diff --git a/.ipynb_checkpoints/Data_analysis-checkpoint.ipynb b/.ipynb_checkpoints/Data_analysis-checkpoint.ipynb new file mode 100644 index 0000000..363fcab --- /dev/null +++ b/.ipynb_checkpoints/Data_analysis-checkpoint.ipynb @@ -0,0 +1,6 @@ +{ + "cells": [], + "metadata": {}, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/.ipynb_checkpoints/Data_cleaning-checkpoint.ipynb b/.ipynb_checkpoints/Data_cleaning-checkpoint.ipynb new file mode 100644 index 0000000..a79b42e --- /dev/null +++ b/.ipynb_checkpoints/Data_cleaning-checkpoint.ipynb @@ -0,0 +1,805 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "67ffbcc1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import os" + ] + }, + { + "cell_type": "markdown", + "id": "37fab2b4", + "metadata": {}, + "source": [ + "# Read all files" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "78158fdc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
0176558USB-C Charging Cable211.9504/19/19 08:46917 1st St, Dallas, TX 75001
1NaNNaNNaNNaNNaNNaN
2176559Bose SoundSport Headphones199.9904/07/19 22:30682 Chestnut St, Boston, MA 02215
3176560Google Phone160004/12/19 14:38669 Spruce St, Los Angeles, CA 90001
4176560Wired Headphones111.9904/12/19 14:38669 Spruce St, Los Angeles, CA 90001
\n", + "
" + ], + "text/plain": [ + " Order ID Product Quantity Ordered Price Each \\\n", + "0 176558 USB-C Charging Cable 2 11.95 \n", + "1 NaN NaN NaN NaN \n", + "2 176559 Bose SoundSport Headphones 1 99.99 \n", + "3 176560 Google Phone 1 600 \n", + "4 176560 Wired Headphones 1 11.99 \n", + "\n", + " Order Date Purchase Address \n", + "0 04/19/19 08:46 917 1st St, Dallas, TX 75001 \n", + "1 NaN NaN \n", + "2 04/07/19 22:30 682 Chestnut St, Boston, MA 02215 \n", + "3 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 \n", + "4 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data=pd.DataFrame()\n", + "for file in os.listdir('Data/Raw'):\n", + " file_csv = pd.read_csv(f'Data/Raw/{file}')\n", + " all_data = pd.concat([all_data,file_csv])\n", + "all_data.reset_index(drop=True,inplace=True)\n", + "all_data.head()" + ] + }, + { + "cell_type": "markdown", + "id": "e3baa919", + "metadata": {}, + "source": [ + "# Data Cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "a946772a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 186850 entries, 0 to 186849\n", + "Data columns (total 6 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 Order ID 186305 non-null object\n", + " 1 Product 186305 non-null object\n", + " 2 Quantity Ordered 186305 non-null object\n", + " 3 Price Each 186305 non-null object\n", + " 4 Order Date 186305 non-null object\n", + " 5 Purchase Address 186305 non-null object\n", + "dtypes: object(6)\n", + "memory usage: 8.6+ MB\n" + ] + } + ], + "source": [ + "all_data.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "aab8a65b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Order ID 0\n", + "Product 0\n", + "Quantity Ordered 0\n", + "Price Each 0\n", + "Order Date 0\n", + "Purchase Address 0\n", + "dtype: int64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data[all_data['Order ID'].isna()].notna().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "133d9f82", + "metadata": {}, + "outputs": [], + "source": [ + "# drop nan\n", + "all_data=all_data[all_data['Order ID'].notna()]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "a242695e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
68421142071AA Batteries (4-pack)13.8401/17/19 23:02131 2nd St, Boston, MA 02215
68422142071AA Batteries (4-pack)13.8401/17/19 23:02131 2nd St, Boston, MA 02215
71672145143Lightning Charging Cable114.9501/06/19 03:01182 Jefferson St, San Francisco, CA 94016
71673145143Lightning Charging Cable114.9501/06/19 03:01182 Jefferson St, San Francisco, CA 94016
73357146765Google Phone160001/21/19 11:23918 Highland St, New York City, NY 10001
.....................
3209Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
3618Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
130303Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
2893Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
128103Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
\n", + "

883 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " Order ID Product Quantity Ordered Price Each \\\n", + "68421 142071 AA Batteries (4-pack) 1 3.84 \n", + "68422 142071 AA Batteries (4-pack) 1 3.84 \n", + "71672 145143 Lightning Charging Cable 1 14.95 \n", + "71673 145143 Lightning Charging Cable 1 14.95 \n", + "73357 146765 Google Phone 1 600 \n", + "... ... ... ... ... \n", + "3209 Order ID Product Quantity Ordered Price Each \n", + "3618 Order ID Product Quantity Ordered Price Each \n", + "130303 Order ID Product Quantity Ordered Price Each \n", + "2893 Order ID Product Quantity Ordered Price Each \n", + "128103 Order ID Product Quantity Ordered Price Each \n", + "\n", + " Order Date Purchase Address \n", + "68421 01/17/19 23:02 131 2nd St, Boston, MA 02215 \n", + "68422 01/17/19 23:02 131 2nd St, Boston, MA 02215 \n", + "71672 01/06/19 03:01 182 Jefferson St, San Francisco, CA 94016 \n", + "71673 01/06/19 03:01 182 Jefferson St, San Francisco, CA 94016 \n", + "73357 01/21/19 11:23 918 Highland St, New York City, NY 10001 \n", + "... ... ... \n", + "3209 Order Date Purchase Address \n", + "3618 Order Date Purchase Address \n", + "130303 Order Date Purchase Address \n", + "2893 Order Date Purchase Address \n", + "128103 Order Date Purchase Address \n", + "\n", + "[883 rows x 6 columns]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data[all_data.duplicated(keep=False)].sort_values(by='Order ID')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "384ae70f", + "metadata": {}, + "outputs": [], + "source": [ + "# drop duplicated rows\n", + "all_data.drop_duplicates(keep='first',inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "18b1fdd2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
519Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
\n", + "
" + ], + "text/plain": [ + " Order ID Product Quantity Ordered Price Each Order Date \\\n", + "519 Order ID Product Quantity Ordered Price Each Order Date \n", + "\n", + " Purchase Address \n", + "519 Purchase Address " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data[~all_data['Quantity Ordered'].str.isnumeric()]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "ddb6d499", + "metadata": {}, + "outputs": [], + "source": [ + "# drop inconsistent rows\n", + "all_data.drop(all_data[~all_data['Quantity Ordered'].str.isnumeric()].index,inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "9ed225a8", + "metadata": {}, + "outputs": [], + "source": [ + "# change data types\n", + "all_data['Quantity Ordered']=pd.to_numeric(all_data['Quantity Ordered'])\n", + "all_data['Price Each']=pd.to_numeric(all_data['Price Each'])\n", + "all_data['Order Date']=pd.to_datetime(all_data['Order Date'])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "e0141825", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDProductQuantity_orderedPrice_eachOrder_datePurchase_address
0176558USB-C Charging Cable211.952019-04-19 08:46:00917 1st St, Dallas, TX 75001
2176559Bose SoundSport Headphones199.992019-04-07 22:30:00682 Chestnut St, Boston, MA 02215
3176560Google Phone1600.002019-04-12 14:38:00669 Spruce St, Los Angeles, CA 90001
4176560Wired Headphones111.992019-04-12 14:38:00669 Spruce St, Los Angeles, CA 90001
5176561Wired Headphones111.992019-04-30 09:27:00333 8th St, Los Angeles, CA 90001
\n", + "
" + ], + "text/plain": [ + " ID Product Quantity_ordered Price_each \\\n", + "0 176558 USB-C Charging Cable 2 11.95 \n", + "2 176559 Bose SoundSport Headphones 1 99.99 \n", + "3 176560 Google Phone 1 600.00 \n", + "4 176560 Wired Headphones 1 11.99 \n", + "5 176561 Wired Headphones 1 11.99 \n", + "\n", + " Order_date Purchase_address \n", + "0 2019-04-19 08:46:00 917 1st St, Dallas, TX 75001 \n", + "2 2019-04-07 22:30:00 682 Chestnut St, Boston, MA 02215 \n", + "3 2019-04-12 14:38:00 669 Spruce St, Los Angeles, CA 90001 \n", + "4 2019-04-12 14:38:00 669 Spruce St, Los Angeles, CA 90001 \n", + "5 2019-04-30 09:27:00 333 8th St, Los Angeles, CA 90001 " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# renew columns\n", + "new_columns={\n", + " 'Order ID':'ID',\n", + " 'Quantity Ordered':'Quantity_ordered',\n", + " 'Price Each':'Price_each',\n", + " 'Order Date':'Order_date',\n", + " 'Purchase Address':'Purchase_address',\n", + "}\n", + "all_data.rename(new_columns,axis=1,inplace=True)\n", + "all_data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "155795a6", + "metadata": {}, + "outputs": [], + "source": [ + "# Parsing the address\n", + "all_data['Street']= [address[0] for address in all_data['Purchase_address'].str.split(',')]\n", + "all_data['City']= [address[1] for address in all_data['Purchase_address'].str.split(',')]\n", + "all_data['State']= [address[2] for address in all_data['Purchase_address'].str.split(',')]\n", + "\n", + "all_data['Zip_code']= [address[1] for address in all_data['State'].str.split()]\n", + "all_data['State']= [address[0] for address in all_data['State'].str.split()]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "b96bf215", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDProductQuantity_orderedPrice_eachOrder_dateStreetCityStateZip_code
0176558USB-C Charging Cable211.952019-04-19 08:46:00917 1st StDallasTX75001
2176559Bose SoundSport Headphones199.992019-04-07 22:30:00682 Chestnut StBostonMA02215
3176560Google Phone1600.002019-04-12 14:38:00669 Spruce StLos AngelesCA90001
4176560Wired Headphones111.992019-04-12 14:38:00669 Spruce StLos AngelesCA90001
5176561Wired Headphones111.992019-04-30 09:27:00333 8th StLos AngelesCA90001
\n", + "
" + ], + "text/plain": [ + " ID Product Quantity_ordered Price_each \\\n", + "0 176558 USB-C Charging Cable 2 11.95 \n", + "2 176559 Bose SoundSport Headphones 1 99.99 \n", + "3 176560 Google Phone 1 600.00 \n", + "4 176560 Wired Headphones 1 11.99 \n", + "5 176561 Wired Headphones 1 11.99 \n", + "\n", + " Order_date Street City State Zip_code \n", + "0 2019-04-19 08:46:00 917 1st St Dallas TX 75001 \n", + "2 2019-04-07 22:30:00 682 Chestnut St Boston MA 02215 \n", + "3 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 \n", + "4 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 \n", + "5 2019-04-30 09:27:00 333 8th St Los Angeles CA 90001 " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data.drop('Purchase_address',axis=1,inplace=True)\n", + "all_data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "ea1961ee", + "metadata": {}, + "outputs": [], + "source": [ + "all_data.to_csv('./Data/Clean/clean_data.csv',index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "86ef79b5", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "138a012b", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Data/Clean/clean_data.csv b/Data/Clean/clean_data.csv new file mode 100644 index 0000000..a321645 --- /dev/null +++ b/Data/Clean/clean_data.csv @@ -0,0 +1,185687 @@ +ID,Product,Quantity_ordered,Price_each,Order_date,Street,City,State,Zip_code +176558,USB-C Charging Cable,2,11.95,2019-04-19 08:46:00,917 1st St, Dallas,TX,75001 +176559,Bose SoundSport Headphones,1,99.99,2019-04-07 22:30:00,682 Chestnut St, Boston,MA,02215 +176560,Google Phone,1,600.0,2019-04-12 14:38:00,669 Spruce St, Los Angeles,CA,90001 +176560,Wired Headphones,1,11.99,2019-04-12 14:38:00,669 Spruce St, Los Angeles,CA,90001 +176561,Wired Headphones,1,11.99,2019-04-30 09:27:00,333 8th St, Los Angeles,CA,90001 +176562,USB-C Charging Cable,1,11.95,2019-04-29 13:03:00,381 Wilson St, San Francisco,CA,94016 +176563,Bose SoundSport Headphones,1,99.99,2019-04-02 07:46:00,668 Center St, Seattle,WA,98101 +176564,USB-C Charging Cable,1,11.95,2019-04-12 10:58:00,790 Ridge St, Atlanta,GA,30301 +176565,Macbook Pro Laptop,1,1700.0,2019-04-24 10:38:00,915 Willow St, San Francisco,CA,94016 +176566,Wired Headphones,1,11.99,2019-04-08 14:05:00,83 7th St, Boston,MA,02215 +176567,Google Phone,1,600.0,2019-04-18 17:18:00,444 7th St, Los Angeles,CA,90001 +176568,Lightning Charging Cable,1,14.95,2019-04-15 12:18:00,438 Elm St, Seattle,WA,98101 +176569,27in 4K Gaming Monitor,1,389.99,2019-04-16 19:23:00,657 Hill St, Dallas,TX,75001 +176570,AA Batteries (4-pack),1,3.84,2019-04-22 15:09:00,186 12th St, Dallas,TX,75001 +176571,Lightning Charging Cable,1,14.95,2019-04-19 14:29:00,253 Johnson St, Atlanta,GA,30301 +176572,Apple Airpods Headphones,1,150.0,2019-04-04 20:30:00,149 Dogwood St, New York City,NY,10001 +176573,USB-C Charging Cable,1,11.95,2019-04-27 18:41:00,214 Chestnut St, San Francisco,CA,94016 +176574,Google Phone,1,600.0,2019-04-03 19:42:00,20 Hill St, Los Angeles,CA,90001 +176574,USB-C Charging Cable,1,11.95,2019-04-03 19:42:00,20 Hill St, Los Angeles,CA,90001 +176575,AAA Batteries (4-pack),1,2.99,2019-04-27 00:30:00,433 Hill St, New York City,NY,10001 +176576,Apple Airpods Headphones,1,150.0,2019-04-28 11:42:00,771 Ridge St, Los Angeles,CA,90001 +176577,Apple Airpods Headphones,1,150.0,2019-04-04 19:25:00,260 Spruce St, Dallas,TX,75001 +176578,Apple Airpods Headphones,1,150.0,2019-04-09 23:35:00,513 Church St, Boston,MA,02215 +176579,AA Batteries (4-pack),1,3.84,2019-04-11 10:23:00,886 Jefferson St, New York City,NY,10001 +176580,USB-C Charging Cable,1,11.95,2019-04-05 00:35:00,886 Willow St, Los Angeles,CA,90001 +176581,iPhone,1,700.0,2019-04-09 21:38:00,84 Jackson St, Boston,MA,02215 +176582,Bose SoundSport Headphones,1,99.99,2019-04-27 12:20:00,178 Lincoln St, Atlanta,GA,30301 +176583,AAA Batteries (4-pack),2,2.99,2019-04-20 12:00:00,146 Jackson St, Portland,OR,97035 +176584,Flatscreen TV,1,300.0,2019-04-24 20:39:00,936 Church St, San Francisco,CA,94016 +176585,Bose SoundSport Headphones,1,99.99,2019-04-07 11:31:00,823 Highland St, Boston,MA,02215 +176586,AAA Batteries (4-pack),2,2.99,2019-04-10 17:00:00,365 Center St, San Francisco,CA,94016 +176586,Google Phone,1,600.0,2019-04-10 17:00:00,365 Center St, San Francisco,CA,94016 +176587,27in FHD Monitor,1,149.99,2019-04-29 19:38:00,557 5th St, Los Angeles,CA,90001 +176588,20in Monitor,1,109.99,2019-04-02 04:00:00,765 Cherry St, Seattle,WA,98101 +176589,Lightning Charging Cable,1,14.95,2019-04-04 12:23:00,846 Highland St, Atlanta,GA,30301 +176590,Google Phone,1,600.0,2019-04-11 11:46:00,873 6th St, New York City,NY,10001 +176591,Apple Airpods Headphones,1,150.0,2019-04-21 07:21:00,600 Maple St, Austin,TX,73301 +176592,USB-C Charging Cable,1,11.95,2019-04-27 13:04:00,352 4th St, Los Angeles,CA,90001 +176593,Lightning Charging Cable,2,14.95,2019-04-15 13:45:00,906 7th St, Portland,OR,97035 +176594,Wired Headphones,1,11.99,2019-04-17 23:04:00,63 Maple St, San Francisco,CA,94016 +176595,Wired Headphones,3,11.99,2019-04-02 09:11:00,383 6th St, Los Angeles,CA,90001 +176596,Apple Airpods Headphones,1,150.0,2019-04-27 20:11:00,572 Meadow St, Dallas,TX,75001 +176597,USB-C Charging Cable,1,11.95,2019-04-19 13:39:00,681 11th St, San Francisco,CA,94016 +176598,AAA Batteries (4-pack),2,2.99,2019-04-21 20:33:00,294 Park St, San Francisco,CA,94016 +176599,Lightning Charging Cable,1,14.95,2019-04-11 15:25:00,279 Maple St, New York City,NY,10001 +176600,27in 4K Gaming Monitor,1,389.99,2019-04-30 15:54:00,87 West St, Boston,MA,02215 +176601,USB-C Charging Cable,1,11.95,2019-04-02 22:32:00,754 10th St, Los Angeles,CA,90001 +176602,Lightning Charging Cable,1,14.95,2019-04-30 09:39:00,9 Jefferson St, Dallas,TX,75001 +176603,USB-C Charging Cable,1,11.95,2019-04-01 07:46:00,858 6th St, San Francisco,CA,94016 +176604,USB-C Charging Cable,1,11.95,2019-04-02 10:57:00,462 11th St, San Francisco,CA,94016 +176605,USB-C Charging Cable,1,11.95,2019-04-15 16:29:00,717 Pine St, San Francisco,CA,94016 +176606,LG Dryer,1,600.0,2019-04-21 14:16:00,487 Maple St, San Francisco,CA,94016 +176607,AAA Batteries (4-pack),2,2.99,2019-04-18 12:11:00,689 10th St, Boston,MA,02215 +176608,iPhone,1,700.0,2019-04-11 12:01:00,15 Cherry St, San Francisco,CA,94016 +176609,Apple Airpods Headphones,1,150.0,2019-04-11 16:59:00,267 11th St, Austin,TX,73301 +176610,AAA Batteries (4-pack),1,2.99,2019-04-26 00:40:00,382 River St, Dallas,TX,75001 +176611,Bose SoundSport Headphones,1,99.99,2019-04-30 13:16:00,971 Sunset St, San Francisco,CA,94016 +176612,Apple Airpods Headphones,1,150.0,2019-04-04 19:48:00,149 North St, Seattle,WA,98101 +176613,USB-C Charging Cable,2,11.95,2019-04-26 18:58:00,405 4th St, New York City,NY,10001 +176614,AA Batteries (4-pack),1,3.84,2019-04-07 21:01:00,647 Jackson St, San Francisco,CA,94016 +176615,Lightning Charging Cable,1,14.95,2019-04-30 10:35:00,833 River St, Dallas,TX,75001 +176616,USB-C Charging Cable,1,11.95,2019-04-05 20:40:00,380 Washington St, San Francisco,CA,94016 +176617,Apple Airpods Headphones,1,150.0,2019-04-25 08:03:00,319 8th St, Portland,OR,97035 +176618,Lightning Charging Cable,2,14.95,2019-04-18 21:44:00,273 South St, San Francisco,CA,94016 +176619,Flatscreen TV,1,300.0,2019-04-16 18:37:00,116 North St, Los Angeles,CA,90001 +176620,USB-C Charging Cable,1,11.95,2019-04-17 10:39:00,994 Pine St, Los Angeles,CA,90001 +176621,Lightning Charging Cable,1,14.95,2019-04-11 16:09:00,863 8th St, Boston,MA,02215 +176622,AA Batteries (4-pack),1,3.84,2019-04-11 20:16:00,983 11th St, San Francisco,CA,94016 +176623,27in FHD Monitor,1,149.99,2019-04-20 23:51:00,807 12th St, Atlanta,GA,30301 +176624,AA Batteries (4-pack),1,3.84,2019-04-28 10:44:00,664 Church St, Seattle,WA,98101 +176625,AAA Batteries (4-pack),2,2.99,2019-04-24 19:00:00,858 5th St, San Francisco,CA,94016 +176626,Bose SoundSport Headphones,1,99.99,2019-04-01 21:40:00,491 Chestnut St, Boston,MA,02215 +176627,Wired Headphones,1,11.99,2019-04-21 14:57:00,994 13th St, Atlanta,GA,30301 +176628,Lightning Charging Cable,2,14.95,2019-04-15 04:03:00,628 Wilson St, Dallas,TX,75001 +176629,USB-C Charging Cable,1,11.95,2019-04-24 11:56:00,101 Lincoln St, San Francisco,CA,94016 +176630,Google Phone,1,600.0,2019-04-10 05:01:00,770 Maple St, San Francisco,CA,94016 +176631,USB-C Charging Cable,1,11.95,2019-04-13 18:48:00,292 Dogwood St, San Francisco,CA,94016 +176632,AAA Batteries (4-pack),1,2.99,2019-04-14 14:28:00,814 Madison St, San Francisco,CA,94016 +176633,ThinkPad Laptop,1,999.99,2019-04-23 14:03:00,863 Hickory St, Los Angeles,CA,90001 +176634,Lightning Charging Cable,1,14.95,2019-04-10 08:00:00,311 Madison St, Atlanta,GA,30301 +176635,Vareebadd Phone,1,400.0,2019-04-26 09:55:00,85 North St, San Francisco,CA,94016 +176636,AA Batteries (4-pack),1,3.84,2019-04-30 20:37:00,140 10th St, Boston,MA,02215 +176637,AAA Batteries (4-pack),1,2.99,2019-04-17 10:03:00,261 Sunset St, New York City,NY,10001 +176638,USB-C Charging Cable,1,11.95,2019-04-20 08:33:00,869 Cherry St, Boston,MA,02215 +176639,Macbook Pro Laptop,1,1700.0,2019-04-28 16:14:00,853 Cedar St, San Francisco,CA,94016 +176640,Wired Headphones,2,11.99,2019-04-27 22:54:00,164 Lake St, San Francisco,CA,94016 +176641,Lightning Charging Cable,1,14.95,2019-04-25 21:36:00,655 Sunset St, Boston,MA,02215 +176642,AA Batteries (4-pack),1,3.84,2019-04-17 18:38:00,72 Elm St, Portland,OR,97035 +176643,Macbook Pro Laptop,1,1700.0,2019-04-27 21:32:00,373 Adams St, Boston,MA,02215 +176644,USB-C Charging Cable,1,11.95,2019-04-23 02:09:00,962 7th St, Los Angeles,CA,90001 +176645,AAA Batteries (4-pack),3,2.99,2019-04-26 18:38:00,514 Lake St, Dallas,TX,75001 +176646,Macbook Pro Laptop,1,1700.0,2019-04-22 07:14:00,657 Adams St, Portland,OR,97035 +176647,Google Phone,1,600.0,2019-04-21 19:40:00,273 South St, Los Angeles,CA,90001 +176648,27in FHD Monitor,1,149.99,2019-04-24 01:17:00,732 2nd St, Portland,OR,97035 +176649,USB-C Charging Cable,1,11.95,2019-04-09 08:49:00,702 11th St, San Francisco,CA,94016 +176650,Lightning Charging Cable,1,14.95,2019-04-12 16:47:00,153 River St, Boston,MA,02215 +176651,iPhone,1,700.0,2019-04-07 13:14:00,997 South St, Boston,MA,02215 +176652,LG Washing Machine,1,600.0,2019-04-09 20:04:00,502 14th St, New York City,NY,10001 +176653,AA Batteries (4-pack),1,3.84,2019-04-26 19:20:00,285 Chestnut St, San Francisco,CA,94016 +176654,USB-C Charging Cable,1,11.95,2019-04-15 19:35:00,880 Lakeview St, Seattle,WA,98101 +176655,Apple Airpods Headphones,1,150.0,2019-04-11 19:36:00,848 Center St, San Francisco,CA,94016 +176656,Google Phone,1,600.0,2019-04-12 16:42:00,12 Lakeview St, New York City,NY,10001 +176657,ThinkPad Laptop,1,999.99,2019-04-23 10:16:00,774 Forest St, Los Angeles,CA,90001 +176658,AAA Batteries (4-pack),2,2.99,2019-04-22 08:51:00,573 Pine St, San Francisco,CA,94016 +176659,20in Monitor,1,109.99,2019-04-29 14:40:00,804 Church St, Dallas,TX,75001 +176660,AA Batteries (4-pack),1,3.84,2019-04-16 17:10:00,267 West St, Boston,MA,02215 +176661,Wired Headphones,1,11.99,2019-04-25 20:40:00,522 6th St, Atlanta,GA,30301 +176662,34in Ultrawide Monitor,1,379.99,2019-04-05 12:46:00,678 Hickory St, Portland,OR,97035 +176663,Bose SoundSport Headphones,1,99.99,2019-04-05 11:48:00,450 Johnson St, Seattle,WA,98101 +176664,AAA Batteries (4-pack),1,2.99,2019-04-13 18:59:00,544 Madison St, Los Angeles,CA,90001 +176665,ThinkPad Laptop,1,999.99,2019-04-07 14:15:00,927 13th St, Dallas,TX,75001 +176666,Wired Headphones,1,11.99,2019-04-08 16:50:00,382 Forest St, Seattle,WA,98101 +176667,27in 4K Gaming Monitor,1,389.99,2019-04-11 00:39:00,92 11th St, Los Angeles,CA,90001 +176668,AA Batteries (4-pack),1,3.84,2019-04-15 20:46:00,56 2nd St, Dallas,TX,75001 +176669,27in FHD Monitor,1,149.99,2019-04-08 12:57:00,506 Jackson St, Dallas,TX,75001 +176670,Apple Airpods Headphones,1,150.0,2019-04-25 21:23:00,892 Willow St, San Francisco,CA,94016 +176671,AAA Batteries (4-pack),2,2.99,2019-04-23 16:31:00,738 Jefferson St, New York City,NY,10001 +176672,Lightning Charging Cable,1,14.95,2019-04-12 11:07:00,778 Maple St, New York City,NY,10001 +176672,USB-C Charging Cable,1,11.95,2019-04-12 11:07:00,778 Maple St, New York City,NY,10001 +176673,20in Monitor,1,109.99,2019-04-10 08:17:00,952 1st St, Boston,MA,02215 +176674,AAA Batteries (4-pack),3,2.99,2019-04-20 20:53:00,907 West St, Austin,TX,73301 +176675,AAA Batteries (4-pack),1,2.99,2019-04-02 09:02:00,933 Meadow St, Seattle,WA,98101 +176676,LG Dryer,1,600.0,2019-04-09 00:35:00,788 Lincoln St, Los Angeles,CA,90001 +176677,34in Ultrawide Monitor,1,379.99,2019-04-01 11:50:00,661 Washington St, Austin,TX,73301 +176678,AA Batteries (4-pack),2,3.84,2019-04-19 22:12:00,345 Sunset St, San Francisco,CA,94016 +176679,Apple Airpods Headphones,1,150.0,2019-04-16 11:12:00,245 West St, Boston,MA,02215 +176680,USB-C Charging Cable,1,11.95,2019-04-13 11:28:00,368 Main St, Los Angeles,CA,90001 +176681,Apple Airpods Headphones,1,150.0,2019-04-20 10:39:00,331 Cherry St, Seattle,WA,98101 +176681,ThinkPad Laptop,1,999.99,2019-04-20 10:39:00,331 Cherry St, Seattle,WA,98101 +176682,Lightning Charging Cable,1,14.95,2019-04-27 06:19:00,593 Adams St, Boston,MA,02215 +176683,AA Batteries (4-pack),1,3.84,2019-04-03 13:54:00,253 Willow St, Los Angeles,CA,90001 +176684,USB-C Charging Cable,1,11.95,2019-04-17 00:51:00,293 Washington St, Los Angeles,CA,90001 +176685,34in Ultrawide Monitor,1,379.99,2019-04-23 22:53:00,114 10th St, New York City,NY,10001 +176686,Wired Headphones,1,11.99,2019-04-17 15:17:00,892 10th St, Austin,TX,73301 +176687,Macbook Pro Laptop,1,1700.0,2019-04-30 10:26:00,121 Wilson St, Los Angeles,CA,90001 +176688,Flatscreen TV,1,300.0,2019-04-20 18:25:00,229 Church St, San Francisco,CA,94016 +176689,Bose SoundSport Headphones,1,99.99,2019-04-24 17:15:00,659 Lincoln St, New York City,NY,10001 +176689,AAA Batteries (4-pack),2,2.99,2019-04-24 17:15:00,659 Lincoln St, New York City,NY,10001 +176690,20in Monitor,1,109.99,2019-04-04 18:33:00,873 Sunset St, San Francisco,CA,94016 +176691,AAA Batteries (4-pack),1,2.99,2019-04-12 11:57:00,991 Lincoln St, Los Angeles,CA,90001 +176692,Wired Headphones,1,11.99,2019-04-08 18:21:00,290 Forest St, San Francisco,CA,94016 +176693,AA Batteries (4-pack),1,3.84,2019-04-22 09:00:00,252 Walnut St, San Francisco,CA,94016 +176694,USB-C Charging Cable,1,11.95,2019-04-05 20:46:00,985 Washington St, Atlanta,GA,30301 +176695,AA Batteries (4-pack),2,3.84,2019-04-12 20:50:00,709 Lake St, Seattle,WA,98101 +176696,iPhone,1,700.0,2019-04-07 12:41:00,343 Johnson St, New York City,NY,10001 +176697,Wired Headphones,1,11.99,2019-04-20 22:38:00,675 Center St, New York City,NY,10001 +176698,Bose SoundSport Headphones,1,99.99,2019-04-02 16:15:00,232 Lakeview St, San Francisco,CA,94016 +176699,Bose SoundSport Headphones,1,99.99,2019-04-28 18:04:00,49 Jefferson St, Boston,MA,02215 +176700,34in Ultrawide Monitor,1,379.99,2019-04-07 23:10:00,967 Walnut St, Dallas,TX,75001 +176701,USB-C Charging Cable,1,11.95,2019-04-11 13:05:00,128 Church St, Austin,TX,73301 +176702,AA Batteries (4-pack),1,3.84,2019-04-23 19:44:00,896 Sunset St, Seattle,WA,98101 +176703,20in Monitor,1,109.99,2019-04-17 10:00:00,748 Washington St, New York City,NY,10001 +176704,AA Batteries (4-pack),2,3.84,2019-04-17 10:00:00,909 Center St, Seattle,WA,98101 +176705,Lightning Charging Cable,2,14.95,2019-04-06 09:38:00,503 8th St, Austin,TX,73301 +176706,Lightning Charging Cable,1,14.95,2019-04-13 13:32:00,309 South St, New York City,NY,10001 +176707,Apple Airpods Headphones,1,150.0,2019-04-13 10:34:00,408 Center St, Portland,OR,97035 +176708,Wired Headphones,1,11.99,2019-04-28 23:03:00,542 Ridge St, New York City,NY,10001 +176709,AA Batteries (4-pack),1,3.84,2019-04-24 14:17:00,971 Church St, Dallas,TX,75001 +176710,20in Monitor,2,109.99,2019-04-07 10:00:00,848 West St, Dallas,TX,75001 +176711,Flatscreen TV,1,300.0,2019-04-30 10:58:00,796 River St, Dallas,TX,75001 +176712,Google Phone,1,600.0,2019-04-20 05:21:00,910 Washington St, San Francisco,CA,94016 +176713,Wired Headphones,1,11.99,2019-04-21 10:48:00,498 Walnut St, San Francisco,CA,94016 +176714,USB-C Charging Cable,1,11.95,2019-04-26 23:34:00,303 Spruce St, Los Angeles,CA,90001 +176715,Apple Airpods Headphones,1,150.0,2019-04-27 16:43:00,258 Jefferson St, San Francisco,CA,94016 +176716,Wired Headphones,1,11.99,2019-04-24 14:43:00,794 7th St, Los Angeles,CA,90001 +176717,Apple Airpods Headphones,1,150.0,2019-04-19 10:34:00,490 Lakeview St, Atlanta,GA,30301 +176718,Lightning Charging Cable,1,14.95,2019-04-22 19:14:00,672 Sunset St, Los Angeles,CA,90001 +176719,Flatscreen TV,1,300.0,2019-04-27 13:07:00,602 Hickory St, Boston,MA,02215 +176720,Lightning Charging Cable,1,14.95,2019-04-21 10:35:00,556 South St, Portland,OR,97035 +176721,AAA Batteries (4-pack),1,2.99,2019-04-26 21:08:00,469 7th St, San Francisco,CA,94016 +176722,27in 4K Gaming Monitor,1,389.99,2019-04-01 10:57:00,209 14th St, New York City,NY,10001 +176723,27in 4K Gaming Monitor,1,389.99,2019-04-19 21:31:00,613 12th St, Portland,OR,97035 +176724,Lightning Charging Cable,1,14.95,2019-04-26 20:59:00,34 12th St, San Francisco,CA,94016 +176725,AA Batteries (4-pack),2,3.84,2019-04-15 14:33:00,630 14th St, San Francisco,CA,94016 +176726,USB-C Charging Cable,1,11.95,2019-04-13 18:14:00,979 8th St, Los Angeles,CA,90001 +176727,Lightning Charging Cable,1,14.95,2019-04-14 14:26:00,218 Hickory St, Los Angeles,CA,90001 +176728,Lightning Charging Cable,1,14.95,2019-04-21 07:38:00,516 Park St, Atlanta,GA,30301 +176729,USB-C Charging Cable,1,11.95,2019-04-24 09:57:00,637 9th St, Seattle,WA,98101 +176730,Bose SoundSport Headphones,1,99.99,2019-04-17 08:27:00,403 Ridge St, New York City,NY,10001 +176731,AAA Batteries (4-pack),2,2.99,2019-04-21 16:17:00,36 Lincoln St, San Francisco,CA,94016 +176732,iPhone,1,700.0,2019-04-23 09:33:00,504 Wilson St, Dallas,TX,75001 +176733,20in Monitor,1,109.99,2019-04-11 13:31:00,575 Hickory St, San Francisco,CA,94016 +176734,Apple Airpods Headphones,1,150.0,2019-04-03 22:13:00,611 Jackson St, New York City,NY,10001 +176735,27in FHD Monitor,1,149.99,2019-04-16 23:52:00,802 Ridge St, Austin,TX,73301 +176736,AA Batteries (4-pack),1,3.84,2019-04-17 11:48:00,421 2nd St, Los Angeles,CA,90001 +176737,Apple Airpods Headphones,1,150.0,2019-04-07 01:28:00,109 Center St, Los Angeles,CA,90001 +176738,AA Batteries (4-pack),1,3.84,2019-04-03 13:17:00,661 Center St, San Francisco,CA,94016 +176739,34in Ultrawide Monitor,1,379.99,2019-04-05 17:38:00,730 6th St, Austin,TX,73301 +176739,Google Phone,1,600.0,2019-04-05 17:38:00,730 6th St, Austin,TX,73301 +176740,Bose SoundSport Headphones,1,99.99,2019-04-24 15:10:00,699 Washington St, Dallas,TX,75001 +176741,USB-C Charging Cable,1,11.95,2019-04-29 18:49:00,990 Ridge St, San Francisco,CA,94016 +176742,Wired Headphones,1,11.99,2019-04-17 09:54:00,115 Forest St, Los Angeles,CA,90001 +176743,27in 4K Gaming Monitor,1,389.99,2019-04-01 09:17:00,570 11th St, Atlanta,GA,30301 +176744,Lightning Charging Cable,1,14.95,2019-04-14 19:59:00,937 Maple St, Los Angeles,CA,90001 +176745,Wired Headphones,1,11.99,2019-04-24 09:23:00,461 Adams St, Los Angeles,CA,90001 +176746,27in 4K Gaming Monitor,1,389.99,2019-04-08 19:04:00,638 Park St, Seattle,WA,98101 +176747,Macbook Pro Laptop,1,1700.0,2019-04-27 15:04:00,645 7th St, San Francisco,CA,94016 +176748,Flatscreen TV,1,300.0,2019-04-24 15:28:00,339 13th St, Boston,MA,02215 +176749,ThinkPad Laptop,1,999.99,2019-04-26 07:55:00,322 Adams St, Seattle,WA,98101 +176750,AA Batteries (4-pack),1,3.84,2019-04-13 23:52:00,255 Cedar St, Austin,TX,73301 +176751,AAA Batteries (4-pack),1,2.99,2019-04-18 13:01:00,258 4th St, San Francisco,CA,94016 +176752,AA Batteries (4-pack),1,3.84,2019-04-13 23:59:00,665 Wilson St, San Francisco,CA,94016 +176753,USB-C Charging Cable,1,11.95,2019-04-01 23:07:00,496 Adams St, Atlanta,GA,30301 +176754,34in Ultrawide Monitor,1,379.99,2019-04-02 17:07:00,288 Forest St, Los Angeles,CA,90001 +176755,27in 4K Gaming Monitor,1,389.99,2019-04-09 16:21:00,825 Madison St, Seattle,WA,98101 +176756,27in FHD Monitor,1,149.99,2019-04-05 17:06:00,348 Lake St, New York City,NY,10001 +176757,AA Batteries (4-pack),1,3.84,2019-04-11 20:28:00,79 Hickory St, Portland,OR,97035 +176758,34in Ultrawide Monitor,1,379.99,2019-04-18 21:26:00,166 Highland St, San Francisco,CA,94016 +176759,Lightning Charging Cable,1,14.95,2019-04-06 12:46:00,864 Main St, Los Angeles,CA,90001 +176760,Wired Headphones,1,11.99,2019-04-02 20:32:00,813 Highland St, San Francisco,CA,94016 +176761,Apple Airpods Headphones,1,150.0,2019-04-26 20:00:00,830 2nd St, San Francisco,CA,94016 +176762,AA Batteries (4-pack),1,3.84,2019-04-18 14:06:00,977 1st St, Seattle,WA,98101 +176763,USB-C Charging Cable,1,11.95,2019-04-25 13:36:00,638 Johnson St, San Francisco,CA,94016 +176764,Wired Headphones,1,11.99,2019-04-16 19:52:00,652 Center St, Atlanta,GA,30301 +176765,USB-C Charging Cable,1,11.95,2019-04-14 20:44:00,729 Ridge St, San Francisco,CA,94016 +176766,AA Batteries (4-pack),2,3.84,2019-04-21 19:52:00,84 Johnson St, Boston,MA,02215 +176767,27in 4K Gaming Monitor,1,389.99,2019-04-09 14:18:00,205 4th St, Atlanta,GA,30301 +176768,Wired Headphones,1,11.99,2019-04-04 00:03:00,643 Spruce St, Los Angeles,CA,90001 +176769,AA Batteries (4-pack),1,3.84,2019-04-29 14:14:00,206 10th St, San Francisco,CA,94016 +176770,Wired Headphones,1,11.99,2019-04-08 17:38:00,345 Church St, San Francisco,CA,94016 +176771,Lightning Charging Cable,1,14.95,2019-04-24 17:40:00,403 11th St, New York City,NY,10001 +176772,AA Batteries (4-pack),1,3.84,2019-04-10 21:48:00,426 14th St, New York City,NY,10001 +176773,AAA Batteries (4-pack),2,2.99,2019-04-25 20:07:00,30 9th St, Portland,ME,04101 +176774,Lightning Charging Cable,1,14.95,2019-04-25 15:06:00,372 Church St, Los Angeles,CA,90001 +176774,USB-C Charging Cable,1,11.95,2019-04-25 15:06:00,372 Church St, Los Angeles,CA,90001 +176775,USB-C Charging Cable,2,11.95,2019-04-01 20:56:00,975 Forest St, San Francisco,CA,94016 +176776,Bose SoundSport Headphones,1,99.99,2019-04-24 23:28:00,613 Washington St, Seattle,WA,98101 +176777,Apple Airpods Headphones,1,150.0,2019-04-14 16:53:00,163 Jackson St, Portland,OR,97035 +176778,34in Ultrawide Monitor,1,379.99,2019-04-12 17:46:00,201 Madison St, San Francisco,CA,94016 +176779,27in FHD Monitor,1,149.99,2019-04-04 16:46:00,351 Park St, Atlanta,GA,30301 +176780,Lightning Charging Cable,1,14.95,2019-04-18 23:51:00,52 Walnut St, New York City,NY,10001 +176781,iPhone,1,700.0,2019-04-03 07:37:00,976 Hickory St, Dallas,TX,75001 +176781,Lightning Charging Cable,1,14.95,2019-04-03 07:37:00,976 Hickory St, Dallas,TX,75001 +176782,Apple Airpods Headphones,1,150.0,2019-04-22 13:42:00,993 13th St, San Francisco,CA,94016 +176783,Apple Airpods Headphones,1,150.0,2019-04-05 11:40:00,926 North St, San Francisco,CA,94016 +176784,AAA Batteries (4-pack),1,2.99,2019-04-08 10:14:00,725 Madison St, Los Angeles,CA,90001 +176785,Bose SoundSport Headphones,1,99.99,2019-04-03 15:39:00,533 Ridge St, Los Angeles,CA,90001 +176786,20in Monitor,1,109.99,2019-04-06 16:40:00,701 North St, San Francisco,CA,94016 +176787,Google Phone,1,600.0,2019-04-14 10:10:00,180 Pine St, Los Angeles,CA,90001 +176788,Bose SoundSport Headphones,1,99.99,2019-04-15 04:39:00,200 North St, New York City,NY,10001 +176789,Lightning Charging Cable,1,14.95,2019-04-21 20:15:00,990 Meadow St, San Francisco,CA,94016 +176790,AAA Batteries (4-pack),1,2.99,2019-04-28 12:07:00,689 9th St, Austin,TX,73301 +176791,Google Phone,1,600.0,2019-04-21 11:43:00,908 Jackson St, Los Angeles,CA,90001 +176792,27in 4K Gaming Monitor,1,389.99,2019-04-30 19:29:00,772 11th St, Atlanta,GA,30301 +176793,Wired Headphones,1,11.99,2019-04-17 17:09:00,147 South St, San Francisco,CA,94016 +176794,Lightning Charging Cable,1,14.95,2019-04-10 21:40:00,425 Adams St, Dallas,TX,75001 +176795,Wired Headphones,1,11.99,2019-04-13 11:46:00,360 Center St, San Francisco,CA,94016 +176796,Bose SoundSport Headphones,1,99.99,2019-04-07 08:44:00,5 2nd St, Los Angeles,CA,90001 +176797,Google Phone,1,600.0,2019-04-21 08:54:00,923 Elm St, Los Angeles,CA,90001 +176797,Bose SoundSport Headphones,1,99.99,2019-04-21 08:54:00,923 Elm St, Los Angeles,CA,90001 +176797,Wired Headphones,1,11.99,2019-04-21 08:54:00,923 Elm St, Los Angeles,CA,90001 +176798,iPhone,1,700.0,2019-04-06 10:31:00,445 Jefferson St, Atlanta,GA,30301 +176799,Wired Headphones,1,11.99,2019-04-03 14:24:00,452 Spruce St, Portland,OR,97035 +176800,Lightning Charging Cable,1,14.95,2019-04-09 11:35:00,766 West St, Atlanta,GA,30301 +176801,Vareebadd Phone,1,400.0,2019-04-28 18:52:00,125 North St, San Francisco,CA,94016 +176802,AA Batteries (4-pack),1,3.84,2019-04-29 17:33:00,627 12th St, Boston,MA,02215 +176803,AA Batteries (4-pack),1,3.84,2019-04-01 23:00:00,649 7th St, Austin,TX,73301 +176804,Bose SoundSport Headphones,1,99.99,2019-04-21 21:56:00,690 Walnut St, Seattle,WA,98101 +176805,Google Phone,1,600.0,2019-04-01 15:50:00,91 Lincoln St, Portland,OR,97035 +176805,USB-C Charging Cable,1,11.95,2019-04-01 15:50:00,91 Lincoln St, Portland,OR,97035 +176806,Macbook Pro Laptop,1,1700.0,2019-04-22 13:26:00,197 Cherry St, Austin,TX,73301 +176807,USB-C Charging Cable,1,11.95,2019-04-21 17:13:00,758 Hill St, Seattle,WA,98101 +176808,Google Phone,1,600.0,2019-04-28 18:03:00,933 Meadow St, San Francisco,CA,94016 +176808,Wired Headphones,1,11.99,2019-04-28 18:03:00,933 Meadow St, San Francisco,CA,94016 +176809,Bose SoundSport Headphones,2,99.99,2019-04-19 01:14:00,278 13th St, San Francisco,CA,94016 +176810,AAA Batteries (4-pack),1,2.99,2019-04-30 14:57:00,86 Meadow St, Atlanta,GA,30301 +176811,AA Batteries (4-pack),2,3.84,2019-04-14 23:02:00,456 13th St, Dallas,TX,75001 +176812,Wired Headphones,1,11.99,2019-04-20 16:40:00,569 Willow St, New York City,NY,10001 +176813,Google Phone,1,600.0,2019-04-28 18:01:00,269 Hill St, Atlanta,GA,30301 +176813,Wired Headphones,1,11.99,2019-04-28 18:01:00,269 Hill St, Atlanta,GA,30301 +176814,Lightning Charging Cable,1,14.95,2019-04-09 12:09:00,501 13th St, New York City,NY,10001 +176815,AAA Batteries (4-pack),1,2.99,2019-04-04 13:36:00,327 Adams St, San Francisco,CA,94016 +176816,27in 4K Gaming Monitor,1,389.99,2019-04-19 20:14:00,623 Lincoln St, Portland,OR,97035 +176817,Lightning Charging Cable,1,14.95,2019-04-26 20:47:00,284 Walnut St, Seattle,WA,98101 +176818,Wired Headphones,1,11.99,2019-04-09 02:19:00,642 13th St, San Francisco,CA,94016 +176819,AA Batteries (4-pack),2,3.84,2019-04-15 05:44:00,615 9th St, Portland,OR,97035 +176820,USB-C Charging Cable,1,11.95,2019-04-17 12:10:00,654 Adams St, Boston,MA,02215 +176821,34in Ultrawide Monitor,1,379.99,2019-04-18 15:08:00,72 Meadow St, San Francisco,CA,94016 +176822,AAA Batteries (4-pack),1,2.99,2019-04-22 19:50:00,40 Cedar St, Seattle,WA,98101 +176823,Wired Headphones,1,11.99,2019-04-06 20:18:00,893 11th St, Seattle,WA,98101 +176824,USB-C Charging Cable,2,11.95,2019-04-03 13:01:00,983 Center St, Los Angeles,CA,90001 +176825,LG Washing Machine,1,600.0,2019-04-13 22:31:00,338 6th St, San Francisco,CA,94016 +176826,Bose SoundSport Headphones,1,99.99,2019-04-11 00:15:00,72 Meadow St, San Francisco,CA,94016 +176827,AAA Batteries (4-pack),1,2.99,2019-04-20 13:36:00,465 Hickory St, Los Angeles,CA,90001 +176828,iPhone,1,700.0,2019-04-07 22:13:00,696 Highland St, Seattle,WA,98101 +176829,Wired Headphones,1,11.99,2019-04-30 09:09:00,335 Wilson St, San Francisco,CA,94016 +176830,Wired Headphones,1,11.99,2019-04-18 12:02:00,663 5th St, Austin,TX,73301 +176831,USB-C Charging Cable,1,11.95,2019-04-01 07:39:00,743 Spruce St, San Francisco,CA,94016 +176832,Apple Airpods Headphones,1,150.0,2019-04-19 20:21:00,533 Spruce St, Los Angeles,CA,90001 +176833,Wired Headphones,1,11.99,2019-04-21 19:32:00,226 Madison St, Boston,MA,02215 +176834,Lightning Charging Cable,1,14.95,2019-04-15 20:42:00,193 Forest St, San Francisco,CA,94016 +176835,USB-C Charging Cable,1,11.95,2019-04-23 16:55:00,628 10th St, Boston,MA,02215 +176836,USB-C Charging Cable,2,11.95,2019-04-10 14:20:00,857 Hickory St, Boston,MA,02215 +176837,Lightning Charging Cable,1,14.95,2019-04-10 12:29:00,213 River St, New York City,NY,10001 +176838,Lightning Charging Cable,1,14.95,2019-04-05 18:44:00,656 South St, New York City,NY,10001 +176839,20in Monitor,1,109.99,2019-04-10 07:19:00,625 Willow St, Boston,MA,02215 +176840,USB-C Charging Cable,1,11.95,2019-04-02 10:08:00,939 14th St, Austin,TX,73301 +176841,AAA Batteries (4-pack),3,2.99,2019-04-26 22:50:00,177 Highland St, San Francisco,CA,94016 +176842,AA Batteries (4-pack),2,3.84,2019-04-06 23:16:00,532 1st St, New York City,NY,10001 +176843,34in Ultrawide Monitor,1,379.99,2019-04-21 11:22:00,733 Maple St, Atlanta,GA,30301 +176844,AA Batteries (4-pack),1,3.84,2019-04-23 18:48:00,983 Main St, Boston,MA,02215 +176845,USB-C Charging Cable,1,11.95,2019-04-15 14:26:00,925 Cedar St, San Francisco,CA,94016 +176846,USB-C Charging Cable,1,11.95,2019-04-19 09:03:00,599 10th St, New York City,NY,10001 +176847,AA Batteries (4-pack),3,3.84,2019-04-03 16:00:00,616 9th St, Austin,TX,73301 +176848,27in FHD Monitor,1,149.99,2019-04-28 18:09:00,442 Center St, Boston,MA,02215 +176849,34in Ultrawide Monitor,1,379.99,2019-04-22 10:59:00,309 West St, San Francisco,CA,94016 +176850,AA Batteries (4-pack),1,3.84,2019-04-03 12:40:00,520 5th St, Seattle,WA,98101 +176851,AA Batteries (4-pack),1,3.84,2019-04-09 22:58:00,669 Dogwood St, San Francisco,CA,94016 +176852,AA Batteries (4-pack),1,3.84,2019-04-09 13:58:00,731 Lincoln St, Portland,OR,97035 +176853,AA Batteries (4-pack),1,3.84,2019-04-24 11:41:00,858 14th St, New York City,NY,10001 +176854,AA Batteries (4-pack),1,3.84,2019-04-11 22:05:00,460 South St, Los Angeles,CA,90001 +176855,Wired Headphones,1,11.99,2019-04-21 16:42:00,103 12th St, Los Angeles,CA,90001 +176856,Lightning Charging Cable,1,14.95,2019-04-13 10:59:00,459 8th St, San Francisco,CA,94016 +176857,Bose SoundSport Headphones,1,99.99,2019-04-30 07:18:00,418 14th St, Portland,OR,97035 +176858,AAA Batteries (4-pack),1,2.99,2019-04-16 13:25:00,669 Park St, Los Angeles,CA,90001 +176859,AA Batteries (4-pack),1,3.84,2019-04-15 10:53:00,525 Adams St, New York City,NY,10001 +176860,USB-C Charging Cable,1,11.95,2019-04-04 11:00:00,420 Hill St, San Francisco,CA,94016 +176861,Bose SoundSport Headphones,1,99.99,2019-04-14 13:01:00,370 9th St, Los Angeles,CA,90001 +176862,AAA Batteries (4-pack),1,2.99,2019-04-29 11:37:00,267 Willow St, San Francisco,CA,94016 +176863,27in FHD Monitor,1,149.99,2019-04-19 17:18:00,64 Maple St, New York City,NY,10001 +176864,AAA Batteries (4-pack),2,2.99,2019-04-02 15:47:00,453 Meadow St, San Francisco,CA,94016 +176865,AA Batteries (4-pack),1,3.84,2019-04-18 14:28:00,952 Washington St, New York City,NY,10001 +176866,ThinkPad Laptop,1,999.99,2019-04-02 11:42:00,338 West St, New York City,NY,10001 +176867,AAA Batteries (4-pack),1,2.99,2019-04-25 21:00:00,483 Washington St, San Francisco,CA,94016 +176868,20in Monitor,1,109.99,2019-04-05 07:37:00,213 Highland St, Boston,MA,02215 +176869,Apple Airpods Headphones,1,150.0,2019-04-23 18:33:00,861 2nd St, Seattle,WA,98101 +176870,AAA Batteries (4-pack),3,2.99,2019-04-05 18:38:00,964 Park St, New York City,NY,10001 +176871,AA Batteries (4-pack),1,3.84,2019-04-29 20:02:00,489 9th St, Dallas,TX,75001 +176872,AA Batteries (4-pack),1,3.84,2019-04-15 12:17:00,678 Madison St, Los Angeles,CA,90001 +176873,AA Batteries (4-pack),1,3.84,2019-04-06 05:26:00,532 Spruce St, Los Angeles,CA,90001 +176874,AAA Batteries (4-pack),1,2.99,2019-04-15 11:04:00,325 Pine St, New York City,NY,10001 +176875,27in 4K Gaming Monitor,1,389.99,2019-04-23 19:26:00,727 Forest St, San Francisco,CA,94016 +176876,Bose SoundSport Headphones,1,99.99,2019-04-23 21:15:00,263 Hickory St, Boston,MA,02215 +176877,Lightning Charging Cable,1,14.95,2019-04-10 15:48:00,289 4th St, San Francisco,CA,94016 +176878,ThinkPad Laptop,1,999.99,2019-04-13 09:15:00,161 Highland St, San Francisco,CA,94016 +176879,Flatscreen TV,1,300.0,2019-04-13 14:15:00,370 Sunset St, Portland,ME,04101 +176880,27in FHD Monitor,1,149.99,2019-04-04 08:36:00,691 River St, New York City,NY,10001 +176881,Wired Headphones,1,11.99,2019-04-22 20:59:00,157 Sunset St, San Francisco,CA,94016 +176882,Wired Headphones,1,11.99,2019-04-24 20:16:00,929 Main St, Boston,MA,02215 +176883,Wired Headphones,2,11.99,2019-04-15 09:24:00,344 Dogwood St, New York City,NY,10001 +176884,USB-C Charging Cable,1,11.95,2019-04-11 09:04:00,813 Highland St, San Francisco,CA,94016 +176885,34in Ultrawide Monitor,1,379.99,2019-04-22 21:26:00,582 River St, Boston,MA,02215 +176886,Flatscreen TV,1,300.0,2019-04-19 20:44:00,410 8th St, San Francisco,CA,94016 +176887,AAA Batteries (4-pack),1,2.99,2019-04-01 12:59:00,591 4th St, Boston,MA,02215 +176888,Wired Headphones,1,11.99,2019-04-15 13:57:00,608 5th St, New York City,NY,10001 +176889,AAA Batteries (4-pack),1,2.99,2019-04-17 21:22:00,837 Madison St, Boston,MA,02215 +176890,USB-C Charging Cable,1,11.95,2019-04-25 17:35:00,950 8th St, Austin,TX,73301 +176891,AAA Batteries (4-pack),1,2.99,2019-04-07 11:52:00,323 Ridge St, Portland,OR,97035 +176892,AAA Batteries (4-pack),1,2.99,2019-04-12 22:50:00,165 Meadow St, Boston,MA,02215 +176893,AAA Batteries (4-pack),1,2.99,2019-04-23 14:01:00,794 Dogwood St, Seattle,WA,98101 +176894,Flatscreen TV,1,300.0,2019-04-13 17:23:00,589 Park St, San Francisco,CA,94016 +176895,Apple Airpods Headphones,1,150.0,2019-04-24 08:44:00,286 6th St, Boston,MA,02215 +176896,AAA Batteries (4-pack),2,2.99,2019-04-24 17:41:00,77 Johnson St, Dallas,TX,75001 +176897,Apple Airpods Headphones,1,150.0,2019-04-02 18:12:00,941 Walnut St, San Francisco,CA,94016 +176898,Apple Airpods Headphones,1,150.0,2019-04-18 17:05:00,45 River St, New York City,NY,10001 +176899,Lightning Charging Cable,1,14.95,2019-04-05 18:17:00,269 South St, San Francisco,CA,94016 +176900,Bose SoundSport Headphones,1,99.99,2019-04-21 06:17:00,356 North St, Boston,MA,02215 +176901,Lightning Charging Cable,1,14.95,2019-04-22 14:37:00,25 8th St, Atlanta,GA,30301 +176902,USB-C Charging Cable,1,11.95,2019-04-11 14:49:00,166 Dogwood St, Atlanta,GA,30301 +176903,iPhone,1,700.0,2019-04-09 11:10:00,684 Main St, Boston,MA,02215 +176904,AAA Batteries (4-pack),1,2.99,2019-04-13 15:44:00,782 Ridge St, Boston,MA,02215 +176905,27in FHD Monitor,1,149.99,2019-04-12 07:40:00,92 Spruce St, New York City,NY,10001 +176906,27in FHD Monitor,1,149.99,2019-04-07 20:14:00,636 Cherry St, Los Angeles,CA,90001 +176907,27in FHD Monitor,1,149.99,2019-04-11 01:43:00,120 Sunset St, Los Angeles,CA,90001 +176908,AAA Batteries (4-pack),1,2.99,2019-04-25 20:53:00,802 Maple St, Seattle,WA,98101 +176909,Wired Headphones,1,11.99,2019-04-22 09:53:00,692 Jackson St, Portland,ME,04101 +176910,AAA Batteries (4-pack),2,2.99,2019-04-19 14:46:00,573 2nd St, Los Angeles,CA,90001 +176911,AAA Batteries (4-pack),1,2.99,2019-04-12 10:29:00,346 13th St, Los Angeles,CA,90001 +176912,Apple Airpods Headphones,1,150.0,2019-04-25 14:33:00,862 7th St, Seattle,WA,98101 +176913,AAA Batteries (4-pack),1,2.99,2019-04-20 19:09:00,340 11th St, Atlanta,GA,30301 +176914,Lightning Charging Cable,1,14.95,2019-04-01 15:54:00,846 Cherry St, San Francisco,CA,94016 +176915,AAA Batteries (4-pack),1,2.99,2019-04-04 19:18:00,64 Hill St, Dallas,TX,75001 +176916,34in Ultrawide Monitor,1,379.99,2019-04-18 07:45:00,285 Cedar St, San Francisco,CA,94016 +176917,USB-C Charging Cable,1,11.95,2019-04-14 19:50:00,376 Sunset St, Boston,MA,02215 +176918,USB-C Charging Cable,1,11.95,2019-04-10 09:57:00,398 Elm St, Los Angeles,CA,90001 +176919,AAA Batteries (4-pack),1,2.99,2019-04-29 07:02:00,240 14th St, Boston,MA,02215 +176920,Apple Airpods Headphones,1,150.0,2019-04-30 18:55:00,117 Lake St, New York City,NY,10001 +176921,Lightning Charging Cable,1,14.95,2019-04-24 17:56:00,365 Wilson St, San Francisco,CA,94016 +176922,Bose SoundSport Headphones,1,99.99,2019-04-02 21:08:00,859 Hill St, Los Angeles,CA,90001 +176923,LG Washing Machine,1,600.0,2019-04-26 12:48:00,259 6th St, Los Angeles,CA,90001 +176924,Bose SoundSport Headphones,1,99.99,2019-04-14 10:32:00,375 4th St, New York City,NY,10001 +176925,Lightning Charging Cable,1,14.95,2019-04-18 15:31:00,920 Wilson St, New York City,NY,10001 +176926,USB-C Charging Cable,1,11.95,2019-04-14 21:17:00,921 Cedar St, Atlanta,GA,30301 +176927,Wired Headphones,1,11.99,2019-04-18 18:40:00,700 Sunset St, Los Angeles,CA,90001 +176928,AAA Batteries (4-pack),1,2.99,2019-04-08 21:08:00,203 Hickory St, San Francisco,CA,94016 +176929,ThinkPad Laptop,1,999.99,2019-04-11 22:13:00,743 11th St, Dallas,TX,75001 +176930,USB-C Charging Cable,1,11.95,2019-04-15 09:41:00,161 Center St, Boston,MA,02215 +176931,ThinkPad Laptop,1,999.99,2019-04-13 08:47:00,57 Pine St, New York City,NY,10001 +176932,34in Ultrawide Monitor,1,379.99,2019-04-28 17:02:00,118 Church St, Seattle,WA,98101 +176933,Flatscreen TV,1,300.0,2019-04-24 10:34:00,698 Spruce St, New York City,NY,10001 +176934,AAA Batteries (4-pack),1,2.99,2019-04-08 19:44:00,329 Park St, New York City,NY,10001 +176935,AAA Batteries (4-pack),1,2.99,2019-04-03 21:31:00,315 1st St, Dallas,TX,75001 +176935,27in FHD Monitor,1,149.99,2019-04-03 21:31:00,315 1st St, Dallas,TX,75001 +176936,Apple Airpods Headphones,1,150.0,2019-04-15 08:36:00,846 Hickory St, Boston,MA,02215 +176937,Google Phone,1,600.0,2019-04-30 22:04:00,980 7th St, Los Angeles,CA,90001 +176938,AAA Batteries (4-pack),1,2.99,2019-04-29 21:08:00,249 Jefferson St, Los Angeles,CA,90001 +176939,AAA Batteries (4-pack),1,2.99,2019-04-06 12:50:00,418 12th St, San Francisco,CA,94016 +176940,Lightning Charging Cable,1,14.95,2019-04-02 23:59:00,864 Hickory St, Dallas,TX,75001 +176941,27in 4K Gaming Monitor,1,389.99,2019-04-11 18:46:00,807 14th St, San Francisco,CA,94016 +176942,AA Batteries (4-pack),1,3.84,2019-04-12 10:02:00,419 Washington St, Portland,OR,97035 +176943,Lightning Charging Cable,1,14.95,2019-04-09 06:50:00,211 2nd St, San Francisco,CA,94016 +176944,Bose SoundSport Headphones,1,99.99,2019-04-28 06:22:00,719 West St, Austin,TX,73301 +176945,USB-C Charging Cable,1,11.95,2019-04-24 02:17:00,701 Pine St, Austin,TX,73301 +176946,Lightning Charging Cable,1,14.95,2019-04-27 16:36:00,991 6th St, New York City,NY,10001 +176947,AA Batteries (4-pack),2,3.84,2019-04-02 18:40:00,357 Center St, Los Angeles,CA,90001 +176948,Wired Headphones,1,11.99,2019-04-26 09:46:00,761 Highland St, San Francisco,CA,94016 +176949,USB-C Charging Cable,1,11.95,2019-04-27 12:54:00,347 Jackson St, Los Angeles,CA,90001 +176950,Lightning Charging Cable,1,14.95,2019-04-04 08:54:00,929 Johnson St, Dallas,TX,75001 +176951,USB-C Charging Cable,2,11.95,2019-04-15 21:57:00,606 Lakeview St, Boston,MA,02215 +176952,AAA Batteries (4-pack),1,2.99,2019-04-06 18:47:00,693 5th St, Los Angeles,CA,90001 +176953,Flatscreen TV,1,300.0,2019-04-29 13:41:00,595 West St, Dallas,TX,75001 +176954,Bose SoundSport Headphones,1,99.99,2019-04-28 14:49:00,524 Elm St, San Francisco,CA,94016 +176955,AAA Batteries (4-pack),1,2.99,2019-04-02 16:08:00,169 Church St, San Francisco,CA,94016 +176956,AA Batteries (4-pack),1,3.84,2019-04-01 21:43:00,703 5th St, Dallas,TX,75001 +176957,Google Phone,1,600.0,2019-04-06 18:22:00,582 Church St, Boston,MA,02215 +176958,Bose SoundSport Headphones,1,99.99,2019-04-23 09:26:00,497 Main St, Boston,MA,02215 +176959,Wired Headphones,1,11.99,2019-04-08 18:32:00,125 Jefferson St, Seattle,WA,98101 +176960,Bose SoundSport Headphones,1,99.99,2019-04-08 14:49:00,737 West St, Dallas,TX,75001 +176961,27in FHD Monitor,1,149.99,2019-04-16 15:13:00,357 Willow St, Portland,OR,97035 +176962,Wired Headphones,1,11.99,2019-04-07 11:19:00,710 Church St, San Francisco,CA,94016 +176963,AAA Batteries (4-pack),2,2.99,2019-04-14 13:17:00,390 Walnut St, Los Angeles,CA,90001 +176964,AAA Batteries (4-pack),1,2.99,2019-04-05 14:43:00,453 Cedar St, San Francisco,CA,94016 +176965,Lightning Charging Cable,1,14.95,2019-04-08 09:00:00,900 Dogwood St, Boston,MA,02215 +176966,Bose SoundSport Headphones,1,99.99,2019-04-22 23:21:00,3 Main St, Boston,MA,02215 +176967,27in 4K Gaming Monitor,1,389.99,2019-04-13 13:04:00,275 Lake St, Dallas,TX,75001 +176968,Bose SoundSport Headphones,1,99.99,2019-04-28 08:30:00,183 2nd St, Atlanta,GA,30301 +176969,AA Batteries (4-pack),1,3.84,2019-04-05 09:27:00,346 Wilson St, Portland,OR,97035 +176970,Bose SoundSport Headphones,1,99.99,2019-04-06 19:33:00,524 7th St, Los Angeles,CA,90001 +176971,AAA Batteries (4-pack),1,2.99,2019-04-05 22:56:00,166 5th St, New York City,NY,10001 +176972,27in FHD Monitor,1,149.99,2019-04-06 17:36:00,824 West St, Seattle,WA,98101 +176973,Wired Headphones,1,11.99,2019-04-04 21:49:00,748 Madison St, Los Angeles,CA,90001 +176974,ThinkPad Laptop,1,999.99,2019-04-05 22:51:00,789 Center St, Seattle,WA,98101 +176975,USB-C Charging Cable,1,11.95,2019-04-23 15:46:00,28 13th St, San Francisco,CA,94016 +176975,AAA Batteries (4-pack),1,2.99,2019-04-23 15:46:00,28 13th St, San Francisco,CA,94016 +176976,27in FHD Monitor,1,149.99,2019-04-18 05:42:00,260 Pine St, Los Angeles,CA,90001 +176977,Bose SoundSport Headphones,1,99.99,2019-04-06 13:57:00,808 Ridge St, Portland,OR,97035 +176978,Apple Airpods Headphones,1,150.0,2019-05-01 03:29:00,589 Lake St, Portland,OR,97035 +176979,AAA Batteries (4-pack),2,2.99,2019-04-28 17:53:00,315 9th St, New York City,NY,10001 +176980,Bose SoundSport Headphones,1,99.99,2019-04-02 11:20:00,456 10th St, Seattle,WA,98101 +176981,Google Phone,1,600.0,2019-04-01 11:29:00,924 11th St, San Francisco,CA,94016 +176982,iPhone,1,700.0,2019-04-14 13:53:00,237 Lake St, Los Angeles,CA,90001 +176983,AAA Batteries (4-pack),2,2.99,2019-04-23 10:18:00,769 11th St, Boston,MA,02215 +176984,Apple Airpods Headphones,1,150.0,2019-04-22 19:39:00,77 Lake St, Portland,OR,97035 +176985,USB-C Charging Cable,1,11.95,2019-04-15 11:52:00,859 7th St, New York City,NY,10001 +176986,Apple Airpods Headphones,1,150.0,2019-04-12 14:45:00,623 Lakeview St, Los Angeles,CA,90001 +176987,AAA Batteries (4-pack),1,2.99,2019-04-22 09:28:00,87 Spruce St, San Francisco,CA,94016 +176988,Lightning Charging Cable,1,14.95,2019-04-30 23:02:00,251 South St, Boston,MA,02215 +176989,Google Phone,1,600.0,2019-04-09 13:43:00,346 9th St, Los Angeles,CA,90001 +176989,USB-C Charging Cable,1,11.95,2019-04-09 13:43:00,346 9th St, Los Angeles,CA,90001 +176990,27in FHD Monitor,1,149.99,2019-04-07 00:15:00,322 2nd St, San Francisco,CA,94016 +176991,Bose SoundSport Headphones,1,99.99,2019-04-15 01:49:00,338 2nd St, San Francisco,CA,94016 +176992,AAA Batteries (4-pack),2,2.99,2019-04-15 12:22:00,927 5th St, New York City,NY,10001 +176993,iPhone,1,700.0,2019-04-07 09:43:00,28 South St, Los Angeles,CA,90001 +176993,Wired Headphones,1,11.99,2019-04-07 09:43:00,28 South St, Los Angeles,CA,90001 +176994,Google Phone,1,600.0,2019-04-15 12:39:00,628 12th St, Los Angeles,CA,90001 +176995,AA Batteries (4-pack),2,3.84,2019-04-20 23:12:00,964 8th St, San Francisco,CA,94016 +176996,Wired Headphones,1,11.99,2019-04-23 13:57:00,57 Wilson St, Atlanta,GA,30301 +176997,AA Batteries (4-pack),1,3.84,2019-04-25 16:57:00,354 14th St, New York City,NY,10001 +176998,Bose SoundSport Headphones,1,99.99,2019-04-12 12:54:00,481 Maple St, San Francisco,CA,94016 +176999,Lightning Charging Cable,1,14.95,2019-04-28 11:19:00,192 7th St, Seattle,WA,98101 +177000,USB-C Charging Cable,1,11.95,2019-04-26 16:08:00,936 9th St, Los Angeles,CA,90001 +177001,Wired Headphones,1,11.99,2019-04-17 09:49:00,958 Walnut St, Los Angeles,CA,90001 +177002,USB-C Charging Cable,1,11.95,2019-04-15 10:38:00,965 Elm St, San Francisco,CA,94016 +177003,USB-C Charging Cable,1,11.95,2019-04-13 16:09:00,903 Wilson St, San Francisco,CA,94016 +177004,AAA Batteries (4-pack),1,2.99,2019-04-24 17:43:00,781 Wilson St, Los Angeles,CA,90001 +177005,Lightning Charging Cable,1,14.95,2019-04-28 11:38:00,375 Jefferson St, Los Angeles,CA,90001 +177006,34in Ultrawide Monitor,1,379.99,2019-04-02 16:42:00,776 Spruce St, Austin,TX,73301 +177007,AAA Batteries (4-pack),1,2.99,2019-04-18 13:10:00,806 Willow St, Boston,MA,02215 +177008,Apple Airpods Headphones,1,150.0,2019-04-05 21:19:00,899 7th St, Dallas,TX,75001 +177009,AA Batteries (4-pack),1,3.84,2019-04-24 11:08:00,623 5th St, Los Angeles,CA,90001 +177010,Apple Airpods Headphones,1,150.0,2019-04-28 13:42:00,885 Jefferson St, Dallas,TX,75001 +177011,Wired Headphones,2,11.99,2019-04-11 11:18:00,742 Maple St, Dallas,TX,75001 +177012,Lightning Charging Cable,3,14.95,2019-04-29 14:05:00,987 9th St, New York City,NY,10001 +177013,AAA Batteries (4-pack),1,2.99,2019-04-18 18:52:00,398 Pine St, Los Angeles,CA,90001 +177014,Lightning Charging Cable,1,14.95,2019-04-17 07:41:00,918 Maple St, Dallas,TX,75001 +177015,Lightning Charging Cable,1,14.95,2019-04-26 13:55:00,61 7th St, New York City,NY,10001 +177016,USB-C Charging Cable,1,11.95,2019-04-23 17:05:00,277 Johnson St, Seattle,WA,98101 +177017,AAA Batteries (4-pack),5,2.99,2019-04-16 00:04:00,713 Sunset St, New York City,NY,10001 +177018,USB-C Charging Cable,1,11.95,2019-04-25 07:35:00,412 Church St, New York City,NY,10001 +177019,USB-C Charging Cable,1,11.95,2019-04-20 15:44:00,2 4th St, San Francisco,CA,94016 +177020,Macbook Pro Laptop,1,1700.0,2019-04-16 22:31:00,606 Walnut St, Seattle,WA,98101 +177021,Bose SoundSport Headphones,1,99.99,2019-04-08 21:52:00,542 Cedar St, San Francisco,CA,94016 +177022,iPhone,1,700.0,2019-04-17 18:14:00,216 Chestnut St, Los Angeles,CA,90001 +177022,Wired Headphones,1,11.99,2019-04-17 18:14:00,216 Chestnut St, Los Angeles,CA,90001 +177023,AAA Batteries (4-pack),1,2.99,2019-04-23 20:40:00,320 Adams St, New York City,NY,10001 +177024,Bose SoundSport Headphones,1,99.99,2019-04-27 15:00:00,565 Madison St, Los Angeles,CA,90001 +177025,27in FHD Monitor,1,149.99,2019-04-06 14:42:00,708 Cedar St, San Francisco,CA,94016 +177026,34in Ultrawide Monitor,1,379.99,2019-04-11 22:15:00,892 5th St, Austin,TX,73301 +177027,USB-C Charging Cable,1,11.95,2019-04-24 09:12:00,472 Pine St, San Francisco,CA,94016 +177028,Bose SoundSport Headphones,1,99.99,2019-04-04 12:58:00,456 Jefferson St, Atlanta,GA,30301 +177029,Wired Headphones,1,11.99,2019-04-29 11:23:00,404 Church St, Boston,MA,02215 +177030,USB-C Charging Cable,1,11.95,2019-04-03 10:55:00,60 Adams St, San Francisco,CA,94016 +177031,Apple Airpods Headphones,1,150.0,2019-04-25 13:50:00,448 11th St, Los Angeles,CA,90001 +177032,iPhone,1,700.0,2019-04-22 07:29:00,307 7th St, San Francisco,CA,94016 +177033,USB-C Charging Cable,1,11.95,2019-04-02 18:13:00,915 Park St, San Francisco,CA,94016 +177034,USB-C Charging Cable,1,11.95,2019-04-30 10:25:00,268 Johnson St, Los Angeles,CA,90001 +177035,Bose SoundSport Headphones,1,99.99,2019-04-26 12:15:00,236 North St, Los Angeles,CA,90001 +177036,Lightning Charging Cable,2,14.95,2019-04-27 19:05:00,125 Park St, San Francisco,CA,94016 +177037,34in Ultrawide Monitor,1,379.99,2019-04-27 01:44:00,135 Jefferson St, San Francisco,CA,94016 +177038,iPhone,1,700.0,2019-04-03 12:11:00,632 Sunset St, San Francisco,CA,94016 +177039,AAA Batteries (4-pack),1,2.99,2019-04-26 20:44:00,167 2nd St, San Francisco,CA,94016 +177040,USB-C Charging Cable,1,11.95,2019-04-15 09:27:00,485 7th St, San Francisco,CA,94016 +177041,Wired Headphones,1,11.99,2019-04-11 12:59:00,265 Spruce St, Atlanta,GA,30301 +177042,Lightning Charging Cable,1,14.95,2019-04-24 06:57:00,876 Hill St, San Francisco,CA,94016 +177043,27in 4K Gaming Monitor,1,389.99,2019-04-02 22:02:00,658 West St, New York City,NY,10001 +177044,AA Batteries (4-pack),1,3.84,2019-04-01 20:31:00,817 4th St, Atlanta,GA,30301 +177045,Flatscreen TV,1,300.0,2019-04-07 22:40:00,570 1st St, New York City,NY,10001 +177046,Vareebadd Phone,1,400.0,2019-04-29 13:02:00,406 12th St, Los Angeles,CA,90001 +177047,Lightning Charging Cable,1,14.95,2019-04-13 11:52:00,258 Johnson St, New York City,NY,10001 +177048,Bose SoundSport Headphones,1,99.99,2019-04-12 21:23:00,432 5th St, New York City,NY,10001 +177049,Wired Headphones,1,11.99,2019-04-03 06:55:00,154 Dogwood St, San Francisco,CA,94016 +177050,Apple Airpods Headphones,1,150.0,2019-04-08 09:53:00,510 Elm St, Boston,MA,02215 +177051,Wired Headphones,2,11.99,2019-04-07 08:41:00,777 Adams St, Boston,MA,02215 +177052,USB-C Charging Cable,2,11.95,2019-04-02 09:30:00,532 Walnut St, San Francisco,CA,94016 +177053,Wired Headphones,1,11.99,2019-04-24 20:45:00,5 Adams St, Boston,MA,02215 +177054,Apple Airpods Headphones,1,150.0,2019-04-09 19:18:00,800 Jackson St, Atlanta,GA,30301 +177055,Lightning Charging Cable,1,14.95,2019-04-09 12:37:00,59 Forest St, Atlanta,GA,30301 +177056,Flatscreen TV,1,300.0,2019-04-20 23:52:00,180 9th St, San Francisco,CA,94016 +177057,Bose SoundSport Headphones,1,99.99,2019-04-09 08:57:00,585 Cherry St, New York City,NY,10001 +177058,20in Monitor,1,109.99,2019-04-07 09:24:00,144 Adams St, Los Angeles,CA,90001 +177059,AAA Batteries (4-pack),1,2.99,2019-04-19 22:55:00,991 Spruce St, San Francisco,CA,94016 +177060,AA Batteries (4-pack),1,3.84,2019-04-02 12:44:00,97 Wilson St, Boston,MA,02215 +177061,Bose SoundSport Headphones,1,99.99,2019-04-09 09:33:00,913 North St, New York City,NY,10001 +177062,Apple Airpods Headphones,1,150.0,2019-04-27 19:16:00,60 Highland St, San Francisco,CA,94016 +177063,AAA Batteries (4-pack),1,2.99,2019-04-05 18:23:00,489 Washington St, Los Angeles,CA,90001 +177064,Wired Headphones,1,11.99,2019-04-02 20:57:00,216 12th St, Portland,OR,97035 +177065,AAA Batteries (4-pack),4,2.99,2019-04-03 21:04:00,171 Madison St, Boston,MA,02215 +177066,Macbook Pro Laptop,1,1700.0,2019-04-08 20:02:00,278 10th St, San Francisco,CA,94016 +177067,Lightning Charging Cable,1,14.95,2019-04-24 17:48:00,575 South St, Boston,MA,02215 +177068,27in FHD Monitor,1,149.99,2019-04-02 06:53:00,749 South St, Los Angeles,CA,90001 +177069,iPhone,1,700.0,2019-04-17 13:40:00,295 Jackson St, Portland,OR,97035 +177070,USB-C Charging Cable,1,11.95,2019-04-17 22:25:00,687 Chestnut St, San Francisco,CA,94016 +177071,34in Ultrawide Monitor,1,379.99,2019-04-22 22:28:00,149 Ridge St, San Francisco,CA,94016 +177072,iPhone,1,700.0,2019-04-01 13:11:00,682 9th St, Portland,ME,04101 +177073,AA Batteries (4-pack),3,3.84,2019-04-01 15:59:00,725 Elm St, San Francisco,CA,94016 +177074,27in FHD Monitor,1,149.99,2019-04-21 22:39:00,531 Main St, Boston,MA,02215 +177075,Bose SoundSport Headphones,1,99.99,2019-04-26 05:30:00,985 Sunset St, San Francisco,CA,94016 +177076,Wired Headphones,1,11.99,2019-04-28 19:45:00,959 Washington St, Los Angeles,CA,90001 +177077,AAA Batteries (4-pack),1,2.99,2019-04-10 07:11:00,403 Pine St, Dallas,TX,75001 +177078,USB-C Charging Cable,1,11.95,2019-04-03 14:31:00,628 4th St, Seattle,WA,98101 +177079,Lightning Charging Cable,1,14.95,2019-04-28 12:06:00,60 Cherry St, San Francisco,CA,94016 +177080,AAA Batteries (4-pack),1,2.99,2019-04-14 17:33:00,395 Spruce St, Atlanta,GA,30301 +177081,Flatscreen TV,1,300.0,2019-04-09 08:36:00,920 West St, San Francisco,CA,94016 +177082,34in Ultrawide Monitor,1,379.99,2019-04-12 02:30:00,15 Johnson St, Seattle,WA,98101 +177083,Flatscreen TV,1,300.0,2019-04-12 12:45:00,876 Cedar St, New York City,NY,10001 +177084,AA Batteries (4-pack),1,3.84,2019-04-18 16:15:00,25 11th St, Boston,MA,02215 +177085,iPhone,1,700.0,2019-04-19 20:31:00,770 Elm St, New York City,NY,10001 +177086,Lightning Charging Cable,1,14.95,2019-04-08 00:07:00,669 Chestnut St, Los Angeles,CA,90001 +177087,Wired Headphones,1,11.99,2019-04-27 13:08:00,327 12th St, Atlanta,GA,30301 +177088,AAA Batteries (4-pack),3,2.99,2019-04-16 06:57:00,828 West St, Boston,MA,02215 +177089,Apple Airpods Headphones,1,150.0,2019-04-10 17:46:00,872 North St, San Francisco,CA,94016 +177090,USB-C Charging Cable,1,11.95,2019-04-09 17:18:00,234 River St, Los Angeles,CA,90001 +177091,Apple Airpods Headphones,1,150.0,2019-04-05 13:51:00,61 Forest St, Los Angeles,CA,90001 +177092,AAA Batteries (4-pack),1,2.99,2019-04-04 15:00:00,544 Madison St, San Francisco,CA,94016 +177093,27in FHD Monitor,1,149.99,2019-04-29 12:29:00,124 Church St, San Francisco,CA,94016 +177094,Flatscreen TV,1,300.0,2019-04-30 13:02:00,785 8th St, Atlanta,GA,30301 +177095,Lightning Charging Cable,1,14.95,2019-04-27 18:11:00,924 Cedar St, Atlanta,GA,30301 +177096,USB-C Charging Cable,1,11.95,2019-04-06 19:49:00,115 Church St, Dallas,TX,75001 +177097,Vareebadd Phone,1,400.0,2019-04-21 18:04:00,35 Hickory St, Los Angeles,CA,90001 +177098,Apple Airpods Headphones,1,150.0,2019-04-30 12:07:00,960 4th St, Austin,TX,73301 +177099,AA Batteries (4-pack),1,3.84,2019-04-28 11:16:00,639 11th St, Austin,TX,73301 +177100,ThinkPad Laptop,1,999.99,2019-04-06 15:28:00,93 Spruce St, Atlanta,GA,30301 +177101,Flatscreen TV,1,300.0,2019-04-09 21:05:00,334 Wilson St, New York City,NY,10001 +177102,iPhone,1,700.0,2019-04-24 05:19:00,542 Center St, New York City,NY,10001 +177102,27in 4K Gaming Monitor,1,389.99,2019-04-24 05:19:00,542 Center St, New York City,NY,10001 +177103,ThinkPad Laptop,1,999.99,2019-04-12 11:41:00,532 10th St, Portland,OR,97035 +177104,Lightning Charging Cable,1,14.95,2019-04-09 19:28:00,505 12th St, Boston,MA,02215 +177105,Bose SoundSport Headphones,1,99.99,2019-04-10 18:39:00,60 Maple St, San Francisco,CA,94016 +177106,USB-C Charging Cable,1,11.95,2019-04-01 17:10:00,167 9th St, Los Angeles,CA,90001 +177107,Bose SoundSport Headphones,1,99.99,2019-04-20 20:12:00,153 Johnson St, Los Angeles,CA,90001 +177108,Bose SoundSport Headphones,1,99.99,2019-04-28 19:34:00,410 Jefferson St, San Francisco,CA,94016 +177109,Bose SoundSport Headphones,1,99.99,2019-04-08 10:12:00,550 Hickory St, New York City,NY,10001 +177110,AAA Batteries (4-pack),2,2.99,2019-04-28 12:56:00,307 8th St, San Francisco,CA,94016 +177111,USB-C Charging Cable,1,11.95,2019-04-15 06:56:00,591 Sunset St, San Francisco,CA,94016 +177112,USB-C Charging Cable,1,11.95,2019-04-23 11:40:00,66 Johnson St, Boston,MA,02215 +177113,20in Monitor,1,109.99,2019-04-02 12:40:00,554 Cedar St, Austin,TX,73301 +177114,Apple Airpods Headphones,1,150.0,2019-04-14 14:19:00,488 Ridge St, Portland,OR,97035 +177115,iPhone,1,700.0,2019-04-19 19:10:00,71 6th St, San Francisco,CA,94016 +177115,Lightning Charging Cable,1,14.95,2019-04-19 19:10:00,71 6th St, San Francisco,CA,94016 +177116,Bose SoundSport Headphones,1,99.99,2019-04-08 12:46:00,615 Cedar St, Los Angeles,CA,90001 +177117,ThinkPad Laptop,1,999.99,2019-04-16 19:34:00,564 Hill St, San Francisco,CA,94016 +177117,AAA Batteries (4-pack),1,2.99,2019-04-16 19:34:00,564 Hill St, San Francisco,CA,94016 +177118,AA Batteries (4-pack),1,3.84,2019-04-23 05:12:00,618 Park St, San Francisco,CA,94016 +177119,Vareebadd Phone,1,400.0,2019-04-06 20:13:00,617 Highland St, Seattle,WA,98101 +177120,Macbook Pro Laptop,1,1700.0,2019-04-03 09:46:00,371 Church St, New York City,NY,10001 +177121,Lightning Charging Cable,1,14.95,2019-04-23 20:54:00,377 Chestnut St, San Francisco,CA,94016 +177122,Apple Airpods Headphones,1,150.0,2019-04-30 19:49:00,57 11th St, Seattle,WA,98101 +177123,Flatscreen TV,1,300.0,2019-04-09 11:54:00,910 Cedar St, San Francisco,CA,94016 +177124,Lightning Charging Cable,1,14.95,2019-04-02 19:52:00,473 4th St, Dallas,TX,75001 +177125,Lightning Charging Cable,1,14.95,2019-04-23 21:40:00,377 Spruce St, Austin,TX,73301 +177126,Bose SoundSport Headphones,1,99.99,2019-04-28 19:31:00,838 Johnson St, San Francisco,CA,94016 +177127,27in FHD Monitor,1,149.99,2019-04-16 21:15:00,469 6th St, Austin,TX,73301 +177128,Flatscreen TV,1,300.0,2019-04-03 20:10:00,162 14th St, Los Angeles,CA,90001 +177129,Apple Airpods Headphones,1,150.0,2019-04-23 17:48:00,474 Elm St, San Francisco,CA,94016 +177130,LG Washing Machine,1,600.0,2019-04-01 08:43:00,777 Center St, Los Angeles,CA,90001 +177131,Lightning Charging Cable,1,14.95,2019-04-30 10:25:00,142 Wilson St, New York City,NY,10001 +177132,27in FHD Monitor,1,149.99,2019-04-06 13:56:00,215 Walnut St, Atlanta,GA,30301 +177133,27in FHD Monitor,1,149.99,2019-04-16 11:54:00,929 Jackson St, Los Angeles,CA,90001 +177134,Lightning Charging Cable,1,14.95,2019-04-16 12:58:00,132 Ridge St, San Francisco,CA,94016 +177135,iPhone,1,700.0,2019-04-25 06:18:00,528 Ridge St, Los Angeles,CA,90001 +177136,USB-C Charging Cable,1,11.95,2019-04-14 20:54:00,612 Center St, Boston,MA,02215 +177137,AA Batteries (4-pack),1,3.84,2019-04-06 12:20:00,72 11th St, Los Angeles,CA,90001 +177138,AAA Batteries (4-pack),1,2.99,2019-04-14 19:56:00,525 4th St, New York City,NY,10001 +177139,Apple Airpods Headphones,2,150.0,2019-04-03 14:05:00,723 Madison St, San Francisco,CA,94016 +177140,Lightning Charging Cable,1,14.95,2019-04-24 16:10:00,802 North St, Seattle,WA,98101 +177141,AAA Batteries (4-pack),1,2.99,2019-04-20 16:12:00,559 4th St, San Francisco,CA,94016 +177142,Lightning Charging Cable,1,14.95,2019-04-08 12:07:00,555 Madison St, Boston,MA,02215 +177143,Wired Headphones,1,11.99,2019-04-12 13:12:00,974 Madison St, Los Angeles,CA,90001 +177144,27in 4K Gaming Monitor,1,389.99,2019-04-03 16:58:00,740 Jackson St, Portland,OR,97035 +177145,LG Washing Machine,1,600.0,2019-04-25 09:50:00,790 Walnut St, San Francisco,CA,94016 +177146,Lightning Charging Cable,1,14.95,2019-04-07 20:34:00,425 Hill St, Portland,OR,97035 +177147,20in Monitor,1,109.99,2019-04-26 14:06:00,506 River St, San Francisco,CA,94016 +177148,USB-C Charging Cable,1,11.95,2019-04-06 11:04:00,681 Center St, Atlanta,GA,30301 +177149,34in Ultrawide Monitor,1,379.99,2019-04-24 06:23:00,346 12th St, Dallas,TX,75001 +177150,Wired Headphones,1,11.99,2019-04-27 10:05:00,727 Pine St, Los Angeles,CA,90001 +177151,ThinkPad Laptop,1,999.99,2019-04-11 10:24:00,625 Spruce St, San Francisco,CA,94016 +177152,ThinkPad Laptop,1,999.99,2019-04-05 23:20:00,587 9th St, Los Angeles,CA,90001 +177153,Flatscreen TV,1,300.0,2019-04-10 13:51:00,602 Jefferson St, Austin,TX,73301 +177154,AAA Batteries (4-pack),1,2.99,2019-04-27 15:40:00,136 6th St, San Francisco,CA,94016 +177155,Lightning Charging Cable,1,14.95,2019-04-19 13:09:00,747 Cedar St, Seattle,WA,98101 +177156,Apple Airpods Headphones,1,150.0,2019-04-05 16:21:00,367 Willow St, New York City,NY,10001 +177157,AA Batteries (4-pack),1,3.84,2019-04-14 10:52:00,518 Madison St, San Francisco,CA,94016 +177158,Lightning Charging Cable,2,14.95,2019-04-12 07:16:00,294 Lincoln St, Los Angeles,CA,90001 +177159,AAA Batteries (4-pack),1,2.99,2019-04-14 23:16:00,600 Cedar St, Atlanta,GA,30301 +177160,AAA Batteries (4-pack),7,2.99,2019-04-26 11:37:00,689 7th St, Dallas,TX,75001 +177161,Wired Headphones,1,11.99,2019-04-03 09:38:00,243 Pine St, San Francisco,CA,94016 +177162,Bose SoundSport Headphones,1,99.99,2019-04-22 14:43:00,18 Main St, Los Angeles,CA,90001 +177163,Wired Headphones,1,11.99,2019-04-19 09:30:00,579 14th St, San Francisco,CA,94016 +177164,Lightning Charging Cable,1,14.95,2019-04-18 15:51:00,877 Hill St, Los Angeles,CA,90001 +177165,Wired Headphones,1,11.99,2019-04-18 23:18:00,435 Highland St, San Francisco,CA,94016 +177166,Wired Headphones,1,11.99,2019-04-04 16:13:00,375 13th St, Boston,MA,02215 +177167,iPhone,1,700.0,2019-04-28 16:40:00,39 Lakeview St, Boston,MA,02215 +177167,Apple Airpods Headphones,1,150.0,2019-04-28 16:40:00,39 Lakeview St, Boston,MA,02215 +177167,AAA Batteries (4-pack),3,2.99,2019-04-28 16:40:00,39 Lakeview St, Boston,MA,02215 +177168,Google Phone,1,600.0,2019-04-12 10:22:00,306 Jackson St, New York City,NY,10001 +177169,27in FHD Monitor,1,149.99,2019-04-23 15:59:00,856 9th St, Portland,OR,97035 +177170,USB-C Charging Cable,1,11.95,2019-04-21 15:19:00,756 10th St, San Francisco,CA,94016 +177171,Vareebadd Phone,1,400.0,2019-04-06 01:03:00,550 Walnut St, San Francisco,CA,94016 +177172,Bose SoundSport Headphones,1,99.99,2019-04-28 16:23:00,872 13th St, New York City,NY,10001 +177173,Lightning Charging Cable,1,14.95,2019-04-25 12:49:00,396 Sunset St, Los Angeles,CA,90001 +177174,AAA Batteries (4-pack),1,2.99,2019-04-12 14:49:00,431 Walnut St, Los Angeles,CA,90001 +177175,Macbook Pro Laptop,1,1700.0,2019-04-11 07:49:00,603 Lake St, Los Angeles,CA,90001 +177176,USB-C Charging Cable,1,11.95,2019-04-01 11:36:00,5 Center St, Dallas,TX,75001 +177177,AA Batteries (4-pack),1,3.84,2019-04-08 12:10:00,182 12th St, San Francisco,CA,94016 +177178,iPhone,1,700.0,2019-04-07 00:02:00,342 Dogwood St, Seattle,WA,98101 +177178,Lightning Charging Cable,1,14.95,2019-04-07 00:02:00,342 Dogwood St, Seattle,WA,98101 +177179,Lightning Charging Cable,1,14.95,2019-04-15 08:32:00,225 Pine St, Austin,TX,73301 +177180,USB-C Charging Cable,1,11.95,2019-04-18 22:27:00,679 Jackson St, Dallas,TX,75001 +177181,Wired Headphones,1,11.99,2019-04-09 00:49:00,309 8th St, Los Angeles,CA,90001 +177181,Apple Airpods Headphones,1,150.0,2019-04-09 00:49:00,309 8th St, Los Angeles,CA,90001 +177182,Macbook Pro Laptop,1,1700.0,2019-04-10 22:00:00,332 10th St, Los Angeles,CA,90001 +177182,ThinkPad Laptop,1,999.99,2019-04-10 22:00:00,332 10th St, Los Angeles,CA,90001 +177183,Wired Headphones,1,11.99,2019-04-03 19:38:00,973 Lincoln St, Boston,MA,02215 +177184,AA Batteries (4-pack),1,3.84,2019-04-01 16:49:00,289 Hill St, Atlanta,GA,30301 +177184,Flatscreen TV,1,300.0,2019-04-01 16:49:00,289 Hill St, Atlanta,GA,30301 +177185,Lightning Charging Cable,1,14.95,2019-04-08 09:57:00,985 11th St, Dallas,TX,75001 +177186,Bose SoundSport Headphones,1,99.99,2019-04-11 21:30:00,879 Ridge St, Austin,TX,73301 +177187,Google Phone,1,600.0,2019-04-04 18:08:00,600 1st St, Seattle,WA,98101 +177188,AAA Batteries (4-pack),2,2.99,2019-04-29 23:34:00,281 Lake St, Los Angeles,CA,90001 +177189,Bose SoundSport Headphones,1,99.99,2019-04-04 00:35:00,346 7th St, Dallas,TX,75001 +177190,Lightning Charging Cable,1,14.95,2019-04-05 15:16:00,403 Lake St, San Francisco,CA,94016 +177191,Bose SoundSport Headphones,1,99.99,2019-04-26 23:18:00,276 Cherry St, San Francisco,CA,94016 +177192,AAA Batteries (4-pack),1,2.99,2019-04-16 11:14:00,847 1st St, Los Angeles,CA,90001 +177193,Apple Airpods Headphones,1,150.0,2019-04-24 10:22:00,333 Park St, San Francisco,CA,94016 +177194,Lightning Charging Cable,1,14.95,2019-04-10 18:36:00,477 Wilson St, Austin,TX,73301 +177195,AA Batteries (4-pack),1,3.84,2019-04-25 17:39:00,598 Spruce St, San Francisco,CA,94016 +177196,Apple Airpods Headphones,1,150.0,2019-04-03 15:03:00,193 1st St, San Francisco,CA,94016 +177197,ThinkPad Laptop,1,999.99,2019-04-17 16:01:00,654 River St, New York City,NY,10001 +177198,Vareebadd Phone,1,400.0,2019-04-06 16:07:00,154 6th St, New York City,NY,10001 +177198,USB-C Charging Cable,2,11.95,2019-04-06 16:07:00,154 6th St, New York City,NY,10001 +177199,iPhone,1,700.0,2019-04-21 01:09:00,640 Hill St, Austin,TX,73301 +177200,AAA Batteries (4-pack),1,2.99,2019-04-19 11:55:00,419 4th St, Los Angeles,CA,90001 +177201,USB-C Charging Cable,1,11.95,2019-04-26 16:13:00,505 River St, Los Angeles,CA,90001 +177201,Lightning Charging Cable,1,14.95,2019-04-26 16:13:00,505 River St, Los Angeles,CA,90001 +177202,USB-C Charging Cable,1,11.95,2019-04-08 07:26:00,828 Washington St, Atlanta,GA,30301 +177203,27in FHD Monitor,1,149.99,2019-04-13 18:29:00,585 2nd St, Austin,TX,73301 +177204,Lightning Charging Cable,1,14.95,2019-04-24 11:13:00,887 Johnson St, Austin,TX,73301 +177205,AA Batteries (4-pack),2,3.84,2019-04-18 14:52:00,927 Hill St, San Francisco,CA,94016 +177206,Apple Airpods Headphones,1,150.0,2019-04-14 13:06:00,307 Washington St, New York City,NY,10001 +177207,USB-C Charging Cable,1,11.95,2019-04-03 11:41:00,44 Cedar St, Dallas,TX,75001 +177208,Vareebadd Phone,1,400.0,2019-04-30 18:04:00,164 2nd St, Austin,TX,73301 +177209,Lightning Charging Cable,1,14.95,2019-04-22 08:31:00,799 Chestnut St, New York City,NY,10001 +177210,AA Batteries (4-pack),1,3.84,2019-04-21 18:47:00,462 Elm St, Boston,MA,02215 +177211,AA Batteries (4-pack),3,3.84,2019-04-29 12:40:00,107 Chestnut St, New York City,NY,10001 +177212,Lightning Charging Cable,1,14.95,2019-04-10 18:45:00,561 Madison St, Portland,OR,97035 +177213,iPhone,1,700.0,2019-04-25 10:04:00,756 Lincoln St, Dallas,TX,75001 +177213,Lightning Charging Cable,1,14.95,2019-04-25 10:04:00,756 Lincoln St, Dallas,TX,75001 +177214,AAA Batteries (4-pack),2,2.99,2019-04-09 02:05:00,616 9th St, Seattle,WA,98101 +177215,Bose SoundSport Headphones,1,99.99,2019-04-10 09:01:00,67 13th St, Seattle,WA,98101 +177216,Macbook Pro Laptop,1,1700.0,2019-04-25 17:45:00,712 12th St, Atlanta,GA,30301 +177217,Macbook Pro Laptop,1,1700.0,2019-04-15 16:13:00,262 Willow St, New York City,NY,10001 +177218,Wired Headphones,1,11.99,2019-04-18 22:28:00,222 River St, New York City,NY,10001 +177219,AA Batteries (4-pack),1,3.84,2019-04-01 07:59:00,380 Jefferson St, Seattle,WA,98101 +177220,Wired Headphones,1,11.99,2019-04-02 19:09:00,244 Elm St, New York City,NY,10001 +177221,34in Ultrawide Monitor,1,379.99,2019-04-12 20:33:00,5 Hickory St, San Francisco,CA,94016 +177222,AA Batteries (4-pack),3,3.84,2019-04-20 16:54:00,287 13th St, New York City,NY,10001 +177223,27in 4K Gaming Monitor,1,389.99,2019-04-13 12:54:00,202 12th St, San Francisco,CA,94016 +177224,Lightning Charging Cable,1,14.95,2019-04-07 20:31:00,151 5th St, Atlanta,GA,30301 +177225,ThinkPad Laptop,1,999.99,2019-04-05 00:02:00,399 Church St, San Francisco,CA,94016 +177226,Lightning Charging Cable,1,14.95,2019-04-25 18:22:00,884 Jackson St, Los Angeles,CA,90001 +177227,AA Batteries (4-pack),1,3.84,2019-04-12 07:28:00,544 11th St, Seattle,WA,98101 +177228,Google Phone,1,600.0,2019-04-17 19:38:00,233 South St, Dallas,TX,75001 +177228,AA Batteries (4-pack),1,3.84,2019-04-17 19:38:00,233 South St, Dallas,TX,75001 +177229,27in 4K Gaming Monitor,1,389.99,2019-04-12 20:56:00,877 Walnut St, Seattle,WA,98101 +177230,iPhone,1,700.0,2019-04-06 00:26:00,16 River St, Portland,ME,04101 +177231,USB-C Charging Cable,1,11.95,2019-04-10 13:44:00,508 Johnson St, Austin,TX,73301 +177232,Wired Headphones,1,11.99,2019-04-07 22:41:00,597 Jefferson St, San Francisco,CA,94016 +177233,Google Phone,1,600.0,2019-04-25 15:59:00,622 7th St, Portland,ME,04101 +177234,Lightning Charging Cable,1,14.95,2019-04-10 12:29:00,664 7th St, Atlanta,GA,30301 +177235,AA Batteries (4-pack),2,3.84,2019-04-01 13:27:00,369 9th St, Dallas,TX,75001 +177236,Flatscreen TV,1,300.0,2019-04-25 18:52:00,388 2nd St, Los Angeles,CA,90001 +177237,AA Batteries (4-pack),1,3.84,2019-04-06 16:36:00,108 Center St, New York City,NY,10001 +177238,AA Batteries (4-pack),1,3.84,2019-04-25 19:04:00,966 Lake St, San Francisco,CA,94016 +177239,iPhone,1,700.0,2019-04-13 12:17:00,336 Maple St, San Francisco,CA,94016 +177240,27in FHD Monitor,1,149.99,2019-04-13 18:30:00,226 Washington St, Los Angeles,CA,90001 +177241,Lightning Charging Cable,1,14.95,2019-04-03 17:58:00,999 North St, Dallas,TX,75001 +177242,USB-C Charging Cable,1,11.95,2019-04-12 16:12:00,354 Center St, New York City,NY,10001 +177243,AAA Batteries (4-pack),1,2.99,2019-04-29 20:37:00,287 North St, Los Angeles,CA,90001 +177244,USB-C Charging Cable,1,11.95,2019-04-03 13:31:00,993 12th St, Los Angeles,CA,90001 +177245,Lightning Charging Cable,1,14.95,2019-04-12 16:27:00,472 Sunset St, San Francisco,CA,94016 +177246,AA Batteries (4-pack),1,3.84,2019-04-19 18:06:00,768 Jefferson St, Seattle,WA,98101 +177247,20in Monitor,1,109.99,2019-04-05 14:24:00,613 7th St, Los Angeles,CA,90001 +177248,Lightning Charging Cable,1,14.95,2019-04-05 15:29:00,597 Maple St, San Francisco,CA,94016 +177249,AA Batteries (4-pack),1,3.84,2019-04-14 20:05:00,61 Adams St, Atlanta,GA,30301 +177250,Apple Airpods Headphones,1,150.0,2019-04-29 18:50:00,586 Jackson St, Dallas,TX,75001 +177251,Lightning Charging Cable,1,14.95,2019-04-18 10:42:00,580 Lincoln St, Austin,TX,73301 +177252,Lightning Charging Cable,1,14.95,2019-04-14 16:36:00,904 Chestnut St, San Francisco,CA,94016 +177253,Apple Airpods Headphones,1,150.0,2019-04-05 13:57:00,456 Cherry St, San Francisco,CA,94016 +177254,AA Batteries (4-pack),1,3.84,2019-04-21 02:12:00,689 Cherry St, Boston,MA,02215 +177254,AAA Batteries (4-pack),2,2.99,2019-04-21 02:12:00,689 Cherry St, Boston,MA,02215 +177255,USB-C Charging Cable,2,11.95,2019-04-08 09:19:00,695 Hill St, Boston,MA,02215 +177256,Bose SoundSport Headphones,1,99.99,2019-04-28 21:34:00,789 11th St, San Francisco,CA,94016 +177256,AA Batteries (4-pack),1,3.84,2019-04-28 21:34:00,789 11th St, San Francisco,CA,94016 +177257,AA Batteries (4-pack),1,3.84,2019-04-27 21:55:00,317 Hill St, Portland,OR,97035 +177258,Lightning Charging Cable,1,14.95,2019-04-02 16:13:00,272 10th St, Dallas,TX,75001 +177259,34in Ultrawide Monitor,1,379.99,2019-04-08 13:36:00,176 Hill St, New York City,NY,10001 +177260,Bose SoundSport Headphones,1,99.99,2019-04-10 13:39:00,288 Jackson St, Atlanta,GA,30301 +177261,34in Ultrawide Monitor,1,379.99,2019-04-16 23:25:00,804 8th St, Boston,MA,02215 +177262,USB-C Charging Cable,1,11.95,2019-04-03 13:57:00,804 Johnson St, Portland,OR,97035 +177263,27in 4K Gaming Monitor,1,389.99,2019-04-29 11:18:00,70 Johnson St, San Francisco,CA,94016 +177264,AAA Batteries (4-pack),2,2.99,2019-04-05 21:35:00,236 9th St, Austin,TX,73301 +177265,Bose SoundSport Headphones,1,99.99,2019-04-28 15:45:00,164 Hickory St, San Francisco,CA,94016 +177266,AA Batteries (4-pack),1,3.84,2019-04-21 19:20:00,251 Highland St, New York City,NY,10001 +177267,Bose SoundSport Headphones,1,99.99,2019-04-23 11:00:00,410 Hill St, Atlanta,GA,30301 +177268,AAA Batteries (4-pack),2,2.99,2019-04-01 21:21:00,985 Main St, New York City,NY,10001 +177269,AAA Batteries (4-pack),1,2.99,2019-04-16 19:22:00,460 2nd St, Dallas,TX,75001 +177270,Google Phone,1,600.0,2019-04-22 20:34:00,518 North St, Los Angeles,CA,90001 +177271,AA Batteries (4-pack),1,3.84,2019-04-21 08:53:00,832 Adams St, New York City,NY,10001 +177272,Lightning Charging Cable,2,14.95,2019-04-23 15:28:00,195 South St, Boston,MA,02215 +177273,USB-C Charging Cable,1,11.95,2019-04-17 08:29:00,351 4th St, San Francisco,CA,94016 +177274,AA Batteries (4-pack),1,3.84,2019-04-23 11:59:00,559 Washington St, Seattle,WA,98101 +177275,AA Batteries (4-pack),2,3.84,2019-04-22 18:26:00,542 14th St, Boston,MA,02215 +177276,AA Batteries (4-pack),1,3.84,2019-04-29 20:06:00,519 13th St, New York City,NY,10001 +177277,Wired Headphones,1,11.99,2019-04-02 17:26:00,467 Elm St, San Francisco,CA,94016 +177278,AA Batteries (4-pack),1,3.84,2019-04-19 10:41:00,936 Maple St, Boston,MA,02215 +177279,27in 4K Gaming Monitor,1,389.99,2019-04-22 22:27:00,235 Church St, Dallas,TX,75001 +177280,Lightning Charging Cable,1,14.95,2019-04-16 20:02:00,23 Madison St, San Francisco,CA,94016 +177281,27in FHD Monitor,1,149.99,2019-04-29 11:51:00,524 Hickory St, Atlanta,GA,30301 +177282,Wired Headphones,1,11.99,2019-04-08 23:44:00,710 7th St, Los Angeles,CA,90001 +177283,USB-C Charging Cable,1,11.95,2019-04-04 23:36:00,874 Maple St, San Francisco,CA,94016 +177284,Bose SoundSport Headphones,1,99.99,2019-04-18 12:15:00,593 Church St, Boston,MA,02215 +177285,20in Monitor,1,109.99,2019-04-02 21:26:00,947 Hickory St, San Francisco,CA,94016 +177286,AAA Batteries (4-pack),1,2.99,2019-04-05 11:10:00,545 5th St, New York City,NY,10001 +177287,AA Batteries (4-pack),2,3.84,2019-04-18 13:17:00,463 Hill St, San Francisco,CA,94016 +177288,USB-C Charging Cable,1,11.95,2019-04-03 17:47:00,102 Center St, San Francisco,CA,94016 +177289,Lightning Charging Cable,1,14.95,2019-04-04 09:18:00,441 Lakeview St, Dallas,TX,75001 +177290,27in FHD Monitor,1,149.99,2019-04-05 22:23:00,37 Sunset St, San Francisco,CA,94016 +177291,Apple Airpods Headphones,1,150.0,2019-04-24 11:19:00,172 Lincoln St, New York City,NY,10001 +177292,Wired Headphones,1,11.99,2019-04-11 19:10:00,76 Jefferson St, Los Angeles,CA,90001 +177293,AA Batteries (4-pack),3,3.84,2019-04-20 12:04:00,223 2nd St, New York City,NY,10001 +177294,Lightning Charging Cable,1,14.95,2019-04-21 14:31:00,573 Madison St, Austin,TX,73301 +177295,AAA Batteries (4-pack),2,2.99,2019-04-25 10:47:00,736 1st St, Boston,MA,02215 +177296,Lightning Charging Cable,1,14.95,2019-04-05 19:16:00,846 Meadow St, New York City,NY,10001 +177297,Apple Airpods Headphones,1,150.0,2019-04-21 14:25:00,4 Cherry St, Boston,MA,02215 +177298,34in Ultrawide Monitor,1,379.99,2019-04-13 14:44:00,173 1st St, New York City,NY,10001 +177299,AAA Batteries (4-pack),1,2.99,2019-04-30 21:04:00,555 2nd St, Portland,ME,04101 +177300,20in Monitor,1,109.99,2019-04-03 21:33:00,276 Lincoln St, Los Angeles,CA,90001 +177300,Apple Airpods Headphones,1,150.0,2019-04-03 21:33:00,276 Lincoln St, Los Angeles,CA,90001 +177301,AA Batteries (4-pack),1,3.84,2019-04-04 16:11:00,102 Chestnut St, Los Angeles,CA,90001 +177302,27in FHD Monitor,1,149.99,2019-04-30 21:10:00,560 Sunset St, Los Angeles,CA,90001 +177303,Wired Headphones,1,11.99,2019-04-01 23:19:00,890 Jefferson St, Boston,MA,02215 +177304,Lightning Charging Cable,1,14.95,2019-04-27 18:20:00,181 Dogwood St, Los Angeles,CA,90001 +177305,20in Monitor,1,109.99,2019-04-19 11:25:00,164 Pine St, Seattle,WA,98101 +177306,20in Monitor,1,109.99,2019-04-02 18:03:00,171 Chestnut St, Portland,ME,04101 +177307,Wired Headphones,1,11.99,2019-04-24 13:18:00,380 Cedar St, Austin,TX,73301 +177308,AA Batteries (4-pack),2,3.84,2019-04-05 19:30:00,944 Washington St, Boston,MA,02215 +177309,27in 4K Gaming Monitor,1,389.99,2019-04-03 10:31:00,980 Hickory St, New York City,NY,10001 +177310,iPhone,1,700.0,2019-04-29 20:03:00,68 Chestnut St, Los Angeles,CA,90001 +177311,Lightning Charging Cable,1,14.95,2019-04-25 16:03:00,782 South St, Dallas,TX,75001 +177312,AA Batteries (4-pack),3,3.84,2019-04-22 16:58:00,455 North St, San Francisco,CA,94016 +177313,Macbook Pro Laptop,1,1700.0,2019-04-11 17:19:00,317 Madison St, San Francisco,CA,94016 +177314,Apple Airpods Headphones,1,150.0,2019-04-18 07:29:00,462 Lincoln St, Seattle,WA,98101 +177315,27in FHD Monitor,1,149.99,2019-04-04 19:30:00,121 Walnut St, Seattle,WA,98101 +177316,iPhone,1,700.0,2019-04-01 10:25:00,454 4th St, Dallas,TX,75001 +177317,AAA Batteries (4-pack),1,2.99,2019-04-18 11:16:00,49 Cedar St, San Francisco,CA,94016 +177318,iPhone,1,700.0,2019-04-10 20:44:00,484 10th St, New York City,NY,10001 +177319,USB-C Charging Cable,1,11.95,2019-04-09 18:21:00,650 14th St, Los Angeles,CA,90001 +177320,Flatscreen TV,1,300.0,2019-04-03 12:55:00,162 North St, San Francisco,CA,94016 +177321,27in 4K Gaming Monitor,1,389.99,2019-04-19 22:02:00,115 Wilson St, Los Angeles,CA,90001 +177322,USB-C Charging Cable,1,11.95,2019-04-28 12:41:00,652 Lakeview St, Seattle,WA,98101 +177323,Lightning Charging Cable,1,14.95,2019-04-12 20:15:00,584 Jackson St, Seattle,WA,98101 +177324,Wired Headphones,1,11.99,2019-04-02 18:24:00,809 11th St, Atlanta,GA,30301 +177325,Apple Airpods Headphones,1,150.0,2019-04-13 20:54:00,844 12th St, San Francisco,CA,94016 +177326,Bose SoundSport Headphones,1,99.99,2019-04-28 20:17:00,847 Cherry St, Los Angeles,CA,90001 +177327,Lightning Charging Cable,1,14.95,2019-04-21 20:41:00,837 Adams St, Boston,MA,02215 +177328,ThinkPad Laptop,1,999.99,2019-04-17 22:24:00,857 Ridge St, Boston,MA,02215 +177329,iPhone,1,700.0,2019-04-29 08:12:00,653 Walnut St, Seattle,WA,98101 +177330,USB-C Charging Cable,1,11.95,2019-04-30 10:55:00,698 12th St, San Francisco,CA,94016 +177331,USB-C Charging Cable,1,11.95,2019-04-10 19:55:00,1 Ridge St, Boston,MA,02215 +177332,Apple Airpods Headphones,1,150.0,2019-04-08 12:24:00,859 5th St, Seattle,WA,98101 +177333,Apple Airpods Headphones,1,150.0,2019-04-03 07:28:00,689 Madison St, Boston,MA,02215 +177334,Wired Headphones,1,11.99,2019-04-19 22:37:00,522 12th St, Atlanta,GA,30301 +177335,Wired Headphones,1,11.99,2019-04-14 21:59:00,95 South St, New York City,NY,10001 +177336,Apple Airpods Headphones,1,150.0,2019-04-17 12:50:00,159 7th St, Seattle,WA,98101 +177337,AAA Batteries (4-pack),1,2.99,2019-04-15 18:17:00,975 Sunset St, Seattle,WA,98101 +177338,Wired Headphones,1,11.99,2019-04-21 15:42:00,130 4th St, Los Angeles,CA,90001 +177339,Wired Headphones,1,11.99,2019-04-05 11:19:00,64 Maple St, Portland,OR,97035 +177340,27in 4K Gaming Monitor,1,389.99,2019-04-08 22:06:00,811 Spruce St, Los Angeles,CA,90001 +177341,AA Batteries (4-pack),2,3.84,2019-04-13 11:27:00,822 2nd St, New York City,NY,10001 +177342,Bose SoundSport Headphones,1,99.99,2019-04-14 20:59:00,451 Pine St, San Francisco,CA,94016 +177343,USB-C Charging Cable,1,11.95,2019-04-07 10:47:00,221 Walnut St, San Francisco,CA,94016 +177344,Google Phone,1,600.0,2019-04-20 19:54:00,286 Jackson St, Los Angeles,CA,90001 +177345,Wired Headphones,1,11.99,2019-04-12 13:53:00,625 2nd St, New York City,NY,10001 +177346,27in 4K Gaming Monitor,1,389.99,2019-04-13 00:26:00,593 Spruce St, Los Angeles,CA,90001 +177347,Bose SoundSport Headphones,1,99.99,2019-04-30 08:00:00,888 Pine St, Atlanta,GA,30301 +177348,Macbook Pro Laptop,1,1700.0,2019-04-04 18:11:00,972 9th St, Seattle,WA,98101 +177349,Lightning Charging Cable,1,14.95,2019-04-17 08:26:00,163 Forest St, Boston,MA,02215 +177350,Google Phone,1,600.0,2019-04-21 13:55:00,833 Wilson St, Portland,OR,97035 +177351,iPhone,1,700.0,2019-04-13 07:52:00,844 6th St, Dallas,TX,75001 +177352,34in Ultrawide Monitor,1,379.99,2019-04-30 18:46:00,464 Walnut St, Los Angeles,CA,90001 +177353,Macbook Pro Laptop,1,1700.0,2019-04-04 10:27:00,654 South St, Portland,OR,97035 +177354,Google Phone,1,600.0,2019-04-11 22:38:00,432 Chestnut St, New York City,NY,10001 +177355,34in Ultrawide Monitor,1,379.99,2019-04-07 13:52:00,233 Jefferson St, Seattle,WA,98101 +177356,27in FHD Monitor,1,149.99,2019-04-03 20:19:00,69 10th St, New York City,NY,10001 +177357,Wired Headphones,1,11.99,2019-04-08 20:26:00,139 Pine St, Los Angeles,CA,90001 +177358,AAA Batteries (4-pack),1,2.99,2019-04-04 01:48:00,159 Cherry St, Boston,MA,02215 +177359,Macbook Pro Laptop,1,1700.0,2019-04-18 14:47:00,143 Willow St, San Francisco,CA,94016 +177360,AAA Batteries (4-pack),2,2.99,2019-04-29 19:12:00,636 River St, New York City,NY,10001 +177361,AA Batteries (4-pack),2,3.84,2019-04-26 11:23:00,440 5th St, Boston,MA,02215 +177362,Flatscreen TV,1,300.0,2019-04-13 15:30:00,602 Sunset St, Portland,OR,97035 +177363,Bose SoundSport Headphones,1,99.99,2019-04-04 13:55:00,758 Spruce St, Los Angeles,CA,90001 +177364,ThinkPad Laptop,1,999.99,2019-04-29 15:59:00,938 Forest St, Los Angeles,CA,90001 +177365,AAA Batteries (4-pack),1,2.99,2019-04-06 15:22:00,18 9th St, San Francisco,CA,94016 +177366,Apple Airpods Headphones,1,150.0,2019-04-27 14:47:00,81 13th St, New York City,NY,10001 +177367,Google Phone,1,600.0,2019-04-05 07:52:00,141 Chestnut St, San Francisco,CA,94016 +177367,USB-C Charging Cable,1,11.95,2019-04-05 07:52:00,141 Chestnut St, San Francisco,CA,94016 +177367,Bose SoundSport Headphones,1,99.99,2019-04-05 07:52:00,141 Chestnut St, San Francisco,CA,94016 +177368,USB-C Charging Cable,1,11.95,2019-04-03 14:36:00,209 2nd St, Seattle,WA,98101 +177369,27in FHD Monitor,1,149.99,2019-04-12 16:54:00,329 North St, Boston,MA,02215 +177370,Apple Airpods Headphones,1,150.0,2019-04-10 18:32:00,732 Forest St, New York City,NY,10001 +177371,Bose SoundSport Headphones,1,99.99,2019-04-19 20:15:00,715 Church St, Los Angeles,CA,90001 +177372,27in 4K Gaming Monitor,1,389.99,2019-04-27 15:23:00,61 Spruce St, San Francisco,CA,94016 +177373,27in FHD Monitor,1,149.99,2019-04-22 12:14:00,564 Lake St, San Francisco,CA,94016 +177374,Lightning Charging Cable,1,14.95,2019-04-25 08:01:00,829 Dogwood St, San Francisco,CA,94016 +177375,Wired Headphones,1,11.99,2019-04-02 19:11:00,513 West St, Boston,MA,02215 +177376,AAA Batteries (4-pack),1,2.99,2019-04-04 00:31:00,670 7th St, San Francisco,CA,94016 +177377,Wired Headphones,1,11.99,2019-04-08 11:46:00,369 Hickory St, Dallas,TX,75001 +177378,Bose SoundSport Headphones,1,99.99,2019-04-04 22:15:00,504 Lake St, San Francisco,CA,94016 +177379,Google Phone,1,600.0,2019-04-19 14:24:00,673 South St, Boston,MA,02215 +177380,Lightning Charging Cable,1,14.95,2019-04-03 20:56:00,512 Center St, Atlanta,GA,30301 +177381,Bose SoundSport Headphones,1,99.99,2019-04-25 08:56:00,887 Hickory St, Dallas,TX,75001 +177382,Apple Airpods Headphones,1,150.0,2019-04-12 13:11:00,843 13th St, San Francisco,CA,94016 +177383,LG Dryer,1,600.0,2019-04-17 18:52:00,759 Spruce St, Austin,TX,73301 +177384,Flatscreen TV,1,300.0,2019-04-24 15:27:00,425 Jackson St, New York City,NY,10001 +177385,Macbook Pro Laptop,1,1700.0,2019-04-11 12:08:00,27 Adams St, San Francisco,CA,94016 +177386,34in Ultrawide Monitor,1,379.99,2019-04-17 15:44:00,154 South St, Atlanta,GA,30301 +177387,AA Batteries (4-pack),1,3.84,2019-04-03 22:10:00,218 10th St, Austin,TX,73301 +177388,Lightning Charging Cable,1,14.95,2019-04-24 12:50:00,651 8th St, Boston,MA,02215 +177389,Lightning Charging Cable,2,14.95,2019-04-24 12:07:00,672 West St, Seattle,WA,98101 +177390,Wired Headphones,1,11.99,2019-04-28 17:14:00,494 Hickory St, Los Angeles,CA,90001 +177391,AA Batteries (4-pack),1,3.84,2019-04-08 11:47:00,477 Jackson St, San Francisco,CA,94016 +177392,USB-C Charging Cable,1,11.95,2019-04-23 12:45:00,139 5th St, Atlanta,GA,30301 +177393,27in FHD Monitor,1,149.99,2019-04-18 11:43:00,903 Center St, Dallas,TX,75001 +177394,Apple Airpods Headphones,1,150.0,2019-04-22 12:10:00,144 Cherry St, Seattle,WA,98101 +177395,34in Ultrawide Monitor,1,379.99,2019-04-03 00:08:00,22 Main St, San Francisco,CA,94016 +177396,Wired Headphones,1,11.99,2019-04-17 14:29:00,217 Hill St, Boston,MA,02215 +177397,20in Monitor,1,109.99,2019-04-27 18:20:00,438 Park St, Austin,TX,73301 +177398,27in FHD Monitor,1,149.99,2019-04-13 21:54:00,640 8th St, Los Angeles,CA,90001 +177398,AAA Batteries (4-pack),1,2.99,2019-04-13 21:54:00,640 8th St, Los Angeles,CA,90001 +177399,AAA Batteries (4-pack),1,2.99,2019-04-30 01:32:00,739 North St, San Francisco,CA,94016 +177400,USB-C Charging Cable,2,11.95,2019-04-24 06:44:00,964 Ridge St, Portland,ME,04101 +177401,Flatscreen TV,1,300.0,2019-04-24 10:16:00,393 Hickory St, Los Angeles,CA,90001 +177402,AAA Batteries (4-pack),2,2.99,2019-04-09 21:06:00,447 10th St, New York City,NY,10001 +177403,Bose SoundSport Headphones,1,99.99,2019-04-18 07:26:00,717 6th St, New York City,NY,10001 +177404,Bose SoundSport Headphones,1,99.99,2019-04-14 19:03:00,890 Dogwood St, Los Angeles,CA,90001 +177405,Lightning Charging Cable,1,14.95,2019-04-09 16:38:00,564 Pine St, San Francisco,CA,94016 +177406,AA Batteries (4-pack),2,3.84,2019-04-05 16:46:00,547 Sunset St, San Francisco,CA,94016 +177407,USB-C Charging Cable,1,11.95,2019-04-10 21:40:00,339 Spruce St, Boston,MA,02215 +177408,Bose SoundSport Headphones,1,99.99,2019-04-21 19:16:00,53 2nd St, San Francisco,CA,94016 +177409,USB-C Charging Cable,1,11.95,2019-04-21 19:57:00,577 South St, Portland,OR,97035 +177410,Lightning Charging Cable,1,14.95,2019-04-05 07:45:00,257 Wilson St, Atlanta,GA,30301 +177411,Wired Headphones,1,11.99,2019-04-05 19:46:00,94 Maple St, Boston,MA,02215 +177412,Apple Airpods Headphones,1,150.0,2019-04-15 19:19:00,557 Pine St, Boston,MA,02215 +177413,Wired Headphones,1,11.99,2019-04-07 21:34:00,892 12th St, Seattle,WA,98101 +177414,AAA Batteries (4-pack),1,2.99,2019-04-27 18:18:00,151 Lakeview St, Boston,MA,02215 +177415,34in Ultrawide Monitor,1,379.99,2019-04-07 01:27:00,505 10th St, Portland,ME,04101 +177416,AAA Batteries (4-pack),1,2.99,2019-04-15 12:58:00,75 Spruce St, Los Angeles,CA,90001 +177417,34in Ultrawide Monitor,1,379.99,2019-04-10 07:10:00,13 Cherry St, San Francisco,CA,94016 +177418,Wired Headphones,1,11.99,2019-04-18 21:22:00,440 Cherry St, Dallas,TX,75001 +177419,Lightning Charging Cable,1,14.95,2019-04-23 08:49:00,604 South St, Boston,MA,02215 +177420,Lightning Charging Cable,1,14.95,2019-04-14 13:45:00,593 Chestnut St, San Francisco,CA,94016 +177421,AAA Batteries (4-pack),1,2.99,2019-04-06 21:55:00,818 9th St, San Francisco,CA,94016 +177422,Macbook Pro Laptop,1,1700.0,2019-04-05 19:52:00,368 Jackson St, San Francisco,CA,94016 +177423,Wired Headphones,1,11.99,2019-04-23 10:14:00,897 7th St, Dallas,TX,75001 +177424,USB-C Charging Cable,1,11.95,2019-04-21 12:13:00,915 Walnut St, New York City,NY,10001 +177425,AAA Batteries (4-pack),1,2.99,2019-04-26 10:50:00,234 6th St, San Francisco,CA,94016 +177426,Wired Headphones,1,11.99,2019-04-14 20:07:00,988 West St, New York City,NY,10001 +177427,Bose SoundSport Headphones,1,99.99,2019-04-10 13:48:00,216 Washington St, Atlanta,GA,30301 +177428,Vareebadd Phone,1,400.0,2019-04-15 08:19:00,481 Jefferson St, Boston,MA,02215 +177428,USB-C Charging Cable,1,11.95,2019-04-15 08:19:00,481 Jefferson St, Boston,MA,02215 +177429,Wired Headphones,1,11.99,2019-04-05 18:07:00,685 Maple St, Los Angeles,CA,90001 +177430,iPhone,1,700.0,2019-04-08 12:05:00,821 Sunset St, Seattle,WA,98101 +177431,AA Batteries (4-pack),2,3.84,2019-04-28 20:43:00,942 Jackson St, Austin,TX,73301 +177432,Apple Airpods Headphones,1,150.0,2019-04-08 10:25:00,686 North St, San Francisco,CA,94016 +177433,27in FHD Monitor,1,149.99,2019-04-29 10:22:00,377 Park St, Boston,MA,02215 +177434,USB-C Charging Cable,1,11.95,2019-04-14 19:47:00,456 13th St, New York City,NY,10001 +177435,USB-C Charging Cable,1,11.95,2019-04-03 18:51:00,290 Johnson St, Dallas,TX,75001 +177436,Lightning Charging Cable,1,14.95,2019-04-11 20:37:00,150 Hickory St, New York City,NY,10001 +177437,Wired Headphones,1,11.99,2019-04-18 15:54:00,792 Cedar St, New York City,NY,10001 +177438,Wired Headphones,1,11.99,2019-04-22 08:59:00,430 Ridge St, New York City,NY,10001 +177439,Lightning Charging Cable,1,14.95,2019-04-14 17:22:00,735 Ridge St, San Francisco,CA,94016 +177440,Macbook Pro Laptop,1,1700.0,2019-04-20 14:39:00,156 Hickory St, Los Angeles,CA,90001 +177441,iPhone,1,700.0,2019-04-16 14:38:00,559 Elm St, Dallas,TX,75001 +177441,Lightning Charging Cable,1,14.95,2019-04-16 14:38:00,559 Elm St, Dallas,TX,75001 +177442,AAA Batteries (4-pack),1,2.99,2019-04-30 06:59:00,380 Church St, New York City,NY,10001 +177443,Apple Airpods Headphones,1,150.0,2019-04-21 16:42:00,23 9th St, Dallas,TX,75001 +177443,27in 4K Gaming Monitor,1,389.99,2019-04-21 16:42:00,23 9th St, Dallas,TX,75001 +177444,34in Ultrawide Monitor,1,379.99,2019-04-19 10:59:00,670 Elm St, Atlanta,GA,30301 +177445,Lightning Charging Cable,1,14.95,2019-04-21 02:24:00,614 Meadow St, Austin,TX,73301 +177446,Lightning Charging Cable,1,14.95,2019-04-10 19:23:00,399 10th St, Austin,TX,73301 +177447,AA Batteries (4-pack),3,3.84,2019-04-29 15:54:00,882 River St, Boston,MA,02215 +177448,Google Phone,1,600.0,2019-04-24 19:38:00,915 Forest St, Los Angeles,CA,90001 +177448,USB-C Charging Cable,1,11.95,2019-04-24 19:38:00,915 Forest St, Los Angeles,CA,90001 +177449,Macbook Pro Laptop,1,1700.0,2019-04-29 14:07:00,272 Lakeview St, Portland,OR,97035 +177450,ThinkPad Laptop,1,999.99,2019-04-17 19:32:00,525 Meadow St, New York City,NY,10001 +177451,USB-C Charging Cable,1,11.95,2019-04-18 00:52:00,947 Hickory St, San Francisco,CA,94016 +177452,Wired Headphones,1,11.99,2019-04-03 13:22:00,987 Forest St, San Francisco,CA,94016 +177453,iPhone,1,700.0,2019-04-16 21:05:00,865 Sunset St, Portland,OR,97035 +177454,Lightning Charging Cable,1,14.95,2019-04-01 23:13:00,136 14th St, San Francisco,CA,94016 +177455,Bose SoundSport Headphones,1,99.99,2019-04-05 10:21:00,864 North St, Austin,TX,73301 +177456,Flatscreen TV,1,300.0,2019-04-24 23:54:00,729 10th St, Los Angeles,CA,90001 +177457,27in 4K Gaming Monitor,1,389.99,2019-04-14 20:45:00,753 North St, New York City,NY,10001 +177458,Macbook Pro Laptop,1,1700.0,2019-04-29 08:17:00,807 Wilson St, Dallas,TX,75001 +177459,AA Batteries (4-pack),1,3.84,2019-04-03 19:31:00,283 10th St, San Francisco,CA,94016 +177460,USB-C Charging Cable,2,11.95,2019-04-20 20:38:00,890 2nd St, San Francisco,CA,94016 +177461,27in 4K Gaming Monitor,1,389.99,2019-04-26 23:36:00,396 7th St, Boston,MA,02215 +177462,34in Ultrawide Monitor,1,379.99,2019-04-10 16:25:00,792 Meadow St, Seattle,WA,98101 +177463,USB-C Charging Cable,1,11.95,2019-04-30 16:02:00,321 Pine St, Los Angeles,CA,90001 +177464,Bose SoundSport Headphones,1,99.99,2019-04-21 10:05:00,777 7th St, San Francisco,CA,94016 +177465,Macbook Pro Laptop,1,1700.0,2019-04-13 09:13:00,655 13th St, Boston,MA,02215 +177466,Apple Airpods Headphones,1,150.0,2019-04-21 17:09:00,104 Elm St, San Francisco,CA,94016 +177467,Lightning Charging Cable,1,14.95,2019-04-04 11:09:00,810 Hill St, Atlanta,GA,30301 +177468,Bose SoundSport Headphones,1,99.99,2019-04-12 10:12:00,226 Park St, Los Angeles,CA,90001 +177469,34in Ultrawide Monitor,1,379.99,2019-04-22 10:04:00,293 10th St, San Francisco,CA,94016 +177470,Apple Airpods Headphones,1,150.0,2019-04-30 12:16:00,168 7th St, New York City,NY,10001 +177471,Lightning Charging Cable,1,14.95,2019-04-19 18:39:00,410 Forest St, San Francisco,CA,94016 +177472,Bose SoundSport Headphones,1,99.99,2019-04-23 18:14:00,399 West St, San Francisco,CA,94016 +177473,Macbook Pro Laptop,1,1700.0,2019-04-02 18:24:00,844 12th St, New York City,NY,10001 +177474,Wired Headphones,1,11.99,2019-04-30 18:37:00,768 North St, New York City,NY,10001 +177475,AAA Batteries (4-pack),3,2.99,2019-04-30 08:40:00,187 Spruce St, San Francisco,CA,94016 +177476,Bose SoundSport Headphones,1,99.99,2019-04-03 16:01:00,354 8th St, San Francisco,CA,94016 +177477,AAA Batteries (4-pack),1,2.99,2019-04-03 19:49:00,339 5th St, New York City,NY,10001 +177478,USB-C Charging Cable,1,11.95,2019-04-28 22:18:00,570 Elm St, Atlanta,GA,30301 +177479,ThinkPad Laptop,1,999.99,2019-04-27 10:39:00,941 Jefferson St, Boston,MA,02215 +177480,34in Ultrawide Monitor,1,379.99,2019-04-24 14:40:00,560 Lake St, Austin,TX,73301 +177481,iPhone,1,700.0,2019-04-13 16:54:00,135 Forest St, Dallas,TX,75001 +177482,Bose SoundSport Headphones,1,99.99,2019-04-15 19:10:00,694 12th St, Portland,OR,97035 +177483,27in FHD Monitor,1,149.99,2019-04-28 22:55:00,904 Forest St, Portland,OR,97035 +177484,USB-C Charging Cable,1,11.95,2019-04-24 19:47:00,574 Willow St, Portland,ME,04101 +177485,Bose SoundSport Headphones,1,99.99,2019-04-06 20:43:00,184 4th St, New York City,NY,10001 +177486,ThinkPad Laptop,1,999.99,2019-04-21 16:24:00,809 Highland St, Seattle,WA,98101 +177486,Google Phone,1,600.0,2019-04-21 16:24:00,809 Highland St, Seattle,WA,98101 +177487,Bose SoundSport Headphones,1,99.99,2019-04-23 10:04:00,770 Main St, Dallas,TX,75001 +177488,27in FHD Monitor,1,149.99,2019-04-03 20:40:00,181 Meadow St, Boston,MA,02215 +177489,Bose SoundSport Headphones,1,99.99,2019-04-10 20:18:00,364 Ridge St, San Francisco,CA,94016 +177490,AA Batteries (4-pack),3,3.84,2019-04-08 16:31:00,574 Park St, San Francisco,CA,94016 +177491,Apple Airpods Headphones,1,150.0,2019-04-15 20:42:00,459 Walnut St, San Francisco,CA,94016 +177492,ThinkPad Laptop,1,999.99,2019-04-15 09:14:00,60 Ridge St, San Francisco,CA,94016 +177493,Apple Airpods Headphones,1,150.0,2019-04-27 20:40:00,940 Church St, San Francisco,CA,94016 +177494,AA Batteries (4-pack),1,3.84,2019-04-22 05:37:00,480 North St, Seattle,WA,98101 +177495,Flatscreen TV,1,300.0,2019-04-18 23:01:00,698 Cherry St, San Francisco,CA,94016 +177496,iPhone,1,700.0,2019-04-07 19:54:00,241 Walnut St, Los Angeles,CA,90001 +177497,ThinkPad Laptop,1,999.99,2019-04-16 10:30:00,135 6th St, San Francisco,CA,94016 +177498,Lightning Charging Cable,1,14.95,2019-04-22 15:42:00,624 8th St, Austin,TX,73301 +177499,Bose SoundSport Headphones,1,99.99,2019-04-27 13:18:00,92 Willow St, Los Angeles,CA,90001 +177500,Bose SoundSport Headphones,1,99.99,2019-04-24 17:30:00,841 South St, Boston,MA,02215 +177501,Wired Headphones,1,11.99,2019-04-10 03:43:00,888 14th St, Seattle,WA,98101 +177502,AAA Batteries (4-pack),2,2.99,2019-04-27 18:42:00,311 Meadow St, Dallas,TX,75001 +177503,Wired Headphones,1,11.99,2019-04-20 20:07:00,662 Cherry St, San Francisco,CA,94016 +177504,Google Phone,1,600.0,2019-04-10 14:39:00,19 Cedar St, Boston,MA,02215 +177504,USB-C Charging Cable,1,11.95,2019-04-10 14:39:00,19 Cedar St, Boston,MA,02215 +177505,ThinkPad Laptop,1,999.99,2019-04-30 16:04:00,823 Johnson St, Seattle,WA,98101 +177506,iPhone,1,700.0,2019-04-02 07:46:00,656 Pine St, Los Angeles,CA,90001 +177506,Apple Airpods Headphones,1,150.0,2019-04-02 07:46:00,656 Pine St, Los Angeles,CA,90001 +177507,AAA Batteries (4-pack),1,2.99,2019-04-09 20:13:00,825 2nd St, Portland,OR,97035 +177508,Bose SoundSport Headphones,1,99.99,2019-04-07 06:45:00,845 Lakeview St, San Francisco,CA,94016 +177509,AAA Batteries (4-pack),1,2.99,2019-04-28 19:03:00,616 9th St, New York City,NY,10001 +177510,Bose SoundSport Headphones,1,99.99,2019-04-15 09:51:00,182 Main St, San Francisco,CA,94016 +177511,iPhone,1,700.0,2019-04-07 17:38:00,719 North St, Los Angeles,CA,90001 +177511,Lightning Charging Cable,1,14.95,2019-04-07 17:38:00,719 North St, Los Angeles,CA,90001 +177512,Lightning Charging Cable,2,14.95,2019-04-27 18:41:00,250 7th St, San Francisco,CA,94016 +177513,Apple Airpods Headphones,1,150.0,2019-04-01 11:00:00,50 11th St, Dallas,TX,75001 +177514,Flatscreen TV,1,300.0,2019-04-05 15:40:00,625 Wilson St, Atlanta,GA,30301 +177515,AA Batteries (4-pack),1,3.84,2019-04-30 13:52:00,882 River St, Los Angeles,CA,90001 +177516,USB-C Charging Cable,1,11.95,2019-04-01 13:35:00,879 Madison St, Atlanta,GA,30301 +177517,USB-C Charging Cable,1,11.95,2019-04-17 13:30:00,191 South St, San Francisco,CA,94016 +177518,Apple Airpods Headphones,1,150.0,2019-04-05 12:33:00,136 Elm St, San Francisco,CA,94016 +177519,27in 4K Gaming Monitor,1,389.99,2019-04-09 22:49:00,979 Pine St, New York City,NY,10001 +177520,34in Ultrawide Monitor,1,379.99,2019-04-11 22:43:00,652 Park St, Atlanta,GA,30301 +177521,USB-C Charging Cable,1,11.95,2019-04-14 14:02:00,921 6th St, Portland,OR,97035 +177522,iPhone,1,700.0,2019-04-03 22:41:00,139 Hill St, Portland,OR,97035 +177523,27in 4K Gaming Monitor,1,389.99,2019-04-22 01:04:00,6 8th St, San Francisco,CA,94016 +177524,Wired Headphones,1,11.99,2019-04-15 17:14:00,561 Park St, San Francisco,CA,94016 +177525,Wired Headphones,2,11.99,2019-04-10 09:35:00,838 4th St, San Francisco,CA,94016 +177526,AAA Batteries (4-pack),1,2.99,2019-04-10 16:25:00,47 Lincoln St, Austin,TX,73301 +177527,Wired Headphones,2,11.99,2019-04-26 08:51:00,474 Highland St, Portland,OR,97035 +177528,Vareebadd Phone,1,400.0,2019-04-02 13:42:00,251 Maple St, San Francisco,CA,94016 +177529,Lightning Charging Cable,1,14.95,2019-04-12 16:28:00,766 Lakeview St, San Francisco,CA,94016 +177530,Wired Headphones,1,11.99,2019-04-02 14:37:00,792 Dogwood St, Atlanta,GA,30301 +177531,USB-C Charging Cable,1,11.95,2019-04-08 17:54:00,807 7th St, Dallas,TX,75001 +177532,AA Batteries (4-pack),2,3.84,2019-04-12 11:56:00,959 Lakeview St, Dallas,TX,75001 +177533,Bose SoundSport Headphones,1,99.99,2019-04-25 02:01:00,183 11th St, Portland,OR,97035 +177534,Macbook Pro Laptop,1,1700.0,2019-04-26 16:49:00,504 Hill St, Los Angeles,CA,90001 +177535,Macbook Pro Laptop,1,1700.0,2019-04-14 09:26:00,305 Center St, Boston,MA,02215 +177536,27in 4K Gaming Monitor,1,389.99,2019-04-26 16:20:00,796 2nd St, San Francisco,CA,94016 +177537,Bose SoundSport Headphones,1,99.99,2019-04-30 06:55:00,545 Elm St, Dallas,TX,75001 +177538,AAA Batteries (4-pack),1,2.99,2019-04-11 13:26:00,345 2nd St, Boston,MA,02215 +177539,Bose SoundSport Headphones,1,99.99,2019-04-26 19:56:00,348 Cedar St, New York City,NY,10001 +177540,Google Phone,1,600.0,2019-04-02 18:23:00,778 Washington St, Los Angeles,CA,90001 +177541,Apple Airpods Headphones,1,150.0,2019-04-23 20:21:00,170 Dogwood St, Boston,MA,02215 +177542,AAA Batteries (4-pack),1,2.99,2019-04-09 13:44:00,239 River St, Portland,ME,04101 +177543,Macbook Pro Laptop,1,1700.0,2019-04-14 16:45:00,42 Maple St, San Francisco,CA,94016 +177544,27in 4K Gaming Monitor,1,389.99,2019-04-14 09:04:00,140 7th St, Los Angeles,CA,90001 +177545,Wired Headphones,1,11.99,2019-04-16 16:36:00,681 Cherry St, Dallas,TX,75001 +177546,USB-C Charging Cable,2,11.95,2019-04-25 18:28:00,632 Highland St, New York City,NY,10001 +177547,Lightning Charging Cable,1,14.95,2019-04-17 18:46:00,236 Jackson St, San Francisco,CA,94016 +177548,Apple Airpods Headphones,1,150.0,2019-04-22 22:36:00,206 Ridge St, San Francisco,CA,94016 +177549,USB-C Charging Cable,1,11.95,2019-04-17 18:54:00,406 9th St, New York City,NY,10001 +177550,Macbook Pro Laptop,1,1700.0,2019-04-27 20:15:00,506 Lincoln St, Dallas,TX,75001 +177551,27in FHD Monitor,1,149.99,2019-05-01 00:13:00,615 Lincoln St, San Francisco,CA,94016 +177552,Wired Headphones,1,11.99,2019-04-05 15:01:00,107 11th St, Austin,TX,73301 +177553,AAA Batteries (4-pack),1,2.99,2019-04-01 08:00:00,141 River St, San Francisco,CA,94016 +177554,27in FHD Monitor,1,149.99,2019-04-01 10:21:00,751 Forest St, Dallas,TX,75001 +177555,27in FHD Monitor,1,149.99,2019-04-12 11:44:00,677 Willow St, San Francisco,CA,94016 +177556,Lightning Charging Cable,1,14.95,2019-04-08 11:58:00,398 North St, San Francisco,CA,94016 +177557,AAA Batteries (4-pack),1,2.99,2019-04-14 17:19:00,717 4th St, Dallas,TX,75001 +177558,ThinkPad Laptop,1,999.99,2019-04-10 22:50:00,990 9th St, San Francisco,CA,94016 +177559,Flatscreen TV,1,300.0,2019-04-24 11:46:00,111 6th St, New York City,NY,10001 +177560,Bose SoundSport Headphones,1,99.99,2019-04-19 09:06:00,803 Lincoln St, New York City,NY,10001 +177561,AA Batteries (4-pack),1,3.84,2019-04-28 20:41:00,105 Hickory St, Los Angeles,CA,90001 +177562,Wired Headphones,1,11.99,2019-04-23 17:07:00,185 11th St, Los Angeles,CA,90001 +177563,AA Batteries (4-pack),1,3.84,2019-04-24 18:52:00,90 Johnson St, San Francisco,CA,94016 +177564,Apple Airpods Headphones,1,150.0,2019-04-02 20:33:00,796 Center St, New York City,NY,10001 +177565,AAA Batteries (4-pack),2,2.99,2019-04-22 09:10:00,736 8th St, Dallas,TX,75001 +177566,AAA Batteries (4-pack),1,2.99,2019-04-27 08:37:00,181 Cedar St, Atlanta,GA,30301 +177567,Apple Airpods Headphones,1,150.0,2019-04-05 11:38:00,765 Willow St, San Francisco,CA,94016 +177568,Wired Headphones,1,11.99,2019-04-06 21:11:00,147 Sunset St, Seattle,WA,98101 +177569,Wired Headphones,1,11.99,2019-04-27 10:31:00,994 7th St, Los Angeles,CA,90001 +177569,Google Phone,1,600.0,2019-04-27 10:31:00,994 7th St, Los Angeles,CA,90001 +177570,Wired Headphones,1,11.99,2019-04-29 19:05:00,959 Forest St, New York City,NY,10001 +177571,AA Batteries (4-pack),3,3.84,2019-04-26 23:51:00,760 Main St, Atlanta,GA,30301 +177572,Apple Airpods Headphones,1,150.0,2019-04-21 01:29:00,366 Willow St, Seattle,WA,98101 +177573,AA Batteries (4-pack),1,3.84,2019-04-02 11:33:00,518 Cherry St, San Francisco,CA,94016 +177574,Wired Headphones,2,11.99,2019-04-18 09:25:00,718 Adams St, Seattle,WA,98101 +177575,AAA Batteries (4-pack),2,2.99,2019-04-30 06:32:00,677 Cherry St, New York City,NY,10001 +177576,AA Batteries (4-pack),2,3.84,2019-04-11 17:09:00,221 Madison St, New York City,NY,10001 +177577,AAA Batteries (4-pack),1,2.99,2019-04-15 17:00:00,252 8th St, San Francisco,CA,94016 +177578,Google Phone,1,600.0,2019-04-28 22:51:00,752 Park St, Dallas,TX,75001 +177578,USB-C Charging Cable,1,11.95,2019-04-28 22:51:00,752 Park St, Dallas,TX,75001 +177579,Apple Airpods Headphones,1,150.0,2019-04-28 21:33:00,282 South St, Seattle,WA,98101 +177580,Apple Airpods Headphones,1,150.0,2019-04-20 15:08:00,817 Jefferson St, Los Angeles,CA,90001 +177581,Lightning Charging Cable,1,14.95,2019-04-07 13:13:00,587 Lake St, Boston,MA,02215 +177582,Bose SoundSport Headphones,1,99.99,2019-04-16 17:19:00,707 9th St, Dallas,TX,75001 +177582,Wired Headphones,1,11.99,2019-04-16 17:19:00,707 9th St, Dallas,TX,75001 +177583,Lightning Charging Cable,1,14.95,2019-04-19 20:12:00,663 Cherry St, San Francisco,CA,94016 +177584,AAA Batteries (4-pack),1,2.99,2019-04-02 21:54:00,891 Forest St, San Francisco,CA,94016 +177585,AA Batteries (4-pack),1,3.84,2019-04-13 01:49:00,196 11th St, San Francisco,CA,94016 +177586,Bose SoundSport Headphones,1,99.99,2019-04-14 14:08:00,624 Lake St, Los Angeles,CA,90001 +177587,USB-C Charging Cable,1,11.95,2019-04-09 20:38:00,455 9th St, Portland,ME,04101 +177588,27in FHD Monitor,1,149.99,2019-04-25 16:08:00,778 Ridge St, Los Angeles,CA,90001 +177589,34in Ultrawide Monitor,1,379.99,2019-04-16 06:54:00,836 Cherry St, Los Angeles,CA,90001 +177590,Wired Headphones,1,11.99,2019-04-26 18:51:00,589 1st St, Portland,OR,97035 +177591,ThinkPad Laptop,1,999.99,2019-04-26 22:04:00,121 9th St, San Francisco,CA,94016 +177592,iPhone,1,700.0,2019-04-19 11:10:00,448 Maple St, San Francisco,CA,94016 +177592,Lightning Charging Cable,2,14.95,2019-04-19 11:10:00,448 Maple St, San Francisco,CA,94016 +177593,27in 4K Gaming Monitor,1,389.99,2019-04-23 20:26:00,554 Lincoln St, Los Angeles,CA,90001 +177594,AA Batteries (4-pack),1,3.84,2019-04-10 21:41:00,459 11th St, Los Angeles,CA,90001 +177595,Bose SoundSport Headphones,1,99.99,2019-04-21 20:50:00,571 Lincoln St, Los Angeles,CA,90001 +177596,Wired Headphones,1,11.99,2019-04-03 15:03:00,906 10th St, Boston,MA,02215 +177597,34in Ultrawide Monitor,1,379.99,2019-04-17 20:31:00,577 Madison St, San Francisco,CA,94016 +177598,USB-C Charging Cable,1,11.95,2019-04-25 01:11:00,975 12th St, Portland,OR,97035 +177599,Flatscreen TV,1,300.0,2019-04-05 23:01:00,987 12th St, Los Angeles,CA,90001 +177600,Google Phone,1,600.0,2019-04-24 23:05:00,575 Walnut St, San Francisco,CA,94016 +177601,Bose SoundSport Headphones,1,99.99,2019-04-18 22:46:00,266 Spruce St, San Francisco,CA,94016 +177602,Apple Airpods Headphones,1,150.0,2019-04-20 13:02:00,313 Cherry St, Atlanta,GA,30301 +177603,Apple Airpods Headphones,1,150.0,2019-04-29 18:15:00,779 South St, Los Angeles,CA,90001 +177604,Bose SoundSport Headphones,1,99.99,2019-04-22 19:13:00,424 Ridge St, Los Angeles,CA,90001 +177605,Google Phone,1,600.0,2019-04-04 07:41:00,825 Madison St, New York City,NY,10001 +177606,AAA Batteries (4-pack),1,2.99,2019-04-19 22:07:00,167 Maple St, Portland,OR,97035 +177607,27in 4K Gaming Monitor,1,389.99,2019-04-28 00:21:00,690 Washington St, Seattle,WA,98101 +177608,Wired Headphones,1,11.99,2019-04-09 16:03:00,529 Adams St, San Francisco,CA,94016 +177609,AA Batteries (4-pack),1,3.84,2019-04-12 16:53:00,909 Jackson St, Atlanta,GA,30301 +177610,Lightning Charging Cable,1,14.95,2019-04-11 20:18:00,601 Hickory St, Austin,TX,73301 +177611,USB-C Charging Cable,1,11.95,2019-04-01 11:19:00,373 South St, San Francisco,CA,94016 +177612,AA Batteries (4-pack),1,3.84,2019-04-22 09:28:00,42 Hill St, Seattle,WA,98101 +177613,USB-C Charging Cable,1,11.95,2019-04-03 09:39:00,117 Walnut St, Seattle,WA,98101 +177614,Apple Airpods Headphones,1,150.0,2019-04-12 08:50:00,233 7th St, Austin,TX,73301 +177615,20in Monitor,1,109.99,2019-04-25 11:13:00,196 Lake St, Dallas,TX,75001 +177616,Apple Airpods Headphones,1,150.0,2019-04-30 18:44:00,252 Highland St, Los Angeles,CA,90001 +177617,AAA Batteries (4-pack),1,2.99,2019-04-30 20:24:00,396 Forest St, Boston,MA,02215 +177618,AAA Batteries (4-pack),1,2.99,2019-04-04 21:32:00,467 7th St, Seattle,WA,98101 +177619,Lightning Charging Cable,1,14.95,2019-04-15 09:36:00,306 Elm St, New York City,NY,10001 +177620,AA Batteries (4-pack),1,3.84,2019-04-19 11:56:00,439 10th St, New York City,NY,10001 +177621,Bose SoundSport Headphones,1,99.99,2019-04-29 13:18:00,333 Hickory St, New York City,NY,10001 +177622,AAA Batteries (4-pack),3,2.99,2019-04-12 23:11:00,599 Willow St, Atlanta,GA,30301 +177623,20in Monitor,1,109.99,2019-04-20 19:39:00,169 Center St, Austin,TX,73301 +177624,Wired Headphones,1,11.99,2019-04-28 20:01:00,11 Park St, Boston,MA,02215 +177625,AA Batteries (4-pack),2,3.84,2019-04-14 17:58:00,105 Walnut St, San Francisco,CA,94016 +177626,iPhone,1,700.0,2019-04-19 07:53:00,523 Main St, Atlanta,GA,30301 +177627,Wired Headphones,1,11.99,2019-04-12 10:13:00,987 Lincoln St, San Francisco,CA,94016 +177628,Lightning Charging Cable,1,14.95,2019-04-24 15:59:00,557 Jackson St, Seattle,WA,98101 +177629,Lightning Charging Cable,1,14.95,2019-04-03 16:41:00,676 Johnson St, Seattle,WA,98101 +177630,Macbook Pro Laptop,1,1700.0,2019-04-15 09:29:00,399 9th St, Seattle,WA,98101 +177631,Bose SoundSport Headphones,1,99.99,2019-04-05 16:49:00,817 Sunset St, Atlanta,GA,30301 +177632,Apple Airpods Headphones,1,150.0,2019-04-27 16:28:00,909 Center St, San Francisco,CA,94016 +177633,Bose SoundSport Headphones,1,99.99,2019-04-26 01:30:00,628 Maple St, New York City,NY,10001 +177634,Lightning Charging Cable,1,14.95,2019-04-23 15:23:00,991 4th St, Seattle,WA,98101 +177635,Lightning Charging Cable,1,14.95,2019-04-04 09:16:00,424 10th St, San Francisco,CA,94016 +177636,34in Ultrawide Monitor,1,379.99,2019-04-18 11:50:00,510 Lake St, Los Angeles,CA,90001 +177637,Bose SoundSport Headphones,1,99.99,2019-04-17 15:28:00,866 13th St, Seattle,WA,98101 +177638,Apple Airpods Headphones,1,150.0,2019-04-04 12:44:00,261 Center St, Portland,OR,97035 +177638,Google Phone,1,600.0,2019-04-04 12:44:00,261 Center St, Portland,OR,97035 +177639,AA Batteries (4-pack),3,3.84,2019-04-25 16:22:00,445 Pine St, Atlanta,GA,30301 +177640,Apple Airpods Headphones,1,150.0,2019-04-07 10:12:00,61 Jackson St, Portland,OR,97035 +177641,27in FHD Monitor,1,149.99,2019-04-07 12:32:00,969 Maple St, Seattle,WA,98101 +177642,AA Batteries (4-pack),2,3.84,2019-04-11 20:57:00,115 Maple St, Atlanta,GA,30301 +177643,Lightning Charging Cable,2,14.95,2019-04-30 00:44:00,499 Pine St, New York City,NY,10001 +177644,Lightning Charging Cable,1,14.95,2019-04-15 22:06:00,749 Sunset St, San Francisco,CA,94016 +177645,Lightning Charging Cable,1,14.95,2019-04-06 10:03:00,421 Lakeview St, Los Angeles,CA,90001 +177646,AAA Batteries (4-pack),1,2.99,2019-04-26 13:25:00,123 10th St, Los Angeles,CA,90001 +177647,Apple Airpods Headphones,1,150.0,2019-04-02 20:45:00,94 10th St, San Francisco,CA,94016 +177648,Bose SoundSport Headphones,1,99.99,2019-04-06 18:11:00,393 Center St, San Francisco,CA,94016 +177649,20in Monitor,1,109.99,2019-04-02 12:33:00,117 5th St, Atlanta,GA,30301 +177650,Macbook Pro Laptop,1,1700.0,2019-04-13 13:54:00,20 4th St, Dallas,TX,75001 +177651,AA Batteries (4-pack),2,3.84,2019-04-02 15:44:00,613 5th St, Portland,OR,97035 +177652,AA Batteries (4-pack),1,3.84,2019-04-24 20:22:00,563 9th St, Los Angeles,CA,90001 +177653,USB-C Charging Cable,1,11.95,2019-04-16 10:34:00,915 Main St, Atlanta,GA,30301 +177654,AAA Batteries (4-pack),3,2.99,2019-04-14 13:31:00,385 Forest St, Austin,TX,73301 +177655,AA Batteries (4-pack),1,3.84,2019-04-23 09:28:00,401 7th St, Atlanta,GA,30301 +177656,AAA Batteries (4-pack),1,2.99,2019-04-12 15:44:00,568 West St, Los Angeles,CA,90001 +177657,AA Batteries (4-pack),1,3.84,2019-04-08 16:25:00,91 Lake St, New York City,NY,10001 +177658,Wired Headphones,1,11.99,2019-04-01 17:35:00,38 11th St, San Francisco,CA,94016 +177659,Wired Headphones,1,11.99,2019-04-05 18:59:00,603 Washington St, Austin,TX,73301 +177660,27in 4K Gaming Monitor,1,389.99,2019-04-20 09:40:00,951 River St, San Francisco,CA,94016 +177661,ThinkPad Laptop,1,999.99,2019-04-15 21:07:00,188 Johnson St, Dallas,TX,75001 +177662,Lightning Charging Cable,1,14.95,2019-04-13 11:04:00,186 Lake St, Austin,TX,73301 +177663,USB-C Charging Cable,1,11.95,2019-04-18 20:12:00,710 Lakeview St, New York City,NY,10001 +177664,AA Batteries (4-pack),1,3.84,2019-04-06 08:41:00,785 Maple St, Seattle,WA,98101 +177665,LG Washing Machine,1,600.0,2019-04-25 18:08:00,842 Center St, San Francisco,CA,94016 +177666,Wired Headphones,1,11.99,2019-04-25 16:05:00,862 Madison St, Portland,OR,97035 +177667,Bose SoundSport Headphones,1,99.99,2019-04-26 20:14:00,198 2nd St, Los Angeles,CA,90001 +177668,Macbook Pro Laptop,1,1700.0,2019-04-01 09:20:00,953 Johnson St, Boston,MA,02215 +177669,Lightning Charging Cable,1,14.95,2019-04-16 09:56:00,469 Jackson St, New York City,NY,10001 +177670,34in Ultrawide Monitor,1,379.99,2019-04-11 10:25:00,636 14th St, New York City,NY,10001 +177671,Apple Airpods Headphones,1,150.0,2019-04-01 16:14:00,312 Maple St, Los Angeles,CA,90001 +177672,Macbook Pro Laptop,1,1700.0,2019-04-14 21:12:00,709 Jackson St, Austin,TX,73301 +177673,34in Ultrawide Monitor,1,379.99,2019-04-06 09:04:00,523 Madison St, San Francisco,CA,94016 +177674,USB-C Charging Cable,1,11.95,2019-04-13 23:09:00,291 Jefferson St, San Francisco,CA,94016 +177675,Wired Headphones,1,11.99,2019-04-17 12:36:00,343 Meadow St, New York City,NY,10001 +177676,iPhone,1,700.0,2019-04-27 14:33:00,126 Forest St, Boston,MA,02215 +177677,Lightning Charging Cable,1,14.95,2019-04-26 16:29:00,738 7th St, Dallas,TX,75001 +177678,AA Batteries (4-pack),1,3.84,2019-04-14 12:34:00,863 Maple St, New York City,NY,10001 +177679,Vareebadd Phone,1,400.0,2019-04-08 17:21:00,789 South St, Atlanta,GA,30301 +177680,Wired Headphones,1,11.99,2019-04-15 10:44:00,602 Willow St, Boston,MA,02215 +177681,AAA Batteries (4-pack),1,2.99,2019-04-01 14:07:00,259 7th St, Dallas,TX,75001 +177681,Macbook Pro Laptop,1,1700.0,2019-04-01 14:07:00,259 7th St, Dallas,TX,75001 +177682,Lightning Charging Cable,1,14.95,2019-04-11 07:48:00,103 South St, Portland,ME,04101 +177683,Lightning Charging Cable,1,14.95,2019-04-23 12:16:00,728 Lakeview St, Atlanta,GA,30301 +177684,Wired Headphones,2,11.99,2019-04-19 13:07:00,844 7th St, Austin,TX,73301 +177685,Wired Headphones,1,11.99,2019-04-02 15:39:00,410 Center St, San Francisco,CA,94016 +177686,Wired Headphones,1,11.99,2019-04-12 23:00:00,150 Jackson St, Seattle,WA,98101 +177687,Wired Headphones,1,11.99,2019-04-01 04:12:00,23 Meadow St, San Francisco,CA,94016 +177688,Flatscreen TV,1,300.0,2019-04-24 19:18:00,618 North St, Boston,MA,02215 +177689,AAA Batteries (4-pack),3,2.99,2019-04-17 21:17:00,478 Willow St, San Francisco,CA,94016 +177690,Lightning Charging Cable,1,14.95,2019-04-04 09:14:00,391 5th St, New York City,NY,10001 +177691,AAA Batteries (4-pack),1,2.99,2019-04-04 17:59:00,573 West St, Los Angeles,CA,90001 +177692,Google Phone,1,600.0,2019-04-08 20:08:00,588 Hickory St, New York City,NY,10001 +177693,Google Phone,1,600.0,2019-04-04 14:21:00,138 Johnson St, Boston,MA,02215 +177694,Apple Airpods Headphones,1,150.0,2019-04-08 21:44:00,512 Lake St, Boston,MA,02215 +177695,Wired Headphones,1,11.99,2019-04-04 11:15:00,957 Park St, Atlanta,GA,30301 +177696,AA Batteries (4-pack),2,3.84,2019-04-12 11:33:00,330 Meadow St, San Francisco,CA,94016 +177697,27in FHD Monitor,1,149.99,2019-04-21 01:10:00,735 Sunset St, San Francisco,CA,94016 +177698,AAA Batteries (4-pack),2,2.99,2019-04-05 08:30:00,14 11th St, Atlanta,GA,30301 +177699,USB-C Charging Cable,1,11.95,2019-04-18 17:40:00,978 Cedar St, Los Angeles,CA,90001 +177700,Wired Headphones,1,11.99,2019-04-23 11:10:00,292 Jackson St, Atlanta,GA,30301 +177701,Lightning Charging Cable,1,14.95,2019-04-21 06:02:00,670 9th St, Los Angeles,CA,90001 +177702,34in Ultrawide Monitor,1,379.99,2019-04-03 09:43:00,901 Lincoln St, Dallas,TX,75001 +177703,20in Monitor,1,109.99,2019-04-10 15:45:00,15 Pine St, New York City,NY,10001 +177704,Apple Airpods Headphones,1,150.0,2019-04-09 16:41:00,553 South St, San Francisco,CA,94016 +177705,Bose SoundSport Headphones,1,99.99,2019-04-18 08:02:00,687 Cherry St, Portland,OR,97035 +177706,27in 4K Gaming Monitor,1,389.99,2019-04-29 18:58:00,851 Jackson St, Portland,OR,97035 +177707,Bose SoundSport Headphones,1,99.99,2019-04-13 12:29:00,778 Walnut St, San Francisco,CA,94016 +177708,USB-C Charging Cable,1,11.95,2019-04-23 18:44:00,43 6th St, New York City,NY,10001 +177709,Lightning Charging Cable,1,14.95,2019-04-21 08:13:00,221 Sunset St, Austin,TX,73301 +177710,AAA Batteries (4-pack),1,2.99,2019-04-02 00:05:00,10 Hill St, Seattle,WA,98101 +177711,AA Batteries (4-pack),1,3.84,2019-04-06 12:13:00,240 Center St, Atlanta,GA,30301 +177712,USB-C Charging Cable,1,11.95,2019-04-01 08:53:00,793 8th St, Los Angeles,CA,90001 +177713,AAA Batteries (4-pack),1,2.99,2019-04-26 01:40:00,509 Wilson St, Los Angeles,CA,90001 +177714,Lightning Charging Cable,1,14.95,2019-04-24 07:16:00,323 Ridge St, San Francisco,CA,94016 +177715,34in Ultrawide Monitor,1,379.99,2019-04-29 12:20:00,550 Main St, San Francisco,CA,94016 +177716,Lightning Charging Cable,2,14.95,2019-04-30 13:41:00,278 Washington St, Boston,MA,02215 +177717,AA Batteries (4-pack),1,3.84,2019-04-27 20:18:00,737 10th St, San Francisco,CA,94016 +177718,Google Phone,1,600.0,2019-04-30 15:06:00,938 Johnson St, Atlanta,GA,30301 +177719,Google Phone,1,600.0,2019-04-18 23:41:00,533 Adams St, Los Angeles,CA,90001 +177719,USB-C Charging Cable,1,11.95,2019-04-18 23:41:00,533 Adams St, Los Angeles,CA,90001 +177720,27in FHD Monitor,1,149.99,2019-04-30 07:57:00,86 Ridge St, Atlanta,GA,30301 +177721,Lightning Charging Cable,1,14.95,2019-04-25 08:26:00,374 South St, San Francisco,CA,94016 +177722,USB-C Charging Cable,1,11.95,2019-04-23 07:55:00,458 10th St, Seattle,WA,98101 +177723,AA Batteries (4-pack),2,3.84,2019-04-04 14:30:00,283 4th St, Atlanta,GA,30301 +177724,USB-C Charging Cable,1,11.95,2019-04-29 21:48:00,242 Willow St, Los Angeles,CA,90001 +177725,Apple Airpods Headphones,1,150.0,2019-04-05 10:29:00,903 Adams St, Los Angeles,CA,90001 +177726,Apple Airpods Headphones,1,150.0,2019-04-07 14:39:00,739 11th St, Dallas,TX,75001 +177727,AA Batteries (4-pack),1,3.84,2019-04-03 20:33:00,239 Elm St, San Francisco,CA,94016 +177728,Lightning Charging Cable,1,14.95,2019-04-29 18:15:00,397 6th St, Austin,TX,73301 +177729,iPhone,1,700.0,2019-04-13 20:25:00,318 6th St, Atlanta,GA,30301 +177730,USB-C Charging Cable,1,11.95,2019-04-30 16:47:00,384 Cedar St, New York City,NY,10001 +177731,Wired Headphones,1,11.99,2019-04-02 16:06:00,643 Pine St, New York City,NY,10001 +177732,27in 4K Gaming Monitor,1,389.99,2019-04-25 15:29:00,28 13th St, New York City,NY,10001 +177733,Lightning Charging Cable,1,14.95,2019-04-23 17:03:00,502 Elm St, Los Angeles,CA,90001 +177734,AA Batteries (4-pack),1,3.84,2019-04-12 17:08:00,575 4th St, Los Angeles,CA,90001 +177735,AAA Batteries (4-pack),1,2.99,2019-04-04 18:36:00,74 Willow St, New York City,NY,10001 +177736,27in 4K Gaming Monitor,1,389.99,2019-04-06 18:42:00,815 Cedar St, San Francisco,CA,94016 +177737,AAA Batteries (4-pack),1,2.99,2019-04-03 17:27:00,632 Madison St, Los Angeles,CA,90001 +177738,Bose SoundSport Headphones,1,99.99,2019-04-28 13:33:00,919 Walnut St, Los Angeles,CA,90001 +177739,ThinkPad Laptop,1,999.99,2019-04-01 09:39:00,984 Park St, Dallas,TX,75001 +177740,27in 4K Gaming Monitor,1,389.99,2019-04-24 23:17:00,960 Lincoln St, Los Angeles,CA,90001 +177741,Bose SoundSport Headphones,1,99.99,2019-04-04 13:52:00,672 Ridge St, Los Angeles,CA,90001 +177742,Lightning Charging Cable,1,14.95,2019-04-15 17:28:00,743 Ridge St, Dallas,TX,75001 +177743,Lightning Charging Cable,1,14.95,2019-04-05 18:39:00,84 9th St, San Francisco,CA,94016 +177744,34in Ultrawide Monitor,1,379.99,2019-04-20 22:45:00,189 Madison St, Los Angeles,CA,90001 +177745,Bose SoundSport Headphones,1,99.99,2019-04-16 18:21:00,48 Cherry St, Atlanta,GA,30301 +177746,AAA Batteries (4-pack),1,2.99,2019-04-16 10:22:00,182 11th St, Seattle,WA,98101 +177747,USB-C Charging Cable,2,11.95,2019-04-06 21:03:00,599 Main St, Portland,OR,97035 +177748,Flatscreen TV,1,300.0,2019-04-14 21:32:00,903 Forest St, Boston,MA,02215 +177749,Apple Airpods Headphones,1,150.0,2019-04-12 10:02:00,727 Jefferson St, San Francisco,CA,94016 +177750,Wired Headphones,1,11.99,2019-04-27 01:09:00,30 7th St, Los Angeles,CA,90001 +177751,AA Batteries (4-pack),1,3.84,2019-04-23 14:51:00,465 Spruce St, Boston,MA,02215 +177752,Google Phone,1,600.0,2019-04-23 13:42:00,178 6th St, Los Angeles,CA,90001 +177753,Wired Headphones,1,11.99,2019-04-11 21:58:00,938 Highland St, San Francisco,CA,94016 +177754,USB-C Charging Cable,1,11.95,2019-04-03 18:46:00,805 8th St, Boston,MA,02215 +177755,Lightning Charging Cable,1,14.95,2019-04-26 06:24:00,215 Hill St, New York City,NY,10001 +177756,34in Ultrawide Monitor,1,379.99,2019-04-16 11:33:00,858 10th St, Boston,MA,02215 +177757,AA Batteries (4-pack),4,3.84,2019-04-25 11:03:00,879 Walnut St, New York City,NY,10001 +177758,USB-C Charging Cable,1,11.95,2019-04-01 19:21:00,963 Center St, Boston,MA,02215 +177758,Lightning Charging Cable,1,14.95,2019-04-01 19:21:00,963 Center St, Boston,MA,02215 +177759,AAA Batteries (4-pack),2,2.99,2019-04-10 16:35:00,835 Spruce St, New York City,NY,10001 +177760,20in Monitor,1,109.99,2019-04-24 00:27:00,115 Park St, Portland,OR,97035 +177761,USB-C Charging Cable,1,11.95,2019-04-03 02:51:00,432 North St, Seattle,WA,98101 +177762,Lightning Charging Cable,1,14.95,2019-04-18 13:18:00,215 Pine St, Seattle,WA,98101 +177763,AAA Batteries (4-pack),1,2.99,2019-04-08 12:06:00,570 Center St, San Francisco,CA,94016 +177764,AA Batteries (4-pack),2,3.84,2019-04-24 12:43:00,435 8th St, Los Angeles,CA,90001 +177765,Bose SoundSport Headphones,2,99.99,2019-04-16 13:57:00,528 1st St, New York City,NY,10001 +177766,34in Ultrawide Monitor,1,379.99,2019-04-07 11:49:00,881 Sunset St, Boston,MA,02215 +177767,USB-C Charging Cable,1,11.95,2019-04-30 08:17:00,741 Jackson St, New York City,NY,10001 +177768,Apple Airpods Headphones,1,150.0,2019-04-08 15:35:00,605 Lakeview St, New York City,NY,10001 +177769,iPhone,1,700.0,2019-04-14 22:54:00,728 Church St, Atlanta,GA,30301 +177769,Lightning Charging Cable,1,14.95,2019-04-14 22:54:00,728 Church St, Atlanta,GA,30301 +177770,AA Batteries (4-pack),1,3.84,2019-04-25 21:53:00,24 12th St, New York City,NY,10001 +177771,USB-C Charging Cable,1,11.95,2019-04-30 20:29:00,550 Walnut St, Austin,TX,73301 +177772,Lightning Charging Cable,1,14.95,2019-04-21 18:05:00,485 Maple St, Boston,MA,02215 +177773,iPhone,1,700.0,2019-04-01 20:03:00,435 8th St, Atlanta,GA,30301 +177774,Flatscreen TV,1,300.0,2019-04-11 15:47:00,303 Cedar St, Seattle,WA,98101 +177775,Lightning Charging Cable,1,14.95,2019-04-27 02:16:00,927 8th St, Los Angeles,CA,90001 +177776,iPhone,1,700.0,2019-04-21 15:23:00,958 Center St, Los Angeles,CA,90001 +177777,Google Phone,1,600.0,2019-04-06 19:22:00,483 Chestnut St, New York City,NY,10001 +177778,iPhone,1,700.0,2019-05-01 00:48:00,478 West St, Boston,MA,02215 +177778,Apple Airpods Headphones,1,150.0,2019-05-01 00:48:00,478 West St, Boston,MA,02215 +177779,34in Ultrawide Monitor,1,379.99,2019-04-11 17:24:00,99 Church St, San Francisco,CA,94016 +177780,Bose SoundSport Headphones,1,99.99,2019-04-19 13:51:00,750 Johnson St, Seattle,WA,98101 +177781,27in 4K Gaming Monitor,1,389.99,2019-04-20 16:29:00,320 Walnut St, Los Angeles,CA,90001 +177782,Lightning Charging Cable,2,14.95,2019-04-17 20:30:00,29 5th St, San Francisco,CA,94016 +177782,27in 4K Gaming Monitor,1,389.99,2019-04-17 20:30:00,29 5th St, San Francisco,CA,94016 +177783,Apple Airpods Headphones,1,150.0,2019-04-26 10:00:00,234 Maple St, New York City,NY,10001 +177784,Lightning Charging Cable,1,14.95,2019-04-15 19:03:00,753 Ridge St, New York City,NY,10001 +177785,USB-C Charging Cable,1,11.95,2019-04-05 09:43:00,731 Hickory St, Austin,TX,73301 +177786,20in Monitor,1,109.99,2019-04-16 09:50:00,999 12th St, New York City,NY,10001 +177787,Lightning Charging Cable,2,14.95,2019-04-18 17:55:00,111 Dogwood St, Seattle,WA,98101 +177788,Bose SoundSport Headphones,1,99.99,2019-04-29 09:40:00,542 Walnut St, New York City,NY,10001 +177789,Wired Headphones,1,11.99,2019-04-12 12:34:00,799 River St, Los Angeles,CA,90001 +177790,20in Monitor,1,109.99,2019-04-19 14:34:00,958 Jackson St, San Francisco,CA,94016 +177791,Apple Airpods Headphones,1,150.0,2019-04-21 11:16:00,27 13th St, New York City,NY,10001 +177792,Vareebadd Phone,1,400.0,2019-04-11 15:30:00,724 1st St, Dallas,TX,75001 +177793,Lightning Charging Cable,1,14.95,2019-04-14 23:38:00,682 9th St, Dallas,TX,75001 +177794,AAA Batteries (4-pack),2,2.99,2019-04-30 16:54:00,541 Wilson St, Boston,MA,02215 +177795,Apple Airpods Headphones,1,150.0,2019-04-27 19:45:00,740 14th St, Seattle,WA,98101 +177796,34in Ultrawide Monitor,1,379.99,2019-04-11 12:53:00,774 Washington St, Boston,MA,02215 +177797,iPhone,1,700.0,2019-04-27 14:38:00,128 11th St, San Francisco,CA,94016 +177798,20in Monitor,1,109.99,2019-04-10 13:47:00,324 River St, New York City,NY,10001 +177799,USB-C Charging Cable,1,11.95,2019-04-13 19:56:00,285 Madison St, San Francisco,CA,94016 +177800,Google Phone,1,600.0,2019-04-03 11:56:00,880 9th St, Portland,ME,04101 +177800,USB-C Charging Cable,1,11.95,2019-04-03 11:56:00,880 9th St, Portland,ME,04101 +177800,Wired Headphones,1,11.99,2019-04-03 11:56:00,880 9th St, Portland,ME,04101 +177801,USB-C Charging Cable,1,11.95,2019-04-29 14:29:00,418 Hickory St, Dallas,TX,75001 +177802,Vareebadd Phone,1,400.0,2019-04-16 18:51:00,202 River St, San Francisco,CA,94016 +177803,AA Batteries (4-pack),1,3.84,2019-04-04 09:08:00,306 12th St, Boston,MA,02215 +177804,AAA Batteries (4-pack),1,2.99,2019-04-07 12:48:00,286 Jackson St, Portland,OR,97035 +177805,USB-C Charging Cable,1,11.95,2019-04-04 09:23:00,462 12th St, Los Angeles,CA,90001 +177806,AAA Batteries (4-pack),1,2.99,2019-04-17 10:49:00,979 Wilson St, Austin,TX,73301 +177807,AA Batteries (4-pack),1,3.84,2019-04-05 14:19:00,689 1st St, Dallas,TX,75001 +177808,Wired Headphones,1,11.99,2019-04-24 12:56:00,60 Lincoln St, New York City,NY,10001 +177809,AA Batteries (4-pack),1,3.84,2019-04-17 10:35:00,291 Main St, Boston,MA,02215 +177810,20in Monitor,1,109.99,2019-04-11 06:53:00,340 Sunset St, Atlanta,GA,30301 +177811,USB-C Charging Cable,1,11.95,2019-04-11 10:33:00,733 6th St, Portland,OR,97035 +177812,27in FHD Monitor,1,149.99,2019-04-03 09:42:00,145 Chestnut St, Portland,ME,04101 +177813,27in FHD Monitor,1,149.99,2019-04-29 18:25:00,439 Maple St, San Francisco,CA,94016 +177814,LG Washing Machine,1,600.0,2019-04-11 16:04:00,79 Johnson St, Atlanta,GA,30301 +177815,Apple Airpods Headphones,1,150.0,2019-04-19 20:27:00,124 5th St, Dallas,TX,75001 +177815,Lightning Charging Cable,1,14.95,2019-04-19 20:27:00,124 5th St, Dallas,TX,75001 +177816,20in Monitor,1,109.99,2019-04-29 13:22:00,319 9th St, New York City,NY,10001 +177817,ThinkPad Laptop,1,999.99,2019-04-20 22:46:00,379 Chestnut St, New York City,NY,10001 +177818,Wired Headphones,1,11.99,2019-04-21 11:08:00,365 South St, Boston,MA,02215 +177819,Flatscreen TV,1,300.0,2019-04-21 10:31:00,176 Willow St, Los Angeles,CA,90001 +177820,AAA Batteries (4-pack),1,2.99,2019-04-19 19:40:00,257 Jackson St, San Francisco,CA,94016 +177821,AA Batteries (4-pack),1,3.84,2019-04-09 06:06:00,403 Chestnut St, Los Angeles,CA,90001 +177822,AA Batteries (4-pack),1,3.84,2019-04-25 12:29:00,809 Center St, Dallas,TX,75001 +177823,AA Batteries (4-pack),1,3.84,2019-04-04 15:40:00,448 West St, Portland,OR,97035 +177824,AAA Batteries (4-pack),1,2.99,2019-04-10 21:43:00,485 North St, Atlanta,GA,30301 +177825,USB-C Charging Cable,1,11.95,2019-04-30 18:54:00,21 Park St, San Francisco,CA,94016 +177826,AA Batteries (4-pack),1,3.84,2019-04-10 12:57:00,62 North St, Seattle,WA,98101 +177827,Lightning Charging Cable,1,14.95,2019-04-18 21:12:00,803 Adams St, Seattle,WA,98101 +177828,AAA Batteries (4-pack),3,2.99,2019-04-16 21:08:00,924 6th St, San Francisco,CA,94016 +177829,Lightning Charging Cable,1,14.95,2019-04-22 12:24:00,346 Walnut St, Atlanta,GA,30301 +177830,27in FHD Monitor,1,149.99,2019-04-07 07:36:00,133 Willow St, Dallas,TX,75001 +177831,Lightning Charging Cable,1,14.95,2019-04-01 03:09:00,914 6th St, San Francisco,CA,94016 +177832,27in FHD Monitor,1,149.99,2019-04-12 21:14:00,541 Spruce St, Boston,MA,02215 +177833,Apple Airpods Headphones,1,150.0,2019-04-28 22:17:00,192 Hill St, San Francisco,CA,94016 +177834,Lightning Charging Cable,1,14.95,2019-04-07 17:45:00,997 Park St, San Francisco,CA,94016 +177835,USB-C Charging Cable,1,11.95,2019-04-09 00:02:00,59 Cedar St, New York City,NY,10001 +177836,27in 4K Gaming Monitor,1,389.99,2019-04-22 11:21:00,338 Lincoln St, New York City,NY,10001 +177837,Apple Airpods Headphones,1,150.0,2019-04-14 21:51:00,588 9th St, Los Angeles,CA,90001 +177838,AAA Batteries (4-pack),6,2.99,2019-04-29 00:16:00,872 Pine St, San Francisco,CA,94016 +177839,ThinkPad Laptop,1,999.99,2019-04-07 14:36:00,449 13th St, San Francisco,CA,94016 +177840,Lightning Charging Cable,1,14.95,2019-04-20 00:24:00,558 Jefferson St, Portland,ME,04101 +177841,20in Monitor,1,109.99,2019-04-22 08:05:00,815 West St, Austin,TX,73301 +177842,USB-C Charging Cable,1,11.95,2019-04-19 11:35:00,328 Jefferson St, San Francisco,CA,94016 +177843,Vareebadd Phone,1,400.0,2019-04-20 09:42:00,14 5th St, Los Angeles,CA,90001 +177844,Wired Headphones,1,11.99,2019-04-18 13:28:00,419 12th St, Portland,ME,04101 +177845,Lightning Charging Cable,1,14.95,2019-04-22 13:21:00,641 Meadow St, San Francisco,CA,94016 +177846,AA Batteries (4-pack),1,3.84,2019-04-10 21:29:00,897 South St, Los Angeles,CA,90001 +177847,ThinkPad Laptop,1,999.99,2019-04-11 01:55:00,608 Wilson St, Los Angeles,CA,90001 +177848,Flatscreen TV,1,300.0,2019-04-06 09:23:00,563 Dogwood St, Seattle,WA,98101 +177849,Wired Headphones,1,11.99,2019-04-14 10:08:00,767 Hickory St, San Francisco,CA,94016 +177850,27in 4K Gaming Monitor,1,389.99,2019-04-04 16:20:00,267 Johnson St, Boston,MA,02215 +177851,Bose SoundSport Headphones,1,99.99,2019-04-23 16:37:00,984 River St, Portland,ME,04101 +177852,Bose SoundSport Headphones,1,99.99,2019-04-30 16:33:00,818 Park St, San Francisco,CA,94016 +177853,AAA Batteries (4-pack),1,2.99,2019-04-10 21:53:00,514 Highland St, New York City,NY,10001 +177854,Wired Headphones,1,11.99,2019-04-05 14:08:00,118 North St, Boston,MA,02215 +177855,Lightning Charging Cable,1,14.95,2019-04-13 13:51:00,363 Johnson St, Los Angeles,CA,90001 +177856,Vareebadd Phone,1,400.0,2019-04-24 08:56:00,605 Madison St, Austin,TX,73301 +177857,Wired Headphones,1,11.99,2019-04-21 10:13:00,481 14th St, Atlanta,GA,30301 +177858,USB-C Charging Cable,1,11.95,2019-04-20 12:54:00,108 4th St, San Francisco,CA,94016 +177859,Wired Headphones,1,11.99,2019-04-02 18:33:00,741 Chestnut St, Portland,OR,97035 +177860,AAA Batteries (4-pack),1,2.99,2019-04-08 10:51:00,723 Walnut St, San Francisco,CA,94016 +177861,AA Batteries (4-pack),1,3.84,2019-04-23 06:32:00,712 Washington St, Boston,MA,02215 +177861,Apple Airpods Headphones,1,150.0,2019-04-23 06:32:00,712 Washington St, Boston,MA,02215 +177862,USB-C Charging Cable,1,11.95,2019-04-03 20:13:00,448 South St, Boston,MA,02215 +177863,Macbook Pro Laptop,1,1700.0,2019-04-29 16:22:00,385 Lincoln St, San Francisco,CA,94016 +177864,AA Batteries (4-pack),1,3.84,2019-04-21 17:30:00,586 7th St, Boston,MA,02215 +177865,Apple Airpods Headphones,1,150.0,2019-04-04 17:52:00,901 Jefferson St, San Francisco,CA,94016 +177866,Apple Airpods Headphones,2,150.0,2019-04-06 17:11:00,855 Main St, Los Angeles,CA,90001 +177867,USB-C Charging Cable,1,11.95,2019-04-13 15:05:00,887 Jefferson St, Dallas,TX,75001 +177868,AA Batteries (4-pack),1,3.84,2019-04-01 10:17:00,956 7th St, Dallas,TX,75001 +177869,Apple Airpods Headphones,1,150.0,2019-04-11 21:03:00,906 12th St, New York City,NY,10001 +177870,Flatscreen TV,1,300.0,2019-04-30 19:10:00,55 10th St, San Francisco,CA,94016 +177871,AA Batteries (4-pack),2,3.84,2019-04-25 11:33:00,156 Walnut St, Austin,TX,73301 +177872,27in 4K Gaming Monitor,1,389.99,2019-04-15 13:22:00,470 Lincoln St, San Francisco,CA,94016 +177873,27in FHD Monitor,1,149.99,2019-04-10 19:10:00,564 Hickory St, Boston,MA,02215 +177874,iPhone,1,700.0,2019-04-04 18:23:00,334 Willow St, Boston,MA,02215 +177874,Apple Airpods Headphones,1,150.0,2019-04-04 18:23:00,334 Willow St, Boston,MA,02215 +177875,Apple Airpods Headphones,1,150.0,2019-04-13 13:50:00,474 Lakeview St, San Francisco,CA,94016 +177876,USB-C Charging Cable,1,11.95,2019-04-14 10:57:00,843 Chestnut St, San Francisco,CA,94016 +177877,Google Phone,1,600.0,2019-04-24 23:59:00,666 Pine St, San Francisco,CA,94016 +177878,Apple Airpods Headphones,1,150.0,2019-04-20 19:47:00,561 Willow St, San Francisco,CA,94016 +177879,Vareebadd Phone,1,400.0,2019-04-09 18:59:00,879 12th St, San Francisco,CA,94016 +177880,AA Batteries (4-pack),1,3.84,2019-04-18 13:24:00,818 Forest St, Boston,MA,02215 +177881,20in Monitor,1,109.99,2019-04-01 10:52:00,748 4th St, San Francisco,CA,94016 +177882,AA Batteries (4-pack),1,3.84,2019-04-25 14:50:00,181 Walnut St, Seattle,WA,98101 +177883,Wired Headphones,1,11.99,2019-04-15 17:17:00,341 Maple St, San Francisco,CA,94016 +177884,Apple Airpods Headphones,1,150.0,2019-04-12 20:49:00,367 Maple St, Atlanta,GA,30301 +177885,27in 4K Gaming Monitor,1,389.99,2019-04-08 19:57:00,485 9th St, New York City,NY,10001 +177886,USB-C Charging Cable,1,11.95,2019-04-20 18:11:00,943 Lincoln St, Los Angeles,CA,90001 +177887,AA Batteries (4-pack),1,3.84,2019-04-16 10:00:00,394 Hickory St, San Francisco,CA,94016 +177888,iPhone,1,700.0,2019-04-07 18:11:00,530 Jefferson St, San Francisco,CA,94016 +177889,Lightning Charging Cable,1,14.95,2019-04-18 13:36:00,595 1st St, Dallas,TX,75001 +177890,Macbook Pro Laptop,1,1700.0,2019-04-08 15:47:00,486 Park St, New York City,NY,10001 +177891,Wired Headphones,1,11.99,2019-04-04 19:22:00,981 9th St, Atlanta,GA,30301 +177892,Lightning Charging Cable,1,14.95,2019-04-04 05:16:00,369 Hill St, Boston,MA,02215 +177893,Lightning Charging Cable,1,14.95,2019-04-13 12:34:00,116 10th St, San Francisco,CA,94016 +177894,27in FHD Monitor,1,149.99,2019-04-29 22:49:00,607 12th St, Seattle,WA,98101 +177895,Bose SoundSport Headphones,1,99.99,2019-04-22 18:12:00,225 Jefferson St, New York City,NY,10001 +177896,USB-C Charging Cable,2,11.95,2019-04-12 12:25:00,266 Willow St, San Francisco,CA,94016 +177897,Lightning Charging Cable,1,14.95,2019-04-16 00:10:00,521 14th St, Austin,TX,73301 +177898,Google Phone,1,600.0,2019-04-16 13:38:00,928 6th St, Los Angeles,CA,90001 +177899,AA Batteries (4-pack),1,3.84,2019-04-13 18:17:00,387 12th St, Portland,OR,97035 +177900,AA Batteries (4-pack),2,3.84,2019-04-21 21:36:00,605 Johnson St, Portland,OR,97035 +177901,Apple Airpods Headphones,1,150.0,2019-04-23 21:51:00,337 Chestnut St, San Francisco,CA,94016 +177902,Vareebadd Phone,1,400.0,2019-04-04 11:54:00,290 Maple St, San Francisco,CA,94016 +177903,20in Monitor,1,109.99,2019-04-26 19:39:00,50 Lincoln St, Los Angeles,CA,90001 +177904,Apple Airpods Headphones,1,150.0,2019-04-26 06:56:00,841 Hill St, Atlanta,GA,30301 +177905,Bose SoundSport Headphones,1,99.99,2019-04-12 11:19:00,12 Elm St, San Francisco,CA,94016 +177906,Google Phone,1,600.0,2019-04-15 04:59:00,876 Wilson St, New York City,NY,10001 +177907,USB-C Charging Cable,1,11.95,2019-04-05 10:01:00,680 Sunset St, Los Angeles,CA,90001 +177908,Wired Headphones,1,11.99,2019-04-08 14:05:00,280 Maple St, Boston,MA,02215 +177909,AA Batteries (4-pack),1,3.84,2019-04-11 19:49:00,531 Forest St, Boston,MA,02215 +177910,LG Dryer,1,600.0,2019-04-10 10:17:00,370 1st St, Los Angeles,CA,90001 +177911,AAA Batteries (4-pack),1,2.99,2019-04-05 13:13:00,714 8th St, Austin,TX,73301 +177912,USB-C Charging Cable,1,11.95,2019-04-11 20:23:00,120 Cedar St, San Francisco,CA,94016 +177913,Apple Airpods Headphones,1,150.0,2019-04-04 18:49:00,373 Willow St, Dallas,TX,75001 +177914,AAA Batteries (4-pack),1,2.99,2019-04-11 12:50:00,723 Church St, San Francisco,CA,94016 +177915,Apple Airpods Headphones,1,150.0,2019-04-25 10:53:00,64 2nd St, Los Angeles,CA,90001 +177916,Lightning Charging Cable,1,14.95,2019-04-09 12:39:00,443 Willow St, New York City,NY,10001 +177917,Wired Headphones,1,11.99,2019-04-06 15:49:00,737 Lincoln St, San Francisco,CA,94016 +177918,27in FHD Monitor,1,149.99,2019-04-21 09:57:00,903 Adams St, Boston,MA,02215 +177919,Lightning Charging Cable,1,14.95,2019-04-25 10:37:00,470 13th St, Portland,OR,97035 +177920,Lightning Charging Cable,1,14.95,2019-04-08 19:53:00,355 River St, Atlanta,GA,30301 +177921,AAA Batteries (4-pack),2,2.99,2019-04-14 20:42:00,94 Lake St, San Francisco,CA,94016 +177922,AAA Batteries (4-pack),2,2.99,2019-04-29 17:34:00,853 Lakeview St, Portland,OR,97035 +177923,AA Batteries (4-pack),1,3.84,2019-04-04 17:43:00,947 Pine St, San Francisco,CA,94016 +177924,Lightning Charging Cable,1,14.95,2019-04-16 11:49:00,52 Hickory St, San Francisco,CA,94016 +177925,27in 4K Gaming Monitor,1,389.99,2019-04-17 15:30:00,26 Lake St, Atlanta,GA,30301 +177926,Lightning Charging Cable,1,14.95,2019-04-18 11:48:00,476 Ridge St, San Francisco,CA,94016 +177927,27in 4K Gaming Monitor,1,389.99,2019-04-17 10:37:00,76 Hill St, Boston,MA,02215 +177928,AAA Batteries (4-pack),2,2.99,2019-04-25 13:07:00,722 Walnut St, San Francisco,CA,94016 +177929,27in FHD Monitor,1,149.99,2019-04-21 23:42:00,557 Johnson St, Seattle,WA,98101 +177930,AAA Batteries (4-pack),1,2.99,2019-04-16 19:23:00,915 10th St, Boston,MA,02215 +177931,AAA Batteries (4-pack),1,2.99,2019-04-17 13:43:00,543 Meadow St, San Francisco,CA,94016 +177932,AA Batteries (4-pack),1,3.84,2019-04-26 07:28:00,758 Lakeview St, San Francisco,CA,94016 +177933,USB-C Charging Cable,2,11.95,2019-04-08 20:15:00,241 South St, Dallas,TX,75001 +177934,27in FHD Monitor,1,149.99,2019-04-07 17:15:00,333 Park St, Austin,TX,73301 +177935,Bose SoundSport Headphones,1,99.99,2019-04-23 20:11:00,565 Dogwood St, Seattle,WA,98101 +177936,Apple Airpods Headphones,1,150.0,2019-04-08 18:36:00,607 Hill St, San Francisco,CA,94016 +177937,AA Batteries (4-pack),1,3.84,2019-04-01 12:39:00,766 Dogwood St, Atlanta,GA,30301 +177938,Bose SoundSport Headphones,1,99.99,2019-04-27 23:14:00,150 Chestnut St, Seattle,WA,98101 +177939,34in Ultrawide Monitor,1,379.99,2019-04-10 14:28:00,11 Dogwood St, New York City,NY,10001 +177940,AA Batteries (4-pack),1,3.84,2019-04-02 11:10:00,646 12th St, San Francisco,CA,94016 +177941,AAA Batteries (4-pack),1,2.99,2019-04-20 22:14:00,849 Center St, New York City,NY,10001 +177942,AA Batteries (4-pack),1,3.84,2019-04-29 19:01:00,639 Willow St, Los Angeles,CA,90001 +177943,Lightning Charging Cable,1,14.95,2019-04-07 13:28:00,126 Hickory St, San Francisco,CA,94016 +177944,USB-C Charging Cable,1,11.95,2019-04-12 21:34:00,138 10th St, Austin,TX,73301 +177945,USB-C Charging Cable,2,11.95,2019-04-09 22:04:00,257 West St, Dallas,TX,75001 +177946,Lightning Charging Cable,1,14.95,2019-04-11 18:28:00,252 Maple St, San Francisco,CA,94016 +177947,AA Batteries (4-pack),1,3.84,2019-04-15 20:35:00,751 7th St, Boston,MA,02215 +177948,AAA Batteries (4-pack),1,2.99,2019-04-08 13:26:00,580 Elm St, Atlanta,GA,30301 +177949,USB-C Charging Cable,1,11.95,2019-04-02 20:40:00,939 Cedar St, Seattle,WA,98101 +177950,Bose SoundSport Headphones,1,99.99,2019-04-28 07:28:00,321 Willow St, Boston,MA,02215 +177951,34in Ultrawide Monitor,1,379.99,2019-04-01 19:45:00,256 Meadow St, Seattle,WA,98101 +177952,USB-C Charging Cable,1,11.95,2019-04-22 06:57:00,901 Pine St, Los Angeles,CA,90001 +177953,Wired Headphones,1,11.99,2019-04-14 16:29:00,26 Washington St, Boston,MA,02215 +177954,AA Batteries (4-pack),1,3.84,2019-04-17 20:10:00,192 Meadow St, San Francisco,CA,94016 +177955,34in Ultrawide Monitor,1,379.99,2019-04-26 12:11:00,71 Lake St, San Francisco,CA,94016 +177956,USB-C Charging Cable,1,11.95,2019-04-20 05:46:00,562 12th St, New York City,NY,10001 +177957,USB-C Charging Cable,1,11.95,2019-04-12 21:02:00,231 Cherry St, Portland,OR,97035 +177958,AA Batteries (4-pack),1,3.84,2019-04-20 17:40:00,726 8th St, Los Angeles,CA,90001 +177959,AAA Batteries (4-pack),1,2.99,2019-04-05 08:47:00,238 Church St, New York City,NY,10001 +177960,20in Monitor,1,109.99,2019-04-12 13:14:00,74 Forest St, Seattle,WA,98101 +177961,27in 4K Gaming Monitor,1,389.99,2019-04-30 20:00:00,697 West St, Dallas,TX,75001 +177962,Wired Headphones,1,11.99,2019-04-29 09:35:00,889 5th St, San Francisco,CA,94016 +177963,20in Monitor,1,109.99,2019-04-29 10:16:00,780 South St, New York City,NY,10001 +177964,34in Ultrawide Monitor,1,379.99,2019-04-06 16:48:00,852 Spruce St, New York City,NY,10001 +177965,AAA Batteries (4-pack),2,2.99,2019-04-19 22:49:00,819 Madison St, Austin,TX,73301 +177966,34in Ultrawide Monitor,1,379.99,2019-04-04 13:43:00,712 7th St, San Francisco,CA,94016 +177967,Lightning Charging Cable,1,14.95,2019-04-23 07:04:00,901 Pine St, New York City,NY,10001 +177968,Bose SoundSport Headphones,1,99.99,2019-04-12 23:33:00,260 Sunset St, San Francisco,CA,94016 +177969,AAA Batteries (4-pack),1,2.99,2019-04-13 23:47:00,840 Forest St, San Francisco,CA,94016 +177970,AAA Batteries (4-pack),1,2.99,2019-04-06 11:14:00,19 Elm St, Los Angeles,CA,90001 +177971,iPhone,1,700.0,2019-04-30 08:05:00,81 Lincoln St, San Francisco,CA,94016 +177971,Lightning Charging Cable,1,14.95,2019-04-30 08:05:00,81 Lincoln St, San Francisco,CA,94016 +177972,AAA Batteries (4-pack),1,2.99,2019-04-29 13:09:00,566 4th St, Los Angeles,CA,90001 +177973,Lightning Charging Cable,1,14.95,2019-04-20 10:44:00,299 Washington St, San Francisco,CA,94016 +177974,Bose SoundSport Headphones,1,99.99,2019-04-23 13:13:00,293 Sunset St, San Francisco,CA,94016 +177975,AA Batteries (4-pack),3,3.84,2019-04-30 08:46:00,167 12th St, Los Angeles,CA,90001 +177976,USB-C Charging Cable,1,11.95,2019-04-14 22:21:00,908 Lakeview St, Seattle,WA,98101 +177977,iPhone,1,700.0,2019-04-03 19:49:00,725 Pine St, San Francisco,CA,94016 +177978,Apple Airpods Headphones,1,150.0,2019-04-30 14:56:00,447 Wilson St, Austin,TX,73301 +177979,AA Batteries (4-pack),2,3.84,2019-04-23 17:01:00,684 Ridge St, San Francisco,CA,94016 +177980,Bose SoundSport Headphones,1,99.99,2019-04-26 02:36:00,370 Ridge St, New York City,NY,10001 +177981,USB-C Charging Cable,1,11.95,2019-04-09 14:43:00,250 Washington St, San Francisco,CA,94016 +177982,AA Batteries (4-pack),1,3.84,2019-04-15 10:42:00,414 7th St, San Francisco,CA,94016 +177983,USB-C Charging Cable,1,11.95,2019-04-23 15:21:00,652 Lincoln St, Boston,MA,02215 +177984,Apple Airpods Headphones,1,150.0,2019-04-18 10:43:00,625 Ridge St, San Francisco,CA,94016 +177985,Lightning Charging Cable,1,14.95,2019-04-04 13:05:00,216 Church St, Boston,MA,02215 +177986,Apple Airpods Headphones,1,150.0,2019-04-26 17:14:00,281 Center St, New York City,NY,10001 +177987,Apple Airpods Headphones,1,150.0,2019-04-07 10:02:00,648 Main St, Seattle,WA,98101 +177988,20in Monitor,1,109.99,2019-04-28 18:32:00,728 12th St, Dallas,TX,75001 +177989,AA Batteries (4-pack),2,3.84,2019-04-26 22:19:00,167 Spruce St, Los Angeles,CA,90001 +177990,Lightning Charging Cable,1,14.95,2019-04-02 13:19:00,510 6th St, New York City,NY,10001 +177991,34in Ultrawide Monitor,1,379.99,2019-04-21 21:42:00,560 Willow St, Boston,MA,02215 +177992,Bose SoundSport Headphones,1,99.99,2019-04-27 23:50:00,42 Meadow St, Portland,OR,97035 +177993,AAA Batteries (4-pack),3,2.99,2019-04-13 21:53:00,300 14th St, San Francisco,CA,94016 +177994,Lightning Charging Cable,1,14.95,2019-04-01 19:15:00,558 Maple St, San Francisco,CA,94016 +177995,AA Batteries (4-pack),3,3.84,2019-04-13 12:01:00,820 Pine St, San Francisco,CA,94016 +177996,iPhone,1,700.0,2019-04-07 17:20:00,37 Jackson St, Atlanta,GA,30301 +177996,Lightning Charging Cable,1,14.95,2019-04-07 17:20:00,37 Jackson St, Atlanta,GA,30301 +177997,Lightning Charging Cable,1,14.95,2019-04-04 19:47:00,797 Center St, New York City,NY,10001 +177998,AAA Batteries (4-pack),1,2.99,2019-04-09 12:51:00,484 1st St, Dallas,TX,75001 +177999,ThinkPad Laptop,1,999.99,2019-04-15 11:04:00,257 10th St, New York City,NY,10001 +178000,Lightning Charging Cable,1,14.95,2019-04-27 11:47:00,979 Hickory St, Los Angeles,CA,90001 +178001,USB-C Charging Cable,1,11.95,2019-04-05 10:50:00,976 Park St, New York City,NY,10001 +178002,USB-C Charging Cable,1,11.95,2019-04-13 17:17:00,746 Willow St, Los Angeles,CA,90001 +178003,iPhone,1,700.0,2019-04-04 18:52:00,824 11th St, San Francisco,CA,94016 +178004,AA Batteries (4-pack),2,3.84,2019-04-12 19:10:00,372 Spruce St, Los Angeles,CA,90001 +178005,USB-C Charging Cable,1,11.95,2019-04-07 12:02:00,183 Cherry St, San Francisco,CA,94016 +178006,Lightning Charging Cable,1,14.95,2019-04-13 22:52:00,188 Sunset St, Los Angeles,CA,90001 +178007,iPhone,1,700.0,2019-04-14 13:54:00,824 Jefferson St, New York City,NY,10001 +178008,Bose SoundSport Headphones,1,99.99,2019-04-05 07:42:00,162 West St, Los Angeles,CA,90001 +178009,34in Ultrawide Monitor,1,379.99,2019-04-10 16:01:00,829 1st St, New York City,NY,10001 +178009,USB-C Charging Cable,1,11.95,2019-04-10 16:01:00,829 1st St, New York City,NY,10001 +178010,Wired Headphones,1,11.99,2019-04-02 16:30:00,774 Forest St, Los Angeles,CA,90001 +178011,AAA Batteries (4-pack),2,2.99,2019-04-21 21:28:00,83 Church St, Atlanta,GA,30301 +178012,Wired Headphones,2,11.99,2019-04-13 16:39:00,49 Walnut St, San Francisco,CA,94016 +178013,Wired Headphones,1,11.99,2019-04-04 18:28:00,6 11th St, Los Angeles,CA,90001 +178014,Wired Headphones,1,11.99,2019-04-27 14:50:00,818 11th St, Boston,MA,02215 +178015,USB-C Charging Cable,1,11.95,2019-04-27 10:30:00,315 Ridge St, Dallas,TX,75001 +178016,USB-C Charging Cable,1,11.95,2019-04-17 16:10:00,230 Spruce St, Los Angeles,CA,90001 +178017,USB-C Charging Cable,1,11.95,2019-04-10 17:35:00,672 Hill St, Los Angeles,CA,90001 +178018,Macbook Pro Laptop,1,1700.0,2019-04-27 15:23:00,378 Dogwood St, Portland,OR,97035 +178019,Apple Airpods Headphones,1,150.0,2019-04-05 14:19:00,757 1st St, Atlanta,GA,30301 +178020,AAA Batteries (4-pack),1,2.99,2019-04-20 22:27:00,285 2nd St, Atlanta,GA,30301 +178021,Wired Headphones,1,11.99,2019-04-28 09:07:00,301 5th St, Dallas,TX,75001 +178022,Flatscreen TV,1,300.0,2019-04-27 20:55:00,786 Dogwood St, Los Angeles,CA,90001 +178023,Google Phone,1,600.0,2019-04-08 21:03:00,671 Cherry St, San Francisco,CA,94016 +178024,Bose SoundSport Headphones,1,99.99,2019-04-08 06:07:00,1 Dogwood St, Atlanta,GA,30301 +178025,USB-C Charging Cable,1,11.95,2019-04-19 17:46:00,12 Johnson St, San Francisco,CA,94016 +178026,Macbook Pro Laptop,1,1700.0,2019-04-08 23:11:00,508 Park St, Los Angeles,CA,90001 +178027,Lightning Charging Cable,1,14.95,2019-04-06 15:06:00,26 Hickory St, Seattle,WA,98101 +178028,20in Monitor,1,109.99,2019-04-19 13:21:00,408 10th St, San Francisco,CA,94016 +178029,iPhone,1,700.0,2019-04-06 21:15:00,800 9th St, Los Angeles,CA,90001 +178029,Apple Airpods Headphones,1,150.0,2019-04-06 21:15:00,800 9th St, Los Angeles,CA,90001 +178030,USB-C Charging Cable,1,11.95,2019-04-07 11:58:00,253 1st St, San Francisco,CA,94016 +178031,34in Ultrawide Monitor,1,379.99,2019-04-11 14:22:00,844 11th St, Boston,MA,02215 +178032,AA Batteries (4-pack),1,3.84,2019-04-10 10:38:00,455 Lakeview St, Portland,OR,97035 +178033,AA Batteries (4-pack),1,3.84,2019-04-20 11:36:00,740 Ridge St, Portland,ME,04101 +178034,Wired Headphones,1,11.99,2019-04-05 07:33:00,962 Walnut St, San Francisco,CA,94016 +178035,AA Batteries (4-pack),1,3.84,2019-04-25 18:19:00,284 Walnut St, San Francisco,CA,94016 +178036,Lightning Charging Cable,1,14.95,2019-04-18 10:03:00,169 10th St, Dallas,TX,75001 +178037,AAA Batteries (4-pack),3,2.99,2019-04-01 21:03:00,407 Ridge St, Los Angeles,CA,90001 +178038,34in Ultrawide Monitor,1,379.99,2019-04-27 19:09:00,355 12th St, San Francisco,CA,94016 +178039,Apple Airpods Headphones,1,150.0,2019-04-15 11:36:00,717 Highland St, Boston,MA,02215 +178040,AA Batteries (4-pack),4,3.84,2019-04-19 11:29:00,604 5th St, New York City,NY,10001 +178041,Lightning Charging Cable,1,14.95,2019-04-11 20:01:00,560 Forest St, San Francisco,CA,94016 +178042,34in Ultrawide Monitor,1,379.99,2019-04-11 20:37:00,234 5th St, New York City,NY,10001 +178043,AAA Batteries (4-pack),1,2.99,2019-04-20 10:52:00,922 Maple St, San Francisco,CA,94016 +178044,USB-C Charging Cable,2,11.95,2019-04-10 21:40:00,448 Meadow St, New York City,NY,10001 +178045,20in Monitor,1,109.99,2019-04-30 21:24:00,871 Jefferson St, Los Angeles,CA,90001 +178046,iPhone,1,700.0,2019-04-05 10:26:00,767 Spruce St, New York City,NY,10001 +178047,USB-C Charging Cable,1,11.95,2019-04-17 19:53:00,850 Maple St, New York City,NY,10001 +178048,Apple Airpods Headphones,1,150.0,2019-04-04 12:44:00,738 Jefferson St, Boston,MA,02215 +178049,USB-C Charging Cable,2,11.95,2019-04-21 20:05:00,416 10th St, Boston,MA,02215 +178050,AAA Batteries (4-pack),2,2.99,2019-04-25 20:33:00,540 Washington St, Los Angeles,CA,90001 +178051,Lightning Charging Cable,1,14.95,2019-04-13 21:49:00,628 Walnut St, Boston,MA,02215 +178052,Flatscreen TV,1,300.0,2019-04-10 15:55:00,26 Hickory St, San Francisco,CA,94016 +178053,Apple Airpods Headphones,1,150.0,2019-04-19 08:41:00,196 Jefferson St, Portland,ME,04101 +178054,AAA Batteries (4-pack),1,2.99,2019-04-05 14:12:00,574 Chestnut St, Austin,TX,73301 +178055,Lightning Charging Cable,1,14.95,2019-04-12 17:26:00,497 Spruce St, San Francisco,CA,94016 +178056,USB-C Charging Cable,1,11.95,2019-04-15 15:27:00,333 Jackson St, Seattle,WA,98101 +178057,AA Batteries (4-pack),1,3.84,2019-04-18 16:22:00,982 Hickory St, Atlanta,GA,30301 +178058,Macbook Pro Laptop,1,1700.0,2019-04-17 17:12:00,437 Lakeview St, San Francisco,CA,94016 +178059,Wired Headphones,1,11.99,2019-04-05 11:18:00,188 Walnut St, Austin,TX,73301 +178060,AAA Batteries (4-pack),1,2.99,2019-04-10 10:23:00,286 North St, Dallas,TX,75001 +178061,Lightning Charging Cable,1,14.95,2019-04-28 15:27:00,219 Highland St, Boston,MA,02215 +178062,AA Batteries (4-pack),1,3.84,2019-04-21 23:19:00,274 Sunset St, Portland,OR,97035 +178063,Lightning Charging Cable,1,14.95,2019-04-06 20:53:00,365 Elm St, Austin,TX,73301 +178064,27in 4K Gaming Monitor,1,389.99,2019-04-20 22:49:00,199 8th St, Seattle,WA,98101 +178065,iPhone,1,700.0,2019-04-11 10:10:00,552 Pine St, Atlanta,GA,30301 +178066,USB-C Charging Cable,1,11.95,2019-04-20 07:06:00,986 Ridge St, San Francisco,CA,94016 +178067,AAA Batteries (4-pack),1,2.99,2019-04-16 23:48:00,395 Hickory St, Atlanta,GA,30301 +178068,AAA Batteries (4-pack),1,2.99,2019-04-15 10:20:00,669 1st St, Portland,OR,97035 +178069,Apple Airpods Headphones,1,150.0,2019-04-22 08:43:00,36 Johnson St, Austin,TX,73301 +178070,Google Phone,1,600.0,2019-04-19 18:41:00,375 Cherry St, Portland,OR,97035 +178071,AA Batteries (4-pack),5,3.84,2019-04-20 11:51:00,79 1st St, San Francisco,CA,94016 +178072,Apple Airpods Headphones,1,150.0,2019-04-26 20:28:00,128 12th St, New York City,NY,10001 +178073,27in FHD Monitor,1,149.99,2019-04-27 21:27:00,863 6th St, Boston,MA,02215 +178074,AAA Batteries (4-pack),2,2.99,2019-04-18 13:00:00,190 14th St, San Francisco,CA,94016 +178075,20in Monitor,1,109.99,2019-04-17 02:20:00,952 Center St, New York City,NY,10001 +178076,20in Monitor,1,109.99,2019-04-19 14:22:00,405 Cherry St, Boston,MA,02215 +178077,ThinkPad Laptop,1,999.99,2019-04-06 03:09:00,771 14th St, San Francisco,CA,94016 +178078,USB-C Charging Cable,2,11.95,2019-04-08 19:31:00,430 14th St, Los Angeles,CA,90001 +178079,Lightning Charging Cable,1,14.95,2019-04-20 10:19:00,203 Pine St, Los Angeles,CA,90001 +178080,27in 4K Gaming Monitor,1,389.99,2019-04-17 05:42:00,128 2nd St, New York City,NY,10001 +178081,34in Ultrawide Monitor,1,379.99,2019-04-11 08:07:00,992 Elm St, Los Angeles,CA,90001 +178082,Wired Headphones,1,11.99,2019-04-06 17:08:00,710 Jefferson St, New York City,NY,10001 +178083,iPhone,1,700.0,2019-04-28 12:26:00,109 Cherry St, San Francisco,CA,94016 +178084,27in FHD Monitor,1,149.99,2019-04-04 16:19:00,833 Main St, Atlanta,GA,30301 +178085,Lightning Charging Cable,2,14.95,2019-04-19 16:51:00,878 Center St, Los Angeles,CA,90001 +178086,USB-C Charging Cable,1,11.95,2019-04-07 12:14:00,843 6th St, Seattle,WA,98101 +178087,Bose SoundSport Headphones,1,99.99,2019-04-30 20:28:00,609 Elm St, Atlanta,GA,30301 +178088,USB-C Charging Cable,1,11.95,2019-04-14 15:05:00,299 13th St, Los Angeles,CA,90001 +178089,USB-C Charging Cable,1,11.95,2019-04-25 15:36:00,715 River St, Los Angeles,CA,90001 +178090,USB-C Charging Cable,1,11.95,2019-04-21 14:49:00,781 Johnson St, Austin,TX,73301 +178091,AA Batteries (4-pack),1,3.84,2019-04-12 17:51:00,991 Center St, Los Angeles,CA,90001 +178092,Lightning Charging Cable,2,14.95,2019-04-11 18:38:00,595 Ridge St, New York City,NY,10001 +178093,Lightning Charging Cable,1,14.95,2019-04-18 17:08:00,495 Madison St, San Francisco,CA,94016 +178094,34in Ultrawide Monitor,1,379.99,2019-04-17 04:39:00,225 4th St, Dallas,TX,75001 +178095,AA Batteries (4-pack),1,3.84,2019-04-27 22:32:00,219 Spruce St, Los Angeles,CA,90001 +178096,Bose SoundSport Headphones,1,99.99,2019-04-29 11:46:00,707 Forest St, Seattle,WA,98101 +178097,Macbook Pro Laptop,1,1700.0,2019-04-03 10:48:00,207 Elm St, Atlanta,GA,30301 +178098,AA Batteries (4-pack),1,3.84,2019-04-23 11:24:00,154 Meadow St, Dallas,TX,75001 +178099,AAA Batteries (4-pack),2,2.99,2019-04-16 16:31:00,304 South St, Boston,MA,02215 +178100,34in Ultrawide Monitor,1,379.99,2019-04-11 21:13:00,713 Wilson St, New York City,NY,10001 +178101,Lightning Charging Cable,1,14.95,2019-04-21 16:32:00,623 Forest St, San Francisco,CA,94016 +178102,27in FHD Monitor,1,149.99,2019-04-20 16:33:00,240 Center St, New York City,NY,10001 +178103,Wired Headphones,1,11.99,2019-04-25 12:08:00,563 Ridge St, San Francisco,CA,94016 +178104,AA Batteries (4-pack),1,3.84,2019-04-01 11:20:00,803 Center St, New York City,NY,10001 +178105,Lightning Charging Cable,1,14.95,2019-04-16 23:05:00,991 West St, Boston,MA,02215 +178106,AAA Batteries (4-pack),1,2.99,2019-04-27 19:11:00,995 Maple St, Seattle,WA,98101 +178106,Wired Headphones,1,11.99,2019-04-27 19:11:00,995 Maple St, Seattle,WA,98101 +178107,20in Monitor,1,109.99,2019-04-02 23:12:00,879 Washington St, New York City,NY,10001 +178108,AAA Batteries (4-pack),1,2.99,2019-04-08 21:42:00,39 Forest St, San Francisco,CA,94016 +178109,27in 4K Gaming Monitor,1,389.99,2019-04-10 19:15:00,389 Highland St, Austin,TX,73301 +178110,LG Dryer,1,600.0,2019-04-17 18:11:00,453 Maple St, San Francisco,CA,94016 +178111,Apple Airpods Headphones,1,150.0,2019-04-29 19:18:00,340 4th St, Portland,OR,97035 +178112,AAA Batteries (4-pack),1,2.99,2019-04-04 12:35:00,67 Chestnut St, Los Angeles,CA,90001 +178113,AAA Batteries (4-pack),1,2.99,2019-04-29 17:05:00,466 Maple St, Boston,MA,02215 +178114,Apple Airpods Headphones,1,150.0,2019-04-02 07:04:00,564 12th St, Boston,MA,02215 +178115,AAA Batteries (4-pack),1,2.99,2019-04-12 16:36:00,524 Cherry St, Seattle,WA,98101 +178116,Wired Headphones,1,11.99,2019-04-28 09:07:00,631 7th St, Boston,MA,02215 +178117,AAA Batteries (4-pack),1,2.99,2019-04-29 16:21:00,277 Sunset St, Boston,MA,02215 +178118,iPhone,1,700.0,2019-04-27 11:48:00,139 Dogwood St, Boston,MA,02215 +178118,AAA Batteries (4-pack),1,2.99,2019-04-27 11:48:00,139 Dogwood St, Boston,MA,02215 +178119,iPhone,1,700.0,2019-04-29 00:48:00,453 9th St, Seattle,WA,98101 +178120,AA Batteries (4-pack),1,3.84,2019-04-10 20:33:00,707 Lake St, Boston,MA,02215 +178121,34in Ultrawide Monitor,1,379.99,2019-04-07 11:25:00,50 West St, New York City,NY,10001 +178122,AAA Batteries (4-pack),3,2.99,2019-04-21 22:22:00,406 Pine St, Boston,MA,02215 +178123,AA Batteries (4-pack),1,3.84,2019-04-14 14:17:00,312 5th St, Portland,ME,04101 +178124,USB-C Charging Cable,1,11.95,2019-04-30 10:20:00,335 Park St, Atlanta,GA,30301 +178125,27in 4K Gaming Monitor,1,389.99,2019-04-21 17:00:00,300 9th St, San Francisco,CA,94016 +178126,USB-C Charging Cable,1,11.95,2019-04-01 16:09:00,44 6th St, San Francisco,CA,94016 +178127,Wired Headphones,1,11.99,2019-04-12 20:31:00,207 Spruce St, Dallas,TX,75001 +178128,USB-C Charging Cable,1,11.95,2019-04-01 22:21:00,512 Ridge St, Portland,OR,97035 +178129,ThinkPad Laptop,1,999.99,2019-04-30 08:19:00,918 Main St, Boston,MA,02215 +178130,Bose SoundSport Headphones,1,99.99,2019-04-23 05:25:00,204 Johnson St, San Francisco,CA,94016 +178131,iPhone,1,700.0,2019-04-29 09:04:00,865 Main St, Atlanta,GA,30301 +178132,AAA Batteries (4-pack),4,2.99,2019-04-18 19:24:00,997 Center St, Boston,MA,02215 +178133,USB-C Charging Cable,1,11.95,2019-04-15 09:13:00,922 Center St, Boston,MA,02215 +178134,Bose SoundSport Headphones,1,99.99,2019-04-07 19:27:00,672 5th St, New York City,NY,10001 +178135,Lightning Charging Cable,1,14.95,2019-04-13 22:31:00,994 Center St, New York City,NY,10001 +178135,AA Batteries (4-pack),2,3.84,2019-04-13 22:31:00,994 Center St, New York City,NY,10001 +178136,USB-C Charging Cable,1,11.95,2019-04-28 16:22:00,168 Washington St, Portland,OR,97035 +178137,Lightning Charging Cable,1,14.95,2019-04-07 05:46:00,679 Church St, Atlanta,GA,30301 +178137,AA Batteries (4-pack),2,3.84,2019-04-07 05:46:00,679 Church St, Atlanta,GA,30301 +178138,34in Ultrawide Monitor,1,379.99,2019-04-15 17:43:00,263 Cherry St, San Francisco,CA,94016 +178139,Wired Headphones,1,11.99,2019-04-06 19:31:00,491 14th St, New York City,NY,10001 +178140,Bose SoundSport Headphones,1,99.99,2019-04-09 16:30:00,930 West St, New York City,NY,10001 +178141,34in Ultrawide Monitor,1,379.99,2019-04-03 12:48:00,662 Dogwood St, San Francisco,CA,94016 +178142,AAA Batteries (4-pack),1,2.99,2019-04-30 18:55:00,757 Lake St, Dallas,TX,75001 +178143,Macbook Pro Laptop,1,1700.0,2019-04-28 13:41:00,268 Forest St, San Francisco,CA,94016 +178144,Apple Airpods Headphones,1,150.0,2019-04-05 14:43:00,515 Pine St, Seattle,WA,98101 +178145,Bose SoundSport Headphones,1,99.99,2019-04-10 21:55:00,4 Meadow St, Portland,OR,97035 +178146,AA Batteries (4-pack),1,3.84,2019-04-07 10:40:00,194 Sunset St, Los Angeles,CA,90001 +178147,Lightning Charging Cable,1,14.95,2019-04-09 18:59:00,862 Church St, Los Angeles,CA,90001 +178148,ThinkPad Laptop,1,999.99,2019-04-24 20:12:00,208 5th St, Seattle,WA,98101 +178149,AAA Batteries (4-pack),2,2.99,2019-04-17 18:40:00,682 Meadow St, Boston,MA,02215 +178150,34in Ultrawide Monitor,1,379.99,2019-04-30 12:35:00,434 South St, San Francisco,CA,94016 +178151,Lightning Charging Cable,1,14.95,2019-04-01 21:28:00,822 North St, Los Angeles,CA,90001 +178152,Apple Airpods Headphones,1,150.0,2019-04-14 16:54:00,184 Church St, Atlanta,GA,30301 +178153,AAA Batteries (4-pack),1,2.99,2019-04-10 05:45:00,476 South St, New York City,NY,10001 +178154,ThinkPad Laptop,1,999.99,2019-04-13 09:48:00,449 Walnut St, Dallas,TX,75001 +178155,Flatscreen TV,1,300.0,2019-04-24 17:47:00,587 Meadow St, San Francisco,CA,94016 +178156,Wired Headphones,1,11.99,2019-04-15 22:25:00,285 Walnut St, Los Angeles,CA,90001 +178157,34in Ultrawide Monitor,1,379.99,2019-04-15 20:56:00,919 Lincoln St, Boston,MA,02215 +178158,Google Phone,1,600.0,2019-04-28 21:13:00,197 Center St, San Francisco,CA,94016 +178158,USB-C Charging Cable,1,11.95,2019-04-28 21:13:00,197 Center St, San Francisco,CA,94016 +178158,Wired Headphones,1,11.99,2019-04-28 21:13:00,197 Center St, San Francisco,CA,94016 +178159,AA Batteries (4-pack),1,3.84,2019-04-30 06:06:00,216 Center St, New York City,NY,10001 +178160,Bose SoundSport Headphones,1,99.99,2019-04-03 20:01:00,465 Hickory St, Los Angeles,CA,90001 +178161,Bose SoundSport Headphones,1,99.99,2019-04-04 10:16:00,212 Jackson St, Seattle,WA,98101 +178162,iPhone,1,700.0,2019-04-09 10:49:00,888 North St, Seattle,WA,98101 +178162,Lightning Charging Cable,1,14.95,2019-04-09 10:49:00,888 North St, Seattle,WA,98101 +178163,34in Ultrawide Monitor,1,379.99,2019-04-17 17:18:00,967 12th St, San Francisco,CA,94016 +178164,Lightning Charging Cable,1,14.95,2019-04-20 12:31:00,262 Lakeview St, New York City,NY,10001 +178165,Wired Headphones,1,11.99,2019-04-17 13:16:00,688 Center St, Austin,TX,73301 +178166,Flatscreen TV,1,300.0,2019-04-03 15:01:00,66 Adams St, Dallas,TX,75001 +178167,AA Batteries (4-pack),2,3.84,2019-04-30 11:43:00,5 Dogwood St, Boston,MA,02215 +178168,AA Batteries (4-pack),1,3.84,2019-04-21 14:48:00,583 Washington St, New York City,NY,10001 +178168,Macbook Pro Laptop,1,1700.0,2019-04-21 14:48:00,583 Washington St, New York City,NY,10001 +178169,AA Batteries (4-pack),1,3.84,2019-04-05 17:29:00,721 Lincoln St, Atlanta,GA,30301 +178170,Apple Airpods Headphones,1,150.0,2019-04-04 16:26:00,678 Maple St, Boston,MA,02215 +178171,Wired Headphones,1,11.99,2019-04-19 06:35:00,588 Chestnut St, Los Angeles,CA,90001 +178172,USB-C Charging Cable,1,11.95,2019-04-12 18:09:00,346 13th St, San Francisco,CA,94016 +178173,Apple Airpods Headphones,1,150.0,2019-04-14 09:09:00,38 Madison St, Atlanta,GA,30301 +178174,AAA Batteries (4-pack),1,2.99,2019-04-11 19:57:00,689 Forest St, Atlanta,GA,30301 +178175,Lightning Charging Cable,1,14.95,2019-04-01 11:28:00,402 North St, San Francisco,CA,94016 +178176,AA Batteries (4-pack),1,3.84,2019-04-21 15:54:00,940 River St, Dallas,TX,75001 +178177,Lightning Charging Cable,1,14.95,2019-04-02 10:56:00,694 Madison St, San Francisco,CA,94016 +178178,AAA Batteries (4-pack),1,2.99,2019-04-08 12:30:00,213 4th St, Dallas,TX,75001 +178179,Lightning Charging Cable,1,14.95,2019-04-02 08:02:00,414 Hill St, Austin,TX,73301 +178180,AAA Batteries (4-pack),1,2.99,2019-04-12 06:14:00,158 Highland St, New York City,NY,10001 +178181,Apple Airpods Headphones,1,150.0,2019-04-29 18:28:00,996 6th St, Dallas,TX,75001 +178182,20in Monitor,1,109.99,2019-04-28 22:20:00,179 River St, Austin,TX,73301 +178183,AA Batteries (4-pack),2,3.84,2019-04-06 15:05:00,451 Meadow St, New York City,NY,10001 +178184,Bose SoundSport Headphones,1,99.99,2019-04-05 19:25:00,739 Spruce St, Portland,ME,04101 +178185,Bose SoundSport Headphones,1,99.99,2019-04-14 08:23:00,153 9th St, Los Angeles,CA,90001 +178186,Wired Headphones,1,11.99,2019-04-10 23:28:00,596 12th St, Los Angeles,CA,90001 +178187,20in Monitor,1,109.99,2019-04-25 08:32:00,878 Elm St, Dallas,TX,75001 +178188,ThinkPad Laptop,1,999.99,2019-04-18 14:14:00,482 13th St, New York City,NY,10001 +178189,AA Batteries (4-pack),1,3.84,2019-04-12 13:05:00,161 Hill St, New York City,NY,10001 +178190,Vareebadd Phone,1,400.0,2019-04-02 18:10:00,811 14th St, Atlanta,GA,30301 +178190,Wired Headphones,1,11.99,2019-04-02 18:10:00,811 14th St, Atlanta,GA,30301 +178191,Lightning Charging Cable,1,14.95,2019-04-27 10:35:00,262 Sunset St, Boston,MA,02215 +178192,Wired Headphones,1,11.99,2019-04-21 01:43:00,341 5th St, Boston,MA,02215 +178193,USB-C Charging Cable,1,11.95,2019-04-03 23:06:00,725 Jefferson St, San Francisco,CA,94016 +178194,ThinkPad Laptop,1,999.99,2019-04-21 11:18:00,706 Adams St, Los Angeles,CA,90001 +178195,Google Phone,1,600.0,2019-04-02 13:21:00,881 Lakeview St, San Francisco,CA,94016 +178196,Wired Headphones,1,11.99,2019-04-24 17:59:00,471 2nd St, Dallas,TX,75001 +178197,AA Batteries (4-pack),1,3.84,2019-04-27 16:44:00,216 Elm St, Atlanta,GA,30301 +178198,27in FHD Monitor,1,149.99,2019-04-27 13:14:00,313 Pine St, New York City,NY,10001 +178199,Lightning Charging Cable,1,14.95,2019-04-21 09:57:00,842 Jefferson St, Los Angeles,CA,90001 +178200,USB-C Charging Cable,1,11.95,2019-04-02 14:18:00,981 7th St, Boston,MA,02215 +178201,34in Ultrawide Monitor,1,379.99,2019-04-07 05:37:00,253 8th St, Atlanta,GA,30301 +178202,Apple Airpods Headphones,1,150.0,2019-04-15 06:50:00,5 River St, Seattle,WA,98101 +178203,27in 4K Gaming Monitor,1,389.99,2019-04-16 08:49:00,629 Main St, Portland,OR,97035 +178204,34in Ultrawide Monitor,1,379.99,2019-04-18 20:40:00,618 Elm St, San Francisco,CA,94016 +178205,AAA Batteries (4-pack),2,2.99,2019-04-28 11:36:00,599 North St, Portland,OR,97035 +178206,ThinkPad Laptop,1,999.99,2019-04-06 20:55:00,929 Elm St, Portland,OR,97035 +178207,Lightning Charging Cable,2,14.95,2019-04-28 11:21:00,956 Walnut St, Los Angeles,CA,90001 +178208,Apple Airpods Headphones,1,150.0,2019-04-22 11:03:00,127 14th St, San Francisco,CA,94016 +178209,Bose SoundSport Headphones,1,99.99,2019-04-13 07:15:00,512 9th St, New York City,NY,10001 +178210,Wired Headphones,1,11.99,2019-04-26 17:32:00,481 Johnson St, New York City,NY,10001 +178211,27in FHD Monitor,1,149.99,2019-04-18 00:46:00,821 South St, San Francisco,CA,94016 +178212,AAA Batteries (4-pack),1,2.99,2019-04-17 10:03:00,669 North St, San Francisco,CA,94016 +178213,USB-C Charging Cable,1,11.95,2019-04-12 21:43:00,617 River St, Austin,TX,73301 +178214,27in FHD Monitor,1,149.99,2019-04-14 09:49:00,209 12th St, Seattle,WA,98101 +178215,USB-C Charging Cable,1,11.95,2019-04-15 19:32:00,553 Maple St, Los Angeles,CA,90001 +178216,AA Batteries (4-pack),1,3.84,2019-04-20 11:37:00,46 11th St, Seattle,WA,98101 +178217,AAA Batteries (4-pack),5,2.99,2019-04-01 10:09:00,721 Park St, Los Angeles,CA,90001 +178218,USB-C Charging Cable,1,11.95,2019-04-04 12:19:00,364 Madison St, Seattle,WA,98101 +178219,Wired Headphones,2,11.99,2019-04-28 21:30:00,487 Willow St, Austin,TX,73301 +178220,Lightning Charging Cable,1,14.95,2019-04-21 20:41:00,662 Johnson St, Dallas,TX,75001 +178221,Flatscreen TV,1,300.0,2019-04-21 11:21:00,722 13th St, Boston,MA,02215 +178221,Lightning Charging Cable,1,14.95,2019-04-21 11:21:00,722 13th St, Boston,MA,02215 +178222,20in Monitor,1,109.99,2019-04-14 12:04:00,453 Park St, New York City,NY,10001 +178223,Bose SoundSport Headphones,1,99.99,2019-04-03 14:14:00,138 Jefferson St, Dallas,TX,75001 +178224,Wired Headphones,1,11.99,2019-04-28 05:37:00,865 Pine St, Los Angeles,CA,90001 +178225,27in FHD Monitor,1,149.99,2019-04-06 09:55:00,635 14th St, San Francisco,CA,94016 +178226,Bose SoundSport Headphones,1,99.99,2019-04-09 11:57:00,142 Cherry St, Seattle,WA,98101 +178227,AA Batteries (4-pack),2,3.84,2019-04-11 10:51:00,527 9th St, San Francisco,CA,94016 +178228,ThinkPad Laptop,1,999.99,2019-04-14 00:10:00,163 Jefferson St, Atlanta,GA,30301 +178229,Wired Headphones,1,11.99,2019-04-17 09:22:00,608 7th St, Los Angeles,CA,90001 +178230,AA Batteries (4-pack),2,3.84,2019-04-12 14:40:00,983 Lincoln St, San Francisco,CA,94016 +178231,AAA Batteries (4-pack),1,2.99,2019-04-02 21:05:00,581 Church St, San Francisco,CA,94016 +178232,AA Batteries (4-pack),1,3.84,2019-04-28 18:16:00,397 North St, Austin,TX,73301 +178233,Lightning Charging Cable,1,14.95,2019-04-28 18:14:00,885 Walnut St, San Francisco,CA,94016 +178234,Lightning Charging Cable,1,14.95,2019-04-13 15:25:00,734 Lincoln St, Dallas,TX,75001 +178235,Lightning Charging Cable,1,14.95,2019-04-09 06:43:00,135 Church St, San Francisco,CA,94016 +178236,USB-C Charging Cable,1,11.95,2019-04-22 13:35:00,193 13th St, Seattle,WA,98101 +178237,Apple Airpods Headphones,1,150.0,2019-04-22 19:08:00,646 9th St, Portland,OR,97035 +178238,iPhone,1,700.0,2019-04-23 22:09:00,392 13th St, San Francisco,CA,94016 +178239,Flatscreen TV,1,300.0,2019-04-01 14:57:00,192 Madison St, Dallas,TX,75001 +178240,Lightning Charging Cable,1,14.95,2019-04-12 21:36:00,494 11th St, Los Angeles,CA,90001 +178241,Lightning Charging Cable,2,14.95,2019-04-07 14:41:00,488 Forest St, Seattle,WA,98101 +178242,iPhone,1,700.0,2019-04-17 15:29:00,681 2nd St, Austin,TX,73301 +178242,Lightning Charging Cable,1,14.95,2019-04-17 15:29:00,681 2nd St, Austin,TX,73301 +178243,Flatscreen TV,1,300.0,2019-04-12 19:45:00,206 Adams St, Dallas,TX,75001 +178244,Wired Headphones,1,11.99,2019-04-30 13:50:00,183 Willow St, New York City,NY,10001 +178245,Wired Headphones,1,11.99,2019-04-09 16:03:00,313 Elm St, San Francisco,CA,94016 +178246,AA Batteries (4-pack),1,3.84,2019-04-30 21:01:00,135 Madison St, New York City,NY,10001 +178247,Lightning Charging Cable,1,14.95,2019-04-22 14:34:00,435 Willow St, San Francisco,CA,94016 +178248,Wired Headphones,1,11.99,2019-04-15 16:14:00,406 Walnut St, New York City,NY,10001 +178249,34in Ultrawide Monitor,1,379.99,2019-04-02 13:08:00,615 Adams St, San Francisco,CA,94016 +178250,Apple Airpods Headphones,1,150.0,2019-04-16 20:34:00,409 Willow St, Seattle,WA,98101 +178251,Apple Airpods Headphones,1,150.0,2019-04-13 21:29:00,878 Highland St, Dallas,TX,75001 +178252,Wired Headphones,1,11.99,2019-04-13 23:12:00,637 5th St, Seattle,WA,98101 +178253,AAA Batteries (4-pack),2,2.99,2019-04-06 08:56:00,847 Ridge St, Seattle,WA,98101 +178254,USB-C Charging Cable,1,11.95,2019-04-15 12:50:00,829 Ridge St, Los Angeles,CA,90001 +178255,Lightning Charging Cable,1,14.95,2019-04-17 00:44:00,106 Jackson St, Los Angeles,CA,90001 +178256,27in 4K Gaming Monitor,1,389.99,2019-04-25 22:50:00,308 5th St, San Francisco,CA,94016 +178257,20in Monitor,1,109.99,2019-04-11 19:47:00,954 Washington St, Seattle,WA,98101 +178258,iPhone,1,700.0,2019-04-22 01:00:00,479 9th St, Los Angeles,CA,90001 +178258,Apple Airpods Headphones,1,150.0,2019-04-22 01:00:00,479 9th St, Los Angeles,CA,90001 +178259,Apple Airpods Headphones,1,150.0,2019-04-15 01:06:00,988 14th St, New York City,NY,10001 +178260,Apple Airpods Headphones,1,150.0,2019-04-14 19:24:00,964 Jefferson St, Boston,MA,02215 +178261,AAA Batteries (4-pack),2,2.99,2019-04-04 16:42:00,552 Center St, San Francisco,CA,94016 +178262,Lightning Charging Cable,1,14.95,2019-04-29 19:11:00,948 6th St, Portland,OR,97035 +178263,Bose SoundSport Headphones,1,99.99,2019-04-09 19:27:00,134 Adams St, Los Angeles,CA,90001 +178264,USB-C Charging Cable,1,11.95,2019-04-09 10:45:00,403 Elm St, Seattle,WA,98101 +178265,AAA Batteries (4-pack),2,2.99,2019-04-05 10:32:00,262 South St, Seattle,WA,98101 +178266,AAA Batteries (4-pack),3,2.99,2019-04-15 18:16:00,367 Pine St, Boston,MA,02215 +178267,Google Phone,1,600.0,2019-04-17 11:51:00,118 Lakeview St, Los Angeles,CA,90001 +178268,Flatscreen TV,1,300.0,2019-04-22 21:00:00,315 Willow St, San Francisco,CA,94016 +178269,Lightning Charging Cable,1,14.95,2019-04-14 14:03:00,998 1st St, Los Angeles,CA,90001 +178270,USB-C Charging Cable,1,11.95,2019-04-10 15:44:00,839 Elm St, San Francisco,CA,94016 +178271,Wired Headphones,1,11.99,2019-04-30 14:59:00,906 Hickory St, Portland,OR,97035 +178272,ThinkPad Laptop,1,999.99,2019-04-17 12:22:00,94 Park St, Los Angeles,CA,90001 +178273,20in Monitor,1,109.99,2019-04-11 08:55:00,308 14th St, Austin,TX,73301 +178274,Wired Headphones,1,11.99,2019-04-24 13:26:00,894 Hill St, Boston,MA,02215 +178275,Lightning Charging Cable,1,14.95,2019-04-02 21:11:00,841 12th St, San Francisco,CA,94016 +178276,Lightning Charging Cable,1,14.95,2019-04-22 23:24:00,954 4th St, Los Angeles,CA,90001 +178277,20in Monitor,1,109.99,2019-04-29 19:16:00,492 12th St, Dallas,TX,75001 +178278,Vareebadd Phone,1,400.0,2019-04-14 22:22:00,248 Wilson St, Portland,OR,97035 +178279,ThinkPad Laptop,1,999.99,2019-04-29 11:21:00,163 1st St, Los Angeles,CA,90001 +178280,iPhone,1,700.0,2019-04-08 12:34:00,806 Madison St, San Francisco,CA,94016 +178280,Lightning Charging Cable,1,14.95,2019-04-08 12:34:00,806 Madison St, San Francisco,CA,94016 +178281,Apple Airpods Headphones,1,150.0,2019-04-21 15:07:00,107 12th St, San Francisco,CA,94016 +178282,Bose SoundSport Headphones,1,99.99,2019-04-03 17:13:00,891 10th St, Atlanta,GA,30301 +178283,Flatscreen TV,1,300.0,2019-04-10 15:16:00,353 Dogwood St, San Francisco,CA,94016 +178284,34in Ultrawide Monitor,1,379.99,2019-04-10 19:42:00,243 Hill St, San Francisco,CA,94016 +178285,AA Batteries (4-pack),1,3.84,2019-04-08 18:41:00,876 Dogwood St, Austin,TX,73301 +178286,USB-C Charging Cable,2,11.95,2019-04-19 23:29:00,998 11th St, Atlanta,GA,30301 +178287,Lightning Charging Cable,1,14.95,2019-04-21 01:35:00,59 Ridge St, San Francisco,CA,94016 +178288,Lightning Charging Cable,1,14.95,2019-04-03 03:22:00,102 8th St, Dallas,TX,75001 +178289,Wired Headphones,1,11.99,2019-04-28 14:17:00,58 12th St, Seattle,WA,98101 +178290,Wired Headphones,2,11.99,2019-04-09 17:37:00,647 Cedar St, Portland,ME,04101 +178290,ThinkPad Laptop,1,999.99,2019-04-09 17:37:00,647 Cedar St, Portland,ME,04101 +178291,Lightning Charging Cable,1,14.95,2019-04-22 07:50:00,911 Forest St, Austin,TX,73301 +178292,USB-C Charging Cable,1,11.95,2019-04-03 21:47:00,102 Wilson St, New York City,NY,10001 +178293,USB-C Charging Cable,1,11.95,2019-04-08 12:59:00,871 North St, San Francisco,CA,94016 +178294,20in Monitor,1,109.99,2019-04-04 21:40:00,336 2nd St, Dallas,TX,75001 +178295,Wired Headphones,1,11.99,2019-04-23 23:36:00,479 Church St, Austin,TX,73301 +178296,AAA Batteries (4-pack),4,2.99,2019-04-12 06:20:00,523 Cherry St, Los Angeles,CA,90001 +178297,27in 4K Gaming Monitor,1,389.99,2019-04-05 22:56:00,398 Adams St, Dallas,TX,75001 +178298,Bose SoundSport Headphones,1,99.99,2019-04-09 20:35:00,178 Elm St, New York City,NY,10001 +178299,AA Batteries (4-pack),1,3.84,2019-04-10 18:11:00,255 West St, New York City,NY,10001 +178300,AA Batteries (4-pack),1,3.84,2019-04-05 20:01:00,391 Highland St, Los Angeles,CA,90001 +178301,AA Batteries (4-pack),2,3.84,2019-04-20 22:28:00,927 River St, Boston,MA,02215 +178302,AA Batteries (4-pack),1,3.84,2019-04-03 12:05:00,292 Jackson St, Dallas,TX,75001 +178303,Flatscreen TV,1,300.0,2019-04-10 15:46:00,799 Sunset St, San Francisco,CA,94016 +178304,AA Batteries (4-pack),4,3.84,2019-04-11 15:13:00,512 Jefferson St, Boston,MA,02215 +178305,Lightning Charging Cable,1,14.95,2019-04-29 20:50:00,742 9th St, Los Angeles,CA,90001 +178306,Wired Headphones,1,11.99,2019-04-06 06:14:00,346 10th St, Los Angeles,CA,90001 +178307,Wired Headphones,1,11.99,2019-04-03 10:15:00,391 Maple St, New York City,NY,10001 +178308,Wired Headphones,1,11.99,2019-04-02 13:43:00,54 Lincoln St, San Francisco,CA,94016 +178309,AAA Batteries (4-pack),2,2.99,2019-04-27 12:09:00,770 Chestnut St, San Francisco,CA,94016 +178310,Apple Airpods Headphones,1,150.0,2019-04-24 10:28:00,501 10th St, Austin,TX,73301 +178311,AAA Batteries (4-pack),2,2.99,2019-04-04 12:14:00,992 Walnut St, Los Angeles,CA,90001 +178312,Apple Airpods Headphones,1,150.0,2019-04-13 20:01:00,929 Lake St, San Francisco,CA,94016 +178313,iPhone,1,700.0,2019-04-11 12:27:00,686 4th St, Boston,MA,02215 +178314,Lightning Charging Cable,1,14.95,2019-04-22 00:28:00,6 Lakeview St, Los Angeles,CA,90001 +178315,27in FHD Monitor,1,149.99,2019-04-22 12:54:00,827 4th St, Seattle,WA,98101 +178316,Wired Headphones,1,11.99,2019-04-23 23:23:00,775 5th St, Los Angeles,CA,90001 +178317,Google Phone,1,600.0,2019-04-19 08:52:00,566 Spruce St, San Francisco,CA,94016 +178318,Lightning Charging Cable,1,14.95,2019-04-24 19:23:00,209 Forest St, San Francisco,CA,94016 +178319,Lightning Charging Cable,1,14.95,2019-04-05 20:18:00,64 Cherry St, Portland,OR,97035 +178320,AA Batteries (4-pack),1,3.84,2019-04-06 12:27:00,198 8th St, San Francisco,CA,94016 +178321,AA Batteries (4-pack),1,3.84,2019-04-22 16:55:00,594 7th St, New York City,NY,10001 +178322,Apple Airpods Headphones,1,150.0,2019-04-05 23:46:00,686 8th St, San Francisco,CA,94016 +178323,USB-C Charging Cable,1,11.95,2019-04-04 16:39:00,263 Sunset St, Los Angeles,CA,90001 +178324,Apple Airpods Headphones,1,150.0,2019-04-26 14:24:00,388 Johnson St, San Francisco,CA,94016 +178325,Vareebadd Phone,1,400.0,2019-04-06 23:09:00,762 1st St, Dallas,TX,75001 +178326,Google Phone,1,600.0,2019-04-20 21:21:00,81 14th St, New York City,NY,10001 +178327,Apple Airpods Headphones,1,150.0,2019-04-10 15:55:00,664 Church St, San Francisco,CA,94016 +178328,Google Phone,1,600.0,2019-04-16 08:18:00,701 South St, Boston,MA,02215 +178329,AA Batteries (4-pack),1,3.84,2019-04-25 17:40:00,66 Cherry St, Los Angeles,CA,90001 +178330,AA Batteries (4-pack),1,3.84,2019-04-12 06:56:00,218 Hill St, Dallas,TX,75001 +178331,Bose SoundSport Headphones,1,99.99,2019-04-16 10:16:00,427 Church St, New York City,NY,10001 +178332,Wired Headphones,1,11.99,2019-04-16 18:55:00,246 Main St, San Francisco,CA,94016 +178333,Wired Headphones,2,11.99,2019-04-14 19:03:00,526 Madison St, San Francisco,CA,94016 +178334,AA Batteries (4-pack),2,3.84,2019-04-16 08:39:00,694 Lakeview St, Boston,MA,02215 +178335,AAA Batteries (4-pack),1,2.99,2019-04-22 13:27:00,452 13th St, San Francisco,CA,94016 +178336,34in Ultrawide Monitor,1,379.99,2019-04-04 20:43:00,756 Jackson St, Portland,OR,97035 +178337,Apple Airpods Headphones,1,150.0,2019-04-27 21:47:00,367 Lakeview St, Atlanta,GA,30301 +178338,AAA Batteries (4-pack),1,2.99,2019-04-26 14:16:00,230 2nd St, San Francisco,CA,94016 +178339,Bose SoundSport Headphones,1,99.99,2019-04-22 21:28:00,838 Elm St, Boston,MA,02215 +178340,AA Batteries (4-pack),3,3.84,2019-04-04 18:20:00,390 Johnson St, New York City,NY,10001 +178341,Vareebadd Phone,1,400.0,2019-04-07 15:44:00,188 8th St, Dallas,TX,75001 +178342,Wired Headphones,1,11.99,2019-04-19 11:52:00,852 Meadow St, Seattle,WA,98101 +178343,Google Phone,1,600.0,2019-04-23 22:16:00,838 Cherry St, Los Angeles,CA,90001 +178344,Wired Headphones,1,11.99,2019-04-24 11:24:00,289 Walnut St, San Francisco,CA,94016 +178345,LG Washing Machine,1,600.0,2019-04-04 15:16:00,545 12th St, Atlanta,GA,30301 +178346,34in Ultrawide Monitor,1,379.99,2019-04-14 08:59:00,417 Main St, San Francisco,CA,94016 +178347,27in FHD Monitor,1,149.99,2019-04-09 20:27:00,295 Maple St, San Francisco,CA,94016 +178348,AA Batteries (4-pack),2,3.84,2019-04-13 21:50:00,779 7th St, Seattle,WA,98101 +178349,AA Batteries (4-pack),1,3.84,2019-04-28 17:21:00,643 Church St, Los Angeles,CA,90001 +178350,AA Batteries (4-pack),1,3.84,2019-04-15 20:49:00,771 13th St, Boston,MA,02215 +178351,USB-C Charging Cable,1,11.95,2019-04-11 09:04:00,260 Hill St, Seattle,WA,98101 +178352,AA Batteries (4-pack),1,3.84,2019-04-03 13:58:00,916 Highland St, Los Angeles,CA,90001 +178353,Apple Airpods Headphones,1,150.0,2019-04-18 11:40:00,176 Church St, Seattle,WA,98101 +178354,Google Phone,1,600.0,2019-04-28 13:56:00,401 Lake St, Seattle,WA,98101 +178355,27in 4K Gaming Monitor,1,389.99,2019-04-29 21:08:00,171 Madison St, San Francisco,CA,94016 +178356,Bose SoundSport Headphones,1,99.99,2019-04-05 09:03:00,207 10th St, San Francisco,CA,94016 +178357,27in 4K Gaming Monitor,1,389.99,2019-04-29 17:40:00,398 1st St, San Francisco,CA,94016 +178358,Flatscreen TV,1,300.0,2019-04-05 17:20:00,883 South St, Seattle,WA,98101 +178359,Wired Headphones,1,11.99,2019-04-13 08:56:00,510 Jefferson St, San Francisco,CA,94016 +178360,Apple Airpods Headphones,1,150.0,2019-04-27 20:20:00,843 14th St, Los Angeles,CA,90001 +178361,Lightning Charging Cable,1,14.95,2019-04-06 07:45:00,170 10th St, Austin,TX,73301 +178362,AA Batteries (4-pack),1,3.84,2019-04-16 15:34:00,713 Spruce St, Seattle,WA,98101 +178363,34in Ultrawide Monitor,1,379.99,2019-04-25 20:45:00,450 Lincoln St, Los Angeles,CA,90001 +178364,iPhone,1,700.0,2019-04-16 10:21:00,754 Sunset St, Portland,OR,97035 +178365,Google Phone,1,600.0,2019-04-10 17:39:00,413 South St, New York City,NY,10001 +178366,Wired Headphones,1,11.99,2019-04-08 12:23:00,478 7th St, Los Angeles,CA,90001 +178367,AAA Batteries (4-pack),1,2.99,2019-04-13 18:01:00,38 Washington St, San Francisco,CA,94016 +178368,AAA Batteries (4-pack),2,2.99,2019-04-27 07:15:00,209 Madison St, Austin,TX,73301 +178369,20in Monitor,1,109.99,2019-04-20 10:55:00,808 7th St, San Francisco,CA,94016 +178370,27in FHD Monitor,1,149.99,2019-04-14 13:40:00,935 Cedar St, New York City,NY,10001 +178371,USB-C Charging Cable,1,11.95,2019-04-14 19:47:00,294 Dogwood St, Atlanta,GA,30301 +178372,USB-C Charging Cable,1,11.95,2019-04-14 15:02:00,256 West St, Portland,OR,97035 +178373,34in Ultrawide Monitor,1,379.99,2019-04-08 06:44:00,372 10th St, Los Angeles,CA,90001 +178374,Lightning Charging Cable,1,14.95,2019-04-02 20:56:00,981 Dogwood St, Los Angeles,CA,90001 +178375,Apple Airpods Headphones,1,150.0,2019-04-20 10:24:00,769 4th St, New York City,NY,10001 +178376,Apple Airpods Headphones,1,150.0,2019-04-28 22:39:00,385 Lincoln St, Boston,MA,02215 +178377,iPhone,1,700.0,2019-04-20 04:12:00,296 10th St, San Francisco,CA,94016 +178378,AAA Batteries (4-pack),1,2.99,2019-04-04 23:59:00,623 2nd St, Boston,MA,02215 +178379,Wired Headphones,1,11.99,2019-04-13 20:55:00,722 Chestnut St, Los Angeles,CA,90001 +178380,Wired Headphones,1,11.99,2019-04-20 12:55:00,418 Johnson St, Atlanta,GA,30301 +178381,27in FHD Monitor,1,149.99,2019-04-26 13:24:00,427 Center St, Austin,TX,73301 +178382,USB-C Charging Cable,1,11.95,2019-04-13 18:21:00,573 Church St, Atlanta,GA,30301 +178383,USB-C Charging Cable,1,11.95,2019-04-06 21:00:00,771 Sunset St, Boston,MA,02215 +178384,Wired Headphones,2,11.99,2019-04-01 13:12:00,545 Ridge St, Austin,TX,73301 +178385,ThinkPad Laptop,1,999.99,2019-04-18 14:18:00,941 Walnut St, Seattle,WA,98101 +178386,34in Ultrawide Monitor,1,379.99,2019-04-04 12:10:00,255 South St, San Francisco,CA,94016 +178387,Wired Headphones,1,11.99,2019-04-04 22:52:00,302 2nd St, Seattle,WA,98101 +178388,USB-C Charging Cable,1,11.95,2019-04-04 16:16:00,218 10th St, Dallas,TX,75001 +178389,USB-C Charging Cable,1,11.95,2019-04-18 17:03:00,403 Lakeview St, Seattle,WA,98101 +178390,34in Ultrawide Monitor,1,379.99,2019-04-01 22:49:00,530 Center St, San Francisco,CA,94016 +178391,AAA Batteries (4-pack),4,2.99,2019-04-23 08:16:00,324 12th St, New York City,NY,10001 +178392,USB-C Charging Cable,1,11.95,2019-04-29 16:17:00,287 Lincoln St, New York City,NY,10001 +178393,34in Ultrawide Monitor,1,379.99,2019-04-22 10:07:00,481 Adams St, Seattle,WA,98101 +178394,Google Phone,1,600.0,2019-04-03 11:16:00,768 Wilson St, Atlanta,GA,30301 +178395,Wired Headphones,1,11.99,2019-04-10 13:06:00,117 Willow St, Los Angeles,CA,90001 +178396,Wired Headphones,1,11.99,2019-04-08 15:19:00,573 Wilson St, Seattle,WA,98101 +178397,USB-C Charging Cable,1,11.95,2019-04-16 12:32:00,372 Elm St, Dallas,TX,75001 +178398,USB-C Charging Cable,1,11.95,2019-04-06 20:42:00,254 Park St, Atlanta,GA,30301 +178399,Lightning Charging Cable,1,14.95,2019-04-23 15:14:00,521 Hill St, Los Angeles,CA,90001 +178400,USB-C Charging Cable,1,11.95,2019-04-07 17:37:00,396 11th St, Dallas,TX,75001 +178401,AA Batteries (4-pack),1,3.84,2019-04-04 00:03:00,683 South St, Portland,OR,97035 +178402,27in 4K Gaming Monitor,1,389.99,2019-04-15 20:05:00,420 Washington St, Austin,TX,73301 +178403,Google Phone,1,600.0,2019-04-05 01:07:00,665 Spruce St, New York City,NY,10001 +178404,Bose SoundSport Headphones,1,99.99,2019-04-06 21:10:00,425 2nd St, Seattle,WA,98101 +178404,USB-C Charging Cable,1,11.95,2019-04-06 21:10:00,425 2nd St, Seattle,WA,98101 +178405,Wired Headphones,1,11.99,2019-04-15 09:16:00,742 Johnson St, San Francisco,CA,94016 +178406,27in 4K Gaming Monitor,1,389.99,2019-04-13 19:07:00,649 1st St, Los Angeles,CA,90001 +178407,Lightning Charging Cable,1,14.95,2019-04-01 06:14:00,384 4th St, Los Angeles,CA,90001 +178408,AAA Batteries (4-pack),1,2.99,2019-04-20 22:30:00,116 Hickory St, Seattle,WA,98101 +178409,Lightning Charging Cable,1,14.95,2019-04-19 19:32:00,117 Hickory St, Portland,OR,97035 +178410,34in Ultrawide Monitor,1,379.99,2019-04-29 20:32:00,671 North St, Los Angeles,CA,90001 +178411,Bose SoundSport Headphones,1,99.99,2019-04-29 10:33:00,518 West St, San Francisco,CA,94016 +178412,Vareebadd Phone,1,400.0,2019-04-05 18:58:00,743 Forest St, New York City,NY,10001 +178412,Wired Headphones,1,11.99,2019-04-05 18:58:00,743 Forest St, New York City,NY,10001 +178413,ThinkPad Laptop,1,999.99,2019-04-21 19:10:00,629 Maple St, San Francisco,CA,94016 +178414,Lightning Charging Cable,1,14.95,2019-04-14 09:02:00,881 Jefferson St, Los Angeles,CA,90001 +178415,Google Phone,1,600.0,2019-04-08 20:25:00,540 Washington St, New York City,NY,10001 +178416,AAA Batteries (4-pack),1,2.99,2019-04-27 18:19:00,232 Lake St, Los Angeles,CA,90001 +178417,AAA Batteries (4-pack),2,2.99,2019-04-11 08:05:00,363 Lake St, Boston,MA,02215 +178418,AAA Batteries (4-pack),5,2.99,2019-04-26 11:09:00,62 Pine St, San Francisco,CA,94016 +178419,Lightning Charging Cable,1,14.95,2019-04-18 10:55:00,16 Willow St, Atlanta,GA,30301 +178420,USB-C Charging Cable,1,11.95,2019-04-01 23:13:00,297 Spruce St, New York City,NY,10001 +178421,Flatscreen TV,1,300.0,2019-04-07 13:25:00,56 5th St, San Francisco,CA,94016 +178422,Macbook Pro Laptop,1,1700.0,2019-04-14 19:16:00,236 North St, Dallas,TX,75001 +178423,Google Phone,1,600.0,2019-04-08 21:08:00,402 Church St, San Francisco,CA,94016 +178424,AAA Batteries (4-pack),1,2.99,2019-04-15 13:59:00,871 1st St, Portland,OR,97035 +178425,Apple Airpods Headphones,1,150.0,2019-04-16 22:51:00,50 Adams St, San Francisco,CA,94016 +178426,Lightning Charging Cable,1,14.95,2019-04-02 15:34:00,53 Forest St, New York City,NY,10001 +178427,Lightning Charging Cable,1,14.95,2019-04-07 17:53:00,905 Main St, New York City,NY,10001 +178428,Apple Airpods Headphones,1,150.0,2019-04-21 06:48:00,102 Ridge St, Portland,OR,97035 +178429,Lightning Charging Cable,1,14.95,2019-04-17 19:12:00,560 Madison St, Dallas,TX,75001 +178430,USB-C Charging Cable,2,11.95,2019-04-24 13:25:00,254 8th St, Austin,TX,73301 +178431,Apple Airpods Headphones,1,150.0,2019-04-18 22:07:00,74 5th St, Portland,OR,97035 +178432,Bose SoundSport Headphones,1,99.99,2019-04-13 14:17:00,40 12th St, Seattle,WA,98101 +178432,USB-C Charging Cable,1,11.95,2019-04-13 14:17:00,40 12th St, Seattle,WA,98101 +178433,Lightning Charging Cable,1,14.95,2019-04-17 12:36:00,550 Madison St, San Francisco,CA,94016 +178434,Lightning Charging Cable,2,14.95,2019-04-13 19:39:00,252 Washington St, Los Angeles,CA,90001 +178435,27in 4K Gaming Monitor,1,389.99,2019-04-20 22:31:00,509 Chestnut St, Boston,MA,02215 +178436,USB-C Charging Cable,1,11.95,2019-04-25 18:11:00,72 Hickory St, San Francisco,CA,94016 +178437,Apple Airpods Headphones,1,150.0,2019-04-16 21:26:00,271 Elm St, Los Angeles,CA,90001 +178438,Apple Airpods Headphones,1,150.0,2019-04-25 18:46:00,364 5th St, New York City,NY,10001 +178439,Bose SoundSport Headphones,1,99.99,2019-04-21 16:59:00,527 Ridge St, Austin,TX,73301 +178440,Bose SoundSport Headphones,1,99.99,2019-04-08 20:44:00,897 12th St, New York City,NY,10001 +178441,Bose SoundSport Headphones,1,99.99,2019-04-12 13:54:00,986 Johnson St, San Francisco,CA,94016 +178442,AA Batteries (4-pack),2,3.84,2019-04-26 09:07:00,338 Willow St, Austin,TX,73301 +178443,Bose SoundSport Headphones,1,99.99,2019-04-13 13:52:00,727 Center St, Los Angeles,CA,90001 +178444,AAA Batteries (4-pack),2,2.99,2019-04-28 02:11:00,76 Madison St, Los Angeles,CA,90001 +178445,Wired Headphones,1,11.99,2019-04-27 22:27:00,780 6th St, Boston,MA,02215 +178446,Wired Headphones,1,11.99,2019-04-07 17:09:00,666 Center St, Seattle,WA,98101 +178447,iPhone,1,700.0,2019-04-29 20:11:00,873 Lincoln St, Seattle,WA,98101 +178448,ThinkPad Laptop,1,999.99,2019-04-30 16:21:00,153 River St, San Francisco,CA,94016 +178449,Apple Airpods Headphones,1,150.0,2019-04-29 11:57:00,889 6th St, Boston,MA,02215 +178450,AAA Batteries (4-pack),1,2.99,2019-04-28 17:44:00,584 Lakeview St, Boston,MA,02215 +178451,AA Batteries (4-pack),2,3.84,2019-04-15 15:45:00,890 Spruce St, San Francisco,CA,94016 +178452,34in Ultrawide Monitor,1,379.99,2019-04-17 15:00:00,963 River St, New York City,NY,10001 +178453,AA Batteries (4-pack),1,3.84,2019-04-08 15:25:00,519 Cherry St, Seattle,WA,98101 +178454,27in 4K Gaming Monitor,1,389.99,2019-04-23 15:18:00,533 South St, Austin,TX,73301 +178455,Apple Airpods Headphones,1,150.0,2019-04-25 10:59:00,598 Chestnut St, Los Angeles,CA,90001 +178456,Flatscreen TV,1,300.0,2019-04-21 18:12:00,259 Church St, Austin,TX,73301 +178457,Wired Headphones,2,11.99,2019-04-03 18:49:00,689 Center St, Los Angeles,CA,90001 +178458,Apple Airpods Headphones,1,150.0,2019-04-08 10:23:00,160 Lakeview St, Seattle,WA,98101 +178459,Lightning Charging Cable,1,14.95,2019-04-06 22:43:00,614 Madison St, Portland,OR,97035 +178460,AAA Batteries (4-pack),2,2.99,2019-04-21 10:39:00,537 Cedar St, New York City,NY,10001 +178461,USB-C Charging Cable,1,11.95,2019-04-08 11:01:00,982 Dogwood St, San Francisco,CA,94016 +178462,Flatscreen TV,1,300.0,2019-04-20 09:47:00,553 Hickory St, San Francisco,CA,94016 +178463,Apple Airpods Headphones,1,150.0,2019-04-19 21:36:00,992 Sunset St, Boston,MA,02215 +178464,AAA Batteries (4-pack),2,2.99,2019-04-19 20:05:00,778 Forest St, Los Angeles,CA,90001 +178465,Bose SoundSport Headphones,1,99.99,2019-04-05 01:29:00,840 Church St, Boston,MA,02215 +178466,USB-C Charging Cable,1,11.95,2019-04-13 15:08:00,838 13th St, Seattle,WA,98101 +178467,Lightning Charging Cable,1,14.95,2019-04-16 11:27:00,249 Highland St, San Francisco,CA,94016 +178468,AAA Batteries (4-pack),1,2.99,2019-04-30 14:24:00,628 8th St, Atlanta,GA,30301 +178469,Lightning Charging Cable,1,14.95,2019-04-21 14:11:00,318 North St, San Francisco,CA,94016 +178470,USB-C Charging Cable,1,11.95,2019-04-01 20:15:00,658 10th St, San Francisco,CA,94016 +178471,AA Batteries (4-pack),1,3.84,2019-04-24 17:16:00,234 Main St, Portland,ME,04101 +178472,Macbook Pro Laptop,1,1700.0,2019-04-03 12:35:00,789 4th St, San Francisco,CA,94016 +178473,20in Monitor,1,109.99,2019-04-18 13:21:00,408 Hill St, Boston,MA,02215 +178474,Macbook Pro Laptop,1,1700.0,2019-04-21 19:37:00,333 Forest St, Atlanta,GA,30301 +178475,Bose SoundSport Headphones,1,99.99,2019-04-15 12:52:00,774 5th St, Seattle,WA,98101 +178476,AA Batteries (4-pack),4,3.84,2019-04-30 11:46:00,233 Dogwood St, New York City,NY,10001 +178477,Apple Airpods Headphones,1,150.0,2019-04-11 18:51:00,129 Cedar St, Los Angeles,CA,90001 +178478,Wired Headphones,1,11.99,2019-04-13 09:08:00,663 Hickory St, New York City,NY,10001 +178479,USB-C Charging Cable,1,11.95,2019-04-05 17:31:00,647 Washington St, Los Angeles,CA,90001 +178480,27in FHD Monitor,1,149.99,2019-04-30 01:29:00,388 9th St, San Francisco,CA,94016 +178481,Bose SoundSport Headphones,1,99.99,2019-04-07 17:21:00,686 6th St, New York City,NY,10001 +178482,AAA Batteries (4-pack),1,2.99,2019-04-23 10:53:00,822 Center St, San Francisco,CA,94016 +178483,27in 4K Gaming Monitor,1,389.99,2019-04-08 16:53:00,808 North St, Boston,MA,02215 +178484,Apple Airpods Headphones,1,150.0,2019-04-16 11:58:00,934 Maple St, Los Angeles,CA,90001 +178485,Lightning Charging Cable,1,14.95,2019-04-25 18:05:00,669 Lake St, Seattle,WA,98101 +178486,AA Batteries (4-pack),1,3.84,2019-04-16 10:36:00,129 Ridge St, San Francisco,CA,94016 +178487,Lightning Charging Cable,1,14.95,2019-04-17 10:38:00,566 Sunset St, San Francisco,CA,94016 +178488,AAA Batteries (4-pack),1,2.99,2019-04-04 20:19:00,923 Jefferson St, New York City,NY,10001 +178489,Wired Headphones,1,11.99,2019-04-16 11:03:00,982 North St, San Francisco,CA,94016 +178490,AAA Batteries (4-pack),1,2.99,2019-04-18 11:40:00,467 Church St, San Francisco,CA,94016 +178491,USB-C Charging Cable,1,11.95,2019-04-14 16:59:00,714 8th St, San Francisco,CA,94016 +178492,AA Batteries (4-pack),1,3.84,2019-04-21 22:33:00,625 South St, Seattle,WA,98101 +178493,Flatscreen TV,1,300.0,2019-04-14 09:43:00,177 Chestnut St, Dallas,TX,75001 +178494,34in Ultrawide Monitor,1,379.99,2019-04-07 17:33:00,772 Jackson St, Atlanta,GA,30301 +178495,Lightning Charging Cable,1,14.95,2019-04-19 13:44:00,356 8th St, Los Angeles,CA,90001 +178496,Bose SoundSport Headphones,1,99.99,2019-04-18 16:52:00,9 Park St, Atlanta,GA,30301 +178497,USB-C Charging Cable,1,11.95,2019-04-07 14:12:00,444 Sunset St, Dallas,TX,75001 +178498,ThinkPad Laptop,1,999.99,2019-04-24 19:31:00,375 West St, San Francisco,CA,94016 +178499,AAA Batteries (4-pack),3,2.99,2019-04-25 13:36:00,800 Dogwood St, San Francisco,CA,94016 +178500,Bose SoundSport Headphones,1,99.99,2019-04-03 20:49:00,337 Johnson St, New York City,NY,10001 +178501,27in FHD Monitor,1,149.99,2019-04-08 19:00:00,607 Hill St, Portland,OR,97035 +178502,AAA Batteries (4-pack),1,2.99,2019-04-21 08:38:00,475 Hill St, New York City,NY,10001 +178503,Apple Airpods Headphones,1,150.0,2019-04-20 21:39:00,384 Jefferson St, San Francisco,CA,94016 +178504,USB-C Charging Cable,1,11.95,2019-04-06 12:07:00,853 Cedar St, Portland,ME,04101 +178505,Apple Airpods Headphones,1,150.0,2019-04-28 14:57:00,916 Meadow St, Atlanta,GA,30301 +178506,Apple Airpods Headphones,1,150.0,2019-04-02 13:24:00,434 Hickory St, Seattle,WA,98101 +178507,AAA Batteries (4-pack),1,2.99,2019-04-26 17:41:00,427 Lakeview St, San Francisco,CA,94016 +178508,Lightning Charging Cable,1,14.95,2019-04-07 16:54:00,161 Pine St, Dallas,TX,75001 +178509,27in 4K Gaming Monitor,1,389.99,2019-04-28 23:26:00,85 Washington St, Los Angeles,CA,90001 +178510,27in 4K Gaming Monitor,1,389.99,2019-04-14 20:37:00,664 10th St, Seattle,WA,98101 +178511,Apple Airpods Headphones,1,150.0,2019-04-30 21:12:00,2 Forest St, Dallas,TX,75001 +178512,Apple Airpods Headphones,1,150.0,2019-04-15 19:41:00,218 11th St, Seattle,WA,98101 +178513,USB-C Charging Cable,1,11.95,2019-04-12 15:16:00,347 Johnson St, New York City,NY,10001 +178514,34in Ultrawide Monitor,1,379.99,2019-04-08 19:24:00,332 Church St, San Francisco,CA,94016 +178515,ThinkPad Laptop,1,999.99,2019-04-16 19:31:00,994 Madison St, Seattle,WA,98101 +178516,Lightning Charging Cable,1,14.95,2019-04-17 23:43:00,845 14th St, Los Angeles,CA,90001 +178517,AA Batteries (4-pack),1,3.84,2019-04-16 21:46:00,836 Dogwood St, Atlanta,GA,30301 +178518,Bose SoundSport Headphones,1,99.99,2019-04-04 12:47:00,763 Jefferson St, Dallas,TX,75001 +178519,20in Monitor,1,109.99,2019-04-04 12:13:00,248 Sunset St, Portland,OR,97035 +178520,USB-C Charging Cable,2,11.95,2019-04-15 15:15:00,459 West St, Seattle,WA,98101 +178521,Wired Headphones,1,11.99,2019-04-08 09:55:00,47 2nd St, Atlanta,GA,30301 +178522,AA Batteries (4-pack),2,3.84,2019-04-20 14:27:00,451 North St, New York City,NY,10001 +178523,USB-C Charging Cable,1,11.95,2019-04-08 13:54:00,840 Jefferson St, Boston,MA,02215 +178523,20in Monitor,1,109.99,2019-04-08 13:54:00,840 Jefferson St, Boston,MA,02215 +178524,27in 4K Gaming Monitor,1,389.99,2019-04-15 16:21:00,27 Main St, New York City,NY,10001 +178525,AAA Batteries (4-pack),2,2.99,2019-04-01 15:55:00,537 Lakeview St, Los Angeles,CA,90001 +178525,AA Batteries (4-pack),2,3.84,2019-04-01 15:55:00,537 Lakeview St, Los Angeles,CA,90001 +178526,27in FHD Monitor,1,149.99,2019-04-01 21:10:00,479 Jefferson St, Seattle,WA,98101 +178527,AA Batteries (4-pack),1,3.84,2019-04-05 23:17:00,169 Wilson St, Los Angeles,CA,90001 +178527,Bose SoundSport Headphones,1,99.99,2019-04-05 23:17:00,169 Wilson St, Los Angeles,CA,90001 +178528,AA Batteries (4-pack),1,3.84,2019-04-27 19:49:00,420 5th St, San Francisco,CA,94016 +178529,AAA Batteries (4-pack),2,2.99,2019-04-16 18:44:00,780 Chestnut St, San Francisco,CA,94016 +178530,iPhone,1,700.0,2019-04-21 09:57:00,109 West St, San Francisco,CA,94016 +178531,Lightning Charging Cable,1,14.95,2019-04-11 10:10:00,335 Lincoln St, San Francisco,CA,94016 +178532,Bose SoundSport Headphones,1,99.99,2019-04-03 15:09:00,758 6th St, San Francisco,CA,94016 +178533,AAA Batteries (4-pack),1,2.99,2019-04-20 18:05:00,10 Spruce St, New York City,NY,10001 +178534,Apple Airpods Headphones,1,150.0,2019-04-15 16:10:00,213 Meadow St, Atlanta,GA,30301 +178535,Bose SoundSport Headphones,1,99.99,2019-04-26 09:41:00,320 Wilson St, Atlanta,GA,30301 +178536,20in Monitor,1,109.99,2019-04-29 19:22:00,523 6th St, San Francisco,CA,94016 +178537,AA Batteries (4-pack),1,3.84,2019-04-29 20:48:00,416 Washington St, Boston,MA,02215 +178538,AA Batteries (4-pack),1,3.84,2019-04-06 07:18:00,932 Center St, Los Angeles,CA,90001 +178539,34in Ultrawide Monitor,1,379.99,2019-04-29 10:38:00,576 West St, Los Angeles,CA,90001 +178540,Lightning Charging Cable,1,14.95,2019-04-19 14:56:00,237 Cherry St, San Francisco,CA,94016 +178541,USB-C Charging Cable,1,11.95,2019-04-17 21:13:00,574 Lincoln St, Portland,OR,97035 +178542,34in Ultrawide Monitor,1,379.99,2019-04-07 12:34:00,495 Lake St, Portland,OR,97035 +178543,AA Batteries (4-pack),2,3.84,2019-04-05 11:47:00,558 1st St, San Francisco,CA,94016 +178544,USB-C Charging Cable,1,11.95,2019-04-21 17:01:00,602 River St, Austin,TX,73301 +178545,Lightning Charging Cable,1,14.95,2019-04-08 15:35:00,81 Lincoln St, Portland,OR,97035 +178546,Wired Headphones,1,11.99,2019-04-05 05:21:00,538 Spruce St, Boston,MA,02215 +178547,27in FHD Monitor,1,149.99,2019-04-21 14:13:00,561 Lincoln St, Seattle,WA,98101 +178548,34in Ultrawide Monitor,1,379.99,2019-04-12 20:13:00,773 Dogwood St, New York City,NY,10001 +178549,Wired Headphones,1,11.99,2019-04-05 10:49:00,292 Chestnut St, Portland,ME,04101 +178550,Google Phone,1,600.0,2019-04-17 14:50:00,714 Willow St, San Francisco,CA,94016 +178551,Wired Headphones,1,11.99,2019-04-11 20:55:00,748 Hickory St, Los Angeles,CA,90001 +178552,Apple Airpods Headphones,1,150.0,2019-04-16 13:16:00,11 Highland St, Seattle,WA,98101 +178553,Wired Headphones,1,11.99,2019-04-30 18:19:00,175 Cherry St, Portland,OR,97035 +178554,Lightning Charging Cable,1,14.95,2019-04-16 16:08:00,467 7th St, San Francisco,CA,94016 +178555,Wired Headphones,1,11.99,2019-04-10 12:18:00,787 Elm St, Los Angeles,CA,90001 +178556,Bose SoundSport Headphones,1,99.99,2019-04-10 13:30:00,664 Washington St, Los Angeles,CA,90001 +178557,AAA Batteries (4-pack),1,2.99,2019-04-29 20:26:00,937 Sunset St, Seattle,WA,98101 +178558,27in FHD Monitor,1,149.99,2019-04-27 19:43:00,425 Madison St, Portland,OR,97035 +178559,20in Monitor,1,109.99,2019-04-13 22:41:00,24 Willow St, San Francisco,CA,94016 +178560,Vareebadd Phone,1,400.0,2019-04-27 20:54:00,986 12th St, Seattle,WA,98101 +178561,34in Ultrawide Monitor,1,379.99,2019-04-30 12:22:00,410 North St, Portland,OR,97035 +178562,Apple Airpods Headphones,1,150.0,2019-04-22 11:43:00,158 Walnut St, Los Angeles,CA,90001 +178563,AAA Batteries (4-pack),3,2.99,2019-04-08 12:42:00,195 Church St, Austin,TX,73301 +178564,Flatscreen TV,1,300.0,2019-04-04 16:57:00,38 10th St, Boston,MA,02215 +178565,USB-C Charging Cable,1,11.95,2019-04-14 16:49:00,145 South St, San Francisco,CA,94016 +178566,AA Batteries (4-pack),1,3.84,2019-04-15 23:41:00,260 Hickory St, New York City,NY,10001 +178567,Flatscreen TV,1,300.0,2019-04-27 20:16:00,267 9th St, Atlanta,GA,30301 +178568,Apple Airpods Headphones,1,150.0,2019-04-30 05:31:00,95 2nd St, Seattle,WA,98101 +178569,USB-C Charging Cable,2,11.95,2019-04-21 14:09:00,636 Cedar St, Portland,OR,97035 +178570,27in 4K Gaming Monitor,1,389.99,2019-04-05 14:24:00,123 Lakeview St, San Francisco,CA,94016 +178571,34in Ultrawide Monitor,1,379.99,2019-04-18 13:46:00,253 Jefferson St, Boston,MA,02215 +178572,USB-C Charging Cable,1,11.95,2019-04-21 09:16:00,177 Pine St, San Francisco,CA,94016 +178572,27in 4K Gaming Monitor,1,389.99,2019-04-21 09:16:00,177 Pine St, San Francisco,CA,94016 +178573,ThinkPad Laptop,1,999.99,2019-04-14 10:07:00,929 Spruce St, Dallas,TX,75001 +178574,Wired Headphones,1,11.99,2019-04-14 06:25:00,879 Ridge St, Boston,MA,02215 +178575,Lightning Charging Cable,1,14.95,2019-04-20 06:02:00,331 14th St, San Francisco,CA,94016 +178576,AAA Batteries (4-pack),1,2.99,2019-04-26 10:40:00,576 Chestnut St, Los Angeles,CA,90001 +178577,20in Monitor,1,109.99,2019-04-06 12:37:00,485 Highland St, Dallas,TX,75001 +178578,AAA Batteries (4-pack),2,2.99,2019-04-29 17:18:00,27 11th St, San Francisco,CA,94016 +178579,Bose SoundSport Headphones,1,99.99,2019-04-07 22:36:00,561 11th St, Atlanta,GA,30301 +178580,Wired Headphones,1,11.99,2019-04-11 12:02:00,902 11th St, Portland,OR,97035 +178581,Wired Headphones,1,11.99,2019-04-19 17:34:00,935 7th St, New York City,NY,10001 +178582,AAA Batteries (4-pack),3,2.99,2019-04-19 08:58:00,168 Jefferson St, Atlanta,GA,30301 +178583,AAA Batteries (4-pack),1,2.99,2019-04-09 17:33:00,193 2nd St, San Francisco,CA,94016 +178584,Macbook Pro Laptop,1,1700.0,2019-04-30 14:51:00,969 10th St, Portland,OR,97035 +178585,Apple Airpods Headphones,1,150.0,2019-04-05 21:17:00,211 Highland St, New York City,NY,10001 +178586,20in Monitor,1,109.99,2019-04-23 23:59:00,479 9th St, Los Angeles,CA,90001 +178587,AA Batteries (4-pack),1,3.84,2019-04-26 10:05:00,424 1st St, Dallas,TX,75001 +178588,USB-C Charging Cable,1,11.95,2019-04-03 19:09:00,382 Dogwood St, Austin,TX,73301 +178589,27in 4K Gaming Monitor,1,389.99,2019-04-02 17:22:00,390 Ridge St, Seattle,WA,98101 +178590,27in FHD Monitor,1,149.99,2019-04-06 23:06:00,125 River St, Boston,MA,02215 +178591,Bose SoundSport Headphones,1,99.99,2019-04-07 19:00:00,987 Lincoln St, Seattle,WA,98101 +178592,iPhone,1,700.0,2019-04-05 22:07:00,54 Spruce St, New York City,NY,10001 +178593,AAA Batteries (4-pack),4,2.99,2019-04-07 13:32:00,516 10th St, San Francisco,CA,94016 +178594,AAA Batteries (4-pack),1,2.99,2019-04-01 19:08:00,532 Pine St, San Francisco,CA,94016 +178595,Lightning Charging Cable,1,14.95,2019-04-30 23:11:00,176 Sunset St, San Francisco,CA,94016 +178596,Lightning Charging Cable,1,14.95,2019-04-17 15:56:00,937 Elm St, San Francisco,CA,94016 +178597,27in 4K Gaming Monitor,1,389.99,2019-04-25 21:25:00,607 Washington St, Los Angeles,CA,90001 +178598,Lightning Charging Cable,1,14.95,2019-04-14 19:16:00,518 North St, San Francisco,CA,94016 +178599,Flatscreen TV,1,300.0,2019-04-17 15:01:00,584 Forest St, Atlanta,GA,30301 +178600,Apple Airpods Headphones,1,150.0,2019-04-18 11:51:00,12 Hickory St, Los Angeles,CA,90001 +178601,Lightning Charging Cable,1,14.95,2019-04-11 13:36:00,442 7th St, Boston,MA,02215 +178602,Lightning Charging Cable,1,14.95,2019-04-05 15:31:00,694 13th St, New York City,NY,10001 +178603,USB-C Charging Cable,1,11.95,2019-04-22 22:54:00,719 Wilson St, Atlanta,GA,30301 +178604,Wired Headphones,1,11.99,2019-04-24 23:00:00,881 Jackson St, New York City,NY,10001 +178605,AAA Batteries (4-pack),1,2.99,2019-04-07 17:11:00,10 Maple St, Portland,OR,97035 +178606,AA Batteries (4-pack),1,3.84,2019-04-06 20:25:00,406 Hickory St, Austin,TX,73301 +178607,Lightning Charging Cable,1,14.95,2019-04-03 20:15:00,88 Elm St, San Francisco,CA,94016 +178608,USB-C Charging Cable,1,11.95,2019-04-25 18:31:00,409 South St, Portland,OR,97035 +178609,Wired Headphones,1,11.99,2019-04-29 04:27:00,881 Hickory St, San Francisco,CA,94016 +178610,Wired Headphones,1,11.99,2019-04-09 18:04:00,633 Highland St, Los Angeles,CA,90001 +178611,AA Batteries (4-pack),1,3.84,2019-04-14 11:02:00,866 South St, Boston,MA,02215 +178612,AAA Batteries (4-pack),1,2.99,2019-04-23 10:41:00,810 Dogwood St, Atlanta,GA,30301 +178613,27in FHD Monitor,1,149.99,2019-04-01 18:06:00,919 Lake St, Los Angeles,CA,90001 +178614,AA Batteries (4-pack),2,3.84,2019-04-06 16:17:00,681 Ridge St, Los Angeles,CA,90001 +178615,Lightning Charging Cable,1,14.95,2019-04-17 20:33:00,153 Washington St, Austin,TX,73301 +178616,34in Ultrawide Monitor,1,379.99,2019-04-26 14:25:00,646 Meadow St, San Francisco,CA,94016 +178617,AA Batteries (4-pack),1,3.84,2019-04-21 15:50:00,572 Chestnut St, Portland,OR,97035 +178618,Apple Airpods Headphones,1,150.0,2019-04-18 01:50:00,323 Chestnut St, New York City,NY,10001 +178619,Lightning Charging Cable,1,14.95,2019-04-13 21:32:00,847 Maple St, San Francisco,CA,94016 +178620,Bose SoundSport Headphones,1,99.99,2019-04-22 23:06:00,805 7th St, New York City,NY,10001 +178621,Apple Airpods Headphones,1,150.0,2019-04-01 13:43:00,172 Chestnut St, Atlanta,GA,30301 +178622,Bose SoundSport Headphones,1,99.99,2019-04-01 22:05:00,328 Cedar St, San Francisco,CA,94016 +178623,Bose SoundSport Headphones,1,99.99,2019-04-24 17:44:00,822 Willow St, San Francisco,CA,94016 +178624,Lightning Charging Cable,1,14.95,2019-04-06 21:23:00,515 Madison St, San Francisco,CA,94016 +178625,Macbook Pro Laptop,1,1700.0,2019-04-27 16:10:00,161 6th St, San Francisco,CA,94016 +178626,AA Batteries (4-pack),1,3.84,2019-04-07 23:27:00,441 Park St, New York City,NY,10001 +178627,Lightning Charging Cable,1,14.95,2019-04-12 10:15:00,375 4th St, Los Angeles,CA,90001 +178628,Lightning Charging Cable,1,14.95,2019-04-13 21:26:00,131 12th St, Los Angeles,CA,90001 +178629,Apple Airpods Headphones,1,150.0,2019-04-04 01:56:00,627 Pine St, San Francisco,CA,94016 +178630,AA Batteries (4-pack),1,3.84,2019-04-23 12:28:00,854 Center St, Dallas,TX,75001 +178631,AAA Batteries (4-pack),1,2.99,2019-04-02 10:58:00,287 7th St, San Francisco,CA,94016 +178632,AA Batteries (4-pack),2,3.84,2019-04-12 13:42:00,703 Elm St, San Francisco,CA,94016 +178633,34in Ultrawide Monitor,1,379.99,2019-04-12 20:06:00,966 Jackson St, New York City,NY,10001 +178634,Apple Airpods Headphones,1,150.0,2019-04-25 16:38:00,85 5th St, Dallas,TX,75001 +178635,Bose SoundSport Headphones,1,99.99,2019-04-27 13:21:00,316 Madison St, San Francisco,CA,94016 +178636,Macbook Pro Laptop,1,1700.0,2019-04-25 13:53:00,853 10th St, New York City,NY,10001 +178637,Lightning Charging Cable,1,14.95,2019-04-17 11:54:00,74 Main St, Portland,OR,97035 +178638,ThinkPad Laptop,1,999.99,2019-04-27 00:24:00,807 Elm St, Austin,TX,73301 +178639,AA Batteries (4-pack),2,3.84,2019-04-14 07:29:00,508 Park St, Seattle,WA,98101 +178640,USB-C Charging Cable,1,11.95,2019-04-13 01:32:00,270 9th St, Los Angeles,CA,90001 +178641,USB-C Charging Cable,1,11.95,2019-04-18 13:09:00,435 8th St, New York City,NY,10001 +178642,USB-C Charging Cable,1,11.95,2019-04-01 14:02:00,619 Park St, San Francisco,CA,94016 +178643,Bose SoundSport Headphones,1,99.99,2019-04-08 14:05:00,62 Main St, Los Angeles,CA,90001 +178644,Wired Headphones,2,11.99,2019-04-07 20:45:00,680 Dogwood St, Boston,MA,02215 +178645,Lightning Charging Cable,1,14.95,2019-04-16 07:35:00,561 13th St, Portland,OR,97035 +178646,20in Monitor,1,109.99,2019-04-08 12:27:00,409 Jefferson St, San Francisco,CA,94016 +178647,AAA Batteries (4-pack),1,2.99,2019-04-20 19:15:00,599 Sunset St, Austin,TX,73301 +178648,Macbook Pro Laptop,1,1700.0,2019-04-23 16:11:00,669 Walnut St, New York City,NY,10001 +178649,20in Monitor,1,109.99,2019-04-05 16:37:00,744 8th St, New York City,NY,10001 +178650,Apple Airpods Headphones,1,150.0,2019-04-06 18:54:00,33 Jefferson St, Boston,MA,02215 +178651,Google Phone,1,600.0,2019-04-27 06:18:00,455 Walnut St, San Francisco,CA,94016 +178652,AAA Batteries (4-pack),1,2.99,2019-04-28 14:36:00,377 Madison St, Atlanta,GA,30301 +178653,AAA Batteries (4-pack),1,2.99,2019-04-01 21:41:00,665 Walnut St, New York City,NY,10001 +178654,34in Ultrawide Monitor,1,379.99,2019-04-21 18:46:00,373 South St, Dallas,TX,75001 +178655,Apple Airpods Headphones,1,150.0,2019-04-07 20:18:00,555 Adams St, Dallas,TX,75001 +178656,USB-C Charging Cable,1,11.95,2019-04-01 19:47:00,494 South St, Boston,MA,02215 +178657,AAA Batteries (4-pack),1,2.99,2019-04-26 12:53:00,462 8th St, New York City,NY,10001 +178658,USB-C Charging Cable,1,11.95,2019-04-08 10:53:00,76 Jackson St, San Francisco,CA,94016 +178659,27in 4K Gaming Monitor,1,389.99,2019-04-25 21:57:00,515 Ridge St, Seattle,WA,98101 +178660,Lightning Charging Cable,1,14.95,2019-04-28 12:49:00,77 Cherry St, Boston,MA,02215 +178661,27in FHD Monitor,1,149.99,2019-04-29 11:02:00,569 2nd St, Boston,MA,02215 +178662,Wired Headphones,1,11.99,2019-04-21 12:47:00,641 Spruce St, San Francisco,CA,94016 +178663,USB-C Charging Cable,1,11.95,2019-04-25 14:40:00,553 Highland St, New York City,NY,10001 +178664,Apple Airpods Headphones,1,150.0,2019-04-22 13:24:00,606 Elm St, Dallas,TX,75001 +178665,USB-C Charging Cable,2,11.95,2019-04-29 15:38:00,827 Willow St, Portland,OR,97035 +178666,20in Monitor,1,109.99,2019-04-23 19:37:00,604 Jackson St, Los Angeles,CA,90001 +178667,Wired Headphones,1,11.99,2019-04-02 23:41:00,975 13th St, Seattle,WA,98101 +178668,Bose SoundSport Headphones,1,99.99,2019-04-02 21:51:00,161 Main St, San Francisco,CA,94016 +178669,AAA Batteries (4-pack),2,2.99,2019-04-02 13:57:00,155 Cedar St, San Francisco,CA,94016 +178670,iPhone,1,700.0,2019-04-20 19:04:00,24 Lincoln St, Dallas,TX,75001 +178671,iPhone,1,700.0,2019-04-29 07:22:00,349 Lakeview St, San Francisco,CA,94016 +178672,AAA Batteries (4-pack),1,2.99,2019-04-27 10:57:00,939 Main St, Los Angeles,CA,90001 +178673,USB-C Charging Cable,2,11.95,2019-04-14 23:01:00,289 Main St, Dallas,TX,75001 +178674,AAA Batteries (4-pack),1,2.99,2019-04-18 17:01:00,582 Lake St, San Francisco,CA,94016 +178675,27in FHD Monitor,1,149.99,2019-04-08 08:37:00,236 Cherry St, Austin,TX,73301 +178676,Flatscreen TV,1,300.0,2019-04-29 08:50:00,814 Park St, Portland,OR,97035 +178677,Bose SoundSport Headphones,1,99.99,2019-04-20 18:02:00,851 12th St, Los Angeles,CA,90001 +178678,AA Batteries (4-pack),1,3.84,2019-04-08 20:09:00,97 11th St, Seattle,WA,98101 +178679,Bose SoundSport Headphones,1,99.99,2019-04-03 21:11:00,931 11th St, Dallas,TX,75001 +178680,Lightning Charging Cable,1,14.95,2019-04-18 20:11:00,9 Johnson St, Austin,TX,73301 +178681,USB-C Charging Cable,1,11.95,2019-04-16 23:29:00,442 7th St, Los Angeles,CA,90001 +178682,AA Batteries (4-pack),2,3.84,2019-04-12 06:46:00,387 2nd St, San Francisco,CA,94016 +178683,27in 4K Gaming Monitor,1,389.99,2019-04-12 18:49:00,799 Lincoln St, Portland,OR,97035 +178684,Wired Headphones,1,11.99,2019-04-11 14:32:00,447 Cedar St, San Francisco,CA,94016 +178685,AAA Batteries (4-pack),1,2.99,2019-04-29 14:48:00,756 Hickory St, Dallas,TX,75001 +178686,Flatscreen TV,1,300.0,2019-04-23 19:07:00,91 8th St, San Francisco,CA,94016 +178687,Wired Headphones,1,11.99,2019-04-05 20:51:00,767 Walnut St, Boston,MA,02215 +178688,27in 4K Gaming Monitor,1,389.99,2019-04-05 19:56:00,524 Spruce St, Portland,OR,97035 +178689,USB-C Charging Cable,2,11.95,2019-04-26 22:43:00,334 Church St, Atlanta,GA,30301 +178690,AA Batteries (4-pack),1,3.84,2019-04-11 10:27:00,192 1st St, Atlanta,GA,30301 +178691,27in 4K Gaming Monitor,1,389.99,2019-04-21 10:27:00,396 Sunset St, New York City,NY,10001 +178692,USB-C Charging Cable,1,11.95,2019-04-10 12:59:00,882 River St, Seattle,WA,98101 +178693,AA Batteries (4-pack),1,3.84,2019-04-02 00:45:00,675 West St, Los Angeles,CA,90001 +178694,Lightning Charging Cable,1,14.95,2019-04-15 21:29:00,929 Park St, Boston,MA,02215 +178695,Bose SoundSport Headphones,1,99.99,2019-04-22 22:07:00,455 Cedar St, New York City,NY,10001 +178696,Macbook Pro Laptop,1,1700.0,2019-04-25 17:45:00,39 9th St, Austin,TX,73301 +178697,Apple Airpods Headphones,1,150.0,2019-04-14 18:06:00,400 Main St, Seattle,WA,98101 +178698,Lightning Charging Cable,1,14.95,2019-04-30 12:51:00,115 12th St, Los Angeles,CA,90001 +178699,Lightning Charging Cable,1,14.95,2019-04-03 21:59:00,554 11th St, San Francisco,CA,94016 +178700,USB-C Charging Cable,1,11.95,2019-04-12 20:26:00,537 Johnson St, San Francisco,CA,94016 +178701,Lightning Charging Cable,1,14.95,2019-04-07 17:48:00,378 Meadow St, New York City,NY,10001 +178702,USB-C Charging Cable,1,11.95,2019-04-07 15:32:00,747 Wilson St, Dallas,TX,75001 +178703,AAA Batteries (4-pack),1,2.99,2019-04-21 19:21:00,412 Johnson St, New York City,NY,10001 +178704,AA Batteries (4-pack),1,3.84,2019-04-21 19:29:00,325 Lincoln St, San Francisco,CA,94016 +178705,Lightning Charging Cable,1,14.95,2019-04-07 20:21:00,22 9th St, Atlanta,GA,30301 +178706,34in Ultrawide Monitor,1,379.99,2019-04-20 21:51:00,795 Wilson St, Los Angeles,CA,90001 +178707,iPhone,1,700.0,2019-04-11 18:33:00,834 14th St, Los Angeles,CA,90001 +178708,AAA Batteries (4-pack),1,2.99,2019-04-23 14:51:00,236 2nd St, New York City,NY,10001 +178709,AAA Batteries (4-pack),1,2.99,2019-04-03 16:32:00,218 West St, Los Angeles,CA,90001 +178710,Lightning Charging Cable,1,14.95,2019-04-20 21:15:00,300 Hill St, Portland,OR,97035 +178711,Lightning Charging Cable,1,14.95,2019-04-14 13:48:00,877 Wilson St, Seattle,WA,98101 +178712,Apple Airpods Headphones,1,150.0,2019-04-01 20:48:00,652 6th St, Seattle,WA,98101 +178713,Google Phone,1,600.0,2019-04-27 11:11:00,933 Church St, Boston,MA,02215 +178714,AA Batteries (4-pack),1,3.84,2019-04-08 22:13:00,507 Park St, Los Angeles,CA,90001 +178715,Wired Headphones,1,11.99,2019-04-01 09:28:00,458 14th St, Boston,MA,02215 +178716,34in Ultrawide Monitor,1,379.99,2019-04-14 22:20:00,245 Wilson St, New York City,NY,10001 +178717,AA Batteries (4-pack),1,3.84,2019-04-05 03:09:00,569 Jackson St, San Francisco,CA,94016 +178718,ThinkPad Laptop,1,999.99,2019-04-23 00:56:00,481 Cherry St, Los Angeles,CA,90001 +178719,ThinkPad Laptop,1,999.99,2019-04-25 07:54:00,539 6th St, San Francisco,CA,94016 +178720,AA Batteries (4-pack),2,3.84,2019-04-01 07:55:00,607 West St, Austin,TX,73301 +178721,Apple Airpods Headphones,1,150.0,2019-04-22 22:10:00,230 9th St, Seattle,WA,98101 +178722,Apple Airpods Headphones,1,150.0,2019-04-13 23:05:00,978 Highland St, San Francisco,CA,94016 +178723,AAA Batteries (4-pack),1,2.99,2019-04-29 09:36:00,257 Jefferson St, Portland,OR,97035 +178724,AAA Batteries (4-pack),2,2.99,2019-04-20 21:51:00,741 7th St, San Francisco,CA,94016 +178725,Lightning Charging Cable,1,14.95,2019-04-03 19:47:00,459 Adams St, New York City,NY,10001 +178726,27in 4K Gaming Monitor,1,389.99,2019-04-10 16:39:00,926 11th St, Los Angeles,CA,90001 +178727,Lightning Charging Cable,1,14.95,2019-04-16 21:28:00,944 6th St, New York City,NY,10001 +178728,AA Batteries (4-pack),1,3.84,2019-04-04 12:45:00,111 1st St, Boston,MA,02215 +178729,USB-C Charging Cable,1,11.95,2019-04-29 13:23:00,718 Chestnut St, Dallas,TX,75001 +178730,Apple Airpods Headphones,1,150.0,2019-04-06 09:13:00,989 8th St, San Francisco,CA,94016 +178731,Macbook Pro Laptop,1,1700.0,2019-04-02 12:01:00,918 Walnut St, Los Angeles,CA,90001 +178732,Bose SoundSport Headphones,1,99.99,2019-04-06 16:24:00,418 11th St, New York City,NY,10001 +178733,LG Dryer,1,600.0,2019-04-22 11:59:00,5 Wilson St, Seattle,WA,98101 +178734,ThinkPad Laptop,1,999.99,2019-04-27 14:04:00,957 Highland St, Dallas,TX,75001 +178735,Lightning Charging Cable,1,14.95,2019-04-12 15:28:00,639 Jefferson St, New York City,NY,10001 +178736,27in 4K Gaming Monitor,1,389.99,2019-04-30 20:26:00,917 Church St, Austin,TX,73301 +178737,AAA Batteries (4-pack),1,2.99,2019-04-08 08:48:00,317 Hill St, Los Angeles,CA,90001 +178738,AAA Batteries (4-pack),1,2.99,2019-04-28 11:17:00,73 Spruce St, San Francisco,CA,94016 +178739,AAA Batteries (4-pack),1,2.99,2019-04-18 22:10:00,753 Dogwood St, San Francisco,CA,94016 +178740,27in 4K Gaming Monitor,1,389.99,2019-04-28 13:04:00,581 8th St, Los Angeles,CA,90001 +178741,Apple Airpods Headphones,1,150.0,2019-04-20 16:22:00,237 1st St, Seattle,WA,98101 +178742,ThinkPad Laptop,1,999.99,2019-04-06 23:32:00,28 Walnut St, Seattle,WA,98101 +178743,Lightning Charging Cable,1,14.95,2019-04-13 10:43:00,329 Hill St, Seattle,WA,98101 +178744,27in 4K Gaming Monitor,1,389.99,2019-04-19 15:59:00,671 Main St, Los Angeles,CA,90001 +178745,AAA Batteries (4-pack),1,2.99,2019-04-22 10:31:00,848 Hickory St, San Francisco,CA,94016 +178746,27in FHD Monitor,1,149.99,2019-04-05 14:31:00,518 4th St, Seattle,WA,98101 +178747,Bose SoundSport Headphones,1,99.99,2019-04-05 20:01:00,979 Washington St, Seattle,WA,98101 +178748,27in FHD Monitor,1,149.99,2019-04-24 17:24:00,744 Madison St, Boston,MA,02215 +178749,iPhone,1,700.0,2019-04-30 15:53:00,972 Hickory St, San Francisco,CA,94016 +178749,Lightning Charging Cable,1,14.95,2019-04-30 15:53:00,972 Hickory St, San Francisco,CA,94016 +178750,USB-C Charging Cable,1,11.95,2019-04-03 02:26:00,242 Wilson St, Boston,MA,02215 +178751,AAA Batteries (4-pack),1,2.99,2019-04-24 12:26:00,806 Center St, New York City,NY,10001 +178752,Apple Airpods Headphones,1,150.0,2019-04-02 15:27:00,748 Willow St, San Francisco,CA,94016 +178753,Apple Airpods Headphones,1,150.0,2019-04-30 14:59:00,467 Jackson St, San Francisco,CA,94016 +178754,ThinkPad Laptop,1,999.99,2019-04-21 16:59:00,571 7th St, Los Angeles,CA,90001 +178755,AA Batteries (4-pack),1,3.84,2019-04-05 13:35:00,651 14th St, San Francisco,CA,94016 +178756,AA Batteries (4-pack),1,3.84,2019-04-24 10:56:00,971 Walnut St, Seattle,WA,98101 +178757,Lightning Charging Cable,1,14.95,2019-04-13 17:28:00,450 Adams St, Atlanta,GA,30301 +178758,Bose SoundSport Headphones,1,99.99,2019-04-24 13:57:00,602 10th St, San Francisco,CA,94016 +178759,Macbook Pro Laptop,1,1700.0,2019-04-19 18:32:00,452 10th St, Atlanta,GA,30301 +178760,AAA Batteries (4-pack),1,2.99,2019-04-24 19:12:00,766 Chestnut St, Austin,TX,73301 +178761,AAA Batteries (4-pack),1,2.99,2019-04-29 19:23:00,844 6th St, San Francisco,CA,94016 +178762,27in FHD Monitor,1,149.99,2019-04-09 13:09:00,681 Willow St, San Francisco,CA,94016 +178763,AA Batteries (4-pack),1,3.84,2019-04-18 15:32:00,88 4th St, New York City,NY,10001 +178764,34in Ultrawide Monitor,1,379.99,2019-04-22 14:42:00,779 Hill St, Dallas,TX,75001 +178765,Vareebadd Phone,1,400.0,2019-04-06 20:24:00,451 Hill St, New York City,NY,10001 +178766,34in Ultrawide Monitor,1,379.99,2019-04-16 16:15:00,534 9th St, New York City,NY,10001 +178767,AA Batteries (4-pack),2,3.84,2019-04-24 14:59:00,819 Lake St, Boston,MA,02215 +178768,AA Batteries (4-pack),3,3.84,2019-04-09 17:49:00,556 5th St, Dallas,TX,75001 +178769,Wired Headphones,1,11.99,2019-04-17 19:11:00,781 Cherry St, San Francisco,CA,94016 +178770,Apple Airpods Headphones,1,150.0,2019-04-08 08:58:00,689 2nd St, New York City,NY,10001 +178771,Bose SoundSport Headphones,1,99.99,2019-04-07 16:14:00,58 Lake St, Seattle,WA,98101 +178772,Apple Airpods Headphones,1,150.0,2019-04-11 09:06:00,511 Jefferson St, San Francisco,CA,94016 +178773,AA Batteries (4-pack),1,3.84,2019-04-23 16:22:00,830 Church St, Dallas,TX,75001 +178774,AA Batteries (4-pack),1,3.84,2019-04-20 13:07:00,78 Park St, Los Angeles,CA,90001 +178775,Lightning Charging Cable,1,14.95,2019-04-30 11:02:00,458 Willow St, New York City,NY,10001 +178776,Flatscreen TV,1,300.0,2019-04-22 21:25:00,370 Adams St, Dallas,TX,75001 +178777,AAA Batteries (4-pack),1,2.99,2019-04-20 19:09:00,148 Lincoln St, Dallas,TX,75001 +178778,Bose SoundSport Headphones,1,99.99,2019-04-23 21:10:00,516 13th St, Los Angeles,CA,90001 +178779,AA Batteries (4-pack),3,3.84,2019-04-22 12:50:00,505 West St, San Francisco,CA,94016 +178780,AA Batteries (4-pack),1,3.84,2019-04-26 18:36:00,818 1st St, Los Angeles,CA,90001 +178781,Google Phone,1,600.0,2019-04-03 16:47:00,655 1st St, San Francisco,CA,94016 +178781,Wired Headphones,1,11.99,2019-04-03 16:47:00,655 1st St, San Francisco,CA,94016 +178782,Lightning Charging Cable,1,14.95,2019-04-24 11:36:00,993 12th St, Portland,OR,97035 +178783,Lightning Charging Cable,1,14.95,2019-04-15 20:45:00,391 Cedar St, Los Angeles,CA,90001 +178784,Apple Airpods Headphones,1,150.0,2019-04-10 16:01:00,914 West St, San Francisco,CA,94016 +178785,AAA Batteries (4-pack),2,2.99,2019-04-08 14:52:00,390 12th St, Los Angeles,CA,90001 +178786,AA Batteries (4-pack),1,3.84,2019-04-26 14:32:00,5 2nd St, Portland,OR,97035 +178787,Bose SoundSport Headphones,1,99.99,2019-04-22 18:37:00,531 Pine St, Atlanta,GA,30301 +178788,Bose SoundSport Headphones,1,99.99,2019-04-06 16:53:00,992 Cedar St, Austin,TX,73301 +178789,Bose SoundSport Headphones,1,99.99,2019-04-13 17:36:00,318 Center St, San Francisco,CA,94016 +178790,AAA Batteries (4-pack),2,2.99,2019-04-09 14:43:00,664 River St, Seattle,WA,98101 +178791,AAA Batteries (4-pack),1,2.99,2019-04-27 12:56:00,28 Hickory St, Los Angeles,CA,90001 +178792,USB-C Charging Cable,1,11.95,2019-04-19 17:04:00,413 6th St, San Francisco,CA,94016 +178793,AAA Batteries (4-pack),1,2.99,2019-04-10 19:34:00,26 Lincoln St, Austin,TX,73301 +178794,Lightning Charging Cable,1,14.95,2019-04-25 12:07:00,100 Maple St, Los Angeles,CA,90001 +178795,Apple Airpods Headphones,1,150.0,2019-04-17 21:48:00,884 Church St, Seattle,WA,98101 +178796,USB-C Charging Cable,1,11.95,2019-04-06 22:54:00,23 10th St, Seattle,WA,98101 +178797,Wired Headphones,1,11.99,2019-04-22 12:05:00,383 Jefferson St, Seattle,WA,98101 +178798,Apple Airpods Headphones,1,150.0,2019-04-28 10:02:00,808 8th St, San Francisco,CA,94016 +178799,Google Phone,1,600.0,2019-04-29 18:22:00,818 11th St, San Francisco,CA,94016 +178800,Lightning Charging Cable,1,14.95,2019-04-05 07:02:00,267 Meadow St, Austin,TX,73301 +178801,AAA Batteries (4-pack),1,2.99,2019-04-23 07:45:00,278 Lake St, Seattle,WA,98101 +178802,AA Batteries (4-pack),1,3.84,2019-04-24 21:50:00,90 Wilson St, San Francisco,CA,94016 +178803,20in Monitor,1,109.99,2019-04-26 08:56:00,86 Sunset St, New York City,NY,10001 +178804,AAA Batteries (4-pack),1,2.99,2019-04-11 14:48:00,822 Lincoln St, Atlanta,GA,30301 +178805,Apple Airpods Headphones,1,150.0,2019-04-25 22:16:00,742 Main St, San Francisco,CA,94016 +178806,Apple Airpods Headphones,2,150.0,2019-04-21 10:15:00,881 Jefferson St, New York City,NY,10001 +178807,34in Ultrawide Monitor,1,379.99,2019-04-12 13:09:00,387 4th St, Atlanta,GA,30301 +178808,USB-C Charging Cable,1,11.95,2019-04-24 01:26:00,140 13th St, Boston,MA,02215 +178809,Lightning Charging Cable,1,14.95,2019-04-03 08:10:00,637 Lincoln St, New York City,NY,10001 +178810,AA Batteries (4-pack),3,3.84,2019-04-16 21:51:00,972 Walnut St, Boston,MA,02215 +178811,Lightning Charging Cable,1,14.95,2019-04-15 12:23:00,752 Park St, Los Angeles,CA,90001 +178812,Wired Headphones,1,11.99,2019-04-18 08:57:00,809 Spruce St, New York City,NY,10001 +178813,USB-C Charging Cable,1,11.95,2019-04-22 21:12:00,342 River St, Los Angeles,CA,90001 +178814,AAA Batteries (4-pack),1,2.99,2019-04-09 15:28:00,421 Meadow St, Los Angeles,CA,90001 +178815,Lightning Charging Cable,1,14.95,2019-04-11 21:25:00,949 11th St, Boston,MA,02215 +178816,ThinkPad Laptop,1,999.99,2019-04-03 08:59:00,112 Jackson St, Seattle,WA,98101 +178817,27in FHD Monitor,1,149.99,2019-04-18 06:07:00,971 Cedar St, San Francisco,CA,94016 +178818,AA Batteries (4-pack),2,3.84,2019-04-22 18:43:00,605 6th St, Dallas,TX,75001 +178819,Google Phone,1,600.0,2019-04-26 16:35:00,542 Center St, Los Angeles,CA,90001 +178820,Apple Airpods Headphones,1,150.0,2019-04-17 19:03:00,420 Forest St, San Francisco,CA,94016 +178821,ThinkPad Laptop,1,999.99,2019-04-06 20:26:00,180 1st St, Los Angeles,CA,90001 +178822,34in Ultrawide Monitor,1,379.99,2019-04-26 13:09:00,701 Johnson St, San Francisco,CA,94016 +178823,Lightning Charging Cable,1,14.95,2019-04-26 16:53:00,612 Meadow St, Seattle,WA,98101 +178824,USB-C Charging Cable,1,11.95,2019-04-12 20:05:00,144 Center St, Boston,MA,02215 +178825,iPhone,1,700.0,2019-04-02 14:00:00,705 Center St, Atlanta,GA,30301 +178825,Apple Airpods Headphones,1,150.0,2019-04-02 14:00:00,705 Center St, Atlanta,GA,30301 +178826,34in Ultrawide Monitor,1,379.99,2019-04-09 07:20:00,968 Dogwood St, New York City,NY,10001 +178827,Wired Headphones,1,11.99,2019-04-24 22:53:00,177 Elm St, Portland,OR,97035 +178828,Flatscreen TV,1,300.0,2019-04-26 17:40:00,656 2nd St, San Francisco,CA,94016 +178829,ThinkPad Laptop,1,999.99,2019-04-24 12:36:00,933 Ridge St, Atlanta,GA,30301 +178830,AA Batteries (4-pack),1,3.84,2019-04-17 21:10:00,246 6th St, New York City,NY,10001 +178831,Flatscreen TV,1,300.0,2019-04-02 18:58:00,368 13th St, Los Angeles,CA,90001 +178832,USB-C Charging Cable,1,11.95,2019-04-06 22:15:00,358 Walnut St, San Francisco,CA,94016 +178833,AA Batteries (4-pack),1,3.84,2019-04-21 23:46:00,556 Adams St, Seattle,WA,98101 +178834,Wired Headphones,1,11.99,2019-04-10 00:25:00,728 Dogwood St, Atlanta,GA,30301 +178835,AA Batteries (4-pack),2,3.84,2019-04-20 21:50:00,173 Highland St, Los Angeles,CA,90001 +178836,Wired Headphones,1,11.99,2019-04-23 13:07:00,830 River St, San Francisco,CA,94016 +178837,AAA Batteries (4-pack),1,2.99,2019-04-16 15:30:00,273 Washington St, Dallas,TX,75001 +178838,ThinkPad Laptop,1,999.99,2019-04-12 11:22:00,186 Spruce St, Seattle,WA,98101 +178839,Bose SoundSport Headphones,1,99.99,2019-04-30 12:50:00,102 Johnson St, New York City,NY,10001 +178840,27in 4K Gaming Monitor,1,389.99,2019-04-24 11:59:00,740 North St, Dallas,TX,75001 +178841,AA Batteries (4-pack),1,3.84,2019-04-25 14:46:00,810 11th St, New York City,NY,10001 +178842,USB-C Charging Cable,1,11.95,2019-04-11 09:19:00,817 South St, Seattle,WA,98101 +178843,AAA Batteries (4-pack),2,2.99,2019-04-11 10:41:00,996 Hill St, Los Angeles,CA,90001 +178844,Vareebadd Phone,1,400.0,2019-04-08 12:15:00,961 6th St, San Francisco,CA,94016 +178845,Lightning Charging Cable,1,14.95,2019-04-26 14:19:00,130 Meadow St, Los Angeles,CA,90001 +178846,Apple Airpods Headphones,1,150.0,2019-04-23 11:07:00,117 Adams St, Seattle,WA,98101 +178847,USB-C Charging Cable,1,11.95,2019-04-02 18:27:00,465 Pine St, Dallas,TX,75001 +178848,Apple Airpods Headphones,1,150.0,2019-04-19 15:01:00,233 Lake St, Los Angeles,CA,90001 +178849,AAA Batteries (4-pack),2,2.99,2019-04-24 08:51:00,929 Walnut St, New York City,NY,10001 +178850,Apple Airpods Headphones,1,150.0,2019-04-12 12:53:00,129 Cherry St, Dallas,TX,75001 +178851,AA Batteries (4-pack),1,3.84,2019-04-05 12:08:00,264 14th St, Boston,MA,02215 +178852,Bose SoundSport Headphones,1,99.99,2019-04-12 15:48:00,358 Lincoln St, Los Angeles,CA,90001 +178853,USB-C Charging Cable,1,11.95,2019-04-13 00:12:00,53 Hill St, San Francisco,CA,94016 +178854,Macbook Pro Laptop,1,1700.0,2019-04-10 12:35:00,565 Ridge St, Dallas,TX,75001 +178855,Wired Headphones,1,11.99,2019-04-14 20:21:00,569 Cedar St, Portland,OR,97035 +178856,Apple Airpods Headphones,1,150.0,2019-04-27 11:44:00,896 Elm St, Portland,OR,97035 +178857,Apple Airpods Headphones,1,150.0,2019-04-12 04:25:00,37 Lakeview St, Dallas,TX,75001 +178858,27in FHD Monitor,1,149.99,2019-04-07 10:33:00,351 Lake St, San Francisco,CA,94016 +178859,Apple Airpods Headphones,1,150.0,2019-04-13 12:06:00,404 Dogwood St, San Francisco,CA,94016 +178860,Bose SoundSport Headphones,1,99.99,2019-04-24 09:32:00,604 Cherry St, New York City,NY,10001 +178861,Lightning Charging Cable,1,14.95,2019-04-27 01:00:00,596 Sunset St, Austin,TX,73301 +178862,Google Phone,1,600.0,2019-04-26 12:20:00,547 9th St, Seattle,WA,98101 +178863,34in Ultrawide Monitor,1,379.99,2019-04-01 14:21:00,764 Adams St, San Francisco,CA,94016 +178864,Lightning Charging Cable,1,14.95,2019-04-02 15:12:00,334 Highland St, San Francisco,CA,94016 +178865,AAA Batteries (4-pack),2,2.99,2019-04-20 15:58:00,764 Spruce St, Boston,MA,02215 +178866,AAA Batteries (4-pack),1,2.99,2019-04-17 20:18:00,872 Hill St, Los Angeles,CA,90001 +178867,Google Phone,1,600.0,2019-04-26 15:06:00,137 Cedar St, Seattle,WA,98101 +178868,AAA Batteries (4-pack),1,2.99,2019-04-25 20:43:00,808 4th St, San Francisco,CA,94016 +178869,USB-C Charging Cable,1,11.95,2019-04-11 20:59:00,391 2nd St, San Francisco,CA,94016 +178870,Apple Airpods Headphones,1,150.0,2019-04-22 08:20:00,835 Jackson St, San Francisco,CA,94016 +178871,Apple Airpods Headphones,1,150.0,2019-04-21 20:19:00,436 Johnson St, Los Angeles,CA,90001 +178872,Wired Headphones,1,11.99,2019-04-24 00:31:00,925 Highland St, Los Angeles,CA,90001 +178873,USB-C Charging Cable,3,11.95,2019-04-17 16:50:00,78 7th St, Boston,MA,02215 +178874,27in FHD Monitor,1,149.99,2019-04-30 15:43:00,616 Forest St, Los Angeles,CA,90001 +178875,Macbook Pro Laptop,1,1700.0,2019-04-26 19:02:00,924 Cedar St, San Francisco,CA,94016 +178876,USB-C Charging Cable,1,11.95,2019-04-28 06:40:00,696 Cedar St, Boston,MA,02215 +178877,27in 4K Gaming Monitor,1,389.99,2019-04-30 16:57:00,997 Lakeview St, San Francisco,CA,94016 +178878,USB-C Charging Cable,1,11.95,2019-04-15 16:36:00,304 Lake St, San Francisco,CA,94016 +178879,LG Washing Machine,1,600.0,2019-04-16 15:33:00,792 Maple St, Portland,OR,97035 +178880,Lightning Charging Cable,1,14.95,2019-04-10 17:16:00,793 6th St, San Francisco,CA,94016 +178881,Flatscreen TV,1,300.0,2019-04-04 18:47:00,415 Adams St, New York City,NY,10001 +178882,Lightning Charging Cable,1,14.95,2019-04-02 12:18:00,568 Forest St, San Francisco,CA,94016 +178883,LG Dryer,1,600.0,2019-04-29 21:44:00,575 6th St, Atlanta,GA,30301 +178884,Bose SoundSport Headphones,1,99.99,2019-04-12 13:44:00,726 4th St, Los Angeles,CA,90001 +178885,iPhone,1,700.0,2019-04-28 19:16:00,12 Hill St, San Francisco,CA,94016 +178886,Google Phone,1,600.0,2019-04-08 16:11:00,207 Spruce St, Atlanta,GA,30301 +178886,Wired Headphones,1,11.99,2019-04-08 16:11:00,207 Spruce St, Atlanta,GA,30301 +178887,Lightning Charging Cable,2,14.95,2019-04-17 13:12:00,880 Hill St, Los Angeles,CA,90001 +178888,USB-C Charging Cable,1,11.95,2019-04-25 22:28:00,736 6th St, San Francisco,CA,94016 +178889,Lightning Charging Cable,1,14.95,2019-04-24 10:56:00,18 4th St, New York City,NY,10001 +178890,USB-C Charging Cable,1,11.95,2019-04-20 18:41:00,303 Meadow St, San Francisco,CA,94016 +178891,34in Ultrawide Monitor,1,379.99,2019-04-15 16:45:00,903 Forest St, San Francisco,CA,94016 +178892,Flatscreen TV,1,300.0,2019-04-26 17:01:00,240 5th St, New York City,NY,10001 +178893,Lightning Charging Cable,1,14.95,2019-04-14 22:24:00,516 5th St, San Francisco,CA,94016 +178894,AAA Batteries (4-pack),1,2.99,2019-04-08 02:55:00,523 Jackson St, Atlanta,GA,30301 +178895,Apple Airpods Headphones,1,150.0,2019-04-11 13:15:00,570 Hill St, New York City,NY,10001 +178896,Apple Airpods Headphones,1,150.0,2019-04-11 10:42:00,308 4th St, San Francisco,CA,94016 +178897,Google Phone,1,600.0,2019-04-26 12:00:00,684 13th St, Seattle,WA,98101 +178898,34in Ultrawide Monitor,1,379.99,2019-04-06 09:49:00,661 Forest St, San Francisco,CA,94016 +178899,20in Monitor,1,109.99,2019-04-29 22:18:00,406 Chestnut St, Los Angeles,CA,90001 +178900,AA Batteries (4-pack),2,3.84,2019-04-13 21:11:00,882 Washington St, San Francisco,CA,94016 +178901,USB-C Charging Cable,1,11.95,2019-04-28 17:07:00,76 Park St, San Francisco,CA,94016 +178902,27in FHD Monitor,1,149.99,2019-04-13 12:15:00,310 9th St, New York City,NY,10001 +178903,USB-C Charging Cable,1,11.95,2019-04-20 10:46:00,523 Dogwood St, Boston,MA,02215 +178904,AAA Batteries (4-pack),1,2.99,2019-04-16 20:44:00,348 Center St, Los Angeles,CA,90001 +178905,LG Dryer,1,600.0,2019-04-19 13:33:00,22 Adams St, New York City,NY,10001 +178906,LG Washing Machine,1,600.0,2019-04-07 11:01:00,994 Chestnut St, San Francisco,CA,94016 +178907,AAA Batteries (4-pack),1,2.99,2019-04-12 18:39:00,80 14th St, San Francisco,CA,94016 +178908,Lightning Charging Cable,1,14.95,2019-04-22 12:01:00,35 Jefferson St, New York City,NY,10001 +178909,Lightning Charging Cable,1,14.95,2019-04-07 17:10:00,544 Chestnut St, Portland,ME,04101 +178910,27in FHD Monitor,1,149.99,2019-04-13 14:49:00,58 11th St, New York City,NY,10001 +178911,27in FHD Monitor,1,149.99,2019-04-25 19:11:00,92 14th St, Portland,OR,97035 +178912,Wired Headphones,1,11.99,2019-04-03 23:29:00,913 South St, Seattle,WA,98101 +178913,Lightning Charging Cable,1,14.95,2019-04-06 05:12:00,392 8th St, Portland,OR,97035 +178914,Wired Headphones,1,11.99,2019-04-04 11:38:00,217 Cedar St, San Francisco,CA,94016 +178915,AA Batteries (4-pack),1,3.84,2019-04-25 15:46:00,654 12th St, San Francisco,CA,94016 +178916,USB-C Charging Cable,1,11.95,2019-04-13 19:11:00,868 10th St, Boston,MA,02215 +178917,Lightning Charging Cable,1,14.95,2019-04-24 21:10:00,616 Hickory St, Portland,OR,97035 +178918,AA Batteries (4-pack),1,3.84,2019-04-23 05:01:00,317 Meadow St, San Francisco,CA,94016 +178919,Bose SoundSport Headphones,1,99.99,2019-04-09 15:26:00,373 Madison St, San Francisco,CA,94016 +178920,34in Ultrawide Monitor,1,379.99,2019-04-21 21:15:00,590 12th St, Portland,OR,97035 +178921,Bose SoundSport Headphones,1,99.99,2019-04-25 20:51:00,888 Sunset St, Los Angeles,CA,90001 +178922,27in FHD Monitor,1,149.99,2019-04-27 10:42:00,526 Sunset St, San Francisco,CA,94016 +178923,iPhone,1,700.0,2019-04-17 21:05:00,381 Cherry St, San Francisco,CA,94016 +178924,Lightning Charging Cable,1,14.95,2019-04-18 07:53:00,931 Cedar St, Austin,TX,73301 +178925,AA Batteries (4-pack),1,3.84,2019-04-28 01:09:00,569 Lincoln St, Seattle,WA,98101 +178926,AA Batteries (4-pack),1,3.84,2019-04-05 15:40:00,908 Cherry St, Portland,OR,97035 +178927,Wired Headphones,1,11.99,2019-04-22 11:32:00,908 Johnson St, Dallas,TX,75001 +178928,20in Monitor,1,109.99,2019-04-07 15:09:00,775 North St, Boston,MA,02215 +178929,Lightning Charging Cable,1,14.95,2019-04-14 10:35:00,41 Lakeview St, Boston,MA,02215 +178930,AA Batteries (4-pack),1,3.84,2019-04-18 20:44:00,74 Adams St, San Francisco,CA,94016 +178931,USB-C Charging Cable,1,11.95,2019-04-03 21:12:00,72 Lincoln St, Boston,MA,02215 +178932,Wired Headphones,1,11.99,2019-04-04 20:26:00,440 Wilson St, Portland,OR,97035 +178933,Lightning Charging Cable,1,14.95,2019-04-24 22:57:00,194 Sunset St, San Francisco,CA,94016 +178934,Bose SoundSport Headphones,1,99.99,2019-04-24 10:03:00,180 Madison St, Seattle,WA,98101 +178935,Google Phone,1,600.0,2019-04-16 15:35:00,725 Wilson St, Los Angeles,CA,90001 +178936,AAA Batteries (4-pack),1,2.99,2019-04-01 19:54:00,373 6th St, Atlanta,GA,30301 +178937,ThinkPad Laptop,1,999.99,2019-04-04 19:24:00,196 Jackson St, San Francisco,CA,94016 +178938,AAA Batteries (4-pack),1,2.99,2019-04-22 09:53:00,227 Forest St, Boston,MA,02215 +178939,iPhone,1,700.0,2019-04-03 15:54:00,793 Washington St, Seattle,WA,98101 +178940,Lightning Charging Cable,1,14.95,2019-04-29 19:45:00,320 Forest St, San Francisco,CA,94016 +178941,Apple Airpods Headphones,1,150.0,2019-04-06 10:22:00,747 Highland St, San Francisco,CA,94016 +178942,20in Monitor,1,109.99,2019-04-25 08:35:00,859 South St, Seattle,WA,98101 +178943,20in Monitor,1,109.99,2019-04-26 07:35:00,561 Lake St, Seattle,WA,98101 +178944,AAA Batteries (4-pack),1,2.99,2019-04-09 14:13:00,380 14th St, New York City,NY,10001 +178945,Flatscreen TV,1,300.0,2019-04-27 16:48:00,276 13th St, Los Angeles,CA,90001 +178946,Wired Headphones,1,11.99,2019-04-30 12:45:00,832 Hill St, Los Angeles,CA,90001 +178947,27in FHD Monitor,1,149.99,2019-04-22 17:27:00,344 4th St, San Francisco,CA,94016 +178948,USB-C Charging Cable,1,11.95,2019-04-09 19:42:00,41 Dogwood St, Los Angeles,CA,90001 +178949,27in FHD Monitor,1,149.99,2019-04-12 01:11:00,200 Jefferson St, Los Angeles,CA,90001 +178950,Wired Headphones,1,11.99,2019-04-19 13:17:00,518 Forest St, Portland,ME,04101 +178951,AAA Batteries (4-pack),1,2.99,2019-04-14 21:31:00,784 Dogwood St, San Francisco,CA,94016 +178952,USB-C Charging Cable,1,11.95,2019-04-28 18:45:00,339 Center St, Portland,OR,97035 +178953,27in FHD Monitor,1,149.99,2019-04-24 07:16:00,828 Adams St, Los Angeles,CA,90001 +178954,Google Phone,1,600.0,2019-04-17 17:12:00,400 11th St, Boston,MA,02215 +178954,USB-C Charging Cable,1,11.95,2019-04-17 17:12:00,400 11th St, Boston,MA,02215 +178955,34in Ultrawide Monitor,1,379.99,2019-04-21 22:45:00,799 Forest St, San Francisco,CA,94016 +178956,USB-C Charging Cable,1,11.95,2019-04-09 20:20:00,523 Church St, Seattle,WA,98101 +178957,27in FHD Monitor,1,149.99,2019-04-25 15:17:00,739 Highland St, Portland,OR,97035 +178958,Wired Headphones,1,11.99,2019-04-19 14:16:00,857 South St, San Francisco,CA,94016 +178959,AAA Batteries (4-pack),1,2.99,2019-04-07 12:56:00,812 West St, San Francisco,CA,94016 +178960,Wired Headphones,1,11.99,2019-04-14 21:05:00,63 Lake St, Atlanta,GA,30301 +178961,Lightning Charging Cable,1,14.95,2019-04-30 16:00:00,914 Chestnut St, Portland,OR,97035 +178962,Google Phone,1,600.0,2019-04-30 22:54:00,601 Chestnut St, Boston,MA,02215 +178963,USB-C Charging Cable,1,11.95,2019-04-27 10:14:00,340 Lincoln St, Los Angeles,CA,90001 +178964,AA Batteries (4-pack),1,3.84,2019-04-05 10:42:00,338 12th St, Boston,MA,02215 +178965,Lightning Charging Cable,1,14.95,2019-04-22 08:34:00,595 10th St, Los Angeles,CA,90001 +178966,Lightning Charging Cable,2,14.95,2019-04-15 15:56:00,974 Dogwood St, New York City,NY,10001 +178967,Google Phone,1,600.0,2019-04-27 11:09:00,651 4th St, Seattle,WA,98101 +178968,34in Ultrawide Monitor,1,379.99,2019-04-24 18:40:00,683 11th St, San Francisco,CA,94016 +178969,Bose SoundSport Headphones,1,99.99,2019-04-24 13:40:00,712 1st St, Portland,ME,04101 +178970,ThinkPad Laptop,1,999.99,2019-04-21 21:26:00,987 2nd St, Boston,MA,02215 +178971,AA Batteries (4-pack),1,3.84,2019-04-29 15:44:00,787 Maple St, Boston,MA,02215 +178972,USB-C Charging Cable,1,11.95,2019-04-28 10:11:00,75 6th St, Boston,MA,02215 +178973,Bose SoundSport Headphones,1,99.99,2019-04-10 22:55:00,608 Sunset St, Dallas,TX,75001 +178974,AAA Batteries (4-pack),1,2.99,2019-04-24 14:02:00,262 2nd St, San Francisco,CA,94016 +178975,27in 4K Gaming Monitor,1,389.99,2019-04-03 22:27:00,743 1st St, Seattle,WA,98101 +178976,iPhone,1,700.0,2019-04-23 08:54:00,90 Elm St, Los Angeles,CA,90001 +178977,AAA Batteries (4-pack),1,2.99,2019-04-11 17:29:00,558 Adams St, Los Angeles,CA,90001 +178978,20in Monitor,1,109.99,2019-04-11 10:41:00,113 Spruce St, New York City,NY,10001 +178979,27in FHD Monitor,1,149.99,2019-04-16 12:37:00,719 Lakeview St, San Francisco,CA,94016 +178980,27in 4K Gaming Monitor,1,389.99,2019-04-30 22:48:00,315 River St, Los Angeles,CA,90001 +178981,Wired Headphones,1,11.99,2019-04-07 13:02:00,10 Pine St, Dallas,TX,75001 +178982,Wired Headphones,1,11.99,2019-04-10 13:18:00,80 Maple St, Austin,TX,73301 +178983,Lightning Charging Cable,1,14.95,2019-04-01 21:17:00,491 Maple St, New York City,NY,10001 +178984,AA Batteries (4-pack),1,3.84,2019-04-16 10:37:00,266 Washington St, San Francisco,CA,94016 +178985,Apple Airpods Headphones,1,150.0,2019-04-24 13:59:00,637 10th St, Portland,OR,97035 +178986,AAA Batteries (4-pack),1,2.99,2019-04-11 09:20:00,864 Hill St, San Francisco,CA,94016 +178987,USB-C Charging Cable,1,11.95,2019-04-10 14:04:00,136 West St, New York City,NY,10001 +178988,AAA Batteries (4-pack),1,2.99,2019-04-18 20:29:00,334 Dogwood St, Los Angeles,CA,90001 +178989,Vareebadd Phone,1,400.0,2019-04-10 12:30:00,891 Jefferson St, San Francisco,CA,94016 +178989,USB-C Charging Cable,1,11.95,2019-04-10 12:30:00,891 Jefferson St, San Francisco,CA,94016 +178990,Google Phone,1,600.0,2019-04-10 01:39:00,417 13th St, San Francisco,CA,94016 +178990,USB-C Charging Cable,1,11.95,2019-04-10 01:39:00,417 13th St, San Francisco,CA,94016 +178991,ThinkPad Laptop,1,999.99,2019-04-27 14:26:00,721 Maple St, Los Angeles,CA,90001 +178992,AAA Batteries (4-pack),4,2.99,2019-04-27 14:00:00,138 Spruce St, Seattle,WA,98101 +178993,Lightning Charging Cable,1,14.95,2019-04-19 15:40:00,794 Ridge St, San Francisco,CA,94016 +178994,Lightning Charging Cable,1,14.95,2019-04-29 19:36:00,643 6th St, New York City,NY,10001 +178995,USB-C Charging Cable,1,11.95,2019-04-07 09:21:00,33 Cherry St, San Francisco,CA,94016 +178996,Macbook Pro Laptop,1,1700.0,2019-04-16 00:32:00,950 8th St, Boston,MA,02215 +178997,Bose SoundSport Headphones,1,99.99,2019-04-02 19:10:00,414 Maple St, Dallas,TX,75001 +178998,20in Monitor,1,109.99,2019-04-11 15:27:00,4 8th St, New York City,NY,10001 +178999,LG Dryer,1,600.0,2019-04-18 20:56:00,129 7th St, Austin,TX,73301 +179000,iPhone,1,700.0,2019-04-23 22:23:00,181 Cedar St, San Francisco,CA,94016 +179000,Lightning Charging Cable,1,14.95,2019-04-23 22:23:00,181 Cedar St, San Francisco,CA,94016 +179001,AAA Batteries (4-pack),1,2.99,2019-04-05 16:28:00,988 Elm St, Los Angeles,CA,90001 +179002,AAA Batteries (4-pack),1,2.99,2019-04-12 10:56:00,816 14th St, San Francisco,CA,94016 +179003,AA Batteries (4-pack),1,3.84,2019-04-09 20:00:00,781 Hill St, San Francisco,CA,94016 +179004,Wired Headphones,2,11.99,2019-04-26 12:15:00,374 5th St, Seattle,WA,98101 +179005,Apple Airpods Headphones,1,150.0,2019-04-19 09:29:00,727 7th St, Portland,OR,97035 +179006,AA Batteries (4-pack),3,3.84,2019-04-10 20:53:00,35 Adams St, San Francisco,CA,94016 +179007,Apple Airpods Headphones,1,150.0,2019-04-29 08:41:00,122 Chestnut St, Los Angeles,CA,90001 +179008,iPhone,1,700.0,2019-04-16 01:26:00,186 Maple St, Boston,MA,02215 +179009,AA Batteries (4-pack),1,3.84,2019-04-14 19:45:00,937 7th St, Los Angeles,CA,90001 +179010,Wired Headphones,1,11.99,2019-04-17 11:38:00,154 1st St, Portland,ME,04101 +179011,Lightning Charging Cable,1,14.95,2019-04-28 07:13:00,87 7th St, Seattle,WA,98101 +179012,Lightning Charging Cable,1,14.95,2019-04-18 18:03:00,86 Church St, Los Angeles,CA,90001 +179013,27in FHD Monitor,1,149.99,2019-04-09 08:38:00,944 Willow St, Atlanta,GA,30301 +179014,Lightning Charging Cable,1,14.95,2019-04-04 11:56:00,413 4th St, New York City,NY,10001 +179015,27in 4K Gaming Monitor,1,389.99,2019-04-29 20:00:00,167 Wilson St, San Francisco,CA,94016 +179016,Apple Airpods Headphones,1,150.0,2019-04-23 10:39:00,477 Hill St, Seattle,WA,98101 +179017,Apple Airpods Headphones,1,150.0,2019-04-27 12:37:00,109 Lakeview St, Portland,OR,97035 +179018,iPhone,1,700.0,2019-04-23 21:23:00,913 2nd St, Dallas,TX,75001 +179019,Wired Headphones,1,11.99,2019-04-11 11:53:00,922 Maple St, New York City,NY,10001 +179020,Lightning Charging Cable,1,14.95,2019-04-28 13:04:00,758 9th St, San Francisco,CA,94016 +179021,AA Batteries (4-pack),1,3.84,2019-04-19 19:46:00,51 Main St, Boston,MA,02215 +179022,AA Batteries (4-pack),2,3.84,2019-04-25 08:09:00,561 Maple St, San Francisco,CA,94016 +179023,AA Batteries (4-pack),2,3.84,2019-04-18 18:50:00,585 Spruce St, Los Angeles,CA,90001 +179024,Google Phone,1,600.0,2019-04-13 20:02:00,475 Lake St, New York City,NY,10001 +179025,Flatscreen TV,1,300.0,2019-04-20 17:39:00,594 13th St, Atlanta,GA,30301 +179026,AAA Batteries (4-pack),1,2.99,2019-04-11 16:58:00,804 14th St, Atlanta,GA,30301 +179027,27in 4K Gaming Monitor,1,389.99,2019-04-11 12:23:00,78 Center St, Seattle,WA,98101 +179028,27in 4K Gaming Monitor,1,389.99,2019-04-12 14:56:00,774 12th St, Seattle,WA,98101 +179028,Bose SoundSport Headphones,1,99.99,2019-04-12 14:56:00,774 12th St, Seattle,WA,98101 +179029,Bose SoundSport Headphones,1,99.99,2019-04-01 16:01:00,58 1st St, San Francisco,CA,94016 +179030,34in Ultrawide Monitor,1,379.99,2019-04-26 10:28:00,206 Lake St, Los Angeles,CA,90001 +179031,Lightning Charging Cable,1,14.95,2019-04-28 00:10:00,456 Park St, San Francisco,CA,94016 +179032,USB-C Charging Cable,1,11.95,2019-04-03 16:50:00,330 Walnut St, Los Angeles,CA,90001 +179033,Lightning Charging Cable,1,14.95,2019-04-15 17:05:00,910 Elm St, San Francisco,CA,94016 +179034,Flatscreen TV,1,300.0,2019-04-21 16:05:00,260 Lake St, New York City,NY,10001 +179035,34in Ultrawide Monitor,1,379.99,2019-04-24 08:10:00,800 Lakeview St, Dallas,TX,75001 +179036,AA Batteries (4-pack),1,3.84,2019-04-14 14:28:00,824 Maple St, Austin,TX,73301 +179037,Apple Airpods Headphones,1,150.0,2019-04-12 10:47:00,127 14th St, Boston,MA,02215 +179038,Wired Headphones,2,11.99,2019-04-11 18:25:00,991 Walnut St, Boston,MA,02215 +179039,Wired Headphones,1,11.99,2019-04-15 15:37:00,914 Hickory St, San Francisco,CA,94016 +179040,34in Ultrawide Monitor,1,379.99,2019-04-04 13:49:00,398 Willow St, San Francisco,CA,94016 +179041,Wired Headphones,1,11.99,2019-04-04 17:50:00,270 13th St, San Francisco,CA,94016 +179042,AAA Batteries (4-pack),1,2.99,2019-04-04 11:14:00,900 West St, New York City,NY,10001 +179043,AA Batteries (4-pack),1,3.84,2019-04-11 19:04:00,467 5th St, Los Angeles,CA,90001 +179044,AAA Batteries (4-pack),1,2.99,2019-04-16 20:06:00,957 Cherry St, San Francisco,CA,94016 +179045,Bose SoundSport Headphones,1,99.99,2019-04-23 21:06:00,884 Center St, Dallas,TX,75001 +179046,AA Batteries (4-pack),2,3.84,2019-04-03 17:57:00,44 Wilson St, Los Angeles,CA,90001 +179047,20in Monitor,1,109.99,2019-04-26 22:54:00,635 Forest St, New York City,NY,10001 +179048,27in FHD Monitor,1,149.99,2019-04-25 18:51:00,102 North St, San Francisco,CA,94016 +179049,20in Monitor,1,109.99,2019-04-04 21:32:00,326 Church St, Seattle,WA,98101 +179050,Bose SoundSport Headphones,1,99.99,2019-04-26 14:46:00,411 Walnut St, San Francisco,CA,94016 +179051,Apple Airpods Headphones,1,150.0,2019-04-05 18:35:00,561 Washington St, Boston,MA,02215 +179052,20in Monitor,1,109.99,2019-04-08 17:06:00,638 9th St, San Francisco,CA,94016 +179053,Apple Airpods Headphones,1,150.0,2019-04-25 05:54:00,679 Park St, New York City,NY,10001 +179054,Google Phone,1,600.0,2019-04-17 16:12:00,966 Jackson St, Seattle,WA,98101 +179055,USB-C Charging Cable,1,11.95,2019-04-22 16:08:00,295 Adams St, Dallas,TX,75001 +179056,Vareebadd Phone,1,400.0,2019-04-19 23:55:00,71 Johnson St, Dallas,TX,75001 +179057,Google Phone,1,600.0,2019-04-10 21:39:00,820 13th St, New York City,NY,10001 +179057,USB-C Charging Cable,1,11.95,2019-04-10 21:39:00,820 13th St, New York City,NY,10001 +179058,Apple Airpods Headphones,1,150.0,2019-04-23 20:30:00,203 2nd St, San Francisco,CA,94016 +179059,Apple Airpods Headphones,1,150.0,2019-04-17 11:42:00,870 7th St, Boston,MA,02215 +179060,ThinkPad Laptop,1,999.99,2019-04-03 12:37:00,566 11th St, Los Angeles,CA,90001 +179061,AA Batteries (4-pack),2,3.84,2019-04-22 20:17:00,143 Hickory St, Seattle,WA,98101 +179062,Lightning Charging Cable,2,14.95,2019-04-10 13:43:00,346 Walnut St, Boston,MA,02215 +179063,AAA Batteries (4-pack),2,2.99,2019-04-05 19:46:00,216 Cherry St, San Francisco,CA,94016 +179064,AAA Batteries (4-pack),1,2.99,2019-04-03 16:47:00,931 11th St, New York City,NY,10001 +179065,Lightning Charging Cable,1,14.95,2019-04-24 10:41:00,449 8th St, New York City,NY,10001 +179066,Lightning Charging Cable,1,14.95,2019-04-03 13:36:00,188 7th St, Austin,TX,73301 +179067,27in FHD Monitor,1,149.99,2019-04-19 11:18:00,47 Madison St, Portland,ME,04101 +179068,Bose SoundSport Headphones,1,99.99,2019-04-18 10:40:00,716 Jackson St, Portland,OR,97035 +179069,Apple Airpods Headphones,1,150.0,2019-04-01 08:06:00,368 10th St, Los Angeles,CA,90001 +179070,AA Batteries (4-pack),4,3.84,2019-04-02 16:45:00,137 Wilson St, New York City,NY,10001 +179071,AA Batteries (4-pack),1,3.84,2019-04-25 14:06:00,884 Willow St, Los Angeles,CA,90001 +179072,AAA Batteries (4-pack),1,2.99,2019-04-09 11:15:00,412 River St, Los Angeles,CA,90001 +179073,Wired Headphones,1,11.99,2019-04-09 15:42:00,206 2nd St, Seattle,WA,98101 +179074,AA Batteries (4-pack),1,3.84,2019-04-17 01:36:00,502 Sunset St, San Francisco,CA,94016 +179075,Wired Headphones,1,11.99,2019-04-28 17:49:00,782 Cherry St, Portland,OR,97035 +179076,Google Phone,1,600.0,2019-05-01 00:17:00,635 Chestnut St, San Francisco,CA,94016 +179076,USB-C Charging Cable,1,11.95,2019-05-01 00:17:00,635 Chestnut St, San Francisco,CA,94016 +179077,Wired Headphones,1,11.99,2019-04-11 18:29:00,565 Lincoln St, Boston,MA,02215 +179078,Bose SoundSport Headphones,1,99.99,2019-04-09 14:38:00,924 6th St, Atlanta,GA,30301 +179079,AAA Batteries (4-pack),1,2.99,2019-04-08 00:22:00,698 Elm St, San Francisco,CA,94016 +179080,Apple Airpods Headphones,1,150.0,2019-04-10 20:28:00,714 Lincoln St, San Francisco,CA,94016 +179081,27in FHD Monitor,1,149.99,2019-04-27 12:51:00,484 Lincoln St, San Francisco,CA,94016 +179082,USB-C Charging Cable,1,11.95,2019-04-14 22:57:00,28 Main St, Dallas,TX,75001 +179083,Google Phone,1,600.0,2019-04-06 21:59:00,902 Chestnut St, Austin,TX,73301 +179084,AAA Batteries (4-pack),1,2.99,2019-04-08 10:32:00,580 6th St, San Francisco,CA,94016 +179085,Lightning Charging Cable,1,14.95,2019-04-09 15:11:00,280 5th St, San Francisco,CA,94016 +179086,Wired Headphones,1,11.99,2019-04-12 14:36:00,227 Walnut St, Dallas,TX,75001 +179087,27in FHD Monitor,1,149.99,2019-04-21 20:42:00,636 Center St, Los Angeles,CA,90001 +179088,AAA Batteries (4-pack),1,2.99,2019-04-18 18:48:00,11 Center St, San Francisco,CA,94016 +179089,AAA Batteries (4-pack),1,2.99,2019-04-02 12:14:00,229 Park St, Seattle,WA,98101 +179090,Apple Airpods Headphones,1,150.0,2019-04-29 21:32:00,716 12th St, Seattle,WA,98101 +179091,27in 4K Gaming Monitor,1,389.99,2019-04-11 06:31:00,264 Park St, New York City,NY,10001 +179092,USB-C Charging Cable,1,11.95,2019-04-29 23:04:00,96 South St, Boston,MA,02215 +179093,AA Batteries (4-pack),1,3.84,2019-04-24 08:14:00,759 Spruce St, Los Angeles,CA,90001 +179094,Apple Airpods Headphones,1,150.0,2019-04-06 16:05:00,1 Highland St, San Francisco,CA,94016 +179095,Wired Headphones,1,11.99,2019-04-25 12:35:00,406 7th St, San Francisco,CA,94016 +179096,USB-C Charging Cable,1,11.95,2019-04-13 16:35:00,153 6th St, San Francisco,CA,94016 +179097,Apple Airpods Headphones,1,150.0,2019-04-29 11:27:00,772 Sunset St, Portland,OR,97035 +179098,Lightning Charging Cable,1,14.95,2019-04-20 11:37:00,278 Chestnut St, San Francisco,CA,94016 +179099,Flatscreen TV,1,300.0,2019-04-24 15:48:00,758 Pine St, San Francisco,CA,94016 +179100,USB-C Charging Cable,1,11.95,2019-04-15 19:47:00,594 Lakeview St, Dallas,TX,75001 +179101,USB-C Charging Cable,1,11.95,2019-04-23 11:34:00,394 13th St, New York City,NY,10001 +179102,iPhone,1,700.0,2019-04-13 20:50:00,261 Wilson St, San Francisco,CA,94016 +179103,Flatscreen TV,1,300.0,2019-04-18 20:52:00,291 Sunset St, New York City,NY,10001 +179104,Lightning Charging Cable,1,14.95,2019-04-10 21:43:00,188 Hickory St, Dallas,TX,75001 +179105,iPhone,1,700.0,2019-04-09 21:49:00,615 Adams St, Portland,ME,04101 +179106,iPhone,1,700.0,2019-04-26 11:23:00,529 9th St, Austin,TX,73301 +179107,Google Phone,1,600.0,2019-04-07 12:32:00,312 Center St, Los Angeles,CA,90001 +179108,Lightning Charging Cable,1,14.95,2019-04-21 15:09:00,828 West St, New York City,NY,10001 +179108,AAA Batteries (4-pack),1,2.99,2019-04-21 15:09:00,828 West St, New York City,NY,10001 +179109,Flatscreen TV,1,300.0,2019-04-21 19:44:00,312 13th St, Atlanta,GA,30301 +179110,Bose SoundSport Headphones,1,99.99,2019-04-01 17:30:00,759 Lake St, Atlanta,GA,30301 +179111,Wired Headphones,1,11.99,2019-04-15 13:22:00,348 13th St, San Francisco,CA,94016 +179112,Bose SoundSport Headphones,1,99.99,2019-04-16 01:16:00,33 Washington St, New York City,NY,10001 +179113,AA Batteries (4-pack),3,3.84,2019-04-09 21:22:00,371 2nd St, Portland,OR,97035 +179114,Lightning Charging Cable,1,14.95,2019-04-22 21:33:00,676 Cedar St, Seattle,WA,98101 +179115,Flatscreen TV,1,300.0,2019-04-22 20:03:00,345 Adams St, San Francisco,CA,94016 +179116,Wired Headphones,1,11.99,2019-04-19 13:34:00,801 Pine St, Los Angeles,CA,90001 +179117,USB-C Charging Cable,2,11.95,2019-04-16 13:29:00,433 Pine St, San Francisco,CA,94016 +179118,Lightning Charging Cable,2,14.95,2019-04-22 19:45:00,493 Hickory St, New York City,NY,10001 +179119,iPhone,1,700.0,2019-04-08 14:18:00,994 Jackson St, San Francisco,CA,94016 +179120,AA Batteries (4-pack),3,3.84,2019-04-28 17:25:00,764 8th St, San Francisco,CA,94016 +179121,Wired Headphones,1,11.99,2019-04-19 18:46:00,975 Chestnut St, San Francisco,CA,94016 +179122,27in FHD Monitor,1,149.99,2019-04-19 10:30:00,759 Meadow St, San Francisco,CA,94016 +179123,27in FHD Monitor,1,149.99,2019-04-03 15:14:00,107 6th St, Atlanta,GA,30301 +179124,27in FHD Monitor,1,149.99,2019-04-26 18:32:00,672 Highland St, New York City,NY,10001 +179125,AAA Batteries (4-pack),2,2.99,2019-04-07 13:04:00,122 1st St, Los Angeles,CA,90001 +179126,Wired Headphones,1,11.99,2019-04-30 19:53:00,602 Lakeview St, Seattle,WA,98101 +179127,Lightning Charging Cable,1,14.95,2019-04-21 09:54:00,468 Lake St, San Francisco,CA,94016 +179128,iPhone,1,700.0,2019-04-26 19:20:00,10 Ridge St, San Francisco,CA,94016 +179128,Apple Airpods Headphones,1,150.0,2019-04-26 19:20:00,10 Ridge St, San Francisco,CA,94016 +179129,iPhone,1,700.0,2019-04-12 18:19:00,416 Willow St, Atlanta,GA,30301 +179130,27in FHD Monitor,1,149.99,2019-04-15 22:30:00,537 Lakeview St, Los Angeles,CA,90001 +179131,Lightning Charging Cable,1,14.95,2019-04-06 08:07:00,414 Spruce St, Atlanta,GA,30301 +179132,Wired Headphones,1,11.99,2019-04-30 08:57:00,60 5th St, Austin,TX,73301 +179133,AAA Batteries (4-pack),1,2.99,2019-04-04 12:29:00,468 13th St, Los Angeles,CA,90001 +179134,Apple Airpods Headphones,1,150.0,2019-05-01 02:41:00,950 Church St, Los Angeles,CA,90001 +179135,Bose SoundSport Headphones,1,99.99,2019-04-09 10:00:00,212 2nd St, Dallas,TX,75001 +179136,USB-C Charging Cable,1,11.95,2019-04-04 12:31:00,857 Wilson St, Austin,TX,73301 +179137,Macbook Pro Laptop,1,1700.0,2019-04-16 16:53:00,623 Walnut St, Austin,TX,73301 +179138,Bose SoundSport Headphones,1,99.99,2019-04-12 19:44:00,482 Spruce St, Los Angeles,CA,90001 +179139,USB-C Charging Cable,1,11.95,2019-04-02 13:24:00,425 13th St, Los Angeles,CA,90001 +179140,AA Batteries (4-pack),1,3.84,2019-04-14 18:26:00,577 Park St, San Francisco,CA,94016 +179141,Wired Headphones,1,11.99,2019-04-27 07:36:00,532 Walnut St, San Francisco,CA,94016 +179142,27in 4K Gaming Monitor,1,389.99,2019-04-12 14:45:00,627 1st St, San Francisco,CA,94016 +179143,USB-C Charging Cable,1,11.95,2019-04-15 01:52:00,57 1st St, Boston,MA,02215 +179144,34in Ultrawide Monitor,1,379.99,2019-04-14 14:35:00,880 Center St, San Francisco,CA,94016 +179145,27in FHD Monitor,1,149.99,2019-04-05 20:09:00,127 Dogwood St, Los Angeles,CA,90001 +179146,USB-C Charging Cable,1,11.95,2019-04-13 13:10:00,432 10th St, Dallas,TX,75001 +179147,USB-C Charging Cable,1,11.95,2019-04-02 14:37:00,471 Highland St, New York City,NY,10001 +179148,ThinkPad Laptop,1,999.99,2019-04-27 10:56:00,716 South St, Los Angeles,CA,90001 +179149,Wired Headphones,1,11.99,2019-04-11 15:09:00,251 7th St, Boston,MA,02215 +179150,Bose SoundSport Headphones,1,99.99,2019-04-29 17:34:00,935 Spruce St, Dallas,TX,75001 +179151,Wired Headphones,2,11.99,2019-04-13 23:57:00,232 Hickory St, Los Angeles,CA,90001 +179152,USB-C Charging Cable,1,11.95,2019-04-24 12:29:00,924 11th St, Austin,TX,73301 +179153,AAA Batteries (4-pack),2,2.99,2019-04-24 09:58:00,816 14th St, Austin,TX,73301 +179154,Lightning Charging Cable,1,14.95,2019-04-26 12:37:00,544 Spruce St, Boston,MA,02215 +179155,Wired Headphones,1,11.99,2019-04-30 12:16:00,913 Pine St, San Francisco,CA,94016 +179156,AAA Batteries (4-pack),2,2.99,2019-04-23 00:13:00,25 Church St, Los Angeles,CA,90001 +179157,Google Phone,1,600.0,2019-04-16 20:50:00,515 Meadow St, San Francisco,CA,94016 +179158,Macbook Pro Laptop,1,1700.0,2019-04-03 17:29:00,737 Cherry St, Los Angeles,CA,90001 +179159,Lightning Charging Cable,1,14.95,2019-04-20 19:11:00,29 Church St, Boston,MA,02215 +179160,AA Batteries (4-pack),2,3.84,2019-04-27 12:51:00,410 2nd St, Boston,MA,02215 +179161,27in 4K Gaming Monitor,1,389.99,2019-04-16 16:35:00,522 1st St, San Francisco,CA,94016 +179162,Google Phone,1,600.0,2019-04-23 16:51:00,513 Sunset St, New York City,NY,10001 +179162,USB-C Charging Cable,1,11.95,2019-04-23 16:51:00,513 Sunset St, New York City,NY,10001 +179163,AAA Batteries (4-pack),1,2.99,2019-04-20 09:33:00,669 Maple St, New York City,NY,10001 +179164,Macbook Pro Laptop,1,1700.0,2019-04-22 09:47:00,793 Center St, Portland,ME,04101 +179165,Lightning Charging Cable,1,14.95,2019-04-27 23:19:00,519 Lakeview St, Los Angeles,CA,90001 +179166,Lightning Charging Cable,1,14.95,2019-04-30 01:41:00,685 North St, Los Angeles,CA,90001 +179167,34in Ultrawide Monitor,1,379.99,2019-04-07 19:41:00,883 Center St, Austin,TX,73301 +179168,Wired Headphones,1,11.99,2019-04-14 22:03:00,644 11th St, Seattle,WA,98101 +179169,34in Ultrawide Monitor,1,379.99,2019-04-03 22:21:00,347 Lakeview St, San Francisco,CA,94016 +179170,34in Ultrawide Monitor,1,379.99,2019-04-29 13:30:00,522 Center St, Atlanta,GA,30301 +179171,AAA Batteries (4-pack),3,2.99,2019-04-29 21:27:00,808 Pine St, Los Angeles,CA,90001 +179172,Lightning Charging Cable,1,14.95,2019-04-22 18:33:00,885 Chestnut St, Boston,MA,02215 +179173,Bose SoundSport Headphones,1,99.99,2019-04-27 00:03:00,410 Wilson St, Dallas,TX,75001 +179174,LG Washing Machine,1,600.0,2019-04-04 15:12:00,201 Ridge St, Los Angeles,CA,90001 +179175,AAA Batteries (4-pack),1,2.99,2019-04-25 09:14:00,809 Cherry St, San Francisco,CA,94016 +179176,AAA Batteries (4-pack),1,2.99,2019-04-20 20:28:00,819 Chestnut St, San Francisco,CA,94016 +179177,USB-C Charging Cable,1,11.95,2019-04-10 10:07:00,428 West St, Boston,MA,02215 +179178,27in FHD Monitor,1,149.99,2019-04-05 17:45:00,985 Ridge St, Atlanta,GA,30301 +179179,Bose SoundSport Headphones,1,99.99,2019-04-08 10:18:00,982 Lakeview St, Boston,MA,02215 +179180,27in 4K Gaming Monitor,1,389.99,2019-04-21 21:58:00,915 Maple St, Los Angeles,CA,90001 +179181,USB-C Charging Cable,1,11.95,2019-04-06 19:16:00,143 Church St, San Francisco,CA,94016 +179182,AA Batteries (4-pack),1,3.84,2019-04-29 19:35:00,186 Sunset St, Boston,MA,02215 +179183,Bose SoundSport Headphones,1,99.99,2019-04-22 21:45:00,420 Church St, Portland,OR,97035 +179184,Vareebadd Phone,1,400.0,2019-04-24 12:16:00,805 Cherry St, New York City,NY,10001 +179185,Wired Headphones,1,11.99,2019-04-15 22:01:00,83 Cedar St, Portland,OR,97035 +179186,ThinkPad Laptop,1,999.99,2019-04-08 17:44:00,981 6th St, Los Angeles,CA,90001 +179187,Lightning Charging Cable,1,14.95,2019-04-28 18:29:00,516 Jefferson St, Portland,OR,97035 +179188,34in Ultrawide Monitor,1,379.99,2019-04-13 12:37:00,44 Washington St, Boston,MA,02215 +179189,Apple Airpods Headphones,1,150.0,2019-04-24 16:44:00,272 Sunset St, New York City,NY,10001 +179190,iPhone,1,700.0,2019-04-25 14:06:00,220 Maple St, San Francisco,CA,94016 +179191,Wired Headphones,1,11.99,2019-04-28 19:33:00,67 Lake St, Austin,TX,73301 +179192,AAA Batteries (4-pack),3,2.99,2019-04-01 12:57:00,187 2nd St, New York City,NY,10001 +179193,AAA Batteries (4-pack),1,2.99,2019-04-22 12:57:00,915 6th St, San Francisco,CA,94016 +179194,ThinkPad Laptop,1,999.99,2019-04-30 20:20:00,50 Meadow St, Dallas,TX,75001 +179195,USB-C Charging Cable,1,11.95,2019-04-26 11:45:00,840 Lincoln St, San Francisco,CA,94016 +179196,USB-C Charging Cable,1,11.95,2019-04-29 10:31:00,402 Church St, New York City,NY,10001 +179197,USB-C Charging Cable,1,11.95,2019-04-15 17:28:00,446 Madison St, Los Angeles,CA,90001 +179198,Wired Headphones,1,11.99,2019-04-04 00:17:00,640 5th St, Atlanta,GA,30301 +179199,Flatscreen TV,1,300.0,2019-04-20 15:49:00,667 Cherry St, San Francisco,CA,94016 +179200,Lightning Charging Cable,1,14.95,2019-04-03 13:50:00,979 River St, Boston,MA,02215 +179201,Apple Airpods Headphones,1,150.0,2019-04-24 10:48:00,814 Dogwood St, Atlanta,GA,30301 +179202,AA Batteries (4-pack),2,3.84,2019-04-20 17:22:00,515 2nd St, Dallas,TX,75001 +179203,AA Batteries (4-pack),1,3.84,2019-04-22 20:46:00,930 Wilson St, Boston,MA,02215 +179204,AAA Batteries (4-pack),2,2.99,2019-04-28 11:03:00,67 Main St, San Francisco,CA,94016 +179205,34in Ultrawide Monitor,1,379.99,2019-04-02 20:20:00,74 Chestnut St, Seattle,WA,98101 +179206,Wired Headphones,1,11.99,2019-04-01 14:39:00,923 Main St, Seattle,WA,98101 +179207,34in Ultrawide Monitor,1,379.99,2019-04-03 09:43:00,465 Wilson St, San Francisco,CA,94016 +179208,AA Batteries (4-pack),1,3.84,2019-04-22 20:22:00,586 River St, San Francisco,CA,94016 +179209,AA Batteries (4-pack),1,3.84,2019-04-16 17:27:00,926 8th St, Seattle,WA,98101 +179210,AA Batteries (4-pack),1,3.84,2019-04-28 09:07:00,666 4th St, Los Angeles,CA,90001 +179211,Wired Headphones,1,11.99,2019-04-12 16:32:00,72 7th St, Dallas,TX,75001 +179212,Lightning Charging Cable,2,14.95,2019-04-18 23:25:00,982 Elm St, Los Angeles,CA,90001 +179213,Wired Headphones,1,11.99,2019-04-12 09:41:00,546 Park St, San Francisco,CA,94016 +179214,Apple Airpods Headphones,1,150.0,2019-04-02 09:41:00,586 Spruce St, San Francisco,CA,94016 +179215,Bose SoundSport Headphones,1,99.99,2019-04-09 20:40:00,912 Lakeview St, New York City,NY,10001 +179216,27in 4K Gaming Monitor,1,389.99,2019-04-24 17:33:00,732 2nd St, San Francisco,CA,94016 +179217,Bose SoundSport Headphones,1,99.99,2019-04-25 23:09:00,518 Jackson St, San Francisco,CA,94016 +179218,Lightning Charging Cable,1,14.95,2019-04-30 18:59:00,379 7th St, San Francisco,CA,94016 +179219,Lightning Charging Cable,2,14.95,2019-04-20 04:53:00,119 7th St, Austin,TX,73301 +179220,34in Ultrawide Monitor,1,379.99,2019-04-25 08:14:00,748 Walnut St, Dallas,TX,75001 +179221,Lightning Charging Cable,1,14.95,2019-04-06 17:45:00,250 12th St, San Francisco,CA,94016 +179222,Macbook Pro Laptop,1,1700.0,2019-04-22 17:21:00,97 1st St, San Francisco,CA,94016 +179223,34in Ultrawide Monitor,1,379.99,2019-04-01 22:09:00,73 Adams St, San Francisco,CA,94016 +179224,Lightning Charging Cable,1,14.95,2019-04-12 19:50:00,499 Park St, San Francisco,CA,94016 +179225,20in Monitor,1,109.99,2019-04-21 23:16:00,928 West St, San Francisco,CA,94016 +179226,34in Ultrawide Monitor,1,379.99,2019-04-09 19:45:00,332 Adams St, New York City,NY,10001 +179226,Macbook Pro Laptop,1,1700.0,2019-04-09 19:45:00,332 Adams St, New York City,NY,10001 +179227,Apple Airpods Headphones,1,150.0,2019-04-25 12:40:00,53 Lincoln St, San Francisco,CA,94016 +179228,27in FHD Monitor,1,149.99,2019-04-08 20:03:00,531 12th St, New York City,NY,10001 +179229,27in FHD Monitor,1,149.99,2019-04-05 15:45:00,221 Maple St, Austin,TX,73301 +179230,AA Batteries (4-pack),1,3.84,2019-04-25 17:57:00,103 Center St, Atlanta,GA,30301 +179231,Apple Airpods Headphones,1,150.0,2019-04-19 14:41:00,596 9th St, Portland,OR,97035 +179232,Macbook Pro Laptop,1,1700.0,2019-04-12 09:02:00,597 Cherry St, Dallas,TX,75001 +179233,Bose SoundSport Headphones,1,99.99,2019-04-10 19:31:00,307 7th St, Seattle,WA,98101 +179234,Lightning Charging Cable,1,14.95,2019-04-06 14:47:00,568 10th St, Portland,OR,97035 +179235,27in 4K Gaming Monitor,1,389.99,2019-04-06 21:40:00,202 Sunset St, San Francisco,CA,94016 +179236,Lightning Charging Cable,1,14.95,2019-04-07 23:08:00,900 10th St, Boston,MA,02215 +179237,Google Phone,1,600.0,2019-04-29 16:16:00,833 13th St, Los Angeles,CA,90001 +179238,Flatscreen TV,1,300.0,2019-04-15 05:54:00,778 12th St, New York City,NY,10001 +179239,AA Batteries (4-pack),2,3.84,2019-04-11 16:57:00,759 Maple St, San Francisco,CA,94016 +179240,Apple Airpods Headphones,1,150.0,2019-04-14 21:05:00,978 Jefferson St, Seattle,WA,98101 +179241,USB-C Charging Cable,2,11.95,2019-04-11 09:48:00,271 Adams St, San Francisco,CA,94016 +179242,Macbook Pro Laptop,1,1700.0,2019-04-10 21:45:00,669 Park St, Portland,OR,97035 +179243,Wired Headphones,2,11.99,2019-04-16 23:20:00,219 South St, Los Angeles,CA,90001 +179244,AAA Batteries (4-pack),1,2.99,2019-04-04 11:30:00,764 Dogwood St, Atlanta,GA,30301 +179245,Bose SoundSport Headphones,1,99.99,2019-04-04 21:24:00,168 Pine St, San Francisco,CA,94016 +179246,Lightning Charging Cable,2,14.95,2019-04-13 13:23:00,114 Wilson St, San Francisco,CA,94016 +179247,AA Batteries (4-pack),1,3.84,2019-04-02 11:34:00,635 Hill St, Dallas,TX,75001 +179248,AA Batteries (4-pack),1,3.84,2019-04-07 01:16:00,190 River St, Los Angeles,CA,90001 +179249,Wired Headphones,1,11.99,2019-04-06 11:27:00,942 Cedar St, Los Angeles,CA,90001 +179250,Bose SoundSport Headphones,1,99.99,2019-04-16 17:33:00,882 Spruce St, New York City,NY,10001 +179251,Wired Headphones,1,11.99,2019-04-18 13:33:00,758 North St, Seattle,WA,98101 +179252,AA Batteries (4-pack),1,3.84,2019-04-25 05:12:00,161 8th St, Los Angeles,CA,90001 +179253,AAA Batteries (4-pack),1,2.99,2019-04-23 23:58:00,794 Spruce St, San Francisco,CA,94016 +179254,Wired Headphones,1,11.99,2019-04-30 12:38:00,397 Chestnut St, New York City,NY,10001 +179255,Lightning Charging Cable,1,14.95,2019-04-03 20:44:00,682 9th St, Seattle,WA,98101 +179256,Lightning Charging Cable,1,14.95,2019-04-17 18:10:00,714 Walnut St, Atlanta,GA,30301 +179257,Wired Headphones,1,11.99,2019-04-17 16:29:00,376 Johnson St, Austin,TX,73301 +179258,AAA Batteries (4-pack),2,2.99,2019-04-09 14:44:00,768 2nd St, Atlanta,GA,30301 +179259,34in Ultrawide Monitor,1,379.99,2019-04-07 18:40:00,979 Wilson St, Portland,OR,97035 +179260,AA Batteries (4-pack),1,3.84,2019-04-08 16:45:00,977 13th St, Dallas,TX,75001 +179261,Apple Airpods Headphones,1,150.0,2019-04-23 09:28:00,766 Hill St, New York City,NY,10001 +179262,USB-C Charging Cable,1,11.95,2019-04-08 19:57:00,913 Lake St, Los Angeles,CA,90001 +179263,Lightning Charging Cable,1,14.95,2019-04-15 11:22:00,291 Lincoln St, Seattle,WA,98101 +179264,AA Batteries (4-pack),1,3.84,2019-04-29 18:24:00,768 2nd St, Dallas,TX,75001 +179265,USB-C Charging Cable,1,11.95,2019-04-04 01:07:00,827 Dogwood St, Boston,MA,02215 +179266,USB-C Charging Cable,1,11.95,2019-04-27 05:35:00,171 Adams St, San Francisco,CA,94016 +179267,27in FHD Monitor,1,149.99,2019-04-27 23:47:00,671 West St, Boston,MA,02215 +179268,AA Batteries (4-pack),1,3.84,2019-04-25 15:52:00,215 Dogwood St, San Francisco,CA,94016 +179269,USB-C Charging Cable,1,11.95,2019-04-27 22:58:00,968 West St, New York City,NY,10001 +179270,iPhone,1,700.0,2019-04-01 20:38:00,36 River St, Los Angeles,CA,90001 +179270,Lightning Charging Cable,1,14.95,2019-04-01 20:38:00,36 River St, Los Angeles,CA,90001 +179271,Apple Airpods Headphones,1,150.0,2019-04-06 16:03:00,611 Sunset St, San Francisco,CA,94016 +179272,AA Batteries (4-pack),1,3.84,2019-04-04 10:27:00,934 Jefferson St, New York City,NY,10001 +179273,Lightning Charging Cable,1,14.95,2019-04-18 15:15:00,533 Highland St, Dallas,TX,75001 +179274,20in Monitor,1,109.99,2019-04-21 08:41:00,866 14th St, Atlanta,GA,30301 +179275,AA Batteries (4-pack),1,3.84,2019-04-26 15:13:00,359 Maple St, New York City,NY,10001 +179276,AA Batteries (4-pack),1,3.84,2019-04-12 11:16:00,111 Meadow St, San Francisco,CA,94016 +179277,AA Batteries (4-pack),1,3.84,2019-04-25 12:39:00,829 Wilson St, Boston,MA,02215 +179278,Apple Airpods Headphones,2,150.0,2019-04-03 08:18:00,334 Meadow St, Austin,TX,73301 +179279,20in Monitor,1,109.99,2019-04-22 09:41:00,796 Johnson St, Portland,OR,97035 +179280,iPhone,1,700.0,2019-04-15 05:52:00,666 Walnut St, San Francisco,CA,94016 +179281,Macbook Pro Laptop,1,1700.0,2019-04-25 16:06:00,835 13th St, San Francisco,CA,94016 +179282,Flatscreen TV,1,300.0,2019-04-02 14:57:00,165 Willow St, New York City,NY,10001 +179283,Google Phone,1,600.0,2019-04-30 18:39:00,248 Church St, San Francisco,CA,94016 +179284,USB-C Charging Cable,1,11.95,2019-04-20 07:31:00,422 Washington St, Boston,MA,02215 +179285,34in Ultrawide Monitor,1,379.99,2019-04-03 09:18:00,773 6th St, Portland,ME,04101 +179286,AA Batteries (4-pack),1,3.84,2019-04-28 20:11:00,568 Sunset St, Los Angeles,CA,90001 +179287,Flatscreen TV,1,300.0,2019-04-23 23:00:00,583 Wilson St, Boston,MA,02215 +179288,Lightning Charging Cable,1,14.95,2019-04-30 11:22:00,307 Cherry St, San Francisco,CA,94016 +179289,iPhone,1,700.0,2019-04-30 16:13:00,802 Johnson St, San Francisco,CA,94016 +179290,27in FHD Monitor,1,149.99,2019-04-05 11:58:00,266 Adams St, San Francisco,CA,94016 +179291,Lightning Charging Cable,1,14.95,2019-04-21 17:07:00,579 Lakeview St, New York City,NY,10001 +179292,AAA Batteries (4-pack),1,2.99,2019-04-02 18:47:00,128 8th St, San Francisco,CA,94016 +179293,USB-C Charging Cable,1,11.95,2019-04-04 16:34:00,129 Washington St, Dallas,TX,75001 +179294,Lightning Charging Cable,1,14.95,2019-04-09 23:55:00,962 Sunset St, Atlanta,GA,30301 +179295,27in 4K Gaming Monitor,1,389.99,2019-04-26 21:47:00,311 5th St, Atlanta,GA,30301 +179296,Apple Airpods Headphones,1,150.0,2019-04-10 09:54:00,809 Park St, San Francisco,CA,94016 +179297,Lightning Charging Cable,1,14.95,2019-04-22 09:44:00,152 Chestnut St, San Francisco,CA,94016 +179298,27in 4K Gaming Monitor,1,389.99,2019-04-20 16:05:00,207 Hickory St, Los Angeles,CA,90001 +179299,USB-C Charging Cable,1,11.95,2019-04-17 18:57:00,741 9th St, Boston,MA,02215 +179300,Wired Headphones,1,11.99,2019-04-20 18:14:00,572 Jackson St, Los Angeles,CA,90001 +179301,27in 4K Gaming Monitor,1,389.99,2019-04-06 13:04:00,530 11th St, Seattle,WA,98101 +179302,Lightning Charging Cable,1,14.95,2019-04-03 20:43:00,373 11th St, Los Angeles,CA,90001 +179303,Wired Headphones,1,11.99,2019-04-15 10:12:00,49 River St, New York City,NY,10001 +179304,34in Ultrawide Monitor,1,379.99,2019-04-30 20:56:00,48 Jefferson St, Los Angeles,CA,90001 +179305,Wired Headphones,2,11.99,2019-04-01 17:29:00,504 Lincoln St, New York City,NY,10001 +179306,AAA Batteries (4-pack),1,2.99,2019-04-19 21:56:00,855 Cedar St, New York City,NY,10001 +179307,34in Ultrawide Monitor,1,379.99,2019-04-07 19:11:00,300 Jefferson St, Seattle,WA,98101 +179308,Apple Airpods Headphones,2,150.0,2019-04-01 19:47:00,150 Sunset St, Austin,TX,73301 +179309,USB-C Charging Cable,1,11.95,2019-04-02 20:16:00,781 Lakeview St, Dallas,TX,75001 +179310,USB-C Charging Cable,2,11.95,2019-04-21 16:54:00,919 Meadow St, Seattle,WA,98101 +179311,Wired Headphones,2,11.99,2019-04-09 01:35:00,611 13th St, Austin,TX,73301 +179311,USB-C Charging Cable,1,11.95,2019-04-09 01:35:00,611 13th St, Austin,TX,73301 +179312,Bose SoundSport Headphones,1,99.99,2019-04-18 15:54:00,423 13th St, Los Angeles,CA,90001 +179313,Apple Airpods Headphones,1,150.0,2019-04-24 16:18:00,717 4th St, Los Angeles,CA,90001 +179314,34in Ultrawide Monitor,1,379.99,2019-04-04 13:37:00,348 14th St, New York City,NY,10001 +179315,AA Batteries (4-pack),1,3.84,2019-04-28 19:35:00,129 9th St, San Francisco,CA,94016 +179316,Wired Headphones,1,11.99,2019-04-08 18:21:00,129 2nd St, New York City,NY,10001 +179317,ThinkPad Laptop,1,999.99,2019-04-02 17:30:00,114 7th St, New York City,NY,10001 +179318,AA Batteries (4-pack),1,3.84,2019-04-08 10:20:00,829 10th St, Boston,MA,02215 +179319,Bose SoundSport Headphones,1,99.99,2019-04-06 12:57:00,299 Ridge St, Portland,OR,97035 +179320,AA Batteries (4-pack),1,3.84,2019-04-23 18:18:00,705 North St, Seattle,WA,98101 +179321,USB-C Charging Cable,1,11.95,2019-04-16 14:01:00,329 Chestnut St, Atlanta,GA,30301 +179322,USB-C Charging Cable,1,11.95,2019-04-11 19:44:00,369 4th St, San Francisco,CA,94016 +179323,AAA Batteries (4-pack),1,2.99,2019-04-23 10:52:00,692 Park St, Seattle,WA,98101 +179324,Lightning Charging Cable,1,14.95,2019-04-02 00:25:00,175 Johnson St, Boston,MA,02215 +179325,LG Washing Machine,1,600.0,2019-04-17 13:09:00,314 Jefferson St, Atlanta,GA,30301 +179326,Lightning Charging Cable,1,14.95,2019-04-25 11:50:00,299 Main St, San Francisco,CA,94016 +179327,Lightning Charging Cable,1,14.95,2019-04-05 13:14:00,190 Meadow St, San Francisco,CA,94016 +179328,Wired Headphones,1,11.99,2019-04-01 19:19:00,780 River St, San Francisco,CA,94016 +179328,AA Batteries (4-pack),1,3.84,2019-04-01 19:19:00,780 River St, San Francisco,CA,94016 +179329,Bose SoundSport Headphones,1,99.99,2019-04-30 19:48:00,795 Dogwood St, San Francisco,CA,94016 +179330,Google Phone,1,600.0,2019-04-16 19:44:00,33 Lakeview St, Boston,MA,02215 +179331,20in Monitor,1,109.99,2019-04-01 15:08:00,398 Cedar St, Los Angeles,CA,90001 +179332,Flatscreen TV,1,300.0,2019-04-22 16:56:00,492 Main St, San Francisco,CA,94016 +179333,Bose SoundSport Headphones,1,99.99,2019-04-08 17:41:00,263 Washington St, New York City,NY,10001 +179334,iPhone,1,700.0,2019-04-10 23:34:00,972 Church St, Boston,MA,02215 +179335,AA Batteries (4-pack),1,3.84,2019-04-23 19:05:00,931 8th St, New York City,NY,10001 +179336,AAA Batteries (4-pack),1,2.99,2019-04-27 12:20:00,910 9th St, Seattle,WA,98101 +179337,Wired Headphones,1,11.99,2019-04-01 12:15:00,516 Spruce St, San Francisco,CA,94016 +179338,USB-C Charging Cable,1,11.95,2019-04-06 13:46:00,668 Spruce St, Los Angeles,CA,90001 +179339,AAA Batteries (4-pack),1,2.99,2019-04-16 16:04:00,841 South St, San Francisco,CA,94016 +179340,Macbook Pro Laptop,1,1700.0,2019-04-28 10:37:00,391 Center St, San Francisco,CA,94016 +179340,Apple Airpods Headphones,1,150.0,2019-04-28 10:37:00,391 Center St, San Francisco,CA,94016 +179341,Apple Airpods Headphones,1,150.0,2019-04-04 10:09:00,41 Main St, Boston,MA,02215 +179342,Lightning Charging Cable,1,14.95,2019-04-08 19:02:00,392 14th St, Atlanta,GA,30301 +179343,Flatscreen TV,1,300.0,2019-04-21 19:33:00,683 5th St, Dallas,TX,75001 +179344,USB-C Charging Cable,1,11.95,2019-04-15 22:17:00,386 Washington St, Los Angeles,CA,90001 +179345,Apple Airpods Headphones,1,150.0,2019-04-20 22:04:00,172 Jackson St, Seattle,WA,98101 +179346,27in FHD Monitor,1,149.99,2019-04-27 12:34:00,155 Jefferson St, Atlanta,GA,30301 +179347,Bose SoundSport Headphones,1,99.99,2019-04-08 15:08:00,528 Lakeview St, Dallas,TX,75001 +179348,USB-C Charging Cable,1,11.95,2019-04-05 10:13:00,173 Cherry St, Atlanta,GA,30301 +179349,20in Monitor,1,109.99,2019-04-07 13:51:00,415 Lakeview St, New York City,NY,10001 +179350,Wired Headphones,1,11.99,2019-04-03 21:38:00,978 Lakeview St, San Francisco,CA,94016 +179351,27in 4K Gaming Monitor,1,389.99,2019-04-25 17:38:00,77 Jefferson St, Los Angeles,CA,90001 +179352,Lightning Charging Cable,1,14.95,2019-04-14 16:02:00,288 Jackson St, Los Angeles,CA,90001 +179353,Wired Headphones,1,11.99,2019-04-06 18:05:00,376 1st St, San Francisco,CA,94016 +179354,USB-C Charging Cable,1,11.95,2019-04-21 14:11:00,297 Forest St, New York City,NY,10001 +179355,27in FHD Monitor,1,149.99,2019-04-29 17:49:00,543 River St, Seattle,WA,98101 +179356,USB-C Charging Cable,2,11.95,2019-04-17 14:21:00,23 2nd St, San Francisco,CA,94016 +179357,Google Phone,1,600.0,2019-04-01 22:28:00,740 Lakeview St, Dallas,TX,75001 +179357,USB-C Charging Cable,1,11.95,2019-04-01 22:28:00,740 Lakeview St, Dallas,TX,75001 +179358,AAA Batteries (4-pack),3,2.99,2019-04-08 20:42:00,150 Elm St, Boston,MA,02215 +179359,Wired Headphones,1,11.99,2019-04-26 18:22:00,586 Park St, Los Angeles,CA,90001 +179360,Wired Headphones,1,11.99,2019-04-07 16:49:00,306 Cedar St, Atlanta,GA,30301 +179361,AA Batteries (4-pack),1,3.84,2019-04-11 16:24:00,354 Lincoln St, San Francisco,CA,94016 +179362,AAA Batteries (4-pack),2,2.99,2019-04-24 12:11:00,529 North St, Los Angeles,CA,90001 +179363,AAA Batteries (4-pack),1,2.99,2019-04-03 10:13:00,307 Main St, Los Angeles,CA,90001 +179364,AA Batteries (4-pack),1,3.84,2019-04-26 19:04:00,802 Adams St, New York City,NY,10001 +179365,AA Batteries (4-pack),2,3.84,2019-04-07 21:30:00,645 Walnut St, New York City,NY,10001 +179366,27in FHD Monitor,1,149.99,2019-04-11 21:04:00,203 Forest St, San Francisco,CA,94016 +179367,AAA Batteries (4-pack),3,2.99,2019-04-03 16:01:00,245 6th St, San Francisco,CA,94016 +179368,Google Phone,1,600.0,2019-04-13 01:43:00,132 Maple St, Los Angeles,CA,90001 +179369,ThinkPad Laptop,1,999.99,2019-04-03 23:57:00,896 North St, Boston,MA,02215 +179370,Lightning Charging Cable,1,14.95,2019-04-18 20:35:00,850 Lincoln St, San Francisco,CA,94016 +179371,Wired Headphones,1,11.99,2019-04-23 14:35:00,243 Willow St, Los Angeles,CA,90001 +179372,Google Phone,1,600.0,2019-04-17 20:46:00,215 10th St, San Francisco,CA,94016 +179373,iPhone,1,700.0,2019-04-18 12:08:00,495 1st St, Atlanta,GA,30301 +179374,Wired Headphones,1,11.99,2019-04-17 18:51:00,837 Main St, San Francisco,CA,94016 +179375,AAA Batteries (4-pack),1,2.99,2019-04-13 15:27:00,816 6th St, Seattle,WA,98101 +179376,AA Batteries (4-pack),1,3.84,2019-04-22 19:30:00,919 Dogwood St, Seattle,WA,98101 +179377,USB-C Charging Cable,1,11.95,2019-04-18 19:29:00,830 8th St, Los Angeles,CA,90001 +179377,AA Batteries (4-pack),1,3.84,2019-04-18 19:29:00,830 8th St, Los Angeles,CA,90001 +179378,AA Batteries (4-pack),1,3.84,2019-04-09 10:30:00,737 Chestnut St, Dallas,TX,75001 +179379,Google Phone,1,600.0,2019-04-12 15:28:00,288 Washington St, Los Angeles,CA,90001 +179379,Bose SoundSport Headphones,1,99.99,2019-04-12 15:28:00,288 Washington St, Los Angeles,CA,90001 +179380,Apple Airpods Headphones,1,150.0,2019-04-07 04:37:00,366 Forest St, Los Angeles,CA,90001 +179381,Lightning Charging Cable,1,14.95,2019-04-29 16:22:00,542 7th St, Portland,OR,97035 +179382,Apple Airpods Headphones,1,150.0,2019-04-11 14:58:00,372 Adams St, San Francisco,CA,94016 +179383,AA Batteries (4-pack),1,3.84,2019-04-14 16:50:00,101 Chestnut St, New York City,NY,10001 +179384,AAA Batteries (4-pack),5,2.99,2019-04-21 05:05:00,903 Madison St, Atlanta,GA,30301 +179385,Lightning Charging Cable,1,14.95,2019-04-02 22:40:00,617 Center St, Boston,MA,02215 +179386,Apple Airpods Headphones,1,150.0,2019-04-15 07:01:00,834 Ridge St, New York City,NY,10001 +179387,Bose SoundSport Headphones,1,99.99,2019-04-22 22:32:00,472 Church St, Austin,TX,73301 +179388,iPhone,1,700.0,2019-04-24 10:22:00,767 Hickory St, New York City,NY,10001 +179389,34in Ultrawide Monitor,1,379.99,2019-04-25 20:04:00,718 13th St, Los Angeles,CA,90001 +179390,AA Batteries (4-pack),1,3.84,2019-04-21 14:13:00,263 South St, Seattle,WA,98101 +179391,Bose SoundSport Headphones,1,99.99,2019-04-18 00:47:00,489 1st St, New York City,NY,10001 +179392,AAA Batteries (4-pack),1,2.99,2019-04-03 16:05:00,383 Wilson St, Seattle,WA,98101 +179393,AAA Batteries (4-pack),3,2.99,2019-04-14 10:39:00,833 Madison St, Boston,MA,02215 +179394,Bose SoundSport Headphones,1,99.99,2019-04-10 14:29:00,601 Cherry St, Boston,MA,02215 +179395,Lightning Charging Cable,1,14.95,2019-04-15 17:23:00,178 Johnson St, San Francisco,CA,94016 +179396,AAA Batteries (4-pack),1,2.99,2019-04-22 15:51:00,485 6th St, Los Angeles,CA,90001 +179397,Bose SoundSport Headphones,1,99.99,2019-04-19 12:19:00,1 6th St, Los Angeles,CA,90001 +179398,AAA Batteries (4-pack),1,2.99,2019-04-06 09:33:00,238 Sunset St, Los Angeles,CA,90001 +179399,AA Batteries (4-pack),2,3.84,2019-04-15 20:13:00,588 Cherry St, San Francisco,CA,94016 +179400,Macbook Pro Laptop,1,1700.0,2019-04-09 07:05:00,959 Main St, Atlanta,GA,30301 +179401,USB-C Charging Cable,1,11.95,2019-04-14 19:41:00,485 11th St, Los Angeles,CA,90001 +179402,27in 4K Gaming Monitor,1,389.99,2019-04-08 12:12:00,910 Cedar St, Seattle,WA,98101 +179403,AA Batteries (4-pack),1,3.84,2019-04-16 08:18:00,116 Walnut St, Austin,TX,73301 +179404,Bose SoundSport Headphones,1,99.99,2019-04-26 10:47:00,119 Cedar St, New York City,NY,10001 +179405,Bose SoundSport Headphones,1,99.99,2019-04-23 13:03:00,211 Cedar St, Dallas,TX,75001 +179406,Google Phone,1,600.0,2019-04-01 14:06:00,331 14th St, Los Angeles,CA,90001 +179407,Wired Headphones,1,11.99,2019-04-16 19:13:00,546 Cherry St, San Francisco,CA,94016 +179408,USB-C Charging Cable,1,11.95,2019-04-11 20:43:00,213 Dogwood St, San Francisco,CA,94016 +179409,34in Ultrawide Monitor,1,379.99,2019-04-24 13:40:00,325 8th St, San Francisco,CA,94016 +179410,AAA Batteries (4-pack),1,2.99,2019-04-02 12:09:00,365 Walnut St, Portland,OR,97035 +179411,34in Ultrawide Monitor,1,379.99,2019-04-22 09:02:00,996 Lake St, Los Angeles,CA,90001 +179412,Google Phone,1,600.0,2019-04-09 10:53:00,963 Center St, San Francisco,CA,94016 +179413,AAA Batteries (4-pack),2,2.99,2019-04-28 13:10:00,226 6th St, Portland,ME,04101 +179414,AAA Batteries (4-pack),2,2.99,2019-04-10 18:54:00,994 Cherry St, Atlanta,GA,30301 +179415,Macbook Pro Laptop,1,1700.0,2019-04-12 16:56:00,645 West St, New York City,NY,10001 +179416,AAA Batteries (4-pack),2,2.99,2019-04-11 23:04:00,476 7th St, New York City,NY,10001 +179417,Macbook Pro Laptop,1,1700.0,2019-04-23 19:23:00,9 North St, Seattle,WA,98101 +179418,iPhone,1,700.0,2019-04-21 18:17:00,615 5th St, Atlanta,GA,30301 +179419,Wired Headphones,1,11.99,2019-04-09 17:20:00,247 Spruce St, San Francisco,CA,94016 +179420,Wired Headphones,1,11.99,2019-04-08 20:12:00,410 Wilson St, Los Angeles,CA,90001 +179421,Google Phone,1,600.0,2019-04-25 19:04:00,532 Pine St, Austin,TX,73301 +179422,Wired Headphones,1,11.99,2019-04-28 18:32:00,451 4th St, New York City,NY,10001 +179423,Flatscreen TV,1,300.0,2019-04-25 16:58:00,879 Hill St, Austin,TX,73301 +179424,Bose SoundSport Headphones,1,99.99,2019-04-19 15:19:00,378 Hickory St, Boston,MA,02215 +179425,AA Batteries (4-pack),1,3.84,2019-04-26 17:00:00,568 Highland St, Los Angeles,CA,90001 +179426,ThinkPad Laptop,1,999.99,2019-04-24 21:30:00,760 West St, New York City,NY,10001 +179427,Lightning Charging Cable,2,14.95,2019-04-29 16:14:00,524 10th St, Boston,MA,02215 +179428,Lightning Charging Cable,1,14.95,2019-04-16 21:46:00,64 Lincoln St, Portland,ME,04101 +179429,Lightning Charging Cable,1,14.95,2019-04-28 10:52:00,949 Washington St, San Francisco,CA,94016 +179430,AAA Batteries (4-pack),1,2.99,2019-04-29 18:46:00,772 11th St, Portland,OR,97035 +179431,AA Batteries (4-pack),1,3.84,2019-04-14 07:59:00,360 Hickory St, San Francisco,CA,94016 +179432,Apple Airpods Headphones,1,150.0,2019-04-29 11:04:00,80 Hill St, Seattle,WA,98101 +179433,Apple Airpods Headphones,1,150.0,2019-04-22 18:54:00,878 Church St, Boston,MA,02215 +179434,Macbook Pro Laptop,1,1700.0,2019-04-24 14:26:00,263 Washington St, New York City,NY,10001 +179434,20in Monitor,1,109.99,2019-04-24 14:26:00,263 Washington St, New York City,NY,10001 +179435,LG Washing Machine,1,600.0,2019-04-21 16:50:00,398 Sunset St, Los Angeles,CA,90001 +179436,Lightning Charging Cable,1,14.95,2019-04-11 15:12:00,894 Adams St, Los Angeles,CA,90001 +179437,34in Ultrawide Monitor,1,379.99,2019-04-27 21:26:00,439 1st St, Austin,TX,73301 +179438,iPhone,1,700.0,2019-04-14 19:16:00,31 Walnut St, San Francisco,CA,94016 +179439,AAA Batteries (4-pack),2,2.99,2019-04-28 17:34:00,24 Lincoln St, Dallas,TX,75001 +179440,Lightning Charging Cable,1,14.95,2019-04-24 14:28:00,521 North St, Seattle,WA,98101 +179441,USB-C Charging Cable,1,11.95,2019-04-09 22:02:00,342 12th St, San Francisco,CA,94016 +179442,Wired Headphones,1,11.99,2019-04-20 15:16:00,642 Cedar St, Boston,MA,02215 +179443,27in 4K Gaming Monitor,1,389.99,2019-04-28 13:52:00,265 Jefferson St, Los Angeles,CA,90001 +179444,Wired Headphones,1,11.99,2019-04-11 22:28:00,396 12th St, Boston,MA,02215 +179445,Bose SoundSport Headphones,1,99.99,2019-04-16 12:55:00,100 Lakeview St, San Francisco,CA,94016 +179446,AAA Batteries (4-pack),3,2.99,2019-04-28 10:47:00,52 Cherry St, Los Angeles,CA,90001 +179447,Wired Headphones,1,11.99,2019-04-14 21:46:00,349 10th St, Dallas,TX,75001 +179448,Lightning Charging Cable,1,14.95,2019-04-24 10:52:00,397 1st St, New York City,NY,10001 +179449,Wired Headphones,1,11.99,2019-04-08 16:03:00,903 Chestnut St, New York City,NY,10001 +179450,Lightning Charging Cable,1,14.95,2019-04-28 21:47:00,752 Center St, Los Angeles,CA,90001 +179451,AAA Batteries (4-pack),1,2.99,2019-04-28 14:38:00,284 Hickory St, San Francisco,CA,94016 +179452,AAA Batteries (4-pack),1,2.99,2019-04-30 11:27:00,547 Walnut St, Los Angeles,CA,90001 +179453,iPhone,1,700.0,2019-04-19 15:18:00,644 Chestnut St, Austin,TX,73301 +179453,Wired Headphones,1,11.99,2019-04-19 15:18:00,644 Chestnut St, Austin,TX,73301 +179454,Wired Headphones,1,11.99,2019-04-01 09:48:00,310 11th St, New York City,NY,10001 +179455,USB-C Charging Cable,1,11.95,2019-04-17 03:50:00,295 13th St, Dallas,TX,75001 +179456,AA Batteries (4-pack),1,3.84,2019-04-26 13:35:00,138 Ridge St, Atlanta,GA,30301 +179457,Apple Airpods Headphones,1,150.0,2019-04-19 14:20:00,584 Elm St, San Francisco,CA,94016 +179458,Apple Airpods Headphones,1,150.0,2019-04-30 11:24:00,290 4th St, Austin,TX,73301 +179459,Wired Headphones,1,11.99,2019-04-27 14:46:00,435 Hill St, Dallas,TX,75001 +179460,Lightning Charging Cable,1,14.95,2019-04-23 17:46:00,182 Dogwood St, Atlanta,GA,30301 +179461,Bose SoundSport Headphones,1,99.99,2019-04-09 11:32:00,902 Lakeview St, New York City,NY,10001 +179462,AAA Batteries (4-pack),1,2.99,2019-04-22 12:38:00,790 5th St, Seattle,WA,98101 +179463,Apple Airpods Headphones,1,150.0,2019-04-18 18:44:00,41 Adams St, New York City,NY,10001 +179464,Wired Headphones,2,11.99,2019-04-09 09:01:00,354 Highland St, Portland,OR,97035 +179465,34in Ultrawide Monitor,1,379.99,2019-04-25 14:33:00,804 Cedar St, Seattle,WA,98101 +179466,Bose SoundSport Headphones,1,99.99,2019-04-11 23:01:00,646 13th St, Austin,TX,73301 +179467,Bose SoundSport Headphones,1,99.99,2019-04-17 08:33:00,910 River St, Atlanta,GA,30301 +179468,Google Phone,1,600.0,2019-04-04 13:52:00,9 2nd St, San Francisco,CA,94016 +179469,AA Batteries (4-pack),3,3.84,2019-04-04 17:53:00,81 South St, Los Angeles,CA,90001 +179470,AA Batteries (4-pack),2,3.84,2019-04-16 11:31:00,833 Spruce St, Los Angeles,CA,90001 +179471,34in Ultrawide Monitor,1,379.99,2019-04-13 13:19:00,245 Hill St, Dallas,TX,75001 +179472,Apple Airpods Headphones,1,150.0,2019-04-16 22:28:00,190 4th St, Boston,MA,02215 +179473,Bose SoundSport Headphones,1,99.99,2019-04-24 03:25:00,102 Wilson St, Atlanta,GA,30301 +179474,USB-C Charging Cable,2,11.95,2019-04-10 11:50:00,84 10th St, Portland,ME,04101 +179475,Google Phone,1,600.0,2019-04-19 02:20:00,814 Jackson St, Los Angeles,CA,90001 +179476,USB-C Charging Cable,1,11.95,2019-04-14 18:55:00,879 Center St, Los Angeles,CA,90001 +179477,AAA Batteries (4-pack),1,2.99,2019-04-06 16:38:00,532 12th St, New York City,NY,10001 +179478,20in Monitor,1,109.99,2019-04-15 08:11:00,388 Wilson St, Los Angeles,CA,90001 +179479,Flatscreen TV,1,300.0,2019-04-06 11:13:00,351 14th St, San Francisco,CA,94016 +179480,LG Dryer,1,600.0,2019-04-13 11:49:00,503 Lake St, Los Angeles,CA,90001 +179481,Bose SoundSport Headphones,1,99.99,2019-04-16 16:33:00,23 5th St, Los Angeles,CA,90001 +179482,Apple Airpods Headphones,1,150.0,2019-04-30 09:36:00,331 Church St, Los Angeles,CA,90001 +179483,AAA Batteries (4-pack),1,2.99,2019-04-23 11:22:00,385 Willow St, Seattle,WA,98101 +179484,USB-C Charging Cable,1,11.95,2019-04-28 22:17:00,545 Cedar St, Boston,MA,02215 +179485,Vareebadd Phone,1,400.0,2019-04-30 11:29:00,393 Cedar St, Dallas,TX,75001 +179485,USB-C Charging Cable,1,11.95,2019-04-30 11:29:00,393 Cedar St, Dallas,TX,75001 +179486,34in Ultrawide Monitor,1,379.99,2019-04-09 20:15:00,577 Center St, San Francisco,CA,94016 +179487,Bose SoundSport Headphones,1,99.99,2019-04-19 20:34:00,966 Ridge St, Dallas,TX,75001 +179488,Lightning Charging Cable,1,14.95,2019-04-29 13:33:00,39 Madison St, Portland,OR,97035 +179489,USB-C Charging Cable,1,11.95,2019-04-24 21:25:00,940 River St, Dallas,TX,75001 +179490,USB-C Charging Cable,1,11.95,2019-04-12 22:10:00,384 Ridge St, San Francisco,CA,94016 +179491,LG Dryer,1,600.0,2019-04-10 08:55:00,291 6th St, Los Angeles,CA,90001 +179492,Lightning Charging Cable,1,14.95,2019-04-17 17:58:00,42 Church St, San Francisco,CA,94016 +179493,Apple Airpods Headphones,1,150.0,2019-04-12 17:44:00,972 Ridge St, New York City,NY,10001 +179494,Wired Headphones,2,11.99,2019-04-14 15:38:00,328 11th St, New York City,NY,10001 +179495,AA Batteries (4-pack),1,3.84,2019-04-14 22:50:00,66 2nd St, Austin,TX,73301 +179496,iPhone,1,700.0,2019-04-21 07:26:00,796 Madison St, Portland,OR,97035 +179497,USB-C Charging Cable,1,11.95,2019-04-27 06:34:00,165 Wilson St, Portland,ME,04101 +179498,Flatscreen TV,1,300.0,2019-04-17 19:20:00,36 Cherry St, Boston,MA,02215 +179499,USB-C Charging Cable,1,11.95,2019-04-09 15:52:00,707 7th St, New York City,NY,10001 +179500,Macbook Pro Laptop,1,1700.0,2019-04-12 22:19:00,687 6th St, San Francisco,CA,94016 +179501,Apple Airpods Headphones,1,150.0,2019-04-06 23:59:00,515 Dogwood St, Los Angeles,CA,90001 +179502,LG Dryer,1,600.0,2019-04-06 19:06:00,538 Cedar St, San Francisco,CA,94016 +179503,27in FHD Monitor,1,149.99,2019-04-14 16:43:00,789 Hickory St, Dallas,TX,75001 +179504,AAA Batteries (4-pack),1,2.99,2019-04-01 17:31:00,116 Lake St, Dallas,TX,75001 +179505,Flatscreen TV,1,300.0,2019-04-25 18:21:00,561 Willow St, San Francisco,CA,94016 +179506,Apple Airpods Headphones,1,150.0,2019-04-18 09:43:00,619 Adams St, San Francisco,CA,94016 +179507,Flatscreen TV,1,300.0,2019-04-06 21:56:00,449 6th St, Los Angeles,CA,90001 +179508,Wired Headphones,1,11.99,2019-04-26 07:36:00,381 Sunset St, Los Angeles,CA,90001 +179509,Apple Airpods Headphones,1,150.0,2019-04-15 13:04:00,86 Lake St, Boston,MA,02215 +179510,AA Batteries (4-pack),1,3.84,2019-04-27 00:21:00,790 Willow St, San Francisco,CA,94016 +179511,AA Batteries (4-pack),1,3.84,2019-04-02 00:31:00,958 Lake St, Boston,MA,02215 +179512,Wired Headphones,1,11.99,2019-04-13 21:03:00,251 Center St, Austin,TX,73301 +179513,Macbook Pro Laptop,1,1700.0,2019-04-01 23:41:00,483 Jackson St, Los Angeles,CA,90001 +179514,Google Phone,1,600.0,2019-04-26 16:05:00,743 South St, Dallas,TX,75001 +179514,USB-C Charging Cable,1,11.95,2019-04-26 16:05:00,743 South St, Dallas,TX,75001 +179515,27in FHD Monitor,1,149.99,2019-04-01 21:13:00,600 Sunset St, San Francisco,CA,94016 +179516,AAA Batteries (4-pack),1,2.99,2019-04-11 07:35:00,997 7th St, San Francisco,CA,94016 +179517,27in 4K Gaming Monitor,1,389.99,2019-04-13 21:24:00,103 Jackson St, San Francisco,CA,94016 +179518,USB-C Charging Cable,1,11.95,2019-04-01 19:23:00,894 Cedar St, San Francisco,CA,94016 +179519,Lightning Charging Cable,1,14.95,2019-04-23 09:47:00,336 Maple St, San Francisco,CA,94016 +179520,Apple Airpods Headphones,1,150.0,2019-04-23 02:58:00,18 Jefferson St, Boston,MA,02215 +179521,Google Phone,1,600.0,2019-04-24 19:12:00,450 Walnut St, Dallas,TX,75001 +179522,Wired Headphones,1,11.99,2019-04-16 11:05:00,218 Jefferson St, New York City,NY,10001 +179523,USB-C Charging Cable,1,11.95,2019-04-11 19:57:00,722 10th St, Dallas,TX,75001 +179524,Lightning Charging Cable,1,14.95,2019-04-19 13:22:00,215 Cherry St, Boston,MA,02215 +179525,27in FHD Monitor,1,149.99,2019-04-20 22:51:00,536 8th St, San Francisco,CA,94016 +179526,AAA Batteries (4-pack),2,2.99,2019-04-21 16:47:00,420 Lakeview St, Boston,MA,02215 +179527,27in FHD Monitor,1,149.99,2019-04-18 18:53:00,356 Meadow St, San Francisco,CA,94016 +179528,27in FHD Monitor,1,149.99,2019-04-15 17:23:00,274 9th St, San Francisco,CA,94016 +179529,34in Ultrawide Monitor,1,379.99,2019-04-21 17:08:00,295 13th St, San Francisco,CA,94016 +179530,Google Phone,1,600.0,2019-04-03 17:32:00,854 Wilson St, San Francisco,CA,94016 +179530,USB-C Charging Cable,1,11.95,2019-04-03 17:32:00,854 Wilson St, San Francisco,CA,94016 +179531,Apple Airpods Headphones,1,150.0,2019-04-12 21:53:00,917 2nd St, Seattle,WA,98101 +179532,Lightning Charging Cable,1,14.95,2019-04-10 12:51:00,228 South St, Dallas,TX,75001 +179533,USB-C Charging Cable,1,11.95,2019-04-20 14:05:00,803 Willow St, Portland,ME,04101 +179534,AA Batteries (4-pack),1,3.84,2019-04-15 11:14:00,2 Church St, Portland,OR,97035 +179535,20in Monitor,1,109.99,2019-04-13 17:47:00,255 West St, Boston,MA,02215 +179536,USB-C Charging Cable,1,11.95,2019-04-27 08:42:00,964 Cedar St, San Francisco,CA,94016 +179537,27in FHD Monitor,1,149.99,2019-04-29 18:07:00,349 Sunset St, New York City,NY,10001 +179538,Vareebadd Phone,1,400.0,2019-04-04 20:48:00,219 Hickory St, New York City,NY,10001 +179538,Bose SoundSport Headphones,1,99.99,2019-04-04 20:48:00,219 Hickory St, New York City,NY,10001 +179539,27in FHD Monitor,1,149.99,2019-04-27 17:42:00,398 Cedar St, New York City,NY,10001 +179540,iPhone,1,700.0,2019-04-11 12:53:00,488 Hill St, Austin,TX,73301 +179540,Lightning Charging Cable,1,14.95,2019-04-11 12:53:00,488 Hill St, Austin,TX,73301 +179541,Bose SoundSport Headphones,1,99.99,2019-04-27 12:54:00,532 South St, Seattle,WA,98101 +179542,Bose SoundSport Headphones,1,99.99,2019-04-24 01:38:00,212 South St, Seattle,WA,98101 +179543,Wired Headphones,1,11.99,2019-04-04 11:47:00,417 Jackson St, San Francisco,CA,94016 +179544,Wired Headphones,1,11.99,2019-04-03 16:22:00,791 Pine St, San Francisco,CA,94016 +179544,Flatscreen TV,1,300.0,2019-04-03 16:22:00,791 Pine St, San Francisco,CA,94016 +179545,AAA Batteries (4-pack),1,2.99,2019-04-10 11:07:00,540 Jackson St, Los Angeles,CA,90001 +179546,Apple Airpods Headphones,1,150.0,2019-04-25 20:17:00,260 2nd St, Dallas,TX,75001 +179547,27in FHD Monitor,1,149.99,2019-04-28 03:45:00,773 9th St, Dallas,TX,75001 +179548,AAA Batteries (4-pack),1,2.99,2019-04-19 09:46:00,41 Maple St, San Francisco,CA,94016 +179549,Lightning Charging Cable,1,14.95,2019-04-02 15:35:00,581 Adams St, Atlanta,GA,30301 +179550,ThinkPad Laptop,1,999.99,2019-04-07 12:48:00,56 Willow St, New York City,NY,10001 +179551,27in FHD Monitor,1,149.99,2019-04-26 10:37:00,531 11th St, Los Angeles,CA,90001 +179552,AAA Batteries (4-pack),2,2.99,2019-04-08 10:25:00,773 Lake St, Boston,MA,02215 +179553,Lightning Charging Cable,1,14.95,2019-04-20 20:33:00,712 Church St, Dallas,TX,75001 +179554,Wired Headphones,1,11.99,2019-04-15 22:04:00,820 10th St, Dallas,TX,75001 +179555,Bose SoundSport Headphones,1,99.99,2019-04-04 14:39:00,118 Washington St, Boston,MA,02215 +179556,AAA Batteries (4-pack),1,2.99,2019-04-26 21:30:00,355 Walnut St, New York City,NY,10001 +179557,AAA Batteries (4-pack),2,2.99,2019-04-26 13:25:00,479 14th St, New York City,NY,10001 +179558,AA Batteries (4-pack),1,3.84,2019-04-27 16:56:00,428 Ridge St, New York City,NY,10001 +179559,AA Batteries (4-pack),1,3.84,2019-04-08 09:10:00,427 Meadow St, Atlanta,GA,30301 +179560,AAA Batteries (4-pack),1,2.99,2019-04-19 01:58:00,233 Madison St, Austin,TX,73301 +179561,USB-C Charging Cable,1,11.95,2019-04-13 08:37:00,870 2nd St, San Francisco,CA,94016 +179562,Wired Headphones,1,11.99,2019-04-05 12:35:00,231 14th St, Boston,MA,02215 +179563,USB-C Charging Cable,1,11.95,2019-04-13 20:19:00,127 6th St, San Francisco,CA,94016 +179564,Lightning Charging Cable,1,14.95,2019-04-07 21:25:00,936 Pine St, Dallas,TX,75001 +179565,AAA Batteries (4-pack),1,2.99,2019-04-13 21:41:00,419 Madison St, Boston,MA,02215 +179566,AA Batteries (4-pack),1,3.84,2019-04-24 13:20:00,254 11th St, San Francisco,CA,94016 +179567,AA Batteries (4-pack),1,3.84,2019-04-10 02:42:00,392 Pine St, San Francisco,CA,94016 +179568,Macbook Pro Laptop,1,1700.0,2019-04-18 20:32:00,644 North St, San Francisco,CA,94016 +179569,34in Ultrawide Monitor,1,379.99,2019-04-11 18:34:00,52 Lake St, New York City,NY,10001 +179570,USB-C Charging Cable,1,11.95,2019-04-24 10:50:00,732 Sunset St, Seattle,WA,98101 +179571,Bose SoundSport Headphones,1,99.99,2019-04-30 10:08:00,893 7th St, Atlanta,GA,30301 +179572,Bose SoundSport Headphones,1,99.99,2019-04-02 22:28:00,477 River St, New York City,NY,10001 +179573,Google Phone,1,600.0,2019-04-11 20:52:00,301 Jackson St, Los Angeles,CA,90001 +179574,USB-C Charging Cable,1,11.95,2019-04-21 16:16:00,702 West St, San Francisco,CA,94016 +179575,USB-C Charging Cable,1,11.95,2019-04-25 02:10:00,468 Center St, Portland,ME,04101 +179576,AAA Batteries (4-pack),1,2.99,2019-04-03 20:15:00,820 Jefferson St, Atlanta,GA,30301 +179577,Wired Headphones,1,11.99,2019-04-30 10:55:00,23 Lincoln St, Los Angeles,CA,90001 +179578,27in 4K Gaming Monitor,1,389.99,2019-04-09 03:09:00,414 Lakeview St, San Francisco,CA,94016 +179579,27in 4K Gaming Monitor,1,389.99,2019-04-01 17:18:00,253 Hickory St, Los Angeles,CA,90001 +179580,Lightning Charging Cable,1,14.95,2019-04-23 14:53:00,865 Lakeview St, Los Angeles,CA,90001 +179581,27in 4K Gaming Monitor,1,389.99,2019-04-21 10:21:00,214 Hill St, Los Angeles,CA,90001 +179582,Lightning Charging Cable,1,14.95,2019-04-01 12:24:00,689 Johnson St, Atlanta,GA,30301 +179583,Lightning Charging Cable,1,14.95,2019-04-07 08:06:00,308 Madison St, Boston,MA,02215 +179584,AA Batteries (4-pack),1,3.84,2019-04-01 19:50:00,88 Jackson St, Los Angeles,CA,90001 +179585,Flatscreen TV,1,300.0,2019-04-01 14:59:00,916 10th St, Boston,MA,02215 +179586,34in Ultrawide Monitor,1,379.99,2019-04-21 16:20:00,302 Highland St, San Francisco,CA,94016 +179587,Wired Headphones,1,11.99,2019-04-29 06:59:00,969 Spruce St, Boston,MA,02215 +179588,AAA Batteries (4-pack),2,2.99,2019-04-23 11:44:00,977 2nd St, Los Angeles,CA,90001 +179589,AA Batteries (4-pack),1,3.84,2019-04-25 23:23:00,822 Elm St, Boston,MA,02215 +179590,AAA Batteries (4-pack),2,2.99,2019-04-02 10:38:00,251 Park St, Portland,OR,97035 +179591,AAA Batteries (4-pack),2,2.99,2019-04-25 12:23:00,243 Jackson St, Dallas,TX,75001 +179592,AAA Batteries (4-pack),2,2.99,2019-04-22 11:34:00,215 Center St, Los Angeles,CA,90001 +179593,20in Monitor,1,109.99,2019-04-29 07:23:00,129 Forest St, Los Angeles,CA,90001 +179594,27in 4K Gaming Monitor,1,389.99,2019-04-20 12:25:00,587 Main St, New York City,NY,10001 +179595,LG Washing Machine,1,600.0,2019-04-13 19:35:00,656 Chestnut St, Seattle,WA,98101 +179596,Wired Headphones,1,11.99,2019-04-26 10:01:00,161 12th St, San Francisco,CA,94016 +179597,Wired Headphones,1,11.99,2019-04-16 07:18:00,448 13th St, Los Angeles,CA,90001 +179598,AA Batteries (4-pack),1,3.84,2019-04-16 17:06:00,594 Lake St, Boston,MA,02215 +179599,AAA Batteries (4-pack),2,2.99,2019-04-02 23:29:00,92 Lincoln St, San Francisco,CA,94016 +179600,Google Phone,1,600.0,2019-04-27 11:51:00,617 12th St, San Francisco,CA,94016 +179601,Wired Headphones,1,11.99,2019-04-24 23:52:00,928 Cedar St, Los Angeles,CA,90001 +179602,27in 4K Gaming Monitor,1,389.99,2019-04-04 10:13:00,72 1st St, Los Angeles,CA,90001 +179603,27in 4K Gaming Monitor,1,389.99,2019-04-15 09:40:00,294 8th St, New York City,NY,10001 +179604,AAA Batteries (4-pack),3,2.99,2019-04-06 19:42:00,775 Willow St, San Francisco,CA,94016 +179605,Vareebadd Phone,1,400.0,2019-04-02 20:03:00,435 10th St, San Francisco,CA,94016 +179606,AA Batteries (4-pack),3,3.84,2019-04-25 09:15:00,206 Lake St, New York City,NY,10001 +179607,Macbook Pro Laptop,1,1700.0,2019-04-23 19:23:00,823 2nd St, Seattle,WA,98101 +179608,LG Washing Machine,1,600.0,2019-04-13 14:16:00,970 Dogwood St, Los Angeles,CA,90001 +179609,AA Batteries (4-pack),1,3.84,2019-04-26 20:09:00,2 Hill St, Los Angeles,CA,90001 +179610,Flatscreen TV,1,300.0,2019-04-20 18:52:00,947 7th St, San Francisco,CA,94016 +179611,AA Batteries (4-pack),1,3.84,2019-04-20 14:48:00,176 Lake St, Boston,MA,02215 +179612,20in Monitor,1,109.99,2019-04-18 17:54:00,714 Meadow St, Los Angeles,CA,90001 +179613,Wired Headphones,1,11.99,2019-04-19 20:07:00,974 Sunset St, Seattle,WA,98101 +179614,27in FHD Monitor,1,149.99,2019-04-10 21:30:00,345 Willow St, San Francisco,CA,94016 +179615,AAA Batteries (4-pack),1,2.99,2019-04-16 23:41:00,270 Ridge St, Dallas,TX,75001 +179616,iPhone,1,700.0,2019-04-04 19:04:00,742 12th St, San Francisco,CA,94016 +179617,Apple Airpods Headphones,1,150.0,2019-04-13 23:24:00,225 Elm St, Austin,TX,73301 +179618,iPhone,1,700.0,2019-04-21 10:28:00,292 Hickory St, Los Angeles,CA,90001 +179619,AA Batteries (4-pack),5,3.84,2019-04-03 10:50:00,781 Center St, Portland,OR,97035 +179620,Lightning Charging Cable,1,14.95,2019-04-17 18:57:00,318 Cedar St, Atlanta,GA,30301 +179621,Lightning Charging Cable,1,14.95,2019-04-17 14:20:00,794 Pine St, Portland,OR,97035 +179622,Apple Airpods Headphones,1,150.0,2019-04-24 08:58:00,977 Park St, San Francisco,CA,94016 +179623,AAA Batteries (4-pack),1,2.99,2019-04-26 17:52:00,587 Main St, Portland,OR,97035 +179624,AA Batteries (4-pack),1,3.84,2019-04-09 05:04:00,872 Cedar St, Los Angeles,CA,90001 +179625,USB-C Charging Cable,1,11.95,2019-04-24 17:41:00,238 Adams St, Los Angeles,CA,90001 +179626,USB-C Charging Cable,1,11.95,2019-04-27 23:26:00,876 11th St, Boston,MA,02215 +179627,Wired Headphones,1,11.99,2019-04-15 15:49:00,652 Jefferson St, New York City,NY,10001 +179628,Wired Headphones,2,11.99,2019-04-11 23:26:00,649 Wilson St, San Francisco,CA,94016 +179629,AA Batteries (4-pack),1,3.84,2019-04-27 21:18:00,745 Walnut St, Los Angeles,CA,90001 +179630,Bose SoundSport Headphones,1,99.99,2019-04-25 15:44:00,855 Jefferson St, San Francisco,CA,94016 +179631,Lightning Charging Cable,1,14.95,2019-04-23 14:38:00,303 13th St, Dallas,TX,75001 +179632,20in Monitor,1,109.99,2019-04-06 18:19:00,339 14th St, Seattle,WA,98101 +179633,AAA Batteries (4-pack),2,2.99,2019-04-26 18:41:00,747 6th St, Los Angeles,CA,90001 +179634,AA Batteries (4-pack),1,3.84,2019-04-22 10:23:00,102 Elm St, San Francisco,CA,94016 +179635,USB-C Charging Cable,1,11.95,2019-04-12 11:35:00,397 Walnut St, Dallas,TX,75001 +179636,Macbook Pro Laptop,1,1700.0,2019-04-26 12:46:00,209 11th St, New York City,NY,10001 +179637,AA Batteries (4-pack),1,3.84,2019-04-05 13:01:00,97 Johnson St, Seattle,WA,98101 +179638,USB-C Charging Cable,1,11.95,2019-04-14 15:04:00,651 Lake St, Los Angeles,CA,90001 +179639,AAA Batteries (4-pack),2,2.99,2019-04-22 20:35:00,730 4th St, Boston,MA,02215 +179640,Apple Airpods Headphones,1,150.0,2019-04-15 20:02:00,926 10th St, San Francisco,CA,94016 +179641,Lightning Charging Cable,1,14.95,2019-04-18 09:47:00,736 Adams St, Portland,OR,97035 +179642,AAA Batteries (4-pack),1,2.99,2019-04-16 05:34:00,855 River St, New York City,NY,10001 +179643,AA Batteries (4-pack),1,3.84,2019-04-21 18:13:00,574 Main St, Dallas,TX,75001 +179644,34in Ultrawide Monitor,1,379.99,2019-04-28 10:40:00,120 Lake St, Dallas,TX,75001 +179645,Bose SoundSport Headphones,1,99.99,2019-04-23 16:44:00,521 River St, Dallas,TX,75001 +179646,AA Batteries (4-pack),1,3.84,2019-04-22 06:14:00,335 13th St, Portland,ME,04101 +179647,AAA Batteries (4-pack),1,2.99,2019-04-22 20:42:00,715 Madison St, Los Angeles,CA,90001 +179648,Bose SoundSport Headphones,1,99.99,2019-04-08 12:13:00,986 Meadow St, San Francisco,CA,94016 +179649,Apple Airpods Headphones,1,150.0,2019-04-04 16:08:00,530 Highland St, San Francisco,CA,94016 +179650,iPhone,1,700.0,2019-04-26 18:53:00,304 Johnson St, Dallas,TX,75001 +179651,27in 4K Gaming Monitor,1,389.99,2019-04-05 11:02:00,804 Ridge St, San Francisco,CA,94016 +179652,Apple Airpods Headphones,1,150.0,2019-04-03 10:56:00,158 5th St, San Francisco,CA,94016 +179653,AA Batteries (4-pack),3,3.84,2019-04-15 16:53:00,304 Washington St, Portland,OR,97035 +179653,Flatscreen TV,1,300.0,2019-04-15 16:53:00,304 Washington St, Portland,OR,97035 +179654,iPhone,1,700.0,2019-04-14 17:28:00,357 Pine St, Boston,MA,02215 +179655,iPhone,1,700.0,2019-04-03 23:50:00,176 Cedar St, Los Angeles,CA,90001 +179656,27in 4K Gaming Monitor,1,389.99,2019-04-11 14:48:00,391 Cedar St, New York City,NY,10001 +179657,27in FHD Monitor,1,149.99,2019-04-13 14:00:00,4 Sunset St, Boston,MA,02215 +179658,USB-C Charging Cable,1,11.95,2019-04-10 11:27:00,502 8th St, Boston,MA,02215 +179659,AA Batteries (4-pack),2,3.84,2019-04-20 12:32:00,15 Center St, San Francisco,CA,94016 +179660,27in FHD Monitor,1,149.99,2019-04-27 15:58:00,540 Highland St, New York City,NY,10001 +179661,27in 4K Gaming Monitor,1,389.99,2019-04-23 21:26:00,278 5th St, Portland,ME,04101 +179662,AAA Batteries (4-pack),2,2.99,2019-04-19 13:38:00,738 Sunset St, Portland,OR,97035 +179663,USB-C Charging Cable,1,11.95,2019-04-24 07:54:00,30 Elm St, San Francisco,CA,94016 +179664,Bose SoundSport Headphones,1,99.99,2019-04-11 15:26:00,763 6th St, Atlanta,GA,30301 +179665,AAA Batteries (4-pack),2,2.99,2019-04-06 09:20:00,303 13th St, San Francisco,CA,94016 +179666,Bose SoundSport Headphones,1,99.99,2019-04-18 18:01:00,440 Forest St, Portland,OR,97035 +179667,Wired Headphones,1,11.99,2019-04-02 11:10:00,660 2nd St, Seattle,WA,98101 +179668,Lightning Charging Cable,1,14.95,2019-04-29 11:52:00,912 Jackson St, Atlanta,GA,30301 +179669,iPhone,1,700.0,2019-04-26 11:29:00,451 Walnut St, Portland,OR,97035 +179670,AA Batteries (4-pack),1,3.84,2019-04-08 12:22:00,681 South St, San Francisco,CA,94016 +179671,AA Batteries (4-pack),2,3.84,2019-04-05 19:49:00,64 Jefferson St, Dallas,TX,75001 +179672,AA Batteries (4-pack),1,3.84,2019-04-30 13:22:00,587 River St, Portland,ME,04101 +179673,Wired Headphones,2,11.99,2019-04-28 19:44:00,404 Johnson St, San Francisco,CA,94016 +179674,Lightning Charging Cable,1,14.95,2019-04-15 12:23:00,514 Lakeview St, Boston,MA,02215 +179675,Macbook Pro Laptop,1,1700.0,2019-04-15 18:12:00,397 Madison St, Los Angeles,CA,90001 +179676,USB-C Charging Cable,1,11.95,2019-04-13 01:08:00,817 12th St, Boston,MA,02215 +179677,USB-C Charging Cable,2,11.95,2019-04-07 08:49:00,72 12th St, San Francisco,CA,94016 +179678,AA Batteries (4-pack),1,3.84,2019-04-12 16:55:00,716 Jackson St, San Francisco,CA,94016 +179679,USB-C Charging Cable,1,11.95,2019-04-16 18:50:00,231 5th St, New York City,NY,10001 +179680,Wired Headphones,1,11.99,2019-04-24 19:51:00,736 Adams St, Portland,OR,97035 +179681,USB-C Charging Cable,2,11.95,2019-04-01 19:20:00,882 South St, Portland,ME,04101 +179682,Apple Airpods Headphones,1,150.0,2019-04-29 11:36:00,596 Willow St, Boston,MA,02215 +179683,Wired Headphones,1,11.99,2019-04-25 15:26:00,967 Johnson St, Los Angeles,CA,90001 +179684,Wired Headphones,1,11.99,2019-04-23 19:37:00,263 Cedar St, Seattle,WA,98101 +179685,Lightning Charging Cable,1,14.95,2019-04-27 19:48:00,877 Hill St, Atlanta,GA,30301 +179686,Lightning Charging Cable,1,14.95,2019-04-17 11:45:00,347 South St, Los Angeles,CA,90001 +179687,Macbook Pro Laptop,1,1700.0,2019-04-16 13:56:00,84 Pine St, San Francisco,CA,94016 +179688,Lightning Charging Cable,1,14.95,2019-04-11 12:10:00,389 Wilson St, New York City,NY,10001 +179689,AAA Batteries (4-pack),1,2.99,2019-04-14 18:47:00,559 Church St, New York City,NY,10001 +179690,Bose SoundSport Headphones,1,99.99,2019-04-28 17:35:00,989 Adams St, San Francisco,CA,94016 +179691,AAA Batteries (4-pack),1,2.99,2019-04-07 00:18:00,457 Maple St, Los Angeles,CA,90001 +179692,Bose SoundSport Headphones,1,99.99,2019-04-22 18:36:00,841 Cherry St, Portland,OR,97035 +179693,27in FHD Monitor,1,149.99,2019-04-25 10:38:00,514 4th St, San Francisco,CA,94016 +179694,Wired Headphones,1,11.99,2019-04-25 11:09:00,152 Dogwood St, San Francisco,CA,94016 +179695,Lightning Charging Cable,1,14.95,2019-04-19 13:10:00,695 Washington St, Los Angeles,CA,90001 +179696,iPhone,1,700.0,2019-04-20 18:41:00,296 Lakeview St, Portland,OR,97035 +179697,AAA Batteries (4-pack),1,2.99,2019-04-29 19:37:00,964 South St, San Francisco,CA,94016 +179698,USB-C Charging Cable,1,11.95,2019-04-04 12:16:00,404 11th St, Los Angeles,CA,90001 +179699,Wired Headphones,1,11.99,2019-04-03 10:51:00,704 Church St, New York City,NY,10001 +179700,Wired Headphones,1,11.99,2019-04-26 10:02:00,765 13th St, San Francisco,CA,94016 +179701,AA Batteries (4-pack),1,3.84,2019-04-14 15:01:00,519 Center St, Portland,OR,97035 +179702,USB-C Charging Cable,1,11.95,2019-04-29 11:43:00,918 2nd St, Dallas,TX,75001 +179703,AA Batteries (4-pack),1,3.84,2019-04-13 13:26:00,14 12th St, Austin,TX,73301 +179704,20in Monitor,1,109.99,2019-04-14 01:55:00,139 Park St, San Francisco,CA,94016 +179705,Lightning Charging Cable,1,14.95,2019-04-26 13:04:00,575 Sunset St, New York City,NY,10001 +179706,AAA Batteries (4-pack),2,2.99,2019-04-30 06:08:00,251 Wilson St, Austin,TX,73301 +179707,AAA Batteries (4-pack),2,2.99,2019-04-09 00:07:00,901 Walnut St, San Francisco,CA,94016 +179708,Lightning Charging Cable,1,14.95,2019-04-25 19:48:00,132 Church St, Seattle,WA,98101 +179709,AA Batteries (4-pack),1,3.84,2019-04-26 14:24:00,803 Center St, New York City,NY,10001 +179710,AA Batteries (4-pack),1,3.84,2019-04-21 19:21:00,87 12th St, San Francisco,CA,94016 +179711,AA Batteries (4-pack),2,3.84,2019-04-17 13:08:00,302 River St, New York City,NY,10001 +179712,USB-C Charging Cable,1,11.95,2019-04-13 13:10:00,544 Chestnut St, Seattle,WA,98101 +179713,Macbook Pro Laptop,1,1700.0,2019-04-25 14:48:00,950 5th St, New York City,NY,10001 +179714,USB-C Charging Cable,1,11.95,2019-04-01 13:48:00,359 Wilson St, Dallas,TX,75001 +179715,Wired Headphones,1,11.99,2019-04-11 16:31:00,480 10th St, Los Angeles,CA,90001 +179716,Lightning Charging Cable,1,14.95,2019-04-30 18:05:00,748 West St, Seattle,WA,98101 +179717,Lightning Charging Cable,1,14.95,2019-04-01 11:09:00,625 12th St, Los Angeles,CA,90001 +179718,LG Dryer,1,600.0,2019-04-16 22:12:00,51 Walnut St, New York City,NY,10001 +179719,34in Ultrawide Monitor,1,379.99,2019-04-03 13:44:00,650 Lakeview St, Seattle,WA,98101 +179720,AAA Batteries (4-pack),3,2.99,2019-04-27 14:10:00,885 Cherry St, Dallas,TX,75001 +179721,Lightning Charging Cable,1,14.95,2019-04-15 14:34:00,878 9th St, Boston,MA,02215 +179722,Apple Airpods Headphones,1,150.0,2019-04-23 15:01:00,257 Highland St, Los Angeles,CA,90001 +179723,Wired Headphones,1,11.99,2019-04-02 08:45:00,515 6th St, Austin,TX,73301 +179724,AAA Batteries (4-pack),1,2.99,2019-04-16 06:06:00,981 Madison St, New York City,NY,10001 +179725,Wired Headphones,1,11.99,2019-04-08 07:45:00,843 Wilson St, Austin,TX,73301 +179726,AA Batteries (4-pack),1,3.84,2019-04-29 18:51:00,796 Forest St, Los Angeles,CA,90001 +179727,AAA Batteries (4-pack),1,2.99,2019-04-29 11:24:00,22 Adams St, Dallas,TX,75001 +179728,Bose SoundSport Headphones,1,99.99,2019-04-27 08:55:00,549 Dogwood St, San Francisco,CA,94016 +179729,Google Phone,1,600.0,2019-04-15 03:52:00,163 Cherry St, Atlanta,GA,30301 +179730,Lightning Charging Cable,1,14.95,2019-04-21 15:53:00,504 2nd St, Los Angeles,CA,90001 +179731,Flatscreen TV,1,300.0,2019-04-17 00:28:00,897 7th St, San Francisco,CA,94016 +179732,Apple Airpods Headphones,1,150.0,2019-04-23 19:17:00,537 Main St, Dallas,TX,75001 +179733,AAA Batteries (4-pack),1,2.99,2019-04-04 00:32:00,133 Park St, Boston,MA,02215 +179734,USB-C Charging Cable,2,11.95,2019-04-02 00:16:00,795 Lincoln St, Los Angeles,CA,90001 +179735,Apple Airpods Headphones,1,150.0,2019-04-23 19:30:00,565 West St, Dallas,TX,75001 +179736,iPhone,1,700.0,2019-04-25 15:13:00,151 Church St, Atlanta,GA,30301 +179737,Flatscreen TV,1,300.0,2019-04-16 16:10:00,189 1st St, Seattle,WA,98101 +179738,AAA Batteries (4-pack),1,2.99,2019-04-12 13:56:00,274 Meadow St, New York City,NY,10001 +179739,20in Monitor,1,109.99,2019-04-24 14:43:00,265 Park St, San Francisco,CA,94016 +179740,Flatscreen TV,1,300.0,2019-04-20 16:49:00,260 1st St, Boston,MA,02215 +179741,Macbook Pro Laptop,1,1700.0,2019-04-29 12:52:00,454 Lakeview St, New York City,NY,10001 +179742,AA Batteries (4-pack),1,3.84,2019-04-07 17:21:00,981 14th St, Los Angeles,CA,90001 +179743,USB-C Charging Cable,1,11.95,2019-04-14 08:26:00,415 Walnut St, Seattle,WA,98101 +179744,USB-C Charging Cable,1,11.95,2019-04-07 18:22:00,273 Spruce St, Los Angeles,CA,90001 +179745,Google Phone,1,600.0,2019-04-05 10:48:00,209 South St, San Francisco,CA,94016 +179745,USB-C Charging Cable,1,11.95,2019-04-05 10:48:00,209 South St, San Francisco,CA,94016 +179746,Wired Headphones,1,11.99,2019-04-17 09:52:00,598 Jackson St, New York City,NY,10001 +179747,27in FHD Monitor,1,149.99,2019-04-17 09:07:00,899 Main St, Dallas,TX,75001 +179748,AAA Batteries (4-pack),1,2.99,2019-04-01 16:14:00,859 Main St, Boston,MA,02215 +179749,Apple Airpods Headphones,1,150.0,2019-04-06 20:41:00,823 Lincoln St, Portland,OR,97035 +179750,iPhone,1,700.0,2019-04-08 04:26:00,634 Elm St, Seattle,WA,98101 +179751,Apple Airpods Headphones,1,150.0,2019-04-26 22:55:00,664 Main St, Los Angeles,CA,90001 +179752,AA Batteries (4-pack),1,3.84,2019-04-18 12:04:00,939 14th St, Atlanta,GA,30301 +179753,Macbook Pro Laptop,1,1700.0,2019-04-04 09:49:00,25 Walnut St, San Francisco,CA,94016 +179754,Apple Airpods Headphones,1,150.0,2019-04-04 15:14:00,101 14th St, San Francisco,CA,94016 +179755,Macbook Pro Laptop,1,1700.0,2019-04-26 15:26:00,945 Maple St, Atlanta,GA,30301 +179756,27in 4K Gaming Monitor,1,389.99,2019-04-15 12:47:00,488 Lake St, San Francisco,CA,94016 +179757,USB-C Charging Cable,1,11.95,2019-04-14 20:30:00,924 Ridge St, New York City,NY,10001 +179758,AAA Batteries (4-pack),1,2.99,2019-04-02 21:02:00,380 1st St, San Francisco,CA,94016 +179759,USB-C Charging Cable,1,11.95,2019-04-14 19:18:00,14 7th St, San Francisco,CA,94016 +179760,Apple Airpods Headphones,1,150.0,2019-04-21 21:18:00,396 7th St, New York City,NY,10001 +179761,Wired Headphones,1,11.99,2019-04-10 13:09:00,562 Lake St, Los Angeles,CA,90001 +179762,Bose SoundSport Headphones,1,99.99,2019-04-01 12:12:00,110 Madison St, Dallas,TX,75001 +179763,Wired Headphones,2,11.99,2019-04-03 22:42:00,69 Jackson St, Boston,MA,02215 +179764,Wired Headphones,1,11.99,2019-04-14 11:13:00,148 River St, New York City,NY,10001 +179765,AAA Batteries (4-pack),2,2.99,2019-04-10 15:58:00,720 Lakeview St, San Francisco,CA,94016 +179766,AAA Batteries (4-pack),1,2.99,2019-04-24 07:33:00,47 Chestnut St, San Francisco,CA,94016 +179767,AAA Batteries (4-pack),1,2.99,2019-04-22 11:54:00,658 South St, Los Angeles,CA,90001 +179768,iPhone,1,700.0,2019-04-28 15:11:00,892 River St, Los Angeles,CA,90001 +179769,AAA Batteries (4-pack),1,2.99,2019-04-16 11:12:00,370 Pine St, Boston,MA,02215 +179770,Apple Airpods Headphones,1,150.0,2019-04-24 16:46:00,306 Hickory St, San Francisco,CA,94016 +179771,Lightning Charging Cable,1,14.95,2019-04-20 20:37:00,73 South St, New York City,NY,10001 +179772,27in FHD Monitor,1,149.99,2019-04-08 17:42:00,666 Lakeview St, Boston,MA,02215 +179773,AA Batteries (4-pack),2,3.84,2019-04-14 15:04:00,925 1st St, New York City,NY,10001 +179774,USB-C Charging Cable,1,11.95,2019-04-22 13:33:00,136 Ridge St, Los Angeles,CA,90001 +179775,AAA Batteries (4-pack),1,2.99,2019-04-18 20:18:00,766 10th St, Austin,TX,73301 +179776,Wired Headphones,2,11.99,2019-04-21 21:38:00,978 Wilson St, Seattle,WA,98101 +179777,Wired Headphones,1,11.99,2019-04-21 14:51:00,180 West St, Dallas,TX,75001 +179778,Apple Airpods Headphones,1,150.0,2019-04-16 15:15:00,162 Hickory St, Los Angeles,CA,90001 +179779,Bose SoundSport Headphones,1,99.99,2019-04-07 07:35:00,296 Elm St, Seattle,WA,98101 +179780,Apple Airpods Headphones,1,150.0,2019-04-09 18:36:00,445 Cherry St, Dallas,TX,75001 +179781,AAA Batteries (4-pack),1,2.99,2019-04-26 22:20:00,555 13th St, New York City,NY,10001 +179782,AA Batteries (4-pack),1,3.84,2019-04-04 21:52:00,181 Meadow St, Boston,MA,02215 +179783,Wired Headphones,1,11.99,2019-04-25 12:13:00,710 River St, San Francisco,CA,94016 +179784,AAA Batteries (4-pack),1,2.99,2019-04-27 02:01:00,889 Park St, Austin,TX,73301 +179785,AA Batteries (4-pack),1,3.84,2019-04-28 22:03:00,137 10th St, Atlanta,GA,30301 +179786,AA Batteries (4-pack),1,3.84,2019-04-04 09:23:00,359 Jackson St, New York City,NY,10001 +179787,AA Batteries (4-pack),1,3.84,2019-04-08 20:40:00,625 Hill St, New York City,NY,10001 +179788,AA Batteries (4-pack),1,3.84,2019-04-07 18:29:00,86 Hickory St, Seattle,WA,98101 +179789,AA Batteries (4-pack),3,3.84,2019-04-22 12:25:00,239 Main St, Los Angeles,CA,90001 +179790,AAA Batteries (4-pack),2,2.99,2019-04-10 09:58:00,475 Adams St, Boston,MA,02215 +179791,Lightning Charging Cable,1,14.95,2019-04-05 07:40:00,105 Lake St, Atlanta,GA,30301 +179792,USB-C Charging Cable,1,11.95,2019-04-12 19:57:00,802 Highland St, San Francisco,CA,94016 +179793,34in Ultrawide Monitor,1,379.99,2019-04-09 15:03:00,466 Cedar St, Atlanta,GA,30301 +179794,Lightning Charging Cable,1,14.95,2019-04-28 12:08:00,691 5th St, New York City,NY,10001 +179795,Lightning Charging Cable,1,14.95,2019-04-18 18:55:00,855 12th St, Los Angeles,CA,90001 +179796,USB-C Charging Cable,1,11.95,2019-04-14 11:05:00,782 Maple St, New York City,NY,10001 +179797,USB-C Charging Cable,1,11.95,2019-04-11 11:54:00,785 14th St, New York City,NY,10001 +179798,Wired Headphones,1,11.99,2019-04-25 19:53:00,391 5th St, New York City,NY,10001 +179799,Apple Airpods Headphones,1,150.0,2019-04-29 20:53:00,539 Adams St, New York City,NY,10001 +179800,Lightning Charging Cable,1,14.95,2019-04-20 11:01:00,159 13th St, San Francisco,CA,94016 +179801,USB-C Charging Cable,1,11.95,2019-04-21 00:29:00,712 Spruce St, Los Angeles,CA,90001 +179802,Google Phone,1,600.0,2019-04-28 17:20:00,79 5th St, Boston,MA,02215 +179803,Lightning Charging Cable,1,14.95,2019-04-17 20:23:00,832 Wilson St, Atlanta,GA,30301 +179804,AAA Batteries (4-pack),2,2.99,2019-04-03 17:32:00,253 13th St, Atlanta,GA,30301 +179805,Wired Headphones,1,11.99,2019-04-18 18:05:00,238 North St, Atlanta,GA,30301 +179806,Bose SoundSport Headphones,1,99.99,2019-04-28 14:12:00,649 Lake St, New York City,NY,10001 +179807,Apple Airpods Headphones,1,150.0,2019-04-20 13:11:00,660 2nd St, Dallas,TX,75001 +179808,USB-C Charging Cable,1,11.95,2019-04-04 09:50:00,952 1st St, Atlanta,GA,30301 +179808,27in FHD Monitor,1,149.99,2019-04-04 09:50:00,952 1st St, Atlanta,GA,30301 +179809,27in 4K Gaming Monitor,1,389.99,2019-04-16 15:16:00,586 2nd St, Los Angeles,CA,90001 +179810,Lightning Charging Cable,1,14.95,2019-04-10 12:54:00,493 Ridge St, Los Angeles,CA,90001 +179811,20in Monitor,1,109.99,2019-04-10 15:54:00,346 Church St, Seattle,WA,98101 +179812,Wired Headphones,1,11.99,2019-04-14 11:58:00,428 Hill St, Portland,OR,97035 +179813,AA Batteries (4-pack),1,3.84,2019-04-26 10:58:00,847 Adams St, Austin,TX,73301 +179814,Apple Airpods Headphones,1,150.0,2019-04-09 12:28:00,629 10th St, San Francisco,CA,94016 +179815,Wired Headphones,2,11.99,2019-04-28 15:42:00,91 9th St, Seattle,WA,98101 +179816,34in Ultrawide Monitor,1,379.99,2019-04-01 21:52:00,615 Chestnut St, San Francisco,CA,94016 +179817,USB-C Charging Cable,1,11.95,2019-04-30 11:48:00,183 Johnson St, San Francisco,CA,94016 +179818,USB-C Charging Cable,1,11.95,2019-04-14 09:56:00,479 Pine St, Boston,MA,02215 +179819,Bose SoundSport Headphones,1,99.99,2019-04-21 01:28:00,985 Center St, Atlanta,GA,30301 +179820,Google Phone,1,600.0,2019-04-03 08:40:00,85 Hill St, Boston,MA,02215 +179820,USB-C Charging Cable,1,11.95,2019-04-03 08:40:00,85 Hill St, Boston,MA,02215 +179821,AAA Batteries (4-pack),2,2.99,2019-04-22 16:19:00,975 Main St, Dallas,TX,75001 +179822,27in 4K Gaming Monitor,1,389.99,2019-04-30 18:33:00,745 7th St, New York City,NY,10001 +179823,Apple Airpods Headphones,1,150.0,2019-04-23 14:50:00,524 6th St, Boston,MA,02215 +179824,20in Monitor,1,109.99,2019-04-08 17:26:00,531 7th St, Seattle,WA,98101 +179825,USB-C Charging Cable,1,11.95,2019-04-02 18:07:00,128 Dogwood St, San Francisco,CA,94016 +179826,AAA Batteries (4-pack),1,2.99,2019-04-20 09:06:00,922 10th St, Boston,MA,02215 +179827,27in 4K Gaming Monitor,1,389.99,2019-04-10 15:24:00,929 Wilson St, San Francisco,CA,94016 +179828,Lightning Charging Cable,1,14.95,2019-04-05 06:38:00,792 Ridge St, Boston,MA,02215 +179829,AA Batteries (4-pack),1,3.84,2019-04-15 10:23:00,704 Highland St, San Francisco,CA,94016 +179830,AA Batteries (4-pack),1,3.84,2019-04-24 21:40:00,206 Washington St, Los Angeles,CA,90001 +179831,Apple Airpods Headphones,1,150.0,2019-04-10 07:40:00,581 Chestnut St, Los Angeles,CA,90001 +179832,Lightning Charging Cable,1,14.95,2019-04-28 19:23:00,962 Wilson St, New York City,NY,10001 +179833,AAA Batteries (4-pack),3,2.99,2019-04-21 00:49:00,537 Elm St, Boston,MA,02215 +179834,USB-C Charging Cable,1,11.95,2019-04-07 07:36:00,212 Maple St, New York City,NY,10001 +179835,Google Phone,1,600.0,2019-04-21 16:38:00,158 Center St, Portland,OR,97035 +179835,Wired Headphones,1,11.99,2019-04-21 16:38:00,158 Center St, Portland,OR,97035 +179836,Flatscreen TV,1,300.0,2019-04-26 22:16:00,697 Cherry St, Seattle,WA,98101 +179837,Google Phone,1,600.0,2019-04-04 11:11:00,568 Hill St, New York City,NY,10001 +179837,USB-C Charging Cable,1,11.95,2019-04-04 11:11:00,568 Hill St, New York City,NY,10001 +179838,AAA Batteries (4-pack),1,2.99,2019-04-06 15:25:00,216 14th St, Austin,TX,73301 +179839,27in 4K Gaming Monitor,1,389.99,2019-04-03 16:43:00,191 Spruce St, Los Angeles,CA,90001 +179840,Wired Headphones,1,11.99,2019-04-10 13:36:00,834 Spruce St, San Francisco,CA,94016 +179841,Wired Headphones,1,11.99,2019-04-09 16:58:00,857 Park St, San Francisco,CA,94016 +179842,AAA Batteries (4-pack),1,2.99,2019-04-11 14:58:00,409 Maple St, New York City,NY,10001 +179843,USB-C Charging Cable,1,11.95,2019-04-26 12:29:00,704 South St, Boston,MA,02215 +179844,Apple Airpods Headphones,1,150.0,2019-04-19 16:38:00,722 Madison St, Los Angeles,CA,90001 +179845,AAA Batteries (4-pack),2,2.99,2019-04-11 13:08:00,541 Adams St, Los Angeles,CA,90001 +179846,ThinkPad Laptop,1,999.99,2019-04-08 19:42:00,380 South St, New York City,NY,10001 +179847,Lightning Charging Cable,1,14.95,2019-04-21 13:11:00,970 Johnson St, San Francisco,CA,94016 +179848,Apple Airpods Headphones,1,150.0,2019-04-22 19:46:00,665 West St, San Francisco,CA,94016 +179849,34in Ultrawide Monitor,1,379.99,2019-04-20 10:26:00,861 4th St, New York City,NY,10001 +179850,34in Ultrawide Monitor,1,379.99,2019-04-22 17:08:00,343 Ridge St, San Francisco,CA,94016 +179851,Vareebadd Phone,1,400.0,2019-04-03 11:37:00,909 South St, Los Angeles,CA,90001 +179852,ThinkPad Laptop,1,999.99,2019-04-16 11:42:00,19 Forest St, San Francisco,CA,94016 +179853,Lightning Charging Cable,1,14.95,2019-04-14 10:14:00,548 Jackson St, Dallas,TX,75001 +179854,Apple Airpods Headphones,1,150.0,2019-04-27 00:42:00,882 North St, Boston,MA,02215 +179855,USB-C Charging Cable,1,11.95,2019-04-29 12:43:00,69 7th St, Boston,MA,02215 +179856,27in FHD Monitor,1,149.99,2019-04-04 07:39:00,818 River St, Seattle,WA,98101 +179857,Apple Airpods Headphones,1,150.0,2019-04-06 15:09:00,966 Maple St, Los Angeles,CA,90001 +179858,USB-C Charging Cable,1,11.95,2019-04-20 21:01:00,486 Willow St, San Francisco,CA,94016 +179859,Lightning Charging Cable,1,14.95,2019-04-21 20:13:00,381 10th St, Austin,TX,73301 +179860,LG Dryer,1,600.0,2019-04-20 12:45:00,762 Meadow St, Dallas,TX,75001 +179861,AA Batteries (4-pack),1,3.84,2019-04-29 20:15:00,676 9th St, Boston,MA,02215 +179862,AA Batteries (4-pack),3,3.84,2019-04-04 09:14:00,106 Chestnut St, Austin,TX,73301 +179863,ThinkPad Laptop,1,999.99,2019-04-05 08:21:00,989 Maple St, San Francisco,CA,94016 +179864,Lightning Charging Cable,1,14.95,2019-04-06 18:43:00,780 1st St, Atlanta,GA,30301 +179865,AAA Batteries (4-pack),6,2.99,2019-04-14 11:24:00,83 Willow St, Austin,TX,73301 +179866,Apple Airpods Headphones,1,150.0,2019-04-26 21:07:00,761 Lakeview St, San Francisco,CA,94016 +179867,USB-C Charging Cable,1,11.95,2019-04-21 18:51:00,750 Walnut St, Dallas,TX,75001 +179868,Apple Airpods Headphones,1,150.0,2019-04-24 20:56:00,80 West St, San Francisco,CA,94016 +179869,ThinkPad Laptop,1,999.99,2019-04-02 19:15:00,165 Lake St, San Francisco,CA,94016 +179870,AA Batteries (4-pack),1,3.84,2019-04-08 20:14:00,848 14th St, New York City,NY,10001 +179871,AAA Batteries (4-pack),2,2.99,2019-04-24 09:17:00,362 Lake St, San Francisco,CA,94016 +179872,AAA Batteries (4-pack),1,2.99,2019-04-01 22:35:00,667 Pine St, Seattle,WA,98101 +179873,20in Monitor,1,109.99,2019-04-24 12:43:00,777 Dogwood St, Atlanta,GA,30301 +179874,Macbook Pro Laptop,1,1700.0,2019-04-27 19:08:00,858 Cherry St, New York City,NY,10001 +179875,27in FHD Monitor,1,149.99,2019-04-10 18:51:00,497 2nd St, Boston,MA,02215 +179876,Macbook Pro Laptop,1,1700.0,2019-04-19 14:01:00,566 Chestnut St, Seattle,WA,98101 +179877,AA Batteries (4-pack),1,3.84,2019-04-29 13:39:00,169 Adams St, Seattle,WA,98101 +179878,Bose SoundSport Headphones,1,99.99,2019-04-14 20:23:00,977 Jefferson St, Atlanta,GA,30301 +179879,AA Batteries (4-pack),1,3.84,2019-04-03 10:16:00,95 Ridge St, Boston,MA,02215 +179880,USB-C Charging Cable,1,11.95,2019-04-06 20:58:00,144 4th St, Seattle,WA,98101 +179881,USB-C Charging Cable,1,11.95,2019-04-06 16:51:00,17 Jefferson St, Los Angeles,CA,90001 +179882,Lightning Charging Cable,1,14.95,2019-04-15 13:04:00,405 Walnut St, Los Angeles,CA,90001 +179883,iPhone,1,700.0,2019-04-04 15:53:00,353 1st St, New York City,NY,10001 +179884,ThinkPad Laptop,1,999.99,2019-04-25 20:12:00,64 Jackson St, Atlanta,GA,30301 +179885,20in Monitor,1,109.99,2019-04-26 17:53:00,369 13th St, New York City,NY,10001 +179885,Bose SoundSport Headphones,1,99.99,2019-04-26 17:53:00,369 13th St, New York City,NY,10001 +179886,iPhone,1,700.0,2019-04-23 11:42:00,927 Center St, Los Angeles,CA,90001 +179887,34in Ultrawide Monitor,1,379.99,2019-04-18 14:59:00,397 Elm St, New York City,NY,10001 +179888,AA Batteries (4-pack),1,3.84,2019-04-10 19:38:00,840 Forest St, Portland,ME,04101 +179889,Bose SoundSport Headphones,1,99.99,2019-04-22 10:33:00,473 8th St, Dallas,TX,75001 +179890,USB-C Charging Cable,1,11.95,2019-04-20 19:06:00,852 Johnson St, San Francisco,CA,94016 +179891,34in Ultrawide Monitor,1,379.99,2019-04-30 20:46:00,505 Ridge St, Dallas,TX,75001 +179892,USB-C Charging Cable,1,11.95,2019-04-03 02:31:00,682 Lakeview St, Atlanta,GA,30301 +179893,27in 4K Gaming Monitor,1,389.99,2019-04-26 08:11:00,166 Hill St, Los Angeles,CA,90001 +179894,Wired Headphones,1,11.99,2019-04-08 20:54:00,127 4th St, Boston,MA,02215 +179895,AA Batteries (4-pack),1,3.84,2019-04-26 11:20:00,748 Lincoln St, Boston,MA,02215 +179896,AA Batteries (4-pack),1,3.84,2019-04-02 12:36:00,628 Church St, New York City,NY,10001 +179897,Flatscreen TV,1,300.0,2019-04-16 17:57:00,584 12th St, San Francisco,CA,94016 +179898,iPhone,1,700.0,2019-04-30 09:08:00,536 Adams St, New York City,NY,10001 +179899,27in 4K Gaming Monitor,1,389.99,2019-04-01 16:40:00,453 North St, New York City,NY,10001 +179900,27in FHD Monitor,1,149.99,2019-04-23 20:22:00,95 Elm St, San Francisco,CA,94016 +179901,USB-C Charging Cable,1,11.95,2019-04-26 17:28:00,53 Hickory St, Seattle,WA,98101 +179902,Bose SoundSport Headphones,1,99.99,2019-04-09 16:28:00,329 5th St, Seattle,WA,98101 +179903,Bose SoundSport Headphones,1,99.99,2019-04-04 13:50:00,497 Lake St, San Francisco,CA,94016 +179904,Lightning Charging Cable,1,14.95,2019-04-28 08:05:00,261 River St, Los Angeles,CA,90001 +179905,iPhone,1,700.0,2019-04-28 22:23:00,699 Lake St, Atlanta,GA,30301 +179906,Bose SoundSport Headphones,1,99.99,2019-04-02 11:26:00,997 5th St, Atlanta,GA,30301 +179907,AAA Batteries (4-pack),1,2.99,2019-04-25 18:44:00,234 Hickory St, San Francisco,CA,94016 +179908,Apple Airpods Headphones,1,150.0,2019-04-03 17:03:00,569 Johnson St, New York City,NY,10001 +179909,Apple Airpods Headphones,1,150.0,2019-04-11 18:57:00,769 Sunset St, San Francisco,CA,94016 +179910,AAA Batteries (4-pack),1,2.99,2019-04-17 22:50:00,466 14th St, New York City,NY,10001 +179911,Lightning Charging Cable,1,14.95,2019-04-03 12:59:00,832 Church St, San Francisco,CA,94016 +179912,20in Monitor,1,109.99,2019-04-15 19:34:00,124 Wilson St, Boston,MA,02215 +179913,Google Phone,1,600.0,2019-04-16 17:25:00,12 Madison St, San Francisco,CA,94016 +179914,Macbook Pro Laptop,1,1700.0,2019-04-15 22:39:00,27 8th St, Los Angeles,CA,90001 +179915,Apple Airpods Headphones,1,150.0,2019-04-29 10:39:00,761 Chestnut St, San Francisco,CA,94016 +179916,Vareebadd Phone,1,400.0,2019-04-16 20:33:00,73 Hill St, New York City,NY,10001 +179917,AA Batteries (4-pack),2,3.84,2019-04-24 22:19:00,152 Spruce St, Los Angeles,CA,90001 +179918,USB-C Charging Cable,2,11.95,2019-04-14 19:27:00,216 7th St, Dallas,TX,75001 +179919,Apple Airpods Headphones,1,150.0,2019-04-04 13:25:00,816 2nd St, Austin,TX,73301 +179920,AA Batteries (4-pack),2,3.84,2019-04-11 15:36:00,598 14th St, Seattle,WA,98101 +179921,20in Monitor,1,109.99,2019-04-13 17:49:00,970 Park St, Dallas,TX,75001 +179922,Apple Airpods Headphones,1,150.0,2019-04-17 11:37:00,623 Lakeview St, Portland,OR,97035 +179923,34in Ultrawide Monitor,1,379.99,2019-04-03 19:16:00,718 Highland St, New York City,NY,10001 +179924,Wired Headphones,1,11.99,2019-04-09 20:43:00,591 Elm St, San Francisco,CA,94016 +179925,34in Ultrawide Monitor,1,379.99,2019-04-03 12:58:00,183 5th St, San Francisco,CA,94016 +179926,Bose SoundSport Headphones,1,99.99,2019-04-01 14:10:00,975 Elm St, Atlanta,GA,30301 +179927,Wired Headphones,1,11.99,2019-04-13 16:26:00,940 Main St, San Francisco,CA,94016 +179928,20in Monitor,1,109.99,2019-04-07 12:27:00,873 Willow St, Boston,MA,02215 +179929,Bose SoundSport Headphones,1,99.99,2019-04-10 13:54:00,845 Jefferson St, Seattle,WA,98101 +179930,AAA Batteries (4-pack),1,2.99,2019-04-06 16:43:00,445 Chestnut St, New York City,NY,10001 +179931,34in Ultrawide Monitor,1,379.99,2019-04-02 10:09:00,151 Lake St, Los Angeles,CA,90001 +179932,Flatscreen TV,1,300.0,2019-04-30 21:17:00,13 Lincoln St, Los Angeles,CA,90001 +179933,AA Batteries (4-pack),3,3.84,2019-04-26 15:49:00,538 11th St, Boston,MA,02215 +179934,ThinkPad Laptop,1,999.99,2019-04-09 08:30:00,488 South St, San Francisco,CA,94016 +179935,Vareebadd Phone,1,400.0,2019-04-17 13:13:00,279 Walnut St, Los Angeles,CA,90001 +179936,AAA Batteries (4-pack),1,2.99,2019-04-13 14:50:00,295 14th St, New York City,NY,10001 +179937,Wired Headphones,1,11.99,2019-04-12 15:36:00,556 Spruce St, Dallas,TX,75001 +179938,Lightning Charging Cable,1,14.95,2019-04-04 18:57:00,875 Main St, New York City,NY,10001 +179939,34in Ultrawide Monitor,1,379.99,2019-04-03 19:04:00,212 1st St, Boston,MA,02215 +179940,AA Batteries (4-pack),1,3.84,2019-04-26 20:36:00,624 North St, Seattle,WA,98101 +179941,Wired Headphones,1,11.99,2019-04-26 18:46:00,430 10th St, Atlanta,GA,30301 +179942,LG Dryer,1,600.0,2019-04-16 14:24:00,209 Meadow St, New York City,NY,10001 +179943,AAA Batteries (4-pack),2,2.99,2019-04-14 11:08:00,344 River St, Portland,OR,97035 +179944,Flatscreen TV,1,300.0,2019-04-28 09:38:00,704 Highland St, New York City,NY,10001 +179944,AA Batteries (4-pack),1,3.84,2019-04-28 09:38:00,704 Highland St, New York City,NY,10001 +179945,USB-C Charging Cable,1,11.95,2019-04-22 10:54:00,548 Meadow St, Atlanta,GA,30301 +179946,Wired Headphones,1,11.99,2019-04-08 22:37:00,842 Adams St, San Francisco,CA,94016 +179947,AAA Batteries (4-pack),1,2.99,2019-04-20 14:06:00,103 Forest St, Los Angeles,CA,90001 +179948,Vareebadd Phone,1,400.0,2019-04-06 20:01:00,859 Center St, Los Angeles,CA,90001 +179949,Wired Headphones,1,11.99,2019-04-21 14:41:00,807 Washington St, Atlanta,GA,30301 +179950,27in FHD Monitor,1,149.99,2019-04-22 19:10:00,2 6th St, Seattle,WA,98101 +179951,Bose SoundSport Headphones,1,99.99,2019-04-07 18:41:00,461 Main St, Portland,OR,97035 +179952,Apple Airpods Headphones,1,150.0,2019-04-22 02:29:00,708 14th St, Los Angeles,CA,90001 +179953,AAA Batteries (4-pack),1,2.99,2019-04-27 09:19:00,32 North St, Los Angeles,CA,90001 +179954,27in 4K Gaming Monitor,1,389.99,2019-04-04 10:05:00,377 13th St, Dallas,TX,75001 +179955,Flatscreen TV,1,300.0,2019-04-14 19:49:00,214 Highland St, Seattle,WA,98101 +179956,Wired Headphones,1,11.99,2019-04-30 18:31:00,341 Pine St, New York City,NY,10001 +179957,Lightning Charging Cable,1,14.95,2019-04-16 15:16:00,623 7th St, Los Angeles,CA,90001 +179958,AA Batteries (4-pack),1,3.84,2019-04-04 13:51:00,631 Lakeview St, Dallas,TX,75001 +179959,Wired Headphones,1,11.99,2019-04-07 12:41:00,661 7th St, Austin,TX,73301 +179960,USB-C Charging Cable,1,11.95,2019-04-24 13:37:00,707 2nd St, New York City,NY,10001 +179961,Google Phone,1,600.0,2019-04-25 03:09:00,141 Johnson St, New York City,NY,10001 +179962,AAA Batteries (4-pack),1,2.99,2019-04-17 15:28:00,116 6th St, Portland,OR,97035 +179963,Macbook Pro Laptop,1,1700.0,2019-04-30 15:31:00,456 North St, Boston,MA,02215 +179964,Bose SoundSport Headphones,1,99.99,2019-04-25 18:23:00,955 Maple St, San Francisco,CA,94016 +179965,Macbook Pro Laptop,1,1700.0,2019-04-30 15:23:00,45 Cedar St, Seattle,WA,98101 +179966,iPhone,1,700.0,2019-04-15 08:40:00,979 13th St, New York City,NY,10001 +179966,Lightning Charging Cable,1,14.95,2019-04-15 08:40:00,979 13th St, New York City,NY,10001 +179967,USB-C Charging Cable,1,11.95,2019-04-16 10:51:00,454 1st St, San Francisco,CA,94016 +179968,34in Ultrawide Monitor,1,379.99,2019-04-05 12:44:00,218 Church St, New York City,NY,10001 +179969,Google Phone,1,600.0,2019-04-21 16:14:00,729 9th St, Atlanta,GA,30301 +179969,Wired Headphones,1,11.99,2019-04-21 16:14:00,729 9th St, Atlanta,GA,30301 +179970,AAA Batteries (4-pack),2,2.99,2019-04-18 18:44:00,668 Lake St, Los Angeles,CA,90001 +179971,iPhone,1,700.0,2019-04-01 22:27:00,95 Center St, Los Angeles,CA,90001 +179972,Bose SoundSport Headphones,1,99.99,2019-04-02 11:57:00,836 North St, San Francisco,CA,94016 +179973,Bose SoundSport Headphones,1,99.99,2019-04-27 16:27:00,690 7th St, San Francisco,CA,94016 +179974,ThinkPad Laptop,1,999.99,2019-04-29 18:00:00,727 Dogwood St, New York City,NY,10001 +179975,27in FHD Monitor,1,149.99,2019-04-30 16:40:00,459 9th St, Los Angeles,CA,90001 +179976,AA Batteries (4-pack),1,3.84,2019-04-10 19:53:00,136 Johnson St, Portland,OR,97035 +179977,AAA Batteries (4-pack),1,2.99,2019-04-30 11:49:00,500 Dogwood St, New York City,NY,10001 +179978,Lightning Charging Cable,1,14.95,2019-04-03 10:35:00,811 Pine St, San Francisco,CA,94016 +179979,Apple Airpods Headphones,1,150.0,2019-04-10 21:16:00,605 6th St, Atlanta,GA,30301 +179980,iPhone,1,700.0,2019-04-09 18:49:00,471 Maple St, Los Angeles,CA,90001 +179981,Lightning Charging Cable,1,14.95,2019-04-22 12:27:00,207 4th St, New York City,NY,10001 +179982,Bose SoundSport Headphones,1,99.99,2019-04-06 08:30:00,963 Willow St, New York City,NY,10001 +179983,iPhone,1,700.0,2019-04-12 11:38:00,203 River St, Los Angeles,CA,90001 +179984,Google Phone,1,600.0,2019-04-05 07:07:00,781 1st St, Los Angeles,CA,90001 +179985,iPhone,1,700.0,2019-04-16 23:50:00,362 Elm St, Dallas,TX,75001 +179986,Lightning Charging Cable,1,14.95,2019-04-24 11:47:00,345 7th St, New York City,NY,10001 +179987,AA Batteries (4-pack),2,3.84,2019-04-30 17:19:00,261 Lakeview St, Atlanta,GA,30301 +179988,USB-C Charging Cable,1,11.95,2019-04-14 14:23:00,422 Sunset St, Seattle,WA,98101 +179989,LG Washing Machine,1,600.0,2019-04-02 20:54:00,889 Hickory St, Los Angeles,CA,90001 +179990,LG Dryer,1,600.0,2019-04-25 15:35:00,583 Jackson St, Dallas,TX,75001 +179991,AA Batteries (4-pack),1,3.84,2019-04-19 20:06:00,672 Church St, Los Angeles,CA,90001 +179992,Lightning Charging Cable,1,14.95,2019-04-27 22:50:00,593 1st St, Los Angeles,CA,90001 +179993,Lightning Charging Cable,1,14.95,2019-04-21 16:12:00,273 Jefferson St, Atlanta,GA,30301 +179994,Bose SoundSport Headphones,1,99.99,2019-04-03 21:19:00,388 2nd St, San Francisco,CA,94016 +179995,Macbook Pro Laptop,1,1700.0,2019-04-06 19:50:00,206 West St, New York City,NY,10001 +179996,34in Ultrawide Monitor,1,379.99,2019-04-14 00:20:00,829 Jackson St, Dallas,TX,75001 +179997,Wired Headphones,1,11.99,2019-04-13 12:45:00,902 2nd St, Los Angeles,CA,90001 +179998,iPhone,1,700.0,2019-04-01 21:17:00,686 Pine St, New York City,NY,10001 +179998,Apple Airpods Headphones,1,150.0,2019-04-01 21:17:00,686 Pine St, New York City,NY,10001 +179999,iPhone,1,700.0,2019-04-26 19:19:00,757 1st St, San Francisco,CA,94016 +180000,iPhone,1,700.0,2019-04-15 11:01:00,704 11th St, New York City,NY,10001 +180000,Lightning Charging Cable,1,14.95,2019-04-15 11:01:00,704 11th St, New York City,NY,10001 +180001,Flatscreen TV,1,300.0,2019-04-19 20:19:00,444 Johnson St, New York City,NY,10001 +180002,ThinkPad Laptop,1,999.99,2019-04-25 11:25:00,567 West St, Atlanta,GA,30301 +180003,USB-C Charging Cable,1,11.95,2019-04-01 08:15:00,509 12th St, Los Angeles,CA,90001 +180004,Lightning Charging Cable,2,14.95,2019-04-06 19:38:00,307 Lincoln St, New York City,NY,10001 +180005,AA Batteries (4-pack),2,3.84,2019-04-23 15:34:00,212 Highland St, Atlanta,GA,30301 +180006,USB-C Charging Cable,1,11.95,2019-04-06 14:14:00,892 Highland St, New York City,NY,10001 +180007,20in Monitor,1,109.99,2019-04-12 11:03:00,536 11th St, Los Angeles,CA,90001 +180008,Wired Headphones,1,11.99,2019-04-27 12:06:00,316 Sunset St, San Francisco,CA,94016 +180009,AA Batteries (4-pack),1,3.84,2019-04-14 09:36:00,157 River St, San Francisco,CA,94016 +180010,AA Batteries (4-pack),1,3.84,2019-04-22 16:36:00,94 Sunset St, Dallas,TX,75001 +180011,Flatscreen TV,1,300.0,2019-04-09 12:56:00,780 Forest St, San Francisco,CA,94016 +180012,Apple Airpods Headphones,1,150.0,2019-04-20 14:15:00,253 4th St, Los Angeles,CA,90001 +180013,Lightning Charging Cable,1,14.95,2019-04-09 20:12:00,807 Ridge St, Los Angeles,CA,90001 +180014,AAA Batteries (4-pack),1,2.99,2019-04-27 20:08:00,544 Washington St, Seattle,WA,98101 +180015,Bose SoundSport Headphones,1,99.99,2019-04-01 11:59:00,759 Center St, Portland,OR,97035 +180016,27in FHD Monitor,1,149.99,2019-04-21 15:29:00,978 Adams St, Portland,ME,04101 +180017,Bose SoundSport Headphones,1,99.99,2019-05-01 00:58:00,738 Adams St, New York City,NY,10001 +180018,Wired Headphones,2,11.99,2019-04-08 10:01:00,505 Meadow St, Los Angeles,CA,90001 +180019,Bose SoundSport Headphones,1,99.99,2019-04-30 14:26:00,973 West St, Seattle,WA,98101 +180020,iPhone,1,700.0,2019-04-06 13:18:00,75 River St, San Francisco,CA,94016 +180021,AAA Batteries (4-pack),2,2.99,2019-04-09 16:45:00,979 Chestnut St, San Francisco,CA,94016 +180022,AA Batteries (4-pack),1,3.84,2019-04-06 20:29:00,859 Lincoln St, Los Angeles,CA,90001 +180023,AAA Batteries (4-pack),3,2.99,2019-04-01 15:16:00,258 8th St, San Francisco,CA,94016 +180024,AAA Batteries (4-pack),3,2.99,2019-04-04 13:15:00,603 Johnson St, San Francisco,CA,94016 +180025,Wired Headphones,1,11.99,2019-04-18 10:26:00,964 Main St, San Francisco,CA,94016 +180026,AA Batteries (4-pack),1,3.84,2019-04-19 22:21:00,923 Sunset St, Boston,MA,02215 +180027,Apple Airpods Headphones,1,150.0,2019-04-18 18:34:00,566 14th St, New York City,NY,10001 +180028,Wired Headphones,1,11.99,2019-04-06 15:41:00,399 Ridge St, Los Angeles,CA,90001 +180029,ThinkPad Laptop,1,999.99,2019-04-28 10:59:00,225 Center St, San Francisco,CA,94016 +180030,Wired Headphones,1,11.99,2019-04-15 10:41:00,305 Highland St, Austin,TX,73301 +180031,Vareebadd Phone,1,400.0,2019-04-22 15:33:00,534 10th St, Atlanta,GA,30301 +180031,USB-C Charging Cable,1,11.95,2019-04-22 15:33:00,534 10th St, Atlanta,GA,30301 +180032,Apple Airpods Headphones,1,150.0,2019-04-06 14:11:00,122 11th St, Austin,TX,73301 +180033,27in 4K Gaming Monitor,1,389.99,2019-04-23 20:11:00,901 Cedar St, New York City,NY,10001 +180034,Wired Headphones,1,11.99,2019-04-06 14:28:00,677 Lake St, Los Angeles,CA,90001 +180035,34in Ultrawide Monitor,1,379.99,2019-04-10 07:32:00,798 12th St, Los Angeles,CA,90001 +180036,Lightning Charging Cable,1,14.95,2019-04-25 23:46:00,909 Jefferson St, Dallas,TX,75001 +180037,Wired Headphones,1,11.99,2019-04-26 20:05:00,577 Lake St, Atlanta,GA,30301 +180038,Bose SoundSport Headphones,1,99.99,2019-04-06 09:26:00,590 12th St, New York City,NY,10001 +180039,Lightning Charging Cable,2,14.95,2019-04-15 13:57:00,198 14th St, Dallas,TX,75001 +180040,Lightning Charging Cable,1,14.95,2019-04-17 11:43:00,207 Madison St, San Francisco,CA,94016 +180041,Flatscreen TV,1,300.0,2019-04-27 17:23:00,769 Chestnut St, Dallas,TX,75001 +180042,AA Batteries (4-pack),2,3.84,2019-04-12 08:04:00,987 10th St, San Francisco,CA,94016 +180043,AAA Batteries (4-pack),3,2.99,2019-04-07 22:07:00,656 Dogwood St, Portland,OR,97035 +180044,USB-C Charging Cable,3,11.95,2019-04-23 13:02:00,386 Lakeview St, Boston,MA,02215 +180045,AAA Batteries (4-pack),1,2.99,2019-04-04 08:44:00,731 River St, Seattle,WA,98101 +180046,Lightning Charging Cable,1,14.95,2019-04-18 12:15:00,928 6th St, Los Angeles,CA,90001 +180047,USB-C Charging Cable,1,11.95,2019-04-03 10:07:00,91 South St, San Francisco,CA,94016 +180048,AAA Batteries (4-pack),5,2.99,2019-04-06 17:30:00,818 1st St, Portland,OR,97035 +180049,USB-C Charging Cable,1,11.95,2019-04-14 14:58:00,385 Church St, San Francisco,CA,94016 +180050,AA Batteries (4-pack),1,3.84,2019-04-03 10:21:00,686 5th St, Los Angeles,CA,90001 +180051,AA Batteries (4-pack),1,3.84,2019-04-20 09:57:00,612 Lake St, Boston,MA,02215 +180052,34in Ultrawide Monitor,1,379.99,2019-04-23 18:39:00,952 Pine St, Los Angeles,CA,90001 +180053,ThinkPad Laptop,1,999.99,2019-04-24 11:30:00,387 South St, Boston,MA,02215 +180054,Bose SoundSport Headphones,1,99.99,2019-04-27 17:16:00,3 South St, New York City,NY,10001 +180055,34in Ultrawide Monitor,1,379.99,2019-04-21 18:31:00,549 8th St, Los Angeles,CA,90001 +180056,ThinkPad Laptop,1,999.99,2019-04-16 09:52:00,727 Ridge St, New York City,NY,10001 +180057,AA Batteries (4-pack),2,3.84,2019-04-19 13:35:00,54 Dogwood St, San Francisco,CA,94016 +180058,AAA Batteries (4-pack),2,2.99,2019-04-21 00:09:00,898 14th St, San Francisco,CA,94016 +180059,27in FHD Monitor,1,149.99,2019-04-17 20:36:00,315 Ridge St, Portland,OR,97035 +180060,20in Monitor,1,109.99,2019-04-17 19:27:00,237 12th St, New York City,NY,10001 +180061,Wired Headphones,1,11.99,2019-04-12 11:24:00,642 Jackson St, Los Angeles,CA,90001 +180062,AA Batteries (4-pack),1,3.84,2019-04-08 12:01:00,360 Forest St, San Francisco,CA,94016 +180063,27in 4K Gaming Monitor,1,389.99,2019-04-29 12:48:00,450 Hill St, New York City,NY,10001 +180064,iPhone,1,700.0,2019-04-07 05:39:00,910 Lakeview St, San Francisco,CA,94016 +180065,Lightning Charging Cable,1,14.95,2019-04-06 14:26:00,237 Spruce St, New York City,NY,10001 +180066,USB-C Charging Cable,1,11.95,2019-04-19 23:05:00,509 Cherry St, Atlanta,GA,30301 +180067,27in 4K Gaming Monitor,1,389.99,2019-04-16 14:52:00,290 Lincoln St, New York City,NY,10001 +180068,AAA Batteries (4-pack),1,2.99,2019-04-21 13:06:00,970 Pine St, Seattle,WA,98101 +180069,27in FHD Monitor,1,149.99,2019-04-23 19:15:00,210 Jackson St, Los Angeles,CA,90001 +180070,USB-C Charging Cable,1,11.95,2019-04-27 21:54:00,398 Spruce St, Los Angeles,CA,90001 +180071,Apple Airpods Headphones,1,150.0,2019-04-25 19:02:00,941 Cherry St, New York City,NY,10001 +180072,Macbook Pro Laptop,1,1700.0,2019-04-17 20:35:00,769 Willow St, Los Angeles,CA,90001 +180073,AA Batteries (4-pack),1,3.84,2019-04-21 14:37:00,800 Jefferson St, Los Angeles,CA,90001 +180074,20in Monitor,1,109.99,2019-04-08 18:02:00,810 Sunset St, Dallas,TX,75001 +180075,Lightning Charging Cable,1,14.95,2019-04-09 20:00:00,803 7th St, San Francisco,CA,94016 +180076,Bose SoundSport Headphones,2,99.99,2019-04-07 10:53:00,204 Hill St, Austin,TX,73301 +180077,Bose SoundSport Headphones,1,99.99,2019-04-23 21:07:00,135 Meadow St, Boston,MA,02215 +180078,Macbook Pro Laptop,1,1700.0,2019-04-24 16:40:00,548 Meadow St, Dallas,TX,75001 +180079,Google Phone,1,600.0,2019-04-12 10:48:00,138 7th St, San Francisco,CA,94016 +180080,34in Ultrawide Monitor,1,379.99,2019-04-12 17:03:00,386 Walnut St, Los Angeles,CA,90001 +180081,USB-C Charging Cable,1,11.95,2019-04-16 11:57:00,184 Washington St, Los Angeles,CA,90001 +180082,LG Dryer,1,600.0,2019-04-14 08:35:00,886 Pine St, Los Angeles,CA,90001 +180083,AAA Batteries (4-pack),1,2.99,2019-04-13 20:47:00,738 Jackson St, New York City,NY,10001 +180084,Vareebadd Phone,1,400.0,2019-04-16 23:44:00,859 1st St, San Francisco,CA,94016 +180085,iPhone,1,700.0,2019-04-16 08:49:00,857 Walnut St, Boston,MA,02215 +180086,USB-C Charging Cable,1,11.95,2019-04-07 17:01:00,9 8th St, New York City,NY,10001 +180087,Lightning Charging Cable,1,14.95,2019-04-07 07:29:00,945 Madison St, Boston,MA,02215 +180088,Apple Airpods Headphones,1,150.0,2019-04-01 17:45:00,674 North St, Los Angeles,CA,90001 +180089,AAA Batteries (4-pack),1,2.99,2019-04-08 15:57:00,790 Park St, Los Angeles,CA,90001 +180090,AAA Batteries (4-pack),1,2.99,2019-04-24 16:25:00,870 Wilson St, Los Angeles,CA,90001 +180091,iPhone,1,700.0,2019-04-28 20:03:00,602 Main St, Los Angeles,CA,90001 +180092,Wired Headphones,1,11.99,2019-04-23 10:33:00,177 Jefferson St, New York City,NY,10001 +180093,AA Batteries (4-pack),1,3.84,2019-04-05 21:41:00,299 North St, Austin,TX,73301 +180094,LG Washing Machine,1,600.0,2019-04-06 01:05:00,470 Madison St, New York City,NY,10001 +180095,Bose SoundSport Headphones,1,99.99,2019-04-16 13:24:00,144 Lakeview St, New York City,NY,10001 +180096,Bose SoundSport Headphones,1,99.99,2019-04-10 08:38:00,891 Hill St, San Francisco,CA,94016 +180097,20in Monitor,2,109.99,2019-04-25 22:40:00,47 7th St, Seattle,WA,98101 +180098,20in Monitor,1,109.99,2019-04-12 10:23:00,122 Forest St, Portland,OR,97035 +180099,ThinkPad Laptop,1,999.99,2019-04-11 16:49:00,696 North St, New York City,NY,10001 +180100,Apple Airpods Headphones,1,150.0,2019-04-21 01:38:00,243 Walnut St, Los Angeles,CA,90001 +180101,Bose SoundSport Headphones,1,99.99,2019-04-20 15:51:00,289 10th St, Portland,OR,97035 +180102,USB-C Charging Cable,1,11.95,2019-04-21 13:57:00,123 Cherry St, San Francisco,CA,94016 +180103,27in 4K Gaming Monitor,1,389.99,2019-04-05 23:57:00,214 12th St, Atlanta,GA,30301 +180104,AA Batteries (4-pack),1,3.84,2019-04-05 12:59:00,558 12th St, Austin,TX,73301 +180105,AAA Batteries (4-pack),1,2.99,2019-04-01 17:02:00,312 Main St, Dallas,TX,75001 +180106,Bose SoundSport Headphones,1,99.99,2019-04-06 19:54:00,441 Maple St, San Francisco,CA,94016 +180107,AAA Batteries (4-pack),1,2.99,2019-04-13 08:48:00,881 Walnut St, Boston,MA,02215 +180108,Bose SoundSport Headphones,1,99.99,2019-04-12 13:56:00,789 Center St, Atlanta,GA,30301 +180108,AA Batteries (4-pack),4,3.84,2019-04-12 13:56:00,789 Center St, Atlanta,GA,30301 +180109,Wired Headphones,1,11.99,2019-04-20 19:43:00,939 Elm St, Austin,TX,73301 +180110,Macbook Pro Laptop,1,1700.0,2019-04-16 17:52:00,962 4th St, Seattle,WA,98101 +180111,AA Batteries (4-pack),2,3.84,2019-04-15 10:37:00,280 Willow St, San Francisco,CA,94016 +180112,Bose SoundSport Headphones,1,99.99,2019-04-03 10:34:00,926 North St, Portland,ME,04101 +180113,AAA Batteries (4-pack),1,2.99,2019-04-13 09:14:00,139 Cedar St, Dallas,TX,75001 +180114,27in FHD Monitor,1,149.99,2019-04-12 20:55:00,870 2nd St, Atlanta,GA,30301 +180115,Bose SoundSport Headphones,1,99.99,2019-04-09 14:49:00,829 Forest St, New York City,NY,10001 +180116,Apple Airpods Headphones,1,150.0,2019-04-08 11:11:00,329 Willow St, New York City,NY,10001 +180117,Macbook Pro Laptop,1,1700.0,2019-04-30 20:06:00,40 Elm St, San Francisco,CA,94016 +180118,Bose SoundSport Headphones,1,99.99,2019-04-11 03:33:00,415 5th St, Boston,MA,02215 +180119,ThinkPad Laptop,1,999.99,2019-04-26 09:24:00,846 Elm St, San Francisco,CA,94016 +180120,AA Batteries (4-pack),1,3.84,2019-04-25 19:27:00,732 Highland St, Atlanta,GA,30301 +180121,Lightning Charging Cable,1,14.95,2019-04-30 18:54:00,368 12th St, San Francisco,CA,94016 +180122,AAA Batteries (4-pack),1,2.99,2019-04-10 17:13:00,905 River St, San Francisco,CA,94016 +180123,Wired Headphones,1,11.99,2019-04-09 09:43:00,919 5th St, San Francisco,CA,94016 +180124,Wired Headphones,1,11.99,2019-04-12 01:48:00,486 North St, Seattle,WA,98101 +180125,AA Batteries (4-pack),1,3.84,2019-04-07 15:18:00,880 Sunset St, Atlanta,GA,30301 +180126,Lightning Charging Cable,1,14.95,2019-04-16 00:59:00,872 11th St, Los Angeles,CA,90001 +180127,LG Washing Machine,1,600.0,2019-04-23 09:34:00,927 Jackson St, Los Angeles,CA,90001 +180128,Apple Airpods Headphones,1,150.0,2019-04-14 23:22:00,452 14th St, Austin,TX,73301 +180129,Google Phone,1,600.0,2019-04-14 17:43:00,274 Center St, Portland,OR,97035 +180130,Bose SoundSport Headphones,1,99.99,2019-04-21 12:17:00,202 Hickory St, Dallas,TX,75001 +180131,Apple Airpods Headphones,1,150.0,2019-04-30 15:07:00,48 Hill St, Atlanta,GA,30301 +180132,Apple Airpods Headphones,1,150.0,2019-04-21 08:11:00,413 Wilson St, San Francisco,CA,94016 +180133,iPhone,1,700.0,2019-04-02 13:20:00,941 8th St, Dallas,TX,75001 +180134,Wired Headphones,1,11.99,2019-04-11 23:14:00,218 1st St, San Francisco,CA,94016 +180135,Google Phone,1,600.0,2019-04-13 14:46:00,334 1st St, Seattle,WA,98101 +180135,Wired Headphones,1,11.99,2019-04-13 14:46:00,334 1st St, Seattle,WA,98101 +180136,USB-C Charging Cable,1,11.95,2019-04-02 15:17:00,435 Dogwood St, Portland,OR,97035 +180137,Flatscreen TV,1,300.0,2019-04-26 12:02:00,664 Ridge St, Austin,TX,73301 +180138,USB-C Charging Cable,1,11.95,2019-04-09 19:22:00,123 Dogwood St, New York City,NY,10001 +180139,USB-C Charging Cable,1,11.95,2019-04-19 19:28:00,500 Highland St, New York City,NY,10001 +180140,AA Batteries (4-pack),3,3.84,2019-04-02 05:55:00,456 8th St, Los Angeles,CA,90001 +180141,Apple Airpods Headphones,1,150.0,2019-04-25 10:33:00,776 Maple St, Portland,OR,97035 +180142,AAA Batteries (4-pack),1,2.99,2019-04-21 19:50:00,913 8th St, Seattle,WA,98101 +180143,27in FHD Monitor,1,149.99,2019-04-22 12:49:00,629 7th St, New York City,NY,10001 +180144,27in 4K Gaming Monitor,1,389.99,2019-04-17 10:05:00,608 West St, San Francisco,CA,94016 +180145,Apple Airpods Headphones,1,150.0,2019-04-13 12:24:00,361 Lincoln St, San Francisco,CA,94016 +180146,iPhone,1,700.0,2019-04-11 17:48:00,937 Jefferson St, Boston,MA,02215 +180147,Google Phone,1,600.0,2019-04-15 23:54:00,296 7th St, Atlanta,GA,30301 +180148,Lightning Charging Cable,1,14.95,2019-04-21 19:28:00,699 Maple St, Portland,OR,97035 +180149,Lightning Charging Cable,1,14.95,2019-04-17 18:50:00,304 2nd St, New York City,NY,10001 +180150,34in Ultrawide Monitor,1,379.99,2019-04-14 15:11:00,632 Lakeview St, Los Angeles,CA,90001 +180151,AAA Batteries (4-pack),2,2.99,2019-04-05 13:13:00,491 Washington St, San Francisco,CA,94016 +180152,USB-C Charging Cable,1,11.95,2019-04-14 18:34:00,110 Johnson St, Seattle,WA,98101 +180153,Lightning Charging Cable,2,14.95,2019-04-29 19:38:00,892 Highland St, Seattle,WA,98101 +180154,34in Ultrawide Monitor,1,379.99,2019-04-20 10:55:00,475 4th St, Austin,TX,73301 +180155,Lightning Charging Cable,2,14.95,2019-04-09 01:19:00,408 9th St, New York City,NY,10001 +180156,Wired Headphones,1,11.99,2019-04-08 12:41:00,362 Forest St, New York City,NY,10001 +180157,Google Phone,1,600.0,2019-04-03 20:57:00,156 Sunset St, New York City,NY,10001 +180158,Vareebadd Phone,1,400.0,2019-04-10 16:01:00,129 Sunset St, San Francisco,CA,94016 +180159,Apple Airpods Headphones,1,150.0,2019-04-26 14:41:00,367 5th St, San Francisco,CA,94016 +180160,AAA Batteries (4-pack),3,2.99,2019-04-18 15:55:00,127 Main St, Los Angeles,CA,90001 +180161,USB-C Charging Cable,1,11.95,2019-04-16 07:56:00,598 Meadow St, Boston,MA,02215 +180161,ThinkPad Laptop,1,999.99,2019-04-16 07:56:00,598 Meadow St, Boston,MA,02215 +180162,AAA Batteries (4-pack),1,2.99,2019-04-06 20:53:00,55 Park St, Seattle,WA,98101 +180163,Apple Airpods Headphones,1,150.0,2019-04-10 21:47:00,640 Ridge St, San Francisco,CA,94016 +180164,27in 4K Gaming Monitor,1,389.99,2019-04-03 11:36:00,4 Lincoln St, Boston,MA,02215 +180165,Wired Headphones,1,11.99,2019-04-16 19:51:00,623 Johnson St, Atlanta,GA,30301 +180166,AA Batteries (4-pack),1,3.84,2019-04-24 20:20:00,285 Forest St, Los Angeles,CA,90001 +180167,USB-C Charging Cable,1,11.95,2019-04-30 16:52:00,645 Ridge St, San Francisco,CA,94016 +180168,AAA Batteries (4-pack),3,2.99,2019-04-07 18:42:00,798 Cherry St, Portland,OR,97035 +180169,Lightning Charging Cable,2,14.95,2019-04-17 12:31:00,335 4th St, Boston,MA,02215 +180170,Wired Headphones,1,11.99,2019-04-07 14:02:00,103 Maple St, Seattle,WA,98101 +180171,ThinkPad Laptop,1,999.99,2019-04-01 12:31:00,128 Park St, San Francisco,CA,94016 +180172,AAA Batteries (4-pack),2,2.99,2019-04-27 21:07:00,580 12th St, San Francisco,CA,94016 +180173,AA Batteries (4-pack),1,3.84,2019-04-28 15:01:00,904 Johnson St, Boston,MA,02215 +180174,AAA Batteries (4-pack),1,2.99,2019-04-28 15:42:00,923 Adams St, Los Angeles,CA,90001 +180175,Apple Airpods Headphones,1,150.0,2019-04-27 20:35:00,436 Lake St, Los Angeles,CA,90001 +180176,Macbook Pro Laptop,1,1700.0,2019-04-15 00:05:00,25 Adams St, San Francisco,CA,94016 +180177,Bose SoundSport Headphones,1,99.99,2019-04-09 21:39:00,919 Chestnut St, San Francisco,CA,94016 +180178,Wired Headphones,1,11.99,2019-04-07 19:16:00,595 Lincoln St, San Francisco,CA,94016 +180179,Bose SoundSport Headphones,1,99.99,2019-04-13 23:44:00,441 North St, San Francisco,CA,94016 +180180,AAA Batteries (4-pack),1,2.99,2019-04-20 09:36:00,438 Spruce St, Atlanta,GA,30301 +180181,Lightning Charging Cable,1,14.95,2019-04-30 17:56:00,229 River St, Atlanta,GA,30301 +180182,USB-C Charging Cable,1,11.95,2019-04-08 21:20:00,70 Dogwood St, Seattle,WA,98101 +180183,USB-C Charging Cable,1,11.95,2019-04-17 18:01:00,400 Willow St, New York City,NY,10001 +180184,USB-C Charging Cable,1,11.95,2019-04-16 09:57:00,397 Lakeview St, New York City,NY,10001 +180185,AA Batteries (4-pack),2,3.84,2019-04-06 17:21:00,876 Pine St, Boston,MA,02215 +180186,Lightning Charging Cable,1,14.95,2019-04-22 17:47:00,532 Elm St, Los Angeles,CA,90001 +180187,AA Batteries (4-pack),1,3.84,2019-04-15 15:32:00,926 North St, New York City,NY,10001 +180188,USB-C Charging Cable,1,11.95,2019-04-12 15:41:00,833 7th St, New York City,NY,10001 +180189,Bose SoundSport Headphones,1,99.99,2019-04-14 23:50:00,802 2nd St, Los Angeles,CA,90001 +180190,Flatscreen TV,1,300.0,2019-04-24 13:21:00,826 Maple St, San Francisco,CA,94016 +180191,Lightning Charging Cable,1,14.95,2019-04-18 23:52:00,443 Johnson St, Los Angeles,CA,90001 +180192,Macbook Pro Laptop,1,1700.0,2019-04-01 12:55:00,732 Lakeview St, Boston,MA,02215 +180193,USB-C Charging Cable,1,11.95,2019-04-02 10:38:00,290 7th St, Boston,MA,02215 +180194,Apple Airpods Headphones,1,150.0,2019-04-28 19:00:00,527 Adams St, Atlanta,GA,30301 +180195,AAA Batteries (4-pack),1,2.99,2019-04-21 09:36:00,163 2nd St, New York City,NY,10001 +180196,Wired Headphones,1,11.99,2019-04-14 10:02:00,86 Lincoln St, Los Angeles,CA,90001 +180197,AA Batteries (4-pack),1,3.84,2019-04-22 10:15:00,954 River St, Seattle,WA,98101 +180198,USB-C Charging Cable,1,11.95,2019-04-08 20:25:00,486 Forest St, Los Angeles,CA,90001 +180199,ThinkPad Laptop,1,999.99,2019-04-06 14:40:00,254 River St, San Francisco,CA,94016 +180200,Wired Headphones,1,11.99,2019-04-21 23:30:00,565 13th St, New York City,NY,10001 +180201,Bose SoundSport Headphones,1,99.99,2019-04-13 21:50:00,777 Pine St, Atlanta,GA,30301 +180202,Lightning Charging Cable,1,14.95,2019-04-10 20:34:00,939 Lakeview St, Los Angeles,CA,90001 +180203,Apple Airpods Headphones,1,150.0,2019-04-07 13:46:00,876 River St, San Francisco,CA,94016 +180204,AA Batteries (4-pack),1,3.84,2019-04-24 16:38:00,258 North St, Los Angeles,CA,90001 +180205,Lightning Charging Cable,1,14.95,2019-04-14 09:59:00,677 North St, Portland,OR,97035 +180206,iPhone,1,700.0,2019-04-02 08:43:00,274 River St, San Francisco,CA,94016 +180207,Apple Airpods Headphones,1,150.0,2019-04-13 01:46:00,196 7th St, Los Angeles,CA,90001 +180208,Macbook Pro Laptop,1,1700.0,2019-04-04 12:19:00,800 Center St, New York City,NY,10001 +180209,USB-C Charging Cable,1,11.95,2019-04-15 16:32:00,51 Hickory St, New York City,NY,10001 +180210,Wired Headphones,1,11.99,2019-04-14 12:24:00,91 7th St, New York City,NY,10001 +180211,Lightning Charging Cable,1,14.95,2019-04-03 18:58:00,787 Lincoln St, Los Angeles,CA,90001 +180212,Flatscreen TV,1,300.0,2019-04-30 09:45:00,657 13th St, Los Angeles,CA,90001 +180213,27in FHD Monitor,1,149.99,2019-04-18 19:32:00,161 Washington St, Boston,MA,02215 +180213,AAA Batteries (4-pack),1,2.99,2019-04-18 19:32:00,161 Washington St, Boston,MA,02215 +180214,USB-C Charging Cable,1,11.95,2019-04-19 14:03:00,243 Forest St, New York City,NY,10001 +180215,27in 4K Gaming Monitor,1,389.99,2019-04-18 11:29:00,696 Lake St, Los Angeles,CA,90001 +180216,AA Batteries (4-pack),1,3.84,2019-04-16 20:51:00,673 River St, San Francisco,CA,94016 +180217,AA Batteries (4-pack),2,3.84,2019-04-28 23:26:00,226 12th St, Los Angeles,CA,90001 +180218,20in Monitor,1,109.99,2019-04-13 11:30:00,605 River St, Portland,ME,04101 +180219,AA Batteries (4-pack),1,3.84,2019-04-27 23:32:00,593 Sunset St, San Francisco,CA,94016 +180220,Lightning Charging Cable,1,14.95,2019-04-25 12:00:00,642 Spruce St, Seattle,WA,98101 +180221,Bose SoundSport Headphones,1,99.99,2019-04-01 08:00:00,789 7th St, Los Angeles,CA,90001 +180222,Flatscreen TV,1,300.0,2019-04-16 15:26:00,71 Ridge St, San Francisco,CA,94016 +180223,27in FHD Monitor,1,149.99,2019-04-04 21:03:00,352 10th St, Seattle,WA,98101 +180224,Wired Headphones,2,11.99,2019-04-11 13:41:00,522 Hickory St, Los Angeles,CA,90001 +180225,Lightning Charging Cable,1,14.95,2019-04-21 20:19:00,825 Highland St, San Francisco,CA,94016 +180226,USB-C Charging Cable,1,11.95,2019-04-07 14:52:00,126 Highland St, San Francisco,CA,94016 +180227,USB-C Charging Cable,3,11.95,2019-04-04 10:52:00,149 8th St, New York City,NY,10001 +180227,Bose SoundSport Headphones,1,99.99,2019-04-04 10:52:00,149 8th St, New York City,NY,10001 +180228,AAA Batteries (4-pack),1,2.99,2019-04-30 18:32:00,567 Walnut St, Atlanta,GA,30301 +180229,AA Batteries (4-pack),1,3.84,2019-04-13 15:33:00,66 Jackson St, Boston,MA,02215 +180230,USB-C Charging Cable,1,11.95,2019-04-01 19:53:00,846 River St, Atlanta,GA,30301 +180231,27in FHD Monitor,1,149.99,2019-04-27 12:24:00,221 2nd St, Los Angeles,CA,90001 +180232,USB-C Charging Cable,1,11.95,2019-04-08 13:47:00,311 5th St, Dallas,TX,75001 +180233,Wired Headphones,1,11.99,2019-04-06 13:37:00,779 7th St, New York City,NY,10001 +180234,Flatscreen TV,1,300.0,2019-04-09 12:22:00,742 Cedar St, Los Angeles,CA,90001 +180235,27in 4K Gaming Monitor,1,389.99,2019-04-15 19:16:00,699 Lake St, New York City,NY,10001 +180236,iPhone,1,700.0,2019-04-11 19:13:00,173 Pine St, Austin,TX,73301 +180237,iPhone,1,700.0,2019-04-18 12:35:00,746 1st St, Seattle,WA,98101 +180237,AAA Batteries (4-pack),1,2.99,2019-04-18 12:35:00,746 1st St, Seattle,WA,98101 +180238,34in Ultrawide Monitor,1,379.99,2019-04-25 20:17:00,722 Lake St, San Francisco,CA,94016 +180239,27in FHD Monitor,1,149.99,2019-04-23 19:02:00,169 Ridge St, Boston,MA,02215 +180240,Vareebadd Phone,1,400.0,2019-04-07 11:30:00,931 Hill St, San Francisco,CA,94016 +180241,27in 4K Gaming Monitor,1,389.99,2019-04-08 13:46:00,70 12th St, Dallas,TX,75001 +180242,USB-C Charging Cable,1,11.95,2019-04-22 12:17:00,833 Church St, Dallas,TX,75001 +180243,AA Batteries (4-pack),3,3.84,2019-04-27 01:33:00,381 6th St, Dallas,TX,75001 +180244,Bose SoundSport Headphones,1,99.99,2019-04-30 14:37:00,721 13th St, Dallas,TX,75001 +180245,20in Monitor,1,109.99,2019-04-29 18:54:00,593 North St, Boston,MA,02215 +180246,AAA Batteries (4-pack),2,2.99,2019-04-02 00:23:00,879 Main St, San Francisco,CA,94016 +180247,USB-C Charging Cable,1,11.95,2019-04-09 11:56:00,200 Pine St, Seattle,WA,98101 +180248,AA Batteries (4-pack),1,3.84,2019-04-18 20:33:00,262 South St, Atlanta,GA,30301 +180249,AA Batteries (4-pack),1,3.84,2019-04-29 11:53:00,732 Dogwood St, New York City,NY,10001 +180250,Wired Headphones,1,11.99,2019-04-17 10:07:00,419 Maple St, New York City,NY,10001 +180251,Lightning Charging Cable,2,14.95,2019-04-26 15:23:00,204 1st St, Portland,OR,97035 +180252,Flatscreen TV,1,300.0,2019-04-07 10:57:00,193 Center St, San Francisco,CA,94016 +180253,Lightning Charging Cable,1,14.95,2019-04-07 22:05:00,453 9th St, Los Angeles,CA,90001 +180254,27in 4K Gaming Monitor,1,389.99,2019-04-16 22:04:00,309 Center St, Boston,MA,02215 +180255,Bose SoundSport Headphones,1,99.99,2019-04-23 10:23:00,507 Dogwood St, New York City,NY,10001 +180256,Flatscreen TV,1,300.0,2019-04-04 11:31:00,705 River St, Los Angeles,CA,90001 +180257,Apple Airpods Headphones,1,150.0,2019-04-25 00:02:00,527 Willow St, New York City,NY,10001 +180258,Wired Headphones,1,11.99,2019-04-16 17:25:00,578 5th St, Atlanta,GA,30301 +180259,27in FHD Monitor,1,149.99,2019-04-22 21:12:00,712 Lake St, New York City,NY,10001 +180260,AA Batteries (4-pack),1,3.84,2019-04-15 11:30:00,614 8th St, New York City,NY,10001 +180261,AAA Batteries (4-pack),1,2.99,2019-04-18 15:20:00,226 Main St, San Francisco,CA,94016 +180262,USB-C Charging Cable,1,11.95,2019-04-30 17:38:00,403 Johnson St, Seattle,WA,98101 +180263,Apple Airpods Headphones,1,150.0,2019-04-27 19:21:00,806 9th St, New York City,NY,10001 +180264,Bose SoundSport Headphones,1,99.99,2019-04-14 18:19:00,416 8th St, New York City,NY,10001 +180265,AA Batteries (4-pack),3,3.84,2019-04-27 14:02:00,275 Willow St, Atlanta,GA,30301 +180266,Flatscreen TV,1,300.0,2019-04-24 12:14:00,525 Sunset St, New York City,NY,10001 +180267,Flatscreen TV,1,300.0,2019-04-10 18:15:00,784 Lake St, Boston,MA,02215 +180268,Wired Headphones,1,11.99,2019-04-14 13:14:00,278 1st St, Boston,MA,02215 +180269,Lightning Charging Cable,1,14.95,2019-04-05 22:32:00,888 9th St, Austin,TX,73301 +180270,Lightning Charging Cable,1,14.95,2019-04-06 15:27:00,737 Wilson St, Seattle,WA,98101 +180271,Flatscreen TV,1,300.0,2019-04-10 16:05:00,30 Jackson St, Boston,MA,02215 +180272,Apple Airpods Headphones,1,150.0,2019-04-06 20:26:00,552 Forest St, Los Angeles,CA,90001 +180273,34in Ultrawide Monitor,1,379.99,2019-04-28 22:53:00,129 River St, Atlanta,GA,30301 +180274,Bose SoundSport Headphones,1,99.99,2019-04-05 18:14:00,194 North St, San Francisco,CA,94016 +180275,AA Batteries (4-pack),1,3.84,2019-04-21 17:03:00,54 Madison St, New York City,NY,10001 +180276,27in 4K Gaming Monitor,1,389.99,2019-04-16 03:36:00,186 South St, Seattle,WA,98101 +180277,34in Ultrawide Monitor,1,379.99,2019-04-28 00:19:00,462 Elm St, Boston,MA,02215 +180278,iPhone,1,700.0,2019-04-10 10:23:00,77 1st St, San Francisco,CA,94016 +180279,AA Batteries (4-pack),1,3.84,2019-04-25 18:22:00,494 Cedar St, Portland,OR,97035 +180280,Lightning Charging Cable,1,14.95,2019-04-30 15:29:00,183 Adams St, Los Angeles,CA,90001 +180281,Lightning Charging Cable,1,14.95,2019-04-09 09:47:00,593 4th St, New York City,NY,10001 +180282,34in Ultrawide Monitor,1,379.99,2019-04-13 16:47:00,368 Washington St, New York City,NY,10001 +180283,Apple Airpods Headphones,1,150.0,2019-04-25 11:26:00,452 Pine St, New York City,NY,10001 +180284,AA Batteries (4-pack),1,3.84,2019-04-12 12:27:00,56 Elm St, Seattle,WA,98101 +180285,Lightning Charging Cable,1,14.95,2019-04-02 13:03:00,725 4th St, Boston,MA,02215 +180286,AAA Batteries (4-pack),1,2.99,2019-04-13 08:59:00,467 Sunset St, New York City,NY,10001 +180287,Apple Airpods Headphones,1,150.0,2019-04-01 15:21:00,480 11th St, Los Angeles,CA,90001 +180288,USB-C Charging Cable,1,11.95,2019-04-17 11:53:00,331 Church St, San Francisco,CA,94016 +180289,Lightning Charging Cable,1,14.95,2019-04-29 11:20:00,999 4th St, Atlanta,GA,30301 +180290,AAA Batteries (4-pack),3,2.99,2019-04-17 16:08:00,534 Ridge St, Seattle,WA,98101 +180291,Lightning Charging Cable,1,14.95,2019-04-19 18:18:00,21 8th St, Atlanta,GA,30301 +180292,Wired Headphones,1,11.99,2019-04-21 19:06:00,356 Madison St, Los Angeles,CA,90001 +180293,Bose SoundSport Headphones,1,99.99,2019-04-08 11:09:00,65 Adams St, Portland,OR,97035 +180294,AA Batteries (4-pack),1,3.84,2019-04-20 18:33:00,132 Main St, Boston,MA,02215 +180295,AA Batteries (4-pack),1,3.84,2019-04-30 16:42:00,495 Walnut St, San Francisco,CA,94016 +180296,Apple Airpods Headphones,1,150.0,2019-04-09 14:41:00,192 Church St, New York City,NY,10001 +180297,USB-C Charging Cable,1,11.95,2019-04-19 18:47:00,418 Spruce St, Austin,TX,73301 +180298,AA Batteries (4-pack),1,3.84,2019-04-15 11:27:00,569 Spruce St, San Francisco,CA,94016 +180299,Apple Airpods Headphones,1,150.0,2019-04-04 20:16:00,31 Cherry St, Seattle,WA,98101 +180300,AA Batteries (4-pack),1,3.84,2019-04-06 22:29:00,39 Church St, Los Angeles,CA,90001 +180301,34in Ultrawide Monitor,1,379.99,2019-04-21 16:49:00,75 Hickory St, Seattle,WA,98101 +180302,27in FHD Monitor,1,149.99,2019-04-18 18:16:00,666 South St, Los Angeles,CA,90001 +180303,Apple Airpods Headphones,1,150.0,2019-04-11 21:51:00,130 Willow St, Portland,OR,97035 +180304,AAA Batteries (4-pack),1,2.99,2019-04-11 10:35:00,948 Center St, Dallas,TX,75001 +180305,Apple Airpods Headphones,1,150.0,2019-04-13 14:12:00,596 Lakeview St, Atlanta,GA,30301 +180306,AAA Batteries (4-pack),2,2.99,2019-04-22 11:58:00,946 12th St, Seattle,WA,98101 +180307,Flatscreen TV,1,300.0,2019-04-04 15:30:00,329 Lakeview St, New York City,NY,10001 +180308,27in FHD Monitor,1,149.99,2019-04-22 14:15:00,23 6th St, Boston,MA,02215 +180309,Wired Headphones,1,11.99,2019-04-17 00:16:00,937 14th St, New York City,NY,10001 +180310,27in 4K Gaming Monitor,1,389.99,2019-04-09 08:45:00,659 Highland St, Austin,TX,73301 +180311,Wired Headphones,1,11.99,2019-04-24 22:27:00,210 Lakeview St, Atlanta,GA,30301 +180312,AAA Batteries (4-pack),1,2.99,2019-04-16 13:41:00,892 5th St, Boston,MA,02215 +180313,Lightning Charging Cable,1,14.95,2019-04-28 13:53:00,866 Hill St, New York City,NY,10001 +180314,AA Batteries (4-pack),1,3.84,2019-04-29 15:40:00,746 Jefferson St, San Francisco,CA,94016 +180315,Wired Headphones,1,11.99,2019-04-27 13:24:00,23 13th St, San Francisco,CA,94016 +180316,AA Batteries (4-pack),1,3.84,2019-04-18 21:00:00,683 Cedar St, Boston,MA,02215 +180317,AA Batteries (4-pack),2,3.84,2019-04-07 17:21:00,947 Madison St, Boston,MA,02215 +180318,Lightning Charging Cable,1,14.95,2019-04-10 15:39:00,125 Center St, Seattle,WA,98101 +180319,ThinkPad Laptop,1,999.99,2019-04-30 16:18:00,13 Dogwood St, Boston,MA,02215 +180320,Lightning Charging Cable,1,14.95,2019-04-01 19:09:00,525 Sunset St, Atlanta,GA,30301 +180321,USB-C Charging Cable,1,11.95,2019-04-23 07:27:00,883 14th St, Dallas,TX,75001 +180322,USB-C Charging Cable,1,11.95,2019-04-13 14:03:00,732 10th St, San Francisco,CA,94016 +180322,iPhone,1,700.0,2019-04-13 14:03:00,732 10th St, San Francisco,CA,94016 +180323,20in Monitor,1,109.99,2019-04-13 12:25:00,522 Dogwood St, Boston,MA,02215 +180324,USB-C Charging Cable,2,11.95,2019-04-09 13:29:00,353 South St, Los Angeles,CA,90001 +180325,27in 4K Gaming Monitor,1,389.99,2019-04-16 17:33:00,751 Wilson St, Los Angeles,CA,90001 +180326,20in Monitor,1,109.99,2019-04-11 15:58:00,843 Lakeview St, Los Angeles,CA,90001 +180327,Apple Airpods Headphones,1,150.0,2019-04-16 15:55:00,967 Madison St, New York City,NY,10001 +180328,Apple Airpods Headphones,1,150.0,2019-04-22 07:36:00,771 Hill St, Atlanta,GA,30301 +180329,Wired Headphones,1,11.99,2019-04-06 13:16:00,7 Cherry St, San Francisco,CA,94016 +180330,Wired Headphones,1,11.99,2019-04-18 12:35:00,624 9th St, Los Angeles,CA,90001 +180331,USB-C Charging Cable,1,11.95,2019-04-30 19:14:00,709 Highland St, Los Angeles,CA,90001 +180332,AA Batteries (4-pack),3,3.84,2019-04-14 17:52:00,257 Walnut St, New York City,NY,10001 +180333,AA Batteries (4-pack),5,3.84,2019-04-14 09:15:00,442 Madison St, Seattle,WA,98101 +180333,Wired Headphones,1,11.99,2019-04-14 09:15:00,442 Madison St, Seattle,WA,98101 +180334,20in Monitor,1,109.99,2019-04-22 20:14:00,969 Spruce St, San Francisco,CA,94016 +180335,ThinkPad Laptop,1,999.99,2019-04-08 17:21:00,356 Chestnut St, Los Angeles,CA,90001 +180336,AAA Batteries (4-pack),1,2.99,2019-04-19 18:49:00,45 8th St, Portland,OR,97035 +180337,USB-C Charging Cable,1,11.95,2019-04-18 06:55:00,885 12th St, San Francisco,CA,94016 +180338,USB-C Charging Cable,1,11.95,2019-04-12 16:38:00,54 1st St, New York City,NY,10001 +180339,Wired Headphones,1,11.99,2019-04-18 16:19:00,438 Center St, Los Angeles,CA,90001 +180340,27in 4K Gaming Monitor,1,389.99,2019-04-21 21:01:00,470 10th St, New York City,NY,10001 +180341,Lightning Charging Cable,1,14.95,2019-04-24 11:09:00,789 5th St, Austin,TX,73301 +180342,Wired Headphones,2,11.99,2019-04-14 14:54:00,422 11th St, Los Angeles,CA,90001 +180343,ThinkPad Laptop,1,999.99,2019-04-13 11:44:00,952 Park St, Boston,MA,02215 +180344,34in Ultrawide Monitor,1,379.99,2019-04-25 15:27:00,281 Washington St, Atlanta,GA,30301 +180345,Wired Headphones,1,11.99,2019-04-05 19:11:00,353 1st St, Los Angeles,CA,90001 +180346,AAA Batteries (4-pack),1,2.99,2019-04-20 13:13:00,980 South St, Los Angeles,CA,90001 +180347,AAA Batteries (4-pack),1,2.99,2019-04-26 10:49:00,45 10th St, New York City,NY,10001 +180348,Lightning Charging Cable,1,14.95,2019-04-14 20:11:00,158 11th St, San Francisco,CA,94016 +180349,Lightning Charging Cable,1,14.95,2019-04-17 07:13:00,420 Washington St, Dallas,TX,75001 +180350,Apple Airpods Headphones,1,150.0,2019-04-23 23:27:00,989 Hill St, Boston,MA,02215 +180351,ThinkPad Laptop,1,999.99,2019-04-09 09:45:00,447 Pine St, San Francisco,CA,94016 +180352,Bose SoundSport Headphones,1,99.99,2019-04-06 23:35:00,751 5th St, San Francisco,CA,94016 +180353,27in FHD Monitor,1,149.99,2019-04-22 11:58:00,628 Ridge St, Portland,OR,97035 +180353,AA Batteries (4-pack),1,3.84,2019-04-22 11:58:00,628 Ridge St, Portland,OR,97035 +180354,Wired Headphones,1,11.99,2019-04-11 22:08:00,868 Adams St, Seattle,WA,98101 +180355,34in Ultrawide Monitor,1,379.99,2019-04-09 09:12:00,369 Meadow St, Dallas,TX,75001 +180356,Lightning Charging Cable,1,14.95,2019-04-01 10:22:00,214 Dogwood St, New York City,NY,10001 +180357,USB-C Charging Cable,1,11.95,2019-04-15 01:08:00,855 Park St, San Francisco,CA,94016 +180358,AA Batteries (4-pack),2,3.84,2019-04-05 17:48:00,955 Lake St, New York City,NY,10001 +180359,LG Dryer,1,600.0,2019-04-03 15:17:00,20 Ridge St, Los Angeles,CA,90001 +180360,ThinkPad Laptop,1,999.99,2019-04-25 19:01:00,295 Dogwood St, Los Angeles,CA,90001 +180361,USB-C Charging Cable,1,11.95,2019-04-26 20:05:00,955 Johnson St, Seattle,WA,98101 +180362,AA Batteries (4-pack),2,3.84,2019-04-19 03:54:00,245 Lakeview St, New York City,NY,10001 +180363,Wired Headphones,1,11.99,2019-04-06 14:19:00,863 13th St, Portland,OR,97035 +180364,Lightning Charging Cable,1,14.95,2019-04-07 19:40:00,222 Adams St, Atlanta,GA,30301 +180365,Lightning Charging Cable,2,14.95,2019-04-23 21:27:00,414 13th St, Los Angeles,CA,90001 +180365,Google Phone,1,600.0,2019-04-23 21:27:00,414 13th St, Los Angeles,CA,90001 +180366,Wired Headphones,1,11.99,2019-04-29 23:08:00,40 7th St, New York City,NY,10001 +180367,Lightning Charging Cable,1,14.95,2019-04-23 09:58:00,351 Cedar St, New York City,NY,10001 +180368,27in FHD Monitor,1,149.99,2019-04-18 20:22:00,967 Willow St, San Francisco,CA,94016 +180369,Flatscreen TV,1,300.0,2019-04-08 18:17:00,205 Cedar St, Seattle,WA,98101 +180370,Google Phone,1,600.0,2019-04-17 12:55:00,758 Park St, Los Angeles,CA,90001 +180370,USB-C Charging Cable,1,11.95,2019-04-17 12:55:00,758 Park St, Los Angeles,CA,90001 +180371,Wired Headphones,1,11.99,2019-04-09 19:37:00,378 8th St, Atlanta,GA,30301 +180372,AA Batteries (4-pack),2,3.84,2019-04-17 12:52:00,213 Madison St, New York City,NY,10001 +180373,AA Batteries (4-pack),1,3.84,2019-04-02 09:58:00,782 4th St, Los Angeles,CA,90001 +180374,Wired Headphones,1,11.99,2019-04-27 19:07:00,678 Cherry St, San Francisco,CA,94016 +180375,27in FHD Monitor,1,149.99,2019-04-10 06:52:00,519 Park St, Seattle,WA,98101 +180376,Bose SoundSport Headphones,1,99.99,2019-04-27 15:57:00,446 Pine St, San Francisco,CA,94016 +180377,AAA Batteries (4-pack),2,2.99,2019-04-25 08:35:00,694 14th St, Seattle,WA,98101 +180378,Apple Airpods Headphones,1,150.0,2019-04-09 12:57:00,523 Jackson St, New York City,NY,10001 +180379,Lightning Charging Cable,1,14.95,2019-04-09 14:59:00,489 North St, San Francisco,CA,94016 +180380,Apple Airpods Headphones,1,150.0,2019-04-05 21:49:00,490 Ridge St, Boston,MA,02215 +180381,USB-C Charging Cable,1,11.95,2019-04-08 18:43:00,247 5th St, Los Angeles,CA,90001 +180382,AA Batteries (4-pack),1,3.84,2019-04-19 14:20:00,151 8th St, San Francisco,CA,94016 +180382,AAA Batteries (4-pack),2,2.99,2019-04-19 14:20:00,151 8th St, San Francisco,CA,94016 +180383,USB-C Charging Cable,1,11.95,2019-04-20 17:09:00,804 Cherry St, Seattle,WA,98101 +180384,Apple Airpods Headphones,1,150.0,2019-04-07 17:05:00,44 Chestnut St, Boston,MA,02215 +180385,USB-C Charging Cable,1,11.95,2019-04-01 17:32:00,935 Walnut St, San Francisco,CA,94016 +180386,Wired Headphones,1,11.99,2019-04-26 22:16:00,918 1st St, Portland,OR,97035 +180387,USB-C Charging Cable,2,11.95,2019-04-08 19:40:00,951 5th St, San Francisco,CA,94016 +180388,USB-C Charging Cable,1,11.95,2019-04-28 19:05:00,106 Washington St, Austin,TX,73301 +180389,Lightning Charging Cable,1,14.95,2019-04-05 21:55:00,528 Adams St, New York City,NY,10001 +180390,AA Batteries (4-pack),1,3.84,2019-04-26 19:45:00,455 Hickory St, New York City,NY,10001 +180391,LG Washing Machine,1,600.0,2019-04-06 14:11:00,979 Lakeview St, San Francisco,CA,94016 +180392,Apple Airpods Headphones,1,150.0,2019-04-09 21:58:00,435 Pine St, Los Angeles,CA,90001 +180393,Apple Airpods Headphones,1,150.0,2019-04-08 18:49:00,54 Jefferson St, Los Angeles,CA,90001 +180394,iPhone,1,700.0,2019-04-09 14:40:00,201 7th St, Seattle,WA,98101 +180395,27in 4K Gaming Monitor,1,389.99,2019-04-05 18:31:00,158 Elm St, San Francisco,CA,94016 +180396,Lightning Charging Cable,1,14.95,2019-04-07 10:56:00,666 1st St, Seattle,WA,98101 +180397,AA Batteries (4-pack),1,3.84,2019-04-21 10:30:00,757 West St, Los Angeles,CA,90001 +180397,Apple Airpods Headphones,2,150.0,2019-04-21 10:30:00,757 West St, Los Angeles,CA,90001 +180398,LG Dryer,1,600.0,2019-04-18 03:10:00,684 9th St, San Francisco,CA,94016 +180399,iPhone,1,700.0,2019-04-11 15:57:00,535 Johnson St, Austin,TX,73301 +180399,Lightning Charging Cable,1,14.95,2019-04-11 15:57:00,535 Johnson St, Austin,TX,73301 +180400,AAA Batteries (4-pack),2,2.99,2019-04-08 16:12:00,432 Cedar St, Boston,MA,02215 +180401,ThinkPad Laptop,1,999.99,2019-04-14 10:56:00,598 Lakeview St, Dallas,TX,75001 +180402,Lightning Charging Cable,1,14.95,2019-04-02 14:10:00,558 River St, Seattle,WA,98101 +180403,Bose SoundSport Headphones,1,99.99,2019-04-10 14:40:00,182 7th St, Boston,MA,02215 +180404,AA Batteries (4-pack),3,3.84,2019-04-04 16:45:00,597 Pine St, Los Angeles,CA,90001 +180405,Wired Headphones,1,11.99,2019-04-08 09:50:00,605 Lincoln St, Dallas,TX,75001 +180406,Bose SoundSport Headphones,1,99.99,2019-04-19 15:42:00,845 4th St, Los Angeles,CA,90001 +180406,Lightning Charging Cable,1,14.95,2019-04-19 15:42:00,845 4th St, Los Angeles,CA,90001 +180407,Lightning Charging Cable,1,14.95,2019-04-07 08:14:00,601 Washington St, New York City,NY,10001 +180408,USB-C Charging Cable,1,11.95,2019-04-15 20:14:00,54 14th St, San Francisco,CA,94016 +180409,Lightning Charging Cable,1,14.95,2019-04-24 09:36:00,416 Adams St, Dallas,TX,75001 +180410,Bose SoundSport Headphones,1,99.99,2019-04-19 09:48:00,244 Hickory St, Los Angeles,CA,90001 +180411,Apple Airpods Headphones,1,150.0,2019-04-05 19:40:00,26 Lincoln St, San Francisco,CA,94016 +180412,Wired Headphones,1,11.99,2019-04-14 18:49:00,785 West St, Los Angeles,CA,90001 +180413,Wired Headphones,1,11.99,2019-04-11 06:46:00,492 14th St, San Francisco,CA,94016 +180414,USB-C Charging Cable,1,11.95,2019-04-02 16:54:00,720 5th St, New York City,NY,10001 +180415,Lightning Charging Cable,1,14.95,2019-04-30 12:55:00,827 North St, Boston,MA,02215 +180416,Flatscreen TV,1,300.0,2019-04-14 14:38:00,461 12th St, San Francisco,CA,94016 +180417,Apple Airpods Headphones,1,150.0,2019-04-07 20:55:00,375 Elm St, New York City,NY,10001 +180418,AA Batteries (4-pack),1,3.84,2019-04-27 19:47:00,187 Ridge St, San Francisco,CA,94016 +180419,USB-C Charging Cable,1,11.95,2019-04-04 01:24:00,868 14th St, Los Angeles,CA,90001 +180420,ThinkPad Laptop,1,999.99,2019-04-10 20:26:00,841 Center St, San Francisco,CA,94016 +180421,iPhone,1,700.0,2019-04-21 18:59:00,652 Adams St, Los Angeles,CA,90001 +180422,Google Phone,1,600.0,2019-04-10 16:02:00,755 Ridge St, San Francisco,CA,94016 +180422,USB-C Charging Cable,2,11.95,2019-04-10 16:02:00,755 Ridge St, San Francisco,CA,94016 +180423,Google Phone,1,600.0,2019-04-29 13:28:00,373 13th St, Boston,MA,02215 +180424,USB-C Charging Cable,1,11.95,2019-04-11 15:22:00,255 Hill St, Boston,MA,02215 +180425,Lightning Charging Cable,2,14.95,2019-04-05 15:46:00,183 Sunset St, San Francisco,CA,94016 +180426,27in FHD Monitor,1,149.99,2019-04-10 09:21:00,278 Sunset St, San Francisco,CA,94016 +180427,USB-C Charging Cable,1,11.95,2019-04-13 16:37:00,491 River St, New York City,NY,10001 +180428,Wired Headphones,1,11.99,2019-04-02 12:27:00,432 Chestnut St, Boston,MA,02215 +180429,ThinkPad Laptop,1,999.99,2019-04-18 16:24:00,686 Jackson St, Portland,OR,97035 +180430,Google Phone,1,600.0,2019-04-10 15:34:00,118 Highland St, Seattle,WA,98101 +180431,Macbook Pro Laptop,1,1700.0,2019-04-01 21:40:00,746 12th St, Austin,TX,73301 +180432,34in Ultrawide Monitor,1,379.99,2019-04-06 11:49:00,616 Sunset St, Seattle,WA,98101 +180433,27in FHD Monitor,1,149.99,2019-04-10 16:57:00,173 Willow St, San Francisco,CA,94016 +180434,AA Batteries (4-pack),1,3.84,2019-04-10 00:28:00,118 Wilson St, Dallas,TX,75001 +180435,AA Batteries (4-pack),1,3.84,2019-04-20 12:12:00,562 Madison St, Boston,MA,02215 +180436,27in FHD Monitor,1,149.99,2019-04-19 09:59:00,27 Adams St, Dallas,TX,75001 +180437,AAA Batteries (4-pack),1,2.99,2019-04-11 02:13:00,669 Meadow St, Atlanta,GA,30301 +180438,34in Ultrawide Monitor,1,379.99,2019-04-18 08:52:00,985 4th St, New York City,NY,10001 +180439,Flatscreen TV,1,300.0,2019-04-17 09:55:00,439 4th St, New York City,NY,10001 +180440,Wired Headphones,1,11.99,2019-04-06 10:29:00,647 1st St, New York City,NY,10001 +180441,AAA Batteries (4-pack),1,2.99,2019-04-13 16:13:00,784 South St, San Francisco,CA,94016 +180442,Bose SoundSport Headphones,1,99.99,2019-04-29 11:49:00,823 Dogwood St, San Francisco,CA,94016 +180443,USB-C Charging Cable,1,11.95,2019-04-26 20:57:00,859 River St, Seattle,WA,98101 +180444,Apple Airpods Headphones,1,150.0,2019-04-15 22:51:00,113 River St, Los Angeles,CA,90001 +180445,Lightning Charging Cable,1,14.95,2019-04-20 17:51:00,780 6th St, Dallas,TX,75001 +180446,Lightning Charging Cable,1,14.95,2019-04-11 22:02:00,285 Lincoln St, New York City,NY,10001 +180447,Wired Headphones,1,11.99,2019-04-14 00:31:00,247 Wilson St, Los Angeles,CA,90001 +180448,34in Ultrawide Monitor,1,379.99,2019-04-12 22:48:00,882 Hill St, San Francisco,CA,94016 +180449,ThinkPad Laptop,1,999.99,2019-04-05 12:00:00,431 Willow St, San Francisco,CA,94016 +180450,AA Batteries (4-pack),1,3.84,2019-04-07 14:54:00,907 River St, Dallas,TX,75001 +180451,Macbook Pro Laptop,1,1700.0,2019-04-02 10:08:00,849 Chestnut St, San Francisco,CA,94016 +180452,Lightning Charging Cable,1,14.95,2019-04-24 14:47:00,618 Hill St, Seattle,WA,98101 +180453,AA Batteries (4-pack),4,3.84,2019-04-19 19:36:00,515 Meadow St, San Francisco,CA,94016 +180454,AAA Batteries (4-pack),2,2.99,2019-04-09 06:51:00,862 Sunset St, Los Angeles,CA,90001 +180455,Wired Headphones,1,11.99,2019-04-27 10:30:00,98 7th St, New York City,NY,10001 +180456,iPhone,1,700.0,2019-04-28 13:36:00,900 Highland St, Portland,OR,97035 +180456,Apple Airpods Headphones,1,150.0,2019-04-28 13:36:00,900 Highland St, Portland,OR,97035 +180457,Wired Headphones,1,11.99,2019-04-19 20:27:00,718 Lincoln St, San Francisco,CA,94016 +180458,USB-C Charging Cable,1,11.95,2019-04-19 13:54:00,574 6th St, San Francisco,CA,94016 +180459,27in 4K Gaming Monitor,1,389.99,2019-04-06 15:28:00,403 Meadow St, Portland,OR,97035 +180460,Google Phone,1,600.0,2019-04-20 14:57:00,127 Adams St, San Francisco,CA,94016 +180461,Lightning Charging Cable,1,14.95,2019-04-26 17:27:00,214 Madison St, San Francisco,CA,94016 +180462,USB-C Charging Cable,1,11.95,2019-04-08 22:29:00,488 Sunset St, Los Angeles,CA,90001 +180463,AAA Batteries (4-pack),2,2.99,2019-04-19 19:00:00,462 Meadow St, San Francisco,CA,94016 +180464,Bose SoundSport Headphones,1,99.99,2019-04-19 15:28:00,684 Center St, San Francisco,CA,94016 +180465,AAA Batteries (4-pack),3,2.99,2019-04-02 23:41:00,578 Church St, Seattle,WA,98101 +180466,Bose SoundSport Headphones,1,99.99,2019-04-14 07:56:00,406 Main St, Los Angeles,CA,90001 +180467,Apple Airpods Headphones,1,150.0,2019-04-03 22:32:00,570 River St, Los Angeles,CA,90001 +180467,USB-C Charging Cable,1,11.95,2019-04-03 22:32:00,570 River St, Los Angeles,CA,90001 +180468,USB-C Charging Cable,2,11.95,2019-04-25 13:20:00,716 Hickory St, Los Angeles,CA,90001 +180469,Wired Headphones,1,11.99,2019-04-14 08:27:00,452 Wilson St, New York City,NY,10001 +180470,USB-C Charging Cable,1,11.95,2019-04-14 11:17:00,574 Park St, Los Angeles,CA,90001 +180471,AAA Batteries (4-pack),1,2.99,2019-04-10 20:42:00,556 Maple St, San Francisco,CA,94016 +180472,AA Batteries (4-pack),1,3.84,2019-04-11 15:48:00,832 Lake St, San Francisco,CA,94016 +180473,AA Batteries (4-pack),1,3.84,2019-04-15 11:07:00,90 Lincoln St, Dallas,TX,75001 +180474,Lightning Charging Cable,1,14.95,2019-04-30 10:04:00,350 Washington St, San Francisco,CA,94016 +180475,27in FHD Monitor,1,149.99,2019-04-15 13:35:00,875 Washington St, San Francisco,CA,94016 +180476,Bose SoundSport Headphones,1,99.99,2019-04-26 23:09:00,734 Pine St, New York City,NY,10001 +180477,27in FHD Monitor,1,149.99,2019-04-16 08:58:00,411 5th St, Los Angeles,CA,90001 +180478,Wired Headphones,1,11.99,2019-04-21 17:04:00,417 Adams St, Los Angeles,CA,90001 +180479,AAA Batteries (4-pack),1,2.99,2019-04-30 11:57:00,559 Washington St, New York City,NY,10001 +180480,Bose SoundSport Headphones,1,99.99,2019-04-02 12:00:00,105 Johnson St, Boston,MA,02215 +180481,Wired Headphones,1,11.99,2019-04-04 19:04:00,970 Lake St, San Francisco,CA,94016 +180482,AAA Batteries (4-pack),1,2.99,2019-04-28 16:55:00,73 Walnut St, Atlanta,GA,30301 +180483,AAA Batteries (4-pack),1,2.99,2019-04-07 15:22:00,375 Johnson St, New York City,NY,10001 +180484,27in FHD Monitor,1,149.99,2019-04-16 19:31:00,654 Washington St, Los Angeles,CA,90001 +180485,34in Ultrawide Monitor,1,379.99,2019-04-18 14:19:00,704 Forest St, Los Angeles,CA,90001 +180486,USB-C Charging Cable,1,11.95,2019-04-13 12:06:00,907 Sunset St, San Francisco,CA,94016 +180487,20in Monitor,1,109.99,2019-04-26 15:51:00,161 Sunset St, Los Angeles,CA,90001 +180488,Lightning Charging Cable,1,14.95,2019-04-19 11:55:00,571 Forest St, San Francisco,CA,94016 +180489,AA Batteries (4-pack),1,3.84,2019-04-21 19:55:00,140 Lakeview St, Portland,OR,97035 +180490,Apple Airpods Headphones,1,150.0,2019-04-26 01:34:00,418 11th St, Atlanta,GA,30301 +180491,AA Batteries (4-pack),4,3.84,2019-04-14 10:21:00,943 8th St, Seattle,WA,98101 +180492,Apple Airpods Headphones,1,150.0,2019-04-06 10:06:00,277 2nd St, Boston,MA,02215 +180493,Wired Headphones,1,11.99,2019-04-19 14:39:00,782 9th St, New York City,NY,10001 +180494,iPhone,1,700.0,2019-04-29 10:04:00,972 Pine St, Austin,TX,73301 +180495,USB-C Charging Cable,2,11.95,2019-04-12 16:02:00,974 Washington St, Dallas,TX,75001 +180496,Macbook Pro Laptop,1,1700.0,2019-04-06 13:07:00,646 Maple St, Seattle,WA,98101 +180497,Lightning Charging Cable,1,14.95,2019-04-12 15:24:00,728 Meadow St, Boston,MA,02215 +180498,Apple Airpods Headphones,1,150.0,2019-04-11 19:36:00,976 Wilson St, Los Angeles,CA,90001 +180499,27in 4K Gaming Monitor,1,389.99,2019-04-23 20:22:00,427 Highland St, Seattle,WA,98101 +180500,AAA Batteries (4-pack),1,2.99,2019-04-04 12:43:00,169 Main St, Boston,MA,02215 +180501,AA Batteries (4-pack),1,3.84,2019-04-19 09:40:00,881 4th St, Portland,OR,97035 +180502,USB-C Charging Cable,1,11.95,2019-04-08 21:11:00,899 West St, Los Angeles,CA,90001 +180503,AAA Batteries (4-pack),1,2.99,2019-04-12 08:37:00,981 River St, Los Angeles,CA,90001 +180504,AAA Batteries (4-pack),1,2.99,2019-04-28 13:26:00,425 Meadow St, Dallas,TX,75001 +180505,Lightning Charging Cable,1,14.95,2019-04-16 12:38:00,582 River St, Atlanta,GA,30301 +180506,AA Batteries (4-pack),1,3.84,2019-04-05 17:53:00,763 Jackson St, New York City,NY,10001 +180507,AAA Batteries (4-pack),1,2.99,2019-04-23 11:05:00,406 9th St, Boston,MA,02215 +180508,USB-C Charging Cable,1,11.95,2019-04-21 12:36:00,756 Spruce St, Seattle,WA,98101 +180509,20in Monitor,1,109.99,2019-04-13 11:42:00,57 Lincoln St, Boston,MA,02215 +180510,Lightning Charging Cable,1,14.95,2019-04-06 20:23:00,201 Jefferson St, Los Angeles,CA,90001 +180511,USB-C Charging Cable,1,11.95,2019-04-21 16:25:00,124 Center St, San Francisco,CA,94016 +180512,Wired Headphones,1,11.99,2019-04-19 07:42:00,602 Elm St, Dallas,TX,75001 +180513,Wired Headphones,1,11.99,2019-04-02 13:35:00,373 Hill St, Seattle,WA,98101 +180514,Wired Headphones,1,11.99,2019-04-15 16:28:00,958 1st St, Portland,OR,97035 +180514,iPhone,1,700.0,2019-04-15 16:28:00,958 1st St, Portland,OR,97035 +180515,27in 4K Gaming Monitor,1,389.99,2019-04-29 09:21:00,858 West St, New York City,NY,10001 +180515,Apple Airpods Headphones,1,150.0,2019-04-29 09:21:00,858 West St, New York City,NY,10001 +180516,Wired Headphones,1,11.99,2019-04-16 15:57:00,374 West St, Los Angeles,CA,90001 +180517,AAA Batteries (4-pack),1,2.99,2019-04-01 10:48:00,214 6th St, Los Angeles,CA,90001 +180518,Apple Airpods Headphones,1,150.0,2019-04-01 19:13:00,316 10th St, Los Angeles,CA,90001 +180519,AA Batteries (4-pack),1,3.84,2019-04-17 17:05:00,500 South St, Portland,OR,97035 +180520,AAA Batteries (4-pack),1,2.99,2019-04-01 07:46:00,84 Elm St, Los Angeles,CA,90001 +180521,AA Batteries (4-pack),3,3.84,2019-04-23 23:31:00,457 Willow St, Boston,MA,02215 +180522,USB-C Charging Cable,1,11.95,2019-04-05 19:45:00,75 Lake St, New York City,NY,10001 +180523,iPhone,1,700.0,2019-04-09 13:24:00,591 Lake St, Dallas,TX,75001 +180523,Lightning Charging Cable,1,14.95,2019-04-09 13:24:00,591 Lake St, Dallas,TX,75001 +180524,Bose SoundSport Headphones,1,99.99,2019-04-16 19:30:00,33 5th St, San Francisco,CA,94016 +180525,27in FHD Monitor,1,149.99,2019-04-04 10:40:00,327 Main St, Los Angeles,CA,90001 +180526,Wired Headphones,1,11.99,2019-04-26 09:21:00,677 Church St, San Francisco,CA,94016 +180527,Wired Headphones,1,11.99,2019-04-03 12:15:00,534 Hickory St, San Francisco,CA,94016 +180528,Bose SoundSport Headphones,1,99.99,2019-04-04 15:16:00,296 Adams St, Boston,MA,02215 +180529,Lightning Charging Cable,1,14.95,2019-04-08 22:14:00,623 South St, Seattle,WA,98101 +180530,ThinkPad Laptop,1,999.99,2019-04-06 19:15:00,466 Meadow St, Los Angeles,CA,90001 +180531,Apple Airpods Headphones,1,150.0,2019-04-24 09:59:00,778 1st St, San Francisco,CA,94016 +180532,iPhone,1,700.0,2019-04-18 11:31:00,865 River St, Los Angeles,CA,90001 +180532,Lightning Charging Cable,1,14.95,2019-04-18 11:31:00,865 River St, Los Angeles,CA,90001 +180533,Flatscreen TV,1,300.0,2019-04-17 09:17:00,342 10th St, Austin,TX,73301 +180534,34in Ultrawide Monitor,1,379.99,2019-04-19 17:33:00,560 7th St, New York City,NY,10001 +180535,iPhone,1,700.0,2019-04-27 21:51:00,42 Lakeview St, Austin,TX,73301 +180536,Lightning Charging Cable,1,14.95,2019-04-18 16:27:00,512 North St, New York City,NY,10001 +180537,AAA Batteries (4-pack),1,2.99,2019-04-21 20:45:00,661 14th St, Los Angeles,CA,90001 +180538,Bose SoundSport Headphones,1,99.99,2019-04-16 11:35:00,622 Madison St, San Francisco,CA,94016 +180539,Apple Airpods Headphones,1,150.0,2019-04-13 21:47:00,47 Lakeview St, San Francisco,CA,94016 +180540,iPhone,1,700.0,2019-04-21 21:00:00,330 6th St, Los Angeles,CA,90001 +180541,20in Monitor,1,109.99,2019-04-30 22:40:00,725 12th St, Atlanta,GA,30301 +180542,Lightning Charging Cable,2,14.95,2019-04-20 16:49:00,245 Meadow St, Boston,MA,02215 +180543,Google Phone,1,600.0,2019-04-29 22:42:00,945 River St, San Francisco,CA,94016 +180544,AA Batteries (4-pack),1,3.84,2019-04-22 20:01:00,840 Spruce St, San Francisco,CA,94016 +180545,Macbook Pro Laptop,1,1700.0,2019-04-07 20:28:00,483 Main St, San Francisco,CA,94016 +180546,Wired Headphones,1,11.99,2019-04-11 13:44:00,555 6th St, San Francisco,CA,94016 +180547,Wired Headphones,1,11.99,2019-04-14 20:52:00,658 Washington St, Portland,ME,04101 +180548,AAA Batteries (4-pack),1,2.99,2019-04-12 16:03:00,744 Wilson St, Dallas,TX,75001 +180549,Lightning Charging Cable,1,14.95,2019-04-05 21:43:00,444 Jefferson St, New York City,NY,10001 +180550,Apple Airpods Headphones,1,150.0,2019-04-02 20:00:00,666 Hill St, New York City,NY,10001 +180551,USB-C Charging Cable,1,11.95,2019-04-30 01:19:00,179 Jackson St, Los Angeles,CA,90001 +180552,AA Batteries (4-pack),2,3.84,2019-04-30 21:20:00,728 Highland St, Atlanta,GA,30301 +180553,USB-C Charging Cable,1,11.95,2019-04-13 10:55:00,268 5th St, Los Angeles,CA,90001 +180554,Macbook Pro Laptop,1,1700.0,2019-04-21 10:41:00,466 Chestnut St, Seattle,WA,98101 +180555,Bose SoundSport Headphones,1,99.99,2019-04-20 10:07:00,203 Chestnut St, San Francisco,CA,94016 +180556,34in Ultrawide Monitor,1,379.99,2019-04-12 23:45:00,923 Dogwood St, Los Angeles,CA,90001 +180557,USB-C Charging Cable,1,11.95,2019-04-13 08:30:00,750 Dogwood St, Dallas,TX,75001 +180558,27in 4K Gaming Monitor,1,389.99,2019-04-03 12:31:00,386 Hickory St, Los Angeles,CA,90001 +180558,Vareebadd Phone,1,400.0,2019-04-03 12:31:00,386 Hickory St, Los Angeles,CA,90001 +180559,Flatscreen TV,1,300.0,2019-04-17 12:48:00,467 Maple St, Atlanta,GA,30301 +180560,AA Batteries (4-pack),4,3.84,2019-04-22 14:34:00,553 Walnut St, Los Angeles,CA,90001 +180561,Wired Headphones,1,11.99,2019-04-18 16:21:00,718 Elm St, Seattle,WA,98101 +180562,USB-C Charging Cable,1,11.95,2019-04-05 19:40:00,560 Jackson St, San Francisco,CA,94016 +180563,AAA Batteries (4-pack),1,2.99,2019-04-21 17:50:00,644 13th St, Seattle,WA,98101 +180564,AA Batteries (4-pack),1,3.84,2019-04-12 23:24:00,47 8th St, San Francisco,CA,94016 +180565,AA Batteries (4-pack),4,3.84,2019-04-13 13:02:00,622 14th St, San Francisco,CA,94016 +180566,Apple Airpods Headphones,1,150.0,2019-04-25 15:21:00,28 Forest St, Boston,MA,02215 +180567,Wired Headphones,1,11.99,2019-04-10 21:22:00,414 Cedar St, Los Angeles,CA,90001 +180568,AA Batteries (4-pack),1,3.84,2019-04-14 10:31:00,215 12th St, San Francisco,CA,94016 +180569,Bose SoundSport Headphones,1,99.99,2019-04-14 10:37:00,454 Ridge St, Los Angeles,CA,90001 +180570,USB-C Charging Cable,1,11.95,2019-04-11 20:07:00,337 Washington St, San Francisco,CA,94016 +180571,Bose SoundSport Headphones,1,99.99,2019-04-02 07:59:00,303 Washington St, San Francisco,CA,94016 +180572,AA Batteries (4-pack),1,3.84,2019-04-09 16:56:00,581 Cherry St, Seattle,WA,98101 +180573,27in FHD Monitor,1,149.99,2019-04-09 23:49:00,856 Chestnut St, Boston,MA,02215 +180574,Google Phone,1,600.0,2019-04-17 12:06:00,742 13th St, Los Angeles,CA,90001 +180575,Bose SoundSport Headphones,1,99.99,2019-04-25 18:36:00,423 Ridge St, San Francisco,CA,94016 +180576,Lightning Charging Cable,1,14.95,2019-04-18 17:23:00,431 Park St, Dallas,TX,75001 +180577,AA Batteries (4-pack),1,3.84,2019-04-30 21:26:00,989 Elm St, San Francisco,CA,94016 +180578,AAA Batteries (4-pack),1,2.99,2019-04-28 12:15:00,129 Wilson St, Portland,OR,97035 +180579,AAA Batteries (4-pack),1,2.99,2019-04-25 01:31:00,593 Lincoln St, San Francisco,CA,94016 +180580,Apple Airpods Headphones,1,150.0,2019-04-04 08:03:00,649 13th St, New York City,NY,10001 +180581,Lightning Charging Cable,1,14.95,2019-04-28 18:20:00,280 Hill St, Los Angeles,CA,90001 +180582,Lightning Charging Cable,1,14.95,2019-04-02 10:44:00,206 Walnut St, Atlanta,GA,30301 +180583,Google Phone,1,600.0,2019-04-30 14:40:00,168 Chestnut St, San Francisco,CA,94016 +180584,Apple Airpods Headphones,1,150.0,2019-04-27 00:09:00,923 Maple St, Dallas,TX,75001 +180585,USB-C Charging Cable,1,11.95,2019-04-09 17:51:00,756 Forest St, New York City,NY,10001 +180586,Lightning Charging Cable,1,14.95,2019-04-24 17:01:00,154 Park St, San Francisco,CA,94016 +180587,AAA Batteries (4-pack),1,2.99,2019-04-01 18:30:00,848 Adams St, New York City,NY,10001 +180588,USB-C Charging Cable,1,11.95,2019-04-26 14:27:00,32 Wilson St, San Francisco,CA,94016 +180589,AAA Batteries (4-pack),1,2.99,2019-04-26 21:02:00,277 North St, Dallas,TX,75001 +180590,Wired Headphones,1,11.99,2019-04-09 12:07:00,298 Church St, Atlanta,GA,30301 +180591,Apple Airpods Headphones,1,150.0,2019-04-06 21:33:00,322 Walnut St, San Francisco,CA,94016 +180592,USB-C Charging Cable,1,11.95,2019-04-18 12:52:00,455 River St, Boston,MA,02215 +180593,Apple Airpods Headphones,1,150.0,2019-04-05 16:40:00,420 14th St, San Francisco,CA,94016 +180594,Lightning Charging Cable,1,14.95,2019-04-27 22:04:00,864 Washington St, Los Angeles,CA,90001 +180595,AAA Batteries (4-pack),1,2.99,2019-04-17 14:50:00,213 Forest St, Los Angeles,CA,90001 +180596,Wired Headphones,1,11.99,2019-04-04 06:48:00,244 Lincoln St, Seattle,WA,98101 +180597,AAA Batteries (4-pack),2,2.99,2019-04-28 05:57:00,309 River St, Seattle,WA,98101 +180598,Macbook Pro Laptop,1,1700.0,2019-04-24 11:49:00,772 Ridge St, Los Angeles,CA,90001 +180599,Apple Airpods Headphones,1,150.0,2019-04-15 03:17:00,174 River St, San Francisco,CA,94016 +180600,Wired Headphones,1,11.99,2019-04-08 09:40:00,481 7th St, New York City,NY,10001 +180601,Lightning Charging Cable,1,14.95,2019-04-25 12:14:00,658 Forest St, Los Angeles,CA,90001 +180602,27in FHD Monitor,1,149.99,2019-04-25 00:44:00,422 Center St, San Francisco,CA,94016 +180603,Wired Headphones,1,11.99,2019-04-16 12:24:00,682 1st St, San Francisco,CA,94016 +180604,Apple Airpods Headphones,1,150.0,2019-04-07 10:47:00,424 Park St, Los Angeles,CA,90001 +180605,AA Batteries (4-pack),1,3.84,2019-04-22 17:33:00,865 10th St, Los Angeles,CA,90001 +180606,Apple Airpods Headphones,1,150.0,2019-04-22 10:58:00,629 8th St, Austin,TX,73301 +180607,USB-C Charging Cable,1,11.95,2019-04-14 17:01:00,546 Lake St, San Francisco,CA,94016 +180608,USB-C Charging Cable,1,11.95,2019-04-11 09:57:00,768 9th St, Dallas,TX,75001 +180609,Wired Headphones,1,11.99,2019-04-10 11:19:00,667 5th St, Boston,MA,02215 +180610,USB-C Charging Cable,1,11.95,2019-04-11 22:36:00,144 Willow St, Los Angeles,CA,90001 +180611,Lightning Charging Cable,1,14.95,2019-04-07 18:21:00,635 Lake St, Austin,TX,73301 +180612,AAA Batteries (4-pack),1,2.99,2019-04-17 10:53:00,592 Cedar St, Boston,MA,02215 +180613,Lightning Charging Cable,1,14.95,2019-04-03 17:59:00,406 Elm St, San Francisco,CA,94016 +180614,AAA Batteries (4-pack),1,2.99,2019-04-06 06:07:00,806 Chestnut St, Los Angeles,CA,90001 +180615,Apple Airpods Headphones,1,150.0,2019-04-19 10:12:00,206 5th St, Atlanta,GA,30301 +180616,AAA Batteries (4-pack),1,2.99,2019-04-17 06:54:00,384 Madison St, Dallas,TX,75001 +180617,Wired Headphones,1,11.99,2019-04-16 13:11:00,591 2nd St, New York City,NY,10001 +180618,Lightning Charging Cable,1,14.95,2019-04-06 10:26:00,11 Chestnut St, Austin,TX,73301 +180619,Lightning Charging Cable,1,14.95,2019-04-06 23:47:00,124 Chestnut St, Boston,MA,02215 +180620,Bose SoundSport Headphones,1,99.99,2019-04-08 01:46:00,298 Church St, Portland,OR,97035 +180621,Flatscreen TV,1,300.0,2019-04-01 12:37:00,212 Center St, Austin,TX,73301 +180622,USB-C Charging Cable,1,11.95,2019-04-28 10:23:00,167 West St, Atlanta,GA,30301 +180623,Lightning Charging Cable,1,14.95,2019-04-06 14:27:00,729 12th St, San Francisco,CA,94016 +180624,27in FHD Monitor,1,149.99,2019-04-05 14:03:00,895 Highland St, San Francisco,CA,94016 +180625,Lightning Charging Cable,1,14.95,2019-04-02 22:27:00,16 6th St, Portland,ME,04101 +180626,iPhone,1,700.0,2019-04-13 12:21:00,769 Hickory St, Atlanta,GA,30301 +180627,iPhone,1,700.0,2019-04-11 19:46:00,888 4th St, New York City,NY,10001 +180627,Lightning Charging Cable,1,14.95,2019-04-11 19:46:00,888 4th St, New York City,NY,10001 +180628,Vareebadd Phone,1,400.0,2019-04-07 22:29:00,988 7th St, Seattle,WA,98101 +180629,Google Phone,1,600.0,2019-04-30 08:13:00,677 Wilson St, San Francisco,CA,94016 +180630,27in FHD Monitor,1,149.99,2019-04-01 23:29:00,971 Wilson St, San Francisco,CA,94016 +180631,AA Batteries (4-pack),1,3.84,2019-04-25 18:21:00,117 5th St, Seattle,WA,98101 +180631,Lightning Charging Cable,1,14.95,2019-04-25 18:21:00,117 5th St, Seattle,WA,98101 +180632,Wired Headphones,1,11.99,2019-04-12 21:27:00,525 Johnson St, Los Angeles,CA,90001 +180633,Google Phone,1,600.0,2019-04-25 22:49:00,602 Hickory St, Seattle,WA,98101 +180634,Wired Headphones,1,11.99,2019-04-07 13:44:00,683 Highland St, San Francisco,CA,94016 +180635,34in Ultrawide Monitor,1,379.99,2019-04-07 16:38:00,8 Dogwood St, Seattle,WA,98101 +180636,Lightning Charging Cable,1,14.95,2019-04-22 18:53:00,414 14th St, New York City,NY,10001 +180637,Flatscreen TV,1,300.0,2019-04-10 18:34:00,798 Cherry St, Austin,TX,73301 +180638,27in 4K Gaming Monitor,1,389.99,2019-04-24 11:58:00,457 9th St, San Francisco,CA,94016 +180639,USB-C Charging Cable,1,11.95,2019-04-02 01:53:00,485 4th St, Austin,TX,73301 +180640,Wired Headphones,1,11.99,2019-04-25 21:51:00,205 9th St, San Francisco,CA,94016 +180641,iPhone,1,700.0,2019-04-02 22:44:00,803 Center St, Atlanta,GA,30301 +180642,iPhone,1,700.0,2019-04-02 20:36:00,376 Lincoln St, Boston,MA,02215 +180643,34in Ultrawide Monitor,1,379.99,2019-04-09 00:15:00,277 6th St, Austin,TX,73301 +180644,USB-C Charging Cable,1,11.95,2019-04-14 22:42:00,842 9th St, New York City,NY,10001 +180645,ThinkPad Laptop,1,999.99,2019-04-18 19:35:00,713 14th St, Boston,MA,02215 +180646,iPhone,1,700.0,2019-04-21 15:24:00,376 North St, San Francisco,CA,94016 +180647,20in Monitor,1,109.99,2019-04-24 21:34:00,783 Dogwood St, Boston,MA,02215 +180648,Wired Headphones,1,11.99,2019-04-13 10:20:00,324 7th St, Los Angeles,CA,90001 +180649,ThinkPad Laptop,1,999.99,2019-04-02 04:56:00,586 2nd St, San Francisco,CA,94016 +180650,Apple Airpods Headphones,1,150.0,2019-04-04 13:01:00,254 Sunset St, Atlanta,GA,30301 +180651,Wired Headphones,1,11.99,2019-04-20 17:11:00,309 14th St, San Francisco,CA,94016 +180651,AA Batteries (4-pack),3,3.84,2019-04-20 17:11:00,309 14th St, San Francisco,CA,94016 +180652,Google Phone,1,600.0,2019-04-10 15:09:00,623 9th St, New York City,NY,10001 +180652,USB-C Charging Cable,1,11.95,2019-04-10 15:09:00,623 9th St, New York City,NY,10001 +180653,Apple Airpods Headphones,1,150.0,2019-04-11 23:26:00,778 6th St, Boston,MA,02215 +180654,Wired Headphones,1,11.99,2019-04-04 09:40:00,618 Highland St, Seattle,WA,98101 +180655,27in FHD Monitor,1,149.99,2019-04-30 18:14:00,740 Church St, San Francisco,CA,94016 +180656,ThinkPad Laptop,1,999.99,2019-04-20 23:29:00,343 Highland St, Austin,TX,73301 +180657,Macbook Pro Laptop,1,1700.0,2019-04-10 10:31:00,728 9th St, New York City,NY,10001 +180658,AA Batteries (4-pack),1,3.84,2019-04-17 17:58:00,578 Wilson St, Portland,ME,04101 +180659,LG Washing Machine,1,600.0,2019-04-25 14:35:00,434 Cherry St, San Francisco,CA,94016 +180660,Lightning Charging Cable,1,14.95,2019-04-08 12:52:00,313 Spruce St, San Francisco,CA,94016 +180661,Bose SoundSport Headphones,1,99.99,2019-04-28 22:34:00,588 7th St, Dallas,TX,75001 +180662,Apple Airpods Headphones,1,150.0,2019-04-26 00:06:00,240 Wilson St, New York City,NY,10001 +180663,LG Washing Machine,1,600.0,2019-04-12 09:37:00,785 Park St, Los Angeles,CA,90001 +180664,ThinkPad Laptop,1,999.99,2019-04-04 18:21:00,86 2nd St, Atlanta,GA,30301 +180665,Lightning Charging Cable,1,14.95,2019-04-30 18:36:00,292 Ridge St, Dallas,TX,75001 +180666,iPhone,1,700.0,2019-04-19 18:01:00,652 Sunset St, Los Angeles,CA,90001 +180667,27in 4K Gaming Monitor,1,389.99,2019-04-09 12:21:00,754 Cherry St, Los Angeles,CA,90001 +180668,Flatscreen TV,1,300.0,2019-04-03 16:13:00,453 1st St, New York City,NY,10001 +180669,27in 4K Gaming Monitor,1,389.99,2019-04-02 17:48:00,895 2nd St, Portland,OR,97035 +180670,Google Phone,1,600.0,2019-04-06 20:46:00,635 Main St, San Francisco,CA,94016 +180671,Wired Headphones,1,11.99,2019-04-18 18:48:00,605 4th St, Los Angeles,CA,90001 +180671,Apple Airpods Headphones,1,150.0,2019-04-18 18:48:00,605 4th St, Los Angeles,CA,90001 +180672,Apple Airpods Headphones,1,150.0,2019-04-05 12:59:00,694 Adams St, San Francisco,CA,94016 +180673,Apple Airpods Headphones,1,150.0,2019-04-17 18:11:00,769 6th St, Dallas,TX,75001 +180674,USB-C Charging Cable,1,11.95,2019-04-11 23:11:00,561 Park St, Atlanta,GA,30301 +180675,ThinkPad Laptop,1,999.99,2019-04-09 15:22:00,731 1st St, Atlanta,GA,30301 +180676,Apple Airpods Headphones,1,150.0,2019-04-28 19:51:00,406 Maple St, Los Angeles,CA,90001 +180676,27in FHD Monitor,1,149.99,2019-04-28 19:51:00,406 Maple St, Los Angeles,CA,90001 +180677,AA Batteries (4-pack),1,3.84,2019-04-05 23:17:00,680 11th St, Atlanta,GA,30301 +180678,Lightning Charging Cable,1,14.95,2019-04-17 17:04:00,225 Chestnut St, New York City,NY,10001 +180679,Apple Airpods Headphones,1,150.0,2019-04-22 14:45:00,288 12th St, San Francisco,CA,94016 +180680,AAA Batteries (4-pack),1,2.99,2019-04-13 17:41:00,686 Center St, San Francisco,CA,94016 +180681,Bose SoundSport Headphones,1,99.99,2019-04-19 21:32:00,240 Jefferson St, San Francisco,CA,94016 +180682,USB-C Charging Cable,1,11.95,2019-04-13 11:03:00,483 14th St, Seattle,WA,98101 +180683,Apple Airpods Headphones,1,150.0,2019-04-14 22:26:00,107 Church St, New York City,NY,10001 +180684,Wired Headphones,1,11.99,2019-04-21 23:45:00,731 Cherry St, San Francisco,CA,94016 +180685,Apple Airpods Headphones,1,150.0,2019-04-27 15:15:00,826 Sunset St, Boston,MA,02215 +180686,Wired Headphones,1,11.99,2019-04-15 12:27:00,796 5th St, San Francisco,CA,94016 +180687,AA Batteries (4-pack),1,3.84,2019-04-22 18:21:00,104 10th St, San Francisco,CA,94016 +180688,34in Ultrawide Monitor,1,379.99,2019-04-30 15:55:00,918 South St, Seattle,WA,98101 +180689,AA Batteries (4-pack),2,3.84,2019-04-14 14:49:00,350 10th St, San Francisco,CA,94016 +180690,USB-C Charging Cable,1,11.95,2019-04-26 15:00:00,809 Jefferson St, San Francisco,CA,94016 +180691,34in Ultrawide Monitor,1,379.99,2019-04-28 13:08:00,199 14th St, Los Angeles,CA,90001 +180692,USB-C Charging Cable,1,11.95,2019-04-11 08:36:00,879 1st St, Dallas,TX,75001 +180693,AA Batteries (4-pack),1,3.84,2019-04-09 13:22:00,967 5th St, Seattle,WA,98101 +180694,AA Batteries (4-pack),2,3.84,2019-04-24 18:44:00,698 Adams St, Boston,MA,02215 +180695,Lightning Charging Cable,1,14.95,2019-04-09 22:18:00,731 Elm St, Austin,TX,73301 +180696,AA Batteries (4-pack),3,3.84,2019-04-06 00:05:00,427 5th St, Los Angeles,CA,90001 +180697,USB-C Charging Cable,1,11.95,2019-04-07 08:37:00,354 11th St, Los Angeles,CA,90001 +180698,20in Monitor,1,109.99,2019-04-15 11:02:00,939 Pine St, San Francisco,CA,94016 +180699,Lightning Charging Cable,1,14.95,2019-04-30 16:19:00,36 Lake St, Dallas,TX,75001 +180700,Apple Airpods Headphones,1,150.0,2019-04-24 22:32:00,645 2nd St, Dallas,TX,75001 +180701,ThinkPad Laptop,1,999.99,2019-04-11 23:15:00,176 Hickory St, New York City,NY,10001 +180702,27in FHD Monitor,1,149.99,2019-04-22 09:24:00,736 10th St, Los Angeles,CA,90001 +180703,Apple Airpods Headphones,1,150.0,2019-04-25 13:28:00,895 West St, Seattle,WA,98101 +180704,Lightning Charging Cable,1,14.95,2019-04-07 13:20:00,249 Park St, Seattle,WA,98101 +180705,USB-C Charging Cable,1,11.95,2019-04-16 14:49:00,549 Sunset St, Seattle,WA,98101 +180706,Bose SoundSport Headphones,1,99.99,2019-04-05 13:48:00,512 Main St, Atlanta,GA,30301 +180707,Lightning Charging Cable,1,14.95,2019-04-20 19:22:00,516 Washington St, New York City,NY,10001 +180708,AA Batteries (4-pack),1,3.84,2019-04-01 18:17:00,668 11th St, New York City,NY,10001 +180709,Wired Headphones,1,11.99,2019-04-07 09:55:00,361 14th St, Los Angeles,CA,90001 +180710,iPhone,1,700.0,2019-04-25 11:30:00,796 Meadow St, Atlanta,GA,30301 +180711,iPhone,1,700.0,2019-04-01 08:37:00,322 Johnson St, Los Angeles,CA,90001 +180712,27in FHD Monitor,1,149.99,2019-04-15 02:41:00,913 Dogwood St, New York City,NY,10001 +180713,Lightning Charging Cable,1,14.95,2019-04-13 05:47:00,902 Maple St, Portland,OR,97035 +180714,34in Ultrawide Monitor,1,379.99,2019-04-03 21:00:00,913 13th St, San Francisco,CA,94016 +180715,Wired Headphones,2,11.99,2019-04-22 11:42:00,743 Park St, Austin,TX,73301 +180716,Wired Headphones,2,11.99,2019-04-24 12:56:00,744 1st St, San Francisco,CA,94016 +180717,USB-C Charging Cable,1,11.95,2019-04-22 19:04:00,860 Jefferson St, New York City,NY,10001 +180718,27in 4K Gaming Monitor,1,389.99,2019-04-13 13:03:00,981 Walnut St, Seattle,WA,98101 +180719,Apple Airpods Headphones,1,150.0,2019-04-09 18:15:00,153 Wilson St, Boston,MA,02215 +180720,Bose SoundSport Headphones,1,99.99,2019-04-16 02:32:00,204 Washington St, Dallas,TX,75001 +180721,AAA Batteries (4-pack),2,2.99,2019-04-22 17:17:00,5 Hill St, San Francisco,CA,94016 +180722,USB-C Charging Cable,1,11.95,2019-04-07 23:57:00,268 Lake St, San Francisco,CA,94016 +180723,Google Phone,1,600.0,2019-04-20 16:54:00,405 Center St, Los Angeles,CA,90001 +180723,USB-C Charging Cable,1,11.95,2019-04-20 16:54:00,405 Center St, Los Angeles,CA,90001 +180723,Bose SoundSport Headphones,1,99.99,2019-04-20 16:54:00,405 Center St, Los Angeles,CA,90001 +180724,Apple Airpods Headphones,1,150.0,2019-04-15 22:09:00,997 West St, Boston,MA,02215 +180725,Bose SoundSport Headphones,1,99.99,2019-04-06 11:38:00,694 Park St, Atlanta,GA,30301 +180726,Wired Headphones,1,11.99,2019-04-24 09:35:00,636 Sunset St, Seattle,WA,98101 +180727,AA Batteries (4-pack),1,3.84,2019-04-05 22:57:00,670 7th St, Los Angeles,CA,90001 +180728,ThinkPad Laptop,1,999.99,2019-04-22 20:27:00,376 Adams St, Portland,ME,04101 +180729,USB-C Charging Cable,1,11.95,2019-04-14 10:08:00,757 11th St, San Francisco,CA,94016 +180730,Lightning Charging Cable,1,14.95,2019-04-06 21:39:00,753 Wilson St, San Francisco,CA,94016 +180731,AA Batteries (4-pack),2,3.84,2019-04-29 18:39:00,63 Cherry St, Boston,MA,02215 +180732,Wired Headphones,1,11.99,2019-04-26 20:50:00,403 Willow St, San Francisco,CA,94016 +180733,AA Batteries (4-pack),1,3.84,2019-04-03 19:59:00,710 12th St, San Francisco,CA,94016 +180734,AAA Batteries (4-pack),2,2.99,2019-04-14 20:51:00,314 Highland St, San Francisco,CA,94016 +180735,Flatscreen TV,1,300.0,2019-04-02 16:11:00,797 Meadow St, Dallas,TX,75001 +180736,AA Batteries (4-pack),1,3.84,2019-04-17 14:29:00,842 2nd St, Los Angeles,CA,90001 +180737,USB-C Charging Cable,2,11.95,2019-04-11 12:03:00,745 North St, Boston,MA,02215 +180738,Bose SoundSport Headphones,1,99.99,2019-04-18 12:50:00,692 Park St, New York City,NY,10001 +180739,Bose SoundSport Headphones,1,99.99,2019-04-17 20:33:00,907 9th St, Los Angeles,CA,90001 +180740,Apple Airpods Headphones,1,150.0,2019-04-02 21:36:00,664 4th St, Dallas,TX,75001 +180741,AAA Batteries (4-pack),3,2.99,2019-04-29 12:10:00,683 9th St, Austin,TX,73301 +180742,Lightning Charging Cable,1,14.95,2019-04-05 14:06:00,268 West St, New York City,NY,10001 +180743,USB-C Charging Cable,1,11.95,2019-04-06 18:24:00,675 Walnut St, San Francisco,CA,94016 +180744,USB-C Charging Cable,2,11.95,2019-04-09 06:38:00,564 Meadow St, San Francisco,CA,94016 +180745,34in Ultrawide Monitor,1,379.99,2019-04-21 15:15:00,803 Chestnut St, San Francisco,CA,94016 +180746,AAA Batteries (4-pack),1,2.99,2019-04-30 12:05:00,398 West St, New York City,NY,10001 +180747,Lightning Charging Cable,1,14.95,2019-04-12 19:10:00,398 9th St, Los Angeles,CA,90001 +180748,AAA Batteries (4-pack),1,2.99,2019-04-03 15:05:00,336 5th St, New York City,NY,10001 +180749,ThinkPad Laptop,1,999.99,2019-04-03 10:24:00,175 Dogwood St, Boston,MA,02215 +180750,Lightning Charging Cable,1,14.95,2019-04-14 20:01:00,866 10th St, Austin,TX,73301 +180751,Lightning Charging Cable,1,14.95,2019-04-24 10:44:00,255 10th St, Atlanta,GA,30301 +180752,Bose SoundSport Headphones,1,99.99,2019-04-21 10:49:00,695 Maple St, San Francisco,CA,94016 +180753,AAA Batteries (4-pack),1,2.99,2019-04-26 19:36:00,727 Lake St, New York City,NY,10001 +180754,34in Ultrawide Monitor,1,379.99,2019-04-28 12:59:00,71 Hickory St, New York City,NY,10001 +180755,Bose SoundSport Headphones,1,99.99,2019-04-09 12:48:00,131 Madison St, Boston,MA,02215 +180756,34in Ultrawide Monitor,1,379.99,2019-04-23 06:14:00,93 Lake St, San Francisco,CA,94016 +180757,Apple Airpods Headphones,1,150.0,2019-04-15 08:15:00,580 Elm St, Atlanta,GA,30301 +180758,27in 4K Gaming Monitor,1,389.99,2019-04-05 20:32:00,557 Ridge St, San Francisco,CA,94016 +180759,Wired Headphones,1,11.99,2019-04-27 08:15:00,463 Hill St, San Francisco,CA,94016 +180760,AAA Batteries (4-pack),2,2.99,2019-04-28 04:49:00,752 Madison St, Seattle,WA,98101 +180761,USB-C Charging Cable,1,11.95,2019-04-15 13:17:00,560 Madison St, Seattle,WA,98101 +180762,AA Batteries (4-pack),1,3.84,2019-04-04 16:24:00,742 Washington St, San Francisco,CA,94016 +180763,AAA Batteries (4-pack),2,2.99,2019-04-13 16:51:00,317 South St, Seattle,WA,98101 +180764,34in Ultrawide Monitor,1,379.99,2019-04-13 11:27:00,423 Wilson St, Atlanta,GA,30301 +180765,USB-C Charging Cable,1,11.95,2019-04-17 12:23:00,514 Adams St, New York City,NY,10001 +180766,AA Batteries (4-pack),1,3.84,2019-04-27 20:56:00,943 13th St, Los Angeles,CA,90001 +180767,iPhone,1,700.0,2019-04-12 18:05:00,456 North St, San Francisco,CA,94016 +180768,Wired Headphones,1,11.99,2019-04-14 22:50:00,917 Jefferson St, New York City,NY,10001 +180769,AA Batteries (4-pack),3,3.84,2019-04-04 20:49:00,74 1st St, New York City,NY,10001 +180770,AA Batteries (4-pack),1,3.84,2019-04-18 19:17:00,970 Sunset St, New York City,NY,10001 +180771,AA Batteries (4-pack),1,3.84,2019-04-16 21:28:00,728 Meadow St, Los Angeles,CA,90001 +180772,Wired Headphones,1,11.99,2019-04-18 08:56:00,418 Maple St, Portland,OR,97035 +180773,27in FHD Monitor,1,149.99,2019-04-12 16:42:00,77 Pine St, Dallas,TX,75001 +180774,Bose SoundSport Headphones,1,99.99,2019-04-13 14:22:00,210 13th St, San Francisco,CA,94016 +180775,AAA Batteries (4-pack),1,2.99,2019-04-18 12:53:00,423 8th St, Seattle,WA,98101 +180776,AA Batteries (4-pack),1,3.84,2019-04-23 19:37:00,767 Spruce St, San Francisco,CA,94016 +180777,Google Phone,1,600.0,2019-04-13 13:39:00,223 Main St, Los Angeles,CA,90001 +180778,AAA Batteries (4-pack),1,2.99,2019-04-09 21:19:00,66 Maple St, Portland,OR,97035 +180779,AA Batteries (4-pack),1,3.84,2019-04-25 14:14:00,798 13th St, Dallas,TX,75001 +180780,Lightning Charging Cable,1,14.95,2019-04-23 18:17:00,127 Cherry St, Dallas,TX,75001 +180781,USB-C Charging Cable,1,11.95,2019-04-01 18:40:00,17 Pine St, Portland,OR,97035 +180782,AAA Batteries (4-pack),2,2.99,2019-04-08 01:05:00,891 Hill St, Dallas,TX,75001 +180783,27in 4K Gaming Monitor,1,389.99,2019-04-03 13:03:00,984 1st St, Seattle,WA,98101 +180784,Apple Airpods Headphones,1,150.0,2019-04-25 12:17:00,322 Center St, San Francisco,CA,94016 +180785,AAA Batteries (4-pack),1,2.99,2019-04-04 10:36:00,962 Cedar St, New York City,NY,10001 +180786,USB-C Charging Cable,1,11.95,2019-04-22 20:42:00,988 Cedar St, San Francisco,CA,94016 +180787,USB-C Charging Cable,1,11.95,2019-04-17 17:30:00,586 9th St, Los Angeles,CA,90001 +180788,iPhone,1,700.0,2019-04-15 16:53:00,418 2nd St, New York City,NY,10001 +180789,27in 4K Gaming Monitor,1,389.99,2019-04-04 14:39:00,366 West St, Boston,MA,02215 +180790,AA Batteries (4-pack),4,3.84,2019-04-03 17:01:00,626 7th St, Boston,MA,02215 +180791,Apple Airpods Headphones,1,150.0,2019-04-21 09:40:00,470 Maple St, Seattle,WA,98101 +180792,Bose SoundSport Headphones,1,99.99,2019-04-22 08:24:00,623 West St, Portland,ME,04101 +180793,Lightning Charging Cable,1,14.95,2019-04-24 15:45:00,749 River St, Atlanta,GA,30301 +180794,AAA Batteries (4-pack),1,2.99,2019-04-30 08:01:00,126 Highland St, Seattle,WA,98101 +180795,Bose SoundSport Headphones,1,99.99,2019-04-11 08:26:00,806 5th St, Portland,OR,97035 +180796,AAA Batteries (4-pack),2,2.99,2019-04-28 10:48:00,63 13th St, Los Angeles,CA,90001 +180797,AAA Batteries (4-pack),1,2.99,2019-04-17 12:02:00,945 11th St, New York City,NY,10001 +180797,27in 4K Gaming Monitor,1,389.99,2019-04-17 12:02:00,945 11th St, New York City,NY,10001 +180798,USB-C Charging Cable,1,11.95,2019-04-03 12:10:00,683 2nd St, San Francisco,CA,94016 +180799,34in Ultrawide Monitor,1,379.99,2019-04-17 20:59:00,496 Elm St, San Francisco,CA,94016 +180800,Wired Headphones,1,11.99,2019-04-15 20:11:00,56 11th St, Atlanta,GA,30301 +180801,Lightning Charging Cable,1,14.95,2019-04-25 08:51:00,434 Church St, Boston,MA,02215 +180802,Flatscreen TV,1,300.0,2019-04-04 12:26:00,776 Elm St, New York City,NY,10001 +180803,USB-C Charging Cable,2,11.95,2019-04-12 20:51:00,868 6th St, Seattle,WA,98101 +180804,27in 4K Gaming Monitor,1,389.99,2019-04-23 09:00:00,785 Elm St, Seattle,WA,98101 +180805,Lightning Charging Cable,2,14.95,2019-04-28 22:12:00,757 Willow St, Portland,OR,97035 +180806,Wired Headphones,1,11.99,2019-04-12 11:58:00,511 8th St, Boston,MA,02215 +180807,20in Monitor,1,109.99,2019-04-21 12:22:00,918 14th St, Boston,MA,02215 +180808,USB-C Charging Cable,1,11.95,2019-04-11 10:00:00,79 Madison St, San Francisco,CA,94016 +180809,ThinkPad Laptop,1,999.99,2019-04-20 22:43:00,553 Cherry St, New York City,NY,10001 +180810,AAA Batteries (4-pack),1,2.99,2019-04-21 11:02:00,30 2nd St, New York City,NY,10001 +180811,iPhone,1,700.0,2019-04-25 12:32:00,178 8th St, Los Angeles,CA,90001 +180812,Lightning Charging Cable,1,14.95,2019-04-16 16:18:00,47 Church St, Boston,MA,02215 +180813,Wired Headphones,1,11.99,2019-04-16 11:06:00,123 Sunset St, Seattle,WA,98101 +180814,Vareebadd Phone,1,400.0,2019-04-18 15:35:00,684 Lakeview St, New York City,NY,10001 +180814,USB-C Charging Cable,1,11.95,2019-04-18 15:35:00,684 Lakeview St, New York City,NY,10001 +180815,USB-C Charging Cable,1,11.95,2019-04-17 22:57:00,570 2nd St, New York City,NY,10001 +180816,Wired Headphones,1,11.99,2019-04-12 01:05:00,289 Jefferson St, Los Angeles,CA,90001 +180817,Lightning Charging Cable,1,14.95,2019-04-13 18:33:00,563 13th St, Los Angeles,CA,90001 +180818,Vareebadd Phone,1,400.0,2019-04-01 11:05:00,495 Main St, Dallas,TX,75001 +180819,27in 4K Gaming Monitor,1,389.99,2019-04-18 11:26:00,438 10th St, Portland,OR,97035 +180820,AA Batteries (4-pack),1,3.84,2019-04-21 00:24:00,14 Pine St, Seattle,WA,98101 +180821,34in Ultrawide Monitor,1,379.99,2019-04-28 17:26:00,564 2nd St, Boston,MA,02215 +180822,Wired Headphones,1,11.99,2019-04-19 15:12:00,584 Highland St, Dallas,TX,75001 +180823,Lightning Charging Cable,1,14.95,2019-04-10 09:41:00,60 Adams St, Austin,TX,73301 +180824,Apple Airpods Headphones,1,150.0,2019-04-22 05:18:00,94 West St, Atlanta,GA,30301 +180825,Wired Headphones,1,11.99,2019-04-17 13:28:00,491 Hill St, New York City,NY,10001 +180826,Lightning Charging Cable,1,14.95,2019-04-06 13:05:00,188 Maple St, Boston,MA,02215 +180827,Macbook Pro Laptop,1,1700.0,2019-04-21 09:37:00,398 Lincoln St, Los Angeles,CA,90001 +180828,AA Batteries (4-pack),2,3.84,2019-04-24 09:52:00,485 Madison St, Los Angeles,CA,90001 +180829,AAA Batteries (4-pack),1,2.99,2019-04-17 14:11:00,928 Dogwood St, San Francisco,CA,94016 +180830,Apple Airpods Headphones,1,150.0,2019-04-13 12:04:00,459 5th St, Seattle,WA,98101 +180830,AAA Batteries (4-pack),1,2.99,2019-04-13 12:04:00,459 5th St, Seattle,WA,98101 +180831,AAA Batteries (4-pack),3,2.99,2019-04-24 19:27:00,88 14th St, Los Angeles,CA,90001 +180832,Apple Airpods Headphones,1,150.0,2019-04-26 13:20:00,39 Ridge St, Los Angeles,CA,90001 +180833,USB-C Charging Cable,1,11.95,2019-04-10 23:48:00,476 Spruce St, Los Angeles,CA,90001 +180834,Macbook Pro Laptop,1,1700.0,2019-04-29 08:08:00,12 Washington St, New York City,NY,10001 +180835,Apple Airpods Headphones,1,150.0,2019-04-18 12:22:00,164 Chestnut St, Dallas,TX,75001 +180836,USB-C Charging Cable,1,11.95,2019-04-24 14:44:00,310 Johnson St, New York City,NY,10001 +180837,AA Batteries (4-pack),1,3.84,2019-04-21 14:59:00,575 9th St, Boston,MA,02215 +180838,AA Batteries (4-pack),1,3.84,2019-04-14 17:24:00,43 Chestnut St, Seattle,WA,98101 +180839,Bose SoundSport Headphones,1,99.99,2019-04-10 16:17:00,215 Lakeview St, New York City,NY,10001 +180840,Lightning Charging Cable,1,14.95,2019-04-20 20:05:00,349 Park St, Los Angeles,CA,90001 +180841,Wired Headphones,1,11.99,2019-04-19 08:46:00,812 Main St, Seattle,WA,98101 +180842,Lightning Charging Cable,2,14.95,2019-04-12 08:25:00,749 Lakeview St, Dallas,TX,75001 +180843,AA Batteries (4-pack),3,3.84,2019-04-01 13:51:00,138 5th St, Los Angeles,CA,90001 +180844,AA Batteries (4-pack),2,3.84,2019-04-20 19:59:00,340 Spruce St, Boston,MA,02215 +180845,Wired Headphones,3,11.99,2019-04-14 14:13:00,353 Meadow St, Dallas,TX,75001 +180846,ThinkPad Laptop,1,999.99,2019-04-12 17:40:00,297 9th St, Atlanta,GA,30301 +180847,AAA Batteries (4-pack),1,2.99,2019-04-11 11:27:00,358 7th St, Los Angeles,CA,90001 +180848,AA Batteries (4-pack),2,3.84,2019-04-10 13:10:00,290 9th St, Boston,MA,02215 +180849,Lightning Charging Cable,1,14.95,2019-04-01 20:01:00,629 Dogwood St, Dallas,TX,75001 +180850,Lightning Charging Cable,1,14.95,2019-04-15 08:19:00,194 Elm St, Portland,OR,97035 +180851,Flatscreen TV,1,300.0,2019-04-28 20:30:00,40 13th St, Austin,TX,73301 +180852,AA Batteries (4-pack),1,3.84,2019-04-02 09:47:00,328 Center St, Boston,MA,02215 +180853,34in Ultrawide Monitor,1,379.99,2019-04-02 00:41:00,433 Jefferson St, Boston,MA,02215 +180854,Bose SoundSport Headphones,1,99.99,2019-04-05 10:17:00,487 Elm St, Boston,MA,02215 +180855,AA Batteries (4-pack),1,3.84,2019-04-13 14:21:00,166 Elm St, Los Angeles,CA,90001 +180856,AA Batteries (4-pack),1,3.84,2019-04-23 07:57:00,138 6th St, Boston,MA,02215 +180857,Bose SoundSport Headphones,1,99.99,2019-04-22 13:07:00,392 Jackson St, Dallas,TX,75001 +180857,AA Batteries (4-pack),1,3.84,2019-04-22 13:07:00,392 Jackson St, Dallas,TX,75001 +180858,USB-C Charging Cable,2,11.95,2019-04-18 19:21:00,398 Lakeview St, New York City,NY,10001 +180859,Wired Headphones,1,11.99,2019-04-30 22:04:00,800 2nd St, Los Angeles,CA,90001 +180860,34in Ultrawide Monitor,1,379.99,2019-04-11 01:06:00,975 Wilson St, Austin,TX,73301 +180861,AA Batteries (4-pack),1,3.84,2019-04-21 21:48:00,874 Lincoln St, San Francisco,CA,94016 +180862,AA Batteries (4-pack),1,3.84,2019-04-01 13:06:00,115 7th St, San Francisco,CA,94016 +180863,AA Batteries (4-pack),2,3.84,2019-04-18 11:47:00,357 Adams St, Boston,MA,02215 +180864,Wired Headphones,1,11.99,2019-04-08 09:01:00,234 Wilson St, San Francisco,CA,94016 +180865,iPhone,1,700.0,2019-04-12 10:06:00,520 Lincoln St, San Francisco,CA,94016 +180866,Google Phone,1,600.0,2019-04-27 16:33:00,472 Lakeview St, Boston,MA,02215 +180867,Wired Headphones,1,11.99,2019-04-02 12:43:00,72 Lincoln St, Portland,OR,97035 +180868,27in 4K Gaming Monitor,1,389.99,2019-04-19 13:19:00,908 River St, New York City,NY,10001 +180869,Lightning Charging Cable,1,14.95,2019-04-17 08:13:00,859 10th St, San Francisco,CA,94016 +180870,Apple Airpods Headphones,1,150.0,2019-04-07 01:41:00,134 Wilson St, Seattle,WA,98101 +180871,Wired Headphones,1,11.99,2019-04-23 13:18:00,74 Church St, Austin,TX,73301 +180872,USB-C Charging Cable,1,11.95,2019-04-30 20:22:00,255 Spruce St, Los Angeles,CA,90001 +180873,USB-C Charging Cable,2,11.95,2019-04-06 11:05:00,151 8th St, San Francisco,CA,94016 +180874,Google Phone,1,600.0,2019-04-01 19:36:00,191 Forest St, Boston,MA,02215 +180874,Bose SoundSport Headphones,1,99.99,2019-04-01 19:36:00,191 Forest St, Boston,MA,02215 +180875,Bose SoundSport Headphones,1,99.99,2019-04-05 20:05:00,1 14th St, New York City,NY,10001 +180876,USB-C Charging Cable,1,11.95,2019-04-07 16:07:00,162 2nd St, Dallas,TX,75001 +180877,AA Batteries (4-pack),2,3.84,2019-04-05 16:52:00,186 Maple St, Boston,MA,02215 +180878,34in Ultrawide Monitor,1,379.99,2019-04-27 01:44:00,334 Sunset St, San Francisco,CA,94016 +180879,AA Batteries (4-pack),1,3.84,2019-04-07 13:42:00,812 North St, Los Angeles,CA,90001 +180880,Apple Airpods Headphones,1,150.0,2019-04-06 08:02:00,346 10th St, Boston,MA,02215 +180881,AA Batteries (4-pack),1,3.84,2019-04-04 05:51:00,803 Meadow St, Los Angeles,CA,90001 +180882,USB-C Charging Cable,1,11.95,2019-04-30 09:59:00,305 9th St, Atlanta,GA,30301 +180883,LG Dryer,1,600.0,2019-04-02 16:07:00,185 1st St, Portland,OR,97035 +180884,iPhone,1,700.0,2019-04-14 23:36:00,1 Hickory St, Atlanta,GA,30301 +180884,Lightning Charging Cable,1,14.95,2019-04-14 23:36:00,1 Hickory St, Atlanta,GA,30301 +180884,Wired Headphones,1,11.99,2019-04-14 23:36:00,1 Hickory St, Atlanta,GA,30301 +180885,Google Phone,1,600.0,2019-04-13 18:45:00,580 Hill St, Los Angeles,CA,90001 +180886,Apple Airpods Headphones,1,150.0,2019-04-25 18:11:00,65 Main St, Seattle,WA,98101 +180887,Google Phone,1,600.0,2019-04-28 19:08:00,248 Pine St, Austin,TX,73301 +180888,Bose SoundSport Headphones,1,99.99,2019-04-21 14:49:00,962 6th St, Seattle,WA,98101 +180889,27in FHD Monitor,1,149.99,2019-04-15 14:29:00,71 Lincoln St, Boston,MA,02215 +180890,USB-C Charging Cable,2,11.95,2019-04-30 13:47:00,990 Main St, Portland,OR,97035 +180891,27in 4K Gaming Monitor,1,389.99,2019-04-18 12:32:00,911 Elm St, New York City,NY,10001 +180892,AA Batteries (4-pack),1,3.84,2019-04-19 14:33:00,696 12th St, Dallas,TX,75001 +180893,AAA Batteries (4-pack),1,2.99,2019-04-17 18:29:00,783 Lincoln St, New York City,NY,10001 +180894,27in 4K Gaming Monitor,1,389.99,2019-04-29 17:11:00,817 South St, San Francisco,CA,94016 +180895,Apple Airpods Headphones,1,150.0,2019-04-07 18:39:00,707 Center St, New York City,NY,10001 +180896,Macbook Pro Laptop,1,1700.0,2019-04-03 22:58:00,775 Cherry St, Boston,MA,02215 +180897,Bose SoundSport Headphones,1,99.99,2019-04-28 18:41:00,700 14th St, Seattle,WA,98101 +180898,AAA Batteries (4-pack),1,2.99,2019-04-06 19:06:00,474 Lincoln St, Los Angeles,CA,90001 +180899,Lightning Charging Cable,1,14.95,2019-04-22 00:26:00,449 Main St, New York City,NY,10001 +180900,AA Batteries (4-pack),1,3.84,2019-04-06 12:20:00,606 Ridge St, San Francisco,CA,94016 +180901,Wired Headphones,1,11.99,2019-04-17 12:43:00,386 Center St, Atlanta,GA,30301 +180902,AA Batteries (4-pack),1,3.84,2019-04-06 18:37:00,405 Dogwood St, Boston,MA,02215 +180903,AAA Batteries (4-pack),3,2.99,2019-04-13 21:26:00,764 Lincoln St, Boston,MA,02215 +180904,AAA Batteries (4-pack),2,2.99,2019-04-19 21:58:00,6 13th St, New York City,NY,10001 +180905,Apple Airpods Headphones,1,150.0,2019-04-25 15:46:00,652 Jackson St, Portland,OR,97035 +180906,ThinkPad Laptop,1,999.99,2019-04-03 23:59:00,592 Ridge St, Los Angeles,CA,90001 +180907,iPhone,1,700.0,2019-04-30 10:49:00,138 8th St, Seattle,WA,98101 +180907,Wired Headphones,1,11.99,2019-04-30 10:49:00,138 8th St, Seattle,WA,98101 +180908,Apple Airpods Headphones,1,150.0,2019-04-10 13:35:00,41 Walnut St, New York City,NY,10001 +180909,ThinkPad Laptop,1,999.99,2019-04-07 19:07:00,846 8th St, Dallas,TX,75001 +180910,Apple Airpods Headphones,1,150.0,2019-04-21 18:33:00,762 9th St, Atlanta,GA,30301 +180911,iPhone,1,700.0,2019-04-17 14:37:00,821 Main St, Austin,TX,73301 +180911,Wired Headphones,1,11.99,2019-04-17 14:37:00,821 Main St, Austin,TX,73301 +180912,AA Batteries (4-pack),2,3.84,2019-04-23 11:03:00,102 Dogwood St, Los Angeles,CA,90001 +180913,Lightning Charging Cable,1,14.95,2019-04-25 14:26:00,924 South St, Los Angeles,CA,90001 +180914,Lightning Charging Cable,1,14.95,2019-04-23 07:14:00,667 Jefferson St, Portland,OR,97035 +180915,iPhone,1,700.0,2019-04-06 01:11:00,157 Center St, Boston,MA,02215 +180915,Lightning Charging Cable,1,14.95,2019-04-06 01:11:00,157 Center St, Boston,MA,02215 +180916,27in FHD Monitor,1,149.99,2019-04-04 14:54:00,52 Adams St, Atlanta,GA,30301 +180917,20in Monitor,1,109.99,2019-04-05 09:52:00,111 14th St, Boston,MA,02215 +180918,Macbook Pro Laptop,1,1700.0,2019-04-24 23:05:00,960 Wilson St, Dallas,TX,75001 +180919,USB-C Charging Cable,1,11.95,2019-04-27 09:57:00,425 8th St, Los Angeles,CA,90001 +180920,iPhone,1,700.0,2019-04-30 09:17:00,583 Willow St, San Francisco,CA,94016 +180921,Macbook Pro Laptop,1,1700.0,2019-04-26 16:29:00,318 River St, Seattle,WA,98101 +180922,27in 4K Gaming Monitor,1,389.99,2019-04-24 10:38:00,887 Meadow St, Seattle,WA,98101 +180923,27in FHD Monitor,1,149.99,2019-04-19 13:46:00,856 Adams St, Boston,MA,02215 +180924,AAA Batteries (4-pack),1,2.99,2019-04-27 21:14:00,396 1st St, Atlanta,GA,30301 +180925,Wired Headphones,1,11.99,2019-04-18 20:33:00,260 Chestnut St, Atlanta,GA,30301 +180926,34in Ultrawide Monitor,1,379.99,2019-04-20 22:01:00,887 Highland St, Dallas,TX,75001 +180927,Apple Airpods Headphones,1,150.0,2019-04-04 21:34:00,279 Highland St, Atlanta,GA,30301 +180928,AAA Batteries (4-pack),1,2.99,2019-04-25 12:08:00,97 Adams St, San Francisco,CA,94016 +180929,AA Batteries (4-pack),2,3.84,2019-04-04 09:43:00,285 2nd St, Los Angeles,CA,90001 +180930,Lightning Charging Cable,1,14.95,2019-04-22 20:26:00,826 Lakeview St, Atlanta,GA,30301 +180931,ThinkPad Laptop,1,999.99,2019-04-16 12:34:00,30 Dogwood St, Boston,MA,02215 +180932,Apple Airpods Headphones,1,150.0,2019-04-22 20:43:00,687 Ridge St, Boston,MA,02215 +180933,USB-C Charging Cable,1,11.95,2019-04-25 08:12:00,161 7th St, Atlanta,GA,30301 +180934,Bose SoundSport Headphones,1,99.99,2019-04-08 17:00:00,436 4th St, Dallas,TX,75001 +180935,Flatscreen TV,1,300.0,2019-04-15 23:58:00,972 Hickory St, Portland,OR,97035 +180936,USB-C Charging Cable,1,11.95,2019-04-15 00:07:00,271 Washington St, New York City,NY,10001 +180937,AAA Batteries (4-pack),1,2.99,2019-04-15 19:31:00,642 12th St, Boston,MA,02215 +180938,Lightning Charging Cable,1,14.95,2019-04-30 14:48:00,940 Park St, San Francisco,CA,94016 +180939,AA Batteries (4-pack),1,3.84,2019-04-28 17:23:00,877 5th St, Los Angeles,CA,90001 +180940,Apple Airpods Headphones,1,150.0,2019-04-05 23:18:00,506 Jefferson St, San Francisco,CA,94016 +180941,AAA Batteries (4-pack),4,2.99,2019-04-21 19:39:00,725 2nd St, San Francisco,CA,94016 +180942,AAA Batteries (4-pack),1,2.99,2019-04-09 20:10:00,962 6th St, Boston,MA,02215 +180943,USB-C Charging Cable,1,11.95,2019-04-28 15:56:00,367 Highland St, New York City,NY,10001 +180944,AAA Batteries (4-pack),1,2.99,2019-04-04 08:11:00,552 Hill St, Boston,MA,02215 +180945,Wired Headphones,1,11.99,2019-04-16 10:27:00,661 Dogwood St, New York City,NY,10001 +180946,Flatscreen TV,1,300.0,2019-04-30 10:42:00,41 2nd St, Boston,MA,02215 +180947,27in FHD Monitor,1,149.99,2019-04-12 15:40:00,950 Cherry St, San Francisco,CA,94016 +180948,Apple Airpods Headphones,1,150.0,2019-04-08 20:21:00,300 South St, Seattle,WA,98101 +180949,Macbook Pro Laptop,1,1700.0,2019-04-01 14:04:00,208 12th St, Portland,OR,97035 +180950,27in FHD Monitor,1,149.99,2019-04-21 12:10:00,456 Cherry St, Los Angeles,CA,90001 +180951,Lightning Charging Cable,2,14.95,2019-04-16 18:13:00,641 Cedar St, Atlanta,GA,30301 +180952,USB-C Charging Cable,1,11.95,2019-04-13 18:18:00,960 Jefferson St, San Francisco,CA,94016 +180953,20in Monitor,1,109.99,2019-04-18 12:43:00,566 5th St, Dallas,TX,75001 +180954,USB-C Charging Cable,1,11.95,2019-04-04 11:46:00,760 River St, Los Angeles,CA,90001 +180955,27in FHD Monitor,1,149.99,2019-04-07 14:24:00,791 Park St, New York City,NY,10001 +180956,Lightning Charging Cable,1,14.95,2019-04-09 01:20:00,189 4th St, Los Angeles,CA,90001 +180957,34in Ultrawide Monitor,1,379.99,2019-04-21 18:14:00,830 6th St, Los Angeles,CA,90001 +180958,27in 4K Gaming Monitor,1,389.99,2019-04-24 23:16:00,897 13th St, Dallas,TX,75001 +180959,USB-C Charging Cable,1,11.95,2019-04-17 17:18:00,477 Meadow St, Portland,OR,97035 +180960,Wired Headphones,1,11.99,2019-04-07 14:03:00,426 Forest St, Los Angeles,CA,90001 +180961,Lightning Charging Cable,2,14.95,2019-04-23 13:08:00,513 7th St, Austin,TX,73301 +180962,AAA Batteries (4-pack),1,2.99,2019-04-13 13:53:00,302 11th St, Portland,OR,97035 +180963,20in Monitor,1,109.99,2019-04-26 20:04:00,104 Cedar St, San Francisco,CA,94016 +180964,Macbook Pro Laptop,1,1700.0,2019-04-27 09:56:00,937 14th St, San Francisco,CA,94016 +180965,USB-C Charging Cable,1,11.95,2019-04-08 22:38:00,215 Lincoln St, Boston,MA,02215 +180966,USB-C Charging Cable,2,11.95,2019-04-27 21:01:00,367 Ridge St, Los Angeles,CA,90001 +180967,Apple Airpods Headphones,1,150.0,2019-04-16 22:47:00,852 Wilson St, New York City,NY,10001 +180968,Wired Headphones,1,11.99,2019-04-21 18:59:00,797 Church St, Boston,MA,02215 +180969,20in Monitor,1,109.99,2019-04-02 06:53:00,399 Center St, San Francisco,CA,94016 +180970,AAA Batteries (4-pack),1,2.99,2019-04-24 15:28:00,88 12th St, San Francisco,CA,94016 +180971,27in FHD Monitor,1,149.99,2019-04-04 19:17:00,491 Park St, Atlanta,GA,30301 +180972,Vareebadd Phone,1,400.0,2019-04-29 17:54:00,795 River St, Austin,TX,73301 +180973,Wired Headphones,1,11.99,2019-04-21 16:07:00,997 Willow St, Boston,MA,02215 +180974,34in Ultrawide Monitor,1,379.99,2019-04-02 23:25:00,682 Chestnut St, Atlanta,GA,30301 +180975,Bose SoundSport Headphones,1,99.99,2019-04-12 08:20:00,278 Pine St, San Francisco,CA,94016 +180976,Macbook Pro Laptop,1,1700.0,2019-04-02 06:21:00,896 Sunset St, Portland,OR,97035 +180977,27in 4K Gaming Monitor,1,389.99,2019-04-16 18:34:00,606 Chestnut St, Boston,MA,02215 +180978,27in FHD Monitor,1,149.99,2019-04-04 18:35:00,982 7th St, Los Angeles,CA,90001 +180979,Lightning Charging Cable,1,14.95,2019-04-19 23:39:00,517 8th St, Los Angeles,CA,90001 +180979,LG Dryer,1,600.0,2019-04-19 23:39:00,517 8th St, Los Angeles,CA,90001 +180980,27in 4K Gaming Monitor,1,389.99,2019-04-25 12:34:00,935 4th St, Seattle,WA,98101 +180981,AA Batteries (4-pack),1,3.84,2019-04-06 15:05:00,898 7th St, Atlanta,GA,30301 +180982,Wired Headphones,1,11.99,2019-04-06 09:55:00,271 9th St, San Francisco,CA,94016 +180983,20in Monitor,1,109.99,2019-04-24 09:09:00,758 Park St, New York City,NY,10001 +180984,27in FHD Monitor,1,149.99,2019-04-09 15:27:00,72 Willow St, San Francisco,CA,94016 +180985,AA Batteries (4-pack),1,3.84,2019-04-13 16:29:00,530 Wilson St, Atlanta,GA,30301 +180986,USB-C Charging Cable,1,11.95,2019-04-12 10:53:00,146 Cherry St, Boston,MA,02215 +180987,USB-C Charging Cable,1,11.95,2019-04-14 19:22:00,64 Forest St, San Francisco,CA,94016 +180988,Wired Headphones,1,11.99,2019-04-24 11:27:00,93 Adams St, Atlanta,GA,30301 +180989,Apple Airpods Headphones,1,150.0,2019-05-01 00:54:00,103 Church St, San Francisco,CA,94016 +180990,USB-C Charging Cable,1,11.95,2019-04-17 07:56:00,534 Park St, Atlanta,GA,30301 +180991,USB-C Charging Cable,2,11.95,2019-04-05 21:06:00,484 Lincoln St, Los Angeles,CA,90001 +180992,Wired Headphones,1,11.99,2019-04-15 20:53:00,811 Johnson St, Atlanta,GA,30301 +180993,AA Batteries (4-pack),1,3.84,2019-04-23 08:51:00,8 6th St, San Francisco,CA,94016 +180994,27in FHD Monitor,1,149.99,2019-04-28 08:17:00,49 9th St, San Francisco,CA,94016 +180995,AA Batteries (4-pack),1,3.84,2019-04-17 13:45:00,824 West St, Los Angeles,CA,90001 +180996,Apple Airpods Headphones,1,150.0,2019-04-27 12:40:00,273 7th St, San Francisco,CA,94016 +180997,Apple Airpods Headphones,1,150.0,2019-04-04 10:59:00,66 14th St, Austin,TX,73301 +180998,Macbook Pro Laptop,1,1700.0,2019-04-02 13:49:00,96 Willow St, Los Angeles,CA,90001 +180999,Bose SoundSport Headphones,1,99.99,2019-04-25 11:41:00,810 Adams St, Portland,OR,97035 +181000,Flatscreen TV,1,300.0,2019-04-18 08:01:00,845 Walnut St, Los Angeles,CA,90001 +181001,AA Batteries (4-pack),2,3.84,2019-04-07 14:32:00,234 Sunset St, Los Angeles,CA,90001 +181002,Lightning Charging Cable,1,14.95,2019-04-03 02:47:00,487 Park St, San Francisco,CA,94016 +181003,Lightning Charging Cable,1,14.95,2019-04-10 19:27:00,96 Highland St, Atlanta,GA,30301 +181004,iPhone,1,700.0,2019-04-13 05:29:00,866 5th St, Los Angeles,CA,90001 +181005,USB-C Charging Cable,2,11.95,2019-04-23 11:58:00,316 Wilson St, Los Angeles,CA,90001 +181006,AA Batteries (4-pack),1,3.84,2019-04-30 13:10:00,768 Church St, San Francisco,CA,94016 +181007,Apple Airpods Headphones,1,150.0,2019-04-20 06:50:00,669 8th St, Los Angeles,CA,90001 +181008,27in FHD Monitor,1,149.99,2019-04-08 09:36:00,759 River St, Boston,MA,02215 +181009,Apple Airpods Headphones,1,150.0,2019-04-25 19:41:00,881 River St, Seattle,WA,98101 +181009,Bose SoundSport Headphones,1,99.99,2019-04-25 19:41:00,881 River St, Seattle,WA,98101 +181010,Lightning Charging Cable,1,14.95,2019-04-05 22:22:00,706 West St, Atlanta,GA,30301 +181011,AAA Batteries (4-pack),1,2.99,2019-04-01 19:11:00,684 Ridge St, New York City,NY,10001 +181012,Flatscreen TV,1,300.0,2019-04-20 23:02:00,692 Chestnut St, San Francisco,CA,94016 +181013,USB-C Charging Cable,1,11.95,2019-04-20 13:21:00,844 Hill St, Los Angeles,CA,90001 +181014,Lightning Charging Cable,1,14.95,2019-04-03 16:46:00,685 7th St, Los Angeles,CA,90001 +181015,Wired Headphones,2,11.99,2019-04-27 09:16:00,153 Sunset St, New York City,NY,10001 +181016,34in Ultrawide Monitor,1,379.99,2019-04-01 07:42:00,26 Cedar St, Atlanta,GA,30301 +181017,Bose SoundSport Headphones,1,99.99,2019-04-01 13:14:00,697 Center St, Dallas,TX,75001 +181018,AAA Batteries (4-pack),2,2.99,2019-04-01 23:41:00,492 Willow St, Seattle,WA,98101 +181019,USB-C Charging Cable,1,11.95,2019-04-22 21:45:00,772 Church St, San Francisco,CA,94016 +181020,LG Dryer,1,600.0,2019-04-06 20:49:00,460 1st St, San Francisco,CA,94016 +181021,USB-C Charging Cable,1,11.95,2019-04-11 17:29:00,782 Sunset St, San Francisco,CA,94016 +181022,Google Phone,1,600.0,2019-04-06 19:22:00,66 10th St, San Francisco,CA,94016 +181022,USB-C Charging Cable,1,11.95,2019-04-06 19:22:00,66 10th St, San Francisco,CA,94016 +181023,Flatscreen TV,1,300.0,2019-04-15 10:00:00,601 Hill St, Los Angeles,CA,90001 +181024,34in Ultrawide Monitor,1,379.99,2019-04-14 22:36:00,37 Hill St, Seattle,WA,98101 +181025,Macbook Pro Laptop,1,1700.0,2019-04-30 09:22:00,881 1st St, Boston,MA,02215 +181026,USB-C Charging Cable,1,11.95,2019-04-28 08:46:00,452 14th St, San Francisco,CA,94016 +181027,iPhone,1,700.0,2019-04-02 19:08:00,112 Lake St, New York City,NY,10001 +181027,Lightning Charging Cable,1,14.95,2019-04-02 19:08:00,112 Lake St, New York City,NY,10001 +181028,AA Batteries (4-pack),2,3.84,2019-04-04 16:54:00,586 Sunset St, Dallas,TX,75001 +181029,Bose SoundSport Headphones,1,99.99,2019-05-01 01:27:00,348 North St, San Francisco,CA,94016 +181030,34in Ultrawide Monitor,1,379.99,2019-04-10 21:48:00,397 Main St, Seattle,WA,98101 +181031,27in 4K Gaming Monitor,1,389.99,2019-04-26 10:35:00,258 13th St, Seattle,WA,98101 +181032,Bose SoundSport Headphones,1,99.99,2019-04-21 13:12:00,36 Walnut St, New York City,NY,10001 +181033,Lightning Charging Cable,1,14.95,2019-04-09 15:48:00,724 Main St, Boston,MA,02215 +181034,Apple Airpods Headphones,1,150.0,2019-04-10 20:23:00,233 West St, Los Angeles,CA,90001 +181035,USB-C Charging Cable,1,11.95,2019-04-25 09:40:00,22 Lakeview St, New York City,NY,10001 +181036,USB-C Charging Cable,2,11.95,2019-04-06 08:53:00,302 Dogwood St, San Francisco,CA,94016 +181037,Wired Headphones,1,11.99,2019-04-07 16:57:00,76 Park St, San Francisco,CA,94016 +181038,AAA Batteries (4-pack),1,2.99,2019-04-14 01:10:00,18 Dogwood St, New York City,NY,10001 +181039,27in FHD Monitor,1,149.99,2019-04-30 23:09:00,914 12th St, Boston,MA,02215 +181040,AA Batteries (4-pack),1,3.84,2019-04-24 09:29:00,725 Cherry St, San Francisco,CA,94016 +181041,AA Batteries (4-pack),1,3.84,2019-04-12 21:41:00,373 Cedar St, Seattle,WA,98101 +181042,20in Monitor,1,109.99,2019-04-17 15:50:00,755 Willow St, San Francisco,CA,94016 +181043,AAA Batteries (4-pack),1,2.99,2019-04-28 14:04:00,501 Forest St, Los Angeles,CA,90001 +181044,27in FHD Monitor,1,149.99,2019-04-14 11:01:00,114 Cherry St, San Francisco,CA,94016 +181045,Apple Airpods Headphones,1,150.0,2019-04-25 19:11:00,303 Lake St, San Francisco,CA,94016 +181046,27in FHD Monitor,1,149.99,2019-04-24 10:26:00,867 13th St, New York City,NY,10001 +181047,27in 4K Gaming Monitor,1,389.99,2019-04-06 14:41:00,293 11th St, Boston,MA,02215 +181048,Macbook Pro Laptop,1,1700.0,2019-04-11 13:47:00,940 11th St, Dallas,TX,75001 +181049,Apple Airpods Headphones,1,150.0,2019-04-14 16:41:00,953 Forest St, Dallas,TX,75001 +181050,USB-C Charging Cable,1,11.95,2019-04-23 19:57:00,854 North St, Dallas,TX,75001 +181051,AAA Batteries (4-pack),1,2.99,2019-04-18 13:18:00,26 6th St, Austin,TX,73301 +181052,Bose SoundSport Headphones,1,99.99,2019-04-10 21:42:00,153 Ridge St, San Francisco,CA,94016 +181053,AAA Batteries (4-pack),2,2.99,2019-04-17 07:52:00,799 Pine St, San Francisco,CA,94016 +181054,27in 4K Gaming Monitor,1,389.99,2019-04-30 10:38:00,551 Maple St, New York City,NY,10001 +181055,Wired Headphones,1,11.99,2019-04-08 16:37:00,610 13th St, Seattle,WA,98101 +181056,AA Batteries (4-pack),1,3.84,2019-04-11 06:29:00,35 8th St, San Francisco,CA,94016 +181057,Lightning Charging Cable,1,14.95,2019-04-09 18:38:00,825 Chestnut St, Los Angeles,CA,90001 +181058,Bose SoundSport Headphones,1,99.99,2019-04-23 10:19:00,534 Hickory St, Boston,MA,02215 +181059,AAA Batteries (4-pack),1,2.99,2019-04-08 08:32:00,158 Hickory St, Boston,MA,02215 +181060,27in 4K Gaming Monitor,1,389.99,2019-04-27 11:55:00,546 Main St, Portland,OR,97035 +181061,27in FHD Monitor,1,149.99,2019-04-12 16:19:00,949 Hickory St, Portland,OR,97035 +181062,Wired Headphones,1,11.99,2019-04-28 07:46:00,337 Maple St, Los Angeles,CA,90001 +181063,AAA Batteries (4-pack),1,2.99,2019-04-10 17:01:00,547 Jefferson St, Los Angeles,CA,90001 +181063,Google Phone,1,600.0,2019-04-10 17:01:00,547 Jefferson St, Los Angeles,CA,90001 +181064,AAA Batteries (4-pack),2,2.99,2019-04-09 15:27:00,244 8th St, Dallas,TX,75001 +181065,Apple Airpods Headphones,1,150.0,2019-04-12 23:06:00,849 4th St, Atlanta,GA,30301 +181066,Apple Airpods Headphones,1,150.0,2019-04-07 04:04:00,455 8th St, Atlanta,GA,30301 +181067,Bose SoundSport Headphones,1,99.99,2019-04-07 18:55:00,582 River St, Boston,MA,02215 +181068,Lightning Charging Cable,1,14.95,2019-04-13 19:13:00,622 Lincoln St, Seattle,WA,98101 +181069,Macbook Pro Laptop,2,1700.0,2019-04-27 21:01:00,668 Park St, San Francisco,CA,94016 +181069,34in Ultrawide Monitor,1,379.99,2019-04-27 21:01:00,668 Park St, San Francisco,CA,94016 +181070,20in Monitor,1,109.99,2019-04-17 22:08:00,689 9th St, Atlanta,GA,30301 +181071,AA Batteries (4-pack),1,3.84,2019-04-28 19:53:00,357 Ridge St, Los Angeles,CA,90001 +181072,Lightning Charging Cable,1,14.95,2019-04-27 14:45:00,730 14th St, Dallas,TX,75001 +181073,Wired Headphones,1,11.99,2019-04-27 19:57:00,187 Washington St, Los Angeles,CA,90001 +181074,Apple Airpods Headphones,1,150.0,2019-04-10 07:21:00,283 Lakeview St, New York City,NY,10001 +181075,AAA Batteries (4-pack),2,2.99,2019-04-27 08:12:00,782 7th St, Boston,MA,02215 +181076,Google Phone,1,600.0,2019-04-28 18:56:00,131 1st St, Boston,MA,02215 +181077,AAA Batteries (4-pack),2,2.99,2019-04-23 17:38:00,806 Main St, Austin,TX,73301 +181078,27in FHD Monitor,1,149.99,2019-04-06 11:58:00,897 8th St, Seattle,WA,98101 +181079,LG Dryer,1,600.0,2019-04-19 17:20:00,556 9th St, Austin,TX,73301 +181080,20in Monitor,1,109.99,2019-04-02 15:41:00,76 Cedar St, Los Angeles,CA,90001 +181081,Apple Airpods Headphones,1,150.0,2019-04-17 10:09:00,466 Lakeview St, San Francisco,CA,94016 +181082,AA Batteries (4-pack),1,3.84,2019-04-07 10:13:00,996 Elm St, Portland,ME,04101 +181083,AA Batteries (4-pack),1,3.84,2019-04-26 19:38:00,865 Adams St, Los Angeles,CA,90001 +181084,Flatscreen TV,1,300.0,2019-04-07 21:36:00,1 Walnut St, Boston,MA,02215 +181085,27in FHD Monitor,1,149.99,2019-04-11 11:06:00,586 Pine St, San Francisco,CA,94016 +181086,Flatscreen TV,1,300.0,2019-04-25 16:20:00,922 Washington St, Austin,TX,73301 +181087,Wired Headphones,1,11.99,2019-04-02 09:45:00,106 4th St, Los Angeles,CA,90001 +181088,AAA Batteries (4-pack),2,2.99,2019-04-22 10:55:00,294 Highland St, Boston,MA,02215 +181089,Flatscreen TV,1,300.0,2019-04-29 13:02:00,633 Sunset St, San Francisco,CA,94016 +181090,Apple Airpods Headphones,2,150.0,2019-04-17 06:51:00,22 West St, Los Angeles,CA,90001 +181091,34in Ultrawide Monitor,1,379.99,2019-04-11 14:05:00,156 13th St, Dallas,TX,75001 +181092,Lightning Charging Cable,1,14.95,2019-04-08 07:42:00,90 Highland St, Portland,OR,97035 +181093,AA Batteries (4-pack),1,3.84,2019-04-14 03:07:00,737 Chestnut St, Seattle,WA,98101 +181094,USB-C Charging Cable,1,11.95,2019-04-17 09:24:00,346 13th St, San Francisco,CA,94016 +181095,Macbook Pro Laptop,1,1700.0,2019-04-19 20:42:00,251 South St, Dallas,TX,75001 +181096,AA Batteries (4-pack),1,3.84,2019-04-19 11:32:00,483 Spruce St, San Francisco,CA,94016 +181096,USB-C Charging Cable,1,11.95,2019-04-19 11:32:00,483 Spruce St, San Francisco,CA,94016 +181097,Bose SoundSport Headphones,1,99.99,2019-04-30 12:45:00,799 Johnson St, Atlanta,GA,30301 +181098,USB-C Charging Cable,1,11.95,2019-04-19 01:45:00,902 6th St, Boston,MA,02215 +181099,USB-C Charging Cable,1,11.95,2019-04-19 14:26:00,317 Forest St, San Francisco,CA,94016 +181100,20in Monitor,1,109.99,2019-04-05 04:48:00,536 Main St, New York City,NY,10001 +181101,27in FHD Monitor,1,149.99,2019-04-04 18:46:00,188 Jefferson St, San Francisco,CA,94016 +181102,Macbook Pro Laptop,1,1700.0,2019-04-28 19:25:00,895 North St, Los Angeles,CA,90001 +181103,iPhone,1,700.0,2019-04-21 14:53:00,630 Walnut St, Los Angeles,CA,90001 +181104,34in Ultrawide Monitor,1,379.99,2019-04-18 13:40:00,666 Walnut St, San Francisco,CA,94016 +181105,AAA Batteries (4-pack),3,2.99,2019-04-27 12:12:00,962 Elm St, Atlanta,GA,30301 +181106,Apple Airpods Headphones,1,150.0,2019-04-17 20:22:00,288 9th St, Atlanta,GA,30301 +181107,AAA Batteries (4-pack),2,2.99,2019-04-29 09:30:00,266 Center St, Boston,MA,02215 +181108,Wired Headphones,1,11.99,2019-04-15 19:13:00,794 8th St, Austin,TX,73301 +181109,Wired Headphones,1,11.99,2019-04-19 10:24:00,194 Dogwood St, San Francisco,CA,94016 +181110,Google Phone,1,600.0,2019-04-12 12:57:00,37 Lake St, New York City,NY,10001 +181111,Lightning Charging Cable,1,14.95,2019-04-02 14:39:00,298 North St, New York City,NY,10001 +181112,Wired Headphones,2,11.99,2019-04-14 17:18:00,966 Cherry St, San Francisco,CA,94016 +181113,34in Ultrawide Monitor,1,379.99,2019-04-25 15:43:00,262 Wilson St, Atlanta,GA,30301 +181114,27in FHD Monitor,1,149.99,2019-04-25 10:11:00,586 Elm St, Los Angeles,CA,90001 +181115,iPhone,1,700.0,2019-04-28 19:10:00,834 Meadow St, Boston,MA,02215 +181116,27in FHD Monitor,1,149.99,2019-04-22 12:25:00,944 8th St, San Francisco,CA,94016 +181117,AAA Batteries (4-pack),3,2.99,2019-04-20 00:19:00,392 9th St, Dallas,TX,75001 +181118,Vareebadd Phone,1,400.0,2019-04-25 11:07:00,417 Chestnut St, Portland,OR,97035 +181119,iPhone,1,700.0,2019-04-16 08:17:00,55 South St, San Francisco,CA,94016 +181120,USB-C Charging Cable,1,11.95,2019-04-11 22:27:00,45 2nd St, Los Angeles,CA,90001 +181121,USB-C Charging Cable,1,11.95,2019-04-28 18:01:00,529 Cedar St, San Francisco,CA,94016 +181122,AAA Batteries (4-pack),3,2.99,2019-04-15 18:07:00,331 10th St, San Francisco,CA,94016 +181123,Lightning Charging Cable,1,14.95,2019-04-08 16:18:00,381 Adams St, Boston,MA,02215 +181124,AAA Batteries (4-pack),3,2.99,2019-04-13 16:34:00,815 North St, Los Angeles,CA,90001 +181125,20in Monitor,1,109.99,2019-04-19 09:54:00,743 Adams St, San Francisco,CA,94016 +181125,Bose SoundSport Headphones,1,99.99,2019-04-19 09:54:00,743 Adams St, San Francisco,CA,94016 +181126,Wired Headphones,1,11.99,2019-04-17 09:49:00,140 8th St, Los Angeles,CA,90001 +181127,Wired Headphones,1,11.99,2019-04-18 00:50:00,6 10th St, New York City,NY,10001 +181128,Google Phone,1,600.0,2019-04-28 01:54:00,904 Maple St, Los Angeles,CA,90001 +181129,Wired Headphones,1,11.99,2019-04-07 21:16:00,546 Washington St, Los Angeles,CA,90001 +181130,AA Batteries (4-pack),2,3.84,2019-04-30 20:48:00,917 10th St, New York City,NY,10001 +181131,AAA Batteries (4-pack),2,2.99,2019-04-14 15:36:00,933 Hickory St, Dallas,TX,75001 +181131,USB-C Charging Cable,1,11.95,2019-04-14 15:36:00,933 Hickory St, Dallas,TX,75001 +181132,AAA Batteries (4-pack),1,2.99,2019-04-02 21:04:00,823 9th St, Seattle,WA,98101 +181133,Wired Headphones,1,11.99,2019-04-01 16:16:00,574 Ridge St, New York City,NY,10001 +181134,USB-C Charging Cable,1,11.95,2019-04-08 22:51:00,225 5th St, Portland,OR,97035 +181135,AAA Batteries (4-pack),1,2.99,2019-04-05 19:30:00,377 Washington St, Los Angeles,CA,90001 +181136,AA Batteries (4-pack),1,3.84,2019-04-03 19:53:00,549 6th St, Los Angeles,CA,90001 +181137,AA Batteries (4-pack),1,3.84,2019-04-20 10:30:00,224 Center St, Boston,MA,02215 +181138,Apple Airpods Headphones,1,150.0,2019-04-05 13:01:00,810 Main St, San Francisco,CA,94016 +181139,27in 4K Gaming Monitor,1,389.99,2019-04-10 19:26:00,895 Jackson St, Atlanta,GA,30301 +181140,Apple Airpods Headphones,1,150.0,2019-04-24 19:50:00,165 Washington St, Atlanta,GA,30301 +181141,Flatscreen TV,1,300.0,2019-04-24 17:06:00,945 Johnson St, New York City,NY,10001 +181142,Lightning Charging Cable,1,14.95,2019-04-04 13:18:00,33 Walnut St, Atlanta,GA,30301 +181143,AA Batteries (4-pack),1,3.84,2019-04-28 10:54:00,788 Jackson St, Los Angeles,CA,90001 +181144,Wired Headphones,1,11.99,2019-04-22 22:40:00,484 Madison St, Seattle,WA,98101 +181145,Flatscreen TV,1,300.0,2019-04-24 20:12:00,811 Park St, Atlanta,GA,30301 +181146,34in Ultrawide Monitor,1,379.99,2019-04-10 00:03:00,610 4th St, Seattle,WA,98101 +181147,AA Batteries (4-pack),2,3.84,2019-04-16 16:56:00,739 12th St, San Francisco,CA,94016 +181148,27in FHD Monitor,1,149.99,2019-04-24 18:45:00,342 Lake St, Seattle,WA,98101 +181149,Wired Headphones,1,11.99,2019-04-05 10:22:00,679 Johnson St, San Francisco,CA,94016 +181150,Lightning Charging Cable,1,14.95,2019-04-14 20:01:00,203 13th St, Los Angeles,CA,90001 +181151,Wired Headphones,3,11.99,2019-04-05 17:27:00,126 2nd St, Portland,OR,97035 +181152,AA Batteries (4-pack),1,3.84,2019-04-13 16:42:00,383 2nd St, Los Angeles,CA,90001 +181153,Macbook Pro Laptop,1,1700.0,2019-04-05 00:01:00,561 Lincoln St, Portland,OR,97035 +181154,AAA Batteries (4-pack),1,2.99,2019-04-27 11:45:00,708 Sunset St, Boston,MA,02215 +181155,Wired Headphones,1,11.99,2019-04-07 16:55:00,71 2nd St, San Francisco,CA,94016 +181156,AAA Batteries (4-pack),1,2.99,2019-04-26 09:48:00,67 9th St, Dallas,TX,75001 +181157,20in Monitor,1,109.99,2019-04-25 15:09:00,606 South St, San Francisco,CA,94016 +181158,Flatscreen TV,1,300.0,2019-04-06 13:06:00,799 Highland St, Seattle,WA,98101 +181159,34in Ultrawide Monitor,1,379.99,2019-04-05 14:36:00,994 West St, Los Angeles,CA,90001 +181160,AA Batteries (4-pack),3,3.84,2019-04-14 09:13:00,836 12th St, Seattle,WA,98101 +181161,AAA Batteries (4-pack),1,2.99,2019-04-15 15:11:00,988 Willow St, Los Angeles,CA,90001 +181162,Bose SoundSport Headphones,1,99.99,2019-04-29 15:56:00,11 Center St, San Francisco,CA,94016 +181163,34in Ultrawide Monitor,1,379.99,2019-04-27 12:04:00,960 12th St, San Francisco,CA,94016 +181164,iPhone,1,700.0,2019-04-17 00:15:00,630 Hickory St, Austin,TX,73301 +181165,Wired Headphones,1,11.99,2019-04-22 15:03:00,602 North St, Dallas,TX,75001 +181166,Bose SoundSport Headphones,1,99.99,2019-04-18 17:57:00,945 13th St, New York City,NY,10001 +181167,AAA Batteries (4-pack),1,2.99,2019-04-30 10:24:00,647 Park St, Boston,MA,02215 +181168,27in FHD Monitor,1,149.99,2019-04-12 09:13:00,469 12th St, Atlanta,GA,30301 +181169,Apple Airpods Headphones,1,150.0,2019-04-29 15:29:00,399 Center St, Dallas,TX,75001 +181170,USB-C Charging Cable,1,11.95,2019-04-21 22:07:00,3 12th St, Atlanta,GA,30301 +181171,Wired Headphones,1,11.99,2019-04-09 22:06:00,794 Lake St, Los Angeles,CA,90001 +181172,Apple Airpods Headphones,1,150.0,2019-04-09 15:24:00,676 Walnut St, San Francisco,CA,94016 +181173,AAA Batteries (4-pack),1,2.99,2019-04-13 22:34:00,636 9th St, Dallas,TX,75001 +181174,Apple Airpods Headphones,1,150.0,2019-04-11 14:53:00,516 Forest St, San Francisco,CA,94016 +181175,Wired Headphones,1,11.99,2019-04-26 17:02:00,887 West St, Los Angeles,CA,90001 +181176,AA Batteries (4-pack),1,3.84,2019-04-23 10:16:00,992 8th St, Los Angeles,CA,90001 +181177,iPhone,1,700.0,2019-04-01 13:13:00,244 Maple St, Portland,OR,97035 +181177,Lightning Charging Cable,1,14.95,2019-04-01 13:13:00,244 Maple St, Portland,OR,97035 +181177,Vareebadd Phone,1,400.0,2019-04-01 13:13:00,244 Maple St, Portland,OR,97035 +181178,AAA Batteries (4-pack),1,2.99,2019-04-12 16:27:00,119 Cedar St, San Francisco,CA,94016 +181179,Macbook Pro Laptop,1,1700.0,2019-04-05 14:10:00,892 5th St, Austin,TX,73301 +181180,Vareebadd Phone,1,400.0,2019-04-30 11:11:00,473 Madison St, New York City,NY,10001 +181180,USB-C Charging Cable,1,11.95,2019-04-30 11:11:00,473 Madison St, New York City,NY,10001 +181181,Flatscreen TV,1,300.0,2019-04-23 13:42:00,686 Lakeview St, Austin,TX,73301 +181182,27in FHD Monitor,1,149.99,2019-04-20 18:22:00,505 Chestnut St, San Francisco,CA,94016 +181183,AAA Batteries (4-pack),2,2.99,2019-04-01 10:39:00,668 9th St, New York City,NY,10001 +181184,Apple Airpods Headphones,1,150.0,2019-04-04 11:16:00,214 6th St, Boston,MA,02215 +181185,27in 4K Gaming Monitor,1,389.99,2019-04-27 18:10:00,610 1st St, Seattle,WA,98101 +181186,USB-C Charging Cable,1,11.95,2019-04-11 18:49:00,770 1st St, Dallas,TX,75001 +181187,Bose SoundSport Headphones,1,99.99,2019-04-26 08:12:00,330 10th St, Austin,TX,73301 +181188,AA Batteries (4-pack),1,3.84,2019-04-29 10:16:00,619 8th St, Atlanta,GA,30301 +181189,27in 4K Gaming Monitor,1,389.99,2019-04-09 08:17:00,45 Hill St, Austin,TX,73301 +181190,Flatscreen TV,1,300.0,2019-04-26 12:30:00,367 Main St, San Francisco,CA,94016 +181191,Lightning Charging Cable,1,14.95,2019-04-23 13:36:00,57 Ridge St, San Francisco,CA,94016 +181192,Lightning Charging Cable,1,14.95,2019-04-14 22:42:00,598 Dogwood St, San Francisco,CA,94016 +181193,AAA Batteries (4-pack),3,2.99,2019-04-25 19:01:00,406 Washington St, Dallas,TX,75001 +181194,Wired Headphones,1,11.99,2019-04-18 12:16:00,250 Lake St, Los Angeles,CA,90001 +181195,USB-C Charging Cable,1,11.95,2019-04-12 17:05:00,108 Dogwood St, New York City,NY,10001 +181196,AA Batteries (4-pack),1,3.84,2019-04-11 09:54:00,243 Cherry St, New York City,NY,10001 +181197,Lightning Charging Cable,1,14.95,2019-04-08 01:05:00,467 South St, San Francisco,CA,94016 +181198,LG Dryer,1,600.0,2019-04-06 11:37:00,470 Elm St, Austin,TX,73301 +181199,Wired Headphones,1,11.99,2019-04-10 16:08:00,157 Cedar St, New York City,NY,10001 +181200,Lightning Charging Cable,1,14.95,2019-04-30 16:40:00,69 Lake St, Austin,TX,73301 +181201,USB-C Charging Cable,2,11.95,2019-04-03 02:44:00,631 Hill St, Austin,TX,73301 +181202,USB-C Charging Cable,1,11.95,2019-04-06 22:08:00,846 4th St, New York City,NY,10001 +181203,27in 4K Gaming Monitor,1,389.99,2019-04-23 13:14:00,308 4th St, Seattle,WA,98101 +181204,Wired Headphones,1,11.99,2019-04-17 14:47:00,162 13th St, New York City,NY,10001 +181205,AA Batteries (4-pack),1,3.84,2019-04-24 18:55:00,639 5th St, Portland,OR,97035 +181206,Macbook Pro Laptop,1,1700.0,2019-04-16 09:07:00,561 Maple St, Los Angeles,CA,90001 +181207,USB-C Charging Cable,1,11.95,2019-04-02 08:14:00,29 Dogwood St, San Francisco,CA,94016 +181208,USB-C Charging Cable,1,11.95,2019-04-04 17:58:00,85 Main St, New York City,NY,10001 +181209,Lightning Charging Cable,1,14.95,2019-04-20 13:19:00,241 Chestnut St, Atlanta,GA,30301 +181210,Apple Airpods Headphones,1,150.0,2019-04-11 19:30:00,635 Washington St, Seattle,WA,98101 +181211,Vareebadd Phone,1,400.0,2019-04-26 19:34:00,849 Hill St, Seattle,WA,98101 +181211,Wired Headphones,1,11.99,2019-04-26 19:34:00,849 Hill St, Seattle,WA,98101 +181212,USB-C Charging Cable,1,11.95,2019-04-05 19:01:00,705 Hickory St, San Francisco,CA,94016 +181213,AA Batteries (4-pack),4,3.84,2019-04-28 14:51:00,919 5th St, New York City,NY,10001 +181214,AA Batteries (4-pack),1,3.84,2019-04-24 12:53:00,1 5th St, New York City,NY,10001 +181215,Lightning Charging Cable,1,14.95,2019-04-01 16:32:00,220 Chestnut St, Seattle,WA,98101 +181216,27in FHD Monitor,1,149.99,2019-04-06 17:27:00,200 Lakeview St, Atlanta,GA,30301 +181217,AA Batteries (4-pack),1,3.84,2019-04-01 09:10:00,106 Hickory St, Los Angeles,CA,90001 +181218,27in 4K Gaming Monitor,1,389.99,2019-04-01 08:51:00,68 Sunset St, Atlanta,GA,30301 +181219,USB-C Charging Cable,1,11.95,2019-04-09 09:08:00,974 Lakeview St, Atlanta,GA,30301 +181220,27in 4K Gaming Monitor,1,389.99,2019-04-19 17:24:00,598 12th St, Austin,TX,73301 +181220,Apple Airpods Headphones,1,150.0,2019-04-19 17:24:00,598 12th St, Austin,TX,73301 +181221,27in FHD Monitor,1,149.99,2019-04-29 23:25:00,327 Forest St, Atlanta,GA,30301 +181222,AAA Batteries (4-pack),1,2.99,2019-04-07 21:59:00,415 Lake St, Atlanta,GA,30301 +181223,Lightning Charging Cable,2,14.95,2019-04-08 12:07:00,779 Sunset St, Boston,MA,02215 +181224,Lightning Charging Cable,1,14.95,2019-04-18 12:57:00,606 1st St, New York City,NY,10001 +181225,Wired Headphones,1,11.99,2019-04-19 22:00:00,437 Spruce St, Los Angeles,CA,90001 +181226,AAA Batteries (4-pack),1,2.99,2019-04-10 16:34:00,588 Sunset St, Boston,MA,02215 +181227,AAA Batteries (4-pack),1,2.99,2019-04-27 08:49:00,918 Elm St, San Francisco,CA,94016 +181228,AAA Batteries (4-pack),1,2.99,2019-04-14 20:46:00,665 10th St, San Francisco,CA,94016 +181229,AA Batteries (4-pack),1,3.84,2019-04-03 16:34:00,664 Cedar St, Los Angeles,CA,90001 +181230,34in Ultrawide Monitor,1,379.99,2019-04-19 18:53:00,458 Dogwood St, Seattle,WA,98101 +181231,AAA Batteries (4-pack),1,2.99,2019-04-30 17:49:00,54 14th St, Los Angeles,CA,90001 +181232,ThinkPad Laptop,1,999.99,2019-04-27 14:32:00,722 River St, San Francisco,CA,94016 +181233,Wired Headphones,1,11.99,2019-04-25 18:40:00,203 Center St, Portland,OR,97035 +181234,Wired Headphones,2,11.99,2019-04-09 14:55:00,320 13th St, New York City,NY,10001 +181235,Wired Headphones,1,11.99,2019-04-15 10:53:00,435 7th St, New York City,NY,10001 +181236,Wired Headphones,1,11.99,2019-04-03 16:29:00,532 2nd St, New York City,NY,10001 +181237,AAA Batteries (4-pack),1,2.99,2019-04-17 18:33:00,528 South St, New York City,NY,10001 +181238,Apple Airpods Headphones,1,150.0,2019-04-22 21:07:00,150 11th St, San Francisco,CA,94016 +181239,AAA Batteries (4-pack),1,2.99,2019-04-15 11:46:00,95 Lake St, Atlanta,GA,30301 +181240,Bose SoundSport Headphones,1,99.99,2019-04-22 10:01:00,898 Wilson St, San Francisco,CA,94016 +181241,34in Ultrawide Monitor,1,379.99,2019-04-08 16:30:00,106 Maple St, New York City,NY,10001 +181242,AA Batteries (4-pack),1,3.84,2019-04-05 23:22:00,391 7th St, New York City,NY,10001 +181243,Apple Airpods Headphones,1,150.0,2019-04-27 08:49:00,431 10th St, New York City,NY,10001 +181244,Bose SoundSport Headphones,1,99.99,2019-04-03 14:29:00,733 11th St, Portland,OR,97035 +181245,Bose SoundSport Headphones,1,99.99,2019-04-21 11:02:00,14 Church St, Dallas,TX,75001 +181246,Wired Headphones,1,11.99,2019-04-09 13:58:00,342 Hickory St, San Francisco,CA,94016 +181247,Macbook Pro Laptop,1,1700.0,2019-04-18 01:27:00,513 10th St, San Francisco,CA,94016 +181248,AA Batteries (4-pack),2,3.84,2019-05-01 00:38:00,753 South St, San Francisco,CA,94016 +181249,USB-C Charging Cable,1,11.95,2019-04-11 21:30:00,987 Hill St, Boston,MA,02215 +181250,USB-C Charging Cable,1,11.95,2019-04-16 11:03:00,556 Chestnut St, Dallas,TX,75001 +181251,Lightning Charging Cable,1,14.95,2019-04-12 07:27:00,886 Jackson St, Seattle,WA,98101 +181252,Wired Headphones,1,11.99,2019-04-20 12:30:00,212 Church St, San Francisco,CA,94016 +181253,Lightning Charging Cable,1,14.95,2019-04-14 10:27:00,852 Wilson St, Dallas,TX,75001 +181254,USB-C Charging Cable,1,11.95,2019-04-16 22:59:00,901 Spruce St, Boston,MA,02215 +181255,Flatscreen TV,1,300.0,2019-04-05 06:24:00,922 2nd St, San Francisco,CA,94016 +181256,34in Ultrawide Monitor,1,379.99,2019-04-20 13:43:00,105 Walnut St, Austin,TX,73301 +181257,iPhone,1,700.0,2019-04-14 02:08:00,175 Park St, Atlanta,GA,30301 +181257,Wired Headphones,1,11.99,2019-04-14 02:08:00,175 Park St, Atlanta,GA,30301 +181258,Wired Headphones,2,11.99,2019-04-30 20:09:00,745 Maple St, Los Angeles,CA,90001 +181259,Wired Headphones,1,11.99,2019-04-08 02:05:00,676 North St, New York City,NY,10001 +181260,Wired Headphones,1,11.99,2019-04-10 14:59:00,7 Forest St, San Francisco,CA,94016 +181261,Bose SoundSport Headphones,1,99.99,2019-04-26 09:50:00,50 Ridge St, Seattle,WA,98101 +181262,AAA Batteries (4-pack),1,2.99,2019-04-23 19:39:00,94 Elm St, Boston,MA,02215 +181262,Google Phone,1,600.0,2019-04-23 19:39:00,94 Elm St, Boston,MA,02215 +181263,27in FHD Monitor,1,149.99,2019-04-21 10:05:00,968 Willow St, Seattle,WA,98101 +181264,Wired Headphones,2,11.99,2019-04-13 07:36:00,453 Sunset St, Los Angeles,CA,90001 +181265,Lightning Charging Cable,1,14.95,2019-04-28 19:39:00,369 6th St, Austin,TX,73301 +181266,iPhone,1,700.0,2019-04-27 13:19:00,624 Madison St, Boston,MA,02215 +181266,Wired Headphones,1,11.99,2019-04-27 13:19:00,624 Madison St, Boston,MA,02215 +181267,AA Batteries (4-pack),1,3.84,2019-04-07 20:32:00,138 14th St, San Francisco,CA,94016 +181268,27in FHD Monitor,1,149.99,2019-04-26 15:24:00,655 Jackson St, Los Angeles,CA,90001 +181269,Lightning Charging Cable,1,14.95,2019-04-30 17:44:00,509 8th St, New York City,NY,10001 +181270,Wired Headphones,1,11.99,2019-04-07 16:31:00,305 Maple St, Los Angeles,CA,90001 +181271,Vareebadd Phone,1,400.0,2019-04-09 08:17:00,860 Hickory St, Portland,OR,97035 +181272,Lightning Charging Cable,1,14.95,2019-04-18 16:11:00,508 Pine St, San Francisco,CA,94016 +181273,Wired Headphones,1,11.99,2019-04-09 14:27:00,145 Chestnut St, San Francisco,CA,94016 +181274,AA Batteries (4-pack),1,3.84,2019-04-07 00:10:00,121 Washington St, Portland,OR,97035 +181275,AA Batteries (4-pack),1,3.84,2019-04-13 15:03:00,580 11th St, Portland,ME,04101 +181276,Wired Headphones,1,11.99,2019-04-19 18:30:00,191 7th St, Dallas,TX,75001 +181277,34in Ultrawide Monitor,1,379.99,2019-04-02 14:20:00,852 Walnut St, Atlanta,GA,30301 +181278,Apple Airpods Headphones,1,150.0,2019-04-04 11:22:00,992 Dogwood St, Seattle,WA,98101 +181279,20in Monitor,1,109.99,2019-04-23 09:04:00,968 River St, Boston,MA,02215 +181280,Bose SoundSport Headphones,1,99.99,2019-04-16 10:11:00,276 Johnson St, Los Angeles,CA,90001 +181281,USB-C Charging Cable,1,11.95,2019-04-09 17:23:00,947 1st St, Los Angeles,CA,90001 +181282,ThinkPad Laptop,1,999.99,2019-04-15 12:40:00,338 Jefferson St, Austin,TX,73301 +181283,Bose SoundSport Headphones,1,99.99,2019-04-13 18:39:00,644 13th St, Los Angeles,CA,90001 +181284,Lightning Charging Cable,2,14.95,2019-04-09 01:13:00,581 6th St, Seattle,WA,98101 +181285,USB-C Charging Cable,2,11.95,2019-04-29 17:07:00,130 Lake St, San Francisco,CA,94016 +181286,Apple Airpods Headphones,1,150.0,2019-04-04 19:48:00,697 5th St, San Francisco,CA,94016 +181287,AAA Batteries (4-pack),1,2.99,2019-04-22 18:54:00,338 Meadow St, New York City,NY,10001 +181288,AAA Batteries (4-pack),3,2.99,2019-04-22 18:20:00,978 Elm St, San Francisco,CA,94016 +181289,USB-C Charging Cable,1,11.95,2019-04-27 13:42:00,577 12th St, Atlanta,GA,30301 +181290,Lightning Charging Cable,1,14.95,2019-04-08 14:57:00,239 Meadow St, Seattle,WA,98101 +181291,AA Batteries (4-pack),1,3.84,2019-04-03 12:40:00,43 Madison St, New York City,NY,10001 +181292,AA Batteries (4-pack),1,3.84,2019-04-21 19:48:00,792 Church St, Boston,MA,02215 +181293,AAA Batteries (4-pack),1,2.99,2019-04-12 08:36:00,165 Hill St, Dallas,TX,75001 +181294,Lightning Charging Cable,1,14.95,2019-04-06 10:35:00,664 Jefferson St, Portland,OR,97035 +181295,Bose SoundSport Headphones,1,99.99,2019-04-29 14:23:00,499 Johnson St, Los Angeles,CA,90001 +181296,Flatscreen TV,1,300.0,2019-04-25 14:15:00,365 West St, San Francisco,CA,94016 +181297,USB-C Charging Cable,1,11.95,2019-04-25 06:45:00,394 Forest St, San Francisco,CA,94016 +181298,Macbook Pro Laptop,1,1700.0,2019-04-01 21:39:00,732 Hickory St, Boston,MA,02215 +181299,AA Batteries (4-pack),1,3.84,2019-04-11 00:45:00,543 Lakeview St, San Francisco,CA,94016 +181300,Lightning Charging Cable,1,14.95,2019-04-18 14:41:00,982 Jackson St, San Francisco,CA,94016 +181301,AAA Batteries (4-pack),1,2.99,2019-04-27 18:32:00,429 Cedar St, Los Angeles,CA,90001 +181302,iPhone,1,700.0,2019-04-22 10:27:00,534 Lakeview St, New York City,NY,10001 +181303,Apple Airpods Headphones,1,150.0,2019-04-19 09:39:00,463 10th St, Los Angeles,CA,90001 +181304,AAA Batteries (4-pack),1,2.99,2019-04-01 13:14:00,713 Johnson St, Atlanta,GA,30301 +181305,Bose SoundSport Headphones,1,99.99,2019-04-13 11:43:00,13 Hickory St, New York City,NY,10001 +181306,AAA Batteries (4-pack),1,2.99,2019-04-09 21:48:00,150 5th St, San Francisco,CA,94016 +181307,20in Monitor,1,109.99,2019-04-09 21:52:00,453 Willow St, Los Angeles,CA,90001 +181308,Wired Headphones,1,11.99,2019-04-20 15:19:00,471 Chestnut St, Atlanta,GA,30301 +181309,ThinkPad Laptop,1,999.99,2019-04-11 00:33:00,643 Jackson St, Atlanta,GA,30301 +181310,AAA Batteries (4-pack),2,2.99,2019-04-28 23:08:00,990 Center St, Dallas,TX,75001 +181311,Wired Headphones,1,11.99,2019-04-08 11:13:00,222 Maple St, San Francisco,CA,94016 +181312,Apple Airpods Headphones,1,150.0,2019-04-10 21:47:00,148 7th St, Seattle,WA,98101 +181313,Wired Headphones,1,11.99,2019-04-08 13:57:00,176 Johnson St, San Francisco,CA,94016 +181314,Wired Headphones,1,11.99,2019-04-08 20:24:00,916 North St, San Francisco,CA,94016 +181315,Google Phone,1,600.0,2019-04-28 18:50:00,123 8th St, San Francisco,CA,94016 +181315,USB-C Charging Cable,1,11.95,2019-04-28 18:50:00,123 8th St, San Francisco,CA,94016 +181316,Wired Headphones,1,11.99,2019-04-09 02:37:00,843 South St, Seattle,WA,98101 +181317,Wired Headphones,1,11.99,2019-04-20 21:29:00,715 Center St, Los Angeles,CA,90001 +181318,Flatscreen TV,1,300.0,2019-04-22 10:16:00,624 Cherry St, San Francisco,CA,94016 +181319,AAA Batteries (4-pack),1,2.99,2019-04-12 11:10:00,392 Willow St, Portland,OR,97035 +181320,Lightning Charging Cable,2,14.95,2019-04-05 16:51:00,334 Jefferson St, Los Angeles,CA,90001 +181321,AAA Batteries (4-pack),2,2.99,2019-04-05 23:01:00,908 Wilson St, San Francisco,CA,94016 +181322,Google Phone,1,600.0,2019-04-23 14:10:00,691 14th St, Boston,MA,02215 +181323,Bose SoundSport Headphones,1,99.99,2019-04-10 10:54:00,602 Cherry St, New York City,NY,10001 +181324,ThinkPad Laptop,1,999.99,2019-04-16 10:01:00,411 Elm St, San Francisco,CA,94016 +181325,USB-C Charging Cable,1,11.95,2019-04-16 21:48:00,483 Cherry St, San Francisco,CA,94016 +181326,Lightning Charging Cable,1,14.95,2019-04-08 11:52:00,72 7th St, Los Angeles,CA,90001 +181327,27in FHD Monitor,1,149.99,2019-04-05 14:49:00,575 Madison St, Portland,OR,97035 +181327,AAA Batteries (4-pack),3,2.99,2019-04-05 14:49:00,575 Madison St, Portland,OR,97035 +181328,AAA Batteries (4-pack),1,2.99,2019-04-14 19:42:00,23 Highland St, Los Angeles,CA,90001 +181328,USB-C Charging Cable,1,11.95,2019-04-14 19:42:00,23 Highland St, Los Angeles,CA,90001 +181329,Google Phone,1,600.0,2019-04-05 17:19:00,334 10th St, Dallas,TX,75001 +181330,AAA Batteries (4-pack),1,2.99,2019-04-17 19:41:00,731 Adams St, San Francisco,CA,94016 +181331,AA Batteries (4-pack),1,3.84,2019-04-23 22:05:00,800 Madison St, Portland,OR,97035 +181332,AAA Batteries (4-pack),1,2.99,2019-04-22 08:07:00,624 Lincoln St, Portland,OR,97035 +181333,USB-C Charging Cable,1,11.95,2019-04-11 23:29:00,808 Lakeview St, Portland,OR,97035 +181334,Bose SoundSport Headphones,1,99.99,2019-04-02 21:57:00,227 5th St, San Francisco,CA,94016 +181335,Apple Airpods Headphones,1,150.0,2019-04-15 13:14:00,67 River St, San Francisco,CA,94016 +181336,27in FHD Monitor,1,149.99,2019-04-21 12:12:00,783 Johnson St, Atlanta,GA,30301 +181337,Apple Airpods Headphones,1,150.0,2019-04-10 14:59:00,683 1st St, Los Angeles,CA,90001 +181338,iPhone,1,700.0,2019-04-06 19:05:00,975 Highland St, Portland,OR,97035 +181339,Macbook Pro Laptop,1,1700.0,2019-04-17 17:26:00,905 10th St, San Francisco,CA,94016 +181340,Wired Headphones,1,11.99,2019-04-06 21:46:00,122 5th St, San Francisco,CA,94016 +181341,Macbook Pro Laptop,1,1700.0,2019-04-25 19:29:00,829 Lincoln St, Los Angeles,CA,90001 +181342,34in Ultrawide Monitor,1,379.99,2019-04-09 23:03:00,725 Cedar St, Atlanta,GA,30301 +181343,AAA Batteries (4-pack),1,2.99,2019-04-18 18:33:00,315 Spruce St, Los Angeles,CA,90001 +181344,Lightning Charging Cable,1,14.95,2019-04-16 18:46:00,184 Lake St, Portland,ME,04101 +181345,AAA Batteries (4-pack),1,2.99,2019-04-19 15:26:00,701 8th St, San Francisco,CA,94016 +181346,20in Monitor,1,109.99,2019-04-06 14:12:00,783 Cherry St, Atlanta,GA,30301 +181347,AA Batteries (4-pack),1,3.84,2019-04-17 13:43:00,341 Center St, Seattle,WA,98101 +181348,AAA Batteries (4-pack),1,2.99,2019-04-12 14:56:00,591 5th St, New York City,NY,10001 +181349,27in FHD Monitor,1,149.99,2019-04-05 15:08:00,967 12th St, Boston,MA,02215 +181350,Bose SoundSport Headphones,1,99.99,2019-04-08 10:46:00,941 5th St, Portland,OR,97035 +181351,AA Batteries (4-pack),1,3.84,2019-04-22 19:29:00,173 7th St, Atlanta,GA,30301 +181352,USB-C Charging Cable,1,11.95,2019-04-24 21:20:00,758 9th St, Seattle,WA,98101 +181353,Bose SoundSport Headphones,1,99.99,2019-04-26 14:59:00,66 Park St, Atlanta,GA,30301 +181354,USB-C Charging Cable,1,11.95,2019-04-18 15:03:00,641 13th St, Austin,TX,73301 +181355,AAA Batteries (4-pack),1,2.99,2019-04-22 16:57:00,3 South St, Boston,MA,02215 +181356,20in Monitor,1,109.99,2019-04-24 07:50:00,43 Lake St, Seattle,WA,98101 +181357,AAA Batteries (4-pack),1,2.99,2019-04-26 10:43:00,62 6th St, Atlanta,GA,30301 +181358,USB-C Charging Cable,1,11.95,2019-04-29 20:12:00,249 Meadow St, Portland,ME,04101 +181359,Wired Headphones,1,11.99,2019-04-18 14:01:00,144 Adams St, Dallas,TX,75001 +181360,AA Batteries (4-pack),1,3.84,2019-04-01 17:43:00,733 South St, San Francisco,CA,94016 +181361,USB-C Charging Cable,1,11.95,2019-04-01 20:37:00,423 Elm St, New York City,NY,10001 +181362,Lightning Charging Cable,1,14.95,2019-04-20 14:23:00,142 8th St, Portland,OR,97035 +181363,ThinkPad Laptop,1,999.99,2019-04-15 08:57:00,593 North St, Boston,MA,02215 +181364,AAA Batteries (4-pack),1,2.99,2019-04-21 14:53:00,285 12th St, Dallas,TX,75001 +181365,Wired Headphones,1,11.99,2019-04-11 00:07:00,198 Park St, Boston,MA,02215 +181366,USB-C Charging Cable,1,11.95,2019-04-04 18:48:00,454 14th St, Los Angeles,CA,90001 +181367,27in 4K Gaming Monitor,1,389.99,2019-04-18 13:04:00,733 Hill St, Los Angeles,CA,90001 +181368,Bose SoundSport Headphones,1,99.99,2019-04-08 01:56:00,839 Cedar St, New York City,NY,10001 +181369,Apple Airpods Headphones,1,150.0,2019-04-30 11:56:00,186 10th St, New York City,NY,10001 +181370,iPhone,1,700.0,2019-04-19 15:43:00,785 11th St, Atlanta,GA,30301 +181370,USB-C Charging Cable,1,11.95,2019-04-19 15:43:00,785 11th St, Atlanta,GA,30301 +181371,Wired Headphones,1,11.99,2019-04-04 12:55:00,93 1st St, San Francisco,CA,94016 +181372,AAA Batteries (4-pack),2,2.99,2019-04-06 19:57:00,67 Cedar St, San Francisco,CA,94016 +181373,iPhone,1,700.0,2019-04-05 12:31:00,240 Adams St, San Francisco,CA,94016 +181374,Wired Headphones,1,11.99,2019-04-08 14:11:00,230 Washington St, Atlanta,GA,30301 +181375,AAA Batteries (4-pack),2,2.99,2019-04-02 11:44:00,622 Willow St, New York City,NY,10001 +181376,Apple Airpods Headphones,1,150.0,2019-04-11 11:43:00,468 11th St, Dallas,TX,75001 +181377,Lightning Charging Cable,1,14.95,2019-04-20 15:06:00,770 Spruce St, Seattle,WA,98101 +181378,Vareebadd Phone,1,400.0,2019-04-14 17:26:00,463 Maple St, New York City,NY,10001 +181379,Apple Airpods Headphones,1,150.0,2019-04-27 10:11:00,370 Lakeview St, Portland,OR,97035 +181380,USB-C Charging Cable,1,11.95,2019-04-24 17:13:00,601 12th St, Austin,TX,73301 +181381,Macbook Pro Laptop,1,1700.0,2019-04-15 20:19:00,332 Walnut St, Dallas,TX,75001 +181382,Wired Headphones,2,11.99,2019-04-19 12:43:00,655 Madison St, Portland,OR,97035 +181383,Wired Headphones,1,11.99,2019-04-04 23:00:00,12 Highland St, Boston,MA,02215 +181384,AA Batteries (4-pack),1,3.84,2019-04-13 00:03:00,671 Jackson St, Boston,MA,02215 +181385,34in Ultrawide Monitor,1,379.99,2019-04-18 19:31:00,118 7th St, Portland,OR,97035 +181386,USB-C Charging Cable,1,11.95,2019-04-17 21:39:00,154 Lincoln St, Seattle,WA,98101 +181387,Apple Airpods Headphones,1,150.0,2019-04-20 20:41:00,596 Pine St, Boston,MA,02215 +181388,Bose SoundSport Headphones,1,99.99,2019-04-27 11:27:00,354 Hickory St, San Francisco,CA,94016 +181389,Wired Headphones,1,11.99,2019-04-04 09:04:00,766 1st St, Los Angeles,CA,90001 +181390,USB-C Charging Cable,1,11.95,2019-04-24 23:35:00,611 West St, Atlanta,GA,30301 +181391,USB-C Charging Cable,1,11.95,2019-04-12 19:11:00,516 Johnson St, Seattle,WA,98101 +181392,Vareebadd Phone,1,400.0,2019-04-19 21:26:00,234 Spruce St, San Francisco,CA,94016 +181392,USB-C Charging Cable,1,11.95,2019-04-19 21:26:00,234 Spruce St, San Francisco,CA,94016 +181393,Wired Headphones,1,11.99,2019-04-23 18:58:00,463 Church St, Boston,MA,02215 +181394,USB-C Charging Cable,1,11.95,2019-04-30 21:18:00,714 Dogwood St, Boston,MA,02215 +181395,AAA Batteries (4-pack),1,2.99,2019-04-09 06:28:00,93 Willow St, Atlanta,GA,30301 +181396,Wired Headphones,1,11.99,2019-04-01 14:05:00,773 Hickory St, Austin,TX,73301 +181397,Apple Airpods Headphones,1,150.0,2019-04-16 14:25:00,331 Willow St, Boston,MA,02215 +181398,USB-C Charging Cable,1,11.95,2019-04-30 08:54:00,396 9th St, Los Angeles,CA,90001 +181399,AA Batteries (4-pack),2,3.84,2019-04-08 08:27:00,915 10th St, Portland,OR,97035 +181400,iPhone,1,700.0,2019-04-16 19:13:00,388 5th St, New York City,NY,10001 +181401,AAA Batteries (4-pack),1,2.99,2019-04-08 14:31:00,586 North St, Atlanta,GA,30301 +181402,AA Batteries (4-pack),2,3.84,2019-04-14 21:49:00,376 Elm St, Boston,MA,02215 +181402,AAA Batteries (4-pack),1,2.99,2019-04-14 21:49:00,376 Elm St, Boston,MA,02215 +181403,Flatscreen TV,1,300.0,2019-04-09 17:57:00,450 Ridge St, San Francisco,CA,94016 +181404,Wired Headphones,1,11.99,2019-04-30 15:45:00,8 Dogwood St, Seattle,WA,98101 +181405,27in 4K Gaming Monitor,1,389.99,2019-04-28 12:44:00,5 11th St, Austin,TX,73301 +181406,27in FHD Monitor,1,149.99,2019-04-09 14:33:00,669 Main St, Portland,OR,97035 +181407,27in FHD Monitor,1,149.99,2019-04-25 12:36:00,578 1st St, San Francisco,CA,94016 +181408,iPhone,1,700.0,2019-04-02 22:45:00,798 Highland St, San Francisco,CA,94016 +181409,Wired Headphones,1,11.99,2019-04-27 04:40:00,882 Maple St, Austin,TX,73301 +181410,USB-C Charging Cable,1,11.95,2019-04-18 12:20:00,556 10th St, Boston,MA,02215 +181411,34in Ultrawide Monitor,1,379.99,2019-04-20 13:56:00,233 7th St, New York City,NY,10001 +181412,Vareebadd Phone,1,400.0,2019-04-23 20:18:00,660 River St, Austin,TX,73301 +181412,USB-C Charging Cable,1,11.95,2019-04-23 20:18:00,660 River St, Austin,TX,73301 +181413,AAA Batteries (4-pack),1,2.99,2019-04-08 21:14:00,709 10th St, Boston,MA,02215 +181414,Bose SoundSport Headphones,1,99.99,2019-04-26 12:23:00,866 Ridge St, Los Angeles,CA,90001 +181415,AA Batteries (4-pack),1,3.84,2019-04-07 15:58:00,326 Wilson St, San Francisco,CA,94016 +181416,AA Batteries (4-pack),1,3.84,2019-04-16 08:26:00,387 Lake St, New York City,NY,10001 +181417,Bose SoundSport Headphones,1,99.99,2019-04-15 18:00:00,387 Cedar St, Los Angeles,CA,90001 +181418,Apple Airpods Headphones,1,150.0,2019-04-01 20:06:00,105 Church St, Atlanta,GA,30301 +181419,Apple Airpods Headphones,1,150.0,2019-04-04 17:31:00,524 Cherry St, Portland,OR,97035 +181419,34in Ultrawide Monitor,1,379.99,2019-04-04 17:31:00,524 Cherry St, Portland,OR,97035 +181420,USB-C Charging Cable,1,11.95,2019-04-05 18:27:00,893 Madison St, New York City,NY,10001 +181421,27in FHD Monitor,1,149.99,2019-04-27 21:36:00,92 Willow St, San Francisco,CA,94016 +181422,34in Ultrawide Monitor,1,379.99,2019-04-30 19:36:00,804 10th St, San Francisco,CA,94016 +181423,Wired Headphones,1,11.99,2019-04-01 11:42:00,231 Highland St, Los Angeles,CA,90001 +181424,AAA Batteries (4-pack),1,2.99,2019-04-27 08:55:00,303 10th St, Portland,OR,97035 +181425,Bose SoundSport Headphones,1,99.99,2019-04-14 06:05:00,451 Meadow St, New York City,NY,10001 +181426,Wired Headphones,1,11.99,2019-04-27 01:41:00,268 10th St, San Francisco,CA,94016 +181427,Google Phone,1,600.0,2019-04-27 10:12:00,624 10th St, Portland,ME,04101 +181428,ThinkPad Laptop,1,999.99,2019-04-02 04:34:00,615 Cedar St, Portland,OR,97035 +181429,Bose SoundSport Headphones,1,99.99,2019-04-07 19:49:00,579 Main St, Los Angeles,CA,90001 +181430,Apple Airpods Headphones,1,150.0,2019-04-14 12:11:00,454 2nd St, Atlanta,GA,30301 +181431,USB-C Charging Cable,1,11.95,2019-04-22 22:59:00,578 Chestnut St, New York City,NY,10001 +181432,LG Dryer,1,600.0,2019-04-25 19:27:00,804 Jackson St, Los Angeles,CA,90001 +181433,AA Batteries (4-pack),1,3.84,2019-04-04 18:52:00,119 Highland St, Los Angeles,CA,90001 +181434,USB-C Charging Cable,1,11.95,2019-04-02 06:23:00,49 14th St, New York City,NY,10001 +181435,AAA Batteries (4-pack),1,2.99,2019-04-22 18:16:00,824 North St, New York City,NY,10001 +181435,AA Batteries (4-pack),1,3.84,2019-04-22 18:16:00,824 North St, New York City,NY,10001 +181436,Wired Headphones,1,11.99,2019-04-28 13:54:00,666 Dogwood St, Seattle,WA,98101 +181437,Flatscreen TV,1,300.0,2019-04-13 15:51:00,866 Hill St, Boston,MA,02215 +181438,LG Dryer,1,600.0,2019-04-21 11:31:00,960 Center St, Portland,OR,97035 +181439,Lightning Charging Cable,1,14.95,2019-04-15 19:04:00,439 Sunset St, Dallas,TX,75001 +181440,AA Batteries (4-pack),1,3.84,2019-04-24 14:34:00,116 Willow St, San Francisco,CA,94016 +181441,34in Ultrawide Monitor,1,379.99,2019-04-30 16:12:00,197 Hill St, New York City,NY,10001 +181442,27in 4K Gaming Monitor,1,389.99,2019-04-25 21:53:00,299 Lakeview St, Atlanta,GA,30301 +181443,Apple Airpods Headphones,1,150.0,2019-04-14 13:26:00,189 Church St, Boston,MA,02215 +181444,AAA Batteries (4-pack),1,2.99,2019-04-04 10:36:00,639 Lincoln St, San Francisco,CA,94016 +181445,27in FHD Monitor,1,149.99,2019-04-20 09:56:00,880 Jefferson St, San Francisco,CA,94016 +181446,AAA Batteries (4-pack),2,2.99,2019-04-08 10:17:00,936 Main St, Los Angeles,CA,90001 +181447,Apple Airpods Headphones,1,150.0,2019-04-01 14:00:00,759 4th St, Los Angeles,CA,90001 +181448,AAA Batteries (4-pack),3,2.99,2019-04-03 14:15:00,714 North St, San Francisco,CA,94016 +181449,Lightning Charging Cable,1,14.95,2019-04-05 10:01:00,636 Hickory St, Atlanta,GA,30301 +181450,USB-C Charging Cable,1,11.95,2019-04-11 19:42:00,246 1st St, San Francisco,CA,94016 +181451,Wired Headphones,1,11.99,2019-04-04 20:13:00,869 7th St, San Francisco,CA,94016 +181452,34in Ultrawide Monitor,1,379.99,2019-04-28 11:51:00,535 Willow St, Boston,MA,02215 +181453,Macbook Pro Laptop,1,1700.0,2019-04-27 11:01:00,1 Meadow St, Atlanta,GA,30301 +181454,AA Batteries (4-pack),1,3.84,2019-04-20 08:37:00,652 Main St, Atlanta,GA,30301 +181455,Apple Airpods Headphones,1,150.0,2019-04-04 06:21:00,213 Cherry St, New York City,NY,10001 +181456,AA Batteries (4-pack),2,3.84,2019-04-02 21:56:00,64 Forest St, Portland,OR,97035 +181457,AAA Batteries (4-pack),1,2.99,2019-04-06 13:47:00,754 Willow St, Dallas,TX,75001 +181458,Wired Headphones,1,11.99,2019-04-28 12:28:00,577 Hill St, New York City,NY,10001 +181459,27in FHD Monitor,1,149.99,2019-04-05 09:39:00,147 Maple St, Boston,MA,02215 +181460,Wired Headphones,1,11.99,2019-04-01 09:26:00,892 8th St, San Francisco,CA,94016 +181461,Bose SoundSport Headphones,1,99.99,2019-04-12 15:12:00,309 Hill St, San Francisco,CA,94016 +181462,Lightning Charging Cable,1,14.95,2019-04-21 08:10:00,389 Sunset St, Boston,MA,02215 +181463,AAA Batteries (4-pack),2,2.99,2019-04-06 10:37:00,480 11th St, Seattle,WA,98101 +181464,34in Ultrawide Monitor,1,379.99,2019-04-09 10:47:00,647 Elm St, New York City,NY,10001 +181465,AA Batteries (4-pack),1,3.84,2019-04-17 21:36:00,501 Spruce St, Boston,MA,02215 +181466,Bose SoundSport Headphones,1,99.99,2019-04-14 12:22:00,5 Hill St, San Francisco,CA,94016 +181467,AA Batteries (4-pack),1,3.84,2019-04-07 11:11:00,982 Sunset St, San Francisco,CA,94016 +181468,AA Batteries (4-pack),1,3.84,2019-04-20 20:53:00,432 Madison St, Los Angeles,CA,90001 +181469,Google Phone,1,600.0,2019-04-14 10:08:00,522 Forest St, Portland,OR,97035 +181470,USB-C Charging Cable,1,11.95,2019-04-30 17:18:00,145 Center St, Portland,OR,97035 +181471,Macbook Pro Laptop,1,1700.0,2019-04-20 22:17:00,483 10th St, Los Angeles,CA,90001 +181472,AAA Batteries (4-pack),1,2.99,2019-04-14 09:40:00,750 4th St, San Francisco,CA,94016 +181473,Wired Headphones,2,11.99,2019-04-02 12:12:00,195 13th St, Dallas,TX,75001 +181474,Wired Headphones,1,11.99,2019-04-21 10:58:00,103 2nd St, Los Angeles,CA,90001 +181475,Wired Headphones,1,11.99,2019-04-14 23:23:00,375 10th St, San Francisco,CA,94016 +181476,Vareebadd Phone,1,400.0,2019-04-02 22:19:00,2 Jackson St, Dallas,TX,75001 +181476,Wired Headphones,1,11.99,2019-04-02 22:19:00,2 Jackson St, Dallas,TX,75001 +181477,Lightning Charging Cable,1,14.95,2019-04-01 21:07:00,864 Johnson St, San Francisco,CA,94016 +181478,Flatscreen TV,1,300.0,2019-04-16 20:42:00,702 12th St, Portland,OR,97035 +181479,Apple Airpods Headphones,1,150.0,2019-04-21 17:32:00,671 Johnson St, New York City,NY,10001 +181480,iPhone,1,700.0,2019-04-11 02:14:00,681 1st St, Atlanta,GA,30301 +181481,Macbook Pro Laptop,1,1700.0,2019-04-07 06:54:00,282 Cedar St, Dallas,TX,75001 +181482,Wired Headphones,1,11.99,2019-04-21 22:06:00,594 9th St, Portland,OR,97035 +181483,Lightning Charging Cable,1,14.95,2019-04-04 12:24:00,498 4th St, Boston,MA,02215 +181484,34in Ultrawide Monitor,1,379.99,2019-04-20 22:06:00,424 1st St, New York City,NY,10001 +181485,Lightning Charging Cable,2,14.95,2019-04-07 11:20:00,757 Elm St, Atlanta,GA,30301 +181486,Bose SoundSport Headphones,1,99.99,2019-04-29 13:16:00,353 Lake St, New York City,NY,10001 +181487,AA Batteries (4-pack),1,3.84,2019-04-07 10:33:00,948 8th St, Boston,MA,02215 +181488,AAA Batteries (4-pack),1,2.99,2019-04-29 07:49:00,232 5th St, Portland,ME,04101 +181489,AA Batteries (4-pack),1,3.84,2019-04-17 16:20:00,267 Washington St, Boston,MA,02215 +181490,27in FHD Monitor,1,149.99,2019-04-03 12:40:00,928 Pine St, Los Angeles,CA,90001 +181491,AA Batteries (4-pack),1,3.84,2019-04-01 12:23:00,735 7th St, Boston,MA,02215 +181492,AA Batteries (4-pack),1,3.84,2019-04-24 13:19:00,208 Elm St, San Francisco,CA,94016 +181493,Apple Airpods Headphones,1,150.0,2019-04-23 08:31:00,81 Cedar St, Los Angeles,CA,90001 +181494,Wired Headphones,1,11.99,2019-04-04 23:25:00,551 Adams St, San Francisco,CA,94016 +181495,Lightning Charging Cable,1,14.95,2019-04-03 10:03:00,33 14th St, Dallas,TX,75001 +181496,AA Batteries (4-pack),1,3.84,2019-04-05 00:40:00,324 Cedar St, Seattle,WA,98101 +181497,AA Batteries (4-pack),2,3.84,2019-04-24 10:51:00,799 Johnson St, San Francisco,CA,94016 +181498,USB-C Charging Cable,2,11.95,2019-04-24 08:09:00,378 Elm St, Austin,TX,73301 +181499,Apple Airpods Headphones,1,150.0,2019-04-16 10:43:00,512 Cedar St, San Francisco,CA,94016 +181500,Wired Headphones,1,11.99,2019-04-08 06:57:00,627 Lakeview St, Dallas,TX,75001 +181501,Lightning Charging Cable,1,14.95,2019-04-20 08:22:00,373 Main St, San Francisco,CA,94016 +181502,Wired Headphones,2,11.99,2019-04-08 07:58:00,331 Adams St, San Francisco,CA,94016 +181503,Vareebadd Phone,1,400.0,2019-04-13 01:07:00,728 Hickory St, Atlanta,GA,30301 +181504,Bose SoundSport Headphones,1,99.99,2019-04-17 08:15:00,995 Willow St, Dallas,TX,75001 +181505,Lightning Charging Cable,1,14.95,2019-04-07 16:30:00,738 Spruce St, San Francisco,CA,94016 +181506,27in FHD Monitor,1,149.99,2019-04-12 21:47:00,969 Elm St, San Francisco,CA,94016 +181507,AAA Batteries (4-pack),1,2.99,2019-04-05 06:04:00,270 9th St, San Francisco,CA,94016 +181508,Apple Airpods Headphones,1,150.0,2019-04-28 14:39:00,548 Center St, Los Angeles,CA,90001 +181509,Lightning Charging Cable,1,14.95,2019-04-08 15:26:00,929 5th St, Seattle,WA,98101 +181510,ThinkPad Laptop,1,999.99,2019-04-24 22:12:00,451 Cherry St, Atlanta,GA,30301 +181511,USB-C Charging Cable,1,11.95,2019-04-08 17:36:00,866 Lincoln St, San Francisco,CA,94016 +181512,Bose SoundSport Headphones,1,99.99,2019-04-08 10:58:00,543 Lakeview St, San Francisco,CA,94016 +181513,Apple Airpods Headphones,1,150.0,2019-04-13 10:59:00,568 Meadow St, Portland,OR,97035 +181514,27in 4K Gaming Monitor,1,389.99,2019-04-28 16:18:00,196 Maple St, San Francisco,CA,94016 +181515,Google Phone,1,600.0,2019-04-01 13:03:00,832 7th St, New York City,NY,10001 +181515,Wired Headphones,1,11.99,2019-04-01 13:03:00,832 7th St, New York City,NY,10001 +181516,Bose SoundSport Headphones,1,99.99,2019-04-06 21:16:00,284 Wilson St, Seattle,WA,98101 +181517,iPhone,1,700.0,2019-04-04 15:00:00,147 Madison St, San Francisco,CA,94016 +181518,Google Phone,1,600.0,2019-04-02 11:38:00,298 Lakeview St, Los Angeles,CA,90001 +181519,USB-C Charging Cable,1,11.95,2019-04-22 09:42:00,729 Cedar St, San Francisco,CA,94016 +181520,AA Batteries (4-pack),1,3.84,2019-04-16 14:10:00,649 Walnut St, Atlanta,GA,30301 +181521,Bose SoundSport Headphones,1,99.99,2019-04-09 18:16:00,782 Cherry St, San Francisco,CA,94016 +181522,AAA Batteries (4-pack),1,2.99,2019-04-08 13:07:00,866 Madison St, Seattle,WA,98101 +181523,Apple Airpods Headphones,1,150.0,2019-04-04 20:13:00,95 9th St, San Francisco,CA,94016 +181524,Flatscreen TV,1,300.0,2019-04-07 16:10:00,953 Park St, Seattle,WA,98101 +181525,Flatscreen TV,1,300.0,2019-04-15 02:38:00,895 14th St, San Francisco,CA,94016 +181526,LG Dryer,1,600.0,2019-04-17 00:23:00,874 Hill St, San Francisco,CA,94016 +181527,Flatscreen TV,1,300.0,2019-04-23 20:06:00,271 Main St, New York City,NY,10001 +181528,AAA Batteries (4-pack),1,2.99,2019-04-02 16:22:00,436 Walnut St, Los Angeles,CA,90001 +181529,27in FHD Monitor,1,149.99,2019-04-26 21:28:00,578 Hickory St, Boston,MA,02215 +181530,LG Dryer,1,600.0,2019-04-14 09:14:00,110 10th St, New York City,NY,10001 +181531,Lightning Charging Cable,1,14.95,2019-04-17 23:31:00,867 South St, Los Angeles,CA,90001 +181532,27in FHD Monitor,1,149.99,2019-04-27 17:54:00,928 South St, Dallas,TX,75001 +181533,Lightning Charging Cable,1,14.95,2019-04-14 12:15:00,470 Pine St, New York City,NY,10001 +181534,AAA Batteries (4-pack),1,2.99,2019-04-02 16:23:00,409 South St, Atlanta,GA,30301 +181535,Macbook Pro Laptop,1,1700.0,2019-04-14 02:33:00,283 Maple St, Los Angeles,CA,90001 +181536,USB-C Charging Cable,1,11.95,2019-04-06 21:50:00,66 Walnut St, San Francisco,CA,94016 +181537,Wired Headphones,1,11.99,2019-04-18 11:53:00,456 River St, Austin,TX,73301 +181538,27in 4K Gaming Monitor,1,389.99,2019-04-21 20:03:00,676 Jackson St, Los Angeles,CA,90001 +181539,AAA Batteries (4-pack),1,2.99,2019-04-26 23:39:00,497 Center St, New York City,NY,10001 +181540,AA Batteries (4-pack),1,3.84,2019-04-22 17:38:00,651 11th St, San Francisco,CA,94016 +181541,ThinkPad Laptop,1,999.99,2019-04-09 16:59:00,721 Madison St, Los Angeles,CA,90001 +181542,USB-C Charging Cable,1,11.95,2019-04-01 22:30:00,990 Lincoln St, Dallas,TX,75001 +181543,Bose SoundSport Headphones,1,99.99,2019-04-16 23:17:00,132 Sunset St, Dallas,TX,75001 +181544,Macbook Pro Laptop,2,1700.0,2019-04-22 12:48:00,731 11th St, New York City,NY,10001 +181545,27in 4K Gaming Monitor,1,389.99,2019-04-22 21:03:00,407 Willow St, Los Angeles,CA,90001 +181546,AA Batteries (4-pack),1,3.84,2019-04-20 16:06:00,191 North St, New York City,NY,10001 +181547,Lightning Charging Cable,1,14.95,2019-04-22 15:35:00,460 Lake St, Los Angeles,CA,90001 +181548,AA Batteries (4-pack),1,3.84,2019-04-20 11:46:00,551 14th St, Atlanta,GA,30301 +181549,34in Ultrawide Monitor,1,379.99,2019-04-26 22:45:00,297 Hickory St, Los Angeles,CA,90001 +181550,AA Batteries (4-pack),1,3.84,2019-04-13 11:24:00,731 Park St, Boston,MA,02215 +181551,27in FHD Monitor,1,149.99,2019-04-06 16:01:00,226 Jackson St, New York City,NY,10001 +181552,Macbook Pro Laptop,1,1700.0,2019-04-01 07:06:00,740 1st St, Atlanta,GA,30301 +181553,AA Batteries (4-pack),2,3.84,2019-04-22 15:19:00,172 Ridge St, Boston,MA,02215 +181554,Lightning Charging Cable,1,14.95,2019-04-14 13:00:00,458 Jefferson St, San Francisco,CA,94016 +181555,USB-C Charging Cable,1,11.95,2019-04-07 08:22:00,677 River St, Portland,ME,04101 +181556,AA Batteries (4-pack),1,3.84,2019-04-09 21:46:00,886 Jefferson St, Atlanta,GA,30301 +181557,Google Phone,1,600.0,2019-04-26 19:51:00,427 West St, San Francisco,CA,94016 +181557,USB-C Charging Cable,1,11.95,2019-04-26 19:51:00,427 West St, San Francisco,CA,94016 +181558,Apple Airpods Headphones,1,150.0,2019-04-07 23:55:00,755 Elm St, Austin,TX,73301 +181559,AAA Batteries (4-pack),2,2.99,2019-04-24 21:46:00,906 Willow St, San Francisco,CA,94016 +181560,ThinkPad Laptop,1,999.99,2019-04-12 20:40:00,897 10th St, Los Angeles,CA,90001 +181561,AA Batteries (4-pack),1,3.84,2019-04-01 06:42:00,387 Main St, Dallas,TX,75001 +181562,Bose SoundSport Headphones,1,99.99,2019-04-24 17:44:00,519 Elm St, Atlanta,GA,30301 +181563,Macbook Pro Laptop,1,1700.0,2019-04-04 14:42:00,218 Park St, New York City,NY,10001 +181564,AA Batteries (4-pack),1,3.84,2019-04-04 12:20:00,755 Wilson St, New York City,NY,10001 +181565,AAA Batteries (4-pack),2,2.99,2019-04-21 08:45:00,683 11th St, San Francisco,CA,94016 +181566,Bose SoundSport Headphones,1,99.99,2019-04-20 19:35:00,16 7th St, San Francisco,CA,94016 +181567,20in Monitor,1,109.99,2019-04-06 10:19:00,997 Cherry St, Portland,OR,97035 +181568,Wired Headphones,1,11.99,2019-04-17 13:34:00,20 Lake St, Dallas,TX,75001 +181569,Lightning Charging Cable,1,14.95,2019-04-17 00:26:00,416 Lincoln St, Los Angeles,CA,90001 +181570,AAA Batteries (4-pack),1,2.99,2019-04-10 14:26:00,179 Cherry St, San Francisco,CA,94016 +181571,27in FHD Monitor,1,149.99,2019-04-13 07:50:00,889 North St, Boston,MA,02215 +181572,Bose SoundSport Headphones,1,99.99,2019-04-06 16:51:00,548 13th St, New York City,NY,10001 +181573,AA Batteries (4-pack),1,3.84,2019-04-10 17:50:00,849 Pine St, Portland,OR,97035 +181574,AAA Batteries (4-pack),2,2.99,2019-04-17 21:03:00,961 Washington St, San Francisco,CA,94016 +181575,34in Ultrawide Monitor,1,379.99,2019-04-26 23:39:00,915 Adams St, San Francisco,CA,94016 +181576,Apple Airpods Headphones,1,150.0,2019-04-13 12:18:00,768 Park St, New York City,NY,10001 +181577,Lightning Charging Cable,1,14.95,2019-04-21 19:26:00,494 Jefferson St, Atlanta,GA,30301 +181578,Wired Headphones,1,11.99,2019-04-07 11:55:00,818 Ridge St, Los Angeles,CA,90001 +181579,Apple Airpods Headphones,1,150.0,2019-04-05 19:49:00,933 Wilson St, Los Angeles,CA,90001 +181580,27in 4K Gaming Monitor,1,389.99,2019-04-13 07:42:00,855 Lake St, Los Angeles,CA,90001 +181581,Macbook Pro Laptop,1,1700.0,2019-04-10 20:50:00,768 Forest St, Boston,MA,02215 +181582,AA Batteries (4-pack),1,3.84,2019-04-10 19:10:00,977 Lake St, New York City,NY,10001 +181583,27in 4K Gaming Monitor,1,389.99,2019-04-18 15:36:00,236 Main St, San Francisco,CA,94016 +181584,Wired Headphones,1,11.99,2019-04-07 20:07:00,901 8th St, New York City,NY,10001 +181585,AA Batteries (4-pack),1,3.84,2019-04-14 01:17:00,940 West St, Dallas,TX,75001 +181586,Bose SoundSport Headphones,1,99.99,2019-04-02 20:07:00,761 Lincoln St, Seattle,WA,98101 +181587,27in FHD Monitor,1,149.99,2019-04-26 14:13:00,412 Lake St, New York City,NY,10001 +181588,Lightning Charging Cable,1,14.95,2019-04-15 11:26:00,615 Cherry St, Boston,MA,02215 +181589,iPhone,1,700.0,2019-04-25 16:23:00,554 9th St, Los Angeles,CA,90001 +181590,iPhone,1,700.0,2019-04-21 18:58:00,608 River St, Los Angeles,CA,90001 +181591,Google Phone,1,600.0,2019-04-17 09:28:00,539 Walnut St, Los Angeles,CA,90001 +181592,AA Batteries (4-pack),2,3.84,2019-04-25 11:10:00,417 Wilson St, San Francisco,CA,94016 +181593,Lightning Charging Cable,1,14.95,2019-04-07 15:37:00,554 Wilson St, Portland,OR,97035 +181594,Wired Headphones,1,11.99,2019-04-11 11:45:00,570 Maple St, San Francisco,CA,94016 +181595,Apple Airpods Headphones,1,150.0,2019-04-04 21:08:00,644 8th St, San Francisco,CA,94016 +181596,Apple Airpods Headphones,1,150.0,2019-04-05 11:28:00,928 Main St, Los Angeles,CA,90001 +181597,Wired Headphones,1,11.99,2019-04-04 11:22:00,748 Cedar St, Los Angeles,CA,90001 +181598,AA Batteries (4-pack),1,3.84,2019-04-22 13:53:00,315 Church St, Los Angeles,CA,90001 +181599,USB-C Charging Cable,2,11.95,2019-04-02 10:59:00,257 Cedar St, Los Angeles,CA,90001 +181600,AA Batteries (4-pack),1,3.84,2019-04-02 15:46:00,183 Chestnut St, Dallas,TX,75001 +181601,Wired Headphones,1,11.99,2019-04-24 21:30:00,431 Jackson St, Dallas,TX,75001 +181602,Google Phone,1,600.0,2019-04-22 22:19:00,518 Hill St, Seattle,WA,98101 +181603,Wired Headphones,1,11.99,2019-04-24 15:58:00,10 9th St, Seattle,WA,98101 +181604,34in Ultrawide Monitor,1,379.99,2019-04-11 18:21:00,9 Johnson St, San Francisco,CA,94016 +181605,USB-C Charging Cable,1,11.95,2019-04-09 10:10:00,734 Lincoln St, Atlanta,GA,30301 +181606,34in Ultrawide Monitor,1,379.99,2019-04-29 14:58:00,439 Lakeview St, Portland,OR,97035 +181607,iPhone,1,700.0,2019-04-24 20:28:00,665 12th St, San Francisco,CA,94016 +181608,27in FHD Monitor,1,149.99,2019-04-06 14:52:00,684 Spruce St, San Francisco,CA,94016 +181609,Wired Headphones,1,11.99,2019-04-18 10:19:00,786 6th St, Los Angeles,CA,90001 +181610,USB-C Charging Cable,1,11.95,2019-04-11 08:02:00,522 4th St, Boston,MA,02215 +181611,Google Phone,1,600.0,2019-04-17 06:42:00,240 Lakeview St, Portland,OR,97035 +181612,Lightning Charging Cable,2,14.95,2019-04-07 23:58:00,445 Washington St, Boston,MA,02215 +181613,USB-C Charging Cable,1,11.95,2019-04-19 19:15:00,715 14th St, New York City,NY,10001 +181614,Vareebadd Phone,1,400.0,2019-04-19 11:41:00,629 13th St, Los Angeles,CA,90001 +181615,AAA Batteries (4-pack),1,2.99,2019-04-16 18:10:00,548 10th St, Boston,MA,02215 +181616,Lightning Charging Cable,1,14.95,2019-04-08 23:56:00,215 Dogwood St, Atlanta,GA,30301 +181617,Apple Airpods Headphones,1,150.0,2019-04-08 11:40:00,845 4th St, San Francisco,CA,94016 +181618,ThinkPad Laptop,1,999.99,2019-04-30 22:06:00,566 Cherry St, San Francisco,CA,94016 +181619,Wired Headphones,1,11.99,2019-04-22 07:37:00,936 Center St, San Francisco,CA,94016 +181620,27in FHD Monitor,1,149.99,2019-04-14 03:09:00,405 Hickory St, Austin,TX,73301 +181621,Wired Headphones,1,11.99,2019-04-24 08:56:00,968 2nd St, Dallas,TX,75001 +181622,AA Batteries (4-pack),1,3.84,2019-04-16 13:06:00,56 Lincoln St, Austin,TX,73301 +181623,AAA Batteries (4-pack),1,2.99,2019-04-23 19:00:00,748 14th St, Portland,ME,04101 +181624,AA Batteries (4-pack),2,3.84,2019-04-08 10:08:00,361 Jefferson St, San Francisco,CA,94016 +181625,Lightning Charging Cable,1,14.95,2019-04-17 08:19:00,462 5th St, San Francisco,CA,94016 +181626,Bose SoundSport Headphones,1,99.99,2019-04-06 02:31:00,305 Lake St, New York City,NY,10001 +181627,Apple Airpods Headphones,1,150.0,2019-04-15 16:24:00,790 Lakeview St, Atlanta,GA,30301 +181628,AAA Batteries (4-pack),1,2.99,2019-04-25 13:16:00,177 Johnson St, Boston,MA,02215 +181629,27in FHD Monitor,1,149.99,2019-04-11 08:25:00,755 Walnut St, Atlanta,GA,30301 +181630,Wired Headphones,1,11.99,2019-04-11 21:27:00,964 Church St, San Francisco,CA,94016 +181631,AAA Batteries (4-pack),1,2.99,2019-04-07 01:26:00,319 Meadow St, New York City,NY,10001 +181632,Apple Airpods Headphones,1,150.0,2019-04-25 20:02:00,569 11th St, San Francisco,CA,94016 +181633,AA Batteries (4-pack),1,3.84,2019-04-20 20:28:00,921 Johnson St, Seattle,WA,98101 +181634,27in 4K Gaming Monitor,1,389.99,2019-04-10 14:06:00,919 Elm St, San Francisco,CA,94016 +181635,Bose SoundSport Headphones,1,99.99,2019-04-18 13:44:00,245 Walnut St, San Francisco,CA,94016 +181636,Wired Headphones,1,11.99,2019-04-16 18:38:00,491 West St, San Francisco,CA,94016 +181637,AAA Batteries (4-pack),3,2.99,2019-04-15 19:05:00,482 Dogwood St, Atlanta,GA,30301 +181638,Apple Airpods Headphones,1,150.0,2019-04-21 18:38:00,181 Cedar St, Los Angeles,CA,90001 +181639,Macbook Pro Laptop,1,1700.0,2019-04-07 20:44:00,78 Dogwood St, Boston,MA,02215 +181640,USB-C Charging Cable,1,11.95,2019-04-15 01:46:00,629 Pine St, Los Angeles,CA,90001 +181641,Macbook Pro Laptop,1,1700.0,2019-04-08 12:42:00,352 West St, San Francisco,CA,94016 +181642,AA Batteries (4-pack),4,3.84,2019-04-01 16:02:00,695 12th St, San Francisco,CA,94016 +181643,Bose SoundSport Headphones,1,99.99,2019-04-13 13:56:00,921 Forest St, Atlanta,GA,30301 +181644,Apple Airpods Headphones,1,150.0,2019-04-26 18:51:00,532 1st St, San Francisco,CA,94016 +181645,Apple Airpods Headphones,1,150.0,2019-05-01 02:37:00,514 2nd St, Los Angeles,CA,90001 +181646,Google Phone,1,600.0,2019-04-19 16:49:00,863 Main St, Dallas,TX,75001 +181647,iPhone,1,700.0,2019-04-09 22:31:00,524 8th St, New York City,NY,10001 +181648,20in Monitor,1,109.99,2019-04-29 20:01:00,583 9th St, San Francisco,CA,94016 +181649,Flatscreen TV,1,300.0,2019-04-28 14:33:00,897 Wilson St, Los Angeles,CA,90001 +181650,AA Batteries (4-pack),1,3.84,2019-04-25 11:34:00,399 Hill St, Los Angeles,CA,90001 +181651,AA Batteries (4-pack),2,3.84,2019-04-05 14:14:00,995 Johnson St, Los Angeles,CA,90001 +181652,iPhone,1,700.0,2019-04-18 11:14:00,427 9th St, San Francisco,CA,94016 +181653,AAA Batteries (4-pack),2,2.99,2019-04-21 12:23:00,2 Sunset St, Portland,OR,97035 +181654,Wired Headphones,1,11.99,2019-04-21 18:47:00,723 14th St, San Francisco,CA,94016 +181655,USB-C Charging Cable,1,11.95,2019-04-11 11:18:00,430 Jefferson St, New York City,NY,10001 +181656,Apple Airpods Headphones,1,150.0,2019-04-09 09:55:00,557 Chestnut St, New York City,NY,10001 +181657,AA Batteries (4-pack),1,3.84,2019-04-26 19:03:00,596 Hickory St, Seattle,WA,98101 +181658,Apple Airpods Headphones,1,150.0,2019-04-15 23:01:00,564 South St, Dallas,TX,75001 +181659,ThinkPad Laptop,1,999.99,2019-04-03 21:39:00,325 Jefferson St, San Francisco,CA,94016 +181660,AAA Batteries (4-pack),1,2.99,2019-04-14 20:36:00,526 Main St, Boston,MA,02215 +181660,Bose SoundSport Headphones,1,99.99,2019-04-14 20:36:00,526 Main St, Boston,MA,02215 +181661,Bose SoundSport Headphones,1,99.99,2019-04-05 16:17:00,904 Ridge St, Boston,MA,02215 +181662,ThinkPad Laptop,1,999.99,2019-04-07 21:53:00,795 5th St, Los Angeles,CA,90001 +181663,iPhone,1,700.0,2019-04-04 11:09:00,828 North St, New York City,NY,10001 +181664,iPhone,1,700.0,2019-04-29 17:23:00,926 Maple St, Austin,TX,73301 +181665,ThinkPad Laptop,1,999.99,2019-04-02 17:49:00,101 Jefferson St, Los Angeles,CA,90001 +181666,AA Batteries (4-pack),1,3.84,2019-04-01 12:05:00,349 Jackson St, Seattle,WA,98101 +181667,USB-C Charging Cable,1,11.95,2019-04-21 17:34:00,763 Lakeview St, Dallas,TX,75001 +181668,27in FHD Monitor,1,149.99,2019-04-13 22:25:00,397 Forest St, Portland,OR,97035 +181669,LG Dryer,1,600.0,2019-04-04 19:44:00,41 11th St, Atlanta,GA,30301 +181670,Lightning Charging Cable,1,14.95,2019-04-14 14:43:00,189 1st St, Seattle,WA,98101 +181671,Apple Airpods Headphones,1,150.0,2019-04-05 15:40:00,743 Willow St, Los Angeles,CA,90001 +181672,AAA Batteries (4-pack),2,2.99,2019-04-27 21:17:00,647 Spruce St, Austin,TX,73301 +181673,ThinkPad Laptop,1,999.99,2019-04-17 18:31:00,78 Dogwood St, New York City,NY,10001 +181674,Lightning Charging Cable,1,14.95,2019-04-04 13:21:00,758 5th St, Los Angeles,CA,90001 +181675,27in FHD Monitor,1,149.99,2019-04-25 11:13:00,120 Pine St, New York City,NY,10001 +181676,Wired Headphones,1,11.99,2019-04-04 20:13:00,36 12th St, San Francisco,CA,94016 +181677,Wired Headphones,2,11.99,2019-04-12 17:51:00,833 Lincoln St, New York City,NY,10001 +181678,AAA Batteries (4-pack),1,2.99,2019-04-28 02:53:00,31 South St, Los Angeles,CA,90001 +181679,Apple Airpods Headphones,1,150.0,2019-04-17 11:28:00,495 9th St, New York City,NY,10001 +181680,AA Batteries (4-pack),1,3.84,2019-04-24 09:47:00,123 West St, Dallas,TX,75001 +181681,Apple Airpods Headphones,1,150.0,2019-04-23 18:05:00,635 Highland St, Los Angeles,CA,90001 +181682,Wired Headphones,1,11.99,2019-04-16 10:15:00,550 Park St, Los Angeles,CA,90001 +181683,Google Phone,1,600.0,2019-04-26 13:43:00,493 Jackson St, Boston,MA,02215 +181684,AAA Batteries (4-pack),1,2.99,2019-04-14 11:41:00,134 8th St, San Francisco,CA,94016 +181685,Lightning Charging Cable,1,14.95,2019-04-21 22:01:00,798 Madison St, Austin,TX,73301 +181686,Apple Airpods Headphones,1,150.0,2019-04-28 10:41:00,123 Walnut St, New York City,NY,10001 +181687,iPhone,1,700.0,2019-04-02 22:36:00,761 Elm St, Seattle,WA,98101 +181688,ThinkPad Laptop,1,999.99,2019-05-01 02:07:00,123 4th St, San Francisco,CA,94016 +181689,Wired Headphones,1,11.99,2019-04-02 11:23:00,5 Madison St, Dallas,TX,75001 +181690,Lightning Charging Cable,1,14.95,2019-04-23 08:22:00,990 2nd St, San Francisco,CA,94016 +181691,iPhone,1,700.0,2019-04-09 10:54:00,179 Highland St, San Francisco,CA,94016 +181692,USB-C Charging Cable,1,11.95,2019-04-03 15:28:00,398 North St, Portland,OR,97035 +181693,USB-C Charging Cable,1,11.95,2019-04-18 18:42:00,743 9th St, Seattle,WA,98101 +181694,34in Ultrawide Monitor,1,379.99,2019-04-27 12:19:00,205 10th St, Austin,TX,73301 +181695,USB-C Charging Cable,1,11.95,2019-04-14 11:01:00,306 Sunset St, Atlanta,GA,30301 +181696,AAA Batteries (4-pack),2,2.99,2019-04-02 14:44:00,728 7th St, Dallas,TX,75001 +181697,Google Phone,1,600.0,2019-04-08 16:06:00,834 Cherry St, San Francisco,CA,94016 +181697,USB-C Charging Cable,1,11.95,2019-04-08 16:06:00,834 Cherry St, San Francisco,CA,94016 +181698,Lightning Charging Cable,1,14.95,2019-04-09 02:02:00,412 Lakeview St, San Francisco,CA,94016 +181699,Wired Headphones,1,11.99,2019-04-26 18:10:00,397 Washington St, San Francisco,CA,94016 +181700,20in Monitor,1,109.99,2019-04-04 14:14:00,88 Main St, Austin,TX,73301 +181701,AAA Batteries (4-pack),1,2.99,2019-04-05 10:40:00,657 Chestnut St, Boston,MA,02215 +181702,Lightning Charging Cable,3,14.95,2019-04-26 19:40:00,984 South St, San Francisco,CA,94016 +181703,Wired Headphones,1,11.99,2019-04-16 18:11:00,171 Dogwood St, New York City,NY,10001 +181704,AA Batteries (4-pack),2,3.84,2019-04-29 12:29:00,367 Adams St, New York City,NY,10001 +181705,20in Monitor,1,109.99,2019-04-06 11:48:00,12 Forest St, Los Angeles,CA,90001 +181706,20in Monitor,1,109.99,2019-04-07 15:46:00,84 7th St, San Francisco,CA,94016 +181707,Lightning Charging Cable,2,14.95,2019-04-26 11:32:00,401 10th St, Seattle,WA,98101 +181708,Lightning Charging Cable,2,14.95,2019-04-28 10:15:00,504 2nd St, San Francisco,CA,94016 +181709,AAA Batteries (4-pack),3,2.99,2019-04-04 18:02:00,18 14th St, Portland,OR,97035 +181710,AA Batteries (4-pack),1,3.84,2019-04-03 21:37:00,589 Cedar St, Los Angeles,CA,90001 +181711,34in Ultrawide Monitor,1,379.99,2019-04-28 08:55:00,208 Washington St, San Francisco,CA,94016 +181712,Lightning Charging Cable,1,14.95,2019-04-30 08:31:00,800 Sunset St, Dallas,TX,75001 +181713,Vareebadd Phone,1,400.0,2019-04-07 21:56:00,920 13th St, San Francisco,CA,94016 +181714,USB-C Charging Cable,1,11.95,2019-04-30 12:18:00,385 South St, Dallas,TX,75001 +181715,27in FHD Monitor,1,149.99,2019-04-15 16:13:00,195 Wilson St, Boston,MA,02215 +181716,AA Batteries (4-pack),1,3.84,2019-04-27 08:21:00,108 Washington St, Seattle,WA,98101 +181717,Flatscreen TV,1,300.0,2019-04-29 13:04:00,175 Lake St, Los Angeles,CA,90001 +181718,AA Batteries (4-pack),1,3.84,2019-04-01 10:42:00,869 Jefferson St, San Francisco,CA,94016 +181719,Lightning Charging Cable,1,14.95,2019-04-08 10:43:00,671 11th St, Boston,MA,02215 +181720,Wired Headphones,1,11.99,2019-04-25 21:56:00,601 Washington St, New York City,NY,10001 +181721,27in 4K Gaming Monitor,1,389.99,2019-04-19 13:04:00,631 South St, New York City,NY,10001 +181722,USB-C Charging Cable,1,11.95,2019-04-10 16:57:00,201 11th St, Atlanta,GA,30301 +181723,Lightning Charging Cable,1,14.95,2019-04-26 17:47:00,776 Maple St, New York City,NY,10001 +181724,iPhone,1,700.0,2019-04-12 17:52:00,691 13th St, Dallas,TX,75001 +181725,iPhone,1,700.0,2019-04-05 11:27:00,292 Dogwood St, Los Angeles,CA,90001 +181726,Apple Airpods Headphones,1,150.0,2019-04-17 14:16:00,133 Chestnut St, Dallas,TX,75001 +181727,AAA Batteries (4-pack),1,2.99,2019-04-03 05:48:00,894 Cedar St, Los Angeles,CA,90001 +181728,Apple Airpods Headphones,1,150.0,2019-04-21 20:41:00,926 North St, Portland,OR,97035 +181729,Apple Airpods Headphones,1,150.0,2019-04-05 21:34:00,940 Maple St, Seattle,WA,98101 +181730,Wired Headphones,1,11.99,2019-04-03 09:47:00,111 7th St, Seattle,WA,98101 +181731,ThinkPad Laptop,1,999.99,2019-04-01 13:22:00,222 North St, New York City,NY,10001 +181732,Lightning Charging Cable,1,14.95,2019-04-14 19:11:00,471 4th St, Dallas,TX,75001 +181733,Lightning Charging Cable,1,14.95,2019-04-27 19:47:00,186 Main St, San Francisco,CA,94016 +181734,Wired Headphones,1,11.99,2019-04-01 09:56:00,822 Willow St, San Francisco,CA,94016 +181735,iPhone,1,700.0,2019-04-03 11:18:00,637 4th St, Dallas,TX,75001 +181736,iPhone,1,700.0,2019-04-29 20:19:00,119 Chestnut St, Portland,ME,04101 +181737,Lightning Charging Cable,1,14.95,2019-04-11 13:17:00,615 2nd St, Los Angeles,CA,90001 +181738,Bose SoundSport Headphones,1,99.99,2019-04-09 18:17:00,398 5th St, Dallas,TX,75001 +181739,USB-C Charging Cable,1,11.95,2019-04-26 20:09:00,443 Elm St, Portland,ME,04101 +181740,ThinkPad Laptop,1,999.99,2019-04-10 11:47:00,570 7th St, San Francisco,CA,94016 +181741,27in FHD Monitor,1,149.99,2019-04-06 20:39:00,792 West St, San Francisco,CA,94016 +181742,AA Batteries (4-pack),1,3.84,2019-04-09 12:45:00,955 Main St, Austin,TX,73301 +181743,AAA Batteries (4-pack),1,2.99,2019-04-26 23:04:00,411 Church St, New York City,NY,10001 +181744,AA Batteries (4-pack),1,3.84,2019-04-28 19:11:00,613 7th St, Los Angeles,CA,90001 +181745,Apple Airpods Headphones,1,150.0,2019-04-14 13:32:00,901 North St, Dallas,TX,75001 +181746,Wired Headphones,1,11.99,2019-04-14 06:38:00,644 6th St, New York City,NY,10001 +181747,LG Dryer,1,600.0,2019-04-19 17:01:00,874 Forest St, Dallas,TX,75001 +181748,Wired Headphones,1,11.99,2019-04-11 09:29:00,241 Spruce St, Seattle,WA,98101 +181749,Vareebadd Phone,1,400.0,2019-04-29 22:54:00,882 12th St, Dallas,TX,75001 +181750,USB-C Charging Cable,1,11.95,2019-04-08 02:53:00,363 Pine St, Boston,MA,02215 +181751,Flatscreen TV,1,300.0,2019-04-27 20:49:00,709 Sunset St, Atlanta,GA,30301 +181752,Flatscreen TV,1,300.0,2019-04-06 22:18:00,631 Church St, Los Angeles,CA,90001 +181753,AA Batteries (4-pack),2,3.84,2019-04-16 22:56:00,202 South St, Austin,TX,73301 +181754,Google Phone,1,600.0,2019-04-30 12:05:00,479 Madison St, Boston,MA,02215 +181755,AA Batteries (4-pack),1,3.84,2019-04-06 07:33:00,887 14th St, San Francisco,CA,94016 +181756,AAA Batteries (4-pack),1,2.99,2019-04-18 22:13:00,663 Spruce St, Dallas,TX,75001 +181757,Wired Headphones,1,11.99,2019-04-19 12:35:00,24 Dogwood St, New York City,NY,10001 +181758,Lightning Charging Cable,1,14.95,2019-04-16 10:39:00,68 13th St, Los Angeles,CA,90001 +181759,USB-C Charging Cable,1,11.95,2019-04-29 17:48:00,641 Wilson St, San Francisco,CA,94016 +181760,Bose SoundSport Headphones,1,99.99,2019-04-21 13:27:00,558 Hickory St, Los Angeles,CA,90001 +181761,USB-C Charging Cable,2,11.95,2019-04-01 11:58:00,434 8th St, Los Angeles,CA,90001 +181762,Vareebadd Phone,1,400.0,2019-04-15 17:24:00,290 Cherry St, Austin,TX,73301 +181763,27in FHD Monitor,1,149.99,2019-04-21 16:53:00,558 Main St, New York City,NY,10001 +181764,27in FHD Monitor,1,149.99,2019-04-11 18:01:00,912 South St, San Francisco,CA,94016 +181765,Lightning Charging Cable,1,14.95,2019-04-08 16:53:00,530 West St, Dallas,TX,75001 +181766,Apple Airpods Headphones,1,150.0,2019-04-15 13:51:00,445 Jackson St, Seattle,WA,98101 +181767,Lightning Charging Cable,1,14.95,2019-04-05 17:21:00,961 Jefferson St, Dallas,TX,75001 +181768,Macbook Pro Laptop,1,1700.0,2019-04-15 22:16:00,450 Ridge St, San Francisco,CA,94016 +181769,USB-C Charging Cable,1,11.95,2019-04-05 16:53:00,628 Lakeview St, Austin,TX,73301 +181770,34in Ultrawide Monitor,1,379.99,2019-04-24 17:37:00,612 Dogwood St, San Francisco,CA,94016 +181771,USB-C Charging Cable,1,11.95,2019-04-15 23:12:00,178 Jefferson St, Atlanta,GA,30301 +181772,AAA Batteries (4-pack),2,2.99,2019-04-19 15:47:00,874 South St, Portland,ME,04101 +181773,Apple Airpods Headphones,1,150.0,2019-04-26 20:48:00,919 1st St, Atlanta,GA,30301 +181774,Wired Headphones,1,11.99,2019-04-29 08:03:00,926 West St, San Francisco,CA,94016 +181775,AA Batteries (4-pack),1,3.84,2019-04-30 11:02:00,679 Church St, New York City,NY,10001 +181776,AAA Batteries (4-pack),2,2.99,2019-04-30 13:56:00,891 North St, San Francisco,CA,94016 +181777,Bose SoundSport Headphones,1,99.99,2019-04-12 19:35:00,255 Cherry St, Atlanta,GA,30301 +181778,Bose SoundSport Headphones,1,99.99,2019-04-09 19:29:00,465 Johnson St, New York City,NY,10001 +181779,Lightning Charging Cable,1,14.95,2019-04-15 11:30:00,31 Wilson St, Dallas,TX,75001 +181780,Apple Airpods Headphones,1,150.0,2019-04-21 16:58:00,728 Spruce St, San Francisco,CA,94016 +181781,Lightning Charging Cable,1,14.95,2019-04-08 19:38:00,399 Washington St, Portland,OR,97035 +181782,AAA Batteries (4-pack),1,2.99,2019-04-25 19:50:00,35 4th St, San Francisco,CA,94016 +181783,Bose SoundSport Headphones,1,99.99,2019-04-19 19:27:00,832 Elm St, San Francisco,CA,94016 +181784,USB-C Charging Cable,1,11.95,2019-04-09 13:20:00,358 11th St, San Francisco,CA,94016 +181785,27in 4K Gaming Monitor,1,389.99,2019-04-27 17:05:00,990 Forest St, San Francisco,CA,94016 +181786,USB-C Charging Cable,2,11.95,2019-04-03 11:08:00,837 Jackson St, San Francisco,CA,94016 +181787,AA Batteries (4-pack),1,3.84,2019-04-05 23:47:00,708 Lincoln St, Seattle,WA,98101 +181788,27in 4K Gaming Monitor,1,389.99,2019-04-06 17:10:00,887 Pine St, New York City,NY,10001 +181789,ThinkPad Laptop,1,999.99,2019-04-29 23:51:00,218 Wilson St, Dallas,TX,75001 +181790,AA Batteries (4-pack),1,3.84,2019-04-03 23:04:00,7 12th St, Portland,OR,97035 +181791,AA Batteries (4-pack),1,3.84,2019-04-16 11:38:00,522 Cedar St, New York City,NY,10001 +181792,Wired Headphones,1,11.99,2019-04-16 17:47:00,752 Pine St, New York City,NY,10001 +181793,Apple Airpods Headphones,1,150.0,2019-04-06 21:43:00,272 Lakeview St, San Francisco,CA,94016 +181794,27in 4K Gaming Monitor,1,389.99,2019-04-14 19:47:00,892 9th St, San Francisco,CA,94016 +181795,USB-C Charging Cable,1,11.95,2019-04-02 19:00:00,727 Cherry St, Los Angeles,CA,90001 +181796,20in Monitor,1,109.99,2019-04-24 20:19:00,346 Pine St, New York City,NY,10001 +181797,27in FHD Monitor,1,149.99,2019-04-09 17:01:00,147 Cedar St, Austin,TX,73301 +181798,AA Batteries (4-pack),1,3.84,2019-04-12 18:33:00,642 Hill St, Atlanta,GA,30301 +181799,Lightning Charging Cable,1,14.95,2019-04-02 08:12:00,602 Cedar St, Boston,MA,02215 +181800,Bose SoundSport Headphones,1,99.99,2019-04-02 13:58:00,950 Center St, Los Angeles,CA,90001 +181801,AA Batteries (4-pack),1,3.84,2019-04-12 18:50:00,60 Forest St, New York City,NY,10001 +181802,AA Batteries (4-pack),2,3.84,2019-04-27 19:52:00,861 Hill St, Atlanta,GA,30301 +181803,Bose SoundSport Headphones,1,99.99,2019-04-04 22:54:00,100 Hill St, San Francisco,CA,94016 +181804,27in FHD Monitor,1,149.99,2019-04-15 14:52:00,701 Park St, Boston,MA,02215 +181805,USB-C Charging Cable,1,11.95,2019-04-15 18:38:00,996 Lakeview St, Boston,MA,02215 +181806,USB-C Charging Cable,1,11.95,2019-04-14 17:01:00,8 7th St, New York City,NY,10001 +181807,iPhone,1,700.0,2019-04-07 16:36:00,73 South St, San Francisco,CA,94016 +181807,Lightning Charging Cable,2,14.95,2019-04-07 16:36:00,73 South St, San Francisco,CA,94016 +181808,27in FHD Monitor,1,149.99,2019-04-03 18:16:00,343 Lakeview St, New York City,NY,10001 +181809,AA Batteries (4-pack),1,3.84,2019-04-29 13:26:00,351 8th St, New York City,NY,10001 +181810,AA Batteries (4-pack),3,3.84,2019-04-09 00:14:00,416 8th St, Dallas,TX,75001 +181811,AA Batteries (4-pack),1,3.84,2019-04-06 06:21:00,784 Cedar St, Austin,TX,73301 +181812,Bose SoundSport Headphones,1,99.99,2019-04-08 20:46:00,917 Hill St, Portland,ME,04101 +181813,Lightning Charging Cable,1,14.95,2019-04-12 13:43:00,505 Main St, San Francisco,CA,94016 +181814,Bose SoundSport Headphones,1,99.99,2019-04-08 17:41:00,366 Hickory St, Boston,MA,02215 +181815,Bose SoundSport Headphones,1,99.99,2019-04-02 11:59:00,85 Highland St, Atlanta,GA,30301 +181816,iPhone,1,700.0,2019-04-21 12:17:00,397 Madison St, Dallas,TX,75001 +181817,AAA Batteries (4-pack),1,2.99,2019-04-21 10:36:00,81 5th St, New York City,NY,10001 +181818,AAA Batteries (4-pack),1,2.99,2019-04-17 21:55:00,876 14th St, Dallas,TX,75001 +181819,Vareebadd Phone,1,400.0,2019-04-26 05:43:00,27 Maple St, Portland,OR,97035 +181819,Wired Headphones,1,11.99,2019-04-26 05:43:00,27 Maple St, Portland,OR,97035 +181820,Bose SoundSport Headphones,1,99.99,2019-04-28 14:24:00,810 5th St, Los Angeles,CA,90001 +181821,Apple Airpods Headphones,1,150.0,2019-04-07 08:11:00,9 West St, San Francisco,CA,94016 +181822,AA Batteries (4-pack),1,3.84,2019-04-12 11:50:00,518 Dogwood St, Boston,MA,02215 +181823,Bose SoundSport Headphones,1,99.99,2019-04-18 20:10:00,503 6th St, Dallas,TX,75001 +181823,AAA Batteries (4-pack),3,2.99,2019-04-18 20:10:00,503 6th St, Dallas,TX,75001 +181824,Wired Headphones,1,11.99,2019-04-01 12:30:00,106 2nd St, San Francisco,CA,94016 +181825,34in Ultrawide Monitor,1,379.99,2019-04-13 12:33:00,371 Cherry St, Seattle,WA,98101 +181826,Lightning Charging Cable,2,14.95,2019-04-06 09:13:00,541 12th St, Portland,OR,97035 +181827,USB-C Charging Cable,1,11.95,2019-04-22 00:06:00,618 Sunset St, Boston,MA,02215 +181828,Lightning Charging Cable,1,14.95,2019-04-30 17:02:00,168 5th St, Seattle,WA,98101 +181829,27in FHD Monitor,1,149.99,2019-04-28 17:29:00,352 Center St, New York City,NY,10001 +181830,20in Monitor,1,109.99,2019-04-04 04:36:00,619 11th St, Los Angeles,CA,90001 +181831,USB-C Charging Cable,1,11.95,2019-04-26 16:39:00,41 Highland St, Austin,TX,73301 +181832,Apple Airpods Headphones,1,150.0,2019-04-04 05:21:00,206 11th St, San Francisco,CA,94016 +181833,Wired Headphones,1,11.99,2019-04-16 12:28:00,365 Johnson St, San Francisco,CA,94016 +181834,Lightning Charging Cable,1,14.95,2019-04-05 09:46:00,446 Maple St, Los Angeles,CA,90001 +181835,27in 4K Gaming Monitor,1,389.99,2019-04-21 10:33:00,389 4th St, San Francisco,CA,94016 +181836,Bose SoundSport Headphones,1,99.99,2019-04-15 12:22:00,436 8th St, New York City,NY,10001 +181837,Wired Headphones,1,11.99,2019-04-18 00:11:00,969 Johnson St, Boston,MA,02215 +181838,USB-C Charging Cable,1,11.95,2019-04-17 11:49:00,801 8th St, Seattle,WA,98101 +181839,Wired Headphones,1,11.99,2019-04-02 20:00:00,461 Forest St, Los Angeles,CA,90001 +181840,AAA Batteries (4-pack),1,2.99,2019-04-04 13:32:00,515 12th St, San Francisco,CA,94016 +181841,AAA Batteries (4-pack),3,2.99,2019-04-07 17:39:00,436 Forest St, San Francisco,CA,94016 +181842,27in FHD Monitor,1,149.99,2019-04-04 17:25:00,93 Walnut St, Austin,TX,73301 +181843,iPhone,1,700.0,2019-04-12 11:20:00,9 Madison St, Atlanta,GA,30301 +181843,Apple Airpods Headphones,1,150.0,2019-04-12 11:20:00,9 Madison St, Atlanta,GA,30301 +181844,27in 4K Gaming Monitor,1,389.99,2019-04-05 09:10:00,861 Pine St, Atlanta,GA,30301 +181845,iPhone,1,700.0,2019-04-12 12:34:00,786 Johnson St, San Francisco,CA,94016 +181846,USB-C Charging Cable,1,11.95,2019-04-17 21:08:00,738 Willow St, New York City,NY,10001 +181847,Wired Headphones,1,11.99,2019-04-23 01:24:00,949 North St, Atlanta,GA,30301 +181848,AAA Batteries (4-pack),1,2.99,2019-04-02 18:23:00,386 Center St, Los Angeles,CA,90001 +181849,Macbook Pro Laptop,1,1700.0,2019-04-21 17:21:00,903 Maple St, Dallas,TX,75001 +181850,AA Batteries (4-pack),3,3.84,2019-04-03 16:55:00,466 Hill St, Atlanta,GA,30301 +181851,Apple Airpods Headphones,1,150.0,2019-04-09 08:58:00,359 Sunset St, Seattle,WA,98101 +181852,Wired Headphones,1,11.99,2019-04-03 09:29:00,238 Hill St, Seattle,WA,98101 +181853,Google Phone,1,600.0,2019-04-26 15:10:00,353 Washington St, San Francisco,CA,94016 +181854,Bose SoundSport Headphones,1,99.99,2019-04-03 23:45:00,73 Washington St, San Francisco,CA,94016 +181855,Lightning Charging Cable,1,14.95,2019-04-13 14:48:00,207 13th St, New York City,NY,10001 +181856,Lightning Charging Cable,1,14.95,2019-04-21 23:10:00,977 5th St, Los Angeles,CA,90001 +181857,Macbook Pro Laptop,1,1700.0,2019-04-05 17:33:00,355 Willow St, San Francisco,CA,94016 +181858,iPhone,1,700.0,2019-04-15 20:51:00,552 Dogwood St, New York City,NY,10001 +181859,Lightning Charging Cable,1,14.95,2019-04-03 08:15:00,534 Spruce St, New York City,NY,10001 +181860,Google Phone,1,600.0,2019-04-21 12:43:00,704 Park St, San Francisco,CA,94016 +181861,Lightning Charging Cable,1,14.95,2019-04-26 12:40:00,48 Johnson St, New York City,NY,10001 +181862,iPhone,1,700.0,2019-04-20 10:39:00,812 South St, Seattle,WA,98101 +181862,Apple Airpods Headphones,1,150.0,2019-04-20 10:39:00,812 South St, Seattle,WA,98101 +181863,AA Batteries (4-pack),1,3.84,2019-04-24 13:45:00,851 Park St, Portland,OR,97035 +181864,34in Ultrawide Monitor,1,379.99,2019-04-13 21:11:00,718 14th St, Los Angeles,CA,90001 +181865,27in FHD Monitor,1,149.99,2019-04-30 19:38:00,223 1st St, San Francisco,CA,94016 +181866,Wired Headphones,1,11.99,2019-04-10 11:52:00,38 Center St, Seattle,WA,98101 +181867,USB-C Charging Cable,1,11.95,2019-04-16 13:16:00,693 8th St, Los Angeles,CA,90001 +181868,AAA Batteries (4-pack),1,2.99,2019-04-12 18:24:00,791 Elm St, San Francisco,CA,94016 +181869,AA Batteries (4-pack),1,3.84,2019-04-12 20:32:00,470 Ridge St, Boston,MA,02215 +181870,27in FHD Monitor,1,149.99,2019-04-11 21:14:00,495 Hickory St, New York City,NY,10001 +181871,27in 4K Gaming Monitor,1,389.99,2019-04-26 11:55:00,29 10th St, Seattle,WA,98101 +181872,AA Batteries (4-pack),1,3.84,2019-04-08 18:15:00,847 2nd St, New York City,NY,10001 +181873,AA Batteries (4-pack),1,3.84,2019-04-28 20:30:00,755 Cherry St, New York City,NY,10001 +181874,Google Phone,1,600.0,2019-04-26 22:28:00,235 Ridge St, San Francisco,CA,94016 +181875,AA Batteries (4-pack),1,3.84,2019-04-16 06:24:00,829 Hickory St, San Francisco,CA,94016 +181876,AA Batteries (4-pack),1,3.84,2019-04-30 14:39:00,804 Hickory St, New York City,NY,10001 +181877,Lightning Charging Cable,1,14.95,2019-04-09 12:03:00,239 9th St, Portland,OR,97035 +181878,Wired Headphones,1,11.99,2019-04-21 09:18:00,52 Walnut St, Seattle,WA,98101 +181879,AA Batteries (4-pack),2,3.84,2019-04-12 13:30:00,115 12th St, Portland,OR,97035 +181880,Apple Airpods Headphones,1,150.0,2019-04-03 09:17:00,844 Spruce St, Dallas,TX,75001 +181881,Lightning Charging Cable,1,14.95,2019-04-19 11:06:00,5 River St, Portland,OR,97035 +181882,Apple Airpods Headphones,1,150.0,2019-04-06 14:09:00,381 Jackson St, San Francisco,CA,94016 +181883,AAA Batteries (4-pack),1,2.99,2019-04-12 16:33:00,34 9th St, Atlanta,GA,30301 +181884,Apple Airpods Headphones,1,150.0,2019-04-27 09:10:00,377 13th St, Dallas,TX,75001 +181885,Apple Airpods Headphones,1,150.0,2019-04-20 07:43:00,677 Pine St, Los Angeles,CA,90001 +181886,USB-C Charging Cable,1,11.95,2019-04-18 16:22:00,344 West St, New York City,NY,10001 +181887,Apple Airpods Headphones,1,150.0,2019-04-04 22:48:00,343 Washington St, San Francisco,CA,94016 +181888,Wired Headphones,1,11.99,2019-04-27 14:15:00,321 Jefferson St, Los Angeles,CA,90001 +181889,USB-C Charging Cable,1,11.95,2019-04-14 14:51:00,810 South St, Boston,MA,02215 +181890,Lightning Charging Cable,1,14.95,2019-04-15 15:26:00,982 Willow St, Seattle,WA,98101 +181891,27in FHD Monitor,1,149.99,2019-04-15 10:59:00,669 Park St, San Francisco,CA,94016 +181892,Apple Airpods Headphones,1,150.0,2019-04-17 21:10:00,580 Sunset St, Seattle,WA,98101 +181893,Macbook Pro Laptop,1,1700.0,2019-04-20 21:15:00,286 11th St, New York City,NY,10001 +181894,iPhone,1,700.0,2019-04-15 17:58:00,838 Maple St, Austin,TX,73301 +181895,Bose SoundSport Headphones,1,99.99,2019-04-16 22:22:00,518 Main St, Dallas,TX,75001 +181896,Lightning Charging Cable,1,14.95,2019-04-10 20:47:00,458 4th St, Atlanta,GA,30301 +181897,AAA Batteries (4-pack),2,2.99,2019-04-11 08:57:00,273 Center St, Portland,OR,97035 +181898,Apple Airpods Headphones,1,150.0,2019-04-15 21:05:00,424 Jackson St, Atlanta,GA,30301 +181899,AAA Batteries (4-pack),1,2.99,2019-04-07 22:12:00,19 Lake St, New York City,NY,10001 +181900,Wired Headphones,1,11.99,2019-04-21 09:42:00,597 Main St, San Francisco,CA,94016 +181901,27in 4K Gaming Monitor,1,389.99,2019-04-06 18:19:00,734 14th St, Atlanta,GA,30301 +181902,Bose SoundSport Headphones,1,99.99,2019-04-13 11:34:00,327 5th St, New York City,NY,10001 +181903,Wired Headphones,2,11.99,2019-04-01 11:28:00,785 Johnson St, Boston,MA,02215 +181904,iPhone,1,700.0,2019-04-15 11:26:00,502 Cedar St, Boston,MA,02215 +181904,Lightning Charging Cable,1,14.95,2019-04-15 11:26:00,502 Cedar St, Boston,MA,02215 +181905,Lightning Charging Cable,1,14.95,2019-04-25 21:19:00,505 8th St, New York City,NY,10001 +181906,Wired Headphones,1,11.99,2019-04-15 13:03:00,902 14th St, Portland,OR,97035 +181907,Apple Airpods Headphones,1,150.0,2019-04-15 23:11:00,759 West St, Los Angeles,CA,90001 +181908,AA Batteries (4-pack),1,3.84,2019-04-26 08:22:00,553 Center St, Dallas,TX,75001 +181909,Apple Airpods Headphones,1,150.0,2019-04-30 17:28:00,563 Meadow St, Dallas,TX,75001 +181910,AA Batteries (4-pack),1,3.84,2019-04-19 13:08:00,59 Johnson St, San Francisco,CA,94016 +181911,34in Ultrawide Monitor,1,379.99,2019-04-10 15:31:00,942 Lakeview St, Atlanta,GA,30301 +181912,Google Phone,1,600.0,2019-04-29 04:34:00,218 Willow St, San Francisco,CA,94016 +181913,ThinkPad Laptop,1,999.99,2019-04-19 21:44:00,751 Cherry St, Portland,ME,04101 +181914,USB-C Charging Cable,1,11.95,2019-04-16 10:25:00,14 Maple St, Seattle,WA,98101 +181915,AA Batteries (4-pack),1,3.84,2019-04-01 11:42:00,901 Cedar St, New York City,NY,10001 +181916,Wired Headphones,1,11.99,2019-04-20 15:14:00,598 Jackson St, San Francisco,CA,94016 +181917,Google Phone,1,600.0,2019-04-10 12:24:00,899 Main St, Portland,OR,97035 +181917,USB-C Charging Cable,2,11.95,2019-04-10 12:24:00,899 Main St, Portland,OR,97035 +181918,Lightning Charging Cable,1,14.95,2019-04-05 08:44:00,206 Willow St, New York City,NY,10001 +181919,Wired Headphones,1,11.99,2019-04-10 13:44:00,938 10th St, San Francisco,CA,94016 +181920,34in Ultrawide Monitor,1,379.99,2019-04-04 13:13:00,730 Church St, New York City,NY,10001 +181921,27in FHD Monitor,1,149.99,2019-04-16 16:59:00,871 11th St, Atlanta,GA,30301 +181922,Flatscreen TV,1,300.0,2019-04-20 16:02:00,393 7th St, New York City,NY,10001 +181923,Wired Headphones,1,11.99,2019-04-04 09:49:00,744 8th St, Portland,ME,04101 +181924,Apple Airpods Headphones,1,150.0,2019-04-02 15:25:00,876 Madison St, San Francisco,CA,94016 +181925,AAA Batteries (4-pack),1,2.99,2019-04-04 14:48:00,402 Hickory St, Los Angeles,CA,90001 +181926,AA Batteries (4-pack),1,3.84,2019-04-13 14:13:00,422 Center St, Los Angeles,CA,90001 +181927,USB-C Charging Cable,1,11.95,2019-04-17 20:14:00,642 7th St, Atlanta,GA,30301 +181928,AA Batteries (4-pack),1,3.84,2019-04-29 20:40:00,384 Church St, Seattle,WA,98101 +181929,Google Phone,1,600.0,2019-04-13 14:56:00,593 13th St, New York City,NY,10001 +181930,Google Phone,1,600.0,2019-04-30 06:26:00,833 Hill St, Portland,ME,04101 +181931,USB-C Charging Cable,1,11.95,2019-04-24 14:49:00,892 Jackson St, Atlanta,GA,30301 +181932,27in 4K Gaming Monitor,1,389.99,2019-04-20 14:48:00,805 Adams St, Boston,MA,02215 +181933,Bose SoundSport Headphones,1,99.99,2019-04-24 23:26:00,513 11th St, Atlanta,GA,30301 +181934,27in FHD Monitor,1,149.99,2019-04-17 23:37:00,847 Lakeview St, Atlanta,GA,30301 +181935,Lightning Charging Cable,1,14.95,2019-04-27 22:32:00,189 1st St, Los Angeles,CA,90001 +181936,iPhone,1,700.0,2019-04-27 10:21:00,368 Cedar St, San Francisco,CA,94016 +181936,Lightning Charging Cable,1,14.95,2019-04-27 10:21:00,368 Cedar St, San Francisco,CA,94016 +181937,Wired Headphones,1,11.99,2019-04-16 21:37:00,494 2nd St, Los Angeles,CA,90001 +181938,Apple Airpods Headphones,1,150.0,2019-04-21 16:40:00,417 West St, Atlanta,GA,30301 +181939,Lightning Charging Cable,1,14.95,2019-04-08 13:42:00,325 4th St, Austin,TX,73301 +181940,34in Ultrawide Monitor,1,379.99,2019-04-20 12:02:00,863 Lake St, Los Angeles,CA,90001 +181941,Wired Headphones,1,11.99,2019-04-01 12:32:00,738 Lincoln St, Los Angeles,CA,90001 +181941,Lightning Charging Cable,1,14.95,2019-04-01 12:32:00,738 Lincoln St, Los Angeles,CA,90001 +181942,Google Phone,1,600.0,2019-04-09 17:26:00,550 Maple St, Seattle,WA,98101 +181943,27in 4K Gaming Monitor,1,389.99,2019-04-26 12:08:00,116 South St, New York City,NY,10001 +181944,Wired Headphones,2,11.99,2019-04-23 22:36:00,749 9th St, New York City,NY,10001 +181945,27in 4K Gaming Monitor,1,389.99,2019-04-10 16:58:00,709 South St, San Francisco,CA,94016 +181946,Lightning Charging Cable,1,14.95,2019-04-30 19:05:00,590 Dogwood St, San Francisco,CA,94016 +181947,34in Ultrawide Monitor,1,379.99,2019-04-19 22:34:00,297 Elm St, Dallas,TX,75001 +181948,AAA Batteries (4-pack),1,2.99,2019-04-08 20:09:00,782 12th St, Los Angeles,CA,90001 +181949,USB-C Charging Cable,1,11.95,2019-04-13 11:00:00,587 Adams St, Dallas,TX,75001 +181950,USB-C Charging Cable,1,11.95,2019-04-19 14:13:00,469 Adams St, San Francisco,CA,94016 +181951,27in FHD Monitor,1,149.99,2019-04-09 13:01:00,631 North St, San Francisco,CA,94016 +181952,27in FHD Monitor,1,149.99,2019-04-17 21:24:00,479 Ridge St, New York City,NY,10001 +181953,AA Batteries (4-pack),1,3.84,2019-04-14 10:57:00,291 Hill St, Atlanta,GA,30301 +181954,AAA Batteries (4-pack),1,2.99,2019-04-22 01:19:00,774 Johnson St, Boston,MA,02215 +181955,27in 4K Gaming Monitor,1,389.99,2019-04-09 17:01:00,559 12th St, Atlanta,GA,30301 +181956,AAA Batteries (4-pack),1,2.99,2019-04-08 13:25:00,795 Meadow St, New York City,NY,10001 +181957,USB-C Charging Cable,1,11.95,2019-04-23 12:20:00,202 Church St, Austin,TX,73301 +181958,iPhone,1,700.0,2019-04-26 18:55:00,38 9th St, Seattle,WA,98101 +181959,Apple Airpods Headphones,1,150.0,2019-04-04 17:32:00,774 5th St, New York City,NY,10001 +181960,USB-C Charging Cable,1,11.95,2019-04-01 18:37:00,628 Walnut St, Atlanta,GA,30301 +181961,Macbook Pro Laptop,1,1700.0,2019-04-11 08:59:00,929 River St, San Francisco,CA,94016 +181962,AA Batteries (4-pack),2,3.84,2019-04-29 08:02:00,385 Adams St, Portland,OR,97035 +181963,AA Batteries (4-pack),2,3.84,2019-04-19 13:27:00,48 River St, Los Angeles,CA,90001 +181964,USB-C Charging Cable,1,11.95,2019-04-06 08:56:00,372 Center St, New York City,NY,10001 +181965,AA Batteries (4-pack),2,3.84,2019-04-01 11:25:00,943 Ridge St, San Francisco,CA,94016 +181966,USB-C Charging Cable,1,11.95,2019-04-27 11:35:00,955 Highland St, New York City,NY,10001 +181967,AAA Batteries (4-pack),1,2.99,2019-04-12 20:03:00,541 Willow St, San Francisco,CA,94016 +181968,Apple Airpods Headphones,1,150.0,2019-04-14 19:15:00,881 8th St, Atlanta,GA,30301 +181969,AAA Batteries (4-pack),1,2.99,2019-04-30 22:07:00,919 Willow St, Boston,MA,02215 +181970,AAA Batteries (4-pack),1,2.99,2019-04-05 16:38:00,480 Willow St, San Francisco,CA,94016 +181971,AAA Batteries (4-pack),2,2.99,2019-04-29 14:55:00,326 Dogwood St, Boston,MA,02215 +181972,AAA Batteries (4-pack),2,2.99,2019-04-28 14:32:00,398 Jackson St, Atlanta,GA,30301 +181973,AA Batteries (4-pack),2,3.84,2019-04-27 13:14:00,543 Highland St, Boston,MA,02215 +181974,Lightning Charging Cable,1,14.95,2019-04-04 00:54:00,455 Wilson St, Los Angeles,CA,90001 +181975,AA Batteries (4-pack),2,3.84,2019-04-19 18:57:00,453 Main St, Los Angeles,CA,90001 +181976,USB-C Charging Cable,4,11.95,2019-04-02 11:02:00,561 2nd St, Atlanta,GA,30301 +181977,Macbook Pro Laptop,1,1700.0,2019-04-26 21:51:00,671 Highland St, Los Angeles,CA,90001 +181978,Macbook Pro Laptop,1,1700.0,2019-04-22 10:57:00,485 5th St, Atlanta,GA,30301 +181979,Vareebadd Phone,1,400.0,2019-04-08 11:04:00,242 Church St, Boston,MA,02215 +181979,USB-C Charging Cable,1,11.95,2019-04-08 11:04:00,242 Church St, Boston,MA,02215 +181980,20in Monitor,1,109.99,2019-04-29 21:39:00,500 Willow St, Austin,TX,73301 +181981,USB-C Charging Cable,1,11.95,2019-04-30 21:43:00,831 Wilson St, Boston,MA,02215 +181982,Apple Airpods Headphones,2,150.0,2019-04-22 22:51:00,162 Washington St, San Francisco,CA,94016 +181983,ThinkPad Laptop,1,999.99,2019-04-05 15:08:00,3 Elm St, Dallas,TX,75001 +181984,Wired Headphones,1,11.99,2019-04-22 20:15:00,425 14th St, Seattle,WA,98101 +181985,iPhone,1,700.0,2019-04-09 21:12:00,29 Meadow St, New York City,NY,10001 +181986,Lightning Charging Cable,2,14.95,2019-04-26 19:24:00,545 13th St, Boston,MA,02215 +181987,AAA Batteries (4-pack),1,2.99,2019-04-21 08:30:00,892 Jackson St, Los Angeles,CA,90001 +181988,Lightning Charging Cable,1,14.95,2019-04-21 13:01:00,759 Lakeview St, Atlanta,GA,30301 +181989,USB-C Charging Cable,1,11.95,2019-04-23 10:42:00,967 Elm St, Austin,TX,73301 +181990,Wired Headphones,1,11.99,2019-04-12 09:57:00,561 Cedar St, San Francisco,CA,94016 +181991,AAA Batteries (4-pack),1,2.99,2019-04-12 21:34:00,311 4th St, Seattle,WA,98101 +181992,Lightning Charging Cable,1,14.95,2019-04-25 19:29:00,244 Spruce St, Dallas,TX,75001 +181993,USB-C Charging Cable,1,11.95,2019-04-05 13:29:00,244 Madison St, San Francisco,CA,94016 +181994,AAA Batteries (4-pack),1,2.99,2019-04-07 15:05:00,724 Highland St, Los Angeles,CA,90001 +181995,AA Batteries (4-pack),1,3.84,2019-04-06 09:02:00,263 7th St, San Francisco,CA,94016 +181996,AAA Batteries (4-pack),1,2.99,2019-04-16 22:46:00,912 Church St, San Francisco,CA,94016 +181997,USB-C Charging Cable,1,11.95,2019-04-24 08:45:00,687 13th St, Boston,MA,02215 +181998,Flatscreen TV,1,300.0,2019-04-09 09:05:00,89 Lake St, San Francisco,CA,94016 +181999,Apple Airpods Headphones,1,150.0,2019-04-06 07:17:00,966 Lincoln St, New York City,NY,10001 +181999,Wired Headphones,1,11.99,2019-04-06 07:17:00,966 Lincoln St, New York City,NY,10001 +182000,Lightning Charging Cable,1,14.95,2019-04-14 22:03:00,215 Adams St, Boston,MA,02215 +182001,AAA Batteries (4-pack),1,2.99,2019-04-27 19:06:00,738 Ridge St, Portland,OR,97035 +182002,USB-C Charging Cable,2,11.95,2019-04-04 20:17:00,347 Adams St, New York City,NY,10001 +182003,Flatscreen TV,1,300.0,2019-04-22 15:46:00,712 Lake St, New York City,NY,10001 +182004,Apple Airpods Headphones,1,150.0,2019-04-11 21:00:00,273 Cedar St, New York City,NY,10001 +182005,AAA Batteries (4-pack),2,2.99,2019-04-03 19:25:00,169 11th St, New York City,NY,10001 +182006,Wired Headphones,1,11.99,2019-04-30 14:46:00,471 11th St, Boston,MA,02215 +182007,USB-C Charging Cable,1,11.95,2019-04-21 12:35:00,517 Center St, Atlanta,GA,30301 +182008,Wired Headphones,1,11.99,2019-04-23 08:25:00,519 Lincoln St, New York City,NY,10001 +182009,AAA Batteries (4-pack),1,2.99,2019-04-24 11:01:00,282 Lake St, Portland,OR,97035 +182010,Lightning Charging Cable,1,14.95,2019-04-17 16:37:00,305 Spruce St, New York City,NY,10001 +182011,Apple Airpods Headphones,1,150.0,2019-04-12 19:48:00,92 8th St, Atlanta,GA,30301 +182012,20in Monitor,1,109.99,2019-04-30 13:35:00,93 Willow St, San Francisco,CA,94016 +182013,27in 4K Gaming Monitor,1,389.99,2019-04-11 13:41:00,339 Center St, Los Angeles,CA,90001 +182014,34in Ultrawide Monitor,1,379.99,2019-04-21 08:04:00,747 Dogwood St, Los Angeles,CA,90001 +182015,Bose SoundSport Headphones,1,99.99,2019-04-18 15:16:00,735 Wilson St, Dallas,TX,75001 +182016,27in 4K Gaming Monitor,1,389.99,2019-04-06 01:58:00,214 River St, Los Angeles,CA,90001 +182017,AA Batteries (4-pack),2,3.84,2019-04-14 12:15:00,141 8th St, San Francisco,CA,94016 +182018,iPhone,1,700.0,2019-04-21 15:37:00,165 13th St, Los Angeles,CA,90001 +182019,AA Batteries (4-pack),1,3.84,2019-04-10 12:18:00,380 Ridge St, Seattle,WA,98101 +182020,USB-C Charging Cable,1,11.95,2019-04-14 14:52:00,246 6th St, Portland,OR,97035 +182021,AA Batteries (4-pack),1,3.84,2019-04-08 14:12:00,482 Highland St, New York City,NY,10001 +182022,Google Phone,1,600.0,2019-04-19 15:32:00,840 South St, Boston,MA,02215 +182023,AAA Batteries (4-pack),2,2.99,2019-04-17 09:49:00,601 13th St, Los Angeles,CA,90001 +182024,Google Phone,1,600.0,2019-04-19 22:50:00,741 1st St, San Francisco,CA,94016 +182024,Bose SoundSport Headphones,1,99.99,2019-04-19 22:50:00,741 1st St, San Francisco,CA,94016 +182025,Lightning Charging Cable,1,14.95,2019-04-21 19:56:00,608 Walnut St, Boston,MA,02215 +182026,Macbook Pro Laptop,1,1700.0,2019-04-19 11:30:00,778 Jackson St, Seattle,WA,98101 +182027,AA Batteries (4-pack),1,3.84,2019-04-07 08:28:00,335 6th St, Seattle,WA,98101 +182027,Apple Airpods Headphones,1,150.0,2019-04-07 08:28:00,335 6th St, Seattle,WA,98101 +182028,27in 4K Gaming Monitor,1,389.99,2019-04-25 16:49:00,34 Hickory St, Atlanta,GA,30301 +182029,34in Ultrawide Monitor,1,379.99,2019-04-30 19:37:00,584 Highland St, New York City,NY,10001 +182030,Bose SoundSport Headphones,1,99.99,2019-04-16 18:24:00,167 8th St, San Francisco,CA,94016 +182031,AAA Batteries (4-pack),3,2.99,2019-04-21 11:43:00,275 Maple St, New York City,NY,10001 +182032,AA Batteries (4-pack),1,3.84,2019-04-26 12:34:00,483 Jefferson St, Boston,MA,02215 +182033,Bose SoundSport Headphones,1,99.99,2019-04-04 14:21:00,185 North St, Boston,MA,02215 +182034,Wired Headphones,1,11.99,2019-04-28 20:48:00,827 Chestnut St, San Francisco,CA,94016 +182035,20in Monitor,1,109.99,2019-04-30 17:25:00,130 Lake St, Seattle,WA,98101 +182036,27in FHD Monitor,1,149.99,2019-04-10 07:52:00,82 14th St, Austin,TX,73301 +182037,USB-C Charging Cable,1,11.95,2019-04-20 09:05:00,982 9th St, Atlanta,GA,30301 +182038,27in FHD Monitor,1,149.99,2019-04-21 21:49:00,42 Chestnut St, San Francisco,CA,94016 +182039,Lightning Charging Cable,1,14.95,2019-04-24 19:19:00,377 Adams St, Seattle,WA,98101 +182040,34in Ultrawide Monitor,1,379.99,2019-04-15 09:26:00,175 Jefferson St, Atlanta,GA,30301 +182041,USB-C Charging Cable,1,11.95,2019-04-19 15:49:00,366 8th St, Los Angeles,CA,90001 +182042,Bose SoundSport Headphones,1,99.99,2019-04-19 17:52:00,417 1st St, San Francisco,CA,94016 +182043,34in Ultrawide Monitor,1,379.99,2019-04-16 22:16:00,348 Highland St, San Francisco,CA,94016 +182043,Wired Headphones,1,11.99,2019-04-16 22:16:00,348 Highland St, San Francisco,CA,94016 +182044,Wired Headphones,1,11.99,2019-04-05 08:03:00,890 Wilson St, San Francisco,CA,94016 +182045,27in 4K Gaming Monitor,1,389.99,2019-04-05 11:00:00,170 Highland St, Seattle,WA,98101 +182046,Apple Airpods Headphones,1,150.0,2019-04-26 07:07:00,620 Hill St, Atlanta,GA,30301 +182047,Wired Headphones,1,11.99,2019-04-22 05:01:00,384 Lake St, Portland,OR,97035 +182048,AA Batteries (4-pack),1,3.84,2019-04-14 13:16:00,745 South St, San Francisco,CA,94016 +182049,Flatscreen TV,1,300.0,2019-04-17 11:35:00,213 1st St, New York City,NY,10001 +182050,Flatscreen TV,1,300.0,2019-04-23 19:40:00,871 9th St, Portland,OR,97035 +182051,AAA Batteries (4-pack),1,2.99,2019-04-25 15:29:00,690 4th St, Atlanta,GA,30301 +182052,Wired Headphones,1,11.99,2019-04-02 09:43:00,745 Meadow St, Boston,MA,02215 +182053,USB-C Charging Cable,1,11.95,2019-04-22 10:33:00,882 14th St, New York City,NY,10001 +182054,27in FHD Monitor,1,149.99,2019-04-18 14:12:00,564 Lakeview St, Los Angeles,CA,90001 +182055,27in FHD Monitor,1,149.99,2019-04-06 22:43:00,943 12th St, San Francisco,CA,94016 +182056,27in FHD Monitor,1,149.99,2019-04-27 16:40:00,537 13th St, Austin,TX,73301 +182057,Lightning Charging Cable,1,14.95,2019-04-28 19:02:00,464 Dogwood St, Los Angeles,CA,90001 +182058,Vareebadd Phone,1,400.0,2019-04-09 12:54:00,112 14th St, Atlanta,GA,30301 +182059,AAA Batteries (4-pack),2,2.99,2019-04-30 20:58:00,541 11th St, Seattle,WA,98101 +182060,iPhone,1,700.0,2019-04-02 20:00:00,763 Adams St, San Francisco,CA,94016 +182060,Lightning Charging Cable,1,14.95,2019-04-02 20:00:00,763 Adams St, San Francisco,CA,94016 +182061,Macbook Pro Laptop,1,1700.0,2019-04-09 19:20:00,92 Willow St, Seattle,WA,98101 +182062,AAA Batteries (4-pack),1,2.99,2019-04-02 04:54:00,87 Hill St, Los Angeles,CA,90001 +182063,AA Batteries (4-pack),1,3.84,2019-04-14 10:43:00,362 Washington St, Portland,ME,04101 +182064,Apple Airpods Headphones,1,150.0,2019-04-18 12:06:00,24 8th St, Atlanta,GA,30301 +182065,20in Monitor,1,109.99,2019-04-21 14:16:00,179 Hickory St, New York City,NY,10001 +182066,Flatscreen TV,1,300.0,2019-04-26 01:03:00,879 Maple St, Los Angeles,CA,90001 +182067,Vareebadd Phone,1,400.0,2019-04-21 20:09:00,970 14th St, Los Angeles,CA,90001 +182068,Wired Headphones,1,11.99,2019-04-04 11:09:00,701 Lincoln St, Los Angeles,CA,90001 +182069,Apple Airpods Headphones,1,150.0,2019-04-28 12:45:00,450 Main St, Los Angeles,CA,90001 +182070,USB-C Charging Cable,1,11.95,2019-04-14 18:29:00,513 Pine St, San Francisco,CA,94016 +182071,AAA Batteries (4-pack),1,2.99,2019-04-20 12:57:00,768 Elm St, Boston,MA,02215 +182072,AAA Batteries (4-pack),1,2.99,2019-04-26 13:29:00,615 1st St, Dallas,TX,75001 +182073,AAA Batteries (4-pack),1,2.99,2019-04-20 10:15:00,418 1st St, Boston,MA,02215 +182074,Lightning Charging Cable,1,14.95,2019-04-19 12:09:00,557 Lakeview St, New York City,NY,10001 +182075,Lightning Charging Cable,1,14.95,2019-04-02 12:35:00,512 Elm St, Dallas,TX,75001 +182076,USB-C Charging Cable,1,11.95,2019-04-26 08:23:00,305 Jackson St, Atlanta,GA,30301 +182077,AAA Batteries (4-pack),1,2.99,2019-04-13 22:08:00,730 4th St, New York City,NY,10001 +182078,AA Batteries (4-pack),1,3.84,2019-04-19 09:21:00,277 5th St, Dallas,TX,75001 +182079,Apple Airpods Headphones,1,150.0,2019-04-05 00:14:00,543 Jackson St, San Francisco,CA,94016 +182080,USB-C Charging Cable,1,11.95,2019-04-05 14:22:00,895 Chestnut St, New York City,NY,10001 +182081,Wired Headphones,1,11.99,2019-04-27 12:11:00,3 Hickory St, Boston,MA,02215 +182082,Wired Headphones,1,11.99,2019-04-02 18:10:00,420 Main St, New York City,NY,10001 +182083,Wired Headphones,1,11.99,2019-04-14 21:44:00,492 13th St, Seattle,WA,98101 +182084,AAA Batteries (4-pack),1,2.99,2019-04-17 18:32:00,633 Hickory St, Dallas,TX,75001 +182085,Lightning Charging Cable,1,14.95,2019-04-18 14:42:00,579 Cherry St, Austin,TX,73301 +182086,Google Phone,1,600.0,2019-04-09 01:17:00,177 Chestnut St, Portland,OR,97035 +182087,AAA Batteries (4-pack),1,2.99,2019-04-12 19:13:00,892 12th St, Austin,TX,73301 +182087,27in FHD Monitor,1,149.99,2019-04-12 19:13:00,892 12th St, Austin,TX,73301 +182088,Macbook Pro Laptop,1,1700.0,2019-04-10 11:29:00,21 2nd St, Boston,MA,02215 +182089,AAA Batteries (4-pack),1,2.99,2019-04-15 22:02:00,733 Hill St, Boston,MA,02215 +182090,USB-C Charging Cable,1,11.95,2019-04-10 12:07:00,1 North St, Portland,ME,04101 +182091,Lightning Charging Cable,1,14.95,2019-04-27 18:20:00,456 Johnson St, San Francisco,CA,94016 +182092,Bose SoundSport Headphones,1,99.99,2019-04-30 12:20:00,821 River St, New York City,NY,10001 +182093,Bose SoundSport Headphones,1,99.99,2019-04-18 11:48:00,356 Pine St, Los Angeles,CA,90001 +182093,AAA Batteries (4-pack),3,2.99,2019-04-18 11:48:00,356 Pine St, Los Angeles,CA,90001 +182094,ThinkPad Laptop,1,999.99,2019-04-09 17:38:00,923 Wilson St, Los Angeles,CA,90001 +182095,34in Ultrawide Monitor,1,379.99,2019-04-28 13:27:00,683 Forest St, Boston,MA,02215 +182096,Lightning Charging Cable,1,14.95,2019-04-15 21:38:00,525 1st St, New York City,NY,10001 +182097,iPhone,1,700.0,2019-04-08 16:14:00,327 Highland St, Portland,ME,04101 +182098,Lightning Charging Cable,1,14.95,2019-04-29 13:03:00,81 Walnut St, San Francisco,CA,94016 +182099,Google Phone,1,600.0,2019-04-02 18:13:00,192 14th St, Atlanta,GA,30301 +182099,USB-C Charging Cable,1,11.95,2019-04-02 18:13:00,192 14th St, Atlanta,GA,30301 +182100,Lightning Charging Cable,1,14.95,2019-04-11 20:27:00,377 2nd St, Seattle,WA,98101 +182100,AAA Batteries (4-pack),1,2.99,2019-04-11 20:27:00,377 2nd St, Seattle,WA,98101 +182101,USB-C Charging Cable,1,11.95,2019-04-01 12:45:00,139 West St, Los Angeles,CA,90001 +182102,Wired Headphones,1,11.99,2019-04-10 19:46:00,895 5th St, Los Angeles,CA,90001 +182103,USB-C Charging Cable,1,11.95,2019-04-20 14:08:00,737 Chestnut St, Los Angeles,CA,90001 +182104,ThinkPad Laptop,1,999.99,2019-04-03 19:07:00,777 Wilson St, New York City,NY,10001 +182105,Bose SoundSport Headphones,1,99.99,2019-04-26 11:05:00,170 1st St, Seattle,WA,98101 +182106,Wired Headphones,1,11.99,2019-04-29 14:33:00,930 West St, San Francisco,CA,94016 +182107,Wired Headphones,1,11.99,2019-04-03 07:27:00,434 Park St, Dallas,TX,75001 +182108,27in FHD Monitor,1,149.99,2019-04-21 20:24:00,19 River St, Austin,TX,73301 +182109,AAA Batteries (4-pack),1,2.99,2019-04-23 18:05:00,981 Jackson St, San Francisco,CA,94016 +182110,Macbook Pro Laptop,1,1700.0,2019-04-27 22:42:00,302 Forest St, Boston,MA,02215 +182111,Lightning Charging Cable,1,14.95,2019-04-12 20:28:00,108 Sunset St, Los Angeles,CA,90001 +182112,AA Batteries (4-pack),1,3.84,2019-04-13 11:17:00,498 Chestnut St, Portland,OR,97035 +182113,Wired Headphones,1,11.99,2019-04-30 21:24:00,235 1st St, San Francisco,CA,94016 +182114,27in 4K Gaming Monitor,1,389.99,2019-04-22 00:53:00,152 2nd St, San Francisco,CA,94016 +182115,AA Batteries (4-pack),1,3.84,2019-04-23 21:40:00,345 River St, Austin,TX,73301 +182116,Bose SoundSport Headphones,1,99.99,2019-04-21 12:44:00,475 Spruce St, San Francisco,CA,94016 +182117,34in Ultrawide Monitor,1,379.99,2019-04-09 19:24:00,253 Lake St, Portland,ME,04101 +182118,Wired Headphones,2,11.99,2019-04-16 11:04:00,27 Main St, San Francisco,CA,94016 +182119,AA Batteries (4-pack),1,3.84,2019-04-29 23:04:00,932 Pine St, Austin,TX,73301 +182120,AAA Batteries (4-pack),1,2.99,2019-04-27 20:35:00,930 4th St, Atlanta,GA,30301 +182121,Lightning Charging Cable,1,14.95,2019-04-01 14:07:00,460 Cherry St, Los Angeles,CA,90001 +182122,20in Monitor,1,109.99,2019-04-26 07:59:00,413 Maple St, New York City,NY,10001 +182123,27in 4K Gaming Monitor,1,389.99,2019-04-20 19:35:00,651 Madison St, Boston,MA,02215 +182124,Vareebadd Phone,1,400.0,2019-04-01 13:24:00,500 Hickory St, Los Angeles,CA,90001 +182125,iPhone,1,700.0,2019-04-02 18:24:00,757 10th St, Boston,MA,02215 +182125,Lightning Charging Cable,1,14.95,2019-04-02 18:24:00,757 10th St, Boston,MA,02215 +182126,Apple Airpods Headphones,1,150.0,2019-04-11 07:37:00,885 Lake St, Los Angeles,CA,90001 +182127,Lightning Charging Cable,1,14.95,2019-04-21 11:04:00,55 Washington St, Los Angeles,CA,90001 +182128,Wired Headphones,2,11.99,2019-04-13 17:44:00,596 Walnut St, Dallas,TX,75001 +182129,USB-C Charging Cable,1,11.95,2019-04-15 10:24:00,957 South St, San Francisco,CA,94016 +182130,Apple Airpods Headphones,1,150.0,2019-04-08 07:55:00,834 Wilson St, Los Angeles,CA,90001 +182131,Lightning Charging Cable,1,14.95,2019-04-21 11:37:00,565 River St, San Francisco,CA,94016 +182132,AA Batteries (4-pack),2,3.84,2019-04-11 06:07:00,369 12th St, Austin,TX,73301 +182133,Lightning Charging Cable,1,14.95,2019-04-14 09:49:00,120 Washington St, Dallas,TX,75001 +182134,USB-C Charging Cable,1,11.95,2019-04-09 20:02:00,647 Highland St, Los Angeles,CA,90001 +182135,USB-C Charging Cable,1,11.95,2019-04-09 11:07:00,554 South St, Boston,MA,02215 +182136,20in Monitor,1,109.99,2019-04-10 11:40:00,306 Cherry St, Boston,MA,02215 +182136,Lightning Charging Cable,1,14.95,2019-04-10 11:40:00,306 Cherry St, Boston,MA,02215 +182137,34in Ultrawide Monitor,1,379.99,2019-04-12 11:48:00,65 Cedar St, San Francisco,CA,94016 +182138,AA Batteries (4-pack),2,3.84,2019-04-16 10:12:00,279 Maple St, Boston,MA,02215 +182139,Macbook Pro Laptop,1,1700.0,2019-04-17 10:47:00,878 Washington St, San Francisco,CA,94016 +182140,Wired Headphones,1,11.99,2019-04-27 19:33:00,39 River St, San Francisco,CA,94016 +182141,AA Batteries (4-pack),1,3.84,2019-04-22 22:18:00,504 8th St, Seattle,WA,98101 +182142,AA Batteries (4-pack),2,3.84,2019-04-04 10:45:00,837 Dogwood St, Boston,MA,02215 +182143,AAA Batteries (4-pack),1,2.99,2019-04-11 14:18:00,570 Willow St, Boston,MA,02215 +182144,AA Batteries (4-pack),2,3.84,2019-04-17 10:27:00,268 Hickory St, San Francisco,CA,94016 +182145,Wired Headphones,1,11.99,2019-04-21 02:16:00,781 Elm St, Boston,MA,02215 +182146,34in Ultrawide Monitor,1,379.99,2019-04-21 07:30:00,500 South St, Portland,OR,97035 +182147,Vareebadd Phone,1,400.0,2019-04-06 13:31:00,967 Johnson St, Portland,ME,04101 +182147,USB-C Charging Cable,2,11.95,2019-04-06 13:31:00,967 Johnson St, Portland,ME,04101 +182148,Google Phone,1,600.0,2019-04-05 09:31:00,675 Maple St, San Francisco,CA,94016 +182149,Wired Headphones,1,11.99,2019-04-16 00:09:00,667 Jefferson St, Portland,ME,04101 +182150,Bose SoundSport Headphones,1,99.99,2019-04-17 23:04:00,159 Madison St, Dallas,TX,75001 +182151,Wired Headphones,1,11.99,2019-04-05 11:59:00,97 Highland St, San Francisco,CA,94016 +182152,27in 4K Gaming Monitor,1,389.99,2019-04-27 10:25:00,764 9th St, Dallas,TX,75001 +182153,AA Batteries (4-pack),1,3.84,2019-04-04 04:16:00,182 14th St, Atlanta,GA,30301 +182154,Bose SoundSport Headphones,1,99.99,2019-04-05 17:57:00,259 7th St, Austin,TX,73301 +182155,USB-C Charging Cable,1,11.95,2019-04-06 17:49:00,71 North St, Dallas,TX,75001 +182156,Wired Headphones,1,11.99,2019-04-17 11:03:00,986 14th St, Dallas,TX,75001 +182157,Apple Airpods Headphones,1,150.0,2019-04-15 11:54:00,229 Johnson St, Atlanta,GA,30301 +182158,Bose SoundSport Headphones,1,99.99,2019-04-26 17:11:00,471 Cherry St, San Francisco,CA,94016 +182158,ThinkPad Laptop,1,999.99,2019-04-26 17:11:00,471 Cherry St, San Francisco,CA,94016 +182159,Apple Airpods Headphones,1,150.0,2019-04-09 21:50:00,579 Dogwood St, Seattle,WA,98101 +182160,USB-C Charging Cable,1,11.95,2019-04-15 16:10:00,18 13th St, Los Angeles,CA,90001 +182161,AAA Batteries (4-pack),2,2.99,2019-04-24 16:48:00,135 Maple St, Atlanta,GA,30301 +182162,27in FHD Monitor,1,149.99,2019-04-06 08:14:00,593 Center St, San Francisco,CA,94016 +182163,Lightning Charging Cable,1,14.95,2019-04-07 23:25:00,480 Meadow St, San Francisco,CA,94016 +182164,Wired Headphones,2,11.99,2019-04-22 22:25:00,472 Washington St, Dallas,TX,75001 +182165,USB-C Charging Cable,2,11.95,2019-04-24 13:55:00,346 5th St, Boston,MA,02215 +182166,Lightning Charging Cable,1,14.95,2019-04-19 08:38:00,805 9th St, Los Angeles,CA,90001 +182167,AAA Batteries (4-pack),1,2.99,2019-04-05 18:31:00,478 Johnson St, New York City,NY,10001 +182168,AA Batteries (4-pack),1,3.84,2019-04-27 10:48:00,646 10th St, New York City,NY,10001 +182168,Apple Airpods Headphones,1,150.0,2019-04-27 10:48:00,646 10th St, New York City,NY,10001 +182169,20in Monitor,1,109.99,2019-04-06 10:56:00,678 Lakeview St, Los Angeles,CA,90001 +182170,27in 4K Gaming Monitor,1,389.99,2019-04-26 11:07:00,709 12th St, Boston,MA,02215 +182171,Wired Headphones,1,11.99,2019-04-08 17:48:00,691 Madison St, Boston,MA,02215 +182172,USB-C Charging Cable,1,11.95,2019-04-19 12:20:00,497 Jackson St, Boston,MA,02215 +182173,USB-C Charging Cable,1,11.95,2019-04-05 23:32:00,544 Willow St, San Francisco,CA,94016 +182174,AA Batteries (4-pack),1,3.84,2019-04-20 21:37:00,232 Highland St, San Francisco,CA,94016 +182175,USB-C Charging Cable,1,11.95,2019-04-25 18:37:00,375 Forest St, San Francisco,CA,94016 +182176,USB-C Charging Cable,1,11.95,2019-04-11 18:24:00,905 Johnson St, Boston,MA,02215 +182176,AA Batteries (4-pack),1,3.84,2019-04-11 18:24:00,905 Johnson St, Boston,MA,02215 +182177,34in Ultrawide Monitor,1,379.99,2019-04-15 13:59:00,9 Wilson St, Boston,MA,02215 +182178,Wired Headphones,2,11.99,2019-04-02 22:49:00,434 Dogwood St, Portland,OR,97035 +182179,AAA Batteries (4-pack),3,2.99,2019-04-13 20:34:00,381 Hickory St, Seattle,WA,98101 +182180,ThinkPad Laptop,1,999.99,2019-04-17 18:11:00,828 Wilson St, Dallas,TX,75001 +182181,27in 4K Gaming Monitor,1,389.99,2019-04-25 23:11:00,506 Madison St, Atlanta,GA,30301 +182182,27in 4K Gaming Monitor,1,389.99,2019-04-10 12:42:00,829 Forest St, Boston,MA,02215 +182183,Flatscreen TV,1,300.0,2019-04-12 11:02:00,731 Lincoln St, Boston,MA,02215 +182184,AAA Batteries (4-pack),1,2.99,2019-04-12 20:43:00,632 11th St, Los Angeles,CA,90001 +182185,Wired Headphones,1,11.99,2019-04-22 21:09:00,893 11th St, Los Angeles,CA,90001 +182186,Bose SoundSport Headphones,1,99.99,2019-04-14 12:37:00,368 South St, Austin,TX,73301 +182187,USB-C Charging Cable,1,11.95,2019-04-23 19:54:00,439 4th St, San Francisco,CA,94016 +182188,Apple Airpods Headphones,1,150.0,2019-04-08 22:26:00,159 Main St, San Francisco,CA,94016 +182189,Lightning Charging Cable,1,14.95,2019-04-16 01:56:00,425 Dogwood St, Seattle,WA,98101 +182190,AAA Batteries (4-pack),1,2.99,2019-04-14 17:56:00,623 North St, New York City,NY,10001 +182191,Bose SoundSport Headphones,1,99.99,2019-04-30 10:28:00,306 Cherry St, Portland,OR,97035 +182192,27in 4K Gaming Monitor,1,389.99,2019-04-22 13:39:00,398 Hickory St, Atlanta,GA,30301 +182193,AAA Batteries (4-pack),1,2.99,2019-04-09 15:28:00,202 Pine St, San Francisco,CA,94016 +182194,Apple Airpods Headphones,1,150.0,2019-04-10 21:38:00,497 14th St, Boston,MA,02215 +182195,Apple Airpods Headphones,1,150.0,2019-04-23 20:57:00,539 Adams St, Los Angeles,CA,90001 +182196,27in FHD Monitor,1,149.99,2019-04-16 12:08:00,133 Chestnut St, San Francisco,CA,94016 +182197,ThinkPad Laptop,1,999.99,2019-04-18 10:12:00,953 Pine St, San Francisco,CA,94016 +182198,iPhone,1,700.0,2019-04-24 19:34:00,443 North St, Boston,MA,02215 +182199,USB-C Charging Cable,1,11.95,2019-04-15 21:13:00,300 Willow St, Los Angeles,CA,90001 +182200,USB-C Charging Cable,1,11.95,2019-04-21 00:15:00,721 5th St, Los Angeles,CA,90001 +182201,AAA Batteries (4-pack),1,2.99,2019-04-19 12:22:00,892 Lincoln St, Portland,OR,97035 +182202,Google Phone,1,600.0,2019-04-26 15:04:00,165 Hill St, Seattle,WA,98101 +182203,AAA Batteries (4-pack),1,2.99,2019-04-24 22:18:00,786 Highland St, Los Angeles,CA,90001 +182204,Bose SoundSport Headphones,1,99.99,2019-04-15 19:18:00,163 Lakeview St, New York City,NY,10001 +182205,USB-C Charging Cable,1,11.95,2019-04-28 21:33:00,874 14th St, San Francisco,CA,94016 +182206,34in Ultrawide Monitor,1,379.99,2019-04-22 11:11:00,340 6th St, San Francisco,CA,94016 +182207,USB-C Charging Cable,2,11.95,2019-04-04 13:23:00,908 6th St, Los Angeles,CA,90001 +182208,AA Batteries (4-pack),1,3.84,2019-04-10 05:08:00,33 1st St, San Francisco,CA,94016 +182209,27in 4K Gaming Monitor,1,389.99,2019-04-17 21:41:00,339 Lincoln St, Los Angeles,CA,90001 +182210,Flatscreen TV,1,300.0,2019-04-17 18:55:00,688 Walnut St, Austin,TX,73301 +182211,AAA Batteries (4-pack),1,2.99,2019-04-24 13:28:00,74 10th St, San Francisco,CA,94016 +182212,Lightning Charging Cable,1,14.95,2019-04-07 10:03:00,915 12th St, Los Angeles,CA,90001 +182213,USB-C Charging Cable,1,11.95,2019-04-18 12:06:00,641 Elm St, New York City,NY,10001 +182214,AAA Batteries (4-pack),1,2.99,2019-04-01 11:43:00,676 Meadow St, San Francisco,CA,94016 +182215,27in FHD Monitor,1,149.99,2019-04-05 23:33:00,640 Madison St, San Francisco,CA,94016 +182215,Bose SoundSport Headphones,1,99.99,2019-04-05 23:33:00,640 Madison St, San Francisco,CA,94016 +182216,Bose SoundSport Headphones,1,99.99,2019-04-16 22:58:00,721 9th St, Atlanta,GA,30301 +182217,34in Ultrawide Monitor,1,379.99,2019-04-13 18:51:00,361 Spruce St, Seattle,WA,98101 +182218,Google Phone,1,600.0,2019-04-13 16:10:00,559 Park St, Dallas,TX,75001 +182219,Google Phone,1,600.0,2019-04-22 14:37:00,971 Lakeview St, New York City,NY,10001 +182220,34in Ultrawide Monitor,2,379.99,2019-04-14 12:04:00,587 Dogwood St, San Francisco,CA,94016 +182221,Flatscreen TV,1,300.0,2019-04-12 21:28:00,49 Washington St, Portland,OR,97035 +182222,Lightning Charging Cable,1,14.95,2019-04-07 16:29:00,960 Lakeview St, Seattle,WA,98101 +182223,Apple Airpods Headphones,1,150.0,2019-04-15 14:38:00,422 Cherry St, Atlanta,GA,30301 +182224,AA Batteries (4-pack),1,3.84,2019-04-04 19:20:00,852 6th St, San Francisco,CA,94016 +182225,USB-C Charging Cable,1,11.95,2019-04-09 11:57:00,765 Main St, Boston,MA,02215 +182226,20in Monitor,1,109.99,2019-04-06 06:32:00,396 13th St, Los Angeles,CA,90001 +182227,Lightning Charging Cable,1,14.95,2019-04-18 09:38:00,906 Jackson St, Los Angeles,CA,90001 +182228,AA Batteries (4-pack),1,3.84,2019-04-16 09:02:00,484 1st St, San Francisco,CA,94016 +182229,AAA Batteries (4-pack),1,2.99,2019-04-05 02:02:00,608 Wilson St, Boston,MA,02215 +182230,AA Batteries (4-pack),2,3.84,2019-04-29 07:56:00,467 Walnut St, Seattle,WA,98101 +182231,AA Batteries (4-pack),1,3.84,2019-04-22 14:34:00,672 Church St, Austin,TX,73301 +182232,34in Ultrawide Monitor,1,379.99,2019-04-21 13:22:00,91 Lincoln St, Boston,MA,02215 +182233,Flatscreen TV,1,300.0,2019-04-12 23:55:00,338 Madison St, Los Angeles,CA,90001 +182234,Flatscreen TV,1,300.0,2019-04-17 13:23:00,736 4th St, Atlanta,GA,30301 +182235,AA Batteries (4-pack),3,3.84,2019-04-13 09:12:00,737 8th St, Portland,OR,97035 +182236,AA Batteries (4-pack),1,3.84,2019-04-24 20:48:00,371 12th St, Dallas,TX,75001 +182237,AAA Batteries (4-pack),1,2.99,2019-04-01 22:57:00,289 Jefferson St, New York City,NY,10001 +182238,USB-C Charging Cable,1,11.95,2019-04-14 15:39:00,87 Lake St, Seattle,WA,98101 +182239,Lightning Charging Cable,1,14.95,2019-04-03 10:42:00,935 Hill St, Atlanta,GA,30301 +182240,iPhone,1,700.0,2019-04-27 18:56:00,772 5th St, New York City,NY,10001 +182240,Lightning Charging Cable,1,14.95,2019-04-27 18:56:00,772 5th St, New York City,NY,10001 +182241,USB-C Charging Cable,1,11.95,2019-04-04 13:28:00,794 Cedar St, San Francisco,CA,94016 +182242,USB-C Charging Cable,1,11.95,2019-04-07 13:12:00,485 South St, San Francisco,CA,94016 +182243,AAA Batteries (4-pack),5,2.99,2019-04-24 12:03:00,142 Washington St, Atlanta,GA,30301 +182244,34in Ultrawide Monitor,1,379.99,2019-04-24 23:50:00,718 South St, Atlanta,GA,30301 +182245,USB-C Charging Cable,1,11.95,2019-04-12 02:29:00,765 Jefferson St, San Francisco,CA,94016 +182246,AA Batteries (4-pack),2,3.84,2019-04-13 11:33:00,210 Cherry St, Austin,TX,73301 +182247,27in 4K Gaming Monitor,1,389.99,2019-04-02 20:33:00,335 Church St, Los Angeles,CA,90001 +182248,27in FHD Monitor,1,149.99,2019-04-22 14:48:00,907 Maple St, Dallas,TX,75001 +182249,USB-C Charging Cable,1,11.95,2019-04-10 20:25:00,697 8th St, Los Angeles,CA,90001 +182250,iPhone,1,700.0,2019-04-16 16:14:00,178 Center St, Portland,OR,97035 +182251,34in Ultrawide Monitor,1,379.99,2019-04-16 11:39:00,207 11th St, New York City,NY,10001 +182252,20in Monitor,1,109.99,2019-04-07 11:46:00,557 6th St, Dallas,TX,75001 +182253,AAA Batteries (4-pack),2,2.99,2019-04-29 19:40:00,954 Maple St, Atlanta,GA,30301 +182254,27in FHD Monitor,1,149.99,2019-04-03 11:22:00,694 Adams St, Boston,MA,02215 +182255,Apple Airpods Headphones,1,150.0,2019-04-07 22:02:00,464 Cherry St, New York City,NY,10001 +182256,Bose SoundSport Headphones,1,99.99,2019-04-01 14:58:00,82 5th St, Portland,OR,97035 +182257,Wired Headphones,1,11.99,2019-04-28 19:45:00,814 4th St, Atlanta,GA,30301 +182258,Apple Airpods Headphones,1,150.0,2019-04-24 19:32:00,109 Dogwood St, Atlanta,GA,30301 +182259,Lightning Charging Cable,1,14.95,2019-04-25 20:46:00,663 Dogwood St, Atlanta,GA,30301 +182260,27in 4K Gaming Monitor,1,389.99,2019-04-02 10:31:00,118 Cherry St, Boston,MA,02215 +182261,AA Batteries (4-pack),1,3.84,2019-04-12 18:37:00,778 Jackson St, Dallas,TX,75001 +182262,USB-C Charging Cable,1,11.95,2019-04-15 18:52:00,617 Sunset St, Atlanta,GA,30301 +182263,Apple Airpods Headphones,1,150.0,2019-04-22 17:01:00,301 Hill St, New York City,NY,10001 +182264,iPhone,1,700.0,2019-04-04 18:32:00,455 Park St, Los Angeles,CA,90001 +182265,AA Batteries (4-pack),1,3.84,2019-04-10 12:25:00,70 Willow St, Los Angeles,CA,90001 +182266,USB-C Charging Cable,1,11.95,2019-04-07 08:51:00,472 Hill St, New York City,NY,10001 +182267,Wired Headphones,1,11.99,2019-04-02 15:11:00,280 Main St, San Francisco,CA,94016 +182268,Lightning Charging Cable,1,14.95,2019-04-26 16:12:00,916 7th St, Los Angeles,CA,90001 +182269,Wired Headphones,1,11.99,2019-04-22 16:58:00,514 Johnson St, San Francisco,CA,94016 +182270,27in 4K Gaming Monitor,1,389.99,2019-04-06 19:37:00,441 Maple St, San Francisco,CA,94016 +182271,Apple Airpods Headphones,1,150.0,2019-04-25 14:47:00,736 Hickory St, Boston,MA,02215 +182272,AAA Batteries (4-pack),1,2.99,2019-04-24 14:01:00,533 Willow St, San Francisco,CA,94016 +182273,AAA Batteries (4-pack),2,2.99,2019-04-30 08:30:00,943 12th St, San Francisco,CA,94016 +182274,Wired Headphones,1,11.99,2019-04-01 20:32:00,224 13th St, Portland,OR,97035 +182275,Flatscreen TV,1,300.0,2019-04-27 09:30:00,533 Dogwood St, San Francisco,CA,94016 +182276,AAA Batteries (4-pack),1,2.99,2019-04-08 17:21:00,213 West St, Los Angeles,CA,90001 +182277,27in FHD Monitor,1,149.99,2019-04-21 19:44:00,190 5th St, Boston,MA,02215 +182278,USB-C Charging Cable,1,11.95,2019-04-19 20:33:00,150 Forest St, San Francisco,CA,94016 +182279,AAA Batteries (4-pack),1,2.99,2019-04-28 09:08:00,47 Lakeview St, Los Angeles,CA,90001 +182280,34in Ultrawide Monitor,1,379.99,2019-04-13 17:14:00,710 Lake St, Austin,TX,73301 +182281,Wired Headphones,1,11.99,2019-04-12 22:48:00,860 Chestnut St, Boston,MA,02215 +182282,Wired Headphones,1,11.99,2019-04-07 23:34:00,57 13th St, Seattle,WA,98101 +182283,USB-C Charging Cable,1,11.95,2019-04-10 19:11:00,351 Adams St, Boston,MA,02215 +182284,Bose SoundSport Headphones,1,99.99,2019-04-08 18:55:00,520 Elm St, Boston,MA,02215 +182285,AA Batteries (4-pack),2,3.84,2019-04-13 20:52:00,773 2nd St, New York City,NY,10001 +182286,AA Batteries (4-pack),1,3.84,2019-04-06 08:14:00,364 14th St, Los Angeles,CA,90001 +182287,Wired Headphones,1,11.99,2019-04-22 05:11:00,466 Highland St, New York City,NY,10001 +182288,AA Batteries (4-pack),3,3.84,2019-04-05 18:45:00,945 Cedar St, San Francisco,CA,94016 +182289,AAA Batteries (4-pack),2,2.99,2019-04-26 10:45:00,837 Pine St, Los Angeles,CA,90001 +182290,USB-C Charging Cable,1,11.95,2019-04-22 13:14:00,705 4th St, Los Angeles,CA,90001 +182291,Lightning Charging Cable,1,14.95,2019-04-24 16:00:00,547 Adams St, San Francisco,CA,94016 +182292,Wired Headphones,2,11.99,2019-04-01 17:41:00,921 Forest St, San Francisco,CA,94016 +182293,AA Batteries (4-pack),1,3.84,2019-04-12 12:06:00,453 Walnut St, San Francisco,CA,94016 +182294,Lightning Charging Cable,2,14.95,2019-04-14 09:50:00,314 Sunset St, San Francisco,CA,94016 +182295,AAA Batteries (4-pack),1,2.99,2019-04-29 20:27:00,560 Washington St, Boston,MA,02215 +182296,27in FHD Monitor,1,149.99,2019-04-12 16:58:00,220 West St, Boston,MA,02215 +182297,Wired Headphones,1,11.99,2019-04-10 20:39:00,465 Willow St, New York City,NY,10001 +182298,Wired Headphones,1,11.99,2019-04-26 08:44:00,64 Willow St, Boston,MA,02215 +182299,Lightning Charging Cable,1,14.95,2019-04-26 09:07:00,833 North St, Boston,MA,02215 +182300,Apple Airpods Headphones,1,150.0,2019-04-04 13:25:00,4 9th St, Seattle,WA,98101 +182301,AA Batteries (4-pack),1,3.84,2019-04-30 23:32:00,896 Wilson St, San Francisco,CA,94016 +182302,AA Batteries (4-pack),3,3.84,2019-04-22 11:30:00,586 4th St, Los Angeles,CA,90001 +182303,AA Batteries (4-pack),2,3.84,2019-04-07 21:12:00,340 River St, San Francisco,CA,94016 +182304,Wired Headphones,1,11.99,2019-04-18 18:29:00,795 Chestnut St, Seattle,WA,98101 +182305,USB-C Charging Cable,1,11.95,2019-04-21 18:16:00,659 Church St, Los Angeles,CA,90001 +182306,Wired Headphones,1,11.99,2019-04-05 14:45:00,181 Cherry St, San Francisco,CA,94016 +182307,Wired Headphones,1,11.99,2019-04-03 17:36:00,413 West St, New York City,NY,10001 +182308,27in 4K Gaming Monitor,1,389.99,2019-04-09 00:45:00,109 Park St, Dallas,TX,75001 +182309,27in 4K Gaming Monitor,1,389.99,2019-04-25 00:06:00,195 Adams St, Austin,TX,73301 +182310,Lightning Charging Cable,1,14.95,2019-04-10 13:04:00,929 Forest St, Los Angeles,CA,90001 +182311,AAA Batteries (4-pack),1,2.99,2019-04-15 19:04:00,381 7th St, San Francisco,CA,94016 +182312,iPhone,1,700.0,2019-04-24 08:40:00,739 Sunset St, Portland,OR,97035 +182313,Lightning Charging Cable,1,14.95,2019-04-29 03:33:00,380 Hill St, Portland,OR,97035 +182314,Lightning Charging Cable,1,14.95,2019-04-26 14:35:00,340 South St, Dallas,TX,75001 +182315,Apple Airpods Headphones,1,150.0,2019-04-25 22:21:00,865 Madison St, San Francisco,CA,94016 +182316,Lightning Charging Cable,1,14.95,2019-04-29 14:28:00,709 Center St, San Francisco,CA,94016 +182317,Lightning Charging Cable,1,14.95,2019-04-12 15:18:00,432 Lakeview St, San Francisco,CA,94016 +182318,Wired Headphones,1,11.99,2019-04-08 15:33:00,645 12th St, San Francisco,CA,94016 +182319,27in FHD Monitor,1,149.99,2019-04-30 18:49:00,7 Jackson St, New York City,NY,10001 +182320,AAA Batteries (4-pack),2,2.99,2019-04-10 18:18:00,351 Cherry St, San Francisco,CA,94016 +182321,Apple Airpods Headphones,1,150.0,2019-04-13 21:56:00,949 Elm St, Seattle,WA,98101 +182322,AAA Batteries (4-pack),1,2.99,2019-04-30 10:44:00,715 7th St, Dallas,TX,75001 +182323,Flatscreen TV,1,300.0,2019-04-22 17:19:00,39 Hill St, Boston,MA,02215 +182324,20in Monitor,1,109.99,2019-04-13 16:57:00,74 Wilson St, Los Angeles,CA,90001 +182325,Google Phone,1,600.0,2019-04-09 22:15:00,799 Cherry St, Portland,OR,97035 +182326,USB-C Charging Cable,1,11.95,2019-04-02 20:40:00,549 Chestnut St, Portland,OR,97035 +182327,ThinkPad Laptop,1,999.99,2019-04-27 17:35:00,568 Hickory St, Boston,MA,02215 +182328,AA Batteries (4-pack),1,3.84,2019-04-05 18:37:00,596 13th St, Austin,TX,73301 +182329,Wired Headphones,1,11.99,2019-04-20 17:43:00,704 Madison St, Boston,MA,02215 +182330,AAA Batteries (4-pack),1,2.99,2019-04-12 16:32:00,5 South St, Dallas,TX,75001 +182331,Lightning Charging Cable,1,14.95,2019-04-30 00:06:00,668 7th St, Dallas,TX,75001 +182332,Lightning Charging Cable,1,14.95,2019-04-11 19:00:00,592 Hill St, Boston,MA,02215 +182333,Apple Airpods Headphones,1,150.0,2019-04-14 16:00:00,143 Park St, New York City,NY,10001 +182334,Macbook Pro Laptop,1,1700.0,2019-04-20 17:15:00,834 Park St, New York City,NY,10001 +182335,AA Batteries (4-pack),1,3.84,2019-04-08 09:14:00,128 1st St, Atlanta,GA,30301 +182336,Wired Headphones,1,11.99,2019-04-11 05:09:00,722 6th St, New York City,NY,10001 +182337,AAA Batteries (4-pack),2,2.99,2019-04-08 14:28:00,31 Jefferson St, Atlanta,GA,30301 +182338,AA Batteries (4-pack),2,3.84,2019-04-13 10:31:00,484 Pine St, New York City,NY,10001 +182339,Apple Airpods Headphones,1,150.0,2019-04-21 15:16:00,295 Washington St, Boston,MA,02215 +182340,USB-C Charging Cable,1,11.95,2019-04-27 16:57:00,414 River St, San Francisco,CA,94016 +182341,AA Batteries (4-pack),3,3.84,2019-04-25 18:48:00,638 Cedar St, Los Angeles,CA,90001 +182342,27in FHD Monitor,1,149.99,2019-04-25 23:04:00,315 Pine St, Boston,MA,02215 +182343,iPhone,1,700.0,2019-04-27 18:06:00,848 Chestnut St, Dallas,TX,75001 +182344,Lightning Charging Cable,1,14.95,2019-04-07 00:25:00,950 Johnson St, New York City,NY,10001 +182345,AA Batteries (4-pack),1,3.84,2019-04-08 16:25:00,521 Cedar St, Los Angeles,CA,90001 +182346,20in Monitor,1,109.99,2019-04-12 10:54:00,389 Lincoln St, San Francisco,CA,94016 +182347,27in FHD Monitor,1,149.99,2019-04-23 15:41:00,623 Hickory St, Portland,OR,97035 +182348,AAA Batteries (4-pack),2,2.99,2019-04-09 16:41:00,714 14th St, Los Angeles,CA,90001 +182349,USB-C Charging Cable,1,11.95,2019-04-25 17:16:00,127 Madison St, New York City,NY,10001 +182350,Bose SoundSport Headphones,1,99.99,2019-04-06 00:53:00,552 South St, San Francisco,CA,94016 +182351,Bose SoundSport Headphones,1,99.99,2019-04-24 22:41:00,811 2nd St, San Francisco,CA,94016 +182352,Bose SoundSport Headphones,1,99.99,2019-04-28 02:40:00,161 Lakeview St, Los Angeles,CA,90001 +182353,AA Batteries (4-pack),1,3.84,2019-04-12 19:52:00,597 Washington St, Los Angeles,CA,90001 +182354,AA Batteries (4-pack),1,3.84,2019-04-05 12:22:00,630 9th St, Portland,ME,04101 +182355,USB-C Charging Cable,1,11.95,2019-04-29 14:35:00,291 Elm St, Los Angeles,CA,90001 +182356,Lightning Charging Cable,1,14.95,2019-04-23 13:23:00,691 2nd St, New York City,NY,10001 +182357,27in FHD Monitor,1,149.99,2019-04-18 21:37:00,33 5th St, Seattle,WA,98101 +182358,AA Batteries (4-pack),1,3.84,2019-04-17 20:44:00,699 9th St, Los Angeles,CA,90001 +182359,Lightning Charging Cable,1,14.95,2019-04-10 23:01:00,56 Dogwood St, Atlanta,GA,30301 +182360,Lightning Charging Cable,1,14.95,2019-04-02 19:16:00,295 Main St, Los Angeles,CA,90001 +182361,USB-C Charging Cable,1,11.95,2019-04-21 17:09:00,992 Chestnut St, Seattle,WA,98101 +182362,27in 4K Gaming Monitor,1,389.99,2019-04-26 00:51:00,236 Wilson St, San Francisco,CA,94016 +182363,USB-C Charging Cable,1,11.95,2019-04-15 13:39:00,580 Ridge St, Portland,OR,97035 +182364,Wired Headphones,1,11.99,2019-04-13 12:01:00,33 11th St, San Francisco,CA,94016 +182365,AAA Batteries (4-pack),2,2.99,2019-04-08 22:29:00,468 10th St, Dallas,TX,75001 +182366,USB-C Charging Cable,1,11.95,2019-04-20 20:45:00,114 5th St, San Francisco,CA,94016 +182367,Lightning Charging Cable,1,14.95,2019-04-19 10:11:00,877 Cherry St, Los Angeles,CA,90001 +182368,Bose SoundSport Headphones,1,99.99,2019-04-18 13:17:00,286 Church St, Atlanta,GA,30301 +182369,Flatscreen TV,1,300.0,2019-04-03 02:37:00,366 Chestnut St, San Francisco,CA,94016 +182370,ThinkPad Laptop,1,999.99,2019-04-13 15:13:00,843 Park St, Los Angeles,CA,90001 +182371,Wired Headphones,1,11.99,2019-04-17 08:34:00,771 Highland St, Los Angeles,CA,90001 +182372,Lightning Charging Cable,1,14.95,2019-04-26 16:28:00,996 2nd St, Los Angeles,CA,90001 +182373,AA Batteries (4-pack),1,3.84,2019-04-16 08:42:00,512 Lakeview St, Seattle,WA,98101 +182374,iPhone,1,700.0,2019-04-02 00:00:00,414 5th St, Portland,OR,97035 +182374,Apple Airpods Headphones,1,150.0,2019-04-02 00:00:00,414 5th St, Portland,OR,97035 +182375,Bose SoundSport Headphones,1,99.99,2019-04-17 17:30:00,923 Hill St, San Francisco,CA,94016 +182376,Bose SoundSport Headphones,1,99.99,2019-04-27 08:13:00,624 10th St, San Francisco,CA,94016 +182377,20in Monitor,1,109.99,2019-04-02 21:15:00,545 Jefferson St, New York City,NY,10001 +182378,Lightning Charging Cable,1,14.95,2019-04-27 17:02:00,636 Pine St, Portland,OR,97035 +182379,27in 4K Gaming Monitor,1,389.99,2019-04-27 08:18:00,959 Church St, Boston,MA,02215 +182380,Wired Headphones,2,11.99,2019-04-30 20:41:00,466 2nd St, Boston,MA,02215 +182381,Apple Airpods Headphones,1,150.0,2019-04-02 19:21:00,623 Jefferson St, Los Angeles,CA,90001 +182382,Flatscreen TV,1,300.0,2019-04-25 11:47:00,874 13th St, Seattle,WA,98101 +182383,20in Monitor,1,109.99,2019-04-11 09:04:00,250 9th St, Portland,OR,97035 +182384,AAA Batteries (4-pack),1,2.99,2019-04-21 08:38:00,870 North St, San Francisco,CA,94016 +182385,AA Batteries (4-pack),1,3.84,2019-04-30 01:03:00,858 Maple St, Los Angeles,CA,90001 +182385,Apple Airpods Headphones,1,150.0,2019-04-30 01:03:00,858 Maple St, Los Angeles,CA,90001 +182386,AA Batteries (4-pack),1,3.84,2019-04-18 17:35:00,626 South St, Austin,TX,73301 +182386,USB-C Charging Cable,1,11.95,2019-04-18 17:35:00,626 South St, Austin,TX,73301 +182387,AA Batteries (4-pack),1,3.84,2019-04-07 21:03:00,609 2nd St, Los Angeles,CA,90001 +182388,Wired Headphones,1,11.99,2019-04-26 16:32:00,941 Lake St, Seattle,WA,98101 +182389,Apple Airpods Headphones,1,150.0,2019-04-10 08:51:00,361 Dogwood St, San Francisco,CA,94016 +182390,Lightning Charging Cable,1,14.95,2019-04-23 20:31:00,836 Chestnut St, Los Angeles,CA,90001 +182391,iPhone,1,700.0,2019-04-02 15:43:00,389 Church St, Atlanta,GA,30301 +182392,Wired Headphones,1,11.99,2019-04-20 12:15:00,232 Sunset St, Austin,TX,73301 +182393,Apple Airpods Headphones,1,150.0,2019-04-29 00:36:00,32 Johnson St, New York City,NY,10001 +182394,Bose SoundSport Headphones,1,99.99,2019-04-08 22:32:00,51 Forest St, Portland,OR,97035 +182395,Wired Headphones,1,11.99,2019-04-30 18:55:00,90 River St, Seattle,WA,98101 +182396,USB-C Charging Cable,1,11.95,2019-04-17 12:49:00,2 Walnut St, Atlanta,GA,30301 +182397,Macbook Pro Laptop,1,1700.0,2019-04-05 19:08:00,333 9th St, San Francisco,CA,94016 +182398,34in Ultrawide Monitor,1,379.99,2019-04-14 14:25:00,524 10th St, New York City,NY,10001 +182399,34in Ultrawide Monitor,1,379.99,2019-04-03 10:13:00,724 Adams St, San Francisco,CA,94016 +182400,Wired Headphones,1,11.99,2019-04-02 00:37:00,967 North St, Austin,TX,73301 +182401,Wired Headphones,1,11.99,2019-04-28 16:27:00,963 Madison St, New York City,NY,10001 +182402,AAA Batteries (4-pack),3,2.99,2019-04-09 20:41:00,147 Willow St, New York City,NY,10001 +182403,27in 4K Gaming Monitor,1,389.99,2019-04-22 12:10:00,901 Spruce St, Dallas,TX,75001 +182404,34in Ultrawide Monitor,1,379.99,2019-04-01 13:10:00,620 4th St, San Francisco,CA,94016 +182405,27in FHD Monitor,1,149.99,2019-04-29 06:54:00,874 Lake St, Dallas,TX,75001 +182406,USB-C Charging Cable,1,11.95,2019-04-07 09:37:00,628 Jackson St, Boston,MA,02215 +182407,iPhone,1,700.0,2019-04-10 07:18:00,691 Elm St, Portland,OR,97035 +182408,Apple Airpods Headphones,1,150.0,2019-04-01 10:48:00,560 Lincoln St, Atlanta,GA,30301 +182409,USB-C Charging Cable,1,11.95,2019-04-14 21:17:00,424 Madison St, San Francisco,CA,94016 +182410,Wired Headphones,1,11.99,2019-04-19 09:31:00,990 Hill St, Seattle,WA,98101 +182411,AA Batteries (4-pack),2,3.84,2019-04-20 13:16:00,273 12th St, San Francisco,CA,94016 +182412,USB-C Charging Cable,1,11.95,2019-04-02 12:42:00,46 Johnson St, Austin,TX,73301 +182413,AA Batteries (4-pack),1,3.84,2019-04-03 07:07:00,267 Madison St, Boston,MA,02215 +182414,AAA Batteries (4-pack),2,2.99,2019-04-10 21:50:00,729 West St, Boston,MA,02215 +182415,AA Batteries (4-pack),1,3.84,2019-04-21 02:09:00,652 2nd St, Boston,MA,02215 +182416,AAA Batteries (4-pack),1,2.99,2019-04-02 13:26:00,633 4th St, Boston,MA,02215 +182417,iPhone,1,700.0,2019-04-04 07:42:00,610 Meadow St, San Francisco,CA,94016 +182418,AA Batteries (4-pack),2,3.84,2019-04-07 23:13:00,406 Sunset St, New York City,NY,10001 +182419,AAA Batteries (4-pack),1,2.99,2019-04-09 09:58:00,986 Hickory St, Seattle,WA,98101 +182420,iPhone,1,700.0,2019-04-08 12:55:00,253 River St, Atlanta,GA,30301 +182420,Apple Airpods Headphones,1,150.0,2019-04-08 12:55:00,253 River St, Atlanta,GA,30301 +182421,USB-C Charging Cable,1,11.95,2019-04-09 12:46:00,411 Meadow St, New York City,NY,10001 +182422,AAA Batteries (4-pack),1,2.99,2019-04-09 11:07:00,25 Jackson St, Los Angeles,CA,90001 +182423,Wired Headphones,1,11.99,2019-04-04 16:16:00,966 North St, Los Angeles,CA,90001 +182424,34in Ultrawide Monitor,1,379.99,2019-04-09 14:23:00,860 Meadow St, San Francisco,CA,94016 +182425,Lightning Charging Cable,1,14.95,2019-04-04 14:13:00,70 2nd St, Portland,OR,97035 +182426,Lightning Charging Cable,1,14.95,2019-04-20 00:03:00,509 Johnson St, San Francisco,CA,94016 +182427,Bose SoundSport Headphones,1,99.99,2019-04-28 21:20:00,438 10th St, Los Angeles,CA,90001 +182428,Google Phone,1,600.0,2019-04-16 15:18:00,510 Wilson St, Boston,MA,02215 +182428,USB-C Charging Cable,1,11.95,2019-04-16 15:18:00,510 Wilson St, Boston,MA,02215 +182429,Macbook Pro Laptop,1,1700.0,2019-04-07 13:27:00,985 Lakeview St, San Francisco,CA,94016 +182430,AA Batteries (4-pack),1,3.84,2019-04-12 02:03:00,351 2nd St, Austin,TX,73301 +182431,Apple Airpods Headphones,1,150.0,2019-04-02 15:48:00,976 Ridge St, San Francisco,CA,94016 +182432,Lightning Charging Cable,1,14.95,2019-04-24 07:00:00,970 Adams St, Atlanta,GA,30301 +182433,USB-C Charging Cable,1,11.95,2019-04-25 14:02:00,198 10th St, Seattle,WA,98101 +182434,ThinkPad Laptop,1,999.99,2019-04-25 17:59:00,965 Sunset St, Boston,MA,02215 +182435,AAA Batteries (4-pack),1,2.99,2019-04-19 11:13:00,504 Pine St, Atlanta,GA,30301 +182436,Lightning Charging Cable,1,14.95,2019-04-06 13:36:00,491 Center St, San Francisco,CA,94016 +182437,Macbook Pro Laptop,1,1700.0,2019-04-18 11:56:00,782 Willow St, Boston,MA,02215 +182438,Wired Headphones,1,11.99,2019-04-26 21:52:00,927 Park St, Los Angeles,CA,90001 +182439,AAA Batteries (4-pack),1,2.99,2019-04-02 10:05:00,583 Elm St, Los Angeles,CA,90001 +182440,27in FHD Monitor,1,149.99,2019-04-07 08:32:00,283 Wilson St, Austin,TX,73301 +182441,USB-C Charging Cable,1,11.95,2019-04-28 15:25:00,569 12th St, San Francisco,CA,94016 +182442,AAA Batteries (4-pack),1,2.99,2019-04-18 22:34:00,842 Lincoln St, San Francisco,CA,94016 +182443,iPhone,1,700.0,2019-04-30 11:06:00,386 1st St, Dallas,TX,75001 +182443,Lightning Charging Cable,1,14.95,2019-04-30 11:06:00,386 1st St, Dallas,TX,75001 +182444,iPhone,1,700.0,2019-04-11 10:15:00,722 Main St, Los Angeles,CA,90001 +182445,USB-C Charging Cable,1,11.95,2019-04-14 20:35:00,259 Johnson St, Portland,OR,97035 +182446,Google Phone,1,600.0,2019-04-07 17:54:00,191 Lake St, Boston,MA,02215 +182447,Wired Headphones,1,11.99,2019-04-11 12:01:00,471 Maple St, Boston,MA,02215 +182448,AAA Batteries (4-pack),4,2.99,2019-04-07 08:52:00,456 Dogwood St, Atlanta,GA,30301 +182449,Apple Airpods Headphones,1,150.0,2019-04-29 00:18:00,923 North St, Los Angeles,CA,90001 +182450,AAA Batteries (4-pack),1,2.99,2019-04-23 10:22:00,167 Center St, San Francisco,CA,94016 +182451,27in FHD Monitor,1,149.99,2019-04-12 15:10:00,510 North St, Boston,MA,02215 +182452,Lightning Charging Cable,1,14.95,2019-04-11 16:08:00,517 7th St, Los Angeles,CA,90001 +182453,34in Ultrawide Monitor,1,379.99,2019-04-25 16:53:00,550 Madison St, Portland,OR,97035 +182454,Wired Headphones,1,11.99,2019-04-29 11:12:00,294 Pine St, Dallas,TX,75001 +182455,AAA Batteries (4-pack),1,2.99,2019-04-25 09:26:00,754 1st St, Los Angeles,CA,90001 +182456,Bose SoundSport Headphones,1,99.99,2019-04-15 18:07:00,899 8th St, San Francisco,CA,94016 +182457,34in Ultrawide Monitor,1,379.99,2019-04-04 08:08:00,698 Center St, Boston,MA,02215 +182458,Wired Headphones,1,11.99,2019-04-30 17:37:00,387 7th St, Dallas,TX,75001 +182459,Wired Headphones,1,11.99,2019-04-28 12:40:00,787 4th St, Los Angeles,CA,90001 +182460,AA Batteries (4-pack),1,3.84,2019-04-26 20:15:00,83 Center St, Boston,MA,02215 +182461,Flatscreen TV,1,300.0,2019-04-26 16:05:00,438 4th St, San Francisco,CA,94016 +182462,Bose SoundSport Headphones,1,99.99,2019-04-13 12:03:00,269 Hickory St, Portland,OR,97035 +182463,AA Batteries (4-pack),1,3.84,2019-04-11 13:04:00,531 Maple St, Dallas,TX,75001 +182464,AA Batteries (4-pack),3,3.84,2019-04-06 10:42:00,300 6th St, Boston,MA,02215 +182465,Apple Airpods Headphones,1,150.0,2019-04-20 09:08:00,914 Forest St, San Francisco,CA,94016 +182466,Lightning Charging Cable,1,14.95,2019-04-11 11:48:00,13 Jackson St, San Francisco,CA,94016 +182467,LG Dryer,1,600.0,2019-04-12 15:34:00,571 Hill St, Boston,MA,02215 +182468,AAA Batteries (4-pack),1,2.99,2019-04-13 17:33:00,567 Maple St, New York City,NY,10001 +182469,Vareebadd Phone,1,400.0,2019-04-25 21:27:00,693 11th St, Los Angeles,CA,90001 +182470,AAA Batteries (4-pack),2,2.99,2019-04-13 22:42:00,487 Jackson St, Seattle,WA,98101 +182471,Lightning Charging Cable,1,14.95,2019-04-04 11:45:00,776 Main St, Atlanta,GA,30301 +182472,34in Ultrawide Monitor,1,379.99,2019-04-13 17:24:00,626 1st St, San Francisco,CA,94016 +182473,AA Batteries (4-pack),2,3.84,2019-04-15 14:44:00,441 Chestnut St, San Francisco,CA,94016 +182474,Lightning Charging Cable,1,14.95,2019-04-23 10:28:00,691 Hickory St, New York City,NY,10001 +182475,Flatscreen TV,1,300.0,2019-04-27 06:18:00,433 Maple St, New York City,NY,10001 +182476,AAA Batteries (4-pack),1,2.99,2019-04-02 00:52:00,674 4th St, San Francisco,CA,94016 +182477,AAA Batteries (4-pack),1,2.99,2019-04-27 09:20:00,556 Chestnut St, San Francisco,CA,94016 +182478,Wired Headphones,1,11.99,2019-04-09 20:16:00,907 Highland St, New York City,NY,10001 +182479,Lightning Charging Cable,1,14.95,2019-04-16 15:44:00,772 Forest St, Atlanta,GA,30301 +182480,27in FHD Monitor,1,149.99,2019-04-05 07:39:00,707 11th St, Portland,OR,97035 +182481,iPhone,1,700.0,2019-04-13 09:32:00,792 River St, Dallas,TX,75001 +182482,ThinkPad Laptop,1,999.99,2019-04-24 14:59:00,178 Park St, Los Angeles,CA,90001 +182483,AAA Batteries (4-pack),1,2.99,2019-04-22 12:36:00,615 Cedar St, San Francisco,CA,94016 +182484,AA Batteries (4-pack),1,3.84,2019-04-20 09:19:00,977 Hill St, New York City,NY,10001 +182485,USB-C Charging Cable,3,11.95,2019-04-11 11:30:00,739 Walnut St, Boston,MA,02215 +182486,Lightning Charging Cable,1,14.95,2019-04-24 01:22:00,874 6th St, Los Angeles,CA,90001 +182487,Lightning Charging Cable,1,14.95,2019-04-04 17:41:00,726 9th St, Los Angeles,CA,90001 +182488,27in FHD Monitor,1,149.99,2019-04-14 21:10:00,913 Church St, Boston,MA,02215 +182489,Wired Headphones,1,11.99,2019-04-27 04:01:00,264 North St, Portland,OR,97035 +182490,Lightning Charging Cable,1,14.95,2019-04-27 13:46:00,114 Adams St, San Francisco,CA,94016 +182491,iPhone,1,700.0,2019-04-05 22:26:00,912 9th St, San Francisco,CA,94016 +182492,USB-C Charging Cable,1,11.95,2019-04-11 11:22:00,254 Spruce St, New York City,NY,10001 +182493,USB-C Charging Cable,1,11.95,2019-04-06 10:12:00,962 Meadow St, Los Angeles,CA,90001 +182494,USB-C Charging Cable,1,11.95,2019-04-20 21:34:00,396 Lakeview St, Dallas,TX,75001 +182495,Macbook Pro Laptop,1,1700.0,2019-04-18 18:40:00,981 Spruce St, San Francisco,CA,94016 +182496,AAA Batteries (4-pack),2,2.99,2019-04-19 11:08:00,478 Elm St, Atlanta,GA,30301 +182497,Bose SoundSport Headphones,1,99.99,2019-04-07 10:35:00,197 5th St, Boston,MA,02215 +182498,USB-C Charging Cable,1,11.95,2019-04-28 19:13:00,680 Main St, Boston,MA,02215 +182499,Flatscreen TV,1,300.0,2019-04-14 20:50:00,470 7th St, New York City,NY,10001 +182500,AA Batteries (4-pack),3,3.84,2019-04-02 17:33:00,103 North St, Dallas,TX,75001 +182501,Google Phone,1,600.0,2019-04-18 14:43:00,953 5th St, Portland,OR,97035 +182501,USB-C Charging Cable,1,11.95,2019-04-18 14:43:00,953 5th St, Portland,OR,97035 +182502,AAA Batteries (4-pack),1,2.99,2019-04-25 16:28:00,105 5th St, Los Angeles,CA,90001 +182503,34in Ultrawide Monitor,1,379.99,2019-04-22 13:31:00,643 Lincoln St, Los Angeles,CA,90001 +182504,Bose SoundSport Headphones,1,99.99,2019-04-02 18:01:00,900 River St, Los Angeles,CA,90001 +182505,AA Batteries (4-pack),3,3.84,2019-04-01 19:43:00,596 Lake St, San Francisco,CA,94016 +182506,AAA Batteries (4-pack),2,2.99,2019-04-04 18:53:00,504 Sunset St, Los Angeles,CA,90001 +182507,Wired Headphones,1,11.99,2019-04-27 21:46:00,298 Walnut St, San Francisco,CA,94016 +182508,AA Batteries (4-pack),3,3.84,2019-04-20 18:50:00,857 Hickory St, Portland,OR,97035 +182509,Apple Airpods Headphones,1,150.0,2019-04-02 18:30:00,512 Wilson St, San Francisco,CA,94016 +182510,Apple Airpods Headphones,1,150.0,2019-04-26 05:19:00,920 Lakeview St, Los Angeles,CA,90001 +182511,AA Batteries (4-pack),1,3.84,2019-04-08 18:00:00,846 6th St, Los Angeles,CA,90001 +182512,Apple Airpods Headphones,1,150.0,2019-04-29 17:26:00,236 Cherry St, Los Angeles,CA,90001 +182513,AA Batteries (4-pack),1,3.84,2019-04-07 14:01:00,34 Church St, Los Angeles,CA,90001 +182514,Flatscreen TV,1,300.0,2019-04-08 19:28:00,536 Jefferson St, Atlanta,GA,30301 +182515,AA Batteries (4-pack),1,3.84,2019-04-09 01:14:00,763 Wilson St, Atlanta,GA,30301 +182516,Wired Headphones,1,11.99,2019-04-13 09:18:00,333 7th St, San Francisco,CA,94016 +182517,Apple Airpods Headphones,1,150.0,2019-04-23 12:30:00,694 5th St, San Francisco,CA,94016 +182518,USB-C Charging Cable,1,11.95,2019-04-30 15:13:00,757 Sunset St, Los Angeles,CA,90001 +182519,ThinkPad Laptop,1,999.99,2019-04-29 11:44:00,290 Ridge St, San Francisco,CA,94016 +182520,Wired Headphones,2,11.99,2019-04-01 11:24:00,649 Elm St, San Francisco,CA,94016 +182521,Wired Headphones,1,11.99,2019-04-23 09:27:00,38 Main St, Dallas,TX,75001 +182522,Apple Airpods Headphones,1,150.0,2019-04-11 11:54:00,251 Maple St, Seattle,WA,98101 +182523,iPhone,1,700.0,2019-04-24 21:16:00,990 River St, Boston,MA,02215 +182523,Lightning Charging Cable,1,14.95,2019-04-24 21:16:00,990 River St, Boston,MA,02215 +182524,Bose SoundSport Headphones,1,99.99,2019-04-26 18:02:00,933 10th St, Atlanta,GA,30301 +182525,ThinkPad Laptop,1,999.99,2019-04-10 10:36:00,972 Forest St, San Francisco,CA,94016 +182526,34in Ultrawide Monitor,1,379.99,2019-04-26 10:29:00,567 Main St, Austin,TX,73301 +182527,Google Phone,1,600.0,2019-04-19 22:42:00,276 Main St, Portland,OR,97035 +182528,AA Batteries (4-pack),1,3.84,2019-04-08 16:49:00,343 River St, San Francisco,CA,94016 +182529,AAA Batteries (4-pack),1,2.99,2019-04-13 20:10:00,46 Jackson St, San Francisco,CA,94016 +182530,iPhone,1,700.0,2019-04-04 09:11:00,485 North St, Los Angeles,CA,90001 +182530,Lightning Charging Cable,1,14.95,2019-04-04 09:11:00,485 North St, Los Angeles,CA,90001 +182531,USB-C Charging Cable,1,11.95,2019-04-13 22:05:00,254 Cedar St, Austin,TX,73301 +182532,AA Batteries (4-pack),1,3.84,2019-04-19 23:50:00,123 Lincoln St, New York City,NY,10001 +182533,Macbook Pro Laptop,1,1700.0,2019-04-09 02:26:00,265 Lincoln St, Los Angeles,CA,90001 +182534,AA Batteries (4-pack),1,3.84,2019-04-18 16:11:00,138 Hickory St, Austin,TX,73301 +182535,Lightning Charging Cable,2,14.95,2019-04-12 20:48:00,672 Forest St, San Francisco,CA,94016 +182536,27in 4K Gaming Monitor,1,389.99,2019-04-15 00:03:00,213 Highland St, San Francisco,CA,94016 +182537,iPhone,1,700.0,2019-04-18 16:31:00,525 7th St, Dallas,TX,75001 +182538,AAA Batteries (4-pack),4,2.99,2019-04-23 22:06:00,516 6th St, Atlanta,GA,30301 +182539,AA Batteries (4-pack),2,3.84,2019-04-15 13:40:00,621 Willow St, Portland,OR,97035 +182540,Bose SoundSport Headphones,1,99.99,2019-04-26 12:20:00,869 Highland St, New York City,NY,10001 +182541,AAA Batteries (4-pack),1,2.99,2019-04-18 17:54:00,918 Ridge St, Boston,MA,02215 +182542,Lightning Charging Cable,1,14.95,2019-04-30 23:49:00,79 Willow St, New York City,NY,10001 +182543,20in Monitor,1,109.99,2019-04-12 12:31:00,886 12th St, New York City,NY,10001 +182544,27in FHD Monitor,1,149.99,2019-04-29 11:43:00,334 Wilson St, San Francisco,CA,94016 +182545,Lightning Charging Cable,1,14.95,2019-04-28 12:30:00,818 6th St, Boston,MA,02215 +182546,Lightning Charging Cable,1,14.95,2019-04-11 23:27:00,631 Hickory St, New York City,NY,10001 +182547,ThinkPad Laptop,1,999.99,2019-04-03 14:48:00,522 Hill St, San Francisco,CA,94016 +182548,Apple Airpods Headphones,1,150.0,2019-04-15 13:49:00,111 Madison St, Los Angeles,CA,90001 +182549,Wired Headphones,1,11.99,2019-04-21 18:57:00,367 Church St, New York City,NY,10001 +182550,ThinkPad Laptop,1,999.99,2019-04-02 14:42:00,111 Washington St, Los Angeles,CA,90001 +182551,Lightning Charging Cable,1,14.95,2019-04-10 12:12:00,876 Meadow St, San Francisco,CA,94016 +182552,iPhone,1,700.0,2019-04-27 11:42:00,500 9th St, Boston,MA,02215 +182553,AA Batteries (4-pack),1,3.84,2019-04-12 15:49:00,218 10th St, Boston,MA,02215 +182554,27in FHD Monitor,1,149.99,2019-04-15 17:16:00,481 Wilson St, Seattle,WA,98101 +182555,AAA Batteries (4-pack),1,2.99,2019-04-30 04:16:00,895 River St, San Francisco,CA,94016 +182556,AAA Batteries (4-pack),3,2.99,2019-04-27 10:55:00,671 Church St, Austin,TX,73301 +182557,USB-C Charging Cable,1,11.95,2019-04-06 13:23:00,498 4th St, Los Angeles,CA,90001 +182558,27in 4K Gaming Monitor,1,389.99,2019-04-28 12:49:00,822 Johnson St, Atlanta,GA,30301 +182559,Wired Headphones,1,11.99,2019-04-28 11:58:00,639 Lake St, Los Angeles,CA,90001 +182560,USB-C Charging Cable,1,11.95,2019-04-11 17:06:00,636 Jackson St, Dallas,TX,75001 +182561,ThinkPad Laptop,1,999.99,2019-04-11 09:00:00,634 8th St, Boston,MA,02215 +182562,Lightning Charging Cable,1,14.95,2019-04-17 16:12:00,6 West St, New York City,NY,10001 +182563,27in 4K Gaming Monitor,1,389.99,2019-04-20 17:41:00,687 Dogwood St, San Francisco,CA,94016 +182564,AAA Batteries (4-pack),1,2.99,2019-04-30 11:38:00,776 Walnut St, New York City,NY,10001 +182565,Bose SoundSport Headphones,1,99.99,2019-04-18 15:54:00,494 8th St, San Francisco,CA,94016 +182566,Bose SoundSport Headphones,1,99.99,2019-04-16 15:06:00,560 Maple St, New York City,NY,10001 +182567,Vareebadd Phone,1,400.0,2019-04-10 09:54:00,629 Park St, Seattle,WA,98101 +182568,iPhone,1,700.0,2019-04-26 20:34:00,641 River St, New York City,NY,10001 +182568,Apple Airpods Headphones,1,150.0,2019-04-26 20:34:00,641 River St, New York City,NY,10001 +182569,Vareebadd Phone,1,400.0,2019-04-21 12:44:00,128 Forest St, Los Angeles,CA,90001 +182570,AAA Batteries (4-pack),1,2.99,2019-04-09 08:42:00,142 Lake St, San Francisco,CA,94016 +182571,Wired Headphones,1,11.99,2019-04-02 15:23:00,371 Cherry St, Boston,MA,02215 +182572,Flatscreen TV,1,300.0,2019-04-06 19:39:00,547 Willow St, San Francisco,CA,94016 +182573,Lightning Charging Cable,1,14.95,2019-04-25 11:32:00,643 Johnson St, San Francisco,CA,94016 +182574,USB-C Charging Cable,1,11.95,2019-04-19 14:04:00,679 Main St, Dallas,TX,75001 +182575,Lightning Charging Cable,1,14.95,2019-04-12 19:43:00,544 South St, Los Angeles,CA,90001 +182576,27in FHD Monitor,1,149.99,2019-04-07 09:04:00,918 1st St, Los Angeles,CA,90001 +182577,AAA Batteries (4-pack),1,2.99,2019-04-25 16:50:00,999 5th St, Portland,OR,97035 +182578,Wired Headphones,1,11.99,2019-04-30 09:23:00,291 7th St, San Francisco,CA,94016 +182579,AA Batteries (4-pack),2,3.84,2019-04-21 22:58:00,929 Jefferson St, Portland,ME,04101 +182580,Lightning Charging Cable,2,14.95,2019-04-04 12:20:00,918 Wilson St, San Francisco,CA,94016 +182581,Google Phone,1,600.0,2019-04-10 15:24:00,778 River St, Boston,MA,02215 +182582,Apple Airpods Headphones,1,150.0,2019-04-03 09:46:00,976 Walnut St, Los Angeles,CA,90001 +182583,Flatscreen TV,1,300.0,2019-04-19 12:41:00,495 Johnson St, Portland,OR,97035 +182584,20in Monitor,1,109.99,2019-04-08 15:53:00,372 Jackson St, Portland,OR,97035 +182585,AA Batteries (4-pack),1,3.84,2019-04-03 06:01:00,937 Forest St, Los Angeles,CA,90001 +182586,Lightning Charging Cable,1,14.95,2019-04-04 22:54:00,947 Jefferson St, San Francisco,CA,94016 +182587,Macbook Pro Laptop,1,1700.0,2019-04-02 16:18:00,247 Hickory St, Portland,OR,97035 +182588,27in FHD Monitor,1,149.99,2019-04-14 15:07:00,121 Jefferson St, Portland,OR,97035 +182589,Lightning Charging Cable,2,14.95,2019-04-03 16:02:00,637 Hickory St, San Francisco,CA,94016 +182590,Wired Headphones,1,11.99,2019-04-17 11:18:00,623 Ridge St, New York City,NY,10001 +182591,Bose SoundSport Headphones,1,99.99,2019-04-13 12:55:00,595 12th St, Seattle,WA,98101 +182592,AAA Batteries (4-pack),1,2.99,2019-04-19 13:13:00,185 Maple St, San Francisco,CA,94016 +182593,Lightning Charging Cable,1,14.95,2019-04-05 16:51:00,693 8th St, New York City,NY,10001 +182594,Wired Headphones,2,11.99,2019-04-10 14:55:00,27 Lincoln St, San Francisco,CA,94016 +182595,Apple Airpods Headphones,1,150.0,2019-04-16 19:53:00,518 Chestnut St, San Francisco,CA,94016 +182596,Bose SoundSport Headphones,1,99.99,2019-04-27 22:03:00,247 Jefferson St, San Francisco,CA,94016 +182597,Wired Headphones,1,11.99,2019-04-14 14:52:00,405 River St, Boston,MA,02215 +182598,Lightning Charging Cable,1,14.95,2019-04-14 11:31:00,636 West St, San Francisco,CA,94016 +182599,AA Batteries (4-pack),1,3.84,2019-04-29 13:21:00,78 Chestnut St, San Francisco,CA,94016 +182600,USB-C Charging Cable,1,11.95,2019-04-16 13:08:00,851 Willow St, San Francisco,CA,94016 +182601,Bose SoundSport Headphones,1,99.99,2019-04-25 03:43:00,412 2nd St, New York City,NY,10001 +182602,34in Ultrawide Monitor,1,379.99,2019-04-13 11:46:00,629 7th St, Los Angeles,CA,90001 +182603,Apple Airpods Headphones,1,150.0,2019-04-15 18:57:00,68 Lincoln St, San Francisco,CA,94016 +182604,Flatscreen TV,1,300.0,2019-04-30 10:39:00,420 River St, New York City,NY,10001 +182605,AA Batteries (4-pack),1,3.84,2019-04-12 00:17:00,674 Church St, Atlanta,GA,30301 +182606,Wired Headphones,1,11.99,2019-04-17 19:36:00,909 South St, New York City,NY,10001 +182607,Wired Headphones,1,11.99,2019-04-02 13:15:00,422 Lincoln St, San Francisco,CA,94016 +182608,iPhone,1,700.0,2019-04-17 11:59:00,476 Forest St, Los Angeles,CA,90001 +182609,Wired Headphones,1,11.99,2019-04-17 05:54:00,952 11th St, San Francisco,CA,94016 +182610,Bose SoundSport Headphones,1,99.99,2019-04-20 11:52:00,457 Chestnut St, New York City,NY,10001 +182611,USB-C Charging Cable,1,11.95,2019-04-03 17:08:00,361 14th St, Los Angeles,CA,90001 +182612,USB-C Charging Cable,2,11.95,2019-04-27 21:21:00,265 Maple St, Austin,TX,73301 +182613,AA Batteries (4-pack),1,3.84,2019-04-26 20:47:00,891 Church St, Los Angeles,CA,90001 +182614,Wired Headphones,1,11.99,2019-04-09 11:09:00,489 Hill St, San Francisco,CA,94016 +182615,Macbook Pro Laptop,1,1700.0,2019-04-23 17:57:00,14 North St, Dallas,TX,75001 +182616,Wired Headphones,1,11.99,2019-04-11 07:30:00,848 Maple St, San Francisco,CA,94016 +182617,Bose SoundSport Headphones,1,99.99,2019-04-30 15:58:00,484 Hickory St, Los Angeles,CA,90001 +182618,USB-C Charging Cable,1,11.95,2019-04-14 10:40:00,386 Cherry St, San Francisco,CA,94016 +182619,Apple Airpods Headphones,1,150.0,2019-04-14 19:50:00,761 Adams St, Austin,TX,73301 +182620,27in FHD Monitor,1,149.99,2019-04-26 12:24:00,525 4th St, Atlanta,GA,30301 +182621,Google Phone,1,600.0,2019-04-23 09:14:00,184 Spruce St, Los Angeles,CA,90001 +182622,Wired Headphones,1,11.99,2019-04-23 20:53:00,111 5th St, San Francisco,CA,94016 +182623,Wired Headphones,2,11.99,2019-04-23 21:35:00,864 Highland St, San Francisco,CA,94016 +182624,27in FHD Monitor,1,149.99,2019-04-20 16:55:00,241 Maple St, San Francisco,CA,94016 +182625,Lightning Charging Cable,1,14.95,2019-04-26 18:37:00,190 South St, San Francisco,CA,94016 +182626,AAA Batteries (4-pack),2,2.99,2019-04-25 12:44:00,553 Sunset St, Seattle,WA,98101 +182627,Wired Headphones,1,11.99,2019-04-12 13:13:00,946 Spruce St, New York City,NY,10001 +182628,Wired Headphones,1,11.99,2019-04-10 12:29:00,887 Cedar St, Atlanta,GA,30301 +182629,27in FHD Monitor,1,149.99,2019-04-11 21:27:00,890 Elm St, Seattle,WA,98101 +182630,27in 4K Gaming Monitor,1,389.99,2019-04-29 17:40:00,205 14th St, Los Angeles,CA,90001 +182631,AAA Batteries (4-pack),2,2.99,2019-04-17 02:28:00,79 4th St, Boston,MA,02215 +182632,AAA Batteries (4-pack),1,2.99,2019-04-25 14:46:00,373 4th St, Boston,MA,02215 +182633,Macbook Pro Laptop,1,1700.0,2019-04-23 10:53:00,985 South St, San Francisco,CA,94016 +182634,27in 4K Gaming Monitor,1,389.99,2019-04-04 14:53:00,808 12th St, Boston,MA,02215 +182635,ThinkPad Laptop,1,999.99,2019-04-19 12:47:00,41 7th St, Dallas,TX,75001 +182636,USB-C Charging Cable,1,11.95,2019-04-03 16:06:00,927 Madison St, Boston,MA,02215 +182637,34in Ultrawide Monitor,1,379.99,2019-04-03 22:52:00,359 Pine St, San Francisco,CA,94016 +182638,Bose SoundSport Headphones,1,99.99,2019-04-19 19:38:00,850 4th St, San Francisco,CA,94016 +182639,Bose SoundSport Headphones,1,99.99,2019-04-01 09:43:00,820 Chestnut St, Atlanta,GA,30301 +182640,Apple Airpods Headphones,1,150.0,2019-04-27 09:22:00,911 7th St, Los Angeles,CA,90001 +182641,Lightning Charging Cable,1,14.95,2019-04-01 16:05:00,198 10th St, Boston,MA,02215 +182642,AA Batteries (4-pack),1,3.84,2019-04-16 12:11:00,734 Washington St, Seattle,WA,98101 +182643,iPhone,1,700.0,2019-04-15 14:14:00,132 Jefferson St, San Francisco,CA,94016 +182643,Wired Headphones,1,11.99,2019-04-15 14:14:00,132 Jefferson St, San Francisco,CA,94016 +182644,Lightning Charging Cable,1,14.95,2019-04-01 16:13:00,457 Wilson St, Los Angeles,CA,90001 +182645,27in FHD Monitor,1,149.99,2019-04-11 19:53:00,151 Church St, Boston,MA,02215 +182646,USB-C Charging Cable,1,11.95,2019-04-17 06:14:00,162 7th St, Boston,MA,02215 +182647,Lightning Charging Cable,1,14.95,2019-04-07 20:27:00,957 Forest St, San Francisco,CA,94016 +182648,Lightning Charging Cable,1,14.95,2019-04-27 15:23:00,873 Lake St, Austin,TX,73301 +182649,Lightning Charging Cable,1,14.95,2019-04-28 11:28:00,543 Lincoln St, Los Angeles,CA,90001 +182650,USB-C Charging Cable,1,11.95,2019-04-15 19:09:00,328 Main St, Los Angeles,CA,90001 +182651,Bose SoundSport Headphones,1,99.99,2019-04-13 09:17:00,450 North St, Los Angeles,CA,90001 +182652,AA Batteries (4-pack),2,3.84,2019-04-01 21:44:00,314 Lincoln St, Austin,TX,73301 +182653,Flatscreen TV,1,300.0,2019-04-16 00:24:00,651 Pine St, Atlanta,GA,30301 +182654,Lightning Charging Cable,1,14.95,2019-04-23 13:41:00,931 Highland St, Los Angeles,CA,90001 +182655,Lightning Charging Cable,1,14.95,2019-04-18 17:39:00,447 Chestnut St, San Francisco,CA,94016 +182656,Bose SoundSport Headphones,1,99.99,2019-04-17 17:32:00,406 Park St, Los Angeles,CA,90001 +182657,27in FHD Monitor,1,149.99,2019-04-19 19:46:00,574 Center St, San Francisco,CA,94016 +182658,27in 4K Gaming Monitor,1,389.99,2019-04-14 14:07:00,205 Maple St, Boston,MA,02215 +182659,Bose SoundSport Headphones,1,99.99,2019-04-14 14:21:00,291 Jackson St, Atlanta,GA,30301 +182660,AAA Batteries (4-pack),4,2.99,2019-04-05 22:47:00,291 Chestnut St, Portland,OR,97035 +182661,AA Batteries (4-pack),1,3.84,2019-04-22 22:54:00,881 Willow St, Los Angeles,CA,90001 +182662,USB-C Charging Cable,1,11.95,2019-04-09 21:03:00,832 Washington St, Los Angeles,CA,90001 +182663,AA Batteries (4-pack),1,3.84,2019-04-02 13:17:00,68 7th St, San Francisco,CA,94016 +182664,AA Batteries (4-pack),1,3.84,2019-04-01 18:05:00,843 Johnson St, New York City,NY,10001 +182665,Bose SoundSport Headphones,1,99.99,2019-04-30 12:51:00,272 11th St, Los Angeles,CA,90001 +182666,Wired Headphones,1,11.99,2019-04-01 07:17:00,317 Maple St, Los Angeles,CA,90001 +182667,Lightning Charging Cable,1,14.95,2019-04-10 14:54:00,171 12th St, San Francisco,CA,94016 +182668,Apple Airpods Headphones,1,150.0,2019-04-30 19:58:00,814 10th St, Boston,MA,02215 +182668,AAA Batteries (4-pack),1,2.99,2019-04-30 19:58:00,814 10th St, Boston,MA,02215 +182669,Apple Airpods Headphones,1,150.0,2019-04-12 17:40:00,311 Lake St, Boston,MA,02215 +182670,LG Dryer,1,600.0,2019-04-20 11:19:00,128 Lake St, San Francisco,CA,94016 +182671,Wired Headphones,1,11.99,2019-04-23 16:57:00,459 North St, San Francisco,CA,94016 +182672,AA Batteries (4-pack),1,3.84,2019-04-05 00:29:00,543 12th St, Los Angeles,CA,90001 +182673,27in 4K Gaming Monitor,1,389.99,2019-04-10 15:24:00,715 Hickory St, Los Angeles,CA,90001 +182674,AAA Batteries (4-pack),1,2.99,2019-04-27 19:07:00,607 Johnson St, San Francisco,CA,94016 +182675,USB-C Charging Cable,1,11.95,2019-04-23 07:19:00,598 Johnson St, Austin,TX,73301 +182676,Bose SoundSport Headphones,1,99.99,2019-04-24 11:51:00,975 West St, Dallas,TX,75001 +182677,iPhone,1,700.0,2019-04-03 11:57:00,55 6th St, Seattle,WA,98101 +182678,USB-C Charging Cable,1,11.95,2019-04-22 16:26:00,499 4th St, Dallas,TX,75001 +182679,Apple Airpods Headphones,1,150.0,2019-04-22 10:55:00,234 12th St, Los Angeles,CA,90001 +182680,Apple Airpods Headphones,1,150.0,2019-04-07 13:35:00,560 10th St, Austin,TX,73301 +182681,USB-C Charging Cable,1,11.95,2019-04-06 10:37:00,337 Hill St, Seattle,WA,98101 +182682,AA Batteries (4-pack),1,3.84,2019-04-29 11:21:00,660 South St, Los Angeles,CA,90001 +182683,Apple Airpods Headphones,1,150.0,2019-04-29 18:00:00,863 Willow St, Los Angeles,CA,90001 +182684,AAA Batteries (4-pack),1,2.99,2019-04-12 08:34:00,995 Walnut St, Atlanta,GA,30301 +182685,Lightning Charging Cable,1,14.95,2019-04-20 12:41:00,13 Lake St, Los Angeles,CA,90001 +182686,Apple Airpods Headphones,1,150.0,2019-04-02 08:41:00,239 Lakeview St, Atlanta,GA,30301 +182687,Lightning Charging Cable,1,14.95,2019-04-15 09:12:00,475 Hill St, Atlanta,GA,30301 +182688,AA Batteries (4-pack),1,3.84,2019-04-16 23:22:00,980 Center St, Atlanta,GA,30301 +182689,iPhone,1,700.0,2019-04-04 21:43:00,220 Pine St, Los Angeles,CA,90001 +182690,AAA Batteries (4-pack),1,2.99,2019-04-21 09:51:00,647 6th St, San Francisco,CA,94016 +182691,Bose SoundSport Headphones,1,99.99,2019-04-13 09:14:00,305 Highland St, Boston,MA,02215 +182692,AA Batteries (4-pack),2,3.84,2019-04-11 17:48:00,913 Johnson St, New York City,NY,10001 +182692,Lightning Charging Cable,1,14.95,2019-04-11 17:48:00,913 Johnson St, New York City,NY,10001 +182693,AAA Batteries (4-pack),1,2.99,2019-04-19 14:57:00,947 Ridge St, New York City,NY,10001 +182694,34in Ultrawide Monitor,1,379.99,2019-04-24 20:23:00,264 Lincoln St, Boston,MA,02215 +182695,AA Batteries (4-pack),1,3.84,2019-04-25 13:03:00,550 Cherry St, San Francisco,CA,94016 +182696,iPhone,1,700.0,2019-04-19 07:30:00,942 Lincoln St, Seattle,WA,98101 +182697,USB-C Charging Cable,1,11.95,2019-04-18 11:23:00,769 South St, Los Angeles,CA,90001 +182698,AAA Batteries (4-pack),2,2.99,2019-04-02 16:33:00,817 1st St, San Francisco,CA,94016 +182699,Wired Headphones,1,11.99,2019-04-02 21:09:00,810 Madison St, San Francisco,CA,94016 +182700,Bose SoundSport Headphones,1,99.99,2019-04-21 09:27:00,939 2nd St, Portland,OR,97035 +182701,USB-C Charging Cable,1,11.95,2019-04-08 18:53:00,343 1st St, Seattle,WA,98101 +182702,Bose SoundSport Headphones,1,99.99,2019-04-30 18:09:00,13 River St, San Francisco,CA,94016 +182703,USB-C Charging Cable,1,11.95,2019-04-13 06:17:00,929 14th St, New York City,NY,10001 +182704,Apple Airpods Headphones,1,150.0,2019-04-15 10:22:00,1 Lincoln St, New York City,NY,10001 +182705,LG Dryer,1,600.0,2019-04-21 10:49:00,137 2nd St, San Francisco,CA,94016 +182706,USB-C Charging Cable,1,11.95,2019-04-22 14:56:00,751 Center St, Atlanta,GA,30301 +182707,AA Batteries (4-pack),1,3.84,2019-04-09 12:55:00,996 North St, Atlanta,GA,30301 +182707,Apple Airpods Headphones,1,150.0,2019-04-09 12:55:00,996 North St, Atlanta,GA,30301 +182708,27in 4K Gaming Monitor,1,389.99,2019-04-13 13:59:00,616 13th St, Seattle,WA,98101 +182709,USB-C Charging Cable,1,11.95,2019-04-17 20:28:00,352 Cherry St, Dallas,TX,75001 +182710,AA Batteries (4-pack),1,3.84,2019-04-19 19:44:00,382 10th St, Boston,MA,02215 +182711,Bose SoundSport Headphones,1,99.99,2019-04-04 20:49:00,75 2nd St, San Francisco,CA,94016 +182712,20in Monitor,1,109.99,2019-04-18 17:20:00,986 Adams St, Los Angeles,CA,90001 +182713,20in Monitor,1,109.99,2019-04-15 17:15:00,960 Pine St, San Francisco,CA,94016 +182713,Macbook Pro Laptop,1,1700.0,2019-04-15 17:15:00,960 Pine St, San Francisco,CA,94016 +182714,Wired Headphones,1,11.99,2019-04-30 22:02:00,463 Lakeview St, San Francisco,CA,94016 +182715,Wired Headphones,1,11.99,2019-04-16 17:10:00,695 Ridge St, San Francisco,CA,94016 +182716,Lightning Charging Cable,1,14.95,2019-04-12 19:33:00,285 7th St, San Francisco,CA,94016 +182717,AAA Batteries (4-pack),1,2.99,2019-04-05 22:19:00,735 Center St, Los Angeles,CA,90001 +182718,Apple Airpods Headphones,1,150.0,2019-04-17 16:59:00,593 Madison St, Portland,OR,97035 +182719,iPhone,1,700.0,2019-04-16 23:51:00,521 Dogwood St, San Francisco,CA,94016 +182720,27in FHD Monitor,1,149.99,2019-04-28 12:07:00,687 Madison St, New York City,NY,10001 +182721,iPhone,1,700.0,2019-04-10 22:16:00,164 10th St, Los Angeles,CA,90001 +182721,Lightning Charging Cable,1,14.95,2019-04-10 22:16:00,164 10th St, Los Angeles,CA,90001 +182722,34in Ultrawide Monitor,1,379.99,2019-04-22 21:40:00,402 1st St, Los Angeles,CA,90001 +182723,Google Phone,1,600.0,2019-04-09 19:52:00,352 6th St, San Francisco,CA,94016 +182724,AA Batteries (4-pack),1,3.84,2019-04-24 11:28:00,415 Jackson St, Boston,MA,02215 +182725,iPhone,1,700.0,2019-04-20 12:15:00,645 Meadow St, Dallas,TX,75001 +182726,AA Batteries (4-pack),2,3.84,2019-04-26 17:33:00,461 Walnut St, Portland,OR,97035 +182727,Lightning Charging Cable,1,14.95,2019-04-30 18:00:00,754 Willow St, Los Angeles,CA,90001 +182728,27in 4K Gaming Monitor,1,389.99,2019-04-19 15:10:00,322 Chestnut St, New York City,NY,10001 +182729,Apple Airpods Headphones,1,150.0,2019-04-14 20:40:00,657 14th St, Portland,OR,97035 +182730,USB-C Charging Cable,1,11.95,2019-04-14 15:30:00,257 Meadow St, Dallas,TX,75001 +182731,iPhone,1,700.0,2019-04-30 11:40:00,600 Highland St, Dallas,TX,75001 +182731,Wired Headphones,2,11.99,2019-04-30 11:40:00,600 Highland St, Dallas,TX,75001 +182732,27in 4K Gaming Monitor,1,389.99,2019-04-13 20:43:00,743 Hickory St, Austin,TX,73301 +182733,Wired Headphones,1,11.99,2019-04-18 23:13:00,576 Maple St, Los Angeles,CA,90001 +182734,Apple Airpods Headphones,1,150.0,2019-04-14 21:41:00,652 12th St, San Francisco,CA,94016 +182735,AAA Batteries (4-pack),1,2.99,2019-04-27 15:52:00,220 7th St, New York City,NY,10001 +182735,Wired Headphones,1,11.99,2019-04-27 15:52:00,220 7th St, New York City,NY,10001 +182736,Lightning Charging Cable,2,14.95,2019-04-05 12:42:00,102 Cedar St, San Francisco,CA,94016 +182737,USB-C Charging Cable,1,11.95,2019-04-06 18:37:00,12 1st St, San Francisco,CA,94016 +182738,Wired Headphones,1,11.99,2019-04-16 05:28:00,58 Lake St, Austin,TX,73301 +182739,Wired Headphones,1,11.99,2019-04-19 14:19:00,378 Hickory St, Dallas,TX,75001 +182740,Bose SoundSport Headphones,1,99.99,2019-04-17 09:26:00,463 Willow St, New York City,NY,10001 +182741,Apple Airpods Headphones,1,150.0,2019-04-02 14:02:00,120 1st St, New York City,NY,10001 +182742,Apple Airpods Headphones,1,150.0,2019-04-17 11:15:00,470 Adams St, San Francisco,CA,94016 +182743,USB-C Charging Cable,1,11.95,2019-04-09 05:26:00,33 Lakeview St, San Francisco,CA,94016 +182744,27in FHD Monitor,1,149.99,2019-04-08 02:23:00,552 Jackson St, New York City,NY,10001 +182745,Apple Airpods Headphones,1,150.0,2019-04-07 19:18:00,975 12th St, Los Angeles,CA,90001 +182746,Apple Airpods Headphones,1,150.0,2019-04-25 19:19:00,693 Maple St, San Francisco,CA,94016 +182747,AAA Batteries (4-pack),2,2.99,2019-04-20 17:57:00,771 West St, Boston,MA,02215 +182748,USB-C Charging Cable,1,11.95,2019-04-11 19:55:00,706 Highland St, New York City,NY,10001 +182749,Bose SoundSport Headphones,1,99.99,2019-04-13 09:43:00,379 1st St, San Francisco,CA,94016 +182750,AA Batteries (4-pack),1,3.84,2019-04-16 17:55:00,6 7th St, Boston,MA,02215 +182751,Macbook Pro Laptop,1,1700.0,2019-04-12 19:29:00,233 Main St, San Francisco,CA,94016 +182752,Bose SoundSport Headphones,1,99.99,2019-04-21 14:33:00,723 West St, Boston,MA,02215 +182752,27in FHD Monitor,1,149.99,2019-04-21 14:33:00,723 West St, Boston,MA,02215 +182753,USB-C Charging Cable,1,11.95,2019-04-21 11:14:00,545 11th St, San Francisco,CA,94016 +182754,Wired Headphones,1,11.99,2019-04-23 09:54:00,624 8th St, San Francisco,CA,94016 +182755,Google Phone,1,600.0,2019-04-29 12:14:00,371 Spruce St, New York City,NY,10001 +182756,Apple Airpods Headphones,1,150.0,2019-04-20 13:50:00,14 4th St, Los Angeles,CA,90001 +182756,Wired Headphones,1,11.99,2019-04-20 13:50:00,14 4th St, Los Angeles,CA,90001 +182757,Apple Airpods Headphones,1,150.0,2019-04-26 18:50:00,853 5th St, Seattle,WA,98101 +182758,iPhone,1,700.0,2019-04-23 09:06:00,231 11th St, San Francisco,CA,94016 +182759,AA Batteries (4-pack),1,3.84,2019-04-05 22:02:00,557 Wilson St, Los Angeles,CA,90001 +182760,34in Ultrawide Monitor,1,379.99,2019-04-06 15:08:00,309 Center St, Dallas,TX,75001 +182761,Lightning Charging Cable,1,14.95,2019-04-04 09:09:00,866 Chestnut St, New York City,NY,10001 +182762,AA Batteries (4-pack),3,3.84,2019-04-28 16:19:00,412 Church St, Atlanta,GA,30301 +182763,Wired Headphones,1,11.99,2019-04-01 09:43:00,847 10th St, Dallas,TX,75001 +182764,Bose SoundSport Headphones,1,99.99,2019-04-23 13:02:00,582 Wilson St, San Francisco,CA,94016 +182765,USB-C Charging Cable,1,11.95,2019-04-15 19:16:00,478 2nd St, Dallas,TX,75001 +182766,Google Phone,1,600.0,2019-04-24 22:21:00,321 6th St, New York City,NY,10001 +182766,Wired Headphones,1,11.99,2019-04-24 22:21:00,321 6th St, New York City,NY,10001 +182767,USB-C Charging Cable,1,11.95,2019-04-11 09:40:00,911 1st St, Seattle,WA,98101 +182768,iPhone,1,700.0,2019-04-22 11:46:00,506 8th St, Boston,MA,02215 +182769,Wired Headphones,1,11.99,2019-04-17 15:19:00,711 4th St, Seattle,WA,98101 +182770,27in FHD Monitor,1,149.99,2019-04-19 13:30:00,986 4th St, Seattle,WA,98101 +182771,AAA Batteries (4-pack),2,2.99,2019-04-04 16:22:00,367 Sunset St, Boston,MA,02215 +182772,USB-C Charging Cable,1,11.95,2019-04-17 08:18:00,46 Sunset St, Portland,OR,97035 +182773,Macbook Pro Laptop,1,1700.0,2019-04-06 21:24:00,649 Lincoln St, Atlanta,GA,30301 +182774,Lightning Charging Cable,2,14.95,2019-04-29 13:07:00,430 Jefferson St, San Francisco,CA,94016 +182775,USB-C Charging Cable,1,11.95,2019-04-23 07:27:00,773 Cedar St, Atlanta,GA,30301 +182776,Google Phone,1,600.0,2019-04-13 16:46:00,948 5th St, San Francisco,CA,94016 +182776,USB-C Charging Cable,1,11.95,2019-04-13 16:46:00,948 5th St, San Francisco,CA,94016 +182777,Lightning Charging Cable,1,14.95,2019-04-09 15:14:00,161 Meadow St, Boston,MA,02215 +182778,Flatscreen TV,1,300.0,2019-04-30 15:01:00,471 Cherry St, San Francisco,CA,94016 +182779,AA Batteries (4-pack),2,3.84,2019-04-21 13:16:00,467 Willow St, Boston,MA,02215 +182780,Bose SoundSport Headphones,1,99.99,2019-04-07 11:40:00,565 Washington St, Dallas,TX,75001 +182781,Macbook Pro Laptop,1,1700.0,2019-04-18 07:45:00,220 10th St, Dallas,TX,75001 +182782,Lightning Charging Cable,1,14.95,2019-04-14 12:48:00,535 2nd St, Los Angeles,CA,90001 +182783,Lightning Charging Cable,1,14.95,2019-04-08 21:20:00,992 13th St, Portland,OR,97035 +182784,Lightning Charging Cable,1,14.95,2019-04-21 19:43:00,979 Johnson St, Seattle,WA,98101 +182785,Lightning Charging Cable,2,14.95,2019-04-16 09:44:00,122 River St, Boston,MA,02215 +182786,AA Batteries (4-pack),1,3.84,2019-04-03 13:33:00,598 Adams St, Los Angeles,CA,90001 +182787,AA Batteries (4-pack),2,3.84,2019-04-20 15:56:00,367 9th St, New York City,NY,10001 +182788,USB-C Charging Cable,1,11.95,2019-04-09 10:43:00,564 River St, Seattle,WA,98101 +182789,Lightning Charging Cable,1,14.95,2019-04-27 19:38:00,327 8th St, San Francisco,CA,94016 +182790,AA Batteries (4-pack),2,3.84,2019-04-14 18:09:00,644 5th St, Los Angeles,CA,90001 +182791,Bose SoundSport Headphones,1,99.99,2019-04-07 13:57:00,201 7th St, Seattle,WA,98101 +182792,AA Batteries (4-pack),2,3.84,2019-04-21 09:05:00,940 Walnut St, Boston,MA,02215 +182793,Lightning Charging Cable,1,14.95,2019-04-23 21:58:00,961 Jackson St, Dallas,TX,75001 +182794,AAA Batteries (4-pack),2,2.99,2019-04-16 11:39:00,273 Madison St, New York City,NY,10001 +182795,ThinkPad Laptop,1,999.99,2019-04-16 11:18:00,553 Lakeview St, San Francisco,CA,94016 +182796,20in Monitor,1,109.99,2019-04-03 21:22:00,189 Sunset St, Los Angeles,CA,90001 +182797,AAA Batteries (4-pack),2,2.99,2019-04-07 21:09:00,665 Meadow St, San Francisco,CA,94016 +182798,AA Batteries (4-pack),1,3.84,2019-04-06 07:31:00,986 Sunset St, Los Angeles,CA,90001 +182799,AAA Batteries (4-pack),1,2.99,2019-04-26 18:56:00,635 Cherry St, San Francisco,CA,94016 +182800,Wired Headphones,1,11.99,2019-04-27 13:19:00,421 Meadow St, Seattle,WA,98101 +182801,Bose SoundSport Headphones,1,99.99,2019-04-01 11:21:00,512 Lake St, San Francisco,CA,94016 +182802,Lightning Charging Cable,1,14.95,2019-04-25 19:30:00,741 8th St, Boston,MA,02215 +182803,AA Batteries (4-pack),1,3.84,2019-04-26 14:15:00,978 Hickory St, San Francisco,CA,94016 +182804,Apple Airpods Headphones,1,150.0,2019-04-09 17:38:00,833 13th St, Portland,ME,04101 +182805,AAA Batteries (4-pack),1,2.99,2019-04-25 20:55:00,242 Willow St, Los Angeles,CA,90001 +182806,Bose SoundSport Headphones,1,99.99,2019-04-07 21:44:00,822 Willow St, New York City,NY,10001 +182807,Apple Airpods Headphones,1,150.0,2019-04-07 01:30:00,854 Forest St, Atlanta,GA,30301 +182808,27in FHD Monitor,1,149.99,2019-04-06 14:30:00,773 12th St, New York City,NY,10001 +182809,Macbook Pro Laptop,1,1700.0,2019-04-10 18:15:00,858 Meadow St, Portland,OR,97035 +182809,AA Batteries (4-pack),2,3.84,2019-04-10 18:15:00,858 Meadow St, Portland,OR,97035 +182810,AAA Batteries (4-pack),1,2.99,2019-04-05 16:11:00,802 Lake St, Boston,MA,02215 +182811,AA Batteries (4-pack),2,3.84,2019-04-05 10:19:00,160 Lakeview St, San Francisco,CA,94016 +182812,Apple Airpods Headphones,1,150.0,2019-04-07 17:37:00,278 South St, San Francisco,CA,94016 +182813,Wired Headphones,1,11.99,2019-04-17 09:23:00,897 Walnut St, Seattle,WA,98101 +182814,AA Batteries (4-pack),1,3.84,2019-04-01 16:09:00,443 West St, New York City,NY,10001 +182815,AAA Batteries (4-pack),1,2.99,2019-04-17 12:52:00,184 8th St, Atlanta,GA,30301 +182816,27in FHD Monitor,1,149.99,2019-04-01 19:28:00,173 South St, New York City,NY,10001 +182817,AA Batteries (4-pack),1,3.84,2019-04-28 20:12:00,668 West St, New York City,NY,10001 +182818,AA Batteries (4-pack),1,3.84,2019-04-16 18:33:00,521 11th St, Austin,TX,73301 +182819,AAA Batteries (4-pack),1,2.99,2019-04-15 16:49:00,499 13th St, New York City,NY,10001 +182820,Wired Headphones,1,11.99,2019-04-08 12:02:00,279 Pine St, Dallas,TX,75001 +182821,Wired Headphones,2,11.99,2019-04-15 19:46:00,415 Lincoln St, Boston,MA,02215 +182822,34in Ultrawide Monitor,1,379.99,2019-05-01 00:46:00,295 Ridge St, Dallas,TX,75001 +182823,Wired Headphones,1,11.99,2019-04-08 10:35:00,963 Pine St, Atlanta,GA,30301 +182824,USB-C Charging Cable,1,11.95,2019-04-06 18:26:00,839 Center St, New York City,NY,10001 +182825,Wired Headphones,2,11.99,2019-04-09 20:21:00,650 Chestnut St, San Francisco,CA,94016 +182826,Bose SoundSport Headphones,1,99.99,2019-04-25 16:04:00,429 Pine St, Portland,OR,97035 +182827,AAA Batteries (4-pack),1,2.99,2019-04-12 17:13:00,990 Highland St, Austin,TX,73301 +182828,ThinkPad Laptop,1,999.99,2019-04-04 12:25:00,95 Jackson St, Boston,MA,02215 +182829,USB-C Charging Cable,1,11.95,2019-04-16 15:54:00,295 1st St, Boston,MA,02215 +182830,Google Phone,1,600.0,2019-04-30 15:52:00,694 Wilson St, New York City,NY,10001 +182831,AAA Batteries (4-pack),2,2.99,2019-04-04 16:13:00,162 Jefferson St, Boston,MA,02215 +182832,USB-C Charging Cable,1,11.95,2019-04-10 10:41:00,491 9th St, San Francisco,CA,94016 +182833,AAA Batteries (4-pack),1,2.99,2019-04-14 13:34:00,263 Highland St, San Francisco,CA,94016 +182834,Lightning Charging Cable,1,14.95,2019-04-04 07:03:00,271 8th St, Atlanta,GA,30301 +182835,AA Batteries (4-pack),1,3.84,2019-04-22 11:59:00,39 8th St, San Francisco,CA,94016 +182836,USB-C Charging Cable,2,11.95,2019-04-03 08:13:00,884 Cedar St, Austin,TX,73301 +182837,Lightning Charging Cable,2,14.95,2019-04-13 18:14:00,739 Center St, Atlanta,GA,30301 +182838,Macbook Pro Laptop,1,1700.0,2019-04-26 17:25:00,880 Jefferson St, San Francisco,CA,94016 +182839,USB-C Charging Cable,1,11.95,2019-04-20 22:54:00,162 Washington St, Los Angeles,CA,90001 +182840,AAA Batteries (4-pack),1,2.99,2019-04-06 17:37:00,565 Cherry St, Los Angeles,CA,90001 +182841,Wired Headphones,1,11.99,2019-04-12 20:29:00,395 Hill St, New York City,NY,10001 +182842,Wired Headphones,1,11.99,2019-04-30 11:25:00,134 Dogwood St, Portland,ME,04101 +182843,Apple Airpods Headphones,1,150.0,2019-04-27 06:18:00,354 6th St, New York City,NY,10001 +182844,Lightning Charging Cable,1,14.95,2019-04-09 06:27:00,318 Pine St, San Francisco,CA,94016 +182845,Bose SoundSport Headphones,1,99.99,2019-04-12 18:02:00,821 14th St, Los Angeles,CA,90001 +182846,iPhone,1,700.0,2019-04-04 16:12:00,422 Washington St, Atlanta,GA,30301 +182846,Lightning Charging Cable,1,14.95,2019-04-04 16:12:00,422 Washington St, Atlanta,GA,30301 +182847,27in FHD Monitor,1,149.99,2019-04-09 21:39:00,837 6th St, Seattle,WA,98101 +182848,AA Batteries (4-pack),4,3.84,2019-04-08 14:44:00,285 2nd St, Dallas,TX,75001 +182849,Apple Airpods Headphones,1,150.0,2019-04-12 14:54:00,752 Lakeview St, San Francisco,CA,94016 +182850,Flatscreen TV,1,300.0,2019-04-05 06:10:00,619 Madison St, Seattle,WA,98101 +182851,Wired Headphones,1,11.99,2019-04-13 18:17:00,358 5th St, New York City,NY,10001 +182852,AA Batteries (4-pack),1,3.84,2019-04-27 15:32:00,470 Johnson St, New York City,NY,10001 +182852,Lightning Charging Cable,1,14.95,2019-04-27 15:32:00,470 Johnson St, New York City,NY,10001 +182853,AA Batteries (4-pack),1,3.84,2019-04-29 06:11:00,98 5th St, Los Angeles,CA,90001 +182854,iPhone,1,700.0,2019-04-17 13:48:00,10 4th St, Los Angeles,CA,90001 +182855,AAA Batteries (4-pack),1,2.99,2019-04-23 16:53:00,671 5th St, Los Angeles,CA,90001 +182856,USB-C Charging Cable,2,11.95,2019-04-08 13:41:00,137 South St, Los Angeles,CA,90001 +182857,Wired Headphones,3,11.99,2019-04-24 12:12:00,817 Lake St, New York City,NY,10001 +182858,Lightning Charging Cable,1,14.95,2019-04-02 13:52:00,347 Willow St, San Francisco,CA,94016 +182859,Lightning Charging Cable,1,14.95,2019-04-21 06:59:00,473 Cherry St, San Francisco,CA,94016 +182860,AA Batteries (4-pack),4,3.84,2019-04-23 00:08:00,602 Willow St, New York City,NY,10001 +182861,Lightning Charging Cable,1,14.95,2019-04-12 14:00:00,148 4th St, Los Angeles,CA,90001 +182862,Apple Airpods Headphones,1,150.0,2019-04-15 15:54:00,836 12th St, Dallas,TX,75001 +182863,Lightning Charging Cable,1,14.95,2019-04-02 17:34:00,744 River St, Seattle,WA,98101 +182864,Wired Headphones,1,11.99,2019-04-23 14:39:00,475 Chestnut St, Los Angeles,CA,90001 +182865,Apple Airpods Headphones,1,150.0,2019-04-30 22:16:00,471 8th St, Seattle,WA,98101 +182866,AA Batteries (4-pack),1,3.84,2019-04-16 19:54:00,505 Wilson St, New York City,NY,10001 +182867,27in FHD Monitor,1,149.99,2019-04-11 19:19:00,429 11th St, Los Angeles,CA,90001 +182868,Bose SoundSport Headphones,1,99.99,2019-04-21 16:04:00,28 Ridge St, San Francisco,CA,94016 +182869,Lightning Charging Cable,1,14.95,2019-04-06 19:59:00,744 Cedar St, Seattle,WA,98101 +182870,AA Batteries (4-pack),3,3.84,2019-04-04 10:45:00,94 Adams St, San Francisco,CA,94016 +182871,Lightning Charging Cable,1,14.95,2019-04-12 21:37:00,65 10th St, Los Angeles,CA,90001 +182872,Lightning Charging Cable,1,14.95,2019-04-04 10:51:00,907 Meadow St, San Francisco,CA,94016 +182873,34in Ultrawide Monitor,1,379.99,2019-04-15 22:26:00,193 Meadow St, Seattle,WA,98101 +182874,27in 4K Gaming Monitor,1,389.99,2019-04-03 07:11:00,620 4th St, Boston,MA,02215 +182875,Bose SoundSport Headphones,1,99.99,2019-04-01 13:22:00,592 5th St, Austin,TX,73301 +182876,Bose SoundSport Headphones,1,99.99,2019-04-06 14:07:00,16 Chestnut St, Seattle,WA,98101 +182877,27in 4K Gaming Monitor,1,389.99,2019-04-28 18:01:00,761 Lincoln St, Los Angeles,CA,90001 +182878,Lightning Charging Cable,1,14.95,2019-04-13 16:48:00,65 Lincoln St, San Francisco,CA,94016 +182879,AAA Batteries (4-pack),1,2.99,2019-04-11 11:46:00,353 Jefferson St, San Francisco,CA,94016 +182880,27in 4K Gaming Monitor,1,389.99,2019-04-25 20:50:00,237 Madison St, Los Angeles,CA,90001 +182881,AA Batteries (4-pack),1,3.84,2019-04-10 13:57:00,304 Jackson St, Boston,MA,02215 +182882,Wired Headphones,1,11.99,2019-04-21 00:25:00,145 Chestnut St, Portland,OR,97035 +182883,AAA Batteries (4-pack),1,2.99,2019-04-11 14:18:00,369 Madison St, Atlanta,GA,30301 +182884,AA Batteries (4-pack),1,3.84,2019-04-09 11:26:00,764 9th St, New York City,NY,10001 +182885,USB-C Charging Cable,1,11.95,2019-04-11 13:51:00,444 Park St, Los Angeles,CA,90001 +182886,Apple Airpods Headphones,1,150.0,2019-04-24 11:18:00,209 Maple St, San Francisco,CA,94016 +182887,ThinkPad Laptop,1,999.99,2019-04-29 14:58:00,483 Church St, Boston,MA,02215 +182888,AAA Batteries (4-pack),2,2.99,2019-04-21 11:08:00,427 Madison St, San Francisco,CA,94016 +182889,20in Monitor,1,109.99,2019-04-15 17:19:00,511 10th St, Boston,MA,02215 +182890,27in 4K Gaming Monitor,1,389.99,2019-04-12 12:46:00,910 Sunset St, Los Angeles,CA,90001 +182891,27in 4K Gaming Monitor,1,389.99,2019-04-24 17:54:00,150 Chestnut St, Los Angeles,CA,90001 +182891,Bose SoundSport Headphones,1,99.99,2019-04-24 17:54:00,150 Chestnut St, Los Angeles,CA,90001 +182892,USB-C Charging Cable,1,11.95,2019-04-28 01:53:00,336 9th St, Boston,MA,02215 +182892,AAA Batteries (4-pack),1,2.99,2019-04-28 01:53:00,336 9th St, Boston,MA,02215 +182893,Bose SoundSport Headphones,1,99.99,2019-04-24 23:55:00,205 Johnson St, New York City,NY,10001 +182894,Lightning Charging Cable,1,14.95,2019-04-21 15:21:00,821 Washington St, Seattle,WA,98101 +182895,Wired Headphones,1,11.99,2019-04-18 11:07:00,444 Hickory St, Los Angeles,CA,90001 +182896,Bose SoundSport Headphones,1,99.99,2019-04-21 22:13:00,711 Willow St, Seattle,WA,98101 +182897,Lightning Charging Cable,1,14.95,2019-04-19 18:12:00,795 Elm St, New York City,NY,10001 +182898,Bose SoundSport Headphones,1,99.99,2019-04-23 21:46:00,564 Forest St, Portland,ME,04101 +182899,Apple Airpods Headphones,1,150.0,2019-04-29 10:03:00,323 Madison St, Atlanta,GA,30301 +182900,34in Ultrawide Monitor,1,379.99,2019-04-13 10:35:00,971 4th St, Seattle,WA,98101 +182901,Google Phone,1,600.0,2019-04-23 18:22:00,728 Meadow St, Austin,TX,73301 +182901,USB-C Charging Cable,1,11.95,2019-04-23 18:22:00,728 Meadow St, Austin,TX,73301 +182902,iPhone,1,700.0,2019-04-09 11:18:00,744 Sunset St, San Francisco,CA,94016 +182903,Lightning Charging Cable,1,14.95,2019-04-20 12:34:00,868 10th St, Boston,MA,02215 +182904,Lightning Charging Cable,1,14.95,2019-04-09 22:15:00,410 Wilson St, Atlanta,GA,30301 +182905,Lightning Charging Cable,1,14.95,2019-04-22 20:30:00,394 Spruce St, Seattle,WA,98101 +182905,Google Phone,1,600.0,2019-04-22 20:30:00,394 Spruce St, Seattle,WA,98101 +182906,Wired Headphones,1,11.99,2019-04-21 22:49:00,586 9th St, New York City,NY,10001 +182907,Lightning Charging Cable,1,14.95,2019-04-11 14:26:00,283 Pine St, Dallas,TX,75001 +182908,Google Phone,1,600.0,2019-04-19 17:40:00,452 Highland St, New York City,NY,10001 +182908,USB-C Charging Cable,1,11.95,2019-04-19 17:40:00,452 Highland St, New York City,NY,10001 +182908,Wired Headphones,1,11.99,2019-04-19 17:40:00,452 Highland St, New York City,NY,10001 +182909,USB-C Charging Cable,1,11.95,2019-04-09 14:08:00,472 Jackson St, San Francisco,CA,94016 +182910,USB-C Charging Cable,2,11.95,2019-04-08 14:44:00,910 Forest St, Los Angeles,CA,90001 +182911,Wired Headphones,2,11.99,2019-04-05 23:05:00,988 Washington St, New York City,NY,10001 +182912,AA Batteries (4-pack),1,3.84,2019-04-03 18:53:00,25 7th St, Seattle,WA,98101 +182913,Wired Headphones,1,11.99,2019-04-21 18:40:00,194 Dogwood St, Atlanta,GA,30301 +182914,Lightning Charging Cable,1,14.95,2019-04-10 17:38:00,609 2nd St, San Francisco,CA,94016 +182915,AA Batteries (4-pack),3,3.84,2019-04-24 16:35:00,208 Jefferson St, San Francisco,CA,94016 +182916,AAA Batteries (4-pack),1,2.99,2019-04-27 13:22:00,853 12th St, San Francisco,CA,94016 +182917,iPhone,1,700.0,2019-04-29 15:19:00,143 Sunset St, San Francisco,CA,94016 +182917,USB-C Charging Cable,1,11.95,2019-04-29 15:19:00,143 Sunset St, San Francisco,CA,94016 +182918,USB-C Charging Cable,1,11.95,2019-04-18 13:27:00,969 Cedar St, New York City,NY,10001 +182919,Wired Headphones,1,11.99,2019-04-14 19:17:00,319 Hickory St, Austin,TX,73301 +182920,Apple Airpods Headphones,1,150.0,2019-04-18 21:52:00,741 Pine St, New York City,NY,10001 +182921,AA Batteries (4-pack),2,3.84,2019-04-10 14:06:00,828 Cherry St, Seattle,WA,98101 +182922,AAA Batteries (4-pack),1,2.99,2019-04-25 08:14:00,446 1st St, New York City,NY,10001 +182923,USB-C Charging Cable,1,11.95,2019-04-04 17:15:00,868 14th St, New York City,NY,10001 +182924,AAA Batteries (4-pack),1,2.99,2019-04-12 11:41:00,531 Cedar St, Atlanta,GA,30301 +182925,USB-C Charging Cable,1,11.95,2019-04-09 22:32:00,66 Jefferson St, Boston,MA,02215 +182926,USB-C Charging Cable,1,11.95,2019-04-25 17:46:00,102 4th St, San Francisco,CA,94016 +182927,Apple Airpods Headphones,1,150.0,2019-04-16 12:15:00,398 West St, San Francisco,CA,94016 +182928,Lightning Charging Cable,1,14.95,2019-04-25 11:41:00,364 1st St, Los Angeles,CA,90001 +182929,Apple Airpods Headphones,1,150.0,2019-04-08 02:12:00,930 Dogwood St, New York City,NY,10001 +182930,Bose SoundSport Headphones,1,99.99,2019-04-11 18:08:00,943 South St, San Francisco,CA,94016 +182931,Bose SoundSport Headphones,1,99.99,2019-04-25 12:30:00,105 14th St, San Francisco,CA,94016 +182932,27in 4K Gaming Monitor,1,389.99,2019-04-15 23:28:00,737 Walnut St, New York City,NY,10001 +182933,27in FHD Monitor,1,149.99,2019-04-18 20:17:00,967 Willow St, Portland,ME,04101 +182934,Apple Airpods Headphones,1,150.0,2019-04-29 06:20:00,405 4th St, Los Angeles,CA,90001 +182935,AA Batteries (4-pack),1,3.84,2019-04-15 23:23:00,273 North St, Boston,MA,02215 +182936,USB-C Charging Cable,1,11.95,2019-04-17 19:40:00,921 Hill St, Los Angeles,CA,90001 +182937,USB-C Charging Cable,1,11.95,2019-04-11 01:04:00,205 Washington St, Dallas,TX,75001 +182938,iPhone,1,700.0,2019-04-14 19:58:00,416 Highland St, San Francisco,CA,94016 +182939,Apple Airpods Headphones,1,150.0,2019-04-01 11:53:00,582 Washington St, New York City,NY,10001 +182940,USB-C Charging Cable,1,11.95,2019-04-03 16:07:00,627 Hill St, Los Angeles,CA,90001 +182941,Wired Headphones,1,11.99,2019-04-09 11:48:00,631 14th St, San Francisco,CA,94016 +182942,AAA Batteries (4-pack),2,2.99,2019-04-11 21:13:00,224 12th St, New York City,NY,10001 +182943,Wired Headphones,1,11.99,2019-04-23 14:32:00,850 Wilson St, San Francisco,CA,94016 +182944,Wired Headphones,1,11.99,2019-04-08 18:55:00,940 Dogwood St, New York City,NY,10001 +182945,Bose SoundSport Headphones,1,99.99,2019-04-19 11:39:00,594 Ridge St, Portland,OR,97035 +182946,Lightning Charging Cable,1,14.95,2019-04-01 19:45:00,933 Spruce St, Seattle,WA,98101 +182947,Apple Airpods Headphones,1,150.0,2019-04-27 19:32:00,228 Dogwood St, Dallas,TX,75001 +182948,AA Batteries (4-pack),1,3.84,2019-04-20 10:28:00,951 Main St, New York City,NY,10001 +182949,AA Batteries (4-pack),1,3.84,2019-04-30 20:50:00,545 North St, Seattle,WA,98101 +182950,Bose SoundSport Headphones,1,99.99,2019-04-03 10:46:00,881 Meadow St, Seattle,WA,98101 +182951,Wired Headphones,1,11.99,2019-04-27 08:56:00,48 Pine St, Austin,TX,73301 +182952,USB-C Charging Cable,1,11.95,2019-04-14 21:12:00,876 Washington St, Los Angeles,CA,90001 +182953,AAA Batteries (4-pack),1,2.99,2019-04-09 13:23:00,883 8th St, Seattle,WA,98101 +182954,AA Batteries (4-pack),1,3.84,2019-04-08 10:42:00,666 10th St, Dallas,TX,75001 +182955,Wired Headphones,1,11.99,2019-04-07 10:51:00,427 Cherry St, Dallas,TX,75001 +182956,Macbook Pro Laptop,1,1700.0,2019-04-29 13:55:00,740 Meadow St, Dallas,TX,75001 +182957,20in Monitor,1,109.99,2019-04-18 07:32:00,332 13th St, Portland,OR,97035 +182958,27in 4K Gaming Monitor,1,389.99,2019-04-11 13:36:00,739 Park St, Portland,ME,04101 +182959,34in Ultrawide Monitor,1,379.99,2019-04-12 15:16:00,712 Ridge St, Los Angeles,CA,90001 +182960,Wired Headphones,1,11.99,2019-04-01 06:47:00,234 Washington St, San Francisco,CA,94016 +182961,Wired Headphones,2,11.99,2019-04-01 09:31:00,135 Highland St, Portland,OR,97035 +182962,USB-C Charging Cable,1,11.95,2019-04-06 09:55:00,860 13th St, Seattle,WA,98101 +182963,USB-C Charging Cable,1,11.95,2019-04-21 13:34:00,957 Center St, New York City,NY,10001 +182964,Apple Airpods Headphones,1,150.0,2019-04-02 18:10:00,137 Cherry St, New York City,NY,10001 +182965,USB-C Charging Cable,1,11.95,2019-04-26 23:15:00,736 Walnut St, Los Angeles,CA,90001 +182966,Vareebadd Phone,1,400.0,2019-04-10 20:20:00,499 Jackson St, Los Angeles,CA,90001 +182967,Apple Airpods Headphones,1,150.0,2019-04-01 13:18:00,139 Washington St, San Francisco,CA,94016 +182968,Wired Headphones,1,11.99,2019-04-09 08:45:00,564 Forest St, Dallas,TX,75001 +182969,AA Batteries (4-pack),2,3.84,2019-04-30 16:02:00,926 Johnson St, Portland,OR,97035 +182970,LG Dryer,1,600.0,2019-04-16 17:10:00,76 12th St, Austin,TX,73301 +182971,Wired Headphones,1,11.99,2019-04-27 16:20:00,817 Lakeview St, Boston,MA,02215 +182972,USB-C Charging Cable,1,11.95,2019-04-20 12:08:00,993 North St, Los Angeles,CA,90001 +182973,AA Batteries (4-pack),1,3.84,2019-04-11 14:50:00,634 Park St, San Francisco,CA,94016 +182974,20in Monitor,1,109.99,2019-04-29 14:33:00,294 14th St, Dallas,TX,75001 +182975,Bose SoundSport Headphones,1,99.99,2019-04-14 22:24:00,251 Hill St, San Francisco,CA,94016 +182976,AA Batteries (4-pack),1,3.84,2019-04-17 13:00:00,180 Sunset St, San Francisco,CA,94016 +182977,Wired Headphones,1,11.99,2019-04-14 21:03:00,73 Johnson St, San Francisco,CA,94016 +182978,USB-C Charging Cable,1,11.95,2019-04-07 02:28:00,304 Lake St, Boston,MA,02215 +182979,Macbook Pro Laptop,1,1700.0,2019-04-10 21:30:00,542 Jefferson St, San Francisco,CA,94016 +182980,AA Batteries (4-pack),1,3.84,2019-04-20 13:43:00,962 Johnson St, San Francisco,CA,94016 +182981,Bose SoundSport Headphones,1,99.99,2019-04-05 15:02:00,750 Wilson St, New York City,NY,10001 +182982,Bose SoundSport Headphones,1,99.99,2019-04-21 16:58:00,521 12th St, Boston,MA,02215 +182983,AA Batteries (4-pack),2,3.84,2019-04-29 20:30:00,261 Lincoln St, New York City,NY,10001 +182984,Macbook Pro Laptop,1,1700.0,2019-04-28 01:10:00,83 Willow St, Boston,MA,02215 +182985,USB-C Charging Cable,1,11.95,2019-04-08 18:39:00,806 South St, Dallas,TX,75001 +182986,ThinkPad Laptop,1,999.99,2019-04-14 18:40:00,731 Lakeview St, San Francisco,CA,94016 +182987,iPhone,1,700.0,2019-04-25 07:00:00,678 Cherry St, Los Angeles,CA,90001 +182987,Lightning Charging Cable,1,14.95,2019-04-25 07:00:00,678 Cherry St, Los Angeles,CA,90001 +182988,iPhone,1,700.0,2019-04-20 22:51:00,921 9th St, New York City,NY,10001 +182989,iPhone,1,700.0,2019-04-21 13:52:00,834 Johnson St, Boston,MA,02215 +182990,AA Batteries (4-pack),1,3.84,2019-04-13 19:41:00,130 West St, Austin,TX,73301 +182991,AAA Batteries (4-pack),2,2.99,2019-04-10 14:29:00,64 11th St, San Francisco,CA,94016 +182992,ThinkPad Laptop,1,999.99,2019-04-08 10:35:00,3 Johnson St, San Francisco,CA,94016 +182993,Wired Headphones,1,11.99,2019-04-17 18:00:00,706 Highland St, New York City,NY,10001 +182994,AAA Batteries (4-pack),2,2.99,2019-04-23 14:44:00,904 Walnut St, Austin,TX,73301 +182995,USB-C Charging Cable,1,11.95,2019-04-16 14:45:00,598 Cedar St, Portland,ME,04101 +182996,27in FHD Monitor,1,149.99,2019-04-14 13:26:00,705 Pine St, Los Angeles,CA,90001 +182997,Apple Airpods Headphones,1,150.0,2019-04-17 04:10:00,335 Jackson St, New York City,NY,10001 +182998,27in FHD Monitor,1,149.99,2019-04-27 19:16:00,600 South St, Austin,TX,73301 +182999,Wired Headphones,1,11.99,2019-04-13 19:17:00,673 Pine St, New York City,NY,10001 +183000,AAA Batteries (4-pack),3,2.99,2019-04-25 14:21:00,67 Park St, Los Angeles,CA,90001 +183001,ThinkPad Laptop,1,999.99,2019-04-13 17:56:00,462 Highland St, New York City,NY,10001 +183002,Wired Headphones,1,11.99,2019-04-11 13:56:00,981 Park St, Los Angeles,CA,90001 +183003,Wired Headphones,1,11.99,2019-04-08 21:15:00,557 Main St, New York City,NY,10001 +183004,AA Batteries (4-pack),1,3.84,2019-04-26 20:10:00,218 Wilson St, Austin,TX,73301 +183005,34in Ultrawide Monitor,1,379.99,2019-04-28 14:23:00,367 9th St, Portland,OR,97035 +183006,Wired Headphones,1,11.99,2019-04-25 11:27:00,866 Walnut St, Portland,OR,97035 +183007,AA Batteries (4-pack),1,3.84,2019-04-28 10:55:00,46 11th St, Austin,TX,73301 +183008,AAA Batteries (4-pack),1,2.99,2019-04-15 19:14:00,370 Church St, New York City,NY,10001 +183009,AA Batteries (4-pack),1,3.84,2019-04-16 18:30:00,639 Cedar St, Seattle,WA,98101 +183010,Apple Airpods Headphones,1,150.0,2019-04-17 12:10:00,205 Lincoln St, Portland,OR,97035 +183011,Vareebadd Phone,1,400.0,2019-04-05 18:29:00,200 Johnson St, Dallas,TX,75001 +183012,27in FHD Monitor,1,149.99,2019-04-10 20:57:00,390 Main St, Seattle,WA,98101 +183013,USB-C Charging Cable,1,11.95,2019-04-18 11:37:00,821 6th St, San Francisco,CA,94016 +183014,Google Phone,1,600.0,2019-04-12 12:02:00,403 Cherry St, Dallas,TX,75001 +183014,Wired Headphones,1,11.99,2019-04-12 12:02:00,403 Cherry St, Dallas,TX,75001 +183015,USB-C Charging Cable,1,11.95,2019-04-02 00:25:00,479 South St, San Francisco,CA,94016 +183016,Google Phone,1,600.0,2019-04-30 19:50:00,492 Willow St, San Francisco,CA,94016 +183016,USB-C Charging Cable,1,11.95,2019-04-30 19:50:00,492 Willow St, San Francisco,CA,94016 +183016,Wired Headphones,1,11.99,2019-04-30 19:50:00,492 Willow St, San Francisco,CA,94016 +183017,ThinkPad Laptop,1,999.99,2019-04-14 16:17:00,856 Highland St, New York City,NY,10001 +183018,iPhone,1,700.0,2019-04-12 20:10:00,539 Washington St, New York City,NY,10001 +183019,Wired Headphones,1,11.99,2019-04-13 19:38:00,729 7th St, San Francisco,CA,94016 +183020,27in 4K Gaming Monitor,1,389.99,2019-04-05 20:37:00,824 Center St, Austin,TX,73301 +183021,Lightning Charging Cable,1,14.95,2019-04-16 13:01:00,497 Johnson St, Portland,OR,97035 +183022,Wired Headphones,1,11.99,2019-04-06 20:09:00,813 5th St, San Francisco,CA,94016 +183023,Apple Airpods Headphones,1,150.0,2019-04-07 16:25:00,467 Adams St, Atlanta,GA,30301 +183024,Google Phone,1,600.0,2019-04-01 20:51:00,342 1st St, Los Angeles,CA,90001 +183025,AA Batteries (4-pack),1,3.84,2019-04-23 18:15:00,766 Meadow St, Dallas,TX,75001 +183026,AAA Batteries (4-pack),1,2.99,2019-04-27 00:55:00,578 Washington St, New York City,NY,10001 +183027,USB-C Charging Cable,1,11.95,2019-04-25 20:44:00,587 2nd St, Portland,OR,97035 +183028,Wired Headphones,1,11.99,2019-04-04 12:14:00,532 14th St, San Francisco,CA,94016 +183029,Wired Headphones,1,11.99,2019-04-02 00:23:00,919 Hickory St, New York City,NY,10001 +183030,AAA Batteries (4-pack),1,2.99,2019-04-03 12:47:00,877 Adams St, Austin,TX,73301 +183031,Bose SoundSport Headphones,1,99.99,2019-04-24 14:51:00,750 Jefferson St, San Francisco,CA,94016 +183032,Wired Headphones,1,11.99,2019-04-16 19:31:00,61 Center St, Los Angeles,CA,90001 +183033,USB-C Charging Cable,1,11.95,2019-04-17 14:16:00,216 Center St, Boston,MA,02215 +183034,iPhone,1,700.0,2019-04-16 20:52:00,127 Pine St, Boston,MA,02215 +183034,Lightning Charging Cable,1,14.95,2019-04-16 20:52:00,127 Pine St, Boston,MA,02215 +183035,Lightning Charging Cable,1,14.95,2019-04-03 12:25:00,40 1st St, Seattle,WA,98101 +183036,Flatscreen TV,1,300.0,2019-04-06 22:31:00,159 Elm St, Los Angeles,CA,90001 +183037,USB-C Charging Cable,1,11.95,2019-04-03 13:08:00,248 Elm St, San Francisco,CA,94016 +183038,USB-C Charging Cable,1,11.95,2019-04-23 17:16:00,187 4th St, Seattle,WA,98101 +183039,Wired Headphones,1,11.99,2019-04-28 23:11:00,731 Madison St, Atlanta,GA,30301 +183040,Wired Headphones,1,11.99,2019-04-13 22:39:00,712 Madison St, San Francisco,CA,94016 +183041,AA Batteries (4-pack),1,3.84,2019-04-09 12:15:00,504 14th St, Los Angeles,CA,90001 +183042,USB-C Charging Cable,1,11.95,2019-04-13 08:28:00,4 13th St, Seattle,WA,98101 +183043,AAA Batteries (4-pack),2,2.99,2019-04-19 21:06:00,670 Sunset St, San Francisco,CA,94016 +183044,ThinkPad Laptop,1,999.99,2019-04-23 21:03:00,938 Elm St, San Francisco,CA,94016 +183045,Lightning Charging Cable,1,14.95,2019-04-26 08:16:00,914 Meadow St, Dallas,TX,75001 +183046,Lightning Charging Cable,1,14.95,2019-04-13 20:35:00,700 Ridge St, Atlanta,GA,30301 +183047,AA Batteries (4-pack),1,3.84,2019-04-20 18:06:00,364 6th St, Boston,MA,02215 +183048,Bose SoundSport Headphones,1,99.99,2019-04-10 13:05:00,611 Spruce St, Boston,MA,02215 +183049,Macbook Pro Laptop,1,1700.0,2019-04-09 14:14:00,32 Center St, Los Angeles,CA,90001 +183050,Lightning Charging Cable,1,14.95,2019-04-09 11:19:00,577 Elm St, Dallas,TX,75001 +183051,AAA Batteries (4-pack),1,2.99,2019-04-02 23:32:00,643 Cherry St, Boston,MA,02215 +183052,AA Batteries (4-pack),1,3.84,2019-04-14 20:30:00,587 10th St, New York City,NY,10001 +183053,Wired Headphones,1,11.99,2019-04-08 20:17:00,255 9th St, Atlanta,GA,30301 +183054,Bose SoundSport Headphones,1,99.99,2019-04-21 01:52:00,735 6th St, San Francisco,CA,94016 +183055,AAA Batteries (4-pack),1,2.99,2019-04-19 09:43:00,330 North St, Seattle,WA,98101 +183056,34in Ultrawide Monitor,1,379.99,2019-04-18 01:58:00,622 Willow St, New York City,NY,10001 +183057,AA Batteries (4-pack),1,3.84,2019-04-05 09:59:00,192 Ridge St, Seattle,WA,98101 +183058,Wired Headphones,2,11.99,2019-04-30 22:21:00,303 Wilson St, Seattle,WA,98101 +183059,ThinkPad Laptop,1,999.99,2019-04-19 09:54:00,306 1st St, Boston,MA,02215 +183059,USB-C Charging Cable,1,11.95,2019-04-19 09:54:00,306 1st St, Boston,MA,02215 +183060,Lightning Charging Cable,1,14.95,2019-04-18 18:40:00,579 7th St, Boston,MA,02215 +183061,Bose SoundSport Headphones,1,99.99,2019-04-24 13:50:00,482 Lincoln St, New York City,NY,10001 +183062,Bose SoundSport Headphones,1,99.99,2019-04-24 18:02:00,184 Lake St, New York City,NY,10001 +183063,USB-C Charging Cable,1,11.95,2019-04-07 17:19:00,886 9th St, Los Angeles,CA,90001 +183064,ThinkPad Laptop,1,999.99,2019-04-17 19:45:00,238 Cherry St, San Francisco,CA,94016 +183065,27in FHD Monitor,1,149.99,2019-04-07 15:51:00,730 10th St, Seattle,WA,98101 +183066,Apple Airpods Headphones,1,150.0,2019-04-18 17:15:00,317 14th St, Portland,ME,04101 +183067,Wired Headphones,1,11.99,2019-04-21 11:10:00,982 Willow St, Portland,OR,97035 +183068,Apple Airpods Headphones,1,150.0,2019-04-07 10:35:00,757 Willow St, Austin,TX,73301 +183069,AA Batteries (4-pack),1,3.84,2019-04-21 11:29:00,75 2nd St, Atlanta,GA,30301 +183070,USB-C Charging Cable,1,11.95,2019-04-20 09:17:00,802 Walnut St, New York City,NY,10001 +183071,27in FHD Monitor,1,149.99,2019-04-12 18:59:00,59 Johnson St, Los Angeles,CA,90001 +183072,Macbook Pro Laptop,1,1700.0,2019-04-26 10:06:00,798 Highland St, New York City,NY,10001 +183073,Lightning Charging Cable,1,14.95,2019-04-05 18:03:00,171 13th St, Dallas,TX,75001 +183074,USB-C Charging Cable,1,11.95,2019-04-12 20:24:00,741 Cedar St, Boston,MA,02215 +183075,AAA Batteries (4-pack),1,2.99,2019-04-19 00:51:00,900 Johnson St, New York City,NY,10001 +183076,Google Phone,1,600.0,2019-04-26 09:47:00,311 Hill St, San Francisco,CA,94016 +183077,Wired Headphones,1,11.99,2019-04-11 06:17:00,787 Dogwood St, Atlanta,GA,30301 +183078,USB-C Charging Cable,1,11.95,2019-04-09 07:13:00,995 Dogwood St, Atlanta,GA,30301 +183079,Bose SoundSport Headphones,1,99.99,2019-04-30 14:10:00,626 13th St, San Francisco,CA,94016 +183080,Bose SoundSport Headphones,1,99.99,2019-04-11 21:58:00,171 Adams St, Los Angeles,CA,90001 +183081,34in Ultrawide Monitor,1,379.99,2019-04-21 12:33:00,235 Park St, Austin,TX,73301 +183082,AAA Batteries (4-pack),1,2.99,2019-04-20 00:08:00,757 10th St, Los Angeles,CA,90001 +183083,USB-C Charging Cable,1,11.95,2019-04-13 19:51:00,842 8th St, San Francisco,CA,94016 +183084,Lightning Charging Cable,1,14.95,2019-04-04 21:35:00,269 12th St, San Francisco,CA,94016 +183085,iPhone,1,700.0,2019-04-15 12:33:00,985 Highland St, Atlanta,GA,30301 +183085,Lightning Charging Cable,1,14.95,2019-04-15 12:33:00,985 Highland St, Atlanta,GA,30301 +183086,Bose SoundSport Headphones,1,99.99,2019-04-25 11:18:00,595 Meadow St, New York City,NY,10001 +183087,Google Phone,1,600.0,2019-04-05 11:16:00,411 1st St, Austin,TX,73301 +183088,USB-C Charging Cable,1,11.95,2019-04-12 18:38:00,296 Washington St, Atlanta,GA,30301 +183089,Lightning Charging Cable,1,14.95,2019-04-20 13:10:00,167 5th St, New York City,NY,10001 +183090,Apple Airpods Headphones,2,150.0,2019-04-28 11:47:00,843 Park St, Los Angeles,CA,90001 +183091,AAA Batteries (4-pack),1,2.99,2019-04-18 13:54:00,497 North St, San Francisco,CA,94016 +183092,USB-C Charging Cable,1,11.95,2019-04-30 15:46:00,606 5th St, Atlanta,GA,30301 +183093,Apple Airpods Headphones,1,150.0,2019-04-17 16:57:00,606 4th St, Dallas,TX,75001 +183093,ThinkPad Laptop,1,999.99,2019-04-17 16:57:00,606 4th St, Dallas,TX,75001 +183094,Wired Headphones,1,11.99,2019-04-11 09:43:00,507 River St, San Francisco,CA,94016 +183095,AAA Batteries (4-pack),1,2.99,2019-04-27 18:05:00,415 5th St, Portland,OR,97035 +183096,AA Batteries (4-pack),1,3.84,2019-04-10 20:03:00,709 8th St, San Francisco,CA,94016 +183097,Lightning Charging Cable,1,14.95,2019-04-11 17:22:00,160 Lake St, New York City,NY,10001 +183098,Lightning Charging Cable,1,14.95,2019-04-22 14:32:00,364 8th St, San Francisco,CA,94016 +183099,USB-C Charging Cable,1,11.95,2019-04-25 22:54:00,362 6th St, Portland,OR,97035 +183100,USB-C Charging Cable,1,11.95,2019-04-16 19:06:00,404 Lakeview St, Portland,OR,97035 +183101,Wired Headphones,1,11.99,2019-04-01 14:53:00,375 Lakeview St, Portland,OR,97035 +183102,AA Batteries (4-pack),1,3.84,2019-04-23 12:13:00,64 Park St, Portland,OR,97035 +183103,34in Ultrawide Monitor,1,379.99,2019-04-25 14:46:00,156 12th St, Boston,MA,02215 +183104,iPhone,1,700.0,2019-04-20 12:56:00,533 11th St, San Francisco,CA,94016 +183105,Lightning Charging Cable,1,14.95,2019-04-07 17:45:00,5 North St, Los Angeles,CA,90001 +183106,Wired Headphones,1,11.99,2019-04-25 18:51:00,745 Willow St, San Francisco,CA,94016 +183107,Lightning Charging Cable,1,14.95,2019-04-02 09:57:00,432 Main St, Portland,OR,97035 +183108,Bose SoundSport Headphones,1,99.99,2019-04-01 18:17:00,636 West St, Austin,TX,73301 +183109,AA Batteries (4-pack),1,3.84,2019-04-19 17:46:00,602 Forest St, Boston,MA,02215 +183110,USB-C Charging Cable,1,11.95,2019-04-01 12:31:00,289 Jackson St, Portland,OR,97035 +183111,LG Washing Machine,1,600.0,2019-04-19 22:03:00,308 12th St, Dallas,TX,75001 +183112,Lightning Charging Cable,1,14.95,2019-04-29 20:15:00,667 Main St, Boston,MA,02215 +183113,AA Batteries (4-pack),2,3.84,2019-04-29 03:05:00,695 10th St, New York City,NY,10001 +183114,USB-C Charging Cable,1,11.95,2019-04-08 19:26:00,978 2nd St, San Francisco,CA,94016 +183115,Apple Airpods Headphones,1,150.0,2019-04-03 09:18:00,773 Washington St, Boston,MA,02215 +183116,Google Phone,1,600.0,2019-04-24 00:56:00,112 Pine St, Los Angeles,CA,90001 +183117,AAA Batteries (4-pack),2,2.99,2019-04-11 19:42:00,773 Center St, Boston,MA,02215 +183118,AA Batteries (4-pack),1,3.84,2019-04-01 21:08:00,390 Park St, Los Angeles,CA,90001 +183119,Apple Airpods Headphones,1,150.0,2019-04-29 12:47:00,491 West St, New York City,NY,10001 +183120,AAA Batteries (4-pack),1,2.99,2019-04-30 08:52:00,51 Lakeview St, Los Angeles,CA,90001 +183121,AA Batteries (4-pack),3,3.84,2019-04-09 13:28:00,915 Madison St, Austin,TX,73301 +183122,Google Phone,1,600.0,2019-04-12 06:16:00,1 Adams St, Austin,TX,73301 +183122,USB-C Charging Cable,1,11.95,2019-04-12 06:16:00,1 Adams St, Austin,TX,73301 +183123,USB-C Charging Cable,3,11.95,2019-04-02 15:12:00,765 14th St, San Francisco,CA,94016 +183124,Bose SoundSport Headphones,1,99.99,2019-04-23 09:52:00,702 Washington St, Boston,MA,02215 +183125,AAA Batteries (4-pack),1,2.99,2019-04-24 17:55:00,136 Dogwood St, San Francisco,CA,94016 +183126,Google Phone,1,600.0,2019-04-24 23:15:00,249 13th St, Portland,OR,97035 +183127,AAA Batteries (4-pack),1,2.99,2019-04-27 15:30:00,566 5th St, Atlanta,GA,30301 +183128,AA Batteries (4-pack),1,3.84,2019-04-19 13:12:00,779 Ridge St, Atlanta,GA,30301 +183129,Flatscreen TV,1,300.0,2019-04-08 22:05:00,219 Sunset St, Atlanta,GA,30301 +183130,Wired Headphones,1,11.99,2019-04-17 05:45:00,511 9th St, Boston,MA,02215 +183131,ThinkPad Laptop,1,999.99,2019-04-26 00:32:00,887 Hill St, Boston,MA,02215 +183132,AAA Batteries (4-pack),1,2.99,2019-04-22 20:58:00,584 Dogwood St, Dallas,TX,75001 +183133,AA Batteries (4-pack),1,3.84,2019-04-11 11:07:00,102 Sunset St, San Francisco,CA,94016 +183134,AAA Batteries (4-pack),1,2.99,2019-04-16 17:36:00,203 12th St, Austin,TX,73301 +183135,AAA Batteries (4-pack),1,2.99,2019-04-29 12:22:00,391 13th St, New York City,NY,10001 +183136,AAA Batteries (4-pack),1,2.99,2019-04-30 15:45:00,57 12th St, San Francisco,CA,94016 +183137,Vareebadd Phone,1,400.0,2019-04-21 16:09:00,985 Hickory St, Boston,MA,02215 +183138,20in Monitor,1,109.99,2019-04-09 21:30:00,594 13th St, San Francisco,CA,94016 +183139,Google Phone,1,600.0,2019-04-02 11:02:00,836 Sunset St, Seattle,WA,98101 +183140,Google Phone,1,600.0,2019-04-17 19:05:00,508 14th St, New York City,NY,10001 +183140,USB-C Charging Cable,1,11.95,2019-04-17 19:05:00,508 14th St, New York City,NY,10001 +183141,AAA Batteries (4-pack),1,2.99,2019-04-05 14:45:00,948 4th St, New York City,NY,10001 +183142,Flatscreen TV,1,300.0,2019-04-11 09:30:00,334 Pine St, Boston,MA,02215 +183143,Wired Headphones,1,11.99,2019-04-23 18:01:00,569 5th St, San Francisco,CA,94016 +183144,27in FHD Monitor,1,149.99,2019-04-22 22:01:00,540 South St, Atlanta,GA,30301 +183145,USB-C Charging Cable,1,11.95,2019-04-12 01:02:00,502 8th St, Boston,MA,02215 +183146,iPhone,1,700.0,2019-04-09 12:23:00,667 Hill St, Boston,MA,02215 +183146,Lightning Charging Cable,1,14.95,2019-04-09 12:23:00,667 Hill St, Boston,MA,02215 +183147,27in 4K Gaming Monitor,1,389.99,2019-04-11 21:40:00,892 Church St, San Francisco,CA,94016 +183148,Bose SoundSport Headphones,1,99.99,2019-04-10 11:29:00,265 Pine St, San Francisco,CA,94016 +183149,Apple Airpods Headphones,1,150.0,2019-04-27 13:00:00,669 North St, Portland,OR,97035 +183149,27in 4K Gaming Monitor,1,389.99,2019-04-27 13:00:00,669 North St, Portland,OR,97035 +183150,Lightning Charging Cable,1,14.95,2019-04-17 17:46:00,113 Pine St, Seattle,WA,98101 +183151,AAA Batteries (4-pack),1,2.99,2019-04-08 21:09:00,775 Maple St, Atlanta,GA,30301 +183152,USB-C Charging Cable,1,11.95,2019-04-27 16:01:00,116 8th St, Los Angeles,CA,90001 +183153,iPhone,1,700.0,2019-04-15 11:27:00,410 Elm St, Seattle,WA,98101 +183154,AAA Batteries (4-pack),1,2.99,2019-04-19 14:08:00,789 Lake St, San Francisco,CA,94016 +183155,AAA Batteries (4-pack),2,2.99,2019-04-18 15:24:00,717 Washington St, New York City,NY,10001 +183156,Bose SoundSport Headphones,1,99.99,2019-04-08 18:58:00,425 Maple St, Portland,OR,97035 +183157,AA Batteries (4-pack),1,3.84,2019-04-02 06:35:00,91 14th St, Boston,MA,02215 +183158,USB-C Charging Cable,1,11.95,2019-04-14 01:26:00,272 6th St, Atlanta,GA,30301 +183159,AA Batteries (4-pack),1,3.84,2019-04-08 16:05:00,311 Highland St, San Francisco,CA,94016 +183160,AA Batteries (4-pack),1,3.84,2019-04-28 18:21:00,589 Park St, San Francisco,CA,94016 +183161,Lightning Charging Cable,3,14.95,2019-04-22 19:20:00,568 Jackson St, San Francisco,CA,94016 +183162,AAA Batteries (4-pack),1,2.99,2019-04-15 11:34:00,806 Adams St, San Francisco,CA,94016 +183163,Lightning Charging Cable,1,14.95,2019-04-13 19:03:00,680 South St, Atlanta,GA,30301 +183164,USB-C Charging Cable,1,11.95,2019-04-13 12:04:00,788 1st St, San Francisco,CA,94016 +183165,Lightning Charging Cable,2,14.95,2019-04-02 16:04:00,603 Sunset St, Los Angeles,CA,90001 +183166,AAA Batteries (4-pack),1,2.99,2019-04-02 21:47:00,366 Main St, Los Angeles,CA,90001 +183167,Lightning Charging Cable,1,14.95,2019-04-07 11:57:00,424 Jackson St, New York City,NY,10001 +183168,Macbook Pro Laptop,1,1700.0,2019-04-27 11:28:00,875 Pine St, Portland,OR,97035 +183169,Bose SoundSport Headphones,1,99.99,2019-04-08 09:20:00,59 Spruce St, Los Angeles,CA,90001 +183170,Flatscreen TV,1,300.0,2019-04-15 21:28:00,752 Hill St, San Francisco,CA,94016 +183171,Wired Headphones,1,11.99,2019-04-09 09:54:00,601 Adams St, Los Angeles,CA,90001 +183172,Flatscreen TV,1,300.0,2019-04-10 10:17:00,444 West St, Los Angeles,CA,90001 +183173,Lightning Charging Cable,2,14.95,2019-04-20 12:30:00,821 Elm St, Los Angeles,CA,90001 +183174,USB-C Charging Cable,1,11.95,2019-04-21 20:44:00,624 2nd St, New York City,NY,10001 +183175,Wired Headphones,1,11.99,2019-04-12 18:12:00,949 Highland St, Portland,OR,97035 +183176,Lightning Charging Cable,1,14.95,2019-04-15 15:10:00,361 9th St, New York City,NY,10001 +183177,iPhone,1,700.0,2019-04-24 12:43:00,337 14th St, Atlanta,GA,30301 +183177,Lightning Charging Cable,1,14.95,2019-04-24 12:43:00,337 14th St, Atlanta,GA,30301 +183178,AAA Batteries (4-pack),1,2.99,2019-04-29 20:07:00,380 North St, San Francisco,CA,94016 +183179,Macbook Pro Laptop,1,1700.0,2019-04-03 17:27:00,519 5th St, San Francisco,CA,94016 +183180,Apple Airpods Headphones,1,150.0,2019-04-21 09:50:00,779 Cedar St, Los Angeles,CA,90001 +183181,Lightning Charging Cable,1,14.95,2019-04-17 10:28:00,150 Walnut St, San Francisco,CA,94016 +183182,AA Batteries (4-pack),2,3.84,2019-04-03 10:13:00,408 Hill St, San Francisco,CA,94016 +183183,AAA Batteries (4-pack),3,2.99,2019-04-12 14:25:00,21 6th St, San Francisco,CA,94016 +183184,USB-C Charging Cable,1,11.95,2019-04-30 17:05:00,498 1st St, Atlanta,GA,30301 +183185,Wired Headphones,1,11.99,2019-04-22 18:22:00,617 Lakeview St, Austin,TX,73301 +183186,USB-C Charging Cable,1,11.95,2019-04-14 11:04:00,11 Forest St, Boston,MA,02215 +183187,AA Batteries (4-pack),1,3.84,2019-04-09 12:59:00,43 Walnut St, San Francisco,CA,94016 +183188,Wired Headphones,1,11.99,2019-04-30 21:46:00,22 12th St, San Francisco,CA,94016 +183189,USB-C Charging Cable,1,11.95,2019-04-17 20:05:00,841 7th St, Atlanta,GA,30301 +183190,20in Monitor,1,109.99,2019-04-22 14:56:00,253 Cherry St, Austin,TX,73301 +183191,Lightning Charging Cable,1,14.95,2019-04-08 18:35:00,212 West St, Dallas,TX,75001 +183192,34in Ultrawide Monitor,1,379.99,2019-04-13 21:07:00,500 Walnut St, Boston,MA,02215 +183193,AA Batteries (4-pack),2,3.84,2019-04-17 12:05:00,728 North St, Boston,MA,02215 +183194,AAA Batteries (4-pack),1,2.99,2019-04-09 17:18:00,178 Jackson St, San Francisco,CA,94016 +183195,20in Monitor,1,109.99,2019-04-05 20:05:00,312 Johnson St, San Francisco,CA,94016 +183196,Wired Headphones,1,11.99,2019-04-23 05:53:00,536 Maple St, Boston,MA,02215 +183197,AAA Batteries (4-pack),2,2.99,2019-04-23 10:24:00,540 10th St, Los Angeles,CA,90001 +183198,27in 4K Gaming Monitor,1,389.99,2019-04-21 10:54:00,760 8th St, Atlanta,GA,30301 +183199,Macbook Pro Laptop,1,1700.0,2019-04-10 10:59:00,629 Madison St, New York City,NY,10001 +183200,AAA Batteries (4-pack),1,2.99,2019-04-18 20:44:00,849 14th St, Boston,MA,02215 +183201,Flatscreen TV,1,300.0,2019-04-01 09:01:00,910 5th St, Seattle,WA,98101 +183202,Flatscreen TV,1,300.0,2019-04-24 11:45:00,6 Wilson St, Boston,MA,02215 +183203,27in 4K Gaming Monitor,1,389.99,2019-04-19 06:19:00,385 Main St, New York City,NY,10001 +183204,Wired Headphones,1,11.99,2019-04-02 11:10:00,258 West St, San Francisco,CA,94016 +183205,AA Batteries (4-pack),1,3.84,2019-04-07 08:57:00,88 11th St, Los Angeles,CA,90001 +183206,USB-C Charging Cable,1,11.95,2019-04-06 08:59:00,688 Center St, San Francisco,CA,94016 +183207,27in 4K Gaming Monitor,1,389.99,2019-04-18 15:25:00,259 Center St, San Francisco,CA,94016 +183208,Apple Airpods Headphones,1,150.0,2019-04-16 15:26:00,441 Cedar St, San Francisco,CA,94016 +183209,Bose SoundSport Headphones,1,99.99,2019-04-17 17:38:00,495 Lakeview St, Los Angeles,CA,90001 +183210,Lightning Charging Cable,1,14.95,2019-04-30 11:49:00,676 11th St, Boston,MA,02215 +183211,Wired Headphones,1,11.99,2019-04-15 22:16:00,249 Chestnut St, Dallas,TX,75001 +183212,USB-C Charging Cable,1,11.95,2019-04-24 13:05:00,479 Meadow St, San Francisco,CA,94016 +183213,Bose SoundSport Headphones,1,99.99,2019-04-03 11:45:00,55 13th St, New York City,NY,10001 +183214,Google Phone,1,600.0,2019-04-10 11:09:00,868 Center St, San Francisco,CA,94016 +183215,USB-C Charging Cable,1,11.95,2019-04-13 09:54:00,790 Hickory St, San Francisco,CA,94016 +183216,Lightning Charging Cable,1,14.95,2019-04-10 08:45:00,461 Walnut St, San Francisco,CA,94016 +183217,USB-C Charging Cable,1,11.95,2019-04-24 16:11:00,860 13th St, San Francisco,CA,94016 +183217,Lightning Charging Cable,1,14.95,2019-04-24 16:11:00,860 13th St, San Francisco,CA,94016 +183218,Apple Airpods Headphones,1,150.0,2019-04-29 12:39:00,445 4th St, Austin,TX,73301 +183218,AA Batteries (4-pack),1,3.84,2019-04-29 12:39:00,445 4th St, Austin,TX,73301 +183219,USB-C Charging Cable,1,11.95,2019-04-16 13:44:00,794 10th St, Atlanta,GA,30301 +183220,iPhone,1,700.0,2019-04-17 19:59:00,313 Church St, New York City,NY,10001 +183220,Lightning Charging Cable,1,14.95,2019-04-17 19:59:00,313 Church St, New York City,NY,10001 +183221,Lightning Charging Cable,1,14.95,2019-04-15 08:53:00,941 Washington St, Atlanta,GA,30301 +183222,34in Ultrawide Monitor,1,379.99,2019-04-04 02:21:00,141 Lincoln St, Atlanta,GA,30301 +183223,20in Monitor,1,109.99,2019-04-14 11:50:00,729 12th St, San Francisco,CA,94016 +183224,USB-C Charging Cable,1,11.95,2019-04-12 17:35:00,601 Main St, San Francisco,CA,94016 +183225,Lightning Charging Cable,1,14.95,2019-04-01 12:02:00,515 Wilson St, Austin,TX,73301 +183226,Wired Headphones,1,11.99,2019-04-16 13:29:00,801 Church St, Atlanta,GA,30301 +183227,USB-C Charging Cable,1,11.95,2019-04-21 14:17:00,575 12th St, San Francisco,CA,94016 +183228,AAA Batteries (4-pack),2,2.99,2019-04-07 04:24:00,34 Chestnut St, Portland,OR,97035 +183229,USB-C Charging Cable,3,11.95,2019-04-20 06:12:00,691 Park St, Los Angeles,CA,90001 +183230,Google Phone,1,600.0,2019-04-04 11:09:00,528 South St, San Francisco,CA,94016 +183230,Bose SoundSport Headphones,1,99.99,2019-04-04 11:09:00,528 South St, San Francisco,CA,94016 +183231,Lightning Charging Cable,1,14.95,2019-04-12 20:23:00,826 Cedar St, San Francisco,CA,94016 +183232,34in Ultrawide Monitor,1,379.99,2019-04-07 18:58:00,98 Forest St, Dallas,TX,75001 +183233,iPhone,1,700.0,2019-04-24 09:37:00,535 Center St, San Francisco,CA,94016 +183234,Wired Headphones,1,11.99,2019-04-26 10:21:00,618 Hill St, Dallas,TX,75001 +183235,AA Batteries (4-pack),1,3.84,2019-04-11 20:00:00,292 9th St, Austin,TX,73301 +183236,AAA Batteries (4-pack),1,2.99,2019-04-15 15:50:00,906 Wilson St, Los Angeles,CA,90001 +183237,34in Ultrawide Monitor,1,379.99,2019-04-14 06:58:00,640 South St, Seattle,WA,98101 +183238,Wired Headphones,1,11.99,2019-04-15 10:34:00,860 West St, San Francisco,CA,94016 +183239,27in 4K Gaming Monitor,1,389.99,2019-04-18 21:45:00,717 Forest St, Seattle,WA,98101 +183240,AA Batteries (4-pack),1,3.84,2019-04-16 15:32:00,832 14th St, San Francisco,CA,94016 +183241,AA Batteries (4-pack),1,3.84,2019-04-10 22:29:00,110 Jackson St, San Francisco,CA,94016 +183242,USB-C Charging Cable,1,11.95,2019-04-27 17:06:00,101 12th St, San Francisco,CA,94016 +183243,AAA Batteries (4-pack),1,2.99,2019-04-14 19:01:00,970 Lakeview St, San Francisco,CA,94016 +183244,USB-C Charging Cable,1,11.95,2019-04-05 15:34:00,677 Meadow St, San Francisco,CA,94016 +183245,Lightning Charging Cable,1,14.95,2019-04-18 16:12:00,7 2nd St, San Francisco,CA,94016 +183246,USB-C Charging Cable,1,11.95,2019-04-29 12:30:00,465 8th St, Los Angeles,CA,90001 +183247,Bose SoundSport Headphones,1,99.99,2019-04-21 09:06:00,170 Maple St, Seattle,WA,98101 +183248,Flatscreen TV,1,300.0,2019-04-11 16:36:00,340 11th St, New York City,NY,10001 +183249,AA Batteries (4-pack),1,3.84,2019-04-26 13:42:00,177 5th St, Austin,TX,73301 +183250,Flatscreen TV,1,300.0,2019-04-20 11:57:00,769 12th St, San Francisco,CA,94016 +183251,Wired Headphones,1,11.99,2019-04-14 13:05:00,691 1st St, Los Angeles,CA,90001 +183252,Wired Headphones,1,11.99,2019-04-04 11:59:00,778 Adams St, Los Angeles,CA,90001 +183253,AA Batteries (4-pack),2,3.84,2019-04-01 21:10:00,61 Hickory St, San Francisco,CA,94016 +183254,Wired Headphones,1,11.99,2019-04-29 20:52:00,751 Main St, Dallas,TX,75001 +183255,USB-C Charging Cable,1,11.95,2019-04-10 12:34:00,64 West St, Boston,MA,02215 +183256,LG Washing Machine,1,600.0,2019-04-27 15:16:00,17 Pine St, Dallas,TX,75001 +183257,Macbook Pro Laptop,1,1700.0,2019-04-27 10:46:00,910 5th St, Los Angeles,CA,90001 +183258,AAA Batteries (4-pack),2,2.99,2019-04-27 08:41:00,15 River St, Portland,OR,97035 +183259,USB-C Charging Cable,2,11.95,2019-04-21 20:03:00,243 Lincoln St, Seattle,WA,98101 +183260,AA Batteries (4-pack),1,3.84,2019-04-28 10:16:00,159 4th St, San Francisco,CA,94016 +183261,AAA Batteries (4-pack),1,2.99,2019-04-30 16:55:00,190 Jefferson St, New York City,NY,10001 +183262,Lightning Charging Cable,1,14.95,2019-04-12 23:44:00,280 6th St, Portland,OR,97035 +183263,20in Monitor,1,109.99,2019-04-23 05:00:00,63 Center St, Los Angeles,CA,90001 +183264,Vareebadd Phone,1,400.0,2019-04-28 19:10:00,575 Park St, San Francisco,CA,94016 +183265,AA Batteries (4-pack),2,3.84,2019-04-14 16:10:00,113 Park St, Boston,MA,02215 +183266,ThinkPad Laptop,1,999.99,2019-04-12 19:44:00,304 Elm St, Los Angeles,CA,90001 +183267,Lightning Charging Cable,1,14.95,2019-04-26 18:42:00,400 Wilson St, Seattle,WA,98101 +183268,AA Batteries (4-pack),1,3.84,2019-04-30 19:38:00,203 Adams St, Dallas,TX,75001 +183269,Bose SoundSport Headphones,1,99.99,2019-04-14 22:21:00,847 14th St, Seattle,WA,98101 +183270,iPhone,1,700.0,2019-04-02 09:03:00,80 Cedar St, New York City,NY,10001 +183271,27in FHD Monitor,1,149.99,2019-04-27 18:46:00,155 13th St, Portland,OR,97035 +183272,AAA Batteries (4-pack),1,2.99,2019-04-18 11:03:00,801 Washington St, Atlanta,GA,30301 +183273,AA Batteries (4-pack),2,3.84,2019-04-17 17:41:00,294 Sunset St, Atlanta,GA,30301 +183274,iPhone,1,700.0,2019-04-05 06:56:00,336 13th St, Dallas,TX,75001 +183275,27in FHD Monitor,1,149.99,2019-04-17 16:23:00,757 Maple St, Seattle,WA,98101 +183276,Lightning Charging Cable,1,14.95,2019-04-06 21:40:00,438 5th St, Boston,MA,02215 +183277,Lightning Charging Cable,1,14.95,2019-04-21 10:57:00,944 12th St, Dallas,TX,75001 +183278,Google Phone,1,600.0,2019-04-20 00:26:00,278 6th St, New York City,NY,10001 +183279,AAA Batteries (4-pack),1,2.99,2019-04-15 09:56:00,706 Lake St, Austin,TX,73301 +183280,Lightning Charging Cable,1,14.95,2019-04-21 20:46:00,621 Jefferson St, Los Angeles,CA,90001 +183281,Lightning Charging Cable,1,14.95,2019-04-29 11:05:00,69 Highland St, Portland,OR,97035 +183282,Lightning Charging Cable,1,14.95,2019-04-30 11:12:00,349 Park St, Los Angeles,CA,90001 +183283,Bose SoundSport Headphones,1,99.99,2019-04-16 18:38:00,215 Lakeview St, Atlanta,GA,30301 +183284,AA Batteries (4-pack),3,3.84,2019-04-08 20:14:00,527 Hickory St, Dallas,TX,75001 +183285,USB-C Charging Cable,1,11.95,2019-04-30 11:20:00,190 Chestnut St, Boston,MA,02215 +183286,ThinkPad Laptop,1,999.99,2019-04-18 13:14:00,327 Ridge St, Boston,MA,02215 +183287,Flatscreen TV,1,300.0,2019-04-29 23:15:00,467 Highland St, New York City,NY,10001 +183288,AAA Batteries (4-pack),1,2.99,2019-04-22 13:06:00,743 Hickory St, Los Angeles,CA,90001 +183289,Lightning Charging Cable,1,14.95,2019-04-12 12:42:00,433 Wilson St, Los Angeles,CA,90001 +183290,Bose SoundSport Headphones,1,99.99,2019-04-18 17:10:00,230 7th St, Atlanta,GA,30301 +183291,USB-C Charging Cable,1,11.95,2019-04-09 21:24:00,797 South St, Dallas,TX,75001 +183292,Wired Headphones,1,11.99,2019-04-07 14:27:00,842 Chestnut St, Los Angeles,CA,90001 +183293,AA Batteries (4-pack),1,3.84,2019-04-27 22:05:00,959 Sunset St, San Francisco,CA,94016 +183294,AAA Batteries (4-pack),1,2.99,2019-04-30 20:45:00,208 Chestnut St, Los Angeles,CA,90001 +183295,AAA Batteries (4-pack),3,2.99,2019-04-20 07:22:00,184 14th St, Portland,OR,97035 +183296,iPhone,1,700.0,2019-04-03 20:49:00,94 Madison St, Seattle,WA,98101 +183297,Apple Airpods Headphones,1,150.0,2019-04-09 15:17:00,353 Park St, Los Angeles,CA,90001 +183298,Wired Headphones,1,11.99,2019-04-19 20:31:00,93 Meadow St, Los Angeles,CA,90001 +183299,Lightning Charging Cable,1,14.95,2019-04-05 17:15:00,416 Washington St, New York City,NY,10001 +183300,Lightning Charging Cable,1,14.95,2019-04-20 12:03:00,287 Madison St, Los Angeles,CA,90001 +183301,27in 4K Gaming Monitor,1,389.99,2019-04-10 19:44:00,226 Dogwood St, Los Angeles,CA,90001 +183302,AAA Batteries (4-pack),2,2.99,2019-04-29 23:10:00,19 North St, San Francisco,CA,94016 +183303,iPhone,1,700.0,2019-04-19 16:08:00,193 West St, Atlanta,GA,30301 +183304,Bose SoundSport Headphones,1,99.99,2019-04-26 12:27:00,902 Cherry St, New York City,NY,10001 +183305,Wired Headphones,1,11.99,2019-04-25 14:48:00,931 South St, Boston,MA,02215 +183306,AAA Batteries (4-pack),2,2.99,2019-04-24 23:36:00,657 Maple St, Boston,MA,02215 +183307,Wired Headphones,1,11.99,2019-04-07 19:54:00,83 Hill St, Austin,TX,73301 +183308,Lightning Charging Cable,2,14.95,2019-04-13 19:02:00,807 Main St, Los Angeles,CA,90001 +183309,Google Phone,1,600.0,2019-04-23 13:03:00,277 2nd St, New York City,NY,10001 +183310,Google Phone,1,600.0,2019-04-22 13:26:00,89 Dogwood St, San Francisco,CA,94016 +183311,USB-C Charging Cable,1,11.95,2019-04-17 00:06:00,680 10th St, San Francisco,CA,94016 +183312,AA Batteries (4-pack),1,3.84,2019-04-05 02:22:00,505 Ridge St, San Francisco,CA,94016 +183313,Wired Headphones,1,11.99,2019-04-15 21:09:00,223 Jackson St, New York City,NY,10001 +183314,USB-C Charging Cable,1,11.95,2019-04-13 13:24:00,354 Pine St, Los Angeles,CA,90001 +183315,Google Phone,1,600.0,2019-04-29 23:55:00,312 9th St, Atlanta,GA,30301 +183315,USB-C Charging Cable,1,11.95,2019-04-29 23:55:00,312 9th St, Atlanta,GA,30301 +183316,USB-C Charging Cable,1,11.95,2019-04-13 09:48:00,787 Hickory St, Los Angeles,CA,90001 +183317,Apple Airpods Headphones,1,150.0,2019-04-16 15:04:00,325 Lake St, Boston,MA,02215 +183318,AA Batteries (4-pack),2,3.84,2019-04-03 11:45:00,439 2nd St, Los Angeles,CA,90001 +183319,Wired Headphones,1,11.99,2019-04-05 20:08:00,99 Dogwood St, San Francisco,CA,94016 +183320,Macbook Pro Laptop,1,1700.0,2019-04-23 15:25:00,151 Highland St, New York City,NY,10001 +183321,Flatscreen TV,1,300.0,2019-04-05 20:25:00,608 Ridge St, San Francisco,CA,94016 +183322,27in 4K Gaming Monitor,1,389.99,2019-04-01 19:45:00,767 11th St, Boston,MA,02215 +183323,AAA Batteries (4-pack),2,2.99,2019-04-01 23:32:00,601 South St, San Francisco,CA,94016 +183324,Apple Airpods Headphones,1,150.0,2019-04-22 00:28:00,452 Lincoln St, San Francisco,CA,94016 +183325,Vareebadd Phone,1,400.0,2019-04-27 11:41:00,555 Adams St, Atlanta,GA,30301 +183325,USB-C Charging Cable,1,11.95,2019-04-27 11:41:00,555 Adams St, Atlanta,GA,30301 +183326,Apple Airpods Headphones,1,150.0,2019-04-12 14:39:00,642 Walnut St, Austin,TX,73301 +183327,Bose SoundSport Headphones,1,99.99,2019-04-15 09:38:00,271 Dogwood St, Los Angeles,CA,90001 +183328,20in Monitor,1,109.99,2019-04-28 09:58:00,933 11th St, San Francisco,CA,94016 +183329,Lightning Charging Cable,1,14.95,2019-04-03 09:20:00,97 North St, Los Angeles,CA,90001 +183330,Macbook Pro Laptop,1,1700.0,2019-04-18 02:07:00,197 6th St, San Francisco,CA,94016 +183331,Apple Airpods Headphones,1,150.0,2019-04-18 20:03:00,888 Sunset St, Austin,TX,73301 +183332,AA Batteries (4-pack),1,3.84,2019-04-18 22:28:00,59 West St, Boston,MA,02215 +183333,AA Batteries (4-pack),2,3.84,2019-04-12 19:49:00,854 8th St, New York City,NY,10001 +183334,Apple Airpods Headphones,1,150.0,2019-04-13 13:16:00,450 Hill St, Dallas,TX,75001 +183335,Lightning Charging Cable,1,14.95,2019-04-07 14:56:00,541 Elm St, Boston,MA,02215 +183336,USB-C Charging Cable,1,11.95,2019-04-27 19:58:00,864 South St, Boston,MA,02215 +183337,USB-C Charging Cable,1,11.95,2019-04-17 09:32:00,47 Lake St, Los Angeles,CA,90001 +183338,AA Batteries (4-pack),1,3.84,2019-04-22 22:53:00,772 Lincoln St, Boston,MA,02215 +183339,Bose SoundSport Headphones,1,99.99,2019-04-09 22:06:00,356 Lakeview St, Boston,MA,02215 +183340,AAA Batteries (4-pack),3,2.99,2019-04-07 18:43:00,706 Lincoln St, Seattle,WA,98101 +183341,USB-C Charging Cable,1,11.95,2019-04-08 11:17:00,464 Church St, San Francisco,CA,94016 +183342,Vareebadd Phone,1,400.0,2019-04-06 22:29:00,449 Pine St, Boston,MA,02215 +183342,Wired Headphones,1,11.99,2019-04-06 22:29:00,449 Pine St, Boston,MA,02215 +183343,Lightning Charging Cable,1,14.95,2019-04-06 18:20:00,929 Hickory St, Portland,OR,97035 +183344,AA Batteries (4-pack),1,3.84,2019-04-10 19:00:00,967 Chestnut St, Atlanta,GA,30301 +183345,Apple Airpods Headphones,1,150.0,2019-04-20 17:58:00,107 10th St, San Francisco,CA,94016 +183346,AA Batteries (4-pack),1,3.84,2019-04-20 15:33:00,817 River St, New York City,NY,10001 +183347,USB-C Charging Cable,1,11.95,2019-04-04 21:59:00,670 Jackson St, New York City,NY,10001 +183348,Bose SoundSport Headphones,1,99.99,2019-04-30 16:03:00,869 1st St, San Francisco,CA,94016 +183349,AA Batteries (4-pack),2,3.84,2019-04-27 10:08:00,503 Adams St, Los Angeles,CA,90001 +183350,27in FHD Monitor,1,149.99,2019-04-21 15:00:00,773 14th St, New York City,NY,10001 +183351,USB-C Charging Cable,1,11.95,2019-04-03 18:33:00,41 Dogwood St, San Francisco,CA,94016 +183352,Wired Headphones,1,11.99,2019-04-11 20:38:00,635 Main St, New York City,NY,10001 +183353,27in FHD Monitor,1,149.99,2019-04-20 19:37:00,993 Highland St, New York City,NY,10001 +183354,Wired Headphones,1,11.99,2019-04-20 22:49:00,987 Johnson St, Atlanta,GA,30301 +183355,AA Batteries (4-pack),1,3.84,2019-04-12 15:13:00,35 North St, Dallas,TX,75001 +183356,Wired Headphones,1,11.99,2019-04-18 10:26:00,588 South St, New York City,NY,10001 +183357,27in 4K Gaming Monitor,1,389.99,2019-04-25 18:43:00,475 13th St, Portland,OR,97035 +183358,Flatscreen TV,1,300.0,2019-04-16 07:58:00,176 1st St, Atlanta,GA,30301 +183359,USB-C Charging Cable,1,11.95,2019-04-03 19:57:00,199 11th St, Austin,TX,73301 +183360,Lightning Charging Cable,1,14.95,2019-04-15 03:17:00,25 Jefferson St, Los Angeles,CA,90001 +183361,iPhone,1,700.0,2019-04-12 21:36:00,912 5th St, Boston,MA,02215 +183361,Lightning Charging Cable,1,14.95,2019-04-12 21:36:00,912 5th St, Boston,MA,02215 +183361,Apple Airpods Headphones,1,150.0,2019-04-12 21:36:00,912 5th St, Boston,MA,02215 +183362,Apple Airpods Headphones,1,150.0,2019-04-01 19:03:00,97 4th St, Boston,MA,02215 +183363,Macbook Pro Laptop,1,1700.0,2019-04-21 12:17:00,120 Wilson St, Austin,TX,73301 +183364,27in 4K Gaming Monitor,1,389.99,2019-04-05 09:40:00,130 Johnson St, Austin,TX,73301 +183365,AA Batteries (4-pack),1,3.84,2019-04-04 22:18:00,320 Adams St, Seattle,WA,98101 +183366,20in Monitor,1,109.99,2019-04-30 16:09:00,321 Hill St, Atlanta,GA,30301 +183367,20in Monitor,1,109.99,2019-04-20 06:04:00,727 Dogwood St, Portland,OR,97035 +183368,Lightning Charging Cable,1,14.95,2019-04-12 11:13:00,475 Elm St, Atlanta,GA,30301 +183369,20in Monitor,1,109.99,2019-04-23 20:47:00,538 West St, Seattle,WA,98101 +183370,AA Batteries (4-pack),1,3.84,2019-04-24 21:25:00,550 6th St, Los Angeles,CA,90001 +183371,USB-C Charging Cable,1,11.95,2019-04-18 09:40:00,144 West St, Los Angeles,CA,90001 +183372,Bose SoundSport Headphones,1,99.99,2019-04-16 10:20:00,903 North St, New York City,NY,10001 +183373,iPhone,1,700.0,2019-04-09 10:46:00,216 4th St, Portland,ME,04101 +183374,34in Ultrawide Monitor,1,379.99,2019-04-24 13:30:00,483 Wilson St, Boston,MA,02215 +183375,Apple Airpods Headphones,1,150.0,2019-04-28 19:30:00,375 Walnut St, Dallas,TX,75001 +183376,iPhone,1,700.0,2019-04-13 09:09:00,638 Forest St, San Francisco,CA,94016 +183377,Lightning Charging Cable,1,14.95,2019-04-25 18:24:00,17 Walnut St, Seattle,WA,98101 +183378,27in 4K Gaming Monitor,1,389.99,2019-04-20 09:40:00,280 Spruce St, New York City,NY,10001 +183379,Macbook Pro Laptop,1,1700.0,2019-04-18 09:40:00,553 12th St, San Francisco,CA,94016 +183380,Wired Headphones,1,11.99,2019-04-21 13:38:00,157 Jefferson St, Atlanta,GA,30301 +183381,Lightning Charging Cable,1,14.95,2019-04-17 11:32:00,160 Hill St, Los Angeles,CA,90001 +183382,Bose SoundSport Headphones,1,99.99,2019-04-08 19:05:00,854 Cherry St, New York City,NY,10001 +183383,iPhone,1,700.0,2019-04-16 14:47:00,696 Jackson St, Los Angeles,CA,90001 +183383,34in Ultrawide Monitor,1,379.99,2019-04-16 14:47:00,696 Jackson St, Los Angeles,CA,90001 +183384,Bose SoundSport Headphones,1,99.99,2019-04-01 13:45:00,540 2nd St, New York City,NY,10001 +183385,Macbook Pro Laptop,1,1700.0,2019-04-29 11:54:00,263 South St, Austin,TX,73301 +183386,Apple Airpods Headphones,1,150.0,2019-04-08 18:11:00,274 Elm St, New York City,NY,10001 +183387,ThinkPad Laptop,1,999.99,2019-04-16 11:07:00,604 Lincoln St, Los Angeles,CA,90001 +183388,iPhone,1,700.0,2019-04-23 10:51:00,560 Wilson St, Austin,TX,73301 +183389,AA Batteries (4-pack),1,3.84,2019-04-23 22:31:00,234 Washington St, Portland,OR,97035 +183390,USB-C Charging Cable,1,11.95,2019-04-12 22:28:00,491 11th St, San Francisco,CA,94016 +183391,Google Phone,1,600.0,2019-04-16 11:37:00,517 River St, Austin,TX,73301 +183392,27in 4K Gaming Monitor,1,389.99,2019-04-09 21:59:00,264 North St, Seattle,WA,98101 +183393,AAA Batteries (4-pack),1,2.99,2019-04-15 05:47:00,738 Chestnut St, San Francisco,CA,94016 +183394,AAA Batteries (4-pack),1,2.99,2019-04-21 21:54:00,767 Meadow St, Boston,MA,02215 +183395,AA Batteries (4-pack),2,3.84,2019-04-19 16:59:00,273 Main St, Boston,MA,02215 +183396,Lightning Charging Cable,1,14.95,2019-04-29 19:06:00,730 River St, Dallas,TX,75001 +183397,AA Batteries (4-pack),1,3.84,2019-04-18 12:12:00,115 Dogwood St, Boston,MA,02215 +183398,Lightning Charging Cable,1,14.95,2019-04-27 07:52:00,108 Cherry St, Boston,MA,02215 +183399,AA Batteries (4-pack),1,3.84,2019-04-12 21:43:00,657 Meadow St, New York City,NY,10001 +183400,27in 4K Gaming Monitor,1,389.99,2019-04-13 14:32:00,274 4th St, New York City,NY,10001 +183401,AAA Batteries (4-pack),1,2.99,2019-04-26 22:48:00,389 8th St, Dallas,TX,75001 +183402,AAA Batteries (4-pack),1,2.99,2019-04-09 19:49:00,287 13th St, Portland,OR,97035 +183403,27in FHD Monitor,1,149.99,2019-04-08 22:01:00,749 River St, San Francisco,CA,94016 +183404,Macbook Pro Laptop,1,1700.0,2019-04-28 09:34:00,962 Maple St, Seattle,WA,98101 +183405,USB-C Charging Cable,1,11.95,2019-04-26 14:06:00,852 Adams St, San Francisco,CA,94016 +183406,27in 4K Gaming Monitor,1,389.99,2019-04-24 14:55:00,787 Forest St, Seattle,WA,98101 +183407,Wired Headphones,1,11.99,2019-04-10 18:37:00,367 Lincoln St, Boston,MA,02215 +183408,AA Batteries (4-pack),1,3.84,2019-04-12 08:23:00,159 11th St, New York City,NY,10001 +183409,iPhone,1,700.0,2019-04-08 18:27:00,198 Wilson St, Austin,TX,73301 +183410,USB-C Charging Cable,1,11.95,2019-04-10 16:29:00,272 6th St, Atlanta,GA,30301 +183411,Apple Airpods Headphones,1,150.0,2019-04-03 21:07:00,806 Hickory St, Los Angeles,CA,90001 +183412,20in Monitor,1,109.99,2019-04-28 17:46:00,883 Jefferson St, Boston,MA,02215 +183413,AA Batteries (4-pack),1,3.84,2019-04-30 17:46:00,926 Maple St, Boston,MA,02215 +183414,AA Batteries (4-pack),1,3.84,2019-04-02 16:56:00,238 4th St, San Francisco,CA,94016 +183415,Bose SoundSport Headphones,1,99.99,2019-04-08 18:02:00,504 Willow St, Seattle,WA,98101 +183416,27in 4K Gaming Monitor,1,389.99,2019-04-14 19:29:00,260 West St, Los Angeles,CA,90001 +183417,AAA Batteries (4-pack),1,2.99,2019-04-22 12:15:00,118 Wilson St, Los Angeles,CA,90001 +183418,20in Monitor,1,109.99,2019-04-02 10:58:00,324 Cedar St, San Francisco,CA,94016 +183419,AAA Batteries (4-pack),1,2.99,2019-04-23 09:59:00,184 5th St, San Francisco,CA,94016 +183420,LG Washing Machine,1,600.0,2019-04-27 18:54:00,835 South St, Boston,MA,02215 +183421,AA Batteries (4-pack),1,3.84,2019-04-28 10:57:00,985 West St, Los Angeles,CA,90001 +183422,Google Phone,1,600.0,2019-04-26 06:16:00,60 Lake St, Atlanta,GA,30301 +183422,Wired Headphones,1,11.99,2019-04-26 06:16:00,60 Lake St, Atlanta,GA,30301 +183423,AAA Batteries (4-pack),1,2.99,2019-04-26 22:12:00,472 12th St, San Francisco,CA,94016 +183424,Wired Headphones,1,11.99,2019-04-25 16:59:00,214 Pine St, San Francisco,CA,94016 +183425,AAA Batteries (4-pack),1,2.99,2019-04-16 10:17:00,428 Main St, Seattle,WA,98101 +183426,Bose SoundSport Headphones,1,99.99,2019-04-20 12:46:00,799 Elm St, Portland,OR,97035 +183427,Flatscreen TV,1,300.0,2019-04-18 20:33:00,946 13th St, New York City,NY,10001 +183428,Wired Headphones,1,11.99,2019-04-11 20:56:00,65 13th St, Portland,OR,97035 +183429,20in Monitor,1,109.99,2019-04-21 12:24:00,106 Sunset St, Los Angeles,CA,90001 +183430,Lightning Charging Cable,1,14.95,2019-04-15 03:00:00,670 West St, Los Angeles,CA,90001 +183431,AAA Batteries (4-pack),1,2.99,2019-04-27 12:37:00,630 North St, Seattle,WA,98101 +183432,Flatscreen TV,1,300.0,2019-04-24 18:36:00,535 Pine St, Boston,MA,02215 +183433,Bose SoundSport Headphones,1,99.99,2019-04-03 13:33:00,331 12th St, Dallas,TX,75001 +183434,Macbook Pro Laptop,1,1700.0,2019-04-26 15:46:00,419 6th St, Atlanta,GA,30301 +183435,ThinkPad Laptop,1,999.99,2019-04-24 05:56:00,474 2nd St, Dallas,TX,75001 +183436,iPhone,1,700.0,2019-04-03 18:25:00,491 14th St, San Francisco,CA,94016 +183436,Lightning Charging Cable,1,14.95,2019-04-03 18:25:00,491 14th St, San Francisco,CA,94016 +183436,Wired Headphones,2,11.99,2019-04-03 18:25:00,491 14th St, San Francisco,CA,94016 +183437,Google Phone,1,600.0,2019-04-12 17:06:00,694 Walnut St, San Francisco,CA,94016 +183438,Lightning Charging Cable,1,14.95,2019-04-09 09:59:00,940 Main St, Portland,ME,04101 +183439,Flatscreen TV,1,300.0,2019-04-24 21:36:00,728 Sunset St, New York City,NY,10001 +183440,USB-C Charging Cable,1,11.95,2019-04-23 18:02:00,914 Jefferson St, New York City,NY,10001 +183441,AAA Batteries (4-pack),1,2.99,2019-04-11 22:15:00,351 2nd St, San Francisco,CA,94016 +183442,Wired Headphones,1,11.99,2019-04-12 21:40:00,140 Walnut St, Atlanta,GA,30301 +183443,AA Batteries (4-pack),3,3.84,2019-04-17 01:19:00,372 2nd St, Austin,TX,73301 +183444,USB-C Charging Cable,1,11.95,2019-04-05 13:17:00,960 Church St, San Francisco,CA,94016 +183445,Apple Airpods Headphones,1,150.0,2019-04-02 11:45:00,586 Jefferson St, New York City,NY,10001 +183446,34in Ultrawide Monitor,1,379.99,2019-04-24 01:59:00,234 Wilson St, Austin,TX,73301 +183447,AA Batteries (4-pack),2,3.84,2019-04-05 10:40:00,65 Park St, Austin,TX,73301 +183448,34in Ultrawide Monitor,1,379.99,2019-04-19 17:35:00,283 12th St, Portland,OR,97035 +183449,Apple Airpods Headphones,1,150.0,2019-04-15 13:07:00,767 Johnson St, Dallas,TX,75001 +183450,iPhone,1,700.0,2019-04-02 09:15:00,142 10th St, San Francisco,CA,94016 +183451,Wired Headphones,1,11.99,2019-04-02 10:00:00,56 4th St, San Francisco,CA,94016 +183452,20in Monitor,1,109.99,2019-04-03 12:09:00,12 Ridge St, Austin,TX,73301 +183452,USB-C Charging Cable,1,11.95,2019-04-03 12:09:00,12 Ridge St, Austin,TX,73301 +183453,USB-C Charging Cable,1,11.95,2019-04-27 12:11:00,584 Dogwood St, New York City,NY,10001 +183454,iPhone,1,700.0,2019-04-07 11:33:00,604 Park St, Portland,ME,04101 +183454,Apple Airpods Headphones,1,150.0,2019-04-07 11:33:00,604 Park St, Portland,ME,04101 +183455,iPhone,1,700.0,2019-04-19 18:46:00,975 Pine St, Boston,MA,02215 +183456,USB-C Charging Cable,1,11.95,2019-04-20 13:13:00,984 Dogwood St, Boston,MA,02215 +183457,Google Phone,1,600.0,2019-04-05 13:52:00,234 Jackson St, Seattle,WA,98101 +183458,AAA Batteries (4-pack),1,2.99,2019-04-06 22:32:00,45 Jackson St, San Francisco,CA,94016 +183459,Apple Airpods Headphones,1,150.0,2019-04-13 09:46:00,143 Hill St, Boston,MA,02215 +183460,Wired Headphones,2,11.99,2019-04-03 10:48:00,101 11th St, New York City,NY,10001 +183461,AA Batteries (4-pack),3,3.84,2019-04-13 06:49:00,343 6th St, New York City,NY,10001 +183462,AA Batteries (4-pack),2,3.84,2019-04-06 07:51:00,88 Park St, Boston,MA,02215 +183463,AA Batteries (4-pack),1,3.84,2019-04-23 22:04:00,869 12th St, Dallas,TX,75001 +183464,Google Phone,1,600.0,2019-04-23 22:08:00,476 Jackson St, Seattle,WA,98101 +183465,USB-C Charging Cable,1,11.95,2019-04-30 07:06:00,622 8th St, Atlanta,GA,30301 +183466,27in FHD Monitor,1,149.99,2019-04-18 18:56:00,132 2nd St, Portland,ME,04101 +183467,Apple Airpods Headphones,1,150.0,2019-04-13 21:24:00,130 North St, Atlanta,GA,30301 +183468,Google Phone,1,600.0,2019-04-04 11:34:00,179 Lincoln St, Los Angeles,CA,90001 +183468,USB-C Charging Cable,1,11.95,2019-04-04 11:34:00,179 Lincoln St, Los Angeles,CA,90001 +183469,Lightning Charging Cable,1,14.95,2019-04-26 18:21:00,51 Hill St, Boston,MA,02215 +183470,Wired Headphones,1,11.99,2019-04-16 12:55:00,3 Lincoln St, Seattle,WA,98101 +183471,20in Monitor,1,109.99,2019-04-02 18:30:00,332 Cherry St, Seattle,WA,98101 +183472,USB-C Charging Cable,1,11.95,2019-04-03 16:20:00,563 Adams St, New York City,NY,10001 +183473,Google Phone,1,600.0,2019-04-10 13:25:00,373 Meadow St, Boston,MA,02215 +183474,Bose SoundSport Headphones,1,99.99,2019-04-21 01:36:00,649 4th St, San Francisco,CA,94016 +183475,Lightning Charging Cable,1,14.95,2019-04-13 17:12:00,6 Chestnut St, Los Angeles,CA,90001 +183476,AA Batteries (4-pack),1,3.84,2019-04-07 14:17:00,166 Wilson St, New York City,NY,10001 +183477,AAA Batteries (4-pack),2,2.99,2019-04-05 00:58:00,435 Cherry St, Atlanta,GA,30301 +183478,AAA Batteries (4-pack),1,2.99,2019-04-27 07:18:00,577 2nd St, San Francisco,CA,94016 +183479,Vareebadd Phone,1,400.0,2019-04-17 16:32:00,117 4th St, Seattle,WA,98101 +183479,USB-C Charging Cable,1,11.95,2019-04-17 16:32:00,117 4th St, Seattle,WA,98101 +183480,AA Batteries (4-pack),1,3.84,2019-04-23 11:23:00,407 7th St, Atlanta,GA,30301 +183481,Lightning Charging Cable,1,14.95,2019-04-13 19:17:00,533 Madison St, San Francisco,CA,94016 +183482,AAA Batteries (4-pack),1,2.99,2019-04-20 16:59:00,537 Lakeview St, San Francisco,CA,94016 +183483,AA Batteries (4-pack),2,3.84,2019-04-09 14:37:00,813 Lakeview St, San Francisco,CA,94016 +183484,34in Ultrawide Monitor,1,379.99,2019-04-09 19:33:00,204 Meadow St, Los Angeles,CA,90001 +183485,Bose SoundSport Headphones,2,99.99,2019-04-11 23:50:00,35 12th St, New York City,NY,10001 +183486,USB-C Charging Cable,1,11.95,2019-04-14 19:16:00,978 10th St, San Francisco,CA,94016 +183487,Bose SoundSport Headphones,1,99.99,2019-04-03 23:39:00,411 Pine St, San Francisco,CA,94016 +183488,USB-C Charging Cable,1,11.95,2019-04-02 11:39:00,891 6th St, San Francisco,CA,94016 +183489,Flatscreen TV,1,300.0,2019-04-08 12:39:00,374 1st St, San Francisco,CA,94016 +183490,Wired Headphones,1,11.99,2019-04-04 20:27:00,628 5th St, San Francisco,CA,94016 +183491,27in 4K Gaming Monitor,1,389.99,2019-04-30 17:46:00,740 Church St, Austin,TX,73301 +183492,AAA Batteries (4-pack),3,2.99,2019-04-16 12:03:00,646 Park St, Los Angeles,CA,90001 +183493,Google Phone,1,600.0,2019-04-17 09:47:00,955 Jackson St, Los Angeles,CA,90001 +183494,USB-C Charging Cable,1,11.95,2019-04-28 12:20:00,307 4th St, Seattle,WA,98101 +183495,27in 4K Gaming Monitor,1,389.99,2019-04-18 10:30:00,561 Walnut St, San Francisco,CA,94016 +183496,AA Batteries (4-pack),2,3.84,2019-04-14 16:17:00,103 Center St, Portland,OR,97035 +183497,iPhone,1,700.0,2019-04-05 23:52:00,41 1st St, Portland,OR,97035 +183498,AA Batteries (4-pack),2,3.84,2019-04-11 09:38:00,247 Walnut St, Austin,TX,73301 +183499,34in Ultrawide Monitor,1,379.99,2019-04-20 16:52:00,123 Maple St, New York City,NY,10001 +183500,Google Phone,1,600.0,2019-04-05 09:47:00,789 Madison St, Dallas,TX,75001 +183501,Lightning Charging Cable,1,14.95,2019-04-14 16:15:00,609 North St, Boston,MA,02215 +183502,34in Ultrawide Monitor,1,379.99,2019-04-02 15:12:00,20 Lincoln St, Los Angeles,CA,90001 +183503,iPhone,1,700.0,2019-04-08 09:35:00,881 Cedar St, Seattle,WA,98101 +183503,Lightning Charging Cable,1,14.95,2019-04-08 09:35:00,881 Cedar St, Seattle,WA,98101 +183504,USB-C Charging Cable,1,11.95,2019-04-05 20:47:00,28 Lincoln St, Atlanta,GA,30301 +183505,AA Batteries (4-pack),1,3.84,2019-04-01 10:35:00,503 Elm St, San Francisco,CA,94016 +183506,Apple Airpods Headphones,1,150.0,2019-04-03 09:58:00,477 11th St, San Francisco,CA,94016 +183506,AAA Batteries (4-pack),1,2.99,2019-04-03 09:58:00,477 11th St, San Francisco,CA,94016 +183507,USB-C Charging Cable,2,11.95,2019-04-22 19:07:00,218 8th St, San Francisco,CA,94016 +183508,AA Batteries (4-pack),1,3.84,2019-04-02 01:14:00,928 Cedar St, Boston,MA,02215 +183509,AAA Batteries (4-pack),4,2.99,2019-04-24 06:17:00,61 Sunset St, Los Angeles,CA,90001 +183510,Lightning Charging Cable,1,14.95,2019-04-12 12:25:00,170 South St, Dallas,TX,75001 +183511,AAA Batteries (4-pack),1,2.99,2019-04-14 14:27:00,653 River St, Atlanta,GA,30301 +183512,USB-C Charging Cable,1,11.95,2019-04-16 04:46:00,586 13th St, Los Angeles,CA,90001 +183513,ThinkPad Laptop,1,999.99,2019-04-29 21:42:00,557 12th St, Los Angeles,CA,90001 +183514,Macbook Pro Laptop,1,1700.0,2019-04-09 18:36:00,261 Main St, Boston,MA,02215 +183515,USB-C Charging Cable,1,11.95,2019-04-20 13:12:00,51 Forest St, Atlanta,GA,30301 +183516,AAA Batteries (4-pack),2,2.99,2019-04-19 23:14:00,666 7th St, New York City,NY,10001 +183517,Apple Airpods Headphones,1,150.0,2019-04-01 08:23:00,714 Madison St, Seattle,WA,98101 +183518,Apple Airpods Headphones,1,150.0,2019-04-13 19:35:00,530 Main St, Austin,TX,73301 +183519,Bose SoundSport Headphones,1,99.99,2019-04-06 11:48:00,953 Lincoln St, Austin,TX,73301 +183520,USB-C Charging Cable,1,11.95,2019-04-15 18:20:00,59 North St, Los Angeles,CA,90001 +183521,AA Batteries (4-pack),1,3.84,2019-04-01 13:22:00,942 Cedar St, Atlanta,GA,30301 +183522,USB-C Charging Cable,1,11.95,2019-04-18 23:54:00,963 Madison St, Austin,TX,73301 +183523,iPhone,1,700.0,2019-04-03 19:21:00,484 Lakeview St, Los Angeles,CA,90001 +183524,Wired Headphones,1,11.99,2019-04-20 00:10:00,498 7th St, Dallas,TX,75001 +183525,Lightning Charging Cable,1,14.95,2019-04-01 23:55:00,606 Church St, Seattle,WA,98101 +183526,20in Monitor,1,109.99,2019-04-27 20:51:00,398 7th St, San Francisco,CA,94016 +183527,Lightning Charging Cable,1,14.95,2019-04-06 22:37:00,136 Maple St, Austin,TX,73301 +183528,ThinkPad Laptop,1,999.99,2019-04-30 15:51:00,860 Church St, New York City,NY,10001 +183529,34in Ultrawide Monitor,1,379.99,2019-04-29 12:40:00,783 13th St, San Francisco,CA,94016 +183530,LG Dryer,1,600.0,2019-04-11 07:56:00,486 8th St, Portland,OR,97035 +183531,ThinkPad Laptop,1,999.99,2019-04-25 22:05:00,269 Lake St, Boston,MA,02215 +183532,AAA Batteries (4-pack),2,2.99,2019-04-13 16:17:00,937 4th St, New York City,NY,10001 +183533,AA Batteries (4-pack),1,3.84,2019-04-10 02:18:00,632 4th St, Dallas,TX,75001 +183534,Apple Airpods Headphones,1,150.0,2019-04-24 12:24:00,902 Willow St, Boston,MA,02215 +183535,Wired Headphones,1,11.99,2019-04-17 17:37:00,172 Pine St, Atlanta,GA,30301 +183536,34in Ultrawide Monitor,1,379.99,2019-04-10 21:26:00,841 River St, Seattle,WA,98101 +183537,AA Batteries (4-pack),1,3.84,2019-04-20 21:30:00,285 Dogwood St, New York City,NY,10001 +183538,AAA Batteries (4-pack),1,2.99,2019-04-20 14:12:00,669 Hill St, Dallas,TX,75001 +183538,27in FHD Monitor,1,149.99,2019-04-20 14:12:00,669 Hill St, Dallas,TX,75001 +183539,Wired Headphones,1,11.99,2019-04-16 22:30:00,30 Jackson St, Los Angeles,CA,90001 +183540,USB-C Charging Cable,1,11.95,2019-04-29 21:22:00,637 Pine St, Los Angeles,CA,90001 +183541,AA Batteries (4-pack),1,3.84,2019-04-16 12:37:00,541 Lincoln St, Seattle,WA,98101 +183542,ThinkPad Laptop,1,999.99,2019-04-09 11:35:00,883 Cedar St, San Francisco,CA,94016 +183543,Apple Airpods Headphones,1,150.0,2019-04-03 12:50:00,350 Dogwood St, Los Angeles,CA,90001 +183544,AAA Batteries (4-pack),1,2.99,2019-04-25 17:26:00,101 14th St, Dallas,TX,75001 +183545,20in Monitor,1,109.99,2019-04-10 02:08:00,455 13th St, Atlanta,GA,30301 +183546,AA Batteries (4-pack),1,3.84,2019-04-18 09:44:00,995 4th St, Austin,TX,73301 +183547,Wired Headphones,3,11.99,2019-04-30 05:24:00,355 2nd St, Seattle,WA,98101 +183548,iPhone,1,700.0,2019-04-26 23:28:00,385 Cherry St, Boston,MA,02215 +183549,Wired Headphones,1,11.99,2019-04-27 22:52:00,353 Johnson St, Boston,MA,02215 +183550,USB-C Charging Cable,1,11.95,2019-04-10 09:56:00,550 Lake St, Los Angeles,CA,90001 +183551,Wired Headphones,1,11.99,2019-04-17 13:43:00,945 5th St, New York City,NY,10001 +183552,Wired Headphones,1,11.99,2019-04-11 09:44:00,911 12th St, San Francisco,CA,94016 +183553,Wired Headphones,1,11.99,2019-04-30 21:13:00,579 Park St, Los Angeles,CA,90001 +183554,34in Ultrawide Monitor,1,379.99,2019-04-13 19:02:00,906 10th St, Los Angeles,CA,90001 +183555,USB-C Charging Cable,1,11.95,2019-04-16 12:41:00,350 11th St, Boston,MA,02215 +183556,Wired Headphones,1,11.99,2019-04-02 12:51:00,130 Johnson St, Austin,TX,73301 +183557,Apple Airpods Headphones,1,150.0,2019-04-26 11:46:00,924 Pine St, New York City,NY,10001 +183558,Apple Airpods Headphones,1,150.0,2019-04-19 14:26:00,754 Johnson St, Portland,OR,97035 +183559,ThinkPad Laptop,1,999.99,2019-04-23 10:35:00,452 Madison St, New York City,NY,10001 +183560,AAA Batteries (4-pack),2,2.99,2019-04-25 14:19:00,469 Johnson St, New York City,NY,10001 +183561,Bose SoundSport Headphones,1,99.99,2019-04-13 21:21:00,461 Meadow St, Portland,OR,97035 +183562,Apple Airpods Headphones,1,150.0,2019-04-29 08:10:00,620 Highland St, Los Angeles,CA,90001 +183563,USB-C Charging Cable,1,11.95,2019-04-03 13:31:00,390 Hickory St, Boston,MA,02215 +183564,USB-C Charging Cable,1,11.95,2019-04-18 08:55:00,40 10th St, San Francisco,CA,94016 +183564,AA Batteries (4-pack),1,3.84,2019-04-18 08:55:00,40 10th St, San Francisco,CA,94016 +183565,34in Ultrawide Monitor,1,379.99,2019-04-30 16:39:00,929 7th St, New York City,NY,10001 +183566,Google Phone,1,600.0,2019-04-15 20:50:00,801 Church St, Boston,MA,02215 +183567,iPhone,1,700.0,2019-04-03 10:30:00,400 Lakeview St, Atlanta,GA,30301 +183568,27in 4K Gaming Monitor,1,389.99,2019-04-25 09:18:00,560 Highland St, Austin,TX,73301 +183569,Bose SoundSport Headphones,1,99.99,2019-04-22 10:29:00,713 7th St, Dallas,TX,75001 +183570,Lightning Charging Cable,1,14.95,2019-04-05 13:50:00,123 Lake St, Seattle,WA,98101 +183571,Vareebadd Phone,1,400.0,2019-04-28 18:12:00,273 Spruce St, Boston,MA,02215 +183571,Bose SoundSport Headphones,1,99.99,2019-04-28 18:12:00,273 Spruce St, Boston,MA,02215 +183572,20in Monitor,1,109.99,2019-04-01 19:59:00,702 6th St, Atlanta,GA,30301 +183573,Macbook Pro Laptop,1,1700.0,2019-04-18 19:52:00,91 7th St, Seattle,WA,98101 +183574,AA Batteries (4-pack),1,3.84,2019-04-12 23:08:00,880 9th St, Los Angeles,CA,90001 +183575,Lightning Charging Cable,1,14.95,2019-04-16 00:40:00,217 Maple St, Austin,TX,73301 +183576,Apple Airpods Headphones,1,150.0,2019-04-17 08:52:00,46 Lake St, New York City,NY,10001 +183577,AAA Batteries (4-pack),1,2.99,2019-04-26 12:30:00,917 Lincoln St, Los Angeles,CA,90001 +183578,USB-C Charging Cable,1,11.95,2019-04-15 22:07:00,568 14th St, New York City,NY,10001 +183579,Apple Airpods Headphones,1,150.0,2019-04-07 10:10:00,454 Willow St, San Francisco,CA,94016 +183580,AA Batteries (4-pack),1,3.84,2019-04-27 20:40:00,332 Washington St, Atlanta,GA,30301 +183581,USB-C Charging Cable,1,11.95,2019-04-23 20:13:00,2 Cherry St, Los Angeles,CA,90001 +183582,USB-C Charging Cable,1,11.95,2019-04-10 22:43:00,480 Elm St, San Francisco,CA,94016 +183583,Apple Airpods Headphones,1,150.0,2019-04-20 16:45:00,63 12th St, Los Angeles,CA,90001 +183584,USB-C Charging Cable,1,11.95,2019-04-18 09:54:00,570 5th St, Los Angeles,CA,90001 +183585,Google Phone,1,600.0,2019-04-19 10:19:00,704 Park St, Los Angeles,CA,90001 +183586,Wired Headphones,1,11.99,2019-04-08 21:29:00,596 14th St, Atlanta,GA,30301 +183587,AAA Batteries (4-pack),1,2.99,2019-04-15 00:21:00,384 Sunset St, Los Angeles,CA,90001 +183588,AAA Batteries (4-pack),1,2.99,2019-04-03 10:33:00,29 Highland St, San Francisco,CA,94016 +183589,AA Batteries (4-pack),1,3.84,2019-04-11 07:56:00,930 Hickory St, San Francisco,CA,94016 +183590,USB-C Charging Cable,1,11.95,2019-04-28 19:32:00,402 Center St, Austin,TX,73301 +183591,AA Batteries (4-pack),1,3.84,2019-04-03 10:37:00,978 Lincoln St, San Francisco,CA,94016 +183592,Bose SoundSport Headphones,1,99.99,2019-04-07 12:26:00,456 2nd St, New York City,NY,10001 +183593,Wired Headphones,1,11.99,2019-04-27 21:59:00,793 Elm St, Boston,MA,02215 +183594,ThinkPad Laptop,1,999.99,2019-04-28 11:34:00,503 Cedar St, New York City,NY,10001 +183595,USB-C Charging Cable,1,11.95,2019-04-10 13:51:00,107 Jefferson St, Los Angeles,CA,90001 +183596,Wired Headphones,1,11.99,2019-04-20 19:50:00,795 Elm St, San Francisco,CA,94016 +183597,Flatscreen TV,1,300.0,2019-04-21 13:31:00,335 Washington St, Dallas,TX,75001 +183598,Bose SoundSport Headphones,1,99.99,2019-04-29 10:35:00,253 River St, San Francisco,CA,94016 +183599,USB-C Charging Cable,1,11.95,2019-04-16 18:17:00,942 14th St, New York City,NY,10001 +183600,Lightning Charging Cable,1,14.95,2019-04-06 20:05:00,335 Elm St, Austin,TX,73301 +183601,27in 4K Gaming Monitor,1,389.99,2019-04-17 12:30:00,615 Dogwood St, Atlanta,GA,30301 +183602,USB-C Charging Cable,1,11.95,2019-04-03 16:21:00,266 Cherry St, Dallas,TX,75001 +183603,Apple Airpods Headphones,1,150.0,2019-04-13 22:12:00,933 Elm St, New York City,NY,10001 +183604,ThinkPad Laptop,1,999.99,2019-04-24 17:16:00,690 Cedar St, San Francisco,CA,94016 +183605,iPhone,1,700.0,2019-04-24 22:47:00,271 Forest St, Austin,TX,73301 +183606,AAA Batteries (4-pack),4,2.99,2019-04-23 09:22:00,564 4th St, San Francisco,CA,94016 +183607,Lightning Charging Cable,1,14.95,2019-04-03 02:38:00,387 Walnut St, Los Angeles,CA,90001 +183608,USB-C Charging Cable,1,11.95,2019-04-24 10:48:00,30 Maple St, San Francisco,CA,94016 +183609,Apple Airpods Headphones,1,150.0,2019-04-25 13:55:00,219 Forest St, New York City,NY,10001 +183610,27in 4K Gaming Monitor,1,389.99,2019-04-21 21:07:00,708 Lakeview St, San Francisco,CA,94016 +183611,Lightning Charging Cable,1,14.95,2019-04-08 08:11:00,793 Washington St, San Francisco,CA,94016 +183612,USB-C Charging Cable,1,11.95,2019-04-15 14:49:00,840 South St, New York City,NY,10001 +183613,iPhone,1,700.0,2019-04-14 21:16:00,329 Sunset St, Los Angeles,CA,90001 +183614,Lightning Charging Cable,1,14.95,2019-04-05 16:30:00,82 10th St, Boston,MA,02215 +183615,USB-C Charging Cable,1,11.95,2019-04-20 19:48:00,224 5th St, New York City,NY,10001 +183616,AA Batteries (4-pack),3,3.84,2019-04-29 12:44:00,425 Spruce St, Dallas,TX,75001 +183617,AA Batteries (4-pack),1,3.84,2019-04-06 14:54:00,972 1st St, San Francisco,CA,94016 +183618,ThinkPad Laptop,1,999.99,2019-04-28 22:25:00,532 Lakeview St, Boston,MA,02215 +183619,ThinkPad Laptop,1,999.99,2019-04-30 20:46:00,660 Spruce St, Los Angeles,CA,90001 +183620,Bose SoundSport Headphones,1,99.99,2019-04-15 20:32:00,344 Lakeview St, San Francisco,CA,94016 +183621,Lightning Charging Cable,1,14.95,2019-04-29 16:36:00,504 13th St, Atlanta,GA,30301 +183622,Google Phone,1,600.0,2019-04-17 12:36:00,624 Sunset St, San Francisco,CA,94016 +183622,Wired Headphones,1,11.99,2019-04-17 12:36:00,624 Sunset St, San Francisco,CA,94016 +183623,Lightning Charging Cable,1,14.95,2019-04-22 13:06:00,398 Lake St, Austin,TX,73301 +183624,Wired Headphones,1,11.99,2019-04-22 10:43:00,963 Lincoln St, Boston,MA,02215 +183625,USB-C Charging Cable,1,11.95,2019-04-08 16:42:00,954 Jefferson St, New York City,NY,10001 +183626,USB-C Charging Cable,1,11.95,2019-04-12 12:51:00,172 Cherry St, Dallas,TX,75001 +183627,USB-C Charging Cable,1,11.95,2019-04-28 22:24:00,807 Dogwood St, Dallas,TX,75001 +183628,USB-C Charging Cable,1,11.95,2019-04-29 18:40:00,421 Elm St, Portland,ME,04101 +183629,iPhone,1,700.0,2019-04-12 08:01:00,557 8th St, San Francisco,CA,94016 +183630,USB-C Charging Cable,1,11.95,2019-04-07 13:10:00,707 Jefferson St, San Francisco,CA,94016 +183631,27in FHD Monitor,1,149.99,2019-04-17 22:03:00,871 Ridge St, San Francisco,CA,94016 +183632,AAA Batteries (4-pack),1,2.99,2019-04-02 19:13:00,9 West St, San Francisco,CA,94016 +183633,27in FHD Monitor,1,149.99,2019-04-26 21:44:00,94 5th St, San Francisco,CA,94016 +183634,Bose SoundSport Headphones,1,99.99,2019-04-12 11:53:00,958 6th St, New York City,NY,10001 +183635,USB-C Charging Cable,1,11.95,2019-04-24 09:35:00,382 Church St, Dallas,TX,75001 +183636,AAA Batteries (4-pack),6,2.99,2019-04-30 10:28:00,116 11th St, Boston,MA,02215 +183637,AAA Batteries (4-pack),1,2.99,2019-04-02 23:43:00,118 Chestnut St, Los Angeles,CA,90001 +183638,USB-C Charging Cable,1,11.95,2019-04-10 15:20:00,476 Walnut St, San Francisco,CA,94016 +183639,Apple Airpods Headphones,1,150.0,2019-04-15 15:58:00,337 Walnut St, Dallas,TX,75001 +183640,iPhone,1,700.0,2019-04-26 16:41:00,423 Hickory St, San Francisco,CA,94016 +183641,iPhone,1,700.0,2019-04-13 21:55:00,116 Lake St, San Francisco,CA,94016 +183641,Lightning Charging Cable,1,14.95,2019-04-13 21:55:00,116 Lake St, San Francisco,CA,94016 +183642,Apple Airpods Headphones,1,150.0,2019-04-03 06:05:00,622 Washington St, Los Angeles,CA,90001 +183643,Bose SoundSport Headphones,1,99.99,2019-04-07 22:18:00,775 North St, San Francisco,CA,94016 +183644,AA Batteries (4-pack),1,3.84,2019-04-16 13:09:00,268 Church St, Los Angeles,CA,90001 +183645,AA Batteries (4-pack),1,3.84,2019-04-23 01:20:00,245 Lake St, Atlanta,GA,30301 +183646,Wired Headphones,1,11.99,2019-04-28 14:23:00,902 Madison St, Atlanta,GA,30301 +183647,Apple Airpods Headphones,1,150.0,2019-04-30 16:23:00,328 Lake St, San Francisco,CA,94016 +183648,USB-C Charging Cable,1,11.95,2019-04-13 00:44:00,862 Lakeview St, Austin,TX,73301 +183649,Bose SoundSport Headphones,1,99.99,2019-04-05 20:18:00,356 Johnson St, San Francisco,CA,94016 +183650,Bose SoundSport Headphones,1,99.99,2019-04-20 16:20:00,450 11th St, San Francisco,CA,94016 +183651,AA Batteries (4-pack),2,3.84,2019-04-14 12:48:00,92 Cedar St, New York City,NY,10001 +183652,Vareebadd Phone,1,400.0,2019-04-27 23:49:00,869 West St, Austin,TX,73301 +183653,27in FHD Monitor,1,149.99,2019-04-23 20:56:00,302 Maple St, Los Angeles,CA,90001 +183654,AAA Batteries (4-pack),4,2.99,2019-04-26 18:10:00,29 2nd St, Boston,MA,02215 +183655,Google Phone,1,600.0,2019-04-16 09:04:00,4 North St, San Francisco,CA,94016 +183656,Vareebadd Phone,1,400.0,2019-04-03 03:00:00,879 West St, Dallas,TX,75001 +183657,Apple Airpods Headphones,1,150.0,2019-04-11 07:34:00,695 Elm St, Los Angeles,CA,90001 +183658,Lightning Charging Cable,1,14.95,2019-04-15 12:51:00,65 Hill St, San Francisco,CA,94016 +183659,Wired Headphones,1,11.99,2019-04-19 13:00:00,786 6th St, Boston,MA,02215 +183660,ThinkPad Laptop,1,999.99,2019-04-28 17:32:00,694 6th St, New York City,NY,10001 +183661,Bose SoundSport Headphones,1,99.99,2019-04-04 12:02:00,16 Lake St, San Francisco,CA,94016 +183662,AAA Batteries (4-pack),3,2.99,2019-04-26 14:30:00,503 Wilson St, Austin,TX,73301 +183663,Bose SoundSport Headphones,1,99.99,2019-04-27 22:07:00,612 Meadow St, Los Angeles,CA,90001 +183664,27in FHD Monitor,1,149.99,2019-04-11 12:57:00,476 Spruce St, New York City,NY,10001 +183665,Wired Headphones,1,11.99,2019-04-08 18:25:00,644 9th St, Los Angeles,CA,90001 +183666,AAA Batteries (4-pack),2,2.99,2019-04-30 18:49:00,837 7th St, New York City,NY,10001 +183667,34in Ultrawide Monitor,1,379.99,2019-04-09 10:36:00,687 13th St, Boston,MA,02215 +183668,USB-C Charging Cable,1,11.95,2019-04-30 09:25:00,812 6th St, Boston,MA,02215 +183669,ThinkPad Laptop,1,999.99,2019-05-01 02:02:00,186 Lake St, Los Angeles,CA,90001 +183670,Lightning Charging Cable,1,14.95,2019-04-11 20:03:00,950 Lake St, Dallas,TX,75001 +183671,Wired Headphones,1,11.99,2019-04-29 00:03:00,38 West St, Seattle,WA,98101 +183672,Apple Airpods Headphones,1,150.0,2019-04-30 22:53:00,892 Jefferson St, New York City,NY,10001 +183673,AAA Batteries (4-pack),1,2.99,2019-04-24 23:42:00,754 Wilson St, Seattle,WA,98101 +183674,Wired Headphones,1,11.99,2019-04-03 20:46:00,932 Adams St, Austin,TX,73301 +183675,AA Batteries (4-pack),1,3.84,2019-04-23 08:21:00,103 Park St, San Francisco,CA,94016 +183676,USB-C Charging Cable,1,11.95,2019-04-08 19:46:00,980 Johnson St, Dallas,TX,75001 +183677,Lightning Charging Cable,1,14.95,2019-04-24 21:52:00,755 Washington St, San Francisco,CA,94016 +183678,AA Batteries (4-pack),1,3.84,2019-04-23 20:45:00,597 6th St, San Francisco,CA,94016 +183678,Lightning Charging Cable,1,14.95,2019-04-23 20:45:00,597 6th St, San Francisco,CA,94016 +183679,Wired Headphones,1,11.99,2019-04-06 08:56:00,28 Dogwood St, San Francisco,CA,94016 +183680,Apple Airpods Headphones,1,150.0,2019-04-24 11:05:00,1 Ridge St, San Francisco,CA,94016 +183681,Google Phone,1,600.0,2019-04-23 19:06:00,869 12th St, Los Angeles,CA,90001 +183682,34in Ultrawide Monitor,1,379.99,2019-04-05 18:20:00,941 South St, Seattle,WA,98101 +183683,AA Batteries (4-pack),1,3.84,2019-04-28 11:09:00,37 Adams St, Los Angeles,CA,90001 +183684,USB-C Charging Cable,2,11.95,2019-04-12 08:38:00,667 Forest St, Dallas,TX,75001 +183685,Apple Airpods Headphones,1,150.0,2019-04-23 01:06:00,87 13th St, Atlanta,GA,30301 +183686,Wired Headphones,2,11.99,2019-04-29 22:48:00,469 2nd St, Portland,OR,97035 +183687,Wired Headphones,3,11.99,2019-04-02 22:08:00,225 South St, Seattle,WA,98101 +183688,27in FHD Monitor,1,149.99,2019-04-18 13:08:00,853 4th St, San Francisco,CA,94016 +183689,Lightning Charging Cable,1,14.95,2019-04-20 19:01:00,385 10th St, San Francisco,CA,94016 +183690,27in FHD Monitor,1,149.99,2019-04-09 16:14:00,18 Madison St, Boston,MA,02215 +183691,Apple Airpods Headphones,1,150.0,2019-04-25 19:37:00,982 12th St, San Francisco,CA,94016 +183692,Wired Headphones,1,11.99,2019-04-05 12:53:00,294 8th St, Boston,MA,02215 +183693,Lightning Charging Cable,1,14.95,2019-04-22 13:15:00,395 Spruce St, Los Angeles,CA,90001 +183694,20in Monitor,1,109.99,2019-04-24 08:09:00,91 12th St, Boston,MA,02215 +183695,AA Batteries (4-pack),1,3.84,2019-04-29 13:55:00,164 Highland St, Atlanta,GA,30301 +183696,27in 4K Gaming Monitor,1,389.99,2019-04-13 12:18:00,41 Meadow St, Boston,MA,02215 +183697,USB-C Charging Cable,1,11.95,2019-04-19 20:25:00,19 14th St, Atlanta,GA,30301 +183698,20in Monitor,1,109.99,2019-04-28 14:56:00,964 9th St, Seattle,WA,98101 +183699,27in 4K Gaming Monitor,1,389.99,2019-04-01 13:33:00,199 Dogwood St, Dallas,TX,75001 +183700,iPhone,1,700.0,2019-04-06 15:42:00,694 14th St, San Francisco,CA,94016 +183701,Apple Airpods Headphones,1,150.0,2019-04-18 12:03:00,38 9th St, Seattle,WA,98101 +183702,Wired Headphones,1,11.99,2019-04-07 11:54:00,448 Chestnut St, Portland,OR,97035 +183703,AA Batteries (4-pack),1,3.84,2019-04-12 15:05:00,247 13th St, Atlanta,GA,30301 +183704,AA Batteries (4-pack),2,3.84,2019-04-26 22:17:00,982 Lincoln St, Los Angeles,CA,90001 +183705,Lightning Charging Cable,3,14.95,2019-04-21 14:02:00,506 Highland St, San Francisco,CA,94016 +183706,Apple Airpods Headphones,1,150.0,2019-04-16 02:27:00,356 Ridge St, Los Angeles,CA,90001 +183707,Lightning Charging Cable,2,14.95,2019-04-18 22:49:00,204 6th St, Boston,MA,02215 +183708,Bose SoundSport Headphones,1,99.99,2019-04-20 21:42:00,356 10th St, New York City,NY,10001 +183709,AAA Batteries (4-pack),3,2.99,2019-04-18 10:39:00,860 Jackson St, Boston,MA,02215 +183710,34in Ultrawide Monitor,1,379.99,2019-04-13 13:01:00,695 Main St, Los Angeles,CA,90001 +183711,USB-C Charging Cable,1,11.95,2019-04-29 13:35:00,715 West St, Dallas,TX,75001 +183712,USB-C Charging Cable,1,11.95,2019-04-26 16:21:00,846 Forest St, New York City,NY,10001 +183713,27in 4K Gaming Monitor,1,389.99,2019-04-05 13:10:00,102 Pine St, New York City,NY,10001 +183714,27in FHD Monitor,1,149.99,2019-04-20 09:18:00,718 Madison St, San Francisco,CA,94016 +183715,iPhone,1,700.0,2019-04-28 21:52:00,461 13th St, Austin,TX,73301 +183716,AAA Batteries (4-pack),1,2.99,2019-04-15 14:40:00,813 Park St, Boston,MA,02215 +183717,ThinkPad Laptop,1,999.99,2019-04-14 19:30:00,844 Jefferson St, Boston,MA,02215 +183718,AA Batteries (4-pack),2,3.84,2019-04-18 09:57:00,591 Lakeview St, Dallas,TX,75001 +183719,Apple Airpods Headphones,1,150.0,2019-04-26 19:46:00,559 Spruce St, San Francisco,CA,94016 +183720,Lightning Charging Cable,1,14.95,2019-04-23 08:42:00,698 Main St, Boston,MA,02215 +183721,Wired Headphones,1,11.99,2019-04-19 12:17:00,440 Center St, Austin,TX,73301 +183722,AA Batteries (4-pack),1,3.84,2019-04-06 11:00:00,488 6th St, New York City,NY,10001 +183723,AAA Batteries (4-pack),3,2.99,2019-04-07 10:49:00,827 13th St, Boston,MA,02215 +183724,Lightning Charging Cable,1,14.95,2019-04-12 17:54:00,188 11th St, Dallas,TX,75001 +183725,Wired Headphones,1,11.99,2019-04-06 22:01:00,103 Spruce St, Portland,OR,97035 +183726,iPhone,1,700.0,2019-04-16 15:31:00,863 Hickory St, Atlanta,GA,30301 +183726,Apple Airpods Headphones,1,150.0,2019-04-16 15:31:00,863 Hickory St, Atlanta,GA,30301 +183727,Lightning Charging Cable,2,14.95,2019-04-25 22:28:00,736 Johnson St, Los Angeles,CA,90001 +183728,ThinkPad Laptop,1,999.99,2019-04-15 21:06:00,869 Wilson St, Atlanta,GA,30301 +183729,Lightning Charging Cable,1,14.95,2019-04-25 05:59:00,814 13th St, New York City,NY,10001 +183730,34in Ultrawide Monitor,1,379.99,2019-04-06 13:41:00,121 9th St, Boston,MA,02215 +183731,USB-C Charging Cable,1,11.95,2019-04-10 16:31:00,826 7th St, Atlanta,GA,30301 +183732,27in 4K Gaming Monitor,1,389.99,2019-04-17 08:58:00,711 River St, Portland,OR,97035 +183733,iPhone,1,700.0,2019-04-05 15:01:00,834 6th St, Boston,MA,02215 +183733,Wired Headphones,1,11.99,2019-04-05 15:01:00,834 6th St, Boston,MA,02215 +183734,Lightning Charging Cable,1,14.95,2019-04-06 08:54:00,452 Jefferson St, San Francisco,CA,94016 +183735,USB-C Charging Cable,1,11.95,2019-04-19 18:16:00,68 Main St, San Francisco,CA,94016 +183736,AA Batteries (4-pack),1,3.84,2019-04-06 15:10:00,442 River St, Dallas,TX,75001 +183737,Macbook Pro Laptop,1,1700.0,2019-04-24 23:43:00,381 Maple St, Boston,MA,02215 +183738,Wired Headphones,1,11.99,2019-04-24 18:49:00,99 Lincoln St, New York City,NY,10001 +183739,27in FHD Monitor,1,149.99,2019-04-20 19:24:00,819 9th St, Austin,TX,73301 +183740,27in FHD Monitor,1,149.99,2019-04-10 22:13:00,447 Willow St, Seattle,WA,98101 +183741,USB-C Charging Cable,1,11.95,2019-04-23 22:34:00,778 Ridge St, Boston,MA,02215 +183742,Lightning Charging Cable,1,14.95,2019-04-20 07:16:00,527 7th St, San Francisco,CA,94016 +183743,Wired Headphones,2,11.99,2019-04-08 17:25:00,713 13th St, Boston,MA,02215 +183744,Wired Headphones,1,11.99,2019-04-03 19:20:00,870 Forest St, San Francisco,CA,94016 +183745,USB-C Charging Cable,1,11.95,2019-04-09 08:42:00,678 Cedar St, Dallas,TX,75001 +183746,Flatscreen TV,1,300.0,2019-04-11 10:21:00,34 Maple St, Los Angeles,CA,90001 +183747,AAA Batteries (4-pack),1,2.99,2019-04-10 14:12:00,721 Cherry St, San Francisco,CA,94016 +183748,AAA Batteries (4-pack),2,2.99,2019-04-01 13:16:00,210 Elm St, Los Angeles,CA,90001 +183749,AA Batteries (4-pack),1,3.84,2019-04-22 20:18:00,130 Washington St, San Francisco,CA,94016 +183750,ThinkPad Laptop,1,999.99,2019-04-23 08:05:00,456 West St, Dallas,TX,75001 +183751,AAA Batteries (4-pack),1,2.99,2019-04-12 19:08:00,198 13th St, Los Angeles,CA,90001 +183752,AA Batteries (4-pack),1,3.84,2019-04-02 18:58:00,324 Adams St, San Francisco,CA,94016 +183753,Wired Headphones,1,11.99,2019-04-30 19:57:00,722 Lincoln St, Austin,TX,73301 +183754,Bose SoundSport Headphones,1,99.99,2019-04-13 05:09:00,948 4th St, Los Angeles,CA,90001 +183755,Google Phone,1,600.0,2019-04-04 20:36:00,757 Dogwood St, San Francisco,CA,94016 +183756,iPhone,1,700.0,2019-04-10 14:02:00,684 Cedar St, New York City,NY,10001 +183757,Flatscreen TV,1,300.0,2019-04-18 14:12:00,839 Lake St, San Francisco,CA,94016 +183758,Apple Airpods Headphones,1,150.0,2019-04-15 19:32:00,945 8th St, New York City,NY,10001 +183759,Google Phone,1,600.0,2019-04-28 16:44:00,353 14th St, Los Angeles,CA,90001 +183760,Apple Airpods Headphones,1,150.0,2019-04-20 13:49:00,808 Hickory St, San Francisco,CA,94016 +183761,Wired Headphones,1,11.99,2019-04-07 21:57:00,467 Wilson St, Seattle,WA,98101 +183762,Vareebadd Phone,1,400.0,2019-04-16 07:06:00,582 Lakeview St, San Francisco,CA,94016 +183763,27in FHD Monitor,1,149.99,2019-04-19 15:57:00,206 10th St, San Francisco,CA,94016 +183764,27in FHD Monitor,1,149.99,2019-04-28 18:42:00,976 Chestnut St, Boston,MA,02215 +183765,27in FHD Monitor,1,149.99,2019-04-29 20:06:00,547 Madison St, Austin,TX,73301 +183766,Wired Headphones,1,11.99,2019-04-09 18:56:00,236 Maple St, San Francisco,CA,94016 +183767,Lightning Charging Cable,1,14.95,2019-04-28 10:40:00,149 Jackson St, New York City,NY,10001 +183768,Flatscreen TV,1,300.0,2019-04-22 19:55:00,212 Pine St, San Francisco,CA,94016 +183769,Wired Headphones,1,11.99,2019-04-22 22:18:00,499 Johnson St, San Francisco,CA,94016 +183770,34in Ultrawide Monitor,1,379.99,2019-04-28 13:01:00,220 Highland St, San Francisco,CA,94016 +183771,Apple Airpods Headphones,1,150.0,2019-04-23 19:37:00,162 West St, San Francisco,CA,94016 +183772,AA Batteries (4-pack),1,3.84,2019-04-29 13:59:00,395 7th St, Atlanta,GA,30301 +183773,AAA Batteries (4-pack),1,2.99,2019-04-16 19:54:00,610 14th St, Dallas,TX,75001 +183774,AA Batteries (4-pack),1,3.84,2019-04-11 09:13:00,895 Forest St, San Francisco,CA,94016 +183775,AA Batteries (4-pack),3,3.84,2019-04-13 11:06:00,653 6th St, Seattle,WA,98101 +183776,Flatscreen TV,1,300.0,2019-04-13 12:38:00,311 West St, San Francisco,CA,94016 +183777,AA Batteries (4-pack),2,3.84,2019-04-16 20:50:00,407 Ridge St, Seattle,WA,98101 +183778,AAA Batteries (4-pack),1,2.99,2019-04-20 01:33:00,129 Church St, Boston,MA,02215 +183779,USB-C Charging Cable,1,11.95,2019-04-08 09:39:00,312 Sunset St, Austin,TX,73301 +183780,AA Batteries (4-pack),1,3.84,2019-04-05 16:54:00,319 Sunset St, San Francisco,CA,94016 +183781,Apple Airpods Headphones,1,150.0,2019-04-26 08:55:00,937 Johnson St, Los Angeles,CA,90001 +183782,AA Batteries (4-pack),2,3.84,2019-04-07 18:48:00,536 11th St, San Francisco,CA,94016 +183783,AAA Batteries (4-pack),2,2.99,2019-04-27 15:50:00,427 Lakeview St, Dallas,TX,75001 +183784,AAA Batteries (4-pack),1,2.99,2019-04-02 23:50:00,49 Hickory St, Los Angeles,CA,90001 +183785,Flatscreen TV,1,300.0,2019-04-13 13:35:00,767 5th St, New York City,NY,10001 +183786,LG Dryer,1,600.0,2019-04-23 09:49:00,206 Maple St, New York City,NY,10001 +183787,Google Phone,1,600.0,2019-04-03 20:22:00,739 Ridge St, New York City,NY,10001 +183788,27in FHD Monitor,1,149.99,2019-04-10 10:51:00,42 Elm St, Los Angeles,CA,90001 +183789,27in FHD Monitor,1,149.99,2019-04-01 16:35:00,245 Jefferson St, Atlanta,GA,30301 +183790,LG Dryer,1,600.0,2019-04-19 19:24:00,582 6th St, Los Angeles,CA,90001 +183791,iPhone,1,700.0,2019-04-16 16:54:00,937 Madison St, Boston,MA,02215 +183792,Lightning Charging Cable,1,14.95,2019-04-20 22:29:00,561 8th St, Boston,MA,02215 +183793,Lightning Charging Cable,1,14.95,2019-04-24 19:36:00,938 Walnut St, San Francisco,CA,94016 +183794,AAA Batteries (4-pack),1,2.99,2019-04-18 11:36:00,828 North St, New York City,NY,10001 +183795,Lightning Charging Cable,1,14.95,2019-04-18 19:08:00,343 Main St, New York City,NY,10001 +183796,iPhone,1,700.0,2019-04-06 20:56:00,849 Jefferson St, Dallas,TX,75001 +183797,20in Monitor,1,109.99,2019-04-21 17:01:00,295 Main St, Los Angeles,CA,90001 +183798,34in Ultrawide Monitor,1,379.99,2019-04-18 12:02:00,691 Lakeview St, Los Angeles,CA,90001 +183799,AAA Batteries (4-pack),3,2.99,2019-04-27 14:15:00,117 Center St, San Francisco,CA,94016 +183800,Wired Headphones,1,11.99,2019-04-09 01:39:00,354 Johnson St, New York City,NY,10001 +183801,Wired Headphones,1,11.99,2019-04-28 15:15:00,847 Hickory St, New York City,NY,10001 +183802,Wired Headphones,1,11.99,2019-04-04 07:07:00,626 Ridge St, Boston,MA,02215 +183803,AAA Batteries (4-pack),2,2.99,2019-04-10 13:37:00,426 Wilson St, Austin,TX,73301 +183804,Apple Airpods Headphones,1,150.0,2019-04-08 20:45:00,942 Cherry St, New York City,NY,10001 +183805,Lightning Charging Cable,1,14.95,2019-04-13 17:31:00,974 Chestnut St, Los Angeles,CA,90001 +183806,Macbook Pro Laptop,1,1700.0,2019-04-23 15:04:00,572 River St, New York City,NY,10001 +183807,iPhone,1,700.0,2019-04-15 12:30:00,220 Maple St, Dallas,TX,75001 +183808,AAA Batteries (4-pack),1,2.99,2019-04-24 12:36:00,865 Meadow St, San Francisco,CA,94016 +183809,Apple Airpods Headphones,1,150.0,2019-04-25 10:30:00,794 Jefferson St, San Francisco,CA,94016 +183810,Lightning Charging Cable,1,14.95,2019-04-17 22:49:00,864 Willow St, Portland,OR,97035 +183811,Apple Airpods Headphones,1,150.0,2019-04-01 21:15:00,247 Lincoln St, Boston,MA,02215 +183812,AAA Batteries (4-pack),1,2.99,2019-04-23 07:25:00,279 Lakeview St, Dallas,TX,75001 +183813,Wired Headphones,1,11.99,2019-05-01 00:39:00,743 8th St, San Francisco,CA,94016 +183814,Macbook Pro Laptop,1,1700.0,2019-04-10 12:36:00,901 Center St, Portland,OR,97035 +183815,AAA Batteries (4-pack),1,2.99,2019-04-24 03:48:00,626 River St, San Francisco,CA,94016 +183816,ThinkPad Laptop,1,999.99,2019-04-02 10:56:00,311 River St, San Francisco,CA,94016 +183817,AA Batteries (4-pack),1,3.84,2019-04-09 14:26:00,211 Cherry St, San Francisco,CA,94016 +183818,USB-C Charging Cable,1,11.95,2019-04-18 12:27:00,970 Center St, Los Angeles,CA,90001 +183819,27in FHD Monitor,1,149.99,2019-04-18 18:57:00,275 Sunset St, Seattle,WA,98101 +183820,Wired Headphones,1,11.99,2019-04-01 13:44:00,419 Main St, Atlanta,GA,30301 +183821,USB-C Charging Cable,1,11.95,2019-04-26 05:59:00,800 Willow St, Atlanta,GA,30301 +183822,27in 4K Gaming Monitor,1,389.99,2019-04-01 07:54:00,108 Ridge St, Austin,TX,73301 +183823,Wired Headphones,1,11.99,2019-04-06 19:29:00,731 Madison St, Dallas,TX,75001 +183824,34in Ultrawide Monitor,1,379.99,2019-04-25 19:15:00,418 12th St, Seattle,WA,98101 +183825,USB-C Charging Cable,1,11.95,2019-04-27 22:30:00,306 4th St, New York City,NY,10001 +183826,27in 4K Gaming Monitor,1,389.99,2019-04-10 13:37:00,908 4th St, Seattle,WA,98101 +183827,Apple Airpods Headphones,1,150.0,2019-04-06 21:37:00,898 Willow St, Seattle,WA,98101 +183828,USB-C Charging Cable,1,11.95,2019-04-24 16:42:00,108 Meadow St, Dallas,TX,75001 +183829,Bose SoundSport Headphones,1,99.99,2019-04-17 19:53:00,868 Jackson St, Los Angeles,CA,90001 +183830,Macbook Pro Laptop,1,1700.0,2019-04-25 16:04:00,747 12th St, San Francisco,CA,94016 +183831,Google Phone,1,600.0,2019-04-06 23:06:00,251 2nd St, Austin,TX,73301 +183831,Bose SoundSport Headphones,1,99.99,2019-04-06 23:06:00,251 2nd St, Austin,TX,73301 +183832,ThinkPad Laptop,1,999.99,2019-04-24 20:59:00,224 2nd St, Boston,MA,02215 +183833,Vareebadd Phone,1,400.0,2019-04-20 18:46:00,59 Elm St, Portland,OR,97035 +183834,AAA Batteries (4-pack),1,2.99,2019-04-02 21:12:00,106 5th St, New York City,NY,10001 +183835,AAA Batteries (4-pack),1,2.99,2019-04-10 08:46:00,979 Center St, Dallas,TX,75001 +183836,AA Batteries (4-pack),1,3.84,2019-04-09 14:36:00,662 Wilson St, San Francisco,CA,94016 +183837,iPhone,1,700.0,2019-04-04 09:17:00,716 5th St, San Francisco,CA,94016 +183838,LG Washing Machine,1,600.0,2019-04-24 19:57:00,210 Church St, Austin,TX,73301 +183839,Bose SoundSport Headphones,1,99.99,2019-04-05 09:39:00,679 4th St, Dallas,TX,75001 +183840,Apple Airpods Headphones,1,150.0,2019-04-23 17:03:00,343 Center St, Los Angeles,CA,90001 +183841,Bose SoundSport Headphones,1,99.99,2019-04-16 22:20:00,786 Johnson St, New York City,NY,10001 +183842,Bose SoundSport Headphones,1,99.99,2019-04-10 12:00:00,799 Cedar St, Portland,OR,97035 +183843,Apple Airpods Headphones,1,150.0,2019-04-18 21:27:00,802 Chestnut St, San Francisco,CA,94016 +183844,Apple Airpods Headphones,1,150.0,2019-04-04 14:53:00,223 North St, Dallas,TX,75001 +183845,Lightning Charging Cable,2,14.95,2019-04-13 20:37:00,491 Cedar St, San Francisco,CA,94016 +183846,USB-C Charging Cable,1,11.95,2019-04-27 10:51:00,793 6th St, San Francisco,CA,94016 +183847,Lightning Charging Cable,1,14.95,2019-04-26 03:01:00,90 Main St, New York City,NY,10001 +183848,Apple Airpods Headphones,1,150.0,2019-04-08 22:37:00,917 Maple St, San Francisco,CA,94016 +183849,Lightning Charging Cable,1,14.95,2019-04-12 17:03:00,726 Forest St, Austin,TX,73301 +183850,AA Batteries (4-pack),1,3.84,2019-04-29 11:45:00,299 12th St, Austin,TX,73301 +183851,Bose SoundSport Headphones,1,99.99,2019-04-23 23:41:00,991 Wilson St, Seattle,WA,98101 +183852,Bose SoundSport Headphones,1,99.99,2019-04-09 21:57:00,321 Sunset St, Los Angeles,CA,90001 +183853,iPhone,1,700.0,2019-04-09 18:28:00,8 West St, Boston,MA,02215 +183854,Lightning Charging Cable,1,14.95,2019-04-15 16:26:00,729 Ridge St, Portland,ME,04101 +183855,AAA Batteries (4-pack),1,2.99,2019-04-24 21:26:00,139 13th St, Boston,MA,02215 +183856,AAA Batteries (4-pack),2,2.99,2019-04-11 13:58:00,11 Jackson St, Los Angeles,CA,90001 +183857,AA Batteries (4-pack),1,3.84,2019-04-20 20:07:00,460 Church St, San Francisco,CA,94016 +183858,Apple Airpods Headphones,1,150.0,2019-04-11 21:54:00,674 8th St, Atlanta,GA,30301 +183859,USB-C Charging Cable,2,11.95,2019-04-16 14:35:00,224 11th St, San Francisco,CA,94016 +183860,Lightning Charging Cable,2,14.95,2019-04-03 11:51:00,182 Johnson St, Seattle,WA,98101 +183861,Vareebadd Phone,1,400.0,2019-04-29 09:04:00,748 Ridge St, San Francisco,CA,94016 +183862,AA Batteries (4-pack),1,3.84,2019-04-02 21:29:00,793 Jackson St, Boston,MA,02215 +183863,iPhone,1,700.0,2019-04-06 18:04:00,117 14th St, New York City,NY,10001 +183864,AAA Batteries (4-pack),1,2.99,2019-04-01 15:39:00,820 Walnut St, New York City,NY,10001 +183865,AAA Batteries (4-pack),1,2.99,2019-04-19 21:16:00,680 Highland St, San Francisco,CA,94016 +183866,USB-C Charging Cable,1,11.95,2019-04-21 09:25:00,804 Cedar St, Boston,MA,02215 +183867,Bose SoundSport Headphones,1,99.99,2019-04-13 11:41:00,712 9th St, Boston,MA,02215 +183868,Google Phone,1,600.0,2019-04-19 18:54:00,975 Dogwood St, Seattle,WA,98101 +183868,AA Batteries (4-pack),1,3.84,2019-04-19 18:54:00,975 Dogwood St, Seattle,WA,98101 +183869,USB-C Charging Cable,1,11.95,2019-04-17 23:13:00,789 Center St, Seattle,WA,98101 +183870,AAA Batteries (4-pack),1,2.99,2019-04-28 22:41:00,334 Cedar St, Seattle,WA,98101 +183871,Bose SoundSport Headphones,1,99.99,2019-04-16 12:24:00,420 9th St, New York City,NY,10001 +183872,Apple Airpods Headphones,1,150.0,2019-04-19 13:30:00,432 Elm St, Los Angeles,CA,90001 +183873,USB-C Charging Cable,1,11.95,2019-04-15 13:11:00,243 Highland St, San Francisco,CA,94016 +183874,Wired Headphones,1,11.99,2019-04-10 20:19:00,234 6th St, San Francisco,CA,94016 +183875,AA Batteries (4-pack),2,3.84,2019-04-26 16:28:00,340 Highland St, Dallas,TX,75001 +183876,27in 4K Gaming Monitor,1,389.99,2019-04-18 22:47:00,631 2nd St, Dallas,TX,75001 +183877,34in Ultrawide Monitor,1,379.99,2019-04-15 00:52:00,330 Willow St, New York City,NY,10001 +183878,USB-C Charging Cable,1,11.95,2019-04-23 15:44:00,659 Sunset St, New York City,NY,10001 +183879,USB-C Charging Cable,1,11.95,2019-04-20 07:03:00,859 Cedar St, New York City,NY,10001 +183880,27in FHD Monitor,1,149.99,2019-04-04 17:42:00,71 Hill St, Los Angeles,CA,90001 +183881,Lightning Charging Cable,1,14.95,2019-04-13 20:43:00,24 9th St, Los Angeles,CA,90001 +183882,AAA Batteries (4-pack),1,2.99,2019-04-06 18:47:00,307 14th St, Los Angeles,CA,90001 +183883,Wired Headphones,1,11.99,2019-04-15 23:21:00,632 14th St, Austin,TX,73301 +183884,Apple Airpods Headphones,1,150.0,2019-04-11 16:27:00,681 Sunset St, Seattle,WA,98101 +183885,34in Ultrawide Monitor,1,379.99,2019-04-16 15:54:00,554 Dogwood St, Atlanta,GA,30301 +183886,Wired Headphones,1,11.99,2019-04-08 05:27:00,761 Willow St, Austin,TX,73301 +183887,AA Batteries (4-pack),1,3.84,2019-04-27 08:47:00,266 1st St, San Francisco,CA,94016 +183888,AA Batteries (4-pack),1,3.84,2019-04-03 13:48:00,388 Highland St, Seattle,WA,98101 +183889,Bose SoundSport Headphones,1,99.99,2019-04-25 10:27:00,912 River St, San Francisco,CA,94016 +183890,Google Phone,1,600.0,2019-04-11 21:20:00,73 Elm St, Los Angeles,CA,90001 +183891,Macbook Pro Laptop,1,1700.0,2019-04-14 17:31:00,705 Jackson St, San Francisco,CA,94016 +183892,Apple Airpods Headphones,1,150.0,2019-04-12 21:23:00,459 12th St, San Francisco,CA,94016 +183893,AAA Batteries (4-pack),1,2.99,2019-04-07 19:03:00,712 West St, Los Angeles,CA,90001 +183894,AA Batteries (4-pack),2,3.84,2019-04-17 17:08:00,321 Ridge St, San Francisco,CA,94016 +183895,ThinkPad Laptop,1,999.99,2019-04-04 11:55:00,556 Center St, Seattle,WA,98101 +183896,27in FHD Monitor,1,149.99,2019-04-20 12:03:00,892 Forest St, Boston,MA,02215 +183897,AAA Batteries (4-pack),1,2.99,2019-04-09 21:13:00,574 7th St, New York City,NY,10001 +183898,Bose SoundSport Headphones,1,99.99,2019-04-02 20:44:00,142 14th St, Los Angeles,CA,90001 +183899,27in FHD Monitor,1,149.99,2019-04-01 10:40:00,309 Park St, San Francisco,CA,94016 +183900,USB-C Charging Cable,1,11.95,2019-04-10 06:43:00,813 North St, San Francisco,CA,94016 +183901,USB-C Charging Cable,1,11.95,2019-04-09 21:58:00,95 14th St, Los Angeles,CA,90001 +183902,USB-C Charging Cable,1,11.95,2019-04-15 18:18:00,550 Cedar St, San Francisco,CA,94016 +183903,iPhone,1,700.0,2019-04-08 01:03:00,822 4th St, San Francisco,CA,94016 +183904,Apple Airpods Headphones,1,150.0,2019-04-07 21:20:00,466 8th St, New York City,NY,10001 +183905,USB-C Charging Cable,1,11.95,2019-04-30 00:13:00,212 Lincoln St, Los Angeles,CA,90001 +183906,USB-C Charging Cable,1,11.95,2019-04-12 15:41:00,983 1st St, San Francisco,CA,94016 +183907,Wired Headphones,1,11.99,2019-04-19 17:38:00,225 Cherry St, New York City,NY,10001 +183908,Wired Headphones,1,11.99,2019-04-21 18:56:00,125 Sunset St, New York City,NY,10001 +183909,Bose SoundSport Headphones,1,99.99,2019-04-20 23:53:00,855 Washington St, Boston,MA,02215 +183910,iPhone,1,700.0,2019-04-17 08:22:00,845 West St, San Francisco,CA,94016 +183911,iPhone,1,700.0,2019-04-03 16:50:00,159 12th St, Atlanta,GA,30301 +183912,USB-C Charging Cable,1,11.95,2019-04-07 16:00:00,63 Elm St, New York City,NY,10001 +183913,AA Batteries (4-pack),1,3.84,2019-04-24 00:55:00,968 Park St, Los Angeles,CA,90001 +183914,34in Ultrawide Monitor,1,379.99,2019-04-20 23:47:00,713 Meadow St, Seattle,WA,98101 +183915,AAA Batteries (4-pack),1,2.99,2019-04-29 06:32:00,630 Adams St, Los Angeles,CA,90001 +183916,34in Ultrawide Monitor,1,379.99,2019-04-02 10:40:00,545 Hill St, Portland,OR,97035 +183917,Apple Airpods Headphones,1,150.0,2019-04-09 09:55:00,453 Highland St, Seattle,WA,98101 +183918,27in 4K Gaming Monitor,1,389.99,2019-04-19 16:25:00,737 Hill St, Atlanta,GA,30301 +183919,Wired Headphones,1,11.99,2019-04-10 14:21:00,286 Sunset St, New York City,NY,10001 +183920,27in 4K Gaming Monitor,1,389.99,2019-04-15 13:27:00,599 South St, Boston,MA,02215 +183921,AA Batteries (4-pack),1,3.84,2019-04-24 12:50:00,380 8th St, Los Angeles,CA,90001 +183922,AA Batteries (4-pack),1,3.84,2019-04-02 14:01:00,838 Meadow St, Austin,TX,73301 +183923,Flatscreen TV,1,300.0,2019-04-11 15:48:00,201 14th St, Seattle,WA,98101 +183924,AA Batteries (4-pack),1,3.84,2019-04-30 21:58:00,863 2nd St, New York City,NY,10001 +183925,AAA Batteries (4-pack),1,2.99,2019-04-22 23:55:00,757 North St, San Francisco,CA,94016 +183926,USB-C Charging Cable,1,11.95,2019-04-14 06:17:00,295 Chestnut St, Dallas,TX,75001 +183927,AAA Batteries (4-pack),2,2.99,2019-04-21 19:53:00,73 Park St, San Francisco,CA,94016 +183928,Vareebadd Phone,1,400.0,2019-04-25 21:44:00,180 1st St, San Francisco,CA,94016 +183929,Wired Headphones,1,11.99,2019-04-28 10:19:00,585 2nd St, Portland,ME,04101 +183930,AA Batteries (4-pack),1,3.84,2019-04-02 19:56:00,311 8th St, Atlanta,GA,30301 +183931,Wired Headphones,1,11.99,2019-04-26 16:04:00,579 7th St, Dallas,TX,75001 +183932,AAA Batteries (4-pack),4,2.99,2019-04-17 16:01:00,805 4th St, Austin,TX,73301 +183933,Google Phone,1,600.0,2019-04-06 14:07:00,223 Main St, Seattle,WA,98101 +183934,20in Monitor,1,109.99,2019-04-21 12:14:00,253 Dogwood St, Portland,OR,97035 +183935,Apple Airpods Headphones,1,150.0,2019-04-18 10:25:00,182 Forest St, New York City,NY,10001 +183936,AA Batteries (4-pack),1,3.84,2019-04-24 21:51:00,770 South St, San Francisco,CA,94016 +183937,iPhone,1,700.0,2019-04-09 18:17:00,138 1st St, Boston,MA,02215 +183938,Macbook Pro Laptop,1,1700.0,2019-04-26 09:09:00,932 Dogwood St, Los Angeles,CA,90001 +183939,Wired Headphones,1,11.99,2019-04-06 13:51:00,866 Pine St, Los Angeles,CA,90001 +183940,AAA Batteries (4-pack),1,2.99,2019-04-07 18:54:00,744 Adams St, San Francisco,CA,94016 +183941,Lightning Charging Cable,3,14.95,2019-04-23 18:10:00,955 Lake St, San Francisco,CA,94016 +183942,27in 4K Gaming Monitor,1,389.99,2019-04-19 21:34:00,458 Willow St, San Francisco,CA,94016 +183943,Wired Headphones,1,11.99,2019-04-06 15:03:00,93 Jefferson St, Portland,ME,04101 +183944,34in Ultrawide Monitor,1,379.99,2019-04-30 19:33:00,693 Spruce St, Dallas,TX,75001 +183945,Apple Airpods Headphones,1,150.0,2019-04-05 20:49:00,331 Sunset St, Portland,OR,97035 +183946,Lightning Charging Cable,1,14.95,2019-04-16 15:48:00,110 West St, Dallas,TX,75001 +183947,AAA Batteries (4-pack),4,2.99,2019-04-28 22:23:00,893 1st St, Boston,MA,02215 +183948,Bose SoundSport Headphones,1,99.99,2019-04-26 04:34:00,325 Hickory St, San Francisco,CA,94016 +183949,Lightning Charging Cable,1,14.95,2019-04-25 17:57:00,221 Maple St, Seattle,WA,98101 +183950,AAA Batteries (4-pack),2,2.99,2019-04-01 20:16:00,240 Johnson St, Los Angeles,CA,90001 +183951,Lightning Charging Cable,1,14.95,2019-04-29 11:32:00,884 Spruce St, Boston,MA,02215 +183952,USB-C Charging Cable,1,11.95,2019-04-07 12:17:00,147 8th St, Dallas,TX,75001 +183953,Apple Airpods Headphones,1,150.0,2019-04-14 18:24:00,611 Church St, Los Angeles,CA,90001 +183954,Bose SoundSport Headphones,1,99.99,2019-04-13 05:15:00,311 Park St, San Francisco,CA,94016 +183955,USB-C Charging Cable,1,11.95,2019-04-18 09:57:00,995 Forest St, Los Angeles,CA,90001 +183956,27in 4K Gaming Monitor,1,389.99,2019-04-30 08:41:00,767 9th St, San Francisco,CA,94016 +183957,Vareebadd Phone,1,400.0,2019-04-06 15:32:00,9 Cedar St, Atlanta,GA,30301 +183958,AAA Batteries (4-pack),1,2.99,2019-04-19 18:46:00,770 Church St, New York City,NY,10001 +183959,USB-C Charging Cable,1,11.95,2019-04-02 12:27:00,980 Highland St, Seattle,WA,98101 +183960,Lightning Charging Cable,1,14.95,2019-04-24 13:04:00,128 2nd St, Los Angeles,CA,90001 +183961,27in FHD Monitor,1,149.99,2019-04-10 11:13:00,38 South St, San Francisco,CA,94016 +183962,AAA Batteries (4-pack),1,2.99,2019-04-13 21:04:00,980 8th St, Los Angeles,CA,90001 +183963,USB-C Charging Cable,1,11.95,2019-04-25 01:52:00,334 13th St, New York City,NY,10001 +183964,Apple Airpods Headphones,1,150.0,2019-04-08 09:48:00,626 Wilson St, San Francisco,CA,94016 +183965,Wired Headphones,1,11.99,2019-04-12 20:19:00,770 South St, Atlanta,GA,30301 +183966,Lightning Charging Cable,2,14.95,2019-04-03 12:21:00,421 Jefferson St, Seattle,WA,98101 +183967,Lightning Charging Cable,1,14.95,2019-04-28 18:30:00,938 Highland St, San Francisco,CA,94016 +183968,AA Batteries (4-pack),1,3.84,2019-04-26 17:06:00,786 Jefferson St, Los Angeles,CA,90001 +183969,AA Batteries (4-pack),1,3.84,2019-04-13 12:14:00,977 Main St, Los Angeles,CA,90001 +183970,Lightning Charging Cable,1,14.95,2019-04-28 19:32:00,662 Cedar St, Boston,MA,02215 +183971,iPhone,1,700.0,2019-04-14 11:43:00,743 4th St, Austin,TX,73301 +183971,Vareebadd Phone,1,400.0,2019-04-14 11:43:00,743 4th St, Austin,TX,73301 +183972,Lightning Charging Cable,1,14.95,2019-04-03 14:28:00,55 1st St, New York City,NY,10001 +183973,Macbook Pro Laptop,1,1700.0,2019-04-05 15:59:00,171 Jackson St, Los Angeles,CA,90001 +183974,AAA Batteries (4-pack),1,2.99,2019-04-02 00:31:00,387 Chestnut St, Dallas,TX,75001 +183975,AA Batteries (4-pack),1,3.84,2019-04-27 21:07:00,831 13th St, San Francisco,CA,94016 +183976,27in 4K Gaming Monitor,1,389.99,2019-04-19 07:32:00,395 Walnut St, San Francisco,CA,94016 +183977,Bose SoundSport Headphones,1,99.99,2019-04-18 15:22:00,395 Walnut St, Atlanta,GA,30301 +183978,Bose SoundSport Headphones,1,99.99,2019-04-11 06:21:00,927 6th St, San Francisco,CA,94016 +183979,20in Monitor,1,109.99,2019-04-11 17:45:00,849 Jefferson St, Los Angeles,CA,90001 +183980,Google Phone,1,600.0,2019-04-27 14:01:00,298 Wilson St, San Francisco,CA,94016 +183981,Macbook Pro Laptop,1,1700.0,2019-04-29 14:18:00,353 Adams St, Los Angeles,CA,90001 +183982,Wired Headphones,1,11.99,2019-04-11 18:09:00,120 Lake St, Los Angeles,CA,90001 +183983,AAA Batteries (4-pack),1,2.99,2019-04-01 09:00:00,96 Wilson St, Portland,OR,97035 +183984,20in Monitor,1,109.99,2019-04-24 17:00:00,18 1st St, San Francisco,CA,94016 +183985,iPhone,1,700.0,2019-04-17 21:01:00,534 Jackson St, Dallas,TX,75001 +183986,Wired Headphones,2,11.99,2019-04-04 22:57:00,410 2nd St, San Francisco,CA,94016 +183987,AAA Batteries (4-pack),2,2.99,2019-04-04 18:43:00,287 4th St, New York City,NY,10001 +183988,Lightning Charging Cable,1,14.95,2019-04-28 09:57:00,171 Meadow St, Austin,TX,73301 +183989,Wired Headphones,1,11.99,2019-04-07 14:41:00,217 Washington St, San Francisco,CA,94016 +183990,USB-C Charging Cable,1,11.95,2019-04-29 23:15:00,42 Adams St, San Francisco,CA,94016 +183991,AA Batteries (4-pack),2,3.84,2019-04-27 16:44:00,920 River St, San Francisco,CA,94016 +183992,Lightning Charging Cable,1,14.95,2019-04-21 10:54:00,91 North St, New York City,NY,10001 +183993,iPhone,1,700.0,2019-04-11 14:46:00,547 Highland St, San Francisco,CA,94016 +183994,34in Ultrawide Monitor,1,379.99,2019-04-04 18:56:00,441 11th St, San Francisco,CA,94016 +183995,20in Monitor,1,109.99,2019-04-16 20:53:00,694 Jackson St, Seattle,WA,98101 +183996,Apple Airpods Headphones,1,150.0,2019-04-07 16:38:00,900 Chestnut St, New York City,NY,10001 +183997,Wired Headphones,1,11.99,2019-04-13 15:23:00,536 Willow St, San Francisco,CA,94016 +183998,Bose SoundSport Headphones,1,99.99,2019-04-19 09:34:00,969 4th St, Seattle,WA,98101 +183999,Lightning Charging Cable,1,14.95,2019-04-26 17:16:00,330 Madison St, San Francisco,CA,94016 +184000,Macbook Pro Laptop,1,1700.0,2019-04-05 11:09:00,13 Ridge St, New York City,NY,10001 +184001,27in 4K Gaming Monitor,1,389.99,2019-04-03 11:49:00,479 2nd St, San Francisco,CA,94016 +184002,AA Batteries (4-pack),1,3.84,2019-04-28 14:19:00,31 Ridge St, Los Angeles,CA,90001 +184003,Lightning Charging Cable,1,14.95,2019-04-26 10:45:00,649 12th St, New York City,NY,10001 +184004,Bose SoundSport Headphones,1,99.99,2019-04-03 16:47:00,392 Lake St, San Francisco,CA,94016 +184005,34in Ultrawide Monitor,1,379.99,2019-04-08 15:46:00,305 6th St, San Francisco,CA,94016 +184006,Bose SoundSport Headphones,1,99.99,2019-04-18 02:57:00,983 Sunset St, Atlanta,GA,30301 +184007,Google Phone,1,600.0,2019-04-05 11:18:00,950 13th St, San Francisco,CA,94016 +184008,Apple Airpods Headphones,1,150.0,2019-04-04 14:31:00,933 Spruce St, Boston,MA,02215 +184009,USB-C Charging Cable,1,11.95,2019-04-14 21:25:00,415 Church St, Atlanta,GA,30301 +184010,USB-C Charging Cable,1,11.95,2019-04-04 17:10:00,301 Adams St, Los Angeles,CA,90001 +184011,Bose SoundSport Headphones,1,99.99,2019-04-12 19:33:00,955 Chestnut St, Boston,MA,02215 +184012,Apple Airpods Headphones,1,150.0,2019-04-11 09:07:00,548 Highland St, San Francisco,CA,94016 +184013,Lightning Charging Cable,1,14.95,2019-04-02 12:54:00,928 South St, New York City,NY,10001 +184014,34in Ultrawide Monitor,1,379.99,2019-04-23 12:30:00,259 14th St, Boston,MA,02215 +184015,Apple Airpods Headphones,1,150.0,2019-04-21 17:46:00,85 13th St, Atlanta,GA,30301 +184016,AA Batteries (4-pack),1,3.84,2019-04-13 23:58:00,690 2nd St, New York City,NY,10001 +184017,AA Batteries (4-pack),1,3.84,2019-04-12 12:40:00,900 Madison St, San Francisco,CA,94016 +184018,USB-C Charging Cable,1,11.95,2019-04-07 15:42:00,722 9th St, San Francisco,CA,94016 +184019,USB-C Charging Cable,1,11.95,2019-04-18 22:50:00,458 Sunset St, Portland,OR,97035 +184020,USB-C Charging Cable,1,11.95,2019-04-18 13:01:00,738 West St, Boston,MA,02215 +184021,Google Phone,1,600.0,2019-04-29 15:37:00,168 Elm St, Boston,MA,02215 +184021,USB-C Charging Cable,1,11.95,2019-04-29 15:37:00,168 Elm St, Boston,MA,02215 +184022,Google Phone,1,600.0,2019-04-13 08:06:00,437 Spruce St, Los Angeles,CA,90001 +184022,USB-C Charging Cable,2,11.95,2019-04-13 08:06:00,437 Spruce St, Los Angeles,CA,90001 +184023,Apple Airpods Headphones,1,150.0,2019-04-17 06:11:00,913 7th St, Portland,ME,04101 +184024,Wired Headphones,1,11.99,2019-04-08 11:19:00,815 Adams St, Austin,TX,73301 +184025,LG Washing Machine,1,600.0,2019-04-09 16:07:00,986 Spruce St, Dallas,TX,75001 +184026,AA Batteries (4-pack),2,3.84,2019-04-14 17:19:00,799 Highland St, San Francisco,CA,94016 +184027,20in Monitor,1,109.99,2019-04-01 14:28:00,126 Dogwood St, Seattle,WA,98101 +184028,AAA Batteries (4-pack),2,2.99,2019-04-09 19:39:00,471 North St, San Francisco,CA,94016 +184029,AA Batteries (4-pack),2,3.84,2019-04-26 14:16:00,334 10th St, Los Angeles,CA,90001 +184030,Apple Airpods Headphones,1,150.0,2019-04-16 08:54:00,687 Lake St, San Francisco,CA,94016 +184031,AAA Batteries (4-pack),2,2.99,2019-04-15 17:16:00,92 Highland St, New York City,NY,10001 +184032,Flatscreen TV,1,300.0,2019-04-11 04:56:00,241 Johnson St, Los Angeles,CA,90001 +184033,Apple Airpods Headphones,1,150.0,2019-04-09 23:31:00,309 Chestnut St, Atlanta,GA,30301 +184034,Flatscreen TV,1,300.0,2019-04-24 22:00:00,597 Willow St, Seattle,WA,98101 +184035,AAA Batteries (4-pack),1,2.99,2019-04-05 22:57:00,229 Hill St, San Francisco,CA,94016 +184036,27in 4K Gaming Monitor,1,389.99,2019-04-05 18:56:00,538 Church St, New York City,NY,10001 +184037,AAA Batteries (4-pack),1,2.99,2019-04-03 16:08:00,482 Walnut St, Dallas,TX,75001 +184038,AAA Batteries (4-pack),2,2.99,2019-04-06 09:45:00,478 Adams St, Los Angeles,CA,90001 +184039,Flatscreen TV,1,300.0,2019-04-20 09:58:00,952 14th St, Seattle,WA,98101 +184040,Lightning Charging Cable,2,14.95,2019-04-09 14:40:00,704 Hickory St, Dallas,TX,75001 +184041,Flatscreen TV,1,300.0,2019-04-18 13:08:00,607 Wilson St, New York City,NY,10001 +184042,AAA Batteries (4-pack),2,2.99,2019-04-20 06:01:00,514 Ridge St, Dallas,TX,75001 +184043,Macbook Pro Laptop,1,1700.0,2019-04-05 12:15:00,310 Main St, Austin,TX,73301 +184044,Lightning Charging Cable,1,14.95,2019-04-20 13:55:00,658 6th St, Boston,MA,02215 +184045,27in FHD Monitor,1,149.99,2019-04-11 07:04:00,1 7th St, Los Angeles,CA,90001 +184046,USB-C Charging Cable,1,11.95,2019-04-07 23:52:00,591 4th St, Boston,MA,02215 +184047,Wired Headphones,1,11.99,2019-04-15 10:46:00,574 12th St, Boston,MA,02215 +184048,Lightning Charging Cable,1,14.95,2019-04-01 13:59:00,98 Park St, Portland,OR,97035 +184049,USB-C Charging Cable,1,11.95,2019-04-15 14:55:00,520 Highland St, Los Angeles,CA,90001 +184050,Bose SoundSport Headphones,1,99.99,2019-04-22 18:50:00,60 11th St, San Francisco,CA,94016 +184051,20in Monitor,1,109.99,2019-04-18 10:52:00,982 South St, Boston,MA,02215 +184052,Lightning Charging Cable,1,14.95,2019-04-26 14:02:00,755 Church St, San Francisco,CA,94016 +184053,Bose SoundSport Headphones,1,99.99,2019-04-08 12:14:00,168 West St, Boston,MA,02215 +184054,Google Phone,1,600.0,2019-04-01 10:31:00,425 Church St, Atlanta,GA,30301 +184054,USB-C Charging Cable,1,11.95,2019-04-01 10:31:00,425 Church St, Atlanta,GA,30301 +184055,iPhone,1,700.0,2019-04-30 20:08:00,743 6th St, Los Angeles,CA,90001 +184055,Lightning Charging Cable,1,14.95,2019-04-30 20:08:00,743 6th St, Los Angeles,CA,90001 +184056,Apple Airpods Headphones,1,150.0,2019-04-18 17:23:00,544 Forest St, San Francisco,CA,94016 +184057,Apple Airpods Headphones,1,150.0,2019-04-15 19:27:00,447 14th St, Portland,OR,97035 +184058,Google Phone,1,600.0,2019-04-13 17:19:00,165 Walnut St, New York City,NY,10001 +184059,Wired Headphones,1,11.99,2019-04-02 14:25:00,640 11th St, Austin,TX,73301 +184060,27in FHD Monitor,1,149.99,2019-04-24 20:04:00,211 Adams St, Seattle,WA,98101 +184061,AA Batteries (4-pack),1,3.84,2019-04-27 12:10:00,892 Chestnut St, New York City,NY,10001 +184062,Wired Headphones,1,11.99,2019-04-19 14:35:00,681 Meadow St, Dallas,TX,75001 +184063,AA Batteries (4-pack),2,3.84,2019-04-23 09:04:00,541 Chestnut St, Atlanta,GA,30301 +184064,Lightning Charging Cable,1,14.95,2019-04-05 23:59:00,994 Forest St, Los Angeles,CA,90001 +184065,34in Ultrawide Monitor,2,379.99,2019-04-26 10:30:00,859 14th St, Boston,MA,02215 +184066,Apple Airpods Headphones,1,150.0,2019-04-12 17:07:00,1 Johnson St, San Francisco,CA,94016 +184067,Wired Headphones,1,11.99,2019-04-01 06:18:00,446 Lakeview St, San Francisco,CA,94016 +184068,Bose SoundSport Headphones,1,99.99,2019-04-04 08:45:00,621 Willow St, Dallas,TX,75001 +184069,Wired Headphones,1,11.99,2019-04-18 07:02:00,844 Dogwood St, San Francisco,CA,94016 +184070,USB-C Charging Cable,1,11.95,2019-04-16 22:40:00,704 Jackson St, San Francisco,CA,94016 +184071,Macbook Pro Laptop,1,1700.0,2019-04-07 21:17:00,710 Willow St, Dallas,TX,75001 +184072,Bose SoundSport Headphones,1,99.99,2019-04-04 20:07:00,812 Wilson St, Atlanta,GA,30301 +184073,Apple Airpods Headphones,1,150.0,2019-04-27 08:00:00,925 South St, Austin,TX,73301 +184074,AAA Batteries (4-pack),1,2.99,2019-04-12 10:47:00,544 1st St, San Francisco,CA,94016 +184075,AAA Batteries (4-pack),1,2.99,2019-04-03 20:20:00,241 11th St, Austin,TX,73301 +184076,Lightning Charging Cable,1,14.95,2019-04-17 18:22:00,752 Chestnut St, Los Angeles,CA,90001 +184077,AAA Batteries (4-pack),1,2.99,2019-04-03 13:22:00,203 West St, New York City,NY,10001 +184078,Apple Airpods Headphones,1,150.0,2019-04-18 20:24:00,950 4th St, San Francisco,CA,94016 +184079,Wired Headphones,1,11.99,2019-04-19 16:51:00,826 12th St, San Francisco,CA,94016 +184080,Wired Headphones,1,11.99,2019-04-11 13:19:00,509 Main St, Portland,OR,97035 +184081,AA Batteries (4-pack),1,3.84,2019-04-15 11:07:00,554 Highland St, Dallas,TX,75001 +184082,LG Dryer,1,600.0,2019-04-07 17:08:00,849 Wilson St, San Francisco,CA,94016 +184083,Wired Headphones,1,11.99,2019-04-27 21:21:00,575 Johnson St, Seattle,WA,98101 +184084,Google Phone,1,600.0,2019-04-02 18:00:00,630 Hill St, Boston,MA,02215 +184085,AA Batteries (4-pack),1,3.84,2019-04-11 14:13:00,505 Spruce St, Dallas,TX,75001 +184086,Apple Airpods Headphones,1,150.0,2019-04-23 20:24:00,318 Maple St, Austin,TX,73301 +184087,Flatscreen TV,1,300.0,2019-04-14 21:59:00,613 Dogwood St, Portland,OR,97035 +184088,Vareebadd Phone,1,400.0,2019-04-30 13:10:00,191 10th St, Boston,MA,02215 +184089,Bose SoundSport Headphones,1,99.99,2019-04-18 13:57:00,317 1st St, San Francisco,CA,94016 +184090,Lightning Charging Cable,1,14.95,2019-04-17 17:51:00,90 2nd St, New York City,NY,10001 +184091,USB-C Charging Cable,1,11.95,2019-04-05 21:12:00,738 Lake St, Boston,MA,02215 +184092,Apple Airpods Headphones,1,150.0,2019-04-14 12:42:00,682 4th St, San Francisco,CA,94016 +184093,20in Monitor,1,109.99,2019-04-24 23:58:00,150 6th St, New York City,NY,10001 +184094,Flatscreen TV,1,300.0,2019-04-18 17:01:00,596 Pine St, Portland,OR,97035 +184095,AA Batteries (4-pack),1,3.84,2019-04-18 21:38:00,881 12th St, Los Angeles,CA,90001 +184096,USB-C Charging Cable,1,11.95,2019-04-19 23:40:00,55 Highland St, San Francisco,CA,94016 +184097,Google Phone,1,600.0,2019-04-12 13:00:00,485 Highland St, Portland,OR,97035 +184097,Wired Headphones,1,11.99,2019-04-12 13:00:00,485 Highland St, Portland,OR,97035 +184098,AA Batteries (4-pack),1,3.84,2019-04-21 03:50:00,896 River St, Los Angeles,CA,90001 +184099,Wired Headphones,1,11.99,2019-04-27 13:52:00,615 14th St, Los Angeles,CA,90001 +184100,Macbook Pro Laptop,1,1700.0,2019-04-10 21:56:00,543 9th St, New York City,NY,10001 +184101,AAA Batteries (4-pack),3,2.99,2019-04-28 15:18:00,975 Church St, San Francisco,CA,94016 +184102,Lightning Charging Cable,1,14.95,2019-04-04 10:51:00,508 Highland St, Seattle,WA,98101 +184103,iPhone,1,700.0,2019-04-05 00:17:00,226 1st St, Los Angeles,CA,90001 +184104,Bose SoundSport Headphones,1,99.99,2019-04-06 22:38:00,674 Hill St, New York City,NY,10001 +184105,USB-C Charging Cable,2,11.95,2019-04-23 19:17:00,755 Dogwood St, Atlanta,GA,30301 +184106,iPhone,1,700.0,2019-04-11 09:15:00,255 Washington St, Seattle,WA,98101 +184107,AA Batteries (4-pack),1,3.84,2019-04-15 10:40:00,118 12th St, Los Angeles,CA,90001 +184108,20in Monitor,1,109.99,2019-04-09 17:43:00,979 Wilson St, New York City,NY,10001 +184109,AA Batteries (4-pack),1,3.84,2019-04-09 13:31:00,109 Walnut St, San Francisco,CA,94016 +184110,Lightning Charging Cable,1,14.95,2019-04-28 20:47:00,231 2nd St, San Francisco,CA,94016 +184111,Flatscreen TV,1,300.0,2019-04-02 13:24:00,435 6th St, Dallas,TX,75001 +184112,USB-C Charging Cable,1,11.95,2019-04-10 13:47:00,943 Center St, San Francisco,CA,94016 +184113,27in FHD Monitor,1,149.99,2019-04-10 16:18:00,826 Walnut St, San Francisco,CA,94016 +184114,Lightning Charging Cable,1,14.95,2019-04-27 23:36:00,379 Lakeview St, San Francisco,CA,94016 +184115,USB-C Charging Cable,1,11.95,2019-04-12 14:19:00,876 6th St, San Francisco,CA,94016 +184116,Google Phone,1,600.0,2019-04-07 10:21:00,640 Church St, New York City,NY,10001 +184117,USB-C Charging Cable,1,11.95,2019-04-17 15:04:00,591 5th St, Los Angeles,CA,90001 +184118,Lightning Charging Cable,1,14.95,2019-04-27 11:12:00,266 Main St, Seattle,WA,98101 +184119,Lightning Charging Cable,1,14.95,2019-04-24 18:25:00,4 7th St, Boston,MA,02215 +184120,AAA Batteries (4-pack),1,2.99,2019-04-17 07:40:00,513 West St, Seattle,WA,98101 +184121,AA Batteries (4-pack),1,3.84,2019-04-05 19:25:00,724 Lincoln St, Los Angeles,CA,90001 +184122,AA Batteries (4-pack),1,3.84,2019-04-26 20:58:00,637 7th St, Los Angeles,CA,90001 +184123,iPhone,1,700.0,2019-04-06 10:40:00,832 1st St, Seattle,WA,98101 +184124,Google Phone,1,600.0,2019-04-05 16:12:00,439 4th St, Los Angeles,CA,90001 +184125,34in Ultrawide Monitor,1,379.99,2019-04-09 12:46:00,890 Hickory St, Los Angeles,CA,90001 +184126,Flatscreen TV,1,300.0,2019-04-14 21:16:00,2 Elm St, New York City,NY,10001 +184127,iPhone,1,700.0,2019-04-11 08:18:00,612 Lakeview St, Seattle,WA,98101 +184128,27in 4K Gaming Monitor,1,389.99,2019-04-21 20:27:00,919 Pine St, Boston,MA,02215 +184129,AAA Batteries (4-pack),1,2.99,2019-04-10 22:57:00,473 Adams St, San Francisco,CA,94016 +184130,Lightning Charging Cable,1,14.95,2019-04-09 21:40:00,264 Washington St, San Francisco,CA,94016 +184131,27in 4K Gaming Monitor,1,389.99,2019-04-13 16:09:00,543 Main St, Seattle,WA,98101 +184132,Lightning Charging Cable,1,14.95,2019-04-04 13:21:00,990 Adams St, San Francisco,CA,94016 +184133,USB-C Charging Cable,1,11.95,2019-04-17 11:49:00,988 Washington St, Los Angeles,CA,90001 +184134,AAA Batteries (4-pack),1,2.99,2019-04-09 13:35:00,697 Pine St, New York City,NY,10001 +184135,AAA Batteries (4-pack),2,2.99,2019-04-06 15:48:00,206 Hickory St, Boston,MA,02215 +184136,Lightning Charging Cable,1,14.95,2019-04-17 17:52:00,450 Hill St, Dallas,TX,75001 +184137,Macbook Pro Laptop,1,1700.0,2019-04-23 15:43:00,689 Center St, New York City,NY,10001 +184138,27in FHD Monitor,1,149.99,2019-04-27 20:17:00,670 Meadow St, San Francisco,CA,94016 +184139,iPhone,1,700.0,2019-04-03 12:16:00,580 Dogwood St, San Francisco,CA,94016 +184140,LG Washing Machine,1,600.0,2019-04-09 22:00:00,810 Walnut St, San Francisco,CA,94016 +184141,iPhone,1,700.0,2019-04-11 07:03:00,818 Wilson St, Boston,MA,02215 +184142,AAA Batteries (4-pack),1,2.99,2019-04-15 18:23:00,239 Pine St, Boston,MA,02215 +184143,Lightning Charging Cable,1,14.95,2019-04-09 13:47:00,439 Forest St, Austin,TX,73301 +184144,Wired Headphones,1,11.99,2019-04-26 15:27:00,186 Johnson St, Los Angeles,CA,90001 +184145,Lightning Charging Cable,1,14.95,2019-04-16 13:33:00,253 Park St, Boston,MA,02215 +184145,USB-C Charging Cable,1,11.95,2019-04-16 13:33:00,253 Park St, Boston,MA,02215 +184146,Bose SoundSport Headphones,1,99.99,2019-04-12 21:07:00,406 West St, New York City,NY,10001 +184147,AAA Batteries (4-pack),1,2.99,2019-04-08 23:18:00,311 Park St, Dallas,TX,75001 +184148,27in FHD Monitor,1,149.99,2019-04-29 15:58:00,583 Maple St, Dallas,TX,75001 +184149,AA Batteries (4-pack),4,3.84,2019-04-21 22:20:00,255 Adams St, Los Angeles,CA,90001 +184150,Wired Headphones,1,11.99,2019-04-06 08:41:00,882 Center St, Dallas,TX,75001 +184151,34in Ultrawide Monitor,1,379.99,2019-04-13 13:29:00,162 Walnut St, San Francisco,CA,94016 +184152,Wired Headphones,2,11.99,2019-04-29 14:51:00,680 Dogwood St, New York City,NY,10001 +184153,Lightning Charging Cable,1,14.95,2019-04-27 14:42:00,961 Willow St, Dallas,TX,75001 +184154,Google Phone,1,600.0,2019-04-06 12:27:00,821 Walnut St, Los Angeles,CA,90001 +184154,USB-C Charging Cable,1,11.95,2019-04-06 12:27:00,821 Walnut St, Los Angeles,CA,90001 +184155,USB-C Charging Cable,1,11.95,2019-04-21 20:00:00,154 9th St, Dallas,TX,75001 +184156,20in Monitor,1,109.99,2019-04-20 19:55:00,559 Chestnut St, New York City,NY,10001 +184157,AA Batteries (4-pack),2,3.84,2019-04-16 13:42:00,599 Maple St, San Francisco,CA,94016 +184157,Bose SoundSport Headphones,1,99.99,2019-04-16 13:42:00,599 Maple St, San Francisco,CA,94016 +184158,AA Batteries (4-pack),1,3.84,2019-04-14 12:27:00,447 9th St, San Francisco,CA,94016 +184159,USB-C Charging Cable,1,11.95,2019-04-16 20:28:00,185 6th St, Boston,MA,02215 +184160,AAA Batteries (4-pack),1,2.99,2019-04-22 17:32:00,246 Dogwood St, San Francisco,CA,94016 +184161,iPhone,1,700.0,2019-04-04 22:12:00,649 Washington St, Portland,OR,97035 +184162,Flatscreen TV,1,300.0,2019-04-18 15:41:00,711 Ridge St, Los Angeles,CA,90001 +184163,Lightning Charging Cable,1,14.95,2019-04-08 23:20:00,467 Elm St, San Francisco,CA,94016 +184164,AA Batteries (4-pack),1,3.84,2019-04-04 17:23:00,595 14th St, Dallas,TX,75001 +184165,USB-C Charging Cable,1,11.95,2019-04-17 21:34:00,87 Willow St, Los Angeles,CA,90001 +184166,AA Batteries (4-pack),1,3.84,2019-04-07 14:12:00,252 13th St, Atlanta,GA,30301 +184166,27in FHD Monitor,1,149.99,2019-04-07 14:12:00,252 13th St, Atlanta,GA,30301 +184167,Wired Headphones,1,11.99,2019-04-04 18:56:00,601 Hickory St, San Francisco,CA,94016 +184168,Bose SoundSport Headphones,1,99.99,2019-04-16 17:37:00,58 Meadow St, Austin,TX,73301 +184169,LG Washing Machine,1,600.0,2019-04-27 20:14:00,37 Church St, Los Angeles,CA,90001 +184170,Lightning Charging Cable,2,14.95,2019-04-14 21:53:00,542 South St, Seattle,WA,98101 +184171,27in FHD Monitor,1,149.99,2019-04-27 11:04:00,495 Jefferson St, Atlanta,GA,30301 +184172,Google Phone,1,600.0,2019-04-26 14:50:00,900 Wilson St, Atlanta,GA,30301 +184172,USB-C Charging Cable,1,11.95,2019-04-26 14:50:00,900 Wilson St, Atlanta,GA,30301 +184173,AAA Batteries (4-pack),1,2.99,2019-04-16 19:49:00,334 Highland St, New York City,NY,10001 +184174,Lightning Charging Cable,1,14.95,2019-04-13 17:33:00,658 West St, Boston,MA,02215 +184175,ThinkPad Laptop,1,999.99,2019-04-25 13:29:00,6 Johnson St, New York City,NY,10001 +184176,AAA Batteries (4-pack),1,2.99,2019-04-16 12:47:00,231 9th St, Atlanta,GA,30301 +184177,Bose SoundSport Headphones,1,99.99,2019-04-26 16:30:00,877 Sunset St, Boston,MA,02215 +184178,Bose SoundSport Headphones,1,99.99,2019-04-01 22:12:00,192 Lake St, Boston,MA,02215 +184179,Apple Airpods Headphones,1,150.0,2019-04-02 16:44:00,426 4th St, Dallas,TX,75001 +184180,27in FHD Monitor,1,149.99,2019-04-13 13:22:00,380 Lakeview St, Boston,MA,02215 +184181,USB-C Charging Cable,1,11.95,2019-04-17 13:22:00,207 Church St, San Francisco,CA,94016 +184182,Wired Headphones,1,11.99,2019-04-08 10:04:00,786 Highland St, San Francisco,CA,94016 +184183,Bose SoundSport Headphones,1,99.99,2019-04-18 15:31:00,176 Meadow St, Atlanta,GA,30301 +184184,Apple Airpods Headphones,1,150.0,2019-04-16 11:14:00,530 Highland St, Austin,TX,73301 +184185,AAA Batteries (4-pack),1,2.99,2019-04-22 11:39:00,354 Sunset St, San Francisco,CA,94016 +184186,AA Batteries (4-pack),2,3.84,2019-04-22 18:35:00,933 Walnut St, Boston,MA,02215 +184187,Apple Airpods Headphones,1,150.0,2019-04-25 19:09:00,411 1st St, Los Angeles,CA,90001 +184188,Bose SoundSport Headphones,1,99.99,2019-04-01 20:10:00,531 Hill St, San Francisco,CA,94016 +184189,Google Phone,1,600.0,2019-04-10 18:44:00,158 1st St, Atlanta,GA,30301 +184190,Lightning Charging Cable,1,14.95,2019-04-01 12:21:00,784 4th St, Boston,MA,02215 +184191,Apple Airpods Headphones,1,150.0,2019-04-18 15:13:00,338 13th St, Portland,OR,97035 +184192,Wired Headphones,1,11.99,2019-04-13 16:49:00,504 Pine St, San Francisco,CA,94016 +184193,27in FHD Monitor,1,149.99,2019-04-29 16:48:00,225 9th St, San Francisco,CA,94016 +184194,ThinkPad Laptop,1,999.99,2019-04-08 22:07:00,447 Spruce St, Atlanta,GA,30301 +184195,Wired Headphones,1,11.99,2019-04-10 22:38:00,982 12th St, Los Angeles,CA,90001 +184196,Macbook Pro Laptop,1,1700.0,2019-04-17 22:35:00,634 Ridge St, Los Angeles,CA,90001 +184197,Google Phone,1,600.0,2019-04-27 15:22:00,109 Cherry St, New York City,NY,10001 +184198,Apple Airpods Headphones,1,150.0,2019-04-24 12:07:00,579 5th St, San Francisco,CA,94016 +184199,Google Phone,1,600.0,2019-04-15 01:27:00,296 South St, Portland,OR,97035 +184200,iPhone,1,700.0,2019-04-23 23:13:00,98 Dogwood St, Atlanta,GA,30301 +184201,ThinkPad Laptop,1,999.99,2019-04-19 21:13:00,221 Sunset St, Austin,TX,73301 +184202,Lightning Charging Cable,1,14.95,2019-04-12 06:35:00,631 Sunset St, Los Angeles,CA,90001 +184203,Apple Airpods Headphones,1,150.0,2019-04-04 12:12:00,938 Elm St, Austin,TX,73301 +184204,Wired Headphones,1,11.99,2019-04-06 17:50:00,144 Jefferson St, Portland,OR,97035 +184205,34in Ultrawide Monitor,1,379.99,2019-04-30 11:55:00,122 Lakeview St, Dallas,TX,75001 +184206,Wired Headphones,3,11.99,2019-04-07 13:21:00,89 1st St, Boston,MA,02215 +184207,Lightning Charging Cable,1,14.95,2019-04-06 10:29:00,485 Hickory St, Dallas,TX,75001 +184208,USB-C Charging Cable,1,11.95,2019-04-29 19:40:00,739 13th St, Boston,MA,02215 +184209,AA Batteries (4-pack),1,3.84,2019-04-07 11:17:00,836 Center St, Atlanta,GA,30301 +184210,USB-C Charging Cable,1,11.95,2019-04-04 19:01:00,154 Lincoln St, Atlanta,GA,30301 +184211,Bose SoundSport Headphones,1,99.99,2019-04-21 09:41:00,530 Lincoln St, Boston,MA,02215 +184212,Apple Airpods Headphones,1,150.0,2019-04-12 12:14:00,778 Lake St, Boston,MA,02215 +184213,AAA Batteries (4-pack),1,2.99,2019-04-20 18:02:00,817 Center St, Boston,MA,02215 +184214,Apple Airpods Headphones,1,150.0,2019-04-16 10:37:00,94 14th St, San Francisco,CA,94016 +184215,AAA Batteries (4-pack),1,2.99,2019-04-26 11:19:00,683 Washington St, New York City,NY,10001 +184216,AAA Batteries (4-pack),1,2.99,2019-04-30 18:47:00,829 13th St, San Francisco,CA,94016 +184217,iPhone,1,700.0,2019-04-14 10:55:00,756 Cedar St, Austin,TX,73301 +184218,AAA Batteries (4-pack),1,2.99,2019-04-19 10:09:00,754 Cedar St, San Francisco,CA,94016 +184219,Lightning Charging Cable,2,14.95,2019-04-09 15:56:00,493 Wilson St, Seattle,WA,98101 +184220,USB-C Charging Cable,1,11.95,2019-04-18 20:02:00,128 Cedar St, Austin,TX,73301 +184221,iPhone,1,700.0,2019-04-20 09:09:00,830 Ridge St, Seattle,WA,98101 +184221,Wired Headphones,1,11.99,2019-04-20 09:09:00,830 Ridge St, Seattle,WA,98101 +184222,Bose SoundSport Headphones,1,99.99,2019-04-13 20:48:00,125 14th St, Dallas,TX,75001 +184223,20in Monitor,1,109.99,2019-04-06 13:32:00,273 4th St, Austin,TX,73301 +184224,Apple Airpods Headphones,1,150.0,2019-04-26 17:26:00,805 Forest St, Austin,TX,73301 +184225,Bose SoundSport Headphones,1,99.99,2019-04-09 17:35:00,575 10th St, Dallas,TX,75001 +184226,27in 4K Gaming Monitor,1,389.99,2019-04-02 10:24:00,203 Church St, Dallas,TX,75001 +184227,AAA Batteries (4-pack),1,2.99,2019-04-06 07:35:00,742 Walnut St, Portland,OR,97035 +184228,AAA Batteries (4-pack),3,2.99,2019-04-05 14:08:00,203 Main St, Los Angeles,CA,90001 +184229,27in FHD Monitor,1,149.99,2019-04-08 21:44:00,869 4th St, Los Angeles,CA,90001 +184230,AAA Batteries (4-pack),1,2.99,2019-04-06 20:47:00,976 Washington St, San Francisco,CA,94016 +184231,AA Batteries (4-pack),2,3.84,2019-04-25 14:32:00,323 13th St, Los Angeles,CA,90001 +184232,Lightning Charging Cable,1,14.95,2019-04-15 13:51:00,374 Johnson St, Los Angeles,CA,90001 +184233,AA Batteries (4-pack),1,3.84,2019-04-07 12:57:00,268 Ridge St, Seattle,WA,98101 +184234,AA Batteries (4-pack),2,3.84,2019-04-19 21:32:00,385 5th St, Atlanta,GA,30301 +184235,AA Batteries (4-pack),3,3.84,2019-04-04 21:38:00,695 Spruce St, Seattle,WA,98101 +184236,AAA Batteries (4-pack),2,2.99,2019-04-11 12:59:00,291 12th St, Los Angeles,CA,90001 +184237,Wired Headphones,1,11.99,2019-04-07 09:42:00,188 Main St, Boston,MA,02215 +184238,USB-C Charging Cable,1,11.95,2019-04-20 18:33:00,47 North St, Los Angeles,CA,90001 +184239,Lightning Charging Cable,1,14.95,2019-04-10 16:42:00,696 8th St, San Francisco,CA,94016 +184240,USB-C Charging Cable,1,11.95,2019-04-22 12:10:00,793 River St, Seattle,WA,98101 +184241,AAA Batteries (4-pack),1,2.99,2019-04-03 13:27:00,436 Washington St, Austin,TX,73301 +184242,AAA Batteries (4-pack),2,2.99,2019-04-16 19:52:00,626 Lake St, Portland,OR,97035 +184243,Bose SoundSport Headphones,1,99.99,2019-04-03 14:29:00,781 11th St, Dallas,TX,75001 +184244,USB-C Charging Cable,1,11.95,2019-04-04 16:54:00,160 River St, New York City,NY,10001 +184245,Apple Airpods Headphones,1,150.0,2019-04-22 21:55:00,779 12th St, San Francisco,CA,94016 +184246,AAA Batteries (4-pack),2,2.99,2019-04-02 19:44:00,572 Pine St, Boston,MA,02215 +184247,Bose SoundSport Headphones,1,99.99,2019-04-04 13:16:00,290 8th St, New York City,NY,10001 +184248,AAA Batteries (4-pack),3,2.99,2019-04-26 09:15:00,523 2nd St, San Francisco,CA,94016 +184249,AA Batteries (4-pack),1,3.84,2019-04-02 00:05:00,406 Hill St, Dallas,TX,75001 +184250,AAA Batteries (4-pack),1,2.99,2019-04-03 10:41:00,346 Dogwood St, New York City,NY,10001 +184251,Lightning Charging Cable,1,14.95,2019-04-22 17:24:00,221 Pine St, Atlanta,GA,30301 +184252,ThinkPad Laptop,1,999.99,2019-04-05 21:18:00,334 13th St, Seattle,WA,98101 +184252,Bose SoundSport Headphones,1,99.99,2019-04-05 21:18:00,334 13th St, Seattle,WA,98101 +184253,USB-C Charging Cable,1,11.95,2019-04-17 11:54:00,34 North St, Portland,OR,97035 +184254,AAA Batteries (4-pack),3,2.99,2019-04-17 22:18:00,823 14th St, Boston,MA,02215 +184255,Wired Headphones,1,11.99,2019-04-25 22:56:00,410 Maple St, San Francisco,CA,94016 +184256,Bose SoundSport Headphones,1,99.99,2019-04-11 19:21:00,727 Lake St, Portland,OR,97035 +184257,Bose SoundSport Headphones,1,99.99,2019-04-19 14:57:00,490 Pine St, Atlanta,GA,30301 +184258,Flatscreen TV,1,300.0,2019-04-03 11:09:00,540 Lake St, Atlanta,GA,30301 +184259,Macbook Pro Laptop,1,1700.0,2019-04-27 18:31:00,931 Lake St, Los Angeles,CA,90001 +184260,iPhone,1,700.0,2019-04-10 10:10:00,147 Lincoln St, San Francisco,CA,94016 +184261,AAA Batteries (4-pack),1,2.99,2019-04-19 15:52:00,860 6th St, Atlanta,GA,30301 +184262,AAA Batteries (4-pack),2,2.99,2019-04-05 15:26:00,672 Hill St, Los Angeles,CA,90001 +184263,Bose SoundSport Headphones,1,99.99,2019-04-18 11:32:00,31 Cedar St, San Francisco,CA,94016 +184264,Macbook Pro Laptop,1,1700.0,2019-04-24 22:17:00,325 Meadow St, Atlanta,GA,30301 +184265,Apple Airpods Headphones,1,150.0,2019-04-20 09:21:00,519 Chestnut St, San Francisco,CA,94016 +184266,AAA Batteries (4-pack),5,2.99,2019-04-13 19:26:00,932 Ridge St, San Francisco,CA,94016 +184267,AA Batteries (4-pack),2,3.84,2019-04-28 18:06:00,883 6th St, New York City,NY,10001 +184268,Vareebadd Phone,1,400.0,2019-04-23 18:51:00,155 North St, Los Angeles,CA,90001 +184269,USB-C Charging Cable,1,11.95,2019-04-09 14:39:00,755 Spruce St, San Francisco,CA,94016 +184270,Lightning Charging Cable,1,14.95,2019-04-14 13:07:00,851 Lincoln St, Seattle,WA,98101 +184271,Vareebadd Phone,1,400.0,2019-04-22 17:27:00,351 4th St, Los Angeles,CA,90001 +184272,iPhone,1,700.0,2019-04-21 19:49:00,637 Cedar St, San Francisco,CA,94016 +184272,Lightning Charging Cable,1,14.95,2019-04-21 19:49:00,637 Cedar St, San Francisco,CA,94016 +184273,iPhone,1,700.0,2019-04-23 20:38:00,423 4th St, Austin,TX,73301 +184274,AAA Batteries (4-pack),2,2.99,2019-04-02 10:15:00,570 Cedar St, San Francisco,CA,94016 +184275,Bose SoundSport Headphones,1,99.99,2019-04-01 10:34:00,434 12th St, San Francisco,CA,94016 +184276,ThinkPad Laptop,1,999.99,2019-04-08 17:41:00,551 Walnut St, San Francisco,CA,94016 +184277,Bose SoundSport Headphones,1,99.99,2019-04-10 16:27:00,179 Madison St, Atlanta,GA,30301 +184278,AAA Batteries (4-pack),1,2.99,2019-04-09 17:56:00,358 Johnson St, Seattle,WA,98101 +184279,27in FHD Monitor,1,149.99,2019-04-22 13:16:00,224 River St, Boston,MA,02215 +184280,AAA Batteries (4-pack),1,2.99,2019-04-29 12:46:00,427 Meadow St, Los Angeles,CA,90001 +184281,iPhone,1,700.0,2019-04-17 14:23:00,345 Main St, Los Angeles,CA,90001 +184281,Apple Airpods Headphones,1,150.0,2019-04-17 14:23:00,345 Main St, Los Angeles,CA,90001 +184282,Lightning Charging Cable,1,14.95,2019-04-24 22:27:00,980 Ridge St, San Francisco,CA,94016 +184283,Bose SoundSport Headphones,1,99.99,2019-04-27 15:35:00,116 River St, New York City,NY,10001 +184284,Apple Airpods Headphones,1,150.0,2019-04-17 21:52:00,426 2nd St, Boston,MA,02215 +184285,Lightning Charging Cable,1,14.95,2019-04-23 08:41:00,505 Lake St, San Francisco,CA,94016 +184286,Wired Headphones,1,11.99,2019-04-14 11:03:00,526 Willow St, Seattle,WA,98101 +184287,Bose SoundSport Headphones,1,99.99,2019-04-05 18:18:00,952 Lincoln St, Los Angeles,CA,90001 +184288,Lightning Charging Cable,2,14.95,2019-04-02 12:56:00,626 Chestnut St, San Francisco,CA,94016 +184289,AA Batteries (4-pack),1,3.84,2019-04-28 12:34:00,266 North St, Los Angeles,CA,90001 +184290,ThinkPad Laptop,1,999.99,2019-04-26 15:22:00,755 Dogwood St, Seattle,WA,98101 +184291,Wired Headphones,1,11.99,2019-04-20 10:47:00,554 Cherry St, Los Angeles,CA,90001 +184292,Apple Airpods Headphones,1,150.0,2019-04-22 11:29:00,192 Church St, Atlanta,GA,30301 +184293,Apple Airpods Headphones,1,150.0,2019-04-26 12:21:00,940 Lincoln St, San Francisco,CA,94016 +184294,20in Monitor,1,109.99,2019-04-28 23:18:00,233 5th St, San Francisco,CA,94016 +184295,USB-C Charging Cable,1,11.95,2019-04-27 05:08:00,644 Chestnut St, Los Angeles,CA,90001 +184296,20in Monitor,1,109.99,2019-04-04 23:39:00,942 8th St, Boston,MA,02215 +184297,AA Batteries (4-pack),2,3.84,2019-04-06 18:49:00,745 Lake St, San Francisco,CA,94016 +184298,Wired Headphones,1,11.99,2019-04-12 08:35:00,821 12th St, Dallas,TX,75001 +184299,USB-C Charging Cable,1,11.95,2019-04-09 18:45:00,214 Sunset St, Austin,TX,73301 +184300,Lightning Charging Cable,1,14.95,2019-04-27 14:57:00,316 Ridge St, Seattle,WA,98101 +184301,Wired Headphones,1,11.99,2019-04-22 22:35:00,34 Sunset St, San Francisco,CA,94016 +184302,AAA Batteries (4-pack),1,2.99,2019-04-17 18:42:00,885 Jefferson St, Dallas,TX,75001 +184303,USB-C Charging Cable,1,11.95,2019-04-01 13:47:00,183 Chestnut St, Los Angeles,CA,90001 +184304,20in Monitor,1,109.99,2019-04-09 12:15:00,156 12th St, New York City,NY,10001 +184305,AAA Batteries (4-pack),1,2.99,2019-04-17 05:59:00,260 2nd St, Seattle,WA,98101 +184306,AAA Batteries (4-pack),1,2.99,2019-04-29 21:02:00,724 Highland St, New York City,NY,10001 +184307,Apple Airpods Headphones,1,150.0,2019-04-25 11:19:00,882 Highland St, Portland,ME,04101 +184308,Wired Headphones,1,11.99,2019-04-06 19:15:00,972 Meadow St, San Francisco,CA,94016 +184309,LG Dryer,1,600.0,2019-04-25 08:43:00,403 Johnson St, San Francisco,CA,94016 +184310,Lightning Charging Cable,1,14.95,2019-04-25 16:00:00,464 Madison St, New York City,NY,10001 +184311,Lightning Charging Cable,1,14.95,2019-04-04 09:27:00,403 5th St, Los Angeles,CA,90001 +184312,USB-C Charging Cable,1,11.95,2019-04-11 10:58:00,443 Sunset St, Los Angeles,CA,90001 +184313,USB-C Charging Cable,1,11.95,2019-04-16 14:04:00,183 Adams St, San Francisco,CA,94016 +184314,Wired Headphones,1,11.99,2019-04-01 20:11:00,999 Jackson St, San Francisco,CA,94016 +184315,Bose SoundSport Headphones,1,99.99,2019-04-17 11:45:00,261 West St, Dallas,TX,75001 +184316,Lightning Charging Cable,1,14.95,2019-04-23 18:50:00,837 Lakeview St, Los Angeles,CA,90001 +184317,Lightning Charging Cable,1,14.95,2019-04-25 22:08:00,364 Johnson St, San Francisco,CA,94016 +184318,34in Ultrawide Monitor,1,379.99,2019-04-02 12:45:00,517 6th St, San Francisco,CA,94016 +184319,34in Ultrawide Monitor,1,379.99,2019-04-24 05:25:00,73 Main St, Portland,OR,97035 +184320,Bose SoundSport Headphones,1,99.99,2019-04-27 22:34:00,803 Maple St, Boston,MA,02215 +184321,USB-C Charging Cable,1,11.95,2019-04-14 23:19:00,250 Dogwood St, San Francisco,CA,94016 +184322,AA Batteries (4-pack),1,3.84,2019-04-13 20:36:00,889 Forest St, Seattle,WA,98101 +184323,Lightning Charging Cable,1,14.95,2019-04-13 07:26:00,561 Jackson St, Austin,TX,73301 +184324,AAA Batteries (4-pack),1,2.99,2019-04-27 10:02:00,744 Forest St, Los Angeles,CA,90001 +184325,34in Ultrawide Monitor,1,379.99,2019-04-13 23:42:00,87 6th St, Los Angeles,CA,90001 +184326,Lightning Charging Cable,1,14.95,2019-04-20 10:15:00,827 North St, Los Angeles,CA,90001 +184327,AA Batteries (4-pack),2,3.84,2019-04-01 23:33:00,149 Pine St, Boston,MA,02215 +184328,USB-C Charging Cable,2,11.95,2019-04-29 21:32:00,838 Main St, Dallas,TX,75001 +184329,20in Monitor,1,109.99,2019-04-20 17:57:00,170 7th St, New York City,NY,10001 +184330,AAA Batteries (4-pack),1,2.99,2019-04-04 10:55:00,451 Hickory St, San Francisco,CA,94016 +184331,iPhone,1,700.0,2019-04-14 09:43:00,289 11th St, Atlanta,GA,30301 +184332,AA Batteries (4-pack),1,3.84,2019-04-16 13:51:00,206 Elm St, New York City,NY,10001 +184333,AAA Batteries (4-pack),2,2.99,2019-04-11 22:20:00,263 North St, Austin,TX,73301 +184334,20in Monitor,1,109.99,2019-04-08 08:34:00,964 Main St, Los Angeles,CA,90001 +184334,Bose SoundSport Headphones,1,99.99,2019-04-08 08:34:00,964 Main St, Los Angeles,CA,90001 +184335,AAA Batteries (4-pack),1,2.99,2019-04-22 10:00:00,697 Walnut St, San Francisco,CA,94016 +184336,USB-C Charging Cable,1,11.95,2019-04-17 15:34:00,306 Forest St, San Francisco,CA,94016 +184337,Apple Airpods Headphones,1,150.0,2019-04-22 07:10:00,107 North St, Los Angeles,CA,90001 +184338,Bose SoundSport Headphones,1,99.99,2019-04-27 07:09:00,314 Hickory St, San Francisco,CA,94016 +184339,iPhone,1,700.0,2019-04-22 17:03:00,185 Cherry St, Los Angeles,CA,90001 +184340,Apple Airpods Headphones,1,150.0,2019-04-11 15:02:00,824 Lincoln St, New York City,NY,10001 +184341,iPhone,1,700.0,2019-04-16 14:30:00,730 2nd St, Portland,OR,97035 +184342,USB-C Charging Cable,1,11.95,2019-04-18 21:02:00,478 Sunset St, Boston,MA,02215 +184343,34in Ultrawide Monitor,1,379.99,2019-04-24 21:24:00,894 7th St, Seattle,WA,98101 +184344,Lightning Charging Cable,1,14.95,2019-04-03 14:43:00,894 8th St, Los Angeles,CA,90001 +184345,USB-C Charging Cable,1,11.95,2019-04-22 18:05:00,557 12th St, San Francisco,CA,94016 +184346,USB-C Charging Cable,1,11.95,2019-04-13 20:23:00,243 Ridge St, Portland,OR,97035 +184347,Wired Headphones,1,11.99,2019-04-14 14:10:00,725 Dogwood St, Seattle,WA,98101 +184348,Bose SoundSport Headphones,1,99.99,2019-04-20 18:52:00,399 Church St, Atlanta,GA,30301 +184349,Macbook Pro Laptop,1,1700.0,2019-04-24 12:59:00,158 Jackson St, Boston,MA,02215 +184350,USB-C Charging Cable,1,11.95,2019-04-06 22:01:00,406 Wilson St, San Francisco,CA,94016 +184351,Lightning Charging Cable,1,14.95,2019-04-03 11:20:00,320 Lincoln St, San Francisco,CA,94016 +184352,Apple Airpods Headphones,1,150.0,2019-04-19 13:56:00,119 Elm St, Austin,TX,73301 +184353,Wired Headphones,2,11.99,2019-04-09 18:23:00,586 Elm St, New York City,NY,10001 +184354,Apple Airpods Headphones,1,150.0,2019-04-04 17:26:00,562 Wilson St, San Francisco,CA,94016 +184355,AA Batteries (4-pack),1,3.84,2019-04-26 18:20:00,635 8th St, Portland,OR,97035 +184356,Apple Airpods Headphones,1,150.0,2019-04-09 10:19:00,273 Cherry St, New York City,NY,10001 +184357,Apple Airpods Headphones,1,150.0,2019-04-06 14:21:00,350 Dogwood St, San Francisco,CA,94016 +184358,USB-C Charging Cable,1,11.95,2019-04-10 14:58:00,668 Hickory St, Portland,OR,97035 +184359,AA Batteries (4-pack),1,3.84,2019-04-27 14:06:00,867 North St, Dallas,TX,75001 +184360,Lightning Charging Cable,2,14.95,2019-04-19 10:31:00,346 Church St, New York City,NY,10001 +184361,AA Batteries (4-pack),1,3.84,2019-04-17 19:41:00,85 7th St, San Francisco,CA,94016 +184362,Google Phone,1,600.0,2019-04-30 14:59:00,105 Main St, San Francisco,CA,94016 +184363,Wired Headphones,1,11.99,2019-04-03 10:58:00,629 Cherry St, Los Angeles,CA,90001 +184364,Wired Headphones,1,11.99,2019-04-02 22:52:00,813 North St, Portland,OR,97035 +184365,AA Batteries (4-pack),1,3.84,2019-04-19 13:25:00,230 Lincoln St, Austin,TX,73301 +184366,AA Batteries (4-pack),1,3.84,2019-04-03 22:10:00,762 Pine St, Dallas,TX,75001 +184367,AAA Batteries (4-pack),1,2.99,2019-04-15 22:31:00,30 Willow St, Boston,MA,02215 +184368,Wired Headphones,1,11.99,2019-04-06 16:10:00,205 12th St, Dallas,TX,75001 +184369,20in Monitor,1,109.99,2019-04-15 13:26:00,971 Center St, Seattle,WA,98101 +184370,ThinkPad Laptop,1,999.99,2019-04-30 18:07:00,630 1st St, Seattle,WA,98101 +184371,Wired Headphones,1,11.99,2019-04-14 17:51:00,940 Ridge St, Boston,MA,02215 +184372,27in FHD Monitor,1,149.99,2019-04-29 12:27:00,695 12th St, New York City,NY,10001 +184373,Flatscreen TV,1,300.0,2019-04-09 16:23:00,429 Dogwood St, Los Angeles,CA,90001 +184374,27in FHD Monitor,1,149.99,2019-04-06 14:35:00,589 Church St, Los Angeles,CA,90001 +184375,USB-C Charging Cable,1,11.95,2019-04-17 21:00:00,816 Lincoln St, Seattle,WA,98101 +184376,AAA Batteries (4-pack),4,2.99,2019-04-14 21:14:00,986 Hill St, San Francisco,CA,94016 +184377,Lightning Charging Cable,1,14.95,2019-04-26 15:29:00,766 Wilson St, San Francisco,CA,94016 +184378,AAA Batteries (4-pack),5,2.99,2019-04-22 09:38:00,927 Maple St, Atlanta,GA,30301 +184379,Vareebadd Phone,1,400.0,2019-04-13 21:07:00,677 Maple St, Austin,TX,73301 +184380,Wired Headphones,1,11.99,2019-04-12 20:29:00,238 Walnut St, San Francisco,CA,94016 +184381,USB-C Charging Cable,1,11.95,2019-04-01 13:01:00,265 2nd St, Los Angeles,CA,90001 +184382,Macbook Pro Laptop,1,1700.0,2019-04-22 12:19:00,796 Sunset St, Boston,MA,02215 +184383,Apple Airpods Headphones,1,150.0,2019-04-11 22:56:00,337 River St, Los Angeles,CA,90001 +184384,Google Phone,1,600.0,2019-04-23 20:26:00,417 Willow St, Atlanta,GA,30301 +184385,Wired Headphones,2,11.99,2019-04-14 11:43:00,457 Park St, Portland,OR,97035 +184386,Macbook Pro Laptop,1,1700.0,2019-04-09 15:03:00,807 Willow St, Los Angeles,CA,90001 +184387,Apple Airpods Headphones,1,150.0,2019-04-03 10:50:00,815 Cedar St, San Francisco,CA,94016 +184388,27in 4K Gaming Monitor,1,389.99,2019-04-23 18:11:00,492 11th St, Los Angeles,CA,90001 +184389,AAA Batteries (4-pack),1,2.99,2019-04-30 13:03:00,147 Spruce St, Seattle,WA,98101 +184390,Lightning Charging Cable,1,14.95,2019-04-18 21:56:00,221 Lincoln St, Boston,MA,02215 +184391,AA Batteries (4-pack),1,3.84,2019-04-19 21:19:00,958 Lakeview St, Boston,MA,02215 +184392,AA Batteries (4-pack),1,3.84,2019-04-07 16:16:00,312 Washington St, San Francisco,CA,94016 +184393,AA Batteries (4-pack),1,3.84,2019-04-09 09:10:00,290 6th St, Boston,MA,02215 +184394,USB-C Charging Cable,1,11.95,2019-04-28 08:50:00,253 Jefferson St, Dallas,TX,75001 +184395,AAA Batteries (4-pack),1,2.99,2019-04-07 09:05:00,344 Hill St, Los Angeles,CA,90001 +184396,Apple Airpods Headphones,1,150.0,2019-04-20 14:18:00,195 Chestnut St, Los Angeles,CA,90001 +184397,Lightning Charging Cable,1,14.95,2019-04-08 11:09:00,382 Main St, Boston,MA,02215 +184398,Lightning Charging Cable,1,14.95,2019-04-26 19:38:00,36 Dogwood St, Seattle,WA,98101 +184399,AA Batteries (4-pack),2,3.84,2019-04-12 22:04:00,1 Forest St, New York City,NY,10001 +184400,20in Monitor,1,109.99,2019-04-07 17:20:00,746 Cherry St, Boston,MA,02215 +184401,27in 4K Gaming Monitor,1,389.99,2019-04-03 11:09:00,934 Walnut St, Portland,ME,04101 +184402,Flatscreen TV,1,300.0,2019-04-01 19:53:00,496 Lake St, Austin,TX,73301 +184403,Wired Headphones,1,11.99,2019-04-01 17:29:00,53 Jefferson St, Portland,OR,97035 +184404,Macbook Pro Laptop,1,1700.0,2019-04-07 20:13:00,842 West St, San Francisco,CA,94016 +184405,AAA Batteries (4-pack),1,2.99,2019-04-22 14:00:00,545 Cherry St, San Francisco,CA,94016 +184406,27in 4K Gaming Monitor,1,389.99,2019-04-14 14:49:00,787 11th St, Portland,OR,97035 +184407,Wired Headphones,1,11.99,2019-04-11 12:09:00,970 1st St, Los Angeles,CA,90001 +184408,Bose SoundSport Headphones,1,99.99,2019-05-01 00:04:00,705 Dogwood St, Boston,MA,02215 +184409,AA Batteries (4-pack),1,3.84,2019-04-06 10:44:00,592 Johnson St, Dallas,TX,75001 +184410,Lightning Charging Cable,1,14.95,2019-04-04 12:02:00,395 Park St, Seattle,WA,98101 +184411,iPhone,1,700.0,2019-04-14 13:27:00,487 Cherry St, Los Angeles,CA,90001 +184412,Flatscreen TV,1,300.0,2019-04-07 07:51:00,582 6th St, Atlanta,GA,30301 +184413,AA Batteries (4-pack),1,3.84,2019-04-25 08:29:00,246 Wilson St, New York City,NY,10001 +184414,USB-C Charging Cable,1,11.95,2019-04-11 08:32:00,404 South St, Portland,OR,97035 +184415,AAA Batteries (4-pack),1,2.99,2019-04-03 12:11:00,49 14th St, Los Angeles,CA,90001 +184416,Wired Headphones,1,11.99,2019-04-11 07:35:00,540 Walnut St, Dallas,TX,75001 +184417,AAA Batteries (4-pack),1,2.99,2019-04-18 14:01:00,387 Cherry St, Los Angeles,CA,90001 +184418,Flatscreen TV,1,300.0,2019-04-26 21:47:00,341 12th St, Los Angeles,CA,90001 +184419,AA Batteries (4-pack),2,3.84,2019-04-12 09:28:00,442 Johnson St, Los Angeles,CA,90001 +184420,Apple Airpods Headphones,1,150.0,2019-04-22 17:33:00,467 Wilson St, Los Angeles,CA,90001 +184421,27in 4K Gaming Monitor,1,389.99,2019-04-26 20:53:00,125 Pine St, San Francisco,CA,94016 +184422,Wired Headphones,1,11.99,2019-04-30 10:12:00,638 Spruce St, New York City,NY,10001 +184423,Lightning Charging Cable,1,14.95,2019-04-17 19:03:00,286 13th St, Portland,OR,97035 +184424,Apple Airpods Headphones,1,150.0,2019-04-22 05:14:00,594 14th St, Dallas,TX,75001 +184425,34in Ultrawide Monitor,1,379.99,2019-04-13 09:45:00,672 Madison St, Los Angeles,CA,90001 +184426,AA Batteries (4-pack),2,3.84,2019-04-18 16:22:00,314 Elm St, Portland,OR,97035 +184427,Lightning Charging Cable,1,14.95,2019-04-12 13:09:00,180 Sunset St, Dallas,TX,75001 +184428,34in Ultrawide Monitor,1,379.99,2019-04-04 13:05:00,544 South St, New York City,NY,10001 +184429,Apple Airpods Headphones,1,150.0,2019-04-06 10:45:00,658 South St, Los Angeles,CA,90001 +184430,27in 4K Gaming Monitor,1,389.99,2019-04-19 13:11:00,646 Maple St, Los Angeles,CA,90001 +184431,AA Batteries (4-pack),1,3.84,2019-04-08 09:36:00,702 Wilson St, Los Angeles,CA,90001 +184432,ThinkPad Laptop,1,999.99,2019-04-24 23:48:00,66 2nd St, Boston,MA,02215 +184433,USB-C Charging Cable,1,11.95,2019-04-28 08:21:00,594 Washington St, New York City,NY,10001 +184434,USB-C Charging Cable,1,11.95,2019-04-20 22:48:00,962 4th St, New York City,NY,10001 +184435,iPhone,1,700.0,2019-04-10 08:06:00,531 Park St, Portland,OR,97035 +184436,Flatscreen TV,1,300.0,2019-04-02 11:37:00,473 Forest St, Atlanta,GA,30301 +184437,AA Batteries (4-pack),1,3.84,2019-04-18 21:13:00,694 Hickory St, San Francisco,CA,94016 +184438,34in Ultrawide Monitor,1,379.99,2019-04-04 15:47:00,266 Sunset St, Portland,OR,97035 +184439,Apple Airpods Headphones,1,150.0,2019-04-17 20:21:00,905 Spruce St, Atlanta,GA,30301 +184440,34in Ultrawide Monitor,1,379.99,2019-04-04 23:53:00,490 11th St, New York City,NY,10001 +184441,Lightning Charging Cable,2,14.95,2019-04-18 12:39:00,358 Adams St, New York City,NY,10001 +184442,AAA Batteries (4-pack),1,2.99,2019-04-22 12:35:00,684 Lincoln St, Austin,TX,73301 +184443,Lightning Charging Cable,1,14.95,2019-04-10 20:53:00,604 Adams St, Seattle,WA,98101 +184444,Apple Airpods Headphones,1,150.0,2019-04-06 14:19:00,308 Willow St, Dallas,TX,75001 +184445,27in FHD Monitor,1,149.99,2019-04-21 10:31:00,909 12th St, Austin,TX,73301 +184446,USB-C Charging Cable,1,11.95,2019-04-28 11:10:00,660 Lakeview St, San Francisco,CA,94016 +184447,iPhone,1,700.0,2019-04-19 21:49:00,695 Cherry St, New York City,NY,10001 +184447,Lightning Charging Cable,1,14.95,2019-04-19 21:49:00,695 Cherry St, New York City,NY,10001 +184448,USB-C Charging Cable,1,11.95,2019-04-06 14:55:00,836 Pine St, Austin,TX,73301 +184449,Lightning Charging Cable,1,14.95,2019-04-29 17:24:00,117 12th St, Dallas,TX,75001 +184450,Apple Airpods Headphones,1,150.0,2019-04-12 15:36:00,626 River St, Los Angeles,CA,90001 +184451,ThinkPad Laptop,1,999.99,2019-04-18 08:13:00,169 13th St, Boston,MA,02215 +184452,Vareebadd Phone,1,400.0,2019-04-01 16:48:00,659 Chestnut St, New York City,NY,10001 +184453,iPhone,1,700.0,2019-04-29 09:15:00,669 Chestnut St, San Francisco,CA,94016 +184454,USB-C Charging Cable,1,11.95,2019-04-30 14:56:00,356 7th St, Portland,OR,97035 +184455,AA Batteries (4-pack),1,3.84,2019-04-29 00:09:00,503 Adams St, New York City,NY,10001 +184456,34in Ultrawide Monitor,1,379.99,2019-04-19 18:57:00,140 9th St, Austin,TX,73301 +184457,USB-C Charging Cable,1,11.95,2019-04-03 21:15:00,580 Main St, Seattle,WA,98101 +184458,Wired Headphones,1,11.99,2019-04-02 22:12:00,56 Sunset St, Atlanta,GA,30301 +184459,Lightning Charging Cable,2,14.95,2019-04-08 20:26:00,210 Willow St, Portland,OR,97035 +184460,iPhone,1,700.0,2019-04-08 18:38:00,315 5th St, Los Angeles,CA,90001 +184460,Wired Headphones,1,11.99,2019-04-08 18:38:00,315 5th St, Los Angeles,CA,90001 +184461,Wired Headphones,1,11.99,2019-04-08 21:36:00,212 Spruce St, Atlanta,GA,30301 +184462,34in Ultrawide Monitor,1,379.99,2019-04-04 19:21:00,568 River St, San Francisco,CA,94016 +184463,AA Batteries (4-pack),1,3.84,2019-04-30 22:03:00,979 Meadow St, Los Angeles,CA,90001 +184464,20in Monitor,1,109.99,2019-04-30 08:58:00,719 Park St, Boston,MA,02215 +184465,USB-C Charging Cable,1,11.95,2019-04-09 00:06:00,875 Cedar St, Atlanta,GA,30301 +184466,34in Ultrawide Monitor,1,379.99,2019-04-27 23:30:00,445 4th St, Atlanta,GA,30301 +184467,USB-C Charging Cable,1,11.95,2019-04-28 12:33:00,649 Adams St, New York City,NY,10001 +184468,Lightning Charging Cable,1,14.95,2019-04-28 22:26:00,68 Maple St, Austin,TX,73301 +184469,27in FHD Monitor,1,149.99,2019-04-29 12:34:00,875 1st St, San Francisco,CA,94016 +184470,AA Batteries (4-pack),1,3.84,2019-04-25 19:18:00,68 Hickory St, San Francisco,CA,94016 +184471,Google Phone,1,600.0,2019-04-05 10:39:00,437 Chestnut St, San Francisco,CA,94016 +184472,iPhone,1,700.0,2019-04-11 12:16:00,573 Adams St, Austin,TX,73301 +184472,Bose SoundSport Headphones,1,99.99,2019-04-11 12:16:00,573 Adams St, Austin,TX,73301 +184473,Lightning Charging Cable,1,14.95,2019-04-06 11:38:00,398 West St, Los Angeles,CA,90001 +184474,USB-C Charging Cable,1,11.95,2019-04-17 20:19:00,519 14th St, New York City,NY,10001 +184475,Wired Headphones,1,11.99,2019-04-27 12:55:00,676 South St, Boston,MA,02215 +184476,AAA Batteries (4-pack),1,2.99,2019-04-19 17:39:00,58 Willow St, Los Angeles,CA,90001 +184477,Wired Headphones,2,11.99,2019-04-15 12:48:00,566 12th St, San Francisco,CA,94016 +184478,Wired Headphones,1,11.99,2019-04-09 17:51:00,704 Forest St, Los Angeles,CA,90001 +184479,Lightning Charging Cable,1,14.95,2019-04-14 13:33:00,7 1st St, Boston,MA,02215 +184480,Lightning Charging Cable,1,14.95,2019-04-24 12:10:00,169 Dogwood St, Austin,TX,73301 +184481,AA Batteries (4-pack),2,3.84,2019-04-01 15:27:00,556 Maple St, San Francisco,CA,94016 +184482,USB-C Charging Cable,1,11.95,2019-04-01 14:35:00,40 Highland St, Boston,MA,02215 +184483,USB-C Charging Cable,1,11.95,2019-04-17 05:58:00,862 11th St, Austin,TX,73301 +184484,AAA Batteries (4-pack),1,2.99,2019-04-08 23:43:00,560 Meadow St, New York City,NY,10001 +184485,27in 4K Gaming Monitor,1,389.99,2019-04-14 12:35:00,566 Sunset St, San Francisco,CA,94016 +184486,Bose SoundSport Headphones,1,99.99,2019-04-25 19:24:00,608 Pine St, New York City,NY,10001 +184487,AA Batteries (4-pack),1,3.84,2019-04-24 18:21:00,431 Forest St, Atlanta,GA,30301 +184488,AAA Batteries (4-pack),4,2.99,2019-04-20 06:38:00,154 Cedar St, Los Angeles,CA,90001 +184489,Lightning Charging Cable,1,14.95,2019-04-17 11:01:00,559 10th St, Los Angeles,CA,90001 +184490,AAA Batteries (4-pack),2,2.99,2019-04-19 11:27:00,215 Lake St, Los Angeles,CA,90001 +184491,Apple Airpods Headphones,1,150.0,2019-04-12 20:36:00,609 Jefferson St, Austin,TX,73301 +184492,AA Batteries (4-pack),1,3.84,2019-04-17 22:17:00,941 Main St, Los Angeles,CA,90001 +184493,AA Batteries (4-pack),1,3.84,2019-04-16 13:07:00,872 10th St, New York City,NY,10001 +184494,Google Phone,1,600.0,2019-04-18 23:08:00,502 Sunset St, San Francisco,CA,94016 +184495,AAA Batteries (4-pack),1,2.99,2019-04-10 16:33:00,648 9th St, Los Angeles,CA,90001 +184496,Wired Headphones,1,11.99,2019-04-08 17:51:00,598 Center St, Los Angeles,CA,90001 +184497,AAA Batteries (4-pack),1,2.99,2019-04-13 17:55:00,741 12th St, Seattle,WA,98101 +184498,iPhone,1,700.0,2019-04-19 06:51:00,294 1st St, San Francisco,CA,94016 +184499,USB-C Charging Cable,2,11.95,2019-04-12 16:07:00,300 Jefferson St, Dallas,TX,75001 +184500,AAA Batteries (4-pack),1,2.99,2019-04-25 12:12:00,809 Cedar St, San Francisco,CA,94016 +184501,27in FHD Monitor,1,149.99,2019-04-27 13:02:00,967 11th St, Portland,ME,04101 +184502,27in FHD Monitor,1,149.99,2019-04-21 16:58:00,63 Forest St, Los Angeles,CA,90001 +184503,iPhone,1,700.0,2019-04-10 16:23:00,415 South St, Atlanta,GA,30301 +184503,Lightning Charging Cable,1,14.95,2019-04-10 16:23:00,415 South St, Atlanta,GA,30301 +184504,Google Phone,1,600.0,2019-04-11 14:26:00,808 4th St, Los Angeles,CA,90001 +184505,USB-C Charging Cable,2,11.95,2019-04-16 16:39:00,612 14th St, Boston,MA,02215 +184506,USB-C Charging Cable,1,11.95,2019-04-05 18:50:00,573 6th St, New York City,NY,10001 +184507,34in Ultrawide Monitor,1,379.99,2019-04-08 15:58:00,719 Walnut St, Boston,MA,02215 +184508,Google Phone,1,600.0,2019-04-26 11:15:00,723 Hickory St, Los Angeles,CA,90001 +184509,USB-C Charging Cable,1,11.95,2019-04-14 22:58:00,932 Chestnut St, New York City,NY,10001 +184510,Bose SoundSport Headphones,1,99.99,2019-04-22 00:06:00,843 Jefferson St, Los Angeles,CA,90001 +184511,Wired Headphones,2,11.99,2019-04-21 16:57:00,560 Washington St, San Francisco,CA,94016 +184512,Lightning Charging Cable,1,14.95,2019-04-12 10:42:00,654 Highland St, San Francisco,CA,94016 +184513,iPhone,1,700.0,2019-04-07 13:00:00,368 Walnut St, San Francisco,CA,94016 +184514,AA Batteries (4-pack),1,3.84,2019-04-29 12:51:00,829 12th St, Atlanta,GA,30301 +184515,USB-C Charging Cable,1,11.95,2019-04-23 17:18:00,846 Forest St, Boston,MA,02215 +184516,USB-C Charging Cable,1,11.95,2019-04-24 12:24:00,368 8th St, Boston,MA,02215 +184517,Lightning Charging Cable,1,14.95,2019-04-09 14:44:00,442 7th St, San Francisco,CA,94016 +184518,27in FHD Monitor,1,149.99,2019-04-06 14:58:00,72 Pine St, San Francisco,CA,94016 +184519,27in 4K Gaming Monitor,1,389.99,2019-04-30 08:44:00,834 Johnson St, Boston,MA,02215 +184520,Lightning Charging Cable,1,14.95,2019-04-04 23:22:00,475 Jefferson St, Los Angeles,CA,90001 +184521,27in 4K Gaming Monitor,1,389.99,2019-04-10 11:50:00,658 8th St, San Francisco,CA,94016 +184522,AAA Batteries (4-pack),1,2.99,2019-04-25 01:31:00,509 5th St, Dallas,TX,75001 +184523,USB-C Charging Cable,1,11.95,2019-04-10 13:12:00,478 Willow St, Seattle,WA,98101 +184524,Google Phone,1,600.0,2019-04-13 21:12:00,346 Willow St, Boston,MA,02215 +184525,Wired Headphones,1,11.99,2019-04-30 10:21:00,510 Meadow St, Boston,MA,02215 +184526,Apple Airpods Headphones,1,150.0,2019-04-04 16:10:00,425 Pine St, New York City,NY,10001 +184527,AAA Batteries (4-pack),1,2.99,2019-04-10 10:48:00,84 13th St, San Francisco,CA,94016 +184528,27in FHD Monitor,1,149.99,2019-04-30 12:35:00,232 Church St, Dallas,TX,75001 +184529,Bose SoundSport Headphones,1,99.99,2019-04-17 19:13:00,185 8th St, San Francisco,CA,94016 +184530,USB-C Charging Cable,1,11.95,2019-04-09 12:14:00,516 Highland St, Portland,OR,97035 +184531,Lightning Charging Cable,1,14.95,2019-04-08 18:48:00,834 5th St, Seattle,WA,98101 +184532,iPhone,1,700.0,2019-04-01 19:28:00,676 Adams St, Seattle,WA,98101 +184533,Bose SoundSport Headphones,1,99.99,2019-04-20 11:08:00,221 Church St, Seattle,WA,98101 +184534,Flatscreen TV,1,300.0,2019-04-18 16:13:00,770 Jackson St, Dallas,TX,75001 +184535,27in FHD Monitor,1,149.99,2019-04-20 14:13:00,234 Willow St, Los Angeles,CA,90001 +184536,LG Dryer,1,600.0,2019-04-28 13:09:00,60 10th St, New York City,NY,10001 +184537,27in 4K Gaming Monitor,1,389.99,2019-04-15 15:00:00,145 Cherry St, Portland,OR,97035 +184538,Wired Headphones,1,11.99,2019-04-18 16:34:00,145 Forest St, San Francisco,CA,94016 +184539,Lightning Charging Cable,1,14.95,2019-04-15 10:02:00,87 10th St, Austin,TX,73301 +184540,Lightning Charging Cable,2,14.95,2019-04-11 18:24:00,972 West St, Atlanta,GA,30301 +184541,Wired Headphones,1,11.99,2019-04-14 10:10:00,278 Church St, San Francisco,CA,94016 +184542,Lightning Charging Cable,1,14.95,2019-04-04 07:24:00,933 12th St, San Francisco,CA,94016 +184543,iPhone,1,700.0,2019-04-06 19:12:00,803 Chestnut St, San Francisco,CA,94016 +184544,USB-C Charging Cable,1,11.95,2019-04-25 19:27:00,626 South St, Los Angeles,CA,90001 +184545,27in 4K Gaming Monitor,1,389.99,2019-04-29 14:35:00,503 Forest St, Los Angeles,CA,90001 +184546,Flatscreen TV,1,300.0,2019-04-19 21:01:00,1 Washington St, Los Angeles,CA,90001 +184547,AAA Batteries (4-pack),1,2.99,2019-04-30 10:56:00,24 Walnut St, Dallas,TX,75001 +184548,Lightning Charging Cable,1,14.95,2019-04-01 08:02:00,664 Main St, San Francisco,CA,94016 +184549,34in Ultrawide Monitor,1,379.99,2019-04-21 19:56:00,89 Park St, Seattle,WA,98101 +184550,Lightning Charging Cable,1,14.95,2019-04-06 17:00:00,78 8th St, Dallas,TX,75001 +184551,Wired Headphones,1,11.99,2019-04-23 00:32:00,111 Ridge St, San Francisco,CA,94016 +184552,AAA Batteries (4-pack),1,2.99,2019-04-28 00:40:00,379 7th St, Boston,MA,02215 +184553,Lightning Charging Cable,1,14.95,2019-04-30 20:25:00,350 10th St, New York City,NY,10001 +184554,34in Ultrawide Monitor,1,379.99,2019-04-24 12:14:00,715 Dogwood St, Los Angeles,CA,90001 +184555,Bose SoundSport Headphones,1,99.99,2019-04-11 14:16:00,381 Lincoln St, Boston,MA,02215 +184556,Lightning Charging Cable,1,14.95,2019-04-27 14:49:00,251 6th St, Los Angeles,CA,90001 +184557,USB-C Charging Cable,1,11.95,2019-04-06 15:31:00,107 Meadow St, Los Angeles,CA,90001 +184558,Wired Headphones,1,11.99,2019-04-13 12:04:00,394 10th St, San Francisco,CA,94016 +184559,USB-C Charging Cable,1,11.95,2019-04-01 10:34:00,125 Park St, Los Angeles,CA,90001 +184560,Apple Airpods Headphones,1,150.0,2019-04-01 13:38:00,810 Elm St, Dallas,TX,75001 +184561,Apple Airpods Headphones,1,150.0,2019-04-13 17:18:00,635 Spruce St, Los Angeles,CA,90001 +184562,Flatscreen TV,1,300.0,2019-04-27 14:43:00,519 North St, New York City,NY,10001 +184563,AA Batteries (4-pack),1,3.84,2019-04-28 08:45:00,529 Meadow St, New York City,NY,10001 +184564,34in Ultrawide Monitor,1,379.99,2019-04-13 20:53:00,140 Lincoln St, Los Angeles,CA,90001 +184565,USB-C Charging Cable,1,11.95,2019-04-06 20:11:00,564 Hickory St, San Francisco,CA,94016 +184566,AAA Batteries (4-pack),1,2.99,2019-04-07 09:57:00,367 Adams St, San Francisco,CA,94016 +184567,Apple Airpods Headphones,1,150.0,2019-04-29 18:34:00,965 Pine St, Boston,MA,02215 +184568,iPhone,1,700.0,2019-04-07 09:26:00,103 Washington St, Los Angeles,CA,90001 +184569,AAA Batteries (4-pack),2,2.99,2019-04-23 19:23:00,554 Chestnut St, Boston,MA,02215 +184570,Apple Airpods Headphones,1,150.0,2019-04-07 19:17:00,968 6th St, Boston,MA,02215 +184571,Flatscreen TV,1,300.0,2019-04-22 06:11:00,405 14th St, New York City,NY,10001 +184572,AA Batteries (4-pack),1,3.84,2019-04-07 06:40:00,592 Johnson St, Atlanta,GA,30301 +184573,Bose SoundSport Headphones,1,99.99,2019-04-02 09:04:00,780 7th St, San Francisco,CA,94016 +184574,Apple Airpods Headphones,1,150.0,2019-04-25 22:18:00,920 Jackson St, San Francisco,CA,94016 +184575,Apple Airpods Headphones,1,150.0,2019-04-29 09:08:00,619 Jefferson St, Portland,OR,97035 +184576,AAA Batteries (4-pack),1,2.99,2019-04-21 06:51:00,413 Church St, Atlanta,GA,30301 +184577,iPhone,1,700.0,2019-04-15 00:03:00,803 Lincoln St, Portland,OR,97035 +184577,Lightning Charging Cable,1,14.95,2019-04-15 00:03:00,803 Lincoln St, Portland,OR,97035 +184578,AA Batteries (4-pack),1,3.84,2019-04-23 22:36:00,126 7th St, Austin,TX,73301 +184579,Lightning Charging Cable,1,14.95,2019-04-23 17:15:00,913 Main St, Boston,MA,02215 +184580,20in Monitor,1,109.99,2019-04-24 17:48:00,221 Ridge St, San Francisco,CA,94016 +184581,AA Batteries (4-pack),1,3.84,2019-04-24 20:37:00,369 2nd St, New York City,NY,10001 +184582,AA Batteries (4-pack),1,3.84,2019-04-21 22:35:00,724 North St, New York City,NY,10001 +184583,27in 4K Gaming Monitor,1,389.99,2019-04-02 17:31:00,311 Washington St, Seattle,WA,98101 +184584,27in FHD Monitor,1,149.99,2019-04-25 00:57:00,815 Walnut St, Boston,MA,02215 +184585,AAA Batteries (4-pack),2,2.99,2019-04-27 19:49:00,314 Sunset St, Boston,MA,02215 +184586,Apple Airpods Headphones,1,150.0,2019-04-16 20:10:00,95 Church St, San Francisco,CA,94016 +184587,AA Batteries (4-pack),1,3.84,2019-04-21 13:31:00,321 Pine St, San Francisco,CA,94016 +184588,27in 4K Gaming Monitor,1,389.99,2019-04-08 14:30:00,672 Forest St, Dallas,TX,75001 +184589,Lightning Charging Cable,1,14.95,2019-04-04 16:11:00,118 11th St, Boston,MA,02215 +184590,34in Ultrawide Monitor,1,379.99,2019-04-24 20:45:00,421 Elm St, Los Angeles,CA,90001 +184591,Bose SoundSport Headphones,1,99.99,2019-04-23 11:30:00,862 Highland St, Dallas,TX,75001 +184592,34in Ultrawide Monitor,1,379.99,2019-04-12 11:58:00,645 4th St, Portland,OR,97035 +184593,AAA Batteries (4-pack),1,2.99,2019-04-18 11:50:00,987 Hill St, Dallas,TX,75001 +184594,Apple Airpods Headphones,1,150.0,2019-04-17 12:05:00,624 11th St, Atlanta,GA,30301 +184595,Lightning Charging Cable,1,14.95,2019-04-28 12:41:00,479 7th St, San Francisco,CA,94016 +184596,Bose SoundSport Headphones,1,99.99,2019-04-02 08:48:00,790 Washington St, Dallas,TX,75001 +184597,AA Batteries (4-pack),1,3.84,2019-04-05 15:25:00,303 4th St, Seattle,WA,98101 +184598,Wired Headphones,3,11.99,2019-04-20 16:01:00,839 Johnson St, Seattle,WA,98101 +184599,27in FHD Monitor,1,149.99,2019-04-03 20:33:00,755 Highland St, New York City,NY,10001 +184600,AA Batteries (4-pack),1,3.84,2019-04-10 00:57:00,102 Jackson St, Dallas,TX,75001 +184601,LG Dryer,1,600.0,2019-04-30 14:29:00,25 Lakeview St, Boston,MA,02215 +184602,Macbook Pro Laptop,1,1700.0,2019-04-25 15:58:00,254 Park St, Austin,TX,73301 +184603,Apple Airpods Headphones,1,150.0,2019-04-22 13:10:00,506 Hill St, Los Angeles,CA,90001 +184604,AAA Batteries (4-pack),1,2.99,2019-04-29 17:02:00,882 Church St, Boston,MA,02215 +184605,Wired Headphones,1,11.99,2019-04-23 16:29:00,44 Church St, Atlanta,GA,30301 +184606,AA Batteries (4-pack),1,3.84,2019-04-04 21:00:00,598 Lincoln St, Atlanta,GA,30301 +184607,27in FHD Monitor,1,149.99,2019-04-28 16:52:00,119 1st St, New York City,NY,10001 +184608,Lightning Charging Cable,1,14.95,2019-04-18 22:17:00,803 Meadow St, Los Angeles,CA,90001 +184609,34in Ultrawide Monitor,1,379.99,2019-04-13 17:35:00,317 North St, Los Angeles,CA,90001 +184610,AA Batteries (4-pack),4,3.84,2019-04-13 01:44:00,473 Lake St, Portland,OR,97035 +184611,34in Ultrawide Monitor,1,379.99,2019-04-20 21:03:00,196 Highland St, Boston,MA,02215 +184612,Wired Headphones,1,11.99,2019-04-16 15:49:00,318 5th St, Los Angeles,CA,90001 +184613,AAA Batteries (4-pack),1,2.99,2019-04-21 12:28:00,358 Cedar St, Atlanta,GA,30301 +184614,Lightning Charging Cable,1,14.95,2019-04-10 23:23:00,94 River St, Los Angeles,CA,90001 +184615,34in Ultrawide Monitor,1,379.99,2019-04-27 21:14:00,573 Center St, San Francisco,CA,94016 +184616,Apple Airpods Headphones,1,150.0,2019-04-02 23:13:00,519 Jefferson St, Los Angeles,CA,90001 +184617,20in Monitor,1,109.99,2019-04-09 22:05:00,202 Church St, San Francisco,CA,94016 +184618,Google Phone,1,600.0,2019-04-14 09:27:00,26 Center St, Portland,OR,97035 +184618,USB-C Charging Cable,1,11.95,2019-04-14 09:27:00,26 Center St, Portland,OR,97035 +184619,USB-C Charging Cable,1,11.95,2019-04-17 11:59:00,797 7th St, Portland,ME,04101 +184620,iPhone,1,700.0,2019-04-20 19:31:00,369 Madison St, Atlanta,GA,30301 +184621,iPhone,1,700.0,2019-04-19 10:49:00,547 5th St, Austin,TX,73301 +184621,Lightning Charging Cable,2,14.95,2019-04-19 10:49:00,547 5th St, Austin,TX,73301 +184622,AAA Batteries (4-pack),1,2.99,2019-04-28 08:43:00,326 11th St, Dallas,TX,75001 +184623,AA Batteries (4-pack),1,3.84,2019-04-17 16:56:00,409 14th St, Los Angeles,CA,90001 +184624,Lightning Charging Cable,1,14.95,2019-04-25 00:27:00,54 Meadow St, San Francisco,CA,94016 +184625,AA Batteries (4-pack),1,3.84,2019-04-10 09:13:00,788 11th St, Seattle,WA,98101 +184626,Macbook Pro Laptop,1,1700.0,2019-04-04 15:34:00,126 Main St, Boston,MA,02215 +184627,27in 4K Gaming Monitor,1,389.99,2019-04-12 14:33:00,374 10th St, Los Angeles,CA,90001 +184628,USB-C Charging Cable,2,11.95,2019-04-29 11:13:00,843 Madison St, Dallas,TX,75001 +184629,AA Batteries (4-pack),2,3.84,2019-04-04 01:28:00,782 10th St, Dallas,TX,75001 +184630,Lightning Charging Cable,1,14.95,2019-04-14 08:30:00,97 Adams St, San Francisco,CA,94016 +184631,Apple Airpods Headphones,1,150.0,2019-04-02 21:14:00,758 12th St, San Francisco,CA,94016 +184632,34in Ultrawide Monitor,1,379.99,2019-04-28 22:10:00,329 Washington St, Boston,MA,02215 +184633,Wired Headphones,1,11.99,2019-04-18 20:06:00,143 Johnson St, New York City,NY,10001 +184634,Wired Headphones,1,11.99,2019-04-23 18:01:00,861 Hickory St, San Francisco,CA,94016 +184635,Vareebadd Phone,1,400.0,2019-04-13 08:57:00,826 Chestnut St, San Francisco,CA,94016 +184635,Bose SoundSport Headphones,1,99.99,2019-04-13 08:57:00,826 Chestnut St, San Francisco,CA,94016 +184636,AA Batteries (4-pack),1,3.84,2019-04-13 00:16:00,284 River St, San Francisco,CA,94016 +184637,AAA Batteries (4-pack),1,2.99,2019-04-07 16:56:00,565 Meadow St, Atlanta,GA,30301 +184638,Macbook Pro Laptop,1,1700.0,2019-04-07 17:14:00,374 Hickory St, Atlanta,GA,30301 +184639,AAA Batteries (4-pack),1,2.99,2019-04-01 17:15:00,848 Madison St, Atlanta,GA,30301 +184640,AAA Batteries (4-pack),1,2.99,2019-04-29 23:28:00,784 Dogwood St, San Francisco,CA,94016 +184641,Wired Headphones,1,11.99,2019-04-27 20:41:00,775 8th St, Boston,MA,02215 +184642,Apple Airpods Headphones,1,150.0,2019-04-16 13:59:00,466 2nd St, Seattle,WA,98101 +184643,Apple Airpods Headphones,1,150.0,2019-04-07 14:23:00,308 Sunset St, New York City,NY,10001 +184644,Bose SoundSport Headphones,1,99.99,2019-04-17 22:37:00,902 Johnson St, New York City,NY,10001 +184645,Macbook Pro Laptop,1,1700.0,2019-04-04 18:51:00,437 Jackson St, Atlanta,GA,30301 +184646,27in FHD Monitor,1,149.99,2019-04-19 14:01:00,267 Cedar St, New York City,NY,10001 +184647,Wired Headphones,1,11.99,2019-04-30 16:28:00,793 Cherry St, San Francisco,CA,94016 +184648,Apple Airpods Headphones,1,150.0,2019-04-17 20:02:00,101 Jefferson St, San Francisco,CA,94016 +184649,USB-C Charging Cable,1,11.95,2019-04-26 20:07:00,981 Adams St, Portland,ME,04101 +184650,AAA Batteries (4-pack),1,2.99,2019-04-10 23:30:00,47 1st St, New York City,NY,10001 +184651,Macbook Pro Laptop,1,1700.0,2019-04-25 09:21:00,429 Ridge St, Atlanta,GA,30301 +184652,27in 4K Gaming Monitor,1,389.99,2019-04-18 10:27:00,221 North St, Dallas,TX,75001 +184653,AAA Batteries (4-pack),1,2.99,2019-04-28 23:48:00,638 Wilson St, Los Angeles,CA,90001 +184654,Bose SoundSport Headphones,1,99.99,2019-04-26 15:13:00,652 4th St, San Francisco,CA,94016 +184655,Lightning Charging Cable,1,14.95,2019-04-07 22:12:00,963 6th St, Seattle,WA,98101 +184656,USB-C Charging Cable,1,11.95,2019-04-25 12:12:00,673 Elm St, New York City,NY,10001 +184657,AA Batteries (4-pack),1,3.84,2019-04-16 17:14:00,324 Lake St, Dallas,TX,75001 +184658,Lightning Charging Cable,1,14.95,2019-04-25 18:05:00,306 1st St, Seattle,WA,98101 +184659,Apple Airpods Headphones,1,150.0,2019-04-05 11:42:00,571 7th St, Seattle,WA,98101 +184660,AA Batteries (4-pack),1,3.84,2019-04-27 11:59:00,363 Jefferson St, San Francisco,CA,94016 +184661,ThinkPad Laptop,1,999.99,2019-04-08 12:04:00,688 Willow St, Seattle,WA,98101 +184662,Lightning Charging Cable,1,14.95,2019-04-10 12:44:00,121 1st St, San Francisco,CA,94016 +184663,Lightning Charging Cable,1,14.95,2019-04-23 10:05:00,101 11th St, New York City,NY,10001 +184664,Wired Headphones,1,11.99,2019-04-14 11:49:00,764 Dogwood St, New York City,NY,10001 +184665,AA Batteries (4-pack),1,3.84,2019-04-01 20:45:00,851 South St, New York City,NY,10001 +184666,27in FHD Monitor,1,149.99,2019-04-17 13:26:00,438 Sunset St, San Francisco,CA,94016 +184667,AA Batteries (4-pack),2,3.84,2019-04-20 11:30:00,524 Pine St, Los Angeles,CA,90001 +184668,AAA Batteries (4-pack),1,2.99,2019-04-04 14:41:00,862 Elm St, Dallas,TX,75001 +184669,Lightning Charging Cable,1,14.95,2019-04-20 23:36:00,577 Cherry St, San Francisco,CA,94016 +184670,Wired Headphones,1,11.99,2019-04-15 00:02:00,524 Park St, Boston,MA,02215 +184670,20in Monitor,1,109.99,2019-04-15 00:02:00,524 Park St, Boston,MA,02215 +184671,Macbook Pro Laptop,1,1700.0,2019-04-12 11:52:00,717 6th St, San Francisco,CA,94016 +184672,AAA Batteries (4-pack),1,2.99,2019-04-16 05:57:00,911 Jackson St, Seattle,WA,98101 +184673,27in 4K Gaming Monitor,1,389.99,2019-04-19 19:05:00,825 Chestnut St, Los Angeles,CA,90001 +184674,Google Phone,1,600.0,2019-04-28 14:09:00,228 Dogwood St, New York City,NY,10001 +184675,Apple Airpods Headphones,1,150.0,2019-04-28 15:00:00,382 4th St, Dallas,TX,75001 +184676,Lightning Charging Cable,1,14.95,2019-04-24 20:52:00,868 Center St, Boston,MA,02215 +184677,AA Batteries (4-pack),1,3.84,2019-04-11 20:56:00,947 Johnson St, Los Angeles,CA,90001 +184678,Wired Headphones,1,11.99,2019-04-06 07:14:00,619 Lincoln St, Seattle,WA,98101 +184679,Wired Headphones,1,11.99,2019-04-07 11:21:00,804 Willow St, Seattle,WA,98101 +184680,20in Monitor,1,109.99,2019-04-11 23:57:00,948 9th St, San Francisco,CA,94016 +184681,Bose SoundSport Headphones,1,99.99,2019-04-18 20:27:00,451 Washington St, Los Angeles,CA,90001 +184682,Lightning Charging Cable,1,14.95,2019-04-26 10:22:00,212 2nd St, Dallas,TX,75001 +184683,Lightning Charging Cable,1,14.95,2019-04-13 23:43:00,764 Spruce St, Portland,OR,97035 +184684,Apple Airpods Headphones,1,150.0,2019-04-18 13:56:00,237 Johnson St, Los Angeles,CA,90001 +184685,AA Batteries (4-pack),1,3.84,2019-04-18 10:28:00,99 Willow St, New York City,NY,10001 +184686,AA Batteries (4-pack),1,3.84,2019-04-28 17:53:00,681 Cherry St, Portland,OR,97035 +184687,AAA Batteries (4-pack),2,2.99,2019-04-25 12:15:00,363 Dogwood St, San Francisco,CA,94016 +184688,Bose SoundSport Headphones,1,99.99,2019-04-06 00:20:00,825 West St, Los Angeles,CA,90001 +184689,USB-C Charging Cable,1,11.95,2019-04-28 20:02:00,895 Maple St, San Francisco,CA,94016 +184690,AAA Batteries (4-pack),1,2.99,2019-04-08 07:27:00,300 13th St, Atlanta,GA,30301 +184691,27in 4K Gaming Monitor,1,389.99,2019-04-23 21:49:00,156 Forest St, Los Angeles,CA,90001 +184692,AA Batteries (4-pack),1,3.84,2019-04-14 19:00:00,256 11th St, Boston,MA,02215 +184693,Lightning Charging Cable,2,14.95,2019-04-03 17:55:00,266 Lincoln St, Boston,MA,02215 +184694,Apple Airpods Headphones,1,150.0,2019-04-22 09:27:00,425 Pine St, Dallas,TX,75001 +184695,AAA Batteries (4-pack),1,2.99,2019-04-21 07:51:00,608 Hill St, New York City,NY,10001 +184696,Wired Headphones,1,11.99,2019-04-18 00:11:00,68 Dogwood St, New York City,NY,10001 +184697,Bose SoundSport Headphones,1,99.99,2019-04-28 16:58:00,498 Pine St, New York City,NY,10001 +184698,USB-C Charging Cable,2,11.95,2019-04-13 21:26:00,297 4th St, Los Angeles,CA,90001 +184699,AA Batteries (4-pack),1,3.84,2019-04-07 23:25:00,168 Highland St, New York City,NY,10001 +184700,AA Batteries (4-pack),2,3.84,2019-04-04 19:43:00,363 South St, Los Angeles,CA,90001 +184701,AAA Batteries (4-pack),2,2.99,2019-04-01 12:42:00,763 Maple St, Dallas,TX,75001 +184702,Wired Headphones,1,11.99,2019-04-02 10:21:00,449 Jackson St, Seattle,WA,98101 +184703,AA Batteries (4-pack),1,3.84,2019-04-08 13:21:00,840 Elm St, Austin,TX,73301 +184704,27in 4K Gaming Monitor,1,389.99,2019-04-02 10:15:00,76 Washington St, Seattle,WA,98101 +184705,USB-C Charging Cable,1,11.95,2019-04-23 16:59:00,335 Chestnut St, Atlanta,GA,30301 +184706,Apple Airpods Headphones,1,150.0,2019-04-12 11:35:00,841 Jackson St, Boston,MA,02215 +184707,27in FHD Monitor,1,149.99,2019-04-24 18:25:00,887 Spruce St, New York City,NY,10001 +184708,AA Batteries (4-pack),1,3.84,2019-04-30 11:09:00,146 Dogwood St, Los Angeles,CA,90001 +184709,USB-C Charging Cable,1,11.95,2019-04-02 18:02:00,589 4th St, San Francisco,CA,94016 +184710,iPhone,1,700.0,2019-04-21 13:57:00,921 12th St, Dallas,TX,75001 +184710,Wired Headphones,3,11.99,2019-04-21 13:57:00,921 12th St, Dallas,TX,75001 +184711,27in 4K Gaming Monitor,1,389.99,2019-04-30 00:28:00,124 Willow St, San Francisco,CA,94016 +184712,Lightning Charging Cable,1,14.95,2019-04-20 20:35:00,293 Sunset St, San Francisco,CA,94016 +184712,AA Batteries (4-pack),1,3.84,2019-04-20 20:35:00,293 Sunset St, San Francisco,CA,94016 +184713,Lightning Charging Cable,1,14.95,2019-04-19 10:56:00,101 7th St, Los Angeles,CA,90001 +184714,Bose SoundSport Headphones,1,99.99,2019-04-25 12:50:00,46 9th St, San Francisco,CA,94016 +184715,Bose SoundSport Headphones,1,99.99,2019-04-09 19:38:00,270 Church St, Austin,TX,73301 +184716,Macbook Pro Laptop,1,1700.0,2019-04-20 10:33:00,192 2nd St, Atlanta,GA,30301 +184717,USB-C Charging Cable,1,11.95,2019-04-04 10:17:00,439 Forest St, Atlanta,GA,30301 +184718,AAA Batteries (4-pack),3,2.99,2019-04-01 12:30:00,452 12th St, Los Angeles,CA,90001 +184719,Apple Airpods Headphones,1,150.0,2019-04-15 23:04:00,857 5th St, San Francisco,CA,94016 +184720,Lightning Charging Cable,1,14.95,2019-04-18 12:13:00,122 Elm St, Los Angeles,CA,90001 +184721,Lightning Charging Cable,1,14.95,2019-04-28 19:56:00,520 Center St, San Francisco,CA,94016 +184722,AA Batteries (4-pack),1,3.84,2019-04-13 02:19:00,621 Main St, San Francisco,CA,94016 +184723,AAA Batteries (4-pack),1,2.99,2019-04-12 16:22:00,52 5th St, Atlanta,GA,30301 +184724,Lightning Charging Cable,1,14.95,2019-04-13 18:01:00,809 Wilson St, New York City,NY,10001 +184725,Bose SoundSport Headphones,1,99.99,2019-04-19 18:37:00,229 Church St, Seattle,WA,98101 +184726,Google Phone,1,600.0,2019-04-23 11:26:00,142 Lakeview St, Seattle,WA,98101 +184727,Bose SoundSport Headphones,1,99.99,2019-04-08 14:11:00,232 Spruce St, San Francisco,CA,94016 +184728,Wired Headphones,1,11.99,2019-04-03 09:11:00,227 Center St, San Francisco,CA,94016 +184729,Vareebadd Phone,1,400.0,2019-04-11 19:36:00,933 Elm St, Los Angeles,CA,90001 +184729,Wired Headphones,2,11.99,2019-04-11 19:36:00,933 Elm St, Los Angeles,CA,90001 +184730,AAA Batteries (4-pack),3,2.99,2019-04-20 21:34:00,781 Church St, Boston,MA,02215 +184731,AAA Batteries (4-pack),1,2.99,2019-04-14 08:40:00,828 10th St, Portland,OR,97035 +184732,Apple Airpods Headphones,1,150.0,2019-04-03 09:10:00,991 13th St, New York City,NY,10001 +184733,Google Phone,1,600.0,2019-04-11 10:08:00,421 Forest St, Los Angeles,CA,90001 +184733,Bose SoundSport Headphones,1,99.99,2019-04-11 10:08:00,421 Forest St, Los Angeles,CA,90001 +184734,Google Phone,1,600.0,2019-04-08 09:16:00,670 Sunset St, Atlanta,GA,30301 +184734,Bose SoundSport Headphones,1,99.99,2019-04-08 09:16:00,670 Sunset St, Atlanta,GA,30301 +184735,Vareebadd Phone,1,400.0,2019-04-13 11:45:00,747 Pine St, Los Angeles,CA,90001 +184736,Wired Headphones,2,11.99,2019-04-10 12:24:00,749 Lincoln St, Atlanta,GA,30301 +184737,AA Batteries (4-pack),2,3.84,2019-04-07 00:33:00,956 9th St, Dallas,TX,75001 +184738,AAA Batteries (4-pack),3,2.99,2019-04-01 09:01:00,622 River St, New York City,NY,10001 +184739,Wired Headphones,1,11.99,2019-04-21 14:55:00,924 Highland St, San Francisco,CA,94016 +184740,iPhone,1,700.0,2019-04-19 11:08:00,807 12th St, Atlanta,GA,30301 +184741,27in FHD Monitor,1,149.99,2019-04-09 12:00:00,85 Washington St, New York City,NY,10001 +184742,Bose SoundSport Headphones,1,99.99,2019-04-15 22:09:00,938 4th St, San Francisco,CA,94016 +184743,Apple Airpods Headphones,1,150.0,2019-04-24 15:49:00,80 Lake St, Los Angeles,CA,90001 +184744,Lightning Charging Cable,1,14.95,2019-04-26 09:23:00,343 Adams St, Los Angeles,CA,90001 +184745,27in 4K Gaming Monitor,1,389.99,2019-04-22 23:38:00,889 Madison St, San Francisco,CA,94016 +184746,Wired Headphones,1,11.99,2019-04-03 00:41:00,772 11th St, San Francisco,CA,94016 +184747,USB-C Charging Cable,1,11.95,2019-04-16 11:28:00,803 Lincoln St, Atlanta,GA,30301 +184748,Bose SoundSport Headphones,1,99.99,2019-04-19 10:18:00,464 4th St, Portland,OR,97035 +184749,AA Batteries (4-pack),1,3.84,2019-04-20 05:31:00,515 Lincoln St, Boston,MA,02215 +184750,Macbook Pro Laptop,1,1700.0,2019-04-07 18:39:00,650 Johnson St, Austin,TX,73301 +184751,USB-C Charging Cable,1,11.95,2019-04-02 17:01:00,124 Meadow St, New York City,NY,10001 +184752,AA Batteries (4-pack),1,3.84,2019-04-19 08:22:00,731 Dogwood St, Portland,ME,04101 +184753,Lightning Charging Cable,1,14.95,2019-04-12 20:35:00,132 Johnson St, Portland,ME,04101 +184754,USB-C Charging Cable,1,11.95,2019-04-11 09:56:00,775 Park St, Seattle,WA,98101 +184755,Lightning Charging Cable,1,14.95,2019-04-30 09:43:00,486 Lincoln St, San Francisco,CA,94016 +184756,20in Monitor,1,109.99,2019-04-17 13:41:00,502 4th St, Los Angeles,CA,90001 +184757,Bose SoundSport Headphones,1,99.99,2019-04-15 12:01:00,640 Elm St, San Francisco,CA,94016 +184758,iPhone,1,700.0,2019-04-13 20:02:00,306 7th St, New York City,NY,10001 +184758,Lightning Charging Cable,1,14.95,2019-04-13 20:02:00,306 7th St, New York City,NY,10001 +184759,Google Phone,1,600.0,2019-04-17 21:05:00,803 Church St, Boston,MA,02215 +184760,Lightning Charging Cable,1,14.95,2019-04-19 14:56:00,446 West St, Seattle,WA,98101 +184761,27in 4K Gaming Monitor,1,389.99,2019-04-16 10:43:00,561 6th St, Seattle,WA,98101 +184762,USB-C Charging Cable,1,11.95,2019-04-10 19:45:00,525 9th St, Los Angeles,CA,90001 +184763,USB-C Charging Cable,1,11.95,2019-04-05 12:30:00,873 Dogwood St, Boston,MA,02215 +184764,AA Batteries (4-pack),1,3.84,2019-04-21 13:16:00,900 Hill St, Atlanta,GA,30301 +184765,Google Phone,1,600.0,2019-04-15 21:32:00,995 Lake St, San Francisco,CA,94016 +184765,USB-C Charging Cable,1,11.95,2019-04-15 21:32:00,995 Lake St, San Francisco,CA,94016 +184766,iPhone,1,700.0,2019-04-16 14:36:00,349 12th St, Seattle,WA,98101 +184767,AA Batteries (4-pack),1,3.84,2019-04-18 20:04:00,188 1st St, Los Angeles,CA,90001 +184768,Wired Headphones,1,11.99,2019-04-26 20:07:00,979 Hill St, San Francisco,CA,94016 +184769,AA Batteries (4-pack),2,3.84,2019-04-18 17:45:00,945 7th St, Los Angeles,CA,90001 +184770,AA Batteries (4-pack),2,3.84,2019-04-18 16:01:00,623 Wilson St, Los Angeles,CA,90001 +184771,Lightning Charging Cable,1,14.95,2019-04-02 09:44:00,936 Sunset St, New York City,NY,10001 +184772,USB-C Charging Cable,1,11.95,2019-04-08 20:52:00,414 Lake St, Atlanta,GA,30301 +184773,34in Ultrawide Monitor,1,379.99,2019-04-26 11:40:00,364 Hickory St, San Francisco,CA,94016 +184774,AAA Batteries (4-pack),1,2.99,2019-04-09 17:49:00,520 Meadow St, Atlanta,GA,30301 +184775,Lightning Charging Cable,1,14.95,2019-04-01 07:57:00,327 Willow St, Seattle,WA,98101 +184776,Wired Headphones,1,11.99,2019-04-03 18:28:00,362 Washington St, Portland,OR,97035 +184777,20in Monitor,1,109.99,2019-04-02 19:16:00,957 Main St, New York City,NY,10001 +184778,AA Batteries (4-pack),2,3.84,2019-04-03 11:41:00,275 Hickory St, Seattle,WA,98101 +184779,USB-C Charging Cable,1,11.95,2019-04-05 20:04:00,979 Ridge St, New York City,NY,10001 +184780,Lightning Charging Cable,1,14.95,2019-04-04 16:06:00,283 River St, Los Angeles,CA,90001 +184781,AA Batteries (4-pack),1,3.84,2019-04-22 09:35:00,802 8th St, Portland,OR,97035 +184782,Bose SoundSport Headphones,1,99.99,2019-04-02 23:51:00,407 Meadow St, San Francisco,CA,94016 +184783,Bose SoundSport Headphones,1,99.99,2019-04-10 19:21:00,645 Lake St, San Francisco,CA,94016 +184784,Macbook Pro Laptop,1,1700.0,2019-04-14 10:43:00,150 Cherry St, Atlanta,GA,30301 +184785,Macbook Pro Laptop,1,1700.0,2019-04-30 19:58:00,552 Hickory St, San Francisco,CA,94016 +184786,Wired Headphones,1,11.99,2019-04-18 09:45:00,183 Maple St, San Francisco,CA,94016 +184787,Lightning Charging Cable,1,14.95,2019-04-12 17:10:00,725 Hill St, San Francisco,CA,94016 +184788,Wired Headphones,1,11.99,2019-04-16 09:05:00,988 Johnson St, Portland,OR,97035 +184789,Bose SoundSport Headphones,1,99.99,2019-04-26 21:23:00,393 1st St, Dallas,TX,75001 +184790,Macbook Pro Laptop,1,1700.0,2019-04-01 20:34:00,68 Jackson St, San Francisco,CA,94016 +184791,Flatscreen TV,1,300.0,2019-04-04 12:23:00,478 12th St, Boston,MA,02215 +184792,Flatscreen TV,1,300.0,2019-04-25 21:04:00,76 10th St, Portland,OR,97035 +184793,Lightning Charging Cable,1,14.95,2019-04-26 10:02:00,639 14th St, Los Angeles,CA,90001 +184794,Macbook Pro Laptop,1,1700.0,2019-04-13 18:04:00,321 Jefferson St, New York City,NY,10001 +184795,iPhone,1,700.0,2019-04-18 13:59:00,41 Jackson St, Austin,TX,73301 +184795,Wired Headphones,1,11.99,2019-04-18 13:59:00,41 Jackson St, Austin,TX,73301 +184796,Wired Headphones,1,11.99,2019-04-01 22:58:00,514 Wilson St, San Francisco,CA,94016 +184797,AA Batteries (4-pack),1,3.84,2019-04-18 11:22:00,949 Lincoln St, San Francisco,CA,94016 +184798,Wired Headphones,1,11.99,2019-04-26 19:14:00,718 Willow St, Dallas,TX,75001 +184799,Macbook Pro Laptop,1,1700.0,2019-04-17 17:24:00,527 Willow St, San Francisco,CA,94016 +184800,Apple Airpods Headphones,1,150.0,2019-04-21 09:48:00,184 Center St, New York City,NY,10001 +184801,AAA Batteries (4-pack),1,2.99,2019-04-27 09:44:00,69 Cherry St, Austin,TX,73301 +184802,AA Batteries (4-pack),1,3.84,2019-04-05 14:33:00,797 Meadow St, Los Angeles,CA,90001 +184803,iPhone,1,700.0,2019-04-11 23:32:00,380 14th St, San Francisco,CA,94016 +184804,Wired Headphones,2,11.99,2019-04-15 16:52:00,537 Lake St, Boston,MA,02215 +184805,AAA Batteries (4-pack),2,2.99,2019-04-30 07:17:00,994 North St, New York City,NY,10001 +184806,Lightning Charging Cable,1,14.95,2019-04-02 09:41:00,650 7th St, Seattle,WA,98101 +184807,34in Ultrawide Monitor,1,379.99,2019-04-21 21:56:00,924 5th St, New York City,NY,10001 +184808,Apple Airpods Headphones,1,150.0,2019-04-10 20:58:00,329 North St, Dallas,TX,75001 +184809,34in Ultrawide Monitor,1,379.99,2019-04-21 20:58:00,42 Madison St, Los Angeles,CA,90001 +184810,AAA Batteries (4-pack),2,2.99,2019-04-05 13:01:00,625 Highland St, San Francisco,CA,94016 +184811,Wired Headphones,1,11.99,2019-04-05 19:37:00,623 Adams St, San Francisco,CA,94016 +184812,Apple Airpods Headphones,1,150.0,2019-04-17 20:33:00,729 7th St, Seattle,WA,98101 +184813,USB-C Charging Cable,1,11.95,2019-04-26 06:09:00,216 Chestnut St, Atlanta,GA,30301 +184813,AA Batteries (4-pack),1,3.84,2019-04-26 06:09:00,216 Chestnut St, Atlanta,GA,30301 +184814,27in FHD Monitor,1,149.99,2019-04-06 20:56:00,739 6th St, San Francisco,CA,94016 +184815,ThinkPad Laptop,1,999.99,2019-04-18 13:15:00,141 Highland St, Boston,MA,02215 +184816,Wired Headphones,1,11.99,2019-04-23 21:59:00,420 Walnut St, San Francisco,CA,94016 +184817,Lightning Charging Cable,1,14.95,2019-04-30 13:01:00,283 Cherry St, Dallas,TX,75001 +184818,AA Batteries (4-pack),1,3.84,2019-04-29 12:56:00,555 Pine St, Atlanta,GA,30301 +184819,Macbook Pro Laptop,1,1700.0,2019-04-04 10:21:00,587 Lakeview St, San Francisco,CA,94016 +184820,Apple Airpods Headphones,1,150.0,2019-04-10 10:48:00,171 13th St, San Francisco,CA,94016 +184821,Apple Airpods Headphones,1,150.0,2019-04-27 12:14:00,575 Jefferson St, San Francisco,CA,94016 +184822,USB-C Charging Cable,1,11.95,2019-04-27 22:20:00,446 Spruce St, Boston,MA,02215 +184823,Apple Airpods Headphones,1,150.0,2019-04-09 07:55:00,147 Hickory St, Los Angeles,CA,90001 +184824,Lightning Charging Cable,1,14.95,2019-04-09 15:13:00,462 Meadow St, New York City,NY,10001 +184825,AAA Batteries (4-pack),1,2.99,2019-04-30 13:57:00,212 Lakeview St, Seattle,WA,98101 +184826,34in Ultrawide Monitor,1,379.99,2019-04-08 20:17:00,429 Cherry St, New York City,NY,10001 +184827,Apple Airpods Headphones,1,150.0,2019-04-02 11:44:00,97 Cedar St, New York City,NY,10001 +184828,Vareebadd Phone,1,400.0,2019-04-22 17:15:00,199 11th St, Atlanta,GA,30301 +184828,USB-C Charging Cable,1,11.95,2019-04-22 17:15:00,199 11th St, Atlanta,GA,30301 +184829,Flatscreen TV,1,300.0,2019-04-02 23:36:00,372 Washington St, Boston,MA,02215 +184830,27in FHD Monitor,1,149.99,2019-04-05 20:58:00,9 Walnut St, New York City,NY,10001 +184831,Lightning Charging Cable,2,14.95,2019-04-25 12:15:00,693 14th St, San Francisco,CA,94016 +184832,AA Batteries (4-pack),1,3.84,2019-04-18 12:14:00,838 Meadow St, San Francisco,CA,94016 +184832,Wired Headphones,1,11.99,2019-04-18 12:14:00,838 Meadow St, San Francisco,CA,94016 +184833,Wired Headphones,2,11.99,2019-04-23 22:51:00,103 Jefferson St, Boston,MA,02215 +184834,Lightning Charging Cable,1,14.95,2019-04-18 19:27:00,659 6th St, Austin,TX,73301 +184835,Lightning Charging Cable,1,14.95,2019-04-12 20:17:00,339 14th St, New York City,NY,10001 +184836,Lightning Charging Cable,1,14.95,2019-04-19 18:07:00,769 Chestnut St, Atlanta,GA,30301 +184837,AA Batteries (4-pack),1,3.84,2019-04-11 09:45:00,513 Center St, Atlanta,GA,30301 +184838,USB-C Charging Cable,1,11.95,2019-04-09 09:40:00,735 Hickory St, Los Angeles,CA,90001 +184839,Lightning Charging Cable,1,14.95,2019-04-06 11:58:00,995 Sunset St, New York City,NY,10001 +184840,AA Batteries (4-pack),1,3.84,2019-04-11 17:11:00,542 Jackson St, San Francisco,CA,94016 +184840,USB-C Charging Cable,1,11.95,2019-04-11 17:11:00,542 Jackson St, San Francisco,CA,94016 +184841,Lightning Charging Cable,1,14.95,2019-04-03 10:56:00,394 Cherry St, San Francisco,CA,94016 +184842,AA Batteries (4-pack),1,3.84,2019-04-16 05:52:00,267 7th St, Los Angeles,CA,90001 +184843,iPhone,1,700.0,2019-04-29 18:30:00,415 2nd St, Los Angeles,CA,90001 +184844,LG Washing Machine,1,600.0,2019-04-05 18:57:00,154 Jefferson St, Los Angeles,CA,90001 +184845,Apple Airpods Headphones,1,150.0,2019-04-04 13:44:00,326 4th St, Dallas,TX,75001 +184846,AA Batteries (4-pack),1,3.84,2019-04-14 13:21:00,588 South St, Portland,OR,97035 +184847,USB-C Charging Cable,1,11.95,2019-04-05 11:22:00,98 11th St, San Francisco,CA,94016 +184848,AAA Batteries (4-pack),1,2.99,2019-04-07 11:24:00,60 Main St, Los Angeles,CA,90001 +184849,AAA Batteries (4-pack),1,2.99,2019-04-21 13:00:00,87 10th St, San Francisco,CA,94016 +184850,AAA Batteries (4-pack),1,2.99,2019-04-03 15:01:00,577 Church St, New York City,NY,10001 +184851,USB-C Charging Cable,1,11.95,2019-04-20 01:11:00,301 West St, San Francisco,CA,94016 +184852,AAA Batteries (4-pack),1,2.99,2019-04-11 11:42:00,22 2nd St, Los Angeles,CA,90001 +184853,Vareebadd Phone,1,400.0,2019-04-17 10:07:00,509 6th St, Boston,MA,02215 +184853,Wired Headphones,1,11.99,2019-04-17 10:07:00,509 6th St, Boston,MA,02215 +184854,AA Batteries (4-pack),1,3.84,2019-04-06 15:36:00,930 7th St, San Francisco,CA,94016 +184855,AAA Batteries (4-pack),3,2.99,2019-04-03 11:31:00,19 Madison St, New York City,NY,10001 +184856,27in 4K Gaming Monitor,1,389.99,2019-04-28 11:15:00,163 Cherry St, Los Angeles,CA,90001 +184857,AAA Batteries (4-pack),2,2.99,2019-04-23 18:02:00,751 Pine St, Atlanta,GA,30301 +184858,iPhone,1,700.0,2019-04-09 22:38:00,747 2nd St, Atlanta,GA,30301 +184859,iPhone,1,700.0,2019-04-26 10:33:00,92 Jackson St, Boston,MA,02215 +184860,AA Batteries (4-pack),1,3.84,2019-04-27 13:15:00,789 Lincoln St, New York City,NY,10001 +184861,USB-C Charging Cable,1,11.95,2019-04-12 02:03:00,806 5th St, Austin,TX,73301 +184862,Apple Airpods Headphones,1,150.0,2019-04-26 15:32:00,791 6th St, Seattle,WA,98101 +184862,Lightning Charging Cable,1,14.95,2019-04-26 15:32:00,791 6th St, Seattle,WA,98101 +184863,27in FHD Monitor,1,149.99,2019-04-25 16:21:00,683 Highland St, Dallas,TX,75001 +184864,AA Batteries (4-pack),1,3.84,2019-04-22 20:35:00,401 West St, New York City,NY,10001 +184865,20in Monitor,1,109.99,2019-04-14 08:44:00,300 Jackson St, Seattle,WA,98101 +184866,Wired Headphones,1,11.99,2019-04-06 21:56:00,650 Madison St, Austin,TX,73301 +184867,Apple Airpods Headphones,1,150.0,2019-04-24 18:57:00,522 River St, Los Angeles,CA,90001 +184868,27in FHD Monitor,1,149.99,2019-04-26 04:13:00,72 Dogwood St, Los Angeles,CA,90001 +184869,Apple Airpods Headphones,1,150.0,2019-04-14 00:05:00,308 6th St, Seattle,WA,98101 +184870,Apple Airpods Headphones,1,150.0,2019-04-23 09:59:00,938 Cedar St, Boston,MA,02215 +184871,34in Ultrawide Monitor,1,379.99,2019-04-14 20:59:00,600 Chestnut St, Atlanta,GA,30301 +184872,USB-C Charging Cable,1,11.95,2019-04-14 09:17:00,552 Lakeview St, New York City,NY,10001 +184873,20in Monitor,1,109.99,2019-04-27 03:33:00,996 11th St, Austin,TX,73301 +184874,iPhone,1,700.0,2019-04-22 19:23:00,600 Main St, Austin,TX,73301 +184875,AAA Batteries (4-pack),1,2.99,2019-04-27 20:07:00,462 Dogwood St, Atlanta,GA,30301 +184876,USB-C Charging Cable,2,11.95,2019-04-20 15:47:00,817 1st St, New York City,NY,10001 +184877,Apple Airpods Headphones,1,150.0,2019-04-10 15:07:00,289 Hill St, Portland,ME,04101 +184878,Bose SoundSport Headphones,1,99.99,2019-04-12 12:20:00,594 Hickory St, San Francisco,CA,94016 +184879,Lightning Charging Cable,1,14.95,2019-04-05 21:23:00,141 Hickory St, Atlanta,GA,30301 +184880,Lightning Charging Cable,1,14.95,2019-04-08 10:23:00,748 West St, San Francisco,CA,94016 +184881,AAA Batteries (4-pack),1,2.99,2019-04-20 12:15:00,898 Willow St, San Francisco,CA,94016 +184882,iPhone,1,700.0,2019-04-01 17:32:00,183 Lakeview St, New York City,NY,10001 +184883,AAA Batteries (4-pack),3,2.99,2019-04-04 12:04:00,292 Sunset St, Dallas,TX,75001 +184884,Flatscreen TV,1,300.0,2019-04-18 17:07:00,732 Jackson St, Dallas,TX,75001 +184885,USB-C Charging Cable,1,11.95,2019-04-16 13:48:00,163 Highland St, New York City,NY,10001 +184886,Google Phone,1,600.0,2019-04-17 20:32:00,875 Hickory St, Los Angeles,CA,90001 +184887,USB-C Charging Cable,1,11.95,2019-04-21 11:25:00,337 Spruce St, San Francisco,CA,94016 +184888,Wired Headphones,1,11.99,2019-04-20 19:44:00,318 Wilson St, San Francisco,CA,94016 +184889,AAA Batteries (4-pack),1,2.99,2019-04-06 23:13:00,432 Hill St, Atlanta,GA,30301 +184890,iPhone,1,700.0,2019-04-13 12:13:00,543 5th St, San Francisco,CA,94016 +184891,Apple Airpods Headphones,1,150.0,2019-04-06 08:44:00,148 Jackson St, San Francisco,CA,94016 +184892,AA Batteries (4-pack),1,3.84,2019-04-09 17:00:00,40 Cedar St, Dallas,TX,75001 +184893,Wired Headphones,1,11.99,2019-04-04 15:43:00,348 13th St, Portland,ME,04101 +184894,Flatscreen TV,1,300.0,2019-04-14 14:04:00,964 14th St, Seattle,WA,98101 +184895,Lightning Charging Cable,1,14.95,2019-04-26 19:28:00,483 13th St, Seattle,WA,98101 +184896,LG Dryer,1,600.0,2019-04-12 06:12:00,549 Maple St, Austin,TX,73301 +184897,20in Monitor,1,109.99,2019-04-18 11:16:00,105 Lakeview St, San Francisco,CA,94016 +184898,27in FHD Monitor,1,149.99,2019-04-21 13:16:00,274 Chestnut St, Atlanta,GA,30301 +184899,34in Ultrawide Monitor,1,379.99,2019-04-08 22:40:00,480 West St, Atlanta,GA,30301 +184900,Macbook Pro Laptop,1,1700.0,2019-04-23 18:04:00,137 Main St, Austin,TX,73301 +184901,Flatscreen TV,1,300.0,2019-04-06 09:22:00,344 Highland St, Los Angeles,CA,90001 +184902,Lightning Charging Cable,1,14.95,2019-04-21 17:33:00,299 Dogwood St, Boston,MA,02215 +184903,27in 4K Gaming Monitor,1,389.99,2019-04-12 20:59:00,185 Adams St, San Francisco,CA,94016 +184904,27in 4K Gaming Monitor,1,389.99,2019-04-19 23:15:00,751 8th St, Portland,OR,97035 +184905,USB-C Charging Cable,1,11.95,2019-04-26 08:49:00,4 Lakeview St, San Francisco,CA,94016 +184906,Wired Headphones,1,11.99,2019-04-27 18:53:00,878 Pine St, Seattle,WA,98101 +184907,Lightning Charging Cable,1,14.95,2019-04-22 19:47:00,321 Dogwood St, Los Angeles,CA,90001 +184908,Flatscreen TV,1,300.0,2019-04-12 18:16:00,148 Hill St, Los Angeles,CA,90001 +184909,Lightning Charging Cable,1,14.95,2019-04-13 10:31:00,357 Walnut St, Los Angeles,CA,90001 +184910,27in 4K Gaming Monitor,1,389.99,2019-04-21 12:27:00,371 Jefferson St, Dallas,TX,75001 +184911,Apple Airpods Headphones,1,150.0,2019-04-03 16:51:00,40 1st St, Atlanta,GA,30301 +184912,Lightning Charging Cable,1,14.95,2019-04-14 02:49:00,43 River St, Austin,TX,73301 +184913,Bose SoundSport Headphones,1,99.99,2019-04-17 18:26:00,342 Cedar St, New York City,NY,10001 +184914,Apple Airpods Headphones,1,150.0,2019-04-22 18:58:00,819 Center St, Austin,TX,73301 +184915,Vareebadd Phone,1,400.0,2019-04-19 03:34:00,473 Lincoln St, Boston,MA,02215 +184916,Lightning Charging Cable,1,14.95,2019-04-21 08:40:00,678 Park St, New York City,NY,10001 +184917,27in FHD Monitor,1,149.99,2019-04-15 15:54:00,473 Highland St, Seattle,WA,98101 +184918,Apple Airpods Headphones,1,150.0,2019-04-09 11:16:00,681 13th St, San Francisco,CA,94016 +184919,Google Phone,1,600.0,2019-04-07 16:38:00,343 10th St, Boston,MA,02215 +184920,USB-C Charging Cable,1,11.95,2019-04-19 05:10:00,94 Hill St, Atlanta,GA,30301 +184921,LG Dryer,1,600.0,2019-04-12 21:50:00,284 Hill St, Los Angeles,CA,90001 +184922,Lightning Charging Cable,1,14.95,2019-04-22 17:05:00,35 Jefferson St, San Francisco,CA,94016 +184923,iPhone,1,700.0,2019-04-29 19:35:00,426 5th St, Atlanta,GA,30301 +184924,Flatscreen TV,1,300.0,2019-04-09 14:52:00,241 Church St, San Francisco,CA,94016 +184925,Lightning Charging Cable,1,14.95,2019-04-21 12:25:00,824 Pine St, San Francisco,CA,94016 +184926,Wired Headphones,1,11.99,2019-04-06 07:41:00,308 Church St, New York City,NY,10001 +184927,Google Phone,1,600.0,2019-04-17 19:35:00,673 Highland St, Seattle,WA,98101 +184928,Wired Headphones,1,11.99,2019-04-11 10:28:00,331 2nd St, Boston,MA,02215 +184929,USB-C Charging Cable,2,11.95,2019-04-04 18:39:00,544 Hill St, New York City,NY,10001 +184930,USB-C Charging Cable,1,11.95,2019-04-17 16:33:00,145 Chestnut St, Portland,OR,97035 +184931,Flatscreen TV,1,300.0,2019-04-05 02:42:00,911 Hill St, Portland,OR,97035 +184932,Apple Airpods Headphones,1,150.0,2019-04-29 09:20:00,965 River St, San Francisco,CA,94016 +184933,USB-C Charging Cable,1,11.95,2019-04-13 21:34:00,89 Hill St, Dallas,TX,75001 +184934,Flatscreen TV,1,300.0,2019-04-27 17:15:00,989 7th St, San Francisco,CA,94016 +184935,34in Ultrawide Monitor,1,379.99,2019-04-20 14:38:00,360 Highland St, Austin,TX,73301 +184936,Apple Airpods Headphones,1,150.0,2019-04-04 09:43:00,568 2nd St, Austin,TX,73301 +184937,Bose SoundSport Headphones,1,99.99,2019-04-29 13:40:00,220 Adams St, New York City,NY,10001 +184938,27in 4K Gaming Monitor,1,389.99,2019-04-16 19:05:00,594 Chestnut St, New York City,NY,10001 +184939,Google Phone,1,600.0,2019-04-24 00:24:00,476 2nd St, New York City,NY,10001 +184939,USB-C Charging Cable,1,11.95,2019-04-24 00:24:00,476 2nd St, New York City,NY,10001 +184940,27in FHD Monitor,1,149.99,2019-04-29 20:17:00,999 4th St, Portland,OR,97035 +184941,27in FHD Monitor,1,149.99,2019-04-21 15:54:00,41 14th St, Seattle,WA,98101 +184942,20in Monitor,1,109.99,2019-04-20 22:01:00,590 2nd St, San Francisco,CA,94016 +184943,AAA Batteries (4-pack),3,2.99,2019-04-08 21:52:00,437 Main St, Dallas,TX,75001 +184944,AAA Batteries (4-pack),1,2.99,2019-04-16 19:37:00,530 River St, Dallas,TX,75001 +184945,Google Phone,1,600.0,2019-04-24 05:41:00,57 Highland St, New York City,NY,10001 +184946,Wired Headphones,1,11.99,2019-04-04 11:42:00,373 Jefferson St, Boston,MA,02215 +184947,27in 4K Gaming Monitor,1,389.99,2019-04-29 09:47:00,553 West St, San Francisco,CA,94016 +184948,USB-C Charging Cable,1,11.95,2019-04-30 13:39:00,222 2nd St, Seattle,WA,98101 +184949,Google Phone,1,600.0,2019-04-13 06:28:00,312 10th St, San Francisco,CA,94016 +184950,27in FHD Monitor,1,149.99,2019-04-12 12:30:00,544 Madison St, Los Angeles,CA,90001 +184951,Lightning Charging Cable,2,14.95,2019-04-20 14:57:00,809 10th St, Los Angeles,CA,90001 +184952,34in Ultrawide Monitor,1,379.99,2019-04-17 09:13:00,747 Sunset St, San Francisco,CA,94016 +184953,Google Phone,1,600.0,2019-04-26 12:48:00,702 River St, Austin,TX,73301 +184954,Wired Headphones,1,11.99,2019-04-28 18:06:00,358 Highland St, Dallas,TX,75001 +184955,AA Batteries (4-pack),1,3.84,2019-04-17 22:35:00,191 9th St, Los Angeles,CA,90001 +184956,Bose SoundSport Headphones,1,99.99,2019-04-05 22:56:00,165 Walnut St, San Francisco,CA,94016 +184956,AAA Batteries (4-pack),1,2.99,2019-04-05 22:56:00,165 Walnut St, San Francisco,CA,94016 +184957,Apple Airpods Headphones,1,150.0,2019-04-15 12:03:00,475 11th St, San Francisco,CA,94016 +184958,AA Batteries (4-pack),1,3.84,2019-04-09 14:35:00,666 North St, Los Angeles,CA,90001 +184959,Wired Headphones,1,11.99,2019-04-18 08:31:00,666 Maple St, Los Angeles,CA,90001 +184960,Flatscreen TV,1,300.0,2019-04-09 17:58:00,151 Ridge St, Austin,TX,73301 +184961,27in 4K Gaming Monitor,1,389.99,2019-04-24 12:11:00,662 Highland St, Los Angeles,CA,90001 +184962,USB-C Charging Cable,1,11.95,2019-04-09 17:43:00,313 11th St, Boston,MA,02215 +184963,Lightning Charging Cable,1,14.95,2019-04-08 17:24:00,627 Johnson St, Atlanta,GA,30301 +184964,27in 4K Gaming Monitor,1,389.99,2019-04-12 12:52:00,67 Cedar St, New York City,NY,10001 +184965,Macbook Pro Laptop,1,1700.0,2019-04-30 01:30:00,757 6th St, Austin,TX,73301 +184966,Google Phone,1,600.0,2019-04-11 16:43:00,233 10th St, Portland,OR,97035 +184967,27in 4K Gaming Monitor,1,389.99,2019-04-01 15:34:00,969 4th St, Los Angeles,CA,90001 +184968,Wired Headphones,1,11.99,2019-04-02 10:55:00,333 Forest St, Atlanta,GA,30301 +184969,Apple Airpods Headphones,1,150.0,2019-04-14 16:24:00,705 Hickory St, San Francisco,CA,94016 +184970,Apple Airpods Headphones,1,150.0,2019-04-21 04:08:00,187 Spruce St, San Francisco,CA,94016 +184971,27in FHD Monitor,1,149.99,2019-04-09 17:09:00,751 Elm St, Boston,MA,02215 +184972,Apple Airpods Headphones,1,150.0,2019-04-10 19:56:00,714 Chestnut St, Atlanta,GA,30301 +184973,USB-C Charging Cable,1,11.95,2019-04-11 17:55:00,925 Elm St, San Francisco,CA,94016 +184974,AA Batteries (4-pack),1,3.84,2019-04-13 17:23:00,907 Lincoln St, New York City,NY,10001 +184975,Bose SoundSport Headphones,1,99.99,2019-04-09 12:32:00,355 Wilson St, San Francisco,CA,94016 +184976,Wired Headphones,1,11.99,2019-04-09 17:00:00,741 Chestnut St, Boston,MA,02215 +184977,AA Batteries (4-pack),1,3.84,2019-04-07 15:14:00,347 Center St, Portland,OR,97035 +184978,USB-C Charging Cable,1,11.95,2019-04-24 17:38:00,769 12th St, Los Angeles,CA,90001 +184979,Vareebadd Phone,1,400.0,2019-04-18 15:59:00,547 River St, Boston,MA,02215 +184979,USB-C Charging Cable,1,11.95,2019-04-18 15:59:00,547 River St, Boston,MA,02215 +184980,Apple Airpods Headphones,1,150.0,2019-04-04 10:49:00,231 Sunset St, Los Angeles,CA,90001 +184981,iPhone,1,700.0,2019-04-29 11:56:00,662 Washington St, New York City,NY,10001 +184982,iPhone,1,700.0,2019-04-27 10:01:00,517 1st St, Boston,MA,02215 +184983,AA Batteries (4-pack),1,3.84,2019-04-19 19:36:00,940 Walnut St, San Francisco,CA,94016 +184984,Google Phone,1,600.0,2019-04-05 03:44:00,115 Highland St, San Francisco,CA,94016 +184985,Lightning Charging Cable,1,14.95,2019-04-26 20:48:00,706 Lincoln St, New York City,NY,10001 +184986,Apple Airpods Headphones,1,150.0,2019-04-09 13:39:00,594 Spruce St, San Francisco,CA,94016 +184987,Lightning Charging Cable,1,14.95,2019-04-03 16:10:00,623 2nd St, New York City,NY,10001 +184988,Lightning Charging Cable,1,14.95,2019-04-26 09:51:00,120 9th St, San Francisco,CA,94016 +184989,Apple Airpods Headphones,1,150.0,2019-04-26 11:57:00,819 5th St, Atlanta,GA,30301 +184990,iPhone,1,700.0,2019-04-05 21:01:00,136 7th St, Los Angeles,CA,90001 +184991,Flatscreen TV,1,300.0,2019-04-17 08:07:00,157 Hickory St, Los Angeles,CA,90001 +184992,AA Batteries (4-pack),1,3.84,2019-04-10 23:32:00,654 Park St, San Francisco,CA,94016 +184993,34in Ultrawide Monitor,1,379.99,2019-04-05 23:48:00,783 Highland St, San Francisco,CA,94016 +184994,20in Monitor,1,109.99,2019-04-23 14:07:00,444 Maple St, Atlanta,GA,30301 +184995,Bose SoundSport Headphones,1,99.99,2019-04-05 14:55:00,291 Madison St, San Francisco,CA,94016 +184996,20in Monitor,1,109.99,2019-04-29 13:26:00,516 8th St, San Francisco,CA,94016 +184997,Wired Headphones,1,11.99,2019-04-08 17:45:00,81 North St, San Francisco,CA,94016 +184998,AA Batteries (4-pack),2,3.84,2019-04-23 15:27:00,316 Adams St, Los Angeles,CA,90001 +184999,Apple Airpods Headphones,1,150.0,2019-04-26 23:08:00,200 Ridge St, Los Angeles,CA,90001 +185000,Lightning Charging Cable,1,14.95,2019-04-03 12:03:00,192 Hill St, Austin,TX,73301 +185001,USB-C Charging Cable,1,11.95,2019-04-06 10:28:00,563 Meadow St, Boston,MA,02215 +185002,Vareebadd Phone,1,400.0,2019-04-04 10:17:00,78 11th St, New York City,NY,10001 +185003,ThinkPad Laptop,1,999.99,2019-04-06 20:12:00,195 Hickory St, Portland,OR,97035 +185003,USB-C Charging Cable,1,11.95,2019-04-06 20:12:00,195 Hickory St, Portland,OR,97035 +185004,AA Batteries (4-pack),1,3.84,2019-04-02 10:17:00,103 13th St, Los Angeles,CA,90001 +185005,Lightning Charging Cable,1,14.95,2019-04-23 12:35:00,531 14th St, Dallas,TX,75001 +185006,Lightning Charging Cable,1,14.95,2019-04-30 19:51:00,704 Maple St, Los Angeles,CA,90001 +185007,AA Batteries (4-pack),1,3.84,2019-04-02 22:03:00,75 Pine St, San Francisco,CA,94016 +185008,20in Monitor,1,109.99,2019-04-13 08:52:00,158 1st St, Atlanta,GA,30301 +185009,AA Batteries (4-pack),1,3.84,2019-04-19 13:09:00,716 5th St, Los Angeles,CA,90001 +185010,Apple Airpods Headphones,1,150.0,2019-04-28 20:11:00,538 Ridge St, San Francisco,CA,94016 +185011,AA Batteries (4-pack),1,3.84,2019-04-23 22:47:00,288 Highland St, Austin,TX,73301 +185012,AAA Batteries (4-pack),2,2.99,2019-04-07 16:41:00,164 6th St, Boston,MA,02215 +185013,27in 4K Gaming Monitor,1,389.99,2019-04-29 10:10:00,546 1st St, Seattle,WA,98101 +185014,USB-C Charging Cable,1,11.95,2019-04-01 09:22:00,401 South St, Boston,MA,02215 +185015,USB-C Charging Cable,1,11.95,2019-04-12 20:12:00,396 4th St, New York City,NY,10001 +185016,LG Dryer,1,600.0,2019-04-22 13:20:00,801 Hickory St, San Francisco,CA,94016 +185017,27in FHD Monitor,1,149.99,2019-04-29 10:54:00,882 Park St, Los Angeles,CA,90001 +185018,34in Ultrawide Monitor,1,379.99,2019-04-11 00:07:00,853 Pine St, Seattle,WA,98101 +185019,Lightning Charging Cable,1,14.95,2019-04-19 11:15:00,677 Madison St, Boston,MA,02215 +185020,Macbook Pro Laptop,1,1700.0,2019-04-09 18:03:00,208 Jefferson St, San Francisco,CA,94016 +185021,Wired Headphones,1,11.99,2019-04-10 19:15:00,466 Spruce St, Boston,MA,02215 +185022,Bose SoundSport Headphones,1,99.99,2019-04-10 16:59:00,739 Jackson St, San Francisco,CA,94016 +185023,USB-C Charging Cable,1,11.95,2019-04-04 10:32:00,319 Wilson St, San Francisco,CA,94016 +185024,Lightning Charging Cable,1,14.95,2019-04-30 00:38:00,452 Jefferson St, San Francisco,CA,94016 +185025,ThinkPad Laptop,1,999.99,2019-04-15 12:51:00,24 2nd St, Atlanta,GA,30301 +185026,27in FHD Monitor,1,149.99,2019-04-03 15:13:00,845 Ridge St, Boston,MA,02215 +185027,Macbook Pro Laptop,1,1700.0,2019-04-25 19:20:00,141 Washington St, Los Angeles,CA,90001 +185028,Lightning Charging Cable,1,14.95,2019-04-07 13:49:00,77 4th St, Boston,MA,02215 +185029,LG Dryer,1,600.0,2019-04-23 14:02:00,487 Lake St, San Francisco,CA,94016 +185030,Lightning Charging Cable,1,14.95,2019-04-01 18:05:00,80 Center St, Boston,MA,02215 +185031,iPhone,1,700.0,2019-04-01 17:14:00,352 8th St, Los Angeles,CA,90001 +185032,Lightning Charging Cable,1,14.95,2019-04-02 19:16:00,958 Cedar St, New York City,NY,10001 +185033,AA Batteries (4-pack),4,3.84,2019-04-23 18:12:00,63 Adams St, New York City,NY,10001 +185034,AAA Batteries (4-pack),3,2.99,2019-04-20 14:10:00,124 Jackson St, Los Angeles,CA,90001 +185035,AAA Batteries (4-pack),1,2.99,2019-04-27 10:18:00,647 West St, Seattle,WA,98101 +185036,Wired Headphones,1,11.99,2019-04-12 09:14:00,423 Hill St, Los Angeles,CA,90001 +185037,AAA Batteries (4-pack),2,2.99,2019-04-20 14:01:00,158 Willow St, Dallas,TX,75001 +185038,AAA Batteries (4-pack),1,2.99,2019-04-25 08:10:00,299 Forest St, Boston,MA,02215 +185039,AAA Batteries (4-pack),2,2.99,2019-04-27 20:23:00,509 7th St, Los Angeles,CA,90001 +185040,Bose SoundSport Headphones,1,99.99,2019-04-11 17:48:00,390 Johnson St, New York City,NY,10001 +185041,Apple Airpods Headphones,1,150.0,2019-04-01 10:18:00,13 14th St, New York City,NY,10001 +185042,27in FHD Monitor,1,149.99,2019-04-26 17:41:00,965 Cedar St, Boston,MA,02215 +185043,Apple Airpods Headphones,1,150.0,2019-04-27 22:00:00,866 Pine St, Dallas,TX,75001 +185044,Apple Airpods Headphones,1,150.0,2019-04-05 22:16:00,759 Johnson St, San Francisco,CA,94016 +185045,Flatscreen TV,1,300.0,2019-04-16 07:52:00,916 Lake St, Dallas,TX,75001 +185046,27in FHD Monitor,1,149.99,2019-04-18 11:47:00,61 Jackson St, San Francisco,CA,94016 +185047,Bose SoundSport Headphones,1,99.99,2019-04-30 10:40:00,864 10th St, Los Angeles,CA,90001 +185048,Macbook Pro Laptop,1,1700.0,2019-04-22 12:21:00,53 9th St, San Francisco,CA,94016 +185049,AA Batteries (4-pack),2,3.84,2019-04-24 20:10:00,601 River St, San Francisco,CA,94016 +185050,ThinkPad Laptop,1,999.99,2019-04-12 10:00:00,994 River St, Dallas,TX,75001 +185051,Apple Airpods Headphones,1,150.0,2019-04-27 16:24:00,64 Hickory St, Dallas,TX,75001 +185052,Google Phone,1,600.0,2019-04-24 21:51:00,33 Lincoln St, Seattle,WA,98101 +185052,USB-C Charging Cable,1,11.95,2019-04-24 21:51:00,33 Lincoln St, Seattle,WA,98101 +185052,Wired Headphones,1,11.99,2019-04-24 21:51:00,33 Lincoln St, Seattle,WA,98101 +185053,Lightning Charging Cable,1,14.95,2019-04-30 17:27:00,167 Highland St, Boston,MA,02215 +185054,Flatscreen TV,1,300.0,2019-04-08 20:59:00,671 7th St, New York City,NY,10001 +185055,Lightning Charging Cable,1,14.95,2019-04-20 16:29:00,194 9th St, New York City,NY,10001 +185056,Bose SoundSport Headphones,1,99.99,2019-04-19 12:22:00,673 13th St, Portland,ME,04101 +185057,34in Ultrawide Monitor,1,379.99,2019-04-04 10:28:00,474 Lincoln St, New York City,NY,10001 +185058,AAA Batteries (4-pack),1,2.99,2019-04-04 19:27:00,346 Lake St, Dallas,TX,75001 +185059,Bose SoundSport Headphones,1,99.99,2019-04-11 22:07:00,438 River St, San Francisco,CA,94016 +185060,iPhone,1,700.0,2019-04-16 19:16:00,180 8th St, Portland,OR,97035 +185061,USB-C Charging Cable,1,11.95,2019-04-09 10:28:00,835 River St, Austin,TX,73301 +185062,Bose SoundSport Headphones,1,99.99,2019-04-23 09:52:00,545 Hill St, New York City,NY,10001 +185063,iPhone,1,700.0,2019-04-02 15:17:00,529 Jefferson St, San Francisco,CA,94016 +185064,AAA Batteries (4-pack),1,2.99,2019-04-23 15:08:00,848 Wilson St, New York City,NY,10001 +185065,Flatscreen TV,1,300.0,2019-04-21 20:23:00,590 Meadow St, Los Angeles,CA,90001 +185066,USB-C Charging Cable,1,11.95,2019-04-09 08:38:00,211 Forest St, New York City,NY,10001 +185066,Apple Airpods Headphones,1,150.0,2019-04-09 08:38:00,211 Forest St, New York City,NY,10001 +185067,USB-C Charging Cable,2,11.95,2019-04-21 20:42:00,152 Adams St, Seattle,WA,98101 +185068,ThinkPad Laptop,1,999.99,2019-04-09 20:04:00,784 Wilson St, Portland,OR,97035 +185069,27in 4K Gaming Monitor,1,389.99,2019-04-22 05:58:00,233 Chestnut St, Los Angeles,CA,90001 +185070,Bose SoundSport Headphones,1,99.99,2019-04-06 00:07:00,970 Adams St, Austin,TX,73301 +185071,Wired Headphones,1,11.99,2019-04-04 10:50:00,643 9th St, Atlanta,GA,30301 +185072,Bose SoundSport Headphones,1,99.99,2019-04-24 23:39:00,977 Main St, Boston,MA,02215 +185073,Macbook Pro Laptop,1,1700.0,2019-04-14 12:01:00,736 1st St, Portland,OR,97035 +185074,Lightning Charging Cable,1,14.95,2019-04-20 19:13:00,510 Pine St, San Francisco,CA,94016 +185075,Apple Airpods Headphones,1,150.0,2019-04-14 19:43:00,53 Center St, Atlanta,GA,30301 +185076,Google Phone,1,600.0,2019-04-13 11:00:00,922 10th St, San Francisco,CA,94016 +185077,AAA Batteries (4-pack),3,2.99,2019-04-13 06:49:00,971 Maple St, Atlanta,GA,30301 +185078,AAA Batteries (4-pack),1,2.99,2019-04-07 16:05:00,476 5th St, Atlanta,GA,30301 +185079,Bose SoundSport Headphones,1,99.99,2019-04-09 13:57:00,585 8th St, Portland,OR,97035 +185080,Lightning Charging Cable,1,14.95,2019-04-08 08:48:00,195 Sunset St, New York City,NY,10001 +185081,Google Phone,1,600.0,2019-04-11 08:34:00,132 Center St, San Francisco,CA,94016 +185082,USB-C Charging Cable,1,11.95,2019-04-19 18:12:00,990 4th St, Seattle,WA,98101 +185083,USB-C Charging Cable,1,11.95,2019-04-22 23:03:00,936 8th St, Los Angeles,CA,90001 +185084,Apple Airpods Headphones,1,150.0,2019-04-05 17:01:00,246 4th St, Dallas,TX,75001 +185085,Lightning Charging Cable,1,14.95,2019-04-21 10:06:00,189 Madison St, San Francisco,CA,94016 +185086,Wired Headphones,1,11.99,2019-04-26 10:14:00,172 Jefferson St, Austin,TX,73301 +185087,AA Batteries (4-pack),1,3.84,2019-04-12 22:02:00,165 Spruce St, San Francisco,CA,94016 +185088,Wired Headphones,1,11.99,2019-04-30 06:31:00,666 Wilson St, Los Angeles,CA,90001 +185089,AAA Batteries (4-pack),1,2.99,2019-04-18 20:27:00,553 Main St, Los Angeles,CA,90001 +185090,Macbook Pro Laptop,1,1700.0,2019-04-15 09:21:00,255 Sunset St, Seattle,WA,98101 +185091,Wired Headphones,1,11.99,2019-04-09 20:44:00,274 13th St, Atlanta,GA,30301 +185092,AA Batteries (4-pack),1,3.84,2019-04-27 10:26:00,59 North St, New York City,NY,10001 +185093,Bose SoundSport Headphones,1,99.99,2019-04-23 18:07:00,343 Main St, New York City,NY,10001 +185094,AA Batteries (4-pack),1,3.84,2019-04-05 21:42:00,980 South St, New York City,NY,10001 +185095,Lightning Charging Cable,1,14.95,2019-04-28 22:21:00,933 5th St, New York City,NY,10001 +185096,Apple Airpods Headphones,1,150.0,2019-04-13 16:27:00,426 Willow St, New York City,NY,10001 +185097,34in Ultrawide Monitor,1,379.99,2019-04-19 20:20:00,38 Pine St, New York City,NY,10001 +185098,AA Batteries (4-pack),1,3.84,2019-04-10 11:02:00,825 Madison St, Portland,ME,04101 +185099,Wired Headphones,1,11.99,2019-04-21 18:14:00,858 5th St, New York City,NY,10001 +185100,iPhone,1,700.0,2019-04-30 13:16:00,533 Washington St, San Francisco,CA,94016 +185101,Bose SoundSport Headphones,1,99.99,2019-04-14 05:33:00,571 11th St, New York City,NY,10001 +185102,AAA Batteries (4-pack),3,2.99,2019-04-05 06:37:00,283 Chestnut St, San Francisco,CA,94016 +185103,USB-C Charging Cable,1,11.95,2019-04-01 05:18:00,610 Washington St, San Francisco,CA,94016 +185104,Lightning Charging Cable,1,14.95,2019-04-03 10:19:00,463 Sunset St, San Francisco,CA,94016 +185105,27in FHD Monitor,1,149.99,2019-04-30 00:26:00,941 Washington St, Atlanta,GA,30301 +185106,AAA Batteries (4-pack),1,2.99,2019-04-13 08:40:00,864 Willow St, New York City,NY,10001 +185107,AAA Batteries (4-pack),1,2.99,2019-04-27 15:59:00,595 Jackson St, Los Angeles,CA,90001 +185108,27in 4K Gaming Monitor,1,389.99,2019-04-05 13:28:00,49 Johnson St, Boston,MA,02215 +185109,USB-C Charging Cable,1,11.95,2019-04-03 23:58:00,199 2nd St, San Francisco,CA,94016 +185110,USB-C Charging Cable,1,11.95,2019-04-09 11:52:00,534 14th St, Boston,MA,02215 +185111,Vareebadd Phone,1,400.0,2019-04-25 20:51:00,179 Elm St, San Francisco,CA,94016 +185111,USB-C Charging Cable,1,11.95,2019-04-25 20:51:00,179 Elm St, San Francisco,CA,94016 +185112,Apple Airpods Headphones,1,150.0,2019-04-05 11:25:00,92 Center St, Los Angeles,CA,90001 +185113,AAA Batteries (4-pack),2,2.99,2019-04-28 07:52:00,608 11th St, Austin,TX,73301 +185114,34in Ultrawide Monitor,1,379.99,2019-04-08 12:06:00,992 Willow St, Seattle,WA,98101 +185115,Lightning Charging Cable,2,14.95,2019-04-27 14:39:00,700 14th St, Atlanta,GA,30301 +185116,Lightning Charging Cable,1,14.95,2019-04-03 13:51:00,718 Main St, Atlanta,GA,30301 +185117,USB-C Charging Cable,1,11.95,2019-04-28 16:08:00,718 Main St, New York City,NY,10001 +185118,Flatscreen TV,1,300.0,2019-04-12 00:13:00,200 5th St, Los Angeles,CA,90001 +185119,Macbook Pro Laptop,1,1700.0,2019-04-21 12:53:00,336 Johnson St, Boston,MA,02215 +185119,Wired Headphones,1,11.99,2019-04-21 12:53:00,336 Johnson St, Boston,MA,02215 +185120,Macbook Pro Laptop,1,1700.0,2019-04-28 12:29:00,731 Spruce St, San Francisco,CA,94016 +185121,Apple Airpods Headphones,1,150.0,2019-04-01 17:02:00,873 Jefferson St, New York City,NY,10001 +185122,AAA Batteries (4-pack),1,2.99,2019-04-29 11:21:00,731 Dogwood St, New York City,NY,10001 +185123,ThinkPad Laptop,1,999.99,2019-04-24 15:00:00,717 Elm St, San Francisco,CA,94016 +185124,Wired Headphones,1,11.99,2019-04-07 20:55:00,252 9th St, New York City,NY,10001 +185125,AAA Batteries (4-pack),1,2.99,2019-04-13 20:11:00,738 Washington St, San Francisco,CA,94016 +185126,AAA Batteries (4-pack),2,2.99,2019-04-22 23:19:00,754 Lincoln St, Atlanta,GA,30301 +185127,Wired Headphones,1,11.99,2019-04-16 20:53:00,857 Pine St, Seattle,WA,98101 +185128,Lightning Charging Cable,1,14.95,2019-04-27 13:09:00,455 4th St, San Francisco,CA,94016 +185129,Lightning Charging Cable,1,14.95,2019-04-05 20:59:00,931 Lake St, San Francisco,CA,94016 +185130,iPhone,1,700.0,2019-04-15 10:51:00,798 Church St, San Francisco,CA,94016 +185130,Lightning Charging Cable,1,14.95,2019-04-15 10:51:00,798 Church St, San Francisco,CA,94016 +185131,20in Monitor,1,109.99,2019-04-19 18:39:00,827 Hickory St, Los Angeles,CA,90001 +185132,AAA Batteries (4-pack),1,2.99,2019-04-06 19:58:00,422 5th St, San Francisco,CA,94016 +185133,USB-C Charging Cable,1,11.95,2019-04-27 01:21:00,685 Washington St, Dallas,TX,75001 +185134,Bose SoundSport Headphones,1,99.99,2019-04-26 16:44:00,801 Adams St, San Francisco,CA,94016 +185135,AA Batteries (4-pack),2,3.84,2019-04-06 05:36:00,978 6th St, Atlanta,GA,30301 +185136,27in 4K Gaming Monitor,1,389.99,2019-04-06 20:52:00,129 North St, New York City,NY,10001 +185137,Apple Airpods Headphones,1,150.0,2019-04-28 16:38:00,417 Johnson St, Los Angeles,CA,90001 +185138,AAA Batteries (4-pack),1,2.99,2019-04-12 11:28:00,600 Walnut St, Los Angeles,CA,90001 +185139,USB-C Charging Cable,1,11.95,2019-04-13 12:10:00,997 Madison St, Los Angeles,CA,90001 +185140,Lightning Charging Cable,2,14.95,2019-04-02 20:20:00,162 Johnson St, New York City,NY,10001 +185141,Wired Headphones,1,11.99,2019-04-28 04:16:00,135 Pine St, Dallas,TX,75001 +185142,Apple Airpods Headphones,1,150.0,2019-04-05 17:33:00,856 11th St, San Francisco,CA,94016 +185143,Lightning Charging Cable,1,14.95,2019-04-02 14:32:00,886 Lakeview St, New York City,NY,10001 +185144,Lightning Charging Cable,1,14.95,2019-04-10 05:56:00,489 Jefferson St, San Francisco,CA,94016 +185145,Lightning Charging Cable,1,14.95,2019-04-24 13:15:00,679 Hill St, Los Angeles,CA,90001 +185146,Wired Headphones,1,11.99,2019-04-25 14:29:00,478 13th St, Dallas,TX,75001 +185147,AA Batteries (4-pack),1,3.84,2019-04-08 17:49:00,919 North St, Los Angeles,CA,90001 +185148,AAA Batteries (4-pack),1,2.99,2019-04-16 08:21:00,762 Center St, San Francisco,CA,94016 +185149,AA Batteries (4-pack),1,3.84,2019-04-25 09:20:00,166 6th St, San Francisco,CA,94016 +185150,Wired Headphones,1,11.99,2019-04-11 11:13:00,504 Willow St, Atlanta,GA,30301 +185151,AA Batteries (4-pack),1,3.84,2019-04-29 13:40:00,182 Ridge St, Portland,OR,97035 +185152,Vareebadd Phone,1,400.0,2019-04-14 09:12:00,744 14th St, Seattle,WA,98101 +185153,Lightning Charging Cable,1,14.95,2019-04-11 08:13:00,377 Church St, New York City,NY,10001 +185154,AAA Batteries (4-pack),1,2.99,2019-04-28 09:45:00,612 Hickory St, Boston,MA,02215 +185155,USB-C Charging Cable,1,11.95,2019-04-08 13:02:00,698 Walnut St, Los Angeles,CA,90001 +185156,AA Batteries (4-pack),1,3.84,2019-04-05 20:04:00,482 Madison St, Atlanta,GA,30301 +185157,AAA Batteries (4-pack),1,2.99,2019-04-01 14:21:00,808 Jefferson St, New York City,NY,10001 +185158,Bose SoundSport Headphones,1,99.99,2019-04-27 10:01:00,266 Jefferson St, Dallas,TX,75001 +185159,34in Ultrawide Monitor,1,379.99,2019-04-17 21:36:00,192 Lincoln St, Seattle,WA,98101 +185160,iPhone,1,700.0,2019-04-17 22:11:00,854 Hill St, New York City,NY,10001 +185160,Wired Headphones,1,11.99,2019-04-17 22:11:00,854 Hill St, New York City,NY,10001 +185161,Macbook Pro Laptop,1,1700.0,2019-04-16 19:50:00,870 Lincoln St, Boston,MA,02215 +185162,27in FHD Monitor,1,149.99,2019-04-11 23:46:00,775 9th St, Los Angeles,CA,90001 +185163,Apple Airpods Headphones,1,150.0,2019-04-28 18:44:00,376 Cedar St, Portland,OR,97035 +185164,27in 4K Gaming Monitor,1,389.99,2019-04-20 12:21:00,621 Maple St, San Francisco,CA,94016 +185165,Lightning Charging Cable,2,14.95,2019-04-16 07:42:00,849 8th St, Los Angeles,CA,90001 +185166,ThinkPad Laptop,1,999.99,2019-04-12 12:00:00,591 Jackson St, Dallas,TX,75001 +185167,AAA Batteries (4-pack),1,2.99,2019-04-10 08:28:00,588 Spruce St, Atlanta,GA,30301 +185167,Wired Headphones,1,11.99,2019-04-10 08:28:00,588 Spruce St, Atlanta,GA,30301 +185168,Vareebadd Phone,1,400.0,2019-04-26 08:12:00,151 Jackson St, San Francisco,CA,94016 +185169,AAA Batteries (4-pack),1,2.99,2019-04-18 04:13:00,185 Elm St, Los Angeles,CA,90001 +185170,USB-C Charging Cable,1,11.95,2019-04-22 07:36:00,913 Dogwood St, Los Angeles,CA,90001 +185171,USB-C Charging Cable,1,11.95,2019-04-04 12:00:00,300 10th St, Los Angeles,CA,90001 +185172,AAA Batteries (4-pack),1,2.99,2019-04-22 13:33:00,785 Washington St, Portland,OR,97035 +185173,iPhone,1,700.0,2019-04-17 20:32:00,573 Cherry St, Boston,MA,02215 +185174,iPhone,1,700.0,2019-04-17 10:44:00,189 Lincoln St, Los Angeles,CA,90001 +185175,34in Ultrawide Monitor,1,379.99,2019-04-01 21:07:00,992 Chestnut St, Los Angeles,CA,90001 +185176,AAA Batteries (4-pack),2,2.99,2019-04-25 15:27:00,213 12th St, New York City,NY,10001 +185177,34in Ultrawide Monitor,1,379.99,2019-04-19 14:53:00,626 14th St, San Francisco,CA,94016 +185178,ThinkPad Laptop,1,999.99,2019-04-12 23:25:00,701 Cedar St, San Francisco,CA,94016 +185179,Apple Airpods Headphones,1,150.0,2019-04-26 17:15:00,982 Main St, New York City,NY,10001 +185180,Apple Airpods Headphones,1,150.0,2019-04-14 10:56:00,822 10th St, San Francisco,CA,94016 +185181,Bose SoundSport Headphones,1,99.99,2019-04-18 11:13:00,888 2nd St, New York City,NY,10001 +185182,Lightning Charging Cable,1,14.95,2019-04-16 15:03:00,314 Meadow St, Dallas,TX,75001 +185183,27in FHD Monitor,1,149.99,2019-04-03 11:30:00,553 Dogwood St, Atlanta,GA,30301 +185184,Macbook Pro Laptop,1,1700.0,2019-04-03 18:33:00,685 Sunset St, New York City,NY,10001 +185185,ThinkPad Laptop,1,999.99,2019-04-29 08:06:00,485 Johnson St, Portland,ME,04101 +185186,USB-C Charging Cable,1,11.95,2019-04-25 16:40:00,742 Highland St, San Francisco,CA,94016 +185187,AAA Batteries (4-pack),1,2.99,2019-04-23 14:19:00,692 Jackson St, Los Angeles,CA,90001 +185188,Bose SoundSport Headphones,1,99.99,2019-04-29 15:12:00,678 5th St, Los Angeles,CA,90001 +185189,Bose SoundSport Headphones,1,99.99,2019-04-28 14:47:00,783 Washington St, Los Angeles,CA,90001 +185190,34in Ultrawide Monitor,1,379.99,2019-04-10 19:36:00,707 West St, Boston,MA,02215 +185191,Apple Airpods Headphones,1,150.0,2019-04-28 10:11:00,991 Spruce St, New York City,NY,10001 +185192,AAA Batteries (4-pack),1,2.99,2019-04-18 12:12:00,134 11th St, Boston,MA,02215 +185193,Lightning Charging Cable,1,14.95,2019-04-16 21:38:00,714 13th St, San Francisco,CA,94016 +185194,Wired Headphones,1,11.99,2019-04-30 10:05:00,605 Jackson St, New York City,NY,10001 +185195,Bose SoundSport Headphones,1,99.99,2019-04-28 11:56:00,694 13th St, San Francisco,CA,94016 +185196,AAA Batteries (4-pack),1,2.99,2019-04-27 18:37:00,665 Willow St, Austin,TX,73301 +185197,Lightning Charging Cable,1,14.95,2019-04-02 17:43:00,335 Meadow St, Los Angeles,CA,90001 +185198,USB-C Charging Cable,1,11.95,2019-04-23 20:19:00,298 Lincoln St, Seattle,WA,98101 +185199,AA Batteries (4-pack),1,3.84,2019-04-26 19:54:00,929 Main St, Los Angeles,CA,90001 +185200,ThinkPad Laptop,1,999.99,2019-04-02 13:45:00,446 7th St, Los Angeles,CA,90001 +185201,Vareebadd Phone,1,400.0,2019-04-10 11:04:00,106 Sunset St, Dallas,TX,75001 +185201,Apple Airpods Headphones,1,150.0,2019-04-10 11:04:00,106 Sunset St, Dallas,TX,75001 +185202,AAA Batteries (4-pack),2,2.99,2019-04-26 22:27:00,908 Elm St, Seattle,WA,98101 +185203,USB-C Charging Cable,1,11.95,2019-04-21 17:02:00,924 Elm St, San Francisco,CA,94016 +185204,Lightning Charging Cable,2,14.95,2019-04-22 19:21:00,965 8th St, New York City,NY,10001 +185204,27in 4K Gaming Monitor,1,389.99,2019-04-22 19:21:00,965 8th St, New York City,NY,10001 +185205,Lightning Charging Cable,1,14.95,2019-04-13 00:00:00,349 Center St, Boston,MA,02215 +185206,AAA Batteries (4-pack),1,2.99,2019-04-11 18:47:00,576 Jefferson St, San Francisco,CA,94016 +185207,27in FHD Monitor,1,149.99,2019-04-24 23:34:00,608 Center St, Atlanta,GA,30301 +185208,AAA Batteries (4-pack),2,2.99,2019-04-04 21:53:00,904 Forest St, New York City,NY,10001 +185209,Bose SoundSport Headphones,1,99.99,2019-04-21 19:59:00,67 13th St, San Francisco,CA,94016 +185210,Lightning Charging Cable,1,14.95,2019-04-23 23:05:00,319 Hickory St, San Francisco,CA,94016 +185211,AA Batteries (4-pack),2,3.84,2019-04-21 08:56:00,920 Lakeview St, Atlanta,GA,30301 +185212,Apple Airpods Headphones,1,150.0,2019-04-23 18:44:00,38 Highland St, New York City,NY,10001 +185213,27in FHD Monitor,1,149.99,2019-04-09 20:59:00,177 Center St, Los Angeles,CA,90001 +185214,27in FHD Monitor,1,149.99,2019-04-10 19:04:00,742 7th St, New York City,NY,10001 +185215,AA Batteries (4-pack),1,3.84,2019-04-12 19:36:00,718 Sunset St, Atlanta,GA,30301 +185216,USB-C Charging Cable,1,11.95,2019-04-11 11:30:00,212 5th St, New York City,NY,10001 +185217,USB-C Charging Cable,1,11.95,2019-04-24 09:24:00,19 Hill St, Dallas,TX,75001 +185218,USB-C Charging Cable,1,11.95,2019-04-07 10:14:00,237 6th St, Atlanta,GA,30301 +185219,27in FHD Monitor,1,149.99,2019-04-30 13:53:00,106 4th St, Boston,MA,02215 +185220,Flatscreen TV,1,300.0,2019-04-12 01:41:00,544 Johnson St, Austin,TX,73301 +185221,AA Batteries (4-pack),4,3.84,2019-04-29 05:39:00,74 Center St, New York City,NY,10001 +185222,Flatscreen TV,1,300.0,2019-04-04 19:49:00,172 River St, Boston,MA,02215 +185223,Flatscreen TV,1,300.0,2019-04-01 09:52:00,196 Wilson St, Los Angeles,CA,90001 +185224,27in FHD Monitor,1,149.99,2019-04-13 16:12:00,790 Highland St, Dallas,TX,75001 +185225,USB-C Charging Cable,1,11.95,2019-04-11 09:29:00,608 Jefferson St, San Francisco,CA,94016 +185226,AAA Batteries (4-pack),1,2.99,2019-04-21 19:24:00,681 Maple St, New York City,NY,10001 +185227,Google Phone,1,600.0,2019-04-14 17:32:00,16 Dogwood St, Atlanta,GA,30301 +185227,USB-C Charging Cable,1,11.95,2019-04-14 17:32:00,16 Dogwood St, Atlanta,GA,30301 +185228,AA Batteries (4-pack),2,3.84,2019-04-15 10:07:00,433 Main St, Los Angeles,CA,90001 +185229,Bose SoundSport Headphones,1,99.99,2019-04-04 09:33:00,797 Adams St, Portland,OR,97035 +185230,27in FHD Monitor,1,149.99,2019-04-26 09:35:00,695 11th St, Portland,ME,04101 +185231,34in Ultrawide Monitor,1,379.99,2019-04-12 17:43:00,311 North St, San Francisco,CA,94016 +185232,AAA Batteries (4-pack),1,2.99,2019-04-05 18:58:00,592 Madison St, Los Angeles,CA,90001 +185233,Flatscreen TV,1,300.0,2019-04-20 22:44:00,858 North St, Seattle,WA,98101 +185234,AA Batteries (4-pack),3,3.84,2019-04-01 19:56:00,702 Adams St, Los Angeles,CA,90001 +185235,20in Monitor,1,109.99,2019-04-27 14:23:00,612 Cedar St, Austin,TX,73301 +185236,LG Washing Machine,1,600.0,2019-04-17 21:31:00,475 13th St, San Francisco,CA,94016 +185237,Bose SoundSport Headphones,1,99.99,2019-04-13 12:47:00,910 4th St, Los Angeles,CA,90001 +185238,Lightning Charging Cable,1,14.95,2019-04-26 11:58:00,547 Hill St, Atlanta,GA,30301 +185239,Apple Airpods Headphones,1,150.0,2019-04-22 01:55:00,453 Ridge St, San Francisco,CA,94016 +185240,AA Batteries (4-pack),1,3.84,2019-04-17 08:56:00,469 South St, Los Angeles,CA,90001 +185241,Lightning Charging Cable,1,14.95,2019-04-02 22:19:00,81 Jefferson St, San Francisco,CA,94016 +185242,Wired Headphones,1,11.99,2019-04-09 08:12:00,42 Jefferson St, San Francisco,CA,94016 +185243,iPhone,1,700.0,2019-04-05 21:20:00,728 South St, Austin,TX,73301 +185244,iPhone,1,700.0,2019-04-10 02:15:00,614 Spruce St, San Francisco,CA,94016 +185245,Lightning Charging Cable,1,14.95,2019-04-09 14:35:00,447 North St, Seattle,WA,98101 +185246,Flatscreen TV,1,300.0,2019-04-27 14:48:00,893 6th St, Atlanta,GA,30301 +185247,27in 4K Gaming Monitor,1,389.99,2019-04-10 12:58:00,488 Jackson St, Portland,OR,97035 +185248,27in 4K Gaming Monitor,1,389.99,2019-04-05 21:26:00,124 River St, Boston,MA,02215 +185249,34in Ultrawide Monitor,1,379.99,2019-04-17 10:50:00,401 4th St, San Francisco,CA,94016 +185250,USB-C Charging Cable,1,11.95,2019-04-30 21:06:00,524 4th St, Boston,MA,02215 +185251,Macbook Pro Laptop,1,1700.0,2019-04-25 14:31:00,22 Willow St, San Francisco,CA,94016 +185252,Flatscreen TV,1,300.0,2019-04-09 07:44:00,952 Jackson St, Boston,MA,02215 +185253,20in Monitor,1,109.99,2019-04-01 14:55:00,626 Wilson St, New York City,NY,10001 +185254,USB-C Charging Cable,1,11.95,2019-04-18 17:34:00,985 River St, New York City,NY,10001 +185255,iPhone,1,700.0,2019-04-17 13:46:00,636 Adams St, Los Angeles,CA,90001 +185256,Bose SoundSport Headphones,1,99.99,2019-04-25 15:20:00,281 South St, San Francisco,CA,94016 +185257,Wired Headphones,1,11.99,2019-04-14 21:14:00,544 Lincoln St, Seattle,WA,98101 +185258,Lightning Charging Cable,1,14.95,2019-04-11 20:33:00,843 9th St, Portland,OR,97035 +185259,AA Batteries (4-pack),1,3.84,2019-04-06 17:58:00,164 Chestnut St, Atlanta,GA,30301 +185260,Macbook Pro Laptop,1,1700.0,2019-04-18 09:56:00,701 6th St, San Francisco,CA,94016 +185261,Wired Headphones,1,11.99,2019-04-29 22:11:00,947 West St, New York City,NY,10001 +185262,AA Batteries (4-pack),1,3.84,2019-04-20 14:48:00,816 Cedar St, Austin,TX,73301 +185263,Bose SoundSport Headphones,1,99.99,2019-04-21 09:42:00,470 Walnut St, Portland,OR,97035 +185264,Bose SoundSport Headphones,1,99.99,2019-04-16 08:09:00,935 Ridge St, New York City,NY,10001 +185265,Apple Airpods Headphones,1,150.0,2019-04-09 16:51:00,85 Washington St, Boston,MA,02215 +185266,Lightning Charging Cable,1,14.95,2019-04-18 15:54:00,991 South St, San Francisco,CA,94016 +185267,Lightning Charging Cable,2,14.95,2019-04-10 08:44:00,927 Hickory St, San Francisco,CA,94016 +185268,AAA Batteries (4-pack),1,2.99,2019-04-15 09:41:00,795 Elm St, New York City,NY,10001 +185269,AAA Batteries (4-pack),2,2.99,2019-04-20 02:36:00,622 7th St, New York City,NY,10001 +185270,Wired Headphones,1,11.99,2019-04-04 22:33:00,812 Elm St, San Francisco,CA,94016 +185271,Lightning Charging Cable,1,14.95,2019-04-09 19:30:00,33 Jefferson St, Boston,MA,02215 +185272,AAA Batteries (4-pack),1,2.99,2019-04-07 11:00:00,192 10th St, San Francisco,CA,94016 +185273,USB-C Charging Cable,1,11.95,2019-04-13 22:18:00,429 Dogwood St, Austin,TX,73301 +185274,Apple Airpods Headphones,1,150.0,2019-04-08 10:50:00,416 Elm St, Los Angeles,CA,90001 +185275,Google Phone,1,600.0,2019-04-15 17:56:00,912 Adams St, Los Angeles,CA,90001 +185276,Lightning Charging Cable,1,14.95,2019-04-08 20:00:00,621 South St, San Francisco,CA,94016 +185277,34in Ultrawide Monitor,1,379.99,2019-04-06 16:19:00,775 1st St, Seattle,WA,98101 +185278,Wired Headphones,1,11.99,2019-04-21 20:17:00,630 Elm St, Boston,MA,02215 +185279,27in FHD Monitor,1,149.99,2019-04-01 09:52:00,216 Elm St, Los Angeles,CA,90001 +185280,AAA Batteries (4-pack),1,2.99,2019-04-05 19:58:00,946 12th St, Austin,TX,73301 +185281,Wired Headphones,1,11.99,2019-04-26 17:10:00,248 12th St, Austin,TX,73301 +185282,LG Washing Machine,1,600.0,2019-04-12 23:10:00,827 Lincoln St, Austin,TX,73301 +185283,iPhone,1,700.0,2019-04-23 14:26:00,391 1st St, San Francisco,CA,94016 +185284,Apple Airpods Headphones,1,150.0,2019-04-27 12:27:00,359 14th St, Los Angeles,CA,90001 +185285,34in Ultrawide Monitor,1,379.99,2019-04-12 20:00:00,13 2nd St, San Francisco,CA,94016 +185286,USB-C Charging Cable,1,11.95,2019-04-17 13:48:00,1 River St, Los Angeles,CA,90001 +185287,27in FHD Monitor,1,149.99,2019-04-03 09:42:00,951 Madison St, San Francisco,CA,94016 +185288,Bose SoundSport Headphones,1,99.99,2019-04-15 12:06:00,778 Hickory St, San Francisco,CA,94016 +185289,Wired Headphones,2,11.99,2019-04-08 07:25:00,156 Hill St, Seattle,WA,98101 +185290,Lightning Charging Cable,1,14.95,2019-04-18 01:20:00,758 Lake St, Los Angeles,CA,90001 +185291,Bose SoundSport Headphones,1,99.99,2019-04-20 23:37:00,981 7th St, New York City,NY,10001 +185292,USB-C Charging Cable,2,11.95,2019-04-24 00:01:00,958 Wilson St, New York City,NY,10001 +185293,AA Batteries (4-pack),1,3.84,2019-04-16 11:19:00,270 11th St, Austin,TX,73301 +185294,AA Batteries (4-pack),2,3.84,2019-04-28 10:10:00,337 14th St, Atlanta,GA,30301 +185295,Bose SoundSport Headphones,1,99.99,2019-04-07 14:46:00,966 Hickory St, Austin,TX,73301 +185296,AAA Batteries (4-pack),1,2.99,2019-04-24 12:00:00,452 Johnson St, Los Angeles,CA,90001 +185297,USB-C Charging Cable,1,11.95,2019-04-06 19:07:00,548 South St, Atlanta,GA,30301 +185298,AAA Batteries (4-pack),1,2.99,2019-04-20 21:15:00,584 Ridge St, Austin,TX,73301 +185299,USB-C Charging Cable,1,11.95,2019-04-19 09:10:00,224 Hickory St, Los Angeles,CA,90001 +185300,USB-C Charging Cable,1,11.95,2019-04-17 11:40:00,916 2nd St, New York City,NY,10001 +185301,AA Batteries (4-pack),1,3.84,2019-04-21 21:05:00,126 Main St, Seattle,WA,98101 +185302,Lightning Charging Cable,1,14.95,2019-04-15 08:21:00,352 Washington St, Dallas,TX,75001 +185303,LG Dryer,1,600.0,2019-04-01 17:34:00,257 Highland St, New York City,NY,10001 +185304,AAA Batteries (4-pack),1,2.99,2019-04-21 20:04:00,505 8th St, Dallas,TX,75001 +185305,Wired Headphones,1,11.99,2019-04-28 08:14:00,668 Willow St, Atlanta,GA,30301 +185306,iPhone,1,700.0,2019-04-14 13:12:00,366 Lake St, Los Angeles,CA,90001 +185307,Apple Airpods Headphones,1,150.0,2019-04-08 18:22:00,496 5th St, Boston,MA,02215 +185308,Vareebadd Phone,1,400.0,2019-04-10 13:43:00,286 West St, San Francisco,CA,94016 +185308,34in Ultrawide Monitor,1,379.99,2019-04-10 13:43:00,286 West St, San Francisco,CA,94016 +185309,AA Batteries (4-pack),3,3.84,2019-04-18 10:42:00,73 2nd St, New York City,NY,10001 +185310,AA Batteries (4-pack),1,3.84,2019-04-09 18:34:00,872 12th St, San Francisco,CA,94016 +185311,Google Phone,1,600.0,2019-04-21 18:57:00,308 Forest St, New York City,NY,10001 +185311,Wired Headphones,1,11.99,2019-04-21 18:57:00,308 Forest St, New York City,NY,10001 +185312,iPhone,1,700.0,2019-04-05 20:11:00,35 South St, Los Angeles,CA,90001 +185313,Bose SoundSport Headphones,1,99.99,2019-04-17 07:54:00,429 10th St, Los Angeles,CA,90001 +185314,USB-C Charging Cable,1,11.95,2019-04-17 13:40:00,178 South St, Boston,MA,02215 +185315,27in 4K Gaming Monitor,1,389.99,2019-04-07 01:20:00,532 Lincoln St, Dallas,TX,75001 +185316,AA Batteries (4-pack),1,3.84,2019-04-10 09:49:00,740 11th St, Dallas,TX,75001 +185317,Flatscreen TV,1,300.0,2019-04-12 17:23:00,881 Forest St, Boston,MA,02215 +185318,AAA Batteries (4-pack),1,2.99,2019-04-09 20:09:00,942 Highland St, Portland,OR,97035 +185319,Wired Headphones,1,11.99,2019-04-25 17:17:00,705 Chestnut St, Dallas,TX,75001 +185320,Google Phone,1,600.0,2019-04-02 17:42:00,88 Highland St, Portland,OR,97035 +185321,Bose SoundSport Headphones,1,99.99,2019-04-24 22:09:00,551 13th St, Atlanta,GA,30301 +185322,LG Dryer,1,600.0,2019-04-18 12:49:00,269 5th St, Boston,MA,02215 +185323,Google Phone,1,600.0,2019-04-30 13:50:00,866 Dogwood St, Atlanta,GA,30301 +185324,AAA Batteries (4-pack),3,2.99,2019-04-21 08:51:00,121 Washington St, New York City,NY,10001 +185325,Lightning Charging Cable,2,14.95,2019-04-27 01:56:00,179 5th St, Boston,MA,02215 +185326,USB-C Charging Cable,1,11.95,2019-04-10 21:53:00,14 Lakeview St, Seattle,WA,98101 +185327,Wired Headphones,1,11.99,2019-04-17 21:36:00,737 Park St, Boston,MA,02215 +185328,Lightning Charging Cable,2,14.95,2019-04-21 18:46:00,871 West St, San Francisco,CA,94016 +185329,AAA Batteries (4-pack),1,2.99,2019-04-27 19:53:00,106 2nd St, Portland,OR,97035 +185330,AA Batteries (4-pack),1,3.84,2019-04-14 18:57:00,913 Wilson St, Atlanta,GA,30301 +185331,34in Ultrawide Monitor,1,379.99,2019-04-19 19:53:00,68 5th St, Los Angeles,CA,90001 +185332,AA Batteries (4-pack),2,3.84,2019-04-23 13:35:00,930 12th St, San Francisco,CA,94016 +185333,Lightning Charging Cable,1,14.95,2019-04-22 14:37:00,476 13th St, Boston,MA,02215 +185334,Bose SoundSport Headphones,1,99.99,2019-04-26 20:19:00,151 Center St, New York City,NY,10001 +185335,Flatscreen TV,1,300.0,2019-04-07 09:55:00,853 8th St, Boston,MA,02215 +185336,AAA Batteries (4-pack),1,2.99,2019-04-26 00:56:00,613 Elm St, New York City,NY,10001 +185337,Wired Headphones,1,11.99,2019-04-30 21:31:00,227 11th St, New York City,NY,10001 +185338,iPhone,1,700.0,2019-04-19 06:52:00,988 Dogwood St, Los Angeles,CA,90001 +185339,AAA Batteries (4-pack),1,2.99,2019-04-06 22:14:00,329 Meadow St, Portland,ME,04101 +185340,AA Batteries (4-pack),1,3.84,2019-04-12 18:52:00,383 7th St, San Francisco,CA,94016 +185341,27in FHD Monitor,1,149.99,2019-04-13 21:19:00,579 7th St, Los Angeles,CA,90001 +185342,Bose SoundSport Headphones,1,99.99,2019-04-21 13:44:00,727 Lincoln St, Austin,TX,73301 +185343,Google Phone,1,600.0,2019-04-02 19:39:00,495 Hickory St, San Francisco,CA,94016 +185343,USB-C Charging Cable,1,11.95,2019-04-02 19:39:00,495 Hickory St, San Francisco,CA,94016 +185344,AAA Batteries (4-pack),2,2.99,2019-04-04 14:39:00,841 Elm St, Seattle,WA,98101 +185345,AAA Batteries (4-pack),3,2.99,2019-04-06 08:48:00,450 Walnut St, San Francisco,CA,94016 +185346,Flatscreen TV,1,300.0,2019-04-23 17:37:00,29 14th St, Los Angeles,CA,90001 +185347,USB-C Charging Cable,1,11.95,2019-04-27 10:54:00,599 4th St, Portland,OR,97035 +185348,Lightning Charging Cable,1,14.95,2019-04-05 10:38:00,961 5th St, Atlanta,GA,30301 +185349,AAA Batteries (4-pack),5,2.99,2019-04-26 07:26:00,675 Center St, Boston,MA,02215 +185350,Wired Headphones,1,11.99,2019-04-09 02:35:00,544 7th St, Los Angeles,CA,90001 +185351,Lightning Charging Cable,1,14.95,2019-04-07 19:40:00,148 Willow St, Boston,MA,02215 +185352,Vareebadd Phone,1,400.0,2019-04-03 09:23:00,25 7th St, Seattle,WA,98101 +185353,AAA Batteries (4-pack),2,2.99,2019-04-01 14:36:00,406 Johnson St, New York City,NY,10001 +185354,Wired Headphones,1,11.99,2019-04-06 12:17:00,230 Forest St, San Francisco,CA,94016 +185355,Bose SoundSport Headphones,1,99.99,2019-04-05 18:59:00,821 Church St, Dallas,TX,75001 +185356,AAA Batteries (4-pack),1,2.99,2019-04-13 13:55:00,99 Johnson St, New York City,NY,10001 +185357,Apple Airpods Headphones,1,150.0,2019-04-25 16:20:00,299 Forest St, Los Angeles,CA,90001 +185358,AA Batteries (4-pack),1,3.84,2019-04-23 12:37:00,778 Hill St, Dallas,TX,75001 +185359,USB-C Charging Cable,1,11.95,2019-04-04 11:28:00,97 Walnut St, Los Angeles,CA,90001 +185360,AAA Batteries (4-pack),1,2.99,2019-04-21 19:38:00,676 Hill St, San Francisco,CA,94016 +185361,AAA Batteries (4-pack),1,2.99,2019-04-29 12:52:00,839 Spruce St, San Francisco,CA,94016 +185362,AAA Batteries (4-pack),1,2.99,2019-04-13 09:59:00,263 Madison St, Austin,TX,73301 +185363,AA Batteries (4-pack),1,3.84,2019-04-20 13:58:00,212 Jackson St, Austin,TX,73301 +185364,Vareebadd Phone,1,400.0,2019-04-16 18:04:00,356 Walnut St, Boston,MA,02215 +185364,USB-C Charging Cable,1,11.95,2019-04-16 18:04:00,356 Walnut St, Boston,MA,02215 +185365,Bose SoundSport Headphones,1,99.99,2019-04-17 07:41:00,679 5th St, Seattle,WA,98101 +185366,Apple Airpods Headphones,1,150.0,2019-04-23 20:06:00,941 13th St, Portland,OR,97035 +185367,USB-C Charging Cable,1,11.95,2019-04-06 18:28:00,537 7th St, San Francisco,CA,94016 +185368,iPhone,1,700.0,2019-04-08 16:48:00,169 Hill St, Boston,MA,02215 +185369,Lightning Charging Cable,1,14.95,2019-04-12 19:14:00,724 Ridge St, San Francisco,CA,94016 +185370,Lightning Charging Cable,1,14.95,2019-04-29 13:49:00,110 9th St, Dallas,TX,75001 +185371,Macbook Pro Laptop,1,1700.0,2019-04-21 11:37:00,417 4th St, New York City,NY,10001 +185372,Apple Airpods Headphones,1,150.0,2019-04-12 09:58:00,308 Center St, San Francisco,CA,94016 +185373,Bose SoundSport Headphones,1,99.99,2019-04-22 05:44:00,337 Meadow St, Atlanta,GA,30301 +185374,Lightning Charging Cable,1,14.95,2019-04-24 07:48:00,428 Madison St, New York City,NY,10001 +185375,27in FHD Monitor,1,149.99,2019-04-23 18:39:00,532 Chestnut St, Boston,MA,02215 +185376,AAA Batteries (4-pack),1,2.99,2019-04-26 18:26:00,924 Lakeview St, Atlanta,GA,30301 +185377,27in 4K Gaming Monitor,1,389.99,2019-04-08 21:51:00,946 Adams St, New York City,NY,10001 +185378,Apple Airpods Headphones,1,150.0,2019-04-08 19:23:00,591 Hill St, New York City,NY,10001 +185379,AAA Batteries (4-pack),1,2.99,2019-04-03 16:40:00,303 11th St, Los Angeles,CA,90001 +185380,iPhone,1,700.0,2019-04-17 14:21:00,842 Madison St, San Francisco,CA,94016 +185381,27in FHD Monitor,1,149.99,2019-04-27 09:49:00,563 14th St, San Francisco,CA,94016 +185382,Lightning Charging Cable,1,14.95,2019-04-04 02:40:00,761 Main St, Los Angeles,CA,90001 +185383,34in Ultrawide Monitor,1,379.99,2019-04-19 10:54:00,723 13th St, Seattle,WA,98101 +185384,34in Ultrawide Monitor,1,379.99,2019-04-20 09:21:00,416 7th St, Los Angeles,CA,90001 +185385,Wired Headphones,1,11.99,2019-04-26 10:45:00,886 North St, Los Angeles,CA,90001 +185386,AAA Batteries (4-pack),1,2.99,2019-04-24 10:53:00,605 Forest St, Los Angeles,CA,90001 +185387,Wired Headphones,2,11.99,2019-04-04 19:27:00,49 Sunset St, New York City,NY,10001 +185388,Wired Headphones,1,11.99,2019-04-02 09:43:00,913 10th St, Los Angeles,CA,90001 +185389,Bose SoundSport Headphones,1,99.99,2019-04-02 14:07:00,995 Center St, Seattle,WA,98101 +185390,Flatscreen TV,1,300.0,2019-04-09 21:47:00,568 13th St, New York City,NY,10001 +185391,Bose SoundSport Headphones,1,99.99,2019-04-05 14:12:00,340 Maple St, Dallas,TX,75001 +185392,AA Batteries (4-pack),1,3.84,2019-04-22 15:58:00,949 9th St, Austin,TX,73301 +185393,34in Ultrawide Monitor,1,379.99,2019-04-20 13:12:00,174 Washington St, New York City,NY,10001 +185394,Lightning Charging Cable,1,14.95,2019-04-05 18:55:00,598 Madison St, Boston,MA,02215 +185395,20in Monitor,1,109.99,2019-04-23 20:13:00,51 North St, Dallas,TX,75001 +185396,Apple Airpods Headphones,1,150.0,2019-04-10 10:57:00,174 Adams St, New York City,NY,10001 +185397,20in Monitor,1,109.99,2019-04-07 12:38:00,421 Center St, Portland,OR,97035 +185398,Lightning Charging Cable,1,14.95,2019-04-09 12:10:00,383 Lincoln St, Los Angeles,CA,90001 +185399,AA Batteries (4-pack),1,3.84,2019-04-26 08:05:00,74 Adams St, Boston,MA,02215 +185399,27in FHD Monitor,1,149.99,2019-04-26 08:05:00,74 Adams St, Boston,MA,02215 +185400,Bose SoundSport Headphones,1,99.99,2019-04-05 21:09:00,426 5th St, New York City,NY,10001 +185401,20in Monitor,1,109.99,2019-04-09 12:52:00,105 5th St, Los Angeles,CA,90001 +185402,Apple Airpods Headphones,1,150.0,2019-04-03 11:57:00,621 Ridge St, Los Angeles,CA,90001 +185403,34in Ultrawide Monitor,1,379.99,2019-04-10 20:20:00,224 Cedar St, San Francisco,CA,94016 +185404,27in 4K Gaming Monitor,1,389.99,2019-04-05 11:59:00,136 Adams St, Boston,MA,02215 +185405,iPhone,1,700.0,2019-04-20 18:33:00,7 13th St, Seattle,WA,98101 +185405,Lightning Charging Cable,1,14.95,2019-04-20 18:33:00,7 13th St, Seattle,WA,98101 +185406,Wired Headphones,1,11.99,2019-04-26 22:21:00,863 River St, Dallas,TX,75001 +185407,Lightning Charging Cable,1,14.95,2019-04-24 10:10:00,363 Forest St, Boston,MA,02215 +185408,34in Ultrawide Monitor,1,379.99,2019-04-03 11:12:00,218 12th St, Los Angeles,CA,90001 +185409,Lightning Charging Cable,1,14.95,2019-04-15 21:15:00,912 Elm St, Seattle,WA,98101 +185410,Macbook Pro Laptop,1,1700.0,2019-04-14 21:44:00,217 Washington St, Seattle,WA,98101 +185411,USB-C Charging Cable,1,11.95,2019-04-13 14:58:00,664 Washington St, Boston,MA,02215 +185412,AAA Batteries (4-pack),2,2.99,2019-04-05 21:38:00,938 Hickory St, San Francisco,CA,94016 +185413,ThinkPad Laptop,1,999.99,2019-04-02 18:11:00,435 Elm St, Portland,OR,97035 +185414,Lightning Charging Cable,1,14.95,2019-04-30 13:38:00,511 Pine St, San Francisco,CA,94016 +185415,Wired Headphones,1,11.99,2019-04-04 14:34:00,725 Park St, San Francisco,CA,94016 +185416,AAA Batteries (4-pack),2,2.99,2019-04-04 19:28:00,955 Lake St, San Francisco,CA,94016 +185417,USB-C Charging Cable,2,11.95,2019-04-15 15:11:00,638 7th St, Seattle,WA,98101 +185418,27in FHD Monitor,1,149.99,2019-04-18 06:48:00,101 Madison St, New York City,NY,10001 +185419,Lightning Charging Cable,1,14.95,2019-04-04 17:35:00,315 Park St, San Francisco,CA,94016 +185420,AA Batteries (4-pack),1,3.84,2019-04-08 19:57:00,24 Meadow St, Austin,TX,73301 +185421,Lightning Charging Cable,1,14.95,2019-04-21 13:46:00,457 5th St, Atlanta,GA,30301 +185422,AA Batteries (4-pack),1,3.84,2019-04-06 07:41:00,82 Meadow St, Dallas,TX,75001 +185423,Apple Airpods Headphones,1,150.0,2019-04-14 04:51:00,189 10th St, Atlanta,GA,30301 +185424,AA Batteries (4-pack),1,3.84,2019-04-27 09:42:00,68 Highland St, Los Angeles,CA,90001 +185425,iPhone,1,700.0,2019-04-11 19:58:00,302 Meadow St, Seattle,WA,98101 +185426,AAA Batteries (4-pack),1,2.99,2019-04-08 06:55:00,700 Chestnut St, Boston,MA,02215 +185427,USB-C Charging Cable,2,11.95,2019-04-02 18:34:00,304 Meadow St, San Francisco,CA,94016 +185428,USB-C Charging Cable,1,11.95,2019-04-11 23:21:00,502 13th St, Seattle,WA,98101 +185429,Wired Headphones,1,11.99,2019-04-10 07:18:00,414 Lincoln St, New York City,NY,10001 +185430,34in Ultrawide Monitor,1,379.99,2019-04-18 09:40:00,916 Park St, Dallas,TX,75001 +185431,Lightning Charging Cable,1,14.95,2019-04-18 23:21:00,995 South St, San Francisco,CA,94016 +185432,27in FHD Monitor,1,149.99,2019-04-11 18:25:00,562 Jackson St, Austin,TX,73301 +185433,USB-C Charging Cable,1,11.95,2019-04-13 20:12:00,508 Lakeview St, New York City,NY,10001 +185434,AA Batteries (4-pack),1,3.84,2019-04-27 11:08:00,366 Madison St, Austin,TX,73301 +185435,Wired Headphones,1,11.99,2019-04-08 17:11:00,65 Spruce St, New York City,NY,10001 +185436,USB-C Charging Cable,1,11.95,2019-04-06 10:33:00,245 Lincoln St, New York City,NY,10001 +185437,Vareebadd Phone,1,400.0,2019-04-24 11:32:00,163 North St, San Francisco,CA,94016 +185437,Bose SoundSport Headphones,1,99.99,2019-04-24 11:32:00,163 North St, San Francisco,CA,94016 +185438,Lightning Charging Cable,1,14.95,2019-04-23 19:29:00,529 River St, Los Angeles,CA,90001 +185439,Lightning Charging Cable,1,14.95,2019-04-07 13:33:00,100 4th St, Boston,MA,02215 +185440,Apple Airpods Headphones,1,150.0,2019-04-29 21:37:00,826 Forest St, Austin,TX,73301 +185441,ThinkPad Laptop,1,999.99,2019-04-24 18:58:00,674 Lake St, Seattle,WA,98101 +185442,AA Batteries (4-pack),1,3.84,2019-04-24 16:46:00,169 Lincoln St, Los Angeles,CA,90001 +185443,34in Ultrawide Monitor,1,379.99,2019-04-06 10:09:00,631 14th St, San Francisco,CA,94016 +185444,USB-C Charging Cable,1,11.95,2019-04-20 19:43:00,860 South St, San Francisco,CA,94016 +185445,Apple Airpods Headphones,1,150.0,2019-04-10 17:52:00,413 Elm St, Los Angeles,CA,90001 +185446,AAA Batteries (4-pack),2,2.99,2019-04-02 16:27:00,827 Hill St, Portland,OR,97035 +185447,AA Batteries (4-pack),2,3.84,2019-04-26 19:35:00,40 Main St, Dallas,TX,75001 +185448,Bose SoundSport Headphones,1,99.99,2019-04-09 12:23:00,522 12th St, Dallas,TX,75001 +185449,USB-C Charging Cable,1,11.95,2019-04-02 07:35:00,597 Elm St, New York City,NY,10001 +185450,ThinkPad Laptop,1,999.99,2019-04-06 15:54:00,489 Walnut St, Los Angeles,CA,90001 +185451,20in Monitor,1,109.99,2019-04-05 11:02:00,686 Jefferson St, New York City,NY,10001 +185451,USB-C Charging Cable,1,11.95,2019-04-05 11:02:00,686 Jefferson St, New York City,NY,10001 +185452,Google Phone,1,600.0,2019-04-04 00:49:00,490 5th St, Atlanta,GA,30301 +185452,USB-C Charging Cable,1,11.95,2019-04-04 00:49:00,490 5th St, Atlanta,GA,30301 +185452,Wired Headphones,1,11.99,2019-04-04 00:49:00,490 5th St, Atlanta,GA,30301 +185453,Lightning Charging Cable,2,14.95,2019-04-29 21:04:00,519 Walnut St, New York City,NY,10001 +185454,iPhone,1,700.0,2019-04-04 13:32:00,782 Wilson St, San Francisco,CA,94016 +185455,AAA Batteries (4-pack),1,2.99,2019-04-28 21:00:00,451 Cherry St, San Francisco,CA,94016 +185456,AAA Batteries (4-pack),3,2.99,2019-04-17 23:47:00,210 Center St, San Francisco,CA,94016 +185457,Bose SoundSport Headphones,1,99.99,2019-04-12 12:59:00,722 South St, Austin,TX,73301 +185458,USB-C Charging Cable,1,11.95,2019-04-07 18:17:00,757 Center St, San Francisco,CA,94016 +185459,Google Phone,1,600.0,2019-04-02 22:35:00,712 Dogwood St, Los Angeles,CA,90001 +185460,20in Monitor,1,109.99,2019-04-26 12:12:00,91 Church St, New York City,NY,10001 +185461,AA Batteries (4-pack),2,3.84,2019-04-22 13:32:00,67 Hickory St, Atlanta,GA,30301 +185462,Bose SoundSport Headphones,1,99.99,2019-04-13 22:50:00,270 Dogwood St, San Francisco,CA,94016 +185463,Bose SoundSport Headphones,1,99.99,2019-04-07 17:34:00,940 Willow St, New York City,NY,10001 +185464,Wired Headphones,1,11.99,2019-04-06 00:55:00,490 Hill St, San Francisco,CA,94016 +185465,34in Ultrawide Monitor,1,379.99,2019-04-12 06:36:00,523 9th St, Austin,TX,73301 +185466,AAA Batteries (4-pack),2,2.99,2019-04-26 18:59:00,388 11th St, Austin,TX,73301 +185467,27in FHD Monitor,1,149.99,2019-04-21 14:02:00,81 Sunset St, Boston,MA,02215 +185468,Vareebadd Phone,1,400.0,2019-04-01 15:22:00,840 4th St, Boston,MA,02215 +185469,Lightning Charging Cable,1,14.95,2019-04-09 21:08:00,377 5th St, Los Angeles,CA,90001 +185470,Bose SoundSport Headphones,1,99.99,2019-04-16 14:05:00,961 2nd St, San Francisco,CA,94016 +185471,Bose SoundSport Headphones,1,99.99,2019-04-16 22:48:00,715 1st St, San Francisco,CA,94016 +185472,Lightning Charging Cable,1,14.95,2019-04-16 20:27:00,718 Wilson St, San Francisco,CA,94016 +185473,Wired Headphones,1,11.99,2019-04-14 16:23:00,824 Maple St, New York City,NY,10001 +185474,Lightning Charging Cable,1,14.95,2019-04-13 11:20:00,475 Adams St, Austin,TX,73301 +185475,Wired Headphones,1,11.99,2019-04-29 23:16:00,858 Madison St, Los Angeles,CA,90001 +185476,Flatscreen TV,1,300.0,2019-04-25 18:59:00,929 7th St, Los Angeles,CA,90001 +185477,Lightning Charging Cable,1,14.95,2019-04-19 08:57:00,839 Ridge St, New York City,NY,10001 +185478,USB-C Charging Cable,1,11.95,2019-04-24 16:32:00,98 Spruce St, Boston,MA,02215 +185479,Bose SoundSport Headphones,1,99.99,2019-04-10 17:48:00,228 Lake St, Boston,MA,02215 +185480,Apple Airpods Headphones,1,150.0,2019-04-14 13:13:00,764 14th St, Los Angeles,CA,90001 +185481,27in FHD Monitor,1,149.99,2019-04-29 23:35:00,59 12th St, San Francisco,CA,94016 +185482,Lightning Charging Cable,1,14.95,2019-04-03 21:27:00,431 Spruce St, Austin,TX,73301 +185483,iPhone,1,700.0,2019-04-16 15:27:00,423 Forest St, New York City,NY,10001 +185483,Lightning Charging Cable,1,14.95,2019-04-16 15:27:00,423 Forest St, New York City,NY,10001 +185484,Lightning Charging Cable,1,14.95,2019-04-21 12:09:00,911 Lakeview St, San Francisco,CA,94016 +185485,Wired Headphones,1,11.99,2019-04-28 00:52:00,221 12th St, San Francisco,CA,94016 +185486,Google Phone,1,600.0,2019-04-10 21:08:00,986 13th St, San Francisco,CA,94016 +185487,AA Batteries (4-pack),1,3.84,2019-04-17 21:27:00,145 Elm St, Seattle,WA,98101 +185488,AAA Batteries (4-pack),1,2.99,2019-04-11 15:59:00,760 5th St, San Francisco,CA,94016 +185489,AA Batteries (4-pack),1,3.84,2019-04-13 20:37:00,734 Wilson St, San Francisco,CA,94016 +185490,ThinkPad Laptop,1,999.99,2019-04-07 15:15:00,325 12th St, Los Angeles,CA,90001 +185491,34in Ultrawide Monitor,1,379.99,2019-04-16 07:10:00,72 West St, San Francisco,CA,94016 +185492,Apple Airpods Headphones,1,150.0,2019-04-08 13:04:00,748 Ridge St, Los Angeles,CA,90001 +185493,27in 4K Gaming Monitor,1,389.99,2019-04-01 20:12:00,143 6th St, San Francisco,CA,94016 +185494,ThinkPad Laptop,1,999.99,2019-04-24 16:11:00,260 8th St, San Francisco,CA,94016 +185495,34in Ultrawide Monitor,1,379.99,2019-04-09 23:07:00,714 Sunset St, San Francisco,CA,94016 +185496,Lightning Charging Cable,1,14.95,2019-04-08 12:52:00,715 6th St, Los Angeles,CA,90001 +185497,Macbook Pro Laptop,1,1700.0,2019-04-28 01:52:00,621 2nd St, San Francisco,CA,94016 +185498,34in Ultrawide Monitor,1,379.99,2019-04-19 08:09:00,822 Jackson St, Austin,TX,73301 +185499,Apple Airpods Headphones,1,150.0,2019-04-17 22:34:00,957 Willow St, Portland,ME,04101 +185500,ThinkPad Laptop,1,999.99,2019-04-01 17:22:00,983 8th St, San Francisco,CA,94016 +185501,Bose SoundSport Headphones,1,99.99,2019-04-20 19:58:00,258 Adams St, Atlanta,GA,30301 +185502,AA Batteries (4-pack),1,3.84,2019-04-17 20:49:00,830 Meadow St, Atlanta,GA,30301 +185503,AA Batteries (4-pack),1,3.84,2019-04-11 19:37:00,363 6th St, San Francisco,CA,94016 +185504,Wired Headphones,1,11.99,2019-04-07 22:18:00,250 9th St, Los Angeles,CA,90001 +185505,Lightning Charging Cable,1,14.95,2019-04-15 17:44:00,775 Maple St, Seattle,WA,98101 +185506,AAA Batteries (4-pack),2,2.99,2019-04-21 23:15:00,475 9th St, Austin,TX,73301 +185507,AA Batteries (4-pack),1,3.84,2019-04-11 19:34:00,187 Johnson St, Seattle,WA,98101 +185508,Lightning Charging Cable,1,14.95,2019-04-29 22:53:00,117 Lakeview St, Seattle,WA,98101 +185509,Apple Airpods Headphones,1,150.0,2019-04-03 16:42:00,497 13th St, Dallas,TX,75001 +185510,iPhone,1,700.0,2019-04-02 17:46:00,779 10th St, Boston,MA,02215 +185511,Bose SoundSport Headphones,1,99.99,2019-04-26 21:10:00,677 Ridge St, New York City,NY,10001 +185512,Wired Headphones,1,11.99,2019-04-27 15:04:00,251 Highland St, Portland,ME,04101 +185513,Bose SoundSport Headphones,1,99.99,2019-04-17 16:36:00,264 Adams St, Austin,TX,73301 +185514,Lightning Charging Cable,1,14.95,2019-04-13 21:38:00,997 North St, Austin,TX,73301 +185515,Flatscreen TV,1,300.0,2019-04-26 22:00:00,309 South St, Seattle,WA,98101 +185516,Bose SoundSport Headphones,1,99.99,2019-04-25 15:19:00,916 5th St, San Francisco,CA,94016 +185516,Wired Headphones,1,11.99,2019-04-25 15:19:00,916 5th St, San Francisco,CA,94016 +185517,AAA Batteries (4-pack),1,2.99,2019-04-08 14:50:00,501 13th St, Boston,MA,02215 +185518,Google Phone,1,600.0,2019-04-23 22:07:00,427 Ridge St, Boston,MA,02215 +185519,Lightning Charging Cable,1,14.95,2019-04-17 13:43:00,221 West St, New York City,NY,10001 +185520,AA Batteries (4-pack),1,3.84,2019-04-22 07:22:00,244 4th St, San Francisco,CA,94016 +185521,Apple Airpods Headphones,1,150.0,2019-04-27 03:08:00,438 Highland St, San Francisco,CA,94016 +185522,AA Batteries (4-pack),1,3.84,2019-04-27 14:46:00,482 North St, San Francisco,CA,94016 +185523,AAA Batteries (4-pack),1,2.99,2019-04-20 20:00:00,876 Meadow St, San Francisco,CA,94016 +185524,iPhone,1,700.0,2019-04-26 12:02:00,971 South St, Seattle,WA,98101 +185525,AAA Batteries (4-pack),2,2.99,2019-04-23 11:57:00,328 Forest St, New York City,NY,10001 +185526,iPhone,1,700.0,2019-04-25 18:32:00,478 River St, Dallas,TX,75001 +185526,Lightning Charging Cable,1,14.95,2019-04-25 18:32:00,478 River St, Dallas,TX,75001 +185527,Wired Headphones,1,11.99,2019-04-15 23:06:00,477 Lakeview St, Boston,MA,02215 +185528,AAA Batteries (4-pack),1,2.99,2019-04-21 14:44:00,96 10th St, Portland,ME,04101 +185529,Wired Headphones,1,11.99,2019-04-11 14:36:00,799 Highland St, Atlanta,GA,30301 +185530,AA Batteries (4-pack),1,3.84,2019-04-01 12:47:00,834 12th St, Seattle,WA,98101 +185531,Bose SoundSport Headphones,1,99.99,2019-04-30 10:07:00,395 Cherry St, New York City,NY,10001 +185532,20in Monitor,1,109.99,2019-04-19 19:33:00,555 Lakeview St, New York City,NY,10001 +185533,Apple Airpods Headphones,1,150.0,2019-04-19 08:56:00,609 North St, Seattle,WA,98101 +185534,iPhone,1,700.0,2019-04-18 00:30:00,122 West St, San Francisco,CA,94016 +185534,Lightning Charging Cable,1,14.95,2019-04-18 00:30:00,122 West St, San Francisco,CA,94016 +185535,Apple Airpods Headphones,1,150.0,2019-04-20 13:58:00,677 Main St, Portland,ME,04101 +185536,Lightning Charging Cable,1,14.95,2019-04-24 22:21:00,748 Park St, Boston,MA,02215 +185537,27in FHD Monitor,1,149.99,2019-04-28 10:59:00,246 Washington St, San Francisco,CA,94016 +185538,AAA Batteries (4-pack),1,2.99,2019-04-27 19:35:00,60 Lincoln St, Atlanta,GA,30301 +185539,Lightning Charging Cable,1,14.95,2019-04-01 09:25:00,298 9th St, Dallas,TX,75001 +185540,USB-C Charging Cable,2,11.95,2019-04-01 19:57:00,523 6th St, Los Angeles,CA,90001 +185541,AA Batteries (4-pack),3,3.84,2019-04-03 11:30:00,14 Elm St, New York City,NY,10001 +185542,USB-C Charging Cable,1,11.95,2019-04-25 15:21:00,511 Washington St, Dallas,TX,75001 +185543,USB-C Charging Cable,1,11.95,2019-04-05 08:28:00,965 5th St, San Francisco,CA,94016 +185544,Bose SoundSport Headphones,1,99.99,2019-04-05 19:33:00,389 2nd St, San Francisco,CA,94016 +185545,Lightning Charging Cable,1,14.95,2019-04-14 20:53:00,699 Cedar St, Atlanta,GA,30301 +185546,34in Ultrawide Monitor,1,379.99,2019-04-08 17:09:00,841 Church St, San Francisco,CA,94016 +185547,Bose SoundSport Headphones,1,99.99,2019-04-09 12:24:00,410 Madison St, New York City,NY,10001 +185548,ThinkPad Laptop,1,999.99,2019-04-21 12:10:00,362 13th St, Atlanta,GA,30301 +185549,AA Batteries (4-pack),1,3.84,2019-04-04 20:21:00,381 River St, New York City,NY,10001 +185550,AAA Batteries (4-pack),2,2.99,2019-04-03 14:58:00,868 Madison St, Boston,MA,02215 +185551,USB-C Charging Cable,1,11.95,2019-04-07 20:52:00,389 Lake St, Los Angeles,CA,90001 +185552,Wired Headphones,1,11.99,2019-04-03 14:01:00,536 11th St, Boston,MA,02215 +185553,Wired Headphones,1,11.99,2019-04-14 19:03:00,196 North St, San Francisco,CA,94016 +185554,Wired Headphones,1,11.99,2019-04-25 13:46:00,359 North St, Boston,MA,02215 +185555,Wired Headphones,1,11.99,2019-04-03 19:59:00,900 Hill St, San Francisco,CA,94016 +185556,Wired Headphones,1,11.99,2019-04-11 14:44:00,384 Chestnut St, Atlanta,GA,30301 +185557,AA Batteries (4-pack),1,3.84,2019-04-13 23:44:00,401 Lakeview St, New York City,NY,10001 +185558,LG Dryer,1,600.0,2019-04-24 13:14:00,201 North St, Los Angeles,CA,90001 +185559,Wired Headphones,1,11.99,2019-04-06 11:42:00,925 Ridge St, Austin,TX,73301 +185560,Bose SoundSport Headphones,1,99.99,2019-04-17 10:42:00,689 River St, Boston,MA,02215 +185561,iPhone,1,700.0,2019-04-29 04:11:00,220 Spruce St, San Francisco,CA,94016 +185562,AA Batteries (4-pack),1,3.84,2019-04-10 17:46:00,948 Main St, Los Angeles,CA,90001 +185563,Bose SoundSport Headphones,1,99.99,2019-04-15 15:22:00,640 Pine St, Los Angeles,CA,90001 +185564,Lightning Charging Cable,2,14.95,2019-04-09 11:16:00,640 Elm St, Portland,OR,97035 +185565,AAA Batteries (4-pack),1,2.99,2019-04-29 15:58:00,172 North St, San Francisco,CA,94016 +185566,USB-C Charging Cable,1,11.95,2019-04-02 12:03:00,459 Cherry St, Los Angeles,CA,90001 +185567,Lightning Charging Cable,1,14.95,2019-04-06 18:40:00,727 10th St, New York City,NY,10001 +185568,Flatscreen TV,1,300.0,2019-04-21 16:37:00,568 Willow St, Los Angeles,CA,90001 +185569,Bose SoundSport Headphones,1,99.99,2019-04-10 23:31:00,198 2nd St, San Francisco,CA,94016 +185570,Apple Airpods Headphones,1,150.0,2019-04-09 11:04:00,232 9th St, New York City,NY,10001 +185571,Apple Airpods Headphones,1,150.0,2019-04-04 15:54:00,905 14th St, San Francisco,CA,94016 +185572,LG Washing Machine,1,600.0,2019-04-22 09:12:00,9 Lincoln St, San Francisco,CA,94016 +185573,AA Batteries (4-pack),1,3.84,2019-04-04 13:33:00,883 Hickory St, Seattle,WA,98101 +185574,AAA Batteries (4-pack),2,2.99,2019-04-13 23:52:00,731 Washington St, Los Angeles,CA,90001 +185575,AAA Batteries (4-pack),1,2.99,2019-04-04 19:01:00,514 Dogwood St, San Francisco,CA,94016 +185576,Macbook Pro Laptop,1,1700.0,2019-04-15 22:11:00,794 Jackson St, Los Angeles,CA,90001 +185577,AA Batteries (4-pack),1,3.84,2019-04-18 14:27:00,982 Walnut St, San Francisco,CA,94016 +185578,Wired Headphones,1,11.99,2019-04-29 13:22:00,709 Washington St, Los Angeles,CA,90001 +185579,Wired Headphones,1,11.99,2019-04-15 23:03:00,967 Elm St, Los Angeles,CA,90001 +185580,iPhone,1,700.0,2019-04-16 04:49:00,355 Cherry St, Los Angeles,CA,90001 +185581,USB-C Charging Cable,1,11.95,2019-04-01 11:28:00,418 5th St, Los Angeles,CA,90001 +185582,AAA Batteries (4-pack),2,2.99,2019-04-26 21:18:00,853 6th St, Los Angeles,CA,90001 +185583,Bose SoundSport Headphones,1,99.99,2019-04-26 16:25:00,513 Cherry St, Austin,TX,73301 +185584,iPhone,1,700.0,2019-04-16 23:28:00,204 12th St, Atlanta,GA,30301 +185585,Wired Headphones,1,11.99,2019-04-11 15:00:00,385 Park St, Boston,MA,02215 +185586,Wired Headphones,1,11.99,2019-04-07 13:46:00,673 5th St, Austin,TX,73301 +185587,AA Batteries (4-pack),1,3.84,2019-04-12 15:35:00,987 13th St, New York City,NY,10001 +185588,20in Monitor,1,109.99,2019-04-01 19:28:00,598 Willow St, Los Angeles,CA,90001 +185589,USB-C Charging Cable,1,11.95,2019-04-17 16:50:00,744 Sunset St, San Francisco,CA,94016 +185590,USB-C Charging Cable,1,11.95,2019-04-01 23:20:00,482 North St, Seattle,WA,98101 +185591,27in FHD Monitor,1,149.99,2019-04-28 16:18:00,939 Main St, Boston,MA,02215 +185592,AA Batteries (4-pack),1,3.84,2019-04-19 14:42:00,7 South St, Boston,MA,02215 +185593,Google Phone,1,600.0,2019-04-04 09:09:00,298 Willow St, Los Angeles,CA,90001 +185594,Google Phone,1,600.0,2019-04-02 09:07:00,158 7th St, San Francisco,CA,94016 +185595,34in Ultrawide Monitor,1,379.99,2019-04-02 14:43:00,854 5th St, Dallas,TX,75001 +185596,Lightning Charging Cable,1,14.95,2019-04-05 22:27:00,888 7th St, Los Angeles,CA,90001 +185597,AAA Batteries (4-pack),3,2.99,2019-04-27 18:12:00,823 Forest St, Seattle,WA,98101 +185598,AAA Batteries (4-pack),2,2.99,2019-04-20 11:42:00,346 Walnut St, San Francisco,CA,94016 +185599,Wired Headphones,1,11.99,2019-04-15 20:14:00,532 1st St, Portland,OR,97035 +185600,AAA Batteries (4-pack),1,2.99,2019-04-18 11:55:00,7 Johnson St, Los Angeles,CA,90001 +185601,AA Batteries (4-pack),1,3.84,2019-04-01 09:58:00,627 Forest St, Los Angeles,CA,90001 +185602,USB-C Charging Cable,1,11.95,2019-04-13 10:43:00,336 Meadow St, Dallas,TX,75001 +185603,Apple Airpods Headphones,1,150.0,2019-04-22 15:39:00,922 6th St, Dallas,TX,75001 +185604,Google Phone,1,600.0,2019-04-05 10:31:00,98 6th St, San Francisco,CA,94016 +185605,Bose SoundSport Headphones,1,99.99,2019-04-15 17:35:00,904 Jackson St, Atlanta,GA,30301 +185606,Lightning Charging Cable,1,14.95,2019-04-01 09:59:00,338 10th St, San Francisco,CA,94016 +185607,20in Monitor,1,109.99,2019-04-09 18:39:00,136 12th St, Los Angeles,CA,90001 +185608,Flatscreen TV,1,300.0,2019-04-17 16:18:00,70 13th St, Portland,OR,97035 +185609,Lightning Charging Cable,1,14.95,2019-04-02 21:08:00,427 13th St, San Francisco,CA,94016 +185610,27in FHD Monitor,1,149.99,2019-04-05 11:41:00,16 Jefferson St, Boston,MA,02215 +185611,Apple Airpods Headphones,1,150.0,2019-04-13 17:09:00,61 South St, Atlanta,GA,30301 +185612,20in Monitor,1,109.99,2019-04-19 10:05:00,670 2nd St, Seattle,WA,98101 +185613,27in 4K Gaming Monitor,1,389.99,2019-04-03 14:42:00,192 12th St, New York City,NY,10001 +185614,AAA Batteries (4-pack),3,2.99,2019-04-30 05:46:00,374 13th St, San Francisco,CA,94016 +185615,34in Ultrawide Monitor,1,379.99,2019-04-25 17:50:00,953 Center St, San Francisco,CA,94016 +185616,Vareebadd Phone,1,400.0,2019-04-03 14:36:00,682 4th St, Seattle,WA,98101 +185617,AAA Batteries (4-pack),1,2.99,2019-04-10 18:37:00,967 Pine St, San Francisco,CA,94016 +185618,Bose SoundSport Headphones,1,99.99,2019-04-10 17:07:00,941 13th St, Dallas,TX,75001 +185619,Lightning Charging Cable,1,14.95,2019-04-09 07:11:00,42 Pine St, Boston,MA,02215 +185620,Google Phone,1,600.0,2019-04-15 13:50:00,374 7th St, Atlanta,GA,30301 +185621,Lightning Charging Cable,2,14.95,2019-04-03 11:06:00,525 Adams St, Austin,TX,73301 +185622,AAA Batteries (4-pack),2,2.99,2019-04-26 14:03:00,702 2nd St, Los Angeles,CA,90001 +185623,AAA Batteries (4-pack),1,2.99,2019-04-22 17:13:00,629 14th St, San Francisco,CA,94016 +185624,AAA Batteries (4-pack),1,2.99,2019-04-05 21:28:00,627 9th St, Los Angeles,CA,90001 +185625,Lightning Charging Cable,1,14.95,2019-04-28 19:46:00,161 1st St, San Francisco,CA,94016 +185626,Apple Airpods Headphones,1,150.0,2019-04-20 10:39:00,158 11th St, Los Angeles,CA,90001 +185627,Lightning Charging Cable,1,14.95,2019-04-08 11:51:00,289 Johnson St, Austin,TX,73301 +185628,AA Batteries (4-pack),1,3.84,2019-04-11 20:11:00,664 Spruce St, Austin,TX,73301 +185629,AAA Batteries (4-pack),1,2.99,2019-04-17 14:19:00,501 Church St, New York City,NY,10001 +185630,Wired Headphones,1,11.99,2019-04-04 14:39:00,335 Washington St, Seattle,WA,98101 +185630,Apple Airpods Headphones,1,150.0,2019-04-04 14:39:00,335 Washington St, Seattle,WA,98101 +185631,AAA Batteries (4-pack),1,2.99,2019-04-24 00:11:00,137 5th St, San Francisco,CA,94016 +185632,Macbook Pro Laptop,1,1700.0,2019-04-07 19:06:00,747 8th St, Los Angeles,CA,90001 +185633,Flatscreen TV,1,300.0,2019-04-12 08:07:00,668 Meadow St, Boston,MA,02215 +185634,Apple Airpods Headphones,1,150.0,2019-04-13 08:51:00,780 6th St, Atlanta,GA,30301 +185635,Google Phone,1,600.0,2019-04-12 21:32:00,901 Hill St, Los Angeles,CA,90001 +185636,Lightning Charging Cable,1,14.95,2019-04-09 07:03:00,980 Madison St, New York City,NY,10001 +185637,AA Batteries (4-pack),1,3.84,2019-04-21 09:27:00,898 13th St, Boston,MA,02215 +185638,AA Batteries (4-pack),1,3.84,2019-04-25 16:46:00,787 Sunset St, New York City,NY,10001 +185639,Wired Headphones,1,11.99,2019-04-21 16:00:00,830 1st St, New York City,NY,10001 +185640,Apple Airpods Headphones,1,150.0,2019-04-07 21:11:00,278 Wilson St, San Francisco,CA,94016 +185641,AA Batteries (4-pack),2,3.84,2019-04-08 22:51:00,636 Lake St, Los Angeles,CA,90001 +185642,AA Batteries (4-pack),1,3.84,2019-04-10 11:51:00,257 Madison St, Portland,ME,04101 +185643,AA Batteries (4-pack),2,3.84,2019-04-14 13:40:00,502 Willow St, New York City,NY,10001 +185644,Wired Headphones,1,11.99,2019-04-01 23:07:00,920 Walnut St, San Francisco,CA,94016 +185645,Lightning Charging Cable,1,14.95,2019-04-13 10:45:00,437 Dogwood St, San Francisco,CA,94016 +185646,USB-C Charging Cable,1,11.95,2019-04-10 14:28:00,393 Sunset St, San Francisco,CA,94016 +185647,Wired Headphones,1,11.99,2019-04-08 14:46:00,521 Pine St, New York City,NY,10001 +185648,Apple Airpods Headphones,1,150.0,2019-04-23 22:12:00,26 Main St, Los Angeles,CA,90001 +185649,Vareebadd Phone,1,400.0,2019-04-03 14:04:00,945 Main St, San Francisco,CA,94016 +185649,AA Batteries (4-pack),2,3.84,2019-04-03 14:04:00,945 Main St, San Francisco,CA,94016 +185650,AA Batteries (4-pack),1,3.84,2019-04-19 18:59:00,124 11th St, Portland,OR,97035 +185651,Macbook Pro Laptop,1,1700.0,2019-04-18 01:16:00,172 Spruce St, Los Angeles,CA,90001 +185652,Wired Headphones,1,11.99,2019-04-27 15:18:00,766 Jefferson St, Austin,TX,73301 +185653,USB-C Charging Cable,1,11.95,2019-04-15 15:24:00,641 2nd St, San Francisco,CA,94016 +185654,Wired Headphones,1,11.99,2019-04-03 14:03:00,321 12th St, San Francisco,CA,94016 +185655,USB-C Charging Cable,1,11.95,2019-04-20 13:02:00,535 Sunset St, San Francisco,CA,94016 +185656,Lightning Charging Cable,1,14.95,2019-04-01 14:29:00,323 10th St, Los Angeles,CA,90001 +185657,AA Batteries (4-pack),2,3.84,2019-04-21 18:43:00,150 Meadow St, New York City,NY,10001 +185658,LG Washing Machine,1,600.0,2019-04-24 13:22:00,744 Park St, Seattle,WA,98101 +185659,Bose SoundSport Headphones,1,99.99,2019-04-20 16:11:00,450 Lakeview St, Dallas,TX,75001 +185660,Bose SoundSport Headphones,1,99.99,2019-04-17 10:58:00,344 9th St, Atlanta,GA,30301 +185661,Lightning Charging Cable,1,14.95,2019-04-19 06:50:00,219 Center St, Seattle,WA,98101 +185662,AA Batteries (4-pack),3,3.84,2019-04-06 22:32:00,502 Spruce St, Los Angeles,CA,90001 +185663,AAA Batteries (4-pack),1,2.99,2019-04-07 17:12:00,940 West St, Austin,TX,73301 +185664,USB-C Charging Cable,1,11.95,2019-04-03 09:33:00,14 Madison St, Dallas,TX,75001 +185665,Google Phone,1,600.0,2019-04-28 21:27:00,250 Johnson St, Portland,OR,97035 +185666,27in FHD Monitor,1,149.99,2019-04-28 19:29:00,530 Dogwood St, Los Angeles,CA,90001 +185667,iPhone,1,700.0,2019-04-22 19:46:00,83 Cedar St, Boston,MA,02215 +185667,AAA Batteries (4-pack),1,2.99,2019-04-22 19:46:00,83 Cedar St, Boston,MA,02215 +185668,AA Batteries (4-pack),1,3.84,2019-04-21 13:06:00,465 8th St, Boston,MA,02215 +185669,AA Batteries (4-pack),1,3.84,2019-04-14 14:04:00,917 Dogwood St, Boston,MA,02215 +185670,AAA Batteries (4-pack),1,2.99,2019-04-20 14:16:00,955 Washington St, Los Angeles,CA,90001 +185671,Bose SoundSport Headphones,1,99.99,2019-04-16 06:52:00,839 Lakeview St, San Francisco,CA,94016 +185672,ThinkPad Laptop,1,999.99,2019-04-18 21:00:00,410 12th St, San Francisco,CA,94016 +185673,USB-C Charging Cable,1,11.95,2019-04-22 21:55:00,437 2nd St, New York City,NY,10001 +185674,27in FHD Monitor,1,149.99,2019-04-10 13:56:00,79 Pine St, San Francisco,CA,94016 +185675,Bose SoundSport Headphones,1,99.99,2019-04-08 14:17:00,732 Willow St, San Francisco,CA,94016 +185676,Apple Airpods Headphones,1,150.0,2019-04-27 18:44:00,849 12th St, Boston,MA,02215 +185677,27in 4K Gaming Monitor,1,389.99,2019-04-01 17:37:00,723 Elm St, San Francisco,CA,94016 +185678,Lightning Charging Cable,1,14.95,2019-04-02 13:39:00,434 6th St, Austin,TX,73301 +185679,Apple Airpods Headphones,1,150.0,2019-04-23 11:12:00,882 Church St, Seattle,WA,98101 +185680,AAA Batteries (4-pack),2,2.99,2019-04-17 09:13:00,896 Meadow St, Los Angeles,CA,90001 +185681,Google Phone,1,600.0,2019-04-24 12:02:00,105 2nd St, Seattle,WA,98101 +185682,AA Batteries (4-pack),2,3.84,2019-04-28 14:54:00,874 Forest St, Dallas,TX,75001 +185683,Apple Airpods Headphones,1,150.0,2019-04-07 16:24:00,569 Park St, San Francisco,CA,94016 +185684,Apple Airpods Headphones,1,150.0,2019-04-22 11:50:00,369 Jackson St, San Francisco,CA,94016 +185684,ThinkPad Laptop,1,999.99,2019-04-22 11:50:00,369 Jackson St, San Francisco,CA,94016 +185685,Wired Headphones,1,11.99,2019-04-27 17:52:00,809 2nd St, Los Angeles,CA,90001 +185686,Apple Airpods Headphones,1,150.0,2019-04-07 13:33:00,177 Dogwood St, Dallas,TX,75001 +185687,27in 4K Gaming Monitor,1,389.99,2019-04-17 14:55:00,493 Lincoln St, New York City,NY,10001 +185688,USB-C Charging Cable,1,11.95,2019-04-25 20:35:00,962 Adams St, San Francisco,CA,94016 +185689,AAA Batteries (4-pack),1,2.99,2019-04-28 18:17:00,455 West St, San Francisco,CA,94016 +185690,Wired Headphones,1,11.99,2019-04-20 16:43:00,800 West St, Atlanta,GA,30301 +185691,Bose SoundSport Headphones,1,99.99,2019-04-02 18:08:00,532 Main St, Los Angeles,CA,90001 +185692,Bose SoundSport Headphones,1,99.99,2019-04-23 10:08:00,938 Lincoln St, San Francisco,CA,94016 +185693,USB-C Charging Cable,1,11.95,2019-04-26 18:21:00,915 River St, San Francisco,CA,94016 +185694,Bose SoundSport Headphones,1,99.99,2019-04-11 20:20:00,359 13th St, Seattle,WA,98101 +185695,Lightning Charging Cable,3,14.95,2019-04-11 23:28:00,458 Main St, Portland,OR,97035 +185696,Macbook Pro Laptop,1,1700.0,2019-04-16 13:16:00,957 Elm St, Los Angeles,CA,90001 +185697,AAA Batteries (4-pack),1,2.99,2019-04-29 15:14:00,326 Pine St, Dallas,TX,75001 +185698,27in 4K Gaming Monitor,1,389.99,2019-04-12 12:05:00,748 1st St, San Francisco,CA,94016 +185699,AAA Batteries (4-pack),1,2.99,2019-04-21 07:27:00,889 Park St, San Francisco,CA,94016 +185700,Wired Headphones,1,11.99,2019-04-07 13:27:00,16 1st St, Austin,TX,73301 +185701,iPhone,1,700.0,2019-04-26 09:37:00,29 Elm St, New York City,NY,10001 +185702,AA Batteries (4-pack),3,3.84,2019-04-24 18:52:00,953 Hickory St, Dallas,TX,75001 +185703,AAA Batteries (4-pack),1,2.99,2019-04-04 20:52:00,604 Jackson St, New York City,NY,10001 +185704,27in FHD Monitor,1,149.99,2019-04-29 11:03:00,398 Lakeview St, Los Angeles,CA,90001 +185705,Bose SoundSport Headphones,1,99.99,2019-04-03 00:28:00,758 Center St, Dallas,TX,75001 +185706,34in Ultrawide Monitor,1,379.99,2019-04-29 07:44:00,487 5th St, Portland,OR,97035 +185707,USB-C Charging Cable,1,11.95,2019-04-15 23:05:00,463 West St, Dallas,TX,75001 +185708,USB-C Charging Cable,1,11.95,2019-04-08 21:27:00,940 Maple St, New York City,NY,10001 +185709,Apple Airpods Headphones,1,150.0,2019-04-06 06:10:00,306 Cherry St, San Francisco,CA,94016 +185710,Wired Headphones,1,11.99,2019-04-22 14:05:00,388 Johnson St, New York City,NY,10001 +185711,AA Batteries (4-pack),5,3.84,2019-04-10 11:54:00,481 South St, Los Angeles,CA,90001 +185712,Macbook Pro Laptop,1,1700.0,2019-04-27 19:57:00,230 5th St, Portland,ME,04101 +185713,Wired Headphones,1,11.99,2019-04-25 14:55:00,506 Chestnut St, San Francisco,CA,94016 +185714,LG Dryer,1,600.0,2019-04-05 19:20:00,413 Maple St, Boston,MA,02215 +185715,Apple Airpods Headphones,1,150.0,2019-04-28 10:16:00,749 Elm St, Portland,OR,97035 +185716,AAA Batteries (4-pack),2,2.99,2019-04-28 08:32:00,788 Elm St, Atlanta,GA,30301 +185717,Wired Headphones,1,11.99,2019-04-20 21:43:00,945 Ridge St, Dallas,TX,75001 +185718,Lightning Charging Cable,1,14.95,2019-04-05 00:40:00,388 Spruce St, San Francisco,CA,94016 +185719,AA Batteries (4-pack),1,3.84,2019-04-24 22:40:00,285 4th St, Seattle,WA,98101 +185720,Wired Headphones,1,11.99,2019-04-13 23:33:00,66 Center St, Los Angeles,CA,90001 +185721,AAA Batteries (4-pack),1,2.99,2019-04-14 14:00:00,439 12th St, Austin,TX,73301 +185722,AAA Batteries (4-pack),1,2.99,2019-04-28 11:44:00,650 Walnut St, New York City,NY,10001 +185723,AA Batteries (4-pack),1,3.84,2019-04-13 10:25:00,814 Lake St, Dallas,TX,75001 +185724,Lightning Charging Cable,1,14.95,2019-04-29 15:06:00,194 Pine St, San Francisco,CA,94016 +185725,Wired Headphones,2,11.99,2019-04-30 20:18:00,207 Hill St, San Francisco,CA,94016 +185726,AA Batteries (4-pack),1,3.84,2019-04-02 08:50:00,282 14th St, San Francisco,CA,94016 +185727,Bose SoundSport Headphones,1,99.99,2019-04-04 13:37:00,110 Spruce St, Los Angeles,CA,90001 +185728,USB-C Charging Cable,1,11.95,2019-04-09 11:19:00,884 14th St, Boston,MA,02215 +185728,27in FHD Monitor,1,149.99,2019-04-09 11:19:00,884 14th St, Boston,MA,02215 +185729,USB-C Charging Cable,1,11.95,2019-04-26 16:02:00,596 Pine St, Portland,OR,97035 +185730,AA Batteries (4-pack),1,3.84,2019-04-18 13:06:00,687 2nd St, Los Angeles,CA,90001 +185731,27in FHD Monitor,1,149.99,2019-04-04 16:47:00,344 14th St, Portland,OR,97035 +185732,iPhone,1,700.0,2019-04-06 16:36:00,276 9th St, Portland,OR,97035 +185733,AAA Batteries (4-pack),2,2.99,2019-04-21 13:44:00,635 Hickory St, Dallas,TX,75001 +185734,USB-C Charging Cable,1,11.95,2019-04-13 14:55:00,694 Meadow St, Los Angeles,CA,90001 +185735,Bose SoundSport Headphones,1,99.99,2019-04-24 12:54:00,787 4th St, Atlanta,GA,30301 +185736,27in 4K Gaming Monitor,1,389.99,2019-04-23 20:07:00,346 Chestnut St, Boston,MA,02215 +185737,AA Batteries (4-pack),3,3.84,2019-04-26 15:07:00,207 Madison St, San Francisco,CA,94016 +185738,Wired Headphones,1,11.99,2019-04-05 14:08:00,766 Walnut St, San Francisco,CA,94016 +185739,34in Ultrawide Monitor,1,379.99,2019-04-21 15:46:00,492 1st St, San Francisco,CA,94016 +185740,AAA Batteries (4-pack),1,2.99,2019-04-13 21:12:00,172 Elm St, San Francisco,CA,94016 +185741,USB-C Charging Cable,1,11.95,2019-04-05 10:20:00,477 Walnut St, Seattle,WA,98101 +185742,Wired Headphones,1,11.99,2019-04-17 11:09:00,478 Cedar St, Boston,MA,02215 +185743,27in FHD Monitor,1,149.99,2019-04-18 13:27:00,382 Willow St, Boston,MA,02215 +185744,AAA Batteries (4-pack),1,2.99,2019-04-09 18:27:00,414 11th St, Atlanta,GA,30301 +185745,USB-C Charging Cable,1,11.95,2019-04-16 20:55:00,912 13th St, Boston,MA,02215 +185746,USB-C Charging Cable,1,11.95,2019-04-12 06:25:00,81 5th St, Los Angeles,CA,90001 +185747,Lightning Charging Cable,2,14.95,2019-04-30 12:53:00,983 River St, Dallas,TX,75001 +185748,Wired Headphones,1,11.99,2019-04-08 16:38:00,77 Hickory St, Austin,TX,73301 +185749,20in Monitor,1,109.99,2019-04-26 21:20:00,766 Maple St, Boston,MA,02215 +185750,AA Batteries (4-pack),2,3.84,2019-04-26 11:28:00,467 11th St, Atlanta,GA,30301 +185751,iPhone,1,700.0,2019-04-25 12:18:00,593 4th St, New York City,NY,10001 +185752,USB-C Charging Cable,1,11.95,2019-04-24 11:51:00,924 Washington St, New York City,NY,10001 +185753,AA Batteries (4-pack),2,3.84,2019-04-17 10:59:00,91 12th St, Dallas,TX,75001 +185753,Lightning Charging Cable,1,14.95,2019-04-17 10:59:00,91 12th St, Dallas,TX,75001 +185754,Apple Airpods Headphones,1,150.0,2019-04-10 13:30:00,600 Adams St, New York City,NY,10001 +185755,Apple Airpods Headphones,1,150.0,2019-04-18 21:41:00,450 10th St, Los Angeles,CA,90001 +185756,Lightning Charging Cable,2,14.95,2019-04-13 13:52:00,970 Hickory St, New York City,NY,10001 +185757,Apple Airpods Headphones,1,150.0,2019-04-08 16:01:00,63 Park St, San Francisco,CA,94016 +185758,Bose SoundSport Headphones,1,99.99,2019-04-07 11:15:00,660 Cherry St, Los Angeles,CA,90001 +185759,AAA Batteries (4-pack),2,2.99,2019-04-24 16:06:00,308 2nd St, Los Angeles,CA,90001 +185760,27in FHD Monitor,1,149.99,2019-04-19 11:50:00,661 Wilson St, Los Angeles,CA,90001 +185761,Bose SoundSport Headphones,1,99.99,2019-04-08 18:18:00,668 Ridge St, Seattle,WA,98101 +185762,Wired Headphones,1,11.99,2019-04-03 14:05:00,360 12th St, San Francisco,CA,94016 +185763,27in FHD Monitor,1,149.99,2019-04-08 17:55:00,345 West St, San Francisco,CA,94016 +185764,USB-C Charging Cable,1,11.95,2019-04-09 19:01:00,440 7th St, Los Angeles,CA,90001 +185764,ThinkPad Laptop,1,999.99,2019-04-09 19:01:00,440 7th St, Los Angeles,CA,90001 +185765,AAA Batteries (4-pack),1,2.99,2019-04-16 10:23:00,669 Madison St, New York City,NY,10001 +185766,AA Batteries (4-pack),1,3.84,2019-04-18 22:55:00,950 Park St, San Francisco,CA,94016 +185767,Bose SoundSport Headphones,1,99.99,2019-04-21 11:21:00,246 4th St, Atlanta,GA,30301 +185768,ThinkPad Laptop,1,999.99,2019-04-24 09:51:00,146 West St, Atlanta,GA,30301 +185769,Wired Headphones,2,11.99,2019-04-01 16:47:00,203 Dogwood St, Austin,TX,73301 +185770,Wired Headphones,1,11.99,2019-04-19 22:50:00,781 10th St, Portland,OR,97035 +185771,Macbook Pro Laptop,1,1700.0,2019-04-07 13:47:00,387 10th St, Atlanta,GA,30301 +185772,USB-C Charging Cable,3,11.95,2019-04-26 18:25:00,305 Main St, Boston,MA,02215 +185773,AA Batteries (4-pack),1,3.84,2019-04-08 12:58:00,28 Lincoln St, Atlanta,GA,30301 +185774,Wired Headphones,1,11.99,2019-04-28 22:47:00,418 9th St, Seattle,WA,98101 +185775,ThinkPad Laptop,1,999.99,2019-04-27 17:28:00,512 Main St, New York City,NY,10001 +185776,AAA Batteries (4-pack),6,2.99,2019-04-14 21:18:00,85 Maple St, San Francisco,CA,94016 +185777,LG Dryer,1,600.0,2019-04-04 14:15:00,130 Hill St, Los Angeles,CA,90001 +185778,Wired Headphones,1,11.99,2019-04-14 16:29:00,864 Main St, Boston,MA,02215 +185779,USB-C Charging Cable,1,11.95,2019-04-01 21:02:00,524 Johnson St, Boston,MA,02215 +185780,Wired Headphones,1,11.99,2019-04-03 15:22:00,702 7th St, New York City,NY,10001 +185781,AAA Batteries (4-pack),3,2.99,2019-04-10 15:39:00,246 North St, Austin,TX,73301 +185782,AAA Batteries (4-pack),2,2.99,2019-04-20 16:29:00,116 Madison St, Atlanta,GA,30301 +185783,Bose SoundSport Headphones,1,99.99,2019-04-05 09:46:00,578 Johnson St, San Francisco,CA,94016 +185784,Flatscreen TV,1,300.0,2019-04-27 19:03:00,370 Ridge St, New York City,NY,10001 +185785,AA Batteries (4-pack),2,3.84,2019-04-13 19:10:00,235 12th St, Boston,MA,02215 +185786,34in Ultrawide Monitor,1,379.99,2019-04-01 21:58:00,965 Sunset St, New York City,NY,10001 +185787,AA Batteries (4-pack),1,3.84,2019-04-21 16:31:00,609 14th St, Boston,MA,02215 +185788,ThinkPad Laptop,1,999.99,2019-04-10 21:42:00,654 Cedar St, Dallas,TX,75001 +185789,Bose SoundSport Headphones,1,99.99,2019-04-01 19:51:00,390 Washington St, Boston,MA,02215 +185790,USB-C Charging Cable,1,11.95,2019-04-20 19:03:00,755 10th St, Boston,MA,02215 +185791,Flatscreen TV,1,300.0,2019-04-09 03:12:00,914 Pine St, Atlanta,GA,30301 +185792,27in FHD Monitor,1,149.99,2019-04-08 01:07:00,373 Park St, San Francisco,CA,94016 +185793,Apple Airpods Headphones,1,150.0,2019-04-21 12:04:00,828 Center St, Portland,ME,04101 +185794,Lightning Charging Cable,1,14.95,2019-04-19 01:43:00,615 6th St, New York City,NY,10001 +185795,AAA Batteries (4-pack),3,2.99,2019-04-24 12:43:00,308 Elm St, San Francisco,CA,94016 +185796,Lightning Charging Cable,1,14.95,2019-04-18 23:37:00,162 Lake St, Dallas,TX,75001 +185797,Lightning Charging Cable,2,14.95,2019-04-25 17:35:00,899 Meadow St, New York City,NY,10001 +185798,AA Batteries (4-pack),1,3.84,2019-04-15 08:36:00,229 River St, Atlanta,GA,30301 +185799,Wired Headphones,1,11.99,2019-04-29 08:00:00,147 10th St, San Francisco,CA,94016 +185800,USB-C Charging Cable,1,11.95,2019-04-28 14:28:00,378 5th St, Seattle,WA,98101 +185801,AAA Batteries (4-pack),2,2.99,2019-04-24 10:12:00,259 12th St, Boston,MA,02215 +185802,AAA Batteries (4-pack),3,2.99,2019-04-21 15:24:00,394 Madison St, San Francisco,CA,94016 +185803,AAA Batteries (4-pack),2,2.99,2019-04-18 10:30:00,683 Spruce St, San Francisco,CA,94016 +185804,Apple Airpods Headphones,1,150.0,2019-04-07 17:46:00,354 Forest St, Atlanta,GA,30301 +185805,20in Monitor,1,109.99,2019-04-23 10:52:00,247 Adams St, New York City,NY,10001 +185806,20in Monitor,1,109.99,2019-04-08 10:35:00,405 Dogwood St, Seattle,WA,98101 +185807,Apple Airpods Headphones,1,150.0,2019-04-30 15:46:00,50 Walnut St, Portland,OR,97035 +185808,AAA Batteries (4-pack),2,2.99,2019-04-25 11:57:00,172 Maple St, Los Angeles,CA,90001 +185809,AAA Batteries (4-pack),3,2.99,2019-04-13 15:36:00,593 Adams St, Los Angeles,CA,90001 +185810,USB-C Charging Cable,1,11.95,2019-04-06 21:38:00,341 Johnson St, New York City,NY,10001 +185811,ThinkPad Laptop,1,999.99,2019-04-17 08:54:00,972 10th St, Atlanta,GA,30301 +185812,Wired Headphones,1,11.99,2019-04-17 11:28:00,284 Adams St, Dallas,TX,75001 +185813,Macbook Pro Laptop,1,1700.0,2019-04-23 21:15:00,643 10th St, San Francisco,CA,94016 +185814,USB-C Charging Cable,1,11.95,2019-04-23 01:56:00,971 12th St, Los Angeles,CA,90001 +185815,AAA Batteries (4-pack),1,2.99,2019-04-30 01:58:00,55 12th St, Boston,MA,02215 +185816,Wired Headphones,1,11.99,2019-04-10 14:44:00,260 South St, Los Angeles,CA,90001 +185817,ThinkPad Laptop,1,999.99,2019-04-25 21:54:00,277 Chestnut St, New York City,NY,10001 +185818,Apple Airpods Headphones,1,150.0,2019-04-12 09:42:00,837 Jefferson St, Boston,MA,02215 +185819,USB-C Charging Cable,1,11.95,2019-04-09 17:18:00,809 10th St, Boston,MA,02215 +185820,ThinkPad Laptop,1,999.99,2019-04-23 19:32:00,593 Washington St, Los Angeles,CA,90001 +185821,AAA Batteries (4-pack),2,2.99,2019-04-17 20:30:00,537 1st St, Atlanta,GA,30301 +185822,USB-C Charging Cable,1,11.95,2019-04-23 09:18:00,289 6th St, New York City,NY,10001 +185823,AA Batteries (4-pack),3,3.84,2019-04-27 18:00:00,957 Elm St, Seattle,WA,98101 +185824,Bose SoundSport Headphones,1,99.99,2019-04-16 22:21:00,472 Park St, Los Angeles,CA,90001 +185825,Flatscreen TV,1,300.0,2019-04-18 09:50:00,338 Lincoln St, Atlanta,GA,30301 +185826,Lightning Charging Cable,1,14.95,2019-04-18 20:06:00,929 Wilson St, Dallas,TX,75001 +185827,iPhone,1,700.0,2019-04-05 18:10:00,158 Dogwood St, San Francisco,CA,94016 +185828,Lightning Charging Cable,1,14.95,2019-04-02 17:35:00,155 Spruce St, Portland,OR,97035 +185829,Vareebadd Phone,1,400.0,2019-04-10 17:00:00,243 Johnson St, Seattle,WA,98101 +185830,27in FHD Monitor,1,149.99,2019-04-28 19:44:00,73 Cedar St, New York City,NY,10001 +185831,Lightning Charging Cable,1,14.95,2019-04-05 12:32:00,680 Wilson St, New York City,NY,10001 +185832,Lightning Charging Cable,1,14.95,2019-04-13 04:56:00,94 Pine St, Seattle,WA,98101 +185833,USB-C Charging Cable,2,11.95,2019-04-18 11:45:00,972 Main St, New York City,NY,10001 +185834,Wired Headphones,1,11.99,2019-04-30 18:21:00,361 Spruce St, Portland,OR,97035 +185835,Macbook Pro Laptop,1,1700.0,2019-04-05 08:11:00,125 South St, San Francisco,CA,94016 +185836,Lightning Charging Cable,1,14.95,2019-04-19 22:56:00,951 Cherry St, San Francisco,CA,94016 +185837,Macbook Pro Laptop,1,1700.0,2019-04-07 19:59:00,822 Madison St, San Francisco,CA,94016 +185838,USB-C Charging Cable,1,11.95,2019-04-08 17:42:00,675 Main St, Atlanta,GA,30301 +185839,20in Monitor,1,109.99,2019-04-12 20:52:00,938 Wilson St, Los Angeles,CA,90001 +185840,34in Ultrawide Monitor,1,379.99,2019-04-26 20:43:00,457 Park St, Los Angeles,CA,90001 +185841,Bose SoundSport Headphones,1,99.99,2019-04-25 12:36:00,593 13th St, Boston,MA,02215 +185842,Wired Headphones,1,11.99,2019-04-06 12:47:00,640 Hill St, New York City,NY,10001 +185843,Lightning Charging Cable,1,14.95,2019-04-19 14:30:00,724 Ridge St, San Francisco,CA,94016 +185844,Apple Airpods Headphones,1,150.0,2019-04-08 12:46:00,689 Sunset St, Boston,MA,02215 +185845,USB-C Charging Cable,1,11.95,2019-04-07 06:37:00,196 Cherry St, Boston,MA,02215 +185846,Bose SoundSport Headphones,1,99.99,2019-04-06 22:21:00,22 Jefferson St, Boston,MA,02215 +185847,USB-C Charging Cable,1,11.95,2019-04-27 13:29:00,530 Chestnut St, New York City,NY,10001 +185848,27in FHD Monitor,1,149.99,2019-04-16 09:38:00,984 South St, Atlanta,GA,30301 +185849,USB-C Charging Cable,1,11.95,2019-04-17 13:22:00,719 Willow St, Dallas,TX,75001 +185850,AAA Batteries (4-pack),1,2.99,2019-04-15 03:47:00,750 2nd St, San Francisco,CA,94016 +185851,USB-C Charging Cable,1,11.95,2019-04-02 22:58:00,863 Chestnut St, San Francisco,CA,94016 +185852,Wired Headphones,1,11.99,2019-04-06 02:11:00,567 Meadow St, San Francisco,CA,94016 +185853,AAA Batteries (4-pack),4,2.99,2019-04-08 21:06:00,874 Madison St, Portland,ME,04101 +185854,Wired Headphones,1,11.99,2019-04-23 12:42:00,409 Park St, San Francisco,CA,94016 +185855,ThinkPad Laptop,1,999.99,2019-04-19 13:11:00,255 1st St, Seattle,WA,98101 +185856,ThinkPad Laptop,1,999.99,2019-04-26 20:14:00,3 Chestnut St, Austin,TX,73301 +185857,Apple Airpods Headphones,1,150.0,2019-04-02 13:42:00,595 Spruce St, Los Angeles,CA,90001 +185858,Wired Headphones,1,11.99,2019-04-19 10:44:00,569 Lakeview St, Atlanta,GA,30301 +185859,Wired Headphones,1,11.99,2019-04-01 12:45:00,23 12th St, Los Angeles,CA,90001 +185860,Lightning Charging Cable,1,14.95,2019-04-09 10:17:00,280 Washington St, Los Angeles,CA,90001 +185861,AA Batteries (4-pack),2,3.84,2019-04-11 22:11:00,270 Wilson St, San Francisco,CA,94016 +185862,iPhone,1,700.0,2019-04-06 19:08:00,998 Lake St, San Francisco,CA,94016 +185862,Lightning Charging Cable,1,14.95,2019-04-06 19:08:00,998 Lake St, San Francisco,CA,94016 +185863,34in Ultrawide Monitor,1,379.99,2019-04-27 09:36:00,50 1st St, San Francisco,CA,94016 +185864,USB-C Charging Cable,1,11.95,2019-04-16 11:47:00,275 Washington St, San Francisco,CA,94016 +185865,AAA Batteries (4-pack),1,2.99,2019-04-17 13:00:00,935 Lincoln St, Boston,MA,02215 +185866,Wired Headphones,1,11.99,2019-04-21 11:35:00,677 Ridge St, Atlanta,GA,30301 +185867,AAA Batteries (4-pack),1,2.99,2019-04-08 18:24:00,578 Ridge St, Los Angeles,CA,90001 +185868,Wired Headphones,1,11.99,2019-04-16 18:26:00,190 8th St, Atlanta,GA,30301 +185868,AA Batteries (4-pack),1,3.84,2019-04-16 18:26:00,190 8th St, Atlanta,GA,30301 +185869,27in 4K Gaming Monitor,1,389.99,2019-04-06 12:13:00,834 Lakeview St, Los Angeles,CA,90001 +185870,Vareebadd Phone,1,400.0,2019-04-04 13:47:00,624 West St, New York City,NY,10001 +185871,AAA Batteries (4-pack),1,2.99,2019-04-15 15:26:00,457 Dogwood St, Los Angeles,CA,90001 +185872,Macbook Pro Laptop,1,1700.0,2019-04-27 20:53:00,953 Lake St, Los Angeles,CA,90001 +185873,Apple Airpods Headphones,1,150.0,2019-04-20 20:17:00,882 Washington St, New York City,NY,10001 +185873,Wired Headphones,1,11.99,2019-04-20 20:17:00,882 Washington St, New York City,NY,10001 +185874,Wired Headphones,1,11.99,2019-04-28 18:00:00,703 River St, Dallas,TX,75001 +185875,20in Monitor,1,109.99,2019-04-08 19:17:00,740 River St, Atlanta,GA,30301 +185876,AA Batteries (4-pack),2,3.84,2019-04-29 18:36:00,68 Spruce St, Boston,MA,02215 +185877,Apple Airpods Headphones,1,150.0,2019-04-19 16:26:00,477 14th St, Los Angeles,CA,90001 +185878,Bose SoundSport Headphones,1,99.99,2019-04-08 19:25:00,292 Church St, Portland,OR,97035 +185879,Wired Headphones,1,11.99,2019-04-02 16:55:00,90 Jefferson St, Dallas,TX,75001 +185880,Lightning Charging Cable,1,14.95,2019-04-19 16:14:00,897 Lake St, Seattle,WA,98101 +185881,Apple Airpods Headphones,1,150.0,2019-04-13 16:37:00,124 13th St, San Francisco,CA,94016 +185882,AA Batteries (4-pack),2,3.84,2019-04-28 18:20:00,693 Lincoln St, San Francisco,CA,94016 +185883,Wired Headphones,1,11.99,2019-04-05 12:25:00,291 Jefferson St, New York City,NY,10001 +185884,27in 4K Gaming Monitor,1,389.99,2019-04-23 17:43:00,882 Jackson St, Portland,OR,97035 +185885,Lightning Charging Cable,1,14.95,2019-04-13 10:51:00,256 Meadow St, Seattle,WA,98101 +185886,USB-C Charging Cable,1,11.95,2019-04-06 12:53:00,831 Willow St, Los Angeles,CA,90001 +185887,AA Batteries (4-pack),1,3.84,2019-04-10 15:36:00,837 Washington St, Atlanta,GA,30301 +185888,AAA Batteries (4-pack),1,2.99,2019-04-04 14:15:00,520 Johnson St, San Francisco,CA,94016 +185889,AAA Batteries (4-pack),3,2.99,2019-04-14 14:08:00,541 Forest St, San Francisco,CA,94016 +185890,Google Phone,1,600.0,2019-04-22 09:14:00,72 1st St, Los Angeles,CA,90001 +185891,ThinkPad Laptop,1,999.99,2019-04-21 19:54:00,78 Cherry St, Seattle,WA,98101 +185892,27in 4K Gaming Monitor,1,389.99,2019-04-27 07:35:00,89 Sunset St, Atlanta,GA,30301 +185893,AA Batteries (4-pack),1,3.84,2019-04-21 18:55:00,302 Adams St, Atlanta,GA,30301 +185894,AA Batteries (4-pack),1,3.84,2019-04-17 22:40:00,332 Cedar St, Atlanta,GA,30301 +185895,USB-C Charging Cable,1,11.95,2019-04-09 14:33:00,584 Walnut St, Seattle,WA,98101 +185896,AA Batteries (4-pack),2,3.84,2019-04-08 09:32:00,419 9th St, Los Angeles,CA,90001 +185897,LG Washing Machine,1,600.0,2019-04-03 10:31:00,842 Highland St, Austin,TX,73301 +185898,Bose SoundSport Headphones,1,99.99,2019-04-30 02:27:00,603 Center St, Los Angeles,CA,90001 +185899,Wired Headphones,1,11.99,2019-04-07 10:05:00,125 Chestnut St, Los Angeles,CA,90001 +185900,27in 4K Gaming Monitor,1,389.99,2019-04-29 19:03:00,573 2nd St, Seattle,WA,98101 +185901,Wired Headphones,1,11.99,2019-04-22 12:25:00,211 6th St, New York City,NY,10001 +185902,Wired Headphones,1,11.99,2019-04-03 20:37:00,546 12th St, Seattle,WA,98101 +185903,Flatscreen TV,1,300.0,2019-04-19 09:02:00,374 Forest St, New York City,NY,10001 +185904,USB-C Charging Cable,1,11.95,2019-04-24 15:46:00,977 Wilson St, Los Angeles,CA,90001 +185905,USB-C Charging Cable,1,11.95,2019-04-02 16:30:00,670 11th St, Dallas,TX,75001 +185906,Lightning Charging Cable,1,14.95,2019-04-01 23:23:00,538 13th St, Boston,MA,02215 +185907,USB-C Charging Cable,1,11.95,2019-04-26 20:24:00,869 Main St, Los Angeles,CA,90001 +185908,Lightning Charging Cable,1,14.95,2019-04-19 08:53:00,578 Willow St, San Francisco,CA,94016 +185909,Lightning Charging Cable,1,14.95,2019-04-06 16:12:00,587 11th St, San Francisco,CA,94016 +185910,34in Ultrawide Monitor,1,379.99,2019-04-13 15:07:00,102 Adams St, Seattle,WA,98101 +185911,Flatscreen TV,1,300.0,2019-04-11 08:48:00,364 Meadow St, Los Angeles,CA,90001 +185912,AAA Batteries (4-pack),1,2.99,2019-04-27 09:49:00,7 2nd St, Austin,TX,73301 +185913,AA Batteries (4-pack),2,3.84,2019-04-26 14:26:00,185 Adams St, Dallas,TX,75001 +185914,Bose SoundSport Headphones,1,99.99,2019-04-18 17:35:00,835 Jackson St, New York City,NY,10001 +185915,AA Batteries (4-pack),5,3.84,2019-04-14 17:15:00,749 Sunset St, Los Angeles,CA,90001 +185916,Vareebadd Phone,1,400.0,2019-04-14 06:49:00,281 Cedar St, Los Angeles,CA,90001 +185917,27in FHD Monitor,1,149.99,2019-04-29 16:50:00,270 Jefferson St, Boston,MA,02215 +185918,AA Batteries (4-pack),1,3.84,2019-04-30 18:57:00,722 Maple St, Portland,OR,97035 +185919,AA Batteries (4-pack),1,3.84,2019-04-15 21:24:00,982 14th St, Portland,ME,04101 +185920,27in FHD Monitor,1,149.99,2019-04-06 00:58:00,942 Hickory St, New York City,NY,10001 +185920,USB-C Charging Cable,3,11.95,2019-04-06 00:58:00,942 Hickory St, New York City,NY,10001 +185921,AA Batteries (4-pack),1,3.84,2019-04-13 19:57:00,698 West St, San Francisco,CA,94016 +185922,Lightning Charging Cable,1,14.95,2019-04-21 15:37:00,747 Adams St, San Francisco,CA,94016 +185923,USB-C Charging Cable,1,11.95,2019-04-08 14:11:00,328 Forest St, Portland,OR,97035 +185924,Apple Airpods Headphones,1,150.0,2019-04-13 14:07:00,484 5th St, San Francisco,CA,94016 +185925,Lightning Charging Cable,1,14.95,2019-04-09 18:57:00,243 Adams St, New York City,NY,10001 +185926,Lightning Charging Cable,1,14.95,2019-04-24 12:18:00,396 Ridge St, Los Angeles,CA,90001 +185927,Lightning Charging Cable,1,14.95,2019-04-23 16:30:00,845 Wilson St, Los Angeles,CA,90001 +185928,AAA Batteries (4-pack),1,2.99,2019-04-08 12:19:00,415 Dogwood St, New York City,NY,10001 +185929,Google Phone,1,600.0,2019-04-19 12:09:00,458 9th St, New York City,NY,10001 +185929,USB-C Charging Cable,1,11.95,2019-04-19 12:09:00,458 9th St, New York City,NY,10001 +185930,AA Batteries (4-pack),1,3.84,2019-04-30 16:32:00,700 2nd St, Dallas,TX,75001 +185931,Lightning Charging Cable,1,14.95,2019-04-29 15:55:00,827 Jackson St, New York City,NY,10001 +185932,AAA Batteries (4-pack),1,2.99,2019-04-14 21:49:00,602 Hickory St, Seattle,WA,98101 +185933,Bose SoundSport Headphones,1,99.99,2019-04-11 19:13:00,652 Walnut St, New York City,NY,10001 +185934,Google Phone,1,600.0,2019-04-22 09:04:00,759 12th St, Portland,OR,97035 +185935,AA Batteries (4-pack),1,3.84,2019-04-11 17:19:00,60 6th St, San Francisco,CA,94016 +185936,Bose SoundSport Headphones,1,99.99,2019-04-11 10:58:00,501 Madison St, Seattle,WA,98101 +185937,Apple Airpods Headphones,1,150.0,2019-04-01 20:25:00,81 Wilson St, San Francisco,CA,94016 +185938,Lightning Charging Cable,1,14.95,2019-04-14 19:13:00,99 13th St, Los Angeles,CA,90001 +185939,Wired Headphones,1,11.99,2019-04-03 20:29:00,110 Hill St, Dallas,TX,75001 +185940,AAA Batteries (4-pack),1,2.99,2019-04-03 22:03:00,494 Meadow St, Dallas,TX,75001 +185941,AA Batteries (4-pack),3,3.84,2019-04-19 12:48:00,216 Spruce St, Boston,MA,02215 +185942,USB-C Charging Cable,1,11.95,2019-04-07 21:21:00,66 Chestnut St, Atlanta,GA,30301 +185943,AAA Batteries (4-pack),2,2.99,2019-04-15 10:54:00,882 Wilson St, Portland,OR,97035 +185944,Lightning Charging Cable,1,14.95,2019-04-07 17:49:00,396 12th St, San Francisco,CA,94016 +185945,USB-C Charging Cable,1,11.95,2019-04-23 09:15:00,193 11th St, San Francisco,CA,94016 +185946,Wired Headphones,1,11.99,2019-04-02 17:19:00,617 10th St, San Francisco,CA,94016 +185947,34in Ultrawide Monitor,1,379.99,2019-04-07 07:30:00,98 12th St, Boston,MA,02215 +185948,Bose SoundSport Headphones,1,99.99,2019-04-03 22:57:00,431 Lake St, Portland,OR,97035 +185949,USB-C Charging Cable,1,11.95,2019-04-19 13:02:00,808 10th St, New York City,NY,10001 +185950,USB-C Charging Cable,1,11.95,2019-04-21 10:42:00,319 9th St, Los Angeles,CA,90001 +185951,Lightning Charging Cable,1,14.95,2019-04-10 13:57:00,914 Maple St, San Francisco,CA,94016 +185952,Lightning Charging Cable,1,14.95,2019-04-26 12:23:00,153 2nd St, Seattle,WA,98101 +185953,AA Batteries (4-pack),1,3.84,2019-04-14 12:58:00,287 Willow St, Los Angeles,CA,90001 +185954,Wired Headphones,1,11.99,2019-04-18 23:25:00,685 6th St, San Francisco,CA,94016 +185955,Apple Airpods Headphones,1,150.0,2019-04-25 13:49:00,166 West St, Los Angeles,CA,90001 +185956,27in 4K Gaming Monitor,1,389.99,2019-04-19 19:34:00,730 Maple St, Los Angeles,CA,90001 +185957,USB-C Charging Cable,1,11.95,2019-04-06 20:28:00,408 Cedar St, Dallas,TX,75001 +185958,USB-C Charging Cable,1,11.95,2019-04-23 15:46:00,205 6th St, Los Angeles,CA,90001 +185959,AA Batteries (4-pack),1,3.84,2019-04-29 20:40:00,267 Chestnut St, Austin,TX,73301 +185960,Apple Airpods Headphones,1,150.0,2019-04-18 23:55:00,357 Sunset St, New York City,NY,10001 +185961,Bose SoundSport Headphones,1,99.99,2019-04-14 11:20:00,389 Johnson St, San Francisco,CA,94016 +185962,AA Batteries (4-pack),1,3.84,2019-04-01 10:48:00,570 Elm St, San Francisco,CA,94016 +185963,Wired Headphones,1,11.99,2019-04-24 16:13:00,117 Forest St, San Francisco,CA,94016 +185964,Bose SoundSport Headphones,1,99.99,2019-04-27 14:12:00,272 1st St, New York City,NY,10001 +185965,Apple Airpods Headphones,1,150.0,2019-04-19 13:18:00,47 Lincoln St, New York City,NY,10001 +185966,Vareebadd Phone,1,400.0,2019-04-08 11:31:00,582 Adams St, San Francisco,CA,94016 +185967,USB-C Charging Cable,1,11.95,2019-04-29 16:40:00,358 Highland St, San Francisco,CA,94016 +185968,Macbook Pro Laptop,1,1700.0,2019-04-22 17:12:00,87 1st St, Los Angeles,CA,90001 +185969,USB-C Charging Cable,1,11.95,2019-04-08 21:27:00,237 Spruce St, San Francisco,CA,94016 +185970,Wired Headphones,1,11.99,2019-04-03 21:35:00,177 South St, San Francisco,CA,94016 +185971,AA Batteries (4-pack),1,3.84,2019-04-14 10:20:00,503 Hill St, Atlanta,GA,30301 +185972,ThinkPad Laptop,1,999.99,2019-04-19 23:30:00,328 Willow St, Los Angeles,CA,90001 +185973,iPhone,1,700.0,2019-04-12 17:24:00,967 13th St, Los Angeles,CA,90001 +185974,AAA Batteries (4-pack),1,2.99,2019-04-17 18:57:00,395 10th St, San Francisco,CA,94016 +185975,USB-C Charging Cable,1,11.95,2019-04-13 17:22:00,422 Adams St, San Francisco,CA,94016 +185976,27in 4K Gaming Monitor,1,389.99,2019-04-02 16:50:00,559 12th St, Boston,MA,02215 +185977,AAA Batteries (4-pack),1,2.99,2019-04-25 11:04:00,565 14th St, San Francisco,CA,94016 +185978,Apple Airpods Headphones,1,150.0,2019-04-28 19:25:00,566 Main St, Boston,MA,02215 +185979,AA Batteries (4-pack),1,3.84,2019-04-05 12:44:00,385 West St, Dallas,TX,75001 +185980,Lightning Charging Cable,2,14.95,2019-04-23 17:26:00,43 Cedar St, Portland,OR,97035 +185981,Flatscreen TV,1,300.0,2019-04-23 22:53:00,9 Adams St, Atlanta,GA,30301 +185982,Flatscreen TV,1,300.0,2019-04-07 09:52:00,409 Elm St, Dallas,TX,75001 +185983,USB-C Charging Cable,1,11.95,2019-04-10 11:40:00,277 2nd St, Los Angeles,CA,90001 +185984,Bose SoundSport Headphones,1,99.99,2019-04-04 21:50:00,48 Jackson St, Los Angeles,CA,90001 +185985,Lightning Charging Cable,1,14.95,2019-04-16 12:43:00,339 Adams St, San Francisco,CA,94016 +185986,Apple Airpods Headphones,1,150.0,2019-04-03 08:56:00,231 1st St, Boston,MA,02215 +185987,Lightning Charging Cable,2,14.95,2019-04-20 20:12:00,802 Hill St, New York City,NY,10001 +185988,Apple Airpods Headphones,1,150.0,2019-04-03 16:57:00,278 Cherry St, Boston,MA,02215 +185989,Wired Headphones,1,11.99,2019-04-05 07:16:00,550 13th St, Austin,TX,73301 +185990,Wired Headphones,1,11.99,2019-04-26 07:27:00,263 Spruce St, Los Angeles,CA,90001 +185991,Bose SoundSport Headphones,1,99.99,2019-04-16 16:03:00,568 Hill St, Boston,MA,02215 +185992,AAA Batteries (4-pack),4,2.99,2019-04-09 18:05:00,708 Wilson St, San Francisco,CA,94016 +185993,Wired Headphones,1,11.99,2019-04-07 14:25:00,832 12th St, Los Angeles,CA,90001 +185993,AA Batteries (4-pack),1,3.84,2019-04-07 14:25:00,832 12th St, Los Angeles,CA,90001 +185994,Lightning Charging Cable,1,14.95,2019-04-16 13:08:00,741 Cedar St, Boston,MA,02215 +185995,20in Monitor,1,109.99,2019-04-27 10:40:00,316 Walnut St, Los Angeles,CA,90001 +185996,AAA Batteries (4-pack),1,2.99,2019-04-25 14:52:00,528 1st St, New York City,NY,10001 +185997,ThinkPad Laptop,1,999.99,2019-04-22 10:58:00,457 14th St, Atlanta,GA,30301 +185998,Wired Headphones,1,11.99,2019-04-30 06:13:00,597 9th St, Dallas,TX,75001 +185999,USB-C Charging Cable,2,11.95,2019-04-03 12:49:00,693 Cherry St, San Francisco,CA,94016 +186000,AAA Batteries (4-pack),2,2.99,2019-04-21 07:51:00,231 6th St, San Francisco,CA,94016 +186001,AAA Batteries (4-pack),3,2.99,2019-04-22 17:19:00,359 11th St, San Francisco,CA,94016 +186002,USB-C Charging Cable,1,11.95,2019-04-21 13:26:00,602 Elm St, San Francisco,CA,94016 +186003,AAA Batteries (4-pack),1,2.99,2019-04-18 16:35:00,529 4th St, Boston,MA,02215 +186004,Lightning Charging Cable,1,14.95,2019-04-10 10:11:00,347 Cherry St, San Francisco,CA,94016 +186005,Bose SoundSport Headphones,1,99.99,2019-04-12 18:39:00,669 Adams St, Boston,MA,02215 +186006,USB-C Charging Cable,1,11.95,2019-04-17 18:32:00,460 Wilson St, Boston,MA,02215 +186007,iPhone,1,700.0,2019-04-07 14:23:00,990 Pine St, Los Angeles,CA,90001 +186008,Bose SoundSport Headphones,1,99.99,2019-04-17 19:36:00,432 Park St, New York City,NY,10001 +186009,USB-C Charging Cable,1,11.95,2019-04-14 07:18:00,747 Johnson St, Los Angeles,CA,90001 +186010,Flatscreen TV,1,300.0,2019-04-11 12:17:00,980 Adams St, San Francisco,CA,94016 +186010,Lightning Charging Cable,1,14.95,2019-04-11 12:17:00,980 Adams St, San Francisco,CA,94016 +186011,Bose SoundSport Headphones,1,99.99,2019-04-08 23:21:00,326 Highland St, Los Angeles,CA,90001 +186012,Apple Airpods Headphones,1,150.0,2019-04-25 14:16:00,252 Hickory St, Los Angeles,CA,90001 +186013,34in Ultrawide Monitor,1,379.99,2019-04-02 18:25:00,974 Madison St, Boston,MA,02215 +186014,Wired Headphones,1,11.99,2019-04-09 06:51:00,212 2nd St, San Francisco,CA,94016 +186015,AA Batteries (4-pack),1,3.84,2019-04-14 16:54:00,740 14th St, New York City,NY,10001 +186016,AA Batteries (4-pack),1,3.84,2019-04-27 09:05:00,492 Pine St, Portland,ME,04101 +186017,iPhone,1,700.0,2019-04-04 00:32:00,915 1st St, Los Angeles,CA,90001 +186018,27in FHD Monitor,1,149.99,2019-04-11 12:55:00,345 Forest St, New York City,NY,10001 +186019,USB-C Charging Cable,1,11.95,2019-04-05 20:52:00,214 Sunset St, San Francisco,CA,94016 +186019,Vareebadd Phone,1,400.0,2019-04-05 20:52:00,214 Sunset St, San Francisco,CA,94016 +186020,USB-C Charging Cable,1,11.95,2019-04-21 18:33:00,238 13th St, Atlanta,GA,30301 +186021,34in Ultrawide Monitor,1,379.99,2019-04-23 05:51:00,392 Elm St, San Francisco,CA,94016 +186022,USB-C Charging Cable,1,11.95,2019-04-23 13:36:00,587 Chestnut St, Boston,MA,02215 +186023,AAA Batteries (4-pack),2,2.99,2019-04-07 15:40:00,208 9th St, San Francisco,CA,94016 +186024,Apple Airpods Headphones,1,150.0,2019-04-10 07:53:00,32 Madison St, Los Angeles,CA,90001 +186025,AA Batteries (4-pack),1,3.84,2019-04-25 13:48:00,577 Adams St, Dallas,TX,75001 +186026,Macbook Pro Laptop,1,1700.0,2019-04-29 21:44:00,213 Washington St, Boston,MA,02215 +186027,Apple Airpods Headphones,1,150.0,2019-04-17 05:15:00,702 12th St, Seattle,WA,98101 +186028,AAA Batteries (4-pack),5,2.99,2019-04-12 13:54:00,414 Chestnut St, San Francisco,CA,94016 +186029,ThinkPad Laptop,1,999.99,2019-04-01 19:36:00,466 Pine St, San Francisco,CA,94016 +186030,AAA Batteries (4-pack),1,2.99,2019-04-16 10:44:00,111 Lakeview St, San Francisco,CA,94016 +186031,27in FHD Monitor,1,149.99,2019-04-20 15:04:00,839 Johnson St, Seattle,WA,98101 +186032,USB-C Charging Cable,1,11.95,2019-04-19 17:36:00,139 Cherry St, Los Angeles,CA,90001 +186033,27in FHD Monitor,1,149.99,2019-04-30 09:14:00,783 Forest St, Los Angeles,CA,90001 +186034,Vareebadd Phone,1,400.0,2019-04-09 21:00:00,516 Main St, San Francisco,CA,94016 +186035,27in 4K Gaming Monitor,1,389.99,2019-04-30 17:03:00,682 Meadow St, Portland,OR,97035 +186036,Apple Airpods Headphones,1,150.0,2019-04-22 19:15:00,605 6th St, New York City,NY,10001 +186037,USB-C Charging Cable,1,11.95,2019-04-12 20:15:00,807 Pine St, Los Angeles,CA,90001 +186038,Lightning Charging Cable,1,14.95,2019-04-18 18:31:00,777 Pine St, San Francisco,CA,94016 +186039,Wired Headphones,1,11.99,2019-04-15 19:11:00,442 Johnson St, Boston,MA,02215 +186040,Wired Headphones,1,11.99,2019-04-09 11:08:00,996 Cherry St, San Francisco,CA,94016 +186041,AA Batteries (4-pack),2,3.84,2019-04-04 09:52:00,575 North St, San Francisco,CA,94016 +186042,Bose SoundSport Headphones,1,99.99,2019-04-12 12:26:00,256 Washington St, Austin,TX,73301 +186043,20in Monitor,1,109.99,2019-04-14 19:10:00,388 12th St, Portland,OR,97035 +186044,Vareebadd Phone,1,400.0,2019-04-25 13:06:00,392 Jackson St, Boston,MA,02215 +186044,Wired Headphones,1,11.99,2019-04-25 13:06:00,392 Jackson St, Boston,MA,02215 +186045,Flatscreen TV,1,300.0,2019-04-14 14:49:00,787 9th St, Boston,MA,02215 +186046,Apple Airpods Headphones,1,150.0,2019-04-03 08:20:00,948 South St, Los Angeles,CA,90001 +186047,Wired Headphones,2,11.99,2019-04-01 11:04:00,330 Ridge St, Boston,MA,02215 +186048,USB-C Charging Cable,1,11.95,2019-04-09 23:53:00,783 1st St, Dallas,TX,75001 +186049,Lightning Charging Cable,1,14.95,2019-04-15 08:18:00,287 Johnson St, San Francisco,CA,94016 +186050,AA Batteries (4-pack),1,3.84,2019-04-22 00:28:00,701 Walnut St, New York City,NY,10001 +186051,AA Batteries (4-pack),3,3.84,2019-04-26 06:47:00,715 Cherry St, San Francisco,CA,94016 +186052,Bose SoundSport Headphones,1,99.99,2019-04-24 19:23:00,269 4th St, San Francisco,CA,94016 +186053,27in FHD Monitor,1,149.99,2019-04-18 21:24:00,53 Cedar St, Portland,OR,97035 +186054,AAA Batteries (4-pack),1,2.99,2019-04-24 12:45:00,516 1st St, Los Angeles,CA,90001 +186055,27in FHD Monitor,1,149.99,2019-04-13 06:21:00,535 14th St, Dallas,TX,75001 +186056,AA Batteries (4-pack),1,3.84,2019-04-05 12:37:00,655 River St, Austin,TX,73301 +186057,iPhone,1,700.0,2019-04-06 20:47:00,694 West St, New York City,NY,10001 +186058,AA Batteries (4-pack),1,3.84,2019-04-23 12:19:00,35 6th St, San Francisco,CA,94016 +186059,Lightning Charging Cable,1,14.95,2019-04-06 10:29:00,427 Highland St, Los Angeles,CA,90001 +186060,27in FHD Monitor,1,149.99,2019-04-12 06:55:00,619 Church St, Los Angeles,CA,90001 +186061,AA Batteries (4-pack),2,3.84,2019-04-03 20:20:00,663 Cedar St, Boston,MA,02215 +186062,Wired Headphones,1,11.99,2019-04-09 18:43:00,974 2nd St, Los Angeles,CA,90001 +186063,AAA Batteries (4-pack),1,2.99,2019-04-16 13:40:00,205 8th St, San Francisco,CA,94016 +186064,AA Batteries (4-pack),1,3.84,2019-04-20 20:24:00,725 Dogwood St, San Francisco,CA,94016 +186065,AAA Batteries (4-pack),2,2.99,2019-04-18 16:13:00,922 Spruce St, Dallas,TX,75001 +186066,Wired Headphones,1,11.99,2019-04-02 10:27:00,126 Washington St, Dallas,TX,75001 +186067,Wired Headphones,1,11.99,2019-04-05 09:57:00,996 Dogwood St, Los Angeles,CA,90001 +186068,Lightning Charging Cable,2,14.95,2019-04-10 21:00:00,936 Cherry St, Boston,MA,02215 +186069,USB-C Charging Cable,2,11.95,2019-04-29 18:15:00,816 Park St, Los Angeles,CA,90001 +186070,AAA Batteries (4-pack),2,2.99,2019-04-14 16:02:00,433 Spruce St, Los Angeles,CA,90001 +186071,Google Phone,1,600.0,2019-04-18 17:35:00,529 Cherry St, Boston,MA,02215 +186071,Bose SoundSport Headphones,1,99.99,2019-04-18 17:35:00,529 Cherry St, Boston,MA,02215 +186072,Wired Headphones,1,11.99,2019-04-27 15:07:00,50 6th St, San Francisco,CA,94016 +186073,Lightning Charging Cable,1,14.95,2019-04-27 11:56:00,304 Ridge St, Austin,TX,73301 +186074,AAA Batteries (4-pack),1,2.99,2019-04-17 13:08:00,534 Adams St, Dallas,TX,75001 +186075,ThinkPad Laptop,1,999.99,2019-04-15 17:38:00,579 Willow St, San Francisco,CA,94016 +186076,Lightning Charging Cable,1,14.95,2019-04-06 17:04:00,170 Wilson St, Atlanta,GA,30301 +186077,AAA Batteries (4-pack),2,2.99,2019-04-29 06:04:00,367 Lakeview St, New York City,NY,10001 +186078,27in FHD Monitor,1,149.99,2019-04-19 16:05:00,440 Washington St, Los Angeles,CA,90001 +186078,USB-C Charging Cable,1,11.95,2019-04-19 16:05:00,440 Washington St, Los Angeles,CA,90001 +186079,Lightning Charging Cable,1,14.95,2019-04-08 17:54:00,637 4th St, San Francisco,CA,94016 +186080,USB-C Charging Cable,1,11.95,2019-04-29 16:35:00,811 Ridge St, Austin,TX,73301 +186081,AAA Batteries (4-pack),1,2.99,2019-04-25 18:29:00,566 Adams St, Seattle,WA,98101 +186082,USB-C Charging Cable,1,11.95,2019-04-02 08:31:00,997 12th St, Boston,MA,02215 +186083,Bose SoundSport Headphones,1,99.99,2019-04-02 17:27:00,780 South St, Atlanta,GA,30301 +186084,Apple Airpods Headphones,1,150.0,2019-04-26 06:26:00,927 5th St, New York City,NY,10001 +186085,iPhone,1,700.0,2019-04-07 09:39:00,68 Walnut St, Seattle,WA,98101 +186086,Apple Airpods Headphones,1,150.0,2019-04-01 18:58:00,529 Willow St, Los Angeles,CA,90001 +186087,Macbook Pro Laptop,1,1700.0,2019-04-18 12:11:00,271 Main St, Boston,MA,02215 +186088,USB-C Charging Cable,1,11.95,2019-04-06 19:24:00,668 Elm St, Los Angeles,CA,90001 +186089,Wired Headphones,1,11.99,2019-04-17 17:18:00,794 Ridge St, Los Angeles,CA,90001 +186090,AAA Batteries (4-pack),1,2.99,2019-04-01 09:04:00,517 4th St, San Francisco,CA,94016 +186091,34in Ultrawide Monitor,1,379.99,2019-04-24 03:35:00,80 11th St, San Francisco,CA,94016 +186092,USB-C Charging Cable,1,11.95,2019-04-17 21:36:00,324 Meadow St, Austin,TX,73301 +186093,Bose SoundSport Headphones,1,99.99,2019-04-24 20:54:00,287 Ridge St, Seattle,WA,98101 +186094,Lightning Charging Cable,1,14.95,2019-04-09 14:56:00,429 9th St, San Francisco,CA,94016 +186095,USB-C Charging Cable,1,11.95,2019-04-21 21:19:00,349 Lake St, San Francisco,CA,94016 +186096,Google Phone,1,600.0,2019-04-10 21:02:00,918 Adams St, New York City,NY,10001 +186096,USB-C Charging Cable,1,11.95,2019-04-10 21:02:00,918 Adams St, New York City,NY,10001 +186097,AAA Batteries (4-pack),3,2.99,2019-04-10 12:38:00,499 Spruce St, San Francisco,CA,94016 +186098,iPhone,1,700.0,2019-04-29 18:09:00,890 8th St, Los Angeles,CA,90001 +186099,Wired Headphones,1,11.99,2019-04-29 11:20:00,843 Pine St, Portland,OR,97035 +186100,Bose SoundSport Headphones,1,99.99,2019-04-20 16:46:00,167 Church St, Los Angeles,CA,90001 +186101,Lightning Charging Cable,1,14.95,2019-04-10 15:55:00,874 Cedar St, Seattle,WA,98101 +186102,Google Phone,1,600.0,2019-04-14 14:50:00,876 Spruce St, Dallas,TX,75001 +186103,Apple Airpods Headphones,1,150.0,2019-04-28 19:15:00,674 Cherry St, San Francisco,CA,94016 +186104,Lightning Charging Cable,1,14.95,2019-04-20 11:37:00,727 Jackson St, Los Angeles,CA,90001 +186105,iPhone,1,700.0,2019-04-08 14:30:00,736 12th St, Boston,MA,02215 +186106,USB-C Charging Cable,1,11.95,2019-04-15 15:06:00,226 10th St, New York City,NY,10001 +186107,Apple Airpods Headphones,1,150.0,2019-04-18 15:38:00,320 West St, Dallas,TX,75001 +186108,USB-C Charging Cable,2,11.95,2019-04-09 09:03:00,426 Willow St, Boston,MA,02215 +186109,20in Monitor,1,109.99,2019-04-13 19:26:00,733 Forest St, Los Angeles,CA,90001 +186110,Apple Airpods Headphones,1,150.0,2019-04-04 23:51:00,417 Madison St, New York City,NY,10001 +186111,AAA Batteries (4-pack),1,2.99,2019-04-11 18:34:00,465 Main St, Dallas,TX,75001 +186112,USB-C Charging Cable,1,11.95,2019-04-12 19:25:00,27 Dogwood St, San Francisco,CA,94016 +186113,AA Batteries (4-pack),1,3.84,2019-04-17 18:10:00,119 Forest St, Atlanta,GA,30301 +186114,USB-C Charging Cable,1,11.95,2019-04-16 19:45:00,434 5th St, Los Angeles,CA,90001 +186115,Bose SoundSport Headphones,1,99.99,2019-04-06 16:25:00,167 Lakeview St, Boston,MA,02215 +186116,Wired Headphones,1,11.99,2019-04-03 18:37:00,350 Ridge St, Los Angeles,CA,90001 +186117,Google Phone,1,600.0,2019-04-03 11:54:00,494 Cedar St, Atlanta,GA,30301 +186117,USB-C Charging Cable,1,11.95,2019-04-03 11:54:00,494 Cedar St, Atlanta,GA,30301 +186118,Apple Airpods Headphones,1,150.0,2019-04-26 19:21:00,221 Hill St, Dallas,TX,75001 +186119,Apple Airpods Headphones,1,150.0,2019-04-10 07:52:00,879 2nd St, Boston,MA,02215 +186120,27in 4K Gaming Monitor,1,389.99,2019-04-24 20:07:00,729 Dogwood St, New York City,NY,10001 +186121,USB-C Charging Cable,1,11.95,2019-04-07 14:07:00,75 Wilson St, San Francisco,CA,94016 +186122,AAA Batteries (4-pack),2,2.99,2019-04-19 20:31:00,626 Cedar St, Atlanta,GA,30301 +186123,Wired Headphones,1,11.99,2019-04-30 08:58:00,2 Chestnut St, San Francisco,CA,94016 +186124,ThinkPad Laptop,1,999.99,2019-04-06 11:18:00,152 8th St, New York City,NY,10001 +186125,Wired Headphones,1,11.99,2019-04-22 17:22:00,355 Wilson St, Los Angeles,CA,90001 +186126,27in 4K Gaming Monitor,1,389.99,2019-04-11 18:04:00,36 Cedar St, Austin,TX,73301 +186127,Lightning Charging Cable,1,14.95,2019-04-18 08:45:00,806 Cherry St, Portland,OR,97035 +186128,AA Batteries (4-pack),1,3.84,2019-04-10 18:29:00,919 Park St, Los Angeles,CA,90001 +186129,AA Batteries (4-pack),1,3.84,2019-04-28 21:30:00,768 Lincoln St, Los Angeles,CA,90001 +186130,Vareebadd Phone,1,400.0,2019-04-20 17:22:00,125 12th St, San Francisco,CA,94016 +186131,27in FHD Monitor,1,149.99,2019-04-30 13:54:00,984 Johnson St, Los Angeles,CA,90001 +186132,Bose SoundSport Headphones,1,99.99,2019-04-11 21:30:00,3 West St, Portland,OR,97035 +186133,AAA Batteries (4-pack),1,2.99,2019-04-17 18:05:00,526 Adams St, San Francisco,CA,94016 +186134,Bose SoundSport Headphones,1,99.99,2019-04-16 19:24:00,663 Willow St, San Francisco,CA,94016 +186135,AA Batteries (4-pack),2,3.84,2019-04-27 14:50:00,780 12th St, San Francisco,CA,94016 +186136,USB-C Charging Cable,1,11.95,2019-04-22 12:30:00,510 Cedar St, San Francisco,CA,94016 +186137,Google Phone,1,600.0,2019-04-13 09:40:00,685 Pine St, San Francisco,CA,94016 +186138,Lightning Charging Cable,1,14.95,2019-04-19 22:22:00,591 Adams St, New York City,NY,10001 +186139,AA Batteries (4-pack),2,3.84,2019-04-06 17:57:00,842 Meadow St, Los Angeles,CA,90001 +186139,iPhone,1,700.0,2019-04-06 17:57:00,842 Meadow St, Los Angeles,CA,90001 +186140,Vareebadd Phone,1,400.0,2019-04-10 21:36:00,167 Meadow St, New York City,NY,10001 +186141,AAA Batteries (4-pack),2,2.99,2019-04-21 21:21:00,866 Main St, New York City,NY,10001 +186142,Lightning Charging Cable,1,14.95,2019-04-10 13:40:00,979 8th St, Portland,OR,97035 +186143,Apple Airpods Headphones,1,150.0,2019-04-28 12:25:00,515 Ridge St, Boston,MA,02215 +186144,27in 4K Gaming Monitor,1,389.99,2019-04-12 10:58:00,111 Main St, Portland,OR,97035 +186145,Apple Airpods Headphones,1,150.0,2019-04-05 21:09:00,170 Forest St, Seattle,WA,98101 +186146,Lightning Charging Cable,1,14.95,2019-04-10 14:21:00,617 Dogwood St, Seattle,WA,98101 +186147,Wired Headphones,1,11.99,2019-04-04 15:48:00,134 Washington St, San Francisco,CA,94016 +186148,Lightning Charging Cable,1,14.95,2019-04-27 15:56:00,714 Main St, Atlanta,GA,30301 +186149,Bose SoundSport Headphones,1,99.99,2019-04-12 14:06:00,294 West St, Portland,OR,97035 +186150,20in Monitor,1,109.99,2019-04-23 07:30:00,220 2nd St, Dallas,TX,75001 +186151,27in 4K Gaming Monitor,1,389.99,2019-04-25 18:45:00,323 Church St, Seattle,WA,98101 +186152,iPhone,1,700.0,2019-04-26 23:56:00,360 14th St, San Francisco,CA,94016 +186153,AA Batteries (4-pack),1,3.84,2019-04-17 12:24:00,234 Washington St, San Francisco,CA,94016 +186154,34in Ultrawide Monitor,1,379.99,2019-04-28 12:58:00,626 Spruce St, Los Angeles,CA,90001 +186155,Wired Headphones,2,11.99,2019-04-29 20:51:00,431 Willow St, Portland,OR,97035 +186156,Apple Airpods Headphones,1,150.0,2019-04-24 08:56:00,956 12th St, Dallas,TX,75001 +186157,AAA Batteries (4-pack),2,2.99,2019-04-02 11:33:00,794 Jefferson St, Los Angeles,CA,90001 +186158,iPhone,1,700.0,2019-04-08 08:13:00,344 Elm St, Boston,MA,02215 +186158,Lightning Charging Cable,1,14.95,2019-04-08 08:13:00,344 Elm St, Boston,MA,02215 +186159,Apple Airpods Headphones,1,150.0,2019-04-01 11:21:00,831 Highland St, Portland,OR,97035 +186160,AA Batteries (4-pack),1,3.84,2019-04-06 08:54:00,563 2nd St, San Francisco,CA,94016 +186161,USB-C Charging Cable,1,11.95,2019-04-29 10:15:00,425 Willow St, Dallas,TX,75001 +186162,AA Batteries (4-pack),1,3.84,2019-04-29 17:15:00,522 Spruce St, San Francisco,CA,94016 +186163,AAA Batteries (4-pack),2,2.99,2019-04-10 22:00:00,548 Hickory St, New York City,NY,10001 +186164,Vareebadd Phone,1,400.0,2019-04-12 11:28:00,21 Main St, Atlanta,GA,30301 +186165,AAA Batteries (4-pack),1,2.99,2019-04-20 08:54:00,709 Lake St, San Francisco,CA,94016 +186166,Wired Headphones,1,11.99,2019-04-12 11:56:00,461 13th St, San Francisco,CA,94016 +186167,Bose SoundSport Headphones,1,99.99,2019-04-22 19:27:00,249 Spruce St, Boston,MA,02215 +186168,Apple Airpods Headphones,1,150.0,2019-04-04 13:27:00,714 Center St, San Francisco,CA,94016 +186169,Apple Airpods Headphones,1,150.0,2019-04-30 15:20:00,887 9th St, Portland,ME,04101 +186170,USB-C Charging Cable,1,11.95,2019-04-20 09:24:00,284 Dogwood St, Portland,OR,97035 +186171,Apple Airpods Headphones,1,150.0,2019-04-30 16:04:00,26 Elm St, Seattle,WA,98101 +186172,USB-C Charging Cable,1,11.95,2019-04-11 13:30:00,809 14th St, New York City,NY,10001 +186173,Lightning Charging Cable,1,14.95,2019-04-30 16:38:00,899 Ridge St, Boston,MA,02215 +186174,27in 4K Gaming Monitor,1,389.99,2019-04-20 09:07:00,188 Wilson St, Portland,OR,97035 +186175,27in FHD Monitor,1,149.99,2019-04-17 11:56:00,997 14th St, San Francisco,CA,94016 +186176,Bose SoundSport Headphones,1,99.99,2019-04-15 19:15:00,510 11th St, San Francisco,CA,94016 +186177,Google Phone,1,600.0,2019-04-30 13:53:00,885 Johnson St, Dallas,TX,75001 +186178,ThinkPad Laptop,1,999.99,2019-04-07 15:27:00,604 Center St, Seattle,WA,98101 +186179,Google Phone,1,600.0,2019-04-03 20:35:00,845 Dogwood St, Boston,MA,02215 +186180,USB-C Charging Cable,1,11.95,2019-04-01 19:19:00,469 Park St, Atlanta,GA,30301 +186181,Apple Airpods Headphones,1,150.0,2019-04-02 18:58:00,716 Forest St, Seattle,WA,98101 +186182,Wired Headphones,1,11.99,2019-04-25 14:05:00,595 Maple St, Boston,MA,02215 +186183,USB-C Charging Cable,1,11.95,2019-04-11 10:17:00,673 1st St, Los Angeles,CA,90001 +186184,Lightning Charging Cable,1,14.95,2019-04-05 21:37:00,253 Maple St, Dallas,TX,75001 +186185,Lightning Charging Cable,1,14.95,2019-04-19 10:44:00,431 Johnson St, San Francisco,CA,94016 +186186,Wired Headphones,1,11.99,2019-04-20 09:46:00,912 14th St, Boston,MA,02215 +186187,Lightning Charging Cable,1,14.95,2019-04-20 20:33:00,758 14th St, Austin,TX,73301 +186188,USB-C Charging Cable,1,11.95,2019-04-24 10:34:00,693 Wilson St, New York City,NY,10001 +186189,Flatscreen TV,1,300.0,2019-04-13 10:43:00,782 11th St, Austin,TX,73301 +186190,Wired Headphones,1,11.99,2019-04-05 18:42:00,154 5th St, San Francisco,CA,94016 +186191,AAA Batteries (4-pack),2,2.99,2019-04-12 00:06:00,756 12th St, Austin,TX,73301 +186192,27in FHD Monitor,1,149.99,2019-04-05 21:11:00,146 Willow St, Portland,OR,97035 +186193,AA Batteries (4-pack),1,3.84,2019-04-04 20:01:00,942 North St, Dallas,TX,75001 +186194,Lightning Charging Cable,1,14.95,2019-04-03 19:35:00,802 Lake St, Seattle,WA,98101 +186195,AAA Batteries (4-pack),1,2.99,2019-04-15 12:10:00,981 Madison St, Atlanta,GA,30301 +186196,Lightning Charging Cable,1,14.95,2019-04-05 22:59:00,125 Cherry St, San Francisco,CA,94016 +186197,Lightning Charging Cable,1,14.95,2019-04-29 05:31:00,89 Maple St, Boston,MA,02215 +186198,Wired Headphones,1,11.99,2019-04-15 17:02:00,716 Jackson St, New York City,NY,10001 +186199,AAA Batteries (4-pack),1,2.99,2019-04-18 20:52:00,185 Dogwood St, Dallas,TX,75001 +186200,USB-C Charging Cable,1,11.95,2019-04-12 20:22:00,161 Maple St, Portland,OR,97035 +186201,Lightning Charging Cable,1,14.95,2019-04-22 09:56:00,329 South St, San Francisco,CA,94016 +186202,AAA Batteries (4-pack),1,2.99,2019-04-11 10:56:00,170 Church St, San Francisco,CA,94016 +186203,Lightning Charging Cable,1,14.95,2019-04-12 08:03:00,431 10th St, San Francisco,CA,94016 +186204,USB-C Charging Cable,1,11.95,2019-04-28 13:56:00,291 Center St, Los Angeles,CA,90001 +186205,AA Batteries (4-pack),2,3.84,2019-04-15 11:23:00,558 West St, Boston,MA,02215 +186206,USB-C Charging Cable,1,11.95,2019-04-24 19:32:00,292 13th St, Los Angeles,CA,90001 +186207,Wired Headphones,1,11.99,2019-04-20 12:22:00,592 4th St, Dallas,TX,75001 +186208,Lightning Charging Cable,1,14.95,2019-04-14 16:29:00,280 Forest St, Austin,TX,73301 +186209,Lightning Charging Cable,1,14.95,2019-04-22 16:08:00,835 Wilson St, Atlanta,GA,30301 +186210,AA Batteries (4-pack),1,3.84,2019-04-19 11:02:00,563 Washington St, New York City,NY,10001 +186211,Lightning Charging Cable,2,14.95,2019-04-19 23:36:00,692 Washington St, Atlanta,GA,30301 +186212,USB-C Charging Cable,2,11.95,2019-04-30 11:34:00,891 Lakeview St, New York City,NY,10001 +186213,Lightning Charging Cable,1,14.95,2019-04-12 06:58:00,594 Hill St, Portland,OR,97035 +186214,Wired Headphones,1,11.99,2019-04-25 14:12:00,180 Johnson St, Austin,TX,73301 +186215,AAA Batteries (4-pack),1,2.99,2019-04-30 11:45:00,229 Dogwood St, Seattle,WA,98101 +186216,27in FHD Monitor,1,149.99,2019-04-07 22:36:00,806 Washington St, Dallas,TX,75001 +186217,Lightning Charging Cable,1,14.95,2019-04-28 13:01:00,857 Lincoln St, Atlanta,GA,30301 +186218,Google Phone,1,600.0,2019-04-22 13:24:00,224 Cherry St, Boston,MA,02215 +186219,Wired Headphones,1,11.99,2019-04-06 09:50:00,833 Lakeview St, Dallas,TX,75001 +186220,AAA Batteries (4-pack),1,2.99,2019-04-15 12:58:00,552 Lakeview St, Seattle,WA,98101 +186221,USB-C Charging Cable,1,11.95,2019-04-09 16:56:00,920 Main St, Dallas,TX,75001 +186222,20in Monitor,1,109.99,2019-04-12 08:01:00,533 West St, Seattle,WA,98101 +186223,Bose SoundSport Headphones,1,99.99,2019-04-27 23:30:00,74 13th St, San Francisco,CA,94016 +186224,27in 4K Gaming Monitor,1,389.99,2019-04-24 19:01:00,694 North St, Austin,TX,73301 +186225,Flatscreen TV,1,300.0,2019-04-24 13:30:00,153 Cherry St, Atlanta,GA,30301 +186226,Google Phone,1,600.0,2019-04-30 07:43:00,799 Johnson St, Los Angeles,CA,90001 +186226,USB-C Charging Cable,1,11.95,2019-04-30 07:43:00,799 Johnson St, Los Angeles,CA,90001 +186227,Apple Airpods Headphones,1,150.0,2019-04-27 01:18:00,673 Dogwood St, San Francisco,CA,94016 +186228,Lightning Charging Cable,1,14.95,2019-04-30 14:39:00,857 Pine St, Los Angeles,CA,90001 +186229,Apple Airpods Headphones,1,150.0,2019-04-12 06:32:00,136 North St, Austin,TX,73301 +186230,AAA Batteries (4-pack),1,2.99,2019-04-14 12:37:00,590 Elm St, Los Angeles,CA,90001 +186231,Wired Headphones,1,11.99,2019-04-06 21:49:00,673 Cherry St, Austin,TX,73301 +186232,AAA Batteries (4-pack),3,2.99,2019-04-12 18:20:00,894 Lakeview St, Seattle,WA,98101 +186233,AAA Batteries (4-pack),1,2.99,2019-04-07 16:19:00,767 8th St, San Francisco,CA,94016 +186234,AAA Batteries (4-pack),1,2.99,2019-04-03 13:49:00,588 Maple St, Los Angeles,CA,90001 +186235,Wired Headphones,1,11.99,2019-04-20 23:09:00,300 Elm St, Atlanta,GA,30301 +186236,27in 4K Gaming Monitor,1,389.99,2019-04-21 18:07:00,848 Spruce St, Atlanta,GA,30301 +186237,Lightning Charging Cable,1,14.95,2019-04-10 07:58:00,134 Sunset St, Austin,TX,73301 +186238,Lightning Charging Cable,2,14.95,2019-04-14 18:23:00,98 7th St, Seattle,WA,98101 +186239,Apple Airpods Headphones,1,150.0,2019-04-13 09:40:00,799 7th St, Seattle,WA,98101 +186240,AAA Batteries (4-pack),2,2.99,2019-04-10 13:17:00,30 6th St, Boston,MA,02215 +186241,27in 4K Gaming Monitor,1,389.99,2019-04-11 20:28:00,490 10th St, Boston,MA,02215 +186242,AAA Batteries (4-pack),2,2.99,2019-04-13 18:57:00,42 Lakeview St, Portland,OR,97035 +186242,AA Batteries (4-pack),1,3.84,2019-04-13 18:57:00,42 Lakeview St, Portland,OR,97035 +186243,AAA Batteries (4-pack),1,2.99,2019-04-27 13:54:00,923 Ridge St, Los Angeles,CA,90001 +186244,AA Batteries (4-pack),3,3.84,2019-04-11 20:12:00,827 Maple St, Dallas,TX,75001 +186245,AAA Batteries (4-pack),1,2.99,2019-04-18 07:18:00,75 12th St, Portland,OR,97035 +186246,Apple Airpods Headphones,1,150.0,2019-04-02 17:13:00,579 Wilson St, San Francisco,CA,94016 +186247,Google Phone,1,600.0,2019-04-30 09:43:00,661 Willow St, Los Angeles,CA,90001 +186248,34in Ultrawide Monitor,1,379.99,2019-04-12 14:27:00,13 Church St, Portland,OR,97035 +186249,Lightning Charging Cable,1,14.95,2019-04-05 15:43:00,577 Lakeview St, Los Angeles,CA,90001 +186250,LG Washing Machine,1,600.0,2019-04-16 11:14:00,276 Maple St, Portland,OR,97035 +186251,Lightning Charging Cable,1,14.95,2019-04-11 07:23:00,21 Elm St, San Francisco,CA,94016 +186252,Macbook Pro Laptop,1,1700.0,2019-04-12 08:41:00,408 Johnson St, Dallas,TX,75001 +186253,USB-C Charging Cable,1,11.95,2019-04-02 17:22:00,806 Meadow St, Portland,ME,04101 +186254,Lightning Charging Cable,1,14.95,2019-04-23 16:18:00,735 Jefferson St, New York City,NY,10001 +186255,USB-C Charging Cable,1,11.95,2019-04-20 08:05:00,633 Washington St, Seattle,WA,98101 +186256,AAA Batteries (4-pack),1,2.99,2019-04-12 17:05:00,510 South St, Atlanta,GA,30301 +186257,Bose SoundSport Headphones,1,99.99,2019-04-07 20:58:00,694 1st St, Boston,MA,02215 +186258,AA Batteries (4-pack),2,3.84,2019-04-09 15:11:00,186 North St, Austin,TX,73301 +186259,Wired Headphones,1,11.99,2019-04-02 13:36:00,944 12th St, Los Angeles,CA,90001 +186260,USB-C Charging Cable,1,11.95,2019-04-14 10:39:00,926 Jackson St, San Francisco,CA,94016 +186261,Bose SoundSport Headphones,1,99.99,2019-04-17 16:09:00,547 Sunset St, San Francisco,CA,94016 +186262,34in Ultrawide Monitor,1,379.99,2019-04-04 16:19:00,783 1st St, Dallas,TX,75001 +186263,Vareebadd Phone,1,400.0,2019-04-29 17:35:00,639 Willow St, Austin,TX,73301 +186264,AAA Batteries (4-pack),1,2.99,2019-04-01 17:08:00,292 Sunset St, San Francisco,CA,94016 +186265,AA Batteries (4-pack),1,3.84,2019-04-26 11:20:00,356 10th St, Atlanta,GA,30301 +186266,Bose SoundSport Headphones,1,99.99,2019-04-10 12:15:00,199 Lincoln St, San Francisco,CA,94016 +186267,AA Batteries (4-pack),2,3.84,2019-04-16 15:12:00,967 Adams St, Los Angeles,CA,90001 +186268,Lightning Charging Cable,1,14.95,2019-04-29 05:49:00,472 1st St, Los Angeles,CA,90001 +186269,Wired Headphones,2,11.99,2019-04-06 00:25:00,223 Johnson St, Portland,OR,97035 +186270,Apple Airpods Headphones,1,150.0,2019-04-30 12:28:00,641 Willow St, New York City,NY,10001 +186271,Vareebadd Phone,1,400.0,2019-04-07 20:29:00,222 Church St, New York City,NY,10001 +186271,AA Batteries (4-pack),1,3.84,2019-04-07 20:29:00,222 Church St, New York City,NY,10001 +186272,USB-C Charging Cable,1,11.95,2019-04-17 10:07:00,35 Cedar St, San Francisco,CA,94016 +186273,ThinkPad Laptop,1,999.99,2019-04-26 11:48:00,753 1st St, Portland,OR,97035 +186274,AAA Batteries (4-pack),2,2.99,2019-04-03 23:59:00,685 7th St, Seattle,WA,98101 +186275,USB-C Charging Cable,1,11.95,2019-04-02 17:01:00,566 8th St, Los Angeles,CA,90001 +186276,AAA Batteries (4-pack),3,2.99,2019-04-05 00:29:00,528 Elm St, San Francisco,CA,94016 +186277,AA Batteries (4-pack),1,3.84,2019-04-07 00:30:00,914 Park St, New York City,NY,10001 +186278,Lightning Charging Cable,1,14.95,2019-04-08 10:54:00,774 Lakeview St, San Francisco,CA,94016 +186279,20in Monitor,1,109.99,2019-04-12 00:22:00,535 Lake St, New York City,NY,10001 +186280,Wired Headphones,1,11.99,2019-04-18 09:45:00,834 Lakeview St, Los Angeles,CA,90001 +186281,Wired Headphones,1,11.99,2019-04-10 11:02:00,203 Lake St, Los Angeles,CA,90001 +186282,20in Monitor,1,109.99,2019-04-06 14:21:00,729 Jackson St, Seattle,WA,98101 +186283,Bose SoundSport Headphones,1,99.99,2019-04-21 13:03:00,848 Pine St, Dallas,TX,75001 +186284,iPhone,1,700.0,2019-04-06 01:13:00,30 10th St, Dallas,TX,75001 +186284,Lightning Charging Cable,1,14.95,2019-04-06 01:13:00,30 10th St, Dallas,TX,75001 +186285,iPhone,1,700.0,2019-04-29 14:58:00,500 Chestnut St, San Francisco,CA,94016 +186286,Bose SoundSport Headphones,1,99.99,2019-04-29 17:17:00,708 Maple St, Atlanta,GA,30301 +186287,AAA Batteries (4-pack),2,2.99,2019-04-09 22:16:00,499 13th St, New York City,NY,10001 +186288,iPhone,1,700.0,2019-04-07 09:41:00,204 Spruce St, Austin,TX,73301 +186288,Wired Headphones,1,11.99,2019-04-07 09:41:00,204 Spruce St, Austin,TX,73301 +186289,Apple Airpods Headphones,1,150.0,2019-04-09 09:57:00,402 8th St, New York City,NY,10001 +186290,USB-C Charging Cable,1,11.95,2019-04-12 20:26:00,308 Wilson St, New York City,NY,10001 +186291,AA Batteries (4-pack),1,3.84,2019-04-21 11:01:00,358 Maple St, Dallas,TX,75001 +186292,Wired Headphones,1,11.99,2019-04-14 12:11:00,666 Jackson St, Los Angeles,CA,90001 +186293,27in 4K Gaming Monitor,1,389.99,2019-04-20 17:09:00,268 Spruce St, San Francisco,CA,94016 +186294,27in 4K Gaming Monitor,1,389.99,2019-04-28 08:23:00,13 Center St, San Francisco,CA,94016 +186295,Apple Airpods Headphones,1,150.0,2019-04-27 12:40:00,345 13th St, Atlanta,GA,30301 +186296,Macbook Pro Laptop,1,1700.0,2019-04-04 15:16:00,491 4th St, San Francisco,CA,94016 +186297,Bose SoundSport Headphones,1,99.99,2019-04-01 07:01:00,944 Cherry St, Atlanta,GA,30301 +186298,Bose SoundSport Headphones,1,99.99,2019-04-21 19:07:00,621 5th St, Los Angeles,CA,90001 +186299,27in 4K Gaming Monitor,1,389.99,2019-04-18 00:19:00,55 Jackson St, Los Angeles,CA,90001 +186300,Bose SoundSport Headphones,1,99.99,2019-04-09 00:41:00,495 Hill St, San Francisco,CA,94016 +186301,Lightning Charging Cable,1,14.95,2019-04-24 03:05:00,279 Hill St, Boston,MA,02215 +186302,LG Dryer,1,600.0,2019-04-13 18:35:00,505 Johnson St, Boston,MA,02215 +186303,Lightning Charging Cable,1,14.95,2019-04-28 17:54:00,438 4th St, San Francisco,CA,94016 +186304,Lightning Charging Cable,1,14.95,2019-04-24 07:14:00,498 Lake St, Seattle,WA,98101 +186305,Wired Headphones,1,11.99,2019-04-19 15:24:00,460 Hill St, San Francisco,CA,94016 +186306,Macbook Pro Laptop,1,1700.0,2019-04-14 19:52:00,447 12th St, Atlanta,GA,30301 +186307,Apple Airpods Headphones,1,150.0,2019-04-16 03:38:00,79 South St, Seattle,WA,98101 +186308,AA Batteries (4-pack),1,3.84,2019-04-11 23:49:00,171 7th St, Dallas,TX,75001 +186309,AAA Batteries (4-pack),2,2.99,2019-04-24 14:47:00,801 14th St, Boston,MA,02215 +186310,USB-C Charging Cable,1,11.95,2019-04-19 15:01:00,68 Highland St, San Francisco,CA,94016 +186311,Lightning Charging Cable,1,14.95,2019-04-12 23:38:00,835 Willow St, Austin,TX,73301 +186312,27in 4K Gaming Monitor,1,389.99,2019-04-19 15:03:00,721 Forest St, Boston,MA,02215 +186313,Bose SoundSport Headphones,1,99.99,2019-04-13 15:28:00,429 Cherry St, Atlanta,GA,30301 +186314,Apple Airpods Headphones,1,150.0,2019-04-08 21:17:00,759 Lincoln St, San Francisco,CA,94016 +186315,Apple Airpods Headphones,1,150.0,2019-04-13 09:07:00,670 Center St, San Francisco,CA,94016 +186316,27in 4K Gaming Monitor,1,389.99,2019-04-14 23:41:00,528 10th St, New York City,NY,10001 +186317,Lightning Charging Cable,1,14.95,2019-04-14 13:16:00,590 Cherry St, Atlanta,GA,30301 +186318,AAA Batteries (4-pack),1,2.99,2019-04-21 18:15:00,28 Chestnut St, Los Angeles,CA,90001 +186319,27in 4K Gaming Monitor,1,389.99,2019-04-16 07:16:00,942 Main St, Los Angeles,CA,90001 +186320,Lightning Charging Cable,1,14.95,2019-04-29 10:53:00,759 4th St, Los Angeles,CA,90001 +186321,27in FHD Monitor,1,149.99,2019-04-26 21:09:00,429 14th St, San Francisco,CA,94016 +186322,AA Batteries (4-pack),1,3.84,2019-04-01 17:27:00,423 14th St, Dallas,TX,75001 +186323,Google Phone,1,600.0,2019-04-20 10:42:00,185 10th St, New York City,NY,10001 +186324,Bose SoundSport Headphones,1,99.99,2019-04-21 15:07:00,925 13th St, Boston,MA,02215 +186325,AAA Batteries (4-pack),2,2.99,2019-04-16 23:43:00,75 12th St, Boston,MA,02215 +186326,AAA Batteries (4-pack),1,2.99,2019-04-05 12:04:00,317 12th St, San Francisco,CA,94016 +186327,27in 4K Gaming Monitor,1,389.99,2019-04-29 05:12:00,607 6th St, Seattle,WA,98101 +186328,Wired Headphones,1,11.99,2019-04-02 19:31:00,576 Madison St, Dallas,TX,75001 +186329,Bose SoundSport Headphones,1,99.99,2019-04-12 18:35:00,407 Johnson St, Los Angeles,CA,90001 +186330,Wired Headphones,1,11.99,2019-04-23 11:50:00,493 Madison St, San Francisco,CA,94016 +186331,AAA Batteries (4-pack),5,2.99,2019-04-09 11:35:00,553 2nd St, Los Angeles,CA,90001 +186331,AAA Batteries (4-pack),1,2.99,2019-04-09 11:35:00,553 2nd St, Los Angeles,CA,90001 +186332,Apple Airpods Headphones,1,150.0,2019-04-25 16:39:00,170 10th St, Seattle,WA,98101 +186333,Apple Airpods Headphones,1,150.0,2019-04-27 10:35:00,433 4th St, San Francisco,CA,94016 +186334,Flatscreen TV,1,300.0,2019-04-05 10:18:00,612 North St, Seattle,WA,98101 +186335,Macbook Pro Laptop,1,1700.0,2019-04-18 11:57:00,211 Hill St, San Francisco,CA,94016 +186336,ThinkPad Laptop,1,999.99,2019-04-08 23:29:00,785 13th St, Seattle,WA,98101 +186337,27in FHD Monitor,1,149.99,2019-04-09 12:04:00,229 Park St, San Francisco,CA,94016 +186338,27in FHD Monitor,1,149.99,2019-04-16 17:23:00,56 Pine St, Boston,MA,02215 +186339,USB-C Charging Cable,1,11.95,2019-04-16 16:47:00,109 Church St, San Francisco,CA,94016 +186340,USB-C Charging Cable,1,11.95,2019-04-07 13:00:00,675 River St, Los Angeles,CA,90001 +186341,AAA Batteries (4-pack),1,2.99,2019-04-13 17:44:00,456 4th St, San Francisco,CA,94016 +186342,Bose SoundSport Headphones,1,99.99,2019-04-29 08:59:00,231 13th St, Dallas,TX,75001 +186343,Apple Airpods Headphones,1,150.0,2019-04-10 00:15:00,567 Park St, New York City,NY,10001 +186344,Google Phone,1,600.0,2019-04-04 10:14:00,809 Hill St, Seattle,WA,98101 +186345,Apple Airpods Headphones,1,150.0,2019-04-02 18:03:00,305 8th St, New York City,NY,10001 +186346,27in FHD Monitor,1,149.99,2019-04-10 17:25:00,600 Madison St, Austin,TX,73301 +186347,AA Batteries (4-pack),1,3.84,2019-04-09 20:58:00,439 Hickory St, San Francisco,CA,94016 +186348,Apple Airpods Headphones,1,150.0,2019-04-27 23:22:00,684 North St, Portland,ME,04101 +186349,34in Ultrawide Monitor,1,379.99,2019-04-02 22:53:00,551 Ridge St, San Francisco,CA,94016 +186350,AAA Batteries (4-pack),1,2.99,2019-04-30 10:57:00,192 Center St, Los Angeles,CA,90001 +186351,AAA Batteries (4-pack),1,2.99,2019-04-30 21:15:00,321 Adams St, Austin,TX,73301 +186352,Wired Headphones,1,11.99,2019-04-03 18:04:00,575 Cherry St, Dallas,TX,75001 +186353,Bose SoundSport Headphones,1,99.99,2019-04-25 15:08:00,805 9th St, Seattle,WA,98101 +186354,27in FHD Monitor,1,149.99,2019-04-25 12:19:00,217 Wilson St, Portland,ME,04101 +186355,USB-C Charging Cable,1,11.95,2019-04-28 13:19:00,220 Chestnut St, Atlanta,GA,30301 +186356,Lightning Charging Cable,1,14.95,2019-04-25 19:51:00,901 Cherry St, Seattle,WA,98101 +186357,AAA Batteries (4-pack),1,2.99,2019-04-17 15:36:00,461 Park St, Los Angeles,CA,90001 +186358,Lightning Charging Cable,1,14.95,2019-04-14 14:57:00,460 Wilson St, Seattle,WA,98101 +186359,Lightning Charging Cable,1,14.95,2019-04-29 22:03:00,403 12th St, Boston,MA,02215 +186360,Lightning Charging Cable,1,14.95,2019-04-12 15:49:00,656 2nd St, Atlanta,GA,30301 +186361,AA Batteries (4-pack),1,3.84,2019-04-03 13:53:00,64 Lakeview St, Portland,OR,97035 +186362,Wired Headphones,1,11.99,2019-04-01 08:24:00,464 Ridge St, Atlanta,GA,30301 +186362,Lightning Charging Cable,1,14.95,2019-04-01 08:24:00,464 Ridge St, Atlanta,GA,30301 +186363,Bose SoundSport Headphones,1,99.99,2019-04-02 09:08:00,814 2nd St, San Francisco,CA,94016 +186364,AAA Batteries (4-pack),3,2.99,2019-04-12 13:53:00,534 10th St, Los Angeles,CA,90001 +186365,AAA Batteries (4-pack),1,2.99,2019-04-13 23:02:00,357 Forest St, Los Angeles,CA,90001 +186366,27in 4K Gaming Monitor,1,389.99,2019-04-10 01:52:00,713 North St, San Francisco,CA,94016 +186367,Google Phone,1,600.0,2019-04-18 23:39:00,318 Spruce St, Dallas,TX,75001 +186368,20in Monitor,1,109.99,2019-04-28 10:12:00,352 8th St, New York City,NY,10001 +186369,Google Phone,1,600.0,2019-04-05 10:37:00,930 Church St, Atlanta,GA,30301 +186370,Google Phone,1,600.0,2019-04-14 09:27:00,927 Madison St, Portland,OR,97035 +186370,USB-C Charging Cable,2,11.95,2019-04-14 09:27:00,927 Madison St, Portland,OR,97035 +186371,27in FHD Monitor,1,149.99,2019-04-12 19:02:00,752 14th St, Seattle,WA,98101 +186372,AAA Batteries (4-pack),3,2.99,2019-04-22 14:09:00,293 2nd St, Los Angeles,CA,90001 +186373,Wired Headphones,1,11.99,2019-04-18 13:53:00,739 Chestnut St, New York City,NY,10001 +186374,USB-C Charging Cable,1,11.95,2019-04-06 22:17:00,511 Washington St, Los Angeles,CA,90001 +186375,AA Batteries (4-pack),3,3.84,2019-04-04 10:04:00,440 7th St, New York City,NY,10001 +186376,Wired Headphones,1,11.99,2019-04-02 21:04:00,416 Maple St, Los Angeles,CA,90001 +186377,AA Batteries (4-pack),1,3.84,2019-04-15 20:13:00,9 2nd St, San Francisco,CA,94016 +186378,Lightning Charging Cable,1,14.95,2019-04-18 22:35:00,618 Sunset St, New York City,NY,10001 +186379,USB-C Charging Cable,1,11.95,2019-04-28 17:14:00,672 Spruce St, Los Angeles,CA,90001 +186380,AA Batteries (4-pack),1,3.84,2019-04-14 19:44:00,710 Maple St, Portland,ME,04101 +186381,Lightning Charging Cable,1,14.95,2019-04-06 02:55:00,783 Wilson St, Los Angeles,CA,90001 +186382,Google Phone,1,600.0,2019-04-13 18:30:00,651 West St, New York City,NY,10001 +186383,AA Batteries (4-pack),1,3.84,2019-04-21 21:54:00,622 Park St, Los Angeles,CA,90001 +186384,iPhone,1,700.0,2019-04-02 00:00:00,445 Madison St, San Francisco,CA,94016 +186384,Wired Headphones,1,11.99,2019-04-02 00:00:00,445 Madison St, San Francisco,CA,94016 +186385,20in Monitor,1,109.99,2019-04-09 12:36:00,660 11th St, Boston,MA,02215 +186386,AAA Batteries (4-pack),1,2.99,2019-04-04 11:40:00,329 Cedar St, San Francisco,CA,94016 +186387,Macbook Pro Laptop,1,1700.0,2019-04-05 15:10:00,792 Hill St, Portland,ME,04101 +186388,Flatscreen TV,1,300.0,2019-04-15 08:25:00,199 5th St, Boston,MA,02215 +186389,27in FHD Monitor,2,149.99,2019-04-25 11:17:00,934 Church St, Boston,MA,02215 +186390,Bose SoundSport Headphones,1,99.99,2019-04-28 19:33:00,616 Cherry St, Atlanta,GA,30301 +186391,USB-C Charging Cable,1,11.95,2019-04-19 20:45:00,840 14th St, Dallas,TX,75001 +186392,Apple Airpods Headphones,1,150.0,2019-04-16 09:20:00,916 9th St, San Francisco,CA,94016 +186393,AAA Batteries (4-pack),1,2.99,2019-04-16 03:42:00,661 Main St, San Francisco,CA,94016 +186394,Lightning Charging Cable,1,14.95,2019-04-17 05:30:00,789 9th St, San Francisco,CA,94016 +186395,AA Batteries (4-pack),1,3.84,2019-04-10 15:16:00,952 8th St, Portland,OR,97035 +186396,Lightning Charging Cable,1,14.95,2019-04-11 13:25:00,757 Meadow St, Portland,OR,97035 +186397,27in FHD Monitor,1,149.99,2019-04-22 07:27:00,458 12th St, Atlanta,GA,30301 +186398,iPhone,1,700.0,2019-04-25 13:41:00,156 Dogwood St, San Francisco,CA,94016 +186399,Lightning Charging Cable,1,14.95,2019-04-27 14:03:00,783 Madison St, Dallas,TX,75001 +186400,Apple Airpods Headphones,1,150.0,2019-04-14 05:09:00,729 Park St, Atlanta,GA,30301 +186401,AA Batteries (4-pack),1,3.84,2019-04-17 11:19:00,367 Willow St, Los Angeles,CA,90001 +186402,Apple Airpods Headphones,1,150.0,2019-04-22 10:40:00,571 14th St, Boston,MA,02215 +186403,LG Dryer,1,600.0,2019-04-21 05:43:00,995 12th St, Boston,MA,02215 +186404,USB-C Charging Cable,1,11.95,2019-04-02 07:55:00,70 West St, New York City,NY,10001 +186405,Lightning Charging Cable,1,14.95,2019-04-19 13:19:00,171 Jackson St, Seattle,WA,98101 +186405,AAA Batteries (4-pack),1,2.99,2019-04-19 13:19:00,171 Jackson St, Seattle,WA,98101 +186406,Flatscreen TV,1,300.0,2019-04-15 13:03:00,634 Lincoln St, Austin,TX,73301 +186407,Wired Headphones,1,11.99,2019-04-15 17:16:00,30 Cedar St, New York City,NY,10001 +186408,AA Batteries (4-pack),1,3.84,2019-04-27 10:51:00,136 Sunset St, Los Angeles,CA,90001 +186409,Apple Airpods Headphones,1,150.0,2019-04-22 12:01:00,379 Washington St, Portland,OR,97035 +186410,AAA Batteries (4-pack),1,2.99,2019-04-19 14:36:00,211 Johnson St, Seattle,WA,98101 +186411,Wired Headphones,2,11.99,2019-04-17 21:09:00,725 Church St, New York City,NY,10001 +186412,Wired Headphones,1,11.99,2019-04-13 19:30:00,224 Cherry St, New York City,NY,10001 +186413,AAA Batteries (4-pack),1,2.99,2019-04-07 11:05:00,250 1st St, San Francisco,CA,94016 +186414,AA Batteries (4-pack),1,3.84,2019-04-12 13:42:00,227 1st St, San Francisco,CA,94016 +186415,USB-C Charging Cable,1,11.95,2019-04-11 17:36:00,31 Chestnut St, New York City,NY,10001 +186416,Google Phone,1,600.0,2019-04-02 18:09:00,23 Wilson St, New York City,NY,10001 +186417,Wired Headphones,1,11.99,2019-04-08 22:15:00,893 West St, Austin,TX,73301 +186418,AAA Batteries (4-pack),4,2.99,2019-04-03 21:40:00,680 Spruce St, Los Angeles,CA,90001 +186419,iPhone,1,700.0,2019-04-17 17:15:00,944 Sunset St, Dallas,TX,75001 +186419,Lightning Charging Cable,1,14.95,2019-04-17 17:15:00,944 Sunset St, Dallas,TX,75001 +186420,USB-C Charging Cable,1,11.95,2019-04-18 14:27:00,637 Ridge St, Boston,MA,02215 +186421,Lightning Charging Cable,1,14.95,2019-04-06 23:46:00,252 12th St, Boston,MA,02215 +186422,20in Monitor,2,109.99,2019-04-05 15:22:00,467 Elm St, New York City,NY,10001 +186423,USB-C Charging Cable,1,11.95,2019-04-19 11:16:00,250 7th St, Los Angeles,CA,90001 +186424,USB-C Charging Cable,1,11.95,2019-04-04 21:06:00,645 Dogwood St, Seattle,WA,98101 +186425,Bose SoundSport Headphones,1,99.99,2019-04-02 08:03:00,117 Highland St, San Francisco,CA,94016 +186426,AAA Batteries (4-pack),1,2.99,2019-04-12 16:18:00,230 Walnut St, San Francisco,CA,94016 +186427,Lightning Charging Cable,1,14.95,2019-04-27 12:20:00,257 Hickory St, Portland,OR,97035 +186428,Apple Airpods Headphones,1,150.0,2019-04-20 16:22:00,494 Hickory St, San Francisco,CA,94016 +186429,27in FHD Monitor,1,149.99,2019-04-03 12:45:00,648 Johnson St, Dallas,TX,75001 +186430,Wired Headphones,1,11.99,2019-04-19 20:37:00,858 Highland St, San Francisco,CA,94016 +186431,Wired Headphones,1,11.99,2019-04-17 14:33:00,116 Walnut St, Los Angeles,CA,90001 +186432,AAA Batteries (4-pack),1,2.99,2019-04-13 13:40:00,972 13th St, Portland,OR,97035 +186433,Bose SoundSport Headphones,1,99.99,2019-04-09 20:30:00,889 Johnson St, Los Angeles,CA,90001 +186434,34in Ultrawide Monitor,1,379.99,2019-04-16 18:50:00,20 Sunset St, Atlanta,GA,30301 +186435,iPhone,1,700.0,2019-04-04 19:21:00,387 Highland St, Boston,MA,02215 +186436,Google Phone,1,600.0,2019-04-13 14:00:00,366 Cherry St, Los Angeles,CA,90001 +186436,Wired Headphones,2,11.99,2019-04-13 14:00:00,366 Cherry St, Los Angeles,CA,90001 +186437,AAA Batteries (4-pack),2,2.99,2019-04-10 09:07:00,830 Maple St, Los Angeles,CA,90001 +186438,34in Ultrawide Monitor,1,379.99,2019-04-17 13:32:00,971 Center St, Boston,MA,02215 +186439,Apple Airpods Headphones,1,150.0,2019-04-01 10:41:00,862 Elm St, Atlanta,GA,30301 +186440,USB-C Charging Cable,1,11.95,2019-04-15 14:54:00,250 Willow St, Portland,OR,97035 +186441,Flatscreen TV,1,300.0,2019-04-03 06:52:00,849 Spruce St, Los Angeles,CA,90001 +186442,Wired Headphones,1,11.99,2019-04-11 19:00:00,210 1st St, Seattle,WA,98101 +186443,27in FHD Monitor,1,149.99,2019-04-29 06:36:00,167 Spruce St, Atlanta,GA,30301 +186444,iPhone,1,700.0,2019-04-08 06:14:00,535 South St, Dallas,TX,75001 +186445,Lightning Charging Cable,1,14.95,2019-04-23 12:50:00,631 West St, Boston,MA,02215 +186446,Lightning Charging Cable,1,14.95,2019-04-24 18:22:00,71 Church St, Los Angeles,CA,90001 +186447,Wired Headphones,1,11.99,2019-04-09 11:33:00,91 Hill St, Portland,OR,97035 +186448,AA Batteries (4-pack),1,3.84,2019-04-22 09:20:00,954 5th St, Austin,TX,73301 +186449,27in 4K Gaming Monitor,1,389.99,2019-04-15 23:17:00,141 River St, Dallas,TX,75001 +186450,Apple Airpods Headphones,1,150.0,2019-04-16 19:14:00,759 Adams St, Atlanta,GA,30301 +186451,Wired Headphones,1,11.99,2019-04-19 11:45:00,322 Lake St, Seattle,WA,98101 +186452,Lightning Charging Cable,1,14.95,2019-04-21 18:05:00,655 Spruce St, New York City,NY,10001 +186453,USB-C Charging Cable,1,11.95,2019-04-08 18:58:00,919 Dogwood St, Portland,OR,97035 +186454,27in FHD Monitor,1,149.99,2019-04-03 01:52:00,940 Madison St, Seattle,WA,98101 +186455,iPhone,1,700.0,2019-04-08 10:27:00,131 11th St, Los Angeles,CA,90001 +186456,Lightning Charging Cable,1,14.95,2019-04-22 07:51:00,798 Wilson St, San Francisco,CA,94016 +186457,Lightning Charging Cable,1,14.95,2019-04-18 13:40:00,991 Hickory St, Los Angeles,CA,90001 +186458,Lightning Charging Cable,1,14.95,2019-04-30 11:58:00,205 North St, Seattle,WA,98101 +186459,Lightning Charging Cable,1,14.95,2019-04-24 20:27:00,481 8th St, Seattle,WA,98101 +186460,iPhone,1,700.0,2019-04-22 08:47:00,951 Cedar St, Atlanta,GA,30301 +186461,Flatscreen TV,1,300.0,2019-04-30 07:50:00,891 Lakeview St, Los Angeles,CA,90001 +186462,AAA Batteries (4-pack),1,2.99,2019-04-02 15:41:00,571 Dogwood St, New York City,NY,10001 +186463,Wired Headphones,1,11.99,2019-04-21 12:24:00,452 8th St, Dallas,TX,75001 +186464,AAA Batteries (4-pack),1,2.99,2019-04-21 21:29:00,970 10th St, San Francisco,CA,94016 +186465,AA Batteries (4-pack),1,3.84,2019-04-18 12:09:00,655 2nd St, Portland,OR,97035 +186466,USB-C Charging Cable,1,11.95,2019-04-24 13:37:00,603 9th St, Portland,ME,04101 +186467,Flatscreen TV,1,300.0,2019-04-16 05:49:00,911 Hickory St, Portland,OR,97035 +186468,iPhone,1,700.0,2019-04-08 13:57:00,887 Willow St, Los Angeles,CA,90001 +186469,Bose SoundSport Headphones,1,99.99,2019-04-26 21:50:00,361 12th St, Los Angeles,CA,90001 +186470,Wired Headphones,2,11.99,2019-04-06 09:48:00,344 Meadow St, Boston,MA,02215 +186471,Lightning Charging Cable,2,14.95,2019-04-29 01:51:00,883 Church St, Atlanta,GA,30301 +186472,USB-C Charging Cable,1,11.95,2019-04-20 13:47:00,775 West St, Austin,TX,73301 +186473,Apple Airpods Headphones,1,150.0,2019-04-27 23:11:00,901 12th St, San Francisco,CA,94016 +186474,Wired Headphones,1,11.99,2019-04-07 07:31:00,845 5th St, San Francisco,CA,94016 +186475,AA Batteries (4-pack),2,3.84,2019-04-17 12:45:00,525 10th St, Dallas,TX,75001 +186476,Wired Headphones,2,11.99,2019-04-15 08:27:00,984 West St, New York City,NY,10001 +186477,Google Phone,1,600.0,2019-04-14 11:33:00,312 10th St, New York City,NY,10001 +186478,AAA Batteries (4-pack),2,2.99,2019-04-20 01:40:00,309 13th St, New York City,NY,10001 +186479,AAA Batteries (4-pack),3,2.99,2019-04-06 21:13:00,412 5th St, San Francisco,CA,94016 +186480,Wired Headphones,1,11.99,2019-04-27 12:28:00,662 Jefferson St, Austin,TX,73301 +186481,Lightning Charging Cable,1,14.95,2019-04-18 05:55:00,64 10th St, Los Angeles,CA,90001 +186482,Lightning Charging Cable,1,14.95,2019-04-05 22:23:00,12 6th St, Austin,TX,73301 +186483,USB-C Charging Cable,1,11.95,2019-04-06 19:55:00,677 Madison St, Boston,MA,02215 +186484,Macbook Pro Laptop,1,1700.0,2019-04-24 16:42:00,184 10th St, San Francisco,CA,94016 +186485,USB-C Charging Cable,1,11.95,2019-04-08 09:29:00,962 Church St, Dallas,TX,75001 +186486,Wired Headphones,1,11.99,2019-04-16 10:42:00,635 Jefferson St, Austin,TX,73301 +186487,AA Batteries (4-pack),1,3.84,2019-04-16 03:15:00,431 Madison St, Portland,OR,97035 +186487,34in Ultrawide Monitor,1,379.99,2019-04-16 03:15:00,431 Madison St, Portland,OR,97035 +186488,Bose SoundSport Headphones,1,99.99,2019-04-10 22:14:00,814 Johnson St, Dallas,TX,75001 +186489,iPhone,1,700.0,2019-04-12 12:30:00,281 Cherry St, San Francisco,CA,94016 +186490,AAA Batteries (4-pack),1,2.99,2019-04-23 11:58:00,917 Center St, Portland,OR,97035 +186491,AA Batteries (4-pack),1,3.84,2019-04-16 22:06:00,905 11th St, Atlanta,GA,30301 +186492,Macbook Pro Laptop,1,1700.0,2019-04-07 23:34:00,606 7th St, New York City,NY,10001 +186493,Bose SoundSport Headphones,1,99.99,2019-04-30 17:43:00,791 12th St, Austin,TX,73301 +186494,AA Batteries (4-pack),1,3.84,2019-04-18 15:37:00,434 Jefferson St, Los Angeles,CA,90001 +186495,AAA Batteries (4-pack),3,2.99,2019-04-30 07:52:00,709 Jackson St, New York City,NY,10001 +186496,Lightning Charging Cable,1,14.95,2019-04-06 22:16:00,340 14th St, New York City,NY,10001 +186497,Lightning Charging Cable,1,14.95,2019-04-14 21:44:00,339 10th St, Los Angeles,CA,90001 +186498,AA Batteries (4-pack),2,3.84,2019-04-08 12:58:00,317 Pine St, Austin,TX,73301 +186499,AAA Batteries (4-pack),1,2.99,2019-04-12 11:18:00,509 10th St, Los Angeles,CA,90001 +186500,Lightning Charging Cable,1,14.95,2019-04-10 19:10:00,301 Walnut St, Austin,TX,73301 +186501,Macbook Pro Laptop,1,1700.0,2019-04-09 06:03:00,475 Lake St, Atlanta,GA,30301 +186502,Lightning Charging Cable,1,14.95,2019-04-05 17:31:00,540 Adams St, Atlanta,GA,30301 +186503,20in Monitor,1,109.99,2019-04-23 22:58:00,953 Center St, San Francisco,CA,94016 +186504,Wired Headphones,1,11.99,2019-04-28 09:01:00,276 Maple St, Austin,TX,73301 +186505,27in FHD Monitor,1,149.99,2019-04-06 14:07:00,473 Adams St, Dallas,TX,75001 +186506,Bose SoundSport Headphones,1,99.99,2019-04-08 09:32:00,460 7th St, San Francisco,CA,94016 +186507,AA Batteries (4-pack),1,3.84,2019-04-26 05:43:00,619 Ridge St, New York City,NY,10001 +186508,Wired Headphones,1,11.99,2019-04-03 16:40:00,898 11th St, Austin,TX,73301 +186509,LG Washing Machine,1,600.0,2019-04-27 11:49:00,428 Dogwood St, Los Angeles,CA,90001 +186510,Google Phone,1,600.0,2019-04-25 23:15:00,785 Center St, Seattle,WA,98101 +186511,Wired Headphones,1,11.99,2019-04-20 00:54:00,889 7th St, Los Angeles,CA,90001 +186512,AAA Batteries (4-pack),1,2.99,2019-04-12 23:35:00,555 1st St, San Francisco,CA,94016 +186513,AA Batteries (4-pack),1,3.84,2019-04-24 08:22:00,261 Meadow St, Portland,ME,04101 +186514,AA Batteries (4-pack),1,3.84,2019-04-27 10:36:00,862 Meadow St, Seattle,WA,98101 +186515,Lightning Charging Cable,1,14.95,2019-04-30 20:07:00,888 North St, New York City,NY,10001 +186516,Google Phone,1,600.0,2019-04-23 04:36:00,687 Willow St, Seattle,WA,98101 +186517,AAA Batteries (4-pack),1,2.99,2019-04-20 10:19:00,702 Lakeview St, Dallas,TX,75001 +186518,USB-C Charging Cable,1,11.95,2019-04-18 17:10:00,526 Wilson St, Dallas,TX,75001 +186519,34in Ultrawide Monitor,1,379.99,2019-04-29 20:18:00,933 Cherry St, Los Angeles,CA,90001 +186520,AA Batteries (4-pack),1,3.84,2019-04-02 23:49:00,234 10th St, Boston,MA,02215 +186521,Bose SoundSport Headphones,1,99.99,2019-04-28 18:41:00,686 5th St, San Francisco,CA,94016 +186522,USB-C Charging Cable,1,11.95,2019-04-17 19:34:00,495 Lake St, Atlanta,GA,30301 +186523,Flatscreen TV,1,300.0,2019-04-02 12:37:00,493 Lakeview St, Boston,MA,02215 +186524,Lightning Charging Cable,1,14.95,2019-04-22 11:29:00,630 7th St, Austin,TX,73301 +186525,AAA Batteries (4-pack),1,2.99,2019-04-07 16:57:00,468 Willow St, Boston,MA,02215 +186526,Lightning Charging Cable,1,14.95,2019-04-20 14:39:00,433 Forest St, Portland,OR,97035 +186527,Apple Airpods Headphones,1,150.0,2019-04-14 11:54:00,726 Forest St, Los Angeles,CA,90001 +186528,AAA Batteries (4-pack),1,2.99,2019-04-08 17:41:00,494 Pine St, Atlanta,GA,30301 +186529,USB-C Charging Cable,1,11.95,2019-04-18 15:42:00,994 Willow St, Boston,MA,02215 +186530,USB-C Charging Cable,1,11.95,2019-04-27 16:49:00,647 Lincoln St, San Francisco,CA,94016 +186531,Macbook Pro Laptop,1,1700.0,2019-04-09 07:38:00,659 11th St, New York City,NY,10001 +186532,Google Phone,1,600.0,2019-04-27 10:22:00,860 Elm St, San Francisco,CA,94016 +186532,USB-C Charging Cable,1,11.95,2019-04-27 10:22:00,860 Elm St, San Francisco,CA,94016 +186533,Google Phone,1,600.0,2019-04-18 00:14:00,733 Main St, Austin,TX,73301 +186533,USB-C Charging Cable,1,11.95,2019-04-18 00:14:00,733 Main St, Austin,TX,73301 +186534,Macbook Pro Laptop,1,1700.0,2019-04-05 10:36:00,689 4th St, San Francisco,CA,94016 +186535,Apple Airpods Headphones,1,150.0,2019-04-02 21:15:00,147 8th St, New York City,NY,10001 +186536,Lightning Charging Cable,1,14.95,2019-04-14 22:42:00,682 West St, Los Angeles,CA,90001 +186537,Lightning Charging Cable,1,14.95,2019-04-10 07:53:00,682 12th St, New York City,NY,10001 +186538,27in FHD Monitor,1,149.99,2019-04-21 21:52:00,55 13th St, Seattle,WA,98101 +186539,AAA Batteries (4-pack),1,2.99,2019-04-04 01:31:00,103 Forest St, Dallas,TX,75001 +186540,Apple Airpods Headphones,1,150.0,2019-04-14 21:31:00,628 West St, Los Angeles,CA,90001 +186541,ThinkPad Laptop,1,999.99,2019-04-28 20:42:00,957 Lakeview St, Los Angeles,CA,90001 +186542,AA Batteries (4-pack),1,3.84,2019-04-05 15:48:00,478 Highland St, Los Angeles,CA,90001 +186543,Bose SoundSport Headphones,1,99.99,2019-04-18 19:14:00,71 13th St, Austin,TX,73301 +186544,34in Ultrawide Monitor,1,379.99,2019-04-04 17:56:00,440 Madison St, San Francisco,CA,94016 +186545,Bose SoundSport Headphones,1,99.99,2019-04-18 07:16:00,405 10th St, New York City,NY,10001 +186546,Lightning Charging Cable,1,14.95,2019-04-28 23:07:00,364 Elm St, San Francisco,CA,94016 +186547,USB-C Charging Cable,1,11.95,2019-04-29 18:56:00,559 Walnut St, Austin,TX,73301 +186548,Lightning Charging Cable,1,14.95,2019-04-28 15:46:00,651 5th St, Boston,MA,02215 +186549,AA Batteries (4-pack),1,3.84,2019-04-07 18:05:00,193 River St, New York City,NY,10001 +186550,USB-C Charging Cable,1,11.95,2019-04-14 21:01:00,291 Washington St, Atlanta,GA,30301 +186551,27in FHD Monitor,1,149.99,2019-04-11 19:31:00,712 Elm St, Seattle,WA,98101 +186552,Vareebadd Phone,1,400.0,2019-04-30 14:37:00,164 Elm St, San Francisco,CA,94016 +186552,Wired Headphones,1,11.99,2019-04-30 14:37:00,164 Elm St, San Francisco,CA,94016 +186553,27in FHD Monitor,1,149.99,2019-04-15 16:01:00,214 Cedar St, New York City,NY,10001 +186554,27in FHD Monitor,1,149.99,2019-04-16 11:48:00,299 6th St, Atlanta,GA,30301 +186555,34in Ultrawide Monitor,1,379.99,2019-04-30 14:03:00,79 West St, San Francisco,CA,94016 +186556,AAA Batteries (4-pack),1,2.99,2019-04-20 17:55:00,443 Hickory St, Austin,TX,73301 +186557,Macbook Pro Laptop,1,1700.0,2019-04-18 20:35:00,755 Willow St, Portland,OR,97035 +186558,iPhone,1,700.0,2019-04-29 21:32:00,167 Center St, Dallas,TX,75001 +186559,Apple Airpods Headphones,1,150.0,2019-04-20 18:22:00,592 Ridge St, Los Angeles,CA,90001 +186560,34in Ultrawide Monitor,1,379.99,2019-04-09 01:00:00,968 4th St, San Francisco,CA,94016 +186561,Google Phone,1,600.0,2019-04-03 06:48:00,671 Dogwood St, San Francisco,CA,94016 +186562,34in Ultrawide Monitor,1,379.99,2019-04-01 18:08:00,754 Pine St, Atlanta,GA,30301 +186563,AAA Batteries (4-pack),1,2.99,2019-04-13 11:41:00,13 Lincoln St, Los Angeles,CA,90001 +186564,Bose SoundSport Headphones,1,99.99,2019-04-01 09:00:00,219 13th St, New York City,NY,10001 +186565,Lightning Charging Cable,1,14.95,2019-04-16 15:20:00,515 8th St, Boston,MA,02215 +186566,Bose SoundSport Headphones,1,99.99,2019-04-10 11:03:00,388 Hickory St, Dallas,TX,75001 +186567,AAA Batteries (4-pack),1,2.99,2019-04-19 08:35:00,211 Pine St, Portland,ME,04101 +186568,Flatscreen TV,1,300.0,2019-04-08 04:42:00,697 5th St, San Francisco,CA,94016 +186569,AA Batteries (4-pack),1,3.84,2019-04-27 17:29:00,171 Lakeview St, Portland,OR,97035 +186570,27in FHD Monitor,1,149.99,2019-04-24 13:02:00,742 14th St, San Francisco,CA,94016 +186571,Wired Headphones,1,11.99,2019-04-17 07:08:00,206 Spruce St, San Francisco,CA,94016 +186572,AAA Batteries (4-pack),1,2.99,2019-04-04 22:01:00,532 9th St, San Francisco,CA,94016 +186573,Wired Headphones,1,11.99,2019-04-26 14:58:00,737 Adams St, Seattle,WA,98101 +186574,AA Batteries (4-pack),2,3.84,2019-04-07 13:23:00,455 7th St, Seattle,WA,98101 +186575,Apple Airpods Headphones,1,150.0,2019-04-18 11:57:00,793 Washington St, Dallas,TX,75001 +186576,AA Batteries (4-pack),1,3.84,2019-04-01 07:08:00,288 11th St, San Francisco,CA,94016 +186577,27in 4K Gaming Monitor,1,389.99,2019-04-06 14:33:00,962 Johnson St, Dallas,TX,75001 +186578,Wired Headphones,1,11.99,2019-04-28 16:14:00,828 14th St, Portland,OR,97035 +186579,Bose SoundSport Headphones,1,99.99,2019-04-10 18:37:00,511 Highland St, Dallas,TX,75001 +186580,Vareebadd Phone,1,400.0,2019-04-14 19:04:00,192 Hill St, Boston,MA,02215 +186581,iPhone,1,700.0,2019-04-22 18:28:00,463 Jackson St, Los Angeles,CA,90001 +186582,LG Dryer,1,600.0,2019-04-19 20:34:00,198 12th St, Dallas,TX,75001 +186583,Google Phone,1,600.0,2019-04-10 17:21:00,777 North St, New York City,NY,10001 +186584,Apple Airpods Headphones,1,150.0,2019-04-17 20:48:00,498 14th St, Los Angeles,CA,90001 +186585,USB-C Charging Cable,1,11.95,2019-04-03 12:19:00,739 Johnson St, Atlanta,GA,30301 +186586,Lightning Charging Cable,1,14.95,2019-04-19 15:52:00,148 Dogwood St, Atlanta,GA,30301 +186587,Macbook Pro Laptop,1,1700.0,2019-04-21 17:52:00,483 Church St, Los Angeles,CA,90001 +186588,AA Batteries (4-pack),1,3.84,2019-04-13 20:58:00,249 River St, Seattle,WA,98101 +186589,Macbook Pro Laptop,1,1700.0,2019-04-24 19:05:00,699 4th St, San Francisco,CA,94016 +186590,Apple Airpods Headphones,1,150.0,2019-04-20 19:16:00,25 Madison St, Austin,TX,73301 +186591,Wired Headphones,1,11.99,2019-04-30 10:00:00,255 9th St, Portland,OR,97035 +186592,iPhone,1,700.0,2019-04-14 12:15:00,586 7th St, Seattle,WA,98101 +186593,Google Phone,1,600.0,2019-04-11 08:44:00,970 River St, San Francisco,CA,94016 +186594,iPhone,1,700.0,2019-04-17 10:29:00,200 Maple St, Boston,MA,02215 +186595,Lightning Charging Cable,1,14.95,2019-04-16 20:56:00,59 11th St, Los Angeles,CA,90001 +186596,Lightning Charging Cable,3,14.95,2019-04-24 20:14:00,365 1st St, Los Angeles,CA,90001 +186597,USB-C Charging Cable,1,11.95,2019-04-30 16:27:00,847 Lincoln St, Portland,ME,04101 +186598,Apple Airpods Headphones,1,150.0,2019-04-25 10:29:00,960 10th St, San Francisco,CA,94016 +186599,34in Ultrawide Monitor,1,379.99,2019-04-28 18:56:00,538 Ridge St, Boston,MA,02215 +186600,Google Phone,1,600.0,2019-04-06 19:45:00,814 14th St, San Francisco,CA,94016 +186600,USB-C Charging Cable,1,11.95,2019-04-06 19:45:00,814 14th St, San Francisco,CA,94016 +186601,27in FHD Monitor,1,149.99,2019-04-20 10:26:00,13 Lakeview St, San Francisco,CA,94016 +186602,USB-C Charging Cable,1,11.95,2019-04-28 09:28:00,349 Madison St, San Francisco,CA,94016 +186603,Wired Headphones,1,11.99,2019-04-23 10:11:00,491 Hill St, Atlanta,GA,30301 +186604,Lightning Charging Cable,2,14.95,2019-04-22 14:36:00,595 Cedar St, San Francisco,CA,94016 +186605,Lightning Charging Cable,1,14.95,2019-04-27 19:46:00,652 Chestnut St, Dallas,TX,75001 +186606,27in FHD Monitor,1,149.99,2019-04-04 22:33:00,906 Church St, Austin,TX,73301 +186607,USB-C Charging Cable,2,11.95,2019-04-27 22:33:00,178 River St, Atlanta,GA,30301 +186608,Apple Airpods Headphones,1,150.0,2019-04-28 18:45:00,771 Spruce St, Seattle,WA,98101 +186609,AA Batteries (4-pack),1,3.84,2019-04-22 20:26:00,291 Jackson St, Atlanta,GA,30301 +186610,USB-C Charging Cable,1,11.95,2019-04-16 10:18:00,794 Main St, San Francisco,CA,94016 +186611,20in Monitor,1,109.99,2019-04-12 10:42:00,331 Chestnut St, Seattle,WA,98101 +186612,Lightning Charging Cable,1,14.95,2019-04-20 08:47:00,624 Wilson St, Dallas,TX,75001 +186613,Apple Airpods Headphones,1,150.0,2019-04-02 14:21:00,587 4th St, San Francisco,CA,94016 +186614,Wired Headphones,1,11.99,2019-04-13 16:20:00,223 West St, Seattle,WA,98101 +186615,AAA Batteries (4-pack),1,2.99,2019-04-22 10:00:00,316 9th St, Los Angeles,CA,90001 +186616,27in 4K Gaming Monitor,1,389.99,2019-04-22 23:27:00,346 8th St, Seattle,WA,98101 +186617,Apple Airpods Headphones,1,150.0,2019-04-23 12:10:00,202 5th St, Austin,TX,73301 +186618,Macbook Pro Laptop,1,1700.0,2019-04-25 14:05:00,851 Pine St, Dallas,TX,75001 +186619,Flatscreen TV,1,300.0,2019-04-24 20:09:00,754 Cedar St, Atlanta,GA,30301 +186620,Apple Airpods Headphones,1,150.0,2019-04-13 18:34:00,647 9th St, Atlanta,GA,30301 +186621,AA Batteries (4-pack),1,3.84,2019-04-09 07:00:00,342 5th St, Boston,MA,02215 +186622,Macbook Pro Laptop,1,1700.0,2019-04-30 15:42:00,666 Park St, Los Angeles,CA,90001 +186623,Wired Headphones,1,11.99,2019-04-10 01:07:00,779 River St, Portland,OR,97035 +186624,AA Batteries (4-pack),1,3.84,2019-04-13 20:00:00,522 Wilson St, San Francisco,CA,94016 +186625,Google Phone,1,600.0,2019-04-28 13:00:00,930 Jefferson St, San Francisco,CA,94016 +186626,Wired Headphones,3,11.99,2019-04-08 07:43:00,601 Jefferson St, Portland,ME,04101 +186627,Vareebadd Phone,1,400.0,2019-04-20 11:45:00,188 Meadow St, New York City,NY,10001 +186628,Lightning Charging Cable,1,14.95,2019-04-19 11:20:00,105 Pine St, San Francisco,CA,94016 +186629,Vareebadd Phone,1,400.0,2019-04-28 20:43:00,834 5th St, Dallas,TX,75001 +186629,USB-C Charging Cable,1,11.95,2019-04-28 20:43:00,834 5th St, Dallas,TX,75001 +186630,Bose SoundSport Headphones,1,99.99,2019-04-24 15:41:00,779 Cedar St, New York City,NY,10001 +186631,Flatscreen TV,1,300.0,2019-04-24 15:53:00,26 5th St, Seattle,WA,98101 +186632,AAA Batteries (4-pack),1,2.99,2019-04-15 10:14:00,845 Madison St, Atlanta,GA,30301 +186633,Vareebadd Phone,1,400.0,2019-04-03 13:45:00,681 Hill St, Boston,MA,02215 +186633,USB-C Charging Cable,1,11.95,2019-04-03 13:45:00,681 Hill St, Boston,MA,02215 +186634,AAA Batteries (4-pack),2,2.99,2019-04-18 08:55:00,255 Center St, Seattle,WA,98101 +186635,27in 4K Gaming Monitor,1,389.99,2019-04-25 16:56:00,555 Center St, Los Angeles,CA,90001 +186636,27in FHD Monitor,1,149.99,2019-04-23 12:18:00,68 Wilson St, Los Angeles,CA,90001 +186637,USB-C Charging Cable,1,11.95,2019-04-09 11:03:00,593 4th St, Boston,MA,02215 +186638,USB-C Charging Cable,1,11.95,2019-04-26 19:58:00,311 14th St, New York City,NY,10001 +186639,Bose SoundSport Headphones,1,99.99,2019-04-16 06:24:00,730 11th St, Seattle,WA,98101 +186640,iPhone,1,700.0,2019-04-05 14:01:00,886 Hickory St, San Francisco,CA,94016 +186641,Wired Headphones,1,11.99,2019-04-04 18:07:00,807 5th St, Los Angeles,CA,90001 +186642,USB-C Charging Cable,1,11.95,2019-04-21 12:34:00,781 Park St, Atlanta,GA,30301 +186643,AAA Batteries (4-pack),1,2.99,2019-04-30 19:48:00,63 Wilson St, Atlanta,GA,30301 +186644,Lightning Charging Cable,1,14.95,2019-04-03 20:12:00,414 South St, Dallas,TX,75001 +186645,Flatscreen TV,1,300.0,2019-04-18 14:41:00,934 Madison St, Dallas,TX,75001 +186646,Macbook Pro Laptop,1,1700.0,2019-04-24 21:31:00,979 10th St, San Francisco,CA,94016 +186647,Apple Airpods Headphones,1,150.0,2019-04-28 08:15:00,157 Lincoln St, Atlanta,GA,30301 +186648,Apple Airpods Headphones,1,150.0,2019-04-30 19:30:00,107 10th St, San Francisco,CA,94016 +186649,27in 4K Gaming Monitor,1,389.99,2019-04-24 15:32:00,847 Park St, San Francisco,CA,94016 +186650,AA Batteries (4-pack),1,3.84,2019-04-01 06:11:00,163 Elm St, Boston,MA,02215 +186651,34in Ultrawide Monitor,1,379.99,2019-04-17 17:22:00,901 Lincoln St, Los Angeles,CA,90001 +186652,Flatscreen TV,1,300.0,2019-04-29 13:37:00,860 Madison St, New York City,NY,10001 +186653,27in 4K Gaming Monitor,1,389.99,2019-04-13 11:33:00,313 Lakeview St, Dallas,TX,75001 +186654,Apple Airpods Headphones,1,150.0,2019-04-03 10:20:00,776 Walnut St, San Francisco,CA,94016 +186655,34in Ultrawide Monitor,1,379.99,2019-04-20 09:34:00,465 10th St, Atlanta,GA,30301 +186656,Lightning Charging Cable,1,14.95,2019-04-30 17:27:00,531 Wilson St, New York City,NY,10001 +186657,AAA Batteries (4-pack),1,2.99,2019-04-21 21:04:00,608 5th St, Boston,MA,02215 +186658,USB-C Charging Cable,1,11.95,2019-04-12 05:17:00,862 8th St, New York City,NY,10001 +186659,Lightning Charging Cable,1,14.95,2019-04-03 17:56:00,245 6th St, San Francisco,CA,94016 +186660,Vareebadd Phone,1,400.0,2019-04-18 19:52:00,222 7th St, Portland,OR,97035 +186661,27in FHD Monitor,1,149.99,2019-04-24 17:26:00,55 1st St, Los Angeles,CA,90001 +186662,AA Batteries (4-pack),1,3.84,2019-04-17 23:26:00,603 7th St, Boston,MA,02215 +186663,Wired Headphones,1,11.99,2019-04-21 15:10:00,465 2nd St, San Francisco,CA,94016 +186664,AA Batteries (4-pack),1,3.84,2019-04-13 15:04:00,913 Main St, San Francisco,CA,94016 +186665,Bose SoundSport Headphones,1,99.99,2019-04-13 19:47:00,74 11th St, Boston,MA,02215 +186666,27in FHD Monitor,1,149.99,2019-04-03 13:33:00,942 Adams St, Atlanta,GA,30301 +186667,Wired Headphones,1,11.99,2019-04-05 11:17:00,355 North St, Seattle,WA,98101 +186668,Google Phone,1,600.0,2019-04-03 11:23:00,72 Jackson St, San Francisco,CA,94016 +186669,Google Phone,1,600.0,2019-04-09 23:09:00,651 Meadow St, Portland,OR,97035 +186669,USB-C Charging Cable,1,11.95,2019-04-09 23:09:00,651 Meadow St, Portland,OR,97035 +186670,Bose SoundSport Headphones,1,99.99,2019-04-05 18:47:00,589 Sunset St, Los Angeles,CA,90001 +186671,Vareebadd Phone,1,400.0,2019-04-06 11:05:00,324 Hickory St, Atlanta,GA,30301 +186672,Lightning Charging Cable,1,14.95,2019-04-11 05:57:00,102 Maple St, Los Angeles,CA,90001 +186673,Apple Airpods Headphones,1,150.0,2019-04-25 15:03:00,109 North St, Los Angeles,CA,90001 +186674,LG Washing Machine,1,600.0,2019-04-19 17:52:00,393 Hill St, Portland,OR,97035 +186675,AAA Batteries (4-pack),1,2.99,2019-04-06 08:36:00,125 Meadow St, San Francisco,CA,94016 +186676,27in FHD Monitor,1,149.99,2019-04-29 17:55:00,625 Center St, Portland,OR,97035 +186677,Bose SoundSport Headphones,1,99.99,2019-04-28 22:14:00,871 Cherry St, Boston,MA,02215 +186678,AAA Batteries (4-pack),1,2.99,2019-04-29 22:55:00,873 River St, New York City,NY,10001 +186679,USB-C Charging Cable,1,11.95,2019-04-15 13:30:00,742 13th St, Los Angeles,CA,90001 +186680,Vareebadd Phone,1,400.0,2019-04-08 12:56:00,195 Willow St, Atlanta,GA,30301 +186681,ThinkPad Laptop,1,999.99,2019-04-13 17:53:00,396 1st St, Los Angeles,CA,90001 +186682,AAA Batteries (4-pack),1,2.99,2019-04-13 11:11:00,450 Highland St, Los Angeles,CA,90001 +186683,27in FHD Monitor,1,149.99,2019-04-08 15:52:00,989 Washington St, New York City,NY,10001 +186684,Lightning Charging Cable,2,14.95,2019-04-09 17:35:00,46 South St, Dallas,TX,75001 +186685,iPhone,1,700.0,2019-04-13 19:03:00,894 Cedar St, Austin,TX,73301 +186686,Wired Headphones,1,11.99,2019-04-05 12:58:00,92 Walnut St, San Francisco,CA,94016 +186687,AA Batteries (4-pack),1,3.84,2019-04-24 12:21:00,929 Elm St, Los Angeles,CA,90001 +186688,Macbook Pro Laptop,1,1700.0,2019-04-27 14:52:00,944 Main St, New York City,NY,10001 +186689,AA Batteries (4-pack),2,3.84,2019-04-06 21:43:00,171 9th St, San Francisco,CA,94016 +186690,Wired Headphones,1,11.99,2019-04-13 20:15:00,146 12th St, Dallas,TX,75001 +186691,AA Batteries (4-pack),2,3.84,2019-04-16 16:46:00,637 Forest St, Boston,MA,02215 +186692,AA Batteries (4-pack),1,3.84,2019-04-25 19:49:00,572 5th St, Austin,TX,73301 +186693,27in FHD Monitor,1,149.99,2019-04-07 22:04:00,610 Center St, Atlanta,GA,30301 +186694,Vareebadd Phone,1,400.0,2019-04-18 18:22:00,255 Lakeview St, San Francisco,CA,94016 +186695,AAA Batteries (4-pack),1,2.99,2019-04-27 19:41:00,498 Meadow St, San Francisco,CA,94016 +186696,AAA Batteries (4-pack),1,2.99,2019-04-01 11:01:00,508 River St, New York City,NY,10001 +186697,27in FHD Monitor,1,149.99,2019-04-21 11:44:00,148 Wilson St, Dallas,TX,75001 +186698,Macbook Pro Laptop,1,1700.0,2019-04-17 14:09:00,823 Lincoln St, Los Angeles,CA,90001 +186699,AA Batteries (4-pack),1,3.84,2019-04-21 11:30:00,97 5th St, New York City,NY,10001 +186700,Apple Airpods Headphones,1,150.0,2019-04-19 08:20:00,313 Johnson St, New York City,NY,10001 +186701,AA Batteries (4-pack),2,3.84,2019-04-17 22:46:00,508 Hickory St, Boston,MA,02215 +186702,Apple Airpods Headphones,1,150.0,2019-04-27 17:29:00,388 8th St, Dallas,TX,75001 +186703,Wired Headphones,1,11.99,2019-04-11 00:57:00,857 Forest St, San Francisco,CA,94016 +186704,Lightning Charging Cable,1,14.95,2019-04-06 12:15:00,574 Cherry St, San Francisco,CA,94016 +186705,34in Ultrawide Monitor,1,379.99,2019-04-09 15:43:00,182 Jefferson St, Portland,OR,97035 +186706,Apple Airpods Headphones,1,150.0,2019-04-24 12:14:00,599 Elm St, New York City,NY,10001 +186707,Wired Headphones,1,11.99,2019-04-17 08:45:00,609 Center St, San Francisco,CA,94016 +186708,Lightning Charging Cable,1,14.95,2019-04-12 14:43:00,655 Maple St, New York City,NY,10001 +186709,Apple Airpods Headphones,1,150.0,2019-04-24 23:58:00,987 Wilson St, Los Angeles,CA,90001 +186710,AA Batteries (4-pack),1,3.84,2019-04-20 21:56:00,285 Dogwood St, Boston,MA,02215 +186711,Wired Headphones,1,11.99,2019-04-27 18:54:00,1 1st St, Austin,TX,73301 +186712,Lightning Charging Cable,1,14.95,2019-04-26 20:45:00,768 7th St, Portland,ME,04101 +186713,iPhone,1,700.0,2019-04-11 13:08:00,297 Hickory St, Portland,OR,97035 +186714,Wired Headphones,1,11.99,2019-04-10 14:26:00,398 11th St, Austin,TX,73301 +186714,Apple Airpods Headphones,1,150.0,2019-04-10 14:26:00,398 11th St, Austin,TX,73301 +186715,Wired Headphones,1,11.99,2019-04-05 05:09:00,394 13th St, San Francisco,CA,94016 +186716,AA Batteries (4-pack),1,3.84,2019-04-19 16:18:00,511 West St, San Francisco,CA,94016 +186717,Apple Airpods Headphones,1,150.0,2019-04-29 07:03:00,613 2nd St, San Francisco,CA,94016 +186718,Bose SoundSport Headphones,1,99.99,2019-04-25 19:06:00,63 8th St, Los Angeles,CA,90001 +186719,iPhone,1,700.0,2019-04-28 19:20:00,168 Forest St, Los Angeles,CA,90001 +186720,Flatscreen TV,1,300.0,2019-04-08 12:52:00,967 South St, Dallas,TX,75001 +186721,Bose SoundSport Headphones,1,99.99,2019-04-24 13:47:00,324 14th St, Austin,TX,73301 +186722,Google Phone,1,600.0,2019-04-11 23:58:00,731 Dogwood St, San Francisco,CA,94016 +186722,Bose SoundSport Headphones,1,99.99,2019-04-11 23:58:00,731 Dogwood St, San Francisco,CA,94016 +186723,AAA Batteries (4-pack),2,2.99,2019-04-20 17:18:00,62 Adams St, Seattle,WA,98101 +186724,Vareebadd Phone,1,400.0,2019-04-13 12:31:00,27 Lincoln St, San Francisco,CA,94016 +186725,Lightning Charging Cable,1,14.95,2019-04-07 21:53:00,73 Walnut St, San Francisco,CA,94016 +186726,34in Ultrawide Monitor,1,379.99,2019-04-09 12:07:00,750 North St, Boston,MA,02215 +186727,Lightning Charging Cable,1,14.95,2019-04-17 22:31:00,507 Main St, New York City,NY,10001 +186728,USB-C Charging Cable,1,11.95,2019-04-25 11:08:00,410 4th St, San Francisco,CA,94016 +186729,Lightning Charging Cable,1,14.95,2019-04-15 12:50:00,818 9th St, Los Angeles,CA,90001 +186730,AA Batteries (4-pack),1,3.84,2019-04-28 10:05:00,458 Meadow St, Dallas,TX,75001 +186731,ThinkPad Laptop,1,999.99,2019-04-04 14:57:00,232 Main St, Dallas,TX,75001 +186732,AA Batteries (4-pack),2,3.84,2019-04-18 09:45:00,402 West St, Los Angeles,CA,90001 +186733,USB-C Charging Cable,1,11.95,2019-04-25 07:52:00,361 4th St, New York City,NY,10001 +186734,AAA Batteries (4-pack),1,2.99,2019-04-18 09:13:00,398 Chestnut St, Los Angeles,CA,90001 +186735,Bose SoundSport Headphones,1,99.99,2019-04-07 16:04:00,487 Adams St, Dallas,TX,75001 +186736,Apple Airpods Headphones,1,150.0,2019-04-08 18:18:00,804 Park St, Dallas,TX,75001 +186737,Apple Airpods Headphones,1,150.0,2019-04-05 10:29:00,380 Washington St, Seattle,WA,98101 +186738,Wired Headphones,1,11.99,2019-04-01 18:38:00,932 Church St, Dallas,TX,75001 +186739,Lightning Charging Cable,1,14.95,2019-04-18 19:27:00,735 Center St, San Francisco,CA,94016 +186740,AA Batteries (4-pack),1,3.84,2019-04-16 14:08:00,59 River St, San Francisco,CA,94016 +186741,27in 4K Gaming Monitor,1,389.99,2019-04-06 07:06:00,159 Sunset St, San Francisco,CA,94016 +186742,Wired Headphones,1,11.99,2019-04-25 17:06:00,650 Chestnut St, Boston,MA,02215 +186743,AA Batteries (4-pack),1,3.84,2019-04-23 17:08:00,567 West St, Portland,ME,04101 +186744,Apple Airpods Headphones,1,150.0,2019-04-07 15:29:00,401 Highland St, Los Angeles,CA,90001 +186745,Wired Headphones,1,11.99,2019-04-02 20:25:00,374 Jackson St, New York City,NY,10001 +186746,27in FHD Monitor,1,149.99,2019-04-09 22:50:00,368 South St, San Francisco,CA,94016 +186747,Lightning Charging Cable,1,14.95,2019-04-02 10:42:00,961 Meadow St, New York City,NY,10001 +186748,Bose SoundSport Headphones,1,99.99,2019-04-08 11:49:00,882 4th St, Dallas,TX,75001 +186749,Wired Headphones,1,11.99,2019-04-05 14:31:00,989 South St, Seattle,WA,98101 +186750,27in FHD Monitor,1,149.99,2019-04-04 19:54:00,379 Spruce St, Austin,TX,73301 +186751,AA Batteries (4-pack),1,3.84,2019-04-24 09:01:00,315 Wilson St, Boston,MA,02215 +186752,Lightning Charging Cable,1,14.95,2019-04-17 08:31:00,507 Washington St, San Francisco,CA,94016 +186753,Google Phone,1,600.0,2019-04-18 09:38:00,529 8th St, Portland,OR,97035 +186753,Wired Headphones,1,11.99,2019-04-18 09:38:00,529 8th St, Portland,OR,97035 +186754,27in FHD Monitor,1,149.99,2019-04-01 05:06:00,824 Chestnut St, San Francisco,CA,94016 +186755,Google Phone,1,600.0,2019-04-03 07:23:00,477 Walnut St, Austin,TX,73301 +186756,AA Batteries (4-pack),2,3.84,2019-04-12 11:11:00,452 2nd St, Los Angeles,CA,90001 +186757,AAA Batteries (4-pack),1,2.99,2019-04-17 12:18:00,559 9th St, San Francisco,CA,94016 +186758,AAA Batteries (4-pack),1,2.99,2019-04-30 14:08:00,816 Madison St, Boston,MA,02215 +186759,Apple Airpods Headphones,1,150.0,2019-04-04 18:47:00,618 6th St, Austin,TX,73301 +186760,Bose SoundSport Headphones,1,99.99,2019-04-05 13:45:00,767 Chestnut St, San Francisco,CA,94016 +186761,AAA Batteries (4-pack),2,2.99,2019-04-24 07:52:00,327 11th St, Dallas,TX,75001 +186762,Bose SoundSport Headphones,1,99.99,2019-04-05 18:30:00,217 Hickory St, Dallas,TX,75001 +186763,Lightning Charging Cable,1,14.95,2019-04-23 16:24:00,616 Walnut St, Los Angeles,CA,90001 +186764,AA Batteries (4-pack),2,3.84,2019-04-30 07:48:00,553 5th St, San Francisco,CA,94016 +186765,27in 4K Gaming Monitor,1,389.99,2019-04-26 12:35:00,29 Center St, Atlanta,GA,30301 +186766,Wired Headphones,1,11.99,2019-04-24 19:35:00,483 South St, San Francisco,CA,94016 +186767,Apple Airpods Headphones,1,150.0,2019-04-21 10:04:00,942 South St, Los Angeles,CA,90001 +186768,USB-C Charging Cable,1,11.95,2019-04-28 21:10:00,380 Elm St, New York City,NY,10001 +186769,Macbook Pro Laptop,1,1700.0,2019-04-24 08:33:00,888 Highland St, Seattle,WA,98101 +186770,AAA Batteries (4-pack),3,2.99,2019-04-29 23:59:00,708 Lakeview St, San Francisco,CA,94016 +186771,Lightning Charging Cable,1,14.95,2019-04-26 15:47:00,755 West St, Los Angeles,CA,90001 +186772,AA Batteries (4-pack),2,3.84,2019-04-19 02:15:00,480 Adams St, New York City,NY,10001 +186773,Lightning Charging Cable,1,14.95,2019-04-13 10:17:00,132 8th St, Los Angeles,CA,90001 +186774,ThinkPad Laptop,1,999.99,2019-04-17 07:16:00,278 Center St, San Francisco,CA,94016 +186775,AA Batteries (4-pack),4,3.84,2019-04-17 00:41:00,220 River St, Seattle,WA,98101 +186776,AAA Batteries (4-pack),1,2.99,2019-04-27 20:21:00,377 10th St, San Francisco,CA,94016 +186777,AAA Batteries (4-pack),3,2.99,2019-04-07 21:16:00,208 West St, Portland,OR,97035 +186778,Apple Airpods Headphones,1,150.0,2019-04-22 19:20:00,110 South St, Portland,OR,97035 +186779,USB-C Charging Cable,1,11.95,2019-04-20 12:55:00,358 Main St, San Francisco,CA,94016 +186780,Lightning Charging Cable,1,14.95,2019-04-18 22:28:00,244 River St, New York City,NY,10001 +186781,iPhone,1,700.0,2019-04-13 12:23:00,778 Cedar St, Los Angeles,CA,90001 +186782,USB-C Charging Cable,1,11.95,2019-04-01 19:23:00,150 Sunset St, Boston,MA,02215 +186783,Apple Airpods Headphones,1,150.0,2019-04-11 07:11:00,749 Main St, Los Angeles,CA,90001 +186784,AA Batteries (4-pack),1,3.84,2019-04-19 20:21:00,448 7th St, San Francisco,CA,94016 +186785,AA Batteries (4-pack),1,3.84,2019-04-01 10:00:00,84 2nd St, Atlanta,GA,30301 +186786,AA Batteries (4-pack),1,3.84,2019-04-22 10:18:00,106 4th St, Los Angeles,CA,90001 +186787,iPhone,1,700.0,2019-04-12 20:05:00,888 Meadow St, San Francisco,CA,94016 +186788,Lightning Charging Cable,1,14.95,2019-04-24 21:30:00,51 Dogwood St, Seattle,WA,98101 +186789,Wired Headphones,1,11.99,2019-04-07 21:59:00,981 Pine St, Austin,TX,73301 +186790,AA Batteries (4-pack),1,3.84,2019-04-26 16:17:00,187 Wilson St, New York City,NY,10001 +186791,Apple Airpods Headphones,1,150.0,2019-04-08 18:58:00,428 Elm St, Dallas,TX,75001 +186791,Wired Headphones,1,11.99,2019-04-08 18:58:00,428 Elm St, Dallas,TX,75001 +186792,27in 4K Gaming Monitor,1,389.99,2019-04-26 12:45:00,739 Hickory St, Seattle,WA,98101 +186793,Bose SoundSport Headphones,1,99.99,2019-04-12 17:07:00,192 Spruce St, Austin,TX,73301 +186794,Bose SoundSport Headphones,1,99.99,2019-04-22 09:00:00,363 Highland St, Los Angeles,CA,90001 +186795,Apple Airpods Headphones,1,150.0,2019-04-06 02:39:00,97 Church St, New York City,NY,10001 +186796,Wired Headphones,1,11.99,2019-04-17 19:02:00,543 4th St, Los Angeles,CA,90001 +186797,Wired Headphones,1,11.99,2019-04-30 18:00:00,970 8th St, Portland,OR,97035 +186798,USB-C Charging Cable,1,11.95,2019-04-26 20:07:00,488 Hickory St, San Francisco,CA,94016 +186799,AAA Batteries (4-pack),2,2.99,2019-04-03 10:35:00,480 Walnut St, Dallas,TX,75001 +186800,Apple Airpods Headphones,1,150.0,2019-04-19 13:22:00,637 Adams St, Seattle,WA,98101 +186801,AAA Batteries (4-pack),2,2.99,2019-04-22 15:02:00,827 11th St, San Francisco,CA,94016 +186802,Wired Headphones,1,11.99,2019-04-19 13:57:00,140 Hickory St, Atlanta,GA,30301 +186803,AAA Batteries (4-pack),1,2.99,2019-04-23 13:26:00,920 South St, New York City,NY,10001 +186804,AAA Batteries (4-pack),2,2.99,2019-04-06 16:28:00,753 Cedar St, Atlanta,GA,30301 +186805,Macbook Pro Laptop,1,1700.0,2019-04-03 11:51:00,784 Wilson St, New York City,NY,10001 +186806,Wired Headphones,1,11.99,2019-04-10 07:01:00,465 North St, Los Angeles,CA,90001 +186807,Lightning Charging Cable,1,14.95,2019-04-19 09:58:00,96 Park St, Atlanta,GA,30301 +186808,27in 4K Gaming Monitor,1,389.99,2019-04-05 22:53:00,118 Willow St, New York City,NY,10001 +186809,Lightning Charging Cable,1,14.95,2019-04-13 23:01:00,328 Ridge St, Austin,TX,73301 +186810,Wired Headphones,1,11.99,2019-04-21 23:45:00,907 Meadow St, San Francisco,CA,94016 +186811,AAA Batteries (4-pack),1,2.99,2019-04-30 20:50:00,816 Lake St, Boston,MA,02215 +186812,AAA Batteries (4-pack),1,2.99,2019-04-20 01:02:00,235 Lakeview St, Seattle,WA,98101 +186813,USB-C Charging Cable,1,11.95,2019-04-12 08:47:00,35 Hill St, Austin,TX,73301 +186814,Google Phone,1,600.0,2019-04-02 01:28:00,456 South St, Boston,MA,02215 +186815,AA Batteries (4-pack),1,3.84,2019-04-14 07:20:00,264 10th St, San Francisco,CA,94016 +186816,iPhone,1,700.0,2019-04-18 18:39:00,671 Hickory St, San Francisco,CA,94016 +186817,Lightning Charging Cable,1,14.95,2019-04-24 19:03:00,571 Hill St, New York City,NY,10001 +186818,27in FHD Monitor,2,149.99,2019-04-28 20:47:00,283 7th St, Boston,MA,02215 +186819,Wired Headphones,1,11.99,2019-04-12 22:28:00,983 Hill St, San Francisco,CA,94016 +186820,Apple Airpods Headphones,1,150.0,2019-04-08 06:04:00,853 Adams St, New York City,NY,10001 +186821,AAA Batteries (4-pack),2,2.99,2019-04-12 21:35:00,407 Park St, Atlanta,GA,30301 +186822,Lightning Charging Cable,1,14.95,2019-04-14 16:21:00,80 Walnut St, San Francisco,CA,94016 +186823,USB-C Charging Cable,2,11.95,2019-04-18 21:21:00,713 Chestnut St, Portland,ME,04101 +186824,AA Batteries (4-pack),1,3.84,2019-04-12 15:00:00,949 Cedar St, Dallas,TX,75001 +186825,AAA Batteries (4-pack),1,2.99,2019-04-08 16:36:00,523 Dogwood St, Boston,MA,02215 +186826,Wired Headphones,1,11.99,2019-04-15 14:28:00,531 Washington St, Los Angeles,CA,90001 +186827,Apple Airpods Headphones,1,150.0,2019-04-25 10:42:00,399 Lakeview St, Austin,TX,73301 +186827,AA Batteries (4-pack),1,3.84,2019-04-25 10:42:00,399 Lakeview St, Austin,TX,73301 +186828,Google Phone,1,600.0,2019-04-21 12:46:00,282 Hickory St, Seattle,WA,98101 +186828,Wired Headphones,1,11.99,2019-04-21 12:46:00,282 Hickory St, Seattle,WA,98101 +186829,Lightning Charging Cable,1,14.95,2019-04-21 18:33:00,64 4th St, San Francisco,CA,94016 +186830,AA Batteries (4-pack),2,3.84,2019-04-13 21:34:00,997 10th St, San Francisco,CA,94016 +186831,iPhone,1,700.0,2019-04-14 20:42:00,599 12th St, Portland,OR,97035 +186831,Wired Headphones,1,11.99,2019-04-14 20:42:00,599 12th St, Portland,OR,97035 +186832,USB-C Charging Cable,1,11.95,2019-04-26 20:54:00,617 Chestnut St, Austin,TX,73301 +186833,AA Batteries (4-pack),1,3.84,2019-04-25 12:51:00,514 Main St, New York City,NY,10001 +186834,Lightning Charging Cable,1,14.95,2019-04-27 14:55:00,792 9th St, San Francisco,CA,94016 +186835,27in 4K Gaming Monitor,1,389.99,2019-04-30 13:30:00,972 Spruce St, Los Angeles,CA,90001 +186836,Google Phone,1,600.0,2019-04-10 12:52:00,424 10th St, Atlanta,GA,30301 +186837,iPhone,1,700.0,2019-04-18 09:36:00,453 Chestnut St, Austin,TX,73301 +186838,Apple Airpods Headphones,1,150.0,2019-04-17 21:38:00,694 Maple St, Atlanta,GA,30301 +186839,20in Monitor,1,109.99,2019-04-04 12:53:00,897 Cherry St, Los Angeles,CA,90001 +186840,AA Batteries (4-pack),2,3.84,2019-04-13 16:08:00,196 South St, New York City,NY,10001 +186841,Wired Headphones,1,11.99,2019-04-06 09:23:00,609 Main St, New York City,NY,10001 +186842,Apple Airpods Headphones,1,150.0,2019-04-29 10:51:00,219 Lake St, Atlanta,GA,30301 +186843,Bose SoundSport Headphones,1,99.99,2019-04-03 19:17:00,631 Ridge St, Dallas,TX,75001 +186844,Lightning Charging Cable,1,14.95,2019-04-21 09:01:00,331 11th St, San Francisco,CA,94016 +186845,iPhone,1,700.0,2019-04-13 11:23:00,97 Hill St, Los Angeles,CA,90001 +186846,Wired Headphones,2,11.99,2019-04-02 06:15:00,100 Cedar St, San Francisco,CA,94016 +186847,AAA Batteries (4-pack),1,2.99,2019-04-03 13:44:00,737 Maple St, Dallas,TX,75001 +186848,Apple Airpods Headphones,1,150.0,2019-04-05 21:28:00,604 Lake St, Seattle,WA,98101 +186849,AAA Batteries (4-pack),1,2.99,2019-04-07 20:45:00,187 Lakeview St, Boston,MA,02215 +186850,Bose SoundSport Headphones,1,99.99,2019-04-09 16:59:00,665 Lincoln St, San Francisco,CA,94016 +186851,AA Batteries (4-pack),1,3.84,2019-04-12 14:01:00,670 12th St, San Francisco,CA,94016 +186852,34in Ultrawide Monitor,1,379.99,2019-04-14 09:47:00,540 8th St, Portland,OR,97035 +186853,AA Batteries (4-pack),1,3.84,2019-04-18 15:25:00,382 14th St, San Francisco,CA,94016 +186854,Wired Headphones,1,11.99,2019-04-15 14:38:00,533 Hill St, Portland,OR,97035 +186855,Wired Headphones,1,11.99,2019-04-27 08:24:00,998 Washington St, San Francisco,CA,94016 +186856,Bose SoundSport Headphones,1,99.99,2019-04-20 14:19:00,757 Chestnut St, Atlanta,GA,30301 +186857,Bose SoundSport Headphones,1,99.99,2019-04-14 15:44:00,491 Cedar St, Los Angeles,CA,90001 +186858,Lightning Charging Cable,1,14.95,2019-04-12 22:46:00,882 River St, San Francisco,CA,94016 +186859,Flatscreen TV,1,300.0,2019-04-21 10:31:00,402 Jefferson St, San Francisco,CA,94016 +186860,Wired Headphones,1,11.99,2019-04-21 22:08:00,531 Main St, San Francisco,CA,94016 +186861,27in FHD Monitor,1,149.99,2019-04-04 11:07:00,173 12th St, San Francisco,CA,94016 +186862,AAA Batteries (4-pack),2,2.99,2019-04-25 15:54:00,6 12th St, Boston,MA,02215 +186862,USB-C Charging Cable,1,11.95,2019-04-25 15:54:00,6 12th St, Boston,MA,02215 +186863,AA Batteries (4-pack),4,3.84,2019-04-25 19:31:00,916 11th St, Austin,TX,73301 +186864,Flatscreen TV,1,300.0,2019-04-19 07:11:00,734 Elm St, San Francisco,CA,94016 +186865,Lightning Charging Cable,1,14.95,2019-04-22 11:35:00,56 Jefferson St, Austin,TX,73301 +186866,27in 4K Gaming Monitor,2,389.99,2019-04-02 19:29:00,721 13th St, San Francisco,CA,94016 +186867,Wired Headphones,1,11.99,2019-04-20 19:19:00,373 7th St, San Francisco,CA,94016 +186868,USB-C Charging Cable,2,11.95,2019-04-12 00:20:00,954 Highland St, Los Angeles,CA,90001 +186869,USB-C Charging Cable,1,11.95,2019-04-08 14:54:00,737 Hickory St, Boston,MA,02215 +186870,ThinkPad Laptop,1,999.99,2019-04-28 22:54:00,666 Lake St, New York City,NY,10001 +186871,AAA Batteries (4-pack),1,2.99,2019-04-28 08:37:00,253 Center St, Dallas,TX,75001 +186872,USB-C Charging Cable,1,11.95,2019-04-26 19:34:00,359 12th St, Los Angeles,CA,90001 +186873,ThinkPad Laptop,1,999.99,2019-04-08 18:29:00,787 Sunset St, Atlanta,GA,30301 +186873,Bose SoundSport Headphones,1,99.99,2019-04-08 18:29:00,787 Sunset St, Atlanta,GA,30301 +186874,Wired Headphones,1,11.99,2019-04-12 15:10:00,396 Pine St, Seattle,WA,98101 +186875,USB-C Charging Cable,1,11.95,2019-04-02 09:30:00,507 Lincoln St, New York City,NY,10001 +186876,Google Phone,1,600.0,2019-04-16 16:52:00,106 6th St, Seattle,WA,98101 +186877,Wired Headphones,1,11.99,2019-04-30 09:10:00,644 Church St, New York City,NY,10001 +186878,AAA Batteries (4-pack),1,2.99,2019-04-10 18:01:00,573 Main St, San Francisco,CA,94016 +186879,Google Phone,1,600.0,2019-04-09 18:40:00,959 Jackson St, Seattle,WA,98101 +186879,USB-C Charging Cable,1,11.95,2019-04-09 18:40:00,959 Jackson St, Seattle,WA,98101 +186880,20in Monitor,1,109.99,2019-04-29 23:11:00,209 Johnson St, San Francisco,CA,94016 +186881,Lightning Charging Cable,1,14.95,2019-04-23 17:59:00,629 Wilson St, Atlanta,GA,30301 +186882,Apple Airpods Headphones,1,150.0,2019-04-20 14:34:00,54 8th St, San Francisco,CA,94016 +186883,AA Batteries (4-pack),1,3.84,2019-04-01 23:17:00,562 Madison St, New York City,NY,10001 +186884,iPhone,1,700.0,2019-04-24 07:24:00,874 Hill St, San Francisco,CA,94016 +186885,27in 4K Gaming Monitor,1,389.99,2019-04-24 20:45:00,403 6th St, Dallas,TX,75001 +186886,Wired Headphones,1,11.99,2019-04-11 21:37:00,104 Lincoln St, Los Angeles,CA,90001 +186887,27in 4K Gaming Monitor,1,389.99,2019-04-26 08:51:00,254 Spruce St, Atlanta,GA,30301 +186888,USB-C Charging Cable,1,11.95,2019-04-24 13:59:00,720 8th St, San Francisco,CA,94016 +186889,20in Monitor,1,109.99,2019-04-22 12:49:00,321 Park St, New York City,NY,10001 +186890,Lightning Charging Cable,1,14.95,2019-04-29 15:18:00,17 North St, San Francisco,CA,94016 +186891,Apple Airpods Headphones,1,150.0,2019-04-10 19:31:00,252 Johnson St, Boston,MA,02215 +186892,Bose SoundSport Headphones,1,99.99,2019-04-17 13:44:00,433 Chestnut St, San Francisco,CA,94016 +186893,Bose SoundSport Headphones,1,99.99,2019-04-24 21:03:00,961 Park St, Seattle,WA,98101 +186894,AA Batteries (4-pack),1,3.84,2019-04-19 17:47:00,178 7th St, Boston,MA,02215 +186895,Lightning Charging Cable,1,14.95,2019-04-03 00:12:00,968 Sunset St, Austin,TX,73301 +186896,20in Monitor,1,109.99,2019-04-19 10:36:00,9 Lake St, Atlanta,GA,30301 +186897,Lightning Charging Cable,1,14.95,2019-04-13 09:59:00,155 Park St, San Francisco,CA,94016 +186898,USB-C Charging Cable,1,11.95,2019-04-05 11:17:00,814 Spruce St, Los Angeles,CA,90001 +186899,LG Dryer,1,600.0,2019-04-05 21:07:00,72 7th St, New York City,NY,10001 +186900,AAA Batteries (4-pack),1,2.99,2019-04-26 18:59:00,943 5th St, Dallas,TX,75001 +186901,Apple Airpods Headphones,1,150.0,2019-04-08 12:46:00,421 Meadow St, Boston,MA,02215 +186902,27in FHD Monitor,1,149.99,2019-04-17 11:30:00,925 Hill St, Seattle,WA,98101 +186903,USB-C Charging Cable,1,11.95,2019-04-12 17:34:00,909 12th St, San Francisco,CA,94016 +186904,Google Phone,1,600.0,2019-04-07 10:55:00,143 5th St, San Francisco,CA,94016 +186904,USB-C Charging Cable,2,11.95,2019-04-07 10:55:00,143 5th St, San Francisco,CA,94016 +186904,Wired Headphones,1,11.99,2019-04-07 10:55:00,143 5th St, San Francisco,CA,94016 +186905,Lightning Charging Cable,1,14.95,2019-04-05 21:11:00,784 Main St, Los Angeles,CA,90001 +186906,AA Batteries (4-pack),1,3.84,2019-04-20 13:44:00,168 South St, Austin,TX,73301 +186907,AA Batteries (4-pack),1,3.84,2019-04-16 21:59:00,353 Lake St, Boston,MA,02215 +186908,AA Batteries (4-pack),2,3.84,2019-04-10 15:45:00,310 Ridge St, Los Angeles,CA,90001 +186909,27in FHD Monitor,1,149.99,2019-04-12 10:42:00,374 6th St, San Francisco,CA,94016 +186910,27in FHD Monitor,1,149.99,2019-04-19 15:38:00,310 13th St, Dallas,TX,75001 +186911,AAA Batteries (4-pack),2,2.99,2019-04-04 08:08:00,861 Jefferson St, San Francisco,CA,94016 +186912,20in Monitor,1,109.99,2019-04-04 09:45:00,363 10th St, Dallas,TX,75001 +186913,Lightning Charging Cable,1,14.95,2019-04-05 11:12:00,75 Meadow St, San Francisco,CA,94016 +186914,27in FHD Monitor,1,149.99,2019-04-21 21:57:00,423 2nd St, New York City,NY,10001 +186915,AAA Batteries (4-pack),2,2.99,2019-04-18 19:49:00,515 2nd St, Atlanta,GA,30301 +186916,Macbook Pro Laptop,1,1700.0,2019-04-03 08:32:00,344 Washington St, New York City,NY,10001 +186917,Lightning Charging Cable,1,14.95,2019-04-10 19:53:00,147 Cherry St, Atlanta,GA,30301 +186918,AA Batteries (4-pack),1,3.84,2019-04-03 09:59:00,18 14th St, New York City,NY,10001 +186919,27in 4K Gaming Monitor,1,389.99,2019-04-10 14:27:00,690 Pine St, Austin,TX,73301 +186920,Wired Headphones,1,11.99,2019-04-16 18:20:00,805 Chestnut St, New York City,NY,10001 +186921,USB-C Charging Cable,1,11.95,2019-04-25 21:22:00,909 Hickory St, Austin,TX,73301 +186922,Google Phone,1,600.0,2019-04-25 23:49:00,124 Chestnut St, Austin,TX,73301 +186923,Apple Airpods Headphones,1,150.0,2019-04-20 16:52:00,180 Maple St, Los Angeles,CA,90001 +186924,27in FHD Monitor,1,149.99,2019-04-29 20:20:00,108 Walnut St, Los Angeles,CA,90001 +186925,AA Batteries (4-pack),1,3.84,2019-04-12 17:49:00,104 Chestnut St, New York City,NY,10001 +186926,AA Batteries (4-pack),1,3.84,2019-04-22 08:36:00,805 Jackson St, Atlanta,GA,30301 +186927,ThinkPad Laptop,1,999.99,2019-04-30 18:12:00,572 Hickory St, New York City,NY,10001 +186928,Lightning Charging Cable,1,14.95,2019-04-28 09:33:00,687 10th St, San Francisco,CA,94016 +186929,iPhone,1,700.0,2019-04-30 10:05:00,159 Cedar St, San Francisco,CA,94016 +186930,Bose SoundSport Headphones,1,99.99,2019-04-05 16:32:00,255 Elm St, Seattle,WA,98101 +186931,AAA Batteries (4-pack),2,2.99,2019-04-01 15:59:00,52 7th St, San Francisco,CA,94016 +186932,Apple Airpods Headphones,1,150.0,2019-04-15 13:32:00,672 Spruce St, Los Angeles,CA,90001 +186933,USB-C Charging Cable,1,11.95,2019-04-09 18:23:00,14 Hickory St, New York City,NY,10001 +186934,Wired Headphones,1,11.99,2019-04-09 19:23:00,140 13th St, Seattle,WA,98101 +186935,Macbook Pro Laptop,1,1700.0,2019-04-05 03:05:00,437 Cherry St, New York City,NY,10001 +186936,Apple Airpods Headphones,1,150.0,2019-04-22 21:49:00,689 North St, Los Angeles,CA,90001 +186937,AA Batteries (4-pack),1,3.84,2019-04-17 16:42:00,338 Wilson St, Portland,OR,97035 +186938,Apple Airpods Headphones,1,150.0,2019-04-12 21:27:00,122 North St, San Francisco,CA,94016 +186939,Macbook Pro Laptop,1,1700.0,2019-04-28 18:10:00,991 Park St, New York City,NY,10001 +186940,Apple Airpods Headphones,1,150.0,2019-04-02 10:25:00,650 Pine St, Portland,ME,04101 +186941,Wired Headphones,2,11.99,2019-04-18 19:25:00,787 Meadow St, New York City,NY,10001 +186942,Apple Airpods Headphones,1,150.0,2019-04-29 08:21:00,862 Cedar St, New York City,NY,10001 +186943,Google Phone,1,600.0,2019-04-02 13:14:00,377 Main St, Boston,MA,02215 +186943,USB-C Charging Cable,1,11.95,2019-04-02 13:14:00,377 Main St, Boston,MA,02215 +186944,AAA Batteries (4-pack),1,2.99,2019-04-13 11:08:00,603 Cedar St, Austin,TX,73301 +186945,USB-C Charging Cable,1,11.95,2019-04-11 16:43:00,150 Madison St, Atlanta,GA,30301 +186946,AA Batteries (4-pack),1,3.84,2019-04-20 11:40:00,4 Spruce St, Austin,TX,73301 +186947,Google Phone,1,600.0,2019-04-05 05:22:00,912 Johnson St, San Francisco,CA,94016 +186948,27in FHD Monitor,1,149.99,2019-04-09 18:31:00,258 Elm St, San Francisco,CA,94016 +186949,USB-C Charging Cable,1,11.95,2019-04-20 22:24:00,219 South St, Los Angeles,CA,90001 +186950,AA Batteries (4-pack),1,3.84,2019-04-02 15:46:00,890 Elm St, New York City,NY,10001 +186951,Wired Headphones,1,11.99,2019-04-30 22:36:00,618 5th St, Los Angeles,CA,90001 +186952,34in Ultrawide Monitor,1,379.99,2019-04-23 15:21:00,582 Church St, San Francisco,CA,94016 +186953,USB-C Charging Cable,1,11.95,2019-04-03 06:34:00,294 Park St, Seattle,WA,98101 +186954,USB-C Charging Cable,1,11.95,2019-04-22 01:48:00,635 Johnson St, Los Angeles,CA,90001 +186955,Macbook Pro Laptop,1,1700.0,2019-04-01 20:58:00,621 Jefferson St, Portland,OR,97035 +186956,AA Batteries (4-pack),1,3.84,2019-04-02 21:49:00,425 Spruce St, Los Angeles,CA,90001 +186956,Wired Headphones,1,11.99,2019-04-02 21:49:00,425 Spruce St, Los Angeles,CA,90001 +186957,USB-C Charging Cable,1,11.95,2019-04-12 09:39:00,715 Johnson St, New York City,NY,10001 +186958,Apple Airpods Headphones,1,150.0,2019-04-19 11:45:00,987 14th St, Atlanta,GA,30301 +186959,AAA Batteries (4-pack),2,2.99,2019-04-02 00:38:00,536 Washington St, Los Angeles,CA,90001 +186960,Bose SoundSport Headphones,1,99.99,2019-04-19 18:59:00,952 11th St, Los Angeles,CA,90001 +186961,Apple Airpods Headphones,1,150.0,2019-04-21 12:03:00,941 5th St, Los Angeles,CA,90001 +186962,Bose SoundSport Headphones,1,99.99,2019-04-27 19:18:00,813 Washington St, Los Angeles,CA,90001 +186963,AA Batteries (4-pack),1,3.84,2019-04-22 13:37:00,664 North St, Seattle,WA,98101 +186964,Macbook Pro Laptop,1,1700.0,2019-04-28 20:34:00,642 12th St, Los Angeles,CA,90001 +186965,Lightning Charging Cable,1,14.95,2019-04-19 16:33:00,981 11th St, Atlanta,GA,30301 +186966,Lightning Charging Cable,2,14.95,2019-04-18 22:33:00,868 Jackson St, Dallas,TX,75001 +186967,AA Batteries (4-pack),1,3.84,2019-04-22 13:33:00,728 Main St, San Francisco,CA,94016 +186968,Lightning Charging Cable,1,14.95,2019-04-09 16:14:00,751 Park St, San Francisco,CA,94016 +186969,AAA Batteries (4-pack),1,2.99,2019-04-02 11:20:00,847 11th St, Portland,OR,97035 +186970,Apple Airpods Headphones,1,150.0,2019-04-18 17:31:00,124 Johnson St, Los Angeles,CA,90001 +186971,AAA Batteries (4-pack),1,2.99,2019-04-13 16:01:00,811 13th St, New York City,NY,10001 +186972,AAA Batteries (4-pack),1,2.99,2019-04-17 22:39:00,924 Jackson St, San Francisco,CA,94016 +186973,AAA Batteries (4-pack),2,2.99,2019-04-08 19:59:00,925 1st St, San Francisco,CA,94016 +186974,iPhone,1,700.0,2019-04-01 16:23:00,860 Park St, Portland,OR,97035 +186975,USB-C Charging Cable,1,11.95,2019-04-14 10:17:00,624 Meadow St, Seattle,WA,98101 +186976,Lightning Charging Cable,1,14.95,2019-04-24 22:05:00,372 7th St, Los Angeles,CA,90001 +186977,Apple Airpods Headphones,1,150.0,2019-04-05 15:49:00,40 Center St, Los Angeles,CA,90001 +186978,Lightning Charging Cable,1,14.95,2019-04-03 14:42:00,517 5th St, Atlanta,GA,30301 +186979,Flatscreen TV,1,300.0,2019-04-11 22:16:00,415 Sunset St, Los Angeles,CA,90001 +186980,27in 4K Gaming Monitor,1,389.99,2019-04-30 08:19:00,667 Chestnut St, Boston,MA,02215 +186981,AA Batteries (4-pack),1,3.84,2019-04-30 11:44:00,616 9th St, Atlanta,GA,30301 +186982,ThinkPad Laptop,1,999.99,2019-04-25 10:11:00,318 13th St, San Francisco,CA,94016 +186983,AA Batteries (4-pack),2,3.84,2019-04-12 10:27:00,872 Madison St, San Francisco,CA,94016 +186984,Flatscreen TV,1,300.0,2019-04-16 12:36:00,930 Park St, Boston,MA,02215 +186985,AAA Batteries (4-pack),1,2.99,2019-04-19 16:39:00,463 Hill St, Portland,ME,04101 +186986,ThinkPad Laptop,1,999.99,2019-04-23 18:35:00,677 7th St, New York City,NY,10001 +186987,Lightning Charging Cable,1,14.95,2019-04-17 13:41:00,250 Johnson St, Atlanta,GA,30301 +186988,20in Monitor,1,109.99,2019-04-28 11:31:00,500 Highland St, San Francisco,CA,94016 +186989,Lightning Charging Cable,1,14.95,2019-04-08 18:18:00,688 Hill St, Atlanta,GA,30301 +186989,AA Batteries (4-pack),2,3.84,2019-04-08 18:18:00,688 Hill St, Atlanta,GA,30301 +186990,27in 4K Gaming Monitor,1,389.99,2019-04-12 22:59:00,15 Hill St, San Francisco,CA,94016 +186991,AA Batteries (4-pack),1,3.84,2019-04-02 10:06:00,797 11th St, San Francisco,CA,94016 +186992,Wired Headphones,1,11.99,2019-04-03 11:21:00,718 5th St, Boston,MA,02215 +186993,AAA Batteries (4-pack),1,2.99,2019-04-29 07:17:00,320 13th St, New York City,NY,10001 +186994,AAA Batteries (4-pack),3,2.99,2019-04-22 11:14:00,258 Lakeview St, Dallas,TX,75001 +186995,Wired Headphones,1,11.99,2019-04-29 09:04:00,326 6th St, Seattle,WA,98101 +186996,27in 4K Gaming Monitor,1,389.99,2019-04-23 13:22:00,559 Walnut St, San Francisco,CA,94016 +186997,USB-C Charging Cable,6,11.95,2019-04-23 21:54:00,733 Chestnut St, Seattle,WA,98101 +186998,Vareebadd Phone,1,400.0,2019-04-09 10:13:00,46 Park St, Portland,OR,97035 +186998,USB-C Charging Cable,1,11.95,2019-04-09 10:13:00,46 Park St, Portland,OR,97035 +186999,27in 4K Gaming Monitor,1,389.99,2019-04-22 13:20:00,943 Wilson St, San Francisco,CA,94016 +187000,USB-C Charging Cable,1,11.95,2019-04-29 19:36:00,593 South St, Portland,OR,97035 +187001,AAA Batteries (4-pack),1,2.99,2019-04-03 10:54:00,710 5th St, San Francisco,CA,94016 +187002,Lightning Charging Cable,1,14.95,2019-04-15 17:43:00,691 11th St, Portland,OR,97035 +187003,27in 4K Gaming Monitor,1,389.99,2019-04-06 19:10:00,107 8th St, Seattle,WA,98101 +187004,Flatscreen TV,1,300.0,2019-04-29 16:10:00,37 Church St, Los Angeles,CA,90001 +187005,AA Batteries (4-pack),3,3.84,2019-04-29 18:53:00,761 West St, Los Angeles,CA,90001 +187006,AAA Batteries (4-pack),2,2.99,2019-04-25 21:34:00,344 Lincoln St, Austin,TX,73301 +187007,USB-C Charging Cable,1,11.95,2019-04-11 21:20:00,816 North St, Boston,MA,02215 +187008,USB-C Charging Cable,2,11.95,2019-04-17 13:44:00,753 Walnut St, Dallas,TX,75001 +187009,27in 4K Gaming Monitor,1,389.99,2019-04-27 10:09:00,650 2nd St, Atlanta,GA,30301 +187010,34in Ultrawide Monitor,1,379.99,2019-04-09 16:10:00,665 Washington St, Atlanta,GA,30301 +187011,AAA Batteries (4-pack),1,2.99,2019-04-26 19:19:00,703 Elm St, Dallas,TX,75001 +187012,AA Batteries (4-pack),1,3.84,2019-04-04 23:43:00,116 Lincoln St, Dallas,TX,75001 +187013,Wired Headphones,1,11.99,2019-04-18 12:13:00,651 7th St, Seattle,WA,98101 +187014,AA Batteries (4-pack),1,3.84,2019-04-04 19:48:00,98 Meadow St, New York City,NY,10001 +187015,USB-C Charging Cable,1,11.95,2019-04-24 00:30:00,449 4th St, New York City,NY,10001 +187016,ThinkPad Laptop,1,999.99,2019-04-23 10:04:00,149 North St, Boston,MA,02215 +187017,34in Ultrawide Monitor,1,379.99,2019-04-21 17:09:00,308 Cherry St, New York City,NY,10001 +187018,iPhone,1,700.0,2019-04-11 17:03:00,301 Walnut St, San Francisco,CA,94016 +187019,Lightning Charging Cable,1,14.95,2019-04-03 07:26:00,371 12th St, Los Angeles,CA,90001 +187020,USB-C Charging Cable,1,11.95,2019-04-23 22:39:00,18 8th St, San Francisco,CA,94016 +187021,Wired Headphones,1,11.99,2019-04-09 10:00:00,282 Meadow St, Seattle,WA,98101 +187022,AAA Batteries (4-pack),1,2.99,2019-04-30 11:46:00,903 Wilson St, Los Angeles,CA,90001 +187023,Lightning Charging Cable,1,14.95,2019-04-07 16:53:00,800 1st St, San Francisco,CA,94016 +187024,Wired Headphones,1,11.99,2019-04-21 11:42:00,211 4th St, Dallas,TX,75001 +187025,27in FHD Monitor,1,149.99,2019-04-28 19:10:00,330 Johnson St, Atlanta,GA,30301 +187026,USB-C Charging Cable,2,11.95,2019-04-02 18:38:00,859 Chestnut St, San Francisco,CA,94016 +187027,AAA Batteries (4-pack),2,2.99,2019-04-25 19:22:00,171 7th St, Los Angeles,CA,90001 +187028,AA Batteries (4-pack),2,3.84,2019-04-01 13:31:00,728 Highland St, New York City,NY,10001 +187029,Apple Airpods Headphones,1,150.0,2019-04-10 23:03:00,315 Highland St, Seattle,WA,98101 +187030,Google Phone,1,600.0,2019-04-17 15:11:00,928 7th St, Boston,MA,02215 +187031,AA Batteries (4-pack),2,3.84,2019-04-25 16:58:00,450 10th St, Dallas,TX,75001 +187032,AAA Batteries (4-pack),1,2.99,2019-04-22 10:03:00,203 1st St, Atlanta,GA,30301 +187033,USB-C Charging Cable,1,11.95,2019-04-20 23:04:00,563 6th St, Los Angeles,CA,90001 +187034,Wired Headphones,1,11.99,2019-04-13 17:18:00,16 River St, Los Angeles,CA,90001 +187035,Apple Airpods Headphones,1,150.0,2019-04-29 10:14:00,536 South St, Boston,MA,02215 +187036,Lightning Charging Cable,1,14.95,2019-04-28 23:02:00,495 Pine St, Atlanta,GA,30301 +187037,Google Phone,1,600.0,2019-04-05 15:16:00,765 Spruce St, San Francisco,CA,94016 +187037,USB-C Charging Cable,1,11.95,2019-04-05 15:16:00,765 Spruce St, San Francisco,CA,94016 +187038,Apple Airpods Headphones,1,150.0,2019-04-09 10:40:00,170 1st St, Portland,OR,97035 +187039,AA Batteries (4-pack),1,3.84,2019-04-05 09:15:00,64 Park St, Los Angeles,CA,90001 +187040,Google Phone,1,600.0,2019-04-23 16:37:00,359 Johnson St, Seattle,WA,98101 +187041,Wired Headphones,1,11.99,2019-04-06 16:11:00,590 Sunset St, Boston,MA,02215 +187042,Lightning Charging Cable,1,14.95,2019-04-13 16:30:00,995 12th St, Los Angeles,CA,90001 +187043,iPhone,1,700.0,2019-04-25 16:47:00,78 Ridge St, San Francisco,CA,94016 +187044,AAA Batteries (4-pack),2,2.99,2019-04-28 10:34:00,524 Sunset St, San Francisco,CA,94016 +187045,AAA Batteries (4-pack),2,2.99,2019-04-08 09:30:00,26 Walnut St, Los Angeles,CA,90001 +187046,AA Batteries (4-pack),2,3.84,2019-04-10 15:05:00,318 Main St, Portland,OR,97035 +187047,iPhone,1,700.0,2019-04-12 22:24:00,624 14th St, Dallas,TX,75001 +187048,AA Batteries (4-pack),3,3.84,2019-04-04 22:59:00,490 Church St, San Francisco,CA,94016 +187049,AAA Batteries (4-pack),1,2.99,2019-04-24 14:58:00,153 Johnson St, Austin,TX,73301 +187050,Apple Airpods Headphones,1,150.0,2019-04-14 17:58:00,463 Willow St, San Francisco,CA,94016 +187051,Lightning Charging Cable,1,14.95,2019-04-16 23:17:00,768 Church St, San Francisco,CA,94016 +187052,Vareebadd Phone,1,400.0,2019-04-07 21:25:00,419 Hickory St, Seattle,WA,98101 +187053,LG Washing Machine,1,600.0,2019-04-26 20:32:00,564 Sunset St, New York City,NY,10001 +187054,Apple Airpods Headphones,1,150.0,2019-04-30 18:59:00,785 Meadow St, Dallas,TX,75001 +187055,Flatscreen TV,1,300.0,2019-04-10 21:14:00,820 Hickory St, Austin,TX,73301 +187056,AA Batteries (4-pack),1,3.84,2019-04-13 12:06:00,563 Wilson St, Boston,MA,02215 +187057,Vareebadd Phone,1,400.0,2019-04-15 21:42:00,164 2nd St, Dallas,TX,75001 +187058,Lightning Charging Cable,1,14.95,2019-04-08 22:30:00,556 Cherry St, Austin,TX,73301 +187059,AAA Batteries (4-pack),3,2.99,2019-04-13 19:09:00,60 Ridge St, Portland,OR,97035 +187060,34in Ultrawide Monitor,1,379.99,2019-04-29 19:14:00,179 Hickory St, Los Angeles,CA,90001 +187061,Lightning Charging Cable,1,14.95,2019-04-15 23:40:00,202 Lincoln St, San Francisco,CA,94016 +187062,AAA Batteries (4-pack),1,2.99,2019-04-14 08:42:00,341 Pine St, Boston,MA,02215 +187063,AA Batteries (4-pack),1,3.84,2019-04-28 16:01:00,965 8th St, Atlanta,GA,30301 +187064,AAA Batteries (4-pack),1,2.99,2019-04-04 19:41:00,688 Hill St, New York City,NY,10001 +187065,AA Batteries (4-pack),3,3.84,2019-04-15 22:05:00,815 Main St, Atlanta,GA,30301 +187066,AA Batteries (4-pack),2,3.84,2019-04-16 23:33:00,660 Lake St, San Francisco,CA,94016 +187067,AA Batteries (4-pack),1,3.84,2019-04-17 06:17:00,199 Johnson St, Atlanta,GA,30301 +187068,Lightning Charging Cable,1,14.95,2019-04-01 09:56:00,246 10th St, San Francisco,CA,94016 +187069,AA Batteries (4-pack),1,3.84,2019-04-03 22:16:00,936 Johnson St, Los Angeles,CA,90001 +187070,USB-C Charging Cable,1,11.95,2019-04-03 19:13:00,712 Ridge St, San Francisco,CA,94016 +187071,Bose SoundSport Headphones,1,99.99,2019-04-05 23:01:00,991 Lakeview St, Los Angeles,CA,90001 +187072,ThinkPad Laptop,1,999.99,2019-04-01 21:13:00,62 6th St, Atlanta,GA,30301 +187073,Wired Headphones,1,11.99,2019-04-13 17:39:00,384 Cedar St, Atlanta,GA,30301 +187074,Apple Airpods Headphones,1,150.0,2019-04-07 10:49:00,143 Adams St, Los Angeles,CA,90001 +187075,Flatscreen TV,1,300.0,2019-04-25 18:26:00,88 10th St, San Francisco,CA,94016 +187076,34in Ultrawide Monitor,1,379.99,2019-04-10 19:28:00,999 2nd St, Los Angeles,CA,90001 +187077,27in FHD Monitor,1,149.99,2019-04-15 08:50:00,508 North St, Los Angeles,CA,90001 +187078,34in Ultrawide Monitor,1,379.99,2019-04-28 19:54:00,853 Lincoln St, New York City,NY,10001 +187079,Apple Airpods Headphones,1,150.0,2019-04-11 12:17:00,733 Washington St, New York City,NY,10001 +187080,20in Monitor,1,109.99,2019-04-18 11:41:00,32 Jackson St, Dallas,TX,75001 +187081,Google Phone,1,600.0,2019-04-08 15:31:00,975 Forest St, Portland,OR,97035 +187081,USB-C Charging Cable,1,11.95,2019-04-08 15:31:00,975 Forest St, Portland,OR,97035 +187082,USB-C Charging Cable,1,11.95,2019-04-29 08:12:00,195 West St, San Francisco,CA,94016 +187083,Wired Headphones,1,11.99,2019-04-11 22:37:00,206 7th St, Boston,MA,02215 +187084,Google Phone,1,600.0,2019-04-13 11:05:00,507 Johnson St, San Francisco,CA,94016 +187085,USB-C Charging Cable,1,11.95,2019-04-26 15:02:00,211 Madison St, New York City,NY,10001 +187086,AA Batteries (4-pack),1,3.84,2019-04-22 16:35:00,912 North St, Los Angeles,CA,90001 +187087,Apple Airpods Headphones,1,150.0,2019-04-15 11:40:00,658 Pine St, New York City,NY,10001 +187088,ThinkPad Laptop,1,999.99,2019-04-13 13:48:00,982 Sunset St, San Francisco,CA,94016 +187089,USB-C Charging Cable,1,11.95,2019-04-15 13:36:00,384 Wilson St, Atlanta,GA,30301 +187090,USB-C Charging Cable,2,11.95,2019-04-28 14:18:00,915 Pine St, Seattle,WA,98101 +187091,AA Batteries (4-pack),3,3.84,2019-04-04 13:50:00,303 Ridge St, San Francisco,CA,94016 +187092,AA Batteries (4-pack),2,3.84,2019-04-08 19:56:00,532 8th St, New York City,NY,10001 +187093,AA Batteries (4-pack),1,3.84,2019-04-05 14:10:00,958 Chestnut St, New York City,NY,10001 +187094,34in Ultrawide Monitor,1,379.99,2019-04-18 21:47:00,398 11th St, Seattle,WA,98101 +187095,AAA Batteries (4-pack),2,2.99,2019-04-17 13:56:00,832 6th St, Los Angeles,CA,90001 +187096,Flatscreen TV,1,300.0,2019-04-24 20:13:00,791 Lincoln St, Portland,OR,97035 +187097,27in FHD Monitor,1,149.99,2019-04-12 22:52:00,230 Highland St, Atlanta,GA,30301 +187098,USB-C Charging Cable,1,11.95,2019-04-01 18:57:00,5 Main St, Los Angeles,CA,90001 +187099,Apple Airpods Headphones,1,150.0,2019-04-01 19:28:00,219 Meadow St, Atlanta,GA,30301 +187100,AAA Batteries (4-pack),2,2.99,2019-04-18 00:47:00,61 11th St, San Francisco,CA,94016 +187101,USB-C Charging Cable,1,11.95,2019-04-06 19:15:00,656 Main St, San Francisco,CA,94016 +187102,USB-C Charging Cable,2,11.95,2019-04-05 15:23:00,890 7th St, San Francisco,CA,94016 +187103,Apple Airpods Headphones,1,150.0,2019-04-25 22:48:00,660 Cherry St, Los Angeles,CA,90001 +187104,Wired Headphones,1,11.99,2019-04-25 10:59:00,838 West St, Los Angeles,CA,90001 +187105,27in FHD Monitor,1,149.99,2019-04-16 12:43:00,439 Center St, Seattle,WA,98101 +187106,Wired Headphones,1,11.99,2019-04-28 16:29:00,701 Jefferson St, New York City,NY,10001 +187107,USB-C Charging Cable,1,11.95,2019-04-16 10:51:00,497 North St, Portland,OR,97035 +187108,iPhone,1,700.0,2019-04-28 01:43:00,298 Wilson St, Atlanta,GA,30301 +187108,Lightning Charging Cable,1,14.95,2019-04-28 01:43:00,298 Wilson St, Atlanta,GA,30301 +187109,27in 4K Gaming Monitor,1,389.99,2019-04-22 18:53:00,361 Jackson St, San Francisco,CA,94016 +187110,20in Monitor,1,109.99,2019-04-21 18:53:00,452 Spruce St, Atlanta,GA,30301 +187111,Bose SoundSport Headphones,1,99.99,2019-04-03 08:57:00,40 6th St, San Francisco,CA,94016 +187112,USB-C Charging Cable,1,11.95,2019-04-21 16:40:00,316 Cherry St, New York City,NY,10001 +187113,Bose SoundSport Headphones,1,99.99,2019-04-30 20:37:00,820 2nd St, New York City,NY,10001 +187114,Apple Airpods Headphones,1,150.0,2019-04-09 14:12:00,641 Adams St, Seattle,WA,98101 +187115,AA Batteries (4-pack),1,3.84,2019-04-22 23:52:00,500 Cherry St, Los Angeles,CA,90001 +187116,Apple Airpods Headphones,1,150.0,2019-04-16 09:58:00,260 9th St, Los Angeles,CA,90001 +187117,Apple Airpods Headphones,1,150.0,2019-04-19 21:20:00,392 Main St, Seattle,WA,98101 +187118,Bose SoundSport Headphones,1,99.99,2019-04-07 18:59:00,197 Main St, San Francisco,CA,94016 +187119,AAA Batteries (4-pack),1,2.99,2019-04-26 02:54:00,250 Sunset St, Seattle,WA,98101 +187120,27in FHD Monitor,1,149.99,2019-04-24 13:39:00,277 Dogwood St, Seattle,WA,98101 +187121,Apple Airpods Headphones,1,150.0,2019-04-20 11:51:00,969 Lakeview St, Seattle,WA,98101 +187122,Bose SoundSport Headphones,1,99.99,2019-04-26 09:32:00,687 Cedar St, New York City,NY,10001 +187123,AAA Batteries (4-pack),2,2.99,2019-04-03 19:11:00,217 North St, Boston,MA,02215 +187124,AAA Batteries (4-pack),1,2.99,2019-04-11 09:23:00,841 Madison St, San Francisco,CA,94016 +187125,USB-C Charging Cable,1,11.95,2019-04-16 15:08:00,531 Wilson St, Atlanta,GA,30301 +187126,Bose SoundSport Headphones,1,99.99,2019-04-11 17:48:00,216 Forest St, Seattle,WA,98101 +187126,34in Ultrawide Monitor,1,379.99,2019-04-11 17:48:00,216 Forest St, Seattle,WA,98101 +187127,USB-C Charging Cable,1,11.95,2019-04-03 15:13:00,8 4th St, Boston,MA,02215 +187128,AA Batteries (4-pack),1,3.84,2019-04-11 17:18:00,564 Lincoln St, Austin,TX,73301 +187129,Wired Headphones,1,11.99,2019-04-13 20:14:00,957 Dogwood St, New York City,NY,10001 +187130,Lightning Charging Cable,1,14.95,2019-04-24 16:58:00,805 Hill St, Boston,MA,02215 +187131,AAA Batteries (4-pack),1,2.99,2019-04-12 09:06:00,52 Johnson St, New York City,NY,10001 +187132,Lightning Charging Cable,1,14.95,2019-04-07 12:21:00,47 2nd St, New York City,NY,10001 +187133,Bose SoundSport Headphones,1,99.99,2019-04-12 17:11:00,257 11th St, Atlanta,GA,30301 +187134,AAA Batteries (4-pack),1,2.99,2019-04-05 19:13:00,426 11th St, San Francisco,CA,94016 +187135,34in Ultrawide Monitor,1,379.99,2019-04-20 19:36:00,698 West St, San Francisco,CA,94016 +187136,Google Phone,1,600.0,2019-04-27 00:29:00,171 Sunset St, San Francisco,CA,94016 +187137,Bose SoundSport Headphones,1,99.99,2019-04-27 23:37:00,112 Center St, San Francisco,CA,94016 +187138,Lightning Charging Cable,1,14.95,2019-04-23 15:10:00,55 Park St, San Francisco,CA,94016 +187139,USB-C Charging Cable,1,11.95,2019-04-11 10:55:00,304 1st St, Boston,MA,02215 +187140,Lightning Charging Cable,1,14.95,2019-04-18 08:31:00,254 4th St, Boston,MA,02215 +187141,Bose SoundSport Headphones,1,99.99,2019-04-13 09:01:00,759 Cedar St, Los Angeles,CA,90001 +187142,AAA Batteries (4-pack),1,2.99,2019-04-21 09:10:00,413 Chestnut St, Seattle,WA,98101 +187143,Lightning Charging Cable,1,14.95,2019-04-07 21:28:00,536 Hickory St, New York City,NY,10001 +187144,Google Phone,1,600.0,2019-04-12 12:40:00,154 12th St, Los Angeles,CA,90001 +187145,iPhone,1,700.0,2019-04-24 21:50:00,166 West St, Atlanta,GA,30301 +187146,Google Phone,1,600.0,2019-04-07 13:12:00,122 13th St, Portland,OR,97035 +187147,AAA Batteries (4-pack),3,2.99,2019-04-23 17:42:00,929 Willow St, Los Angeles,CA,90001 +187148,USB-C Charging Cable,2,11.95,2019-04-01 13:47:00,863 Park St, New York City,NY,10001 +187149,34in Ultrawide Monitor,1,379.99,2019-04-03 12:03:00,507 Lakeview St, Austin,TX,73301 +187150,AAA Batteries (4-pack),1,2.99,2019-04-05 11:12:00,761 West St, Boston,MA,02215 +187151,Bose SoundSport Headphones,1,99.99,2019-04-27 16:58:00,203 Maple St, Portland,OR,97035 +187152,Flatscreen TV,1,300.0,2019-04-15 09:54:00,420 9th St, Atlanta,GA,30301 +187153,Lightning Charging Cable,1,14.95,2019-04-19 17:49:00,582 11th St, Seattle,WA,98101 +187154,Wired Headphones,1,11.99,2019-04-29 04:32:00,775 South St, Boston,MA,02215 +187155,USB-C Charging Cable,1,11.95,2019-04-09 16:25:00,607 Dogwood St, Portland,OR,97035 +187156,Wired Headphones,1,11.99,2019-04-20 17:08:00,356 Pine St, San Francisco,CA,94016 +187157,Lightning Charging Cable,1,14.95,2019-04-10 06:02:00,837 13th St, Austin,TX,73301 +187158,USB-C Charging Cable,1,11.95,2019-04-28 11:31:00,22 Lakeview St, New York City,NY,10001 +187159,AA Batteries (4-pack),2,3.84,2019-04-02 13:43:00,946 Jackson St, Los Angeles,CA,90001 +187160,27in FHD Monitor,1,149.99,2019-04-04 12:36:00,993 Cedar St, New York City,NY,10001 +187161,Vareebadd Phone,1,400.0,2019-04-23 19:33:00,842 Highland St, Los Angeles,CA,90001 +187162,AAA Batteries (4-pack),1,2.99,2019-04-11 14:40:00,293 Sunset St, Boston,MA,02215 +187163,USB-C Charging Cable,1,11.95,2019-04-15 12:06:00,452 Maple St, Dallas,TX,75001 +187164,Apple Airpods Headphones,1,150.0,2019-04-20 13:15:00,916 Ridge St, San Francisco,CA,94016 +187165,USB-C Charging Cable,2,11.95,2019-04-24 23:51:00,425 Hickory St, San Francisco,CA,94016 +187166,Wired Headphones,1,11.99,2019-04-06 20:54:00,276 Washington St, Los Angeles,CA,90001 +187167,Wired Headphones,1,11.99,2019-04-24 13:22:00,918 4th St, San Francisco,CA,94016 +187168,USB-C Charging Cable,1,11.95,2019-04-05 17:06:00,99 Lincoln St, San Francisco,CA,94016 +187169,ThinkPad Laptop,1,999.99,2019-04-22 14:26:00,300 Cedar St, Seattle,WA,98101 +187170,AAA Batteries (4-pack),3,2.99,2019-04-09 23:11:00,810 Ridge St, Los Angeles,CA,90001 +187171,Apple Airpods Headphones,1,150.0,2019-04-17 18:48:00,108 14th St, Boston,MA,02215 +187172,Lightning Charging Cable,1,14.95,2019-04-25 02:16:00,821 Johnson St, Portland,OR,97035 +187172,20in Monitor,1,109.99,2019-04-25 02:16:00,821 Johnson St, Portland,OR,97035 +187173,Wired Headphones,1,11.99,2019-04-29 16:59:00,602 Johnson St, San Francisco,CA,94016 +187174,Bose SoundSport Headphones,1,99.99,2019-04-13 13:42:00,399 Ridge St, Los Angeles,CA,90001 +187175,Google Phone,1,600.0,2019-04-18 13:37:00,111 Elm St, Los Angeles,CA,90001 +187176,34in Ultrawide Monitor,1,379.99,2019-04-20 13:20:00,197 6th St, Boston,MA,02215 +187177,Macbook Pro Laptop,1,1700.0,2019-04-25 10:23:00,979 Park St, Boston,MA,02215 +187178,Vareebadd Phone,1,400.0,2019-04-16 05:50:00,794 River St, San Francisco,CA,94016 +187179,iPhone,1,700.0,2019-04-22 19:31:00,476 Maple St, Los Angeles,CA,90001 +187180,Bose SoundSport Headphones,1,99.99,2019-04-02 18:42:00,343 8th St, Dallas,TX,75001 +187181,Flatscreen TV,1,300.0,2019-04-30 17:01:00,627 5th St, Boston,MA,02215 +187182,AA Batteries (4-pack),5,3.84,2019-04-06 13:05:00,34 South St, New York City,NY,10001 +187183,20in Monitor,1,109.99,2019-04-08 13:45:00,908 Elm St, New York City,NY,10001 +187184,AAA Batteries (4-pack),1,2.99,2019-04-24 20:36:00,9 Cedar St, San Francisco,CA,94016 +187185,LG Washing Machine,1,600.0,2019-04-08 14:05:00,321 South St, Los Angeles,CA,90001 +187186,Apple Airpods Headphones,1,150.0,2019-04-01 15:29:00,594 Walnut St, San Francisco,CA,94016 +187187,Lightning Charging Cable,1,14.95,2019-04-11 21:33:00,702 14th St, New York City,NY,10001 +187188,Lightning Charging Cable,1,14.95,2019-04-20 18:54:00,709 River St, Atlanta,GA,30301 +187189,LG Dryer,1,600.0,2019-04-10 09:14:00,938 10th St, New York City,NY,10001 +187190,Lightning Charging Cable,1,14.95,2019-04-22 10:14:00,298 Maple St, San Francisco,CA,94016 +187191,USB-C Charging Cable,1,11.95,2019-04-05 09:24:00,424 Hickory St, Atlanta,GA,30301 +187192,AAA Batteries (4-pack),2,2.99,2019-04-12 06:10:00,663 Wilson St, Los Angeles,CA,90001 +187193,AAA Batteries (4-pack),2,2.99,2019-04-28 14:26:00,456 Dogwood St, Atlanta,GA,30301 +187194,Wired Headphones,1,11.99,2019-04-12 19:24:00,557 River St, New York City,NY,10001 +187195,AA Batteries (4-pack),1,3.84,2019-04-07 11:31:00,123 Cherry St, Dallas,TX,75001 +187196,Google Phone,1,600.0,2019-04-29 10:29:00,249 Pine St, Seattle,WA,98101 +187197,Bose SoundSport Headphones,1,99.99,2019-04-23 16:01:00,763 12th St, Los Angeles,CA,90001 +187198,34in Ultrawide Monitor,1,379.99,2019-04-18 20:25:00,987 Chestnut St, New York City,NY,10001 +187199,Flatscreen TV,1,300.0,2019-04-21 16:02:00,751 Hill St, San Francisco,CA,94016 +187200,AA Batteries (4-pack),1,3.84,2019-04-07 21:04:00,553 2nd St, Atlanta,GA,30301 +187201,Wired Headphones,1,11.99,2019-04-20 17:59:00,161 7th St, San Francisco,CA,94016 +187202,Wired Headphones,1,11.99,2019-04-16 20:15:00,396 Adams St, Boston,MA,02215 +187203,Apple Airpods Headphones,1,150.0,2019-04-15 13:59:00,847 Main St, Atlanta,GA,30301 +187204,Lightning Charging Cable,1,14.95,2019-04-10 21:57:00,839 Ridge St, Atlanta,GA,30301 +187205,AA Batteries (4-pack),1,3.84,2019-04-09 01:35:00,263 Jackson St, Dallas,TX,75001 +187206,Lightning Charging Cable,1,14.95,2019-04-12 11:51:00,757 Main St, Seattle,WA,98101 +187207,AA Batteries (4-pack),1,3.84,2019-04-29 14:22:00,296 Park St, Boston,MA,02215 +187208,Google Phone,1,600.0,2019-04-19 18:44:00,505 Center St, Dallas,TX,75001 +187209,Flatscreen TV,1,300.0,2019-04-26 22:30:00,393 Hickory St, San Francisco,CA,94016 +187210,Bose SoundSport Headphones,1,99.99,2019-04-05 13:26:00,30 12th St, Los Angeles,CA,90001 +187211,34in Ultrawide Monitor,1,379.99,2019-04-03 09:06:00,791 Hill St, Dallas,TX,75001 +187212,ThinkPad Laptop,1,999.99,2019-04-18 09:38:00,155 6th St, Boston,MA,02215 +187213,Apple Airpods Headphones,1,150.0,2019-04-07 10:09:00,977 Johnson St, Los Angeles,CA,90001 +187214,Wired Headphones,1,11.99,2019-04-18 05:41:00,963 1st St, San Francisco,CA,94016 +187215,iPhone,1,700.0,2019-04-01 22:34:00,695 8th St, Boston,MA,02215 +187215,Lightning Charging Cable,1,14.95,2019-04-01 22:34:00,695 8th St, Boston,MA,02215 +187216,AA Batteries (4-pack),1,3.84,2019-04-03 20:32:00,973 Church St, Boston,MA,02215 +187217,Vareebadd Phone,1,400.0,2019-04-03 07:39:00,374 Forest St, San Francisco,CA,94016 +187218,Apple Airpods Headphones,1,150.0,2019-04-21 19:17:00,156 Ridge St, Dallas,TX,75001 +187219,34in Ultrawide Monitor,1,379.99,2019-04-27 17:41:00,174 River St, Austin,TX,73301 +187220,AA Batteries (4-pack),1,3.84,2019-04-07 22:57:00,222 13th St, San Francisco,CA,94016 +187221,USB-C Charging Cable,1,11.95,2019-04-10 17:20:00,777 14th St, Los Angeles,CA,90001 +187222,Bose SoundSport Headphones,1,99.99,2019-04-09 17:14:00,14 Cedar St, San Francisco,CA,94016 +187223,27in 4K Gaming Monitor,1,389.99,2019-04-19 19:33:00,809 1st St, San Francisco,CA,94016 +187224,Lightning Charging Cable,1,14.95,2019-04-01 17:24:00,310 Spruce St, Seattle,WA,98101 +187225,Apple Airpods Headphones,1,150.0,2019-04-16 19:11:00,48 4th St, Austin,TX,73301 +187226,Bose SoundSport Headphones,1,99.99,2019-04-22 15:47:00,74 River St, Atlanta,GA,30301 +187227,Apple Airpods Headphones,1,150.0,2019-04-21 15:20:00,998 Cherry St, Dallas,TX,75001 +187228,34in Ultrawide Monitor,1,379.99,2019-04-01 08:38:00,289 North St, Portland,OR,97035 +187229,Macbook Pro Laptop,1,1700.0,2019-04-29 11:24:00,247 Wilson St, Austin,TX,73301 +187230,USB-C Charging Cable,1,11.95,2019-04-28 16:38:00,15 Forest St, Los Angeles,CA,90001 +187231,34in Ultrawide Monitor,1,379.99,2019-04-03 08:14:00,887 South St, San Francisco,CA,94016 +187232,LG Dryer,1,600.0,2019-04-14 00:46:00,797 Church St, Portland,OR,97035 +187233,Lightning Charging Cable,1,14.95,2019-04-18 08:45:00,904 Johnson St, New York City,NY,10001 +187234,Macbook Pro Laptop,1,1700.0,2019-04-09 07:57:00,266 14th St, San Francisco,CA,94016 +187235,USB-C Charging Cable,1,11.95,2019-04-29 10:35:00,139 10th St, Los Angeles,CA,90001 +187236,AA Batteries (4-pack),2,3.84,2019-04-06 09:26:00,932 Madison St, Los Angeles,CA,90001 +187237,34in Ultrawide Monitor,1,379.99,2019-04-23 18:09:00,814 Ridge St, Dallas,TX,75001 +187238,AAA Batteries (4-pack),1,2.99,2019-04-29 16:30:00,17 Cedar St, San Francisco,CA,94016 +187239,Wired Headphones,1,11.99,2019-04-09 13:31:00,977 Main St, Los Angeles,CA,90001 +187240,USB-C Charging Cable,1,11.95,2019-04-07 16:40:00,897 South St, Boston,MA,02215 +187241,Bose SoundSport Headphones,1,99.99,2019-04-07 21:46:00,270 Cedar St, Los Angeles,CA,90001 +187242,USB-C Charging Cable,1,11.95,2019-04-11 23:55:00,164 Church St, Dallas,TX,75001 +187243,iPhone,1,700.0,2019-04-15 17:40:00,292 13th St, Boston,MA,02215 +187244,USB-C Charging Cable,1,11.95,2019-04-03 21:08:00,276 Meadow St, New York City,NY,10001 +187245,Lightning Charging Cable,1,14.95,2019-04-19 22:30:00,288 Pine St, Boston,MA,02215 +187246,Google Phone,1,600.0,2019-04-14 21:16:00,713 9th St, Dallas,TX,75001 +187247,Wired Headphones,1,11.99,2019-04-03 13:58:00,172 Sunset St, San Francisco,CA,94016 +187248,USB-C Charging Cable,1,11.95,2019-04-10 00:36:00,45 11th St, Seattle,WA,98101 +187249,USB-C Charging Cable,1,11.95,2019-04-29 07:17:00,278 River St, Atlanta,GA,30301 +187250,AA Batteries (4-pack),2,3.84,2019-04-02 17:03:00,687 Dogwood St, Los Angeles,CA,90001 +187251,Bose SoundSport Headphones,1,99.99,2019-04-05 09:35:00,829 Chestnut St, Los Angeles,CA,90001 +187252,27in FHD Monitor,1,149.99,2019-04-10 20:16:00,258 4th St, New York City,NY,10001 +187253,Flatscreen TV,1,300.0,2019-04-22 08:13:00,24 Church St, Atlanta,GA,30301 +187254,AAA Batteries (4-pack),1,2.99,2019-04-17 20:21:00,352 Adams St, Los Angeles,CA,90001 +187255,Lightning Charging Cable,1,14.95,2019-04-21 23:27:00,120 Elm St, San Francisco,CA,94016 +187256,27in FHD Monitor,1,149.99,2019-04-12 20:34:00,971 4th St, New York City,NY,10001 +187257,USB-C Charging Cable,1,11.95,2019-04-29 10:09:00,923 Pine St, Atlanta,GA,30301 +187258,Bose SoundSport Headphones,1,99.99,2019-04-21 08:19:00,833 Ridge St, San Francisco,CA,94016 +187259,AAA Batteries (4-pack),1,2.99,2019-04-13 11:08:00,498 Main St, Atlanta,GA,30301 +187260,AA Batteries (4-pack),2,3.84,2019-04-24 06:21:00,352 River St, Boston,MA,02215 +187261,iPhone,1,700.0,2019-04-21 14:22:00,453 Park St, San Francisco,CA,94016 +187261,Lightning Charging Cable,1,14.95,2019-04-21 14:22:00,453 Park St, San Francisco,CA,94016 +187262,AAA Batteries (4-pack),1,2.99,2019-04-20 08:16:00,365 Hill St, Dallas,TX,75001 +187263,USB-C Charging Cable,1,11.95,2019-04-12 19:51:00,239 4th St, San Francisco,CA,94016 +187264,USB-C Charging Cable,1,11.95,2019-04-06 15:56:00,943 Sunset St, New York City,NY,10001 +187265,Wired Headphones,1,11.99,2019-04-23 10:08:00,382 Elm St, New York City,NY,10001 +187266,USB-C Charging Cable,1,11.95,2019-04-07 18:22:00,982 Hill St, Seattle,WA,98101 +187267,AAA Batteries (4-pack),1,2.99,2019-04-20 22:10:00,283 Johnson St, New York City,NY,10001 +187268,Wired Headphones,1,11.99,2019-04-16 11:49:00,811 Forest St, San Francisco,CA,94016 +187269,AAA Batteries (4-pack),1,2.99,2019-04-26 11:26:00,789 Lakeview St, Austin,TX,73301 +187270,USB-C Charging Cable,1,11.95,2019-04-19 15:36:00,230 River St, San Francisco,CA,94016 +187271,Apple Airpods Headphones,1,150.0,2019-04-10 13:29:00,440 Madison St, Portland,OR,97035 +187272,34in Ultrawide Monitor,1,379.99,2019-04-07 19:47:00,249 Lake St, Dallas,TX,75001 +187273,Apple Airpods Headphones,1,150.0,2019-04-15 20:03:00,22 Maple St, New York City,NY,10001 +187274,Google Phone,1,600.0,2019-04-17 19:15:00,214 Jefferson St, Seattle,WA,98101 +187275,20in Monitor,1,109.99,2019-04-15 19:01:00,90 Maple St, New York City,NY,10001 +187276,Apple Airpods Headphones,1,150.0,2019-04-07 18:51:00,869 13th St, San Francisco,CA,94016 +187277,Lightning Charging Cable,1,14.95,2019-04-28 09:43:00,677 9th St, Los Angeles,CA,90001 +187278,27in FHD Monitor,1,149.99,2019-04-30 18:56:00,764 Main St, Seattle,WA,98101 +187279,Wired Headphones,1,11.99,2019-04-12 09:04:00,303 Dogwood St, San Francisco,CA,94016 +187280,AA Batteries (4-pack),1,3.84,2019-04-18 08:11:00,717 4th St, Austin,TX,73301 +187281,34in Ultrawide Monitor,1,379.99,2019-04-10 11:01:00,274 13th St, San Francisco,CA,94016 +187282,Wired Headphones,1,11.99,2019-04-07 19:12:00,430 Washington St, Boston,MA,02215 +187283,USB-C Charging Cable,1,11.95,2019-04-07 12:51:00,900 5th St, Los Angeles,CA,90001 +187284,34in Ultrawide Monitor,1,379.99,2019-04-21 19:24:00,625 Hickory St, Los Angeles,CA,90001 +187285,AAA Batteries (4-pack),1,2.99,2019-04-13 18:12:00,934 Meadow St, Los Angeles,CA,90001 +187286,20in Monitor,1,109.99,2019-04-23 16:31:00,71 Jackson St, Austin,TX,73301 +187287,Bose SoundSport Headphones,1,99.99,2019-04-15 16:04:00,305 Johnson St, Los Angeles,CA,90001 +187288,USB-C Charging Cable,1,11.95,2019-04-17 16:46:00,390 Center St, Austin,TX,73301 +187289,27in FHD Monitor,1,149.99,2019-04-24 14:04:00,936 9th St, Dallas,TX,75001 +187290,Flatscreen TV,1,300.0,2019-04-23 23:42:00,475 Lake St, New York City,NY,10001 +187291,Bose SoundSport Headphones,1,99.99,2019-04-30 14:26:00,812 6th St, Atlanta,GA,30301 +187292,AA Batteries (4-pack),1,3.84,2019-04-08 14:04:00,604 Lincoln St, New York City,NY,10001 +187293,AAA Batteries (4-pack),1,2.99,2019-04-19 12:57:00,883 Chestnut St, San Francisco,CA,94016 +187294,AAA Batteries (4-pack),2,2.99,2019-04-10 12:40:00,139 Forest St, New York City,NY,10001 +187295,AAA Batteries (4-pack),1,2.99,2019-04-29 12:34:00,304 Hill St, Los Angeles,CA,90001 +187296,USB-C Charging Cable,1,11.95,2019-04-29 16:15:00,994 7th St, Atlanta,GA,30301 +187297,USB-C Charging Cable,1,11.95,2019-04-01 14:15:00,774 Lakeview St, Boston,MA,02215 +187298,27in FHD Monitor,1,149.99,2019-04-17 15:32:00,209 Walnut St, San Francisco,CA,94016 +187299,Wired Headphones,1,11.99,2019-04-15 16:10:00,110 7th St, Austin,TX,73301 +187300,Google Phone,1,600.0,2019-04-21 16:11:00,764 Highland St, Seattle,WA,98101 +187301,Flatscreen TV,1,300.0,2019-04-15 21:43:00,507 Hill St, Austin,TX,73301 +187302,AA Batteries (4-pack),1,3.84,2019-04-20 19:28:00,321 Jefferson St, Atlanta,GA,30301 +187303,Wired Headphones,1,11.99,2019-04-29 12:27:00,540 2nd St, New York City,NY,10001 +187304,27in FHD Monitor,1,149.99,2019-04-15 14:17:00,47 Highland St, Portland,OR,97035 +187305,Bose SoundSport Headphones,1,99.99,2019-04-18 14:06:00,394 1st St, San Francisco,CA,94016 +187306,Bose SoundSport Headphones,1,99.99,2019-04-12 15:53:00,402 7th St, Portland,ME,04101 +187307,AA Batteries (4-pack),1,3.84,2019-04-24 15:51:00,827 Wilson St, Austin,TX,73301 +187307,27in FHD Monitor,1,149.99,2019-04-24 15:51:00,827 Wilson St, Austin,TX,73301 +187308,Wired Headphones,1,11.99,2019-04-26 19:21:00,816 Meadow St, Atlanta,GA,30301 +187309,27in 4K Gaming Monitor,1,389.99,2019-04-14 10:15:00,301 5th St, New York City,NY,10001 +187310,AA Batteries (4-pack),1,3.84,2019-04-12 11:32:00,853 Highland St, San Francisco,CA,94016 +187311,Wired Headphones,1,11.99,2019-04-12 23:02:00,413 Hickory St, San Francisco,CA,94016 +187312,Google Phone,1,600.0,2019-04-05 20:33:00,15 Main St, Atlanta,GA,30301 +187313,27in FHD Monitor,1,149.99,2019-04-29 12:03:00,623 6th St, Atlanta,GA,30301 +187314,AAA Batteries (4-pack),1,2.99,2019-04-06 09:15:00,522 Madison St, New York City,NY,10001 +187315,Lightning Charging Cable,1,14.95,2019-04-11 10:22:00,687 Wilson St, San Francisco,CA,94016 +187316,Wired Headphones,1,11.99,2019-04-22 18:03:00,881 Meadow St, Los Angeles,CA,90001 +187317,Bose SoundSport Headphones,1,99.99,2019-04-12 11:03:00,133 4th St, Seattle,WA,98101 +187318,Lightning Charging Cable,1,14.95,2019-04-28 20:09:00,626 13th St, Dallas,TX,75001 +187319,AAA Batteries (4-pack),1,2.99,2019-04-02 01:34:00,600 1st St, Atlanta,GA,30301 +187320,AAA Batteries (4-pack),1,2.99,2019-04-12 11:41:00,55 South St, San Francisco,CA,94016 +187321,20in Monitor,1,109.99,2019-04-25 12:12:00,609 Highland St, Austin,TX,73301 +187322,Bose SoundSport Headphones,1,99.99,2019-04-30 20:29:00,846 13th St, San Francisco,CA,94016 +187323,AAA Batteries (4-pack),2,2.99,2019-04-29 17:01:00,723 North St, Portland,OR,97035 +187324,Bose SoundSport Headphones,1,99.99,2019-04-28 19:51:00,490 Main St, Dallas,TX,75001 +187325,Wired Headphones,1,11.99,2019-04-01 18:25:00,250 1st St, New York City,NY,10001 +187326,AA Batteries (4-pack),2,3.84,2019-04-11 21:34:00,138 Lake St, Dallas,TX,75001 +187327,USB-C Charging Cable,1,11.95,2019-04-11 19:14:00,202 Sunset St, Portland,OR,97035 +187328,Lightning Charging Cable,1,14.95,2019-04-21 09:37:00,731 Jefferson St, Seattle,WA,98101 +187329,AAA Batteries (4-pack),1,2.99,2019-04-10 14:09:00,182 Cedar St, San Francisco,CA,94016 +187330,LG Washing Machine,1,600.0,2019-04-28 16:46:00,823 River St, San Francisco,CA,94016 +187331,Lightning Charging Cable,1,14.95,2019-04-16 14:05:00,798 Hickory St, San Francisco,CA,94016 +187332,AAA Batteries (4-pack),2,2.99,2019-04-03 09:07:00,332 River St, Atlanta,GA,30301 +187333,LG Washing Machine,1,600.0,2019-04-21 18:22:00,18 Jefferson St, Los Angeles,CA,90001 +187334,Wired Headphones,1,11.99,2019-04-19 06:13:00,982 Washington St, Austin,TX,73301 +187335,Apple Airpods Headphones,1,150.0,2019-04-16 21:18:00,869 Pine St, Los Angeles,CA,90001 +187336,USB-C Charging Cable,1,11.95,2019-04-30 20:53:00,2 West St, Dallas,TX,75001 +187337,Lightning Charging Cable,1,14.95,2019-04-13 20:56:00,419 Park St, New York City,NY,10001 +187338,AAA Batteries (4-pack),1,2.99,2019-04-26 14:01:00,810 Hill St, New York City,NY,10001 +187339,AA Batteries (4-pack),1,3.84,2019-04-04 16:10:00,385 Dogwood St, Boston,MA,02215 +187340,20in Monitor,1,109.99,2019-04-10 21:33:00,783 South St, San Francisco,CA,94016 +187341,Apple Airpods Headphones,1,150.0,2019-04-18 17:10:00,77 6th St, Dallas,TX,75001 +187342,Apple Airpods Headphones,1,150.0,2019-04-09 20:22:00,526 Center St, Atlanta,GA,30301 +187343,Lightning Charging Cable,1,14.95,2019-04-24 08:32:00,15 Jefferson St, Los Angeles,CA,90001 +187344,Lightning Charging Cable,1,14.95,2019-04-24 20:54:00,729 Highland St, Los Angeles,CA,90001 +187345,Lightning Charging Cable,1,14.95,2019-04-27 10:09:00,951 Johnson St, Portland,OR,97035 +187346,20in Monitor,1,109.99,2019-04-01 23:52:00,10 Meadow St, San Francisco,CA,94016 +187347,Macbook Pro Laptop,1,1700.0,2019-04-27 13:43:00,289 Hickory St, San Francisco,CA,94016 +187348,AA Batteries (4-pack),1,3.84,2019-04-24 17:59:00,306 North St, Dallas,TX,75001 +187349,Wired Headphones,1,11.99,2019-04-02 15:15:00,890 Spruce St, New York City,NY,10001 +187350,27in 4K Gaming Monitor,1,389.99,2019-04-08 14:53:00,196 Spruce St, Seattle,WA,98101 +187351,Bose SoundSport Headphones,1,99.99,2019-04-18 15:38:00,728 Highland St, Seattle,WA,98101 +187352,ThinkPad Laptop,1,999.99,2019-04-20 09:27:00,517 Wilson St, San Francisco,CA,94016 +187353,Google Phone,1,600.0,2019-04-17 16:02:00,559 South St, San Francisco,CA,94016 +187354,iPhone,1,700.0,2019-04-04 08:11:00,966 Meadow St, Dallas,TX,75001 +187355,AA Batteries (4-pack),1,3.84,2019-04-04 11:28:00,961 Forest St, New York City,NY,10001 +187356,Apple Airpods Headphones,1,150.0,2019-04-10 11:29:00,239 8th St, Seattle,WA,98101 +187357,iPhone,1,700.0,2019-04-26 11:58:00,944 North St, San Francisco,CA,94016 +187357,Lightning Charging Cable,1,14.95,2019-04-26 11:58:00,944 North St, San Francisco,CA,94016 +187358,27in 4K Gaming Monitor,1,389.99,2019-04-05 20:31:00,339 5th St, San Francisco,CA,94016 +187359,Lightning Charging Cable,1,14.95,2019-04-19 18:18:00,615 Wilson St, Dallas,TX,75001 +187360,Macbook Pro Laptop,1,1700.0,2019-04-06 15:41:00,383 8th St, Los Angeles,CA,90001 +187361,AAA Batteries (4-pack),1,2.99,2019-04-14 15:30:00,448 Main St, Los Angeles,CA,90001 +187362,Apple Airpods Headphones,1,150.0,2019-04-03 16:15:00,83 Wilson St, San Francisco,CA,94016 +187363,Lightning Charging Cable,1,14.95,2019-04-30 15:07:00,603 Jefferson St, Seattle,WA,98101 +187364,Bose SoundSport Headphones,1,99.99,2019-04-26 19:31:00,95 Madison St, San Francisco,CA,94016 +187365,USB-C Charging Cable,1,11.95,2019-04-26 08:17:00,245 Lake St, Atlanta,GA,30301 +187366,ThinkPad Laptop,1,999.99,2019-04-21 19:51:00,706 14th St, San Francisco,CA,94016 +187367,iPhone,1,700.0,2019-04-22 21:30:00,841 Church St, Boston,MA,02215 +187368,USB-C Charging Cable,1,11.95,2019-04-18 23:31:00,57 Johnson St, Atlanta,GA,30301 +187369,Google Phone,1,600.0,2019-04-30 19:50:00,99 Cedar St, New York City,NY,10001 +187369,Wired Headphones,1,11.99,2019-04-30 19:50:00,99 Cedar St, New York City,NY,10001 +187370,iPhone,1,700.0,2019-04-19 21:59:00,958 Hill St, Los Angeles,CA,90001 +187371,AA Batteries (4-pack),1,3.84,2019-04-23 18:06:00,763 Washington St, Austin,TX,73301 +187372,Apple Airpods Headphones,1,150.0,2019-04-02 14:12:00,64 Cherry St, San Francisco,CA,94016 +187373,AA Batteries (4-pack),1,3.84,2019-04-02 13:48:00,651 7th St, Los Angeles,CA,90001 +187374,Google Phone,1,600.0,2019-04-06 18:42:00,112 Hickory St, Los Angeles,CA,90001 +187375,AA Batteries (4-pack),1,3.84,2019-04-05 14:41:00,225 Walnut St, New York City,NY,10001 +187376,AA Batteries (4-pack),2,3.84,2019-04-23 21:37:00,729 Hickory St, New York City,NY,10001 +187377,27in FHD Monitor,1,149.99,2019-04-03 20:12:00,95 13th St, Los Angeles,CA,90001 +187378,Lightning Charging Cable,1,14.95,2019-04-21 09:41:00,914 Park St, San Francisco,CA,94016 +187379,USB-C Charging Cable,1,11.95,2019-04-10 19:06:00,504 10th St, Los Angeles,CA,90001 +187380,Flatscreen TV,1,300.0,2019-04-24 12:48:00,831 Meadow St, Los Angeles,CA,90001 +187381,20in Monitor,1,109.99,2019-04-28 11:15:00,337 13th St, Atlanta,GA,30301 +187382,USB-C Charging Cable,1,11.95,2019-04-05 19:29:00,294 Church St, Portland,OR,97035 +187383,Wired Headphones,1,11.99,2019-04-03 18:59:00,89 Jefferson St, Boston,MA,02215 +187384,AAA Batteries (4-pack),2,2.99,2019-04-02 04:28:00,108 Park St, San Francisco,CA,94016 +187385,Lightning Charging Cable,1,14.95,2019-04-18 20:26:00,369 11th St, Seattle,WA,98101 +187385,Google Phone,1,600.0,2019-04-18 20:26:00,369 11th St, Seattle,WA,98101 +187386,Wired Headphones,1,11.99,2019-04-14 14:58:00,258 Maple St, Atlanta,GA,30301 +187387,Apple Airpods Headphones,1,150.0,2019-04-24 21:48:00,12 14th St, San Francisco,CA,94016 +187388,27in FHD Monitor,1,149.99,2019-04-28 14:00:00,55 Elm St, San Francisco,CA,94016 +187389,Bose SoundSport Headphones,1,99.99,2019-04-03 13:42:00,860 River St, Austin,TX,73301 +187390,Bose SoundSport Headphones,1,99.99,2019-04-06 12:52:00,364 South St, Boston,MA,02215 +187391,AAA Batteries (4-pack),2,2.99,2019-04-11 21:18:00,63 Sunset St, Dallas,TX,75001 +187392,Lightning Charging Cable,1,14.95,2019-04-17 10:37:00,41 14th St, Atlanta,GA,30301 +187393,USB-C Charging Cable,1,11.95,2019-04-22 01:10:00,921 West St, Austin,TX,73301 +187394,AA Batteries (4-pack),1,3.84,2019-04-04 11:25:00,117 Jefferson St, New York City,NY,10001 +187395,AA Batteries (4-pack),1,3.84,2019-04-17 19:05:00,957 Forest St, Atlanta,GA,30301 +187396,Wired Headphones,1,11.99,2019-04-26 04:43:00,132 10th St, Austin,TX,73301 +187397,USB-C Charging Cable,1,11.95,2019-04-13 00:30:00,661 9th St, Boston,MA,02215 +187398,Wired Headphones,1,11.99,2019-04-22 07:53:00,398 Hickory St, San Francisco,CA,94016 +187399,AAA Batteries (4-pack),1,2.99,2019-04-16 19:59:00,319 10th St, Los Angeles,CA,90001 +187400,Wired Headphones,1,11.99,2019-04-16 12:59:00,704 Willow St, Boston,MA,02215 +187401,USB-C Charging Cable,1,11.95,2019-04-14 12:02:00,593 West St, Atlanta,GA,30301 +187402,Lightning Charging Cable,1,14.95,2019-04-14 03:06:00,236 2nd St, San Francisco,CA,94016 +187403,AA Batteries (4-pack),2,3.84,2019-04-24 10:22:00,749 Main St, San Francisco,CA,94016 +187404,Lightning Charging Cable,1,14.95,2019-04-23 18:39:00,726 River St, San Francisco,CA,94016 +187405,iPhone,1,700.0,2019-04-11 07:33:00,95 12th St, Portland,OR,97035 +187405,Lightning Charging Cable,1,14.95,2019-04-11 07:33:00,95 12th St, Portland,OR,97035 +187406,Wired Headphones,2,11.99,2019-04-16 16:22:00,504 Walnut St, Boston,MA,02215 +187407,iPhone,1,700.0,2019-04-01 23:59:00,229 Park St, Seattle,WA,98101 +187408,Wired Headphones,1,11.99,2019-04-29 12:25:00,676 12th St, Los Angeles,CA,90001 +187409,AAA Batteries (4-pack),2,2.99,2019-04-21 10:07:00,266 Johnson St, Seattle,WA,98101 +187410,AA Batteries (4-pack),1,3.84,2019-04-27 09:52:00,494 10th St, Boston,MA,02215 +187411,USB-C Charging Cable,1,11.95,2019-04-18 12:00:00,404 Maple St, San Francisco,CA,94016 +187412,Macbook Pro Laptop,1,1700.0,2019-04-10 14:07:00,951 Dogwood St, New York City,NY,10001 +187413,27in FHD Monitor,1,149.99,2019-04-07 11:28:00,508 12th St, Boston,MA,02215 +187414,AAA Batteries (4-pack),1,2.99,2019-04-14 18:53:00,766 Madison St, San Francisco,CA,94016 +187415,Lightning Charging Cable,1,14.95,2019-04-04 17:39:00,737 11th St, Los Angeles,CA,90001 +187416,Vareebadd Phone,1,400.0,2019-04-20 12:25:00,373 Forest St, Los Angeles,CA,90001 +187417,Lightning Charging Cable,1,14.95,2019-04-13 14:43:00,33 Lincoln St, Boston,MA,02215 +187418,Lightning Charging Cable,1,14.95,2019-04-18 20:09:00,122 10th St, San Francisco,CA,94016 +187419,AA Batteries (4-pack),1,3.84,2019-04-22 17:52:00,159 River St, Los Angeles,CA,90001 +187420,Wired Headphones,1,11.99,2019-04-28 10:11:00,441 Ridge St, Los Angeles,CA,90001 +187421,AA Batteries (4-pack),1,3.84,2019-04-25 18:14:00,415 Elm St, New York City,NY,10001 +187422,AA Batteries (4-pack),1,3.84,2019-04-16 18:26:00,956 Pine St, Dallas,TX,75001 +187423,Vareebadd Phone,1,400.0,2019-04-01 11:49:00,786 Hickory St, Seattle,WA,98101 +187423,Wired Headphones,1,11.99,2019-04-01 11:49:00,786 Hickory St, Seattle,WA,98101 +187424,USB-C Charging Cable,1,11.95,2019-04-15 23:40:00,182 Jefferson St, Los Angeles,CA,90001 +187425,Wired Headphones,1,11.99,2019-04-05 21:12:00,892 North St, Austin,TX,73301 +187426,Flatscreen TV,1,300.0,2019-04-16 16:27:00,758 2nd St, Los Angeles,CA,90001 +187427,AA Batteries (4-pack),1,3.84,2019-04-22 08:06:00,819 North St, Portland,OR,97035 +187428,27in 4K Gaming Monitor,1,389.99,2019-04-28 13:03:00,444 Jackson St, San Francisco,CA,94016 +187429,USB-C Charging Cable,1,11.95,2019-04-11 18:00:00,247 Madison St, Austin,TX,73301 +187430,20in Monitor,1,109.99,2019-04-26 14:18:00,16 Highland St, Boston,MA,02215 +187431,ThinkPad Laptop,1,999.99,2019-04-11 18:15:00,178 12th St, New York City,NY,10001 +187432,34in Ultrawide Monitor,1,379.99,2019-04-12 11:57:00,116 Main St, San Francisco,CA,94016 +187433,LG Dryer,1,600.0,2019-04-18 16:32:00,141 Church St, Los Angeles,CA,90001 +187434,USB-C Charging Cable,1,11.95,2019-04-07 21:55:00,318 Cedar St, Portland,OR,97035 +187435,AAA Batteries (4-pack),4,2.99,2019-04-03 21:29:00,814 9th St, Portland,OR,97035 +187436,USB-C Charging Cable,1,11.95,2019-04-18 09:13:00,982 Walnut St, Boston,MA,02215 +187437,Flatscreen TV,1,300.0,2019-04-15 21:57:00,732 5th St, Boston,MA,02215 +187438,Bose SoundSport Headphones,1,99.99,2019-04-06 12:55:00,500 2nd St, San Francisco,CA,94016 +187439,Apple Airpods Headphones,1,150.0,2019-04-23 14:09:00,732 5th St, San Francisco,CA,94016 +187440,AAA Batteries (4-pack),1,2.99,2019-04-19 08:00:00,384 7th St, San Francisco,CA,94016 +187441,20in Monitor,1,109.99,2019-04-22 14:25:00,757 Spruce St, Dallas,TX,75001 +187442,Vareebadd Phone,1,400.0,2019-04-20 03:39:00,978 West St, San Francisco,CA,94016 +187442,USB-C Charging Cable,1,11.95,2019-04-20 03:39:00,978 West St, San Francisco,CA,94016 +187443,Bose SoundSport Headphones,1,99.99,2019-04-01 14:25:00,495 5th St, San Francisco,CA,94016 +187444,AA Batteries (4-pack),1,3.84,2019-04-20 16:57:00,512 North St, Los Angeles,CA,90001 +187445,Wired Headphones,1,11.99,2019-04-24 22:45:00,468 Meadow St, Los Angeles,CA,90001 +187446,27in 4K Gaming Monitor,1,389.99,2019-04-06 02:05:00,649 North St, Seattle,WA,98101 +187447,AA Batteries (4-pack),1,3.84,2019-04-20 13:09:00,758 North St, New York City,NY,10001 +187448,USB-C Charging Cable,1,11.95,2019-04-14 17:21:00,798 Washington St, Atlanta,GA,30301 +187449,AA Batteries (4-pack),1,3.84,2019-04-18 23:59:00,598 10th St, Boston,MA,02215 +187450,27in FHD Monitor,1,149.99,2019-04-29 18:02:00,334 5th St, Boston,MA,02215 +187451,Bose SoundSport Headphones,1,99.99,2019-04-10 16:04:00,994 West St, Los Angeles,CA,90001 +187452,Wired Headphones,1,11.99,2019-04-05 16:35:00,570 4th St, San Francisco,CA,94016 +187453,Apple Airpods Headphones,1,150.0,2019-04-29 10:02:00,813 7th St, San Francisco,CA,94016 +187453,Bose SoundSport Headphones,1,99.99,2019-04-29 10:02:00,813 7th St, San Francisco,CA,94016 +187454,27in 4K Gaming Monitor,1,389.99,2019-04-06 22:12:00,45 Adams St, New York City,NY,10001 +187455,Flatscreen TV,1,300.0,2019-04-19 21:23:00,371 Pine St, New York City,NY,10001 +187456,AA Batteries (4-pack),2,3.84,2019-04-09 16:58:00,204 Pine St, Dallas,TX,75001 +187457,Bose SoundSport Headphones,1,99.99,2019-04-24 11:20:00,243 River St, San Francisco,CA,94016 +187458,34in Ultrawide Monitor,1,379.99,2019-04-10 11:05:00,290 Highland St, San Francisco,CA,94016 +187459,34in Ultrawide Monitor,1,379.99,2019-04-28 17:14:00,828 Hickory St, New York City,NY,10001 +187460,Macbook Pro Laptop,1,1700.0,2019-04-16 16:52:00,187 Hickory St, Seattle,WA,98101 +187461,Lightning Charging Cable,1,14.95,2019-04-22 23:01:00,277 Adams St, New York City,NY,10001 +187462,USB-C Charging Cable,1,11.95,2019-04-05 20:13:00,574 14th St, San Francisco,CA,94016 +187463,Google Phone,1,600.0,2019-04-11 08:16:00,842 Madison St, Los Angeles,CA,90001 +187463,USB-C Charging Cable,1,11.95,2019-04-11 08:16:00,842 Madison St, Los Angeles,CA,90001 +187463,Wired Headphones,1,11.99,2019-04-11 08:16:00,842 Madison St, Los Angeles,CA,90001 +187464,iPhone,1,700.0,2019-04-05 22:30:00,460 Center St, Austin,TX,73301 +187464,Lightning Charging Cable,1,14.95,2019-04-05 22:30:00,460 Center St, Austin,TX,73301 +187465,27in 4K Gaming Monitor,1,389.99,2019-04-29 09:24:00,296 North St, San Francisco,CA,94016 +187466,AAA Batteries (4-pack),1,2.99,2019-04-13 11:45:00,401 Cherry St, Dallas,TX,75001 +187467,AA Batteries (4-pack),3,3.84,2019-04-13 11:50:00,747 Center St, New York City,NY,10001 +187468,AAA Batteries (4-pack),1,2.99,2019-04-15 20:08:00,803 Washington St, New York City,NY,10001 +187469,Apple Airpods Headphones,1,150.0,2019-04-27 19:09:00,173 14th St, Los Angeles,CA,90001 +187469,Lightning Charging Cable,1,14.95,2019-04-27 19:09:00,173 14th St, Los Angeles,CA,90001 +187470,USB-C Charging Cable,1,11.95,2019-04-14 16:07:00,80 Maple St, Atlanta,GA,30301 +187471,Bose SoundSport Headphones,1,99.99,2019-04-21 12:00:00,771 Highland St, San Francisco,CA,94016 +187472,20in Monitor,1,109.99,2019-04-20 16:02:00,607 Lake St, Los Angeles,CA,90001 +187473,Wired Headphones,1,11.99,2019-04-05 19:22:00,597 Washington St, Portland,OR,97035 +187474,Bose SoundSport Headphones,1,99.99,2019-04-17 09:20:00,926 Cherry St, San Francisco,CA,94016 +187475,AAA Batteries (4-pack),3,2.99,2019-04-02 14:05:00,859 Wilson St, Los Angeles,CA,90001 +187476,Lightning Charging Cable,1,14.95,2019-04-25 00:59:00,429 Washington St, Boston,MA,02215 +187477,AA Batteries (4-pack),2,3.84,2019-04-26 08:58:00,941 Sunset St, Atlanta,GA,30301 +187478,ThinkPad Laptop,1,999.99,2019-04-24 15:08:00,680 Dogwood St, Boston,MA,02215 +187479,AAA Batteries (4-pack),1,2.99,2019-04-01 21:51:00,237 Church St, Boston,MA,02215 +187480,Bose SoundSport Headphones,1,99.99,2019-04-24 09:25:00,700 Hill St, Los Angeles,CA,90001 +187481,Macbook Pro Laptop,1,1700.0,2019-04-13 09:18:00,979 Forest St, Seattle,WA,98101 +187482,Flatscreen TV,1,300.0,2019-04-19 12:52:00,209 Meadow St, San Francisco,CA,94016 +187483,AA Batteries (4-pack),1,3.84,2019-04-13 20:53:00,813 Jackson St, San Francisco,CA,94016 +187484,27in 4K Gaming Monitor,1,389.99,2019-04-20 06:21:00,651 Wilson St, San Francisco,CA,94016 +187485,AAA Batteries (4-pack),2,2.99,2019-04-06 22:46:00,480 Adams St, Atlanta,GA,30301 +187486,27in FHD Monitor,1,149.99,2019-04-26 08:25:00,105 Spruce St, Seattle,WA,98101 +187487,Apple Airpods Headphones,1,150.0,2019-04-02 15:40:00,377 8th St, Dallas,TX,75001 +187488,27in 4K Gaming Monitor,1,389.99,2019-04-25 15:22:00,420 9th St, San Francisco,CA,94016 +187489,ThinkPad Laptop,1,999.99,2019-04-18 12:38:00,365 Lincoln St, Boston,MA,02215 +187490,Bose SoundSport Headphones,1,99.99,2019-04-13 19:27:00,799 Pine St, Los Angeles,CA,90001 +187491,20in Monitor,1,109.99,2019-04-16 21:54:00,719 10th St, Los Angeles,CA,90001 +187492,USB-C Charging Cable,2,11.95,2019-04-18 20:12:00,845 South St, Seattle,WA,98101 +187493,Lightning Charging Cable,1,14.95,2019-04-08 16:02:00,232 Forest St, San Francisco,CA,94016 +187494,27in 4K Gaming Monitor,1,389.99,2019-04-04 16:40:00,708 Pine St, Portland,OR,97035 +187495,27in FHD Monitor,1,149.99,2019-04-17 14:17:00,218 9th St, San Francisco,CA,94016 +187496,Macbook Pro Laptop,1,1700.0,2019-04-12 15:12:00,645 Maple St, New York City,NY,10001 +187497,Wired Headphones,1,11.99,2019-04-18 13:53:00,388 2nd St, Portland,OR,97035 +187498,Apple Airpods Headphones,1,150.0,2019-04-27 13:26:00,361 12th St, Portland,ME,04101 +187499,AA Batteries (4-pack),1,3.84,2019-04-22 19:17:00,350 South St, Los Angeles,CA,90001 +187500,Lightning Charging Cable,1,14.95,2019-04-28 21:33:00,158 Main St, Portland,OR,97035 +187501,Bose SoundSport Headphones,1,99.99,2019-04-08 00:58:00,959 Pine St, San Francisco,CA,94016 +187502,USB-C Charging Cable,1,11.95,2019-04-10 19:21:00,705 Lake St, San Francisco,CA,94016 +187503,Flatscreen TV,1,300.0,2019-04-09 21:03:00,128 Adams St, Austin,TX,73301 +187504,Apple Airpods Headphones,1,150.0,2019-04-06 21:55:00,312 Lakeview St, Los Angeles,CA,90001 +187505,AA Batteries (4-pack),3,3.84,2019-04-14 11:40:00,752 Ridge St, Atlanta,GA,30301 +187506,AA Batteries (4-pack),2,3.84,2019-04-01 17:33:00,938 Jackson St, Dallas,TX,75001 +187507,AAA Batteries (4-pack),2,2.99,2019-04-06 08:38:00,624 River St, San Francisco,CA,94016 +187508,USB-C Charging Cable,1,11.95,2019-04-10 18:54:00,875 River St, Boston,MA,02215 +187509,20in Monitor,1,109.99,2019-04-27 17:39:00,447 10th St, Seattle,WA,98101 +187510,AAA Batteries (4-pack),4,2.99,2019-04-05 10:51:00,602 Hill St, Seattle,WA,98101 +187511,27in FHD Monitor,1,149.99,2019-04-09 15:32:00,930 Willow St, Atlanta,GA,30301 +187512,USB-C Charging Cable,1,11.95,2019-04-10 17:51:00,811 6th St, San Francisco,CA,94016 +187513,34in Ultrawide Monitor,1,379.99,2019-04-16 18:48:00,507 6th St, Los Angeles,CA,90001 +187514,Wired Headphones,1,11.99,2019-04-08 20:43:00,1 Jackson St, New York City,NY,10001 +187515,Lightning Charging Cable,2,14.95,2019-04-19 13:23:00,670 Ridge St, Atlanta,GA,30301 +187516,34in Ultrawide Monitor,1,379.99,2019-04-30 14:35:00,188 Willow St, Dallas,TX,75001 +187517,iPhone,1,700.0,2019-04-17 08:58:00,689 9th St, Dallas,TX,75001 +187518,iPhone,1,700.0,2019-04-22 11:36:00,114 11th St, San Francisco,CA,94016 +187519,Wired Headphones,1,11.99,2019-04-17 15:39:00,116 Hickory St, Seattle,WA,98101 +187520,AAA Batteries (4-pack),1,2.99,2019-04-24 13:31:00,451 Main St, New York City,NY,10001 +187521,iPhone,1,700.0,2019-04-02 18:46:00,535 14th St, Los Angeles,CA,90001 +187522,AAA Batteries (4-pack),1,2.99,2019-04-17 19:32:00,667 Johnson St, San Francisco,CA,94016 +187523,Bose SoundSport Headphones,1,99.99,2019-04-10 06:43:00,470 14th St, San Francisco,CA,94016 +187524,AA Batteries (4-pack),1,3.84,2019-04-14 16:04:00,35 Hill St, San Francisco,CA,94016 +187525,Apple Airpods Headphones,1,150.0,2019-04-09 22:21:00,612 8th St, Los Angeles,CA,90001 +187526,AA Batteries (4-pack),2,3.84,2019-04-18 13:27:00,410 North St, San Francisco,CA,94016 +187527,AA Batteries (4-pack),1,3.84,2019-04-04 14:57:00,315 Forest St, Dallas,TX,75001 +187528,27in FHD Monitor,1,149.99,2019-04-15 08:01:00,22 Walnut St, Los Angeles,CA,90001 +187529,ThinkPad Laptop,1,999.99,2019-04-19 11:38:00,649 Lincoln St, Austin,TX,73301 +187530,34in Ultrawide Monitor,1,379.99,2019-04-23 06:23:00,809 Lincoln St, San Francisco,CA,94016 +187530,Wired Headphones,1,11.99,2019-04-23 06:23:00,809 Lincoln St, San Francisco,CA,94016 +187531,Lightning Charging Cable,1,14.95,2019-04-27 23:41:00,747 Elm St, San Francisco,CA,94016 +187532,27in 4K Gaming Monitor,1,389.99,2019-04-30 09:48:00,902 6th St, New York City,NY,10001 +187533,AA Batteries (4-pack),2,3.84,2019-04-27 02:14:00,356 14th St, Los Angeles,CA,90001 +187534,Google Phone,1,600.0,2019-04-01 09:39:00,312 Church St, Atlanta,GA,30301 +187534,Lightning Charging Cable,1,14.95,2019-04-01 09:39:00,312 Church St, Atlanta,GA,30301 +187535,Lightning Charging Cable,1,14.95,2019-04-09 13:56:00,83 8th St, Austin,TX,73301 +187536,Lightning Charging Cable,1,14.95,2019-04-28 18:57:00,286 Center St, San Francisco,CA,94016 +187537,Lightning Charging Cable,1,14.95,2019-04-12 19:40:00,871 Ridge St, New York City,NY,10001 +187538,20in Monitor,1,109.99,2019-04-19 17:24:00,185 Spruce St, Dallas,TX,75001 +187539,27in FHD Monitor,1,149.99,2019-04-17 21:28:00,211 West St, Boston,MA,02215 +187540,Lightning Charging Cable,1,14.95,2019-04-17 10:40:00,309 Lincoln St, Portland,ME,04101 +187541,Wired Headphones,1,11.99,2019-04-25 22:21:00,251 Walnut St, New York City,NY,10001 +187542,AAA Batteries (4-pack),2,2.99,2019-04-27 18:08:00,590 Cherry St, Boston,MA,02215 +187543,27in FHD Monitor,1,149.99,2019-04-19 19:42:00,282 Cherry St, San Francisco,CA,94016 +187544,Wired Headphones,1,11.99,2019-04-25 21:36:00,909 9th St, San Francisco,CA,94016 +187545,34in Ultrawide Monitor,1,379.99,2019-04-24 10:51:00,175 Willow St, New York City,NY,10001 +187546,USB-C Charging Cable,1,11.95,2019-04-08 01:05:00,299 Elm St, Los Angeles,CA,90001 +187547,Google Phone,1,600.0,2019-04-25 09:43:00,687 West St, Atlanta,GA,30301 +187547,Wired Headphones,1,11.99,2019-04-25 09:43:00,687 West St, Atlanta,GA,30301 +187548,Flatscreen TV,1,300.0,2019-04-12 22:13:00,200 Center St, Seattle,WA,98101 +187549,Lightning Charging Cable,1,14.95,2019-04-23 22:12:00,330 Meadow St, San Francisco,CA,94016 +187550,27in FHD Monitor,1,149.99,2019-04-19 16:48:00,685 Jackson St, San Francisco,CA,94016 +187551,AAA Batteries (4-pack),1,2.99,2019-04-25 09:39:00,275 Chestnut St, New York City,NY,10001 +187552,Lightning Charging Cable,1,14.95,2019-04-17 11:01:00,243 8th St, Los Angeles,CA,90001 +187553,Wired Headphones,2,11.99,2019-04-08 17:19:00,18 Wilson St, Portland,OR,97035 +187554,Bose SoundSport Headphones,1,99.99,2019-04-24 06:56:00,320 5th St, San Francisco,CA,94016 +187555,Apple Airpods Headphones,1,150.0,2019-04-30 20:13:00,968 Center St, Atlanta,GA,30301 +187556,AAA Batteries (4-pack),1,2.99,2019-04-26 16:44:00,239 Madison St, Los Angeles,CA,90001 +187557,ThinkPad Laptop,1,999.99,2019-04-29 09:23:00,161 Walnut St, Austin,TX,73301 +187558,Apple Airpods Headphones,1,150.0,2019-04-25 23:15:00,950 Chestnut St, Portland,OR,97035 +187559,iPhone,1,700.0,2019-04-01 09:12:00,828 Washington St, San Francisco,CA,94016 +187560,Bose SoundSport Headphones,1,99.99,2019-04-23 16:53:00,258 6th St, Atlanta,GA,30301 +187561,Apple Airpods Headphones,1,150.0,2019-04-21 05:37:00,876 10th St, Boston,MA,02215 +187562,AAA Batteries (4-pack),1,2.99,2019-04-24 18:09:00,760 Spruce St, Los Angeles,CA,90001 +187563,Flatscreen TV,1,300.0,2019-04-19 20:27:00,191 6th St, Los Angeles,CA,90001 +187564,AAA Batteries (4-pack),1,2.99,2019-04-14 13:50:00,940 River St, Atlanta,GA,30301 +187565,Macbook Pro Laptop,1,1700.0,2019-04-29 14:19:00,35 13th St, Portland,ME,04101 +187566,Lightning Charging Cable,1,14.95,2019-04-21 06:38:00,759 Wilson St, Atlanta,GA,30301 +187567,AAA Batteries (4-pack),3,2.99,2019-04-16 20:44:00,855 Highland St, New York City,NY,10001 +187568,Lightning Charging Cable,1,14.95,2019-04-08 07:12:00,735 10th St, Los Angeles,CA,90001 +187569,27in FHD Monitor,1,149.99,2019-04-20 11:15:00,450 Johnson St, Atlanta,GA,30301 +187570,Lightning Charging Cable,1,14.95,2019-04-07 10:23:00,800 Madison St, San Francisco,CA,94016 +187571,34in Ultrawide Monitor,1,379.99,2019-04-13 23:32:00,427 1st St, Seattle,WA,98101 +187572,Wired Headphones,1,11.99,2019-04-01 16:15:00,215 Elm St, Dallas,TX,75001 +187573,USB-C Charging Cable,1,11.95,2019-04-18 21:46:00,272 Willow St, Los Angeles,CA,90001 +187574,27in 4K Gaming Monitor,1,389.99,2019-04-18 10:15:00,836 River St, Boston,MA,02215 +187575,27in FHD Monitor,1,149.99,2019-04-18 20:43:00,579 Washington St, San Francisco,CA,94016 +187576,Apple Airpods Headphones,1,150.0,2019-04-23 22:31:00,144 8th St, San Francisco,CA,94016 +187577,iPhone,1,700.0,2019-04-10 19:20:00,727 13th St, San Francisco,CA,94016 +187578,AA Batteries (4-pack),1,3.84,2019-04-12 17:37:00,393 Lakeview St, San Francisco,CA,94016 +187579,34in Ultrawide Monitor,1,379.99,2019-04-13 07:07:00,659 Wilson St, San Francisco,CA,94016 +187579,AA Batteries (4-pack),1,3.84,2019-04-13 07:07:00,659 Wilson St, San Francisco,CA,94016 +187580,Wired Headphones,1,11.99,2019-04-16 17:08:00,685 8th St, Austin,TX,73301 +187581,AAA Batteries (4-pack),2,2.99,2019-04-18 23:55:00,462 Center St, Los Angeles,CA,90001 +187582,AAA Batteries (4-pack),2,2.99,2019-04-23 19:47:00,634 12th St, Atlanta,GA,30301 +187583,AAA Batteries (4-pack),1,2.99,2019-04-21 14:26:00,325 Main St, Atlanta,GA,30301 +187584,27in 4K Gaming Monitor,1,389.99,2019-04-19 11:54:00,160 Hickory St, Dallas,TX,75001 +187585,Apple Airpods Headphones,1,150.0,2019-04-07 15:54:00,840 Lincoln St, Los Angeles,CA,90001 +187586,AAA Batteries (4-pack),2,2.99,2019-04-30 09:54:00,885 Church St, Los Angeles,CA,90001 +187587,Bose SoundSport Headphones,1,99.99,2019-04-17 09:14:00,772 10th St, Portland,OR,97035 +187588,AA Batteries (4-pack),3,3.84,2019-04-17 05:29:00,80 Main St, Boston,MA,02215 +187589,Flatscreen TV,1,300.0,2019-04-17 08:13:00,93 8th St, Atlanta,GA,30301 +187590,AA Batteries (4-pack),1,3.84,2019-04-06 03:02:00,957 Hickory St, San Francisco,CA,94016 +187591,AA Batteries (4-pack),1,3.84,2019-04-05 10:25:00,934 4th St, Seattle,WA,98101 +187592,USB-C Charging Cable,2,11.95,2019-04-09 18:52:00,572 8th St, Dallas,TX,75001 +187593,Lightning Charging Cable,1,14.95,2019-04-19 04:56:00,389 14th St, Dallas,TX,75001 +187594,AAA Batteries (4-pack),1,2.99,2019-04-13 10:42:00,505 8th St, San Francisco,CA,94016 +187595,iPhone,1,700.0,2019-04-28 18:26:00,628 10th St, Los Angeles,CA,90001 +187596,34in Ultrawide Monitor,1,379.99,2019-04-26 20:33:00,618 Main St, San Francisco,CA,94016 +187597,34in Ultrawide Monitor,1,379.99,2019-04-07 14:23:00,306 Forest St, Los Angeles,CA,90001 +187598,Apple Airpods Headphones,1,150.0,2019-04-13 07:35:00,793 6th St, New York City,NY,10001 +187599,AA Batteries (4-pack),1,3.84,2019-04-29 23:50:00,327 Ridge St, San Francisco,CA,94016 +187600,Macbook Pro Laptop,1,1700.0,2019-04-26 22:28:00,301 9th St, Atlanta,GA,30301 +187601,Bose SoundSport Headphones,1,99.99,2019-04-14 00:25:00,528 Johnson St, Portland,OR,97035 +187602,Apple Airpods Headphones,1,150.0,2019-04-13 17:38:00,324 Jackson St, Boston,MA,02215 +187603,Vareebadd Phone,1,400.0,2019-04-15 20:26:00,739 Meadow St, New York City,NY,10001 +187603,USB-C Charging Cable,1,11.95,2019-04-15 20:26:00,739 Meadow St, New York City,NY,10001 +187604,27in FHD Monitor,1,149.99,2019-04-23 18:59:00,533 9th St, Los Angeles,CA,90001 +187605,Flatscreen TV,1,300.0,2019-04-02 23:24:00,328 10th St, Seattle,WA,98101 +187605,27in 4K Gaming Monitor,1,389.99,2019-04-02 23:24:00,328 10th St, Seattle,WA,98101 +187606,Wired Headphones,1,11.99,2019-04-05 20:21:00,615 6th St, Boston,MA,02215 +187607,AA Batteries (4-pack),1,3.84,2019-04-01 21:07:00,956 Maple St, Los Angeles,CA,90001 +187608,Lightning Charging Cable,1,14.95,2019-04-19 22:02:00,950 13th St, Los Angeles,CA,90001 +187609,iPhone,1,700.0,2019-04-08 08:30:00,737 9th St, San Francisco,CA,94016 +187609,Lightning Charging Cable,1,14.95,2019-04-08 08:30:00,737 9th St, San Francisco,CA,94016 +187610,27in 4K Gaming Monitor,1,389.99,2019-04-29 23:26:00,357 Chestnut St, Los Angeles,CA,90001 +187611,Lightning Charging Cable,1,14.95,2019-04-03 20:48:00,124 7th St, Atlanta,GA,30301 +187612,Wired Headphones,1,11.99,2019-04-02 01:31:00,774 Highland St, Los Angeles,CA,90001 +187613,USB-C Charging Cable,1,11.95,2019-04-14 10:09:00,366 14th St, New York City,NY,10001 +187614,AA Batteries (4-pack),1,3.84,2019-04-27 19:03:00,26 Church St, Atlanta,GA,30301 +187615,USB-C Charging Cable,1,11.95,2019-04-21 19:47:00,161 6th St, New York City,NY,10001 +187616,Google Phone,1,600.0,2019-04-13 19:19:00,14 Jackson St, San Francisco,CA,94016 +187617,Lightning Charging Cable,1,14.95,2019-04-21 10:51:00,318 Hill St, Los Angeles,CA,90001 +187618,AAA Batteries (4-pack),1,2.99,2019-04-18 13:40:00,694 Pine St, San Francisco,CA,94016 +187619,Wired Headphones,1,11.99,2019-04-09 19:46:00,434 9th St, San Francisco,CA,94016 +187620,27in FHD Monitor,1,149.99,2019-04-14 11:57:00,629 Wilson St, San Francisco,CA,94016 +187621,Wired Headphones,1,11.99,2019-04-12 15:20:00,789 2nd St, Dallas,TX,75001 +187622,27in FHD Monitor,1,149.99,2019-04-20 16:03:00,41 9th St, San Francisco,CA,94016 +187623,USB-C Charging Cable,1,11.95,2019-04-21 14:46:00,377 River St, San Francisco,CA,94016 +187624,AAA Batteries (4-pack),1,2.99,2019-04-05 11:34:00,504 Wilson St, San Francisco,CA,94016 +187625,Lightning Charging Cable,1,14.95,2019-04-21 10:54:00,765 Forest St, Boston,MA,02215 +187626,27in FHD Monitor,1,149.99,2019-04-07 22:46:00,256 Hickory St, Atlanta,GA,30301 +187627,Wired Headphones,1,11.99,2019-04-06 13:08:00,417 Johnson St, Portland,OR,97035 +187628,Flatscreen TV,1,300.0,2019-04-24 21:49:00,728 Highland St, Dallas,TX,75001 +187629,LG Dryer,1,600.0,2019-04-21 17:43:00,389 Lakeview St, Atlanta,GA,30301 +187630,Lightning Charging Cable,1,14.95,2019-04-04 21:20:00,670 Lakeview St, San Francisco,CA,94016 +187631,USB-C Charging Cable,1,11.95,2019-04-11 20:59:00,312 4th St, San Francisco,CA,94016 +187632,Macbook Pro Laptop,1,1700.0,2019-04-03 12:46:00,704 Washington St, San Francisco,CA,94016 +187633,20in Monitor,1,109.99,2019-04-19 17:51:00,112 Hill St, Seattle,WA,98101 +187634,Lightning Charging Cable,1,14.95,2019-04-25 12:13:00,797 Pine St, San Francisco,CA,94016 +187635,AA Batteries (4-pack),1,3.84,2019-04-20 15:41:00,967 9th St, Los Angeles,CA,90001 +187636,iPhone,1,700.0,2019-04-04 10:58:00,516 South St, Boston,MA,02215 +187636,Lightning Charging Cable,1,14.95,2019-04-04 10:58:00,516 South St, Boston,MA,02215 +187636,Wired Headphones,1,11.99,2019-04-04 10:58:00,516 South St, Boston,MA,02215 +187637,USB-C Charging Cable,1,11.95,2019-04-23 14:10:00,21 Dogwood St, San Francisco,CA,94016 +187638,34in Ultrawide Monitor,1,379.99,2019-04-29 15:54:00,637 Jefferson St, Portland,OR,97035 +187639,Macbook Pro Laptop,1,1700.0,2019-04-29 01:13:00,533 Maple St, Boston,MA,02215 +187640,AA Batteries (4-pack),1,3.84,2019-04-04 18:26:00,66 Ridge St, San Francisco,CA,94016 +187641,Lightning Charging Cable,1,14.95,2019-04-01 17:42:00,921 Chestnut St, Boston,MA,02215 +187642,Flatscreen TV,1,300.0,2019-04-12 12:43:00,281 Maple St, Austin,TX,73301 +187643,20in Monitor,1,109.99,2019-04-10 15:07:00,912 1st St, San Francisco,CA,94016 +187644,AAA Batteries (4-pack),1,2.99,2019-04-21 21:19:00,653 Ridge St, Portland,OR,97035 +187645,AAA Batteries (4-pack),1,2.99,2019-04-08 05:40:00,729 Adams St, San Francisco,CA,94016 +187646,USB-C Charging Cable,1,11.95,2019-04-12 14:15:00,60 Wilson St, Atlanta,GA,30301 +187647,Google Phone,1,600.0,2019-04-21 13:44:00,852 Highland St, Austin,TX,73301 +187647,USB-C Charging Cable,1,11.95,2019-04-21 13:44:00,852 Highland St, Austin,TX,73301 +187648,AA Batteries (4-pack),1,3.84,2019-04-28 15:50:00,281 Highland St, New York City,NY,10001 +187649,Lightning Charging Cable,1,14.95,2019-04-02 20:35:00,689 Washington St, San Francisco,CA,94016 +187650,AA Batteries (4-pack),1,3.84,2019-04-07 10:48:00,651 Wilson St, Los Angeles,CA,90001 +187651,Wired Headphones,1,11.99,2019-04-04 18:05:00,55 Madison St, San Francisco,CA,94016 +187652,AA Batteries (4-pack),1,3.84,2019-04-13 19:59:00,589 Elm St, New York City,NY,10001 +187653,Lightning Charging Cable,1,14.95,2019-04-11 20:30:00,865 Cherry St, Los Angeles,CA,90001 +187654,AAA Batteries (4-pack),1,2.99,2019-04-17 06:49:00,569 10th St, Seattle,WA,98101 +187655,USB-C Charging Cable,1,11.95,2019-04-23 18:20:00,763 Center St, Portland,ME,04101 +187656,AA Batteries (4-pack),3,3.84,2019-04-23 16:44:00,376 6th St, Portland,OR,97035 +187657,Macbook Pro Laptop,1,1700.0,2019-04-19 20:52:00,605 Sunset St, Los Angeles,CA,90001 +187658,AA Batteries (4-pack),1,3.84,2019-04-26 11:41:00,668 Center St, Atlanta,GA,30301 +187659,27in FHD Monitor,1,149.99,2019-04-16 13:55:00,509 5th St, San Francisco,CA,94016 +187660,Flatscreen TV,1,300.0,2019-04-28 15:03:00,902 7th St, Atlanta,GA,30301 +187661,AA Batteries (4-pack),1,3.84,2019-04-13 17:56:00,653 Lakeview St, New York City,NY,10001 +187662,Lightning Charging Cable,1,14.95,2019-04-05 19:00:00,78 Lakeview St, Dallas,TX,75001 +187663,Lightning Charging Cable,2,14.95,2019-04-03 12:29:00,5 Hickory St, Boston,MA,02215 +187664,34in Ultrawide Monitor,1,379.99,2019-04-13 12:24:00,322 Hill St, Portland,OR,97035 +187665,Wired Headphones,1,11.99,2019-04-20 16:37:00,994 Lincoln St, New York City,NY,10001 +187666,Wired Headphones,1,11.99,2019-04-17 09:14:00,682 South St, San Francisco,CA,94016 +187667,Lightning Charging Cable,1,14.95,2019-04-10 11:44:00,584 12th St, Los Angeles,CA,90001 +187668,Lightning Charging Cable,1,14.95,2019-04-15 16:39:00,686 Cherry St, New York City,NY,10001 +187669,Lightning Charging Cable,1,14.95,2019-04-11 11:33:00,42 Highland St, Los Angeles,CA,90001 +187670,Wired Headphones,1,11.99,2019-04-01 21:50:00,928 Ridge St, San Francisco,CA,94016 +187671,27in FHD Monitor,1,149.99,2019-04-02 03:04:00,44 Sunset St, Los Angeles,CA,90001 +187672,iPhone,1,700.0,2019-04-10 15:15:00,836 Sunset St, Boston,MA,02215 +187673,AA Batteries (4-pack),2,3.84,2019-04-12 18:31:00,772 Meadow St, San Francisco,CA,94016 +187674,Apple Airpods Headphones,1,150.0,2019-04-21 21:55:00,755 14th St, Portland,OR,97035 +187675,AAA Batteries (4-pack),1,2.99,2019-04-12 07:41:00,999 North St, Seattle,WA,98101 +187676,Wired Headphones,1,11.99,2019-04-02 22:26:00,930 Chestnut St, Boston,MA,02215 +187677,34in Ultrawide Monitor,1,379.99,2019-04-29 13:55:00,578 6th St, Austin,TX,73301 +187678,iPhone,1,700.0,2019-04-13 19:26:00,833 Main St, New York City,NY,10001 +187679,27in 4K Gaming Monitor,1,389.99,2019-04-17 10:35:00,222 Hill St, San Francisco,CA,94016 +187680,Bose SoundSport Headphones,1,99.99,2019-04-05 18:03:00,620 6th St, New York City,NY,10001 +187681,Wired Headphones,1,11.99,2019-04-21 20:14:00,810 Jefferson St, New York City,NY,10001 +187682,Lightning Charging Cable,1,14.95,2019-04-09 17:54:00,729 River St, Atlanta,GA,30301 +187683,AAA Batteries (4-pack),1,2.99,2019-04-15 23:45:00,144 Hill St, Los Angeles,CA,90001 +187684,27in FHD Monitor,1,149.99,2019-04-02 12:24:00,990 Park St, Atlanta,GA,30301 +187685,AA Batteries (4-pack),1,3.84,2019-04-08 13:26:00,133 Cherry St, New York City,NY,10001 +187686,Flatscreen TV,1,300.0,2019-04-05 20:33:00,113 Center St, San Francisco,CA,94016 +187687,Google Phone,1,600.0,2019-04-16 16:00:00,866 7th St, San Francisco,CA,94016 +187688,Wired Headphones,1,11.99,2019-04-13 22:14:00,199 14th St, Boston,MA,02215 +187689,Macbook Pro Laptop,1,1700.0,2019-04-01 10:27:00,195 Walnut St, Los Angeles,CA,90001 +187690,AA Batteries (4-pack),1,3.84,2019-04-06 18:23:00,961 11th St, Seattle,WA,98101 +187691,Apple Airpods Headphones,1,150.0,2019-04-30 10:14:00,986 Main St, San Francisco,CA,94016 +187692,Lightning Charging Cable,1,14.95,2019-04-06 09:09:00,592 Johnson St, Seattle,WA,98101 +187693,Lightning Charging Cable,1,14.95,2019-04-14 13:41:00,678 Meadow St, Los Angeles,CA,90001 +187694,AA Batteries (4-pack),1,3.84,2019-04-15 14:20:00,898 North St, New York City,NY,10001 +187695,Lightning Charging Cable,1,14.95,2019-04-18 23:51:00,227 Spruce St, San Francisco,CA,94016 +187696,34in Ultrawide Monitor,1,379.99,2019-04-16 20:52:00,688 8th St, Seattle,WA,98101 +187697,Wired Headphones,1,11.99,2019-04-11 21:15:00,610 Hickory St, Atlanta,GA,30301 +187697,iPhone,1,700.0,2019-04-11 21:15:00,610 Hickory St, Atlanta,GA,30301 +187698,Wired Headphones,1,11.99,2019-04-10 16:22:00,765 Lake St, San Francisco,CA,94016 +187699,Lightning Charging Cable,1,14.95,2019-04-07 18:32:00,327 Dogwood St, New York City,NY,10001 +187700,Wired Headphones,1,11.99,2019-04-30 14:17:00,111 Meadow St, Atlanta,GA,30301 +187701,Wired Headphones,1,11.99,2019-04-06 14:19:00,337 10th St, Los Angeles,CA,90001 +187702,Wired Headphones,1,11.99,2019-04-09 10:14:00,381 2nd St, Seattle,WA,98101 +187703,iPhone,1,700.0,2019-04-06 19:12:00,228 Cedar St, Austin,TX,73301 +187703,Apple Airpods Headphones,1,150.0,2019-04-06 19:12:00,228 Cedar St, Austin,TX,73301 +187704,Apple Airpods Headphones,1,150.0,2019-04-22 13:41:00,762 Center St, Portland,OR,97035 +187705,34in Ultrawide Monitor,1,379.99,2019-04-03 14:37:00,917 1st St, Boston,MA,02215 +187706,Lightning Charging Cable,1,14.95,2019-04-28 17:33:00,747 North St, New York City,NY,10001 +187707,Wired Headphones,1,11.99,2019-04-10 12:18:00,513 Johnson St, San Francisco,CA,94016 +187708,20in Monitor,1,109.99,2019-04-22 11:09:00,686 Lakeview St, San Francisco,CA,94016 +187709,Lightning Charging Cable,1,14.95,2019-04-21 18:02:00,287 8th St, New York City,NY,10001 +187710,AA Batteries (4-pack),1,3.84,2019-04-09 20:00:00,874 Park St, San Francisco,CA,94016 +187711,Google Phone,1,600.0,2019-04-30 23:34:00,755 Adams St, San Francisco,CA,94016 +187712,34in Ultrawide Monitor,1,379.99,2019-04-16 09:01:00,930 River St, San Francisco,CA,94016 +187713,USB-C Charging Cable,1,11.95,2019-04-26 05:29:00,998 Adams St, Austin,TX,73301 +187713,Flatscreen TV,1,300.0,2019-04-26 05:29:00,998 Adams St, Austin,TX,73301 +187714,AA Batteries (4-pack),1,3.84,2019-04-01 18:22:00,418 Maple St, Atlanta,GA,30301 +187715,AA Batteries (4-pack),1,3.84,2019-04-18 15:41:00,304 Cedar St, Austin,TX,73301 +187716,USB-C Charging Cable,1,11.95,2019-04-15 08:39:00,722 7th St, Austin,TX,73301 +187717,Lightning Charging Cable,1,14.95,2019-04-17 19:08:00,324 1st St, San Francisco,CA,94016 +187718,USB-C Charging Cable,1,11.95,2019-04-29 21:14:00,731 14th St, New York City,NY,10001 +187719,Apple Airpods Headphones,1,150.0,2019-04-25 09:43:00,211 Adams St, San Francisco,CA,94016 +187720,Bose SoundSport Headphones,1,99.99,2019-04-17 09:45:00,462 10th St, Dallas,TX,75001 +187721,AA Batteries (4-pack),1,3.84,2019-04-21 07:18:00,835 1st St, Los Angeles,CA,90001 +187722,Lightning Charging Cable,1,14.95,2019-04-18 16:18:00,440 8th St, Seattle,WA,98101 +187723,Apple Airpods Headphones,1,150.0,2019-04-03 09:05:00,382 Meadow St, New York City,NY,10001 +187724,ThinkPad Laptop,1,999.99,2019-04-23 13:44:00,965 Hill St, Boston,MA,02215 +187725,AA Batteries (4-pack),2,3.84,2019-04-02 10:44:00,247 Johnson St, Atlanta,GA,30301 +187726,AA Batteries (4-pack),1,3.84,2019-04-16 14:30:00,358 8th St, Los Angeles,CA,90001 +187727,Bose SoundSport Headphones,1,99.99,2019-04-27 04:19:00,845 Church St, Atlanta,GA,30301 +187728,AAA Batteries (4-pack),3,2.99,2019-04-02 14:29:00,430 Park St, San Francisco,CA,94016 +187729,Lightning Charging Cable,1,14.95,2019-04-16 21:16:00,75 Cedar St, New York City,NY,10001 +187730,Bose SoundSport Headphones,1,99.99,2019-04-17 19:05:00,259 Forest St, Los Angeles,CA,90001 +187731,Wired Headphones,1,11.99,2019-04-21 21:30:00,288 13th St, San Francisco,CA,94016 +187732,Lightning Charging Cable,1,14.95,2019-04-28 21:56:00,404 Park St, Portland,OR,97035 +187733,Wired Headphones,1,11.99,2019-04-25 12:03:00,380 Walnut St, Los Angeles,CA,90001 +187734,20in Monitor,1,109.99,2019-04-26 21:02:00,465 Hickory St, San Francisco,CA,94016 +187735,Lightning Charging Cable,1,14.95,2019-04-23 23:12:00,377 Lincoln St, New York City,NY,10001 +187736,27in 4K Gaming Monitor,1,389.99,2019-04-08 15:07:00,548 10th St, Dallas,TX,75001 +187737,Wired Headphones,1,11.99,2019-04-21 17:43:00,908 2nd St, San Francisco,CA,94016 +187738,AAA Batteries (4-pack),1,2.99,2019-04-15 20:52:00,829 Walnut St, New York City,NY,10001 +187739,USB-C Charging Cable,1,11.95,2019-04-20 09:28:00,973 Johnson St, Austin,TX,73301 +187740,AA Batteries (4-pack),3,3.84,2019-04-30 01:58:00,77 South St, Atlanta,GA,30301 +187741,Google Phone,1,600.0,2019-04-09 14:13:00,510 Ridge St, San Francisco,CA,94016 +187741,27in FHD Monitor,1,149.99,2019-04-09 14:13:00,510 Ridge St, San Francisco,CA,94016 +187742,Google Phone,1,600.0,2019-04-24 19:24:00,224 Cherry St, New York City,NY,10001 +187743,ThinkPad Laptop,1,999.99,2019-04-18 14:26:00,475 Cherry St, Seattle,WA,98101 +187744,AA Batteries (4-pack),1,3.84,2019-04-19 11:22:00,886 Pine St, Los Angeles,CA,90001 +187745,Lightning Charging Cable,1,14.95,2019-04-01 12:42:00,155 Hill St, San Francisco,CA,94016 +187746,Lightning Charging Cable,1,14.95,2019-04-17 22:47:00,605 Dogwood St, Austin,TX,73301 +187747,20in Monitor,1,109.99,2019-04-21 11:23:00,957 Park St, Los Angeles,CA,90001 +187748,Wired Headphones,2,11.99,2019-04-25 18:55:00,51 Church St, San Francisco,CA,94016 +187749,34in Ultrawide Monitor,1,379.99,2019-04-28 15:24:00,90 Jackson St, Portland,OR,97035 +187750,iPhone,1,700.0,2019-04-10 18:34:00,221 7th St, San Francisco,CA,94016 +187751,AAA Batteries (4-pack),2,2.99,2019-04-02 11:15:00,610 Lakeview St, Los Angeles,CA,90001 +187752,20in Monitor,1,109.99,2019-04-20 17:40:00,699 Jefferson St, Austin,TX,73301 +187753,AAA Batteries (4-pack),1,2.99,2019-04-07 19:41:00,570 12th St, Atlanta,GA,30301 +187754,iPhone,1,700.0,2019-04-03 11:45:00,75 7th St, Atlanta,GA,30301 +187755,27in FHD Monitor,1,149.99,2019-04-14 02:29:00,420 Sunset St, Boston,MA,02215 +187756,USB-C Charging Cable,1,11.95,2019-04-09 22:34:00,810 Cherry St, San Francisco,CA,94016 +187757,USB-C Charging Cable,1,11.95,2019-04-09 17:09:00,945 Hickory St, New York City,NY,10001 +187758,Wired Headphones,1,11.99,2019-04-24 19:49:00,796 Meadow St, New York City,NY,10001 +187759,AA Batteries (4-pack),1,3.84,2019-04-17 00:22:00,21 6th St, Austin,TX,73301 +187760,Google Phone,1,600.0,2019-04-10 08:20:00,764 Madison St, Boston,MA,02215 +187761,Wired Headphones,1,11.99,2019-04-26 12:10:00,371 Chestnut St, Los Angeles,CA,90001 +187762,AAA Batteries (4-pack),1,2.99,2019-04-30 19:23:00,255 Cherry St, San Francisco,CA,94016 +187763,AA Batteries (4-pack),1,3.84,2019-04-21 14:44:00,335 1st St, Los Angeles,CA,90001 +187764,Wired Headphones,1,11.99,2019-04-20 14:16:00,695 Jackson St, Dallas,TX,75001 +187765,Lightning Charging Cable,1,14.95,2019-04-24 12:40:00,232 Church St, Seattle,WA,98101 +187766,AAA Batteries (4-pack),1,2.99,2019-04-16 23:49:00,561 11th St, Los Angeles,CA,90001 +187767,Macbook Pro Laptop,1,1700.0,2019-04-11 17:19:00,351 Forest St, Dallas,TX,75001 +187768,Apple Airpods Headphones,1,150.0,2019-04-20 13:50:00,137 11th St, San Francisco,CA,94016 +187769,Bose SoundSport Headphones,1,99.99,2019-04-03 07:43:00,717 13th St, San Francisco,CA,94016 +187770,Wired Headphones,1,11.99,2019-04-23 18:11:00,938 Center St, Los Angeles,CA,90001 +187771,AAA Batteries (4-pack),1,2.99,2019-04-06 05:02:00,891 Forest St, San Francisco,CA,94016 +187772,USB-C Charging Cable,1,11.95,2019-04-28 23:14:00,267 Willow St, San Francisco,CA,94016 +187773,Apple Airpods Headphones,1,150.0,2019-04-21 18:29:00,224 14th St, Austin,TX,73301 +187774,AAA Batteries (4-pack),1,2.99,2019-04-25 19:07:00,52 Meadow St, Seattle,WA,98101 +187775,27in FHD Monitor,1,149.99,2019-04-12 19:08:00,705 Johnson St, San Francisco,CA,94016 +187776,Flatscreen TV,1,300.0,2019-04-29 13:53:00,834 4th St, New York City,NY,10001 +187777,27in FHD Monitor,1,149.99,2019-04-11 14:06:00,283 Cedar St, Atlanta,GA,30301 +187778,Macbook Pro Laptop,1,1700.0,2019-04-18 18:31:00,280 Dogwood St, Boston,MA,02215 +187779,AAA Batteries (4-pack),1,2.99,2019-04-29 20:48:00,783 Maple St, Seattle,WA,98101 +187780,Lightning Charging Cable,1,14.95,2019-04-15 08:29:00,141 12th St, Los Angeles,CA,90001 +187781,Lightning Charging Cable,1,14.95,2019-04-18 07:41:00,38 Pine St, Los Angeles,CA,90001 +187782,Google Phone,1,600.0,2019-04-30 08:57:00,590 South St, Los Angeles,CA,90001 +187783,Wired Headphones,1,11.99,2019-04-01 18:31:00,765 Johnson St, Portland,OR,97035 +187784,USB-C Charging Cable,1,11.95,2019-04-15 10:51:00,928 Willow St, Dallas,TX,75001 +187785,AAA Batteries (4-pack),1,2.99,2019-04-08 01:06:00,302 Hickory St, Boston,MA,02215 +187786,Apple Airpods Headphones,1,150.0,2019-04-11 16:08:00,265 Madison St, San Francisco,CA,94016 +187787,Lightning Charging Cable,1,14.95,2019-04-01 11:52:00,684 Johnson St, San Francisco,CA,94016 +187788,Apple Airpods Headphones,1,150.0,2019-04-04 18:38:00,411 Adams St, Atlanta,GA,30301 +187789,AAA Batteries (4-pack),1,2.99,2019-04-13 13:32:00,686 West St, Dallas,TX,75001 +187790,AAA Batteries (4-pack),1,2.99,2019-04-08 19:09:00,21 Meadow St, Boston,MA,02215 +187791,AAA Batteries (4-pack),1,2.99,2019-04-27 19:01:00,671 Spruce St, San Francisco,CA,94016 +187792,20in Monitor,1,109.99,2019-04-13 14:15:00,327 Maple St, Los Angeles,CA,90001 +187793,AAA Batteries (4-pack),1,2.99,2019-04-06 13:46:00,689 Lincoln St, San Francisco,CA,94016 +187794,Wired Headphones,1,11.99,2019-04-06 20:53:00,684 Spruce St, Los Angeles,CA,90001 +187795,Lightning Charging Cable,1,14.95,2019-04-30 10:47:00,696 Willow St, Atlanta,GA,30301 +187796,Bose SoundSport Headphones,1,99.99,2019-04-27 22:54:00,465 Meadow St, Los Angeles,CA,90001 +187797,Apple Airpods Headphones,1,150.0,2019-04-28 09:22:00,747 2nd St, Los Angeles,CA,90001 +187798,AA Batteries (4-pack),1,3.84,2019-04-16 07:12:00,901 Pine St, Dallas,TX,75001 +187799,USB-C Charging Cable,1,11.95,2019-04-05 19:30:00,73 Sunset St, Austin,TX,73301 +187800,Flatscreen TV,1,300.0,2019-04-28 16:19:00,843 2nd St, Seattle,WA,98101 +187801,USB-C Charging Cable,1,11.95,2019-04-29 16:13:00,219 7th St, Los Angeles,CA,90001 +187802,Wired Headphones,1,11.99,2019-04-07 14:45:00,254 Elm St, San Francisco,CA,94016 +187803,Lightning Charging Cable,1,14.95,2019-04-16 16:46:00,274 Wilson St, Atlanta,GA,30301 +187804,Bose SoundSport Headphones,1,99.99,2019-04-28 12:16:00,619 14th St, New York City,NY,10001 +187805,Apple Airpods Headphones,1,150.0,2019-04-27 18:39:00,910 Jefferson St, Los Angeles,CA,90001 +187806,AAA Batteries (4-pack),3,2.99,2019-04-19 18:54:00,159 1st St, Los Angeles,CA,90001 +187807,AA Batteries (4-pack),2,3.84,2019-04-20 01:38:00,156 West St, Atlanta,GA,30301 +187808,34in Ultrawide Monitor,1,379.99,2019-04-07 07:29:00,154 2nd St, Boston,MA,02215 +187809,27in 4K Gaming Monitor,1,389.99,2019-04-29 08:36:00,991 Sunset St, New York City,NY,10001 +187810,USB-C Charging Cable,1,11.95,2019-04-24 22:21:00,442 Dogwood St, San Francisco,CA,94016 +187811,20in Monitor,1,109.99,2019-04-20 20:04:00,457 River St, Seattle,WA,98101 +187812,Bose SoundSport Headphones,1,99.99,2019-04-15 19:53:00,824 Willow St, Atlanta,GA,30301 +187813,AA Batteries (4-pack),1,3.84,2019-04-20 12:02:00,315 Ridge St, Boston,MA,02215 +187814,USB-C Charging Cable,1,11.95,2019-04-07 11:13:00,742 9th St, Atlanta,GA,30301 +187815,Lightning Charging Cable,1,14.95,2019-04-13 02:41:00,244 Chestnut St, New York City,NY,10001 +187816,20in Monitor,1,109.99,2019-04-15 16:58:00,998 Chestnut St, Portland,OR,97035 +187817,Wired Headphones,1,11.99,2019-04-22 10:39:00,758 11th St, Boston,MA,02215 +187818,27in FHD Monitor,1,149.99,2019-04-18 19:32:00,922 Park St, San Francisco,CA,94016 +187819,20in Monitor,1,109.99,2019-04-22 19:12:00,508 8th St, Los Angeles,CA,90001 +187820,Lightning Charging Cable,1,14.95,2019-04-13 10:48:00,41 Park St, Los Angeles,CA,90001 +187821,ThinkPad Laptop,1,999.99,2019-04-29 15:02:00,981 Main St, San Francisco,CA,94016 +187822,iPhone,1,700.0,2019-04-11 16:58:00,571 Jefferson St, New York City,NY,10001 +187822,Lightning Charging Cable,1,14.95,2019-04-11 16:58:00,571 Jefferson St, New York City,NY,10001 +187823,Bose SoundSport Headphones,1,99.99,2019-04-08 13:09:00,701 Johnson St, San Francisco,CA,94016 +187824,AAA Batteries (4-pack),1,2.99,2019-04-22 06:25:00,203 Main St, Boston,MA,02215 +187825,AAA Batteries (4-pack),2,2.99,2019-04-02 03:00:00,936 Forest St, Portland,OR,97035 +187826,USB-C Charging Cable,1,11.95,2019-04-01 15:10:00,312 Church St, San Francisco,CA,94016 +187827,Bose SoundSport Headphones,1,99.99,2019-04-13 15:48:00,255 Elm St, Austin,TX,73301 +187828,iPhone,1,700.0,2019-04-23 19:20:00,376 11th St, Atlanta,GA,30301 +187829,AAA Batteries (4-pack),1,2.99,2019-04-02 00:04:00,360 West St, Seattle,WA,98101 +187830,Wired Headphones,1,11.99,2019-04-16 01:02:00,41 Highland St, Portland,ME,04101 +187831,Apple Airpods Headphones,1,150.0,2019-04-17 09:40:00,751 Jackson St, Austin,TX,73301 +187832,AA Batteries (4-pack),2,3.84,2019-04-18 19:27:00,257 Sunset St, Boston,MA,02215 +187833,Lightning Charging Cable,1,14.95,2019-04-22 23:25:00,183 Lake St, Atlanta,GA,30301 +187834,AA Batteries (4-pack),1,3.84,2019-04-05 20:08:00,846 Madison St, Dallas,TX,75001 +187835,20in Monitor,1,109.99,2019-04-23 08:29:00,287 Hickory St, Dallas,TX,75001 +187836,iPhone,1,700.0,2019-04-13 10:36:00,364 9th St, San Francisco,CA,94016 +187837,Bose SoundSport Headphones,1,99.99,2019-04-09 18:37:00,884 4th St, San Francisco,CA,94016 +187838,AAA Batteries (4-pack),1,2.99,2019-04-14 15:26:00,887 Church St, Los Angeles,CA,90001 +187839,Apple Airpods Headphones,1,150.0,2019-04-14 00:38:00,788 Maple St, Los Angeles,CA,90001 +187840,Lightning Charging Cable,1,14.95,2019-04-07 10:31:00,703 Cherry St, Boston,MA,02215 +187841,AAA Batteries (4-pack),1,2.99,2019-04-06 10:45:00,216 Chestnut St, Los Angeles,CA,90001 +187842,Apple Airpods Headphones,1,150.0,2019-04-23 11:24:00,81 Main St, Dallas,TX,75001 +187843,AAA Batteries (4-pack),1,2.99,2019-04-15 16:08:00,305 4th St, Seattle,WA,98101 +187844,20in Monitor,1,109.99,2019-04-04 21:22:00,945 10th St, Atlanta,GA,30301 +187845,20in Monitor,1,109.99,2019-04-28 14:31:00,761 5th St, Seattle,WA,98101 +187846,USB-C Charging Cable,1,11.95,2019-04-28 14:52:00,182 7th St, Los Angeles,CA,90001 +187847,AA Batteries (4-pack),1,3.84,2019-04-13 15:19:00,880 Church St, San Francisco,CA,94016 +187848,iPhone,1,700.0,2019-04-03 16:49:00,387 Maple St, Atlanta,GA,30301 +187849,iPhone,1,700.0,2019-04-25 12:54:00,39 Chestnut St, Portland,OR,97035 +187850,ThinkPad Laptop,1,999.99,2019-04-05 18:26:00,559 Main St, Portland,OR,97035 +187851,AAA Batteries (4-pack),6,2.99,2019-04-12 00:09:00,350 Wilson St, Boston,MA,02215 +187852,USB-C Charging Cable,1,11.95,2019-04-05 23:43:00,447 1st St, Portland,ME,04101 +187853,iPhone,1,700.0,2019-04-15 18:41:00,872 South St, Portland,OR,97035 +187854,Macbook Pro Laptop,1,1700.0,2019-04-06 19:07:00,579 Madison St, Portland,OR,97035 +187855,27in FHD Monitor,1,149.99,2019-04-09 09:17:00,256 Cedar St, Dallas,TX,75001 +187856,Google Phone,1,600.0,2019-04-25 20:18:00,432 Lake St, New York City,NY,10001 +187857,AAA Batteries (4-pack),3,2.99,2019-04-23 20:40:00,384 Hickory St, San Francisco,CA,94016 +187858,AA Batteries (4-pack),1,3.84,2019-04-05 10:47:00,610 Hickory St, Los Angeles,CA,90001 +187859,AAA Batteries (4-pack),1,2.99,2019-04-05 22:02:00,455 Elm St, Dallas,TX,75001 +187860,AA Batteries (4-pack),1,3.84,2019-04-13 06:37:00,195 13th St, New York City,NY,10001 +187861,Flatscreen TV,1,300.0,2019-04-17 17:42:00,434 1st St, San Francisco,CA,94016 +187862,34in Ultrawide Monitor,1,379.99,2019-04-20 22:48:00,105 Adams St, Austin,TX,73301 +187863,AA Batteries (4-pack),2,3.84,2019-04-22 17:36:00,89 Hickory St, New York City,NY,10001 +187864,Flatscreen TV,1,300.0,2019-04-28 16:48:00,884 Jefferson St, San Francisco,CA,94016 +187865,USB-C Charging Cable,1,11.95,2019-04-25 17:19:00,853 Cherry St, Atlanta,GA,30301 +187866,USB-C Charging Cable,1,11.95,2019-04-05 01:05:00,71 11th St, San Francisco,CA,94016 +187867,Lightning Charging Cable,1,14.95,2019-04-19 08:10:00,488 2nd St, Austin,TX,73301 +187868,AAA Batteries (4-pack),1,2.99,2019-04-23 01:09:00,669 Elm St, Portland,OR,97035 +187869,Wired Headphones,1,11.99,2019-04-06 15:50:00,329 Park St, Boston,MA,02215 +187870,Lightning Charging Cable,1,14.95,2019-04-28 18:52:00,498 Hickory St, Los Angeles,CA,90001 +187871,20in Monitor,1,109.99,2019-04-20 20:30:00,498 Hickory St, New York City,NY,10001 +187872,USB-C Charging Cable,1,11.95,2019-04-03 20:44:00,237 11th St, Los Angeles,CA,90001 +187872,ThinkPad Laptop,1,999.99,2019-04-03 20:44:00,237 11th St, Los Angeles,CA,90001 +187873,Bose SoundSport Headphones,1,99.99,2019-04-06 19:31:00,809 Forest St, Atlanta,GA,30301 +187874,USB-C Charging Cable,1,11.95,2019-04-08 22:15:00,530 11th St, San Francisco,CA,94016 +187875,Vareebadd Phone,1,400.0,2019-04-30 13:20:00,108 Lake St, Seattle,WA,98101 +187876,AA Batteries (4-pack),1,3.84,2019-04-14 00:20:00,725 Forest St, Austin,TX,73301 +187877,27in FHD Monitor,1,149.99,2019-04-26 00:01:00,333 Main St, Seattle,WA,98101 +187878,Apple Airpods Headphones,1,150.0,2019-04-24 17:38:00,874 Lake St, Austin,TX,73301 +187879,AA Batteries (4-pack),1,3.84,2019-04-02 22:11:00,724 Center St, Portland,OR,97035 +187880,Apple Airpods Headphones,1,150.0,2019-04-30 11:17:00,190 Center St, Atlanta,GA,30301 +187881,ThinkPad Laptop,1,999.99,2019-04-11 17:56:00,45 11th St, New York City,NY,10001 +187882,34in Ultrawide Monitor,1,379.99,2019-04-13 13:55:00,863 10th St, Los Angeles,CA,90001 +187883,Google Phone,1,600.0,2019-04-30 16:10:00,22 6th St, Portland,OR,97035 +187884,AAA Batteries (4-pack),2,2.99,2019-04-19 22:30:00,264 Walnut St, Boston,MA,02215 +187885,USB-C Charging Cable,1,11.95,2019-04-15 17:56:00,932 River St, San Francisco,CA,94016 +187886,Lightning Charging Cable,1,14.95,2019-04-15 08:54:00,411 Dogwood St, Austin,TX,73301 +187887,Lightning Charging Cable,1,14.95,2019-04-24 10:52:00,829 South St, Dallas,TX,75001 +187888,iPhone,1,700.0,2019-04-30 19:20:00,387 12th St, San Francisco,CA,94016 +187888,Wired Headphones,2,11.99,2019-04-30 19:20:00,387 12th St, San Francisco,CA,94016 +187889,USB-C Charging Cable,1,11.95,2019-04-14 11:32:00,884 Jackson St, Dallas,TX,75001 +187890,Lightning Charging Cable,1,14.95,2019-04-21 17:06:00,311 River St, Austin,TX,73301 +187891,27in FHD Monitor,1,149.99,2019-04-13 16:03:00,568 11th St, Atlanta,GA,30301 +187892,Wired Headphones,1,11.99,2019-04-06 05:45:00,964 Ridge St, San Francisco,CA,94016 +187893,Google Phone,1,600.0,2019-04-12 19:50:00,616 8th St, Portland,OR,97035 +187894,27in FHD Monitor,1,149.99,2019-04-28 13:06:00,42 Highland St, Atlanta,GA,30301 +187895,AA Batteries (4-pack),3,3.84,2019-04-01 20:54:00,647 14th St, Austin,TX,73301 +187896,Bose SoundSport Headphones,1,99.99,2019-04-15 18:49:00,482 Church St, Boston,MA,02215 +187897,AAA Batteries (4-pack),1,2.99,2019-04-23 18:10:00,84 Maple St, Los Angeles,CA,90001 +187898,Macbook Pro Laptop,1,1700.0,2019-04-15 14:06:00,26 Highland St, San Francisco,CA,94016 +187899,Lightning Charging Cable,1,14.95,2019-04-22 18:50:00,530 6th St, Austin,TX,73301 +187900,USB-C Charging Cable,1,11.95,2019-04-01 23:00:00,416 2nd St, Boston,MA,02215 +187901,Google Phone,1,600.0,2019-04-03 10:44:00,441 Chestnut St, Los Angeles,CA,90001 +187902,Wired Headphones,1,11.99,2019-04-01 20:52:00,777 Cedar St, New York City,NY,10001 +187903,AA Batteries (4-pack),1,3.84,2019-04-23 12:27:00,726 Cedar St, Seattle,WA,98101 +187904,AA Batteries (4-pack),1,3.84,2019-04-12 20:18:00,166 Park St, San Francisco,CA,94016 +187905,USB-C Charging Cable,1,11.95,2019-04-05 18:35:00,508 5th St, Portland,OR,97035 +187906,AA Batteries (4-pack),1,3.84,2019-04-20 17:23:00,173 Ridge St, San Francisco,CA,94016 +187907,Wired Headphones,1,11.99,2019-04-17 11:53:00,440 Jefferson St, Los Angeles,CA,90001 +187908,AAA Batteries (4-pack),2,2.99,2019-04-28 12:42:00,974 11th St, Dallas,TX,75001 +187909,Lightning Charging Cable,1,14.95,2019-04-15 17:45:00,503 9th St, Austin,TX,73301 +187910,Wired Headphones,1,11.99,2019-04-21 13:30:00,392 Willow St, New York City,NY,10001 +187911,USB-C Charging Cable,1,11.95,2019-04-15 10:23:00,889 Lake St, Los Angeles,CA,90001 +187912,USB-C Charging Cable,1,11.95,2019-04-20 16:04:00,729 7th St, Portland,ME,04101 +187913,Apple Airpods Headphones,1,150.0,2019-04-30 17:03:00,677 Elm St, Dallas,TX,75001 +187914,USB-C Charging Cable,1,11.95,2019-04-09 13:09:00,793 2nd St, Boston,MA,02215 +187915,Bose SoundSport Headphones,1,99.99,2019-04-13 21:23:00,832 Park St, San Francisco,CA,94016 +187916,Wired Headphones,1,11.99,2019-04-29 15:48:00,28 Dogwood St, Atlanta,GA,30301 +187917,Bose SoundSport Headphones,1,99.99,2019-04-04 02:38:00,738 Johnson St, San Francisco,CA,94016 +187918,Bose SoundSport Headphones,1,99.99,2019-04-19 20:27:00,912 Maple St, Los Angeles,CA,90001 +187919,Wired Headphones,2,11.99,2019-04-30 18:31:00,54 6th St, New York City,NY,10001 +187920,Apple Airpods Headphones,1,150.0,2019-04-25 07:26:00,935 West St, Los Angeles,CA,90001 +187921,Apple Airpods Headphones,1,150.0,2019-04-26 11:39:00,758 Park St, New York City,NY,10001 +187922,USB-C Charging Cable,1,11.95,2019-04-02 19:11:00,448 Highland St, Atlanta,GA,30301 +187923,27in 4K Gaming Monitor,1,389.99,2019-04-16 15:41:00,376 Adams St, Seattle,WA,98101 +187924,Wired Headphones,1,11.99,2019-04-08 15:37:00,842 Lakeview St, San Francisco,CA,94016 +187925,27in FHD Monitor,1,149.99,2019-04-17 13:12:00,688 Lincoln St, Los Angeles,CA,90001 +187926,USB-C Charging Cable,1,11.95,2019-04-13 11:27:00,206 Sunset St, Austin,TX,73301 +187927,Wired Headphones,1,11.99,2019-04-03 12:31:00,771 Main St, New York City,NY,10001 +187928,USB-C Charging Cable,2,11.95,2019-04-22 19:55:00,259 Johnson St, San Francisco,CA,94016 +187929,Apple Airpods Headphones,1,150.0,2019-04-09 14:51:00,6 Lake St, San Francisco,CA,94016 +187930,AAA Batteries (4-pack),1,2.99,2019-04-06 17:56:00,118 5th St, San Francisco,CA,94016 +187931,AA Batteries (4-pack),1,3.84,2019-04-16 14:31:00,344 Cedar St, San Francisco,CA,94016 +187932,Vareebadd Phone,1,400.0,2019-04-11 19:47:00,154 8th St, Portland,OR,97035 +187932,USB-C Charging Cable,1,11.95,2019-04-11 19:47:00,154 8th St, Portland,OR,97035 +187933,AA Batteries (4-pack),1,3.84,2019-04-19 04:44:00,394 Cherry St, San Francisco,CA,94016 +187934,Wired Headphones,1,11.99,2019-04-29 11:50:00,415 Jefferson St, Seattle,WA,98101 +187935,AA Batteries (4-pack),1,3.84,2019-04-10 20:55:00,967 Chestnut St, San Francisco,CA,94016 +187936,Bose SoundSport Headphones,1,99.99,2019-04-13 06:24:00,241 Walnut St, San Francisco,CA,94016 +187937,AAA Batteries (4-pack),2,2.99,2019-04-17 08:00:00,302 Sunset St, Boston,MA,02215 +187938,Wired Headphones,1,11.99,2019-04-03 17:05:00,61 Center St, San Francisco,CA,94016 +187939,Bose SoundSport Headphones,1,99.99,2019-04-21 12:15:00,784 Meadow St, New York City,NY,10001 +187940,Wired Headphones,1,11.99,2019-04-30 16:06:00,869 Sunset St, San Francisco,CA,94016 +187941,Lightning Charging Cable,1,14.95,2019-04-23 21:25:00,28 13th St, Atlanta,GA,30301 +187942,27in 4K Gaming Monitor,1,389.99,2019-04-25 07:19:00,598 5th St, San Francisco,CA,94016 +187943,Lightning Charging Cable,1,14.95,2019-04-03 14:40:00,764 9th St, Los Angeles,CA,90001 +187944,AAA Batteries (4-pack),1,2.99,2019-04-17 19:45:00,705 Willow St, Boston,MA,02215 +187945,Vareebadd Phone,1,400.0,2019-04-24 13:17:00,549 Jefferson St, Seattle,WA,98101 +187946,27in FHD Monitor,1,149.99,2019-04-09 12:09:00,669 Center St, Seattle,WA,98101 +187947,AAA Batteries (4-pack),1,2.99,2019-04-08 18:18:00,647 1st St, Los Angeles,CA,90001 +187948,USB-C Charging Cable,1,11.95,2019-04-27 15:49:00,721 12th St, Los Angeles,CA,90001 +187949,Vareebadd Phone,1,400.0,2019-04-08 16:32:00,743 Park St, Seattle,WA,98101 +187950,USB-C Charging Cable,1,11.95,2019-04-03 12:45:00,213 Forest St, Los Angeles,CA,90001 +187951,iPhone,1,700.0,2019-04-25 20:27:00,83 Elm St, Atlanta,GA,30301 +187952,AAA Batteries (4-pack),1,2.99,2019-04-08 13:26:00,891 1st St, New York City,NY,10001 +187953,AAA Batteries (4-pack),1,2.99,2019-04-08 16:19:00,848 14th St, Seattle,WA,98101 +187954,27in FHD Monitor,1,149.99,2019-04-19 09:04:00,872 Adams St, Portland,OR,97035 +187955,Google Phone,1,600.0,2019-04-03 14:51:00,818 River St, Dallas,TX,75001 +187955,USB-C Charging Cable,1,11.95,2019-04-03 14:51:00,818 River St, Dallas,TX,75001 +187956,34in Ultrawide Monitor,1,379.99,2019-04-28 17:08:00,649 10th St, San Francisco,CA,94016 +187957,USB-C Charging Cable,2,11.95,2019-04-18 03:53:00,367 Adams St, Boston,MA,02215 +187958,Apple Airpods Headphones,1,150.0,2019-04-24 17:54:00,715 Sunset St, Los Angeles,CA,90001 +187959,Wired Headphones,1,11.99,2019-04-06 01:49:00,609 11th St, New York City,NY,10001 +187960,AA Batteries (4-pack),1,3.84,2019-04-09 15:29:00,281 Lakeview St, San Francisco,CA,94016 +187961,AAA Batteries (4-pack),1,2.99,2019-04-27 00:18:00,198 7th St, New York City,NY,10001 +187962,AA Batteries (4-pack),1,3.84,2019-04-25 00:25:00,447 Lincoln St, Dallas,TX,75001 +187963,27in FHD Monitor,1,149.99,2019-04-14 11:18:00,775 Chestnut St, New York City,NY,10001 +187964,AAA Batteries (4-pack),1,2.99,2019-04-03 10:53:00,47 10th St, San Francisco,CA,94016 +187965,Google Phone,1,600.0,2019-04-22 23:49:00,307 5th St, Seattle,WA,98101 +187966,AA Batteries (4-pack),1,3.84,2019-04-27 21:57:00,893 9th St, San Francisco,CA,94016 +187967,Vareebadd Phone,1,400.0,2019-04-20 13:56:00,154 Dogwood St, Los Angeles,CA,90001 +187967,USB-C Charging Cable,1,11.95,2019-04-20 13:56:00,154 Dogwood St, Los Angeles,CA,90001 +187967,Bose SoundSport Headphones,1,99.99,2019-04-20 13:56:00,154 Dogwood St, Los Angeles,CA,90001 +187968,USB-C Charging Cable,1,11.95,2019-04-02 11:50:00,28 12th St, New York City,NY,10001 +187969,Vareebadd Phone,1,400.0,2019-04-24 12:56:00,402 Chestnut St, Atlanta,GA,30301 +187970,Google Phone,1,600.0,2019-04-20 17:07:00,11 Madison St, New York City,NY,10001 +187970,USB-C Charging Cable,1,11.95,2019-04-20 17:07:00,11 Madison St, New York City,NY,10001 +187971,Lightning Charging Cable,1,14.95,2019-04-19 16:39:00,805 Forest St, Los Angeles,CA,90001 +187972,AA Batteries (4-pack),1,3.84,2019-04-19 08:03:00,239 Forest St, Dallas,TX,75001 +187973,Wired Headphones,1,11.99,2019-04-19 18:36:00,830 5th St, Los Angeles,CA,90001 +187974,Macbook Pro Laptop,1,1700.0,2019-04-03 10:58:00,325 Wilson St, Los Angeles,CA,90001 +187975,Wired Headphones,1,11.99,2019-04-08 16:12:00,495 North St, New York City,NY,10001 +187976,LG Dryer,1,600.0,2019-04-19 17:13:00,398 Cherry St, Atlanta,GA,30301 +187977,Lightning Charging Cable,2,14.95,2019-04-05 14:16:00,88 Forest St, San Francisco,CA,94016 +187978,Google Phone,1,600.0,2019-04-02 12:57:00,810 Sunset St, New York City,NY,10001 +187978,Bose SoundSport Headphones,1,99.99,2019-04-02 12:57:00,810 Sunset St, New York City,NY,10001 +187979,AAA Batteries (4-pack),1,2.99,2019-04-13 13:44:00,85 North St, Boston,MA,02215 +187980,Google Phone,1,600.0,2019-04-18 13:40:00,857 2nd St, Los Angeles,CA,90001 +187981,Lightning Charging Cable,1,14.95,2019-04-07 11:55:00,920 Lake St, Atlanta,GA,30301 +187982,iPhone,2,700.0,2019-04-06 22:03:00,213 6th St, Atlanta,GA,30301 +187983,Lightning Charging Cable,1,14.95,2019-04-17 19:58:00,881 Maple St, Austin,TX,73301 +187984,Macbook Pro Laptop,1,1700.0,2019-04-02 06:00:00,153 Walnut St, Portland,ME,04101 +187985,AA Batteries (4-pack),1,3.84,2019-04-25 14:36:00,651 Cedar St, San Francisco,CA,94016 +187986,USB-C Charging Cable,1,11.95,2019-04-29 14:43:00,861 Adams St, Los Angeles,CA,90001 +187987,Lightning Charging Cable,1,14.95,2019-04-03 13:31:00,416 Wilson St, Atlanta,GA,30301 +187988,Bose SoundSport Headphones,1,99.99,2019-04-13 06:16:00,883 10th St, Dallas,TX,75001 +187989,AAA Batteries (4-pack),1,2.99,2019-04-14 21:40:00,589 13th St, Atlanta,GA,30301 +187990,AA Batteries (4-pack),1,3.84,2019-04-12 12:26:00,974 Cedar St, Seattle,WA,98101 +187991,AA Batteries (4-pack),2,3.84,2019-04-17 18:42:00,576 Pine St, Boston,MA,02215 +187992,27in 4K Gaming Monitor,1,389.99,2019-04-06 14:19:00,303 Cedar St, Dallas,TX,75001 +187993,Lightning Charging Cable,1,14.95,2019-04-30 23:24:00,130 Jackson St, Los Angeles,CA,90001 +187994,Lightning Charging Cable,1,14.95,2019-04-29 18:41:00,551 River St, Los Angeles,CA,90001 +187995,Apple Airpods Headphones,1,150.0,2019-04-27 22:11:00,265 9th St, San Francisco,CA,94016 +187996,AAA Batteries (4-pack),1,2.99,2019-04-02 16:35:00,509 8th St, San Francisco,CA,94016 +187997,USB-C Charging Cable,1,11.95,2019-04-22 00:15:00,765 Washington St, Los Angeles,CA,90001 +187998,USB-C Charging Cable,1,11.95,2019-04-05 16:42:00,775 7th St, New York City,NY,10001 +187999,AA Batteries (4-pack),1,3.84,2019-04-01 07:51:00,363 12th St, San Francisco,CA,94016 +188000,27in FHD Monitor,1,149.99,2019-04-02 18:11:00,921 Wilson St, San Francisco,CA,94016 +188001,iPhone,1,700.0,2019-04-04 07:08:00,721 Sunset St, Dallas,TX,75001 +188002,34in Ultrawide Monitor,1,379.99,2019-04-28 13:50:00,458 Madison St, Seattle,WA,98101 +188003,Google Phone,1,600.0,2019-04-25 12:54:00,643 14th St, Los Angeles,CA,90001 +188004,Apple Airpods Headphones,1,150.0,2019-04-08 08:49:00,625 Maple St, Boston,MA,02215 +188005,Apple Airpods Headphones,1,150.0,2019-04-28 12:18:00,881 5th St, Austin,TX,73301 +188006,AAA Batteries (4-pack),1,2.99,2019-04-08 11:11:00,870 Jackson St, Los Angeles,CA,90001 +188007,20in Monitor,1,109.99,2019-04-14 19:55:00,309 12th St, Atlanta,GA,30301 +188008,Wired Headphones,1,11.99,2019-04-15 14:07:00,572 Lakeview St, Atlanta,GA,30301 +188009,USB-C Charging Cable,1,11.95,2019-04-24 16:29:00,367 Jackson St, Portland,ME,04101 +188010,Wired Headphones,1,11.99,2019-04-03 04:24:00,861 Jefferson St, San Francisco,CA,94016 +188011,34in Ultrawide Monitor,1,379.99,2019-04-26 00:53:00,553 Church St, Boston,MA,02215 +188012,Lightning Charging Cable,1,14.95,2019-04-03 16:59:00,981 Hill St, New York City,NY,10001 +188013,iPhone,1,700.0,2019-04-23 23:17:00,65 Cherry St, Dallas,TX,75001 +188014,AAA Batteries (4-pack),2,2.99,2019-04-24 19:32:00,336 Lake St, Atlanta,GA,30301 +188015,AAA Batteries (4-pack),1,2.99,2019-04-28 16:21:00,749 Chestnut St, Portland,OR,97035 +188016,AA Batteries (4-pack),1,3.84,2019-04-26 18:38:00,738 Spruce St, San Francisco,CA,94016 +188017,Lightning Charging Cable,1,14.95,2019-04-30 18:14:00,857 Spruce St, Portland,OR,97035 +188018,USB-C Charging Cable,1,11.95,2019-04-23 09:17:00,898 10th St, Los Angeles,CA,90001 +188019,Lightning Charging Cable,1,14.95,2019-04-20 17:11:00,462 Center St, Boston,MA,02215 +188020,AA Batteries (4-pack),1,3.84,2019-04-25 23:01:00,820 11th St, Austin,TX,73301 +188021,Macbook Pro Laptop,1,1700.0,2019-04-11 18:07:00,3 Adams St, New York City,NY,10001 +188022,34in Ultrawide Monitor,1,379.99,2019-04-13 21:38:00,931 South St, San Francisco,CA,94016 +188023,AA Batteries (4-pack),1,3.84,2019-04-17 14:35:00,443 Ridge St, Seattle,WA,98101 +188024,AA Batteries (4-pack),1,3.84,2019-04-19 14:28:00,821 Maple St, San Francisco,CA,94016 +188025,Apple Airpods Headphones,1,150.0,2019-04-09 20:07:00,39 Park St, San Francisco,CA,94016 +188026,27in FHD Monitor,1,149.99,2019-04-16 20:54:00,28 5th St, San Francisco,CA,94016 +188026,Wired Headphones,1,11.99,2019-04-16 20:54:00,28 5th St, San Francisco,CA,94016 +188027,Bose SoundSport Headphones,1,99.99,2019-04-15 15:32:00,862 Lincoln St, San Francisco,CA,94016 +188028,AAA Batteries (4-pack),1,2.99,2019-04-07 11:25:00,504 Madison St, Los Angeles,CA,90001 +188028,USB-C Charging Cable,1,11.95,2019-04-07 11:25:00,504 Madison St, Los Angeles,CA,90001 +188029,Google Phone,1,600.0,2019-04-07 14:13:00,389 8th St, Atlanta,GA,30301 +188030,USB-C Charging Cable,1,11.95,2019-04-21 12:09:00,407 13th St, Los Angeles,CA,90001 +188031,27in FHD Monitor,1,149.99,2019-04-05 23:51:00,54 Willow St, Portland,ME,04101 +188032,AAA Batteries (4-pack),1,2.99,2019-04-08 20:35:00,126 Cedar St, San Francisco,CA,94016 +188033,AA Batteries (4-pack),1,3.84,2019-04-23 11:16:00,897 4th St, New York City,NY,10001 +188034,AA Batteries (4-pack),1,3.84,2019-04-27 02:00:00,364 Main St, Los Angeles,CA,90001 +188035,AAA Batteries (4-pack),1,2.99,2019-04-04 14:18:00,449 Wilson St, New York City,NY,10001 +188036,USB-C Charging Cable,1,11.95,2019-04-29 07:16:00,68 Lakeview St, Seattle,WA,98101 +188037,27in FHD Monitor,1,149.99,2019-04-30 13:53:00,273 Church St, New York City,NY,10001 +188038,iPhone,1,700.0,2019-04-30 02:43:00,133 Chestnut St, Portland,OR,97035 +188038,Lightning Charging Cable,1,14.95,2019-04-30 02:43:00,133 Chestnut St, Portland,OR,97035 +188039,Apple Airpods Headphones,1,150.0,2019-04-03 12:27:00,759 13th St, Austin,TX,73301 +188040,Lightning Charging Cable,1,14.95,2019-04-07 18:39:00,698 Johnson St, Los Angeles,CA,90001 +188041,iPhone,1,700.0,2019-04-27 12:29:00,395 Washington St, San Francisco,CA,94016 +188042,34in Ultrawide Monitor,1,379.99,2019-04-20 10:17:00,279 Chestnut St, New York City,NY,10001 +188043,Wired Headphones,1,11.99,2019-04-25 22:17:00,249 Lincoln St, San Francisco,CA,94016 +188044,27in 4K Gaming Monitor,1,389.99,2019-04-16 13:27:00,237 Highland St, San Francisco,CA,94016 +188045,Lightning Charging Cable,1,14.95,2019-04-05 04:57:00,521 Willow St, Los Angeles,CA,90001 +188046,Lightning Charging Cable,2,14.95,2019-04-19 15:08:00,662 Walnut St, Dallas,TX,75001 +188047,USB-C Charging Cable,1,11.95,2019-04-19 17:30:00,555 9th St, San Francisco,CA,94016 +188048,AA Batteries (4-pack),1,3.84,2019-04-27 06:20:00,483 Ridge St, Portland,OR,97035 +188049,27in FHD Monitor,1,149.99,2019-04-22 22:40:00,62 Cherry St, San Francisco,CA,94016 +188050,Bose SoundSport Headphones,1,99.99,2019-04-22 11:37:00,918 Dogwood St, Austin,TX,73301 +188051,27in FHD Monitor,1,149.99,2019-04-23 04:39:00,920 Dogwood St, Seattle,WA,98101 +188052,Lightning Charging Cable,1,14.95,2019-04-03 14:03:00,877 Sunset St, Austin,TX,73301 +188053,USB-C Charging Cable,1,11.95,2019-04-10 15:48:00,422 Spruce St, Los Angeles,CA,90001 +188054,Lightning Charging Cable,1,14.95,2019-04-25 12:38:00,698 Sunset St, Portland,OR,97035 +188055,Lightning Charging Cable,1,14.95,2019-04-16 19:11:00,382 Hill St, San Francisco,CA,94016 +188056,AA Batteries (4-pack),1,3.84,2019-04-29 14:27:00,592 13th St, Portland,OR,97035 +188057,Bose SoundSport Headphones,1,99.99,2019-04-11 08:46:00,434 Highland St, Boston,MA,02215 +188058,AAA Batteries (4-pack),1,2.99,2019-04-06 11:46:00,820 Madison St, Los Angeles,CA,90001 +188059,AA Batteries (4-pack),1,3.84,2019-04-20 16:18:00,71 Center St, Los Angeles,CA,90001 +188060,Macbook Pro Laptop,1,1700.0,2019-04-08 08:15:00,521 Pine St, Seattle,WA,98101 +188061,Google Phone,1,600.0,2019-04-18 11:24:00,349 Hickory St, San Francisco,CA,94016 +188062,AAA Batteries (4-pack),1,2.99,2019-04-07 18:20:00,148 Jackson St, Seattle,WA,98101 +188063,AAA Batteries (4-pack),1,2.99,2019-04-25 09:42:00,296 Walnut St, New York City,NY,10001 +188064,Google Phone,1,600.0,2019-04-09 16:26:00,857 Lake St, Los Angeles,CA,90001 +188065,AA Batteries (4-pack),1,3.84,2019-04-20 22:12:00,710 Ridge St, San Francisco,CA,94016 +188066,Macbook Pro Laptop,1,1700.0,2019-04-25 09:20:00,845 Jefferson St, Los Angeles,CA,90001 +188067,Apple Airpods Headphones,1,150.0,2019-04-02 20:07:00,191 Elm St, Austin,TX,73301 +188068,27in 4K Gaming Monitor,1,389.99,2019-04-14 11:19:00,218 Center St, Seattle,WA,98101 +188069,AAA Batteries (4-pack),3,2.99,2019-04-21 14:07:00,472 Chestnut St, Atlanta,GA,30301 +188070,34in Ultrawide Monitor,1,379.99,2019-04-18 11:50:00,998 Madison St, San Francisco,CA,94016 +188070,USB-C Charging Cable,1,11.95,2019-04-18 11:50:00,998 Madison St, San Francisco,CA,94016 +188071,Lightning Charging Cable,1,14.95,2019-04-18 20:10:00,520 Wilson St, Atlanta,GA,30301 +188072,Apple Airpods Headphones,1,150.0,2019-04-12 22:01:00,606 Meadow St, Seattle,WA,98101 +188073,Bose SoundSport Headphones,1,99.99,2019-04-05 20:13:00,277 Center St, Austin,TX,73301 +188074,Lightning Charging Cable,1,14.95,2019-04-25 22:31:00,9 Maple St, Dallas,TX,75001 +188075,Apple Airpods Headphones,1,150.0,2019-04-28 17:21:00,443 Main St, Los Angeles,CA,90001 +188076,AA Batteries (4-pack),2,3.84,2019-04-22 14:23:00,259 Center St, Atlanta,GA,30301 +188077,iPhone,1,700.0,2019-04-15 22:26:00,884 Highland St, San Francisco,CA,94016 +188077,Lightning Charging Cable,1,14.95,2019-04-15 22:26:00,884 Highland St, San Francisco,CA,94016 +188078,AA Batteries (4-pack),1,3.84,2019-04-17 10:07:00,699 11th St, Dallas,TX,75001 +188079,Apple Airpods Headphones,1,150.0,2019-04-13 18:16:00,981 6th St, Seattle,WA,98101 +188080,Lightning Charging Cable,1,14.95,2019-04-19 17:02:00,884 Dogwood St, San Francisco,CA,94016 +188081,AA Batteries (4-pack),1,3.84,2019-04-11 12:32:00,297 Wilson St, San Francisco,CA,94016 +188082,Bose SoundSport Headphones,1,99.99,2019-04-14 14:05:00,373 Walnut St, New York City,NY,10001 +188083,Apple Airpods Headphones,1,150.0,2019-04-25 21:09:00,439 Madison St, Boston,MA,02215 +188084,Lightning Charging Cable,1,14.95,2019-04-20 20:36:00,767 Pine St, Atlanta,GA,30301 +188085,Lightning Charging Cable,1,14.95,2019-04-28 01:46:00,884 Church St, Boston,MA,02215 +188086,Macbook Pro Laptop,1,1700.0,2019-04-24 12:04:00,895 Jackson St, San Francisco,CA,94016 +188087,ThinkPad Laptop,1,999.99,2019-04-01 21:03:00,748 12th St, Seattle,WA,98101 +188087,Macbook Pro Laptop,1,1700.0,2019-04-01 21:03:00,748 12th St, Seattle,WA,98101 +188088,Vareebadd Phone,1,400.0,2019-04-12 12:28:00,339 Main St, San Francisco,CA,94016 +188089,Apple Airpods Headphones,1,150.0,2019-04-25 22:15:00,281 Willow St, San Francisco,CA,94016 +188090,Macbook Pro Laptop,1,1700.0,2019-04-28 11:04:00,194 Center St, Los Angeles,CA,90001 +188091,Apple Airpods Headphones,1,150.0,2019-04-02 15:56:00,838 Cherry St, Dallas,TX,75001 +188092,Wired Headphones,1,11.99,2019-04-10 07:18:00,587 Forest St, San Francisco,CA,94016 +188093,Apple Airpods Headphones,1,150.0,2019-04-10 21:48:00,733 14th St, Boston,MA,02215 +188094,AA Batteries (4-pack),1,3.84,2019-04-05 22:04:00,852 8th St, Austin,TX,73301 +188095,LG Washing Machine,1,600.0,2019-04-05 09:26:00,590 1st St, Boston,MA,02215 +188096,Bose SoundSport Headphones,1,99.99,2019-04-26 01:33:00,286 Cedar St, New York City,NY,10001 +188097,Google Phone,1,600.0,2019-04-17 10:49:00,92 5th St, Atlanta,GA,30301 +188097,USB-C Charging Cable,1,11.95,2019-04-17 10:49:00,92 5th St, Atlanta,GA,30301 +188097,27in FHD Monitor,1,149.99,2019-04-17 10:49:00,92 5th St, Atlanta,GA,30301 +188098,iPhone,1,700.0,2019-04-19 20:49:00,419 Main St, Dallas,TX,75001 +188099,Apple Airpods Headphones,1,150.0,2019-04-01 22:03:00,81 Jefferson St, Seattle,WA,98101 +188100,AA Batteries (4-pack),2,3.84,2019-04-03 15:17:00,217 Church St, Portland,ME,04101 +188101,AA Batteries (4-pack),1,3.84,2019-04-01 09:32:00,431 Elm St, San Francisco,CA,94016 +188102,Lightning Charging Cable,1,14.95,2019-04-04 15:02:00,182 Maple St, Portland,OR,97035 +188103,20in Monitor,1,109.99,2019-04-05 11:28:00,522 Elm St, Dallas,TX,75001 +188104,ThinkPad Laptop,1,999.99,2019-04-23 11:03:00,148 13th St, San Francisco,CA,94016 +188105,20in Monitor,1,109.99,2019-04-23 17:07:00,403 North St, Seattle,WA,98101 +188106,USB-C Charging Cable,1,11.95,2019-04-28 23:50:00,244 6th St, Austin,TX,73301 +188107,Apple Airpods Headphones,1,150.0,2019-04-02 18:54:00,763 9th St, Atlanta,GA,30301 +188107,Flatscreen TV,1,300.0,2019-04-02 18:54:00,763 9th St, Atlanta,GA,30301 +188108,27in FHD Monitor,1,149.99,2019-04-24 15:04:00,510 1st St, Austin,TX,73301 +188109,27in FHD Monitor,1,149.99,2019-04-18 16:05:00,583 Hickory St, Dallas,TX,75001 +188110,Wired Headphones,1,11.99,2019-04-10 17:05:00,94 11th St, Los Angeles,CA,90001 +188111,27in FHD Monitor,1,149.99,2019-04-08 15:03:00,896 Lakeview St, Los Angeles,CA,90001 +188112,Google Phone,1,600.0,2019-04-26 20:05:00,839 Lakeview St, Los Angeles,CA,90001 +188113,AAA Batteries (4-pack),1,2.99,2019-04-29 22:13:00,977 Cherry St, Los Angeles,CA,90001 +188113,USB-C Charging Cable,1,11.95,2019-04-29 22:13:00,977 Cherry St, Los Angeles,CA,90001 +188114,AA Batteries (4-pack),1,3.84,2019-04-23 22:16:00,242 Meadow St, Seattle,WA,98101 +188115,AA Batteries (4-pack),1,3.84,2019-04-04 19:42:00,274 West St, San Francisco,CA,94016 +188116,Flatscreen TV,1,300.0,2019-04-23 05:50:00,664 5th St, Los Angeles,CA,90001 +188117,Flatscreen TV,1,300.0,2019-04-12 20:50:00,599 Madison St, Atlanta,GA,30301 +188118,USB-C Charging Cable,1,11.95,2019-04-13 17:18:00,796 7th St, Los Angeles,CA,90001 +188119,Flatscreen TV,1,300.0,2019-04-09 08:06:00,668 Lakeview St, Seattle,WA,98101 +188120,AAA Batteries (4-pack),3,2.99,2019-04-19 09:17:00,651 Hill St, Seattle,WA,98101 +188121,Flatscreen TV,1,300.0,2019-04-10 07:13:00,457 Lake St, Boston,MA,02215 +188122,iPhone,1,700.0,2019-04-13 19:03:00,352 Ridge St, Los Angeles,CA,90001 +188122,Lightning Charging Cable,1,14.95,2019-04-13 19:03:00,352 Ridge St, Los Angeles,CA,90001 +188123,Lightning Charging Cable,1,14.95,2019-04-05 13:23:00,710 Adams St, Los Angeles,CA,90001 +188124,20in Monitor,1,109.99,2019-04-23 13:44:00,773 Main St, Portland,ME,04101 +188125,AAA Batteries (4-pack),1,2.99,2019-04-19 10:30:00,581 North St, New York City,NY,10001 +188126,AAA Batteries (4-pack),1,2.99,2019-04-19 22:52:00,540 Madison St, Seattle,WA,98101 +188127,Google Phone,1,600.0,2019-04-17 08:32:00,49 Lincoln St, San Francisco,CA,94016 +188128,USB-C Charging Cable,1,11.95,2019-04-20 00:30:00,648 Dogwood St, Seattle,WA,98101 +188129,Macbook Pro Laptop,1,1700.0,2019-04-05 04:35:00,65 9th St, Atlanta,GA,30301 +188130,Bose SoundSport Headphones,1,99.99,2019-04-12 23:06:00,376 Ridge St, Atlanta,GA,30301 +188131,Wired Headphones,1,11.99,2019-04-08 14:51:00,415 Cedar St, Seattle,WA,98101 +188132,Apple Airpods Headphones,1,150.0,2019-04-21 20:03:00,981 10th St, Seattle,WA,98101 +188133,USB-C Charging Cable,1,11.95,2019-04-17 12:29:00,682 4th St, New York City,NY,10001 +188134,Flatscreen TV,1,300.0,2019-04-14 16:24:00,319 Spruce St, San Francisco,CA,94016 +188135,Wired Headphones,1,11.99,2019-04-16 12:43:00,781 13th St, Los Angeles,CA,90001 +188136,Bose SoundSport Headphones,1,99.99,2019-04-05 19:13:00,684 Main St, Boston,MA,02215 +188137,Lightning Charging Cable,1,14.95,2019-04-02 20:19:00,762 South St, San Francisco,CA,94016 +188138,Wired Headphones,2,11.99,2019-04-18 18:42:00,931 5th St, San Francisco,CA,94016 +188139,Wired Headphones,1,11.99,2019-04-05 10:40:00,529 4th St, Portland,ME,04101 +188140,27in 4K Gaming Monitor,1,389.99,2019-04-23 10:08:00,837 Lake St, San Francisco,CA,94016 +188141,AAA Batteries (4-pack),1,2.99,2019-04-16 19:32:00,138 7th St, Los Angeles,CA,90001 +188142,ThinkPad Laptop,1,999.99,2019-04-13 19:01:00,127 Main St, Los Angeles,CA,90001 +188142,AA Batteries (4-pack),2,3.84,2019-04-13 19:01:00,127 Main St, Los Angeles,CA,90001 +188143,USB-C Charging Cable,1,11.95,2019-04-24 14:01:00,193 10th St, Portland,OR,97035 +188144,Wired Headphones,2,11.99,2019-04-22 10:47:00,728 West St, New York City,NY,10001 +188145,AA Batteries (4-pack),1,3.84,2019-04-29 21:53:00,152 Maple St, San Francisco,CA,94016 +188146,USB-C Charging Cable,1,11.95,2019-04-24 09:06:00,280 Church St, Boston,MA,02215 +188147,Lightning Charging Cable,1,14.95,2019-04-20 17:13:00,844 Adams St, New York City,NY,10001 +188148,AAA Batteries (4-pack),2,2.99,2019-04-21 20:31:00,539 Willow St, Atlanta,GA,30301 +188149,27in 4K Gaming Monitor,1,389.99,2019-04-29 22:31:00,301 Hill St, San Francisco,CA,94016 +188150,Wired Headphones,1,11.99,2019-04-24 19:51:00,752 10th St, San Francisco,CA,94016 +188151,AAA Batteries (4-pack),1,2.99,2019-04-06 07:31:00,225 11th St, Austin,TX,73301 +188152,AA Batteries (4-pack),1,3.84,2019-04-20 00:10:00,774 Meadow St, Dallas,TX,75001 +188153,AA Batteries (4-pack),2,3.84,2019-04-23 22:57:00,777 Cedar St, Dallas,TX,75001 +188154,Wired Headphones,1,11.99,2019-04-29 05:13:00,551 Jefferson St, New York City,NY,10001 +188155,34in Ultrawide Monitor,1,379.99,2019-04-13 10:50:00,869 9th St, San Francisco,CA,94016 +188156,AAA Batteries (4-pack),1,2.99,2019-04-18 11:58:00,649 Meadow St, Los Angeles,CA,90001 +188157,USB-C Charging Cable,1,11.95,2019-04-13 12:37:00,936 12th St, Los Angeles,CA,90001 +188158,Lightning Charging Cable,1,14.95,2019-04-08 00:57:00,453 West St, San Francisco,CA,94016 +188159,USB-C Charging Cable,1,11.95,2019-04-28 20:22:00,935 Washington St, New York City,NY,10001 +188160,Flatscreen TV,1,300.0,2019-04-25 20:56:00,533 Wilson St, Dallas,TX,75001 +188161,Lightning Charging Cable,1,14.95,2019-04-03 17:25:00,344 Pine St, San Francisco,CA,94016 +188162,iPhone,1,700.0,2019-04-16 14:38:00,368 5th St, Seattle,WA,98101 +188163,AAA Batteries (4-pack),1,2.99,2019-04-15 14:02:00,38 Forest St, San Francisco,CA,94016 +188164,Apple Airpods Headphones,1,150.0,2019-04-28 10:58:00,317 Willow St, San Francisco,CA,94016 +188165,Lightning Charging Cable,1,14.95,2019-04-16 18:36:00,197 Hickory St, Atlanta,GA,30301 +188166,Lightning Charging Cable,1,14.95,2019-04-01 12:06:00,447 Wilson St, New York City,NY,10001 +188167,USB-C Charging Cable,2,11.95,2019-04-10 07:11:00,282 Cedar St, Atlanta,GA,30301 +188168,AA Batteries (4-pack),2,3.84,2019-04-03 12:33:00,775 Maple St, Los Angeles,CA,90001 +188169,AA Batteries (4-pack),2,3.84,2019-04-10 18:52:00,281 Elm St, New York City,NY,10001 +188170,Macbook Pro Laptop,1,1700.0,2019-04-20 16:08:00,461 Elm St, New York City,NY,10001 +188171,AAA Batteries (4-pack),3,2.99,2019-04-17 08:59:00,965 Chestnut St, Seattle,WA,98101 +188172,AAA Batteries (4-pack),2,2.99,2019-04-22 18:11:00,476 North St, Seattle,WA,98101 +188173,USB-C Charging Cable,1,11.95,2019-04-02 13:07:00,85 Lincoln St, San Francisco,CA,94016 +188174,Lightning Charging Cable,1,14.95,2019-04-21 09:31:00,980 Walnut St, Seattle,WA,98101 +188175,AA Batteries (4-pack),1,3.84,2019-04-03 16:44:00,586 Johnson St, Portland,ME,04101 +188176,AA Batteries (4-pack),1,3.84,2019-04-30 08:44:00,504 5th St, San Francisco,CA,94016 +188177,Apple Airpods Headphones,1,150.0,2019-04-26 20:02:00,751 1st St, San Francisco,CA,94016 +188178,Apple Airpods Headphones,1,150.0,2019-04-29 16:08:00,470 Highland St, Dallas,TX,75001 +188179,34in Ultrawide Monitor,1,379.99,2019-04-09 15:59:00,940 5th St, Austin,TX,73301 +188180,27in FHD Monitor,1,149.99,2019-04-26 00:17:00,637 Maple St, Los Angeles,CA,90001 +188181,Apple Airpods Headphones,1,150.0,2019-04-19 13:22:00,530 Park St, New York City,NY,10001 +188182,27in 4K Gaming Monitor,1,389.99,2019-04-02 12:04:00,548 Forest St, Boston,MA,02215 +188183,Bose SoundSport Headphones,1,99.99,2019-04-01 23:46:00,345 Washington St, Atlanta,GA,30301 +188184,Lightning Charging Cable,1,14.95,2019-04-29 17:04:00,769 Willow St, New York City,NY,10001 +188185,Lightning Charging Cable,2,14.95,2019-04-02 10:09:00,982 Sunset St, New York City,NY,10001 +188186,Wired Headphones,1,11.99,2019-04-03 11:16:00,20 12th St, New York City,NY,10001 +188187,ThinkPad Laptop,1,999.99,2019-04-08 11:55:00,611 12th St, San Francisco,CA,94016 +188188,27in FHD Monitor,1,149.99,2019-04-02 14:45:00,22 9th St, Portland,OR,97035 +188189,Lightning Charging Cable,1,14.95,2019-04-06 15:41:00,228 2nd St, New York City,NY,10001 +188190,AAA Batteries (4-pack),2,2.99,2019-04-23 10:09:00,967 14th St, Los Angeles,CA,90001 +188191,Bose SoundSport Headphones,1,99.99,2019-04-27 11:59:00,643 13th St, San Francisco,CA,94016 +188192,AAA Batteries (4-pack),1,2.99,2019-04-02 15:48:00,553 Forest St, Austin,TX,73301 +188193,AAA Batteries (4-pack),1,2.99,2019-04-11 10:37:00,648 Forest St, San Francisco,CA,94016 +188194,Bose SoundSport Headphones,1,99.99,2019-04-11 19:14:00,412 1st St, Atlanta,GA,30301 +188195,Apple Airpods Headphones,1,150.0,2019-04-25 12:34:00,437 Madison St, Boston,MA,02215 +188196,Wired Headphones,1,11.99,2019-04-05 13:11:00,441 8th St, San Francisco,CA,94016 +188197,Wired Headphones,1,11.99,2019-04-21 22:45:00,284 Meadow St, New York City,NY,10001 +188198,AA Batteries (4-pack),1,3.84,2019-04-30 13:08:00,349 14th St, Los Angeles,CA,90001 +188199,Lightning Charging Cable,1,14.95,2019-04-02 13:17:00,558 12th St, Los Angeles,CA,90001 +188200,AAA Batteries (4-pack),1,2.99,2019-04-29 19:54:00,487 4th St, Boston,MA,02215 +188201,Bose SoundSport Headphones,1,99.99,2019-04-24 22:42:00,768 Jefferson St, San Francisco,CA,94016 +188202,USB-C Charging Cable,1,11.95,2019-04-05 07:46:00,690 Park St, Boston,MA,02215 +188203,Lightning Charging Cable,1,14.95,2019-04-08 14:34:00,386 Chestnut St, Boston,MA,02215 +188204,Wired Headphones,1,11.99,2019-04-14 13:27:00,746 Johnson St, Atlanta,GA,30301 +188205,Wired Headphones,1,11.99,2019-04-06 00:30:00,234 Madison St, New York City,NY,10001 +188206,AAA Batteries (4-pack),1,2.99,2019-04-27 21:45:00,114 Sunset St, Atlanta,GA,30301 +188207,Macbook Pro Laptop,1,1700.0,2019-04-27 22:19:00,156 Ridge St, Boston,MA,02215 +188208,AA Batteries (4-pack),1,3.84,2019-04-11 21:53:00,775 9th St, Atlanta,GA,30301 +188209,USB-C Charging Cable,1,11.95,2019-04-02 18:46:00,319 Walnut St, Portland,ME,04101 +188210,27in 4K Gaming Monitor,1,389.99,2019-04-15 23:40:00,994 Sunset St, New York City,NY,10001 +188211,Apple Airpods Headphones,1,150.0,2019-04-04 16:34:00,643 4th St, Dallas,TX,75001 +188212,USB-C Charging Cable,1,11.95,2019-04-11 11:16:00,451 Willow St, San Francisco,CA,94016 +188213,Wired Headphones,1,11.99,2019-04-10 15:53:00,381 Center St, San Francisco,CA,94016 +188214,AA Batteries (4-pack),2,3.84,2019-04-11 16:34:00,86 Park St, Los Angeles,CA,90001 +188215,AAA Batteries (4-pack),1,2.99,2019-04-03 08:16:00,706 1st St, Dallas,TX,75001 +188216,Lightning Charging Cable,1,14.95,2019-04-04 14:51:00,348 14th St, Dallas,TX,75001 +188217,iPhone,1,700.0,2019-04-20 12:28:00,218 Walnut St, Portland,OR,97035 +188218,Wired Headphones,1,11.99,2019-04-05 06:46:00,204 Dogwood St, Seattle,WA,98101 +188219,Google Phone,1,600.0,2019-04-24 07:54:00,671 Ridge St, Boston,MA,02215 +188220,AAA Batteries (4-pack),1,2.99,2019-04-07 13:28:00,41 South St, Los Angeles,CA,90001 +188221,AAA Batteries (4-pack),1,2.99,2019-04-09 13:43:00,140 River St, New York City,NY,10001 +188222,AAA Batteries (4-pack),1,2.99,2019-04-06 09:25:00,446 Dogwood St, Dallas,TX,75001 +188222,AA Batteries (4-pack),1,3.84,2019-04-06 09:25:00,446 Dogwood St, Dallas,TX,75001 +188223,Macbook Pro Laptop,1,1700.0,2019-04-26 10:49:00,890 Washington St, Boston,MA,02215 +188224,AAA Batteries (4-pack),1,2.99,2019-04-28 21:36:00,834 Pine St, Atlanta,GA,30301 +188225,AA Batteries (4-pack),3,3.84,2019-04-03 10:28:00,309 8th St, Dallas,TX,75001 +188226,ThinkPad Laptop,1,999.99,2019-04-10 18:05:00,748 Walnut St, New York City,NY,10001 +188227,Bose SoundSport Headphones,1,99.99,2019-04-24 22:55:00,694 9th St, Portland,OR,97035 +188228,34in Ultrawide Monitor,1,379.99,2019-04-06 20:00:00,832 Chestnut St, Seattle,WA,98101 +188229,34in Ultrawide Monitor,1,379.99,2019-04-09 16:31:00,943 Lincoln St, Seattle,WA,98101 +188230,Google Phone,1,600.0,2019-04-01 10:05:00,595 Park St, Los Angeles,CA,90001 +188231,USB-C Charging Cable,1,11.95,2019-04-30 15:35:00,632 Chestnut St, New York City,NY,10001 +188232,27in 4K Gaming Monitor,1,389.99,2019-04-04 22:45:00,72 1st St, Portland,OR,97035 +188233,Bose SoundSport Headphones,1,99.99,2019-04-23 22:06:00,394 5th St, Atlanta,GA,30301 +188234,Apple Airpods Headphones,1,150.0,2019-04-02 20:08:00,755 Spruce St, Seattle,WA,98101 +188235,AAA Batteries (4-pack),2,2.99,2019-04-25 00:24:00,986 Park St, San Francisco,CA,94016 +188236,Wired Headphones,1,11.99,2019-04-19 11:29:00,573 6th St, Dallas,TX,75001 +188237,Wired Headphones,1,11.99,2019-04-13 20:13:00,464 Center St, Los Angeles,CA,90001 +188238,34in Ultrawide Monitor,1,379.99,2019-04-07 08:32:00,232 Walnut St, Portland,ME,04101 +188239,Google Phone,1,600.0,2019-04-22 13:17:00,962 Sunset St, San Francisco,CA,94016 +188240,Wired Headphones,1,11.99,2019-04-24 16:08:00,608 6th St, San Francisco,CA,94016 +188241,AAA Batteries (4-pack),3,2.99,2019-04-01 13:10:00,692 Dogwood St, Atlanta,GA,30301 +188242,Google Phone,1,600.0,2019-04-23 19:03:00,93 Jefferson St, Dallas,TX,75001 +188243,Lightning Charging Cable,1,14.95,2019-04-05 22:24:00,650 13th St, Seattle,WA,98101 +188244,Bose SoundSport Headphones,1,99.99,2019-04-03 16:23:00,357 Cedar St, New York City,NY,10001 +188245,Lightning Charging Cable,1,14.95,2019-04-17 09:36:00,780 12th St, Atlanta,GA,30301 +188246,AA Batteries (4-pack),1,3.84,2019-04-07 14:11:00,670 Pine St, Boston,MA,02215 +188247,Wired Headphones,1,11.99,2019-04-24 00:46:00,510 Dogwood St, Austin,TX,73301 +188248,USB-C Charging Cable,1,11.95,2019-04-23 17:01:00,393 Chestnut St, Los Angeles,CA,90001 +188249,AAA Batteries (4-pack),2,2.99,2019-04-18 16:31:00,14 South St, Los Angeles,CA,90001 +188250,AA Batteries (4-pack),1,3.84,2019-04-16 10:31:00,695 Willow St, Boston,MA,02215 +188251,AA Batteries (4-pack),1,3.84,2019-04-04 18:48:00,412 13th St, San Francisco,CA,94016 +188252,Wired Headphones,1,11.99,2019-04-01 20:00:00,554 Park St, New York City,NY,10001 +188253,Google Phone,1,600.0,2019-04-11 12:23:00,751 2nd St, Boston,MA,02215 +188254,AAA Batteries (4-pack),3,2.99,2019-04-02 23:39:00,10 Washington St, Los Angeles,CA,90001 +188255,Lightning Charging Cable,1,14.95,2019-04-27 09:52:00,149 2nd St, San Francisco,CA,94016 +188256,Wired Headphones,3,11.99,2019-04-05 14:12:00,733 Jackson St, Dallas,TX,75001 +188257,Apple Airpods Headphones,1,150.0,2019-04-28 09:28:00,928 6th St, Portland,ME,04101 +188258,Wired Headphones,1,11.99,2019-04-02 10:24:00,210 Lincoln St, Los Angeles,CA,90001 +188259,Lightning Charging Cable,1,14.95,2019-04-28 14:09:00,131 6th St, Dallas,TX,75001 +188260,Lightning Charging Cable,1,14.95,2019-04-05 13:14:00,610 6th St, San Francisco,CA,94016 +188261,20in Monitor,1,109.99,2019-04-11 19:05:00,1 Dogwood St, Dallas,TX,75001 +188262,AAA Batteries (4-pack),3,2.99,2019-04-22 19:43:00,703 Wilson St, Atlanta,GA,30301 +188263,Google Phone,1,600.0,2019-04-28 09:51:00,814 Jackson St, Los Angeles,CA,90001 +188264,Lightning Charging Cable,1,14.95,2019-04-30 21:21:00,962 Madison St, Austin,TX,73301 +188265,iPhone,1,700.0,2019-04-15 14:45:00,594 Church St, New York City,NY,10001 +188266,Google Phone,1,600.0,2019-04-02 08:51:00,877 Church St, San Francisco,CA,94016 +188267,AA Batteries (4-pack),1,3.84,2019-04-08 11:35:00,757 13th St, Los Angeles,CA,90001 +188268,Vareebadd Phone,1,400.0,2019-04-15 15:51:00,115 Forest St, Los Angeles,CA,90001 +188269,27in FHD Monitor,1,149.99,2019-04-01 10:17:00,518 Pine St, Dallas,TX,75001 +188269,iPhone,1,700.0,2019-04-01 10:17:00,518 Pine St, Dallas,TX,75001 +188270,Lightning Charging Cable,1,14.95,2019-04-19 12:55:00,830 Lake St, San Francisco,CA,94016 +188271,USB-C Charging Cable,1,11.95,2019-04-11 15:42:00,805 Jefferson St, Los Angeles,CA,90001 +188272,Flatscreen TV,1,300.0,2019-04-24 19:34:00,19 Willow St, Los Angeles,CA,90001 +188273,iPhone,1,700.0,2019-04-17 10:47:00,357 Jackson St, Boston,MA,02215 +188274,Lightning Charging Cable,1,14.95,2019-04-12 21:35:00,390 Jefferson St, Portland,OR,97035 +188275,Macbook Pro Laptop,1,1700.0,2019-04-20 15:05:00,353 Jackson St, New York City,NY,10001 +188276,Wired Headphones,1,11.99,2019-04-24 01:36:00,428 13th St, Atlanta,GA,30301 +188277,Apple Airpods Headphones,1,150.0,2019-04-26 10:44:00,18 Hill St, San Francisco,CA,94016 +188278,USB-C Charging Cable,1,11.95,2019-04-14 20:53:00,204 Maple St, Seattle,WA,98101 +188279,Wired Headphones,1,11.99,2019-04-19 19:16:00,566 Dogwood St, Atlanta,GA,30301 +188280,27in FHD Monitor,1,149.99,2019-04-13 00:53:00,987 14th St, Portland,OR,97035 +188281,Apple Airpods Headphones,1,150.0,2019-04-23 22:30:00,974 11th St, Seattle,WA,98101 +188282,USB-C Charging Cable,1,11.95,2019-04-30 17:28:00,718 Washington St, Dallas,TX,75001 +188283,Apple Airpods Headphones,1,150.0,2019-04-18 16:55:00,220 Ridge St, Austin,TX,73301 +188284,27in FHD Monitor,1,149.99,2019-04-18 09:27:00,10 Johnson St, Los Angeles,CA,90001 +188285,34in Ultrawide Monitor,1,379.99,2019-04-04 17:45:00,177 Chestnut St, Los Angeles,CA,90001 +188286,34in Ultrawide Monitor,1,379.99,2019-04-24 14:41:00,847 5th St, Boston,MA,02215 +188287,Apple Airpods Headphones,1,150.0,2019-04-04 18:27:00,133 Hickory St, Boston,MA,02215 +188288,Bose SoundSport Headphones,1,99.99,2019-04-25 17:28:00,250 Adams St, San Francisco,CA,94016 +188289,Apple Airpods Headphones,1,150.0,2019-04-27 11:48:00,391 Lake St, Boston,MA,02215 +188290,USB-C Charging Cable,1,11.95,2019-04-23 11:37:00,105 Ridge St, Atlanta,GA,30301 +188291,AA Batteries (4-pack),1,3.84,2019-04-07 08:26:00,82 Cherry St, Boston,MA,02215 +188292,AAA Batteries (4-pack),1,2.99,2019-04-16 13:54:00,481 Park St, San Francisco,CA,94016 +188293,USB-C Charging Cable,2,11.95,2019-04-19 21:30:00,942 10th St, Portland,OR,97035 +188294,AAA Batteries (4-pack),2,2.99,2019-04-13 08:49:00,580 Lincoln St, New York City,NY,10001 +188295,USB-C Charging Cable,1,11.95,2019-04-13 16:50:00,186 Jefferson St, Portland,OR,97035 +188296,Bose SoundSport Headphones,1,99.99,2019-04-03 18:00:00,331 Cherry St, San Francisco,CA,94016 +188297,27in FHD Monitor,1,149.99,2019-04-19 01:06:00,619 South St, Los Angeles,CA,90001 +188298,Lightning Charging Cable,2,14.95,2019-04-22 21:47:00,217 Pine St, Austin,TX,73301 +188299,Google Phone,1,600.0,2019-04-13 21:24:00,198 Adams St, Boston,MA,02215 +188300,27in FHD Monitor,1,149.99,2019-04-28 06:03:00,738 Cedar St, San Francisco,CA,94016 +188301,ThinkPad Laptop,1,999.99,2019-04-18 14:42:00,418 West St, Los Angeles,CA,90001 +188302,USB-C Charging Cable,1,11.95,2019-04-09 18:25:00,68 Elm St, New York City,NY,10001 +188303,iPhone,1,700.0,2019-04-25 00:34:00,211 10th St, San Francisco,CA,94016 +188303,Apple Airpods Headphones,1,150.0,2019-04-25 00:34:00,211 10th St, San Francisco,CA,94016 +188304,Bose SoundSport Headphones,1,99.99,2019-04-26 10:37:00,217 Walnut St, New York City,NY,10001 +188305,AA Batteries (4-pack),1,3.84,2019-04-28 12:12:00,200 1st St, Los Angeles,CA,90001 +188306,Bose SoundSport Headphones,1,99.99,2019-04-17 12:39:00,111 Lincoln St, San Francisco,CA,94016 +188307,20in Monitor,1,109.99,2019-04-26 16:07:00,633 Forest St, San Francisco,CA,94016 +188308,AAA Batteries (4-pack),4,2.99,2019-04-30 17:03:00,470 Meadow St, San Francisco,CA,94016 +188309,AA Batteries (4-pack),1,3.84,2019-04-22 19:17:00,879 Cherry St, Atlanta,GA,30301 +188310,34in Ultrawide Monitor,1,379.99,2019-04-11 07:21:00,462 North St, Dallas,TX,75001 +188311,27in FHD Monitor,1,149.99,2019-04-10 10:13:00,430 Jefferson St, Los Angeles,CA,90001 +188312,AA Batteries (4-pack),2,3.84,2019-04-30 09:34:00,292 Walnut St, Boston,MA,02215 +188313,Lightning Charging Cable,1,14.95,2019-04-23 09:58:00,979 Hickory St, Atlanta,GA,30301 +188314,USB-C Charging Cable,1,11.95,2019-04-25 10:03:00,8 Lakeview St, San Francisco,CA,94016 +188315,Apple Airpods Headphones,1,150.0,2019-04-17 23:04:00,302 2nd St, Boston,MA,02215 +188316,Apple Airpods Headphones,1,150.0,2019-04-09 00:47:00,392 Walnut St, Seattle,WA,98101 +188317,Lightning Charging Cable,1,14.95,2019-04-11 18:04:00,917 Madison St, San Francisco,CA,94016 +188318,Apple Airpods Headphones,1,150.0,2019-04-02 16:47:00,443 Sunset St, Dallas,TX,75001 +188319,AAA Batteries (4-pack),1,2.99,2019-04-04 22:25:00,314 Dogwood St, Dallas,TX,75001 +188320,USB-C Charging Cable,1,11.95,2019-04-18 15:23:00,266 Park St, San Francisco,CA,94016 +188321,Wired Headphones,1,11.99,2019-04-30 10:22:00,365 Dogwood St, Seattle,WA,98101 +188322,USB-C Charging Cable,1,11.95,2019-04-03 08:01:00,310 13th St, New York City,NY,10001 +188323,27in FHD Monitor,1,149.99,2019-04-09 15:16:00,206 Jackson St, Los Angeles,CA,90001 +188324,27in 4K Gaming Monitor,1,389.99,2019-04-07 10:12:00,822 9th St, Atlanta,GA,30301 +188325,Lightning Charging Cable,1,14.95,2019-04-12 10:06:00,319 Elm St, Atlanta,GA,30301 +188326,Bose SoundSport Headphones,1,99.99,2019-04-21 20:20:00,225 Park St, San Francisco,CA,94016 +188326,Lightning Charging Cable,1,14.95,2019-04-21 20:20:00,225 Park St, San Francisco,CA,94016 +188327,Macbook Pro Laptop,1,1700.0,2019-04-17 17:17:00,660 Chestnut St, Los Angeles,CA,90001 +188328,Google Phone,1,600.0,2019-04-14 23:56:00,613 Lincoln St, Austin,TX,73301 +188329,27in 4K Gaming Monitor,1,389.99,2019-04-09 15:04:00,177 Lake St, Seattle,WA,98101 +188330,Bose SoundSport Headphones,1,99.99,2019-04-27 09:24:00,286 Elm St, Seattle,WA,98101 +188331,USB-C Charging Cable,1,11.95,2019-04-25 18:16:00,324 Dogwood St, Portland,OR,97035 +188332,Vareebadd Phone,1,400.0,2019-04-16 19:08:00,346 7th St, New York City,NY,10001 +188332,USB-C Charging Cable,1,11.95,2019-04-16 19:08:00,346 7th St, New York City,NY,10001 +188333,Wired Headphones,1,11.99,2019-04-06 19:39:00,374 Jefferson St, Atlanta,GA,30301 +188334,AAA Batteries (4-pack),2,2.99,2019-04-23 01:23:00,875 Lincoln St, Los Angeles,CA,90001 +188335,Apple Airpods Headphones,1,150.0,2019-04-05 23:03:00,407 Highland St, Seattle,WA,98101 +188336,USB-C Charging Cable,1,11.95,2019-04-18 02:12:00,697 Maple St, San Francisco,CA,94016 +188337,AA Batteries (4-pack),1,3.84,2019-04-27 13:56:00,34 6th St, Seattle,WA,98101 +188338,Lightning Charging Cable,1,14.95,2019-04-04 13:37:00,12 Ridge St, San Francisco,CA,94016 +188339,ThinkPad Laptop,1,999.99,2019-04-06 22:35:00,560 12th St, Atlanta,GA,30301 +188340,Bose SoundSport Headphones,1,99.99,2019-04-12 23:17:00,386 Center St, Boston,MA,02215 +188340,Wired Headphones,1,11.99,2019-04-12 23:17:00,386 Center St, Boston,MA,02215 +188341,27in FHD Monitor,1,149.99,2019-04-03 18:54:00,836 1st St, Los Angeles,CA,90001 +188342,Bose SoundSport Headphones,1,99.99,2019-04-26 12:45:00,466 7th St, Boston,MA,02215 +188343,iPhone,1,700.0,2019-04-22 18:46:00,172 5th St, Boston,MA,02215 +188343,Lightning Charging Cable,1,14.95,2019-04-22 18:46:00,172 5th St, Boston,MA,02215 +188344,27in 4K Gaming Monitor,1,389.99,2019-04-29 23:46:00,72 Jackson St, Portland,OR,97035 +188345,iPhone,1,700.0,2019-04-03 22:37:00,590 14th St, San Francisco,CA,94016 +188345,Lightning Charging Cable,1,14.95,2019-04-03 22:37:00,590 14th St, San Francisco,CA,94016 +188346,AA Batteries (4-pack),1,3.84,2019-04-03 23:08:00,633 Main St, New York City,NY,10001 +188347,Apple Airpods Headphones,1,150.0,2019-04-05 14:00:00,871 10th St, Los Angeles,CA,90001 +188348,Bose SoundSport Headphones,1,99.99,2019-04-17 11:08:00,169 7th St, San Francisco,CA,94016 +188349,Lightning Charging Cable,1,14.95,2019-04-03 16:33:00,50 4th St, San Francisco,CA,94016 +188350,Apple Airpods Headphones,1,150.0,2019-04-25 16:40:00,724 10th St, Boston,MA,02215 +188351,AAA Batteries (4-pack),1,2.99,2019-04-15 07:05:00,584 North St, Dallas,TX,75001 +188352,Lightning Charging Cable,1,14.95,2019-04-23 11:17:00,20 7th St, San Francisco,CA,94016 +188353,27in FHD Monitor,1,149.99,2019-04-24 07:08:00,36 Forest St, San Francisco,CA,94016 +188354,Wired Headphones,1,11.99,2019-04-28 12:17:00,54 River St, Boston,MA,02215 +188355,Lightning Charging Cable,1,14.95,2019-04-27 11:39:00,968 13th St, Boston,MA,02215 +188356,34in Ultrawide Monitor,1,379.99,2019-04-18 23:38:00,659 Hill St, Los Angeles,CA,90001 +188357,USB-C Charging Cable,1,11.95,2019-04-30 19:56:00,95 Highland St, Seattle,WA,98101 +188358,Wired Headphones,1,11.99,2019-04-22 19:15:00,404 South St, Boston,MA,02215 +188359,Apple Airpods Headphones,1,150.0,2019-04-23 07:18:00,899 Dogwood St, Portland,OR,97035 +188360,27in 4K Gaming Monitor,1,389.99,2019-04-25 23:48:00,453 Wilson St, Seattle,WA,98101 +188361,Lightning Charging Cable,1,14.95,2019-04-18 09:05:00,724 Forest St, San Francisco,CA,94016 +188362,AA Batteries (4-pack),1,3.84,2019-04-06 22:35:00,392 Madison St, New York City,NY,10001 +188363,Wired Headphones,1,11.99,2019-04-23 09:15:00,332 Meadow St, Dallas,TX,75001 +188364,AA Batteries (4-pack),1,3.84,2019-04-13 14:23:00,28 River St, New York City,NY,10001 +188365,Lightning Charging Cable,1,14.95,2019-04-01 10:51:00,47 Hill St, San Francisco,CA,94016 +188366,Apple Airpods Headphones,1,150.0,2019-04-06 17:27:00,821 13th St, Los Angeles,CA,90001 +188367,Bose SoundSport Headphones,1,99.99,2019-04-11 09:09:00,723 Main St, New York City,NY,10001 +188368,34in Ultrawide Monitor,1,379.99,2019-04-25 23:45:00,406 Park St, New York City,NY,10001 +188369,Google Phone,1,600.0,2019-04-18 22:01:00,346 Hill St, San Francisco,CA,94016 +188370,34in Ultrawide Monitor,1,379.99,2019-04-16 21:09:00,491 Johnson St, San Francisco,CA,94016 +188371,AAA Batteries (4-pack),1,2.99,2019-04-21 13:45:00,885 6th St, Dallas,TX,75001 +188372,AA Batteries (4-pack),2,3.84,2019-04-11 13:15:00,301 7th St, San Francisco,CA,94016 +188373,USB-C Charging Cable,2,11.95,2019-04-24 21:49:00,198 Washington St, San Francisco,CA,94016 +188374,Google Phone,1,600.0,2019-04-25 23:53:00,787 Jackson St, Seattle,WA,98101 +188374,USB-C Charging Cable,1,11.95,2019-04-25 23:53:00,787 Jackson St, Seattle,WA,98101 +188375,Lightning Charging Cable,1,14.95,2019-04-24 15:32:00,570 Highland St, San Francisco,CA,94016 +188376,Wired Headphones,1,11.99,2019-04-07 04:24:00,899 Meadow St, San Francisco,CA,94016 +188377,Flatscreen TV,1,300.0,2019-04-22 08:23:00,197 5th St, Seattle,WA,98101 +188378,AAA Batteries (4-pack),1,2.99,2019-04-05 14:30:00,818 1st St, Los Angeles,CA,90001 +188379,AAA Batteries (4-pack),1,2.99,2019-04-15 21:05:00,846 8th St, Los Angeles,CA,90001 +188380,Bose SoundSport Headphones,1,99.99,2019-04-14 18:48:00,344 2nd St, Los Angeles,CA,90001 +188380,34in Ultrawide Monitor,1,379.99,2019-04-14 18:48:00,344 2nd St, Los Angeles,CA,90001 +188381,Wired Headphones,1,11.99,2019-04-14 16:53:00,245 West St, Los Angeles,CA,90001 +188382,Wired Headphones,1,11.99,2019-04-12 20:15:00,686 Hickory St, San Francisco,CA,94016 +188383,Bose SoundSport Headphones,1,99.99,2019-04-03 15:09:00,853 Willow St, Los Angeles,CA,90001 +188384,Apple Airpods Headphones,1,150.0,2019-04-21 22:51:00,476 Church St, Boston,MA,02215 +188385,Lightning Charging Cable,1,14.95,2019-04-06 15:06:00,977 8th St, Los Angeles,CA,90001 +188386,27in 4K Gaming Monitor,1,389.99,2019-04-02 07:49:00,419 Willow St, Los Angeles,CA,90001 +188387,LG Dryer,1,600.0,2019-04-04 14:43:00,494 Hill St, San Francisco,CA,94016 +188388,Flatscreen TV,1,300.0,2019-04-09 06:03:00,773 River St, Los Angeles,CA,90001 +188389,Wired Headphones,1,11.99,2019-04-07 13:35:00,3 Hickory St, Austin,TX,73301 +188390,Apple Airpods Headphones,1,150.0,2019-04-04 19:33:00,24 Meadow St, Seattle,WA,98101 +188391,Wired Headphones,1,11.99,2019-04-05 08:55:00,408 Washington St, New York City,NY,10001 +188392,Bose SoundSport Headphones,1,99.99,2019-04-22 12:07:00,189 River St, New York City,NY,10001 +188393,Wired Headphones,2,11.99,2019-04-01 21:34:00,736 Jackson St, Austin,TX,73301 +188394,Wired Headphones,2,11.99,2019-04-25 18:48:00,76 Pine St, Portland,ME,04101 +188395,Lightning Charging Cable,2,14.95,2019-04-02 07:07:00,516 Lakeview St, New York City,NY,10001 +188396,AAA Batteries (4-pack),1,2.99,2019-04-03 00:10:00,474 1st St, Boston,MA,02215 +188397,USB-C Charging Cable,1,11.95,2019-04-30 08:21:00,173 8th St, Los Angeles,CA,90001 +188398,20in Monitor,1,109.99,2019-04-26 18:32:00,650 Lake St, San Francisco,CA,94016 +188399,Bose SoundSport Headphones,1,99.99,2019-04-04 16:47:00,976 Cedar St, Portland,ME,04101 +188400,USB-C Charging Cable,1,11.95,2019-04-17 01:13:00,477 North St, Los Angeles,CA,90001 +188401,Macbook Pro Laptop,1,1700.0,2019-04-05 12:56:00,265 Walnut St, New York City,NY,10001 +188402,AA Batteries (4-pack),1,3.84,2019-04-14 18:03:00,63 14th St, Dallas,TX,75001 +188403,Lightning Charging Cable,1,14.95,2019-04-17 11:46:00,682 Walnut St, Los Angeles,CA,90001 +188404,AA Batteries (4-pack),1,3.84,2019-04-06 17:28:00,479 Main St, Atlanta,GA,30301 +188405,AA Batteries (4-pack),1,3.84,2019-04-05 23:33:00,148 1st St, Seattle,WA,98101 +188406,27in 4K Gaming Monitor,1,389.99,2019-04-30 20:09:00,525 Adams St, Dallas,TX,75001 +188407,USB-C Charging Cable,1,11.95,2019-04-23 08:33:00,178 8th St, Austin,TX,73301 +188408,Lightning Charging Cable,1,14.95,2019-04-13 13:37:00,582 Johnson St, Austin,TX,73301 +188409,iPhone,1,700.0,2019-04-01 19:54:00,879 Cedar St, San Francisco,CA,94016 +188410,AA Batteries (4-pack),4,3.84,2019-04-26 17:02:00,233 Elm St, San Francisco,CA,94016 +188410,Lightning Charging Cable,1,14.95,2019-04-26 17:02:00,233 Elm St, San Francisco,CA,94016 +188411,AAA Batteries (4-pack),1,2.99,2019-04-19 19:08:00,635 9th St, Los Angeles,CA,90001 +188412,USB-C Charging Cable,1,11.95,2019-04-27 13:25:00,329 4th St, Portland,OR,97035 +188413,AAA Batteries (4-pack),1,2.99,2019-04-30 11:51:00,528 Johnson St, New York City,NY,10001 +188414,Bose SoundSport Headphones,1,99.99,2019-04-09 19:59:00,279 Chestnut St, Atlanta,GA,30301 +188415,Lightning Charging Cable,2,14.95,2019-04-07 09:18:00,365 1st St, San Francisco,CA,94016 +188416,Bose SoundSport Headphones,1,99.99,2019-04-01 23:10:00,308 Maple St, Portland,OR,97035 +188417,Macbook Pro Laptop,1,1700.0,2019-04-25 13:03:00,836 Lakeview St, Atlanta,GA,30301 +188418,Apple Airpods Headphones,1,150.0,2019-04-15 21:43:00,702 South St, Austin,TX,73301 +188419,Wired Headphones,1,11.99,2019-04-08 07:26:00,199 Elm St, Dallas,TX,75001 +188420,iPhone,1,700.0,2019-04-30 11:13:00,765 Main St, San Francisco,CA,94016 +188421,Apple Airpods Headphones,1,150.0,2019-04-15 09:27:00,187 Main St, San Francisco,CA,94016 +188422,Bose SoundSport Headphones,1,99.99,2019-04-15 18:57:00,320 Church St, New York City,NY,10001 +188423,AAA Batteries (4-pack),1,2.99,2019-04-15 11:15:00,273 Cedar St, Dallas,TX,75001 +188424,AA Batteries (4-pack),3,3.84,2019-04-01 15:23:00,731 Willow St, Austin,TX,73301 +188425,Lightning Charging Cable,2,14.95,2019-04-13 02:07:00,717 Church St, New York City,NY,10001 +188426,Wired Headphones,1,11.99,2019-04-09 13:46:00,662 Walnut St, Los Angeles,CA,90001 +188427,USB-C Charging Cable,1,11.95,2019-04-01 20:26:00,395 Center St, Boston,MA,02215 +188428,Wired Headphones,1,11.99,2019-04-03 02:12:00,616 9th St, Dallas,TX,75001 +188429,27in 4K Gaming Monitor,1,389.99,2019-04-06 16:03:00,632 Sunset St, New York City,NY,10001 +188430,AA Batteries (4-pack),1,3.84,2019-04-04 06:32:00,793 Washington St, Austin,TX,73301 +188431,AA Batteries (4-pack),1,3.84,2019-04-17 08:33:00,80 Jackson St, San Francisco,CA,94016 +188432,Wired Headphones,3,11.99,2019-04-05 11:19:00,553 13th St, Portland,OR,97035 +188433,iPhone,1,700.0,2019-04-30 14:46:00,753 Washington St, Atlanta,GA,30301 +188434,27in 4K Gaming Monitor,1,389.99,2019-04-28 22:25:00,948 Sunset St, San Francisco,CA,94016 +188435,20in Monitor,1,109.99,2019-04-13 05:59:00,107 Sunset St, Portland,OR,97035 +188436,USB-C Charging Cable,1,11.95,2019-04-10 16:25:00,708 7th St, New York City,NY,10001 +188437,27in 4K Gaming Monitor,1,389.99,2019-04-10 06:02:00,637 8th St, Seattle,WA,98101 +188438,iPhone,1,700.0,2019-04-22 04:15:00,574 Walnut St, San Francisco,CA,94016 +188439,AAA Batteries (4-pack),1,2.99,2019-04-15 20:39:00,303 Jefferson St, Los Angeles,CA,90001 +188440,USB-C Charging Cable,1,11.95,2019-04-30 16:34:00,971 River St, Los Angeles,CA,90001 +188441,Lightning Charging Cable,1,14.95,2019-04-02 12:48:00,111 North St, Los Angeles,CA,90001 +188442,AAA Batteries (4-pack),1,2.99,2019-04-21 19:57:00,491 Forest St, San Francisco,CA,94016 +188443,Bose SoundSport Headphones,1,99.99,2019-04-17 09:32:00,476 Johnson St, Boston,MA,02215 +188444,USB-C Charging Cable,1,11.95,2019-04-03 13:29:00,691 7th St, New York City,NY,10001 +188445,Apple Airpods Headphones,1,150.0,2019-04-05 01:47:00,312 Hickory St, Boston,MA,02215 +188446,27in FHD Monitor,1,149.99,2019-04-05 13:29:00,372 Ridge St, Seattle,WA,98101 +188447,AA Batteries (4-pack),1,3.84,2019-04-14 08:22:00,447 7th St, San Francisco,CA,94016 +188448,27in FHD Monitor,1,149.99,2019-04-05 04:50:00,154 Highland St, New York City,NY,10001 +188449,AA Batteries (4-pack),1,3.84,2019-04-10 01:33:00,494 11th St, Los Angeles,CA,90001 +188450,USB-C Charging Cable,1,11.95,2019-04-04 20:54:00,330 South St, San Francisco,CA,94016 +188451,Wired Headphones,1,11.99,2019-04-15 19:32:00,30 Church St, New York City,NY,10001 +188452,AAA Batteries (4-pack),1,2.99,2019-04-22 16:13:00,534 Sunset St, San Francisco,CA,94016 +188453,Lightning Charging Cable,1,14.95,2019-04-26 14:37:00,200 Highland St, San Francisco,CA,94016 +188454,iPhone,1,700.0,2019-04-22 09:16:00,799 7th St, Dallas,TX,75001 +188455,USB-C Charging Cable,1,11.95,2019-04-29 19:40:00,982 Cedar St, San Francisco,CA,94016 +188456,Lightning Charging Cable,1,14.95,2019-04-27 19:14:00,956 Spruce St, Los Angeles,CA,90001 +188457,Lightning Charging Cable,1,14.95,2019-04-02 12:00:00,652 Chestnut St, Seattle,WA,98101 +188458,USB-C Charging Cable,2,11.95,2019-04-19 18:23:00,899 Center St, Atlanta,GA,30301 +188459,27in 4K Gaming Monitor,1,389.99,2019-04-03 07:22:00,559 6th St, Atlanta,GA,30301 +188460,Lightning Charging Cable,1,14.95,2019-04-10 09:54:00,136 Park St, Los Angeles,CA,90001 +188461,AAA Batteries (4-pack),1,2.99,2019-04-22 08:28:00,851 Cedar St, Dallas,TX,75001 +188462,Lightning Charging Cable,1,14.95,2019-04-03 14:18:00,473 11th St, San Francisco,CA,94016 +188463,Wired Headphones,1,11.99,2019-04-16 19:52:00,430 Cherry St, Seattle,WA,98101 +188464,USB-C Charging Cable,1,11.95,2019-04-11 06:48:00,428 7th St, San Francisco,CA,94016 +188465,iPhone,1,700.0,2019-04-06 03:15:00,271 Elm St, New York City,NY,10001 +188465,Apple Airpods Headphones,1,150.0,2019-04-06 03:15:00,271 Elm St, New York City,NY,10001 +188466,Macbook Pro Laptop,1,1700.0,2019-04-21 19:38:00,133 Main St, Portland,OR,97035 +188467,AA Batteries (4-pack),1,3.84,2019-04-13 20:36:00,18 Willow St, Dallas,TX,75001 +188468,Google Phone,1,600.0,2019-04-01 16:17:00,742 Elm St, New York City,NY,10001 +188469,Lightning Charging Cable,1,14.95,2019-04-24 19:16:00,952 Walnut St, San Francisco,CA,94016 +188470,Apple Airpods Headphones,1,150.0,2019-04-19 17:12:00,113 4th St, New York City,NY,10001 +188471,iPhone,1,700.0,2019-04-12 07:53:00,661 Cedar St, New York City,NY,10001 +188472,USB-C Charging Cable,1,11.95,2019-04-06 16:47:00,50 North St, San Francisco,CA,94016 +188473,AA Batteries (4-pack),1,3.84,2019-04-01 16:52:00,850 Forest St, Los Angeles,CA,90001 +188474,Wired Headphones,1,11.99,2019-04-02 17:53:00,880 West St, San Francisco,CA,94016 +188475,USB-C Charging Cable,1,11.95,2019-04-19 12:53:00,18 Forest St, Boston,MA,02215 +188476,Apple Airpods Headphones,1,150.0,2019-04-19 11:14:00,128 West St, Boston,MA,02215 +188477,ThinkPad Laptop,1,999.99,2019-04-15 12:31:00,561 Madison St, Boston,MA,02215 +188478,Lightning Charging Cable,1,14.95,2019-04-19 20:43:00,624 Hill St, Dallas,TX,75001 +188479,ThinkPad Laptop,1,999.99,2019-04-03 21:47:00,481 11th St, New York City,NY,10001 +188480,USB-C Charging Cable,1,11.95,2019-04-13 13:31:00,133 13th St, Boston,MA,02215 +188481,USB-C Charging Cable,1,11.95,2019-04-24 22:53:00,177 Madison St, New York City,NY,10001 +188482,iPhone,1,700.0,2019-04-15 18:17:00,397 South St, New York City,NY,10001 +188482,Wired Headphones,1,11.99,2019-04-15 18:17:00,397 South St, New York City,NY,10001 +188483,Apple Airpods Headphones,1,150.0,2019-04-19 10:38:00,276 6th St, San Francisco,CA,94016 +188484,AA Batteries (4-pack),2,3.84,2019-04-23 20:33:00,431 13th St, Los Angeles,CA,90001 +188485,AAA Batteries (4-pack),1,2.99,2019-04-18 18:35:00,529 Spruce St, Los Angeles,CA,90001 +188486,Wired Headphones,3,11.99,2019-04-25 01:37:00,782 14th St, Atlanta,GA,30301 +188487,Lightning Charging Cable,1,14.95,2019-04-13 12:19:00,714 Johnson St, Los Angeles,CA,90001 +188488,AAA Batteries (4-pack),1,2.99,2019-04-30 12:26:00,737 Dogwood St, Seattle,WA,98101 +188489,AAA Batteries (4-pack),1,2.99,2019-04-30 16:08:00,889 Johnson St, Atlanta,GA,30301 +188490,34in Ultrawide Monitor,1,379.99,2019-04-14 18:59:00,715 Meadow St, Dallas,TX,75001 +188491,AA Batteries (4-pack),1,3.84,2019-04-20 19:40:00,397 Forest St, Dallas,TX,75001 +188492,27in 4K Gaming Monitor,1,389.99,2019-04-11 17:03:00,169 6th St, San Francisco,CA,94016 +188493,Wired Headphones,1,11.99,2019-04-13 12:15:00,444 Forest St, Seattle,WA,98101 +188494,AAA Batteries (4-pack),1,2.99,2019-04-27 01:49:00,845 Walnut St, Atlanta,GA,30301 +188495,Apple Airpods Headphones,1,150.0,2019-04-22 14:46:00,52 South St, Seattle,WA,98101 +188496,USB-C Charging Cable,1,11.95,2019-04-11 08:30:00,579 Wilson St, New York City,NY,10001 +188497,Lightning Charging Cable,1,14.95,2019-04-12 20:25:00,814 Hickory St, Los Angeles,CA,90001 +188498,AAA Batteries (4-pack),1,2.99,2019-04-24 18:24:00,579 1st St, Boston,MA,02215 +188499,Wired Headphones,1,11.99,2019-04-21 19:04:00,818 Maple St, Portland,OR,97035 +188500,Lightning Charging Cable,1,14.95,2019-04-28 12:07:00,166 Pine St, New York City,NY,10001 +188501,AAA Batteries (4-pack),1,2.99,2019-04-25 20:24:00,739 Main St, Dallas,TX,75001 +188502,Google Phone,1,600.0,2019-04-05 11:12:00,152 Madison St, Los Angeles,CA,90001 +188503,Wired Headphones,1,11.99,2019-04-08 12:17:00,279 14th St, Boston,MA,02215 +188504,AA Batteries (4-pack),3,3.84,2019-04-29 18:37:00,684 11th St, San Francisco,CA,94016 +188505,Lightning Charging Cable,1,14.95,2019-04-21 17:26:00,107 Jackson St, Atlanta,GA,30301 +188506,AA Batteries (4-pack),1,3.84,2019-04-30 02:30:00,385 Ridge St, New York City,NY,10001 +188507,Wired Headphones,1,11.99,2019-04-23 03:25:00,39 Lake St, San Francisco,CA,94016 +188508,Google Phone,1,600.0,2019-04-30 18:22:00,52 Wilson St, San Francisco,CA,94016 +188509,AAA Batteries (4-pack),1,2.99,2019-04-11 10:17:00,280 Washington St, San Francisco,CA,94016 +188510,Lightning Charging Cable,1,14.95,2019-04-23 14:20:00,17 Willow St, Portland,OR,97035 +188511,Flatscreen TV,1,300.0,2019-04-23 19:36:00,331 10th St, Los Angeles,CA,90001 +188512,34in Ultrawide Monitor,1,379.99,2019-04-26 07:09:00,151 Willow St, Dallas,TX,75001 +188513,Apple Airpods Headphones,1,150.0,2019-04-28 07:46:00,957 Adams St, New York City,NY,10001 +188513,USB-C Charging Cable,1,11.95,2019-04-28 07:46:00,957 Adams St, New York City,NY,10001 +188514,USB-C Charging Cable,1,11.95,2019-04-15 13:47:00,832 Johnson St, Dallas,TX,75001 +188515,Wired Headphones,1,11.99,2019-04-01 10:51:00,725 Washington St, San Francisco,CA,94016 +188516,34in Ultrawide Monitor,1,379.99,2019-04-12 00:51:00,173 Main St, San Francisco,CA,94016 +188517,Lightning Charging Cable,1,14.95,2019-04-29 13:51:00,332 Chestnut St, San Francisco,CA,94016 +188518,USB-C Charging Cable,1,11.95,2019-04-03 09:48:00,156 West St, Portland,ME,04101 +188519,Lightning Charging Cable,1,14.95,2019-04-27 16:55:00,487 9th St, Portland,OR,97035 +188520,27in 4K Gaming Monitor,1,389.99,2019-04-24 16:52:00,519 Pine St, San Francisco,CA,94016 +188520,34in Ultrawide Monitor,1,379.99,2019-04-24 16:52:00,519 Pine St, San Francisco,CA,94016 +188521,27in FHD Monitor,1,149.99,2019-04-11 18:42:00,836 2nd St, Portland,OR,97035 +188522,Bose SoundSport Headphones,1,99.99,2019-04-01 10:36:00,534 River St, Los Angeles,CA,90001 +188523,ThinkPad Laptop,1,999.99,2019-04-23 08:58:00,286 Maple St, Boston,MA,02215 +188524,Wired Headphones,1,11.99,2019-04-08 19:21:00,719 Hickory St, San Francisco,CA,94016 +188525,Lightning Charging Cable,1,14.95,2019-04-20 20:55:00,208 Dogwood St, San Francisco,CA,94016 +188526,Google Phone,1,600.0,2019-04-11 12:57:00,744 Lincoln St, New York City,NY,10001 +188527,20in Monitor,1,109.99,2019-04-17 22:31:00,217 Maple St, Dallas,TX,75001 +188528,AA Batteries (4-pack),1,3.84,2019-04-07 19:46:00,486 Jefferson St, Los Angeles,CA,90001 +188529,Wired Headphones,1,11.99,2019-04-30 18:02:00,611 Maple St, New York City,NY,10001 +188530,Lightning Charging Cable,1,14.95,2019-04-03 13:03:00,566 9th St, Portland,OR,97035 +188531,AA Batteries (4-pack),1,3.84,2019-04-08 05:22:00,522 Maple St, Austin,TX,73301 +188532,Bose SoundSport Headphones,1,99.99,2019-04-02 10:47:00,119 Forest St, Austin,TX,73301 +188533,Vareebadd Phone,1,400.0,2019-04-16 20:17:00,660 Center St, Seattle,WA,98101 +188533,USB-C Charging Cable,1,11.95,2019-04-16 20:17:00,660 Center St, Seattle,WA,98101 +188533,Wired Headphones,1,11.99,2019-04-16 20:17:00,660 Center St, Seattle,WA,98101 +188534,Apple Airpods Headphones,1,150.0,2019-04-22 14:20:00,583 Pine St, San Francisco,CA,94016 +188535,Lightning Charging Cable,1,14.95,2019-04-01 08:18:00,799 Adams St, New York City,NY,10001 +188536,AA Batteries (4-pack),1,3.84,2019-04-13 18:47:00,575 Jefferson St, Dallas,TX,75001 +188537,Apple Airpods Headphones,1,150.0,2019-04-05 14:05:00,104 Cedar St, San Francisco,CA,94016 +188538,Google Phone,1,600.0,2019-04-25 10:17:00,385 7th St, New York City,NY,10001 +188539,Bose SoundSport Headphones,1,99.99,2019-04-01 14:08:00,372 9th St, Los Angeles,CA,90001 +188540,Bose SoundSport Headphones,1,99.99,2019-04-19 17:02:00,446 Church St, New York City,NY,10001 +188541,Apple Airpods Headphones,1,150.0,2019-04-18 16:20:00,925 Sunset St, Portland,OR,97035 +188541,Macbook Pro Laptop,1,1700.0,2019-04-18 16:20:00,925 Sunset St, Portland,OR,97035 +188542,34in Ultrawide Monitor,1,379.99,2019-04-16 11:30:00,342 Hickory St, New York City,NY,10001 +188543,AAA Batteries (4-pack),1,2.99,2019-04-10 21:57:00,117 Dogwood St, San Francisco,CA,94016 +188543,Macbook Pro Laptop,1,1700.0,2019-04-10 21:57:00,117 Dogwood St, San Francisco,CA,94016 +188544,Wired Headphones,1,11.99,2019-04-11 19:48:00,895 Ridge St, San Francisco,CA,94016 +188545,Apple Airpods Headphones,1,150.0,2019-04-27 15:50:00,420 Center St, San Francisco,CA,94016 +188546,34in Ultrawide Monitor,1,379.99,2019-04-15 10:47:00,452 Highland St, Seattle,WA,98101 +188547,Lightning Charging Cable,1,14.95,2019-04-04 11:47:00,816 Jefferson St, Boston,MA,02215 +188548,LG Washing Machine,1,600.0,2019-04-22 14:29:00,704 Jefferson St, Los Angeles,CA,90001 +188549,ThinkPad Laptop,1,999.99,2019-04-24 19:47:00,519 Lake St, Seattle,WA,98101 +188550,Lightning Charging Cable,1,14.95,2019-04-12 11:48:00,863 Adams St, San Francisco,CA,94016 +188551,AAA Batteries (4-pack),4,2.99,2019-04-18 08:33:00,953 4th St, New York City,NY,10001 +188552,USB-C Charging Cable,2,11.95,2019-04-14 16:55:00,60 8th St, Seattle,WA,98101 +188553,AAA Batteries (4-pack),1,2.99,2019-04-04 16:32:00,410 Washington St, New York City,NY,10001 +188554,27in FHD Monitor,1,149.99,2019-04-19 11:35:00,638 12th St, San Francisco,CA,94016 +188555,27in FHD Monitor,1,149.99,2019-04-03 10:36:00,675 Ridge St, Boston,MA,02215 +188556,Lightning Charging Cable,1,14.95,2019-04-30 23:49:00,212 Wilson St, San Francisco,CA,94016 +188557,Bose SoundSport Headphones,1,99.99,2019-04-08 23:54:00,870 Cedar St, New York City,NY,10001 +188558,Lightning Charging Cable,1,14.95,2019-04-26 11:07:00,222 South St, New York City,NY,10001 +188559,iPhone,1,700.0,2019-04-17 22:26:00,159 4th St, Atlanta,GA,30301 +188560,Macbook Pro Laptop,1,1700.0,2019-04-04 10:43:00,937 Hickory St, Seattle,WA,98101 +188561,Google Phone,1,600.0,2019-04-10 10:50:00,393 Dogwood St, New York City,NY,10001 +188562,34in Ultrawide Monitor,1,379.99,2019-04-28 08:56:00,981 9th St, Portland,OR,97035 +188563,Wired Headphones,1,11.99,2019-04-18 11:10:00,383 Johnson St, San Francisco,CA,94016 +188564,27in FHD Monitor,1,149.99,2019-04-04 14:05:00,138 Lakeview St, San Francisco,CA,94016 +188565,Flatscreen TV,1,300.0,2019-04-23 01:18:00,980 Forest St, San Francisco,CA,94016 +188566,27in FHD Monitor,1,149.99,2019-04-15 18:03:00,542 6th St, Boston,MA,02215 +188567,Lightning Charging Cable,1,14.95,2019-04-26 15:36:00,485 Cedar St, Los Angeles,CA,90001 +188568,USB-C Charging Cable,1,11.95,2019-04-23 22:44:00,955 Spruce St, Boston,MA,02215 +188569,AA Batteries (4-pack),1,3.84,2019-04-12 17:30:00,802 Meadow St, San Francisco,CA,94016 +188570,AA Batteries (4-pack),1,3.84,2019-04-01 22:08:00,953 Johnson St, Dallas,TX,75001 +188571,27in FHD Monitor,1,149.99,2019-04-30 15:39:00,997 7th St, San Francisco,CA,94016 +188572,AA Batteries (4-pack),1,3.84,2019-04-09 00:13:00,354 Washington St, Los Angeles,CA,90001 +188573,AAA Batteries (4-pack),2,2.99,2019-04-29 16:40:00,943 11th St, Seattle,WA,98101 +188574,Bose SoundSport Headphones,1,99.99,2019-04-06 23:31:00,837 Chestnut St, Dallas,TX,75001 +188575,Wired Headphones,2,11.99,2019-04-07 23:03:00,535 Lakeview St, Boston,MA,02215 +188576,Apple Airpods Headphones,1,150.0,2019-04-23 12:41:00,392 Adams St, Dallas,TX,75001 +188577,AAA Batteries (4-pack),3,2.99,2019-04-17 14:30:00,772 Lincoln St, Los Angeles,CA,90001 +188578,Wired Headphones,1,11.99,2019-04-21 08:25:00,379 Hill St, Dallas,TX,75001 +188579,USB-C Charging Cable,1,11.95,2019-04-28 21:35:00,429 Pine St, San Francisco,CA,94016 +188580,Wired Headphones,1,11.99,2019-04-18 14:55:00,601 Jackson St, Los Angeles,CA,90001 +188581,iPhone,1,700.0,2019-04-09 16:03:00,626 Lakeview St, Boston,MA,02215 +188581,Lightning Charging Cable,1,14.95,2019-04-09 16:03:00,626 Lakeview St, Boston,MA,02215 +188582,Bose SoundSport Headphones,1,99.99,2019-04-27 15:59:00,332 Jackson St, San Francisco,CA,94016 +188582,27in FHD Monitor,1,149.99,2019-04-27 15:59:00,332 Jackson St, San Francisco,CA,94016 +188583,AA Batteries (4-pack),1,3.84,2019-04-15 15:53:00,988 Church St, Boston,MA,02215 +188584,Wired Headphones,1,11.99,2019-04-06 20:28:00,53 Ridge St, Austin,TX,73301 +188585,AAA Batteries (4-pack),1,2.99,2019-04-22 17:57:00,722 Willow St, Los Angeles,CA,90001 +188586,AA Batteries (4-pack),1,3.84,2019-04-04 18:33:00,914 Church St, San Francisco,CA,94016 +188587,Wired Headphones,1,11.99,2019-04-17 19:58:00,945 Church St, Austin,TX,73301 +188588,AA Batteries (4-pack),2,3.84,2019-04-03 19:11:00,694 Spruce St, Los Angeles,CA,90001 +188589,iPhone,1,700.0,2019-04-01 21:23:00,454 Madison St, New York City,NY,10001 +188589,Lightning Charging Cable,1,14.95,2019-04-01 21:23:00,454 Madison St, New York City,NY,10001 +188590,AA Batteries (4-pack),3,3.84,2019-04-10 15:48:00,666 4th St, New York City,NY,10001 +188591,27in 4K Gaming Monitor,1,389.99,2019-04-28 13:28:00,574 14th St, Atlanta,GA,30301 +188592,Lightning Charging Cable,1,14.95,2019-04-24 13:46:00,281 10th St, New York City,NY,10001 +188593,27in 4K Gaming Monitor,1,389.99,2019-04-12 14:06:00,527 Cherry St, Dallas,TX,75001 +188594,Wired Headphones,1,11.99,2019-04-01 16:05:00,189 7th St, Dallas,TX,75001 +188595,Wired Headphones,1,11.99,2019-04-10 16:01:00,272 12th St, Los Angeles,CA,90001 +188596,Apple Airpods Headphones,1,150.0,2019-04-24 00:03:00,837 Lake St, New York City,NY,10001 +188597,20in Monitor,1,109.99,2019-04-05 14:57:00,196 5th St, Atlanta,GA,30301 +188598,USB-C Charging Cable,1,11.95,2019-04-12 09:05:00,796 Highland St, Seattle,WA,98101 +188598,Macbook Pro Laptop,1,1700.0,2019-04-12 09:05:00,796 Highland St, Seattle,WA,98101 +188599,iPhone,1,700.0,2019-04-26 12:01:00,698 Lakeview St, Boston,MA,02215 +188600,USB-C Charging Cable,1,11.95,2019-04-11 18:34:00,528 5th St, New York City,NY,10001 +188601,USB-C Charging Cable,2,11.95,2019-04-11 00:31:00,474 7th St, New York City,NY,10001 +188602,27in FHD Monitor,1,149.99,2019-04-03 12:35:00,629 Wilson St, New York City,NY,10001 +188603,iPhone,1,700.0,2019-04-24 12:32:00,980 10th St, San Francisco,CA,94016 +188604,Bose SoundSport Headphones,1,99.99,2019-04-30 07:49:00,582 14th St, New York City,NY,10001 +188605,Lightning Charging Cable,1,14.95,2019-04-13 12:11:00,432 Spruce St, Seattle,WA,98101 +188606,AA Batteries (4-pack),1,3.84,2019-04-27 21:42:00,757 South St, New York City,NY,10001 +188607,AAA Batteries (4-pack),1,2.99,2019-04-08 21:27:00,592 Wilson St, New York City,NY,10001 +188608,Apple Airpods Headphones,1,150.0,2019-04-25 10:00:00,642 Walnut St, Portland,OR,97035 +188609,34in Ultrawide Monitor,1,379.99,2019-04-04 16:20:00,989 14th St, Austin,TX,73301 +188610,AAA Batteries (4-pack),1,2.99,2019-04-14 20:31:00,147 14th St, Austin,TX,73301 +188611,Lightning Charging Cable,1,14.95,2019-04-21 00:36:00,888 Cherry St, New York City,NY,10001 +188612,AAA Batteries (4-pack),2,2.99,2019-04-02 10:30:00,647 West St, Austin,TX,73301 +188613,AA Batteries (4-pack),1,3.84,2019-04-26 00:21:00,209 7th St, San Francisco,CA,94016 +188614,Apple Airpods Headphones,1,150.0,2019-04-06 15:15:00,143 Center St, New York City,NY,10001 +188615,20in Monitor,1,109.99,2019-05-01 00:31:00,858 12th St, San Francisco,CA,94016 +188616,Lightning Charging Cable,1,14.95,2019-04-12 14:28:00,685 River St, San Francisco,CA,94016 +188617,iPhone,1,700.0,2019-04-05 05:54:00,727 9th St, San Francisco,CA,94016 +188618,Wired Headphones,1,11.99,2019-04-01 10:18:00,219 Park St, Austin,TX,73301 +188619,iPhone,1,700.0,2019-04-09 13:41:00,156 10th St, Boston,MA,02215 +188620,AA Batteries (4-pack),2,3.84,2019-04-14 20:57:00,222 Hickory St, San Francisco,CA,94016 +188621,Bose SoundSport Headphones,1,99.99,2019-04-01 18:30:00,59 Center St, Los Angeles,CA,90001 +188622,ThinkPad Laptop,1,999.99,2019-04-07 13:18:00,15 5th St, Atlanta,GA,30301 +188623,USB-C Charging Cable,1,11.95,2019-04-14 00:08:00,985 Spruce St, Los Angeles,CA,90001 +188624,Lightning Charging Cable,1,14.95,2019-04-27 20:45:00,172 Main St, Los Angeles,CA,90001 +188625,LG Washing Machine,1,600.0,2019-04-09 16:29:00,886 Jackson St, San Francisco,CA,94016 +188626,AA Batteries (4-pack),1,3.84,2019-04-04 10:17:00,639 Jefferson St, Portland,ME,04101 +188627,AAA Batteries (4-pack),1,2.99,2019-04-27 19:32:00,628 Maple St, San Francisco,CA,94016 +188628,AA Batteries (4-pack),1,3.84,2019-04-02 19:57:00,321 Walnut St, Atlanta,GA,30301 +188629,Lightning Charging Cable,1,14.95,2019-04-27 23:22:00,535 6th St, Los Angeles,CA,90001 +188630,Macbook Pro Laptop,1,1700.0,2019-04-25 19:01:00,616 Chestnut St, New York City,NY,10001 +188631,AAA Batteries (4-pack),1,2.99,2019-04-08 21:28:00,457 Jackson St, New York City,NY,10001 +188632,Bose SoundSport Headphones,1,99.99,2019-04-13 18:00:00,326 Spruce St, New York City,NY,10001 +188633,Apple Airpods Headphones,1,150.0,2019-04-03 19:45:00,144 7th St, San Francisco,CA,94016 +188634,USB-C Charging Cable,1,11.95,2019-04-15 11:05:00,54 Center St, Los Angeles,CA,90001 +188635,Bose SoundSport Headphones,1,99.99,2019-04-29 11:03:00,560 5th St, San Francisco,CA,94016 +188636,Lightning Charging Cable,1,14.95,2019-04-05 13:22:00,717 Ridge St, Portland,OR,97035 +188637,AAA Batteries (4-pack),1,2.99,2019-04-14 14:34:00,969 River St, Los Angeles,CA,90001 +188638,iPhone,1,700.0,2019-04-30 23:10:00,149 Chestnut St, Seattle,WA,98101 +188638,Wired Headphones,1,11.99,2019-04-30 23:10:00,149 Chestnut St, Seattle,WA,98101 +188639,iPhone,1,700.0,2019-04-01 18:12:00,631 Lake St, New York City,NY,10001 +188640,Wired Headphones,1,11.99,2019-04-09 14:25:00,887 1st St, San Francisco,CA,94016 +188641,LG Dryer,1,600.0,2019-04-09 20:53:00,246 Highland St, Los Angeles,CA,90001 +188642,AA Batteries (4-pack),1,3.84,2019-04-07 15:53:00,695 Main St, Dallas,TX,75001 +188643,Lightning Charging Cable,1,14.95,2019-04-12 13:32:00,848 5th St, Los Angeles,CA,90001 +188644,Google Phone,1,600.0,2019-04-15 18:10:00,316 Hill St, Seattle,WA,98101 +188645,USB-C Charging Cable,1,11.95,2019-04-27 17:56:00,217 Adams St, New York City,NY,10001 +188646,AA Batteries (4-pack),1,3.84,2019-04-05 18:52:00,257 13th St, Austin,TX,73301 +188647,34in Ultrawide Monitor,1,379.99,2019-04-08 11:28:00,687 5th St, Boston,MA,02215 +188648,27in FHD Monitor,1,149.99,2019-04-21 19:42:00,307 Johnson St, Seattle,WA,98101 +188649,Wired Headphones,1,11.99,2019-04-30 17:28:00,109 8th St, San Francisco,CA,94016 +188650,ThinkPad Laptop,1,999.99,2019-04-25 13:02:00,323 Meadow St, San Francisco,CA,94016 +188651,27in 4K Gaming Monitor,1,389.99,2019-04-13 18:09:00,430 Cedar St, Boston,MA,02215 +188652,USB-C Charging Cable,2,11.95,2019-04-13 01:29:00,94 Cedar St, New York City,NY,10001 +188653,Apple Airpods Headphones,1,150.0,2019-04-14 12:12:00,702 Hickory St, Los Angeles,CA,90001 +188654,27in FHD Monitor,1,149.99,2019-04-03 14:58:00,631 Forest St, San Francisco,CA,94016 +188655,27in FHD Monitor,1,149.99,2019-04-14 01:36:00,402 2nd St, Los Angeles,CA,90001 +188656,Wired Headphones,1,11.99,2019-04-28 06:34:00,8 9th St, Los Angeles,CA,90001 +188657,iPhone,1,700.0,2019-04-04 08:28:00,916 Sunset St, Portland,OR,97035 +188658,27in FHD Monitor,1,149.99,2019-04-12 11:12:00,799 Hickory St, San Francisco,CA,94016 +188659,Google Phone,1,600.0,2019-04-18 17:15:00,770 Chestnut St, Atlanta,GA,30301 +188660,Apple Airpods Headphones,1,150.0,2019-04-15 09:46:00,60 Main St, San Francisco,CA,94016 +188661,27in FHD Monitor,1,149.99,2019-04-07 23:54:00,950 Wilson St, Los Angeles,CA,90001 +188662,AAA Batteries (4-pack),1,2.99,2019-04-23 08:15:00,360 Maple St, San Francisco,CA,94016 +188663,USB-C Charging Cable,1,11.95,2019-04-29 22:11:00,490 12th St, Atlanta,GA,30301 +188664,Bose SoundSport Headphones,1,99.99,2019-04-13 19:43:00,506 Washington St, Dallas,TX,75001 +188665,USB-C Charging Cable,1,11.95,2019-04-06 14:34:00,550 Highland St, Los Angeles,CA,90001 +188666,27in FHD Monitor,1,149.99,2019-04-01 18:29:00,492 Cherry St, Portland,OR,97035 +188667,USB-C Charging Cable,1,11.95,2019-04-18 20:06:00,948 Meadow St, Dallas,TX,75001 +188668,Apple Airpods Headphones,1,150.0,2019-04-17 13:30:00,323 Wilson St, San Francisco,CA,94016 +188669,AA Batteries (4-pack),1,3.84,2019-04-15 20:32:00,813 Park St, Los Angeles,CA,90001 +188670,27in 4K Gaming Monitor,1,389.99,2019-04-07 13:31:00,299 1st St, Boston,MA,02215 +188671,Google Phone,1,600.0,2019-04-29 12:21:00,608 Wilson St, Atlanta,GA,30301 +188671,Wired Headphones,1,11.99,2019-04-29 12:21:00,608 Wilson St, Atlanta,GA,30301 +188672,iPhone,1,700.0,2019-04-06 17:03:00,831 Lincoln St, Boston,MA,02215 +188672,Lightning Charging Cable,1,14.95,2019-04-06 17:03:00,831 Lincoln St, Boston,MA,02215 +188673,USB-C Charging Cable,1,11.95,2019-04-03 11:09:00,139 11th St, San Francisco,CA,94016 +188674,Wired Headphones,1,11.99,2019-04-01 16:41:00,842 Cherry St, San Francisco,CA,94016 +188675,Wired Headphones,1,11.99,2019-04-20 15:50:00,131 Maple St, Atlanta,GA,30301 +188676,USB-C Charging Cable,1,11.95,2019-04-05 14:20:00,499 Cherry St, Portland,ME,04101 +188677,Wired Headphones,1,11.99,2019-04-02 16:17:00,404 Spruce St, Austin,TX,73301 +188678,AAA Batteries (4-pack),2,2.99,2019-04-10 14:34:00,51 14th St, Los Angeles,CA,90001 +188679,AAA Batteries (4-pack),1,2.99,2019-04-12 02:36:00,84 Pine St, San Francisco,CA,94016 +188680,Macbook Pro Laptop,1,1700.0,2019-04-15 20:44:00,880 Willow St, San Francisco,CA,94016 +188681,USB-C Charging Cable,1,11.95,2019-04-13 11:43:00,698 Jackson St, San Francisco,CA,94016 +188682,27in FHD Monitor,1,149.99,2019-04-19 16:22:00,181 1st St, San Francisco,CA,94016 +188683,Bose SoundSport Headphones,1,99.99,2019-04-12 20:04:00,419 Dogwood St, Los Angeles,CA,90001 +188684,Lightning Charging Cable,1,14.95,2019-04-15 00:41:00,445 Maple St, San Francisco,CA,94016 +188685,Wired Headphones,1,11.99,2019-04-17 20:18:00,302 Hickory St, New York City,NY,10001 +188686,Lightning Charging Cable,1,14.95,2019-04-14 15:27:00,903 South St, San Francisco,CA,94016 +188687,Flatscreen TV,1,300.0,2019-04-25 09:17:00,976 10th St, Seattle,WA,98101 +188688,27in FHD Monitor,1,149.99,2019-04-30 12:05:00,361 13th St, San Francisco,CA,94016 +188689,ThinkPad Laptop,1,999.99,2019-04-04 08:32:00,370 Church St, San Francisco,CA,94016 +188690,Lightning Charging Cable,1,14.95,2019-04-10 11:45:00,737 Forest St, Atlanta,GA,30301 +188691,Lightning Charging Cable,1,14.95,2019-04-23 23:28:00,795 Meadow St, San Francisco,CA,94016 +188692,USB-C Charging Cable,1,11.95,2019-04-24 09:16:00,17 14th St, Atlanta,GA,30301 +188693,Wired Headphones,1,11.99,2019-04-02 19:05:00,850 Park St, Seattle,WA,98101 +188694,27in 4K Gaming Monitor,1,389.99,2019-04-04 22:59:00,404 North St, Portland,ME,04101 +188695,AAA Batteries (4-pack),1,2.99,2019-04-04 16:51:00,853 Johnson St, Los Angeles,CA,90001 +188696,Wired Headphones,1,11.99,2019-04-19 01:00:00,780 1st St, Los Angeles,CA,90001 +188697,Apple Airpods Headphones,1,150.0,2019-04-18 22:50:00,302 4th St, Austin,TX,73301 +188698,34in Ultrawide Monitor,1,379.99,2019-04-08 02:34:00,255 12th St, San Francisco,CA,94016 +188699,AAA Batteries (4-pack),1,2.99,2019-04-21 13:37:00,400 10th St, Boston,MA,02215 +188700,27in FHD Monitor,1,149.99,2019-04-13 12:54:00,766 Sunset St, Atlanta,GA,30301 +188700,AAA Batteries (4-pack),1,2.99,2019-04-13 12:54:00,766 Sunset St, Atlanta,GA,30301 +188701,Bose SoundSport Headphones,1,99.99,2019-04-30 14:55:00,424 Main St, New York City,NY,10001 +188702,AAA Batteries (4-pack),1,2.99,2019-04-13 04:59:00,480 5th St, Atlanta,GA,30301 +188703,USB-C Charging Cable,1,11.95,2019-04-22 14:35:00,99 1st St, Portland,OR,97035 +188704,Wired Headphones,1,11.99,2019-04-04 20:56:00,898 12th St, Boston,MA,02215 +188705,AAA Batteries (4-pack),1,2.99,2019-04-30 13:36:00,482 Willow St, San Francisco,CA,94016 +188706,Wired Headphones,1,11.99,2019-04-18 17:18:00,358 Cedar St, Los Angeles,CA,90001 +188707,Wired Headphones,1,11.99,2019-04-08 12:11:00,320 Jefferson St, Seattle,WA,98101 +188708,iPhone,1,700.0,2019-04-26 15:08:00,148 Sunset St, Austin,TX,73301 +188709,AA Batteries (4-pack),1,3.84,2019-04-12 22:24:00,860 Sunset St, Seattle,WA,98101 +188710,ThinkPad Laptop,1,999.99,2019-04-26 19:58:00,345 Lake St, Atlanta,GA,30301 +188711,20in Monitor,1,109.99,2019-04-02 18:25:00,865 Adams St, San Francisco,CA,94016 +188712,Lightning Charging Cable,1,14.95,2019-04-21 13:22:00,596 13th St, Atlanta,GA,30301 +188713,USB-C Charging Cable,1,11.95,2019-04-17 16:27:00,161 Meadow St, San Francisco,CA,94016 +188714,Apple Airpods Headphones,1,150.0,2019-04-12 08:19:00,474 Madison St, New York City,NY,10001 +188715,USB-C Charging Cable,1,11.95,2019-04-15 10:23:00,998 Spruce St, Boston,MA,02215 +188716,Apple Airpods Headphones,1,150.0,2019-04-29 13:10:00,815 South St, Boston,MA,02215 +188717,AA Batteries (4-pack),1,3.84,2019-04-13 07:37:00,35 1st St, New York City,NY,10001 +188718,AA Batteries (4-pack),3,3.84,2019-04-21 19:13:00,331 Park St, Atlanta,GA,30301 +188719,iPhone,1,700.0,2019-04-19 18:07:00,100 Main St, San Francisco,CA,94016 +188720,Flatscreen TV,1,300.0,2019-04-19 00:13:00,741 River St, New York City,NY,10001 +188721,Wired Headphones,1,11.99,2019-04-21 15:33:00,670 Highland St, New York City,NY,10001 +188722,Apple Airpods Headphones,1,150.0,2019-04-04 18:10:00,356 Hill St, San Francisco,CA,94016 +188723,USB-C Charging Cable,1,11.95,2019-04-17 14:55:00,169 Dogwood St, San Francisco,CA,94016 +188724,AAA Batteries (4-pack),1,2.99,2019-04-04 10:30:00,430 8th St, San Francisco,CA,94016 +188725,USB-C Charging Cable,1,11.95,2019-04-20 21:24:00,907 Forest St, Seattle,WA,98101 +188726,Apple Airpods Headphones,1,150.0,2019-04-24 05:03:00,223 7th St, New York City,NY,10001 +188727,Bose SoundSport Headphones,1,99.99,2019-04-16 00:47:00,480 13th St, San Francisco,CA,94016 +188728,Lightning Charging Cable,1,14.95,2019-04-22 18:12:00,214 Jackson St, Los Angeles,CA,90001 +188729,34in Ultrawide Monitor,1,379.99,2019-04-06 22:14:00,106 Hickory St, Seattle,WA,98101 +188730,AA Batteries (4-pack),1,3.84,2019-04-16 10:53:00,351 Lakeview St, Los Angeles,CA,90001 +188731,USB-C Charging Cable,1,11.95,2019-04-06 08:51:00,866 Main St, Seattle,WA,98101 +188732,Wired Headphones,2,11.99,2019-04-20 12:35:00,392 Dogwood St, Dallas,TX,75001 +188733,27in FHD Monitor,1,149.99,2019-04-29 16:08:00,87 West St, San Francisco,CA,94016 +188734,Lightning Charging Cable,1,14.95,2019-04-27 10:13:00,556 5th St, Dallas,TX,75001 +188735,USB-C Charging Cable,1,11.95,2019-04-23 14:31:00,356 Lakeview St, San Francisco,CA,94016 +188736,Bose SoundSport Headphones,1,99.99,2019-04-19 14:25:00,522 9th St, Los Angeles,CA,90001 +188737,Lightning Charging Cable,1,14.95,2019-04-30 09:26:00,188 Meadow St, Austin,TX,73301 +188738,USB-C Charging Cable,2,11.95,2019-04-17 22:28:00,807 Johnson St, Portland,ME,04101 +188739,Bose SoundSport Headphones,1,99.99,2019-04-28 21:48:00,196 Hill St, Portland,ME,04101 +188740,AA Batteries (4-pack),1,3.84,2019-04-10 18:51:00,936 Wilson St, Boston,MA,02215 +188741,USB-C Charging Cable,1,11.95,2019-04-26 11:04:00,506 Meadow St, San Francisco,CA,94016 +188742,Flatscreen TV,1,300.0,2019-04-07 14:30:00,280 Church St, Los Angeles,CA,90001 +188743,AAA Batteries (4-pack),1,2.99,2019-04-19 22:01:00,395 7th St, Portland,ME,04101 +188744,Flatscreen TV,1,300.0,2019-04-18 09:00:00,59 Chestnut St, San Francisco,CA,94016 +188745,Wired Headphones,1,11.99,2019-04-20 19:48:00,292 11th St, Atlanta,GA,30301 +188746,AA Batteries (4-pack),1,3.84,2019-04-07 09:29:00,363 9th St, Los Angeles,CA,90001 +188747,Macbook Pro Laptop,1,1700.0,2019-04-20 00:23:00,336 Park St, Boston,MA,02215 +188748,Lightning Charging Cable,1,14.95,2019-04-03 11:53:00,657 Lincoln St, New York City,NY,10001 +188749,AA Batteries (4-pack),1,3.84,2019-04-10 21:10:00,357 Johnson St, Los Angeles,CA,90001 +188750,AAA Batteries (4-pack),2,2.99,2019-04-27 09:31:00,125 Jefferson St, Portland,OR,97035 +188751,Google Phone,1,600.0,2019-04-01 19:48:00,109 Hill St, San Francisco,CA,94016 +188751,USB-C Charging Cable,1,11.95,2019-04-01 19:48:00,109 Hill St, San Francisco,CA,94016 +188752,27in 4K Gaming Monitor,1,389.99,2019-04-08 15:42:00,756 11th St, Austin,TX,73301 +188753,Google Phone,1,600.0,2019-04-09 00:17:00,915 6th St, Boston,MA,02215 +188754,Flatscreen TV,1,300.0,2019-04-30 20:25:00,821 Adams St, San Francisco,CA,94016 +188755,Bose SoundSport Headphones,1,99.99,2019-04-18 19:43:00,880 South St, New York City,NY,10001 +188756,AA Batteries (4-pack),1,3.84,2019-04-22 19:31:00,457 Park St, Dallas,TX,75001 +188756,Apple Airpods Headphones,1,150.0,2019-04-22 19:31:00,457 Park St, Dallas,TX,75001 +188757,iPhone,1,700.0,2019-04-14 16:21:00,835 Madison St, New York City,NY,10001 +188758,AA Batteries (4-pack),2,3.84,2019-04-12 14:57:00,792 Chestnut St, Boston,MA,02215 +188759,Flatscreen TV,1,300.0,2019-04-08 10:40:00,377 Cedar St, Seattle,WA,98101 +188760,USB-C Charging Cable,1,11.95,2019-04-18 18:23:00,808 Ridge St, San Francisco,CA,94016 +188760,Wired Headphones,1,11.99,2019-04-18 18:23:00,808 Ridge St, San Francisco,CA,94016 +188761,Bose SoundSport Headphones,1,99.99,2019-04-21 16:43:00,927 5th St, Portland,OR,97035 +188762,USB-C Charging Cable,1,11.95,2019-04-04 15:26:00,640 6th St, Seattle,WA,98101 +188763,27in FHD Monitor,1,149.99,2019-04-17 22:28:00,28 Chestnut St, Atlanta,GA,30301 +188764,Apple Airpods Headphones,1,150.0,2019-04-11 15:52:00,467 Lakeview St, Seattle,WA,98101 +188765,AA Batteries (4-pack),1,3.84,2019-04-29 12:01:00,816 Dogwood St, San Francisco,CA,94016 +188766,Wired Headphones,1,11.99,2019-04-10 13:11:00,165 Willow St, Los Angeles,CA,90001 +188767,Wired Headphones,1,11.99,2019-04-07 14:53:00,700 5th St, Boston,MA,02215 +188768,Lightning Charging Cable,1,14.95,2019-04-01 14:09:00,686 West St, Dallas,TX,75001 +188769,Wired Headphones,1,11.99,2019-04-29 18:48:00,581 North St, Los Angeles,CA,90001 +188770,AAA Batteries (4-pack),1,2.99,2019-04-20 10:30:00,910 Pine St, Los Angeles,CA,90001 +188771,Bose SoundSport Headphones,1,99.99,2019-04-04 09:53:00,343 Wilson St, Los Angeles,CA,90001 +188772,Lightning Charging Cable,1,14.95,2019-04-04 18:42:00,594 7th St, Austin,TX,73301 +188773,Lightning Charging Cable,1,14.95,2019-04-22 03:11:00,259 Sunset St, Dallas,TX,75001 +188774,Lightning Charging Cable,1,14.95,2019-04-24 00:59:00,906 Lincoln St, New York City,NY,10001 +188775,Wired Headphones,1,11.99,2019-04-29 15:42:00,304 Adams St, Seattle,WA,98101 +188776,Flatscreen TV,1,300.0,2019-04-09 11:59:00,312 South St, Los Angeles,CA,90001 +188777,Wired Headphones,1,11.99,2019-04-29 20:26:00,127 8th St, San Francisco,CA,94016 +188778,Bose SoundSport Headphones,1,99.99,2019-04-21 20:58:00,806 Lincoln St, San Francisco,CA,94016 +188779,Apple Airpods Headphones,1,150.0,2019-04-09 12:55:00,421 5th St, Austin,TX,73301 +188780,Wired Headphones,1,11.99,2019-04-11 15:55:00,338 Spruce St, New York City,NY,10001 +188781,USB-C Charging Cable,1,11.95,2019-04-11 13:56:00,813 Johnson St, New York City,NY,10001 +188782,Google Phone,1,600.0,2019-04-29 23:39:00,994 14th St, New York City,NY,10001 +188782,Bose SoundSport Headphones,1,99.99,2019-04-29 23:39:00,994 14th St, New York City,NY,10001 +188783,27in 4K Gaming Monitor,1,389.99,2019-04-14 16:50:00,526 Meadow St, San Francisco,CA,94016 +188784,AAA Batteries (4-pack),3,2.99,2019-04-17 11:33:00,919 5th St, Los Angeles,CA,90001 +188785,Macbook Pro Laptop,1,1700.0,2019-04-16 14:38:00,917 Forest St, New York City,NY,10001 +188786,Lightning Charging Cable,1,14.95,2019-04-21 10:25:00,139 Forest St, San Francisco,CA,94016 +188787,Apple Airpods Headphones,1,150.0,2019-04-24 15:18:00,863 Spruce St, New York City,NY,10001 +188787,Lightning Charging Cable,1,14.95,2019-04-24 15:18:00,863 Spruce St, New York City,NY,10001 +188788,Macbook Pro Laptop,1,1700.0,2019-04-25 04:56:00,86 Park St, Los Angeles,CA,90001 +188789,Flatscreen TV,1,300.0,2019-04-12 22:47:00,614 Church St, San Francisco,CA,94016 +188790,34in Ultrawide Monitor,1,379.99,2019-04-08 13:11:00,271 Wilson St, Boston,MA,02215 +188791,Wired Headphones,1,11.99,2019-04-20 22:52:00,415 River St, Boston,MA,02215 +188792,Wired Headphones,1,11.99,2019-04-25 19:36:00,202 Lakeview St, Los Angeles,CA,90001 +188793,AAA Batteries (4-pack),3,2.99,2019-04-07 14:47:00,942 Adams St, New York City,NY,10001 +188794,AAA Batteries (4-pack),1,2.99,2019-04-23 06:58:00,739 5th St, Boston,MA,02215 +188795,Wired Headphones,1,11.99,2019-04-09 00:55:00,153 9th St, Los Angeles,CA,90001 +188796,USB-C Charging Cable,1,11.95,2019-04-07 15:44:00,929 Jefferson St, Boston,MA,02215 +188797,Lightning Charging Cable,1,14.95,2019-04-01 14:17:00,994 Hill St, Boston,MA,02215 +188798,AA Batteries (4-pack),1,3.84,2019-04-28 07:57:00,691 South St, San Francisco,CA,94016 +188799,AA Batteries (4-pack),1,3.84,2019-04-26 09:01:00,422 12th St, Atlanta,GA,30301 +188800,20in Monitor,1,109.99,2019-04-13 11:07:00,990 Willow St, San Francisco,CA,94016 +188801,Lightning Charging Cable,1,14.95,2019-04-08 04:08:00,459 Adams St, Los Angeles,CA,90001 +188802,34in Ultrawide Monitor,1,379.99,2019-04-16 07:01:00,904 Main St, New York City,NY,10001 +188803,Lightning Charging Cable,2,14.95,2019-04-25 21:27:00,533 10th St, San Francisco,CA,94016 +188804,34in Ultrawide Monitor,1,379.99,2019-04-15 11:20:00,156 Sunset St, New York City,NY,10001 +188805,Apple Airpods Headphones,1,150.0,2019-04-28 10:04:00,33 11th St, Los Angeles,CA,90001 +188806,AA Batteries (4-pack),1,3.84,2019-04-26 17:03:00,477 2nd St, Boston,MA,02215 +188807,Wired Headphones,1,11.99,2019-04-30 11:07:00,548 Ridge St, Portland,ME,04101 +188808,Bose SoundSport Headphones,1,99.99,2019-04-08 16:21:00,71 Dogwood St, San Francisco,CA,94016 +188809,AAA Batteries (4-pack),1,2.99,2019-04-26 16:01:00,35 Meadow St, Austin,TX,73301 +188810,Flatscreen TV,1,300.0,2019-04-23 23:35:00,242 10th St, San Francisco,CA,94016 +188811,34in Ultrawide Monitor,1,379.99,2019-04-06 20:47:00,402 Center St, San Francisco,CA,94016 +188812,AA Batteries (4-pack),1,3.84,2019-04-05 16:45:00,190 Hill St, Seattle,WA,98101 +188813,Bose SoundSport Headphones,1,99.99,2019-04-06 18:03:00,758 Elm St, Los Angeles,CA,90001 +188814,34in Ultrawide Monitor,1,379.99,2019-04-29 12:03:00,767 Jackson St, Seattle,WA,98101 +188815,Wired Headphones,2,11.99,2019-04-13 11:56:00,571 Maple St, New York City,NY,10001 +188816,Lightning Charging Cable,1,14.95,2019-04-19 16:32:00,695 Maple St, Los Angeles,CA,90001 +188817,AA Batteries (4-pack),1,3.84,2019-04-10 20:06:00,99 West St, Los Angeles,CA,90001 +188818,Wired Headphones,1,11.99,2019-04-29 20:33:00,612 Church St, San Francisco,CA,94016 +188819,Macbook Pro Laptop,1,1700.0,2019-04-29 20:43:00,812 Wilson St, Dallas,TX,75001 +188820,27in FHD Monitor,1,149.99,2019-04-06 13:56:00,183 River St, Boston,MA,02215 +188821,Apple Airpods Headphones,1,150.0,2019-04-22 12:20:00,900 Hill St, San Francisco,CA,94016 +188822,Apple Airpods Headphones,1,150.0,2019-04-29 15:21:00,399 Forest St, San Francisco,CA,94016 +188823,Flatscreen TV,1,300.0,2019-04-30 15:10:00,369 River St, Boston,MA,02215 +188824,Lightning Charging Cable,1,14.95,2019-04-04 18:43:00,323 Pine St, New York City,NY,10001 +188825,20in Monitor,1,109.99,2019-04-02 08:55:00,255 4th St, Los Angeles,CA,90001 +188826,Bose SoundSport Headphones,1,99.99,2019-04-12 22:42:00,847 Pine St, Atlanta,GA,30301 +188827,USB-C Charging Cable,1,11.95,2019-04-17 18:17:00,900 Spruce St, New York City,NY,10001 +188828,Apple Airpods Headphones,1,150.0,2019-04-20 13:56:00,672 9th St, Los Angeles,CA,90001 +188829,AA Batteries (4-pack),1,3.84,2019-04-22 15:58:00,831 Sunset St, Los Angeles,CA,90001 +188830,AA Batteries (4-pack),1,3.84,2019-04-27 15:39:00,253 Johnson St, Dallas,TX,75001 +188831,USB-C Charging Cable,2,11.95,2019-04-26 10:24:00,76 Willow St, San Francisco,CA,94016 +188832,27in FHD Monitor,1,149.99,2019-04-12 19:36:00,715 Pine St, Los Angeles,CA,90001 +188833,AA Batteries (4-pack),1,3.84,2019-04-27 20:45:00,411 9th St, San Francisco,CA,94016 +188834,27in 4K Gaming Monitor,1,389.99,2019-04-23 23:02:00,484 11th St, Boston,MA,02215 +188835,AAA Batteries (4-pack),1,2.99,2019-04-22 14:35:00,604 Walnut St, Los Angeles,CA,90001 +188836,Wired Headphones,1,11.99,2019-04-29 18:50:00,990 Hickory St, Los Angeles,CA,90001 +188837,USB-C Charging Cable,1,11.95,2019-04-10 19:36:00,974 North St, Los Angeles,CA,90001 +188838,AAA Batteries (4-pack),1,2.99,2019-04-14 22:49:00,433 9th St, San Francisco,CA,94016 +188839,Flatscreen TV,1,300.0,2019-04-30 09:27:00,147 8th St, Dallas,TX,75001 +188840,Wired Headphones,1,11.99,2019-04-06 14:30:00,543 Center St, New York City,NY,10001 +188841,Google Phone,1,600.0,2019-04-19 09:10:00,577 10th St, Los Angeles,CA,90001 +188842,Apple Airpods Headphones,1,150.0,2019-04-08 13:38:00,627 Chestnut St, New York City,NY,10001 +188843,Wired Headphones,1,11.99,2019-04-27 19:26:00,632 Cherry St, San Francisco,CA,94016 +188844,27in 4K Gaming Monitor,1,389.99,2019-04-14 23:06:00,34 South St, Los Angeles,CA,90001 +188845,AA Batteries (4-pack),1,3.84,2019-04-15 10:36:00,243 14th St, San Francisco,CA,94016 +188846,34in Ultrawide Monitor,1,379.99,2019-04-29 12:35:00,251 West St, New York City,NY,10001 +188847,Wired Headphones,1,11.99,2019-04-17 08:50:00,598 Ridge St, Portland,OR,97035 +188848,USB-C Charging Cable,1,11.95,2019-04-26 16:13:00,160 Lake St, Dallas,TX,75001 +188849,34in Ultrawide Monitor,1,379.99,2019-04-30 16:34:00,4 14th St, Dallas,TX,75001 +188850,AAA Batteries (4-pack),2,2.99,2019-04-20 15:33:00,276 Cedar St, Boston,MA,02215 +188851,27in 4K Gaming Monitor,1,389.99,2019-04-29 22:56:00,476 Willow St, Boston,MA,02215 +188852,27in FHD Monitor,1,149.99,2019-04-13 18:42:00,633 Ridge St, Boston,MA,02215 +188853,AAA Batteries (4-pack),1,2.99,2019-04-20 17:18:00,596 13th St, Portland,OR,97035 +188854,Google Phone,1,600.0,2019-04-01 17:11:00,216 2nd St, Boston,MA,02215 +188855,AAA Batteries (4-pack),2,2.99,2019-04-16 19:47:00,49 9th St, San Francisco,CA,94016 +188856,Wired Headphones,1,11.99,2019-04-26 16:06:00,903 Jackson St, Seattle,WA,98101 +188857,Apple Airpods Headphones,1,150.0,2019-04-04 17:54:00,126 Hill St, New York City,NY,10001 +188858,Bose SoundSport Headphones,1,99.99,2019-04-27 13:39:00,20 Ridge St, San Francisco,CA,94016 +188859,iPhone,1,700.0,2019-04-22 11:13:00,19 Pine St, Portland,OR,97035 +188859,Apple Airpods Headphones,1,150.0,2019-04-22 11:13:00,19 Pine St, Portland,OR,97035 +188860,AA Batteries (4-pack),1,3.84,2019-04-01 21:30:00,259 Adams St, San Francisco,CA,94016 +188861,Wired Headphones,1,11.99,2019-04-22 09:28:00,13 7th St, Boston,MA,02215 +188862,Bose SoundSport Headphones,1,99.99,2019-04-16 20:16:00,741 13th St, New York City,NY,10001 +188863,AAA Batteries (4-pack),1,2.99,2019-04-20 21:03:00,455 10th St, Atlanta,GA,30301 +188864,Wired Headphones,1,11.99,2019-04-06 08:03:00,629 Meadow St, Seattle,WA,98101 +188865,Macbook Pro Laptop,1,1700.0,2019-04-04 12:45:00,939 Adams St, Dallas,TX,75001 +188866,Wired Headphones,1,11.99,2019-04-14 00:00:00,216 Dogwood St, Atlanta,GA,30301 +188867,27in FHD Monitor,1,149.99,2019-04-05 20:50:00,297 Cedar St, Boston,MA,02215 +188868,AAA Batteries (4-pack),1,2.99,2019-04-17 18:14:00,75 Willow St, Austin,TX,73301 +188869,Google Phone,1,600.0,2019-04-03 12:59:00,134 Spruce St, Los Angeles,CA,90001 +188870,27in 4K Gaming Monitor,1,389.99,2019-04-14 16:48:00,753 Park St, Seattle,WA,98101 +188871,Wired Headphones,1,11.99,2019-04-03 19:32:00,715 Main St, Los Angeles,CA,90001 +188872,27in FHD Monitor,1,149.99,2019-04-18 19:06:00,809 9th St, San Francisco,CA,94016 +188873,Bose SoundSport Headphones,1,99.99,2019-04-13 15:51:00,908 4th St, Dallas,TX,75001 +188874,Lightning Charging Cable,1,14.95,2019-04-30 08:50:00,173 Hill St, San Francisco,CA,94016 +188875,AA Batteries (4-pack),1,3.84,2019-04-25 10:43:00,598 Church St, Los Angeles,CA,90001 +188876,LG Dryer,1,600.0,2019-04-14 12:48:00,16 Madison St, Los Angeles,CA,90001 +188877,Lightning Charging Cable,1,14.95,2019-04-04 08:32:00,441 10th St, San Francisco,CA,94016 +188878,27in 4K Gaming Monitor,1,389.99,2019-04-20 08:00:00,936 River St, Boston,MA,02215 +188879,Lightning Charging Cable,1,14.95,2019-04-12 18:02:00,67 Madison St, San Francisco,CA,94016 +188880,USB-C Charging Cable,1,11.95,2019-04-11 14:57:00,245 Willow St, Los Angeles,CA,90001 +188881,Google Phone,1,600.0,2019-04-19 18:18:00,872 7th St, Los Angeles,CA,90001 +188881,Bose SoundSport Headphones,1,99.99,2019-04-19 18:18:00,872 7th St, Los Angeles,CA,90001 +188881,Wired Headphones,1,11.99,2019-04-19 18:18:00,872 7th St, Los Angeles,CA,90001 +188882,Bose SoundSport Headphones,1,99.99,2019-04-06 10:50:00,81 Willow St, Dallas,TX,75001 +188883,Bose SoundSport Headphones,1,99.99,2019-04-17 21:31:00,617 7th St, Boston,MA,02215 +188884,USB-C Charging Cable,2,11.95,2019-04-06 18:57:00,747 14th St, Seattle,WA,98101 +188885,AA Batteries (4-pack),2,3.84,2019-04-17 18:12:00,275 Park St, Dallas,TX,75001 +188886,27in FHD Monitor,1,149.99,2019-04-22 21:28:00,544 Forest St, Atlanta,GA,30301 +188887,AAA Batteries (4-pack),1,2.99,2019-04-27 10:26:00,756 Forest St, San Francisco,CA,94016 +188888,USB-C Charging Cable,1,11.95,2019-04-16 13:08:00,894 Maple St, Boston,MA,02215 +188889,27in FHD Monitor,1,149.99,2019-04-16 13:03:00,934 Lakeview St, Los Angeles,CA,90001 +188890,Flatscreen TV,1,300.0,2019-04-08 10:21:00,321 Ridge St, Seattle,WA,98101 +188891,27in FHD Monitor,1,149.99,2019-04-28 15:21:00,504 Center St, Los Angeles,CA,90001 +188892,20in Monitor,1,109.99,2019-04-04 13:38:00,707 River St, San Francisco,CA,94016 +188893,USB-C Charging Cable,1,11.95,2019-04-14 08:24:00,330 Hill St, Boston,MA,02215 +188894,Lightning Charging Cable,1,14.95,2019-04-29 20:01:00,891 River St, San Francisco,CA,94016 +188895,AA Batteries (4-pack),1,3.84,2019-04-13 19:48:00,650 Highland St, Portland,OR,97035 +188896,AA Batteries (4-pack),1,3.84,2019-04-27 18:32:00,416 12th St, Seattle,WA,98101 +188897,Bose SoundSport Headphones,1,99.99,2019-04-12 17:38:00,185 5th St, Boston,MA,02215 +188898,Apple Airpods Headphones,1,150.0,2019-04-23 16:37:00,274 Lake St, Los Angeles,CA,90001 +188899,Bose SoundSport Headphones,1,99.99,2019-04-24 10:15:00,85 Dogwood St, San Francisco,CA,94016 +188900,Apple Airpods Headphones,1,150.0,2019-04-07 22:41:00,812 Washington St, Atlanta,GA,30301 +188901,Bose SoundSport Headphones,1,99.99,2019-04-09 14:46:00,453 South St, Austin,TX,73301 +188902,27in 4K Gaming Monitor,1,389.99,2019-04-15 08:48:00,791 4th St, Boston,MA,02215 +188903,27in FHD Monitor,1,149.99,2019-04-28 10:33:00,818 Lincoln St, Los Angeles,CA,90001 +188904,iPhone,1,700.0,2019-04-20 15:01:00,281 Church St, Portland,OR,97035 +188904,Wired Headphones,1,11.99,2019-04-20 15:01:00,281 Church St, Portland,OR,97035 +188905,Bose SoundSport Headphones,1,99.99,2019-04-27 10:19:00,261 Jackson St, Austin,TX,73301 +188906,LG Dryer,1,600.0,2019-04-27 15:47:00,230 8th St, Los Angeles,CA,90001 +188907,Lightning Charging Cable,2,14.95,2019-04-16 13:29:00,21 Jackson St, San Francisco,CA,94016 +188908,Lightning Charging Cable,1,14.95,2019-04-25 02:09:00,511 11th St, Los Angeles,CA,90001 +188909,Google Phone,1,600.0,2019-04-18 08:31:00,815 Forest St, Los Angeles,CA,90001 +188910,Bose SoundSport Headphones,1,99.99,2019-04-10 15:17:00,779 9th St, San Francisco,CA,94016 +188911,Flatscreen TV,1,300.0,2019-04-18 23:58:00,129 8th St, Portland,OR,97035 +188912,Wired Headphones,1,11.99,2019-04-23 14:38:00,162 4th St, New York City,NY,10001 +188913,Bose SoundSport Headphones,1,99.99,2019-04-04 11:44:00,224 Dogwood St, Seattle,WA,98101 +188914,iPhone,1,700.0,2019-04-19 18:55:00,327 Dogwood St, San Francisco,CA,94016 +188915,Wired Headphones,1,11.99,2019-04-02 08:45:00,53 Walnut St, New York City,NY,10001 +188916,AAA Batteries (4-pack),1,2.99,2019-04-09 09:13:00,724 Jackson St, Los Angeles,CA,90001 +188917,Apple Airpods Headphones,1,150.0,2019-04-11 09:45:00,484 Meadow St, San Francisco,CA,94016 +188918,USB-C Charging Cable,1,11.95,2019-04-16 13:39:00,183 13th St, San Francisco,CA,94016 +188919,Wired Headphones,2,11.99,2019-04-25 17:27:00,124 Madison St, Los Angeles,CA,90001 +188920,Google Phone,1,600.0,2019-04-09 23:03:00,250 North St, San Francisco,CA,94016 +188920,USB-C Charging Cable,1,11.95,2019-04-09 23:03:00,250 North St, San Francisco,CA,94016 +188921,Apple Airpods Headphones,1,150.0,2019-04-03 22:23:00,389 Highland St, San Francisco,CA,94016 +188922,Macbook Pro Laptop,1,1700.0,2019-04-13 16:39:00,904 Jefferson St, San Francisco,CA,94016 +188923,AAA Batteries (4-pack),2,2.99,2019-04-27 19:11:00,328 14th St, Seattle,WA,98101 +188924,USB-C Charging Cable,1,11.95,2019-04-05 00:34:00,319 13th St, San Francisco,CA,94016 +188925,USB-C Charging Cable,2,11.95,2019-04-28 10:43:00,180 4th St, Seattle,WA,98101 +188926,Flatscreen TV,1,300.0,2019-04-23 15:06:00,565 10th St, San Francisco,CA,94016 +188927,ThinkPad Laptop,1,999.99,2019-04-16 19:16:00,58 2nd St, San Francisco,CA,94016 +188928,AAA Batteries (4-pack),3,2.99,2019-04-12 22:35:00,737 Jefferson St, San Francisco,CA,94016 +188929,AAA Batteries (4-pack),1,2.99,2019-04-18 15:47:00,809 Church St, Dallas,TX,75001 +188930,27in 4K Gaming Monitor,1,389.99,2019-04-14 04:44:00,472 Jackson St, Austin,TX,73301 +188931,Macbook Pro Laptop,1,1700.0,2019-04-08 22:26:00,488 Ridge St, Atlanta,GA,30301 +188932,Flatscreen TV,1,300.0,2019-04-29 11:45:00,325 Church St, Los Angeles,CA,90001 +188933,Wired Headphones,1,11.99,2019-04-02 08:42:00,908 Pine St, Seattle,WA,98101 +188934,USB-C Charging Cable,1,11.95,2019-04-18 09:30:00,901 Spruce St, Los Angeles,CA,90001 +188935,USB-C Charging Cable,1,11.95,2019-04-19 12:24:00,4 Lakeview St, Seattle,WA,98101 +188936,iPhone,1,700.0,2019-04-14 13:27:00,953 Ridge St, Los Angeles,CA,90001 +188937,Lightning Charging Cable,1,14.95,2019-04-27 16:22:00,962 Park St, San Francisco,CA,94016 +188938,AAA Batteries (4-pack),2,2.99,2019-04-15 19:46:00,698 Elm St, Atlanta,GA,30301 +188939,AAA Batteries (4-pack),1,2.99,2019-04-11 14:21:00,669 4th St, Los Angeles,CA,90001 +188940,Bose SoundSport Headphones,1,99.99,2019-04-08 20:27:00,271 Cedar St, San Francisco,CA,94016 +188941,AA Batteries (4-pack),4,3.84,2019-04-26 15:27:00,196 12th St, Los Angeles,CA,90001 +188942,Wired Headphones,1,11.99,2019-04-19 19:35:00,205 7th St, Portland,OR,97035 +188943,34in Ultrawide Monitor,1,379.99,2019-04-10 20:40:00,779 Maple St, New York City,NY,10001 +188944,USB-C Charging Cable,1,11.95,2019-04-02 18:56:00,824 Dogwood St, San Francisco,CA,94016 +188945,Google Phone,1,600.0,2019-04-09 15:58:00,119 Hickory St, Portland,OR,97035 +188946,27in FHD Monitor,1,149.99,2019-04-27 22:03:00,260 7th St, New York City,NY,10001 +188947,Bose SoundSport Headphones,1,99.99,2019-04-17 19:23:00,437 12th St, New York City,NY,10001 +188948,Apple Airpods Headphones,1,150.0,2019-04-25 18:49:00,751 Chestnut St, New York City,NY,10001 +188949,Lightning Charging Cable,1,14.95,2019-04-11 08:13:00,584 Church St, New York City,NY,10001 +188950,AAA Batteries (4-pack),1,2.99,2019-04-05 06:30:00,591 10th St, San Francisco,CA,94016 +188951,USB-C Charging Cable,1,11.95,2019-04-20 18:45:00,790 Church St, Seattle,WA,98101 +188952,USB-C Charging Cable,1,11.95,2019-04-19 14:01:00,383 Sunset St, San Francisco,CA,94016 +188953,AAA Batteries (4-pack),5,2.99,2019-04-30 09:32:00,20 Maple St, Los Angeles,CA,90001 +188954,AAA Batteries (4-pack),2,2.99,2019-04-13 15:49:00,737 Highland St, Dallas,TX,75001 +188955,27in 4K Gaming Monitor,1,389.99,2019-04-22 13:33:00,533 1st St, Seattle,WA,98101 +188956,34in Ultrawide Monitor,1,379.99,2019-04-03 16:49:00,54 Highland St, Boston,MA,02215 +188957,34in Ultrawide Monitor,1,379.99,2019-04-04 09:31:00,923 Spruce St, San Francisco,CA,94016 +188958,Wired Headphones,1,11.99,2019-04-12 20:38:00,189 9th St, Dallas,TX,75001 +188959,AA Batteries (4-pack),1,3.84,2019-04-28 09:32:00,494 Cherry St, Atlanta,GA,30301 +188960,Lightning Charging Cable,1,14.95,2019-04-08 16:46:00,823 Main St, San Francisco,CA,94016 +188961,27in FHD Monitor,1,149.99,2019-04-08 20:35:00,762 Sunset St, Seattle,WA,98101 +188962,AA Batteries (4-pack),1,3.84,2019-04-21 10:14:00,751 Center St, San Francisco,CA,94016 +188963,Apple Airpods Headphones,1,150.0,2019-04-13 12:10:00,198 Forest St, New York City,NY,10001 +188964,27in FHD Monitor,1,149.99,2019-04-17 19:10:00,843 Pine St, Boston,MA,02215 +188965,Apple Airpods Headphones,1,150.0,2019-04-06 12:51:00,582 Ridge St, Atlanta,GA,30301 +188966,27in FHD Monitor,1,149.99,2019-04-29 11:18:00,236 1st St, Austin,TX,73301 +188967,AA Batteries (4-pack),1,3.84,2019-04-01 21:36:00,364 11th St, New York City,NY,10001 +188968,20in Monitor,1,109.99,2019-04-09 23:42:00,638 Sunset St, Dallas,TX,75001 +188969,Apple Airpods Headphones,1,150.0,2019-04-14 19:05:00,330 Park St, San Francisco,CA,94016 +188970,27in 4K Gaming Monitor,1,389.99,2019-04-10 20:01:00,204 Pine St, San Francisco,CA,94016 +188971,USB-C Charging Cable,1,11.95,2019-04-04 12:54:00,314 Madison St, Los Angeles,CA,90001 +188972,Apple Airpods Headphones,1,150.0,2019-04-30 19:34:00,181 7th St, Atlanta,GA,30301 +188973,Flatscreen TV,1,300.0,2019-04-12 15:35:00,659 Chestnut St, Portland,OR,97035 +188974,Lightning Charging Cable,1,14.95,2019-04-05 19:06:00,409 13th St, Seattle,WA,98101 +188975,AAA Batteries (4-pack),1,2.99,2019-04-16 16:30:00,593 Forest St, Portland,OR,97035 +188976,Wired Headphones,1,11.99,2019-04-07 15:57:00,428 11th St, Austin,TX,73301 +188977,27in FHD Monitor,1,149.99,2019-04-11 20:00:00,418 Cherry St, Los Angeles,CA,90001 +188978,27in 4K Gaming Monitor,1,389.99,2019-04-20 15:21:00,578 Elm St, Austin,TX,73301 +188979,27in FHD Monitor,1,149.99,2019-04-04 21:31:00,608 River St, San Francisco,CA,94016 +188980,USB-C Charging Cable,1,11.95,2019-04-20 19:45:00,74 Sunset St, Los Angeles,CA,90001 +188981,Wired Headphones,1,11.99,2019-04-08 16:07:00,941 Sunset St, Portland,ME,04101 +188982,Apple Airpods Headphones,1,150.0,2019-04-13 21:20:00,224 Lincoln St, San Francisco,CA,94016 +188983,AAA Batteries (4-pack),1,2.99,2019-04-25 13:16:00,794 South St, San Francisco,CA,94016 +188984,27in FHD Monitor,1,149.99,2019-04-10 15:03:00,48 Jackson St, San Francisco,CA,94016 +188985,Macbook Pro Laptop,1,1700.0,2019-04-12 00:38:00,962 Forest St, Austin,TX,73301 +188986,Lightning Charging Cable,1,14.95,2019-04-19 16:49:00,684 Cherry St, Boston,MA,02215 +188987,AAA Batteries (4-pack),1,2.99,2019-04-29 21:56:00,381 Highland St, New York City,NY,10001 +188988,Bose SoundSport Headphones,1,99.99,2019-04-30 12:11:00,13 Cedar St, Los Angeles,CA,90001 +188989,Apple Airpods Headphones,1,150.0,2019-04-16 12:16:00,804 13th St, Atlanta,GA,30301 +188990,Flatscreen TV,1,300.0,2019-04-27 19:08:00,233 9th St, Portland,OR,97035 +188991,AA Batteries (4-pack),1,3.84,2019-04-10 15:21:00,229 South St, Los Angeles,CA,90001 +188992,Wired Headphones,1,11.99,2019-04-06 16:11:00,85 North St, New York City,NY,10001 +188993,AA Batteries (4-pack),2,3.84,2019-04-20 10:49:00,963 Pine St, San Francisco,CA,94016 +188994,ThinkPad Laptop,1,999.99,2019-04-27 23:47:00,682 Ridge St, Los Angeles,CA,90001 +188994,AA Batteries (4-pack),2,3.84,2019-04-27 23:47:00,682 Ridge St, Los Angeles,CA,90001 +188995,34in Ultrawide Monitor,1,379.99,2019-04-03 12:16:00,469 9th St, San Francisco,CA,94016 +188996,Apple Airpods Headphones,1,150.0,2019-04-18 14:47:00,103 4th St, New York City,NY,10001 +188997,Google Phone,1,600.0,2019-04-11 19:56:00,653 Dogwood St, Los Angeles,CA,90001 +188998,AA Batteries (4-pack),1,3.84,2019-04-06 22:17:00,204 Maple St, Los Angeles,CA,90001 +188999,AAA Batteries (4-pack),1,2.99,2019-04-29 10:46:00,664 Lake St, San Francisco,CA,94016 +189000,AA Batteries (4-pack),1,3.84,2019-04-26 09:11:00,849 Ridge St, San Francisco,CA,94016 +189001,Bose SoundSport Headphones,1,99.99,2019-04-01 07:01:00,898 Jefferson St, Atlanta,GA,30301 +189002,USB-C Charging Cable,1,11.95,2019-04-24 19:44:00,472 4th St, San Francisco,CA,94016 +189003,LG Washing Machine,1,600.0,2019-04-26 17:12:00,358 Main St, San Francisco,CA,94016 +189004,Wired Headphones,1,11.99,2019-04-07 23:47:00,375 Maple St, Dallas,TX,75001 +189005,USB-C Charging Cable,1,11.95,2019-04-29 12:22:00,969 14th St, Boston,MA,02215 +189006,Wired Headphones,1,11.99,2019-04-06 13:36:00,716 1st St, Dallas,TX,75001 +189007,Wired Headphones,1,11.99,2019-04-27 03:30:00,192 Jackson St, New York City,NY,10001 +189008,Macbook Pro Laptop,1,1700.0,2019-04-26 23:39:00,754 Hickory St, Dallas,TX,75001 +189009,AAA Batteries (4-pack),1,2.99,2019-04-12 12:51:00,153 Cherry St, San Francisco,CA,94016 +189010,Macbook Pro Laptop,1,1700.0,2019-04-25 13:10:00,256 Washington St, San Francisco,CA,94016 +189011,Bose SoundSport Headphones,1,99.99,2019-04-29 10:49:00,898 Adams St, Atlanta,GA,30301 +189012,Vareebadd Phone,1,400.0,2019-04-09 10:50:00,339 13th St, New York City,NY,10001 +189013,Google Phone,1,600.0,2019-04-18 16:01:00,401 8th St, Dallas,TX,75001 +189014,20in Monitor,1,109.99,2019-04-22 15:33:00,303 Madison St, San Francisco,CA,94016 +189015,Vareebadd Phone,1,400.0,2019-04-26 06:36:00,64 Lakeview St, Seattle,WA,98101 +189016,AA Batteries (4-pack),2,3.84,2019-04-06 08:51:00,351 Willow St, Portland,OR,97035 +189017,Apple Airpods Headphones,1,150.0,2019-04-25 20:43:00,291 13th St, Los Angeles,CA,90001 +189018,USB-C Charging Cable,1,11.95,2019-04-11 19:26:00,789 Spruce St, Seattle,WA,98101 +189019,iPhone,1,700.0,2019-04-28 13:46:00,327 12th St, Boston,MA,02215 +189019,Lightning Charging Cable,1,14.95,2019-04-28 13:46:00,327 12th St, Boston,MA,02215 +189020,20in Monitor,1,109.99,2019-04-27 09:35:00,485 8th St, Los Angeles,CA,90001 +189021,AA Batteries (4-pack),1,3.84,2019-04-05 15:58:00,867 Willow St, San Francisco,CA,94016 +189022,AAA Batteries (4-pack),1,2.99,2019-04-16 19:22:00,419 Lakeview St, New York City,NY,10001 +189023,AA Batteries (4-pack),1,3.84,2019-04-17 17:44:00,96 Hill St, Los Angeles,CA,90001 +189024,27in FHD Monitor,1,149.99,2019-04-13 20:01:00,82 1st St, Boston,MA,02215 +189025,Lightning Charging Cable,1,14.95,2019-04-06 17:46:00,357 Cherry St, San Francisco,CA,94016 +189026,AA Batteries (4-pack),1,3.84,2019-04-13 19:27:00,702 Dogwood St, Boston,MA,02215 +189027,USB-C Charging Cable,2,11.95,2019-04-28 20:29:00,702 2nd St, Boston,MA,02215 +189028,34in Ultrawide Monitor,1,379.99,2019-04-25 17:46:00,206 Dogwood St, Boston,MA,02215 +189029,iPhone,1,700.0,2019-04-16 18:45:00,163 Johnson St, San Francisco,CA,94016 +189030,Wired Headphones,1,11.99,2019-04-15 15:19:00,132 2nd St, San Francisco,CA,94016 +189031,Apple Airpods Headphones,1,150.0,2019-04-24 17:23:00,260 South St, Boston,MA,02215 +189032,iPhone,1,700.0,2019-04-18 08:51:00,962 West St, San Francisco,CA,94016 +189033,AAA Batteries (4-pack),2,2.99,2019-04-09 22:27:00,648 Forest St, Dallas,TX,75001 +189034,USB-C Charging Cable,1,11.95,2019-04-05 18:38:00,276 Highland St, Seattle,WA,98101 +189035,AA Batteries (4-pack),1,3.84,2019-04-26 17:23:00,151 Jefferson St, Portland,OR,97035 +189036,AA Batteries (4-pack),3,3.84,2019-04-02 06:06:00,627 12th St, Los Angeles,CA,90001 +189036,Wired Headphones,1,11.99,2019-04-02 06:06:00,627 12th St, Los Angeles,CA,90001 +189037,Lightning Charging Cable,1,14.95,2019-04-08 16:53:00,85 Ridge St, Los Angeles,CA,90001 +189038,AA Batteries (4-pack),1,3.84,2019-04-24 19:40:00,204 2nd St, San Francisco,CA,94016 +189039,Wired Headphones,1,11.99,2019-04-25 23:05:00,293 Walnut St, San Francisco,CA,94016 +189040,Bose SoundSport Headphones,1,99.99,2019-04-22 19:08:00,317 Madison St, San Francisco,CA,94016 +189041,Bose SoundSport Headphones,1,99.99,2019-04-11 21:49:00,882 Walnut St, Los Angeles,CA,90001 +189042,Macbook Pro Laptop,1,1700.0,2019-04-13 17:49:00,791 Cedar St, Seattle,WA,98101 +189043,Vareebadd Phone,1,400.0,2019-04-13 15:33:00,122 Lincoln St, Atlanta,GA,30301 +189043,Wired Headphones,1,11.99,2019-04-13 15:33:00,122 Lincoln St, Atlanta,GA,30301 +189044,Apple Airpods Headphones,1,150.0,2019-04-20 18:35:00,13 Chestnut St, Portland,ME,04101 +189045,AAA Batteries (4-pack),1,2.99,2019-04-21 22:54:00,599 Lincoln St, Los Angeles,CA,90001 +189046,Bose SoundSport Headphones,1,99.99,2019-04-23 00:20:00,274 Cherry St, San Francisco,CA,94016 +189047,27in FHD Monitor,1,149.99,2019-04-17 18:17:00,43 7th St, Los Angeles,CA,90001 +189048,AA Batteries (4-pack),2,3.84,2019-04-22 04:20:00,437 Main St, New York City,NY,10001 +189049,AA Batteries (4-pack),1,3.84,2019-04-14 23:01:00,763 6th St, Portland,OR,97035 +189050,Apple Airpods Headphones,1,150.0,2019-04-27 19:23:00,220 5th St, Portland,ME,04101 +189051,AA Batteries (4-pack),1,3.84,2019-04-13 01:41:00,375 4th St, San Francisco,CA,94016 +189052,Wired Headphones,1,11.99,2019-04-06 14:29:00,720 Willow St, New York City,NY,10001 +189053,Flatscreen TV,1,300.0,2019-04-21 17:09:00,410 6th St, Dallas,TX,75001 +189054,Lightning Charging Cable,1,14.95,2019-04-13 17:15:00,415 Lake St, San Francisco,CA,94016 +189055,Lightning Charging Cable,1,14.95,2019-04-27 16:37:00,629 River St, Atlanta,GA,30301 +189056,27in FHD Monitor,1,149.99,2019-04-06 00:43:00,506 Spruce St, Boston,MA,02215 +189057,Bose SoundSport Headphones,1,99.99,2019-04-18 12:11:00,298 7th St, Atlanta,GA,30301 +189058,27in 4K Gaming Monitor,1,389.99,2019-04-05 12:05:00,261 Lincoln St, Austin,TX,73301 +189059,Bose SoundSport Headphones,1,99.99,2019-04-29 17:56:00,968 5th St, San Francisco,CA,94016 +189060,ThinkPad Laptop,1,999.99,2019-04-11 15:07:00,70 Wilson St, Atlanta,GA,30301 +189061,Wired Headphones,1,11.99,2019-04-02 06:26:00,469 Maple St, Atlanta,GA,30301 +189062,AA Batteries (4-pack),1,3.84,2019-04-24 12:51:00,97 Cherry St, San Francisco,CA,94016 +189063,AA Batteries (4-pack),1,3.84,2019-04-29 13:51:00,472 West St, Dallas,TX,75001 +189064,ThinkPad Laptop,1,999.99,2019-04-11 06:47:00,360 5th St, Seattle,WA,98101 +189065,Apple Airpods Headphones,1,150.0,2019-04-27 11:28:00,936 Johnson St, Boston,MA,02215 +189066,Bose SoundSport Headphones,1,99.99,2019-04-01 18:18:00,459 12th St, Los Angeles,CA,90001 +189067,Apple Airpods Headphones,1,150.0,2019-04-22 10:59:00,402 Lake St, Los Angeles,CA,90001 +189068,Macbook Pro Laptop,1,1700.0,2019-04-24 11:42:00,402 Walnut St, Los Angeles,CA,90001 +189069,Wired Headphones,1,11.99,2019-04-12 17:46:00,93 8th St, San Francisco,CA,94016 +189070,Wired Headphones,1,11.99,2019-04-29 13:58:00,396 9th St, Seattle,WA,98101 +189071,iPhone,1,700.0,2019-04-11 15:05:00,483 Pine St, Boston,MA,02215 +189071,Lightning Charging Cable,1,14.95,2019-04-11 15:05:00,483 Pine St, Boston,MA,02215 +189072,27in FHD Monitor,1,149.99,2019-04-13 19:44:00,62 5th St, Portland,OR,97035 +189073,LG Washing Machine,1,600.0,2019-04-02 19:11:00,819 14th St, Boston,MA,02215 +189074,AAA Batteries (4-pack),2,2.99,2019-04-12 16:01:00,968 Pine St, Boston,MA,02215 +189075,27in 4K Gaming Monitor,1,389.99,2019-04-21 18:24:00,793 Willow St, Boston,MA,02215 +189076,Bose SoundSport Headphones,1,99.99,2019-04-25 01:19:00,944 7th St, Boston,MA,02215 +189077,iPhone,1,700.0,2019-04-07 18:05:00,596 12th St, Boston,MA,02215 +189078,Wired Headphones,1,11.99,2019-04-10 12:26:00,218 Maple St, Los Angeles,CA,90001 +189079,Macbook Pro Laptop,1,1700.0,2019-04-16 20:21:00,360 14th St, San Francisco,CA,94016 +189080,Flatscreen TV,1,300.0,2019-04-02 08:32:00,541 Forest St, Portland,OR,97035 +189081,AAA Batteries (4-pack),1,2.99,2019-04-26 16:44:00,930 Lake St, Boston,MA,02215 +189082,AA Batteries (4-pack),1,3.84,2019-04-08 17:38:00,134 Jefferson St, San Francisco,CA,94016 +189083,Apple Airpods Headphones,1,150.0,2019-04-15 18:33:00,209 Hill St, San Francisco,CA,94016 +189084,AAA Batteries (4-pack),1,2.99,2019-04-08 21:40:00,601 Washington St, Atlanta,GA,30301 +189085,USB-C Charging Cable,1,11.95,2019-04-23 23:27:00,568 Walnut St, Los Angeles,CA,90001 +189086,34in Ultrawide Monitor,1,379.99,2019-04-19 23:26:00,598 Church St, Los Angeles,CA,90001 +189087,Lightning Charging Cable,2,14.95,2019-04-14 23:33:00,20 Main St, Dallas,TX,75001 +189088,Bose SoundSport Headphones,1,99.99,2019-04-07 20:11:00,882 Lake St, New York City,NY,10001 +189089,Macbook Pro Laptop,1,1700.0,2019-04-13 22:00:00,704 Maple St, San Francisco,CA,94016 +189090,USB-C Charging Cable,1,11.95,2019-04-17 13:12:00,923 Pine St, San Francisco,CA,94016 +189091,ThinkPad Laptop,1,999.99,2019-04-26 16:05:00,852 12th St, Atlanta,GA,30301 +189092,USB-C Charging Cable,1,11.95,2019-04-30 16:49:00,321 5th St, San Francisco,CA,94016 +189093,Lightning Charging Cable,1,14.95,2019-04-04 18:49:00,372 South St, San Francisco,CA,94016 +189094,USB-C Charging Cable,1,11.95,2019-04-18 10:40:00,973 West St, New York City,NY,10001 +189095,AA Batteries (4-pack),1,3.84,2019-04-30 21:17:00,167 8th St, Los Angeles,CA,90001 +189096,Bose SoundSport Headphones,1,99.99,2019-04-19 10:45:00,665 Ridge St, Dallas,TX,75001 +189097,AAA Batteries (4-pack),1,2.99,2019-04-08 10:24:00,706 Park St, Boston,MA,02215 +189098,AA Batteries (4-pack),4,3.84,2019-04-29 20:26:00,177 10th St, New York City,NY,10001 +189099,AA Batteries (4-pack),1,3.84,2019-04-04 08:20:00,43 Maple St, San Francisco,CA,94016 +189100,Lightning Charging Cable,1,14.95,2019-04-03 21:04:00,695 Highland St, San Francisco,CA,94016 +189101,Apple Airpods Headphones,1,150.0,2019-04-24 19:15:00,265 South St, New York City,NY,10001 +189102,Bose SoundSport Headphones,1,99.99,2019-04-08 15:43:00,952 Spruce St, San Francisco,CA,94016 +189103,Bose SoundSport Headphones,1,99.99,2019-04-15 10:32:00,358 2nd St, San Francisco,CA,94016 +189104,Wired Headphones,1,11.99,2019-04-30 08:43:00,14 Center St, Los Angeles,CA,90001 +189105,AA Batteries (4-pack),1,3.84,2019-04-17 14:21:00,5 Chestnut St, Los Angeles,CA,90001 +189106,Bose SoundSport Headphones,1,99.99,2019-04-12 20:14:00,153 Cedar St, Seattle,WA,98101 +189107,Wired Headphones,1,11.99,2019-04-12 01:18:00,848 Lake St, Dallas,TX,75001 +189108,Google Phone,1,600.0,2019-04-10 07:22:00,196 Meadow St, Boston,MA,02215 +189108,USB-C Charging Cable,1,11.95,2019-04-10 07:22:00,196 Meadow St, Boston,MA,02215 +189109,USB-C Charging Cable,1,11.95,2019-04-23 17:05:00,646 West St, Los Angeles,CA,90001 +189110,Apple Airpods Headphones,1,150.0,2019-04-11 00:27:00,627 Church St, San Francisco,CA,94016 +189111,27in 4K Gaming Monitor,1,389.99,2019-04-27 13:03:00,663 4th St, Portland,OR,97035 +189112,Apple Airpods Headphones,1,150.0,2019-04-10 17:08:00,595 Hill St, New York City,NY,10001 +189113,AA Batteries (4-pack),1,3.84,2019-04-11 20:51:00,533 Walnut St, Los Angeles,CA,90001 +189114,AA Batteries (4-pack),1,3.84,2019-04-14 20:23:00,234 Washington St, Seattle,WA,98101 +189115,USB-C Charging Cable,1,11.95,2019-04-25 11:19:00,819 Lake St, New York City,NY,10001 +189116,Wired Headphones,1,11.99,2019-04-20 14:31:00,607 South St, Los Angeles,CA,90001 +189117,Macbook Pro Laptop,1,1700.0,2019-04-24 09:43:00,779 West St, Atlanta,GA,30301 +189118,AAA Batteries (4-pack),1,2.99,2019-04-29 16:15:00,180 13th St, San Francisco,CA,94016 +189119,AA Batteries (4-pack),1,3.84,2019-04-01 22:22:00,960 Meadow St, San Francisco,CA,94016 +189120,USB-C Charging Cable,1,11.95,2019-04-28 09:52:00,227 Jefferson St, Portland,OR,97035 +189121,AA Batteries (4-pack),1,3.84,2019-04-23 12:40:00,839 Cedar St, Dallas,TX,75001 +189122,USB-C Charging Cable,1,11.95,2019-04-29 13:16:00,947 Maple St, New York City,NY,10001 +189123,27in 4K Gaming Monitor,1,389.99,2019-04-17 00:58:00,184 Highland St, San Francisco,CA,94016 +189124,Wired Headphones,1,11.99,2019-04-05 11:15:00,886 Willow St, Dallas,TX,75001 +189125,USB-C Charging Cable,1,11.95,2019-04-27 23:38:00,963 8th St, Los Angeles,CA,90001 +189126,Wired Headphones,1,11.99,2019-04-12 19:54:00,492 Cherry St, Dallas,TX,75001 +189127,Wired Headphones,1,11.99,2019-04-24 16:49:00,159 Washington St, Atlanta,GA,30301 +189128,Flatscreen TV,1,300.0,2019-04-03 14:17:00,627 10th St, Dallas,TX,75001 +189129,ThinkPad Laptop,1,999.99,2019-04-26 16:49:00,616 South St, San Francisco,CA,94016 +189130,AA Batteries (4-pack),1,3.84,2019-04-17 10:25:00,336 Wilson St, San Francisco,CA,94016 +189131,Wired Headphones,1,11.99,2019-04-07 00:06:00,724 Hickory St, Seattle,WA,98101 +189132,Wired Headphones,1,11.99,2019-04-12 11:23:00,13 Madison St, San Francisco,CA,94016 +189133,Google Phone,1,600.0,2019-04-18 11:01:00,701 10th St, Portland,ME,04101 +189133,USB-C Charging Cable,1,11.95,2019-04-18 11:01:00,701 10th St, Portland,ME,04101 +189134,iPhone,1,700.0,2019-04-15 15:42:00,186 4th St, New York City,NY,10001 +189135,Lightning Charging Cable,1,14.95,2019-04-15 23:32:00,358 14th St, San Francisco,CA,94016 +189136,27in 4K Gaming Monitor,1,389.99,2019-04-28 09:58:00,827 7th St, San Francisco,CA,94016 +189137,AAA Batteries (4-pack),1,2.99,2019-04-24 22:44:00,471 Madison St, Los Angeles,CA,90001 +189138,Wired Headphones,1,11.99,2019-04-09 18:53:00,984 West St, Atlanta,GA,30301 +189139,Vareebadd Phone,1,400.0,2019-04-10 14:39:00,109 Cherry St, Atlanta,GA,30301 +189140,Bose SoundSport Headphones,1,99.99,2019-04-11 22:04:00,580 Forest St, New York City,NY,10001 +189141,Lightning Charging Cable,1,14.95,2019-04-07 13:29:00,337 13th St, San Francisco,CA,94016 +189142,USB-C Charging Cable,1,11.95,2019-04-09 19:36:00,810 Maple St, Portland,OR,97035 +189143,Lightning Charging Cable,1,14.95,2019-04-23 06:30:00,400 Lakeview St, San Francisco,CA,94016 +189144,Lightning Charging Cable,1,14.95,2019-04-01 09:43:00,866 Wilson St, Los Angeles,CA,90001 +189145,USB-C Charging Cable,1,11.95,2019-04-11 21:12:00,285 13th St, San Francisco,CA,94016 +189146,AA Batteries (4-pack),1,3.84,2019-04-24 14:42:00,189 Meadow St, New York City,NY,10001 +189147,USB-C Charging Cable,1,11.95,2019-04-25 18:28:00,612 6th St, San Francisco,CA,94016 +189148,Bose SoundSport Headphones,1,99.99,2019-04-02 02:22:00,388 Chestnut St, New York City,NY,10001 +189149,20in Monitor,1,109.99,2019-04-29 10:46:00,501 8th St, Atlanta,GA,30301 +189150,AAA Batteries (4-pack),1,2.99,2019-04-01 18:50:00,222 Walnut St, Atlanta,GA,30301 +189151,Wired Headphones,1,11.99,2019-04-21 08:53:00,590 Walnut St, Atlanta,GA,30301 +189152,Google Phone,1,600.0,2019-04-01 07:40:00,809 North St, San Francisco,CA,94016 +189153,AAA Batteries (4-pack),1,2.99,2019-04-22 19:25:00,712 Dogwood St, Los Angeles,CA,90001 +189154,Wired Headphones,1,11.99,2019-04-30 11:16:00,228 West St, New York City,NY,10001 +189155,AA Batteries (4-pack),1,3.84,2019-04-17 13:18:00,106 Elm St, San Francisco,CA,94016 +189156,USB-C Charging Cable,2,11.95,2019-04-29 10:11:00,35 10th St, Portland,OR,97035 +189157,ThinkPad Laptop,1,999.99,2019-04-29 21:32:00,385 2nd St, Dallas,TX,75001 +189158,Apple Airpods Headphones,1,150.0,2019-04-06 16:09:00,936 River St, Seattle,WA,98101 +189159,USB-C Charging Cable,1,11.95,2019-04-26 16:07:00,383 2nd St, Dallas,TX,75001 +189160,Apple Airpods Headphones,1,150.0,2019-04-12 21:27:00,159 Hill St, Los Angeles,CA,90001 +189161,AA Batteries (4-pack),1,3.84,2019-04-19 22:57:00,279 Lake St, Dallas,TX,75001 +189162,Wired Headphones,1,11.99,2019-04-17 21:12:00,52 Maple St, Dallas,TX,75001 +189163,iPhone,1,700.0,2019-04-30 19:33:00,310 4th St, San Francisco,CA,94016 +189164,Google Phone,1,600.0,2019-04-12 12:40:00,707 Center St, San Francisco,CA,94016 +189164,Wired Headphones,1,11.99,2019-04-12 12:40:00,707 Center St, San Francisco,CA,94016 +189165,USB-C Charging Cable,1,11.95,2019-04-30 10:26:00,75 Hickory St, San Francisco,CA,94016 +189166,AA Batteries (4-pack),1,3.84,2019-04-22 19:28:00,381 Spruce St, San Francisco,CA,94016 +189167,27in FHD Monitor,1,149.99,2019-04-14 16:53:00,996 Hickory St, Portland,OR,97035 +189168,Bose SoundSport Headphones,1,99.99,2019-04-22 09:34:00,922 Church St, San Francisco,CA,94016 +189169,iPhone,1,700.0,2019-04-14 21:01:00,343 Main St, Dallas,TX,75001 +189170,Lightning Charging Cable,1,14.95,2019-04-21 07:23:00,785 Madison St, San Francisco,CA,94016 +189171,Lightning Charging Cable,1,14.95,2019-04-11 21:43:00,862 14th St, New York City,NY,10001 +189172,AAA Batteries (4-pack),1,2.99,2019-04-16 18:03:00,656 13th St, Los Angeles,CA,90001 +189173,Lightning Charging Cable,1,14.95,2019-04-05 15:07:00,294 Willow St, Boston,MA,02215 +189174,Lightning Charging Cable,1,14.95,2019-04-24 19:39:00,869 10th St, Los Angeles,CA,90001 +189175,27in 4K Gaming Monitor,1,389.99,2019-04-22 16:56:00,386 Lincoln St, Portland,OR,97035 +189176,AA Batteries (4-pack),2,3.84,2019-04-14 18:55:00,738 Adams St, New York City,NY,10001 +189177,AA Batteries (4-pack),1,3.84,2019-04-04 14:38:00,331 Madison St, Portland,OR,97035 +189178,Wired Headphones,1,11.99,2019-04-16 08:46:00,685 Walnut St, New York City,NY,10001 +189179,Bose SoundSport Headphones,1,99.99,2019-04-22 10:01:00,378 1st St, Los Angeles,CA,90001 +189180,20in Monitor,1,109.99,2019-04-23 21:14:00,272 Hickory St, Los Angeles,CA,90001 +189181,AA Batteries (4-pack),1,3.84,2019-04-04 08:51:00,982 2nd St, Austin,TX,73301 +189182,Apple Airpods Headphones,1,150.0,2019-04-06 09:29:00,650 Walnut St, San Francisco,CA,94016 +189183,Macbook Pro Laptop,1,1700.0,2019-04-05 00:00:00,778 Madison St, New York City,NY,10001 +189184,Flatscreen TV,1,300.0,2019-04-02 11:54:00,156 7th St, San Francisco,CA,94016 +189185,Wired Headphones,2,11.99,2019-04-15 09:47:00,244 Willow St, Los Angeles,CA,90001 +189186,Flatscreen TV,1,300.0,2019-04-18 12:08:00,83 River St, Los Angeles,CA,90001 +189186,27in 4K Gaming Monitor,1,389.99,2019-04-18 12:08:00,83 River St, Los Angeles,CA,90001 +189187,AA Batteries (4-pack),1,3.84,2019-04-20 15:45:00,530 Park St, Seattle,WA,98101 +189188,34in Ultrawide Monitor,1,379.99,2019-04-03 16:41:00,877 North St, Portland,OR,97035 +189189,USB-C Charging Cable,1,11.95,2019-04-13 21:54:00,86 9th St, Austin,TX,73301 +189190,USB-C Charging Cable,1,11.95,2019-04-02 21:10:00,980 Lakeview St, Atlanta,GA,30301 +189191,ThinkPad Laptop,1,999.99,2019-04-23 08:49:00,326 Johnson St, New York City,NY,10001 +189192,AAA Batteries (4-pack),1,2.99,2019-04-10 20:44:00,745 Chestnut St, New York City,NY,10001 +189193,Google Phone,1,600.0,2019-04-27 13:39:00,532 Elm St, Portland,ME,04101 +189194,Macbook Pro Laptop,1,1700.0,2019-04-18 20:03:00,966 Hill St, San Francisco,CA,94016 +189195,AAA Batteries (4-pack),1,2.99,2019-04-11 23:59:00,838 6th St, Portland,OR,97035 +189196,AA Batteries (4-pack),1,3.84,2019-04-15 04:40:00,380 13th St, Portland,OR,97035 +189197,AAA Batteries (4-pack),1,2.99,2019-04-09 20:38:00,192 Madison St, Atlanta,GA,30301 +189198,Wired Headphones,1,11.99,2019-04-25 11:42:00,496 South St, Atlanta,GA,30301 +189199,34in Ultrawide Monitor,1,379.99,2019-04-05 09:36:00,398 12th St, Boston,MA,02215 +189200,AA Batteries (4-pack),1,3.84,2019-04-08 09:54:00,785 Elm St, New York City,NY,10001 +189201,Google Phone,1,600.0,2019-04-22 11:38:00,399 Main St, Seattle,WA,98101 +189202,Wired Headphones,1,11.99,2019-04-19 18:37:00,523 Park St, Los Angeles,CA,90001 +189203,34in Ultrawide Monitor,1,379.99,2019-04-17 00:14:00,727 Madison St, Los Angeles,CA,90001 +189204,Bose SoundSport Headphones,1,99.99,2019-04-08 09:41:00,431 Lakeview St, New York City,NY,10001 +189205,AAA Batteries (4-pack),1,2.99,2019-04-10 12:33:00,848 Wilson St, Seattle,WA,98101 +189206,Wired Headphones,1,11.99,2019-04-03 00:25:00,986 Pine St, New York City,NY,10001 +189207,Macbook Pro Laptop,1,1700.0,2019-04-18 09:42:00,801 6th St, Dallas,TX,75001 +189207,ThinkPad Laptop,1,999.99,2019-04-18 09:42:00,801 6th St, Dallas,TX,75001 +189208,Google Phone,1,600.0,2019-04-07 22:00:00,930 4th St, San Francisco,CA,94016 +189209,AAA Batteries (4-pack),2,2.99,2019-04-15 09:34:00,638 6th St, Portland,OR,97035 +189210,Wired Headphones,1,11.99,2019-04-01 11:11:00,617 1st St, Los Angeles,CA,90001 +189211,AA Batteries (4-pack),1,3.84,2019-04-15 19:22:00,770 Madison St, Dallas,TX,75001 +189212,Google Phone,1,600.0,2019-04-12 13:12:00,214 11th St, New York City,NY,10001 +189213,AAA Batteries (4-pack),2,2.99,2019-04-05 19:33:00,756 Lincoln St, Dallas,TX,75001 +189214,Wired Headphones,1,11.99,2019-04-11 10:46:00,495 Main St, Seattle,WA,98101 +189215,Apple Airpods Headphones,1,150.0,2019-04-08 14:21:00,449 7th St, San Francisco,CA,94016 +189216,34in Ultrawide Monitor,1,379.99,2019-04-27 02:29:00,376 Maple St, New York City,NY,10001 +189217,Apple Airpods Headphones,1,150.0,2019-04-20 10:53:00,231 Lakeview St, Los Angeles,CA,90001 +189218,Bose SoundSport Headphones,1,99.99,2019-04-19 12:44:00,365 5th St, Seattle,WA,98101 +189218,34in Ultrawide Monitor,1,379.99,2019-04-19 12:44:00,365 5th St, Seattle,WA,98101 +189219,Wired Headphones,1,11.99,2019-04-26 17:26:00,830 12th St, Atlanta,GA,30301 +189220,Lightning Charging Cable,1,14.95,2019-04-10 13:49:00,272 10th St, New York City,NY,10001 +189221,Bose SoundSport Headphones,1,99.99,2019-04-30 13:08:00,14 Sunset St, Dallas,TX,75001 +189222,Apple Airpods Headphones,1,150.0,2019-04-18 07:45:00,862 Elm St, San Francisco,CA,94016 +189223,AAA Batteries (4-pack),1,2.99,2019-04-12 18:49:00,783 Pine St, San Francisco,CA,94016 +189224,ThinkPad Laptop,1,999.99,2019-04-16 09:55:00,865 Center St, Portland,OR,97035 +189225,Bose SoundSport Headphones,1,99.99,2019-04-13 16:45:00,939 Madison St, Los Angeles,CA,90001 +189226,Wired Headphones,1,11.99,2019-04-24 21:28:00,596 1st St, San Francisco,CA,94016 +189227,AAA Batteries (4-pack),1,2.99,2019-04-19 15:46:00,311 Park St, San Francisco,CA,94016 +189228,34in Ultrawide Monitor,1,379.99,2019-04-13 11:20:00,632 Jackson St, New York City,NY,10001 +189229,27in 4K Gaming Monitor,1,389.99,2019-04-13 17:50:00,551 Spruce St, Boston,MA,02215 +189230,AAA Batteries (4-pack),2,2.99,2019-04-05 00:38:00,232 10th St, Los Angeles,CA,90001 +189231,Lightning Charging Cable,1,14.95,2019-04-20 23:52:00,796 Church St, Dallas,TX,75001 +189232,AA Batteries (4-pack),2,3.84,2019-04-06 18:54:00,993 Highland St, Los Angeles,CA,90001 +189233,AAA Batteries (4-pack),3,2.99,2019-04-03 13:08:00,643 Forest St, Los Angeles,CA,90001 +189234,Bose SoundSport Headphones,1,99.99,2019-04-14 20:42:00,997 River St, Los Angeles,CA,90001 +189235,AA Batteries (4-pack),1,3.84,2019-04-12 17:46:00,265 14th St, Portland,ME,04101 +189236,27in FHD Monitor,1,149.99,2019-04-12 16:40:00,15 Church St, New York City,NY,10001 +189237,AA Batteries (4-pack),1,3.84,2019-04-18 10:06:00,923 River St, Austin,TX,73301 +189238,Wired Headphones,1,11.99,2019-04-04 22:55:00,672 Spruce St, Atlanta,GA,30301 +189239,Apple Airpods Headphones,1,150.0,2019-04-03 15:18:00,994 South St, San Francisco,CA,94016 +189240,Lightning Charging Cable,1,14.95,2019-04-03 17:47:00,943 7th St, Portland,ME,04101 +189241,AA Batteries (4-pack),2,3.84,2019-04-10 22:36:00,888 Wilson St, San Francisco,CA,94016 +189242,Wired Headphones,1,11.99,2019-04-19 12:20:00,340 Lakeview St, San Francisco,CA,94016 +189243,Google Phone,1,600.0,2019-04-28 13:01:00,629 Jackson St, New York City,NY,10001 +189243,Bose SoundSport Headphones,1,99.99,2019-04-28 13:01:00,629 Jackson St, New York City,NY,10001 +189244,Lightning Charging Cable,1,14.95,2019-04-23 19:14:00,471 Church St, Dallas,TX,75001 +189245,AAA Batteries (4-pack),1,2.99,2019-04-15 19:55:00,300 10th St, Los Angeles,CA,90001 +189246,AA Batteries (4-pack),2,3.84,2019-04-28 20:58:00,841 Walnut St, Los Angeles,CA,90001 +189247,Apple Airpods Headphones,1,150.0,2019-04-03 07:14:00,55 Johnson St, San Francisco,CA,94016 +189248,27in FHD Monitor,1,149.99,2019-04-20 11:08:00,946 West St, San Francisco,CA,94016 +189249,Apple Airpods Headphones,1,150.0,2019-04-20 22:01:00,558 Highland St, New York City,NY,10001 +189249,27in FHD Monitor,1,149.99,2019-04-20 22:01:00,558 Highland St, New York City,NY,10001 +189250,Apple Airpods Headphones,1,150.0,2019-04-25 10:45:00,309 Johnson St, San Francisco,CA,94016 +189251,27in FHD Monitor,1,149.99,2019-04-16 20:19:00,307 1st St, Boston,MA,02215 +189252,Google Phone,1,600.0,2019-04-19 19:54:00,93 West St, Boston,MA,02215 +189252,USB-C Charging Cable,1,11.95,2019-04-19 19:54:00,93 West St, Boston,MA,02215 +189253,AAA Batteries (4-pack),2,2.99,2019-04-23 09:12:00,599 8th St, Atlanta,GA,30301 +189254,34in Ultrawide Monitor,1,379.99,2019-04-19 09:50:00,210 Willow St, Los Angeles,CA,90001 +189255,AA Batteries (4-pack),2,3.84,2019-04-30 17:53:00,637 Cherry St, Los Angeles,CA,90001 +189256,AA Batteries (4-pack),1,3.84,2019-04-01 07:27:00,376 North St, San Francisco,CA,94016 +189257,Bose SoundSport Headphones,1,99.99,2019-04-23 13:22:00,542 Lincoln St, Boston,MA,02215 +189258,Lightning Charging Cable,2,14.95,2019-04-23 09:07:00,186 Madison St, Seattle,WA,98101 +189259,Wired Headphones,1,11.99,2019-04-06 20:06:00,199 Highland St, San Francisco,CA,94016 +189260,Apple Airpods Headphones,1,150.0,2019-04-03 00:15:00,966 West St, San Francisco,CA,94016 +189261,Wired Headphones,1,11.99,2019-04-17 10:38:00,612 Maple St, Seattle,WA,98101 +189262,Google Phone,1,600.0,2019-04-01 13:02:00,230 Dogwood St, Atlanta,GA,30301 +189262,Wired Headphones,1,11.99,2019-04-01 13:02:00,230 Dogwood St, Atlanta,GA,30301 +189263,Lightning Charging Cable,1,14.95,2019-04-12 22:24:00,644 Cherry St, New York City,NY,10001 +189264,Wired Headphones,1,11.99,2019-04-08 14:52:00,600 Madison St, New York City,NY,10001 +189265,Lightning Charging Cable,1,14.95,2019-04-03 11:19:00,986 Jackson St, Portland,OR,97035 +189266,USB-C Charging Cable,1,11.95,2019-04-20 19:03:00,804 Sunset St, Boston,MA,02215 +189267,Wired Headphones,1,11.99,2019-04-27 06:51:00,852 Sunset St, Los Angeles,CA,90001 +189268,Google Phone,1,600.0,2019-04-11 20:23:00,68 11th St, Los Angeles,CA,90001 +189269,Macbook Pro Laptop,1,1700.0,2019-04-26 21:05:00,596 Lakeview St, New York City,NY,10001 +189270,Wired Headphones,1,11.99,2019-04-01 06:59:00,486 Forest St, New York City,NY,10001 +189271,27in FHD Monitor,1,149.99,2019-04-27 22:47:00,99 1st St, San Francisco,CA,94016 +189272,Lightning Charging Cable,1,14.95,2019-04-29 18:27:00,252 Ridge St, Los Angeles,CA,90001 +189273,Macbook Pro Laptop,1,1700.0,2019-04-14 00:52:00,553 West St, Dallas,TX,75001 +189274,Bose SoundSport Headphones,1,99.99,2019-04-19 11:04:00,955 Washington St, Boston,MA,02215 +189275,Bose SoundSport Headphones,1,99.99,2019-04-28 22:20:00,439 Hill St, Boston,MA,02215 +189276,USB-C Charging Cable,1,11.95,2019-04-01 19:26:00,163 Spruce St, Portland,OR,97035 +189277,Apple Airpods Headphones,1,150.0,2019-04-22 18:54:00,390 12th St, Austin,TX,73301 +189278,AAA Batteries (4-pack),3,2.99,2019-04-22 10:26:00,374 11th St, San Francisco,CA,94016 +189279,AA Batteries (4-pack),2,3.84,2019-04-14 16:08:00,423 7th St, Los Angeles,CA,90001 +189280,iPhone,1,700.0,2019-04-16 09:57:00,242 13th St, Austin,TX,73301 +189281,Apple Airpods Headphones,1,150.0,2019-04-09 19:52:00,557 Main St, San Francisco,CA,94016 +189282,Google Phone,1,600.0,2019-04-30 10:45:00,803 1st St, Boston,MA,02215 +189283,USB-C Charging Cable,1,11.95,2019-04-14 03:07:00,928 6th St, Atlanta,GA,30301 +189284,Lightning Charging Cable,1,14.95,2019-04-11 20:07:00,52 11th St, New York City,NY,10001 +189285,ThinkPad Laptop,1,999.99,2019-04-24 18:35:00,283 Forest St, Los Angeles,CA,90001 +189286,Lightning Charging Cable,1,14.95,2019-04-15 10:36:00,182 Jefferson St, San Francisco,CA,94016 +189287,34in Ultrawide Monitor,1,379.99,2019-04-17 22:35:00,249 Johnson St, Austin,TX,73301 +189288,Wired Headphones,1,11.99,2019-04-13 01:37:00,743 6th St, New York City,NY,10001 +189289,Wired Headphones,1,11.99,2019-04-05 20:35:00,376 South St, San Francisco,CA,94016 +189290,Google Phone,1,600.0,2019-04-17 09:18:00,482 Wilson St, Dallas,TX,75001 +189291,AAA Batteries (4-pack),1,2.99,2019-04-10 22:59:00,604 14th St, San Francisco,CA,94016 +189292,Apple Airpods Headphones,1,150.0,2019-04-27 23:43:00,456 6th St, Dallas,TX,75001 +189293,AA Batteries (4-pack),1,3.84,2019-04-16 10:53:00,954 Meadow St, San Francisco,CA,94016 +189294,USB-C Charging Cable,1,11.95,2019-04-21 12:02:00,357 Lakeview St, Austin,TX,73301 +189295,20in Monitor,1,109.99,2019-04-07 22:26:00,886 Johnson St, Portland,ME,04101 +189296,34in Ultrawide Monitor,1,379.99,2019-04-30 17:05:00,43 10th St, Dallas,TX,75001 +189297,AAA Batteries (4-pack),1,2.99,2019-04-25 14:35:00,836 Maple St, Portland,OR,97035 +189298,27in FHD Monitor,1,149.99,2019-04-30 06:24:00,882 14th St, New York City,NY,10001 +189299,Bose SoundSport Headphones,1,99.99,2019-04-16 23:35:00,752 Pine St, Seattle,WA,98101 +189300,Bose SoundSport Headphones,1,99.99,2019-04-15 12:38:00,502 Church St, Los Angeles,CA,90001 +189301,iPhone,1,700.0,2019-04-05 23:49:00,562 Hickory St, Boston,MA,02215 +189302,Apple Airpods Headphones,1,150.0,2019-04-08 11:43:00,191 7th St, Portland,ME,04101 +189303,Wired Headphones,1,11.99,2019-04-26 19:07:00,838 Johnson St, Los Angeles,CA,90001 +189304,Lightning Charging Cable,1,14.95,2019-04-10 17:22:00,326 11th St, Austin,TX,73301 +189305,Vareebadd Phone,1,400.0,2019-04-02 17:36:00,409 Sunset St, Seattle,WA,98101 +189306,USB-C Charging Cable,1,11.95,2019-04-17 17:35:00,373 Center St, Los Angeles,CA,90001 +189307,Vareebadd Phone,1,400.0,2019-04-17 15:10:00,683 Maple St, Boston,MA,02215 +189308,Lightning Charging Cable,1,14.95,2019-04-20 17:46:00,74 Lincoln St, San Francisco,CA,94016 +189309,Lightning Charging Cable,1,14.95,2019-04-18 17:33:00,863 Center St, New York City,NY,10001 +189310,Vareebadd Phone,1,400.0,2019-04-18 11:55:00,77 12th St, San Francisco,CA,94016 +189311,Apple Airpods Headphones,1,150.0,2019-04-23 15:01:00,212 13th St, Austin,TX,73301 +189312,Google Phone,1,600.0,2019-04-18 15:09:00,411 Hickory St, Atlanta,GA,30301 +189313,27in 4K Gaming Monitor,1,389.99,2019-04-10 11:56:00,494 Highland St, Austin,TX,73301 +189314,Bose SoundSport Headphones,1,99.99,2019-04-01 10:02:00,187 10th St, Seattle,WA,98101 +189315,AA Batteries (4-pack),1,3.84,2019-04-29 20:55:00,351 Meadow St, San Francisco,CA,94016 +189316,LG Dryer,1,600.0,2019-04-23 20:36:00,13 Main St, Boston,MA,02215 +189317,Lightning Charging Cable,1,14.95,2019-04-25 17:47:00,539 6th St, Portland,OR,97035 +189318,Apple Airpods Headphones,1,150.0,2019-04-19 13:25:00,560 Lake St, San Francisco,CA,94016 +189319,Apple Airpods Headphones,1,150.0,2019-04-06 07:21:00,627 Highland St, San Francisco,CA,94016 +189320,AA Batteries (4-pack),1,3.84,2019-04-10 17:18:00,170 Adams St, Los Angeles,CA,90001 +189321,AAA Batteries (4-pack),3,2.99,2019-04-16 19:26:00,235 Jefferson St, Dallas,TX,75001 +189322,AAA Batteries (4-pack),2,2.99,2019-04-01 20:36:00,685 Jefferson St, San Francisco,CA,94016 +189323,AAA Batteries (4-pack),1,2.99,2019-04-23 14:24:00,423 Spruce St, Portland,OR,97035 +189324,Bose SoundSport Headphones,1,99.99,2019-04-13 18:59:00,827 11th St, Los Angeles,CA,90001 +189325,USB-C Charging Cable,1,11.95,2019-04-28 21:39:00,84 7th St, New York City,NY,10001 +189326,Lightning Charging Cable,2,14.95,2019-04-22 19:25:00,375 9th St, Atlanta,GA,30301 +189327,AA Batteries (4-pack),1,3.84,2019-04-11 11:33:00,246 North St, Los Angeles,CA,90001 +189328,AA Batteries (4-pack),1,3.84,2019-04-08 16:33:00,888 Lincoln St, San Francisco,CA,94016 +189329,Wired Headphones,1,11.99,2019-04-28 19:03:00,867 Pine St, San Francisco,CA,94016 +189330,AA Batteries (4-pack),1,3.84,2019-04-20 17:54:00,533 Adams St, Seattle,WA,98101 +189331,AA Batteries (4-pack),1,3.84,2019-04-06 21:27:00,294 Wilson St, Los Angeles,CA,90001 +189332,iPhone,1,700.0,2019-04-15 01:06:00,349 1st St, Boston,MA,02215 +189333,27in 4K Gaming Monitor,1,389.99,2019-04-05 21:48:00,434 River St, Los Angeles,CA,90001 +189334,AA Batteries (4-pack),1,3.84,2019-04-01 20:50:00,742 Hill St, Atlanta,GA,30301 +189335,AA Batteries (4-pack),1,3.84,2019-04-03 08:25:00,996 Lincoln St, San Francisco,CA,94016 +189336,Google Phone,1,600.0,2019-04-03 21:59:00,940 Washington St, San Francisco,CA,94016 +189336,Bose SoundSport Headphones,1,99.99,2019-04-03 21:59:00,940 Washington St, San Francisco,CA,94016 +189337,Bose SoundSport Headphones,1,99.99,2019-04-13 10:35:00,42 1st St, San Francisco,CA,94016 +189338,Apple Airpods Headphones,1,150.0,2019-04-14 09:57:00,34 Chestnut St, Portland,OR,97035 +189338,USB-C Charging Cable,1,11.95,2019-04-14 09:57:00,34 Chestnut St, Portland,OR,97035 +189339,AA Batteries (4-pack),1,3.84,2019-04-26 10:12:00,401 Chestnut St, Los Angeles,CA,90001 +189340,Lightning Charging Cable,1,14.95,2019-04-23 23:47:00,871 Pine St, San Francisco,CA,94016 +189341,20in Monitor,1,109.99,2019-04-03 08:05:00,636 Church St, San Francisco,CA,94016 +189342,Apple Airpods Headphones,1,150.0,2019-04-04 19:09:00,704 Walnut St, Boston,MA,02215 +189343,Wired Headphones,1,11.99,2019-04-14 16:35:00,493 Wilson St, Seattle,WA,98101 +189344,27in FHD Monitor,1,149.99,2019-04-30 18:09:00,950 River St, Los Angeles,CA,90001 +189345,Bose SoundSport Headphones,1,99.99,2019-04-09 21:10:00,933 Elm St, San Francisco,CA,94016 +189346,AA Batteries (4-pack),3,3.84,2019-04-04 20:53:00,204 12th St, Portland,OR,97035 +189347,AA Batteries (4-pack),2,3.84,2019-04-21 18:49:00,475 Adams St, San Francisco,CA,94016 +189348,Wired Headphones,1,11.99,2019-04-11 19:19:00,789 Sunset St, Atlanta,GA,30301 +189349,iPhone,1,700.0,2019-04-23 16:21:00,884 Hill St, San Francisco,CA,94016 +189350,AA Batteries (4-pack),1,3.84,2019-04-05 19:32:00,630 9th St, Austin,TX,73301 +189351,AAA Batteries (4-pack),1,2.99,2019-04-06 20:34:00,542 Madison St, Boston,MA,02215 +189352,AA Batteries (4-pack),2,3.84,2019-04-12 12:45:00,57 Washington St, Seattle,WA,98101 +189353,Lightning Charging Cable,1,14.95,2019-04-20 11:30:00,491 Willow St, Los Angeles,CA,90001 +189354,ThinkPad Laptop,1,999.99,2019-04-15 08:00:00,987 6th St, Atlanta,GA,30301 +189355,AAA Batteries (4-pack),1,2.99,2019-04-23 20:13:00,567 4th St, Dallas,TX,75001 +189356,Lightning Charging Cable,1,14.95,2019-04-10 20:36:00,162 North St, San Francisco,CA,94016 +189357,Flatscreen TV,1,300.0,2019-04-26 21:31:00,602 Forest St, Boston,MA,02215 +189358,Wired Headphones,1,11.99,2019-04-02 20:46:00,41 Sunset St, Dallas,TX,75001 +189359,ThinkPad Laptop,1,999.99,2019-04-14 17:26:00,431 Highland St, New York City,NY,10001 +189360,AAA Batteries (4-pack),1,2.99,2019-04-05 11:47:00,909 Elm St, New York City,NY,10001 +189361,Google Phone,1,600.0,2019-04-28 12:58:00,695 Willow St, Austin,TX,73301 +189362,AAA Batteries (4-pack),2,2.99,2019-04-07 22:37:00,765 Cherry St, San Francisco,CA,94016 +189363,Vareebadd Phone,1,400.0,2019-04-27 21:43:00,838 Lake St, New York City,NY,10001 +189364,USB-C Charging Cable,2,11.95,2019-04-20 18:27:00,897 5th St, Los Angeles,CA,90001 +189365,USB-C Charging Cable,1,11.95,2019-04-24 10:43:00,415 9th St, Boston,MA,02215 +189365,AAA Batteries (4-pack),1,2.99,2019-04-24 10:43:00,415 9th St, Boston,MA,02215 +189366,Apple Airpods Headphones,1,150.0,2019-04-10 22:01:00,846 2nd St, San Francisco,CA,94016 +189367,AA Batteries (4-pack),2,3.84,2019-04-24 18:57:00,114 1st St, Boston,MA,02215 +189368,Wired Headphones,1,11.99,2019-04-22 20:30:00,61 Church St, Austin,TX,73301 +189369,Macbook Pro Laptop,1,1700.0,2019-04-21 09:13:00,816 5th St, San Francisco,CA,94016 +189370,Macbook Pro Laptop,1,1700.0,2019-04-22 13:26:00,572 Lakeview St, Dallas,TX,75001 +189371,AAA Batteries (4-pack),1,2.99,2019-04-11 10:21:00,365 West St, Seattle,WA,98101 +189372,Wired Headphones,1,11.99,2019-04-09 18:08:00,210 4th St, San Francisco,CA,94016 +189373,AA Batteries (4-pack),1,3.84,2019-04-21 16:49:00,491 Main St, Atlanta,GA,30301 +189374,AA Batteries (4-pack),1,3.84,2019-04-16 05:56:00,889 4th St, Boston,MA,02215 +189375,Wired Headphones,1,11.99,2019-04-24 14:05:00,383 Center St, San Francisco,CA,94016 +189376,Apple Airpods Headphones,1,150.0,2019-04-04 20:40:00,311 Madison St, Los Angeles,CA,90001 +189377,AAA Batteries (4-pack),1,2.99,2019-04-18 12:23:00,265 Lincoln St, San Francisco,CA,94016 +189378,20in Monitor,1,109.99,2019-04-28 22:18:00,32 Meadow St, New York City,NY,10001 +189379,USB-C Charging Cable,1,11.95,2019-04-18 03:57:00,823 Adams St, Los Angeles,CA,90001 +189380,Lightning Charging Cable,1,14.95,2019-04-08 11:18:00,548 1st St, Los Angeles,CA,90001 +189381,AAA Batteries (4-pack),1,2.99,2019-04-07 21:56:00,165 Hill St, Los Angeles,CA,90001 +189382,Apple Airpods Headphones,1,150.0,2019-04-14 17:01:00,441 Hill St, San Francisco,CA,94016 +189383,Lightning Charging Cable,1,14.95,2019-04-19 08:01:00,33 Ridge St, Austin,TX,73301 +189384,Lightning Charging Cable,1,14.95,2019-04-05 12:56:00,374 Cedar St, Los Angeles,CA,90001 +189385,AA Batteries (4-pack),1,3.84,2019-04-15 11:53:00,827 Meadow St, Seattle,WA,98101 +189386,Wired Headphones,2,11.99,2019-04-19 16:35:00,870 Jefferson St, San Francisco,CA,94016 +189387,AA Batteries (4-pack),1,3.84,2019-04-14 08:33:00,918 12th St, San Francisco,CA,94016 +189387,USB-C Charging Cable,1,11.95,2019-04-14 08:33:00,918 12th St, San Francisco,CA,94016 +189388,Bose SoundSport Headphones,1,99.99,2019-04-08 14:32:00,810 Ridge St, San Francisco,CA,94016 +189389,Bose SoundSport Headphones,1,99.99,2019-04-02 09:48:00,657 Forest St, Los Angeles,CA,90001 +189390,Lightning Charging Cable,1,14.95,2019-04-11 15:50:00,341 Johnson St, Los Angeles,CA,90001 +189391,USB-C Charging Cable,1,11.95,2019-04-03 15:09:00,165 Johnson St, San Francisco,CA,94016 +189392,USB-C Charging Cable,1,11.95,2019-04-27 11:46:00,720 14th St, Portland,ME,04101 +189393,Wired Headphones,1,11.99,2019-04-28 01:57:00,889 River St, Los Angeles,CA,90001 +189394,USB-C Charging Cable,1,11.95,2019-04-02 11:05:00,3 Sunset St, Atlanta,GA,30301 +189394,27in FHD Monitor,1,149.99,2019-04-02 11:05:00,3 Sunset St, Atlanta,GA,30301 +189395,ThinkPad Laptop,1,999.99,2019-04-03 20:15:00,496 Johnson St, Austin,TX,73301 +189396,Wired Headphones,1,11.99,2019-04-18 05:21:00,561 Jefferson St, San Francisco,CA,94016 +189397,USB-C Charging Cable,1,11.95,2019-04-06 16:23:00,52 Main St, Portland,OR,97035 +189398,AA Batteries (4-pack),2,3.84,2019-04-06 03:48:00,705 Ridge St, Seattle,WA,98101 +189399,USB-C Charging Cable,1,11.95,2019-04-25 08:22:00,802 Willow St, New York City,NY,10001 +189400,AAA Batteries (4-pack),1,2.99,2019-04-17 22:11:00,984 7th St, Los Angeles,CA,90001 +189401,USB-C Charging Cable,1,11.95,2019-04-30 08:35:00,223 Park St, Boston,MA,02215 +189402,27in 4K Gaming Monitor,1,389.99,2019-04-16 21:56:00,368 Maple St, Portland,ME,04101 +189403,AA Batteries (4-pack),1,3.84,2019-04-28 21:11:00,983 South St, Austin,TX,73301 +189404,Lightning Charging Cable,1,14.95,2019-04-16 21:17:00,122 Highland St, Atlanta,GA,30301 +189405,Wired Headphones,1,11.99,2019-04-29 09:46:00,382 6th St, San Francisco,CA,94016 +189406,27in FHD Monitor,1,149.99,2019-04-04 22:55:00,229 Dogwood St, Los Angeles,CA,90001 +189407,AAA Batteries (4-pack),1,2.99,2019-04-08 15:12:00,115 Chestnut St, New York City,NY,10001 +189408,Flatscreen TV,1,300.0,2019-04-08 15:58:00,406 Sunset St, New York City,NY,10001 +189409,AA Batteries (4-pack),3,3.84,2019-04-11 23:58:00,955 11th St, Portland,OR,97035 +189410,Wired Headphones,1,11.99,2019-04-04 15:01:00,205 5th St, Austin,TX,73301 +189411,20in Monitor,1,109.99,2019-04-16 20:41:00,982 6th St, Atlanta,GA,30301 +189412,Wired Headphones,1,11.99,2019-04-01 21:52:00,172 Lincoln St, San Francisco,CA,94016 +189413,iPhone,1,700.0,2019-04-30 12:41:00,94 Meadow St, Austin,TX,73301 +189414,iPhone,1,700.0,2019-04-25 14:49:00,426 West St, Dallas,TX,75001 +189414,Lightning Charging Cable,1,14.95,2019-04-25 14:49:00,426 West St, Dallas,TX,75001 +189414,Apple Airpods Headphones,1,150.0,2019-04-25 14:49:00,426 West St, Dallas,TX,75001 +189415,Apple Airpods Headphones,1,150.0,2019-04-21 22:03:00,97 14th St, Atlanta,GA,30301 +189416,Bose SoundSport Headphones,1,99.99,2019-04-04 13:33:00,975 Lakeview St, Atlanta,GA,30301 +189417,AAA Batteries (4-pack),2,2.99,2019-04-11 01:28:00,507 Cherry St, San Francisco,CA,94016 +189418,USB-C Charging Cable,1,11.95,2019-04-30 20:21:00,642 13th St, New York City,NY,10001 +189419,AA Batteries (4-pack),1,3.84,2019-04-09 19:12:00,489 Chestnut St, San Francisco,CA,94016 +189420,USB-C Charging Cable,1,11.95,2019-04-07 14:02:00,864 Jefferson St, San Francisco,CA,94016 +189421,27in FHD Monitor,1,149.99,2019-04-25 18:56:00,539 South St, San Francisco,CA,94016 +189422,AAA Batteries (4-pack),1,2.99,2019-04-21 15:56:00,736 12th St, San Francisco,CA,94016 +189423,Lightning Charging Cable,2,14.95,2019-04-06 06:52:00,269 Center St, Boston,MA,02215 +189424,Wired Headphones,1,11.99,2019-04-18 20:19:00,219 Hickory St, New York City,NY,10001 +189425,Google Phone,1,600.0,2019-04-14 22:06:00,581 Park St, Atlanta,GA,30301 +189426,AA Batteries (4-pack),1,3.84,2019-04-13 18:05:00,593 5th St, Los Angeles,CA,90001 +189427,Wired Headphones,1,11.99,2019-04-27 20:01:00,587 Willow St, San Francisco,CA,94016 +189428,34in Ultrawide Monitor,1,379.99,2019-04-30 20:01:00,788 Park St, Los Angeles,CA,90001 +189429,34in Ultrawide Monitor,1,379.99,2019-04-06 18:57:00,522 Adams St, Austin,TX,73301 +189430,27in FHD Monitor,1,149.99,2019-04-10 20:13:00,241 Wilson St, Boston,MA,02215 +189431,USB-C Charging Cable,1,11.95,2019-04-08 14:28:00,604 Lake St, New York City,NY,10001 +189432,Lightning Charging Cable,1,14.95,2019-04-26 21:15:00,318 Hill St, Los Angeles,CA,90001 +189433,Wired Headphones,1,11.99,2019-04-11 17:39:00,460 9th St, San Francisco,CA,94016 +189434,Bose SoundSport Headphones,1,99.99,2019-04-22 05:38:00,777 Hill St, Atlanta,GA,30301 +189435,Lightning Charging Cable,1,14.95,2019-04-03 10:18:00,335 Madison St, Austin,TX,73301 +189436,iPhone,1,700.0,2019-04-15 10:08:00,332 Sunset St, Boston,MA,02215 +189437,Flatscreen TV,1,300.0,2019-04-15 13:16:00,950 Willow St, Dallas,TX,75001 +189438,Lightning Charging Cable,1,14.95,2019-04-22 22:35:00,530 Dogwood St, Boston,MA,02215 +189439,Lightning Charging Cable,1,14.95,2019-04-07 07:25:00,446 6th St, Seattle,WA,98101 +189440,USB-C Charging Cable,2,11.95,2019-04-14 19:33:00,859 West St, Boston,MA,02215 +189441,Wired Headphones,1,11.99,2019-04-27 09:16:00,759 Johnson St, San Francisco,CA,94016 +189442,Apple Airpods Headphones,1,150.0,2019-04-09 10:45:00,118 Hill St, San Francisco,CA,94016 +189443,Bose SoundSport Headphones,1,99.99,2019-04-05 20:09:00,565 Main St, Austin,TX,73301 +189444,Wired Headphones,2,11.99,2019-04-26 14:14:00,660 Sunset St, Boston,MA,02215 +189445,Apple Airpods Headphones,1,150.0,2019-04-13 11:03:00,343 Johnson St, Seattle,WA,98101 +189446,Flatscreen TV,1,300.0,2019-04-03 22:38:00,944 Lake St, Los Angeles,CA,90001 +189447,AAA Batteries (4-pack),1,2.99,2019-04-05 11:12:00,265 Pine St, Los Angeles,CA,90001 +189448,Lightning Charging Cable,1,14.95,2019-04-11 19:07:00,200 4th St, Austin,TX,73301 +189449,34in Ultrawide Monitor,1,379.99,2019-04-28 11:31:00,29 Jefferson St, San Francisco,CA,94016 +189450,Wired Headphones,1,11.99,2019-04-27 13:54:00,477 Hill St, San Francisco,CA,94016 +189451,Lightning Charging Cable,1,14.95,2019-04-15 21:29:00,501 Meadow St, San Francisco,CA,94016 +189452,AAA Batteries (4-pack),2,2.99,2019-04-22 19:55:00,599 North St, San Francisco,CA,94016 +189453,Lightning Charging Cable,1,14.95,2019-04-10 13:51:00,350 Wilson St, San Francisco,CA,94016 +189454,Lightning Charging Cable,1,14.95,2019-04-26 00:10:00,638 Adams St, Boston,MA,02215 +189455,Wired Headphones,2,11.99,2019-04-09 18:25:00,132 Lakeview St, New York City,NY,10001 +189456,AA Batteries (4-pack),2,3.84,2019-04-03 23:07:00,654 South St, New York City,NY,10001 +189457,iPhone,1,700.0,2019-04-22 14:23:00,649 South St, San Francisco,CA,94016 +189457,Wired Headphones,1,11.99,2019-04-22 14:23:00,649 South St, San Francisco,CA,94016 +189458,iPhone,1,700.0,2019-04-14 23:48:00,297 11th St, San Francisco,CA,94016 +189459,USB-C Charging Cable,1,11.95,2019-04-28 16:59:00,195 14th St, Los Angeles,CA,90001 +189460,AAA Batteries (4-pack),1,2.99,2019-04-12 15:39:00,681 Spruce St, New York City,NY,10001 +189461,Vareebadd Phone,1,400.0,2019-04-21 16:17:00,560 River St, New York City,NY,10001 +189462,Wired Headphones,1,11.99,2019-04-28 22:57:00,4 Adams St, San Francisco,CA,94016 +189463,34in Ultrawide Monitor,1,379.99,2019-04-25 11:51:00,853 Dogwood St, Los Angeles,CA,90001 +189464,AA Batteries (4-pack),1,3.84,2019-04-14 20:35:00,454 Chestnut St, Portland,OR,97035 +189465,Vareebadd Phone,1,400.0,2019-04-26 18:30:00,3 Willow St, Boston,MA,02215 +189466,34in Ultrawide Monitor,1,379.99,2019-04-05 20:45:00,196 South St, Boston,MA,02215 +189467,AA Batteries (4-pack),1,3.84,2019-04-21 19:09:00,371 13th St, Dallas,TX,75001 +189468,AA Batteries (4-pack),1,3.84,2019-04-06 10:00:00,806 Dogwood St, Boston,MA,02215 +189469,Macbook Pro Laptop,1,1700.0,2019-04-11 22:12:00,282 Ridge St, Austin,TX,73301 +189470,USB-C Charging Cable,2,11.95,2019-04-13 14:04:00,155 Cherry St, Seattle,WA,98101 +189471,Wired Headphones,1,11.99,2019-04-12 16:34:00,908 6th St, Dallas,TX,75001 +189472,AAA Batteries (4-pack),2,2.99,2019-04-09 19:42:00,873 1st St, San Francisco,CA,94016 +189473,iPhone,1,700.0,2019-04-18 20:45:00,952 Ridge St, New York City,NY,10001 +189474,Flatscreen TV,1,300.0,2019-04-01 10:00:00,997 River St, San Francisco,CA,94016 +189475,AAA Batteries (4-pack),2,2.99,2019-04-19 09:55:00,297 Hickory St, Dallas,TX,75001 +189476,Lightning Charging Cable,1,14.95,2019-04-18 21:31:00,294 River St, San Francisco,CA,94016 +189477,Macbook Pro Laptop,1,1700.0,2019-04-11 21:31:00,445 Walnut St, New York City,NY,10001 +189478,Lightning Charging Cable,1,14.95,2019-04-26 11:31:00,274 Park St, Los Angeles,CA,90001 +189479,Macbook Pro Laptop,1,1700.0,2019-04-12 03:02:00,28 Jackson St, San Francisco,CA,94016 +189480,Bose SoundSport Headphones,1,99.99,2019-04-30 14:36:00,355 Wilson St, Portland,ME,04101 +189481,27in 4K Gaming Monitor,1,389.99,2019-04-25 15:36:00,552 Walnut St, Seattle,WA,98101 +189482,AA Batteries (4-pack),1,3.84,2019-04-30 21:09:00,554 Church St, Seattle,WA,98101 +189483,USB-C Charging Cable,1,11.95,2019-04-08 04:54:00,572 Highland St, Los Angeles,CA,90001 +189484,Flatscreen TV,1,300.0,2019-04-25 15:49:00,222 4th St, Seattle,WA,98101 +189485,AA Batteries (4-pack),2,3.84,2019-04-28 13:37:00,603 West St, Los Angeles,CA,90001 +189486,USB-C Charging Cable,1,11.95,2019-04-02 08:52:00,100 12th St, San Francisco,CA,94016 +189487,AA Batteries (4-pack),1,3.84,2019-04-01 11:50:00,569 North St, Los Angeles,CA,90001 +189488,USB-C Charging Cable,1,11.95,2019-04-10 22:04:00,708 Hickory St, Boston,MA,02215 +189489,27in FHD Monitor,1,149.99,2019-04-01 10:12:00,679 Walnut St, Dallas,TX,75001 +189490,AA Batteries (4-pack),2,3.84,2019-04-24 12:22:00,798 Chestnut St, San Francisco,CA,94016 +189491,Lightning Charging Cable,1,14.95,2019-04-11 14:18:00,328 7th St, Los Angeles,CA,90001 +189492,27in FHD Monitor,1,149.99,2019-04-04 11:28:00,433 Lakeview St, San Francisco,CA,94016 +189493,20in Monitor,1,109.99,2019-04-27 10:55:00,237 7th St, Seattle,WA,98101 +189494,Wired Headphones,1,11.99,2019-04-11 21:20:00,853 10th St, San Francisco,CA,94016 +189495,iPhone,1,700.0,2019-04-09 11:59:00,589 7th St, Atlanta,GA,30301 +189496,ThinkPad Laptop,1,999.99,2019-04-17 23:29:00,242 Forest St, San Francisco,CA,94016 +189496,Lightning Charging Cable,1,14.95,2019-04-17 23:29:00,242 Forest St, San Francisco,CA,94016 +189497,Bose SoundSport Headphones,1,99.99,2019-04-27 17:39:00,696 Forest St, New York City,NY,10001 +189498,Apple Airpods Headphones,1,150.0,2019-04-29 08:26:00,107 Church St, Los Angeles,CA,90001 +189499,Apple Airpods Headphones,1,150.0,2019-04-03 20:30:00,689 Adams St, Los Angeles,CA,90001 +189500,34in Ultrawide Monitor,1,379.99,2019-04-26 15:42:00,635 Jackson St, Los Angeles,CA,90001 +189501,Lightning Charging Cable,1,14.95,2019-04-19 07:50:00,462 14th St, Austin,TX,73301 +189502,Lightning Charging Cable,1,14.95,2019-04-28 21:23:00,243 Washington St, Boston,MA,02215 +189503,Flatscreen TV,1,300.0,2019-04-01 18:12:00,875 13th St, San Francisco,CA,94016 +189504,Wired Headphones,1,11.99,2019-04-01 09:46:00,774 Lincoln St, Dallas,TX,75001 +189505,Lightning Charging Cable,1,14.95,2019-04-06 20:59:00,580 4th St, San Francisco,CA,94016 +189506,Lightning Charging Cable,1,14.95,2019-04-21 13:10:00,799 7th St, San Francisco,CA,94016 +189507,AA Batteries (4-pack),1,3.84,2019-04-08 12:43:00,465 Wilson St, Boston,MA,02215 +189508,Macbook Pro Laptop,1,1700.0,2019-04-14 10:51:00,508 Hill St, San Francisco,CA,94016 +189509,AAA Batteries (4-pack),1,2.99,2019-04-13 16:59:00,607 Sunset St, Austin,TX,73301 +189510,Bose SoundSport Headphones,1,99.99,2019-04-05 06:20:00,994 River St, New York City,NY,10001 +189511,Bose SoundSport Headphones,2,99.99,2019-04-01 21:47:00,563 Elm St, Los Angeles,CA,90001 +189512,27in 4K Gaming Monitor,1,389.99,2019-04-25 03:29:00,307 5th St, Seattle,WA,98101 +189513,USB-C Charging Cable,1,11.95,2019-04-26 10:36:00,4 Main St, Boston,MA,02215 +189514,Google Phone,1,600.0,2019-04-12 22:19:00,774 West St, New York City,NY,10001 +189515,Bose SoundSport Headphones,1,99.99,2019-04-10 11:13:00,819 Meadow St, San Francisco,CA,94016 +189516,AA Batteries (4-pack),1,3.84,2019-04-07 18:18:00,571 Lincoln St, New York City,NY,10001 +189517,Macbook Pro Laptop,1,1700.0,2019-04-23 14:57:00,126 Lakeview St, New York City,NY,10001 +189518,AA Batteries (4-pack),1,3.84,2019-04-12 22:48:00,550 Walnut St, Atlanta,GA,30301 +189519,Apple Airpods Headphones,1,150.0,2019-04-10 15:22:00,750 Jefferson St, Boston,MA,02215 +189520,Wired Headphones,1,11.99,2019-04-29 21:22:00,736 South St, New York City,NY,10001 +189521,Wired Headphones,1,11.99,2019-04-11 21:40:00,198 Elm St, San Francisco,CA,94016 +189522,AAA Batteries (4-pack),2,2.99,2019-04-24 23:53:00,699 Hill St, San Francisco,CA,94016 +189523,AAA Batteries (4-pack),3,2.99,2019-04-27 19:27:00,869 Ridge St, San Francisco,CA,94016 +189524,Lightning Charging Cable,1,14.95,2019-04-21 17:22:00,10 1st St, Portland,OR,97035 +189525,34in Ultrawide Monitor,1,379.99,2019-04-10 08:01:00,764 Lakeview St, San Francisco,CA,94016 +189526,ThinkPad Laptop,1,999.99,2019-04-26 21:03:00,320 10th St, Los Angeles,CA,90001 +189527,Bose SoundSport Headphones,1,99.99,2019-04-11 13:40:00,534 North St, Austin,TX,73301 +189528,AA Batteries (4-pack),1,3.84,2019-04-12 10:58:00,896 Dogwood St, Portland,OR,97035 +189529,Apple Airpods Headphones,1,150.0,2019-04-04 14:54:00,946 Sunset St, Seattle,WA,98101 +189530,AA Batteries (4-pack),4,3.84,2019-04-23 08:59:00,93 Ridge St, New York City,NY,10001 +189531,20in Monitor,1,109.99,2019-04-28 13:00:00,597 6th St, New York City,NY,10001 +189532,AA Batteries (4-pack),1,3.84,2019-04-05 20:03:00,873 1st St, Seattle,WA,98101 +189533,Lightning Charging Cable,1,14.95,2019-04-16 15:53:00,327 South St, San Francisco,CA,94016 +189534,27in FHD Monitor,1,149.99,2019-04-28 20:34:00,727 Main St, Austin,TX,73301 +189535,Bose SoundSport Headphones,1,99.99,2019-04-04 11:03:00,766 Pine St, San Francisco,CA,94016 +189536,Wired Headphones,1,11.99,2019-04-19 02:52:00,659 11th St, Boston,MA,02215 +189537,Lightning Charging Cable,1,14.95,2019-04-20 22:05:00,819 Ridge St, San Francisco,CA,94016 +189538,AAA Batteries (4-pack),1,2.99,2019-04-05 22:07:00,946 10th St, San Francisco,CA,94016 +189539,USB-C Charging Cable,1,11.95,2019-04-27 15:40:00,97 Adams St, New York City,NY,10001 +189540,Lightning Charging Cable,1,14.95,2019-04-30 19:42:00,534 River St, Boston,MA,02215 +189541,USB-C Charging Cable,1,11.95,2019-04-22 09:09:00,303 1st St, Portland,OR,97035 +189542,AA Batteries (4-pack),1,3.84,2019-04-11 11:36:00,527 Maple St, San Francisco,CA,94016 +189543,Wired Headphones,2,11.99,2019-04-28 18:26:00,569 North St, Los Angeles,CA,90001 +189544,Lightning Charging Cable,1,14.95,2019-04-06 19:50:00,354 Washington St, Boston,MA,02215 +189545,20in Monitor,1,109.99,2019-05-01 02:06:00,670 5th St, San Francisco,CA,94016 +189546,AAA Batteries (4-pack),1,2.99,2019-04-05 20:15:00,208 2nd St, New York City,NY,10001 +189547,Google Phone,1,600.0,2019-04-17 18:39:00,422 5th St, Los Angeles,CA,90001 +189548,Bose SoundSport Headphones,1,99.99,2019-04-13 09:56:00,859 Center St, Los Angeles,CA,90001 +189549,USB-C Charging Cable,2,11.95,2019-04-04 22:54:00,997 Forest St, Austin,TX,73301 +189550,AAA Batteries (4-pack),1,2.99,2019-04-12 01:54:00,545 Walnut St, San Francisco,CA,94016 +189551,USB-C Charging Cable,1,11.95,2019-04-06 04:42:00,986 Pine St, Portland,OR,97035 +189552,iPhone,1,700.0,2019-04-25 20:03:00,191 Chestnut St, Los Angeles,CA,90001 +189552,Lightning Charging Cable,1,14.95,2019-04-25 20:03:00,191 Chestnut St, Los Angeles,CA,90001 +189553,Apple Airpods Headphones,1,150.0,2019-04-07 20:15:00,364 Willow St, Portland,OR,97035 +189554,Lightning Charging Cable,1,14.95,2019-04-13 16:58:00,778 11th St, San Francisco,CA,94016 +189555,LG Washing Machine,1,600.0,2019-04-04 18:01:00,729 Meadow St, Dallas,TX,75001 +189556,AA Batteries (4-pack),1,3.84,2019-04-10 13:01:00,789 Highland St, Seattle,WA,98101 +189557,iPhone,1,700.0,2019-04-27 12:49:00,967 Chestnut St, Seattle,WA,98101 +189558,AA Batteries (4-pack),1,3.84,2019-04-17 00:04:00,773 11th St, Portland,OR,97035 +189559,Apple Airpods Headphones,1,150.0,2019-04-26 13:14:00,482 Lincoln St, Austin,TX,73301 +189560,Lightning Charging Cable,1,14.95,2019-04-12 22:43:00,795 Lakeview St, Dallas,TX,75001 +189561,Bose SoundSport Headphones,1,99.99,2019-04-18 21:06:00,845 Cherry St, Boston,MA,02215 +189562,USB-C Charging Cable,1,11.95,2019-04-22 15:49:00,235 8th St, San Francisco,CA,94016 +189563,Wired Headphones,3,11.99,2019-04-21 15:21:00,656 Lakeview St, Seattle,WA,98101 +189564,27in FHD Monitor,1,149.99,2019-04-01 21:55:00,576 7th St, San Francisco,CA,94016 +189565,AA Batteries (4-pack),1,3.84,2019-04-03 01:02:00,181 Ridge St, Boston,MA,02215 +189566,Flatscreen TV,1,300.0,2019-04-03 22:36:00,77 Lakeview St, New York City,NY,10001 +189567,AA Batteries (4-pack),1,3.84,2019-04-11 09:25:00,819 12th St, New York City,NY,10001 +189568,Apple Airpods Headphones,1,150.0,2019-04-23 15:28:00,865 Willow St, San Francisco,CA,94016 +189569,AA Batteries (4-pack),1,3.84,2019-04-22 20:55:00,357 Highland St, New York City,NY,10001 +189570,AA Batteries (4-pack),1,3.84,2019-04-05 22:59:00,629 Madison St, San Francisco,CA,94016 +189570,Wired Headphones,1,11.99,2019-04-05 22:59:00,629 Madison St, San Francisco,CA,94016 +189571,AA Batteries (4-pack),2,3.84,2019-04-27 15:27:00,319 Adams St, Los Angeles,CA,90001 +189572,Apple Airpods Headphones,1,150.0,2019-04-18 13:02:00,226 Hickory St, Austin,TX,73301 +189573,Lightning Charging Cable,1,14.95,2019-04-26 11:32:00,136 Hickory St, Atlanta,GA,30301 +189574,AAA Batteries (4-pack),2,2.99,2019-04-27 13:00:00,999 Highland St, New York City,NY,10001 +189575,iPhone,1,700.0,2019-04-18 21:54:00,937 13th St, Atlanta,GA,30301 +189576,Flatscreen TV,1,300.0,2019-04-11 12:05:00,289 South St, New York City,NY,10001 +189577,27in FHD Monitor,1,149.99,2019-04-10 11:34:00,144 Madison St, Los Angeles,CA,90001 +189578,Lightning Charging Cable,1,14.95,2019-04-28 10:51:00,386 10th St, Los Angeles,CA,90001 +189579,AA Batteries (4-pack),2,3.84,2019-04-25 21:25:00,870 Park St, San Francisco,CA,94016 +189580,Macbook Pro Laptop,1,1700.0,2019-04-20 08:42:00,40 South St, Seattle,WA,98101 +189581,USB-C Charging Cable,1,11.95,2019-04-12 15:28:00,463 Highland St, Austin,TX,73301 +189582,Bose SoundSport Headphones,1,99.99,2019-04-21 11:24:00,412 Willow St, Dallas,TX,75001 +189583,Google Phone,1,600.0,2019-04-30 18:43:00,108 Washington St, San Francisco,CA,94016 +189584,Lightning Charging Cable,1,14.95,2019-04-19 11:23:00,962 Johnson St, Dallas,TX,75001 +189585,Lightning Charging Cable,1,14.95,2019-04-04 20:51:00,85 Hickory St, Seattle,WA,98101 +189586,Bose SoundSport Headphones,1,99.99,2019-04-27 12:58:00,311 13th St, Portland,OR,97035 +189587,AA Batteries (4-pack),1,3.84,2019-04-20 17:54:00,532 Hickory St, Portland,ME,04101 +189588,AA Batteries (4-pack),1,3.84,2019-04-08 19:39:00,983 9th St, New York City,NY,10001 +189589,iPhone,1,700.0,2019-04-19 09:04:00,110 North St, San Francisco,CA,94016 +189590,Bose SoundSport Headphones,1,99.99,2019-04-20 08:26:00,66 Church St, Los Angeles,CA,90001 +189591,AAA Batteries (4-pack),2,2.99,2019-04-08 18:44:00,132 Lincoln St, San Francisco,CA,94016 +189592,Wired Headphones,1,11.99,2019-04-04 23:44:00,706 1st St, Los Angeles,CA,90001 +189593,ThinkPad Laptop,1,999.99,2019-04-24 21:39:00,591 Lakeview St, Atlanta,GA,30301 +189594,Apple Airpods Headphones,1,150.0,2019-04-10 13:46:00,52 Walnut St, San Francisco,CA,94016 +189595,USB-C Charging Cable,1,11.95,2019-04-11 16:07:00,309 North St, Dallas,TX,75001 +189596,AAA Batteries (4-pack),1,2.99,2019-04-08 19:25:00,434 Pine St, Austin,TX,73301 +189597,Vareebadd Phone,1,400.0,2019-04-21 11:12:00,240 Chestnut St, Dallas,TX,75001 +189597,Wired Headphones,2,11.99,2019-04-21 11:12:00,240 Chestnut St, Dallas,TX,75001 +189598,34in Ultrawide Monitor,1,379.99,2019-04-09 19:29:00,103 Meadow St, Boston,MA,02215 +189599,Lightning Charging Cable,1,14.95,2019-04-19 12:37:00,215 10th St, San Francisco,CA,94016 +189600,USB-C Charging Cable,1,11.95,2019-04-07 16:49:00,561 Walnut St, Austin,TX,73301 +189601,Macbook Pro Laptop,1,1700.0,2019-04-25 19:47:00,865 Hill St, San Francisco,CA,94016 +189602,AA Batteries (4-pack),1,3.84,2019-04-29 06:29:00,924 Cherry St, Dallas,TX,75001 +189603,Lightning Charging Cable,2,14.95,2019-04-11 01:54:00,507 1st St, Los Angeles,CA,90001 +189604,Wired Headphones,1,11.99,2019-04-22 12:24:00,169 Sunset St, Seattle,WA,98101 +189605,USB-C Charging Cable,1,11.95,2019-04-30 20:44:00,961 South St, Austin,TX,73301 +189606,Lightning Charging Cable,1,14.95,2019-04-27 21:51:00,992 5th St, Dallas,TX,75001 +189607,AAA Batteries (4-pack),3,2.99,2019-04-28 13:56:00,750 Meadow St, Los Angeles,CA,90001 +189608,AA Batteries (4-pack),1,3.84,2019-04-15 13:26:00,727 14th St, Seattle,WA,98101 +189609,Apple Airpods Headphones,1,150.0,2019-04-14 11:58:00,685 4th St, San Francisco,CA,94016 +189610,Lightning Charging Cable,1,14.95,2019-04-10 21:19:00,983 2nd St, Boston,MA,02215 +189611,AA Batteries (4-pack),1,3.84,2019-04-25 09:48:00,527 Adams St, San Francisco,CA,94016 +189612,AA Batteries (4-pack),3,3.84,2019-04-10 21:48:00,399 Pine St, Boston,MA,02215 +189613,Macbook Pro Laptop,1,1700.0,2019-04-09 15:51:00,312 Ridge St, San Francisco,CA,94016 +189614,USB-C Charging Cable,1,11.95,2019-04-25 14:15:00,336 Maple St, Los Angeles,CA,90001 +189615,AA Batteries (4-pack),2,3.84,2019-04-23 19:30:00,196 13th St, San Francisco,CA,94016 +189616,Lightning Charging Cable,1,14.95,2019-04-29 16:37:00,639 1st St, Dallas,TX,75001 +189617,iPhone,1,700.0,2019-04-22 15:34:00,902 5th St, Austin,TX,73301 +189617,Wired Headphones,1,11.99,2019-04-22 15:34:00,902 5th St, Austin,TX,73301 +189618,USB-C Charging Cable,1,11.95,2019-04-30 23:41:00,246 Spruce St, Seattle,WA,98101 +189619,AA Batteries (4-pack),1,3.84,2019-04-23 21:04:00,498 Maple St, Los Angeles,CA,90001 +189620,Wired Headphones,1,11.99,2019-04-15 01:28:00,910 Lake St, Boston,MA,02215 +189621,ThinkPad Laptop,1,999.99,2019-04-28 00:14:00,623 Church St, San Francisco,CA,94016 +189622,27in FHD Monitor,1,149.99,2019-04-09 15:44:00,175 Elm St, San Francisco,CA,94016 +189623,27in 4K Gaming Monitor,1,389.99,2019-04-30 22:18:00,996 2nd St, Los Angeles,CA,90001 +189624,Lightning Charging Cable,1,14.95,2019-04-17 19:40:00,762 Jackson St, San Francisco,CA,94016 +189625,AAA Batteries (4-pack),3,2.99,2019-04-03 16:40:00,387 Johnson St, Dallas,TX,75001 +189626,34in Ultrawide Monitor,1,379.99,2019-04-25 13:09:00,483 Sunset St, San Francisco,CA,94016 +189627,AAA Batteries (4-pack),1,2.99,2019-04-25 17:00:00,227 Cedar St, Los Angeles,CA,90001 +189628,AA Batteries (4-pack),2,3.84,2019-04-18 21:04:00,619 10th St, Seattle,WA,98101 +189629,iPhone,1,700.0,2019-04-27 14:49:00,650 West St, New York City,NY,10001 +189630,AAA Batteries (4-pack),2,2.99,2019-04-23 19:22:00,622 Elm St, Los Angeles,CA,90001 +189631,Bose SoundSport Headphones,1,99.99,2019-04-27 00:41:00,626 Sunset St, Seattle,WA,98101 +189632,Apple Airpods Headphones,1,150.0,2019-04-19 22:51:00,953 Pine St, San Francisco,CA,94016 +189633,ThinkPad Laptop,1,999.99,2019-04-13 12:56:00,645 12th St, Seattle,WA,98101 +189634,34in Ultrawide Monitor,1,379.99,2019-04-07 15:33:00,687 4th St, Dallas,TX,75001 +189635,Wired Headphones,1,11.99,2019-04-30 13:10:00,526 8th St, San Francisco,CA,94016 +189636,Macbook Pro Laptop,1,1700.0,2019-04-17 18:06:00,410 Highland St, New York City,NY,10001 +189637,AAA Batteries (4-pack),1,2.99,2019-04-11 16:06:00,740 Forest St, New York City,NY,10001 +189638,Apple Airpods Headphones,1,150.0,2019-04-13 01:18:00,823 Cedar St, New York City,NY,10001 +189639,AA Batteries (4-pack),2,3.84,2019-04-03 15:59:00,615 River St, New York City,NY,10001 +189640,Vareebadd Phone,1,400.0,2019-04-29 21:02:00,615 13th St, Dallas,TX,75001 +189641,Apple Airpods Headphones,1,150.0,2019-04-18 19:24:00,328 Sunset St, Boston,MA,02215 +189642,Apple Airpods Headphones,2,150.0,2019-04-25 12:37:00,509 Highland St, San Francisco,CA,94016 +189643,Bose SoundSport Headphones,1,99.99,2019-04-16 21:51:00,928 5th St, Atlanta,GA,30301 +189644,AAA Batteries (4-pack),1,2.99,2019-04-23 22:18:00,380 Cherry St, New York City,NY,10001 +189645,AA Batteries (4-pack),1,3.84,2019-04-23 15:47:00,507 River St, Austin,TX,73301 +189646,Bose SoundSport Headphones,1,99.99,2019-04-03 09:06:00,95 2nd St, Los Angeles,CA,90001 +189647,AA Batteries (4-pack),1,3.84,2019-04-29 13:34:00,4 1st St, Boston,MA,02215 +189648,AAA Batteries (4-pack),1,2.99,2019-04-15 10:59:00,790 Main St, San Francisco,CA,94016 +189649,27in 4K Gaming Monitor,1,389.99,2019-04-11 17:24:00,674 Hill St, Atlanta,GA,30301 +189650,USB-C Charging Cable,2,11.95,2019-04-29 11:40:00,26 Elm St, San Francisco,CA,94016 +189651,Apple Airpods Headphones,1,150.0,2019-04-10 23:05:00,96 12th St, Atlanta,GA,30301 +189652,Bose SoundSport Headphones,1,99.99,2019-04-07 11:24:00,409 Dogwood St, Austin,TX,73301 +189653,AA Batteries (4-pack),1,3.84,2019-04-27 20:03:00,609 Walnut St, Portland,ME,04101 +189654,USB-C Charging Cable,1,11.95,2019-04-21 18:57:00,383 2nd St, San Francisco,CA,94016 +189655,27in FHD Monitor,1,149.99,2019-04-27 11:30:00,579 Johnson St, Boston,MA,02215 +189656,AA Batteries (4-pack),1,3.84,2019-04-05 19:56:00,637 14th St, Atlanta,GA,30301 +189657,Bose SoundSport Headphones,1,99.99,2019-04-20 13:02:00,659 North St, San Francisco,CA,94016 +189658,34in Ultrawide Monitor,1,379.99,2019-04-03 16:12:00,377 Main St, Dallas,TX,75001 +189659,USB-C Charging Cable,1,11.95,2019-04-18 16:30:00,803 1st St, San Francisco,CA,94016 +189660,Wired Headphones,1,11.99,2019-04-23 14:00:00,203 West St, Boston,MA,02215 +189661,AA Batteries (4-pack),1,3.84,2019-04-03 11:05:00,124 South St, Los Angeles,CA,90001 +189662,27in 4K Gaming Monitor,1,389.99,2019-04-21 16:17:00,536 Hickory St, Los Angeles,CA,90001 +189663,Wired Headphones,2,11.99,2019-04-11 12:31:00,833 Ridge St, Dallas,TX,75001 +189664,Apple Airpods Headphones,1,150.0,2019-04-03 08:26:00,685 Wilson St, New York City,NY,10001 +189665,Apple Airpods Headphones,1,150.0,2019-04-20 23:37:00,790 Lincoln St, Dallas,TX,75001 +189666,27in FHD Monitor,1,149.99,2019-04-08 20:52:00,997 Chestnut St, San Francisco,CA,94016 +189667,Macbook Pro Laptop,1,1700.0,2019-04-06 19:13:00,832 5th St, New York City,NY,10001 +189668,USB-C Charging Cable,1,11.95,2019-04-01 16:03:00,304 Sunset St, Austin,TX,73301 +189669,Google Phone,1,600.0,2019-04-30 08:32:00,90 12th St, Los Angeles,CA,90001 +189669,Bose SoundSport Headphones,1,99.99,2019-04-30 08:32:00,90 12th St, Los Angeles,CA,90001 +189670,27in FHD Monitor,1,149.99,2019-04-17 18:41:00,728 Lakeview St, Los Angeles,CA,90001 +189671,AA Batteries (4-pack),1,3.84,2019-04-25 11:07:00,133 Cherry St, Boston,MA,02215 +189672,Wired Headphones,1,11.99,2019-04-30 20:17:00,500 Hickory St, Portland,OR,97035 +189673,20in Monitor,1,109.99,2019-04-18 21:53:00,368 Maple St, Atlanta,GA,30301 +189674,AA Batteries (4-pack),2,3.84,2019-04-01 10:23:00,197 11th St, New York City,NY,10001 +189675,Flatscreen TV,1,300.0,2019-04-20 02:34:00,405 Cherry St, New York City,NY,10001 +189676,27in FHD Monitor,1,149.99,2019-04-11 15:41:00,311 Johnson St, Los Angeles,CA,90001 +189677,AAA Batteries (4-pack),1,2.99,2019-04-01 14:06:00,874 Pine St, Portland,OR,97035 +189678,Google Phone,1,600.0,2019-04-06 20:44:00,755 Chestnut St, New York City,NY,10001 +189679,34in Ultrawide Monitor,1,379.99,2019-04-24 16:49:00,212 Lakeview St, San Francisco,CA,94016 +189680,Flatscreen TV,1,300.0,2019-04-08 15:03:00,743 Washington St, San Francisco,CA,94016 +189681,AA Batteries (4-pack),1,3.84,2019-04-29 19:26:00,254 14th St, San Francisco,CA,94016 +189681,Bose SoundSport Headphones,1,99.99,2019-04-29 19:26:00,254 14th St, San Francisco,CA,94016 +189682,Google Phone,1,600.0,2019-04-14 12:57:00,470 11th St, Dallas,TX,75001 +189683,Apple Airpods Headphones,1,150.0,2019-04-03 21:08:00,732 Center St, Seattle,WA,98101 +189684,Flatscreen TV,1,300.0,2019-04-25 12:30:00,327 Chestnut St, Atlanta,GA,30301 +189685,27in 4K Gaming Monitor,1,389.99,2019-04-01 13:28:00,729 Center St, New York City,NY,10001 +189686,Wired Headphones,1,11.99,2019-04-01 12:50:00,510 Jefferson St, San Francisco,CA,94016 +189687,iPhone,1,700.0,2019-04-23 10:48:00,929 Park St, New York City,NY,10001 +189688,Bose SoundSport Headphones,1,99.99,2019-04-30 22:27:00,895 14th St, San Francisco,CA,94016 +189689,27in FHD Monitor,1,149.99,2019-04-16 18:30:00,221 River St, Seattle,WA,98101 +189690,AA Batteries (4-pack),1,3.84,2019-04-11 00:25:00,351 6th St, San Francisco,CA,94016 +189691,AA Batteries (4-pack),1,3.84,2019-04-30 11:52:00,474 Lake St, Seattle,WA,98101 +189692,USB-C Charging Cable,1,11.95,2019-04-07 17:38:00,407 South St, San Francisco,CA,94016 +189693,Bose SoundSport Headphones,1,99.99,2019-04-30 18:46:00,431 Meadow St, Los Angeles,CA,90001 +189694,AA Batteries (4-pack),1,3.84,2019-04-20 20:05:00,323 12th St, San Francisco,CA,94016 +189695,Bose SoundSport Headphones,1,99.99,2019-04-14 01:02:00,227 Jefferson St, Portland,OR,97035 +189696,34in Ultrawide Monitor,1,379.99,2019-04-20 10:12:00,401 River St, San Francisco,CA,94016 +189697,Macbook Pro Laptop,1,1700.0,2019-04-08 18:23:00,789 13th St, Seattle,WA,98101 +189698,27in FHD Monitor,1,149.99,2019-04-03 16:52:00,964 River St, San Francisco,CA,94016 +189699,USB-C Charging Cable,1,11.95,2019-04-24 22:03:00,288 Johnson St, Seattle,WA,98101 +189700,Wired Headphones,1,11.99,2019-04-06 08:11:00,477 Highland St, Dallas,TX,75001 +189701,AA Batteries (4-pack),1,3.84,2019-04-14 17:01:00,657 Elm St, Atlanta,GA,30301 +189702,Bose SoundSport Headphones,1,99.99,2019-04-30 17:21:00,808 Jackson St, San Francisco,CA,94016 +189703,USB-C Charging Cable,1,11.95,2019-04-06 13:54:00,429 Spruce St, Los Angeles,CA,90001 +189704,iPhone,1,700.0,2019-04-16 18:12:00,203 13th St, Dallas,TX,75001 +189705,USB-C Charging Cable,1,11.95,2019-04-24 21:13:00,21 Park St, Portland,ME,04101 +189706,27in FHD Monitor,1,149.99,2019-04-18 16:36:00,297 Main St, Seattle,WA,98101 +189707,27in FHD Monitor,1,149.99,2019-04-22 11:08:00,727 Hill St, Boston,MA,02215 +189708,AA Batteries (4-pack),1,3.84,2019-04-29 23:36:00,734 Park St, New York City,NY,10001 +189709,AAA Batteries (4-pack),1,2.99,2019-04-18 19:44:00,757 Lincoln St, Los Angeles,CA,90001 +189710,Bose SoundSport Headphones,1,99.99,2019-04-25 14:39:00,617 6th St, Boston,MA,02215 +189711,AA Batteries (4-pack),1,3.84,2019-04-04 15:50:00,801 Washington St, Seattle,WA,98101 +189711,AA Batteries (4-pack),2,3.84,2019-04-04 15:50:00,801 Washington St, Seattle,WA,98101 +189712,AA Batteries (4-pack),1,3.84,2019-04-23 20:01:00,684 Willow St, Boston,MA,02215 +189713,27in FHD Monitor,1,149.99,2019-04-30 11:40:00,597 Center St, San Francisco,CA,94016 +189714,Lightning Charging Cable,1,14.95,2019-04-09 18:47:00,150 Washington St, Los Angeles,CA,90001 +189715,Lightning Charging Cable,1,14.95,2019-04-18 23:22:00,612 4th St, New York City,NY,10001 +189716,AAA Batteries (4-pack),1,2.99,2019-04-10 14:51:00,528 Maple St, Los Angeles,CA,90001 +189717,AA Batteries (4-pack),2,3.84,2019-04-04 07:13:00,649 West St, Atlanta,GA,30301 +189718,27in 4K Gaming Monitor,1,389.99,2019-04-16 20:08:00,851 10th St, New York City,NY,10001 +189719,AAA Batteries (4-pack),1,2.99,2019-04-01 21:07:00,792 Cherry St, New York City,NY,10001 +189720,27in 4K Gaming Monitor,1,389.99,2019-04-17 19:09:00,74 Cherry St, Austin,TX,73301 +189721,27in 4K Gaming Monitor,1,389.99,2019-04-17 08:32:00,752 Hill St, Los Angeles,CA,90001 +189722,Bose SoundSport Headphones,1,99.99,2019-04-10 17:07:00,19 8th St, New York City,NY,10001 +189723,Wired Headphones,1,11.99,2019-04-26 20:57:00,443 Elm St, San Francisco,CA,94016 +189724,Lightning Charging Cable,1,14.95,2019-04-24 13:10:00,199 Highland St, San Francisco,CA,94016 +189725,USB-C Charging Cable,1,11.95,2019-04-26 11:48:00,958 14th St, Seattle,WA,98101 +189726,Lightning Charging Cable,1,14.95,2019-04-18 16:35:00,884 Madison St, Boston,MA,02215 +189727,AA Batteries (4-pack),1,3.84,2019-04-18 13:10:00,799 Jackson St, New York City,NY,10001 +189728,AAA Batteries (4-pack),1,2.99,2019-04-27 00:07:00,295 South St, San Francisco,CA,94016 +189729,34in Ultrawide Monitor,1,379.99,2019-04-20 15:02:00,206 7th St, San Francisco,CA,94016 +189730,ThinkPad Laptop,1,999.99,2019-04-26 12:10:00,895 11th St, Seattle,WA,98101 +189731,27in FHD Monitor,1,149.99,2019-04-02 21:05:00,867 Johnson St, Dallas,TX,75001 +189732,AAA Batteries (4-pack),2,2.99,2019-04-07 20:24:00,879 Cherry St, San Francisco,CA,94016 +189733,Apple Airpods Headphones,1,150.0,2019-04-28 20:56:00,858 Washington St, Boston,MA,02215 +189734,Lightning Charging Cable,1,14.95,2019-04-10 10:23:00,355 Lakeview St, San Francisco,CA,94016 +189735,AAA Batteries (4-pack),1,2.99,2019-04-23 10:39:00,445 7th St, Seattle,WA,98101 +189736,AA Batteries (4-pack),1,3.84,2019-04-25 18:29:00,132 Hill St, Austin,TX,73301 +189737,Wired Headphones,1,11.99,2019-04-05 12:25:00,584 Center St, Seattle,WA,98101 +189738,Flatscreen TV,1,300.0,2019-04-10 14:44:00,753 5th St, Boston,MA,02215 +189739,Bose SoundSport Headphones,1,99.99,2019-04-24 20:52:00,510 Dogwood St, Boston,MA,02215 +189740,Bose SoundSport Headphones,1,99.99,2019-04-13 11:40:00,859 Pine St, Los Angeles,CA,90001 +189741,Apple Airpods Headphones,1,150.0,2019-04-30 10:21:00,544 Cedar St, Austin,TX,73301 +189742,Apple Airpods Headphones,1,150.0,2019-04-08 10:36:00,713 Sunset St, New York City,NY,10001 +189743,USB-C Charging Cable,1,11.95,2019-04-30 11:31:00,902 13th St, Dallas,TX,75001 +189744,AAA Batteries (4-pack),1,2.99,2019-04-03 13:21:00,617 Sunset St, San Francisco,CA,94016 +189745,Google Phone,1,600.0,2019-04-17 19:29:00,555 9th St, Boston,MA,02215 +189746,Macbook Pro Laptop,1,1700.0,2019-04-06 20:44:00,304 9th St, Dallas,TX,75001 +189747,USB-C Charging Cable,1,11.95,2019-04-08 09:18:00,404 Cherry St, New York City,NY,10001 +189748,Bose SoundSport Headphones,1,99.99,2019-04-03 10:42:00,452 Main St, Los Angeles,CA,90001 +189749,34in Ultrawide Monitor,1,379.99,2019-04-03 10:39:00,710 Madison St, Seattle,WA,98101 +189750,AA Batteries (4-pack),1,3.84,2019-04-27 16:03:00,10 Center St, Portland,ME,04101 +189751,27in FHD Monitor,1,149.99,2019-04-25 12:30:00,511 Cherry St, Dallas,TX,75001 +189752,34in Ultrawide Monitor,1,379.99,2019-04-09 17:25:00,650 Chestnut St, Dallas,TX,75001 +189753,Flatscreen TV,1,300.0,2019-04-08 23:47:00,986 Lakeview St, New York City,NY,10001 +189754,Wired Headphones,1,11.99,2019-04-11 18:49:00,739 South St, Los Angeles,CA,90001 +189755,20in Monitor,1,109.99,2019-04-12 13:29:00,378 Forest St, Los Angeles,CA,90001 +189756,USB-C Charging Cable,1,11.95,2019-04-12 14:19:00,353 12th St, Boston,MA,02215 +189757,27in 4K Gaming Monitor,1,389.99,2019-04-12 13:52:00,254 13th St, Los Angeles,CA,90001 +189758,Lightning Charging Cable,2,14.95,2019-04-03 09:01:00,756 North St, Boston,MA,02215 +189759,Apple Airpods Headphones,1,150.0,2019-04-30 13:44:00,458 4th St, Portland,ME,04101 +189760,AAA Batteries (4-pack),1,2.99,2019-04-13 10:38:00,396 Cedar St, Portland,OR,97035 +189761,Lightning Charging Cable,1,14.95,2019-04-18 08:56:00,263 Sunset St, Boston,MA,02215 +189762,AAA Batteries (4-pack),2,2.99,2019-04-06 18:47:00,926 Johnson St, Los Angeles,CA,90001 +189763,AAA Batteries (4-pack),3,2.99,2019-04-17 15:43:00,673 Cherry St, San Francisco,CA,94016 +189764,Lightning Charging Cable,1,14.95,2019-04-18 10:22:00,201 7th St, San Francisco,CA,94016 +189765,Lightning Charging Cable,1,14.95,2019-04-26 20:35:00,97 Hill St, Dallas,TX,75001 +189766,Apple Airpods Headphones,1,150.0,2019-04-16 18:43:00,841 Main St, Boston,MA,02215 +189767,Lightning Charging Cable,1,14.95,2019-04-03 12:35:00,513 West St, Dallas,TX,75001 +189768,27in FHD Monitor,1,149.99,2019-04-09 20:52:00,541 14th St, Boston,MA,02215 +189769,AAA Batteries (4-pack),1,2.99,2019-04-18 19:44:00,988 Lakeview St, New York City,NY,10001 +189770,Macbook Pro Laptop,1,1700.0,2019-04-23 13:56:00,608 Park St, Los Angeles,CA,90001 +189771,Apple Airpods Headphones,1,150.0,2019-04-17 09:35:00,71 Church St, Boston,MA,02215 +189772,Apple Airpods Headphones,1,150.0,2019-04-14 20:17:00,1 9th St, San Francisco,CA,94016 +189773,Bose SoundSport Headphones,1,99.99,2019-04-24 00:22:00,426 North St, Atlanta,GA,30301 +189774,Macbook Pro Laptop,1,1700.0,2019-04-28 09:26:00,673 Elm St, Portland,OR,97035 +189775,USB-C Charging Cable,1,11.95,2019-04-28 17:04:00,251 Cherry St, Los Angeles,CA,90001 +189776,Wired Headphones,1,11.99,2019-04-01 11:04:00,405 2nd St, New York City,NY,10001 +189777,Wired Headphones,1,11.99,2019-04-28 09:21:00,342 Main St, San Francisco,CA,94016 +189778,Apple Airpods Headphones,1,150.0,2019-04-04 20:31:00,127 Hickory St, Los Angeles,CA,90001 +189779,Lightning Charging Cable,1,14.95,2019-04-28 12:17:00,611 10th St, San Francisco,CA,94016 +189780,Wired Headphones,1,11.99,2019-04-19 18:45:00,73 Church St, Austin,TX,73301 +189781,AAA Batteries (4-pack),4,2.99,2019-04-06 19:11:00,267 South St, New York City,NY,10001 +189782,Bose SoundSport Headphones,1,99.99,2019-04-18 17:47:00,460 Wilson St, Los Angeles,CA,90001 +189783,Apple Airpods Headphones,1,150.0,2019-04-03 09:12:00,111 Center St, Austin,TX,73301 +189784,AA Batteries (4-pack),1,3.84,2019-04-08 23:21:00,138 Hill St, Dallas,TX,75001 +189785,Apple Airpods Headphones,1,150.0,2019-04-03 12:30:00,27 8th St, New York City,NY,10001 +189786,34in Ultrawide Monitor,1,379.99,2019-04-29 18:17:00,20 Madison St, Dallas,TX,75001 +189787,Wired Headphones,1,11.99,2019-04-16 10:33:00,227 1st St, Los Angeles,CA,90001 +189788,27in FHD Monitor,1,149.99,2019-04-17 15:50:00,954 Meadow St, New York City,NY,10001 +189789,20in Monitor,1,109.99,2019-04-15 22:56:00,243 River St, New York City,NY,10001 +189790,34in Ultrawide Monitor,1,379.99,2019-04-11 11:02:00,496 Pine St, San Francisco,CA,94016 +189790,Google Phone,1,600.0,2019-04-11 11:02:00,496 Pine St, San Francisco,CA,94016 +189791,Lightning Charging Cable,1,14.95,2019-04-08 10:36:00,603 Lake St, Los Angeles,CA,90001 +189792,USB-C Charging Cable,1,11.95,2019-04-13 21:18:00,135 Center St, Portland,OR,97035 +189793,Wired Headphones,1,11.99,2019-04-01 11:20:00,422 Jackson St, San Francisco,CA,94016 +189794,Lightning Charging Cable,1,14.95,2019-04-25 00:27:00,528 Dogwood St, New York City,NY,10001 +189795,Wired Headphones,1,11.99,2019-04-23 05:05:00,850 10th St, San Francisco,CA,94016 +189796,Lightning Charging Cable,1,14.95,2019-04-15 11:21:00,467 14th St, San Francisco,CA,94016 +189797,AAA Batteries (4-pack),4,2.99,2019-04-06 14:09:00,652 Dogwood St, Boston,MA,02215 +189798,Lightning Charging Cable,1,14.95,2019-04-25 09:19:00,337 9th St, San Francisco,CA,94016 +189799,AAA Batteries (4-pack),2,2.99,2019-04-12 20:31:00,606 North St, San Francisco,CA,94016 +189800,Apple Airpods Headphones,1,150.0,2019-04-28 13:59:00,56 5th St, Portland,OR,97035 +189801,Flatscreen TV,1,300.0,2019-04-26 18:03:00,131 2nd St, New York City,NY,10001 +189802,AAA Batteries (4-pack),1,2.99,2019-04-22 17:29:00,931 South St, Los Angeles,CA,90001 +189803,Lightning Charging Cable,1,14.95,2019-04-11 18:05:00,340 Hickory St, San Francisco,CA,94016 +189804,Lightning Charging Cable,1,14.95,2019-04-12 09:26:00,311 Center St, Atlanta,GA,30301 +189805,Macbook Pro Laptop,1,1700.0,2019-05-01 01:31:00,919 Sunset St, San Francisco,CA,94016 +189806,Macbook Pro Laptop,1,1700.0,2019-05-01 00:52:00,928 Dogwood St, Dallas,TX,75001 +189807,AAA Batteries (4-pack),1,2.99,2019-04-03 16:42:00,42 Center St, San Francisco,CA,94016 +189808,20in Monitor,1,109.99,2019-04-11 21:41:00,232 Elm St, New York City,NY,10001 +189809,iPhone,1,700.0,2019-04-19 19:56:00,871 Lincoln St, Los Angeles,CA,90001 +189809,Apple Airpods Headphones,1,150.0,2019-04-19 19:56:00,871 Lincoln St, Los Angeles,CA,90001 +189810,AA Batteries (4-pack),1,3.84,2019-04-07 13:06:00,416 Lake St, New York City,NY,10001 +189811,AAA Batteries (4-pack),1,2.99,2019-04-28 21:11:00,932 Jefferson St, Dallas,TX,75001 +189812,Wired Headphones,1,11.99,2019-04-01 18:55:00,790 4th St, Dallas,TX,75001 +189813,Lightning Charging Cable,1,14.95,2019-04-01 06:02:00,822 Forest St, Atlanta,GA,30301 +189814,iPhone,1,700.0,2019-04-03 09:14:00,843 Wilson St, Dallas,TX,75001 +189815,Bose SoundSport Headphones,1,99.99,2019-04-13 15:55:00,305 Highland St, San Francisco,CA,94016 +189816,Macbook Pro Laptop,1,1700.0,2019-04-26 14:54:00,323 South St, New York City,NY,10001 +189816,AAA Batteries (4-pack),1,2.99,2019-04-26 14:54:00,323 South St, New York City,NY,10001 +189817,ThinkPad Laptop,1,999.99,2019-04-10 17:06:00,740 Cedar St, Los Angeles,CA,90001 +189818,Apple Airpods Headphones,1,150.0,2019-04-29 17:54:00,688 Willow St, Portland,OR,97035 +189819,Apple Airpods Headphones,1,150.0,2019-04-05 08:52:00,822 Jackson St, San Francisco,CA,94016 +189820,AA Batteries (4-pack),1,3.84,2019-04-02 19:36:00,824 Forest St, Seattle,WA,98101 +189821,ThinkPad Laptop,1,999.99,2019-04-07 14:32:00,129 Johnson St, San Francisco,CA,94016 +189822,USB-C Charging Cable,1,11.95,2019-04-22 20:13:00,368 8th St, Los Angeles,CA,90001 +189823,27in 4K Gaming Monitor,1,389.99,2019-04-18 19:35:00,857 Hill St, New York City,NY,10001 +189824,Google Phone,1,600.0,2019-04-29 07:08:00,311 Cherry St, Portland,OR,97035 +189825,Bose SoundSport Headphones,1,99.99,2019-04-18 20:42:00,52 10th St, New York City,NY,10001 +189826,iPhone,1,700.0,2019-04-16 09:16:00,668 Highland St, Boston,MA,02215 +189827,Apple Airpods Headphones,1,150.0,2019-04-22 21:19:00,623 South St, Atlanta,GA,30301 +189828,27in 4K Gaming Monitor,1,389.99,2019-04-24 13:15:00,98 Center St, San Francisco,CA,94016 +189829,AAA Batteries (4-pack),1,2.99,2019-04-14 15:24:00,202 Cherry St, Dallas,TX,75001 +189830,USB-C Charging Cable,1,11.95,2019-04-07 23:32:00,644 Maple St, San Francisco,CA,94016 +189831,20in Monitor,1,109.99,2019-04-15 20:22:00,270 Wilson St, Seattle,WA,98101 +189832,Apple Airpods Headphones,1,150.0,2019-04-10 19:21:00,406 Jackson St, Dallas,TX,75001 +189833,Flatscreen TV,1,300.0,2019-04-24 18:47:00,540 Lincoln St, Dallas,TX,75001 +189834,Apple Airpods Headphones,1,150.0,2019-04-06 18:47:00,552 9th St, New York City,NY,10001 +189834,AAA Batteries (4-pack),1,2.99,2019-04-06 18:47:00,552 9th St, New York City,NY,10001 +189835,AA Batteries (4-pack),1,3.84,2019-04-14 13:35:00,84 Church St, San Francisco,CA,94016 +189836,Bose SoundSport Headphones,1,99.99,2019-04-21 07:28:00,898 Highland St, San Francisco,CA,94016 +189837,Vareebadd Phone,1,400.0,2019-04-27 20:18:00,381 Maple St, Los Angeles,CA,90001 +189837,USB-C Charging Cable,1,11.95,2019-04-27 20:18:00,381 Maple St, Los Angeles,CA,90001 +189838,AA Batteries (4-pack),2,3.84,2019-04-26 16:53:00,859 Hickory St, Dallas,TX,75001 +189839,AAA Batteries (4-pack),2,2.99,2019-04-07 21:09:00,290 11th St, San Francisco,CA,94016 +189840,Macbook Pro Laptop,1,1700.0,2019-04-04 15:19:00,541 Cherry St, San Francisco,CA,94016 +189841,AAA Batteries (4-pack),3,2.99,2019-04-11 12:16:00,988 4th St, Austin,TX,73301 +189842,iPhone,1,700.0,2019-04-16 13:56:00,815 Washington St, Los Angeles,CA,90001 +189842,Lightning Charging Cable,1,14.95,2019-04-16 13:56:00,815 Washington St, Los Angeles,CA,90001 +189843,USB-C Charging Cable,1,11.95,2019-04-25 09:47:00,849 10th St, San Francisco,CA,94016 +189844,Wired Headphones,1,11.99,2019-04-13 14:49:00,650 Spruce St, Dallas,TX,75001 +189845,Google Phone,1,600.0,2019-04-28 16:46:00,953 Chestnut St, San Francisco,CA,94016 +189845,USB-C Charging Cable,1,11.95,2019-04-28 16:46:00,953 Chestnut St, San Francisco,CA,94016 +189846,Wired Headphones,1,11.99,2019-04-14 04:21:00,538 Park St, Boston,MA,02215 +189847,USB-C Charging Cable,1,11.95,2019-04-15 19:21:00,612 Elm St, Atlanta,GA,30301 +189848,AA Batteries (4-pack),1,3.84,2019-04-28 05:27:00,331 Center St, San Francisco,CA,94016 +189849,AAA Batteries (4-pack),1,2.99,2019-04-09 17:18:00,248 Dogwood St, Boston,MA,02215 +189850,Macbook Pro Laptop,1,1700.0,2019-04-27 12:42:00,710 Cedar St, New York City,NY,10001 +189851,AAA Batteries (4-pack),1,2.99,2019-04-03 20:51:00,270 Church St, Seattle,WA,98101 +189852,AA Batteries (4-pack),1,3.84,2019-04-12 18:10:00,789 Walnut St, Seattle,WA,98101 +189853,Macbook Pro Laptop,1,1700.0,2019-04-15 03:16:00,237 Hickory St, Los Angeles,CA,90001 +189854,USB-C Charging Cable,1,11.95,2019-05-01 02:09:00,743 Elm St, Boston,MA,02215 +189855,USB-C Charging Cable,1,11.95,2019-04-11 12:57:00,908 Pine St, Boston,MA,02215 +189856,Vareebadd Phone,1,400.0,2019-04-05 13:37:00,629 14th St, Los Angeles,CA,90001 +189857,20in Monitor,1,109.99,2019-04-15 20:58:00,271 Walnut St, New York City,NY,10001 +189858,AAA Batteries (4-pack),1,2.99,2019-04-24 08:53:00,212 Park St, Boston,MA,02215 +189859,Apple Airpods Headphones,1,150.0,2019-04-21 09:11:00,595 Ridge St, Austin,TX,73301 +189860,AA Batteries (4-pack),1,3.84,2019-04-06 07:42:00,853 North St, Seattle,WA,98101 +189861,USB-C Charging Cable,1,11.95,2019-04-28 13:30:00,819 Center St, Austin,TX,73301 +189862,27in 4K Gaming Monitor,1,389.99,2019-04-19 18:27:00,605 Lakeview St, Los Angeles,CA,90001 +189863,ThinkPad Laptop,1,999.99,2019-04-27 14:42:00,77 Lincoln St, Los Angeles,CA,90001 +189864,AA Batteries (4-pack),1,3.84,2019-04-16 10:04:00,790 Jefferson St, Boston,MA,02215 +189865,20in Monitor,1,109.99,2019-04-19 20:53:00,933 Cherry St, New York City,NY,10001 +189866,AA Batteries (4-pack),1,3.84,2019-04-18 13:13:00,19 13th St, San Francisco,CA,94016 +189867,USB-C Charging Cable,2,11.95,2019-04-06 10:40:00,842 Meadow St, Los Angeles,CA,90001 +189868,USB-C Charging Cable,1,11.95,2019-04-26 17:44:00,952 Chestnut St, Boston,MA,02215 +189869,ThinkPad Laptop,1,999.99,2019-04-09 12:31:00,933 Hill St, San Francisco,CA,94016 +189870,Lightning Charging Cable,1,14.95,2019-04-05 08:37:00,974 Chestnut St, Atlanta,GA,30301 +189871,iPhone,1,700.0,2019-04-24 22:25:00,840 Jefferson St, Los Angeles,CA,90001 +189871,Wired Headphones,1,11.99,2019-04-24 22:25:00,840 Jefferson St, Los Angeles,CA,90001 +189872,Bose SoundSport Headphones,1,99.99,2019-04-28 14:34:00,316 Cherry St, Portland,OR,97035 +189873,Macbook Pro Laptop,1,1700.0,2019-04-06 11:04:00,654 Maple St, Boston,MA,02215 +189874,Lightning Charging Cable,1,14.95,2019-04-24 09:58:00,937 Spruce St, San Francisco,CA,94016 +189875,USB-C Charging Cable,1,11.95,2019-04-13 11:23:00,7 Lakeview St, Los Angeles,CA,90001 +189876,AA Batteries (4-pack),1,3.84,2019-04-29 22:04:00,938 Meadow St, Seattle,WA,98101 +189877,Macbook Pro Laptop,1,1700.0,2019-04-28 18:17:00,878 2nd St, Portland,OR,97035 +189878,Lightning Charging Cable,1,14.95,2019-04-23 11:33:00,931 South St, Atlanta,GA,30301 +189879,AAA Batteries (4-pack),1,2.99,2019-04-09 04:44:00,92 Lake St, Boston,MA,02215 +189880,27in 4K Gaming Monitor,1,389.99,2019-04-06 11:31:00,234 10th St, Los Angeles,CA,90001 +189881,AA Batteries (4-pack),1,3.84,2019-04-12 01:12:00,780 Hickory St, New York City,NY,10001 +189882,Wired Headphones,2,11.99,2019-04-15 16:11:00,526 5th St, San Francisco,CA,94016 +189883,Wired Headphones,1,11.99,2019-04-24 15:41:00,659 Hill St, Austin,TX,73301 +189884,AA Batteries (4-pack),2,3.84,2019-04-10 21:02:00,755 2nd St, San Francisco,CA,94016 +189885,Vareebadd Phone,1,400.0,2019-04-07 17:44:00,769 Church St, New York City,NY,10001 +189886,34in Ultrawide Monitor,1,379.99,2019-04-27 20:02:00,662 14th St, San Francisco,CA,94016 +189887,Wired Headphones,2,11.99,2019-04-01 10:43:00,509 Lakeview St, Dallas,TX,75001 +189888,Bose SoundSport Headphones,1,99.99,2019-04-05 18:47:00,127 Hill St, San Francisco,CA,94016 +189889,AA Batteries (4-pack),2,3.84,2019-04-18 12:18:00,667 13th St, Dallas,TX,75001 +189890,Apple Airpods Headphones,1,150.0,2019-04-26 16:52:00,69 Chestnut St, Los Angeles,CA,90001 +189891,20in Monitor,1,109.99,2019-04-26 20:37:00,802 Willow St, New York City,NY,10001 +189892,AA Batteries (4-pack),1,3.84,2019-04-09 11:39:00,336 Washington St, San Francisco,CA,94016 +189893,Lightning Charging Cable,1,14.95,2019-04-27 23:54:00,357 North St, San Francisco,CA,94016 +189894,Lightning Charging Cable,1,14.95,2019-04-24 11:03:00,527 Forest St, San Francisco,CA,94016 +189895,AA Batteries (4-pack),1,3.84,2019-04-12 13:09:00,968 Madison St, Atlanta,GA,30301 +189896,Lightning Charging Cable,1,14.95,2019-04-02 21:35:00,490 Forest St, Los Angeles,CA,90001 +189897,Lightning Charging Cable,1,14.95,2019-04-07 18:40:00,232 Johnson St, San Francisco,CA,94016 +189898,AAA Batteries (4-pack),1,2.99,2019-04-25 09:51:00,398 Church St, Atlanta,GA,30301 +189899,USB-C Charging Cable,1,11.95,2019-04-10 17:59:00,151 Center St, Los Angeles,CA,90001 +189900,34in Ultrawide Monitor,1,379.99,2019-04-19 12:57:00,667 4th St, Boston,MA,02215 +189901,AA Batteries (4-pack),1,3.84,2019-04-25 16:22:00,650 Chestnut St, Boston,MA,02215 +189902,Flatscreen TV,1,300.0,2019-04-21 04:10:00,155 10th St, San Francisco,CA,94016 +189903,Bose SoundSport Headphones,1,99.99,2019-04-29 13:34:00,530 Lakeview St, San Francisco,CA,94016 +189904,AA Batteries (4-pack),1,3.84,2019-04-18 19:43:00,578 Sunset St, Atlanta,GA,30301 +189905,27in FHD Monitor,1,149.99,2019-04-30 22:08:00,507 Walnut St, New York City,NY,10001 +189906,Wired Headphones,2,11.99,2019-04-09 11:26:00,55 9th St, Seattle,WA,98101 +189907,Lightning Charging Cable,1,14.95,2019-04-28 10:56:00,275 Willow St, San Francisco,CA,94016 +189908,Lightning Charging Cable,1,14.95,2019-04-05 06:54:00,255 Jefferson St, San Francisco,CA,94016 +189909,USB-C Charging Cable,1,11.95,2019-04-08 18:10:00,786 Willow St, New York City,NY,10001 +189910,Google Phone,1,600.0,2019-04-07 21:59:00,327 Adams St, San Francisco,CA,94016 +189910,USB-C Charging Cable,1,11.95,2019-04-07 21:59:00,327 Adams St, San Francisco,CA,94016 +189911,AAA Batteries (4-pack),1,2.99,2019-04-25 14:06:00,270 Hickory St, Boston,MA,02215 +189912,27in FHD Monitor,1,149.99,2019-04-04 12:40:00,616 6th St, Portland,OR,97035 +189913,Lightning Charging Cable,1,14.95,2019-04-04 20:45:00,781 Park St, Atlanta,GA,30301 +189914,USB-C Charging Cable,2,11.95,2019-04-13 19:27:00,66 Hickory St, Portland,ME,04101 +189915,USB-C Charging Cable,1,11.95,2019-04-29 11:43:00,510 1st St, Seattle,WA,98101 +189916,AAA Batteries (4-pack),2,2.99,2019-04-23 05:00:00,193 1st St, Portland,OR,97035 +189917,Wired Headphones,1,11.99,2019-04-20 21:36:00,456 Lakeview St, Los Angeles,CA,90001 +189918,34in Ultrawide Monitor,1,379.99,2019-04-12 14:05:00,154 Church St, Portland,OR,97035 +189919,Lightning Charging Cable,1,14.95,2019-04-28 13:49:00,770 Elm St, San Francisco,CA,94016 +189920,AAA Batteries (4-pack),1,2.99,2019-04-18 18:07:00,745 Madison St, Austin,TX,73301 +189921,Lightning Charging Cable,1,14.95,2019-04-19 17:52:00,585 11th St, Los Angeles,CA,90001 +189922,Apple Airpods Headphones,1,150.0,2019-04-23 22:27:00,928 South St, Boston,MA,02215 +189923,Bose SoundSport Headphones,1,99.99,2019-04-08 11:48:00,163 Lincoln St, Austin,TX,73301 +189924,AAA Batteries (4-pack),1,2.99,2019-04-02 12:57:00,576 North St, Boston,MA,02215 +189925,Lightning Charging Cable,1,14.95,2019-04-28 15:29:00,313 Dogwood St, San Francisco,CA,94016 +189926,LG Washing Machine,1,600.0,2019-04-10 14:15:00,569 Main St, Atlanta,GA,30301 +189927,Apple Airpods Headphones,1,150.0,2019-04-24 15:01:00,616 River St, Seattle,WA,98101 +189928,AA Batteries (4-pack),1,3.84,2019-04-18 21:01:00,757 River St, San Francisco,CA,94016 +189929,Bose SoundSport Headphones,1,99.99,2019-04-09 10:38:00,868 Maple St, Atlanta,GA,30301 +189930,Bose SoundSport Headphones,1,99.99,2019-04-29 07:02:00,317 River St, San Francisco,CA,94016 +189931,34in Ultrawide Monitor,1,379.99,2019-04-03 15:10:00,40 Main St, Atlanta,GA,30301 +189932,Lightning Charging Cable,1,14.95,2019-04-27 14:06:00,84 Spruce St, Seattle,WA,98101 +189933,Bose SoundSport Headphones,1,99.99,2019-04-03 16:07:00,929 Dogwood St, Los Angeles,CA,90001 +189934,USB-C Charging Cable,1,11.95,2019-04-17 14:26:00,357 6th St, Portland,ME,04101 +189935,Wired Headphones,1,11.99,2019-04-10 23:42:00,407 Hill St, Los Angeles,CA,90001 +189936,AA Batteries (4-pack),1,3.84,2019-04-08 14:31:00,525 Walnut St, San Francisco,CA,94016 +189937,Bose SoundSport Headphones,1,99.99,2019-04-15 19:00:00,221 8th St, San Francisco,CA,94016 +189938,Wired Headphones,1,11.99,2019-04-28 19:01:00,865 Church St, San Francisco,CA,94016 +189939,AAA Batteries (4-pack),2,2.99,2019-04-14 19:04:00,563 Walnut St, New York City,NY,10001 +189940,Lightning Charging Cable,1,14.95,2019-04-18 14:50:00,943 Forest St, New York City,NY,10001 +189941,Apple Airpods Headphones,1,150.0,2019-04-28 20:29:00,400 Center St, Los Angeles,CA,90001 +189942,Google Phone,1,600.0,2019-04-01 22:07:00,757 Cedar St, San Francisco,CA,94016 +189942,USB-C Charging Cable,1,11.95,2019-04-01 22:07:00,757 Cedar St, San Francisco,CA,94016 +189943,AAA Batteries (4-pack),2,2.99,2019-04-04 20:05:00,752 Wilson St, San Francisco,CA,94016 +189944,AAA Batteries (4-pack),1,2.99,2019-04-14 17:59:00,641 Maple St, Austin,TX,73301 +189945,iPhone,1,700.0,2019-04-23 12:06:00,17 Hickory St, Boston,MA,02215 +189946,AA Batteries (4-pack),2,3.84,2019-04-08 00:40:00,479 2nd St, Los Angeles,CA,90001 +189947,34in Ultrawide Monitor,1,379.99,2019-04-29 10:45:00,512 Forest St, Los Angeles,CA,90001 +189948,USB-C Charging Cable,1,11.95,2019-04-21 01:05:00,599 1st St, San Francisco,CA,94016 +189949,34in Ultrawide Monitor,1,379.99,2019-04-17 14:54:00,388 Johnson St, San Francisco,CA,94016 +189950,USB-C Charging Cable,2,11.95,2019-04-28 15:52:00,285 Lake St, San Francisco,CA,94016 +189951,Macbook Pro Laptop,1,1700.0,2019-04-30 19:26:00,969 13th St, Portland,OR,97035 +189952,AAA Batteries (4-pack),1,2.99,2019-04-08 08:45:00,428 Hickory St, New York City,NY,10001 +189953,Wired Headphones,1,11.99,2019-04-18 09:28:00,264 West St, Atlanta,GA,30301 +189954,USB-C Charging Cable,1,11.95,2019-04-15 09:03:00,893 13th St, New York City,NY,10001 +189955,Vareebadd Phone,1,400.0,2019-04-01 15:55:00,662 Lakeview St, Boston,MA,02215 +189956,Apple Airpods Headphones,1,150.0,2019-04-23 10:07:00,673 Center St, San Francisco,CA,94016 +189957,Vareebadd Phone,1,400.0,2019-04-20 18:53:00,64 6th St, Portland,ME,04101 +189957,Wired Headphones,1,11.99,2019-04-20 18:53:00,64 6th St, Portland,ME,04101 +189958,ThinkPad Laptop,1,999.99,2019-04-13 19:13:00,181 12th St, New York City,NY,10001 +189959,Google Phone,1,600.0,2019-04-10 11:57:00,781 Hill St, Atlanta,GA,30301 +189960,AAA Batteries (4-pack),1,2.99,2019-04-10 20:56:00,61 Pine St, Boston,MA,02215 +189961,27in 4K Gaming Monitor,1,389.99,2019-04-16 12:15:00,505 13th St, New York City,NY,10001 +189962,USB-C Charging Cable,1,11.95,2019-04-25 14:49:00,203 West St, Portland,OR,97035 +189963,Google Phone,1,600.0,2019-04-11 19:05:00,637 13th St, Atlanta,GA,30301 +189963,Wired Headphones,1,11.99,2019-04-11 19:05:00,637 13th St, Atlanta,GA,30301 +189964,Wired Headphones,1,11.99,2019-04-22 17:49:00,213 Wilson St, Seattle,WA,98101 +189965,Lightning Charging Cable,1,14.95,2019-04-29 21:18:00,142 Forest St, San Francisco,CA,94016 +189966,AAA Batteries (4-pack),1,2.99,2019-04-21 20:39:00,865 14th St, Boston,MA,02215 +189967,Bose SoundSport Headphones,1,99.99,2019-04-09 13:51:00,272 7th St, Boston,MA,02215 +189968,Lightning Charging Cable,1,14.95,2019-04-13 19:42:00,980 River St, Boston,MA,02215 +189969,USB-C Charging Cable,1,11.95,2019-04-23 12:54:00,454 River St, Dallas,TX,75001 +189970,Lightning Charging Cable,1,14.95,2019-04-09 12:36:00,63 Center St, Boston,MA,02215 +189971,Bose SoundSport Headphones,1,99.99,2019-04-16 22:44:00,603 Cherry St, Los Angeles,CA,90001 +189972,Flatscreen TV,1,300.0,2019-04-16 20:05:00,812 Sunset St, Los Angeles,CA,90001 +189973,AAA Batteries (4-pack),1,2.99,2019-04-30 18:14:00,223 Madison St, Dallas,TX,75001 +189974,AA Batteries (4-pack),1,3.84,2019-04-29 12:02:00,619 Forest St, San Francisco,CA,94016 +189975,Apple Airpods Headphones,1,150.0,2019-04-24 00:16:00,318 South St, Atlanta,GA,30301 +189976,AA Batteries (4-pack),2,3.84,2019-04-24 19:00:00,584 Maple St, San Francisco,CA,94016 +189977,Google Phone,1,600.0,2019-04-17 11:51:00,190 Forest St, Atlanta,GA,30301 +189978,Lightning Charging Cable,1,14.95,2019-04-21 08:21:00,221 4th St, San Francisco,CA,94016 +189979,Apple Airpods Headphones,1,150.0,2019-04-01 13:35:00,993 12th St, Dallas,TX,75001 +189980,AA Batteries (4-pack),1,3.84,2019-04-27 08:23:00,173 Main St, Austin,TX,73301 +189981,USB-C Charging Cable,1,11.95,2019-04-07 18:23:00,503 Cherry St, Dallas,TX,75001 +189982,USB-C Charging Cable,1,11.95,2019-04-05 11:07:00,820 Meadow St, Atlanta,GA,30301 +189983,Bose SoundSport Headphones,1,99.99,2019-04-06 10:03:00,68 10th St, San Francisco,CA,94016 +189984,Lightning Charging Cable,1,14.95,2019-04-09 13:52:00,539 6th St, Los Angeles,CA,90001 +189985,Lightning Charging Cable,1,14.95,2019-04-23 21:48:00,543 Hickory St, Los Angeles,CA,90001 +189986,Google Phone,1,600.0,2019-04-13 22:14:00,881 Lakeview St, Austin,TX,73301 +189987,Apple Airpods Headphones,1,150.0,2019-04-23 11:35:00,827 Meadow St, Los Angeles,CA,90001 +189988,Lightning Charging Cable,1,14.95,2019-04-23 20:58:00,222 Madison St, Portland,ME,04101 +189989,27in FHD Monitor,1,149.99,2019-04-11 18:42:00,710 Wilson St, San Francisco,CA,94016 +189990,Lightning Charging Cable,1,14.95,2019-04-23 02:06:00,580 11th St, San Francisco,CA,94016 +189991,USB-C Charging Cable,1,11.95,2019-04-06 11:59:00,774 Lincoln St, Portland,ME,04101 +189992,Apple Airpods Headphones,1,150.0,2019-04-24 15:51:00,810 Cedar St, Atlanta,GA,30301 +189993,AAA Batteries (4-pack),1,2.99,2019-04-05 23:02:00,739 Park St, Portland,OR,97035 +189994,AAA Batteries (4-pack),4,2.99,2019-04-22 22:52:00,360 7th St, Seattle,WA,98101 +189995,Wired Headphones,3,11.99,2019-04-21 14:44:00,658 Cherry St, San Francisco,CA,94016 +189996,Apple Airpods Headphones,1,150.0,2019-04-22 19:26:00,560 6th St, Seattle,WA,98101 +189997,Wired Headphones,1,11.99,2019-04-27 18:23:00,497 Meadow St, Atlanta,GA,30301 +189998,USB-C Charging Cable,1,11.95,2019-04-18 22:20:00,431 6th St, Boston,MA,02215 +189999,Bose SoundSport Headphones,1,99.99,2019-04-19 10:09:00,945 8th St, San Francisco,CA,94016 +190000,LG Dryer,1,600.0,2019-04-11 23:21:00,87 8th St, San Francisco,CA,94016 +190001,AA Batteries (4-pack),1,3.84,2019-04-22 08:36:00,909 14th St, Seattle,WA,98101 +190002,AA Batteries (4-pack),1,3.84,2019-04-18 17:03:00,105 Wilson St, Atlanta,GA,30301 +190003,Lightning Charging Cable,1,14.95,2019-04-10 22:34:00,327 10th St, Los Angeles,CA,90001 +190004,Lightning Charging Cable,1,14.95,2019-04-04 21:48:00,515 2nd St, Los Angeles,CA,90001 +190005,AAA Batteries (4-pack),2,2.99,2019-04-26 13:20:00,199 Wilson St, New York City,NY,10001 +190006,Apple Airpods Headphones,1,150.0,2019-04-06 07:52:00,643 Madison St, New York City,NY,10001 +190007,iPhone,1,700.0,2019-04-20 06:40:00,797 Center St, Boston,MA,02215 +190007,Wired Headphones,1,11.99,2019-04-20 06:40:00,797 Center St, Boston,MA,02215 +190008,Lightning Charging Cable,2,14.95,2019-04-11 17:09:00,179 Main St, Portland,OR,97035 +190009,USB-C Charging Cable,1,11.95,2019-04-24 21:06:00,908 Cedar St, Seattle,WA,98101 +190010,Lightning Charging Cable,1,14.95,2019-04-16 08:38:00,590 Hill St, San Francisco,CA,94016 +190011,AAA Batteries (4-pack),2,2.99,2019-04-21 21:22:00,349 Adams St, San Francisco,CA,94016 +190012,AA Batteries (4-pack),1,3.84,2019-04-11 14:15:00,597 11th St, Austin,TX,73301 +190013,Apple Airpods Headphones,1,150.0,2019-04-09 18:42:00,913 Lake St, Portland,OR,97035 +190014,20in Monitor,1,109.99,2019-04-03 20:18:00,347 Hill St, San Francisco,CA,94016 +190015,Apple Airpods Headphones,1,150.0,2019-04-16 17:43:00,248 Dogwood St, New York City,NY,10001 +190016,Lightning Charging Cable,1,14.95,2019-04-29 16:15:00,559 Pine St, Los Angeles,CA,90001 +190017,Wired Headphones,1,11.99,2019-04-12 21:29:00,540 Lake St, Portland,OR,97035 +190018,AAA Batteries (4-pack),1,2.99,2019-04-29 18:43:00,848 2nd St, Atlanta,GA,30301 +190019,Lightning Charging Cable,1,14.95,2019-04-07 11:48:00,530 Center St, Austin,TX,73301 +190020,Lightning Charging Cable,1,14.95,2019-04-30 18:46:00,329 9th St, Los Angeles,CA,90001 +190021,Lightning Charging Cable,1,14.95,2019-04-22 12:19:00,986 9th St, New York City,NY,10001 +190022,Wired Headphones,1,11.99,2019-04-07 10:13:00,6 10th St, San Francisco,CA,94016 +190023,USB-C Charging Cable,1,11.95,2019-04-20 11:52:00,524 8th St, Atlanta,GA,30301 +190024,ThinkPad Laptop,1,999.99,2019-04-18 14:41:00,600 Maple St, Seattle,WA,98101 +190025,AAA Batteries (4-pack),1,2.99,2019-04-08 09:20:00,481 Washington St, Los Angeles,CA,90001 +190026,AA Batteries (4-pack),1,3.84,2019-04-25 09:48:00,700 7th St, San Francisco,CA,94016 +190027,Wired Headphones,1,11.99,2019-04-13 14:41:00,345 Pine St, New York City,NY,10001 +190028,USB-C Charging Cable,1,11.95,2019-04-11 17:29:00,874 9th St, Atlanta,GA,30301 +190029,ThinkPad Laptop,1,999.99,2019-04-18 13:31:00,106 Ridge St, Los Angeles,CA,90001 +190030,USB-C Charging Cable,1,11.95,2019-04-06 13:45:00,200 Park St, San Francisco,CA,94016 +190031,ThinkPad Laptop,1,999.99,2019-04-01 19:25:00,600 Walnut St, Portland,OR,97035 +190032,Lightning Charging Cable,1,14.95,2019-04-16 20:37:00,179 1st St, San Francisco,CA,94016 +190033,AA Batteries (4-pack),1,3.84,2019-04-27 11:52:00,157 Dogwood St, San Francisco,CA,94016 +190034,27in FHD Monitor,1,149.99,2019-04-11 11:51:00,556 Chestnut St, Austin,TX,73301 +190034,Lightning Charging Cable,1,14.95,2019-04-11 11:51:00,556 Chestnut St, Austin,TX,73301 +190035,Apple Airpods Headphones,1,150.0,2019-04-03 17:28:00,125 Main St, New York City,NY,10001 +190036,20in Monitor,1,109.99,2019-04-04 07:00:00,609 13th St, Los Angeles,CA,90001 +190037,Google Phone,1,600.0,2019-04-29 08:13:00,455 Dogwood St, Austin,TX,73301 +190038,Lightning Charging Cable,1,14.95,2019-04-18 20:50:00,728 West St, San Francisco,CA,94016 +190039,Vareebadd Phone,1,400.0,2019-04-04 16:36:00,577 6th St, New York City,NY,10001 +190040,Bose SoundSport Headphones,1,99.99,2019-04-05 17:29:00,870 Forest St, Seattle,WA,98101 +190041,Lightning Charging Cable,1,14.95,2019-04-26 10:40:00,857 South St, San Francisco,CA,94016 +190042,Flatscreen TV,1,300.0,2019-04-14 10:30:00,788 Lake St, San Francisco,CA,94016 +190043,AAA Batteries (4-pack),3,2.99,2019-04-03 18:21:00,651 1st St, San Francisco,CA,94016 +190044,iPhone,1,700.0,2019-04-30 18:47:00,958 Lakeview St, San Francisco,CA,94016 +190045,USB-C Charging Cable,1,11.95,2019-04-21 20:20:00,934 Madison St, Portland,OR,97035 +190046,USB-C Charging Cable,1,11.95,2019-04-18 21:55:00,105 North St, San Francisco,CA,94016 +190047,USB-C Charging Cable,1,11.95,2019-04-23 13:45:00,252 11th St, New York City,NY,10001 +190048,USB-C Charging Cable,1,11.95,2019-04-23 08:09:00,436 11th St, Dallas,TX,75001 +190049,Wired Headphones,1,11.99,2019-04-08 23:22:00,304 Elm St, Dallas,TX,75001 +190050,Lightning Charging Cable,1,14.95,2019-04-18 12:11:00,892 11th St, Portland,OR,97035 +190051,Lightning Charging Cable,1,14.95,2019-04-17 17:02:00,909 Meadow St, San Francisco,CA,94016 +190052,Apple Airpods Headphones,1,150.0,2019-04-19 08:13:00,88 Sunset St, Dallas,TX,75001 +190053,AA Batteries (4-pack),2,3.84,2019-04-05 20:53:00,886 North St, San Francisco,CA,94016 +190054,AA Batteries (4-pack),3,3.84,2019-04-13 10:57:00,334 Lake St, San Francisco,CA,94016 +190055,Apple Airpods Headphones,1,150.0,2019-04-12 13:15:00,193 1st St, San Francisco,CA,94016 +190056,Lightning Charging Cable,1,14.95,2019-04-08 07:29:00,490 Hickory St, Boston,MA,02215 +190057,Lightning Charging Cable,1,14.95,2019-04-09 12:40:00,405 South St, Boston,MA,02215 +190058,Lightning Charging Cable,1,14.95,2019-04-21 23:07:00,601 5th St, New York City,NY,10001 +190059,AA Batteries (4-pack),1,3.84,2019-04-02 03:07:00,977 Maple St, San Francisco,CA,94016 +190060,Lightning Charging Cable,1,14.95,2019-04-22 16:45:00,424 Walnut St, Boston,MA,02215 +190061,AAA Batteries (4-pack),2,2.99,2019-04-29 10:15:00,622 Park St, Austin,TX,73301 +190062,AAA Batteries (4-pack),3,2.99,2019-04-25 15:56:00,121 Sunset St, Atlanta,GA,30301 +190063,Wired Headphones,1,11.99,2019-04-04 21:29:00,208 Adams St, Boston,MA,02215 +190064,AAA Batteries (4-pack),3,2.99,2019-04-27 21:36:00,542 Meadow St, San Francisco,CA,94016 +190065,Bose SoundSport Headphones,1,99.99,2019-04-05 05:17:00,417 6th St, Los Angeles,CA,90001 +190066,27in 4K Gaming Monitor,1,389.99,2019-04-12 12:17:00,608 Maple St, Boston,MA,02215 +190067,Bose SoundSport Headphones,1,99.99,2019-04-07 23:32:00,472 Cedar St, Boston,MA,02215 +190068,Lightning Charging Cable,2,14.95,2019-04-19 16:53:00,717 Washington St, Dallas,TX,75001 +190069,USB-C Charging Cable,1,11.95,2019-04-28 18:55:00,560 Cherry St, Boston,MA,02215 +190070,Apple Airpods Headphones,1,150.0,2019-04-23 11:32:00,924 Madison St, Dallas,TX,75001 +190071,Bose SoundSport Headphones,1,99.99,2019-04-29 20:07:00,315 Dogwood St, San Francisco,CA,94016 +190072,Apple Airpods Headphones,1,150.0,2019-04-11 18:09:00,429 Madison St, San Francisco,CA,94016 +190073,Bose SoundSport Headphones,1,99.99,2019-04-01 21:38:00,583 West St, San Francisco,CA,94016 +190074,USB-C Charging Cable,2,11.95,2019-04-03 12:09:00,368 Lincoln St, Seattle,WA,98101 +190075,Lightning Charging Cable,1,14.95,2019-04-05 23:55:00,967 Maple St, Los Angeles,CA,90001 +190076,Apple Airpods Headphones,1,150.0,2019-04-03 08:23:00,318 Chestnut St, Los Angeles,CA,90001 +190077,AAA Batteries (4-pack),1,2.99,2019-04-23 13:19:00,323 Center St, Los Angeles,CA,90001 +190078,Lightning Charging Cable,1,14.95,2019-04-18 10:48:00,981 Center St, Seattle,WA,98101 +190079,Google Phone,1,600.0,2019-04-19 09:12:00,927 5th St, Los Angeles,CA,90001 +190080,Flatscreen TV,1,300.0,2019-04-30 15:57:00,315 Cedar St, Portland,OR,97035 +190081,Bose SoundSport Headphones,1,99.99,2019-04-14 19:58:00,585 Willow St, Austin,TX,73301 +190082,Google Phone,1,600.0,2019-04-12 19:07:00,743 Lincoln St, Boston,MA,02215 +190083,USB-C Charging Cable,2,11.95,2019-04-08 11:46:00,405 Hill St, Dallas,TX,75001 +190084,34in Ultrawide Monitor,1,379.99,2019-04-18 11:00:00,634 Highland St, San Francisco,CA,94016 +190085,Wired Headphones,1,11.99,2019-04-20 19:52:00,460 River St, San Francisco,CA,94016 +190086,AAA Batteries (4-pack),1,2.99,2019-04-21 11:16:00,165 2nd St, San Francisco,CA,94016 +190087,Wired Headphones,1,11.99,2019-04-08 18:15:00,439 Adams St, Austin,TX,73301 +190088,USB-C Charging Cable,2,11.95,2019-04-22 12:32:00,884 Park St, New York City,NY,10001 +190089,20in Monitor,1,109.99,2019-04-07 15:19:00,149 7th St, Atlanta,GA,30301 +190090,Wired Headphones,1,11.99,2019-04-23 14:42:00,612 West St, Portland,OR,97035 +190091,Apple Airpods Headphones,1,150.0,2019-04-28 16:05:00,491 Washington St, New York City,NY,10001 +190092,Apple Airpods Headphones,1,150.0,2019-04-23 16:14:00,960 Madison St, Portland,ME,04101 +190093,AAA Batteries (4-pack),2,2.99,2019-04-30 11:40:00,911 Hickory St, San Francisco,CA,94016 +190094,iPhone,1,700.0,2019-04-02 12:43:00,371 2nd St, New York City,NY,10001 +190095,AA Batteries (4-pack),3,3.84,2019-04-19 20:21:00,85 Highland St, New York City,NY,10001 +190096,AA Batteries (4-pack),2,3.84,2019-04-16 19:16:00,372 Willow St, Atlanta,GA,30301 +190097,AA Batteries (4-pack),1,3.84,2019-04-09 14:53:00,215 Johnson St, San Francisco,CA,94016 +190098,Wired Headphones,2,11.99,2019-04-17 07:28:00,589 Chestnut St, Atlanta,GA,30301 +190099,AA Batteries (4-pack),1,3.84,2019-04-18 08:07:00,845 Sunset St, Los Angeles,CA,90001 +190100,AAA Batteries (4-pack),1,2.99,2019-04-07 17:37:00,625 13th St, Los Angeles,CA,90001 +190101,Wired Headphones,1,11.99,2019-04-08 20:40:00,267 13th St, Los Angeles,CA,90001 +190102,AAA Batteries (4-pack),1,2.99,2019-04-16 14:56:00,763 Adams St, New York City,NY,10001 +190103,20in Monitor,1,109.99,2019-04-04 21:20:00,741 Church St, Dallas,TX,75001 +190104,Lightning Charging Cable,1,14.95,2019-04-16 08:54:00,3 Madison St, Seattle,WA,98101 +190105,iPhone,1,700.0,2019-04-06 20:34:00,490 Spruce St, San Francisco,CA,94016 +190106,Bose SoundSport Headphones,1,99.99,2019-04-30 20:47:00,305 Hickory St, Seattle,WA,98101 +190107,AA Batteries (4-pack),1,3.84,2019-04-01 15:33:00,178 Cherry St, Atlanta,GA,30301 +190108,AA Batteries (4-pack),2,3.84,2019-04-10 09:37:00,291 Hill St, Boston,MA,02215 +190109,Apple Airpods Headphones,1,150.0,2019-04-27 14:17:00,464 Willow St, San Francisco,CA,94016 +190110,AAA Batteries (4-pack),1,2.99,2019-04-21 19:16:00,329 Park St, New York City,NY,10001 +190111,Lightning Charging Cable,1,14.95,2019-04-29 21:10:00,399 Washington St, New York City,NY,10001 +190112,AAA Batteries (4-pack),1,2.99,2019-04-12 16:50:00,780 Forest St, Boston,MA,02215 +190113,Lightning Charging Cable,1,14.95,2019-04-15 17:36:00,621 6th St, Los Angeles,CA,90001 +190114,AAA Batteries (4-pack),1,2.99,2019-04-24 16:22:00,417 Dogwood St, Atlanta,GA,30301 +190115,27in FHD Monitor,1,149.99,2019-04-30 18:16:00,235 5th St, Atlanta,GA,30301 +190116,Apple Airpods Headphones,1,150.0,2019-04-26 19:51:00,920 Church St, Seattle,WA,98101 +190117,Flatscreen TV,1,300.0,2019-04-17 19:08:00,612 North St, Boston,MA,02215 +190118,Flatscreen TV,1,300.0,2019-04-01 15:33:00,528 Willow St, Los Angeles,CA,90001 +190119,Lightning Charging Cable,1,14.95,2019-04-06 12:52:00,436 12th St, Portland,ME,04101 +190120,AA Batteries (4-pack),1,3.84,2019-04-29 19:33:00,100 12th St, Seattle,WA,98101 +190121,Wired Headphones,1,11.99,2019-04-05 18:51:00,785 Madison St, Austin,TX,73301 +190122,AA Batteries (4-pack),1,3.84,2019-04-08 07:12:00,903 2nd St, Dallas,TX,75001 +190123,Wired Headphones,1,11.99,2019-04-02 13:09:00,565 Pine St, New York City,NY,10001 +190124,27in FHD Monitor,1,149.99,2019-04-08 20:52:00,545 Ridge St, Los Angeles,CA,90001 +190125,Wired Headphones,2,11.99,2019-04-11 01:51:00,47 West St, Seattle,WA,98101 +190126,AA Batteries (4-pack),1,3.84,2019-04-12 01:37:00,629 Johnson St, Atlanta,GA,30301 +190127,Google Phone,1,600.0,2019-04-19 08:54:00,676 Chestnut St, Atlanta,GA,30301 +190128,Macbook Pro Laptop,1,1700.0,2019-04-29 11:21:00,655 North St, New York City,NY,10001 +190129,Wired Headphones,1,11.99,2019-04-15 20:39:00,686 Cherry St, Los Angeles,CA,90001 +190130,LG Washing Machine,1,600.0,2019-04-21 18:04:00,183 Lake St, Dallas,TX,75001 +190131,AA Batteries (4-pack),1,3.84,2019-04-02 22:02:00,720 Meadow St, New York City,NY,10001 +190132,USB-C Charging Cable,1,11.95,2019-04-30 14:35:00,174 4th St, New York City,NY,10001 +190133,Apple Airpods Headphones,1,150.0,2019-04-15 12:54:00,997 Cherry St, Atlanta,GA,30301 +190134,AA Batteries (4-pack),1,3.84,2019-04-03 11:02:00,722 Hill St, Boston,MA,02215 +190135,AA Batteries (4-pack),2,3.84,2019-04-27 19:12:00,23 Highland St, Austin,TX,73301 +190136,Macbook Pro Laptop,1,1700.0,2019-04-08 12:06:00,172 Elm St, San Francisco,CA,94016 +190137,Lightning Charging Cable,1,14.95,2019-04-03 10:42:00,510 11th St, Los Angeles,CA,90001 +190138,iPhone,1,700.0,2019-04-20 22:10:00,345 Park St, Austin,TX,73301 +190139,Wired Headphones,1,11.99,2019-04-04 13:21:00,153 Church St, Atlanta,GA,30301 +190140,27in 4K Gaming Monitor,1,389.99,2019-04-19 18:19:00,115 Lake St, Portland,OR,97035 +190141,Lightning Charging Cable,1,14.95,2019-04-16 09:09:00,21 South St, Portland,OR,97035 +190142,Lightning Charging Cable,1,14.95,2019-04-26 12:06:00,439 Main St, Boston,MA,02215 +190143,Apple Airpods Headphones,1,150.0,2019-04-08 11:40:00,391 7th St, Dallas,TX,75001 +190144,USB-C Charging Cable,1,11.95,2019-04-05 17:49:00,430 Church St, Los Angeles,CA,90001 +190145,Wired Headphones,1,11.99,2019-04-14 11:21:00,975 Highland St, Dallas,TX,75001 +190146,34in Ultrawide Monitor,1,379.99,2019-04-04 12:37:00,229 Cherry St, Los Angeles,CA,90001 +190147,Lightning Charging Cable,1,14.95,2019-04-04 09:43:00,418 River St, Boston,MA,02215 +190148,USB-C Charging Cable,1,11.95,2019-04-05 14:41:00,341 Wilson St, Seattle,WA,98101 +190149,34in Ultrawide Monitor,1,379.99,2019-04-14 00:45:00,535 River St, Los Angeles,CA,90001 +190150,Lightning Charging Cable,1,14.95,2019-04-16 21:35:00,419 1st St, Portland,ME,04101 +190151,AAA Batteries (4-pack),1,2.99,2019-04-11 18:54:00,759 8th St, Seattle,WA,98101 +190152,27in 4K Gaming Monitor,1,389.99,2019-04-04 11:07:00,760 Spruce St, Dallas,TX,75001 +190153,Apple Airpods Headphones,1,150.0,2019-04-26 19:01:00,829 8th St, New York City,NY,10001 +190154,Wired Headphones,1,11.99,2019-04-09 15:55:00,298 8th St, Los Angeles,CA,90001 +190155,Bose SoundSport Headphones,1,99.99,2019-04-17 15:37:00,602 Washington St, Boston,MA,02215 +190156,AAA Batteries (4-pack),2,2.99,2019-04-02 16:03:00,165 13th St, Los Angeles,CA,90001 +190157,Apple Airpods Headphones,1,150.0,2019-04-01 13:48:00,774 6th St, Boston,MA,02215 +190158,27in 4K Gaming Monitor,1,389.99,2019-04-04 10:20:00,341 10th St, New York City,NY,10001 +190159,Wired Headphones,1,11.99,2019-04-02 00:58:00,578 Ridge St, New York City,NY,10001 +190160,Bose SoundSport Headphones,1,99.99,2019-04-15 22:50:00,999 Johnson St, Seattle,WA,98101 +190161,Wired Headphones,1,11.99,2019-04-16 14:47:00,349 Hickory St, New York City,NY,10001 +190161,Apple Airpods Headphones,1,150.0,2019-04-16 14:47:00,349 Hickory St, New York City,NY,10001 +190162,Flatscreen TV,1,300.0,2019-04-01 13:37:00,400 Park St, San Francisco,CA,94016 +190163,Bose SoundSport Headphones,1,99.99,2019-04-01 14:53:00,220 Adams St, New York City,NY,10001 +190164,Bose SoundSport Headphones,1,99.99,2019-04-27 17:41:00,531 1st St, Boston,MA,02215 +190165,Google Phone,1,600.0,2019-04-10 17:36:00,41 14th St, Seattle,WA,98101 +190166,Wired Headphones,1,11.99,2019-04-12 20:13:00,498 Dogwood St, Boston,MA,02215 +190167,27in 4K Gaming Monitor,1,389.99,2019-04-29 09:59:00,41 Lincoln St, San Francisco,CA,94016 +190168,AA Batteries (4-pack),1,3.84,2019-04-24 13:15:00,532 1st St, San Francisco,CA,94016 +190169,AA Batteries (4-pack),1,3.84,2019-04-29 22:41:00,220 Sunset St, San Francisco,CA,94016 +190170,AA Batteries (4-pack),2,3.84,2019-04-11 23:19:00,117 Hill St, Atlanta,GA,30301 +190171,34in Ultrawide Monitor,1,379.99,2019-04-22 18:37:00,55 Cedar St, New York City,NY,10001 +190172,34in Ultrawide Monitor,1,379.99,2019-04-05 23:54:00,346 1st St, Los Angeles,CA,90001 +190173,Lightning Charging Cable,1,14.95,2019-04-12 20:54:00,700 7th St, Los Angeles,CA,90001 +190174,AAA Batteries (4-pack),2,2.99,2019-04-04 23:54:00,124 Church St, New York City,NY,10001 +190175,AA Batteries (4-pack),1,3.84,2019-04-17 21:44:00,698 Hill St, Portland,OR,97035 +190176,USB-C Charging Cable,1,11.95,2019-04-20 22:18:00,980 Johnson St, New York City,NY,10001 +190177,AA Batteries (4-pack),1,3.84,2019-04-11 10:51:00,262 Elm St, Boston,MA,02215 +190178,Lightning Charging Cable,1,14.95,2019-04-26 11:19:00,587 Forest St, San Francisco,CA,94016 +190179,AAA Batteries (4-pack),1,2.99,2019-04-26 18:55:00,717 Dogwood St, Seattle,WA,98101 +190180,AA Batteries (4-pack),1,3.84,2019-04-27 07:35:00,8 1st St, San Francisco,CA,94016 +190181,AA Batteries (4-pack),1,3.84,2019-04-21 10:56:00,428 Main St, San Francisco,CA,94016 +190182,Bose SoundSport Headphones,1,99.99,2019-04-20 22:48:00,210 Church St, Dallas,TX,75001 +190183,Google Phone,1,600.0,2019-04-15 15:23:00,92 Madison St, New York City,NY,10001 +190183,USB-C Charging Cable,1,11.95,2019-04-15 15:23:00,92 Madison St, New York City,NY,10001 +190184,Bose SoundSport Headphones,1,99.99,2019-04-27 16:19:00,583 Park St, San Francisco,CA,94016 +190185,Flatscreen TV,1,300.0,2019-04-29 00:00:00,74 Pine St, Austin,TX,73301 +190186,Lightning Charging Cable,1,14.95,2019-04-21 11:12:00,675 6th St, Los Angeles,CA,90001 +190187,Macbook Pro Laptop,1,1700.0,2019-04-01 12:24:00,170 Lake St, Los Angeles,CA,90001 +190188,Bose SoundSport Headphones,1,99.99,2019-04-22 13:04:00,126 North St, Los Angeles,CA,90001 +190189,USB-C Charging Cable,1,11.95,2019-04-18 14:45:00,636 Elm St, Atlanta,GA,30301 +190190,Lightning Charging Cable,1,14.95,2019-04-06 17:12:00,90 River St, New York City,NY,10001 +190191,iPhone,1,700.0,2019-04-20 07:05:00,804 Lincoln St, Austin,TX,73301 +190192,AA Batteries (4-pack),2,3.84,2019-04-10 17:48:00,88 1st St, Dallas,TX,75001 +190193,20in Monitor,1,109.99,2019-04-04 13:23:00,592 6th St, San Francisco,CA,94016 +190194,Lightning Charging Cable,1,14.95,2019-04-29 17:50:00,778 Chestnut St, Seattle,WA,98101 +190195,USB-C Charging Cable,1,11.95,2019-04-09 10:33:00,859 2nd St, Los Angeles,CA,90001 +190196,Vareebadd Phone,1,400.0,2019-04-16 14:35:00,897 Highland St, San Francisco,CA,94016 +190196,USB-C Charging Cable,1,11.95,2019-04-16 14:35:00,897 Highland St, San Francisco,CA,94016 +190197,27in FHD Monitor,1,149.99,2019-04-28 22:26:00,38 2nd St, Dallas,TX,75001 +190198,Lightning Charging Cable,1,14.95,2019-04-21 14:23:00,139 Sunset St, Atlanta,GA,30301 +190199,ThinkPad Laptop,1,999.99,2019-04-15 14:45:00,890 Lincoln St, Los Angeles,CA,90001 +190200,Macbook Pro Laptop,1,1700.0,2019-04-18 13:02:00,508 Main St, Portland,OR,97035 +190201,USB-C Charging Cable,1,11.95,2019-04-27 19:01:00,598 Sunset St, Portland,OR,97035 +190202,Lightning Charging Cable,1,14.95,2019-04-09 09:51:00,174 4th St, Boston,MA,02215 +190203,Wired Headphones,1,11.99,2019-04-29 21:16:00,523 Meadow St, San Francisco,CA,94016 +190204,Flatscreen TV,1,300.0,2019-04-10 17:24:00,162 South St, San Francisco,CA,94016 +190205,Google Phone,1,600.0,2019-04-02 13:24:00,526 Elm St, Dallas,TX,75001 +190206,Lightning Charging Cable,1,14.95,2019-04-25 10:02:00,283 Cedar St, Los Angeles,CA,90001 +190207,Bose SoundSport Headphones,1,99.99,2019-04-05 11:56:00,903 Madison St, New York City,NY,10001 +190208,AA Batteries (4-pack),1,3.84,2019-04-21 09:16:00,314 Washington St, Austin,TX,73301 +190209,Wired Headphones,1,11.99,2019-04-25 23:10:00,920 Johnson St, San Francisco,CA,94016 +190210,AA Batteries (4-pack),1,3.84,2019-04-27 19:06:00,115 Spruce St, San Francisco,CA,94016 +190211,Vareebadd Phone,1,400.0,2019-04-30 19:56:00,15 6th St, San Francisco,CA,94016 +190211,USB-C Charging Cable,1,11.95,2019-04-30 19:56:00,15 6th St, San Francisco,CA,94016 +190212,USB-C Charging Cable,1,11.95,2019-04-20 17:24:00,94 2nd St, Boston,MA,02215 +190213,34in Ultrawide Monitor,1,379.99,2019-04-14 03:41:00,159 Church St, San Francisco,CA,94016 +190214,Wired Headphones,1,11.99,2019-04-14 20:11:00,871 Hickory St, Portland,ME,04101 +190215,Wired Headphones,1,11.99,2019-04-09 11:14:00,129 Jefferson St, Seattle,WA,98101 +190216,USB-C Charging Cable,1,11.95,2019-04-18 09:57:00,266 Adams St, Los Angeles,CA,90001 +190217,Apple Airpods Headphones,1,150.0,2019-04-17 12:19:00,473 10th St, New York City,NY,10001 +190218,Google Phone,1,600.0,2019-04-30 17:46:00,510 Jackson St, Dallas,TX,75001 +190218,USB-C Charging Cable,1,11.95,2019-04-30 17:46:00,510 Jackson St, Dallas,TX,75001 +190219,AAA Batteries (4-pack),3,2.99,2019-04-27 11:01:00,955 10th St, Boston,MA,02215 +190220,AA Batteries (4-pack),1,3.84,2019-04-23 18:33:00,675 Jackson St, Los Angeles,CA,90001 +190221,Wired Headphones,1,11.99,2019-04-30 11:20:00,13 Ridge St, San Francisco,CA,94016 +190222,AA Batteries (4-pack),1,3.84,2019-04-27 14:47:00,381 Wilson St, Portland,OR,97035 +190223,Apple Airpods Headphones,1,150.0,2019-04-24 21:53:00,75 Madison St, San Francisco,CA,94016 +190224,Apple Airpods Headphones,1,150.0,2019-04-20 07:33:00,538 Jefferson St, New York City,NY,10001 +190225,34in Ultrawide Monitor,1,379.99,2019-04-01 21:58:00,354 5th St, Los Angeles,CA,90001 +190226,Bose SoundSport Headphones,1,99.99,2019-04-21 10:14:00,818 North St, San Francisco,CA,94016 +190227,Apple Airpods Headphones,1,150.0,2019-04-28 15:38:00,888 6th St, Dallas,TX,75001 +190228,AA Batteries (4-pack),1,3.84,2019-04-15 11:51:00,89 Jefferson St, New York City,NY,10001 +190228,USB-C Charging Cable,1,11.95,2019-04-15 11:51:00,89 Jefferson St, New York City,NY,10001 +190229,Wired Headphones,1,11.99,2019-04-22 09:37:00,670 7th St, Portland,OR,97035 +190230,Google Phone,1,600.0,2019-04-04 20:02:00,451 12th St, Austin,TX,73301 +190231,34in Ultrawide Monitor,1,379.99,2019-04-13 16:33:00,72 Madison St, Austin,TX,73301 +190232,Lightning Charging Cable,1,14.95,2019-04-06 11:25:00,464 Lake St, Portland,OR,97035 +190233,Lightning Charging Cable,1,14.95,2019-04-13 09:04:00,770 Johnson St, Los Angeles,CA,90001 +190234,Google Phone,1,600.0,2019-04-17 15:37:00,128 River St, Dallas,TX,75001 +190235,iPhone,1,700.0,2019-04-08 21:53:00,425 2nd St, Austin,TX,73301 +190236,AA Batteries (4-pack),1,3.84,2019-04-23 11:43:00,270 Cedar St, Seattle,WA,98101 +190237,Lightning Charging Cable,1,14.95,2019-04-25 17:32:00,11 9th St, Atlanta,GA,30301 +190238,Lightning Charging Cable,1,14.95,2019-04-28 14:19:00,169 Willow St, Dallas,TX,75001 +190239,LG Washing Machine,1,600.0,2019-04-12 21:17:00,59 Hill St, San Francisco,CA,94016 +190240,AA Batteries (4-pack),1,3.84,2019-04-23 20:44:00,799 5th St, Seattle,WA,98101 +190241,20in Monitor,1,109.99,2019-04-21 22:53:00,699 Johnson St, Los Angeles,CA,90001 +190242,Wired Headphones,1,11.99,2019-04-21 14:57:00,146 Center St, Los Angeles,CA,90001 +190243,Lightning Charging Cable,1,14.95,2019-04-12 15:40:00,731 11th St, Los Angeles,CA,90001 +190244,Flatscreen TV,1,300.0,2019-04-28 11:06:00,90 Willow St, Seattle,WA,98101 +190245,AA Batteries (4-pack),1,3.84,2019-04-11 12:17:00,965 8th St, San Francisco,CA,94016 +190246,27in FHD Monitor,1,149.99,2019-04-14 23:05:00,917 Jefferson St, San Francisco,CA,94016 +190247,Lightning Charging Cable,1,14.95,2019-04-19 18:37:00,258 4th St, Los Angeles,CA,90001 +190248,27in FHD Monitor,1,149.99,2019-04-30 14:15:00,812 Cedar St, San Francisco,CA,94016 +190249,Wired Headphones,1,11.99,2019-04-15 23:34:00,992 Cherry St, San Francisco,CA,94016 +190250,Wired Headphones,1,11.99,2019-04-09 07:52:00,303 2nd St, Dallas,TX,75001 +190251,AA Batteries (4-pack),1,3.84,2019-04-22 08:46:00,379 Chestnut St, Seattle,WA,98101 +190252,USB-C Charging Cable,1,11.95,2019-04-10 17:12:00,213 9th St, San Francisco,CA,94016 +190253,AA Batteries (4-pack),1,3.84,2019-04-15 15:04:00,961 Main St, Boston,MA,02215 +190254,ThinkPad Laptop,1,999.99,2019-04-06 10:33:00,546 Chestnut St, Atlanta,GA,30301 +190255,Vareebadd Phone,1,400.0,2019-04-08 18:35:00,501 11th St, Seattle,WA,98101 +190255,Bose SoundSport Headphones,1,99.99,2019-04-08 18:35:00,501 11th St, Seattle,WA,98101 +190256,Wired Headphones,1,11.99,2019-04-16 12:40:00,23 West St, New York City,NY,10001 +190257,AAA Batteries (4-pack),2,2.99,2019-04-06 12:22:00,992 Lake St, Los Angeles,CA,90001 +190258,Apple Airpods Headphones,1,150.0,2019-04-12 08:20:00,127 12th St, San Francisco,CA,94016 +190259,AAA Batteries (4-pack),1,2.99,2019-04-18 13:50:00,211 Hickory St, Los Angeles,CA,90001 +190260,Lightning Charging Cable,1,14.95,2019-04-27 11:12:00,993 Spruce St, San Francisco,CA,94016 +190261,Bose SoundSport Headphones,1,99.99,2019-04-27 15:56:00,398 Main St, New York City,NY,10001 +190262,AA Batteries (4-pack),1,3.84,2019-04-20 19:58:00,819 4th St, Atlanta,GA,30301 +190263,Wired Headphones,1,11.99,2019-04-23 23:42:00,768 6th St, San Francisco,CA,94016 +190264,Lightning Charging Cable,1,14.95,2019-04-23 07:05:00,843 Church St, San Francisco,CA,94016 +190265,Apple Airpods Headphones,1,150.0,2019-04-09 17:52:00,442 Forest St, Atlanta,GA,30301 +190266,27in FHD Monitor,1,149.99,2019-04-02 17:50:00,146 9th St, Los Angeles,CA,90001 +190267,Bose SoundSport Headphones,1,99.99,2019-04-21 13:15:00,625 North St, Boston,MA,02215 +190268,AAA Batteries (4-pack),1,2.99,2019-04-19 19:04:00,27 2nd St, San Francisco,CA,94016 +190269,Bose SoundSport Headphones,1,99.99,2019-04-07 21:41:00,79 Center St, Los Angeles,CA,90001 +190270,Wired Headphones,1,11.99,2019-04-04 02:38:00,722 12th St, Boston,MA,02215 +190271,Macbook Pro Laptop,1,1700.0,2019-04-12 20:38:00,901 Chestnut St, Atlanta,GA,30301 +190272,AA Batteries (4-pack),1,3.84,2019-04-14 14:29:00,572 Lincoln St, Dallas,TX,75001 +190273,Wired Headphones,1,11.99,2019-04-16 18:46:00,128 West St, San Francisco,CA,94016 +190274,Apple Airpods Headphones,1,150.0,2019-04-21 18:23:00,666 Washington St, Los Angeles,CA,90001 +190275,Bose SoundSport Headphones,1,99.99,2019-04-10 11:40:00,679 Walnut St, Seattle,WA,98101 +190276,Bose SoundSport Headphones,1,99.99,2019-04-26 22:22:00,81 4th St, San Francisco,CA,94016 +190277,Apple Airpods Headphones,1,150.0,2019-04-30 19:55:00,145 4th St, Portland,ME,04101 +190278,AA Batteries (4-pack),1,3.84,2019-04-25 19:58:00,72 13th St, San Francisco,CA,94016 +190279,USB-C Charging Cable,1,11.95,2019-04-10 20:59:00,514 11th St, Portland,ME,04101 +190280,Flatscreen TV,1,300.0,2019-04-09 10:52:00,24 West St, Atlanta,GA,30301 +190281,20in Monitor,1,109.99,2019-04-30 00:53:00,709 Wilson St, New York City,NY,10001 +190282,AA Batteries (4-pack),1,3.84,2019-04-01 16:48:00,446 7th St, New York City,NY,10001 +190283,AA Batteries (4-pack),1,3.84,2019-04-14 09:19:00,719 Madison St, San Francisco,CA,94016 +190284,Wired Headphones,1,11.99,2019-04-01 18:33:00,661 6th St, Los Angeles,CA,90001 +190285,27in 4K Gaming Monitor,1,389.99,2019-04-19 10:42:00,492 5th St, Los Angeles,CA,90001 +190286,AA Batteries (4-pack),1,3.84,2019-04-18 14:52:00,640 Elm St, Los Angeles,CA,90001 +190287,USB-C Charging Cable,1,11.95,2019-04-22 08:03:00,343 11th St, New York City,NY,10001 +190288,Google Phone,1,600.0,2019-04-02 19:22:00,802 Chestnut St, New York City,NY,10001 +190289,AAA Batteries (4-pack),1,2.99,2019-04-10 16:27:00,998 7th St, San Francisco,CA,94016 +190290,Apple Airpods Headphones,1,150.0,2019-04-07 11:17:00,855 6th St, Seattle,WA,98101 +190291,Lightning Charging Cable,1,14.95,2019-04-11 11:23:00,401 7th St, Austin,TX,73301 +190292,Lightning Charging Cable,1,14.95,2019-04-21 18:35:00,408 Church St, Los Angeles,CA,90001 +190293,AAA Batteries (4-pack),1,2.99,2019-04-07 02:35:00,785 Cedar St, New York City,NY,10001 +190294,Bose SoundSport Headphones,1,99.99,2019-04-26 18:30:00,693 Park St, Los Angeles,CA,90001 +190295,27in 4K Gaming Monitor,1,389.99,2019-04-25 12:24:00,757 Sunset St, New York City,NY,10001 +190296,AAA Batteries (4-pack),2,2.99,2019-04-22 20:05:00,772 Forest St, Atlanta,GA,30301 +190297,AA Batteries (4-pack),1,3.84,2019-04-26 14:45:00,639 Center St, Los Angeles,CA,90001 +190298,Apple Airpods Headphones,1,150.0,2019-04-24 16:47:00,699 9th St, New York City,NY,10001 +190299,Wired Headphones,1,11.99,2019-04-24 11:58:00,805 Meadow St, New York City,NY,10001 +190300,iPhone,1,700.0,2019-04-06 21:50:00,817 Church St, Seattle,WA,98101 +190300,Wired Headphones,1,11.99,2019-04-06 21:50:00,817 Church St, Seattle,WA,98101 +190301,Apple Airpods Headphones,1,150.0,2019-04-29 22:04:00,599 Sunset St, Boston,MA,02215 +190302,27in 4K Gaming Monitor,1,389.99,2019-04-29 13:18:00,998 Sunset St, Austin,TX,73301 +190303,AA Batteries (4-pack),1,3.84,2019-04-17 21:19:00,135 Ridge St, Boston,MA,02215 +190303,USB-C Charging Cable,1,11.95,2019-04-17 21:19:00,135 Ridge St, Boston,MA,02215 +190304,AA Batteries (4-pack),4,3.84,2019-04-16 23:32:00,453 Hickory St, Los Angeles,CA,90001 +190305,27in FHD Monitor,1,149.99,2019-04-21 13:57:00,628 Dogwood St, New York City,NY,10001 +190306,Macbook Pro Laptop,1,1700.0,2019-04-10 11:42:00,853 Cherry St, Portland,OR,97035 +190307,27in FHD Monitor,1,149.99,2019-04-10 13:36:00,59 Spruce St, Boston,MA,02215 +190308,ThinkPad Laptop,1,999.99,2019-04-07 20:28:00,89 Jefferson St, Portland,OR,97035 +190309,iPhone,1,700.0,2019-04-04 11:34:00,286 5th St, Dallas,TX,75001 +190309,Wired Headphones,1,11.99,2019-04-04 11:34:00,286 5th St, Dallas,TX,75001 +190310,Lightning Charging Cable,1,14.95,2019-04-08 16:57:00,437 Pine St, Los Angeles,CA,90001 +190311,AAA Batteries (4-pack),1,2.99,2019-04-13 20:11:00,869 West St, San Francisco,CA,94016 +190312,Bose SoundSport Headphones,1,99.99,2019-04-11 17:54:00,374 Ridge St, Portland,OR,97035 +190313,Bose SoundSport Headphones,1,99.99,2019-04-21 12:50:00,176 Spruce St, San Francisco,CA,94016 +190314,USB-C Charging Cable,1,11.95,2019-04-03 17:40:00,761 4th St, Atlanta,GA,30301 +190315,Wired Headphones,1,11.99,2019-04-23 16:50:00,668 Lakeview St, Dallas,TX,75001 +190316,Wired Headphones,1,11.99,2019-04-08 21:59:00,283 Center St, New York City,NY,10001 +190317,Vareebadd Phone,1,400.0,2019-04-17 20:00:00,984 Jackson St, Portland,ME,04101 +190318,Bose SoundSport Headphones,1,99.99,2019-04-26 10:51:00,651 Center St, Dallas,TX,75001 +190319,Bose SoundSport Headphones,1,99.99,2019-04-27 11:46:00,5 Madison St, New York City,NY,10001 +190320,iPhone,1,700.0,2019-04-15 09:07:00,917 12th St, Seattle,WA,98101 +190321,AAA Batteries (4-pack),1,2.99,2019-04-06 18:31:00,103 Center St, Boston,MA,02215 +190322,AA Batteries (4-pack),1,3.84,2019-04-23 19:37:00,938 Washington St, Dallas,TX,75001 +190323,USB-C Charging Cable,1,11.95,2019-04-06 22:34:00,452 Cherry St, Seattle,WA,98101 +190324,Bose SoundSport Headphones,1,99.99,2019-04-13 13:06:00,785 1st St, New York City,NY,10001 +190325,USB-C Charging Cable,1,11.95,2019-04-01 18:17:00,841 Lincoln St, Boston,MA,02215 +190326,Wired Headphones,2,11.99,2019-04-15 10:12:00,156 Pine St, Austin,TX,73301 +190327,Apple Airpods Headphones,1,150.0,2019-04-28 18:40:00,352 12th St, Los Angeles,CA,90001 +190328,Lightning Charging Cable,1,14.95,2019-04-14 10:26:00,476 Cedar St, Portland,OR,97035 +190329,AAA Batteries (4-pack),2,2.99,2019-04-19 09:45:00,144 13th St, Boston,MA,02215 +190330,27in FHD Monitor,1,149.99,2019-04-05 17:32:00,792 11th St, Dallas,TX,75001 +190331,AAA Batteries (4-pack),1,2.99,2019-04-16 11:24:00,215 Center St, Los Angeles,CA,90001 +190332,Wired Headphones,1,11.99,2019-04-02 18:46:00,555 Park St, Atlanta,GA,30301 +190333,Apple Airpods Headphones,1,150.0,2019-04-20 17:17:00,61 12th St, New York City,NY,10001 +190334,Macbook Pro Laptop,1,1700.0,2019-04-06 12:44:00,229 Cedar St, Los Angeles,CA,90001 +190335,20in Monitor,1,109.99,2019-04-06 00:34:00,625 Elm St, Los Angeles,CA,90001 +190336,20in Monitor,1,109.99,2019-04-13 04:55:00,357 Spruce St, Austin,TX,73301 +190337,iPhone,1,700.0,2019-04-24 21:01:00,534 14th St, Boston,MA,02215 +190338,Apple Airpods Headphones,1,150.0,2019-04-13 16:51:00,313 6th St, New York City,NY,10001 +190339,Apple Airpods Headphones,1,150.0,2019-04-13 13:40:00,610 Wilson St, Boston,MA,02215 +190340,Apple Airpods Headphones,1,150.0,2019-04-24 20:53:00,171 Ridge St, Los Angeles,CA,90001 +190340,Lightning Charging Cable,1,14.95,2019-04-24 20:53:00,171 Ridge St, Los Angeles,CA,90001 +190341,USB-C Charging Cable,1,11.95,2019-04-27 10:19:00,826 Forest St, Los Angeles,CA,90001 +190342,27in 4K Gaming Monitor,1,389.99,2019-04-04 17:22:00,550 Elm St, San Francisco,CA,94016 +190343,Lightning Charging Cable,1,14.95,2019-04-11 20:10:00,538 Willow St, Boston,MA,02215 +190344,iPhone,1,700.0,2019-04-15 19:25:00,423 Willow St, San Francisco,CA,94016 +190345,Wired Headphones,1,11.99,2019-04-22 20:58:00,145 Elm St, San Francisco,CA,94016 +190346,AAA Batteries (4-pack),1,2.99,2019-04-03 18:56:00,312 Highland St, Seattle,WA,98101 +190347,Wired Headphones,1,11.99,2019-04-25 16:04:00,65 Johnson St, Austin,TX,73301 +190348,Apple Airpods Headphones,1,150.0,2019-04-19 14:24:00,163 12th St, New York City,NY,10001 +190349,Google Phone,1,600.0,2019-04-09 09:37:00,697 Chestnut St, Los Angeles,CA,90001 +190350,USB-C Charging Cable,1,11.95,2019-04-07 07:13:00,967 Church St, Los Angeles,CA,90001 +190351,AA Batteries (4-pack),1,3.84,2019-04-28 12:19:00,804 Jackson St, Atlanta,GA,30301 +190352,Lightning Charging Cable,1,14.95,2019-04-03 05:50:00,868 Dogwood St, Seattle,WA,98101 +190353,27in FHD Monitor,1,149.99,2019-04-05 18:54:00,132 Johnson St, Boston,MA,02215 +190354,Apple Airpods Headphones,1,150.0,2019-04-29 11:25:00,106 Church St, New York City,NY,10001 +190355,AAA Batteries (4-pack),1,2.99,2019-04-24 15:37:00,256 Cedar St, New York City,NY,10001 +190356,ThinkPad Laptop,1,999.99,2019-04-07 11:13:00,488 Highland St, Los Angeles,CA,90001 +190357,Flatscreen TV,1,300.0,2019-04-19 18:58:00,493 West St, Austin,TX,73301 +190358,Lightning Charging Cable,1,14.95,2019-04-05 19:49:00,593 West St, Dallas,TX,75001 +190359,LG Washing Machine,1,600.0,2019-04-04 19:15:00,588 Washington St, New York City,NY,10001 +190360,USB-C Charging Cable,1,11.95,2019-04-08 11:40:00,15 Maple St, Seattle,WA,98101 +190361,Bose SoundSport Headphones,1,99.99,2019-04-01 16:35:00,768 Walnut St, Boston,MA,02215 +190362,iPhone,1,700.0,2019-04-01 12:35:00,349 River St, Austin,TX,73301 +190363,27in FHD Monitor,1,149.99,2019-04-10 20:35:00,454 Jackson St, New York City,NY,10001 +190364,AA Batteries (4-pack),1,3.84,2019-04-20 11:58:00,494 10th St, New York City,NY,10001 +190364,27in 4K Gaming Monitor,1,389.99,2019-04-20 11:58:00,494 10th St, New York City,NY,10001 +190365,27in 4K Gaming Monitor,1,389.99,2019-04-19 17:21:00,690 Lake St, San Francisco,CA,94016 +190366,AA Batteries (4-pack),1,3.84,2019-04-03 11:06:00,926 Chestnut St, Los Angeles,CA,90001 +190367,AAA Batteries (4-pack),1,2.99,2019-04-05 15:33:00,730 Lakeview St, Austin,TX,73301 +190368,Bose SoundSport Headphones,1,99.99,2019-04-26 21:31:00,97 Chestnut St, Portland,OR,97035 +190369,Wired Headphones,1,11.99,2019-04-20 11:21:00,503 14th St, Los Angeles,CA,90001 +190370,Macbook Pro Laptop,1,1700.0,2019-04-21 20:04:00,471 5th St, San Francisco,CA,94016 +190371,Lightning Charging Cable,1,14.95,2019-04-08 21:22:00,726 5th St, San Francisco,CA,94016 +190372,AA Batteries (4-pack),1,3.84,2019-04-07 15:25:00,992 Pine St, New York City,NY,10001 +190373,AA Batteries (4-pack),1,3.84,2019-04-03 17:43:00,548 Main St, New York City,NY,10001 +190374,Wired Headphones,1,11.99,2019-04-09 17:25:00,951 Main St, San Francisco,CA,94016 +190375,Macbook Pro Laptop,1,1700.0,2019-04-30 00:17:00,8 Lincoln St, Portland,OR,97035 +190376,AAA Batteries (4-pack),1,2.99,2019-04-28 10:20:00,70 Wilson St, San Francisco,CA,94016 +190377,Wired Headphones,1,11.99,2019-04-29 12:46:00,399 Jackson St, New York City,NY,10001 +190378,Flatscreen TV,1,300.0,2019-04-18 19:59:00,912 Madison St, Atlanta,GA,30301 +190379,Lightning Charging Cable,1,14.95,2019-04-11 10:06:00,790 Maple St, Austin,TX,73301 +190380,USB-C Charging Cable,1,11.95,2019-04-15 16:21:00,488 5th St, Dallas,TX,75001 +190381,AAA Batteries (4-pack),2,2.99,2019-04-16 12:29:00,530 5th St, Seattle,WA,98101 +190382,34in Ultrawide Monitor,1,379.99,2019-04-08 16:35:00,553 Washington St, Los Angeles,CA,90001 +190383,Google Phone,1,600.0,2019-04-01 20:37:00,1 Lakeview St, Los Angeles,CA,90001 +190384,20in Monitor,1,109.99,2019-04-06 22:56:00,864 Lincoln St, Austin,TX,73301 +190385,Macbook Pro Laptop,1,1700.0,2019-04-04 17:34:00,817 Lake St, New York City,NY,10001 +190386,USB-C Charging Cable,1,11.95,2019-04-16 18:01:00,187 Park St, Los Angeles,CA,90001 +190387,AA Batteries (4-pack),1,3.84,2019-04-22 19:49:00,843 8th St, San Francisco,CA,94016 +190388,USB-C Charging Cable,1,11.95,2019-04-14 14:32:00,69 Wilson St, Seattle,WA,98101 +190389,27in FHD Monitor,1,149.99,2019-04-15 12:38:00,776 Chestnut St, San Francisco,CA,94016 +190390,Google Phone,1,600.0,2019-04-15 13:05:00,151 Cherry St, Portland,OR,97035 +190391,Wired Headphones,1,11.99,2019-04-18 19:51:00,803 14th St, San Francisco,CA,94016 +190392,Flatscreen TV,1,300.0,2019-04-09 19:00:00,466 Hill St, San Francisco,CA,94016 +190393,iPhone,1,700.0,2019-04-22 17:21:00,103 Park St, New York City,NY,10001 +190394,Bose SoundSport Headphones,1,99.99,2019-04-12 18:43:00,47 8th St, Los Angeles,CA,90001 +190395,Bose SoundSport Headphones,1,99.99,2019-04-07 17:56:00,61 South St, Los Angeles,CA,90001 +190396,AA Batteries (4-pack),1,3.84,2019-04-08 06:19:00,758 Lake St, New York City,NY,10001 +190397,20in Monitor,1,109.99,2019-04-15 13:14:00,116 5th St, Los Angeles,CA,90001 +190398,Lightning Charging Cable,1,14.95,2019-04-14 17:05:00,450 12th St, Seattle,WA,98101 +190399,Apple Airpods Headphones,1,150.0,2019-04-04 01:48:00,784 8th St, Austin,TX,73301 +190400,USB-C Charging Cable,1,11.95,2019-04-19 06:53:00,100 Chestnut St, Dallas,TX,75001 +190401,USB-C Charging Cable,2,11.95,2019-04-13 14:28:00,888 Hill St, Los Angeles,CA,90001 +190402,AA Batteries (4-pack),2,3.84,2019-04-27 23:26:00,551 Wilson St, New York City,NY,10001 +190403,Wired Headphones,1,11.99,2019-04-04 18:58:00,653 Hickory St, New York City,NY,10001 +190404,AA Batteries (4-pack),1,3.84,2019-04-09 14:42:00,924 Sunset St, Los Angeles,CA,90001 +190405,ThinkPad Laptop,1,999.99,2019-04-25 17:43:00,833 4th St, Los Angeles,CA,90001 +190406,Lightning Charging Cable,1,14.95,2019-04-16 10:02:00,791 Chestnut St, Dallas,TX,75001 +190407,34in Ultrawide Monitor,1,379.99,2019-04-12 18:50:00,71 West St, Seattle,WA,98101 +190408,Bose SoundSport Headphones,1,99.99,2019-04-09 15:37:00,812 Pine St, San Francisco,CA,94016 +190409,Apple Airpods Headphones,1,150.0,2019-04-28 23:11:00,597 Meadow St, San Francisco,CA,94016 +190410,USB-C Charging Cable,1,11.95,2019-04-18 17:09:00,301 Church St, Atlanta,GA,30301 +190411,27in 4K Gaming Monitor,1,389.99,2019-04-15 01:28:00,678 Wilson St, San Francisco,CA,94016 +190412,Lightning Charging Cable,1,14.95,2019-04-07 17:05:00,260 Willow St, Atlanta,GA,30301 +190413,iPhone,1,700.0,2019-04-19 08:48:00,554 Madison St, San Francisco,CA,94016 +190414,AAA Batteries (4-pack),2,2.99,2019-04-20 13:07:00,16 5th St, Austin,TX,73301 +190415,AAA Batteries (4-pack),3,2.99,2019-04-20 16:02:00,116 10th St, Portland,OR,97035 +190416,Wired Headphones,1,11.99,2019-04-30 09:44:00,562 4th St, Los Angeles,CA,90001 +190417,Flatscreen TV,1,300.0,2019-04-26 16:08:00,254 River St, Austin,TX,73301 +190418,Macbook Pro Laptop,1,1700.0,2019-04-05 20:59:00,548 Main St, San Francisco,CA,94016 +190419,27in FHD Monitor,1,149.99,2019-04-27 20:16:00,811 West St, Los Angeles,CA,90001 +190420,AA Batteries (4-pack),1,3.84,2019-04-05 07:42:00,644 14th St, New York City,NY,10001 +190421,AA Batteries (4-pack),1,3.84,2019-04-14 20:09:00,243 Adams St, Seattle,WA,98101 +190422,20in Monitor,1,109.99,2019-04-26 20:41:00,354 Adams St, Dallas,TX,75001 +190423,AA Batteries (4-pack),1,3.84,2019-04-26 09:01:00,223 Dogwood St, Austin,TX,73301 +190424,Macbook Pro Laptop,1,1700.0,2019-04-11 12:13:00,806 Meadow St, San Francisco,CA,94016 +190425,AAA Batteries (4-pack),1,2.99,2019-04-21 18:32:00,555 Church St, Seattle,WA,98101 +190426,ThinkPad Laptop,1,999.99,2019-04-11 23:21:00,683 Ridge St, Boston,MA,02215 +190427,AA Batteries (4-pack),2,3.84,2019-04-15 13:29:00,558 West St, Dallas,TX,75001 +190428,Google Phone,1,600.0,2019-04-21 18:51:00,304 Pine St, Los Angeles,CA,90001 +190428,USB-C Charging Cable,1,11.95,2019-04-21 18:51:00,304 Pine St, Los Angeles,CA,90001 +190429,ThinkPad Laptop,1,999.99,2019-04-14 09:28:00,31 13th St, Boston,MA,02215 +190430,Bose SoundSport Headphones,1,99.99,2019-04-22 12:44:00,757 Center St, New York City,NY,10001 +190431,34in Ultrawide Monitor,1,379.99,2019-04-05 10:01:00,934 Cherry St, Dallas,TX,75001 +190432,Apple Airpods Headphones,1,150.0,2019-04-25 01:18:00,26 1st St, Los Angeles,CA,90001 +190433,AA Batteries (4-pack),1,3.84,2019-04-24 16:58:00,93 Jackson St, Portland,OR,97035 +190434,USB-C Charging Cable,1,11.95,2019-04-01 11:30:00,857 Walnut St, San Francisco,CA,94016 +190435,27in 4K Gaming Monitor,1,389.99,2019-04-20 18:46:00,543 6th St, San Francisco,CA,94016 +190436,27in FHD Monitor,1,149.99,2019-04-05 11:12:00,521 Washington St, New York City,NY,10001 +190437,AAA Batteries (4-pack),1,2.99,2019-04-13 01:22:00,28 Highland St, Atlanta,GA,30301 +190438,USB-C Charging Cable,1,11.95,2019-04-27 17:52:00,192 Center St, Boston,MA,02215 +190439,Apple Airpods Headphones,1,150.0,2019-04-07 15:16:00,77 Wilson St, San Francisco,CA,94016 +190440,USB-C Charging Cable,1,11.95,2019-04-24 13:51:00,64 Church St, Atlanta,GA,30301 +190441,Lightning Charging Cable,1,14.95,2019-04-10 20:21:00,70 10th St, San Francisco,CA,94016 +190442,Flatscreen TV,1,300.0,2019-04-30 10:57:00,325 Cedar St, Austin,TX,73301 +190443,Lightning Charging Cable,1,14.95,2019-04-23 20:26:00,751 Wilson St, New York City,NY,10001 +190444,USB-C Charging Cable,1,11.95,2019-04-08 12:06:00,593 Jackson St, Austin,TX,73301 +190445,USB-C Charging Cable,1,11.95,2019-04-05 22:58:00,340 Highland St, Boston,MA,02215 +190446,AAA Batteries (4-pack),2,2.99,2019-04-04 11:29:00,573 Willow St, San Francisco,CA,94016 +190447,Wired Headphones,1,11.99,2019-04-04 10:27:00,681 2nd St, New York City,NY,10001 +190448,Lightning Charging Cable,1,14.95,2019-04-16 15:44:00,312 Elm St, Boston,MA,02215 +190449,Apple Airpods Headphones,1,150.0,2019-04-13 10:46:00,747 Hickory St, Austin,TX,73301 +190450,Google Phone,1,600.0,2019-04-30 19:19:00,547 5th St, New York City,NY,10001 +190450,AAA Batteries (4-pack),1,2.99,2019-04-30 19:19:00,547 5th St, New York City,NY,10001 +190451,AAA Batteries (4-pack),1,2.99,2019-04-19 19:45:00,121 Sunset St, Los Angeles,CA,90001 +190452,Bose SoundSport Headphones,1,99.99,2019-04-14 11:01:00,206 North St, San Francisco,CA,94016 +190453,Bose SoundSport Headphones,1,99.99,2019-04-27 10:20:00,477 10th St, Boston,MA,02215 +190454,Lightning Charging Cable,1,14.95,2019-04-15 03:04:00,463 Willow St, Austin,TX,73301 +190455,USB-C Charging Cable,1,11.95,2019-04-25 12:29:00,783 14th St, Atlanta,GA,30301 +190456,AA Batteries (4-pack),1,3.84,2019-04-04 11:29:00,269 West St, San Francisco,CA,94016 +190457,Lightning Charging Cable,1,14.95,2019-04-13 15:28:00,490 11th St, Los Angeles,CA,90001 +190458,AA Batteries (4-pack),1,3.84,2019-04-11 02:24:00,288 2nd St, Boston,MA,02215 +190459,AAA Batteries (4-pack),4,2.99,2019-04-24 00:22:00,922 Pine St, Boston,MA,02215 +190460,Macbook Pro Laptop,1,1700.0,2019-04-12 14:16:00,256 Hill St, San Francisco,CA,94016 +190461,Flatscreen TV,1,300.0,2019-04-18 13:20:00,465 Dogwood St, Portland,OR,97035 +190462,AA Batteries (4-pack),5,3.84,2019-04-04 12:28:00,273 Jackson St, Portland,OR,97035 +190463,USB-C Charging Cable,1,11.95,2019-04-30 18:23:00,912 West St, New York City,NY,10001 +190464,Bose SoundSport Headphones,1,99.99,2019-04-21 20:51:00,877 South St, San Francisco,CA,94016 +190465,Bose SoundSport Headphones,1,99.99,2019-04-20 13:54:00,142 North St, New York City,NY,10001 +190466,USB-C Charging Cable,1,11.95,2019-04-06 19:05:00,770 Highland St, New York City,NY,10001 +190467,ThinkPad Laptop,1,999.99,2019-04-17 00:14:00,885 Cedar St, Portland,OR,97035 +190468,Bose SoundSport Headphones,1,99.99,2019-04-28 01:37:00,443 Spruce St, San Francisco,CA,94016 +190469,34in Ultrawide Monitor,1,379.99,2019-04-13 19:22:00,187 Johnson St, Atlanta,GA,30301 +190470,27in FHD Monitor,1,149.99,2019-04-07 16:56:00,453 10th St, Boston,MA,02215 +190471,Wired Headphones,1,11.99,2019-04-18 18:25:00,505 Sunset St, Dallas,TX,75001 +190472,Macbook Pro Laptop,1,1700.0,2019-04-16 22:54:00,293 Pine St, Boston,MA,02215 +190473,34in Ultrawide Monitor,1,379.99,2019-04-29 14:26:00,65 Washington St, San Francisco,CA,94016 +190474,AAA Batteries (4-pack),1,2.99,2019-04-03 13:35:00,758 1st St, Boston,MA,02215 +190475,Macbook Pro Laptop,1,1700.0,2019-04-16 14:50:00,159 1st St, Los Angeles,CA,90001 +190476,AA Batteries (4-pack),1,3.84,2019-04-12 17:35:00,574 13th St, Atlanta,GA,30301 +190477,USB-C Charging Cable,1,11.95,2019-04-27 13:36:00,23 Jefferson St, Los Angeles,CA,90001 +190478,AA Batteries (4-pack),1,3.84,2019-04-02 13:41:00,318 6th St, Boston,MA,02215 +190479,Lightning Charging Cable,1,14.95,2019-04-12 18:51:00,156 North St, Boston,MA,02215 +190480,Wired Headphones,1,11.99,2019-04-24 11:53:00,940 Wilson St, San Francisco,CA,94016 +190481,Wired Headphones,1,11.99,2019-04-14 04:11:00,797 Hill St, San Francisco,CA,94016 +190482,AA Batteries (4-pack),1,3.84,2019-04-27 21:05:00,441 7th St, Boston,MA,02215 +190483,Wired Headphones,1,11.99,2019-04-30 18:55:00,96 Johnson St, Austin,TX,73301 +190484,AA Batteries (4-pack),3,3.84,2019-04-13 08:45:00,170 10th St, San Francisco,CA,94016 +190485,Lightning Charging Cable,1,14.95,2019-04-23 14:18:00,4 6th St, Dallas,TX,75001 +190486,AA Batteries (4-pack),1,3.84,2019-04-15 17:27:00,5 Maple St, Portland,OR,97035 +190487,Wired Headphones,2,11.99,2019-04-23 06:54:00,596 Meadow St, San Francisco,CA,94016 +190488,Lightning Charging Cable,1,14.95,2019-04-09 19:03:00,960 5th St, Dallas,TX,75001 +190489,Bose SoundSport Headphones,1,99.99,2019-04-03 15:33:00,865 Hill St, San Francisco,CA,94016 +190490,Bose SoundSport Headphones,1,99.99,2019-04-14 13:51:00,14 Hill St, San Francisco,CA,94016 +190491,iPhone,1,700.0,2019-04-14 18:48:00,231 Lincoln St, Los Angeles,CA,90001 +190492,AAA Batteries (4-pack),1,2.99,2019-04-01 18:44:00,280 Walnut St, Los Angeles,CA,90001 +190493,AA Batteries (4-pack),1,3.84,2019-04-15 13:29:00,417 Johnson St, San Francisco,CA,94016 +190493,iPhone,1,700.0,2019-04-15 13:29:00,417 Johnson St, San Francisco,CA,94016 +190494,Apple Airpods Headphones,1,150.0,2019-04-15 17:04:00,743 Highland St, New York City,NY,10001 +190495,Lightning Charging Cable,2,14.95,2019-04-29 08:45:00,747 Wilson St, Seattle,WA,98101 +190496,Apple Airpods Headphones,1,150.0,2019-04-22 00:04:00,83 8th St, Portland,OR,97035 +190497,Bose SoundSport Headphones,1,99.99,2019-04-28 17:54:00,495 7th St, Los Angeles,CA,90001 +190498,AA Batteries (4-pack),1,3.84,2019-04-10 10:30:00,391 Hickory St, Atlanta,GA,30301 +190499,Bose SoundSport Headphones,1,99.99,2019-04-28 16:19:00,766 North St, San Francisco,CA,94016 +190500,USB-C Charging Cable,1,11.95,2019-04-15 23:41:00,884 Cedar St, San Francisco,CA,94016 +190501,Macbook Pro Laptop,1,1700.0,2019-04-10 10:46:00,818 Hickory St, Atlanta,GA,30301 +190502,Apple Airpods Headphones,1,150.0,2019-04-19 23:18:00,304 Lake St, San Francisco,CA,94016 +190503,Lightning Charging Cable,1,14.95,2019-04-30 22:44:00,474 Cherry St, Los Angeles,CA,90001 +190504,Wired Headphones,1,11.99,2019-04-09 18:03:00,915 Washington St, Los Angeles,CA,90001 +190505,USB-C Charging Cable,1,11.95,2019-04-29 23:27:00,120 Park St, Los Angeles,CA,90001 +190506,34in Ultrawide Monitor,1,379.99,2019-04-23 08:07:00,867 Johnson St, San Francisco,CA,94016 +190507,27in 4K Gaming Monitor,1,389.99,2019-04-03 19:43:00,899 Cherry St, New York City,NY,10001 +190508,iPhone,1,700.0,2019-04-21 20:08:00,704 Chestnut St, Atlanta,GA,30301 +190509,27in FHD Monitor,1,149.99,2019-04-17 09:05:00,507 Main St, Austin,TX,73301 +190510,AAA Batteries (4-pack),1,2.99,2019-04-04 17:37:00,173 Walnut St, New York City,NY,10001 +190511,USB-C Charging Cable,1,11.95,2019-04-20 20:03:00,824 Elm St, New York City,NY,10001 +190512,iPhone,1,700.0,2019-04-01 20:35:00,360 5th St, Dallas,TX,75001 +190512,Lightning Charging Cable,1,14.95,2019-04-01 20:35:00,360 5th St, Dallas,TX,75001 +190512,Apple Airpods Headphones,1,150.0,2019-04-01 20:35:00,360 5th St, Dallas,TX,75001 +190513,AA Batteries (4-pack),1,3.84,2019-04-09 19:56:00,545 1st St, New York City,NY,10001 +190514,Lightning Charging Cable,1,14.95,2019-04-21 11:40:00,963 Lakeview St, Los Angeles,CA,90001 +190515,Lightning Charging Cable,1,14.95,2019-04-08 10:23:00,908 Hill St, San Francisco,CA,94016 +190516,USB-C Charging Cable,1,11.95,2019-04-02 09:05:00,166 Park St, Boston,MA,02215 +190517,Apple Airpods Headphones,1,150.0,2019-04-02 09:30:00,34 Elm St, San Francisco,CA,94016 +190518,AAA Batteries (4-pack),1,2.99,2019-04-22 23:22:00,730 6th St, San Francisco,CA,94016 +190519,Google Phone,1,600.0,2019-04-20 08:53:00,820 11th St, Portland,OR,97035 +190520,USB-C Charging Cable,1,11.95,2019-04-28 10:48:00,628 Maple St, San Francisco,CA,94016 +190521,Wired Headphones,1,11.99,2019-04-16 21:43:00,830 Lake St, Los Angeles,CA,90001 +190522,27in FHD Monitor,1,149.99,2019-04-03 15:10:00,513 4th St, Atlanta,GA,30301 +190523,Wired Headphones,1,11.99,2019-04-12 23:21:00,972 Jefferson St, Los Angeles,CA,90001 +190524,AA Batteries (4-pack),1,3.84,2019-04-16 07:22:00,935 Lincoln St, San Francisco,CA,94016 +190525,iPhone,1,700.0,2019-04-06 08:57:00,581 Main St, Austin,TX,73301 +190525,Bose SoundSport Headphones,1,99.99,2019-04-06 08:57:00,581 Main St, Austin,TX,73301 +190526,Apple Airpods Headphones,1,150.0,2019-04-04 13:36:00,582 River St, San Francisco,CA,94016 +190527,Google Phone,1,600.0,2019-04-26 20:32:00,901 Hill St, Los Angeles,CA,90001 +190528,AAA Batteries (4-pack),1,2.99,2019-04-05 21:06:00,984 1st St, Los Angeles,CA,90001 +190529,AAA Batteries (4-pack),1,2.99,2019-04-14 17:14:00,819 Wilson St, San Francisco,CA,94016 +190530,Bose SoundSport Headphones,1,99.99,2019-04-12 12:32:00,32 Lake St, Atlanta,GA,30301 +190531,20in Monitor,1,109.99,2019-04-08 18:26:00,904 Ridge St, Los Angeles,CA,90001 +190532,Bose SoundSport Headphones,1,99.99,2019-04-10 21:00:00,488 10th St, Los Angeles,CA,90001 +190533,Lightning Charging Cable,1,14.95,2019-04-02 15:15:00,317 Wilson St, Seattle,WA,98101 +190534,USB-C Charging Cable,1,11.95,2019-04-26 20:55:00,717 14th St, Los Angeles,CA,90001 +190535,Lightning Charging Cable,1,14.95,2019-04-16 10:13:00,487 Hickory St, San Francisco,CA,94016 +190536,27in 4K Gaming Monitor,1,389.99,2019-04-07 07:21:00,821 14th St, Austin,TX,73301 +190537,Lightning Charging Cable,1,14.95,2019-04-26 20:00:00,20 Center St, San Francisco,CA,94016 +190538,USB-C Charging Cable,1,11.95,2019-04-28 13:55:00,353 West St, San Francisco,CA,94016 +190539,USB-C Charging Cable,1,11.95,2019-04-21 14:09:00,113 8th St, Austin,TX,73301 +190540,Wired Headphones,1,11.99,2019-04-29 00:00:00,490 Maple St, Los Angeles,CA,90001 +190541,AAA Batteries (4-pack),1,2.99,2019-04-30 14:29:00,659 Jackson St, Austin,TX,73301 +190542,Wired Headphones,1,11.99,2019-04-28 00:05:00,53 Adams St, Boston,MA,02215 +190543,20in Monitor,2,109.99,2019-04-22 16:27:00,893 Hickory St, Los Angeles,CA,90001 +190544,USB-C Charging Cable,1,11.95,2019-04-06 13:57:00,127 Sunset St, San Francisco,CA,94016 +190545,Lightning Charging Cable,1,14.95,2019-04-20 16:40:00,705 Meadow St, Austin,TX,73301 +190546,Wired Headphones,2,11.99,2019-04-20 13:34:00,347 Wilson St, Boston,MA,02215 +190547,AA Batteries (4-pack),1,3.84,2019-04-28 09:50:00,792 Cedar St, Seattle,WA,98101 +190548,iPhone,1,700.0,2019-04-04 19:00:00,167 Lincoln St, Atlanta,GA,30301 +190549,Apple Airpods Headphones,1,150.0,2019-04-01 21:00:00,432 Dogwood St, New York City,NY,10001 +190550,USB-C Charging Cable,1,11.95,2019-04-29 10:55:00,559 Lakeview St, San Francisco,CA,94016 +190551,AA Batteries (4-pack),2,3.84,2019-04-23 22:55:00,382 Main St, San Francisco,CA,94016 +190552,iPhone,1,700.0,2019-04-06 08:24:00,87 Lakeview St, New York City,NY,10001 +190553,Lightning Charging Cable,1,14.95,2019-04-10 17:38:00,548 Madison St, New York City,NY,10001 +190554,27in 4K Gaming Monitor,1,389.99,2019-04-13 15:38:00,789 North St, San Francisco,CA,94016 +190555,Wired Headphones,2,11.99,2019-04-14 20:37:00,390 Center St, San Francisco,CA,94016 +190556,AA Batteries (4-pack),1,3.84,2019-04-11 13:04:00,854 4th St, San Francisco,CA,94016 +190557,Apple Airpods Headphones,1,150.0,2019-04-06 13:46:00,160 Walnut St, Los Angeles,CA,90001 +190558,Wired Headphones,1,11.99,2019-04-19 02:27:00,912 Cherry St, New York City,NY,10001 +190559,20in Monitor,1,109.99,2019-04-27 21:35:00,329 Main St, New York City,NY,10001 +190560,Flatscreen TV,1,300.0,2019-04-05 21:46:00,205 Adams St, San Francisco,CA,94016 +190561,Lightning Charging Cable,1,14.95,2019-04-07 17:07:00,73 Lake St, Boston,MA,02215 +190562,34in Ultrawide Monitor,1,379.99,2019-04-02 21:15:00,289 10th St, Los Angeles,CA,90001 +190563,USB-C Charging Cable,1,11.95,2019-04-11 10:16:00,984 Highland St, Portland,OR,97035 +190564,AA Batteries (4-pack),1,3.84,2019-04-08 12:29:00,904 Washington St, San Francisco,CA,94016 +190564,USB-C Charging Cable,1,11.95,2019-04-08 12:29:00,904 Washington St, San Francisco,CA,94016 +190565,34in Ultrawide Monitor,1,379.99,2019-04-10 14:31:00,821 Center St, Portland,OR,97035 +190566,Bose SoundSport Headphones,1,99.99,2019-04-24 11:16:00,71 Lake St, Seattle,WA,98101 +190567,AA Batteries (4-pack),1,3.84,2019-04-27 12:36:00,847 Center St, San Francisco,CA,94016 +190568,Lightning Charging Cable,2,14.95,2019-04-03 21:54:00,606 Main St, Boston,MA,02215 +190569,Wired Headphones,1,11.99,2019-04-27 23:10:00,523 9th St, Los Angeles,CA,90001 +190570,Wired Headphones,1,11.99,2019-04-14 18:43:00,796 Church St, New York City,NY,10001 +190571,Lightning Charging Cable,1,14.95,2019-04-26 00:28:00,145 Willow St, New York City,NY,10001 +190572,34in Ultrawide Monitor,1,379.99,2019-04-02 11:18:00,896 Lake St, New York City,NY,10001 +190573,Lightning Charging Cable,1,14.95,2019-04-17 11:55:00,842 Cherry St, Los Angeles,CA,90001 +190574,ThinkPad Laptop,1,999.99,2019-04-22 09:03:00,327 Willow St, Seattle,WA,98101 +190575,Apple Airpods Headphones,1,150.0,2019-04-01 21:17:00,304 7th St, Portland,OR,97035 +190576,iPhone,1,700.0,2019-04-17 20:37:00,219 Jackson St, Dallas,TX,75001 +190576,Lightning Charging Cable,3,14.95,2019-04-17 20:37:00,219 Jackson St, Dallas,TX,75001 +190577,AA Batteries (4-pack),3,3.84,2019-04-18 14:39:00,710 Highland St, Dallas,TX,75001 +190578,USB-C Charging Cable,1,11.95,2019-04-13 06:46:00,649 Highland St, Portland,OR,97035 +190579,Wired Headphones,1,11.99,2019-04-10 12:23:00,134 Madison St, New York City,NY,10001 +190580,Wired Headphones,1,11.99,2019-04-13 20:02:00,330 Lake St, Seattle,WA,98101 +190581,USB-C Charging Cable,1,11.95,2019-04-05 10:55:00,604 Jefferson St, Dallas,TX,75001 +190582,34in Ultrawide Monitor,1,379.99,2019-04-24 14:57:00,34 11th St, Boston,MA,02215 +190583,USB-C Charging Cable,1,11.95,2019-04-27 20:27:00,121 Willow St, Boston,MA,02215 +190584,Flatscreen TV,1,300.0,2019-04-26 19:45:00,530 4th St, Atlanta,GA,30301 +190585,iPhone,1,700.0,2019-04-27 15:23:00,631 Cedar St, San Francisco,CA,94016 +190586,Lightning Charging Cable,1,14.95,2019-04-27 11:21:00,495 Hickory St, Los Angeles,CA,90001 +190587,AA Batteries (4-pack),2,3.84,2019-04-13 08:07:00,279 14th St, San Francisco,CA,94016 +190588,Google Phone,1,600.0,2019-04-14 09:11:00,22 Maple St, Dallas,TX,75001 +190589,AA Batteries (4-pack),1,3.84,2019-04-02 17:20:00,937 Hickory St, San Francisco,CA,94016 +190590,USB-C Charging Cable,1,11.95,2019-04-07 14:13:00,844 Walnut St, Los Angeles,CA,90001 +190591,AAA Batteries (4-pack),1,2.99,2019-04-25 13:46:00,14 Elm St, Boston,MA,02215 +190592,Bose SoundSport Headphones,1,99.99,2019-04-22 13:48:00,116 Meadow St, Los Angeles,CA,90001 +190593,Macbook Pro Laptop,1,1700.0,2019-04-16 07:40:00,129 Elm St, Atlanta,GA,30301 +190594,Lightning Charging Cable,1,14.95,2019-04-12 21:44:00,506 Spruce St, Atlanta,GA,30301 +190595,Macbook Pro Laptop,1,1700.0,2019-04-29 03:17:00,25 Wilson St, San Francisco,CA,94016 +190596,AAA Batteries (4-pack),1,2.99,2019-04-21 20:39:00,183 North St, Seattle,WA,98101 +190597,iPhone,1,700.0,2019-04-08 18:17:00,915 14th St, Portland,OR,97035 +190598,USB-C Charging Cable,1,11.95,2019-04-26 23:19:00,300 Jackson St, Atlanta,GA,30301 +190599,AAA Batteries (4-pack),1,2.99,2019-04-10 14:36:00,509 1st St, New York City,NY,10001 +190600,Wired Headphones,1,11.99,2019-04-16 11:01:00,510 Lincoln St, New York City,NY,10001 +190601,27in FHD Monitor,1,149.99,2019-04-30 23:45:00,719 Lakeview St, Austin,TX,73301 +190602,27in FHD Monitor,1,149.99,2019-04-11 10:24:00,893 Meadow St, Los Angeles,CA,90001 +190603,Bose SoundSport Headphones,1,99.99,2019-04-12 23:41:00,81 Meadow St, San Francisco,CA,94016 +190604,Lightning Charging Cable,1,14.95,2019-04-02 21:07:00,616 14th St, San Francisco,CA,94016 +190605,Apple Airpods Headphones,1,150.0,2019-04-20 09:10:00,558 1st St, San Francisco,CA,94016 +190605,Bose SoundSport Headphones,1,99.99,2019-04-20 09:10:00,558 1st St, San Francisco,CA,94016 +190606,27in FHD Monitor,1,149.99,2019-04-22 18:16:00,807 Lincoln St, Atlanta,GA,30301 +190607,AAA Batteries (4-pack),1,2.99,2019-04-05 10:19:00,509 14th St, Los Angeles,CA,90001 +190608,USB-C Charging Cable,2,11.95,2019-04-28 23:31:00,617 5th St, Seattle,WA,98101 +190609,20in Monitor,1,109.99,2019-04-20 22:41:00,255 Hickory St, New York City,NY,10001 +190610,AAA Batteries (4-pack),1,2.99,2019-04-11 10:54:00,966 2nd St, Los Angeles,CA,90001 +190611,Wired Headphones,1,11.99,2019-04-11 14:28:00,519 Maple St, Los Angeles,CA,90001 +190612,Apple Airpods Headphones,1,150.0,2019-04-23 08:31:00,379 South St, San Francisco,CA,94016 +190613,Flatscreen TV,1,300.0,2019-04-02 13:24:00,528 Center St, Seattle,WA,98101 +190613,Wired Headphones,1,11.99,2019-04-02 13:24:00,528 Center St, Seattle,WA,98101 +190614,Apple Airpods Headphones,1,150.0,2019-04-25 20:48:00,70 Hill St, Atlanta,GA,30301 +190615,20in Monitor,1,109.99,2019-04-08 18:06:00,639 Ridge St, Los Angeles,CA,90001 +190616,USB-C Charging Cable,1,11.95,2019-04-24 00:36:00,782 1st St, San Francisco,CA,94016 +190617,Vareebadd Phone,1,400.0,2019-04-08 14:04:00,365 8th St, Austin,TX,73301 +190617,USB-C Charging Cable,1,11.95,2019-04-08 14:04:00,365 8th St, Austin,TX,73301 +190618,Bose SoundSport Headphones,1,99.99,2019-04-02 00:37:00,293 Pine St, Atlanta,GA,30301 +190619,Wired Headphones,1,11.99,2019-04-24 16:48:00,798 Hickory St, Los Angeles,CA,90001 +190620,Lightning Charging Cable,1,14.95,2019-04-06 15:20:00,957 Center St, Boston,MA,02215 +190621,Bose SoundSport Headphones,1,99.99,2019-04-26 00:35:00,901 Johnson St, San Francisco,CA,94016 +190622,AAA Batteries (4-pack),1,2.99,2019-04-23 23:28:00,532 Chestnut St, Atlanta,GA,30301 +190623,Google Phone,1,600.0,2019-04-14 17:32:00,493 Cedar St, New York City,NY,10001 +190624,Wired Headphones,1,11.99,2019-04-01 11:36:00,398 9th St, Los Angeles,CA,90001 +190625,Lightning Charging Cable,1,14.95,2019-04-07 22:36:00,718 Willow St, San Francisco,CA,94016 +190626,Apple Airpods Headphones,1,150.0,2019-04-09 18:05:00,664 Madison St, Atlanta,GA,30301 +190627,27in FHD Monitor,1,149.99,2019-05-01 01:36:00,482 Jefferson St, Boston,MA,02215 +190628,Apple Airpods Headphones,1,150.0,2019-04-05 14:48:00,11 14th St, Atlanta,GA,30301 +190629,USB-C Charging Cable,1,11.95,2019-04-27 13:47:00,120 Adams St, Portland,ME,04101 +190630,USB-C Charging Cable,1,11.95,2019-04-19 17:16:00,529 Maple St, Los Angeles,CA,90001 +190631,Google Phone,1,600.0,2019-04-15 18:33:00,333 Lincoln St, New York City,NY,10001 +190632,27in 4K Gaming Monitor,1,389.99,2019-04-29 08:57:00,535 Adams St, Dallas,TX,75001 +190633,USB-C Charging Cable,1,11.95,2019-04-30 14:25:00,599 4th St, San Francisco,CA,94016 +190634,Apple Airpods Headphones,1,150.0,2019-04-18 15:54:00,684 West St, Los Angeles,CA,90001 +190635,27in 4K Gaming Monitor,1,389.99,2019-04-21 20:05:00,510 Hickory St, Dallas,TX,75001 +190636,AA Batteries (4-pack),1,3.84,2019-04-18 08:50:00,738 Adams St, Austin,TX,73301 +190637,iPhone,1,700.0,2019-04-14 19:46:00,931 Adams St, San Francisco,CA,94016 +190638,Wired Headphones,1,11.99,2019-04-23 17:45:00,544 Washington St, Los Angeles,CA,90001 +190639,Lightning Charging Cable,2,14.95,2019-04-18 15:50:00,163 Ridge St, Dallas,TX,75001 +190640,Macbook Pro Laptop,1,1700.0,2019-04-27 09:33:00,146 12th St, Boston,MA,02215 +190641,USB-C Charging Cable,1,11.95,2019-04-07 12:16:00,607 Hickory St, Los Angeles,CA,90001 +190642,Bose SoundSport Headphones,1,99.99,2019-04-10 00:11:00,613 Willow St, Atlanta,GA,30301 +190643,Google Phone,1,600.0,2019-04-01 21:08:00,672 Meadow St, San Francisco,CA,94016 +190644,Apple Airpods Headphones,1,150.0,2019-04-25 11:52:00,379 Ridge St, New York City,NY,10001 +190645,USB-C Charging Cable,1,11.95,2019-04-17 22:43:00,284 Meadow St, New York City,NY,10001 +190645,34in Ultrawide Monitor,1,379.99,2019-04-17 22:43:00,284 Meadow St, New York City,NY,10001 +190646,Lightning Charging Cable,1,14.95,2019-04-17 14:39:00,41 12th St, San Francisco,CA,94016 +190647,Bose SoundSport Headphones,1,99.99,2019-04-22 21:42:00,811 10th St, Seattle,WA,98101 +190648,Bose SoundSport Headphones,1,99.99,2019-04-20 10:21:00,410 Highland St, New York City,NY,10001 +190649,Bose SoundSport Headphones,1,99.99,2019-04-29 21:42:00,357 Church St, Seattle,WA,98101 +190650,Bose SoundSport Headphones,1,99.99,2019-04-01 17:53:00,934 Lincoln St, Portland,OR,97035 +190651,Wired Headphones,1,11.99,2019-04-14 10:59:00,724 9th St, Austin,TX,73301 +190652,iPhone,1,700.0,2019-04-24 20:07:00,812 11th St, Dallas,TX,75001 +190652,Apple Airpods Headphones,1,150.0,2019-04-24 20:07:00,812 11th St, Dallas,TX,75001 +190653,Google Phone,1,600.0,2019-04-07 16:29:00,869 Dogwood St, Los Angeles,CA,90001 +190654,AAA Batteries (4-pack),2,2.99,2019-04-22 09:56:00,497 River St, Austin,TX,73301 +190655,Macbook Pro Laptop,1,1700.0,2019-04-10 06:24:00,681 5th St, New York City,NY,10001 +190656,27in FHD Monitor,1,149.99,2019-04-06 20:38:00,940 Adams St, San Francisco,CA,94016 +190657,ThinkPad Laptop,1,999.99,2019-04-23 17:07:00,647 Walnut St, New York City,NY,10001 +190658,AAA Batteries (4-pack),1,2.99,2019-04-12 07:27:00,331 Spruce St, New York City,NY,10001 +190659,Apple Airpods Headphones,1,150.0,2019-04-09 11:54:00,900 Highland St, New York City,NY,10001 +190660,USB-C Charging Cable,1,11.95,2019-04-21 20:01:00,707 Cherry St, Los Angeles,CA,90001 +190661,AA Batteries (4-pack),2,3.84,2019-04-08 21:22:00,37 11th St, Atlanta,GA,30301 +190662,Google Phone,1,600.0,2019-04-04 08:49:00,91 Ridge St, New York City,NY,10001 +190663,USB-C Charging Cable,1,11.95,2019-04-03 00:04:00,106 Lake St, San Francisco,CA,94016 +190664,27in FHD Monitor,1,149.99,2019-04-03 11:58:00,971 Lakeview St, Seattle,WA,98101 +190665,20in Monitor,1,109.99,2019-04-15 10:20:00,470 7th St, New York City,NY,10001 +190666,Google Phone,1,600.0,2019-04-17 07:20:00,965 Main St, Dallas,TX,75001 +190667,AAA Batteries (4-pack),1,2.99,2019-04-17 07:31:00,733 Hickory St, San Francisco,CA,94016 +190668,Wired Headphones,1,11.99,2019-04-30 13:08:00,426 Hickory St, Seattle,WA,98101 +190669,Lightning Charging Cable,1,14.95,2019-04-10 10:50:00,121 Spruce St, San Francisco,CA,94016 +190670,34in Ultrawide Monitor,1,379.99,2019-04-19 13:44:00,626 Johnson St, San Francisco,CA,94016 +190671,Apple Airpods Headphones,1,150.0,2019-04-07 18:45:00,51 2nd St, Boston,MA,02215 +190672,Bose SoundSport Headphones,1,99.99,2019-04-11 14:31:00,502 1st St, San Francisco,CA,94016 +190673,Bose SoundSport Headphones,1,99.99,2019-04-21 17:54:00,295 Cherry St, New York City,NY,10001 +190674,Macbook Pro Laptop,1,1700.0,2019-04-08 16:19:00,724 1st St, San Francisco,CA,94016 +190675,27in FHD Monitor,1,149.99,2019-04-24 20:38:00,258 Ridge St, Atlanta,GA,30301 +190676,AAA Batteries (4-pack),1,2.99,2019-04-28 20:25:00,399 Willow St, Los Angeles,CA,90001 +190677,Lightning Charging Cable,1,14.95,2019-04-29 09:37:00,413 Walnut St, Boston,MA,02215 +190678,AAA Batteries (4-pack),1,2.99,2019-04-14 21:33:00,154 Ridge St, New York City,NY,10001 +190679,Bose SoundSport Headphones,1,99.99,2019-04-09 14:24:00,280 Meadow St, Boston,MA,02215 +190680,USB-C Charging Cable,1,11.95,2019-04-17 18:33:00,582 Lincoln St, Boston,MA,02215 +190681,Apple Airpods Headphones,1,150.0,2019-04-26 21:42:00,803 Adams St, Boston,MA,02215 +190682,AA Batteries (4-pack),1,3.84,2019-04-11 10:23:00,758 Church St, Seattle,WA,98101 +190683,Wired Headphones,2,11.99,2019-04-21 19:23:00,626 Hill St, Austin,TX,73301 +190684,USB-C Charging Cable,1,11.95,2019-04-11 23:21:00,507 Pine St, San Francisco,CA,94016 +190685,AA Batteries (4-pack),2,3.84,2019-04-06 20:20:00,391 9th St, San Francisco,CA,94016 +190686,Lightning Charging Cable,1,14.95,2019-04-15 17:18:00,290 Chestnut St, New York City,NY,10001 +190687,AA Batteries (4-pack),1,3.84,2019-04-15 04:15:00,363 Jefferson St, Boston,MA,02215 +190688,20in Monitor,1,109.99,2019-04-24 18:00:00,910 Park St, San Francisco,CA,94016 +190689,AAA Batteries (4-pack),1,2.99,2019-04-07 17:21:00,653 Johnson St, New York City,NY,10001 +190690,Vareebadd Phone,1,400.0,2019-04-24 16:58:00,518 Lincoln St, New York City,NY,10001 +190691,Flatscreen TV,1,300.0,2019-04-05 23:04:00,291 Jackson St, New York City,NY,10001 +190692,Apple Airpods Headphones,1,150.0,2019-04-17 12:23:00,126 Spruce St, Boston,MA,02215 +190693,Bose SoundSport Headphones,1,99.99,2019-04-23 09:49:00,936 South St, San Francisco,CA,94016 +190694,AA Batteries (4-pack),1,3.84,2019-04-10 17:26:00,664 10th St, New York City,NY,10001 +190695,Lightning Charging Cable,1,14.95,2019-04-08 20:17:00,331 Cedar St, San Francisco,CA,94016 +190696,Google Phone,1,600.0,2019-04-12 20:03:00,736 River St, San Francisco,CA,94016 +190696,Bose SoundSport Headphones,1,99.99,2019-04-12 20:03:00,736 River St, San Francisco,CA,94016 +190697,Lightning Charging Cable,1,14.95,2019-04-29 22:45:00,636 Main St, New York City,NY,10001 +190698,34in Ultrawide Monitor,1,379.99,2019-04-18 11:16:00,859 Ridge St, San Francisco,CA,94016 +190699,AAA Batteries (4-pack),1,2.99,2019-04-05 08:27:00,454 6th St, Boston,MA,02215 +190700,Lightning Charging Cable,1,14.95,2019-04-07 10:46:00,783 13th St, San Francisco,CA,94016 +190701,AA Batteries (4-pack),1,3.84,2019-04-03 15:18:00,342 13th St, Boston,MA,02215 +190702,27in 4K Gaming Monitor,1,389.99,2019-04-24 14:27:00,598 River St, San Francisco,CA,94016 +190703,Bose SoundSport Headphones,1,99.99,2019-04-27 13:40:00,876 Cedar St, Los Angeles,CA,90001 +190704,Wired Headphones,2,11.99,2019-04-24 11:48:00,305 Madison St, Los Angeles,CA,90001 +190705,Apple Airpods Headphones,1,150.0,2019-04-10 11:20:00,551 Wilson St, San Francisco,CA,94016 +190706,Vareebadd Phone,1,400.0,2019-04-12 09:51:00,939 Park St, Boston,MA,02215 +190707,AA Batteries (4-pack),2,3.84,2019-04-20 15:58:00,202 River St, New York City,NY,10001 +190708,Wired Headphones,1,11.99,2019-04-13 09:24:00,600 Washington St, San Francisco,CA,94016 +190709,AAA Batteries (4-pack),1,2.99,2019-04-09 17:57:00,454 Sunset St, Seattle,WA,98101 +190710,Wired Headphones,2,11.99,2019-04-24 17:39:00,701 Center St, Los Angeles,CA,90001 +190711,20in Monitor,1,109.99,2019-04-26 12:49:00,283 Wilson St, San Francisco,CA,94016 +190712,Apple Airpods Headphones,1,150.0,2019-04-11 22:16:00,254 Chestnut St, Seattle,WA,98101 +190713,USB-C Charging Cable,1,11.95,2019-04-16 15:45:00,291 14th St, San Francisco,CA,94016 +190714,Apple Airpods Headphones,1,150.0,2019-04-06 12:34:00,603 1st St, San Francisco,CA,94016 +190715,Bose SoundSport Headphones,1,99.99,2019-04-01 15:29:00,619 North St, Dallas,TX,75001 +190716,Macbook Pro Laptop,1,1700.0,2019-04-20 18:15:00,81 11th St, New York City,NY,10001 +190717,AAA Batteries (4-pack),2,2.99,2019-04-26 10:40:00,576 South St, San Francisco,CA,94016 +190718,Apple Airpods Headphones,1,150.0,2019-04-23 12:01:00,735 South St, Seattle,WA,98101 +190719,AAA Batteries (4-pack),2,2.99,2019-04-09 08:22:00,980 Lakeview St, New York City,NY,10001 +190720,Bose SoundSport Headphones,1,99.99,2019-04-18 11:30:00,569 Park St, Austin,TX,73301 +190721,Lightning Charging Cable,1,14.95,2019-04-28 11:28:00,721 Madison St, New York City,NY,10001 +190722,27in FHD Monitor,1,149.99,2019-04-08 20:56:00,950 West St, Atlanta,GA,30301 +190723,Bose SoundSport Headphones,1,99.99,2019-04-17 16:54:00,346 West St, Seattle,WA,98101 +190724,AAA Batteries (4-pack),1,2.99,2019-04-30 22:20:00,181 South St, San Francisco,CA,94016 +190725,AA Batteries (4-pack),1,3.84,2019-04-08 19:12:00,956 Meadow St, San Francisco,CA,94016 +190726,27in FHD Monitor,1,149.99,2019-04-14 20:53:00,744 4th St, Boston,MA,02215 +190727,Wired Headphones,1,11.99,2019-04-06 14:14:00,177 Lincoln St, New York City,NY,10001 +190728,34in Ultrawide Monitor,1,379.99,2019-04-26 20:34:00,890 Elm St, Atlanta,GA,30301 +190729,ThinkPad Laptop,1,999.99,2019-04-24 20:25:00,88 Lincoln St, Atlanta,GA,30301 +190730,Wired Headphones,1,11.99,2019-04-02 06:57:00,346 Center St, Seattle,WA,98101 +190731,USB-C Charging Cable,1,11.95,2019-04-04 16:28:00,231 1st St, San Francisco,CA,94016 +190732,AAA Batteries (4-pack),1,2.99,2019-04-12 13:46:00,502 South St, Boston,MA,02215 +190733,Bose SoundSport Headphones,1,99.99,2019-04-23 08:03:00,391 2nd St, Los Angeles,CA,90001 +190734,Lightning Charging Cable,1,14.95,2019-04-09 09:36:00,468 South St, New York City,NY,10001 +190735,Macbook Pro Laptop,1,1700.0,2019-04-15 11:10:00,558 Lake St, Atlanta,GA,30301 +190736,AAA Batteries (4-pack),2,2.99,2019-04-18 08:37:00,880 8th St, Boston,MA,02215 +190737,Bose SoundSport Headphones,1,99.99,2019-04-07 20:03:00,722 Lincoln St, New York City,NY,10001 +190738,AAA Batteries (4-pack),1,2.99,2019-04-23 12:41:00,466 6th St, San Francisco,CA,94016 +190739,34in Ultrawide Monitor,1,379.99,2019-04-11 01:56:00,435 1st St, San Francisco,CA,94016 +190740,Wired Headphones,1,11.99,2019-04-12 00:11:00,79 Ridge St, San Francisco,CA,94016 +190741,Lightning Charging Cable,1,14.95,2019-04-18 21:33:00,75 8th St, San Francisco,CA,94016 +190742,27in FHD Monitor,1,149.99,2019-04-06 02:11:00,487 Jefferson St, San Francisco,CA,94016 +190743,Apple Airpods Headphones,1,150.0,2019-04-04 10:59:00,127 River St, New York City,NY,10001 +190744,Wired Headphones,1,11.99,2019-04-22 07:40:00,646 Willow St, Portland,OR,97035 +190745,AA Batteries (4-pack),1,3.84,2019-04-18 13:01:00,224 Madison St, New York City,NY,10001 +190746,20in Monitor,1,109.99,2019-04-19 13:03:00,623 Meadow St, Austin,TX,73301 +190747,Apple Airpods Headphones,1,150.0,2019-04-08 19:38:00,730 River St, San Francisco,CA,94016 +190748,Lightning Charging Cable,1,14.95,2019-04-25 13:41:00,347 Lincoln St, Los Angeles,CA,90001 +190749,AA Batteries (4-pack),1,3.84,2019-04-09 23:47:00,102 5th St, Portland,OR,97035 +190750,Wired Headphones,1,11.99,2019-04-19 12:33:00,384 Meadow St, San Francisco,CA,94016 +190751,Google Phone,1,600.0,2019-04-23 00:32:00,113 Lincoln St, Atlanta,GA,30301 +190752,Wired Headphones,1,11.99,2019-04-07 12:38:00,926 Spruce St, San Francisco,CA,94016 +190753,Macbook Pro Laptop,1,1700.0,2019-04-20 19:01:00,590 Cedar St, Boston,MA,02215 +190754,USB-C Charging Cable,1,11.95,2019-04-05 11:53:00,887 Sunset St, Boston,MA,02215 +190755,27in 4K Gaming Monitor,1,389.99,2019-04-18 12:27:00,573 6th St, Boston,MA,02215 +190756,AAA Batteries (4-pack),1,2.99,2019-04-26 19:30:00,308 Center St, Austin,TX,73301 +190757,Wired Headphones,1,11.99,2019-04-08 11:06:00,206 Cherry St, Los Angeles,CA,90001 +190758,Bose SoundSport Headphones,1,99.99,2019-04-17 09:17:00,799 Lakeview St, San Francisco,CA,94016 +190759,Bose SoundSport Headphones,1,99.99,2019-04-13 14:47:00,841 Jefferson St, Los Angeles,CA,90001 +190760,Apple Airpods Headphones,1,150.0,2019-04-01 17:29:00,459 Church St, Seattle,WA,98101 +190761,34in Ultrawide Monitor,1,379.99,2019-04-24 21:57:00,849 Main St, Boston,MA,02215 +190762,Bose SoundSport Headphones,1,99.99,2019-04-07 12:05:00,780 Willow St, San Francisco,CA,94016 +190763,Apple Airpods Headphones,1,150.0,2019-04-04 21:38:00,338 Sunset St, New York City,NY,10001 +190764,iPhone,1,700.0,2019-04-28 15:12:00,355 Park St, Los Angeles,CA,90001 +190765,Wired Headphones,1,11.99,2019-04-22 12:14:00,147 Sunset St, San Francisco,CA,94016 +190766,27in FHD Monitor,1,149.99,2019-04-30 17:01:00,246 1st St, Los Angeles,CA,90001 +190767,Vareebadd Phone,1,400.0,2019-04-17 14:56:00,55 Church St, Atlanta,GA,30301 +190768,USB-C Charging Cable,1,11.95,2019-04-20 18:35:00,56 6th St, Los Angeles,CA,90001 +190769,LG Washing Machine,1,600.0,2019-04-07 19:12:00,84 Hickory St, Seattle,WA,98101 +190770,Lightning Charging Cable,1,14.95,2019-04-07 14:16:00,61 Jackson St, Dallas,TX,75001 +190771,AA Batteries (4-pack),1,3.84,2019-04-27 06:10:00,344 Madison St, Atlanta,GA,30301 +190772,Wired Headphones,1,11.99,2019-04-23 13:32:00,760 Walnut St, San Francisco,CA,94016 +190773,USB-C Charging Cable,1,11.95,2019-04-27 06:05:00,456 Wilson St, Portland,OR,97035 +190774,34in Ultrawide Monitor,1,379.99,2019-04-27 19:17:00,842 4th St, Los Angeles,CA,90001 +190775,AAA Batteries (4-pack),1,2.99,2019-04-17 18:42:00,600 Cedar St, Boston,MA,02215 +190776,Apple Airpods Headphones,1,150.0,2019-04-13 13:55:00,130 Jackson St, San Francisco,CA,94016 +190777,Bose SoundSport Headphones,1,99.99,2019-04-29 11:25:00,927 Wilson St, Seattle,WA,98101 +190778,Macbook Pro Laptop,1,1700.0,2019-04-24 10:11:00,540 Meadow St, Seattle,WA,98101 +190779,AA Batteries (4-pack),1,3.84,2019-04-24 17:43:00,877 Lincoln St, San Francisco,CA,94016 +190780,USB-C Charging Cable,1,11.95,2019-04-18 12:05:00,701 Lake St, Boston,MA,02215 +190781,27in 4K Gaming Monitor,1,389.99,2019-04-05 11:31:00,730 Hill St, San Francisco,CA,94016 +190782,AAA Batteries (4-pack),1,2.99,2019-04-29 21:52:00,804 South St, Seattle,WA,98101 +190783,Lightning Charging Cable,1,14.95,2019-04-13 17:55:00,475 Sunset St, San Francisco,CA,94016 +190784,Lightning Charging Cable,1,14.95,2019-04-08 17:41:00,440 8th St, Dallas,TX,75001 +190785,Wired Headphones,1,11.99,2019-04-05 12:21:00,304 West St, Dallas,TX,75001 +190786,Lightning Charging Cable,1,14.95,2019-04-15 14:22:00,804 14th St, Dallas,TX,75001 +190787,Lightning Charging Cable,1,14.95,2019-04-29 16:01:00,513 Ridge St, New York City,NY,10001 +190788,27in FHD Monitor,1,149.99,2019-04-30 11:56:00,439 6th St, Seattle,WA,98101 +190789,Flatscreen TV,1,300.0,2019-04-26 19:37:00,455 North St, San Francisco,CA,94016 +190790,USB-C Charging Cable,1,11.95,2019-04-10 09:10:00,334 8th St, Austin,TX,73301 +190791,AAA Batteries (4-pack),2,2.99,2019-04-28 19:18:00,3 Jefferson St, Seattle,WA,98101 +190792,USB-C Charging Cable,1,11.95,2019-04-30 20:53:00,215 Highland St, New York City,NY,10001 +190793,Apple Airpods Headphones,1,150.0,2019-04-03 21:05:00,860 8th St, Atlanta,GA,30301 +190794,USB-C Charging Cable,1,11.95,2019-04-14 21:34:00,328 Park St, Seattle,WA,98101 +190795,USB-C Charging Cable,1,11.95,2019-04-25 16:53:00,706 5th St, San Francisco,CA,94016 +190796,27in FHD Monitor,1,149.99,2019-04-15 22:20:00,594 7th St, San Francisco,CA,94016 +190797,Wired Headphones,1,11.99,2019-04-12 09:16:00,689 Walnut St, Los Angeles,CA,90001 +190798,AAA Batteries (4-pack),2,2.99,2019-04-01 18:44:00,29 7th St, Portland,ME,04101 +190799,AA Batteries (4-pack),3,3.84,2019-04-08 22:34:00,335 Pine St, Seattle,WA,98101 +190800,USB-C Charging Cable,2,11.95,2019-04-05 22:17:00,632 Park St, San Francisco,CA,94016 +190801,AA Batteries (4-pack),1,3.84,2019-04-14 15:43:00,188 Chestnut St, Dallas,TX,75001 +190802,AAA Batteries (4-pack),2,2.99,2019-04-03 22:26:00,183 Hickory St, Dallas,TX,75001 +190803,USB-C Charging Cable,3,11.95,2019-04-28 16:26:00,5 Main St, Atlanta,GA,30301 +190804,Lightning Charging Cable,1,14.95,2019-04-29 14:48:00,951 Spruce St, Dallas,TX,75001 +190805,Apple Airpods Headphones,1,150.0,2019-04-10 15:14:00,226 North St, Los Angeles,CA,90001 +190806,Wired Headphones,1,11.99,2019-04-07 13:43:00,8 Main St, Dallas,TX,75001 +190807,27in 4K Gaming Monitor,1,389.99,2019-04-24 10:23:00,988 Jefferson St, Dallas,TX,75001 +190808,ThinkPad Laptop,1,999.99,2019-04-13 21:34:00,680 Walnut St, New York City,NY,10001 +190809,iPhone,1,700.0,2019-04-30 14:42:00,585 Chestnut St, San Francisco,CA,94016 +190810,AA Batteries (4-pack),2,3.84,2019-04-29 17:53:00,566 Hill St, Los Angeles,CA,90001 +190811,Bose SoundSport Headphones,1,99.99,2019-04-21 18:46:00,962 Lake St, Austin,TX,73301 +190812,27in FHD Monitor,1,149.99,2019-04-13 11:00:00,986 Washington St, New York City,NY,10001 +190813,Apple Airpods Headphones,1,150.0,2019-04-29 01:15:00,602 Spruce St, Los Angeles,CA,90001 +190814,Wired Headphones,1,11.99,2019-04-06 03:03:00,96 Cedar St, Atlanta,GA,30301 +190815,USB-C Charging Cable,1,11.95,2019-04-09 20:57:00,495 Forest St, Los Angeles,CA,90001 +190816,AA Batteries (4-pack),2,3.84,2019-04-06 18:04:00,446 5th St, New York City,NY,10001 +190817,Wired Headphones,1,11.99,2019-04-02 20:07:00,74 South St, Los Angeles,CA,90001 +190818,Apple Airpods Headphones,1,150.0,2019-04-02 21:49:00,762 12th St, Boston,MA,02215 +190819,AAA Batteries (4-pack),1,2.99,2019-04-15 07:12:00,987 Center St, New York City,NY,10001 +190820,Wired Headphones,1,11.99,2019-04-20 15:00:00,532 Maple St, Boston,MA,02215 +190821,Bose SoundSport Headphones,1,99.99,2019-04-11 13:05:00,395 Cedar St, San Francisco,CA,94016 +190822,20in Monitor,1,109.99,2019-04-10 12:09:00,175 Center St, Portland,ME,04101 +190823,USB-C Charging Cable,1,11.95,2019-04-11 04:00:00,954 Sunset St, New York City,NY,10001 +190824,27in FHD Monitor,1,149.99,2019-04-27 15:19:00,240 Park St, New York City,NY,10001 +190825,Wired Headphones,1,11.99,2019-04-20 16:05:00,591 North St, Austin,TX,73301 +190826,27in 4K Gaming Monitor,1,389.99,2019-04-28 21:17:00,111 Main St, San Francisco,CA,94016 +190827,Vareebadd Phone,1,400.0,2019-04-18 12:38:00,447 9th St, Seattle,WA,98101 +190828,Wired Headphones,1,11.99,2019-04-07 10:59:00,222 6th St, San Francisco,CA,94016 +190829,AAA Batteries (4-pack),1,2.99,2019-04-15 18:36:00,925 South St, San Francisco,CA,94016 +190830,20in Monitor,1,109.99,2019-04-01 13:35:00,821 8th St, Seattle,WA,98101 +190831,Apple Airpods Headphones,1,150.0,2019-04-07 12:48:00,108 Spruce St, New York City,NY,10001 +190832,Wired Headphones,1,11.99,2019-04-10 10:13:00,478 4th St, Los Angeles,CA,90001 +190833,Apple Airpods Headphones,1,150.0,2019-04-03 20:21:00,111 14th St, San Francisco,CA,94016 +190834,Vareebadd Phone,1,400.0,2019-04-25 19:53:00,506 Jackson St, New York City,NY,10001 +190835,Apple Airpods Headphones,1,150.0,2019-04-30 09:36:00,58 Willow St, Los Angeles,CA,90001 +190836,ThinkPad Laptop,1,999.99,2019-04-06 12:28:00,136 Cedar St, Austin,TX,73301 +190837,iPhone,1,700.0,2019-04-07 14:09:00,379 Church St, San Francisco,CA,94016 +190838,AA Batteries (4-pack),5,3.84,2019-04-13 12:59:00,787 Main St, Boston,MA,02215 +190839,USB-C Charging Cable,1,11.95,2019-04-14 18:32:00,382 11th St, Dallas,TX,75001 +190840,iPhone,1,700.0,2019-04-30 17:25:00,379 Willow St, Seattle,WA,98101 +190840,Lightning Charging Cable,1,14.95,2019-04-30 17:25:00,379 Willow St, Seattle,WA,98101 +190841,AA Batteries (4-pack),1,3.84,2019-04-12 20:52:00,973 River St, San Francisco,CA,94016 +190842,34in Ultrawide Monitor,1,379.99,2019-04-12 15:32:00,411 Wilson St, Portland,OR,97035 +190843,Wired Headphones,1,11.99,2019-04-21 20:43:00,83 Jefferson St, Dallas,TX,75001 +190844,AA Batteries (4-pack),1,3.84,2019-04-18 18:51:00,173 Park St, San Francisco,CA,94016 +190845,Flatscreen TV,1,300.0,2019-04-10 20:59:00,452 Meadow St, Boston,MA,02215 +190846,Bose SoundSport Headphones,1,99.99,2019-04-01 10:23:00,756 Elm St, New York City,NY,10001 +190847,AA Batteries (4-pack),1,3.84,2019-04-20 16:08:00,297 Willow St, San Francisco,CA,94016 +190848,USB-C Charging Cable,1,11.95,2019-04-26 15:11:00,255 Elm St, San Francisco,CA,94016 +190849,Apple Airpods Headphones,1,150.0,2019-04-16 20:51:00,12 Adams St, San Francisco,CA,94016 +190850,ThinkPad Laptop,1,999.99,2019-04-28 12:27:00,796 Hickory St, Portland,OR,97035 +190851,Google Phone,1,600.0,2019-04-07 14:50:00,292 Washington St, Boston,MA,02215 +190851,USB-C Charging Cable,1,11.95,2019-04-07 14:50:00,292 Washington St, Boston,MA,02215 +190852,34in Ultrawide Monitor,1,379.99,2019-04-11 09:18:00,753 12th St, San Francisco,CA,94016 +190853,20in Monitor,1,109.99,2019-04-23 12:38:00,12 Lake St, San Francisco,CA,94016 +190853,USB-C Charging Cable,1,11.95,2019-04-23 12:38:00,12 Lake St, San Francisco,CA,94016 +190854,USB-C Charging Cable,1,11.95,2019-04-04 18:52:00,747 Willow St, Atlanta,GA,30301 +190855,Macbook Pro Laptop,1,1700.0,2019-04-24 11:00:00,200 6th St, Atlanta,GA,30301 +190856,Flatscreen TV,1,300.0,2019-04-06 10:41:00,937 Pine St, Austin,TX,73301 +190857,Google Phone,1,600.0,2019-04-24 00:05:00,733 2nd St, San Francisco,CA,94016 +190858,USB-C Charging Cable,1,11.95,2019-04-12 19:37:00,685 1st St, San Francisco,CA,94016 +190859,Apple Airpods Headphones,1,150.0,2019-04-24 23:31:00,202 Hill St, Atlanta,GA,30301 +190860,Wired Headphones,1,11.99,2019-04-21 08:15:00,81 South St, New York City,NY,10001 +190861,34in Ultrawide Monitor,1,379.99,2019-04-10 02:07:00,455 Lake St, San Francisco,CA,94016 +190862,Flatscreen TV,1,300.0,2019-04-15 11:38:00,604 Cedar St, San Francisco,CA,94016 +190862,27in FHD Monitor,1,149.99,2019-04-15 11:38:00,604 Cedar St, San Francisco,CA,94016 +190863,iPhone,1,700.0,2019-04-27 12:44:00,297 14th St, Dallas,TX,75001 +190863,Wired Headphones,1,11.99,2019-04-27 12:44:00,297 14th St, Dallas,TX,75001 +190864,27in 4K Gaming Monitor,1,389.99,2019-04-01 20:59:00,631 1st St, San Francisco,CA,94016 +190865,AAA Batteries (4-pack),1,2.99,2019-04-19 10:49:00,990 South St, San Francisco,CA,94016 +190866,AAA Batteries (4-pack),1,2.99,2019-04-30 12:53:00,284 Walnut St, San Francisco,CA,94016 +190867,AA Batteries (4-pack),1,3.84,2019-04-30 10:51:00,299 9th St, San Francisco,CA,94016 +190868,USB-C Charging Cable,1,11.95,2019-04-28 22:26:00,510 7th St, Seattle,WA,98101 +190869,USB-C Charging Cable,1,11.95,2019-04-08 22:07:00,642 Madison St, San Francisco,CA,94016 +190870,34in Ultrawide Monitor,1,379.99,2019-04-29 14:10:00,141 Wilson St, Atlanta,GA,30301 +190871,Google Phone,1,600.0,2019-04-12 15:14:00,208 Lakeview St, Seattle,WA,98101 +190872,AA Batteries (4-pack),2,3.84,2019-04-28 20:47:00,979 Jackson St, Portland,OR,97035 +190873,Bose SoundSport Headphones,1,99.99,2019-04-30 16:55:00,48 4th St, San Francisco,CA,94016 +190874,AA Batteries (4-pack),2,3.84,2019-04-01 12:21:00,151 Elm St, San Francisco,CA,94016 +190875,34in Ultrawide Monitor,1,379.99,2019-04-17 05:43:00,601 1st St, Portland,OR,97035 +190876,Lightning Charging Cable,1,14.95,2019-04-14 20:01:00,941 Highland St, New York City,NY,10001 +190877,AA Batteries (4-pack),1,3.84,2019-04-22 14:53:00,295 Ridge St, San Francisco,CA,94016 +190878,Wired Headphones,1,11.99,2019-04-01 11:38:00,280 Dogwood St, San Francisco,CA,94016 +190879,AAA Batteries (4-pack),1,2.99,2019-04-21 10:15:00,136 Johnson St, Seattle,WA,98101 +190880,iPhone,1,700.0,2019-04-15 11:36:00,625 Hickory St, San Francisco,CA,94016 +190880,Lightning Charging Cable,1,14.95,2019-04-15 11:36:00,625 Hickory St, San Francisco,CA,94016 +190881,Lightning Charging Cable,1,14.95,2019-04-05 09:35:00,600 Jackson St, Austin,TX,73301 +190882,Google Phone,1,600.0,2019-04-07 13:04:00,489 1st St, New York City,NY,10001 +190883,AAA Batteries (4-pack),1,2.99,2019-04-07 12:23:00,582 14th St, Atlanta,GA,30301 +190884,27in FHD Monitor,1,149.99,2019-04-09 09:46:00,564 Cherry St, New York City,NY,10001 +190885,AA Batteries (4-pack),2,3.84,2019-04-12 16:38:00,249 Dogwood St, San Francisco,CA,94016 +190886,Wired Headphones,1,11.99,2019-04-18 13:38:00,141 Lincoln St, San Francisco,CA,94016 +190887,20in Monitor,1,109.99,2019-04-28 10:46:00,934 Wilson St, Boston,MA,02215 +190888,USB-C Charging Cable,1,11.95,2019-04-19 18:53:00,30 South St, Atlanta,GA,30301 +190889,AAA Batteries (4-pack),1,2.99,2019-04-04 19:00:00,547 1st St, Austin,TX,73301 +190890,34in Ultrawide Monitor,1,379.99,2019-04-03 16:36:00,886 Cedar St, Atlanta,GA,30301 +190891,Bose SoundSport Headphones,1,99.99,2019-04-16 05:42:00,632 North St, San Francisco,CA,94016 +190892,USB-C Charging Cable,1,11.95,2019-04-29 04:29:00,710 Lakeview St, San Francisco,CA,94016 +190893,AA Batteries (4-pack),2,3.84,2019-04-22 00:14:00,349 8th St, San Francisco,CA,94016 +190894,Lightning Charging Cable,1,14.95,2019-04-19 18:51:00,417 7th St, Portland,OR,97035 +190895,ThinkPad Laptop,1,999.99,2019-04-04 16:30:00,891 Lincoln St, Los Angeles,CA,90001 +190896,AAA Batteries (4-pack),4,2.99,2019-04-29 13:31:00,499 11th St, San Francisco,CA,94016 +190897,Wired Headphones,1,11.99,2019-04-16 13:50:00,856 Lakeview St, San Francisco,CA,94016 +190898,AA Batteries (4-pack),2,3.84,2019-04-17 09:25:00,531 Spruce St, Austin,TX,73301 +190899,Lightning Charging Cable,1,14.95,2019-04-26 23:04:00,581 13th St, Seattle,WA,98101 +190900,Apple Airpods Headphones,1,150.0,2019-04-08 21:50:00,582 11th St, New York City,NY,10001 +190900,Wired Headphones,1,11.99,2019-04-08 21:50:00,582 11th St, New York City,NY,10001 +190901,ThinkPad Laptop,1,999.99,2019-04-08 18:00:00,809 South St, San Francisco,CA,94016 +190902,Apple Airpods Headphones,1,150.0,2019-04-04 21:20:00,71 11th St, Atlanta,GA,30301 +190903,Macbook Pro Laptop,1,1700.0,2019-04-02 19:45:00,939 Maple St, New York City,NY,10001 +190904,Lightning Charging Cable,1,14.95,2019-04-30 10:02:00,348 Madison St, Portland,OR,97035 +190905,AAA Batteries (4-pack),2,2.99,2019-04-07 04:33:00,354 Pine St, San Francisco,CA,94016 +190906,AA Batteries (4-pack),2,3.84,2019-04-25 15:27:00,210 West St, San Francisco,CA,94016 +190907,Bose SoundSport Headphones,1,99.99,2019-04-14 20:40:00,921 5th St, Dallas,TX,75001 +190908,LG Dryer,1,600.0,2019-04-09 14:38:00,806 11th St, Austin,TX,73301 +190909,Lightning Charging Cable,1,14.95,2019-04-21 15:09:00,861 Wilson St, Boston,MA,02215 +190910,AAA Batteries (4-pack),1,2.99,2019-04-03 15:37:00,232 Meadow St, Los Angeles,CA,90001 +190911,27in 4K Gaming Monitor,1,389.99,2019-04-05 12:28:00,900 Church St, San Francisco,CA,94016 +190912,Macbook Pro Laptop,1,1700.0,2019-04-28 16:22:00,427 7th St, Los Angeles,CA,90001 +190913,AAA Batteries (4-pack),2,2.99,2019-04-23 13:44:00,424 Lincoln St, Seattle,WA,98101 +190914,AAA Batteries (4-pack),2,2.99,2019-04-23 21:45:00,467 10th St, New York City,NY,10001 +190915,Bose SoundSport Headphones,1,99.99,2019-04-07 08:32:00,764 Hickory St, New York City,NY,10001 +190916,Apple Airpods Headphones,1,150.0,2019-04-04 15:43:00,883 10th St, San Francisco,CA,94016 +190917,Apple Airpods Headphones,1,150.0,2019-04-07 20:02:00,540 Chestnut St, Portland,OR,97035 +190918,Wired Headphones,1,11.99,2019-04-20 09:23:00,89 Park St, Boston,MA,02215 +190919,USB-C Charging Cable,1,11.95,2019-04-23 22:49:00,336 7th St, Los Angeles,CA,90001 +190920,34in Ultrawide Monitor,1,379.99,2019-04-28 19:43:00,649 Park St, New York City,NY,10001 +190921,27in FHD Monitor,1,149.99,2019-04-24 15:17:00,392 River St, Los Angeles,CA,90001 +190922,Apple Airpods Headphones,1,150.0,2019-04-25 14:03:00,111 North St, Boston,MA,02215 +190923,34in Ultrawide Monitor,1,379.99,2019-04-24 18:09:00,32 Cedar St, San Francisco,CA,94016 +190924,ThinkPad Laptop,1,999.99,2019-04-22 21:09:00,493 Spruce St, Seattle,WA,98101 +190925,Wired Headphones,1,11.99,2019-04-25 17:55:00,43 Park St, New York City,NY,10001 +190926,27in FHD Monitor,1,149.99,2019-04-05 14:17:00,229 Walnut St, Dallas,TX,75001 +190927,USB-C Charging Cable,1,11.95,2019-04-10 22:19:00,438 Meadow St, New York City,NY,10001 +190928,Lightning Charging Cable,1,14.95,2019-04-22 22:06:00,244 Wilson St, New York City,NY,10001 +190929,AA Batteries (4-pack),2,3.84,2019-04-05 12:33:00,790 7th St, San Francisco,CA,94016 +190930,27in 4K Gaming Monitor,1,389.99,2019-04-18 18:44:00,400 Lincoln St, Boston,MA,02215 +190931,Wired Headphones,1,11.99,2019-04-11 11:15:00,518 Hill St, Seattle,WA,98101 +190932,Wired Headphones,1,11.99,2019-04-18 22:35:00,593 Ridge St, San Francisco,CA,94016 +190933,AAA Batteries (4-pack),1,2.99,2019-04-17 08:03:00,463 Dogwood St, Portland,OR,97035 +190934,Google Phone,1,600.0,2019-04-13 05:33:00,896 Lake St, Dallas,TX,75001 +190935,Bose SoundSport Headphones,1,99.99,2019-04-13 15:29:00,576 North St, Los Angeles,CA,90001 +190936,Wired Headphones,1,11.99,2019-04-12 18:24:00,936 Jefferson St, Portland,ME,04101 +190937,Wired Headphones,1,11.99,2019-04-20 21:14:00,2 5th St, San Francisco,CA,94016 +190938,USB-C Charging Cable,1,11.95,2019-04-10 16:20:00,499 4th St, San Francisco,CA,94016 +190939,Wired Headphones,1,11.99,2019-04-01 13:11:00,329 2nd St, Boston,MA,02215 +190940,USB-C Charging Cable,1,11.95,2019-04-24 12:32:00,740 1st St, New York City,NY,10001 +190941,Wired Headphones,2,11.99,2019-04-10 19:03:00,958 Sunset St, Seattle,WA,98101 +190942,iPhone,1,700.0,2019-04-09 20:41:00,308 Willow St, Dallas,TX,75001 +190943,AA Batteries (4-pack),1,3.84,2019-04-28 17:48:00,65 2nd St, Los Angeles,CA,90001 +190944,Lightning Charging Cable,1,14.95,2019-04-04 00:36:00,958 Lake St, Portland,ME,04101 +190945,USB-C Charging Cable,1,11.95,2019-04-09 15:17:00,966 Main St, Boston,MA,02215 +190946,Wired Headphones,1,11.99,2019-04-01 15:38:00,575 9th St, Dallas,TX,75001 +190947,Wired Headphones,1,11.99,2019-04-01 22:15:00,672 Lincoln St, San Francisco,CA,94016 +190948,Vareebadd Phone,1,400.0,2019-04-23 18:27:00,880 9th St, Boston,MA,02215 +190949,Bose SoundSport Headphones,1,99.99,2019-04-15 18:43:00,48 Ridge St, Boston,MA,02215 +190950,Apple Airpods Headphones,1,150.0,2019-04-12 12:44:00,723 Johnson St, Los Angeles,CA,90001 +190951,USB-C Charging Cable,1,11.95,2019-04-24 09:47:00,515 12th St, Portland,OR,97035 +190952,27in FHD Monitor,1,149.99,2019-04-01 21:45:00,281 Lincoln St, Los Angeles,CA,90001 +190953,Wired Headphones,2,11.99,2019-04-28 12:38:00,704 Cedar St, Los Angeles,CA,90001 +190954,27in 4K Gaming Monitor,1,389.99,2019-04-24 06:14:00,947 Hill St, San Francisco,CA,94016 +190955,USB-C Charging Cable,1,11.95,2019-04-10 13:15:00,58 River St, New York City,NY,10001 +190956,AA Batteries (4-pack),1,3.84,2019-04-08 09:32:00,332 River St, Portland,OR,97035 +190957,AAA Batteries (4-pack),1,2.99,2019-04-23 07:34:00,392 Hill St, Atlanta,GA,30301 +190958,AA Batteries (4-pack),1,3.84,2019-04-23 10:28:00,502 Cherry St, Boston,MA,02215 +190959,Bose SoundSport Headphones,1,99.99,2019-04-08 15:47:00,921 5th St, Dallas,TX,75001 +190960,Wired Headphones,1,11.99,2019-04-02 19:45:00,613 Jackson St, Seattle,WA,98101 +190961,Wired Headphones,1,11.99,2019-04-10 07:52:00,724 Johnson St, San Francisco,CA,94016 +190962,27in FHD Monitor,1,149.99,2019-04-25 22:21:00,707 5th St, New York City,NY,10001 +190963,AA Batteries (4-pack),1,3.84,2019-04-05 09:17:00,16 River St, Atlanta,GA,30301 +190964,Apple Airpods Headphones,1,150.0,2019-04-15 20:57:00,450 9th St, Seattle,WA,98101 +190965,27in 4K Gaming Monitor,1,389.99,2019-04-11 18:09:00,342 Meadow St, New York City,NY,10001 +190966,Lightning Charging Cable,1,14.95,2019-04-30 12:22:00,881 Hill St, Austin,TX,73301 +190967,34in Ultrawide Monitor,1,379.99,2019-04-27 23:02:00,603 Walnut St, San Francisco,CA,94016 +190968,USB-C Charging Cable,1,11.95,2019-04-04 13:12:00,207 Washington St, New York City,NY,10001 +190969,Apple Airpods Headphones,1,150.0,2019-04-28 09:55:00,793 Hickory St, New York City,NY,10001 +190970,27in 4K Gaming Monitor,1,389.99,2019-04-16 16:11:00,728 Elm St, San Francisco,CA,94016 +190971,Macbook Pro Laptop,1,1700.0,2019-04-24 09:27:00,687 Park St, Los Angeles,CA,90001 +190972,27in 4K Gaming Monitor,1,389.99,2019-04-21 11:17:00,395 Chestnut St, Boston,MA,02215 +190973,USB-C Charging Cable,1,11.95,2019-04-01 10:08:00,617 Cherry St, Austin,TX,73301 +190974,USB-C Charging Cable,1,11.95,2019-04-03 09:47:00,442 Elm St, San Francisco,CA,94016 +190975,AAA Batteries (4-pack),2,2.99,2019-04-16 12:51:00,246 Pine St, Los Angeles,CA,90001 +190976,AAA Batteries (4-pack),1,2.99,2019-04-13 18:13:00,471 West St, Boston,MA,02215 +190977,Lightning Charging Cable,1,14.95,2019-04-22 23:42:00,257 4th St, San Francisco,CA,94016 +190978,Flatscreen TV,1,300.0,2019-04-24 07:41:00,683 Maple St, San Francisco,CA,94016 +190979,Apple Airpods Headphones,1,150.0,2019-04-25 00:00:00,983 Pine St, Seattle,WA,98101 +190980,AAA Batteries (4-pack),1,2.99,2019-04-11 21:50:00,79 Johnson St, New York City,NY,10001 +190981,27in 4K Gaming Monitor,1,389.99,2019-04-29 04:24:00,504 Center St, San Francisco,CA,94016 +190982,LG Washing Machine,1,600.0,2019-04-02 14:17:00,574 River St, San Francisco,CA,94016 +190983,AAA Batteries (4-pack),1,2.99,2019-04-13 11:45:00,24 10th St, New York City,NY,10001 +190984,Apple Airpods Headphones,1,150.0,2019-04-06 21:02:00,827 4th St, Los Angeles,CA,90001 +190985,Bose SoundSport Headphones,1,99.99,2019-04-07 18:54:00,23 Park St, Los Angeles,CA,90001 +190986,ThinkPad Laptop,1,999.99,2019-04-09 19:41:00,860 Sunset St, San Francisco,CA,94016 +190987,AAA Batteries (4-pack),1,2.99,2019-04-02 02:54:00,136 Cedar St, Boston,MA,02215 +190988,USB-C Charging Cable,1,11.95,2019-04-12 17:23:00,643 Washington St, New York City,NY,10001 +190989,USB-C Charging Cable,1,11.95,2019-04-25 15:27:00,453 Church St, Austin,TX,73301 +190990,Lightning Charging Cable,1,14.95,2019-04-02 09:51:00,866 Elm St, Boston,MA,02215 +190991,Apple Airpods Headphones,1,150.0,2019-04-21 14:29:00,133 6th St, Boston,MA,02215 +190992,AA Batteries (4-pack),1,3.84,2019-04-06 19:17:00,343 1st St, Los Angeles,CA,90001 +190993,Wired Headphones,2,11.99,2019-04-28 09:13:00,800 Ridge St, Atlanta,GA,30301 +190994,34in Ultrawide Monitor,1,379.99,2019-04-27 08:35:00,2 River St, New York City,NY,10001 +190995,Lightning Charging Cable,1,14.95,2019-04-08 19:34:00,851 Adams St, New York City,NY,10001 +190996,27in 4K Gaming Monitor,1,389.99,2019-04-11 16:35:00,163 Lake St, Austin,TX,73301 +190997,AA Batteries (4-pack),1,3.84,2019-04-02 12:47:00,312 8th St, New York City,NY,10001 +190998,AAA Batteries (4-pack),1,2.99,2019-04-22 15:03:00,640 Lakeview St, New York City,NY,10001 +190999,ThinkPad Laptop,1,999.99,2019-04-07 14:34:00,176 10th St, San Francisco,CA,94016 +191000,Apple Airpods Headphones,1,150.0,2019-04-11 20:09:00,646 Hill St, Boston,MA,02215 +191001,Macbook Pro Laptop,1,1700.0,2019-04-11 19:19:00,640 West St, Dallas,TX,75001 +191002,Wired Headphones,1,11.99,2019-04-02 19:58:00,571 Walnut St, New York City,NY,10001 +191003,Lightning Charging Cable,1,14.95,2019-04-12 20:05:00,651 8th St, Dallas,TX,75001 +191004,AA Batteries (4-pack),3,3.84,2019-04-20 22:34:00,978 10th St, San Francisco,CA,94016 +191005,34in Ultrawide Monitor,1,379.99,2019-04-15 18:48:00,444 Johnson St, New York City,NY,10001 +191006,AAA Batteries (4-pack),2,2.99,2019-04-02 16:14:00,437 Forest St, Los Angeles,CA,90001 +191007,AAA Batteries (4-pack),1,2.99,2019-04-04 15:17:00,62 10th St, San Francisco,CA,94016 +191008,USB-C Charging Cable,1,11.95,2019-04-07 20:56:00,329 8th St, Los Angeles,CA,90001 +191009,AAA Batteries (4-pack),1,2.99,2019-04-11 09:19:00,509 Sunset St, Los Angeles,CA,90001 +191010,USB-C Charging Cable,1,11.95,2019-04-29 13:58:00,714 Dogwood St, Portland,OR,97035 +191011,34in Ultrawide Monitor,1,379.99,2019-04-06 05:39:00,962 7th St, San Francisco,CA,94016 +191012,iPhone,1,700.0,2019-04-23 19:02:00,6 Forest St, San Francisco,CA,94016 +191012,Lightning Charging Cable,1,14.95,2019-04-23 19:02:00,6 Forest St, San Francisco,CA,94016 +191013,Lightning Charging Cable,1,14.95,2019-04-29 17:09:00,209 10th St, San Francisco,CA,94016 +191014,ThinkPad Laptop,1,999.99,2019-04-08 19:59:00,690 Walnut St, San Francisco,CA,94016 +191015,USB-C Charging Cable,1,11.95,2019-04-29 17:57:00,992 9th St, Seattle,WA,98101 +191016,27in FHD Monitor,1,149.99,2019-04-25 10:19:00,502 North St, Boston,MA,02215 +191017,Lightning Charging Cable,1,14.95,2019-04-03 11:37:00,933 Center St, Los Angeles,CA,90001 +191018,ThinkPad Laptop,1,999.99,2019-04-28 14:06:00,336 11th St, Dallas,TX,75001 +191019,Google Phone,1,600.0,2019-04-17 15:28:00,225 8th St, Seattle,WA,98101 +191019,USB-C Charging Cable,1,11.95,2019-04-17 15:28:00,225 8th St, Seattle,WA,98101 +191020,AAA Batteries (4-pack),1,2.99,2019-04-01 13:13:00,64 Spruce St, Atlanta,GA,30301 +191021,Apple Airpods Headphones,1,150.0,2019-04-06 02:04:00,434 12th St, San Francisco,CA,94016 +191022,USB-C Charging Cable,1,11.95,2019-04-30 15:28:00,175 1st St, San Francisco,CA,94016 +191023,AAA Batteries (4-pack),1,2.99,2019-04-22 07:27:00,75 11th St, Dallas,TX,75001 +191024,AAA Batteries (4-pack),1,2.99,2019-04-11 15:46:00,222 11th St, New York City,NY,10001 +191025,AAA Batteries (4-pack),1,2.99,2019-04-08 17:43:00,507 6th St, Los Angeles,CA,90001 +191026,AA Batteries (4-pack),3,3.84,2019-04-15 22:28:00,169 5th St, San Francisco,CA,94016 +191027,Lightning Charging Cable,1,14.95,2019-04-25 11:07:00,432 Highland St, San Francisco,CA,94016 +191028,Bose SoundSport Headphones,1,99.99,2019-04-27 17:58:00,730 Highland St, Los Angeles,CA,90001 +191029,34in Ultrawide Monitor,1,379.99,2019-04-05 13:09:00,510 Lake St, Los Angeles,CA,90001 +191030,Vareebadd Phone,1,400.0,2019-04-29 17:12:00,240 Church St, Dallas,TX,75001 +191030,USB-C Charging Cable,1,11.95,2019-04-29 17:12:00,240 Church St, Dallas,TX,75001 +191031,ThinkPad Laptop,1,999.99,2019-04-03 12:43:00,851 Pine St, Dallas,TX,75001 +191032,20in Monitor,1,109.99,2019-04-20 21:44:00,674 14th St, Atlanta,GA,30301 +191033,AAA Batteries (4-pack),2,2.99,2019-04-30 11:54:00,627 Meadow St, New York City,NY,10001 +191034,Wired Headphones,1,11.99,2019-04-13 07:03:00,679 Hill St, Portland,OR,97035 +191035,Flatscreen TV,1,300.0,2019-04-09 19:41:00,888 Cedar St, New York City,NY,10001 +191036,Lightning Charging Cable,1,14.95,2019-04-21 11:11:00,17 Park St, Portland,OR,97035 +191037,20in Monitor,1,109.99,2019-04-27 07:48:00,393 14th St, Seattle,WA,98101 +191038,Flatscreen TV,1,300.0,2019-04-05 23:47:00,494 11th St, San Francisco,CA,94016 +191039,AA Batteries (4-pack),1,3.84,2019-04-13 12:27:00,816 Dogwood St, San Francisco,CA,94016 +191040,ThinkPad Laptop,1,999.99,2019-04-23 21:15:00,830 Chestnut St, San Francisco,CA,94016 +191041,Macbook Pro Laptop,1,1700.0,2019-04-20 11:43:00,15 West St, San Francisco,CA,94016 +191042,Vareebadd Phone,1,400.0,2019-04-01 10:36:00,716 Lincoln St, San Francisco,CA,94016 +191042,USB-C Charging Cable,1,11.95,2019-04-01 10:36:00,716 Lincoln St, San Francisco,CA,94016 +191043,27in 4K Gaming Monitor,1,389.99,2019-04-12 16:40:00,499 Lake St, Los Angeles,CA,90001 +191044,Macbook Pro Laptop,1,1700.0,2019-04-06 09:51:00,503 Sunset St, Seattle,WA,98101 +191045,Lightning Charging Cable,1,14.95,2019-04-22 14:09:00,623 Dogwood St, San Francisco,CA,94016 +191046,AA Batteries (4-pack),1,3.84,2019-04-16 14:11:00,120 9th St, Boston,MA,02215 +191047,iPhone,1,700.0,2019-04-09 08:52:00,988 Elm St, Los Angeles,CA,90001 +191048,Flatscreen TV,1,300.0,2019-04-12 21:08:00,484 Lake St, Portland,OR,97035 +191049,LG Dryer,1,600.0,2019-04-14 14:45:00,523 West St, Dallas,TX,75001 +191050,iPhone,1,700.0,2019-04-01 17:43:00,67 Cedar St, New York City,NY,10001 +191051,AA Batteries (4-pack),1,3.84,2019-04-30 11:05:00,846 Jefferson St, Portland,OR,97035 +191052,Lightning Charging Cable,1,14.95,2019-04-26 14:55:00,555 Jefferson St, Portland,OR,97035 +191053,Bose SoundSport Headphones,1,99.99,2019-04-03 00:08:00,792 11th St, Portland,OR,97035 +191054,27in FHD Monitor,1,149.99,2019-04-09 22:00:00,93 Adams St, Seattle,WA,98101 +191055,USB-C Charging Cable,1,11.95,2019-04-09 15:02:00,538 Ridge St, Atlanta,GA,30301 +191056,Apple Airpods Headphones,1,150.0,2019-04-24 19:21:00,114 Lake St, Los Angeles,CA,90001 +191057,27in 4K Gaming Monitor,1,389.99,2019-04-25 18:51:00,955 Park St, Boston,MA,02215 +191058,Lightning Charging Cable,1,14.95,2019-04-17 09:02:00,876 11th St, Austin,TX,73301 +191059,27in FHD Monitor,1,149.99,2019-04-24 13:16:00,78 Meadow St, Atlanta,GA,30301 +191060,LG Dryer,1,600.0,2019-04-13 22:15:00,869 Chestnut St, Boston,MA,02215 +191061,20in Monitor,1,109.99,2019-04-25 21:05:00,395 West St, Los Angeles,CA,90001 +191062,Apple Airpods Headphones,1,150.0,2019-04-11 13:58:00,553 1st St, San Francisco,CA,94016 +191063,AAA Batteries (4-pack),3,2.99,2019-04-11 08:53:00,547 Walnut St, San Francisco,CA,94016 +191064,Macbook Pro Laptop,1,1700.0,2019-04-03 10:11:00,214 11th St, Atlanta,GA,30301 +191065,Wired Headphones,1,11.99,2019-04-05 10:18:00,87 Lincoln St, Seattle,WA,98101 +191066,AAA Batteries (4-pack),1,2.99,2019-04-19 22:31:00,814 Walnut St, New York City,NY,10001 +191067,Lightning Charging Cable,1,14.95,2019-04-21 07:07:00,501 River St, San Francisco,CA,94016 +191068,USB-C Charging Cable,1,11.95,2019-04-03 16:58:00,86 4th St, New York City,NY,10001 +191069,27in 4K Gaming Monitor,1,389.99,2019-04-27 15:11:00,666 8th St, New York City,NY,10001 +191070,USB-C Charging Cable,1,11.95,2019-04-10 10:14:00,261 6th St, Los Angeles,CA,90001 +191071,AA Batteries (4-pack),2,3.84,2019-04-01 20:22:00,772 Dogwood St, Portland,OR,97035 +191072,USB-C Charging Cable,1,11.95,2019-04-28 15:14:00,209 11th St, Seattle,WA,98101 +191073,AAA Batteries (4-pack),1,2.99,2019-04-20 14:51:00,464 Sunset St, New York City,NY,10001 +191074,Bose SoundSport Headphones,1,99.99,2019-04-09 08:20:00,293 8th St, Portland,OR,97035 +191075,Flatscreen TV,1,300.0,2019-04-16 11:00:00,954 2nd St, San Francisco,CA,94016 +191076,Wired Headphones,1,11.99,2019-04-15 10:52:00,396 8th St, Los Angeles,CA,90001 +191077,Apple Airpods Headphones,1,150.0,2019-04-22 20:29:00,789 South St, New York City,NY,10001 +191078,Vareebadd Phone,1,400.0,2019-04-12 11:40:00,655 Dogwood St, Portland,OR,97035 +191078,Bose SoundSport Headphones,1,99.99,2019-04-12 11:40:00,655 Dogwood St, Portland,OR,97035 +191079,27in 4K Gaming Monitor,1,389.99,2019-04-03 22:24:00,527 12th St, Austin,TX,73301 +191080,iPhone,1,700.0,2019-04-17 09:24:00,510 Lake St, San Francisco,CA,94016 +191081,27in FHD Monitor,1,149.99,2019-04-10 17:12:00,35 Cedar St, Los Angeles,CA,90001 +191082,AA Batteries (4-pack),1,3.84,2019-04-07 09:39:00,889 12th St, New York City,NY,10001 +191083,Apple Airpods Headphones,1,150.0,2019-05-01 01:02:00,955 13th St, Seattle,WA,98101 +191084,Lightning Charging Cable,1,14.95,2019-04-30 07:15:00,353 Hickory St, San Francisco,CA,94016 +191085,AA Batteries (4-pack),1,3.84,2019-04-17 17:33:00,43 Sunset St, Los Angeles,CA,90001 +191086,AA Batteries (4-pack),1,3.84,2019-04-03 10:44:00,981 Center St, Dallas,TX,75001 +191087,Flatscreen TV,1,300.0,2019-04-07 22:28:00,431 Sunset St, San Francisco,CA,94016 +191088,Apple Airpods Headphones,1,150.0,2019-04-30 17:36:00,759 Lincoln St, San Francisco,CA,94016 +191089,iPhone,1,700.0,2019-04-25 21:07:00,415 Forest St, Los Angeles,CA,90001 +191090,AAA Batteries (4-pack),2,2.99,2019-04-12 18:28:00,883 Main St, San Francisco,CA,94016 +191091,Wired Headphones,1,11.99,2019-04-17 14:25:00,380 Lakeview St, Portland,OR,97035 +191092,Wired Headphones,1,11.99,2019-04-14 15:39:00,570 Maple St, Boston,MA,02215 +191093,AA Batteries (4-pack),2,3.84,2019-04-16 09:26:00,535 Main St, Dallas,TX,75001 +191094,Lightning Charging Cable,1,14.95,2019-04-22 21:03:00,268 Lake St, Atlanta,GA,30301 +191095,Vareebadd Phone,1,400.0,2019-04-29 11:53:00,792 Adams St, New York City,NY,10001 +191096,AA Batteries (4-pack),1,3.84,2019-04-10 12:01:00,279 Lakeview St, Los Angeles,CA,90001 +191097,Lightning Charging Cable,1,14.95,2019-04-27 21:02:00,48 Washington St, Austin,TX,73301 +191098,Wired Headphones,1,11.99,2019-04-21 14:17:00,660 Chestnut St, Boston,MA,02215 +191099,AAA Batteries (4-pack),1,2.99,2019-04-29 02:14:00,934 Chestnut St, San Francisco,CA,94016 +191100,Lightning Charging Cable,1,14.95,2019-04-23 12:53:00,646 Lincoln St, Los Angeles,CA,90001 +191101,34in Ultrawide Monitor,1,379.99,2019-04-17 15:58:00,870 North St, San Francisco,CA,94016 +191102,Wired Headphones,1,11.99,2019-04-06 13:18:00,721 4th St, Los Angeles,CA,90001 +191103,Lightning Charging Cable,1,14.95,2019-04-19 21:52:00,953 9th St, San Francisco,CA,94016 +191104,Bose SoundSport Headphones,1,99.99,2019-04-11 20:00:00,936 1st St, Los Angeles,CA,90001 +191105,20in Monitor,1,109.99,2019-04-18 09:52:00,385 Highland St, Atlanta,GA,30301 +191106,34in Ultrawide Monitor,1,379.99,2019-04-11 15:21:00,497 8th St, Atlanta,GA,30301 +191107,iPhone,1,700.0,2019-04-16 10:37:00,583 4th St, Atlanta,GA,30301 +191108,Wired Headphones,1,11.99,2019-04-27 19:35:00,656 Washington St, Austin,TX,73301 +191109,AAA Batteries (4-pack),1,2.99,2019-04-17 19:09:00,115 Jackson St, Los Angeles,CA,90001 +191110,Bose SoundSport Headphones,1,99.99,2019-04-12 23:37:00,566 Dogwood St, Los Angeles,CA,90001 +191111,Lightning Charging Cable,1,14.95,2019-04-26 12:08:00,518 Highland St, Austin,TX,73301 +191112,LG Dryer,1,600.0,2019-04-15 20:08:00,252 4th St, Atlanta,GA,30301 +191113,27in 4K Gaming Monitor,1,389.99,2019-04-17 14:44:00,592 Main St, New York City,NY,10001 +191114,AAA Batteries (4-pack),1,2.99,2019-04-11 10:26:00,90 9th St, Seattle,WA,98101 +191115,Flatscreen TV,1,300.0,2019-04-11 05:25:00,605 5th St, New York City,NY,10001 +191116,AAA Batteries (4-pack),1,2.99,2019-04-23 15:35:00,54 Sunset St, Dallas,TX,75001 +191117,Wired Headphones,1,11.99,2019-04-12 13:07:00,639 Lincoln St, San Francisco,CA,94016 +191118,AA Batteries (4-pack),1,3.84,2019-04-15 21:27:00,536 Elm St, Los Angeles,CA,90001 +191119,AAA Batteries (4-pack),1,2.99,2019-04-20 20:57:00,273 Park St, Seattle,WA,98101 +191120,34in Ultrawide Monitor,1,379.99,2019-04-13 13:15:00,890 South St, Seattle,WA,98101 +191121,Macbook Pro Laptop,1,1700.0,2019-04-24 02:05:00,77 Chestnut St, Los Angeles,CA,90001 +191122,34in Ultrawide Monitor,1,379.99,2019-04-10 13:34:00,284 Sunset St, Seattle,WA,98101 +191123,USB-C Charging Cable,1,11.95,2019-04-22 13:05:00,182 1st St, New York City,NY,10001 +191124,iPhone,1,700.0,2019-04-07 08:28:00,416 Cedar St, Austin,TX,73301 +191125,USB-C Charging Cable,1,11.95,2019-04-02 16:36:00,276 Madison St, Los Angeles,CA,90001 +191126,AA Batteries (4-pack),2,3.84,2019-04-25 16:43:00,254 Lake St, Boston,MA,02215 +191127,Wired Headphones,1,11.99,2019-04-27 22:57:00,369 Lake St, Atlanta,GA,30301 +191128,AAA Batteries (4-pack),1,2.99,2019-04-24 23:01:00,553 Ridge St, Los Angeles,CA,90001 +191129,AAA Batteries (4-pack),1,2.99,2019-04-11 02:06:00,306 Adams St, Los Angeles,CA,90001 +191130,Wired Headphones,1,11.99,2019-04-09 12:44:00,345 Main St, San Francisco,CA,94016 +191131,AAA Batteries (4-pack),2,2.99,2019-04-18 18:32:00,747 Cedar St, Seattle,WA,98101 +191132,Bose SoundSport Headphones,1,99.99,2019-04-07 21:47:00,852 South St, San Francisco,CA,94016 +191132,USB-C Charging Cable,1,11.95,2019-04-07 21:47:00,852 South St, San Francisco,CA,94016 +191133,Lightning Charging Cable,2,14.95,2019-04-06 14:48:00,303 West St, Atlanta,GA,30301 +191134,20in Monitor,2,109.99,2019-04-16 12:33:00,617 Sunset St, New York City,NY,10001 +191135,Bose SoundSport Headphones,1,99.99,2019-04-26 08:09:00,782 Forest St, San Francisco,CA,94016 +191136,Lightning Charging Cable,2,14.95,2019-04-09 18:23:00,651 Lincoln St, Portland,OR,97035 +191137,Lightning Charging Cable,1,14.95,2019-04-13 14:42:00,338 Madison St, Seattle,WA,98101 +191138,USB-C Charging Cable,1,11.95,2019-04-13 12:02:00,511 Maple St, Austin,TX,73301 +191139,27in 4K Gaming Monitor,1,389.99,2019-04-21 18:46:00,840 11th St, Los Angeles,CA,90001 +191140,Lightning Charging Cable,1,14.95,2019-04-28 13:21:00,616 5th St, Boston,MA,02215 +191141,Apple Airpods Headphones,1,150.0,2019-04-28 20:29:00,994 Forest St, Dallas,TX,75001 +191142,27in 4K Gaming Monitor,1,389.99,2019-04-01 21:44:00,255 Cherry St, Portland,OR,97035 +191143,AAA Batteries (4-pack),1,2.99,2019-04-02 19:00:00,669 Meadow St, Dallas,TX,75001 +191144,Wired Headphones,1,11.99,2019-04-12 03:21:00,3 Lakeview St, Boston,MA,02215 +191145,iPhone,1,700.0,2019-04-14 22:08:00,577 9th St, Atlanta,GA,30301 +191146,Wired Headphones,1,11.99,2019-04-01 13:10:00,866 9th St, San Francisco,CA,94016 +191147,AAA Batteries (4-pack),2,2.99,2019-04-14 13:55:00,494 Forest St, Portland,OR,97035 +191148,Lightning Charging Cable,1,14.95,2019-04-11 10:07:00,758 7th St, Atlanta,GA,30301 +191149,27in FHD Monitor,1,149.99,2019-04-10 20:02:00,828 Cherry St, Dallas,TX,75001 +191150,AA Batteries (4-pack),4,3.84,2019-04-06 18:54:00,123 Lakeview St, San Francisco,CA,94016 +191151,Lightning Charging Cable,1,14.95,2019-04-17 13:32:00,664 Elm St, San Francisco,CA,94016 +191152,27in FHD Monitor,1,149.99,2019-04-17 16:12:00,479 Hill St, New York City,NY,10001 +191153,Flatscreen TV,1,300.0,2019-04-02 11:10:00,395 Jackson St, Atlanta,GA,30301 +191154,iPhone,1,700.0,2019-04-22 18:04:00,459 South St, Dallas,TX,75001 +191155,Google Phone,1,600.0,2019-04-30 13:53:00,733 Highland St, San Francisco,CA,94016 +191156,Wired Headphones,1,11.99,2019-05-01 00:03:00,757 Meadow St, Atlanta,GA,30301 +191157,Lightning Charging Cable,1,14.95,2019-04-06 15:53:00,725 Hill St, San Francisco,CA,94016 +191158,USB-C Charging Cable,1,11.95,2019-04-27 23:51:00,732 10th St, Los Angeles,CA,90001 +191158,27in FHD Monitor,1,149.99,2019-04-27 23:51:00,732 10th St, Los Angeles,CA,90001 +191159,Lightning Charging Cable,1,14.95,2019-04-12 10:41:00,641 Church St, Dallas,TX,75001 +191160,Lightning Charging Cable,1,14.95,2019-04-27 12:38:00,763 Maple St, Los Angeles,CA,90001 +191160,Bose SoundSport Headphones,1,99.99,2019-04-27 12:38:00,763 Maple St, Los Angeles,CA,90001 +191161,AAA Batteries (4-pack),3,2.99,2019-04-01 11:26:00,864 Pine St, Los Angeles,CA,90001 +191162,iPhone,1,700.0,2019-04-15 18:47:00,58 Spruce St, Boston,MA,02215 +191162,AAA Batteries (4-pack),1,2.99,2019-04-15 18:47:00,58 Spruce St, Boston,MA,02215 +191163,AAA Batteries (4-pack),1,2.99,2019-04-05 19:21:00,698 Willow St, Atlanta,GA,30301 +191164,27in 4K Gaming Monitor,1,389.99,2019-04-04 21:44:00,431 Adams St, Los Angeles,CA,90001 +191165,Wired Headphones,2,11.99,2019-04-13 15:49:00,173 Madison St, Los Angeles,CA,90001 +191166,AA Batteries (4-pack),1,3.84,2019-04-11 19:59:00,388 Highland St, Seattle,WA,98101 +191167,27in 4K Gaming Monitor,1,389.99,2019-04-22 13:32:00,354 6th St, Dallas,TX,75001 +191168,Lightning Charging Cable,1,14.95,2019-04-02 16:35:00,794 Cedar St, Atlanta,GA,30301 +191169,Lightning Charging Cable,1,14.95,2019-04-10 20:54:00,349 Lincoln St, San Francisco,CA,94016 +191170,AA Batteries (4-pack),2,3.84,2019-04-07 23:55:00,763 6th St, Los Angeles,CA,90001 +191171,Lightning Charging Cable,1,14.95,2019-04-16 16:11:00,25 Madison St, Portland,OR,97035 +191172,Bose SoundSport Headphones,1,99.99,2019-04-14 12:07:00,71 West St, Los Angeles,CA,90001 +191173,USB-C Charging Cable,1,11.95,2019-04-02 13:48:00,931 Walnut St, Los Angeles,CA,90001 +191174,ThinkPad Laptop,1,999.99,2019-04-04 19:36:00,516 9th St, San Francisco,CA,94016 +191175,USB-C Charging Cable,1,11.95,2019-04-05 22:44:00,812 1st St, Austin,TX,73301 +191176,AAA Batteries (4-pack),1,2.99,2019-04-19 12:32:00,485 Lincoln St, Los Angeles,CA,90001 +191177,27in FHD Monitor,1,149.99,2019-04-08 15:15:00,671 Madison St, San Francisco,CA,94016 +191178,iPhone,1,700.0,2019-04-05 19:06:00,119 Lake St, Los Angeles,CA,90001 +191179,27in FHD Monitor,1,149.99,2019-04-28 18:07:00,903 Church St, Boston,MA,02215 +191180,Lightning Charging Cable,1,14.95,2019-04-13 19:01:00,722 Adams St, Seattle,WA,98101 +191181,Wired Headphones,1,11.99,2019-04-07 22:11:00,670 Walnut St, San Francisco,CA,94016 +191182,Bose SoundSport Headphones,1,99.99,2019-04-13 17:11:00,292 Spruce St, Boston,MA,02215 +191183,Lightning Charging Cable,1,14.95,2019-04-30 19:33:00,45 14th St, Portland,OR,97035 +191184,AAA Batteries (4-pack),2,2.99,2019-04-17 10:22:00,339 13th St, Los Angeles,CA,90001 +191185,AAA Batteries (4-pack),1,2.99,2019-04-19 20:28:00,392 14th St, San Francisco,CA,94016 +191186,Wired Headphones,1,11.99,2019-04-24 00:46:00,177 Cherry St, New York City,NY,10001 +191187,34in Ultrawide Monitor,1,379.99,2019-04-09 09:17:00,135 River St, San Francisco,CA,94016 +191188,Bose SoundSport Headphones,1,99.99,2019-04-29 11:08:00,187 10th St, Boston,MA,02215 +191189,Apple Airpods Headphones,1,150.0,2019-04-10 13:46:00,132 5th St, Portland,OR,97035 +191190,Apple Airpods Headphones,1,150.0,2019-04-24 07:17:00,276 Jefferson St, Austin,TX,73301 +191191,Apple Airpods Headphones,1,150.0,2019-04-23 13:54:00,105 Jefferson St, Los Angeles,CA,90001 +191192,27in FHD Monitor,1,149.99,2019-04-20 14:41:00,180 Park St, New York City,NY,10001 +191193,iPhone,1,700.0,2019-04-21 22:37:00,721 Elm St, New York City,NY,10001 +191193,Lightning Charging Cable,2,14.95,2019-04-21 22:37:00,721 Elm St, New York City,NY,10001 +191193,Apple Airpods Headphones,1,150.0,2019-04-21 22:37:00,721 Elm St, New York City,NY,10001 +191194,USB-C Charging Cable,1,11.95,2019-04-15 10:57:00,927 Adams St, Portland,OR,97035 +191195,Apple Airpods Headphones,1,150.0,2019-04-22 16:44:00,711 5th St, San Francisco,CA,94016 +191196,AAA Batteries (4-pack),1,2.99,2019-04-04 15:46:00,100 Jefferson St, San Francisco,CA,94016 +191197,Wired Headphones,1,11.99,2019-04-07 18:22:00,452 Center St, Portland,OR,97035 +191198,AA Batteries (4-pack),1,3.84,2019-04-17 07:40:00,192 Lincoln St, Portland,OR,97035 +191199,AAA Batteries (4-pack),2,2.99,2019-04-09 10:56:00,530 Adams St, Atlanta,GA,30301 +191200,AA Batteries (4-pack),1,3.84,2019-04-04 10:02:00,451 12th St, Dallas,TX,75001 +191201,Lightning Charging Cable,1,14.95,2019-04-23 15:24:00,466 11th St, San Francisco,CA,94016 +191202,ThinkPad Laptop,1,999.99,2019-04-26 13:43:00,6 11th St, Austin,TX,73301 +191203,Apple Airpods Headphones,1,150.0,2019-04-17 19:18:00,504 Cherry St, Seattle,WA,98101 +191204,Lightning Charging Cable,1,14.95,2019-04-07 19:15:00,441 9th St, Los Angeles,CA,90001 +191205,Lightning Charging Cable,1,14.95,2019-04-05 18:07:00,809 Sunset St, San Francisco,CA,94016 +191206,34in Ultrawide Monitor,1,379.99,2019-04-29 14:35:00,747 1st St, San Francisco,CA,94016 +191207,AA Batteries (4-pack),4,3.84,2019-04-04 18:08:00,811 Adams St, Boston,MA,02215 +191208,Wired Headphones,1,11.99,2019-04-30 10:12:00,398 13th St, San Francisco,CA,94016 +191209,LG Washing Machine,1,600.0,2019-04-24 21:46:00,48 Cedar St, Atlanta,GA,30301 +191210,Bose SoundSport Headphones,1,99.99,2019-04-07 10:05:00,405 Meadow St, San Francisco,CA,94016 +191211,Wired Headphones,2,11.99,2019-04-09 12:45:00,397 Main St, Portland,OR,97035 +191212,AA Batteries (4-pack),1,3.84,2019-04-05 10:54:00,742 Adams St, Boston,MA,02215 +191213,27in 4K Gaming Monitor,1,389.99,2019-04-02 21:24:00,18 13th St, San Francisco,CA,94016 +191214,AA Batteries (4-pack),1,3.84,2019-04-12 23:16:00,684 Madison St, Portland,OR,97035 +191215,Apple Airpods Headphones,1,150.0,2019-04-29 13:11:00,786 Willow St, Dallas,TX,75001 +191216,ThinkPad Laptop,1,999.99,2019-04-12 14:09:00,606 Hill St, Portland,ME,04101 +191217,Apple Airpods Headphones,1,150.0,2019-04-02 08:26:00,16 4th St, Austin,TX,73301 +191218,27in FHD Monitor,1,149.99,2019-04-05 10:21:00,427 Church St, Seattle,WA,98101 +191219,USB-C Charging Cable,1,11.95,2019-04-23 21:26:00,141 Chestnut St, Los Angeles,CA,90001 +191220,AA Batteries (4-pack),1,3.84,2019-04-15 15:12:00,877 Washington St, San Francisco,CA,94016 +191221,AAA Batteries (4-pack),2,2.99,2019-04-09 16:50:00,283 Spruce St, San Francisco,CA,94016 +191222,Google Phone,1,600.0,2019-04-16 17:42:00,93 13th St, New York City,NY,10001 +191223,AA Batteries (4-pack),2,3.84,2019-04-29 10:43:00,224 8th St, Dallas,TX,75001 +191224,AAA Batteries (4-pack),1,2.99,2019-04-14 18:19:00,619 Cedar St, Austin,TX,73301 +191225,Wired Headphones,1,11.99,2019-04-11 08:38:00,713 Maple St, Seattle,WA,98101 +191226,Wired Headphones,1,11.99,2019-04-15 15:25:00,214 Forest St, Portland,ME,04101 +191227,Bose SoundSport Headphones,1,99.99,2019-04-02 00:53:00,887 Elm St, San Francisco,CA,94016 +191228,Flatscreen TV,1,300.0,2019-04-19 16:49:00,279 7th St, San Francisco,CA,94016 +191229,Wired Headphones,1,11.99,2019-04-25 13:46:00,946 Highland St, Seattle,WA,98101 +191230,Lightning Charging Cable,1,14.95,2019-04-25 13:47:00,739 Hill St, New York City,NY,10001 +191231,Apple Airpods Headphones,1,150.0,2019-04-10 18:58:00,867 Washington St, Los Angeles,CA,90001 +191232,Bose SoundSport Headphones,1,99.99,2019-04-19 18:50:00,398 11th St, Austin,TX,73301 +191233,27in FHD Monitor,1,149.99,2019-04-18 23:37:00,960 North St, Austin,TX,73301 +191234,AAA Batteries (4-pack),2,2.99,2019-04-21 20:04:00,130 West St, Boston,MA,02215 +191235,Macbook Pro Laptop,1,1700.0,2019-04-07 08:10:00,505 Pine St, San Francisco,CA,94016 +191236,27in 4K Gaming Monitor,1,389.99,2019-04-01 16:03:00,582 1st St, Atlanta,GA,30301 +191237,Flatscreen TV,1,300.0,2019-04-07 09:08:00,863 Meadow St, Atlanta,GA,30301 +191238,AAA Batteries (4-pack),1,2.99,2019-04-28 19:49:00,317 Johnson St, San Francisco,CA,94016 +191239,Wired Headphones,1,11.99,2019-04-26 11:52:00,758 10th St, New York City,NY,10001 +191240,Google Phone,1,600.0,2019-04-07 08:03:00,293 River St, San Francisco,CA,94016 +191241,Lightning Charging Cable,1,14.95,2019-04-19 20:33:00,786 Washington St, Portland,OR,97035 +191242,AA Batteries (4-pack),1,3.84,2019-04-14 15:53:00,298 Main St, New York City,NY,10001 +191243,27in 4K Gaming Monitor,1,389.99,2019-04-30 14:50:00,645 Johnson St, San Francisco,CA,94016 +191244,Apple Airpods Headphones,1,150.0,2019-04-11 01:32:00,355 Highland St, Austin,TX,73301 +191245,Bose SoundSport Headphones,1,99.99,2019-04-01 12:18:00,936 6th St, New York City,NY,10001 +191246,USB-C Charging Cable,1,11.95,2019-04-12 13:11:00,157 Spruce St, San Francisco,CA,94016 +191247,Lightning Charging Cable,1,14.95,2019-04-29 18:12:00,123 Dogwood St, San Francisco,CA,94016 +191248,20in Monitor,1,109.99,2019-04-21 13:49:00,796 1st St, Portland,OR,97035 +191249,27in FHD Monitor,1,149.99,2019-04-06 12:02:00,43 River St, Seattle,WA,98101 +191250,Wired Headphones,1,11.99,2019-04-30 23:33:00,408 West St, New York City,NY,10001 +191251,Google Phone,1,600.0,2019-04-17 23:38:00,440 Jackson St, Portland,OR,97035 +191251,USB-C Charging Cable,1,11.95,2019-04-17 23:38:00,440 Jackson St, Portland,OR,97035 +191252,ThinkPad Laptop,1,999.99,2019-04-26 16:54:00,989 Elm St, Los Angeles,CA,90001 +191253,Wired Headphones,2,11.99,2019-04-18 19:56:00,763 Willow St, Austin,TX,73301 +191254,27in FHD Monitor,1,149.99,2019-04-14 15:56:00,905 Lake St, San Francisco,CA,94016 +191255,USB-C Charging Cable,1,11.95,2019-04-09 11:39:00,463 Johnson St, Portland,OR,97035 +191256,USB-C Charging Cable,1,11.95,2019-04-18 11:10:00,238 Spruce St, Los Angeles,CA,90001 +191257,ThinkPad Laptop,1,999.99,2019-04-28 01:34:00,458 Lakeview St, New York City,NY,10001 +191258,USB-C Charging Cable,1,11.95,2019-04-30 12:21:00,499 12th St, San Francisco,CA,94016 +191259,AA Batteries (4-pack),1,3.84,2019-04-24 21:41:00,187 North St, Atlanta,GA,30301 +191260,AAA Batteries (4-pack),6,2.99,2019-04-17 15:06:00,843 Cedar St, Los Angeles,CA,90001 +191261,USB-C Charging Cable,2,11.95,2019-04-06 18:28:00,111 Madison St, San Francisco,CA,94016 +191262,AA Batteries (4-pack),2,3.84,2019-04-25 19:19:00,380 7th St, Los Angeles,CA,90001 +191262,20in Monitor,1,109.99,2019-04-25 19:19:00,380 7th St, Los Angeles,CA,90001 +191263,USB-C Charging Cable,1,11.95,2019-04-17 22:34:00,539 7th St, Boston,MA,02215 +191264,AAA Batteries (4-pack),2,2.99,2019-04-16 16:31:00,872 Jackson St, Boston,MA,02215 +191265,Lightning Charging Cable,1,14.95,2019-04-08 13:18:00,653 Highland St, New York City,NY,10001 +191266,AA Batteries (4-pack),1,3.84,2019-04-20 09:38:00,43 2nd St, Los Angeles,CA,90001 +191267,27in 4K Gaming Monitor,1,389.99,2019-04-24 12:06:00,974 South St, Dallas,TX,75001 +191268,34in Ultrawide Monitor,1,379.99,2019-04-25 02:27:00,641 Johnson St, San Francisco,CA,94016 +191269,Google Phone,1,600.0,2019-04-12 00:28:00,223 13th St, San Francisco,CA,94016 +191270,AA Batteries (4-pack),1,3.84,2019-04-11 13:27:00,294 South St, Dallas,TX,75001 +191271,AA Batteries (4-pack),1,3.84,2019-04-26 10:51:00,963 Pine St, Boston,MA,02215 +191272,27in FHD Monitor,1,149.99,2019-04-20 09:43:00,750 West St, Seattle,WA,98101 +191273,USB-C Charging Cable,1,11.95,2019-04-23 13:45:00,613 Pine St, San Francisco,CA,94016 +191274,20in Monitor,1,109.99,2019-04-13 20:18:00,20 Lincoln St, Atlanta,GA,30301 +191275,USB-C Charging Cable,1,11.95,2019-04-14 15:05:00,437 10th St, San Francisco,CA,94016 +191276,Wired Headphones,1,11.99,2019-04-14 17:48:00,475 Hill St, Los Angeles,CA,90001 +191277,AA Batteries (4-pack),1,3.84,2019-04-03 19:15:00,387 Willow St, San Francisco,CA,94016 +191278,USB-C Charging Cable,1,11.95,2019-04-05 15:12:00,24 Lakeview St, Portland,ME,04101 +191279,AA Batteries (4-pack),2,3.84,2019-04-16 11:55:00,600 Walnut St, San Francisco,CA,94016 +191280,Flatscreen TV,1,300.0,2019-04-16 17:57:00,3 Park St, New York City,NY,10001 +191281,AA Batteries (4-pack),3,3.84,2019-04-30 15:05:00,892 5th St, Los Angeles,CA,90001 +191282,iPhone,1,700.0,2019-04-29 18:28:00,994 Ridge St, San Francisco,CA,94016 +191283,Lightning Charging Cable,1,14.95,2019-04-27 07:51:00,749 14th St, San Francisco,CA,94016 +191284,AAA Batteries (4-pack),1,2.99,2019-04-02 12:19:00,923 South St, Los Angeles,CA,90001 +191285,Lightning Charging Cable,1,14.95,2019-04-03 17:36:00,498 Willow St, Seattle,WA,98101 +191286,Wired Headphones,1,11.99,2019-04-26 10:46:00,454 Madison St, Dallas,TX,75001 +191287,AAA Batteries (4-pack),1,2.99,2019-04-18 18:13:00,885 Lakeview St, San Francisco,CA,94016 +191288,AAA Batteries (4-pack),1,2.99,2019-04-16 14:42:00,568 Forest St, Boston,MA,02215 +191289,USB-C Charging Cable,1,11.95,2019-04-03 08:35:00,79 Madison St, Boston,MA,02215 +191290,34in Ultrawide Monitor,1,379.99,2019-04-17 13:33:00,769 Madison St, Boston,MA,02215 +191291,USB-C Charging Cable,1,11.95,2019-04-01 22:57:00,860 Madison St, San Francisco,CA,94016 +191292,27in FHD Monitor,1,149.99,2019-04-04 02:10:00,964 Highland St, Dallas,TX,75001 +191293,Bose SoundSport Headphones,1,99.99,2019-04-23 11:18:00,229 Willow St, San Francisco,CA,94016 +191294,Flatscreen TV,1,300.0,2019-04-05 19:44:00,797 West St, San Francisco,CA,94016 +191295,Macbook Pro Laptop,1,1700.0,2019-04-02 11:02:00,703 Spruce St, Los Angeles,CA,90001 +191296,AAA Batteries (4-pack),2,2.99,2019-04-20 11:25:00,894 Willow St, Boston,MA,02215 +191297,Lightning Charging Cable,1,14.95,2019-04-29 20:24:00,595 Dogwood St, New York City,NY,10001 +191298,AA Batteries (4-pack),1,3.84,2019-04-15 15:30:00,55 Elm St, Los Angeles,CA,90001 +191299,USB-C Charging Cable,2,11.95,2019-04-06 20:06:00,849 Main St, San Francisco,CA,94016 +191300,AA Batteries (4-pack),1,3.84,2019-04-13 14:57:00,282 Elm St, Austin,TX,73301 +191301,Lightning Charging Cable,1,14.95,2019-04-02 18:45:00,20 Chestnut St, Boston,MA,02215 +191302,34in Ultrawide Monitor,1,379.99,2019-04-07 15:53:00,441 Pine St, New York City,NY,10001 +191303,AAA Batteries (4-pack),1,2.99,2019-04-28 12:17:00,809 4th St, Atlanta,GA,30301 +191304,Lightning Charging Cable,1,14.95,2019-04-19 12:51:00,152 Meadow St, Austin,TX,73301 +191305,Wired Headphones,1,11.99,2019-04-24 18:29:00,370 Adams St, San Francisco,CA,94016 +191306,Apple Airpods Headphones,1,150.0,2019-04-22 08:14:00,689 Hill St, Portland,OR,97035 +191307,AA Batteries (4-pack),1,3.84,2019-04-26 21:39:00,544 Elm St, San Francisco,CA,94016 +191308,Google Phone,1,600.0,2019-04-28 13:04:00,606 Hickory St, Boston,MA,02215 +191309,Wired Headphones,1,11.99,2019-04-30 09:42:00,950 Washington St, Boston,MA,02215 +191310,20in Monitor,1,109.99,2019-04-03 13:47:00,435 Highland St, Austin,TX,73301 +191311,Lightning Charging Cable,1,14.95,2019-04-17 11:39:00,622 Main St, Seattle,WA,98101 +191311,Apple Airpods Headphones,1,150.0,2019-04-17 11:39:00,622 Main St, Seattle,WA,98101 +191312,27in FHD Monitor,1,149.99,2019-04-25 09:51:00,839 Hickory St, Atlanta,GA,30301 +191313,AAA Batteries (4-pack),2,2.99,2019-04-28 09:58:00,159 14th St, Austin,TX,73301 +191314,Flatscreen TV,1,300.0,2019-04-24 18:44:00,298 Jackson St, Los Angeles,CA,90001 +191315,Bose SoundSport Headphones,1,99.99,2019-04-14 21:08:00,217 Church St, Boston,MA,02215 +191316,27in 4K Gaming Monitor,1,389.99,2019-04-12 19:57:00,980 4th St, New York City,NY,10001 +191317,34in Ultrawide Monitor,1,379.99,2019-04-04 22:11:00,988 4th St, Atlanta,GA,30301 +191318,Wired Headphones,1,11.99,2019-04-24 21:42:00,2 Church St, San Francisco,CA,94016 +191319,AA Batteries (4-pack),2,3.84,2019-04-20 22:30:00,137 Highland St, San Francisco,CA,94016 +191320,AA Batteries (4-pack),1,3.84,2019-04-07 17:33:00,538 9th St, Los Angeles,CA,90001 +191321,27in 4K Gaming Monitor,1,389.99,2019-04-14 07:51:00,316 Willow St, Dallas,TX,75001 +191322,Lightning Charging Cable,2,14.95,2019-04-19 09:58:00,265 Walnut St, New York City,NY,10001 +191323,AA Batteries (4-pack),2,3.84,2019-04-11 08:54:00,979 Lincoln St, San Francisco,CA,94016 +191324,Wired Headphones,1,11.99,2019-04-14 10:59:00,715 Jackson St, New York City,NY,10001 +191325,Apple Airpods Headphones,1,150.0,2019-04-02 16:15:00,584 Elm St, Dallas,TX,75001 +191326,34in Ultrawide Monitor,1,379.99,2019-04-03 08:09:00,24 11th St, New York City,NY,10001 +191327,Vareebadd Phone,1,400.0,2019-04-01 18:17:00,496 Walnut St, San Francisco,CA,94016 +191328,AAA Batteries (4-pack),5,2.99,2019-04-12 14:34:00,503 Park St, Los Angeles,CA,90001 +191329,27in FHD Monitor,1,149.99,2019-04-08 13:09:00,322 7th St, San Francisco,CA,94016 +191330,USB-C Charging Cable,1,11.95,2019-04-21 16:26:00,131 Hill St, Dallas,TX,75001 +191331,USB-C Charging Cable,1,11.95,2019-04-19 20:54:00,725 2nd St, Austin,TX,73301 +191332,Wired Headphones,1,11.99,2019-04-12 15:41:00,555 2nd St, San Francisco,CA,94016 +191333,27in 4K Gaming Monitor,1,389.99,2019-04-29 10:18:00,965 Lakeview St, Los Angeles,CA,90001 +191334,AA Batteries (4-pack),1,3.84,2019-04-01 08:46:00,295 9th St, Dallas,TX,75001 +191335,iPhone,1,700.0,2019-04-08 12:58:00,122 12th St, Seattle,WA,98101 +191336,Lightning Charging Cable,1,14.95,2019-04-30 21:41:00,962 Center St, Los Angeles,CA,90001 +191337,Bose SoundSport Headphones,1,99.99,2019-04-24 15:00:00,492 9th St, Dallas,TX,75001 +191338,AA Batteries (4-pack),1,3.84,2019-04-20 10:13:00,86 Cherry St, Atlanta,GA,30301 +191339,Google Phone,1,600.0,2019-04-12 10:43:00,757 2nd St, Boston,MA,02215 +191340,USB-C Charging Cable,1,11.95,2019-04-05 18:57:00,482 Jefferson St, San Francisco,CA,94016 +191341,USB-C Charging Cable,1,11.95,2019-04-16 09:53:00,369 7th St, San Francisco,CA,94016 +191342,Apple Airpods Headphones,1,150.0,2019-04-07 20:58:00,292 Meadow St, Seattle,WA,98101 +191343,AA Batteries (4-pack),2,3.84,2019-04-17 10:12:00,448 Sunset St, Los Angeles,CA,90001 +191344,AA Batteries (4-pack),1,3.84,2019-04-20 00:37:00,798 6th St, San Francisco,CA,94016 +191345,AAA Batteries (4-pack),1,2.99,2019-04-20 19:50:00,745 2nd St, San Francisco,CA,94016 +191346,Lightning Charging Cable,2,14.95,2019-04-16 06:15:00,703 14th St, Dallas,TX,75001 +191347,Bose SoundSport Headphones,1,99.99,2019-04-21 18:32:00,110 Johnson St, San Francisco,CA,94016 +191348,AA Batteries (4-pack),1,3.84,2019-04-12 12:16:00,9 Dogwood St, San Francisco,CA,94016 +191349,34in Ultrawide Monitor,1,379.99,2019-04-02 16:49:00,885 Elm St, Portland,ME,04101 +191350,Wired Headphones,1,11.99,2019-04-06 10:54:00,569 14th St, Atlanta,GA,30301 +191351,AAA Batteries (4-pack),1,2.99,2019-04-25 16:24:00,481 Johnson St, Dallas,TX,75001 +191352,Macbook Pro Laptop,1,1700.0,2019-04-24 01:10:00,536 Highland St, Atlanta,GA,30301 +191353,USB-C Charging Cable,1,11.95,2019-04-26 13:30:00,774 Willow St, Atlanta,GA,30301 +191354,USB-C Charging Cable,1,11.95,2019-04-24 12:44:00,115 Lincoln St, Los Angeles,CA,90001 +191355,Wired Headphones,1,11.99,2019-04-24 17:22:00,535 Church St, Seattle,WA,98101 +191356,Lightning Charging Cable,2,14.95,2019-04-28 10:36:00,499 Forest St, Seattle,WA,98101 +191357,AA Batteries (4-pack),3,3.84,2019-04-13 17:55:00,108 14th St, Seattle,WA,98101 +191358,Apple Airpods Headphones,1,150.0,2019-04-15 15:35:00,799 Main St, Austin,TX,73301 +191359,AAA Batteries (4-pack),4,2.99,2019-04-28 21:19:00,78 Park St, New York City,NY,10001 +191360,Bose SoundSport Headphones,1,99.99,2019-04-17 12:25:00,47 West St, Dallas,TX,75001 +191361,Wired Headphones,1,11.99,2019-04-18 14:59:00,84 Spruce St, Austin,TX,73301 +191362,Lightning Charging Cable,1,14.95,2019-04-22 16:59:00,804 4th St, Los Angeles,CA,90001 +191363,Wired Headphones,1,11.99,2019-04-30 12:47:00,748 Sunset St, Portland,ME,04101 +191364,LG Washing Machine,1,600.0,2019-04-24 16:56:00,274 Lake St, San Francisco,CA,94016 +191365,Lightning Charging Cable,1,14.95,2019-04-19 18:46:00,377 8th St, Portland,OR,97035 +191366,AA Batteries (4-pack),2,3.84,2019-04-14 03:56:00,173 8th St, Los Angeles,CA,90001 +191367,AA Batteries (4-pack),1,3.84,2019-04-10 18:21:00,201 Jackson St, Atlanta,GA,30301 +191368,AA Batteries (4-pack),1,3.84,2019-04-17 07:38:00,771 North St, San Francisco,CA,94016 +191368,Lightning Charging Cable,1,14.95,2019-04-17 07:38:00,771 North St, San Francisco,CA,94016 +191369,34in Ultrawide Monitor,1,379.99,2019-04-13 08:17:00,853 Highland St, New York City,NY,10001 +191370,Bose SoundSport Headphones,1,99.99,2019-04-04 19:20:00,581 Sunset St, Boston,MA,02215 +191371,34in Ultrawide Monitor,1,379.99,2019-04-23 08:59:00,733 Chestnut St, Atlanta,GA,30301 +191372,Lightning Charging Cable,1,14.95,2019-04-07 05:52:00,227 Johnson St, New York City,NY,10001 +191373,Google Phone,1,600.0,2019-04-04 13:23:00,245 Johnson St, San Francisco,CA,94016 +191374,Lightning Charging Cable,1,14.95,2019-04-26 18:08:00,206 Lincoln St, Los Angeles,CA,90001 +191375,USB-C Charging Cable,1,11.95,2019-04-03 15:39:00,667 11th St, Portland,OR,97035 +191376,AAA Batteries (4-pack),4,2.99,2019-04-22 10:36:00,843 Jefferson St, Los Angeles,CA,90001 +191377,USB-C Charging Cable,1,11.95,2019-04-22 12:35:00,941 4th St, New York City,NY,10001 +191378,USB-C Charging Cable,1,11.95,2019-04-13 14:44:00,106 Wilson St, Atlanta,GA,30301 +191379,Lightning Charging Cable,1,14.95,2019-04-12 12:27:00,351 Washington St, Portland,OR,97035 +191380,USB-C Charging Cable,1,11.95,2019-04-02 15:31:00,281 North St, Seattle,WA,98101 +191381,AA Batteries (4-pack),1,3.84,2019-04-08 20:21:00,55 8th St, Los Angeles,CA,90001 +191382,Google Phone,1,600.0,2019-04-29 00:13:00,796 6th St, San Francisco,CA,94016 +191383,AAA Batteries (4-pack),1,2.99,2019-04-08 20:44:00,70 13th St, New York City,NY,10001 +191384,Lightning Charging Cable,1,14.95,2019-04-27 10:38:00,430 6th St, New York City,NY,10001 +191385,USB-C Charging Cable,1,11.95,2019-04-01 12:34:00,144 Chestnut St, Atlanta,GA,30301 +191386,34in Ultrawide Monitor,1,379.99,2019-04-01 20:38:00,824 Jefferson St, Dallas,TX,75001 +191387,Apple Airpods Headphones,1,150.0,2019-04-28 10:39:00,755 1st St, Boston,MA,02215 +191388,AAA Batteries (4-pack),1,2.99,2019-04-20 13:47:00,906 Lincoln St, San Francisco,CA,94016 +191389,AAA Batteries (4-pack),1,2.99,2019-04-22 13:59:00,382 Willow St, Los Angeles,CA,90001 +191390,Lightning Charging Cable,1,14.95,2019-04-01 19:49:00,307 North St, Austin,TX,73301 +191391,27in FHD Monitor,1,149.99,2019-04-22 13:13:00,41 Cherry St, Austin,TX,73301 +191392,AA Batteries (4-pack),1,3.84,2019-04-14 22:14:00,386 Maple St, Austin,TX,73301 +191393,Wired Headphones,1,11.99,2019-04-10 19:01:00,318 Madison St, New York City,NY,10001 +191394,AAA Batteries (4-pack),1,2.99,2019-04-09 18:12:00,776 Pine St, Portland,OR,97035 +191395,AA Batteries (4-pack),1,3.84,2019-04-13 10:00:00,740 Meadow St, San Francisco,CA,94016 +191396,USB-C Charging Cable,1,11.95,2019-04-11 09:29:00,823 Hickory St, Boston,MA,02215 +191397,AAA Batteries (4-pack),2,2.99,2019-04-26 10:58:00,95 Adams St, San Francisco,CA,94016 +191398,Wired Headphones,2,11.99,2019-04-02 10:50:00,282 South St, Dallas,TX,75001 +191399,AA Batteries (4-pack),1,3.84,2019-04-12 16:21:00,925 Jefferson St, Seattle,WA,98101 +191400,Wired Headphones,1,11.99,2019-04-21 14:29:00,507 Lakeview St, New York City,NY,10001 +191401,AAA Batteries (4-pack),4,2.99,2019-04-07 17:22:00,955 Meadow St, New York City,NY,10001 +191402,USB-C Charging Cable,1,11.95,2019-04-21 18:46:00,796 Cherry St, San Francisco,CA,94016 +191403,Bose SoundSport Headphones,1,99.99,2019-04-14 00:28:00,948 Forest St, Dallas,TX,75001 +191404,Lightning Charging Cable,1,14.95,2019-04-09 15:01:00,400 Elm St, Boston,MA,02215 +191405,34in Ultrawide Monitor,1,379.99,2019-04-02 14:01:00,361 5th St, New York City,NY,10001 +191406,Wired Headphones,1,11.99,2019-04-12 17:30:00,671 Washington St, Boston,MA,02215 +191407,AA Batteries (4-pack),2,3.84,2019-04-23 07:01:00,472 Maple St, San Francisco,CA,94016 +191408,Flatscreen TV,1,300.0,2019-04-02 12:55:00,305 Madison St, Los Angeles,CA,90001 +191409,AA Batteries (4-pack),1,3.84,2019-04-08 20:22:00,808 Hill St, New York City,NY,10001 +191410,AA Batteries (4-pack),1,3.84,2019-04-07 10:23:00,621 Adams St, Dallas,TX,75001 +191411,Lightning Charging Cable,1,14.95,2019-04-16 14:07:00,865 6th St, San Francisco,CA,94016 +191412,Google Phone,1,600.0,2019-04-10 18:11:00,681 River St, San Francisco,CA,94016 +191413,Flatscreen TV,1,300.0,2019-04-28 17:28:00,201 Lincoln St, New York City,NY,10001 +191414,27in FHD Monitor,1,149.99,2019-04-14 02:19:00,459 Lake St, Boston,MA,02215 +191415,AA Batteries (4-pack),2,3.84,2019-04-23 18:58:00,498 Cedar St, Seattle,WA,98101 +191416,Lightning Charging Cable,1,14.95,2019-04-06 15:50:00,916 Pine St, San Francisco,CA,94016 +191417,Wired Headphones,1,11.99,2019-04-20 20:01:00,504 Meadow St, New York City,NY,10001 +191418,Wired Headphones,1,11.99,2019-04-05 10:03:00,883 5th St, Atlanta,GA,30301 +191419,AAA Batteries (4-pack),1,2.99,2019-04-08 16:34:00,663 Wilson St, Atlanta,GA,30301 +191420,Google Phone,1,600.0,2019-04-19 12:52:00,38 12th St, Los Angeles,CA,90001 +191420,USB-C Charging Cable,1,11.95,2019-04-19 12:52:00,38 12th St, Los Angeles,CA,90001 +191421,27in 4K Gaming Monitor,1,389.99,2019-04-10 19:01:00,741 Meadow St, Portland,OR,97035 +191422,Google Phone,1,600.0,2019-04-06 19:29:00,710 Chestnut St, Atlanta,GA,30301 +191423,AAA Batteries (4-pack),1,2.99,2019-04-26 09:09:00,359 6th St, New York City,NY,10001 +191424,AAA Batteries (4-pack),1,2.99,2019-04-14 23:56:00,876 Jefferson St, San Francisco,CA,94016 +191425,AAA Batteries (4-pack),1,2.99,2019-04-19 10:07:00,8 6th St, Portland,OR,97035 +191426,Bose SoundSport Headphones,1,99.99,2019-04-27 12:30:00,126 Church St, New York City,NY,10001 +191427,27in FHD Monitor,1,149.99,2019-04-03 17:12:00,924 Maple St, Atlanta,GA,30301 +191428,AA Batteries (4-pack),1,3.84,2019-04-11 16:04:00,282 9th St, Atlanta,GA,30301 +191429,USB-C Charging Cable,1,11.95,2019-04-23 18:27:00,322 Chestnut St, Los Angeles,CA,90001 +191430,Apple Airpods Headphones,1,150.0,2019-04-25 17:16:00,656 Highland St, Dallas,TX,75001 +191431,AA Batteries (4-pack),3,3.84,2019-04-29 13:05:00,872 Center St, Dallas,TX,75001 +191432,34in Ultrawide Monitor,1,379.99,2019-04-28 18:07:00,78 Washington St, Portland,OR,97035 +191433,iPhone,1,700.0,2019-04-10 00:34:00,706 Jackson St, Seattle,WA,98101 +191433,Lightning Charging Cable,1,14.95,2019-04-10 00:34:00,706 Jackson St, Seattle,WA,98101 +191433,Apple Airpods Headphones,1,150.0,2019-04-10 00:34:00,706 Jackson St, Seattle,WA,98101 +191434,Macbook Pro Laptop,1,1700.0,2019-04-21 21:17:00,369 Jackson St, San Francisco,CA,94016 +191435,Lightning Charging Cable,1,14.95,2019-04-16 14:01:00,78 4th St, Atlanta,GA,30301 +191436,Bose SoundSport Headphones,1,99.99,2019-04-18 20:09:00,926 Walnut St, New York City,NY,10001 +191437,Apple Airpods Headphones,1,150.0,2019-04-10 10:48:00,264 Cherry St, Austin,TX,73301 +191438,Lightning Charging Cable,1,14.95,2019-04-25 21:02:00,281 South St, New York City,NY,10001 +191439,34in Ultrawide Monitor,1,379.99,2019-04-18 10:56:00,645 9th St, New York City,NY,10001 +191440,Flatscreen TV,1,300.0,2019-04-11 09:52:00,731 Johnson St, San Francisco,CA,94016 +191441,USB-C Charging Cable,1,11.95,2019-04-27 09:33:00,731 River St, San Francisco,CA,94016 +191442,Apple Airpods Headphones,1,150.0,2019-04-11 13:14:00,486 Main St, Seattle,WA,98101 +191443,iPhone,1,700.0,2019-04-04 14:05:00,323 14th St, Austin,TX,73301 +191444,AA Batteries (4-pack),1,3.84,2019-04-25 09:09:00,996 Willow St, Los Angeles,CA,90001 +191445,USB-C Charging Cable,1,11.95,2019-04-01 16:11:00,813 Cherry St, Portland,OR,97035 +191446,AAA Batteries (4-pack),1,2.99,2019-04-27 21:04:00,353 Maple St, New York City,NY,10001 +191447,Bose SoundSport Headphones,1,99.99,2019-04-15 22:43:00,412 Wilson St, San Francisco,CA,94016 +191448,AA Batteries (4-pack),2,3.84,2019-04-28 14:33:00,450 Chestnut St, Los Angeles,CA,90001 +191449,AA Batteries (4-pack),2,3.84,2019-04-20 19:56:00,861 Forest St, Portland,OR,97035 +191449,AA Batteries (4-pack),1,3.84,2019-04-20 19:56:00,861 Forest St, Portland,OR,97035 +191450,Wired Headphones,1,11.99,2019-04-02 13:41:00,86 Sunset St, San Francisco,CA,94016 +191451,AA Batteries (4-pack),1,3.84,2019-04-10 08:34:00,5 Park St, San Francisco,CA,94016 +191452,USB-C Charging Cable,1,11.95,2019-04-08 21:12:00,169 Maple St, New York City,NY,10001 +191453,iPhone,1,700.0,2019-04-10 20:47:00,930 Lincoln St, Los Angeles,CA,90001 +191453,Wired Headphones,1,11.99,2019-04-10 20:47:00,930 Lincoln St, Los Angeles,CA,90001 +191454,USB-C Charging Cable,1,11.95,2019-04-18 19:06:00,986 13th St, San Francisco,CA,94016 +191455,Macbook Pro Laptop,1,1700.0,2019-04-30 16:23:00,320 Main St, San Francisco,CA,94016 +191456,Wired Headphones,1,11.99,2019-04-08 09:03:00,195 Forest St, Portland,OR,97035 +191457,AA Batteries (4-pack),2,3.84,2019-04-24 08:11:00,327 Ridge St, Los Angeles,CA,90001 +191458,34in Ultrawide Monitor,1,379.99,2019-04-15 21:19:00,823 Dogwood St, Portland,OR,97035 +191459,AAA Batteries (4-pack),1,2.99,2019-04-02 14:46:00,32 7th St, San Francisco,CA,94016 +191460,Apple Airpods Headphones,1,150.0,2019-04-08 11:50:00,215 West St, Los Angeles,CA,90001 +191461,20in Monitor,1,109.99,2019-04-23 21:33:00,890 1st St, Portland,OR,97035 +191462,AA Batteries (4-pack),1,3.84,2019-04-18 17:28:00,183 Washington St, Portland,OR,97035 +191463,27in FHD Monitor,1,149.99,2019-04-09 10:50:00,778 North St, Dallas,TX,75001 +191464,Wired Headphones,1,11.99,2019-04-03 13:08:00,424 12th St, Austin,TX,73301 +191465,Lightning Charging Cable,2,14.95,2019-04-07 16:24:00,950 Lake St, San Francisco,CA,94016 +191466,Wired Headphones,1,11.99,2019-04-07 19:50:00,813 Elm St, Los Angeles,CA,90001 +191467,Wired Headphones,1,11.99,2019-04-20 18:55:00,113 Meadow St, Boston,MA,02215 +191468,Macbook Pro Laptop,1,1700.0,2019-04-29 16:59:00,911 10th St, Atlanta,GA,30301 +191469,Apple Airpods Headphones,1,150.0,2019-04-13 20:42:00,327 Elm St, San Francisco,CA,94016 +191470,34in Ultrawide Monitor,1,379.99,2019-04-12 16:00:00,476 South St, San Francisco,CA,94016 +191471,Bose SoundSport Headphones,1,99.99,2019-04-05 13:53:00,623 Forest St, Los Angeles,CA,90001 +191472,Apple Airpods Headphones,1,150.0,2019-04-13 22:03:00,800 Ridge St, Dallas,TX,75001 +191473,USB-C Charging Cable,1,11.95,2019-04-21 22:20:00,912 12th St, Los Angeles,CA,90001 +191474,Lightning Charging Cable,1,14.95,2019-04-25 13:43:00,177 Main St, New York City,NY,10001 +191475,AAA Batteries (4-pack),1,2.99,2019-04-29 10:58:00,471 Dogwood St, Atlanta,GA,30301 +191476,Lightning Charging Cable,1,14.95,2019-04-26 21:30:00,998 8th St, San Francisco,CA,94016 +191477,Flatscreen TV,1,300.0,2019-04-04 18:48:00,912 6th St, Portland,OR,97035 +191478,Wired Headphones,1,11.99,2019-04-30 13:10:00,574 11th St, Los Angeles,CA,90001 +191479,Flatscreen TV,1,300.0,2019-04-21 15:29:00,362 6th St, Boston,MA,02215 +191480,34in Ultrawide Monitor,1,379.99,2019-04-02 11:45:00,743 Hill St, Los Angeles,CA,90001 +191481,AAA Batteries (4-pack),1,2.99,2019-04-13 10:47:00,491 Dogwood St, Seattle,WA,98101 +191482,Bose SoundSport Headphones,1,99.99,2019-04-04 20:50:00,651 North St, Los Angeles,CA,90001 +191483,AAA Batteries (4-pack),1,2.99,2019-04-10 12:22:00,353 9th St, Los Angeles,CA,90001 +191484,Wired Headphones,1,11.99,2019-04-05 18:28:00,605 River St, Los Angeles,CA,90001 +191485,AA Batteries (4-pack),1,3.84,2019-04-19 18:13:00,683 6th St, San Francisco,CA,94016 +191486,Bose SoundSport Headphones,1,99.99,2019-04-05 14:20:00,954 West St, Seattle,WA,98101 +191487,20in Monitor,1,109.99,2019-04-30 13:15:00,101 North St, New York City,NY,10001 +191488,Lightning Charging Cable,1,14.95,2019-04-04 21:47:00,855 Lincoln St, New York City,NY,10001 +191489,Flatscreen TV,1,300.0,2019-04-22 17:19:00,417 Washington St, Boston,MA,02215 +191490,Apple Airpods Headphones,1,150.0,2019-04-05 12:52:00,997 Willow St, Los Angeles,CA,90001 +191491,Lightning Charging Cable,1,14.95,2019-04-06 21:21:00,141 Spruce St, New York City,NY,10001 +191492,AAA Batteries (4-pack),2,2.99,2019-04-06 09:08:00,464 Sunset St, Atlanta,GA,30301 +191493,USB-C Charging Cable,1,11.95,2019-04-06 20:27:00,966 Lake St, Boston,MA,02215 +191494,Wired Headphones,1,11.99,2019-04-28 12:09:00,50 West St, San Francisco,CA,94016 +191495,AAA Batteries (4-pack),1,2.99,2019-04-27 14:55:00,602 2nd St, Los Angeles,CA,90001 +191496,AAA Batteries (4-pack),2,2.99,2019-04-15 15:26:00,911 Johnson St, New York City,NY,10001 +191497,Google Phone,1,600.0,2019-04-11 23:29:00,881 Elm St, Austin,TX,73301 +191497,USB-C Charging Cable,1,11.95,2019-04-11 23:29:00,881 Elm St, Austin,TX,73301 +191498,Wired Headphones,1,11.99,2019-04-06 07:44:00,153 Lincoln St, San Francisco,CA,94016 +191499,AA Batteries (4-pack),4,3.84,2019-04-07 11:23:00,439 Spruce St, San Francisco,CA,94016 +191500,Lightning Charging Cable,1,14.95,2019-04-09 19:18:00,411 Walnut St, San Francisco,CA,94016 +191501,Apple Airpods Headphones,1,150.0,2019-04-17 21:19:00,34 Elm St, Atlanta,GA,30301 +191502,AA Batteries (4-pack),1,3.84,2019-04-23 19:52:00,632 2nd St, New York City,NY,10001 +191503,Bose SoundSport Headphones,1,99.99,2019-04-14 20:07:00,314 Park St, San Francisco,CA,94016 +191504,Apple Airpods Headphones,1,150.0,2019-04-21 20:13:00,620 Lakeview St, Los Angeles,CA,90001 +191505,Lightning Charging Cable,1,14.95,2019-04-21 15:18:00,429 9th St, San Francisco,CA,94016 +191506,20in Monitor,1,109.99,2019-04-04 18:58:00,616 North St, Los Angeles,CA,90001 +191507,27in 4K Gaming Monitor,2,389.99,2019-04-29 06:39:00,740 8th St, Seattle,WA,98101 +191508,Macbook Pro Laptop,1,1700.0,2019-04-18 08:47:00,250 Madison St, Seattle,WA,98101 +191509,Bose SoundSport Headphones,1,99.99,2019-04-26 21:04:00,129 14th St, San Francisco,CA,94016 +191510,27in 4K Gaming Monitor,1,389.99,2019-04-12 16:04:00,535 Hickory St, Boston,MA,02215 +191511,AA Batteries (4-pack),2,3.84,2019-04-08 17:59:00,487 9th St, Los Angeles,CA,90001 +191512,USB-C Charging Cable,1,11.95,2019-04-18 11:00:00,447 Madison St, San Francisco,CA,94016 +191512,Apple Airpods Headphones,1,150.0,2019-04-18 11:00:00,447 Madison St, San Francisco,CA,94016 +191513,34in Ultrawide Monitor,1,379.99,2019-04-23 19:25:00,740 Madison St, Boston,MA,02215 +191514,34in Ultrawide Monitor,1,379.99,2019-04-09 18:23:00,916 Main St, Dallas,TX,75001 +191515,Apple Airpods Headphones,1,150.0,2019-04-02 18:27:00,34 Church St, Los Angeles,CA,90001 +191516,AA Batteries (4-pack),1,3.84,2019-04-11 19:32:00,19 9th St, Portland,OR,97035 +191517,Wired Headphones,1,11.99,2019-04-22 17:44:00,270 14th St, San Francisco,CA,94016 +191518,AAA Batteries (4-pack),1,2.99,2019-04-30 17:56:00,19 10th St, Austin,TX,73301 +191519,AA Batteries (4-pack),1,3.84,2019-04-16 20:18:00,774 Spruce St, New York City,NY,10001 +191520,USB-C Charging Cable,1,11.95,2019-04-23 20:44:00,191 Lincoln St, San Francisco,CA,94016 +191521,ThinkPad Laptop,1,999.99,2019-04-02 09:59:00,530 Willow St, San Francisco,CA,94016 +191522,Apple Airpods Headphones,1,150.0,2019-04-05 16:21:00,658 Wilson St, Los Angeles,CA,90001 +191523,Apple Airpods Headphones,1,150.0,2019-04-02 12:40:00,118 14th St, San Francisco,CA,94016 +191524,Apple Airpods Headphones,1,150.0,2019-04-10 11:35:00,488 Spruce St, San Francisco,CA,94016 +191525,AA Batteries (4-pack),1,3.84,2019-04-03 22:33:00,557 Jackson St, New York City,NY,10001 +191526,AAA Batteries (4-pack),1,2.99,2019-04-28 18:11:00,10 14th St, San Francisco,CA,94016 +191527,iPhone,1,700.0,2019-04-28 11:53:00,516 10th St, Boston,MA,02215 +191528,AA Batteries (4-pack),1,3.84,2019-04-25 21:08:00,668 7th St, San Francisco,CA,94016 +191529,34in Ultrawide Monitor,1,379.99,2019-04-15 22:14:00,886 6th St, Los Angeles,CA,90001 +191530,AAA Batteries (4-pack),1,2.99,2019-04-15 00:18:00,657 Highland St, New York City,NY,10001 +191531,Bose SoundSport Headphones,1,99.99,2019-04-14 21:02:00,242 Park St, Boston,MA,02215 +191532,Wired Headphones,1,11.99,2019-04-08 12:46:00,391 Maple St, New York City,NY,10001 +191533,Wired Headphones,1,11.99,2019-04-15 13:50:00,501 Cedar St, Los Angeles,CA,90001 +191534,USB-C Charging Cable,1,11.95,2019-04-26 10:28:00,129 Jefferson St, Austin,TX,73301 +191535,Apple Airpods Headphones,1,150.0,2019-04-22 10:46:00,729 Pine St, Portland,OR,97035 +191536,20in Monitor,1,109.99,2019-04-21 01:23:00,433 Sunset St, Los Angeles,CA,90001 +191537,AA Batteries (4-pack),1,3.84,2019-04-20 11:50:00,747 Highland St, Dallas,TX,75001 +191538,Google Phone,1,600.0,2019-04-01 16:29:00,278 Madison St, Los Angeles,CA,90001 +191538,USB-C Charging Cable,2,11.95,2019-04-01 16:29:00,278 Madison St, Los Angeles,CA,90001 +191539,AA Batteries (4-pack),1,3.84,2019-04-03 12:22:00,431 North St, San Francisco,CA,94016 +191540,AA Batteries (4-pack),1,3.84,2019-04-27 20:11:00,555 Pine St, Los Angeles,CA,90001 +191541,Bose SoundSport Headphones,2,99.99,2019-04-30 12:42:00,102 Hill St, New York City,NY,10001 +191542,Apple Airpods Headphones,1,150.0,2019-04-24 21:49:00,951 Lakeview St, Dallas,TX,75001 +191543,AAA Batteries (4-pack),1,2.99,2019-04-27 05:38:00,979 Highland St, Austin,TX,73301 +191544,Lightning Charging Cable,1,14.95,2019-04-11 22:45:00,525 Maple St, San Francisco,CA,94016 +191545,iPhone,1,700.0,2019-04-22 03:45:00,438 Willow St, Los Angeles,CA,90001 +191546,AA Batteries (4-pack),1,3.84,2019-04-03 23:33:00,953 Pine St, Los Angeles,CA,90001 +191547,34in Ultrawide Monitor,1,379.99,2019-04-12 15:01:00,984 14th St, Los Angeles,CA,90001 +191547,iPhone,1,700.0,2019-04-12 15:01:00,984 14th St, Los Angeles,CA,90001 +191548,Bose SoundSport Headphones,1,99.99,2019-04-22 19:30:00,521 South St, Portland,OR,97035 +191549,Lightning Charging Cable,1,14.95,2019-04-16 16:17:00,16 Lakeview St, Los Angeles,CA,90001 +191550,Macbook Pro Laptop,1,1700.0,2019-04-18 01:11:00,17 Church St, Boston,MA,02215 +191551,Apple Airpods Headphones,1,150.0,2019-04-17 14:25:00,942 Center St, Los Angeles,CA,90001 +191552,Wired Headphones,1,11.99,2019-04-02 21:33:00,220 Hill St, San Francisco,CA,94016 +191553,Lightning Charging Cable,1,14.95,2019-04-03 22:29:00,171 Dogwood St, Boston,MA,02215 +191554,USB-C Charging Cable,1,11.95,2019-04-11 18:45:00,286 Meadow St, San Francisco,CA,94016 +191555,Wired Headphones,2,11.99,2019-04-10 12:21:00,968 Lakeview St, San Francisco,CA,94016 +191556,Wired Headphones,1,11.99,2019-04-20 18:15:00,148 North St, Dallas,TX,75001 +191557,AAA Batteries (4-pack),1,2.99,2019-04-09 12:27:00,606 Pine St, Boston,MA,02215 +191558,27in 4K Gaming Monitor,1,389.99,2019-04-01 14:19:00,743 14th St, Los Angeles,CA,90001 +191559,Apple Airpods Headphones,1,150.0,2019-04-29 11:03:00,551 West St, Seattle,WA,98101 +191560,27in 4K Gaming Monitor,1,389.99,2019-04-07 19:49:00,256 Highland St, Dallas,TX,75001 +191561,Bose SoundSport Headphones,1,99.99,2019-04-02 12:29:00,576 5th St, New York City,NY,10001 +191561,AAA Batteries (4-pack),1,2.99,2019-04-02 12:29:00,576 5th St, New York City,NY,10001 +191562,27in FHD Monitor,1,149.99,2019-04-30 12:37:00,80 Pine St, Boston,MA,02215 +191563,USB-C Charging Cable,1,11.95,2019-04-11 20:37:00,624 2nd St, San Francisco,CA,94016 +191564,20in Monitor,1,109.99,2019-04-04 20:21:00,33 Ridge St, San Francisco,CA,94016 +191565,Wired Headphones,1,11.99,2019-04-04 15:06:00,110 6th St, San Francisco,CA,94016 +191566,Apple Airpods Headphones,1,150.0,2019-04-09 12:50:00,811 Willow St, Boston,MA,02215 +191567,34in Ultrawide Monitor,1,379.99,2019-04-16 21:06:00,717 Highland St, Los Angeles,CA,90001 +191568,Google Phone,1,600.0,2019-04-01 19:38:00,954 Johnson St, Boston,MA,02215 +191569,Wired Headphones,1,11.99,2019-04-29 12:02:00,517 Park St, Dallas,TX,75001 +191570,USB-C Charging Cable,1,11.95,2019-04-25 19:01:00,111 12th St, Los Angeles,CA,90001 +191571,AA Batteries (4-pack),1,3.84,2019-04-04 07:52:00,496 Pine St, San Francisco,CA,94016 +191572,Wired Headphones,1,11.99,2019-04-20 00:33:00,966 Hickory St, Austin,TX,73301 +191573,Bose SoundSport Headphones,1,99.99,2019-04-26 07:56:00,588 Church St, San Francisco,CA,94016 +191574,Wired Headphones,1,11.99,2019-04-12 08:25:00,686 Highland St, San Francisco,CA,94016 +191575,AAA Batteries (4-pack),2,2.99,2019-04-29 12:48:00,903 North St, Seattle,WA,98101 +191576,27in FHD Monitor,1,149.99,2019-04-02 12:20:00,432 Spruce St, San Francisco,CA,94016 +191577,Lightning Charging Cable,1,14.95,2019-04-10 05:04:00,258 River St, Boston,MA,02215 +191578,AAA Batteries (4-pack),1,2.99,2019-04-25 19:13:00,521 1st St, San Francisco,CA,94016 +191579,Google Phone,1,600.0,2019-04-10 18:25:00,144 Hickory St, Boston,MA,02215 +191580,ThinkPad Laptop,1,999.99,2019-04-18 15:02:00,963 Maple St, Seattle,WA,98101 +191581,Apple Airpods Headphones,1,150.0,2019-04-01 15:11:00,223 12th St, San Francisco,CA,94016 +191582,Lightning Charging Cable,1,14.95,2019-04-16 13:29:00,796 14th St, Austin,TX,73301 +191583,Lightning Charging Cable,1,14.95,2019-04-19 12:28:00,124 9th St, Los Angeles,CA,90001 +191584,Wired Headphones,1,11.99,2019-04-26 13:43:00,463 Johnson St, San Francisco,CA,94016 +191585,20in Monitor,1,109.99,2019-04-01 05:58:00,686 Main St, New York City,NY,10001 +191586,Lightning Charging Cable,1,14.95,2019-04-10 17:36:00,939 9th St, Boston,MA,02215 +191587,USB-C Charging Cable,1,11.95,2019-04-28 17:49:00,552 Johnson St, San Francisco,CA,94016 +191588,AA Batteries (4-pack),1,3.84,2019-04-20 12:35:00,273 Elm St, San Francisco,CA,94016 +191589,34in Ultrawide Monitor,1,379.99,2019-04-07 19:00:00,60 14th St, San Francisco,CA,94016 +191590,AAA Batteries (4-pack),3,2.99,2019-04-13 13:22:00,110 Washington St, Austin,TX,73301 +191591,USB-C Charging Cable,1,11.95,2019-04-14 22:05:00,340 Forest St, Dallas,TX,75001 +191592,27in 4K Gaming Monitor,1,389.99,2019-04-11 00:18:00,697 Johnson St, Portland,OR,97035 +191593,USB-C Charging Cable,1,11.95,2019-04-24 18:35:00,404 Ridge St, New York City,NY,10001 +191594,Apple Airpods Headphones,1,150.0,2019-04-26 15:43:00,569 Highland St, Seattle,WA,98101 +191595,Lightning Charging Cable,1,14.95,2019-04-18 11:39:00,98 Washington St, Portland,ME,04101 +191596,Bose SoundSport Headphones,1,99.99,2019-04-15 14:33:00,76 Forest St, Austin,TX,73301 +191597,Google Phone,1,600.0,2019-04-14 12:08:00,464 Willow St, Los Angeles,CA,90001 +191598,Google Phone,1,600.0,2019-04-28 13:25:00,512 7th St, Atlanta,GA,30301 +191599,Apple Airpods Headphones,1,150.0,2019-04-11 19:06:00,51 River St, San Francisco,CA,94016 +191600,34in Ultrawide Monitor,1,379.99,2019-04-02 13:49:00,772 North St, San Francisco,CA,94016 +191601,Wired Headphones,1,11.99,2019-04-20 17:11:00,670 Spruce St, New York City,NY,10001 +191602,Lightning Charging Cable,1,14.95,2019-04-19 19:47:00,349 Elm St, Boston,MA,02215 +191603,Wired Headphones,1,11.99,2019-04-10 08:01:00,373 Lake St, San Francisco,CA,94016 +191604,Lightning Charging Cable,1,14.95,2019-04-23 09:28:00,149 Dogwood St, Portland,OR,97035 +191605,34in Ultrawide Monitor,1,379.99,2019-04-23 19:17:00,144 Madison St, Seattle,WA,98101 +191606,AA Batteries (4-pack),1,3.84,2019-04-07 15:25:00,150 Jefferson St, Boston,MA,02215 +191607,USB-C Charging Cable,3,11.95,2019-04-18 09:22:00,221 8th St, Atlanta,GA,30301 +191608,Google Phone,1,600.0,2019-04-21 22:47:00,172 Chestnut St, Seattle,WA,98101 +191608,USB-C Charging Cable,1,11.95,2019-04-21 22:47:00,172 Chestnut St, Seattle,WA,98101 +191609,AAA Batteries (4-pack),2,2.99,2019-04-19 21:48:00,149 Wilson St, Dallas,TX,75001 +191610,AAA Batteries (4-pack),1,2.99,2019-04-13 11:38:00,14 7th St, Los Angeles,CA,90001 +191610,AA Batteries (4-pack),2,3.84,2019-04-13 11:38:00,14 7th St, Los Angeles,CA,90001 +191611,Lightning Charging Cable,1,14.95,2019-04-03 18:25:00,224 Ridge St, San Francisco,CA,94016 +191612,AA Batteries (4-pack),1,3.84,2019-04-08 11:47:00,945 Lincoln St, Los Angeles,CA,90001 +191613,Macbook Pro Laptop,1,1700.0,2019-04-28 12:36:00,275 Highland St, San Francisco,CA,94016 +191614,iPhone,1,700.0,2019-04-06 00:37:00,689 Park St, Seattle,WA,98101 +191615,27in FHD Monitor,1,149.99,2019-04-13 17:16:00,102 Hill St, New York City,NY,10001 +191616,Apple Airpods Headphones,1,150.0,2019-04-10 13:23:00,762 Main St, San Francisco,CA,94016 +191617,USB-C Charging Cable,1,11.95,2019-04-25 08:30:00,18 South St, Boston,MA,02215 +191617,Wired Headphones,1,11.99,2019-04-25 08:30:00,18 South St, Boston,MA,02215 +191618,Bose SoundSport Headphones,1,99.99,2019-04-01 13:01:00,812 6th St, Atlanta,GA,30301 +191619,20in Monitor,1,109.99,2019-04-25 16:25:00,157 5th St, Atlanta,GA,30301 +191620,AAA Batteries (4-pack),3,2.99,2019-04-24 13:16:00,982 Washington St, San Francisco,CA,94016 +191621,USB-C Charging Cable,1,11.95,2019-04-21 19:03:00,18 1st St, San Francisco,CA,94016 +191622,Lightning Charging Cable,1,14.95,2019-04-09 23:28:00,150 7th St, Boston,MA,02215 +191623,USB-C Charging Cable,1,11.95,2019-04-03 19:31:00,873 Adams St, New York City,NY,10001 +191624,Apple Airpods Headphones,1,150.0,2019-04-30 13:59:00,795 Hickory St, Portland,OR,97035 +191625,AAA Batteries (4-pack),1,2.99,2019-04-19 09:12:00,320 Cedar St, San Francisco,CA,94016 +191626,Macbook Pro Laptop,1,1700.0,2019-04-18 20:38:00,178 Chestnut St, Boston,MA,02215 +191627,Wired Headphones,1,11.99,2019-04-10 21:09:00,935 10th St, San Francisco,CA,94016 +191628,AA Batteries (4-pack),3,3.84,2019-04-01 19:58:00,198 Highland St, San Francisco,CA,94016 +191629,USB-C Charging Cable,1,11.95,2019-04-03 08:13:00,308 Washington St, Boston,MA,02215 +191630,Apple Airpods Headphones,1,150.0,2019-04-10 17:44:00,598 10th St, Los Angeles,CA,90001 +191631,iPhone,1,700.0,2019-04-29 14:44:00,63 Ridge St, Los Angeles,CA,90001 +191632,27in FHD Monitor,1,149.99,2019-04-05 07:11:00,619 West St, Portland,ME,04101 +191633,AAA Batteries (4-pack),1,2.99,2019-04-24 14:29:00,601 Lincoln St, New York City,NY,10001 +191634,Macbook Pro Laptop,1,1700.0,2019-04-27 13:00:00,343 Wilson St, Portland,OR,97035 +191635,Lightning Charging Cable,1,14.95,2019-04-22 16:20:00,163 Pine St, Los Angeles,CA,90001 +191636,USB-C Charging Cable,1,11.95,2019-04-05 16:18:00,384 North St, Los Angeles,CA,90001 +191637,Bose SoundSport Headphones,1,99.99,2019-04-14 11:22:00,865 Jackson St, San Francisco,CA,94016 +191638,27in 4K Gaming Monitor,1,389.99,2019-04-22 10:45:00,3 West St, San Francisco,CA,94016 +191639,27in 4K Gaming Monitor,1,389.99,2019-04-12 12:38:00,943 Lincoln St, Boston,MA,02215 +191640,Wired Headphones,1,11.99,2019-04-16 11:12:00,875 1st St, Boston,MA,02215 +191641,Bose SoundSport Headphones,1,99.99,2019-04-23 15:24:00,224 Maple St, San Francisco,CA,94016 +191642,ThinkPad Laptop,1,999.99,2019-04-17 12:47:00,805 Dogwood St, New York City,NY,10001 +191643,USB-C Charging Cable,1,11.95,2019-04-28 19:09:00,102 5th St, Seattle,WA,98101 +191644,Wired Headphones,1,11.99,2019-04-17 10:21:00,880 Elm St, Seattle,WA,98101 +191645,Lightning Charging Cable,1,14.95,2019-04-09 07:12:00,690 1st St, Seattle,WA,98101 +191646,AA Batteries (4-pack),1,3.84,2019-04-28 14:17:00,195 Church St, Los Angeles,CA,90001 +191647,Apple Airpods Headphones,1,150.0,2019-04-20 21:44:00,172 Lincoln St, Portland,OR,97035 +191648,Vareebadd Phone,1,400.0,2019-04-04 18:55:00,235 Spruce St, Portland,OR,97035 +191648,Lightning Charging Cable,1,14.95,2019-04-04 18:55:00,235 Spruce St, Portland,OR,97035 +191649,Lightning Charging Cable,1,14.95,2019-04-03 20:37:00,266 Lincoln St, Portland,OR,97035 +191650,Bose SoundSport Headphones,1,99.99,2019-04-28 21:25:00,903 2nd St, Boston,MA,02215 +191651,AAA Batteries (4-pack),1,2.99,2019-04-12 13:42:00,212 Lincoln St, Los Angeles,CA,90001 +191652,Apple Airpods Headphones,1,150.0,2019-04-23 14:08:00,492 Hickory St, Los Angeles,CA,90001 +191653,Bose SoundSport Headphones,1,99.99,2019-04-13 21:14:00,65 Willow St, Atlanta,GA,30301 +191654,34in Ultrawide Monitor,1,379.99,2019-04-02 12:27:00,78 Hill St, San Francisco,CA,94016 +191655,ThinkPad Laptop,1,999.99,2019-04-23 14:26:00,829 11th St, Boston,MA,02215 +191656,USB-C Charging Cable,1,11.95,2019-04-04 08:59:00,925 Cherry St, New York City,NY,10001 +191657,Google Phone,1,600.0,2019-04-14 08:31:00,594 Adams St, San Francisco,CA,94016 +191658,AA Batteries (4-pack),1,3.84,2019-04-14 19:41:00,956 Sunset St, San Francisco,CA,94016 +191659,LG Washing Machine,1,600.0,2019-04-12 11:37:00,3 Pine St, Dallas,TX,75001 +191660,iPhone,1,700.0,2019-04-23 21:08:00,673 Hill St, San Francisco,CA,94016 +191661,34in Ultrawide Monitor,1,379.99,2019-04-04 13:22:00,904 North St, San Francisco,CA,94016 +191662,Wired Headphones,1,11.99,2019-04-21 20:58:00,247 Forest St, Boston,MA,02215 +191663,Lightning Charging Cable,1,14.95,2019-04-09 19:47:00,95 8th St, New York City,NY,10001 +191664,27in FHD Monitor,1,149.99,2019-04-22 11:17:00,624 Cedar St, Portland,OR,97035 +191665,iPhone,1,700.0,2019-04-10 22:58:00,127 6th St, New York City,NY,10001 +191666,AA Batteries (4-pack),2,3.84,2019-04-03 18:59:00,414 Wilson St, Los Angeles,CA,90001 +191667,Lightning Charging Cable,1,14.95,2019-04-04 23:00:00,521 14th St, San Francisco,CA,94016 +191668,ThinkPad Laptop,1,999.99,2019-04-04 10:25:00,187 Jefferson St, New York City,NY,10001 +191669,Apple Airpods Headphones,1,150.0,2019-04-18 10:48:00,501 North St, New York City,NY,10001 +191670,AA Batteries (4-pack),1,3.84,2019-04-14 18:56:00,871 Highland St, Los Angeles,CA,90001 +191671,27in 4K Gaming Monitor,1,389.99,2019-04-23 20:26:00,547 Hickory St, Dallas,TX,75001 +191672,Flatscreen TV,1,300.0,2019-04-09 20:35:00,595 Washington St, Boston,MA,02215 +191673,AA Batteries (4-pack),1,3.84,2019-04-16 13:25:00,196 Pine St, San Francisco,CA,94016 +191674,Lightning Charging Cable,1,14.95,2019-04-16 09:05:00,632 Elm St, Los Angeles,CA,90001 +191675,USB-C Charging Cable,1,11.95,2019-04-10 22:06:00,441 Sunset St, Seattle,WA,98101 +191676,Lightning Charging Cable,1,14.95,2019-04-22 22:17:00,962 Jackson St, New York City,NY,10001 +191677,Flatscreen TV,1,300.0,2019-04-20 11:39:00,183 Park St, Portland,OR,97035 +191678,AAA Batteries (4-pack),1,2.99,2019-04-12 00:29:00,420 Sunset St, San Francisco,CA,94016 +191679,Wired Headphones,1,11.99,2019-04-14 14:40:00,613 Jefferson St, Boston,MA,02215 +191680,iPhone,1,700.0,2019-04-11 11:51:00,895 Adams St, Dallas,TX,75001 +191681,20in Monitor,1,109.99,2019-04-20 15:56:00,280 River St, Austin,TX,73301 +191682,Flatscreen TV,1,300.0,2019-04-11 21:54:00,73 Cherry St, Portland,OR,97035 +191683,Apple Airpods Headphones,1,150.0,2019-04-24 03:55:00,661 Spruce St, Austin,TX,73301 +191684,USB-C Charging Cable,1,11.95,2019-04-15 13:05:00,50 Hill St, Austin,TX,73301 +191685,Wired Headphones,1,11.99,2019-04-08 18:32:00,340 South St, Boston,MA,02215 +191686,Apple Airpods Headphones,1,150.0,2019-04-21 00:38:00,785 13th St, San Francisco,CA,94016 +191687,Flatscreen TV,1,300.0,2019-04-29 16:07:00,658 Spruce St, Dallas,TX,75001 +191688,Macbook Pro Laptop,1,1700.0,2019-04-26 05:45:00,207 Meadow St, Los Angeles,CA,90001 +191689,34in Ultrawide Monitor,1,379.99,2019-04-18 07:10:00,738 Lakeview St, San Francisco,CA,94016 +191690,Bose SoundSport Headphones,1,99.99,2019-04-09 02:07:00,737 Center St, Los Angeles,CA,90001 +191691,Lightning Charging Cable,1,14.95,2019-04-01 11:17:00,380 Hill St, Los Angeles,CA,90001 +191692,AAA Batteries (4-pack),2,2.99,2019-04-22 02:12:00,65 11th St, San Francisco,CA,94016 +191693,34in Ultrawide Monitor,1,379.99,2019-04-14 22:39:00,926 West St, Austin,TX,73301 +191694,Apple Airpods Headphones,1,150.0,2019-04-12 21:35:00,941 12th St, San Francisco,CA,94016 +191695,Vareebadd Phone,1,400.0,2019-04-07 14:14:00,893 Cherry St, Boston,MA,02215 +191696,Wired Headphones,1,11.99,2019-04-18 19:30:00,742 Meadow St, Los Angeles,CA,90001 +191697,USB-C Charging Cable,1,11.95,2019-04-07 20:12:00,681 Johnson St, San Francisco,CA,94016 +191698,Lightning Charging Cable,1,14.95,2019-04-07 14:09:00,141 Jackson St, New York City,NY,10001 +191699,Macbook Pro Laptop,1,1700.0,2019-04-19 21:34:00,894 8th St, Portland,OR,97035 +191700,27in FHD Monitor,1,149.99,2019-04-23 15:36:00,489 Spruce St, Dallas,TX,75001 +191701,Bose SoundSport Headphones,1,99.99,2019-04-30 10:39:00,843 Maple St, Austin,TX,73301 +191702,Lightning Charging Cable,1,14.95,2019-04-23 21:45:00,63 14th St, San Francisco,CA,94016 +191703,Google Phone,1,600.0,2019-04-05 18:05:00,689 11th St, San Francisco,CA,94016 +191703,Bose SoundSport Headphones,1,99.99,2019-04-05 18:05:00,689 11th St, San Francisco,CA,94016 +191704,Lightning Charging Cable,1,14.95,2019-04-16 14:10:00,841 10th St, Los Angeles,CA,90001 +191705,Apple Airpods Headphones,1,150.0,2019-04-30 15:34:00,992 Jefferson St, Portland,OR,97035 +191706,AA Batteries (4-pack),1,3.84,2019-04-20 18:15:00,742 Highland St, Austin,TX,73301 +191707,20in Monitor,1,109.99,2019-04-01 17:07:00,810 12th St, Los Angeles,CA,90001 +191707,Lightning Charging Cable,1,14.95,2019-04-01 17:07:00,810 12th St, Los Angeles,CA,90001 +191708,AAA Batteries (4-pack),1,2.99,2019-04-04 03:51:00,777 Washington St, Atlanta,GA,30301 +191709,Lightning Charging Cable,1,14.95,2019-04-02 22:04:00,516 4th St, Los Angeles,CA,90001 +191710,AAA Batteries (4-pack),1,2.99,2019-04-25 20:59:00,177 Hill St, Los Angeles,CA,90001 +191711,ThinkPad Laptop,1,999.99,2019-04-29 09:56:00,728 Meadow St, Boston,MA,02215 +191712,Lightning Charging Cable,1,14.95,2019-04-09 15:52:00,621 Meadow St, Los Angeles,CA,90001 +191713,AA Batteries (4-pack),1,3.84,2019-04-09 13:32:00,322 Walnut St, Los Angeles,CA,90001 +191714,USB-C Charging Cable,1,11.95,2019-04-14 15:54:00,644 West St, Dallas,TX,75001 +191715,iPhone,1,700.0,2019-04-02 11:58:00,345 Church St, Atlanta,GA,30301 +191715,Wired Headphones,1,11.99,2019-04-02 11:58:00,345 Church St, Atlanta,GA,30301 +191716,Flatscreen TV,1,300.0,2019-04-06 12:00:00,402 Jackson St, Los Angeles,CA,90001 +191717,AAA Batteries (4-pack),2,2.99,2019-04-10 19:30:00,766 Church St, New York City,NY,10001 +191718,AA Batteries (4-pack),1,3.84,2019-04-29 15:22:00,620 Lincoln St, Austin,TX,73301 +191719,AAA Batteries (4-pack),1,2.99,2019-04-11 19:19:00,20 Hickory St, Seattle,WA,98101 +191720,ThinkPad Laptop,1,999.99,2019-04-30 09:48:00,719 2nd St, San Francisco,CA,94016 +191721,Lightning Charging Cable,1,14.95,2019-04-11 17:22:00,774 Adams St, Seattle,WA,98101 +191722,Bose SoundSport Headphones,1,99.99,2019-04-14 18:35:00,185 Dogwood St, Boston,MA,02215 +191723,34in Ultrawide Monitor,1,379.99,2019-04-17 10:53:00,6 Center St, Boston,MA,02215 +191724,27in FHD Monitor,1,149.99,2019-04-17 11:39:00,629 2nd St, San Francisco,CA,94016 +191725,USB-C Charging Cable,1,11.95,2019-04-12 14:34:00,566 Spruce St, Los Angeles,CA,90001 +191726,ThinkPad Laptop,1,999.99,2019-04-11 07:46:00,507 Adams St, Los Angeles,CA,90001 +191727,27in 4K Gaming Monitor,1,389.99,2019-04-02 16:43:00,883 Maple St, New York City,NY,10001 +191728,Wired Headphones,2,11.99,2019-04-17 23:15:00,748 2nd St, Boston,MA,02215 +191729,Bose SoundSport Headphones,1,99.99,2019-04-23 18:35:00,449 4th St, Portland,OR,97035 +191730,USB-C Charging Cable,1,11.95,2019-04-12 17:27:00,933 Walnut St, San Francisco,CA,94016 +191731,Wired Headphones,1,11.99,2019-04-02 09:15:00,698 Spruce St, Atlanta,GA,30301 +191732,Apple Airpods Headphones,1,150.0,2019-04-29 19:51:00,51 2nd St, Austin,TX,73301 +191733,Lightning Charging Cable,1,14.95,2019-04-07 14:19:00,233 1st St, Los Angeles,CA,90001 +191734,AAA Batteries (4-pack),1,2.99,2019-04-21 22:00:00,651 River St, Atlanta,GA,30301 +191735,iPhone,1,700.0,2019-04-30 11:13:00,607 Pine St, Boston,MA,02215 +191735,Apple Airpods Headphones,1,150.0,2019-04-30 11:13:00,607 Pine St, Boston,MA,02215 +191736,USB-C Charging Cable,1,11.95,2019-04-05 14:17:00,365 Center St, San Francisco,CA,94016 +191737,Lightning Charging Cable,1,14.95,2019-04-12 17:08:00,30 4th St, San Francisco,CA,94016 +191738,Lightning Charging Cable,1,14.95,2019-04-21 12:29:00,314 12th St, Los Angeles,CA,90001 +191739,Bose SoundSport Headphones,1,99.99,2019-04-06 15:41:00,48 Johnson St, Seattle,WA,98101 +191740,Flatscreen TV,1,300.0,2019-04-23 17:43:00,341 River St, Dallas,TX,75001 +191741,Google Phone,1,600.0,2019-04-04 23:35:00,191 South St, Los Angeles,CA,90001 +191741,USB-C Charging Cable,1,11.95,2019-04-04 23:35:00,191 South St, Los Angeles,CA,90001 +191742,iPhone,1,700.0,2019-04-03 16:03:00,108 1st St, Boston,MA,02215 +191742,Apple Airpods Headphones,1,150.0,2019-04-03 16:03:00,108 1st St, Boston,MA,02215 +191742,Wired Headphones,1,11.99,2019-04-03 16:03:00,108 1st St, Boston,MA,02215 +191743,Lightning Charging Cable,1,14.95,2019-04-27 12:40:00,61 Walnut St, Dallas,TX,75001 +191744,Vareebadd Phone,1,400.0,2019-04-04 09:56:00,598 7th St, New York City,NY,10001 +191745,Wired Headphones,1,11.99,2019-04-04 14:11:00,188 Lake St, Boston,MA,02215 +191746,AA Batteries (4-pack),2,3.84,2019-04-25 06:09:00,440 Willow St, Austin,TX,73301 +191747,Bose SoundSport Headphones,1,99.99,2019-04-28 10:27:00,255 6th St, Los Angeles,CA,90001 +191748,AA Batteries (4-pack),1,3.84,2019-04-11 18:20:00,405 Adams St, Boston,MA,02215 +191749,Bose SoundSport Headphones,1,99.99,2019-04-02 12:12:00,752 Church St, Portland,OR,97035 +191750,USB-C Charging Cable,1,11.95,2019-04-18 14:38:00,918 5th St, Austin,TX,73301 +191751,Bose SoundSport Headphones,1,99.99,2019-04-29 00:59:00,22 Sunset St, Los Angeles,CA,90001 +191752,USB-C Charging Cable,1,11.95,2019-04-17 11:19:00,19 Lincoln St, Boston,MA,02215 +191753,Macbook Pro Laptop,1,1700.0,2019-04-26 23:03:00,814 Maple St, New York City,NY,10001 +191754,Apple Airpods Headphones,1,150.0,2019-04-17 11:46:00,659 Church St, Los Angeles,CA,90001 +191755,USB-C Charging Cable,2,11.95,2019-04-11 09:12:00,985 Willow St, Austin,TX,73301 +191756,Apple Airpods Headphones,1,150.0,2019-04-28 20:06:00,573 11th St, Los Angeles,CA,90001 +191757,Wired Headphones,1,11.99,2019-04-04 09:27:00,71 Elm St, New York City,NY,10001 +191758,USB-C Charging Cable,1,11.95,2019-04-13 19:31:00,188 North St, Atlanta,GA,30301 +191759,AAA Batteries (4-pack),2,2.99,2019-04-17 10:47:00,955 West St, San Francisco,CA,94016 +191760,Flatscreen TV,1,300.0,2019-04-04 10:43:00,179 1st St, Portland,OR,97035 +191761,AA Batteries (4-pack),1,3.84,2019-04-05 11:35:00,146 Forest St, Boston,MA,02215 +191762,AA Batteries (4-pack),1,3.84,2019-04-10 12:58:00,646 Johnson St, New York City,NY,10001 +191763,AAA Batteries (4-pack),3,2.99,2019-04-17 09:38:00,254 Lake St, Austin,TX,73301 +191764,AA Batteries (4-pack),2,3.84,2019-04-10 16:36:00,526 7th St, New York City,NY,10001 +191765,Lightning Charging Cable,1,14.95,2019-04-06 20:24:00,19 4th St, Boston,MA,02215 +191766,USB-C Charging Cable,1,11.95,2019-04-17 12:19:00,283 Madison St, San Francisco,CA,94016 +191767,20in Monitor,1,109.99,2019-04-19 17:52:00,187 12th St, Portland,ME,04101 +191768,iPhone,1,700.0,2019-04-16 11:36:00,195 Ridge St, San Francisco,CA,94016 +191769,Google Phone,1,600.0,2019-04-30 11:07:00,499 Sunset St, Atlanta,GA,30301 +191770,Wired Headphones,1,11.99,2019-04-21 17:28:00,309 13th St, San Francisco,CA,94016 +191771,Lightning Charging Cable,1,14.95,2019-04-21 14:56:00,497 Elm St, San Francisco,CA,94016 +191772,Lightning Charging Cable,1,14.95,2019-04-16 00:04:00,553 Spruce St, San Francisco,CA,94016 +191773,AA Batteries (4-pack),1,3.84,2019-04-19 08:41:00,864 14th St, San Francisco,CA,94016 +191774,AA Batteries (4-pack),1,3.84,2019-05-01 00:51:00,779 11th St, Boston,MA,02215 +191775,Apple Airpods Headphones,1,150.0,2019-04-25 15:09:00,974 Cherry St, San Francisco,CA,94016 +191776,USB-C Charging Cable,1,11.95,2019-04-27 19:10:00,314 8th St, New York City,NY,10001 +191777,AA Batteries (4-pack),1,3.84,2019-04-30 15:01:00,132 4th St, San Francisco,CA,94016 +191778,AA Batteries (4-pack),3,3.84,2019-04-27 20:43:00,649 13th St, San Francisco,CA,94016 +191779,AAA Batteries (4-pack),1,2.99,2019-04-17 19:19:00,408 Lakeview St, San Francisco,CA,94016 +191780,Wired Headphones,1,11.99,2019-04-27 00:34:00,506 Spruce St, Seattle,WA,98101 +191781,USB-C Charging Cable,1,11.95,2019-04-25 08:23:00,214 North St, Los Angeles,CA,90001 +191782,ThinkPad Laptop,1,999.99,2019-04-23 01:58:00,662 Lincoln St, Boston,MA,02215 +191783,Flatscreen TV,1,300.0,2019-04-07 07:53:00,920 West St, San Francisco,CA,94016 +191784,AAA Batteries (4-pack),3,2.99,2019-04-18 20:00:00,421 Center St, Austin,TX,73301 +191785,AAA Batteries (4-pack),1,2.99,2019-04-13 09:41:00,503 13th St, Austin,TX,73301 +191786,Bose SoundSport Headphones,1,99.99,2019-04-28 13:07:00,288 Johnson St, Atlanta,GA,30301 +191787,AA Batteries (4-pack),1,3.84,2019-04-20 13:08:00,826 5th St, Austin,TX,73301 +191788,Lightning Charging Cable,1,14.95,2019-04-01 07:17:00,310 South St, San Francisco,CA,94016 +191789,AAA Batteries (4-pack),1,2.99,2019-04-09 15:26:00,595 Jackson St, Boston,MA,02215 +191790,34in Ultrawide Monitor,1,379.99,2019-04-21 11:51:00,54 Spruce St, New York City,NY,10001 +191791,AA Batteries (4-pack),1,3.84,2019-04-20 20:22:00,908 River St, San Francisco,CA,94016 +191792,34in Ultrawide Monitor,1,379.99,2019-04-21 23:19:00,165 Maple St, Boston,MA,02215 +191793,AAA Batteries (4-pack),1,2.99,2019-04-18 15:29:00,439 Ridge St, San Francisco,CA,94016 +191794,ThinkPad Laptop,1,999.99,2019-04-13 16:12:00,635 Wilson St, San Francisco,CA,94016 +191795,Vareebadd Phone,1,400.0,2019-04-23 11:12:00,294 West St, Portland,OR,97035 +191796,AA Batteries (4-pack),1,3.84,2019-04-30 14:13:00,105 Chestnut St, New York City,NY,10001 +191797,AA Batteries (4-pack),2,3.84,2019-04-27 08:31:00,14 Lincoln St, Los Angeles,CA,90001 +191798,AA Batteries (4-pack),1,3.84,2019-04-13 06:34:00,837 Maple St, San Francisco,CA,94016 +191799,27in FHD Monitor,1,149.99,2019-04-05 19:24:00,833 13th St, New York City,NY,10001 +191800,27in 4K Gaming Monitor,1,389.99,2019-04-06 13:58:00,307 12th St, Los Angeles,CA,90001 +191801,27in FHD Monitor,1,149.99,2019-04-10 19:04:00,788 Ridge St, Los Angeles,CA,90001 +191802,Flatscreen TV,1,300.0,2019-04-15 12:33:00,23 Washington St, Portland,ME,04101 +191803,USB-C Charging Cable,1,11.95,2019-04-16 13:57:00,91 Jefferson St, New York City,NY,10001 +191804,Bose SoundSport Headphones,1,99.99,2019-04-13 09:22:00,120 Lincoln St, Los Angeles,CA,90001 +191805,AAA Batteries (4-pack),2,2.99,2019-04-16 13:38:00,42 Ridge St, New York City,NY,10001 +191806,Apple Airpods Headphones,1,150.0,2019-04-05 18:13:00,673 River St, San Francisco,CA,94016 +191807,Lightning Charging Cable,2,14.95,2019-04-21 23:08:00,299 Forest St, Los Angeles,CA,90001 +191808,Wired Headphones,1,11.99,2019-04-19 05:25:00,531 Jackson St, Los Angeles,CA,90001 +191809,LG Dryer,1,600.0,2019-04-01 10:57:00,986 Ridge St, San Francisco,CA,94016 +191810,ThinkPad Laptop,1,999.99,2019-04-03 13:12:00,574 Cedar St, San Francisco,CA,94016 +191811,Wired Headphones,1,11.99,2019-04-09 15:36:00,140 Lincoln St, Atlanta,GA,30301 +191812,Lightning Charging Cable,1,14.95,2019-04-23 11:02:00,359 11th St, Dallas,TX,75001 +191813,27in 4K Gaming Monitor,1,389.99,2019-04-10 07:39:00,787 4th St, San Francisco,CA,94016 +191814,AA Batteries (4-pack),1,3.84,2019-04-03 19:19:00,739 11th St, Portland,OR,97035 +191815,AAA Batteries (4-pack),1,2.99,2019-04-12 21:49:00,126 Meadow St, San Francisco,CA,94016 +191816,Wired Headphones,1,11.99,2019-04-04 17:22:00,547 10th St, San Francisco,CA,94016 +191817,Flatscreen TV,1,300.0,2019-04-30 14:53:00,857 10th St, Atlanta,GA,30301 +191818,27in FHD Monitor,1,149.99,2019-04-25 15:22:00,242 Pine St, Dallas,TX,75001 +191819,Wired Headphones,1,11.99,2019-04-20 09:53:00,745 Maple St, Seattle,WA,98101 +191820,34in Ultrawide Monitor,1,379.99,2019-04-23 16:45:00,388 South St, New York City,NY,10001 +191821,Flatscreen TV,1,300.0,2019-04-26 12:15:00,651 Main St, San Francisco,CA,94016 +191822,Wired Headphones,1,11.99,2019-04-25 10:48:00,603 Forest St, Boston,MA,02215 +191823,AAA Batteries (4-pack),2,2.99,2019-04-30 13:04:00,178 11th St, San Francisco,CA,94016 +191824,34in Ultrawide Monitor,1,379.99,2019-04-30 16:09:00,419 10th St, Los Angeles,CA,90001 +191825,Wired Headphones,2,11.99,2019-04-10 15:02:00,417 Cherry St, New York City,NY,10001 +191826,Lightning Charging Cable,1,14.95,2019-04-20 21:58:00,549 Wilson St, Los Angeles,CA,90001 +191827,Bose SoundSport Headphones,1,99.99,2019-04-03 16:18:00,788 Meadow St, Portland,OR,97035 +191828,Macbook Pro Laptop,1,1700.0,2019-04-08 15:07:00,119 West St, Portland,OR,97035 +191829,20in Monitor,1,109.99,2019-04-18 10:42:00,557 Jackson St, Dallas,TX,75001 +191830,Wired Headphones,2,11.99,2019-04-03 18:10:00,971 2nd St, New York City,NY,10001 +191831,AAA Batteries (4-pack),2,2.99,2019-04-22 16:10:00,37 West St, Boston,MA,02215 +191832,AAA Batteries (4-pack),1,2.99,2019-04-09 00:46:00,118 Spruce St, Dallas,TX,75001 +191833,AA Batteries (4-pack),4,3.84,2019-04-29 21:56:00,233 River St, New York City,NY,10001 +191834,iPhone,1,700.0,2019-04-26 13:17:00,433 9th St, New York City,NY,10001 +191835,Apple Airpods Headphones,1,150.0,2019-04-13 12:13:00,629 1st St, New York City,NY,10001 +191836,34in Ultrawide Monitor,1,379.99,2019-04-18 13:38:00,99 Dogwood St, Dallas,TX,75001 +191837,iPhone,1,700.0,2019-04-15 12:57:00,521 12th St, Boston,MA,02215 +191837,Wired Headphones,1,11.99,2019-04-15 12:57:00,521 12th St, Boston,MA,02215 +191838,Lightning Charging Cable,1,14.95,2019-04-12 15:05:00,64 10th St, Los Angeles,CA,90001 +191839,USB-C Charging Cable,2,11.95,2019-04-02 17:42:00,833 1st St, San Francisco,CA,94016 +191840,20in Monitor,1,109.99,2019-04-17 19:01:00,310 6th St, Seattle,WA,98101 +191841,27in FHD Monitor,1,149.99,2019-04-02 17:39:00,125 Spruce St, San Francisco,CA,94016 +191842,Flatscreen TV,1,300.0,2019-04-23 14:59:00,462 Meadow St, Portland,OR,97035 +191843,27in 4K Gaming Monitor,1,389.99,2019-04-27 16:12:00,589 Lincoln St, New York City,NY,10001 +191844,Wired Headphones,1,11.99,2019-04-26 21:06:00,731 Hill St, Dallas,TX,75001 +191845,USB-C Charging Cable,1,11.95,2019-04-26 06:29:00,54 Highland St, Seattle,WA,98101 +191846,AAA Batteries (4-pack),2,2.99,2019-04-04 02:25:00,752 4th St, Seattle,WA,98101 +191847,34in Ultrawide Monitor,1,379.99,2019-04-24 09:32:00,568 Adams St, Los Angeles,CA,90001 +191848,USB-C Charging Cable,1,11.95,2019-04-29 20:05:00,689 Maple St, New York City,NY,10001 +191849,USB-C Charging Cable,1,11.95,2019-04-16 17:00:00,319 Meadow St, Boston,MA,02215 +191850,Macbook Pro Laptop,1,1700.0,2019-04-01 12:06:00,579 Wilson St, Los Angeles,CA,90001 +191851,Lightning Charging Cable,1,14.95,2019-04-09 00:32:00,510 Chestnut St, Los Angeles,CA,90001 +191852,AAA Batteries (4-pack),1,2.99,2019-04-20 12:06:00,396 Dogwood St, Boston,MA,02215 +191853,ThinkPad Laptop,1,999.99,2019-04-13 13:58:00,359 Ridge St, San Francisco,CA,94016 +191854,Apple Airpods Headphones,1,150.0,2019-04-25 09:32:00,71 Hickory St, Los Angeles,CA,90001 +191855,Apple Airpods Headphones,1,150.0,2019-04-04 20:41:00,419 Lakeview St, Los Angeles,CA,90001 +191856,USB-C Charging Cable,1,11.95,2019-04-13 21:21:00,299 8th St, Los Angeles,CA,90001 +191857,Lightning Charging Cable,1,14.95,2019-04-21 09:52:00,581 Lincoln St, San Francisco,CA,94016 +191858,Apple Airpods Headphones,1,150.0,2019-04-10 18:47:00,598 Cedar St, Portland,OR,97035 +191859,Lightning Charging Cable,1,14.95,2019-04-02 11:21:00,102 South St, Los Angeles,CA,90001 +191860,USB-C Charging Cable,1,11.95,2019-04-28 10:33:00,251 Elm St, San Francisco,CA,94016 +191861,Lightning Charging Cable,1,14.95,2019-04-29 13:11:00,465 2nd St, Dallas,TX,75001 +191861,27in FHD Monitor,1,149.99,2019-04-29 13:11:00,465 2nd St, Dallas,TX,75001 +191862,27in FHD Monitor,1,149.99,2019-04-11 01:09:00,62 Lincoln St, Portland,OR,97035 +191863,Lightning Charging Cable,1,14.95,2019-04-29 10:51:00,504 North St, Portland,OR,97035 +191864,ThinkPad Laptop,1,999.99,2019-04-11 18:52:00,431 Lincoln St, Boston,MA,02215 +191865,27in FHD Monitor,1,149.99,2019-04-01 11:58:00,868 West St, Seattle,WA,98101 +191866,Lightning Charging Cable,1,14.95,2019-04-26 13:56:00,465 Park St, Boston,MA,02215 +191867,Lightning Charging Cable,1,14.95,2019-04-20 03:19:00,636 Ridge St, Boston,MA,02215 +191868,Macbook Pro Laptop,1,1700.0,2019-04-16 15:08:00,814 Church St, Los Angeles,CA,90001 +191869,AA Batteries (4-pack),2,3.84,2019-04-17 22:57:00,238 Lakeview St, New York City,NY,10001 +191870,Apple Airpods Headphones,1,150.0,2019-04-04 00:18:00,982 Hill St, Dallas,TX,75001 +191871,Wired Headphones,1,11.99,2019-04-10 07:39:00,527 11th St, San Francisco,CA,94016 +191872,Wired Headphones,1,11.99,2019-04-15 15:12:00,835 Spruce St, Los Angeles,CA,90001 +191873,Flatscreen TV,1,300.0,2019-04-16 10:57:00,500 5th St, Dallas,TX,75001 +191874,20in Monitor,1,109.99,2019-04-16 12:27:00,646 Adams St, Seattle,WA,98101 +191875,Apple Airpods Headphones,1,150.0,2019-04-03 20:30:00,569 Cedar St, Los Angeles,CA,90001 +191876,AAA Batteries (4-pack),1,2.99,2019-04-13 08:39:00,221 10th St, San Francisco,CA,94016 +191877,Lightning Charging Cable,1,14.95,2019-04-10 19:38:00,676 South St, San Francisco,CA,94016 +191878,USB-C Charging Cable,1,11.95,2019-04-30 18:14:00,535 Center St, San Francisco,CA,94016 +191879,AA Batteries (4-pack),1,3.84,2019-04-10 00:52:00,969 Elm St, Seattle,WA,98101 +191880,Bose SoundSport Headphones,1,99.99,2019-04-30 08:36:00,98 Cherry St, San Francisco,CA,94016 +191881,Apple Airpods Headphones,1,150.0,2019-04-06 14:14:00,51 Jefferson St, Atlanta,GA,30301 +191882,AAA Batteries (4-pack),2,2.99,2019-04-04 23:22:00,514 River St, Austin,TX,73301 +191883,AAA Batteries (4-pack),1,2.99,2019-04-08 20:15:00,46 Willow St, New York City,NY,10001 +191884,Lightning Charging Cable,1,14.95,2019-04-30 19:41:00,656 Cherry St, Austin,TX,73301 +191885,Google Phone,1,600.0,2019-04-27 13:13:00,138 Spruce St, Seattle,WA,98101 +191885,Wired Headphones,2,11.99,2019-04-27 13:13:00,138 Spruce St, Seattle,WA,98101 +191886,Apple Airpods Headphones,1,150.0,2019-04-23 18:36:00,167 14th St, Portland,OR,97035 +191887,Lightning Charging Cable,2,14.95,2019-04-16 03:32:00,118 Maple St, San Francisco,CA,94016 +191888,Lightning Charging Cable,1,14.95,2019-04-21 20:34:00,941 Forest St, Los Angeles,CA,90001 +191889,Apple Airpods Headphones,1,150.0,2019-04-02 22:11:00,143 8th St, Austin,TX,73301 +191890,Apple Airpods Headphones,1,150.0,2019-04-20 11:52:00,780 Lakeview St, Los Angeles,CA,90001 +191891,USB-C Charging Cable,2,11.95,2019-04-10 00:14:00,347 Park St, Atlanta,GA,30301 +191892,ThinkPad Laptop,1,999.99,2019-04-10 18:58:00,714 Church St, Los Angeles,CA,90001 +191893,Wired Headphones,1,11.99,2019-04-02 20:10:00,332 Lakeview St, Los Angeles,CA,90001 +191894,Wired Headphones,1,11.99,2019-04-16 15:03:00,652 Sunset St, Dallas,TX,75001 +191895,AAA Batteries (4-pack),1,2.99,2019-04-24 16:52:00,219 Washington St, Seattle,WA,98101 +191896,Wired Headphones,1,11.99,2019-04-25 14:31:00,558 West St, San Francisco,CA,94016 +191897,34in Ultrawide Monitor,1,379.99,2019-04-25 03:15:00,493 Elm St, San Francisco,CA,94016 +191898,Lightning Charging Cable,1,14.95,2019-04-15 12:10:00,310 Maple St, Los Angeles,CA,90001 +191899,Macbook Pro Laptop,1,1700.0,2019-04-07 23:45:00,819 Johnson St, Portland,ME,04101 +191900,27in FHD Monitor,1,149.99,2019-04-15 20:46:00,365 South St, Los Angeles,CA,90001 +191901,iPhone,1,700.0,2019-04-04 17:04:00,329 Johnson St, Boston,MA,02215 +191902,AA Batteries (4-pack),1,3.84,2019-04-06 18:13:00,697 14th St, San Francisco,CA,94016 +191903,iPhone,1,700.0,2019-04-15 14:10:00,702 8th St, Los Angeles,CA,90001 +191904,AAA Batteries (4-pack),1,2.99,2019-04-18 19:06:00,577 7th St, San Francisco,CA,94016 +191905,AA Batteries (4-pack),1,3.84,2019-04-22 12:21:00,167 Washington St, Dallas,TX,75001 +191906,Macbook Pro Laptop,1,1700.0,2019-04-21 13:25:00,168 Lakeview St, Boston,MA,02215 +191907,Wired Headphones,1,11.99,2019-04-07 20:18:00,820 Chestnut St, New York City,NY,10001 +191908,Apple Airpods Headphones,1,150.0,2019-04-28 18:15:00,501 Ridge St, Austin,TX,73301 +191909,20in Monitor,1,109.99,2019-04-15 14:08:00,122 West St, San Francisco,CA,94016 +191910,Macbook Pro Laptop,1,1700.0,2019-04-21 18:57:00,753 Dogwood St, Atlanta,GA,30301 +191911,27in 4K Gaming Monitor,1,389.99,2019-04-10 10:00:00,700 Willow St, Dallas,TX,75001 +191912,34in Ultrawide Monitor,1,379.99,2019-04-14 15:24:00,486 2nd St, San Francisco,CA,94016 +191913,AA Batteries (4-pack),1,3.84,2019-04-07 15:19:00,143 Main St, San Francisco,CA,94016 +191914,Apple Airpods Headphones,1,150.0,2019-04-23 08:05:00,145 Cherry St, San Francisco,CA,94016 +191915,Wired Headphones,2,11.99,2019-04-11 22:40:00,174 8th St, Austin,TX,73301 +191916,AA Batteries (4-pack),1,3.84,2019-04-19 16:30:00,795 Jefferson St, Atlanta,GA,30301 +191917,Bose SoundSport Headphones,1,99.99,2019-04-18 09:53:00,551 Center St, Austin,TX,73301 +191918,AAA Batteries (4-pack),4,2.99,2019-04-03 15:08:00,964 Wilson St, Boston,MA,02215 +191919,AA Batteries (4-pack),1,3.84,2019-04-15 15:09:00,959 Ridge St, Los Angeles,CA,90001 +191920,Wired Headphones,1,11.99,2019-04-15 08:41:00,871 Hickory St, Los Angeles,CA,90001 +191921,ThinkPad Laptop,1,999.99,2019-04-06 13:55:00,113 12th St, San Francisco,CA,94016 +191922,Vareebadd Phone,1,400.0,2019-04-20 13:31:00,968 Madison St, San Francisco,CA,94016 +191923,AA Batteries (4-pack),1,3.84,2019-04-11 17:15:00,275 Ridge St, New York City,NY,10001 +191924,ThinkPad Laptop,1,999.99,2019-04-04 23:13:00,421 5th St, Dallas,TX,75001 +191925,Bose SoundSport Headphones,1,99.99,2019-04-14 10:40:00,165 West St, Atlanta,GA,30301 +191926,AA Batteries (4-pack),1,3.84,2019-04-06 22:17:00,579 2nd St, New York City,NY,10001 +191926,AAA Batteries (4-pack),1,2.99,2019-04-06 22:17:00,579 2nd St, New York City,NY,10001 +191927,Wired Headphones,1,11.99,2019-04-24 10:07:00,240 Center St, Los Angeles,CA,90001 +191928,Apple Airpods Headphones,1,150.0,2019-04-26 01:19:00,97 Cherry St, Los Angeles,CA,90001 +191929,Apple Airpods Headphones,1,150.0,2019-04-06 09:19:00,509 Forest St, Los Angeles,CA,90001 +191930,AAA Batteries (4-pack),1,2.99,2019-04-04 15:58:00,859 7th St, New York City,NY,10001 +191931,Lightning Charging Cable,1,14.95,2019-04-15 15:53:00,313 8th St, Los Angeles,CA,90001 +191932,27in FHD Monitor,1,149.99,2019-04-15 17:55:00,544 14th St, Austin,TX,73301 +191933,AAA Batteries (4-pack),1,2.99,2019-04-24 22:53:00,759 Willow St, Los Angeles,CA,90001 +191934,Lightning Charging Cable,1,14.95,2019-04-14 11:03:00,90 Washington St, Los Angeles,CA,90001 +191935,Apple Airpods Headphones,1,150.0,2019-04-06 14:02:00,929 14th St, Atlanta,GA,30301 +191936,34in Ultrawide Monitor,1,379.99,2019-04-01 15:10:00,832 Main St, Austin,TX,73301 +191937,Apple Airpods Headphones,1,150.0,2019-04-28 09:38:00,171 Madison St, Austin,TX,73301 +191938,Google Phone,1,600.0,2019-04-27 11:13:00,218 Elm St, Dallas,TX,75001 +191939,AAA Batteries (4-pack),1,2.99,2019-04-03 21:15:00,316 North St, Dallas,TX,75001 +191940,USB-C Charging Cable,1,11.95,2019-04-28 06:35:00,4 Lakeview St, New York City,NY,10001 +191941,USB-C Charging Cable,1,11.95,2019-04-11 08:39:00,497 Jefferson St, Boston,MA,02215 +191942,AAA Batteries (4-pack),1,2.99,2019-04-08 19:48:00,886 4th St, Boston,MA,02215 +191943,Lightning Charging Cable,1,14.95,2019-04-26 20:44:00,123 8th St, Boston,MA,02215 +191944,Wired Headphones,1,11.99,2019-04-16 19:48:00,914 6th St, Atlanta,GA,30301 +191945,Apple Airpods Headphones,1,150.0,2019-04-08 15:59:00,384 12th St, Atlanta,GA,30301 +191945,Bose SoundSport Headphones,1,99.99,2019-04-08 15:59:00,384 12th St, Atlanta,GA,30301 +191946,AA Batteries (4-pack),2,3.84,2019-04-13 21:22:00,797 Adams St, Atlanta,GA,30301 +191947,Flatscreen TV,1,300.0,2019-04-01 08:38:00,289 6th St, Dallas,TX,75001 +191948,Google Phone,1,600.0,2019-04-10 08:56:00,731 Center St, Dallas,TX,75001 +191949,ThinkPad Laptop,1,999.99,2019-04-16 21:37:00,69 1st St, New York City,NY,10001 +191950,USB-C Charging Cable,1,11.95,2019-04-10 16:55:00,371 11th St, Seattle,WA,98101 +191951,Wired Headphones,1,11.99,2019-04-11 11:55:00,138 Church St, Los Angeles,CA,90001 +191952,34in Ultrawide Monitor,1,379.99,2019-04-26 13:13:00,603 7th St, Los Angeles,CA,90001 +191953,Bose SoundSport Headphones,1,99.99,2019-04-04 01:29:00,761 Meadow St, Dallas,TX,75001 +191954,AA Batteries (4-pack),4,3.84,2019-04-04 11:36:00,369 Madison St, San Francisco,CA,94016 +191955,Bose SoundSport Headphones,1,99.99,2019-04-06 15:39:00,185 Jackson St, Dallas,TX,75001 +191956,Flatscreen TV,1,300.0,2019-04-23 23:41:00,654 4th St, Los Angeles,CA,90001 +191957,iPhone,1,700.0,2019-04-24 09:41:00,824 Church St, Los Angeles,CA,90001 +191958,AAA Batteries (4-pack),1,2.99,2019-04-30 15:44:00,503 Hill St, Seattle,WA,98101 +191958,Lightning Charging Cable,1,14.95,2019-04-30 15:44:00,503 Hill St, Seattle,WA,98101 +191959,Apple Airpods Headphones,1,150.0,2019-04-16 19:32:00,397 7th St, Atlanta,GA,30301 +191960,AA Batteries (4-pack),1,3.84,2019-04-06 23:05:00,812 Elm St, San Francisco,CA,94016 +191961,Lightning Charging Cable,1,14.95,2019-04-16 06:54:00,189 River St, San Francisco,CA,94016 +191962,Google Phone,1,600.0,2019-04-18 11:31:00,899 River St, Dallas,TX,75001 +191963,Google Phone,1,600.0,2019-04-08 12:04:00,36 8th St, Atlanta,GA,30301 +191963,USB-C Charging Cable,1,11.95,2019-04-08 12:04:00,36 8th St, Atlanta,GA,30301 +191963,Bose SoundSport Headphones,1,99.99,2019-04-08 12:04:00,36 8th St, Atlanta,GA,30301 +191964,Lightning Charging Cable,1,14.95,2019-04-03 19:48:00,747 Park St, Austin,TX,73301 +191965,Wired Headphones,1,11.99,2019-04-24 20:14:00,635 Willow St, Los Angeles,CA,90001 +191966,Apple Airpods Headphones,1,150.0,2019-04-19 21:37:00,104 Johnson St, Los Angeles,CA,90001 +191967,USB-C Charging Cable,1,11.95,2019-04-03 17:52:00,246 Park St, New York City,NY,10001 +191968,Lightning Charging Cable,1,14.95,2019-04-27 16:58:00,960 Highland St, Atlanta,GA,30301 +191969,Flatscreen TV,1,300.0,2019-04-17 17:43:00,909 West St, San Francisco,CA,94016 +191970,USB-C Charging Cable,1,11.95,2019-04-06 12:00:00,784 Chestnut St, New York City,NY,10001 +191971,Wired Headphones,1,11.99,2019-04-05 17:56:00,286 5th St, San Francisco,CA,94016 +191972,Apple Airpods Headphones,1,150.0,2019-04-06 19:35:00,801 Sunset St, Seattle,WA,98101 +191973,AAA Batteries (4-pack),3,2.99,2019-04-22 12:24:00,348 Forest St, San Francisco,CA,94016 +191974,Bose SoundSport Headphones,1,99.99,2019-04-11 18:11:00,467 Willow St, Atlanta,GA,30301 +191974,Wired Headphones,1,11.99,2019-04-11 18:11:00,467 Willow St, Atlanta,GA,30301 +191975,AAA Batteries (4-pack),1,2.99,2019-04-20 10:42:00,419 Main St, Seattle,WA,98101 +191976,AAA Batteries (4-pack),1,2.99,2019-04-16 22:21:00,269 Johnson St, Los Angeles,CA,90001 +191977,ThinkPad Laptop,1,999.99,2019-04-24 20:03:00,20 Madison St, Dallas,TX,75001 +191978,AAA Batteries (4-pack),1,2.99,2019-04-17 22:51:00,410 Main St, Atlanta,GA,30301 +191979,27in 4K Gaming Monitor,1,389.99,2019-04-23 18:01:00,677 7th St, Austin,TX,73301 +191980,USB-C Charging Cable,1,11.95,2019-04-29 23:27:00,621 Johnson St, Dallas,TX,75001 +191981,AAA Batteries (4-pack),1,2.99,2019-04-25 14:50:00,400 Pine St, Los Angeles,CA,90001 +191982,AA Batteries (4-pack),1,3.84,2019-04-15 18:09:00,759 Jackson St, Atlanta,GA,30301 +191983,Apple Airpods Headphones,1,150.0,2019-04-14 12:54:00,891 Sunset St, Los Angeles,CA,90001 +191983,Bose SoundSport Headphones,1,99.99,2019-04-14 12:54:00,891 Sunset St, Los Angeles,CA,90001 +191984,AA Batteries (4-pack),2,3.84,2019-04-21 19:19:00,325 Jefferson St, Los Angeles,CA,90001 +191985,Bose SoundSport Headphones,1,99.99,2019-04-08 11:06:00,221 Willow St, San Francisco,CA,94016 +191986,AA Batteries (4-pack),2,3.84,2019-04-14 19:35:00,433 Lincoln St, Los Angeles,CA,90001 +191987,Wired Headphones,1,11.99,2019-04-16 16:34:00,247 Hickory St, Dallas,TX,75001 +191988,AAA Batteries (4-pack),1,2.99,2019-04-19 18:08:00,78 2nd St, San Francisco,CA,94016 +191989,USB-C Charging Cable,1,11.95,2019-04-16 21:15:00,42 Chestnut St, Boston,MA,02215 +191990,iPhone,1,700.0,2019-04-23 18:00:00,688 Wilson St, San Francisco,CA,94016 +191990,Lightning Charging Cable,1,14.95,2019-04-23 18:00:00,688 Wilson St, San Francisco,CA,94016 +191991,AAA Batteries (4-pack),1,2.99,2019-04-29 16:37:00,299 Lake St, San Francisco,CA,94016 +191992,AA Batteries (4-pack),1,3.84,2019-04-02 11:05:00,825 Main St, San Francisco,CA,94016 +191993,Bose SoundSport Headphones,1,99.99,2019-04-25 21:07:00,94 South St, Seattle,WA,98101 +191994,27in FHD Monitor,1,149.99,2019-04-26 13:11:00,34 Elm St, Atlanta,GA,30301 +191995,Lightning Charging Cable,1,14.95,2019-04-27 17:26:00,613 Washington St, Seattle,WA,98101 +191996,27in FHD Monitor,1,149.99,2019-04-22 17:34:00,193 Walnut St, Boston,MA,02215 +191997,34in Ultrawide Monitor,1,379.99,2019-04-20 08:30:00,308 Highland St, San Francisco,CA,94016 +191998,Apple Airpods Headphones,1,150.0,2019-04-09 13:59:00,673 Pine St, Dallas,TX,75001 +191999,Lightning Charging Cable,1,14.95,2019-04-08 22:02:00,928 Elm St, Dallas,TX,75001 +192000,Apple Airpods Headphones,1,150.0,2019-04-01 19:03:00,398 8th St, Seattle,WA,98101 +192001,iPhone,1,700.0,2019-04-24 17:53:00,579 4th St, Los Angeles,CA,90001 +192002,AA Batteries (4-pack),1,3.84,2019-04-10 21:46:00,923 7th St, Seattle,WA,98101 +192002,Lightning Charging Cable,2,14.95,2019-04-10 21:46:00,923 7th St, Seattle,WA,98101 +192003,USB-C Charging Cable,1,11.95,2019-04-12 16:44:00,312 Jackson St, San Francisco,CA,94016 +192004,Lightning Charging Cable,1,14.95,2019-04-26 18:32:00,794 5th St, Boston,MA,02215 +192005,34in Ultrawide Monitor,1,379.99,2019-04-15 09:54:00,231 Ridge St, Boston,MA,02215 +192006,AA Batteries (4-pack),1,3.84,2019-04-16 12:44:00,874 Highland St, Los Angeles,CA,90001 +192007,USB-C Charging Cable,1,11.95,2019-04-25 10:12:00,696 4th St, Portland,OR,97035 +192008,Wired Headphones,1,11.99,2019-04-21 17:37:00,284 12th St, Los Angeles,CA,90001 +192009,Vareebadd Phone,1,400.0,2019-04-21 15:55:00,944 Jefferson St, Los Angeles,CA,90001 +192010,Macbook Pro Laptop,1,1700.0,2019-04-17 11:45:00,891 North St, New York City,NY,10001 +192011,27in FHD Monitor,1,149.99,2019-04-10 17:05:00,712 Lakeview St, San Francisco,CA,94016 +192012,Bose SoundSport Headphones,1,99.99,2019-04-16 23:58:00,810 Dogwood St, San Francisco,CA,94016 +192013,USB-C Charging Cable,1,11.95,2019-04-13 18:41:00,473 4th St, Atlanta,GA,30301 +192014,USB-C Charging Cable,1,11.95,2019-04-11 16:16:00,153 6th St, New York City,NY,10001 +192015,AA Batteries (4-pack),1,3.84,2019-04-26 23:03:00,615 Cedar St, New York City,NY,10001 +192016,AA Batteries (4-pack),1,3.84,2019-04-02 19:06:00,958 Walnut St, San Francisco,CA,94016 +192017,Lightning Charging Cable,1,14.95,2019-04-12 16:29:00,405 5th St, Portland,OR,97035 +192018,AA Batteries (4-pack),1,3.84,2019-04-16 19:52:00,347 Wilson St, New York City,NY,10001 +192019,Lightning Charging Cable,1,14.95,2019-04-13 17:40:00,416 9th St, Boston,MA,02215 +192020,USB-C Charging Cable,1,11.95,2019-04-19 11:45:00,899 Pine St, San Francisco,CA,94016 +192021,USB-C Charging Cable,1,11.95,2019-04-05 07:49:00,832 Lincoln St, Los Angeles,CA,90001 +192022,Bose SoundSport Headphones,1,99.99,2019-04-21 21:26:00,555 Adams St, Boston,MA,02215 +192023,Lightning Charging Cable,1,14.95,2019-04-01 19:31:00,390 4th St, Los Angeles,CA,90001 +192024,ThinkPad Laptop,1,999.99,2019-04-04 18:40:00,199 Meadow St, Dallas,TX,75001 +192025,Lightning Charging Cable,1,14.95,2019-04-07 17:05:00,515 Dogwood St, Atlanta,GA,30301 +192026,Wired Headphones,1,11.99,2019-04-23 15:56:00,714 7th St, Atlanta,GA,30301 +192027,AA Batteries (4-pack),1,3.84,2019-04-28 21:10:00,711 Dogwood St, Atlanta,GA,30301 +192028,Apple Airpods Headphones,1,150.0,2019-04-04 19:47:00,556 Ridge St, New York City,NY,10001 +192029,iPhone,1,700.0,2019-04-04 00:05:00,671 Church St, New York City,NY,10001 +192030,AAA Batteries (4-pack),2,2.99,2019-04-24 18:02:00,807 Church St, Los Angeles,CA,90001 +192031,USB-C Charging Cable,1,11.95,2019-04-06 20:05:00,288 4th St, Portland,OR,97035 +192032,Lightning Charging Cable,1,14.95,2019-04-23 17:29:00,936 10th St, Austin,TX,73301 +192033,34in Ultrawide Monitor,1,379.99,2019-04-03 18:46:00,241 13th St, Los Angeles,CA,90001 +192034,Lightning Charging Cable,1,14.95,2019-04-23 13:17:00,504 River St, Dallas,TX,75001 +192035,Flatscreen TV,1,300.0,2019-04-01 14:57:00,894 11th St, Atlanta,GA,30301 +192036,Flatscreen TV,1,300.0,2019-04-30 12:32:00,934 9th St, San Francisco,CA,94016 +192037,Wired Headphones,1,11.99,2019-04-16 23:53:00,418 Adams St, Atlanta,GA,30301 +192038,USB-C Charging Cable,1,11.95,2019-04-20 02:17:00,994 Meadow St, Dallas,TX,75001 +192039,Wired Headphones,1,11.99,2019-04-24 21:03:00,124 Hickory St, San Francisco,CA,94016 +192040,iPhone,1,700.0,2019-04-06 10:54:00,935 Jefferson St, Atlanta,GA,30301 +192040,Lightning Charging Cable,1,14.95,2019-04-06 10:54:00,935 Jefferson St, Atlanta,GA,30301 +192041,USB-C Charging Cable,1,11.95,2019-04-10 20:28:00,999 Lake St, San Francisco,CA,94016 +192042,27in 4K Gaming Monitor,1,389.99,2019-04-23 10:11:00,631 Madison St, Los Angeles,CA,90001 +192043,USB-C Charging Cable,1,11.95,2019-04-08 12:10:00,49 13th St, Seattle,WA,98101 +192044,Wired Headphones,1,11.99,2019-04-06 15:34:00,422 8th St, San Francisco,CA,94016 +192045,ThinkPad Laptop,1,999.99,2019-04-25 12:40:00,180 South St, New York City,NY,10001 +192046,AAA Batteries (4-pack),2,2.99,2019-04-14 19:03:00,969 4th St, San Francisco,CA,94016 +192047,Google Phone,1,600.0,2019-04-18 11:50:00,73 11th St, San Francisco,CA,94016 +192048,USB-C Charging Cable,1,11.95,2019-04-16 13:33:00,53 Sunset St, Atlanta,GA,30301 +192049,Bose SoundSport Headphones,1,99.99,2019-04-24 20:25:00,603 Chestnut St, San Francisco,CA,94016 +192050,USB-C Charging Cable,1,11.95,2019-04-11 16:08:00,109 9th St, San Francisco,CA,94016 +192051,Wired Headphones,1,11.99,2019-04-01 20:39:00,413 South St, Los Angeles,CA,90001 +192052,LG Dryer,1,600.0,2019-04-02 22:49:00,455 West St, Atlanta,GA,30301 +192053,Lightning Charging Cable,1,14.95,2019-04-15 03:29:00,280 Lake St, Los Angeles,CA,90001 +192054,AAA Batteries (4-pack),1,2.99,2019-04-28 09:46:00,651 9th St, Boston,MA,02215 +192055,Lightning Charging Cable,1,14.95,2019-04-22 11:07:00,534 Maple St, Dallas,TX,75001 +192056,AA Batteries (4-pack),2,3.84,2019-04-06 12:18:00,849 Pine St, New York City,NY,10001 +192057,USB-C Charging Cable,1,11.95,2019-04-30 10:09:00,942 Jefferson St, Boston,MA,02215 +192058,Bose SoundSport Headphones,1,99.99,2019-04-19 22:29:00,749 River St, New York City,NY,10001 +192059,ThinkPad Laptop,1,999.99,2019-04-25 00:24:00,267 Cedar St, Los Angeles,CA,90001 +192060,USB-C Charging Cable,1,11.95,2019-04-14 13:05:00,621 Forest St, Los Angeles,CA,90001 +192061,Google Phone,1,600.0,2019-04-27 21:19:00,658 2nd St, New York City,NY,10001 +192062,Lightning Charging Cable,2,14.95,2019-04-15 15:06:00,387 7th St, San Francisco,CA,94016 +192063,Lightning Charging Cable,1,14.95,2019-04-21 14:31:00,104 Lake St, Seattle,WA,98101 +192064,Wired Headphones,1,11.99,2019-04-14 18:34:00,226 12th St, New York City,NY,10001 +192065,27in FHD Monitor,1,149.99,2019-04-15 15:21:00,157 Pine St, Atlanta,GA,30301 +192066,AAA Batteries (4-pack),1,2.99,2019-04-30 08:43:00,119 Highland St, San Francisco,CA,94016 +192067,AA Batteries (4-pack),1,3.84,2019-04-04 14:48:00,539 Spruce St, Atlanta,GA,30301 +192068,Lightning Charging Cable,1,14.95,2019-04-01 20:14:00,987 Cedar St, Los Angeles,CA,90001 +192069,Apple Airpods Headphones,1,150.0,2019-04-03 18:02:00,191 5th St, New York City,NY,10001 +192070,USB-C Charging Cable,1,11.95,2019-04-01 13:19:00,985 Highland St, New York City,NY,10001 +192071,AA Batteries (4-pack),1,3.84,2019-04-11 22:25:00,868 Center St, Austin,TX,73301 +192072,34in Ultrawide Monitor,1,379.99,2019-04-11 18:20:00,568 Adams St, Austin,TX,73301 +192073,Apple Airpods Headphones,1,150.0,2019-04-16 20:44:00,867 Hill St, Austin,TX,73301 +192074,USB-C Charging Cable,1,11.95,2019-04-29 08:29:00,772 Wilson St, New York City,NY,10001 +192075,27in 4K Gaming Monitor,1,389.99,2019-04-20 12:07:00,607 6th St, Boston,MA,02215 +192076,AA Batteries (4-pack),1,3.84,2019-04-09 20:18:00,654 Cedar St, Portland,OR,97035 +192077,AA Batteries (4-pack),1,3.84,2019-04-08 00:15:00,851 Church St, Seattle,WA,98101 +192078,AA Batteries (4-pack),1,3.84,2019-04-23 15:47:00,650 West St, Austin,TX,73301 +192079,Apple Airpods Headphones,1,150.0,2019-04-07 12:15:00,235 Highland St, Portland,OR,97035 +192080,AA Batteries (4-pack),1,3.84,2019-04-12 09:19:00,312 Ridge St, Dallas,TX,75001 +192080,Flatscreen TV,1,300.0,2019-04-12 09:19:00,312 Ridge St, Dallas,TX,75001 +192081,AA Batteries (4-pack),1,3.84,2019-04-24 01:45:00,999 Pine St, Boston,MA,02215 +192082,AAA Batteries (4-pack),3,2.99,2019-04-07 13:10:00,930 Lake St, Atlanta,GA,30301 +192083,27in FHD Monitor,1,149.99,2019-04-27 16:55:00,41 Cedar St, Los Angeles,CA,90001 +192084,USB-C Charging Cable,1,11.95,2019-04-11 16:57:00,435 Highland St, Atlanta,GA,30301 +192085,ThinkPad Laptop,1,999.99,2019-04-07 10:36:00,572 Lake St, San Francisco,CA,94016 +192086,20in Monitor,1,109.99,2019-04-07 12:01:00,949 West St, Dallas,TX,75001 +192087,AAA Batteries (4-pack),2,2.99,2019-04-18 12:21:00,221 2nd St, New York City,NY,10001 +192088,AAA Batteries (4-pack),1,2.99,2019-04-14 13:22:00,904 Center St, Boston,MA,02215 +192089,27in FHD Monitor,1,149.99,2019-04-30 12:37:00,584 Johnson St, Portland,OR,97035 +192090,USB-C Charging Cable,1,11.95,2019-04-29 19:07:00,114 Jefferson St, San Francisco,CA,94016 +192091,Bose SoundSport Headphones,1,99.99,2019-04-13 19:48:00,895 South St, Dallas,TX,75001 +192092,iPhone,1,700.0,2019-04-03 23:21:00,92 Church St, Seattle,WA,98101 +192093,27in 4K Gaming Monitor,1,389.99,2019-04-22 19:27:00,696 Maple St, Los Angeles,CA,90001 +192094,Flatscreen TV,1,300.0,2019-04-16 14:22:00,759 Jackson St, Atlanta,GA,30301 +192095,20in Monitor,1,109.99,2019-04-03 14:03:00,232 Main St, San Francisco,CA,94016 +192096,AA Batteries (4-pack),1,3.84,2019-04-10 11:29:00,584 Madison St, Atlanta,GA,30301 +192097,USB-C Charging Cable,1,11.95,2019-04-29 20:16:00,187 Center St, Boston,MA,02215 +192098,iPhone,1,700.0,2019-04-11 10:55:00,692 Washington St, San Francisco,CA,94016 +192099,Bose SoundSport Headphones,1,99.99,2019-04-02 19:26:00,41 Walnut St, New York City,NY,10001 +192100,iPhone,1,700.0,2019-04-17 19:20:00,245 Jackson St, San Francisco,CA,94016 +192101,USB-C Charging Cable,1,11.95,2019-04-13 16:56:00,841 Forest St, Seattle,WA,98101 +192102,Apple Airpods Headphones,1,150.0,2019-04-19 12:19:00,694 11th St, Los Angeles,CA,90001 +192103,27in FHD Monitor,1,149.99,2019-04-22 21:46:00,956 Wilson St, Dallas,TX,75001 +192104,ThinkPad Laptop,1,999.99,2019-04-23 20:32:00,255 Main St, Boston,MA,02215 +192105,34in Ultrawide Monitor,2,379.99,2019-04-03 07:06:00,950 Hill St, San Francisco,CA,94016 +192106,Apple Airpods Headphones,1,150.0,2019-04-15 20:11:00,438 North St, San Francisco,CA,94016 +192107,AA Batteries (4-pack),1,3.84,2019-04-21 09:48:00,693 Hill St, San Francisco,CA,94016 +192108,USB-C Charging Cable,1,11.95,2019-04-17 18:11:00,95 9th St, New York City,NY,10001 +192109,AA Batteries (4-pack),1,3.84,2019-04-16 21:56:00,273 Elm St, San Francisco,CA,94016 +192110,Apple Airpods Headphones,1,150.0,2019-04-24 22:05:00,528 Lakeview St, San Francisco,CA,94016 +192111,27in 4K Gaming Monitor,1,389.99,2019-04-03 20:46:00,557 River St, Dallas,TX,75001 +192112,AAA Batteries (4-pack),1,2.99,2019-04-24 10:00:00,421 Lakeview St, San Francisco,CA,94016 +192113,AAA Batteries (4-pack),1,2.99,2019-04-13 23:43:00,484 River St, Los Angeles,CA,90001 +192114,AA Batteries (4-pack),1,3.84,2019-04-05 17:40:00,569 Lake St, San Francisco,CA,94016 +192115,AAA Batteries (4-pack),1,2.99,2019-04-13 22:08:00,844 River St, Portland,OR,97035 +192116,AA Batteries (4-pack),1,3.84,2019-04-22 22:35:00,623 5th St, Portland,OR,97035 +192117,Wired Headphones,1,11.99,2019-04-08 13:55:00,366 Dogwood St, San Francisco,CA,94016 +192118,AAA Batteries (4-pack),2,2.99,2019-04-09 13:19:00,295 13th St, Boston,MA,02215 +192119,27in FHD Monitor,1,149.99,2019-04-03 14:10:00,283 Sunset St, Atlanta,GA,30301 +192120,Bose SoundSport Headphones,1,99.99,2019-04-25 17:12:00,926 Cedar St, Los Angeles,CA,90001 +192121,USB-C Charging Cable,1,11.95,2019-04-18 22:25:00,5 Sunset St, San Francisco,CA,94016 +192122,Bose SoundSport Headphones,2,99.99,2019-04-04 14:35:00,747 Main St, New York City,NY,10001 +192123,27in FHD Monitor,1,149.99,2019-04-22 18:32:00,809 Willow St, New York City,NY,10001 +192124,27in FHD Monitor,1,149.99,2019-04-22 11:39:00,40 Park St, Seattle,WA,98101 +192125,Macbook Pro Laptop,1,1700.0,2019-04-02 00:13:00,4 Elm St, Los Angeles,CA,90001 +192126,Bose SoundSport Headphones,1,99.99,2019-04-09 20:22:00,92 2nd St, Boston,MA,02215 +192127,34in Ultrawide Monitor,1,379.99,2019-04-15 16:18:00,22 11th St, Los Angeles,CA,90001 +192128,ThinkPad Laptop,1,999.99,2019-04-27 12:33:00,417 Johnson St, Los Angeles,CA,90001 +192129,AAA Batteries (4-pack),2,2.99,2019-04-10 20:06:00,856 Walnut St, Boston,MA,02215 +192130,AAA Batteries (4-pack),5,2.99,2019-04-10 22:36:00,565 Forest St, San Francisco,CA,94016 +192131,iPhone,1,700.0,2019-04-20 14:47:00,877 Meadow St, Boston,MA,02215 +192132,AAA Batteries (4-pack),1,2.99,2019-04-05 19:09:00,844 11th St, San Francisco,CA,94016 +192133,34in Ultrawide Monitor,1,379.99,2019-04-09 15:37:00,203 9th St, Boston,MA,02215 +192134,AA Batteries (4-pack),1,3.84,2019-04-16 11:00:00,9 5th St, Seattle,WA,98101 +192135,iPhone,1,700.0,2019-04-29 23:02:00,926 14th St, Los Angeles,CA,90001 +192136,Bose SoundSport Headphones,1,99.99,2019-04-02 09:14:00,859 Jefferson St, Atlanta,GA,30301 +192137,Lightning Charging Cable,1,14.95,2019-04-20 11:21:00,127 Ridge St, Los Angeles,CA,90001 +192138,iPhone,1,700.0,2019-04-15 17:34:00,678 Walnut St, Atlanta,GA,30301 +192139,Macbook Pro Laptop,1,1700.0,2019-04-03 14:27:00,658 Adams St, San Francisco,CA,94016 +192140,34in Ultrawide Monitor,1,379.99,2019-04-23 18:45:00,181 Lake St, Portland,OR,97035 +192141,AA Batteries (4-pack),3,3.84,2019-04-11 20:35:00,84 Adams St, Boston,MA,02215 +192142,20in Monitor,1,109.99,2019-04-04 13:24:00,361 Hill St, Los Angeles,CA,90001 +192142,Apple Airpods Headphones,1,150.0,2019-04-04 13:24:00,361 Hill St, Los Angeles,CA,90001 +192143,Bose SoundSport Headphones,2,99.99,2019-04-14 19:52:00,81 5th St, San Francisco,CA,94016 +192144,Wired Headphones,1,11.99,2019-04-03 12:39:00,856 Park St, Los Angeles,CA,90001 +192145,AA Batteries (4-pack),1,3.84,2019-04-05 07:00:00,851 Lakeview St, Los Angeles,CA,90001 +192146,Flatscreen TV,1,300.0,2019-04-08 11:30:00,210 Hickory St, Atlanta,GA,30301 +192147,Lightning Charging Cable,1,14.95,2019-04-04 15:56:00,234 Johnson St, Seattle,WA,98101 +192148,Bose SoundSport Headphones,1,99.99,2019-04-02 13:04:00,552 Hill St, San Francisco,CA,94016 +192149,Apple Airpods Headphones,1,150.0,2019-04-04 11:02:00,73 12th St, Boston,MA,02215 +192150,Flatscreen TV,1,300.0,2019-04-22 19:55:00,746 Highland St, Portland,OR,97035 +192151,Lightning Charging Cable,1,14.95,2019-04-24 10:21:00,196 Elm St, Los Angeles,CA,90001 +192152,Lightning Charging Cable,1,14.95,2019-04-23 17:26:00,686 Dogwood St, San Francisco,CA,94016 +192153,27in 4K Gaming Monitor,1,389.99,2019-04-05 14:51:00,819 Center St, San Francisco,CA,94016 +192154,AA Batteries (4-pack),1,3.84,2019-04-07 16:32:00,76 Dogwood St, Austin,TX,73301 +192155,Flatscreen TV,1,300.0,2019-04-05 18:04:00,371 Hickory St, San Francisco,CA,94016 +192156,34in Ultrawide Monitor,1,379.99,2019-04-06 18:16:00,345 7th St, Portland,OR,97035 +192157,USB-C Charging Cable,1,11.95,2019-04-24 04:56:00,758 Willow St, San Francisco,CA,94016 +192158,Apple Airpods Headphones,1,150.0,2019-04-08 18:39:00,264 9th St, San Francisco,CA,94016 +192159,Bose SoundSport Headphones,1,99.99,2019-04-28 16:54:00,299 Lincoln St, Seattle,WA,98101 +192160,AAA Batteries (4-pack),5,2.99,2019-04-22 00:03:00,498 Washington St, Atlanta,GA,30301 +192161,AAA Batteries (4-pack),1,2.99,2019-04-01 13:32:00,603 7th St, Portland,OR,97035 +192162,27in FHD Monitor,1,149.99,2019-04-19 10:06:00,646 Spruce St, Boston,MA,02215 +192163,AAA Batteries (4-pack),1,2.99,2019-04-25 19:41:00,495 Hill St, Portland,OR,97035 +192164,Wired Headphones,1,11.99,2019-04-29 15:01:00,553 9th St, Atlanta,GA,30301 +192165,AAA Batteries (4-pack),1,2.99,2019-04-19 16:18:00,524 Johnson St, San Francisco,CA,94016 +192166,27in FHD Monitor,1,149.99,2019-04-26 10:49:00,523 North St, Los Angeles,CA,90001 +192167,Lightning Charging Cable,1,14.95,2019-04-21 21:22:00,564 Madison St, Los Angeles,CA,90001 +192168,27in 4K Gaming Monitor,1,389.99,2019-04-12 17:13:00,673 North St, New York City,NY,10001 +192169,Lightning Charging Cable,1,14.95,2019-04-04 18:32:00,725 Hickory St, New York City,NY,10001 +192170,USB-C Charging Cable,2,11.95,2019-04-27 19:52:00,345 12th St, Los Angeles,CA,90001 +192171,USB-C Charging Cable,1,11.95,2019-04-24 12:41:00,275 North St, San Francisco,CA,94016 +192172,Lightning Charging Cable,1,14.95,2019-04-04 09:58:00,776 Cherry St, Seattle,WA,98101 +192173,AA Batteries (4-pack),1,3.84,2019-04-04 12:18:00,11 West St, Seattle,WA,98101 +192174,Wired Headphones,1,11.99,2019-04-29 19:06:00,697 Wilson St, Portland,ME,04101 +192175,Wired Headphones,1,11.99,2019-04-08 21:01:00,352 Church St, New York City,NY,10001 +192176,AAA Batteries (4-pack),3,2.99,2019-04-01 19:09:00,707 West St, Los Angeles,CA,90001 +192177,Wired Headphones,1,11.99,2019-04-27 19:40:00,130 Hickory St, Los Angeles,CA,90001 +192178,USB-C Charging Cable,1,11.95,2019-04-08 16:26:00,936 Jackson St, Seattle,WA,98101 +192179,Bose SoundSport Headphones,1,99.99,2019-04-10 15:56:00,101 Walnut St, New York City,NY,10001 +192179,AAA Batteries (4-pack),3,2.99,2019-04-10 15:56:00,101 Walnut St, New York City,NY,10001 +192180,Lightning Charging Cable,1,14.95,2019-04-15 00:31:00,887 Jackson St, Los Angeles,CA,90001 +192181,Bose SoundSport Headphones,1,99.99,2019-04-08 15:45:00,876 Forest St, Seattle,WA,98101 +192182,USB-C Charging Cable,1,11.95,2019-04-27 05:03:00,328 Sunset St, Boston,MA,02215 +192183,Bose SoundSport Headphones,1,99.99,2019-04-22 11:41:00,640 West St, San Francisco,CA,94016 +192184,Wired Headphones,1,11.99,2019-04-04 21:11:00,655 Jackson St, Austin,TX,73301 +192185,27in 4K Gaming Monitor,1,389.99,2019-04-06 20:01:00,232 Cherry St, San Francisco,CA,94016 +192186,AA Batteries (4-pack),1,3.84,2019-04-03 14:17:00,137 Johnson St, Los Angeles,CA,90001 +192187,27in 4K Gaming Monitor,1,389.99,2019-04-26 13:11:00,460 Lake St, New York City,NY,10001 +192188,27in 4K Gaming Monitor,1,389.99,2019-04-07 14:36:00,210 9th St, Austin,TX,73301 +192189,iPhone,1,700.0,2019-04-18 22:06:00,402 Jefferson St, New York City,NY,10001 +192190,iPhone,1,700.0,2019-04-05 22:32:00,50 4th St, New York City,NY,10001 +192190,Lightning Charging Cable,1,14.95,2019-04-05 22:32:00,50 4th St, New York City,NY,10001 +192191,Macbook Pro Laptop,1,1700.0,2019-04-21 17:14:00,62 Center St, New York City,NY,10001 +192192,Apple Airpods Headphones,1,150.0,2019-04-24 19:06:00,499 Jackson St, Boston,MA,02215 +192193,ThinkPad Laptop,1,999.99,2019-04-21 11:12:00,507 Johnson St, Los Angeles,CA,90001 +192194,Lightning Charging Cable,1,14.95,2019-04-08 15:23:00,273 1st St, San Francisco,CA,94016 +192195,USB-C Charging Cable,1,11.95,2019-04-11 16:48:00,122 Highland St, Boston,MA,02215 +192196,Bose SoundSport Headphones,1,99.99,2019-04-18 17:44:00,399 5th St, Dallas,TX,75001 +192197,27in FHD Monitor,1,149.99,2019-04-29 18:39:00,982 10th St, Los Angeles,CA,90001 +192198,Bose SoundSport Headphones,1,99.99,2019-04-10 00:51:00,150 Cherry St, Los Angeles,CA,90001 +192199,Apple Airpods Headphones,1,150.0,2019-04-08 14:55:00,35 Hickory St, San Francisco,CA,94016 +192200,Apple Airpods Headphones,1,150.0,2019-04-07 04:31:00,54 Elm St, Portland,OR,97035 +192201,Google Phone,1,600.0,2019-04-27 12:09:00,980 5th St, Dallas,TX,75001 +192202,AA Batteries (4-pack),2,3.84,2019-04-04 20:29:00,712 Church St, Boston,MA,02215 +192203,AAA Batteries (4-pack),1,2.99,2019-04-14 12:59:00,422 Church St, San Francisco,CA,94016 +192204,Apple Airpods Headphones,1,150.0,2019-04-05 18:43:00,469 8th St, Boston,MA,02215 +192204,Bose SoundSport Headphones,1,99.99,2019-04-05 18:43:00,469 8th St, Boston,MA,02215 +192205,AAA Batteries (4-pack),1,2.99,2019-04-18 12:50:00,647 Madison St, Los Angeles,CA,90001 +192206,Lightning Charging Cable,1,14.95,2019-04-10 14:56:00,874 5th St, Los Angeles,CA,90001 +192207,Lightning Charging Cable,1,14.95,2019-04-22 09:39:00,867 Main St, Dallas,TX,75001 +192208,Apple Airpods Headphones,1,150.0,2019-04-02 00:19:00,809 South St, Atlanta,GA,30301 +192209,AA Batteries (4-pack),3,3.84,2019-04-07 23:35:00,206 Church St, Portland,OR,97035 +192210,Lightning Charging Cable,1,14.95,2019-04-17 14:06:00,789 Center St, Dallas,TX,75001 +192211,ThinkPad Laptop,1,999.99,2019-04-14 00:50:00,552 4th St, Los Angeles,CA,90001 +192212,AA Batteries (4-pack),1,3.84,2019-04-02 04:15:00,689 Meadow St, San Francisco,CA,94016 +192213,Wired Headphones,1,11.99,2019-04-18 20:00:00,486 Meadow St, Atlanta,GA,30301 +192214,Google Phone,1,600.0,2019-04-14 12:09:00,873 North St, New York City,NY,10001 +192214,USB-C Charging Cable,1,11.95,2019-04-14 12:09:00,873 North St, New York City,NY,10001 +192215,Apple Airpods Headphones,1,150.0,2019-04-22 23:25:00,399 Sunset St, San Francisco,CA,94016 +192216,Vareebadd Phone,1,400.0,2019-04-22 19:12:00,683 Jefferson St, New York City,NY,10001 +192217,AAA Batteries (4-pack),1,2.99,2019-04-27 01:51:00,466 Madison St, Portland,OR,97035 +192218,Lightning Charging Cable,1,14.95,2019-04-25 11:33:00,445 Park St, San Francisco,CA,94016 +192219,AAA Batteries (4-pack),1,2.99,2019-04-25 22:15:00,804 Center St, Boston,MA,02215 +192220,20in Monitor,1,109.99,2019-04-13 08:52:00,118 Lincoln St, Dallas,TX,75001 +192221,Apple Airpods Headphones,1,150.0,2019-04-09 18:24:00,594 Madison St, Los Angeles,CA,90001 +192222,34in Ultrawide Monitor,1,379.99,2019-04-12 20:24:00,312 6th St, San Francisco,CA,94016 +192223,AA Batteries (4-pack),1,3.84,2019-04-18 10:08:00,4 10th St, New York City,NY,10001 +192224,AA Batteries (4-pack),1,3.84,2019-04-06 20:21:00,884 Hickory St, Portland,OR,97035 +192225,AA Batteries (4-pack),1,3.84,2019-04-02 09:20:00,605 10th St, Los Angeles,CA,90001 +192226,Lightning Charging Cable,1,14.95,2019-04-25 21:27:00,624 Pine St, Seattle,WA,98101 +192227,AA Batteries (4-pack),2,3.84,2019-04-02 12:21:00,981 11th St, New York City,NY,10001 +192228,Google Phone,1,600.0,2019-04-17 13:42:00,878 7th St, Los Angeles,CA,90001 +192229,34in Ultrawide Monitor,1,379.99,2019-04-30 22:03:00,347 Lakeview St, New York City,NY,10001 +192230,Lightning Charging Cable,2,14.95,2019-04-24 12:38:00,806 West St, Portland,OR,97035 +192231,34in Ultrawide Monitor,1,379.99,2019-04-12 17:41:00,399 Jefferson St, Seattle,WA,98101 +192232,USB-C Charging Cable,1,11.95,2019-04-07 15:17:00,626 Pine St, Portland,OR,97035 +192233,Google Phone,1,600.0,2019-04-13 09:08:00,940 Jefferson St, Dallas,TX,75001 +192234,ThinkPad Laptop,1,999.99,2019-04-10 22:27:00,174 12th St, Atlanta,GA,30301 +192235,iPhone,1,700.0,2019-04-13 21:02:00,350 Walnut St, San Francisco,CA,94016 +192236,AA Batteries (4-pack),1,3.84,2019-04-22 09:16:00,753 West St, Boston,MA,02215 +192237,34in Ultrawide Monitor,1,379.99,2019-04-18 02:30:00,110 4th St, San Francisco,CA,94016 +192238,Google Phone,1,600.0,2019-04-05 17:03:00,104 14th St, Austin,TX,73301 +192239,Lightning Charging Cable,1,14.95,2019-04-08 18:11:00,587 Hill St, Los Angeles,CA,90001 +192240,27in 4K Gaming Monitor,1,389.99,2019-04-16 13:07:00,508 Main St, San Francisco,CA,94016 +192241,USB-C Charging Cable,1,11.95,2019-04-15 14:15:00,881 1st St, San Francisco,CA,94016 +192242,USB-C Charging Cable,1,11.95,2019-04-08 17:29:00,365 Walnut St, Dallas,TX,75001 +192243,27in 4K Gaming Monitor,1,389.99,2019-04-04 13:52:00,770 6th St, Los Angeles,CA,90001 +192244,Google Phone,1,600.0,2019-04-03 13:51:00,233 Highland St, Los Angeles,CA,90001 +192245,Wired Headphones,1,11.99,2019-04-05 20:38:00,566 9th St, San Francisco,CA,94016 +192246,USB-C Charging Cable,1,11.95,2019-04-19 10:45:00,992 Park St, San Francisco,CA,94016 +192247,Apple Airpods Headphones,1,150.0,2019-04-10 13:47:00,982 Cherry St, Portland,OR,97035 +192248,AA Batteries (4-pack),1,3.84,2019-04-04 12:56:00,571 Lake St, Dallas,TX,75001 +192249,AA Batteries (4-pack),1,3.84,2019-04-01 20:22:00,573 Chestnut St, Austin,TX,73301 +192250,AAA Batteries (4-pack),1,2.99,2019-04-29 21:22:00,948 1st St, San Francisco,CA,94016 +192251,Apple Airpods Headphones,1,150.0,2019-04-03 12:44:00,240 12th St, San Francisco,CA,94016 +192252,Apple Airpods Headphones,1,150.0,2019-04-08 12:49:00,69 River St, Atlanta,GA,30301 +192253,AAA Batteries (4-pack),2,2.99,2019-04-25 14:58:00,92 Dogwood St, Los Angeles,CA,90001 +192254,AA Batteries (4-pack),2,3.84,2019-04-16 00:08:00,777 10th St, San Francisco,CA,94016 +192255,Lightning Charging Cable,1,14.95,2019-04-21 10:55:00,358 Madison St, New York City,NY,10001 +192256,USB-C Charging Cable,2,11.95,2019-04-30 11:25:00,779 Elm St, San Francisco,CA,94016 +192257,Wired Headphones,2,11.99,2019-04-14 12:03:00,739 Pine St, Seattle,WA,98101 +192258,AA Batteries (4-pack),1,3.84,2019-04-20 10:13:00,134 Lakeview St, New York City,NY,10001 +192259,iPhone,1,700.0,2019-04-19 21:55:00,947 Pine St, Portland,OR,97035 +192259,Wired Headphones,2,11.99,2019-04-19 21:55:00,947 Pine St, Portland,OR,97035 +192260,Lightning Charging Cable,1,14.95,2019-04-12 19:20:00,576 South St, Seattle,WA,98101 +192261,Google Phone,1,600.0,2019-04-01 09:35:00,443 11th St, Austin,TX,73301 +192262,AAA Batteries (4-pack),2,2.99,2019-04-19 22:54:00,136 Johnson St, San Francisco,CA,94016 +192263,Lightning Charging Cable,1,14.95,2019-04-02 21:15:00,827 Jackson St, Boston,MA,02215 +192264,USB-C Charging Cable,1,11.95,2019-04-14 23:10:00,848 Pine St, San Francisco,CA,94016 +192265,AAA Batteries (4-pack),1,2.99,2019-04-30 22:21:00,284 4th St, San Francisco,CA,94016 +192266,Bose SoundSport Headphones,1,99.99,2019-04-09 15:35:00,673 North St, Dallas,TX,75001 +192267,Lightning Charging Cable,1,14.95,2019-04-16 00:02:00,401 5th St, Los Angeles,CA,90001 +192268,Google Phone,1,600.0,2019-04-11 20:15:00,356 Cherry St, San Francisco,CA,94016 +192269,27in 4K Gaming Monitor,1,389.99,2019-04-10 10:49:00,389 Maple St, San Francisco,CA,94016 +192270,AA Batteries (4-pack),2,3.84,2019-04-11 13:59:00,932 West St, Dallas,TX,75001 +192271,iPhone,2,700.0,2019-04-18 17:14:00,770 14th St, Los Angeles,CA,90001 +192272,Wired Headphones,1,11.99,2019-04-19 15:10:00,326 Walnut St, Portland,OR,97035 +192273,Flatscreen TV,1,300.0,2019-04-24 17:59:00,131 West St, Dallas,TX,75001 +192274,Macbook Pro Laptop,1,1700.0,2019-04-25 23:46:00,32 9th St, Seattle,WA,98101 +192275,Wired Headphones,1,11.99,2019-04-06 16:29:00,4 12th St, New York City,NY,10001 +192276,Flatscreen TV,1,300.0,2019-04-27 06:40:00,699 10th St, Los Angeles,CA,90001 +192277,AA Batteries (4-pack),1,3.84,2019-04-15 18:05:00,184 Hickory St, New York City,NY,10001 +192278,Wired Headphones,1,11.99,2019-04-24 10:27:00,259 6th St, San Francisco,CA,94016 +192279,27in FHD Monitor,1,149.99,2019-04-25 19:56:00,713 2nd St, San Francisco,CA,94016 +192280,Apple Airpods Headphones,1,150.0,2019-04-18 13:01:00,927 Church St, San Francisco,CA,94016 +192281,Apple Airpods Headphones,1,150.0,2019-04-03 21:13:00,996 Johnson St, San Francisco,CA,94016 +192282,Apple Airpods Headphones,1,150.0,2019-04-08 01:55:00,202 11th St, Los Angeles,CA,90001 +192283,AAA Batteries (4-pack),1,2.99,2019-04-25 03:58:00,676 Highland St, Dallas,TX,75001 +192284,Lightning Charging Cable,1,14.95,2019-04-25 14:27:00,500 2nd St, San Francisco,CA,94016 +192285,USB-C Charging Cable,1,11.95,2019-04-01 06:23:00,731 2nd St, Austin,TX,73301 +192286,34in Ultrawide Monitor,1,379.99,2019-04-02 13:24:00,481 Jackson St, Portland,ME,04101 +192287,AAA Batteries (4-pack),1,2.99,2019-04-04 17:41:00,123 Lakeview St, Boston,MA,02215 +192288,AA Batteries (4-pack),1,3.84,2019-04-19 11:09:00,465 River St, New York City,NY,10001 +192289,Macbook Pro Laptop,1,1700.0,2019-04-29 23:39:00,720 River St, Portland,OR,97035 +192290,AA Batteries (4-pack),1,3.84,2019-04-02 11:41:00,137 Wilson St, Atlanta,GA,30301 +192291,Lightning Charging Cable,1,14.95,2019-04-05 16:45:00,73 Chestnut St, San Francisco,CA,94016 +192292,USB-C Charging Cable,1,11.95,2019-04-30 22:27:00,462 4th St, Austin,TX,73301 +192293,USB-C Charging Cable,1,11.95,2019-04-10 11:02:00,276 Highland St, Austin,TX,73301 +192294,Bose SoundSport Headphones,1,99.99,2019-04-23 21:04:00,875 South St, Los Angeles,CA,90001 +192295,ThinkPad Laptop,1,999.99,2019-04-06 22:41:00,894 Church St, Atlanta,GA,30301 +192296,27in 4K Gaming Monitor,1,389.99,2019-04-14 13:03:00,724 13th St, San Francisco,CA,94016 +192297,USB-C Charging Cable,1,11.95,2019-04-28 16:16:00,863 Cherry St, New York City,NY,10001 +192298,Flatscreen TV,1,300.0,2019-04-12 12:30:00,357 Adams St, Portland,OR,97035 +192299,Flatscreen TV,1,300.0,2019-04-19 09:41:00,861 7th St, San Francisco,CA,94016 +192300,USB-C Charging Cable,1,11.95,2019-04-04 18:13:00,336 7th St, New York City,NY,10001 +192301,USB-C Charging Cable,1,11.95,2019-04-26 08:05:00,885 Jefferson St, New York City,NY,10001 +192302,iPhone,1,700.0,2019-04-17 22:09:00,806 Pine St, San Francisco,CA,94016 +192303,iPhone,1,700.0,2019-04-21 07:39:00,977 Center St, Portland,OR,97035 +192304,USB-C Charging Cable,2,11.95,2019-04-17 02:36:00,917 4th St, San Francisco,CA,94016 +192305,LG Dryer,1,600.0,2019-04-24 18:42:00,99 Cedar St, Los Angeles,CA,90001 +192306,AAA Batteries (4-pack),1,2.99,2019-04-18 10:15:00,862 Jefferson St, Los Angeles,CA,90001 +192307,Lightning Charging Cable,1,14.95,2019-04-16 20:27:00,702 Maple St, Los Angeles,CA,90001 +192308,USB-C Charging Cable,1,11.95,2019-04-03 16:39:00,222 Cedar St, Portland,OR,97035 +192309,Google Phone,1,600.0,2019-04-23 18:42:00,734 Main St, Los Angeles,CA,90001 +192310,Bose SoundSport Headphones,1,99.99,2019-04-11 12:06:00,31 Willow St, Portland,OR,97035 +192311,Macbook Pro Laptop,1,1700.0,2019-04-11 21:54:00,25 West St, Boston,MA,02215 +192312,Macbook Pro Laptop,1,1700.0,2019-04-17 13:48:00,86 Hickory St, Atlanta,GA,30301 +192313,Wired Headphones,1,11.99,2019-04-10 18:54:00,299 Church St, Los Angeles,CA,90001 +192314,Macbook Pro Laptop,1,1700.0,2019-04-29 17:12:00,360 7th St, Dallas,TX,75001 +192315,Bose SoundSport Headphones,1,99.99,2019-04-06 08:46:00,647 Lakeview St, Boston,MA,02215 +192316,AA Batteries (4-pack),1,3.84,2019-04-18 18:42:00,662 5th St, San Francisco,CA,94016 +192317,Wired Headphones,1,11.99,2019-04-10 20:25:00,433 1st St, Boston,MA,02215 +192318,Wired Headphones,1,11.99,2019-04-26 17:32:00,868 West St, New York City,NY,10001 +192319,Lightning Charging Cable,1,14.95,2019-04-23 19:58:00,629 Dogwood St, Atlanta,GA,30301 +192320,34in Ultrawide Monitor,1,379.99,2019-04-03 17:36:00,851 West St, Portland,OR,97035 +192321,Lightning Charging Cable,1,14.95,2019-04-17 23:55:00,590 Main St, San Francisco,CA,94016 +192322,Google Phone,1,600.0,2019-04-27 08:35:00,48 Wilson St, Dallas,TX,75001 +192323,Wired Headphones,1,11.99,2019-04-25 14:43:00,992 11th St, Dallas,TX,75001 +192324,27in FHD Monitor,1,149.99,2019-04-24 14:14:00,985 Ridge St, Boston,MA,02215 +192325,AAA Batteries (4-pack),1,2.99,2019-04-11 15:10:00,873 Maple St, San Francisco,CA,94016 +192326,iPhone,1,700.0,2019-04-25 19:45:00,324 13th St, San Francisco,CA,94016 +192327,27in FHD Monitor,1,149.99,2019-04-08 11:35:00,237 Willow St, New York City,NY,10001 +192328,Lightning Charging Cable,1,14.95,2019-04-29 16:22:00,555 Cherry St, San Francisco,CA,94016 +192329,27in 4K Gaming Monitor,1,389.99,2019-04-10 12:52:00,189 11th St, Boston,MA,02215 +192330,Bose SoundSport Headphones,1,99.99,2019-04-18 19:07:00,46 Willow St, Los Angeles,CA,90001 +192331,AA Batteries (4-pack),1,3.84,2019-04-02 19:27:00,168 1st St, Boston,MA,02215 +192332,AA Batteries (4-pack),2,3.84,2019-04-28 11:31:00,422 Johnson St, Austin,TX,73301 +192333,USB-C Charging Cable,1,11.95,2019-04-21 20:25:00,170 12th St, Atlanta,GA,30301 +192334,AAA Batteries (4-pack),2,2.99,2019-04-12 22:17:00,748 Elm St, San Francisco,CA,94016 +192335,AAA Batteries (4-pack),1,2.99,2019-04-23 09:01:00,106 Ridge St, San Francisco,CA,94016 +192336,Lightning Charging Cable,1,14.95,2019-04-11 14:46:00,826 Sunset St, New York City,NY,10001 +192337,Bose SoundSport Headphones,1,99.99,2019-04-12 17:29:00,704 Cedar St, Los Angeles,CA,90001 +192338,Lightning Charging Cable,2,14.95,2019-04-28 18:04:00,406 4th St, Dallas,TX,75001 +192339,AA Batteries (4-pack),2,3.84,2019-04-06 15:14:00,363 2nd St, Los Angeles,CA,90001 +192340,Wired Headphones,1,11.99,2019-04-05 22:59:00,667 Jefferson St, Austin,TX,73301 +192341,Lightning Charging Cable,1,14.95,2019-04-29 19:28:00,229 7th St, Los Angeles,CA,90001 +192342,AAA Batteries (4-pack),1,2.99,2019-04-14 11:55:00,411 Main St, New York City,NY,10001 +192343,USB-C Charging Cable,1,11.95,2019-04-25 01:33:00,559 Maple St, Dallas,TX,75001 +192344,Google Phone,1,600.0,2019-04-29 21:51:00,133 Willow St, San Francisco,CA,94016 +192345,Lightning Charging Cable,1,14.95,2019-04-10 12:21:00,161 Wilson St, Los Angeles,CA,90001 +192346,AAA Batteries (4-pack),2,2.99,2019-04-22 21:54:00,675 9th St, San Francisco,CA,94016 +192347,USB-C Charging Cable,1,11.95,2019-04-14 11:18:00,749 4th St, San Francisco,CA,94016 +192348,iPhone,1,700.0,2019-04-12 20:18:00,358 Pine St, San Francisco,CA,94016 +192348,Apple Airpods Headphones,1,150.0,2019-04-12 20:18:00,358 Pine St, San Francisco,CA,94016 +192349,Lightning Charging Cable,1,14.95,2019-04-01 11:29:00,301 7th St, San Francisco,CA,94016 +192350,AA Batteries (4-pack),1,3.84,2019-04-08 21:54:00,566 Maple St, Atlanta,GA,30301 +192351,Google Phone,1,600.0,2019-04-30 14:28:00,532 Center St, Portland,OR,97035 +192352,Lightning Charging Cable,1,14.95,2019-04-12 17:47:00,649 Spruce St, Seattle,WA,98101 +192353,USB-C Charging Cable,1,11.95,2019-04-16 10:45:00,432 9th St, San Francisco,CA,94016 +192354,Bose SoundSport Headphones,1,99.99,2019-04-30 11:59:00,361 Park St, San Francisco,CA,94016 +192355,iPhone,1,700.0,2019-04-10 19:11:00,103 Park St, San Francisco,CA,94016 +192356,iPhone,1,700.0,2019-04-16 09:21:00,765 River St, Boston,MA,02215 +192357,Wired Headphones,1,11.99,2019-04-25 11:04:00,89 Adams St, Boston,MA,02215 +192358,Lightning Charging Cable,1,14.95,2019-04-11 10:05:00,774 Center St, Boston,MA,02215 +192359,AAA Batteries (4-pack),1,2.99,2019-04-07 12:00:00,57 Maple St, Dallas,TX,75001 +192360,USB-C Charging Cable,1,11.95,2019-04-04 16:28:00,811 8th St, New York City,NY,10001 +192361,AA Batteries (4-pack),2,3.84,2019-04-18 14:38:00,208 Lakeview St, San Francisco,CA,94016 +192362,AAA Batteries (4-pack),1,2.99,2019-04-24 08:11:00,143 Hill St, New York City,NY,10001 +192363,AAA Batteries (4-pack),2,2.99,2019-04-18 18:52:00,786 Cherry St, Seattle,WA,98101 +192364,27in 4K Gaming Monitor,1,389.99,2019-04-26 16:30:00,884 Washington St, Los Angeles,CA,90001 +192365,AA Batteries (4-pack),1,3.84,2019-04-14 16:24:00,964 Ridge St, Austin,TX,73301 +192366,USB-C Charging Cable,1,11.95,2019-04-25 10:37:00,343 South St, New York City,NY,10001 +192367,AA Batteries (4-pack),1,3.84,2019-04-09 22:59:00,98 Willow St, Seattle,WA,98101 +192368,27in 4K Gaming Monitor,1,389.99,2019-04-12 19:25:00,366 Sunset St, San Francisco,CA,94016 +192369,AAA Batteries (4-pack),1,2.99,2019-04-24 10:48:00,571 Hickory St, Los Angeles,CA,90001 +192370,34in Ultrawide Monitor,1,379.99,2019-04-26 15:45:00,151 Wilson St, San Francisco,CA,94016 +192371,Bose SoundSport Headphones,1,99.99,2019-04-15 12:24:00,136 Jackson St, San Francisco,CA,94016 +192372,Wired Headphones,1,11.99,2019-04-14 11:09:00,780 Madison St, San Francisco,CA,94016 +192373,Apple Airpods Headphones,1,150.0,2019-04-23 12:10:00,265 Jackson St, Austin,TX,73301 +192374,AA Batteries (4-pack),1,3.84,2019-04-18 16:13:00,224 South St, Portland,ME,04101 +192375,Apple Airpods Headphones,1,150.0,2019-04-28 15:01:00,723 Lakeview St, San Francisco,CA,94016 +192376,Lightning Charging Cable,1,14.95,2019-04-05 07:33:00,998 Chestnut St, Atlanta,GA,30301 +192377,Apple Airpods Headphones,1,150.0,2019-04-16 18:30:00,388 Madison St, Los Angeles,CA,90001 +192378,iPhone,1,700.0,2019-04-28 10:07:00,439 Jefferson St, Dallas,TX,75001 +192378,Lightning Charging Cable,1,14.95,2019-04-28 10:07:00,439 Jefferson St, Dallas,TX,75001 +192379,USB-C Charging Cable,1,11.95,2019-04-25 15:31:00,692 Highland St, Los Angeles,CA,90001 +192380,Apple Airpods Headphones,1,150.0,2019-04-20 22:56:00,210 Center St, Portland,ME,04101 +192381,Macbook Pro Laptop,1,1700.0,2019-04-15 18:13:00,471 Highland St, San Francisco,CA,94016 +192382,AAA Batteries (4-pack),1,2.99,2019-04-27 22:31:00,331 Lincoln St, Los Angeles,CA,90001 +192383,27in 4K Gaming Monitor,1,389.99,2019-04-08 18:24:00,456 South St, New York City,NY,10001 +192384,27in FHD Monitor,1,149.99,2019-04-02 23:27:00,256 Church St, Los Angeles,CA,90001 +192385,USB-C Charging Cable,1,11.95,2019-04-25 14:30:00,962 13th St, Seattle,WA,98101 +192386,Google Phone,1,600.0,2019-04-15 09:19:00,780 Cedar St, Atlanta,GA,30301 +192386,USB-C Charging Cable,1,11.95,2019-04-15 09:19:00,780 Cedar St, Atlanta,GA,30301 +192387,Apple Airpods Headphones,1,150.0,2019-04-25 18:57:00,301 Highland St, Portland,OR,97035 +192388,USB-C Charging Cable,1,11.95,2019-04-16 18:49:00,563 Lakeview St, San Francisco,CA,94016 +192389,USB-C Charging Cable,1,11.95,2019-04-11 15:37:00,363 Forest St, San Francisco,CA,94016 +192390,iPhone,1,700.0,2019-04-23 19:53:00,389 2nd St, Austin,TX,73301 +192391,20in Monitor,1,109.99,2019-04-02 07:13:00,935 Pine St, Seattle,WA,98101 +192392,Apple Airpods Headphones,1,150.0,2019-04-23 12:15:00,268 Lake St, Austin,TX,73301 +192393,AAA Batteries (4-pack),1,2.99,2019-04-12 19:04:00,756 South St, San Francisco,CA,94016 +192394,AAA Batteries (4-pack),1,2.99,2019-04-22 13:26:00,703 Washington St, Austin,TX,73301 +192395,AA Batteries (4-pack),1,3.84,2019-04-21 08:15:00,673 Maple St, San Francisco,CA,94016 +192396,Google Phone,1,600.0,2019-04-14 11:47:00,939 4th St, Los Angeles,CA,90001 +192397,AAA Batteries (4-pack),1,2.99,2019-04-19 22:04:00,773 Meadow St, Dallas,TX,75001 +192398,Lightning Charging Cable,3,14.95,2019-04-02 18:32:00,63 Jefferson St, Dallas,TX,75001 +192399,USB-C Charging Cable,1,11.95,2019-04-21 12:30:00,29 Chestnut St, Los Angeles,CA,90001 +192400,AAA Batteries (4-pack),1,2.99,2019-04-29 20:38:00,437 Church St, Portland,OR,97035 +192401,20in Monitor,1,109.99,2019-04-03 19:15:00,503 Pine St, San Francisco,CA,94016 +192402,27in 4K Gaming Monitor,1,389.99,2019-04-18 20:31:00,767 6th St, New York City,NY,10001 +192403,Lightning Charging Cable,1,14.95,2019-04-04 18:14:00,492 Park St, Boston,MA,02215 +192404,Lightning Charging Cable,1,14.95,2019-04-20 14:36:00,613 Wilson St, Boston,MA,02215 +192405,Apple Airpods Headphones,1,150.0,2019-04-17 21:54:00,683 5th St, San Francisco,CA,94016 +192406,AA Batteries (4-pack),1,3.84,2019-04-13 23:03:00,433 Cherry St, Portland,OR,97035 +192407,USB-C Charging Cable,1,11.95,2019-04-26 19:43:00,199 Park St, Atlanta,GA,30301 +192408,Bose SoundSport Headphones,1,99.99,2019-04-21 22:21:00,342 Dogwood St, San Francisco,CA,94016 +192409,20in Monitor,1,109.99,2019-04-01 19:36:00,810 Dogwood St, Boston,MA,02215 +192410,iPhone,1,700.0,2019-04-17 19:20:00,757 Pine St, San Francisco,CA,94016 +192411,34in Ultrawide Monitor,1,379.99,2019-04-18 09:26:00,512 Cherry St, New York City,NY,10001 +192412,Lightning Charging Cable,1,14.95,2019-04-11 13:28:00,62 8th St, Seattle,WA,98101 +192413,Bose SoundSport Headphones,1,99.99,2019-04-01 15:18:00,995 Spruce St, Portland,ME,04101 +192414,Wired Headphones,1,11.99,2019-04-29 17:45:00,889 Lincoln St, New York City,NY,10001 +192415,USB-C Charging Cable,1,11.95,2019-04-02 20:48:00,7 Ridge St, San Francisco,CA,94016 +192416,AA Batteries (4-pack),1,3.84,2019-04-17 14:13:00,238 River St, San Francisco,CA,94016 +192417,34in Ultrawide Monitor,1,379.99,2019-04-25 12:40:00,510 Highland St, San Francisco,CA,94016 +192418,Lightning Charging Cable,1,14.95,2019-04-15 15:09:00,746 Adams St, San Francisco,CA,94016 +192419,20in Monitor,1,109.99,2019-04-04 12:44:00,583 Pine St, Dallas,TX,75001 +192420,Apple Airpods Headphones,1,150.0,2019-04-04 01:48:00,670 Chestnut St, New York City,NY,10001 +192421,AAA Batteries (4-pack),1,2.99,2019-04-28 21:03:00,5 Sunset St, Los Angeles,CA,90001 +192422,Lightning Charging Cable,1,14.95,2019-04-27 11:01:00,12 14th St, San Francisco,CA,94016 +192423,Bose SoundSport Headphones,1,99.99,2019-04-28 18:14:00,231 Lake St, Los Angeles,CA,90001 +192424,AAA Batteries (4-pack),1,2.99,2019-04-11 15:55:00,87 Forest St, Los Angeles,CA,90001 +192425,AA Batteries (4-pack),4,3.84,2019-04-16 18:00:00,116 Park St, Los Angeles,CA,90001 +192426,Apple Airpods Headphones,1,150.0,2019-04-24 00:08:00,920 7th St, Boston,MA,02215 +192427,Wired Headphones,1,11.99,2019-04-12 22:09:00,453 Lakeview St, New York City,NY,10001 +192428,Bose SoundSport Headphones,1,99.99,2019-04-09 20:44:00,850 Center St, Austin,TX,73301 +192429,Flatscreen TV,1,300.0,2019-04-24 12:44:00,412 Wilson St, Seattle,WA,98101 +192430,iPhone,1,700.0,2019-04-08 20:28:00,876 1st St, Austin,TX,73301 +192431,Bose SoundSport Headphones,1,99.99,2019-04-11 16:30:00,202 14th St, Los Angeles,CA,90001 +192432,USB-C Charging Cable,1,11.95,2019-04-09 19:52:00,850 Washington St, Austin,TX,73301 +192433,USB-C Charging Cable,1,11.95,2019-04-25 16:48:00,638 Adams St, San Francisco,CA,94016 +192434,34in Ultrawide Monitor,1,379.99,2019-04-04 11:09:00,165 Forest St, Dallas,TX,75001 +192435,iPhone,1,700.0,2019-04-18 20:21:00,327 Jackson St, New York City,NY,10001 +192436,Bose SoundSport Headphones,1,99.99,2019-04-24 19:16:00,393 12th St, Seattle,WA,98101 +192437,Bose SoundSport Headphones,1,99.99,2019-04-24 01:18:00,454 West St, Los Angeles,CA,90001 +192438,Lightning Charging Cable,1,14.95,2019-04-08 13:26:00,180 Madison St, San Francisco,CA,94016 +192439,Macbook Pro Laptop,1,1700.0,2019-04-10 12:29:00,252 Highland St, San Francisco,CA,94016 +192440,USB-C Charging Cable,1,11.95,2019-04-13 18:40:00,412 Willow St, Boston,MA,02215 +192441,34in Ultrawide Monitor,1,379.99,2019-04-12 19:57:00,290 South St, New York City,NY,10001 +192442,Bose SoundSport Headphones,1,99.99,2019-04-07 22:39:00,498 6th St, San Francisco,CA,94016 +192443,Vareebadd Phone,1,400.0,2019-04-05 16:39:00,770 Adams St, Austin,TX,73301 +192444,Wired Headphones,1,11.99,2019-04-09 19:04:00,172 Hill St, Los Angeles,CA,90001 +192445,27in FHD Monitor,1,149.99,2019-04-26 07:39:00,29 10th St, Portland,OR,97035 +192446,AA Batteries (4-pack),1,3.84,2019-04-06 18:47:00,631 Washington St, Boston,MA,02215 +192447,Wired Headphones,2,11.99,2019-04-18 00:05:00,25 Washington St, Los Angeles,CA,90001 +192448,USB-C Charging Cable,2,11.95,2019-04-16 17:59:00,114 8th St, Seattle,WA,98101 +192449,Apple Airpods Headphones,1,150.0,2019-04-04 12:01:00,523 Pine St, San Francisco,CA,94016 +192450,AAA Batteries (4-pack),1,2.99,2019-04-16 07:11:00,372 Wilson St, San Francisco,CA,94016 +192450,AA Batteries (4-pack),1,3.84,2019-04-16 07:11:00,372 Wilson St, San Francisco,CA,94016 +192451,AAA Batteries (4-pack),2,2.99,2019-04-15 11:47:00,510 2nd St, San Francisco,CA,94016 +192452,Lightning Charging Cable,1,14.95,2019-04-27 12:04:00,439 Meadow St, San Francisco,CA,94016 +192453,Bose SoundSport Headphones,1,99.99,2019-04-17 17:42:00,975 North St, San Francisco,CA,94016 +192454,Flatscreen TV,1,300.0,2019-04-11 20:56:00,104 4th St, Dallas,TX,75001 +192455,USB-C Charging Cable,1,11.95,2019-04-24 16:27:00,474 Madison St, Seattle,WA,98101 +192456,34in Ultrawide Monitor,1,379.99,2019-04-18 02:11:00,480 Lake St, Dallas,TX,75001 +192457,Bose SoundSport Headphones,1,99.99,2019-04-05 14:46:00,294 Center St, Portland,OR,97035 +192458,Apple Airpods Headphones,1,150.0,2019-04-27 15:17:00,488 Willow St, San Francisco,CA,94016 +192459,Flatscreen TV,1,300.0,2019-04-25 16:32:00,723 Park St, Los Angeles,CA,90001 +192460,27in FHD Monitor,1,149.99,2019-04-30 21:24:00,236 South St, Dallas,TX,75001 +192461,AA Batteries (4-pack),2,3.84,2019-04-25 23:00:00,793 Chestnut St, Boston,MA,02215 +192462,AAA Batteries (4-pack),1,2.99,2019-04-20 18:35:00,188 Jackson St, San Francisco,CA,94016 +192463,Wired Headphones,1,11.99,2019-04-20 01:00:00,474 14th St, Atlanta,GA,30301 +192464,27in 4K Gaming Monitor,1,389.99,2019-04-05 23:28:00,535 Hill St, Boston,MA,02215 +192465,ThinkPad Laptop,1,999.99,2019-04-12 20:51:00,104 2nd St, New York City,NY,10001 +192466,AAA Batteries (4-pack),2,2.99,2019-04-22 11:41:00,747 Lake St, Los Angeles,CA,90001 +192467,Lightning Charging Cable,1,14.95,2019-04-16 18:35:00,312 12th St, Boston,MA,02215 +192468,Wired Headphones,1,11.99,2019-04-14 11:35:00,39 Maple St, Seattle,WA,98101 +192469,ThinkPad Laptop,1,999.99,2019-04-25 19:01:00,109 Jackson St, Austin,TX,73301 +192470,Lightning Charging Cable,1,14.95,2019-04-27 21:42:00,42 6th St, Dallas,TX,75001 +192471,Bose SoundSport Headphones,1,99.99,2019-04-27 09:47:00,159 Washington St, Los Angeles,CA,90001 +192472,Vareebadd Phone,1,400.0,2019-04-16 15:36:00,744 Hickory St, San Francisco,CA,94016 +192473,Wired Headphones,1,11.99,2019-04-04 10:47:00,886 Washington St, San Francisco,CA,94016 +192474,Lightning Charging Cable,1,14.95,2019-04-04 18:29:00,835 Madison St, Portland,ME,04101 +192475,34in Ultrawide Monitor,1,379.99,2019-04-14 13:00:00,846 Johnson St, Boston,MA,02215 +192476,Macbook Pro Laptop,1,1700.0,2019-04-17 13:35:00,646 Lakeview St, Boston,MA,02215 +192477,27in FHD Monitor,2,149.99,2019-04-28 16:39:00,192 6th St, Austin,TX,73301 +192478,34in Ultrawide Monitor,1,379.99,2019-04-30 13:47:00,786 Madison St, Boston,MA,02215 +192479,Lightning Charging Cable,1,14.95,2019-04-15 19:19:00,143 Walnut St, New York City,NY,10001 +192480,AAA Batteries (4-pack),1,2.99,2019-04-11 13:08:00,989 Ridge St, Atlanta,GA,30301 +192481,34in Ultrawide Monitor,1,379.99,2019-04-09 13:52:00,150 Elm St, Los Angeles,CA,90001 +192482,AAA Batteries (4-pack),1,2.99,2019-04-14 08:17:00,581 12th St, Dallas,TX,75001 +192482,34in Ultrawide Monitor,1,379.99,2019-04-14 08:17:00,581 12th St, Dallas,TX,75001 +192483,Wired Headphones,1,11.99,2019-04-26 19:28:00,748 Johnson St, Los Angeles,CA,90001 +192484,34in Ultrawide Monitor,1,379.99,2019-04-10 00:36:00,361 Washington St, Los Angeles,CA,90001 +192485,Google Phone,1,600.0,2019-04-09 15:38:00,83 Lake St, Los Angeles,CA,90001 +192486,27in FHD Monitor,1,149.99,2019-04-24 23:23:00,520 Church St, Boston,MA,02215 +192487,Apple Airpods Headphones,1,150.0,2019-04-16 13:56:00,647 Lincoln St, Boston,MA,02215 +192488,Apple Airpods Headphones,1,150.0,2019-04-25 20:33:00,648 Cherry St, Los Angeles,CA,90001 +192489,Lightning Charging Cable,1,14.95,2019-04-24 18:32:00,775 5th St, Atlanta,GA,30301 +192490,Lightning Charging Cable,1,14.95,2019-04-03 14:00:00,996 Hill St, Los Angeles,CA,90001 +192491,Apple Airpods Headphones,1,150.0,2019-04-20 12:24:00,811 Church St, New York City,NY,10001 +192492,Bose SoundSport Headphones,1,99.99,2019-04-25 10:14:00,387 6th St, Boston,MA,02215 +192493,Apple Airpods Headphones,1,150.0,2019-04-05 09:01:00,9 River St, Los Angeles,CA,90001 +192494,Lightning Charging Cable,1,14.95,2019-04-05 13:32:00,415 Walnut St, San Francisco,CA,94016 +192495,Google Phone,1,600.0,2019-04-20 14:31:00,302 River St, Portland,ME,04101 +192496,Lightning Charging Cable,1,14.95,2019-04-08 12:32:00,15 8th St, Los Angeles,CA,90001 +192497,AA Batteries (4-pack),2,3.84,2019-04-13 23:42:00,522 Elm St, San Francisco,CA,94016 +192498,USB-C Charging Cable,1,11.95,2019-04-20 22:36:00,100 Chestnut St, San Francisco,CA,94016 +192499,AAA Batteries (4-pack),2,2.99,2019-04-05 11:44:00,950 Hill St, New York City,NY,10001 +192500,Apple Airpods Headphones,1,150.0,2019-04-22 08:18:00,854 Hickory St, Los Angeles,CA,90001 +192501,USB-C Charging Cable,1,11.95,2019-04-07 12:58:00,727 Cedar St, San Francisco,CA,94016 +192502,27in FHD Monitor,1,149.99,2019-04-22 19:53:00,658 9th St, Dallas,TX,75001 +192503,AA Batteries (4-pack),1,3.84,2019-04-13 09:48:00,883 10th St, Seattle,WA,98101 +192504,AA Batteries (4-pack),1,3.84,2019-04-21 21:55:00,211 Main St, San Francisco,CA,94016 +192505,Lightning Charging Cable,1,14.95,2019-04-17 22:09:00,271 10th St, San Francisco,CA,94016 +192506,USB-C Charging Cable,1,11.95,2019-04-30 15:16:00,295 North St, Los Angeles,CA,90001 +192507,Lightning Charging Cable,1,14.95,2019-04-16 23:01:00,438 Elm St, Boston,MA,02215 +192508,Vareebadd Phone,1,400.0,2019-04-05 23:32:00,354 Park St, Los Angeles,CA,90001 +192509,Wired Headphones,1,11.99,2019-04-24 16:40:00,374 5th St, San Francisco,CA,94016 +192510,Lightning Charging Cable,2,14.95,2019-04-12 09:25:00,715 Lake St, New York City,NY,10001 +192511,Lightning Charging Cable,1,14.95,2019-04-11 08:37:00,552 12th St, Seattle,WA,98101 +192512,27in FHD Monitor,1,149.99,2019-04-06 15:39:00,217 West St, Portland,ME,04101 +192513,20in Monitor,1,109.99,2019-04-03 16:12:00,699 Cherry St, Austin,TX,73301 +192514,34in Ultrawide Monitor,1,379.99,2019-04-27 19:48:00,263 North St, Boston,MA,02215 +192515,Lightning Charging Cable,1,14.95,2019-04-05 15:03:00,146 Adams St, Austin,TX,73301 +192516,Wired Headphones,1,11.99,2019-04-17 07:34:00,955 7th St, Portland,OR,97035 +192517,USB-C Charging Cable,1,11.95,2019-04-17 09:07:00,412 Forest St, San Francisco,CA,94016 +192518,27in FHD Monitor,1,149.99,2019-04-27 12:39:00,748 River St, New York City,NY,10001 +192519,Lightning Charging Cable,1,14.95,2019-04-02 23:13:00,465 Spruce St, San Francisco,CA,94016 +192520,iPhone,1,700.0,2019-04-16 15:20:00,359 Center St, Seattle,WA,98101 +192521,27in FHD Monitor,1,149.99,2019-04-18 17:25:00,477 4th St, San Francisco,CA,94016 +192522,USB-C Charging Cable,1,11.95,2019-04-22 06:41:00,930 4th St, Seattle,WA,98101 +192523,27in FHD Monitor,1,149.99,2019-04-06 11:35:00,290 Church St, Seattle,WA,98101 +192524,Wired Headphones,1,11.99,2019-04-08 21:34:00,894 Center St, New York City,NY,10001 +192525,AA Batteries (4-pack),1,3.84,2019-04-15 10:19:00,995 9th St, San Francisco,CA,94016 +192526,Bose SoundSport Headphones,1,99.99,2019-04-26 20:32:00,430 Hill St, Portland,ME,04101 +192527,Google Phone,1,600.0,2019-04-25 01:08:00,529 Forest St, Atlanta,GA,30301 +192528,USB-C Charging Cable,1,11.95,2019-04-20 13:27:00,571 North St, San Francisco,CA,94016 +192529,Lightning Charging Cable,1,14.95,2019-04-11 07:45:00,389 4th St, New York City,NY,10001 +192530,Google Phone,1,600.0,2019-04-05 11:38:00,28 Madison St, Seattle,WA,98101 +192531,Flatscreen TV,1,300.0,2019-04-04 20:03:00,456 5th St, San Francisco,CA,94016 +192532,Apple Airpods Headphones,1,150.0,2019-04-01 13:54:00,14 River St, Austin,TX,73301 +192533,Wired Headphones,1,11.99,2019-04-28 11:35:00,778 Highland St, Los Angeles,CA,90001 +192534,Bose SoundSport Headphones,1,99.99,2019-04-23 13:41:00,968 Cedar St, Dallas,TX,75001 +192535,AAA Batteries (4-pack),2,2.99,2019-04-02 11:32:00,414 Center St, New York City,NY,10001 +192536,20in Monitor,1,109.99,2019-04-17 22:29:00,588 Church St, San Francisco,CA,94016 +192537,USB-C Charging Cable,1,11.95,2019-04-11 21:32:00,441 South St, San Francisco,CA,94016 +192538,ThinkPad Laptop,1,999.99,2019-04-07 22:20:00,101 Cherry St, Los Angeles,CA,90001 +192539,Apple Airpods Headphones,1,150.0,2019-04-23 01:14:00,808 14th St, Atlanta,GA,30301 +192540,Vareebadd Phone,1,400.0,2019-04-28 14:16:00,66 Cedar St, Los Angeles,CA,90001 +192541,Lightning Charging Cable,1,14.95,2019-04-15 21:57:00,507 Highland St, San Francisco,CA,94016 +192542,Wired Headphones,1,11.99,2019-04-15 12:56:00,84 Maple St, Dallas,TX,75001 +192543,Wired Headphones,1,11.99,2019-04-17 17:18:00,838 8th St, Boston,MA,02215 +192544,Wired Headphones,1,11.99,2019-04-18 11:27:00,899 2nd St, Portland,ME,04101 +192545,Apple Airpods Headphones,1,150.0,2019-04-30 14:25:00,199 Hickory St, Los Angeles,CA,90001 +192546,Lightning Charging Cable,1,14.95,2019-04-17 22:31:00,188 Meadow St, Boston,MA,02215 +192547,27in FHD Monitor,1,149.99,2019-04-27 21:20:00,492 Pine St, Atlanta,GA,30301 +192548,Wired Headphones,1,11.99,2019-04-02 23:21:00,778 Willow St, San Francisco,CA,94016 +192549,iPhone,1,700.0,2019-04-11 11:16:00,296 4th St, Dallas,TX,75001 +192550,Flatscreen TV,1,300.0,2019-04-14 18:20:00,582 6th St, Los Angeles,CA,90001 +192551,Apple Airpods Headphones,1,150.0,2019-04-08 12:41:00,970 Cherry St, Boston,MA,02215 +192552,AA Batteries (4-pack),1,3.84,2019-04-28 21:04:00,35 Adams St, San Francisco,CA,94016 +192553,Wired Headphones,1,11.99,2019-04-22 01:20:00,973 13th St, Boston,MA,02215 +192554,Lightning Charging Cable,1,14.95,2019-04-27 10:55:00,968 Forest St, New York City,NY,10001 +192555,AAA Batteries (4-pack),1,2.99,2019-04-20 19:47:00,192 Ridge St, San Francisco,CA,94016 +192556,34in Ultrawide Monitor,1,379.99,2019-04-06 04:30:00,860 2nd St, San Francisco,CA,94016 +192557,27in FHD Monitor,1,149.99,2019-04-19 20:50:00,424 11th St, Seattle,WA,98101 +192558,Lightning Charging Cable,1,14.95,2019-04-14 21:11:00,995 Adams St, San Francisco,CA,94016 +192559,USB-C Charging Cable,2,11.95,2019-04-11 12:14:00,359 Lakeview St, Portland,OR,97035 +192560,27in FHD Monitor,1,149.99,2019-04-15 06:37:00,744 4th St, San Francisco,CA,94016 +192561,Wired Headphones,1,11.99,2019-04-13 22:43:00,223 Jackson St, San Francisco,CA,94016 +192562,Apple Airpods Headphones,1,150.0,2019-04-06 18:54:00,481 Pine St, San Francisco,CA,94016 +192563,AA Batteries (4-pack),1,3.84,2019-04-16 14:05:00,587 Wilson St, Seattle,WA,98101 +192564,Lightning Charging Cable,1,14.95,2019-04-28 22:11:00,768 Jackson St, San Francisco,CA,94016 +192565,AAA Batteries (4-pack),1,2.99,2019-04-01 16:37:00,30 14th St, Boston,MA,02215 +192566,AA Batteries (4-pack),1,3.84,2019-04-28 22:41:00,859 6th St, New York City,NY,10001 +192567,Apple Airpods Headphones,1,150.0,2019-04-14 23:13:00,560 Hill St, San Francisco,CA,94016 +192568,AAA Batteries (4-pack),1,2.99,2019-04-02 22:04:00,493 Walnut St, Los Angeles,CA,90001 +192569,iPhone,1,700.0,2019-04-30 22:55:00,933 Washington St, New York City,NY,10001 +192569,Lightning Charging Cable,1,14.95,2019-04-30 22:55:00,933 Washington St, New York City,NY,10001 +192570,Bose SoundSport Headphones,1,99.99,2019-04-02 18:09:00,525 Jefferson St, Los Angeles,CA,90001 +192571,AAA Batteries (4-pack),1,2.99,2019-04-11 14:50:00,694 Maple St, Dallas,TX,75001 +192572,Apple Airpods Headphones,1,150.0,2019-04-06 14:05:00,504 Meadow St, Boston,MA,02215 +192573,34in Ultrawide Monitor,1,379.99,2019-04-01 20:08:00,458 8th St, New York City,NY,10001 +192574,Bose SoundSport Headphones,1,99.99,2019-04-15 14:00:00,567 Hill St, Boston,MA,02215 +192575,AAA Batteries (4-pack),1,2.99,2019-04-01 13:57:00,291 Elm St, New York City,NY,10001 +192576,AA Batteries (4-pack),2,3.84,2019-04-24 12:38:00,885 Adams St, San Francisco,CA,94016 +192577,AAA Batteries (4-pack),2,2.99,2019-04-22 19:17:00,708 Hickory St, San Francisco,CA,94016 +192578,Flatscreen TV,1,300.0,2019-04-27 20:20:00,492 Lakeview St, Portland,OR,97035 +192579,AA Batteries (4-pack),1,3.84,2019-04-25 23:07:00,806 Main St, Boston,MA,02215 +192580,AAA Batteries (4-pack),2,2.99,2019-04-01 21:43:00,282 Jackson St, Dallas,TX,75001 +192581,USB-C Charging Cable,1,11.95,2019-04-12 19:37:00,642 Wilson St, San Francisco,CA,94016 +192582,Lightning Charging Cable,1,14.95,2019-04-12 13:28:00,154 North St, Atlanta,GA,30301 +192583,USB-C Charging Cable,1,11.95,2019-04-05 20:05:00,511 6th St, Los Angeles,CA,90001 +192584,USB-C Charging Cable,2,11.95,2019-04-05 12:00:00,357 6th St, San Francisco,CA,94016 +192585,AA Batteries (4-pack),3,3.84,2019-04-06 01:10:00,145 14th St, Los Angeles,CA,90001 +192586,Vareebadd Phone,1,400.0,2019-04-14 19:03:00,822 Cedar St, San Francisco,CA,94016 +192587,Wired Headphones,1,11.99,2019-04-21 22:13:00,778 Pine St, San Francisco,CA,94016 +192588,Lightning Charging Cable,1,14.95,2019-04-05 16:32:00,371 10th St, Dallas,TX,75001 +192589,Bose SoundSport Headphones,1,99.99,2019-04-29 11:41:00,65 Dogwood St, Boston,MA,02215 +192590,AA Batteries (4-pack),1,3.84,2019-04-12 19:04:00,452 Sunset St, New York City,NY,10001 +192591,AA Batteries (4-pack),1,3.84,2019-04-07 13:23:00,825 Meadow St, Dallas,TX,75001 +192592,USB-C Charging Cable,2,11.95,2019-04-12 21:38:00,989 Hickory St, San Francisco,CA,94016 +192593,Bose SoundSport Headphones,1,99.99,2019-04-04 12:56:00,657 Church St, Seattle,WA,98101 +192594,27in FHD Monitor,1,149.99,2019-04-14 11:49:00,227 Maple St, New York City,NY,10001 +192595,AAA Batteries (4-pack),1,2.99,2019-04-07 11:34:00,25 Pine St, San Francisco,CA,94016 +192596,27in 4K Gaming Monitor,1,389.99,2019-04-02 20:32:00,569 Maple St, Los Angeles,CA,90001 +192597,27in FHD Monitor,1,149.99,2019-04-08 15:58:00,117 Meadow St, Boston,MA,02215 +192598,Wired Headphones,1,11.99,2019-04-08 20:08:00,11 8th St, Portland,OR,97035 +192599,USB-C Charging Cable,1,11.95,2019-04-12 14:42:00,671 River St, Austin,TX,73301 +192600,Apple Airpods Headphones,1,150.0,2019-04-24 19:48:00,979 Lakeview St, San Francisco,CA,94016 +192601,AAA Batteries (4-pack),2,2.99,2019-04-24 02:07:00,894 14th St, San Francisco,CA,94016 +192602,Lightning Charging Cable,1,14.95,2019-04-01 17:18:00,593 Dogwood St, Atlanta,GA,30301 +192603,Lightning Charging Cable,1,14.95,2019-04-12 10:45:00,376 Hickory St, Los Angeles,CA,90001 +192604,Lightning Charging Cable,2,14.95,2019-04-02 13:21:00,56 Meadow St, Boston,MA,02215 +192605,Lightning Charging Cable,1,14.95,2019-04-24 01:37:00,866 Ridge St, Atlanta,GA,30301 +192606,Google Phone,1,600.0,2019-04-20 14:38:00,492 12th St, Boston,MA,02215 +192607,34in Ultrawide Monitor,1,379.99,2019-04-05 00:00:00,645 Lake St, San Francisco,CA,94016 +192608,AAA Batteries (4-pack),1,2.99,2019-04-02 17:35:00,711 Cedar St, Portland,OR,97035 +192609,iPhone,1,700.0,2019-04-08 15:45:00,599 Johnson St, New York City,NY,10001 +192609,Lightning Charging Cable,1,14.95,2019-04-08 15:45:00,599 Johnson St, New York City,NY,10001 +192610,Lightning Charging Cable,2,14.95,2019-04-01 18:29:00,941 Ridge St, New York City,NY,10001 +192611,Bose SoundSport Headphones,1,99.99,2019-04-17 20:07:00,952 River St, San Francisco,CA,94016 +192612,AAA Batteries (4-pack),3,2.99,2019-04-11 13:13:00,813 Willow St, San Francisco,CA,94016 +192613,Lightning Charging Cable,1,14.95,2019-04-28 08:52:00,808 Lincoln St, Los Angeles,CA,90001 +192614,ThinkPad Laptop,1,999.99,2019-04-24 16:33:00,668 Sunset St, Dallas,TX,75001 +192615,ThinkPad Laptop,1,999.99,2019-04-17 16:22:00,141 West St, Seattle,WA,98101 +192616,20in Monitor,1,109.99,2019-04-05 20:57:00,476 11th St, Seattle,WA,98101 +192617,Apple Airpods Headphones,1,150.0,2019-04-25 08:14:00,608 Highland St, San Francisco,CA,94016 +192618,iPhone,1,700.0,2019-04-25 04:32:00,198 Pine St, Austin,TX,73301 +192619,Wired Headphones,1,11.99,2019-04-16 09:49:00,116 Church St, New York City,NY,10001 +192620,Wired Headphones,1,11.99,2019-04-19 00:33:00,179 Chestnut St, Los Angeles,CA,90001 +192621,27in FHD Monitor,1,149.99,2019-04-21 06:59:00,985 Pine St, Boston,MA,02215 +192622,Google Phone,1,600.0,2019-04-07 10:36:00,317 Lincoln St, San Francisco,CA,94016 +192623,Wired Headphones,1,11.99,2019-04-14 22:13:00,448 Lincoln St, Portland,OR,97035 +192624,AA Batteries (4-pack),1,3.84,2019-04-19 17:36:00,686 Maple St, Boston,MA,02215 +192625,Bose SoundSport Headphones,1,99.99,2019-04-15 18:07:00,722 West St, San Francisco,CA,94016 +192626,USB-C Charging Cable,1,11.95,2019-04-11 22:10:00,819 West St, Dallas,TX,75001 +192627,Lightning Charging Cable,1,14.95,2019-04-30 15:51:00,984 Hickory St, Atlanta,GA,30301 +192628,27in FHD Monitor,1,149.99,2019-04-22 10:38:00,588 10th St, Dallas,TX,75001 +192629,AA Batteries (4-pack),2,3.84,2019-04-14 10:10:00,95 Cedar St, Boston,MA,02215 +192630,Google Phone,1,600.0,2019-04-23 15:23:00,669 4th St, San Francisco,CA,94016 +192631,Lightning Charging Cable,1,14.95,2019-04-05 22:17:00,279 Sunset St, San Francisco,CA,94016 +192632,Flatscreen TV,1,300.0,2019-04-09 17:45:00,671 Willow St, New York City,NY,10001 +192633,34in Ultrawide Monitor,1,379.99,2019-04-01 17:34:00,205 Walnut St, New York City,NY,10001 +192634,27in FHD Monitor,1,149.99,2019-04-18 20:23:00,244 10th St, Los Angeles,CA,90001 +192635,USB-C Charging Cable,1,11.95,2019-04-26 20:03:00,513 Adams St, San Francisco,CA,94016 +192636,Lightning Charging Cable,1,14.95,2019-04-15 16:15:00,125 Jackson St, Boston,MA,02215 +192637,ThinkPad Laptop,1,999.99,2019-04-23 01:57:00,432 Jackson St, Seattle,WA,98101 +192638,27in FHD Monitor,1,149.99,2019-04-25 11:22:00,380 13th St, Seattle,WA,98101 +192639,27in 4K Gaming Monitor,1,389.99,2019-04-24 13:37:00,683 Lakeview St, New York City,NY,10001 +192640,USB-C Charging Cable,1,11.95,2019-04-06 13:35:00,784 Lake St, Boston,MA,02215 +192641,AA Batteries (4-pack),2,3.84,2019-04-02 14:03:00,296 14th St, San Francisco,CA,94016 +192642,Wired Headphones,2,11.99,2019-04-21 05:19:00,808 14th St, Atlanta,GA,30301 +192643,Google Phone,1,600.0,2019-04-19 22:33:00,624 Center St, Boston,MA,02215 +192643,ThinkPad Laptop,1,999.99,2019-04-19 22:33:00,624 Center St, Boston,MA,02215 +192644,Wired Headphones,1,11.99,2019-04-29 00:56:00,633 4th St, Boston,MA,02215 +192645,Google Phone,1,600.0,2019-04-21 07:47:00,932 Maple St, San Francisco,CA,94016 +192645,Bose SoundSport Headphones,1,99.99,2019-04-21 07:47:00,932 Maple St, San Francisco,CA,94016 +192645,Wired Headphones,1,11.99,2019-04-21 07:47:00,932 Maple St, San Francisco,CA,94016 +192646,Apple Airpods Headphones,1,150.0,2019-04-21 18:16:00,53 North St, Los Angeles,CA,90001 +192647,AAA Batteries (4-pack),2,2.99,2019-04-05 16:04:00,372 Elm St, Atlanta,GA,30301 +192648,USB-C Charging Cable,1,11.95,2019-04-24 02:49:00,75 8th St, Seattle,WA,98101 +192649,Lightning Charging Cable,1,14.95,2019-04-04 18:09:00,973 Dogwood St, Boston,MA,02215 +192650,Wired Headphones,1,11.99,2019-04-15 18:13:00,844 River St, New York City,NY,10001 +192651,Apple Airpods Headphones,1,150.0,2019-04-10 19:23:00,262 North St, Austin,TX,73301 +192652,Lightning Charging Cable,1,14.95,2019-04-20 13:16:00,380 11th St, Atlanta,GA,30301 +192653,Lightning Charging Cable,1,14.95,2019-04-27 14:13:00,958 8th St, Los Angeles,CA,90001 +192654,iPhone,1,700.0,2019-04-23 23:56:00,287 Willow St, Atlanta,GA,30301 +192655,27in FHD Monitor,1,149.99,2019-04-03 19:14:00,937 Spruce St, Atlanta,GA,30301 +192656,20in Monitor,1,109.99,2019-04-22 07:09:00,603 1st St, Los Angeles,CA,90001 +192657,Lightning Charging Cable,1,14.95,2019-04-17 12:22:00,735 6th St, San Francisco,CA,94016 +192658,iPhone,1,700.0,2019-04-30 14:16:00,9 Maple St, New York City,NY,10001 +192659,Macbook Pro Laptop,1,1700.0,2019-04-03 14:22:00,84 5th St, Dallas,TX,75001 +192660,USB-C Charging Cable,1,11.95,2019-04-23 20:56:00,569 Dogwood St, New York City,NY,10001 +192661,Apple Airpods Headphones,1,150.0,2019-04-23 12:31:00,809 11th St, Atlanta,GA,30301 +192662,Wired Headphones,1,11.99,2019-04-16 16:48:00,493 Elm St, San Francisco,CA,94016 +192663,27in 4K Gaming Monitor,1,389.99,2019-04-23 12:08:00,945 Forest St, Atlanta,GA,30301 +192664,27in FHD Monitor,1,149.99,2019-04-07 12:09:00,742 Hickory St, San Francisco,CA,94016 +192665,34in Ultrawide Monitor,1,379.99,2019-04-04 11:40:00,166 Park St, Atlanta,GA,30301 +192666,Macbook Pro Laptop,1,1700.0,2019-04-17 10:20:00,655 Madison St, San Francisco,CA,94016 +192667,AAA Batteries (4-pack),1,2.99,2019-04-10 08:52:00,792 River St, San Francisco,CA,94016 +192668,20in Monitor,1,109.99,2019-04-10 11:48:00,72 Center St, Atlanta,GA,30301 +192669,iPhone,1,700.0,2019-04-27 14:14:00,759 Hickory St, Boston,MA,02215 +192670,Lightning Charging Cable,1,14.95,2019-04-11 23:30:00,736 2nd St, New York City,NY,10001 +192671,ThinkPad Laptop,1,999.99,2019-04-07 11:32:00,196 Dogwood St, Dallas,TX,75001 +192672,AA Batteries (4-pack),1,3.84,2019-04-06 10:03:00,574 10th St, San Francisco,CA,94016 +192673,Bose SoundSport Headphones,1,99.99,2019-04-02 19:33:00,447 North St, Los Angeles,CA,90001 +192674,Wired Headphones,1,11.99,2019-04-03 12:52:00,746 Hickory St, San Francisco,CA,94016 +192675,34in Ultrawide Monitor,1,379.99,2019-04-05 09:47:00,234 11th St, San Francisco,CA,94016 +192676,iPhone,1,700.0,2019-04-27 17:11:00,412 Church St, Seattle,WA,98101 +192677,AAA Batteries (4-pack),1,2.99,2019-04-08 14:34:00,75 Main St, Boston,MA,02215 +192677,iPhone,1,700.0,2019-04-08 14:34:00,75 Main St, Boston,MA,02215 +192678,ThinkPad Laptop,1,999.99,2019-04-24 11:44:00,444 Lakeview St, Los Angeles,CA,90001 +192679,27in FHD Monitor,1,149.99,2019-04-06 12:10:00,857 West St, Los Angeles,CA,90001 +192680,USB-C Charging Cable,1,11.95,2019-04-29 21:07:00,980 River St, Boston,MA,02215 +192681,Google Phone,1,600.0,2019-04-09 16:41:00,338 South St, Seattle,WA,98101 +192681,Wired Headphones,1,11.99,2019-04-09 16:41:00,338 South St, Seattle,WA,98101 +192682,27in 4K Gaming Monitor,1,389.99,2019-04-17 16:24:00,367 Cedar St, New York City,NY,10001 +192683,AAA Batteries (4-pack),1,2.99,2019-04-21 22:20:00,891 Spruce St, San Francisco,CA,94016 +192684,AA Batteries (4-pack),4,3.84,2019-04-16 12:37:00,902 Park St, Dallas,TX,75001 +192685,Apple Airpods Headphones,1,150.0,2019-04-21 10:46:00,706 West St, Seattle,WA,98101 +192686,Apple Airpods Headphones,1,150.0,2019-04-27 19:14:00,401 12th St, Los Angeles,CA,90001 +192687,iPhone,1,700.0,2019-04-09 12:40:00,115 8th St, Los Angeles,CA,90001 +192688,Wired Headphones,1,11.99,2019-04-11 00:46:00,930 Hickory St, San Francisco,CA,94016 +192689,Apple Airpods Headphones,1,150.0,2019-04-03 17:21:00,79 Cherry St, San Francisco,CA,94016 +192690,USB-C Charging Cable,1,11.95,2019-04-02 08:35:00,477 Center St, Los Angeles,CA,90001 +192691,34in Ultrawide Monitor,1,379.99,2019-04-10 18:30:00,623 Jackson St, Austin,TX,73301 +192692,USB-C Charging Cable,1,11.95,2019-04-21 16:54:00,253 Johnson St, San Francisco,CA,94016 +192693,Lightning Charging Cable,1,14.95,2019-04-14 16:17:00,159 Walnut St, Dallas,TX,75001 +192694,Wired Headphones,1,11.99,2019-04-11 15:54:00,773 14th St, Boston,MA,02215 +192695,Macbook Pro Laptop,1,1700.0,2019-04-02 12:12:00,236 Lincoln St, Los Angeles,CA,90001 +192696,34in Ultrawide Monitor,1,379.99,2019-04-01 08:32:00,925 South St, San Francisco,CA,94016 +192697,Macbook Pro Laptop,1,1700.0,2019-04-26 16:43:00,810 7th St, Boston,MA,02215 +192698,Apple Airpods Headphones,1,150.0,2019-04-27 13:42:00,490 6th St, Dallas,TX,75001 +192699,AAA Batteries (4-pack),2,2.99,2019-04-30 00:21:00,508 10th St, San Francisco,CA,94016 +192700,Google Phone,1,600.0,2019-04-09 10:53:00,213 Hickory St, New York City,NY,10001 +192701,Apple Airpods Headphones,1,150.0,2019-04-15 14:21:00,899 Jefferson St, New York City,NY,10001 +192702,AAA Batteries (4-pack),1,2.99,2019-04-26 20:27:00,731 Maple St, Atlanta,GA,30301 +192703,Lightning Charging Cable,1,14.95,2019-04-21 22:01:00,403 North St, Los Angeles,CA,90001 +192704,Lightning Charging Cable,2,14.95,2019-04-08 23:42:00,77 Cherry St, San Francisco,CA,94016 +192705,Lightning Charging Cable,1,14.95,2019-04-27 13:16:00,121 14th St, Portland,ME,04101 +192706,AA Batteries (4-pack),1,3.84,2019-04-28 20:00:00,660 Park St, Dallas,TX,75001 +192707,AA Batteries (4-pack),1,3.84,2019-04-16 18:02:00,10 Park St, Austin,TX,73301 +192708,Flatscreen TV,1,300.0,2019-04-01 13:51:00,595 10th St, New York City,NY,10001 +192709,AA Batteries (4-pack),1,3.84,2019-04-13 21:19:00,309 5th St, San Francisco,CA,94016 +192710,Lightning Charging Cable,1,14.95,2019-04-13 22:13:00,171 13th St, Dallas,TX,75001 +192711,AAA Batteries (4-pack),2,2.99,2019-04-20 17:46:00,763 Lakeview St, Boston,MA,02215 +192712,34in Ultrawide Monitor,1,379.99,2019-04-04 20:29:00,815 10th St, Austin,TX,73301 +192713,Apple Airpods Headphones,1,150.0,2019-04-01 20:45:00,251 11th St, Atlanta,GA,30301 +192714,AA Batteries (4-pack),2,3.84,2019-04-28 14:32:00,149 Adams St, Austin,TX,73301 +192715,AA Batteries (4-pack),1,3.84,2019-04-09 11:55:00,535 2nd St, Dallas,TX,75001 +192716,Apple Airpods Headphones,1,150.0,2019-04-22 00:03:00,578 Hickory St, Los Angeles,CA,90001 +192717,27in FHD Monitor,1,149.99,2019-04-26 21:48:00,400 North St, New York City,NY,10001 +192718,ThinkPad Laptop,1,999.99,2019-05-01 00:54:00,342 8th St, Portland,OR,97035 +192719,Wired Headphones,1,11.99,2019-04-15 15:16:00,654 Dogwood St, San Francisco,CA,94016 +192720,USB-C Charging Cable,1,11.95,2019-04-07 17:19:00,833 Adams St, New York City,NY,10001 +192721,Wired Headphones,1,11.99,2019-04-20 13:33:00,581 River St, San Francisco,CA,94016 +192722,USB-C Charging Cable,1,11.95,2019-04-03 19:54:00,58 Meadow St, Boston,MA,02215 +192723,Apple Airpods Headphones,1,150.0,2019-04-04 17:56:00,797 Jefferson St, Portland,OR,97035 +192724,AA Batteries (4-pack),3,3.84,2019-04-11 21:10:00,232 Wilson St, Boston,MA,02215 +192725,AAA Batteries (4-pack),1,2.99,2019-04-13 14:09:00,75 13th St, San Francisco,CA,94016 +192726,Lightning Charging Cable,2,14.95,2019-04-02 12:38:00,73 Wilson St, New York City,NY,10001 +192727,27in 4K Gaming Monitor,1,389.99,2019-04-19 10:54:00,474 4th St, San Francisco,CA,94016 +192727,Macbook Pro Laptop,1,1700.0,2019-04-19 10:54:00,474 4th St, San Francisco,CA,94016 +192728,Wired Headphones,1,11.99,2019-04-10 22:09:00,496 6th St, San Francisco,CA,94016 +192729,AA Batteries (4-pack),1,3.84,2019-04-15 15:45:00,123 4th St, Seattle,WA,98101 +192730,AA Batteries (4-pack),1,3.84,2019-04-10 09:57:00,101 South St, New York City,NY,10001 +192731,27in FHD Monitor,1,149.99,2019-04-12 14:59:00,501 8th St, Boston,MA,02215 +192732,LG Dryer,1,600.0,2019-04-06 16:01:00,41 Forest St, Seattle,WA,98101 +192733,USB-C Charging Cable,1,11.95,2019-04-04 16:25:00,501 8th St, Portland,ME,04101 +192734,Bose SoundSport Headphones,1,99.99,2019-04-27 10:55:00,843 Cherry St, San Francisco,CA,94016 +192735,Bose SoundSport Headphones,1,99.99,2019-04-21 20:34:00,678 12th St, Dallas,TX,75001 +192736,20in Monitor,1,109.99,2019-04-13 09:41:00,636 14th St, Austin,TX,73301 +192737,AAA Batteries (4-pack),3,2.99,2019-04-08 20:34:00,187 Cedar St, San Francisco,CA,94016 +192738,Bose SoundSport Headphones,1,99.99,2019-04-17 11:27:00,396 River St, Seattle,WA,98101 +192739,Apple Airpods Headphones,1,150.0,2019-04-04 17:58:00,971 Hill St, Seattle,WA,98101 +192740,Apple Airpods Headphones,1,150.0,2019-04-03 13:09:00,368 Jackson St, San Francisco,CA,94016 +192741,Bose SoundSport Headphones,1,99.99,2019-04-09 19:06:00,946 Dogwood St, San Francisco,CA,94016 +192742,Lightning Charging Cable,1,14.95,2019-04-18 11:55:00,215 Maple St, Atlanta,GA,30301 +192743,Lightning Charging Cable,1,14.95,2019-04-24 10:09:00,583 Church St, Los Angeles,CA,90001 +192744,Bose SoundSport Headphones,1,99.99,2019-04-13 17:56:00,628 Spruce St, Dallas,TX,75001 +192745,Lightning Charging Cable,1,14.95,2019-04-24 01:15:00,709 Pine St, Austin,TX,73301 +192746,Apple Airpods Headphones,1,150.0,2019-04-10 18:25:00,234 Meadow St, New York City,NY,10001 +192747,Lightning Charging Cable,1,14.95,2019-04-12 19:35:00,411 Lake St, San Francisco,CA,94016 +192748,USB-C Charging Cable,1,11.95,2019-04-21 15:44:00,660 Walnut St, Seattle,WA,98101 +192749,Lightning Charging Cable,1,14.95,2019-04-05 17:14:00,495 Elm St, Dallas,TX,75001 +192750,Lightning Charging Cable,1,14.95,2019-04-20 08:38:00,716 13th St, Los Angeles,CA,90001 +192751,ThinkPad Laptop,1,999.99,2019-04-11 12:44:00,435 Pine St, Los Angeles,CA,90001 +192752,USB-C Charging Cable,1,11.95,2019-04-21 19:58:00,416 Pine St, San Francisco,CA,94016 +192753,Lightning Charging Cable,1,14.95,2019-04-17 11:54:00,637 4th St, Dallas,TX,75001 +192754,Lightning Charging Cable,1,14.95,2019-04-22 02:38:00,533 North St, Boston,MA,02215 +192755,AA Batteries (4-pack),1,3.84,2019-04-14 14:47:00,876 Walnut St, Atlanta,GA,30301 +192756,27in 4K Gaming Monitor,1,389.99,2019-04-22 22:43:00,400 2nd St, Los Angeles,CA,90001 +192757,AA Batteries (4-pack),3,3.84,2019-04-15 08:08:00,788 4th St, Austin,TX,73301 +192758,AAA Batteries (4-pack),2,2.99,2019-04-20 09:13:00,586 Adams St, Los Angeles,CA,90001 +192759,Lightning Charging Cable,1,14.95,2019-04-26 17:21:00,148 8th St, Austin,TX,73301 +192760,Wired Headphones,1,11.99,2019-04-05 06:21:00,185 9th St, Los Angeles,CA,90001 +192761,Bose SoundSport Headphones,1,99.99,2019-04-09 22:24:00,77 Chestnut St, San Francisco,CA,94016 +192762,27in 4K Gaming Monitor,1,389.99,2019-04-08 19:26:00,579 5th St, Atlanta,GA,30301 +192763,ThinkPad Laptop,1,999.99,2019-04-17 09:17:00,970 West St, Atlanta,GA,30301 +192764,USB-C Charging Cable,1,11.95,2019-04-26 17:47:00,59 1st St, Los Angeles,CA,90001 +192765,Macbook Pro Laptop,1,1700.0,2019-04-25 15:59:00,324 Jackson St, Atlanta,GA,30301 +192766,Wired Headphones,1,11.99,2019-04-29 13:18:00,695 Forest St, Dallas,TX,75001 +192767,USB-C Charging Cable,1,11.95,2019-04-19 11:11:00,727 Park St, Portland,OR,97035 +192768,AAA Batteries (4-pack),1,2.99,2019-04-10 20:49:00,563 Center St, San Francisco,CA,94016 +192769,AA Batteries (4-pack),1,3.84,2019-04-12 10:39:00,81 14th St, New York City,NY,10001 +192770,USB-C Charging Cable,1,11.95,2019-04-16 14:58:00,331 4th St, Atlanta,GA,30301 +192771,iPhone,1,700.0,2019-04-17 00:08:00,793 Elm St, San Francisco,CA,94016 +192772,Bose SoundSport Headphones,1,99.99,2019-04-27 13:14:00,400 1st St, Dallas,TX,75001 +192773,USB-C Charging Cable,1,11.95,2019-04-09 14:24:00,944 1st St, Los Angeles,CA,90001 +192774,Wired Headphones,1,11.99,2019-04-08 15:27:00,65 10th St, Portland,ME,04101 +192775,Google Phone,1,600.0,2019-04-16 14:47:00,161 4th St, Boston,MA,02215 +192776,USB-C Charging Cable,1,11.95,2019-04-17 11:37:00,428 Hickory St, San Francisco,CA,94016 +192777,AAA Batteries (4-pack),1,2.99,2019-04-10 09:42:00,508 River St, Seattle,WA,98101 +192778,iPhone,1,700.0,2019-04-20 11:29:00,791 South St, New York City,NY,10001 +192779,AAA Batteries (4-pack),1,2.99,2019-04-02 23:52:00,221 11th St, San Francisco,CA,94016 +192780,Bose SoundSport Headphones,1,99.99,2019-04-26 16:29:00,965 Lakeview St, San Francisco,CA,94016 +192781,Apple Airpods Headphones,1,150.0,2019-04-13 17:29:00,541 Hill St, San Francisco,CA,94016 +192782,iPhone,1,700.0,2019-04-15 22:16:00,64 13th St, Boston,MA,02215 +192783,AAA Batteries (4-pack),1,2.99,2019-04-06 23:27:00,396 Sunset St, Boston,MA,02215 +192784,AAA Batteries (4-pack),1,2.99,2019-04-10 17:44:00,2 South St, San Francisco,CA,94016 +192785,Wired Headphones,1,11.99,2019-04-08 21:55:00,853 12th St, New York City,NY,10001 +192786,Flatscreen TV,1,300.0,2019-04-12 12:55:00,85 Johnson St, Austin,TX,73301 +192787,Lightning Charging Cable,1,14.95,2019-04-13 11:53:00,866 Adams St, San Francisco,CA,94016 +192788,AAA Batteries (4-pack),1,2.99,2019-04-30 15:40:00,836 11th St, San Francisco,CA,94016 +192789,Wired Headphones,1,11.99,2019-04-12 22:42:00,6 Dogwood St, Austin,TX,73301 +192790,Bose SoundSport Headphones,1,99.99,2019-04-30 21:41:00,739 Jackson St, Seattle,WA,98101 +192791,AA Batteries (4-pack),2,3.84,2019-04-22 06:46:00,162 Cherry St, Los Angeles,CA,90001 +192792,Lightning Charging Cable,1,14.95,2019-04-02 10:31:00,299 Spruce St, Seattle,WA,98101 +192793,34in Ultrawide Monitor,1,379.99,2019-04-19 18:12:00,907 Highland St, Boston,MA,02215 +192794,Lightning Charging Cable,1,14.95,2019-04-05 14:46:00,337 5th St, Seattle,WA,98101 +192795,Lightning Charging Cable,2,14.95,2019-04-14 22:59:00,128 Ridge St, Atlanta,GA,30301 +192796,USB-C Charging Cable,1,11.95,2019-04-29 09:52:00,110 4th St, Seattle,WA,98101 +192797,iPhone,1,700.0,2019-04-10 04:24:00,905 Jefferson St, Los Angeles,CA,90001 +192797,Apple Airpods Headphones,1,150.0,2019-04-10 04:24:00,905 Jefferson St, Los Angeles,CA,90001 +192798,Vareebadd Phone,1,400.0,2019-04-09 13:23:00,282 Park St, Atlanta,GA,30301 +192798,USB-C Charging Cable,1,11.95,2019-04-09 13:23:00,282 Park St, Atlanta,GA,30301 +192799,Bose SoundSport Headphones,1,99.99,2019-04-03 09:06:00,999 Adams St, Boston,MA,02215 +192800,AAA Batteries (4-pack),1,2.99,2019-04-02 22:17:00,590 Pine St, Boston,MA,02215 +192801,USB-C Charging Cable,1,11.95,2019-04-03 22:13:00,172 Chestnut St, Portland,OR,97035 +192802,AA Batteries (4-pack),1,3.84,2019-04-30 13:00:00,17 Madison St, Seattle,WA,98101 +192803,20in Monitor,1,109.99,2019-04-07 11:33:00,929 13th St, San Francisco,CA,94016 +192804,Lightning Charging Cable,2,14.95,2019-04-09 22:19:00,219 14th St, Atlanta,GA,30301 +192805,Bose SoundSport Headphones,1,99.99,2019-04-02 12:17:00,950 10th St, San Francisco,CA,94016 +192806,iPhone,1,700.0,2019-04-29 19:48:00,947 Lake St, San Francisco,CA,94016 +192807,AAA Batteries (4-pack),1,2.99,2019-04-25 13:01:00,383 7th St, San Francisco,CA,94016 +192808,Wired Headphones,2,11.99,2019-04-25 08:18:00,182 Hickory St, Portland,OR,97035 +192809,Lightning Charging Cable,1,14.95,2019-04-28 21:37:00,572 Washington St, San Francisco,CA,94016 +192810,AA Batteries (4-pack),1,3.84,2019-04-24 16:21:00,193 Madison St, San Francisco,CA,94016 +192811,Vareebadd Phone,1,400.0,2019-04-20 11:27:00,483 Center St, Los Angeles,CA,90001 +192812,Lightning Charging Cable,2,14.95,2019-04-16 22:15:00,454 Pine St, San Francisco,CA,94016 +192813,Wired Headphones,1,11.99,2019-04-30 11:55:00,655 Jackson St, Dallas,TX,75001 +192814,Macbook Pro Laptop,1,1700.0,2019-04-21 19:22:00,744 14th St, Seattle,WA,98101 +192814,AAA Batteries (4-pack),2,2.99,2019-04-21 19:22:00,744 14th St, Seattle,WA,98101 +192815,Apple Airpods Headphones,1,150.0,2019-04-23 21:19:00,656 South St, Atlanta,GA,30301 +192816,34in Ultrawide Monitor,1,379.99,2019-04-24 14:29:00,832 Hill St, Portland,OR,97035 +192817,USB-C Charging Cable,2,11.95,2019-04-09 19:26:00,530 14th St, New York City,NY,10001 +192818,27in 4K Gaming Monitor,1,389.99,2019-04-04 15:21:00,305 Cedar St, Austin,TX,73301 +192819,AAA Batteries (4-pack),1,2.99,2019-04-03 21:54:00,186 Ridge St, Seattle,WA,98101 +192820,Lightning Charging Cable,1,14.95,2019-04-08 16:51:00,662 Willow St, New York City,NY,10001 +192820,AA Batteries (4-pack),1,3.84,2019-04-08 16:51:00,662 Willow St, New York City,NY,10001 +192821,AA Batteries (4-pack),1,3.84,2019-04-25 16:10:00,706 Johnson St, San Francisco,CA,94016 +192822,Vareebadd Phone,1,400.0,2019-04-10 18:16:00,561 13th St, New York City,NY,10001 +192823,USB-C Charging Cable,1,11.95,2019-04-11 12:36:00,468 8th St, San Francisco,CA,94016 +192824,USB-C Charging Cable,1,11.95,2019-04-27 15:59:00,287 Highland St, San Francisco,CA,94016 +192825,Vareebadd Phone,1,400.0,2019-04-16 14:55:00,807 10th St, Dallas,TX,75001 +192826,Lightning Charging Cable,1,14.95,2019-04-23 19:55:00,552 4th St, Los Angeles,CA,90001 +192827,34in Ultrawide Monitor,1,379.99,2019-04-18 21:02:00,649 South St, Atlanta,GA,30301 +192828,USB-C Charging Cable,1,11.95,2019-04-16 08:49:00,858 12th St, San Francisco,CA,94016 +192829,Google Phone,1,600.0,2019-04-12 17:16:00,173 13th St, Austin,TX,73301 +192830,Lightning Charging Cable,1,14.95,2019-04-30 10:57:00,413 River St, New York City,NY,10001 +192831,ThinkPad Laptop,1,999.99,2019-04-27 17:02:00,194 4th St, Atlanta,GA,30301 +192832,AAA Batteries (4-pack),1,2.99,2019-04-06 08:30:00,578 Forest St, Los Angeles,CA,90001 +192833,Google Phone,1,600.0,2019-04-27 22:08:00,592 Jefferson St, San Francisco,CA,94016 +192834,AA Batteries (4-pack),3,3.84,2019-04-04 21:33:00,608 Chestnut St, Portland,OR,97035 +192835,Bose SoundSport Headphones,1,99.99,2019-04-17 15:04:00,298 Hill St, San Francisco,CA,94016 +192836,AAA Batteries (4-pack),2,2.99,2019-04-17 19:03:00,36 Sunset St, Portland,ME,04101 +192837,AAA Batteries (4-pack),1,2.99,2019-04-26 21:41:00,349 10th St, Atlanta,GA,30301 +192838,Lightning Charging Cable,1,14.95,2019-04-20 02:13:00,266 Forest St, Atlanta,GA,30301 +192839,Google Phone,1,600.0,2019-04-28 09:10:00,589 Cherry St, Austin,TX,73301 +192840,Google Phone,1,600.0,2019-04-27 09:54:00,505 12th St, New York City,NY,10001 +192841,Lightning Charging Cable,1,14.95,2019-04-05 12:26:00,511 Park St, Los Angeles,CA,90001 +192842,20in Monitor,1,109.99,2019-04-03 11:35:00,240 12th St, New York City,NY,10001 +192843,AA Batteries (4-pack),1,3.84,2019-04-17 10:36:00,957 Park St, Dallas,TX,75001 +192844,ThinkPad Laptop,1,999.99,2019-04-21 17:33:00,927 5th St, Atlanta,GA,30301 +192845,27in FHD Monitor,1,149.99,2019-04-13 11:37:00,998 Church St, Seattle,WA,98101 +192846,AA Batteries (4-pack),2,3.84,2019-04-19 09:49:00,730 Spruce St, Austin,TX,73301 +192847,Wired Headphones,1,11.99,2019-04-22 19:19:00,909 Hickory St, Dallas,TX,75001 +192848,Apple Airpods Headphones,1,150.0,2019-04-28 17:53:00,748 4th St, Atlanta,GA,30301 +192849,AA Batteries (4-pack),2,3.84,2019-04-16 14:05:00,697 Spruce St, Atlanta,GA,30301 +192850,27in 4K Gaming Monitor,1,389.99,2019-04-12 13:24:00,8 Lincoln St, New York City,NY,10001 +192851,AAA Batteries (4-pack),1,2.99,2019-04-18 12:28:00,401 Main St, Boston,MA,02215 +192852,AA Batteries (4-pack),2,3.84,2019-04-09 14:59:00,394 Madison St, Dallas,TX,75001 +192853,USB-C Charging Cable,2,11.95,2019-04-01 23:30:00,594 Lincoln St, San Francisco,CA,94016 +192854,Lightning Charging Cable,1,14.95,2019-04-10 05:18:00,918 5th St, San Francisco,CA,94016 +192855,27in 4K Gaming Monitor,1,389.99,2019-04-18 12:39:00,461 Hill St, Los Angeles,CA,90001 +192856,Lightning Charging Cable,2,14.95,2019-04-11 18:09:00,172 Willow St, San Francisco,CA,94016 +192857,Bose SoundSport Headphones,1,99.99,2019-04-25 19:49:00,520 Center St, Portland,OR,97035 +192858,Bose SoundSport Headphones,1,99.99,2019-04-23 07:02:00,851 Willow St, Atlanta,GA,30301 +192859,27in FHD Monitor,1,149.99,2019-04-11 03:55:00,678 West St, New York City,NY,10001 +192860,USB-C Charging Cable,1,11.95,2019-04-26 20:46:00,558 7th St, New York City,NY,10001 +192861,Lightning Charging Cable,1,14.95,2019-04-25 14:38:00,793 10th St, Dallas,TX,75001 +192862,Lightning Charging Cable,1,14.95,2019-04-26 20:13:00,843 Johnson St, New York City,NY,10001 +192863,Wired Headphones,1,11.99,2019-04-23 00:10:00,803 12th St, Los Angeles,CA,90001 +192864,iPhone,1,700.0,2019-04-13 10:02:00,815 Maple St, San Francisco,CA,94016 +192865,34in Ultrawide Monitor,1,379.99,2019-04-01 19:11:00,605 Pine St, Los Angeles,CA,90001 +192866,Macbook Pro Laptop,1,1700.0,2019-04-28 07:54:00,758 Forest St, Dallas,TX,75001 +192867,Apple Airpods Headphones,1,150.0,2019-04-17 19:20:00,712 Jefferson St, San Francisco,CA,94016 +192868,Vareebadd Phone,1,400.0,2019-04-07 22:25:00,776 Spruce St, Boston,MA,02215 +192869,Bose SoundSport Headphones,1,99.99,2019-04-24 11:52:00,528 Maple St, Los Angeles,CA,90001 +192870,Bose SoundSport Headphones,1,99.99,2019-04-14 17:54:00,967 1st St, Atlanta,GA,30301 +192871,Lightning Charging Cable,1,14.95,2019-04-11 08:48:00,814 Meadow St, Los Angeles,CA,90001 +192872,27in FHD Monitor,1,149.99,2019-04-20 22:04:00,823 13th St, San Francisco,CA,94016 +192873,Wired Headphones,1,11.99,2019-04-18 19:01:00,893 5th St, New York City,NY,10001 +192874,Apple Airpods Headphones,1,150.0,2019-04-14 10:01:00,848 Church St, Austin,TX,73301 +192875,Lightning Charging Cable,1,14.95,2019-04-10 16:05:00,542 Lakeview St, Portland,OR,97035 +192876,34in Ultrawide Monitor,1,379.99,2019-04-06 11:57:00,234 8th St, New York City,NY,10001 +192877,USB-C Charging Cable,1,11.95,2019-04-16 08:42:00,118 Hill St, New York City,NY,10001 +192878,iPhone,1,700.0,2019-04-25 17:20:00,645 12th St, Seattle,WA,98101 +192878,Lightning Charging Cable,1,14.95,2019-04-25 17:20:00,645 12th St, Seattle,WA,98101 +192879,USB-C Charging Cable,1,11.95,2019-04-17 15:25:00,631 12th St, San Francisco,CA,94016 +192880,Bose SoundSport Headphones,1,99.99,2019-04-16 08:42:00,121 Adams St, Dallas,TX,75001 +192881,AAA Batteries (4-pack),1,2.99,2019-04-22 18:24:00,768 Maple St, San Francisco,CA,94016 +192882,AA Batteries (4-pack),1,3.84,2019-04-13 11:10:00,402 Spruce St, Seattle,WA,98101 +192883,USB-C Charging Cable,2,11.95,2019-04-05 15:24:00,709 Highland St, San Francisco,CA,94016 +192884,Apple Airpods Headphones,1,150.0,2019-04-15 15:32:00,606 South St, Portland,OR,97035 +192885,AA Batteries (4-pack),2,3.84,2019-04-21 15:36:00,153 Spruce St, Seattle,WA,98101 +192886,AAA Batteries (4-pack),1,2.99,2019-04-25 13:57:00,386 Wilson St, Austin,TX,73301 +192887,Wired Headphones,1,11.99,2019-04-12 11:50:00,594 4th St, Portland,OR,97035 +192888,AA Batteries (4-pack),1,3.84,2019-04-03 12:39:00,214 Center St, Austin,TX,73301 +192889,USB-C Charging Cable,1,11.95,2019-04-30 12:38:00,753 9th St, Los Angeles,CA,90001 +192890,USB-C Charging Cable,1,11.95,2019-04-27 17:13:00,806 Willow St, Boston,MA,02215 +192891,Bose SoundSport Headphones,1,99.99,2019-04-24 11:06:00,15 7th St, New York City,NY,10001 +192892,Lightning Charging Cable,1,14.95,2019-04-04 12:28:00,363 Forest St, Boston,MA,02215 +192893,Apple Airpods Headphones,1,150.0,2019-04-09 08:42:00,404 Center St, Austin,TX,73301 +192894,AA Batteries (4-pack),1,3.84,2019-04-06 09:54:00,89 Chestnut St, Boston,MA,02215 +192895,Lightning Charging Cable,1,14.95,2019-04-18 12:40:00,390 6th St, San Francisco,CA,94016 +192896,34in Ultrawide Monitor,1,379.99,2019-04-06 21:29:00,945 6th St, Seattle,WA,98101 +192897,Apple Airpods Headphones,1,150.0,2019-04-29 20:58:00,408 12th St, Boston,MA,02215 +192897,AAA Batteries (4-pack),1,2.99,2019-04-29 20:58:00,408 12th St, Boston,MA,02215 +192898,Wired Headphones,1,11.99,2019-04-11 09:14:00,264 Willow St, Seattle,WA,98101 +192899,Apple Airpods Headphones,1,150.0,2019-04-05 02:43:00,283 4th St, San Francisco,CA,94016 +192900,27in FHD Monitor,1,149.99,2019-04-15 06:22:00,3 North St, Seattle,WA,98101 +192901,USB-C Charging Cable,1,11.95,2019-04-10 17:10:00,282 Cherry St, Boston,MA,02215 +192902,20in Monitor,1,109.99,2019-04-11 07:56:00,467 Johnson St, Los Angeles,CA,90001 +192903,ThinkPad Laptop,1,999.99,2019-04-01 18:50:00,798 Sunset St, Atlanta,GA,30301 +192904,AAA Batteries (4-pack),3,2.99,2019-04-04 20:28:00,403 River St, Los Angeles,CA,90001 +192905,Lightning Charging Cable,1,14.95,2019-04-18 02:03:00,338 12th St, Portland,OR,97035 +192906,20in Monitor,1,109.99,2019-04-30 07:50:00,881 Adams St, San Francisco,CA,94016 +192907,Macbook Pro Laptop,1,1700.0,2019-04-17 18:26:00,811 Ridge St, Los Angeles,CA,90001 +192908,Lightning Charging Cable,1,14.95,2019-04-22 16:54:00,450 North St, Dallas,TX,75001 +192909,Apple Airpods Headphones,1,150.0,2019-04-13 09:25:00,489 Sunset St, Seattle,WA,98101 +192910,Bose SoundSport Headphones,1,99.99,2019-04-28 18:36:00,111 South St, San Francisco,CA,94016 +192911,Wired Headphones,1,11.99,2019-04-29 14:04:00,809 Willow St, Portland,OR,97035 +192912,Flatscreen TV,1,300.0,2019-04-07 09:58:00,552 Johnson St, Los Angeles,CA,90001 +192913,AA Batteries (4-pack),3,3.84,2019-04-19 14:23:00,573 Pine St, Los Angeles,CA,90001 +192914,AA Batteries (4-pack),2,3.84,2019-04-28 13:33:00,560 West St, New York City,NY,10001 +192915,Flatscreen TV,1,300.0,2019-04-06 12:24:00,884 Jackson St, Austin,TX,73301 +192916,27in 4K Gaming Monitor,1,389.99,2019-04-29 12:56:00,911 4th St, Dallas,TX,75001 +192917,AAA Batteries (4-pack),2,2.99,2019-04-29 23:06:00,98 Maple St, San Francisco,CA,94016 +192917,USB-C Charging Cable,1,11.95,2019-04-29 23:06:00,98 Maple St, San Francisco,CA,94016 +192918,27in 4K Gaming Monitor,1,389.99,2019-04-25 02:42:00,856 1st St, San Francisco,CA,94016 +192919,Apple Airpods Headphones,1,150.0,2019-04-13 13:54:00,157 Highland St, San Francisco,CA,94016 +192920,AAA Batteries (4-pack),1,2.99,2019-04-30 22:47:00,899 River St, Portland,OR,97035 +192921,USB-C Charging Cable,1,11.95,2019-04-10 11:41:00,979 River St, Seattle,WA,98101 +192922,Bose SoundSport Headphones,1,99.99,2019-04-14 05:38:00,266 8th St, Los Angeles,CA,90001 +192923,ThinkPad Laptop,1,999.99,2019-04-11 15:56:00,893 Johnson St, Seattle,WA,98101 +192924,AA Batteries (4-pack),1,3.84,2019-04-12 05:26:00,215 Sunset St, San Francisco,CA,94016 +192925,AA Batteries (4-pack),2,3.84,2019-04-09 18:14:00,680 Johnson St, San Francisco,CA,94016 +192926,Vareebadd Phone,1,400.0,2019-04-18 19:03:00,950 Adams St, San Francisco,CA,94016 +192927,USB-C Charging Cable,1,11.95,2019-04-29 10:56:00,448 Forest St, San Francisco,CA,94016 +192928,20in Monitor,1,109.99,2019-04-15 19:49:00,375 Madison St, Dallas,TX,75001 +192929,Lightning Charging Cable,1,14.95,2019-04-08 17:25:00,126 Lincoln St, Seattle,WA,98101 +192930,Lightning Charging Cable,1,14.95,2019-04-23 14:25:00,557 South St, Boston,MA,02215 +192931,LG Dryer,1,600.0,2019-04-25 13:21:00,839 Willow St, San Francisco,CA,94016 +192932,AAA Batteries (4-pack),5,2.99,2019-04-08 16:51:00,553 Dogwood St, Seattle,WA,98101 +192933,Wired Headphones,1,11.99,2019-04-07 09:45:00,789 5th St, Boston,MA,02215 +192934,27in 4K Gaming Monitor,1,389.99,2019-04-18 17:09:00,976 1st St, San Francisco,CA,94016 +192935,AAA Batteries (4-pack),1,2.99,2019-04-28 13:02:00,214 9th St, San Francisco,CA,94016 +192936,27in FHD Monitor,1,149.99,2019-04-16 15:23:00,43 South St, New York City,NY,10001 +192937,Apple Airpods Headphones,1,150.0,2019-04-16 09:23:00,431 Jefferson St, Los Angeles,CA,90001 +192938,Apple Airpods Headphones,1,150.0,2019-04-19 14:57:00,584 Main St, Seattle,WA,98101 +192939,34in Ultrawide Monitor,1,379.99,2019-04-29 21:07:00,519 Adams St, Seattle,WA,98101 +192940,Lightning Charging Cable,1,14.95,2019-04-02 18:18:00,541 Sunset St, San Francisco,CA,94016 +192941,Wired Headphones,1,11.99,2019-04-19 13:12:00,158 Pine St, San Francisco,CA,94016 +192942,20in Monitor,1,109.99,2019-04-28 13:26:00,383 Madison St, Los Angeles,CA,90001 +192943,AAA Batteries (4-pack),1,2.99,2019-04-29 13:48:00,641 Lake St, San Francisco,CA,94016 +192944,27in 4K Gaming Monitor,1,389.99,2019-04-25 22:08:00,748 South St, Seattle,WA,98101 +192945,AA Batteries (4-pack),2,3.84,2019-04-12 14:18:00,98 Main St, Portland,OR,97035 +192946,Wired Headphones,1,11.99,2019-04-03 13:53:00,774 Forest St, San Francisco,CA,94016 +192947,Wired Headphones,1,11.99,2019-04-08 07:34:00,351 Cherry St, Seattle,WA,98101 +192948,AA Batteries (4-pack),2,3.84,2019-04-26 12:12:00,591 Walnut St, Boston,MA,02215 +192949,Bose SoundSport Headphones,1,99.99,2019-04-30 11:55:00,860 South St, Los Angeles,CA,90001 +192950,Lightning Charging Cable,1,14.95,2019-04-08 17:07:00,360 Hill St, Portland,OR,97035 +192951,Wired Headphones,2,11.99,2019-04-30 19:48:00,737 Hickory St, Boston,MA,02215 +192952,Apple Airpods Headphones,1,150.0,2019-04-08 16:02:00,235 Adams St, Boston,MA,02215 +192953,Bose SoundSport Headphones,1,99.99,2019-04-04 19:42:00,141 Chestnut St, Dallas,TX,75001 +192954,Lightning Charging Cable,1,14.95,2019-04-29 15:09:00,12 9th St, Los Angeles,CA,90001 +192955,Lightning Charging Cable,1,14.95,2019-04-06 20:13:00,253 10th St, Dallas,TX,75001 +192956,Google Phone,1,600.0,2019-04-27 15:18:00,194 Walnut St, Austin,TX,73301 +192956,Wired Headphones,2,11.99,2019-04-27 15:18:00,194 Walnut St, Austin,TX,73301 +192957,AA Batteries (4-pack),1,3.84,2019-04-01 12:45:00,220 1st St, San Francisco,CA,94016 +192958,Apple Airpods Headphones,1,150.0,2019-04-16 00:08:00,628 Meadow St, Atlanta,GA,30301 +192959,Lightning Charging Cable,1,14.95,2019-04-21 04:25:00,996 Jefferson St, San Francisco,CA,94016 +192960,USB-C Charging Cable,1,11.95,2019-04-03 17:02:00,271 Church St, Boston,MA,02215 +192961,34in Ultrawide Monitor,1,379.99,2019-04-25 18:57:00,807 South St, San Francisco,CA,94016 +192962,AA Batteries (4-pack),1,3.84,2019-04-16 20:51:00,770 Madison St, Boston,MA,02215 +192963,Wired Headphones,1,11.99,2019-04-13 08:46:00,144 13th St, Austin,TX,73301 +192964,Wired Headphones,1,11.99,2019-04-11 22:08:00,688 Lincoln St, San Francisco,CA,94016 +192965,Google Phone,1,600.0,2019-04-06 13:54:00,91 Sunset St, Boston,MA,02215 +192966,Lightning Charging Cable,2,14.95,2019-04-18 15:59:00,8 Church St, New York City,NY,10001 +192967,34in Ultrawide Monitor,1,379.99,2019-04-27 20:12:00,322 Cherry St, Los Angeles,CA,90001 +192968,Wired Headphones,1,11.99,2019-04-17 19:34:00,94 Jackson St, New York City,NY,10001 +192969,iPhone,1,700.0,2019-04-07 07:46:00,414 Lakeview St, Portland,OR,97035 +192970,AAA Batteries (4-pack),2,2.99,2019-04-24 13:42:00,375 7th St, Atlanta,GA,30301 +192971,Vareebadd Phone,1,400.0,2019-04-23 12:45:00,532 Sunset St, Los Angeles,CA,90001 +192972,AA Batteries (4-pack),1,3.84,2019-04-27 20:24:00,251 Forest St, New York City,NY,10001 +192973,Apple Airpods Headphones,1,150.0,2019-04-05 12:43:00,800 2nd St, New York City,NY,10001 +192974,Bose SoundSport Headphones,1,99.99,2019-04-20 16:59:00,453 Chestnut St, Austin,TX,73301 +192975,Google Phone,1,600.0,2019-04-06 18:58:00,965 Hickory St, Boston,MA,02215 +192976,iPhone,1,700.0,2019-04-30 07:51:00,246 Park St, Portland,OR,97035 +192977,Apple Airpods Headphones,1,150.0,2019-04-27 11:58:00,406 Hill St, Los Angeles,CA,90001 +192978,27in 4K Gaming Monitor,1,389.99,2019-04-04 15:04:00,548 Forest St, New York City,NY,10001 +192979,Apple Airpods Headphones,1,150.0,2019-04-01 19:42:00,325 River St, San Francisco,CA,94016 +192980,AA Batteries (4-pack),1,3.84,2019-04-06 14:18:00,902 Park St, Boston,MA,02215 +192981,Wired Headphones,1,11.99,2019-04-17 12:01:00,698 Meadow St, Los Angeles,CA,90001 +192982,20in Monitor,1,109.99,2019-04-03 06:01:00,288 7th St, Atlanta,GA,30301 +192983,Wired Headphones,1,11.99,2019-04-26 21:14:00,796 Sunset St, Los Angeles,CA,90001 +192984,Bose SoundSport Headphones,1,99.99,2019-04-26 11:08:00,958 South St, Atlanta,GA,30301 +192985,Google Phone,1,600.0,2019-04-20 18:46:00,384 North St, Portland,ME,04101 +192986,27in FHD Monitor,1,149.99,2019-04-10 06:40:00,272 Adams St, Los Angeles,CA,90001 +192987,Apple Airpods Headphones,1,150.0,2019-04-27 10:41:00,537 Wilson St, Seattle,WA,98101 +192988,AAA Batteries (4-pack),1,2.99,2019-04-14 20:28:00,946 Chestnut St, New York City,NY,10001 +192989,Vareebadd Phone,1,400.0,2019-04-22 08:58:00,268 River St, Los Angeles,CA,90001 +192990,27in FHD Monitor,1,149.99,2019-04-11 23:05:00,14 Cedar St, Dallas,TX,75001 +192991,AAA Batteries (4-pack),1,2.99,2019-04-30 19:42:00,82 Center St, Los Angeles,CA,90001 +192992,AAA Batteries (4-pack),1,2.99,2019-04-01 21:06:00,992 Meadow St, Boston,MA,02215 +192993,Lightning Charging Cable,1,14.95,2019-04-05 16:27:00,371 Jefferson St, Boston,MA,02215 +192994,20in Monitor,1,109.99,2019-04-21 17:07:00,964 Meadow St, Atlanta,GA,30301 +192995,Lightning Charging Cable,1,14.95,2019-04-11 13:37:00,412 Cedar St, Los Angeles,CA,90001 +192996,Macbook Pro Laptop,1,1700.0,2019-04-16 06:56:00,687 7th St, Boston,MA,02215 +192997,Google Phone,1,600.0,2019-04-18 22:29:00,370 Dogwood St, Dallas,TX,75001 +192998,iPhone,1,700.0,2019-04-25 19:04:00,538 South St, Atlanta,GA,30301 +192998,Wired Headphones,1,11.99,2019-04-25 19:04:00,538 South St, Atlanta,GA,30301 +192999,Lightning Charging Cable,1,14.95,2019-04-07 12:11:00,860 Lake St, San Francisco,CA,94016 +193000,Apple Airpods Headphones,1,150.0,2019-04-13 21:21:00,300 South St, New York City,NY,10001 +193001,AAA Batteries (4-pack),1,2.99,2019-04-06 16:02:00,884 Cedar St, Austin,TX,73301 +193002,Macbook Pro Laptop,1,1700.0,2019-04-29 20:26:00,625 Madison St, Austin,TX,73301 +193003,USB-C Charging Cable,1,11.95,2019-04-17 18:50:00,449 Lakeview St, Los Angeles,CA,90001 +193004,Macbook Pro Laptop,1,1700.0,2019-04-19 22:58:00,797 Dogwood St, San Francisco,CA,94016 +193005,Lightning Charging Cable,1,14.95,2019-04-09 17:31:00,119 Church St, Los Angeles,CA,90001 +193006,20in Monitor,1,109.99,2019-04-15 01:41:00,24 Madison St, New York City,NY,10001 +193007,Bose SoundSport Headphones,1,99.99,2019-04-03 13:33:00,108 North St, Seattle,WA,98101 +193008,AAA Batteries (4-pack),1,2.99,2019-04-03 18:26:00,357 Forest St, Boston,MA,02215 +193009,Google Phone,1,600.0,2019-04-22 16:54:00,571 6th St, Seattle,WA,98101 +193010,AAA Batteries (4-pack),1,2.99,2019-04-20 11:22:00,113 Lincoln St, Atlanta,GA,30301 +193011,AAA Batteries (4-pack),2,2.99,2019-04-28 14:39:00,466 Cedar St, Los Angeles,CA,90001 +193012,AA Batteries (4-pack),3,3.84,2019-04-09 16:32:00,177 River St, Dallas,TX,75001 +193013,USB-C Charging Cable,1,11.95,2019-04-15 10:23:00,47 Main St, San Francisco,CA,94016 +193014,Apple Airpods Headphones,1,150.0,2019-04-26 15:42:00,831 Cherry St, Atlanta,GA,30301 +193015,Lightning Charging Cable,1,14.95,2019-04-01 12:13:00,520 Chestnut St, Austin,TX,73301 +193016,Bose SoundSport Headphones,1,99.99,2019-04-12 21:47:00,22 Park St, Los Angeles,CA,90001 +193017,USB-C Charging Cable,1,11.95,2019-04-05 15:59:00,361 Pine St, Dallas,TX,75001 +193018,20in Monitor,1,109.99,2019-04-10 19:58:00,378 Pine St, Seattle,WA,98101 +193019,iPhone,1,700.0,2019-04-09 12:15:00,438 8th St, Los Angeles,CA,90001 +193020,Lightning Charging Cable,1,14.95,2019-04-20 16:23:00,333 8th St, New York City,NY,10001 +193021,Apple Airpods Headphones,1,150.0,2019-04-07 17:38:00,844 2nd St, Los Angeles,CA,90001 +193022,AAA Batteries (4-pack),1,2.99,2019-04-28 10:22:00,717 Lake St, Los Angeles,CA,90001 +193023,27in 4K Gaming Monitor,1,389.99,2019-04-08 01:28:00,799 10th St, Los Angeles,CA,90001 +193024,AAA Batteries (4-pack),1,2.99,2019-04-28 13:35:00,264 Park St, Atlanta,GA,30301 +193025,Bose SoundSport Headphones,1,99.99,2019-04-16 14:24:00,769 West St, Atlanta,GA,30301 +193026,20in Monitor,1,109.99,2019-04-20 18:18:00,93 Church St, Austin,TX,73301 +193027,Wired Headphones,3,11.99,2019-04-10 13:48:00,192 Hill St, San Francisco,CA,94016 +193028,AA Batteries (4-pack),3,3.84,2019-04-28 23:54:00,996 West St, Seattle,WA,98101 +193029,Lightning Charging Cable,1,14.95,2019-04-09 00:54:00,202 1st St, Atlanta,GA,30301 +193030,20in Monitor,1,109.99,2019-04-06 15:26:00,474 Adams St, Dallas,TX,75001 +193031,Lightning Charging Cable,1,14.95,2019-04-18 13:39:00,306 1st St, Boston,MA,02215 +193032,27in FHD Monitor,1,149.99,2019-04-30 15:41:00,187 South St, Los Angeles,CA,90001 +193033,USB-C Charging Cable,1,11.95,2019-04-13 14:39:00,587 West St, Los Angeles,CA,90001 +193034,AAA Batteries (4-pack),2,2.99,2019-04-18 19:40:00,938 Lakeview St, New York City,NY,10001 +193035,Apple Airpods Headphones,1,150.0,2019-04-23 20:07:00,181 9th St, Boston,MA,02215 +193036,USB-C Charging Cable,1,11.95,2019-04-16 23:37:00,301 Jefferson St, Los Angeles,CA,90001 +193037,Lightning Charging Cable,1,14.95,2019-04-21 11:06:00,345 Jackson St, Seattle,WA,98101 +193038,Apple Airpods Headphones,1,150.0,2019-04-03 23:07:00,159 6th St, Boston,MA,02215 +193039,Wired Headphones,1,11.99,2019-04-29 15:58:00,866 Lake St, Dallas,TX,75001 +193040,iPhone,1,700.0,2019-04-14 09:14:00,855 13th St, Austin,TX,73301 +193041,Flatscreen TV,1,300.0,2019-04-26 14:48:00,393 14th St, Los Angeles,CA,90001 +193042,iPhone,1,700.0,2019-04-05 20:40:00,353 11th St, San Francisco,CA,94016 +193043,Bose SoundSport Headphones,1,99.99,2019-04-18 05:08:00,599 Highland St, Seattle,WA,98101 +193044,27in FHD Monitor,1,149.99,2019-04-19 04:58:00,186 Willow St, Los Angeles,CA,90001 +193045,USB-C Charging Cable,1,11.95,2019-04-04 06:01:00,765 Lakeview St, Los Angeles,CA,90001 +193046,AAA Batteries (4-pack),1,2.99,2019-04-26 14:11:00,958 Hill St, Austin,TX,73301 +193047,USB-C Charging Cable,1,11.95,2019-04-25 13:49:00,388 Highland St, Boston,MA,02215 +193048,Lightning Charging Cable,1,14.95,2019-04-16 11:31:00,111 Jackson St, San Francisco,CA,94016 +193049,Bose SoundSport Headphones,1,99.99,2019-04-22 19:31:00,877 Cherry St, San Francisco,CA,94016 +193050,Google Phone,1,600.0,2019-04-19 18:45:00,329 Sunset St, Dallas,TX,75001 +193051,USB-C Charging Cable,2,11.95,2019-04-21 13:50:00,410 West St, Los Angeles,CA,90001 +193051,Macbook Pro Laptop,1,1700.0,2019-04-21 13:50:00,410 West St, Los Angeles,CA,90001 +193052,34in Ultrawide Monitor,1,379.99,2019-04-24 19:49:00,241 Park St, Boston,MA,02215 +193053,34in Ultrawide Monitor,1,379.99,2019-04-20 19:10:00,78 Adams St, Seattle,WA,98101 +193054,Lightning Charging Cable,1,14.95,2019-04-14 19:35:00,677 Center St, Dallas,TX,75001 +193055,AAA Batteries (4-pack),2,2.99,2019-04-12 10:55:00,104 12th St, Seattle,WA,98101 +193056,Apple Airpods Headphones,1,150.0,2019-04-10 12:14:00,166 Jackson St, San Francisco,CA,94016 +193057,iPhone,1,700.0,2019-04-29 23:09:00,571 Center St, Los Angeles,CA,90001 +193058,Wired Headphones,1,11.99,2019-04-18 23:05:00,573 Chestnut St, San Francisco,CA,94016 +193059,Apple Airpods Headphones,1,150.0,2019-04-09 14:03:00,776 Maple St, Boston,MA,02215 +193060,AAA Batteries (4-pack),1,2.99,2019-04-20 10:49:00,235 12th St, Portland,OR,97035 +193061,27in FHD Monitor,1,149.99,2019-04-18 19:21:00,206 13th St, San Francisco,CA,94016 +193062,Flatscreen TV,1,300.0,2019-04-06 09:28:00,677 7th St, San Francisco,CA,94016 +193063,AA Batteries (4-pack),1,3.84,2019-04-27 20:28:00,541 Cedar St, Dallas,TX,75001 +193064,20in Monitor,1,109.99,2019-04-01 17:46:00,735 6th St, Portland,OR,97035 +193065,Apple Airpods Headphones,1,150.0,2019-04-30 11:19:00,99 13th St, New York City,NY,10001 +193066,27in 4K Gaming Monitor,1,389.99,2019-04-04 12:00:00,483 Hill St, San Francisco,CA,94016 +193067,Wired Headphones,1,11.99,2019-04-24 19:32:00,643 Madison St, Seattle,WA,98101 +193068,AA Batteries (4-pack),2,3.84,2019-04-12 08:45:00,58 Cedar St, New York City,NY,10001 +193069,Lightning Charging Cable,1,14.95,2019-04-30 11:53:00,300 Cherry St, Boston,MA,02215 +193070,AAA Batteries (4-pack),1,2.99,2019-04-04 14:31:00,916 Hickory St, San Francisco,CA,94016 +193071,Wired Headphones,1,11.99,2019-04-04 13:16:00,159 South St, San Francisco,CA,94016 +193072,AA Batteries (4-pack),1,3.84,2019-04-20 14:35:00,265 Highland St, Portland,OR,97035 +193073,iPhone,1,700.0,2019-04-10 05:02:00,576 1st St, Boston,MA,02215 +193073,Lightning Charging Cable,1,14.95,2019-04-10 05:02:00,576 1st St, Boston,MA,02215 +193074,USB-C Charging Cable,1,11.95,2019-04-17 06:01:00,655 Meadow St, Austin,TX,73301 +193075,Macbook Pro Laptop,1,1700.0,2019-04-06 09:33:00,183 Jefferson St, San Francisco,CA,94016 +193076,Bose SoundSport Headphones,1,99.99,2019-04-22 12:38:00,767 Madison St, New York City,NY,10001 +193077,Apple Airpods Headphones,1,150.0,2019-04-26 19:52:00,188 Maple St, Boston,MA,02215 +193078,Wired Headphones,1,11.99,2019-04-26 08:25:00,873 Lincoln St, Dallas,TX,75001 +193079,AAA Batteries (4-pack),4,2.99,2019-04-11 06:51:00,653 Cedar St, San Francisco,CA,94016 +193080,USB-C Charging Cable,1,11.95,2019-04-24 12:27:00,860 West St, Portland,OR,97035 +193081,AA Batteries (4-pack),1,3.84,2019-04-14 07:17:00,264 Highland St, Los Angeles,CA,90001 +193082,Lightning Charging Cable,1,14.95,2019-04-21 20:56:00,837 Elm St, Atlanta,GA,30301 +193083,Bose SoundSport Headphones,1,99.99,2019-04-11 20:09:00,406 Lincoln St, New York City,NY,10001 +193084,USB-C Charging Cable,1,11.95,2019-04-18 06:12:00,430 Highland St, San Francisco,CA,94016 +193085,AA Batteries (4-pack),1,3.84,2019-04-06 19:37:00,777 Johnson St, Seattle,WA,98101 +193086,Lightning Charging Cable,1,14.95,2019-04-12 14:21:00,425 Church St, San Francisco,CA,94016 +193087,Lightning Charging Cable,1,14.95,2019-04-10 13:31:00,966 Meadow St, Los Angeles,CA,90001 +193088,Flatscreen TV,1,300.0,2019-04-25 19:43:00,964 Washington St, Dallas,TX,75001 +193089,USB-C Charging Cable,1,11.95,2019-04-06 13:52:00,364 10th St, Los Angeles,CA,90001 +193090,Wired Headphones,1,11.99,2019-04-17 11:32:00,352 Hill St, New York City,NY,10001 +193091,USB-C Charging Cable,1,11.95,2019-04-07 14:10:00,299 Center St, Portland,OR,97035 +193092,iPhone,1,700.0,2019-04-15 20:33:00,450 Lakeview St, San Francisco,CA,94016 +193093,20in Monitor,1,109.99,2019-04-11 12:39:00,698 Lakeview St, New York City,NY,10001 +193094,Flatscreen TV,1,300.0,2019-04-04 18:06:00,187 North St, New York City,NY,10001 +193095,USB-C Charging Cable,1,11.95,2019-04-26 14:55:00,275 Washington St, Atlanta,GA,30301 +193096,Apple Airpods Headphones,1,150.0,2019-04-11 19:11:00,629 Jefferson St, Boston,MA,02215 +193097,Google Phone,1,600.0,2019-04-20 18:48:00,637 Hill St, San Francisco,CA,94016 +193098,AAA Batteries (4-pack),1,2.99,2019-04-11 09:13:00,500 Dogwood St, San Francisco,CA,94016 +193099,Wired Headphones,1,11.99,2019-04-27 23:57:00,647 Sunset St, San Francisco,CA,94016 +193100,Macbook Pro Laptop,1,1700.0,2019-04-02 21:35:00,341 Park St, Los Angeles,CA,90001 +193101,Bose SoundSport Headphones,1,99.99,2019-04-11 23:22:00,305 14th St, New York City,NY,10001 +193102,Lightning Charging Cable,1,14.95,2019-04-03 08:50:00,44 Madison St, Boston,MA,02215 +193103,27in FHD Monitor,1,149.99,2019-04-10 20:30:00,212 Highland St, Boston,MA,02215 +193104,Lightning Charging Cable,1,14.95,2019-04-12 21:36:00,665 12th St, San Francisco,CA,94016 +193105,27in FHD Monitor,1,149.99,2019-04-15 22:18:00,197 Madison St, San Francisco,CA,94016 +193106,Bose SoundSport Headphones,1,99.99,2019-04-23 23:29:00,220 2nd St, Atlanta,GA,30301 +193107,Wired Headphones,1,11.99,2019-04-28 19:13:00,943 Walnut St, New York City,NY,10001 +193108,AAA Batteries (4-pack),3,2.99,2019-04-13 09:21:00,611 2nd St, Los Angeles,CA,90001 +193109,Google Phone,1,600.0,2019-04-15 09:49:00,252 Dogwood St, Atlanta,GA,30301 +193110,Flatscreen TV,1,300.0,2019-04-18 09:35:00,66 South St, San Francisco,CA,94016 +193111,USB-C Charging Cable,1,11.95,2019-04-09 14:46:00,486 12th St, Portland,OR,97035 +193112,Flatscreen TV,1,300.0,2019-04-07 06:59:00,255 Johnson St, New York City,NY,10001 +193113,Lightning Charging Cable,1,14.95,2019-04-04 20:27:00,605 Church St, Seattle,WA,98101 +193114,Google Phone,1,600.0,2019-04-10 14:25:00,282 Jackson St, San Francisco,CA,94016 +193115,AA Batteries (4-pack),1,3.84,2019-04-10 10:21:00,507 Cherry St, San Francisco,CA,94016 +193116,27in FHD Monitor,1,149.99,2019-04-19 17:53:00,817 Main St, Los Angeles,CA,90001 +193117,USB-C Charging Cable,1,11.95,2019-04-21 16:39:00,43 Sunset St, Dallas,TX,75001 +193118,Bose SoundSport Headphones,1,99.99,2019-04-06 11:24:00,951 Hickory St, New York City,NY,10001 +193119,Lightning Charging Cable,1,14.95,2019-04-23 21:43:00,321 4th St, San Francisco,CA,94016 +193120,Bose SoundSport Headphones,1,99.99,2019-04-22 06:58:00,254 Forest St, Seattle,WA,98101 +193121,Google Phone,1,600.0,2019-04-04 09:48:00,718 Lincoln St, San Francisco,CA,94016 +193122,USB-C Charging Cable,1,11.95,2019-04-18 17:20:00,760 South St, San Francisco,CA,94016 +193123,Flatscreen TV,1,300.0,2019-04-10 20:12:00,803 Lincoln St, San Francisco,CA,94016 +193124,27in 4K Gaming Monitor,1,389.99,2019-04-02 18:50:00,1 9th St, San Francisco,CA,94016 +193125,Wired Headphones,1,11.99,2019-04-18 14:07:00,139 Cedar St, Boston,MA,02215 +193126,27in FHD Monitor,1,149.99,2019-04-24 15:38:00,642 11th St, Dallas,TX,75001 +193127,AA Batteries (4-pack),1,3.84,2019-04-28 04:27:00,806 Adams St, New York City,NY,10001 +193128,USB-C Charging Cable,1,11.95,2019-04-30 12:02:00,294 12th St, San Francisco,CA,94016 +193128,27in FHD Monitor,1,149.99,2019-04-30 12:02:00,294 12th St, San Francisco,CA,94016 +193129,Lightning Charging Cable,1,14.95,2019-04-07 11:28:00,490 Wilson St, San Francisco,CA,94016 +193130,20in Monitor,1,109.99,2019-04-25 10:38:00,886 Sunset St, Dallas,TX,75001 +193131,iPhone,1,700.0,2019-04-16 15:50:00,203 Highland St, Portland,OR,97035 +193132,Vareebadd Phone,1,400.0,2019-04-12 14:12:00,743 Wilson St, Dallas,TX,75001 +193132,USB-C Charging Cable,1,11.95,2019-04-12 14:12:00,743 Wilson St, Dallas,TX,75001 +193133,Macbook Pro Laptop,1,1700.0,2019-04-28 18:16:00,2 Church St, Portland,OR,97035 +193134,Bose SoundSport Headphones,1,99.99,2019-04-13 19:22:00,592 Adams St, New York City,NY,10001 +193135,Bose SoundSport Headphones,1,99.99,2019-04-27 19:01:00,348 12th St, Boston,MA,02215 +193136,27in 4K Gaming Monitor,1,389.99,2019-04-17 12:59:00,523 Forest St, San Francisco,CA,94016 +193137,27in 4K Gaming Monitor,1,389.99,2019-04-09 00:30:00,51 Hickory St, San Francisco,CA,94016 +193138,USB-C Charging Cable,1,11.95,2019-04-09 19:23:00,448 Spruce St, Boston,MA,02215 +193139,AAA Batteries (4-pack),1,2.99,2019-04-20 19:28:00,761 Cedar St, Atlanta,GA,30301 +193140,Wired Headphones,1,11.99,2019-04-22 13:44:00,587 2nd St, San Francisco,CA,94016 +193141,AAA Batteries (4-pack),2,2.99,2019-04-07 06:50:00,277 7th St, Seattle,WA,98101 +193142,Wired Headphones,1,11.99,2019-04-12 14:47:00,60 Church St, Boston,MA,02215 +193143,Wired Headphones,1,11.99,2019-04-19 12:13:00,571 Willow St, New York City,NY,10001 +193144,USB-C Charging Cable,1,11.95,2019-04-09 14:45:00,931 Meadow St, Los Angeles,CA,90001 +193145,34in Ultrawide Monitor,1,379.99,2019-04-19 17:45:00,395 Jackson St, San Francisco,CA,94016 +193146,AA Batteries (4-pack),2,3.84,2019-04-16 16:51:00,79 Highland St, Portland,OR,97035 +193147,34in Ultrawide Monitor,1,379.99,2019-04-05 23:14:00,103 13th St, San Francisco,CA,94016 +193148,Bose SoundSport Headphones,1,99.99,2019-04-04 22:45:00,658 10th St, Portland,OR,97035 +193149,iPhone,1,700.0,2019-04-30 08:41:00,958 Adams St, Dallas,TX,75001 +193149,Wired Headphones,1,11.99,2019-04-30 08:41:00,958 Adams St, Dallas,TX,75001 +193150,20in Monitor,1,109.99,2019-04-21 12:37:00,89 Main St, San Francisco,CA,94016 +193151,AA Batteries (4-pack),1,3.84,2019-04-02 06:14:00,690 Lake St, Boston,MA,02215 +193152,Apple Airpods Headphones,1,150.0,2019-04-12 00:54:00,829 Lakeview St, Los Angeles,CA,90001 +193153,27in FHD Monitor,1,149.99,2019-04-06 14:03:00,389 Lakeview St, Boston,MA,02215 +193154,20in Monitor,1,109.99,2019-04-04 22:45:00,647 1st St, Los Angeles,CA,90001 +193155,Apple Airpods Headphones,1,150.0,2019-04-19 20:06:00,286 West St, San Francisco,CA,94016 +193156,USB-C Charging Cable,1,11.95,2019-04-29 12:09:00,197 13th St, New York City,NY,10001 +193157,ThinkPad Laptop,1,999.99,2019-04-24 11:24:00,87 Adams St, Seattle,WA,98101 +193158,Wired Headphones,1,11.99,2019-04-22 23:24:00,722 Johnson St, Seattle,WA,98101 +193159,Wired Headphones,1,11.99,2019-04-21 07:47:00,393 8th St, Atlanta,GA,30301 +193160,27in FHD Monitor,1,149.99,2019-04-03 16:17:00,92 14th St, Los Angeles,CA,90001 +193161,AAA Batteries (4-pack),3,2.99,2019-04-09 11:37:00,663 Washington St, San Francisco,CA,94016 +193162,Bose SoundSport Headphones,1,99.99,2019-04-23 18:28:00,978 Maple St, Los Angeles,CA,90001 +193163,iPhone,1,700.0,2019-04-26 11:53:00,515 Willow St, Seattle,WA,98101 +193163,Wired Headphones,1,11.99,2019-04-26 11:53:00,515 Willow St, Seattle,WA,98101 +193164,Lightning Charging Cable,1,14.95,2019-04-19 16:47:00,398 Highland St, Boston,MA,02215 +193165,Apple Airpods Headphones,1,150.0,2019-04-09 11:42:00,543 6th St, Boston,MA,02215 +193166,USB-C Charging Cable,1,11.95,2019-04-05 11:22:00,945 Pine St, New York City,NY,10001 +193167,34in Ultrawide Monitor,1,379.99,2019-04-27 18:27:00,225 North St, Los Angeles,CA,90001 +193168,AA Batteries (4-pack),1,3.84,2019-04-21 22:35:00,151 10th St, San Francisco,CA,94016 +193169,Apple Airpods Headphones,1,150.0,2019-04-11 15:21:00,681 Elm St, San Francisco,CA,94016 +193170,Bose SoundSport Headphones,1,99.99,2019-04-16 22:40:00,577 5th St, Atlanta,GA,30301 +193171,Flatscreen TV,1,300.0,2019-04-06 18:50:00,354 5th St, Los Angeles,CA,90001 +193172,AAA Batteries (4-pack),2,2.99,2019-04-17 11:15:00,319 9th St, New York City,NY,10001 +193173,AAA Batteries (4-pack),1,2.99,2019-04-05 21:04:00,107 Meadow St, Austin,TX,73301 +193174,USB-C Charging Cable,1,11.95,2019-04-02 17:40:00,273 North St, Austin,TX,73301 +193175,AA Batteries (4-pack),1,3.84,2019-04-15 06:56:00,54 Church St, Los Angeles,CA,90001 +193176,AAA Batteries (4-pack),1,2.99,2019-04-26 19:07:00,28 Main St, Atlanta,GA,30301 +193177,AAA Batteries (4-pack),1,2.99,2019-04-02 21:22:00,606 Church St, San Francisco,CA,94016 +193178,ThinkPad Laptop,1,999.99,2019-04-08 09:53:00,631 4th St, Boston,MA,02215 +193179,AA Batteries (4-pack),1,3.84,2019-04-14 11:29:00,947 Wilson St, San Francisco,CA,94016 +193180,34in Ultrawide Monitor,1,379.99,2019-04-24 17:50:00,179 Hickory St, Seattle,WA,98101 +193181,USB-C Charging Cable,2,11.95,2019-04-03 07:27:00,632 Lincoln St, Dallas,TX,75001 +193182,Apple Airpods Headphones,1,150.0,2019-04-16 11:24:00,748 Main St, San Francisco,CA,94016 +193183,Bose SoundSport Headphones,1,99.99,2019-04-10 00:58:00,655 West St, San Francisco,CA,94016 +193184,Lightning Charging Cable,1,14.95,2019-04-08 13:26:00,19 Dogwood St, New York City,NY,10001 +193184,AAA Batteries (4-pack),2,2.99,2019-04-08 13:26:00,19 Dogwood St, New York City,NY,10001 +193185,AAA Batteries (4-pack),1,2.99,2019-04-17 20:53:00,611 Cedar St, New York City,NY,10001 +193186,Lightning Charging Cable,1,14.95,2019-04-29 15:18:00,68 9th St, San Francisco,CA,94016 +193187,Macbook Pro Laptop,1,1700.0,2019-04-03 18:36:00,816 11th St, Atlanta,GA,30301 +193188,Bose SoundSport Headphones,1,99.99,2019-04-28 20:47:00,214 Cherry St, Dallas,TX,75001 +193189,USB-C Charging Cable,1,11.95,2019-04-26 09:10:00,606 South St, Atlanta,GA,30301 +193190,USB-C Charging Cable,1,11.95,2019-04-18 08:55:00,549 Cedar St, San Francisco,CA,94016 +193191,Apple Airpods Headphones,1,150.0,2019-04-24 08:48:00,165 1st St, Los Angeles,CA,90001 +193192,Wired Headphones,1,11.99,2019-04-27 12:34:00,858 Hickory St, Portland,OR,97035 +193193,Bose SoundSport Headphones,1,99.99,2019-04-17 22:42:00,900 Dogwood St, Seattle,WA,98101 +193194,Lightning Charging Cable,1,14.95,2019-04-09 09:25:00,974 Highland St, Los Angeles,CA,90001 +193195,Google Phone,1,600.0,2019-04-04 01:48:00,915 Hill St, Los Angeles,CA,90001 +193195,USB-C Charging Cable,1,11.95,2019-04-04 01:48:00,915 Hill St, Los Angeles,CA,90001 +193196,27in FHD Monitor,1,149.99,2019-04-10 21:20:00,400 Lincoln St, Los Angeles,CA,90001 +193197,Wired Headphones,1,11.99,2019-04-21 13:44:00,776 8th St, San Francisco,CA,94016 +193198,AAA Batteries (4-pack),1,2.99,2019-04-10 21:27:00,340 12th St, Boston,MA,02215 +193199,Lightning Charging Cable,1,14.95,2019-04-04 14:48:00,724 Dogwood St, Portland,OR,97035 +193200,Lightning Charging Cable,1,14.95,2019-04-27 22:32:00,699 Meadow St, New York City,NY,10001 +193201,Wired Headphones,1,11.99,2019-04-01 11:50:00,169 Meadow St, New York City,NY,10001 +193202,AA Batteries (4-pack),2,3.84,2019-04-21 22:27:00,770 River St, Seattle,WA,98101 +193203,USB-C Charging Cable,1,11.95,2019-04-16 10:46:00,698 11th St, San Francisco,CA,94016 +193204,Wired Headphones,1,11.99,2019-04-07 20:59:00,645 Adams St, San Francisco,CA,94016 +193205,USB-C Charging Cable,1,11.95,2019-04-18 20:08:00,489 12th St, Boston,MA,02215 +193206,USB-C Charging Cable,1,11.95,2019-04-01 16:14:00,924 7th St, Atlanta,GA,30301 +193207,Apple Airpods Headphones,1,150.0,2019-04-11 14:09:00,198 Chestnut St, Boston,MA,02215 +193208,Google Phone,1,600.0,2019-04-05 23:28:00,477 Sunset St, Los Angeles,CA,90001 +193209,34in Ultrawide Monitor,1,379.99,2019-04-30 08:00:00,182 1st St, Los Angeles,CA,90001 +193210,20in Monitor,1,109.99,2019-04-14 22:20:00,394 Sunset St, New York City,NY,10001 +193211,Macbook Pro Laptop,1,1700.0,2019-04-15 20:51:00,44 6th St, Seattle,WA,98101 +193212,Apple Airpods Headphones,1,150.0,2019-04-09 18:29:00,673 River St, San Francisco,CA,94016 +193213,AA Batteries (4-pack),1,3.84,2019-04-02 23:12:00,790 Lincoln St, San Francisco,CA,94016 +193214,Macbook Pro Laptop,1,1700.0,2019-04-20 06:54:00,200 14th St, Boston,MA,02215 +193215,27in FHD Monitor,1,149.99,2019-04-06 11:35:00,820 Walnut St, San Francisco,CA,94016 +193216,Lightning Charging Cable,1,14.95,2019-04-26 13:35:00,54 Pine St, Seattle,WA,98101 +193217,Macbook Pro Laptop,1,1700.0,2019-04-12 21:35:00,640 8th St, Atlanta,GA,30301 +193218,Google Phone,1,600.0,2019-04-14 18:20:00,459 13th St, Boston,MA,02215 +193218,Bose SoundSport Headphones,1,99.99,2019-04-14 18:20:00,459 13th St, Boston,MA,02215 +193219,AAA Batteries (4-pack),1,2.99,2019-04-15 10:04:00,945 Sunset St, New York City,NY,10001 +193220,Apple Airpods Headphones,1,150.0,2019-04-06 10:05:00,463 2nd St, Dallas,TX,75001 +193221,AA Batteries (4-pack),2,3.84,2019-04-03 11:53:00,296 14th St, Atlanta,GA,30301 +193222,Wired Headphones,2,11.99,2019-04-07 14:05:00,980 Main St, San Francisco,CA,94016 +193223,Wired Headphones,1,11.99,2019-04-20 13:31:00,14 Spruce St, Austin,TX,73301 +193224,27in FHD Monitor,1,149.99,2019-04-21 15:20:00,894 9th St, San Francisco,CA,94016 +193225,Bose SoundSport Headphones,1,99.99,2019-04-21 20:08:00,448 Cherry St, Austin,TX,73301 +193226,20in Monitor,1,109.99,2019-04-13 20:57:00,732 Main St, San Francisco,CA,94016 +193227,Flatscreen TV,1,300.0,2019-04-01 14:05:00,114 River St, Austin,TX,73301 +193228,AA Batteries (4-pack),1,3.84,2019-04-29 19:02:00,808 13th St, Seattle,WA,98101 +193229,34in Ultrawide Monitor,1,379.99,2019-04-09 17:06:00,814 14th St, New York City,NY,10001 +193230,Lightning Charging Cable,1,14.95,2019-04-14 20:26:00,472 Center St, Boston,MA,02215 +193231,Lightning Charging Cable,1,14.95,2019-04-20 17:54:00,101 Washington St, San Francisco,CA,94016 +193232,iPhone,1,700.0,2019-04-26 19:20:00,335 Hill St, Atlanta,GA,30301 +193233,Bose SoundSport Headphones,1,99.99,2019-04-07 19:34:00,606 4th St, San Francisco,CA,94016 +193234,ThinkPad Laptop,1,999.99,2019-04-29 18:57:00,591 Johnson St, Austin,TX,73301 +193235,Wired Headphones,1,11.99,2019-04-08 12:43:00,23 Church St, Boston,MA,02215 +193236,iPhone,1,700.0,2019-04-20 11:03:00,782 13th St, Dallas,TX,75001 +193237,27in FHD Monitor,1,149.99,2019-04-17 18:36:00,364 Main St, Seattle,WA,98101 +193238,Vareebadd Phone,1,400.0,2019-04-29 18:40:00,163 Center St, New York City,NY,10001 +193239,Bose SoundSport Headphones,1,99.99,2019-04-18 18:20:00,157 Jefferson St, Dallas,TX,75001 +193240,USB-C Charging Cable,1,11.95,2019-04-11 10:54:00,962 5th St, Dallas,TX,75001 +193241,34in Ultrawide Monitor,1,379.99,2019-04-14 11:46:00,128 2nd St, San Francisco,CA,94016 +193242,Apple Airpods Headphones,1,150.0,2019-04-27 18:05:00,767 Adams St, Seattle,WA,98101 +193243,Vareebadd Phone,1,400.0,2019-04-17 18:49:00,976 Jackson St, Atlanta,GA,30301 +193244,Wired Headphones,1,11.99,2019-04-29 12:38:00,940 Hickory St, Los Angeles,CA,90001 +193245,iPhone,1,700.0,2019-04-26 18:21:00,586 9th St, San Francisco,CA,94016 +193246,AAA Batteries (4-pack),1,2.99,2019-04-08 23:57:00,625 4th St, San Francisco,CA,94016 +193247,Lightning Charging Cable,1,14.95,2019-04-21 13:55:00,446 11th St, New York City,NY,10001 +193248,Google Phone,1,600.0,2019-04-21 10:03:00,103 Highland St, San Francisco,CA,94016 +193249,Bose SoundSport Headphones,1,99.99,2019-04-10 01:15:00,6 West St, Austin,TX,73301 +193250,Wired Headphones,1,11.99,2019-04-16 18:07:00,832 Dogwood St, San Francisco,CA,94016 +193251,27in FHD Monitor,1,149.99,2019-04-05 07:47:00,539 1st St, Portland,OR,97035 +193252,AA Batteries (4-pack),1,3.84,2019-04-01 10:26:00,35 Hill St, San Francisco,CA,94016 +193253,Lightning Charging Cable,1,14.95,2019-04-07 14:34:00,146 11th St, San Francisco,CA,94016 +193254,Lightning Charging Cable,1,14.95,2019-04-27 19:15:00,865 7th St, Los Angeles,CA,90001 +193255,USB-C Charging Cable,1,11.95,2019-04-20 17:08:00,762 Maple St, Seattle,WA,98101 +193256,Flatscreen TV,1,300.0,2019-04-13 18:12:00,381 4th St, San Francisco,CA,94016 +193257,Bose SoundSport Headphones,1,99.99,2019-04-05 19:49:00,941 West St, San Francisco,CA,94016 +193258,Bose SoundSport Headphones,1,99.99,2019-04-29 20:05:00,103 Main St, San Francisco,CA,94016 +193259,Apple Airpods Headphones,1,150.0,2019-04-17 11:27:00,74 13th St, Dallas,TX,75001 +193260,Google Phone,1,600.0,2019-04-01 16:37:00,585 Hill St, Los Angeles,CA,90001 +193261,iPhone,1,700.0,2019-04-20 19:41:00,350 Spruce St, Atlanta,GA,30301 +193261,Wired Headphones,1,11.99,2019-04-20 19:41:00,350 Spruce St, Atlanta,GA,30301 +193262,USB-C Charging Cable,1,11.95,2019-04-16 14:39:00,856 Forest St, San Francisco,CA,94016 +193263,ThinkPad Laptop,1,999.99,2019-04-27 12:01:00,496 Sunset St, San Francisco,CA,94016 +193264,Wired Headphones,1,11.99,2019-04-17 17:15:00,269 Cedar St, Boston,MA,02215 +193265,27in 4K Gaming Monitor,1,389.99,2019-04-26 20:32:00,268 North St, San Francisco,CA,94016 +193266,Bose SoundSport Headphones,1,99.99,2019-04-30 08:14:00,776 14th St, New York City,NY,10001 +193267,AA Batteries (4-pack),2,3.84,2019-04-17 08:37:00,663 Washington St, New York City,NY,10001 +193268,27in FHD Monitor,1,149.99,2019-04-06 08:51:00,988 North St, San Francisco,CA,94016 +193269,Vareebadd Phone,1,400.0,2019-04-01 18:48:00,11 9th St, Portland,OR,97035 +193270,AA Batteries (4-pack),3,3.84,2019-04-22 19:45:00,621 Hill St, San Francisco,CA,94016 +193271,AAA Batteries (4-pack),2,2.99,2019-04-08 23:00:00,19 Cedar St, San Francisco,CA,94016 +193272,AAA Batteries (4-pack),2,2.99,2019-04-05 18:56:00,836 9th St, Atlanta,GA,30301 +193273,AAA Batteries (4-pack),2,2.99,2019-04-19 17:43:00,426 Maple St, New York City,NY,10001 +193274,AA Batteries (4-pack),2,3.84,2019-04-29 14:08:00,9 12th St, San Francisco,CA,94016 +193275,Lightning Charging Cable,1,14.95,2019-04-08 10:59:00,641 5th St, Boston,MA,02215 +193276,USB-C Charging Cable,1,11.95,2019-04-04 20:24:00,238 Meadow St, Austin,TX,73301 +193276,Bose SoundSport Headphones,1,99.99,2019-04-04 20:24:00,238 Meadow St, Austin,TX,73301 +193277,Macbook Pro Laptop,1,1700.0,2019-04-30 14:13:00,139 2nd St, New York City,NY,10001 +193278,Wired Headphones,1,11.99,2019-04-05 16:08:00,142 Main St, Boston,MA,02215 +193279,Lightning Charging Cable,1,14.95,2019-04-22 10:52:00,87 Center St, Los Angeles,CA,90001 +193280,Apple Airpods Headphones,1,150.0,2019-04-16 18:47:00,759 Hill St, San Francisco,CA,94016 +193281,34in Ultrawide Monitor,1,379.99,2019-04-01 14:49:00,178 4th St, New York City,NY,10001 +193282,iPhone,1,700.0,2019-04-21 08:15:00,761 Church St, Los Angeles,CA,90001 +193283,AAA Batteries (4-pack),1,2.99,2019-04-27 09:40:00,279 Chestnut St, San Francisco,CA,94016 +193284,27in FHD Monitor,1,149.99,2019-04-02 13:35:00,468 South St, Los Angeles,CA,90001 +193285,Wired Headphones,1,11.99,2019-04-09 09:15:00,934 13th St, Los Angeles,CA,90001 +193286,Lightning Charging Cable,1,14.95,2019-04-09 10:48:00,195 11th St, Dallas,TX,75001 +193287,AAA Batteries (4-pack),2,2.99,2019-04-18 09:29:00,671 Sunset St, Boston,MA,02215 +193288,USB-C Charging Cable,1,11.95,2019-04-27 07:29:00,884 9th St, San Francisco,CA,94016 +193289,Apple Airpods Headphones,1,150.0,2019-04-01 15:50:00,619 9th St, Boston,MA,02215 +193290,Lightning Charging Cable,1,14.95,2019-04-14 21:36:00,787 12th St, Dallas,TX,75001 +193291,AA Batteries (4-pack),1,3.84,2019-04-21 14:46:00,622 Cherry St, Seattle,WA,98101 +193292,AAA Batteries (4-pack),1,2.99,2019-04-30 13:44:00,764 9th St, Portland,OR,97035 +193293,Apple Airpods Headphones,1,150.0,2019-04-03 19:18:00,539 2nd St, Atlanta,GA,30301 +193294,AAA Batteries (4-pack),1,2.99,2019-04-15 14:10:00,352 Church St, Los Angeles,CA,90001 +193295,Bose SoundSport Headphones,1,99.99,2019-04-12 08:06:00,424 Madison St, Los Angeles,CA,90001 +193296,USB-C Charging Cable,1,11.95,2019-04-04 12:06:00,752 Maple St, Los Angeles,CA,90001 +193297,Wired Headphones,1,11.99,2019-04-02 21:25:00,56 North St, Seattle,WA,98101 +193298,Lightning Charging Cable,2,14.95,2019-04-07 22:31:00,61 West St, Austin,TX,73301 +193299,ThinkPad Laptop,1,999.99,2019-04-17 12:08:00,74 10th St, Boston,MA,02215 +193300,Apple Airpods Headphones,1,150.0,2019-04-20 10:37:00,426 Dogwood St, San Francisco,CA,94016 +193301,AA Batteries (4-pack),1,3.84,2019-04-17 16:27:00,271 South St, San Francisco,CA,94016 +193302,USB-C Charging Cable,1,11.95,2019-04-02 09:46:00,360 Sunset St, Portland,OR,97035 +193303,AAA Batteries (4-pack),2,2.99,2019-04-07 20:47:00,258 Meadow St, Los Angeles,CA,90001 +193304,AAA Batteries (4-pack),1,2.99,2019-04-21 07:10:00,555 7th St, New York City,NY,10001 +193305,Lightning Charging Cable,1,14.95,2019-04-09 11:27:00,376 Wilson St, Los Angeles,CA,90001 +193306,27in 4K Gaming Monitor,1,389.99,2019-04-16 11:43:00,844 Lakeview St, Portland,ME,04101 +193307,Google Phone,1,600.0,2019-04-30 22:36:00,323 North St, Portland,OR,97035 +193308,27in 4K Gaming Monitor,1,389.99,2019-04-17 04:35:00,248 2nd St, Boston,MA,02215 +193309,iPhone,1,700.0,2019-04-19 23:16:00,139 Cherry St, Boston,MA,02215 +193310,USB-C Charging Cable,2,11.95,2019-04-12 10:15:00,59 Park St, New York City,NY,10001 +193311,USB-C Charging Cable,1,11.95,2019-04-19 12:34:00,818 1st St, Seattle,WA,98101 +193312,AA Batteries (4-pack),1,3.84,2019-04-13 19:46:00,639 Lincoln St, San Francisco,CA,94016 +193313,AA Batteries (4-pack),1,3.84,2019-04-16 15:46:00,818 9th St, Los Angeles,CA,90001 +193314,Apple Airpods Headphones,1,150.0,2019-04-16 11:29:00,26 13th St, Boston,MA,02215 +193315,34in Ultrawide Monitor,1,379.99,2019-04-22 18:22:00,320 Center St, New York City,NY,10001 +193316,Bose SoundSport Headphones,1,99.99,2019-04-16 08:51:00,576 Lincoln St, Austin,TX,73301 +193317,27in FHD Monitor,1,149.99,2019-04-14 10:16:00,558 13th St, Atlanta,GA,30301 +193318,Lightning Charging Cable,1,14.95,2019-04-09 07:41:00,676 Lake St, San Francisco,CA,94016 +193319,AA Batteries (4-pack),1,3.84,2019-04-07 22:30:00,846 South St, Austin,TX,73301 +193320,AAA Batteries (4-pack),1,2.99,2019-04-06 10:43:00,53 Park St, Portland,OR,97035 +193321,AAA Batteries (4-pack),1,2.99,2019-04-30 16:32:00,25 Wilson St, Portland,OR,97035 +193322,34in Ultrawide Monitor,1,379.99,2019-04-21 13:45:00,266 Jefferson St, San Francisco,CA,94016 +193323,Apple Airpods Headphones,1,150.0,2019-04-08 17:20:00,378 Elm St, Atlanta,GA,30301 +193324,Apple Airpods Headphones,1,150.0,2019-04-11 08:43:00,843 River St, Atlanta,GA,30301 +193324,AAA Batteries (4-pack),1,2.99,2019-04-11 08:43:00,843 River St, Atlanta,GA,30301 +193325,Bose SoundSport Headphones,1,99.99,2019-04-02 11:21:00,726 Highland St, Portland,ME,04101 +193326,Lightning Charging Cable,1,14.95,2019-04-03 18:51:00,85 Spruce St, New York City,NY,10001 +193327,Apple Airpods Headphones,1,150.0,2019-04-07 12:43:00,440 7th St, San Francisco,CA,94016 +193328,ThinkPad Laptop,1,999.99,2019-04-30 19:59:00,222 2nd St, San Francisco,CA,94016 +193329,Bose SoundSport Headphones,1,99.99,2019-04-09 12:23:00,696 Wilson St, Los Angeles,CA,90001 +193330,Flatscreen TV,1,300.0,2019-04-22 13:19:00,98 Cedar St, Atlanta,GA,30301 +193331,AAA Batteries (4-pack),4,2.99,2019-04-18 11:53:00,224 Lakeview St, Los Angeles,CA,90001 +193332,Apple Airpods Headphones,1,150.0,2019-04-08 10:50:00,405 12th St, Portland,OR,97035 +193333,AAA Batteries (4-pack),2,2.99,2019-04-03 17:14:00,161 Main St, New York City,NY,10001 +193334,Google Phone,1,600.0,2019-04-19 16:34:00,412 Forest St, Portland,ME,04101 +193335,AA Batteries (4-pack),1,3.84,2019-04-20 08:32:00,83 Johnson St, San Francisco,CA,94016 +193336,USB-C Charging Cable,1,11.95,2019-04-30 21:58:00,637 Chestnut St, San Francisco,CA,94016 +193337,USB-C Charging Cable,2,11.95,2019-04-13 15:15:00,113 West St, San Francisco,CA,94016 +193338,Apple Airpods Headphones,1,150.0,2019-04-09 14:26:00,924 5th St, Dallas,TX,75001 +193339,Vareebadd Phone,1,400.0,2019-04-29 17:37:00,976 Cherry St, Atlanta,GA,30301 +193340,USB-C Charging Cable,1,11.95,2019-04-18 12:57:00,898 Dogwood St, Portland,OR,97035 +193341,Apple Airpods Headphones,1,150.0,2019-04-21 14:21:00,285 Lincoln St, New York City,NY,10001 +193342,AA Batteries (4-pack),2,3.84,2019-04-16 22:57:00,153 Lincoln St, Seattle,WA,98101 +193343,Bose SoundSport Headphones,1,99.99,2019-04-27 12:46:00,40 Hill St, San Francisco,CA,94016 +193344,AA Batteries (4-pack),2,3.84,2019-04-04 21:28:00,513 Hill St, New York City,NY,10001 +193345,Bose SoundSport Headphones,1,99.99,2019-04-20 21:11:00,167 Johnson St, San Francisco,CA,94016 +193346,AA Batteries (4-pack),3,3.84,2019-04-05 09:44:00,444 Hill St, San Francisco,CA,94016 +193347,27in FHD Monitor,1,149.99,2019-04-02 19:57:00,983 North St, San Francisco,CA,94016 +193348,Wired Headphones,1,11.99,2019-04-24 19:29:00,144 5th St, San Francisco,CA,94016 +193349,USB-C Charging Cable,1,11.95,2019-04-07 09:12:00,817 Jackson St, Boston,MA,02215 +193349,Vareebadd Phone,1,400.0,2019-04-07 09:12:00,817 Jackson St, Boston,MA,02215 +193350,AA Batteries (4-pack),2,3.84,2019-04-25 21:39:00,926 Ridge St, San Francisco,CA,94016 +193351,Lightning Charging Cable,1,14.95,2019-04-16 01:33:00,782 6th St, Atlanta,GA,30301 +193352,27in 4K Gaming Monitor,1,389.99,2019-04-18 19:34:00,300 West St, Atlanta,GA,30301 +193353,27in 4K Gaming Monitor,1,389.99,2019-04-04 18:16:00,814 Johnson St, San Francisco,CA,94016 +193354,AAA Batteries (4-pack),1,2.99,2019-04-08 17:09:00,334 Cedar St, Atlanta,GA,30301 +193355,Lightning Charging Cable,1,14.95,2019-04-15 22:55:00,655 Lake St, New York City,NY,10001 +193356,iPhone,1,700.0,2019-04-17 09:23:00,62 Lakeview St, San Francisco,CA,94016 +193357,USB-C Charging Cable,1,11.95,2019-04-22 12:53:00,700 11th St, Portland,OR,97035 +193358,AA Batteries (4-pack),1,3.84,2019-04-12 01:19:00,804 12th St, Atlanta,GA,30301 +193359,USB-C Charging Cable,1,11.95,2019-04-29 14:35:00,502 Adams St, Atlanta,GA,30301 +193360,Vareebadd Phone,1,400.0,2019-04-26 13:09:00,403 Madison St, Los Angeles,CA,90001 +193360,AA Batteries (4-pack),2,3.84,2019-04-26 13:09:00,403 Madison St, Los Angeles,CA,90001 +193361,Wired Headphones,1,11.99,2019-04-18 13:41:00,317 8th St, New York City,NY,10001 +193362,USB-C Charging Cable,1,11.95,2019-04-23 14:39:00,16 Adams St, New York City,NY,10001 +193363,Wired Headphones,1,11.99,2019-04-17 13:15:00,991 Chestnut St, Los Angeles,CA,90001 +193364,Wired Headphones,1,11.99,2019-04-14 10:41:00,723 9th St, Austin,TX,73301 +193365,Lightning Charging Cable,1,14.95,2019-04-25 22:59:00,377 Washington St, Portland,OR,97035 +193366,Macbook Pro Laptop,1,1700.0,2019-04-01 14:51:00,966 5th St, New York City,NY,10001 +193367,AA Batteries (4-pack),1,3.84,2019-04-30 20:33:00,47 Highland St, New York City,NY,10001 +193368,Lightning Charging Cable,1,14.95,2019-04-11 22:42:00,676 Cedar St, Seattle,WA,98101 +193369,AAA Batteries (4-pack),1,2.99,2019-04-10 21:26:00,250 1st St, New York City,NY,10001 +193370,Wired Headphones,1,11.99,2019-04-19 02:46:00,553 Lakeview St, Los Angeles,CA,90001 +193371,AA Batteries (4-pack),1,3.84,2019-04-10 10:58:00,89 Chestnut St, Los Angeles,CA,90001 +193372,iPhone,1,700.0,2019-04-02 12:13:00,98 Chestnut St, Dallas,TX,75001 +193373,Macbook Pro Laptop,1,1700.0,2019-04-29 23:57:00,744 Willow St, New York City,NY,10001 +193374,iPhone,1,700.0,2019-04-14 18:26:00,962 7th St, San Francisco,CA,94016 +193375,34in Ultrawide Monitor,1,379.99,2019-04-30 22:57:00,36 Jackson St, Los Angeles,CA,90001 +193376,Bose SoundSport Headphones,1,99.99,2019-04-06 22:28:00,775 Lakeview St, Portland,OR,97035 +193377,AAA Batteries (4-pack),2,2.99,2019-04-24 17:16:00,827 Jackson St, Seattle,WA,98101 +193378,Wired Headphones,1,11.99,2019-04-09 16:36:00,865 Willow St, New York City,NY,10001 +193379,Vareebadd Phone,1,400.0,2019-04-15 11:48:00,359 Main St, Los Angeles,CA,90001 +193379,USB-C Charging Cable,1,11.95,2019-04-15 11:48:00,359 Main St, Los Angeles,CA,90001 +193380,Macbook Pro Laptop,1,1700.0,2019-04-30 15:29:00,3 Walnut St, Seattle,WA,98101 +193381,Bose SoundSport Headphones,1,99.99,2019-04-11 03:16:00,51 West St, New York City,NY,10001 +193382,AA Batteries (4-pack),1,3.84,2019-04-22 21:03:00,662 Adams St, Austin,TX,73301 +193383,Apple Airpods Headphones,1,150.0,2019-04-29 15:08:00,259 North St, Atlanta,GA,30301 +193384,Vareebadd Phone,1,400.0,2019-04-25 10:57:00,696 2nd St, Boston,MA,02215 +193384,USB-C Charging Cable,1,11.95,2019-04-25 10:57:00,696 2nd St, Boston,MA,02215 +193385,20in Monitor,1,109.99,2019-04-18 08:55:00,861 Dogwood St, Austin,TX,73301 +193386,Lightning Charging Cable,1,14.95,2019-04-14 19:02:00,97 Cherry St, Los Angeles,CA,90001 +193387,AA Batteries (4-pack),1,3.84,2019-04-20 18:30:00,680 Dogwood St, Los Angeles,CA,90001 +193388,27in FHD Monitor,1,149.99,2019-04-21 19:34:00,178 Spruce St, Portland,ME,04101 +193389,Lightning Charging Cable,1,14.95,2019-04-19 14:16:00,893 Johnson St, Los Angeles,CA,90001 +193390,AAA Batteries (4-pack),2,2.99,2019-04-12 13:43:00,722 Lake St, New York City,NY,10001 +193391,AAA Batteries (4-pack),1,2.99,2019-04-04 18:02:00,126 Spruce St, New York City,NY,10001 +193391,Flatscreen TV,1,300.0,2019-04-04 18:02:00,126 Spruce St, New York City,NY,10001 +193392,Lightning Charging Cable,1,14.95,2019-04-16 15:22:00,800 Willow St, Boston,MA,02215 +193393,27in 4K Gaming Monitor,1,389.99,2019-04-13 13:09:00,12 Cedar St, San Francisco,CA,94016 +193394,AA Batteries (4-pack),3,3.84,2019-04-12 12:47:00,679 Willow St, Dallas,TX,75001 +193395,USB-C Charging Cable,1,11.95,2019-04-20 10:45:00,365 Cedar St, Boston,MA,02215 +193396,AA Batteries (4-pack),1,3.84,2019-04-06 15:08:00,632 Madison St, Dallas,TX,75001 +193397,USB-C Charging Cable,1,11.95,2019-04-29 18:42:00,66 Hill St, Boston,MA,02215 +193398,Google Phone,1,600.0,2019-04-25 15:27:00,983 5th St, San Francisco,CA,94016 +193398,USB-C Charging Cable,1,11.95,2019-04-25 15:27:00,983 5th St, San Francisco,CA,94016 +193399,Lightning Charging Cable,1,14.95,2019-04-20 16:51:00,879 Spruce St, Atlanta,GA,30301 +193400,Apple Airpods Headphones,1,150.0,2019-04-06 15:34:00,780 9th St, Los Angeles,CA,90001 +193401,AA Batteries (4-pack),2,3.84,2019-04-16 14:11:00,67 14th St, New York City,NY,10001 +193402,Lightning Charging Cable,1,14.95,2019-04-20 13:27:00,589 Chestnut St, Los Angeles,CA,90001 +193403,Google Phone,1,600.0,2019-04-19 14:59:00,814 Center St, Austin,TX,73301 +193404,AA Batteries (4-pack),1,3.84,2019-04-19 09:00:00,213 West St, San Francisco,CA,94016 +193404,Macbook Pro Laptop,1,1700.0,2019-04-19 09:00:00,213 West St, San Francisco,CA,94016 +193405,iPhone,1,700.0,2019-04-18 17:53:00,103 Adams St, Atlanta,GA,30301 +193405,Lightning Charging Cable,1,14.95,2019-04-18 17:53:00,103 Adams St, Atlanta,GA,30301 +193406,USB-C Charging Cable,1,11.95,2019-04-07 21:38:00,483 Highland St, Los Angeles,CA,90001 +193407,Apple Airpods Headphones,1,150.0,2019-04-28 19:36:00,968 Pine St, Portland,OR,97035 +193408,Flatscreen TV,1,300.0,2019-04-28 07:41:00,300 8th St, Dallas,TX,75001 +193409,Apple Airpods Headphones,1,150.0,2019-04-01 12:32:00,750 Maple St, San Francisco,CA,94016 +193410,Wired Headphones,1,11.99,2019-04-12 10:55:00,677 12th St, Austin,TX,73301 +193411,AA Batteries (4-pack),3,3.84,2019-04-13 11:27:00,982 8th St, Boston,MA,02215 +193412,Apple Airpods Headphones,1,150.0,2019-04-11 12:21:00,141 Church St, New York City,NY,10001 +193413,ThinkPad Laptop,1,999.99,2019-04-26 19:57:00,888 River St, Los Angeles,CA,90001 +193414,Lightning Charging Cable,1,14.95,2019-04-07 09:20:00,150 Pine St, New York City,NY,10001 +193415,34in Ultrawide Monitor,1,379.99,2019-04-23 18:43:00,604 Park St, Boston,MA,02215 +193416,Wired Headphones,1,11.99,2019-04-09 18:22:00,404 4th St, Seattle,WA,98101 +193417,Bose SoundSport Headphones,1,99.99,2019-04-20 10:17:00,648 Wilson St, New York City,NY,10001 +193418,Apple Airpods Headphones,1,150.0,2019-04-19 21:21:00,393 Dogwood St, San Francisco,CA,94016 +193419,Bose SoundSport Headphones,1,99.99,2019-04-23 00:18:00,322 8th St, San Francisco,CA,94016 +193420,iPhone,1,700.0,2019-04-30 11:37:00,210 Walnut St, Atlanta,GA,30301 +193421,Apple Airpods Headphones,1,150.0,2019-04-24 22:57:00,169 5th St, New York City,NY,10001 +193422,Lightning Charging Cable,1,14.95,2019-04-05 23:24:00,953 Lincoln St, Dallas,TX,75001 +193423,Lightning Charging Cable,1,14.95,2019-04-22 19:10:00,827 2nd St, New York City,NY,10001 +193424,AAA Batteries (4-pack),1,2.99,2019-04-12 17:37:00,600 North St, Dallas,TX,75001 +193425,Lightning Charging Cable,1,14.95,2019-04-07 12:13:00,92 Church St, Los Angeles,CA,90001 +193426,Wired Headphones,1,11.99,2019-04-14 00:35:00,38 Meadow St, New York City,NY,10001 +193427,Lightning Charging Cable,1,14.95,2019-04-07 09:24:00,123 6th St, New York City,NY,10001 +193428,34in Ultrawide Monitor,1,379.99,2019-04-02 09:21:00,410 Hill St, Boston,MA,02215 +193429,Google Phone,1,600.0,2019-04-17 22:23:00,427 Madison St, Boston,MA,02215 +193430,Wired Headphones,1,11.99,2019-04-29 11:01:00,638 Adams St, Boston,MA,02215 +193431,20in Monitor,1,109.99,2019-04-23 18:47:00,528 Forest St, New York City,NY,10001 +193432,AA Batteries (4-pack),1,3.84,2019-04-11 12:13:00,383 6th St, Atlanta,GA,30301 +193433,AAA Batteries (4-pack),2,2.99,2019-04-29 03:49:00,545 14th St, Los Angeles,CA,90001 +193434,AAA Batteries (4-pack),1,2.99,2019-04-25 23:11:00,452 Walnut St, Boston,MA,02215 +193435,Apple Airpods Headphones,1,150.0,2019-04-04 22:45:00,495 9th St, Atlanta,GA,30301 +193436,Apple Airpods Headphones,1,150.0,2019-04-19 12:04:00,930 Cedar St, Portland,OR,97035 +193437,27in FHD Monitor,1,149.99,2019-04-14 23:02:00,380 6th St, Portland,ME,04101 +193438,AA Batteries (4-pack),1,3.84,2019-04-30 13:28:00,970 6th St, Los Angeles,CA,90001 +193439,Flatscreen TV,1,300.0,2019-04-05 10:19:00,183 Main St, San Francisco,CA,94016 +193440,USB-C Charging Cable,1,11.95,2019-04-16 11:16:00,776 West St, Dallas,TX,75001 +193441,Bose SoundSport Headphones,1,99.99,2019-04-23 18:44:00,401 13th St, New York City,NY,10001 +193442,USB-C Charging Cable,1,11.95,2019-04-28 16:35:00,223 7th St, Boston,MA,02215 +193443,AAA Batteries (4-pack),2,2.99,2019-04-28 12:48:00,619 Cedar St, San Francisco,CA,94016 +193444,AAA Batteries (4-pack),1,2.99,2019-04-06 18:25:00,642 Chestnut St, Dallas,TX,75001 +193445,Apple Airpods Headphones,1,150.0,2019-04-03 16:44:00,420 Adams St, San Francisco,CA,94016 +193446,AAA Batteries (4-pack),1,2.99,2019-04-09 18:04:00,721 9th St, San Francisco,CA,94016 +193447,USB-C Charging Cable,1,11.95,2019-04-10 13:47:00,735 Park St, San Francisco,CA,94016 +193448,USB-C Charging Cable,1,11.95,2019-04-14 16:45:00,397 North St, San Francisco,CA,94016 +193449,AAA Batteries (4-pack),1,2.99,2019-04-05 17:31:00,628 Hickory St, Boston,MA,02215 +193450,iPhone,1,700.0,2019-04-19 02:05:00,29 Park St, San Francisco,CA,94016 +193451,iPhone,1,700.0,2019-04-13 18:59:00,622 9th St, San Francisco,CA,94016 +193451,Wired Headphones,1,11.99,2019-04-13 18:59:00,622 9th St, San Francisco,CA,94016 +193452,27in 4K Gaming Monitor,1,389.99,2019-04-27 16:48:00,102 2nd St, Boston,MA,02215 +193453,USB-C Charging Cable,1,11.95,2019-04-28 14:59:00,971 Sunset St, San Francisco,CA,94016 +193454,Wired Headphones,1,11.99,2019-04-26 11:29:00,521 Church St, Dallas,TX,75001 +193455,Apple Airpods Headphones,1,150.0,2019-04-21 09:38:00,573 South St, San Francisco,CA,94016 +193456,USB-C Charging Cable,1,11.95,2019-04-29 02:59:00,162 12th St, San Francisco,CA,94016 +193457,Apple Airpods Headphones,1,150.0,2019-04-28 19:06:00,431 North St, San Francisco,CA,94016 +193458,USB-C Charging Cable,1,11.95,2019-04-27 17:35:00,200 Lincoln St, New York City,NY,10001 +193459,AAA Batteries (4-pack),1,2.99,2019-04-15 22:29:00,565 Highland St, Los Angeles,CA,90001 +193460,AA Batteries (4-pack),1,3.84,2019-04-18 13:39:00,885 Ridge St, New York City,NY,10001 +193461,Bose SoundSport Headphones,1,99.99,2019-04-07 06:12:00,510 Hickory St, Seattle,WA,98101 +193462,AA Batteries (4-pack),1,3.84,2019-04-12 23:21:00,295 Main St, Boston,MA,02215 +193463,USB-C Charging Cable,1,11.95,2019-04-09 22:23:00,463 Adams St, Boston,MA,02215 +193464,Wired Headphones,2,11.99,2019-04-04 17:27:00,179 Spruce St, San Francisco,CA,94016 +193465,LG Washing Machine,1,600.0,2019-04-15 16:10:00,974 Lake St, Los Angeles,CA,90001 +193466,Apple Airpods Headphones,1,150.0,2019-04-21 10:18:00,350 South St, Los Angeles,CA,90001 +193467,Wired Headphones,1,11.99,2019-04-16 23:24:00,116 4th St, Boston,MA,02215 +193468,Lightning Charging Cable,1,14.95,2019-04-11 15:40:00,848 9th St, Seattle,WA,98101 +193469,Bose SoundSport Headphones,1,99.99,2019-04-28 17:28:00,191 13th St, New York City,NY,10001 +193470,Lightning Charging Cable,1,14.95,2019-04-30 20:24:00,104 Wilson St, San Francisco,CA,94016 +193471,USB-C Charging Cable,1,11.95,2019-04-14 21:52:00,676 Cedar St, San Francisco,CA,94016 +193472,Bose SoundSport Headphones,1,99.99,2019-04-15 00:33:00,454 Madison St, Atlanta,GA,30301 +193473,Bose SoundSport Headphones,1,99.99,2019-04-18 19:08:00,859 Jackson St, Dallas,TX,75001 +193474,AAA Batteries (4-pack),1,2.99,2019-04-13 18:00:00,988 Main St, Los Angeles,CA,90001 +193475,iPhone,1,700.0,2019-04-16 06:14:00,479 Adams St, Dallas,TX,75001 +193476,AA Batteries (4-pack),2,3.84,2019-04-29 10:54:00,165 Cherry St, Boston,MA,02215 +193477,AA Batteries (4-pack),1,3.84,2019-04-26 07:50:00,190 Dogwood St, New York City,NY,10001 +193478,Apple Airpods Headphones,1,150.0,2019-04-22 05:10:00,960 Dogwood St, Austin,TX,73301 +193479,Wired Headphones,1,11.99,2019-04-30 17:43:00,105 Elm St, San Francisco,CA,94016 +193480,Lightning Charging Cable,1,14.95,2019-04-22 13:26:00,930 Hickory St, San Francisco,CA,94016 +193481,27in FHD Monitor,1,149.99,2019-04-07 12:44:00,517 North St, New York City,NY,10001 +193482,Apple Airpods Headphones,1,150.0,2019-04-21 09:36:00,718 Cherry St, San Francisco,CA,94016 +193483,20in Monitor,1,109.99,2019-04-26 13:08:00,104 Madison St, New York City,NY,10001 +193484,Wired Headphones,1,11.99,2019-04-25 15:35:00,127 Willow St, Portland,OR,97035 +193485,Apple Airpods Headphones,1,150.0,2019-04-13 22:56:00,287 Center St, Atlanta,GA,30301 +193486,ThinkPad Laptop,1,999.99,2019-04-03 11:08:00,322 Hill St, Los Angeles,CA,90001 +193487,AA Batteries (4-pack),1,3.84,2019-04-20 17:27:00,720 Center St, New York City,NY,10001 +193488,Wired Headphones,1,11.99,2019-04-22 18:34:00,535 Hill St, San Francisco,CA,94016 +193489,ThinkPad Laptop,1,999.99,2019-04-28 09:40:00,328 Forest St, Seattle,WA,98101 +193490,USB-C Charging Cable,1,11.95,2019-04-27 22:11:00,823 4th St, San Francisco,CA,94016 +193491,Apple Airpods Headphones,1,150.0,2019-04-19 19:40:00,331 11th St, Atlanta,GA,30301 +193492,AA Batteries (4-pack),1,3.84,2019-04-28 22:06:00,713 Washington St, San Francisco,CA,94016 +193493,Bose SoundSport Headphones,1,99.99,2019-04-14 18:06:00,918 North St, Los Angeles,CA,90001 +193494,AAA Batteries (4-pack),2,2.99,2019-04-11 18:58:00,115 1st St, New York City,NY,10001 +193495,27in FHD Monitor,1,149.99,2019-04-03 19:33:00,836 11th St, Seattle,WA,98101 +193496,Lightning Charging Cable,1,14.95,2019-04-20 22:45:00,919 1st St, Los Angeles,CA,90001 +193497,Lightning Charging Cable,1,14.95,2019-04-13 00:05:00,101 Meadow St, San Francisco,CA,94016 +193498,USB-C Charging Cable,1,11.95,2019-04-10 06:36:00,610 Madison St, Los Angeles,CA,90001 +193499,34in Ultrawide Monitor,1,379.99,2019-04-08 16:13:00,558 Spruce St, New York City,NY,10001 +193500,Lightning Charging Cable,1,14.95,2019-04-22 09:39:00,7 Wilson St, Los Angeles,CA,90001 +193501,Lightning Charging Cable,1,14.95,2019-04-04 14:11:00,241 Walnut St, Boston,MA,02215 +193502,AAA Batteries (4-pack),1,2.99,2019-04-29 21:14:00,442 14th St, San Francisco,CA,94016 +193503,Lightning Charging Cable,1,14.95,2019-04-20 10:36:00,424 Lake St, San Francisco,CA,94016 +193504,Apple Airpods Headphones,1,150.0,2019-04-30 15:24:00,229 Hickory St, San Francisco,CA,94016 +193505,ThinkPad Laptop,1,999.99,2019-04-04 22:58:00,661 Elm St, Dallas,TX,75001 +193506,Bose SoundSport Headphones,1,99.99,2019-04-11 19:42:00,675 Cherry St, Los Angeles,CA,90001 +193507,iPhone,1,700.0,2019-04-19 16:59:00,16 West St, New York City,NY,10001 +193507,34in Ultrawide Monitor,1,379.99,2019-04-19 16:59:00,16 West St, New York City,NY,10001 +193508,USB-C Charging Cable,1,11.95,2019-04-07 10:49:00,379 South St, Seattle,WA,98101 +193508,Wired Headphones,1,11.99,2019-04-07 10:49:00,379 South St, Seattle,WA,98101 +193509,AAA Batteries (4-pack),1,2.99,2019-04-05 21:43:00,341 North St, Boston,MA,02215 +193510,Lightning Charging Cable,1,14.95,2019-04-12 10:56:00,324 Chestnut St, New York City,NY,10001 +193511,Google Phone,1,600.0,2019-04-21 11:14:00,821 Elm St, Austin,TX,73301 +193511,USB-C Charging Cable,2,11.95,2019-04-21 11:14:00,821 Elm St, Austin,TX,73301 +193511,Bose SoundSport Headphones,1,99.99,2019-04-21 11:14:00,821 Elm St, Austin,TX,73301 +193511,Wired Headphones,1,11.99,2019-04-21 11:14:00,821 Elm St, Austin,TX,73301 +193512,Apple Airpods Headphones,1,150.0,2019-04-05 16:00:00,767 Hill St, Los Angeles,CA,90001 +193513,USB-C Charging Cable,1,11.95,2019-04-15 06:23:00,791 Ridge St, Dallas,TX,75001 +193513,Bose SoundSport Headphones,1,99.99,2019-04-15 06:23:00,791 Ridge St, Dallas,TX,75001 +193514,Bose SoundSport Headphones,1,99.99,2019-04-13 20:00:00,213 Hickory St, San Francisco,CA,94016 +193515,Lightning Charging Cable,1,14.95,2019-04-08 13:15:00,945 Cherry St, San Francisco,CA,94016 +193516,Google Phone,1,600.0,2019-04-14 03:25:00,584 13th St, Portland,OR,97035 +193517,USB-C Charging Cable,1,11.95,2019-04-25 19:01:00,919 Jackson St, New York City,NY,10001 +193518,USB-C Charging Cable,1,11.95,2019-04-22 19:26:00,75 Willow St, Portland,OR,97035 +193519,Bose SoundSport Headphones,1,99.99,2019-04-18 16:50:00,490 Johnson St, Boston,MA,02215 +193520,ThinkPad Laptop,1,999.99,2019-04-07 11:52:00,374 Maple St, Atlanta,GA,30301 +193521,AAA Batteries (4-pack),2,2.99,2019-04-15 10:29:00,232 Cedar St, San Francisco,CA,94016 +193522,USB-C Charging Cable,1,11.95,2019-04-11 20:30:00,191 6th St, San Francisco,CA,94016 +193523,iPhone,1,700.0,2019-04-23 14:54:00,952 12th St, San Francisco,CA,94016 +193524,Lightning Charging Cable,1,14.95,2019-04-25 22:07:00,897 North St, San Francisco,CA,94016 +193525,LG Dryer,1,600.0,2019-04-03 20:31:00,785 Lake St, San Francisco,CA,94016 +193526,AAA Batteries (4-pack),2,2.99,2019-04-11 17:56:00,953 Jackson St, Portland,OR,97035 +193527,AA Batteries (4-pack),1,3.84,2019-04-18 07:03:00,295 Walnut St, San Francisco,CA,94016 +193528,AA Batteries (4-pack),1,3.84,2019-04-26 20:13:00,120 South St, New York City,NY,10001 +193529,USB-C Charging Cable,1,11.95,2019-04-25 12:30:00,18 Dogwood St, Portland,OR,97035 +193530,LG Dryer,1,600.0,2019-04-24 10:44:00,1 6th St, Austin,TX,73301 +193531,Lightning Charging Cable,1,14.95,2019-04-03 18:01:00,88 South St, Portland,OR,97035 +193532,iPhone,1,700.0,2019-04-13 19:05:00,233 8th St, Dallas,TX,75001 +193533,USB-C Charging Cable,1,11.95,2019-04-12 22:07:00,915 Willow St, San Francisco,CA,94016 +193534,Bose SoundSport Headphones,1,99.99,2019-04-15 19:36:00,525 Walnut St, Los Angeles,CA,90001 +193535,Apple Airpods Headphones,1,150.0,2019-04-30 19:06:00,866 West St, Seattle,WA,98101 +193536,AAA Batteries (4-pack),1,2.99,2019-04-29 20:36:00,225 13th St, Austin,TX,73301 +193537,Wired Headphones,1,11.99,2019-04-30 21:56:00,16 Wilson St, Los Angeles,CA,90001 +193538,Lightning Charging Cable,1,14.95,2019-04-01 22:40:00,280 Adams St, Boston,MA,02215 +193539,Google Phone,1,600.0,2019-04-26 16:02:00,148 Church St, Atlanta,GA,30301 +193540,Lightning Charging Cable,1,14.95,2019-04-10 09:05:00,478 Church St, Los Angeles,CA,90001 +193541,AAA Batteries (4-pack),2,2.99,2019-04-01 13:19:00,602 Highland St, Portland,ME,04101 +193542,USB-C Charging Cable,1,11.95,2019-04-06 21:34:00,885 6th St, Los Angeles,CA,90001 +193543,USB-C Charging Cable,1,11.95,2019-04-27 13:55:00,158 Adams St, Portland,OR,97035 +193544,Lightning Charging Cable,1,14.95,2019-04-15 04:29:00,474 Park St, Los Angeles,CA,90001 +193545,iPhone,1,700.0,2019-04-04 20:21:00,670 North St, New York City,NY,10001 +193545,Vareebadd Phone,1,400.0,2019-04-04 20:21:00,670 North St, New York City,NY,10001 +193546,Wired Headphones,1,11.99,2019-04-20 16:07:00,885 Walnut St, Seattle,WA,98101 +193547,AAA Batteries (4-pack),1,2.99,2019-04-12 10:28:00,222 1st St, Seattle,WA,98101 +193548,ThinkPad Laptop,1,999.99,2019-04-26 11:02:00,187 Cherry St, New York City,NY,10001 +193549,Lightning Charging Cable,1,14.95,2019-04-03 11:41:00,921 Lakeview St, Austin,TX,73301 +193550,Bose SoundSport Headphones,1,99.99,2019-04-25 17:30:00,609 West St, Boston,MA,02215 +193551,Wired Headphones,1,11.99,2019-04-08 14:39:00,774 Center St, San Francisco,CA,94016 +193552,Bose SoundSport Headphones,1,99.99,2019-04-09 09:18:00,341 Cherry St, Los Angeles,CA,90001 +193553,Wired Headphones,3,11.99,2019-04-29 04:31:00,660 9th St, Los Angeles,CA,90001 +193554,AA Batteries (4-pack),2,3.84,2019-04-18 10:37:00,778 2nd St, Los Angeles,CA,90001 +193555,Lightning Charging Cable,1,14.95,2019-04-25 11:05:00,68 8th St, Seattle,WA,98101 +193556,Lightning Charging Cable,1,14.95,2019-04-14 15:38:00,465 1st St, Austin,TX,73301 +193557,USB-C Charging Cable,2,11.95,2019-04-22 11:50:00,53 Main St, Los Angeles,CA,90001 +193558,Wired Headphones,1,11.99,2019-04-10 21:00:00,563 6th St, New York City,NY,10001 +193559,27in 4K Gaming Monitor,1,389.99,2019-04-24 14:49:00,474 13th St, Atlanta,GA,30301 +193560,Wired Headphones,1,11.99,2019-04-27 14:35:00,328 Main St, San Francisco,CA,94016 +193561,iPhone,1,700.0,2019-04-11 19:46:00,836 Ridge St, New York City,NY,10001 +193562,Google Phone,1,600.0,2019-04-24 13:41:00,526 9th St, Atlanta,GA,30301 +193563,Lightning Charging Cable,1,14.95,2019-04-09 16:26:00,855 Adams St, Boston,MA,02215 +193564,Apple Airpods Headphones,1,150.0,2019-04-02 15:58:00,470 Cedar St, San Francisco,CA,94016 +193565,USB-C Charging Cable,1,11.95,2019-04-10 17:36:00,682 14th St, New York City,NY,10001 +193566,Apple Airpods Headphones,1,150.0,2019-04-26 08:45:00,293 13th St, San Francisco,CA,94016 +193567,USB-C Charging Cable,1,11.95,2019-04-22 14:27:00,281 Johnson St, Los Angeles,CA,90001 +193568,AAA Batteries (4-pack),1,2.99,2019-04-20 19:35:00,3 Maple St, Portland,OR,97035 +193569,AAA Batteries (4-pack),1,2.99,2019-04-07 15:28:00,225 Lakeview St, Atlanta,GA,30301 +193570,Lightning Charging Cable,1,14.95,2019-04-14 08:00:00,342 Elm St, New York City,NY,10001 +193571,LG Washing Machine,1,600.0,2019-04-13 17:46:00,143 Spruce St, Portland,OR,97035 +193572,AA Batteries (4-pack),1,3.84,2019-04-23 18:25:00,896 11th St, Atlanta,GA,30301 +193573,AA Batteries (4-pack),1,3.84,2019-04-27 18:32:00,234 Pine St, San Francisco,CA,94016 +193574,Vareebadd Phone,1,400.0,2019-04-29 03:22:00,817 Hill St, San Francisco,CA,94016 +193575,AA Batteries (4-pack),1,3.84,2019-04-29 23:48:00,824 Elm St, Los Angeles,CA,90001 +193576,ThinkPad Laptop,1,999.99,2019-04-27 21:37:00,439 Willow St, San Francisco,CA,94016 +193577,ThinkPad Laptop,1,999.99,2019-04-09 21:35:00,201 Spruce St, San Francisco,CA,94016 +193578,Flatscreen TV,2,300.0,2019-04-08 17:32:00,375 Jackson St, San Francisco,CA,94016 +193579,Wired Headphones,2,11.99,2019-04-03 13:52:00,588 11th St, Los Angeles,CA,90001 +193580,AA Batteries (4-pack),1,3.84,2019-04-13 19:25:00,524 Park St, Dallas,TX,75001 +193581,AAA Batteries (4-pack),1,2.99,2019-04-29 13:17:00,933 Jackson St, Boston,MA,02215 +193582,USB-C Charging Cable,2,11.95,2019-04-20 18:31:00,346 Main St, Los Angeles,CA,90001 +193583,USB-C Charging Cable,1,11.95,2019-04-13 21:07:00,581 14th St, Seattle,WA,98101 +193584,AA Batteries (4-pack),1,3.84,2019-04-23 11:05:00,769 2nd St, Portland,OR,97035 +193585,AA Batteries (4-pack),3,3.84,2019-04-22 20:45:00,928 Dogwood St, Portland,OR,97035 +193586,Bose SoundSport Headphones,1,99.99,2019-04-20 10:17:00,351 7th St, San Francisco,CA,94016 +193587,USB-C Charging Cable,1,11.95,2019-04-06 21:49:00,120 Willow St, Los Angeles,CA,90001 +193588,Wired Headphones,1,11.99,2019-04-22 19:49:00,344 Adams St, Atlanta,GA,30301 +193589,Apple Airpods Headphones,1,150.0,2019-04-20 13:54:00,951 4th St, Los Angeles,CA,90001 +193590,AA Batteries (4-pack),1,3.84,2019-04-24 14:26:00,186 Lakeview St, Los Angeles,CA,90001 +193591,Apple Airpods Headphones,1,150.0,2019-04-11 14:48:00,394 South St, New York City,NY,10001 +193592,AA Batteries (4-pack),1,3.84,2019-04-23 06:51:00,88 Elm St, Los Angeles,CA,90001 +193593,Lightning Charging Cable,1,14.95,2019-04-26 16:38:00,69 South St, Boston,MA,02215 +193594,ThinkPad Laptop,1,999.99,2019-04-22 16:36:00,732 Jefferson St, Austin,TX,73301 +193595,Lightning Charging Cable,2,14.95,2019-04-18 23:17:00,368 Elm St, Dallas,TX,75001 +193596,AAA Batteries (4-pack),1,2.99,2019-04-28 14:50:00,758 10th St, Portland,OR,97035 +193597,USB-C Charging Cable,1,11.95,2019-04-28 10:43:00,195 9th St, Los Angeles,CA,90001 +193598,USB-C Charging Cable,1,11.95,2019-04-10 23:35:00,177 Madison St, Austin,TX,73301 +193599,Lightning Charging Cable,1,14.95,2019-04-30 08:46:00,309 5th St, Austin,TX,73301 +193600,Macbook Pro Laptop,1,1700.0,2019-04-23 22:12:00,71 Cherry St, Portland,OR,97035 +193601,Apple Airpods Headphones,1,150.0,2019-04-28 17:41:00,346 10th St, Los Angeles,CA,90001 +193602,20in Monitor,1,109.99,2019-04-10 18:43:00,436 Park St, Dallas,TX,75001 +193603,AA Batteries (4-pack),1,3.84,2019-04-30 19:45:00,58 5th St, San Francisco,CA,94016 +193604,USB-C Charging Cable,1,11.95,2019-04-06 05:34:00,830 Lakeview St, Dallas,TX,75001 +193605,ThinkPad Laptop,1,999.99,2019-04-02 16:16:00,875 North St, Boston,MA,02215 +193606,Wired Headphones,1,11.99,2019-04-02 16:13:00,957 Ridge St, New York City,NY,10001 +193607,Google Phone,1,600.0,2019-04-08 11:42:00,94 Washington St, Los Angeles,CA,90001 +193608,Apple Airpods Headphones,1,150.0,2019-04-05 21:18:00,856 1st St, San Francisco,CA,94016 +193609,Apple Airpods Headphones,1,150.0,2019-04-23 18:53:00,408 Elm St, Dallas,TX,75001 +193610,Bose SoundSport Headphones,1,99.99,2019-04-16 22:59:00,800 River St, Dallas,TX,75001 +193611,Vareebadd Phone,1,400.0,2019-04-01 11:30:00,317 11th St, Atlanta,GA,30301 +193612,AA Batteries (4-pack),1,3.84,2019-04-29 23:41:00,892 9th St, San Francisco,CA,94016 +193613,AA Batteries (4-pack),1,3.84,2019-04-14 15:18:00,283 11th St, New York City,NY,10001 +193614,AA Batteries (4-pack),1,3.84,2019-04-30 15:41:00,669 Jackson St, Los Angeles,CA,90001 +193615,Vareebadd Phone,1,400.0,2019-04-02 17:24:00,546 Lake St, San Francisco,CA,94016 +193615,Bose SoundSport Headphones,1,99.99,2019-04-02 17:24:00,546 Lake St, San Francisco,CA,94016 +193616,Lightning Charging Cable,1,14.95,2019-04-06 18:03:00,440 Meadow St, Boston,MA,02215 +193616,AA Batteries (4-pack),2,3.84,2019-04-06 18:03:00,440 Meadow St, Boston,MA,02215 +193617,Flatscreen TV,1,300.0,2019-04-30 18:41:00,828 12th St, Portland,OR,97035 +193618,Lightning Charging Cable,1,14.95,2019-04-27 23:52:00,526 1st St, Atlanta,GA,30301 +193619,Wired Headphones,1,11.99,2019-04-01 10:36:00,150 13th St, Atlanta,GA,30301 +193620,AAA Batteries (4-pack),1,2.99,2019-04-20 14:51:00,140 Cherry St, Atlanta,GA,30301 +193621,20in Monitor,1,109.99,2019-04-01 07:21:00,728 Highland St, Boston,MA,02215 +193622,AA Batteries (4-pack),1,3.84,2019-04-23 17:27:00,326 Cherry St, San Francisco,CA,94016 +193623,27in 4K Gaming Monitor,1,389.99,2019-04-17 12:35:00,719 14th St, San Francisco,CA,94016 +193624,AA Batteries (4-pack),1,3.84,2019-04-25 10:46:00,516 Meadow St, New York City,NY,10001 +193625,Apple Airpods Headphones,1,150.0,2019-04-09 08:23:00,846 Ridge St, New York City,NY,10001 +193626,27in FHD Monitor,1,149.99,2019-04-12 18:23:00,318 8th St, New York City,NY,10001 +193627,Wired Headphones,1,11.99,2019-04-10 22:21:00,46 Meadow St, Atlanta,GA,30301 +193628,Bose SoundSport Headphones,1,99.99,2019-04-03 14:16:00,276 5th St, Portland,ME,04101 +193629,27in 4K Gaming Monitor,1,389.99,2019-04-06 19:54:00,879 West St, Boston,MA,02215 +193630,Lightning Charging Cable,1,14.95,2019-04-12 20:45:00,582 Lincoln St, San Francisco,CA,94016 +193631,Google Phone,1,600.0,2019-04-11 10:59:00,963 Center St, Portland,OR,97035 +193631,USB-C Charging Cable,1,11.95,2019-04-11 10:59:00,963 Center St, Portland,OR,97035 +193632,AAA Batteries (4-pack),1,2.99,2019-04-28 09:52:00,280 Main St, Portland,OR,97035 +193633,Bose SoundSport Headphones,1,99.99,2019-04-01 13:51:00,109 Meadow St, Los Angeles,CA,90001 +193634,ThinkPad Laptop,1,999.99,2019-04-05 19:15:00,546 Hickory St, New York City,NY,10001 +193635,USB-C Charging Cable,1,11.95,2019-04-04 00:58:00,656 Ridge St, Portland,OR,97035 +193636,USB-C Charging Cable,1,11.95,2019-04-13 08:01:00,448 River St, Los Angeles,CA,90001 +193637,USB-C Charging Cable,1,11.95,2019-04-25 21:44:00,891 11th St, Los Angeles,CA,90001 +193638,Apple Airpods Headphones,1,150.0,2019-04-24 20:01:00,129 Cedar St, San Francisco,CA,94016 +193639,Apple Airpods Headphones,1,150.0,2019-04-01 18:54:00,977 Main St, New York City,NY,10001 +193640,34in Ultrawide Monitor,1,379.99,2019-04-27 18:04:00,667 13th St, Portland,OR,97035 +193640,Wired Headphones,1,11.99,2019-04-27 18:04:00,667 13th St, Portland,OR,97035 +193641,Bose SoundSport Headphones,1,99.99,2019-04-01 11:46:00,775 5th St, Los Angeles,CA,90001 +193642,Wired Headphones,1,11.99,2019-04-21 14:20:00,922 6th St, Boston,MA,02215 +193643,iPhone,1,700.0,2019-04-04 09:04:00,163 7th St, Atlanta,GA,30301 +193643,Lightning Charging Cable,1,14.95,2019-04-04 09:04:00,163 7th St, Atlanta,GA,30301 +193643,Apple Airpods Headphones,1,150.0,2019-04-04 09:04:00,163 7th St, Atlanta,GA,30301 +193644,27in 4K Gaming Monitor,1,389.99,2019-04-13 18:54:00,739 Main St, New York City,NY,10001 +193645,AAA Batteries (4-pack),2,2.99,2019-04-24 17:01:00,665 River St, Seattle,WA,98101 +193646,USB-C Charging Cable,1,11.95,2019-04-18 21:08:00,331 Madison St, San Francisco,CA,94016 +193647,Apple Airpods Headphones,1,150.0,2019-04-12 03:03:00,452 Park St, San Francisco,CA,94016 +193647,AAA Batteries (4-pack),1,2.99,2019-04-12 03:03:00,452 Park St, San Francisco,CA,94016 +193648,AAA Batteries (4-pack),2,2.99,2019-04-13 10:27:00,317 North St, Boston,MA,02215 +193649,Wired Headphones,1,11.99,2019-04-07 17:07:00,230 Adams St, New York City,NY,10001 +193650,AA Batteries (4-pack),3,3.84,2019-04-04 12:16:00,139 Church St, San Francisco,CA,94016 +193651,27in FHD Monitor,1,149.99,2019-04-15 19:38:00,849 13th St, San Francisco,CA,94016 +193652,AAA Batteries (4-pack),1,2.99,2019-04-10 22:36:00,989 13th St, San Francisco,CA,94016 +193653,Google Phone,1,600.0,2019-04-21 09:29:00,168 Chestnut St, Los Angeles,CA,90001 +193653,USB-C Charging Cable,2,11.95,2019-04-21 09:29:00,168 Chestnut St, Los Angeles,CA,90001 +193654,27in FHD Monitor,1,149.99,2019-04-04 16:19:00,978 7th St, Portland,OR,97035 +193655,USB-C Charging Cable,1,11.95,2019-04-06 14:10:00,921 9th St, San Francisco,CA,94016 +193656,USB-C Charging Cable,1,11.95,2019-04-15 08:48:00,450 Walnut St, Los Angeles,CA,90001 +193657,Lightning Charging Cable,1,14.95,2019-04-22 16:15:00,813 8th St, Los Angeles,CA,90001 +193658,Apple Airpods Headphones,1,150.0,2019-04-10 10:02:00,325 1st St, San Francisco,CA,94016 +193659,Lightning Charging Cable,2,14.95,2019-04-02 07:41:00,366 Sunset St, Portland,OR,97035 +193660,LG Washing Machine,1,600.0,2019-04-07 16:01:00,903 Main St, New York City,NY,10001 +193661,27in 4K Gaming Monitor,1,389.99,2019-04-18 01:15:00,900 Forest St, Atlanta,GA,30301 +193662,AAA Batteries (4-pack),1,2.99,2019-04-16 22:33:00,486 Willow St, Portland,OR,97035 +193663,Bose SoundSport Headphones,1,99.99,2019-04-25 14:24:00,914 13th St, Boston,MA,02215 +193664,Lightning Charging Cable,1,14.95,2019-04-19 12:59:00,953 River St, New York City,NY,10001 +193665,ThinkPad Laptop,1,999.99,2019-04-25 22:38:00,651 1st St, Portland,OR,97035 +193666,27in 4K Gaming Monitor,1,389.99,2019-04-29 20:00:00,783 River St, Boston,MA,02215 +193667,AA Batteries (4-pack),1,3.84,2019-04-15 20:23:00,711 Jackson St, Boston,MA,02215 +193668,AAA Batteries (4-pack),2,2.99,2019-04-29 16:02:00,677 Park St, Dallas,TX,75001 +193669,AA Batteries (4-pack),1,3.84,2019-04-30 06:47:00,359 Washington St, Austin,TX,73301 +193670,Bose SoundSport Headphones,1,99.99,2019-04-07 01:48:00,470 8th St, Boston,MA,02215 +193671,iPhone,1,700.0,2019-04-02 20:18:00,346 Hill St, Austin,TX,73301 +193672,AA Batteries (4-pack),2,3.84,2019-04-23 18:58:00,363 Pine St, San Francisco,CA,94016 +193673,USB-C Charging Cable,1,11.95,2019-04-28 16:15:00,220 11th St, Boston,MA,02215 +193674,Wired Headphones,1,11.99,2019-04-03 19:39:00,647 10th St, Los Angeles,CA,90001 +193675,AA Batteries (4-pack),2,3.84,2019-04-01 19:49:00,221 River St, Boston,MA,02215 +193676,AAA Batteries (4-pack),1,2.99,2019-04-11 13:34:00,323 11th St, Portland,OR,97035 +193677,USB-C Charging Cable,1,11.95,2019-04-01 18:38:00,313 Sunset St, New York City,NY,10001 +193678,Apple Airpods Headphones,1,150.0,2019-04-27 21:04:00,433 Walnut St, Seattle,WA,98101 +193679,USB-C Charging Cable,1,11.95,2019-04-01 11:37:00,908 Elm St, San Francisco,CA,94016 +193680,USB-C Charging Cable,2,11.95,2019-04-14 20:58:00,589 Cherry St, Austin,TX,73301 +193681,Wired Headphones,1,11.99,2019-04-29 16:12:00,50 Madison St, Seattle,WA,98101 +193682,Wired Headphones,1,11.99,2019-04-26 14:08:00,352 Center St, Boston,MA,02215 +193683,AA Batteries (4-pack),2,3.84,2019-04-07 11:35:00,616 10th St, Boston,MA,02215 +193684,Lightning Charging Cable,1,14.95,2019-04-16 18:45:00,856 Main St, Seattle,WA,98101 +193685,Bose SoundSport Headphones,1,99.99,2019-04-29 18:37:00,246 12th St, San Francisco,CA,94016 +193686,USB-C Charging Cable,1,11.95,2019-04-06 16:21:00,372 West St, Los Angeles,CA,90001 +193687,Bose SoundSport Headphones,1,99.99,2019-04-15 18:54:00,620 Walnut St, San Francisco,CA,94016 +193688,AA Batteries (4-pack),1,3.84,2019-04-06 23:28:00,928 Lakeview St, Dallas,TX,75001 +193689,iPhone,1,700.0,2019-04-17 10:54:00,619 Hill St, Boston,MA,02215 +193690,Bose SoundSport Headphones,1,99.99,2019-04-13 00:26:00,542 14th St, San Francisco,CA,94016 +193691,Wired Headphones,1,11.99,2019-04-23 15:07:00,177 West St, New York City,NY,10001 +193692,34in Ultrawide Monitor,1,379.99,2019-04-17 19:20:00,574 Jackson St, New York City,NY,10001 +193693,AAA Batteries (4-pack),1,2.99,2019-04-02 05:33:00,656 7th St, Los Angeles,CA,90001 +193694,Lightning Charging Cable,1,14.95,2019-04-18 13:20:00,17 Cherry St, Los Angeles,CA,90001 +193695,Wired Headphones,1,11.99,2019-04-23 20:58:00,506 Cedar St, Boston,MA,02215 +193696,Lightning Charging Cable,1,14.95,2019-04-21 15:02:00,722 7th St, Atlanta,GA,30301 +193697,AA Batteries (4-pack),1,3.84,2019-04-06 16:37:00,80 13th St, Seattle,WA,98101 +193698,iPhone,1,700.0,2019-04-01 11:30:00,310 Madison St, San Francisco,CA,94016 +193699,Wired Headphones,1,11.99,2019-04-01 16:49:00,182 Willow St, Los Angeles,CA,90001 +193700,Apple Airpods Headphones,1,150.0,2019-04-14 10:06:00,61 Jackson St, Boston,MA,02215 +193701,USB-C Charging Cable,1,11.95,2019-04-11 07:17:00,337 Meadow St, Dallas,TX,75001 +193702,27in FHD Monitor,1,149.99,2019-04-02 12:37:00,832 Highland St, New York City,NY,10001 +193703,AAA Batteries (4-pack),1,2.99,2019-04-30 13:01:00,133 1st St, Boston,MA,02215 +193704,AA Batteries (4-pack),2,3.84,2019-04-28 11:58:00,647 Ridge St, Los Angeles,CA,90001 +193705,ThinkPad Laptop,1,999.99,2019-04-16 06:29:00,690 Lake St, Los Angeles,CA,90001 +193706,27in 4K Gaming Monitor,1,389.99,2019-04-25 21:21:00,909 Cedar St, Los Angeles,CA,90001 +193707,20in Monitor,1,109.99,2019-04-14 15:06:00,61 8th St, San Francisco,CA,94016 +193708,27in FHD Monitor,1,149.99,2019-04-10 10:37:00,217 Meadow St, Los Angeles,CA,90001 +193709,AA Batteries (4-pack),1,3.84,2019-04-09 12:06:00,701 Lincoln St, Boston,MA,02215 +193710,AAA Batteries (4-pack),2,2.99,2019-04-11 12:52:00,235 Cedar St, Boston,MA,02215 +193711,Lightning Charging Cable,1,14.95,2019-04-25 16:51:00,767 Cherry St, Austin,TX,73301 +193712,USB-C Charging Cable,1,11.95,2019-04-16 22:09:00,656 Chestnut St, Los Angeles,CA,90001 +193713,Flatscreen TV,1,300.0,2019-04-21 18:39:00,175 Willow St, Atlanta,GA,30301 +193714,USB-C Charging Cable,2,11.95,2019-04-23 13:57:00,173 Willow St, Seattle,WA,98101 +193715,ThinkPad Laptop,1,999.99,2019-04-29 15:11:00,765 Jackson St, New York City,NY,10001 +193716,Wired Headphones,1,11.99,2019-04-29 21:46:00,706 Maple St, Atlanta,GA,30301 +193717,27in FHD Monitor,1,149.99,2019-04-27 17:49:00,592 Dogwood St, Los Angeles,CA,90001 +193718,USB-C Charging Cable,1,11.95,2019-04-11 15:17:00,917 1st St, Los Angeles,CA,90001 +193719,Lightning Charging Cable,1,14.95,2019-04-29 22:21:00,287 Ridge St, New York City,NY,10001 +193720,Apple Airpods Headphones,1,150.0,2019-04-09 14:37:00,156 6th St, Dallas,TX,75001 +193721,Lightning Charging Cable,1,14.95,2019-04-20 19:00:00,69 Meadow St, San Francisco,CA,94016 +193722,AA Batteries (4-pack),1,3.84,2019-04-14 22:47:00,909 Park St, Boston,MA,02215 +193723,27in 4K Gaming Monitor,1,389.99,2019-04-05 20:48:00,535 4th St, Los Angeles,CA,90001 +193724,Apple Airpods Headphones,1,150.0,2019-04-18 19:20:00,776 Chestnut St, Austin,TX,73301 +193725,AA Batteries (4-pack),1,3.84,2019-04-04 07:13:00,516 Hickory St, New York City,NY,10001 +193726,27in 4K Gaming Monitor,1,389.99,2019-04-13 10:32:00,809 Washington St, San Francisco,CA,94016 +193727,ThinkPad Laptop,1,999.99,2019-04-29 16:28:00,21 Walnut St, San Francisco,CA,94016 +193728,USB-C Charging Cable,1,11.95,2019-04-19 16:50:00,731 Washington St, Los Angeles,CA,90001 +193729,Wired Headphones,1,11.99,2019-04-05 19:14:00,433 8th St, Portland,OR,97035 +193730,ThinkPad Laptop,1,999.99,2019-04-12 15:42:00,102 Ridge St, Atlanta,GA,30301 +193731,Lightning Charging Cable,1,14.95,2019-04-10 17:34:00,278 11th St, San Francisco,CA,94016 +193732,AAA Batteries (4-pack),1,2.99,2019-04-17 15:08:00,430 Sunset St, Portland,OR,97035 +193733,Google Phone,1,600.0,2019-04-30 22:41:00,464 Chestnut St, Austin,TX,73301 +193734,Apple Airpods Headphones,1,150.0,2019-04-23 10:03:00,365 Washington St, San Francisco,CA,94016 +193735,AA Batteries (4-pack),1,3.84,2019-04-12 16:36:00,510 Madison St, Austin,TX,73301 +193736,Flatscreen TV,1,300.0,2019-04-27 13:55:00,917 5th St, Austin,TX,73301 +193737,AAA Batteries (4-pack),2,2.99,2019-04-26 21:42:00,738 11th St, Los Angeles,CA,90001 +193738,iPhone,1,700.0,2019-04-05 09:50:00,707 Johnson St, Boston,MA,02215 +193739,USB-C Charging Cable,1,11.95,2019-04-08 06:32:00,414 12th St, San Francisco,CA,94016 +193740,27in FHD Monitor,1,149.99,2019-04-28 08:17:00,491 Spruce St, Portland,OR,97035 +193741,Google Phone,1,600.0,2019-04-01 20:17:00,779 Adams St, Boston,MA,02215 +193742,Wired Headphones,1,11.99,2019-04-05 10:22:00,450 Washington St, Austin,TX,73301 +193743,Bose SoundSport Headphones,1,99.99,2019-04-22 11:29:00,808 Pine St, New York City,NY,10001 +193744,34in Ultrawide Monitor,1,379.99,2019-04-08 16:12:00,128 Pine St, Boston,MA,02215 +193745,USB-C Charging Cable,1,11.95,2019-04-07 01:35:00,789 Jackson St, New York City,NY,10001 +193746,AAA Batteries (4-pack),4,2.99,2019-04-14 19:47:00,989 Elm St, New York City,NY,10001 +193747,Vareebadd Phone,1,400.0,2019-04-21 15:29:00,883 2nd St, Seattle,WA,98101 +193748,Flatscreen TV,1,300.0,2019-04-16 18:33:00,95 4th St, San Francisco,CA,94016 +193749,Apple Airpods Headphones,1,150.0,2019-04-10 00:31:00,842 Johnson St, Los Angeles,CA,90001 +193750,Wired Headphones,1,11.99,2019-04-13 00:44:00,7 Washington St, Boston,MA,02215 +193751,27in 4K Gaming Monitor,1,389.99,2019-04-22 13:42:00,24 West St, New York City,NY,10001 +193752,Lightning Charging Cable,1,14.95,2019-04-25 10:47:00,413 Highland St, Boston,MA,02215 +193753,ThinkPad Laptop,1,999.99,2019-04-09 14:47:00,251 Dogwood St, Atlanta,GA,30301 +193754,Lightning Charging Cable,1,14.95,2019-04-08 18:56:00,417 Church St, Atlanta,GA,30301 +193755,Lightning Charging Cable,1,14.95,2019-04-24 15:05:00,900 Church St, Los Angeles,CA,90001 +193756,Lightning Charging Cable,1,14.95,2019-04-22 22:04:00,124 6th St, Los Angeles,CA,90001 +193757,AA Batteries (4-pack),2,3.84,2019-04-09 05:37:00,10 Adams St, Boston,MA,02215 +193758,Apple Airpods Headphones,1,150.0,2019-04-23 10:34:00,35 Walnut St, Dallas,TX,75001 +193759,USB-C Charging Cable,1,11.95,2019-04-08 01:11:00,985 Park St, San Francisco,CA,94016 +193760,Lightning Charging Cable,1,14.95,2019-04-15 12:57:00,850 Hickory St, Los Angeles,CA,90001 +193761,Apple Airpods Headphones,1,150.0,2019-04-13 20:23:00,971 Walnut St, Portland,OR,97035 +193762,AAA Batteries (4-pack),1,2.99,2019-04-28 01:13:00,108 Lakeview St, Atlanta,GA,30301 +193763,27in FHD Monitor,1,149.99,2019-04-17 08:15:00,450 13th St, Boston,MA,02215 +193764,AA Batteries (4-pack),1,3.84,2019-04-24 14:43:00,866 Spruce St, San Francisco,CA,94016 +193765,Google Phone,1,600.0,2019-04-21 12:04:00,146 Cherry St, San Francisco,CA,94016 +193766,iPhone,1,700.0,2019-04-20 15:23:00,435 Washington St, Los Angeles,CA,90001 +193767,Apple Airpods Headphones,1,150.0,2019-04-17 11:47:00,372 Main St, Boston,MA,02215 +193768,Lightning Charging Cable,1,14.95,2019-04-26 13:45:00,12 Church St, New York City,NY,10001 +193769,USB-C Charging Cable,1,11.95,2019-04-07 21:57:00,250 Maple St, Atlanta,GA,30301 +193770,AA Batteries (4-pack),1,3.84,2019-04-08 15:54:00,185 Madison St, Dallas,TX,75001 +193771,AAA Batteries (4-pack),1,2.99,2019-04-24 10:27:00,495 12th St, Austin,TX,73301 +193772,Bose SoundSport Headphones,1,99.99,2019-04-24 22:19:00,250 South St, San Francisco,CA,94016 +193773,USB-C Charging Cable,1,11.95,2019-04-04 12:55:00,266 2nd St, Los Angeles,CA,90001 +193774,Google Phone,1,600.0,2019-04-16 12:35:00,655 Spruce St, Seattle,WA,98101 +193775,27in FHD Monitor,1,149.99,2019-04-18 13:42:00,71 Jefferson St, San Francisco,CA,94016 +193776,Wired Headphones,1,11.99,2019-04-04 19:14:00,339 Forest St, Austin,TX,73301 +193777,LG Washing Machine,1,600.0,2019-04-08 10:51:00,94 Sunset St, New York City,NY,10001 +193778,USB-C Charging Cable,1,11.95,2019-04-18 15:58:00,817 14th St, Los Angeles,CA,90001 +193779,USB-C Charging Cable,1,11.95,2019-04-06 15:32:00,207 River St, Boston,MA,02215 +193780,Lightning Charging Cable,1,14.95,2019-04-25 07:41:00,146 Cedar St, Atlanta,GA,30301 +193781,Lightning Charging Cable,1,14.95,2019-04-12 16:58:00,166 1st St, Seattle,WA,98101 +193782,USB-C Charging Cable,1,11.95,2019-04-16 11:23:00,978 Dogwood St, Austin,TX,73301 +193783,AAA Batteries (4-pack),2,2.99,2019-04-24 14:03:00,427 Park St, Portland,OR,97035 +193784,Flatscreen TV,1,300.0,2019-04-24 21:25:00,985 North St, San Francisco,CA,94016 +193785,Apple Airpods Headphones,1,150.0,2019-04-28 16:50:00,322 Forest St, Boston,MA,02215 +193786,USB-C Charging Cable,1,11.95,2019-04-09 12:34:00,526 Elm St, San Francisco,CA,94016 +193787,iPhone,1,700.0,2019-04-27 08:15:00,29 Willow St, Los Angeles,CA,90001 +193787,Apple Airpods Headphones,1,150.0,2019-04-27 08:15:00,29 Willow St, Los Angeles,CA,90001 +193787,Wired Headphones,1,11.99,2019-04-27 08:15:00,29 Willow St, Los Angeles,CA,90001 +193788,Wired Headphones,1,11.99,2019-04-21 03:29:00,357 1st St, Los Angeles,CA,90001 +193789,Google Phone,1,600.0,2019-04-21 22:22:00,608 Chestnut St, Seattle,WA,98101 +193789,USB-C Charging Cable,1,11.95,2019-04-21 22:22:00,608 Chestnut St, Seattle,WA,98101 +193790,USB-C Charging Cable,1,11.95,2019-04-09 09:58:00,806 Lake St, Seattle,WA,98101 +193791,iPhone,1,700.0,2019-04-12 13:31:00,761 9th St, Seattle,WA,98101 +193792,AA Batteries (4-pack),3,3.84,2019-04-14 01:53:00,462 Church St, San Francisco,CA,94016 +193793,Google Phone,1,600.0,2019-04-20 17:55:00,407 Sunset St, Austin,TX,73301 +193794,Bose SoundSport Headphones,1,99.99,2019-04-25 01:19:00,122 9th St, Atlanta,GA,30301 +193795,34in Ultrawide Monitor,1,379.99,2019-04-27 15:51:00,927 10th St, San Francisco,CA,94016 +193796,Macbook Pro Laptop,1,1700.0,2019-04-14 11:17:00,649 River St, Austin,TX,73301 +193797,Lightning Charging Cable,1,14.95,2019-04-16 21:46:00,513 12th St, Portland,OR,97035 +193798,Apple Airpods Headphones,1,150.0,2019-04-08 16:30:00,362 Lake St, Atlanta,GA,30301 +193799,USB-C Charging Cable,1,11.95,2019-04-28 05:33:00,519 Elm St, New York City,NY,10001 +193800,Google Phone,1,600.0,2019-04-09 09:17:00,479 Wilson St, Los Angeles,CA,90001 +193801,iPhone,1,700.0,2019-04-05 15:51:00,258 13th St, Los Angeles,CA,90001 +193802,Apple Airpods Headphones,1,150.0,2019-04-04 08:49:00,598 Walnut St, Portland,OR,97035 +193803,Lightning Charging Cable,1,14.95,2019-04-02 09:45:00,145 River St, Atlanta,GA,30301 +193804,AA Batteries (4-pack),1,3.84,2019-04-28 00:48:00,765 Lincoln St, Dallas,TX,75001 +193805,USB-C Charging Cable,1,11.95,2019-04-03 16:32:00,816 Lakeview St, Portland,OR,97035 +193806,Macbook Pro Laptop,1,1700.0,2019-04-24 12:06:00,631 Pine St, New York City,NY,10001 +193807,Apple Airpods Headphones,1,150.0,2019-04-04 10:17:00,763 10th St, New York City,NY,10001 +193808,Vareebadd Phone,1,400.0,2019-04-19 20:24:00,33 Washington St, Boston,MA,02215 +193809,Macbook Pro Laptop,1,1700.0,2019-04-11 15:29:00,245 Dogwood St, Los Angeles,CA,90001 +193810,Bose SoundSport Headphones,1,99.99,2019-04-08 20:56:00,37 12th St, Boston,MA,02215 +193811,27in 4K Gaming Monitor,1,389.99,2019-04-13 11:23:00,566 Church St, Los Angeles,CA,90001 +193812,34in Ultrawide Monitor,1,379.99,2019-04-03 18:41:00,277 Lincoln St, Portland,OR,97035 +193813,Lightning Charging Cable,1,14.95,2019-04-05 19:50:00,919 6th St, New York City,NY,10001 +193814,Bose SoundSport Headphones,1,99.99,2019-04-07 14:04:00,978 2nd St, Seattle,WA,98101 +193815,Macbook Pro Laptop,1,1700.0,2019-04-03 23:47:00,614 Washington St, San Francisco,CA,94016 +193816,Wired Headphones,1,11.99,2019-04-11 15:18:00,259 Spruce St, Atlanta,GA,30301 +193817,Bose SoundSport Headphones,1,99.99,2019-04-17 15:45:00,988 Spruce St, New York City,NY,10001 +193818,Lightning Charging Cable,1,14.95,2019-04-17 06:01:00,111 4th St, Los Angeles,CA,90001 +193819,Apple Airpods Headphones,1,150.0,2019-04-02 10:47:00,404 10th St, Boston,MA,02215 +193820,Wired Headphones,1,11.99,2019-04-03 05:45:00,676 14th St, Los Angeles,CA,90001 +193821,Bose SoundSport Headphones,1,99.99,2019-04-28 15:44:00,673 Highland St, Boston,MA,02215 +193822,USB-C Charging Cable,1,11.95,2019-04-19 15:17:00,590 Park St, Los Angeles,CA,90001 +193823,Wired Headphones,1,11.99,2019-04-01 07:49:00,737 9th St, San Francisco,CA,94016 +193824,Macbook Pro Laptop,1,1700.0,2019-04-14 19:01:00,359 9th St, San Francisco,CA,94016 +193825,AAA Batteries (4-pack),2,2.99,2019-04-30 22:20:00,336 10th St, San Francisco,CA,94016 +193826,USB-C Charging Cable,1,11.95,2019-04-17 19:07:00,548 2nd St, New York City,NY,10001 +193827,Lightning Charging Cable,1,14.95,2019-04-06 11:55:00,763 Lakeview St, San Francisco,CA,94016 +193828,AAA Batteries (4-pack),1,2.99,2019-04-30 06:42:00,698 4th St, San Francisco,CA,94016 +193829,AA Batteries (4-pack),1,3.84,2019-04-04 16:43:00,563 Park St, Seattle,WA,98101 +193830,Lightning Charging Cable,1,14.95,2019-04-21 20:43:00,912 Sunset St, New York City,NY,10001 +193831,27in FHD Monitor,1,149.99,2019-04-13 18:49:00,113 Church St, Atlanta,GA,30301 +193832,Lightning Charging Cable,1,14.95,2019-04-04 18:28:00,239 Johnson St, New York City,NY,10001 +193833,34in Ultrawide Monitor,1,379.99,2019-04-06 09:40:00,413 Center St, Portland,ME,04101 +193834,34in Ultrawide Monitor,1,379.99,2019-04-26 13:20:00,688 Highland St, Atlanta,GA,30301 +193835,AA Batteries (4-pack),1,3.84,2019-04-13 14:57:00,921 13th St, San Francisco,CA,94016 +193836,Apple Airpods Headphones,1,150.0,2019-04-27 17:54:00,222 River St, New York City,NY,10001 +193837,Lightning Charging Cable,1,14.95,2019-04-10 09:06:00,638 Center St, Portland,OR,97035 +193838,Google Phone,1,600.0,2019-04-24 15:52:00,328 Walnut St, Los Angeles,CA,90001 +193839,Macbook Pro Laptop,1,1700.0,2019-04-05 14:46:00,984 Sunset St, San Francisco,CA,94016 +193840,Bose SoundSport Headphones,1,99.99,2019-04-23 17:07:00,634 River St, Austin,TX,73301 +193841,Bose SoundSport Headphones,1,99.99,2019-04-23 21:32:00,399 Washington St, Seattle,WA,98101 +193842,AA Batteries (4-pack),1,3.84,2019-04-27 19:55:00,624 Hill St, San Francisco,CA,94016 +193843,USB-C Charging Cable,1,11.95,2019-04-26 13:11:00,618 Chestnut St, New York City,NY,10001 +193844,USB-C Charging Cable,1,11.95,2019-04-13 13:09:00,71 Dogwood St, Atlanta,GA,30301 +193845,USB-C Charging Cable,1,11.95,2019-04-22 18:11:00,901 Church St, Atlanta,GA,30301 +193846,AA Batteries (4-pack),2,3.84,2019-04-20 09:17:00,648 Main St, San Francisco,CA,94016 +193847,AA Batteries (4-pack),1,3.84,2019-04-10 10:45:00,487 North St, San Francisco,CA,94016 +193848,AA Batteries (4-pack),2,3.84,2019-04-10 22:30:00,73 Washington St, Boston,MA,02215 +193849,Apple Airpods Headphones,1,150.0,2019-04-20 06:17:00,61 Forest St, San Francisco,CA,94016 +193849,27in 4K Gaming Monitor,1,389.99,2019-04-20 06:17:00,61 Forest St, San Francisco,CA,94016 +193850,Bose SoundSport Headphones,1,99.99,2019-04-21 13:33:00,320 13th St, Atlanta,GA,30301 +193851,AAA Batteries (4-pack),1,2.99,2019-04-01 08:09:00,363 Forest St, Los Angeles,CA,90001 +193852,AAA Batteries (4-pack),1,2.99,2019-04-12 20:49:00,498 Chestnut St, Los Angeles,CA,90001 +193853,USB-C Charging Cable,1,11.95,2019-04-25 10:38:00,906 Hickory St, New York City,NY,10001 +193854,27in FHD Monitor,1,149.99,2019-04-17 17:30:00,275 Walnut St, Portland,ME,04101 +193855,27in FHD Monitor,1,149.99,2019-04-25 09:21:00,145 Jefferson St, New York City,NY,10001 +193856,AAA Batteries (4-pack),2,2.99,2019-04-04 12:08:00,173 Park St, San Francisco,CA,94016 +193857,USB-C Charging Cable,1,11.95,2019-04-30 19:45:00,573 North St, Los Angeles,CA,90001 +193858,Lightning Charging Cable,1,14.95,2019-04-23 17:20:00,310 Cedar St, Austin,TX,73301 +193859,Lightning Charging Cable,1,14.95,2019-04-18 21:56:00,839 Cedar St, New York City,NY,10001 +193860,Google Phone,1,600.0,2019-04-17 12:07:00,612 10th St, Portland,OR,97035 +193860,USB-C Charging Cable,1,11.95,2019-04-17 12:07:00,612 10th St, Portland,OR,97035 +193861,AA Batteries (4-pack),1,3.84,2019-04-04 11:58:00,44 Wilson St, Seattle,WA,98101 +193862,Lightning Charging Cable,1,14.95,2019-04-06 23:53:00,464 Forest St, Seattle,WA,98101 +193863,Google Phone,1,600.0,2019-04-12 11:18:00,79 12th St, Dallas,TX,75001 +193864,Wired Headphones,1,11.99,2019-04-30 20:47:00,371 Elm St, Portland,OR,97035 +193865,Bose SoundSport Headphones,1,99.99,2019-04-17 13:31:00,383 Cherry St, Dallas,TX,75001 +193865,AA Batteries (4-pack),1,3.84,2019-04-17 13:31:00,383 Cherry St, Dallas,TX,75001 +193866,Lightning Charging Cable,1,14.95,2019-04-09 11:49:00,633 Lake St, San Francisco,CA,94016 +193867,Lightning Charging Cable,1,14.95,2019-04-16 10:11:00,773 Hill St, New York City,NY,10001 +193868,Wired Headphones,1,11.99,2019-04-19 10:34:00,491 West St, San Francisco,CA,94016 +193869,Apple Airpods Headphones,1,150.0,2019-04-28 12:14:00,807 Cherry St, Los Angeles,CA,90001 +193870,Apple Airpods Headphones,1,150.0,2019-04-22 03:00:00,899 Willow St, New York City,NY,10001 +193871,AA Batteries (4-pack),1,3.84,2019-04-15 22:41:00,588 Lake St, Seattle,WA,98101 +193872,USB-C Charging Cable,1,11.95,2019-04-09 18:22:00,455 River St, San Francisco,CA,94016 +193873,AA Batteries (4-pack),2,3.84,2019-04-03 18:52:00,789 Main St, New York City,NY,10001 +193874,Wired Headphones,1,11.99,2019-04-23 13:44:00,705 Ridge St, Portland,ME,04101 +193875,27in FHD Monitor,1,149.99,2019-04-12 19:20:00,261 South St, San Francisco,CA,94016 +193876,Lightning Charging Cable,1,14.95,2019-04-15 08:59:00,505 Spruce St, Austin,TX,73301 +193877,Wired Headphones,2,11.99,2019-04-23 01:39:00,370 9th St, San Francisco,CA,94016 +193878,AA Batteries (4-pack),1,3.84,2019-04-25 14:02:00,369 8th St, Portland,ME,04101 +193878,AAA Batteries (4-pack),1,2.99,2019-04-25 14:02:00,369 8th St, Portland,ME,04101 +193879,Apple Airpods Headphones,1,150.0,2019-04-25 21:40:00,19 Lakeview St, Los Angeles,CA,90001 +193880,Wired Headphones,1,11.99,2019-04-22 16:26:00,153 Jackson St, Dallas,TX,75001 +193881,AA Batteries (4-pack),2,3.84,2019-04-30 11:28:00,282 12th St, New York City,NY,10001 +193882,USB-C Charging Cable,1,11.95,2019-04-18 20:16:00,494 Jefferson St, Boston,MA,02215 +193883,Lightning Charging Cable,1,14.95,2019-04-14 08:17:00,693 Center St, San Francisco,CA,94016 +193884,27in 4K Gaming Monitor,1,389.99,2019-04-09 06:01:00,85 North St, San Francisco,CA,94016 +193885,Macbook Pro Laptop,1,1700.0,2019-04-16 08:47:00,837 6th St, Austin,TX,73301 +193886,AA Batteries (4-pack),1,3.84,2019-04-19 22:41:00,865 2nd St, Boston,MA,02215 +193887,Apple Airpods Headphones,1,150.0,2019-04-15 17:16:00,202 North St, San Francisco,CA,94016 +193888,Wired Headphones,1,11.99,2019-04-17 12:16:00,671 Park St, Seattle,WA,98101 +193889,Apple Airpods Headphones,1,150.0,2019-04-02 06:38:00,354 12th St, Boston,MA,02215 +193890,AAA Batteries (4-pack),1,2.99,2019-04-23 09:19:00,154 River St, San Francisco,CA,94016 +193891,AA Batteries (4-pack),2,3.84,2019-04-05 20:09:00,525 12th St, San Francisco,CA,94016 +193892,Wired Headphones,1,11.99,2019-04-27 10:20:00,998 Madison St, Atlanta,GA,30301 +193893,AA Batteries (4-pack),1,3.84,2019-04-19 13:38:00,320 Lincoln St, Boston,MA,02215 +193894,34in Ultrawide Monitor,1,379.99,2019-04-29 16:18:00,324 10th St, San Francisco,CA,94016 +193895,Apple Airpods Headphones,1,150.0,2019-04-19 10:35:00,847 Hickory St, Seattle,WA,98101 +193896,USB-C Charging Cable,1,11.95,2019-04-08 11:03:00,546 6th St, Austin,TX,73301 +193897,Macbook Pro Laptop,1,1700.0,2019-04-16 19:19:00,489 Chestnut St, Los Angeles,CA,90001 +193898,Apple Airpods Headphones,1,150.0,2019-04-21 15:38:00,679 North St, Portland,OR,97035 +193899,Bose SoundSport Headphones,1,99.99,2019-04-25 23:10:00,590 Ridge St, Dallas,TX,75001 +193900,USB-C Charging Cable,1,11.95,2019-04-10 10:36:00,105 14th St, New York City,NY,10001 +193901,Apple Airpods Headphones,1,150.0,2019-04-04 18:16:00,985 10th St, Boston,MA,02215 +193902,34in Ultrawide Monitor,1,379.99,2019-04-09 13:32:00,986 North St, New York City,NY,10001 +193903,iPhone,1,700.0,2019-04-06 11:40:00,335 12th St, Seattle,WA,98101 +193903,Apple Airpods Headphones,1,150.0,2019-04-06 11:40:00,335 12th St, Seattle,WA,98101 +193904,USB-C Charging Cable,1,11.95,2019-04-16 19:30:00,30 Lake St, Portland,OR,97035 +193905,USB-C Charging Cable,1,11.95,2019-04-08 09:45:00,707 5th St, Seattle,WA,98101 +193906,Apple Airpods Headphones,1,150.0,2019-04-16 20:06:00,109 Main St, New York City,NY,10001 +193907,Lightning Charging Cable,1,14.95,2019-04-28 22:31:00,695 West St, Los Angeles,CA,90001 +193908,Lightning Charging Cable,1,14.95,2019-04-04 11:58:00,991 Elm St, Boston,MA,02215 +193909,AA Batteries (4-pack),1,3.84,2019-04-26 14:21:00,274 Wilson St, Atlanta,GA,30301 +193910,AA Batteries (4-pack),1,3.84,2019-04-28 23:02:00,816 Elm St, Los Angeles,CA,90001 +193911,Lightning Charging Cable,1,14.95,2019-04-21 00:03:00,459 Maple St, Los Angeles,CA,90001 +193912,34in Ultrawide Monitor,1,379.99,2019-04-06 09:03:00,230 Washington St, New York City,NY,10001 +193913,34in Ultrawide Monitor,1,379.99,2019-04-04 21:31:00,117 Main St, Boston,MA,02215 +193914,USB-C Charging Cable,1,11.95,2019-04-20 10:23:00,63 Center St, San Francisco,CA,94016 +193915,USB-C Charging Cable,1,11.95,2019-04-15 12:30:00,787 North St, Atlanta,GA,30301 +193916,20in Monitor,1,109.99,2019-04-18 12:59:00,653 Cherry St, Dallas,TX,75001 +193917,Flatscreen TV,1,300.0,2019-04-01 21:41:00,601 Cherry St, San Francisco,CA,94016 +193918,27in FHD Monitor,1,149.99,2019-04-10 19:21:00,716 Madison St, Seattle,WA,98101 +193919,AAA Batteries (4-pack),1,2.99,2019-04-10 16:58:00,194 Hill St, Los Angeles,CA,90001 +193920,Apple Airpods Headphones,1,150.0,2019-04-22 12:22:00,376 Sunset St, San Francisco,CA,94016 +193921,AAA Batteries (4-pack),1,2.99,2019-04-07 10:07:00,984 13th St, San Francisco,CA,94016 +193922,27in FHD Monitor,1,149.99,2019-04-19 21:32:00,445 Jackson St, San Francisco,CA,94016 +193923,27in 4K Gaming Monitor,1,389.99,2019-04-23 18:38:00,65 6th St, San Francisco,CA,94016 +193924,Lightning Charging Cable,1,14.95,2019-04-27 19:05:00,52 Sunset St, Portland,OR,97035 +193925,AA Batteries (4-pack),1,3.84,2019-04-20 03:28:00,948 Hill St, Los Angeles,CA,90001 +193926,Apple Airpods Headphones,1,150.0,2019-04-05 00:58:00,977 Walnut St, Atlanta,GA,30301 +193927,iPhone,1,700.0,2019-04-09 21:10:00,680 North St, San Francisco,CA,94016 +193927,Apple Airpods Headphones,1,150.0,2019-04-09 21:10:00,680 North St, San Francisco,CA,94016 +193928,27in 4K Gaming Monitor,1,389.99,2019-04-09 18:02:00,233 Center St, San Francisco,CA,94016 +193929,Flatscreen TV,1,300.0,2019-04-17 10:07:00,147 2nd St, New York City,NY,10001 +193930,AA Batteries (4-pack),2,3.84,2019-04-09 08:30:00,540 Meadow St, New York City,NY,10001 +193931,Lightning Charging Cable,1,14.95,2019-04-11 17:01:00,248 13th St, Boston,MA,02215 +193932,Lightning Charging Cable,1,14.95,2019-04-30 01:10:00,118 Spruce St, San Francisco,CA,94016 +193933,iPhone,1,700.0,2019-04-12 11:53:00,172 Hill St, Austin,TX,73301 +193934,Bose SoundSport Headphones,1,99.99,2019-04-10 10:19:00,436 West St, New York City,NY,10001 +193935,USB-C Charging Cable,1,11.95,2019-04-15 14:59:00,706 Ridge St, San Francisco,CA,94016 +193936,AA Batteries (4-pack),2,3.84,2019-04-23 10:51:00,587 West St, San Francisco,CA,94016 +193937,USB-C Charging Cable,1,11.95,2019-04-20 19:35:00,345 Chestnut St, San Francisco,CA,94016 +193938,USB-C Charging Cable,1,11.95,2019-04-05 23:41:00,546 Center St, San Francisco,CA,94016 +193939,USB-C Charging Cable,1,11.95,2019-04-04 10:09:00,491 4th St, San Francisco,CA,94016 +193940,USB-C Charging Cable,1,11.95,2019-04-04 10:00:00,566 Lakeview St, Los Angeles,CA,90001 +193941,Lightning Charging Cable,1,14.95,2019-04-06 20:09:00,446 Sunset St, San Francisco,CA,94016 +193942,Wired Headphones,1,11.99,2019-04-24 21:06:00,468 Hill St, San Francisco,CA,94016 +193943,AA Batteries (4-pack),1,3.84,2019-04-18 22:53:00,682 10th St, Atlanta,GA,30301 +193944,Flatscreen TV,1,300.0,2019-04-24 10:46:00,261 Lake St, San Francisco,CA,94016 +193945,Lightning Charging Cable,2,14.95,2019-04-06 18:26:00,965 Elm St, San Francisco,CA,94016 +193946,27in 4K Gaming Monitor,1,389.99,2019-04-03 18:26:00,728 Church St, Boston,MA,02215 +193947,Apple Airpods Headphones,1,150.0,2019-04-20 19:18:00,874 Hill St, San Francisco,CA,94016 +193948,Bose SoundSport Headphones,1,99.99,2019-04-10 09:33:00,405 Madison St, Los Angeles,CA,90001 +193949,AAA Batteries (4-pack),4,2.99,2019-04-21 22:17:00,965 Main St, Boston,MA,02215 +193950,AAA Batteries (4-pack),3,2.99,2019-04-15 16:00:00,812 Meadow St, New York City,NY,10001 +193951,USB-C Charging Cable,1,11.95,2019-04-02 12:56:00,656 Adams St, Boston,MA,02215 +193952,LG Dryer,1,600.0,2019-04-15 12:08:00,548 Dogwood St, Dallas,TX,75001 +193953,Lightning Charging Cable,1,14.95,2019-04-04 13:56:00,493 Lincoln St, New York City,NY,10001 +193954,USB-C Charging Cable,1,11.95,2019-04-14 19:00:00,940 Jefferson St, San Francisco,CA,94016 +193955,Wired Headphones,1,11.99,2019-04-06 14:58:00,971 Highland St, San Francisco,CA,94016 +193956,Lightning Charging Cable,1,14.95,2019-04-21 06:07:00,970 Church St, San Francisco,CA,94016 +193957,Wired Headphones,1,11.99,2019-04-15 08:37:00,977 Center St, Seattle,WA,98101 +193958,AA Batteries (4-pack),3,3.84,2019-04-26 21:55:00,55 1st St, San Francisco,CA,94016 +193959,Wired Headphones,1,11.99,2019-04-29 08:41:00,429 Walnut St, Atlanta,GA,30301 +193960,Vareebadd Phone,1,400.0,2019-04-03 21:25:00,788 Madison St, Portland,ME,04101 +193961,Google Phone,1,600.0,2019-04-25 10:06:00,544 Sunset St, San Francisco,CA,94016 +193961,USB-C Charging Cable,1,11.95,2019-04-25 10:06:00,544 Sunset St, San Francisco,CA,94016 +193961,Wired Headphones,1,11.99,2019-04-25 10:06:00,544 Sunset St, San Francisco,CA,94016 +193962,Apple Airpods Headphones,1,150.0,2019-04-29 20:50:00,967 Forest St, New York City,NY,10001 +193963,Apple Airpods Headphones,1,150.0,2019-04-08 13:47:00,735 Main St, New York City,NY,10001 +193964,27in FHD Monitor,1,149.99,2019-04-22 15:49:00,448 Walnut St, Portland,OR,97035 +193965,27in 4K Gaming Monitor,1,389.99,2019-04-17 15:48:00,775 Highland St, Los Angeles,CA,90001 +193966,USB-C Charging Cable,4,11.95,2019-04-21 20:35:00,887 Highland St, New York City,NY,10001 +193967,USB-C Charging Cable,1,11.95,2019-04-24 16:24:00,569 Willow St, Atlanta,GA,30301 +193968,Google Phone,1,600.0,2019-04-02 18:40:00,222 4th St, Boston,MA,02215 +193968,USB-C Charging Cable,1,11.95,2019-04-02 18:40:00,222 4th St, Boston,MA,02215 +193969,27in 4K Gaming Monitor,1,389.99,2019-04-20 00:30:00,653 14th St, Los Angeles,CA,90001 +193970,Apple Airpods Headphones,1,150.0,2019-04-04 19:42:00,102 12th St, New York City,NY,10001 +193971,AAA Batteries (4-pack),1,2.99,2019-04-18 17:11:00,77 West St, Boston,MA,02215 +193972,Macbook Pro Laptop,1,1700.0,2019-04-11 16:23:00,334 5th St, San Francisco,CA,94016 +193973,27in FHD Monitor,1,149.99,2019-04-04 16:52:00,546 10th St, San Francisco,CA,94016 +193974,Bose SoundSport Headphones,1,99.99,2019-04-08 16:17:00,188 6th St, Portland,ME,04101 +193975,Apple Airpods Headphones,1,150.0,2019-04-11 19:43:00,202 Chestnut St, Dallas,TX,75001 +193976,AAA Batteries (4-pack),1,2.99,2019-04-03 23:50:00,647 Pine St, Los Angeles,CA,90001 +193977,AAA Batteries (4-pack),1,2.99,2019-04-07 20:43:00,181 Cedar St, Boston,MA,02215 +193978,USB-C Charging Cable,1,11.95,2019-04-25 09:48:00,241 14th St, San Francisco,CA,94016 +193979,AAA Batteries (4-pack),2,2.99,2019-04-22 12:15:00,692 Lakeview St, New York City,NY,10001 +193980,20in Monitor,1,109.99,2019-04-09 13:21:00,924 13th St, San Francisco,CA,94016 +193981,27in 4K Gaming Monitor,1,389.99,2019-04-11 22:30:00,300 Pine St, Portland,OR,97035 +193982,Wired Headphones,1,11.99,2019-04-30 10:32:00,683 Main St, New York City,NY,10001 +193983,Lightning Charging Cable,1,14.95,2019-04-09 12:09:00,878 12th St, Dallas,TX,75001 +193984,USB-C Charging Cable,1,11.95,2019-04-16 18:37:00,533 Sunset St, San Francisco,CA,94016 +193985,AAA Batteries (4-pack),2,2.99,2019-04-10 19:33:00,745 Wilson St, Atlanta,GA,30301 +193986,Vareebadd Phone,1,400.0,2019-04-11 08:30:00,969 Hickory St, Dallas,TX,75001 +193987,AAA Batteries (4-pack),3,2.99,2019-04-21 15:35:00,359 Forest St, Boston,MA,02215 +193988,34in Ultrawide Monitor,1,379.99,2019-04-18 12:21:00,570 South St, Atlanta,GA,30301 +193989,AAA Batteries (4-pack),2,2.99,2019-04-01 10:57:00,382 Adams St, Boston,MA,02215 +193990,USB-C Charging Cable,1,11.95,2019-04-28 16:32:00,107 9th St, Los Angeles,CA,90001 +193991,Bose SoundSport Headphones,1,99.99,2019-04-01 12:33:00,926 West St, Atlanta,GA,30301 +193992,AA Batteries (4-pack),1,3.84,2019-04-01 06:27:00,209 14th St, New York City,NY,10001 +193993,Lightning Charging Cable,1,14.95,2019-04-13 15:13:00,807 13th St, Atlanta,GA,30301 +193994,Google Phone,1,600.0,2019-04-28 20:34:00,45 Dogwood St, Los Angeles,CA,90001 +193994,USB-C Charging Cable,1,11.95,2019-04-28 20:34:00,45 Dogwood St, Los Angeles,CA,90001 +193995,AA Batteries (4-pack),1,3.84,2019-04-19 18:02:00,957 Adams St, Los Angeles,CA,90001 +193996,AAA Batteries (4-pack),1,2.99,2019-04-08 21:00:00,600 Ridge St, San Francisco,CA,94016 +193997,USB-C Charging Cable,1,11.95,2019-04-16 03:00:00,764 Hill St, New York City,NY,10001 +193998,AA Batteries (4-pack),2,3.84,2019-04-27 01:06:00,921 Lake St, San Francisco,CA,94016 +193999,Apple Airpods Headphones,1,150.0,2019-04-12 22:10:00,607 2nd St, Los Angeles,CA,90001 +194000,USB-C Charging Cable,1,11.95,2019-04-23 12:19:00,648 Lakeview St, Dallas,TX,75001 +194001,Bose SoundSport Headphones,1,99.99,2019-04-04 10:21:00,1 Hill St, Los Angeles,CA,90001 +194002,AAA Batteries (4-pack),1,2.99,2019-04-01 13:26:00,526 Willow St, Boston,MA,02215 +194003,Apple Airpods Headphones,1,150.0,2019-04-18 11:38:00,189 Lincoln St, Boston,MA,02215 +194004,27in FHD Monitor,1,149.99,2019-04-28 14:59:00,684 West St, San Francisco,CA,94016 +194005,iPhone,1,700.0,2019-04-02 22:36:00,76 Sunset St, San Francisco,CA,94016 +194006,20in Monitor,1,109.99,2019-04-20 14:58:00,632 Chestnut St, Dallas,TX,75001 +194007,Flatscreen TV,1,300.0,2019-04-17 17:25:00,375 Jefferson St, Los Angeles,CA,90001 +194008,AA Batteries (4-pack),1,3.84,2019-04-12 18:09:00,425 Elm St, San Francisco,CA,94016 +194008,Wired Headphones,1,11.99,2019-04-12 18:09:00,425 Elm St, San Francisco,CA,94016 +194009,27in FHD Monitor,1,149.99,2019-04-21 10:45:00,825 North St, Portland,OR,97035 +194010,Bose SoundSport Headphones,1,99.99,2019-04-23 22:21:00,663 8th St, Boston,MA,02215 +194011,Lightning Charging Cable,1,14.95,2019-04-26 12:25:00,974 River St, Los Angeles,CA,90001 +194012,AA Batteries (4-pack),1,3.84,2019-04-08 12:19:00,718 Pine St, Dallas,TX,75001 +194013,AAA Batteries (4-pack),3,2.99,2019-04-30 22:56:00,396 Sunset St, Seattle,WA,98101 +194014,Lightning Charging Cable,1,14.95,2019-04-08 16:10:00,864 Elm St, Portland,ME,04101 +194015,USB-C Charging Cable,1,11.95,2019-04-25 15:46:00,418 Adams St, Dallas,TX,75001 +194016,Wired Headphones,1,11.99,2019-04-27 13:39:00,506 Walnut St, Portland,OR,97035 +194017,Flatscreen TV,1,300.0,2019-04-21 10:40:00,446 Dogwood St, San Francisco,CA,94016 +194018,27in FHD Monitor,1,149.99,2019-04-06 19:31:00,221 Sunset St, San Francisco,CA,94016 +194019,Macbook Pro Laptop,1,1700.0,2019-04-20 11:44:00,418 Maple St, Seattle,WA,98101 +194020,Wired Headphones,1,11.99,2019-04-02 14:30:00,254 2nd St, Los Angeles,CA,90001 +194021,Google Phone,1,600.0,2019-04-29 14:50:00,203 Washington St, Boston,MA,02215 +194021,Wired Headphones,1,11.99,2019-04-29 14:50:00,203 Washington St, Boston,MA,02215 +194022,20in Monitor,1,109.99,2019-04-13 12:38:00,938 Center St, San Francisco,CA,94016 +194023,Lightning Charging Cable,1,14.95,2019-04-27 18:41:00,565 Dogwood St, New York City,NY,10001 +194024,AA Batteries (4-pack),2,3.84,2019-04-17 00:57:00,785 7th St, San Francisco,CA,94016 +194025,Apple Airpods Headphones,1,150.0,2019-04-20 12:06:00,872 Jefferson St, Seattle,WA,98101 +194026,USB-C Charging Cable,1,11.95,2019-04-06 15:55:00,692 Ridge St, Boston,MA,02215 +194027,AAA Batteries (4-pack),1,2.99,2019-04-21 10:09:00,16 Cherry St, Seattle,WA,98101 +194028,ThinkPad Laptop,1,999.99,2019-04-15 00:47:00,24 Main St, New York City,NY,10001 +194029,Wired Headphones,1,11.99,2019-04-09 20:22:00,212 Madison St, New York City,NY,10001 +194030,Lightning Charging Cable,1,14.95,2019-04-15 08:55:00,957 Jefferson St, Boston,MA,02215 +194031,Bose SoundSport Headphones,1,99.99,2019-04-17 22:19:00,82 Jefferson St, Austin,TX,73301 +194032,AAA Batteries (4-pack),1,2.99,2019-04-21 13:30:00,605 Chestnut St, San Francisco,CA,94016 +194033,AAA Batteries (4-pack),1,2.99,2019-04-15 06:44:00,161 12th St, New York City,NY,10001 +194034,USB-C Charging Cable,2,11.95,2019-04-30 18:33:00,573 7th St, Portland,OR,97035 +194035,27in 4K Gaming Monitor,1,389.99,2019-04-27 17:19:00,633 Dogwood St, Dallas,TX,75001 +194036,Lightning Charging Cable,1,14.95,2019-04-21 10:11:00,306 Adams St, San Francisco,CA,94016 +194037,27in FHD Monitor,1,149.99,2019-04-17 22:15:00,123 Highland St, Atlanta,GA,30301 +194038,USB-C Charging Cable,1,11.95,2019-04-23 09:09:00,163 Lincoln St, San Francisco,CA,94016 +194039,USB-C Charging Cable,2,11.95,2019-04-28 08:01:00,372 Main St, New York City,NY,10001 +194040,USB-C Charging Cable,1,11.95,2019-04-10 21:27:00,326 Adams St, San Francisco,CA,94016 +194041,Apple Airpods Headphones,1,150.0,2019-04-12 18:34:00,365 Cedar St, Atlanta,GA,30301 +194042,Google Phone,1,600.0,2019-04-22 21:42:00,992 4th St, Portland,ME,04101 +194043,Wired Headphones,1,11.99,2019-04-18 13:19:00,357 Willow St, Atlanta,GA,30301 +194044,AA Batteries (4-pack),1,3.84,2019-04-06 09:13:00,680 10th St, Atlanta,GA,30301 +194045,27in 4K Gaming Monitor,1,389.99,2019-04-05 15:22:00,331 1st St, Atlanta,GA,30301 +194046,AAA Batteries (4-pack),1,2.99,2019-04-12 17:01:00,317 Pine St, Atlanta,GA,30301 +194047,AA Batteries (4-pack),1,3.84,2019-04-30 08:10:00,496 Adams St, Seattle,WA,98101 +194048,USB-C Charging Cable,1,11.95,2019-04-17 11:24:00,480 South St, San Francisco,CA,94016 +194049,Wired Headphones,1,11.99,2019-04-24 12:07:00,751 10th St, Atlanta,GA,30301 +194050,AA Batteries (4-pack),1,3.84,2019-04-27 00:27:00,997 9th St, San Francisco,CA,94016 +194050,USB-C Charging Cable,1,11.95,2019-04-27 00:27:00,997 9th St, San Francisco,CA,94016 +194051,34in Ultrawide Monitor,1,379.99,2019-04-15 22:05:00,812 13th St, Los Angeles,CA,90001 +194052,Apple Airpods Headphones,1,150.0,2019-04-18 11:40:00,252 13th St, Los Angeles,CA,90001 +194053,AA Batteries (4-pack),1,3.84,2019-04-04 18:58:00,494 Adams St, Boston,MA,02215 +194054,iPhone,1,700.0,2019-04-21 20:18:00,533 14th St, Los Angeles,CA,90001 +194055,34in Ultrawide Monitor,1,379.99,2019-04-20 08:57:00,620 Meadow St, New York City,NY,10001 +194056,iPhone,1,700.0,2019-04-10 10:05:00,280 7th St, San Francisco,CA,94016 +194056,Lightning Charging Cable,1,14.95,2019-04-10 10:05:00,280 7th St, San Francisco,CA,94016 +194057,LG Washing Machine,1,600.0,2019-04-08 12:49:00,967 Forest St, San Francisco,CA,94016 +194058,AAA Batteries (4-pack),2,2.99,2019-04-29 09:46:00,684 Hill St, New York City,NY,10001 +194059,USB-C Charging Cable,1,11.95,2019-04-24 09:20:00,405 Park St, Dallas,TX,75001 +194060,Wired Headphones,1,11.99,2019-04-16 13:30:00,384 12th St, San Francisco,CA,94016 +194061,iPhone,1,700.0,2019-04-14 20:22:00,209 6th St, Atlanta,GA,30301 +194061,Lightning Charging Cable,3,14.95,2019-04-14 20:22:00,209 6th St, Atlanta,GA,30301 +194062,AAA Batteries (4-pack),2,2.99,2019-04-19 19:52:00,743 Highland St, Boston,MA,02215 +194063,27in 4K Gaming Monitor,1,389.99,2019-04-10 14:55:00,933 Highland St, San Francisco,CA,94016 +194064,Apple Airpods Headphones,1,150.0,2019-04-29 19:21:00,945 Walnut St, Los Angeles,CA,90001 +194065,27in FHD Monitor,1,149.99,2019-04-24 13:47:00,881 Cherry St, New York City,NY,10001 +194066,Lightning Charging Cable,1,14.95,2019-04-09 01:16:00,165 1st St, Portland,OR,97035 +194067,iPhone,1,700.0,2019-05-01 04:25:00,291 North St, San Francisco,CA,94016 +194068,Apple Airpods Headphones,1,150.0,2019-04-02 20:54:00,805 North St, Boston,MA,02215 +194069,AA Batteries (4-pack),1,3.84,2019-04-12 23:33:00,807 Johnson St, Boston,MA,02215 +194070,27in FHD Monitor,1,149.99,2019-04-09 22:51:00,942 Dogwood St, New York City,NY,10001 +194071,USB-C Charging Cable,1,11.95,2019-04-14 16:55:00,568 Washington St, San Francisco,CA,94016 +194072,34in Ultrawide Monitor,1,379.99,2019-04-18 16:41:00,999 Madison St, Seattle,WA,98101 +194073,Lightning Charging Cable,2,14.95,2019-04-14 07:29:00,144 Cherry St, Los Angeles,CA,90001 +194074,AA Batteries (4-pack),1,3.84,2019-04-02 16:26:00,169 Lake St, Boston,MA,02215 +194075,AA Batteries (4-pack),1,3.84,2019-04-28 19:02:00,981 Washington St, San Francisco,CA,94016 +194076,Lightning Charging Cable,1,14.95,2019-04-17 12:57:00,537 Dogwood St, Atlanta,GA,30301 +194077,AA Batteries (4-pack),3,3.84,2019-04-11 09:46:00,620 West St, Dallas,TX,75001 +194078,Flatscreen TV,1,300.0,2019-04-29 10:11:00,692 Lincoln St, Atlanta,GA,30301 +194079,Apple Airpods Headphones,1,150.0,2019-04-27 15:12:00,956 Ridge St, Los Angeles,CA,90001 +194080,USB-C Charging Cable,2,11.95,2019-04-09 14:08:00,517 Walnut St, Atlanta,GA,30301 +194081,AAA Batteries (4-pack),1,2.99,2019-04-25 14:19:00,110 Lake St, San Francisco,CA,94016 +194082,Bose SoundSport Headphones,1,99.99,2019-04-27 13:37:00,792 7th St, Boston,MA,02215 +194083,USB-C Charging Cable,1,11.95,2019-04-23 22:33:00,85 1st St, Los Angeles,CA,90001 +194084,Apple Airpods Headphones,1,150.0,2019-04-26 22:11:00,818 12th St, Boston,MA,02215 +194085,Wired Headphones,1,11.99,2019-04-17 20:12:00,315 12th St, Los Angeles,CA,90001 +194086,Google Phone,1,600.0,2019-04-28 08:50:00,981 Dogwood St, Los Angeles,CA,90001 +194087,USB-C Charging Cable,2,11.95,2019-04-26 11:44:00,35 13th St, Portland,OR,97035 +194088,AAA Batteries (4-pack),2,2.99,2019-04-04 18:46:00,718 12th St, Austin,TX,73301 +194089,USB-C Charging Cable,1,11.95,2019-04-09 17:15:00,458 11th St, San Francisco,CA,94016 +194090,Google Phone,1,600.0,2019-04-08 17:11:00,177 Jackson St, Los Angeles,CA,90001 +194091,AA Batteries (4-pack),1,3.84,2019-04-15 16:02:00,311 Forest St, Austin,TX,73301 +194092,AAA Batteries (4-pack),2,2.99,2019-04-28 14:36:00,347 Sunset St, San Francisco,CA,94016 +194093,AA Batteries (4-pack),1,3.84,2019-04-14 15:09:00,835 Lake St, Portland,OR,97035 +194094,Lightning Charging Cable,1,14.95,2019-04-18 11:08:00,354 North St, Boston,MA,02215 +236670,Wired Headphones,2,11.99,2019-08-31 22:21:00,359 Spruce St, Seattle,WA,98101 +236671,Bose SoundSport Headphones,1,99.99,2019-08-15 15:11:00,492 Ridge St, Dallas,TX,75001 +236672,iPhone,1,700.0,2019-08-06 14:40:00,149 7th St, Portland,OR,97035 +236673,AA Batteries (4-pack),2,3.84,2019-08-29 20:59:00,631 2nd St, Los Angeles,CA,90001 +236674,AA Batteries (4-pack),2,3.84,2019-08-15 19:53:00,736 14th St, New York City,NY,10001 +236675,Wired Headphones,1,11.99,2019-08-02 23:54:00,470 Hill St, San Francisco,CA,94016 +236676,34in Ultrawide Monitor,1,379.99,2019-08-04 19:52:00,470 Cherry St, Los Angeles,CA,90001 +236677,20in Monitor,1,109.99,2019-08-13 07:16:00,918 6th St, San Francisco,CA,94016 +236678,Wired Headphones,1,11.99,2019-08-25 20:11:00,58 9th St, San Francisco,CA,94016 +236679,Macbook Pro Laptop,1,1700.0,2019-08-07 15:43:00,239 Spruce St, Los Angeles,CA,90001 +236680,LG Washing Machine,1,600.0,2019-08-09 19:38:00,967 Willow St, San Francisco,CA,94016 +236681,AA Batteries (4-pack),1,3.84,2019-08-26 20:52:00,295 1st St, Boston,MA,02215 +236682,AA Batteries (4-pack),1,3.84,2019-08-19 12:40:00,118 Johnson St, Portland,OR,97035 +236683,27in FHD Monitor,1,149.99,2019-08-31 15:47:00,196 West St, Dallas,TX,75001 +236684,Lightning Charging Cable,1,14.95,2019-08-09 16:50:00,669 12th St, New York City,NY,10001 +236685,Apple Airpods Headphones,1,150.0,2019-08-23 19:29:00,238 Highland St, Atlanta,GA,30301 +236686,AAA Batteries (4-pack),1,2.99,2019-08-15 19:13:00,766 Maple St, Dallas,TX,75001 +236687,USB-C Charging Cable,1,11.95,2019-08-23 12:54:00,668 Meadow St, New York City,NY,10001 +236688,34in Ultrawide Monitor,1,379.99,2019-08-08 16:06:00,821 7th St, Los Angeles,CA,90001 +236689,AAA Batteries (4-pack),1,2.99,2019-08-21 10:55:00,13 Cedar St, San Francisco,CA,94016 +236690,AAA Batteries (4-pack),1,2.99,2019-08-08 12:00:00,139 River St, San Francisco,CA,94016 +236691,USB-C Charging Cable,1,11.95,2019-08-23 07:34:00,916 Meadow St, Boston,MA,02215 +236692,USB-C Charging Cable,1,11.95,2019-08-20 13:26:00,567 Center St, San Francisco,CA,94016 +236693,27in 4K Gaming Monitor,1,389.99,2019-08-12 21:57:00,173 West St, Portland,OR,97035 +236694,Apple Airpods Headphones,1,150.0,2019-08-14 23:45:00,854 Sunset St, New York City,NY,10001 +236695,Bose SoundSport Headphones,1,99.99,2019-08-04 19:06:00,905 Pine St, San Francisco,CA,94016 +236696,Lightning Charging Cable,1,14.95,2019-08-21 00:48:00,530 Church St, New York City,NY,10001 +236697,AA Batteries (4-pack),1,3.84,2019-08-25 23:13:00,246 Willow St, San Francisco,CA,94016 +236698,Wired Headphones,1,11.99,2019-08-07 13:40:00,526 Chestnut St, Dallas,TX,75001 +236699,AA Batteries (4-pack),2,3.84,2019-08-20 21:07:00,763 Hill St, Atlanta,GA,30301 +236700,Wired Headphones,1,11.99,2019-08-09 08:55:00,534 North St, Los Angeles,CA,90001 +236701,Apple Airpods Headphones,1,150.0,2019-08-06 10:36:00,518 Main St, San Francisco,CA,94016 +236702,ThinkPad Laptop,1,999.99,2019-08-23 11:10:00,615 11th St, Dallas,TX,75001 +236703,Bose SoundSport Headphones,1,99.99,2019-08-08 06:09:00,861 Adams St, Atlanta,GA,30301 +236704,Flatscreen TV,1,300.0,2019-08-11 08:52:00,415 Ridge St, San Francisco,CA,94016 +236705,AA Batteries (4-pack),3,3.84,2019-08-11 22:21:00,27 North St, Austin,TX,73301 +236706,Google Phone,1,600.0,2019-08-14 14:19:00,621 North St, San Francisco,CA,94016 +236707,AA Batteries (4-pack),2,3.84,2019-08-14 14:06:00,306 West St, Los Angeles,CA,90001 +236708,Apple Airpods Headphones,1,150.0,2019-08-27 14:00:00,353 Madison St, San Francisco,CA,94016 +236709,iPhone,1,700.0,2019-08-04 09:00:00,869 Jackson St, San Francisco,CA,94016 +236710,Macbook Pro Laptop,1,1700.0,2019-08-04 02:46:00,654 Chestnut St, Austin,TX,73301 +236711,Macbook Pro Laptop,1,1700.0,2019-08-28 17:28:00,627 Lincoln St, Dallas,TX,75001 +236712,AA Batteries (4-pack),2,3.84,2019-08-30 07:14:00,548 Jefferson St, Boston,MA,02215 +236713,27in FHD Monitor,1,149.99,2019-08-05 20:00:00,852 8th St, San Francisco,CA,94016 +236714,27in 4K Gaming Monitor,1,389.99,2019-08-30 09:07:00,194 Dogwood St, Atlanta,GA,30301 +236715,27in 4K Gaming Monitor,1,389.99,2019-08-23 11:20:00,628 Jefferson St, Portland,OR,97035 +236716,AA Batteries (4-pack),2,3.84,2019-08-17 20:12:00,84 Cedar St, San Francisco,CA,94016 +236716,USB-C Charging Cable,1,11.95,2019-08-17 20:12:00,84 Cedar St, San Francisco,CA,94016 +236717,Google Phone,1,600.0,2019-08-11 12:26:00,394 12th St, Atlanta,GA,30301 +236718,Apple Airpods Headphones,1,150.0,2019-08-10 13:48:00,499 7th St, San Francisco,CA,94016 +236719,AAA Batteries (4-pack),1,2.99,2019-08-05 12:09:00,948 2nd St, Atlanta,GA,30301 +236720,Apple Airpods Headphones,1,150.0,2019-08-24 16:49:00,881 10th St, Dallas,TX,75001 +236721,Apple Airpods Headphones,1,150.0,2019-08-02 12:24:00,198 Highland St, Seattle,WA,98101 +236722,AAA Batteries (4-pack),2,2.99,2019-08-07 12:42:00,241 6th St, San Francisco,CA,94016 +236723,Apple Airpods Headphones,1,150.0,2019-08-01 18:56:00,654 Pine St, New York City,NY,10001 +236724,Apple Airpods Headphones,1,150.0,2019-08-21 01:08:00,238 Hickory St, San Francisco,CA,94016 +236725,AAA Batteries (4-pack),3,2.99,2019-08-24 20:15:00,590 Lakeview St, San Francisco,CA,94016 +236726,AA Batteries (4-pack),1,3.84,2019-08-29 09:25:00,434 Church St, Boston,MA,02215 +236727,USB-C Charging Cable,1,11.95,2019-08-19 08:10:00,557 North St, New York City,NY,10001 +236728,ThinkPad Laptop,1,999.99,2019-08-10 11:21:00,526 North St, Portland,ME,04101 +236729,iPhone,1,700.0,2019-08-09 09:28:00,635 Lake St, San Francisco,CA,94016 +236729,Apple Airpods Headphones,1,150.0,2019-08-09 09:28:00,635 Lake St, San Francisco,CA,94016 +236730,Google Phone,1,600.0,2019-08-02 10:17:00,445 Lincoln St, New York City,NY,10001 +236730,Wired Headphones,1,11.99,2019-08-02 10:17:00,445 Lincoln St, New York City,NY,10001 +236731,AAA Batteries (4-pack),1,2.99,2019-08-29 12:40:00,62 Center St, San Francisco,CA,94016 +236732,Flatscreen TV,1,300.0,2019-08-09 13:35:00,328 North St, Dallas,TX,75001 +236733,Apple Airpods Headphones,1,150.0,2019-08-08 10:21:00,467 Hill St, Dallas,TX,75001 +236734,AA Batteries (4-pack),2,3.84,2019-08-14 16:52:00,405 Chestnut St, Dallas,TX,75001 +236735,Apple Airpods Headphones,1,150.0,2019-08-18 22:08:00,599 North St, Boston,MA,02215 +236736,Wired Headphones,1,11.99,2019-08-03 17:36:00,754 Chestnut St, Los Angeles,CA,90001 +236737,AA Batteries (4-pack),1,3.84,2019-08-24 08:51:00,908 Park St, San Francisco,CA,94016 +236738,Flatscreen TV,1,300.0,2019-08-30 15:07:00,672 7th St, New York City,NY,10001 +236739,USB-C Charging Cable,1,11.95,2019-08-31 12:46:00,949 Church St, Boston,MA,02215 +236740,USB-C Charging Cable,1,11.95,2019-08-12 07:30:00,950 13th St, San Francisco,CA,94016 +236741,USB-C Charging Cable,1,11.95,2019-08-08 12:39:00,26 Washington St, Boston,MA,02215 +236742,Macbook Pro Laptop,1,1700.0,2019-08-11 01:47:00,701 1st St, San Francisco,CA,94016 +236743,Lightning Charging Cable,1,14.95,2019-08-27 12:55:00,826 Forest St, Los Angeles,CA,90001 +236744,AAA Batteries (4-pack),1,2.99,2019-08-09 20:21:00,11 Wilson St, Atlanta,GA,30301 +236745,AAA Batteries (4-pack),1,2.99,2019-08-17 21:01:00,850 Ridge St, San Francisco,CA,94016 +236746,AAA Batteries (4-pack),2,2.99,2019-08-13 09:52:00,585 Spruce St, Los Angeles,CA,90001 +236747,AAA Batteries (4-pack),1,2.99,2019-08-02 15:19:00,255 Cherry St, New York City,NY,10001 +236748,Bose SoundSport Headphones,1,99.99,2019-08-19 16:40:00,977 13th St, New York City,NY,10001 +236749,AAA Batteries (4-pack),1,2.99,2019-08-30 20:13:00,498 Johnson St, Austin,TX,73301 +236750,Flatscreen TV,1,300.0,2019-08-25 08:37:00,806 Ridge St, Boston,MA,02215 +236751,27in 4K Gaming Monitor,1,389.99,2019-08-03 09:18:00,534 Washington St, Portland,ME,04101 +236752,27in 4K Gaming Monitor,1,389.99,2019-08-27 21:41:00,765 Lakeview St, Austin,TX,73301 +236753,Lightning Charging Cable,1,14.95,2019-08-18 19:28:00,501 Lakeview St, New York City,NY,10001 +236754,Lightning Charging Cable,1,14.95,2019-08-13 10:29:00,872 Ridge St, Seattle,WA,98101 +236755,Wired Headphones,1,11.99,2019-08-19 13:59:00,902 2nd St, Dallas,TX,75001 +236756,AA Batteries (4-pack),1,3.84,2019-08-31 18:36:00,444 West St, Boston,MA,02215 +236757,USB-C Charging Cable,1,11.95,2019-08-07 19:28:00,969 Spruce St, Seattle,WA,98101 +236758,Flatscreen TV,1,300.0,2019-08-18 13:55:00,155 Hickory St, Los Angeles,CA,90001 +236759,Bose SoundSport Headphones,1,99.99,2019-08-27 12:09:00,848 5th St, New York City,NY,10001 +236760,AA Batteries (4-pack),1,3.84,2019-08-29 17:02:00,35 Spruce St, Boston,MA,02215 +236761,27in FHD Monitor,1,149.99,2019-08-19 21:43:00,148 Chestnut St, San Francisco,CA,94016 +236762,AAA Batteries (4-pack),1,2.99,2019-08-16 14:25:00,632 Cherry St, San Francisco,CA,94016 +236763,Apple Airpods Headphones,1,150.0,2019-08-06 10:23:00,288 Lake St, Seattle,WA,98101 +236764,Bose SoundSport Headphones,1,99.99,2019-08-22 15:48:00,663 Elm St, Boston,MA,02215 +236765,Wired Headphones,1,11.99,2019-08-24 10:48:00,731 10th St, San Francisco,CA,94016 +236766,Wired Headphones,1,11.99,2019-08-19 17:13:00,287 Highland St, Seattle,WA,98101 +236767,iPhone,1,700.0,2019-08-09 13:51:00,41 Adams St, Dallas,TX,75001 +236768,AA Batteries (4-pack),2,3.84,2019-08-27 10:21:00,352 1st St, Portland,OR,97035 +236769,AA Batteries (4-pack),1,3.84,2019-08-25 13:18:00,270 Cherry St, Dallas,TX,75001 +236770,Wired Headphones,1,11.99,2019-08-13 08:46:00,796 Park St, San Francisco,CA,94016 +236771,Google Phone,1,600.0,2019-08-07 18:04:00,942 Elm St, Los Angeles,CA,90001 +236772,Apple Airpods Headphones,1,150.0,2019-08-18 05:31:00,61 Park St, Portland,OR,97035 +236773,Apple Airpods Headphones,1,150.0,2019-08-20 20:16:00,742 Forest St, Austin,TX,73301 +236774,AAA Batteries (4-pack),2,2.99,2019-08-13 15:57:00,634 Pine St, Austin,TX,73301 +236775,AAA Batteries (4-pack),2,2.99,2019-08-06 08:25:00,3 Dogwood St, New York City,NY,10001 +236776,Bose SoundSport Headphones,1,99.99,2019-08-25 02:53:00,729 Washington St, New York City,NY,10001 +236777,Lightning Charging Cable,1,14.95,2019-08-29 13:25:00,61 Park St, New York City,NY,10001 +236778,Wired Headphones,1,11.99,2019-08-29 22:52:00,625 Forest St, Dallas,TX,75001 +236779,27in FHD Monitor,1,149.99,2019-08-29 09:31:00,546 9th St, San Francisco,CA,94016 +236780,Lightning Charging Cable,1,14.95,2019-08-18 18:50:00,890 2nd St, Seattle,WA,98101 +236781,27in 4K Gaming Monitor,1,389.99,2019-08-19 06:52:00,707 Wilson St, Atlanta,GA,30301 +236782,USB-C Charging Cable,1,11.95,2019-08-15 16:45:00,366 Washington St, Boston,MA,02215 +236783,AA Batteries (4-pack),2,3.84,2019-08-04 10:06:00,350 Dogwood St, Boston,MA,02215 +236784,AAA Batteries (4-pack),1,2.99,2019-08-29 13:17:00,501 Maple St, Boston,MA,02215 +236785,Apple Airpods Headphones,1,150.0,2019-08-22 19:17:00,645 North St, Dallas,TX,75001 +236786,Lightning Charging Cable,1,14.95,2019-08-06 08:41:00,307 10th St, San Francisco,CA,94016 +236787,AAA Batteries (4-pack),1,2.99,2019-08-27 14:06:00,195 Wilson St, Boston,MA,02215 +236788,iPhone,1,700.0,2019-08-21 12:09:00,598 13th St, Los Angeles,CA,90001 +236789,Lightning Charging Cable,1,14.95,2019-08-21 12:07:00,377 South St, San Francisco,CA,94016 +236790,20in Monitor,2,109.99,2019-08-21 21:28:00,212 Hill St, San Francisco,CA,94016 +236791,27in FHD Monitor,1,149.99,2019-08-06 17:53:00,26 Jefferson St, Atlanta,GA,30301 +236792,Wired Headphones,1,11.99,2019-08-22 14:38:00,326 Johnson St, New York City,NY,10001 +236793,USB-C Charging Cable,1,11.95,2019-08-12 12:01:00,961 South St, Los Angeles,CA,90001 +236794,Wired Headphones,1,11.99,2019-08-05 17:14:00,588 Pine St, Dallas,TX,75001 +236795,AA Batteries (4-pack),4,3.84,2019-08-13 18:02:00,235 South St, Austin,TX,73301 +236796,Wired Headphones,1,11.99,2019-08-15 16:14:00,623 South St, Atlanta,GA,30301 +236797,Google Phone,1,600.0,2019-08-16 18:45:00,835 12th St, Los Angeles,CA,90001 +236798,Lightning Charging Cable,2,14.95,2019-08-19 08:59:00,614 7th St, Los Angeles,CA,90001 +236799,Google Phone,1,600.0,2019-08-01 12:38:00,309 2nd St, San Francisco,CA,94016 +236799,Wired Headphones,1,11.99,2019-08-01 12:38:00,309 2nd St, San Francisco,CA,94016 +236800,Lightning Charging Cable,1,14.95,2019-08-21 15:02:00,389 Highland St, Boston,MA,02215 +236801,USB-C Charging Cable,1,11.95,2019-08-24 00:22:00,43 Jackson St, Dallas,TX,75001 +236802,27in 4K Gaming Monitor,1,389.99,2019-08-01 18:43:00,668 9th St, Los Angeles,CA,90001 +236803,AA Batteries (4-pack),4,3.84,2019-08-25 12:36:00,124 Forest St, San Francisco,CA,94016 +236804,ThinkPad Laptop,1,999.99,2019-08-06 23:10:00,933 Center St, Los Angeles,CA,90001 +236805,USB-C Charging Cable,1,11.95,2019-08-23 16:27:00,445 10th St, New York City,NY,10001 +236806,USB-C Charging Cable,1,11.95,2019-08-06 02:22:00,828 Madison St, Boston,MA,02215 +236807,USB-C Charging Cable,1,11.95,2019-08-27 20:49:00,962 Highland St, Seattle,WA,98101 +236808,AA Batteries (4-pack),1,3.84,2019-08-24 08:04:00,782 12th St, New York City,NY,10001 +236809,Google Phone,1,600.0,2019-08-01 20:53:00,444 South St, Seattle,WA,98101 +236810,Lightning Charging Cable,1,14.95,2019-08-23 07:47:00,318 10th St, San Francisco,CA,94016 +236811,Wired Headphones,1,11.99,2019-08-04 16:44:00,352 Cherry St, San Francisco,CA,94016 +236812,Wired Headphones,1,11.99,2019-08-25 19:48:00,970 2nd St, Los Angeles,CA,90001 +236813,Lightning Charging Cable,1,14.95,2019-08-04 15:29:00,170 West St, Los Angeles,CA,90001 +236814,AAA Batteries (4-pack),2,2.99,2019-08-14 19:24:00,510 South St, San Francisco,CA,94016 +236815,27in FHD Monitor,1,149.99,2019-08-28 17:55:00,378 Adams St, Portland,ME,04101 +236816,USB-C Charging Cable,1,11.95,2019-08-13 20:45:00,179 Jackson St, New York City,NY,10001 +236817,Wired Headphones,1,11.99,2019-08-04 17:09:00,21 Lake St, Boston,MA,02215 +236818,Lightning Charging Cable,1,14.95,2019-08-24 09:20:00,462 Madison St, Dallas,TX,75001 +236819,Apple Airpods Headphones,1,150.0,2019-08-15 15:37:00,672 1st St, San Francisco,CA,94016 +236820,Lightning Charging Cable,1,14.95,2019-08-04 23:25:00,531 10th St, San Francisco,CA,94016 +236821,AA Batteries (4-pack),2,3.84,2019-08-07 11:48:00,590 11th St, Seattle,WA,98101 +236822,27in 4K Gaming Monitor,1,389.99,2019-08-25 10:07:00,184 Johnson St, San Francisco,CA,94016 +236823,AAA Batteries (4-pack),1,2.99,2019-08-22 06:22:00,861 Hickory St, Los Angeles,CA,90001 +236824,Wired Headphones,1,11.99,2019-08-24 06:24:00,323 11th St, New York City,NY,10001 +236825,USB-C Charging Cable,1,11.95,2019-08-01 12:51:00,988 West St, Los Angeles,CA,90001 +236826,20in Monitor,1,109.99,2019-08-06 12:19:00,636 9th St, Seattle,WA,98101 +236827,Lightning Charging Cable,1,14.95,2019-08-30 21:25:00,9 Center St, Atlanta,GA,30301 +236828,Apple Airpods Headphones,1,150.0,2019-08-11 23:19:00,515 13th St, San Francisco,CA,94016 +236829,Vareebadd Phone,1,400.0,2019-08-16 08:51:00,27 2nd St, Los Angeles,CA,90001 +236829,USB-C Charging Cable,1,11.95,2019-08-16 08:51:00,27 2nd St, Los Angeles,CA,90001 +236830,Apple Airpods Headphones,1,150.0,2019-08-10 23:40:00,581 6th St, Dallas,TX,75001 +236831,Wired Headphones,1,11.99,2019-08-24 02:47:00,115 Lake St, Atlanta,GA,30301 +236832,Apple Airpods Headphones,1,150.0,2019-08-09 21:14:00,479 Adams St, Seattle,WA,98101 +236833,Wired Headphones,1,11.99,2019-08-06 09:39:00,848 7th St, New York City,NY,10001 +236834,Bose SoundSport Headphones,1,99.99,2019-08-10 00:11:00,4 Willow St, Los Angeles,CA,90001 +236835,Flatscreen TV,1,300.0,2019-08-29 10:55:00,276 Chestnut St, San Francisco,CA,94016 +236836,Lightning Charging Cable,1,14.95,2019-08-21 20:51:00,304 Maple St, San Francisco,CA,94016 +236837,Wired Headphones,1,11.99,2019-08-16 00:31:00,693 Forest St, San Francisco,CA,94016 +236838,AAA Batteries (4-pack),1,2.99,2019-08-28 20:16:00,899 South St, Los Angeles,CA,90001 +236839,AA Batteries (4-pack),1,3.84,2019-08-06 09:35:00,18 Sunset St, Los Angeles,CA,90001 +236840,Apple Airpods Headphones,1,150.0,2019-08-28 10:21:00,580 Wilson St, Dallas,TX,75001 +236841,20in Monitor,1,109.99,2019-08-30 13:29:00,307 Jefferson St, Los Angeles,CA,90001 +236842,USB-C Charging Cable,1,11.95,2019-08-06 19:10:00,659 Madison St, Portland,OR,97035 +236843,AAA Batteries (4-pack),1,2.99,2019-08-25 12:33:00,821 Lakeview St, New York City,NY,10001 +236844,27in FHD Monitor,1,149.99,2019-08-10 17:48:00,297 6th St, Los Angeles,CA,90001 +236845,27in 4K Gaming Monitor,1,389.99,2019-08-18 18:14:00,327 Jackson St, Seattle,WA,98101 +236846,AA Batteries (4-pack),1,3.84,2019-08-05 10:13:00,440 6th St, Los Angeles,CA,90001 +236847,AA Batteries (4-pack),3,3.84,2019-08-29 09:32:00,490 Maple St, Portland,OR,97035 +236848,Wired Headphones,1,11.99,2019-08-27 18:13:00,56 5th St, New York City,NY,10001 +236849,Apple Airpods Headphones,1,150.0,2019-08-04 18:13:00,775 4th St, San Francisco,CA,94016 +236850,Google Phone,1,600.0,2019-08-31 00:09:00,543 Ridge St, New York City,NY,10001 +236851,27in 4K Gaming Monitor,1,389.99,2019-08-29 00:08:00,192 13th St, New York City,NY,10001 +236852,Wired Headphones,1,11.99,2019-08-20 10:06:00,235 Cherry St, Portland,OR,97035 +236853,Flatscreen TV,1,300.0,2019-08-22 00:29:00,68 11th St, Dallas,TX,75001 +236854,USB-C Charging Cable,1,11.95,2019-08-14 05:56:00,753 Adams St, San Francisco,CA,94016 +236855,Bose SoundSport Headphones,1,99.99,2019-08-28 12:15:00,360 River St, Seattle,WA,98101 +236856,AA Batteries (4-pack),3,3.84,2019-08-09 13:11:00,661 Center St, Seattle,WA,98101 +236857,Wired Headphones,1,11.99,2019-08-31 16:16:00,363 6th St, Atlanta,GA,30301 +236858,Lightning Charging Cable,1,14.95,2019-08-01 20:34:00,35 Jefferson St, San Francisco,CA,94016 +236859,34in Ultrawide Monitor,1,379.99,2019-08-22 10:16:00,833 Jefferson St, Boston,MA,02215 +236860,USB-C Charging Cable,1,11.95,2019-08-01 19:22:00,311 Cherry St, San Francisco,CA,94016 +236861,Wired Headphones,2,11.99,2019-08-04 18:46:00,990 Washington St, Atlanta,GA,30301 +236862,27in FHD Monitor,1,149.99,2019-08-26 13:51:00,173 South St, San Francisco,CA,94016 +236863,Wired Headphones,1,11.99,2019-08-02 21:40:00,674 Walnut St, New York City,NY,10001 +236864,Apple Airpods Headphones,1,150.0,2019-08-23 12:01:00,166 Park St, Portland,OR,97035 +236865,USB-C Charging Cable,1,11.95,2019-08-09 08:42:00,874 Main St, Austin,TX,73301 +236866,AA Batteries (4-pack),1,3.84,2019-08-19 19:17:00,583 Spruce St, Portland,ME,04101 +236867,USB-C Charging Cable,1,11.95,2019-08-08 15:20:00,948 Highland St, Los Angeles,CA,90001 +236868,Wired Headphones,1,11.99,2019-08-29 23:19:00,363 2nd St, Boston,MA,02215 +236869,Bose SoundSport Headphones,1,99.99,2019-08-30 19:58:00,436 Main St, Portland,OR,97035 +236870,Google Phone,1,600.0,2019-08-09 20:04:00,384 5th St, New York City,NY,10001 +236871,Wired Headphones,1,11.99,2019-08-26 17:10:00,478 9th St, San Francisco,CA,94016 +236872,Wired Headphones,1,11.99,2019-08-02 22:59:00,39 Johnson St, San Francisco,CA,94016 +236873,Lightning Charging Cable,1,14.95,2019-08-26 11:24:00,610 Chestnut St, San Francisco,CA,94016 +236874,34in Ultrawide Monitor,1,379.99,2019-08-10 01:57:00,800 4th St, Los Angeles,CA,90001 +236875,USB-C Charging Cable,1,11.95,2019-08-13 09:22:00,342 11th St, New York City,NY,10001 +236876,Google Phone,1,600.0,2019-08-14 20:52:00,646 14th St, Boston,MA,02215 +236877,Apple Airpods Headphones,1,150.0,2019-08-27 21:23:00,133 Ridge St, Atlanta,GA,30301 +236878,ThinkPad Laptop,1,999.99,2019-08-08 07:41:00,35 Lincoln St, New York City,NY,10001 +236879,AA Batteries (4-pack),2,3.84,2019-08-14 21:01:00,284 West St, San Francisco,CA,94016 +236880,34in Ultrawide Monitor,1,379.99,2019-08-10 14:46:00,631 Highland St, Atlanta,GA,30301 +236881,AAA Batteries (4-pack),1,2.99,2019-08-05 22:54:00,342 Lake St, New York City,NY,10001 +236882,Macbook Pro Laptop,1,1700.0,2019-08-09 14:05:00,109 9th St, New York City,NY,10001 +236883,Apple Airpods Headphones,1,150.0,2019-08-27 19:45:00,589 2nd St, Atlanta,GA,30301 +236884,AAA Batteries (4-pack),1,2.99,2019-08-13 05:10:00,424 Meadow St, Portland,OR,97035 +236885,27in 4K Gaming Monitor,1,389.99,2019-08-15 12:10:00,835 Cedar St, Portland,OR,97035 +236885,USB-C Charging Cable,1,11.95,2019-08-15 12:10:00,835 Cedar St, Portland,OR,97035 +236886,Bose SoundSport Headphones,1,99.99,2019-08-21 22:23:00,310 Hill St, Los Angeles,CA,90001 +236887,27in 4K Gaming Monitor,1,389.99,2019-08-31 10:20:00,974 5th St, Los Angeles,CA,90001 +236888,Macbook Pro Laptop,1,1700.0,2019-08-01 16:57:00,887 Meadow St, New York City,NY,10001 +236889,27in FHD Monitor,1,149.99,2019-08-21 21:06:00,429 Sunset St, San Francisco,CA,94016 +236890,Lightning Charging Cable,1,14.95,2019-08-11 00:35:00,475 Lincoln St, Seattle,WA,98101 +236891,Flatscreen TV,1,300.0,2019-08-07 13:41:00,385 4th St, Portland,ME,04101 +236892,Lightning Charging Cable,1,14.95,2019-08-08 15:35:00,651 Madison St, Atlanta,GA,30301 +236893,ThinkPad Laptop,1,999.99,2019-08-07 19:37:00,942 Madison St, San Francisco,CA,94016 +236894,USB-C Charging Cable,1,11.95,2019-08-03 21:55:00,386 River St, Atlanta,GA,30301 +236895,USB-C Charging Cable,1,11.95,2019-08-01 20:37:00,243 Cedar St, Los Angeles,CA,90001 +236896,AA Batteries (4-pack),1,3.84,2019-08-14 22:41:00,959 Madison St, Dallas,TX,75001 +236897,AA Batteries (4-pack),1,3.84,2019-08-31 15:13:00,663 Dogwood St, Austin,TX,73301 +236898,Lightning Charging Cable,1,14.95,2019-08-11 23:36:00,236 River St, San Francisco,CA,94016 +236899,Apple Airpods Headphones,1,150.0,2019-08-21 14:31:00,954 Pine St, San Francisco,CA,94016 +236900,Bose SoundSport Headphones,1,99.99,2019-08-26 18:50:00,405 Ridge St, Portland,ME,04101 +236901,USB-C Charging Cable,1,11.95,2019-08-01 18:11:00,635 9th St, Seattle,WA,98101 +236902,AA Batteries (4-pack),1,3.84,2019-08-02 09:24:00,799 North St, San Francisco,CA,94016 +236903,AA Batteries (4-pack),2,3.84,2019-08-27 01:31:00,410 9th St, San Francisco,CA,94016 +236904,Apple Airpods Headphones,1,150.0,2019-08-15 05:20:00,998 Center St, San Francisco,CA,94016 +236905,Lightning Charging Cable,1,14.95,2019-08-21 15:22:00,705 West St, Los Angeles,CA,90001 +236906,Lightning Charging Cable,1,14.95,2019-08-14 19:46:00,39 Main St, Atlanta,GA,30301 +236907,Wired Headphones,1,11.99,2019-08-24 18:09:00,865 Jefferson St, San Francisco,CA,94016 +236908,AAA Batteries (4-pack),2,2.99,2019-08-16 14:13:00,851 Madison St, Los Angeles,CA,90001 +236909,AAA Batteries (4-pack),4,2.99,2019-08-01 09:42:00,912 Wilson St, Boston,MA,02215 +236910,USB-C Charging Cable,1,11.95,2019-08-17 03:33:00,744 5th St, New York City,NY,10001 +236911,AA Batteries (4-pack),1,3.84,2019-08-27 16:27:00,398 Cherry St, Austin,TX,73301 +236912,Lightning Charging Cable,1,14.95,2019-08-18 19:00:00,682 Dogwood St, San Francisco,CA,94016 +236913,AAA Batteries (4-pack),1,2.99,2019-08-13 22:29:00,712 South St, Boston,MA,02215 +236914,AAA Batteries (4-pack),1,2.99,2019-08-23 11:59:00,87 Adams St, Portland,OR,97035 +236915,Wired Headphones,1,11.99,2019-08-17 11:06:00,272 Ridge St, San Francisco,CA,94016 +236916,Wired Headphones,1,11.99,2019-08-31 07:58:00,474 Cedar St, Austin,TX,73301 +236917,ThinkPad Laptop,1,999.99,2019-08-24 13:28:00,847 Highland St, Portland,OR,97035 +236918,Lightning Charging Cable,1,14.95,2019-08-04 10:12:00,180 Main St, Atlanta,GA,30301 +236919,AA Batteries (4-pack),2,3.84,2019-08-28 20:59:00,30 Elm St, Atlanta,GA,30301 +236920,Wired Headphones,1,11.99,2019-08-10 11:35:00,673 1st St, New York City,NY,10001 +236921,Vareebadd Phone,1,400.0,2019-08-10 12:45:00,309 1st St, San Francisco,CA,94016 +236922,Wired Headphones,1,11.99,2019-08-12 09:39:00,346 Wilson St, New York City,NY,10001 +236923,AAA Batteries (4-pack),2,2.99,2019-08-27 15:55:00,306 6th St, Los Angeles,CA,90001 +236924,20in Monitor,1,109.99,2019-08-29 16:39:00,752 Willow St, Los Angeles,CA,90001 +236925,Wired Headphones,1,11.99,2019-08-08 21:32:00,559 Cedar St, San Francisco,CA,94016 +236926,AA Batteries (4-pack),1,3.84,2019-08-25 21:02:00,182 Pine St, New York City,NY,10001 +236927,34in Ultrawide Monitor,1,379.99,2019-08-19 09:32:00,548 11th St, San Francisco,CA,94016 +236928,iPhone,1,700.0,2019-08-22 08:30:00,319 12th St, San Francisco,CA,94016 +236929,Wired Headphones,2,11.99,2019-08-11 15:08:00,607 Chestnut St, San Francisco,CA,94016 +236930,ThinkPad Laptop,1,999.99,2019-08-04 07:01:00,894 Jackson St, New York City,NY,10001 +236931,Apple Airpods Headphones,1,150.0,2019-08-25 08:34:00,57 2nd St, New York City,NY,10001 +236932,iPhone,1,700.0,2019-08-18 18:52:00,428 Hickory St, Seattle,WA,98101 +236933,AAA Batteries (4-pack),1,2.99,2019-08-19 20:32:00,164 Pine St, San Francisco,CA,94016 +236934,AA Batteries (4-pack),1,3.84,2019-08-20 11:53:00,426 Ridge St, San Francisco,CA,94016 +236935,Apple Airpods Headphones,1,150.0,2019-08-16 17:29:00,972 11th St, New York City,NY,10001 +236936,Bose SoundSport Headphones,1,99.99,2019-08-30 13:48:00,721 11th St, San Francisco,CA,94016 +236937,Vareebadd Phone,1,400.0,2019-08-06 18:20:00,231 Washington St, Boston,MA,02215 +236938,AA Batteries (4-pack),1,3.84,2019-08-12 17:07:00,731 Cherry St, Seattle,WA,98101 +236939,USB-C Charging Cable,1,11.95,2019-08-28 23:28:00,608 Willow St, Boston,MA,02215 +236940,Wired Headphones,1,11.99,2019-08-03 19:09:00,976 Forest St, Boston,MA,02215 +236941,Lightning Charging Cable,1,14.95,2019-08-22 09:46:00,665 Wilson St, San Francisco,CA,94016 +236942,Lightning Charging Cable,1,14.95,2019-08-16 12:24:00,902 4th St, Los Angeles,CA,90001 +236943,AAA Batteries (4-pack),2,2.99,2019-08-04 16:04:00,387 Lincoln St, Seattle,WA,98101 +236944,Bose SoundSport Headphones,1,99.99,2019-08-25 19:33:00,139 Cedar St, Boston,MA,02215 +236945,Google Phone,1,600.0,2019-08-30 10:00:00,904 Jefferson St, Portland,OR,97035 +236946,AA Batteries (4-pack),3,3.84,2019-08-18 08:24:00,371 Chestnut St, San Francisco,CA,94016 +236947,20in Monitor,1,109.99,2019-08-19 23:52:00,845 Lincoln St, Los Angeles,CA,90001 +236948,Lightning Charging Cable,2,14.95,2019-08-12 00:44:00,134 Highland St, San Francisco,CA,94016 +236949,Bose SoundSport Headphones,1,99.99,2019-08-28 18:58:00,168 Jefferson St, San Francisco,CA,94016 +236950,Bose SoundSport Headphones,1,99.99,2019-08-27 15:50:00,146 Hill St, San Francisco,CA,94016 +236951,27in FHD Monitor,1,149.99,2019-08-12 22:15:00,714 8th St, Los Angeles,CA,90001 +236952,iPhone,1,700.0,2019-08-01 16:01:00,386 7th St, Boston,MA,02215 +236953,Apple Airpods Headphones,1,150.0,2019-08-02 16:40:00,571 Cedar St, San Francisco,CA,94016 +236954,AA Batteries (4-pack),2,3.84,2019-08-08 16:28:00,255 Washington St, San Francisco,CA,94016 +236955,34in Ultrawide Monitor,1,379.99,2019-08-03 13:15:00,833 River St, Los Angeles,CA,90001 +236956,USB-C Charging Cable,1,11.95,2019-08-26 15:10:00,260 14th St, Los Angeles,CA,90001 +236957,Apple Airpods Headphones,1,150.0,2019-08-10 15:46:00,496 Lincoln St, San Francisco,CA,94016 +236958,Lightning Charging Cable,1,14.95,2019-08-23 07:05:00,758 Elm St, Los Angeles,CA,90001 +236959,27in FHD Monitor,1,149.99,2019-08-21 18:33:00,927 Park St, San Francisco,CA,94016 +236960,Lightning Charging Cable,1,14.95,2019-08-12 12:06:00,937 11th St, Los Angeles,CA,90001 +236961,27in 4K Gaming Monitor,1,389.99,2019-08-25 12:13:00,615 Meadow St, Portland,OR,97035 +236962,20in Monitor,1,109.99,2019-08-08 19:54:00,296 14th St, Seattle,WA,98101 +236963,Bose SoundSport Headphones,1,99.99,2019-08-31 10:21:00,166 Dogwood St, Los Angeles,CA,90001 +236964,Flatscreen TV,1,300.0,2019-08-05 18:23:00,960 Spruce St, Austin,TX,73301 +236965,AA Batteries (4-pack),1,3.84,2019-08-31 09:45:00,278 Cherry St, Los Angeles,CA,90001 +236966,Wired Headphones,1,11.99,2019-08-12 12:01:00,594 Sunset St, Portland,ME,04101 +236967,AA Batteries (4-pack),2,3.84,2019-08-05 13:23:00,133 Highland St, Los Angeles,CA,90001 +236968,Apple Airpods Headphones,1,150.0,2019-08-10 10:48:00,765 Center St, Los Angeles,CA,90001 +236969,Lightning Charging Cable,1,14.95,2019-08-15 18:11:00,852 11th St, Seattle,WA,98101 +236970,AAA Batteries (4-pack),1,2.99,2019-08-15 20:34:00,749 Walnut St, Seattle,WA,98101 +236971,27in FHD Monitor,1,149.99,2019-08-07 17:57:00,311 Elm St, Seattle,WA,98101 +236972,AAA Batteries (4-pack),2,2.99,2019-08-05 21:01:00,14 Washington St, Los Angeles,CA,90001 +236973,Vareebadd Phone,1,400.0,2019-08-08 12:03:00,845 West St, Austin,TX,73301 +236974,Apple Airpods Headphones,1,150.0,2019-08-23 20:25:00,470 12th St, San Francisco,CA,94016 +236975,iPhone,1,700.0,2019-08-02 10:47:00,799 Walnut St, Los Angeles,CA,90001 +236976,AAA Batteries (4-pack),2,2.99,2019-08-15 13:34:00,167 Lincoln St, Los Angeles,CA,90001 +236977,AAA Batteries (4-pack),1,2.99,2019-08-13 01:13:00,115 West St, Portland,OR,97035 +236978,AA Batteries (4-pack),1,3.84,2019-08-17 15:06:00,910 Forest St, Austin,TX,73301 +236979,Google Phone,1,600.0,2019-08-15 10:21:00,539 5th St, Boston,MA,02215 +236980,34in Ultrawide Monitor,1,379.99,2019-08-26 19:25:00,867 Jefferson St, New York City,NY,10001 +236981,iPhone,1,700.0,2019-08-05 11:38:00,499 River St, New York City,NY,10001 +236982,AAA Batteries (4-pack),1,2.99,2019-08-09 11:41:00,592 Washington St, Dallas,TX,75001 +236983,ThinkPad Laptop,1,999.99,2019-08-24 16:00:00,549 Ridge St, Los Angeles,CA,90001 +236984,Macbook Pro Laptop,1,1700.0,2019-08-14 15:17:00,839 North St, San Francisco,CA,94016 +236985,20in Monitor,1,109.99,2019-08-14 06:47:00,770 12th St, Dallas,TX,75001 +236986,Apple Airpods Headphones,1,150.0,2019-08-20 23:35:00,583 West St, Dallas,TX,75001 +236987,USB-C Charging Cable,1,11.95,2019-08-02 14:58:00,973 10th St, San Francisco,CA,94016 +236988,USB-C Charging Cable,1,11.95,2019-08-12 13:34:00,345 1st St, Portland,OR,97035 +236989,20in Monitor,1,109.99,2019-08-06 19:31:00,412 Meadow St, Portland,OR,97035 +236990,USB-C Charging Cable,1,11.95,2019-08-30 07:09:00,582 South St, Los Angeles,CA,90001 +236991,USB-C Charging Cable,2,11.95,2019-08-18 00:44:00,303 4th St, San Francisco,CA,94016 +236992,Google Phone,1,600.0,2019-08-20 10:13:00,544 Lakeview St, New York City,NY,10001 +236992,USB-C Charging Cable,1,11.95,2019-08-20 10:13:00,544 Lakeview St, New York City,NY,10001 +236993,Lightning Charging Cable,1,14.95,2019-08-21 11:55:00,28 Adams St, San Francisco,CA,94016 +236994,ThinkPad Laptop,1,999.99,2019-08-01 07:17:00,96 Elm St, San Francisco,CA,94016 +236995,AAA Batteries (4-pack),1,2.99,2019-08-08 21:53:00,694 Cherry St, San Francisco,CA,94016 +236996,AAA Batteries (4-pack),3,2.99,2019-08-08 10:14:00,894 Jefferson St, San Francisco,CA,94016 +236997,Lightning Charging Cable,2,14.95,2019-08-20 03:37:00,184 Wilson St, Dallas,TX,75001 +236998,AA Batteries (4-pack),1,3.84,2019-08-26 20:50:00,365 Willow St, Atlanta,GA,30301 +236999,Wired Headphones,1,11.99,2019-08-02 20:45:00,745 Main St, New York City,NY,10001 +237000,AAA Batteries (4-pack),1,2.99,2019-08-03 16:46:00,535 Lakeview St, Seattle,WA,98101 +237001,Bose SoundSport Headphones,1,99.99,2019-08-31 06:09:00,797 Cherry St, San Francisco,CA,94016 +237002,USB-C Charging Cable,1,11.95,2019-08-30 14:15:00,799 Jefferson St, Atlanta,GA,30301 +237003,AAA Batteries (4-pack),1,2.99,2019-08-02 11:05:00,672 Main St, Los Angeles,CA,90001 +237004,USB-C Charging Cable,1,11.95,2019-08-01 22:00:00,99 2nd St, Los Angeles,CA,90001 +237005,Macbook Pro Laptop,1,1700.0,2019-08-29 06:50:00,187 1st St, San Francisco,CA,94016 +237006,Wired Headphones,1,11.99,2019-08-07 18:24:00,623 River St, Boston,MA,02215 +237007,Bose SoundSport Headphones,1,99.99,2019-08-26 08:51:00,792 Dogwood St, Portland,OR,97035 +237008,iPhone,1,700.0,2019-08-03 09:50:00,407 9th St, New York City,NY,10001 +237009,20in Monitor,1,109.99,2019-08-07 15:43:00,73 4th St, Los Angeles,CA,90001 +237010,AA Batteries (4-pack),1,3.84,2019-08-16 11:58:00,891 Highland St, San Francisco,CA,94016 +237011,Apple Airpods Headphones,1,150.0,2019-08-15 07:33:00,434 West St, Los Angeles,CA,90001 +237012,AAA Batteries (4-pack),1,2.99,2019-08-20 13:39:00,195 Madison St, Austin,TX,73301 +237013,iPhone,1,700.0,2019-08-06 07:13:00,720 12th St, Los Angeles,CA,90001 +237013,Lightning Charging Cable,1,14.95,2019-08-06 07:13:00,720 12th St, Los Angeles,CA,90001 +237014,Lightning Charging Cable,1,14.95,2019-08-30 12:16:00,748 14th St, New York City,NY,10001 +237015,USB-C Charging Cable,1,11.95,2019-08-17 14:21:00,808 9th St, New York City,NY,10001 +237016,34in Ultrawide Monitor,1,379.99,2019-08-21 07:38:00,696 Cedar St, New York City,NY,10001 +237017,Flatscreen TV,1,300.0,2019-08-10 01:28:00,209 Willow St, Los Angeles,CA,90001 +237018,LG Dryer,1,600.0,2019-08-02 07:16:00,363 Adams St, Seattle,WA,98101 +237019,Flatscreen TV,1,300.0,2019-08-01 12:41:00,636 Park St, San Francisco,CA,94016 +237020,27in FHD Monitor,1,149.99,2019-08-17 12:18:00,783 Jefferson St, Los Angeles,CA,90001 +237021,AAA Batteries (4-pack),1,2.99,2019-08-03 12:03:00,492 Jackson St, New York City,NY,10001 +237022,Apple Airpods Headphones,1,150.0,2019-08-10 06:38:00,513 Adams St, San Francisco,CA,94016 +237023,AA Batteries (4-pack),2,3.84,2019-08-19 17:46:00,173 9th St, San Francisco,CA,94016 +237024,AA Batteries (4-pack),2,3.84,2019-08-13 19:28:00,243 Cherry St, San Francisco,CA,94016 +237025,Lightning Charging Cable,2,14.95,2019-08-25 14:56:00,491 Chestnut St, Dallas,TX,75001 +237026,27in 4K Gaming Monitor,1,389.99,2019-08-02 19:15:00,146 Madison St, Boston,MA,02215 +237027,Apple Airpods Headphones,1,150.0,2019-08-09 19:20:00,232 Jackson St, New York City,NY,10001 +237028,27in 4K Gaming Monitor,1,389.99,2019-08-04 15:20:00,399 Maple St, San Francisco,CA,94016 +237029,Bose SoundSport Headphones,1,99.99,2019-08-13 20:04:00,558 Highland St, Los Angeles,CA,90001 +237030,27in 4K Gaming Monitor,1,389.99,2019-08-11 17:15:00,751 1st St, Los Angeles,CA,90001 +237031,Apple Airpods Headphones,1,150.0,2019-08-15 13:49:00,447 Jefferson St, San Francisco,CA,94016 +237032,27in 4K Gaming Monitor,1,389.99,2019-08-05 07:58:00,409 1st St, New York City,NY,10001 +237033,Google Phone,1,600.0,2019-08-05 17:01:00,359 Lakeview St, Dallas,TX,75001 +237034,Apple Airpods Headphones,1,150.0,2019-08-11 07:16:00,18 Ridge St, New York City,NY,10001 +237035,34in Ultrawide Monitor,1,379.99,2019-08-17 09:27:00,875 North St, Los Angeles,CA,90001 +237036,27in FHD Monitor,1,149.99,2019-08-06 13:46:00,790 Wilson St, New York City,NY,10001 +237037,20in Monitor,1,109.99,2019-08-08 16:44:00,265 Maple St, Los Angeles,CA,90001 +237038,Wired Headphones,1,11.99,2019-08-25 19:17:00,655 Jackson St, Portland,OR,97035 +237039,Apple Airpods Headphones,1,150.0,2019-08-31 11:17:00,560 9th St, Atlanta,GA,30301 +237040,AAA Batteries (4-pack),3,2.99,2019-08-26 20:43:00,843 1st St, Seattle,WA,98101 +237041,Lightning Charging Cable,1,14.95,2019-08-23 14:10:00,319 Spruce St, Boston,MA,02215 +237042,USB-C Charging Cable,1,11.95,2019-08-26 13:51:00,995 Willow St, Los Angeles,CA,90001 +237043,Lightning Charging Cable,1,14.95,2019-08-12 18:37:00,11 Adams St, San Francisco,CA,94016 +237044,AAA Batteries (4-pack),1,2.99,2019-08-05 19:25:00,326 River St, Portland,OR,97035 +237045,Bose SoundSport Headphones,1,99.99,2019-08-11 18:25:00,119 9th St, Boston,MA,02215 +237045,Wired Headphones,1,11.99,2019-08-11 18:25:00,119 9th St, Boston,MA,02215 +237046,Lightning Charging Cable,1,14.95,2019-08-14 13:57:00,858 11th St, Los Angeles,CA,90001 +237047,Lightning Charging Cable,1,14.95,2019-08-21 09:00:00,251 Park St, San Francisco,CA,94016 +237048,27in FHD Monitor,1,149.99,2019-08-16 06:06:00,306 Park St, Dallas,TX,75001 +237049,Lightning Charging Cable,2,14.95,2019-08-08 13:23:00,469 13th St, San Francisco,CA,94016 +237050,AAA Batteries (4-pack),1,2.99,2019-08-06 15:35:00,732 Chestnut St, San Francisco,CA,94016 +237051,AAA Batteries (4-pack),1,2.99,2019-08-06 00:17:00,403 Jackson St, Portland,OR,97035 +237052,AA Batteries (4-pack),1,3.84,2019-08-11 19:06:00,864 Dogwood St, Seattle,WA,98101 +237053,Lightning Charging Cable,1,14.95,2019-08-28 15:22:00,891 River St, Portland,OR,97035 +237054,iPhone,1,700.0,2019-08-19 08:07:00,243 Jefferson St, Los Angeles,CA,90001 +237055,Apple Airpods Headphones,1,150.0,2019-08-25 00:02:00,590 14th St, Los Angeles,CA,90001 +237056,27in FHD Monitor,1,149.99,2019-08-21 03:06:00,671 Lincoln St, San Francisco,CA,94016 +237057,Bose SoundSport Headphones,1,99.99,2019-08-12 18:32:00,669 Main St, Boston,MA,02215 +237058,AAA Batteries (4-pack),1,2.99,2019-08-01 19:42:00,119 Elm St, Seattle,WA,98101 +237059,AA Batteries (4-pack),1,3.84,2019-08-19 17:13:00,639 Jackson St, New York City,NY,10001 +237060,AA Batteries (4-pack),1,3.84,2019-08-01 22:31:00,814 Church St, Dallas,TX,75001 +237061,20in Monitor,1,109.99,2019-08-01 09:35:00,847 West St, San Francisco,CA,94016 +237062,Bose SoundSport Headphones,1,99.99,2019-08-05 15:37:00,531 Highland St, New York City,NY,10001 +237063,LG Dryer,1,600.0,2019-08-06 10:10:00,303 Lake St, New York City,NY,10001 +237063,AA Batteries (4-pack),1,3.84,2019-08-06 10:10:00,303 Lake St, New York City,NY,10001 +237064,27in FHD Monitor,1,149.99,2019-08-06 16:17:00,521 Willow St, Austin,TX,73301 +237065,27in 4K Gaming Monitor,1,389.99,2019-08-23 13:15:00,312 Chestnut St, Los Angeles,CA,90001 +237066,Bose SoundSport Headphones,1,99.99,2019-08-30 22:35:00,374 Highland St, Boston,MA,02215 +237067,iPhone,1,700.0,2019-08-11 19:08:00,730 West St, Boston,MA,02215 +237067,Lightning Charging Cable,1,14.95,2019-08-11 19:08:00,730 West St, Boston,MA,02215 +237068,Lightning Charging Cable,1,14.95,2019-08-01 11:44:00,271 South St, New York City,NY,10001 +237069,Vareebadd Phone,1,400.0,2019-08-08 14:09:00,147 Highland St, Seattle,WA,98101 +237070,USB-C Charging Cable,1,11.95,2019-08-08 18:26:00,242 Sunset St, Seattle,WA,98101 +237071,27in FHD Monitor,1,149.99,2019-08-10 21:33:00,890 Johnson St, Portland,OR,97035 +237072,Bose SoundSport Headphones,1,99.99,2019-08-16 06:48:00,615 Maple St, New York City,NY,10001 +237073,Lightning Charging Cable,1,14.95,2019-08-16 17:41:00,416 Park St, Austin,TX,73301 +237074,34in Ultrawide Monitor,1,379.99,2019-08-21 06:10:00,123 Adams St, San Francisco,CA,94016 +237075,AA Batteries (4-pack),1,3.84,2019-08-15 12:39:00,596 Meadow St, Austin,TX,73301 +237076,Flatscreen TV,1,300.0,2019-08-02 09:10:00,206 2nd St, Seattle,WA,98101 +237077,USB-C Charging Cable,1,11.95,2019-08-20 17:36:00,982 11th St, San Francisco,CA,94016 +237078,Bose SoundSport Headphones,1,99.99,2019-08-21 17:01:00,253 Highland St, San Francisco,CA,94016 +237079,Flatscreen TV,1,300.0,2019-08-13 11:34:00,235 Cherry St, Los Angeles,CA,90001 +237080,Apple Airpods Headphones,1,150.0,2019-08-11 12:21:00,634 Main St, Atlanta,GA,30301 +237081,Wired Headphones,1,11.99,2019-08-08 15:40:00,692 Main St, Seattle,WA,98101 +237082,Google Phone,1,600.0,2019-08-15 11:28:00,473 Adams St, San Francisco,CA,94016 +237083,Wired Headphones,1,11.99,2019-08-07 21:31:00,610 Washington St, Portland,OR,97035 +237084,Wired Headphones,1,11.99,2019-08-22 20:55:00,843 Spruce St, Boston,MA,02215 +237085,34in Ultrawide Monitor,1,379.99,2019-08-26 17:58:00,475 Lake St, San Francisco,CA,94016 +237086,LG Dryer,1,600.0,2019-08-06 18:29:00,310 North St, Boston,MA,02215 +237087,Apple Airpods Headphones,1,150.0,2019-08-28 12:01:00,139 Ridge St, San Francisco,CA,94016 +237088,AA Batteries (4-pack),1,3.84,2019-08-22 12:55:00,232 Elm St, Atlanta,GA,30301 +237089,AA Batteries (4-pack),1,3.84,2019-08-21 20:15:00,202 Johnson St, Los Angeles,CA,90001 +237090,Apple Airpods Headphones,1,150.0,2019-08-29 21:44:00,809 5th St, New York City,NY,10001 +237091,Lightning Charging Cable,1,14.95,2019-08-31 10:15:00,379 12th St, New York City,NY,10001 +237092,Wired Headphones,1,11.99,2019-08-20 00:37:00,808 1st St, Boston,MA,02215 +237093,AAA Batteries (4-pack),2,2.99,2019-08-01 12:39:00,771 Cedar St, Portland,OR,97035 +237094,AAA Batteries (4-pack),2,2.99,2019-08-06 10:39:00,552 River St, New York City,NY,10001 +237095,Google Phone,2,600.0,2019-08-22 12:34:00,110 Madison St, Boston,MA,02215 +237096,USB-C Charging Cable,1,11.95,2019-08-06 11:17:00,946 Pine St, San Francisco,CA,94016 +237097,AAA Batteries (4-pack),3,2.99,2019-08-24 17:05:00,838 Cedar St, Boston,MA,02215 +237098,Apple Airpods Headphones,1,150.0,2019-08-14 11:17:00,925 Cedar St, Portland,OR,97035 +237099,Apple Airpods Headphones,1,150.0,2019-08-27 01:35:00,82 Center St, Seattle,WA,98101 +237100,AA Batteries (4-pack),1,3.84,2019-08-12 15:27:00,456 Madison St, New York City,NY,10001 +237101,AAA Batteries (4-pack),1,2.99,2019-08-10 00:06:00,630 Chestnut St, Los Angeles,CA,90001 +237102,34in Ultrawide Monitor,1,379.99,2019-08-31 17:28:00,372 Forest St, Atlanta,GA,30301 +237103,Wired Headphones,1,11.99,2019-08-11 19:33:00,541 13th St, Seattle,WA,98101 +237104,Apple Airpods Headphones,1,150.0,2019-08-16 19:56:00,340 Willow St, Los Angeles,CA,90001 +237105,27in FHD Monitor,1,149.99,2019-08-10 19:47:00,670 Church St, Austin,TX,73301 +237106,AA Batteries (4-pack),1,3.84,2019-08-16 07:15:00,814 Forest St, Los Angeles,CA,90001 +237107,Bose SoundSport Headphones,1,99.99,2019-08-25 16:44:00,314 Center St, Boston,MA,02215 +237108,Wired Headphones,1,11.99,2019-08-24 20:13:00,14 Forest St, San Francisco,CA,94016 +237109,Lightning Charging Cable,1,14.95,2019-08-10 18:28:00,761 Hickory St, Los Angeles,CA,90001 +237110,AA Batteries (4-pack),1,3.84,2019-08-18 14:23:00,545 Jackson St, San Francisco,CA,94016 +237111,iPhone,1,700.0,2019-08-31 00:33:00,89 Church St, San Francisco,CA,94016 +237112,ThinkPad Laptop,1,999.99,2019-08-16 14:15:00,344 Center St, San Francisco,CA,94016 +237113,Apple Airpods Headphones,1,150.0,2019-08-15 11:42:00,656 Willow St, Los Angeles,CA,90001 +237114,USB-C Charging Cable,1,11.95,2019-08-05 16:49:00,456 6th St, New York City,NY,10001 +237115,Apple Airpods Headphones,1,150.0,2019-08-27 11:58:00,431 Cedar St, New York City,NY,10001 +237116,Wired Headphones,1,11.99,2019-08-01 20:11:00,165 Willow St, Atlanta,GA,30301 +237117,Apple Airpods Headphones,1,150.0,2019-08-24 14:07:00,951 7th St, Boston,MA,02215 +237118,Apple Airpods Headphones,1,150.0,2019-08-06 17:53:00,252 Hill St, San Francisco,CA,94016 +237119,Wired Headphones,1,11.99,2019-08-13 15:27:00,774 Johnson St, New York City,NY,10001 +237120,AA Batteries (4-pack),6,3.84,2019-08-22 21:22:00,864 8th St, San Francisco,CA,94016 +237121,LG Washing Machine,1,600.0,2019-08-16 15:38:00,573 Adams St, Los Angeles,CA,90001 +237122,AAA Batteries (4-pack),2,2.99,2019-08-20 10:38:00,978 Meadow St, Boston,MA,02215 +237123,Apple Airpods Headphones,1,150.0,2019-08-11 12:21:00,482 Park St, Austin,TX,73301 +237124,AA Batteries (4-pack),1,3.84,2019-08-21 16:39:00,603 Maple St, San Francisco,CA,94016 +237125,Apple Airpods Headphones,1,150.0,2019-08-02 22:04:00,501 Adams St, Los Angeles,CA,90001 +237126,USB-C Charging Cable,1,11.95,2019-08-28 04:51:00,968 Hill St, San Francisco,CA,94016 +237127,Bose SoundSport Headphones,1,99.99,2019-08-13 10:53:00,937 Jackson St, Los Angeles,CA,90001 +237128,USB-C Charging Cable,1,11.95,2019-08-09 22:38:00,634 Adams St, Seattle,WA,98101 +237129,AAA Batteries (4-pack),1,2.99,2019-08-26 12:57:00,128 Maple St, San Francisco,CA,94016 +237130,Lightning Charging Cable,1,14.95,2019-08-07 14:10:00,294 Pine St, Dallas,TX,75001 +237131,USB-C Charging Cable,1,11.95,2019-08-11 22:37:00,492 Ridge St, Portland,OR,97035 +237132,27in 4K Gaming Monitor,1,389.99,2019-08-07 11:22:00,832 Jefferson St, Austin,TX,73301 +237133,Flatscreen TV,1,300.0,2019-08-20 20:26:00,535 Sunset St, San Francisco,CA,94016 +237134,AAA Batteries (4-pack),1,2.99,2019-08-18 18:12:00,996 Adams St, Atlanta,GA,30301 +237135,Bose SoundSport Headphones,1,99.99,2019-08-18 09:32:00,295 10th St, New York City,NY,10001 +237136,USB-C Charging Cable,1,11.95,2019-08-25 20:26:00,236 Cherry St, Atlanta,GA,30301 +237137,AA Batteries (4-pack),1,3.84,2019-08-17 15:20:00,874 12th St, New York City,NY,10001 +237138,AAA Batteries (4-pack),7,2.99,2019-08-28 09:31:00,141 Ridge St, San Francisco,CA,94016 +237139,27in 4K Gaming Monitor,1,389.99,2019-08-17 23:13:00,986 Meadow St, San Francisco,CA,94016 +237140,Wired Headphones,1,11.99,2019-08-29 22:12:00,215 Jackson St, Seattle,WA,98101 +237141,20in Monitor,1,109.99,2019-08-16 21:11:00,536 Hickory St, Austin,TX,73301 +237142,Bose SoundSport Headphones,1,99.99,2019-08-21 20:05:00,414 Cedar St, Los Angeles,CA,90001 +237143,27in FHD Monitor,1,149.99,2019-08-21 18:08:00,158 River St, Atlanta,GA,30301 +237144,Bose SoundSport Headphones,1,99.99,2019-08-26 11:18:00,563 Cedar St, San Francisco,CA,94016 +237145,34in Ultrawide Monitor,1,379.99,2019-08-09 10:27:00,541 Cedar St, Portland,OR,97035 +237146,27in 4K Gaming Monitor,1,389.99,2019-08-30 07:38:00,37 5th St, Atlanta,GA,30301 +237147,27in 4K Gaming Monitor,1,389.99,2019-08-18 13:49:00,365 Madison St, San Francisco,CA,94016 +237148,iPhone,1,700.0,2019-08-22 16:48:00,605 Lakeview St, San Francisco,CA,94016 +237148,Lightning Charging Cable,1,14.95,2019-08-22 16:48:00,605 Lakeview St, San Francisco,CA,94016 +237149,Bose SoundSport Headphones,1,99.99,2019-08-23 14:44:00,587 4th St, Atlanta,GA,30301 +237150,Apple Airpods Headphones,1,150.0,2019-08-26 08:49:00,169 North St, Los Angeles,CA,90001 +237151,AAA Batteries (4-pack),2,2.99,2019-08-12 21:02:00,811 Maple St, San Francisco,CA,94016 +237152,Wired Headphones,1,11.99,2019-08-13 07:53:00,854 Cedar St, Los Angeles,CA,90001 +237153,Lightning Charging Cable,1,14.95,2019-08-23 16:34:00,5 Sunset St, San Francisco,CA,94016 +237154,Bose SoundSport Headphones,1,99.99,2019-08-07 05:39:00,612 Madison St, Seattle,WA,98101 +237155,Bose SoundSport Headphones,1,99.99,2019-08-14 20:49:00,123 Willow St, Portland,OR,97035 +237156,AAA Batteries (4-pack),1,2.99,2019-08-28 12:16:00,72 Main St, San Francisco,CA,94016 +237157,Apple Airpods Headphones,1,150.0,2019-08-11 06:31:00,806 4th St, Dallas,TX,75001 +237158,Lightning Charging Cable,1,14.95,2019-08-08 15:54:00,865 Walnut St, Los Angeles,CA,90001 +237159,Lightning Charging Cable,1,14.95,2019-08-28 21:59:00,322 Walnut St, New York City,NY,10001 +237160,USB-C Charging Cable,1,11.95,2019-08-04 16:26:00,139 8th St, New York City,NY,10001 +237161,AA Batteries (4-pack),1,3.84,2019-08-18 21:36:00,249 Church St, New York City,NY,10001 +237162,AAA Batteries (4-pack),1,2.99,2019-08-30 12:37:00,179 Lakeview St, New York City,NY,10001 +237163,27in FHD Monitor,1,149.99,2019-08-23 07:12:00,13 Washington St, Los Angeles,CA,90001 +237164,USB-C Charging Cable,1,11.95,2019-08-01 14:27:00,388 1st St, New York City,NY,10001 +237165,Vareebadd Phone,1,400.0,2019-08-24 17:58:00,603 Willow St, San Francisco,CA,94016 +237166,Wired Headphones,1,11.99,2019-08-24 11:51:00,479 Church St, San Francisco,CA,94016 +237167,Bose SoundSport Headphones,1,99.99,2019-08-06 15:28:00,794 11th St, Dallas,TX,75001 +237168,iPhone,1,700.0,2019-08-22 13:26:00,637 Elm St, Seattle,WA,98101 +237169,Lightning Charging Cable,1,14.95,2019-08-01 09:40:00,127 Ridge St, Seattle,WA,98101 +237170,Bose SoundSport Headphones,1,99.99,2019-08-22 12:30:00,422 Spruce St, Portland,OR,97035 +237171,AA Batteries (4-pack),1,3.84,2019-08-19 23:04:00,883 River St, Dallas,TX,75001 +237172,iPhone,1,700.0,2019-08-31 20:37:00,265 Hickory St, Portland,OR,97035 +237173,AAA Batteries (4-pack),2,2.99,2019-08-26 06:26:00,312 South St, San Francisco,CA,94016 +237174,Wired Headphones,1,11.99,2019-08-28 15:31:00,300 8th St, Los Angeles,CA,90001 +237175,Bose SoundSport Headphones,1,99.99,2019-08-04 09:14:00,262 Ridge St, San Francisco,CA,94016 +237176,AA Batteries (4-pack),1,3.84,2019-08-06 18:53:00,521 8th St, San Francisco,CA,94016 +237177,Flatscreen TV,1,300.0,2019-08-17 20:51:00,795 Highland St, Atlanta,GA,30301 +237178,USB-C Charging Cable,1,11.95,2019-08-10 09:46:00,457 5th St, San Francisco,CA,94016 +237179,Bose SoundSport Headphones,1,99.99,2019-08-18 18:11:00,1 Wilson St, New York City,NY,10001 +237180,USB-C Charging Cable,1,11.95,2019-08-23 03:17:00,888 West St, Portland,OR,97035 +237181,AA Batteries (4-pack),1,3.84,2019-08-16 19:46:00,855 Hill St, Dallas,TX,75001 +237182,Google Phone,1,600.0,2019-08-30 21:22:00,634 Spruce St, Los Angeles,CA,90001 +237183,USB-C Charging Cable,1,11.95,2019-08-20 11:11:00,901 Walnut St, San Francisco,CA,94016 +237184,Flatscreen TV,1,300.0,2019-08-03 16:09:00,59 Madison St, Seattle,WA,98101 +237185,34in Ultrawide Monitor,1,379.99,2019-08-25 14:40:00,744 Hickory St, New York City,NY,10001 +237186,USB-C Charging Cable,1,11.95,2019-08-25 17:27:00,548 Johnson St, Los Angeles,CA,90001 +237187,AAA Batteries (4-pack),1,2.99,2019-08-06 13:24:00,18 1st St, Boston,MA,02215 +237188,AAA Batteries (4-pack),3,2.99,2019-08-20 10:03:00,98 Ridge St, Atlanta,GA,30301 +237189,27in 4K Gaming Monitor,1,389.99,2019-08-31 15:17:00,758 Forest St, San Francisco,CA,94016 +237190,USB-C Charging Cable,1,11.95,2019-08-05 09:46:00,118 Hickory St, Los Angeles,CA,90001 +237191,AA Batteries (4-pack),1,3.84,2019-08-17 17:08:00,812 Pine St, San Francisco,CA,94016 +237192,AA Batteries (4-pack),1,3.84,2019-08-07 01:21:00,8 14th St, Seattle,WA,98101 +237193,Flatscreen TV,1,300.0,2019-08-03 14:15:00,309 5th St, Dallas,TX,75001 +237194,Bose SoundSport Headphones,1,99.99,2019-08-24 16:59:00,609 Main St, San Francisco,CA,94016 +237195,Apple Airpods Headphones,1,150.0,2019-08-09 13:42:00,345 Dogwood St, Atlanta,GA,30301 +237196,20in Monitor,1,109.99,2019-08-31 13:22:00,685 Park St, San Francisco,CA,94016 +237197,AAA Batteries (4-pack),3,2.99,2019-08-14 22:48:00,47 6th St, Dallas,TX,75001 +237198,Wired Headphones,1,11.99,2019-08-12 14:31:00,691 Church St, New York City,NY,10001 +237199,Wired Headphones,1,11.99,2019-08-01 14:23:00,151 Lake St, Los Angeles,CA,90001 +237200,Bose SoundSport Headphones,1,99.99,2019-08-16 16:19:00,832 6th St, Boston,MA,02215 +237201,AAA Batteries (4-pack),1,2.99,2019-08-02 16:26:00,232 12th St, New York City,NY,10001 +237202,Bose SoundSport Headphones,1,99.99,2019-08-08 10:12:00,12 Cedar St, New York City,NY,10001 +237203,Macbook Pro Laptop,1,1700.0,2019-08-12 10:13:00,282 Wilson St, Portland,OR,97035 +237204,Wired Headphones,1,11.99,2019-08-15 19:47:00,98 11th St, San Francisco,CA,94016 +237205,34in Ultrawide Monitor,1,379.99,2019-08-22 13:45:00,716 Hill St, Los Angeles,CA,90001 +237206,Bose SoundSport Headphones,1,99.99,2019-08-31 11:25:00,105 4th St, San Francisco,CA,94016 +237207,Wired Headphones,1,11.99,2019-08-09 22:39:00,243 Lake St, Atlanta,GA,30301 +237208,USB-C Charging Cable,2,11.95,2019-08-27 20:56:00,739 Lincoln St, San Francisco,CA,94016 +237209,27in FHD Monitor,1,149.99,2019-08-24 00:16:00,167 Walnut St, Los Angeles,CA,90001 +237210,AAA Batteries (4-pack),1,2.99,2019-08-21 17:20:00,875 North St, Los Angeles,CA,90001 +237211,AA Batteries (4-pack),1,3.84,2019-08-30 00:27:00,251 Park St, Los Angeles,CA,90001 +237212,27in FHD Monitor,1,149.99,2019-08-19 13:22:00,855 11th St, Boston,MA,02215 +237213,Lightning Charging Cable,1,14.95,2019-08-16 11:04:00,875 Madison St, Dallas,TX,75001 +237214,34in Ultrawide Monitor,1,379.99,2019-08-26 17:55:00,908 Madison St, San Francisco,CA,94016 +237215,Google Phone,1,600.0,2019-08-27 10:58:00,352 12th St, Atlanta,GA,30301 +237216,Wired Headphones,1,11.99,2019-08-11 15:36:00,441 5th St, Los Angeles,CA,90001 +237217,27in 4K Gaming Monitor,1,389.99,2019-08-20 21:21:00,881 Main St, San Francisco,CA,94016 +237218,iPhone,1,700.0,2019-08-07 15:45:00,492 Spruce St, San Francisco,CA,94016 +237218,Lightning Charging Cable,1,14.95,2019-08-07 15:45:00,492 Spruce St, San Francisco,CA,94016 +237219,Wired Headphones,1,11.99,2019-08-23 19:23:00,421 River St, San Francisco,CA,94016 +237220,Lightning Charging Cable,1,14.95,2019-08-04 09:23:00,710 10th St, Portland,OR,97035 +237221,AA Batteries (4-pack),2,3.84,2019-08-10 09:57:00,536 Hill St, New York City,NY,10001 +237222,AA Batteries (4-pack),1,3.84,2019-08-05 16:43:00,777 Highland St, Los Angeles,CA,90001 +237223,AAA Batteries (4-pack),3,2.99,2019-08-22 15:06:00,953 Elm St, Austin,TX,73301 +237224,Apple Airpods Headphones,1,150.0,2019-08-18 13:33:00,774 11th St, New York City,NY,10001 +237225,Bose SoundSport Headphones,1,99.99,2019-08-14 19:22:00,215 10th St, Seattle,WA,98101 +237226,Bose SoundSport Headphones,1,99.99,2019-08-23 11:39:00,314 Highland St, Portland,OR,97035 +237227,ThinkPad Laptop,1,999.99,2019-08-15 08:18:00,179 Cherry St, Los Angeles,CA,90001 +237228,Google Phone,1,600.0,2019-08-07 22:18:00,945 Spruce St, San Francisco,CA,94016 +237229,Lightning Charging Cable,1,14.95,2019-08-29 12:39:00,629 Cherry St, Portland,OR,97035 +237230,Wired Headphones,1,11.99,2019-08-19 21:01:00,38 13th St, Dallas,TX,75001 +237231,34in Ultrawide Monitor,1,379.99,2019-08-27 12:05:00,635 Willow St, Boston,MA,02215 +237232,Bose SoundSport Headphones,1,99.99,2019-08-31 11:00:00,136 Highland St, Boston,MA,02215 +237232,AAA Batteries (4-pack),1,2.99,2019-08-31 11:00:00,136 Highland St, Boston,MA,02215 +237233,34in Ultrawide Monitor,1,379.99,2019-08-17 02:40:00,962 7th St, Boston,MA,02215 +237234,Apple Airpods Headphones,1,150.0,2019-08-16 14:32:00,822 9th St, San Francisco,CA,94016 +237235,Apple Airpods Headphones,1,150.0,2019-08-12 21:16:00,529 Chestnut St, San Francisco,CA,94016 +237236,USB-C Charging Cable,1,11.95,2019-08-29 08:06:00,127 Cedar St, Los Angeles,CA,90001 +237237,Lightning Charging Cable,2,14.95,2019-08-13 15:06:00,143 Spruce St, Atlanta,GA,30301 +237238,Lightning Charging Cable,1,14.95,2019-08-25 13:06:00,407 Washington St, Dallas,TX,75001 +237239,Bose SoundSport Headphones,1,99.99,2019-08-18 21:08:00,230 Maple St, Seattle,WA,98101 +237240,USB-C Charging Cable,1,11.95,2019-08-30 11:55:00,901 Cherry St, San Francisco,CA,94016 +237241,iPhone,1,700.0,2019-08-20 16:21:00,402 1st St, Austin,TX,73301 +237242,27in FHD Monitor,1,149.99,2019-08-30 15:57:00,956 Washington St, Los Angeles,CA,90001 +237243,Macbook Pro Laptop,1,1700.0,2019-08-06 19:49:00,684 Cherry St, Austin,TX,73301 +237244,Lightning Charging Cable,1,14.95,2019-08-15 10:35:00,304 Jefferson St, Austin,TX,73301 +237245,AAA Batteries (4-pack),1,2.99,2019-08-02 19:24:00,276 Wilson St, Boston,MA,02215 +237245,AA Batteries (4-pack),1,3.84,2019-08-02 19:24:00,276 Wilson St, Boston,MA,02215 +237246,Lightning Charging Cable,1,14.95,2019-08-06 16:08:00,137 Ridge St, New York City,NY,10001 +237247,Google Phone,1,600.0,2019-08-17 21:05:00,526 River St, San Francisco,CA,94016 +237248,AAA Batteries (4-pack),1,2.99,2019-08-28 19:02:00,319 Lake St, New York City,NY,10001 +237249,AA Batteries (4-pack),1,3.84,2019-08-13 21:57:00,768 Lake St, Seattle,WA,98101 +237250,Apple Airpods Headphones,1,150.0,2019-08-15 15:52:00,606 Willow St, Portland,ME,04101 +237251,iPhone,1,700.0,2019-08-30 11:18:00,542 River St, New York City,NY,10001 +237251,Wired Headphones,1,11.99,2019-08-30 11:18:00,542 River St, New York City,NY,10001 +237252,Lightning Charging Cable,1,14.95,2019-08-19 10:59:00,199 Forest St, New York City,NY,10001 +237253,USB-C Charging Cable,1,11.95,2019-08-02 10:50:00,351 Walnut St, New York City,NY,10001 +237254,ThinkPad Laptop,1,999.99,2019-08-07 20:03:00,547 Jefferson St, Dallas,TX,75001 +237255,USB-C Charging Cable,1,11.95,2019-08-26 15:08:00,540 Main St, New York City,NY,10001 +237256,AAA Batteries (4-pack),1,2.99,2019-08-02 15:27:00,578 Highland St, Atlanta,GA,30301 +237257,Lightning Charging Cable,1,14.95,2019-08-11 12:50:00,278 9th St, Los Angeles,CA,90001 +237258,AA Batteries (4-pack),1,3.84,2019-08-12 07:10:00,672 South St, Dallas,TX,75001 +237259,20in Monitor,1,109.99,2019-08-25 21:56:00,734 Jefferson St, San Francisco,CA,94016 +237260,Bose SoundSport Headphones,1,99.99,2019-08-30 19:48:00,389 1st St, Los Angeles,CA,90001 +237261,USB-C Charging Cable,1,11.95,2019-08-25 21:20:00,102 Elm St, Atlanta,GA,30301 +237261,Apple Airpods Headphones,1,150.0,2019-08-25 21:20:00,102 Elm St, Atlanta,GA,30301 +237262,AA Batteries (4-pack),1,3.84,2019-08-17 07:54:00,87 6th St, Los Angeles,CA,90001 +237263,ThinkPad Laptop,1,999.99,2019-08-04 12:21:00,809 Cedar St, Dallas,TX,75001 +237264,ThinkPad Laptop,1,999.99,2019-08-20 08:12:00,943 Wilson St, San Francisco,CA,94016 +237265,Apple Airpods Headphones,1,150.0,2019-08-03 14:02:00,666 Madison St, Los Angeles,CA,90001 +237266,AA Batteries (4-pack),1,3.84,2019-08-29 16:12:00,134 5th St, Seattle,WA,98101 +237267,iPhone,1,700.0,2019-08-17 17:11:00,368 Wilson St, New York City,NY,10001 +237267,Wired Headphones,1,11.99,2019-08-17 17:11:00,368 Wilson St, New York City,NY,10001 +237268,27in 4K Gaming Monitor,1,389.99,2019-08-24 15:16:00,513 Hill St, Dallas,TX,75001 +237269,LG Washing Machine,1,600.0,2019-08-04 13:22:00,72 Lincoln St, Los Angeles,CA,90001 +237270,AA Batteries (4-pack),2,3.84,2019-08-12 10:14:00,194 Pine St, Portland,OR,97035 +237271,USB-C Charging Cable,1,11.95,2019-08-22 10:57:00,369 Spruce St, San Francisco,CA,94016 +237272,AA Batteries (4-pack),2,3.84,2019-08-22 06:21:00,52 Washington St, Atlanta,GA,30301 +237273,Wired Headphones,1,11.99,2019-08-13 21:58:00,752 Jackson St, Dallas,TX,75001 +237274,Bose SoundSport Headphones,1,99.99,2019-08-11 12:28:00,494 Madison St, San Francisco,CA,94016 +237275,USB-C Charging Cable,1,11.95,2019-08-13 20:22:00,358 5th St, San Francisco,CA,94016 +237276,Lightning Charging Cable,1,14.95,2019-08-22 10:43:00,446 2nd St, Boston,MA,02215 +237277,Lightning Charging Cable,1,14.95,2019-08-02 21:15:00,11 Ridge St, New York City,NY,10001 +237278,Bose SoundSport Headphones,1,99.99,2019-08-24 10:50:00,108 1st St, San Francisco,CA,94016 +237279,AAA Batteries (4-pack),1,2.99,2019-08-02 21:47:00,59 Forest St, San Francisco,CA,94016 +237280,Wired Headphones,1,11.99,2019-08-13 07:52:00,171 5th St, Atlanta,GA,30301 +237281,27in FHD Monitor,1,149.99,2019-08-31 13:25:00,883 Spruce St, Seattle,WA,98101 +237282,Apple Airpods Headphones,1,150.0,2019-08-17 10:56:00,469 Main St, Dallas,TX,75001 +237283,Apple Airpods Headphones,1,150.0,2019-08-15 13:57:00,314 12th St, San Francisco,CA,94016 +237284,Bose SoundSport Headphones,1,99.99,2019-08-25 12:53:00,960 Lake St, Boston,MA,02215 +237285,ThinkPad Laptop,1,999.99,2019-08-05 20:30:00,516 Spruce St, Boston,MA,02215 +237286,Macbook Pro Laptop,1,1700.0,2019-08-13 21:34:00,902 Madison St, Boston,MA,02215 +237287,Apple Airpods Headphones,1,150.0,2019-08-21 19:19:00,418 Maple St, San Francisco,CA,94016 +237288,Google Phone,1,600.0,2019-08-20 14:33:00,45 6th St, San Francisco,CA,94016 +237288,Wired Headphones,1,11.99,2019-08-20 14:33:00,45 6th St, San Francisco,CA,94016 +237289,Bose SoundSport Headphones,1,99.99,2019-08-25 14:20:00,120 Center St, San Francisco,CA,94016 +237290,Vareebadd Phone,1,400.0,2019-08-21 15:16:00,926 Ridge St, Dallas,TX,75001 +237291,Apple Airpods Headphones,1,150.0,2019-08-09 22:00:00,777 10th St, San Francisco,CA,94016 +237292,Flatscreen TV,1,300.0,2019-08-09 20:58:00,349 Maple St, Los Angeles,CA,90001 +237293,USB-C Charging Cable,1,11.95,2019-08-19 19:59:00,61 Pine St, Los Angeles,CA,90001 +237294,Apple Airpods Headphones,1,150.0,2019-08-19 10:37:00,726 Main St, Boston,MA,02215 +237295,AAA Batteries (4-pack),1,2.99,2019-08-24 11:59:00,935 Cherry St, Boston,MA,02215 +237295,27in FHD Monitor,1,149.99,2019-08-24 11:59:00,935 Cherry St, Boston,MA,02215 +237296,AA Batteries (4-pack),2,3.84,2019-08-10 18:53:00,124 Adams St, San Francisco,CA,94016 +237297,USB-C Charging Cable,3,11.95,2019-08-16 21:16:00,566 Adams St, San Francisco,CA,94016 +237298,Flatscreen TV,1,300.0,2019-08-04 10:54:00,318 Elm St, Dallas,TX,75001 +237298,USB-C Charging Cable,1,11.95,2019-08-04 10:54:00,318 Elm St, Dallas,TX,75001 +237299,USB-C Charging Cable,1,11.95,2019-08-01 12:36:00,961 River St, Austin,TX,73301 +237299,Wired Headphones,1,11.99,2019-08-01 12:36:00,961 River St, Austin,TX,73301 +237300,Wired Headphones,1,11.99,2019-08-10 11:28:00,247 Madison St, New York City,NY,10001 +237301,Macbook Pro Laptop,1,1700.0,2019-08-24 22:45:00,348 Pine St, Seattle,WA,98101 +237302,Wired Headphones,1,11.99,2019-08-07 12:49:00,215 Sunset St, New York City,NY,10001 +237303,27in FHD Monitor,1,149.99,2019-08-06 18:27:00,365 6th St, San Francisco,CA,94016 +237304,Lightning Charging Cable,1,14.95,2019-08-27 09:13:00,472 Lake St, Dallas,TX,75001 +237305,Wired Headphones,1,11.99,2019-08-24 22:04:00,787 Center St, San Francisco,CA,94016 +237306,iPhone,1,700.0,2019-08-10 14:24:00,121 14th St, Boston,MA,02215 +237307,Wired Headphones,1,11.99,2019-08-06 23:54:00,2 Hill St, New York City,NY,10001 +237308,20in Monitor,1,109.99,2019-08-27 14:58:00,556 Church St, San Francisco,CA,94016 +237309,27in 4K Gaming Monitor,1,389.99,2019-08-25 21:53:00,468 Forest St, Boston,MA,02215 +237310,Wired Headphones,1,11.99,2019-08-24 02:01:00,601 Chestnut St, Portland,OR,97035 +237311,USB-C Charging Cable,1,11.95,2019-08-09 21:45:00,423 Walnut St, Portland,OR,97035 +237312,LG Washing Machine,1,600.0,2019-08-16 07:38:00,767 5th St, Boston,MA,02215 +237313,AAA Batteries (4-pack),2,2.99,2019-08-14 16:40:00,581 Maple St, San Francisco,CA,94016 +237314,Wired Headphones,1,11.99,2019-08-02 19:54:00,62 Dogwood St, Dallas,TX,75001 +237315,Lightning Charging Cable,1,14.95,2019-08-11 10:11:00,493 13th St, San Francisco,CA,94016 +237316,Bose SoundSport Headphones,1,99.99,2019-08-05 21:54:00,677 Meadow St, Boston,MA,02215 +237317,Apple Airpods Headphones,1,150.0,2019-08-16 14:03:00,532 Spruce St, Seattle,WA,98101 +237318,34in Ultrawide Monitor,1,379.99,2019-08-10 17:15:00,123 Dogwood St, San Francisco,CA,94016 +237319,Google Phone,1,600.0,2019-08-02 15:19:00,696 Center St, San Francisco,CA,94016 +237319,USB-C Charging Cable,1,11.95,2019-08-02 15:19:00,696 Center St, San Francisco,CA,94016 +237320,Google Phone,1,600.0,2019-08-27 12:54:00,281 South St, Portland,OR,97035 +237321,ThinkPad Laptop,1,999.99,2019-08-11 07:31:00,695 Jackson St, San Francisco,CA,94016 +237322,Lightning Charging Cable,1,14.95,2019-08-04 20:52:00,109 Lakeview St, Dallas,TX,75001 +237323,Lightning Charging Cable,1,14.95,2019-08-19 00:16:00,664 Park St, Austin,TX,73301 +237324,Apple Airpods Headphones,1,150.0,2019-08-27 12:44:00,627 4th St, Boston,MA,02215 +237325,Apple Airpods Headphones,1,150.0,2019-08-24 23:49:00,799 Park St, San Francisco,CA,94016 +237326,Apple Airpods Headphones,1,150.0,2019-08-07 16:54:00,653 Walnut St, Dallas,TX,75001 +237327,34in Ultrawide Monitor,1,379.99,2019-08-14 14:45:00,245 Maple St, New York City,NY,10001 +237328,USB-C Charging Cable,1,11.95,2019-08-05 16:25:00,644 Sunset St, Boston,MA,02215 +237329,Bose SoundSport Headphones,1,99.99,2019-08-25 02:30:00,878 9th St, San Francisco,CA,94016 +237330,AAA Batteries (4-pack),1,2.99,2019-08-06 13:34:00,85 13th St, Los Angeles,CA,90001 +237331,Lightning Charging Cable,1,14.95,2019-08-18 14:34:00,358 Park St, San Francisco,CA,94016 +237332,AAA Batteries (4-pack),1,2.99,2019-08-19 13:03:00,357 Cherry St, Dallas,TX,75001 +237333,Wired Headphones,1,11.99,2019-08-18 18:32:00,514 12th St, San Francisco,CA,94016 +237334,Lightning Charging Cable,1,14.95,2019-08-16 07:24:00,465 Dogwood St, Atlanta,GA,30301 +237335,Apple Airpods Headphones,1,150.0,2019-08-10 21:31:00,306 Madison St, New York City,NY,10001 +237336,Wired Headphones,1,11.99,2019-08-28 13:43:00,496 Church St, San Francisco,CA,94016 +237337,Wired Headphones,1,11.99,2019-08-22 22:05:00,858 Meadow St, New York City,NY,10001 +237338,AA Batteries (4-pack),1,3.84,2019-08-23 17:03:00,543 7th St, San Francisco,CA,94016 +237338,27in FHD Monitor,1,149.99,2019-08-23 17:03:00,543 7th St, San Francisco,CA,94016 +237339,AAA Batteries (4-pack),1,2.99,2019-08-04 19:44:00,539 Willow St, Atlanta,GA,30301 +237340,Lightning Charging Cable,1,14.95,2019-08-07 08:28:00,613 Pine St, New York City,NY,10001 +237341,USB-C Charging Cable,1,11.95,2019-08-03 21:02:00,770 Park St, Los Angeles,CA,90001 +237342,27in FHD Monitor,1,149.99,2019-08-09 23:35:00,593 4th St, Seattle,WA,98101 +237343,AA Batteries (4-pack),1,3.84,2019-08-07 20:11:00,937 Forest St, Boston,MA,02215 +237344,Wired Headphones,1,11.99,2019-08-15 22:11:00,768 Lakeview St, Portland,ME,04101 +237345,20in Monitor,1,109.99,2019-08-06 22:59:00,86 2nd St, Seattle,WA,98101 +237346,USB-C Charging Cable,2,11.95,2019-08-12 20:33:00,924 14th St, Austin,TX,73301 +237347,USB-C Charging Cable,1,11.95,2019-08-27 07:58:00,392 10th St, Atlanta,GA,30301 +237348,AA Batteries (4-pack),1,3.84,2019-08-29 09:55:00,782 Hickory St, Portland,ME,04101 +237349,USB-C Charging Cable,1,11.95,2019-08-30 15:00:00,307 Chestnut St, Los Angeles,CA,90001 +237350,Bose SoundSport Headphones,1,99.99,2019-08-14 18:23:00,24 8th St, Portland,OR,97035 +237351,27in FHD Monitor,1,149.99,2019-08-13 21:32:00,515 Hickory St, San Francisco,CA,94016 +237352,Wired Headphones,1,11.99,2019-08-21 14:08:00,761 11th St, San Francisco,CA,94016 +237353,Lightning Charging Cable,1,14.95,2019-08-25 17:51:00,674 7th St, San Francisco,CA,94016 +237354,20in Monitor,1,109.99,2019-08-31 12:07:00,747 South St, Los Angeles,CA,90001 +237355,AAA Batteries (4-pack),1,2.99,2019-08-09 10:01:00,285 Lakeview St, Portland,OR,97035 +237356,USB-C Charging Cable,1,11.95,2019-08-15 09:11:00,179 Johnson St, Dallas,TX,75001 +237357,Lightning Charging Cable,1,14.95,2019-08-19 12:03:00,903 Church St, San Francisco,CA,94016 +237358,ThinkPad Laptop,1,999.99,2019-08-13 19:01:00,952 Highland St, San Francisco,CA,94016 +237359,USB-C Charging Cable,1,11.95,2019-08-29 07:55:00,919 Johnson St, San Francisco,CA,94016 +237360,iPhone,1,700.0,2019-08-26 20:01:00,891 12th St, Los Angeles,CA,90001 +237361,USB-C Charging Cable,1,11.95,2019-08-27 15:56:00,352 Sunset St, Portland,OR,97035 +237362,Lightning Charging Cable,2,14.95,2019-08-28 14:44:00,859 River St, Seattle,WA,98101 +237363,USB-C Charging Cable,3,11.95,2019-08-26 13:08:00,717 Park St, Los Angeles,CA,90001 +237364,USB-C Charging Cable,1,11.95,2019-08-13 20:07:00,554 11th St, San Francisco,CA,94016 +237365,Lightning Charging Cable,1,14.95,2019-08-03 23:20:00,605 Johnson St, Dallas,TX,75001 +237366,Flatscreen TV,1,300.0,2019-08-08 18:10:00,752 Center St, Seattle,WA,98101 +237367,Apple Airpods Headphones,1,150.0,2019-08-28 15:32:00,370 North St, San Francisco,CA,94016 +237368,Apple Airpods Headphones,1,150.0,2019-08-09 17:38:00,147 Hickory St, Los Angeles,CA,90001 +237369,USB-C Charging Cable,1,11.95,2019-08-28 11:39:00,104 Center St, Dallas,TX,75001 +237370,Apple Airpods Headphones,1,150.0,2019-08-25 17:20:00,172 13th St, Atlanta,GA,30301 +237371,Lightning Charging Cable,1,14.95,2019-08-22 23:00:00,791 Madison St, New York City,NY,10001 +237372,Wired Headphones,1,11.99,2019-08-09 15:58:00,760 West St, New York City,NY,10001 +237373,AAA Batteries (4-pack),1,2.99,2019-08-08 21:38:00,417 Meadow St, San Francisco,CA,94016 +237374,AAA Batteries (4-pack),1,2.99,2019-08-01 10:56:00,611 Forest St, San Francisco,CA,94016 +237375,USB-C Charging Cable,1,11.95,2019-08-04 16:17:00,784 Sunset St, Seattle,WA,98101 +237376,USB-C Charging Cable,1,11.95,2019-08-31 14:04:00,270 4th St, Atlanta,GA,30301 +237377,Bose SoundSport Headphones,1,99.99,2019-08-31 17:12:00,604 Chestnut St, San Francisco,CA,94016 +237378,34in Ultrawide Monitor,1,379.99,2019-08-26 09:13:00,741 13th St, San Francisco,CA,94016 +237379,AA Batteries (4-pack),1,3.84,2019-08-01 09:35:00,381 Willow St, Atlanta,GA,30301 +237380,Bose SoundSport Headphones,1,99.99,2019-08-24 10:41:00,162 2nd St, Seattle,WA,98101 +237381,USB-C Charging Cable,1,11.95,2019-08-11 21:25:00,466 1st St, New York City,NY,10001 +237382,27in 4K Gaming Monitor,1,389.99,2019-08-10 16:56:00,118 5th St, Seattle,WA,98101 +237383,Lightning Charging Cable,1,14.95,2019-08-21 08:48:00,608 South St, Portland,OR,97035 +237384,Wired Headphones,1,11.99,2019-08-12 16:53:00,985 Maple St, Seattle,WA,98101 +237385,Macbook Pro Laptop,1,1700.0,2019-08-04 11:33:00,40 Adams St, Portland,OR,97035 +237386,USB-C Charging Cable,2,11.95,2019-08-05 14:15:00,845 Willow St, Portland,OR,97035 +237387,Macbook Pro Laptop,1,1700.0,2019-08-10 11:14:00,320 Center St, New York City,NY,10001 +237388,USB-C Charging Cable,1,11.95,2019-08-30 11:05:00,491 5th St, San Francisco,CA,94016 +237389,AA Batteries (4-pack),1,3.84,2019-08-01 13:17:00,263 13th St, New York City,NY,10001 +237390,34in Ultrawide Monitor,1,379.99,2019-08-04 07:30:00,294 Wilson St, Austin,TX,73301 +237391,AAA Batteries (4-pack),1,2.99,2019-08-11 12:01:00,854 10th St, Los Angeles,CA,90001 +237392,27in FHD Monitor,1,149.99,2019-08-04 20:30:00,866 Jackson St, Austin,TX,73301 +237393,AAA Batteries (4-pack),1,2.99,2019-08-09 20:49:00,473 Jefferson St, San Francisco,CA,94016 +237394,USB-C Charging Cable,1,11.95,2019-08-27 17:27:00,975 Cedar St, Atlanta,GA,30301 +237395,AA Batteries (4-pack),1,3.84,2019-08-26 16:56:00,3 2nd St, San Francisco,CA,94016 +237396,27in FHD Monitor,1,149.99,2019-08-04 15:41:00,289 Lakeview St, Seattle,WA,98101 +237396,Bose SoundSport Headphones,1,99.99,2019-08-04 15:41:00,289 Lakeview St, Seattle,WA,98101 +237397,AAA Batteries (4-pack),1,2.99,2019-08-10 09:01:00,185 Lincoln St, Los Angeles,CA,90001 +237398,Lightning Charging Cable,1,14.95,2019-08-20 20:41:00,10 4th St, Seattle,WA,98101 +237399,Flatscreen TV,1,300.0,2019-08-28 17:32:00,434 12th St, Seattle,WA,98101 +237400,Flatscreen TV,1,300.0,2019-08-31 15:07:00,588 Jefferson St, New York City,NY,10001 +237401,USB-C Charging Cable,1,11.95,2019-08-11 12:44:00,356 Ridge St, San Francisco,CA,94016 +237402,USB-C Charging Cable,1,11.95,2019-08-06 20:25:00,409 12th St, Los Angeles,CA,90001 +237403,Lightning Charging Cable,1,14.95,2019-08-31 10:06:00,181 Elm St, San Francisco,CA,94016 +237404,Apple Airpods Headphones,1,150.0,2019-08-24 13:52:00,710 Lakeview St, Atlanta,GA,30301 +237405,27in 4K Gaming Monitor,1,389.99,2019-08-15 10:52:00,415 Ridge St, San Francisco,CA,94016 +237406,Wired Headphones,1,11.99,2019-08-25 16:23:00,155 Lincoln St, New York City,NY,10001 +237407,AAA Batteries (4-pack),1,2.99,2019-08-24 23:56:00,605 Elm St, New York City,NY,10001 +237408,Lightning Charging Cable,1,14.95,2019-08-10 19:18:00,455 Hill St, Dallas,TX,75001 +237409,Bose SoundSport Headphones,1,99.99,2019-08-13 11:27:00,906 8th St, San Francisco,CA,94016 +237410,AAA Batteries (4-pack),1,2.99,2019-08-26 16:14:00,737 North St, Los Angeles,CA,90001 +237411,Apple Airpods Headphones,1,150.0,2019-08-23 18:08:00,143 9th St, San Francisco,CA,94016 +237412,Google Phone,1,600.0,2019-08-02 10:48:00,720 Chestnut St, San Francisco,CA,94016 +237413,AAA Batteries (4-pack),2,2.99,2019-08-08 08:53:00,626 13th St, Los Angeles,CA,90001 +237414,Macbook Pro Laptop,1,1700.0,2019-08-25 17:16:00,111 Lincoln St, Seattle,WA,98101 +237415,Apple Airpods Headphones,1,150.0,2019-08-12 15:09:00,815 4th St, Atlanta,GA,30301 +237416,iPhone,1,700.0,2019-08-18 16:30:00,176 6th St, San Francisco,CA,94016 +237417,Apple Airpods Headphones,1,150.0,2019-08-05 16:00:00,260 Lake St, Atlanta,GA,30301 +237418,Wired Headphones,1,11.99,2019-08-07 14:23:00,305 Spruce St, Portland,ME,04101 +237419,Lightning Charging Cable,1,14.95,2019-08-27 17:57:00,151 River St, Los Angeles,CA,90001 +237420,AAA Batteries (4-pack),1,2.99,2019-08-16 10:57:00,87 Meadow St, Dallas,TX,75001 +237421,Flatscreen TV,1,300.0,2019-08-11 14:21:00,717 7th St, San Francisco,CA,94016 +237422,LG Dryer,1,600.0,2019-08-04 18:00:00,306 West St, New York City,NY,10001 +237423,27in 4K Gaming Monitor,1,389.99,2019-08-23 15:39:00,82 Walnut St, Dallas,TX,75001 +237424,34in Ultrawide Monitor,1,379.99,2019-08-20 20:05:00,369 4th St, Los Angeles,CA,90001 +237425,Google Phone,1,600.0,2019-08-14 05:36:00,224 2nd St, Boston,MA,02215 +237426,AA Batteries (4-pack),1,3.84,2019-08-31 09:28:00,352 12th St, Los Angeles,CA,90001 +237427,Wired Headphones,1,11.99,2019-08-15 15:14:00,416 Washington St, Portland,ME,04101 +237428,34in Ultrawide Monitor,1,379.99,2019-08-22 12:23:00,115 6th St, Los Angeles,CA,90001 +237429,Apple Airpods Headphones,1,150.0,2019-08-23 13:48:00,497 Jefferson St, San Francisco,CA,94016 +237430,27in 4K Gaming Monitor,1,389.99,2019-08-03 09:39:00,384 Johnson St, New York City,NY,10001 +237430,Lightning Charging Cable,1,14.95,2019-08-03 09:39:00,384 Johnson St, New York City,NY,10001 +237431,Lightning Charging Cable,1,14.95,2019-08-21 21:15:00,386 Meadow St, Dallas,TX,75001 +237432,USB-C Charging Cable,1,11.95,2019-08-02 09:53:00,506 12th St, San Francisco,CA,94016 +237433,AA Batteries (4-pack),2,3.84,2019-08-02 13:57:00,819 Spruce St, San Francisco,CA,94016 +237434,AA Batteries (4-pack),1,3.84,2019-08-31 12:34:00,551 West St, Atlanta,GA,30301 +237435,USB-C Charging Cable,1,11.95,2019-08-21 18:46:00,499 6th St, Atlanta,GA,30301 +237436,USB-C Charging Cable,1,11.95,2019-08-18 19:41:00,83 2nd St, Dallas,TX,75001 +237437,AAA Batteries (4-pack),2,2.99,2019-08-23 19:14:00,496 Main St, Seattle,WA,98101 +237438,27in 4K Gaming Monitor,1,389.99,2019-08-08 15:09:00,496 South St, Dallas,TX,75001 +237439,Bose SoundSport Headphones,1,99.99,2019-08-07 14:26:00,675 Lake St, Los Angeles,CA,90001 +237440,AAA Batteries (4-pack),1,2.99,2019-08-11 19:50:00,775 8th St, Portland,OR,97035 +237441,Wired Headphones,1,11.99,2019-08-07 08:21:00,404 Jackson St, Boston,MA,02215 +237442,USB-C Charging Cable,1,11.95,2019-08-03 16:32:00,484 Main St, San Francisco,CA,94016 +237443,Wired Headphones,1,11.99,2019-08-16 11:13:00,818 Lincoln St, Portland,ME,04101 +237444,Macbook Pro Laptop,1,1700.0,2019-08-19 13:02:00,820 Jefferson St, Los Angeles,CA,90001 +237445,USB-C Charging Cable,1,11.95,2019-08-10 10:04:00,337 Meadow St, San Francisco,CA,94016 +237446,AA Batteries (4-pack),1,3.84,2019-08-19 15:40:00,161 Lake St, San Francisco,CA,94016 +237447,Lightning Charging Cable,1,14.95,2019-08-27 16:50:00,286 Sunset St, New York City,NY,10001 +237448,Lightning Charging Cable,1,14.95,2019-08-11 13:38:00,428 14th St, Dallas,TX,75001 +237449,AA Batteries (4-pack),2,3.84,2019-08-10 11:18:00,36 North St, Dallas,TX,75001 +237450,27in 4K Gaming Monitor,1,389.99,2019-08-13 06:53:00,99 Spruce St, New York City,NY,10001 +237451,Wired Headphones,1,11.99,2019-08-29 11:12:00,987 Forest St, Los Angeles,CA,90001 +237452,Apple Airpods Headphones,1,150.0,2019-08-22 11:00:00,200 Jefferson St, San Francisco,CA,94016 +237453,AAA Batteries (4-pack),1,2.99,2019-08-11 13:14:00,582 Lakeview St, Seattle,WA,98101 +237454,27in 4K Gaming Monitor,1,389.99,2019-08-28 09:49:00,13 Main St, New York City,NY,10001 +237455,AA Batteries (4-pack),1,3.84,2019-08-28 18:11:00,159 1st St, New York City,NY,10001 +237456,USB-C Charging Cable,1,11.95,2019-08-06 10:06:00,772 Hickory St, New York City,NY,10001 +237457,Wired Headphones,1,11.99,2019-08-30 13:42:00,116 13th St, Portland,OR,97035 +237458,AA Batteries (4-pack),2,3.84,2019-08-03 03:59:00,679 Adams St, San Francisco,CA,94016 +237459,Macbook Pro Laptop,1,1700.0,2019-08-25 07:30:00,478 Forest St, Boston,MA,02215 +237460,AA Batteries (4-pack),1,3.84,2019-08-13 15:45:00,417 2nd St, San Francisco,CA,94016 +237461,Apple Airpods Headphones,1,150.0,2019-08-25 23:29:00,167 Wilson St, Los Angeles,CA,90001 +237462,34in Ultrawide Monitor,1,379.99,2019-08-21 00:09:00,943 10th St, Boston,MA,02215 +237463,Bose SoundSport Headphones,1,99.99,2019-08-11 22:02:00,45 Center St, Dallas,TX,75001 +237464,Wired Headphones,1,11.99,2019-08-11 18:54:00,673 River St, Dallas,TX,75001 +237465,34in Ultrawide Monitor,1,379.99,2019-08-15 04:59:00,266 South St, Los Angeles,CA,90001 +237466,AA Batteries (4-pack),1,3.84,2019-08-25 22:11:00,57 Washington St, Los Angeles,CA,90001 +237467,Apple Airpods Headphones,1,150.0,2019-08-30 18:37:00,975 West St, San Francisco,CA,94016 +237468,USB-C Charging Cable,2,11.95,2019-08-11 17:39:00,48 Maple St, Dallas,TX,75001 +237469,Vareebadd Phone,1,400.0,2019-08-13 16:56:00,752 Jackson St, Los Angeles,CA,90001 +237469,34in Ultrawide Monitor,1,379.99,2019-08-13 16:56:00,752 Jackson St, Los Angeles,CA,90001 +237470,Bose SoundSport Headphones,1,99.99,2019-08-25 20:44:00,549 8th St, Los Angeles,CA,90001 +237471,Apple Airpods Headphones,1,150.0,2019-08-17 21:34:00,877 Ridge St, San Francisco,CA,94016 +237472,Apple Airpods Headphones,1,150.0,2019-08-05 09:37:00,38 10th St, Los Angeles,CA,90001 +237473,AAA Batteries (4-pack),2,2.99,2019-08-11 21:56:00,451 Spruce St, San Francisco,CA,94016 +237474,AA Batteries (4-pack),3,3.84,2019-08-01 10:50:00,474 Cedar St, Boston,MA,02215 +237475,Lightning Charging Cable,1,14.95,2019-08-22 15:25:00,817 Chestnut St, Los Angeles,CA,90001 +237476,USB-C Charging Cable,1,11.95,2019-08-19 15:06:00,41 North St, Los Angeles,CA,90001 +237477,ThinkPad Laptop,1,999.99,2019-08-07 18:21:00,129 Pine St, San Francisco,CA,94016 +237478,Wired Headphones,1,11.99,2019-08-24 21:35:00,16 Park St, San Francisco,CA,94016 +237479,Apple Airpods Headphones,1,150.0,2019-08-19 13:46:00,130 9th St, Seattle,WA,98101 +237480,Lightning Charging Cable,3,14.95,2019-08-08 06:15:00,124 8th St, New York City,NY,10001 +237481,AAA Batteries (4-pack),1,2.99,2019-08-17 21:40:00,561 13th St, New York City,NY,10001 +237482,AAA Batteries (4-pack),2,2.99,2019-08-14 12:50:00,133 12th St, Boston,MA,02215 +237483,Lightning Charging Cable,1,14.95,2019-08-04 08:06:00,687 Wilson St, San Francisco,CA,94016 +237484,USB-C Charging Cable,1,11.95,2019-08-18 22:35:00,722 Lincoln St, Seattle,WA,98101 +237485,Bose SoundSport Headphones,1,99.99,2019-08-22 04:07:00,866 Meadow St, Portland,OR,97035 +237486,USB-C Charging Cable,1,11.95,2019-08-30 19:50:00,552 North St, Seattle,WA,98101 +237487,27in 4K Gaming Monitor,1,389.99,2019-08-11 18:47:00,340 Adams St, Atlanta,GA,30301 +237488,AAA Batteries (4-pack),1,2.99,2019-08-03 12:36:00,94 Adams St, New York City,NY,10001 +237489,27in FHD Monitor,1,149.99,2019-08-13 18:42:00,834 5th St, New York City,NY,10001 +237490,AAA Batteries (4-pack),1,2.99,2019-08-31 00:21:00,715 4th St, Atlanta,GA,30301 +237491,27in 4K Gaming Monitor,1,389.99,2019-08-14 13:06:00,850 Hickory St, San Francisco,CA,94016 +237492,27in 4K Gaming Monitor,1,389.99,2019-08-04 10:11:00,536 1st St, Los Angeles,CA,90001 +237493,AA Batteries (4-pack),1,3.84,2019-08-20 01:37:00,997 River St, New York City,NY,10001 +237494,Flatscreen TV,1,300.0,2019-08-17 14:58:00,28 South St, Austin,TX,73301 +237495,AAA Batteries (4-pack),1,2.99,2019-08-15 16:17:00,688 11th St, Boston,MA,02215 +237496,AAA Batteries (4-pack),4,2.99,2019-08-14 13:43:00,11 Wilson St, Boston,MA,02215 +237497,Apple Airpods Headphones,1,150.0,2019-08-28 21:23:00,421 Church St, Los Angeles,CA,90001 +237498,AA Batteries (4-pack),1,3.84,2019-08-16 09:31:00,365 West St, San Francisco,CA,94016 +237499,Lightning Charging Cable,1,14.95,2019-08-29 16:34:00,70 Hickory St, New York City,NY,10001 +237500,iPhone,1,700.0,2019-08-31 07:40:00,965 Main St, Los Angeles,CA,90001 +237501,AAA Batteries (4-pack),2,2.99,2019-08-19 19:30:00,187 Spruce St, San Francisco,CA,94016 +237502,USB-C Charging Cable,1,11.95,2019-08-06 17:28:00,975 Ridge St, San Francisco,CA,94016 +237503,Bose SoundSport Headphones,1,99.99,2019-08-10 10:33:00,710 Sunset St, Portland,OR,97035 +237503,Lightning Charging Cable,1,14.95,2019-08-10 10:33:00,710 Sunset St, Portland,OR,97035 +237504,Apple Airpods Headphones,1,150.0,2019-08-14 14:16:00,526 1st St, Seattle,WA,98101 +237505,AA Batteries (4-pack),2,3.84,2019-08-16 16:05:00,676 Jackson St, Los Angeles,CA,90001 +237506,Bose SoundSport Headphones,1,99.99,2019-08-31 17:17:00,771 Madison St, San Francisco,CA,94016 +237507,Apple Airpods Headphones,1,150.0,2019-08-29 20:24:00,657 10th St, Austin,TX,73301 +237508,34in Ultrawide Monitor,1,379.99,2019-08-26 20:38:00,542 9th St, Austin,TX,73301 +237509,iPhone,1,700.0,2019-08-16 17:55:00,74 West St, San Francisco,CA,94016 +237510,Lightning Charging Cable,1,14.95,2019-08-05 14:35:00,596 Spruce St, New York City,NY,10001 +237511,27in FHD Monitor,1,149.99,2019-08-21 15:58:00,336 6th St, New York City,NY,10001 +237512,Flatscreen TV,1,300.0,2019-08-03 20:04:00,694 Madison St, Los Angeles,CA,90001 +237513,Apple Airpods Headphones,1,150.0,2019-08-10 07:49:00,757 Lakeview St, San Francisco,CA,94016 +237514,AAA Batteries (4-pack),1,2.99,2019-08-15 13:32:00,161 Willow St, Boston,MA,02215 +237515,Google Phone,1,600.0,2019-08-17 14:30:00,539 Lake St, New York City,NY,10001 +237516,AAA Batteries (4-pack),1,2.99,2019-08-03 15:47:00,906 Meadow St, Dallas,TX,75001 +237517,AA Batteries (4-pack),2,3.84,2019-08-29 12:17:00,72 Church St, Boston,MA,02215 +237518,AA Batteries (4-pack),1,3.84,2019-08-12 20:11:00,988 Johnson St, Austin,TX,73301 +237519,Wired Headphones,1,11.99,2019-08-22 21:51:00,527 13th St, Los Angeles,CA,90001 +237520,USB-C Charging Cable,1,11.95,2019-08-15 20:14:00,888 2nd St, Atlanta,GA,30301 +237521,USB-C Charging Cable,1,11.95,2019-08-20 14:43:00,132 South St, Boston,MA,02215 +237522,AAA Batteries (4-pack),1,2.99,2019-08-14 20:34:00,919 9th St, New York City,NY,10001 +237523,AAA Batteries (4-pack),2,2.99,2019-08-23 11:58:00,163 9th St, Atlanta,GA,30301 +237524,Wired Headphones,1,11.99,2019-08-02 04:42:00,589 Maple St, Boston,MA,02215 +237525,Flatscreen TV,1,300.0,2019-08-05 16:57:00,251 Lakeview St, New York City,NY,10001 +237526,iPhone,1,700.0,2019-08-01 17:07:00,145 Meadow St, Austin,TX,73301 +237527,LG Dryer,1,600.0,2019-08-12 08:23:00,355 Chestnut St, Los Angeles,CA,90001 +237528,Lightning Charging Cable,1,14.95,2019-08-05 16:21:00,887 Park St, San Francisco,CA,94016 +237529,Lightning Charging Cable,1,14.95,2019-08-04 16:42:00,661 Forest St, Seattle,WA,98101 +237530,AA Batteries (4-pack),1,3.84,2019-08-30 22:24:00,613 Lake St, San Francisco,CA,94016 +237531,Lightning Charging Cable,1,14.95,2019-08-26 19:01:00,683 Sunset St, San Francisco,CA,94016 +237532,Vareebadd Phone,1,400.0,2019-08-30 18:52:00,215 Chestnut St, Seattle,WA,98101 +237533,USB-C Charging Cable,1,11.95,2019-08-12 00:27:00,427 Lake St, Boston,MA,02215 +237534,Apple Airpods Headphones,1,150.0,2019-08-28 08:18:00,650 Adams St, San Francisco,CA,94016 +237535,27in FHD Monitor,1,149.99,2019-08-26 02:19:00,393 8th St, Austin,TX,73301 +237536,Bose SoundSport Headphones,1,99.99,2019-08-11 17:29:00,83 Church St, New York City,NY,10001 +237537,Flatscreen TV,1,300.0,2019-08-27 17:20:00,945 Sunset St, Dallas,TX,75001 +237538,USB-C Charging Cable,1,11.95,2019-08-11 19:13:00,936 Forest St, Atlanta,GA,30301 +237539,Wired Headphones,1,11.99,2019-08-11 08:49:00,844 Elm St, San Francisco,CA,94016 +237540,Vareebadd Phone,1,400.0,2019-08-24 17:54:00,136 2nd St, San Francisco,CA,94016 +237540,USB-C Charging Cable,1,11.95,2019-08-24 17:54:00,136 2nd St, San Francisco,CA,94016 +237541,27in 4K Gaming Monitor,1,389.99,2019-08-19 18:21:00,933 Center St, Los Angeles,CA,90001 +237542,Lightning Charging Cable,1,14.95,2019-08-05 14:28:00,743 Dogwood St, San Francisco,CA,94016 +237543,ThinkPad Laptop,1,999.99,2019-08-01 22:06:00,157 Spruce St, San Francisco,CA,94016 +237544,Bose SoundSport Headphones,1,99.99,2019-08-04 14:38:00,701 Willow St, San Francisco,CA,94016 +237545,Bose SoundSport Headphones,1,99.99,2019-08-13 15:50:00,409 2nd St, Atlanta,GA,30301 +237546,AAA Batteries (4-pack),2,2.99,2019-08-03 08:56:00,355 Washington St, Atlanta,GA,30301 +237547,AAA Batteries (4-pack),1,2.99,2019-08-27 16:17:00,568 Dogwood St, Atlanta,GA,30301 +237548,AA Batteries (4-pack),1,3.84,2019-08-28 18:38:00,851 Spruce St, New York City,NY,10001 +237549,AAA Batteries (4-pack),1,2.99,2019-08-22 12:55:00,137 10th St, Dallas,TX,75001 +237550,Bose SoundSport Headphones,1,99.99,2019-08-21 10:10:00,804 Chestnut St, San Francisco,CA,94016 +237551,iPhone,1,700.0,2019-08-18 19:55:00,743 Madison St, San Francisco,CA,94016 +237552,AAA Batteries (4-pack),1,2.99,2019-08-18 17:57:00,915 1st St, San Francisco,CA,94016 +237553,Apple Airpods Headphones,1,150.0,2019-08-18 19:02:00,679 13th St, San Francisco,CA,94016 +237554,AAA Batteries (4-pack),2,2.99,2019-08-28 22:03:00,737 13th St, San Francisco,CA,94016 +237555,iPhone,1,700.0,2019-08-20 07:42:00,897 Park St, San Francisco,CA,94016 +237556,iPhone,1,700.0,2019-08-23 19:20:00,503 Washington St, New York City,NY,10001 +237556,Lightning Charging Cable,1,14.95,2019-08-23 19:20:00,503 Washington St, New York City,NY,10001 +237557,Lightning Charging Cable,1,14.95,2019-08-22 22:22:00,555 Sunset St, San Francisco,CA,94016 +237558,Macbook Pro Laptop,1,1700.0,2019-08-31 20:46:00,714 Lakeview St, Atlanta,GA,30301 +237559,27in 4K Gaming Monitor,1,389.99,2019-08-15 22:58:00,73 9th St, New York City,NY,10001 +237560,USB-C Charging Cable,1,11.95,2019-08-09 00:26:00,397 Lincoln St, San Francisco,CA,94016 +237561,AAA Batteries (4-pack),1,2.99,2019-08-03 14:59:00,309 Church St, Atlanta,GA,30301 +237562,Apple Airpods Headphones,1,150.0,2019-08-15 10:19:00,509 Walnut St, Boston,MA,02215 +237563,Lightning Charging Cable,1,14.95,2019-08-21 11:34:00,240 Adams St, Austin,TX,73301 +237564,20in Monitor,1,109.99,2019-08-25 12:05:00,12 Madison St, San Francisco,CA,94016 +237565,USB-C Charging Cable,1,11.95,2019-08-02 22:24:00,27 4th St, New York City,NY,10001 +237566,Bose SoundSport Headphones,1,99.99,2019-08-15 10:07:00,936 11th St, San Francisco,CA,94016 +237567,Bose SoundSport Headphones,1,99.99,2019-08-01 19:42:00,141 4th St, Boston,MA,02215 +237568,Bose SoundSport Headphones,1,99.99,2019-08-04 12:15:00,582 10th St, Atlanta,GA,30301 +237569,AA Batteries (4-pack),1,3.84,2019-08-29 12:55:00,514 Washington St, Boston,MA,02215 +237570,Macbook Pro Laptop,1,1700.0,2019-08-03 09:20:00,495 12th St, New York City,NY,10001 +237571,AA Batteries (4-pack),1,3.84,2019-08-24 11:05:00,676 9th St, San Francisco,CA,94016 +237572,AA Batteries (4-pack),2,3.84,2019-08-13 02:59:00,102 Elm St, Dallas,TX,75001 +237573,Bose SoundSport Headphones,1,99.99,2019-08-05 20:38:00,278 8th St, Los Angeles,CA,90001 +237574,LG Dryer,1,600.0,2019-08-05 13:30:00,812 Lakeview St, San Francisco,CA,94016 +237575,AA Batteries (4-pack),1,3.84,2019-08-08 15:22:00,231 Highland St, San Francisco,CA,94016 +237576,Flatscreen TV,1,300.0,2019-08-03 18:25:00,299 Ridge St, Boston,MA,02215 +237577,AA Batteries (4-pack),1,3.84,2019-08-24 13:52:00,581 14th St, Portland,OR,97035 +237578,Apple Airpods Headphones,1,150.0,2019-08-02 02:30:00,99 Chestnut St, San Francisco,CA,94016 +237579,Apple Airpods Headphones,1,150.0,2019-08-28 23:25:00,871 Hill St, Dallas,TX,75001 +237580,Apple Airpods Headphones,1,150.0,2019-08-31 20:40:00,504 13th St, Dallas,TX,75001 +237581,Lightning Charging Cable,1,14.95,2019-08-15 16:24:00,787 Johnson St, Los Angeles,CA,90001 +237582,Bose SoundSport Headphones,1,99.99,2019-08-23 11:37:00,47 11th St, Austin,TX,73301 +237583,20in Monitor,1,109.99,2019-08-02 17:49:00,22 Sunset St, San Francisco,CA,94016 +237584,Google Phone,1,600.0,2019-08-16 11:08:00,892 Hickory St, Atlanta,GA,30301 +237584,USB-C Charging Cable,1,11.95,2019-08-16 11:08:00,892 Hickory St, Atlanta,GA,30301 +237585,AAA Batteries (4-pack),1,2.99,2019-08-29 18:11:00,109 8th St, Seattle,WA,98101 +237586,Bose SoundSport Headphones,1,99.99,2019-08-10 23:00:00,259 Adams St, San Francisco,CA,94016 +237587,LG Washing Machine,1,600.0,2019-08-10 18:34:00,289 Lincoln St, Boston,MA,02215 +237588,Apple Airpods Headphones,1,150.0,2019-08-16 12:15:00,572 Cedar St, San Francisco,CA,94016 +237589,ThinkPad Laptop,1,999.99,2019-08-11 10:44:00,69 Chestnut St, Portland,ME,04101 +237590,Lightning Charging Cable,1,14.95,2019-08-01 08:19:00,62 Sunset St, Seattle,WA,98101 +237591,Apple Airpods Headphones,1,150.0,2019-08-25 04:33:00,829 1st St, Portland,OR,97035 +237592,AA Batteries (4-pack),1,3.84,2019-08-19 14:36:00,431 5th St, Atlanta,GA,30301 +237593,AA Batteries (4-pack),2,3.84,2019-08-04 10:23:00,36 Willow St, San Francisco,CA,94016 +237594,Lightning Charging Cable,1,14.95,2019-08-16 09:28:00,606 Elm St, Austin,TX,73301 +237595,Apple Airpods Headphones,1,150.0,2019-08-26 21:29:00,558 Spruce St, New York City,NY,10001 +237596,Lightning Charging Cable,1,14.95,2019-08-13 11:30:00,34 Cedar St, Boston,MA,02215 +237597,AAA Batteries (4-pack),5,2.99,2019-08-31 12:29:00,198 6th St, Boston,MA,02215 +237598,Bose SoundSport Headphones,1,99.99,2019-08-27 19:02:00,416 Pine St, San Francisco,CA,94016 +237599,Bose SoundSport Headphones,1,99.99,2019-08-13 10:43:00,188 2nd St, Atlanta,GA,30301 +237600,Apple Airpods Headphones,1,150.0,2019-08-30 20:58:00,943 Madison St, San Francisco,CA,94016 +237601,AA Batteries (4-pack),1,3.84,2019-08-06 18:38:00,567 River St, Los Angeles,CA,90001 +237602,LG Dryer,1,600.0,2019-08-09 03:48:00,413 13th St, Los Angeles,CA,90001 +237603,Apple Airpods Headphones,1,150.0,2019-08-29 12:03:00,333 9th St, Atlanta,GA,30301 +237604,27in FHD Monitor,1,149.99,2019-08-22 00:00:00,514 Johnson St, New York City,NY,10001 +237605,Apple Airpods Headphones,1,150.0,2019-08-24 16:50:00,931 Washington St, San Francisco,CA,94016 +237606,USB-C Charging Cable,1,11.95,2019-08-14 13:16:00,741 12th St, San Francisco,CA,94016 +237607,Apple Airpods Headphones,1,150.0,2019-08-26 18:23:00,791 12th St, San Francisco,CA,94016 +237608,ThinkPad Laptop,1,999.99,2019-08-16 22:28:00,113 4th St, Dallas,TX,75001 +237609,Apple Airpods Headphones,1,150.0,2019-08-03 21:37:00,747 Hill St, New York City,NY,10001 +237610,34in Ultrawide Monitor,1,379.99,2019-08-20 16:55:00,289 Lakeview St, New York City,NY,10001 +237611,Lightning Charging Cable,1,14.95,2019-08-26 11:37:00,451 2nd St, Los Angeles,CA,90001 +237612,USB-C Charging Cable,1,11.95,2019-08-13 18:31:00,790 North St, Portland,ME,04101 +237613,USB-C Charging Cable,1,11.95,2019-08-05 15:20:00,382 Dogwood St, Portland,OR,97035 +237614,Bose SoundSport Headphones,1,99.99,2019-08-29 06:43:00,902 13th St, Los Angeles,CA,90001 +237615,Lightning Charging Cable,1,14.95,2019-08-19 14:10:00,243 1st St, Los Angeles,CA,90001 +237616,27in FHD Monitor,1,149.99,2019-08-14 08:35:00,28 4th St, Boston,MA,02215 +237617,Wired Headphones,1,11.99,2019-08-06 13:01:00,833 Forest St, San Francisco,CA,94016 +237618,Google Phone,1,600.0,2019-08-10 18:02:00,227 9th St, Boston,MA,02215 +237619,Wired Headphones,1,11.99,2019-08-09 21:23:00,57 10th St, Dallas,TX,75001 +237620,Apple Airpods Headphones,1,150.0,2019-08-06 20:56:00,539 Maple St, Portland,ME,04101 +237621,USB-C Charging Cable,1,11.95,2019-08-31 19:52:00,366 5th St, Boston,MA,02215 +237622,AAA Batteries (4-pack),2,2.99,2019-08-01 20:28:00,17 Chestnut St, Dallas,TX,75001 +237623,Lightning Charging Cable,1,14.95,2019-08-02 18:46:00,805 Forest St, Austin,TX,73301 +237624,20in Monitor,1,109.99,2019-08-02 18:43:00,670 Wilson St, New York City,NY,10001 +237625,Wired Headphones,1,11.99,2019-08-10 08:14:00,204 Main St, Atlanta,GA,30301 +237626,Flatscreen TV,1,300.0,2019-08-28 15:33:00,89 9th St, San Francisco,CA,94016 +237627,Wired Headphones,2,11.99,2019-08-16 14:22:00,283 Sunset St, Los Angeles,CA,90001 +237628,Lightning Charging Cable,1,14.95,2019-08-16 16:31:00,722 Main St, Austin,TX,73301 +237629,AAA Batteries (4-pack),1,2.99,2019-08-09 23:24:00,13 Cedar St, Seattle,WA,98101 +237629,USB-C Charging Cable,1,11.95,2019-08-09 23:24:00,13 Cedar St, Seattle,WA,98101 +237630,Flatscreen TV,1,300.0,2019-08-23 14:18:00,148 12th St, New York City,NY,10001 +237631,AA Batteries (4-pack),2,3.84,2019-08-15 09:48:00,73 Willow St, Austin,TX,73301 +237632,20in Monitor,1,109.99,2019-08-05 05:35:00,477 8th St, San Francisco,CA,94016 +237633,AAA Batteries (4-pack),3,2.99,2019-08-09 14:29:00,952 6th St, Austin,TX,73301 +237634,27in FHD Monitor,1,149.99,2019-08-01 14:28:00,364 Lincoln St, Los Angeles,CA,90001 +237635,Lightning Charging Cable,1,14.95,2019-08-12 06:46:00,740 4th St, Austin,TX,73301 +237636,Lightning Charging Cable,1,14.95,2019-08-17 23:50:00,566 6th St, San Francisco,CA,94016 +237637,Wired Headphones,1,11.99,2019-08-17 22:17:00,307 8th St, New York City,NY,10001 +237638,Wired Headphones,1,11.99,2019-08-24 15:08:00,917 Chestnut St, Boston,MA,02215 +237639,AAA Batteries (4-pack),2,2.99,2019-08-05 22:18:00,660 Church St, Portland,OR,97035 +237640,AA Batteries (4-pack),1,3.84,2019-08-12 04:25:00,984 Lincoln St, New York City,NY,10001 +237641,AA Batteries (4-pack),1,3.84,2019-08-08 09:55:00,939 Wilson St, Boston,MA,02215 +237642,34in Ultrawide Monitor,1,379.99,2019-08-13 12:54:00,542 11th St, Los Angeles,CA,90001 +237643,Lightning Charging Cable,1,14.95,2019-08-24 18:14:00,96 Jefferson St, Los Angeles,CA,90001 +237644,USB-C Charging Cable,2,11.95,2019-08-31 11:34:00,289 Johnson St, Boston,MA,02215 +237645,Bose SoundSport Headphones,1,99.99,2019-08-25 19:00:00,316 Main St, Dallas,TX,75001 +237646,ThinkPad Laptop,1,999.99,2019-08-13 20:16:00,370 2nd St, San Francisco,CA,94016 +237647,AAA Batteries (4-pack),1,2.99,2019-08-03 10:48:00,301 7th St, Boston,MA,02215 +237648,34in Ultrawide Monitor,1,379.99,2019-08-02 19:32:00,457 Lincoln St, Los Angeles,CA,90001 +237649,Macbook Pro Laptop,1,1700.0,2019-08-03 20:32:00,664 Church St, New York City,NY,10001 +237650,USB-C Charging Cable,1,11.95,2019-08-04 10:47:00,909 Spruce St, Dallas,TX,75001 +237651,Lightning Charging Cable,1,14.95,2019-08-08 14:52:00,109 Center St, New York City,NY,10001 +237652,AA Batteries (4-pack),1,3.84,2019-08-12 19:40:00,848 Lakeview St, Boston,MA,02215 +237653,AA Batteries (4-pack),1,3.84,2019-08-29 14:56:00,93 10th St, San Francisco,CA,94016 +237654,AAA Batteries (4-pack),7,2.99,2019-08-12 15:07:00,266 Ridge St, Dallas,TX,75001 +237655,Macbook Pro Laptop,1,1700.0,2019-08-18 11:09:00,841 Park St, Boston,MA,02215 +237656,AA Batteries (4-pack),1,3.84,2019-08-11 10:35:00,562 Park St, Boston,MA,02215 +237657,Lightning Charging Cable,1,14.95,2019-08-22 09:32:00,444 Ridge St, Los Angeles,CA,90001 +237658,USB-C Charging Cable,1,11.95,2019-08-05 08:28:00,854 13th St, Boston,MA,02215 +237659,20in Monitor,1,109.99,2019-08-06 09:16:00,387 River St, Seattle,WA,98101 +237660,Apple Airpods Headphones,1,150.0,2019-08-04 15:11:00,958 Chestnut St, San Francisco,CA,94016 +237661,Lightning Charging Cable,1,14.95,2019-08-27 16:38:00,668 Cherry St, New York City,NY,10001 +237662,AA Batteries (4-pack),1,3.84,2019-08-23 17:55:00,650 1st St, New York City,NY,10001 +237663,Wired Headphones,1,11.99,2019-08-14 12:21:00,467 Park St, Portland,OR,97035 +237664,AA Batteries (4-pack),1,3.84,2019-08-26 12:55:00,510 Meadow St, New York City,NY,10001 +237665,AA Batteries (4-pack),1,3.84,2019-08-17 21:57:00,120 Cherry St, Los Angeles,CA,90001 +237666,ThinkPad Laptop,1,999.99,2019-08-30 10:33:00,391 Meadow St, Los Angeles,CA,90001 +237667,27in FHD Monitor,1,149.99,2019-08-27 12:25:00,41 North St, Atlanta,GA,30301 +237668,USB-C Charging Cable,1,11.95,2019-08-23 10:32:00,611 Maple St, Dallas,TX,75001 +237669,Vareebadd Phone,1,400.0,2019-08-18 12:31:00,623 13th St, Boston,MA,02215 +237670,20in Monitor,1,109.99,2019-08-22 11:35:00,780 8th St, San Francisco,CA,94016 +237671,Flatscreen TV,1,300.0,2019-08-07 15:06:00,700 Lincoln St, New York City,NY,10001 +237672,Google Phone,1,600.0,2019-08-09 16:42:00,909 Willow St, New York City,NY,10001 +237673,USB-C Charging Cable,1,11.95,2019-08-25 11:33:00,343 Adams St, New York City,NY,10001 +237674,27in FHD Monitor,1,149.99,2019-08-27 17:11:00,353 6th St, San Francisco,CA,94016 +237675,AA Batteries (4-pack),1,3.84,2019-08-13 11:51:00,845 10th St, San Francisco,CA,94016 +237676,Lightning Charging Cable,1,14.95,2019-08-10 04:03:00,97 Washington St, New York City,NY,10001 +237677,AAA Batteries (4-pack),1,2.99,2019-08-19 17:02:00,786 West St, Los Angeles,CA,90001 +237678,AA Batteries (4-pack),1,3.84,2019-08-29 19:00:00,382 Elm St, Dallas,TX,75001 +237679,iPhone,1,700.0,2019-08-30 00:21:00,621 Johnson St, New York City,NY,10001 +237679,Lightning Charging Cable,2,14.95,2019-08-30 00:21:00,621 Johnson St, New York City,NY,10001 +237680,AAA Batteries (4-pack),1,2.99,2019-08-25 14:44:00,896 12th St, San Francisco,CA,94016 +237681,AAA Batteries (4-pack),1,2.99,2019-08-26 00:35:00,444 North St, San Francisco,CA,94016 +237682,Wired Headphones,1,11.99,2019-08-06 01:24:00,279 Forest St, Boston,MA,02215 +237683,Wired Headphones,1,11.99,2019-08-11 19:38:00,680 Main St, Boston,MA,02215 +237684,AAA Batteries (4-pack),1,2.99,2019-08-11 18:26:00,895 Maple St, Seattle,WA,98101 +237685,AA Batteries (4-pack),1,3.84,2019-08-26 20:29:00,186 Hill St, San Francisco,CA,94016 +237686,Apple Airpods Headphones,1,150.0,2019-08-06 12:12:00,769 8th St, Seattle,WA,98101 +237687,Lightning Charging Cable,1,14.95,2019-08-31 17:00:00,233 13th St, Seattle,WA,98101 +237688,Apple Airpods Headphones,1,150.0,2019-08-28 16:49:00,232 North St, Seattle,WA,98101 +237689,Lightning Charging Cable,1,14.95,2019-08-29 23:10:00,582 Adams St, Dallas,TX,75001 +237690,Wired Headphones,1,11.99,2019-08-15 12:19:00,301 Lincoln St, Los Angeles,CA,90001 +237691,AA Batteries (4-pack),3,3.84,2019-08-19 19:55:00,820 Pine St, Atlanta,GA,30301 +237692,Google Phone,1,600.0,2019-08-20 08:02:00,309 12th St, Los Angeles,CA,90001 +237692,USB-C Charging Cable,1,11.95,2019-08-20 08:02:00,309 12th St, Los Angeles,CA,90001 +237693,34in Ultrawide Monitor,1,379.99,2019-08-24 21:16:00,603 Spruce St, New York City,NY,10001 +237694,AAA Batteries (4-pack),1,2.99,2019-08-12 08:12:00,493 1st St, Los Angeles,CA,90001 +237695,Bose SoundSport Headphones,1,99.99,2019-08-20 20:57:00,233 Cherry St, Atlanta,GA,30301 +237696,Bose SoundSport Headphones,1,99.99,2019-08-19 15:15:00,380 Hill St, New York City,NY,10001 +237697,Bose SoundSport Headphones,1,99.99,2019-08-10 12:34:00,641 1st St, Los Angeles,CA,90001 +237698,Wired Headphones,1,11.99,2019-08-23 17:06:00,334 Sunset St, Seattle,WA,98101 +237699,USB-C Charging Cable,1,11.95,2019-08-22 10:18:00,716 Walnut St, San Francisco,CA,94016 +237700,AA Batteries (4-pack),1,3.84,2019-08-12 19:51:00,325 North St, New York City,NY,10001 +237701,Apple Airpods Headphones,1,150.0,2019-08-23 10:48:00,331 12th St, San Francisco,CA,94016 +237702,LG Washing Machine,1,600.0,2019-08-02 16:48:00,3 Meadow St, San Francisco,CA,94016 +237703,27in FHD Monitor,1,149.99,2019-08-11 14:49:00,160 11th St, New York City,NY,10001 +237704,AAA Batteries (4-pack),1,2.99,2019-08-14 20:38:00,498 Washington St, Austin,TX,73301 +237705,AAA Batteries (4-pack),2,2.99,2019-08-04 22:50:00,704 Hill St, Seattle,WA,98101 +237706,ThinkPad Laptop,1,999.99,2019-08-16 10:30:00,766 Elm St, New York City,NY,10001 +237707,Apple Airpods Headphones,1,150.0,2019-08-29 15:04:00,617 4th St, San Francisco,CA,94016 +237708,USB-C Charging Cable,1,11.95,2019-08-27 13:44:00,874 11th St, San Francisco,CA,94016 +237709,Apple Airpods Headphones,1,150.0,2019-08-23 16:30:00,874 Adams St, Boston,MA,02215 +237710,Lightning Charging Cable,1,14.95,2019-08-21 20:30:00,388 Park St, Los Angeles,CA,90001 +237711,Flatscreen TV,1,300.0,2019-08-23 13:42:00,749 Elm St, San Francisco,CA,94016 +237712,20in Monitor,1,109.99,2019-08-28 22:07:00,98 Walnut St, Atlanta,GA,30301 +237713,Bose SoundSport Headphones,1,99.99,2019-08-18 19:17:00,926 11th St, Atlanta,GA,30301 +237714,ThinkPad Laptop,1,999.99,2019-08-31 22:43:00,316 Walnut St, San Francisco,CA,94016 +237715,Apple Airpods Headphones,1,150.0,2019-08-25 21:18:00,77 Willow St, Boston,MA,02215 +237716,AA Batteries (4-pack),3,3.84,2019-08-28 19:02:00,524 Washington St, Los Angeles,CA,90001 +237717,AAA Batteries (4-pack),1,2.99,2019-08-30 10:05:00,234 Madison St, Austin,TX,73301 +237718,AAA Batteries (4-pack),2,2.99,2019-08-27 16:46:00,564 Forest St, Boston,MA,02215 +237719,Bose SoundSport Headphones,1,99.99,2019-08-30 20:17:00,256 8th St, New York City,NY,10001 +237720,20in Monitor,1,109.99,2019-08-07 11:01:00,569 Main St, Portland,ME,04101 +237721,Lightning Charging Cable,1,14.95,2019-08-25 05:49:00,472 9th St, San Francisco,CA,94016 +237722,Apple Airpods Headphones,1,150.0,2019-08-16 15:18:00,517 Spruce St, Seattle,WA,98101 +237723,27in FHD Monitor,1,149.99,2019-08-28 18:35:00,171 13th St, San Francisco,CA,94016 +237724,Wired Headphones,2,11.99,2019-08-12 20:02:00,950 Willow St, Boston,MA,02215 +237725,USB-C Charging Cable,2,11.95,2019-08-13 13:02:00,585 South St, Boston,MA,02215 +237726,AA Batteries (4-pack),1,3.84,2019-08-16 18:16:00,474 2nd St, Dallas,TX,75001 +237727,USB-C Charging Cable,1,11.95,2019-08-17 19:26:00,700 8th St, San Francisco,CA,94016 +237728,Bose SoundSport Headphones,1,99.99,2019-08-10 11:13:00,631 Park St, Seattle,WA,98101 +237729,AA Batteries (4-pack),2,3.84,2019-08-22 18:54:00,825 Jefferson St, San Francisco,CA,94016 +237730,Wired Headphones,1,11.99,2019-08-25 17:36:00,85 6th St, San Francisco,CA,94016 +237731,Lightning Charging Cable,1,14.95,2019-08-16 10:47:00,540 2nd St, New York City,NY,10001 +237732,USB-C Charging Cable,1,11.95,2019-08-15 12:39:00,943 Chestnut St, San Francisco,CA,94016 +237733,Flatscreen TV,1,300.0,2019-08-03 20:08:00,986 Wilson St, New York City,NY,10001 +237733,Macbook Pro Laptop,1,1700.0,2019-08-03 20:08:00,986 Wilson St, New York City,NY,10001 +237734,LG Washing Machine,1,600.0,2019-08-12 16:40:00,98 10th St, Los Angeles,CA,90001 +237735,AAA Batteries (4-pack),2,2.99,2019-08-14 05:55:00,747 Lakeview St, Austin,TX,73301 +237736,AA Batteries (4-pack),2,3.84,2019-08-16 11:14:00,501 Jackson St, Los Angeles,CA,90001 +237737,Bose SoundSport Headphones,1,99.99,2019-08-26 15:14:00,825 Church St, New York City,NY,10001 +237738,Wired Headphones,1,11.99,2019-08-06 12:40:00,633 Jefferson St, Los Angeles,CA,90001 +237739,AAA Batteries (4-pack),2,2.99,2019-08-01 15:52:00,925 Center St, Seattle,WA,98101 +237740,AAA Batteries (4-pack),1,2.99,2019-08-13 17:31:00,112 Main St, Seattle,WA,98101 +237741,Wired Headphones,1,11.99,2019-08-31 18:17:00,30 2nd St, Los Angeles,CA,90001 +237742,USB-C Charging Cable,1,11.95,2019-08-24 21:03:00,805 Lincoln St, Portland,OR,97035 +237743,AAA Batteries (4-pack),1,2.99,2019-08-30 22:24:00,112 13th St, New York City,NY,10001 +237744,Wired Headphones,1,11.99,2019-08-22 11:44:00,955 River St, New York City,NY,10001 +237745,Apple Airpods Headphones,1,150.0,2019-08-05 11:29:00,775 5th St, Atlanta,GA,30301 +237746,34in Ultrawide Monitor,1,379.99,2019-08-09 13:41:00,718 Johnson St, New York City,NY,10001 +237747,Flatscreen TV,1,300.0,2019-08-22 12:44:00,926 14th St, San Francisco,CA,94016 +237748,Wired Headphones,1,11.99,2019-08-06 22:01:00,114 Lakeview St, Los Angeles,CA,90001 +237749,27in FHD Monitor,1,149.99,2019-08-18 22:56:00,543 Johnson St, Portland,OR,97035 +237750,AAA Batteries (4-pack),1,2.99,2019-08-08 17:15:00,695 Maple St, Atlanta,GA,30301 +237751,Apple Airpods Headphones,1,150.0,2019-08-18 08:14:00,94 6th St, Dallas,TX,75001 +237751,AA Batteries (4-pack),1,3.84,2019-08-18 08:14:00,94 6th St, Dallas,TX,75001 +237752,Wired Headphones,1,11.99,2019-08-05 22:00:00,727 10th St, Austin,TX,73301 +237753,Vareebadd Phone,1,400.0,2019-08-21 16:39:00,875 Johnson St, San Francisco,CA,94016 +237753,USB-C Charging Cable,1,11.95,2019-08-21 16:39:00,875 Johnson St, San Francisco,CA,94016 +237754,USB-C Charging Cable,1,11.95,2019-08-21 14:14:00,604 Johnson St, Dallas,TX,75001 +237755,ThinkPad Laptop,1,999.99,2019-08-07 20:16:00,567 Dogwood St, Los Angeles,CA,90001 +237756,27in FHD Monitor,1,149.99,2019-08-14 13:01:00,110 Johnson St, San Francisco,CA,94016 +237757,Apple Airpods Headphones,1,150.0,2019-08-12 11:28:00,699 River St, Boston,MA,02215 +237758,AA Batteries (4-pack),1,3.84,2019-08-25 18:21:00,565 River St, San Francisco,CA,94016 +237759,Wired Headphones,1,11.99,2019-08-01 12:04:00,535 Jackson St, San Francisco,CA,94016 +237760,AAA Batteries (4-pack),1,2.99,2019-08-14 21:20:00,400 Elm St, Dallas,TX,75001 +237761,USB-C Charging Cable,1,11.95,2019-08-24 11:58:00,767 Forest St, Portland,ME,04101 +237762,USB-C Charging Cable,1,11.95,2019-08-05 09:47:00,704 10th St, New York City,NY,10001 +237763,Wired Headphones,1,11.99,2019-08-07 23:45:00,446 10th St, Los Angeles,CA,90001 +237764,27in 4K Gaming Monitor,1,389.99,2019-08-06 11:09:00,818 Dogwood St, Atlanta,GA,30301 +237765,AAA Batteries (4-pack),2,2.99,2019-08-14 08:18:00,849 4th St, Atlanta,GA,30301 +237766,Bose SoundSport Headphones,1,99.99,2019-08-19 11:06:00,416 Lake St, Dallas,TX,75001 +237767,USB-C Charging Cable,1,11.95,2019-08-07 19:05:00,359 Dogwood St, Austin,TX,73301 +237768,Wired Headphones,1,11.99,2019-08-29 16:02:00,70 Center St, San Francisco,CA,94016 +237769,Wired Headphones,1,11.99,2019-08-04 20:09:00,933 12th St, Dallas,TX,75001 +237770,Lightning Charging Cable,1,14.95,2019-08-24 17:26:00,721 5th St, Seattle,WA,98101 +237771,AA Batteries (4-pack),2,3.84,2019-08-11 20:00:00,644 Main St, New York City,NY,10001 +237772,AA Batteries (4-pack),2,3.84,2019-08-16 19:53:00,945 Maple St, Los Angeles,CA,90001 +237773,USB-C Charging Cable,1,11.95,2019-08-08 21:48:00,85 Jefferson St, Los Angeles,CA,90001 +237774,Lightning Charging Cable,1,14.95,2019-08-24 17:04:00,379 Johnson St, Dallas,TX,75001 +237775,USB-C Charging Cable,2,11.95,2019-08-30 11:09:00,729 Center St, San Francisco,CA,94016 +237776,Lightning Charging Cable,1,14.95,2019-08-13 16:36:00,12 Hill St, San Francisco,CA,94016 +237777,iPhone,1,700.0,2019-08-14 18:08:00,711 Maple St, Boston,MA,02215 +237778,Wired Headphones,1,11.99,2019-08-08 08:13:00,721 7th St, New York City,NY,10001 +237779,AAA Batteries (4-pack),1,2.99,2019-08-04 21:26:00,532 Church St, Portland,OR,97035 +237780,Bose SoundSport Headphones,1,99.99,2019-08-16 10:15:00,395 8th St, San Francisco,CA,94016 +237781,Flatscreen TV,1,300.0,2019-08-17 22:17:00,26 7th St, Portland,OR,97035 +237782,Lightning Charging Cable,1,14.95,2019-08-10 15:26:00,759 11th St, New York City,NY,10001 +237783,USB-C Charging Cable,1,11.95,2019-08-10 23:47:00,335 4th St, Los Angeles,CA,90001 +237784,Flatscreen TV,1,300.0,2019-08-29 11:35:00,951 Jackson St, Boston,MA,02215 +237785,Bose SoundSport Headphones,1,99.99,2019-08-29 11:02:00,866 Wilson St, New York City,NY,10001 +237786,LG Washing Machine,1,600.0,2019-08-08 21:04:00,604 10th St, Portland,OR,97035 +237787,Bose SoundSport Headphones,1,99.99,2019-08-23 17:53:00,882 Dogwood St, New York City,NY,10001 +237788,Lightning Charging Cable,1,14.95,2019-08-05 07:58:00,687 8th St, San Francisco,CA,94016 +237789,AAA Batteries (4-pack),1,2.99,2019-08-10 12:27:00,26 Wilson St, Boston,MA,02215 +237790,Lightning Charging Cable,2,14.95,2019-08-23 11:13:00,922 Maple St, Los Angeles,CA,90001 +237791,AA Batteries (4-pack),1,3.84,2019-08-02 19:37:00,193 Madison St, Dallas,TX,75001 +237792,AA Batteries (4-pack),1,3.84,2019-08-11 18:50:00,5 Elm St, Atlanta,GA,30301 +237793,AA Batteries (4-pack),1,3.84,2019-08-12 11:03:00,553 South St, Dallas,TX,75001 +237794,Lightning Charging Cable,1,14.95,2019-08-28 22:59:00,461 West St, San Francisco,CA,94016 +237795,ThinkPad Laptop,1,999.99,2019-08-07 11:32:00,308 Adams St, Seattle,WA,98101 +237796,USB-C Charging Cable,1,11.95,2019-08-16 13:05:00,75 Jackson St, Los Angeles,CA,90001 +237797,AAA Batteries (4-pack),1,2.99,2019-08-05 19:55:00,426 Adams St, Los Angeles,CA,90001 +237798,20in Monitor,1,109.99,2019-08-22 06:21:00,803 Lincoln St, San Francisco,CA,94016 +237799,Apple Airpods Headphones,1,150.0,2019-08-27 21:54:00,536 Maple St, San Francisco,CA,94016 +237800,AA Batteries (4-pack),2,3.84,2019-08-05 23:58:00,270 South St, New York City,NY,10001 +237801,iPhone,1,700.0,2019-08-10 13:56:00,535 4th St, Boston,MA,02215 +237801,Lightning Charging Cable,1,14.95,2019-08-10 13:56:00,535 4th St, Boston,MA,02215 +237802,Bose SoundSport Headphones,1,99.99,2019-08-20 19:37:00,798 Hill St, Los Angeles,CA,90001 +237803,AAA Batteries (4-pack),2,2.99,2019-08-27 06:04:00,798 North St, San Francisco,CA,94016 +237804,USB-C Charging Cable,1,11.95,2019-08-18 16:42:00,519 Sunset St, Dallas,TX,75001 +237805,Bose SoundSport Headphones,1,99.99,2019-08-12 20:39:00,212 River St, Atlanta,GA,30301 +237806,Flatscreen TV,1,300.0,2019-08-25 19:19:00,175 River St, Portland,ME,04101 +237807,AAA Batteries (4-pack),8,2.99,2019-08-13 11:11:00,89 Church St, Portland,OR,97035 +237808,USB-C Charging Cable,1,11.95,2019-08-01 11:54:00,327 Cherry St, Atlanta,GA,30301 +237809,AAA Batteries (4-pack),2,2.99,2019-08-12 17:48:00,489 Forest St, Portland,OR,97035 +237810,USB-C Charging Cable,1,11.95,2019-08-25 04:29:00,827 8th St, Boston,MA,02215 +237811,AAA Batteries (4-pack),1,2.99,2019-08-24 11:23:00,616 11th St, Dallas,TX,75001 +237812,Lightning Charging Cable,1,14.95,2019-08-06 21:25:00,851 13th St, Austin,TX,73301 +237812,AAA Batteries (4-pack),1,2.99,2019-08-06 21:25:00,851 13th St, Austin,TX,73301 +237813,AAA Batteries (4-pack),2,2.99,2019-08-22 20:52:00,593 North St, San Francisco,CA,94016 +237814,AA Batteries (4-pack),1,3.84,2019-08-19 19:00:00,38 Forest St, Dallas,TX,75001 +237815,Lightning Charging Cable,1,14.95,2019-08-15 21:38:00,371 Main St, San Francisco,CA,94016 +237816,Wired Headphones,1,11.99,2019-08-19 15:18:00,580 South St, Dallas,TX,75001 +237817,Wired Headphones,1,11.99,2019-08-15 21:57:00,169 10th St, Boston,MA,02215 +237818,Apple Airpods Headphones,1,150.0,2019-08-09 11:32:00,971 Adams St, Boston,MA,02215 +237819,Bose SoundSport Headphones,1,99.99,2019-08-19 19:35:00,19 Pine St, Los Angeles,CA,90001 +237820,iPhone,1,700.0,2019-08-11 17:17:00,507 Hill St, Portland,OR,97035 +237820,Lightning Charging Cable,1,14.95,2019-08-11 17:17:00,507 Hill St, Portland,OR,97035 +237821,Lightning Charging Cable,1,14.95,2019-08-20 12:30:00,248 5th St, Atlanta,GA,30301 +237822,AAA Batteries (4-pack),1,2.99,2019-08-21 20:20:00,316 Johnson St, Dallas,TX,75001 +237823,AAA Batteries (4-pack),1,2.99,2019-08-30 12:03:00,52 River St, San Francisco,CA,94016 +237824,Google Phone,1,600.0,2019-08-21 20:25:00,863 Lakeview St, San Francisco,CA,94016 +237825,27in FHD Monitor,1,149.99,2019-08-31 15:30:00,958 Washington St, Boston,MA,02215 +237826,AAA Batteries (4-pack),1,2.99,2019-08-20 15:04:00,954 Church St, San Francisco,CA,94016 +237827,AAA Batteries (4-pack),1,2.99,2019-08-19 07:56:00,727 Dogwood St, Portland,OR,97035 +237828,AAA Batteries (4-pack),1,2.99,2019-08-13 15:22:00,385 Johnson St, San Francisco,CA,94016 +237829,27in FHD Monitor,1,149.99,2019-08-16 17:26:00,803 Forest St, Boston,MA,02215 +237830,Bose SoundSport Headphones,1,99.99,2019-08-03 23:20:00,307 North St, Los Angeles,CA,90001 +237831,Google Phone,1,600.0,2019-08-13 18:56:00,378 Adams St, San Francisco,CA,94016 +237831,USB-C Charging Cable,1,11.95,2019-08-13 18:56:00,378 Adams St, San Francisco,CA,94016 +237832,Lightning Charging Cable,1,14.95,2019-08-24 20:06:00,475 12th St, Boston,MA,02215 +237833,Apple Airpods Headphones,1,150.0,2019-08-18 01:39:00,424 North St, Los Angeles,CA,90001 +237834,USB-C Charging Cable,1,11.95,2019-08-27 17:00:00,902 West St, Seattle,WA,98101 +237835,Bose SoundSport Headphones,1,99.99,2019-08-24 07:43:00,185 Forest St, Dallas,TX,75001 +237836,34in Ultrawide Monitor,1,379.99,2019-08-17 11:37:00,78 5th St, San Francisco,CA,94016 +237837,Apple Airpods Headphones,1,150.0,2019-08-31 22:24:00,607 Adams St, San Francisco,CA,94016 +237838,27in 4K Gaming Monitor,1,389.99,2019-08-04 22:21:00,473 5th St, Los Angeles,CA,90001 +237839,iPhone,1,700.0,2019-08-13 12:56:00,445 8th St, New York City,NY,10001 +237840,USB-C Charging Cable,1,11.95,2019-08-03 22:06:00,914 Lake St, Seattle,WA,98101 +237841,USB-C Charging Cable,1,11.95,2019-08-11 16:57:00,770 River St, San Francisco,CA,94016 +237842,Flatscreen TV,1,300.0,2019-08-29 22:03:00,421 10th St, Portland,OR,97035 +237843,27in FHD Monitor,1,149.99,2019-08-23 09:57:00,821 River St, Portland,OR,97035 +237844,34in Ultrawide Monitor,1,379.99,2019-08-24 12:16:00,102 Jefferson St, Los Angeles,CA,90001 +237845,Bose SoundSport Headphones,1,99.99,2019-08-19 07:22:00,69 Church St, San Francisco,CA,94016 +237846,Flatscreen TV,1,300.0,2019-08-13 15:45:00,441 Highland St, Portland,OR,97035 +237847,Bose SoundSport Headphones,1,99.99,2019-08-19 19:31:00,329 Highland St, New York City,NY,10001 +237848,Wired Headphones,1,11.99,2019-08-26 21:41:00,951 4th St, Los Angeles,CA,90001 +237849,Lightning Charging Cable,1,14.95,2019-08-08 14:53:00,64 Maple St, Atlanta,GA,30301 +237850,27in FHD Monitor,1,149.99,2019-08-09 13:27:00,895 4th St, Dallas,TX,75001 +237851,27in 4K Gaming Monitor,1,389.99,2019-08-08 11:03:00,278 Cedar St, Boston,MA,02215 +237852,iPhone,1,700.0,2019-08-01 21:42:00,563 Johnson St, New York City,NY,10001 +237853,AA Batteries (4-pack),2,3.84,2019-08-18 16:59:00,200 Sunset St, Los Angeles,CA,90001 +237854,27in FHD Monitor,1,149.99,2019-08-05 09:49:00,456 Wilson St, Los Angeles,CA,90001 +237855,Bose SoundSport Headphones,1,99.99,2019-08-27 17:57:00,412 11th St, Seattle,WA,98101 +237856,Flatscreen TV,1,300.0,2019-08-18 23:11:00,855 1st St, Atlanta,GA,30301 +237857,Apple Airpods Headphones,1,150.0,2019-08-17 21:13:00,857 South St, Dallas,TX,75001 +237858,iPhone,1,700.0,2019-08-27 13:33:00,426 Spruce St, Portland,OR,97035 +237859,Wired Headphones,1,11.99,2019-08-23 21:17:00,323 Cedar St, San Francisco,CA,94016 +237860,Macbook Pro Laptop,1,1700.0,2019-08-26 20:36:00,25 South St, New York City,NY,10001 +237861,Apple Airpods Headphones,1,150.0,2019-08-16 09:07:00,232 8th St, Atlanta,GA,30301 +237862,AAA Batteries (4-pack),2,2.99,2019-08-22 15:52:00,507 Cherry St, New York City,NY,10001 +237863,Wired Headphones,1,11.99,2019-08-19 13:15:00,102 Meadow St, San Francisco,CA,94016 +237864,Google Phone,1,600.0,2019-08-31 22:55:00,662 14th St, Austin,TX,73301 +237865,AAA Batteries (4-pack),1,2.99,2019-08-19 20:09:00,918 4th St, San Francisco,CA,94016 +237866,AA Batteries (4-pack),1,3.84,2019-08-28 16:43:00,979 1st St, Austin,TX,73301 +237867,AAA Batteries (4-pack),1,2.99,2019-08-06 14:47:00,498 Maple St, Los Angeles,CA,90001 +237868,AAA Batteries (4-pack),1,2.99,2019-08-08 12:58:00,411 Maple St, Seattle,WA,98101 +237869,Vareebadd Phone,1,400.0,2019-08-19 21:36:00,501 Wilson St, Portland,OR,97035 +237869,Wired Headphones,1,11.99,2019-08-19 21:36:00,501 Wilson St, Portland,OR,97035 +237870,Lightning Charging Cable,2,14.95,2019-08-14 02:25:00,280 2nd St, San Francisco,CA,94016 +237871,USB-C Charging Cable,1,11.95,2019-08-19 19:03:00,153 Forest St, Boston,MA,02215 +237872,Apple Airpods Headphones,1,150.0,2019-08-23 19:33:00,109 Adams St, Boston,MA,02215 +237873,Apple Airpods Headphones,1,150.0,2019-08-03 13:39:00,853 Lakeview St, Los Angeles,CA,90001 +237874,27in 4K Gaming Monitor,1,389.99,2019-08-29 21:42:00,652 Washington St, Los Angeles,CA,90001 +237875,Bose SoundSport Headphones,1,99.99,2019-08-31 01:08:00,126 Forest St, New York City,NY,10001 +237876,AAA Batteries (4-pack),1,2.99,2019-08-11 15:31:00,493 14th St, Los Angeles,CA,90001 +237877,Bose SoundSport Headphones,1,99.99,2019-08-28 00:37:00,595 South St, New York City,NY,10001 +237878,iPhone,1,700.0,2019-08-14 07:22:00,189 Cedar St, Boston,MA,02215 +237879,Bose SoundSport Headphones,1,99.99,2019-08-01 10:33:00,288 Forest St, Austin,TX,73301 +237880,AAA Batteries (4-pack),2,2.99,2019-08-02 12:45:00,658 Center St, San Francisco,CA,94016 +237881,Apple Airpods Headphones,1,150.0,2019-08-02 17:55:00,421 Church St, San Francisco,CA,94016 +237882,Bose SoundSport Headphones,1,99.99,2019-08-16 13:54:00,997 1st St, San Francisco,CA,94016 +237883,USB-C Charging Cable,1,11.95,2019-08-15 00:39:00,741 Sunset St, New York City,NY,10001 +237884,27in FHD Monitor,1,149.99,2019-08-11 14:30:00,314 Cherry St, Boston,MA,02215 +237885,AAA Batteries (4-pack),1,2.99,2019-08-19 09:24:00,897 8th St, Boston,MA,02215 +237886,AAA Batteries (4-pack),5,2.99,2019-08-18 17:53:00,780 Madison St, San Francisco,CA,94016 +237887,AAA Batteries (4-pack),3,2.99,2019-08-11 10:32:00,332 West St, San Francisco,CA,94016 +237888,USB-C Charging Cable,1,11.95,2019-08-31 13:14:00,288 Jefferson St, Los Angeles,CA,90001 +237889,USB-C Charging Cable,1,11.95,2019-08-29 10:47:00,743 Church St, Los Angeles,CA,90001 +237890,AAA Batteries (4-pack),1,2.99,2019-08-23 10:57:00,461 Center St, Seattle,WA,98101 +237891,AAA Batteries (4-pack),2,2.99,2019-08-20 16:23:00,559 Cedar St, Dallas,TX,75001 +237892,AA Batteries (4-pack),1,3.84,2019-08-24 11:57:00,396 Johnson St, Boston,MA,02215 +237893,ThinkPad Laptop,1,999.99,2019-08-12 17:31:00,588 Hill St, Boston,MA,02215 +237894,Flatscreen TV,1,300.0,2019-08-01 13:41:00,11 Forest St, Boston,MA,02215 +237895,27in 4K Gaming Monitor,1,389.99,2019-08-16 18:38:00,128 Main St, Los Angeles,CA,90001 +237896,27in 4K Gaming Monitor,1,389.99,2019-08-18 19:04:00,575 Maple St, Austin,TX,73301 +237897,Macbook Pro Laptop,1,1700.0,2019-08-28 12:58:00,450 Pine St, San Francisco,CA,94016 +237898,34in Ultrawide Monitor,1,379.99,2019-08-10 12:38:00,774 Jefferson St, Dallas,TX,75001 +237899,Wired Headphones,1,11.99,2019-08-14 14:07:00,354 Chestnut St, Los Angeles,CA,90001 +237900,27in FHD Monitor,1,149.99,2019-08-20 20:13:00,340 Center St, San Francisco,CA,94016 +237901,Wired Headphones,1,11.99,2019-08-06 10:26:00,819 1st St, Los Angeles,CA,90001 +237902,34in Ultrawide Monitor,1,379.99,2019-08-04 19:38:00,931 Center St, Atlanta,GA,30301 +237903,Apple Airpods Headphones,1,150.0,2019-08-21 09:06:00,972 12th St, Seattle,WA,98101 +237904,Apple Airpods Headphones,1,150.0,2019-08-07 17:04:00,15 13th St, Los Angeles,CA,90001 +237905,Flatscreen TV,1,300.0,2019-08-19 20:31:00,762 North St, Dallas,TX,75001 +237906,Lightning Charging Cable,1,14.95,2019-08-15 16:38:00,854 North St, Los Angeles,CA,90001 +237907,Apple Airpods Headphones,1,150.0,2019-08-26 21:57:00,601 14th St, Los Angeles,CA,90001 +237908,AA Batteries (4-pack),1,3.84,2019-08-18 13:29:00,320 Cherry St, Boston,MA,02215 +237909,27in FHD Monitor,1,149.99,2019-08-07 20:13:00,222 Walnut St, Portland,OR,97035 +237910,AAA Batteries (4-pack),1,2.99,2019-08-31 00:00:00,551 Park St, Seattle,WA,98101 +237911,Google Phone,1,600.0,2019-08-19 10:14:00,395 Center St, Los Angeles,CA,90001 +237912,Lightning Charging Cable,2,14.95,2019-08-19 22:00:00,463 Johnson St, Los Angeles,CA,90001 +237913,USB-C Charging Cable,1,11.95,2019-08-31 22:55:00,796 Highland St, Portland,ME,04101 +237914,27in FHD Monitor,1,149.99,2019-08-09 21:54:00,732 Ridge St, Atlanta,GA,30301 +237915,USB-C Charging Cable,1,11.95,2019-08-12 19:49:00,186 Forest St, Atlanta,GA,30301 +237916,AAA Batteries (4-pack),1,2.99,2019-08-10 23:04:00,512 Lincoln St, Atlanta,GA,30301 +237917,27in FHD Monitor,1,149.99,2019-08-12 17:02:00,407 Washington St, Boston,MA,02215 +237918,Macbook Pro Laptop,1,1700.0,2019-08-26 15:00:00,113 9th St, Austin,TX,73301 +237919,Wired Headphones,1,11.99,2019-08-10 17:52:00,122 Main St, Atlanta,GA,30301 +237920,Macbook Pro Laptop,1,1700.0,2019-08-17 15:49:00,596 Maple St, New York City,NY,10001 +237921,AA Batteries (4-pack),1,3.84,2019-08-26 21:00:00,120 Cherry St, Atlanta,GA,30301 +237922,27in 4K Gaming Monitor,1,389.99,2019-08-31 21:51:00,418 9th St, Dallas,TX,75001 +237923,AAA Batteries (4-pack),1,2.99,2019-08-14 19:31:00,3 Park St, New York City,NY,10001 +237924,Flatscreen TV,1,300.0,2019-08-21 10:07:00,590 Church St, Seattle,WA,98101 +237925,Google Phone,1,600.0,2019-08-07 13:39:00,876 Park St, Dallas,TX,75001 +237925,USB-C Charging Cable,1,11.95,2019-08-07 13:39:00,876 Park St, Dallas,TX,75001 +237926,Bose SoundSport Headphones,1,99.99,2019-08-18 14:31:00,55 Adams St, Austin,TX,73301 +237927,Bose SoundSport Headphones,1,99.99,2019-08-15 12:27:00,865 Hickory St, San Francisco,CA,94016 +237928,Vareebadd Phone,1,400.0,2019-08-06 08:59:00,393 7th St, Austin,TX,73301 +237929,Lightning Charging Cable,1,14.95,2019-08-26 13:57:00,455 2nd St, Seattle,WA,98101 +237930,USB-C Charging Cable,1,11.95,2019-08-02 15:32:00,966 Walnut St, Atlanta,GA,30301 +237931,AA Batteries (4-pack),1,3.84,2019-08-03 23:41:00,93 Sunset St, Atlanta,GA,30301 +237932,Lightning Charging Cable,1,14.95,2019-08-06 15:15:00,15 12th St, Los Angeles,CA,90001 +237933,Apple Airpods Headphones,1,150.0,2019-08-15 12:40:00,234 West St, Boston,MA,02215 +237934,34in Ultrawide Monitor,1,379.99,2019-08-19 22:58:00,955 Lakeview St, Seattle,WA,98101 +237935,Bose SoundSport Headphones,1,99.99,2019-08-22 09:03:00,259 Spruce St, San Francisco,CA,94016 +237936,AA Batteries (4-pack),4,3.84,2019-08-18 14:32:00,889 Elm St, Boston,MA,02215 +237937,Wired Headphones,1,11.99,2019-08-01 13:35:00,41 Walnut St, Portland,OR,97035 +237938,27in FHD Monitor,1,149.99,2019-08-19 16:45:00,992 6th St, Seattle,WA,98101 +237939,Vareebadd Phone,1,400.0,2019-08-12 15:29:00,776 7th St, Atlanta,GA,30301 +237940,USB-C Charging Cable,1,11.95,2019-08-16 14:07:00,586 Cedar St, Los Angeles,CA,90001 +237941,iPhone,1,700.0,2019-08-02 11:11:00,140 Madison St, Boston,MA,02215 +237942,AA Batteries (4-pack),1,3.84,2019-08-08 11:01:00,464 7th St, Los Angeles,CA,90001 +237943,AA Batteries (4-pack),3,3.84,2019-08-03 14:38:00,728 South St, Boston,MA,02215 +237944,USB-C Charging Cable,1,11.95,2019-08-04 17:14:00,998 Washington St, Boston,MA,02215 +237945,AA Batteries (4-pack),2,3.84,2019-08-20 13:45:00,378 Washington St, Portland,OR,97035 +237946,Macbook Pro Laptop,1,1700.0,2019-08-06 23:28:00,554 Main St, New York City,NY,10001 +237946,Lightning Charging Cable,1,14.95,2019-08-06 23:28:00,554 Main St, New York City,NY,10001 +237947,Bose SoundSport Headphones,1,99.99,2019-08-10 18:52:00,123 West St, San Francisco,CA,94016 +237948,USB-C Charging Cable,1,11.95,2019-08-01 21:50:00,401 6th St, San Francisco,CA,94016 +237949,34in Ultrawide Monitor,1,379.99,2019-08-29 10:55:00,909 Wilson St, Portland,OR,97035 +237950,Lightning Charging Cable,1,14.95,2019-08-27 23:33:00,300 Pine St, Los Angeles,CA,90001 +237951,USB-C Charging Cable,1,11.95,2019-08-13 16:12:00,296 Jefferson St, Los Angeles,CA,90001 +237952,Google Phone,1,600.0,2019-08-16 11:49:00,512 Pine St, Seattle,WA,98101 +237953,Bose SoundSport Headphones,1,99.99,2019-08-26 12:45:00,24 Wilson St, Los Angeles,CA,90001 +237954,Apple Airpods Headphones,1,150.0,2019-08-08 17:19:00,487 Washington St, Boston,MA,02215 +237955,USB-C Charging Cable,1,11.95,2019-08-11 11:36:00,883 Lincoln St, Los Angeles,CA,90001 +237956,AA Batteries (4-pack),1,3.84,2019-08-06 14:59:00,108 14th St, Dallas,TX,75001 +237957,Apple Airpods Headphones,1,150.0,2019-08-08 08:36:00,143 Madison St, Austin,TX,73301 +237958,AAA Batteries (4-pack),1,2.99,2019-08-22 14:37:00,118 Maple St, Seattle,WA,98101 +237959,Apple Airpods Headphones,1,150.0,2019-08-24 05:39:00,485 Wilson St, San Francisco,CA,94016 +237960,Lightning Charging Cable,1,14.95,2019-08-29 21:48:00,550 6th St, Portland,OR,97035 +237961,AA Batteries (4-pack),1,3.84,2019-08-27 00:08:00,867 Main St, Atlanta,GA,30301 +237962,AAA Batteries (4-pack),1,2.99,2019-08-14 18:58:00,486 13th St, San Francisco,CA,94016 +237963,AA Batteries (4-pack),1,3.84,2019-08-12 17:43:00,507 Elm St, San Francisco,CA,94016 +237964,USB-C Charging Cable,2,11.95,2019-08-11 19:47:00,321 South St, San Francisco,CA,94016 +237965,Google Phone,1,600.0,2019-08-23 22:48:00,311 Dogwood St, New York City,NY,10001 +237966,Bose SoundSport Headphones,1,99.99,2019-08-01 18:49:00,826 14th St, Portland,ME,04101 +237967,USB-C Charging Cable,1,11.95,2019-08-09 13:52:00,238 Spruce St, Los Angeles,CA,90001 +237968,LG Dryer,1,600.0,2019-08-03 20:02:00,903 Lincoln St, Atlanta,GA,30301 +237969,AA Batteries (4-pack),1,3.84,2019-08-11 03:09:00,681 Johnson St, Austin,TX,73301 +237969,Google Phone,1,600.0,2019-08-11 03:09:00,681 Johnson St, Austin,TX,73301 +237970,AAA Batteries (4-pack),1,2.99,2019-08-06 18:36:00,983 Maple St, Boston,MA,02215 +237971,34in Ultrawide Monitor,1,379.99,2019-08-08 21:12:00,655 Forest St, San Francisco,CA,94016 +237972,AA Batteries (4-pack),2,3.84,2019-08-23 10:34:00,234 Ridge St, Austin,TX,73301 +237973,AAA Batteries (4-pack),1,2.99,2019-08-31 08:55:00,704 6th St, Los Angeles,CA,90001 +237974,ThinkPad Laptop,1,999.99,2019-08-20 15:37:00,552 Hickory St, Boston,MA,02215 +237975,iPhone,1,700.0,2019-08-20 09:02:00,890 Center St, Austin,TX,73301 +237975,Apple Airpods Headphones,1,150.0,2019-08-20 09:02:00,890 Center St, Austin,TX,73301 +237976,iPhone,1,700.0,2019-08-05 21:12:00,582 Hickory St, Dallas,TX,75001 +237977,AAA Batteries (4-pack),3,2.99,2019-08-03 17:54:00,298 Washington St, Dallas,TX,75001 +237978,AA Batteries (4-pack),5,3.84,2019-08-21 07:14:00,138 1st St, Atlanta,GA,30301 +237979,Flatscreen TV,1,300.0,2019-08-17 14:19:00,395 Hickory St, Portland,OR,97035 +237980,Lightning Charging Cable,2,14.95,2019-08-27 00:10:00,811 Park St, New York City,NY,10001 +237981,AA Batteries (4-pack),1,3.84,2019-08-31 19:15:00,458 Lincoln St, Austin,TX,73301 +237982,AA Batteries (4-pack),2,3.84,2019-08-20 15:26:00,593 Pine St, Portland,OR,97035 +237983,AAA Batteries (4-pack),1,2.99,2019-08-27 20:51:00,672 Ridge St, San Francisco,CA,94016 +237984,Macbook Pro Laptop,1,1700.0,2019-08-05 00:04:00,532 Center St, San Francisco,CA,94016 +237985,Apple Airpods Headphones,1,150.0,2019-08-25 14:04:00,814 Johnson St, Boston,MA,02215 +237986,Google Phone,1,600.0,2019-08-10 07:24:00,781 Jackson St, San Francisco,CA,94016 +237987,27in FHD Monitor,1,149.99,2019-08-21 11:12:00,162 8th St, New York City,NY,10001 +237988,20in Monitor,1,109.99,2019-08-04 22:59:00,498 West St, Boston,MA,02215 +237989,27in 4K Gaming Monitor,1,389.99,2019-08-26 19:23:00,578 9th St, San Francisco,CA,94016 +237990,Wired Headphones,1,11.99,2019-08-04 09:47:00,216 Adams St, Atlanta,GA,30301 +237991,AA Batteries (4-pack),1,3.84,2019-08-08 19:11:00,863 Madison St, Los Angeles,CA,90001 +237992,AA Batteries (4-pack),1,3.84,2019-08-02 20:43:00,156 Highland St, Boston,MA,02215 +237993,iPhone,1,700.0,2019-08-02 19:08:00,232 Madison St, New York City,NY,10001 +237994,27in FHD Monitor,1,149.99,2019-08-18 20:29:00,856 Spruce St, Los Angeles,CA,90001 +237995,AA Batteries (4-pack),1,3.84,2019-08-01 20:24:00,869 Adams St, Dallas,TX,75001 +237996,20in Monitor,1,109.99,2019-08-08 01:49:00,752 14th St, Los Angeles,CA,90001 +237997,AA Batteries (4-pack),1,3.84,2019-08-10 14:56:00,951 Meadow St, Austin,TX,73301 +237998,iPhone,1,700.0,2019-08-27 12:18:00,775 13th St, New York City,NY,10001 +237999,AA Batteries (4-pack),2,3.84,2019-08-07 16:01:00,205 Dogwood St, Seattle,WA,98101 +238000,Macbook Pro Laptop,1,1700.0,2019-08-26 12:44:00,332 Adams St, Seattle,WA,98101 +238001,34in Ultrawide Monitor,1,379.99,2019-08-15 23:06:00,179 7th St, New York City,NY,10001 +238002,Bose SoundSport Headphones,1,99.99,2019-08-18 22:01:00,997 Madison St, Boston,MA,02215 +238003,AAA Batteries (4-pack),2,2.99,2019-08-19 05:57:00,581 Maple St, New York City,NY,10001 +238004,AAA Batteries (4-pack),1,2.99,2019-08-20 13:54:00,965 West St, Dallas,TX,75001 +238005,Lightning Charging Cable,1,14.95,2019-08-21 07:46:00,255 12th St, Seattle,WA,98101 +238006,Lightning Charging Cable,1,14.95,2019-08-02 13:31:00,744 Highland St, Portland,OR,97035 +238007,Lightning Charging Cable,1,14.95,2019-08-15 17:28:00,475 West St, Los Angeles,CA,90001 +238007,AA Batteries (4-pack),1,3.84,2019-08-15 17:28:00,475 West St, Los Angeles,CA,90001 +238008,LG Washing Machine,1,600.0,2019-08-15 15:11:00,622 2nd St, Boston,MA,02215 +238009,AAA Batteries (4-pack),1,2.99,2019-08-07 12:09:00,594 West St, Boston,MA,02215 +238010,AAA Batteries (4-pack),1,2.99,2019-08-20 11:53:00,595 1st St, San Francisco,CA,94016 +238011,Bose SoundSport Headphones,1,99.99,2019-08-16 19:50:00,104 Lincoln St, San Francisco,CA,94016 +238012,Flatscreen TV,1,300.0,2019-08-20 08:52:00,324 8th St, Portland,OR,97035 +238013,Lightning Charging Cable,1,14.95,2019-08-22 14:39:00,850 6th St, Atlanta,GA,30301 +238014,USB-C Charging Cable,1,11.95,2019-08-09 18:33:00,147 Elm St, Atlanta,GA,30301 +238015,USB-C Charging Cable,1,11.95,2019-08-23 12:32:00,770 13th St, Austin,TX,73301 +238016,AA Batteries (4-pack),2,3.84,2019-08-03 21:51:00,480 Cedar St, San Francisco,CA,94016 +238017,Wired Headphones,1,11.99,2019-08-24 11:06:00,131 Lakeview St, Los Angeles,CA,90001 +238018,AAA Batteries (4-pack),2,2.99,2019-08-23 20:09:00,446 Cherry St, Boston,MA,02215 +238019,USB-C Charging Cable,1,11.95,2019-08-11 10:48:00,836 Elm St, San Francisco,CA,94016 +238020,Apple Airpods Headphones,1,150.0,2019-08-10 22:05:00,66 Jackson St, Boston,MA,02215 +238021,Wired Headphones,1,11.99,2019-08-10 10:45:00,345 Meadow St, New York City,NY,10001 +238022,Flatscreen TV,1,300.0,2019-08-07 19:40:00,743 Hickory St, Los Angeles,CA,90001 +238023,Wired Headphones,1,11.99,2019-08-27 18:07:00,487 Sunset St, San Francisco,CA,94016 +238024,iPhone,1,700.0,2019-08-30 12:02:00,227 Elm St, San Francisco,CA,94016 +238024,Lightning Charging Cable,1,14.95,2019-08-30 12:02:00,227 Elm St, San Francisco,CA,94016 +238025,USB-C Charging Cable,1,11.95,2019-08-27 20:22:00,427 12th St, Portland,OR,97035 +238026,Apple Airpods Headphones,1,150.0,2019-08-21 18:55:00,304 Church St, San Francisco,CA,94016 +238027,AAA Batteries (4-pack),1,2.99,2019-08-02 00:18:00,52 Park St, Portland,OR,97035 +238028,AA Batteries (4-pack),1,3.84,2019-08-02 23:16:00,541 Washington St, San Francisco,CA,94016 +238029,AA Batteries (4-pack),1,3.84,2019-08-02 09:34:00,218 Walnut St, San Francisco,CA,94016 +238030,AA Batteries (4-pack),1,3.84,2019-08-19 17:36:00,529 Chestnut St, San Francisco,CA,94016 +238031,27in FHD Monitor,1,149.99,2019-08-28 13:45:00,936 Hill St, Dallas,TX,75001 +238032,AAA Batteries (4-pack),1,2.99,2019-08-05 12:36:00,823 Ridge St, San Francisco,CA,94016 +238033,AA Batteries (4-pack),1,3.84,2019-08-04 19:38:00,719 9th St, New York City,NY,10001 +238034,AAA Batteries (4-pack),1,2.99,2019-08-27 20:06:00,275 Jefferson St, Los Angeles,CA,90001 +238035,Lightning Charging Cable,1,14.95,2019-08-08 16:47:00,392 Wilson St, Seattle,WA,98101 +238036,Apple Airpods Headphones,1,150.0,2019-08-04 13:23:00,931 West St, Los Angeles,CA,90001 +238037,Bose SoundSport Headphones,1,99.99,2019-08-02 20:17:00,513 Sunset St, San Francisco,CA,94016 +238038,USB-C Charging Cable,1,11.95,2019-08-22 12:59:00,45 14th St, Dallas,TX,75001 +238039,Macbook Pro Laptop,1,1700.0,2019-08-06 06:55:00,85 Main St, Seattle,WA,98101 +238040,Lightning Charging Cable,1,14.95,2019-08-07 15:41:00,148 Meadow St, Portland,ME,04101 +238041,Google Phone,1,600.0,2019-08-06 23:00:00,438 Pine St, Atlanta,GA,30301 +238042,iPhone,1,700.0,2019-08-20 13:49:00,18 Jackson St, Dallas,TX,75001 +238043,Wired Headphones,1,11.99,2019-08-05 03:14:00,372 11th St, San Francisco,CA,94016 +238044,Lightning Charging Cable,1,14.95,2019-08-26 13:06:00,391 2nd St, San Francisco,CA,94016 +238045,AA Batteries (4-pack),1,3.84,2019-08-04 15:57:00,666 Lakeview St, Seattle,WA,98101 +238046,27in 4K Gaming Monitor,1,389.99,2019-08-30 22:12:00,569 Sunset St, San Francisco,CA,94016 +238047,Bose SoundSport Headphones,1,99.99,2019-08-14 22:37:00,950 Center St, Boston,MA,02215 +238048,AA Batteries (4-pack),1,3.84,2019-08-08 10:19:00,832 Adams St, Portland,OR,97035 +238049,Apple Airpods Headphones,1,150.0,2019-08-14 07:28:00,240 Johnson St, New York City,NY,10001 +238050,Flatscreen TV,1,300.0,2019-08-25 15:54:00,755 12th St, San Francisco,CA,94016 +238051,AAA Batteries (4-pack),1,2.99,2019-08-31 18:51:00,967 Meadow St, Portland,OR,97035 +238052,27in FHD Monitor,1,149.99,2019-08-17 20:16:00,326 9th St, Dallas,TX,75001 +238053,Bose SoundSport Headphones,1,99.99,2019-08-07 12:56:00,481 Lincoln St, San Francisco,CA,94016 +238054,Apple Airpods Headphones,1,150.0,2019-08-17 20:24:00,284 4th St, Los Angeles,CA,90001 +238055,USB-C Charging Cable,1,11.95,2019-08-13 16:34:00,228 Main St, San Francisco,CA,94016 +238056,Wired Headphones,1,11.99,2019-08-30 15:32:00,598 Dogwood St, San Francisco,CA,94016 +238057,iPhone,1,700.0,2019-08-30 16:47:00,203 6th St, Atlanta,GA,30301 +238058,Bose SoundSport Headphones,1,99.99,2019-08-15 20:20:00,252 2nd St, San Francisco,CA,94016 +238059,AAA Batteries (4-pack),1,2.99,2019-08-09 21:15:00,60 Adams St, Austin,TX,73301 +238060,iPhone,1,700.0,2019-08-13 01:28:00,395 South St, Boston,MA,02215 +238061,USB-C Charging Cable,1,11.95,2019-08-28 06:45:00,999 8th St, Dallas,TX,75001 +238062,Bose SoundSport Headphones,1,99.99,2019-08-25 16:02:00,6 Spruce St, Portland,OR,97035 +238063,AAA Batteries (4-pack),1,2.99,2019-08-04 09:05:00,104 14th St, Seattle,WA,98101 +238064,USB-C Charging Cable,1,11.95,2019-08-29 20:20:00,798 Jackson St, New York City,NY,10001 +238065,AA Batteries (4-pack),1,3.84,2019-08-14 11:49:00,941 River St, Austin,TX,73301 +238066,27in 4K Gaming Monitor,1,389.99,2019-08-16 13:19:00,860 Main St, San Francisco,CA,94016 +238067,Lightning Charging Cable,1,14.95,2019-08-30 18:53:00,953 2nd St, San Francisco,CA,94016 +238068,AA Batteries (4-pack),1,3.84,2019-08-27 17:35:00,692 Jefferson St, Los Angeles,CA,90001 +238069,Flatscreen TV,1,300.0,2019-08-11 12:52:00,696 1st St, Boston,MA,02215 +238070,Bose SoundSport Headphones,1,99.99,2019-08-07 10:35:00,719 11th St, Austin,TX,73301 +238071,AAA Batteries (4-pack),2,2.99,2019-08-18 17:01:00,951 7th St, Los Angeles,CA,90001 +238072,Lightning Charging Cable,1,14.95,2019-08-23 13:53:00,691 Ridge St, Boston,MA,02215 +238073,27in FHD Monitor,1,149.99,2019-08-05 08:10:00,435 Meadow St, Dallas,TX,75001 +238074,AA Batteries (4-pack),1,3.84,2019-08-22 09:08:00,340 Cedar St, New York City,NY,10001 +238075,AA Batteries (4-pack),1,3.84,2019-08-06 11:59:00,484 7th St, Dallas,TX,75001 +238076,20in Monitor,1,109.99,2019-08-21 14:36:00,893 11th St, Seattle,WA,98101 +238077,Lightning Charging Cable,1,14.95,2019-08-19 18:52:00,73 13th St, San Francisco,CA,94016 +238078,AA Batteries (4-pack),1,3.84,2019-08-18 14:18:00,337 Madison St, New York City,NY,10001 +238079,27in FHD Monitor,1,149.99,2019-08-13 11:12:00,737 South St, Dallas,TX,75001 +238080,AAA Batteries (4-pack),1,2.99,2019-08-14 15:33:00,322 North St, Portland,OR,97035 +238081,27in FHD Monitor,1,149.99,2019-08-18 16:53:00,850 Hill St, San Francisco,CA,94016 +238082,Apple Airpods Headphones,1,150.0,2019-08-04 21:26:00,696 6th St, New York City,NY,10001 +238083,Lightning Charging Cable,1,14.95,2019-08-05 19:53:00,423 Ridge St, San Francisco,CA,94016 +238084,Apple Airpods Headphones,1,150.0,2019-08-19 21:40:00,275 Center St, San Francisco,CA,94016 +238085,Apple Airpods Headphones,1,150.0,2019-08-11 16:20:00,59 10th St, Portland,OR,97035 +238086,Bose SoundSport Headphones,1,99.99,2019-08-04 16:22:00,20 Washington St, San Francisco,CA,94016 +238087,Vareebadd Phone,1,400.0,2019-08-06 13:00:00,638 Meadow St, New York City,NY,10001 +238088,Bose SoundSport Headphones,1,99.99,2019-08-29 20:19:00,274 Center St, Boston,MA,02215 +238089,Wired Headphones,1,11.99,2019-08-13 07:19:00,102 Willow St, Austin,TX,73301 +238090,Apple Airpods Headphones,1,150.0,2019-08-29 12:14:00,243 Wilson St, Dallas,TX,75001 +238091,Apple Airpods Headphones,1,150.0,2019-08-19 18:48:00,479 8th St, San Francisco,CA,94016 +238092,Wired Headphones,1,11.99,2019-08-16 17:56:00,625 Maple St, Seattle,WA,98101 +238093,Lightning Charging Cable,1,14.95,2019-08-15 12:33:00,585 Spruce St, San Francisco,CA,94016 +238094,iPhone,1,700.0,2019-08-02 13:48:00,586 Main St, Austin,TX,73301 +238095,27in 4K Gaming Monitor,1,389.99,2019-08-08 14:15:00,556 9th St, Boston,MA,02215 +238096,iPhone,1,700.0,2019-08-30 15:59:00,535 9th St, Atlanta,GA,30301 +238097,Lightning Charging Cable,1,14.95,2019-08-03 09:44:00,555 Highland St, San Francisco,CA,94016 +238098,Vareebadd Phone,1,400.0,2019-08-04 13:06:00,288 Pine St, San Francisco,CA,94016 +238099,27in FHD Monitor,1,149.99,2019-08-30 17:12:00,265 Church St, Dallas,TX,75001 +238100,Apple Airpods Headphones,1,150.0,2019-08-09 15:17:00,480 Johnson St, New York City,NY,10001 +238101,Apple Airpods Headphones,1,150.0,2019-08-08 13:56:00,187 13th St, Los Angeles,CA,90001 +238102,Google Phone,1,600.0,2019-08-15 10:04:00,382 Hill St, Boston,MA,02215 +238103,Lightning Charging Cable,1,14.95,2019-08-22 17:14:00,848 Center St, San Francisco,CA,94016 +238104,Lightning Charging Cable,1,14.95,2019-08-26 11:51:00,499 South St, New York City,NY,10001 +238105,20in Monitor,1,109.99,2019-08-31 14:27:00,105 River St, Austin,TX,73301 +238106,27in 4K Gaming Monitor,1,389.99,2019-08-24 21:28:00,267 12th St, Los Angeles,CA,90001 +238107,Lightning Charging Cable,1,14.95,2019-08-27 18:03:00,660 Chestnut St, New York City,NY,10001 +238108,Flatscreen TV,1,300.0,2019-08-17 14:22:00,561 Highland St, Austin,TX,73301 +238109,AAA Batteries (4-pack),2,2.99,2019-08-01 12:05:00,921 Spruce St, Seattle,WA,98101 +238110,AA Batteries (4-pack),1,3.84,2019-08-30 20:13:00,620 13th St, San Francisco,CA,94016 +238111,USB-C Charging Cable,1,11.95,2019-08-07 07:54:00,173 9th St, Los Angeles,CA,90001 +238112,iPhone,1,700.0,2019-08-24 14:42:00,426 Cherry St, Austin,TX,73301 +238113,Lightning Charging Cable,1,14.95,2019-08-08 15:15:00,123 Walnut St, Austin,TX,73301 +238114,27in 4K Gaming Monitor,1,389.99,2019-08-18 14:16:00,572 Ridge St, Los Angeles,CA,90001 +238115,AA Batteries (4-pack),2,3.84,2019-08-10 20:46:00,670 West St, New York City,NY,10001 +238116,Apple Airpods Headphones,1,150.0,2019-08-04 09:14:00,517 Jefferson St, Austin,TX,73301 +238117,27in FHD Monitor,1,149.99,2019-08-01 09:15:00,640 West St, New York City,NY,10001 +238118,Lightning Charging Cable,1,14.95,2019-08-28 09:42:00,63 Forest St, Atlanta,GA,30301 +238119,USB-C Charging Cable,1,11.95,2019-08-11 18:31:00,23 Johnson St, New York City,NY,10001 +238120,iPhone,1,700.0,2019-08-03 09:28:00,246 Elm St, San Francisco,CA,94016 +238121,Wired Headphones,1,11.99,2019-08-07 19:43:00,736 West St, Seattle,WA,98101 +238122,Wired Headphones,1,11.99,2019-08-15 06:12:00,866 Park St, Seattle,WA,98101 +238123,Lightning Charging Cable,1,14.95,2019-08-18 13:04:00,586 Cedar St, New York City,NY,10001 +238124,Bose SoundSport Headphones,1,99.99,2019-08-18 01:37:00,830 Lake St, San Francisco,CA,94016 +238125,AA Batteries (4-pack),4,3.84,2019-08-11 05:01:00,39 7th St, Austin,TX,73301 +238126,Lightning Charging Cable,1,14.95,2019-08-13 12:49:00,689 Jackson St, New York City,NY,10001 +238127,Wired Headphones,1,11.99,2019-08-24 20:38:00,547 West St, Boston,MA,02215 +238128,USB-C Charging Cable,2,11.95,2019-08-08 17:40:00,149 Jackson St, Los Angeles,CA,90001 +238129,Wired Headphones,1,11.99,2019-08-25 21:58:00,728 Washington St, Atlanta,GA,30301 +238130,iPhone,1,700.0,2019-08-14 20:57:00,666 2nd St, San Francisco,CA,94016 +238131,AAA Batteries (4-pack),1,2.99,2019-08-06 21:21:00,729 2nd St, Boston,MA,02215 +238132,Flatscreen TV,1,300.0,2019-08-22 04:52:00,534 Cedar St, Los Angeles,CA,90001 +238133,Flatscreen TV,1,300.0,2019-08-19 18:02:00,880 Dogwood St, San Francisco,CA,94016 +238134,AAA Batteries (4-pack),1,2.99,2019-08-07 12:00:00,943 Highland St, Austin,TX,73301 +238135,AAA Batteries (4-pack),2,2.99,2019-08-06 10:45:00,449 Pine St, Boston,MA,02215 +238136,Wired Headphones,2,11.99,2019-08-15 04:54:00,247 7th St, Dallas,TX,75001 +238137,AAA Batteries (4-pack),3,2.99,2019-08-08 19:34:00,270 10th St, Boston,MA,02215 +238138,Flatscreen TV,1,300.0,2019-08-17 13:19:00,596 Church St, San Francisco,CA,94016 +238139,ThinkPad Laptop,1,999.99,2019-08-03 16:38:00,243 4th St, Seattle,WA,98101 +238140,USB-C Charging Cable,1,11.95,2019-08-14 22:44:00,225 11th St, Portland,ME,04101 +238141,AAA Batteries (4-pack),1,2.99,2019-08-29 19:49:00,638 Walnut St, Los Angeles,CA,90001 +238142,Apple Airpods Headphones,1,150.0,2019-08-09 18:47:00,387 Elm St, Dallas,TX,75001 +238143,Lightning Charging Cable,1,14.95,2019-08-14 14:59:00,52 Spruce St, San Francisco,CA,94016 +238144,Apple Airpods Headphones,1,150.0,2019-08-31 21:29:00,600 Chestnut St, Dallas,TX,75001 +238145,Wired Headphones,1,11.99,2019-08-09 16:25:00,351 1st St, Dallas,TX,75001 +238146,Apple Airpods Headphones,1,150.0,2019-08-21 00:24:00,142 River St, San Francisco,CA,94016 +238147,AA Batteries (4-pack),2,3.84,2019-08-06 05:28:00,170 Main St, San Francisco,CA,94016 +238148,Lightning Charging Cable,1,14.95,2019-08-01 13:52:00,135 Dogwood St, Portland,ME,04101 +238149,iPhone,1,700.0,2019-08-14 16:10:00,941 Madison St, Austin,TX,73301 +238150,Wired Headphones,1,11.99,2019-08-13 12:35:00,429 1st St, Austin,TX,73301 +238151,Wired Headphones,1,11.99,2019-08-16 20:18:00,566 Spruce St, Los Angeles,CA,90001 +238152,34in Ultrawide Monitor,1,379.99,2019-08-21 12:58:00,10 South St, San Francisco,CA,94016 +238153,Lightning Charging Cable,1,14.95,2019-08-02 18:01:00,450 Lakeview St, Portland,OR,97035 +238154,Bose SoundSport Headphones,1,99.99,2019-08-05 22:22:00,431 Adams St, Atlanta,GA,30301 +238155,Wired Headphones,1,11.99,2019-08-07 07:30:00,714 Ridge St, Dallas,TX,75001 +238156,USB-C Charging Cable,1,11.95,2019-08-26 14:06:00,408 Center St, Austin,TX,73301 +238157,USB-C Charging Cable,1,11.95,2019-08-12 19:09:00,14 Lakeview St, San Francisco,CA,94016 +238157,AAA Batteries (4-pack),6,2.99,2019-08-12 19:09:00,14 Lakeview St, San Francisco,CA,94016 +238158,Wired Headphones,1,11.99,2019-08-26 21:52:00,320 Adams St, Dallas,TX,75001 +238159,Wired Headphones,1,11.99,2019-08-23 02:01:00,783 Madison St, Dallas,TX,75001 +238160,27in FHD Monitor,1,149.99,2019-08-28 16:07:00,400 Main St, New York City,NY,10001 +238161,Wired Headphones,1,11.99,2019-08-27 20:02:00,793 Jackson St, Los Angeles,CA,90001 +238162,ThinkPad Laptop,1,999.99,2019-08-13 18:44:00,532 Church St, Austin,TX,73301 +238163,Vareebadd Phone,1,400.0,2019-08-15 19:04:00,319 Highland St, Atlanta,GA,30301 +238164,AA Batteries (4-pack),1,3.84,2019-08-18 20:37:00,564 14th St, Los Angeles,CA,90001 +238165,AAA Batteries (4-pack),1,2.99,2019-08-11 11:41:00,746 Cherry St, Austin,TX,73301 +238166,AAA Batteries (4-pack),4,2.99,2019-08-17 22:24:00,121 Adams St, Seattle,WA,98101 +238167,LG Dryer,1,600.0,2019-08-10 11:22:00,785 Chestnut St, Seattle,WA,98101 +238168,AA Batteries (4-pack),2,3.84,2019-08-05 09:19:00,41 4th St, Seattle,WA,98101 +238169,34in Ultrawide Monitor,1,379.99,2019-08-23 00:32:00,417 8th St, San Francisco,CA,94016 +238170,AA Batteries (4-pack),1,3.84,2019-08-01 11:07:00,336 Meadow St, Dallas,TX,75001 +238171,USB-C Charging Cable,1,11.95,2019-08-22 08:20:00,463 11th St, Atlanta,GA,30301 +238172,USB-C Charging Cable,1,11.95,2019-08-07 21:24:00,790 Lake St, Boston,MA,02215 +238173,AAA Batteries (4-pack),3,2.99,2019-08-12 10:50:00,833 Cedar St, New York City,NY,10001 +238174,iPhone,1,700.0,2019-08-01 21:05:00,455 8th St, Boston,MA,02215 +238175,USB-C Charging Cable,1,11.95,2019-08-14 17:29:00,989 Main St, Dallas,TX,75001 +238176,Apple Airpods Headphones,1,150.0,2019-08-09 10:23:00,589 South St, Los Angeles,CA,90001 +238177,Wired Headphones,1,11.99,2019-08-07 14:55:00,638 Dogwood St, Boston,MA,02215 +238178,AAA Batteries (4-pack),2,2.99,2019-08-24 19:05:00,642 Jackson St, Los Angeles,CA,90001 +238179,34in Ultrawide Monitor,1,379.99,2019-08-13 08:47:00,598 Ridge St, Austin,TX,73301 +238180,Apple Airpods Headphones,1,150.0,2019-08-11 11:07:00,609 12th St, New York City,NY,10001 +238181,Google Phone,1,600.0,2019-08-20 11:23:00,505 13th St, Seattle,WA,98101 +238182,Macbook Pro Laptop,1,1700.0,2019-08-14 18:13:00,868 Wilson St, Seattle,WA,98101 +238183,Lightning Charging Cable,1,14.95,2019-08-24 09:13:00,678 Hickory St, Boston,MA,02215 +238184,Wired Headphones,1,11.99,2019-08-08 17:20:00,800 Center St, Portland,ME,04101 +238185,USB-C Charging Cable,1,11.95,2019-08-08 10:28:00,246 Hickory St, Boston,MA,02215 +238186,AA Batteries (4-pack),1,3.84,2019-08-23 18:40:00,770 Madison St, Seattle,WA,98101 +238187,Wired Headphones,1,11.99,2019-08-26 16:26:00,447 Center St, Austin,TX,73301 +238188,Apple Airpods Headphones,1,150.0,2019-08-10 17:23:00,663 Washington St, San Francisco,CA,94016 +238189,Wired Headphones,1,11.99,2019-08-08 15:33:00,541 Meadow St, Portland,OR,97035 +238190,Wired Headphones,1,11.99,2019-08-23 18:12:00,445 Lakeview St, Portland,OR,97035 +238191,iPhone,1,700.0,2019-08-15 17:59:00,762 10th St, Seattle,WA,98101 +238192,USB-C Charging Cable,1,11.95,2019-08-24 14:37:00,678 Highland St, Atlanta,GA,30301 +238193,USB-C Charging Cable,1,11.95,2019-08-10 10:01:00,111 River St, San Francisco,CA,94016 +238194,Wired Headphones,1,11.99,2019-08-08 12:48:00,545 Sunset St, San Francisco,CA,94016 +238195,USB-C Charging Cable,1,11.95,2019-08-09 10:52:00,427 Wilson St, San Francisco,CA,94016 +238196,AAA Batteries (4-pack),1,2.99,2019-08-15 09:22:00,622 Forest St, Atlanta,GA,30301 +238197,Bose SoundSport Headphones,1,99.99,2019-08-16 12:55:00,735 12th St, San Francisco,CA,94016 +238198,Apple Airpods Headphones,1,150.0,2019-08-12 15:52:00,122 Johnson St, Seattle,WA,98101 +238199,Lightning Charging Cable,1,14.95,2019-08-27 10:52:00,612 8th St, Los Angeles,CA,90001 +238200,Google Phone,1,600.0,2019-08-27 18:28:00,130 Sunset St, Dallas,TX,75001 +238201,Wired Headphones,1,11.99,2019-08-09 09:12:00,724 7th St, Atlanta,GA,30301 +238202,27in FHD Monitor,1,149.99,2019-08-23 16:54:00,589 14th St, San Francisco,CA,94016 +238203,20in Monitor,1,109.99,2019-08-18 19:51:00,476 Jackson St, Boston,MA,02215 +238204,Lightning Charging Cable,1,14.95,2019-08-24 01:15:00,227 Lake St, San Francisco,CA,94016 +238205,Wired Headphones,1,11.99,2019-08-14 14:12:00,668 7th St, New York City,NY,10001 +238206,27in 4K Gaming Monitor,1,389.99,2019-08-04 16:03:00,244 Main St, Boston,MA,02215 +238207,Bose SoundSport Headphones,1,99.99,2019-08-03 19:11:00,962 14th St, Los Angeles,CA,90001 +238208,Lightning Charging Cable,1,14.95,2019-08-19 09:29:00,436 Center St, Atlanta,GA,30301 +238209,USB-C Charging Cable,1,11.95,2019-08-15 23:41:00,157 Church St, Los Angeles,CA,90001 +238210,Bose SoundSport Headphones,1,99.99,2019-08-17 19:33:00,701 Chestnut St, Austin,TX,73301 +238211,Google Phone,1,600.0,2019-08-08 11:33:00,247 West St, Portland,OR,97035 +238211,USB-C Charging Cable,1,11.95,2019-08-08 11:33:00,247 West St, Portland,OR,97035 +238211,Wired Headphones,1,11.99,2019-08-08 11:33:00,247 West St, Portland,OR,97035 +238212,Wired Headphones,1,11.99,2019-08-05 23:18:00,690 Hickory St, San Francisco,CA,94016 +238213,Apple Airpods Headphones,1,150.0,2019-08-19 21:00:00,665 Forest St, Los Angeles,CA,90001 +238213,Macbook Pro Laptop,1,1700.0,2019-08-19 21:00:00,665 Forest St, Los Angeles,CA,90001 +238214,Google Phone,1,600.0,2019-08-14 01:44:00,7 North St, Seattle,WA,98101 +238215,Flatscreen TV,1,300.0,2019-08-20 14:14:00,9 Jefferson St, Seattle,WA,98101 +238216,27in 4K Gaming Monitor,1,389.99,2019-08-27 13:46:00,184 Cedar St, New York City,NY,10001 +238217,iPhone,1,700.0,2019-08-28 08:59:00,527 9th St, Atlanta,GA,30301 +238218,Bose SoundSport Headphones,1,99.99,2019-08-24 09:31:00,175 Elm St, San Francisco,CA,94016 +238219,20in Monitor,1,109.99,2019-08-07 20:30:00,632 Lake St, Seattle,WA,98101 +238220,AAA Batteries (4-pack),1,2.99,2019-08-05 19:23:00,258 Church St, San Francisco,CA,94016 +238221,iPhone,1,700.0,2019-08-23 20:46:00,237 1st St, Los Angeles,CA,90001 +238221,Wired Headphones,1,11.99,2019-08-23 20:46:00,237 1st St, Los Angeles,CA,90001 +238222,27in 4K Gaming Monitor,1,389.99,2019-08-21 17:37:00,264 West St, Seattle,WA,98101 +238223,27in FHD Monitor,1,149.99,2019-08-01 13:43:00,806 Walnut St, San Francisco,CA,94016 +238224,27in FHD Monitor,1,149.99,2019-08-28 22:38:00,499 Walnut St, Portland,ME,04101 +238225,AAA Batteries (4-pack),1,2.99,2019-08-15 19:56:00,959 Jackson St, San Francisco,CA,94016 +238226,Lightning Charging Cable,1,14.95,2019-08-30 23:32:00,34 Dogwood St, Los Angeles,CA,90001 +238227,Macbook Pro Laptop,1,1700.0,2019-08-18 12:36:00,394 Dogwood St, Boston,MA,02215 +238228,AA Batteries (4-pack),1,3.84,2019-08-14 19:01:00,677 12th St, New York City,NY,10001 +238229,Lightning Charging Cable,1,14.95,2019-08-19 08:53:00,834 4th St, Portland,OR,97035 +238230,USB-C Charging Cable,1,11.95,2019-08-10 14:51:00,454 Highland St, New York City,NY,10001 +238231,AA Batteries (4-pack),1,3.84,2019-08-18 21:50:00,760 Spruce St, Seattle,WA,98101 +238232,Lightning Charging Cable,1,14.95,2019-08-12 15:21:00,423 2nd St, Los Angeles,CA,90001 +238233,Wired Headphones,1,11.99,2019-08-05 13:52:00,737 Maple St, Dallas,TX,75001 +238234,AAA Batteries (4-pack),1,2.99,2019-08-20 12:40:00,669 Johnson St, Los Angeles,CA,90001 +238235,AA Batteries (4-pack),1,3.84,2019-08-19 14:08:00,478 5th St, Los Angeles,CA,90001 +238236,Flatscreen TV,1,300.0,2019-08-05 14:00:00,87 Meadow St, San Francisco,CA,94016 +238237,Google Phone,1,600.0,2019-08-10 09:40:00,792 Park St, Dallas,TX,75001 +238237,USB-C Charging Cable,1,11.95,2019-08-10 09:40:00,792 Park St, Dallas,TX,75001 +238238,34in Ultrawide Monitor,1,379.99,2019-08-05 20:25:00,327 Dogwood St, San Francisco,CA,94016 +238239,AA Batteries (4-pack),2,3.84,2019-08-06 18:51:00,512 South St, Seattle,WA,98101 +238240,Apple Airpods Headphones,1,150.0,2019-08-16 17:10:00,311 Sunset St, Atlanta,GA,30301 +238241,LG Washing Machine,1,600.0,2019-08-04 12:15:00,865 Chestnut St, New York City,NY,10001 +238242,Bose SoundSport Headphones,1,99.99,2019-08-26 07:53:00,307 Park St, Austin,TX,73301 +238242,Wired Headphones,1,11.99,2019-08-26 07:53:00,307 Park St, Austin,TX,73301 +238243,AAA Batteries (4-pack),1,2.99,2019-08-06 09:51:00,517 10th St, Atlanta,GA,30301 +238244,34in Ultrawide Monitor,1,379.99,2019-08-19 07:28:00,924 4th St, Dallas,TX,75001 +238245,AAA Batteries (4-pack),2,2.99,2019-08-28 16:38:00,618 Maple St, Portland,OR,97035 +238246,Apple Airpods Headphones,1,150.0,2019-08-21 17:30:00,508 Cherry St, Atlanta,GA,30301 +238247,Apple Airpods Headphones,1,150.0,2019-08-08 22:44:00,761 Forest St, San Francisco,CA,94016 +238248,ThinkPad Laptop,1,999.99,2019-08-28 00:16:00,918 1st St, New York City,NY,10001 +238249,AA Batteries (4-pack),1,3.84,2019-08-28 12:07:00,812 Sunset St, New York City,NY,10001 +238250,Lightning Charging Cable,1,14.95,2019-08-15 12:05:00,276 1st St, Atlanta,GA,30301 +238251,USB-C Charging Cable,1,11.95,2019-08-28 20:05:00,718 Madison St, San Francisco,CA,94016 +238252,USB-C Charging Cable,1,11.95,2019-08-19 19:09:00,729 Meadow St, Los Angeles,CA,90001 +238253,Macbook Pro Laptop,1,1700.0,2019-08-10 19:54:00,559 Dogwood St, San Francisco,CA,94016 +238254,AAA Batteries (4-pack),1,2.99,2019-08-15 00:27:00,723 Wilson St, San Francisco,CA,94016 +238255,AAA Batteries (4-pack),3,2.99,2019-08-20 18:57:00,249 Walnut St, Austin,TX,73301 +238256,Wired Headphones,1,11.99,2019-08-22 20:04:00,705 Jackson St, Dallas,TX,75001 +238257,USB-C Charging Cable,1,11.95,2019-08-18 14:02:00,73 7th St, Portland,OR,97035 +238258,Bose SoundSport Headphones,1,99.99,2019-08-26 10:14:00,382 12th St, New York City,NY,10001 +238259,AAA Batteries (4-pack),1,2.99,2019-08-11 14:39:00,2 Adams St, San Francisco,CA,94016 +238260,Apple Airpods Headphones,1,150.0,2019-08-30 11:08:00,732 Meadow St, San Francisco,CA,94016 +238261,AAA Batteries (4-pack),2,2.99,2019-08-18 10:54:00,229 Spruce St, New York City,NY,10001 +238262,Lightning Charging Cable,1,14.95,2019-08-11 17:10:00,430 Adams St, Portland,ME,04101 +238263,AAA Batteries (4-pack),1,2.99,2019-08-22 18:22:00,8 13th St, Boston,MA,02215 +238264,USB-C Charging Cable,1,11.95,2019-08-17 23:37:00,62 Adams St, Boston,MA,02215 +238265,USB-C Charging Cable,1,11.95,2019-08-13 20:50:00,944 1st St, San Francisco,CA,94016 +238266,Wired Headphones,1,11.99,2019-08-10 19:14:00,584 Main St, San Francisco,CA,94016 +238267,Wired Headphones,1,11.99,2019-08-15 06:46:00,841 Church St, San Francisco,CA,94016 +238268,Lightning Charging Cable,1,14.95,2019-08-22 09:54:00,201 6th St, New York City,NY,10001 +238269,27in 4K Gaming Monitor,1,389.99,2019-08-06 22:41:00,555 Cherry St, Dallas,TX,75001 +238270,Wired Headphones,1,11.99,2019-08-28 00:49:00,104 Main St, San Francisco,CA,94016 +238271,Lightning Charging Cable,1,14.95,2019-08-11 19:14:00,708 Meadow St, Portland,OR,97035 +238272,AAA Batteries (4-pack),1,2.99,2019-08-19 20:15:00,676 5th St, Austin,TX,73301 +238273,iPhone,1,700.0,2019-08-13 11:00:00,865 Spruce St, San Francisco,CA,94016 +238273,Lightning Charging Cable,1,14.95,2019-08-13 11:00:00,865 Spruce St, San Francisco,CA,94016 +238274,Apple Airpods Headphones,1,150.0,2019-08-12 19:17:00,51 Willow St, New York City,NY,10001 +238275,AAA Batteries (4-pack),1,2.99,2019-08-03 21:09:00,146 Hickory St, Atlanta,GA,30301 +238276,AAA Batteries (4-pack),2,2.99,2019-08-01 18:49:00,733 Jefferson St, Seattle,WA,98101 +238277,ThinkPad Laptop,1,999.99,2019-08-11 17:31:00,925 9th St, Los Angeles,CA,90001 +238278,AAA Batteries (4-pack),1,2.99,2019-08-06 17:52:00,240 Dogwood St, Portland,OR,97035 +238279,iPhone,1,700.0,2019-08-23 13:00:00,609 Lincoln St, Los Angeles,CA,90001 +238280,USB-C Charging Cable,1,11.95,2019-08-06 16:04:00,234 12th St, Dallas,TX,75001 +238281,AA Batteries (4-pack),1,3.84,2019-08-11 13:10:00,637 Park St, San Francisco,CA,94016 +238282,27in 4K Gaming Monitor,1,389.99,2019-08-27 14:51:00,451 Lakeview St, Boston,MA,02215 +238283,20in Monitor,1,109.99,2019-08-04 10:30:00,624 Wilson St, San Francisco,CA,94016 +238284,ThinkPad Laptop,1,999.99,2019-08-09 10:38:00,969 Washington St, Los Angeles,CA,90001 +238285,Wired Headphones,1,11.99,2019-08-31 09:04:00,766 7th St, San Francisco,CA,94016 +238286,AA Batteries (4-pack),1,3.84,2019-08-16 04:25:00,118 11th St, Seattle,WA,98101 +238287,Macbook Pro Laptop,1,1700.0,2019-08-03 08:45:00,292 Main St, Portland,ME,04101 +238288,Lightning Charging Cable,1,14.95,2019-08-25 00:09:00,478 1st St, Los Angeles,CA,90001 +238289,Apple Airpods Headphones,1,150.0,2019-08-15 13:36:00,874 2nd St, New York City,NY,10001 +238290,Lightning Charging Cable,1,14.95,2019-08-26 11:48:00,244 13th St, Boston,MA,02215 +238291,USB-C Charging Cable,2,11.95,2019-08-26 15:51:00,535 Church St, Los Angeles,CA,90001 +238292,AA Batteries (4-pack),1,3.84,2019-08-22 18:34:00,987 West St, San Francisco,CA,94016 +238293,Google Phone,1,600.0,2019-08-02 08:42:00,289 Lincoln St, Los Angeles,CA,90001 +238294,AA Batteries (4-pack),1,3.84,2019-08-28 20:00:00,558 Wilson St, Los Angeles,CA,90001 +238294,Wired Headphones,1,11.99,2019-08-28 20:00:00,558 Wilson St, Los Angeles,CA,90001 +238295,Flatscreen TV,1,300.0,2019-08-31 08:01:00,253 4th St, San Francisco,CA,94016 +238296,Lightning Charging Cable,1,14.95,2019-08-21 20:33:00,332 2nd St, New York City,NY,10001 +238297,Apple Airpods Headphones,1,150.0,2019-08-30 18:47:00,551 Lakeview St, Seattle,WA,98101 +238298,Lightning Charging Cable,1,14.95,2019-08-26 18:04:00,265 Cherry St, New York City,NY,10001 +238299,USB-C Charging Cable,1,11.95,2019-08-10 18:16:00,969 Madison St, Boston,MA,02215 +238300,Wired Headphones,1,11.99,2019-08-18 14:43:00,277 Washington St, Atlanta,GA,30301 +238301,Wired Headphones,1,11.99,2019-08-03 19:48:00,238 Adams St, Boston,MA,02215 +238302,AA Batteries (4-pack),1,3.84,2019-08-29 19:57:00,868 Forest St, San Francisco,CA,94016 +238303,27in 4K Gaming Monitor,1,389.99,2019-08-23 15:01:00,536 Washington St, Portland,OR,97035 +238304,Wired Headphones,1,11.99,2019-08-02 12:19:00,67 8th St, New York City,NY,10001 +238305,AAA Batteries (4-pack),1,2.99,2019-08-21 13:32:00,80 Madison St, New York City,NY,10001 +238306,Apple Airpods Headphones,1,150.0,2019-08-07 21:42:00,554 1st St, Austin,TX,73301 +238307,Flatscreen TV,1,300.0,2019-08-04 20:15:00,731 Ridge St, Los Angeles,CA,90001 +238308,Flatscreen TV,1,300.0,2019-08-29 19:09:00,47 Lakeview St, San Francisco,CA,94016 +238309,AA Batteries (4-pack),1,3.84,2019-08-27 08:12:00,176 Willow St, Atlanta,GA,30301 +238310,AAA Batteries (4-pack),1,2.99,2019-08-21 19:09:00,105 Lake St, Seattle,WA,98101 +238311,Wired Headphones,1,11.99,2019-08-27 18:18:00,97 Elm St, San Francisco,CA,94016 +238312,AAA Batteries (4-pack),4,2.99,2019-08-17 14:48:00,383 Hickory St, Atlanta,GA,30301 +238313,Wired Headphones,1,11.99,2019-08-26 20:19:00,191 Wilson St, Portland,OR,97035 +238314,USB-C Charging Cable,1,11.95,2019-08-02 20:27:00,875 Hill St, Los Angeles,CA,90001 +238315,AAA Batteries (4-pack),2,2.99,2019-08-10 22:28:00,495 6th St, Los Angeles,CA,90001 +238316,Apple Airpods Headphones,1,150.0,2019-08-20 14:21:00,667 Main St, New York City,NY,10001 +238317,Google Phone,1,600.0,2019-08-02 23:10:00,635 Park St, Boston,MA,02215 +238318,Wired Headphones,1,11.99,2019-08-28 00:36:00,327 11th St, Seattle,WA,98101 +238319,Google Phone,1,600.0,2019-08-27 09:12:00,740 12th St, New York City,NY,10001 +238320,Apple Airpods Headphones,1,150.0,2019-08-12 12:17:00,860 Wilson St, Los Angeles,CA,90001 +238321,Bose SoundSport Headphones,1,99.99,2019-08-14 14:49:00,63 11th St, San Francisco,CA,94016 +238322,Wired Headphones,1,11.99,2019-08-02 14:31:00,42 Madison St, Portland,OR,97035 +238323,USB-C Charging Cable,1,11.95,2019-08-15 09:23:00,544 12th St, New York City,NY,10001 +238324,27in 4K Gaming Monitor,2,389.99,2019-08-28 20:52:00,827 Maple St, New York City,NY,10001 +238325,AAA Batteries (4-pack),2,2.99,2019-08-20 12:52:00,986 Madison St, Los Angeles,CA,90001 +238326,AAA Batteries (4-pack),1,2.99,2019-08-11 14:51:00,440 Cedar St, San Francisco,CA,94016 +238327,AAA Batteries (4-pack),2,2.99,2019-08-21 19:41:00,836 Walnut St, New York City,NY,10001 +238328,USB-C Charging Cable,1,11.95,2019-08-12 00:59:00,192 Maple St, Austin,TX,73301 +238329,Macbook Pro Laptop,1,1700.0,2019-08-03 09:09:00,552 2nd St, San Francisco,CA,94016 +238330,Vareebadd Phone,1,400.0,2019-08-15 22:07:00,384 4th St, Dallas,TX,75001 +238330,AA Batteries (4-pack),1,3.84,2019-08-15 22:07:00,384 4th St, Dallas,TX,75001 +238331,Lightning Charging Cable,1,14.95,2019-08-01 14:17:00,256 Chestnut St, Atlanta,GA,30301 +238332,Google Phone,1,600.0,2019-08-04 17:54:00,467 Hickory St, Austin,TX,73301 +238333,Wired Headphones,1,11.99,2019-08-14 02:30:00,424 5th St, Atlanta,GA,30301 +238334,Apple Airpods Headphones,1,150.0,2019-08-24 21:18:00,396 Meadow St, San Francisco,CA,94016 +238335,Wired Headphones,1,11.99,2019-08-13 10:14:00,1 Main St, San Francisco,CA,94016 +238336,Wired Headphones,1,11.99,2019-08-16 19:30:00,444 Jefferson St, New York City,NY,10001 +238337,Wired Headphones,1,11.99,2019-08-28 18:33:00,206 Washington St, San Francisco,CA,94016 +238338,Vareebadd Phone,2,400.0,2019-08-11 00:02:00,419 Adams St, San Francisco,CA,94016 +238339,AA Batteries (4-pack),2,3.84,2019-08-29 20:12:00,902 Maple St, Seattle,WA,98101 +238340,Wired Headphones,1,11.99,2019-08-10 09:42:00,751 Jefferson St, San Francisco,CA,94016 +238341,Lightning Charging Cable,1,14.95,2019-08-16 23:05:00,542 Cherry St, San Francisco,CA,94016 +238342,AA Batteries (4-pack),1,3.84,2019-08-13 23:18:00,395 7th St, Los Angeles,CA,90001 +238343,Lightning Charging Cable,1,14.95,2019-08-08 08:00:00,981 Jackson St, San Francisco,CA,94016 +238344,Macbook Pro Laptop,1,1700.0,2019-08-01 20:21:00,961 Pine St, Boston,MA,02215 +238345,AAA Batteries (4-pack),3,2.99,2019-08-04 12:09:00,987 Cherry St, Boston,MA,02215 +238346,AA Batteries (4-pack),1,3.84,2019-08-29 21:19:00,796 Cherry St, San Francisco,CA,94016 +238347,AAA Batteries (4-pack),1,2.99,2019-08-18 18:13:00,587 Lakeview St, Austin,TX,73301 +238348,Lightning Charging Cable,1,14.95,2019-08-30 18:18:00,346 6th St, Portland,ME,04101 +238349,Lightning Charging Cable,1,14.95,2019-08-13 10:54:00,64 Cherry St, Atlanta,GA,30301 +238350,USB-C Charging Cable,1,11.95,2019-08-25 13:10:00,989 North St, Seattle,WA,98101 +238351,Lightning Charging Cable,1,14.95,2019-08-02 23:01:00,158 Park St, Dallas,TX,75001 +238352,Lightning Charging Cable,1,14.95,2019-08-22 18:47:00,167 West St, New York City,NY,10001 +238353,USB-C Charging Cable,1,11.95,2019-08-11 07:44:00,585 9th St, New York City,NY,10001 +238354,Lightning Charging Cable,1,14.95,2019-08-30 10:16:00,353 8th St, Portland,ME,04101 +238355,AAA Batteries (4-pack),1,2.99,2019-08-09 17:21:00,184 Lincoln St, Boston,MA,02215 +238356,20in Monitor,1,109.99,2019-08-16 19:34:00,139 Adams St, Seattle,WA,98101 +238357,AAA Batteries (4-pack),1,2.99,2019-08-18 04:12:00,760 Maple St, Los Angeles,CA,90001 +238358,Wired Headphones,1,11.99,2019-08-15 07:28:00,106 Jefferson St, Boston,MA,02215 +238359,Wired Headphones,1,11.99,2019-08-22 15:25:00,151 1st St, San Francisco,CA,94016 +238360,Bose SoundSport Headphones,1,99.99,2019-08-18 17:11:00,62 14th St, Los Angeles,CA,90001 +238361,AA Batteries (4-pack),1,3.84,2019-08-24 21:32:00,97 Lake St, New York City,NY,10001 +238362,iPhone,1,700.0,2019-08-18 13:13:00,459 Wilson St, Austin,TX,73301 +238362,Lightning Charging Cable,1,14.95,2019-08-18 13:13:00,459 Wilson St, Austin,TX,73301 +238362,Apple Airpods Headphones,1,150.0,2019-08-18 13:13:00,459 Wilson St, Austin,TX,73301 +238363,Lightning Charging Cable,1,14.95,2019-08-22 11:06:00,832 Lakeview St, Los Angeles,CA,90001 +238364,Bose SoundSport Headphones,2,99.99,2019-08-28 15:40:00,262 Meadow St, Seattle,WA,98101 +238365,AAA Batteries (4-pack),1,2.99,2019-08-08 18:36:00,218 6th St, Austin,TX,73301 +238366,Apple Airpods Headphones,1,150.0,2019-08-15 14:55:00,282 Forest St, Seattle,WA,98101 +238367,AAA Batteries (4-pack),1,2.99,2019-08-31 23:13:00,245 Willow St, Los Angeles,CA,90001 +238368,AAA Batteries (4-pack),2,2.99,2019-08-17 13:37:00,944 Elm St, Portland,OR,97035 +238369,Macbook Pro Laptop,1,1700.0,2019-08-12 16:45:00,226 Lake St, New York City,NY,10001 +238370,AAA Batteries (4-pack),1,2.99,2019-08-25 14:37:00,692 Johnson St, San Francisco,CA,94016 +238371,USB-C Charging Cable,1,11.95,2019-08-07 19:43:00,632 Highland St, Austin,TX,73301 +238372,AA Batteries (4-pack),2,3.84,2019-08-14 17:52:00,203 West St, Los Angeles,CA,90001 +238373,Lightning Charging Cable,1,14.95,2019-08-17 16:26:00,524 Walnut St, San Francisco,CA,94016 +238374,USB-C Charging Cable,1,11.95,2019-08-27 16:15:00,284 Sunset St, Austin,TX,73301 +238375,Wired Headphones,1,11.99,2019-08-30 15:46:00,619 Forest St, Seattle,WA,98101 +238376,Bose SoundSport Headphones,1,99.99,2019-08-05 18:53:00,899 Madison St, Los Angeles,CA,90001 +238377,27in FHD Monitor,1,149.99,2019-08-19 13:20:00,766 Jefferson St, Los Angeles,CA,90001 +238378,Bose SoundSport Headphones,1,99.99,2019-08-01 21:12:00,426 Ridge St, San Francisco,CA,94016 +238379,iPhone,1,700.0,2019-08-02 10:19:00,210 South St, New York City,NY,10001 +238380,Google Phone,1,600.0,2019-08-26 20:19:00,166 Forest St, San Francisco,CA,94016 +238381,AAA Batteries (4-pack),1,2.99,2019-08-22 23:47:00,223 North St, Seattle,WA,98101 +238382,AA Batteries (4-pack),2,3.84,2019-08-06 15:38:00,272 South St, New York City,NY,10001 +238383,Bose SoundSport Headphones,1,99.99,2019-08-22 14:15:00,339 Center St, New York City,NY,10001 +238383,AA Batteries (4-pack),1,3.84,2019-08-22 14:15:00,339 Center St, New York City,NY,10001 +238384,Flatscreen TV,1,300.0,2019-08-27 11:12:00,255 Main St, Boston,MA,02215 +238385,27in 4K Gaming Monitor,1,389.99,2019-08-29 15:03:00,675 Highland St, San Francisco,CA,94016 +238386,27in 4K Gaming Monitor,1,389.99,2019-08-18 11:16:00,887 Forest St, San Francisco,CA,94016 +238387,AA Batteries (4-pack),1,3.84,2019-08-24 13:25:00,229 6th St, Portland,OR,97035 +238388,Apple Airpods Headphones,1,150.0,2019-08-30 12:50:00,925 8th St, Los Angeles,CA,90001 +238389,USB-C Charging Cable,1,11.95,2019-08-01 11:48:00,428 Main St, Seattle,WA,98101 +238390,Apple Airpods Headphones,1,150.0,2019-08-08 22:59:00,595 7th St, Los Angeles,CA,90001 +238391,Bose SoundSport Headphones,1,99.99,2019-08-31 19:47:00,89 Willow St, Seattle,WA,98101 +238392,Wired Headphones,1,11.99,2019-08-03 22:12:00,597 Lakeview St, Boston,MA,02215 +238393,USB-C Charging Cable,2,11.95,2019-08-15 19:21:00,39 Wilson St, Atlanta,GA,30301 +238394,iPhone,1,700.0,2019-08-27 07:31:00,154 2nd St, Boston,MA,02215 +238395,AA Batteries (4-pack),3,3.84,2019-08-02 00:00:00,824 Forest St, Austin,TX,73301 +238395,Google Phone,1,600.0,2019-08-02 00:00:00,824 Forest St, Austin,TX,73301 +238396,AA Batteries (4-pack),1,3.84,2019-08-23 22:16:00,622 Adams St, New York City,NY,10001 +238397,Apple Airpods Headphones,1,150.0,2019-08-28 16:49:00,124 Park St, Los Angeles,CA,90001 +238398,AA Batteries (4-pack),1,3.84,2019-08-08 19:24:00,204 Spruce St, San Francisco,CA,94016 +238398,AAA Batteries (4-pack),2,2.99,2019-08-08 19:24:00,204 Spruce St, San Francisco,CA,94016 +238399,Google Phone,1,600.0,2019-08-05 20:50:00,579 Pine St, New York City,NY,10001 +238399,USB-C Charging Cable,1,11.95,2019-08-05 20:50:00,579 Pine St, New York City,NY,10001 +238400,AA Batteries (4-pack),1,3.84,2019-08-21 09:31:00,208 2nd St, San Francisco,CA,94016 +238401,Vareebadd Phone,1,400.0,2019-08-04 12:11:00,884 Willow St, San Francisco,CA,94016 +238402,Wired Headphones,1,11.99,2019-08-22 20:51:00,504 Jackson St, Dallas,TX,75001 +238403,USB-C Charging Cable,1,11.95,2019-08-10 14:00:00,958 Hickory St, San Francisco,CA,94016 +238404,USB-C Charging Cable,1,11.95,2019-08-11 13:42:00,296 Park St, Portland,OR,97035 +238405,Apple Airpods Headphones,1,150.0,2019-08-16 15:15:00,756 5th St, Seattle,WA,98101 +238406,Flatscreen TV,1,300.0,2019-08-11 09:07:00,522 Cherry St, Los Angeles,CA,90001 +238407,iPhone,1,700.0,2019-08-02 20:44:00,127 Park St, Atlanta,GA,30301 +238408,Apple Airpods Headphones,1,150.0,2019-08-10 08:46:00,228 Jackson St, Atlanta,GA,30301 +238409,Flatscreen TV,1,300.0,2019-08-30 16:18:00,277 Center St, Portland,OR,97035 +238410,Bose SoundSport Headphones,1,99.99,2019-08-21 12:23:00,404 Adams St, Seattle,WA,98101 +238411,USB-C Charging Cable,1,11.95,2019-08-14 11:29:00,860 7th St, Portland,OR,97035 +238412,AAA Batteries (4-pack),3,2.99,2019-08-01 05:40:00,999 South St, San Francisco,CA,94016 +238413,iPhone,1,700.0,2019-08-09 13:31:00,587 Park St, Boston,MA,02215 +238414,AAA Batteries (4-pack),1,2.99,2019-08-01 22:36:00,830 Walnut St, San Francisco,CA,94016 +238415,Wired Headphones,1,11.99,2019-08-25 12:57:00,177 Lake St, Seattle,WA,98101 +238416,AAA Batteries (4-pack),2,2.99,2019-08-13 10:14:00,717 14th St, San Francisco,CA,94016 +238417,Wired Headphones,1,11.99,2019-08-20 14:31:00,232 Chestnut St, New York City,NY,10001 +238418,AA Batteries (4-pack),2,3.84,2019-08-07 02:11:00,766 Elm St, Boston,MA,02215 +238419,Lightning Charging Cable,1,14.95,2019-08-24 06:33:00,287 1st St, San Francisco,CA,94016 +238420,USB-C Charging Cable,1,11.95,2019-08-14 18:54:00,284 Hickory St, Portland,OR,97035 +238421,Flatscreen TV,1,300.0,2019-08-22 20:45:00,902 9th St, San Francisco,CA,94016 +238422,USB-C Charging Cable,1,11.95,2019-08-25 12:02:00,238 Wilson St, Dallas,TX,75001 +238423,27in 4K Gaming Monitor,1,389.99,2019-08-25 22:21:00,647 Jefferson St, San Francisco,CA,94016 +238424,Bose SoundSport Headphones,1,99.99,2019-08-05 18:12:00,230 Madison St, San Francisco,CA,94016 +238425,AAA Batteries (4-pack),2,2.99,2019-08-27 11:21:00,512 4th St, Austin,TX,73301 +238426,Apple Airpods Headphones,1,150.0,2019-08-21 20:01:00,427 Hickory St, San Francisco,CA,94016 +238427,AAA Batteries (4-pack),3,2.99,2019-08-20 07:15:00,90 Dogwood St, Dallas,TX,75001 +238428,Lightning Charging Cable,1,14.95,2019-08-21 21:16:00,219 8th St, San Francisco,CA,94016 +238429,Wired Headphones,1,11.99,2019-08-25 22:25:00,31 Washington St, Los Angeles,CA,90001 +238430,20in Monitor,1,109.99,2019-08-29 22:00:00,100 River St, San Francisco,CA,94016 +238431,AAA Batteries (4-pack),1,2.99,2019-08-07 22:31:00,267 Dogwood St, Los Angeles,CA,90001 +238432,USB-C Charging Cable,1,11.95,2019-08-10 20:13:00,158 8th St, San Francisco,CA,94016 +238433,iPhone,1,700.0,2019-08-29 17:58:00,903 12th St, Los Angeles,CA,90001 +238433,Lightning Charging Cable,1,14.95,2019-08-29 17:58:00,903 12th St, Los Angeles,CA,90001 +238434,USB-C Charging Cable,1,11.95,2019-08-18 07:12:00,120 4th St, Dallas,TX,75001 +238435,USB-C Charging Cable,1,11.95,2019-08-22 15:13:00,489 6th St, San Francisco,CA,94016 +238436,Flatscreen TV,1,300.0,2019-08-17 13:34:00,773 River St, Los Angeles,CA,90001 +238437,USB-C Charging Cable,1,11.95,2019-08-02 16:37:00,678 Jackson St, Seattle,WA,98101 +238438,Wired Headphones,1,11.99,2019-08-06 07:07:00,817 Ridge St, Portland,OR,97035 +238439,AAA Batteries (4-pack),1,2.99,2019-08-31 20:15:00,496 South St, San Francisco,CA,94016 +238440,Apple Airpods Headphones,1,150.0,2019-08-12 14:14:00,600 Cedar St, Boston,MA,02215 +238441,iPhone,1,700.0,2019-08-25 23:16:00,95 Hill St, New York City,NY,10001 +238441,Lightning Charging Cable,1,14.95,2019-08-25 23:16:00,95 Hill St, New York City,NY,10001 +238442,34in Ultrawide Monitor,1,379.99,2019-08-14 07:21:00,330 Johnson St, San Francisco,CA,94016 +238443,AA Batteries (4-pack),1,3.84,2019-08-19 06:57:00,727 1st St, Seattle,WA,98101 +238444,Bose SoundSport Headphones,1,99.99,2019-08-13 14:12:00,585 Jackson St, New York City,NY,10001 +238445,Macbook Pro Laptop,1,1700.0,2019-08-24 12:54:00,26 North St, Portland,OR,97035 +238446,USB-C Charging Cable,2,11.95,2019-08-12 15:06:00,808 West St, San Francisco,CA,94016 +238447,Lightning Charging Cable,2,14.95,2019-08-05 16:04:00,324 14th St, Seattle,WA,98101 +238448,Wired Headphones,1,11.99,2019-08-14 22:11:00,985 10th St, San Francisco,CA,94016 +238449,Wired Headphones,1,11.99,2019-08-05 18:59:00,178 Johnson St, New York City,NY,10001 +238450,USB-C Charging Cable,2,11.95,2019-08-04 09:50:00,215 Hickory St, Los Angeles,CA,90001 +238451,AAA Batteries (4-pack),1,2.99,2019-08-09 08:55:00,577 8th St, Dallas,TX,75001 +238452,Macbook Pro Laptop,1,1700.0,2019-08-28 20:37:00,415 Elm St, New York City,NY,10001 +238453,Lightning Charging Cable,1,14.95,2019-08-06 12:19:00,896 1st St, San Francisco,CA,94016 +238454,Flatscreen TV,1,300.0,2019-08-02 09:51:00,816 North St, Boston,MA,02215 +238455,Lightning Charging Cable,1,14.95,2019-08-19 23:16:00,70 Chestnut St, Austin,TX,73301 +238456,27in 4K Gaming Monitor,1,389.99,2019-08-23 16:51:00,181 Wilson St, San Francisco,CA,94016 +238457,AA Batteries (4-pack),1,3.84,2019-08-05 20:09:00,317 Church St, Boston,MA,02215 +238458,AAA Batteries (4-pack),1,2.99,2019-08-20 19:54:00,514 13th St, Boston,MA,02215 +238459,27in FHD Monitor,1,149.99,2019-08-07 12:11:00,319 Center St, San Francisco,CA,94016 +238460,27in FHD Monitor,1,149.99,2019-08-30 16:46:00,297 Ridge St, Dallas,TX,75001 +238461,Apple Airpods Headphones,1,150.0,2019-08-20 06:21:00,967 Lincoln St, Atlanta,GA,30301 +238461,Macbook Pro Laptop,1,1700.0,2019-08-20 06:21:00,967 Lincoln St, Atlanta,GA,30301 +238462,Bose SoundSport Headphones,1,99.99,2019-08-15 11:24:00,638 14th St, San Francisco,CA,94016 +238463,Lightning Charging Cable,1,14.95,2019-08-21 05:50:00,924 Maple St, San Francisco,CA,94016 +238464,USB-C Charging Cable,1,11.95,2019-08-03 09:08:00,566 Washington St, Los Angeles,CA,90001 +238465,iPhone,1,700.0,2019-08-23 17:48:00,607 River St, Seattle,WA,98101 +238466,USB-C Charging Cable,1,11.95,2019-08-16 20:35:00,529 2nd St, San Francisco,CA,94016 +238467,27in 4K Gaming Monitor,1,389.99,2019-08-07 21:27:00,188 Ridge St, Atlanta,GA,30301 +238468,AAA Batteries (4-pack),2,2.99,2019-08-25 20:29:00,652 Chestnut St, Dallas,TX,75001 +238469,AAA Batteries (4-pack),1,2.99,2019-08-25 10:29:00,238 Lake St, San Francisco,CA,94016 +238470,AAA Batteries (4-pack),1,2.99,2019-08-26 15:46:00,892 Main St, San Francisco,CA,94016 +238471,AA Batteries (4-pack),1,3.84,2019-08-21 14:06:00,86 Madison St, Los Angeles,CA,90001 +238472,Bose SoundSport Headphones,1,99.99,2019-08-20 18:15:00,995 Hickory St, Portland,OR,97035 +238473,Apple Airpods Headphones,1,150.0,2019-08-29 23:18:00,230 Lakeview St, Portland,OR,97035 +238474,Google Phone,1,600.0,2019-08-02 22:26:00,48 Madison St, San Francisco,CA,94016 +238474,USB-C Charging Cable,1,11.95,2019-08-02 22:26:00,48 Madison St, San Francisco,CA,94016 +238475,Apple Airpods Headphones,1,150.0,2019-08-17 16:53:00,520 Jefferson St, Los Angeles,CA,90001 +238476,27in 4K Gaming Monitor,1,389.99,2019-08-22 19:17:00,210 Meadow St, San Francisco,CA,94016 +238477,Wired Headphones,1,11.99,2019-08-25 14:34:00,49 Cherry St, Boston,MA,02215 +238478,AA Batteries (4-pack),2,3.84,2019-08-15 17:56:00,997 Dogwood St, New York City,NY,10001 +238479,Flatscreen TV,1,300.0,2019-08-16 07:53:00,192 8th St, San Francisco,CA,94016 +238480,AA Batteries (4-pack),1,3.84,2019-08-09 13:18:00,853 Center St, Los Angeles,CA,90001 +238481,AAA Batteries (4-pack),1,2.99,2019-08-12 13:14:00,866 Cherry St, San Francisco,CA,94016 +238482,Flatscreen TV,1,300.0,2019-08-22 22:56:00,569 River St, Austin,TX,73301 +238483,34in Ultrawide Monitor,1,379.99,2019-08-29 18:19:00,442 Hill St, New York City,NY,10001 +238484,Lightning Charging Cable,1,14.95,2019-08-16 23:02:00,650 7th St, Los Angeles,CA,90001 +238485,USB-C Charging Cable,1,11.95,2019-08-08 10:17:00,985 Hickory St, Los Angeles,CA,90001 +238486,Lightning Charging Cable,1,14.95,2019-08-20 15:56:00,513 River St, New York City,NY,10001 +238487,USB-C Charging Cable,1,11.95,2019-08-26 06:26:00,538 South St, Boston,MA,02215 +238488,Lightning Charging Cable,1,14.95,2019-08-11 19:36:00,380 Wilson St, Boston,MA,02215 +238489,AAA Batteries (4-pack),1,2.99,2019-08-16 15:05:00,768 Washington St, Seattle,WA,98101 +238490,AA Batteries (4-pack),2,3.84,2019-08-25 19:32:00,409 Cherry St, New York City,NY,10001 +238491,USB-C Charging Cable,1,11.95,2019-08-16 10:46:00,789 Madison St, Los Angeles,CA,90001 +238492,Google Phone,1,600.0,2019-08-09 20:47:00,890 12th St, New York City,NY,10001 +238493,AA Batteries (4-pack),1,3.84,2019-08-03 16:02:00,643 Dogwood St, San Francisco,CA,94016 +238494,Wired Headphones,1,11.99,2019-08-27 15:29:00,186 9th St, Atlanta,GA,30301 +238495,20in Monitor,1,109.99,2019-08-05 13:40:00,988 14th St, San Francisco,CA,94016 +238496,ThinkPad Laptop,1,999.99,2019-08-04 20:48:00,290 6th St, Seattle,WA,98101 +238497,Wired Headphones,1,11.99,2019-08-13 18:15:00,395 1st St, Seattle,WA,98101 +238498,Lightning Charging Cable,1,14.95,2019-08-24 21:38:00,181 Forest St, New York City,NY,10001 +238499,27in 4K Gaming Monitor,1,389.99,2019-08-17 18:56:00,980 Pine St, Austin,TX,73301 +238500,Vareebadd Phone,1,400.0,2019-08-16 15:06:00,302 2nd St, Boston,MA,02215 +238501,Lightning Charging Cable,1,14.95,2019-08-18 17:56:00,80 Chestnut St, Seattle,WA,98101 +238502,Wired Headphones,1,11.99,2019-08-15 16:16:00,204 Forest St, Atlanta,GA,30301 +238503,AA Batteries (4-pack),1,3.84,2019-08-06 04:31:00,549 12th St, Boston,MA,02215 +238504,Macbook Pro Laptop,1,1700.0,2019-08-06 22:19:00,751 2nd St, Boston,MA,02215 +238505,Lightning Charging Cable,1,14.95,2019-08-09 00:13:00,499 Church St, Los Angeles,CA,90001 +238506,27in FHD Monitor,1,149.99,2019-08-07 16:53:00,63 5th St, Los Angeles,CA,90001 +238507,USB-C Charging Cable,1,11.95,2019-08-11 14:37:00,775 2nd St, San Francisco,CA,94016 +238508,27in 4K Gaming Monitor,1,389.99,2019-08-17 21:31:00,393 Ridge St, New York City,NY,10001 +238509,USB-C Charging Cable,1,11.95,2019-08-25 21:44:00,614 10th St, San Francisco,CA,94016 +238510,27in 4K Gaming Monitor,1,389.99,2019-08-05 11:28:00,5 6th St, Dallas,TX,75001 +238511,AAA Batteries (4-pack),1,2.99,2019-08-15 13:12:00,295 Lincoln St, Portland,ME,04101 +238512,Macbook Pro Laptop,1,1700.0,2019-08-16 13:06:00,285 Chestnut St, Los Angeles,CA,90001 +238513,Bose SoundSport Headphones,1,99.99,2019-08-10 15:13:00,118 Wilson St, Portland,OR,97035 +238514,AAA Batteries (4-pack),1,2.99,2019-08-31 19:52:00,492 Johnson St, Boston,MA,02215 +238515,Lightning Charging Cable,1,14.95,2019-08-03 10:57:00,712 Center St, San Francisco,CA,94016 +238516,AAA Batteries (4-pack),2,2.99,2019-08-21 00:05:00,750 Sunset St, Atlanta,GA,30301 +238517,Bose SoundSport Headphones,1,99.99,2019-08-29 13:05:00,428 2nd St, San Francisco,CA,94016 +238518,Bose SoundSport Headphones,1,99.99,2019-08-31 21:22:00,160 Hill St, Dallas,TX,75001 +238519,AAA Batteries (4-pack),2,2.99,2019-08-22 18:31:00,573 Hickory St, San Francisco,CA,94016 +238520,AA Batteries (4-pack),1,3.84,2019-08-16 13:40:00,260 Cedar St, New York City,NY,10001 +238521,USB-C Charging Cable,1,11.95,2019-08-15 14:27:00,56 West St, Dallas,TX,75001 +238522,Wired Headphones,1,11.99,2019-08-31 13:48:00,93 Jefferson St, Dallas,TX,75001 +238522,34in Ultrawide Monitor,1,379.99,2019-08-31 13:48:00,93 Jefferson St, Dallas,TX,75001 +238523,AAA Batteries (4-pack),1,2.99,2019-08-14 18:38:00,48 Main St, New York City,NY,10001 +238524,34in Ultrawide Monitor,1,379.99,2019-08-09 12:53:00,872 1st St, San Francisco,CA,94016 +238525,Apple Airpods Headphones,1,150.0,2019-08-14 20:29:00,376 4th St, Boston,MA,02215 +238526,27in FHD Monitor,1,149.99,2019-08-13 09:51:00,882 12th St, New York City,NY,10001 +238527,AAA Batteries (4-pack),2,2.99,2019-08-24 12:56:00,801 Maple St, Dallas,TX,75001 +238528,ThinkPad Laptop,1,999.99,2019-08-05 17:26:00,229 Hill St, San Francisco,CA,94016 +238529,AAA Batteries (4-pack),1,2.99,2019-08-26 20:16:00,590 14th St, San Francisco,CA,94016 +238530,AA Batteries (4-pack),1,3.84,2019-08-22 22:56:00,973 Ridge St, San Francisco,CA,94016 +238531,AAA Batteries (4-pack),1,2.99,2019-08-23 01:20:00,726 West St, New York City,NY,10001 +238532,27in FHD Monitor,1,149.99,2019-08-14 20:38:00,318 Pine St, Portland,OR,97035 +238533,AA Batteries (4-pack),2,3.84,2019-08-30 17:58:00,168 10th St, Portland,OR,97035 +238534,27in FHD Monitor,1,149.99,2019-08-06 02:08:00,82 Madison St, San Francisco,CA,94016 +238535,Bose SoundSport Headphones,1,99.99,2019-08-30 14:57:00,139 Main St, Los Angeles,CA,90001 +238536,Apple Airpods Headphones,1,150.0,2019-08-24 18:52:00,527 Washington St, San Francisco,CA,94016 +238537,34in Ultrawide Monitor,1,379.99,2019-08-29 19:45:00,833 5th St, Boston,MA,02215 +238538,Apple Airpods Headphones,1,150.0,2019-08-22 13:53:00,184 Madison St, Dallas,TX,75001 +238539,34in Ultrawide Monitor,1,379.99,2019-08-23 09:30:00,914 Adams St, Boston,MA,02215 +238540,USB-C Charging Cable,1,11.95,2019-08-13 23:10:00,215 Willow St, Dallas,TX,75001 +238541,AAA Batteries (4-pack),1,2.99,2019-08-05 16:55:00,294 Hill St, Boston,MA,02215 +238542,AA Batteries (4-pack),2,3.84,2019-08-14 17:27:00,899 Hill St, New York City,NY,10001 +238543,Bose SoundSport Headphones,1,99.99,2019-08-03 00:37:00,178 Lincoln St, Portland,OR,97035 +238544,Wired Headphones,1,11.99,2019-08-04 18:00:00,52 Elm St, San Francisco,CA,94016 +238545,AAA Batteries (4-pack),1,2.99,2019-08-28 22:59:00,381 Cherry St, San Francisco,CA,94016 +238546,Macbook Pro Laptop,1,1700.0,2019-08-15 21:02:00,93 West St, Los Angeles,CA,90001 +238547,USB-C Charging Cable,2,11.95,2019-08-16 20:15:00,920 Lakeview St, New York City,NY,10001 +238548,34in Ultrawide Monitor,1,379.99,2019-08-12 05:43:00,345 Adams St, Atlanta,GA,30301 +238549,AAA Batteries (4-pack),1,2.99,2019-08-23 18:26:00,408 13th St, Portland,OR,97035 +238550,Lightning Charging Cable,1,14.95,2019-08-31 20:15:00,123 Wilson St, Boston,MA,02215 +238551,Wired Headphones,2,11.99,2019-08-20 12:04:00,259 Forest St, Atlanta,GA,30301 +238552,Apple Airpods Headphones,1,150.0,2019-08-08 14:36:00,473 Center St, San Francisco,CA,94016 +238553,AA Batteries (4-pack),1,3.84,2019-08-03 15:04:00,260 Madison St, San Francisco,CA,94016 +238554,27in 4K Gaming Monitor,1,389.99,2019-08-07 08:49:00,445 Hill St, San Francisco,CA,94016 +238555,Bose SoundSport Headphones,1,99.99,2019-08-17 16:08:00,14 Church St, San Francisco,CA,94016 +238556,Apple Airpods Headphones,1,150.0,2019-08-18 21:02:00,990 8th St, Atlanta,GA,30301 +238557,USB-C Charging Cable,1,11.95,2019-08-21 18:10:00,257 Main St, New York City,NY,10001 +238558,AAA Batteries (4-pack),2,2.99,2019-08-19 14:49:00,504 2nd St, Boston,MA,02215 +238559,Lightning Charging Cable,1,14.95,2019-08-27 07:09:00,509 7th St, Los Angeles,CA,90001 +238560,AAA Batteries (4-pack),2,2.99,2019-08-07 17:21:00,103 Main St, Los Angeles,CA,90001 +238561,Wired Headphones,1,11.99,2019-08-19 20:37:00,420 Park St, Seattle,WA,98101 +238562,Flatscreen TV,1,300.0,2019-08-14 08:05:00,593 Maple St, New York City,NY,10001 +238563,Wired Headphones,2,11.99,2019-08-22 15:28:00,573 8th St, Seattle,WA,98101 +238564,27in FHD Monitor,1,149.99,2019-08-28 14:19:00,22 Hickory St, Boston,MA,02215 +238565,Lightning Charging Cable,1,14.95,2019-08-15 23:22:00,274 Cherry St, Seattle,WA,98101 +238566,USB-C Charging Cable,1,11.95,2019-08-13 17:34:00,347 Madison St, Atlanta,GA,30301 +238567,AA Batteries (4-pack),1,3.84,2019-08-23 12:12:00,718 10th St, San Francisco,CA,94016 +238568,ThinkPad Laptop,1,999.99,2019-08-02 18:07:00,18 North St, Boston,MA,02215 +238569,Bose SoundSport Headphones,1,99.99,2019-08-21 18:46:00,567 2nd St, Seattle,WA,98101 +238570,AAA Batteries (4-pack),2,2.99,2019-08-15 22:31:00,829 4th St, Atlanta,GA,30301 +238571,USB-C Charging Cable,1,11.95,2019-08-05 23:01:00,739 River St, Atlanta,GA,30301 +238572,Lightning Charging Cable,1,14.95,2019-08-09 14:44:00,876 Meadow St, Boston,MA,02215 +238573,34in Ultrawide Monitor,1,379.99,2019-08-15 16:38:00,87 Cherry St, Los Angeles,CA,90001 +238574,Apple Airpods Headphones,1,150.0,2019-08-29 11:37:00,524 Spruce St, San Francisco,CA,94016 +238575,USB-C Charging Cable,1,11.95,2019-08-07 10:40:00,724 Meadow St, San Francisco,CA,94016 +238576,AAA Batteries (4-pack),2,2.99,2019-08-19 21:22:00,742 Forest St, Atlanta,GA,30301 +238577,34in Ultrawide Monitor,1,379.99,2019-08-02 18:31:00,272 Elm St, Portland,ME,04101 +238578,USB-C Charging Cable,1,11.95,2019-08-10 18:31:00,30 Maple St, Dallas,TX,75001 +238579,ThinkPad Laptop,1,999.99,2019-08-30 19:52:00,476 7th St, Dallas,TX,75001 +238580,ThinkPad Laptop,1,999.99,2019-08-29 14:37:00,867 11th St, Seattle,WA,98101 +238581,Bose SoundSport Headphones,2,99.99,2019-08-03 22:59:00,759 Main St, San Francisco,CA,94016 +238582,27in 4K Gaming Monitor,1,389.99,2019-08-07 13:54:00,439 13th St, Atlanta,GA,30301 +238583,27in FHD Monitor,1,149.99,2019-08-18 16:02:00,17 Lake St, Seattle,WA,98101 +238584,AAA Batteries (4-pack),3,2.99,2019-08-14 11:04:00,146 5th St, Boston,MA,02215 +238585,AAA Batteries (4-pack),2,2.99,2019-08-21 06:50:00,28 North St, Los Angeles,CA,90001 +238586,AAA Batteries (4-pack),4,2.99,2019-08-04 16:32:00,480 Spruce St, San Francisco,CA,94016 +238587,Lightning Charging Cable,1,14.95,2019-08-23 18:28:00,360 Cedar St, New York City,NY,10001 +238587,USB-C Charging Cable,1,11.95,2019-08-23 18:28:00,360 Cedar St, New York City,NY,10001 +238588,Wired Headphones,1,11.99,2019-08-08 09:14:00,701 Ridge St, Austin,TX,73301 +238589,USB-C Charging Cable,1,11.95,2019-08-30 20:06:00,79 Elm St, Portland,OR,97035 +238590,Apple Airpods Headphones,1,150.0,2019-08-17 10:49:00,696 1st St, San Francisco,CA,94016 +238591,Bose SoundSport Headphones,1,99.99,2019-08-16 18:30:00,982 Cedar St, Atlanta,GA,30301 +238592,27in 4K Gaming Monitor,1,389.99,2019-08-03 20:07:00,220 Washington St, Portland,ME,04101 +238593,Wired Headphones,1,11.99,2019-08-19 15:57:00,854 Sunset St, San Francisco,CA,94016 +238594,Flatscreen TV,1,300.0,2019-08-31 10:45:00,306 West St, San Francisco,CA,94016 +238595,Lightning Charging Cable,1,14.95,2019-08-06 21:02:00,699 Cherry St, Boston,MA,02215 +238596,20in Monitor,1,109.99,2019-08-25 06:36:00,708 Pine St, Los Angeles,CA,90001 +238597,Wired Headphones,1,11.99,2019-08-02 09:09:00,157 1st St, Boston,MA,02215 +238598,Wired Headphones,1,11.99,2019-08-23 18:49:00,271 14th St, New York City,NY,10001 +238599,34in Ultrawide Monitor,1,379.99,2019-08-09 06:44:00,62 Chestnut St, New York City,NY,10001 +238600,AA Batteries (4-pack),1,3.84,2019-08-11 20:22:00,161 13th St, New York City,NY,10001 +238601,AA Batteries (4-pack),2,3.84,2019-08-24 17:57:00,272 Church St, Los Angeles,CA,90001 +238602,Apple Airpods Headphones,1,150.0,2019-08-19 15:46:00,246 Dogwood St, Boston,MA,02215 +238603,AAA Batteries (4-pack),1,2.99,2019-08-26 22:47:00,930 Sunset St, Seattle,WA,98101 +238604,Apple Airpods Headphones,1,150.0,2019-08-22 15:25:00,72 8th St, San Francisco,CA,94016 +238605,Wired Headphones,1,11.99,2019-08-13 09:57:00,360 Lake St, San Francisco,CA,94016 +238606,Wired Headphones,1,11.99,2019-08-12 11:22:00,123 9th St, San Francisco,CA,94016 +238607,Google Phone,1,600.0,2019-08-19 16:48:00,417 1st St, Atlanta,GA,30301 +238608,Bose SoundSport Headphones,1,99.99,2019-08-26 08:14:00,532 Johnson St, New York City,NY,10001 +238609,Flatscreen TV,1,300.0,2019-08-26 20:54:00,417 Cherry St, Boston,MA,02215 +238610,AA Batteries (4-pack),1,3.84,2019-08-15 14:45:00,761 12th St, Boston,MA,02215 +238611,AA Batteries (4-pack),2,3.84,2019-08-07 13:20:00,848 North St, Austin,TX,73301 +238612,Apple Airpods Headphones,1,150.0,2019-08-31 23:15:00,957 Sunset St, Atlanta,GA,30301 +238613,27in 4K Gaming Monitor,1,389.99,2019-08-10 04:29:00,426 11th St, San Francisco,CA,94016 +238614,USB-C Charging Cable,1,11.95,2019-08-21 00:56:00,160 10th St, Atlanta,GA,30301 +238615,27in 4K Gaming Monitor,1,389.99,2019-08-10 10:45:00,122 Wilson St, Los Angeles,CA,90001 +238616,AAA Batteries (4-pack),1,2.99,2019-08-25 22:08:00,927 Hill St, Austin,TX,73301 +238617,AA Batteries (4-pack),1,3.84,2019-08-13 10:36:00,931 Adams St, New York City,NY,10001 +238618,USB-C Charging Cable,1,11.95,2019-08-24 00:07:00,119 13th St, Boston,MA,02215 +238619,Apple Airpods Headphones,1,150.0,2019-08-02 12:47:00,702 13th St, Los Angeles,CA,90001 +238620,iPhone,1,700.0,2019-08-29 21:03:00,36 Hill St, Seattle,WA,98101 +238621,Apple Airpods Headphones,1,150.0,2019-08-02 14:44:00,720 14th St, Portland,OR,97035 +238622,Macbook Pro Laptop,1,1700.0,2019-08-26 11:17:00,235 Wilson St, Los Angeles,CA,90001 +238623,Macbook Pro Laptop,1,1700.0,2019-08-05 07:08:00,835 Adams St, Los Angeles,CA,90001 +238624,AAA Batteries (4-pack),2,2.99,2019-08-10 07:26:00,103 1st St, San Francisco,CA,94016 +238625,AAA Batteries (4-pack),1,2.99,2019-08-15 11:50:00,41 5th St, Los Angeles,CA,90001 +238626,USB-C Charging Cable,1,11.95,2019-08-19 15:19:00,516 Willow St, Seattle,WA,98101 +238627,AA Batteries (4-pack),1,3.84,2019-08-08 16:06:00,167 West St, Seattle,WA,98101 +238628,AA Batteries (4-pack),1,3.84,2019-08-15 18:38:00,202 Lake St, San Francisco,CA,94016 +238629,Wired Headphones,1,11.99,2019-08-21 16:17:00,2 12th St, Austin,TX,73301 +238630,AAA Batteries (4-pack),1,2.99,2019-08-01 10:29:00,497 Ridge St, Boston,MA,02215 +238631,ThinkPad Laptop,1,999.99,2019-08-11 12:56:00,340 Hickory St, Seattle,WA,98101 +238632,Wired Headphones,1,11.99,2019-08-27 17:41:00,150 6th St, New York City,NY,10001 +238633,Macbook Pro Laptop,1,1700.0,2019-08-03 20:37:00,392 Center St, Atlanta,GA,30301 +238634,USB-C Charging Cable,1,11.95,2019-08-22 22:50:00,596 11th St, San Francisco,CA,94016 +238635,Lightning Charging Cable,1,14.95,2019-08-20 15:45:00,215 Elm St, Atlanta,GA,30301 +238636,USB-C Charging Cable,1,11.95,2019-08-08 06:44:00,671 Park St, Portland,OR,97035 +238637,Lightning Charging Cable,1,14.95,2019-08-02 08:16:00,652 West St, Seattle,WA,98101 +238638,34in Ultrawide Monitor,1,379.99,2019-08-09 10:02:00,584 Chestnut St, Atlanta,GA,30301 +238639,Apple Airpods Headphones,1,150.0,2019-08-15 10:10:00,237 2nd St, Atlanta,GA,30301 +238640,USB-C Charging Cable,1,11.95,2019-08-02 10:52:00,421 Maple St, Boston,MA,02215 +238641,iPhone,1,700.0,2019-08-06 18:51:00,534 9th St, Los Angeles,CA,90001 +238641,Wired Headphones,1,11.99,2019-08-06 18:51:00,534 9th St, Los Angeles,CA,90001 +238642,USB-C Charging Cable,1,11.95,2019-08-24 18:19:00,878 6th St, San Francisco,CA,94016 +238643,USB-C Charging Cable,1,11.95,2019-08-07 03:34:00,511 West St, San Francisco,CA,94016 +238644,AA Batteries (4-pack),3,3.84,2019-08-06 18:58:00,554 6th St, San Francisco,CA,94016 +238645,Bose SoundSport Headphones,1,99.99,2019-08-02 18:14:00,220 Pine St, San Francisco,CA,94016 +238646,iPhone,1,700.0,2019-08-31 00:59:00,816 Walnut St, New York City,NY,10001 +238647,AA Batteries (4-pack),1,3.84,2019-08-09 08:47:00,528 Johnson St, Los Angeles,CA,90001 +238648,34in Ultrawide Monitor,1,379.99,2019-08-02 21:26:00,929 Meadow St, San Francisco,CA,94016 +238649,Wired Headphones,1,11.99,2019-08-24 21:59:00,732 9th St, New York City,NY,10001 +238650,Lightning Charging Cable,1,14.95,2019-08-26 16:11:00,478 11th St, Los Angeles,CA,90001 +238651,34in Ultrawide Monitor,1,379.99,2019-08-06 08:00:00,771 13th St, Atlanta,GA,30301 +238652,USB-C Charging Cable,1,11.95,2019-08-09 05:56:00,501 Spruce St, San Francisco,CA,94016 +238653,Wired Headphones,1,11.99,2019-08-29 23:26:00,604 Highland St, New York City,NY,10001 +238654,Macbook Pro Laptop,1,1700.0,2019-08-23 10:43:00,485 Lincoln St, Los Angeles,CA,90001 +238655,AAA Batteries (4-pack),2,2.99,2019-08-13 20:13:00,734 Jackson St, Seattle,WA,98101 +238656,Google Phone,1,600.0,2019-08-25 01:08:00,377 13th St, Portland,OR,97035 +238657,27in 4K Gaming Monitor,1,389.99,2019-08-28 20:19:00,812 Maple St, Dallas,TX,75001 +238658,AAA Batteries (4-pack),1,2.99,2019-08-06 20:15:00,858 13th St, Los Angeles,CA,90001 +238659,Google Phone,1,600.0,2019-08-16 19:16:00,132 7th St, Seattle,WA,98101 +238660,Lightning Charging Cable,1,14.95,2019-08-23 16:13:00,794 Sunset St, Dallas,TX,75001 +238661,34in Ultrawide Monitor,1,379.99,2019-08-17 07:57:00,807 Willow St, San Francisco,CA,94016 +238662,27in 4K Gaming Monitor,1,389.99,2019-08-25 21:58:00,967 Walnut St, San Francisco,CA,94016 +238663,USB-C Charging Cable,1,11.95,2019-08-05 20:13:00,689 Willow St, Boston,MA,02215 +238664,AAA Batteries (4-pack),1,2.99,2019-08-27 18:02:00,142 Wilson St, San Francisco,CA,94016 +238665,Flatscreen TV,1,300.0,2019-08-23 14:11:00,555 6th St, New York City,NY,10001 +238666,27in FHD Monitor,1,149.99,2019-08-14 19:36:00,841 14th St, Austin,TX,73301 +238667,Lightning Charging Cable,1,14.95,2019-08-11 12:19:00,483 1st St, San Francisco,CA,94016 +238668,USB-C Charging Cable,1,11.95,2019-08-21 20:32:00,682 13th St, San Francisco,CA,94016 +238669,USB-C Charging Cable,1,11.95,2019-08-23 12:31:00,497 9th St, Los Angeles,CA,90001 +238670,ThinkPad Laptop,1,999.99,2019-08-11 03:09:00,280 Johnson St, Boston,MA,02215 +238671,20in Monitor,1,109.99,2019-08-02 19:04:00,434 Walnut St, San Francisco,CA,94016 +238672,USB-C Charging Cable,1,11.95,2019-08-15 18:44:00,278 1st St, San Francisco,CA,94016 +238673,AA Batteries (4-pack),1,3.84,2019-08-26 11:37:00,438 Willow St, Seattle,WA,98101 +238674,20in Monitor,1,109.99,2019-08-08 12:49:00,383 Hill St, Dallas,TX,75001 +238675,USB-C Charging Cable,1,11.95,2019-08-14 22:40:00,676 14th St, Boston,MA,02215 +238676,Bose SoundSport Headphones,1,99.99,2019-08-27 12:51:00,982 Highland St, San Francisco,CA,94016 +238677,AAA Batteries (4-pack),2,2.99,2019-08-14 23:15:00,991 Forest St, New York City,NY,10001 +238678,Apple Airpods Headphones,1,150.0,2019-08-24 16:53:00,388 South St, San Francisco,CA,94016 +238679,USB-C Charging Cable,2,11.95,2019-08-23 11:36:00,481 South St, Dallas,TX,75001 +238680,USB-C Charging Cable,1,11.95,2019-08-26 16:44:00,917 Dogwood St, New York City,NY,10001 +238681,Macbook Pro Laptop,1,1700.0,2019-08-22 13:59:00,75 Washington St, New York City,NY,10001 +238682,AA Batteries (4-pack),2,3.84,2019-08-22 19:42:00,221 Hill St, Atlanta,GA,30301 +238683,AA Batteries (4-pack),3,3.84,2019-08-07 15:35:00,224 Wilson St, Portland,ME,04101 +238684,Wired Headphones,1,11.99,2019-08-29 07:45:00,316 Pine St, New York City,NY,10001 +238685,Wired Headphones,1,11.99,2019-08-20 19:54:00,557 Cherry St, San Francisco,CA,94016 +238686,AA Batteries (4-pack),2,3.84,2019-08-15 10:20:00,927 2nd St, San Francisco,CA,94016 +238687,27in FHD Monitor,1,149.99,2019-08-05 19:34:00,273 12th St, San Francisco,CA,94016 +238688,Lightning Charging Cable,1,14.95,2019-08-30 19:02:00,718 Highland St, Austin,TX,73301 +238689,Lightning Charging Cable,1,14.95,2019-08-13 14:51:00,473 13th St, San Francisco,CA,94016 +238690,27in FHD Monitor,1,149.99,2019-08-10 17:47:00,733 Hill St, Atlanta,GA,30301 +238691,Google Phone,1,600.0,2019-08-02 19:03:00,496 Willow St, Dallas,TX,75001 +238691,USB-C Charging Cable,1,11.95,2019-08-02 19:03:00,496 Willow St, Dallas,TX,75001 +238691,Vareebadd Phone,1,400.0,2019-08-02 19:03:00,496 Willow St, Dallas,TX,75001 +238692,Wired Headphones,1,11.99,2019-08-25 17:54:00,441 Jackson St, Seattle,WA,98101 +238693,34in Ultrawide Monitor,1,379.99,2019-08-18 20:55:00,795 Jackson St, Atlanta,GA,30301 +238694,Wired Headphones,1,11.99,2019-08-04 19:44:00,802 Jefferson St, New York City,NY,10001 +238695,Macbook Pro Laptop,1,1700.0,2019-08-15 15:24:00,402 11th St, San Francisco,CA,94016 +238696,Bose SoundSport Headphones,1,99.99,2019-08-10 08:04:00,724 Park St, New York City,NY,10001 +238697,Lightning Charging Cable,1,14.95,2019-08-10 23:32:00,240 6th St, Austin,TX,73301 +238698,Macbook Pro Laptop,1,1700.0,2019-08-05 14:17:00,275 Wilson St, New York City,NY,10001 +238699,AAA Batteries (4-pack),1,2.99,2019-08-31 07:40:00,275 Hickory St, Los Angeles,CA,90001 +238700,AA Batteries (4-pack),1,3.84,2019-08-27 11:53:00,754 Adams St, Los Angeles,CA,90001 +238701,Google Phone,1,600.0,2019-08-30 23:46:00,66 Ridge St, Austin,TX,73301 +238702,Lightning Charging Cable,1,14.95,2019-08-06 06:44:00,644 Adams St, New York City,NY,10001 +238703,AA Batteries (4-pack),1,3.84,2019-08-11 11:46:00,120 Walnut St, Los Angeles,CA,90001 +238704,Lightning Charging Cable,1,14.95,2019-08-17 20:57:00,545 Ridge St, New York City,NY,10001 +238705,AA Batteries (4-pack),3,3.84,2019-08-02 09:24:00,977 Maple St, Atlanta,GA,30301 +238706,Lightning Charging Cable,1,14.95,2019-08-26 18:59:00,453 Cherry St, Atlanta,GA,30301 +238707,27in FHD Monitor,1,149.99,2019-08-24 21:15:00,759 Center St, Portland,OR,97035 +238708,Bose SoundSport Headphones,1,99.99,2019-08-10 16:16:00,899 Main St, Dallas,TX,75001 +238709,Google Phone,1,600.0,2019-08-06 11:07:00,997 River St, New York City,NY,10001 +238710,27in FHD Monitor,1,149.99,2019-08-21 22:31:00,452 Walnut St, Atlanta,GA,30301 +238711,AA Batteries (4-pack),3,3.84,2019-08-08 18:52:00,437 Spruce St, San Francisco,CA,94016 +238712,Bose SoundSport Headphones,1,99.99,2019-08-31 19:40:00,324 Sunset St, Portland,OR,97035 +238713,Google Phone,1,600.0,2019-08-25 22:03:00,329 Jefferson St, San Francisco,CA,94016 +238714,AA Batteries (4-pack),2,3.84,2019-08-16 15:22:00,32 Church St, Los Angeles,CA,90001 +238715,AAA Batteries (4-pack),2,2.99,2019-08-19 08:28:00,75 Lakeview St, Seattle,WA,98101 +238716,Google Phone,1,600.0,2019-08-16 08:12:00,528 Ridge St, Dallas,TX,75001 +238717,Wired Headphones,1,11.99,2019-08-02 11:27:00,811 Center St, Los Angeles,CA,90001 +238718,20in Monitor,1,109.99,2019-08-26 18:10:00,928 Madison St, Seattle,WA,98101 +238719,AAA Batteries (4-pack),1,2.99,2019-08-31 15:57:00,133 Sunset St, New York City,NY,10001 +238720,USB-C Charging Cable,1,11.95,2019-08-05 18:21:00,481 Elm St, San Francisco,CA,94016 +238721,USB-C Charging Cable,1,11.95,2019-08-05 11:24:00,189 1st St, San Francisco,CA,94016 +238722,AA Batteries (4-pack),2,3.84,2019-08-07 09:12:00,63 Lake St, Boston,MA,02215 +238723,Apple Airpods Headphones,1,150.0,2019-08-21 12:42:00,141 South St, San Francisco,CA,94016 +238724,Google Phone,1,600.0,2019-08-07 16:47:00,139 12th St, Atlanta,GA,30301 +238725,USB-C Charging Cable,1,11.95,2019-08-16 22:10:00,11 South St, Los Angeles,CA,90001 +238726,Bose SoundSport Headphones,1,99.99,2019-08-14 12:50:00,400 West St, San Francisco,CA,94016 +238727,AAA Batteries (4-pack),1,2.99,2019-08-26 06:55:00,959 11th St, Boston,MA,02215 +238728,27in FHD Monitor,1,149.99,2019-08-11 11:44:00,479 Walnut St, San Francisco,CA,94016 +238729,AAA Batteries (4-pack),1,2.99,2019-08-11 08:49:00,290 West St, San Francisco,CA,94016 +238730,Wired Headphones,1,11.99,2019-08-02 19:13:00,522 Forest St, Los Angeles,CA,90001 +238731,Bose SoundSport Headphones,1,99.99,2019-08-31 16:34:00,339 Lakeview St, Dallas,TX,75001 +238732,USB-C Charging Cable,1,11.95,2019-08-08 11:15:00,370 11th St, Los Angeles,CA,90001 +238733,iPhone,1,700.0,2019-08-03 21:56:00,509 Jackson St, Boston,MA,02215 +238734,Vareebadd Phone,1,400.0,2019-08-13 11:52:00,744 Lincoln St, Austin,TX,73301 +238735,20in Monitor,1,109.99,2019-08-18 22:56:00,418 West St, San Francisco,CA,94016 +238736,AA Batteries (4-pack),1,3.84,2019-08-27 01:07:00,432 Church St, Los Angeles,CA,90001 +238737,Bose SoundSport Headphones,1,99.99,2019-08-08 08:49:00,935 Forest St, Boston,MA,02215 +238738,Lightning Charging Cable,1,14.95,2019-08-27 19:31:00,414 Spruce St, San Francisco,CA,94016 +238739,Macbook Pro Laptop,1,1700.0,2019-08-10 11:27:00,91 Dogwood St, Atlanta,GA,30301 +238740,AA Batteries (4-pack),2,3.84,2019-08-10 15:16:00,60 2nd St, Dallas,TX,75001 +238741,iPhone,1,700.0,2019-08-10 12:47:00,487 9th St, San Francisco,CA,94016 +238742,Lightning Charging Cable,1,14.95,2019-08-24 22:07:00,185 Adams St, Portland,OR,97035 +238743,Bose SoundSport Headphones,1,99.99,2019-08-18 14:55:00,724 4th St, New York City,NY,10001 +238744,AAA Batteries (4-pack),1,2.99,2019-08-10 14:08:00,210 Madison St, New York City,NY,10001 +238745,Wired Headphones,1,11.99,2019-08-16 18:37:00,235 10th St, San Francisco,CA,94016 +238746,iPhone,1,700.0,2019-08-14 19:42:00,390 River St, San Francisco,CA,94016 +238747,27in 4K Gaming Monitor,1,389.99,2019-08-19 02:32:00,172 7th St, Los Angeles,CA,90001 +238748,Lightning Charging Cable,1,14.95,2019-08-20 15:53:00,132 Wilson St, Atlanta,GA,30301 +238749,AAA Batteries (4-pack),1,2.99,2019-08-03 07:12:00,782 Center St, Los Angeles,CA,90001 +238750,Lightning Charging Cable,1,14.95,2019-08-29 10:08:00,835 Meadow St, Seattle,WA,98101 +238751,AA Batteries (4-pack),3,3.84,2019-08-26 20:57:00,207 4th St, New York City,NY,10001 +238752,Wired Headphones,1,11.99,2019-08-10 12:26:00,933 Jackson St, Los Angeles,CA,90001 +238753,AAA Batteries (4-pack),3,2.99,2019-08-05 22:49:00,191 Hickory St, San Francisco,CA,94016 +238754,USB-C Charging Cable,1,11.95,2019-08-25 15:27:00,940 Hickory St, San Francisco,CA,94016 +238755,Wired Headphones,1,11.99,2019-08-08 22:32:00,89 Walnut St, Seattle,WA,98101 +238756,AA Batteries (4-pack),1,3.84,2019-08-09 20:12:00,645 Main St, Portland,OR,97035 +238757,Google Phone,1,600.0,2019-08-18 22:07:00,833 Wilson St, Atlanta,GA,30301 +238757,USB-C Charging Cable,1,11.95,2019-08-18 22:07:00,833 Wilson St, Atlanta,GA,30301 +238758,iPhone,1,700.0,2019-08-30 13:48:00,6 Jackson St, Seattle,WA,98101 +238758,Lightning Charging Cable,1,14.95,2019-08-30 13:48:00,6 Jackson St, Seattle,WA,98101 +238759,Apple Airpods Headphones,1,150.0,2019-08-12 12:18:00,802 1st St, Dallas,TX,75001 +238760,Lightning Charging Cable,1,14.95,2019-08-25 08:10:00,953 Highland St, Atlanta,GA,30301 +238761,Bose SoundSport Headphones,1,99.99,2019-08-13 07:36:00,47 Park St, San Francisco,CA,94016 +238762,AAA Batteries (4-pack),5,2.99,2019-08-27 08:10:00,15 River St, Los Angeles,CA,90001 +238763,AA Batteries (4-pack),1,3.84,2019-08-26 18:59:00,623 Adams St, New York City,NY,10001 +238764,Apple Airpods Headphones,1,150.0,2019-08-11 15:40:00,620 Madison St, Atlanta,GA,30301 +238765,Wired Headphones,1,11.99,2019-08-23 13:35:00,669 Hill St, Portland,OR,97035 +238766,Apple Airpods Headphones,1,150.0,2019-08-27 13:02:00,880 Elm St, Atlanta,GA,30301 +238767,Wired Headphones,1,11.99,2019-08-04 12:41:00,611 Washington St, Seattle,WA,98101 +238768,AA Batteries (4-pack),2,3.84,2019-08-19 16:24:00,193 Pine St, Boston,MA,02215 +238769,AA Batteries (4-pack),1,3.84,2019-08-23 09:40:00,731 Center St, Los Angeles,CA,90001 +238770,34in Ultrawide Monitor,1,379.99,2019-08-05 14:02:00,830 8th St, Boston,MA,02215 +238771,Macbook Pro Laptop,1,1700.0,2019-08-09 03:01:00,696 Lake St, Portland,OR,97035 +238772,iPhone,1,700.0,2019-08-29 15:24:00,247 River St, San Francisco,CA,94016 +238773,iPhone,1,700.0,2019-08-01 17:54:00,417 Spruce St, New York City,NY,10001 +238774,Lightning Charging Cable,1,14.95,2019-08-16 22:43:00,745 Washington St, Los Angeles,CA,90001 +238775,Macbook Pro Laptop,1,1700.0,2019-08-27 16:40:00,117 Maple St, Boston,MA,02215 +238776,Lightning Charging Cable,1,14.95,2019-08-17 18:10:00,226 Center St, Los Angeles,CA,90001 +238777,AAA Batteries (4-pack),1,2.99,2019-08-03 18:48:00,974 Dogwood St, Seattle,WA,98101 +238778,AAA Batteries (4-pack),1,2.99,2019-08-07 18:27:00,18 Adams St, New York City,NY,10001 +238779,Wired Headphones,1,11.99,2019-08-17 14:31:00,578 Cedar St, Dallas,TX,75001 +238780,AA Batteries (4-pack),2,3.84,2019-08-30 18:27:00,782 12th St, San Francisco,CA,94016 +238781,27in 4K Gaming Monitor,1,389.99,2019-08-11 06:48:00,361 River St, San Francisco,CA,94016 +238782,Lightning Charging Cable,1,14.95,2019-08-02 08:58:00,680 Johnson St, Austin,TX,73301 +238783,34in Ultrawide Monitor,1,379.99,2019-08-29 14:41:00,27 Pine St, New York City,NY,10001 +238784,USB-C Charging Cable,3,11.95,2019-08-13 23:24:00,966 Johnson St, San Francisco,CA,94016 +238785,USB-C Charging Cable,1,11.95,2019-08-02 06:23:00,482 12th St, Los Angeles,CA,90001 +238786,Google Phone,1,600.0,2019-08-07 17:14:00,489 Madison St, New York City,NY,10001 +238786,USB-C Charging Cable,1,11.95,2019-08-07 17:14:00,489 Madison St, New York City,NY,10001 +238787,Wired Headphones,1,11.99,2019-08-19 13:53:00,752 Lake St, Boston,MA,02215 +238788,27in 4K Gaming Monitor,1,389.99,2019-08-04 09:40:00,799 Park St, Boston,MA,02215 +238789,AA Batteries (4-pack),3,3.84,2019-08-25 14:59:00,991 Cedar St, Atlanta,GA,30301 +238790,Bose SoundSport Headphones,1,99.99,2019-08-14 11:19:00,91 Lincoln St, Atlanta,GA,30301 +238791,USB-C Charging Cable,1,11.95,2019-08-11 21:04:00,674 Forest St, San Francisco,CA,94016 +238792,Bose SoundSport Headphones,1,99.99,2019-08-09 13:52:00,283 8th St, Portland,OR,97035 +238793,Wired Headphones,1,11.99,2019-08-03 17:56:00,880 Ridge St, Seattle,WA,98101 +238794,Macbook Pro Laptop,1,1700.0,2019-08-20 21:07:00,972 12th St, San Francisco,CA,94016 +238795,Bose SoundSport Headphones,1,99.99,2019-08-04 16:27:00,67 Lakeview St, Seattle,WA,98101 +238796,AA Batteries (4-pack),1,3.84,2019-08-26 22:05:00,212 Lincoln St, Dallas,TX,75001 +238797,USB-C Charging Cable,1,11.95,2019-08-26 14:24:00,410 Jefferson St, San Francisco,CA,94016 +238798,Lightning Charging Cable,1,14.95,2019-08-30 07:17:00,305 Meadow St, New York City,NY,10001 +238799,AAA Batteries (4-pack),1,2.99,2019-08-02 06:46:00,757 Center St, Atlanta,GA,30301 +238800,AA Batteries (4-pack),1,3.84,2019-08-17 14:33:00,568 14th St, Boston,MA,02215 +238801,Macbook Pro Laptop,1,1700.0,2019-08-23 21:23:00,828 South St, San Francisco,CA,94016 +238802,Wired Headphones,1,11.99,2019-08-09 11:03:00,565 Lake St, Portland,OR,97035 +238803,AA Batteries (4-pack),1,3.84,2019-08-09 13:38:00,334 Adams St, Los Angeles,CA,90001 +238804,Lightning Charging Cable,1,14.95,2019-08-20 16:18:00,690 West St, Atlanta,GA,30301 +238805,Apple Airpods Headphones,1,150.0,2019-08-24 22:57:00,369 Lake St, New York City,NY,10001 +238806,USB-C Charging Cable,1,11.95,2019-08-21 11:49:00,801 Lake St, Austin,TX,73301 +238807,Bose SoundSport Headphones,1,99.99,2019-08-20 09:10:00,272 9th St, Seattle,WA,98101 +238808,20in Monitor,1,109.99,2019-08-13 16:55:00,299 River St, Los Angeles,CA,90001 +238809,USB-C Charging Cable,1,11.95,2019-08-08 20:43:00,33 Sunset St, San Francisco,CA,94016 +238810,Macbook Pro Laptop,1,1700.0,2019-08-25 20:38:00,216 4th St, San Francisco,CA,94016 +238811,AAA Batteries (4-pack),1,2.99,2019-08-15 10:55:00,279 Sunset St, San Francisco,CA,94016 +238812,Google Phone,1,600.0,2019-08-19 19:48:00,61 Willow St, New York City,NY,10001 +238812,Wired Headphones,1,11.99,2019-08-19 19:48:00,61 Willow St, New York City,NY,10001 +238813,Bose SoundSport Headphones,1,99.99,2019-08-06 08:16:00,964 Cedar St, San Francisco,CA,94016 +238814,Lightning Charging Cable,1,14.95,2019-08-09 08:52:00,753 Willow St, Portland,OR,97035 +238815,Lightning Charging Cable,1,14.95,2019-08-31 14:25:00,111 Johnson St, Dallas,TX,75001 +238816,AAA Batteries (4-pack),1,2.99,2019-08-05 17:38:00,645 8th St, Seattle,WA,98101 +238817,34in Ultrawide Monitor,1,379.99,2019-08-07 18:35:00,489 Madison St, Boston,MA,02215 +238818,AA Batteries (4-pack),1,3.84,2019-08-20 20:48:00,254 13th St, Los Angeles,CA,90001 +238819,Flatscreen TV,1,300.0,2019-08-04 16:19:00,471 12th St, New York City,NY,10001 +238820,Lightning Charging Cable,1,14.95,2019-08-05 19:57:00,783 8th St, San Francisco,CA,94016 +238821,USB-C Charging Cable,1,11.95,2019-08-04 11:06:00,363 Wilson St, San Francisco,CA,94016 +238822,AAA Batteries (4-pack),2,2.99,2019-08-20 07:40:00,445 Center St, Los Angeles,CA,90001 +238823,AA Batteries (4-pack),1,3.84,2019-08-20 20:45:00,259 Chestnut St, Seattle,WA,98101 +238824,34in Ultrawide Monitor,1,379.99,2019-08-13 16:13:00,560 6th St, Boston,MA,02215 +238825,Wired Headphones,1,11.99,2019-08-21 12:45:00,261 Sunset St, San Francisco,CA,94016 +238826,Apple Airpods Headphones,1,150.0,2019-08-24 20:05:00,552 7th St, Los Angeles,CA,90001 +238827,iPhone,1,700.0,2019-08-02 19:52:00,91 11th St, San Francisco,CA,94016 +238828,Bose SoundSport Headphones,1,99.99,2019-08-04 18:05:00,515 8th St, Portland,OR,97035 +238829,AA Batteries (4-pack),2,3.84,2019-08-01 12:36:00,922 1st St, San Francisco,CA,94016 +238830,iPhone,1,700.0,2019-08-29 16:09:00,48 Dogwood St, Boston,MA,02215 +238831,AA Batteries (4-pack),1,3.84,2019-08-24 11:13:00,691 Madison St, New York City,NY,10001 +238832,Bose SoundSport Headphones,1,99.99,2019-08-07 13:03:00,169 Johnson St, Boston,MA,02215 +238833,Macbook Pro Laptop,1,1700.0,2019-08-12 08:37:00,792 1st St, Austin,TX,73301 +238834,Apple Airpods Headphones,1,150.0,2019-09-01 04:13:00,761 Forest St, San Francisco,CA,94016 +238835,AAA Batteries (4-pack),3,2.99,2019-08-24 14:03:00,491 Highland St, San Francisco,CA,94016 +238836,AAA Batteries (4-pack),1,2.99,2019-08-23 19:34:00,826 Lincoln St, San Francisco,CA,94016 +238837,Lightning Charging Cable,1,14.95,2019-08-23 17:43:00,779 11th St, Los Angeles,CA,90001 +238838,USB-C Charging Cable,2,11.95,2019-08-15 07:33:00,924 Meadow St, Los Angeles,CA,90001 +238839,Apple Airpods Headphones,1,150.0,2019-08-15 12:14:00,339 9th St, San Francisco,CA,94016 +238840,Flatscreen TV,1,300.0,2019-08-17 15:46:00,978 4th St, Portland,OR,97035 +238841,27in 4K Gaming Monitor,1,389.99,2019-08-18 12:15:00,538 Adams St, Dallas,TX,75001 +238842,Wired Headphones,1,11.99,2019-08-28 17:59:00,320 Park St, San Francisco,CA,94016 +238843,Google Phone,1,600.0,2019-08-24 12:15:00,360 Cherry St, New York City,NY,10001 +238843,Bose SoundSport Headphones,1,99.99,2019-08-24 12:15:00,360 Cherry St, New York City,NY,10001 +238844,Wired Headphones,1,11.99,2019-08-21 22:19:00,937 Lake St, New York City,NY,10001 +238845,Apple Airpods Headphones,1,150.0,2019-08-19 21:30:00,397 5th St, Portland,OR,97035 +238846,Bose SoundSport Headphones,1,99.99,2019-08-24 20:32:00,214 Jackson St, San Francisco,CA,94016 +238847,Google Phone,1,600.0,2019-08-16 22:49:00,211 Hill St, Dallas,TX,75001 +238847,USB-C Charging Cable,1,11.95,2019-08-16 22:49:00,211 Hill St, Dallas,TX,75001 +238847,Wired Headphones,1,11.99,2019-08-16 22:49:00,211 Hill St, Dallas,TX,75001 +238848,AA Batteries (4-pack),2,3.84,2019-08-19 12:52:00,218 Walnut St, Seattle,WA,98101 +238849,Wired Headphones,1,11.99,2019-08-23 17:11:00,799 Maple St, Dallas,TX,75001 +238850,AAA Batteries (4-pack),2,2.99,2019-08-12 21:35:00,478 Adams St, Boston,MA,02215 +238851,Bose SoundSport Headphones,1,99.99,2019-08-20 22:47:00,795 5th St, Seattle,WA,98101 +238852,Wired Headphones,1,11.99,2019-08-25 11:51:00,283 River St, San Francisco,CA,94016 +238853,Google Phone,1,600.0,2019-08-27 17:19:00,785 Lake St, Los Angeles,CA,90001 +238854,AA Batteries (4-pack),1,3.84,2019-08-28 16:52:00,472 South St, San Francisco,CA,94016 +238855,AA Batteries (4-pack),2,3.84,2019-08-20 18:54:00,904 Pine St, Dallas,TX,75001 +238856,AA Batteries (4-pack),1,3.84,2019-08-21 20:22:00,126 Cedar St, Los Angeles,CA,90001 +238857,Apple Airpods Headphones,1,150.0,2019-08-16 00:26:00,891 14th St, New York City,NY,10001 +238858,Wired Headphones,1,11.99,2019-08-14 14:31:00,126 Johnson St, Seattle,WA,98101 +238859,Apple Airpods Headphones,1,150.0,2019-08-30 12:12:00,78 Pine St, Atlanta,GA,30301 +238860,USB-C Charging Cable,1,11.95,2019-08-31 10:57:00,192 River St, Seattle,WA,98101 +238861,Bose SoundSport Headphones,1,99.99,2019-08-21 16:21:00,866 Meadow St, San Francisco,CA,94016 +238862,AA Batteries (4-pack),1,3.84,2019-08-07 15:44:00,874 Meadow St, Seattle,WA,98101 +238863,USB-C Charging Cable,1,11.95,2019-08-25 08:36:00,873 Walnut St, San Francisco,CA,94016 +238864,AA Batteries (4-pack),1,3.84,2019-08-07 11:45:00,340 Jackson St, San Francisco,CA,94016 +238865,Vareebadd Phone,1,400.0,2019-08-14 18:37:00,718 Highland St, San Francisco,CA,94016 +238865,Bose SoundSport Headphones,1,99.99,2019-08-14 18:37:00,718 Highland St, San Francisco,CA,94016 +238866,Flatscreen TV,1,300.0,2019-08-15 14:19:00,953 West St, Seattle,WA,98101 +238867,Bose SoundSport Headphones,1,99.99,2019-08-24 04:17:00,38 Lakeview St, Los Angeles,CA,90001 +238868,USB-C Charging Cable,1,11.95,2019-08-31 21:21:00,922 Wilson St, San Francisco,CA,94016 +238869,Apple Airpods Headphones,1,150.0,2019-08-31 15:35:00,823 Lincoln St, New York City,NY,10001 +238870,Apple Airpods Headphones,1,150.0,2019-08-02 09:43:00,651 8th St, Portland,OR,97035 +238871,Lightning Charging Cable,1,14.95,2019-08-06 10:48:00,572 Jackson St, Los Angeles,CA,90001 +238872,AAA Batteries (4-pack),4,2.99,2019-08-07 15:07:00,486 Cedar St, Seattle,WA,98101 +238873,27in FHD Monitor,1,149.99,2019-08-23 16:25:00,849 Lincoln St, Los Angeles,CA,90001 +238874,Lightning Charging Cable,1,14.95,2019-08-13 21:41:00,490 Walnut St, Seattle,WA,98101 +238875,AA Batteries (4-pack),1,3.84,2019-08-22 18:23:00,657 Center St, Portland,OR,97035 +238876,iPhone,1,700.0,2019-08-03 16:18:00,797 Ridge St, Dallas,TX,75001 +238877,AAA Batteries (4-pack),1,2.99,2019-08-21 19:30:00,58 Center St, Boston,MA,02215 +238877,USB-C Charging Cable,1,11.95,2019-08-21 19:30:00,58 Center St, Boston,MA,02215 +238878,USB-C Charging Cable,1,11.95,2019-08-30 17:49:00,970 Pine St, Los Angeles,CA,90001 +238879,Bose SoundSport Headphones,1,99.99,2019-08-14 08:09:00,715 12th St, Boston,MA,02215 +238880,Lightning Charging Cable,1,14.95,2019-08-24 22:09:00,513 Park St, Los Angeles,CA,90001 +238881,Lightning Charging Cable,1,14.95,2019-08-02 11:26:00,717 Dogwood St, Los Angeles,CA,90001 +238882,Wired Headphones,1,11.99,2019-08-21 11:18:00,697 Main St, New York City,NY,10001 +238883,34in Ultrawide Monitor,1,379.99,2019-08-21 19:57:00,29 Spruce St, Los Angeles,CA,90001 +238884,Apple Airpods Headphones,1,150.0,2019-08-31 22:43:00,747 Center St, New York City,NY,10001 +238885,Google Phone,1,600.0,2019-08-19 12:01:00,997 Pine St, Los Angeles,CA,90001 +238885,USB-C Charging Cable,1,11.95,2019-08-19 12:01:00,997 Pine St, Los Angeles,CA,90001 +238886,LG Washing Machine,1,600.0,2019-08-13 16:44:00,163 Park St, Atlanta,GA,30301 +238887,Wired Headphones,1,11.99,2019-08-24 12:11:00,49 Adams St, Seattle,WA,98101 +238888,USB-C Charging Cable,1,11.95,2019-08-22 11:45:00,379 Hill St, Los Angeles,CA,90001 +238889,27in 4K Gaming Monitor,1,389.99,2019-08-05 13:26:00,472 8th St, Portland,OR,97035 +238890,27in FHD Monitor,1,149.99,2019-08-01 15:10:00,354 8th St, Boston,MA,02215 +238891,20in Monitor,1,109.99,2019-08-16 12:35:00,128 Dogwood St, Los Angeles,CA,90001 +238892,Wired Headphones,1,11.99,2019-08-22 17:22:00,465 Hill St, Los Angeles,CA,90001 +238893,Apple Airpods Headphones,1,150.0,2019-08-20 20:20:00,370 8th St, San Francisco,CA,94016 +238894,34in Ultrawide Monitor,1,379.99,2019-08-28 20:32:00,409 Lincoln St, Atlanta,GA,30301 +238895,iPhone,1,700.0,2019-08-14 13:51:00,798 Walnut St, Los Angeles,CA,90001 +238895,Wired Headphones,1,11.99,2019-08-14 13:51:00,798 Walnut St, Los Angeles,CA,90001 +238896,USB-C Charging Cable,1,11.95,2019-08-13 23:54:00,868 Adams St, Boston,MA,02215 +238897,Wired Headphones,1,11.99,2019-08-05 20:58:00,317 Adams St, New York City,NY,10001 +238898,Bose SoundSport Headphones,1,99.99,2019-08-13 10:29:00,246 14th St, San Francisco,CA,94016 +238899,20in Monitor,1,109.99,2019-08-26 06:38:00,456 Meadow St, Dallas,TX,75001 +238900,Wired Headphones,1,11.99,2019-08-10 10:39:00,211 Church St, Boston,MA,02215 +238901,Flatscreen TV,1,300.0,2019-08-31 15:54:00,444 7th St, New York City,NY,10001 +238902,iPhone,1,700.0,2019-08-02 22:41:00,417 11th St, Boston,MA,02215 +238902,Lightning Charging Cable,1,14.95,2019-08-02 22:41:00,417 11th St, Boston,MA,02215 +238903,Lightning Charging Cable,1,14.95,2019-08-16 13:15:00,342 Wilson St, San Francisco,CA,94016 +238904,AA Batteries (4-pack),1,3.84,2019-08-17 09:26:00,585 Jackson St, Austin,TX,73301 +238905,27in 4K Gaming Monitor,1,389.99,2019-08-05 17:25:00,849 North St, Boston,MA,02215 +238906,Wired Headphones,1,11.99,2019-08-06 00:08:00,837 8th St, Portland,OR,97035 +238907,Apple Airpods Headphones,1,150.0,2019-08-24 17:40:00,273 13th St, Boston,MA,02215 +238908,Apple Airpods Headphones,1,150.0,2019-08-05 21:20:00,738 Adams St, Portland,OR,97035 +238909,AA Batteries (4-pack),1,3.84,2019-08-02 10:47:00,561 Maple St, New York City,NY,10001 +238910,27in FHD Monitor,1,149.99,2019-08-01 07:48:00,165 Main St, Dallas,TX,75001 +238911,27in FHD Monitor,2,149.99,2019-08-03 00:33:00,118 Pine St, Austin,TX,73301 +238912,AAA Batteries (4-pack),1,2.99,2019-08-24 10:04:00,666 Forest St, San Francisco,CA,94016 +238913,AA Batteries (4-pack),1,3.84,2019-08-10 17:51:00,452 Maple St, Los Angeles,CA,90001 +238914,AAA Batteries (4-pack),1,2.99,2019-08-23 12:36:00,632 6th St, Seattle,WA,98101 +238915,iPhone,1,700.0,2019-08-11 13:04:00,648 7th St, Dallas,TX,75001 +238916,34in Ultrawide Monitor,1,379.99,2019-08-01 12:03:00,222 Park St, Boston,MA,02215 +238917,Wired Headphones,1,11.99,2019-08-19 23:24:00,971 1st St, Atlanta,GA,30301 +238918,27in FHD Monitor,1,149.99,2019-08-06 09:59:00,120 Sunset St, New York City,NY,10001 +238919,ThinkPad Laptop,1,999.99,2019-08-12 09:29:00,663 Ridge St, Seattle,WA,98101 +238920,AAA Batteries (4-pack),2,2.99,2019-08-02 09:24:00,476 Willow St, Seattle,WA,98101 +238921,AA Batteries (4-pack),1,3.84,2019-08-18 11:10:00,854 River St, San Francisco,CA,94016 +238922,Wired Headphones,1,11.99,2019-08-05 14:16:00,901 Cedar St, Boston,MA,02215 +238923,USB-C Charging Cable,1,11.95,2019-08-17 11:23:00,909 Main St, New York City,NY,10001 +238924,USB-C Charging Cable,1,11.95,2019-08-29 06:33:00,138 Church St, San Francisco,CA,94016 +238925,Bose SoundSport Headphones,1,99.99,2019-08-09 11:25:00,177 1st St, Dallas,TX,75001 +238926,AA Batteries (4-pack),1,3.84,2019-08-18 13:59:00,269 6th St, Dallas,TX,75001 +238927,USB-C Charging Cable,2,11.95,2019-08-09 17:56:00,998 8th St, Boston,MA,02215 +238928,34in Ultrawide Monitor,1,379.99,2019-08-30 18:22:00,652 South St, San Francisco,CA,94016 +238929,Lightning Charging Cable,1,14.95,2019-08-21 20:20:00,65 Spruce St, Atlanta,GA,30301 +238929,AA Batteries (4-pack),1,3.84,2019-08-21 20:20:00,65 Spruce St, Atlanta,GA,30301 +238930,Vareebadd Phone,1,400.0,2019-08-12 09:26:00,149 Wilson St, Dallas,TX,75001 +238931,AA Batteries (4-pack),1,3.84,2019-08-23 18:32:00,205 11th St, New York City,NY,10001 +238932,Macbook Pro Laptop,1,1700.0,2019-08-03 20:46:00,90 Center St, Los Angeles,CA,90001 +238933,Bose SoundSport Headphones,1,99.99,2019-08-17 14:01:00,505 North St, Portland,ME,04101 +238934,Wired Headphones,1,11.99,2019-08-10 21:20:00,504 Chestnut St, New York City,NY,10001 +238935,34in Ultrawide Monitor,1,379.99,2019-08-27 22:22:00,77 2nd St, Boston,MA,02215 +238936,Google Phone,1,600.0,2019-08-05 19:30:00,813 Lakeview St, Dallas,TX,75001 +238936,USB-C Charging Cable,2,11.95,2019-08-05 19:30:00,813 Lakeview St, Dallas,TX,75001 +238937,Wired Headphones,1,11.99,2019-08-11 12:10:00,786 Walnut St, Dallas,TX,75001 +238938,20in Monitor,1,109.99,2019-08-30 17:37:00,140 Spruce St, Portland,OR,97035 +238939,Lightning Charging Cable,1,14.95,2019-08-11 18:52:00,48 1st St, San Francisco,CA,94016 +238940,Lightning Charging Cable,1,14.95,2019-08-15 03:13:00,609 Cedar St, Los Angeles,CA,90001 +238941,Wired Headphones,1,11.99,2019-08-04 08:52:00,269 Johnson St, Los Angeles,CA,90001 +238942,27in FHD Monitor,1,149.99,2019-08-31 22:35:00,417 West St, Dallas,TX,75001 +238943,USB-C Charging Cable,1,11.95,2019-08-14 00:23:00,906 5th St, New York City,NY,10001 +238944,27in FHD Monitor,1,149.99,2019-08-05 19:04:00,53 5th St, Dallas,TX,75001 +238945,Bose SoundSport Headphones,1,99.99,2019-08-08 21:03:00,756 Highland St, Dallas,TX,75001 +238946,Google Phone,1,600.0,2019-08-09 07:10:00,559 4th St, San Francisco,CA,94016 +238947,Wired Headphones,1,11.99,2019-08-23 18:48:00,403 Adams St, San Francisco,CA,94016 +238948,ThinkPad Laptop,1,999.99,2019-08-21 15:45:00,315 11th St, New York City,NY,10001 +238949,Google Phone,1,600.0,2019-08-30 15:56:00,437 Lake St, Los Angeles,CA,90001 +238950,Wired Headphones,1,11.99,2019-08-22 14:06:00,537 Cedar St, San Francisco,CA,94016 +238951,AA Batteries (4-pack),1,3.84,2019-08-10 16:23:00,740 10th St, Boston,MA,02215 +238952,ThinkPad Laptop,1,999.99,2019-08-11 17:13:00,417 8th St, San Francisco,CA,94016 +238953,AAA Batteries (4-pack),1,2.99,2019-08-26 22:15:00,146 Jefferson St, New York City,NY,10001 +238954,34in Ultrawide Monitor,1,379.99,2019-08-01 10:20:00,282 West St, Boston,MA,02215 +238955,Lightning Charging Cable,1,14.95,2019-08-14 17:35:00,717 Wilson St, Boston,MA,02215 +238956,AA Batteries (4-pack),1,3.84,2019-08-14 19:35:00,132 River St, Austin,TX,73301 +238957,Lightning Charging Cable,1,14.95,2019-08-04 13:28:00,150 West St, Seattle,WA,98101 +238958,34in Ultrawide Monitor,1,379.99,2019-08-05 21:53:00,176 Highland St, San Francisco,CA,94016 +238959,iPhone,1,700.0,2019-08-06 10:21:00,444 1st St, Boston,MA,02215 +238960,Wired Headphones,1,11.99,2019-08-26 18:51:00,206 Sunset St, Portland,OR,97035 +238961,Bose SoundSport Headphones,1,99.99,2019-08-02 06:53:00,934 5th St, Dallas,TX,75001 +238962,AAA Batteries (4-pack),1,2.99,2019-08-05 16:42:00,738 6th St, Boston,MA,02215 +238963,Wired Headphones,2,11.99,2019-08-18 22:22:00,540 14th St, New York City,NY,10001 +238964,USB-C Charging Cable,1,11.95,2019-08-07 18:39:00,881 Lakeview St, Seattle,WA,98101 +238965,Lightning Charging Cable,1,14.95,2019-08-05 22:53:00,548 9th St, Boston,MA,02215 +238966,USB-C Charging Cable,1,11.95,2019-08-23 20:19:00,161 10th St, Atlanta,GA,30301 +238967,AA Batteries (4-pack),1,3.84,2019-08-16 15:43:00,60 11th St, Atlanta,GA,30301 +238968,Bose SoundSport Headphones,1,99.99,2019-08-05 23:44:00,57 Jackson St, Los Angeles,CA,90001 +238969,Lightning Charging Cable,1,14.95,2019-08-01 19:53:00,421 River St, New York City,NY,10001 +238970,iPhone,1,700.0,2019-08-28 10:24:00,378 Hickory St, Los Angeles,CA,90001 +238970,Lightning Charging Cable,1,14.95,2019-08-28 10:24:00,378 Hickory St, Los Angeles,CA,90001 +238971,AA Batteries (4-pack),1,3.84,2019-08-03 17:06:00,729 Center St, Atlanta,GA,30301 +238972,Lightning Charging Cable,1,14.95,2019-08-04 14:40:00,593 Sunset St, Atlanta,GA,30301 +238973,Wired Headphones,1,11.99,2019-08-03 01:15:00,624 13th St, New York City,NY,10001 +238974,27in FHD Monitor,1,149.99,2019-08-10 19:43:00,166 Walnut St, Los Angeles,CA,90001 +238975,AAA Batteries (4-pack),1,2.99,2019-08-28 23:42:00,324 Ridge St, Dallas,TX,75001 +238976,Apple Airpods Headphones,1,150.0,2019-08-25 15:11:00,252 6th St, Boston,MA,02215 +238977,AA Batteries (4-pack),1,3.84,2019-08-13 13:02:00,888 Cedar St, Boston,MA,02215 +238978,Apple Airpods Headphones,1,150.0,2019-08-12 21:52:00,426 13th St, Seattle,WA,98101 +238979,Macbook Pro Laptop,1,1700.0,2019-08-12 16:21:00,511 Cedar St, Seattle,WA,98101 +238980,20in Monitor,1,109.99,2019-08-20 19:19:00,427 Pine St, New York City,NY,10001 +238981,Wired Headphones,1,11.99,2019-08-05 20:15:00,39 Church St, San Francisco,CA,94016 +238982,USB-C Charging Cable,1,11.95,2019-08-11 12:01:00,163 Wilson St, San Francisco,CA,94016 +238983,AA Batteries (4-pack),1,3.84,2019-08-30 17:14:00,816 Pine St, New York City,NY,10001 +238984,Apple Airpods Headphones,1,150.0,2019-08-23 11:44:00,863 Lincoln St, New York City,NY,10001 +238985,27in FHD Monitor,1,149.99,2019-08-28 16:11:00,709 West St, Portland,ME,04101 +238986,USB-C Charging Cable,1,11.95,2019-08-09 10:51:00,882 Pine St, New York City,NY,10001 +238987,AA Batteries (4-pack),1,3.84,2019-08-07 23:25:00,120 Chestnut St, New York City,NY,10001 +238988,AA Batteries (4-pack),1,3.84,2019-08-30 20:57:00,214 Park St, San Francisco,CA,94016 +238989,Macbook Pro Laptop,1,1700.0,2019-08-24 12:57:00,495 10th St, Portland,OR,97035 +238990,34in Ultrawide Monitor,1,379.99,2019-08-04 07:43:00,231 Wilson St, San Francisco,CA,94016 +238991,AAA Batteries (4-pack),1,2.99,2019-08-02 21:32:00,514 Washington St, Los Angeles,CA,90001 +238992,Lightning Charging Cable,1,14.95,2019-08-21 12:28:00,163 Pine St, New York City,NY,10001 +238993,27in 4K Gaming Monitor,1,389.99,2019-08-29 14:47:00,756 Dogwood St, San Francisco,CA,94016 +238994,Flatscreen TV,1,300.0,2019-08-23 18:26:00,845 10th St, New York City,NY,10001 +238995,Apple Airpods Headphones,1,150.0,2019-08-07 20:50:00,348 South St, Atlanta,GA,30301 +238996,USB-C Charging Cable,1,11.95,2019-08-06 10:15:00,168 12th St, San Francisco,CA,94016 +238997,USB-C Charging Cable,1,11.95,2019-08-08 07:53:00,273 South St, New York City,NY,10001 +238998,AA Batteries (4-pack),1,3.84,2019-08-17 12:22:00,236 Wilson St, Portland,ME,04101 +238999,Flatscreen TV,1,300.0,2019-08-16 14:02:00,632 Jackson St, San Francisco,CA,94016 +239000,USB-C Charging Cable,1,11.95,2019-08-17 17:05:00,746 Madison St, San Francisco,CA,94016 +239001,Apple Airpods Headphones,1,150.0,2019-08-06 12:28:00,268 Forest St, San Francisco,CA,94016 +239002,Wired Headphones,1,11.99,2019-08-19 19:08:00,492 9th St, San Francisco,CA,94016 +239003,Wired Headphones,3,11.99,2019-08-30 15:50:00,511 5th St, Los Angeles,CA,90001 +239004,AAA Batteries (4-pack),2,2.99,2019-08-15 11:47:00,280 Church St, Austin,TX,73301 +239005,USB-C Charging Cable,1,11.95,2019-08-26 01:27:00,906 South St, Los Angeles,CA,90001 +239006,iPhone,1,700.0,2019-08-19 00:02:00,471 Park St, Los Angeles,CA,90001 +239006,Apple Airpods Headphones,1,150.0,2019-08-19 00:02:00,471 Park St, Los Angeles,CA,90001 +239007,USB-C Charging Cable,1,11.95,2019-08-21 11:55:00,945 9th St, San Francisco,CA,94016 +239008,Wired Headphones,1,11.99,2019-08-13 01:06:00,465 South St, San Francisco,CA,94016 +239009,USB-C Charging Cable,1,11.95,2019-08-12 11:45:00,320 Willow St, New York City,NY,10001 +239010,27in FHD Monitor,1,149.99,2019-08-21 20:00:00,704 West St, Dallas,TX,75001 +239011,USB-C Charging Cable,1,11.95,2019-08-18 11:50:00,836 10th St, Austin,TX,73301 +239012,20in Monitor,1,109.99,2019-08-23 12:29:00,139 North St, Atlanta,GA,30301 +239013,Apple Airpods Headphones,1,150.0,2019-08-11 20:41:00,662 Cedar St, Los Angeles,CA,90001 +239014,Bose SoundSport Headphones,1,99.99,2019-08-04 02:13:00,274 Madison St, San Francisco,CA,94016 +239015,ThinkPad Laptop,1,999.99,2019-08-28 12:34:00,589 River St, San Francisco,CA,94016 +239016,Bose SoundSport Headphones,1,99.99,2019-08-18 10:14:00,808 Walnut St, San Francisco,CA,94016 +239017,Bose SoundSport Headphones,1,99.99,2019-08-16 16:13:00,947 Spruce St, Los Angeles,CA,90001 +239018,Lightning Charging Cable,1,14.95,2019-08-09 16:38:00,271 Dogwood St, San Francisco,CA,94016 +239019,Apple Airpods Headphones,1,150.0,2019-08-03 23:03:00,264 Lincoln St, Austin,TX,73301 +239020,USB-C Charging Cable,1,11.95,2019-08-17 15:48:00,705 8th St, Portland,ME,04101 +239021,Lightning Charging Cable,1,14.95,2019-08-01 18:21:00,637 River St, New York City,NY,10001 +239022,USB-C Charging Cable,1,11.95,2019-08-25 07:24:00,788 Adams St, San Francisco,CA,94016 +239023,AA Batteries (4-pack),1,3.84,2019-08-28 21:07:00,716 Pine St, New York City,NY,10001 +239024,USB-C Charging Cable,1,11.95,2019-08-03 20:12:00,86 Maple St, Seattle,WA,98101 +239025,Apple Airpods Headphones,1,150.0,2019-08-25 15:18:00,372 Church St, Boston,MA,02215 +239026,AA Batteries (4-pack),1,3.84,2019-08-23 18:45:00,735 North St, Dallas,TX,75001 +239027,USB-C Charging Cable,1,11.95,2019-08-22 12:18:00,886 Highland St, New York City,NY,10001 +239028,AAA Batteries (4-pack),1,2.99,2019-08-21 17:45:00,941 Lincoln St, Los Angeles,CA,90001 +239029,AA Batteries (4-pack),1,3.84,2019-08-08 13:04:00,476 Hill St, Los Angeles,CA,90001 +239030,Lightning Charging Cable,1,14.95,2019-08-27 08:55:00,544 13th St, Dallas,TX,75001 +239031,AAA Batteries (4-pack),2,2.99,2019-08-09 15:31:00,889 5th St, Boston,MA,02215 +239032,Wired Headphones,1,11.99,2019-08-31 15:40:00,493 6th St, Seattle,WA,98101 +239033,AA Batteries (4-pack),1,3.84,2019-08-02 19:34:00,237 Church St, Austin,TX,73301 +239034,Wired Headphones,1,11.99,2019-08-05 22:40:00,490 Dogwood St, Boston,MA,02215 +239035,AAA Batteries (4-pack),1,2.99,2019-08-23 10:45:00,399 Johnson St, San Francisco,CA,94016 +239036,27in 4K Gaming Monitor,1,389.99,2019-08-24 17:40:00,501 Lincoln St, Boston,MA,02215 +239037,Apple Airpods Headphones,1,150.0,2019-08-06 09:25:00,846 Cedar St, San Francisco,CA,94016 +239038,Apple Airpods Headphones,1,150.0,2019-08-05 06:16:00,605 Johnson St, San Francisco,CA,94016 +239039,USB-C Charging Cable,1,11.95,2019-08-01 19:29:00,90 Spruce St, San Francisco,CA,94016 +239040,Macbook Pro Laptop,1,1700.0,2019-08-09 21:38:00,695 13th St, New York City,NY,10001 +239041,27in FHD Monitor,1,149.99,2019-08-27 17:54:00,205 Church St, Los Angeles,CA,90001 +239042,Lightning Charging Cable,1,14.95,2019-08-02 19:30:00,67 Jefferson St, Atlanta,GA,30301 +239043,Flatscreen TV,1,300.0,2019-08-14 14:56:00,898 Walnut St, Los Angeles,CA,90001 +239044,Apple Airpods Headphones,1,150.0,2019-08-06 20:08:00,109 Jackson St, New York City,NY,10001 +239045,AAA Batteries (4-pack),1,2.99,2019-08-01 13:19:00,61 Cherry St, Los Angeles,CA,90001 +239046,Bose SoundSport Headphones,1,99.99,2019-08-26 13:34:00,647 10th St, San Francisco,CA,94016 +239047,USB-C Charging Cable,1,11.95,2019-08-01 21:54:00,912 North St, Los Angeles,CA,90001 +239048,Bose SoundSport Headphones,1,99.99,2019-08-16 19:36:00,34 Cherry St, Boston,MA,02215 +239049,AA Batteries (4-pack),1,3.84,2019-08-06 18:50:00,700 14th St, Boston,MA,02215 +239050,AAA Batteries (4-pack),1,2.99,2019-08-11 15:35:00,569 Lake St, Los Angeles,CA,90001 +239051,USB-C Charging Cable,1,11.95,2019-08-16 20:44:00,640 Willow St, Boston,MA,02215 +239052,USB-C Charging Cable,1,11.95,2019-08-14 11:23:00,95 Lakeview St, Seattle,WA,98101 +239053,AA Batteries (4-pack),1,3.84,2019-08-08 00:18:00,853 Wilson St, Seattle,WA,98101 +239054,AA Batteries (4-pack),1,3.84,2019-08-16 18:53:00,978 Jackson St, Los Angeles,CA,90001 +239055,AA Batteries (4-pack),1,3.84,2019-08-24 19:16:00,138 Spruce St, San Francisco,CA,94016 +239056,Lightning Charging Cable,1,14.95,2019-08-03 00:47:00,46 6th St, Seattle,WA,98101 +239057,Apple Airpods Headphones,1,150.0,2019-08-26 13:22:00,538 12th St, Seattle,WA,98101 +239058,USB-C Charging Cable,3,11.95,2019-08-21 21:11:00,9 Lake St, San Francisco,CA,94016 +239059,Lightning Charging Cable,1,14.95,2019-08-10 21:27:00,541 Hickory St, New York City,NY,10001 +239060,Macbook Pro Laptop,1,1700.0,2019-08-30 21:20:00,847 Johnson St, Dallas,TX,75001 +239061,Macbook Pro Laptop,1,1700.0,2019-08-04 23:16:00,977 Maple St, Atlanta,GA,30301 +239062,Apple Airpods Headphones,1,150.0,2019-08-22 00:07:00,74 River St, Atlanta,GA,30301 +239063,iPhone,1,700.0,2019-08-10 18:52:00,302 Maple St, Boston,MA,02215 +239064,USB-C Charging Cable,1,11.95,2019-08-01 12:28:00,931 7th St, New York City,NY,10001 +239065,Bose SoundSport Headphones,1,99.99,2019-08-30 12:03:00,461 Ridge St, Los Angeles,CA,90001 +239066,Lightning Charging Cable,1,14.95,2019-08-27 21:10:00,596 Walnut St, Atlanta,GA,30301 +239067,Lightning Charging Cable,1,14.95,2019-08-21 00:08:00,267 Sunset St, New York City,NY,10001 +239068,Apple Airpods Headphones,1,150.0,2019-08-26 06:07:00,991 West St, San Francisco,CA,94016 +239069,27in FHD Monitor,1,149.99,2019-08-20 17:09:00,917 Walnut St, Boston,MA,02215 +239070,Apple Airpods Headphones,1,150.0,2019-08-13 16:11:00,543 Dogwood St, Los Angeles,CA,90001 +239071,27in FHD Monitor,1,149.99,2019-08-30 10:25:00,488 Adams St, Boston,MA,02215 +239072,34in Ultrawide Monitor,1,379.99,2019-08-31 22:29:00,498 Jackson St, San Francisco,CA,94016 +239073,AA Batteries (4-pack),1,3.84,2019-08-05 14:41:00,928 Lincoln St, San Francisco,CA,94016 +239074,ThinkPad Laptop,1,999.99,2019-08-12 23:23:00,788 Madison St, Los Angeles,CA,90001 +239074,iPhone,1,700.0,2019-08-12 23:23:00,788 Madison St, Los Angeles,CA,90001 +239075,USB-C Charging Cable,2,11.95,2019-08-10 01:52:00,777 5th St, Los Angeles,CA,90001 +239076,Apple Airpods Headphones,1,150.0,2019-08-09 23:03:00,600 7th St, Atlanta,GA,30301 +239077,LG Dryer,1,600.0,2019-08-20 23:18:00,999 13th St, Atlanta,GA,30301 +239078,USB-C Charging Cable,1,11.95,2019-08-16 07:11:00,951 Wilson St, Los Angeles,CA,90001 +239079,AA Batteries (4-pack),1,3.84,2019-08-31 17:06:00,522 Main St, San Francisco,CA,94016 +239080,27in FHD Monitor,1,149.99,2019-08-18 16:47:00,533 Jefferson St, San Francisco,CA,94016 +239081,Lightning Charging Cable,1,14.95,2019-08-11 11:20:00,302 Jackson St, Dallas,TX,75001 +239082,27in 4K Gaming Monitor,1,389.99,2019-08-22 15:29:00,174 Hill St, Atlanta,GA,30301 +239083,AA Batteries (4-pack),1,3.84,2019-08-26 07:11:00,476 Cedar St, Portland,OR,97035 +239084,Google Phone,1,600.0,2019-08-09 14:41:00,614 Madison St, San Francisco,CA,94016 +239084,USB-C Charging Cable,1,11.95,2019-08-09 14:41:00,614 Madison St, San Francisco,CA,94016 +239085,USB-C Charging Cable,1,11.95,2019-08-14 18:32:00,897 8th St, Atlanta,GA,30301 +239086,Flatscreen TV,1,300.0,2019-08-25 20:04:00,486 5th St, Los Angeles,CA,90001 +239087,USB-C Charging Cable,1,11.95,2019-08-21 10:32:00,964 Lakeview St, New York City,NY,10001 +239088,AAA Batteries (4-pack),2,2.99,2019-08-04 14:06:00,818 Lincoln St, San Francisco,CA,94016 +239089,34in Ultrawide Monitor,1,379.99,2019-08-02 14:18:00,425 8th St, Los Angeles,CA,90001 +239090,Lightning Charging Cable,1,14.95,2019-08-27 10:19:00,383 1st St, Los Angeles,CA,90001 +239091,Bose SoundSport Headphones,1,99.99,2019-08-15 23:56:00,886 1st St, San Francisco,CA,94016 +239092,Wired Headphones,1,11.99,2019-08-06 19:20:00,895 Walnut St, New York City,NY,10001 +239093,27in FHD Monitor,1,149.99,2019-08-15 15:41:00,892 Elm St, Boston,MA,02215 +239094,AAA Batteries (4-pack),1,2.99,2019-08-07 21:17:00,944 12th St, Los Angeles,CA,90001 +239095,Bose SoundSport Headphones,1,99.99,2019-08-29 13:30:00,54 Main St, San Francisco,CA,94016 +239096,Bose SoundSport Headphones,1,99.99,2019-08-12 10:00:00,258 Johnson St, Los Angeles,CA,90001 +239097,Wired Headphones,1,11.99,2019-08-07 13:24:00,534 Adams St, San Francisco,CA,94016 +239098,AA Batteries (4-pack),1,3.84,2019-08-20 16:27:00,927 12th St, San Francisco,CA,94016 +239098,USB-C Charging Cable,1,11.95,2019-08-20 16:27:00,927 12th St, San Francisco,CA,94016 +239099,Flatscreen TV,1,300.0,2019-08-06 22:14:00,411 Madison St, Los Angeles,CA,90001 +239100,Lightning Charging Cable,1,14.95,2019-08-03 13:22:00,959 Hickory St, Atlanta,GA,30301 +239101,ThinkPad Laptop,1,999.99,2019-08-12 17:05:00,75 1st St, Los Angeles,CA,90001 +239102,AA Batteries (4-pack),2,3.84,2019-08-03 16:45:00,722 2nd St, Portland,OR,97035 +239103,Google Phone,1,600.0,2019-08-20 09:34:00,75 7th St, Boston,MA,02215 +239104,34in Ultrawide Monitor,1,379.99,2019-08-10 17:43:00,524 Sunset St, San Francisco,CA,94016 +239105,USB-C Charging Cable,1,11.95,2019-08-22 11:56:00,242 Sunset St, New York City,NY,10001 +239106,20in Monitor,1,109.99,2019-08-17 12:23:00,132 Spruce St, San Francisco,CA,94016 +239107,Apple Airpods Headphones,1,150.0,2019-08-18 07:26:00,768 Meadow St, Atlanta,GA,30301 +239108,AAA Batteries (4-pack),1,2.99,2019-08-01 21:10:00,343 Jefferson St, Los Angeles,CA,90001 +239109,34in Ultrawide Monitor,1,379.99,2019-08-30 16:47:00,170 13th St, Atlanta,GA,30301 +239110,Wired Headphones,1,11.99,2019-08-19 07:16:00,34 Hill St, San Francisco,CA,94016 +239111,AA Batteries (4-pack),1,3.84,2019-08-25 18:40:00,16 Spruce St, Los Angeles,CA,90001 +239112,AA Batteries (4-pack),1,3.84,2019-08-07 12:14:00,616 Jackson St, Los Angeles,CA,90001 +239113,Bose SoundSport Headphones,1,99.99,2019-08-28 16:25:00,25 Hickory St, San Francisco,CA,94016 +239114,AAA Batteries (4-pack),1,2.99,2019-08-15 21:19:00,890 Madison St, San Francisco,CA,94016 +239115,27in FHD Monitor,1,149.99,2019-08-03 10:17:00,681 Park St, Seattle,WA,98101 +239116,Wired Headphones,1,11.99,2019-08-01 06:55:00,718 Chestnut St, Atlanta,GA,30301 +239117,USB-C Charging Cable,1,11.95,2019-08-18 22:30:00,555 Hickory St, San Francisco,CA,94016 +239118,USB-C Charging Cable,1,11.95,2019-08-31 00:54:00,475 Park St, Los Angeles,CA,90001 +239119,Apple Airpods Headphones,1,150.0,2019-08-11 21:51:00,448 North St, Los Angeles,CA,90001 +239120,Bose SoundSport Headphones,1,99.99,2019-08-23 18:15:00,729 Main St, Seattle,WA,98101 +239121,iPhone,1,700.0,2019-08-09 20:37:00,453 West St, San Francisco,CA,94016 +239122,AA Batteries (4-pack),2,3.84,2019-08-16 19:45:00,306 Center St, New York City,NY,10001 +239123,USB-C Charging Cable,1,11.95,2019-08-02 14:56:00,702 River St, Boston,MA,02215 +239124,Apple Airpods Headphones,1,150.0,2019-08-26 21:35:00,214 Park St, San Francisco,CA,94016 +239125,27in 4K Gaming Monitor,1,389.99,2019-08-11 21:15:00,654 Hill St, New York City,NY,10001 +239126,USB-C Charging Cable,1,11.95,2019-08-02 10:56:00,885 Hickory St, San Francisco,CA,94016 +239127,Apple Airpods Headphones,1,150.0,2019-08-23 12:03:00,737 West St, Seattle,WA,98101 +239128,Wired Headphones,1,11.99,2019-08-16 18:00:00,17 Hill St, Seattle,WA,98101 +239129,AA Batteries (4-pack),1,3.84,2019-08-12 23:38:00,822 Lakeview St, San Francisco,CA,94016 +239130,27in 4K Gaming Monitor,1,389.99,2019-08-28 13:36:00,615 Adams St, Los Angeles,CA,90001 +239131,Google Phone,1,600.0,2019-08-24 19:17:00,670 Hickory St, Austin,TX,73301 +239131,AAA Batteries (4-pack),5,2.99,2019-08-24 19:17:00,670 Hickory St, Austin,TX,73301 +239132,Lightning Charging Cable,1,14.95,2019-08-18 13:26:00,326 North St, San Francisco,CA,94016 +239133,27in FHD Monitor,1,149.99,2019-08-16 19:47:00,281 Lake St, Seattle,WA,98101 +239134,USB-C Charging Cable,1,11.95,2019-08-12 09:04:00,325 13th St, Atlanta,GA,30301 +239135,Lightning Charging Cable,1,14.95,2019-08-27 20:39:00,645 North St, San Francisco,CA,94016 +239136,Apple Airpods Headphones,1,150.0,2019-08-15 17:35:00,455 Spruce St, San Francisco,CA,94016 +239137,27in 4K Gaming Monitor,1,389.99,2019-08-20 22:51:00,212 Hickory St, New York City,NY,10001 +239138,AA Batteries (4-pack),1,3.84,2019-08-09 22:37:00,309 Hill St, San Francisco,CA,94016 +239139,AAA Batteries (4-pack),1,2.99,2019-08-12 15:55:00,128 Pine St, Dallas,TX,75001 +239140,AA Batteries (4-pack),2,3.84,2019-08-22 13:49:00,999 Lincoln St, New York City,NY,10001 +239141,Apple Airpods Headphones,1,150.0,2019-08-15 09:40:00,961 Elm St, Los Angeles,CA,90001 +239142,34in Ultrawide Monitor,1,379.99,2019-08-15 22:43:00,978 Walnut St, San Francisco,CA,94016 +239143,USB-C Charging Cable,1,11.95,2019-08-24 09:17:00,550 Ridge St, San Francisco,CA,94016 +239144,Flatscreen TV,1,300.0,2019-08-17 07:37:00,324 4th St, New York City,NY,10001 +239145,Wired Headphones,1,11.99,2019-08-12 17:47:00,639 Wilson St, Los Angeles,CA,90001 +239146,Bose SoundSport Headphones,1,99.99,2019-08-17 15:35:00,617 Walnut St, Dallas,TX,75001 +239147,Google Phone,1,600.0,2019-08-21 21:14:00,493 5th St, Los Angeles,CA,90001 +239148,AAA Batteries (4-pack),5,2.99,2019-08-26 11:26:00,226 Maple St, San Francisco,CA,94016 +239149,AA Batteries (4-pack),1,3.84,2019-08-10 11:07:00,766 Sunset St, Los Angeles,CA,90001 +239150,LG Dryer,1,600.0,2019-08-29 20:04:00,16 Church St, San Francisco,CA,94016 +239151,AAA Batteries (4-pack),1,2.99,2019-08-17 19:56:00,362 Wilson St, New York City,NY,10001 +239152,AAA Batteries (4-pack),2,2.99,2019-08-16 15:12:00,759 Walnut St, San Francisco,CA,94016 +239153,Apple Airpods Headphones,1,150.0,2019-08-25 17:45:00,946 Hickory St, Boston,MA,02215 +239154,AAA Batteries (4-pack),1,2.99,2019-08-11 09:36:00,491 Church St, Austin,TX,73301 +239155,27in 4K Gaming Monitor,1,389.99,2019-08-08 21:04:00,976 Wilson St, San Francisco,CA,94016 +239156,USB-C Charging Cable,1,11.95,2019-08-18 19:36:00,813 Forest St, Boston,MA,02215 +239157,AAA Batteries (4-pack),2,2.99,2019-08-19 17:31:00,973 Meadow St, New York City,NY,10001 +239158,AAA Batteries (4-pack),1,2.99,2019-08-20 11:39:00,831 Adams St, San Francisco,CA,94016 +239159,20in Monitor,1,109.99,2019-08-18 18:04:00,365 Highland St, Los Angeles,CA,90001 +239160,USB-C Charging Cable,2,11.95,2019-08-05 01:09:00,204 Sunset St, Seattle,WA,98101 +239161,27in FHD Monitor,1,149.99,2019-08-19 11:23:00,545 North St, Seattle,WA,98101 +239162,USB-C Charging Cable,1,11.95,2019-08-11 19:33:00,547 Highland St, Los Angeles,CA,90001 +239163,Lightning Charging Cable,1,14.95,2019-08-29 01:09:00,13 Pine St, Dallas,TX,75001 +239164,AAA Batteries (4-pack),1,2.99,2019-08-29 10:19:00,398 Meadow St, Los Angeles,CA,90001 +239165,AA Batteries (4-pack),2,3.84,2019-08-23 16:21:00,173 Johnson St, Dallas,TX,75001 +239166,AA Batteries (4-pack),1,3.84,2019-08-01 16:11:00,235 Meadow St, Austin,TX,73301 +239167,Wired Headphones,1,11.99,2019-08-14 14:49:00,829 Spruce St, Dallas,TX,75001 +239168,Lightning Charging Cable,1,14.95,2019-08-21 06:27:00,746 10th St, Seattle,WA,98101 +239169,27in FHD Monitor,2,149.99,2019-08-15 10:05:00,493 Dogwood St, San Francisco,CA,94016 +239169,AAA Batteries (4-pack),1,2.99,2019-08-15 10:05:00,493 Dogwood St, San Francisco,CA,94016 +239170,27in FHD Monitor,1,149.99,2019-08-21 16:10:00,732 River St, Portland,OR,97035 +239171,AAA Batteries (4-pack),1,2.99,2019-08-07 19:22:00,149 12th St, Boston,MA,02215 +239172,AA Batteries (4-pack),1,3.84,2019-08-04 01:29:00,322 Lakeview St, Atlanta,GA,30301 +239173,Apple Airpods Headphones,1,150.0,2019-08-30 13:29:00,904 North St, San Francisco,CA,94016 +239174,34in Ultrawide Monitor,1,379.99,2019-08-21 09:13:00,182 North St, Dallas,TX,75001 +239175,Wired Headphones,1,11.99,2019-08-23 15:51:00,384 Lake St, Atlanta,GA,30301 +239176,34in Ultrawide Monitor,1,379.99,2019-08-28 18:35:00,76 7th St, San Francisco,CA,94016 +239177,Macbook Pro Laptop,1,1700.0,2019-08-10 08:04:00,99 6th St, San Francisco,CA,94016 +239178,AAA Batteries (4-pack),1,2.99,2019-08-19 07:26:00,496 Johnson St, San Francisco,CA,94016 +239179,Flatscreen TV,1,300.0,2019-08-06 13:32:00,770 1st St, San Francisco,CA,94016 +239180,34in Ultrawide Monitor,1,379.99,2019-08-01 21:53:00,277 11th St, New York City,NY,10001 +239181,USB-C Charging Cable,1,11.95,2019-08-08 14:56:00,44 Highland St, New York City,NY,10001 +239182,Bose SoundSport Headphones,1,99.99,2019-08-06 15:36:00,655 Highland St, Seattle,WA,98101 +239183,Lightning Charging Cable,1,14.95,2019-08-16 22:21:00,9 Lincoln St, San Francisco,CA,94016 +239184,AAA Batteries (4-pack),2,2.99,2019-08-18 16:12:00,60 Lake St, Atlanta,GA,30301 +239185,iPhone,1,700.0,2019-08-08 10:18:00,324 Dogwood St, Los Angeles,CA,90001 +239186,Wired Headphones,1,11.99,2019-08-01 14:18:00,60 10th St, San Francisco,CA,94016 +239187,USB-C Charging Cable,1,11.95,2019-08-09 00:05:00,96 Madison St, Boston,MA,02215 +239188,iPhone,1,700.0,2019-08-11 10:44:00,119 Adams St, Los Angeles,CA,90001 +239188,Lightning Charging Cable,1,14.95,2019-08-11 10:44:00,119 Adams St, Los Angeles,CA,90001 +239189,20in Monitor,1,109.99,2019-08-14 15:28:00,540 Lincoln St, Los Angeles,CA,90001 +239190,AAA Batteries (4-pack),2,2.99,2019-08-27 09:44:00,218 Jackson St, Los Angeles,CA,90001 +239191,27in 4K Gaming Monitor,1,389.99,2019-08-08 20:26:00,221 9th St, Los Angeles,CA,90001 +239192,Google Phone,1,600.0,2019-08-14 20:56:00,828 Lake St, New York City,NY,10001 +239193,Wired Headphones,1,11.99,2019-08-03 13:16:00,972 Dogwood St, Los Angeles,CA,90001 +239194,USB-C Charging Cable,1,11.95,2019-08-28 20:59:00,593 Hickory St, San Francisco,CA,94016 +239195,20in Monitor,1,109.99,2019-08-01 12:28:00,51 Lincoln St, Boston,MA,02215 +239196,ThinkPad Laptop,1,999.99,2019-08-25 01:08:00,241 4th St, Los Angeles,CA,90001 +239197,Apple Airpods Headphones,1,150.0,2019-08-28 14:49:00,960 Elm St, New York City,NY,10001 +239198,Apple Airpods Headphones,1,150.0,2019-08-01 11:50:00,933 4th St, Los Angeles,CA,90001 +239199,USB-C Charging Cable,1,11.95,2019-08-22 21:18:00,611 Elm St, San Francisco,CA,94016 +239200,Google Phone,1,600.0,2019-08-01 13:32:00,465 5th St, Seattle,WA,98101 +239201,ThinkPad Laptop,1,999.99,2019-08-16 21:26:00,605 Center St, Los Angeles,CA,90001 +239202,Bose SoundSport Headphones,1,99.99,2019-08-11 21:40:00,303 Hill St, Seattle,WA,98101 +239203,USB-C Charging Cable,2,11.95,2019-08-07 16:30:00,527 Adams St, Boston,MA,02215 +239204,Apple Airpods Headphones,1,150.0,2019-08-10 17:06:00,550 Cedar St, Boston,MA,02215 +239205,AAA Batteries (4-pack),1,2.99,2019-08-23 11:47:00,463 West St, San Francisco,CA,94016 +239206,iPhone,1,700.0,2019-08-25 20:33:00,201 Cedar St, Los Angeles,CA,90001 +239207,Wired Headphones,1,11.99,2019-08-18 11:27:00,956 Wilson St, Atlanta,GA,30301 +239208,AAA Batteries (4-pack),1,2.99,2019-08-14 13:05:00,775 Highland St, Boston,MA,02215 +239209,Wired Headphones,1,11.99,2019-08-12 11:29:00,363 Willow St, Atlanta,GA,30301 +239210,Wired Headphones,2,11.99,2019-08-27 17:42:00,554 Forest St, San Francisco,CA,94016 +239211,AA Batteries (4-pack),1,3.84,2019-08-16 10:38:00,418 12th St, Dallas,TX,75001 +239212,AAA Batteries (4-pack),1,2.99,2019-08-05 19:41:00,584 Lincoln St, Los Angeles,CA,90001 +239213,AA Batteries (4-pack),1,3.84,2019-08-25 07:46:00,951 Jackson St, San Francisco,CA,94016 +239214,USB-C Charging Cable,1,11.95,2019-08-25 20:14:00,740 8th St, Atlanta,GA,30301 +239215,27in FHD Monitor,1,149.99,2019-08-07 20:05:00,530 Maple St, Boston,MA,02215 +239216,Bose SoundSport Headphones,1,99.99,2019-08-21 20:19:00,714 8th St, Los Angeles,CA,90001 +239217,AA Batteries (4-pack),1,3.84,2019-08-18 13:45:00,593 Cherry St, San Francisco,CA,94016 +239218,AA Batteries (4-pack),1,3.84,2019-08-31 14:37:00,166 Chestnut St, New York City,NY,10001 +239219,Lightning Charging Cable,1,14.95,2019-08-09 16:43:00,623 1st St, San Francisco,CA,94016 +239220,Lightning Charging Cable,1,14.95,2019-08-31 16:49:00,956 Wilson St, San Francisco,CA,94016 +239221,Lightning Charging Cable,1,14.95,2019-08-16 20:33:00,879 Lakeview St, Los Angeles,CA,90001 +239222,AAA Batteries (4-pack),2,2.99,2019-08-14 17:03:00,632 West St, Portland,ME,04101 +239223,Lightning Charging Cable,1,14.95,2019-08-21 23:34:00,586 Walnut St, Atlanta,GA,30301 +239224,USB-C Charging Cable,1,11.95,2019-08-27 05:26:00,191 Jackson St, Los Angeles,CA,90001 +239225,Apple Airpods Headphones,1,150.0,2019-08-11 14:12:00,573 Ridge St, Los Angeles,CA,90001 +239226,USB-C Charging Cable,1,11.95,2019-08-28 16:50:00,779 Center St, San Francisco,CA,94016 +239227,Lightning Charging Cable,1,14.95,2019-08-08 13:02:00,506 11th St, San Francisco,CA,94016 +239228,AA Batteries (4-pack),2,3.84,2019-08-30 14:01:00,408 Main St, Dallas,TX,75001 +239229,AA Batteries (4-pack),2,3.84,2019-08-11 09:20:00,735 13th St, Los Angeles,CA,90001 +239230,USB-C Charging Cable,1,11.95,2019-08-18 17:19:00,484 Chestnut St, Boston,MA,02215 +239231,Lightning Charging Cable,1,14.95,2019-08-04 00:00:00,580 7th St, San Francisco,CA,94016 +239232,Bose SoundSport Headphones,1,99.99,2019-08-23 15:51:00,508 Chestnut St, Dallas,TX,75001 +239233,Macbook Pro Laptop,1,1700.0,2019-08-14 18:14:00,883 12th St, Los Angeles,CA,90001 +239234,ThinkPad Laptop,1,999.99,2019-08-19 14:08:00,712 Willow St, New York City,NY,10001 +239235,Apple Airpods Headphones,1,150.0,2019-08-18 11:09:00,72 4th St, Portland,OR,97035 +239236,Lightning Charging Cable,1,14.95,2019-08-21 14:41:00,803 13th St, Atlanta,GA,30301 +239237,Bose SoundSport Headphones,1,99.99,2019-08-21 00:54:00,757 5th St, Los Angeles,CA,90001 +239238,Lightning Charging Cable,1,14.95,2019-08-06 15:25:00,811 River St, San Francisco,CA,94016 +239239,Wired Headphones,1,11.99,2019-08-23 09:46:00,815 West St, Seattle,WA,98101 +239240,USB-C Charging Cable,1,11.95,2019-08-20 19:23:00,107 South St, Los Angeles,CA,90001 +239241,Lightning Charging Cable,1,14.95,2019-08-05 22:38:00,479 Meadow St, San Francisco,CA,94016 +239242,AAA Batteries (4-pack),1,2.99,2019-08-15 16:51:00,960 Forest St, San Francisco,CA,94016 +239243,AAA Batteries (4-pack),2,2.99,2019-08-03 21:11:00,83 Main St, Atlanta,GA,30301 +239244,AAA Batteries (4-pack),3,2.99,2019-08-10 06:57:00,693 8th St, San Francisco,CA,94016 +239245,Bose SoundSport Headphones,1,99.99,2019-08-31 22:55:00,388 Lincoln St, Portland,ME,04101 +239246,27in 4K Gaming Monitor,1,389.99,2019-08-30 03:23:00,975 Highland St, San Francisco,CA,94016 +239247,27in FHD Monitor,1,149.99,2019-08-06 15:04:00,935 Forest St, Austin,TX,73301 +239248,Apple Airpods Headphones,1,150.0,2019-08-31 13:36:00,307 Adams St, Dallas,TX,75001 +239248,Lightning Charging Cable,1,14.95,2019-08-31 13:36:00,307 Adams St, Dallas,TX,75001 +239249,AA Batteries (4-pack),1,3.84,2019-08-12 14:30:00,227 North St, Portland,ME,04101 +239250,Lightning Charging Cable,1,14.95,2019-08-15 15:03:00,350 8th St, Los Angeles,CA,90001 +239251,Lightning Charging Cable,1,14.95,2019-08-22 22:57:00,540 Highland St, Atlanta,GA,30301 +239252,AA Batteries (4-pack),1,3.84,2019-08-26 08:25:00,217 Jefferson St, San Francisco,CA,94016 +239253,34in Ultrawide Monitor,1,379.99,2019-08-23 17:46:00,43 8th St, Los Angeles,CA,90001 +239253,Wired Headphones,1,11.99,2019-08-23 17:46:00,43 8th St, Los Angeles,CA,90001 +239254,20in Monitor,1,109.99,2019-08-14 21:58:00,477 Jackson St, Boston,MA,02215 +239255,USB-C Charging Cable,1,11.95,2019-08-13 21:44:00,661 Church St, San Francisco,CA,94016 +239256,Lightning Charging Cable,1,14.95,2019-08-12 16:46:00,354 2nd St, Portland,OR,97035 +239257,AA Batteries (4-pack),2,3.84,2019-08-19 15:06:00,366 Wilson St, Dallas,TX,75001 +239258,AA Batteries (4-pack),1,3.84,2019-08-17 01:49:00,65 Meadow St, San Francisco,CA,94016 +239258,AAA Batteries (4-pack),2,2.99,2019-08-17 01:49:00,65 Meadow St, San Francisco,CA,94016 +239259,Vareebadd Phone,1,400.0,2019-08-21 11:24:00,271 Sunset St, San Francisco,CA,94016 +239259,Flatscreen TV,1,300.0,2019-08-21 11:24:00,271 Sunset St, San Francisco,CA,94016 +239260,Bose SoundSport Headphones,1,99.99,2019-08-29 19:09:00,948 Jackson St, Portland,ME,04101 +239261,Flatscreen TV,1,300.0,2019-08-10 13:37:00,299 Maple St, Atlanta,GA,30301 +239262,Lightning Charging Cable,1,14.95,2019-08-13 13:01:00,944 Church St, Los Angeles,CA,90001 +239263,AA Batteries (4-pack),1,3.84,2019-08-07 01:30:00,371 2nd St, New York City,NY,10001 +239264,AA Batteries (4-pack),1,3.84,2019-08-25 11:15:00,278 Sunset St, Atlanta,GA,30301 +239265,AAA Batteries (4-pack),1,2.99,2019-08-28 10:15:00,386 Hill St, New York City,NY,10001 +239266,34in Ultrawide Monitor,1,379.99,2019-08-28 09:12:00,504 Hickory St, New York City,NY,10001 +239267,Wired Headphones,1,11.99,2019-08-13 21:06:00,104 Chestnut St, New York City,NY,10001 +239268,Bose SoundSport Headphones,1,99.99,2019-08-03 22:36:00,446 Ridge St, New York City,NY,10001 +239269,Bose SoundSport Headphones,1,99.99,2019-08-20 23:22:00,653 Jackson St, Los Angeles,CA,90001 +239270,Vareebadd Phone,1,400.0,2019-08-29 18:55:00,206 Ridge St, Dallas,TX,75001 +239271,Lightning Charging Cable,1,14.95,2019-08-19 20:44:00,432 10th St, Seattle,WA,98101 +239272,27in FHD Monitor,1,149.99,2019-08-23 13:48:00,317 Jackson St, Dallas,TX,75001 +239273,27in FHD Monitor,1,149.99,2019-08-22 04:16:00,680 8th St, San Francisco,CA,94016 +239274,Wired Headphones,1,11.99,2019-08-14 21:37:00,110 Highland St, New York City,NY,10001 +239275,Macbook Pro Laptop,1,1700.0,2019-08-11 13:51:00,67 Johnson St, Los Angeles,CA,90001 +239276,Macbook Pro Laptop,1,1700.0,2019-08-31 21:49:00,636 7th St, New York City,NY,10001 +239277,AAA Batteries (4-pack),1,2.99,2019-08-18 09:15:00,208 Park St, Los Angeles,CA,90001 +239278,AAA Batteries (4-pack),1,2.99,2019-08-22 11:37:00,339 Park St, San Francisco,CA,94016 +239279,34in Ultrawide Monitor,1,379.99,2019-08-01 15:59:00,700 River St, Boston,MA,02215 +239280,USB-C Charging Cable,1,11.95,2019-08-08 19:10:00,677 Meadow St, Atlanta,GA,30301 +239281,Macbook Pro Laptop,1,1700.0,2019-08-14 18:33:00,203 Center St, Dallas,TX,75001 +239282,Bose SoundSport Headphones,1,99.99,2019-08-04 18:05:00,958 Hickory St, San Francisco,CA,94016 +239283,27in FHD Monitor,2,149.99,2019-08-06 13:01:00,40 1st St, Portland,OR,97035 +239284,Wired Headphones,1,11.99,2019-08-26 09:07:00,521 Lincoln St, Dallas,TX,75001 +239285,34in Ultrawide Monitor,1,379.99,2019-09-01 01:09:00,373 1st St, San Francisco,CA,94016 +239286,27in FHD Monitor,1,149.99,2019-08-26 13:42:00,137 South St, Los Angeles,CA,90001 +239287,AA Batteries (4-pack),1,3.84,2019-08-04 16:21:00,424 River St, Los Angeles,CA,90001 +239288,USB-C Charging Cable,1,11.95,2019-08-13 17:06:00,734 11th St, New York City,NY,10001 +239289,34in Ultrawide Monitor,1,379.99,2019-08-24 21:03:00,350 8th St, Dallas,TX,75001 +239290,Wired Headphones,2,11.99,2019-08-13 10:11:00,15 9th St, New York City,NY,10001 +239290,34in Ultrawide Monitor,1,379.99,2019-08-13 10:11:00,15 9th St, New York City,NY,10001 +239291,27in FHD Monitor,1,149.99,2019-08-14 19:34:00,969 12th St, Seattle,WA,98101 +239292,Lightning Charging Cable,1,14.95,2019-08-19 17:35:00,376 West St, Los Angeles,CA,90001 +239293,USB-C Charging Cable,1,11.95,2019-08-19 20:44:00,42 Main St, Los Angeles,CA,90001 +239294,Wired Headphones,1,11.99,2019-08-24 10:28:00,616 Lake St, Atlanta,GA,30301 +239295,Google Phone,1,600.0,2019-08-03 05:37:00,146 10th St, San Francisco,CA,94016 +239295,Wired Headphones,1,11.99,2019-08-03 05:37:00,146 10th St, San Francisco,CA,94016 +239296,USB-C Charging Cable,1,11.95,2019-08-31 16:42:00,418 Pine St, Portland,ME,04101 +239297,Apple Airpods Headphones,1,150.0,2019-08-09 10:25:00,925 Park St, New York City,NY,10001 +239298,Bose SoundSport Headphones,1,99.99,2019-08-26 10:55:00,350 Park St, San Francisco,CA,94016 +239299,Lightning Charging Cable,1,14.95,2019-08-19 16:33:00,782 West St, Boston,MA,02215 +239300,Bose SoundSport Headphones,1,99.99,2019-08-29 12:18:00,139 Church St, Los Angeles,CA,90001 +239301,Google Phone,1,600.0,2019-08-09 09:14:00,546 Forest St, Atlanta,GA,30301 +239302,LG Dryer,1,600.0,2019-08-29 14:41:00,446 Center St, Dallas,TX,75001 +239303,AA Batteries (4-pack),1,3.84,2019-08-27 21:32:00,562 Walnut St, Los Angeles,CA,90001 +239304,iPhone,1,700.0,2019-08-30 20:08:00,694 North St, San Francisco,CA,94016 +239305,USB-C Charging Cable,1,11.95,2019-08-18 19:33:00,860 Spruce St, Los Angeles,CA,90001 +239306,AA Batteries (4-pack),2,3.84,2019-08-24 02:41:00,836 Center St, Boston,MA,02215 +239307,Apple Airpods Headphones,1,150.0,2019-08-10 16:34:00,117 Lincoln St, Los Angeles,CA,90001 +239308,Google Phone,1,600.0,2019-08-14 08:23:00,275 Sunset St, Dallas,TX,75001 +239308,USB-C Charging Cable,1,11.95,2019-08-14 08:23:00,275 Sunset St, Dallas,TX,75001 +239309,Wired Headphones,2,11.99,2019-08-29 11:07:00,343 Lincoln St, Los Angeles,CA,90001 +239310,Vareebadd Phone,1,400.0,2019-08-10 11:57:00,932 9th St, New York City,NY,10001 +239311,USB-C Charging Cable,1,11.95,2019-08-29 21:37:00,182 Hickory St, Dallas,TX,75001 +239312,Lightning Charging Cable,1,14.95,2019-08-03 20:18:00,649 Cherry St, Atlanta,GA,30301 +239313,Bose SoundSport Headphones,1,99.99,2019-08-03 18:25:00,863 River St, Boston,MA,02215 +239314,Bose SoundSport Headphones,1,99.99,2019-08-22 22:51:00,527 Lake St, Dallas,TX,75001 +239315,AA Batteries (4-pack),1,3.84,2019-08-21 16:51:00,6 Hickory St, Boston,MA,02215 +239316,AA Batteries (4-pack),3,3.84,2019-08-03 14:26:00,233 8th St, Los Angeles,CA,90001 +239317,Apple Airpods Headphones,1,150.0,2019-08-29 16:07:00,289 10th St, Los Angeles,CA,90001 +239318,AA Batteries (4-pack),1,3.84,2019-08-01 23:43:00,942 Cedar St, New York City,NY,10001 +239319,Lightning Charging Cable,2,14.95,2019-08-31 20:51:00,941 Jackson St, Boston,MA,02215 +239320,AAA Batteries (4-pack),1,2.99,2019-08-11 13:14:00,933 Ridge St, San Francisco,CA,94016 +239321,USB-C Charging Cable,1,11.95,2019-08-20 16:41:00,583 Maple St, Boston,MA,02215 +239322,34in Ultrawide Monitor,1,379.99,2019-08-27 17:32:00,684 West St, Boston,MA,02215 +239323,Lightning Charging Cable,1,14.95,2019-08-27 17:01:00,658 Jefferson St, San Francisco,CA,94016 +239324,Wired Headphones,1,11.99,2019-08-22 14:56:00,464 Pine St, Dallas,TX,75001 +239325,Lightning Charging Cable,1,14.95,2019-08-07 09:35:00,610 Maple St, San Francisco,CA,94016 +239326,AAA Batteries (4-pack),2,2.99,2019-08-05 09:48:00,227 4th St, San Francisco,CA,94016 +239327,AA Batteries (4-pack),1,3.84,2019-08-15 09:30:00,913 12th St, New York City,NY,10001 +239328,20in Monitor,1,109.99,2019-08-02 11:17:00,490 Walnut St, Atlanta,GA,30301 +239329,Bose SoundSport Headphones,1,99.99,2019-08-27 19:05:00,50 Hickory St, Dallas,TX,75001 +239330,AAA Batteries (4-pack),1,2.99,2019-08-19 15:44:00,867 Lake St, Portland,OR,97035 +239331,27in 4K Gaming Monitor,1,389.99,2019-08-14 14:27:00,97 Lake St, Seattle,WA,98101 +239332,Bose SoundSport Headphones,1,99.99,2019-08-02 06:48:00,346 14th St, San Francisco,CA,94016 +239333,27in 4K Gaming Monitor,1,389.99,2019-08-15 19:23:00,938 Park St, Los Angeles,CA,90001 +239334,AAA Batteries (4-pack),2,2.99,2019-08-02 10:59:00,715 Park St, New York City,NY,10001 +239335,Lightning Charging Cable,1,14.95,2019-08-20 10:18:00,547 Lincoln St, San Francisco,CA,94016 +239336,AAA Batteries (4-pack),2,2.99,2019-08-19 13:52:00,900 North St, San Francisco,CA,94016 +239337,Apple Airpods Headphones,1,150.0,2019-08-25 23:14:00,757 Hickory St, Boston,MA,02215 +239338,Wired Headphones,1,11.99,2019-08-20 12:31:00,289 Ridge St, New York City,NY,10001 +239339,Lightning Charging Cable,1,14.95,2019-08-25 21:00:00,375 Lincoln St, Seattle,WA,98101 +239340,ThinkPad Laptop,1,999.99,2019-08-13 13:25:00,747 North St, Los Angeles,CA,90001 +239341,iPhone,1,700.0,2019-08-25 23:28:00,543 Lake St, Boston,MA,02215 +239342,USB-C Charging Cable,1,11.95,2019-08-15 11:46:00,972 Jefferson St, San Francisco,CA,94016 +239343,Google Phone,1,600.0,2019-08-24 14:07:00,438 Maple St, San Francisco,CA,94016 +239343,USB-C Charging Cable,1,11.95,2019-08-24 14:07:00,438 Maple St, San Francisco,CA,94016 +239344,Flatscreen TV,1,300.0,2019-08-07 11:37:00,776 Willow St, Boston,MA,02215 +239345,Macbook Pro Laptop,1,1700.0,2019-08-09 12:21:00,328 Johnson St, San Francisco,CA,94016 +239346,AAA Batteries (4-pack),1,2.99,2019-08-01 14:08:00,17 Lakeview St, San Francisco,CA,94016 +239347,Wired Headphones,1,11.99,2019-08-22 17:46:00,34 Cedar St, Portland,ME,04101 +239348,Wired Headphones,1,11.99,2019-08-25 07:41:00,350 Madison St, San Francisco,CA,94016 +239349,AA Batteries (4-pack),2,3.84,2019-08-24 13:34:00,421 12th St, Seattle,WA,98101 +239350,Lightning Charging Cable,1,14.95,2019-08-04 11:09:00,568 4th St, Portland,OR,97035 +239351,Apple Airpods Headphones,1,150.0,2019-08-23 10:03:00,403 Washington St, Austin,TX,73301 +239352,USB-C Charging Cable,1,11.95,2019-08-19 11:38:00,141 North St, New York City,NY,10001 +239353,AAA Batteries (4-pack),4,2.99,2019-08-04 22:03:00,787 Dogwood St, New York City,NY,10001 +239354,27in 4K Gaming Monitor,1,389.99,2019-08-19 12:34:00,210 Madison St, Boston,MA,02215 +239355,Lightning Charging Cable,1,14.95,2019-08-27 18:36:00,201 Park St, New York City,NY,10001 +239356,Bose SoundSport Headphones,1,99.99,2019-08-19 16:22:00,408 7th St, New York City,NY,10001 +239357,AA Batteries (4-pack),2,3.84,2019-08-19 12:51:00,923 Lake St, Portland,OR,97035 +239358,Bose SoundSport Headphones,1,99.99,2019-08-02 13:35:00,574 10th St, San Francisco,CA,94016 +239359,Wired Headphones,1,11.99,2019-08-05 18:20:00,28 Elm St, Portland,OR,97035 +239360,Apple Airpods Headphones,1,150.0,2019-08-12 08:10:00,359 West St, Portland,OR,97035 +239361,ThinkPad Laptop,1,999.99,2019-08-06 23:12:00,623 Adams St, San Francisco,CA,94016 +239362,Apple Airpods Headphones,1,150.0,2019-08-09 10:15:00,593 Maple St, Seattle,WA,98101 +239363,AAA Batteries (4-pack),2,2.99,2019-08-04 22:33:00,79 5th St, Austin,TX,73301 +239364,AA Batteries (4-pack),3,3.84,2019-08-17 20:25:00,57 Forest St, Portland,OR,97035 +239365,34in Ultrawide Monitor,1,379.99,2019-08-30 13:23:00,97 4th St, Dallas,TX,75001 +239366,Bose SoundSport Headphones,1,99.99,2019-08-09 20:40:00,348 Sunset St, San Francisco,CA,94016 +239367,Google Phone,1,600.0,2019-08-01 11:51:00,383 Lake St, New York City,NY,10001 +239368,Apple Airpods Headphones,1,150.0,2019-08-08 14:39:00,446 6th St, New York City,NY,10001 +239369,Apple Airpods Headphones,1,150.0,2019-08-09 17:58:00,32 River St, Portland,ME,04101 +239370,USB-C Charging Cable,1,11.95,2019-08-19 14:27:00,734 Pine St, New York City,NY,10001 +239371,AA Batteries (4-pack),1,3.84,2019-08-14 16:17:00,431 River St, San Francisco,CA,94016 +239372,Google Phone,1,600.0,2019-08-07 16:45:00,828 12th St, Portland,OR,97035 +239373,Bose SoundSport Headphones,1,99.99,2019-08-25 22:18:00,656 Johnson St, Boston,MA,02215 +239374,AAA Batteries (4-pack),1,2.99,2019-08-03 21:11:00,392 Main St, New York City,NY,10001 +239375,Wired Headphones,2,11.99,2019-08-26 21:08:00,979 Lakeview St, San Francisco,CA,94016 +239376,USB-C Charging Cable,2,11.95,2019-08-26 11:29:00,512 Jackson St, Seattle,WA,98101 +239377,USB-C Charging Cable,1,11.95,2019-08-08 10:41:00,778 Spruce St, San Francisco,CA,94016 +239378,Lightning Charging Cable,1,14.95,2019-08-10 15:19:00,752 Willow St, Los Angeles,CA,90001 +239379,Wired Headphones,1,11.99,2019-08-05 15:42:00,341 Sunset St, Atlanta,GA,30301 +239380,Bose SoundSport Headphones,1,99.99,2019-08-19 17:19:00,962 Spruce St, San Francisco,CA,94016 +239381,Apple Airpods Headphones,1,150.0,2019-08-04 07:18:00,621 Meadow St, Los Angeles,CA,90001 +239382,Flatscreen TV,1,300.0,2019-08-02 18:33:00,402 Washington St, Seattle,WA,98101 +239383,Google Phone,1,600.0,2019-08-15 19:07:00,772 Madison St, Atlanta,GA,30301 +239384,Wired Headphones,1,11.99,2019-08-12 15:33:00,200 14th St, Seattle,WA,98101 +239385,Bose SoundSport Headphones,1,99.99,2019-08-30 19:17:00,380 6th St, San Francisco,CA,94016 +239386,Apple Airpods Headphones,1,150.0,2019-08-03 22:52:00,700 Church St, New York City,NY,10001 +239387,Lightning Charging Cable,1,14.95,2019-08-08 14:10:00,884 Johnson St, Los Angeles,CA,90001 +239388,Google Phone,1,600.0,2019-08-24 19:32:00,285 Pine St, Dallas,TX,75001 +239389,AAA Batteries (4-pack),1,2.99,2019-08-13 14:29:00,123 Highland St, Los Angeles,CA,90001 +239390,Bose SoundSport Headphones,1,99.99,2019-08-12 21:50:00,235 Willow St, Seattle,WA,98101 +239391,Wired Headphones,1,11.99,2019-08-15 12:52:00,558 Adams St, Boston,MA,02215 +239392,Flatscreen TV,1,300.0,2019-08-21 10:10:00,730 Wilson St, Boston,MA,02215 +239393,Apple Airpods Headphones,1,150.0,2019-08-04 10:27:00,122 10th St, San Francisco,CA,94016 +239394,AAA Batteries (4-pack),1,2.99,2019-08-21 16:44:00,976 Lakeview St, Los Angeles,CA,90001 +239395,Wired Headphones,2,11.99,2019-08-02 14:26:00,536 Ridge St, San Francisco,CA,94016 +239396,USB-C Charging Cable,1,11.95,2019-08-16 20:40:00,338 Lake St, New York City,NY,10001 +239397,20in Monitor,1,109.99,2019-08-12 22:06:00,162 Sunset St, New York City,NY,10001 +239398,Vareebadd Phone,1,400.0,2019-08-01 10:52:00,521 4th St, Austin,TX,73301 +239398,Wired Headphones,1,11.99,2019-08-01 10:52:00,521 4th St, Austin,TX,73301 +239399,AA Batteries (4-pack),1,3.84,2019-08-30 01:08:00,319 4th St, San Francisco,CA,94016 +239400,AA Batteries (4-pack),1,3.84,2019-08-08 21:22:00,889 Chestnut St, Dallas,TX,75001 +239401,iPhone,1,700.0,2019-08-08 15:09:00,752 2nd St, Seattle,WA,98101 +239402,AA Batteries (4-pack),2,3.84,2019-08-12 07:46:00,494 Dogwood St, Seattle,WA,98101 +239403,AA Batteries (4-pack),1,3.84,2019-08-15 15:02:00,345 Lake St, Portland,OR,97035 +239404,Lightning Charging Cable,1,14.95,2019-08-05 22:44:00,500 South St, San Francisco,CA,94016 +239405,USB-C Charging Cable,1,11.95,2019-08-25 13:29:00,313 Walnut St, Atlanta,GA,30301 +239406,Bose SoundSport Headphones,1,99.99,2019-08-17 17:54:00,855 12th St, San Francisco,CA,94016 +239407,AAA Batteries (4-pack),1,2.99,2019-08-19 21:49:00,142 Wilson St, Seattle,WA,98101 +239408,AAA Batteries (4-pack),4,2.99,2019-08-14 10:30:00,539 Walnut St, Seattle,WA,98101 +239409,Flatscreen TV,1,300.0,2019-08-26 17:05:00,955 12th St, San Francisco,CA,94016 +239410,Wired Headphones,1,11.99,2019-08-21 13:16:00,962 2nd St, Seattle,WA,98101 +239411,Lightning Charging Cable,1,14.95,2019-08-09 11:16:00,36 Lakeview St, New York City,NY,10001 +239412,Wired Headphones,1,11.99,2019-08-02 08:43:00,397 South St, Los Angeles,CA,90001 +239413,Lightning Charging Cable,2,14.95,2019-08-22 17:26:00,99 Lake St, Boston,MA,02215 +239414,AAA Batteries (4-pack),4,2.99,2019-08-29 14:08:00,414 North St, Portland,OR,97035 +239415,Lightning Charging Cable,1,14.95,2019-08-14 19:54:00,120 Sunset St, New York City,NY,10001 +239416,27in 4K Gaming Monitor,1,389.99,2019-08-17 20:16:00,728 Wilson St, Portland,OR,97035 +239417,AA Batteries (4-pack),1,3.84,2019-08-24 19:58:00,383 10th St, Portland,OR,97035 +239418,USB-C Charging Cable,1,11.95,2019-08-29 19:35:00,749 Spruce St, New York City,NY,10001 +239419,AAA Batteries (4-pack),2,2.99,2019-08-08 12:18:00,142 4th St, San Francisco,CA,94016 +239420,iPhone,1,700.0,2019-08-18 14:35:00,845 10th St, Boston,MA,02215 +239420,Wired Headphones,2,11.99,2019-08-18 14:35:00,845 10th St, Boston,MA,02215 +239421,Lightning Charging Cable,1,14.95,2019-08-26 10:37:00,382 Cherry St, New York City,NY,10001 +239422,USB-C Charging Cable,1,11.95,2019-08-30 18:39:00,540 10th St, San Francisco,CA,94016 +239423,27in FHD Monitor,1,149.99,2019-08-04 11:35:00,742 Dogwood St, Dallas,TX,75001 +239424,Wired Headphones,1,11.99,2019-08-08 11:10:00,44 Elm St, Boston,MA,02215 +239425,Lightning Charging Cable,1,14.95,2019-08-08 10:13:00,291 12th St, Austin,TX,73301 +239426,Lightning Charging Cable,1,14.95,2019-08-12 08:35:00,358 8th St, Atlanta,GA,30301 +239427,Apple Airpods Headphones,1,150.0,2019-08-09 20:38:00,534 Ridge St, Dallas,TX,75001 +239428,Wired Headphones,1,11.99,2019-08-01 18:37:00,664 Church St, San Francisco,CA,94016 +239429,AAA Batteries (4-pack),2,2.99,2019-08-06 10:46:00,643 Washington St, New York City,NY,10001 +239430,USB-C Charging Cable,1,11.95,2019-08-23 21:07:00,316 South St, Austin,TX,73301 +239431,AA Batteries (4-pack),1,3.84,2019-08-15 22:54:00,612 Lincoln St, Los Angeles,CA,90001 +239432,Apple Airpods Headphones,1,150.0,2019-08-19 01:09:00,395 Lakeview St, Seattle,WA,98101 +239433,Bose SoundSport Headphones,1,99.99,2019-08-21 20:48:00,898 Center St, San Francisco,CA,94016 +239434,27in FHD Monitor,1,149.99,2019-08-05 21:34:00,13 Park St, New York City,NY,10001 +239435,USB-C Charging Cable,1,11.95,2019-08-21 22:16:00,717 Cherry St, Los Angeles,CA,90001 +239436,Wired Headphones,1,11.99,2019-08-10 15:41:00,698 Lincoln St, Boston,MA,02215 +239437,USB-C Charging Cable,1,11.95,2019-08-16 20:37:00,836 9th St, San Francisco,CA,94016 +239438,34in Ultrawide Monitor,1,379.99,2019-08-17 12:23:00,10 North St, San Francisco,CA,94016 +239439,27in 4K Gaming Monitor,1,389.99,2019-08-20 17:40:00,737 Jackson St, Austin,TX,73301 +239440,Wired Headphones,1,11.99,2019-08-08 02:48:00,417 Pine St, Los Angeles,CA,90001 +239441,27in FHD Monitor,1,149.99,2019-08-01 10:36:00,713 Lincoln St, Los Angeles,CA,90001 +239442,AA Batteries (4-pack),1,3.84,2019-08-12 10:14:00,3 Elm St, Austin,TX,73301 +239443,USB-C Charging Cable,1,11.95,2019-08-15 19:41:00,879 Highland St, Portland,OR,97035 +239444,Vareebadd Phone,1,400.0,2019-08-30 19:23:00,113 9th St, Atlanta,GA,30301 +239445,Lightning Charging Cable,1,14.95,2019-08-08 16:51:00,323 Washington St, San Francisco,CA,94016 +239446,Lightning Charging Cable,1,14.95,2019-08-19 13:46:00,877 4th St, Portland,OR,97035 +239447,Apple Airpods Headphones,1,150.0,2019-08-01 23:32:00,343 Cherry St, Seattle,WA,98101 +239448,AAA Batteries (4-pack),2,2.99,2019-08-06 07:55:00,775 5th St, San Francisco,CA,94016 +239449,AAA Batteries (4-pack),1,2.99,2019-08-30 00:07:00,895 Jackson St, Los Angeles,CA,90001 +239450,ThinkPad Laptop,1,999.99,2019-08-31 13:54:00,731 12th St, San Francisco,CA,94016 +239451,Lightning Charging Cable,1,14.95,2019-08-28 11:25:00,925 Willow St, New York City,NY,10001 +239452,iPhone,1,700.0,2019-08-12 12:42:00,195 6th St, Boston,MA,02215 +239453,AA Batteries (4-pack),1,3.84,2019-08-07 15:06:00,324 Washington St, San Francisco,CA,94016 +239454,USB-C Charging Cable,1,11.95,2019-08-04 10:55:00,212 North St, Los Angeles,CA,90001 +239455,34in Ultrawide Monitor,1,379.99,2019-08-30 13:13:00,400 14th St, Los Angeles,CA,90001 +239456,27in FHD Monitor,1,149.99,2019-08-25 00:23:00,717 1st St, Los Angeles,CA,90001 +239457,Bose SoundSport Headphones,1,99.99,2019-08-01 16:37:00,680 2nd St, Los Angeles,CA,90001 +239458,USB-C Charging Cable,1,11.95,2019-08-05 11:15:00,185 7th St, Seattle,WA,98101 +239459,AAA Batteries (4-pack),2,2.99,2019-08-23 10:40:00,326 10th St, San Francisco,CA,94016 +239460,Apple Airpods Headphones,1,150.0,2019-08-27 14:22:00,398 12th St, San Francisco,CA,94016 +239461,27in FHD Monitor,1,149.99,2019-08-22 15:32:00,503 14th St, Los Angeles,CA,90001 +239462,27in 4K Gaming Monitor,1,389.99,2019-08-27 19:31:00,321 2nd St, Los Angeles,CA,90001 +239463,20in Monitor,1,109.99,2019-08-04 14:30:00,581 Maple St, Seattle,WA,98101 +239464,AA Batteries (4-pack),1,3.84,2019-08-06 16:12:00,551 10th St, San Francisco,CA,94016 +239465,AA Batteries (4-pack),2,3.84,2019-08-26 14:10:00,928 River St, Los Angeles,CA,90001 +239466,Bose SoundSport Headphones,1,99.99,2019-08-22 15:35:00,405 11th St, Los Angeles,CA,90001 +239467,AAA Batteries (4-pack),7,2.99,2019-08-20 19:20:00,427 7th St, Boston,MA,02215 +239468,AA Batteries (4-pack),1,3.84,2019-08-01 10:26:00,869 West St, Dallas,TX,75001 +239469,27in 4K Gaming Monitor,1,389.99,2019-08-19 10:08:00,332 Cherry St, New York City,NY,10001 +239470,AAA Batteries (4-pack),2,2.99,2019-08-30 10:24:00,806 9th St, Austin,TX,73301 +239471,AA Batteries (4-pack),2,3.84,2019-08-10 15:12:00,926 Meadow St, San Francisco,CA,94016 +239472,AA Batteries (4-pack),1,3.84,2019-08-23 17:23:00,746 Lincoln St, San Francisco,CA,94016 +239473,27in 4K Gaming Monitor,1,389.99,2019-08-10 09:35:00,791 Maple St, Los Angeles,CA,90001 +239474,Lightning Charging Cable,1,14.95,2019-08-06 15:18:00,63 4th St, Seattle,WA,98101 +239475,AAA Batteries (4-pack),1,2.99,2019-08-12 06:37:00,560 Park St, Boston,MA,02215 +239476,27in 4K Gaming Monitor,1,389.99,2019-08-14 19:34:00,330 10th St, Seattle,WA,98101 +239477,Wired Headphones,1,11.99,2019-08-19 20:36:00,53 Church St, San Francisco,CA,94016 +239478,AAA Batteries (4-pack),2,2.99,2019-08-25 10:34:00,137 Cedar St, Boston,MA,02215 +239479,USB-C Charging Cable,1,11.95,2019-08-29 13:54:00,442 5th St, San Francisco,CA,94016 +239480,20in Monitor,1,109.99,2019-08-20 18:37:00,345 Jackson St, Atlanta,GA,30301 +239481,Lightning Charging Cable,2,14.95,2019-08-03 22:34:00,780 Center St, Portland,OR,97035 +239482,Lightning Charging Cable,1,14.95,2019-08-18 14:21:00,53 Washington St, Seattle,WA,98101 +239483,27in 4K Gaming Monitor,1,389.99,2019-08-07 14:40:00,362 Forest St, Seattle,WA,98101 +239484,Lightning Charging Cable,1,14.95,2019-08-27 11:14:00,733 Main St, Los Angeles,CA,90001 +239485,34in Ultrawide Monitor,1,379.99,2019-08-21 14:11:00,866 Johnson St, San Francisco,CA,94016 +239486,27in 4K Gaming Monitor,1,389.99,2019-08-16 10:46:00,551 Wilson St, Portland,OR,97035 +239487,Lightning Charging Cable,1,14.95,2019-08-04 17:58:00,843 4th St, San Francisco,CA,94016 +239488,AA Batteries (4-pack),1,3.84,2019-08-02 20:18:00,575 1st St, New York City,NY,10001 +239489,AA Batteries (4-pack),1,3.84,2019-08-03 20:12:00,125 Sunset St, New York City,NY,10001 +239490,Apple Airpods Headphones,1,150.0,2019-08-07 19:30:00,774 4th St, Los Angeles,CA,90001 +239491,AA Batteries (4-pack),1,3.84,2019-08-08 14:09:00,783 Washington St, New York City,NY,10001 +239492,USB-C Charging Cable,1,11.95,2019-08-08 21:53:00,7 Jefferson St, Los Angeles,CA,90001 +239493,AA Batteries (4-pack),2,3.84,2019-08-08 23:13:00,191 Spruce St, New York City,NY,10001 +239494,34in Ultrawide Monitor,1,379.99,2019-08-28 17:16:00,600 13th St, Boston,MA,02215 +239495,Wired Headphones,2,11.99,2019-08-01 17:27:00,949 1st St, Los Angeles,CA,90001 +239496,AA Batteries (4-pack),1,3.84,2019-08-17 17:53:00,257 Walnut St, Los Angeles,CA,90001 +239497,AA Batteries (4-pack),2,3.84,2019-08-11 13:58:00,166 Forest St, Los Angeles,CA,90001 +239498,AA Batteries (4-pack),2,3.84,2019-08-19 21:07:00,961 Spruce St, San Francisco,CA,94016 +239499,Lightning Charging Cable,1,14.95,2019-08-13 23:12:00,949 Willow St, Los Angeles,CA,90001 +239500,20in Monitor,1,109.99,2019-08-20 18:52:00,101 Cedar St, Seattle,WA,98101 +239501,USB-C Charging Cable,1,11.95,2019-08-03 09:51:00,527 Church St, Seattle,WA,98101 +239502,20in Monitor,1,109.99,2019-08-09 14:50:00,935 Willow St, Seattle,WA,98101 +239503,USB-C Charging Cable,1,11.95,2019-08-21 02:21:00,879 Dogwood St, Atlanta,GA,30301 +239504,AA Batteries (4-pack),1,3.84,2019-08-21 18:34:00,453 Spruce St, Los Angeles,CA,90001 +239505,AA Batteries (4-pack),1,3.84,2019-08-15 23:07:00,190 Spruce St, Atlanta,GA,30301 +239506,AAA Batteries (4-pack),1,2.99,2019-08-18 13:05:00,919 8th St, New York City,NY,10001 +239507,27in FHD Monitor,1,149.99,2019-08-27 12:45:00,754 Meadow St, Portland,OR,97035 +239508,Apple Airpods Headphones,1,150.0,2019-08-15 18:19:00,908 Adams St, New York City,NY,10001 +239509,AA Batteries (4-pack),1,3.84,2019-08-04 20:14:00,516 8th St, Los Angeles,CA,90001 +239510,iPhone,1,700.0,2019-08-22 13:53:00,434 1st St, San Francisco,CA,94016 +239511,27in 4K Gaming Monitor,1,389.99,2019-08-06 12:44:00,15 Maple St, Seattle,WA,98101 +239512,USB-C Charging Cable,1,11.95,2019-08-07 04:46:00,375 Walnut St, Portland,OR,97035 +239513,USB-C Charging Cable,1,11.95,2019-08-20 13:47:00,841 Willow St, Portland,ME,04101 +239514,Macbook Pro Laptop,1,1700.0,2019-08-27 11:26:00,376 Church St, San Francisco,CA,94016 +239515,Bose SoundSport Headphones,1,99.99,2019-08-06 20:47:00,937 Washington St, Seattle,WA,98101 +239516,Bose SoundSport Headphones,1,99.99,2019-08-08 18:15:00,702 7th St, Atlanta,GA,30301 +239517,Vareebadd Phone,1,400.0,2019-08-21 15:25:00,320 West St, New York City,NY,10001 +239518,ThinkPad Laptop,1,999.99,2019-08-11 17:41:00,654 Wilson St, San Francisco,CA,94016 +239519,Vareebadd Phone,1,400.0,2019-08-25 16:10:00,892 Highland St, Boston,MA,02215 +239520,Wired Headphones,1,11.99,2019-08-03 18:08:00,642 South St, Boston,MA,02215 +239521,Bose SoundSport Headphones,1,99.99,2019-08-17 06:34:00,216 Lake St, Los Angeles,CA,90001 +239522,Flatscreen TV,1,300.0,2019-08-06 14:38:00,855 Meadow St, Portland,ME,04101 +239523,AAA Batteries (4-pack),2,2.99,2019-08-11 17:08:00,949 Forest St, Austin,TX,73301 +239524,Lightning Charging Cable,1,14.95,2019-08-01 11:35:00,90 Willow St, San Francisco,CA,94016 +239525,Lightning Charging Cable,1,14.95,2019-08-18 07:29:00,719 Wilson St, San Francisco,CA,94016 +239526,AAA Batteries (4-pack),1,2.99,2019-08-10 14:23:00,129 7th St, Austin,TX,73301 +239527,Apple Airpods Headphones,1,150.0,2019-08-03 12:03:00,351 Johnson St, San Francisco,CA,94016 +239528,34in Ultrawide Monitor,1,379.99,2019-08-06 11:54:00,889 2nd St, Portland,OR,97035 +239529,ThinkPad Laptop,1,999.99,2019-08-31 10:21:00,987 8th St, Dallas,TX,75001 +239530,Wired Headphones,1,11.99,2019-08-09 12:01:00,396 2nd St, Atlanta,GA,30301 +239531,27in FHD Monitor,1,149.99,2019-08-13 17:38:00,61 Pine St, Dallas,TX,75001 +239532,27in 4K Gaming Monitor,1,389.99,2019-08-27 18:29:00,555 Main St, Los Angeles,CA,90001 +239533,AAA Batteries (4-pack),1,2.99,2019-08-30 23:11:00,75 Jefferson St, Dallas,TX,75001 +239534,Macbook Pro Laptop,1,1700.0,2019-08-01 12:30:00,923 Johnson St, Austin,TX,73301 +239535,AAA Batteries (4-pack),2,2.99,2019-08-25 18:21:00,276 Church St, Atlanta,GA,30301 +239536,27in 4K Gaming Monitor,1,389.99,2019-08-20 14:35:00,881 Spruce St, San Francisco,CA,94016 +239537,AAA Batteries (4-pack),1,2.99,2019-08-08 09:16:00,823 Madison St, Atlanta,GA,30301 +239538,Flatscreen TV,1,300.0,2019-08-11 19:10:00,483 West St, Dallas,TX,75001 +239539,34in Ultrawide Monitor,1,379.99,2019-08-30 15:49:00,330 Forest St, San Francisco,CA,94016 +239540,AA Batteries (4-pack),1,3.84,2019-08-31 15:07:00,724 Forest St, New York City,NY,10001 +239541,Flatscreen TV,1,300.0,2019-08-08 14:59:00,20 2nd St, New York City,NY,10001 +239542,Lightning Charging Cable,1,14.95,2019-08-16 12:27:00,521 Park St, Boston,MA,02215 +239543,iPhone,1,700.0,2019-08-11 15:37:00,801 13th St, Dallas,TX,75001 +239544,34in Ultrawide Monitor,1,379.99,2019-08-02 13:10:00,801 5th St, San Francisco,CA,94016 +239545,27in FHD Monitor,1,149.99,2019-08-21 22:27:00,19 11th St, Los Angeles,CA,90001 +239546,AAA Batteries (4-pack),2,2.99,2019-08-06 13:01:00,90 Cherry St, San Francisco,CA,94016 +239547,AA Batteries (4-pack),1,3.84,2019-08-22 21:52:00,210 1st St, Austin,TX,73301 +239548,Bose SoundSport Headphones,1,99.99,2019-08-22 08:42:00,286 14th St, New York City,NY,10001 +239549,AAA Batteries (4-pack),1,2.99,2019-08-10 22:43:00,67 Hill St, Portland,OR,97035 +239550,Lightning Charging Cable,1,14.95,2019-08-15 09:48:00,855 Wilson St, Dallas,TX,75001 +239551,Lightning Charging Cable,1,14.95,2019-08-14 22:17:00,276 13th St, Dallas,TX,75001 +239552,AAA Batteries (4-pack),1,2.99,2019-08-16 12:38:00,69 Lincoln St, Seattle,WA,98101 +239553,AA Batteries (4-pack),2,3.84,2019-08-16 10:13:00,327 Spruce St, Portland,OR,97035 +239554,27in 4K Gaming Monitor,1,389.99,2019-08-03 12:16:00,678 Ridge St, Boston,MA,02215 +239555,USB-C Charging Cable,1,11.95,2019-08-31 18:30:00,446 8th St, Los Angeles,CA,90001 +239556,Bose SoundSport Headphones,1,99.99,2019-08-30 23:15:00,895 River St, Boston,MA,02215 +239557,20in Monitor,1,109.99,2019-08-27 20:10:00,722 9th St, Boston,MA,02215 +239558,Flatscreen TV,1,300.0,2019-08-13 13:17:00,197 Sunset St, San Francisco,CA,94016 +239559,USB-C Charging Cable,1,11.95,2019-08-20 11:20:00,120 Madison St, Boston,MA,02215 +239560,USB-C Charging Cable,1,11.95,2019-08-14 15:31:00,131 Lakeview St, Boston,MA,02215 +239561,Wired Headphones,1,11.99,2019-08-02 19:09:00,259 13th St, New York City,NY,10001 +239562,Apple Airpods Headphones,2,150.0,2019-08-04 13:02:00,362 Chestnut St, New York City,NY,10001 +239563,AA Batteries (4-pack),2,3.84,2019-08-21 10:23:00,643 West St, Portland,OR,97035 +239564,Macbook Pro Laptop,1,1700.0,2019-08-31 17:07:00,638 14th St, San Francisco,CA,94016 +239565,iPhone,1,700.0,2019-08-13 18:28:00,844 Park St, Austin,TX,73301 +239566,20in Monitor,1,109.99,2019-08-08 16:34:00,711 River St, New York City,NY,10001 +239567,Wired Headphones,1,11.99,2019-08-30 23:31:00,487 River St, Seattle,WA,98101 +239568,AAA Batteries (4-pack),2,2.99,2019-08-08 13:51:00,409 Forest St, Austin,TX,73301 +239568,20in Monitor,1,109.99,2019-08-08 13:51:00,409 Forest St, Austin,TX,73301 +239569,Google Phone,1,600.0,2019-08-10 01:21:00,577 Jefferson St, San Francisco,CA,94016 +239570,LG Washing Machine,1,600.0,2019-08-28 15:31:00,270 Johnson St, Austin,TX,73301 +239571,AA Batteries (4-pack),1,3.84,2019-08-02 22:14:00,908 North St, Seattle,WA,98101 +239572,AAA Batteries (4-pack),3,2.99,2019-08-19 13:51:00,904 Cherry St, Austin,TX,73301 +239573,Lightning Charging Cable,1,14.95,2019-08-17 15:29:00,931 Lake St, Dallas,TX,75001 +239574,AA Batteries (4-pack),1,3.84,2019-08-21 16:21:00,908 13th St, Austin,TX,73301 +239575,27in FHD Monitor,1,149.99,2019-08-03 06:04:00,564 Church St, Dallas,TX,75001 +239576,Wired Headphones,1,11.99,2019-08-18 21:02:00,99 Elm St, Austin,TX,73301 +239577,AAA Batteries (4-pack),1,2.99,2019-08-30 00:04:00,311 Meadow St, San Francisco,CA,94016 +239578,AAA Batteries (4-pack),1,2.99,2019-08-20 17:31:00,44 Madison St, Portland,OR,97035 +239579,Bose SoundSport Headphones,1,99.99,2019-08-03 14:38:00,506 13th St, Los Angeles,CA,90001 +239580,iPhone,1,700.0,2019-08-15 12:19:00,83 9th St, Seattle,WA,98101 +239581,27in 4K Gaming Monitor,1,389.99,2019-08-15 20:01:00,373 Church St, Los Angeles,CA,90001 +239582,Lightning Charging Cable,1,14.95,2019-08-28 11:13:00,647 Adams St, Seattle,WA,98101 +239583,AAA Batteries (4-pack),1,2.99,2019-08-29 06:13:00,248 Cherry St, Austin,TX,73301 +239584,Wired Headphones,1,11.99,2019-08-26 19:29:00,81 1st St, Portland,OR,97035 +239585,AA Batteries (4-pack),1,3.84,2019-08-06 09:02:00,653 Meadow St, Portland,OR,97035 +239586,Wired Headphones,1,11.99,2019-08-28 01:09:00,876 Sunset St, New York City,NY,10001 +239587,AA Batteries (4-pack),1,3.84,2019-08-10 12:43:00,291 7th St, San Francisco,CA,94016 +239588,Wired Headphones,2,11.99,2019-08-26 10:34:00,822 5th St, San Francisco,CA,94016 +239589,AA Batteries (4-pack),1,3.84,2019-08-02 13:21:00,164 Maple St, New York City,NY,10001 +239590,AAA Batteries (4-pack),1,2.99,2019-08-15 19:13:00,713 North St, New York City,NY,10001 +239591,34in Ultrawide Monitor,1,379.99,2019-08-15 14:05:00,793 Madison St, Seattle,WA,98101 +239592,Wired Headphones,1,11.99,2019-08-31 13:54:00,872 Jackson St, Atlanta,GA,30301 +239593,ThinkPad Laptop,1,999.99,2019-08-30 16:29:00,159 14th St, New York City,NY,10001 +239594,27in FHD Monitor,1,149.99,2019-08-28 14:45:00,29 Lake St, Boston,MA,02215 +239595,Wired Headphones,1,11.99,2019-08-18 20:27:00,359 6th St, San Francisco,CA,94016 +239596,AAA Batteries (4-pack),2,2.99,2019-08-06 08:32:00,79 Pine St, New York City,NY,10001 +239597,USB-C Charging Cable,1,11.95,2019-08-17 14:09:00,31 River St, New York City,NY,10001 +239598,Apple Airpods Headphones,1,150.0,2019-08-12 16:24:00,733 9th St, Dallas,TX,75001 +239599,Bose SoundSport Headphones,1,99.99,2019-08-09 19:02:00,304 River St, New York City,NY,10001 +239600,AA Batteries (4-pack),2,3.84,2019-08-13 13:49:00,354 Park St, Seattle,WA,98101 +239601,Apple Airpods Headphones,1,150.0,2019-08-24 08:24:00,770 Maple St, Austin,TX,73301 +239602,20in Monitor,1,109.99,2019-08-15 15:56:00,877 Wilson St, Atlanta,GA,30301 +239603,27in FHD Monitor,1,149.99,2019-08-02 09:47:00,354 Chestnut St, New York City,NY,10001 +239604,Macbook Pro Laptop,1,1700.0,2019-08-03 21:27:00,733 Lincoln St, San Francisco,CA,94016 +239605,Apple Airpods Headphones,1,150.0,2019-08-08 15:29:00,647 4th St, Los Angeles,CA,90001 +239606,Apple Airpods Headphones,1,150.0,2019-08-30 18:40:00,596 7th St, Austin,TX,73301 +239607,Lightning Charging Cable,1,14.95,2019-08-18 17:31:00,936 Johnson St, Atlanta,GA,30301 +239608,AAA Batteries (4-pack),1,2.99,2019-08-28 22:50:00,97 River St, Portland,OR,97035 +239609,Lightning Charging Cable,1,14.95,2019-08-02 21:07:00,656 Ridge St, Seattle,WA,98101 +239610,Wired Headphones,1,11.99,2019-08-27 16:08:00,126 1st St, Seattle,WA,98101 +239611,Macbook Pro Laptop,1,1700.0,2019-08-14 08:03:00,817 Cedar St, Los Angeles,CA,90001 +239612,AA Batteries (4-pack),1,3.84,2019-08-10 17:07:00,704 Park St, Los Angeles,CA,90001 +239613,AA Batteries (4-pack),2,3.84,2019-08-22 15:24:00,846 Jefferson St, Atlanta,GA,30301 +239614,27in 4K Gaming Monitor,1,389.99,2019-08-19 12:46:00,798 Lakeview St, New York City,NY,10001 +239615,Flatscreen TV,1,300.0,2019-08-24 21:49:00,454 Highland St, San Francisco,CA,94016 +239616,Macbook Pro Laptop,1,1700.0,2019-08-21 09:49:00,88 Chestnut St, Dallas,TX,75001 +239617,AAA Batteries (4-pack),2,2.99,2019-08-15 07:40:00,471 Sunset St, Seattle,WA,98101 +239618,iPhone,1,700.0,2019-08-19 14:04:00,549 Jefferson St, Seattle,WA,98101 +239619,AAA Batteries (4-pack),1,2.99,2019-08-26 19:39:00,485 Lake St, New York City,NY,10001 +239620,USB-C Charging Cable,1,11.95,2019-08-16 20:02:00,127 Center St, San Francisco,CA,94016 +239621,27in 4K Gaming Monitor,1,389.99,2019-08-31 17:15:00,691 Willow St, San Francisco,CA,94016 +239622,34in Ultrawide Monitor,1,379.99,2019-08-02 13:56:00,700 Meadow St, Boston,MA,02215 +239623,Wired Headphones,1,11.99,2019-08-21 11:41:00,768 7th St, New York City,NY,10001 +239624,AA Batteries (4-pack),1,3.84,2019-08-27 14:48:00,72 Johnson St, Atlanta,GA,30301 +239625,AA Batteries (4-pack),2,3.84,2019-08-25 19:12:00,526 Walnut St, Dallas,TX,75001 +239626,USB-C Charging Cable,1,11.95,2019-08-27 09:06:00,652 Dogwood St, Los Angeles,CA,90001 +239627,AA Batteries (4-pack),2,3.84,2019-08-04 13:54:00,8 13th St, Dallas,TX,75001 +239628,USB-C Charging Cable,1,11.95,2019-08-23 06:26:00,188 River St, Portland,ME,04101 +239629,USB-C Charging Cable,1,11.95,2019-08-26 09:46:00,742 Park St, Los Angeles,CA,90001 +239630,USB-C Charging Cable,1,11.95,2019-08-27 11:42:00,660 Adams St, Portland,OR,97035 +239631,Apple Airpods Headphones,1,150.0,2019-08-29 11:51:00,497 Highland St, New York City,NY,10001 +239632,AAA Batteries (4-pack),1,2.99,2019-08-09 21:12:00,58 6th St, New York City,NY,10001 +239633,LG Washing Machine,1,600.0,2019-08-16 18:41:00,542 12th St, Seattle,WA,98101 +239634,27in 4K Gaming Monitor,1,389.99,2019-08-07 17:13:00,553 Dogwood St, San Francisco,CA,94016 +239635,AAA Batteries (4-pack),3,2.99,2019-08-09 21:02:00,432 10th St, New York City,NY,10001 +239636,Bose SoundSport Headphones,1,99.99,2019-08-30 12:23:00,585 Maple St, Dallas,TX,75001 +239637,27in FHD Monitor,1,149.99,2019-08-28 14:25:00,822 Park St, Los Angeles,CA,90001 +239638,Apple Airpods Headphones,1,150.0,2019-08-11 16:49:00,225 Jefferson St, San Francisco,CA,94016 +239639,Lightning Charging Cable,1,14.95,2019-08-26 11:10:00,961 10th St, Dallas,TX,75001 +239640,USB-C Charging Cable,2,11.95,2019-08-13 12:32:00,62 Cedar St, San Francisco,CA,94016 +239641,USB-C Charging Cable,1,11.95,2019-08-30 15:38:00,911 West St, Boston,MA,02215 +239642,Wired Headphones,1,11.99,2019-08-25 14:14:00,400 West St, San Francisco,CA,94016 +239643,Lightning Charging Cable,1,14.95,2019-08-27 11:09:00,872 River St, New York City,NY,10001 +239644,Apple Airpods Headphones,1,150.0,2019-08-11 15:53:00,326 South St, Portland,OR,97035 +239645,LG Washing Machine,1,600.0,2019-08-06 20:54:00,795 Dogwood St, San Francisco,CA,94016 +239646,AAA Batteries (4-pack),1,2.99,2019-08-15 18:44:00,744 Lake St, Boston,MA,02215 +239647,Lightning Charging Cable,1,14.95,2019-08-22 08:33:00,899 Meadow St, San Francisco,CA,94016 +239648,27in FHD Monitor,1,149.99,2019-08-08 03:23:00,961 Lakeview St, Portland,ME,04101 +239649,34in Ultrawide Monitor,1,379.99,2019-08-10 02:57:00,514 Madison St, Dallas,TX,75001 +239650,Vareebadd Phone,1,400.0,2019-08-02 22:05:00,241 14th St, San Francisco,CA,94016 +239651,Wired Headphones,1,11.99,2019-08-06 20:21:00,797 11th St, Austin,TX,73301 +239652,27in 4K Gaming Monitor,1,389.99,2019-08-04 09:56:00,935 9th St, San Francisco,CA,94016 +239653,AAA Batteries (4-pack),1,2.99,2019-08-15 22:51:00,275 Johnson St, San Francisco,CA,94016 +239654,Apple Airpods Headphones,1,150.0,2019-08-15 22:26:00,259 Willow St, Boston,MA,02215 +239655,Wired Headphones,1,11.99,2019-08-09 22:57:00,732 12th St, Los Angeles,CA,90001 +239656,Google Phone,1,600.0,2019-08-15 11:40:00,432 7th St, San Francisco,CA,94016 +239657,Lightning Charging Cable,2,14.95,2019-08-13 19:31:00,321 Church St, Atlanta,GA,30301 +239658,Lightning Charging Cable,1,14.95,2019-08-05 22:15:00,275 Willow St, Austin,TX,73301 +239659,AA Batteries (4-pack),1,3.84,2019-08-05 23:30:00,383 Center St, Los Angeles,CA,90001 +239659,AA Batteries (4-pack),4,3.84,2019-08-05 23:30:00,383 Center St, Los Angeles,CA,90001 +239660,Lightning Charging Cable,1,14.95,2019-08-19 17:53:00,89 Center St, Dallas,TX,75001 +239661,Wired Headphones,1,11.99,2019-08-22 06:32:00,245 Jefferson St, Dallas,TX,75001 +239662,Apple Airpods Headphones,1,150.0,2019-08-27 15:54:00,463 Park St, Atlanta,GA,30301 +239663,Apple Airpods Headphones,1,150.0,2019-08-28 06:59:00,274 Johnson St, San Francisco,CA,94016 +239664,Wired Headphones,1,11.99,2019-08-22 23:09:00,14 Center St, San Francisco,CA,94016 +239665,Wired Headphones,1,11.99,2019-08-01 12:36:00,728 Center St, New York City,NY,10001 +239666,Bose SoundSport Headphones,1,99.99,2019-08-29 15:42:00,507 Highland St, Portland,OR,97035 +239667,AAA Batteries (4-pack),1,2.99,2019-08-19 16:57:00,122 13th St, Boston,MA,02215 +239668,27in 4K Gaming Monitor,1,389.99,2019-08-28 14:54:00,538 Sunset St, San Francisco,CA,94016 +239669,iPhone,1,700.0,2019-08-03 20:17:00,551 Cherry St, Los Angeles,CA,90001 +239670,34in Ultrawide Monitor,1,379.99,2019-08-01 11:01:00,309 4th St, Boston,MA,02215 +239671,USB-C Charging Cable,1,11.95,2019-08-06 18:16:00,685 Hill St, Portland,OR,97035 +239672,iPhone,1,700.0,2019-08-25 11:53:00,857 Center St, Los Angeles,CA,90001 +239673,Lightning Charging Cable,1,14.95,2019-08-15 21:51:00,710 Walnut St, Boston,MA,02215 +239674,Lightning Charging Cable,1,14.95,2019-08-13 21:25:00,586 8th St, Dallas,TX,75001 +239675,Apple Airpods Headphones,1,150.0,2019-08-23 20:47:00,296 5th St, San Francisco,CA,94016 +239676,27in 4K Gaming Monitor,1,389.99,2019-08-14 20:08:00,437 Lincoln St, Portland,ME,04101 +239677,Bose SoundSport Headphones,1,99.99,2019-08-31 19:37:00,873 Cedar St, San Francisco,CA,94016 +239678,Lightning Charging Cable,1,14.95,2019-08-21 18:46:00,911 Ridge St, Seattle,WA,98101 +239679,Wired Headphones,2,11.99,2019-08-01 15:42:00,757 Center St, Seattle,WA,98101 +239680,Apple Airpods Headphones,1,150.0,2019-08-20 20:30:00,564 Center St, Boston,MA,02215 +239681,Bose SoundSport Headphones,1,99.99,2019-08-09 09:57:00,173 Park St, Seattle,WA,98101 +239682,AAA Batteries (4-pack),1,2.99,2019-08-22 16:01:00,620 Washington St, Seattle,WA,98101 +239683,Wired Headphones,1,11.99,2019-08-15 03:20:00,735 Forest St, Boston,MA,02215 +239684,Vareebadd Phone,1,400.0,2019-08-08 19:45:00,388 Adams St, San Francisco,CA,94016 +239685,Vareebadd Phone,1,400.0,2019-08-01 20:55:00,85 9th St, New York City,NY,10001 +239686,AAA Batteries (4-pack),2,2.99,2019-08-06 07:43:00,593 South St, Dallas,TX,75001 +239687,USB-C Charging Cable,1,11.95,2019-08-08 08:56:00,910 Maple St, San Francisco,CA,94016 +239688,Google Phone,1,600.0,2019-08-18 19:59:00,473 14th St, Los Angeles,CA,90001 +239689,Lightning Charging Cable,1,14.95,2019-08-31 09:24:00,879 Jackson St, Boston,MA,02215 +239690,Bose SoundSport Headphones,1,99.99,2019-08-07 17:39:00,940 14th St, Portland,OR,97035 +239691,Apple Airpods Headphones,1,150.0,2019-08-22 19:22:00,516 Spruce St, Los Angeles,CA,90001 +239692,AAA Batteries (4-pack),1,2.99,2019-08-12 08:56:00,407 Cherry St, Los Angeles,CA,90001 +239693,AA Batteries (4-pack),1,3.84,2019-08-15 22:48:00,353 Main St, New York City,NY,10001 +239694,USB-C Charging Cable,1,11.95,2019-08-31 13:23:00,237 Main St, Boston,MA,02215 +239695,Wired Headphones,2,11.99,2019-08-01 18:46:00,712 Meadow St, Atlanta,GA,30301 +239696,AA Batteries (4-pack),1,3.84,2019-08-11 08:46:00,830 Washington St, Atlanta,GA,30301 +239697,USB-C Charging Cable,1,11.95,2019-08-25 23:10:00,901 Hill St, San Francisco,CA,94016 +239698,Google Phone,1,600.0,2019-08-14 14:28:00,483 Chestnut St, Los Angeles,CA,90001 +239699,Macbook Pro Laptop,1,1700.0,2019-08-04 23:14:00,150 Willow St, Dallas,TX,75001 +239700,Apple Airpods Headphones,1,150.0,2019-08-01 19:40:00,462 Cedar St, New York City,NY,10001 +239701,27in 4K Gaming Monitor,1,389.99,2019-08-18 10:35:00,741 5th St, Austin,TX,73301 +239702,Bose SoundSport Headphones,1,99.99,2019-08-08 19:06:00,319 Hill St, Dallas,TX,75001 +239703,Macbook Pro Laptop,1,1700.0,2019-08-22 18:04:00,618 7th St, Seattle,WA,98101 +239704,Bose SoundSport Headphones,1,99.99,2019-08-27 16:05:00,842 Chestnut St, New York City,NY,10001 +239705,34in Ultrawide Monitor,1,379.99,2019-08-17 14:25:00,345 Center St, San Francisco,CA,94016 +239706,34in Ultrawide Monitor,1,379.99,2019-08-29 13:36:00,616 Hill St, Los Angeles,CA,90001 +239707,LG Washing Machine,1,600.0,2019-08-10 22:55:00,330 Willow St, Portland,OR,97035 +239708,Bose SoundSport Headphones,1,99.99,2019-08-05 13:54:00,102 Cherry St, Seattle,WA,98101 +239709,Bose SoundSport Headphones,1,99.99,2019-08-09 08:06:00,352 Dogwood St, San Francisco,CA,94016 +239710,34in Ultrawide Monitor,1,379.99,2019-08-30 18:27:00,862 Maple St, San Francisco,CA,94016 +239711,34in Ultrawide Monitor,1,379.99,2019-08-28 11:14:00,330 Hill St, Seattle,WA,98101 +239712,34in Ultrawide Monitor,1,379.99,2019-08-25 10:51:00,758 4th St, San Francisco,CA,94016 +239713,USB-C Charging Cable,1,11.95,2019-08-24 14:05:00,667 8th St, Austin,TX,73301 +239714,USB-C Charging Cable,1,11.95,2019-08-24 10:24:00,470 Madison St, Seattle,WA,98101 +239715,Google Phone,1,600.0,2019-08-19 21:29:00,478 Cedar St, San Francisco,CA,94016 +239716,Flatscreen TV,1,300.0,2019-08-20 01:37:00,454 6th St, Los Angeles,CA,90001 +239717,iPhone,1,700.0,2019-08-04 18:56:00,425 9th St, New York City,NY,10001 +239718,Bose SoundSport Headphones,1,99.99,2019-08-21 08:02:00,558 River St, Dallas,TX,75001 +239719,AA Batteries (4-pack),1,3.84,2019-08-30 21:33:00,557 West St, New York City,NY,10001 +239720,USB-C Charging Cable,1,11.95,2019-08-28 12:44:00,32 Ridge St, Los Angeles,CA,90001 +239721,AA Batteries (4-pack),1,3.84,2019-08-27 11:03:00,891 Sunset St, New York City,NY,10001 +239722,USB-C Charging Cable,1,11.95,2019-08-12 14:20:00,139 Wilson St, San Francisco,CA,94016 +239723,USB-C Charging Cable,1,11.95,2019-08-21 14:30:00,422 Main St, New York City,NY,10001 +239724,Macbook Pro Laptop,1,1700.0,2019-08-01 15:07:00,779 10th St, New York City,NY,10001 +239725,AAA Batteries (4-pack),4,2.99,2019-08-26 15:54:00,381 Meadow St, New York City,NY,10001 +239726,27in 4K Gaming Monitor,1,389.99,2019-08-23 16:20:00,83 8th St, Seattle,WA,98101 +239727,USB-C Charging Cable,1,11.95,2019-08-27 11:53:00,638 Meadow St, Boston,MA,02215 +239728,AAA Batteries (4-pack),1,2.99,2019-08-31 18:19:00,14 Elm St, San Francisco,CA,94016 +239729,USB-C Charging Cable,1,11.95,2019-08-16 11:23:00,280 13th St, Atlanta,GA,30301 +239730,Macbook Pro Laptop,1,1700.0,2019-08-29 06:40:00,63 9th St, Los Angeles,CA,90001 +239731,iPhone,1,700.0,2019-08-03 20:16:00,605 Main St, San Francisco,CA,94016 +239732,Lightning Charging Cable,1,14.95,2019-08-31 16:33:00,749 Main St, Portland,OR,97035 +239733,AA Batteries (4-pack),1,3.84,2019-08-14 14:13:00,494 Main St, Seattle,WA,98101 +239734,USB-C Charging Cable,1,11.95,2019-08-10 14:09:00,933 Hill St, Seattle,WA,98101 +239735,AA Batteries (4-pack),2,3.84,2019-08-02 16:22:00,979 Forest St, Los Angeles,CA,90001 +239736,Apple Airpods Headphones,1,150.0,2019-08-04 22:57:00,829 Chestnut St, Seattle,WA,98101 +239737,Apple Airpods Headphones,1,150.0,2019-08-08 11:16:00,798 Cedar St, Portland,OR,97035 +239737,USB-C Charging Cable,1,11.95,2019-08-08 11:16:00,798 Cedar St, Portland,OR,97035 +239738,27in FHD Monitor,1,149.99,2019-08-25 14:54:00,557 Jefferson St, San Francisco,CA,94016 +239739,iPhone,1,700.0,2019-08-07 15:47:00,786 Jackson St, Los Angeles,CA,90001 +239739,Apple Airpods Headphones,1,150.0,2019-08-07 15:47:00,786 Jackson St, Los Angeles,CA,90001 +239740,Lightning Charging Cable,1,14.95,2019-08-10 14:27:00,444 Washington St, Dallas,TX,75001 +239741,Lightning Charging Cable,1,14.95,2019-08-03 16:46:00,145 12th St, Portland,OR,97035 +239742,Lightning Charging Cable,1,14.95,2019-08-15 15:56:00,465 Maple St, Dallas,TX,75001 +239742,iPhone,1,700.0,2019-08-15 15:56:00,465 Maple St, Dallas,TX,75001 +239743,AA Batteries (4-pack),1,3.84,2019-08-12 10:06:00,659 Cherry St, Portland,OR,97035 +239744,AAA Batteries (4-pack),1,2.99,2019-08-16 21:50:00,945 Willow St, San Francisco,CA,94016 +239745,AA Batteries (4-pack),2,3.84,2019-08-06 19:01:00,164 Wilson St, Portland,ME,04101 +239746,Wired Headphones,1,11.99,2019-08-09 17:50:00,728 Spruce St, San Francisco,CA,94016 +239747,AAA Batteries (4-pack),1,2.99,2019-08-07 20:06:00,562 12th St, Boston,MA,02215 +239748,Wired Headphones,1,11.99,2019-08-06 21:34:00,343 Park St, San Francisco,CA,94016 +239749,Macbook Pro Laptop,1,1700.0,2019-08-05 15:08:00,671 1st St, San Francisco,CA,94016 +239750,Wired Headphones,1,11.99,2019-08-02 00:51:00,12 South St, Los Angeles,CA,90001 +239751,27in FHD Monitor,1,149.99,2019-08-09 12:47:00,583 Hickory St, San Francisco,CA,94016 +239752,USB-C Charging Cable,1,11.95,2019-08-11 10:59:00,518 2nd St, San Francisco,CA,94016 +239753,iPhone,1,700.0,2019-08-31 12:59:00,110 Walnut St, Boston,MA,02215 +239753,Lightning Charging Cable,1,14.95,2019-08-31 12:59:00,110 Walnut St, Boston,MA,02215 +239754,Lightning Charging Cable,1,14.95,2019-08-09 23:24:00,73 Maple St, San Francisco,CA,94016 +239755,Lightning Charging Cable,1,14.95,2019-08-05 23:11:00,207 Chestnut St, New York City,NY,10001 +239756,Lightning Charging Cable,1,14.95,2019-08-25 05:48:00,63 Main St, Dallas,TX,75001 +239757,27in 4K Gaming Monitor,1,389.99,2019-08-27 14:54:00,19 Elm St, Portland,ME,04101 +239758,iPhone,1,700.0,2019-08-28 07:25:00,625 Wilson St, San Francisco,CA,94016 +239759,Google Phone,1,600.0,2019-08-23 18:30:00,543 Cherry St, New York City,NY,10001 +239760,AA Batteries (4-pack),1,3.84,2019-08-24 12:25:00,796 Chestnut St, San Francisco,CA,94016 +239761,Wired Headphones,1,11.99,2019-08-02 16:24:00,713 Washington St, New York City,NY,10001 +239762,Lightning Charging Cable,2,14.95,2019-08-11 15:26:00,925 Lake St, Portland,OR,97035 +239763,27in FHD Monitor,1,149.99,2019-08-11 21:43:00,946 Chestnut St, Boston,MA,02215 +239764,AA Batteries (4-pack),1,3.84,2019-08-23 11:44:00,839 Adams St, New York City,NY,10001 +239765,Wired Headphones,1,11.99,2019-08-13 10:21:00,528 7th St, Dallas,TX,75001 +239766,34in Ultrawide Monitor,1,379.99,2019-08-05 10:31:00,629 Ridge St, Boston,MA,02215 +239767,AA Batteries (4-pack),1,3.84,2019-08-17 19:51:00,182 North St, Los Angeles,CA,90001 +239768,AA Batteries (4-pack),2,3.84,2019-08-26 01:51:00,459 8th St, Dallas,TX,75001 +239769,Lightning Charging Cable,1,14.95,2019-08-19 07:20:00,376 Cherry St, Los Angeles,CA,90001 +239770,Bose SoundSport Headphones,1,99.99,2019-08-27 11:32:00,877 South St, Austin,TX,73301 +239771,Bose SoundSport Headphones,1,99.99,2019-08-29 23:08:00,947 10th St, New York City,NY,10001 +239772,Bose SoundSport Headphones,1,99.99,2019-08-23 15:04:00,57 2nd St, New York City,NY,10001 +239773,Lightning Charging Cable,1,14.95,2019-08-26 23:43:00,152 Park St, Austin,TX,73301 +239774,Bose SoundSport Headphones,1,99.99,2019-08-26 20:18:00,221 6th St, Dallas,TX,75001 +239775,Lightning Charging Cable,1,14.95,2019-08-12 15:52:00,590 Elm St, San Francisco,CA,94016 +239776,Flatscreen TV,1,300.0,2019-08-25 11:59:00,748 Ridge St, San Francisco,CA,94016 +239777,AA Batteries (4-pack),3,3.84,2019-08-14 18:05:00,314 Walnut St, Boston,MA,02215 +239778,USB-C Charging Cable,1,11.95,2019-08-28 23:24:00,297 West St, Boston,MA,02215 +239779,34in Ultrawide Monitor,1,379.99,2019-08-09 09:00:00,372 5th St, Boston,MA,02215 +239780,Macbook Pro Laptop,1,1700.0,2019-08-10 18:37:00,251 Meadow St, Atlanta,GA,30301 +239781,Apple Airpods Headphones,1,150.0,2019-08-12 20:09:00,780 7th St, New York City,NY,10001 +239782,Wired Headphones,1,11.99,2019-08-24 08:34:00,533 Wilson St, Seattle,WA,98101 +239783,USB-C Charging Cable,1,11.95,2019-08-26 09:32:00,153 2nd St, Portland,OR,97035 +239784,AAA Batteries (4-pack),1,2.99,2019-08-10 10:53:00,814 8th St, San Francisco,CA,94016 +239785,Wired Headphones,1,11.99,2019-08-16 11:40:00,401 14th St, Boston,MA,02215 +239786,USB-C Charging Cable,1,11.95,2019-08-27 12:40:00,193 South St, New York City,NY,10001 +239787,AAA Batteries (4-pack),1,2.99,2019-08-18 14:53:00,925 Walnut St, Dallas,TX,75001 +239788,USB-C Charging Cable,1,11.95,2019-08-12 21:53:00,876 Adams St, San Francisco,CA,94016 +239789,USB-C Charging Cable,1,11.95,2019-08-04 15:22:00,948 13th St, Boston,MA,02215 +239790,Lightning Charging Cable,2,14.95,2019-08-30 19:18:00,799 11th St, San Francisco,CA,94016 +239791,27in FHD Monitor,1,149.99,2019-08-31 19:24:00,103 Jackson St, New York City,NY,10001 +239792,Apple Airpods Headphones,1,150.0,2019-08-11 14:10:00,361 Park St, Boston,MA,02215 +239793,Bose SoundSport Headphones,1,99.99,2019-08-12 14:57:00,41 9th St, New York City,NY,10001 +239794,Bose SoundSport Headphones,1,99.99,2019-08-22 07:32:00,896 Park St, Los Angeles,CA,90001 +239795,AAA Batteries (4-pack),1,2.99,2019-08-20 22:38:00,771 8th St, Dallas,TX,75001 +239796,Bose SoundSport Headphones,1,99.99,2019-08-20 19:28:00,840 8th St, Boston,MA,02215 +239797,Wired Headphones,1,11.99,2019-08-22 13:41:00,591 Church St, Austin,TX,73301 +239798,AAA Batteries (4-pack),1,2.99,2019-08-30 10:49:00,398 Jefferson St, Atlanta,GA,30301 +239799,27in 4K Gaming Monitor,1,389.99,2019-08-17 15:35:00,616 Walnut St, San Francisco,CA,94016 +239800,Bose SoundSport Headphones,1,99.99,2019-08-16 22:26:00,420 7th St, Boston,MA,02215 +239801,iPhone,1,700.0,2019-08-09 19:15:00,511 8th St, San Francisco,CA,94016 +239802,iPhone,1,700.0,2019-08-21 09:53:00,729 Wilson St, San Francisco,CA,94016 +239803,AAA Batteries (4-pack),1,2.99,2019-08-09 06:23:00,624 Lincoln St, Portland,OR,97035 +239804,AA Batteries (4-pack),2,3.84,2019-08-09 13:34:00,157 Spruce St, San Francisco,CA,94016 +239805,27in 4K Gaming Monitor,1,389.99,2019-08-25 14:33:00,219 Lincoln St, New York City,NY,10001 +239806,AAA Batteries (4-pack),1,2.99,2019-08-11 13:17:00,289 Jackson St, San Francisco,CA,94016 +239807,Lightning Charging Cable,1,14.95,2019-08-28 08:43:00,208 5th St, Boston,MA,02215 +239808,Lightning Charging Cable,1,14.95,2019-08-13 19:27:00,749 Sunset St, San Francisco,CA,94016 +239809,Apple Airpods Headphones,1,150.0,2019-08-16 22:31:00,570 6th St, Boston,MA,02215 +239810,AA Batteries (4-pack),2,3.84,2019-08-09 19:38:00,365 Lakeview St, San Francisco,CA,94016 +239811,27in FHD Monitor,1,149.99,2019-08-02 20:10:00,246 1st St, New York City,NY,10001 +239812,20in Monitor,1,109.99,2019-08-03 12:13:00,838 Hill St, New York City,NY,10001 +239813,Macbook Pro Laptop,1,1700.0,2019-08-31 15:35:00,837 Washington St, Los Angeles,CA,90001 +239814,Apple Airpods Headphones,1,150.0,2019-08-22 19:10:00,524 Center St, Los Angeles,CA,90001 +239815,Wired Headphones,1,11.99,2019-08-27 19:36:00,266 Forest St, Portland,OR,97035 +239816,Apple Airpods Headphones,1,150.0,2019-08-09 13:06:00,692 Walnut St, San Francisco,CA,94016 +239817,AA Batteries (4-pack),1,3.84,2019-08-12 22:57:00,247 Johnson St, San Francisco,CA,94016 +239818,Lightning Charging Cable,1,14.95,2019-08-07 02:12:00,593 8th St, Dallas,TX,75001 +239819,AAA Batteries (4-pack),1,2.99,2019-08-07 23:07:00,812 Sunset St, Boston,MA,02215 +239820,AA Batteries (4-pack),2,3.84,2019-08-05 16:16:00,732 Forest St, San Francisco,CA,94016 +239821,34in Ultrawide Monitor,1,379.99,2019-08-19 11:38:00,25 Ridge St, Boston,MA,02215 +239822,Lightning Charging Cable,1,14.95,2019-08-28 03:05:00,924 Washington St, Los Angeles,CA,90001 +239823,Apple Airpods Headphones,1,150.0,2019-08-18 12:06:00,351 12th St, Dallas,TX,75001 +239824,AA Batteries (4-pack),1,3.84,2019-08-22 18:24:00,510 2nd St, Boston,MA,02215 +239825,iPhone,1,700.0,2019-08-01 10:17:00,740 Church St, Atlanta,GA,30301 +239826,Google Phone,1,600.0,2019-08-31 13:13:00,621 Hill St, Austin,TX,73301 +239827,AA Batteries (4-pack),1,3.84,2019-08-20 18:56:00,296 Elm St, New York City,NY,10001 +239828,AA Batteries (4-pack),1,3.84,2019-08-18 16:30:00,323 Pine St, Boston,MA,02215 +239829,ThinkPad Laptop,1,999.99,2019-08-14 18:08:00,508 Lincoln St, San Francisco,CA,94016 +239830,AAA Batteries (4-pack),1,2.99,2019-08-31 08:04:00,376 Main St, San Francisco,CA,94016 +239831,Flatscreen TV,1,300.0,2019-08-07 12:45:00,830 Lincoln St, Portland,OR,97035 +239832,Wired Headphones,1,11.99,2019-08-10 22:50:00,458 Madison St, Los Angeles,CA,90001 +239833,Google Phone,1,600.0,2019-08-30 14:08:00,560 12th St, San Francisco,CA,94016 +239834,USB-C Charging Cable,1,11.95,2019-08-06 10:04:00,600 South St, Portland,OR,97035 +239835,Wired Headphones,1,11.99,2019-08-07 19:15:00,544 Adams St, Seattle,WA,98101 +239836,Vareebadd Phone,1,400.0,2019-08-28 18:01:00,994 Hill St, San Francisco,CA,94016 +239837,Wired Headphones,1,11.99,2019-08-14 17:41:00,154 Cherry St, San Francisco,CA,94016 +239838,Lightning Charging Cable,1,14.95,2019-08-07 23:22:00,139 Cherry St, San Francisco,CA,94016 +239839,Apple Airpods Headphones,1,150.0,2019-08-13 10:37:00,812 Wilson St, New York City,NY,10001 +239840,Macbook Pro Laptop,1,1700.0,2019-08-05 13:09:00,644 River St, New York City,NY,10001 +239841,USB-C Charging Cable,1,11.95,2019-08-11 09:34:00,36 Hickory St, Los Angeles,CA,90001 +239842,Lightning Charging Cable,1,14.95,2019-08-20 08:02:00,183 Jefferson St, Dallas,TX,75001 +239843,Lightning Charging Cable,1,14.95,2019-08-29 09:33:00,433 4th St, San Francisco,CA,94016 +239844,27in 4K Gaming Monitor,1,389.99,2019-08-21 06:45:00,53 River St, San Francisco,CA,94016 +239845,AAA Batteries (4-pack),2,2.99,2019-08-12 21:30:00,432 Main St, Austin,TX,73301 +239846,iPhone,1,700.0,2019-08-17 13:32:00,421 2nd St, Los Angeles,CA,90001 +239847,Lightning Charging Cable,1,14.95,2019-08-21 09:30:00,105 Maple St, Dallas,TX,75001 +239848,27in FHD Monitor,1,149.99,2019-08-29 00:03:00,107 West St, Austin,TX,73301 +239849,27in FHD Monitor,1,149.99,2019-08-24 16:48:00,320 South St, Atlanta,GA,30301 +239850,USB-C Charging Cable,1,11.95,2019-08-03 17:19:00,172 Spruce St, New York City,NY,10001 +239851,Apple Airpods Headphones,1,150.0,2019-08-08 21:41:00,561 Wilson St, Seattle,WA,98101 +239852,AAA Batteries (4-pack),1,2.99,2019-08-07 12:22:00,934 West St, Los Angeles,CA,90001 +239853,USB-C Charging Cable,2,11.95,2019-08-29 18:39:00,214 Main St, New York City,NY,10001 +239854,27in 4K Gaming Monitor,1,389.99,2019-08-10 14:37:00,204 Washington St, San Francisco,CA,94016 +239855,USB-C Charging Cable,1,11.95,2019-08-14 11:53:00,586 Lakeview St, Boston,MA,02215 +239856,iPhone,1,700.0,2019-08-11 14:45:00,483 River St, Atlanta,GA,30301 +239857,Apple Airpods Headphones,1,150.0,2019-08-11 21:21:00,376 8th St, Atlanta,GA,30301 +239858,USB-C Charging Cable,1,11.95,2019-08-06 12:56:00,826 Cherry St, New York City,NY,10001 +239859,USB-C Charging Cable,1,11.95,2019-08-20 10:02:00,239 Chestnut St, Los Angeles,CA,90001 +239860,USB-C Charging Cable,1,11.95,2019-08-05 14:12:00,185 Chestnut St, Boston,MA,02215 +239861,USB-C Charging Cable,1,11.95,2019-08-05 18:29:00,900 Wilson St, San Francisco,CA,94016 +239862,AAA Batteries (4-pack),1,2.99,2019-08-23 20:14:00,850 Madison St, San Francisco,CA,94016 +239863,Wired Headphones,1,11.99,2019-08-02 10:49:00,166 Dogwood St, Atlanta,GA,30301 +239864,Wired Headphones,1,11.99,2019-08-17 16:21:00,736 West St, New York City,NY,10001 +239865,Flatscreen TV,1,300.0,2019-08-02 14:25:00,972 Lakeview St, Portland,OR,97035 +239866,Lightning Charging Cable,1,14.95,2019-08-29 10:05:00,797 14th St, Boston,MA,02215 +239867,AA Batteries (4-pack),1,3.84,2019-08-27 22:03:00,920 Ridge St, San Francisco,CA,94016 +239868,34in Ultrawide Monitor,1,379.99,2019-08-05 18:05:00,83 West St, San Francisco,CA,94016 +239869,iPhone,1,700.0,2019-08-06 21:59:00,554 Adams St, San Francisco,CA,94016 +239870,Google Phone,1,600.0,2019-08-09 12:00:00,578 Church St, Los Angeles,CA,90001 +239871,AAA Batteries (4-pack),1,2.99,2019-08-22 11:12:00,408 Spruce St, New York City,NY,10001 +239872,Lightning Charging Cable,1,14.95,2019-08-08 09:13:00,336 Meadow St, Los Angeles,CA,90001 +239873,Flatscreen TV,1,300.0,2019-08-13 15:01:00,391 Wilson St, Austin,TX,73301 +239874,Flatscreen TV,1,300.0,2019-08-24 09:43:00,848 Hickory St, New York City,NY,10001 +239875,USB-C Charging Cable,1,11.95,2019-08-30 13:58:00,557 7th St, Seattle,WA,98101 +239876,Lightning Charging Cable,1,14.95,2019-08-06 21:24:00,193 10th St, Los Angeles,CA,90001 +239877,Apple Airpods Headphones,1,150.0,2019-08-09 10:13:00,136 River St, Portland,OR,97035 +239878,27in 4K Gaming Monitor,1,389.99,2019-08-25 17:08:00,37 Lincoln St, Seattle,WA,98101 +239879,Apple Airpods Headphones,1,150.0,2019-08-29 12:21:00,294 Lakeview St, Dallas,TX,75001 +239880,Google Phone,1,600.0,2019-08-02 18:33:00,759 11th St, San Francisco,CA,94016 +239881,AAA Batteries (4-pack),1,2.99,2019-08-01 16:06:00,188 Wilson St, New York City,NY,10001 +239882,iPhone,1,700.0,2019-08-23 23:27:00,579 North St, Portland,OR,97035 +239883,iPhone,1,700.0,2019-08-04 06:45:00,268 Main St, New York City,NY,10001 +239883,Lightning Charging Cable,1,14.95,2019-08-04 06:45:00,268 Main St, New York City,NY,10001 +239884,Apple Airpods Headphones,1,150.0,2019-08-21 17:39:00,327 Hill St, Austin,TX,73301 +239885,LG Washing Machine,1,600.0,2019-08-21 17:46:00,159 West St, Boston,MA,02215 +239886,AAA Batteries (4-pack),1,2.99,2019-08-07 18:27:00,100 Jackson St, Seattle,WA,98101 +239887,34in Ultrawide Monitor,1,379.99,2019-08-01 20:42:00,207 Chestnut St, San Francisco,CA,94016 +239888,AA Batteries (4-pack),1,3.84,2019-08-13 18:16:00,637 Hill St, Austin,TX,73301 +239889,Bose SoundSport Headphones,1,99.99,2019-08-14 14:01:00,714 Jefferson St, Los Angeles,CA,90001 +239890,Wired Headphones,1,11.99,2019-08-24 17:22:00,927 11th St, Boston,MA,02215 +239891,AA Batteries (4-pack),2,3.84,2019-08-07 09:41:00,763 Wilson St, Los Angeles,CA,90001 +239892,AA Batteries (4-pack),1,3.84,2019-08-12 17:58:00,623 Meadow St, Dallas,TX,75001 +239893,Wired Headphones,2,11.99,2019-08-02 15:53:00,479 2nd St, San Francisco,CA,94016 +239894,AA Batteries (4-pack),1,3.84,2019-08-14 13:10:00,968 Jefferson St, Dallas,TX,75001 +239895,USB-C Charging Cable,1,11.95,2019-08-14 20:50:00,128 Wilson St, Portland,OR,97035 +239896,USB-C Charging Cable,1,11.95,2019-08-18 18:52:00,298 Hickory St, Los Angeles,CA,90001 +239897,AAA Batteries (4-pack),1,2.99,2019-08-24 18:16:00,662 10th St, Dallas,TX,75001 +239898,Wired Headphones,1,11.99,2019-08-18 17:22:00,519 Washington St, San Francisco,CA,94016 +239899,AA Batteries (4-pack),1,3.84,2019-08-31 05:56:00,120 12th St, San Francisco,CA,94016 +239900,Lightning Charging Cable,2,14.95,2019-08-07 11:15:00,969 Center St, Los Angeles,CA,90001 +239901,AA Batteries (4-pack),1,3.84,2019-08-28 14:53:00,594 Hickory St, Boston,MA,02215 +239902,Flatscreen TV,1,300.0,2019-08-28 11:37:00,963 Church St, San Francisco,CA,94016 +239903,AA Batteries (4-pack),1,3.84,2019-08-15 10:49:00,229 Church St, San Francisco,CA,94016 +239904,Lightning Charging Cable,1,14.95,2019-08-22 18:47:00,36 Cherry St, New York City,NY,10001 +239905,Apple Airpods Headphones,1,150.0,2019-08-07 13:05:00,303 Jackson St, San Francisco,CA,94016 +239906,Google Phone,1,600.0,2019-08-11 21:25:00,553 10th St, New York City,NY,10001 +239907,Wired Headphones,1,11.99,2019-08-26 12:39:00,504 Park St, Austin,TX,73301 +239908,AAA Batteries (4-pack),1,2.99,2019-08-02 19:18:00,525 Jefferson St, New York City,NY,10001 +239909,Bose SoundSport Headphones,1,99.99,2019-08-09 14:15:00,541 Church St, San Francisco,CA,94016 +239910,Lightning Charging Cable,1,14.95,2019-08-12 13:06:00,148 Highland St, New York City,NY,10001 +239911,AAA Batteries (4-pack),1,2.99,2019-08-10 15:13:00,747 10th St, Los Angeles,CA,90001 +239912,USB-C Charging Cable,1,11.95,2019-08-27 14:49:00,270 7th St, New York City,NY,10001 +239913,Wired Headphones,1,11.99,2019-08-29 04:44:00,159 South St, Portland,OR,97035 +239914,Lightning Charging Cable,1,14.95,2019-08-12 13:50:00,106 12th St, San Francisco,CA,94016 +239915,USB-C Charging Cable,2,11.95,2019-08-18 20:29:00,46 West St, Atlanta,GA,30301 +239916,20in Monitor,1,109.99,2019-08-13 15:57:00,110 Washington St, Atlanta,GA,30301 +239917,AAA Batteries (4-pack),1,2.99,2019-08-28 12:36:00,923 Park St, Los Angeles,CA,90001 +239918,Bose SoundSport Headphones,1,99.99,2019-08-12 00:38:00,815 Jackson St, Portland,OR,97035 +239919,USB-C Charging Cable,1,11.95,2019-08-13 23:35:00,499 8th St, Seattle,WA,98101 +239920,20in Monitor,1,109.99,2019-08-26 23:10:00,104 Pine St, Atlanta,GA,30301 +239921,Flatscreen TV,1,300.0,2019-08-16 15:27:00,801 1st St, San Francisco,CA,94016 +239922,34in Ultrawide Monitor,1,379.99,2019-08-09 18:53:00,549 Wilson St, Austin,TX,73301 +239923,20in Monitor,1,109.99,2019-08-26 14:38:00,165 Maple St, San Francisco,CA,94016 +239924,Lightning Charging Cable,1,14.95,2019-08-30 19:52:00,269 South St, San Francisco,CA,94016 +239925,34in Ultrawide Monitor,1,379.99,2019-08-13 15:26:00,856 Sunset St, Boston,MA,02215 +239926,Bose SoundSport Headphones,1,99.99,2019-08-01 09:42:00,269 Lake St, Seattle,WA,98101 +239927,iPhone,1,700.0,2019-08-09 20:35:00,88 Maple St, Los Angeles,CA,90001 +239927,Apple Airpods Headphones,1,150.0,2019-08-09 20:35:00,88 Maple St, Los Angeles,CA,90001 +239928,AAA Batteries (4-pack),2,2.99,2019-08-06 08:01:00,715 South St, San Francisco,CA,94016 +239929,AAA Batteries (4-pack),1,2.99,2019-08-16 06:19:00,452 Chestnut St, Seattle,WA,98101 +239930,Wired Headphones,1,11.99,2019-08-07 16:10:00,201 Dogwood St, New York City,NY,10001 +239931,AA Batteries (4-pack),1,3.84,2019-08-11 21:25:00,332 Church St, Atlanta,GA,30301 +239932,34in Ultrawide Monitor,1,379.99,2019-08-18 18:41:00,851 4th St, New York City,NY,10001 +239933,20in Monitor,1,109.99,2019-08-12 15:13:00,204 8th St, San Francisco,CA,94016 +239934,USB-C Charging Cable,1,11.95,2019-08-13 21:06:00,882 Sunset St, New York City,NY,10001 +239935,AAA Batteries (4-pack),1,2.99,2019-08-16 00:17:00,264 Cherry St, Los Angeles,CA,90001 +239936,34in Ultrawide Monitor,1,379.99,2019-08-28 18:13:00,704 7th St, Seattle,WA,98101 +239937,Wired Headphones,1,11.99,2019-08-17 08:50:00,144 North St, New York City,NY,10001 +239938,Bose SoundSport Headphones,1,99.99,2019-08-13 14:54:00,477 11th St, Los Angeles,CA,90001 +239939,Google Phone,1,600.0,2019-08-12 20:28:00,45 Highland St, Seattle,WA,98101 +239940,Google Phone,1,600.0,2019-08-19 06:48:00,514 Main St, New York City,NY,10001 +239941,AA Batteries (4-pack),1,3.84,2019-08-27 21:19:00,735 2nd St, Boston,MA,02215 +239942,Wired Headphones,1,11.99,2019-08-08 00:35:00,990 Forest St, San Francisco,CA,94016 +239943,Lightning Charging Cable,1,14.95,2019-08-13 20:51:00,154 9th St, Boston,MA,02215 +239944,Flatscreen TV,1,300.0,2019-08-28 16:23:00,2 4th St, San Francisco,CA,94016 +239945,ThinkPad Laptop,1,999.99,2019-08-11 08:27:00,194 Jefferson St, Austin,TX,73301 +239946,Wired Headphones,1,11.99,2019-08-27 05:09:00,636 Main St, San Francisco,CA,94016 +239947,Bose SoundSport Headphones,1,99.99,2019-08-31 18:04:00,591 Pine St, Austin,TX,73301 +239948,Flatscreen TV,1,300.0,2019-08-22 07:34:00,660 7th St, Los Angeles,CA,90001 +239949,34in Ultrawide Monitor,1,379.99,2019-08-22 13:00:00,904 Meadow St, Austin,TX,73301 +239950,Bose SoundSport Headphones,1,99.99,2019-08-03 08:55:00,275 10th St, San Francisco,CA,94016 +239951,27in FHD Monitor,1,149.99,2019-08-01 14:56:00,693 11th St, New York City,NY,10001 +239952,34in Ultrawide Monitor,1,379.99,2019-08-13 21:52:00,501 Cedar St, Boston,MA,02215 +239953,AA Batteries (4-pack),1,3.84,2019-08-09 16:16:00,275 Cedar St, New York City,NY,10001 +239954,Google Phone,1,600.0,2019-08-04 11:38:00,628 Spruce St, Los Angeles,CA,90001 +239955,Wired Headphones,1,11.99,2019-08-20 19:03:00,34 Cherry St, San Francisco,CA,94016 +239956,Lightning Charging Cable,1,14.95,2019-08-19 09:15:00,634 Wilson St, Los Angeles,CA,90001 +239957,Apple Airpods Headphones,1,150.0,2019-08-29 11:07:00,926 7th St, Seattle,WA,98101 +239958,Flatscreen TV,1,300.0,2019-08-28 14:34:00,247 River St, Atlanta,GA,30301 +239959,AAA Batteries (4-pack),1,2.99,2019-08-29 09:17:00,72 Meadow St, Atlanta,GA,30301 +239960,AAA Batteries (4-pack),2,2.99,2019-08-10 19:22:00,349 Walnut St, Boston,MA,02215 +239961,AAA Batteries (4-pack),2,2.99,2019-08-25 00:03:00,629 4th St, Los Angeles,CA,90001 +239962,USB-C Charging Cable,2,11.95,2019-08-02 12:04:00,469 Willow St, Dallas,TX,75001 +239963,Flatscreen TV,1,300.0,2019-08-15 15:46:00,496 2nd St, New York City,NY,10001 +239964,iPhone,1,700.0,2019-08-08 11:37:00,732 Hickory St, San Francisco,CA,94016 +239964,Apple Airpods Headphones,1,150.0,2019-08-08 11:37:00,732 Hickory St, San Francisco,CA,94016 +239965,Bose SoundSport Headphones,1,99.99,2019-08-18 11:36:00,574 7th St, Atlanta,GA,30301 +239966,AA Batteries (4-pack),1,3.84,2019-08-05 04:30:00,491 12th St, San Francisco,CA,94016 +239967,AA Batteries (4-pack),1,3.84,2019-08-18 13:24:00,47 Hill St, Seattle,WA,98101 +239968,Google Phone,1,600.0,2019-08-16 07:47:00,355 North St, Los Angeles,CA,90001 +239968,USB-C Charging Cable,1,11.95,2019-08-16 07:47:00,355 North St, Los Angeles,CA,90001 +239969,iPhone,1,700.0,2019-08-27 08:14:00,128 Jefferson St, New York City,NY,10001 +239970,AA Batteries (4-pack),1,3.84,2019-08-08 11:35:00,193 Forest St, San Francisco,CA,94016 +239971,Wired Headphones,1,11.99,2019-08-27 15:13:00,140 Washington St, Atlanta,GA,30301 +239972,Flatscreen TV,1,300.0,2019-08-11 15:52:00,517 Highland St, Los Angeles,CA,90001 +239973,Google Phone,1,600.0,2019-08-02 15:58:00,802 Cherry St, New York City,NY,10001 +239974,AA Batteries (4-pack),1,3.84,2019-08-03 07:59:00,940 Park St, Boston,MA,02215 +239975,Bose SoundSport Headphones,1,99.99,2019-08-04 17:35:00,120 Hill St, Boston,MA,02215 +239976,AA Batteries (4-pack),1,3.84,2019-08-31 15:01:00,124 Dogwood St, San Francisco,CA,94016 +239977,Apple Airpods Headphones,1,150.0,2019-08-30 02:31:00,640 River St, New York City,NY,10001 +239978,USB-C Charging Cable,1,11.95,2019-08-16 19:06:00,205 5th St, New York City,NY,10001 +239979,AAA Batteries (4-pack),1,2.99,2019-08-28 17:48:00,844 Pine St, Portland,OR,97035 +239980,Lightning Charging Cable,1,14.95,2019-08-19 08:55:00,830 Highland St, San Francisco,CA,94016 +239981,ThinkPad Laptop,1,999.99,2019-08-08 17:28:00,855 Center St, Los Angeles,CA,90001 +239982,AA Batteries (4-pack),1,3.84,2019-08-26 11:41:00,371 Main St, Portland,ME,04101 +239983,Bose SoundSport Headphones,1,99.99,2019-08-14 10:15:00,293 Dogwood St, Atlanta,GA,30301 +239984,Bose SoundSport Headphones,1,99.99,2019-08-14 11:19:00,554 Forest St, Los Angeles,CA,90001 +239985,AA Batteries (4-pack),2,3.84,2019-08-30 17:01:00,60 Cherry St, New York City,NY,10001 +239986,Lightning Charging Cable,1,14.95,2019-08-07 15:15:00,236 10th St, Boston,MA,02215 +239987,iPhone,1,700.0,2019-08-09 20:50:00,996 Lincoln St, Austin,TX,73301 +239988,AAA Batteries (4-pack),1,2.99,2019-08-21 18:59:00,794 Meadow St, Los Angeles,CA,90001 +239989,iPhone,1,700.0,2019-08-28 02:59:00,12 Forest St, Seattle,WA,98101 +239990,Wired Headphones,1,11.99,2019-08-02 14:03:00,60 Lakeview St, Dallas,TX,75001 +239991,AAA Batteries (4-pack),1,2.99,2019-08-30 20:16:00,211 Chestnut St, San Francisco,CA,94016 +239992,Apple Airpods Headphones,1,150.0,2019-08-06 11:01:00,826 Adams St, New York City,NY,10001 +239993,34in Ultrawide Monitor,1,379.99,2019-08-10 01:36:00,653 Chestnut St, New York City,NY,10001 +239994,USB-C Charging Cable,1,11.95,2019-08-17 19:47:00,523 Lincoln St, San Francisco,CA,94016 +239995,Apple Airpods Headphones,1,150.0,2019-08-25 06:55:00,200 Sunset St, Seattle,WA,98101 +239996,Apple Airpods Headphones,2,150.0,2019-08-23 13:13:00,599 Jackson St, Los Angeles,CA,90001 +239997,Bose SoundSport Headphones,1,99.99,2019-08-27 09:27:00,78 Dogwood St, Boston,MA,02215 +239998,AAA Batteries (4-pack),2,2.99,2019-08-19 16:32:00,524 11th St, Boston,MA,02215 +239999,AAA Batteries (4-pack),1,2.99,2019-08-18 15:51:00,301 Spruce St, Boston,MA,02215 +240000,AA Batteries (4-pack),1,3.84,2019-08-21 18:47:00,66 8th St, New York City,NY,10001 +240001,Bose SoundSport Headphones,1,99.99,2019-08-27 21:36:00,393 Maple St, Los Angeles,CA,90001 +240002,USB-C Charging Cable,2,11.95,2019-08-22 11:00:00,277 Sunset St, Los Angeles,CA,90001 +240003,Flatscreen TV,1,300.0,2019-08-19 20:21:00,328 South St, Boston,MA,02215 +240004,Bose SoundSport Headphones,1,99.99,2019-08-25 19:19:00,117 Lakeview St, San Francisco,CA,94016 +240005,USB-C Charging Cable,1,11.95,2019-08-01 16:50:00,637 5th St, Dallas,TX,75001 +240006,USB-C Charging Cable,1,11.95,2019-08-26 11:24:00,891 Jackson St, Dallas,TX,75001 +240007,USB-C Charging Cable,1,11.95,2019-08-28 22:16:00,403 Willow St, Seattle,WA,98101 +240008,AA Batteries (4-pack),2,3.84,2019-08-28 07:35:00,946 Walnut St, Los Angeles,CA,90001 +240009,Wired Headphones,1,11.99,2019-08-24 13:14:00,886 Johnson St, Los Angeles,CA,90001 +240010,USB-C Charging Cable,1,11.95,2019-08-07 17:58:00,149 Washington St, Boston,MA,02215 +240011,Bose SoundSport Headphones,1,99.99,2019-08-16 17:16:00,619 South St, Dallas,TX,75001 +240012,AA Batteries (4-pack),3,3.84,2019-08-25 14:11:00,260 Lake St, San Francisco,CA,94016 +240013,Macbook Pro Laptop,1,1700.0,2019-08-11 14:30:00,471 Lake St, Los Angeles,CA,90001 +240014,Wired Headphones,1,11.99,2019-08-08 13:50:00,5 Adams St, Dallas,TX,75001 +240015,AA Batteries (4-pack),1,3.84,2019-08-20 19:55:00,411 South St, Atlanta,GA,30301 +240016,Wired Headphones,1,11.99,2019-08-06 20:57:00,144 4th St, New York City,NY,10001 +240017,Lightning Charging Cable,1,14.95,2019-08-20 20:25:00,563 Church St, Los Angeles,CA,90001 +240018,AA Batteries (4-pack),1,3.84,2019-08-11 22:54:00,218 Washington St, Atlanta,GA,30301 +240019,27in FHD Monitor,1,149.99,2019-08-05 00:51:00,629 South St, San Francisco,CA,94016 +240020,Lightning Charging Cable,1,14.95,2019-08-13 11:31:00,133 Highland St, Seattle,WA,98101 +240021,AA Batteries (4-pack),3,3.84,2019-08-14 08:26:00,737 Washington St, Boston,MA,02215 +240022,Apple Airpods Headphones,1,150.0,2019-08-07 17:46:00,611 Wilson St, Seattle,WA,98101 +240023,20in Monitor,1,109.99,2019-08-30 02:45:00,387 Madison St, San Francisco,CA,94016 +240024,27in 4K Gaming Monitor,1,389.99,2019-08-05 14:31:00,122 13th St, Austin,TX,73301 +240025,Lightning Charging Cable,1,14.95,2019-08-02 21:05:00,960 Maple St, Boston,MA,02215 +240026,Apple Airpods Headphones,1,150.0,2019-08-03 22:02:00,326 Johnson St, Los Angeles,CA,90001 +240027,iPhone,1,700.0,2019-08-05 08:58:00,214 Church St, Boston,MA,02215 +240027,Lightning Charging Cable,1,14.95,2019-08-05 08:58:00,214 Church St, Boston,MA,02215 +240028,LG Washing Machine,1,600.0,2019-08-19 21:11:00,426 Dogwood St, San Francisco,CA,94016 +240029,Macbook Pro Laptop,1,1700.0,2019-08-09 17:37:00,274 Cedar St, Boston,MA,02215 +240029,USB-C Charging Cable,1,11.95,2019-08-09 17:37:00,274 Cedar St, Boston,MA,02215 +240030,27in 4K Gaming Monitor,1,389.99,2019-08-06 22:11:00,884 11th St, New York City,NY,10001 +240031,Bose SoundSport Headphones,2,99.99,2019-08-14 03:58:00,979 Madison St, Dallas,TX,75001 +240032,Lightning Charging Cable,1,14.95,2019-08-07 17:57:00,227 Hickory St, New York City,NY,10001 +240033,27in FHD Monitor,1,149.99,2019-08-03 19:12:00,613 Park St, New York City,NY,10001 +240034,34in Ultrawide Monitor,1,379.99,2019-08-07 16:04:00,259 South St, San Francisco,CA,94016 +240035,Lightning Charging Cable,1,14.95,2019-08-17 15:30:00,602 River St, Boston,MA,02215 +240036,27in 4K Gaming Monitor,1,389.99,2019-08-01 11:43:00,997 Walnut St, New York City,NY,10001 +240037,AAA Batteries (4-pack),1,2.99,2019-08-29 14:37:00,10 Hill St, Atlanta,GA,30301 +240038,AA Batteries (4-pack),1,3.84,2019-08-19 20:19:00,71 Maple St, Dallas,TX,75001 +240039,USB-C Charging Cable,1,11.95,2019-08-14 23:21:00,467 South St, San Francisco,CA,94016 +240040,Lightning Charging Cable,1,14.95,2019-08-18 15:01:00,623 West St, Austin,TX,73301 +240041,USB-C Charging Cable,1,11.95,2019-08-08 18:22:00,136 Center St, Atlanta,GA,30301 +240042,AAA Batteries (4-pack),1,2.99,2019-08-16 01:22:00,544 Lakeview St, New York City,NY,10001 +240043,Bose SoundSport Headphones,1,99.99,2019-08-10 11:23:00,315 2nd St, San Francisco,CA,94016 +240044,AAA Batteries (4-pack),1,2.99,2019-08-27 01:50:00,141 West St, San Francisco,CA,94016 +240045,AAA Batteries (4-pack),2,2.99,2019-08-22 09:01:00,102 6th St, New York City,NY,10001 +240046,Lightning Charging Cable,1,14.95,2019-08-13 23:07:00,186 Washington St, Los Angeles,CA,90001 +240047,Bose SoundSport Headphones,1,99.99,2019-08-18 21:06:00,967 6th St, Atlanta,GA,30301 +240048,Flatscreen TV,1,300.0,2019-08-28 15:17:00,796 Madison St, Boston,MA,02215 +240049,AAA Batteries (4-pack),1,2.99,2019-08-29 12:24:00,751 North St, Atlanta,GA,30301 +240050,Apple Airpods Headphones,1,150.0,2019-08-03 18:09:00,430 Jefferson St, Dallas,TX,75001 +240051,27in FHD Monitor,1,149.99,2019-08-26 14:58:00,600 Chestnut St, San Francisco,CA,94016 +240052,Google Phone,1,600.0,2019-08-19 12:53:00,764 Hill St, San Francisco,CA,94016 +240053,27in FHD Monitor,1,149.99,2019-08-24 10:52:00,432 Jackson St, Boston,MA,02215 +240054,Bose SoundSport Headphones,1,99.99,2019-08-04 19:46:00,230 West St, Boston,MA,02215 +240055,Lightning Charging Cable,1,14.95,2019-08-06 11:52:00,41 Spruce St, Los Angeles,CA,90001 +240056,USB-C Charging Cable,2,11.95,2019-08-25 20:58:00,851 Spruce St, Los Angeles,CA,90001 +240057,AA Batteries (4-pack),1,3.84,2019-08-06 12:37:00,772 5th St, Boston,MA,02215 +240058,20in Monitor,1,109.99,2019-08-26 22:46:00,300 1st St, New York City,NY,10001 +240059,USB-C Charging Cable,1,11.95,2019-08-07 22:45:00,541 1st St, San Francisco,CA,94016 +240060,Apple Airpods Headphones,1,150.0,2019-08-30 22:17:00,304 Pine St, Los Angeles,CA,90001 +240061,27in FHD Monitor,1,149.99,2019-08-22 13:46:00,47 12th St, San Francisco,CA,94016 +240062,Bose SoundSport Headphones,1,99.99,2019-08-01 21:47:00,511 Church St, Seattle,WA,98101 +240063,AA Batteries (4-pack),1,3.84,2019-08-20 04:46:00,463 Lincoln St, New York City,NY,10001 +240064,AA Batteries (4-pack),2,3.84,2019-08-27 23:32:00,377 Johnson St, New York City,NY,10001 +240065,USB-C Charging Cable,2,11.95,2019-08-10 20:33:00,583 Madison St, Boston,MA,02215 +240066,Lightning Charging Cable,1,14.95,2019-08-29 20:05:00,832 Pine St, Atlanta,GA,30301 +240067,iPhone,1,700.0,2019-08-15 15:10:00,707 Lakeview St, Dallas,TX,75001 +240067,Lightning Charging Cable,1,14.95,2019-08-15 15:10:00,707 Lakeview St, Dallas,TX,75001 +240068,Google Phone,1,600.0,2019-08-17 13:52:00,305 Elm St, Atlanta,GA,30301 +240069,AA Batteries (4-pack),2,3.84,2019-08-18 20:12:00,130 Sunset St, San Francisco,CA,94016 +240070,AA Batteries (4-pack),2,3.84,2019-08-15 15:28:00,607 9th St, New York City,NY,10001 +240071,AA Batteries (4-pack),2,3.84,2019-08-11 21:19:00,630 Main St, Los Angeles,CA,90001 +240072,Lightning Charging Cable,1,14.95,2019-08-06 21:08:00,579 2nd St, Portland,OR,97035 +240073,Bose SoundSport Headphones,1,99.99,2019-08-08 15:52:00,162 Park St, Atlanta,GA,30301 +240074,ThinkPad Laptop,1,999.99,2019-08-07 19:29:00,107 Lincoln St, San Francisco,CA,94016 +240075,AAA Batteries (4-pack),1,2.99,2019-08-19 17:03:00,304 Sunset St, Boston,MA,02215 +240076,Lightning Charging Cable,1,14.95,2019-08-16 23:35:00,544 Johnson St, Austin,TX,73301 +240077,27in 4K Gaming Monitor,1,389.99,2019-08-11 08:47:00,104 River St, Boston,MA,02215 +240078,Wired Headphones,1,11.99,2019-08-29 21:38:00,175 4th St, New York City,NY,10001 +240079,AAA Batteries (4-pack),1,2.99,2019-08-14 15:22:00,190 Cherry St, Boston,MA,02215 +240080,AAA Batteries (4-pack),1,2.99,2019-08-10 19:40:00,86 Elm St, Seattle,WA,98101 +240080,AAA Batteries (4-pack),2,2.99,2019-08-10 19:40:00,86 Elm St, Seattle,WA,98101 +240081,34in Ultrawide Monitor,1,379.99,2019-08-06 20:05:00,683 13th St, San Francisco,CA,94016 +240082,Lightning Charging Cable,1,14.95,2019-08-16 20:41:00,225 Forest St, Portland,OR,97035 +240083,AAA Batteries (4-pack),1,2.99,2019-08-20 23:03:00,752 Maple St, Atlanta,GA,30301 +240084,AA Batteries (4-pack),1,3.84,2019-08-27 11:01:00,87 Highland St, Seattle,WA,98101 +240085,USB-C Charging Cable,1,11.95,2019-08-16 18:08:00,909 Chestnut St, San Francisco,CA,94016 +240086,AA Batteries (4-pack),2,3.84,2019-08-14 13:28:00,525 Lincoln St, Atlanta,GA,30301 +240087,Bose SoundSport Headphones,1,99.99,2019-08-07 08:18:00,965 Jefferson St, Seattle,WA,98101 +240088,AAA Batteries (4-pack),2,2.99,2019-08-10 08:39:00,592 River St, New York City,NY,10001 +240089,USB-C Charging Cable,1,11.95,2019-08-29 12:54:00,712 Jefferson St, Portland,ME,04101 +240090,27in 4K Gaming Monitor,1,389.99,2019-08-10 20:53:00,900 Madison St, Boston,MA,02215 +240091,Wired Headphones,1,11.99,2019-08-30 17:48:00,960 Church St, Seattle,WA,98101 +240092,AAA Batteries (4-pack),1,2.99,2019-08-03 00:51:00,728 14th St, Atlanta,GA,30301 +240093,Apple Airpods Headphones,1,150.0,2019-08-02 23:28:00,193 Wilson St, San Francisco,CA,94016 +240094,Wired Headphones,2,11.99,2019-08-01 10:04:00,149 Johnson St, New York City,NY,10001 +240095,ThinkPad Laptop,1,999.99,2019-08-09 17:57:00,447 Church St, Portland,OR,97035 +240096,ThinkPad Laptop,1,999.99,2019-08-15 13:00:00,322 Maple St, Austin,TX,73301 +240097,Bose SoundSport Headphones,1,99.99,2019-08-01 09:37:00,350 Elm St, Los Angeles,CA,90001 +240098,Lightning Charging Cable,1,14.95,2019-08-28 20:37:00,124 8th St, Los Angeles,CA,90001 +240099,27in FHD Monitor,1,149.99,2019-08-16 22:44:00,417 13th St, San Francisco,CA,94016 +240100,20in Monitor,1,109.99,2019-08-09 06:49:00,445 7th St, Austin,TX,73301 +240101,Lightning Charging Cable,1,14.95,2019-08-02 10:43:00,337 6th St, Dallas,TX,75001 +240102,AA Batteries (4-pack),2,3.84,2019-08-02 16:21:00,345 Church St, Los Angeles,CA,90001 +240103,AAA Batteries (4-pack),4,2.99,2019-08-25 17:01:00,304 5th St, Atlanta,GA,30301 +240104,AA Batteries (4-pack),1,3.84,2019-08-24 21:39:00,325 Chestnut St, Seattle,WA,98101 +240105,AAA Batteries (4-pack),1,2.99,2019-08-06 21:29:00,31 Lake St, Los Angeles,CA,90001 +240106,Lightning Charging Cable,1,14.95,2019-08-09 08:27:00,596 10th St, New York City,NY,10001 +240107,Wired Headphones,1,11.99,2019-08-15 20:52:00,938 North St, Los Angeles,CA,90001 +240108,AAA Batteries (4-pack),3,2.99,2019-08-14 15:31:00,222 River St, Portland,OR,97035 +240109,34in Ultrawide Monitor,1,379.99,2019-08-25 18:31:00,219 Dogwood St, San Francisco,CA,94016 +240109,AA Batteries (4-pack),2,3.84,2019-08-25 18:31:00,219 Dogwood St, San Francisco,CA,94016 +240110,AA Batteries (4-pack),1,3.84,2019-08-27 16:10:00,372 Wilson St, New York City,NY,10001 +240111,AAA Batteries (4-pack),3,2.99,2019-08-02 11:32:00,938 9th St, San Francisco,CA,94016 +240112,Bose SoundSport Headphones,1,99.99,2019-08-23 20:50:00,742 Maple St, New York City,NY,10001 +240113,Apple Airpods Headphones,1,150.0,2019-08-30 00:32:00,182 Hickory St, New York City,NY,10001 +240114,Google Phone,1,600.0,2019-08-22 13:10:00,198 12th St, San Francisco,CA,94016 +240115,Apple Airpods Headphones,1,150.0,2019-08-31 07:01:00,599 Jefferson St, New York City,NY,10001 +240116,Bose SoundSport Headphones,1,99.99,2019-08-27 11:04:00,279 Jefferson St, Los Angeles,CA,90001 +240117,27in 4K Gaming Monitor,1,389.99,2019-08-23 02:46:00,542 1st St, Atlanta,GA,30301 +240118,iPhone,1,700.0,2019-08-15 19:13:00,559 Dogwood St, Austin,TX,73301 +240119,Lightning Charging Cable,1,14.95,2019-08-30 19:43:00,164 North St, Los Angeles,CA,90001 +240120,AA Batteries (4-pack),3,3.84,2019-08-06 18:43:00,954 Sunset St, Dallas,TX,75001 +240121,USB-C Charging Cable,1,11.95,2019-08-18 10:23:00,284 Maple St, San Francisco,CA,94016 +240122,Wired Headphones,1,11.99,2019-08-09 15:59:00,151 9th St, Seattle,WA,98101 +240123,Flatscreen TV,1,300.0,2019-08-15 05:33:00,361 2nd St, San Francisco,CA,94016 +240124,Lightning Charging Cable,1,14.95,2019-08-06 19:04:00,216 Spruce St, Atlanta,GA,30301 +240125,Lightning Charging Cable,1,14.95,2019-08-20 13:02:00,871 South St, Boston,MA,02215 +240126,AA Batteries (4-pack),1,3.84,2019-08-13 14:07:00,671 9th St, Atlanta,GA,30301 +240127,USB-C Charging Cable,2,11.95,2019-08-14 02:34:00,557 12th St, San Francisco,CA,94016 +240128,27in 4K Gaming Monitor,1,389.99,2019-08-28 03:32:00,958 Hill St, San Francisco,CA,94016 +240129,AAA Batteries (4-pack),1,2.99,2019-08-14 11:02:00,373 5th St, Los Angeles,CA,90001 +240130,LG Washing Machine,1,600.0,2019-08-25 16:54:00,273 6th St, San Francisco,CA,94016 +240131,ThinkPad Laptop,1,999.99,2019-08-07 20:04:00,230 Main St, Los Angeles,CA,90001 +240132,Wired Headphones,1,11.99,2019-08-18 15:23:00,53 Hill St, New York City,NY,10001 +240133,Google Phone,1,600.0,2019-08-02 20:13:00,19 Park St, Seattle,WA,98101 +240134,Bose SoundSport Headphones,1,99.99,2019-08-25 18:51:00,3 12th St, San Francisco,CA,94016 +240135,Wired Headphones,1,11.99,2019-08-26 13:25:00,542 13th St, Los Angeles,CA,90001 +240136,Wired Headphones,1,11.99,2019-08-17 13:21:00,784 Ridge St, San Francisco,CA,94016 +240137,USB-C Charging Cable,1,11.95,2019-08-08 09:12:00,880 5th St, Atlanta,GA,30301 +240138,AAA Batteries (4-pack),1,2.99,2019-08-29 08:56:00,874 12th St, San Francisco,CA,94016 +240138,Wired Headphones,1,11.99,2019-08-29 08:56:00,874 12th St, San Francisco,CA,94016 +240139,AAA Batteries (4-pack),1,2.99,2019-08-17 20:15:00,708 Church St, Atlanta,GA,30301 +240140,USB-C Charging Cable,1,11.95,2019-08-12 01:53:00,383 Dogwood St, Atlanta,GA,30301 +240141,USB-C Charging Cable,1,11.95,2019-08-08 21:26:00,694 Center St, Los Angeles,CA,90001 +240142,Bose SoundSport Headphones,1,99.99,2019-08-25 15:51:00,265 North St, New York City,NY,10001 +240143,Lightning Charging Cable,1,14.95,2019-08-14 22:08:00,103 Walnut St, Los Angeles,CA,90001 +240144,27in FHD Monitor,1,149.99,2019-08-01 21:04:00,17 Walnut St, Portland,OR,97035 +240145,Bose SoundSport Headphones,1,99.99,2019-08-30 11:24:00,566 2nd St, Los Angeles,CA,90001 +240146,iPhone,1,700.0,2019-08-06 18:44:00,641 1st St, Los Angeles,CA,90001 +240146,Lightning Charging Cable,2,14.95,2019-08-06 18:44:00,641 1st St, Los Angeles,CA,90001 +240147,20in Monitor,1,109.99,2019-08-24 15:43:00,289 Spruce St, Dallas,TX,75001 +240148,ThinkPad Laptop,1,999.99,2019-08-26 18:45:00,331 2nd St, Boston,MA,02215 +240149,AAA Batteries (4-pack),1,2.99,2019-08-05 05:53:00,627 West St, Boston,MA,02215 +240150,Lightning Charging Cable,1,14.95,2019-08-03 20:21:00,373 12th St, Boston,MA,02215 +240151,AA Batteries (4-pack),1,3.84,2019-08-16 22:18:00,635 Washington St, New York City,NY,10001 +240152,Lightning Charging Cable,1,14.95,2019-08-24 20:41:00,273 Center St, Dallas,TX,75001 +240153,AA Batteries (4-pack),1,3.84,2019-08-13 18:43:00,703 4th St, Los Angeles,CA,90001 +240154,34in Ultrawide Monitor,1,379.99,2019-08-05 10:41:00,721 Walnut St, Los Angeles,CA,90001 +240155,USB-C Charging Cable,1,11.95,2019-08-03 15:10:00,271 North St, Seattle,WA,98101 +240156,Macbook Pro Laptop,1,1700.0,2019-08-07 13:26:00,262 Johnson St, Boston,MA,02215 +240157,AA Batteries (4-pack),1,3.84,2019-08-19 20:06:00,836 Hill St, San Francisco,CA,94016 +240158,AAA Batteries (4-pack),2,2.99,2019-08-02 11:22:00,312 Chestnut St, San Francisco,CA,94016 +240159,Vareebadd Phone,1,400.0,2019-08-16 15:00:00,674 7th St, Seattle,WA,98101 +240159,Bose SoundSport Headphones,1,99.99,2019-08-16 15:00:00,674 7th St, Seattle,WA,98101 +240160,AA Batteries (4-pack),1,3.84,2019-08-23 12:45:00,842 Ridge St, Boston,MA,02215 +240161,Wired Headphones,1,11.99,2019-08-30 11:26:00,167 14th St, Portland,OR,97035 +240162,USB-C Charging Cable,1,11.95,2019-08-05 11:57:00,125 Lake St, Atlanta,GA,30301 +240163,Lightning Charging Cable,1,14.95,2019-08-12 19:26:00,710 12th St, Boston,MA,02215 +240164,AA Batteries (4-pack),1,3.84,2019-08-21 18:25:00,812 5th St, New York City,NY,10001 +240165,27in FHD Monitor,1,149.99,2019-08-11 23:04:00,958 10th St, New York City,NY,10001 +240166,Apple Airpods Headphones,1,150.0,2019-08-22 19:35:00,512 12th St, Los Angeles,CA,90001 +240167,Google Phone,1,600.0,2019-08-01 20:17:00,212 Hill St, San Francisco,CA,94016 +240168,AAA Batteries (4-pack),2,2.99,2019-08-24 14:37:00,573 Forest St, Austin,TX,73301 +240169,Apple Airpods Headphones,1,150.0,2019-08-06 11:59:00,795 Meadow St, Atlanta,GA,30301 +240170,Apple Airpods Headphones,1,150.0,2019-08-18 20:20:00,282 1st St, Seattle,WA,98101 +240171,27in 4K Gaming Monitor,1,389.99,2019-08-22 19:14:00,791 Park St, Los Angeles,CA,90001 +240172,27in FHD Monitor,1,149.99,2019-08-17 13:58:00,894 Lakeview St, Boston,MA,02215 +240173,Bose SoundSport Headphones,1,99.99,2019-08-05 16:49:00,465 Lakeview St, Atlanta,GA,30301 +240174,USB-C Charging Cable,1,11.95,2019-08-28 21:23:00,357 7th St, San Francisco,CA,94016 +240174,Wired Headphones,1,11.99,2019-08-28 21:23:00,357 7th St, San Francisco,CA,94016 +240175,Lightning Charging Cable,3,14.95,2019-08-26 10:42:00,206 14th St, San Francisco,CA,94016 +240176,AA Batteries (4-pack),2,3.84,2019-08-14 20:04:00,469 Highland St, New York City,NY,10001 +240177,AAA Batteries (4-pack),1,2.99,2019-08-18 19:15:00,699 Hickory St, Boston,MA,02215 +240178,ThinkPad Laptop,1,999.99,2019-08-03 10:09:00,708 Spruce St, Seattle,WA,98101 +240179,USB-C Charging Cable,1,11.95,2019-08-13 05:47:00,113 8th St, San Francisco,CA,94016 +240180,AAA Batteries (4-pack),3,2.99,2019-08-15 13:37:00,462 8th St, Dallas,TX,75001 +240181,Wired Headphones,1,11.99,2019-08-29 12:36:00,791 2nd St, Los Angeles,CA,90001 +240182,AAA Batteries (4-pack),1,2.99,2019-08-08 19:13:00,567 12th St, San Francisco,CA,94016 +240183,Google Phone,1,600.0,2019-08-16 08:37:00,944 River St, San Francisco,CA,94016 +240184,LG Dryer,1,600.0,2019-08-02 05:21:00,661 6th St, Seattle,WA,98101 +240185,USB-C Charging Cable,1,11.95,2019-08-19 19:57:00,35 11th St, Boston,MA,02215 +240186,Bose SoundSport Headphones,1,99.99,2019-08-27 10:26:00,260 Willow St, Seattle,WA,98101 +240187,Lightning Charging Cable,1,14.95,2019-08-29 20:23:00,419 Washington St, Dallas,TX,75001 +240188,USB-C Charging Cable,1,11.95,2019-08-25 17:48:00,651 Hill St, Atlanta,GA,30301 +240189,AAA Batteries (4-pack),1,2.99,2019-08-12 01:13:00,627 Highland St, Austin,TX,73301 +240190,AA Batteries (4-pack),1,3.84,2019-08-23 05:58:00,437 Elm St, Atlanta,GA,30301 +240191,Bose SoundSport Headphones,1,99.99,2019-08-08 19:55:00,819 Willow St, New York City,NY,10001 +240192,20in Monitor,1,109.99,2019-08-16 09:55:00,411 Wilson St, Atlanta,GA,30301 +240193,Apple Airpods Headphones,1,150.0,2019-08-14 19:31:00,658 Ridge St, Austin,TX,73301 +240194,AA Batteries (4-pack),2,3.84,2019-08-09 17:27:00,625 Cedar St, New York City,NY,10001 +240195,AA Batteries (4-pack),1,3.84,2019-08-29 14:01:00,419 12th St, San Francisco,CA,94016 +240196,Apple Airpods Headphones,1,150.0,2019-08-05 11:36:00,563 North St, Seattle,WA,98101 +240197,27in 4K Gaming Monitor,1,389.99,2019-08-22 17:29:00,747 Cherry St, Boston,MA,02215 +240198,iPhone,1,700.0,2019-08-14 23:21:00,661 Madison St, New York City,NY,10001 +240199,Lightning Charging Cable,1,14.95,2019-08-31 21:03:00,11 12th St, San Francisco,CA,94016 +240200,Lightning Charging Cable,1,14.95,2019-08-14 09:28:00,109 Washington St, Boston,MA,02215 +240201,Wired Headphones,1,11.99,2019-08-27 16:14:00,482 Lakeview St, Atlanta,GA,30301 +240202,34in Ultrawide Monitor,1,379.99,2019-08-01 18:50:00,840 10th St, San Francisco,CA,94016 +240203,Apple Airpods Headphones,1,150.0,2019-08-02 15:25:00,533 Elm St, Seattle,WA,98101 +240204,Google Phone,1,600.0,2019-08-11 11:33:00,950 5th St, Los Angeles,CA,90001 +240205,iPhone,1,700.0,2019-08-24 13:49:00,13 Ridge St, Portland,OR,97035 +240206,Flatscreen TV,1,300.0,2019-08-11 10:27:00,467 4th St, Boston,MA,02215 +240207,Apple Airpods Headphones,1,150.0,2019-08-04 07:40:00,273 Ridge St, Los Angeles,CA,90001 +240208,AAA Batteries (4-pack),1,2.99,2019-08-29 00:22:00,565 Lakeview St, Dallas,TX,75001 +240209,AAA Batteries (4-pack),2,2.99,2019-08-28 13:33:00,680 13th St, San Francisco,CA,94016 +240210,LG Dryer,1,600.0,2019-08-19 11:48:00,45 Dogwood St, Seattle,WA,98101 +240211,AAA Batteries (4-pack),1,2.99,2019-08-22 21:23:00,52 Highland St, San Francisco,CA,94016 +240212,Vareebadd Phone,1,400.0,2019-08-30 22:18:00,735 Sunset St, Boston,MA,02215 +240212,USB-C Charging Cable,1,11.95,2019-08-30 22:18:00,735 Sunset St, Boston,MA,02215 +240213,AA Batteries (4-pack),1,3.84,2019-08-29 22:00:00,350 Hickory St, New York City,NY,10001 +240214,Wired Headphones,1,11.99,2019-08-01 23:25:00,903 6th St, Portland,OR,97035 +240215,AA Batteries (4-pack),2,3.84,2019-08-01 20:43:00,752 Spruce St, Los Angeles,CA,90001 +240216,27in FHD Monitor,1,149.99,2019-08-15 07:55:00,818 7th St, San Francisco,CA,94016 +240217,USB-C Charging Cable,2,11.95,2019-08-08 13:35:00,805 Church St, Dallas,TX,75001 +240218,Vareebadd Phone,1,400.0,2019-08-27 05:30:00,771 7th St, New York City,NY,10001 +240219,Lightning Charging Cable,1,14.95,2019-08-13 12:01:00,695 Chestnut St, Los Angeles,CA,90001 +240220,Vareebadd Phone,1,400.0,2019-08-03 10:29:00,628 Center St, San Francisco,CA,94016 +240220,USB-C Charging Cable,1,11.95,2019-08-03 10:29:00,628 Center St, San Francisco,CA,94016 +240221,iPhone,1,700.0,2019-08-09 20:03:00,714 Lake St, Portland,OR,97035 +240222,Wired Headphones,1,11.99,2019-08-12 19:20:00,767 Adams St, Portland,OR,97035 +240223,Macbook Pro Laptop,1,1700.0,2019-08-07 10:59:00,156 Willow St, San Francisco,CA,94016 +240224,iPhone,1,700.0,2019-08-28 10:13:00,155 10th St, Boston,MA,02215 +240225,Wired Headphones,1,11.99,2019-08-24 07:49:00,164 Pine St, Portland,OR,97035 +240226,iPhone,1,700.0,2019-08-15 12:07:00,317 River St, Los Angeles,CA,90001 +240227,USB-C Charging Cable,1,11.95,2019-08-15 17:03:00,941 Main St, Atlanta,GA,30301 +240228,Bose SoundSport Headphones,1,99.99,2019-08-19 16:29:00,842 Cherry St, San Francisco,CA,94016 +240229,AA Batteries (4-pack),2,3.84,2019-08-16 12:59:00,991 Wilson St, Boston,MA,02215 +240230,27in FHD Monitor,1,149.99,2019-08-22 21:33:00,142 Spruce St, Dallas,TX,75001 +240231,Apple Airpods Headphones,1,150.0,2019-08-10 12:38:00,327 6th St, Portland,OR,97035 +240232,USB-C Charging Cable,1,11.95,2019-08-05 23:04:00,855 7th St, Atlanta,GA,30301 +240233,iPhone,1,700.0,2019-08-11 15:35:00,70 2nd St, Boston,MA,02215 +240233,Apple Airpods Headphones,1,150.0,2019-08-11 15:35:00,70 2nd St, Boston,MA,02215 +240234,USB-C Charging Cable,1,11.95,2019-08-12 12:42:00,421 Ridge St, Austin,TX,73301 +240235,27in 4K Gaming Monitor,1,389.99,2019-08-20 14:15:00,726 Hickory St, Dallas,TX,75001 +240236,Lightning Charging Cable,1,14.95,2019-08-28 10:04:00,997 7th St, New York City,NY,10001 +240237,27in FHD Monitor,1,149.99,2019-08-03 08:20:00,148 Hill St, Los Angeles,CA,90001 +240238,AA Batteries (4-pack),2,3.84,2019-08-25 13:30:00,150 8th St, Portland,OR,97035 +240239,27in FHD Monitor,1,149.99,2019-08-27 12:19:00,401 Wilson St, Portland,ME,04101 +240240,Wired Headphones,1,11.99,2019-08-09 15:04:00,891 9th St, San Francisco,CA,94016 +240241,Flatscreen TV,1,300.0,2019-08-12 01:43:00,18 Chestnut St, Atlanta,GA,30301 +240242,Lightning Charging Cable,1,14.95,2019-08-12 18:47:00,348 Chestnut St, Austin,TX,73301 +240243,Lightning Charging Cable,1,14.95,2019-08-03 11:50:00,296 1st St, San Francisco,CA,94016 +240244,Wired Headphones,1,11.99,2019-08-09 10:00:00,462 Lakeview St, Boston,MA,02215 +240245,Apple Airpods Headphones,1,150.0,2019-08-22 10:52:00,997 Jackson St, New York City,NY,10001 +240246,AA Batteries (4-pack),1,3.84,2019-08-21 15:43:00,635 Willow St, Los Angeles,CA,90001 +240247,AAA Batteries (4-pack),1,2.99,2019-08-29 13:11:00,163 Cedar St, Seattle,WA,98101 +240248,Macbook Pro Laptop,1,1700.0,2019-08-10 21:25:00,123 Chestnut St, San Francisco,CA,94016 +240249,Lightning Charging Cable,1,14.95,2019-08-17 18:14:00,963 Willow St, Los Angeles,CA,90001 +240250,Apple Airpods Headphones,1,150.0,2019-08-28 14:43:00,538 Forest St, Los Angeles,CA,90001 +240251,Wired Headphones,1,11.99,2019-08-04 10:58:00,990 Pine St, Seattle,WA,98101 +240252,USB-C Charging Cable,1,11.95,2019-08-26 11:10:00,940 Sunset St, San Francisco,CA,94016 +240253,AA Batteries (4-pack),1,3.84,2019-08-06 21:01:00,110 8th St, New York City,NY,10001 +240254,AAA Batteries (4-pack),2,2.99,2019-08-15 12:52:00,357 Adams St, Los Angeles,CA,90001 +240255,AAA Batteries (4-pack),1,2.99,2019-08-09 03:17:00,504 14th St, Austin,TX,73301 +240256,Lightning Charging Cable,1,14.95,2019-08-24 07:22:00,203 Church St, Seattle,WA,98101 +240257,Lightning Charging Cable,1,14.95,2019-08-05 10:51:00,65 6th St, Boston,MA,02215 +240258,Lightning Charging Cable,1,14.95,2019-08-10 22:59:00,428 13th St, Boston,MA,02215 +240259,AA Batteries (4-pack),3,3.84,2019-08-30 08:41:00,138 5th St, Portland,OR,97035 +240260,AAA Batteries (4-pack),4,2.99,2019-08-12 20:09:00,241 Church St, New York City,NY,10001 +240261,Wired Headphones,1,11.99,2019-08-30 16:21:00,267 12th St, New York City,NY,10001 +240262,Wired Headphones,1,11.99,2019-08-19 10:27:00,887 Lincoln St, Boston,MA,02215 +240263,AAA Batteries (4-pack),1,2.99,2019-08-07 09:07:00,926 Church St, Portland,OR,97035 +240264,34in Ultrawide Monitor,1,379.99,2019-08-15 13:37:00,305 4th St, Seattle,WA,98101 +240265,AA Batteries (4-pack),1,3.84,2019-08-16 15:39:00,377 Madison St, San Francisco,CA,94016 +240266,USB-C Charging Cable,1,11.95,2019-08-08 12:41:00,250 10th St, San Francisco,CA,94016 +240267,ThinkPad Laptop,1,999.99,2019-08-21 19:59:00,850 Main St, San Francisco,CA,94016 +240268,iPhone,1,700.0,2019-08-11 12:12:00,959 10th St, Los Angeles,CA,90001 +240269,Macbook Pro Laptop,1,1700.0,2019-08-04 00:00:00,837 7th St, Seattle,WA,98101 +240270,Apple Airpods Headphones,1,150.0,2019-08-09 21:53:00,960 Adams St, Los Angeles,CA,90001 +240271,Google Phone,1,600.0,2019-08-19 16:26:00,87 Sunset St, San Francisco,CA,94016 +240272,Lightning Charging Cable,1,14.95,2019-08-27 17:16:00,370 Cherry St, Los Angeles,CA,90001 +240273,USB-C Charging Cable,1,11.95,2019-08-15 20:42:00,979 8th St, Seattle,WA,98101 +240274,AAA Batteries (4-pack),2,2.99,2019-08-07 23:12:00,745 Johnson St, Boston,MA,02215 +240275,Lightning Charging Cable,1,14.95,2019-08-08 17:28:00,977 West St, Dallas,TX,75001 +240276,Lightning Charging Cable,1,14.95,2019-08-23 19:47:00,393 Pine St, Boston,MA,02215 +240277,Wired Headphones,1,11.99,2019-08-20 23:25:00,451 13th St, Portland,OR,97035 +240278,Apple Airpods Headphones,1,150.0,2019-08-20 13:13:00,824 5th St, Los Angeles,CA,90001 +240279,AA Batteries (4-pack),1,3.84,2019-08-09 13:13:00,523 Wilson St, Los Angeles,CA,90001 +240280,AA Batteries (4-pack),1,3.84,2019-08-04 19:47:00,57 5th St, San Francisco,CA,94016 +240281,27in 4K Gaming Monitor,1,389.99,2019-08-08 19:26:00,658 13th St, San Francisco,CA,94016 +240282,Wired Headphones,1,11.99,2019-08-31 19:33:00,288 Maple St, Los Angeles,CA,90001 +240283,Apple Airpods Headphones,1,150.0,2019-08-28 17:40:00,249 11th St, Boston,MA,02215 +240284,Lightning Charging Cable,1,14.95,2019-08-09 18:13:00,609 Church St, Boston,MA,02215 +240284,AA Batteries (4-pack),1,3.84,2019-08-09 18:13:00,609 Church St, Boston,MA,02215 +240285,Bose SoundSport Headphones,1,99.99,2019-08-02 15:16:00,312 Maple St, Los Angeles,CA,90001 +240286,27in 4K Gaming Monitor,1,389.99,2019-08-05 16:42:00,547 North St, Boston,MA,02215 +240287,Apple Airpods Headphones,1,150.0,2019-08-16 16:21:00,373 6th St, Austin,TX,73301 +240288,Lightning Charging Cable,1,14.95,2019-08-31 20:56:00,781 4th St, New York City,NY,10001 +240289,AA Batteries (4-pack),1,3.84,2019-08-14 19:43:00,507 Sunset St, San Francisco,CA,94016 +240290,Bose SoundSport Headphones,1,99.99,2019-08-27 19:51:00,933 Center St, New York City,NY,10001 +240291,Wired Headphones,1,11.99,2019-08-16 20:05:00,421 West St, New York City,NY,10001 +240292,Google Phone,1,600.0,2019-08-19 14:51:00,774 Jefferson St, San Francisco,CA,94016 +240292,USB-C Charging Cable,1,11.95,2019-08-19 14:51:00,774 Jefferson St, San Francisco,CA,94016 +240293,AA Batteries (4-pack),1,3.84,2019-08-06 07:28:00,384 Cherry St, Boston,MA,02215 +240294,Wired Headphones,1,11.99,2019-08-22 14:17:00,765 13th St, San Francisco,CA,94016 +240295,AAA Batteries (4-pack),2,2.99,2019-08-30 14:27:00,358 Lake St, Atlanta,GA,30301 +240296,USB-C Charging Cable,1,11.95,2019-08-12 14:17:00,110 13th St, San Francisco,CA,94016 +240297,AA Batteries (4-pack),1,3.84,2019-08-02 17:05:00,375 Maple St, Austin,TX,73301 +240298,Lightning Charging Cable,1,14.95,2019-08-10 11:44:00,847 Cedar St, Atlanta,GA,30301 +240299,USB-C Charging Cable,1,11.95,2019-08-05 22:07:00,530 Willow St, San Francisco,CA,94016 +240300,Bose SoundSport Headphones,1,99.99,2019-08-24 02:09:00,908 6th St, San Francisco,CA,94016 +240301,Bose SoundSport Headphones,1,99.99,2019-08-18 18:40:00,530 Center St, Los Angeles,CA,90001 +240302,Google Phone,1,600.0,2019-08-12 23:46:00,763 Pine St, San Francisco,CA,94016 +240303,Apple Airpods Headphones,1,150.0,2019-08-27 15:27:00,116 Church St, Seattle,WA,98101 +240304,Apple Airpods Headphones,1,150.0,2019-08-17 12:11:00,785 Walnut St, Los Angeles,CA,90001 +240305,USB-C Charging Cable,1,11.95,2019-08-08 21:35:00,768 Lincoln St, Dallas,TX,75001 +240306,Bose SoundSport Headphones,1,99.99,2019-08-27 08:18:00,535 Wilson St, New York City,NY,10001 +240307,Apple Airpods Headphones,1,150.0,2019-08-27 19:56:00,884 South St, Los Angeles,CA,90001 +240308,AA Batteries (4-pack),1,3.84,2019-08-22 20:16:00,73 Maple St, Dallas,TX,75001 +240309,27in 4K Gaming Monitor,1,389.99,2019-08-04 16:41:00,179 Hill St, New York City,NY,10001 +240310,Google Phone,1,600.0,2019-08-03 15:23:00,593 Lincoln St, San Francisco,CA,94016 +240311,27in FHD Monitor,1,149.99,2019-08-23 00:38:00,816 Meadow St, Los Angeles,CA,90001 +240312,27in 4K Gaming Monitor,1,389.99,2019-08-28 15:15:00,737 Hill St, Los Angeles,CA,90001 +240313,Wired Headphones,3,11.99,2019-08-18 16:58:00,276 Park St, Portland,OR,97035 +240314,27in 4K Gaming Monitor,1,389.99,2019-08-09 20:28:00,27 Jefferson St, Los Angeles,CA,90001 +240315,AA Batteries (4-pack),1,3.84,2019-08-13 16:22:00,952 Hill St, San Francisco,CA,94016 +240316,AAA Batteries (4-pack),1,2.99,2019-08-30 11:41:00,861 8th St, New York City,NY,10001 +240317,AA Batteries (4-pack),1,3.84,2019-08-03 22:22:00,300 Ridge St, Atlanta,GA,30301 +240318,ThinkPad Laptop,1,999.99,2019-08-30 12:17:00,617 Lakeview St, San Francisco,CA,94016 +240319,Flatscreen TV,1,300.0,2019-08-15 16:03:00,686 Park St, Boston,MA,02215 +240320,34in Ultrawide Monitor,1,379.99,2019-08-06 02:43:00,5 Meadow St, New York City,NY,10001 +240321,AAA Batteries (4-pack),2,2.99,2019-08-01 08:46:00,383 Highland St, Atlanta,GA,30301 +240322,Bose SoundSport Headphones,1,99.99,2019-08-05 18:26:00,853 Dogwood St, San Francisco,CA,94016 +240323,Wired Headphones,1,11.99,2019-08-01 17:06:00,719 West St, New York City,NY,10001 +240324,AA Batteries (4-pack),1,3.84,2019-08-07 13:34:00,495 Lake St, San Francisco,CA,94016 +240325,AA Batteries (4-pack),2,3.84,2019-08-20 19:13:00,937 Willow St, Dallas,TX,75001 +240326,Lightning Charging Cable,1,14.95,2019-08-07 10:43:00,909 Johnson St, Seattle,WA,98101 +240327,Lightning Charging Cable,1,14.95,2019-08-21 19:34:00,557 Chestnut St, San Francisco,CA,94016 +240328,Lightning Charging Cable,1,14.95,2019-08-16 01:17:00,949 1st St, Los Angeles,CA,90001 +240329,27in FHD Monitor,1,149.99,2019-08-29 06:24:00,283 Elm St, San Francisco,CA,94016 +240330,27in FHD Monitor,1,149.99,2019-08-09 02:33:00,551 10th St, New York City,NY,10001 +240331,Flatscreen TV,1,300.0,2019-08-21 17:15:00,371 4th St, Portland,OR,97035 +240332,Lightning Charging Cable,1,14.95,2019-08-07 15:27:00,658 Lakeview St, Los Angeles,CA,90001 +240333,iPhone,1,700.0,2019-08-06 16:22:00,871 Meadow St, San Francisco,CA,94016 +240334,Macbook Pro Laptop,1,1700.0,2019-08-22 09:04:00,120 Willow St, San Francisco,CA,94016 +240335,20in Monitor,1,109.99,2019-08-25 16:35:00,734 Willow St, Boston,MA,02215 +240336,USB-C Charging Cable,1,11.95,2019-08-04 08:05:00,279 7th St, San Francisco,CA,94016 +240337,AAA Batteries (4-pack),2,2.99,2019-08-13 10:17:00,49 Lakeview St, Portland,OR,97035 +240338,Wired Headphones,1,11.99,2019-08-08 19:22:00,8 South St, Boston,MA,02215 +240339,AAA Batteries (4-pack),2,2.99,2019-08-09 00:39:00,417 Church St, San Francisco,CA,94016 +240340,ThinkPad Laptop,1,999.99,2019-08-06 17:11:00,350 Cedar St, Portland,ME,04101 +240341,Wired Headphones,1,11.99,2019-08-11 00:45:00,123 Willow St, San Francisco,CA,94016 +240342,20in Monitor,1,109.99,2019-08-21 00:24:00,622 Jackson St, Boston,MA,02215 +240343,USB-C Charging Cable,1,11.95,2019-08-26 07:23:00,930 2nd St, Portland,ME,04101 +240344,Wired Headphones,1,11.99,2019-08-07 02:26:00,291 Spruce St, San Francisco,CA,94016 +240345,AAA Batteries (4-pack),1,2.99,2019-08-02 07:19:00,110 Sunset St, Portland,OR,97035 +240346,Wired Headphones,1,11.99,2019-08-26 10:50:00,42 5th St, Los Angeles,CA,90001 +240347,Vareebadd Phone,1,400.0,2019-08-09 11:29:00,646 Church St, Austin,TX,73301 +240347,USB-C Charging Cable,1,11.95,2019-08-09 11:29:00,646 Church St, Austin,TX,73301 +240347,Bose SoundSport Headphones,1,99.99,2019-08-09 11:29:00,646 Church St, Austin,TX,73301 +240348,AA Batteries (4-pack),2,3.84,2019-08-18 18:43:00,576 Hill St, Boston,MA,02215 +240349,AAA Batteries (4-pack),1,2.99,2019-08-25 19:00:00,607 Ridge St, Austin,TX,73301 +240350,Bose SoundSport Headphones,1,99.99,2019-08-03 13:27:00,591 Jackson St, Seattle,WA,98101 +240351,USB-C Charging Cable,1,11.95,2019-08-15 19:32:00,238 6th St, Atlanta,GA,30301 +240352,AA Batteries (4-pack),1,3.84,2019-08-30 22:30:00,280 Spruce St, Los Angeles,CA,90001 +240353,Lightning Charging Cable,1,14.95,2019-08-12 21:09:00,797 Dogwood St, Atlanta,GA,30301 +240354,Google Phone,1,600.0,2019-08-03 17:21:00,47 Willow St, Los Angeles,CA,90001 +240354,Wired Headphones,1,11.99,2019-08-03 17:21:00,47 Willow St, Los Angeles,CA,90001 +240355,Wired Headphones,2,11.99,2019-08-27 16:52:00,42 Dogwood St, Los Angeles,CA,90001 +240356,Apple Airpods Headphones,1,150.0,2019-08-03 20:35:00,469 Elm St, Seattle,WA,98101 +240357,Bose SoundSport Headphones,1,99.99,2019-08-09 08:17:00,156 7th St, Boston,MA,02215 +240358,Wired Headphones,1,11.99,2019-08-30 13:55:00,720 Hickory St, Dallas,TX,75001 +240359,USB-C Charging Cable,1,11.95,2019-08-11 14:30:00,636 1st St, Seattle,WA,98101 +240360,Flatscreen TV,1,300.0,2019-08-23 07:16:00,729 Church St, Los Angeles,CA,90001 +240361,Wired Headphones,2,11.99,2019-08-21 23:18:00,19 14th St, Boston,MA,02215 +240362,AAA Batteries (4-pack),1,2.99,2019-08-02 18:19:00,338 Chestnut St, Seattle,WA,98101 +240363,AAA Batteries (4-pack),1,2.99,2019-08-31 17:13:00,694 Highland St, San Francisco,CA,94016 +240364,ThinkPad Laptop,1,999.99,2019-08-31 09:54:00,297 Main St, Austin,TX,73301 +240365,AA Batteries (4-pack),1,3.84,2019-08-20 11:35:00,224 Willow St, Dallas,TX,75001 +240366,Bose SoundSport Headphones,1,99.99,2019-08-01 22:56:00,235 7th St, Los Angeles,CA,90001 +240367,27in FHD Monitor,1,149.99,2019-08-17 19:00:00,218 Sunset St, Los Angeles,CA,90001 +240368,USB-C Charging Cable,1,11.95,2019-08-29 17:12:00,589 14th St, San Francisco,CA,94016 +240369,AAA Batteries (4-pack),1,2.99,2019-08-26 20:24:00,498 Hill St, San Francisco,CA,94016 +240370,Macbook Pro Laptop,1,1700.0,2019-08-11 13:24:00,937 Johnson St, Dallas,TX,75001 +240371,Apple Airpods Headphones,1,150.0,2019-08-06 13:57:00,690 7th St, Los Angeles,CA,90001 +240372,Apple Airpods Headphones,1,150.0,2019-08-07 20:34:00,56 Meadow St, New York City,NY,10001 +240373,Apple Airpods Headphones,1,150.0,2019-08-26 18:04:00,902 Hill St, Seattle,WA,98101 +240374,Flatscreen TV,1,300.0,2019-08-27 22:02:00,178 Lincoln St, Atlanta,GA,30301 +240375,USB-C Charging Cable,1,11.95,2019-08-27 10:23:00,337 Cherry St, Seattle,WA,98101 +240376,AAA Batteries (4-pack),1,2.99,2019-08-09 01:26:00,676 Lake St, Los Angeles,CA,90001 +240377,AA Batteries (4-pack),2,3.84,2019-08-25 19:17:00,866 Forest St, Los Angeles,CA,90001 +240378,Google Phone,1,600.0,2019-08-05 08:27:00,101 Cherry St, San Francisco,CA,94016 +240379,AA Batteries (4-pack),1,3.84,2019-08-31 09:45:00,528 Lakeview St, Dallas,TX,75001 +240380,Wired Headphones,1,11.99,2019-08-12 16:04:00,559 Washington St, Seattle,WA,98101 +240381,27in 4K Gaming Monitor,1,389.99,2019-08-09 18:05:00,971 Madison St, Dallas,TX,75001 +240382,Apple Airpods Headphones,1,150.0,2019-08-25 21:26:00,108 14th St, Los Angeles,CA,90001 +240383,AA Batteries (4-pack),1,3.84,2019-08-16 07:53:00,953 Ridge St, San Francisco,CA,94016 +240384,Wired Headphones,1,11.99,2019-08-02 17:07:00,8 Sunset St, San Francisco,CA,94016 +240385,ThinkPad Laptop,1,999.99,2019-08-09 19:43:00,369 Highland St, New York City,NY,10001 +240386,20in Monitor,1,109.99,2019-08-24 21:39:00,802 West St, Boston,MA,02215 +240387,USB-C Charging Cable,1,11.95,2019-08-14 21:25:00,191 2nd St, Portland,OR,97035 +240388,34in Ultrawide Monitor,1,379.99,2019-08-17 18:02:00,773 Adams St, Los Angeles,CA,90001 +240389,Lightning Charging Cable,1,14.95,2019-08-12 10:06:00,761 Washington St, Portland,OR,97035 +240390,iPhone,1,700.0,2019-08-25 14:48:00,182 Madison St, Dallas,TX,75001 +240391,Flatscreen TV,1,300.0,2019-08-20 17:47:00,594 Jefferson St, Boston,MA,02215 +240392,27in 4K Gaming Monitor,1,389.99,2019-08-13 22:25:00,138 Ridge St, Boston,MA,02215 +240393,Wired Headphones,1,11.99,2019-08-28 13:17:00,470 14th St, New York City,NY,10001 +240394,Lightning Charging Cable,1,14.95,2019-08-10 22:27:00,432 5th St, Seattle,WA,98101 +240395,iPhone,1,700.0,2019-08-25 17:29:00,181 Hickory St, Los Angeles,CA,90001 +240395,Lightning Charging Cable,1,14.95,2019-08-25 17:29:00,181 Hickory St, Los Angeles,CA,90001 +240396,Macbook Pro Laptop,1,1700.0,2019-08-27 10:35:00,349 Willow St, Boston,MA,02215 +240397,Apple Airpods Headphones,1,150.0,2019-08-30 17:49:00,10 10th St, San Francisco,CA,94016 +240398,AA Batteries (4-pack),1,3.84,2019-08-19 13:35:00,594 Lake St, Portland,OR,97035 +240399,34in Ultrawide Monitor,1,379.99,2019-08-06 19:38:00,355 13th St, New York City,NY,10001 +240400,Wired Headphones,1,11.99,2019-08-17 10:31:00,798 Hickory St, New York City,NY,10001 +240401,Wired Headphones,1,11.99,2019-08-04 16:10:00,555 Ridge St, Dallas,TX,75001 +240402,Apple Airpods Headphones,1,150.0,2019-08-09 15:40:00,876 Elm St, San Francisco,CA,94016 +240403,USB-C Charging Cable,1,11.95,2019-08-15 16:52:00,511 Center St, Atlanta,GA,30301 +240404,Apple Airpods Headphones,1,150.0,2019-08-27 17:47:00,688 12th St, San Francisco,CA,94016 +240405,AAA Batteries (4-pack),2,2.99,2019-08-06 11:36:00,733 Elm St, Los Angeles,CA,90001 +240406,Lightning Charging Cable,1,14.95,2019-08-10 21:12:00,361 Center St, Los Angeles,CA,90001 +240407,Wired Headphones,1,11.99,2019-08-17 18:10:00,882 Cedar St, New York City,NY,10001 +240408,Apple Airpods Headphones,1,150.0,2019-08-05 12:38:00,411 Church St, Dallas,TX,75001 +240409,27in 4K Gaming Monitor,1,389.99,2019-08-23 15:28:00,17 5th St, Portland,OR,97035 +240410,Apple Airpods Headphones,1,150.0,2019-08-29 13:53:00,771 South St, Boston,MA,02215 +240411,Lightning Charging Cable,1,14.95,2019-08-08 21:50:00,558 Johnson St, Los Angeles,CA,90001 +240412,USB-C Charging Cable,1,11.95,2019-08-28 12:06:00,831 Park St, Los Angeles,CA,90001 +240413,AA Batteries (4-pack),1,3.84,2019-08-22 09:26:00,696 Center St, New York City,NY,10001 +240414,Flatscreen TV,1,300.0,2019-08-03 22:29:00,182 Lincoln St, Austin,TX,73301 +240415,Lightning Charging Cable,1,14.95,2019-08-21 17:09:00,324 13th St, Los Angeles,CA,90001 +240416,AA Batteries (4-pack),2,3.84,2019-08-17 19:35:00,341 South St, Seattle,WA,98101 +240417,AAA Batteries (4-pack),1,2.99,2019-08-22 17:44:00,926 1st St, Boston,MA,02215 +240418,27in 4K Gaming Monitor,1,389.99,2019-08-19 02:07:00,547 Elm St, Seattle,WA,98101 +240419,Wired Headphones,1,11.99,2019-08-22 13:50:00,716 Elm St, Boston,MA,02215 +240420,USB-C Charging Cable,1,11.95,2019-08-31 10:40:00,166 South St, Austin,TX,73301 +240421,Macbook Pro Laptop,1,1700.0,2019-08-26 12:26:00,717 5th St, San Francisco,CA,94016 +240422,Apple Airpods Headphones,1,150.0,2019-08-22 05:30:00,944 7th St, San Francisco,CA,94016 +240423,USB-C Charging Cable,1,11.95,2019-08-30 12:25:00,818 6th St, San Francisco,CA,94016 +240424,USB-C Charging Cable,1,11.95,2019-08-21 20:41:00,268 14th St, Atlanta,GA,30301 +240425,AA Batteries (4-pack),1,3.84,2019-08-18 14:57:00,791 Hill St, Boston,MA,02215 +240426,Bose SoundSport Headphones,1,99.99,2019-08-24 13:12:00,748 South St, Los Angeles,CA,90001 +240427,20in Monitor,1,109.99,2019-08-16 20:47:00,78 4th St, New York City,NY,10001 +240428,Lightning Charging Cable,1,14.95,2019-08-15 17:54:00,368 Park St, San Francisco,CA,94016 +240429,AAA Batteries (4-pack),1,2.99,2019-08-25 17:23:00,403 Madison St, Boston,MA,02215 +240430,34in Ultrawide Monitor,1,379.99,2019-08-24 11:32:00,199 Dogwood St, New York City,NY,10001 +240431,Lightning Charging Cable,1,14.95,2019-08-13 16:57:00,476 Pine St, Los Angeles,CA,90001 +240432,Wired Headphones,1,11.99,2019-08-09 20:32:00,555 Forest St, Seattle,WA,98101 +240433,Flatscreen TV,1,300.0,2019-08-06 11:06:00,822 Jackson St, San Francisco,CA,94016 +240434,Macbook Pro Laptop,1,1700.0,2019-08-06 18:51:00,487 Highland St, Dallas,TX,75001 +240435,Lightning Charging Cable,1,14.95,2019-08-16 21:53:00,365 11th St, Boston,MA,02215 +240436,USB-C Charging Cable,1,11.95,2019-08-20 10:47:00,223 Center St, Portland,OR,97035 +240437,USB-C Charging Cable,1,11.95,2019-08-03 18:55:00,173 West St, Los Angeles,CA,90001 +240438,Apple Airpods Headphones,1,150.0,2019-08-31 10:54:00,880 Hickory St, Dallas,TX,75001 +240439,27in FHD Monitor,1,149.99,2019-08-09 19:58:00,800 Elm St, Portland,ME,04101 +240440,Wired Headphones,1,11.99,2019-08-22 14:43:00,679 10th St, Portland,OR,97035 +240441,Lightning Charging Cable,1,14.95,2019-08-27 10:05:00,349 7th St, Dallas,TX,75001 +240442,AA Batteries (4-pack),2,3.84,2019-08-18 19:30:00,832 10th St, San Francisco,CA,94016 +240443,Lightning Charging Cable,1,14.95,2019-08-12 11:16:00,214 5th St, Los Angeles,CA,90001 +240444,AA Batteries (4-pack),1,3.84,2019-08-26 18:18:00,236 12th St, Portland,ME,04101 +240445,Flatscreen TV,1,300.0,2019-08-25 22:41:00,312 Jefferson St, Los Angeles,CA,90001 +240446,ThinkPad Laptop,1,999.99,2019-08-24 10:45:00,483 Dogwood St, San Francisco,CA,94016 +240447,Bose SoundSport Headphones,1,99.99,2019-08-27 14:23:00,236 Sunset St, Atlanta,GA,30301 +240448,iPhone,1,700.0,2019-08-12 22:16:00,845 Jackson St, Boston,MA,02215 +240449,AAA Batteries (4-pack),1,2.99,2019-08-21 06:20:00,951 Ridge St, Seattle,WA,98101 +240450,Wired Headphones,1,11.99,2019-08-27 20:14:00,547 Johnson St, Boston,MA,02215 +240451,Wired Headphones,1,11.99,2019-08-22 21:17:00,899 Elm St, Los Angeles,CA,90001 +240452,Google Phone,1,600.0,2019-08-15 23:21:00,465 7th St, Los Angeles,CA,90001 +240453,Flatscreen TV,1,300.0,2019-08-26 00:25:00,889 Wilson St, Los Angeles,CA,90001 +240454,27in FHD Monitor,1,149.99,2019-08-19 08:24:00,65 Cedar St, Seattle,WA,98101 +240455,Lightning Charging Cable,1,14.95,2019-08-10 08:21:00,959 Church St, Dallas,TX,75001 +240456,Wired Headphones,1,11.99,2019-08-01 12:14:00,503 West St, Los Angeles,CA,90001 +240457,20in Monitor,1,109.99,2019-08-03 12:12:00,500 11th St, Boston,MA,02215 +240458,USB-C Charging Cable,1,11.95,2019-08-19 14:53:00,772 7th St, Portland,OR,97035 +240459,Lightning Charging Cable,1,14.95,2019-08-15 13:51:00,756 Main St, Los Angeles,CA,90001 +240460,AA Batteries (4-pack),1,3.84,2019-08-15 14:27:00,392 Washington St, San Francisco,CA,94016 +240461,AA Batteries (4-pack),1,3.84,2019-08-03 16:31:00,381 Ridge St, San Francisco,CA,94016 +240462,AAA Batteries (4-pack),1,2.99,2019-08-07 11:42:00,331 South St, San Francisco,CA,94016 +240463,AAA Batteries (4-pack),1,2.99,2019-08-31 05:56:00,738 Lincoln St, Dallas,TX,75001 +240464,AA Batteries (4-pack),1,3.84,2019-08-28 17:30:00,808 Spruce St, Boston,MA,02215 +240465,Lightning Charging Cable,1,14.95,2019-08-15 16:59:00,222 9th St, Portland,OR,97035 +240466,34in Ultrawide Monitor,1,379.99,2019-08-02 12:33:00,178 North St, Seattle,WA,98101 +240467,Lightning Charging Cable,1,14.95,2019-08-07 22:40:00,204 Wilson St, Los Angeles,CA,90001 +240468,USB-C Charging Cable,1,11.95,2019-08-29 02:01:00,883 South St, Portland,ME,04101 +240469,AAA Batteries (4-pack),1,2.99,2019-08-24 12:58:00,811 South St, Austin,TX,73301 +240470,Lightning Charging Cable,1,14.95,2019-08-21 16:57:00,13 Main St, Seattle,WA,98101 +240471,Wired Headphones,1,11.99,2019-08-30 13:40:00,109 Chestnut St, Boston,MA,02215 +240472,Bose SoundSport Headphones,1,99.99,2019-08-04 17:41:00,661 Park St, Portland,OR,97035 +240473,AA Batteries (4-pack),2,3.84,2019-08-08 19:52:00,478 Sunset St, Seattle,WA,98101 +240474,AA Batteries (4-pack),1,3.84,2019-08-18 16:16:00,663 Chestnut St, San Francisco,CA,94016 +240474,Wired Headphones,1,11.99,2019-08-18 16:16:00,663 Chestnut St, San Francisco,CA,94016 +240475,Apple Airpods Headphones,1,150.0,2019-08-30 21:04:00,612 1st St, Seattle,WA,98101 +240476,AAA Batteries (4-pack),1,2.99,2019-08-09 21:03:00,196 Meadow St, San Francisco,CA,94016 +240477,USB-C Charging Cable,1,11.95,2019-08-20 13:41:00,668 5th St, Los Angeles,CA,90001 +240478,Apple Airpods Headphones,1,150.0,2019-08-10 17:37:00,343 8th St, Seattle,WA,98101 +240479,AA Batteries (4-pack),1,3.84,2019-08-13 19:36:00,195 6th St, New York City,NY,10001 +240479,Wired Headphones,1,11.99,2019-08-13 19:36:00,195 6th St, New York City,NY,10001 +240480,AA Batteries (4-pack),1,3.84,2019-08-24 11:10:00,857 Jefferson St, Boston,MA,02215 +240481,Bose SoundSport Headphones,1,99.99,2019-08-28 13:12:00,480 6th St, Atlanta,GA,30301 +240482,AAA Batteries (4-pack),1,2.99,2019-08-29 11:56:00,82 Madison St, Seattle,WA,98101 +240483,LG Dryer,1,600.0,2019-08-30 19:21:00,682 Washington St, Austin,TX,73301 +240484,20in Monitor,1,109.99,2019-08-25 13:49:00,559 Cedar St, San Francisco,CA,94016 +240485,iPhone,1,700.0,2019-08-02 21:10:00,255 9th St, San Francisco,CA,94016 +240486,Lightning Charging Cable,1,14.95,2019-08-23 16:18:00,262 12th St, San Francisco,CA,94016 +240487,Wired Headphones,1,11.99,2019-08-02 11:47:00,37 7th St, Los Angeles,CA,90001 +240488,Apple Airpods Headphones,1,150.0,2019-08-21 16:31:00,797 1st St, Boston,MA,02215 +240489,27in 4K Gaming Monitor,1,389.99,2019-08-08 19:49:00,4 North St, New York City,NY,10001 +240490,27in 4K Gaming Monitor,1,389.99,2019-08-14 20:31:00,172 Forest St, Seattle,WA,98101 +240490,AAA Batteries (4-pack),1,2.99,2019-08-14 20:31:00,172 Forest St, Seattle,WA,98101 +240491,Apple Airpods Headphones,1,150.0,2019-08-13 12:52:00,711 Lakeview St, New York City,NY,10001 +240492,Lightning Charging Cable,1,14.95,2019-08-16 06:45:00,15 Wilson St, Dallas,TX,75001 +240493,Wired Headphones,1,11.99,2019-08-17 17:48:00,972 1st St, Los Angeles,CA,90001 +240494,AAA Batteries (4-pack),1,2.99,2019-08-31 13:25:00,937 1st St, Boston,MA,02215 +240495,Lightning Charging Cable,2,14.95,2019-08-23 14:06:00,566 Washington St, Atlanta,GA,30301 +240496,AAA Batteries (4-pack),1,2.99,2019-08-24 19:34:00,930 Willow St, New York City,NY,10001 +240497,AA Batteries (4-pack),1,3.84,2019-08-30 13:08:00,980 Dogwood St, San Francisco,CA,94016 +240498,AAA Batteries (4-pack),3,2.99,2019-08-02 13:41:00,630 Pine St, Dallas,TX,75001 +240499,Lightning Charging Cable,1,14.95,2019-08-03 10:18:00,221 12th St, Los Angeles,CA,90001 +240500,USB-C Charging Cable,1,11.95,2019-08-29 20:59:00,894 4th St, Seattle,WA,98101 +240501,USB-C Charging Cable,1,11.95,2019-08-29 10:54:00,34 12th St, Portland,OR,97035 +240502,Bose SoundSport Headphones,1,99.99,2019-08-15 16:16:00,685 Washington St, Austin,TX,73301 +240503,LG Dryer,1,600.0,2019-08-14 00:41:00,194 14th St, Portland,OR,97035 +240504,AA Batteries (4-pack),2,3.84,2019-08-29 09:48:00,347 Forest St, Boston,MA,02215 +240505,Google Phone,1,600.0,2019-08-20 15:17:00,433 Church St, Dallas,TX,75001 +240506,Lightning Charging Cable,1,14.95,2019-08-24 23:01:00,73 Ridge St, Dallas,TX,75001 +240507,Macbook Pro Laptop,1,1700.0,2019-08-12 13:40:00,232 14th St, Dallas,TX,75001 +240508,Apple Airpods Headphones,1,150.0,2019-08-03 13:24:00,529 Dogwood St, Los Angeles,CA,90001 +240509,ThinkPad Laptop,1,999.99,2019-08-27 16:55:00,968 Spruce St, Los Angeles,CA,90001 +240510,AA Batteries (4-pack),1,3.84,2019-08-06 23:14:00,152 7th St, Boston,MA,02215 +240511,AAA Batteries (4-pack),2,2.99,2019-08-04 21:58:00,913 6th St, Dallas,TX,75001 +240512,USB-C Charging Cable,1,11.95,2019-08-22 07:32:00,958 North St, Los Angeles,CA,90001 +240513,Apple Airpods Headphones,1,150.0,2019-08-16 19:04:00,900 Hill St, New York City,NY,10001 +240514,Wired Headphones,1,11.99,2019-08-21 18:11:00,267 Spruce St, Seattle,WA,98101 +240515,Lightning Charging Cable,1,14.95,2019-08-13 13:46:00,209 North St, New York City,NY,10001 +240516,Lightning Charging Cable,1,14.95,2019-08-12 20:41:00,62 Lincoln St, San Francisco,CA,94016 +240517,Lightning Charging Cable,1,14.95,2019-08-07 10:17:00,689 Lincoln St, San Francisco,CA,94016 +240518,AAA Batteries (4-pack),1,2.99,2019-08-07 15:12:00,222 Park St, Seattle,WA,98101 +240519,Bose SoundSport Headphones,1,99.99,2019-08-31 20:12:00,860 Washington St, Los Angeles,CA,90001 +240520,Wired Headphones,1,11.99,2019-08-22 13:05:00,906 9th St, Dallas,TX,75001 +240521,AAA Batteries (4-pack),1,2.99,2019-08-18 15:11:00,25 5th St, San Francisco,CA,94016 +240522,Apple Airpods Headphones,1,150.0,2019-08-12 16:25:00,205 Hill St, Atlanta,GA,30301 +240523,ThinkPad Laptop,1,999.99,2019-08-19 09:39:00,557 Ridge St, Dallas,TX,75001 +240524,Wired Headphones,1,11.99,2019-08-07 19:46:00,556 Chestnut St, San Francisco,CA,94016 +240525,Apple Airpods Headphones,1,150.0,2019-08-10 16:28:00,15 Hill St, Seattle,WA,98101 +240526,Lightning Charging Cable,1,14.95,2019-08-26 20:07:00,542 6th St, Dallas,TX,75001 +240527,Apple Airpods Headphones,1,150.0,2019-08-16 09:42:00,298 14th St, Los Angeles,CA,90001 +240528,USB-C Charging Cable,1,11.95,2019-08-21 06:39:00,693 Johnson St, San Francisco,CA,94016 +240529,Lightning Charging Cable,1,14.95,2019-08-29 11:13:00,275 Hill St, Seattle,WA,98101 +240530,27in 4K Gaming Monitor,1,389.99,2019-08-31 11:44:00,28 Ridge St, San Francisco,CA,94016 +240531,USB-C Charging Cable,1,11.95,2019-08-20 09:57:00,911 Maple St, Dallas,TX,75001 +240532,USB-C Charging Cable,1,11.95,2019-08-16 08:55:00,213 Center St, New York City,NY,10001 +240533,Bose SoundSport Headphones,1,99.99,2019-08-30 12:27:00,687 Pine St, San Francisco,CA,94016 +240534,Lightning Charging Cable,1,14.95,2019-08-15 23:30:00,805 Dogwood St, Boston,MA,02215 +240535,Wired Headphones,1,11.99,2019-08-21 12:43:00,182 Maple St, Dallas,TX,75001 +240536,LG Washing Machine,1,600.0,2019-08-02 16:38:00,113 Lake St, Portland,OR,97035 +240537,Wired Headphones,1,11.99,2019-08-29 17:26:00,358 5th St, New York City,NY,10001 +240538,Wired Headphones,1,11.99,2019-08-12 19:15:00,721 Spruce St, San Francisco,CA,94016 +240539,ThinkPad Laptop,1,999.99,2019-08-15 21:27:00,322 Walnut St, New York City,NY,10001 +240540,34in Ultrawide Monitor,1,379.99,2019-08-27 19:23:00,603 Jefferson St, San Francisco,CA,94016 +240541,iPhone,1,700.0,2019-08-19 16:26:00,418 14th St, Los Angeles,CA,90001 +240542,Wired Headphones,2,11.99,2019-08-15 21:43:00,221 12th St, Portland,OR,97035 +240543,Wired Headphones,1,11.99,2019-08-21 20:00:00,500 13th St, Portland,OR,97035 +240544,AA Batteries (4-pack),1,3.84,2019-08-12 13:28:00,43 Jefferson St, Boston,MA,02215 +240545,Bose SoundSport Headphones,1,99.99,2019-08-06 16:15:00,229 West St, Los Angeles,CA,90001 +240546,AAA Batteries (4-pack),1,2.99,2019-08-01 23:26:00,654 Ridge St, Seattle,WA,98101 +240547,ThinkPad Laptop,1,999.99,2019-08-27 20:56:00,606 North St, San Francisco,CA,94016 +240548,Wired Headphones,1,11.99,2019-08-13 03:34:00,626 1st St, Boston,MA,02215 +240549,Bose SoundSport Headphones,1,99.99,2019-08-06 11:32:00,843 South St, Portland,ME,04101 +240550,Google Phone,1,600.0,2019-08-14 11:07:00,237 13th St, New York City,NY,10001 +240550,Bose SoundSport Headphones,1,99.99,2019-08-14 11:07:00,237 13th St, New York City,NY,10001 +240551,Wired Headphones,3,11.99,2019-08-24 11:46:00,780 Dogwood St, San Francisco,CA,94016 +240552,USB-C Charging Cable,1,11.95,2019-08-03 11:00:00,446 12th St, San Francisco,CA,94016 +240553,Bose SoundSport Headphones,1,99.99,2019-08-03 08:38:00,533 11th St, New York City,NY,10001 +240554,Bose SoundSport Headphones,1,99.99,2019-08-31 14:03:00,988 Park St, San Francisco,CA,94016 +240555,AAA Batteries (4-pack),1,2.99,2019-08-31 01:02:00,931 South St, Boston,MA,02215 +240556,AAA Batteries (4-pack),2,2.99,2019-08-18 21:53:00,354 Madison St, San Francisco,CA,94016 +240557,Apple Airpods Headphones,1,150.0,2019-08-08 18:41:00,16 Highland St, San Francisco,CA,94016 +240558,Wired Headphones,2,11.99,2019-08-31 13:37:00,993 9th St, San Francisco,CA,94016 +240559,Lightning Charging Cable,1,14.95,2019-08-29 14:10:00,868 Lincoln St, New York City,NY,10001 +240560,Lightning Charging Cable,1,14.95,2019-08-25 09:10:00,214 Ridge St, Atlanta,GA,30301 +240561,AAA Batteries (4-pack),1,2.99,2019-08-05 11:28:00,943 Main St, Boston,MA,02215 +240562,iPhone,1,700.0,2019-08-16 19:21:00,822 8th St, New York City,NY,10001 +240563,Bose SoundSport Headphones,1,99.99,2019-08-09 21:44:00,107 Hickory St, Atlanta,GA,30301 +240564,USB-C Charging Cable,1,11.95,2019-08-27 02:11:00,374 Hill St, San Francisco,CA,94016 +240565,27in FHD Monitor,1,149.99,2019-08-30 11:10:00,338 2nd St, Los Angeles,CA,90001 +240566,AA Batteries (4-pack),1,3.84,2019-08-17 09:47:00,480 Maple St, Dallas,TX,75001 +240567,27in FHD Monitor,1,149.99,2019-08-04 18:11:00,893 2nd St, Portland,OR,97035 +240568,Apple Airpods Headphones,1,150.0,2019-08-22 15:45:00,428 Church St, Seattle,WA,98101 +240569,Lightning Charging Cable,1,14.95,2019-08-31 22:11:00,455 10th St, Portland,OR,97035 +240570,USB-C Charging Cable,1,11.95,2019-08-14 19:35:00,280 14th St, Los Angeles,CA,90001 +240571,USB-C Charging Cable,1,11.95,2019-08-16 10:55:00,357 Sunset St, San Francisco,CA,94016 +240572,Bose SoundSport Headphones,1,99.99,2019-08-21 19:25:00,665 Wilson St, Austin,TX,73301 +240573,Wired Headphones,1,11.99,2019-08-01 09:57:00,283 River St, Boston,MA,02215 +240574,AA Batteries (4-pack),1,3.84,2019-08-19 11:02:00,557 11th St, San Francisco,CA,94016 +240575,34in Ultrawide Monitor,1,379.99,2019-08-02 19:43:00,882 14th St, Boston,MA,02215 +240576,Wired Headphones,1,11.99,2019-08-21 22:04:00,71 West St, San Francisco,CA,94016 +240577,Lightning Charging Cable,1,14.95,2019-08-11 00:34:00,888 River St, San Francisco,CA,94016 +240578,AA Batteries (4-pack),1,3.84,2019-08-02 17:20:00,638 Highland St, Dallas,TX,75001 +240579,Macbook Pro Laptop,1,1700.0,2019-08-10 20:42:00,647 South St, Seattle,WA,98101 +240580,AAA Batteries (4-pack),2,2.99,2019-08-07 23:35:00,559 Chestnut St, New York City,NY,10001 +240581,AAA Batteries (4-pack),1,2.99,2019-08-22 09:38:00,443 Cedar St, San Francisco,CA,94016 +240582,Lightning Charging Cable,1,14.95,2019-08-04 07:45:00,364 Madison St, Atlanta,GA,30301 +240583,AA Batteries (4-pack),1,3.84,2019-08-26 19:39:00,449 Center St, Boston,MA,02215 +240584,Bose SoundSport Headphones,1,99.99,2019-08-29 02:49:00,94 Meadow St, San Francisco,CA,94016 +240585,27in 4K Gaming Monitor,1,389.99,2019-08-06 13:04:00,641 West St, Dallas,TX,75001 +240586,Lightning Charging Cable,1,14.95,2019-08-09 18:59:00,164 10th St, Austin,TX,73301 +240587,27in FHD Monitor,1,149.99,2019-08-18 13:44:00,59 Dogwood St, Los Angeles,CA,90001 +240588,Lightning Charging Cable,1,14.95,2019-08-10 16:40:00,776 9th St, Austin,TX,73301 +240589,27in 4K Gaming Monitor,2,389.99,2019-08-10 20:22:00,862 Church St, Boston,MA,02215 +240590,27in 4K Gaming Monitor,1,389.99,2019-08-26 07:18:00,128 South St, New York City,NY,10001 +240591,Apple Airpods Headphones,1,150.0,2019-08-21 14:13:00,606 Jefferson St, Los Angeles,CA,90001 +240592,Wired Headphones,1,11.99,2019-08-12 08:49:00,571 Walnut St, Portland,OR,97035 +240593,AAA Batteries (4-pack),2,2.99,2019-08-10 08:23:00,411 Jefferson St, New York City,NY,10001 +240594,Lightning Charging Cable,1,14.95,2019-08-04 17:55:00,850 Willow St, Los Angeles,CA,90001 +240595,iPhone,1,700.0,2019-08-12 23:02:00,137 Willow St, San Francisco,CA,94016 +240596,Flatscreen TV,1,300.0,2019-08-28 20:29:00,419 Adams St, New York City,NY,10001 +240597,AAA Batteries (4-pack),1,2.99,2019-08-29 17:02:00,773 Elm St, San Francisco,CA,94016 +240598,34in Ultrawide Monitor,1,379.99,2019-08-10 22:49:00,872 River St, Seattle,WA,98101 +240599,Flatscreen TV,1,300.0,2019-08-05 16:32:00,853 Park St, Seattle,WA,98101 +240600,27in 4K Gaming Monitor,1,389.99,2019-08-15 10:59:00,469 10th St, San Francisco,CA,94016 +240601,Lightning Charging Cable,1,14.95,2019-08-30 14:21:00,596 Hill St, San Francisco,CA,94016 +240602,Wired Headphones,1,11.99,2019-08-30 15:34:00,358 Highland St, San Francisco,CA,94016 +240603,Apple Airpods Headphones,1,150.0,2019-08-10 10:56:00,870 Spruce St, New York City,NY,10001 +240604,Apple Airpods Headphones,1,150.0,2019-08-04 07:02:00,538 Walnut St, Austin,TX,73301 +240605,USB-C Charging Cable,1,11.95,2019-08-14 15:01:00,784 Pine St, Seattle,WA,98101 +240606,27in FHD Monitor,1,149.99,2019-08-01 17:23:00,700 River St, Los Angeles,CA,90001 +240607,USB-C Charging Cable,2,11.95,2019-08-23 08:09:00,981 Madison St, Austin,TX,73301 +240608,Wired Headphones,1,11.99,2019-08-08 07:42:00,170 Washington St, Seattle,WA,98101 +240609,USB-C Charging Cable,1,11.95,2019-08-06 13:09:00,310 2nd St, San Francisco,CA,94016 +240610,Google Phone,1,600.0,2019-08-05 14:22:00,331 Madison St, Seattle,WA,98101 +240611,AAA Batteries (4-pack),1,2.99,2019-08-10 15:51:00,32 Spruce St, New York City,NY,10001 +240612,AA Batteries (4-pack),1,3.84,2019-08-19 23:26:00,339 12th St, New York City,NY,10001 +240613,AA Batteries (4-pack),1,3.84,2019-08-24 09:03:00,557 Chestnut St, San Francisco,CA,94016 +240614,AA Batteries (4-pack),1,3.84,2019-08-06 18:29:00,507 Jefferson St, Los Angeles,CA,90001 +240615,iPhone,1,700.0,2019-08-20 22:57:00,568 Willow St, San Francisco,CA,94016 +240616,iPhone,1,700.0,2019-08-20 10:06:00,984 Chestnut St, Los Angeles,CA,90001 +240617,USB-C Charging Cable,1,11.95,2019-08-08 20:47:00,713 Church St, New York City,NY,10001 +240618,Apple Airpods Headphones,1,150.0,2019-08-16 13:28:00,520 Lakeview St, Atlanta,GA,30301 +240619,AA Batteries (4-pack),3,3.84,2019-08-24 12:15:00,50 13th St, Seattle,WA,98101 +240620,Wired Headphones,1,11.99,2019-08-03 12:46:00,685 Adams St, San Francisco,CA,94016 +240621,AAA Batteries (4-pack),1,2.99,2019-08-31 15:35:00,77 Church St, San Francisco,CA,94016 +240622,USB-C Charging Cable,1,11.95,2019-08-08 18:37:00,664 Spruce St, Los Angeles,CA,90001 +240623,AAA Batteries (4-pack),1,2.99,2019-08-16 21:11:00,315 Spruce St, New York City,NY,10001 +240624,Wired Headphones,1,11.99,2019-08-30 12:09:00,337 12th St, San Francisco,CA,94016 +240625,AA Batteries (4-pack),1,3.84,2019-08-14 05:12:00,958 Church St, New York City,NY,10001 +240626,34in Ultrawide Monitor,1,379.99,2019-08-09 14:02:00,356 8th St, Austin,TX,73301 +240627,USB-C Charging Cable,1,11.95,2019-08-01 19:48:00,865 Johnson St, Seattle,WA,98101 +240628,Google Phone,1,600.0,2019-08-21 17:21:00,668 14th St, San Francisco,CA,94016 +240629,Vareebadd Phone,1,400.0,2019-08-19 13:08:00,935 Madison St, New York City,NY,10001 +240629,USB-C Charging Cable,1,11.95,2019-08-19 13:08:00,935 Madison St, New York City,NY,10001 +240630,Wired Headphones,1,11.99,2019-08-31 19:13:00,348 Lincoln St, San Francisco,CA,94016 +240631,iPhone,1,700.0,2019-08-20 10:21:00,397 Hickory St, Austin,TX,73301 +240632,Apple Airpods Headphones,1,150.0,2019-08-16 21:03:00,173 Main St, Los Angeles,CA,90001 +240633,Bose SoundSport Headphones,1,99.99,2019-08-13 22:35:00,56 South St, San Francisco,CA,94016 +240634,Apple Airpods Headphones,1,150.0,2019-08-12 17:01:00,252 13th St, Los Angeles,CA,90001 +240635,AA Batteries (4-pack),1,3.84,2019-08-18 14:02:00,881 1st St, Seattle,WA,98101 +240636,Lightning Charging Cable,1,14.95,2019-09-01 02:07:00,63 1st St, Seattle,WA,98101 +240637,Wired Headphones,1,11.99,2019-08-18 21:23:00,754 Lincoln St, New York City,NY,10001 +240638,AA Batteries (4-pack),1,3.84,2019-08-20 16:10:00,747 Highland St, Boston,MA,02215 +240639,27in 4K Gaming Monitor,1,389.99,2019-08-11 08:16:00,564 South St, Atlanta,GA,30301 +240640,USB-C Charging Cable,1,11.95,2019-08-03 18:27:00,140 Adams St, Dallas,TX,75001 +240641,AA Batteries (4-pack),1,3.84,2019-08-01 12:08:00,663 Main St, San Francisco,CA,94016 +240642,Apple Airpods Headphones,1,150.0,2019-08-20 15:05:00,270 12th St, Portland,ME,04101 +240643,Lightning Charging Cable,1,14.95,2019-08-31 22:56:00,200 Adams St, Dallas,TX,75001 +240644,AAA Batteries (4-pack),1,2.99,2019-08-08 11:37:00,325 Madison St, Los Angeles,CA,90001 +240645,Wired Headphones,1,11.99,2019-08-30 12:00:00,160 13th St, San Francisco,CA,94016 +240646,34in Ultrawide Monitor,1,379.99,2019-08-26 18:46:00,688 Maple St, San Francisco,CA,94016 +240647,Google Phone,1,600.0,2019-08-24 12:56:00,930 Jackson St, Atlanta,GA,30301 +240647,USB-C Charging Cable,2,11.95,2019-08-24 12:56:00,930 Jackson St, Atlanta,GA,30301 +240648,AA Batteries (4-pack),1,3.84,2019-08-20 20:34:00,965 Jefferson St, Boston,MA,02215 +240649,Lightning Charging Cable,1,14.95,2019-08-30 22:21:00,189 Lake St, Seattle,WA,98101 +240650,Bose SoundSport Headphones,1,99.99,2019-08-03 15:33:00,321 Church St, Boston,MA,02215 +240651,Bose SoundSport Headphones,1,99.99,2019-08-10 19:25:00,933 10th St, San Francisco,CA,94016 +240652,27in 4K Gaming Monitor,1,389.99,2019-08-08 11:00:00,175 1st St, San Francisco,CA,94016 +240653,Flatscreen TV,1,300.0,2019-08-03 09:51:00,569 Church St, Austin,TX,73301 +240654,AA Batteries (4-pack),1,3.84,2019-08-09 12:05:00,670 River St, Dallas,TX,75001 +240655,34in Ultrawide Monitor,1,379.99,2019-08-14 16:39:00,913 Washington St, Dallas,TX,75001 +240656,AAA Batteries (4-pack),1,2.99,2019-08-04 13:18:00,961 Highland St, Boston,MA,02215 +240657,Lightning Charging Cable,1,14.95,2019-08-26 21:43:00,249 Cedar St, San Francisco,CA,94016 +240658,Bose SoundSport Headphones,1,99.99,2019-08-30 21:55:00,753 Cedar St, San Francisco,CA,94016 +240659,Bose SoundSport Headphones,1,99.99,2019-08-02 19:22:00,736 7th St, Seattle,WA,98101 +240660,AA Batteries (4-pack),1,3.84,2019-08-05 22:10:00,381 Pine St, Boston,MA,02215 +240661,27in 4K Gaming Monitor,1,389.99,2019-08-14 14:53:00,330 Cedar St, New York City,NY,10001 +240662,Wired Headphones,1,11.99,2019-08-15 10:28:00,777 Lake St, Austin,TX,73301 +240663,USB-C Charging Cable,2,11.95,2019-08-31 09:38:00,329 Elm St, New York City,NY,10001 +240664,Flatscreen TV,1,300.0,2019-08-12 11:11:00,535 14th St, Boston,MA,02215 +240665,Wired Headphones,1,11.99,2019-08-25 06:15:00,335 Maple St, Boston,MA,02215 +240666,27in FHD Monitor,1,149.99,2019-08-19 14:02:00,282 South St, Boston,MA,02215 +240667,iPhone,1,700.0,2019-08-30 21:54:00,773 Spruce St, Austin,TX,73301 +240667,Lightning Charging Cable,1,14.95,2019-08-30 21:54:00,773 Spruce St, Austin,TX,73301 +240668,34in Ultrawide Monitor,1,379.99,2019-08-28 21:09:00,454 Willow St, San Francisco,CA,94016 +240669,USB-C Charging Cable,1,11.95,2019-08-26 10:41:00,94 Hill St, Boston,MA,02215 +240670,AA Batteries (4-pack),2,3.84,2019-08-21 21:57:00,893 Highland St, Seattle,WA,98101 +240671,Lightning Charging Cable,1,14.95,2019-08-07 09:11:00,127 Maple St, San Francisco,CA,94016 +240672,Lightning Charging Cable,1,14.95,2019-08-27 12:13:00,50 2nd St, New York City,NY,10001 +240673,27in 4K Gaming Monitor,1,389.99,2019-08-25 18:38:00,781 Meadow St, Atlanta,GA,30301 +240674,AA Batteries (4-pack),1,3.84,2019-08-22 20:11:00,579 Walnut St, San Francisco,CA,94016 +240675,ThinkPad Laptop,1,999.99,2019-08-07 15:37:00,240 Meadow St, New York City,NY,10001 +240676,iPhone,1,700.0,2019-08-31 07:04:00,982 Pine St, San Francisco,CA,94016 +240677,AA Batteries (4-pack),1,3.84,2019-08-19 15:08:00,687 5th St, Austin,TX,73301 +240678,USB-C Charging Cable,1,11.95,2019-08-23 10:54:00,116 Spruce St, San Francisco,CA,94016 +240679,Wired Headphones,1,11.99,2019-08-24 20:56:00,764 5th St, San Francisco,CA,94016 +240680,Bose SoundSport Headphones,1,99.99,2019-08-27 16:27:00,91 South St, San Francisco,CA,94016 +240681,Apple Airpods Headphones,1,150.0,2019-08-08 15:56:00,15 Willow St, San Francisco,CA,94016 +240682,27in FHD Monitor,1,149.99,2019-08-12 10:51:00,869 Jefferson St, Austin,TX,73301 +240683,27in FHD Monitor,1,149.99,2019-08-27 16:56:00,584 11th St, San Francisco,CA,94016 +240684,Apple Airpods Headphones,1,150.0,2019-08-13 22:45:00,84 Spruce St, New York City,NY,10001 +240684,iPhone,1,700.0,2019-08-13 22:45:00,84 Spruce St, New York City,NY,10001 +240685,Vareebadd Phone,1,400.0,2019-08-16 22:10:00,47 Adams St, San Francisco,CA,94016 +240686,Lightning Charging Cable,3,14.95,2019-08-31 15:47:00,937 10th St, San Francisco,CA,94016 +240687,ThinkPad Laptop,1,999.99,2019-08-14 00:45:00,117 Elm St, San Francisco,CA,94016 +240688,Wired Headphones,1,11.99,2019-08-01 11:25:00,961 Adams St, Seattle,WA,98101 +240689,27in 4K Gaming Monitor,1,389.99,2019-08-16 12:59:00,708 Wilson St, Los Angeles,CA,90001 +240690,Wired Headphones,1,11.99,2019-08-01 22:47:00,521 Main St, San Francisco,CA,94016 +240691,AA Batteries (4-pack),1,3.84,2019-08-12 14:32:00,562 Spruce St, Austin,TX,73301 +240692,AA Batteries (4-pack),2,3.84,2019-08-20 13:58:00,351 Jackson St, Austin,TX,73301 +240692,AA Batteries (4-pack),1,3.84,2019-08-20 13:58:00,351 Jackson St, Austin,TX,73301 +240693,AA Batteries (4-pack),1,3.84,2019-08-05 23:50:00,327 Spruce St, Los Angeles,CA,90001 +240694,Lightning Charging Cable,1,14.95,2019-08-17 20:21:00,265 Church St, Los Angeles,CA,90001 +240695,AA Batteries (4-pack),1,3.84,2019-08-28 18:53:00,379 River St, Dallas,TX,75001 +240696,USB-C Charging Cable,1,11.95,2019-08-09 22:49:00,134 Wilson St, Los Angeles,CA,90001 +240697,27in 4K Gaming Monitor,1,389.99,2019-08-10 13:38:00,447 Spruce St, Atlanta,GA,30301 +240698,27in FHD Monitor,1,149.99,2019-08-01 11:44:00,774 Johnson St, Portland,OR,97035 +240699,Flatscreen TV,1,300.0,2019-08-08 09:17:00,571 Madison St, Boston,MA,02215 +240700,AAA Batteries (4-pack),1,2.99,2019-08-17 23:00:00,506 Maple St, Portland,OR,97035 +240701,Apple Airpods Headphones,1,150.0,2019-08-26 16:02:00,357 Elm St, New York City,NY,10001 +240702,Lightning Charging Cable,1,14.95,2019-08-04 12:34:00,799 Pine St, Atlanta,GA,30301 +240703,27in FHD Monitor,1,149.99,2019-08-22 10:54:00,925 Hill St, Dallas,TX,75001 +240704,Macbook Pro Laptop,1,1700.0,2019-08-08 11:22:00,761 Cedar St, Boston,MA,02215 +240705,Google Phone,1,600.0,2019-08-03 06:51:00,60 Main St, Dallas,TX,75001 +240706,27in 4K Gaming Monitor,1,389.99,2019-08-25 05:32:00,105 North St, Austin,TX,73301 +240707,Apple Airpods Headphones,1,150.0,2019-08-04 19:10:00,373 Cedar St, San Francisco,CA,94016 +240708,LG Washing Machine,1,600.0,2019-08-31 19:26:00,520 1st St, San Francisco,CA,94016 +240709,iPhone,1,700.0,2019-08-22 19:26:00,462 7th St, Boston,MA,02215 +240710,Vareebadd Phone,1,400.0,2019-08-21 12:54:00,957 6th St, Boston,MA,02215 +240710,USB-C Charging Cable,1,11.95,2019-08-21 12:54:00,957 6th St, Boston,MA,02215 +240711,AAA Batteries (4-pack),1,2.99,2019-08-31 07:04:00,973 Wilson St, New York City,NY,10001 +240712,Flatscreen TV,1,300.0,2019-08-27 20:21:00,666 Dogwood St, San Francisco,CA,94016 +240713,Apple Airpods Headphones,1,150.0,2019-08-27 01:34:00,273 1st St, Los Angeles,CA,90001 +240714,Lightning Charging Cable,1,14.95,2019-08-20 11:14:00,260 North St, Los Angeles,CA,90001 +240715,27in FHD Monitor,1,149.99,2019-08-10 13:14:00,709 North St, Dallas,TX,75001 +240716,Wired Headphones,1,11.99,2019-08-29 13:23:00,726 West St, Los Angeles,CA,90001 +240717,Bose SoundSport Headphones,1,99.99,2019-08-22 17:43:00,621 1st St, Los Angeles,CA,90001 +240718,iPhone,1,700.0,2019-08-07 14:39:00,76 Ridge St, Seattle,WA,98101 +240718,Bose SoundSport Headphones,1,99.99,2019-08-07 14:39:00,76 Ridge St, Seattle,WA,98101 +240719,Apple Airpods Headphones,1,150.0,2019-08-03 09:29:00,749 14th St, Los Angeles,CA,90001 +240720,AA Batteries (4-pack),1,3.84,2019-08-25 09:11:00,145 Pine St, San Francisco,CA,94016 +240721,Lightning Charging Cable,1,14.95,2019-08-20 22:43:00,523 Pine St, Atlanta,GA,30301 +240722,Wired Headphones,1,11.99,2019-08-15 12:10:00,700 5th St, Los Angeles,CA,90001 +240723,Bose SoundSport Headphones,1,99.99,2019-08-04 17:01:00,412 13th St, San Francisco,CA,94016 +240724,USB-C Charging Cable,1,11.95,2019-08-11 17:00:00,120 4th St, Portland,OR,97035 +240725,AAA Batteries (4-pack),1,2.99,2019-08-16 13:24:00,372 13th St, San Francisco,CA,94016 +240726,27in 4K Gaming Monitor,1,389.99,2019-08-24 09:17:00,301 5th St, New York City,NY,10001 +240727,USB-C Charging Cable,1,11.95,2019-08-30 12:45:00,888 Lincoln St, Boston,MA,02215 +240728,Apple Airpods Headphones,1,150.0,2019-08-12 21:46:00,430 Willow St, Portland,OR,97035 +240729,Lightning Charging Cable,1,14.95,2019-08-17 16:42:00,940 North St, Los Angeles,CA,90001 +240730,Flatscreen TV,1,300.0,2019-08-09 09:03:00,681 Adams St, Atlanta,GA,30301 +240731,AA Batteries (4-pack),1,3.84,2019-08-17 17:16:00,163 River St, Austin,TX,73301 +240732,AAA Batteries (4-pack),2,2.99,2019-08-13 11:26:00,513 North St, Los Angeles,CA,90001 +240733,Bose SoundSport Headphones,1,99.99,2019-08-12 11:21:00,341 Jackson St, San Francisco,CA,94016 +240734,Wired Headphones,1,11.99,2019-08-24 21:42:00,269 13th St, Atlanta,GA,30301 +240735,AAA Batteries (4-pack),1,2.99,2019-08-27 09:33:00,164 South St, Los Angeles,CA,90001 +240736,USB-C Charging Cable,1,11.95,2019-08-20 15:03:00,679 West St, Los Angeles,CA,90001 +240737,AA Batteries (4-pack),2,3.84,2019-08-19 13:27:00,229 Maple St, Austin,TX,73301 +240738,Apple Airpods Headphones,1,150.0,2019-08-14 07:48:00,230 7th St, Los Angeles,CA,90001 +240739,AAA Batteries (4-pack),1,2.99,2019-08-22 18:27:00,273 Cedar St, Portland,OR,97035 +240740,AA Batteries (4-pack),2,3.84,2019-08-17 22:48:00,35 9th St, San Francisco,CA,94016 +240741,27in 4K Gaming Monitor,1,389.99,2019-08-12 11:46:00,526 Washington St, Portland,OR,97035 +240742,AAA Batteries (4-pack),1,2.99,2019-08-28 22:45:00,138 Willow St, Dallas,TX,75001 +240742,Wired Headphones,2,11.99,2019-08-28 22:45:00,138 Willow St, Dallas,TX,75001 +240743,Bose SoundSport Headphones,1,99.99,2019-08-26 11:50:00,737 West St, Boston,MA,02215 +240744,Apple Airpods Headphones,1,150.0,2019-08-28 12:30:00,206 5th St, Boston,MA,02215 +240745,Lightning Charging Cable,1,14.95,2019-08-11 21:29:00,203 Willow St, Atlanta,GA,30301 +240746,USB-C Charging Cable,1,11.95,2019-08-21 11:07:00,353 River St, New York City,NY,10001 +240747,AAA Batteries (4-pack),1,2.99,2019-08-14 20:42:00,606 Lakeview St, Los Angeles,CA,90001 +240748,Bose SoundSport Headphones,1,99.99,2019-08-23 07:23:00,782 Church St, Austin,TX,73301 +240749,USB-C Charging Cable,2,11.95,2019-08-01 20:10:00,918 4th St, Boston,MA,02215 +240750,Lightning Charging Cable,1,14.95,2019-08-18 13:15:00,443 Chestnut St, San Francisco,CA,94016 +240751,34in Ultrawide Monitor,1,379.99,2019-08-13 18:14:00,919 Church St, Seattle,WA,98101 +240752,Wired Headphones,1,11.99,2019-08-27 20:14:00,16 13th St, San Francisco,CA,94016 +240753,Apple Airpods Headphones,1,150.0,2019-08-23 22:38:00,968 Walnut St, San Francisco,CA,94016 +240754,iPhone,1,700.0,2019-08-28 13:51:00,788 Adams St, Dallas,TX,75001 +240754,Lightning Charging Cable,1,14.95,2019-08-28 13:51:00,788 Adams St, Dallas,TX,75001 +240755,AA Batteries (4-pack),1,3.84,2019-08-27 18:59:00,450 Center St, Seattle,WA,98101 +240756,Apple Airpods Headphones,1,150.0,2019-08-26 18:42:00,616 Cedar St, Boston,MA,02215 +240757,USB-C Charging Cable,1,11.95,2019-08-31 07:31:00,580 13th St, San Francisco,CA,94016 +240758,Apple Airpods Headphones,1,150.0,2019-08-01 20:10:00,420 2nd St, Los Angeles,CA,90001 +240759,iPhone,1,700.0,2019-08-20 22:38:00,451 Highland St, Portland,ME,04101 +240760,Bose SoundSport Headphones,1,99.99,2019-08-20 12:04:00,214 Main St, San Francisco,CA,94016 +240761,USB-C Charging Cable,1,11.95,2019-08-30 12:11:00,685 8th St, Atlanta,GA,30301 +240762,27in FHD Monitor,1,149.99,2019-08-21 16:44:00,776 1st St, San Francisco,CA,94016 +240763,Wired Headphones,1,11.99,2019-08-10 13:41:00,600 10th St, Austin,TX,73301 +240764,AAA Batteries (4-pack),1,2.99,2019-08-27 23:18:00,413 Madison St, Atlanta,GA,30301 +240765,USB-C Charging Cable,1,11.95,2019-08-28 18:07:00,862 Ridge St, San Francisco,CA,94016 +240766,Wired Headphones,1,11.99,2019-08-12 17:20:00,716 Maple St, Boston,MA,02215 +240767,Bose SoundSport Headphones,1,99.99,2019-08-06 07:25:00,235 Forest St, Los Angeles,CA,90001 +240768,Google Phone,1,600.0,2019-08-23 20:23:00,615 Willow St, Boston,MA,02215 +240769,Flatscreen TV,1,300.0,2019-08-23 06:40:00,832 6th St, San Francisco,CA,94016 +240770,AA Batteries (4-pack),1,3.84,2019-08-05 16:12:00,367 6th St, Los Angeles,CA,90001 +240771,AAA Batteries (4-pack),2,2.99,2019-08-25 15:01:00,354 8th St, San Francisco,CA,94016 +240772,Bose SoundSport Headphones,1,99.99,2019-08-26 20:52:00,885 10th St, Seattle,WA,98101 +240773,AA Batteries (4-pack),2,3.84,2019-08-29 07:53:00,823 9th St, San Francisco,CA,94016 +240774,Lightning Charging Cable,2,14.95,2019-08-26 09:04:00,524 Spruce St, Los Angeles,CA,90001 +240774,Google Phone,1,600.0,2019-08-26 09:04:00,524 Spruce St, Los Angeles,CA,90001 +240775,AA Batteries (4-pack),1,3.84,2019-08-07 16:46:00,306 12th St, Boston,MA,02215 +240776,AA Batteries (4-pack),2,3.84,2019-08-03 18:33:00,290 10th St, Austin,TX,73301 +240777,USB-C Charging Cable,1,11.95,2019-08-02 19:38:00,293 Spruce St, Dallas,TX,75001 +240778,AAA Batteries (4-pack),4,2.99,2019-08-07 08:52:00,381 9th St, New York City,NY,10001 +240779,27in FHD Monitor,1,149.99,2019-08-17 20:01:00,881 Meadow St, Los Angeles,CA,90001 +240780,iPhone,1,700.0,2019-08-26 22:36:00,292 Church St, San Francisco,CA,94016 +240781,iPhone,1,700.0,2019-08-19 22:26:00,576 Sunset St, Portland,OR,97035 +240782,AAA Batteries (4-pack),1,2.99,2019-08-16 12:17:00,832 Chestnut St, San Francisco,CA,94016 +240783,AA Batteries (4-pack),1,3.84,2019-08-13 10:34:00,977 Dogwood St, San Francisco,CA,94016 +240784,20in Monitor,1,109.99,2019-08-30 19:38:00,511 Adams St, New York City,NY,10001 +240785,Wired Headphones,1,11.99,2019-08-24 10:31:00,304 8th St, Boston,MA,02215 +240786,Lightning Charging Cable,1,14.95,2019-08-21 14:46:00,727 5th St, New York City,NY,10001 +240787,ThinkPad Laptop,1,999.99,2019-08-05 13:31:00,266 Adams St, Boston,MA,02215 +240788,USB-C Charging Cable,1,11.95,2019-08-10 20:15:00,441 Center St, Los Angeles,CA,90001 +240789,27in 4K Gaming Monitor,1,389.99,2019-08-18 10:49:00,914 7th St, New York City,NY,10001 +240790,ThinkPad Laptop,1,999.99,2019-08-15 21:51:00,981 Center St, New York City,NY,10001 +240791,Macbook Pro Laptop,1,1700.0,2019-08-04 19:09:00,757 Jefferson St, Seattle,WA,98101 +240792,AA Batteries (4-pack),3,3.84,2019-08-08 17:00:00,237 Highland St, San Francisco,CA,94016 +240793,34in Ultrawide Monitor,1,379.99,2019-08-10 19:52:00,966 Dogwood St, New York City,NY,10001 +240794,Lightning Charging Cable,1,14.95,2019-08-28 09:18:00,440 Jackson St, San Francisco,CA,94016 +240795,Apple Airpods Headphones,1,150.0,2019-08-26 22:08:00,476 Main St, New York City,NY,10001 +240796,Apple Airpods Headphones,1,150.0,2019-08-04 13:40:00,849 5th St, Los Angeles,CA,90001 +240797,Bose SoundSport Headphones,1,99.99,2019-08-15 08:19:00,515 Hill St, Seattle,WA,98101 +240798,Wired Headphones,1,11.99,2019-08-28 03:44:00,285 Chestnut St, Dallas,TX,75001 +240799,AA Batteries (4-pack),1,3.84,2019-08-08 17:36:00,447 Lake St, Austin,TX,73301 +240800,27in 4K Gaming Monitor,1,389.99,2019-08-14 14:46:00,295 Wilson St, Austin,TX,73301 +240801,Apple Airpods Headphones,1,150.0,2019-08-19 21:59:00,926 Sunset St, Los Angeles,CA,90001 +240802,Lightning Charging Cable,1,14.95,2019-08-30 19:09:00,927 Church St, Dallas,TX,75001 +240803,AAA Batteries (4-pack),1,2.99,2019-08-31 21:35:00,951 5th St, Los Angeles,CA,90001 +240804,Bose SoundSport Headphones,1,99.99,2019-08-23 11:45:00,747 Chestnut St, San Francisco,CA,94016 +240805,Bose SoundSport Headphones,1,99.99,2019-08-14 15:03:00,69 Hickory St, San Francisco,CA,94016 +240806,LG Washing Machine,1,600.0,2019-08-13 19:20:00,979 1st St, Portland,ME,04101 +240807,Google Phone,1,600.0,2019-08-04 18:59:00,912 North St, Portland,OR,97035 +240808,ThinkPad Laptop,1,999.99,2019-08-07 21:00:00,468 Ridge St, Boston,MA,02215 +240809,34in Ultrawide Monitor,1,379.99,2019-08-24 10:16:00,731 14th St, San Francisco,CA,94016 +240810,iPhone,1,700.0,2019-08-22 15:38:00,570 Spruce St, Portland,OR,97035 +240810,Lightning Charging Cable,1,14.95,2019-08-22 15:38:00,570 Spruce St, Portland,OR,97035 +240811,Wired Headphones,1,11.99,2019-08-26 17:23:00,136 Cedar St, San Francisco,CA,94016 +240812,Wired Headphones,1,11.99,2019-08-28 00:56:00,215 South St, Portland,ME,04101 +240813,USB-C Charging Cable,1,11.95,2019-08-25 13:54:00,702 Johnson St, Seattle,WA,98101 +240814,34in Ultrawide Monitor,1,379.99,2019-08-18 23:06:00,709 7th St, San Francisco,CA,94016 +240815,Wired Headphones,1,11.99,2019-08-05 11:43:00,944 Highland St, San Francisco,CA,94016 +240816,USB-C Charging Cable,1,11.95,2019-08-22 13:20:00,838 8th St, Austin,TX,73301 +240817,AA Batteries (4-pack),1,3.84,2019-08-01 05:13:00,463 1st St, San Francisco,CA,94016 +240818,Wired Headphones,2,11.99,2019-08-02 15:49:00,521 Forest St, Austin,TX,73301 +240819,Wired Headphones,1,11.99,2019-08-11 14:30:00,309 Highland St, Los Angeles,CA,90001 +240820,Wired Headphones,1,11.99,2019-08-14 15:29:00,635 8th St, Dallas,TX,75001 +240821,27in 4K Gaming Monitor,1,389.99,2019-08-18 14:56:00,96 Pine St, Austin,TX,73301 +240822,Lightning Charging Cable,1,14.95,2019-08-16 20:54:00,252 1st St, San Francisco,CA,94016 +240823,AAA Batteries (4-pack),1,2.99,2019-08-24 10:35:00,828 14th St, San Francisco,CA,94016 +240824,Wired Headphones,1,11.99,2019-08-25 19:11:00,548 Johnson St, New York City,NY,10001 +240825,Lightning Charging Cable,1,14.95,2019-08-18 10:44:00,946 Hill St, Portland,ME,04101 +240826,20in Monitor,1,109.99,2019-08-20 15:36:00,747 Johnson St, Dallas,TX,75001 +240827,USB-C Charging Cable,1,11.95,2019-08-07 12:42:00,184 10th St, Dallas,TX,75001 +240828,LG Washing Machine,1,600.0,2019-08-28 18:49:00,756 10th St, Dallas,TX,75001 +240829,Lightning Charging Cable,1,14.95,2019-08-24 13:47:00,720 9th St, San Francisco,CA,94016 +240830,34in Ultrawide Monitor,1,379.99,2019-08-25 22:56:00,792 2nd St, Dallas,TX,75001 +240831,AA Batteries (4-pack),1,3.84,2019-08-22 20:56:00,595 Forest St, New York City,NY,10001 +240832,AAA Batteries (4-pack),1,2.99,2019-08-04 22:04:00,407 7th St, Los Angeles,CA,90001 +240833,Apple Airpods Headphones,1,150.0,2019-08-12 21:10:00,525 4th St, Los Angeles,CA,90001 +240834,AAA Batteries (4-pack),1,2.99,2019-08-17 10:14:00,333 Maple St, San Francisco,CA,94016 +240835,20in Monitor,1,109.99,2019-08-08 15:31:00,204 Johnson St, Los Angeles,CA,90001 +240836,34in Ultrawide Monitor,1,379.99,2019-08-11 21:27:00,985 Pine St, San Francisco,CA,94016 +240837,USB-C Charging Cable,1,11.95,2019-08-25 08:58:00,923 Sunset St, Los Angeles,CA,90001 +240838,AAA Batteries (4-pack),1,2.99,2019-08-22 21:25:00,222 Hickory St, New York City,NY,10001 +240839,Wired Headphones,1,11.99,2019-08-08 05:05:00,29 Hickory St, Portland,ME,04101 +240840,AA Batteries (4-pack),1,3.84,2019-08-14 16:03:00,52 Cedar St, New York City,NY,10001 +240841,AA Batteries (4-pack),1,3.84,2019-08-24 13:04:00,198 5th St, Boston,MA,02215 +240842,Apple Airpods Headphones,1,150.0,2019-08-28 08:23:00,519 Forest St, Los Angeles,CA,90001 +240843,Apple Airpods Headphones,1,150.0,2019-08-22 13:57:00,245 Washington St, Seattle,WA,98101 +240844,Google Phone,1,600.0,2019-08-08 18:50:00,36 Highland St, Atlanta,GA,30301 +240845,USB-C Charging Cable,1,11.95,2019-08-21 15:40:00,541 9th St, Portland,ME,04101 +240845,AAA Batteries (4-pack),1,2.99,2019-08-21 15:40:00,541 9th St, Portland,ME,04101 +240846,AAA Batteries (4-pack),2,2.99,2019-08-18 20:13:00,580 Johnson St, San Francisco,CA,94016 +240847,ThinkPad Laptop,1,999.99,2019-08-27 18:00:00,561 Center St, Atlanta,GA,30301 +240848,USB-C Charging Cable,1,11.95,2019-08-03 07:14:00,907 Hill St, Portland,OR,97035 +240849,iPhone,1,700.0,2019-08-15 15:03:00,780 Elm St, Portland,ME,04101 +240850,Bose SoundSport Headphones,1,99.99,2019-08-09 17:11:00,590 Madison St, Dallas,TX,75001 +240851,27in 4K Gaming Monitor,1,389.99,2019-08-01 12:59:00,677 Hickory St, San Francisco,CA,94016 +240852,iPhone,1,700.0,2019-08-02 21:14:00,899 Lincoln St, Boston,MA,02215 +240852,Lightning Charging Cable,2,14.95,2019-08-02 21:14:00,899 Lincoln St, Boston,MA,02215 +240853,AA Batteries (4-pack),1,3.84,2019-08-22 11:37:00,827 Chestnut St, San Francisco,CA,94016 +240854,27in FHD Monitor,1,149.99,2019-08-16 18:34:00,144 Maple St, Boston,MA,02215 +240855,Wired Headphones,1,11.99,2019-08-23 21:17:00,996 Hickory St, Atlanta,GA,30301 +240856,USB-C Charging Cable,1,11.95,2019-08-11 13:28:00,659 6th St, New York City,NY,10001 +240857,AAA Batteries (4-pack),1,2.99,2019-08-31 18:49:00,256 Lincoln St, Boston,MA,02215 +240858,27in 4K Gaming Monitor,1,389.99,2019-08-12 20:04:00,846 12th St, Boston,MA,02215 +240859,Apple Airpods Headphones,2,150.0,2019-08-15 20:39:00,506 Madison St, Boston,MA,02215 +240860,AAA Batteries (4-pack),1,2.99,2019-08-26 09:45:00,986 7th St, San Francisco,CA,94016 +240861,34in Ultrawide Monitor,1,379.99,2019-08-26 22:32:00,840 Wilson St, Boston,MA,02215 +240862,Lightning Charging Cable,1,14.95,2019-08-06 15:26:00,410 Lincoln St, Los Angeles,CA,90001 +240862,AAA Batteries (4-pack),1,2.99,2019-08-06 15:26:00,410 Lincoln St, Los Angeles,CA,90001 +240863,Wired Headphones,1,11.99,2019-08-31 10:55:00,250 Pine St, Los Angeles,CA,90001 +240864,Flatscreen TV,1,300.0,2019-08-26 10:38:00,226 11th St, San Francisco,CA,94016 +240865,USB-C Charging Cable,1,11.95,2019-08-05 20:47:00,656 Dogwood St, New York City,NY,10001 +240866,USB-C Charging Cable,1,11.95,2019-08-21 14:40:00,196 Spruce St, San Francisco,CA,94016 +240867,Bose SoundSport Headphones,1,99.99,2019-08-28 08:57:00,897 Hill St, San Francisco,CA,94016 +240868,AA Batteries (4-pack),1,3.84,2019-08-29 13:24:00,573 Johnson St, Boston,MA,02215 +240869,Google Phone,1,600.0,2019-08-23 06:41:00,30 Forest St, Austin,TX,73301 +240869,USB-C Charging Cable,1,11.95,2019-08-23 06:41:00,30 Forest St, Austin,TX,73301 +240870,Vareebadd Phone,1,400.0,2019-08-29 19:35:00,253 Hickory St, Los Angeles,CA,90001 +240870,Bose SoundSport Headphones,1,99.99,2019-08-29 19:35:00,253 Hickory St, Los Angeles,CA,90001 +240871,Apple Airpods Headphones,1,150.0,2019-08-01 12:56:00,380 Wilson St, San Francisco,CA,94016 +240872,Apple Airpods Headphones,1,150.0,2019-08-10 21:11:00,220 14th St, Dallas,TX,75001 +240873,USB-C Charging Cable,1,11.95,2019-08-16 18:29:00,617 Wilson St, Austin,TX,73301 +240874,AAA Batteries (4-pack),1,2.99,2019-08-24 12:46:00,235 14th St, San Francisco,CA,94016 +240875,20in Monitor,1,109.99,2019-08-11 12:30:00,116 10th St, Atlanta,GA,30301 +240876,AAA Batteries (4-pack),2,2.99,2019-08-14 16:54:00,207 Maple St, San Francisco,CA,94016 +240877,USB-C Charging Cable,1,11.95,2019-08-07 18:37:00,302 9th St, Boston,MA,02215 +240878,27in FHD Monitor,1,149.99,2019-08-23 13:15:00,322 Adams St, Atlanta,GA,30301 +240879,Apple Airpods Headphones,1,150.0,2019-08-12 14:00:00,908 Maple St, New York City,NY,10001 +240880,Apple Airpods Headphones,1,150.0,2019-08-30 05:57:00,203 Chestnut St, Seattle,WA,98101 +240881,Bose SoundSport Headphones,1,99.99,2019-08-15 09:12:00,957 Church St, New York City,NY,10001 +240882,Wired Headphones,1,11.99,2019-08-29 16:36:00,865 9th St, Los Angeles,CA,90001 +240883,34in Ultrawide Monitor,1,379.99,2019-08-24 09:36:00,495 Lake St, Dallas,TX,75001 +240884,27in FHD Monitor,1,149.99,2019-08-31 15:50:00,675 Cedar St, San Francisco,CA,94016 +240885,Wired Headphones,1,11.99,2019-08-07 15:52:00,288 Church St, Los Angeles,CA,90001 +240886,27in 4K Gaming Monitor,1,389.99,2019-08-01 19:37:00,411 Cherry St, San Francisco,CA,94016 +240887,AA Batteries (4-pack),1,3.84,2019-08-24 01:09:00,919 4th St, Dallas,TX,75001 +240888,Bose SoundSport Headphones,1,99.99,2019-08-08 21:27:00,908 Jefferson St, Dallas,TX,75001 +240889,AA Batteries (4-pack),1,3.84,2019-08-07 22:50:00,181 Washington St, Boston,MA,02215 +240890,Apple Airpods Headphones,1,150.0,2019-08-06 16:15:00,96 Jefferson St, Austin,TX,73301 +240891,Wired Headphones,2,11.99,2019-08-26 13:13:00,300 8th St, Dallas,TX,75001 +240892,Lightning Charging Cable,1,14.95,2019-08-22 21:23:00,926 4th St, Dallas,TX,75001 +240893,AA Batteries (4-pack),2,3.84,2019-08-18 23:34:00,15 6th St, Seattle,WA,98101 +240894,27in FHD Monitor,1,149.99,2019-08-23 04:45:00,251 11th St, Portland,OR,97035 +240895,Lightning Charging Cable,1,14.95,2019-08-16 05:24:00,407 Chestnut St, Portland,OR,97035 +240896,27in FHD Monitor,1,149.99,2019-08-22 16:19:00,289 Ridge St, San Francisco,CA,94016 +240897,Google Phone,1,600.0,2019-08-05 16:37:00,501 Meadow St, Boston,MA,02215 +240897,Wired Headphones,1,11.99,2019-08-05 16:37:00,501 Meadow St, Boston,MA,02215 +240898,iPhone,1,700.0,2019-08-04 22:20:00,880 Park St, San Francisco,CA,94016 +240899,USB-C Charging Cable,1,11.95,2019-08-13 04:40:00,425 Elm St, Boston,MA,02215 +240900,USB-C Charging Cable,1,11.95,2019-08-24 12:17:00,947 Washington St, San Francisco,CA,94016 +240901,Wired Headphones,1,11.99,2019-08-17 19:54:00,61 1st St, Los Angeles,CA,90001 +240902,Bose SoundSport Headphones,1,99.99,2019-08-22 13:18:00,754 Spruce St, Austin,TX,73301 +240903,AA Batteries (4-pack),1,3.84,2019-08-01 16:40:00,150 Willow St, New York City,NY,10001 +240904,Wired Headphones,1,11.99,2019-08-04 15:27:00,636 11th St, San Francisco,CA,94016 +240905,27in FHD Monitor,1,149.99,2019-08-26 14:07:00,665 Highland St, Los Angeles,CA,90001 +240906,AA Batteries (4-pack),1,3.84,2019-08-21 09:19:00,736 Cherry St, Portland,OR,97035 +240907,USB-C Charging Cable,1,11.95,2019-08-24 15:26:00,493 North St, Dallas,TX,75001 +240908,iPhone,1,700.0,2019-08-26 12:13:00,335 9th St, San Francisco,CA,94016 +240909,Flatscreen TV,1,300.0,2019-08-10 14:57:00,387 Cedar St, Los Angeles,CA,90001 +240910,Flatscreen TV,1,300.0,2019-08-01 07:38:00,482 Washington St, San Francisco,CA,94016 +240911,Lightning Charging Cable,1,14.95,2019-08-28 22:34:00,134 Wilson St, Los Angeles,CA,90001 +240912,27in FHD Monitor,1,149.99,2019-08-22 16:55:00,792 Madison St, New York City,NY,10001 +240913,AA Batteries (4-pack),1,3.84,2019-08-19 21:58:00,777 Willow St, Los Angeles,CA,90001 +240914,AA Batteries (4-pack),1,3.84,2019-08-19 18:10:00,914 13th St, New York City,NY,10001 +240914,AA Batteries (4-pack),2,3.84,2019-08-19 18:10:00,914 13th St, New York City,NY,10001 +240915,Macbook Pro Laptop,1,1700.0,2019-08-28 15:49:00,473 Adams St, Seattle,WA,98101 +240916,Apple Airpods Headphones,1,150.0,2019-08-07 12:16:00,351 13th St, San Francisco,CA,94016 +240917,Wired Headphones,2,11.99,2019-08-05 18:49:00,983 Cedar St, New York City,NY,10001 +240918,Flatscreen TV,1,300.0,2019-08-19 14:26:00,246 Highland St, San Francisco,CA,94016 +240919,AA Batteries (4-pack),1,3.84,2019-08-24 20:44:00,372 Adams St, San Francisco,CA,94016 +240920,Wired Headphones,1,11.99,2019-08-27 16:00:00,705 Washington St, Los Angeles,CA,90001 +240921,Lightning Charging Cable,1,14.95,2019-08-25 07:13:00,528 Spruce St, Austin,TX,73301 +240922,AAA Batteries (4-pack),1,2.99,2019-08-19 20:03:00,431 Meadow St, Portland,OR,97035 +240923,Lightning Charging Cable,2,14.95,2019-08-05 12:44:00,548 8th St, San Francisco,CA,94016 +240924,AAA Batteries (4-pack),1,2.99,2019-08-25 13:01:00,678 Maple St, New York City,NY,10001 +240925,Lightning Charging Cable,1,14.95,2019-08-24 12:21:00,485 Highland St, Austin,TX,73301 +240926,AA Batteries (4-pack),1,3.84,2019-08-16 11:21:00,316 Spruce St, Los Angeles,CA,90001 +240927,AA Batteries (4-pack),2,3.84,2019-08-13 22:33:00,856 Elm St, New York City,NY,10001 +240928,Apple Airpods Headphones,1,150.0,2019-08-14 18:36:00,420 9th St, Dallas,TX,75001 +240929,ThinkPad Laptop,1,999.99,2019-08-07 15:19:00,601 Main St, San Francisco,CA,94016 +240930,Lightning Charging Cable,1,14.95,2019-08-28 18:04:00,439 West St, Atlanta,GA,30301 +240931,AAA Batteries (4-pack),1,2.99,2019-08-20 00:09:00,342 1st St, New York City,NY,10001 +240932,AA Batteries (4-pack),4,3.84,2019-08-11 08:48:00,494 Willow St, Atlanta,GA,30301 +240933,Wired Headphones,1,11.99,2019-08-10 07:36:00,434 Meadow St, Dallas,TX,75001 +240934,AA Batteries (4-pack),1,3.84,2019-08-27 21:41:00,546 13th St, New York City,NY,10001 +240935,AAA Batteries (4-pack),1,2.99,2019-08-28 18:13:00,179 Spruce St, San Francisco,CA,94016 +240936,USB-C Charging Cable,1,11.95,2019-08-18 18:20:00,151 Johnson St, Austin,TX,73301 +240937,Apple Airpods Headphones,1,150.0,2019-08-24 17:48:00,800 Cherry St, Los Angeles,CA,90001 +240938,27in 4K Gaming Monitor,1,389.99,2019-08-29 17:36:00,581 Chestnut St, Austin,TX,73301 +240939,27in FHD Monitor,1,149.99,2019-08-20 06:51:00,522 Pine St, New York City,NY,10001 +240940,USB-C Charging Cable,1,11.95,2019-08-29 10:05:00,525 13th St, San Francisco,CA,94016 +240941,27in 4K Gaming Monitor,1,389.99,2019-08-16 20:04:00,969 West St, Los Angeles,CA,90001 +240942,Bose SoundSport Headphones,1,99.99,2019-08-25 13:04:00,276 Park St, San Francisco,CA,94016 +240943,Apple Airpods Headphones,1,150.0,2019-08-06 14:21:00,963 Lakeview St, New York City,NY,10001 +240944,USB-C Charging Cable,2,11.95,2019-08-05 14:35:00,675 Madison St, Austin,TX,73301 +240945,34in Ultrawide Monitor,1,379.99,2019-08-08 00:47:00,426 1st St, Los Angeles,CA,90001 +240946,AAA Batteries (4-pack),2,2.99,2019-08-30 17:58:00,611 Jackson St, Los Angeles,CA,90001 +240947,USB-C Charging Cable,1,11.95,2019-08-24 17:02:00,176 Meadow St, Los Angeles,CA,90001 +240948,AAA Batteries (4-pack),1,2.99,2019-08-03 11:14:00,295 Madison St, Los Angeles,CA,90001 +240949,AA Batteries (4-pack),1,3.84,2019-08-02 21:02:00,81 Chestnut St, Los Angeles,CA,90001 +240950,Vareebadd Phone,1,400.0,2019-08-25 23:27:00,89 Madison St, Los Angeles,CA,90001 +240951,Apple Airpods Headphones,1,150.0,2019-08-26 21:14:00,323 Cedar St, Los Angeles,CA,90001 +240952,USB-C Charging Cable,1,11.95,2019-08-17 17:23:00,566 Johnson St, Los Angeles,CA,90001 +240953,Vareebadd Phone,1,400.0,2019-08-06 11:59:00,486 Johnson St, New York City,NY,10001 +240953,USB-C Charging Cable,1,11.95,2019-08-06 11:59:00,486 Johnson St, New York City,NY,10001 +240954,AAA Batteries (4-pack),2,2.99,2019-08-16 16:37:00,403 8th St, Atlanta,GA,30301 +240955,Lightning Charging Cable,1,14.95,2019-08-17 12:24:00,431 Cedar St, Dallas,TX,75001 +240956,27in 4K Gaming Monitor,1,389.99,2019-08-28 18:51:00,418 Chestnut St, Boston,MA,02215 +240957,20in Monitor,2,109.99,2019-08-11 01:19:00,887 Elm St, Atlanta,GA,30301 +240958,USB-C Charging Cable,1,11.95,2019-08-06 11:25:00,295 8th St, Portland,OR,97035 +240959,27in 4K Gaming Monitor,1,389.99,2019-08-25 13:49:00,119 Pine St, Seattle,WA,98101 +240960,34in Ultrawide Monitor,1,379.99,2019-08-12 11:43:00,676 Main St, Dallas,TX,75001 +240961,27in FHD Monitor,1,149.99,2019-08-23 12:35:00,331 Church St, New York City,NY,10001 +240962,AA Batteries (4-pack),1,3.84,2019-08-14 07:17:00,180 Center St, Boston,MA,02215 +240963,Wired Headphones,1,11.99,2019-08-16 22:16:00,600 Meadow St, San Francisco,CA,94016 +240964,USB-C Charging Cable,1,11.95,2019-08-01 21:45:00,765 River St, Austin,TX,73301 +240965,Apple Airpods Headphones,1,150.0,2019-08-14 12:07:00,323 Main St, New York City,NY,10001 +240966,Wired Headphones,1,11.99,2019-08-06 08:54:00,138 Park St, Dallas,TX,75001 +240967,27in 4K Gaming Monitor,1,389.99,2019-08-20 01:47:00,558 South St, Atlanta,GA,30301 +240968,AAA Batteries (4-pack),1,2.99,2019-08-28 20:29:00,537 Meadow St, Seattle,WA,98101 +240969,USB-C Charging Cable,1,11.95,2019-08-30 19:40:00,396 8th St, San Francisco,CA,94016 +240970,Vareebadd Phone,2,400.0,2019-08-16 21:42:00,429 Meadow St, New York City,NY,10001 +240971,AA Batteries (4-pack),1,3.84,2019-08-30 17:00:00,23 River St, Seattle,WA,98101 +240972,27in FHD Monitor,1,149.99,2019-08-12 12:37:00,878 10th St, Seattle,WA,98101 +240973,USB-C Charging Cable,1,11.95,2019-08-02 11:00:00,705 Park St, New York City,NY,10001 +240974,27in 4K Gaming Monitor,1,389.99,2019-08-24 12:00:00,219 10th St, New York City,NY,10001 +240975,Lightning Charging Cable,1,14.95,2019-08-27 06:31:00,73 Park St, New York City,NY,10001 +240976,AAA Batteries (4-pack),1,2.99,2019-08-14 19:43:00,486 11th St, Atlanta,GA,30301 +240977,Macbook Pro Laptop,1,1700.0,2019-08-10 09:07:00,446 8th St, San Francisco,CA,94016 +240978,Apple Airpods Headphones,1,150.0,2019-08-29 15:34:00,865 13th St, San Francisco,CA,94016 +240979,AAA Batteries (4-pack),1,2.99,2019-08-14 10:00:00,410 Highland St, Portland,ME,04101 +240980,Lightning Charging Cable,1,14.95,2019-08-05 18:43:00,786 13th St, Atlanta,GA,30301 +240981,AA Batteries (4-pack),1,3.84,2019-08-22 08:03:00,991 Main St, Boston,MA,02215 +240982,AAA Batteries (4-pack),1,2.99,2019-08-31 16:11:00,230 Wilson St, Atlanta,GA,30301 +240983,AAA Batteries (4-pack),1,2.99,2019-08-26 22:41:00,346 Willow St, San Francisco,CA,94016 +240984,Wired Headphones,1,11.99,2019-08-15 10:32:00,785 Lakeview St, New York City,NY,10001 +240985,USB-C Charging Cable,1,11.95,2019-08-23 19:21:00,447 River St, San Francisco,CA,94016 +240986,USB-C Charging Cable,1,11.95,2019-08-15 23:22:00,573 Meadow St, Atlanta,GA,30301 +240987,Wired Headphones,1,11.99,2019-08-19 15:06:00,938 1st St, Austin,TX,73301 +240988,AA Batteries (4-pack),1,3.84,2019-08-17 00:49:00,108 Dogwood St, Boston,MA,02215 +240989,AAA Batteries (4-pack),1,2.99,2019-08-31 13:18:00,25 Madison St, Atlanta,GA,30301 +240990,AAA Batteries (4-pack),1,2.99,2019-08-14 21:51:00,326 Ridge St, Dallas,TX,75001 +240991,Wired Headphones,1,11.99,2019-08-11 20:48:00,31 7th St, New York City,NY,10001 +240992,Flatscreen TV,1,300.0,2019-08-17 09:54:00,58 Highland St, New York City,NY,10001 +240993,Apple Airpods Headphones,1,150.0,2019-08-26 10:31:00,86 2nd St, San Francisco,CA,94016 +240994,AAA Batteries (4-pack),1,2.99,2019-08-04 10:52:00,478 10th St, Los Angeles,CA,90001 +240995,Bose SoundSport Headphones,1,99.99,2019-08-06 12:22:00,609 7th St, Boston,MA,02215 +240996,27in FHD Monitor,1,149.99,2019-08-13 20:36:00,94 Jefferson St, Los Angeles,CA,90001 +240997,Flatscreen TV,1,300.0,2019-08-24 12:38:00,945 Meadow St, Dallas,TX,75001 +240998,AAA Batteries (4-pack),1,2.99,2019-08-19 13:54:00,886 Jefferson St, Boston,MA,02215 +240999,Wired Headphones,1,11.99,2019-08-02 08:41:00,860 8th St, New York City,NY,10001 +241000,Apple Airpods Headphones,1,150.0,2019-08-14 09:20:00,434 Pine St, New York City,NY,10001 +241001,Google Phone,1,600.0,2019-08-13 12:34:00,238 Willow St, Seattle,WA,98101 +241002,AAA Batteries (4-pack),2,2.99,2019-08-21 17:45:00,196 Spruce St, San Francisco,CA,94016 +241003,Macbook Pro Laptop,1,1700.0,2019-08-09 14:43:00,133 11th St, San Francisco,CA,94016 +241004,AA Batteries (4-pack),3,3.84,2019-08-19 09:13:00,735 Willow St, San Francisco,CA,94016 +241005,Lightning Charging Cable,1,14.95,2019-08-20 09:54:00,303 Spruce St, Boston,MA,02215 +241006,Lightning Charging Cable,1,14.95,2019-08-04 12:30:00,969 Lakeview St, San Francisco,CA,94016 +241007,AAA Batteries (4-pack),1,2.99,2019-08-18 13:12:00,791 8th St, Portland,OR,97035 +241008,AA Batteries (4-pack),1,3.84,2019-08-17 12:11:00,850 North St, Los Angeles,CA,90001 +241009,Flatscreen TV,1,300.0,2019-08-27 14:24:00,501 12th St, Boston,MA,02215 +241010,Vareebadd Phone,1,400.0,2019-08-15 00:13:00,516 Lincoln St, Seattle,WA,98101 +241010,Wired Headphones,1,11.99,2019-08-15 00:13:00,516 Lincoln St, Seattle,WA,98101 +241011,AAA Batteries (4-pack),1,2.99,2019-08-04 10:31:00,219 7th St, Dallas,TX,75001 +241012,Lightning Charging Cable,1,14.95,2019-08-18 18:14:00,772 10th St, Seattle,WA,98101 +241013,iPhone,1,700.0,2019-08-16 01:49:00,296 Hill St, San Francisco,CA,94016 +241013,Wired Headphones,1,11.99,2019-08-16 01:49:00,296 Hill St, San Francisco,CA,94016 +241014,AA Batteries (4-pack),2,3.84,2019-08-25 15:09:00,665 Highland St, San Francisco,CA,94016 +241015,27in FHD Monitor,1,149.99,2019-08-22 13:05:00,799 South St, Dallas,TX,75001 +241016,AAA Batteries (4-pack),1,2.99,2019-08-13 08:55:00,865 2nd St, San Francisco,CA,94016 +241017,ThinkPad Laptop,1,999.99,2019-08-31 01:28:00,884 12th St, Portland,ME,04101 +241018,AAA Batteries (4-pack),1,2.99,2019-08-03 17:16:00,518 Cherry St, Austin,TX,73301 +241019,27in FHD Monitor,1,149.99,2019-08-31 18:43:00,86 Pine St, New York City,NY,10001 +241020,USB-C Charging Cable,1,11.95,2019-08-16 17:20:00,643 River St, San Francisco,CA,94016 +241020,Lightning Charging Cable,1,14.95,2019-08-16 17:20:00,643 River St, San Francisco,CA,94016 +241021,Google Phone,1,600.0,2019-08-20 09:12:00,396 South St, San Francisco,CA,94016 +241022,ThinkPad Laptop,1,999.99,2019-08-16 12:52:00,48 14th St, New York City,NY,10001 +241023,Macbook Pro Laptop,1,1700.0,2019-08-21 04:04:00,268 Jackson St, Seattle,WA,98101 +241024,Flatscreen TV,1,300.0,2019-08-19 23:09:00,898 2nd St, Portland,OR,97035 +241025,Google Phone,1,600.0,2019-08-07 16:29:00,697 5th St, Boston,MA,02215 +241025,USB-C Charging Cable,1,11.95,2019-08-07 16:29:00,697 5th St, Boston,MA,02215 +241026,AA Batteries (4-pack),1,3.84,2019-08-09 11:00:00,753 8th St, Austin,TX,73301 +241027,34in Ultrawide Monitor,1,379.99,2019-08-15 11:48:00,954 2nd St, Austin,TX,73301 +241028,Lightning Charging Cable,1,14.95,2019-08-26 00:18:00,43 Lake St, Dallas,TX,75001 +241029,Apple Airpods Headphones,1,150.0,2019-08-25 22:10:00,894 13th St, Boston,MA,02215 +241030,Apple Airpods Headphones,1,150.0,2019-08-11 11:20:00,525 West St, Austin,TX,73301 +241031,Wired Headphones,1,11.99,2019-08-12 16:37:00,176 9th St, San Francisco,CA,94016 +241032,20in Monitor,1,109.99,2019-08-07 14:58:00,828 Lincoln St, Boston,MA,02215 +241033,AA Batteries (4-pack),1,3.84,2019-08-21 01:18:00,543 North St, Boston,MA,02215 +241034,USB-C Charging Cable,2,11.95,2019-08-20 23:25:00,436 14th St, San Francisco,CA,94016 +241035,Wired Headphones,1,11.99,2019-08-13 14:25:00,223 7th St, Seattle,WA,98101 +241036,USB-C Charging Cable,1,11.95,2019-08-18 13:09:00,728 Cherry St, Atlanta,GA,30301 +241037,USB-C Charging Cable,1,11.95,2019-08-11 14:58:00,566 North St, Los Angeles,CA,90001 +241038,Apple Airpods Headphones,1,150.0,2019-08-29 05:54:00,535 Chestnut St, Atlanta,GA,30301 +241039,AA Batteries (4-pack),1,3.84,2019-08-27 09:33:00,157 Main St, Austin,TX,73301 +241040,Lightning Charging Cable,1,14.95,2019-08-14 23:37:00,98 Willow St, San Francisco,CA,94016 +241041,Wired Headphones,1,11.99,2019-08-11 17:06:00,400 Meadow St, Atlanta,GA,30301 +241042,AA Batteries (4-pack),1,3.84,2019-08-26 17:49:00,75 Park St, Los Angeles,CA,90001 +241043,Apple Airpods Headphones,1,150.0,2019-08-06 12:35:00,1 Madison St, San Francisco,CA,94016 +241044,27in 4K Gaming Monitor,1,389.99,2019-08-23 21:45:00,645 South St, Los Angeles,CA,90001 +241045,Vareebadd Phone,1,400.0,2019-08-25 11:48:00,766 Elm St, Portland,ME,04101 +241045,USB-C Charging Cable,1,11.95,2019-08-25 11:48:00,766 Elm St, Portland,ME,04101 +241046,Apple Airpods Headphones,1,150.0,2019-08-31 20:14:00,649 Meadow St, Boston,MA,02215 +241047,27in 4K Gaming Monitor,1,389.99,2019-08-27 21:13:00,434 Sunset St, San Francisco,CA,94016 +241048,AAA Batteries (4-pack),4,2.99,2019-08-27 10:21:00,689 Willow St, Dallas,TX,75001 +241049,Macbook Pro Laptop,1,1700.0,2019-08-22 15:42:00,605 11th St, San Francisco,CA,94016 +241050,AAA Batteries (4-pack),1,2.99,2019-08-29 19:51:00,600 4th St, Boston,MA,02215 +241051,27in 4K Gaming Monitor,1,389.99,2019-08-10 08:13:00,770 Cedar St, New York City,NY,10001 +241052,USB-C Charging Cable,1,11.95,2019-08-05 17:56:00,366 10th St, Seattle,WA,98101 +241053,AAA Batteries (4-pack),6,2.99,2019-08-17 18:52:00,830 Willow St, New York City,NY,10001 +241054,AAA Batteries (4-pack),1,2.99,2019-09-01 00:25:00,175 South St, San Francisco,CA,94016 +241055,Lightning Charging Cable,1,14.95,2019-08-22 16:53:00,401 Wilson St, San Francisco,CA,94016 +241056,20in Monitor,1,109.99,2019-08-08 10:09:00,99 Walnut St, Los Angeles,CA,90001 +241057,Google Phone,1,600.0,2019-08-28 10:28:00,627 7th St, San Francisco,CA,94016 +241058,34in Ultrawide Monitor,1,379.99,2019-08-04 16:59:00,218 2nd St, Dallas,TX,75001 +241059,Wired Headphones,1,11.99,2019-08-08 14:36:00,998 Willow St, San Francisco,CA,94016 +241060,Google Phone,1,600.0,2019-08-22 19:43:00,40 Center St, Los Angeles,CA,90001 +241061,Flatscreen TV,1,300.0,2019-08-22 07:57:00,994 Highland St, Los Angeles,CA,90001 +241062,USB-C Charging Cable,1,11.95,2019-08-26 11:45:00,381 North St, San Francisco,CA,94016 +241063,USB-C Charging Cable,1,11.95,2019-08-02 15:33:00,65 Meadow St, Dallas,TX,75001 +241064,Lightning Charging Cable,1,14.95,2019-08-13 11:47:00,225 Park St, Seattle,WA,98101 +241065,27in 4K Gaming Monitor,1,389.99,2019-08-29 16:20:00,644 South St, Dallas,TX,75001 +241066,27in 4K Gaming Monitor,1,389.99,2019-08-22 19:11:00,130 Jefferson St, San Francisco,CA,94016 +241067,Lightning Charging Cable,2,14.95,2019-08-30 14:17:00,522 Main St, San Francisco,CA,94016 +241068,Flatscreen TV,1,300.0,2019-08-11 18:11:00,475 Sunset St, New York City,NY,10001 +241069,Wired Headphones,1,11.99,2019-08-20 13:40:00,789 South St, Dallas,TX,75001 +241070,20in Monitor,1,109.99,2019-08-12 08:14:00,959 Johnson St, Boston,MA,02215 +241071,Flatscreen TV,1,300.0,2019-08-03 00:26:00,604 Pine St, Austin,TX,73301 +241072,USB-C Charging Cable,1,11.95,2019-08-13 23:45:00,137 14th St, Seattle,WA,98101 +241073,AAA Batteries (4-pack),1,2.99,2019-08-28 22:23:00,734 Jefferson St, Boston,MA,02215 +241074,ThinkPad Laptop,1,999.99,2019-08-14 22:03:00,497 West St, San Francisco,CA,94016 +241075,Wired Headphones,1,11.99,2019-08-21 08:04:00,384 Meadow St, San Francisco,CA,94016 +241076,27in FHD Monitor,1,149.99,2019-08-08 22:40:00,516 12th St, San Francisco,CA,94016 +241077,27in 4K Gaming Monitor,1,389.99,2019-08-15 07:41:00,210 Washington St, Seattle,WA,98101 +241078,AA Batteries (4-pack),1,3.84,2019-08-17 10:47:00,649 Lakeview St, New York City,NY,10001 +241079,Bose SoundSport Headphones,1,99.99,2019-08-03 09:45:00,341 13th St, Los Angeles,CA,90001 +241080,Google Phone,1,600.0,2019-08-01 22:46:00,85 Dogwood St, Los Angeles,CA,90001 +241081,AA Batteries (4-pack),1,3.84,2019-08-27 16:13:00,277 Jefferson St, Dallas,TX,75001 +241082,Wired Headphones,1,11.99,2019-08-30 16:51:00,196 Madison St, Los Angeles,CA,90001 +241083,27in FHD Monitor,1,149.99,2019-08-03 14:44:00,281 4th St, Dallas,TX,75001 +241084,USB-C Charging Cable,1,11.95,2019-08-23 06:19:00,762 Maple St, New York City,NY,10001 +241085,ThinkPad Laptop,1,999.99,2019-08-27 17:46:00,667 Willow St, Los Angeles,CA,90001 +241086,27in 4K Gaming Monitor,1,389.99,2019-08-18 20:41:00,280 Cherry St, Boston,MA,02215 +241087,Apple Airpods Headphones,1,150.0,2019-08-10 20:40:00,689 River St, Portland,OR,97035 +241088,iPhone,1,700.0,2019-08-14 03:32:00,22 Center St, Austin,TX,73301 +241088,Wired Headphones,1,11.99,2019-08-14 03:32:00,22 Center St, Austin,TX,73301 +241089,Wired Headphones,1,11.99,2019-08-13 11:39:00,981 Spruce St, Boston,MA,02215 +241090,AAA Batteries (4-pack),2,2.99,2019-08-10 15:09:00,946 5th St, Los Angeles,CA,90001 +241091,27in FHD Monitor,1,149.99,2019-08-12 20:00:00,585 Hill St, Seattle,WA,98101 +241092,AAA Batteries (4-pack),1,2.99,2019-08-03 20:15:00,455 Elm St, Los Angeles,CA,90001 +241093,AA Batteries (4-pack),1,3.84,2019-08-21 15:22:00,208 West St, San Francisco,CA,94016 +241094,27in 4K Gaming Monitor,1,389.99,2019-08-21 11:38:00,106 South St, Austin,TX,73301 +241095,Flatscreen TV,1,300.0,2019-08-11 20:44:00,986 West St, Seattle,WA,98101 +241096,AAA Batteries (4-pack),2,2.99,2019-08-04 13:45:00,318 Maple St, Seattle,WA,98101 +241097,AAA Batteries (4-pack),2,2.99,2019-08-13 15:17:00,852 Dogwood St, Los Angeles,CA,90001 +241098,AAA Batteries (4-pack),1,2.99,2019-08-02 01:03:00,897 Pine St, Portland,OR,97035 +241099,Flatscreen TV,1,300.0,2019-08-02 20:28:00,38 West St, Atlanta,GA,30301 +241100,Wired Headphones,1,11.99,2019-08-01 21:27:00,529 Forest St, Portland,OR,97035 +241101,AAA Batteries (4-pack),2,2.99,2019-08-06 20:07:00,848 Lakeview St, New York City,NY,10001 +241102,Vareebadd Phone,1,400.0,2019-08-12 20:10:00,181 River St, Los Angeles,CA,90001 +241103,Wired Headphones,1,11.99,2019-08-09 15:53:00,265 Wilson St, Portland,OR,97035 +241104,27in FHD Monitor,1,149.99,2019-08-03 19:30:00,133 Willow St, San Francisco,CA,94016 +241105,AAA Batteries (4-pack),1,2.99,2019-08-30 10:56:00,773 South St, Los Angeles,CA,90001 +241106,Macbook Pro Laptop,1,1700.0,2019-08-25 23:51:00,187 9th St, Los Angeles,CA,90001 +241107,LG Washing Machine,1,600.0,2019-08-08 16:56:00,860 Willow St, San Francisco,CA,94016 +241108,USB-C Charging Cable,1,11.95,2019-08-04 15:58:00,365 Cedar St, Los Angeles,CA,90001 +241109,27in 4K Gaming Monitor,1,389.99,2019-08-24 06:20:00,261 Hill St, San Francisco,CA,94016 +241110,Lightning Charging Cable,2,14.95,2019-08-01 19:55:00,579 Madison St, Portland,OR,97035 +241111,Wired Headphones,1,11.99,2019-08-29 10:42:00,228 Willow St, Los Angeles,CA,90001 +241112,AA Batteries (4-pack),1,3.84,2019-08-03 12:29:00,940 Forest St, San Francisco,CA,94016 +241113,USB-C Charging Cable,1,11.95,2019-08-23 20:00:00,487 Madison St, San Francisco,CA,94016 +241114,USB-C Charging Cable,2,11.95,2019-08-06 00:10:00,18 2nd St, New York City,NY,10001 +241115,Lightning Charging Cable,1,14.95,2019-08-16 19:05:00,529 Willow St, New York City,NY,10001 +241116,27in FHD Monitor,1,149.99,2019-08-13 11:58:00,214 Dogwood St, San Francisco,CA,94016 +241117,20in Monitor,1,109.99,2019-08-10 21:29:00,709 Jackson St, Los Angeles,CA,90001 +241118,27in FHD Monitor,1,149.99,2019-08-23 11:11:00,844 Elm St, Los Angeles,CA,90001 +241119,34in Ultrawide Monitor,1,379.99,2019-08-26 20:57:00,851 Jefferson St, Los Angeles,CA,90001 +241120,AAA Batteries (4-pack),1,2.99,2019-08-26 13:39:00,363 6th St, San Francisco,CA,94016 +241121,Flatscreen TV,1,300.0,2019-08-06 01:38:00,64 Jefferson St, San Francisco,CA,94016 +241122,Bose SoundSport Headphones,1,99.99,2019-08-03 16:23:00,984 River St, New York City,NY,10001 +241123,ThinkPad Laptop,1,999.99,2019-08-19 09:26:00,219 North St, San Francisco,CA,94016 +241124,Macbook Pro Laptop,1,1700.0,2019-08-15 17:33:00,842 Cedar St, Los Angeles,CA,90001 +241125,ThinkPad Laptop,1,999.99,2019-08-03 12:50:00,422 Spruce St, Boston,MA,02215 +241126,iPhone,1,700.0,2019-08-16 21:35:00,579 Lincoln St, New York City,NY,10001 +241126,Lightning Charging Cable,1,14.95,2019-08-16 21:35:00,579 Lincoln St, New York City,NY,10001 +241127,Lightning Charging Cable,1,14.95,2019-08-28 15:07:00,523 Church St, Portland,OR,97035 +241128,27in 4K Gaming Monitor,1,389.99,2019-08-05 23:36:00,860 Lake St, Atlanta,GA,30301 +241129,Wired Headphones,1,11.99,2019-08-26 05:14:00,599 Adams St, Portland,ME,04101 +241130,27in FHD Monitor,1,149.99,2019-08-19 08:38:00,325 12th St, Portland,OR,97035 +241131,Flatscreen TV,1,300.0,2019-08-29 07:52:00,604 2nd St, San Francisco,CA,94016 +241132,Apple Airpods Headphones,1,150.0,2019-08-18 12:05:00,23 Cedar St, Austin,TX,73301 +241133,Flatscreen TV,1,300.0,2019-08-27 11:28:00,792 Forest St, Portland,OR,97035 +241134,Flatscreen TV,1,300.0,2019-08-09 09:36:00,75 Jefferson St, San Francisco,CA,94016 +241135,Wired Headphones,1,11.99,2019-08-01 12:38:00,392 Main St, Atlanta,GA,30301 +241136,Apple Airpods Headphones,1,150.0,2019-08-29 15:33:00,898 Willow St, New York City,NY,10001 +241137,Google Phone,1,600.0,2019-08-20 13:22:00,56 9th St, Austin,TX,73301 +241138,AA Batteries (4-pack),1,3.84,2019-08-22 10:53:00,315 Dogwood St, San Francisco,CA,94016 +241139,USB-C Charging Cable,1,11.95,2019-08-19 00:53:00,653 South St, San Francisco,CA,94016 +241140,Bose SoundSport Headphones,1,99.99,2019-08-19 11:19:00,351 6th St, San Francisco,CA,94016 +241141,USB-C Charging Cable,1,11.95,2019-08-25 17:52:00,477 Lake St, San Francisco,CA,94016 +241142,ThinkPad Laptop,1,999.99,2019-08-10 12:55:00,54 6th St, Atlanta,GA,30301 +241143,Bose SoundSport Headphones,1,99.99,2019-08-09 21:31:00,618 10th St, San Francisco,CA,94016 +241144,AA Batteries (4-pack),1,3.84,2019-08-30 11:12:00,200 Church St, New York City,NY,10001 +241145,AAA Batteries (4-pack),1,2.99,2019-08-19 11:05:00,854 8th St, Austin,TX,73301 +241146,27in FHD Monitor,1,149.99,2019-08-03 17:51:00,894 Chestnut St, Los Angeles,CA,90001 +241147,27in 4K Gaming Monitor,1,389.99,2019-08-11 12:04:00,93 Church St, Dallas,TX,75001 +241148,USB-C Charging Cable,1,11.95,2019-08-14 08:33:00,242 Pine St, Boston,MA,02215 +241149,USB-C Charging Cable,1,11.95,2019-08-02 12:13:00,679 14th St, Seattle,WA,98101 +241150,Lightning Charging Cable,1,14.95,2019-08-31 20:46:00,818 Lakeview St, Dallas,TX,75001 +241151,Wired Headphones,1,11.99,2019-08-20 12:19:00,750 1st St, San Francisco,CA,94016 +241152,Lightning Charging Cable,1,14.95,2019-08-06 20:49:00,985 Chestnut St, San Francisco,CA,94016 +241153,Macbook Pro Laptop,1,1700.0,2019-08-14 11:31:00,659 Adams St, Atlanta,GA,30301 +241154,Apple Airpods Headphones,1,150.0,2019-08-26 11:05:00,11 Johnson St, San Francisco,CA,94016 +241155,AA Batteries (4-pack),2,3.84,2019-08-16 10:25:00,711 8th St, Los Angeles,CA,90001 +241156,USB-C Charging Cable,1,11.95,2019-08-16 09:42:00,893 Church St, Seattle,WA,98101 +241157,34in Ultrawide Monitor,1,379.99,2019-08-03 12:09:00,92 Jefferson St, Portland,OR,97035 +241158,Apple Airpods Headphones,1,150.0,2019-08-25 15:18:00,582 Jackson St, San Francisco,CA,94016 +241159,20in Monitor,1,109.99,2019-08-29 12:39:00,796 South St, San Francisco,CA,94016 +241160,Google Phone,1,600.0,2019-08-22 21:33:00,811 Madison St, Los Angeles,CA,90001 +241161,AA Batteries (4-pack),1,3.84,2019-08-04 22:04:00,700 North St, Dallas,TX,75001 +241162,Wired Headphones,1,11.99,2019-08-30 18:39:00,850 Adams St, San Francisco,CA,94016 +241163,Wired Headphones,1,11.99,2019-08-07 14:17:00,232 Highland St, Boston,MA,02215 +241164,Google Phone,1,600.0,2019-08-30 22:37:00,277 Washington St, Los Angeles,CA,90001 +241165,Lightning Charging Cable,1,14.95,2019-08-25 17:08:00,484 South St, Austin,TX,73301 +241166,USB-C Charging Cable,1,11.95,2019-08-26 18:18:00,835 Hickory St, New York City,NY,10001 +241167,Lightning Charging Cable,1,14.95,2019-08-31 16:43:00,983 9th St, Seattle,WA,98101 +241168,Wired Headphones,1,11.99,2019-08-20 18:01:00,375 North St, San Francisco,CA,94016 +241169,Macbook Pro Laptop,1,1700.0,2019-08-01 11:55:00,524 Park St, New York City,NY,10001 +241170,ThinkPad Laptop,1,999.99,2019-08-04 00:25:00,627 4th St, Boston,MA,02215 +241171,LG Washing Machine,1,600.0,2019-08-20 18:16:00,42 Hill St, New York City,NY,10001 +241172,34in Ultrawide Monitor,1,379.99,2019-08-25 13:58:00,356 Center St, Atlanta,GA,30301 +241173,Lightning Charging Cable,1,14.95,2019-08-26 12:47:00,947 Johnson St, Los Angeles,CA,90001 +241174,Lightning Charging Cable,1,14.95,2019-08-04 15:29:00,136 Hill St, San Francisco,CA,94016 +241175,Bose SoundSport Headphones,1,99.99,2019-08-31 13:31:00,431 Madison St, Dallas,TX,75001 +241176,Lightning Charging Cable,1,14.95,2019-08-03 18:44:00,338 Maple St, San Francisco,CA,94016 +241177,Wired Headphones,1,11.99,2019-08-11 16:54:00,174 North St, San Francisco,CA,94016 +241178,Lightning Charging Cable,1,14.95,2019-08-31 11:05:00,448 Elm St, Seattle,WA,98101 +241179,AAA Batteries (4-pack),1,2.99,2019-08-05 14:00:00,558 8th St, Atlanta,GA,30301 +241180,USB-C Charging Cable,1,11.95,2019-08-18 22:12:00,403 5th St, Los Angeles,CA,90001 +241181,Vareebadd Phone,1,400.0,2019-08-21 13:38:00,365 Church St, Austin,TX,73301 +241182,27in 4K Gaming Monitor,1,389.99,2019-08-31 20:22:00,580 6th St, New York City,NY,10001 +241183,Flatscreen TV,1,300.0,2019-08-12 22:03:00,405 Forest St, Los Angeles,CA,90001 +241184,Wired Headphones,1,11.99,2019-08-03 07:52:00,977 Elm St, Austin,TX,73301 +241185,Wired Headphones,2,11.99,2019-08-22 09:36:00,758 Park St, Atlanta,GA,30301 +241186,Apple Airpods Headphones,1,150.0,2019-08-20 18:21:00,438 Center St, Los Angeles,CA,90001 +241187,Lightning Charging Cable,1,14.95,2019-08-20 22:56:00,486 Willow St, San Francisco,CA,94016 +241188,AAA Batteries (4-pack),1,2.99,2019-08-15 16:31:00,43 Cherry St, San Francisco,CA,94016 +241189,ThinkPad Laptop,1,999.99,2019-08-03 17:13:00,288 8th St, Seattle,WA,98101 +241190,AA Batteries (4-pack),1,3.84,2019-08-01 20:38:00,19 Pine St, Austin,TX,73301 +241191,AAA Batteries (4-pack),1,2.99,2019-08-03 09:45:00,568 Hickory St, Los Angeles,CA,90001 +241192,Macbook Pro Laptop,1,1700.0,2019-08-02 19:21:00,145 Adams St, Los Angeles,CA,90001 +241193,AAA Batteries (4-pack),1,2.99,2019-08-09 12:55:00,347 10th St, San Francisco,CA,94016 +241194,AA Batteries (4-pack),1,3.84,2019-08-25 19:04:00,762 6th St, Seattle,WA,98101 +241195,ThinkPad Laptop,1,999.99,2019-08-11 23:32:00,621 Wilson St, San Francisco,CA,94016 +241196,Lightning Charging Cable,1,14.95,2019-08-23 18:21:00,817 4th St, Los Angeles,CA,90001 +241197,AA Batteries (4-pack),1,3.84,2019-08-12 23:26:00,326 Pine St, San Francisco,CA,94016 +241198,Wired Headphones,1,11.99,2019-08-01 12:37:00,200 River St, San Francisco,CA,94016 +241199,Lightning Charging Cable,1,14.95,2019-08-27 19:25:00,713 Walnut St, Seattle,WA,98101 +241200,27in 4K Gaming Monitor,1,389.99,2019-08-22 20:32:00,949 Main St, Boston,MA,02215 +241201,Lightning Charging Cable,1,14.95,2019-08-10 07:14:00,730 Cherry St, Los Angeles,CA,90001 +241202,AAA Batteries (4-pack),1,2.99,2019-08-04 11:39:00,226 Lakeview St, Seattle,WA,98101 +241203,iPhone,1,700.0,2019-08-06 07:42:00,433 Highland St, Atlanta,GA,30301 +241204,Apple Airpods Headphones,1,150.0,2019-08-15 12:40:00,283 Highland St, Boston,MA,02215 +241205,USB-C Charging Cable,2,11.95,2019-08-23 01:28:00,55 Hickory St, Seattle,WA,98101 +241206,AA Batteries (4-pack),1,3.84,2019-08-12 20:53:00,597 Spruce St, Atlanta,GA,30301 +241207,27in FHD Monitor,1,149.99,2019-08-03 18:29:00,397 Elm St, San Francisco,CA,94016 +241208,iPhone,1,700.0,2019-08-13 12:08:00,637 8th St, Los Angeles,CA,90001 +241209,AA Batteries (4-pack),1,3.84,2019-08-19 17:47:00,348 West St, Seattle,WA,98101 +241210,AAA Batteries (4-pack),3,2.99,2019-08-17 07:51:00,83 Meadow St, Dallas,TX,75001 +241211,iPhone,1,700.0,2019-08-06 17:40:00,228 5th St, Los Angeles,CA,90001 +241212,27in 4K Gaming Monitor,1,389.99,2019-08-24 19:59:00,902 4th St, Los Angeles,CA,90001 +241213,Bose SoundSport Headphones,1,99.99,2019-08-27 10:13:00,162 Maple St, Dallas,TX,75001 +241214,Wired Headphones,1,11.99,2019-08-05 09:27:00,248 2nd St, San Francisco,CA,94016 +241215,Wired Headphones,1,11.99,2019-08-14 11:02:00,172 Adams St, Atlanta,GA,30301 +241216,Wired Headphones,1,11.99,2019-08-01 18:14:00,110 Dogwood St, San Francisco,CA,94016 +241217,Apple Airpods Headphones,1,150.0,2019-08-22 21:18:00,550 Forest St, San Francisco,CA,94016 +241218,Google Phone,1,600.0,2019-08-05 13:47:00,638 9th St, San Francisco,CA,94016 +241219,AA Batteries (4-pack),1,3.84,2019-08-28 10:14:00,381 Walnut St, Los Angeles,CA,90001 +241220,Lightning Charging Cable,1,14.95,2019-08-23 17:57:00,73 Hill St, San Francisco,CA,94016 +241221,Google Phone,1,600.0,2019-08-12 05:35:00,365 5th St, New York City,NY,10001 +241222,Lightning Charging Cable,2,14.95,2019-08-10 12:42:00,9 Elm St, New York City,NY,10001 +241223,Apple Airpods Headphones,1,150.0,2019-08-08 21:56:00,319 Dogwood St, Dallas,TX,75001 +241224,iPhone,1,700.0,2019-08-18 09:42:00,457 4th St, San Francisco,CA,94016 +241224,Wired Headphones,1,11.99,2019-08-18 09:42:00,457 4th St, San Francisco,CA,94016 +241225,AA Batteries (4-pack),1,3.84,2019-08-27 16:34:00,549 Cherry St, San Francisco,CA,94016 +241226,AAA Batteries (4-pack),1,2.99,2019-08-03 16:34:00,601 Lakeview St, San Francisco,CA,94016 +241227,USB-C Charging Cable,1,11.95,2019-08-31 20:50:00,223 Lake St, Boston,MA,02215 +241228,27in 4K Gaming Monitor,1,389.99,2019-08-25 17:23:00,315 Hill St, Dallas,TX,75001 +241229,Lightning Charging Cable,1,14.95,2019-08-08 11:05:00,609 Church St, Portland,OR,97035 +241230,Lightning Charging Cable,2,14.95,2019-08-31 16:29:00,569 Main St, Portland,ME,04101 +241231,Bose SoundSport Headphones,1,99.99,2019-08-02 18:45:00,561 Park St, San Francisco,CA,94016 +241232,AA Batteries (4-pack),2,3.84,2019-08-31 12:33:00,189 5th St, Los Angeles,CA,90001 +241233,iPhone,1,700.0,2019-08-15 22:46:00,205 4th St, San Francisco,CA,94016 +241234,Bose SoundSport Headphones,1,99.99,2019-08-25 21:57:00,367 Johnson St, Seattle,WA,98101 +241235,AAA Batteries (4-pack),1,2.99,2019-08-01 14:28:00,368 10th St, Boston,MA,02215 +241236,34in Ultrawide Monitor,1,379.99,2019-08-01 17:08:00,657 Hill St, Boston,MA,02215 +241237,Google Phone,1,600.0,2019-08-23 03:19:00,114 Johnson St, Portland,OR,97035 +241238,27in FHD Monitor,1,149.99,2019-08-24 16:39:00,138 Wilson St, San Francisco,CA,94016 +241239,Bose SoundSport Headphones,1,99.99,2019-08-15 20:52:00,983 Hickory St, New York City,NY,10001 +241240,USB-C Charging Cable,1,11.95,2019-08-10 22:09:00,59 13th St, Los Angeles,CA,90001 +241241,AAA Batteries (4-pack),7,2.99,2019-08-01 13:05:00,426 Wilson St, Boston,MA,02215 +241241,20in Monitor,1,109.99,2019-08-01 13:05:00,426 Wilson St, Boston,MA,02215 +241242,USB-C Charging Cable,1,11.95,2019-08-12 22:50:00,936 Church St, New York City,NY,10001 +241243,Apple Airpods Headphones,1,150.0,2019-08-25 23:18:00,626 Jefferson St, San Francisco,CA,94016 +241244,USB-C Charging Cable,1,11.95,2019-08-14 15:45:00,167 9th St, Boston,MA,02215 +241245,Bose SoundSport Headphones,1,99.99,2019-08-02 11:38:00,532 6th St, Seattle,WA,98101 +241246,Bose SoundSport Headphones,1,99.99,2019-08-14 19:14:00,10 South St, Atlanta,GA,30301 +241247,AAA Batteries (4-pack),4,2.99,2019-08-29 00:54:00,123 Madison St, Boston,MA,02215 +241248,Wired Headphones,1,11.99,2019-08-04 04:45:00,614 4th St, San Francisco,CA,94016 +241249,20in Monitor,1,109.99,2019-08-12 18:21:00,901 Cherry St, New York City,NY,10001 +241250,Wired Headphones,1,11.99,2019-08-19 00:51:00,433 Chestnut St, Dallas,TX,75001 +241251,20in Monitor,1,109.99,2019-08-12 16:54:00,545 Center St, New York City,NY,10001 +241252,20in Monitor,1,109.99,2019-08-13 19:52:00,778 Meadow St, Los Angeles,CA,90001 +241253,Wired Headphones,1,11.99,2019-08-31 17:53:00,227 Jackson St, Los Angeles,CA,90001 +241254,iPhone,1,700.0,2019-08-06 20:44:00,193 9th St, Boston,MA,02215 +241255,USB-C Charging Cable,1,11.95,2019-08-19 18:41:00,839 2nd St, San Francisco,CA,94016 +241256,iPhone,1,700.0,2019-08-10 10:12:00,249 Meadow St, Boston,MA,02215 +241257,Apple Airpods Headphones,1,150.0,2019-08-31 09:39:00,546 12th St, Boston,MA,02215 +241258,AAA Batteries (4-pack),1,2.99,2019-08-24 23:37:00,871 14th St, Atlanta,GA,30301 +241258,USB-C Charging Cable,1,11.95,2019-08-24 23:37:00,871 14th St, Atlanta,GA,30301 +241259,27in FHD Monitor,1,149.99,2019-08-16 04:53:00,101 Highland St, Atlanta,GA,30301 +241260,Google Phone,1,600.0,2019-08-13 00:18:00,15 4th St, Austin,TX,73301 +241261,Wired Headphones,1,11.99,2019-08-10 17:47:00,401 Lakeview St, Seattle,WA,98101 +241262,AAA Batteries (4-pack),1,2.99,2019-08-10 18:28:00,815 5th St, New York City,NY,10001 +241263,iPhone,1,700.0,2019-08-18 14:40:00,417 2nd St, New York City,NY,10001 +241263,USB-C Charging Cable,1,11.95,2019-08-18 14:40:00,417 2nd St, New York City,NY,10001 +241264,34in Ultrawide Monitor,1,379.99,2019-08-16 10:11:00,684 Johnson St, Austin,TX,73301 +241265,20in Monitor,1,109.99,2019-08-29 12:48:00,161 Jefferson St, Dallas,TX,75001 +241266,USB-C Charging Cable,1,11.95,2019-08-29 10:58:00,331 Meadow St, Austin,TX,73301 +241267,Bose SoundSport Headphones,1,99.99,2019-08-12 17:49:00,644 10th St, Los Angeles,CA,90001 +241268,USB-C Charging Cable,1,11.95,2019-08-03 07:26:00,71 Cherry St, Portland,OR,97035 +241269,AA Batteries (4-pack),1,3.84,2019-08-12 06:29:00,229 Washington St, San Francisco,CA,94016 +241270,Wired Headphones,1,11.99,2019-08-17 23:39:00,758 Jefferson St, San Francisco,CA,94016 +241271,34in Ultrawide Monitor,1,379.99,2019-08-11 00:05:00,252 Church St, Portland,OR,97035 +241272,34in Ultrawide Monitor,1,379.99,2019-08-19 14:49:00,502 Highland St, Portland,OR,97035 +241273,USB-C Charging Cable,1,11.95,2019-08-31 14:25:00,128 Lakeview St, New York City,NY,10001 +241274,AA Batteries (4-pack),1,3.84,2019-08-14 08:49:00,57 South St, Boston,MA,02215 +241275,20in Monitor,1,109.99,2019-08-10 20:05:00,389 Maple St, Los Angeles,CA,90001 +241276,USB-C Charging Cable,1,11.95,2019-08-30 09:02:00,165 North St, Boston,MA,02215 +241277,Flatscreen TV,1,300.0,2019-08-30 17:45:00,980 Maple St, Austin,TX,73301 +241278,27in 4K Gaming Monitor,1,389.99,2019-08-22 17:21:00,414 Johnson St, Atlanta,GA,30301 +241279,USB-C Charging Cable,1,11.95,2019-08-24 22:01:00,864 Center St, San Francisco,CA,94016 +241280,Wired Headphones,1,11.99,2019-08-22 16:07:00,599 Park St, Atlanta,GA,30301 +241281,20in Monitor,1,109.99,2019-08-18 16:02:00,903 Chestnut St, San Francisco,CA,94016 +241282,27in 4K Gaming Monitor,1,389.99,2019-08-07 19:23:00,961 2nd St, San Francisco,CA,94016 +241283,AAA Batteries (4-pack),1,2.99,2019-08-03 13:09:00,613 Spruce St, Boston,MA,02215 +241284,USB-C Charging Cable,1,11.95,2019-08-31 20:55:00,52 Hill St, San Francisco,CA,94016 +241285,Wired Headphones,1,11.99,2019-08-17 10:13:00,423 6th St, Austin,TX,73301 +241286,Google Phone,1,600.0,2019-08-09 12:24:00,849 Chestnut St, Dallas,TX,75001 +241286,USB-C Charging Cable,1,11.95,2019-08-09 12:24:00,849 Chestnut St, Dallas,TX,75001 +241287,Bose SoundSport Headphones,1,99.99,2019-08-04 14:28:00,824 7th St, New York City,NY,10001 +241288,AAA Batteries (4-pack),1,2.99,2019-08-29 18:20:00,804 Elm St, Boston,MA,02215 +241289,AAA Batteries (4-pack),2,2.99,2019-08-29 14:38:00,668 13th St, Dallas,TX,75001 +241290,34in Ultrawide Monitor,1,379.99,2019-08-15 16:30:00,456 North St, Boston,MA,02215 +241291,Lightning Charging Cable,1,14.95,2019-08-15 16:46:00,9 Cherry St, New York City,NY,10001 +241292,Lightning Charging Cable,1,14.95,2019-08-29 18:33:00,736 Jackson St, Austin,TX,73301 +241293,iPhone,1,700.0,2019-08-26 23:30:00,319 Ridge St, Boston,MA,02215 +241294,AAA Batteries (4-pack),2,2.99,2019-08-29 10:14:00,421 Dogwood St, San Francisco,CA,94016 +241295,Wired Headphones,1,11.99,2019-08-17 13:49:00,917 Washington St, Seattle,WA,98101 +241296,USB-C Charging Cable,1,11.95,2019-08-24 10:43:00,245 Highland St, Portland,OR,97035 +241297,Bose SoundSport Headphones,1,99.99,2019-08-15 18:50:00,770 2nd St, Dallas,TX,75001 +241298,Bose SoundSport Headphones,1,99.99,2019-08-15 09:46:00,597 8th St, Los Angeles,CA,90001 +241299,Wired Headphones,2,11.99,2019-08-13 17:19:00,922 Hill St, San Francisco,CA,94016 +241300,Lightning Charging Cable,1,14.95,2019-08-06 02:04:00,122 Highland St, Portland,OR,97035 +241301,Lightning Charging Cable,1,14.95,2019-08-24 16:20:00,624 Ridge St, Los Angeles,CA,90001 +241302,AA Batteries (4-pack),1,3.84,2019-08-07 07:31:00,422 Lake St, New York City,NY,10001 +241303,Wired Headphones,1,11.99,2019-08-26 12:20:00,231 Park St, Portland,OR,97035 +241304,Bose SoundSport Headphones,1,99.99,2019-08-03 20:54:00,767 Willow St, San Francisco,CA,94016 +241305,Lightning Charging Cable,1,14.95,2019-08-18 14:43:00,648 Washington St, San Francisco,CA,94016 +241306,Google Phone,1,600.0,2019-08-15 14:52:00,195 Wilson St, San Francisco,CA,94016 +241307,Flatscreen TV,1,300.0,2019-08-13 22:30:00,271 14th St, Atlanta,GA,30301 +241308,AAA Batteries (4-pack),1,2.99,2019-08-12 19:39:00,609 13th St, Los Angeles,CA,90001 +241309,Bose SoundSport Headphones,1,99.99,2019-08-11 10:18:00,812 Hill St, San Francisco,CA,94016 +241310,Apple Airpods Headphones,1,150.0,2019-08-24 12:26:00,886 Jackson St, Seattle,WA,98101 +241311,27in 4K Gaming Monitor,1,389.99,2019-08-27 15:34:00,214 West St, Los Angeles,CA,90001 +241312,USB-C Charging Cable,1,11.95,2019-08-12 11:22:00,371 Cherry St, New York City,NY,10001 +241313,Google Phone,1,600.0,2019-08-28 17:58:00,849 9th St, New York City,NY,10001 +241313,USB-C Charging Cable,3,11.95,2019-08-28 17:58:00,849 9th St, New York City,NY,10001 +241314,USB-C Charging Cable,1,11.95,2019-08-20 05:48:00,207 7th St, Los Angeles,CA,90001 +241315,AAA Batteries (4-pack),1,2.99,2019-08-13 13:08:00,968 14th St, Los Angeles,CA,90001 +241316,Wired Headphones,1,11.99,2019-08-23 17:31:00,947 6th St, Dallas,TX,75001 +241317,Wired Headphones,1,11.99,2019-08-22 11:55:00,193 North St, Austin,TX,73301 +241318,Macbook Pro Laptop,1,1700.0,2019-08-20 13:20:00,210 Lincoln St, New York City,NY,10001 +241319,AAA Batteries (4-pack),1,2.99,2019-08-22 13:32:00,202 Adams St, New York City,NY,10001 +241320,AAA Batteries (4-pack),1,2.99,2019-08-25 15:40:00,541 Walnut St, Portland,OR,97035 +241321,34in Ultrawide Monitor,1,379.99,2019-08-11 19:44:00,543 Cherry St, Boston,MA,02215 +241322,USB-C Charging Cable,1,11.95,2019-08-31 13:23:00,962 Cherry St, Portland,OR,97035 +241323,34in Ultrawide Monitor,1,379.99,2019-08-02 19:47:00,17 Adams St, Austin,TX,73301 +241324,iPhone,1,700.0,2019-08-18 14:09:00,919 Center St, Portland,OR,97035 +241325,20in Monitor,1,109.99,2019-08-01 13:30:00,590 10th St, Atlanta,GA,30301 +241326,Apple Airpods Headphones,1,150.0,2019-08-01 22:26:00,177 Cedar St, Seattle,WA,98101 +241327,Google Phone,1,600.0,2019-08-10 11:48:00,988 Ridge St, Los Angeles,CA,90001 +241328,27in 4K Gaming Monitor,1,389.99,2019-08-11 20:23:00,650 14th St, Los Angeles,CA,90001 +241329,iPhone,1,700.0,2019-08-07 00:54:00,442 West St, Los Angeles,CA,90001 +241330,Google Phone,1,600.0,2019-08-16 13:08:00,606 Cherry St, Los Angeles,CA,90001 +241331,Wired Headphones,2,11.99,2019-08-31 17:49:00,782 Jefferson St, Los Angeles,CA,90001 +241332,Lightning Charging Cable,2,14.95,2019-08-06 08:08:00,706 Center St, San Francisco,CA,94016 +241333,Lightning Charging Cable,1,14.95,2019-08-18 15:28:00,561 Meadow St, Los Angeles,CA,90001 +241334,AA Batteries (4-pack),1,3.84,2019-08-11 13:55:00,185 Adams St, Seattle,WA,98101 +241334,Bose SoundSport Headphones,1,99.99,2019-08-11 13:55:00,185 Adams St, Seattle,WA,98101 +241335,Wired Headphones,1,11.99,2019-08-21 10:42:00,359 Jefferson St, Dallas,TX,75001 +241336,27in 4K Gaming Monitor,1,389.99,2019-08-24 15:47:00,490 1st St, New York City,NY,10001 +241337,USB-C Charging Cable,1,11.95,2019-08-08 13:34:00,840 Forest St, Portland,OR,97035 +241338,AA Batteries (4-pack),1,3.84,2019-08-26 10:17:00,671 9th St, New York City,NY,10001 +241339,USB-C Charging Cable,1,11.95,2019-08-26 19:25:00,330 Church St, Atlanta,GA,30301 +241340,AAA Batteries (4-pack),3,2.99,2019-08-16 11:04:00,94 River St, Los Angeles,CA,90001 +241341,AA Batteries (4-pack),2,3.84,2019-08-14 13:18:00,959 1st St, Austin,TX,73301 +241342,Lightning Charging Cable,1,14.95,2019-08-29 08:59:00,740 Park St, Atlanta,GA,30301 +241343,Bose SoundSport Headphones,1,99.99,2019-08-27 23:08:00,88 Maple St, Los Angeles,CA,90001 +241344,AA Batteries (4-pack),3,3.84,2019-08-23 20:37:00,644 11th St, Austin,TX,73301 +241345,Lightning Charging Cable,1,14.95,2019-08-12 00:02:00,245 Ridge St, Los Angeles,CA,90001 +241346,iPhone,1,700.0,2019-08-14 00:36:00,900 Center St, New York City,NY,10001 +241347,Apple Airpods Headphones,1,150.0,2019-08-21 12:12:00,967 Sunset St, Los Angeles,CA,90001 +241348,AAA Batteries (4-pack),2,2.99,2019-08-23 12:39:00,808 2nd St, New York City,NY,10001 +241349,USB-C Charging Cable,1,11.95,2019-08-17 18:47:00,936 Cherry St, Boston,MA,02215 +241350,AA Batteries (4-pack),2,3.84,2019-08-07 15:42:00,809 12th St, San Francisco,CA,94016 +241351,Bose SoundSport Headphones,1,99.99,2019-08-04 10:37:00,422 11th St, Los Angeles,CA,90001 +241352,34in Ultrawide Monitor,1,379.99,2019-08-06 22:53:00,116 Maple St, Seattle,WA,98101 +241353,34in Ultrawide Monitor,1,379.99,2019-08-04 19:58:00,121 9th St, Seattle,WA,98101 +241354,Lightning Charging Cable,1,14.95,2019-08-11 15:57:00,888 Cherry St, Seattle,WA,98101 +241355,AA Batteries (4-pack),1,3.84,2019-08-19 13:23:00,231 Hill St, Atlanta,GA,30301 +241356,Wired Headphones,1,11.99,2019-08-24 13:37:00,982 Dogwood St, Dallas,TX,75001 +241357,Apple Airpods Headphones,1,150.0,2019-08-01 14:28:00,706 River St, Atlanta,GA,30301 +241358,Wired Headphones,2,11.99,2019-08-11 05:39:00,252 Church St, San Francisco,CA,94016 +241359,Wired Headphones,1,11.99,2019-08-22 10:10:00,704 Wilson St, New York City,NY,10001 +241360,ThinkPad Laptop,1,999.99,2019-08-29 14:05:00,410 North St, Boston,MA,02215 +241361,Apple Airpods Headphones,1,150.0,2019-08-17 09:05:00,311 Pine St, New York City,NY,10001 +241362,USB-C Charging Cable,2,11.95,2019-08-15 17:25:00,821 Pine St, Boston,MA,02215 +241363,AA Batteries (4-pack),1,3.84,2019-08-28 13:09:00,354 1st St, San Francisco,CA,94016 +241364,Lightning Charging Cable,2,14.95,2019-08-17 10:55:00,930 Park St, San Francisco,CA,94016 +241365,AA Batteries (4-pack),1,3.84,2019-08-10 15:21:00,612 Lake St, Atlanta,GA,30301 +241366,Wired Headphones,1,11.99,2019-08-02 11:20:00,19 Main St, Boston,MA,02215 +241367,Wired Headphones,1,11.99,2019-08-04 10:08:00,623 Spruce St, Portland,OR,97035 +241368,Lightning Charging Cable,1,14.95,2019-08-27 20:53:00,745 Walnut St, San Francisco,CA,94016 +241369,Lightning Charging Cable,2,14.95,2019-08-08 13:22:00,946 Jackson St, Atlanta,GA,30301 +241370,34in Ultrawide Monitor,1,379.99,2019-08-23 11:26:00,714 Spruce St, New York City,NY,10001 +241371,ThinkPad Laptop,1,999.99,2019-08-10 20:16:00,443 11th St, San Francisco,CA,94016 +241372,27in FHD Monitor,1,149.99,2019-08-24 11:13:00,288 Jackson St, San Francisco,CA,94016 +241373,Lightning Charging Cable,1,14.95,2019-08-30 10:56:00,180 West St, Atlanta,GA,30301 +241374,AA Batteries (4-pack),1,3.84,2019-08-09 10:18:00,39 Walnut St, Portland,OR,97035 +241375,ThinkPad Laptop,1,999.99,2019-08-08 10:33:00,538 9th St, Atlanta,GA,30301 +241376,Lightning Charging Cable,1,14.95,2019-08-29 11:56:00,879 Adams St, Los Angeles,CA,90001 +241377,AAA Batteries (4-pack),1,2.99,2019-08-06 15:05:00,321 Spruce St, San Francisco,CA,94016 +241378,Lightning Charging Cable,1,14.95,2019-08-16 15:23:00,902 Cedar St, Austin,TX,73301 +241379,Apple Airpods Headphones,1,150.0,2019-08-11 20:29:00,822 West St, Atlanta,GA,30301 +241380,Google Phone,1,600.0,2019-08-16 19:01:00,11 Johnson St, Boston,MA,02215 +241381,Flatscreen TV,1,300.0,2019-08-09 12:57:00,286 7th St, Boston,MA,02215 +241382,Bose SoundSport Headphones,1,99.99,2019-08-17 14:16:00,292 7th St, San Francisco,CA,94016 +241383,AAA Batteries (4-pack),1,2.99,2019-08-11 16:38:00,833 Madison St, San Francisco,CA,94016 +241384,Bose SoundSport Headphones,1,99.99,2019-08-08 15:38:00,925 13th St, Dallas,TX,75001 +241385,AAA Batteries (4-pack),3,2.99,2019-08-07 07:04:00,67 9th St, Seattle,WA,98101 +241386,Apple Airpods Headphones,1,150.0,2019-08-31 10:24:00,896 Elm St, San Francisco,CA,94016 +241387,Google Phone,1,600.0,2019-08-11 23:18:00,926 Forest St, New York City,NY,10001 +241388,AAA Batteries (4-pack),1,2.99,2019-08-15 10:04:00,450 2nd St, Dallas,TX,75001 +241389,Apple Airpods Headphones,1,150.0,2019-08-02 09:40:00,305 Washington St, Dallas,TX,75001 +241390,ThinkPad Laptop,1,999.99,2019-08-24 08:44:00,193 10th St, Atlanta,GA,30301 +241391,AA Batteries (4-pack),2,3.84,2019-08-17 21:37:00,984 2nd St, Seattle,WA,98101 +241392,Flatscreen TV,1,300.0,2019-08-15 21:02:00,227 Forest St, San Francisco,CA,94016 +241393,AAA Batteries (4-pack),1,2.99,2019-08-03 08:37:00,665 Lakeview St, New York City,NY,10001 +241394,Google Phone,1,600.0,2019-08-24 19:39:00,815 6th St, Dallas,TX,75001 +241394,Wired Headphones,1,11.99,2019-08-24 19:39:00,815 6th St, Dallas,TX,75001 +241395,AA Batteries (4-pack),1,3.84,2019-08-19 05:33:00,92 7th St, San Francisco,CA,94016 +241396,AA Batteries (4-pack),1,3.84,2019-08-03 16:52:00,730 Jefferson St, San Francisco,CA,94016 +241397,AAA Batteries (4-pack),1,2.99,2019-08-04 22:50:00,791 Elm St, Seattle,WA,98101 +241398,Flatscreen TV,1,300.0,2019-08-18 11:37:00,611 Lincoln St, Atlanta,GA,30301 +241399,Vareebadd Phone,1,400.0,2019-08-06 14:14:00,31 Church St, Seattle,WA,98101 +241400,Wired Headphones,1,11.99,2019-08-12 16:11:00,125 5th St, Boston,MA,02215 +241401,Flatscreen TV,1,300.0,2019-08-06 10:11:00,838 Lake St, New York City,NY,10001 +241402,27in 4K Gaming Monitor,1,389.99,2019-08-02 16:55:00,702 River St, Boston,MA,02215 +241403,Wired Headphones,1,11.99,2019-08-18 05:59:00,151 Willow St, San Francisco,CA,94016 +241404,27in FHD Monitor,1,149.99,2019-08-26 11:47:00,853 Pine St, San Francisco,CA,94016 +241405,27in FHD Monitor,1,149.99,2019-08-27 14:53:00,355 Church St, New York City,NY,10001 +241406,Wired Headphones,1,11.99,2019-08-19 09:40:00,413 Spruce St, San Francisco,CA,94016 +241407,Vareebadd Phone,1,400.0,2019-08-24 19:21:00,752 Adams St, Boston,MA,02215 +241408,27in 4K Gaming Monitor,1,389.99,2019-08-31 20:12:00,216 12th St, Los Angeles,CA,90001 +241409,AAA Batteries (4-pack),1,2.99,2019-08-28 13:32:00,839 River St, Los Angeles,CA,90001 +241410,AAA Batteries (4-pack),2,2.99,2019-08-16 21:55:00,555 Church St, Atlanta,GA,30301 +241411,USB-C Charging Cable,1,11.95,2019-08-22 13:35:00,202 Dogwood St, Austin,TX,73301 +241412,Lightning Charging Cable,1,14.95,2019-08-02 17:10:00,396 Church St, Dallas,TX,75001 +241413,Apple Airpods Headphones,1,150.0,2019-08-13 08:01:00,48 Hickory St, Los Angeles,CA,90001 +241414,AA Batteries (4-pack),1,3.84,2019-08-10 15:37:00,43 Sunset St, Atlanta,GA,30301 +241415,Apple Airpods Headphones,1,150.0,2019-08-30 15:43:00,8 Dogwood St, San Francisco,CA,94016 +241416,Apple Airpods Headphones,1,150.0,2019-08-01 22:26:00,858 Forest St, Boston,MA,02215 +241417,AAA Batteries (4-pack),3,2.99,2019-08-21 14:12:00,794 Adams St, Seattle,WA,98101 +241418,iPhone,1,700.0,2019-08-30 11:26:00,928 11th St, Portland,ME,04101 +241419,AA Batteries (4-pack),1,3.84,2019-08-31 16:57:00,827 Chestnut St, Boston,MA,02215 +241420,Wired Headphones,1,11.99,2019-08-09 15:31:00,411 Johnson St, Boston,MA,02215 +241421,Apple Airpods Headphones,1,150.0,2019-08-04 19:19:00,531 Jackson St, Atlanta,GA,30301 +241422,34in Ultrawide Monitor,1,379.99,2019-08-31 17:23:00,86 Lake St, Seattle,WA,98101 +241423,Wired Headphones,1,11.99,2019-08-19 08:58:00,665 Lake St, Atlanta,GA,30301 +241424,Wired Headphones,1,11.99,2019-08-01 08:22:00,801 Meadow St, Seattle,WA,98101 +241425,AA Batteries (4-pack),1,3.84,2019-08-17 18:15:00,170 11th St, San Francisco,CA,94016 +241426,Apple Airpods Headphones,1,150.0,2019-08-10 18:36:00,998 Adams St, Dallas,TX,75001 +241427,AA Batteries (4-pack),1,3.84,2019-08-16 20:01:00,213 14th St, Boston,MA,02215 +241428,Bose SoundSport Headphones,1,99.99,2019-08-23 12:19:00,172 South St, New York City,NY,10001 +241429,Wired Headphones,1,11.99,2019-08-20 22:16:00,156 Lakeview St, Los Angeles,CA,90001 +241430,AAA Batteries (4-pack),1,2.99,2019-08-28 07:51:00,181 Cherry St, New York City,NY,10001 +241431,27in 4K Gaming Monitor,1,389.99,2019-08-17 17:11:00,682 Maple St, Los Angeles,CA,90001 +241432,AAA Batteries (4-pack),1,2.99,2019-08-06 20:09:00,693 Jackson St, Boston,MA,02215 +241433,Apple Airpods Headphones,1,150.0,2019-08-27 19:52:00,604 Madison St, Los Angeles,CA,90001 +241434,Apple Airpods Headphones,1,150.0,2019-08-12 19:46:00,518 Jefferson St, San Francisco,CA,94016 +241434,ThinkPad Laptop,1,999.99,2019-08-12 19:46:00,518 Jefferson St, San Francisco,CA,94016 +241435,ThinkPad Laptop,1,999.99,2019-08-28 18:28:00,991 Johnson St, Boston,MA,02215 +241436,Flatscreen TV,1,300.0,2019-08-13 18:13:00,18 Pine St, Boston,MA,02215 +241437,Wired Headphones,1,11.99,2019-08-02 10:54:00,675 Meadow St, Dallas,TX,75001 +241438,Wired Headphones,1,11.99,2019-08-07 22:30:00,57 10th St, Boston,MA,02215 +241439,AA Batteries (4-pack),1,3.84,2019-08-15 23:32:00,442 Dogwood St, Portland,OR,97035 +241440,34in Ultrawide Monitor,1,379.99,2019-08-06 04:15:00,727 Walnut St, Austin,TX,73301 +241441,AA Batteries (4-pack),1,3.84,2019-08-14 15:27:00,383 Forest St, Seattle,WA,98101 +241442,AA Batteries (4-pack),1,3.84,2019-08-08 13:07:00,594 Forest St, Los Angeles,CA,90001 +241443,Apple Airpods Headphones,1,150.0,2019-08-23 15:26:00,919 Johnson St, San Francisco,CA,94016 +241444,Lightning Charging Cable,1,14.95,2019-08-03 11:50:00,130 Jefferson St, New York City,NY,10001 +241445,Apple Airpods Headphones,1,150.0,2019-08-10 18:10:00,847 12th St, Seattle,WA,98101 +241446,Flatscreen TV,1,300.0,2019-08-11 08:10:00,537 Lake St, Dallas,TX,75001 +241447,Apple Airpods Headphones,1,150.0,2019-08-31 21:07:00,568 Highland St, Los Angeles,CA,90001 +241447,AA Batteries (4-pack),1,3.84,2019-08-31 21:07:00,568 Highland St, Los Angeles,CA,90001 +241448,AA Batteries (4-pack),1,3.84,2019-08-10 15:09:00,403 13th St, Dallas,TX,75001 +241449,27in 4K Gaming Monitor,1,389.99,2019-08-01 13:27:00,721 Center St, Los Angeles,CA,90001 +241450,AA Batteries (4-pack),1,3.84,2019-08-01 22:04:00,450 Park St, Boston,MA,02215 +241451,Apple Airpods Headphones,1,150.0,2019-08-19 08:35:00,10 Adams St, Boston,MA,02215 +241452,27in 4K Gaming Monitor,1,389.99,2019-08-26 21:03:00,362 10th St, Boston,MA,02215 +241453,ThinkPad Laptop,1,999.99,2019-08-25 10:46:00,355 Pine St, San Francisco,CA,94016 +241454,AA Batteries (4-pack),1,3.84,2019-08-04 10:19:00,735 Adams St, Portland,OR,97035 +241455,ThinkPad Laptop,1,999.99,2019-08-11 16:51:00,139 11th St, Seattle,WA,98101 +241456,Lightning Charging Cable,1,14.95,2019-08-31 12:19:00,857 Church St, San Francisco,CA,94016 +241457,AA Batteries (4-pack),1,3.84,2019-08-02 05:07:00,284 Hill St, San Francisco,CA,94016 +241458,USB-C Charging Cable,1,11.95,2019-08-21 00:15:00,930 10th St, Los Angeles,CA,90001 +241459,Macbook Pro Laptop,1,1700.0,2019-08-26 14:19:00,793 Lake St, Los Angeles,CA,90001 +241460,USB-C Charging Cable,2,11.95,2019-08-03 13:01:00,632 Main St, Dallas,TX,75001 +241461,Wired Headphones,1,11.99,2019-08-27 23:55:00,730 Lincoln St, San Francisco,CA,94016 +241462,27in 4K Gaming Monitor,1,389.99,2019-08-15 15:13:00,695 Spruce St, Portland,OR,97035 +241463,Vareebadd Phone,1,400.0,2019-08-17 19:14:00,494 Cedar St, Atlanta,GA,30301 +241464,Flatscreen TV,1,300.0,2019-08-27 05:31:00,573 5th St, Boston,MA,02215 +241464,Macbook Pro Laptop,1,1700.0,2019-08-27 05:31:00,573 5th St, Boston,MA,02215 +241465,Wired Headphones,1,11.99,2019-08-19 15:27:00,402 Cherry St, New York City,NY,10001 +241466,Wired Headphones,1,11.99,2019-08-27 18:19:00,542 14th St, Dallas,TX,75001 +241467,Wired Headphones,1,11.99,2019-08-15 16:37:00,377 1st St, Austin,TX,73301 +241468,Lightning Charging Cable,1,14.95,2019-08-07 08:52:00,348 Spruce St, Portland,OR,97035 +241469,AAA Batteries (4-pack),1,2.99,2019-08-18 15:37:00,323 9th St, San Francisco,CA,94016 +241469,34in Ultrawide Monitor,1,379.99,2019-08-18 15:37:00,323 9th St, San Francisco,CA,94016 +241470,iPhone,1,700.0,2019-08-28 21:16:00,843 Elm St, Seattle,WA,98101 +241471,AAA Batteries (4-pack),1,2.99,2019-08-12 12:15:00,592 12th St, Dallas,TX,75001 +241472,iPhone,1,700.0,2019-08-20 14:09:00,130 1st St, New York City,NY,10001 +241472,Wired Headphones,2,11.99,2019-08-20 14:09:00,130 1st St, New York City,NY,10001 +241473,AA Batteries (4-pack),1,3.84,2019-08-06 23:59:00,233 Park St, Los Angeles,CA,90001 +241474,Flatscreen TV,1,300.0,2019-08-24 15:34:00,76 Main St, Los Angeles,CA,90001 +241475,Lightning Charging Cable,1,14.95,2019-08-19 20:40:00,371 4th St, New York City,NY,10001 +241476,ThinkPad Laptop,1,999.99,2019-08-25 14:19:00,360 12th St, Dallas,TX,75001 +241477,Apple Airpods Headphones,1,150.0,2019-08-21 11:58:00,952 1st St, San Francisco,CA,94016 +241478,Apple Airpods Headphones,1,150.0,2019-08-08 08:48:00,343 Jackson St, San Francisco,CA,94016 +241479,27in FHD Monitor,1,149.99,2019-08-24 11:38:00,954 10th St, San Francisco,CA,94016 +241480,34in Ultrawide Monitor,1,379.99,2019-08-08 12:32:00,89 North St, Atlanta,GA,30301 +241481,AA Batteries (4-pack),3,3.84,2019-08-12 21:40:00,762 Spruce St, New York City,NY,10001 +241482,iPhone,1,700.0,2019-08-04 14:43:00,330 12th St, Seattle,WA,98101 +241483,Lightning Charging Cable,1,14.95,2019-08-16 20:08:00,783 Cherry St, San Francisco,CA,94016 +241484,34in Ultrawide Monitor,1,379.99,2019-08-20 11:01:00,644 Main St, Los Angeles,CA,90001 +241485,Bose SoundSport Headphones,1,99.99,2019-08-27 11:16:00,639 Adams St, Atlanta,GA,30301 +241486,Wired Headphones,1,11.99,2019-08-02 10:24:00,950 Sunset St, San Francisco,CA,94016 +241487,AAA Batteries (4-pack),1,2.99,2019-08-28 20:33:00,932 Ridge St, Seattle,WA,98101 +241488,Flatscreen TV,1,300.0,2019-08-20 14:19:00,21 Johnson St, New York City,NY,10001 +241489,Lightning Charging Cable,1,14.95,2019-08-10 20:49:00,187 Ridge St, Los Angeles,CA,90001 +241490,34in Ultrawide Monitor,1,379.99,2019-08-16 09:56:00,299 Madison St, Atlanta,GA,30301 +241491,AAA Batteries (4-pack),1,2.99,2019-08-08 22:13:00,961 Willow St, Portland,OR,97035 +241492,Apple Airpods Headphones,1,150.0,2019-08-26 14:13:00,604 Chestnut St, San Francisco,CA,94016 +241492,Bose SoundSport Headphones,1,99.99,2019-08-26 14:13:00,604 Chestnut St, San Francisco,CA,94016 +241493,AA Batteries (4-pack),1,3.84,2019-08-14 20:58:00,132 9th St, Boston,MA,02215 +241494,Wired Headphones,2,11.99,2019-08-11 12:55:00,84 Elm St, Los Angeles,CA,90001 +241495,Google Phone,1,600.0,2019-08-22 13:26:00,185 Cedar St, Seattle,WA,98101 +241496,Macbook Pro Laptop,1,1700.0,2019-08-06 19:23:00,407 Forest St, Los Angeles,CA,90001 +241497,27in FHD Monitor,1,149.99,2019-08-31 17:22:00,67 Hill St, New York City,NY,10001 +241498,USB-C Charging Cable,1,11.95,2019-08-15 23:33:00,654 Lake St, Dallas,TX,75001 +241499,AAA Batteries (4-pack),1,2.99,2019-08-16 17:17:00,613 Highland St, New York City,NY,10001 +241500,Bose SoundSport Headphones,1,99.99,2019-08-29 10:47:00,135 Lakeview St, San Francisco,CA,94016 +241501,Wired Headphones,1,11.99,2019-08-16 08:41:00,774 12th St, San Francisco,CA,94016 +241502,ThinkPad Laptop,1,999.99,2019-08-15 11:25:00,104 Main St, Portland,OR,97035 +241503,Lightning Charging Cable,1,14.95,2019-08-31 10:44:00,498 13th St, Dallas,TX,75001 +241504,Flatscreen TV,1,300.0,2019-08-01 22:29:00,273 Jefferson St, San Francisco,CA,94016 +241505,Apple Airpods Headphones,1,150.0,2019-08-23 18:25:00,122 Lakeview St, Atlanta,GA,30301 +241506,34in Ultrawide Monitor,1,379.99,2019-08-09 13:39:00,752 Hill St, Boston,MA,02215 +241507,Apple Airpods Headphones,1,150.0,2019-08-01 14:14:00,752 9th St, Seattle,WA,98101 +241508,Macbook Pro Laptop,1,1700.0,2019-08-08 16:27:00,853 North St, San Francisco,CA,94016 +241509,USB-C Charging Cable,1,11.95,2019-08-28 19:38:00,653 14th St, Boston,MA,02215 +241510,USB-C Charging Cable,1,11.95,2019-08-02 12:27:00,77 North St, San Francisco,CA,94016 +241511,AAA Batteries (4-pack),1,2.99,2019-08-05 19:00:00,369 Meadow St, Seattle,WA,98101 +241512,27in 4K Gaming Monitor,1,389.99,2019-08-05 22:14:00,539 Walnut St, Los Angeles,CA,90001 +241513,Lightning Charging Cable,1,14.95,2019-08-23 15:32:00,7 Jefferson St, New York City,NY,10001 +241514,Wired Headphones,1,11.99,2019-08-10 07:10:00,977 Elm St, New York City,NY,10001 +241515,Apple Airpods Headphones,1,150.0,2019-08-13 17:31:00,951 Meadow St, New York City,NY,10001 +241516,iPhone,1,700.0,2019-08-02 17:59:00,850 5th St, Los Angeles,CA,90001 +241517,Lightning Charging Cable,1,14.95,2019-08-23 06:55:00,401 Ridge St, Los Angeles,CA,90001 +241518,34in Ultrawide Monitor,1,379.99,2019-08-27 06:19:00,120 Pine St, New York City,NY,10001 +241519,27in FHD Monitor,1,149.99,2019-08-10 00:47:00,597 Lincoln St, Seattle,WA,98101 +241520,Wired Headphones,1,11.99,2019-08-24 15:42:00,480 Center St, Portland,OR,97035 +241521,Apple Airpods Headphones,1,150.0,2019-08-11 08:47:00,118 North St, Los Angeles,CA,90001 +241522,AAA Batteries (4-pack),4,2.99,2019-08-03 09:56:00,198 Jefferson St, San Francisco,CA,94016 +241523,27in FHD Monitor,1,149.99,2019-08-31 17:15:00,904 5th St, Dallas,TX,75001 +241524,Google Phone,1,600.0,2019-08-17 14:45:00,644 Dogwood St, Boston,MA,02215 +241524,USB-C Charging Cable,1,11.95,2019-08-17 14:45:00,644 Dogwood St, Boston,MA,02215 +241525,Bose SoundSport Headphones,1,99.99,2019-08-07 11:17:00,767 Johnson St, New York City,NY,10001 +241526,AA Batteries (4-pack),1,3.84,2019-08-27 22:03:00,252 9th St, Los Angeles,CA,90001 +241527,Lightning Charging Cable,1,14.95,2019-08-24 14:19:00,417 Cedar St, Seattle,WA,98101 +241528,Wired Headphones,1,11.99,2019-08-04 20:41:00,451 Ridge St, Boston,MA,02215 +241528,USB-C Charging Cable,2,11.95,2019-08-04 20:41:00,451 Ridge St, Boston,MA,02215 +241529,USB-C Charging Cable,1,11.95,2019-08-04 12:43:00,290 Park St, Austin,TX,73301 +241530,AA Batteries (4-pack),1,3.84,2019-08-17 22:37:00,341 West St, Los Angeles,CA,90001 +241531,LG Washing Machine,1,600.0,2019-08-08 19:09:00,774 Willow St, Austin,TX,73301 +241532,Wired Headphones,1,11.99,2019-08-27 00:35:00,295 Madison St, Seattle,WA,98101 +241533,Bose SoundSport Headphones,1,99.99,2019-08-12 20:59:00,779 Lake St, San Francisco,CA,94016 +241534,AAA Batteries (4-pack),2,2.99,2019-08-25 14:42:00,882 Johnson St, Atlanta,GA,30301 +241535,Google Phone,1,600.0,2019-08-28 09:56:00,221 4th St, Los Angeles,CA,90001 +241536,Wired Headphones,1,11.99,2019-08-15 07:34:00,725 2nd St, Seattle,WA,98101 +241537,Bose SoundSport Headphones,1,99.99,2019-08-14 19:35:00,680 Sunset St, Los Angeles,CA,90001 +241538,USB-C Charging Cable,1,11.95,2019-08-21 18:47:00,27 Elm St, New York City,NY,10001 +241539,AAA Batteries (4-pack),2,2.99,2019-08-31 11:43:00,481 South St, San Francisco,CA,94016 +241540,Lightning Charging Cable,1,14.95,2019-08-22 09:55:00,979 Hickory St, New York City,NY,10001 +241541,Wired Headphones,1,11.99,2019-08-19 20:58:00,148 Wilson St, New York City,NY,10001 +241542,USB-C Charging Cable,1,11.95,2019-08-27 12:50:00,168 Jefferson St, Boston,MA,02215 +241543,AAA Batteries (4-pack),1,2.99,2019-08-16 06:10:00,338 8th St, Los Angeles,CA,90001 +241544,Apple Airpods Headphones,1,150.0,2019-08-03 09:28:00,40 Adams St, San Francisco,CA,94016 +241545,Lightning Charging Cable,1,14.95,2019-08-25 11:28:00,992 Ridge St, New York City,NY,10001 +241546,Apple Airpods Headphones,1,150.0,2019-08-17 14:41:00,406 2nd St, New York City,NY,10001 +241547,27in FHD Monitor,1,149.99,2019-08-16 10:48:00,883 2nd St, Austin,TX,73301 +241548,Apple Airpods Headphones,1,150.0,2019-08-25 10:16:00,76 11th St, San Francisco,CA,94016 +241549,Lightning Charging Cable,1,14.95,2019-08-22 19:20:00,801 Pine St, Seattle,WA,98101 +241550,27in 4K Gaming Monitor,1,389.99,2019-08-07 08:14:00,206 Sunset St, Portland,OR,97035 +241551,Bose SoundSport Headphones,1,99.99,2019-08-31 18:46:00,413 7th St, Seattle,WA,98101 +241552,Google Phone,1,600.0,2019-08-28 20:44:00,343 9th St, San Francisco,CA,94016 +241553,Lightning Charging Cable,1,14.95,2019-08-29 21:09:00,996 Elm St, Austin,TX,73301 +241554,AAA Batteries (4-pack),1,2.99,2019-08-05 07:29:00,230 Church St, Los Angeles,CA,90001 +241555,27in FHD Monitor,1,149.99,2019-08-23 11:03:00,202 4th St, Seattle,WA,98101 +241556,Macbook Pro Laptop,1,1700.0,2019-08-17 19:39:00,325 Cherry St, San Francisco,CA,94016 +241557,Bose SoundSport Headphones,1,99.99,2019-08-10 11:13:00,403 9th St, New York City,NY,10001 +241557,20in Monitor,1,109.99,2019-08-10 11:13:00,403 9th St, New York City,NY,10001 +241558,Wired Headphones,1,11.99,2019-08-24 22:05:00,5 1st St, Los Angeles,CA,90001 +241559,AA Batteries (4-pack),1,3.84,2019-08-02 19:54:00,206 Center St, Atlanta,GA,30301 +241560,34in Ultrawide Monitor,1,379.99,2019-08-21 21:08:00,468 Highland St, Los Angeles,CA,90001 +241561,Bose SoundSport Headphones,1,99.99,2019-08-19 20:56:00,42 Jackson St, Seattle,WA,98101 +241562,20in Monitor,1,109.99,2019-08-06 17:09:00,651 Willow St, New York City,NY,10001 +241563,27in 4K Gaming Monitor,1,389.99,2019-08-17 20:38:00,863 Hickory St, San Francisco,CA,94016 +241564,iPhone,1,700.0,2019-08-22 18:53:00,337 Cedar St, Austin,TX,73301 +241565,Vareebadd Phone,1,400.0,2019-08-16 13:53:00,963 Ridge St, Los Angeles,CA,90001 +241566,Wired Headphones,1,11.99,2019-08-30 12:18:00,213 Cedar St, San Francisco,CA,94016 +241567,Lightning Charging Cable,1,14.95,2019-08-03 12:40:00,758 Chestnut St, New York City,NY,10001 +241568,Flatscreen TV,1,300.0,2019-08-05 14:36:00,740 Cherry St, Seattle,WA,98101 +241569,27in 4K Gaming Monitor,1,389.99,2019-08-22 11:21:00,378 Ridge St, San Francisco,CA,94016 +241570,Bose SoundSport Headphones,1,99.99,2019-08-12 09:50:00,312 Walnut St, Boston,MA,02215 +241571,AA Batteries (4-pack),1,3.84,2019-08-05 19:38:00,334 Park St, San Francisco,CA,94016 +241572,AA Batteries (4-pack),1,3.84,2019-08-05 17:48:00,264 4th St, San Francisco,CA,94016 +241573,AA Batteries (4-pack),2,3.84,2019-08-11 07:35:00,930 Adams St, San Francisco,CA,94016 +241574,27in FHD Monitor,1,149.99,2019-08-18 10:08:00,178 Walnut St, Atlanta,GA,30301 +241575,27in FHD Monitor,1,149.99,2019-08-27 12:13:00,859 Ridge St, Austin,TX,73301 +241576,AAA Batteries (4-pack),2,2.99,2019-08-30 09:49:00,968 Walnut St, Boston,MA,02215 +241577,27in FHD Monitor,1,149.99,2019-08-01 19:54:00,431 Spruce St, Boston,MA,02215 +241578,Wired Headphones,1,11.99,2019-08-20 14:43:00,460 Church St, Los Angeles,CA,90001 +241579,USB-C Charging Cable,1,11.95,2019-08-10 10:56:00,669 13th St, Los Angeles,CA,90001 +241580,27in 4K Gaming Monitor,1,389.99,2019-08-25 07:18:00,90 Lake St, Boston,MA,02215 +241581,AAA Batteries (4-pack),1,2.99,2019-08-05 13:59:00,36 Jefferson St, Dallas,TX,75001 +241582,AA Batteries (4-pack),1,3.84,2019-08-01 18:43:00,760 Lincoln St, Atlanta,GA,30301 +241583,Lightning Charging Cable,1,14.95,2019-08-14 22:14:00,541 Chestnut St, Boston,MA,02215 +241584,Google Phone,1,600.0,2019-08-08 17:57:00,410 Forest St, Atlanta,GA,30301 +241585,Lightning Charging Cable,1,14.95,2019-08-20 20:30:00,39 6th St, San Francisco,CA,94016 +241586,Lightning Charging Cable,1,14.95,2019-08-19 09:08:00,432 Church St, Boston,MA,02215 +241587,27in 4K Gaming Monitor,1,389.99,2019-08-07 10:38:00,822 Highland St, Los Angeles,CA,90001 +241588,Apple Airpods Headphones,1,150.0,2019-08-22 20:04:00,235 Forest St, Los Angeles,CA,90001 +241589,USB-C Charging Cable,1,11.95,2019-08-22 19:26:00,876 Lincoln St, Seattle,WA,98101 +241590,AAA Batteries (4-pack),1,2.99,2019-08-31 11:12:00,296 Spruce St, New York City,NY,10001 +241591,Apple Airpods Headphones,1,150.0,2019-08-30 14:50:00,68 Lincoln St, Boston,MA,02215 +241592,AAA Batteries (4-pack),1,2.99,2019-08-01 22:29:00,751 Center St, San Francisco,CA,94016 +241593,Apple Airpods Headphones,1,150.0,2019-08-16 22:32:00,844 12th St, Dallas,TX,75001 +241594,Google Phone,1,600.0,2019-08-20 09:16:00,25 8th St, Dallas,TX,75001 +241595,Wired Headphones,1,11.99,2019-08-30 15:12:00,393 Hill St, Los Angeles,CA,90001 +241596,AA Batteries (4-pack),2,3.84,2019-08-28 10:59:00,672 4th St, Boston,MA,02215 +241597,AA Batteries (4-pack),1,3.84,2019-08-13 12:44:00,158 9th St, New York City,NY,10001 +241598,Wired Headphones,1,11.99,2019-08-31 10:45:00,490 6th St, Los Angeles,CA,90001 +241599,USB-C Charging Cable,1,11.95,2019-08-14 10:48:00,839 1st St, San Francisco,CA,94016 +241600,AA Batteries (4-pack),2,3.84,2019-08-28 17:26:00,592 South St, Los Angeles,CA,90001 +241601,USB-C Charging Cable,1,11.95,2019-08-06 15:58:00,711 Lakeview St, Seattle,WA,98101 +241602,Macbook Pro Laptop,1,1700.0,2019-08-17 17:05:00,323 Meadow St, New York City,NY,10001 +241603,Google Phone,1,600.0,2019-08-11 20:20:00,789 Park St, Boston,MA,02215 +241603,USB-C Charging Cable,1,11.95,2019-08-11 20:20:00,789 Park St, Boston,MA,02215 +241604,Bose SoundSport Headphones,1,99.99,2019-08-15 12:34:00,796 4th St, Boston,MA,02215 +241605,AAA Batteries (4-pack),2,2.99,2019-08-01 20:48:00,326 Washington St, Boston,MA,02215 +241606,34in Ultrawide Monitor,1,379.99,2019-08-14 11:41:00,789 Johnson St, San Francisco,CA,94016 +241607,AAA Batteries (4-pack),1,2.99,2019-08-21 20:39:00,683 Church St, Boston,MA,02215 +241608,Bose SoundSport Headphones,1,99.99,2019-08-11 00:38:00,325 Ridge St, New York City,NY,10001 +241609,USB-C Charging Cable,1,11.95,2019-08-19 19:06:00,223 Madison St, Portland,OR,97035 +241610,ThinkPad Laptop,1,999.99,2019-08-03 22:08:00,6 Chestnut St, San Francisco,CA,94016 +241611,iPhone,1,700.0,2019-08-08 12:07:00,295 Willow St, San Francisco,CA,94016 +241612,AAA Batteries (4-pack),1,2.99,2019-08-13 18:35:00,116 14th St, Boston,MA,02215 +241613,Flatscreen TV,1,300.0,2019-08-03 19:45:00,503 Center St, Los Angeles,CA,90001 +241614,USB-C Charging Cable,1,11.95,2019-08-22 23:58:00,319 Forest St, San Francisco,CA,94016 +241615,AA Batteries (4-pack),1,3.84,2019-08-24 13:40:00,291 Adams St, Dallas,TX,75001 +241616,Flatscreen TV,1,300.0,2019-08-28 13:51:00,55 Lake St, San Francisco,CA,94016 +241617,USB-C Charging Cable,1,11.95,2019-08-19 14:42:00,774 Chestnut St, Boston,MA,02215 +241618,Wired Headphones,1,11.99,2019-08-12 16:38:00,137 Chestnut St, New York City,NY,10001 +241619,AA Batteries (4-pack),1,3.84,2019-08-03 13:48:00,21 2nd St, New York City,NY,10001 +241620,20in Monitor,1,109.99,2019-08-08 16:35:00,599 7th St, Atlanta,GA,30301 +241621,AA Batteries (4-pack),1,3.84,2019-08-12 20:55:00,729 Madison St, Seattle,WA,98101 +241622,AAA Batteries (4-pack),1,2.99,2019-08-03 13:50:00,334 Wilson St, New York City,NY,10001 +241623,Lightning Charging Cable,1,14.95,2019-08-02 13:44:00,75 Johnson St, Portland,OR,97035 +241624,27in FHD Monitor,1,149.99,2019-08-24 13:59:00,685 Dogwood St, Los Angeles,CA,90001 +241625,Apple Airpods Headphones,1,150.0,2019-08-24 07:15:00,209 12th St, San Francisco,CA,94016 +241626,iPhone,1,700.0,2019-08-19 22:25:00,711 Washington St, San Francisco,CA,94016 +241627,Lightning Charging Cable,1,14.95,2019-08-07 23:13:00,403 Church St, Austin,TX,73301 +241628,Lightning Charging Cable,1,14.95,2019-08-16 08:38:00,54 Highland St, Boston,MA,02215 +241629,USB-C Charging Cable,1,11.95,2019-08-07 20:08:00,280 Sunset St, Los Angeles,CA,90001 +241630,iPhone,1,700.0,2019-08-05 08:52:00,594 6th St, Atlanta,GA,30301 +241631,20in Monitor,1,109.99,2019-08-03 18:33:00,447 1st St, San Francisco,CA,94016 +241632,iPhone,1,700.0,2019-08-15 08:50:00,350 6th St, Atlanta,GA,30301 +241632,Lightning Charging Cable,1,14.95,2019-08-15 08:50:00,350 6th St, Atlanta,GA,30301 +241633,Lightning Charging Cable,1,14.95,2019-08-14 05:36:00,227 Church St, Dallas,TX,75001 +241634,Wired Headphones,1,11.99,2019-08-20 16:40:00,761 Cherry St, San Francisco,CA,94016 +241635,AAA Batteries (4-pack),1,2.99,2019-08-22 21:21:00,351 West St, Los Angeles,CA,90001 +241636,Bose SoundSport Headphones,1,99.99,2019-08-01 16:34:00,191 Willow St, Dallas,TX,75001 +241637,Bose SoundSport Headphones,1,99.99,2019-08-04 20:09:00,856 8th St, Dallas,TX,75001 +241638,iPhone,1,700.0,2019-08-21 17:13:00,743 Elm St, New York City,NY,10001 +241638,Wired Headphones,2,11.99,2019-08-21 17:13:00,743 Elm St, New York City,NY,10001 +241639,AA Batteries (4-pack),1,3.84,2019-08-18 17:56:00,798 12th St, New York City,NY,10001 +241640,Google Phone,1,600.0,2019-08-28 19:44:00,403 Jackson St, San Francisco,CA,94016 +241640,USB-C Charging Cable,1,11.95,2019-08-28 19:44:00,403 Jackson St, San Francisco,CA,94016 +241641,Lightning Charging Cable,2,14.95,2019-08-18 23:05:00,817 Main St, San Francisco,CA,94016 +241642,AAA Batteries (4-pack),2,2.99,2019-08-27 13:22:00,533 Jackson St, Portland,OR,97035 +241643,Apple Airpods Headphones,1,150.0,2019-08-11 19:23:00,996 North St, Los Angeles,CA,90001 +241644,USB-C Charging Cable,1,11.95,2019-08-03 16:53:00,934 Willow St, Los Angeles,CA,90001 +241645,Lightning Charging Cable,1,14.95,2019-08-07 18:27:00,305 Jackson St, San Francisco,CA,94016 +241646,Flatscreen TV,1,300.0,2019-08-02 23:41:00,659 Jefferson St, New York City,NY,10001 +241647,Lightning Charging Cable,1,14.95,2019-08-31 21:38:00,327 Walnut St, San Francisco,CA,94016 +241648,AA Batteries (4-pack),1,3.84,2019-08-19 17:09:00,96 Walnut St, Seattle,WA,98101 +241649,Apple Airpods Headphones,1,150.0,2019-08-19 00:42:00,854 Hickory St, Dallas,TX,75001 +241650,Wired Headphones,1,11.99,2019-08-21 17:13:00,260 14th St, San Francisco,CA,94016 +241651,Wired Headphones,1,11.99,2019-08-09 09:10:00,406 8th St, Los Angeles,CA,90001 +241652,Macbook Pro Laptop,1,1700.0,2019-08-19 09:49:00,208 Chestnut St, San Francisco,CA,94016 +241653,Apple Airpods Headphones,1,150.0,2019-08-26 13:21:00,459 Chestnut St, New York City,NY,10001 +241654,USB-C Charging Cable,2,11.95,2019-08-19 15:09:00,277 Jackson St, Dallas,TX,75001 +241655,LG Dryer,1,600.0,2019-08-06 14:39:00,942 West St, Boston,MA,02215 +241656,Apple Airpods Headphones,1,150.0,2019-08-18 19:46:00,595 Ridge St, San Francisco,CA,94016 +241657,Google Phone,1,600.0,2019-08-12 10:30:00,883 Jefferson St, Austin,TX,73301 +241657,USB-C Charging Cable,1,11.95,2019-08-12 10:30:00,883 Jefferson St, Austin,TX,73301 +241658,27in FHD Monitor,1,149.99,2019-08-10 14:09:00,103 Jackson St, Portland,ME,04101 +241659,Bose SoundSport Headphones,1,99.99,2019-08-06 18:04:00,953 Church St, Seattle,WA,98101 +241660,AA Batteries (4-pack),3,3.84,2019-08-08 09:54:00,535 Hill St, Portland,ME,04101 +241661,USB-C Charging Cable,1,11.95,2019-08-12 19:35:00,423 Lake St, New York City,NY,10001 +241662,Lightning Charging Cable,1,14.95,2019-08-08 21:07:00,105 Adams St, New York City,NY,10001 +241663,20in Monitor,1,109.99,2019-08-26 19:14:00,744 11th St, San Francisco,CA,94016 +241664,USB-C Charging Cable,1,11.95,2019-08-04 08:16:00,816 West St, Boston,MA,02215 +241665,Bose SoundSport Headphones,1,99.99,2019-08-13 13:21:00,68 Washington St, Boston,MA,02215 +241666,Bose SoundSport Headphones,1,99.99,2019-08-30 18:42:00,650 Sunset St, Los Angeles,CA,90001 +241667,USB-C Charging Cable,1,11.95,2019-08-17 19:44:00,188 4th St, Los Angeles,CA,90001 +241668,AAA Batteries (4-pack),1,2.99,2019-08-14 12:08:00,558 Lake St, Austin,TX,73301 +241669,ThinkPad Laptop,1,999.99,2019-08-11 21:01:00,444 Chestnut St, San Francisco,CA,94016 +241670,Apple Airpods Headphones,1,150.0,2019-08-23 13:10:00,280 13th St, Los Angeles,CA,90001 +241671,ThinkPad Laptop,1,999.99,2019-08-17 13:38:00,926 Walnut St, Austin,TX,73301 +241672,27in FHD Monitor,1,149.99,2019-08-06 12:02:00,317 Lake St, Los Angeles,CA,90001 +241673,Apple Airpods Headphones,1,150.0,2019-08-10 14:29:00,458 9th St, Los Angeles,CA,90001 +241674,AA Batteries (4-pack),4,3.84,2019-08-11 15:27:00,104 Madison St, San Francisco,CA,94016 +241675,AA Batteries (4-pack),2,3.84,2019-08-19 17:16:00,943 Hill St, Atlanta,GA,30301 +241675,20in Monitor,1,109.99,2019-08-19 17:16:00,943 Hill St, Atlanta,GA,30301 +241676,USB-C Charging Cable,1,11.95,2019-08-19 08:22:00,932 North St, Boston,MA,02215 +241677,AAA Batteries (4-pack),1,2.99,2019-08-08 05:09:00,66 11th St, Boston,MA,02215 +241678,Vareebadd Phone,1,400.0,2019-08-13 12:16:00,777 Cedar St, Los Angeles,CA,90001 +241678,Wired Headphones,1,11.99,2019-08-13 12:16:00,777 Cedar St, Los Angeles,CA,90001 +241679,ThinkPad Laptop,1,999.99,2019-08-30 12:27:00,456 14th St, New York City,NY,10001 +241680,LG Dryer,1,600.0,2019-08-07 18:07:00,301 Lakeview St, Portland,OR,97035 +241681,Lightning Charging Cable,1,14.95,2019-08-25 13:34:00,349 Lake St, Portland,OR,97035 +241682,Bose SoundSport Headphones,1,99.99,2019-08-24 12:30:00,991 7th St, Dallas,TX,75001 +241683,Bose SoundSport Headphones,1,99.99,2019-08-01 23:06:00,638 Center St, San Francisco,CA,94016 +241684,Lightning Charging Cable,1,14.95,2019-08-16 09:02:00,268 Pine St, New York City,NY,10001 +241685,Wired Headphones,1,11.99,2019-08-01 10:51:00,987 6th St, San Francisco,CA,94016 +241686,Bose SoundSport Headphones,1,99.99,2019-08-04 15:56:00,443 Forest St, San Francisco,CA,94016 +241687,Wired Headphones,1,11.99,2019-08-31 02:44:00,415 South St, Seattle,WA,98101 +241688,AAA Batteries (4-pack),1,2.99,2019-08-13 20:53:00,769 10th St, Portland,OR,97035 +241689,Lightning Charging Cable,1,14.95,2019-08-06 12:12:00,243 North St, Portland,OR,97035 +241690,Wired Headphones,1,11.99,2019-08-28 23:52:00,53 Johnson St, Los Angeles,CA,90001 +241691,Wired Headphones,1,11.99,2019-08-04 14:30:00,139 8th St, Boston,MA,02215 +241692,Lightning Charging Cable,2,14.95,2019-08-26 19:56:00,524 Jefferson St, Boston,MA,02215 +241693,27in 4K Gaming Monitor,1,389.99,2019-08-13 18:42:00,939 Highland St, Atlanta,GA,30301 +241694,27in 4K Gaming Monitor,1,389.99,2019-08-08 10:52:00,960 Wilson St, San Francisco,CA,94016 +241695,USB-C Charging Cable,1,11.95,2019-08-10 22:19:00,595 River St, Boston,MA,02215 +241696,Bose SoundSport Headphones,1,99.99,2019-08-31 18:08:00,651 Cherry St, San Francisco,CA,94016 +241697,ThinkPad Laptop,1,999.99,2019-08-15 14:42:00,940 11th St, Los Angeles,CA,90001 +241698,Wired Headphones,1,11.99,2019-08-22 18:42:00,138 Church St, Los Angeles,CA,90001 +241699,34in Ultrawide Monitor,1,379.99,2019-08-01 20:50:00,531 Elm St, San Francisco,CA,94016 +241700,Lightning Charging Cable,2,14.95,2019-08-10 06:10:00,999 13th St, Los Angeles,CA,90001 +241701,27in 4K Gaming Monitor,1,389.99,2019-08-07 11:39:00,644 Adams St, Los Angeles,CA,90001 +241702,USB-C Charging Cable,1,11.95,2019-08-09 18:22:00,363 West St, Boston,MA,02215 +241703,AAA Batteries (4-pack),1,2.99,2019-08-04 19:24:00,742 Washington St, New York City,NY,10001 +241704,Lightning Charging Cable,1,14.95,2019-08-31 05:41:00,481 4th St, New York City,NY,10001 +241704,27in FHD Monitor,1,149.99,2019-08-31 05:41:00,481 4th St, New York City,NY,10001 +241705,ThinkPad Laptop,1,999.99,2019-08-15 11:39:00,76 Park St, Portland,ME,04101 +241706,Apple Airpods Headphones,1,150.0,2019-08-02 20:47:00,77 Lake St, Atlanta,GA,30301 +241707,Lightning Charging Cable,1,14.95,2019-08-08 11:42:00,502 Elm St, Austin,TX,73301 +241708,Wired Headphones,1,11.99,2019-08-22 17:22:00,422 10th St, New York City,NY,10001 +241709,USB-C Charging Cable,1,11.95,2019-08-06 20:40:00,950 12th St, Los Angeles,CA,90001 +241710,Apple Airpods Headphones,1,150.0,2019-08-28 16:09:00,473 4th St, Austin,TX,73301 +241711,Apple Airpods Headphones,1,150.0,2019-08-11 17:25:00,759 14th St, Los Angeles,CA,90001 +241712,27in 4K Gaming Monitor,1,389.99,2019-08-08 19:22:00,244 Jackson St, Los Angeles,CA,90001 +241713,Bose SoundSport Headphones,1,99.99,2019-08-28 17:31:00,354 Highland St, San Francisco,CA,94016 +241714,34in Ultrawide Monitor,1,379.99,2019-08-06 17:05:00,979 11th St, Boston,MA,02215 +241715,AAA Batteries (4-pack),1,2.99,2019-08-12 13:15:00,444 Forest St, Dallas,TX,75001 +241716,AAA Batteries (4-pack),2,2.99,2019-08-31 12:03:00,917 Sunset St, San Francisco,CA,94016 +241717,AA Batteries (4-pack),1,3.84,2019-08-04 18:38:00,397 Park St, Los Angeles,CA,90001 +241718,27in 4K Gaming Monitor,1,389.99,2019-08-24 22:16:00,642 12th St, Portland,OR,97035 +241719,Google Phone,1,600.0,2019-08-03 11:28:00,225 Walnut St, Seattle,WA,98101 +241720,Lightning Charging Cable,1,14.95,2019-08-05 09:21:00,635 Walnut St, San Francisco,CA,94016 +241721,AAA Batteries (4-pack),1,2.99,2019-08-07 23:12:00,4 Jackson St, San Francisco,CA,94016 +241722,Wired Headphones,1,11.99,2019-08-26 22:27:00,357 Sunset St, San Francisco,CA,94016 +241723,USB-C Charging Cable,1,11.95,2019-08-30 12:22:00,11 River St, Seattle,WA,98101 +241724,AA Batteries (4-pack),2,3.84,2019-08-12 21:08:00,260 Park St, Atlanta,GA,30301 +241725,iPhone,1,700.0,2019-08-22 13:10:00,983 Elm St, San Francisco,CA,94016 +241726,iPhone,1,700.0,2019-08-25 21:04:00,874 Ridge St, San Francisco,CA,94016 +241727,20in Monitor,1,109.99,2019-08-08 16:03:00,837 Jackson St, New York City,NY,10001 +241728,Flatscreen TV,1,300.0,2019-08-30 14:53:00,953 South St, Boston,MA,02215 +241729,Wired Headphones,1,11.99,2019-08-05 11:23:00,851 14th St, New York City,NY,10001 +241730,USB-C Charging Cable,1,11.95,2019-08-02 17:25:00,260 Meadow St, Atlanta,GA,30301 +241731,AA Batteries (4-pack),1,3.84,2019-08-22 16:35:00,399 2nd St, Atlanta,GA,30301 +241732,AAA Batteries (4-pack),2,2.99,2019-08-16 11:21:00,345 Hill St, Boston,MA,02215 +241733,Wired Headphones,1,11.99,2019-08-14 14:44:00,181 Cherry St, New York City,NY,10001 +241734,AAA Batteries (4-pack),1,2.99,2019-08-26 22:21:00,492 Lake St, San Francisco,CA,94016 +241735,LG Dryer,1,600.0,2019-08-28 20:41:00,695 Washington St, San Francisco,CA,94016 +241736,USB-C Charging Cable,1,11.95,2019-08-13 14:33:00,872 10th St, San Francisco,CA,94016 +241737,Wired Headphones,1,11.99,2019-08-29 23:59:00,442 West St, New York City,NY,10001 +241738,USB-C Charging Cable,1,11.95,2019-08-02 07:47:00,785 8th St, San Francisco,CA,94016 +241739,27in 4K Gaming Monitor,1,389.99,2019-08-27 19:10:00,614 6th St, San Francisco,CA,94016 +241740,AA Batteries (4-pack),1,3.84,2019-08-20 19:17:00,447 11th St, Austin,TX,73301 +241741,Apple Airpods Headphones,1,150.0,2019-08-26 09:38:00,478 River St, New York City,NY,10001 +241742,Bose SoundSport Headphones,1,99.99,2019-08-08 17:05:00,632 Center St, Atlanta,GA,30301 +241743,Wired Headphones,1,11.99,2019-08-07 13:57:00,71 Center St, New York City,NY,10001 +241744,Lightning Charging Cable,1,14.95,2019-08-24 22:37:00,896 Cedar St, San Francisco,CA,94016 +241745,AAA Batteries (4-pack),1,2.99,2019-08-30 05:34:00,940 Willow St, San Francisco,CA,94016 +241746,20in Monitor,1,109.99,2019-08-02 19:42:00,842 Spruce St, Atlanta,GA,30301 +241747,Wired Headphones,1,11.99,2019-08-04 18:03:00,175 Park St, San Francisco,CA,94016 +241748,27in FHD Monitor,1,149.99,2019-08-29 14:37:00,255 Pine St, Austin,TX,73301 +241749,Lightning Charging Cable,1,14.95,2019-08-12 18:55:00,166 4th St, Boston,MA,02215 +241750,Apple Airpods Headphones,1,150.0,2019-08-06 19:47:00,567 Hill St, Boston,MA,02215 +241750,Flatscreen TV,1,300.0,2019-08-06 19:47:00,567 Hill St, Boston,MA,02215 +241751,Apple Airpods Headphones,1,150.0,2019-08-17 15:22:00,657 12th St, Seattle,WA,98101 +241752,iPhone,1,700.0,2019-08-22 12:22:00,675 9th St, San Francisco,CA,94016 +241753,27in FHD Monitor,1,149.99,2019-08-21 22:56:00,958 West St, San Francisco,CA,94016 +241754,Lightning Charging Cable,1,14.95,2019-08-23 11:36:00,470 6th St, Dallas,TX,75001 +241755,AA Batteries (4-pack),1,3.84,2019-08-19 22:38:00,600 Walnut St, Austin,TX,73301 +241756,AA Batteries (4-pack),1,3.84,2019-08-21 14:01:00,328 Sunset St, New York City,NY,10001 +241757,Lightning Charging Cable,1,14.95,2019-08-11 16:01:00,383 Lincoln St, Boston,MA,02215 +241758,Wired Headphones,3,11.99,2019-08-28 14:40:00,33 Park St, Boston,MA,02215 +241759,Bose SoundSport Headphones,1,99.99,2019-08-17 22:14:00,417 Lake St, Atlanta,GA,30301 +241760,AA Batteries (4-pack),1,3.84,2019-08-16 19:59:00,266 Madison St, Boston,MA,02215 +241761,Lightning Charging Cable,1,14.95,2019-08-09 12:25:00,664 South St, San Francisco,CA,94016 +241762,Flatscreen TV,1,300.0,2019-08-02 13:47:00,415 4th St, Dallas,TX,75001 +241763,AA Batteries (4-pack),1,3.84,2019-08-24 20:10:00,662 14th St, Boston,MA,02215 +241764,Lightning Charging Cable,1,14.95,2019-08-22 13:44:00,379 Highland St, San Francisco,CA,94016 +241765,USB-C Charging Cable,1,11.95,2019-08-21 12:50:00,489 Jackson St, Austin,TX,73301 +241766,AAA Batteries (4-pack),1,2.99,2019-08-27 16:12:00,226 6th St, Portland,OR,97035 +241767,Lightning Charging Cable,2,14.95,2019-08-29 00:06:00,297 Lake St, Atlanta,GA,30301 +241768,AAA Batteries (4-pack),1,2.99,2019-08-26 21:31:00,223 North St, San Francisco,CA,94016 +241769,AA Batteries (4-pack),1,3.84,2019-08-15 21:27:00,67 Highland St, San Francisco,CA,94016 +241770,USB-C Charging Cable,1,11.95,2019-08-16 11:40:00,685 Walnut St, Boston,MA,02215 +241771,Wired Headphones,1,11.99,2019-08-09 18:15:00,802 7th St, Los Angeles,CA,90001 +241772,20in Monitor,1,109.99,2019-08-07 17:31:00,630 Elm St, Boston,MA,02215 +241773,Apple Airpods Headphones,1,150.0,2019-08-08 00:31:00,704 11th St, New York City,NY,10001 +241774,Google Phone,1,600.0,2019-08-20 20:27:00,852 Center St, Los Angeles,CA,90001 +241775,27in 4K Gaming Monitor,1,389.99,2019-08-17 11:20:00,608 Washington St, San Francisco,CA,94016 +241776,Flatscreen TV,1,300.0,2019-08-05 16:43:00,294 Center St, Los Angeles,CA,90001 +241777,Apple Airpods Headphones,1,150.0,2019-08-22 15:38:00,932 Hill St, New York City,NY,10001 +241778,AA Batteries (4-pack),1,3.84,2019-08-31 13:34:00,563 Cherry St, San Francisco,CA,94016 +241779,Google Phone,1,600.0,2019-08-17 23:12:00,849 Lincoln St, San Francisco,CA,94016 +241780,Bose SoundSport Headphones,1,99.99,2019-08-20 18:57:00,139 Wilson St, New York City,NY,10001 +241780,AA Batteries (4-pack),1,3.84,2019-08-20 18:57:00,139 Wilson St, New York City,NY,10001 +241781,AA Batteries (4-pack),1,3.84,2019-08-26 16:52:00,6 Walnut St, New York City,NY,10001 +241782,USB-C Charging Cable,1,11.95,2019-08-12 21:12:00,917 12th St, Austin,TX,73301 +241783,Lightning Charging Cable,1,14.95,2019-08-08 10:27:00,159 8th St, Seattle,WA,98101 +241784,AAA Batteries (4-pack),1,2.99,2019-08-06 07:55:00,288 8th St, Atlanta,GA,30301 +241785,USB-C Charging Cable,1,11.95,2019-08-15 18:40:00,328 Center St, New York City,NY,10001 +241786,Lightning Charging Cable,1,14.95,2019-08-06 10:48:00,130 River St, Dallas,TX,75001 +241787,27in FHD Monitor,1,149.99,2019-08-30 15:41:00,804 Madison St, Portland,OR,97035 +241788,Lightning Charging Cable,1,14.95,2019-08-24 13:43:00,967 Chestnut St, Boston,MA,02215 +241789,27in 4K Gaming Monitor,1,389.99,2019-08-10 15:43:00,461 Cherry St, San Francisco,CA,94016 +241790,Google Phone,1,600.0,2019-08-25 16:56:00,125 Meadow St, San Francisco,CA,94016 +241790,USB-C Charging Cable,1,11.95,2019-08-25 16:56:00,125 Meadow St, San Francisco,CA,94016 +241791,20in Monitor,1,109.99,2019-08-13 23:04:00,381 6th St, New York City,NY,10001 +241792,ThinkPad Laptop,1,999.99,2019-08-06 18:25:00,534 Highland St, Seattle,WA,98101 +241793,Bose SoundSport Headphones,1,99.99,2019-08-31 05:26:00,185 14th St, Los Angeles,CA,90001 +241794,Apple Airpods Headphones,1,150.0,2019-08-09 14:43:00,827 2nd St, Dallas,TX,75001 +241795,Macbook Pro Laptop,1,1700.0,2019-08-09 11:13:00,117 Walnut St, New York City,NY,10001 +241796,AAA Batteries (4-pack),1,2.99,2019-08-31 22:06:00,535 South St, Atlanta,GA,30301 +241797,Apple Airpods Headphones,1,150.0,2019-08-16 01:13:00,919 Walnut St, San Francisco,CA,94016 +241798,ThinkPad Laptop,1,999.99,2019-08-26 08:52:00,940 River St, San Francisco,CA,94016 +241799,Bose SoundSport Headphones,1,99.99,2019-08-07 13:43:00,920 2nd St, San Francisco,CA,94016 +241800,Google Phone,1,600.0,2019-08-14 12:42:00,76 Cherry St, San Francisco,CA,94016 +241801,Macbook Pro Laptop,1,1700.0,2019-08-02 15:39:00,691 Church St, Seattle,WA,98101 +241802,ThinkPad Laptop,1,999.99,2019-08-07 14:52:00,362 Lake St, Los Angeles,CA,90001 +241803,ThinkPad Laptop,1,999.99,2019-08-05 10:50:00,388 4th St, Seattle,WA,98101 +241804,Wired Headphones,1,11.99,2019-08-23 16:02:00,120 Adams St, San Francisco,CA,94016 +241805,Bose SoundSport Headphones,1,99.99,2019-08-29 12:45:00,440 4th St, Portland,OR,97035 +241806,Lightning Charging Cable,1,14.95,2019-08-20 15:33:00,720 South St, Austin,TX,73301 +241807,AAA Batteries (4-pack),1,2.99,2019-08-26 13:55:00,319 7th St, Los Angeles,CA,90001 +241808,USB-C Charging Cable,1,11.95,2019-08-07 21:45:00,815 Maple St, Los Angeles,CA,90001 +241809,Wired Headphones,1,11.99,2019-08-11 12:32:00,226 Elm St, San Francisco,CA,94016 +241810,AAA Batteries (4-pack),1,2.99,2019-08-01 17:10:00,939 Washington St, San Francisco,CA,94016 +241811,20in Monitor,1,109.99,2019-08-26 00:11:00,773 7th St, Los Angeles,CA,90001 +241812,Wired Headphones,1,11.99,2019-08-26 18:07:00,580 Meadow St, Los Angeles,CA,90001 +241813,AAA Batteries (4-pack),3,2.99,2019-08-08 21:51:00,504 Hickory St, Dallas,TX,75001 +241814,Wired Headphones,1,11.99,2019-08-13 20:08:00,704 Washington St, Seattle,WA,98101 +241815,iPhone,1,700.0,2019-08-15 07:46:00,347 Lakeview St, San Francisco,CA,94016 +241816,AAA Batteries (4-pack),1,2.99,2019-08-16 07:06:00,733 Sunset St, Los Angeles,CA,90001 +241817,Vareebadd Phone,1,400.0,2019-08-24 00:35:00,837 13th St, Boston,MA,02215 +241817,USB-C Charging Cable,2,11.95,2019-08-24 00:35:00,837 13th St, Boston,MA,02215 +241817,Bose SoundSport Headphones,1,99.99,2019-08-24 00:35:00,837 13th St, Boston,MA,02215 +241818,USB-C Charging Cable,1,11.95,2019-08-25 22:42:00,352 6th St, San Francisco,CA,94016 +241819,AA Batteries (4-pack),1,3.84,2019-08-06 10:46:00,886 Dogwood St, San Francisco,CA,94016 +241820,USB-C Charging Cable,1,11.95,2019-08-10 21:54:00,429 Johnson St, New York City,NY,10001 +241821,AAA Batteries (4-pack),2,2.99,2019-08-24 16:30:00,778 Sunset St, Los Angeles,CA,90001 +241822,Wired Headphones,1,11.99,2019-08-20 22:00:00,109 Johnson St, Dallas,TX,75001 +241823,27in FHD Monitor,1,149.99,2019-08-28 12:34:00,438 Johnson St, San Francisco,CA,94016 +241824,Apple Airpods Headphones,1,150.0,2019-08-03 19:01:00,827 Forest St, San Francisco,CA,94016 +241825,AAA Batteries (4-pack),2,2.99,2019-08-13 21:59:00,303 10th St, Portland,OR,97035 +241826,34in Ultrawide Monitor,1,379.99,2019-08-19 10:09:00,545 9th St, Los Angeles,CA,90001 +241827,Lightning Charging Cable,1,14.95,2019-08-28 17:14:00,709 Willow St, Los Angeles,CA,90001 +241828,27in FHD Monitor,1,149.99,2019-08-29 14:44:00,216 12th St, Los Angeles,CA,90001 +241829,USB-C Charging Cable,1,11.95,2019-08-13 11:16:00,408 Lake St, New York City,NY,10001 +241830,27in FHD Monitor,1,149.99,2019-08-01 13:26:00,87 Park St, Boston,MA,02215 +241831,Lightning Charging Cable,1,14.95,2019-08-18 21:40:00,401 10th St, San Francisco,CA,94016 +241832,Apple Airpods Headphones,1,150.0,2019-08-04 22:20:00,152 Center St, San Francisco,CA,94016 +241833,27in FHD Monitor,1,149.99,2019-08-01 22:52:00,577 Jefferson St, Los Angeles,CA,90001 +241834,Google Phone,1,600.0,2019-08-22 19:10:00,976 Lincoln St, Dallas,TX,75001 +241835,Wired Headphones,1,11.99,2019-08-25 15:38:00,497 Dogwood St, New York City,NY,10001 +241836,iPhone,1,700.0,2019-08-03 01:49:00,436 13th St, Boston,MA,02215 +241837,Google Phone,1,600.0,2019-08-20 17:21:00,14 Cherry St, Los Angeles,CA,90001 +241838,34in Ultrawide Monitor,1,379.99,2019-08-29 12:37:00,395 Cedar St, Los Angeles,CA,90001 +241839,Bose SoundSport Headphones,1,99.99,2019-08-15 21:30:00,231 10th St, New York City,NY,10001 +241840,27in 4K Gaming Monitor,1,389.99,2019-08-08 11:13:00,785 10th St, Boston,MA,02215 +241841,Wired Headphones,1,11.99,2019-08-26 13:45:00,752 Lakeview St, Atlanta,GA,30301 +241842,Bose SoundSport Headphones,1,99.99,2019-08-13 15:48:00,517 Chestnut St, San Francisco,CA,94016 +241843,Wired Headphones,1,11.99,2019-08-20 11:27:00,858 Jefferson St, New York City,NY,10001 +241844,Wired Headphones,1,11.99,2019-08-07 15:11:00,583 13th St, Atlanta,GA,30301 +241845,Apple Airpods Headphones,1,150.0,2019-08-25 16:49:00,838 Church St, San Francisco,CA,94016 +241846,27in 4K Gaming Monitor,1,389.99,2019-08-30 11:54:00,505 8th St, Seattle,WA,98101 +241847,AA Batteries (4-pack),1,3.84,2019-08-14 13:42:00,902 Adams St, Boston,MA,02215 +241848,AA Batteries (4-pack),1,3.84,2019-08-24 19:53:00,622 Lake St, Portland,OR,97035 +241849,iPhone,1,700.0,2019-08-18 16:19:00,135 Dogwood St, Los Angeles,CA,90001 +241850,Apple Airpods Headphones,1,150.0,2019-08-24 00:25:00,735 Johnson St, Boston,MA,02215 +241851,AA Batteries (4-pack),1,3.84,2019-08-17 19:06:00,735 6th St, Austin,TX,73301 +241852,AA Batteries (4-pack),3,3.84,2019-08-16 18:00:00,788 Pine St, Boston,MA,02215 +241853,27in 4K Gaming Monitor,1,389.99,2019-08-18 22:52:00,27 Madison St, Boston,MA,02215 +241854,USB-C Charging Cable,1,11.95,2019-08-01 20:48:00,17 Cedar St, Los Angeles,CA,90001 +241855,USB-C Charging Cable,1,11.95,2019-08-20 12:13:00,691 4th St, San Francisco,CA,94016 +241856,Lightning Charging Cable,1,14.95,2019-08-31 12:08:00,210 Cherry St, New York City,NY,10001 +241857,USB-C Charging Cable,1,11.95,2019-08-30 22:06:00,753 Lakeview St, San Francisco,CA,94016 +241858,Wired Headphones,1,11.99,2019-08-28 21:13:00,343 Lincoln St, San Francisco,CA,94016 +241859,Google Phone,1,600.0,2019-08-10 20:13:00,391 West St, Seattle,WA,98101 +241860,Apple Airpods Headphones,1,150.0,2019-08-24 07:15:00,639 Highland St, Dallas,TX,75001 +241861,Wired Headphones,2,11.99,2019-08-08 12:45:00,558 Chestnut St, Boston,MA,02215 +241862,USB-C Charging Cable,1,11.95,2019-08-15 12:52:00,868 12th St, Boston,MA,02215 +241863,iPhone,1,700.0,2019-08-25 20:38:00,722 Washington St, Portland,OR,97035 +241863,Apple Airpods Headphones,1,150.0,2019-08-25 20:38:00,722 Washington St, Portland,OR,97035 +241864,iPhone,1,700.0,2019-08-18 15:37:00,883 Pine St, Seattle,WA,98101 +241865,AA Batteries (4-pack),1,3.84,2019-08-23 17:16:00,4 Lakeview St, Austin,TX,73301 +241866,AAA Batteries (4-pack),1,2.99,2019-08-16 07:31:00,322 Church St, New York City,NY,10001 +241867,AAA Batteries (4-pack),1,2.99,2019-08-12 02:16:00,483 Meadow St, New York City,NY,10001 +241868,Lightning Charging Cable,1,14.95,2019-08-20 14:07:00,878 Adams St, Los Angeles,CA,90001 +241869,Google Phone,1,600.0,2019-08-14 12:16:00,661 Madison St, Boston,MA,02215 +241870,Vareebadd Phone,1,400.0,2019-08-27 08:20:00,890 West St, San Francisco,CA,94016 +241871,Wired Headphones,1,11.99,2019-08-06 15:00:00,673 11th St, Boston,MA,02215 +241872,Flatscreen TV,1,300.0,2019-08-03 22:05:00,234 Hill St, Dallas,TX,75001 +241873,iPhone,1,700.0,2019-08-02 12:05:00,377 6th St, Boston,MA,02215 +241874,27in FHD Monitor,1,149.99,2019-08-14 07:27:00,106 Spruce St, San Francisco,CA,94016 +241875,AAA Batteries (4-pack),1,2.99,2019-08-15 08:03:00,105 Johnson St, Los Angeles,CA,90001 +241876,Macbook Pro Laptop,1,1700.0,2019-08-07 21:08:00,419 South St, Seattle,WA,98101 +241877,USB-C Charging Cable,1,11.95,2019-08-13 11:10:00,109 Spruce St, New York City,NY,10001 +241878,Wired Headphones,1,11.99,2019-08-21 12:17:00,643 Madison St, San Francisco,CA,94016 +241879,AA Batteries (4-pack),1,3.84,2019-08-07 20:41:00,559 2nd St, San Francisco,CA,94016 +241880,Wired Headphones,1,11.99,2019-08-25 18:00:00,688 Hickory St, Boston,MA,02215 +241881,Bose SoundSport Headphones,1,99.99,2019-08-24 21:13:00,163 South St, San Francisco,CA,94016 +241882,Flatscreen TV,1,300.0,2019-08-17 15:40:00,148 Madison St, Portland,OR,97035 +241883,AAA Batteries (4-pack),1,2.99,2019-08-06 11:56:00,553 Lincoln St, San Francisco,CA,94016 +241884,USB-C Charging Cable,1,11.95,2019-08-28 14:20:00,335 4th St, Atlanta,GA,30301 +241885,Google Phone,1,600.0,2019-08-22 11:56:00,899 Adams St, New York City,NY,10001 +241886,34in Ultrawide Monitor,1,379.99,2019-08-23 20:28:00,951 Cedar St, Atlanta,GA,30301 +241887,Bose SoundSport Headphones,1,99.99,2019-08-13 23:49:00,507 Wilson St, Los Angeles,CA,90001 +241888,Wired Headphones,3,11.99,2019-08-02 10:04:00,712 8th St, New York City,NY,10001 +241889,AAA Batteries (4-pack),1,2.99,2019-08-10 20:39:00,843 Forest St, San Francisco,CA,94016 +241890,Lightning Charging Cable,1,14.95,2019-08-23 10:48:00,228 Church St, Boston,MA,02215 +241891,Lightning Charging Cable,1,14.95,2019-08-15 08:23:00,230 Forest St, Los Angeles,CA,90001 +241892,Apple Airpods Headphones,1,150.0,2019-08-07 10:33:00,141 4th St, Boston,MA,02215 +241893,Lightning Charging Cable,1,14.95,2019-08-21 22:26:00,938 Ridge St, Los Angeles,CA,90001 +241894,Wired Headphones,1,11.99,2019-08-09 11:50:00,807 2nd St, Boston,MA,02215 +241895,USB-C Charging Cable,1,11.95,2019-08-15 16:13:00,926 Lake St, Dallas,TX,75001 +241896,Lightning Charging Cable,1,14.95,2019-08-16 18:56:00,242 North St, Dallas,TX,75001 +241897,USB-C Charging Cable,1,11.95,2019-08-05 20:36:00,342 Chestnut St, Portland,OR,97035 +241898,AA Batteries (4-pack),2,3.84,2019-08-12 10:42:00,563 1st St, Dallas,TX,75001 +241899,iPhone,1,700.0,2019-08-27 23:04:00,317 Wilson St, New York City,NY,10001 +241900,AA Batteries (4-pack),4,3.84,2019-08-21 12:45:00,719 14th St, Seattle,WA,98101 +241901,AA Batteries (4-pack),1,3.84,2019-08-10 21:41:00,719 Lakeview St, New York City,NY,10001 +241902,AA Batteries (4-pack),1,3.84,2019-08-14 16:49:00,583 10th St, Dallas,TX,75001 +241903,Lightning Charging Cable,1,14.95,2019-08-26 10:55:00,414 West St, Seattle,WA,98101 +241904,27in 4K Gaming Monitor,1,389.99,2019-08-09 21:37:00,540 Adams St, Seattle,WA,98101 +241905,Bose SoundSport Headphones,1,99.99,2019-08-11 19:36:00,240 North St, San Francisco,CA,94016 +241906,Wired Headphones,1,11.99,2019-08-16 13:11:00,21 Meadow St, New York City,NY,10001 +241907,Macbook Pro Laptop,1,1700.0,2019-08-20 21:43:00,311 Sunset St, Austin,TX,73301 +241908,27in 4K Gaming Monitor,1,389.99,2019-08-14 04:11:00,666 Chestnut St, San Francisco,CA,94016 +241909,AA Batteries (4-pack),1,3.84,2019-08-20 20:21:00,160 Forest St, San Francisco,CA,94016 +241910,27in FHD Monitor,1,149.99,2019-08-10 20:56:00,890 Center St, Los Angeles,CA,90001 +241911,Lightning Charging Cable,1,14.95,2019-08-30 08:26:00,248 Washington St, Austin,TX,73301 +241912,Bose SoundSport Headphones,1,99.99,2019-08-10 11:02:00,467 Dogwood St, Dallas,TX,75001 +241913,20in Monitor,1,109.99,2019-08-25 09:36:00,190 Lake St, Austin,TX,73301 +241914,Wired Headphones,1,11.99,2019-08-18 19:36:00,59 Cherry St, Atlanta,GA,30301 +241915,Google Phone,1,600.0,2019-08-26 20:39:00,797 Chestnut St, Los Angeles,CA,90001 +241916,Bose SoundSport Headphones,1,99.99,2019-08-24 13:32:00,425 13th St, San Francisco,CA,94016 +241917,USB-C Charging Cable,1,11.95,2019-08-20 22:16:00,104 2nd St, Dallas,TX,75001 +241918,20in Monitor,1,109.99,2019-08-05 11:07:00,721 Jackson St, San Francisco,CA,94016 +241919,27in 4K Gaming Monitor,1,389.99,2019-08-29 06:47:00,719 Washington St, Seattle,WA,98101 +241920,AAA Batteries (4-pack),2,2.99,2019-08-10 21:16:00,755 2nd St, New York City,NY,10001 +241921,AAA Batteries (4-pack),3,2.99,2019-08-12 19:07:00,658 2nd St, Boston,MA,02215 +241922,AAA Batteries (4-pack),1,2.99,2019-08-25 21:19:00,925 10th St, New York City,NY,10001 +241923,Lightning Charging Cable,1,14.95,2019-08-14 11:51:00,757 North St, Dallas,TX,75001 +241924,USB-C Charging Cable,1,11.95,2019-08-08 16:05:00,349 2nd St, Boston,MA,02215 +241925,USB-C Charging Cable,1,11.95,2019-08-07 19:56:00,270 North St, San Francisco,CA,94016 +241926,AAA Batteries (4-pack),1,2.99,2019-08-19 11:55:00,51 1st St, Portland,OR,97035 +241927,Lightning Charging Cable,2,14.95,2019-08-30 21:15:00,89 Johnson St, Seattle,WA,98101 +241928,AAA Batteries (4-pack),1,2.99,2019-08-13 11:31:00,322 2nd St, San Francisco,CA,94016 +241929,20in Monitor,1,109.99,2019-08-16 08:57:00,345 Center St, Seattle,WA,98101 +241930,34in Ultrawide Monitor,1,379.99,2019-08-08 11:58:00,520 8th St, New York City,NY,10001 +241931,Google Phone,1,600.0,2019-08-27 00:19:00,859 Hickory St, Los Angeles,CA,90001 +241932,AA Batteries (4-pack),3,3.84,2019-08-25 20:52:00,740 Sunset St, San Francisco,CA,94016 +241933,AA Batteries (4-pack),1,3.84,2019-08-11 22:56:00,121 Maple St, Atlanta,GA,30301 +241934,AA Batteries (4-pack),1,3.84,2019-08-29 13:12:00,231 Lakeview St, Los Angeles,CA,90001 +241935,Wired Headphones,1,11.99,2019-08-22 07:57:00,105 6th St, New York City,NY,10001 +241936,Macbook Pro Laptop,1,1700.0,2019-08-14 16:18:00,657 Hickory St, New York City,NY,10001 +241937,AA Batteries (4-pack),1,3.84,2019-08-06 17:30:00,542 2nd St, Portland,OR,97035 +241938,AAA Batteries (4-pack),1,2.99,2019-08-22 19:15:00,891 Forest St, Dallas,TX,75001 +241939,AA Batteries (4-pack),1,3.84,2019-08-09 12:03:00,151 Spruce St, Seattle,WA,98101 +241940,27in 4K Gaming Monitor,1,389.99,2019-08-30 16:58:00,978 Chestnut St, Boston,MA,02215 +241940,34in Ultrawide Monitor,1,379.99,2019-08-30 16:58:00,978 Chestnut St, Boston,MA,02215 +241941,USB-C Charging Cable,2,11.95,2019-08-11 01:12:00,675 Madison St, Los Angeles,CA,90001 +241942,Lightning Charging Cable,1,14.95,2019-08-26 09:20:00,741 Chestnut St, New York City,NY,10001 +241943,Wired Headphones,1,11.99,2019-08-10 19:47:00,131 6th St, Dallas,TX,75001 +241944,27in 4K Gaming Monitor,1,389.99,2019-08-23 03:12:00,200 Hickory St, New York City,NY,10001 +241945,AA Batteries (4-pack),1,3.84,2019-08-26 21:24:00,357 9th St, Boston,MA,02215 +241946,Bose SoundSport Headphones,1,99.99,2019-08-27 22:19:00,847 14th St, Los Angeles,CA,90001 +241947,Wired Headphones,2,11.99,2019-08-14 20:21:00,224 Maple St, Seattle,WA,98101 +241948,Wired Headphones,1,11.99,2019-08-19 01:20:00,149 Lake St, Boston,MA,02215 +241949,Flatscreen TV,1,300.0,2019-08-10 11:06:00,221 Cherry St, Dallas,TX,75001 +241950,Google Phone,1,600.0,2019-08-06 07:44:00,791 West St, Austin,TX,73301 +241951,Apple Airpods Headphones,1,150.0,2019-08-29 10:04:00,652 13th St, Austin,TX,73301 +241952,Lightning Charging Cable,1,14.95,2019-08-31 07:17:00,976 Jefferson St, Atlanta,GA,30301 +241953,27in 4K Gaming Monitor,1,389.99,2019-08-06 15:41:00,810 Forest St, Boston,MA,02215 +241954,USB-C Charging Cable,1,11.95,2019-08-10 11:29:00,210 Dogwood St, New York City,NY,10001 +241955,Vareebadd Phone,1,400.0,2019-08-10 23:18:00,722 14th St, Portland,OR,97035 +241956,AA Batteries (4-pack),1,3.84,2019-08-06 19:15:00,576 Johnson St, Seattle,WA,98101 +241957,iPhone,1,700.0,2019-08-02 08:57:00,178 8th St, New York City,NY,10001 +241958,27in FHD Monitor,1,149.99,2019-08-29 10:32:00,308 6th St, Boston,MA,02215 +241959,AAA Batteries (4-pack),1,2.99,2019-08-28 15:58:00,640 2nd St, Seattle,WA,98101 +241960,Lightning Charging Cable,1,14.95,2019-08-28 21:53:00,442 Spruce St, Los Angeles,CA,90001 +241961,USB-C Charging Cable,1,11.95,2019-08-09 17:26:00,940 13th St, New York City,NY,10001 +241962,Lightning Charging Cable,1,14.95,2019-08-13 15:48:00,114 1st St, New York City,NY,10001 +241963,USB-C Charging Cable,1,11.95,2019-08-08 19:58:00,742 Madison St, Portland,OR,97035 +241964,AAA Batteries (4-pack),1,2.99,2019-08-11 10:28:00,166 Elm St, Atlanta,GA,30301 +241965,iPhone,1,700.0,2019-08-06 13:08:00,374 11th St, Portland,OR,97035 +241966,Google Phone,1,600.0,2019-08-24 11:11:00,436 13th St, Seattle,WA,98101 +241967,Lightning Charging Cable,1,14.95,2019-08-31 09:52:00,682 13th St, Portland,OR,97035 +241968,AA Batteries (4-pack),1,3.84,2019-08-23 18:41:00,538 Center St, New York City,NY,10001 +241969,34in Ultrawide Monitor,1,379.99,2019-08-06 08:44:00,471 Church St, San Francisco,CA,94016 +241970,AAA Batteries (4-pack),1,2.99,2019-08-18 12:18:00,672 Main St, Los Angeles,CA,90001 +241971,USB-C Charging Cable,1,11.95,2019-08-18 11:46:00,738 8th St, Seattle,WA,98101 +241972,Bose SoundSport Headphones,1,99.99,2019-08-24 20:09:00,741 Hickory St, San Francisco,CA,94016 +241973,AA Batteries (4-pack),1,3.84,2019-08-09 15:21:00,930 Lincoln St, Dallas,TX,75001 +241974,Wired Headphones,1,11.99,2019-08-01 05:48:00,386 Maple St, Los Angeles,CA,90001 +241975,USB-C Charging Cable,1,11.95,2019-08-05 21:29:00,134 Willow St, San Francisco,CA,94016 +241976,USB-C Charging Cable,1,11.95,2019-08-31 20:48:00,980 River St, Seattle,WA,98101 +241977,USB-C Charging Cable,1,11.95,2019-08-02 12:07:00,599 Hill St, Austin,TX,73301 +241978,ThinkPad Laptop,1,999.99,2019-08-03 10:12:00,919 13th St, New York City,NY,10001 +241979,Apple Airpods Headphones,1,150.0,2019-08-15 09:14:00,774 Jefferson St, San Francisco,CA,94016 +241980,iPhone,1,700.0,2019-08-10 09:52:00,488 Jackson St, Los Angeles,CA,90001 +241981,USB-C Charging Cable,2,11.95,2019-08-06 11:35:00,585 Hill St, Seattle,WA,98101 +241982,USB-C Charging Cable,1,11.95,2019-08-23 20:59:00,340 Hickory St, Atlanta,GA,30301 +241983,AAA Batteries (4-pack),2,2.99,2019-08-19 20:02:00,727 Highland St, Atlanta,GA,30301 +241984,iPhone,1,700.0,2019-08-24 13:36:00,67 7th St, Atlanta,GA,30301 +241985,USB-C Charging Cable,1,11.95,2019-08-15 21:11:00,748 Jackson St, Portland,OR,97035 +241986,27in FHD Monitor,1,149.99,2019-08-17 19:34:00,774 Meadow St, Dallas,TX,75001 +241987,USB-C Charging Cable,1,11.95,2019-08-31 19:43:00,814 South St, Seattle,WA,98101 +241987,Lightning Charging Cable,1,14.95,2019-08-31 19:43:00,814 South St, Seattle,WA,98101 +241988,Lightning Charging Cable,1,14.95,2019-08-16 19:26:00,695 5th St, Seattle,WA,98101 +241989,Wired Headphones,1,11.99,2019-08-11 12:06:00,602 Main St, Atlanta,GA,30301 +241990,AAA Batteries (4-pack),1,2.99,2019-08-03 12:52:00,464 Main St, New York City,NY,10001 +241991,Macbook Pro Laptop,1,1700.0,2019-08-14 12:38:00,565 11th St, San Francisco,CA,94016 +241992,Wired Headphones,1,11.99,2019-08-31 07:55:00,456 Chestnut St, Los Angeles,CA,90001 +241993,Lightning Charging Cable,1,14.95,2019-08-15 16:53:00,51 Dogwood St, Los Angeles,CA,90001 +241994,AAA Batteries (4-pack),2,2.99,2019-08-16 05:46:00,257 Lake St, Portland,OR,97035 +241995,27in 4K Gaming Monitor,1,389.99,2019-08-28 22:23:00,318 Sunset St, Austin,TX,73301 +241996,AA Batteries (4-pack),2,3.84,2019-08-13 11:07:00,113 Ridge St, Austin,TX,73301 +241997,Bose SoundSport Headphones,1,99.99,2019-08-04 22:31:00,525 9th St, Dallas,TX,75001 +241998,Macbook Pro Laptop,1,1700.0,2019-08-27 13:27:00,421 Center St, San Francisco,CA,94016 +241999,27in FHD Monitor,1,149.99,2019-08-25 09:14:00,106 Church St, Seattle,WA,98101 +242000,USB-C Charging Cable,2,11.95,2019-08-08 09:44:00,160 Forest St, Austin,TX,73301 +242001,AAA Batteries (4-pack),2,2.99,2019-08-29 12:23:00,527 Sunset St, Los Angeles,CA,90001 +242002,27in FHD Monitor,1,149.99,2019-08-20 19:56:00,174 River St, San Francisco,CA,94016 +242003,AAA Batteries (4-pack),1,2.99,2019-08-08 14:57:00,175 Chestnut St, Dallas,TX,75001 +242004,AA Batteries (4-pack),1,3.84,2019-08-08 08:37:00,743 Spruce St, San Francisco,CA,94016 +242005,Bose SoundSport Headphones,1,99.99,2019-08-18 07:41:00,812 Willow St, San Francisco,CA,94016 +242006,Apple Airpods Headphones,1,150.0,2019-08-24 14:59:00,119 2nd St, San Francisco,CA,94016 +242007,Lightning Charging Cable,1,14.95,2019-08-23 09:49:00,814 Church St, Atlanta,GA,30301 +242008,34in Ultrawide Monitor,1,379.99,2019-08-21 11:45:00,717 Wilson St, Los Angeles,CA,90001 +242009,AA Batteries (4-pack),1,3.84,2019-08-29 07:20:00,293 Walnut St, New York City,NY,10001 +242010,AA Batteries (4-pack),2,3.84,2019-08-14 22:35:00,553 10th St, San Francisco,CA,94016 +242011,AA Batteries (4-pack),1,3.84,2019-08-16 14:45:00,743 Washington St, Atlanta,GA,30301 +242012,Lightning Charging Cable,1,14.95,2019-08-29 18:43:00,938 Pine St, San Francisco,CA,94016 +242013,Bose SoundSport Headphones,1,99.99,2019-08-23 02:21:00,860 Sunset St, Los Angeles,CA,90001 +242014,Apple Airpods Headphones,1,150.0,2019-08-14 22:46:00,13 Forest St, Dallas,TX,75001 +242015,Apple Airpods Headphones,1,150.0,2019-08-11 12:33:00,288 Pine St, Los Angeles,CA,90001 +242016,Lightning Charging Cable,1,14.95,2019-08-17 14:21:00,570 12th St, San Francisco,CA,94016 +242017,20in Monitor,1,109.99,2019-08-23 18:27:00,624 Hill St, Boston,MA,02215 +242018,27in FHD Monitor,1,149.99,2019-08-24 23:24:00,982 Meadow St, Dallas,TX,75001 +242018,27in 4K Gaming Monitor,1,389.99,2019-08-24 23:24:00,982 Meadow St, Dallas,TX,75001 +242019,Apple Airpods Headphones,1,150.0,2019-08-19 10:33:00,309 5th St, Los Angeles,CA,90001 +242019,Lightning Charging Cable,1,14.95,2019-08-19 10:33:00,309 5th St, Los Angeles,CA,90001 +242020,27in 4K Gaming Monitor,1,389.99,2019-08-30 14:14:00,27 6th St, Seattle,WA,98101 +242021,Lightning Charging Cable,1,14.95,2019-08-27 08:52:00,264 Forest St, Boston,MA,02215 +242022,Wired Headphones,2,11.99,2019-08-19 19:02:00,96 Hickory St, Atlanta,GA,30301 +242023,34in Ultrawide Monitor,1,379.99,2019-08-22 13:47:00,241 Park St, Atlanta,GA,30301 +242024,USB-C Charging Cable,1,11.95,2019-08-25 15:17:00,998 North St, Los Angeles,CA,90001 +242025,AAA Batteries (4-pack),1,2.99,2019-08-07 09:41:00,243 Walnut St, Los Angeles,CA,90001 +242026,Lightning Charging Cable,1,14.95,2019-08-22 21:08:00,22 Highland St, San Francisco,CA,94016 +242027,Wired Headphones,1,11.99,2019-08-30 12:30:00,368 Forest St, Boston,MA,02215 +242028,AAA Batteries (4-pack),1,2.99,2019-08-20 10:25:00,830 Chestnut St, San Francisco,CA,94016 +242029,iPhone,1,700.0,2019-08-25 22:32:00,965 Center St, Atlanta,GA,30301 +242030,AAA Batteries (4-pack),1,2.99,2019-08-11 09:52:00,873 Lincoln St, Atlanta,GA,30301 +242031,Lightning Charging Cable,1,14.95,2019-08-06 09:11:00,749 Ridge St, Los Angeles,CA,90001 +242032,AA Batteries (4-pack),1,3.84,2019-08-19 14:48:00,205 7th St, Boston,MA,02215 +242033,AA Batteries (4-pack),3,3.84,2019-08-31 00:57:00,783 Jefferson St, Los Angeles,CA,90001 +242034,AAA Batteries (4-pack),1,2.99,2019-08-10 16:25:00,447 Park St, Boston,MA,02215 +242035,20in Monitor,1,109.99,2019-08-03 22:21:00,44 Center St, Dallas,TX,75001 +242036,Wired Headphones,1,11.99,2019-08-15 19:56:00,571 8th St, Los Angeles,CA,90001 +242037,ThinkPad Laptop,1,999.99,2019-08-31 17:13:00,450 Elm St, Atlanta,GA,30301 +242038,Apple Airpods Headphones,1,150.0,2019-08-04 12:24:00,320 Lake St, Boston,MA,02215 +242039,AAA Batteries (4-pack),1,2.99,2019-08-20 22:27:00,228 7th St, Atlanta,GA,30301 +242040,Flatscreen TV,1,300.0,2019-08-06 17:48:00,714 Hickory St, Dallas,TX,75001 +242041,AA Batteries (4-pack),1,3.84,2019-08-29 16:48:00,799 Meadow St, Seattle,WA,98101 +242042,Google Phone,1,600.0,2019-08-03 08:20:00,370 Maple St, Atlanta,GA,30301 +242043,Wired Headphones,1,11.99,2019-08-06 20:26:00,409 Cherry St, Dallas,TX,75001 +242044,Google Phone,1,600.0,2019-08-03 21:28:00,831 4th St, Los Angeles,CA,90001 +242044,27in FHD Monitor,1,149.99,2019-08-03 21:28:00,831 4th St, Los Angeles,CA,90001 +242045,AAA Batteries (4-pack),1,2.99,2019-08-09 14:46:00,456 Lake St, Los Angeles,CA,90001 +242046,Google Phone,1,600.0,2019-08-13 23:10:00,600 Church St, New York City,NY,10001 +242047,USB-C Charging Cable,1,11.95,2019-08-21 09:41:00,291 North St, Boston,MA,02215 +242048,Flatscreen TV,1,300.0,2019-08-01 16:23:00,22 1st St, New York City,NY,10001 +242049,ThinkPad Laptop,1,999.99,2019-08-12 14:49:00,103 Cedar St, New York City,NY,10001 +242050,AAA Batteries (4-pack),1,2.99,2019-08-01 10:12:00,580 6th St, San Francisco,CA,94016 +242051,AAA Batteries (4-pack),1,2.99,2019-08-10 07:00:00,954 Walnut St, San Francisco,CA,94016 +242052,ThinkPad Laptop,1,999.99,2019-08-14 23:28:00,704 Madison St, San Francisco,CA,94016 +242053,Bose SoundSport Headphones,1,99.99,2019-08-18 22:56:00,116 South St, Atlanta,GA,30301 +242054,27in FHD Monitor,1,149.99,2019-08-16 17:43:00,280 Jefferson St, Boston,MA,02215 +242055,USB-C Charging Cable,1,11.95,2019-08-31 13:30:00,773 7th St, Boston,MA,02215 +242056,Apple Airpods Headphones,1,150.0,2019-08-07 08:55:00,217 Ridge St, Los Angeles,CA,90001 +242057,Lightning Charging Cable,1,14.95,2019-08-16 13:04:00,938 6th St, Dallas,TX,75001 +242058,AAA Batteries (4-pack),2,2.99,2019-08-21 09:06:00,355 5th St, Atlanta,GA,30301 +242059,Wired Headphones,1,11.99,2019-08-24 18:37:00,631 Madison St, Dallas,TX,75001 +242060,AAA Batteries (4-pack),2,2.99,2019-08-30 20:57:00,904 Adams St, Atlanta,GA,30301 +242061,AA Batteries (4-pack),1,3.84,2019-08-02 06:27:00,59 4th St, New York City,NY,10001 +242062,Apple Airpods Headphones,1,150.0,2019-08-23 21:53:00,794 Main St, Los Angeles,CA,90001 +242063,USB-C Charging Cable,1,11.95,2019-08-28 18:23:00,27 Cherry St, Dallas,TX,75001 +242064,20in Monitor,1,109.99,2019-08-07 14:24:00,834 Hill St, New York City,NY,10001 +242065,Apple Airpods Headphones,1,150.0,2019-08-17 10:23:00,832 Spruce St, Dallas,TX,75001 +242066,27in FHD Monitor,1,149.99,2019-08-21 09:13:00,970 Lakeview St, Austin,TX,73301 +242067,iPhone,1,700.0,2019-08-04 23:04:00,934 14th St, Austin,TX,73301 +242068,AAA Batteries (4-pack),2,2.99,2019-08-17 13:49:00,700 South St, San Francisco,CA,94016 +242069,34in Ultrawide Monitor,1,379.99,2019-08-10 23:24:00,848 6th St, San Francisco,CA,94016 +242070,27in 4K Gaming Monitor,1,389.99,2019-08-29 00:49:00,484 Spruce St, San Francisco,CA,94016 +242071,AAA Batteries (4-pack),1,2.99,2019-08-18 17:06:00,29 Park St, Atlanta,GA,30301 +242072,Wired Headphones,1,11.99,2019-08-28 19:04:00,234 West St, Portland,OR,97035 +242073,Apple Airpods Headphones,1,150.0,2019-08-03 21:06:00,841 1st St, Portland,OR,97035 +242074,Wired Headphones,1,11.99,2019-08-24 05:50:00,120 4th St, Austin,TX,73301 +242075,USB-C Charging Cable,1,11.95,2019-08-16 10:53:00,319 Main St, Austin,TX,73301 +242076,USB-C Charging Cable,1,11.95,2019-08-25 16:24:00,899 Spruce St, Los Angeles,CA,90001 +242077,AAA Batteries (4-pack),1,2.99,2019-08-19 10:35:00,512 Ridge St, Dallas,TX,75001 +242078,USB-C Charging Cable,1,11.95,2019-08-14 23:01:00,65 Chestnut St, San Francisco,CA,94016 +242079,AAA Batteries (4-pack),1,2.99,2019-08-28 19:43:00,294 North St, San Francisco,CA,94016 +242080,Bose SoundSport Headphones,1,99.99,2019-08-12 21:16:00,758 2nd St, Los Angeles,CA,90001 +242081,AAA Batteries (4-pack),4,2.99,2019-08-16 20:15:00,716 5th St, San Francisco,CA,94016 +242082,ThinkPad Laptop,1,999.99,2019-08-09 12:40:00,553 11th St, Austin,TX,73301 +242083,Google Phone,1,600.0,2019-08-08 13:08:00,812 2nd St, San Francisco,CA,94016 +242083,USB-C Charging Cable,1,11.95,2019-08-08 13:08:00,812 2nd St, San Francisco,CA,94016 +242084,AAA Batteries (4-pack),2,2.99,2019-08-27 11:34:00,626 Madison St, San Francisco,CA,94016 +242085,ThinkPad Laptop,1,999.99,2019-08-02 03:14:00,421 Willow St, San Francisco,CA,94016 +242086,Wired Headphones,1,11.99,2019-08-08 20:51:00,42 1st St, New York City,NY,10001 +242087,20in Monitor,1,109.99,2019-08-04 15:09:00,413 8th St, Portland,OR,97035 +242088,Apple Airpods Headphones,1,150.0,2019-08-12 15:15:00,980 Jefferson St, Dallas,TX,75001 +242089,Google Phone,1,600.0,2019-08-31 11:18:00,543 Walnut St, Portland,OR,97035 +242089,USB-C Charging Cable,1,11.95,2019-08-31 11:18:00,543 Walnut St, Portland,OR,97035 +242090,Wired Headphones,1,11.99,2019-08-26 12:51:00,188 North St, San Francisco,CA,94016 +242091,ThinkPad Laptop,1,999.99,2019-08-13 02:27:00,380 5th St, New York City,NY,10001 +242092,iPhone,1,700.0,2019-08-20 16:57:00,296 West St, Boston,MA,02215 +242092,Apple Airpods Headphones,1,150.0,2019-08-20 16:57:00,296 West St, Boston,MA,02215 +242093,USB-C Charging Cable,1,11.95,2019-08-07 16:05:00,656 1st St, San Francisco,CA,94016 +242094,Bose SoundSport Headphones,1,99.99,2019-08-27 21:14:00,530 5th St, San Francisco,CA,94016 +242095,USB-C Charging Cable,1,11.95,2019-08-17 22:35:00,870 Meadow St, Los Angeles,CA,90001 +242096,20in Monitor,1,109.99,2019-08-08 20:03:00,577 14th St, New York City,NY,10001 +242097,20in Monitor,1,109.99,2019-08-16 17:35:00,333 Elm St, San Francisco,CA,94016 +242098,Lightning Charging Cable,1,14.95,2019-08-17 22:58:00,488 Ridge St, San Francisco,CA,94016 +242099,AAA Batteries (4-pack),2,2.99,2019-08-19 18:51:00,834 1st St, Austin,TX,73301 +242100,AAA Batteries (4-pack),1,2.99,2019-08-16 10:06:00,751 Dogwood St, Portland,OR,97035 +242101,USB-C Charging Cable,1,11.95,2019-08-18 18:39:00,5 Willow St, Austin,TX,73301 +242102,AAA Batteries (4-pack),1,2.99,2019-08-19 13:11:00,821 11th St, Atlanta,GA,30301 +242103,AA Batteries (4-pack),2,3.84,2019-08-07 17:00:00,364 Forest St, Dallas,TX,75001 +242104,Google Phone,1,600.0,2019-08-09 15:58:00,861 Jackson St, New York City,NY,10001 +242104,USB-C Charging Cable,1,11.95,2019-08-09 15:58:00,861 Jackson St, New York City,NY,10001 +242105,Lightning Charging Cable,1,14.95,2019-08-23 17:57:00,77 12th St, San Francisco,CA,94016 +242106,Google Phone,1,600.0,2019-08-12 12:37:00,930 Elm St, Los Angeles,CA,90001 +242107,AA Batteries (4-pack),2,3.84,2019-08-22 23:01:00,690 Meadow St, New York City,NY,10001 +242108,27in 4K Gaming Monitor,1,389.99,2019-08-03 10:05:00,80 Meadow St, Atlanta,GA,30301 +242109,AA Batteries (4-pack),1,3.84,2019-08-11 20:53:00,374 7th St, Los Angeles,CA,90001 +242110,Wired Headphones,1,11.99,2019-08-12 21:36:00,640 West St, San Francisco,CA,94016 +242111,Lightning Charging Cable,2,14.95,2019-08-05 14:49:00,656 Ridge St, Boston,MA,02215 +242112,USB-C Charging Cable,1,11.95,2019-08-04 19:52:00,716 Willow St, San Francisco,CA,94016 +242113,AAA Batteries (4-pack),3,2.99,2019-08-28 12:03:00,873 7th St, San Francisco,CA,94016 +242114,Macbook Pro Laptop,1,1700.0,2019-08-16 14:07:00,518 Cherry St, San Francisco,CA,94016 +242115,AA Batteries (4-pack),1,3.84,2019-08-30 22:13:00,917 14th St, New York City,NY,10001 +242116,AAA Batteries (4-pack),4,2.99,2019-08-04 06:06:00,590 Park St, Boston,MA,02215 +242117,Bose SoundSport Headphones,1,99.99,2019-08-16 13:35:00,505 Dogwood St, Dallas,TX,75001 +242118,Wired Headphones,1,11.99,2019-08-24 16:07:00,320 Washington St, Atlanta,GA,30301 +242119,USB-C Charging Cable,1,11.95,2019-08-09 11:00:00,959 Park St, Boston,MA,02215 +242120,Bose SoundSport Headphones,1,99.99,2019-08-15 18:03:00,421 10th St, Boston,MA,02215 +242121,USB-C Charging Cable,1,11.95,2019-08-15 11:45:00,733 5th St, New York City,NY,10001 +242122,34in Ultrawide Monitor,1,379.99,2019-08-29 22:08:00,51 River St, New York City,NY,10001 +242123,27in FHD Monitor,1,149.99,2019-08-10 16:56:00,48 6th St, San Francisco,CA,94016 +242124,ThinkPad Laptop,1,999.99,2019-08-18 13:09:00,442 Church St, San Francisco,CA,94016 +242125,Wired Headphones,1,11.99,2019-08-27 16:39:00,878 West St, Seattle,WA,98101 +242126,AAA Batteries (4-pack),1,2.99,2019-08-13 18:55:00,980 5th St, Atlanta,GA,30301 +242127,Apple Airpods Headphones,1,150.0,2019-08-26 08:33:00,908 Elm St, Dallas,TX,75001 +242128,27in 4K Gaming Monitor,1,389.99,2019-08-14 14:13:00,284 6th St, New York City,NY,10001 +242129,Lightning Charging Cable,1,14.95,2019-08-21 21:17:00,518 Madison St, Los Angeles,CA,90001 +242130,Lightning Charging Cable,1,14.95,2019-08-30 14:46:00,709 Dogwood St, San Francisco,CA,94016 +242131,AA Batteries (4-pack),1,3.84,2019-08-15 02:00:00,308 Madison St, Seattle,WA,98101 +242132,Google Phone,1,600.0,2019-08-02 16:32:00,173 12th St, New York City,NY,10001 +242132,USB-C Charging Cable,1,11.95,2019-08-02 16:32:00,173 12th St, New York City,NY,10001 +242133,AAA Batteries (4-pack),1,2.99,2019-08-23 11:11:00,631 11th St, New York City,NY,10001 +242134,Macbook Pro Laptop,1,1700.0,2019-08-29 16:37:00,361 West St, San Francisco,CA,94016 +242135,USB-C Charging Cable,1,11.95,2019-08-22 10:08:00,15 Washington St, San Francisco,CA,94016 +242136,Apple Airpods Headphones,1,150.0,2019-08-23 07:26:00,32 6th St, New York City,NY,10001 +242137,Lightning Charging Cable,1,14.95,2019-08-31 16:31:00,63 Dogwood St, San Francisco,CA,94016 +242138,Bose SoundSport Headphones,1,99.99,2019-08-28 11:49:00,829 Lincoln St, San Francisco,CA,94016 +242139,Google Phone,1,600.0,2019-08-23 20:42:00,185 Lakeview St, San Francisco,CA,94016 +242139,USB-C Charging Cable,1,11.95,2019-08-23 20:42:00,185 Lakeview St, San Francisco,CA,94016 +242140,Lightning Charging Cable,1,14.95,2019-08-21 15:11:00,492 Lincoln St, New York City,NY,10001 +242141,Flatscreen TV,1,300.0,2019-08-31 09:42:00,985 South St, Atlanta,GA,30301 +242142,Lightning Charging Cable,1,14.95,2019-08-25 10:40:00,885 1st St, San Francisco,CA,94016 +242143,AAA Batteries (4-pack),1,2.99,2019-08-18 17:35:00,728 Chestnut St, Los Angeles,CA,90001 +242144,USB-C Charging Cable,1,11.95,2019-08-17 15:19:00,550 14th St, New York City,NY,10001 +242145,USB-C Charging Cable,1,11.95,2019-08-08 07:08:00,175 River St, Dallas,TX,75001 +242146,Lightning Charging Cable,1,14.95,2019-08-21 19:11:00,866 Spruce St, San Francisco,CA,94016 +242147,Wired Headphones,1,11.99,2019-08-18 07:35:00,653 Sunset St, Atlanta,GA,30301 +242148,Macbook Pro Laptop,1,1700.0,2019-08-07 11:47:00,192 Willow St, Dallas,TX,75001 +242149,34in Ultrawide Monitor,1,379.99,2019-08-25 02:44:00,845 14th St, Atlanta,GA,30301 +242150,27in FHD Monitor,1,149.99,2019-08-02 19:12:00,652 Dogwood St, Boston,MA,02215 +242151,AAA Batteries (4-pack),1,2.99,2019-08-11 12:28:00,893 Jefferson St, Portland,OR,97035 +242152,Lightning Charging Cable,1,14.95,2019-08-04 06:10:00,516 6th St, Boston,MA,02215 +242153,Wired Headphones,1,11.99,2019-08-02 16:54:00,928 Johnson St, Los Angeles,CA,90001 +242154,Wired Headphones,1,11.99,2019-08-18 10:19:00,837 Sunset St, San Francisco,CA,94016 +242155,USB-C Charging Cable,1,11.95,2019-08-31 10:31:00,741 Lakeview St, Portland,ME,04101 +242156,Bose SoundSport Headphones,1,99.99,2019-08-06 00:52:00,39 West St, New York City,NY,10001 +242157,USB-C Charging Cable,1,11.95,2019-08-15 06:07:00,552 North St, Los Angeles,CA,90001 +242158,iPhone,1,700.0,2019-08-19 09:24:00,23 Willow St, Boston,MA,02215 +242159,AA Batteries (4-pack),1,3.84,2019-08-27 10:23:00,234 Spruce St, Los Angeles,CA,90001 +242160,AA Batteries (4-pack),1,3.84,2019-08-21 23:24:00,447 Center St, Seattle,WA,98101 +242161,AA Batteries (4-pack),2,3.84,2019-08-27 09:27:00,644 Jefferson St, San Francisco,CA,94016 +242162,Bose SoundSport Headphones,1,99.99,2019-08-19 12:05:00,192 Pine St, Austin,TX,73301 +242163,USB-C Charging Cable,1,11.95,2019-08-09 21:43:00,540 Pine St, Seattle,WA,98101 +242164,ThinkPad Laptop,1,999.99,2019-08-30 14:29:00,187 Hickory St, Dallas,TX,75001 +242165,USB-C Charging Cable,2,11.95,2019-08-22 15:46:00,211 13th St, New York City,NY,10001 +242166,Lightning Charging Cable,1,14.95,2019-08-26 13:33:00,746 Chestnut St, Dallas,TX,75001 +242167,AAA Batteries (4-pack),1,2.99,2019-08-14 19:40:00,91 10th St, San Francisco,CA,94016 +242168,AAA Batteries (4-pack),2,2.99,2019-08-18 11:00:00,148 6th St, Los Angeles,CA,90001 +242169,Flatscreen TV,1,300.0,2019-08-13 14:31:00,710 10th St, Los Angeles,CA,90001 +242170,AAA Batteries (4-pack),2,2.99,2019-08-29 16:27:00,181 Church St, San Francisco,CA,94016 +242171,AAA Batteries (4-pack),1,2.99,2019-08-12 06:56:00,516 Dogwood St, Atlanta,GA,30301 +242172,Flatscreen TV,1,300.0,2019-08-06 19:36:00,589 Spruce St, Seattle,WA,98101 +242173,Wired Headphones,1,11.99,2019-08-21 17:36:00,835 Main St, Dallas,TX,75001 +242174,Lightning Charging Cable,1,14.95,2019-08-17 18:19:00,805 Pine St, Austin,TX,73301 +242175,AA Batteries (4-pack),2,3.84,2019-08-25 20:07:00,990 Lincoln St, New York City,NY,10001 +242176,AA Batteries (4-pack),1,3.84,2019-08-07 13:38:00,472 9th St, San Francisco,CA,94016 +242176,ThinkPad Laptop,1,999.99,2019-08-07 13:38:00,472 9th St, San Francisco,CA,94016 +242177,AA Batteries (4-pack),1,3.84,2019-08-04 19:20:00,395 2nd St, San Francisco,CA,94016 +242178,34in Ultrawide Monitor,1,379.99,2019-08-30 18:08:00,763 Elm St, San Francisco,CA,94016 +242179,AA Batteries (4-pack),1,3.84,2019-08-02 13:39:00,762 Ridge St, San Francisco,CA,94016 +242180,Lightning Charging Cable,1,14.95,2019-08-28 21:37:00,108 Meadow St, San Francisco,CA,94016 +242181,Lightning Charging Cable,1,14.95,2019-08-04 09:13:00,242 North St, New York City,NY,10001 +242182,Lightning Charging Cable,1,14.95,2019-08-26 10:27:00,171 2nd St, Boston,MA,02215 +242183,27in 4K Gaming Monitor,1,389.99,2019-08-29 20:09:00,248 11th St, Portland,OR,97035 +242184,Wired Headphones,1,11.99,2019-08-30 23:17:00,764 Lake St, Boston,MA,02215 +242185,USB-C Charging Cable,1,11.95,2019-08-29 13:50:00,104 Hill St, Portland,OR,97035 +242186,AAA Batteries (4-pack),1,2.99,2019-08-04 11:12:00,434 Sunset St, Los Angeles,CA,90001 +242187,iPhone,1,700.0,2019-08-05 06:17:00,255 11th St, San Francisco,CA,94016 +242188,Google Phone,1,600.0,2019-08-10 12:41:00,480 Lincoln St, San Francisco,CA,94016 +242188,USB-C Charging Cable,1,11.95,2019-08-10 12:41:00,480 Lincoln St, San Francisco,CA,94016 +242189,20in Monitor,1,109.99,2019-08-16 22:32:00,720 9th St, Boston,MA,02215 +242190,Google Phone,1,600.0,2019-08-17 13:29:00,435 Walnut St, San Francisco,CA,94016 +242191,AA Batteries (4-pack),1,3.84,2019-08-19 20:42:00,506 8th St, San Francisco,CA,94016 +242192,iPhone,1,700.0,2019-08-29 15:41:00,769 Walnut St, Los Angeles,CA,90001 +242193,USB-C Charging Cable,1,11.95,2019-08-28 23:16:00,972 14th St, Dallas,TX,75001 +242194,27in 4K Gaming Monitor,1,389.99,2019-08-31 14:42:00,62 Church St, San Francisco,CA,94016 +242195,20in Monitor,1,109.99,2019-08-22 17:05:00,94 10th St, Dallas,TX,75001 +242196,34in Ultrawide Monitor,1,379.99,2019-08-16 15:30:00,22 Lake St, San Francisco,CA,94016 +242197,iPhone,1,700.0,2019-08-01 19:24:00,770 13th St, Seattle,WA,98101 +242197,Wired Headphones,1,11.99,2019-08-01 19:24:00,770 13th St, Seattle,WA,98101 +242198,iPhone,1,700.0,2019-08-10 09:34:00,949 Lincoln St, Boston,MA,02215 +242199,Bose SoundSport Headphones,1,99.99,2019-08-23 13:34:00,528 Walnut St, Dallas,TX,75001 +242200,Apple Airpods Headphones,1,150.0,2019-08-23 09:10:00,659 North St, Austin,TX,73301 +242201,Apple Airpods Headphones,1,150.0,2019-08-30 14:05:00,385 Center St, San Francisco,CA,94016 +242202,Wired Headphones,1,11.99,2019-08-16 18:27:00,135 9th St, Austin,TX,73301 +242203,Wired Headphones,2,11.99,2019-08-12 11:18:00,476 South St, Seattle,WA,98101 +242204,Wired Headphones,1,11.99,2019-08-07 12:17:00,554 Center St, San Francisco,CA,94016 +242205,AAA Batteries (4-pack),1,2.99,2019-08-22 08:42:00,621 Lincoln St, Austin,TX,73301 +242206,Macbook Pro Laptop,1,1700.0,2019-08-19 20:03:00,779 13th St, Los Angeles,CA,90001 +242207,USB-C Charging Cable,1,11.95,2019-08-06 12:15:00,4 Center St, New York City,NY,10001 +242208,AAA Batteries (4-pack),1,2.99,2019-08-09 12:23:00,291 Wilson St, Austin,TX,73301 +242209,Lightning Charging Cable,1,14.95,2019-08-28 09:21:00,494 Highland St, Atlanta,GA,30301 +242210,USB-C Charging Cable,1,11.95,2019-08-11 10:01:00,606 9th St, Seattle,WA,98101 +242211,Bose SoundSport Headphones,1,99.99,2019-08-11 11:34:00,168 Elm St, Los Angeles,CA,90001 +242212,AA Batteries (4-pack),1,3.84,2019-08-06 22:46:00,711 4th St, Seattle,WA,98101 +242213,Lightning Charging Cable,1,14.95,2019-08-24 02:45:00,554 Pine St, Atlanta,GA,30301 +242214,Macbook Pro Laptop,1,1700.0,2019-08-09 21:54:00,869 8th St, Atlanta,GA,30301 +242215,27in FHD Monitor,1,149.99,2019-08-14 13:34:00,391 Ridge St, Boston,MA,02215 +242216,USB-C Charging Cable,1,11.95,2019-08-12 19:37:00,739 Adams St, New York City,NY,10001 +242217,Wired Headphones,1,11.99,2019-08-29 20:59:00,606 Wilson St, Boston,MA,02215 +242218,Apple Airpods Headphones,1,150.0,2019-08-26 11:07:00,985 Walnut St, Los Angeles,CA,90001 +242219,AAA Batteries (4-pack),1,2.99,2019-08-12 11:30:00,442 South St, New York City,NY,10001 +242220,AA Batteries (4-pack),1,3.84,2019-08-28 09:25:00,941 Spruce St, Seattle,WA,98101 +242221,34in Ultrawide Monitor,1,379.99,2019-08-24 19:25:00,618 5th St, Dallas,TX,75001 +242222,Bose SoundSport Headphones,1,99.99,2019-08-09 11:07:00,883 Wilson St, Los Angeles,CA,90001 +242223,Macbook Pro Laptop,1,1700.0,2019-08-25 12:02:00,883 Hill St, Boston,MA,02215 +242224,Vareebadd Phone,1,400.0,2019-08-14 10:20:00,911 2nd St, Atlanta,GA,30301 +242224,USB-C Charging Cable,1,11.95,2019-08-14 10:20:00,911 2nd St, Atlanta,GA,30301 +242225,Wired Headphones,1,11.99,2019-08-12 07:02:00,400 Wilson St, San Francisco,CA,94016 +242226,Bose SoundSport Headphones,1,99.99,2019-08-02 13:20:00,254 7th St, Los Angeles,CA,90001 +242227,Apple Airpods Headphones,1,150.0,2019-08-19 12:21:00,224 Washington St, Boston,MA,02215 +242228,Flatscreen TV,1,300.0,2019-08-09 01:27:00,211 5th St, New York City,NY,10001 +242229,AAA Batteries (4-pack),3,2.99,2019-08-02 08:02:00,785 Madison St, San Francisco,CA,94016 +242230,27in 4K Gaming Monitor,1,389.99,2019-08-18 21:51:00,33 Cedar St, Atlanta,GA,30301 +242231,iPhone,1,700.0,2019-08-30 22:08:00,190 Madison St, San Francisco,CA,94016 +242232,Apple Airpods Headphones,1,150.0,2019-08-22 19:07:00,680 Maple St, New York City,NY,10001 +242233,Apple Airpods Headphones,1,150.0,2019-08-16 20:31:00,534 Center St, Portland,OR,97035 +242234,AA Batteries (4-pack),1,3.84,2019-08-31 20:09:00,491 Walnut St, Portland,OR,97035 +242235,AAA Batteries (4-pack),1,2.99,2019-08-11 21:12:00,991 4th St, New York City,NY,10001 +242236,ThinkPad Laptop,1,999.99,2019-08-25 20:25:00,13 10th St, San Francisco,CA,94016 +242237,Bose SoundSport Headphones,1,99.99,2019-08-06 20:44:00,9 Elm St, Seattle,WA,98101 +242238,AAA Batteries (4-pack),2,2.99,2019-08-09 13:49:00,98 Wilson St, Boston,MA,02215 +242239,AAA Batteries (4-pack),2,2.99,2019-08-01 17:43:00,25 12th St, San Francisco,CA,94016 +242240,AA Batteries (4-pack),1,3.84,2019-08-16 01:17:00,907 Cherry St, Los Angeles,CA,90001 +242241,ThinkPad Laptop,1,999.99,2019-08-14 09:25:00,725 South St, San Francisco,CA,94016 +242242,Vareebadd Phone,1,400.0,2019-08-22 19:49:00,545 Jefferson St, Boston,MA,02215 +242243,iPhone,1,700.0,2019-08-18 15:12:00,276 2nd St, New York City,NY,10001 +242244,AA Batteries (4-pack),1,3.84,2019-08-20 17:00:00,622 2nd St, Dallas,TX,75001 +242245,Bose SoundSport Headphones,1,99.99,2019-08-22 06:30:00,102 River St, Los Angeles,CA,90001 +242246,ThinkPad Laptop,1,999.99,2019-08-19 10:08:00,948 Johnson St, Seattle,WA,98101 +242247,AA Batteries (4-pack),1,3.84,2019-08-07 07:59:00,675 Park St, Los Angeles,CA,90001 +242248,Google Phone,1,600.0,2019-08-29 12:46:00,640 7th St, New York City,NY,10001 +242248,USB-C Charging Cable,1,11.95,2019-08-29 12:46:00,640 7th St, New York City,NY,10001 +242249,Google Phone,1,600.0,2019-08-27 20:20:00,713 Willow St, Portland,OR,97035 +242249,USB-C Charging Cable,1,11.95,2019-08-27 20:20:00,713 Willow St, Portland,OR,97035 +242250,Bose SoundSport Headphones,1,99.99,2019-08-31 14:25:00,361 5th St, Dallas,TX,75001 +242251,Flatscreen TV,1,300.0,2019-08-09 19:23:00,267 Cherry St, San Francisco,CA,94016 +242252,AAA Batteries (4-pack),1,2.99,2019-08-15 21:28:00,858 1st St, San Francisco,CA,94016 +242253,AA Batteries (4-pack),1,3.84,2019-08-04 15:51:00,96 Madison St, Boston,MA,02215 +242254,Bose SoundSport Headphones,1,99.99,2019-08-03 09:04:00,586 Cherry St, New York City,NY,10001 +242255,27in FHD Monitor,1,149.99,2019-08-30 15:57:00,928 Hickory St, New York City,NY,10001 +242256,Lightning Charging Cable,1,14.95,2019-08-19 10:30:00,959 Spruce St, Seattle,WA,98101 +242257,34in Ultrawide Monitor,1,379.99,2019-08-06 13:54:00,840 Lincoln St, New York City,NY,10001 +242258,AA Batteries (4-pack),1,3.84,2019-08-09 14:43:00,440 2nd St, Los Angeles,CA,90001 +242259,27in FHD Monitor,1,149.99,2019-08-27 07:33:00,710 6th St, Seattle,WA,98101 +242260,USB-C Charging Cable,1,11.95,2019-08-02 11:56:00,264 9th St, Seattle,WA,98101 +242261,27in FHD Monitor,1,149.99,2019-08-27 10:23:00,682 Center St, Dallas,TX,75001 +242262,Lightning Charging Cable,1,14.95,2019-08-06 09:33:00,324 West St, San Francisco,CA,94016 +242263,iPhone,1,700.0,2019-08-08 16:12:00,890 Cedar St, Los Angeles,CA,90001 +242264,Vareebadd Phone,1,400.0,2019-08-09 19:42:00,810 Forest St, Austin,TX,73301 +242265,USB-C Charging Cable,1,11.95,2019-08-07 15:20:00,803 13th St, San Francisco,CA,94016 +242266,USB-C Charging Cable,1,11.95,2019-08-25 17:35:00,71 Chestnut St, Atlanta,GA,30301 +242267,Apple Airpods Headphones,1,150.0,2019-08-31 16:08:00,3 4th St, New York City,NY,10001 +242268,USB-C Charging Cable,1,11.95,2019-08-02 11:14:00,467 2nd St, Atlanta,GA,30301 +242269,Macbook Pro Laptop,1,1700.0,2019-08-05 16:14:00,686 7th St, Atlanta,GA,30301 +242270,AA Batteries (4-pack),1,3.84,2019-08-09 15:45:00,267 Sunset St, San Francisco,CA,94016 +242271,AA Batteries (4-pack),1,3.84,2019-08-28 05:57:00,56 14th St, Austin,TX,73301 +242272,Lightning Charging Cable,1,14.95,2019-08-15 19:30:00,420 Elm St, New York City,NY,10001 +242273,Flatscreen TV,1,300.0,2019-08-21 21:25:00,457 4th St, New York City,NY,10001 +242274,Lightning Charging Cable,1,14.95,2019-08-30 11:10:00,703 Lake St, Dallas,TX,75001 +242275,Wired Headphones,1,11.99,2019-08-23 21:12:00,79 Hickory St, San Francisco,CA,94016 +242276,USB-C Charging Cable,1,11.95,2019-08-08 18:00:00,860 Center St, San Francisco,CA,94016 +242277,Bose SoundSport Headphones,1,99.99,2019-08-11 15:59:00,601 10th St, Atlanta,GA,30301 +242278,20in Monitor,1,109.99,2019-08-05 20:57:00,91 Willow St, New York City,NY,10001 +242279,AAA Batteries (4-pack),1,2.99,2019-08-13 14:50:00,666 North St, Dallas,TX,75001 +242280,AA Batteries (4-pack),1,3.84,2019-08-15 19:11:00,926 Forest St, Boston,MA,02215 +242281,27in 4K Gaming Monitor,1,389.99,2019-08-28 09:20:00,711 Forest St, Atlanta,GA,30301 +242282,27in FHD Monitor,1,149.99,2019-08-28 12:14:00,46 Jefferson St, New York City,NY,10001 +242283,34in Ultrawide Monitor,1,379.99,2019-08-06 17:23:00,282 North St, New York City,NY,10001 +242284,27in 4K Gaming Monitor,1,389.99,2019-08-01 17:42:00,406 Lakeview St, Portland,ME,04101 +242285,Lightning Charging Cable,1,14.95,2019-08-02 08:14:00,843 Center St, San Francisco,CA,94016 +242286,Bose SoundSport Headphones,1,99.99,2019-08-07 22:38:00,873 7th St, Seattle,WA,98101 +242287,AA Batteries (4-pack),1,3.84,2019-08-18 05:04:00,267 7th St, Boston,MA,02215 +242288,USB-C Charging Cable,1,11.95,2019-08-28 20:09:00,205 1st St, Seattle,WA,98101 +242289,Lightning Charging Cable,1,14.95,2019-08-24 17:59:00,970 Walnut St, San Francisco,CA,94016 +242290,Wired Headphones,1,11.99,2019-08-20 21:34:00,669 5th St, Atlanta,GA,30301 +242291,AA Batteries (4-pack),2,3.84,2019-08-31 13:51:00,223 9th St, Portland,OR,97035 +242292,Wired Headphones,1,11.99,2019-08-26 06:34:00,591 Lincoln St, Portland,OR,97035 +242293,AAA Batteries (4-pack),1,2.99,2019-08-26 19:10:00,505 7th St, Atlanta,GA,30301 +242294,AAA Batteries (4-pack),1,2.99,2019-08-22 23:13:00,777 South St, Seattle,WA,98101 +242295,Wired Headphones,1,11.99,2019-08-17 15:23:00,925 14th St, Austin,TX,73301 +242295,27in FHD Monitor,1,149.99,2019-08-17 15:23:00,925 14th St, Austin,TX,73301 +242296,AAA Batteries (4-pack),2,2.99,2019-08-14 20:54:00,147 10th St, Boston,MA,02215 +242297,Bose SoundSport Headphones,1,99.99,2019-08-10 10:32:00,549 South St, San Francisco,CA,94016 +242298,Wired Headphones,1,11.99,2019-08-26 14:57:00,853 13th St, Boston,MA,02215 +242299,USB-C Charging Cable,1,11.95,2019-08-21 17:16:00,560 Pine St, Atlanta,GA,30301 +242300,USB-C Charging Cable,1,11.95,2019-08-26 10:22:00,202 8th St, San Francisco,CA,94016 +242301,20in Monitor,1,109.99,2019-08-22 23:08:00,796 Jefferson St, Austin,TX,73301 +242302,Wired Headphones,1,11.99,2019-08-15 10:53:00,626 10th St, Atlanta,GA,30301 +242303,Lightning Charging Cable,1,14.95,2019-08-22 21:05:00,327 10th St, New York City,NY,10001 +242304,Google Phone,1,600.0,2019-08-19 16:49:00,843 6th St, Atlanta,GA,30301 +242305,Lightning Charging Cable,1,14.95,2019-08-22 09:41:00,721 Lakeview St, Austin,TX,73301 +242306,34in Ultrawide Monitor,1,379.99,2019-08-30 23:31:00,453 11th St, Dallas,TX,75001 +242307,USB-C Charging Cable,1,11.95,2019-08-08 11:52:00,37 Sunset St, San Francisco,CA,94016 +242308,AAA Batteries (4-pack),4,2.99,2019-08-26 14:46:00,573 North St, New York City,NY,10001 +242309,27in 4K Gaming Monitor,1,389.99,2019-08-07 12:43:00,76 7th St, Austin,TX,73301 +242310,USB-C Charging Cable,1,11.95,2019-08-14 11:56:00,715 Jefferson St, Portland,OR,97035 +242311,AAA Batteries (4-pack),2,2.99,2019-08-10 18:34:00,956 Jackson St, Boston,MA,02215 +242312,ThinkPad Laptop,1,999.99,2019-08-05 12:46:00,277 Hickory St, New York City,NY,10001 +242313,Flatscreen TV,1,300.0,2019-08-29 19:39:00,906 Hill St, New York City,NY,10001 +242314,Apple Airpods Headphones,1,150.0,2019-08-20 17:33:00,5 8th St, Los Angeles,CA,90001 +242315,Wired Headphones,1,11.99,2019-08-09 12:40:00,207 River St, San Francisco,CA,94016 +242316,Lightning Charging Cable,1,14.95,2019-08-24 09:00:00,788 Madison St, San Francisco,CA,94016 +242317,AA Batteries (4-pack),1,3.84,2019-08-12 12:20:00,319 Walnut St, San Francisco,CA,94016 +242318,Bose SoundSport Headphones,1,99.99,2019-08-10 07:21:00,660 Willow St, Portland,OR,97035 +242319,AAA Batteries (4-pack),2,2.99,2019-08-07 13:39:00,746 Meadow St, Seattle,WA,98101 +242320,Wired Headphones,2,11.99,2019-08-06 18:03:00,832 Meadow St, Boston,MA,02215 +242321,27in 4K Gaming Monitor,1,389.99,2019-08-14 19:39:00,117 Main St, Atlanta,GA,30301 +242322,34in Ultrawide Monitor,1,379.99,2019-08-22 19:57:00,598 Park St, Los Angeles,CA,90001 +242323,27in FHD Monitor,1,149.99,2019-08-04 13:58:00,66 River St, Seattle,WA,98101 +242323,Lightning Charging Cable,1,14.95,2019-08-04 13:58:00,66 River St, Seattle,WA,98101 +242324,Lightning Charging Cable,1,14.95,2019-08-31 09:12:00,433 Lake St, Los Angeles,CA,90001 +242325,iPhone,1,700.0,2019-08-23 05:51:00,409 West St, Atlanta,GA,30301 +242326,Wired Headphones,1,11.99,2019-08-09 14:35:00,443 Church St, Boston,MA,02215 +242327,Wired Headphones,1,11.99,2019-08-29 10:53:00,612 Meadow St, New York City,NY,10001 +242328,Macbook Pro Laptop,1,1700.0,2019-08-22 08:59:00,764 Adams St, Atlanta,GA,30301 +242329,Lightning Charging Cable,1,14.95,2019-08-12 22:08:00,12 Johnson St, New York City,NY,10001 +242330,USB-C Charging Cable,1,11.95,2019-08-13 22:01:00,11 6th St, Los Angeles,CA,90001 +242331,Flatscreen TV,1,300.0,2019-08-10 19:05:00,367 South St, Los Angeles,CA,90001 +242332,Apple Airpods Headphones,1,150.0,2019-08-24 16:22:00,340 12th St, Atlanta,GA,30301 +242333,Wired Headphones,1,11.99,2019-08-25 22:36:00,954 River St, Dallas,TX,75001 +242334,AA Batteries (4-pack),1,3.84,2019-08-29 06:49:00,521 2nd St, New York City,NY,10001 +242335,27in FHD Monitor,1,149.99,2019-08-12 07:32:00,92 Willow St, San Francisco,CA,94016 +242336,iPhone,1,700.0,2019-08-04 13:15:00,41 Forest St, Los Angeles,CA,90001 +242337,Wired Headphones,1,11.99,2019-08-21 05:28:00,324 4th St, San Francisco,CA,94016 +242338,USB-C Charging Cable,1,11.95,2019-08-26 14:27:00,476 Hickory St, Austin,TX,73301 +242339,Wired Headphones,1,11.99,2019-08-22 16:31:00,84 2nd St, Austin,TX,73301 +242340,AA Batteries (4-pack),1,3.84,2019-08-18 14:16:00,632 Adams St, San Francisco,CA,94016 +242341,AAA Batteries (4-pack),2,2.99,2019-08-26 16:32:00,354 2nd St, San Francisco,CA,94016 +242342,AA Batteries (4-pack),1,3.84,2019-08-18 00:16:00,879 Lake St, New York City,NY,10001 +242343,ThinkPad Laptop,1,999.99,2019-09-01 02:44:00,510 Park St, Boston,MA,02215 +242344,AA Batteries (4-pack),3,3.84,2019-08-20 12:26:00,319 Jackson St, San Francisco,CA,94016 +242345,AA Batteries (4-pack),5,3.84,2019-08-12 12:24:00,413 Ridge St, San Francisco,CA,94016 +242346,Bose SoundSport Headphones,1,99.99,2019-08-07 22:37:00,879 8th St, San Francisco,CA,94016 +242347,AAA Batteries (4-pack),1,2.99,2019-08-24 19:08:00,397 Cherry St, Atlanta,GA,30301 +242348,Macbook Pro Laptop,1,1700.0,2019-08-16 14:15:00,287 North St, San Francisco,CA,94016 +242349,Bose SoundSport Headphones,1,99.99,2019-08-28 09:07:00,445 Pine St, San Francisco,CA,94016 +242350,USB-C Charging Cable,1,11.95,2019-08-20 08:37:00,179 Adams St, Los Angeles,CA,90001 +242351,AAA Batteries (4-pack),1,2.99,2019-08-10 17:57:00,186 Madison St, New York City,NY,10001 +242352,AAA Batteries (4-pack),1,2.99,2019-08-04 00:25:00,886 Cherry St, San Francisco,CA,94016 +242353,Lightning Charging Cable,1,14.95,2019-08-12 21:39:00,786 Pine St, Los Angeles,CA,90001 +242354,USB-C Charging Cable,2,11.95,2019-08-06 20:59:00,106 Hickory St, Atlanta,GA,30301 +242355,Bose SoundSport Headphones,1,99.99,2019-08-28 04:48:00,774 Meadow St, Portland,OR,97035 +242355,iPhone,1,700.0,2019-08-28 04:48:00,774 Meadow St, Portland,OR,97035 +242356,27in FHD Monitor,1,149.99,2019-08-06 08:25:00,86 Lakeview St, Atlanta,GA,30301 +242357,Lightning Charging Cable,2,14.95,2019-08-29 11:56:00,464 Meadow St, Portland,OR,97035 +242358,Lightning Charging Cable,1,14.95,2019-08-09 21:50:00,581 Lake St, San Francisco,CA,94016 +242359,Bose SoundSport Headphones,1,99.99,2019-08-23 07:11:00,963 Hickory St, New York City,NY,10001 +242360,AA Batteries (4-pack),2,3.84,2019-08-10 20:01:00,652 Highland St, Los Angeles,CA,90001 +242361,Apple Airpods Headphones,1,150.0,2019-08-30 18:00:00,881 6th St, Seattle,WA,98101 +242362,USB-C Charging Cable,1,11.95,2019-08-13 11:45:00,70 Hickory St, San Francisco,CA,94016 +242363,27in FHD Monitor,1,149.99,2019-08-28 13:04:00,145 South St, Seattle,WA,98101 +242364,AA Batteries (4-pack),1,3.84,2019-08-16 14:48:00,193 Sunset St, Atlanta,GA,30301 +242365,Lightning Charging Cable,1,14.95,2019-08-15 00:09:00,753 Cedar St, San Francisco,CA,94016 +242366,27in FHD Monitor,1,149.99,2019-08-21 11:51:00,840 Hickory St, San Francisco,CA,94016 +242367,27in FHD Monitor,1,149.99,2019-08-20 08:03:00,71 Adams St, San Francisco,CA,94016 +242368,Wired Headphones,1,11.99,2019-08-27 18:14:00,261 Highland St, San Francisco,CA,94016 +242369,Lightning Charging Cable,1,14.95,2019-08-20 17:54:00,326 12th St, Los Angeles,CA,90001 +242370,27in FHD Monitor,1,149.99,2019-08-06 17:44:00,251 Forest St, New York City,NY,10001 +242371,27in FHD Monitor,1,149.99,2019-08-02 18:15:00,216 12th St, San Francisco,CA,94016 +242372,Apple Airpods Headphones,1,150.0,2019-08-09 08:47:00,484 Meadow St, Los Angeles,CA,90001 +242373,AAA Batteries (4-pack),2,2.99,2019-08-10 13:59:00,616 Park St, San Francisco,CA,94016 +242374,Apple Airpods Headphones,1,150.0,2019-08-09 20:29:00,839 12th St, San Francisco,CA,94016 +242375,USB-C Charging Cable,1,11.95,2019-08-01 18:56:00,279 8th St, San Francisco,CA,94016 +242376,AA Batteries (4-pack),2,3.84,2019-08-31 15:10:00,163 Park St, Los Angeles,CA,90001 +242377,AA Batteries (4-pack),1,3.84,2019-08-25 18:54:00,484 2nd St, Los Angeles,CA,90001 +242378,Apple Airpods Headphones,1,150.0,2019-08-11 08:27:00,216 Park St, Boston,MA,02215 +242379,Macbook Pro Laptop,1,1700.0,2019-08-16 21:10:00,369 Elm St, Portland,OR,97035 +242380,Flatscreen TV,1,300.0,2019-08-06 08:12:00,572 Jefferson St, Dallas,TX,75001 +242381,USB-C Charging Cable,1,11.95,2019-08-23 06:41:00,796 Dogwood St, New York City,NY,10001 +242382,AA Batteries (4-pack),1,3.84,2019-08-07 21:03:00,290 14th St, Portland,OR,97035 +242383,iPhone,1,700.0,2019-08-24 15:50:00,773 Hickory St, New York City,NY,10001 +242384,Google Phone,1,600.0,2019-08-17 14:14:00,709 Elm St, Dallas,TX,75001 +242385,AAA Batteries (4-pack),1,2.99,2019-08-28 12:36:00,853 Cedar St, Portland,OR,97035 +242386,iPhone,1,700.0,2019-08-12 11:47:00,176 Lakeview St, Boston,MA,02215 +242387,Flatscreen TV,1,300.0,2019-08-21 13:55:00,417 6th St, New York City,NY,10001 +242388,Bose SoundSport Headphones,1,99.99,2019-08-17 18:59:00,297 Park St, San Francisco,CA,94016 +242389,iPhone,1,700.0,2019-08-05 10:58:00,256 7th St, New York City,NY,10001 +242390,AAA Batteries (4-pack),1,2.99,2019-08-26 20:43:00,328 1st St, Seattle,WA,98101 +242391,AAA Batteries (4-pack),1,2.99,2019-08-22 10:33:00,752 Jefferson St, Portland,OR,97035 +242392,Apple Airpods Headphones,1,150.0,2019-08-19 10:06:00,805 11th St, Los Angeles,CA,90001 +242393,Bose SoundSport Headphones,1,99.99,2019-08-08 20:13:00,857 Maple St, Dallas,TX,75001 +242394,Google Phone,1,600.0,2019-08-08 08:15:00,11 Forest St, New York City,NY,10001 +242395,27in 4K Gaming Monitor,1,389.99,2019-08-09 18:40:00,678 Washington St, Seattle,WA,98101 +242396,USB-C Charging Cable,2,11.95,2019-08-25 02:31:00,922 Adams St, Seattle,WA,98101 +242397,27in 4K Gaming Monitor,1,389.99,2019-08-27 11:37:00,132 Maple St, Portland,OR,97035 +242398,27in FHD Monitor,1,149.99,2019-08-21 09:32:00,891 Madison St, New York City,NY,10001 +242399,Apple Airpods Headphones,1,150.0,2019-08-12 10:16:00,568 7th St, Los Angeles,CA,90001 +242400,Google Phone,1,600.0,2019-08-27 07:18:00,68 6th St, Boston,MA,02215 +242400,USB-C Charging Cable,1,11.95,2019-08-27 07:18:00,68 6th St, Boston,MA,02215 +242401,Bose SoundSport Headphones,1,99.99,2019-08-21 18:23:00,284 Wilson St, Portland,OR,97035 +242402,27in 4K Gaming Monitor,1,389.99,2019-08-08 12:31:00,952 Meadow St, Los Angeles,CA,90001 +242403,Wired Headphones,1,11.99,2019-08-14 14:24:00,782 Willow St, San Francisco,CA,94016 +242404,Lightning Charging Cable,2,14.95,2019-08-08 09:28:00,764 Highland St, Boston,MA,02215 +242405,Apple Airpods Headphones,1,150.0,2019-08-03 10:22:00,474 Walnut St, San Francisco,CA,94016 +242406,AAA Batteries (4-pack),1,2.99,2019-08-12 02:32:00,734 10th St, Austin,TX,73301 +242407,Bose SoundSport Headphones,1,99.99,2019-08-12 14:42:00,374 Sunset St, San Francisco,CA,94016 +242408,Macbook Pro Laptop,1,1700.0,2019-08-29 14:02:00,836 Adams St, Boston,MA,02215 +242409,AAA Batteries (4-pack),1,2.99,2019-08-12 19:46:00,205 Ridge St, Los Angeles,CA,90001 +242410,Apple Airpods Headphones,1,150.0,2019-08-16 15:40:00,597 Cherry St, Austin,TX,73301 +242411,Bose SoundSport Headphones,1,99.99,2019-08-27 22:24:00,24 Washington St, Los Angeles,CA,90001 +242411,AAA Batteries (4-pack),1,2.99,2019-08-27 22:24:00,24 Washington St, Los Angeles,CA,90001 +242412,AA Batteries (4-pack),1,3.84,2019-08-16 10:25:00,443 13th St, Los Angeles,CA,90001 +242413,Flatscreen TV,1,300.0,2019-08-10 11:04:00,855 Pine St, Seattle,WA,98101 +242414,AAA Batteries (4-pack),2,2.99,2019-08-18 21:45:00,140 Lincoln St, San Francisco,CA,94016 +242415,Wired Headphones,1,11.99,2019-08-09 17:44:00,474 Cedar St, San Francisco,CA,94016 +242416,AA Batteries (4-pack),1,3.84,2019-08-31 18:45:00,925 Sunset St, New York City,NY,10001 +242417,Bose SoundSport Headphones,1,99.99,2019-08-18 15:20:00,457 7th St, San Francisco,CA,94016 +242418,Apple Airpods Headphones,1,150.0,2019-08-09 20:45:00,989 2nd St, Los Angeles,CA,90001 +242419,27in FHD Monitor,1,149.99,2019-08-24 21:18:00,98 Walnut St, Seattle,WA,98101 +242420,Wired Headphones,1,11.99,2019-08-18 22:08:00,710 Dogwood St, Seattle,WA,98101 +242421,Google Phone,1,600.0,2019-08-06 08:52:00,829 10th St, Boston,MA,02215 +242422,Wired Headphones,1,11.99,2019-08-25 09:46:00,17 10th St, Boston,MA,02215 +242423,34in Ultrawide Monitor,1,379.99,2019-08-14 12:40:00,436 Wilson St, Los Angeles,CA,90001 +242424,AAA Batteries (4-pack),1,2.99,2019-08-31 12:57:00,555 Cedar St, Los Angeles,CA,90001 +242425,Wired Headphones,3,11.99,2019-08-29 23:37:00,538 Meadow St, Dallas,TX,75001 +242426,Flatscreen TV,1,300.0,2019-08-13 23:23:00,751 12th St, San Francisco,CA,94016 +242427,Apple Airpods Headphones,1,150.0,2019-08-01 21:05:00,15 Dogwood St, Portland,OR,97035 +242428,Wired Headphones,1,11.99,2019-08-29 15:19:00,992 11th St, Atlanta,GA,30301 +242429,27in FHD Monitor,1,149.99,2019-08-19 08:44:00,845 Meadow St, Atlanta,GA,30301 +242430,Lightning Charging Cable,1,14.95,2019-08-15 19:29:00,33 Highland St, San Francisco,CA,94016 +242431,Bose SoundSport Headphones,1,99.99,2019-08-09 18:04:00,704 Meadow St, San Francisco,CA,94016 +242432,Google Phone,1,600.0,2019-08-08 22:41:00,768 Jackson St, Portland,OR,97035 +242433,AA Batteries (4-pack),3,3.84,2019-08-05 17:09:00,622 Madison St, Portland,OR,97035 +242434,AA Batteries (4-pack),1,3.84,2019-08-12 12:35:00,418 Jackson St, Atlanta,GA,30301 +242435,USB-C Charging Cable,1,11.95,2019-08-21 21:26:00,702 11th St, New York City,NY,10001 +242436,Flatscreen TV,1,300.0,2019-08-03 13:16:00,475 Highland St, Boston,MA,02215 +242436,Wired Headphones,1,11.99,2019-08-03 13:16:00,475 Highland St, Boston,MA,02215 +242437,Google Phone,1,600.0,2019-08-10 18:50:00,796 Madison St, New York City,NY,10001 +242438,Wired Headphones,1,11.99,2019-08-10 19:34:00,701 Park St, Los Angeles,CA,90001 +242439,AA Batteries (4-pack),1,3.84,2019-08-19 12:29:00,835 Sunset St, San Francisco,CA,94016 +242440,USB-C Charging Cable,1,11.95,2019-08-28 17:14:00,491 Church St, Boston,MA,02215 +242441,USB-C Charging Cable,1,11.95,2019-08-23 11:06:00,572 Maple St, San Francisco,CA,94016 +242442,Apple Airpods Headphones,1,150.0,2019-08-12 10:17:00,181 Chestnut St, Austin,TX,73301 +242443,iPhone,1,700.0,2019-08-27 22:19:00,126 Pine St, Austin,TX,73301 +242443,Apple Airpods Headphones,1,150.0,2019-08-27 22:19:00,126 Pine St, Austin,TX,73301 +242444,USB-C Charging Cable,2,11.95,2019-08-14 13:51:00,775 Lincoln St, Los Angeles,CA,90001 +242445,Wired Headphones,1,11.99,2019-08-24 23:37:00,95 Johnson St, Los Angeles,CA,90001 +242446,Lightning Charging Cable,1,14.95,2019-08-02 21:51:00,801 Jackson St, New York City,NY,10001 +242447,Lightning Charging Cable,2,14.95,2019-08-12 18:49:00,680 7th St, Los Angeles,CA,90001 +242448,USB-C Charging Cable,1,11.95,2019-08-09 19:47:00,558 4th St, New York City,NY,10001 +242449,34in Ultrawide Monitor,1,379.99,2019-08-09 21:15:00,697 Center St, Los Angeles,CA,90001 +242450,AAA Batteries (4-pack),1,2.99,2019-08-18 16:57:00,506 Adams St, San Francisco,CA,94016 +242451,Flatscreen TV,1,300.0,2019-08-03 14:08:00,829 11th St, New York City,NY,10001 +242452,20in Monitor,1,109.99,2019-08-08 18:51:00,98 Dogwood St, San Francisco,CA,94016 +242453,Macbook Pro Laptop,1,1700.0,2019-08-22 11:12:00,68 Main St, Portland,OR,97035 +242454,AAA Batteries (4-pack),4,2.99,2019-08-05 20:44:00,987 13th St, San Francisco,CA,94016 +242455,27in 4K Gaming Monitor,1,389.99,2019-08-14 21:22:00,591 Ridge St, Los Angeles,CA,90001 +242456,20in Monitor,1,109.99,2019-08-25 15:13:00,406 Adams St, Dallas,TX,75001 +242457,Macbook Pro Laptop,1,1700.0,2019-08-12 16:53:00,537 Johnson St, Austin,TX,73301 +242458,AA Batteries (4-pack),1,3.84,2019-08-29 11:31:00,131 Walnut St, New York City,NY,10001 +242459,27in 4K Gaming Monitor,1,389.99,2019-08-26 19:42:00,231 6th St, Atlanta,GA,30301 +242460,Bose SoundSport Headphones,1,99.99,2019-08-20 14:09:00,201 Madison St, Dallas,TX,75001 +242461,Wired Headphones,1,11.99,2019-08-05 13:30:00,747 8th St, Seattle,WA,98101 +242462,Apple Airpods Headphones,1,150.0,2019-08-19 12:19:00,594 Jefferson St, San Francisco,CA,94016 +242463,Flatscreen TV,1,300.0,2019-08-24 11:51:00,503 West St, San Francisco,CA,94016 +242464,Flatscreen TV,1,300.0,2019-08-26 17:32:00,214 Cherry St, San Francisco,CA,94016 +242465,Lightning Charging Cable,1,14.95,2019-08-12 01:23:00,827 Lake St, Portland,OR,97035 +242466,Bose SoundSport Headphones,1,99.99,2019-08-21 21:10:00,132 Cedar St, San Francisco,CA,94016 +242467,27in 4K Gaming Monitor,1,389.99,2019-08-03 19:52:00,778 4th St, Atlanta,GA,30301 +242468,ThinkPad Laptop,1,999.99,2019-08-10 19:05:00,877 Lincoln St, Dallas,TX,75001 +242469,20in Monitor,1,109.99,2019-08-25 16:30:00,540 Jefferson St, Dallas,TX,75001 +242470,USB-C Charging Cable,1,11.95,2019-08-25 22:02:00,931 10th St, Atlanta,GA,30301 +242471,Apple Airpods Headphones,1,150.0,2019-08-27 20:05:00,949 Johnson St, San Francisco,CA,94016 +242472,AAA Batteries (4-pack),1,2.99,2019-08-18 21:20:00,268 Madison St, San Francisco,CA,94016 +242473,Google Phone,1,600.0,2019-08-27 16:37:00,714 Maple St, Dallas,TX,75001 +242474,AA Batteries (4-pack),3,3.84,2019-08-09 18:11:00,729 8th St, Dallas,TX,75001 +242475,Apple Airpods Headphones,1,150.0,2019-08-04 23:17:00,533 Forest St, New York City,NY,10001 +242476,Flatscreen TV,1,300.0,2019-08-27 17:33:00,855 Ridge St, San Francisco,CA,94016 +242477,Apple Airpods Headphones,1,150.0,2019-08-09 16:14:00,824 14th St, San Francisco,CA,94016 +242478,Bose SoundSport Headphones,1,99.99,2019-08-05 20:34:00,126 Pine St, Los Angeles,CA,90001 +242479,Bose SoundSport Headphones,1,99.99,2019-08-27 16:52:00,223 Wilson St, New York City,NY,10001 +242480,34in Ultrawide Monitor,1,379.99,2019-08-15 09:42:00,928 Chestnut St, Atlanta,GA,30301 +242481,Lightning Charging Cable,1,14.95,2019-08-19 12:07:00,91 Madison St, Atlanta,GA,30301 +242482,AAA Batteries (4-pack),1,2.99,2019-08-18 17:54:00,3 North St, Atlanta,GA,30301 +242483,Bose SoundSport Headphones,1,99.99,2019-08-10 10:12:00,960 Lake St, Los Angeles,CA,90001 +242484,ThinkPad Laptop,1,999.99,2019-08-07 11:18:00,845 5th St, San Francisco,CA,94016 +242485,34in Ultrawide Monitor,1,379.99,2019-08-31 22:20:00,637 Cedar St, Seattle,WA,98101 +242486,AAA Batteries (4-pack),1,2.99,2019-08-20 15:05:00,892 Willow St, Los Angeles,CA,90001 +242487,AA Batteries (4-pack),1,3.84,2019-08-15 14:28:00,711 Jackson St, Los Angeles,CA,90001 +242488,Apple Airpods Headphones,1,150.0,2019-08-05 08:59:00,969 2nd St, Boston,MA,02215 +242489,Apple Airpods Headphones,1,150.0,2019-08-23 07:22:00,483 Adams St, Atlanta,GA,30301 +242490,AA Batteries (4-pack),1,3.84,2019-08-22 00:33:00,309 Sunset St, San Francisco,CA,94016 +242491,AA Batteries (4-pack),1,3.84,2019-08-13 14:47:00,542 River St, San Francisco,CA,94016 +242492,Lightning Charging Cable,1,14.95,2019-08-29 04:54:00,665 Adams St, Portland,ME,04101 +242493,Apple Airpods Headphones,1,150.0,2019-08-27 13:37:00,105 7th St, Los Angeles,CA,90001 +242494,Bose SoundSport Headphones,1,99.99,2019-08-23 18:05:00,920 West St, Los Angeles,CA,90001 +242495,Apple Airpods Headphones,1,150.0,2019-08-07 20:48:00,534 Highland St, Atlanta,GA,30301 +242496,AA Batteries (4-pack),1,3.84,2019-08-30 18:55:00,540 South St, San Francisco,CA,94016 +242497,Apple Airpods Headphones,1,150.0,2019-08-14 13:50:00,476 4th St, Seattle,WA,98101 +242498,Bose SoundSport Headphones,1,99.99,2019-08-08 00:10:00,87 South St, Seattle,WA,98101 +242499,AAA Batteries (4-pack),1,2.99,2019-08-11 20:11:00,434 4th St, Los Angeles,CA,90001 +242500,AAA Batteries (4-pack),2,2.99,2019-08-13 16:41:00,227 Wilson St, Portland,OR,97035 +242501,27in 4K Gaming Monitor,1,389.99,2019-08-28 11:25:00,96 Lakeview St, New York City,NY,10001 +242502,20in Monitor,1,109.99,2019-08-27 12:19:00,864 Meadow St, Dallas,TX,75001 +242503,Wired Headphones,1,11.99,2019-08-02 09:50:00,444 Chestnut St, Atlanta,GA,30301 +242504,Lightning Charging Cable,1,14.95,2019-08-16 19:24:00,533 14th St, San Francisco,CA,94016 +242505,Bose SoundSport Headphones,1,99.99,2019-08-02 23:10:00,294 Wilson St, Portland,OR,97035 +242506,27in FHD Monitor,1,149.99,2019-08-25 05:51:00,40 Center St, San Francisco,CA,94016 +242507,AAA Batteries (4-pack),2,2.99,2019-08-20 10:04:00,542 10th St, Atlanta,GA,30301 +242507,USB-C Charging Cable,1,11.95,2019-08-20 10:04:00,542 10th St, Atlanta,GA,30301 +242508,Flatscreen TV,1,300.0,2019-08-21 16:01:00,811 Main St, New York City,NY,10001 +242509,AA Batteries (4-pack),2,3.84,2019-08-25 17:02:00,65 West St, Los Angeles,CA,90001 +242510,AA Batteries (4-pack),1,3.84,2019-08-10 22:42:00,811 2nd St, Dallas,TX,75001 +242511,Wired Headphones,1,11.99,2019-08-16 10:43:00,328 Lake St, San Francisco,CA,94016 +242512,Google Phone,1,600.0,2019-08-15 11:14:00,842 Main St, Austin,TX,73301 +242513,Lightning Charging Cable,1,14.95,2019-08-21 11:53:00,514 Spruce St, Atlanta,GA,30301 +242514,AA Batteries (4-pack),1,3.84,2019-08-19 21:30:00,546 Highland St, Austin,TX,73301 +242515,27in FHD Monitor,1,149.99,2019-08-04 09:33:00,467 Walnut St, San Francisco,CA,94016 +242515,Lightning Charging Cable,1,14.95,2019-08-04 09:33:00,467 Walnut St, San Francisco,CA,94016 +242516,AAA Batteries (4-pack),1,2.99,2019-08-07 17:29:00,37 Hickory St, Austin,TX,73301 +242517,Wired Headphones,1,11.99,2019-08-30 20:32:00,606 11th St, Los Angeles,CA,90001 +242518,Wired Headphones,1,11.99,2019-08-28 12:29:00,483 8th St, Los Angeles,CA,90001 +242519,AA Batteries (4-pack),2,3.84,2019-08-09 22:39:00,852 Jackson St, Los Angeles,CA,90001 +242520,Bose SoundSport Headphones,1,99.99,2019-08-10 11:23:00,840 South St, Austin,TX,73301 +242521,34in Ultrawide Monitor,1,379.99,2019-08-31 15:24:00,426 Walnut St, Los Angeles,CA,90001 +242522,Apple Airpods Headphones,1,150.0,2019-08-30 20:23:00,503 8th St, New York City,NY,10001 +242523,iPhone,1,700.0,2019-08-23 19:03:00,339 4th St, Los Angeles,CA,90001 +242523,Lightning Charging Cable,1,14.95,2019-08-23 19:03:00,339 4th St, Los Angeles,CA,90001 +242524,27in 4K Gaming Monitor,1,389.99,2019-08-02 08:25:00,284 South St, San Francisco,CA,94016 +242525,27in 4K Gaming Monitor,1,389.99,2019-08-19 07:11:00,40 8th St, San Francisco,CA,94016 +242526,AA Batteries (4-pack),1,3.84,2019-08-19 14:32:00,580 6th St, Boston,MA,02215 +242527,Lightning Charging Cable,1,14.95,2019-08-07 16:45:00,727 Willow St, Los Angeles,CA,90001 +242528,USB-C Charging Cable,1,11.95,2019-08-16 14:35:00,395 12th St, Boston,MA,02215 +242529,Macbook Pro Laptop,1,1700.0,2019-08-22 19:25:00,72 Dogwood St, San Francisco,CA,94016 +242530,34in Ultrawide Monitor,1,379.99,2019-08-19 15:36:00,743 River St, Boston,MA,02215 +242531,27in 4K Gaming Monitor,1,389.99,2019-08-24 16:38:00,743 South St, Dallas,TX,75001 +242532,Wired Headphones,1,11.99,2019-08-02 19:03:00,496 Maple St, Austin,TX,73301 +242533,27in FHD Monitor,1,149.99,2019-08-23 16:02:00,35 9th St, Dallas,TX,75001 +242534,AAA Batteries (4-pack),1,2.99,2019-08-11 12:02:00,133 Walnut St, San Francisco,CA,94016 +242535,Bose SoundSport Headphones,1,99.99,2019-08-20 23:17:00,711 Highland St, Seattle,WA,98101 +242536,Wired Headphones,1,11.99,2019-08-17 20:16:00,250 Spruce St, San Francisco,CA,94016 +242537,USB-C Charging Cable,1,11.95,2019-08-02 15:46:00,378 Ridge St, Boston,MA,02215 +242538,Apple Airpods Headphones,1,150.0,2019-08-22 23:06:00,407 Park St, Los Angeles,CA,90001 +242539,Wired Headphones,1,11.99,2019-08-20 12:21:00,893 9th St, New York City,NY,10001 +242540,Lightning Charging Cable,1,14.95,2019-08-02 00:33:00,259 Jefferson St, San Francisco,CA,94016 +242541,27in 4K Gaming Monitor,1,389.99,2019-08-14 15:30:00,662 Johnson St, New York City,NY,10001 +242542,20in Monitor,1,109.99,2019-08-26 16:55:00,779 Elm St, Portland,OR,97035 +242543,Flatscreen TV,1,300.0,2019-08-31 19:16:00,271 Hickory St, San Francisco,CA,94016 +242544,ThinkPad Laptop,1,999.99,2019-08-20 11:58:00,998 Walnut St, San Francisco,CA,94016 +242545,Wired Headphones,1,11.99,2019-08-27 11:02:00,132 14th St, New York City,NY,10001 +242546,Apple Airpods Headphones,1,150.0,2019-08-16 20:36:00,581 Lakeview St, New York City,NY,10001 +242547,Apple Airpods Headphones,1,150.0,2019-08-02 13:52:00,39 Forest St, Boston,MA,02215 +242548,USB-C Charging Cable,1,11.95,2019-08-18 12:35:00,9 Dogwood St, San Francisco,CA,94016 +242549,AAA Batteries (4-pack),1,2.99,2019-08-27 15:55:00,255 Hill St, Los Angeles,CA,90001 +242550,Wired Headphones,1,11.99,2019-08-16 15:13:00,75 Hickory St, Seattle,WA,98101 +242551,USB-C Charging Cable,1,11.95,2019-08-25 08:32:00,430 Johnson St, New York City,NY,10001 +242552,Lightning Charging Cable,1,14.95,2019-08-18 01:27:00,415 Hickory St, Los Angeles,CA,90001 +242553,AA Batteries (4-pack),1,3.84,2019-08-10 06:21:00,265 Hickory St, San Francisco,CA,94016 +242554,Wired Headphones,1,11.99,2019-08-21 16:29:00,35 11th St, Los Angeles,CA,90001 +242555,Google Phone,1,600.0,2019-08-13 08:59:00,573 Johnson St, Boston,MA,02215 +242556,iPhone,1,700.0,2019-08-20 17:13:00,394 Madison St, New York City,NY,10001 +242557,Lightning Charging Cable,1,14.95,2019-08-11 08:30:00,796 Ridge St, New York City,NY,10001 +242558,Wired Headphones,1,11.99,2019-08-02 14:28:00,253 Main St, Portland,OR,97035 +242559,Flatscreen TV,1,300.0,2019-08-14 12:17:00,624 Jackson St, Los Angeles,CA,90001 +242560,Bose SoundSport Headphones,1,99.99,2019-08-23 20:36:00,792 1st St, Portland,OR,97035 +242561,Wired Headphones,1,11.99,2019-08-03 15:04:00,522 14th St, San Francisco,CA,94016 +242562,27in FHD Monitor,1,149.99,2019-08-01 11:13:00,418 Pine St, Boston,MA,02215 +242563,Apple Airpods Headphones,1,150.0,2019-08-21 10:19:00,149 Walnut St, San Francisco,CA,94016 +242564,USB-C Charging Cable,1,11.95,2019-08-21 08:04:00,416 Sunset St, Portland,OR,97035 +242565,AA Batteries (4-pack),1,3.84,2019-08-22 20:12:00,824 Dogwood St, Atlanta,GA,30301 +242566,Lightning Charging Cable,1,14.95,2019-08-17 21:32:00,733 4th St, Dallas,TX,75001 +242567,34in Ultrawide Monitor,1,379.99,2019-08-29 21:38:00,810 10th St, Portland,ME,04101 +242568,Google Phone,1,600.0,2019-08-01 18:29:00,83 Forest St, San Francisco,CA,94016 +242569,Lightning Charging Cable,2,14.95,2019-08-02 12:34:00,494 Cherry St, Seattle,WA,98101 +242570,Vareebadd Phone,1,400.0,2019-08-18 15:23:00,417 Church St, Seattle,WA,98101 +242571,AAA Batteries (4-pack),1,2.99,2019-08-02 20:33:00,493 Walnut St, San Francisco,CA,94016 +242572,AAA Batteries (4-pack),2,2.99,2019-08-22 23:19:00,626 Washington St, Los Angeles,CA,90001 +242573,Lightning Charging Cable,2,14.95,2019-08-20 00:44:00,603 Ridge St, Atlanta,GA,30301 +242574,Lightning Charging Cable,1,14.95,2019-08-19 03:17:00,865 12th St, Atlanta,GA,30301 +242575,20in Monitor,1,109.99,2019-08-20 20:37:00,317 River St, Boston,MA,02215 +242576,Flatscreen TV,1,300.0,2019-08-19 22:15:00,383 Lake St, Portland,ME,04101 +242577,AA Batteries (4-pack),1,3.84,2019-08-04 15:28:00,118 6th St, San Francisco,CA,94016 +242578,USB-C Charging Cable,1,11.95,2019-08-26 20:10:00,638 Church St, San Francisco,CA,94016 +242579,AAA Batteries (4-pack),1,2.99,2019-08-17 13:52:00,503 6th St, Portland,ME,04101 +242580,AA Batteries (4-pack),2,3.84,2019-08-16 11:28:00,407 6th St, San Francisco,CA,94016 +242581,Apple Airpods Headphones,1,150.0,2019-08-19 22:25:00,444 14th St, Austin,TX,73301 +242582,AAA Batteries (4-pack),1,2.99,2019-08-30 13:59:00,228 Church St, Portland,OR,97035 +242583,iPhone,1,700.0,2019-08-01 17:13:00,702 Cherry St, Boston,MA,02215 +242584,AA Batteries (4-pack),1,3.84,2019-08-15 22:03:00,522 7th St, Boston,MA,02215 +242585,Wired Headphones,2,11.99,2019-08-19 16:52:00,185 14th St, Austin,TX,73301 +242586,Wired Headphones,1,11.99,2019-08-28 17:47:00,750 1st St, New York City,NY,10001 +242587,USB-C Charging Cable,1,11.95,2019-08-24 20:01:00,262 12th St, Boston,MA,02215 +242588,Wired Headphones,1,11.99,2019-08-27 07:52:00,393 10th St, Austin,TX,73301 +242589,Lightning Charging Cable,1,14.95,2019-08-02 16:37:00,448 Hill St, New York City,NY,10001 +242590,AA Batteries (4-pack),1,3.84,2019-08-04 09:23:00,808 Sunset St, Austin,TX,73301 +242591,Google Phone,1,600.0,2019-08-17 11:15:00,596 Jackson St, San Francisco,CA,94016 +242592,USB-C Charging Cable,1,11.95,2019-08-06 20:13:00,893 Wilson St, San Francisco,CA,94016 +242593,Google Phone,1,600.0,2019-08-12 21:08:00,827 Jefferson St, San Francisco,CA,94016 +242594,Macbook Pro Laptop,1,1700.0,2019-08-08 15:00:00,242 Jackson St, Seattle,WA,98101 +242595,Bose SoundSport Headphones,1,99.99,2019-08-05 12:07:00,42 Walnut St, Los Angeles,CA,90001 +242596,AA Batteries (4-pack),1,3.84,2019-08-26 13:58:00,112 Jefferson St, Atlanta,GA,30301 +242597,Wired Headphones,1,11.99,2019-08-29 10:49:00,763 Chestnut St, Dallas,TX,75001 +242598,Apple Airpods Headphones,1,150.0,2019-08-06 14:16:00,520 Chestnut St, Boston,MA,02215 +242599,Wired Headphones,1,11.99,2019-08-10 17:43:00,590 Pine St, Portland,ME,04101 +242600,AAA Batteries (4-pack),1,2.99,2019-08-21 08:44:00,871 8th St, Boston,MA,02215 +242601,Bose SoundSport Headphones,1,99.99,2019-08-09 20:25:00,325 9th St, San Francisco,CA,94016 +242602,27in 4K Gaming Monitor,1,389.99,2019-08-13 21:39:00,916 Washington St, San Francisco,CA,94016 +242603,Flatscreen TV,1,300.0,2019-08-18 20:29:00,338 Hill St, Boston,MA,02215 +242604,AA Batteries (4-pack),4,3.84,2019-08-03 15:02:00,42 Center St, New York City,NY,10001 +242605,AA Batteries (4-pack),1,3.84,2019-08-24 11:20:00,590 Park St, Portland,OR,97035 +242606,USB-C Charging Cable,1,11.95,2019-08-24 20:57:00,675 Park St, San Francisco,CA,94016 +242607,AAA Batteries (4-pack),1,2.99,2019-08-04 11:19:00,897 5th St, Boston,MA,02215 +242608,ThinkPad Laptop,1,999.99,2019-08-04 23:10:00,49 2nd St, Los Angeles,CA,90001 +242609,27in 4K Gaming Monitor,1,389.99,2019-08-13 16:10:00,88 4th St, Los Angeles,CA,90001 +242610,20in Monitor,1,109.99,2019-08-14 17:40:00,44 12th St, Seattle,WA,98101 +242611,Lightning Charging Cable,1,14.95,2019-08-30 23:12:00,769 12th St, Seattle,WA,98101 +242612,USB-C Charging Cable,1,11.95,2019-08-04 20:19:00,844 Ridge St, Portland,ME,04101 +242613,Apple Airpods Headphones,1,150.0,2019-08-06 18:22:00,95 West St, Los Angeles,CA,90001 +242614,Google Phone,1,600.0,2019-08-08 13:05:00,912 South St, New York City,NY,10001 +242614,USB-C Charging Cable,1,11.95,2019-08-08 13:05:00,912 South St, New York City,NY,10001 +242615,Bose SoundSport Headphones,1,99.99,2019-08-12 12:28:00,938 10th St, Los Angeles,CA,90001 +242616,Lightning Charging Cable,1,14.95,2019-08-10 11:11:00,846 1st St, Dallas,TX,75001 +242617,USB-C Charging Cable,1,11.95,2019-08-25 12:48:00,575 Meadow St, Los Angeles,CA,90001 +242618,Lightning Charging Cable,1,14.95,2019-08-18 13:18:00,586 River St, Los Angeles,CA,90001 +242619,27in 4K Gaming Monitor,1,389.99,2019-08-10 00:22:00,297 11th St, San Francisco,CA,94016 +242620,27in FHD Monitor,1,149.99,2019-08-27 20:23:00,395 Highland St, Los Angeles,CA,90001 +242621,Macbook Pro Laptop,1,1700.0,2019-08-10 14:56:00,643 Spruce St, Boston,MA,02215 +242622,34in Ultrawide Monitor,1,379.99,2019-08-03 12:25:00,579 Walnut St, Boston,MA,02215 +242623,Wired Headphones,2,11.99,2019-08-30 10:53:00,471 Hill St, New York City,NY,10001 +242624,AAA Batteries (4-pack),1,2.99,2019-08-25 15:57:00,615 West St, New York City,NY,10001 +242625,Bose SoundSport Headphones,1,99.99,2019-08-13 00:25:00,195 Cedar St, San Francisco,CA,94016 +242626,Wired Headphones,3,11.99,2019-08-24 08:58:00,681 Washington St, San Francisco,CA,94016 +242627,27in 4K Gaming Monitor,1,389.99,2019-08-27 18:39:00,820 Meadow St, Atlanta,GA,30301 +242628,Lightning Charging Cable,1,14.95,2019-08-27 20:17:00,135 Spruce St, Seattle,WA,98101 +242629,27in FHD Monitor,1,149.99,2019-08-30 07:18:00,190 14th St, New York City,NY,10001 +242630,27in FHD Monitor,1,149.99,2019-08-23 19:27:00,463 Maple St, Boston,MA,02215 +242631,Bose SoundSport Headphones,1,99.99,2019-08-02 22:31:00,511 Spruce St, Atlanta,GA,30301 +242632,27in FHD Monitor,1,149.99,2019-08-17 22:54:00,796 Cherry St, New York City,NY,10001 +242633,27in 4K Gaming Monitor,1,389.99,2019-08-20 03:44:00,110 11th St, Seattle,WA,98101 +242634,AA Batteries (4-pack),1,3.84,2019-08-10 07:54:00,237 Jefferson St, New York City,NY,10001 +242635,Wired Headphones,1,11.99,2019-08-23 23:34:00,921 Adams St, San Francisco,CA,94016 +242636,27in FHD Monitor,1,149.99,2019-08-07 12:54:00,999 Sunset St, San Francisco,CA,94016 +242637,Apple Airpods Headphones,1,150.0,2019-08-18 18:02:00,414 Lakeview St, San Francisco,CA,94016 +242638,34in Ultrawide Monitor,1,379.99,2019-08-04 12:23:00,144 Washington St, New York City,NY,10001 +242639,Macbook Pro Laptop,1,1700.0,2019-08-16 04:22:00,613 Highland St, Los Angeles,CA,90001 +242640,AAA Batteries (4-pack),1,2.99,2019-08-15 09:57:00,189 11th St, Los Angeles,CA,90001 +242641,USB-C Charging Cable,1,11.95,2019-08-22 11:35:00,931 Cedar St, Los Angeles,CA,90001 +242642,AAA Batteries (4-pack),2,2.99,2019-08-31 20:18:00,512 14th St, Boston,MA,02215 +242643,Lightning Charging Cable,1,14.95,2019-08-28 23:17:00,64 13th St, New York City,NY,10001 +242644,Google Phone,1,600.0,2019-08-31 12:09:00,656 Church St, Portland,OR,97035 +242645,Wired Headphones,1,11.99,2019-08-24 01:00:00,683 Lake St, New York City,NY,10001 +242646,USB-C Charging Cable,1,11.95,2019-08-26 22:35:00,518 West St, Dallas,TX,75001 +242647,Lightning Charging Cable,1,14.95,2019-08-29 12:17:00,678 South St, Los Angeles,CA,90001 +242648,USB-C Charging Cable,1,11.95,2019-08-14 17:11:00,197 Madison St, Boston,MA,02215 +242649,AAA Batteries (4-pack),1,2.99,2019-08-04 17:47:00,315 West St, Portland,OR,97035 +242650,27in 4K Gaming Monitor,1,389.99,2019-08-18 13:17:00,34 Lincoln St, Atlanta,GA,30301 +242651,34in Ultrawide Monitor,1,379.99,2019-08-26 11:28:00,613 Main St, Atlanta,GA,30301 +242652,Google Phone,1,600.0,2019-08-10 21:26:00,805 Jackson St, Atlanta,GA,30301 +242653,Macbook Pro Laptop,1,1700.0,2019-08-01 18:29:00,981 Center St, New York City,NY,10001 +242654,34in Ultrawide Monitor,1,379.99,2019-08-08 20:23:00,433 1st St, San Francisco,CA,94016 +242655,AA Batteries (4-pack),1,3.84,2019-08-21 00:12:00,436 10th St, New York City,NY,10001 +242656,Apple Airpods Headphones,1,150.0,2019-08-29 05:15:00,736 Wilson St, New York City,NY,10001 +242657,AA Batteries (4-pack),4,3.84,2019-08-23 19:18:00,340 Washington St, Portland,OR,97035 +242658,Lightning Charging Cable,1,14.95,2019-08-04 18:57:00,610 8th St, Los Angeles,CA,90001 +242659,AA Batteries (4-pack),2,3.84,2019-08-29 07:38:00,705 Hill St, New York City,NY,10001 +242660,AAA Batteries (4-pack),1,2.99,2019-08-18 17:27:00,136 Pine St, Los Angeles,CA,90001 +242661,AA Batteries (4-pack),2,3.84,2019-08-10 10:50:00,80 West St, San Francisco,CA,94016 +242662,27in FHD Monitor,1,149.99,2019-08-30 20:49:00,95 10th St, San Francisco,CA,94016 +242663,27in 4K Gaming Monitor,1,389.99,2019-08-29 15:25:00,534 Chestnut St, San Francisco,CA,94016 +242664,USB-C Charging Cable,1,11.95,2019-08-25 17:04:00,966 10th St, New York City,NY,10001 +242665,Bose SoundSport Headphones,1,99.99,2019-08-10 14:38:00,953 Ridge St, San Francisco,CA,94016 +242666,AAA Batteries (4-pack),1,2.99,2019-08-11 19:00:00,848 Adams St, San Francisco,CA,94016 +242667,Apple Airpods Headphones,1,150.0,2019-08-20 21:50:00,994 Dogwood St, Dallas,TX,75001 +242668,Wired Headphones,1,11.99,2019-08-16 21:07:00,517 Madison St, Los Angeles,CA,90001 +242669,Google Phone,1,600.0,2019-08-11 15:52:00,453 Forest St, San Francisco,CA,94016 +242670,Google Phone,1,600.0,2019-08-13 10:52:00,10 Hill St, Dallas,TX,75001 +242671,AAA Batteries (4-pack),4,2.99,2019-08-09 21:00:00,104 Sunset St, San Francisco,CA,94016 +242672,20in Monitor,1,109.99,2019-08-11 20:05:00,61 River St, San Francisco,CA,94016 +242673,Lightning Charging Cable,1,14.95,2019-08-09 19:37:00,853 5th St, San Francisco,CA,94016 +242674,Lightning Charging Cable,1,14.95,2019-08-15 15:30:00,327 12th St, San Francisco,CA,94016 +242675,27in FHD Monitor,1,149.99,2019-08-01 16:28:00,138 Main St, San Francisco,CA,94016 +242676,AAA Batteries (4-pack),1,2.99,2019-08-25 18:58:00,45 North St, Dallas,TX,75001 +242677,27in FHD Monitor,1,149.99,2019-08-27 13:12:00,409 River St, Austin,TX,73301 +242678,Lightning Charging Cable,1,14.95,2019-08-31 08:45:00,994 Dogwood St, Austin,TX,73301 +242679,Apple Airpods Headphones,1,150.0,2019-08-22 10:03:00,296 Lakeview St, Seattle,WA,98101 +242680,AA Batteries (4-pack),2,3.84,2019-08-25 07:36:00,677 5th St, San Francisco,CA,94016 +242681,AA Batteries (4-pack),1,3.84,2019-08-20 13:50:00,778 Willow St, Los Angeles,CA,90001 +242682,Bose SoundSport Headphones,1,99.99,2019-08-04 17:46:00,702 Forest St, Los Angeles,CA,90001 +242683,Lightning Charging Cable,1,14.95,2019-08-12 19:46:00,715 13th St, San Francisco,CA,94016 +242684,27in FHD Monitor,1,149.99,2019-08-29 23:17:00,606 6th St, San Francisco,CA,94016 +242685,34in Ultrawide Monitor,1,379.99,2019-08-14 15:24:00,343 10th St, Dallas,TX,75001 +242686,Lightning Charging Cable,1,14.95,2019-08-12 11:17:00,662 River St, San Francisco,CA,94016 +242687,Bose SoundSport Headphones,1,99.99,2019-08-08 13:06:00,889 Highland St, Boston,MA,02215 +242688,USB-C Charging Cable,1,11.95,2019-08-19 15:22:00,406 7th St, Boston,MA,02215 +242689,Lightning Charging Cable,1,14.95,2019-08-26 21:28:00,562 Highland St, Los Angeles,CA,90001 +242690,AA Batteries (4-pack),1,3.84,2019-08-13 21:35:00,354 8th St, New York City,NY,10001 +242691,Lightning Charging Cable,1,14.95,2019-08-06 16:24:00,665 6th St, New York City,NY,10001 +242692,27in 4K Gaming Monitor,1,389.99,2019-08-13 06:13:00,299 5th St, San Francisco,CA,94016 +242693,AA Batteries (4-pack),1,3.84,2019-08-06 09:57:00,566 Jackson St, Atlanta,GA,30301 +242694,AA Batteries (4-pack),3,3.84,2019-08-03 10:39:00,866 Church St, San Francisco,CA,94016 +242695,Bose SoundSport Headphones,1,99.99,2019-08-11 18:05:00,935 Ridge St, Dallas,TX,75001 +242696,USB-C Charging Cable,1,11.95,2019-08-19 17:23:00,199 Hickory St, New York City,NY,10001 +242697,Wired Headphones,1,11.99,2019-08-02 11:46:00,278 Madison St, Atlanta,GA,30301 +242698,AA Batteries (4-pack),1,3.84,2019-08-31 12:09:00,37 6th St, Austin,TX,73301 +242699,Lightning Charging Cable,2,14.95,2019-08-03 18:45:00,143 Meadow St, Austin,TX,73301 +242700,Lightning Charging Cable,1,14.95,2019-08-03 16:58:00,38 Cherry St, Seattle,WA,98101 +242700,LG Dryer,1,600.0,2019-08-03 16:58:00,38 Cherry St, Seattle,WA,98101 +242701,USB-C Charging Cable,1,11.95,2019-08-22 19:37:00,28 Elm St, San Francisco,CA,94016 +242702,USB-C Charging Cable,1,11.95,2019-08-13 08:29:00,333 Park St, Los Angeles,CA,90001 +242703,AAA Batteries (4-pack),2,2.99,2019-08-03 11:17:00,398 Jefferson St, San Francisco,CA,94016 +242704,iPhone,1,700.0,2019-08-15 17:21:00,541 Cedar St, San Francisco,CA,94016 +242705,AA Batteries (4-pack),1,3.84,2019-08-08 12:27:00,980 Maple St, San Francisco,CA,94016 +242706,AAA Batteries (4-pack),1,2.99,2019-08-23 14:42:00,809 Ridge St, Dallas,TX,75001 +242707,USB-C Charging Cable,1,11.95,2019-08-22 06:27:00,361 Dogwood St, San Francisco,CA,94016 +242708,ThinkPad Laptop,1,999.99,2019-08-11 14:54:00,979 Johnson St, Portland,OR,97035 +242709,ThinkPad Laptop,1,999.99,2019-08-13 17:23:00,648 8th St, New York City,NY,10001 +242710,Apple Airpods Headphones,1,150.0,2019-08-07 21:26:00,500 Cherry St, Portland,OR,97035 +242711,27in 4K Gaming Monitor,1,389.99,2019-08-24 18:25:00,232 South St, San Francisco,CA,94016 +242712,USB-C Charging Cable,1,11.95,2019-08-17 16:45:00,839 Jackson St, Dallas,TX,75001 +242713,iPhone,1,700.0,2019-08-02 14:11:00,771 Pine St, New York City,NY,10001 +242714,Bose SoundSport Headphones,1,99.99,2019-08-07 23:17:00,940 Spruce St, San Francisco,CA,94016 +242715,34in Ultrawide Monitor,1,379.99,2019-08-10 08:10:00,201 Jackson St, Boston,MA,02215 +242716,Wired Headphones,1,11.99,2019-08-11 22:57:00,630 Chestnut St, San Francisco,CA,94016 +242717,iPhone,1,700.0,2019-08-18 10:52:00,971 Walnut St, San Francisco,CA,94016 +242717,Lightning Charging Cable,1,14.95,2019-08-18 10:52:00,971 Walnut St, San Francisco,CA,94016 +242718,Flatscreen TV,1,300.0,2019-08-21 18:20:00,599 2nd St, San Francisco,CA,94016 +242719,Bose SoundSport Headphones,1,99.99,2019-08-10 15:12:00,506 Madison St, Seattle,WA,98101 +242720,AAA Batteries (4-pack),1,2.99,2019-08-24 19:21:00,396 River St, San Francisco,CA,94016 +242721,27in 4K Gaming Monitor,1,389.99,2019-08-27 23:22:00,691 Forest St, Atlanta,GA,30301 +242722,AAA Batteries (4-pack),2,2.99,2019-08-18 22:50:00,678 13th St, Seattle,WA,98101 +242723,Apple Airpods Headphones,1,150.0,2019-08-27 20:41:00,418 Center St, San Francisco,CA,94016 +242724,20in Monitor,1,109.99,2019-08-07 17:06:00,729 Park St, New York City,NY,10001 +242725,USB-C Charging Cable,1,11.95,2019-08-25 17:41:00,832 6th St, Los Angeles,CA,90001 +242726,Google Phone,1,600.0,2019-08-25 01:04:00,906 Sunset St, San Francisco,CA,94016 +242726,Bose SoundSport Headphones,1,99.99,2019-08-25 01:04:00,906 Sunset St, San Francisco,CA,94016 +242727,USB-C Charging Cable,1,11.95,2019-08-15 20:44:00,828 Ridge St, San Francisco,CA,94016 +242728,Apple Airpods Headphones,1,150.0,2019-08-29 10:14:00,899 Pine St, Atlanta,GA,30301 +242729,Lightning Charging Cable,1,14.95,2019-08-13 18:24:00,303 Elm St, San Francisco,CA,94016 +242730,AA Batteries (4-pack),1,3.84,2019-08-28 16:18:00,968 12th St, Atlanta,GA,30301 +242731,USB-C Charging Cable,1,11.95,2019-08-05 17:20:00,47 Hickory St, Seattle,WA,98101 +242732,AA Batteries (4-pack),1,3.84,2019-08-13 01:40:00,90 4th St, Los Angeles,CA,90001 +242733,Apple Airpods Headphones,1,150.0,2019-08-02 09:56:00,817 4th St, Austin,TX,73301 +242734,AAA Batteries (4-pack),1,2.99,2019-08-05 08:35:00,191 9th St, Boston,MA,02215 +242735,Wired Headphones,1,11.99,2019-08-07 23:17:00,413 Hickory St, New York City,NY,10001 +242736,20in Monitor,1,109.99,2019-08-28 15:26:00,192 Elm St, San Francisco,CA,94016 +242737,27in FHD Monitor,1,149.99,2019-08-28 12:18:00,11 Lake St, San Francisco,CA,94016 +242738,USB-C Charging Cable,1,11.95,2019-08-20 11:47:00,988 Lake St, New York City,NY,10001 +242739,Apple Airpods Headphones,1,150.0,2019-08-22 01:41:00,962 Meadow St, Boston,MA,02215 +242740,Bose SoundSport Headphones,1,99.99,2019-08-15 11:14:00,762 River St, Dallas,TX,75001 +242741,Wired Headphones,1,11.99,2019-08-23 11:20:00,46 Washington St, San Francisco,CA,94016 +242742,Apple Airpods Headphones,1,150.0,2019-08-16 03:24:00,955 Madison St, Portland,ME,04101 +242743,Wired Headphones,1,11.99,2019-08-18 16:08:00,419 Elm St, New York City,NY,10001 +242744,iPhone,1,700.0,2019-08-14 01:02:00,618 South St, Dallas,TX,75001 +242745,Bose SoundSport Headphones,1,99.99,2019-08-05 00:29:00,657 Maple St, San Francisco,CA,94016 +242746,Lightning Charging Cable,1,14.95,2019-08-01 10:21:00,348 Jefferson St, New York City,NY,10001 +242747,USB-C Charging Cable,1,11.95,2019-08-20 20:56:00,520 Meadow St, San Francisco,CA,94016 +242748,AA Batteries (4-pack),1,3.84,2019-08-03 16:03:00,363 Cherry St, Dallas,TX,75001 +242749,AAA Batteries (4-pack),1,2.99,2019-08-26 09:07:00,15 Cedar St, Boston,MA,02215 +242750,iPhone,1,700.0,2019-08-13 21:31:00,653 Meadow St, Seattle,WA,98101 +242751,20in Monitor,1,109.99,2019-08-20 12:56:00,820 Pine St, Austin,TX,73301 +242752,Apple Airpods Headphones,1,150.0,2019-08-06 19:54:00,41 Elm St, Los Angeles,CA,90001 +242753,AA Batteries (4-pack),2,3.84,2019-08-12 19:03:00,982 Forest St, San Francisco,CA,94016 +242754,ThinkPad Laptop,1,999.99,2019-08-02 14:21:00,366 Sunset St, Seattle,WA,98101 +242755,AA Batteries (4-pack),1,3.84,2019-08-17 09:37:00,215 Sunset St, Atlanta,GA,30301 +242756,Wired Headphones,1,11.99,2019-08-24 21:13:00,683 Forest St, Boston,MA,02215 +242757,Wired Headphones,1,11.99,2019-08-18 18:21:00,749 1st St, Dallas,TX,75001 +242758,ThinkPad Laptop,1,999.99,2019-08-25 13:20:00,579 Lakeview St, San Francisco,CA,94016 +242759,Apple Airpods Headphones,1,150.0,2019-08-21 13:51:00,773 11th St, Atlanta,GA,30301 +242760,AA Batteries (4-pack),2,3.84,2019-08-10 11:22:00,888 Spruce St, San Francisco,CA,94016 +242761,AAA Batteries (4-pack),1,2.99,2019-08-14 11:20:00,150 Hill St, San Francisco,CA,94016 +242762,ThinkPad Laptop,1,999.99,2019-08-17 11:54:00,446 Pine St, Seattle,WA,98101 +242763,AAA Batteries (4-pack),1,2.99,2019-08-06 12:39:00,598 Dogwood St, Seattle,WA,98101 +242764,Flatscreen TV,1,300.0,2019-08-18 19:51:00,940 Walnut St, Dallas,TX,75001 +242765,Bose SoundSport Headphones,1,99.99,2019-08-06 22:08:00,409 Sunset St, San Francisco,CA,94016 +242766,USB-C Charging Cable,1,11.95,2019-08-15 04:56:00,534 10th St, San Francisco,CA,94016 +242767,Wired Headphones,1,11.99,2019-08-05 09:51:00,92 8th St, Los Angeles,CA,90001 +242768,AA Batteries (4-pack),1,3.84,2019-08-03 14:36:00,91 Cherry St, San Francisco,CA,94016 +242768,Bose SoundSport Headphones,1,99.99,2019-08-03 14:36:00,91 Cherry St, San Francisco,CA,94016 +242769,Lightning Charging Cable,1,14.95,2019-08-08 14:44:00,24 Adams St, San Francisco,CA,94016 +242770,ThinkPad Laptop,1,999.99,2019-08-18 06:47:00,301 Ridge St, Portland,ME,04101 +242771,USB-C Charging Cable,1,11.95,2019-08-04 22:06:00,802 Hill St, San Francisco,CA,94016 +242772,34in Ultrawide Monitor,1,379.99,2019-08-07 08:03:00,426 Dogwood St, Seattle,WA,98101 +242773,Wired Headphones,1,11.99,2019-08-20 12:04:00,266 Maple St, Atlanta,GA,30301 +242774,20in Monitor,1,109.99,2019-08-28 17:08:00,661 Jackson St, Dallas,TX,75001 +242774,Wired Headphones,1,11.99,2019-08-28 17:08:00,661 Jackson St, Dallas,TX,75001 +242775,AAA Batteries (4-pack),3,2.99,2019-08-23 11:35:00,85 Cedar St, Boston,MA,02215 +242776,ThinkPad Laptop,1,999.99,2019-08-06 20:54:00,965 Ridge St, Seattle,WA,98101 +242777,USB-C Charging Cable,1,11.95,2019-08-14 19:44:00,65 Elm St, Atlanta,GA,30301 +242778,Wired Headphones,1,11.99,2019-08-04 19:31:00,618 Church St, Austin,TX,73301 +242779,Wired Headphones,1,11.99,2019-08-11 18:51:00,621 Dogwood St, Los Angeles,CA,90001 +242780,Flatscreen TV,1,300.0,2019-08-09 21:05:00,284 West St, Boston,MA,02215 +242781,34in Ultrawide Monitor,1,379.99,2019-08-19 19:30:00,587 Church St, Los Angeles,CA,90001 +242782,Macbook Pro Laptop,1,1700.0,2019-08-27 21:43:00,732 Madison St, Boston,MA,02215 +242783,AAA Batteries (4-pack),1,2.99,2019-08-28 10:02:00,864 Elm St, Los Angeles,CA,90001 +242784,Apple Airpods Headphones,1,150.0,2019-08-08 19:38:00,583 Hill St, Portland,OR,97035 +242785,Apple Airpods Headphones,1,150.0,2019-08-28 22:58:00,283 Center St, Austin,TX,73301 +242785,USB-C Charging Cable,1,11.95,2019-08-28 22:58:00,283 Center St, Austin,TX,73301 +242786,Apple Airpods Headphones,1,150.0,2019-08-14 20:25:00,384 Willow St, San Francisco,CA,94016 +242787,AA Batteries (4-pack),1,3.84,2019-08-16 19:54:00,838 Adams St, San Francisco,CA,94016 +242788,Lightning Charging Cable,1,14.95,2019-08-15 07:43:00,336 Park St, Seattle,WA,98101 +242789,USB-C Charging Cable,1,11.95,2019-08-01 11:29:00,694 Johnson St, Los Angeles,CA,90001 +242790,27in FHD Monitor,1,149.99,2019-08-08 21:24:00,368 Center St, Boston,MA,02215 +242791,iPhone,1,700.0,2019-08-16 09:53:00,939 2nd St, Atlanta,GA,30301 +242792,AAA Batteries (4-pack),1,2.99,2019-08-22 14:24:00,357 North St, Dallas,TX,75001 +242792,ThinkPad Laptop,1,999.99,2019-08-22 14:24:00,357 North St, Dallas,TX,75001 +242793,Wired Headphones,1,11.99,2019-08-19 09:52:00,88 Lake St, Boston,MA,02215 +242794,Vareebadd Phone,1,400.0,2019-08-19 08:33:00,489 North St, San Francisco,CA,94016 +242795,AA Batteries (4-pack),1,3.84,2019-08-26 12:24:00,507 West St, Seattle,WA,98101 +242795,Lightning Charging Cable,1,14.95,2019-08-26 12:24:00,507 West St, Seattle,WA,98101 +242796,Apple Airpods Headphones,1,150.0,2019-08-21 18:31:00,607 Hill St, Los Angeles,CA,90001 +242796,34in Ultrawide Monitor,1,379.99,2019-08-21 18:31:00,607 Hill St, Los Angeles,CA,90001 +242797,AA Batteries (4-pack),1,3.84,2019-08-27 21:22:00,76 Forest St, Portland,OR,97035 +242798,iPhone,1,700.0,2019-08-01 20:59:00,468 Hickory St, Atlanta,GA,30301 +242799,Apple Airpods Headphones,1,150.0,2019-08-12 17:11:00,625 Chestnut St, Portland,ME,04101 +242800,Lightning Charging Cable,1,14.95,2019-08-23 11:07:00,641 14th St, Dallas,TX,75001 +242801,AA Batteries (4-pack),1,3.84,2019-08-11 21:03:00,270 Lincoln St, Seattle,WA,98101 +242802,AA Batteries (4-pack),2,3.84,2019-08-19 13:50:00,496 Forest St, San Francisco,CA,94016 +242803,AAA Batteries (4-pack),5,2.99,2019-08-01 18:30:00,668 Maple St, Seattle,WA,98101 +242804,AAA Batteries (4-pack),2,2.99,2019-08-25 22:38:00,802 Johnson St, San Francisco,CA,94016 +242805,AAA Batteries (4-pack),2,2.99,2019-08-05 22:37:00,174 Dogwood St, Los Angeles,CA,90001 +242806,Wired Headphones,1,11.99,2019-08-27 12:10:00,68 Jackson St, San Francisco,CA,94016 +242807,Lightning Charging Cable,1,14.95,2019-08-25 10:25:00,549 South St, Boston,MA,02215 +242808,AA Batteries (4-pack),3,3.84,2019-08-02 17:39:00,465 4th St, San Francisco,CA,94016 +242809,Wired Headphones,1,11.99,2019-08-26 02:09:00,496 5th St, Los Angeles,CA,90001 +242810,USB-C Charging Cable,1,11.95,2019-08-13 12:43:00,65 South St, Boston,MA,02215 +242811,iPhone,1,700.0,2019-08-06 00:27:00,717 5th St, Austin,TX,73301 +242811,Lightning Charging Cable,1,14.95,2019-08-06 00:27:00,717 5th St, Austin,TX,73301 +242812,USB-C Charging Cable,1,11.95,2019-08-25 20:45:00,482 14th St, Portland,ME,04101 +242813,ThinkPad Laptop,1,999.99,2019-08-19 14:28:00,194 Cherry St, San Francisco,CA,94016 +242814,27in FHD Monitor,1,149.99,2019-08-22 15:30:00,925 Park St, Boston,MA,02215 +242815,Bose SoundSport Headphones,1,99.99,2019-08-19 22:48:00,30 10th St, San Francisco,CA,94016 +242816,Flatscreen TV,1,300.0,2019-08-15 21:58:00,186 Cherry St, Los Angeles,CA,90001 +242817,Wired Headphones,1,11.99,2019-08-21 09:43:00,706 8th St, Portland,OR,97035 +242818,27in 4K Gaming Monitor,1,389.99,2019-08-02 20:07:00,113 Dogwood St, Los Angeles,CA,90001 +242819,Flatscreen TV,1,300.0,2019-08-19 19:19:00,269 4th St, San Francisco,CA,94016 +242820,AAA Batteries (4-pack),1,2.99,2019-08-29 16:58:00,940 11th St, Dallas,TX,75001 +242821,USB-C Charging Cable,1,11.95,2019-08-25 19:16:00,12 Church St, New York City,NY,10001 +242822,27in FHD Monitor,1,149.99,2019-08-26 19:24:00,936 14th St, New York City,NY,10001 +242823,USB-C Charging Cable,1,11.95,2019-08-15 04:15:00,654 Dogwood St, Dallas,TX,75001 +242824,Apple Airpods Headphones,1,150.0,2019-08-05 09:27:00,551 Meadow St, Dallas,TX,75001 +242825,Wired Headphones,1,11.99,2019-08-02 16:03:00,169 Meadow St, Austin,TX,73301 +242826,AA Batteries (4-pack),1,3.84,2019-08-26 17:57:00,282 Willow St, Seattle,WA,98101 +242827,Apple Airpods Headphones,1,150.0,2019-08-01 19:38:00,474 Jackson St, San Francisco,CA,94016 +242828,27in 4K Gaming Monitor,1,389.99,2019-08-13 17:18:00,650 South St, New York City,NY,10001 +242829,AAA Batteries (4-pack),1,2.99,2019-08-24 13:59:00,320 12th St, Seattle,WA,98101 +242830,AA Batteries (4-pack),2,3.84,2019-08-29 23:30:00,993 8th St, San Francisco,CA,94016 +242831,27in 4K Gaming Monitor,1,389.99,2019-08-13 10:25:00,835 Jackson St, Boston,MA,02215 +242832,AA Batteries (4-pack),1,3.84,2019-08-15 18:55:00,347 Elm St, Dallas,TX,75001 +242833,AAA Batteries (4-pack),2,2.99,2019-08-31 13:50:00,805 Madison St, San Francisco,CA,94016 +242834,AA Batteries (4-pack),1,3.84,2019-08-25 13:21:00,403 7th St, New York City,NY,10001 +242835,Bose SoundSport Headphones,1,99.99,2019-08-21 00:08:00,87 13th St, Atlanta,GA,30301 +242836,Apple Airpods Headphones,1,150.0,2019-08-24 11:24:00,602 Maple St, New York City,NY,10001 +242837,Apple Airpods Headphones,1,150.0,2019-08-15 10:45:00,758 Highland St, San Francisco,CA,94016 +242838,Macbook Pro Laptop,1,1700.0,2019-08-06 07:45:00,388 Lakeview St, Dallas,TX,75001 +242839,27in FHD Monitor,1,149.99,2019-08-31 17:57:00,575 Dogwood St, Los Angeles,CA,90001 +242840,Wired Headphones,1,11.99,2019-08-19 12:49:00,273 Jackson St, Los Angeles,CA,90001 +242841,Google Phone,1,600.0,2019-08-03 13:49:00,548 7th St, Los Angeles,CA,90001 +242842,iPhone,1,700.0,2019-08-30 20:15:00,720 Forest St, New York City,NY,10001 +242843,34in Ultrawide Monitor,1,379.99,2019-08-22 21:56:00,238 Elm St, Portland,OR,97035 +242844,Lightning Charging Cable,1,14.95,2019-08-03 14:36:00,270 Lincoln St, Los Angeles,CA,90001 +242845,AA Batteries (4-pack),1,3.84,2019-08-13 21:08:00,748 Adams St, New York City,NY,10001 +242846,Lightning Charging Cable,1,14.95,2019-08-22 09:06:00,734 5th St, San Francisco,CA,94016 +242847,AA Batteries (4-pack),1,3.84,2019-08-11 20:21:00,276 Highland St, New York City,NY,10001 +242848,ThinkPad Laptop,1,999.99,2019-08-19 17:49:00,825 Maple St, New York City,NY,10001 +242849,AAA Batteries (4-pack),2,2.99,2019-08-13 10:05:00,35 2nd St, Los Angeles,CA,90001 +242850,Wired Headphones,1,11.99,2019-08-11 18:22:00,87 Highland St, Dallas,TX,75001 +242851,Lightning Charging Cable,1,14.95,2019-08-01 09:41:00,874 River St, Atlanta,GA,30301 +242852,Macbook Pro Laptop,1,1700.0,2019-08-10 21:16:00,264 Spruce St, Austin,TX,73301 +242853,AAA Batteries (4-pack),1,2.99,2019-08-23 10:17:00,570 Jefferson St, Los Angeles,CA,90001 +242854,USB-C Charging Cable,1,11.95,2019-08-31 15:23:00,473 Church St, San Francisco,CA,94016 +242855,Apple Airpods Headphones,1,150.0,2019-08-04 11:18:00,60 Cedar St, San Francisco,CA,94016 +242856,Apple Airpods Headphones,1,150.0,2019-08-01 23:10:00,659 7th St, Boston,MA,02215 +242857,AA Batteries (4-pack),3,3.84,2019-08-04 10:01:00,177 7th St, Seattle,WA,98101 +242858,USB-C Charging Cable,1,11.95,2019-08-14 17:54:00,709 10th St, New York City,NY,10001 +242859,27in 4K Gaming Monitor,1,389.99,2019-08-01 04:50:00,980 Dogwood St, San Francisco,CA,94016 +242860,20in Monitor,1,109.99,2019-08-21 11:11:00,683 Sunset St, San Francisco,CA,94016 +242861,Bose SoundSport Headphones,1,99.99,2019-08-13 21:11:00,30 Cedar St, Boston,MA,02215 +242862,USB-C Charging Cable,1,11.95,2019-08-22 22:56:00,936 Cedar St, Austin,TX,73301 +242863,Flatscreen TV,1,300.0,2019-08-03 09:31:00,247 Dogwood St, Boston,MA,02215 +242864,Flatscreen TV,1,300.0,2019-08-06 12:30:00,678 12th St, Los Angeles,CA,90001 +242865,27in FHD Monitor,1,149.99,2019-09-01 01:28:00,678 Washington St, San Francisco,CA,94016 +242866,Wired Headphones,1,11.99,2019-08-27 20:53:00,242 Walnut St, Los Angeles,CA,90001 +242867,Lightning Charging Cable,1,14.95,2019-08-29 09:18:00,911 Dogwood St, Los Angeles,CA,90001 +242868,27in FHD Monitor,1,149.99,2019-08-13 08:47:00,486 River St, San Francisco,CA,94016 +242869,AAA Batteries (4-pack),1,2.99,2019-08-31 13:19:00,390 Chestnut St, New York City,NY,10001 +242870,ThinkPad Laptop,1,999.99,2019-08-05 06:24:00,777 South St, Portland,OR,97035 +242871,Flatscreen TV,1,300.0,2019-08-27 18:23:00,996 Madison St, Dallas,TX,75001 +242872,Bose SoundSport Headphones,1,99.99,2019-08-05 10:47:00,795 13th St, San Francisco,CA,94016 +242873,AA Batteries (4-pack),1,3.84,2019-08-10 07:48:00,9 Center St, Los Angeles,CA,90001 +242874,Apple Airpods Headphones,1,150.0,2019-08-17 21:49:00,85 Church St, San Francisco,CA,94016 +242875,Google Phone,1,600.0,2019-08-11 18:47:00,432 6th St, New York City,NY,10001 +242875,Bose SoundSport Headphones,1,99.99,2019-08-11 18:47:00,432 6th St, New York City,NY,10001 +242876,iPhone,1,700.0,2019-08-20 09:01:00,548 Walnut St, Dallas,TX,75001 +242877,Lightning Charging Cable,1,14.95,2019-08-12 14:45:00,294 8th St, Los Angeles,CA,90001 +242878,iPhone,1,700.0,2019-08-05 16:05:00,312 Pine St, Boston,MA,02215 +242879,Lightning Charging Cable,1,14.95,2019-08-11 09:10:00,804 Willow St, Boston,MA,02215 +242880,Lightning Charging Cable,1,14.95,2019-08-06 21:27:00,827 12th St, Seattle,WA,98101 +242881,Bose SoundSport Headphones,1,99.99,2019-08-18 12:51:00,535 5th St, San Francisco,CA,94016 +242881,AAA Batteries (4-pack),1,2.99,2019-08-18 12:51:00,535 5th St, San Francisco,CA,94016 +242882,USB-C Charging Cable,1,11.95,2019-08-25 14:32:00,621 West St, Boston,MA,02215 +242883,Lightning Charging Cable,1,14.95,2019-08-26 22:14:00,412 1st St, Portland,OR,97035 +242884,Lightning Charging Cable,1,14.95,2019-08-31 11:17:00,253 Dogwood St, Dallas,TX,75001 +242885,Macbook Pro Laptop,1,1700.0,2019-08-09 22:08:00,273 North St, Seattle,WA,98101 +242886,27in 4K Gaming Monitor,1,389.99,2019-08-04 15:59:00,295 Forest St, Portland,ME,04101 +242887,27in 4K Gaming Monitor,1,389.99,2019-08-20 17:22:00,199 Madison St, Los Angeles,CA,90001 +242888,AAA Batteries (4-pack),5,2.99,2019-08-28 13:04:00,637 12th St, Dallas,TX,75001 +242889,Macbook Pro Laptop,1,1700.0,2019-08-14 16:42:00,711 Johnson St, Seattle,WA,98101 +242890,Apple Airpods Headphones,1,150.0,2019-08-25 16:03:00,126 Meadow St, San Francisco,CA,94016 +242891,34in Ultrawide Monitor,1,379.99,2019-08-20 14:38:00,959 North St, Los Angeles,CA,90001 +242892,Bose SoundSport Headphones,1,99.99,2019-08-21 18:35:00,809 Madison St, New York City,NY,10001 +242893,iPhone,1,700.0,2019-08-31 12:23:00,330 5th St, Seattle,WA,98101 +242893,Apple Airpods Headphones,1,150.0,2019-08-31 12:23:00,330 5th St, Seattle,WA,98101 +242894,Lightning Charging Cable,1,14.95,2019-08-29 18:35:00,698 Cedar St, San Francisco,CA,94016 +242895,Lightning Charging Cable,1,14.95,2019-08-12 19:24:00,922 7th St, Boston,MA,02215 +242896,27in FHD Monitor,1,149.99,2019-08-16 11:04:00,576 Lincoln St, Seattle,WA,98101 +242897,Wired Headphones,1,11.99,2019-08-18 18:47:00,970 Cedar St, San Francisco,CA,94016 +242898,iPhone,1,700.0,2019-08-11 08:50:00,619 Maple St, Atlanta,GA,30301 +242898,Wired Headphones,1,11.99,2019-08-11 08:50:00,619 Maple St, Atlanta,GA,30301 +242899,Wired Headphones,1,11.99,2019-08-21 22:47:00,367 Elm St, Los Angeles,CA,90001 +242900,USB-C Charging Cable,1,11.95,2019-08-22 16:20:00,709 10th St, New York City,NY,10001 +242901,Wired Headphones,1,11.99,2019-08-08 11:46:00,499 Church St, Seattle,WA,98101 +242902,27in FHD Monitor,1,149.99,2019-08-25 18:37:00,485 Cherry St, Austin,TX,73301 +242903,AAA Batteries (4-pack),2,2.99,2019-08-18 09:59:00,291 Forest St, Portland,OR,97035 +242904,Apple Airpods Headphones,1,150.0,2019-08-18 22:14:00,470 Cedar St, Dallas,TX,75001 +242905,Bose SoundSport Headphones,1,99.99,2019-08-19 06:31:00,118 Cedar St, Boston,MA,02215 +242906,USB-C Charging Cable,1,11.95,2019-08-11 17:26:00,250 South St, Los Angeles,CA,90001 +242907,USB-C Charging Cable,1,11.95,2019-08-22 08:45:00,799 9th St, New York City,NY,10001 +242908,27in 4K Gaming Monitor,1,389.99,2019-08-18 22:57:00,737 8th St, Dallas,TX,75001 +242909,Bose SoundSport Headphones,1,99.99,2019-08-20 15:01:00,277 Cherry St, San Francisco,CA,94016 +242910,Google Phone,1,600.0,2019-08-31 08:29:00,355 Spruce St, Los Angeles,CA,90001 +242911,Apple Airpods Headphones,1,150.0,2019-08-25 01:39:00,50 Main St, Los Angeles,CA,90001 +242912,AA Batteries (4-pack),1,3.84,2019-08-23 20:29:00,12 Wilson St, San Francisco,CA,94016 +242913,USB-C Charging Cable,1,11.95,2019-08-07 14:56:00,581 Hill St, Boston,MA,02215 +242914,USB-C Charging Cable,1,11.95,2019-08-26 13:15:00,713 Cherry St, Portland,OR,97035 +242915,Lightning Charging Cable,1,14.95,2019-08-09 06:10:00,533 Jackson St, San Francisco,CA,94016 +242916,34in Ultrawide Monitor,1,379.99,2019-08-23 10:59:00,269 2nd St, Atlanta,GA,30301 +242917,Lightning Charging Cable,1,14.95,2019-08-29 11:38:00,872 Highland St, Seattle,WA,98101 +242918,Lightning Charging Cable,1,14.95,2019-08-30 14:23:00,861 Dogwood St, Los Angeles,CA,90001 +242919,Bose SoundSport Headphones,1,99.99,2019-08-05 11:23:00,256 Adams St, Austin,TX,73301 +242920,27in 4K Gaming Monitor,1,389.99,2019-08-23 14:07:00,2 Hill St, New York City,NY,10001 +242921,ThinkPad Laptop,1,999.99,2019-08-08 11:58:00,540 Church St, San Francisco,CA,94016 +242922,AA Batteries (4-pack),1,3.84,2019-08-08 19:53:00,719 13th St, San Francisco,CA,94016 +242923,Apple Airpods Headphones,1,150.0,2019-08-01 14:33:00,596 Pine St, Los Angeles,CA,90001 +242924,Wired Headphones,1,11.99,2019-08-09 13:08:00,921 Hill St, New York City,NY,10001 +242925,27in FHD Monitor,1,149.99,2019-08-10 23:04:00,211 6th St, Boston,MA,02215 +242926,USB-C Charging Cable,1,11.95,2019-08-07 20:55:00,848 Chestnut St, Seattle,WA,98101 +242927,27in FHD Monitor,1,149.99,2019-08-19 15:54:00,721 Sunset St, Atlanta,GA,30301 +242928,Apple Airpods Headphones,1,150.0,2019-08-19 01:00:00,21 Highland St, Dallas,TX,75001 +242929,USB-C Charging Cable,1,11.95,2019-08-05 10:08:00,72 Jefferson St, New York City,NY,10001 +242930,Lightning Charging Cable,1,14.95,2019-08-29 17:53:00,11 Meadow St, Atlanta,GA,30301 +242931,Wired Headphones,1,11.99,2019-08-09 20:06:00,274 Center St, Los Angeles,CA,90001 +242932,Apple Airpods Headphones,1,150.0,2019-08-03 22:03:00,260 Johnson St, Boston,MA,02215 +242933,27in FHD Monitor,1,149.99,2019-08-02 13:07:00,276 Ridge St, Dallas,TX,75001 +242934,Wired Headphones,1,11.99,2019-08-21 10:12:00,128 Highland St, Los Angeles,CA,90001 +242935,AA Batteries (4-pack),1,3.84,2019-08-08 20:24:00,463 Meadow St, Los Angeles,CA,90001 +242936,iPhone,1,700.0,2019-08-14 09:27:00,984 14th St, Austin,TX,73301 +242936,Lightning Charging Cable,2,14.95,2019-08-14 09:27:00,984 14th St, Austin,TX,73301 +242936,Apple Airpods Headphones,1,150.0,2019-08-14 09:27:00,984 14th St, Austin,TX,73301 +242936,Wired Headphones,1,11.99,2019-08-14 09:27:00,984 14th St, Austin,TX,73301 +242937,AA Batteries (4-pack),2,3.84,2019-08-30 02:09:00,582 9th St, New York City,NY,10001 +242938,20in Monitor,1,109.99,2019-08-18 22:44:00,571 Center St, Los Angeles,CA,90001 +242939,Lightning Charging Cable,1,14.95,2019-08-21 10:22:00,300 Highland St, Boston,MA,02215 +242940,27in FHD Monitor,1,149.99,2019-08-10 10:10:00,177 Center St, Seattle,WA,98101 +242941,27in FHD Monitor,1,149.99,2019-08-16 14:52:00,653 Walnut St, New York City,NY,10001 +242942,Lightning Charging Cable,1,14.95,2019-08-10 21:47:00,159 Dogwood St, San Francisco,CA,94016 +242943,iPhone,1,700.0,2019-08-07 19:29:00,106 Main St, Boston,MA,02215 +242944,Bose SoundSport Headphones,1,99.99,2019-08-19 17:05:00,244 14th St, Los Angeles,CA,90001 +242945,AA Batteries (4-pack),1,3.84,2019-08-30 13:32:00,542 Madison St, San Francisco,CA,94016 +242946,20in Monitor,1,109.99,2019-08-08 09:57:00,55 Wilson St, Los Angeles,CA,90001 +242947,Wired Headphones,1,11.99,2019-08-14 10:49:00,724 Spruce St, Los Angeles,CA,90001 +242948,LG Dryer,1,600.0,2019-08-21 07:49:00,483 Forest St, New York City,NY,10001 +242949,34in Ultrawide Monitor,1,379.99,2019-08-26 02:03:00,16 Walnut St, Dallas,TX,75001 +242950,Apple Airpods Headphones,2,150.0,2019-08-04 14:39:00,131 Park St, Los Angeles,CA,90001 +242951,ThinkPad Laptop,1,999.99,2019-08-22 20:04:00,24 Hill St, Boston,MA,02215 +242951,Apple Airpods Headphones,1,150.0,2019-08-22 20:04:00,24 Hill St, Boston,MA,02215 +242952,27in FHD Monitor,1,149.99,2019-08-12 17:08:00,276 Maple St, San Francisco,CA,94016 +242952,AAA Batteries (4-pack),4,2.99,2019-08-12 17:08:00,276 Maple St, San Francisco,CA,94016 +242953,Flatscreen TV,1,300.0,2019-08-19 16:34:00,627 Lake St, Portland,OR,97035 +242954,AA Batteries (4-pack),1,3.84,2019-08-18 16:39:00,456 5th St, San Francisco,CA,94016 +242955,Lightning Charging Cable,2,14.95,2019-08-02 19:16:00,508 Church St, San Francisco,CA,94016 +242956,USB-C Charging Cable,1,11.95,2019-08-26 19:41:00,311 4th St, Los Angeles,CA,90001 +242957,34in Ultrawide Monitor,1,379.99,2019-08-17 08:23:00,769 River St, New York City,NY,10001 +242958,Apple Airpods Headphones,1,150.0,2019-08-27 07:02:00,996 Lakeview St, San Francisco,CA,94016 +242959,AAA Batteries (4-pack),1,2.99,2019-08-12 22:02:00,68 Wilson St, San Francisco,CA,94016 +242960,Bose SoundSport Headphones,1,99.99,2019-08-02 20:53:00,588 Meadow St, New York City,NY,10001 +242960,Lightning Charging Cable,1,14.95,2019-08-02 20:53:00,588 Meadow St, New York City,NY,10001 +242961,AAA Batteries (4-pack),1,2.99,2019-08-08 13:57:00,110 Lincoln St, San Francisco,CA,94016 +242962,Bose SoundSport Headphones,2,99.99,2019-08-14 22:11:00,251 12th St, San Francisco,CA,94016 +242963,27in FHD Monitor,1,149.99,2019-08-31 15:31:00,404 Jefferson St, Dallas,TX,75001 +242963,AA Batteries (4-pack),1,3.84,2019-08-31 15:31:00,404 Jefferson St, Dallas,TX,75001 +242964,Lightning Charging Cable,1,14.95,2019-08-19 20:47:00,43 13th St, San Francisco,CA,94016 +242965,Macbook Pro Laptop,1,1700.0,2019-08-14 22:59:00,2 1st St, Portland,OR,97035 +242966,Lightning Charging Cable,1,14.95,2019-08-06 12:08:00,256 Adams St, San Francisco,CA,94016 +242967,27in FHD Monitor,1,149.99,2019-08-25 21:24:00,962 10th St, Boston,MA,02215 +242968,USB-C Charging Cable,1,11.95,2019-08-01 19:57:00,492 Lake St, San Francisco,CA,94016 +242969,AA Batteries (4-pack),4,3.84,2019-08-23 20:15:00,992 Hickory St, Portland,OR,97035 +242970,AA Batteries (4-pack),1,3.84,2019-08-06 09:34:00,455 North St, New York City,NY,10001 +242971,AAA Batteries (4-pack),1,2.99,2019-08-30 18:54:00,523 5th St, Boston,MA,02215 +242972,Wired Headphones,1,11.99,2019-08-13 10:20:00,935 14th St, Los Angeles,CA,90001 +242973,Lightning Charging Cable,1,14.95,2019-08-19 19:40:00,631 Cedar St, San Francisco,CA,94016 +242974,iPhone,1,700.0,2019-08-09 12:07:00,645 Washington St, Seattle,WA,98101 +242975,27in FHD Monitor,1,149.99,2019-08-07 11:32:00,471 Maple St, Portland,ME,04101 +242976,Flatscreen TV,1,300.0,2019-08-27 19:22:00,609 Wilson St, Portland,OR,97035 +242977,34in Ultrawide Monitor,1,379.99,2019-08-13 18:37:00,705 Wilson St, Boston,MA,02215 +242978,AAA Batteries (4-pack),1,2.99,2019-08-30 06:39:00,199 Willow St, San Francisco,CA,94016 +242979,Apple Airpods Headphones,1,150.0,2019-08-13 16:45:00,172 Johnson St, Los Angeles,CA,90001 +242980,AAA Batteries (4-pack),1,2.99,2019-08-22 23:37:00,270 West St, Seattle,WA,98101 +242981,AA Batteries (4-pack),1,3.84,2019-08-09 18:44:00,180 Spruce St, San Francisco,CA,94016 +242982,Wired Headphones,1,11.99,2019-08-10 19:53:00,563 Meadow St, New York City,NY,10001 +242983,Wired Headphones,1,11.99,2019-08-08 10:25:00,369 Chestnut St, Los Angeles,CA,90001 +242984,Apple Airpods Headphones,1,150.0,2019-08-14 19:58:00,72 Hickory St, New York City,NY,10001 +242985,27in FHD Monitor,1,149.99,2019-08-17 15:02:00,775 Sunset St, Atlanta,GA,30301 +242986,Lightning Charging Cable,1,14.95,2019-08-29 18:45:00,921 Forest St, Portland,ME,04101 +242987,AA Batteries (4-pack),1,3.84,2019-08-20 18:47:00,296 Spruce St, Dallas,TX,75001 +242988,Flatscreen TV,1,300.0,2019-08-19 13:41:00,842 Spruce St, Portland,OR,97035 +242989,Lightning Charging Cable,1,14.95,2019-08-06 15:22:00,710 Lake St, Los Angeles,CA,90001 +242990,AAA Batteries (4-pack),2,2.99,2019-08-31 18:36:00,43 Church St, Dallas,TX,75001 +242991,20in Monitor,1,109.99,2019-08-19 14:41:00,926 Adams St, Austin,TX,73301 +242992,Wired Headphones,1,11.99,2019-08-30 13:14:00,952 South St, Boston,MA,02215 +242993,USB-C Charging Cable,1,11.95,2019-08-12 18:32:00,285 Main St, Dallas,TX,75001 +242994,Apple Airpods Headphones,1,150.0,2019-08-07 13:06:00,202 West St, San Francisco,CA,94016 +242995,20in Monitor,1,109.99,2019-08-12 22:55:00,532 7th St, Portland,ME,04101 +242996,Wired Headphones,1,11.99,2019-08-26 18:22:00,575 10th St, Dallas,TX,75001 +242997,27in 4K Gaming Monitor,1,389.99,2019-08-17 10:45:00,159 Sunset St, Portland,OR,97035 +242998,Apple Airpods Headphones,1,150.0,2019-08-13 19:05:00,221 Cedar St, San Francisco,CA,94016 +242999,USB-C Charging Cable,1,11.95,2019-08-04 22:00:00,143 Johnson St, Dallas,TX,75001 +243000,Wired Headphones,1,11.99,2019-08-30 09:56:00,7 Johnson St, San Francisco,CA,94016 +243001,Bose SoundSport Headphones,1,99.99,2019-08-21 18:44:00,79 Lakeview St, Seattle,WA,98101 +243002,Lightning Charging Cable,1,14.95,2019-08-09 12:05:00,328 Ridge St, San Francisco,CA,94016 +243003,USB-C Charging Cable,1,11.95,2019-08-11 10:15:00,225 Park St, Portland,OR,97035 +243004,Wired Headphones,1,11.99,2019-08-23 23:34:00,761 Adams St, Atlanta,GA,30301 +243005,AA Batteries (4-pack),1,3.84,2019-08-13 10:15:00,228 Spruce St, New York City,NY,10001 +243006,AA Batteries (4-pack),1,3.84,2019-08-08 09:46:00,604 Cedar St, Dallas,TX,75001 +243007,Wired Headphones,1,11.99,2019-08-30 19:00:00,385 9th St, New York City,NY,10001 +243008,Apple Airpods Headphones,1,150.0,2019-08-20 15:37:00,788 11th St, New York City,NY,10001 +243009,Lightning Charging Cable,1,14.95,2019-08-04 11:19:00,751 Madison St, Los Angeles,CA,90001 +243010,Wired Headphones,1,11.99,2019-08-05 00:00:00,368 5th St, Dallas,TX,75001 +243011,Lightning Charging Cable,1,14.95,2019-08-30 17:04:00,371 Main St, Boston,MA,02215 +243012,iPhone,1,700.0,2019-08-03 16:41:00,232 9th St, Boston,MA,02215 +243013,iPhone,1,700.0,2019-08-09 19:32:00,71 Jackson St, Portland,OR,97035 +243014,Bose SoundSport Headphones,1,99.99,2019-08-19 16:37:00,817 Forest St, Los Angeles,CA,90001 +243015,Wired Headphones,1,11.99,2019-08-11 19:51:00,682 Adams St, Seattle,WA,98101 +243016,Flatscreen TV,1,300.0,2019-08-15 19:04:00,97 Lakeview St, Seattle,WA,98101 +243017,Bose SoundSport Headphones,1,99.99,2019-08-05 17:35:00,377 Hill St, San Francisco,CA,94016 +243018,Wired Headphones,1,11.99,2019-08-30 01:07:00,299 Adams St, Seattle,WA,98101 +243019,27in FHD Monitor,1,149.99,2019-08-04 19:55:00,958 West St, San Francisco,CA,94016 +243020,Lightning Charging Cable,1,14.95,2019-08-28 21:38:00,642 River St, New York City,NY,10001 +243021,AA Batteries (4-pack),1,3.84,2019-08-23 23:42:00,985 Lakeview St, Boston,MA,02215 +243022,iPhone,1,700.0,2019-08-23 09:46:00,191 Madison St, San Francisco,CA,94016 +243023,Wired Headphones,1,11.99,2019-08-23 12:14:00,299 Highland St, Austin,TX,73301 +243024,Google Phone,1,600.0,2019-08-27 16:11:00,201 Maple St, San Francisco,CA,94016 +243025,AAA Batteries (4-pack),1,2.99,2019-08-20 16:59:00,480 Forest St, New York City,NY,10001 +243026,Bose SoundSport Headphones,1,99.99,2019-08-05 21:35:00,633 Walnut St, San Francisco,CA,94016 +243027,ThinkPad Laptop,1,999.99,2019-08-22 07:08:00,526 Lincoln St, San Francisco,CA,94016 +243028,Wired Headphones,1,11.99,2019-08-15 13:54:00,972 Pine St, Los Angeles,CA,90001 +243029,Apple Airpods Headphones,1,150.0,2019-08-26 12:44:00,812 4th St, San Francisco,CA,94016 +243030,AAA Batteries (4-pack),1,2.99,2019-08-28 07:57:00,635 12th St, Los Angeles,CA,90001 +243031,Bose SoundSport Headphones,1,99.99,2019-08-23 15:21:00,676 Jefferson St, Portland,OR,97035 +243032,Bose SoundSport Headphones,1,99.99,2019-08-16 18:47:00,731 Jackson St, San Francisco,CA,94016 +243033,AA Batteries (4-pack),1,3.84,2019-08-04 09:00:00,114 Sunset St, Boston,MA,02215 +243034,USB-C Charging Cable,1,11.95,2019-08-20 19:05:00,888 Maple St, Los Angeles,CA,90001 +243035,AAA Batteries (4-pack),4,2.99,2019-08-19 14:17:00,600 Park St, Dallas,TX,75001 +243036,27in 4K Gaming Monitor,1,389.99,2019-08-19 18:57:00,550 5th St, Seattle,WA,98101 +243037,USB-C Charging Cable,1,11.95,2019-08-02 21:15:00,842 12th St, San Francisco,CA,94016 +243038,34in Ultrawide Monitor,1,379.99,2019-08-17 23:35:00,925 Cedar St, Boston,MA,02215 +243039,iPhone,1,700.0,2019-08-06 20:36:00,168 7th St, Austin,TX,73301 +243040,27in FHD Monitor,1,149.99,2019-08-07 19:43:00,904 Madison St, Boston,MA,02215 +243041,Lightning Charging Cable,1,14.95,2019-08-29 18:58:00,321 Lake St, Dallas,TX,75001 +243042,Macbook Pro Laptop,1,1700.0,2019-08-29 13:47:00,374 13th St, Dallas,TX,75001 +243043,AAA Batteries (4-pack),2,2.99,2019-08-11 09:34:00,795 Center St, New York City,NY,10001 +243044,AAA Batteries (4-pack),1,2.99,2019-08-12 00:42:00,476 1st St, Austin,TX,73301 +243045,USB-C Charging Cable,1,11.95,2019-08-06 23:50:00,47 Cherry St, San Francisco,CA,94016 +243046,34in Ultrawide Monitor,1,379.99,2019-08-24 12:11:00,430 Sunset St, Boston,MA,02215 +243047,Wired Headphones,1,11.99,2019-08-24 20:05:00,324 North St, New York City,NY,10001 +243048,Wired Headphones,1,11.99,2019-08-12 21:06:00,343 South St, San Francisco,CA,94016 +243049,AA Batteries (4-pack),1,3.84,2019-08-02 10:01:00,492 Jackson St, New York City,NY,10001 +243050,USB-C Charging Cable,1,11.95,2019-08-23 15:01:00,80 Jackson St, Los Angeles,CA,90001 +243051,Wired Headphones,1,11.99,2019-08-22 22:52:00,502 5th St, Boston,MA,02215 +243052,Wired Headphones,2,11.99,2019-08-28 12:47:00,967 Forest St, Dallas,TX,75001 +243053,Bose SoundSport Headphones,1,99.99,2019-08-20 12:52:00,812 Adams St, Los Angeles,CA,90001 +243054,iPhone,1,700.0,2019-08-03 11:48:00,902 Spruce St, Dallas,TX,75001 +243055,Vareebadd Phone,1,400.0,2019-08-08 11:22:00,52 9th St, San Francisco,CA,94016 +243056,AAA Batteries (4-pack),2,2.99,2019-08-28 22:03:00,859 Park St, Seattle,WA,98101 +243057,Lightning Charging Cable,1,14.95,2019-08-27 01:32:00,940 13th St, Los Angeles,CA,90001 +243058,AA Batteries (4-pack),1,3.84,2019-08-18 13:30:00,109 Lincoln St, New York City,NY,10001 +243059,Lightning Charging Cable,1,14.95,2019-08-16 16:21:00,796 River St, Austin,TX,73301 +243060,ThinkPad Laptop,1,999.99,2019-08-06 23:17:00,858 Jefferson St, San Francisco,CA,94016 +243061,Apple Airpods Headphones,1,150.0,2019-08-24 15:38:00,64 8th St, Dallas,TX,75001 +243062,iPhone,1,700.0,2019-08-04 02:49:00,609 8th St, Dallas,TX,75001 +243063,Vareebadd Phone,1,400.0,2019-08-13 18:55:00,91 Wilson St, New York City,NY,10001 +243064,Lightning Charging Cable,1,14.95,2019-08-05 20:30:00,349 Elm St, New York City,NY,10001 +243065,27in 4K Gaming Monitor,1,389.99,2019-08-18 04:28:00,911 2nd St, San Francisco,CA,94016 +243066,AA Batteries (4-pack),1,3.84,2019-08-23 07:59:00,337 North St, New York City,NY,10001 +243067,AAA Batteries (4-pack),2,2.99,2019-08-15 15:00:00,63 Ridge St, Atlanta,GA,30301 +243068,34in Ultrawide Monitor,1,379.99,2019-08-18 13:59:00,450 14th St, New York City,NY,10001 +243069,AA Batteries (4-pack),2,3.84,2019-08-11 17:46:00,105 Cherry St, Los Angeles,CA,90001 +243070,USB-C Charging Cable,1,11.95,2019-08-15 20:38:00,436 Jefferson St, San Francisco,CA,94016 +243071,ThinkPad Laptop,1,999.99,2019-08-25 10:11:00,274 Ridge St, San Francisco,CA,94016 +243072,AA Batteries (4-pack),1,3.84,2019-08-12 10:34:00,305 Willow St, Boston,MA,02215 +243073,Apple Airpods Headphones,1,150.0,2019-08-15 17:32:00,166 8th St, New York City,NY,10001 +243074,AA Batteries (4-pack),2,3.84,2019-08-28 15:14:00,854 Adams St, New York City,NY,10001 +243075,Wired Headphones,1,11.99,2019-08-09 07:42:00,135 Elm St, Seattle,WA,98101 +243076,Wired Headphones,1,11.99,2019-08-31 04:21:00,51 Highland St, San Francisco,CA,94016 +243076,Apple Airpods Headphones,1,150.0,2019-08-31 04:21:00,51 Highland St, San Francisco,CA,94016 +243077,Apple Airpods Headphones,1,150.0,2019-08-13 20:39:00,955 Adams St, San Francisco,CA,94016 +243078,AAA Batteries (4-pack),3,2.99,2019-08-27 19:33:00,683 Main St, New York City,NY,10001 +243079,Wired Headphones,1,11.99,2019-08-24 23:42:00,688 West St, Dallas,TX,75001 +243080,Lightning Charging Cable,1,14.95,2019-08-14 16:48:00,413 6th St, Dallas,TX,75001 +243081,27in 4K Gaming Monitor,1,389.99,2019-08-07 15:12:00,194 Madison St, Atlanta,GA,30301 +243082,Lightning Charging Cable,2,14.95,2019-08-02 19:48:00,14 Lake St, San Francisco,CA,94016 +243083,Macbook Pro Laptop,1,1700.0,2019-08-07 20:25:00,146 1st St, San Francisco,CA,94016 +243084,Bose SoundSport Headphones,1,99.99,2019-08-15 13:26:00,547 Lincoln St, Los Angeles,CA,90001 +243085,USB-C Charging Cable,1,11.95,2019-08-14 08:05:00,120 Meadow St, Austin,TX,73301 +243086,Apple Airpods Headphones,1,150.0,2019-08-25 11:37:00,499 14th St, Seattle,WA,98101 +243087,AA Batteries (4-pack),1,3.84,2019-08-23 14:35:00,352 Johnson St, Los Angeles,CA,90001 +243088,AAA Batteries (4-pack),1,2.99,2019-08-10 12:31:00,392 Walnut St, Dallas,TX,75001 +243089,AAA Batteries (4-pack),2,2.99,2019-08-29 09:41:00,106 Chestnut St, New York City,NY,10001 +243090,Lightning Charging Cable,1,14.95,2019-08-30 09:43:00,853 Hickory St, Los Angeles,CA,90001 +243091,Lightning Charging Cable,1,14.95,2019-08-14 00:52:00,143 North St, Portland,OR,97035 +243092,Bose SoundSport Headphones,1,99.99,2019-08-13 08:15:00,391 5th St, New York City,NY,10001 +243093,iPhone,1,700.0,2019-08-24 12:47:00,19 Johnson St, Austin,TX,73301 +243094,Lightning Charging Cable,1,14.95,2019-08-31 12:22:00,980 Main St, Atlanta,GA,30301 +243095,Lightning Charging Cable,1,14.95,2019-08-15 15:32:00,857 Cherry St, Seattle,WA,98101 +243096,27in FHD Monitor,2,149.99,2019-08-24 13:52:00,976 Walnut St, San Francisco,CA,94016 +243097,Apple Airpods Headphones,1,150.0,2019-08-20 12:05:00,126 Jackson St, Los Angeles,CA,90001 +243098,AA Batteries (4-pack),1,3.84,2019-08-19 21:08:00,751 5th St, Los Angeles,CA,90001 +243099,Flatscreen TV,1,300.0,2019-08-20 17:20:00,449 Lincoln St, Los Angeles,CA,90001 +243100,AA Batteries (4-pack),1,3.84,2019-08-10 14:59:00,218 Lincoln St, San Francisco,CA,94016 +243101,Apple Airpods Headphones,1,150.0,2019-08-31 04:55:00,304 5th St, New York City,NY,10001 +243102,Wired Headphones,1,11.99,2019-08-10 17:46:00,506 5th St, San Francisco,CA,94016 +243103,AAA Batteries (4-pack),2,2.99,2019-08-23 20:19:00,149 Meadow St, Austin,TX,73301 +243104,USB-C Charging Cable,1,11.95,2019-08-24 20:02:00,458 2nd St, Los Angeles,CA,90001 +243105,Flatscreen TV,1,300.0,2019-08-08 11:00:00,40 Wilson St, San Francisco,CA,94016 +243106,USB-C Charging Cable,1,11.95,2019-08-28 18:27:00,704 10th St, San Francisco,CA,94016 +243107,USB-C Charging Cable,1,11.95,2019-08-14 16:37:00,242 9th St, Boston,MA,02215 +243108,AAA Batteries (4-pack),1,2.99,2019-08-24 10:17:00,582 Cedar St, Los Angeles,CA,90001 +243109,iPhone,1,700.0,2019-08-10 18:13:00,563 Wilson St, New York City,NY,10001 +243109,Apple Airpods Headphones,1,150.0,2019-08-10 18:13:00,563 Wilson St, New York City,NY,10001 +243110,AA Batteries (4-pack),1,3.84,2019-08-08 13:49:00,751 5th St, Dallas,TX,75001 +243110,Lightning Charging Cable,1,14.95,2019-08-08 13:49:00,751 5th St, Dallas,TX,75001 +243111,Lightning Charging Cable,1,14.95,2019-08-07 13:38:00,626 Pine St, Dallas,TX,75001 +243112,AA Batteries (4-pack),3,3.84,2019-08-08 16:50:00,46 Church St, Portland,OR,97035 +243113,Wired Headphones,1,11.99,2019-08-28 19:27:00,767 Sunset St, San Francisco,CA,94016 +243114,Wired Headphones,1,11.99,2019-08-05 17:04:00,134 14th St, New York City,NY,10001 +243115,34in Ultrawide Monitor,1,379.99,2019-08-23 12:04:00,65 West St, San Francisco,CA,94016 +243116,AA Batteries (4-pack),1,3.84,2019-08-05 00:11:00,181 Washington St, San Francisco,CA,94016 +243117,27in FHD Monitor,2,149.99,2019-08-29 10:59:00,233 Forest St, Seattle,WA,98101 +243118,Lightning Charging Cable,1,14.95,2019-08-17 15:54:00,549 6th St, Portland,OR,97035 +243119,AA Batteries (4-pack),2,3.84,2019-08-30 01:25:00,166 9th St, Seattle,WA,98101 +243120,AA Batteries (4-pack),1,3.84,2019-08-25 16:35:00,960 Dogwood St, Los Angeles,CA,90001 +243121,AAA Batteries (4-pack),2,2.99,2019-08-17 12:15:00,364 North St, Dallas,TX,75001 +243122,34in Ultrawide Monitor,1,379.99,2019-08-20 13:51:00,135 Chestnut St, Los Angeles,CA,90001 +243123,Lightning Charging Cable,2,14.95,2019-08-23 11:08:00,393 4th St, Los Angeles,CA,90001 +243124,Bose SoundSport Headphones,1,99.99,2019-08-21 07:15:00,758 11th St, San Francisco,CA,94016 +243125,Lightning Charging Cable,1,14.95,2019-08-11 18:22:00,492 Hill St, Los Angeles,CA,90001 +243126,Wired Headphones,1,11.99,2019-08-07 23:46:00,373 River St, San Francisco,CA,94016 +243127,AA Batteries (4-pack),1,3.84,2019-08-25 12:49:00,341 13th St, New York City,NY,10001 +243128,USB-C Charging Cable,2,11.95,2019-08-04 13:21:00,627 Cherry St, San Francisco,CA,94016 +243129,27in FHD Monitor,1,149.99,2019-08-19 13:13:00,228 Hickory St, New York City,NY,10001 +243130,Lightning Charging Cable,1,14.95,2019-08-31 22:28:00,636 Jefferson St, New York City,NY,10001 +243131,Lightning Charging Cable,1,14.95,2019-08-08 14:36:00,370 Forest St, New York City,NY,10001 +243132,Lightning Charging Cable,1,14.95,2019-08-17 14:06:00,470 Hickory St, Los Angeles,CA,90001 +243133,Wired Headphones,2,11.99,2019-08-10 22:28:00,249 6th St, San Francisco,CA,94016 +243134,AA Batteries (4-pack),1,3.84,2019-08-04 16:23:00,855 Johnson St, Boston,MA,02215 +243134,Google Phone,1,600.0,2019-08-04 16:23:00,855 Johnson St, Boston,MA,02215 +243135,ThinkPad Laptop,1,999.99,2019-08-26 10:22:00,670 8th St, Austin,TX,73301 +243135,USB-C Charging Cable,1,11.95,2019-08-26 10:22:00,670 8th St, Austin,TX,73301 +243136,Macbook Pro Laptop,1,1700.0,2019-08-04 22:43:00,106 Lake St, San Francisco,CA,94016 +243137,Lightning Charging Cable,1,14.95,2019-08-02 23:01:00,336 Jackson St, Los Angeles,CA,90001 +243137,34in Ultrawide Monitor,1,379.99,2019-08-02 23:01:00,336 Jackson St, Los Angeles,CA,90001 +243138,Wired Headphones,1,11.99,2019-08-18 16:58:00,94 Jackson St, Los Angeles,CA,90001 +243139,Google Phone,1,600.0,2019-08-08 19:18:00,631 Hill St, Los Angeles,CA,90001 +243140,27in 4K Gaming Monitor,1,389.99,2019-08-02 19:19:00,801 Meadow St, Boston,MA,02215 +243141,Lightning Charging Cable,1,14.95,2019-08-04 21:20:00,332 Hill St, Seattle,WA,98101 +243142,Wired Headphones,1,11.99,2019-08-25 09:37:00,527 Wilson St, New York City,NY,10001 +243143,Bose SoundSport Headphones,1,99.99,2019-08-27 22:08:00,510 Spruce St, Los Angeles,CA,90001 +243144,Wired Headphones,1,11.99,2019-08-15 23:12:00,147 Chestnut St, San Francisco,CA,94016 +243145,Apple Airpods Headphones,1,150.0,2019-08-19 13:01:00,910 Willow St, Seattle,WA,98101 +243146,Lightning Charging Cable,1,14.95,2019-08-18 13:31:00,340 West St, Austin,TX,73301 +243147,AA Batteries (4-pack),2,3.84,2019-08-14 14:07:00,690 West St, Seattle,WA,98101 +243148,Lightning Charging Cable,1,14.95,2019-08-20 12:59:00,752 Ridge St, San Francisco,CA,94016 +243149,AAA Batteries (4-pack),1,2.99,2019-08-06 19:45:00,247 6th St, New York City,NY,10001 +243150,Bose SoundSport Headphones,1,99.99,2019-08-01 21:23:00,642 Adams St, New York City,NY,10001 +243151,20in Monitor,1,109.99,2019-08-14 15:10:00,858 Jefferson St, Los Angeles,CA,90001 +243152,AAA Batteries (4-pack),1,2.99,2019-08-11 20:42:00,793 6th St, Atlanta,GA,30301 +243153,34in Ultrawide Monitor,1,379.99,2019-08-08 14:41:00,869 13th St, New York City,NY,10001 +243154,27in 4K Gaming Monitor,1,389.99,2019-08-22 00:39:00,592 9th St, Austin,TX,73301 +243155,Apple Airpods Headphones,1,150.0,2019-08-18 16:13:00,627 North St, Los Angeles,CA,90001 +243156,Bose SoundSport Headphones,1,99.99,2019-08-18 17:07:00,474 Jefferson St, Los Angeles,CA,90001 +243157,Apple Airpods Headphones,1,150.0,2019-08-07 11:51:00,239 Wilson St, San Francisco,CA,94016 +243158,Wired Headphones,1,11.99,2019-08-15 16:10:00,228 Johnson St, Los Angeles,CA,90001 +243159,Apple Airpods Headphones,1,150.0,2019-08-06 09:18:00,439 Walnut St, Los Angeles,CA,90001 +243160,Apple Airpods Headphones,1,150.0,2019-08-26 22:40:00,10 Chestnut St, San Francisco,CA,94016 +243161,Lightning Charging Cable,1,14.95,2019-08-27 18:08:00,985 14th St, New York City,NY,10001 +243162,ThinkPad Laptop,1,999.99,2019-08-07 11:17:00,75 Pine St, New York City,NY,10001 +243163,Wired Headphones,1,11.99,2019-08-14 17:24:00,978 Jackson St, New York City,NY,10001 +243164,Wired Headphones,1,11.99,2019-08-16 18:56:00,195 6th St, Los Angeles,CA,90001 +243165,Bose SoundSport Headphones,1,99.99,2019-08-25 22:26:00,601 Hill St, San Francisco,CA,94016 +243166,34in Ultrawide Monitor,1,379.99,2019-08-26 09:48:00,299 Forest St, San Francisco,CA,94016 +243166,Flatscreen TV,1,300.0,2019-08-26 09:48:00,299 Forest St, San Francisco,CA,94016 +243167,Macbook Pro Laptop,1,1700.0,2019-08-30 14:57:00,96 13th St, Atlanta,GA,30301 +243168,AA Batteries (4-pack),1,3.84,2019-08-09 21:41:00,853 Elm St, Los Angeles,CA,90001 +243169,27in 4K Gaming Monitor,1,389.99,2019-08-14 15:49:00,739 6th St, Dallas,TX,75001 +243170,Bose SoundSport Headphones,1,99.99,2019-08-13 21:08:00,626 Walnut St, San Francisco,CA,94016 +243171,Lightning Charging Cable,1,14.95,2019-08-20 07:21:00,519 Madison St, San Francisco,CA,94016 +243171,USB-C Charging Cable,1,11.95,2019-08-20 07:21:00,519 Madison St, San Francisco,CA,94016 +243172,USB-C Charging Cable,1,11.95,2019-08-16 22:23:00,250 Lakeview St, Boston,MA,02215 +243173,Macbook Pro Laptop,1,1700.0,2019-08-19 23:43:00,810 Washington St, Dallas,TX,75001 +243174,Lightning Charging Cable,1,14.95,2019-08-27 06:38:00,994 Walnut St, Portland,OR,97035 +243175,iPhone,1,700.0,2019-08-26 16:48:00,122 Hill St, Los Angeles,CA,90001 +243176,Apple Airpods Headphones,1,150.0,2019-08-15 09:58:00,139 River St, New York City,NY,10001 +243177,Apple Airpods Headphones,1,150.0,2019-08-31 16:36:00,779 Main St, Los Angeles,CA,90001 +243178,AA Batteries (4-pack),1,3.84,2019-08-31 16:29:00,578 Center St, Dallas,TX,75001 +243179,34in Ultrawide Monitor,1,379.99,2019-08-08 07:34:00,602 Forest St, New York City,NY,10001 +243180,Lightning Charging Cable,1,14.95,2019-08-26 20:19:00,921 Forest St, Los Angeles,CA,90001 +243181,USB-C Charging Cable,1,11.95,2019-08-09 14:28:00,945 Hill St, Boston,MA,02215 +243182,Wired Headphones,1,11.99,2019-08-14 17:38:00,511 Jefferson St, Los Angeles,CA,90001 +243183,USB-C Charging Cable,1,11.95,2019-08-13 13:21:00,499 Walnut St, New York City,NY,10001 +243184,iPhone,1,700.0,2019-08-17 13:37:00,191 Forest St, Portland,OR,97035 +243184,Lightning Charging Cable,1,14.95,2019-08-17 13:37:00,191 Forest St, Portland,OR,97035 +243185,20in Monitor,1,109.99,2019-08-29 14:40:00,224 8th St, New York City,NY,10001 +243186,AA Batteries (4-pack),1,3.84,2019-08-08 13:19:00,17 Hickory St, Atlanta,GA,30301 +243187,USB-C Charging Cable,1,11.95,2019-08-08 17:47:00,975 South St, Los Angeles,CA,90001 +243188,Apple Airpods Headphones,1,150.0,2019-08-25 11:13:00,578 7th St, Los Angeles,CA,90001 +243189,Bose SoundSport Headphones,1,99.99,2019-08-15 13:01:00,257 5th St, Atlanta,GA,30301 +243190,AAA Batteries (4-pack),1,2.99,2019-08-09 05:49:00,780 Highland St, New York City,NY,10001 +243191,AA Batteries (4-pack),1,3.84,2019-08-18 09:43:00,190 Cherry St, Dallas,TX,75001 +243192,AAA Batteries (4-pack),1,2.99,2019-08-31 11:39:00,898 8th St, Los Angeles,CA,90001 +243193,34in Ultrawide Monitor,1,379.99,2019-08-13 18:36:00,431 13th St, San Francisco,CA,94016 +243194,Wired Headphones,1,11.99,2019-08-12 13:02:00,905 Walnut St, New York City,NY,10001 +243195,Apple Airpods Headphones,1,150.0,2019-08-16 20:03:00,690 2nd St, Los Angeles,CA,90001 +243196,AAA Batteries (4-pack),1,2.99,2019-08-03 17:48:00,230 12th St, Los Angeles,CA,90001 +243197,34in Ultrawide Monitor,1,379.99,2019-08-06 21:15:00,738 12th St, Portland,OR,97035 +243198,Bose SoundSport Headphones,1,99.99,2019-08-31 09:29:00,359 8th St, New York City,NY,10001 +243199,iPhone,1,700.0,2019-08-21 22:34:00,212 Cherry St, San Francisco,CA,94016 +243200,Wired Headphones,1,11.99,2019-08-13 16:38:00,569 Elm St, New York City,NY,10001 +243201,Wired Headphones,1,11.99,2019-08-05 11:20:00,351 4th St, San Francisco,CA,94016 +243202,Google Phone,1,600.0,2019-08-17 23:58:00,412 6th St, New York City,NY,10001 +243202,Wired Headphones,1,11.99,2019-08-17 23:58:00,412 6th St, New York City,NY,10001 +243203,AA Batteries (4-pack),1,3.84,2019-08-31 21:12:00,292 Lake St, Los Angeles,CA,90001 +243204,Lightning Charging Cable,1,14.95,2019-08-31 22:38:00,100 11th St, San Francisco,CA,94016 +243205,USB-C Charging Cable,1,11.95,2019-08-06 08:39:00,278 12th St, New York City,NY,10001 +243206,USB-C Charging Cable,1,11.95,2019-08-13 23:38:00,214 Meadow St, New York City,NY,10001 +243207,USB-C Charging Cable,2,11.95,2019-08-29 21:31:00,975 4th St, New York City,NY,10001 +243208,Bose SoundSport Headphones,1,99.99,2019-08-15 23:36:00,950 North St, San Francisco,CA,94016 +243209,Apple Airpods Headphones,1,150.0,2019-08-24 13:43:00,468 Highland St, San Francisco,CA,94016 +243210,USB-C Charging Cable,1,11.95,2019-08-31 10:19:00,105 12th St, Atlanta,GA,30301 +243211,Bose SoundSport Headphones,1,99.99,2019-08-17 15:06:00,716 Ridge St, San Francisco,CA,94016 +243212,AA Batteries (4-pack),1,3.84,2019-08-19 22:32:00,829 Johnson St, San Francisco,CA,94016 +243213,Bose SoundSport Headphones,1,99.99,2019-08-12 12:19:00,360 Ridge St, New York City,NY,10001 +243214,Wired Headphones,1,11.99,2019-08-16 18:24:00,893 Lake St, New York City,NY,10001 +243215,Lightning Charging Cable,1,14.95,2019-08-14 09:11:00,876 5th St, Los Angeles,CA,90001 +243216,AAA Batteries (4-pack),3,2.99,2019-08-30 16:46:00,145 7th St, San Francisco,CA,94016 +243217,Wired Headphones,1,11.99,2019-08-24 22:05:00,432 4th St, Los Angeles,CA,90001 +243218,Macbook Pro Laptop,1,1700.0,2019-08-28 11:13:00,286 Ridge St, Austin,TX,73301 +243219,AA Batteries (4-pack),1,3.84,2019-08-21 23:47:00,6 11th St, Austin,TX,73301 +243219,AA Batteries (4-pack),2,3.84,2019-08-21 23:47:00,6 11th St, Austin,TX,73301 +243220,27in FHD Monitor,1,149.99,2019-08-10 16:26:00,673 8th St, San Francisco,CA,94016 +243221,ThinkPad Laptop,1,999.99,2019-08-23 10:57:00,721 Hickory St, Dallas,TX,75001 +243222,Wired Headphones,1,11.99,2019-08-27 19:53:00,824 Lakeview St, Boston,MA,02215 +243223,Google Phone,1,600.0,2019-08-26 15:25:00,610 8th St, Dallas,TX,75001 +243224,Bose SoundSport Headphones,1,99.99,2019-08-29 12:29:00,939 Lakeview St, Dallas,TX,75001 +243225,AA Batteries (4-pack),1,3.84,2019-08-11 08:03:00,414 4th St, New York City,NY,10001 +243226,Macbook Pro Laptop,1,1700.0,2019-08-20 20:17:00,878 Adams St, Portland,ME,04101 +243227,AA Batteries (4-pack),1,3.84,2019-08-29 22:01:00,698 8th St, Boston,MA,02215 +243228,Bose SoundSport Headphones,1,99.99,2019-08-08 11:35:00,578 10th St, San Francisco,CA,94016 +243229,USB-C Charging Cable,1,11.95,2019-08-21 21:53:00,117 7th St, New York City,NY,10001 +243230,USB-C Charging Cable,1,11.95,2019-08-06 20:31:00,569 12th St, San Francisco,CA,94016 +243231,20in Monitor,1,109.99,2019-08-13 23:40:00,150 West St, Boston,MA,02215 +243232,Apple Airpods Headphones,1,150.0,2019-08-01 11:59:00,8 Jefferson St, Atlanta,GA,30301 +243233,20in Monitor,1,109.99,2019-08-24 19:14:00,655 Maple St, New York City,NY,10001 +243234,Wired Headphones,1,11.99,2019-08-01 18:22:00,726 2nd St, Austin,TX,73301 +243235,AAA Batteries (4-pack),2,2.99,2019-08-22 15:05:00,499 Ridge St, Austin,TX,73301 +243236,USB-C Charging Cable,1,11.95,2019-08-22 14:29:00,492 8th St, San Francisco,CA,94016 +243237,Lightning Charging Cable,2,14.95,2019-08-23 01:03:00,870 Madison St, Seattle,WA,98101 +243238,Wired Headphones,1,11.99,2019-08-26 21:35:00,494 14th St, San Francisco,CA,94016 +243239,Apple Airpods Headphones,1,150.0,2019-08-19 20:07:00,476 13th St, San Francisco,CA,94016 +243240,Bose SoundSport Headphones,1,99.99,2019-08-03 21:42:00,335 Lake St, Boston,MA,02215 +243241,iPhone,1,700.0,2019-08-27 15:49:00,329 Walnut St, Atlanta,GA,30301 +243242,USB-C Charging Cable,2,11.95,2019-08-31 17:48:00,886 West St, Portland,OR,97035 +243243,Bose SoundSport Headphones,2,99.99,2019-08-28 21:23:00,520 Washington St, New York City,NY,10001 +243243,AAA Batteries (4-pack),1,2.99,2019-08-28 21:23:00,520 Washington St, New York City,NY,10001 +243244,AA Batteries (4-pack),1,3.84,2019-08-28 18:58:00,933 Lakeview St, Los Angeles,CA,90001 +243245,27in FHD Monitor,1,149.99,2019-08-05 15:34:00,436 Cedar St, Dallas,TX,75001 +243246,Apple Airpods Headphones,1,150.0,2019-08-16 18:16:00,436 Jackson St, San Francisco,CA,94016 +243247,AA Batteries (4-pack),2,3.84,2019-08-01 21:44:00,684 Dogwood St, Dallas,TX,75001 +243248,AA Batteries (4-pack),2,3.84,2019-08-01 16:40:00,666 2nd St, Atlanta,GA,30301 +243249,Lightning Charging Cable,1,14.95,2019-08-26 21:46:00,160 Hickory St, Boston,MA,02215 +243250,Lightning Charging Cable,1,14.95,2019-08-02 10:55:00,354 Washington St, New York City,NY,10001 +243251,AAA Batteries (4-pack),1,2.99,2019-08-29 15:26:00,889 Main St, Los Angeles,CA,90001 +243252,Wired Headphones,1,11.99,2019-08-22 23:06:00,53 Hickory St, New York City,NY,10001 +243253,AAA Batteries (4-pack),2,2.99,2019-08-29 17:05:00,354 7th St, Los Angeles,CA,90001 +243254,Wired Headphones,1,11.99,2019-08-27 10:04:00,428 4th St, San Francisco,CA,94016 +243255,Vareebadd Phone,1,400.0,2019-08-23 11:43:00,79 Spruce St, San Francisco,CA,94016 +243256,Macbook Pro Laptop,1,1700.0,2019-08-07 21:46:00,254 Church St, San Francisco,CA,94016 +243257,AAA Batteries (4-pack),1,2.99,2019-08-26 17:12:00,576 Madison St, Seattle,WA,98101 +243258,iPhone,1,700.0,2019-08-19 18:14:00,2 Maple St, Los Angeles,CA,90001 +243259,Apple Airpods Headphones,1,150.0,2019-08-17 09:35:00,947 Elm St, Seattle,WA,98101 +243260,AAA Batteries (4-pack),1,2.99,2019-08-03 09:08:00,589 Forest St, Atlanta,GA,30301 +243261,20in Monitor,1,109.99,2019-08-14 15:57:00,125 Pine St, New York City,NY,10001 +243262,USB-C Charging Cable,1,11.95,2019-08-14 22:23:00,322 Jackson St, San Francisco,CA,94016 +243263,27in FHD Monitor,1,149.99,2019-08-05 17:01:00,215 Hickory St, Dallas,TX,75001 +243264,AAA Batteries (4-pack),1,2.99,2019-08-15 19:56:00,708 Meadow St, Austin,TX,73301 +243265,Wired Headphones,1,11.99,2019-08-03 20:40:00,169 12th St, New York City,NY,10001 +243266,Lightning Charging Cable,1,14.95,2019-08-09 13:38:00,774 Washington St, Los Angeles,CA,90001 +243267,iPhone,1,700.0,2019-08-17 11:27:00,379 Hill St, New York City,NY,10001 +243267,Wired Headphones,1,11.99,2019-08-17 11:27:00,379 Hill St, New York City,NY,10001 +243268,Apple Airpods Headphones,1,150.0,2019-08-04 15:35:00,166 14th St, Seattle,WA,98101 +243269,Macbook Pro Laptop,1,1700.0,2019-08-20 19:40:00,72 South St, Austin,TX,73301 +243270,AAA Batteries (4-pack),1,2.99,2019-08-03 09:05:00,654 Cedar St, Los Angeles,CA,90001 +243271,AA Batteries (4-pack),1,3.84,2019-08-03 16:32:00,885 Ridge St, Boston,MA,02215 +243272,AA Batteries (4-pack),1,3.84,2019-08-07 11:52:00,770 Walnut St, Boston,MA,02215 +243273,Lightning Charging Cable,1,14.95,2019-08-27 15:02:00,482 Forest St, San Francisco,CA,94016 +243274,LG Washing Machine,1,600.0,2019-08-27 19:48:00,386 6th St, Los Angeles,CA,90001 +243275,USB-C Charging Cable,1,11.95,2019-08-14 18:03:00,257 Pine St, Boston,MA,02215 +243276,Bose SoundSport Headphones,1,99.99,2019-08-21 19:56:00,315 7th St, San Francisco,CA,94016 +243277,ThinkPad Laptop,1,999.99,2019-08-22 12:08:00,276 Spruce St, Dallas,TX,75001 +243278,Lightning Charging Cable,1,14.95,2019-08-25 17:19:00,226 Sunset St, Dallas,TX,75001 +243279,Apple Airpods Headphones,1,150.0,2019-08-02 12:05:00,585 South St, Austin,TX,73301 +243280,Wired Headphones,1,11.99,2019-08-19 19:04:00,729 River St, San Francisco,CA,94016 +243281,Lightning Charging Cable,1,14.95,2019-08-27 11:20:00,895 Washington St, San Francisco,CA,94016 +243282,Lightning Charging Cable,1,14.95,2019-08-14 12:02:00,272 River St, Atlanta,GA,30301 +243283,Wired Headphones,1,11.99,2019-08-31 21:06:00,18 Main St, Los Angeles,CA,90001 +243284,Google Phone,1,600.0,2019-08-17 18:30:00,495 Walnut St, Los Angeles,CA,90001 +243285,AA Batteries (4-pack),1,3.84,2019-08-08 20:42:00,721 Willow St, Atlanta,GA,30301 +243286,Wired Headphones,1,11.99,2019-08-16 14:50:00,347 Cherry St, Boston,MA,02215 +243287,Apple Airpods Headphones,1,150.0,2019-08-14 19:25:00,514 River St, Los Angeles,CA,90001 +243288,27in 4K Gaming Monitor,1,389.99,2019-08-24 13:29:00,821 Chestnut St, Atlanta,GA,30301 +243289,34in Ultrawide Monitor,1,379.99,2019-08-18 17:59:00,304 South St, Portland,OR,97035 +243290,AAA Batteries (4-pack),1,2.99,2019-08-31 20:41:00,189 Ridge St, San Francisco,CA,94016 +243291,Flatscreen TV,1,300.0,2019-08-19 12:35:00,284 Main St, Los Angeles,CA,90001 +243292,AA Batteries (4-pack),2,3.84,2019-08-07 16:40:00,366 Johnson St, San Francisco,CA,94016 +243293,USB-C Charging Cable,1,11.95,2019-08-04 19:15:00,980 Willow St, Dallas,TX,75001 +243294,iPhone,1,700.0,2019-08-02 17:47:00,845 North St, New York City,NY,10001 +243295,USB-C Charging Cable,1,11.95,2019-08-28 16:01:00,15 Sunset St, Los Angeles,CA,90001 +243296,USB-C Charging Cable,1,11.95,2019-08-15 21:14:00,707 Lakeview St, New York City,NY,10001 +243297,ThinkPad Laptop,1,999.99,2019-08-11 11:12:00,684 7th St, Los Angeles,CA,90001 +243298,AAA Batteries (4-pack),3,2.99,2019-08-08 12:02:00,71 Dogwood St, New York City,NY,10001 +243299,USB-C Charging Cable,1,11.95,2019-08-08 15:36:00,656 Meadow St, Los Angeles,CA,90001 +243300,LG Washing Machine,1,600.0,2019-08-16 18:57:00,604 Ridge St, San Francisco,CA,94016 +243301,AA Batteries (4-pack),4,3.84,2019-08-24 12:37:00,654 Cherry St, Portland,OR,97035 +243302,USB-C Charging Cable,1,11.95,2019-08-27 10:22:00,150 Spruce St, Dallas,TX,75001 +243303,20in Monitor,1,109.99,2019-08-28 08:56:00,992 Cedar St, New York City,NY,10001 +243304,AA Batteries (4-pack),2,3.84,2019-08-25 18:32:00,716 Lake St, San Francisco,CA,94016 +243305,Vareebadd Phone,1,400.0,2019-08-28 20:58:00,401 Chestnut St, San Francisco,CA,94016 +243305,Bose SoundSport Headphones,1,99.99,2019-08-28 20:58:00,401 Chestnut St, San Francisco,CA,94016 +243306,Vareebadd Phone,1,400.0,2019-08-07 13:56:00,774 12th St, Atlanta,GA,30301 +243306,USB-C Charging Cable,1,11.95,2019-08-07 13:56:00,774 12th St, Atlanta,GA,30301 +243307,Apple Airpods Headphones,1,150.0,2019-08-29 10:16:00,47 11th St, San Francisco,CA,94016 +243308,Wired Headphones,1,11.99,2019-08-24 13:10:00,722 West St, New York City,NY,10001 +243309,ThinkPad Laptop,1,999.99,2019-08-03 21:09:00,40 Jackson St, Austin,TX,73301 +243310,27in 4K Gaming Monitor,1,389.99,2019-08-26 16:52:00,111 South St, Los Angeles,CA,90001 +243311,Lightning Charging Cable,1,14.95,2019-08-09 14:59:00,477 Hill St, New York City,NY,10001 +243312,iPhone,1,700.0,2019-08-08 20:50:00,756 Johnson St, Austin,TX,73301 +243313,Macbook Pro Laptop,1,1700.0,2019-08-06 12:11:00,420 5th St, Dallas,TX,75001 +243314,USB-C Charging Cable,1,11.95,2019-08-24 23:29:00,469 Cedar St, Seattle,WA,98101 +243315,Bose SoundSport Headphones,1,99.99,2019-08-10 14:27:00,312 Cherry St, Portland,OR,97035 +243316,USB-C Charging Cable,1,11.95,2019-08-22 12:36:00,112 Madison St, San Francisco,CA,94016 +243317,Lightning Charging Cable,1,14.95,2019-08-27 19:27:00,187 Willow St, Seattle,WA,98101 +243318,AAA Batteries (4-pack),2,2.99,2019-08-07 18:18:00,685 Washington St, Portland,OR,97035 +243319,iPhone,1,700.0,2019-08-06 13:50:00,114 Ridge St, San Francisco,CA,94016 +243320,34in Ultrawide Monitor,1,379.99,2019-08-15 07:09:00,29 Main St, Boston,MA,02215 +243321,AAA Batteries (4-pack),1,2.99,2019-08-05 19:44:00,182 7th St, Austin,TX,73301 +243322,Wired Headphones,1,11.99,2019-08-11 19:38:00,48 4th St, Portland,OR,97035 +243323,27in FHD Monitor,1,149.99,2019-08-18 13:05:00,976 6th St, Seattle,WA,98101 +243324,AAA Batteries (4-pack),1,2.99,2019-08-16 11:37:00,330 Walnut St, Los Angeles,CA,90001 +243325,Apple Airpods Headphones,1,150.0,2019-08-07 12:22:00,845 7th St, Seattle,WA,98101 +243326,Bose SoundSport Headphones,1,99.99,2019-08-28 10:24:00,861 2nd St, Los Angeles,CA,90001 +243327,AAA Batteries (4-pack),1,2.99,2019-08-28 14:49:00,727 Jefferson St, New York City,NY,10001 +243328,ThinkPad Laptop,1,999.99,2019-08-21 10:36:00,746 Main St, San Francisco,CA,94016 +243329,Apple Airpods Headphones,1,150.0,2019-08-13 17:06:00,468 Cherry St, Dallas,TX,75001 +243330,Apple Airpods Headphones,2,150.0,2019-08-16 20:51:00,60 9th St, Los Angeles,CA,90001 +243331,AA Batteries (4-pack),1,3.84,2019-08-28 03:25:00,724 Jackson St, Austin,TX,73301 +243332,AAA Batteries (4-pack),1,2.99,2019-08-17 10:56:00,593 Meadow St, San Francisco,CA,94016 +243332,Apple Airpods Headphones,1,150.0,2019-08-17 10:56:00,593 Meadow St, San Francisco,CA,94016 +243333,27in 4K Gaming Monitor,1,389.99,2019-08-08 19:25:00,172 2nd St, San Francisco,CA,94016 +243334,AAA Batteries (4-pack),1,2.99,2019-08-12 23:25:00,511 Highland St, Seattle,WA,98101 +243335,Google Phone,1,600.0,2019-08-02 22:02:00,162 Cedar St, Los Angeles,CA,90001 +243336,Lightning Charging Cable,1,14.95,2019-08-02 21:13:00,295 Maple St, San Francisco,CA,94016 +243337,34in Ultrawide Monitor,1,379.99,2019-08-30 21:45:00,885 5th St, Los Angeles,CA,90001 +243338,LG Dryer,1,600.0,2019-08-28 09:53:00,421 Willow St, Los Angeles,CA,90001 +243339,Bose SoundSport Headphones,1,99.99,2019-08-05 18:00:00,710 9th St, Seattle,WA,98101 +243340,34in Ultrawide Monitor,1,379.99,2019-08-29 12:01:00,842 South St, Seattle,WA,98101 +243341,USB-C Charging Cable,1,11.95,2019-08-12 10:21:00,477 Cherry St, New York City,NY,10001 +243342,AAA Batteries (4-pack),1,2.99,2019-08-16 09:32:00,984 North St, Portland,OR,97035 +243342,27in FHD Monitor,1,149.99,2019-08-16 09:32:00,984 North St, Portland,OR,97035 +243343,Bose SoundSport Headphones,1,99.99,2019-08-28 23:20:00,871 Park St, San Francisco,CA,94016 +243344,20in Monitor,1,109.99,2019-08-18 14:22:00,640 Main St, Seattle,WA,98101 +243345,AA Batteries (4-pack),2,3.84,2019-08-22 19:52:00,82 Dogwood St, Portland,OR,97035 +243346,Lightning Charging Cable,1,14.95,2019-08-02 14:01:00,299 1st St, Los Angeles,CA,90001 +243347,Bose SoundSport Headphones,1,99.99,2019-08-29 00:58:00,910 Lake St, San Francisco,CA,94016 +243348,AAA Batteries (4-pack),1,2.99,2019-08-10 13:40:00,160 Willow St, Seattle,WA,98101 +243349,Macbook Pro Laptop,1,1700.0,2019-08-05 10:32:00,106 Lincoln St, Los Angeles,CA,90001 +243350,34in Ultrawide Monitor,1,379.99,2019-08-25 09:55:00,986 Elm St, San Francisco,CA,94016 +243351,Bose SoundSport Headphones,1,99.99,2019-08-02 12:45:00,727 Church St, San Francisco,CA,94016 +243352,Wired Headphones,1,11.99,2019-08-26 16:20:00,910 Pine St, San Francisco,CA,94016 +243353,Bose SoundSport Headphones,1,99.99,2019-08-28 17:32:00,728 Lincoln St, Los Angeles,CA,90001 +243354,AA Batteries (4-pack),1,3.84,2019-08-14 18:23:00,291 Adams St, San Francisco,CA,94016 +243355,AA Batteries (4-pack),1,3.84,2019-08-15 15:49:00,796 2nd St, Austin,TX,73301 +243356,Bose SoundSport Headphones,1,99.99,2019-08-08 09:29:00,138 Jefferson St, Los Angeles,CA,90001 +243357,USB-C Charging Cable,1,11.95,2019-08-22 20:20:00,604 West St, San Francisco,CA,94016 +243358,iPhone,1,700.0,2019-08-24 14:23:00,535 Willow St, Portland,OR,97035 +243359,Lightning Charging Cable,1,14.95,2019-08-04 02:20:00,760 Park St, Los Angeles,CA,90001 +243360,Lightning Charging Cable,1,14.95,2019-08-22 12:20:00,597 Maple St, Atlanta,GA,30301 +243361,USB-C Charging Cable,1,11.95,2019-08-10 17:45:00,926 Elm St, Los Angeles,CA,90001 +243362,Macbook Pro Laptop,1,1700.0,2019-08-14 13:29:00,509 Jefferson St, New York City,NY,10001 +243363,Apple Airpods Headphones,1,150.0,2019-08-06 11:05:00,70 13th St, Los Angeles,CA,90001 +243364,USB-C Charging Cable,1,11.95,2019-08-07 20:58:00,411 Hill St, San Francisco,CA,94016 +243365,Lightning Charging Cable,1,14.95,2019-08-27 11:53:00,621 Chestnut St, Austin,TX,73301 +243366,Bose SoundSport Headphones,1,99.99,2019-08-08 11:37:00,41 Jackson St, San Francisco,CA,94016 +243367,Wired Headphones,1,11.99,2019-08-06 00:05:00,571 Washington St, New York City,NY,10001 +243368,Wired Headphones,1,11.99,2019-08-01 10:23:00,970 Madison St, San Francisco,CA,94016 +243369,iPhone,1,700.0,2019-08-31 16:31:00,815 Forest St, San Francisco,CA,94016 +243370,Apple Airpods Headphones,1,150.0,2019-08-04 20:24:00,831 4th St, San Francisco,CA,94016 +243371,Apple Airpods Headphones,1,150.0,2019-08-10 13:01:00,964 11th St, Los Angeles,CA,90001 +243372,USB-C Charging Cable,1,11.95,2019-08-25 08:16:00,339 Chestnut St, Portland,ME,04101 +243373,AAA Batteries (4-pack),1,2.99,2019-08-10 18:34:00,424 1st St, Los Angeles,CA,90001 +243374,USB-C Charging Cable,1,11.95,2019-08-01 09:03:00,913 Jefferson St, New York City,NY,10001 +243375,27in 4K Gaming Monitor,1,389.99,2019-08-25 13:14:00,772 Sunset St, Portland,OR,97035 +243376,USB-C Charging Cable,1,11.95,2019-08-27 02:20:00,170 Wilson St, Dallas,TX,75001 +243377,Bose SoundSport Headphones,1,99.99,2019-08-01 13:39:00,280 Walnut St, San Francisco,CA,94016 +243378,USB-C Charging Cable,1,11.95,2019-08-08 15:04:00,305 4th St, Los Angeles,CA,90001 +243379,AAA Batteries (4-pack),1,2.99,2019-08-06 14:59:00,485 Elm St, Dallas,TX,75001 +243380,Apple Airpods Headphones,1,150.0,2019-08-04 10:04:00,585 Johnson St, Atlanta,GA,30301 +243381,AAA Batteries (4-pack),2,2.99,2019-08-04 14:04:00,959 Madison St, Seattle,WA,98101 +243382,USB-C Charging Cable,1,11.95,2019-08-13 01:22:00,277 Lincoln St, New York City,NY,10001 +243383,Wired Headphones,1,11.99,2019-08-14 19:58:00,885 Spruce St, San Francisco,CA,94016 +243384,AAA Batteries (4-pack),1,2.99,2019-08-16 13:21:00,835 Walnut St, Seattle,WA,98101 +243385,AAA Batteries (4-pack),1,2.99,2019-08-06 09:32:00,427 Main St, Portland,OR,97035 +243386,27in 4K Gaming Monitor,1,389.99,2019-08-31 07:57:00,207 North St, New York City,NY,10001 +243387,20in Monitor,1,109.99,2019-08-07 22:20:00,854 Chestnut St, Los Angeles,CA,90001 +243387,iPhone,1,700.0,2019-08-07 22:20:00,854 Chestnut St, Los Angeles,CA,90001 +243388,USB-C Charging Cable,1,11.95,2019-08-18 20:41:00,447 Washington St, San Francisco,CA,94016 +243389,Flatscreen TV,1,300.0,2019-08-22 13:33:00,298 Cherry St, Atlanta,GA,30301 +243390,ThinkPad Laptop,1,999.99,2019-08-05 15:00:00,844 6th St, San Francisco,CA,94016 +243391,USB-C Charging Cable,1,11.95,2019-08-03 20:34:00,488 7th St, Austin,TX,73301 +243392,Bose SoundSport Headphones,1,99.99,2019-08-07 15:20:00,412 Spruce St, San Francisco,CA,94016 +243393,AA Batteries (4-pack),1,3.84,2019-08-06 13:39:00,251 Center St, Boston,MA,02215 +243394,AAA Batteries (4-pack),1,2.99,2019-08-28 10:50:00,431 Adams St, Los Angeles,CA,90001 +243395,USB-C Charging Cable,1,11.95,2019-08-01 15:12:00,659 6th St, Seattle,WA,98101 +243396,27in 4K Gaming Monitor,1,389.99,2019-08-15 18:03:00,148 11th St, San Francisco,CA,94016 +243397,AAA Batteries (4-pack),3,2.99,2019-08-18 20:53:00,16 Church St, Los Angeles,CA,90001 +243398,Apple Airpods Headphones,1,150.0,2019-08-31 15:04:00,240 Lakeview St, Dallas,TX,75001 +243399,Apple Airpods Headphones,1,150.0,2019-08-05 21:32:00,348 11th St, New York City,NY,10001 +243400,AA Batteries (4-pack),2,3.84,2019-08-20 15:49:00,27 4th St, Atlanta,GA,30301 +243401,AA Batteries (4-pack),1,3.84,2019-08-31 18:34:00,412 10th St, Portland,OR,97035 +243402,AAA Batteries (4-pack),1,2.99,2019-08-02 12:24:00,492 West St, Seattle,WA,98101 +243403,AAA Batteries (4-pack),3,2.99,2019-08-26 18:44:00,355 Hickory St, Boston,MA,02215 +243404,AAA Batteries (4-pack),1,2.99,2019-08-22 12:57:00,234 2nd St, Los Angeles,CA,90001 +243405,USB-C Charging Cable,1,11.95,2019-08-11 13:41:00,88 Spruce St, Seattle,WA,98101 +243406,ThinkPad Laptop,1,999.99,2019-08-05 21:15:00,514 5th St, San Francisco,CA,94016 +243407,AAA Batteries (4-pack),1,2.99,2019-08-27 11:54:00,457 South St, Austin,TX,73301 +243408,AAA Batteries (4-pack),1,2.99,2019-08-01 22:36:00,404 Madison St, San Francisco,CA,94016 +243409,AAA Batteries (4-pack),2,2.99,2019-08-29 16:39:00,815 10th St, Austin,TX,73301 +243410,Lightning Charging Cable,1,14.95,2019-08-07 01:27:00,114 1st St, Boston,MA,02215 +243411,AAA Batteries (4-pack),1,2.99,2019-08-11 18:54:00,256 6th St, Boston,MA,02215 +243412,27in 4K Gaming Monitor,1,389.99,2019-08-01 20:16:00,998 11th St, Dallas,TX,75001 +243413,AA Batteries (4-pack),1,3.84,2019-08-15 09:27:00,435 Hickory St, Atlanta,GA,30301 +243414,USB-C Charging Cable,1,11.95,2019-08-23 11:17:00,518 Jackson St, Los Angeles,CA,90001 +243415,34in Ultrawide Monitor,1,379.99,2019-08-26 23:20:00,558 4th St, Dallas,TX,75001 +243416,Wired Headphones,1,11.99,2019-08-20 08:48:00,47 Washington St, New York City,NY,10001 +243417,27in 4K Gaming Monitor,1,389.99,2019-08-23 20:59:00,99 10th St, New York City,NY,10001 +243418,Lightning Charging Cable,1,14.95,2019-08-19 20:50:00,811 13th St, San Francisco,CA,94016 +243419,Lightning Charging Cable,1,14.95,2019-08-24 17:25:00,522 Lake St, Los Angeles,CA,90001 +243420,Wired Headphones,1,11.99,2019-08-22 14:35:00,871 Ridge St, Atlanta,GA,30301 +243420,Lightning Charging Cable,1,14.95,2019-08-22 14:35:00,871 Ridge St, Atlanta,GA,30301 +243421,AA Batteries (4-pack),1,3.84,2019-08-04 12:13:00,44 South St, Portland,OR,97035 +243422,USB-C Charging Cable,1,11.95,2019-08-08 11:56:00,341 Maple St, Boston,MA,02215 +243423,AA Batteries (4-pack),1,3.84,2019-08-18 22:54:00,507 7th St, Dallas,TX,75001 +243424,27in 4K Gaming Monitor,1,389.99,2019-08-10 23:16:00,680 Main St, Los Angeles,CA,90001 +243425,AA Batteries (4-pack),1,3.84,2019-08-10 18:08:00,587 Highland St, Boston,MA,02215 +243426,AAA Batteries (4-pack),1,2.99,2019-08-01 23:25:00,65 Hill St, Boston,MA,02215 +243427,Apple Airpods Headphones,1,150.0,2019-08-20 01:45:00,346 Park St, Seattle,WA,98101 +243428,Apple Airpods Headphones,1,150.0,2019-08-14 17:32:00,351 8th St, San Francisco,CA,94016 +243429,AA Batteries (4-pack),4,3.84,2019-08-17 12:40:00,566 Pine St, Seattle,WA,98101 +243430,LG Dryer,1,600.0,2019-08-17 07:31:00,20 12th St, Dallas,TX,75001 +243431,Vareebadd Phone,1,400.0,2019-08-29 12:43:00,177 Forest St, Los Angeles,CA,90001 +243432,Google Phone,1,600.0,2019-08-26 11:46:00,444 10th St, Atlanta,GA,30301 +243432,USB-C Charging Cable,1,11.95,2019-08-26 11:46:00,444 10th St, Atlanta,GA,30301 +243433,USB-C Charging Cable,1,11.95,2019-08-07 12:16:00,264 Spruce St, Atlanta,GA,30301 +243434,Apple Airpods Headphones,1,150.0,2019-08-25 21:03:00,74 Meadow St, Boston,MA,02215 +243435,Lightning Charging Cable,1,14.95,2019-08-30 18:34:00,459 Park St, San Francisco,CA,94016 +243436,Wired Headphones,2,11.99,2019-08-15 16:45:00,167 Chestnut St, Dallas,TX,75001 +243437,27in 4K Gaming Monitor,1,389.99,2019-08-23 13:30:00,393 North St, Seattle,WA,98101 +243438,ThinkPad Laptop,1,999.99,2019-08-02 14:07:00,486 Jefferson St, Austin,TX,73301 +243439,27in 4K Gaming Monitor,1,389.99,2019-08-06 11:30:00,760 Cherry St, San Francisco,CA,94016 +243440,Wired Headphones,1,11.99,2019-08-17 20:50:00,994 West St, San Francisco,CA,94016 +243441,Wired Headphones,1,11.99,2019-08-02 11:24:00,727 Hickory St, Boston,MA,02215 +243442,Flatscreen TV,1,300.0,2019-08-29 14:35:00,968 Maple St, New York City,NY,10001 +243443,Wired Headphones,1,11.99,2019-08-26 15:30:00,536 Hill St, Austin,TX,73301 +243444,Google Phone,1,600.0,2019-08-25 09:30:00,242 Main St, Seattle,WA,98101 +243444,USB-C Charging Cable,1,11.95,2019-08-25 09:30:00,242 Main St, Seattle,WA,98101 +243445,Bose SoundSport Headphones,1,99.99,2019-08-29 18:39:00,254 Lincoln St, San Francisco,CA,94016 +243446,AA Batteries (4-pack),1,3.84,2019-08-16 14:45:00,973 Hill St, Atlanta,GA,30301 +243447,Wired Headphones,1,11.99,2019-08-31 19:54:00,409 Lakeview St, Seattle,WA,98101 +243448,Bose SoundSport Headphones,1,99.99,2019-08-28 09:45:00,918 Cherry St, Seattle,WA,98101 +243449,Lightning Charging Cable,1,14.95,2019-08-30 05:42:00,455 2nd St, Portland,OR,97035 +243450,Bose SoundSport Headphones,1,99.99,2019-08-20 21:05:00,483 River St, San Francisco,CA,94016 +243450,Lightning Charging Cable,1,14.95,2019-08-20 21:05:00,483 River St, San Francisco,CA,94016 +243451,AA Batteries (4-pack),1,3.84,2019-08-17 13:26:00,547 7th St, Los Angeles,CA,90001 +243452,34in Ultrawide Monitor,1,379.99,2019-08-15 10:51:00,752 South St, Atlanta,GA,30301 +243453,AAA Batteries (4-pack),3,2.99,2019-08-07 22:05:00,730 Dogwood St, Los Angeles,CA,90001 +243454,Lightning Charging Cable,1,14.95,2019-08-01 05:13:00,50 9th St, Los Angeles,CA,90001 +243455,USB-C Charging Cable,2,11.95,2019-08-26 13:21:00,765 14th St, New York City,NY,10001 +243456,USB-C Charging Cable,1,11.95,2019-08-06 11:51:00,92 Forest St, Atlanta,GA,30301 +243457,27in FHD Monitor,1,149.99,2019-08-28 11:35:00,929 Lakeview St, Portland,OR,97035 +243458,27in FHD Monitor,1,149.99,2019-08-12 23:42:00,374 Center St, San Francisco,CA,94016 +243459,Apple Airpods Headphones,1,150.0,2019-08-29 20:52:00,65 Jackson St, Portland,OR,97035 +243460,iPhone,1,700.0,2019-08-06 10:35:00,845 Wilson St, Portland,OR,97035 +243461,Flatscreen TV,1,300.0,2019-08-09 17:58:00,481 9th St, San Francisco,CA,94016 +243462,AAA Batteries (4-pack),1,2.99,2019-08-23 19:01:00,819 Cedar St, New York City,NY,10001 +243463,AA Batteries (4-pack),1,3.84,2019-08-02 13:29:00,983 Jackson St, Atlanta,GA,30301 +243464,Wired Headphones,1,11.99,2019-08-30 14:40:00,967 Park St, Los Angeles,CA,90001 +243465,AAA Batteries (4-pack),1,2.99,2019-08-18 15:41:00,123 13th St, San Francisco,CA,94016 +243466,AA Batteries (4-pack),1,3.84,2019-08-13 18:52:00,573 7th St, San Francisco,CA,94016 +243467,AA Batteries (4-pack),1,3.84,2019-08-18 23:16:00,726 Johnson St, San Francisco,CA,94016 +243468,LG Washing Machine,1,600.0,2019-08-04 14:32:00,195 Dogwood St, New York City,NY,10001 +243469,AA Batteries (4-pack),1,3.84,2019-08-03 10:02:00,115 Forest St, Boston,MA,02215 +243470,iPhone,1,700.0,2019-08-09 20:37:00,165 9th St, San Francisco,CA,94016 +243471,Flatscreen TV,1,300.0,2019-08-07 12:36:00,815 Lincoln St, Atlanta,GA,30301 +243472,Flatscreen TV,1,300.0,2019-08-12 11:27:00,730 River St, Boston,MA,02215 +243473,AA Batteries (4-pack),1,3.84,2019-08-05 00:19:00,297 West St, San Francisco,CA,94016 +243474,Wired Headphones,1,11.99,2019-08-04 07:59:00,497 South St, Austin,TX,73301 +243475,Apple Airpods Headphones,1,150.0,2019-08-29 01:39:00,994 Meadow St, New York City,NY,10001 +243476,Lightning Charging Cable,1,14.95,2019-08-23 19:20:00,254 Willow St, Seattle,WA,98101 +243477,USB-C Charging Cable,1,11.95,2019-08-09 22:41:00,392 Willow St, Los Angeles,CA,90001 +243478,27in 4K Gaming Monitor,1,389.99,2019-08-31 10:42:00,439 4th St, New York City,NY,10001 +243479,20in Monitor,1,109.99,2019-08-05 15:38:00,988 Park St, Atlanta,GA,30301 +243480,Bose SoundSport Headphones,1,99.99,2019-08-05 20:37:00,609 2nd St, Portland,OR,97035 +243481,27in FHD Monitor,1,149.99,2019-08-25 16:56:00,880 4th St, New York City,NY,10001 +243482,AAA Batteries (4-pack),1,2.99,2019-08-12 09:02:00,17 Center St, San Francisco,CA,94016 +243483,Wired Headphones,1,11.99,2019-08-23 11:42:00,439 6th St, Los Angeles,CA,90001 +243484,AAA Batteries (4-pack),2,2.99,2019-08-08 12:24:00,547 Willow St, San Francisco,CA,94016 +243485,27in FHD Monitor,1,149.99,2019-08-12 20:43:00,90 Wilson St, Portland,ME,04101 +243486,AAA Batteries (4-pack),1,2.99,2019-08-05 14:56:00,476 4th St, New York City,NY,10001 +243487,USB-C Charging Cable,1,11.95,2019-08-07 09:15:00,648 Hickory St, Austin,TX,73301 +243488,iPhone,1,700.0,2019-08-13 11:20:00,530 Lincoln St, San Francisco,CA,94016 +243489,AA Batteries (4-pack),1,3.84,2019-08-09 08:21:00,642 Madison St, Los Angeles,CA,90001 +243490,Apple Airpods Headphones,1,150.0,2019-08-14 20:11:00,164 North St, San Francisco,CA,94016 +243491,27in FHD Monitor,1,149.99,2019-08-19 09:07:00,294 7th St, San Francisco,CA,94016 +243492,Lightning Charging Cable,1,14.95,2019-08-04 09:08:00,131 14th St, Los Angeles,CA,90001 +243493,AAA Batteries (4-pack),1,2.99,2019-08-10 13:11:00,170 Meadow St, San Francisco,CA,94016 +243494,Wired Headphones,1,11.99,2019-08-23 12:59:00,261 Dogwood St, San Francisco,CA,94016 +243495,AA Batteries (4-pack),1,3.84,2019-08-27 16:53:00,618 9th St, Atlanta,GA,30301 +243496,AA Batteries (4-pack),1,3.84,2019-08-09 21:21:00,381 Highland St, San Francisco,CA,94016 +243497,AA Batteries (4-pack),1,3.84,2019-08-25 00:35:00,457 Cedar St, Los Angeles,CA,90001 +243498,Lightning Charging Cable,1,14.95,2019-08-09 11:55:00,891 13th St, Los Angeles,CA,90001 +243499,Google Phone,1,600.0,2019-08-27 14:39:00,651 Center St, New York City,NY,10001 +243500,27in 4K Gaming Monitor,1,389.99,2019-08-09 09:18:00,816 Willow St, Los Angeles,CA,90001 +243501,Wired Headphones,1,11.99,2019-08-15 11:02:00,188 4th St, New York City,NY,10001 +243502,34in Ultrawide Monitor,1,379.99,2019-08-19 18:46:00,911 Lincoln St, San Francisco,CA,94016 +243503,Google Phone,1,600.0,2019-08-21 21:06:00,167 2nd St, Boston,MA,02215 +243503,Wired Headphones,1,11.99,2019-08-21 21:06:00,167 2nd St, Boston,MA,02215 +243504,USB-C Charging Cable,1,11.95,2019-08-31 19:30:00,483 Meadow St, Portland,OR,97035 +243505,AA Batteries (4-pack),1,3.84,2019-08-30 13:09:00,148 4th St, Los Angeles,CA,90001 +243506,Lightning Charging Cable,1,14.95,2019-08-21 15:22:00,592 Hill St, San Francisco,CA,94016 +243507,AA Batteries (4-pack),1,3.84,2019-08-06 19:19:00,820 7th St, New York City,NY,10001 +243507,Apple Airpods Headphones,1,150.0,2019-08-06 19:19:00,820 7th St, New York City,NY,10001 +243508,Apple Airpods Headphones,1,150.0,2019-08-18 13:29:00,566 14th St, Los Angeles,CA,90001 +243509,Apple Airpods Headphones,1,150.0,2019-08-10 18:17:00,987 Adams St, New York City,NY,10001 +243510,AA Batteries (4-pack),1,3.84,2019-08-24 12:55:00,534 Hickory St, San Francisco,CA,94016 +243511,Bose SoundSport Headphones,1,99.99,2019-08-22 06:30:00,343 Pine St, Atlanta,GA,30301 +243512,Bose SoundSport Headphones,1,99.99,2019-08-05 18:41:00,526 Chestnut St, Dallas,TX,75001 +243513,Google Phone,1,600.0,2019-08-27 02:17:00,462 2nd St, Dallas,TX,75001 +243514,AAA Batteries (4-pack),1,2.99,2019-08-02 14:58:00,161 North St, Los Angeles,CA,90001 +243515,Bose SoundSport Headphones,1,99.99,2019-08-08 08:48:00,893 2nd St, Dallas,TX,75001 +243516,AAA Batteries (4-pack),1,2.99,2019-08-20 20:21:00,656 Jackson St, Dallas,TX,75001 +243517,AA Batteries (4-pack),1,3.84,2019-08-31 12:04:00,916 Elm St, Dallas,TX,75001 +243517,Lightning Charging Cable,1,14.95,2019-08-31 12:04:00,916 Elm St, Dallas,TX,75001 +243518,AAA Batteries (4-pack),3,2.99,2019-08-04 13:44:00,336 8th St, Austin,TX,73301 +243519,AA Batteries (4-pack),2,3.84,2019-08-09 14:57:00,178 North St, Portland,ME,04101 +243520,USB-C Charging Cable,1,11.95,2019-08-02 08:26:00,885 Hill St, Dallas,TX,75001 +243521,Apple Airpods Headphones,1,150.0,2019-08-03 19:10:00,281 Cherry St, Dallas,TX,75001 +243522,Lightning Charging Cable,1,14.95,2019-08-18 20:05:00,889 Hill St, Portland,OR,97035 +243523,iPhone,1,700.0,2019-08-07 20:45:00,361 Lake St, New York City,NY,10001 +243523,Apple Airpods Headphones,1,150.0,2019-08-07 20:45:00,361 Lake St, New York City,NY,10001 +243524,USB-C Charging Cable,1,11.95,2019-08-17 23:21:00,126 Cedar St, New York City,NY,10001 +243525,20in Monitor,1,109.99,2019-08-23 21:07:00,556 13th St, Seattle,WA,98101 +243526,Bose SoundSport Headphones,1,99.99,2019-08-07 10:46:00,387 Wilson St, San Francisco,CA,94016 +243527,AA Batteries (4-pack),1,3.84,2019-08-24 13:58:00,644 4th St, San Francisco,CA,94016 +243528,Bose SoundSport Headphones,1,99.99,2019-08-08 13:06:00,723 Maple St, New York City,NY,10001 +243529,USB-C Charging Cable,2,11.95,2019-08-26 08:10:00,400 9th St, San Francisco,CA,94016 +243530,Vareebadd Phone,1,400.0,2019-08-06 17:59:00,292 Jefferson St, Atlanta,GA,30301 +243530,Bose SoundSport Headphones,1,99.99,2019-08-06 17:59:00,292 Jefferson St, Atlanta,GA,30301 +243531,USB-C Charging Cable,1,11.95,2019-08-19 23:22:00,832 10th St, Seattle,WA,98101 +243532,27in FHD Monitor,1,149.99,2019-08-17 22:56:00,104 Dogwood St, Austin,TX,73301 +243533,27in FHD Monitor,1,149.99,2019-08-15 12:15:00,638 1st St, Boston,MA,02215 +243534,Macbook Pro Laptop,1,1700.0,2019-08-21 22:17:00,197 Johnson St, San Francisco,CA,94016 +243535,AA Batteries (4-pack),1,3.84,2019-08-31 19:35:00,860 4th St, Dallas,TX,75001 +243536,AAA Batteries (4-pack),3,2.99,2019-08-16 06:37:00,303 Sunset St, Seattle,WA,98101 +243537,AA Batteries (4-pack),1,3.84,2019-08-02 19:50:00,718 Meadow St, Los Angeles,CA,90001 +243538,27in 4K Gaming Monitor,1,389.99,2019-08-28 10:21:00,320 8th St, Portland,ME,04101 +243539,Wired Headphones,1,11.99,2019-08-26 10:02:00,6 Meadow St, San Francisco,CA,94016 +243540,AAA Batteries (4-pack),1,2.99,2019-08-21 22:03:00,438 Jackson St, New York City,NY,10001 +243541,Wired Headphones,1,11.99,2019-08-17 17:22:00,500 Forest St, San Francisco,CA,94016 +243542,USB-C Charging Cable,1,11.95,2019-08-19 20:20:00,748 1st St, Austin,TX,73301 +243543,Wired Headphones,2,11.99,2019-08-04 08:01:00,103 4th St, Portland,ME,04101 +243544,27in 4K Gaming Monitor,1,389.99,2019-08-08 05:58:00,956 Church St, San Francisco,CA,94016 +243545,USB-C Charging Cable,1,11.95,2019-08-23 15:02:00,908 Jackson St, Los Angeles,CA,90001 +243546,ThinkPad Laptop,1,999.99,2019-08-04 03:04:00,680 Lakeview St, Los Angeles,CA,90001 +243547,Vareebadd Phone,1,400.0,2019-08-03 09:40:00,714 6th St, Seattle,WA,98101 +243547,Wired Headphones,2,11.99,2019-08-03 09:40:00,714 6th St, Seattle,WA,98101 +243548,Macbook Pro Laptop,1,1700.0,2019-08-22 19:31:00,91 North St, Dallas,TX,75001 +243549,Lightning Charging Cable,1,14.95,2019-08-31 20:45:00,502 Dogwood St, Los Angeles,CA,90001 +243550,AAA Batteries (4-pack),2,2.99,2019-08-19 20:21:00,431 Sunset St, Los Angeles,CA,90001 +243551,Lightning Charging Cable,1,14.95,2019-08-23 13:21:00,753 2nd St, San Francisco,CA,94016 +243552,Google Phone,1,600.0,2019-08-22 10:03:00,561 Elm St, New York City,NY,10001 +243553,Lightning Charging Cable,1,14.95,2019-08-21 15:46:00,443 River St, Dallas,TX,75001 +243554,USB-C Charging Cable,1,11.95,2019-08-02 18:27:00,495 Cedar St, Boston,MA,02215 +243555,LG Washing Machine,1,600.0,2019-08-06 16:26:00,294 Johnson St, Seattle,WA,98101 +243556,Lightning Charging Cable,1,14.95,2019-08-04 18:24:00,774 10th St, Seattle,WA,98101 +243557,USB-C Charging Cable,1,11.95,2019-08-10 18:22:00,873 2nd St, San Francisco,CA,94016 +243558,AAA Batteries (4-pack),1,2.99,2019-08-05 11:11:00,925 Cedar St, San Francisco,CA,94016 +243559,Lightning Charging Cable,1,14.95,2019-08-03 11:49:00,783 Wilson St, Austin,TX,73301 +243559,20in Monitor,1,109.99,2019-08-03 11:49:00,783 Wilson St, Austin,TX,73301 +243560,Flatscreen TV,1,300.0,2019-08-22 21:42:00,128 Johnson St, New York City,NY,10001 +243561,Lightning Charging Cable,1,14.95,2019-08-20 10:01:00,998 1st St, San Francisco,CA,94016 +243562,34in Ultrawide Monitor,1,379.99,2019-08-10 16:30:00,879 14th St, Boston,MA,02215 +243563,Lightning Charging Cable,1,14.95,2019-08-24 15:30:00,950 Ridge St, Atlanta,GA,30301 +243564,USB-C Charging Cable,1,11.95,2019-08-17 12:55:00,534 4th St, New York City,NY,10001 +243565,27in FHD Monitor,1,149.99,2019-08-11 22:21:00,168 Willow St, Boston,MA,02215 +243566,Apple Airpods Headphones,1,150.0,2019-08-01 19:41:00,160 12th St, Seattle,WA,98101 +243567,USB-C Charging Cable,1,11.95,2019-08-15 12:34:00,626 Johnson St, San Francisco,CA,94016 +243568,Lightning Charging Cable,1,14.95,2019-08-18 14:37:00,270 5th St, New York City,NY,10001 +243569,27in 4K Gaming Monitor,1,389.99,2019-08-06 14:54:00,512 Park St, Los Angeles,CA,90001 +243570,27in FHD Monitor,1,149.99,2019-08-09 12:49:00,185 Maple St, San Francisco,CA,94016 +243571,Lightning Charging Cable,1,14.95,2019-08-26 10:28:00,225 1st St, San Francisco,CA,94016 +243572,USB-C Charging Cable,1,11.95,2019-08-24 20:48:00,732 Lincoln St, San Francisco,CA,94016 +243573,27in 4K Gaming Monitor,1,389.99,2019-08-12 15:02:00,743 Lake St, Atlanta,GA,30301 +243574,Wired Headphones,1,11.99,2019-08-26 23:09:00,13 Church St, New York City,NY,10001 +243575,Apple Airpods Headphones,1,150.0,2019-08-27 15:45:00,148 Jackson St, New York City,NY,10001 +243576,Bose SoundSport Headphones,1,99.99,2019-08-09 07:26:00,726 Johnson St, San Francisco,CA,94016 +243577,Lightning Charging Cable,2,14.95,2019-08-10 09:09:00,597 Jefferson St, Los Angeles,CA,90001 +243578,USB-C Charging Cable,1,11.95,2019-08-09 08:46:00,895 Jefferson St, San Francisco,CA,94016 +243579,LG Dryer,1,600.0,2019-08-06 19:38:00,374 Meadow St, New York City,NY,10001 +243580,Flatscreen TV,1,300.0,2019-08-11 20:56:00,653 Willow St, Austin,TX,73301 +243581,Macbook Pro Laptop,1,1700.0,2019-08-20 19:46:00,84 11th St, Portland,OR,97035 +243582,iPhone,1,700.0,2019-08-23 18:04:00,794 1st St, Boston,MA,02215 +243582,Lightning Charging Cable,1,14.95,2019-08-23 18:04:00,794 1st St, Boston,MA,02215 +243583,AA Batteries (4-pack),1,3.84,2019-08-26 20:15:00,177 12th St, Los Angeles,CA,90001 +243584,Bose SoundSport Headphones,1,99.99,2019-08-03 20:28:00,729 Walnut St, San Francisco,CA,94016 +243585,LG Dryer,1,600.0,2019-08-13 21:54:00,320 Lincoln St, Los Angeles,CA,90001 +243586,USB-C Charging Cable,1,11.95,2019-08-22 00:30:00,92 14th St, San Francisco,CA,94016 +243587,Lightning Charging Cable,1,14.95,2019-08-14 12:54:00,621 South St, New York City,NY,10001 +243588,Lightning Charging Cable,1,14.95,2019-08-31 09:37:00,169 14th St, San Francisco,CA,94016 +243589,AAA Batteries (4-pack),2,2.99,2019-08-07 17:33:00,358 Maple St, San Francisco,CA,94016 +243590,27in 4K Gaming Monitor,1,389.99,2019-08-08 17:15:00,656 10th St, Austin,TX,73301 +243591,AAA Batteries (4-pack),1,2.99,2019-08-17 14:07:00,602 7th St, New York City,NY,10001 +243592,27in FHD Monitor,1,149.99,2019-08-31 12:55:00,25 Jackson St, New York City,NY,10001 +243593,AA Batteries (4-pack),1,3.84,2019-08-10 09:25:00,881 13th St, Los Angeles,CA,90001 +243594,AAA Batteries (4-pack),4,2.99,2019-08-12 00:10:00,635 Meadow St, San Francisco,CA,94016 +243595,Apple Airpods Headphones,1,150.0,2019-08-05 20:34:00,943 Chestnut St, San Francisco,CA,94016 +243596,Lightning Charging Cable,1,14.95,2019-08-14 13:55:00,511 2nd St, Austin,TX,73301 +243597,Bose SoundSport Headphones,1,99.99,2019-08-10 12:10:00,967 Willow St, Los Angeles,CA,90001 +243598,USB-C Charging Cable,1,11.95,2019-08-12 07:29:00,574 Center St, San Francisco,CA,94016 +243599,AAA Batteries (4-pack),2,2.99,2019-08-21 14:46:00,706 Center St, San Francisco,CA,94016 +243600,Bose SoundSport Headphones,1,99.99,2019-08-23 22:06:00,935 6th St, San Francisco,CA,94016 +243601,Apple Airpods Headphones,1,150.0,2019-08-13 11:09:00,96 Cherry St, Seattle,WA,98101 +243602,27in 4K Gaming Monitor,1,389.99,2019-08-26 13:33:00,852 Washington St, Atlanta,GA,30301 +243603,Macbook Pro Laptop,1,1700.0,2019-08-09 12:39:00,862 Wilson St, Austin,TX,73301 +243604,Lightning Charging Cable,1,14.95,2019-08-06 08:58:00,727 2nd St, New York City,NY,10001 +243605,LG Dryer,1,600.0,2019-08-12 22:24:00,288 Walnut St, Seattle,WA,98101 +243606,AA Batteries (4-pack),2,3.84,2019-08-29 21:44:00,908 Meadow St, Los Angeles,CA,90001 +243607,AAA Batteries (4-pack),1,2.99,2019-08-16 11:08:00,303 Sunset St, Seattle,WA,98101 +243608,27in FHD Monitor,1,149.99,2019-08-14 07:25:00,865 5th St, Los Angeles,CA,90001 +243609,Macbook Pro Laptop,1,1700.0,2019-08-23 11:05:00,908 Chestnut St, San Francisco,CA,94016 +243610,Google Phone,1,600.0,2019-08-30 10:34:00,253 Main St, Seattle,WA,98101 +243610,Wired Headphones,1,11.99,2019-08-30 10:34:00,253 Main St, Seattle,WA,98101 +243611,Lightning Charging Cable,1,14.95,2019-08-29 08:29:00,208 Meadow St, Los Angeles,CA,90001 +243612,Lightning Charging Cable,1,14.95,2019-08-16 22:59:00,989 Meadow St, Boston,MA,02215 +243613,34in Ultrawide Monitor,1,379.99,2019-08-26 22:49:00,108 Hill St, Atlanta,GA,30301 +243614,Wired Headphones,1,11.99,2019-08-10 22:22:00,364 Jefferson St, Boston,MA,02215 +243615,34in Ultrawide Monitor,1,379.99,2019-08-29 21:16:00,308 Hill St, Dallas,TX,75001 +243616,27in 4K Gaming Monitor,1,389.99,2019-08-01 13:59:00,920 Walnut St, San Francisco,CA,94016 +243617,Wired Headphones,1,11.99,2019-08-03 09:17:00,851 9th St, Boston,MA,02215 +243618,27in 4K Gaming Monitor,1,389.99,2019-08-26 14:47:00,223 Sunset St, Austin,TX,73301 +243619,USB-C Charging Cable,1,11.95,2019-08-28 18:45:00,836 Willow St, San Francisco,CA,94016 +243620,Apple Airpods Headphones,1,150.0,2019-08-20 00:16:00,381 Madison St, New York City,NY,10001 +243621,34in Ultrawide Monitor,1,379.99,2019-08-18 19:11:00,380 13th St, San Francisco,CA,94016 +243622,34in Ultrawide Monitor,1,379.99,2019-08-09 11:55:00,88 Hill St, San Francisco,CA,94016 +243623,Wired Headphones,1,11.99,2019-08-13 22:54:00,599 Highland St, Atlanta,GA,30301 +243624,27in FHD Monitor,1,149.99,2019-08-02 13:47:00,870 8th St, New York City,NY,10001 +243625,27in FHD Monitor,1,149.99,2019-08-12 18:24:00,824 Pine St, Portland,OR,97035 +243626,Lightning Charging Cable,1,14.95,2019-08-29 23:20:00,5 Jefferson St, Dallas,TX,75001 +243627,Lightning Charging Cable,1,14.95,2019-08-02 14:55:00,502 4th St, San Francisco,CA,94016 +243628,Apple Airpods Headphones,1,150.0,2019-08-18 10:12:00,721 Lincoln St, New York City,NY,10001 +243629,USB-C Charging Cable,3,11.95,2019-08-06 14:31:00,544 14th St, Seattle,WA,98101 +243630,Lightning Charging Cable,1,14.95,2019-08-25 18:00:00,924 5th St, Seattle,WA,98101 +243631,Wired Headphones,1,11.99,2019-08-17 21:04:00,222 North St, Austin,TX,73301 +243632,AA Batteries (4-pack),1,3.84,2019-08-09 10:01:00,180 Walnut St, Seattle,WA,98101 +243633,USB-C Charging Cable,1,11.95,2019-08-02 07:37:00,908 14th St, San Francisco,CA,94016 +243634,Wired Headphones,2,11.99,2019-08-05 13:00:00,588 Washington St, San Francisco,CA,94016 +243635,USB-C Charging Cable,1,11.95,2019-08-25 00:05:00,487 Washington St, Seattle,WA,98101 +243636,Vareebadd Phone,1,400.0,2019-08-26 12:47:00,188 Wilson St, Los Angeles,CA,90001 +243636,USB-C Charging Cable,1,11.95,2019-08-26 12:47:00,188 Wilson St, Los Angeles,CA,90001 +243637,Wired Headphones,1,11.99,2019-08-19 10:34:00,919 4th St, Dallas,TX,75001 +243638,AAA Batteries (4-pack),1,2.99,2019-08-06 12:00:00,628 River St, Portland,ME,04101 +243639,AAA Batteries (4-pack),1,2.99,2019-08-02 16:08:00,253 Highland St, Los Angeles,CA,90001 +243640,Wired Headphones,1,11.99,2019-08-29 18:57:00,380 Center St, Los Angeles,CA,90001 +243641,USB-C Charging Cable,1,11.95,2019-08-12 07:35:00,988 Lake St, Portland,OR,97035 +243642,Lightning Charging Cable,1,14.95,2019-08-05 21:26:00,250 11th St, Seattle,WA,98101 +243643,Lightning Charging Cable,2,14.95,2019-08-20 12:29:00,927 Lake St, Austin,TX,73301 +243644,Wired Headphones,1,11.99,2019-08-25 06:29:00,155 Chestnut St, San Francisco,CA,94016 +243645,USB-C Charging Cable,1,11.95,2019-08-31 12:06:00,529 Meadow St, New York City,NY,10001 +243646,iPhone,1,700.0,2019-08-29 21:23:00,386 River St, Dallas,TX,75001 +243647,Bose SoundSport Headphones,1,99.99,2019-08-04 18:54:00,605 Lake St, San Francisco,CA,94016 +243648,Apple Airpods Headphones,1,150.0,2019-08-05 12:05:00,933 Meadow St, Portland,OR,97035 +243649,Bose SoundSport Headphones,1,99.99,2019-08-22 10:52:00,564 Adams St, New York City,NY,10001 +243650,Lightning Charging Cable,1,14.95,2019-08-24 16:07:00,975 2nd St, San Francisco,CA,94016 +243651,Lightning Charging Cable,1,14.95,2019-08-04 09:15:00,529 8th St, Los Angeles,CA,90001 +243652,Bose SoundSport Headphones,1,99.99,2019-08-03 17:40:00,158 Johnson St, San Francisco,CA,94016 +243653,Lightning Charging Cable,1,14.95,2019-08-09 08:37:00,706 9th St, Atlanta,GA,30301 +243654,Apple Airpods Headphones,1,150.0,2019-08-27 18:35:00,408 Jackson St, Austin,TX,73301 +243655,USB-C Charging Cable,1,11.95,2019-08-27 14:29:00,695 4th St, New York City,NY,10001 +243656,Apple Airpods Headphones,1,150.0,2019-08-08 12:02:00,518 West St, Dallas,TX,75001 +243657,ThinkPad Laptop,1,999.99,2019-08-03 18:19:00,219 Johnson St, New York City,NY,10001 +243658,Wired Headphones,1,11.99,2019-08-24 13:34:00,837 Lincoln St, Los Angeles,CA,90001 +243659,AAA Batteries (4-pack),1,2.99,2019-08-10 21:20:00,635 Chestnut St, New York City,NY,10001 +243660,Lightning Charging Cable,1,14.95,2019-08-28 23:02:00,250 Wilson St, Boston,MA,02215 +243661,Apple Airpods Headphones,1,150.0,2019-08-02 16:04:00,219 Jefferson St, New York City,NY,10001 +243662,Apple Airpods Headphones,1,150.0,2019-08-29 14:42:00,628 9th St, San Francisco,CA,94016 +243663,Wired Headphones,1,11.99,2019-08-23 14:58:00,573 Adams St, Atlanta,GA,30301 +243664,Lightning Charging Cable,1,14.95,2019-08-18 22:20:00,238 West St, Los Angeles,CA,90001 +243665,Flatscreen TV,1,300.0,2019-08-11 22:12:00,477 Lakeview St, Portland,OR,97035 +243666,Vareebadd Phone,1,400.0,2019-08-30 20:04:00,593 Elm St, Seattle,WA,98101 +243666,Wired Headphones,1,11.99,2019-08-30 20:04:00,593 Elm St, Seattle,WA,98101 +243667,USB-C Charging Cable,1,11.95,2019-09-01 00:55:00,959 Center St, San Francisco,CA,94016 +243668,AA Batteries (4-pack),1,3.84,2019-08-10 23:25:00,22 Washington St, Los Angeles,CA,90001 +243669,27in 4K Gaming Monitor,1,389.99,2019-08-18 11:55:00,194 Lakeview St, San Francisco,CA,94016 +243670,Apple Airpods Headphones,1,150.0,2019-08-26 17:36:00,518 Jackson St, San Francisco,CA,94016 +243671,AA Batteries (4-pack),1,3.84,2019-08-29 09:19:00,362 6th St, San Francisco,CA,94016 +243672,AAA Batteries (4-pack),1,2.99,2019-08-22 12:22:00,920 River St, Boston,MA,02215 +243673,Lightning Charging Cable,1,14.95,2019-08-30 19:12:00,231 Church St, Los Angeles,CA,90001 +243674,AAA Batteries (4-pack),2,2.99,2019-08-29 14:40:00,192 Hill St, Seattle,WA,98101 +243675,Wired Headphones,1,11.99,2019-08-07 17:51:00,734 Willow St, New York City,NY,10001 +243676,AA Batteries (4-pack),3,3.84,2019-08-24 18:30:00,95 Chestnut St, Los Angeles,CA,90001 +243677,ThinkPad Laptop,1,999.99,2019-08-17 13:18:00,797 12th St, Boston,MA,02215 +243678,USB-C Charging Cable,1,11.95,2019-08-28 14:11:00,66 Lakeview St, Boston,MA,02215 +243679,AAA Batteries (4-pack),5,2.99,2019-08-31 22:20:00,70 13th St, Los Angeles,CA,90001 +243679,Apple Airpods Headphones,1,150.0,2019-08-31 22:20:00,70 13th St, Los Angeles,CA,90001 +243680,AAA Batteries (4-pack),2,2.99,2019-08-31 23:47:00,915 Pine St, San Francisco,CA,94016 +243681,Wired Headphones,1,11.99,2019-08-03 10:59:00,665 10th St, Austin,TX,73301 +243682,USB-C Charging Cable,1,11.95,2019-08-09 16:41:00,651 Hill St, Seattle,WA,98101 +243683,Lightning Charging Cable,1,14.95,2019-08-11 11:08:00,667 Dogwood St, Dallas,TX,75001 +243684,Bose SoundSport Headphones,1,99.99,2019-08-16 15:56:00,171 Highland St, New York City,NY,10001 +243685,Wired Headphones,1,11.99,2019-08-04 21:44:00,189 Lake St, Los Angeles,CA,90001 +243686,Bose SoundSport Headphones,1,99.99,2019-08-03 01:49:00,587 River St, Seattle,WA,98101 +243687,USB-C Charging Cable,1,11.95,2019-08-21 18:17:00,912 North St, Seattle,WA,98101 +243688,AA Batteries (4-pack),1,3.84,2019-08-29 15:59:00,619 Lake St, Los Angeles,CA,90001 +243689,Bose SoundSport Headphones,1,99.99,2019-08-06 16:11:00,49 Main St, New York City,NY,10001 +243690,Bose SoundSport Headphones,1,99.99,2019-08-06 00:35:00,278 Lake St, Los Angeles,CA,90001 +243691,34in Ultrawide Monitor,1,379.99,2019-08-15 22:59:00,667 11th St, Atlanta,GA,30301 +243692,USB-C Charging Cable,1,11.95,2019-08-22 00:10:00,607 Maple St, San Francisco,CA,94016 +243693,AAA Batteries (4-pack),3,2.99,2019-08-15 23:20:00,725 Jefferson St, Los Angeles,CA,90001 +243694,Bose SoundSport Headphones,1,99.99,2019-08-20 10:47:00,408 1st St, San Francisco,CA,94016 +243695,27in 4K Gaming Monitor,1,389.99,2019-08-20 10:26:00,243 Hill St, Boston,MA,02215 +243696,AA Batteries (4-pack),1,3.84,2019-08-06 17:59:00,109 6th St, Atlanta,GA,30301 +243697,ThinkPad Laptop,1,999.99,2019-08-12 21:15:00,519 5th St, Boston,MA,02215 +243698,AAA Batteries (4-pack),1,2.99,2019-08-29 19:33:00,988 Spruce St, Los Angeles,CA,90001 +243699,Macbook Pro Laptop,1,1700.0,2019-08-29 10:17:00,42 5th St, Austin,TX,73301 +243700,Bose SoundSport Headphones,1,99.99,2019-08-29 09:57:00,641 Lincoln St, New York City,NY,10001 +243701,Lightning Charging Cable,1,14.95,2019-08-09 12:21:00,75 Walnut St, San Francisco,CA,94016 +243702,ThinkPad Laptop,1,999.99,2019-08-16 03:40:00,493 Dogwood St, New York City,NY,10001 +243703,Lightning Charging Cable,1,14.95,2019-08-08 21:36:00,228 Ridge St, Austin,TX,73301 +243704,AAA Batteries (4-pack),1,2.99,2019-08-04 16:25:00,688 Sunset St, Seattle,WA,98101 +243705,Lightning Charging Cable,1,14.95,2019-08-08 18:46:00,460 Ridge St, Los Angeles,CA,90001 +243706,Wired Headphones,1,11.99,2019-08-19 11:42:00,708 Meadow St, New York City,NY,10001 +243707,AAA Batteries (4-pack),5,2.99,2019-08-23 20:37:00,990 Maple St, San Francisco,CA,94016 +243708,AA Batteries (4-pack),1,3.84,2019-08-16 18:54:00,54 9th St, Dallas,TX,75001 +243709,Apple Airpods Headphones,1,150.0,2019-08-11 17:43:00,775 Wilson St, San Francisco,CA,94016 +243710,Flatscreen TV,1,300.0,2019-08-27 12:07:00,321 Jefferson St, Los Angeles,CA,90001 +243711,LG Dryer,1,600.0,2019-08-16 16:25:00,403 Lake St, Austin,TX,73301 +243712,AA Batteries (4-pack),1,3.84,2019-08-15 16:52:00,874 Jefferson St, Atlanta,GA,30301 +243713,Lightning Charging Cable,1,14.95,2019-08-18 12:17:00,941 Sunset St, Los Angeles,CA,90001 +243714,27in FHD Monitor,1,149.99,2019-08-11 20:23:00,982 Ridge St, Dallas,TX,75001 +243715,Flatscreen TV,1,300.0,2019-08-18 20:22:00,649 Highland St, Portland,OR,97035 +243716,Lightning Charging Cable,1,14.95,2019-08-02 11:26:00,903 Meadow St, New York City,NY,10001 +243717,Apple Airpods Headphones,1,150.0,2019-08-22 09:45:00,424 Adams St, Boston,MA,02215 +243718,Wired Headphones,1,11.99,2019-08-07 11:21:00,171 Sunset St, San Francisco,CA,94016 +243719,AAA Batteries (4-pack),1,2.99,2019-08-29 17:45:00,339 Lincoln St, Dallas,TX,75001 +243720,AA Batteries (4-pack),2,3.84,2019-08-18 05:07:00,607 Jefferson St, San Francisco,CA,94016 +243721,AAA Batteries (4-pack),1,2.99,2019-08-27 18:37:00,295 Walnut St, San Francisco,CA,94016 +243722,USB-C Charging Cable,1,11.95,2019-08-24 16:34:00,228 7th St, San Francisco,CA,94016 +243723,Lightning Charging Cable,1,14.95,2019-08-09 09:50:00,78 11th St, Los Angeles,CA,90001 +243724,AAA Batteries (4-pack),1,2.99,2019-08-23 11:32:00,374 14th St, Dallas,TX,75001 +243725,27in FHD Monitor,1,149.99,2019-08-28 08:27:00,353 West St, Portland,OR,97035 +243726,Bose SoundSport Headphones,1,99.99,2019-08-14 15:46:00,424 1st St, Portland,ME,04101 +243727,Lightning Charging Cable,1,14.95,2019-08-07 13:22:00,295 Lakeview St, New York City,NY,10001 +243728,Macbook Pro Laptop,1,1700.0,2019-08-26 12:57:00,665 14th St, Los Angeles,CA,90001 +243729,USB-C Charging Cable,1,11.95,2019-08-19 12:45:00,746 Jackson St, Portland,OR,97035 +243730,27in 4K Gaming Monitor,1,389.99,2019-08-15 14:14:00,941 Wilson St, Seattle,WA,98101 +243731,27in FHD Monitor,1,149.99,2019-08-10 13:20:00,28 Lincoln St, Los Angeles,CA,90001 +243732,iPhone,1,700.0,2019-08-22 20:08:00,330 Park St, Austin,TX,73301 +243733,AAA Batteries (4-pack),4,2.99,2019-08-07 13:35:00,806 1st St, Los Angeles,CA,90001 +243734,Apple Airpods Headphones,1,150.0,2019-08-27 00:10:00,687 Forest St, San Francisco,CA,94016 +243735,AAA Batteries (4-pack),4,2.99,2019-08-08 13:54:00,746 Chestnut St, New York City,NY,10001 +243736,Wired Headphones,1,11.99,2019-08-11 11:55:00,640 Center St, Boston,MA,02215 +243737,Wired Headphones,2,11.99,2019-08-29 13:27:00,863 4th St, San Francisco,CA,94016 +243738,Lightning Charging Cable,1,14.95,2019-08-02 19:44:00,497 11th St, New York City,NY,10001 +243739,AAA Batteries (4-pack),1,2.99,2019-08-03 12:00:00,501 River St, Los Angeles,CA,90001 +243740,USB-C Charging Cable,1,11.95,2019-08-22 22:04:00,10 Lincoln St, Austin,TX,73301 +243741,Apple Airpods Headphones,1,150.0,2019-08-09 14:46:00,243 Park St, Boston,MA,02215 +243742,Vareebadd Phone,1,400.0,2019-08-21 19:32:00,478 Main St, San Francisco,CA,94016 +243743,Wired Headphones,1,11.99,2019-08-30 22:12:00,818 Johnson St, Boston,MA,02215 +243744,Lightning Charging Cable,1,14.95,2019-08-08 12:59:00,597 Adams St, New York City,NY,10001 +243745,AA Batteries (4-pack),2,3.84,2019-08-09 11:35:00,887 11th St, San Francisco,CA,94016 +243746,Apple Airpods Headphones,1,150.0,2019-08-30 13:51:00,594 Hickory St, New York City,NY,10001 +243747,Macbook Pro Laptop,1,1700.0,2019-08-18 19:15:00,133 Elm St, San Francisco,CA,94016 +243748,AA Batteries (4-pack),1,3.84,2019-08-02 15:39:00,546 Dogwood St, San Francisco,CA,94016 +243749,Apple Airpods Headphones,1,150.0,2019-08-09 09:48:00,998 Meadow St, New York City,NY,10001 +243750,AAA Batteries (4-pack),2,2.99,2019-08-12 01:58:00,561 Jefferson St, Portland,OR,97035 +243751,Apple Airpods Headphones,1,150.0,2019-08-04 16:19:00,675 2nd St, Los Angeles,CA,90001 +243752,AA Batteries (4-pack),1,3.84,2019-08-30 12:02:00,645 4th St, Dallas,TX,75001 +243753,27in FHD Monitor,1,149.99,2019-08-04 12:21:00,854 Chestnut St, Seattle,WA,98101 +243754,USB-C Charging Cable,1,11.95,2019-08-04 20:46:00,721 Forest St, Austin,TX,73301 +243755,AA Batteries (4-pack),1,3.84,2019-08-22 07:59:00,612 Johnson St, San Francisco,CA,94016 +243756,AA Batteries (4-pack),1,3.84,2019-08-08 23:08:00,994 Chestnut St, Portland,OR,97035 +243757,27in 4K Gaming Monitor,1,389.99,2019-08-14 21:26:00,518 10th St, San Francisco,CA,94016 +243758,USB-C Charging Cable,1,11.95,2019-08-08 00:21:00,435 Dogwood St, Dallas,TX,75001 +243759,AA Batteries (4-pack),1,3.84,2019-08-23 11:25:00,391 Pine St, Boston,MA,02215 +243760,ThinkPad Laptop,1,999.99,2019-08-02 06:52:00,875 Elm St, San Francisco,CA,94016 +243761,Wired Headphones,1,11.99,2019-08-08 18:57:00,360 Church St, Boston,MA,02215 +243762,Wired Headphones,1,11.99,2019-08-03 03:53:00,794 10th St, Austin,TX,73301 +243763,AAA Batteries (4-pack),1,2.99,2019-08-21 17:00:00,550 Hill St, Atlanta,GA,30301 +243764,AA Batteries (4-pack),2,3.84,2019-08-28 14:45:00,142 Washington St, Austin,TX,73301 +243765,Wired Headphones,1,11.99,2019-08-24 15:22:00,703 Madison St, Atlanta,GA,30301 +243766,Lightning Charging Cable,1,14.95,2019-08-31 19:18:00,171 13th St, Portland,OR,97035 +243767,Google Phone,1,600.0,2019-08-31 16:03:00,955 2nd St, Atlanta,GA,30301 +243767,USB-C Charging Cable,1,11.95,2019-08-31 16:03:00,955 2nd St, Atlanta,GA,30301 +243768,iPhone,1,700.0,2019-08-14 16:48:00,817 Cedar St, Atlanta,GA,30301 +243768,Lightning Charging Cable,1,14.95,2019-08-14 16:48:00,817 Cedar St, Atlanta,GA,30301 +243769,AA Batteries (4-pack),1,3.84,2019-08-16 12:17:00,797 5th St, Seattle,WA,98101 +243770,AAA Batteries (4-pack),1,2.99,2019-08-04 10:51:00,343 7th St, San Francisco,CA,94016 +243771,20in Monitor,1,109.99,2019-08-18 17:27:00,18 7th St, Portland,ME,04101 +243772,27in FHD Monitor,1,149.99,2019-08-19 18:43:00,755 Sunset St, New York City,NY,10001 +243773,AA Batteries (4-pack),1,3.84,2019-08-27 19:01:00,770 Forest St, Los Angeles,CA,90001 +243774,AA Batteries (4-pack),2,3.84,2019-08-16 11:15:00,292 Elm St, Los Angeles,CA,90001 +243775,AAA Batteries (4-pack),1,2.99,2019-08-17 17:05:00,951 Highland St, Los Angeles,CA,90001 +243776,Apple Airpods Headphones,1,150.0,2019-08-01 21:09:00,239 6th St, Los Angeles,CA,90001 +243776,Macbook Pro Laptop,1,1700.0,2019-08-01 21:09:00,239 6th St, Los Angeles,CA,90001 +243777,AAA Batteries (4-pack),4,2.99,2019-08-13 19:36:00,240 Meadow St, Atlanta,GA,30301 +243778,AAA Batteries (4-pack),1,2.99,2019-08-04 05:16:00,626 Hill St, San Francisco,CA,94016 +243779,Lightning Charging Cable,1,14.95,2019-08-01 17:24:00,765 South St, San Francisco,CA,94016 +243780,USB-C Charging Cable,1,11.95,2019-08-05 13:40:00,346 Lakeview St, Portland,OR,97035 +243781,Apple Airpods Headphones,1,150.0,2019-08-25 13:29:00,588 4th St, Los Angeles,CA,90001 +243782,27in 4K Gaming Monitor,1,389.99,2019-08-31 21:31:00,881 Park St, New York City,NY,10001 +243783,Apple Airpods Headphones,1,150.0,2019-08-27 21:28:00,733 11th St, Boston,MA,02215 +243784,Lightning Charging Cable,1,14.95,2019-08-02 12:53:00,265 Jackson St, Boston,MA,02215 +243785,AA Batteries (4-pack),2,3.84,2019-08-30 22:01:00,509 6th St, Portland,OR,97035 +243786,AA Batteries (4-pack),3,3.84,2019-08-22 13:23:00,58 Cherry St, New York City,NY,10001 +243787,27in FHD Monitor,1,149.99,2019-08-02 23:33:00,725 2nd St, Atlanta,GA,30301 +243788,27in 4K Gaming Monitor,1,389.99,2019-08-21 19:18:00,359 Spruce St, San Francisco,CA,94016 +243789,Lightning Charging Cable,1,14.95,2019-08-03 19:39:00,756 Main St, New York City,NY,10001 +243790,Vareebadd Phone,1,400.0,2019-08-20 02:15:00,185 Sunset St, San Francisco,CA,94016 +243791,Google Phone,1,600.0,2019-08-13 12:36:00,876 Lakeview St, Boston,MA,02215 +243792,AAA Batteries (4-pack),2,2.99,2019-08-26 20:50:00,538 Adams St, Seattle,WA,98101 +243793,Lightning Charging Cable,1,14.95,2019-08-04 09:37:00,837 Jackson St, New York City,NY,10001 +243794,USB-C Charging Cable,2,11.95,2019-08-20 14:25:00,23 9th St, Boston,MA,02215 +243795,Wired Headphones,2,11.99,2019-08-15 20:34:00,174 Main St, Atlanta,GA,30301 +243796,Apple Airpods Headphones,1,150.0,2019-08-20 14:18:00,80 Johnson St, San Francisco,CA,94016 +243797,Lightning Charging Cable,1,14.95,2019-08-20 16:53:00,926 Hill St, Los Angeles,CA,90001 +243798,AA Batteries (4-pack),1,3.84,2019-08-04 10:58:00,559 Jackson St, San Francisco,CA,94016 +243799,AAA Batteries (4-pack),2,2.99,2019-08-01 13:22:00,217 Pine St, Dallas,TX,75001 +243800,Flatscreen TV,1,300.0,2019-08-17 10:45:00,448 1st St, Los Angeles,CA,90001 +243801,Apple Airpods Headphones,1,150.0,2019-08-13 14:26:00,291 Pine St, San Francisco,CA,94016 +243802,Vareebadd Phone,1,400.0,2019-08-06 15:25:00,23 4th St, Seattle,WA,98101 +243803,USB-C Charging Cable,1,11.95,2019-08-28 18:11:00,906 Park St, Austin,TX,73301 +243804,USB-C Charging Cable,1,11.95,2019-08-23 19:50:00,531 12th St, Austin,TX,73301 +243805,USB-C Charging Cable,1,11.95,2019-08-24 09:28:00,948 Lake St, Dallas,TX,75001 +243806,Lightning Charging Cable,1,14.95,2019-08-09 12:18:00,91 Hickory St, New York City,NY,10001 +243807,Lightning Charging Cable,1,14.95,2019-08-22 08:25:00,958 5th St, Los Angeles,CA,90001 +243808,27in FHD Monitor,1,149.99,2019-08-03 00:01:00,477 Meadow St, San Francisco,CA,94016 +243809,Wired Headphones,1,11.99,2019-08-15 19:15:00,480 8th St, Atlanta,GA,30301 +243810,USB-C Charging Cable,1,11.95,2019-08-17 00:13:00,279 12th St, Boston,MA,02215 +243811,USB-C Charging Cable,1,11.95,2019-08-13 20:24:00,508 Madison St, San Francisco,CA,94016 +243812,34in Ultrawide Monitor,1,379.99,2019-08-25 00:56:00,644 Spruce St, Los Angeles,CA,90001 +243813,USB-C Charging Cable,1,11.95,2019-08-06 19:18:00,255 Park St, Los Angeles,CA,90001 +243814,iPhone,1,700.0,2019-08-04 19:06:00,120 Ridge St, Portland,OR,97035 +243815,AA Batteries (4-pack),1,3.84,2019-08-31 07:04:00,917 12th St, Atlanta,GA,30301 +243816,27in 4K Gaming Monitor,1,389.99,2019-08-19 13:04:00,82 Hill St, Boston,MA,02215 +243817,iPhone,1,700.0,2019-08-09 12:39:00,530 Highland St, New York City,NY,10001 +243818,Wired Headphones,1,11.99,2019-08-06 20:09:00,901 Lake St, Boston,MA,02215 +243819,AA Batteries (4-pack),1,3.84,2019-08-10 21:58:00,110 Pine St, Austin,TX,73301 +243820,Lightning Charging Cable,1,14.95,2019-08-03 08:47:00,124 Adams St, Boston,MA,02215 +243821,AA Batteries (4-pack),1,3.84,2019-08-26 22:02:00,525 Jackson St, Atlanta,GA,30301 +243822,Apple Airpods Headphones,1,150.0,2019-08-08 22:29:00,773 River St, San Francisco,CA,94016 +243823,Bose SoundSport Headphones,1,99.99,2019-08-25 16:55:00,752 Church St, Austin,TX,73301 +243824,USB-C Charging Cable,1,11.95,2019-08-26 12:15:00,359 1st St, Austin,TX,73301 +243825,Apple Airpods Headphones,1,150.0,2019-08-29 13:19:00,634 Willow St, San Francisco,CA,94016 +243826,AAA Batteries (4-pack),2,2.99,2019-08-04 15:11:00,10 Johnson St, San Francisco,CA,94016 +243827,Bose SoundSport Headphones,1,99.99,2019-08-03 14:09:00,626 Hill St, Los Angeles,CA,90001 +243828,Wired Headphones,2,11.99,2019-08-08 17:34:00,276 Lakeview St, Atlanta,GA,30301 +243829,USB-C Charging Cable,1,11.95,2019-08-20 17:50:00,654 7th St, Boston,MA,02215 +243830,20in Monitor,1,109.99,2019-08-31 17:29:00,263 6th St, Atlanta,GA,30301 +243831,27in 4K Gaming Monitor,1,389.99,2019-08-06 21:27:00,675 South St, Boston,MA,02215 +243832,Flatscreen TV,1,300.0,2019-08-10 21:58:00,543 Main St, San Francisco,CA,94016 +243833,AAA Batteries (4-pack),3,2.99,2019-08-13 11:57:00,226 Walnut St, Los Angeles,CA,90001 +243834,USB-C Charging Cable,1,11.95,2019-08-10 20:32:00,969 8th St, San Francisco,CA,94016 +243835,AA Batteries (4-pack),1,3.84,2019-08-24 17:24:00,167 Forest St, Seattle,WA,98101 +243836,Apple Airpods Headphones,1,150.0,2019-08-12 22:18:00,126 14th St, Portland,OR,97035 +243837,Bose SoundSport Headphones,1,99.99,2019-08-07 18:26:00,208 Willow St, Dallas,TX,75001 +243838,Flatscreen TV,1,300.0,2019-08-31 20:23:00,88 North St, Seattle,WA,98101 +243839,Macbook Pro Laptop,1,1700.0,2019-08-21 11:48:00,370 Sunset St, New York City,NY,10001 +243840,AA Batteries (4-pack),1,3.84,2019-08-25 20:08:00,902 Chestnut St, Seattle,WA,98101 +243841,Vareebadd Phone,1,400.0,2019-08-01 11:54:00,319 6th St, San Francisco,CA,94016 +243841,USB-C Charging Cable,1,11.95,2019-08-01 11:54:00,319 6th St, San Francisco,CA,94016 +243842,Vareebadd Phone,1,400.0,2019-08-12 14:27:00,309 Willow St, Los Angeles,CA,90001 +243843,Lightning Charging Cable,1,14.95,2019-08-16 09:36:00,592 Hill St, Austin,TX,73301 +243844,Lightning Charging Cable,2,14.95,2019-08-07 20:36:00,467 8th St, Los Angeles,CA,90001 +243845,Google Phone,1,600.0,2019-08-04 12:08:00,915 Meadow St, New York City,NY,10001 +243846,AAA Batteries (4-pack),1,2.99,2019-08-14 22:31:00,306 Dogwood St, Los Angeles,CA,90001 +243847,iPhone,1,700.0,2019-08-21 12:59:00,460 11th St, New York City,NY,10001 +243847,Lightning Charging Cable,1,14.95,2019-08-21 12:59:00,460 11th St, New York City,NY,10001 +243848,Bose SoundSport Headphones,1,99.99,2019-08-15 21:00:00,131 South St, Austin,TX,73301 +243849,USB-C Charging Cable,3,11.95,2019-08-28 12:12:00,351 South St, Austin,TX,73301 +243850,27in FHD Monitor,1,149.99,2019-08-16 16:33:00,255 West St, New York City,NY,10001 +243851,USB-C Charging Cable,1,11.95,2019-08-26 18:18:00,702 12th St, San Francisco,CA,94016 +243852,Google Phone,1,600.0,2019-08-06 17:33:00,242 Spruce St, Boston,MA,02215 +243853,AA Batteries (4-pack),2,3.84,2019-08-20 21:05:00,384 Cedar St, Seattle,WA,98101 +243854,20in Monitor,1,109.99,2019-08-26 21:14:00,867 Park St, Austin,TX,73301 +243855,Apple Airpods Headphones,1,150.0,2019-08-24 16:09:00,434 River St, Los Angeles,CA,90001 +243856,27in 4K Gaming Monitor,1,389.99,2019-08-22 17:16:00,120 Willow St, San Francisco,CA,94016 +243857,34in Ultrawide Monitor,1,379.99,2019-08-09 19:58:00,51 Church St, San Francisco,CA,94016 +243858,AA Batteries (4-pack),2,3.84,2019-08-21 13:23:00,601 Ridge St, Dallas,TX,75001 +243859,27in FHD Monitor,1,149.99,2019-08-19 15:36:00,736 12th St, Dallas,TX,75001 +243860,iPhone,1,700.0,2019-08-08 10:18:00,838 Maple St, Atlanta,GA,30301 +243861,AA Batteries (4-pack),1,3.84,2019-08-22 03:07:00,959 Cherry St, New York City,NY,10001 +243862,LG Dryer,1,600.0,2019-08-10 14:58:00,909 Meadow St, Atlanta,GA,30301 +243863,Wired Headphones,1,11.99,2019-08-11 23:57:00,132 Park St, Portland,OR,97035 +243864,Apple Airpods Headphones,1,150.0,2019-08-14 09:52:00,53 North St, Dallas,TX,75001 +243865,AA Batteries (4-pack),1,3.84,2019-08-04 18:06:00,593 Lake St, San Francisco,CA,94016 +243866,20in Monitor,1,109.99,2019-08-29 14:18:00,198 Center St, Atlanta,GA,30301 +243866,Macbook Pro Laptop,1,1700.0,2019-08-29 14:18:00,198 Center St, Atlanta,GA,30301 +243867,iPhone,1,700.0,2019-08-09 18:36:00,530 Lake St, Los Angeles,CA,90001 +243868,Apple Airpods Headphones,1,150.0,2019-08-09 16:14:00,975 Wilson St, Boston,MA,02215 +243869,Wired Headphones,1,11.99,2019-08-20 20:28:00,517 4th St, San Francisco,CA,94016 +243870,Apple Airpods Headphones,1,150.0,2019-08-04 12:35:00,768 2nd St, New York City,NY,10001 +243871,USB-C Charging Cable,2,11.95,2019-08-23 11:38:00,839 Jefferson St, Austin,TX,73301 +243872,Apple Airpods Headphones,1,150.0,2019-08-27 12:41:00,312 Park St, Los Angeles,CA,90001 +243873,Apple Airpods Headphones,1,150.0,2019-08-16 14:50:00,852 11th St, Portland,OR,97035 +243874,Wired Headphones,1,11.99,2019-08-26 23:29:00,709 6th St, San Francisco,CA,94016 +243875,AAA Batteries (4-pack),1,2.99,2019-08-14 16:33:00,120 Dogwood St, Los Angeles,CA,90001 +243876,ThinkPad Laptop,1,999.99,2019-08-28 13:09:00,200 Chestnut St, San Francisco,CA,94016 +243877,Lightning Charging Cable,1,14.95,2019-08-16 18:30:00,90 4th St, Dallas,TX,75001 +243878,AA Batteries (4-pack),1,3.84,2019-08-27 22:21:00,372 Elm St, San Francisco,CA,94016 +243879,Lightning Charging Cable,1,14.95,2019-08-05 11:14:00,757 Jackson St, Dallas,TX,75001 +243880,AA Batteries (4-pack),1,3.84,2019-08-30 18:48:00,374 West St, Los Angeles,CA,90001 +243881,AA Batteries (4-pack),1,3.84,2019-08-11 20:12:00,62 Forest St, New York City,NY,10001 +243882,AA Batteries (4-pack),1,3.84,2019-08-10 16:20:00,719 9th St, Portland,OR,97035 +243883,Wired Headphones,1,11.99,2019-08-28 18:52:00,542 2nd St, Boston,MA,02215 +243884,Bose SoundSport Headphones,1,99.99,2019-08-18 10:59:00,905 14th St, San Francisco,CA,94016 +243885,USB-C Charging Cable,1,11.95,2019-08-23 19:38:00,980 2nd St, Dallas,TX,75001 +243886,ThinkPad Laptop,1,999.99,2019-08-11 11:09:00,855 Ridge St, Atlanta,GA,30301 +243887,AA Batteries (4-pack),1,3.84,2019-08-26 07:21:00,605 Sunset St, Los Angeles,CA,90001 +243888,USB-C Charging Cable,1,11.95,2019-08-03 16:20:00,39 Meadow St, Dallas,TX,75001 +243889,Macbook Pro Laptop,1,1700.0,2019-08-30 23:22:00,23 Cherry St, Seattle,WA,98101 +243890,AA Batteries (4-pack),2,3.84,2019-08-08 21:24:00,45 6th St, New York City,NY,10001 +243891,AAA Batteries (4-pack),1,2.99,2019-08-05 11:01:00,195 Lake St, San Francisco,CA,94016 +243892,iPhone,1,700.0,2019-08-28 01:32:00,68 Ridge St, San Francisco,CA,94016 +243893,USB-C Charging Cable,1,11.95,2019-08-21 20:39:00,918 Church St, New York City,NY,10001 +243894,27in FHD Monitor,1,149.99,2019-08-14 02:46:00,971 Church St, San Francisco,CA,94016 +243895,AAA Batteries (4-pack),1,2.99,2019-08-17 18:56:00,316 Sunset St, New York City,NY,10001 +243896,Lightning Charging Cable,1,14.95,2019-08-05 12:43:00,783 River St, Austin,TX,73301 +243897,AAA Batteries (4-pack),2,2.99,2019-08-05 21:00:00,920 Lake St, Atlanta,GA,30301 +243898,20in Monitor,1,109.99,2019-08-20 09:56:00,884 Main St, Dallas,TX,75001 +243899,Apple Airpods Headphones,1,150.0,2019-08-17 09:00:00,706 River St, Seattle,WA,98101 +243900,Wired Headphones,1,11.99,2019-08-05 20:49:00,879 Washington St, San Francisco,CA,94016 +243901,27in FHD Monitor,1,149.99,2019-08-21 23:38:00,387 13th St, Austin,TX,73301 +243902,Lightning Charging Cable,1,14.95,2019-08-21 18:12:00,726 Spruce St, Dallas,TX,75001 +243903,Apple Airpods Headphones,1,150.0,2019-08-29 22:34:00,752 10th St, Austin,TX,73301 +243904,AA Batteries (4-pack),1,3.84,2019-08-28 12:38:00,514 10th St, Dallas,TX,75001 +243905,AA Batteries (4-pack),1,3.84,2019-08-04 20:34:00,454 Adams St, San Francisco,CA,94016 +243906,34in Ultrawide Monitor,1,379.99,2019-08-31 22:54:00,320 Cedar St, Boston,MA,02215 +243907,Lightning Charging Cable,1,14.95,2019-08-03 13:56:00,635 Washington St, Austin,TX,73301 +243908,AAA Batteries (4-pack),2,2.99,2019-08-05 17:30:00,386 North St, Los Angeles,CA,90001 +243909,Vareebadd Phone,1,400.0,2019-08-24 21:24:00,969 Wilson St, New York City,NY,10001 +243910,Macbook Pro Laptop,1,1700.0,2019-08-19 11:38:00,532 Cedar St, Austin,TX,73301 +243911,Bose SoundSport Headphones,1,99.99,2019-08-10 12:32:00,980 6th St, Atlanta,GA,30301 +243912,Lightning Charging Cable,1,14.95,2019-08-27 07:51:00,924 Walnut St, San Francisco,CA,94016 +243913,AA Batteries (4-pack),1,3.84,2019-08-17 12:42:00,781 13th St, New York City,NY,10001 +243914,AA Batteries (4-pack),2,3.84,2019-08-30 18:36:00,841 Johnson St, Los Angeles,CA,90001 +243915,Wired Headphones,1,11.99,2019-08-31 19:15:00,867 11th St, New York City,NY,10001 +243916,USB-C Charging Cable,1,11.95,2019-08-30 17:59:00,826 Willow St, San Francisco,CA,94016 +243917,Macbook Pro Laptop,1,1700.0,2019-08-18 12:57:00,902 Park St, San Francisco,CA,94016 +243918,20in Monitor,1,109.99,2019-08-07 13:07:00,527 Lakeview St, Seattle,WA,98101 +243919,20in Monitor,1,109.99,2019-08-02 15:52:00,19 Jackson St, Dallas,TX,75001 +243920,Wired Headphones,1,11.99,2019-08-09 14:25:00,134 Willow St, Boston,MA,02215 +243921,iPhone,1,700.0,2019-08-09 09:56:00,50 Willow St, New York City,NY,10001 +243921,Wired Headphones,2,11.99,2019-08-09 09:56:00,50 Willow St, New York City,NY,10001 +243922,USB-C Charging Cable,1,11.95,2019-08-22 12:37:00,620 Cedar St, Boston,MA,02215 +243923,USB-C Charging Cable,1,11.95,2019-08-21 17:54:00,957 Lincoln St, San Francisco,CA,94016 +243924,34in Ultrawide Monitor,1,379.99,2019-08-30 18:43:00,692 Hickory St, Boston,MA,02215 +243925,Apple Airpods Headphones,1,150.0,2019-08-17 13:37:00,335 Willow St, Dallas,TX,75001 +243926,27in FHD Monitor,1,149.99,2019-08-14 07:38:00,900 Chestnut St, San Francisco,CA,94016 +243927,Google Phone,1,600.0,2019-08-07 13:50:00,784 Adams St, San Francisco,CA,94016 +243928,Wired Headphones,2,11.99,2019-08-19 18:34:00,507 Willow St, Boston,MA,02215 +243928,AA Batteries (4-pack),1,3.84,2019-08-19 18:34:00,507 Willow St, Boston,MA,02215 +243929,Apple Airpods Headphones,1,150.0,2019-08-01 10:33:00,89 8th St, Austin,TX,73301 +243930,Apple Airpods Headphones,1,150.0,2019-08-15 23:07:00,591 2nd St, Dallas,TX,75001 +243931,USB-C Charging Cable,1,11.95,2019-08-21 16:52:00,330 Dogwood St, Seattle,WA,98101 +243932,AAA Batteries (4-pack),1,2.99,2019-08-28 17:29:00,259 Hill St, Atlanta,GA,30301 +243933,Apple Airpods Headphones,1,150.0,2019-08-09 21:39:00,341 Elm St, Atlanta,GA,30301 +243934,Apple Airpods Headphones,1,150.0,2019-08-10 19:08:00,874 14th St, Boston,MA,02215 +243935,LG Washing Machine,1,600.0,2019-08-08 15:03:00,749 Walnut St, Los Angeles,CA,90001 +243936,Wired Headphones,1,11.99,2019-08-14 15:14:00,378 Highland St, Seattle,WA,98101 +243937,Flatscreen TV,1,300.0,2019-08-15 12:36:00,125 1st St, Atlanta,GA,30301 +243938,Lightning Charging Cable,1,14.95,2019-08-02 21:10:00,109 Forest St, Austin,TX,73301 +243939,Bose SoundSport Headphones,1,99.99,2019-08-25 22:24:00,60 Hill St, Seattle,WA,98101 +243940,Lightning Charging Cable,1,14.95,2019-08-23 20:07:00,318 10th St, Atlanta,GA,30301 +243941,Bose SoundSport Headphones,1,99.99,2019-08-24 15:44:00,996 Highland St, Boston,MA,02215 +243942,Apple Airpods Headphones,1,150.0,2019-08-13 10:17:00,152 Pine St, Los Angeles,CA,90001 +243943,AAA Batteries (4-pack),1,2.99,2019-08-07 16:43:00,209 12th St, Los Angeles,CA,90001 +243944,27in FHD Monitor,1,149.99,2019-08-21 15:11:00,52 River St, Atlanta,GA,30301 +243945,Google Phone,1,600.0,2019-08-17 08:24:00,20 10th St, San Francisco,CA,94016 +243945,Bose SoundSport Headphones,1,99.99,2019-08-17 08:24:00,20 10th St, San Francisco,CA,94016 +243946,Lightning Charging Cable,1,14.95,2019-08-15 10:45:00,35 Ridge St, San Francisco,CA,94016 +243947,Google Phone,1,600.0,2019-08-28 07:26:00,774 Hickory St, Dallas,TX,75001 +243947,USB-C Charging Cable,2,11.95,2019-08-28 07:26:00,774 Hickory St, Dallas,TX,75001 +243948,AA Batteries (4-pack),1,3.84,2019-08-31 12:34:00,239 7th St, Seattle,WA,98101 +243949,iPhone,1,700.0,2019-08-03 19:48:00,293 14th St, New York City,NY,10001 +243950,iPhone,1,700.0,2019-08-24 14:27:00,88 Center St, Boston,MA,02215 +243951,AAA Batteries (4-pack),2,2.99,2019-08-11 23:56:00,478 West St, Atlanta,GA,30301 +243952,Bose SoundSport Headphones,1,99.99,2019-08-22 07:38:00,42 Willow St, San Francisco,CA,94016 +243953,USB-C Charging Cable,1,11.95,2019-08-23 23:06:00,137 5th St, San Francisco,CA,94016 +243954,34in Ultrawide Monitor,1,379.99,2019-08-14 19:07:00,922 Adams St, Austin,TX,73301 +243955,USB-C Charging Cable,2,11.95,2019-08-27 19:40:00,636 14th St, New York City,NY,10001 +243956,AAA Batteries (4-pack),3,2.99,2019-08-13 21:22:00,433 Park St, San Francisco,CA,94016 +243957,27in 4K Gaming Monitor,1,389.99,2019-08-31 15:15:00,473 West St, Atlanta,GA,30301 +243958,Lightning Charging Cable,1,14.95,2019-08-03 19:34:00,314 Dogwood St, Portland,OR,97035 +243959,AA Batteries (4-pack),1,3.84,2019-08-17 09:17:00,788 Lincoln St, Atlanta,GA,30301 +243960,AA Batteries (4-pack),3,3.84,2019-08-29 20:56:00,293 Church St, Seattle,WA,98101 +243961,Wired Headphones,1,11.99,2019-08-20 14:03:00,639 Washington St, Austin,TX,73301 +243962,20in Monitor,1,109.99,2019-08-25 16:49:00,70 Park St, Atlanta,GA,30301 +243963,USB-C Charging Cable,1,11.95,2019-08-27 12:21:00,484 Wilson St, Los Angeles,CA,90001 +243964,Apple Airpods Headphones,1,150.0,2019-08-24 19:18:00,504 Lake St, New York City,NY,10001 +243965,iPhone,1,700.0,2019-08-04 02:45:00,272 Lakeview St, New York City,NY,10001 +243966,20in Monitor,1,109.99,2019-08-02 17:32:00,710 2nd St, Boston,MA,02215 +243967,USB-C Charging Cable,1,11.95,2019-08-28 17:33:00,666 Wilson St, Los Angeles,CA,90001 +243968,USB-C Charging Cable,1,11.95,2019-08-02 16:47:00,606 13th St, Atlanta,GA,30301 +243969,Vareebadd Phone,1,400.0,2019-08-19 08:58:00,824 Sunset St, Atlanta,GA,30301 +243970,AA Batteries (4-pack),1,3.84,2019-08-07 19:03:00,107 Pine St, New York City,NY,10001 +243971,USB-C Charging Cable,1,11.95,2019-08-06 23:19:00,122 Cherry St, Portland,OR,97035 +243972,AA Batteries (4-pack),1,3.84,2019-08-26 11:22:00,145 Meadow St, Boston,MA,02215 +243973,USB-C Charging Cable,1,11.95,2019-08-20 08:41:00,739 Jefferson St, Seattle,WA,98101 +243974,Apple Airpods Headphones,1,150.0,2019-08-11 22:20:00,585 River St, San Francisco,CA,94016 +243975,AA Batteries (4-pack),1,3.84,2019-08-05 23:33:00,811 5th St, Austin,TX,73301 +243976,27in 4K Gaming Monitor,1,389.99,2019-08-31 00:07:00,405 South St, Atlanta,GA,30301 +243977,ThinkPad Laptop,1,999.99,2019-08-12 10:05:00,393 2nd St, Seattle,WA,98101 +243978,Wired Headphones,1,11.99,2019-08-18 06:45:00,981 Sunset St, San Francisco,CA,94016 +243979,Lightning Charging Cable,1,14.95,2019-08-13 11:30:00,714 Forest St, Boston,MA,02215 +243980,AAA Batteries (4-pack),3,2.99,2019-08-14 12:55:00,764 4th St, Atlanta,GA,30301 +243981,AA Batteries (4-pack),1,3.84,2019-08-18 22:44:00,951 6th St, San Francisco,CA,94016 +243982,AA Batteries (4-pack),1,3.84,2019-08-15 19:06:00,884 6th St, Atlanta,GA,30301 +243983,AA Batteries (4-pack),2,3.84,2019-08-02 19:45:00,476 7th St, Seattle,WA,98101 +243984,AA Batteries (4-pack),2,3.84,2019-08-13 10:42:00,517 Meadow St, Portland,OR,97035 +243985,Lightning Charging Cable,1,14.95,2019-08-17 15:32:00,573 Jefferson St, Austin,TX,73301 +243986,20in Monitor,1,109.99,2019-08-27 07:43:00,250 Chestnut St, New York City,NY,10001 +243987,Lightning Charging Cable,1,14.95,2019-08-02 10:27:00,459 12th St, San Francisco,CA,94016 +243988,27in FHD Monitor,1,149.99,2019-08-08 12:20:00,301 South St, Boston,MA,02215 +243989,AAA Batteries (4-pack),2,2.99,2019-08-28 11:37:00,209 South St, Dallas,TX,75001 +243990,Wired Headphones,1,11.99,2019-08-23 21:07:00,118 1st St, Dallas,TX,75001 +243991,Lightning Charging Cable,1,14.95,2019-08-31 04:30:00,775 Washington St, San Francisco,CA,94016 +243992,AAA Batteries (4-pack),1,2.99,2019-08-06 02:36:00,706 Johnson St, San Francisco,CA,94016 +243993,AA Batteries (4-pack),1,3.84,2019-08-04 08:54:00,161 10th St, Atlanta,GA,30301 +243994,Macbook Pro Laptop,1,1700.0,2019-08-16 22:04:00,496 River St, Boston,MA,02215 +243995,AAA Batteries (4-pack),4,2.99,2019-08-19 21:32:00,610 11th St, Dallas,TX,75001 +243996,27in FHD Monitor,1,149.99,2019-08-18 19:54:00,12 Jackson St, Portland,OR,97035 +243997,20in Monitor,1,109.99,2019-08-07 17:29:00,506 7th St, Dallas,TX,75001 +243998,ThinkPad Laptop,1,999.99,2019-08-31 08:34:00,158 Main St, New York City,NY,10001 +243999,Lightning Charging Cable,1,14.95,2019-08-02 00:23:00,585 4th St, Portland,OR,97035 +244000,AA Batteries (4-pack),1,3.84,2019-08-05 19:09:00,903 Maple St, Los Angeles,CA,90001 +244001,Apple Airpods Headphones,1,150.0,2019-08-02 06:21:00,275 Sunset St, Los Angeles,CA,90001 +244002,34in Ultrawide Monitor,1,379.99,2019-08-16 16:04:00,223 Maple St, Seattle,WA,98101 +244003,Bose SoundSport Headphones,1,99.99,2019-08-20 15:07:00,281 Dogwood St, Dallas,TX,75001 +244004,USB-C Charging Cable,1,11.95,2019-08-23 10:28:00,111 Washington St, New York City,NY,10001 +244005,USB-C Charging Cable,2,11.95,2019-08-23 18:37:00,921 Sunset St, Seattle,WA,98101 +244006,Lightning Charging Cable,1,14.95,2019-08-03 19:40:00,425 Park St, Los Angeles,CA,90001 +244007,Bose SoundSport Headphones,1,99.99,2019-08-04 21:21:00,852 Elm St, Los Angeles,CA,90001 +244008,Wired Headphones,1,11.99,2019-08-29 18:30:00,687 Park St, Seattle,WA,98101 +244009,USB-C Charging Cable,1,11.95,2019-08-09 18:12:00,729 Ridge St, Los Angeles,CA,90001 +244010,Lightning Charging Cable,2,14.95,2019-08-27 20:53:00,801 Ridge St, Los Angeles,CA,90001 +244011,27in 4K Gaming Monitor,1,389.99,2019-08-05 22:18:00,462 1st St, San Francisco,CA,94016 +244012,Lightning Charging Cable,1,14.95,2019-08-28 17:48:00,589 North St, Boston,MA,02215 +244013,Bose SoundSport Headphones,1,99.99,2019-08-30 18:42:00,387 8th St, Dallas,TX,75001 +244014,Lightning Charging Cable,1,14.95,2019-08-09 22:37:00,174 10th St, Austin,TX,73301 +244015,AA Batteries (4-pack),1,3.84,2019-08-26 20:26:00,352 14th St, Austin,TX,73301 +244016,20in Monitor,1,109.99,2019-08-02 11:43:00,534 Park St, New York City,NY,10001 +244017,AAA Batteries (4-pack),2,2.99,2019-08-23 09:38:00,793 13th St, New York City,NY,10001 +244018,USB-C Charging Cable,1,11.95,2019-08-16 20:17:00,737 Lake St, Atlanta,GA,30301 +244019,AA Batteries (4-pack),1,3.84,2019-08-24 20:55:00,350 Meadow St, Dallas,TX,75001 +244020,AA Batteries (4-pack),1,3.84,2019-08-29 08:26:00,920 West St, Los Angeles,CA,90001 +244021,AAA Batteries (4-pack),3,2.99,2019-08-26 10:18:00,97 Forest St, San Francisco,CA,94016 +244022,Google Phone,1,600.0,2019-08-28 13:39:00,965 2nd St, Seattle,WA,98101 +244023,iPhone,1,700.0,2019-08-10 00:19:00,199 9th St, New York City,NY,10001 +244023,Lightning Charging Cable,1,14.95,2019-08-10 00:19:00,199 9th St, New York City,NY,10001 +244024,Apple Airpods Headphones,1,150.0,2019-08-20 19:55:00,393 Center St, Seattle,WA,98101 +244025,Lightning Charging Cable,1,14.95,2019-08-15 21:57:00,353 Lake St, San Francisco,CA,94016 +244026,Bose SoundSport Headphones,1,99.99,2019-08-26 19:30:00,917 North St, Los Angeles,CA,90001 +244027,34in Ultrawide Monitor,1,379.99,2019-08-17 04:55:00,155 Lakeview St, Boston,MA,02215 +244028,Bose SoundSport Headphones,1,99.99,2019-08-27 18:50:00,977 9th St, Seattle,WA,98101 +244029,Wired Headphones,1,11.99,2019-08-23 18:54:00,952 South St, New York City,NY,10001 +244030,Wired Headphones,1,11.99,2019-08-23 12:33:00,804 9th St, Los Angeles,CA,90001 +244031,Lightning Charging Cable,1,14.95,2019-08-14 07:45:00,793 Sunset St, New York City,NY,10001 +244032,Vareebadd Phone,1,400.0,2019-08-10 19:55:00,29 Sunset St, San Francisco,CA,94016 +244032,USB-C Charging Cable,1,11.95,2019-08-10 19:55:00,29 Sunset St, San Francisco,CA,94016 +244033,USB-C Charging Cable,1,11.95,2019-08-19 09:14:00,308 Ridge St, New York City,NY,10001 +244034,Bose SoundSport Headphones,1,99.99,2019-08-25 15:15:00,942 Willow St, Seattle,WA,98101 +244035,Lightning Charging Cable,1,14.95,2019-08-15 01:16:00,500 Pine St, Los Angeles,CA,90001 +244036,Lightning Charging Cable,1,14.95,2019-08-09 18:58:00,140 1st St, Boston,MA,02215 +244037,ThinkPad Laptop,1,999.99,2019-08-05 18:58:00,249 Jackson St, San Francisco,CA,94016 +244038,AAA Batteries (4-pack),2,2.99,2019-08-09 11:50:00,152 13th St, Seattle,WA,98101 +244039,Apple Airpods Headphones,1,150.0,2019-08-31 23:50:00,983 4th St, Austin,TX,73301 +244040,USB-C Charging Cable,1,11.95,2019-08-24 21:40:00,564 North St, San Francisco,CA,94016 +244041,27in FHD Monitor,1,149.99,2019-08-06 13:14:00,107 8th St, San Francisco,CA,94016 +244042,AA Batteries (4-pack),1,3.84,2019-08-27 08:47:00,401 Maple St, Seattle,WA,98101 +244043,Lightning Charging Cable,1,14.95,2019-08-13 01:02:00,289 West St, New York City,NY,10001 +244044,AAA Batteries (4-pack),2,2.99,2019-08-05 20:59:00,93 6th St, Dallas,TX,75001 +244045,Wired Headphones,1,11.99,2019-08-28 11:03:00,305 Forest St, Los Angeles,CA,90001 +244046,Google Phone,1,600.0,2019-08-02 22:34:00,22 6th St, Dallas,TX,75001 +244047,27in FHD Monitor,1,149.99,2019-08-16 09:59:00,354 Dogwood St, San Francisco,CA,94016 +244048,Wired Headphones,1,11.99,2019-08-29 22:18:00,663 Pine St, New York City,NY,10001 +244049,Google Phone,1,600.0,2019-08-15 20:00:00,137 Meadow St, Atlanta,GA,30301 +244050,Macbook Pro Laptop,1,1700.0,2019-08-01 15:48:00,645 Meadow St, San Francisco,CA,94016 +244051,Wired Headphones,2,11.99,2019-08-18 10:54:00,908 Forest St, New York City,NY,10001 +244052,Bose SoundSport Headphones,1,99.99,2019-08-03 23:53:00,66 South St, Seattle,WA,98101 +244053,iPhone,1,700.0,2019-08-29 19:16:00,909 Johnson St, San Francisco,CA,94016 +244053,Lightning Charging Cable,1,14.95,2019-08-29 19:16:00,909 Johnson St, San Francisco,CA,94016 +244054,27in FHD Monitor,1,149.99,2019-08-25 13:37:00,415 5th St, New York City,NY,10001 +244055,Google Phone,1,600.0,2019-08-18 20:01:00,12 Main St, Los Angeles,CA,90001 +244056,Bose SoundSport Headphones,1,99.99,2019-08-11 21:14:00,405 4th St, Seattle,WA,98101 +244057,Flatscreen TV,1,300.0,2019-08-16 13:08:00,660 Cherry St, Dallas,TX,75001 +244058,Bose SoundSport Headphones,1,99.99,2019-08-29 20:54:00,71 Madison St, New York City,NY,10001 +244059,USB-C Charging Cable,1,11.95,2019-08-22 13:33:00,618 Lincoln St, Dallas,TX,75001 +244060,27in FHD Monitor,1,149.99,2019-08-18 11:28:00,683 South St, Los Angeles,CA,90001 +244061,Apple Airpods Headphones,1,150.0,2019-08-17 08:22:00,657 10th St, Dallas,TX,75001 +244062,AAA Batteries (4-pack),1,2.99,2019-08-16 00:56:00,65 Jackson St, Los Angeles,CA,90001 +244063,27in 4K Gaming Monitor,1,389.99,2019-08-06 13:28:00,686 Meadow St, Atlanta,GA,30301 +244064,LG Dryer,1,600.0,2019-08-16 16:07:00,915 1st St, Dallas,TX,75001 +244065,Lightning Charging Cable,1,14.95,2019-08-11 11:35:00,460 Lincoln St, Boston,MA,02215 +244066,Lightning Charging Cable,1,14.95,2019-08-19 14:22:00,221 Lincoln St, Boston,MA,02215 +244067,34in Ultrawide Monitor,1,379.99,2019-08-07 18:02:00,367 Center St, Boston,MA,02215 +244068,Lightning Charging Cable,1,14.95,2019-08-12 22:38:00,531 4th St, San Francisco,CA,94016 +244069,Google Phone,1,600.0,2019-08-24 21:52:00,103 Lake St, Dallas,TX,75001 +244069,USB-C Charging Cable,1,11.95,2019-08-24 21:52:00,103 Lake St, Dallas,TX,75001 +244070,Macbook Pro Laptop,1,1700.0,2019-08-12 10:39:00,503 6th St, Los Angeles,CA,90001 +244071,27in 4K Gaming Monitor,1,389.99,2019-08-09 20:06:00,929 River St, San Francisco,CA,94016 +244071,USB-C Charging Cable,1,11.95,2019-08-09 20:06:00,929 River St, San Francisco,CA,94016 +244072,Lightning Charging Cable,1,14.95,2019-08-04 23:14:00,30 Maple St, San Francisco,CA,94016 +244073,AAA Batteries (4-pack),1,2.99,2019-08-06 18:47:00,218 Hill St, San Francisco,CA,94016 +244074,Wired Headphones,1,11.99,2019-08-29 09:54:00,841 Elm St, Austin,TX,73301 +244075,ThinkPad Laptop,1,999.99,2019-08-15 01:21:00,394 Chestnut St, New York City,NY,10001 +244076,USB-C Charging Cable,1,11.95,2019-08-03 08:58:00,90 Spruce St, Los Angeles,CA,90001 +244077,Apple Airpods Headphones,1,150.0,2019-08-01 11:24:00,873 Cherry St, Austin,TX,73301 +244078,Bose SoundSport Headphones,1,99.99,2019-08-03 21:19:00,57 4th St, San Francisco,CA,94016 +244079,AA Batteries (4-pack),1,3.84,2019-08-01 15:23:00,896 6th St, Atlanta,GA,30301 +244080,Bose SoundSport Headphones,1,99.99,2019-08-17 10:44:00,541 River St, Los Angeles,CA,90001 +244081,Google Phone,1,600.0,2019-08-13 10:13:00,40 Chestnut St, Boston,MA,02215 +244082,AAA Batteries (4-pack),2,2.99,2019-08-02 06:28:00,509 Meadow St, Los Angeles,CA,90001 +244083,Flatscreen TV,1,300.0,2019-08-02 20:08:00,251 10th St, Seattle,WA,98101 +244084,Apple Airpods Headphones,2,150.0,2019-08-22 21:21:00,844 North St, Portland,ME,04101 +244085,AAA Batteries (4-pack),2,2.99,2019-08-23 14:20:00,414 Madison St, New York City,NY,10001 +244086,AA Batteries (4-pack),1,3.84,2019-08-17 10:56:00,532 Hickory St, New York City,NY,10001 +244087,Google Phone,1,600.0,2019-08-29 07:18:00,792 Forest St, Seattle,WA,98101 +244088,Apple Airpods Headphones,1,150.0,2019-08-21 12:40:00,677 Lakeview St, Los Angeles,CA,90001 +244089,27in FHD Monitor,1,149.99,2019-08-12 11:15:00,33 Lincoln St, San Francisco,CA,94016 +244090,USB-C Charging Cable,1,11.95,2019-08-22 23:08:00,87 Adams St, Boston,MA,02215 +244091,AAA Batteries (4-pack),1,2.99,2019-08-22 15:38:00,63 6th St, Los Angeles,CA,90001 +244092,AAA Batteries (4-pack),1,2.99,2019-08-31 19:05:00,775 12th St, San Francisco,CA,94016 +244093,USB-C Charging Cable,1,11.95,2019-08-26 06:55:00,671 Madison St, San Francisco,CA,94016 +244094,Bose SoundSport Headphones,1,99.99,2019-08-01 18:45:00,998 Center St, San Francisco,CA,94016 +244095,27in 4K Gaming Monitor,1,389.99,2019-08-02 08:05:00,949 Main St, San Francisco,CA,94016 +244096,AAA Batteries (4-pack),1,2.99,2019-08-28 21:17:00,381 8th St, Atlanta,GA,30301 +244097,AAA Batteries (4-pack),1,2.99,2019-08-02 00:10:00,772 Church St, Los Angeles,CA,90001 +244098,USB-C Charging Cable,1,11.95,2019-08-23 18:24:00,891 Washington St, Atlanta,GA,30301 +244099,27in 4K Gaming Monitor,1,389.99,2019-08-11 11:23:00,438 Hill St, Portland,ME,04101 +244100,Wired Headphones,1,11.99,2019-08-29 22:36:00,400 Forest St, New York City,NY,10001 +244101,AAA Batteries (4-pack),3,2.99,2019-08-14 17:16:00,207 Spruce St, Los Angeles,CA,90001 +244102,Lightning Charging Cable,1,14.95,2019-08-12 19:25:00,361 Pine St, New York City,NY,10001 +244103,AAA Batteries (4-pack),2,2.99,2019-08-21 19:38:00,885 Dogwood St, Boston,MA,02215 +244104,Lightning Charging Cable,1,14.95,2019-08-18 06:28:00,374 Lakeview St, Los Angeles,CA,90001 +244105,USB-C Charging Cable,2,11.95,2019-08-26 23:34:00,683 Highland St, Boston,MA,02215 +244106,27in FHD Monitor,1,149.99,2019-08-03 14:43:00,176 11th St, Dallas,TX,75001 +244107,Bose SoundSport Headphones,1,99.99,2019-08-03 16:20:00,335 Ridge St, New York City,NY,10001 +244108,AAA Batteries (4-pack),1,2.99,2019-08-28 09:32:00,77 Adams St, Portland,OR,97035 +244109,iPhone,1,700.0,2019-08-17 16:28:00,767 Adams St, San Francisco,CA,94016 +244109,Apple Airpods Headphones,1,150.0,2019-08-17 16:28:00,767 Adams St, San Francisco,CA,94016 +244110,Wired Headphones,1,11.99,2019-08-12 12:48:00,459 Spruce St, Portland,OR,97035 +244111,AA Batteries (4-pack),1,3.84,2019-08-16 11:40:00,879 Sunset St, New York City,NY,10001 +244112,Apple Airpods Headphones,1,150.0,2019-08-13 15:05:00,93 12th St, New York City,NY,10001 +244113,USB-C Charging Cable,1,11.95,2019-08-10 17:13:00,461 Center St, New York City,NY,10001 +244114,Lightning Charging Cable,1,14.95,2019-08-25 17:29:00,855 11th St, Seattle,WA,98101 +244115,AAA Batteries (4-pack),1,2.99,2019-08-07 15:39:00,777 West St, Dallas,TX,75001 +244116,AAA Batteries (4-pack),2,2.99,2019-08-15 21:00:00,372 14th St, Boston,MA,02215 +244117,Wired Headphones,1,11.99,2019-08-20 00:08:00,865 Highland St, Dallas,TX,75001 +244118,Wired Headphones,1,11.99,2019-08-01 14:27:00,189 11th St, Portland,OR,97035 +244119,USB-C Charging Cable,1,11.95,2019-08-19 12:09:00,255 Cedar St, Los Angeles,CA,90001 +244120,ThinkPad Laptop,1,999.99,2019-08-02 09:46:00,134 Forest St, Austin,TX,73301 +244121,ThinkPad Laptop,1,999.99,2019-08-13 08:36:00,825 Lakeview St, Boston,MA,02215 +244122,USB-C Charging Cable,1,11.95,2019-08-12 00:04:00,639 9th St, New York City,NY,10001 +244123,Bose SoundSport Headphones,1,99.99,2019-08-04 15:35:00,251 Hill St, San Francisco,CA,94016 +244124,Apple Airpods Headphones,1,150.0,2019-08-18 14:30:00,780 11th St, New York City,NY,10001 +244125,34in Ultrawide Monitor,1,379.99,2019-08-09 20:10:00,153 6th St, New York City,NY,10001 +244126,AA Batteries (4-pack),1,3.84,2019-08-29 23:11:00,157 13th St, San Francisco,CA,94016 +244127,USB-C Charging Cable,1,11.95,2019-08-27 23:25:00,702 Ridge St, Seattle,WA,98101 +244128,AA Batteries (4-pack),1,3.84,2019-08-12 16:28:00,214 Adams St, Seattle,WA,98101 +244129,AAA Batteries (4-pack),2,2.99,2019-08-29 14:26:00,949 Willow St, Atlanta,GA,30301 +244130,Lightning Charging Cable,1,14.95,2019-08-26 00:42:00,711 Center St, Atlanta,GA,30301 +244131,AAA Batteries (4-pack),1,2.99,2019-08-21 18:46:00,166 North St, New York City,NY,10001 +244132,Lightning Charging Cable,1,14.95,2019-08-30 13:26:00,410 Lincoln St, Seattle,WA,98101 +244133,AAA Batteries (4-pack),1,2.99,2019-08-30 12:11:00,705 Elm St, Los Angeles,CA,90001 +244134,iPhone,1,700.0,2019-08-22 18:11:00,929 Main St, Seattle,WA,98101 +244135,AA Batteries (4-pack),1,3.84,2019-08-12 23:02:00,903 Adams St, Los Angeles,CA,90001 +244136,27in 4K Gaming Monitor,1,389.99,2019-08-23 16:52:00,585 Park St, Portland,OR,97035 +244137,AAA Batteries (4-pack),1,2.99,2019-08-04 07:41:00,547 Ridge St, Los Angeles,CA,90001 +244138,iPhone,1,700.0,2019-08-14 19:32:00,549 10th St, San Francisco,CA,94016 +244138,Lightning Charging Cable,1,14.95,2019-08-14 19:32:00,549 10th St, San Francisco,CA,94016 +244139,Lightning Charging Cable,1,14.95,2019-08-04 03:39:00,830 4th St, San Francisco,CA,94016 +244140,27in 4K Gaming Monitor,1,389.99,2019-08-07 14:11:00,265 Cherry St, Boston,MA,02215 +244141,Apple Airpods Headphones,1,150.0,2019-08-14 15:58:00,883 13th St, Los Angeles,CA,90001 +244142,Macbook Pro Laptop,1,1700.0,2019-08-09 12:22:00,835 Pine St, Austin,TX,73301 +244143,27in 4K Gaming Monitor,1,389.99,2019-08-09 22:54:00,348 Lincoln St, San Francisco,CA,94016 +244144,AAA Batteries (4-pack),4,2.99,2019-08-20 10:33:00,77 Jackson St, Austin,TX,73301 +244145,Bose SoundSport Headphones,1,99.99,2019-08-13 13:51:00,172 Lake St, New York City,NY,10001 +244146,Google Phone,1,600.0,2019-08-25 12:56:00,123 Center St, Dallas,TX,75001 +244147,ThinkPad Laptop,1,999.99,2019-08-20 19:16:00,152 Forest St, San Francisco,CA,94016 +244148,Lightning Charging Cable,1,14.95,2019-08-21 15:53:00,898 Washington St, Austin,TX,73301 +244149,AAA Batteries (4-pack),1,2.99,2019-08-19 17:22:00,73 Jefferson St, San Francisco,CA,94016 +244150,Wired Headphones,1,11.99,2019-08-05 19:00:00,501 4th St, Atlanta,GA,30301 +244151,AAA Batteries (4-pack),1,2.99,2019-08-13 17:41:00,948 Meadow St, New York City,NY,10001 +244152,AA Batteries (4-pack),1,3.84,2019-08-15 11:37:00,135 Willow St, Atlanta,GA,30301 +244153,AAA Batteries (4-pack),2,2.99,2019-08-19 18:02:00,918 Lakeview St, Atlanta,GA,30301 +244154,AA Batteries (4-pack),1,3.84,2019-08-22 20:34:00,804 Center St, Boston,MA,02215 +244155,Lightning Charging Cable,2,14.95,2019-08-18 15:17:00,702 Center St, Atlanta,GA,30301 +244156,Wired Headphones,1,11.99,2019-08-16 00:03:00,838 West St, Boston,MA,02215 +244157,USB-C Charging Cable,1,11.95,2019-08-05 20:57:00,698 Forest St, Boston,MA,02215 +244158,Wired Headphones,1,11.99,2019-08-31 02:07:00,231 1st St, San Francisco,CA,94016 +244159,Lightning Charging Cable,1,14.95,2019-08-16 18:36:00,191 Jackson St, Seattle,WA,98101 +244160,ThinkPad Laptop,1,999.99,2019-08-03 19:20:00,798 1st St, San Francisco,CA,94016 +244161,Lightning Charging Cable,1,14.95,2019-08-24 15:45:00,716 Lincoln St, Los Angeles,CA,90001 +244162,AA Batteries (4-pack),3,3.84,2019-08-02 13:03:00,143 14th St, Dallas,TX,75001 +244163,USB-C Charging Cable,1,11.95,2019-08-03 15:26:00,309 11th St, San Francisco,CA,94016 +244164,USB-C Charging Cable,1,11.95,2019-08-15 17:08:00,251 Spruce St, Portland,OR,97035 +244165,Wired Headphones,1,11.99,2019-08-26 09:29:00,202 Jackson St, Dallas,TX,75001 +244166,Flatscreen TV,1,300.0,2019-08-09 17:06:00,5 Highland St, San Francisco,CA,94016 +244167,27in FHD Monitor,1,149.99,2019-08-15 11:59:00,321 Cherry St, Los Angeles,CA,90001 +244168,Lightning Charging Cable,1,14.95,2019-08-31 21:59:00,294 2nd St, Seattle,WA,98101 +244169,AA Batteries (4-pack),2,3.84,2019-08-27 16:55:00,897 8th St, Seattle,WA,98101 +244170,USB-C Charging Cable,1,11.95,2019-08-24 20:38:00,757 7th St, San Francisco,CA,94016 +244171,AA Batteries (4-pack),1,3.84,2019-08-31 09:41:00,330 Lakeview St, Los Angeles,CA,90001 +244172,27in 4K Gaming Monitor,1,389.99,2019-08-22 11:53:00,34 4th St, San Francisco,CA,94016 +244173,iPhone,1,700.0,2019-08-28 21:38:00,814 Highland St, Portland,OR,97035 +244173,Lightning Charging Cable,1,14.95,2019-08-28 21:38:00,814 Highland St, Portland,OR,97035 +244174,Apple Airpods Headphones,1,150.0,2019-08-11 10:19:00,265 Madison St, Seattle,WA,98101 +244175,Macbook Pro Laptop,1,1700.0,2019-08-25 17:50:00,13 Lakeview St, Seattle,WA,98101 +244176,USB-C Charging Cable,1,11.95,2019-08-15 01:02:00,829 Park St, San Francisco,CA,94016 +244177,Lightning Charging Cable,1,14.95,2019-08-30 14:34:00,229 14th St, San Francisco,CA,94016 +244178,AAA Batteries (4-pack),1,2.99,2019-08-22 09:13:00,341 12th St, Los Angeles,CA,90001 +244179,Macbook Pro Laptop,1,1700.0,2019-08-29 13:57:00,297 Wilson St, New York City,NY,10001 +244180,Bose SoundSport Headphones,1,99.99,2019-08-28 18:57:00,758 Ridge St, San Francisco,CA,94016 +244181,Flatscreen TV,1,300.0,2019-08-20 13:50:00,469 Meadow St, Portland,ME,04101 +244182,USB-C Charging Cable,1,11.95,2019-08-07 20:32:00,782 Church St, Portland,OR,97035 +244183,AA Batteries (4-pack),1,3.84,2019-08-02 15:40:00,48 9th St, San Francisco,CA,94016 +244184,Bose SoundSport Headphones,1,99.99,2019-08-09 22:11:00,745 Elm St, San Francisco,CA,94016 +244185,AA Batteries (4-pack),1,3.84,2019-08-23 21:42:00,437 Adams St, Atlanta,GA,30301 +244186,USB-C Charging Cable,2,11.95,2019-08-23 18:58:00,200 5th St, San Francisco,CA,94016 +244187,AA Batteries (4-pack),1,3.84,2019-08-05 20:48:00,66 8th St, New York City,NY,10001 +244188,AA Batteries (4-pack),1,3.84,2019-08-28 19:51:00,772 Main St, Los Angeles,CA,90001 +244189,Lightning Charging Cable,1,14.95,2019-08-04 22:27:00,329 Jackson St, Los Angeles,CA,90001 +244190,AA Batteries (4-pack),2,3.84,2019-08-09 17:38:00,370 9th St, Seattle,WA,98101 +244191,Google Phone,1,600.0,2019-08-13 20:46:00,982 Center St, Boston,MA,02215 +244191,USB-C Charging Cable,1,11.95,2019-08-13 20:46:00,982 Center St, Boston,MA,02215 +244191,Bose SoundSport Headphones,1,99.99,2019-08-13 20:46:00,982 Center St, Boston,MA,02215 +244192,Apple Airpods Headphones,1,150.0,2019-08-11 14:58:00,436 4th St, Atlanta,GA,30301 +244193,USB-C Charging Cable,1,11.95,2019-08-27 20:22:00,621 Maple St, New York City,NY,10001 +244194,USB-C Charging Cable,1,11.95,2019-08-09 16:06:00,814 10th St, Los Angeles,CA,90001 +244195,Lightning Charging Cable,1,14.95,2019-08-14 01:48:00,641 8th St, Portland,ME,04101 +244196,20in Monitor,1,109.99,2019-08-25 17:10:00,62 Johnson St, San Francisco,CA,94016 +244197,Lightning Charging Cable,1,14.95,2019-08-21 17:57:00,200 West St, Portland,OR,97035 +244198,AA Batteries (4-pack),1,3.84,2019-08-18 10:06:00,538 Wilson St, Seattle,WA,98101 +244199,27in FHD Monitor,1,149.99,2019-08-28 14:37:00,147 Madison St, San Francisco,CA,94016 +244200,34in Ultrawide Monitor,1,379.99,2019-08-27 20:41:00,704 Walnut St, Los Angeles,CA,90001 +244201,AA Batteries (4-pack),1,3.84,2019-08-01 13:55:00,666 Forest St, San Francisco,CA,94016 +244202,USB-C Charging Cable,1,11.95,2019-08-26 11:22:00,984 Jackson St, Los Angeles,CA,90001 +244203,LG Washing Machine,1,600.0,2019-08-20 08:33:00,193 Washington St, Seattle,WA,98101 +244204,USB-C Charging Cable,1,11.95,2019-08-22 14:29:00,63 Spruce St, Portland,OR,97035 +244205,AA Batteries (4-pack),1,3.84,2019-08-01 21:49:00,262 South St, Los Angeles,CA,90001 +244206,27in FHD Monitor,1,149.99,2019-08-10 21:25:00,93 11th St, Dallas,TX,75001 +244207,Apple Airpods Headphones,1,150.0,2019-08-08 21:52:00,520 Wilson St, Seattle,WA,98101 +244208,Google Phone,1,600.0,2019-08-31 16:21:00,523 Washington St, Portland,ME,04101 +244209,27in FHD Monitor,1,149.99,2019-08-03 10:40:00,473 13th St, San Francisco,CA,94016 +244210,ThinkPad Laptop,1,999.99,2019-08-13 18:11:00,668 Church St, Atlanta,GA,30301 +244211,Wired Headphones,1,11.99,2019-08-14 19:29:00,802 7th St, Austin,TX,73301 +244212,AA Batteries (4-pack),2,3.84,2019-08-22 10:57:00,268 Adams St, San Francisco,CA,94016 +244213,27in 4K Gaming Monitor,1,389.99,2019-08-15 13:04:00,715 Washington St, Dallas,TX,75001 +244214,AA Batteries (4-pack),1,3.84,2019-08-07 22:18:00,991 Center St, Seattle,WA,98101 +244215,ThinkPad Laptop,1,999.99,2019-08-05 19:39:00,24 14th St, Dallas,TX,75001 +244216,Bose SoundSport Headphones,1,99.99,2019-08-18 09:39:00,514 Sunset St, New York City,NY,10001 +244217,Wired Headphones,1,11.99,2019-08-30 13:22:00,576 Washington St, Atlanta,GA,30301 +244218,LG Washing Machine,1,600.0,2019-08-31 22:24:00,833 Madison St, Los Angeles,CA,90001 +244219,Bose SoundSport Headphones,1,99.99,2019-08-13 21:38:00,155 Adams St, Boston,MA,02215 +244220,Apple Airpods Headphones,1,150.0,2019-08-29 21:27:00,869 Madison St, Portland,OR,97035 +244221,Macbook Pro Laptop,1,1700.0,2019-08-03 06:33:00,524 11th St, New York City,NY,10001 +244222,Wired Headphones,1,11.99,2019-08-28 19:42:00,54 Washington St, New York City,NY,10001 +244223,Bose SoundSport Headphones,1,99.99,2019-08-18 14:08:00,102 Cherry St, Dallas,TX,75001 +244224,ThinkPad Laptop,1,999.99,2019-08-13 17:02:00,394 Center St, San Francisco,CA,94016 +244225,Lightning Charging Cable,2,14.95,2019-08-16 09:01:00,148 9th St, Boston,MA,02215 +244226,Lightning Charging Cable,1,14.95,2019-08-09 11:32:00,722 Hickory St, Atlanta,GA,30301 +244227,Wired Headphones,1,11.99,2019-08-28 11:23:00,562 14th St, Austin,TX,73301 +244228,Wired Headphones,1,11.99,2019-08-01 16:51:00,167 11th St, Boston,MA,02215 +244229,27in 4K Gaming Monitor,1,389.99,2019-08-13 18:45:00,88 South St, San Francisco,CA,94016 +244230,ThinkPad Laptop,1,999.99,2019-08-02 18:30:00,386 River St, Boston,MA,02215 +244231,AAA Batteries (4-pack),1,2.99,2019-08-16 02:33:00,630 West St, San Francisco,CA,94016 +244232,Lightning Charging Cable,1,14.95,2019-08-20 22:56:00,756 12th St, Los Angeles,CA,90001 +244233,AA Batteries (4-pack),1,3.84,2019-08-27 17:38:00,323 13th St, San Francisco,CA,94016 +244234,AA Batteries (4-pack),1,3.84,2019-08-29 22:54:00,799 12th St, Seattle,WA,98101 +244235,USB-C Charging Cable,1,11.95,2019-08-02 19:50:00,990 Forest St, Portland,OR,97035 +244236,AAA Batteries (4-pack),1,2.99,2019-08-29 14:06:00,27 Dogwood St, Austin,TX,73301 +244237,AA Batteries (4-pack),1,3.84,2019-08-20 18:37:00,727 Hill St, San Francisco,CA,94016 +244238,Wired Headphones,1,11.99,2019-08-31 15:59:00,935 Adams St, New York City,NY,10001 +244239,AA Batteries (4-pack),1,3.84,2019-08-20 09:55:00,4 Highland St, San Francisco,CA,94016 +244240,Lightning Charging Cable,1,14.95,2019-08-06 11:48:00,582 5th St, San Francisco,CA,94016 +244241,Wired Headphones,1,11.99,2019-08-22 21:56:00,986 Chestnut St, Boston,MA,02215 +244242,Lightning Charging Cable,1,14.95,2019-08-24 23:06:00,733 10th St, Boston,MA,02215 +244243,Apple Airpods Headphones,1,150.0,2019-08-04 20:05:00,824 Meadow St, Dallas,TX,75001 +244244,Flatscreen TV,1,300.0,2019-08-28 08:33:00,668 Cedar St, Atlanta,GA,30301 +244245,Apple Airpods Headphones,1,150.0,2019-08-14 10:12:00,940 Meadow St, Dallas,TX,75001 +244245,Wired Headphones,1,11.99,2019-08-14 10:12:00,940 Meadow St, Dallas,TX,75001 +244246,AA Batteries (4-pack),2,3.84,2019-08-24 22:32:00,885 Park St, New York City,NY,10001 +244247,Google Phone,1,600.0,2019-08-02 13:09:00,842 River St, San Francisco,CA,94016 +244248,Macbook Pro Laptop,1,1700.0,2019-08-01 16:00:00,227 Johnson St, Seattle,WA,98101 +244249,Lightning Charging Cable,1,14.95,2019-08-13 23:56:00,232 Willow St, Seattle,WA,98101 +244250,Bose SoundSport Headphones,1,99.99,2019-08-26 07:09:00,515 9th St, Atlanta,GA,30301 +244251,Wired Headphones,1,11.99,2019-08-30 14:22:00,14 14th St, Atlanta,GA,30301 +244252,LG Washing Machine,1,600.0,2019-08-13 13:23:00,305 Main St, San Francisco,CA,94016 +244253,AA Batteries (4-pack),1,3.84,2019-08-27 14:14:00,477 Spruce St, Atlanta,GA,30301 +244254,Lightning Charging Cable,1,14.95,2019-08-15 12:27:00,709 Maple St, Boston,MA,02215 +244255,AA Batteries (4-pack),1,3.84,2019-08-28 11:15:00,280 Sunset St, San Francisco,CA,94016 +244256,AAA Batteries (4-pack),2,2.99,2019-08-12 17:38:00,434 Johnson St, New York City,NY,10001 +244257,Lightning Charging Cable,1,14.95,2019-08-22 16:55:00,455 9th St, San Francisco,CA,94016 +244257,27in 4K Gaming Monitor,1,389.99,2019-08-22 16:55:00,455 9th St, San Francisco,CA,94016 +244258,27in 4K Gaming Monitor,1,389.99,2019-08-12 01:25:00,80 Johnson St, Seattle,WA,98101 +244259,Lightning Charging Cable,1,14.95,2019-08-05 00:39:00,816 9th St, Boston,MA,02215 +244260,ThinkPad Laptop,1,999.99,2019-08-06 19:17:00,118 5th St, San Francisco,CA,94016 +244261,34in Ultrawide Monitor,1,379.99,2019-08-19 12:17:00,464 South St, Seattle,WA,98101 +244262,20in Monitor,1,109.99,2019-08-02 11:47:00,170 Madison St, San Francisco,CA,94016 +244263,Apple Airpods Headphones,1,150.0,2019-08-20 11:27:00,267 Lakeview St, Atlanta,GA,30301 +244264,Wired Headphones,1,11.99,2019-08-06 14:52:00,209 Madison St, Seattle,WA,98101 +244265,Apple Airpods Headphones,1,150.0,2019-08-21 12:12:00,204 Hill St, Seattle,WA,98101 +244266,AAA Batteries (4-pack),1,2.99,2019-08-29 12:42:00,348 Elm St, Dallas,TX,75001 +244267,AA Batteries (4-pack),1,3.84,2019-08-14 09:45:00,912 Adams St, Los Angeles,CA,90001 +244268,AAA Batteries (4-pack),1,2.99,2019-08-03 22:18:00,750 Meadow St, San Francisco,CA,94016 +244269,Google Phone,1,600.0,2019-08-05 11:05:00,822 Hill St, Seattle,WA,98101 +244270,AAA Batteries (4-pack),1,2.99,2019-08-08 12:17:00,900 Chestnut St, Boston,MA,02215 +244271,USB-C Charging Cable,1,11.95,2019-08-29 18:35:00,633 14th St, New York City,NY,10001 +244272,AAA Batteries (4-pack),2,2.99,2019-08-11 12:07:00,681 Jefferson St, Los Angeles,CA,90001 +244273,AAA Batteries (4-pack),1,2.99,2019-08-03 20:22:00,631 12th St, Portland,OR,97035 +244274,Wired Headphones,1,11.99,2019-08-04 04:27:00,328 Forest St, Portland,OR,97035 +244275,AAA Batteries (4-pack),2,2.99,2019-08-01 13:10:00,980 2nd St, Boston,MA,02215 +244276,34in Ultrawide Monitor,1,379.99,2019-08-19 09:32:00,112 6th St, San Francisco,CA,94016 +244277,AA Batteries (4-pack),2,3.84,2019-08-31 18:19:00,371 Chestnut St, New York City,NY,10001 +244278,AA Batteries (4-pack),1,3.84,2019-08-26 10:17:00,941 Dogwood St, Boston,MA,02215 +244279,Google Phone,1,600.0,2019-08-30 23:16:00,403 Lincoln St, San Francisco,CA,94016 +244280,Bose SoundSport Headphones,1,99.99,2019-08-05 14:49:00,787 Highland St, Los Angeles,CA,90001 +244281,Apple Airpods Headphones,1,150.0,2019-08-09 14:26:00,937 Sunset St, New York City,NY,10001 +244282,USB-C Charging Cable,1,11.95,2019-08-30 20:20:00,521 Ridge St, San Francisco,CA,94016 +244283,34in Ultrawide Monitor,1,379.99,2019-08-23 22:21:00,706 6th St, San Francisco,CA,94016 +244284,AAA Batteries (4-pack),2,2.99,2019-08-26 21:46:00,508 4th St, New York City,NY,10001 +244285,27in FHD Monitor,1,149.99,2019-08-11 06:06:00,577 Main St, New York City,NY,10001 +244286,USB-C Charging Cable,1,11.95,2019-08-26 13:49:00,659 Spruce St, Dallas,TX,75001 +244287,USB-C Charging Cable,1,11.95,2019-08-25 16:29:00,98 Jackson St, San Francisco,CA,94016 +244288,AA Batteries (4-pack),1,3.84,2019-08-27 00:34:00,916 Adams St, New York City,NY,10001 +244289,AAA Batteries (4-pack),1,2.99,2019-08-28 15:51:00,912 Madison St, Seattle,WA,98101 +244290,27in FHD Monitor,1,149.99,2019-08-14 10:38:00,794 Wilson St, Los Angeles,CA,90001 +244291,Apple Airpods Headphones,1,150.0,2019-08-10 11:41:00,844 Pine St, San Francisco,CA,94016 +244292,ThinkPad Laptop,1,999.99,2019-08-08 10:32:00,742 Hickory St, Los Angeles,CA,90001 +244293,Wired Headphones,2,11.99,2019-08-19 16:12:00,402 10th St, Boston,MA,02215 +244294,Apple Airpods Headphones,1,150.0,2019-08-13 20:28:00,910 Ridge St, San Francisco,CA,94016 +244295,USB-C Charging Cable,1,11.95,2019-08-28 17:20:00,508 Hickory St, Portland,ME,04101 +244296,AA Batteries (4-pack),1,3.84,2019-08-26 08:08:00,89 Johnson St, New York City,NY,10001 +244297,AA Batteries (4-pack),1,3.84,2019-08-20 11:34:00,853 Wilson St, Seattle,WA,98101 +244298,27in 4K Gaming Monitor,1,389.99,2019-08-09 13:01:00,836 8th St, Los Angeles,CA,90001 +244299,AA Batteries (4-pack),2,3.84,2019-08-22 20:22:00,57 Hill St, New York City,NY,10001 +244300,AAA Batteries (4-pack),1,2.99,2019-08-26 11:44:00,371 Washington St, Los Angeles,CA,90001 +244301,Wired Headphones,1,11.99,2019-08-06 13:33:00,499 1st St, Portland,OR,97035 +244302,USB-C Charging Cable,1,11.95,2019-08-18 21:16:00,935 5th St, New York City,NY,10001 +244303,Wired Headphones,1,11.99,2019-08-18 19:30:00,570 Sunset St, San Francisco,CA,94016 +244304,AAA Batteries (4-pack),1,2.99,2019-08-21 15:31:00,474 Maple St, San Francisco,CA,94016 +244305,Apple Airpods Headphones,1,150.0,2019-08-18 12:16:00,51 Walnut St, Los Angeles,CA,90001 +244306,AA Batteries (4-pack),2,3.84,2019-08-29 09:49:00,349 4th St, Seattle,WA,98101 +244307,Google Phone,1,600.0,2019-08-18 17:03:00,913 14th St, Dallas,TX,75001 +244307,USB-C Charging Cable,1,11.95,2019-08-18 17:03:00,913 14th St, Dallas,TX,75001 +244307,Wired Headphones,1,11.99,2019-08-18 17:03:00,913 14th St, Dallas,TX,75001 +244308,27in FHD Monitor,1,149.99,2019-08-26 07:56:00,554 South St, San Francisco,CA,94016 +244309,Apple Airpods Headphones,1,150.0,2019-08-27 17:06:00,371 9th St, Seattle,WA,98101 +244310,20in Monitor,1,109.99,2019-08-17 21:24:00,675 Jackson St, Portland,OR,97035 +244311,USB-C Charging Cable,1,11.95,2019-08-15 22:37:00,755 Ridge St, New York City,NY,10001 +244312,Wired Headphones,1,11.99,2019-08-23 21:16:00,575 10th St, Boston,MA,02215 +244313,AA Batteries (4-pack),1,3.84,2019-08-28 18:02:00,902 North St, Austin,TX,73301 +244314,Bose SoundSport Headphones,1,99.99,2019-08-30 11:31:00,984 Elm St, Austin,TX,73301 +244315,Lightning Charging Cable,1,14.95,2019-08-30 10:05:00,951 West St, San Francisco,CA,94016 +244316,Lightning Charging Cable,1,14.95,2019-08-11 20:00:00,846 Cherry St, San Francisco,CA,94016 +244317,Apple Airpods Headphones,1,150.0,2019-08-02 22:20:00,768 River St, Dallas,TX,75001 +244318,AAA Batteries (4-pack),1,2.99,2019-08-22 21:28:00,655 7th St, Boston,MA,02215 +244319,Bose SoundSport Headphones,1,99.99,2019-08-06 18:05:00,84 Lake St, Dallas,TX,75001 +244320,USB-C Charging Cable,1,11.95,2019-08-13 19:23:00,234 Hill St, Los Angeles,CA,90001 +244321,AA Batteries (4-pack),2,3.84,2019-08-09 15:51:00,141 Spruce St, Seattle,WA,98101 +244322,Macbook Pro Laptop,1,1700.0,2019-08-10 19:58:00,225 Walnut St, San Francisco,CA,94016 +244323,AA Batteries (4-pack),1,3.84,2019-08-25 08:09:00,198 10th St, Portland,OR,97035 +244324,AA Batteries (4-pack),1,3.84,2019-08-24 10:42:00,12 Wilson St, San Francisco,CA,94016 +244325,AA Batteries (4-pack),3,3.84,2019-08-05 15:28:00,655 Jefferson St, San Francisco,CA,94016 +244326,Bose SoundSport Headphones,1,99.99,2019-08-20 10:30:00,612 Lakeview St, Boston,MA,02215 +244327,Wired Headphones,1,11.99,2019-08-12 21:33:00,967 Meadow St, Boston,MA,02215 +244328,AAA Batteries (4-pack),1,2.99,2019-08-01 22:51:00,498 Cherry St, Dallas,TX,75001 +244328,Bose SoundSport Headphones,1,99.99,2019-08-01 22:51:00,498 Cherry St, Dallas,TX,75001 +244329,Apple Airpods Headphones,1,150.0,2019-08-15 13:55:00,864 13th St, Los Angeles,CA,90001 +244330,27in 4K Gaming Monitor,1,389.99,2019-08-19 12:51:00,225 Willow St, Dallas,TX,75001 +244330,USB-C Charging Cable,1,11.95,2019-08-19 12:51:00,225 Willow St, Dallas,TX,75001 +244331,Apple Airpods Headphones,1,150.0,2019-08-18 11:55:00,846 West St, Seattle,WA,98101 +244332,Wired Headphones,1,11.99,2019-08-14 16:33:00,625 Pine St, San Francisco,CA,94016 +244333,AAA Batteries (4-pack),1,2.99,2019-08-26 08:42:00,824 12th St, Dallas,TX,75001 +244334,Lightning Charging Cable,1,14.95,2019-08-07 09:19:00,119 Main St, Los Angeles,CA,90001 +244335,AAA Batteries (4-pack),1,2.99,2019-08-29 19:23:00,341 Elm St, Los Angeles,CA,90001 +244336,Flatscreen TV,1,300.0,2019-08-22 20:23:00,950 14th St, San Francisco,CA,94016 +244337,Lightning Charging Cable,1,14.95,2019-08-12 12:26:00,223 Forest St, Dallas,TX,75001 +244338,Google Phone,1,600.0,2019-08-09 11:22:00,25 Park St, Los Angeles,CA,90001 +244338,USB-C Charging Cable,1,11.95,2019-08-09 11:22:00,25 Park St, Los Angeles,CA,90001 +244339,Macbook Pro Laptop,1,1700.0,2019-08-10 18:26:00,158 Washington St, Atlanta,GA,30301 +244340,Macbook Pro Laptop,1,1700.0,2019-08-17 10:58:00,873 6th St, Seattle,WA,98101 +244341,Lightning Charging Cable,1,14.95,2019-08-13 10:58:00,517 Jackson St, San Francisco,CA,94016 +244342,ThinkPad Laptop,1,999.99,2019-08-26 17:56:00,302 Wilson St, Los Angeles,CA,90001 +244343,Apple Airpods Headphones,1,150.0,2019-08-08 14:22:00,554 Pine St, New York City,NY,10001 +244344,AAA Batteries (4-pack),3,2.99,2019-08-02 10:06:00,826 Chestnut St, Portland,OR,97035 +244345,27in 4K Gaming Monitor,1,389.99,2019-08-14 17:12:00,861 Highland St, San Francisco,CA,94016 +244346,Google Phone,1,600.0,2019-08-26 17:34:00,957 South St, San Francisco,CA,94016 +244346,USB-C Charging Cable,1,11.95,2019-08-26 17:34:00,957 South St, San Francisco,CA,94016 +244346,Wired Headphones,1,11.99,2019-08-26 17:34:00,957 South St, San Francisco,CA,94016 +244347,Apple Airpods Headphones,2,150.0,2019-08-28 22:00:00,611 Spruce St, Seattle,WA,98101 +244348,Google Phone,1,600.0,2019-08-06 08:54:00,786 4th St, Atlanta,GA,30301 +244349,AA Batteries (4-pack),1,3.84,2019-08-30 15:58:00,653 6th St, Portland,OR,97035 +244350,Lightning Charging Cable,1,14.95,2019-08-22 08:22:00,729 Pine St, Boston,MA,02215 +244351,AAA Batteries (4-pack),2,2.99,2019-08-14 17:13:00,857 Madison St, Boston,MA,02215 +244352,AAA Batteries (4-pack),4,2.99,2019-08-27 17:11:00,390 Willow St, Seattle,WA,98101 +244353,Apple Airpods Headphones,1,150.0,2019-08-28 07:19:00,387 Ridge St, San Francisco,CA,94016 +244354,Lightning Charging Cable,1,14.95,2019-08-09 22:46:00,844 Dogwood St, Los Angeles,CA,90001 +244355,ThinkPad Laptop,1,999.99,2019-08-07 19:59:00,122 Lake St, Austin,TX,73301 +244356,ThinkPad Laptop,1,999.99,2019-08-11 10:41:00,978 5th St, Atlanta,GA,30301 +244357,Bose SoundSport Headphones,1,99.99,2019-08-08 13:57:00,548 Chestnut St, Portland,OR,97035 +244358,AA Batteries (4-pack),2,3.84,2019-08-03 14:50:00,56 Sunset St, Seattle,WA,98101 +244359,AAA Batteries (4-pack),1,2.99,2019-08-29 10:08:00,802 5th St, New York City,NY,10001 +244360,Apple Airpods Headphones,1,150.0,2019-08-23 06:54:00,858 Washington St, Los Angeles,CA,90001 +244361,AAA Batteries (4-pack),1,2.99,2019-08-24 19:38:00,726 Maple St, Boston,MA,02215 +244362,27in FHD Monitor,1,149.99,2019-08-17 20:21:00,62 West St, San Francisco,CA,94016 +244363,27in FHD Monitor,1,149.99,2019-08-13 23:05:00,877 Ridge St, New York City,NY,10001 +244364,Bose SoundSport Headphones,1,99.99,2019-08-18 17:57:00,354 South St, Atlanta,GA,30301 +244365,27in 4K Gaming Monitor,1,389.99,2019-08-14 21:35:00,415 Church St, New York City,NY,10001 +244366,27in FHD Monitor,1,149.99,2019-08-06 19:43:00,801 Jackson St, Boston,MA,02215 +244367,AAA Batteries (4-pack),1,2.99,2019-08-06 13:51:00,145 Lake St, Atlanta,GA,30301 +244368,34in Ultrawide Monitor,1,379.99,2019-08-30 20:31:00,879 Park St, New York City,NY,10001 +244369,AAA Batteries (4-pack),1,2.99,2019-08-17 14:30:00,777 13th St, Boston,MA,02215 +244370,Apple Airpods Headphones,1,150.0,2019-08-06 19:57:00,884 Chestnut St, San Francisco,CA,94016 +244371,27in FHD Monitor,1,149.99,2019-08-12 19:01:00,112 14th St, Los Angeles,CA,90001 +244372,Lightning Charging Cable,1,14.95,2019-08-21 15:13:00,963 9th St, Portland,OR,97035 +244373,AA Batteries (4-pack),2,3.84,2019-08-16 23:59:00,351 Jackson St, Portland,OR,97035 +244374,USB-C Charging Cable,1,11.95,2019-08-27 12:02:00,616 8th St, New York City,NY,10001 +244375,Lightning Charging Cable,2,14.95,2019-08-04 23:21:00,29 5th St, Dallas,TX,75001 +244376,USB-C Charging Cable,1,11.95,2019-08-01 22:50:00,999 Meadow St, Atlanta,GA,30301 +244377,USB-C Charging Cable,1,11.95,2019-08-01 16:51:00,859 South St, San Francisco,CA,94016 +244378,Apple Airpods Headphones,1,150.0,2019-08-01 15:28:00,931 Washington St, Dallas,TX,75001 +244379,USB-C Charging Cable,1,11.95,2019-08-19 10:47:00,562 4th St, San Francisco,CA,94016 +244380,20in Monitor,1,109.99,2019-08-01 13:26:00,887 Lakeview St, New York City,NY,10001 +244381,Apple Airpods Headphones,1,150.0,2019-08-09 07:29:00,572 5th St, Portland,OR,97035 +244382,USB-C Charging Cable,1,11.95,2019-08-16 10:29:00,948 Lincoln St, Portland,ME,04101 +244383,Lightning Charging Cable,1,14.95,2019-08-07 19:34:00,854 Willow St, Los Angeles,CA,90001 +244384,AA Batteries (4-pack),1,3.84,2019-08-25 18:01:00,490 4th St, Los Angeles,CA,90001 +244385,AAA Batteries (4-pack),1,2.99,2019-08-27 20:17:00,144 Maple St, Portland,OR,97035 +244386,AAA Batteries (4-pack),1,2.99,2019-08-10 19:00:00,621 Park St, Seattle,WA,98101 +244387,27in 4K Gaming Monitor,1,389.99,2019-08-07 17:52:00,939 1st St, Boston,MA,02215 +244388,Lightning Charging Cable,1,14.95,2019-08-27 12:45:00,724 South St, Los Angeles,CA,90001 +244389,27in 4K Gaming Monitor,1,389.99,2019-08-02 21:37:00,631 West St, Atlanta,GA,30301 +244390,Lightning Charging Cable,1,14.95,2019-08-13 12:08:00,286 Dogwood St, Los Angeles,CA,90001 +244391,Wired Headphones,1,11.99,2019-08-16 18:03:00,276 10th St, Austin,TX,73301 +244392,Bose SoundSport Headphones,1,99.99,2019-08-11 16:24:00,113 Forest St, San Francisco,CA,94016 +244393,Wired Headphones,1,11.99,2019-08-28 18:07:00,884 Forest St, Boston,MA,02215 +244394,AA Batteries (4-pack),1,3.84,2019-08-10 14:45:00,878 2nd St, New York City,NY,10001 +244395,USB-C Charging Cable,1,11.95,2019-08-20 16:24:00,627 Main St, San Francisco,CA,94016 +244396,Bose SoundSport Headphones,1,99.99,2019-08-28 14:53:00,377 Jackson St, Austin,TX,73301 +244397,Wired Headphones,1,11.99,2019-08-20 15:13:00,98 Washington St, New York City,NY,10001 +244398,AAA Batteries (4-pack),1,2.99,2019-08-18 13:53:00,748 North St, New York City,NY,10001 +244399,Apple Airpods Headphones,1,150.0,2019-08-07 09:06:00,284 Jefferson St, New York City,NY,10001 +244400,USB-C Charging Cable,1,11.95,2019-08-29 13:00:00,771 14th St, Seattle,WA,98101 +244401,Flatscreen TV,1,300.0,2019-08-01 10:46:00,472 Church St, San Francisco,CA,94016 +244402,USB-C Charging Cable,1,11.95,2019-08-28 19:48:00,859 10th St, Los Angeles,CA,90001 +244403,Macbook Pro Laptop,1,1700.0,2019-08-30 15:05:00,820 Washington St, Los Angeles,CA,90001 +244404,Wired Headphones,1,11.99,2019-08-12 17:44:00,106 Forest St, San Francisco,CA,94016 +244405,Apple Airpods Headphones,1,150.0,2019-08-13 13:33:00,144 Pine St, Dallas,TX,75001 +244406,AA Batteries (4-pack),1,3.84,2019-08-22 23:28:00,11 South St, Portland,OR,97035 +244407,20in Monitor,1,109.99,2019-08-01 22:04:00,715 Adams St, San Francisco,CA,94016 +244408,AAA Batteries (4-pack),1,2.99,2019-08-15 13:29:00,137 Hickory St, San Francisco,CA,94016 +244409,USB-C Charging Cable,1,11.95,2019-08-31 08:43:00,142 Elm St, New York City,NY,10001 +244410,AA Batteries (4-pack),1,3.84,2019-08-03 20:00:00,317 Forest St, Portland,OR,97035 +244411,Lightning Charging Cable,1,14.95,2019-08-12 11:27:00,294 Lincoln St, Atlanta,GA,30301 +244412,Flatscreen TV,1,300.0,2019-08-15 09:35:00,772 6th St, Portland,OR,97035 +244413,Wired Headphones,1,11.99,2019-08-23 15:35:00,633 Madison St, San Francisco,CA,94016 +244414,Macbook Pro Laptop,1,1700.0,2019-08-22 14:02:00,505 13th St, Atlanta,GA,30301 +244415,AA Batteries (4-pack),1,3.84,2019-08-07 11:49:00,505 Lakeview St, San Francisco,CA,94016 +244416,34in Ultrawide Monitor,1,379.99,2019-08-18 13:28:00,658 14th St, New York City,NY,10001 +244417,27in FHD Monitor,1,149.99,2019-08-30 17:06:00,407 Dogwood St, Boston,MA,02215 +244418,Wired Headphones,1,11.99,2019-08-05 11:38:00,81 Chestnut St, New York City,NY,10001 +244419,ThinkPad Laptop,1,999.99,2019-08-18 23:27:00,364 7th St, Portland,OR,97035 +244420,ThinkPad Laptop,1,999.99,2019-08-10 19:01:00,103 Johnson St, San Francisco,CA,94016 +244421,34in Ultrawide Monitor,1,379.99,2019-08-27 15:27:00,148 Dogwood St, Boston,MA,02215 +244422,AA Batteries (4-pack),1,3.84,2019-08-10 14:45:00,546 Highland St, Atlanta,GA,30301 +244423,Apple Airpods Headphones,1,150.0,2019-08-09 15:46:00,949 River St, San Francisco,CA,94016 +244424,iPhone,1,700.0,2019-08-02 23:58:00,488 6th St, San Francisco,CA,94016 +244425,iPhone,1,700.0,2019-08-23 13:55:00,460 Hickory St, Atlanta,GA,30301 +244426,Apple Airpods Headphones,1,150.0,2019-08-25 10:34:00,866 Jackson St, New York City,NY,10001 +244427,AAA Batteries (4-pack),1,2.99,2019-08-22 17:44:00,417 Forest St, Portland,ME,04101 +244428,USB-C Charging Cable,2,11.95,2019-08-30 09:14:00,5 5th St, Portland,ME,04101 +244429,Apple Airpods Headphones,1,150.0,2019-08-28 19:41:00,513 West St, Seattle,WA,98101 +244430,Lightning Charging Cable,1,14.95,2019-08-25 20:07:00,920 Cedar St, Los Angeles,CA,90001 +244431,AAA Batteries (4-pack),1,2.99,2019-08-18 11:59:00,907 4th St, Portland,OR,97035 +244432,USB-C Charging Cable,1,11.95,2019-08-02 12:05:00,772 West St, Seattle,WA,98101 +244433,USB-C Charging Cable,1,11.95,2019-08-17 16:48:00,234 Main St, San Francisco,CA,94016 +244434,Macbook Pro Laptop,1,1700.0,2019-08-20 14:49:00,399 Lincoln St, Atlanta,GA,30301 +244435,Bose SoundSport Headphones,1,99.99,2019-08-11 19:31:00,608 Meadow St, San Francisco,CA,94016 +244436,Apple Airpods Headphones,1,150.0,2019-08-22 19:04:00,339 South St, San Francisco,CA,94016 +244437,Lightning Charging Cable,1,14.95,2019-08-18 10:17:00,241 Meadow St, New York City,NY,10001 +244438,Wired Headphones,2,11.99,2019-08-09 03:48:00,136 Park St, San Francisco,CA,94016 +244439,AAA Batteries (4-pack),1,2.99,2019-08-17 10:26:00,111 Lakeview St, Los Angeles,CA,90001 +244440,USB-C Charging Cable,1,11.95,2019-08-20 10:24:00,502 6th St, San Francisco,CA,94016 +244441,ThinkPad Laptop,1,999.99,2019-08-24 17:07:00,290 13th St, San Francisco,CA,94016 +244442,USB-C Charging Cable,1,11.95,2019-08-11 18:45:00,413 6th St, New York City,NY,10001 +244443,Wired Headphones,1,11.99,2019-08-30 19:11:00,292 Meadow St, San Francisco,CA,94016 +244444,AA Batteries (4-pack),1,3.84,2019-08-30 01:49:00,995 West St, San Francisco,CA,94016 +244445,USB-C Charging Cable,1,11.95,2019-08-05 15:50:00,893 8th St, Los Angeles,CA,90001 +244446,AAA Batteries (4-pack),1,2.99,2019-08-28 21:15:00,390 5th St, Dallas,TX,75001 +244447,Vareebadd Phone,1,400.0,2019-08-18 11:04:00,836 6th St, Los Angeles,CA,90001 +244448,AAA Batteries (4-pack),2,2.99,2019-08-04 12:26:00,42 2nd St, San Francisco,CA,94016 +244449,Bose SoundSport Headphones,1,99.99,2019-08-12 12:52:00,246 Park St, Los Angeles,CA,90001 +244450,27in 4K Gaming Monitor,1,389.99,2019-08-28 20:36:00,722 6th St, Los Angeles,CA,90001 +244451,Wired Headphones,1,11.99,2019-08-18 22:44:00,981 Ridge St, Los Angeles,CA,90001 +244452,AA Batteries (4-pack),1,3.84,2019-08-15 18:38:00,634 Hickory St, San Francisco,CA,94016 +244453,27in 4K Gaming Monitor,1,389.99,2019-08-03 14:41:00,920 Hickory St, San Francisco,CA,94016 +244454,Bose SoundSport Headphones,1,99.99,2019-08-11 21:39:00,327 North St, San Francisco,CA,94016 +244455,AA Batteries (4-pack),2,3.84,2019-08-01 16:39:00,959 9th St, Boston,MA,02215 +244456,20in Monitor,1,109.99,2019-08-20 20:57:00,354 2nd St, New York City,NY,10001 +244457,AAA Batteries (4-pack),1,2.99,2019-08-24 21:27:00,384 9th St, Los Angeles,CA,90001 +244458,Lightning Charging Cable,1,14.95,2019-08-02 18:48:00,979 Sunset St, Seattle,WA,98101 +244459,Wired Headphones,1,11.99,2019-08-19 16:27:00,563 7th St, Los Angeles,CA,90001 +244460,ThinkPad Laptop,1,999.99,2019-08-17 14:31:00,257 Washington St, Boston,MA,02215 +244461,Bose SoundSport Headphones,1,99.99,2019-08-21 12:01:00,213 Pine St, Boston,MA,02215 +244461,AAA Batteries (4-pack),1,2.99,2019-08-21 12:01:00,213 Pine St, Boston,MA,02215 +244462,Bose SoundSport Headphones,1,99.99,2019-08-16 11:31:00,444 Hickory St, Los Angeles,CA,90001 +244463,AA Batteries (4-pack),1,3.84,2019-08-28 19:25:00,109 Park St, Atlanta,GA,30301 +244464,AAA Batteries (4-pack),4,2.99,2019-08-28 17:14:00,804 5th St, New York City,NY,10001 +244465,AA Batteries (4-pack),1,3.84,2019-08-14 10:12:00,502 Adams St, San Francisco,CA,94016 +244466,AA Batteries (4-pack),2,3.84,2019-08-09 11:08:00,540 Sunset St, San Francisco,CA,94016 +244467,USB-C Charging Cable,1,11.95,2019-08-31 14:12:00,354 Main St, Los Angeles,CA,90001 +244468,Lightning Charging Cable,1,14.95,2019-08-23 16:47:00,342 Church St, Dallas,TX,75001 +244469,ThinkPad Laptop,1,999.99,2019-08-05 21:57:00,55 Dogwood St, Los Angeles,CA,90001 +244470,Apple Airpods Headphones,1,150.0,2019-08-08 20:04:00,272 13th St, San Francisco,CA,94016 +244471,27in 4K Gaming Monitor,1,389.99,2019-08-12 18:29:00,54 Walnut St, San Francisco,CA,94016 +244472,Wired Headphones,1,11.99,2019-08-14 13:13:00,567 12th St, Atlanta,GA,30301 +244473,Lightning Charging Cable,1,14.95,2019-08-12 20:54:00,32 2nd St, New York City,NY,10001 +244474,Bose SoundSport Headphones,1,99.99,2019-08-28 17:34:00,350 Hickory St, Los Angeles,CA,90001 +244475,27in FHD Monitor,1,149.99,2019-08-24 21:13:00,710 9th St, Portland,OR,97035 +244476,AAA Batteries (4-pack),1,2.99,2019-08-05 08:57:00,648 7th St, Dallas,TX,75001 +244477,AA Batteries (4-pack),2,3.84,2019-08-12 04:08:00,123 2nd St, Portland,ME,04101 +244478,27in FHD Monitor,1,149.99,2019-08-09 02:18:00,686 Jefferson St, Atlanta,GA,30301 +244479,Wired Headphones,1,11.99,2019-08-12 12:01:00,880 10th St, Los Angeles,CA,90001 +244480,iPhone,1,700.0,2019-08-27 17:31:00,813 Washington St, Boston,MA,02215 +244481,AA Batteries (4-pack),1,3.84,2019-08-09 19:43:00,527 1st St, San Francisco,CA,94016 +244482,Apple Airpods Headphones,1,150.0,2019-08-17 15:17:00,179 Elm St, San Francisco,CA,94016 +244483,Lightning Charging Cable,1,14.95,2019-08-20 08:44:00,809 Elm St, Austin,TX,73301 +244484,Lightning Charging Cable,1,14.95,2019-08-07 12:04:00,206 Washington St, Seattle,WA,98101 +244484,Bose SoundSport Headphones,1,99.99,2019-08-07 12:04:00,206 Washington St, Seattle,WA,98101 +244485,AAA Batteries (4-pack),1,2.99,2019-08-03 14:00:00,98 Adams St, Los Angeles,CA,90001 +244486,Macbook Pro Laptop,1,1700.0,2019-08-26 11:42:00,701 Forest St, Dallas,TX,75001 +244487,Apple Airpods Headphones,1,150.0,2019-08-27 11:09:00,961 Sunset St, Boston,MA,02215 +244488,27in FHD Monitor,1,149.99,2019-08-24 21:55:00,117 6th St, New York City,NY,10001 +244489,Apple Airpods Headphones,1,150.0,2019-08-22 10:35:00,892 Johnson St, Dallas,TX,75001 +244490,Apple Airpods Headphones,1,150.0,2019-08-23 14:47:00,330 Wilson St, San Francisco,CA,94016 +244491,Lightning Charging Cable,1,14.95,2019-08-24 20:10:00,196 Washington St, Austin,TX,73301 +244492,USB-C Charging Cable,1,11.95,2019-08-12 21:00:00,518 North St, New York City,NY,10001 +244493,Wired Headphones,1,11.99,2019-08-21 22:50:00,556 Madison St, Los Angeles,CA,90001 +244494,Bose SoundSport Headphones,1,99.99,2019-08-26 18:13:00,606 Wilson St, San Francisco,CA,94016 +244495,Google Phone,1,600.0,2019-08-10 10:55:00,587 River St, San Francisco,CA,94016 +244495,Bose SoundSport Headphones,1,99.99,2019-08-10 10:55:00,587 River St, San Francisco,CA,94016 +244496,34in Ultrawide Monitor,1,379.99,2019-08-13 21:56:00,393 Dogwood St, Portland,OR,97035 +244497,USB-C Charging Cable,1,11.95,2019-08-14 21:08:00,507 Ridge St, Austin,TX,73301 +244498,Flatscreen TV,1,300.0,2019-08-25 19:13:00,857 Center St, Dallas,TX,75001 +244499,iPhone,1,700.0,2019-08-17 16:34:00,146 Pine St, Dallas,TX,75001 +244500,ThinkPad Laptop,1,999.99,2019-08-09 23:40:00,839 Jefferson St, Seattle,WA,98101 +244501,27in 4K Gaming Monitor,1,389.99,2019-08-05 19:01:00,871 Chestnut St, San Francisco,CA,94016 +244502,AA Batteries (4-pack),1,3.84,2019-08-13 15:06:00,307 Ridge St, Dallas,TX,75001 +244503,Wired Headphones,1,11.99,2019-08-15 17:14:00,587 Lincoln St, Dallas,TX,75001 +244504,AAA Batteries (4-pack),4,2.99,2019-08-15 18:58:00,493 2nd St, San Francisco,CA,94016 +244505,USB-C Charging Cable,1,11.95,2019-08-15 22:52:00,217 13th St, Los Angeles,CA,90001 +244505,Apple Airpods Headphones,1,150.0,2019-08-15 22:52:00,217 13th St, Los Angeles,CA,90001 +244506,iPhone,1,700.0,2019-08-04 23:26:00,915 Center St, Los Angeles,CA,90001 +244507,34in Ultrawide Monitor,1,379.99,2019-08-26 10:40:00,702 Hickory St, Los Angeles,CA,90001 +244508,Macbook Pro Laptop,1,1700.0,2019-08-24 18:13:00,961 4th St, New York City,NY,10001 +244509,AAA Batteries (4-pack),1,2.99,2019-08-07 09:31:00,279 Hickory St, Austin,TX,73301 +244510,Wired Headphones,1,11.99,2019-08-07 20:49:00,24 Wilson St, Atlanta,GA,30301 +244511,USB-C Charging Cable,1,11.95,2019-08-22 13:30:00,654 4th St, Seattle,WA,98101 +244512,27in 4K Gaming Monitor,1,389.99,2019-08-12 13:03:00,8 Chestnut St, Los Angeles,CA,90001 +244513,Bose SoundSport Headphones,1,99.99,2019-08-11 12:18:00,809 Johnson St, Atlanta,GA,30301 +244514,Wired Headphones,2,11.99,2019-08-28 07:54:00,394 Dogwood St, Atlanta,GA,30301 +244515,Apple Airpods Headphones,1,150.0,2019-08-21 11:24:00,365 Madison St, Los Angeles,CA,90001 +244516,AA Batteries (4-pack),2,3.84,2019-08-19 11:08:00,495 Ridge St, Boston,MA,02215 +244517,Wired Headphones,1,11.99,2019-08-01 10:43:00,135 Lakeview St, Atlanta,GA,30301 +244518,AA Batteries (4-pack),5,3.84,2019-08-19 11:05:00,490 Wilson St, Los Angeles,CA,90001 +244519,Macbook Pro Laptop,1,1700.0,2019-08-04 11:09:00,127 Highland St, Atlanta,GA,30301 +244520,Apple Airpods Headphones,1,150.0,2019-08-31 09:56:00,856 Madison St, Boston,MA,02215 +244521,USB-C Charging Cable,1,11.95,2019-08-14 12:17:00,777 Adams St, San Francisco,CA,94016 +244522,Google Phone,1,600.0,2019-08-20 07:23:00,853 Washington St, Atlanta,GA,30301 +244523,USB-C Charging Cable,1,11.95,2019-08-25 18:37:00,35 Lincoln St, Austin,TX,73301 +244524,Apple Airpods Headphones,1,150.0,2019-08-14 19:56:00,763 Lake St, San Francisco,CA,94016 +244525,AAA Batteries (4-pack),1,2.99,2019-08-07 22:15:00,474 6th St, San Francisco,CA,94016 +244526,AA Batteries (4-pack),1,3.84,2019-08-15 00:26:00,316 Washington St, New York City,NY,10001 +244527,34in Ultrawide Monitor,1,379.99,2019-08-05 17:17:00,942 Washington St, Seattle,WA,98101 +244528,USB-C Charging Cable,3,11.95,2019-08-15 12:46:00,394 8th St, Boston,MA,02215 +244529,Apple Airpods Headphones,1,150.0,2019-08-17 22:46:00,129 1st St, San Francisco,CA,94016 +244530,Bose SoundSport Headphones,1,99.99,2019-08-12 20:58:00,92 Lincoln St, San Francisco,CA,94016 +244531,Lightning Charging Cable,1,14.95,2019-08-26 14:12:00,752 Lake St, Portland,OR,97035 +244532,AA Batteries (4-pack),1,3.84,2019-08-07 01:20:00,194 Main St, Los Angeles,CA,90001 +244533,34in Ultrawide Monitor,1,379.99,2019-08-17 11:52:00,406 Highland St, San Francisco,CA,94016 +244534,Wired Headphones,1,11.99,2019-08-08 12:14:00,66 4th St, Seattle,WA,98101 +244535,USB-C Charging Cable,1,11.95,2019-08-11 10:36:00,425 Hill St, Dallas,TX,75001 +244536,USB-C Charging Cable,1,11.95,2019-08-09 08:26:00,128 Elm St, New York City,NY,10001 +244537,Bose SoundSport Headphones,1,99.99,2019-08-11 20:29:00,203 Meadow St, San Francisco,CA,94016 +244538,iPhone,1,700.0,2019-08-13 15:34:00,498 Main St, Los Angeles,CA,90001 +244539,Apple Airpods Headphones,1,150.0,2019-08-26 11:43:00,188 13th St, Atlanta,GA,30301 +244540,Apple Airpods Headphones,1,150.0,2019-08-30 21:43:00,820 Elm St, Boston,MA,02215 +244541,27in FHD Monitor,1,149.99,2019-08-18 12:20:00,688 10th St, New York City,NY,10001 +244542,Bose SoundSport Headphones,1,99.99,2019-08-01 18:46:00,918 Hickory St, San Francisco,CA,94016 +244543,Bose SoundSport Headphones,1,99.99,2019-08-12 13:31:00,118 Lake St, Boston,MA,02215 +244544,LG Washing Machine,1,600.0,2019-08-17 15:26:00,533 South St, Dallas,TX,75001 +244545,Google Phone,1,600.0,2019-08-27 12:13:00,410 1st St, Seattle,WA,98101 +244546,USB-C Charging Cable,1,11.95,2019-08-03 23:16:00,837 Lakeview St, San Francisco,CA,94016 +244547,Bose SoundSport Headphones,1,99.99,2019-08-12 14:51:00,982 Cedar St, San Francisco,CA,94016 +244548,27in FHD Monitor,1,149.99,2019-08-10 18:54:00,749 Lincoln St, Boston,MA,02215 +244549,20in Monitor,1,109.99,2019-08-28 16:14:00,195 Wilson St, Seattle,WA,98101 +244550,Lightning Charging Cable,2,14.95,2019-08-02 11:32:00,170 11th St, San Francisco,CA,94016 +244551,Lightning Charging Cable,1,14.95,2019-08-06 19:29:00,226 Hill St, Dallas,TX,75001 +244552,AAA Batteries (4-pack),1,2.99,2019-08-07 17:08:00,397 Forest St, Seattle,WA,98101 +244553,AAA Batteries (4-pack),1,2.99,2019-08-27 15:42:00,146 Johnson St, Los Angeles,CA,90001 +244554,LG Washing Machine,1,600.0,2019-08-20 14:25:00,550 4th St, Portland,ME,04101 +244555,Bose SoundSport Headphones,1,99.99,2019-08-02 22:01:00,961 Church St, Atlanta,GA,30301 +244556,Wired Headphones,1,11.99,2019-08-10 00:07:00,473 West St, San Francisco,CA,94016 +244557,AAA Batteries (4-pack),1,2.99,2019-08-26 20:18:00,349 West St, Dallas,TX,75001 +244557,Bose SoundSport Headphones,1,99.99,2019-08-26 20:18:00,349 West St, Dallas,TX,75001 +244558,iPhone,1,700.0,2019-08-29 12:00:00,479 Washington St, New York City,NY,10001 +244558,Wired Headphones,1,11.99,2019-08-29 12:00:00,479 Washington St, New York City,NY,10001 +244559,20in Monitor,1,109.99,2019-08-09 23:19:00,431 Maple St, New York City,NY,10001 +244560,Macbook Pro Laptop,1,1700.0,2019-08-01 10:41:00,185 Pine St, Los Angeles,CA,90001 +244561,Vareebadd Phone,1,400.0,2019-08-11 11:53:00,767 Dogwood St, Dallas,TX,75001 +244561,USB-C Charging Cable,2,11.95,2019-08-11 11:53:00,767 Dogwood St, Dallas,TX,75001 +244562,34in Ultrawide Monitor,1,379.99,2019-08-07 15:00:00,892 Lake St, Austin,TX,73301 +244562,Lightning Charging Cable,1,14.95,2019-08-07 15:00:00,892 Lake St, Austin,TX,73301 +244563,Vareebadd Phone,1,400.0,2019-08-13 12:25:00,660 Church St, Los Angeles,CA,90001 +244564,Lightning Charging Cable,1,14.95,2019-08-28 10:16:00,468 Church St, New York City,NY,10001 +244565,Wired Headphones,2,11.99,2019-08-14 13:23:00,596 Lakeview St, San Francisco,CA,94016 +244566,Lightning Charging Cable,1,14.95,2019-08-06 12:31:00,507 River St, New York City,NY,10001 +244567,USB-C Charging Cable,1,11.95,2019-08-31 09:51:00,6 5th St, Boston,MA,02215 +244568,USB-C Charging Cable,1,11.95,2019-08-17 11:30:00,356 Dogwood St, San Francisco,CA,94016 +244569,Lightning Charging Cable,1,14.95,2019-08-09 23:52:00,99 Lake St, Dallas,TX,75001 +244570,Wired Headphones,1,11.99,2019-08-31 19:45:00,786 Ridge St, Austin,TX,73301 +244571,AA Batteries (4-pack),5,3.84,2019-08-02 14:15:00,369 8th St, Portland,OR,97035 +244572,Bose SoundSport Headphones,1,99.99,2019-08-30 12:26:00,384 West St, New York City,NY,10001 +244573,34in Ultrawide Monitor,1,379.99,2019-08-14 13:01:00,737 Lake St, San Francisco,CA,94016 +244574,27in 4K Gaming Monitor,1,389.99,2019-08-07 10:04:00,417 Forest St, San Francisco,CA,94016 +244575,34in Ultrawide Monitor,1,379.99,2019-08-18 20:54:00,68 Center St, San Francisco,CA,94016 +244576,Apple Airpods Headphones,1,150.0,2019-08-15 14:48:00,165 Madison St, Seattle,WA,98101 +244577,Vareebadd Phone,1,400.0,2019-08-28 08:31:00,449 Meadow St, Los Angeles,CA,90001 +244577,Bose SoundSport Headphones,1,99.99,2019-08-28 08:31:00,449 Meadow St, Los Angeles,CA,90001 +244578,Google Phone,1,600.0,2019-08-17 16:05:00,509 Walnut St, Los Angeles,CA,90001 +244579,Bose SoundSport Headphones,1,99.99,2019-08-23 11:28:00,94 Spruce St, San Francisco,CA,94016 +244580,AAA Batteries (4-pack),1,2.99,2019-08-05 10:44:00,156 Hill St, San Francisco,CA,94016 +244581,AA Batteries (4-pack),1,3.84,2019-08-09 14:35:00,614 Hickory St, Seattle,WA,98101 +244582,AA Batteries (4-pack),1,3.84,2019-08-08 08:43:00,159 Chestnut St, New York City,NY,10001 +244583,Bose SoundSport Headphones,1,99.99,2019-08-31 18:20:00,227 Cedar St, Austin,TX,73301 +244584,AA Batteries (4-pack),1,3.84,2019-08-07 15:08:00,632 River St, Dallas,TX,75001 +244585,Bose SoundSport Headphones,1,99.99,2019-08-30 07:00:00,350 12th St, New York City,NY,10001 +244586,iPhone,1,700.0,2019-08-12 19:53:00,473 4th St, San Francisco,CA,94016 +244586,Lightning Charging Cable,1,14.95,2019-08-12 19:53:00,473 4th St, San Francisco,CA,94016 +244587,Bose SoundSport Headphones,1,99.99,2019-08-15 11:42:00,425 Cedar St, Austin,TX,73301 +244588,Flatscreen TV,1,300.0,2019-08-06 05:11:00,395 Cedar St, Los Angeles,CA,90001 +244589,Apple Airpods Headphones,1,150.0,2019-08-14 02:27:00,694 Park St, San Francisco,CA,94016 +244590,Wired Headphones,1,11.99,2019-08-06 07:34:00,319 Cherry St, Boston,MA,02215 +244591,AA Batteries (4-pack),1,3.84,2019-08-23 01:27:00,865 Lake St, San Francisco,CA,94016 +244592,AAA Batteries (4-pack),2,2.99,2019-08-19 12:55:00,576 Forest St, Portland,OR,97035 +244593,AAA Batteries (4-pack),1,2.99,2019-08-19 13:38:00,78 Madison St, Los Angeles,CA,90001 +244594,Lightning Charging Cable,2,14.95,2019-08-04 18:42:00,960 Meadow St, Boston,MA,02215 +244595,iPhone,1,700.0,2019-08-03 18:09:00,711 Center St, Seattle,WA,98101 +244596,Lightning Charging Cable,1,14.95,2019-08-09 09:26:00,900 12th St, New York City,NY,10001 +244597,Apple Airpods Headphones,1,150.0,2019-08-10 13:00:00,985 Cedar St, Atlanta,GA,30301 +244597,AA Batteries (4-pack),1,3.84,2019-08-10 13:00:00,985 Cedar St, Atlanta,GA,30301 +244598,AA Batteries (4-pack),2,3.84,2019-08-21 21:42:00,147 Highland St, San Francisco,CA,94016 +244599,AA Batteries (4-pack),1,3.84,2019-08-14 21:57:00,814 14th St, Boston,MA,02215 +244600,34in Ultrawide Monitor,1,379.99,2019-08-23 16:51:00,440 Johnson St, San Francisco,CA,94016 +244601,Wired Headphones,1,11.99,2019-08-13 07:16:00,527 8th St, New York City,NY,10001 +244602,USB-C Charging Cable,1,11.95,2019-08-13 12:07:00,79 Park St, Seattle,WA,98101 +244603,27in FHD Monitor,1,149.99,2019-08-22 16:22:00,676 2nd St, San Francisco,CA,94016 +244604,Wired Headphones,3,11.99,2019-08-15 21:19:00,261 Ridge St, Los Angeles,CA,90001 +244605,AAA Batteries (4-pack),1,2.99,2019-08-10 13:57:00,374 Dogwood St, San Francisco,CA,94016 +244606,AAA Batteries (4-pack),1,2.99,2019-08-07 21:00:00,145 Chestnut St, Los Angeles,CA,90001 +244607,Lightning Charging Cable,1,14.95,2019-08-23 11:35:00,615 8th St, Boston,MA,02215 +244608,27in FHD Monitor,1,149.99,2019-08-08 08:49:00,931 13th St, New York City,NY,10001 +244609,Apple Airpods Headphones,1,150.0,2019-08-08 14:24:00,18 Main St, Seattle,WA,98101 +244610,USB-C Charging Cable,1,11.95,2019-08-10 19:03:00,670 River St, New York City,NY,10001 +244611,USB-C Charging Cable,2,11.95,2019-08-13 20:43:00,718 Jefferson St, Los Angeles,CA,90001 +244612,USB-C Charging Cable,3,11.95,2019-08-29 19:51:00,341 Walnut St, Seattle,WA,98101 +244613,iPhone,1,700.0,2019-08-17 11:21:00,617 Cedar St, Seattle,WA,98101 +244613,Lightning Charging Cable,1,14.95,2019-08-17 11:21:00,617 Cedar St, Seattle,WA,98101 +244614,Lightning Charging Cable,1,14.95,2019-08-18 23:51:00,589 Jefferson St, San Francisco,CA,94016 +244615,iPhone,1,700.0,2019-08-25 21:36:00,940 2nd St, Los Angeles,CA,90001 +244615,Apple Airpods Headphones,1,150.0,2019-08-25 21:36:00,940 2nd St, Los Angeles,CA,90001 +244616,Wired Headphones,1,11.99,2019-08-31 17:34:00,425 Chestnut St, Los Angeles,CA,90001 +244617,20in Monitor,1,109.99,2019-08-07 21:18:00,686 13th St, Boston,MA,02215 +244618,AAA Batteries (4-pack),1,2.99,2019-08-02 21:55:00,889 South St, San Francisco,CA,94016 +244619,Wired Headphones,1,11.99,2019-08-31 10:25:00,939 4th St, San Francisco,CA,94016 +244620,Wired Headphones,1,11.99,2019-08-20 18:19:00,87 9th St, Portland,OR,97035 +244621,Lightning Charging Cable,1,14.95,2019-08-07 10:28:00,481 Cedar St, Atlanta,GA,30301 +244622,27in 4K Gaming Monitor,1,389.99,2019-08-04 00:37:00,105 Park St, Los Angeles,CA,90001 +244623,Google Phone,1,600.0,2019-08-20 18:27:00,91 14th St, Los Angeles,CA,90001 +244624,Macbook Pro Laptop,1,1700.0,2019-08-25 21:53:00,505 13th St, San Francisco,CA,94016 +244625,Flatscreen TV,1,300.0,2019-08-03 12:53:00,351 Cherry St, Dallas,TX,75001 +244626,Lightning Charging Cable,1,14.95,2019-08-09 10:35:00,856 7th St, Seattle,WA,98101 +244627,USB-C Charging Cable,1,11.95,2019-08-09 16:32:00,900 Hill St, Los Angeles,CA,90001 +244628,Bose SoundSport Headphones,1,99.99,2019-08-29 17:15:00,713 River St, Portland,ME,04101 +244629,Bose SoundSport Headphones,1,99.99,2019-08-13 16:04:00,256 Walnut St, Boston,MA,02215 +244630,Google Phone,1,600.0,2019-08-04 10:41:00,289 1st St, Austin,TX,73301 +244631,27in FHD Monitor,1,149.99,2019-08-04 14:44:00,670 7th St, New York City,NY,10001 +244632,AA Batteries (4-pack),1,3.84,2019-08-15 14:09:00,779 Willow St, Los Angeles,CA,90001 +244633,27in 4K Gaming Monitor,1,389.99,2019-08-28 19:19:00,625 South St, Boston,MA,02215 +244634,USB-C Charging Cable,1,11.95,2019-08-08 23:02:00,418 Main St, Austin,TX,73301 +244635,Google Phone,1,600.0,2019-08-28 07:42:00,872 Cherry St, Seattle,WA,98101 +244636,LG Washing Machine,1,600.0,2019-08-02 11:27:00,205 Ridge St, Seattle,WA,98101 +244637,AA Batteries (4-pack),1,3.84,2019-08-11 11:08:00,289 Spruce St, Dallas,TX,75001 +244638,AAA Batteries (4-pack),1,2.99,2019-08-18 13:46:00,443 Lincoln St, San Francisco,CA,94016 +244639,USB-C Charging Cable,1,11.95,2019-08-16 19:19:00,324 Wilson St, San Francisco,CA,94016 +244640,27in FHD Monitor,1,149.99,2019-08-19 05:51:00,855 Maple St, Atlanta,GA,30301 +244641,Lightning Charging Cable,1,14.95,2019-08-17 20:42:00,840 11th St, San Francisco,CA,94016 +244642,AAA Batteries (4-pack),2,2.99,2019-08-25 13:25:00,350 Hill St, New York City,NY,10001 +244643,AAA Batteries (4-pack),2,2.99,2019-08-06 11:21:00,428 7th St, Seattle,WA,98101 +244644,Macbook Pro Laptop,1,1700.0,2019-08-09 22:29:00,375 14th St, Atlanta,GA,30301 +244645,USB-C Charging Cable,1,11.95,2019-08-17 15:32:00,524 Hickory St, Seattle,WA,98101 +244646,Bose SoundSport Headphones,1,99.99,2019-08-12 23:19:00,787 2nd St, San Francisco,CA,94016 +244647,AAA Batteries (4-pack),1,2.99,2019-08-22 08:38:00,53 Cherry St, San Francisco,CA,94016 +244648,AAA Batteries (4-pack),1,2.99,2019-08-08 11:58:00,258 Ridge St, Dallas,TX,75001 +244648,34in Ultrawide Monitor,1,379.99,2019-08-08 11:58:00,258 Ridge St, Dallas,TX,75001 +244649,Apple Airpods Headphones,1,150.0,2019-08-20 19:06:00,48 8th St, New York City,NY,10001 +244650,iPhone,1,700.0,2019-08-22 11:46:00,932 Dogwood St, San Francisco,CA,94016 +244651,AAA Batteries (4-pack),1,2.99,2019-08-23 12:20:00,815 Park St, Austin,TX,73301 +244652,Wired Headphones,1,11.99,2019-08-15 09:47:00,181 Center St, Los Angeles,CA,90001 +244653,20in Monitor,1,109.99,2019-08-13 20:54:00,760 Main St, Atlanta,GA,30301 +244654,27in 4K Gaming Monitor,1,389.99,2019-08-02 00:54:00,821 West St, New York City,NY,10001 +244655,ThinkPad Laptop,1,999.99,2019-08-25 18:55:00,458 Spruce St, Boston,MA,02215 +244656,AAA Batteries (4-pack),1,2.99,2019-08-06 09:06:00,355 Johnson St, New York City,NY,10001 +244657,USB-C Charging Cable,1,11.95,2019-08-28 14:40:00,955 5th St, Boston,MA,02215 +244658,USB-C Charging Cable,1,11.95,2019-08-26 06:57:00,227 12th St, San Francisco,CA,94016 +244659,Google Phone,1,600.0,2019-08-30 18:38:00,938 4th St, Los Angeles,CA,90001 +244660,AAA Batteries (4-pack),1,2.99,2019-08-11 22:56:00,591 Ridge St, Atlanta,GA,30301 +244661,Apple Airpods Headphones,1,150.0,2019-08-27 15:02:00,738 Center St, Los Angeles,CA,90001 +244662,Lightning Charging Cable,1,14.95,2019-08-11 17:19:00,502 West St, New York City,NY,10001 +244663,20in Monitor,1,109.99,2019-08-01 21:38:00,633 Adams St, Atlanta,GA,30301 +244664,ThinkPad Laptop,1,999.99,2019-08-02 19:36:00,563 Cherry St, Seattle,WA,98101 +244665,20in Monitor,1,109.99,2019-08-29 09:39:00,143 Cherry St, Los Angeles,CA,90001 +244666,Lightning Charging Cable,1,14.95,2019-08-11 19:47:00,656 Johnson St, Los Angeles,CA,90001 +244667,Bose SoundSport Headphones,1,99.99,2019-08-31 09:34:00,502 Highland St, San Francisco,CA,94016 +244668,Lightning Charging Cable,1,14.95,2019-08-16 18:15:00,122 Jackson St, Los Angeles,CA,90001 +244669,AA Batteries (4-pack),3,3.84,2019-08-16 22:20:00,367 Highland St, Seattle,WA,98101 +244670,Lightning Charging Cable,1,14.95,2019-08-31 13:29:00,849 Lincoln St, Atlanta,GA,30301 +244671,ThinkPad Laptop,1,999.99,2019-08-26 21:29:00,451 10th St, Austin,TX,73301 +244672,Apple Airpods Headphones,1,150.0,2019-08-07 20:06:00,915 7th St, Dallas,TX,75001 +244673,iPhone,1,700.0,2019-08-02 15:58:00,936 Dogwood St, Dallas,TX,75001 +244674,AAA Batteries (4-pack),2,2.99,2019-08-06 11:40:00,858 2nd St, Seattle,WA,98101 +244675,USB-C Charging Cable,1,11.95,2019-08-11 22:45:00,886 13th St, San Francisco,CA,94016 +244676,Apple Airpods Headphones,1,150.0,2019-08-13 02:09:00,952 Church St, Portland,OR,97035 +244677,AAA Batteries (4-pack),1,2.99,2019-08-30 00:41:00,172 Park St, Dallas,TX,75001 +244678,Apple Airpods Headphones,1,150.0,2019-08-11 15:39:00,261 Highland St, San Francisco,CA,94016 +244679,AAA Batteries (4-pack),1,2.99,2019-08-05 12:03:00,863 Jackson St, Austin,TX,73301 +244680,USB-C Charging Cable,1,11.95,2019-08-01 20:43:00,379 Main St, New York City,NY,10001 +244681,AA Batteries (4-pack),1,3.84,2019-08-20 14:10:00,208 9th St, New York City,NY,10001 +244682,Lightning Charging Cable,1,14.95,2019-08-19 19:38:00,232 2nd St, New York City,NY,10001 +244683,Bose SoundSport Headphones,1,99.99,2019-08-15 12:10:00,394 Church St, Seattle,WA,98101 +244684,USB-C Charging Cable,2,11.95,2019-08-09 14:22:00,104 14th St, San Francisco,CA,94016 +244685,Flatscreen TV,1,300.0,2019-08-17 06:33:00,799 Main St, Boston,MA,02215 +244686,ThinkPad Laptop,1,999.99,2019-08-15 09:54:00,372 12th St, Los Angeles,CA,90001 +244687,Bose SoundSport Headphones,1,99.99,2019-08-24 06:39:00,837 Chestnut St, New York City,NY,10001 +244688,AAA Batteries (4-pack),3,2.99,2019-08-27 16:37:00,35 Church St, Boston,MA,02215 +244689,20in Monitor,1,109.99,2019-08-20 16:11:00,264 Meadow St, Atlanta,GA,30301 +244690,Macbook Pro Laptop,1,1700.0,2019-08-15 11:18:00,961 Chestnut St, Boston,MA,02215 +244691,34in Ultrawide Monitor,1,379.99,2019-08-11 08:55:00,568 Washington St, Los Angeles,CA,90001 +244692,AAA Batteries (4-pack),1,2.99,2019-08-31 11:03:00,377 West St, Atlanta,GA,30301 +244693,20in Monitor,1,109.99,2019-08-02 18:52:00,413 8th St, Dallas,TX,75001 +244694,Wired Headphones,1,11.99,2019-08-29 19:19:00,275 12th St, Los Angeles,CA,90001 +244695,Lightning Charging Cable,1,14.95,2019-08-05 16:30:00,641 1st St, Portland,OR,97035 +244696,AA Batteries (4-pack),1,3.84,2019-08-06 10:30:00,692 4th St, San Francisco,CA,94016 +244697,27in 4K Gaming Monitor,1,389.99,2019-08-20 18:43:00,521 Maple St, Los Angeles,CA,90001 +244698,Apple Airpods Headphones,1,150.0,2019-08-30 13:43:00,725 Walnut St, Seattle,WA,98101 +244699,USB-C Charging Cable,1,11.95,2019-08-23 19:32:00,545 9th St, New York City,NY,10001 +244700,AAA Batteries (4-pack),1,2.99,2019-08-18 14:25:00,741 Willow St, San Francisco,CA,94016 +244701,Lightning Charging Cable,1,14.95,2019-08-18 20:54:00,34 River St, San Francisco,CA,94016 +244702,27in 4K Gaming Monitor,1,389.99,2019-08-08 17:50:00,181 4th St, San Francisco,CA,94016 +244703,USB-C Charging Cable,1,11.95,2019-08-20 21:44:00,118 11th St, Austin,TX,73301 +244704,Apple Airpods Headphones,1,150.0,2019-08-31 23:01:00,634 South St, San Francisco,CA,94016 +244705,Apple Airpods Headphones,1,150.0,2019-08-22 12:35:00,773 Johnson St, Austin,TX,73301 +244706,27in 4K Gaming Monitor,1,389.99,2019-08-17 17:32:00,773 Lake St, Dallas,TX,75001 +244707,ThinkPad Laptop,1,999.99,2019-08-20 17:42:00,84 Pine St, Dallas,TX,75001 +244708,Bose SoundSport Headphones,1,99.99,2019-08-27 20:23:00,330 Highland St, San Francisco,CA,94016 +244709,USB-C Charging Cable,1,11.95,2019-08-16 18:02:00,182 Center St, New York City,NY,10001 +244710,34in Ultrawide Monitor,1,379.99,2019-08-30 09:56:00,128 South St, Austin,TX,73301 +244711,27in 4K Gaming Monitor,1,389.99,2019-08-14 14:09:00,824 Jefferson St, Seattle,WA,98101 +244712,AAA Batteries (4-pack),1,2.99,2019-08-03 19:03:00,324 West St, New York City,NY,10001 +244713,Wired Headphones,1,11.99,2019-08-16 10:32:00,699 6th St, Los Angeles,CA,90001 +244714,USB-C Charging Cable,1,11.95,2019-08-25 18:48:00,184 River St, Dallas,TX,75001 +244715,Lightning Charging Cable,1,14.95,2019-08-31 21:25:00,469 Washington St, New York City,NY,10001 +244716,Apple Airpods Headphones,1,150.0,2019-08-23 20:01:00,529 Lake St, Seattle,WA,98101 +244717,34in Ultrawide Monitor,1,379.99,2019-08-13 16:27:00,787 Ridge St, San Francisco,CA,94016 +244718,Apple Airpods Headphones,1,150.0,2019-08-18 21:53:00,500 1st St, Atlanta,GA,30301 +244719,Bose SoundSport Headphones,1,99.99,2019-08-14 11:55:00,84 Johnson St, San Francisco,CA,94016 +244720,iPhone,1,700.0,2019-08-09 12:05:00,959 Maple St, Portland,OR,97035 +244721,Macbook Pro Laptop,1,1700.0,2019-08-06 12:44:00,824 9th St, Dallas,TX,75001 +244722,34in Ultrawide Monitor,1,379.99,2019-08-27 13:35:00,300 West St, Dallas,TX,75001 +244723,AA Batteries (4-pack),1,3.84,2019-08-07 18:30:00,49 Lake St, Seattle,WA,98101 +244724,Flatscreen TV,1,300.0,2019-08-20 22:41:00,569 South St, Atlanta,GA,30301 +244725,Wired Headphones,2,11.99,2019-08-06 08:50:00,101 Spruce St, Boston,MA,02215 +244726,ThinkPad Laptop,1,999.99,2019-08-26 06:56:00,640 Main St, Dallas,TX,75001 +244727,Wired Headphones,1,11.99,2019-08-29 16:00:00,36 North St, Los Angeles,CA,90001 +244728,Wired Headphones,1,11.99,2019-08-24 09:40:00,162 Lincoln St, Boston,MA,02215 +244729,USB-C Charging Cable,1,11.95,2019-08-15 13:13:00,279 Spruce St, San Francisco,CA,94016 +244730,AA Batteries (4-pack),1,3.84,2019-08-27 13:51:00,492 Sunset St, Los Angeles,CA,90001 +244731,Apple Airpods Headphones,1,150.0,2019-08-12 11:02:00,49 Cherry St, Los Angeles,CA,90001 +244732,AA Batteries (4-pack),1,3.84,2019-08-03 10:13:00,297 Church St, Seattle,WA,98101 +244733,AA Batteries (4-pack),1,3.84,2019-08-31 21:44:00,746 Chestnut St, Los Angeles,CA,90001 +244734,AAA Batteries (4-pack),1,2.99,2019-08-06 22:44:00,916 Forest St, San Francisco,CA,94016 +244735,Google Phone,1,600.0,2019-08-06 20:35:00,658 Sunset St, Boston,MA,02215 +244736,AA Batteries (4-pack),1,3.84,2019-08-15 21:46:00,257 West St, Portland,OR,97035 +244737,AA Batteries (4-pack),1,3.84,2019-08-17 00:22:00,721 West St, Austin,TX,73301 +244738,27in 4K Gaming Monitor,1,389.99,2019-08-08 13:04:00,343 Lakeview St, Los Angeles,CA,90001 +244739,Lightning Charging Cable,1,14.95,2019-08-26 15:16:00,683 Chestnut St, San Francisco,CA,94016 +244740,AA Batteries (4-pack),1,3.84,2019-08-13 20:35:00,645 11th St, Portland,OR,97035 +244741,Bose SoundSport Headphones,1,99.99,2019-08-13 10:55:00,359 2nd St, San Francisco,CA,94016 +244742,Bose SoundSport Headphones,1,99.99,2019-08-05 00:42:00,554 Cherry St, Los Angeles,CA,90001 +244743,27in FHD Monitor,1,149.99,2019-08-31 19:42:00,840 Jackson St, Seattle,WA,98101 +244744,USB-C Charging Cable,1,11.95,2019-08-06 19:10:00,474 Hill St, Austin,TX,73301 +244745,34in Ultrawide Monitor,1,379.99,2019-08-01 23:01:00,286 Highland St, San Francisco,CA,94016 +244746,AAA Batteries (4-pack),2,2.99,2019-08-09 13:44:00,902 Sunset St, New York City,NY,10001 +244747,USB-C Charging Cable,1,11.95,2019-08-02 17:08:00,808 Dogwood St, Dallas,TX,75001 +244748,27in FHD Monitor,1,149.99,2019-08-09 14:03:00,116 Cedar St, Seattle,WA,98101 +244749,Vareebadd Phone,1,400.0,2019-08-22 12:21:00,167 Main St, Los Angeles,CA,90001 +244749,USB-C Charging Cable,1,11.95,2019-08-22 12:21:00,167 Main St, Los Angeles,CA,90001 +244750,USB-C Charging Cable,1,11.95,2019-08-25 13:03:00,568 Meadow St, Portland,OR,97035 +244751,Lightning Charging Cable,1,14.95,2019-08-23 15:54:00,532 Cedar St, Los Angeles,CA,90001 +244752,USB-C Charging Cable,1,11.95,2019-08-16 13:01:00,549 North St, Los Angeles,CA,90001 +244753,27in FHD Monitor,1,149.99,2019-08-29 20:24:00,537 9th St, Dallas,TX,75001 +244754,ThinkPad Laptop,1,999.99,2019-08-10 15:11:00,651 Cedar St, Los Angeles,CA,90001 +244755,Google Phone,1,600.0,2019-08-05 19:28:00,659 Dogwood St, Los Angeles,CA,90001 +244756,Lightning Charging Cable,1,14.95,2019-08-14 16:27:00,864 1st St, Los Angeles,CA,90001 +244756,Wired Headphones,2,11.99,2019-08-14 16:27:00,864 1st St, Los Angeles,CA,90001 +244757,AAA Batteries (4-pack),1,2.99,2019-08-06 10:02:00,942 14th St, Portland,OR,97035 +244758,27in 4K Gaming Monitor,1,389.99,2019-08-29 09:49:00,860 River St, Los Angeles,CA,90001 +244759,Google Phone,1,600.0,2019-08-07 16:18:00,92 Spruce St, Portland,OR,97035 +244760,ThinkPad Laptop,1,999.99,2019-08-14 16:48:00,538 Lakeview St, Seattle,WA,98101 +244761,Lightning Charging Cable,1,14.95,2019-08-28 21:00:00,709 Spruce St, New York City,NY,10001 +244762,Wired Headphones,1,11.99,2019-08-19 14:49:00,410 Maple St, Seattle,WA,98101 +244763,Bose SoundSport Headphones,1,99.99,2019-08-03 12:16:00,138 5th St, Boston,MA,02215 +244764,Lightning Charging Cable,1,14.95,2019-08-17 22:39:00,215 Cherry St, New York City,NY,10001 +244765,34in Ultrawide Monitor,1,379.99,2019-08-20 12:25:00,683 Cedar St, Seattle,WA,98101 +244766,AAA Batteries (4-pack),1,2.99,2019-08-19 15:29:00,797 6th St, New York City,NY,10001 +244767,USB-C Charging Cable,1,11.95,2019-08-25 17:06:00,921 Lake St, Dallas,TX,75001 +244768,AAA Batteries (4-pack),1,2.99,2019-08-29 01:12:00,38 Jackson St, Los Angeles,CA,90001 +244769,Bose SoundSport Headphones,1,99.99,2019-08-17 00:32:00,63 Forest St, San Francisco,CA,94016 +244770,Apple Airpods Headphones,1,150.0,2019-08-18 11:08:00,581 Sunset St, San Francisco,CA,94016 +244771,Lightning Charging Cable,1,14.95,2019-08-30 23:47:00,410 Willow St, Seattle,WA,98101 +244772,AA Batteries (4-pack),1,3.84,2019-08-13 23:51:00,508 12th St, Portland,OR,97035 +244773,Wired Headphones,1,11.99,2019-08-08 06:54:00,427 Hickory St, Los Angeles,CA,90001 +244774,USB-C Charging Cable,1,11.95,2019-08-31 12:58:00,578 Lake St, Portland,ME,04101 +244775,Bose SoundSport Headphones,1,99.99,2019-08-09 11:06:00,787 Wilson St, Los Angeles,CA,90001 +244776,ThinkPad Laptop,1,999.99,2019-08-09 16:53:00,103 Ridge St, Los Angeles,CA,90001 +244777,Lightning Charging Cable,1,14.95,2019-08-20 19:28:00,217 South St, San Francisco,CA,94016 +244778,AAA Batteries (4-pack),2,2.99,2019-08-04 14:08:00,328 Lincoln St, Los Angeles,CA,90001 +244779,Bose SoundSport Headphones,1,99.99,2019-08-19 11:03:00,961 2nd St, Austin,TX,73301 +244780,USB-C Charging Cable,1,11.95,2019-08-24 15:53:00,26 Highland St, Los Angeles,CA,90001 +244781,Macbook Pro Laptop,1,1700.0,2019-08-24 19:14:00,511 Highland St, Los Angeles,CA,90001 +244782,Macbook Pro Laptop,1,1700.0,2019-08-22 17:38:00,10 River St, Los Angeles,CA,90001 +244783,20in Monitor,1,109.99,2019-08-14 11:38:00,139 Church St, New York City,NY,10001 +244784,AAA Batteries (4-pack),4,2.99,2019-08-13 18:51:00,283 Hickory St, New York City,NY,10001 +244785,iPhone,1,700.0,2019-08-15 15:27:00,447 Forest St, San Francisco,CA,94016 +244786,Wired Headphones,1,11.99,2019-08-13 10:40:00,544 Lincoln St, Boston,MA,02215 +244787,Bose SoundSport Headphones,1,99.99,2019-08-04 22:43:00,408 2nd St, Dallas,TX,75001 +244788,iPhone,1,700.0,2019-08-06 07:06:00,913 Madison St, Seattle,WA,98101 +244789,Wired Headphones,2,11.99,2019-08-28 12:29:00,157 Wilson St, Portland,OR,97035 +244790,Lightning Charging Cable,1,14.95,2019-08-29 21:01:00,643 12th St, Portland,OR,97035 +244791,Bose SoundSport Headphones,1,99.99,2019-08-22 21:03:00,661 13th St, Los Angeles,CA,90001 +244792,34in Ultrawide Monitor,1,379.99,2019-08-24 13:06:00,84 Hickory St, Portland,OR,97035 +244793,34in Ultrawide Monitor,1,379.99,2019-08-30 10:08:00,743 13th St, Los Angeles,CA,90001 +244794,iPhone,1,700.0,2019-08-23 14:09:00,837 South St, Los Angeles,CA,90001 +244795,Lightning Charging Cable,1,14.95,2019-08-22 17:16:00,727 Maple St, New York City,NY,10001 +244796,Bose SoundSport Headphones,1,99.99,2019-08-07 13:06:00,630 1st St, San Francisco,CA,94016 +244797,AA Batteries (4-pack),3,3.84,2019-08-02 15:00:00,949 14th St, Los Angeles,CA,90001 +244798,AAA Batteries (4-pack),2,2.99,2019-08-31 07:14:00,96 13th St, Portland,OR,97035 +244799,AA Batteries (4-pack),1,3.84,2019-08-20 23:39:00,967 Pine St, Atlanta,GA,30301 +244800,USB-C Charging Cable,1,11.95,2019-08-25 20:08:00,298 Hill St, Seattle,WA,98101 +244801,Bose SoundSport Headphones,1,99.99,2019-08-19 12:04:00,919 Jefferson St, Los Angeles,CA,90001 +244802,USB-C Charging Cable,1,11.95,2019-08-06 18:15:00,591 5th St, Portland,OR,97035 +244803,iPhone,1,700.0,2019-08-05 20:55:00,342 Ridge St, Portland,OR,97035 +244804,AAA Batteries (4-pack),2,2.99,2019-08-28 20:28:00,664 Pine St, Seattle,WA,98101 +244805,Wired Headphones,1,11.99,2019-08-17 16:55:00,169 Main St, Boston,MA,02215 +244806,Bose SoundSport Headphones,1,99.99,2019-08-16 06:20:00,71 Jackson St, Austin,TX,73301 +244807,USB-C Charging Cable,1,11.95,2019-08-30 23:29:00,340 Maple St, Los Angeles,CA,90001 +244808,Wired Headphones,1,11.99,2019-08-30 20:28:00,288 Chestnut St, Atlanta,GA,30301 +244809,Lightning Charging Cable,1,14.95,2019-08-04 20:21:00,522 2nd St, Los Angeles,CA,90001 +244809,Wired Headphones,2,11.99,2019-08-04 20:21:00,522 2nd St, Los Angeles,CA,90001 +244810,Wired Headphones,1,11.99,2019-08-01 13:59:00,130 1st St, Boston,MA,02215 +244811,Bose SoundSport Headphones,1,99.99,2019-08-22 11:05:00,9 Highland St, Boston,MA,02215 +244812,Wired Headphones,1,11.99,2019-08-31 11:04:00,672 Hickory St, Los Angeles,CA,90001 +244812,USB-C Charging Cable,1,11.95,2019-08-31 11:04:00,672 Hickory St, Los Angeles,CA,90001 +244813,Wired Headphones,1,11.99,2019-08-22 19:36:00,805 Jackson St, New York City,NY,10001 +244814,Flatscreen TV,1,300.0,2019-08-08 18:40:00,358 14th St, San Francisco,CA,94016 +244815,iPhone,1,700.0,2019-08-06 08:52:00,87 Madison St, San Francisco,CA,94016 +244816,AA Batteries (4-pack),1,3.84,2019-08-04 00:33:00,179 Lake St, Seattle,WA,98101 +244817,AAA Batteries (4-pack),2,2.99,2019-08-04 12:42:00,708 Cedar St, Austin,TX,73301 +244818,Bose SoundSport Headphones,1,99.99,2019-08-23 21:10:00,257 14th St, Austin,TX,73301 +244819,AA Batteries (4-pack),1,3.84,2019-08-10 10:07:00,33 Church St, Dallas,TX,75001 +244820,Macbook Pro Laptop,1,1700.0,2019-08-21 16:04:00,820 Jefferson St, Dallas,TX,75001 +244821,Macbook Pro Laptop,1,1700.0,2019-08-19 20:26:00,605 Madison St, Seattle,WA,98101 +244822,AAA Batteries (4-pack),1,2.99,2019-08-07 06:29:00,774 Wilson St, Atlanta,GA,30301 +244823,Macbook Pro Laptop,1,1700.0,2019-08-20 22:40:00,237 Wilson St, Boston,MA,02215 +244824,Bose SoundSport Headphones,1,99.99,2019-08-26 18:27:00,94 Sunset St, New York City,NY,10001 +244825,USB-C Charging Cable,1,11.95,2019-08-14 12:15:00,200 10th St, Seattle,WA,98101 +244826,27in FHD Monitor,1,149.99,2019-08-11 18:40:00,575 8th St, Los Angeles,CA,90001 +244827,Bose SoundSport Headphones,1,99.99,2019-08-15 12:22:00,634 Wilson St, San Francisco,CA,94016 +244828,Google Phone,1,600.0,2019-08-06 17:43:00,966 Wilson St, Los Angeles,CA,90001 +244829,27in FHD Monitor,1,149.99,2019-08-05 16:04:00,393 River St, Portland,ME,04101 +244830,Macbook Pro Laptop,1,1700.0,2019-08-24 14:35:00,582 14th St, Los Angeles,CA,90001 +244830,LG Washing Machine,1,600.0,2019-08-24 14:35:00,582 14th St, Los Angeles,CA,90001 +244831,Lightning Charging Cable,1,14.95,2019-08-10 17:18:00,441 Lincoln St, Atlanta,GA,30301 +244832,LG Dryer,1,600.0,2019-08-28 11:59:00,925 River St, San Francisco,CA,94016 +244833,AA Batteries (4-pack),1,3.84,2019-08-06 22:05:00,837 Wilson St, San Francisco,CA,94016 +244834,27in 4K Gaming Monitor,1,389.99,2019-08-31 12:00:00,559 7th St, Boston,MA,02215 +244835,AAA Batteries (4-pack),1,2.99,2019-08-20 15:51:00,82 Forest St, San Francisco,CA,94016 +244835,Lightning Charging Cable,1,14.95,2019-08-20 15:51:00,82 Forest St, San Francisco,CA,94016 +244836,AA Batteries (4-pack),1,3.84,2019-08-24 00:53:00,29 Washington St, San Francisco,CA,94016 +244837,iPhone,1,700.0,2019-08-31 11:48:00,744 Chestnut St, Los Angeles,CA,90001 +244838,34in Ultrawide Monitor,1,379.99,2019-08-09 20:19:00,678 Park St, New York City,NY,10001 +244839,AA Batteries (4-pack),2,3.84,2019-08-24 20:38:00,151 Spruce St, Boston,MA,02215 +244840,iPhone,1,700.0,2019-08-13 20:13:00,817 Cedar St, Dallas,TX,75001 +244841,AA Batteries (4-pack),2,3.84,2019-08-11 09:42:00,130 Jefferson St, San Francisco,CA,94016 +244842,USB-C Charging Cable,1,11.95,2019-08-16 11:12:00,364 Cedar St, Atlanta,GA,30301 +244843,Wired Headphones,1,11.99,2019-08-07 15:55:00,895 Hickory St, New York City,NY,10001 +244844,Lightning Charging Cable,1,14.95,2019-08-01 16:25:00,29 Center St, Boston,MA,02215 +244845,Apple Airpods Headphones,1,150.0,2019-08-31 12:48:00,11 Park St, Atlanta,GA,30301 +244846,Bose SoundSport Headphones,1,99.99,2019-08-13 17:52:00,31 Spruce St, New York City,NY,10001 +244847,Vareebadd Phone,1,400.0,2019-08-12 19:56:00,183 Willow St, Los Angeles,CA,90001 +244848,Lightning Charging Cable,1,14.95,2019-08-01 20:29:00,360 Johnson St, Boston,MA,02215 +244849,Wired Headphones,1,11.99,2019-08-16 15:52:00,89 Walnut St, San Francisco,CA,94016 +244850,Wired Headphones,1,11.99,2019-08-13 09:54:00,129 7th St, Los Angeles,CA,90001 +244851,Bose SoundSport Headphones,1,99.99,2019-08-30 10:48:00,605 Washington St, Los Angeles,CA,90001 +244852,LG Washing Machine,1,600.0,2019-08-25 10:25:00,105 2nd St, Los Angeles,CA,90001 +244853,AAA Batteries (4-pack),2,2.99,2019-08-10 18:09:00,462 Church St, Atlanta,GA,30301 +244854,USB-C Charging Cable,1,11.95,2019-08-28 11:05:00,911 2nd St, Seattle,WA,98101 +244855,Apple Airpods Headphones,1,150.0,2019-08-27 13:01:00,410 Main St, Portland,OR,97035 +244856,Google Phone,1,600.0,2019-08-27 08:45:00,558 Pine St, Austin,TX,73301 +244857,iPhone,1,700.0,2019-08-06 10:08:00,189 Washington St, New York City,NY,10001 +244857,Lightning Charging Cable,1,14.95,2019-08-06 10:08:00,189 Washington St, New York City,NY,10001 +244858,AAA Batteries (4-pack),1,2.99,2019-08-13 13:23:00,931 Madison St, Seattle,WA,98101 +244859,Lightning Charging Cable,1,14.95,2019-08-29 11:40:00,972 8th St, Los Angeles,CA,90001 +244860,Vareebadd Phone,1,400.0,2019-08-12 08:11:00,692 12th St, Los Angeles,CA,90001 +244861,Bose SoundSport Headphones,1,99.99,2019-08-14 21:12:00,835 11th St, San Francisco,CA,94016 +244862,AA Batteries (4-pack),1,3.84,2019-08-28 19:56:00,444 Ridge St, Atlanta,GA,30301 +244863,20in Monitor,1,109.99,2019-08-31 09:38:00,829 11th St, Seattle,WA,98101 +244864,AAA Batteries (4-pack),1,2.99,2019-08-16 09:07:00,686 1st St, Los Angeles,CA,90001 +244865,AAA Batteries (4-pack),1,2.99,2019-08-14 20:46:00,289 Hill St, Dallas,TX,75001 +244866,27in 4K Gaming Monitor,1,389.99,2019-08-25 11:52:00,359 Lake St, Seattle,WA,98101 +244867,Wired Headphones,1,11.99,2019-08-04 11:13:00,192 Lincoln St, Portland,ME,04101 +244868,Apple Airpods Headphones,1,150.0,2019-08-03 20:11:00,209 Maple St, Portland,OR,97035 +244869,Lightning Charging Cable,2,14.95,2019-08-03 02:42:00,995 Pine St, New York City,NY,10001 +244870,USB-C Charging Cable,1,11.95,2019-08-10 16:02:00,760 12th St, Dallas,TX,75001 +244871,27in 4K Gaming Monitor,1,389.99,2019-08-05 23:18:00,665 Highland St, Seattle,WA,98101 +244872,USB-C Charging Cable,2,11.95,2019-08-17 10:26:00,845 Walnut St, San Francisco,CA,94016 +244873,Bose SoundSport Headphones,1,99.99,2019-08-27 19:44:00,452 Hickory St, Dallas,TX,75001 +244874,AA Batteries (4-pack),1,3.84,2019-08-24 22:03:00,387 Lincoln St, New York City,NY,10001 +244875,ThinkPad Laptop,1,999.99,2019-08-09 10:44:00,315 Meadow St, Portland,OR,97035 +244876,Wired Headphones,1,11.99,2019-08-21 16:15:00,358 Center St, San Francisco,CA,94016 +244876,34in Ultrawide Monitor,1,379.99,2019-08-21 16:15:00,358 Center St, San Francisco,CA,94016 +244877,AAA Batteries (4-pack),1,2.99,2019-08-16 19:05:00,435 9th St, Boston,MA,02215 +244878,AA Batteries (4-pack),1,3.84,2019-08-07 11:18:00,118 1st St, Los Angeles,CA,90001 +244879,Lightning Charging Cable,1,14.95,2019-08-12 10:11:00,513 7th St, Boston,MA,02215 +244880,27in FHD Monitor,1,149.99,2019-08-03 13:10:00,47 2nd St, Los Angeles,CA,90001 +244881,34in Ultrawide Monitor,1,379.99,2019-08-10 19:47:00,747 Madison St, San Francisco,CA,94016 +244882,Flatscreen TV,1,300.0,2019-08-10 11:06:00,175 Ridge St, Boston,MA,02215 +244883,AAA Batteries (4-pack),1,2.99,2019-08-30 14:38:00,889 Elm St, Los Angeles,CA,90001 +244884,34in Ultrawide Monitor,1,379.99,2019-08-10 19:30:00,493 Elm St, Dallas,TX,75001 +244885,AA Batteries (4-pack),1,3.84,2019-08-16 07:44:00,244 South St, Seattle,WA,98101 +244886,AAA Batteries (4-pack),2,2.99,2019-08-02 16:29:00,951 Washington St, Boston,MA,02215 +244887,27in FHD Monitor,1,149.99,2019-08-23 14:12:00,776 Sunset St, Los Angeles,CA,90001 +244888,USB-C Charging Cable,1,11.95,2019-08-24 15:40:00,966 4th St, Seattle,WA,98101 +244889,27in 4K Gaming Monitor,1,389.99,2019-08-03 16:23:00,304 11th St, Portland,OR,97035 +244890,AAA Batteries (4-pack),1,2.99,2019-08-25 22:58:00,272 Washington St, Los Angeles,CA,90001 +244891,AA Batteries (4-pack),1,3.84,2019-08-21 13:48:00,693 Cherry St, Los Angeles,CA,90001 +244892,ThinkPad Laptop,1,999.99,2019-08-15 23:25:00,488 Spruce St, Austin,TX,73301 +244892,AAA Batteries (4-pack),1,2.99,2019-08-15 23:25:00,488 Spruce St, Austin,TX,73301 +244893,AA Batteries (4-pack),1,3.84,2019-08-04 12:06:00,212 West St, Los Angeles,CA,90001 +244894,ThinkPad Laptop,1,999.99,2019-08-01 21:11:00,377 11th St, San Francisco,CA,94016 +244895,Lightning Charging Cable,1,14.95,2019-08-07 09:48:00,544 Hickory St, Los Angeles,CA,90001 +244896,20in Monitor,1,109.99,2019-08-17 19:39:00,461 River St, San Francisco,CA,94016 +244897,Lightning Charging Cable,1,14.95,2019-08-18 21:22:00,187 4th St, San Francisco,CA,94016 +244898,AAA Batteries (4-pack),2,2.99,2019-08-08 18:26:00,616 8th St, Boston,MA,02215 +244899,USB-C Charging Cable,1,11.95,2019-08-14 12:14:00,865 Ridge St, Boston,MA,02215 +244900,USB-C Charging Cable,1,11.95,2019-08-19 13:38:00,563 Church St, Atlanta,GA,30301 +244901,Bose SoundSport Headphones,1,99.99,2019-08-21 12:33:00,808 6th St, Atlanta,GA,30301 +244902,Apple Airpods Headphones,1,150.0,2019-08-12 13:48:00,123 Lake St, Boston,MA,02215 +244903,Lightning Charging Cable,1,14.95,2019-08-10 19:36:00,789 Walnut St, San Francisco,CA,94016 +244904,Lightning Charging Cable,1,14.95,2019-08-19 22:20:00,293 Lakeview St, San Francisco,CA,94016 +244904,AA Batteries (4-pack),1,3.84,2019-08-19 22:20:00,293 Lakeview St, San Francisco,CA,94016 +244905,27in 4K Gaming Monitor,1,389.99,2019-08-07 22:39:00,965 Chestnut St, Boston,MA,02215 +244906,Lightning Charging Cable,1,14.95,2019-08-01 08:50:00,444 12th St, Boston,MA,02215 +244907,AA Batteries (4-pack),1,3.84,2019-08-31 17:17:00,908 Washington St, San Francisco,CA,94016 +244908,27in FHD Monitor,1,149.99,2019-08-14 19:23:00,135 Adams St, Los Angeles,CA,90001 +244909,27in FHD Monitor,1,149.99,2019-08-03 16:48:00,554 West St, New York City,NY,10001 +244910,Apple Airpods Headphones,1,150.0,2019-08-11 19:33:00,58 Willow St, Los Angeles,CA,90001 +244911,Bose SoundSport Headphones,1,99.99,2019-08-18 06:06:00,95 11th St, San Francisco,CA,94016 +244912,Wired Headphones,1,11.99,2019-08-04 01:36:00,149 Hickory St, Boston,MA,02215 +244913,Google Phone,1,600.0,2019-08-14 12:59:00,797 Forest St, New York City,NY,10001 +244914,AA Batteries (4-pack),1,3.84,2019-08-16 11:12:00,651 6th St, San Francisco,CA,94016 +244915,AA Batteries (4-pack),1,3.84,2019-08-15 08:43:00,148 5th St, Boston,MA,02215 +244916,Vareebadd Phone,1,400.0,2019-08-26 08:40:00,24 Dogwood St, Atlanta,GA,30301 +244917,iPhone,1,700.0,2019-08-22 12:42:00,757 Chestnut St, Portland,OR,97035 +244918,Bose SoundSport Headphones,1,99.99,2019-08-27 10:18:00,500 10th St, San Francisco,CA,94016 +244919,Bose SoundSport Headphones,1,99.99,2019-08-28 08:58:00,242 Elm St, New York City,NY,10001 +244920,Macbook Pro Laptop,1,1700.0,2019-08-10 09:39:00,362 Main St, San Francisco,CA,94016 +244921,Macbook Pro Laptop,1,1700.0,2019-08-22 12:23:00,270 9th St, Boston,MA,02215 +244922,Bose SoundSport Headphones,1,99.99,2019-08-29 15:40:00,884 Washington St, Seattle,WA,98101 +244923,Wired Headphones,1,11.99,2019-08-27 10:36:00,909 Johnson St, San Francisco,CA,94016 +244924,Lightning Charging Cable,1,14.95,2019-08-16 22:52:00,775 West St, Portland,OR,97035 +244925,AA Batteries (4-pack),2,3.84,2019-08-24 14:06:00,376 Elm St, Boston,MA,02215 +244926,Lightning Charging Cable,1,14.95,2019-08-02 09:52:00,200 10th St, Atlanta,GA,30301 +244927,AA Batteries (4-pack),1,3.84,2019-08-22 16:10:00,637 Church St, Atlanta,GA,30301 +244928,Google Phone,1,600.0,2019-08-09 13:34:00,983 11th St, Los Angeles,CA,90001 +244929,Macbook Pro Laptop,1,1700.0,2019-08-16 11:33:00,276 Hill St, Los Angeles,CA,90001 +244930,34in Ultrawide Monitor,1,379.99,2019-08-19 08:11:00,961 Lake St, Los Angeles,CA,90001 +244931,AAA Batteries (4-pack),1,2.99,2019-08-31 19:42:00,34 Pine St, Los Angeles,CA,90001 +244932,Wired Headphones,1,11.99,2019-08-17 12:12:00,59 North St, Boston,MA,02215 +244933,Lightning Charging Cable,1,14.95,2019-08-11 23:35:00,190 12th St, San Francisco,CA,94016 +244934,AA Batteries (4-pack),1,3.84,2019-08-10 22:40:00,705 Dogwood St, San Francisco,CA,94016 +244935,AAA Batteries (4-pack),1,2.99,2019-08-23 20:30:00,882 11th St, New York City,NY,10001 +244936,USB-C Charging Cable,1,11.95,2019-08-16 06:01:00,484 8th St, Dallas,TX,75001 +244937,iPhone,1,700.0,2019-08-16 06:41:00,699 7th St, New York City,NY,10001 +244937,Lightning Charging Cable,1,14.95,2019-08-16 06:41:00,699 7th St, New York City,NY,10001 +244938,Lightning Charging Cable,1,14.95,2019-08-23 07:59:00,679 Church St, New York City,NY,10001 +244939,USB-C Charging Cable,1,11.95,2019-08-27 05:49:00,792 Pine St, Dallas,TX,75001 +244940,27in 4K Gaming Monitor,1,389.99,2019-08-29 21:23:00,357 Jefferson St, San Francisco,CA,94016 +244941,Lightning Charging Cable,1,14.95,2019-08-09 14:41:00,192 Park St, San Francisco,CA,94016 +244942,Apple Airpods Headphones,1,150.0,2019-08-17 13:05:00,331 Ridge St, Portland,OR,97035 +244942,AAA Batteries (4-pack),1,2.99,2019-08-17 13:05:00,331 Ridge St, Portland,OR,97035 +244943,AAA Batteries (4-pack),1,2.99,2019-08-12 13:43:00,841 Forest St, Atlanta,GA,30301 +244944,Bose SoundSport Headphones,1,99.99,2019-08-09 16:52:00,677 Church St, Boston,MA,02215 +244945,Wired Headphones,1,11.99,2019-08-03 14:19:00,463 Wilson St, San Francisco,CA,94016 +244945,ThinkPad Laptop,1,999.99,2019-08-03 14:19:00,463 Wilson St, San Francisco,CA,94016 +244946,Flatscreen TV,1,300.0,2019-08-21 22:11:00,204 Jefferson St, San Francisco,CA,94016 +244947,USB-C Charging Cable,1,11.95,2019-08-06 12:51:00,751 Walnut St, New York City,NY,10001 +244948,ThinkPad Laptop,1,999.99,2019-08-17 17:29:00,824 Park St, Seattle,WA,98101 +244949,Wired Headphones,1,11.99,2019-08-29 12:14:00,19 Hill St, San Francisco,CA,94016 +244950,USB-C Charging Cable,2,11.95,2019-08-06 09:22:00,769 14th St, New York City,NY,10001 +244951,Bose SoundSport Headphones,1,99.99,2019-08-14 10:44:00,707 Adams St, San Francisco,CA,94016 +244952,27in FHD Monitor,1,149.99,2019-08-12 07:56:00,820 Forest St, San Francisco,CA,94016 +244953,Lightning Charging Cable,1,14.95,2019-09-01 00:26:00,262 Park St, Los Angeles,CA,90001 +244954,Bose SoundSport Headphones,1,99.99,2019-08-14 16:26:00,994 River St, Portland,OR,97035 +244955,Lightning Charging Cable,1,14.95,2019-08-11 23:50:00,599 Elm St, San Francisco,CA,94016 +244956,AAA Batteries (4-pack),1,2.99,2019-08-06 15:11:00,592 Park St, Austin,TX,73301 +244957,Wired Headphones,1,11.99,2019-08-05 12:21:00,191 Spruce St, New York City,NY,10001 +244958,AAA Batteries (4-pack),2,2.99,2019-08-09 20:21:00,607 14th St, San Francisco,CA,94016 +244959,USB-C Charging Cable,1,11.95,2019-08-21 13:54:00,329 Hickory St, San Francisco,CA,94016 +244960,AAA Batteries (4-pack),1,2.99,2019-08-20 14:32:00,581 Meadow St, San Francisco,CA,94016 +244961,USB-C Charging Cable,1,11.95,2019-08-13 19:32:00,854 5th St, Los Angeles,CA,90001 +244962,34in Ultrawide Monitor,1,379.99,2019-08-13 00:00:00,636 Washington St, Austin,TX,73301 +244963,Vareebadd Phone,1,400.0,2019-08-17 09:26:00,188 7th St, Atlanta,GA,30301 +244964,AAA Batteries (4-pack),2,2.99,2019-08-01 17:48:00,486 Jefferson St, Los Angeles,CA,90001 +244965,Apple Airpods Headphones,1,150.0,2019-08-13 13:42:00,517 Highland St, Atlanta,GA,30301 +244966,27in 4K Gaming Monitor,1,389.99,2019-08-07 13:44:00,582 6th St, Atlanta,GA,30301 +244967,Bose SoundSport Headphones,1,99.99,2019-08-10 09:04:00,742 Elm St, New York City,NY,10001 +244968,Apple Airpods Headphones,1,150.0,2019-08-11 23:09:00,165 10th St, New York City,NY,10001 +244969,Lightning Charging Cable,1,14.95,2019-08-05 20:19:00,524 Spruce St, Boston,MA,02215 +244970,Google Phone,1,600.0,2019-08-02 19:58:00,31 Madison St, Boston,MA,02215 +244971,Bose SoundSport Headphones,1,99.99,2019-08-18 15:46:00,483 10th St, San Francisco,CA,94016 +244972,AAA Batteries (4-pack),1,2.99,2019-08-17 21:55:00,206 Sunset St, San Francisco,CA,94016 +244973,AAA Batteries (4-pack),1,2.99,2019-08-08 17:15:00,829 Jefferson St, San Francisco,CA,94016 +244974,Bose SoundSport Headphones,1,99.99,2019-08-27 13:50:00,265 2nd St, Atlanta,GA,30301 +244975,AA Batteries (4-pack),1,3.84,2019-08-15 18:30:00,2 9th St, San Francisco,CA,94016 +244976,USB-C Charging Cable,1,11.95,2019-08-09 17:54:00,178 Lake St, San Francisco,CA,94016 +244977,Lightning Charging Cable,1,14.95,2019-08-20 23:29:00,772 13th St, Austin,TX,73301 +244978,Wired Headphones,1,11.99,2019-08-12 10:50:00,805 Madison St, Los Angeles,CA,90001 +244979,Apple Airpods Headphones,1,150.0,2019-08-03 12:09:00,318 12th St, Boston,MA,02215 +244980,USB-C Charging Cable,1,11.95,2019-08-16 16:13:00,583 Chestnut St, San Francisco,CA,94016 +244981,Macbook Pro Laptop,1,1700.0,2019-08-10 12:45:00,921 Adams St, San Francisco,CA,94016 +244982,Lightning Charging Cable,2,14.95,2019-08-01 09:17:00,4 Ridge St, Seattle,WA,98101 +244983,USB-C Charging Cable,1,11.95,2019-08-05 08:23:00,682 8th St, Atlanta,GA,30301 +244984,AAA Batteries (4-pack),2,2.99,2019-08-19 20:24:00,921 6th St, Austin,TX,73301 +244985,Apple Airpods Headphones,1,150.0,2019-08-28 19:11:00,11 Lakeview St, San Francisco,CA,94016 +244986,Apple Airpods Headphones,1,150.0,2019-08-01 17:41:00,143 Center St, San Francisco,CA,94016 +244987,AAA Batteries (4-pack),1,2.99,2019-08-08 20:56:00,613 5th St, Atlanta,GA,30301 +244988,AA Batteries (4-pack),1,3.84,2019-08-23 14:49:00,929 14th St, Atlanta,GA,30301 +244989,iPhone,1,700.0,2019-08-16 19:20:00,749 Center St, Portland,ME,04101 +244990,USB-C Charging Cable,1,11.95,2019-08-15 12:03:00,746 Adams St, Atlanta,GA,30301 +244991,iPhone,1,700.0,2019-08-04 07:09:00,503 Highland St, Los Angeles,CA,90001 +244991,Lightning Charging Cable,1,14.95,2019-08-04 07:09:00,503 Highland St, Los Angeles,CA,90001 +244992,AA Batteries (4-pack),1,3.84,2019-08-16 11:42:00,134 Cherry St, Boston,MA,02215 +244993,Google Phone,1,600.0,2019-08-28 15:56:00,834 Hill St, Los Angeles,CA,90001 +244994,Wired Headphones,2,11.99,2019-08-24 14:39:00,508 11th St, San Francisco,CA,94016 +244995,Google Phone,1,600.0,2019-08-13 19:11:00,684 Walnut St, San Francisco,CA,94016 +244995,USB-C Charging Cable,1,11.95,2019-08-13 19:11:00,684 Walnut St, San Francisco,CA,94016 +244996,Wired Headphones,1,11.99,2019-08-07 15:52:00,557 6th St, Atlanta,GA,30301 +244997,Wired Headphones,1,11.99,2019-08-08 22:15:00,312 Sunset St, Atlanta,GA,30301 +244998,Lightning Charging Cable,1,14.95,2019-08-17 20:20:00,895 Madison St, San Francisco,CA,94016 +244999,USB-C Charging Cable,1,11.95,2019-08-13 19:55:00,588 Lincoln St, Dallas,TX,75001 +245000,iPhone,1,700.0,2019-08-27 16:00:00,567 Church St, San Francisco,CA,94016 +245001,34in Ultrawide Monitor,1,379.99,2019-08-10 12:21:00,35 Hickory St, Seattle,WA,98101 +245002,USB-C Charging Cable,1,11.95,2019-08-08 15:58:00,726 8th St, Los Angeles,CA,90001 +245003,AAA Batteries (4-pack),4,2.99,2019-08-20 14:12:00,216 2nd St, Atlanta,GA,30301 +245004,AAA Batteries (4-pack),1,2.99,2019-08-12 07:18:00,966 Cedar St, Los Angeles,CA,90001 +245005,27in FHD Monitor,1,149.99,2019-08-17 00:57:00,657 River St, Los Angeles,CA,90001 +245006,Wired Headphones,2,11.99,2019-08-12 20:19:00,297 Main St, New York City,NY,10001 +245007,AAA Batteries (4-pack),1,2.99,2019-08-15 00:45:00,220 Center St, Seattle,WA,98101 +245008,Google Phone,1,600.0,2019-08-02 11:42:00,371 Jefferson St, New York City,NY,10001 +245008,USB-C Charging Cable,1,11.95,2019-08-02 11:42:00,371 Jefferson St, New York City,NY,10001 +245008,Wired Headphones,1,11.99,2019-08-02 11:42:00,371 Jefferson St, New York City,NY,10001 +245009,USB-C Charging Cable,1,11.95,2019-08-17 13:24:00,427 North St, Los Angeles,CA,90001 +245010,Apple Airpods Headphones,1,150.0,2019-08-10 20:20:00,736 12th St, Atlanta,GA,30301 +245011,AA Batteries (4-pack),2,3.84,2019-08-09 15:22:00,968 South St, Atlanta,GA,30301 +245012,Apple Airpods Headphones,1,150.0,2019-08-09 07:23:00,726 2nd St, Portland,OR,97035 +245013,Google Phone,1,600.0,2019-08-09 18:04:00,35 Johnson St, Atlanta,GA,30301 +245014,27in FHD Monitor,1,149.99,2019-08-06 15:33:00,339 Lake St, San Francisco,CA,94016 +245015,34in Ultrawide Monitor,1,379.99,2019-08-25 22:05:00,682 Maple St, Atlanta,GA,30301 +245016,27in FHD Monitor,1,149.99,2019-08-01 16:00:00,458 Willow St, Boston,MA,02215 +245017,AAA Batteries (4-pack),1,2.99,2019-08-09 01:01:00,672 North St, New York City,NY,10001 +245018,Wired Headphones,1,11.99,2019-08-22 18:57:00,330 Wilson St, Los Angeles,CA,90001 +245019,USB-C Charging Cable,1,11.95,2019-08-20 20:58:00,124 10th St, San Francisco,CA,94016 +245020,Bose SoundSport Headphones,1,99.99,2019-08-03 07:12:00,781 6th St, Dallas,TX,75001 +245021,Lightning Charging Cable,1,14.95,2019-08-04 11:13:00,539 Center St, San Francisco,CA,94016 +245022,USB-C Charging Cable,1,11.95,2019-08-27 00:34:00,535 12th St, Boston,MA,02215 +245023,USB-C Charging Cable,1,11.95,2019-08-28 11:50:00,292 13th St, Seattle,WA,98101 +245024,Lightning Charging Cable,1,14.95,2019-08-02 21:57:00,191 Lakeview St, San Francisco,CA,94016 +245025,Lightning Charging Cable,1,14.95,2019-08-06 16:17:00,55 Center St, Seattle,WA,98101 +245026,AA Batteries (4-pack),1,3.84,2019-08-17 18:37:00,528 Washington St, Dallas,TX,75001 +245027,USB-C Charging Cable,1,11.95,2019-08-07 16:40:00,944 2nd St, Los Angeles,CA,90001 +245028,AA Batteries (4-pack),1,3.84,2019-08-29 16:48:00,88 Jefferson St, New York City,NY,10001 +245029,Lightning Charging Cable,1,14.95,2019-08-21 15:52:00,318 North St, Los Angeles,CA,90001 +245030,Apple Airpods Headphones,1,150.0,2019-08-13 07:55:00,521 Walnut St, Portland,OR,97035 +245031,Apple Airpods Headphones,1,150.0,2019-08-08 01:46:00,971 Highland St, Dallas,TX,75001 +245032,Wired Headphones,1,11.99,2019-08-01 17:51:00,850 10th St, San Francisco,CA,94016 +245033,AAA Batteries (4-pack),3,2.99,2019-08-11 17:29:00,838 River St, San Francisco,CA,94016 +245034,Wired Headphones,1,11.99,2019-08-31 22:12:00,984 Lakeview St, New York City,NY,10001 +245035,Lightning Charging Cable,1,14.95,2019-08-13 18:24:00,203 West St, Boston,MA,02215 +245036,USB-C Charging Cable,1,11.95,2019-08-31 18:07:00,323 Highland St, Seattle,WA,98101 +245037,USB-C Charging Cable,1,11.95,2019-08-03 09:13:00,697 River St, Dallas,TX,75001 +245038,27in FHD Monitor,1,149.99,2019-08-18 13:42:00,271 Sunset St, Los Angeles,CA,90001 +245039,Wired Headphones,1,11.99,2019-08-02 14:10:00,593 Forest St, San Francisco,CA,94016 +245040,Macbook Pro Laptop,1,1700.0,2019-08-13 15:51:00,266 10th St, San Francisco,CA,94016 +245041,Bose SoundSport Headphones,1,99.99,2019-08-30 12:56:00,494 Hickory St, Austin,TX,73301 +245042,USB-C Charging Cable,1,11.95,2019-08-06 20:57:00,595 Dogwood St, Los Angeles,CA,90001 +245043,Apple Airpods Headphones,1,150.0,2019-08-26 11:28:00,34 Wilson St, Atlanta,GA,30301 +245044,AAA Batteries (4-pack),1,2.99,2019-08-22 15:46:00,21 Walnut St, Los Angeles,CA,90001 +245044,AA Batteries (4-pack),1,3.84,2019-08-22 15:46:00,21 Walnut St, Los Angeles,CA,90001 +245045,USB-C Charging Cable,1,11.95,2019-08-03 13:05:00,426 Jackson St, Dallas,TX,75001 +245046,AAA Batteries (4-pack),1,2.99,2019-08-17 11:40:00,643 Meadow St, San Francisco,CA,94016 +245047,ThinkPad Laptop,1,999.99,2019-08-27 12:40:00,918 Chestnut St, San Francisco,CA,94016 +245048,iPhone,1,700.0,2019-08-06 10:32:00,93 Washington St, Atlanta,GA,30301 +245049,Lightning Charging Cable,1,14.95,2019-08-20 19:20:00,388 11th St, San Francisco,CA,94016 +245050,Lightning Charging Cable,1,14.95,2019-08-29 08:28:00,499 Washington St, New York City,NY,10001 +245051,USB-C Charging Cable,1,11.95,2019-08-11 19:43:00,352 4th St, Portland,OR,97035 +245052,AA Batteries (4-pack),1,3.84,2019-08-16 06:12:00,394 Elm St, New York City,NY,10001 +245053,Wired Headphones,1,11.99,2019-08-18 18:10:00,386 Washington St, San Francisco,CA,94016 +245054,USB-C Charging Cable,1,11.95,2019-08-04 19:08:00,577 Church St, New York City,NY,10001 +245055,AAA Batteries (4-pack),1,2.99,2019-08-24 13:23:00,838 Adams St, Los Angeles,CA,90001 +245056,iPhone,1,700.0,2019-08-10 12:28:00,489 Walnut St, Austin,TX,73301 +245056,Lightning Charging Cable,1,14.95,2019-08-10 12:28:00,489 Walnut St, Austin,TX,73301 +245057,Lightning Charging Cable,1,14.95,2019-08-09 18:18:00,339 West St, San Francisco,CA,94016 +245058,34in Ultrawide Monitor,1,379.99,2019-08-24 14:16:00,556 1st St, New York City,NY,10001 +245059,AA Batteries (4-pack),1,3.84,2019-08-05 16:12:00,608 Hill St, Seattle,WA,98101 +245060,Lightning Charging Cable,1,14.95,2019-08-10 23:57:00,524 5th St, Dallas,TX,75001 +245061,Bose SoundSport Headphones,1,99.99,2019-08-08 13:19:00,518 8th St, New York City,NY,10001 +245062,Lightning Charging Cable,1,14.95,2019-08-07 18:28:00,878 Center St, Los Angeles,CA,90001 +245063,USB-C Charging Cable,1,11.95,2019-08-27 20:38:00,801 Church St, Seattle,WA,98101 +245064,Bose SoundSport Headphones,1,99.99,2019-08-17 12:00:00,557 Willow St, San Francisco,CA,94016 +245065,20in Monitor,1,109.99,2019-08-01 18:38:00,228 1st St, San Francisco,CA,94016 +245066,AAA Batteries (4-pack),1,2.99,2019-08-26 19:05:00,241 Madison St, Los Angeles,CA,90001 +245067,Lightning Charging Cable,1,14.95,2019-08-23 22:27:00,938 14th St, Dallas,TX,75001 +245068,USB-C Charging Cable,2,11.95,2019-08-30 01:03:00,891 Jefferson St, New York City,NY,10001 +245069,20in Monitor,1,109.99,2019-08-29 21:05:00,293 Meadow St, New York City,NY,10001 +245070,Lightning Charging Cable,2,14.95,2019-08-10 21:17:00,813 Spruce St, Austin,TX,73301 +245071,Apple Airpods Headphones,1,150.0,2019-08-10 14:22:00,991 13th St, Austin,TX,73301 +245072,Wired Headphones,1,11.99,2019-08-17 16:40:00,631 Chestnut St, New York City,NY,10001 +245073,AAA Batteries (4-pack),1,2.99,2019-08-14 10:06:00,622 Maple St, Dallas,TX,75001 +245074,27in FHD Monitor,1,149.99,2019-08-22 16:54:00,369 Madison St, San Francisco,CA,94016 +245075,Wired Headphones,1,11.99,2019-08-15 10:41:00,886 Johnson St, Los Angeles,CA,90001 +245076,27in 4K Gaming Monitor,1,389.99,2019-08-04 11:57:00,527 Park St, San Francisco,CA,94016 +245077,Google Phone,1,600.0,2019-08-11 12:00:00,305 Adams St, New York City,NY,10001 +245078,Lightning Charging Cable,1,14.95,2019-08-10 19:52:00,795 11th St, San Francisco,CA,94016 +245079,27in 4K Gaming Monitor,1,389.99,2019-08-29 11:57:00,397 6th St, Dallas,TX,75001 +245080,Macbook Pro Laptop,1,1700.0,2019-08-13 21:48:00,171 Main St, Los Angeles,CA,90001 +245081,Apple Airpods Headphones,1,150.0,2019-08-24 18:37:00,156 Wilson St, Los Angeles,CA,90001 +245082,27in FHD Monitor,1,149.99,2019-08-13 13:57:00,639 Walnut St, Los Angeles,CA,90001 +245083,ThinkPad Laptop,1,999.99,2019-08-13 16:37:00,887 Johnson St, Boston,MA,02215 +245084,Apple Airpods Headphones,1,150.0,2019-08-02 16:27:00,487 Forest St, Seattle,WA,98101 +245085,USB-C Charging Cable,1,11.95,2019-08-16 13:17:00,723 Park St, Boston,MA,02215 +245086,AA Batteries (4-pack),1,3.84,2019-08-20 18:07:00,264 Washington St, Los Angeles,CA,90001 +245087,AAA Batteries (4-pack),2,2.99,2019-08-08 20:03:00,279 8th St, New York City,NY,10001 +245088,iPhone,1,700.0,2019-08-29 18:06:00,377 Sunset St, Boston,MA,02215 +245088,Lightning Charging Cable,1,14.95,2019-08-29 18:06:00,377 Sunset St, Boston,MA,02215 +245089,iPhone,1,700.0,2019-08-02 19:14:00,961 Lake St, San Francisco,CA,94016 +245089,Wired Headphones,1,11.99,2019-08-02 19:14:00,961 Lake St, San Francisco,CA,94016 +245090,AAA Batteries (4-pack),1,2.99,2019-08-16 22:12:00,446 Hickory St, Seattle,WA,98101 +245091,27in FHD Monitor,1,149.99,2019-08-18 18:35:00,354 Elm St, Portland,OR,97035 +245092,Wired Headphones,1,11.99,2019-08-29 20:52:00,591 1st St, San Francisco,CA,94016 +245092,Lightning Charging Cable,1,14.95,2019-08-29 20:52:00,591 1st St, San Francisco,CA,94016 +245093,27in FHD Monitor,1,149.99,2019-08-18 22:17:00,945 Jackson St, Los Angeles,CA,90001 +245094,27in 4K Gaming Monitor,1,389.99,2019-08-11 08:33:00,433 Pine St, Atlanta,GA,30301 +245095,ThinkPad Laptop,1,999.99,2019-08-12 23:29:00,717 Park St, Los Angeles,CA,90001 +245096,Apple Airpods Headphones,1,150.0,2019-08-13 17:20:00,586 Forest St, San Francisco,CA,94016 +245097,27in 4K Gaming Monitor,1,389.99,2019-08-07 21:35:00,731 7th St, Seattle,WA,98101 +245098,AA Batteries (4-pack),1,3.84,2019-08-27 18:34:00,968 Church St, San Francisco,CA,94016 +245099,Lightning Charging Cable,1,14.95,2019-08-16 14:52:00,254 North St, Dallas,TX,75001 +245100,Google Phone,1,600.0,2019-08-31 11:48:00,453 Lake St, New York City,NY,10001 +245100,USB-C Charging Cable,1,11.95,2019-08-31 11:48:00,453 Lake St, New York City,NY,10001 +245101,AA Batteries (4-pack),1,3.84,2019-08-03 21:17:00,816 Walnut St, Seattle,WA,98101 +245102,Lightning Charging Cable,1,14.95,2019-08-15 23:16:00,7 2nd St, Seattle,WA,98101 +245103,Bose SoundSport Headphones,1,99.99,2019-08-25 10:20:00,446 10th St, New York City,NY,10001 +245104,Lightning Charging Cable,1,14.95,2019-08-18 18:46:00,304 7th St, Portland,OR,97035 +245105,USB-C Charging Cable,1,11.95,2019-08-19 16:28:00,949 Willow St, Los Angeles,CA,90001 +245106,Lightning Charging Cable,1,14.95,2019-08-07 16:16:00,594 Spruce St, Los Angeles,CA,90001 +245107,Apple Airpods Headphones,1,150.0,2019-08-09 19:18:00,530 13th St, Portland,ME,04101 +245108,27in 4K Gaming Monitor,1,389.99,2019-08-10 10:34:00,447 Lincoln St, Los Angeles,CA,90001 +245109,Bose SoundSport Headphones,1,99.99,2019-08-31 10:20:00,198 Hickory St, New York City,NY,10001 +245110,Lightning Charging Cable,2,14.95,2019-08-30 13:19:00,543 Forest St, Los Angeles,CA,90001 +245111,27in FHD Monitor,1,149.99,2019-08-13 01:57:00,628 Cherry St, San Francisco,CA,94016 +245112,Vareebadd Phone,1,400.0,2019-08-30 11:34:00,512 North St, Los Angeles,CA,90001 +245112,Wired Headphones,1,11.99,2019-08-30 11:34:00,512 North St, Los Angeles,CA,90001 +245113,Apple Airpods Headphones,1,150.0,2019-08-08 04:33:00,255 Cherry St, Austin,TX,73301 +245114,USB-C Charging Cable,2,11.95,2019-08-23 18:15:00,557 Lincoln St, Seattle,WA,98101 +245115,27in FHD Monitor,1,149.99,2019-08-23 20:36:00,81 Lincoln St, Los Angeles,CA,90001 +245116,Macbook Pro Laptop,1,1700.0,2019-08-05 17:36:00,872 Walnut St, Los Angeles,CA,90001 +245117,Wired Headphones,1,11.99,2019-08-03 15:27:00,511 9th St, Los Angeles,CA,90001 +245118,27in 4K Gaming Monitor,1,389.99,2019-08-14 22:13:00,853 Sunset St, San Francisco,CA,94016 +245119,AA Batteries (4-pack),1,3.84,2019-08-20 18:50:00,878 Ridge St, Boston,MA,02215 +245120,Wired Headphones,1,11.99,2019-08-29 17:38:00,754 Dogwood St, San Francisco,CA,94016 +245121,Apple Airpods Headphones,1,150.0,2019-08-23 10:34:00,122 Park St, Boston,MA,02215 +245122,AAA Batteries (4-pack),1,2.99,2019-08-12 09:24:00,435 Hill St, Dallas,TX,75001 +245123,Lightning Charging Cable,1,14.95,2019-08-06 17:49:00,23 Hill St, Dallas,TX,75001 +245124,Apple Airpods Headphones,1,150.0,2019-08-13 22:24:00,376 Madison St, Atlanta,GA,30301 +245125,USB-C Charging Cable,1,11.95,2019-08-01 10:52:00,119 4th St, Seattle,WA,98101 +245126,Apple Airpods Headphones,1,150.0,2019-08-30 14:47:00,251 Johnson St, Los Angeles,CA,90001 +245127,USB-C Charging Cable,1,11.95,2019-08-09 01:28:00,353 Wilson St, Seattle,WA,98101 +245128,LG Dryer,1,600.0,2019-08-24 14:46:00,48 Maple St, Atlanta,GA,30301 +245129,Wired Headphones,1,11.99,2019-08-28 11:41:00,752 Jackson St, Austin,TX,73301 +245130,Google Phone,1,600.0,2019-08-03 07:27:00,722 Ridge St, Portland,ME,04101 +245131,34in Ultrawide Monitor,1,379.99,2019-08-11 18:05:00,587 Johnson St, Atlanta,GA,30301 +245132,AAA Batteries (4-pack),2,2.99,2019-08-06 13:47:00,115 Walnut St, Seattle,WA,98101 +245133,ThinkPad Laptop,1,999.99,2019-08-01 13:15:00,324 Wilson St, Dallas,TX,75001 +245133,Flatscreen TV,1,300.0,2019-08-01 13:15:00,324 Wilson St, Dallas,TX,75001 +245134,USB-C Charging Cable,1,11.95,2019-08-20 11:33:00,670 Ridge St, Los Angeles,CA,90001 +245135,AA Batteries (4-pack),1,3.84,2019-08-10 08:24:00,477 8th St, Los Angeles,CA,90001 +245136,USB-C Charging Cable,1,11.95,2019-08-02 11:03:00,349 Hill St, San Francisco,CA,94016 +245137,Apple Airpods Headphones,1,150.0,2019-08-15 21:06:00,931 Highland St, Portland,ME,04101 +245138,27in 4K Gaming Monitor,1,389.99,2019-08-07 01:40:00,613 Lincoln St, San Francisco,CA,94016 +245139,Lightning Charging Cable,1,14.95,2019-08-31 09:47:00,199 Cherry St, Atlanta,GA,30301 +245140,Bose SoundSport Headphones,1,99.99,2019-08-24 14:15:00,643 Church St, New York City,NY,10001 +245141,27in 4K Gaming Monitor,1,389.99,2019-08-21 05:03:00,185 Center St, San Francisco,CA,94016 +245142,Apple Airpods Headphones,1,150.0,2019-08-08 14:22:00,567 Cedar St, New York City,NY,10001 +245143,AA Batteries (4-pack),1,3.84,2019-08-20 15:10:00,441 5th St, San Francisco,CA,94016 +245144,Flatscreen TV,1,300.0,2019-08-17 22:15:00,295 Cherry St, Dallas,TX,75001 +245145,Apple Airpods Headphones,1,150.0,2019-08-28 15:07:00,995 Lincoln St, Seattle,WA,98101 +245146,AA Batteries (4-pack),1,3.84,2019-08-08 21:18:00,513 Dogwood St, New York City,NY,10001 +245147,Wired Headphones,1,11.99,2019-08-11 11:33:00,635 Forest St, San Francisco,CA,94016 +245148,Lightning Charging Cable,1,14.95,2019-08-05 14:01:00,184 Adams St, San Francisco,CA,94016 +245149,27in 4K Gaming Monitor,1,389.99,2019-08-05 06:55:00,173 Wilson St, Boston,MA,02215 +245150,Bose SoundSport Headphones,1,99.99,2019-08-06 09:35:00,390 Sunset St, San Francisco,CA,94016 +245151,iPhone,1,700.0,2019-08-07 08:50:00,987 13th St, San Francisco,CA,94016 +245151,Apple Airpods Headphones,1,150.0,2019-08-07 08:50:00,987 13th St, San Francisco,CA,94016 +245152,Flatscreen TV,1,300.0,2019-08-22 00:52:00,334 Elm St, Austin,TX,73301 +245153,Wired Headphones,1,11.99,2019-08-26 14:22:00,267 Ridge St, San Francisco,CA,94016 +245154,Bose SoundSport Headphones,1,99.99,2019-08-18 15:42:00,306 5th St, San Francisco,CA,94016 +245155,AA Batteries (4-pack),1,3.84,2019-08-18 15:01:00,772 5th St, Boston,MA,02215 +245156,Apple Airpods Headphones,1,150.0,2019-08-26 17:57:00,474 11th St, New York City,NY,10001 +245157,Apple Airpods Headphones,1,150.0,2019-08-12 13:32:00,763 11th St, New York City,NY,10001 +245158,AA Batteries (4-pack),1,3.84,2019-08-02 12:11:00,238 Church St, Portland,ME,04101 +245159,AA Batteries (4-pack),2,3.84,2019-08-26 06:33:00,311 10th St, San Francisco,CA,94016 +245160,Wired Headphones,1,11.99,2019-08-12 22:56:00,829 Forest St, Atlanta,GA,30301 +245161,34in Ultrawide Monitor,1,379.99,2019-08-15 21:56:00,576 West St, Boston,MA,02215 +245162,AA Batteries (4-pack),1,3.84,2019-08-10 14:05:00,672 Pine St, Portland,OR,97035 +245163,AA Batteries (4-pack),1,3.84,2019-08-10 13:07:00,448 Chestnut St, New York City,NY,10001 +245164,Wired Headphones,1,11.99,2019-08-28 22:34:00,808 Elm St, Austin,TX,73301 +245165,AAA Batteries (4-pack),1,2.99,2019-08-18 18:40:00,360 4th St, Seattle,WA,98101 +245166,AA Batteries (4-pack),2,3.84,2019-08-29 12:14:00,404 Spruce St, Portland,OR,97035 +245167,34in Ultrawide Monitor,1,379.99,2019-08-11 09:47:00,814 Main St, Seattle,WA,98101 +245168,AAA Batteries (4-pack),1,2.99,2019-08-27 23:10:00,502 10th St, Boston,MA,02215 +245169,Lightning Charging Cable,1,14.95,2019-08-05 07:21:00,432 Jackson St, Los Angeles,CA,90001 +245170,Lightning Charging Cable,1,14.95,2019-08-13 16:01:00,198 Ridge St, Boston,MA,02215 +245171,Wired Headphones,1,11.99,2019-08-21 19:15:00,478 Elm St, Atlanta,GA,30301 +245172,iPhone,1,700.0,2019-08-15 11:51:00,650 Forest St, Los Angeles,CA,90001 +245173,Bose SoundSport Headphones,1,99.99,2019-08-17 19:35:00,855 11th St, Portland,OR,97035 +245174,Google Phone,1,600.0,2019-08-25 23:57:00,801 Madison St, Seattle,WA,98101 +245175,Lightning Charging Cable,1,14.95,2019-08-12 21:40:00,523 Chestnut St, San Francisco,CA,94016 +245176,Bose SoundSport Headphones,1,99.99,2019-09-01 01:13:00,968 Johnson St, Los Angeles,CA,90001 +245177,Bose SoundSport Headphones,1,99.99,2019-08-25 14:07:00,470 Cedar St, San Francisco,CA,94016 +245178,AAA Batteries (4-pack),2,2.99,2019-08-12 07:40:00,164 North St, Atlanta,GA,30301 +245179,Lightning Charging Cable,1,14.95,2019-08-20 16:53:00,1 Maple St, New York City,NY,10001 +245180,Macbook Pro Laptop,1,1700.0,2019-08-24 06:58:00,507 Dogwood St, New York City,NY,10001 +245181,Wired Headphones,1,11.99,2019-08-30 09:30:00,26 Center St, Seattle,WA,98101 +245182,Apple Airpods Headphones,1,150.0,2019-08-23 14:55:00,220 River St, Atlanta,GA,30301 +245183,Wired Headphones,1,11.99,2019-08-18 01:51:00,121 Chestnut St, San Francisco,CA,94016 +245184,Macbook Pro Laptop,1,1700.0,2019-08-27 03:00:00,959 Forest St, Dallas,TX,75001 +245185,AA Batteries (4-pack),2,3.84,2019-08-09 10:19:00,541 4th St, San Francisco,CA,94016 +245186,Lightning Charging Cable,1,14.95,2019-08-23 10:53:00,304 Chestnut St, San Francisco,CA,94016 +245187,34in Ultrawide Monitor,1,379.99,2019-08-24 15:35:00,569 Cedar St, New York City,NY,10001 +245188,AAA Batteries (4-pack),1,2.99,2019-08-13 11:12:00,76 West St, Los Angeles,CA,90001 +245189,Google Phone,1,600.0,2019-08-28 15:07:00,336 Hickory St, Seattle,WA,98101 +245190,Lightning Charging Cable,1,14.95,2019-08-07 14:02:00,844 Cherry St, San Francisco,CA,94016 +245190,Wired Headphones,1,11.99,2019-08-07 14:02:00,844 Cherry St, San Francisco,CA,94016 +245191,20in Monitor,1,109.99,2019-08-18 22:40:00,57 Wilson St, Atlanta,GA,30301 +245192,USB-C Charging Cable,2,11.95,2019-08-17 13:48:00,650 Pine St, Dallas,TX,75001 +245193,34in Ultrawide Monitor,1,379.99,2019-08-31 15:08:00,511 Forest St, San Francisco,CA,94016 +245194,Wired Headphones,1,11.99,2019-08-20 16:44:00,41 Sunset St, Atlanta,GA,30301 +245195,Bose SoundSport Headphones,1,99.99,2019-08-13 19:19:00,660 Cherry St, San Francisco,CA,94016 +245196,Bose SoundSport Headphones,1,99.99,2019-08-26 20:56:00,566 Dogwood St, Portland,OR,97035 +245197,Apple Airpods Headphones,1,150.0,2019-08-02 17:01:00,255 River St, Dallas,TX,75001 +245198,Google Phone,1,600.0,2019-08-13 00:08:00,355 Johnson St, Atlanta,GA,30301 +245199,Lightning Charging Cable,1,14.95,2019-08-12 17:26:00,505 North St, San Francisco,CA,94016 +245200,Google Phone,1,600.0,2019-08-20 12:40:00,987 Dogwood St, Dallas,TX,75001 +245201,Bose SoundSport Headphones,1,99.99,2019-08-18 00:31:00,762 Hickory St, Austin,TX,73301 +245202,Wired Headphones,1,11.99,2019-08-06 09:10:00,547 Cedar St, San Francisco,CA,94016 +245203,Wired Headphones,1,11.99,2019-08-10 16:36:00,302 Forest St, Portland,ME,04101 +245204,AAA Batteries (4-pack),1,2.99,2019-08-09 10:54:00,451 13th St, Seattle,WA,98101 +245205,ThinkPad Laptop,1,999.99,2019-08-28 01:02:00,528 Spruce St, Atlanta,GA,30301 +245206,Apple Airpods Headphones,1,150.0,2019-08-31 16:57:00,440 8th St, Atlanta,GA,30301 +245207,USB-C Charging Cable,1,11.95,2019-08-22 12:29:00,121 Madison St, New York City,NY,10001 +245208,USB-C Charging Cable,1,11.95,2019-08-31 22:11:00,36 Hickory St, Dallas,TX,75001 +245209,Flatscreen TV,1,300.0,2019-08-04 14:00:00,670 Wilson St, Portland,OR,97035 +245210,Lightning Charging Cable,1,14.95,2019-08-13 21:03:00,171 Walnut St, Los Angeles,CA,90001 +245211,AA Batteries (4-pack),1,3.84,2019-08-25 11:32:00,857 9th St, Boston,MA,02215 +245212,AAA Batteries (4-pack),3,2.99,2019-08-01 19:22:00,801 2nd St, San Francisco,CA,94016 +245213,iPhone,1,700.0,2019-08-05 14:21:00,547 Spruce St, Portland,ME,04101 +245214,Wired Headphones,1,11.99,2019-08-20 08:02:00,628 Walnut St, Atlanta,GA,30301 +245215,ThinkPad Laptop,1,999.99,2019-08-15 14:46:00,94 5th St, Austin,TX,73301 +245216,Wired Headphones,1,11.99,2019-08-03 19:34:00,953 10th St, Seattle,WA,98101 +245217,Wired Headphones,1,11.99,2019-08-20 23:38:00,798 Willow St, New York City,NY,10001 +245218,USB-C Charging Cable,1,11.95,2019-08-22 03:09:00,284 Cherry St, Seattle,WA,98101 +245219,AAA Batteries (4-pack),1,2.99,2019-08-01 08:43:00,150 13th St, New York City,NY,10001 +245220,Lightning Charging Cable,1,14.95,2019-08-06 23:21:00,983 Church St, New York City,NY,10001 +245221,Apple Airpods Headphones,1,150.0,2019-08-10 18:49:00,157 Park St, Portland,OR,97035 +245222,AAA Batteries (4-pack),5,2.99,2019-08-13 14:47:00,768 Cherry St, Los Angeles,CA,90001 +245223,Bose SoundSport Headphones,1,99.99,2019-08-03 14:55:00,815 Main St, Los Angeles,CA,90001 +245224,Apple Airpods Headphones,1,150.0,2019-08-30 12:47:00,525 Lakeview St, Boston,MA,02215 +245225,Vareebadd Phone,1,400.0,2019-08-13 14:01:00,433 South St, Seattle,WA,98101 +245226,Wired Headphones,1,11.99,2019-08-10 19:45:00,451 14th St, Portland,OR,97035 +245227,AAA Batteries (4-pack),1,2.99,2019-08-05 19:49:00,351 Madison St, San Francisco,CA,94016 +245228,Bose SoundSport Headphones,1,99.99,2019-08-03 18:30:00,901 11th St, Portland,OR,97035 +245229,AA Batteries (4-pack),1,3.84,2019-08-15 19:53:00,139 Highland St, San Francisco,CA,94016 +245230,Flatscreen TV,1,300.0,2019-08-01 14:15:00,207 10th St, New York City,NY,10001 +245231,Flatscreen TV,1,300.0,2019-08-07 17:00:00,153 10th St, New York City,NY,10001 +245232,Bose SoundSport Headphones,1,99.99,2019-08-20 11:44:00,170 13th St, Los Angeles,CA,90001 +245233,Lightning Charging Cable,1,14.95,2019-08-10 22:28:00,807 River St, San Francisco,CA,94016 +245234,Bose SoundSport Headphones,1,99.99,2019-08-31 19:47:00,731 Meadow St, Boston,MA,02215 +245235,Apple Airpods Headphones,1,150.0,2019-08-29 19:28:00,138 Lake St, Los Angeles,CA,90001 +245236,27in FHD Monitor,1,149.99,2019-08-07 11:44:00,800 Lakeview St, Atlanta,GA,30301 +245237,20in Monitor,1,109.99,2019-08-23 19:22:00,715 1st St, Los Angeles,CA,90001 +245238,USB-C Charging Cable,1,11.95,2019-08-25 09:56:00,860 14th St, New York City,NY,10001 +245239,AAA Batteries (4-pack),1,2.99,2019-08-04 20:20:00,283 Church St, Atlanta,GA,30301 +245240,USB-C Charging Cable,1,11.95,2019-08-05 19:48:00,520 Highland St, Atlanta,GA,30301 +245241,USB-C Charging Cable,1,11.95,2019-08-25 21:01:00,748 Meadow St, Atlanta,GA,30301 +245242,Apple Airpods Headphones,1,150.0,2019-08-29 15:09:00,672 Maple St, New York City,NY,10001 +245243,Lightning Charging Cable,1,14.95,2019-08-23 17:48:00,797 Pine St, Atlanta,GA,30301 +245244,iPhone,1,700.0,2019-08-04 08:03:00,243 Cherry St, Atlanta,GA,30301 +245245,Wired Headphones,1,11.99,2019-08-28 10:57:00,558 Chestnut St, New York City,NY,10001 +245246,iPhone,1,700.0,2019-08-28 11:18:00,87 Johnson St, San Francisco,CA,94016 +245247,Bose SoundSport Headphones,1,99.99,2019-08-24 11:29:00,882 Jackson St, San Francisco,CA,94016 +245248,USB-C Charging Cable,1,11.95,2019-08-07 12:25:00,171 8th St, Austin,TX,73301 +245249,Flatscreen TV,1,300.0,2019-08-06 18:09:00,636 Lakeview St, Atlanta,GA,30301 +245250,20in Monitor,1,109.99,2019-08-28 13:17:00,549 11th St, New York City,NY,10001 +245251,Flatscreen TV,1,300.0,2019-08-27 09:01:00,846 6th St, San Francisco,CA,94016 +245252,34in Ultrawide Monitor,1,379.99,2019-08-06 11:40:00,84 West St, San Francisco,CA,94016 +245253,Lightning Charging Cable,1,14.95,2019-08-30 12:35:00,759 Elm St, New York City,NY,10001 +245254,Apple Airpods Headphones,1,150.0,2019-08-17 00:33:00,223 12th St, San Francisco,CA,94016 +245255,AAA Batteries (4-pack),2,2.99,2019-08-22 15:51:00,975 Forest St, San Francisco,CA,94016 +245256,Bose SoundSport Headphones,1,99.99,2019-08-06 22:51:00,290 Madison St, Atlanta,GA,30301 +245257,AAA Batteries (4-pack),1,2.99,2019-08-30 21:25:00,824 Dogwood St, New York City,NY,10001 +245258,LG Washing Machine,1,600.0,2019-08-14 17:53:00,771 Maple St, New York City,NY,10001 +245259,27in 4K Gaming Monitor,1,389.99,2019-08-08 21:48:00,309 2nd St, Atlanta,GA,30301 +245260,Bose SoundSport Headphones,1,99.99,2019-08-28 14:32:00,605 8th St, Boston,MA,02215 +245261,Wired Headphones,2,11.99,2019-08-27 14:07:00,189 West St, San Francisco,CA,94016 +245262,Flatscreen TV,1,300.0,2019-08-05 17:00:00,941 Park St, Seattle,WA,98101 +245263,Lightning Charging Cable,1,14.95,2019-08-21 22:04:00,910 Sunset St, New York City,NY,10001 +245264,AA Batteries (4-pack),1,3.84,2019-08-31 15:30:00,275 Hickory St, New York City,NY,10001 +245265,AA Batteries (4-pack),1,3.84,2019-08-24 08:01:00,825 Washington St, Portland,OR,97035 +245266,AAA Batteries (4-pack),1,2.99,2019-08-03 18:03:00,906 5th St, Boston,MA,02215 +245267,Lightning Charging Cable,1,14.95,2019-08-16 12:01:00,814 Ridge St, New York City,NY,10001 +245268,20in Monitor,1,109.99,2019-08-06 08:37:00,16 13th St, Los Angeles,CA,90001 +245269,ThinkPad Laptop,1,999.99,2019-08-26 10:39:00,199 Center St, New York City,NY,10001 +245270,USB-C Charging Cable,2,11.95,2019-08-20 21:01:00,448 Adams St, San Francisco,CA,94016 +245271,AAA Batteries (4-pack),1,2.99,2019-08-16 19:58:00,847 North St, New York City,NY,10001 +245272,USB-C Charging Cable,1,11.95,2019-08-23 20:13:00,919 10th St, Boston,MA,02215 +245273,USB-C Charging Cable,1,11.95,2019-08-24 15:32:00,476 West St, San Francisco,CA,94016 +245274,USB-C Charging Cable,1,11.95,2019-08-25 13:51:00,539 Lincoln St, Portland,OR,97035 +245275,iPhone,1,700.0,2019-08-08 09:52:00,987 Lincoln St, New York City,NY,10001 +245276,Google Phone,1,600.0,2019-08-30 22:32:00,12 Cedar St, Boston,MA,02215 +245277,Vareebadd Phone,1,400.0,2019-08-24 09:04:00,467 Church St, Dallas,TX,75001 +245278,Macbook Pro Laptop,1,1700.0,2019-08-10 13:17:00,876 Jackson St, Los Angeles,CA,90001 +245279,Apple Airpods Headphones,1,150.0,2019-08-01 20:40:00,187 Wilson St, Los Angeles,CA,90001 +245280,Bose SoundSport Headphones,1,99.99,2019-08-06 14:13:00,950 Lake St, Boston,MA,02215 +245281,Wired Headphones,1,11.99,2019-08-02 17:01:00,300 9th St, Dallas,TX,75001 +245282,Wired Headphones,1,11.99,2019-08-23 23:43:00,842 North St, Portland,OR,97035 +245283,AA Batteries (4-pack),5,3.84,2019-08-03 21:40:00,312 Spruce St, Seattle,WA,98101 +245284,27in FHD Monitor,1,149.99,2019-08-17 00:14:00,143 Jackson St, New York City,NY,10001 +245285,Google Phone,1,600.0,2019-08-30 13:44:00,232 4th St, Portland,OR,97035 +245286,Apple Airpods Headphones,1,150.0,2019-08-18 20:28:00,961 7th St, Atlanta,GA,30301 +245287,Flatscreen TV,1,300.0,2019-08-08 12:30:00,937 North St, Boston,MA,02215 +245288,34in Ultrawide Monitor,1,379.99,2019-08-20 14:43:00,847 Pine St, Seattle,WA,98101 +245289,Apple Airpods Headphones,1,150.0,2019-08-18 08:35:00,830 8th St, Los Angeles,CA,90001 +245290,AA Batteries (4-pack),1,3.84,2019-08-28 14:37:00,199 5th St, Portland,OR,97035 +245291,AAA Batteries (4-pack),2,2.99,2019-08-01 17:41:00,566 Dogwood St, San Francisco,CA,94016 +245292,Wired Headphones,1,11.99,2019-08-11 21:58:00,478 Jefferson St, Seattle,WA,98101 +245293,AAA Batteries (4-pack),1,2.99,2019-08-07 22:45:00,304 Elm St, Seattle,WA,98101 +245294,Lightning Charging Cable,1,14.95,2019-08-19 21:14:00,749 Main St, Los Angeles,CA,90001 +245295,Lightning Charging Cable,1,14.95,2019-08-08 12:07:00,820 Dogwood St, Seattle,WA,98101 +245296,Bose SoundSport Headphones,1,99.99,2019-08-05 17:19:00,491 Cherry St, Seattle,WA,98101 +245297,Apple Airpods Headphones,1,150.0,2019-08-08 14:47:00,728 11th St, Atlanta,GA,30301 +245298,Wired Headphones,1,11.99,2019-08-07 12:28:00,974 1st St, New York City,NY,10001 +245299,AAA Batteries (4-pack),2,2.99,2019-08-11 17:58:00,768 7th St, San Francisco,CA,94016 +245300,Macbook Pro Laptop,1,1700.0,2019-08-22 15:15:00,201 Adams St, Los Angeles,CA,90001 +245301,AAA Batteries (4-pack),2,2.99,2019-08-25 10:32:00,341 North St, Boston,MA,02215 +245302,Bose SoundSport Headphones,1,99.99,2019-08-14 16:55:00,911 Washington St, San Francisco,CA,94016 +245303,Bose SoundSport Headphones,1,99.99,2019-08-02 12:53:00,543 Forest St, Los Angeles,CA,90001 +245304,Wired Headphones,1,11.99,2019-08-11 20:26:00,418 Dogwood St, New York City,NY,10001 +245305,Lightning Charging Cable,1,14.95,2019-08-17 09:11:00,42 6th St, New York City,NY,10001 +245306,Lightning Charging Cable,1,14.95,2019-08-10 11:55:00,417 13th St, Seattle,WA,98101 +245307,USB-C Charging Cable,1,11.95,2019-08-05 20:17:00,199 Willow St, Portland,OR,97035 +245308,USB-C Charging Cable,1,11.95,2019-08-28 14:48:00,564 Adams St, Los Angeles,CA,90001 +245309,AA Batteries (4-pack),2,3.84,2019-08-23 12:02:00,727 Dogwood St, Los Angeles,CA,90001 +245310,USB-C Charging Cable,1,11.95,2019-08-10 13:02:00,865 10th St, San Francisco,CA,94016 +245311,Macbook Pro Laptop,1,1700.0,2019-08-08 19:20:00,956 Main St, San Francisco,CA,94016 +245312,Vareebadd Phone,1,400.0,2019-08-21 16:51:00,899 Elm St, Dallas,TX,75001 +245312,USB-C Charging Cable,1,11.95,2019-08-21 16:51:00,899 Elm St, Dallas,TX,75001 +245313,AA Batteries (4-pack),2,3.84,2019-08-14 11:02:00,53 Spruce St, Portland,OR,97035 +245314,Bose SoundSport Headphones,1,99.99,2019-08-03 15:52:00,708 Church St, San Francisco,CA,94016 +245315,Apple Airpods Headphones,1,150.0,2019-08-23 17:24:00,929 Spruce St, New York City,NY,10001 +245316,Bose SoundSport Headphones,1,99.99,2019-08-16 09:58:00,589 Willow St, San Francisco,CA,94016 +245317,iPhone,1,700.0,2019-08-29 13:54:00,947 Wilson St, San Francisco,CA,94016 +245317,Lightning Charging Cable,1,14.95,2019-08-29 13:54:00,947 Wilson St, San Francisco,CA,94016 +245318,AAA Batteries (4-pack),3,2.99,2019-08-28 21:57:00,412 2nd St, New York City,NY,10001 +245319,Macbook Pro Laptop,1,1700.0,2019-08-11 21:01:00,843 Park St, San Francisco,CA,94016 +245320,Wired Headphones,1,11.99,2019-08-14 00:08:00,694 Pine St, Portland,OR,97035 +245321,USB-C Charging Cable,1,11.95,2019-08-08 20:16:00,450 Maple St, Dallas,TX,75001 +245322,AAA Batteries (4-pack),1,2.99,2019-08-28 16:07:00,366 Center St, Dallas,TX,75001 +245323,USB-C Charging Cable,1,11.95,2019-08-01 17:33:00,763 11th St, New York City,NY,10001 +245324,USB-C Charging Cable,1,11.95,2019-08-26 22:22:00,993 Maple St, Boston,MA,02215 +245325,AA Batteries (4-pack),1,3.84,2019-08-24 12:28:00,295 Cherry St, Los Angeles,CA,90001 +245326,27in 4K Gaming Monitor,1,389.99,2019-08-29 12:57:00,51 Walnut St, Los Angeles,CA,90001 +245327,27in FHD Monitor,1,149.99,2019-08-25 08:32:00,688 North St, Seattle,WA,98101 +245328,Wired Headphones,1,11.99,2019-08-04 18:27:00,989 River St, New York City,NY,10001 +245329,Lightning Charging Cable,1,14.95,2019-08-10 09:32:00,177 Jefferson St, Seattle,WA,98101 +245330,AAA Batteries (4-pack),4,2.99,2019-08-13 00:05:00,687 Madison St, Boston,MA,02215 +245331,Lightning Charging Cable,2,14.95,2019-08-26 17:17:00,4 Jackson St, Portland,OR,97035 +245332,Wired Headphones,1,11.99,2019-08-31 18:33:00,498 1st St, Boston,MA,02215 +245333,AAA Batteries (4-pack),2,2.99,2019-08-09 12:32:00,7 North St, Dallas,TX,75001 +245334,USB-C Charging Cable,2,11.95,2019-08-03 20:50:00,316 Church St, Dallas,TX,75001 +245335,AA Batteries (4-pack),1,3.84,2019-08-24 12:18:00,700 Lincoln St, San Francisco,CA,94016 +245336,AAA Batteries (4-pack),1,2.99,2019-08-29 09:50:00,100 13th St, San Francisco,CA,94016 +245337,Apple Airpods Headphones,1,150.0,2019-08-25 07:35:00,772 4th St, Seattle,WA,98101 +245338,27in 4K Gaming Monitor,1,389.99,2019-08-01 16:04:00,978 Dogwood St, San Francisco,CA,94016 +245339,Macbook Pro Laptop,1,1700.0,2019-08-26 10:55:00,641 Church St, Portland,OR,97035 +245340,Macbook Pro Laptop,1,1700.0,2019-08-01 14:17:00,50 Wilson St, Dallas,TX,75001 +245341,Wired Headphones,1,11.99,2019-08-08 14:27:00,504 1st St, New York City,NY,10001 +245342,USB-C Charging Cable,1,11.95,2019-08-03 17:51:00,532 Elm St, Seattle,WA,98101 +245343,34in Ultrawide Monitor,1,379.99,2019-08-11 13:13:00,733 Willow St, Portland,ME,04101 +245344,AAA Batteries (4-pack),2,2.99,2019-08-20 13:08:00,152 South St, Seattle,WA,98101 +245345,AA Batteries (4-pack),1,3.84,2019-08-08 09:36:00,90 Meadow St, Los Angeles,CA,90001 +245346,Lightning Charging Cable,1,14.95,2019-08-01 07:16:00,627 Main St, Dallas,TX,75001 +245347,20in Monitor,1,109.99,2019-08-14 11:26:00,659 Maple St, Dallas,TX,75001 +245348,Wired Headphones,1,11.99,2019-08-06 15:33:00,671 Willow St, New York City,NY,10001 +245349,USB-C Charging Cable,1,11.95,2019-08-21 10:46:00,815 Elm St, Los Angeles,CA,90001 +245350,USB-C Charging Cable,1,11.95,2019-08-06 18:24:00,343 Dogwood St, New York City,NY,10001 +245351,iPhone,1,700.0,2019-08-06 15:05:00,392 Jefferson St, Los Angeles,CA,90001 +245352,ThinkPad Laptop,1,999.99,2019-08-19 15:22:00,58 West St, San Francisco,CA,94016 +245353,Google Phone,1,600.0,2019-08-01 13:15:00,691 7th St, San Francisco,CA,94016 +245353,USB-C Charging Cable,1,11.95,2019-08-01 13:15:00,691 7th St, San Francisco,CA,94016 +245354,AAA Batteries (4-pack),1,2.99,2019-08-17 13:01:00,472 2nd St, San Francisco,CA,94016 +245355,Wired Headphones,1,11.99,2019-08-28 07:09:00,579 Park St, Atlanta,GA,30301 +245356,Macbook Pro Laptop,1,1700.0,2019-08-31 13:07:00,23 North St, Los Angeles,CA,90001 +245357,Wired Headphones,2,11.99,2019-08-01 20:15:00,744 Meadow St, Dallas,TX,75001 +245358,Google Phone,1,600.0,2019-08-10 20:14:00,110 5th St, New York City,NY,10001 +245359,27in FHD Monitor,1,149.99,2019-08-26 20:48:00,859 Hill St, Boston,MA,02215 +245360,USB-C Charging Cable,1,11.95,2019-08-22 02:20:00,762 Lakeview St, Dallas,TX,75001 +245361,Macbook Pro Laptop,1,1700.0,2019-08-16 19:38:00,817 Jackson St, San Francisco,CA,94016 +245362,AAA Batteries (4-pack),1,2.99,2019-08-24 21:03:00,838 Elm St, Los Angeles,CA,90001 +245363,Lightning Charging Cable,1,14.95,2019-08-25 12:23:00,346 Lake St, Atlanta,GA,30301 +245364,AAA Batteries (4-pack),1,2.99,2019-08-08 20:20:00,891 Chestnut St, New York City,NY,10001 +245365,USB-C Charging Cable,1,11.95,2019-08-12 21:28:00,753 Maple St, Los Angeles,CA,90001 +245366,AA Batteries (4-pack),1,3.84,2019-08-04 23:11:00,977 Chestnut St, Los Angeles,CA,90001 +245367,AAA Batteries (4-pack),1,2.99,2019-08-25 10:01:00,633 Meadow St, Boston,MA,02215 +245368,Bose SoundSport Headphones,1,99.99,2019-08-08 21:59:00,45 River St, Seattle,WA,98101 +245369,USB-C Charging Cable,1,11.95,2019-08-13 23:19:00,398 Elm St, Dallas,TX,75001 +245370,27in 4K Gaming Monitor,1,389.99,2019-08-02 12:57:00,19 2nd St, Portland,OR,97035 +245371,Lightning Charging Cable,1,14.95,2019-08-13 13:17:00,915 Dogwood St, Seattle,WA,98101 +245371,AA Batteries (4-pack),1,3.84,2019-08-13 13:17:00,915 Dogwood St, Seattle,WA,98101 +245372,Macbook Pro Laptop,1,1700.0,2019-08-29 12:10:00,237 Pine St, New York City,NY,10001 +245373,Lightning Charging Cable,1,14.95,2019-08-13 02:28:00,115 Madison St, Los Angeles,CA,90001 +245374,27in 4K Gaming Monitor,1,389.99,2019-08-08 16:48:00,476 Center St, Atlanta,GA,30301 +245375,Macbook Pro Laptop,1,1700.0,2019-08-29 19:48:00,254 5th St, Portland,OR,97035 +245376,Google Phone,1,600.0,2019-08-01 21:43:00,783 6th St, Boston,MA,02215 +245377,Macbook Pro Laptop,1,1700.0,2019-08-19 08:22:00,503 Hickory St, Dallas,TX,75001 +245378,Vareebadd Phone,1,400.0,2019-08-25 13:18:00,195 7th St, New York City,NY,10001 +245379,Lightning Charging Cable,1,14.95,2019-08-04 23:24:00,632 Spruce St, Portland,OR,97035 +245380,Lightning Charging Cable,1,14.95,2019-08-06 09:04:00,152 Highland St, Los Angeles,CA,90001 +245381,AA Batteries (4-pack),2,3.84,2019-08-30 21:26:00,578 Forest St, Boston,MA,02215 +245382,USB-C Charging Cable,1,11.95,2019-08-27 11:50:00,228 11th St, Portland,OR,97035 +245383,iPhone,1,700.0,2019-08-09 12:21:00,283 Church St, Boston,MA,02215 +245384,AAA Batteries (4-pack),1,2.99,2019-08-07 08:12:00,98 Hickory St, Los Angeles,CA,90001 +245385,Apple Airpods Headphones,1,150.0,2019-08-02 18:51:00,395 Sunset St, San Francisco,CA,94016 +245386,LG Dryer,1,600.0,2019-08-11 13:07:00,95 7th St, Seattle,WA,98101 +245387,Apple Airpods Headphones,1,150.0,2019-08-09 11:15:00,93 Cherry St, Seattle,WA,98101 +245388,AA Batteries (4-pack),1,3.84,2019-08-04 07:03:00,292 Elm St, Los Angeles,CA,90001 +245389,Bose SoundSport Headphones,1,99.99,2019-08-17 20:28:00,374 Pine St, Los Angeles,CA,90001 +245390,USB-C Charging Cable,1,11.95,2019-08-17 15:43:00,295 Cherry St, San Francisco,CA,94016 +245391,AA Batteries (4-pack),1,3.84,2019-08-11 23:01:00,457 1st St, Seattle,WA,98101 +245392,Lightning Charging Cable,1,14.95,2019-08-14 23:57:00,315 Jefferson St, Seattle,WA,98101 +245393,27in 4K Gaming Monitor,1,389.99,2019-08-21 18:18:00,871 West St, Los Angeles,CA,90001 +245394,Bose SoundSport Headphones,1,99.99,2019-08-24 12:45:00,68 West St, Boston,MA,02215 +245395,AA Batteries (4-pack),1,3.84,2019-08-25 10:27:00,310 Jefferson St, New York City,NY,10001 +245396,AAA Batteries (4-pack),1,2.99,2019-08-03 14:22:00,829 Cherry St, Los Angeles,CA,90001 +245397,Lightning Charging Cable,1,14.95,2019-08-16 11:49:00,48 River St, Boston,MA,02215 +245398,27in FHD Monitor,1,149.99,2019-08-29 16:57:00,898 North St, Boston,MA,02215 +245399,AAA Batteries (4-pack),1,2.99,2019-08-12 08:48:00,134 River St, San Francisco,CA,94016 +245400,AA Batteries (4-pack),2,3.84,2019-08-13 07:50:00,138 Meadow St, San Francisco,CA,94016 +245401,AAA Batteries (4-pack),1,2.99,2019-08-12 11:12:00,491 Dogwood St, San Francisco,CA,94016 +245402,27in FHD Monitor,1,149.99,2019-08-14 18:17:00,65 Church St, Los Angeles,CA,90001 +245403,AA Batteries (4-pack),3,3.84,2019-08-10 15:24:00,515 4th St, Dallas,TX,75001 +245404,USB-C Charging Cable,1,11.95,2019-08-11 19:16:00,882 Washington St, Portland,OR,97035 +245405,Macbook Pro Laptop,1,1700.0,2019-08-10 19:34:00,296 Park St, San Francisco,CA,94016 +245406,Bose SoundSport Headphones,1,99.99,2019-08-05 09:41:00,718 Jefferson St, Los Angeles,CA,90001 +245407,Apple Airpods Headphones,1,150.0,2019-08-09 17:22:00,510 Pine St, Seattle,WA,98101 +245408,USB-C Charging Cable,1,11.95,2019-08-02 12:04:00,853 Willow St, Boston,MA,02215 +245409,Lightning Charging Cable,1,14.95,2019-08-09 20:13:00,466 Elm St, Austin,TX,73301 +245410,AAA Batteries (4-pack),1,2.99,2019-08-21 20:29:00,178 River St, Seattle,WA,98101 +245411,Vareebadd Phone,1,400.0,2019-08-05 21:31:00,531 13th St, San Francisco,CA,94016 +245412,Wired Headphones,1,11.99,2019-08-14 14:28:00,581 Chestnut St, San Francisco,CA,94016 +245413,USB-C Charging Cable,1,11.95,2019-08-01 12:25:00,864 Hill St, Austin,TX,73301 +245414,LG Dryer,1,600.0,2019-08-12 16:57:00,77 8th St, Los Angeles,CA,90001 +245415,USB-C Charging Cable,1,11.95,2019-08-20 21:55:00,183 Spruce St, Seattle,WA,98101 +245415,AA Batteries (4-pack),1,3.84,2019-08-20 21:55:00,183 Spruce St, Seattle,WA,98101 +245416,Apple Airpods Headphones,1,150.0,2019-08-27 04:55:00,840 Meadow St, San Francisco,CA,94016 +245417,Wired Headphones,2,11.99,2019-08-09 16:44:00,46 Chestnut St, Atlanta,GA,30301 +245418,Wired Headphones,1,11.99,2019-08-19 19:37:00,374 Center St, Boston,MA,02215 +245419,USB-C Charging Cable,1,11.95,2019-08-31 02:09:00,751 13th St, San Francisco,CA,94016 +245420,AA Batteries (4-pack),1,3.84,2019-08-02 12:04:00,178 Spruce St, San Francisco,CA,94016 +245421,ThinkPad Laptop,1,999.99,2019-08-06 11:09:00,191 Walnut St, Boston,MA,02215 +245422,27in 4K Gaming Monitor,1,389.99,2019-08-14 19:18:00,403 13th St, Boston,MA,02215 +245423,ThinkPad Laptop,1,999.99,2019-08-24 13:27:00,82 South St, New York City,NY,10001 +245424,Apple Airpods Headphones,1,150.0,2019-08-19 16:26:00,421 Washington St, New York City,NY,10001 +245425,USB-C Charging Cable,1,11.95,2019-08-06 12:37:00,735 7th St, Los Angeles,CA,90001 +245426,Wired Headphones,1,11.99,2019-08-05 13:39:00,532 Spruce St, Los Angeles,CA,90001 +245427,AAA Batteries (4-pack),3,2.99,2019-08-31 22:04:00,875 North St, New York City,NY,10001 +245428,Lightning Charging Cable,1,14.95,2019-08-22 15:00:00,375 Highland St, Los Angeles,CA,90001 +245429,AAA Batteries (4-pack),1,2.99,2019-08-05 19:00:00,998 Spruce St, Boston,MA,02215 +245430,AA Batteries (4-pack),1,3.84,2019-08-05 17:54:00,253 Meadow St, San Francisco,CA,94016 +245431,iPhone,1,700.0,2019-08-26 17:01:00,947 Cedar St, Los Angeles,CA,90001 +245432,Lightning Charging Cable,1,14.95,2019-08-16 18:03:00,290 Walnut St, Seattle,WA,98101 +245433,Apple Airpods Headphones,1,150.0,2019-08-05 12:31:00,621 13th St, Austin,TX,73301 +245434,Wired Headphones,1,11.99,2019-08-27 22:01:00,437 South St, Los Angeles,CA,90001 +245435,AA Batteries (4-pack),1,3.84,2019-08-02 14:01:00,16 9th St, New York City,NY,10001 +245436,AAA Batteries (4-pack),2,2.99,2019-08-22 09:53:00,147 Highland St, Seattle,WA,98101 +245437,Macbook Pro Laptop,1,1700.0,2019-08-26 18:01:00,612 9th St, Seattle,WA,98101 +245438,Apple Airpods Headphones,1,150.0,2019-08-26 14:12:00,605 Highland St, Boston,MA,02215 +245439,AA Batteries (4-pack),1,3.84,2019-08-12 14:26:00,287 9th St, Seattle,WA,98101 +245440,Apple Airpods Headphones,1,150.0,2019-08-31 14:34:00,151 Meadow St, Boston,MA,02215 +245441,USB-C Charging Cable,1,11.95,2019-08-07 14:14:00,350 Hickory St, Los Angeles,CA,90001 +245442,AAA Batteries (4-pack),2,2.99,2019-08-04 21:43:00,685 4th St, Los Angeles,CA,90001 +245443,Apple Airpods Headphones,1,150.0,2019-08-28 13:17:00,397 Hickory St, Seattle,WA,98101 +245444,AA Batteries (4-pack),2,3.84,2019-08-24 07:23:00,642 2nd St, San Francisco,CA,94016 +245445,Lightning Charging Cable,2,14.95,2019-08-08 11:47:00,671 Adams St, San Francisco,CA,94016 +245446,27in FHD Monitor,1,149.99,2019-08-27 14:48:00,388 Wilson St, San Francisco,CA,94016 +245447,Apple Airpods Headphones,1,150.0,2019-08-02 14:35:00,853 11th St, Los Angeles,CA,90001 +245448,Wired Headphones,1,11.99,2019-08-12 18:54:00,555 Lincoln St, Dallas,TX,75001 +245449,27in FHD Monitor,1,149.99,2019-08-25 20:53:00,577 West St, San Francisco,CA,94016 +245450,ThinkPad Laptop,1,999.99,2019-08-16 08:10:00,130 Ridge St, Boston,MA,02215 +245451,27in 4K Gaming Monitor,1,389.99,2019-08-14 10:16:00,384 5th St, New York City,NY,10001 +245452,20in Monitor,1,109.99,2019-08-04 12:27:00,333 4th St, San Francisco,CA,94016 +245453,Flatscreen TV,1,300.0,2019-08-31 00:15:00,427 Sunset St, New York City,NY,10001 +245454,AA Batteries (4-pack),1,3.84,2019-08-27 19:42:00,536 1st St, Los Angeles,CA,90001 +245455,Lightning Charging Cable,1,14.95,2019-08-07 13:07:00,61 12th St, Dallas,TX,75001 +245456,AAA Batteries (4-pack),1,2.99,2019-08-07 00:12:00,353 Park St, Portland,OR,97035 +245457,AA Batteries (4-pack),1,3.84,2019-08-30 15:37:00,192 5th St, San Francisco,CA,94016 +245458,Apple Airpods Headphones,1,150.0,2019-08-28 22:18:00,127 Lake St, San Francisco,CA,94016 +245459,AA Batteries (4-pack),2,3.84,2019-08-05 13:24:00,900 Lakeview St, Atlanta,GA,30301 +245460,AA Batteries (4-pack),2,3.84,2019-08-31 15:07:00,987 South St, Austin,TX,73301 +245461,27in FHD Monitor,1,149.99,2019-08-24 08:39:00,737 Dogwood St, Los Angeles,CA,90001 +245462,AA Batteries (4-pack),1,3.84,2019-08-02 00:24:00,307 Park St, New York City,NY,10001 +245463,34in Ultrawide Monitor,1,379.99,2019-08-02 08:03:00,283 14th St, Dallas,TX,75001 +245464,Apple Airpods Headphones,1,150.0,2019-08-24 22:19:00,735 Elm St, San Francisco,CA,94016 +245465,AAA Batteries (4-pack),1,2.99,2019-08-23 15:44:00,299 River St, New York City,NY,10001 +245465,20in Monitor,1,109.99,2019-08-23 15:44:00,299 River St, New York City,NY,10001 +245466,USB-C Charging Cable,1,11.95,2019-08-26 15:18:00,632 Wilson St, Boston,MA,02215 +245467,Apple Airpods Headphones,1,150.0,2019-08-24 12:15:00,920 Dogwood St, Seattle,WA,98101 +245468,iPhone,1,700.0,2019-08-10 15:28:00,733 2nd St, San Francisco,CA,94016 +245468,Lightning Charging Cable,1,14.95,2019-08-10 15:28:00,733 2nd St, San Francisco,CA,94016 +245469,USB-C Charging Cable,1,11.95,2019-08-04 20:44:00,746 Washington St, New York City,NY,10001 +245470,Google Phone,1,600.0,2019-08-17 23:49:00,689 Lake St, Boston,MA,02215 +245471,Google Phone,1,600.0,2019-08-05 08:27:00,483 Lincoln St, New York City,NY,10001 +245472,Flatscreen TV,1,300.0,2019-08-09 11:26:00,164 13th St, Seattle,WA,98101 +245473,USB-C Charging Cable,1,11.95,2019-08-21 02:45:00,608 Adams St, San Francisco,CA,94016 +245474,20in Monitor,1,109.99,2019-08-28 17:34:00,119 11th St, San Francisco,CA,94016 +245475,Wired Headphones,1,11.99,2019-08-16 19:11:00,913 Dogwood St, San Francisco,CA,94016 +245476,27in FHD Monitor,1,149.99,2019-08-27 09:06:00,385 Lakeview St, San Francisco,CA,94016 +245477,27in FHD Monitor,1,149.99,2019-08-14 21:48:00,678 14th St, New York City,NY,10001 +245478,Google Phone,1,600.0,2019-08-17 18:33:00,119 Lincoln St, Boston,MA,02215 +245479,Macbook Pro Laptop,1,1700.0,2019-08-05 11:21:00,766 Sunset St, New York City,NY,10001 +245480,Flatscreen TV,1,300.0,2019-08-25 08:55:00,189 Church St, Portland,ME,04101 +245481,Lightning Charging Cable,1,14.95,2019-08-31 04:26:00,28 7th St, Seattle,WA,98101 +245482,AA Batteries (4-pack),1,3.84,2019-08-12 08:55:00,756 Hickory St, New York City,NY,10001 +245483,Wired Headphones,1,11.99,2019-08-14 19:48:00,401 Lincoln St, San Francisco,CA,94016 +245484,Bose SoundSport Headphones,1,99.99,2019-08-07 17:36:00,160 Madison St, New York City,NY,10001 +245485,Bose SoundSport Headphones,1,99.99,2019-08-23 07:13:00,198 2nd St, New York City,NY,10001 +245486,Flatscreen TV,1,300.0,2019-08-13 22:32:00,888 Main St, Los Angeles,CA,90001 +245487,Flatscreen TV,1,300.0,2019-08-12 11:40:00,453 Cedar St, Boston,MA,02215 +245488,USB-C Charging Cable,1,11.95,2019-08-16 13:53:00,743 10th St, New York City,NY,10001 +245489,USB-C Charging Cable,1,11.95,2019-08-25 11:05:00,550 Ridge St, New York City,NY,10001 +245490,iPhone,1,700.0,2019-08-23 10:33:00,767 Cedar St, Los Angeles,CA,90001 +245491,34in Ultrawide Monitor,1,379.99,2019-08-14 19:38:00,867 West St, Boston,MA,02215 +245492,Apple Airpods Headphones,1,150.0,2019-08-06 13:28:00,664 Cherry St, Portland,ME,04101 +245493,Lightning Charging Cable,1,14.95,2019-08-14 13:59:00,634 Sunset St, Austin,TX,73301 +245494,USB-C Charging Cable,1,11.95,2019-08-25 14:28:00,604 Adams St, New York City,NY,10001 +245495,Wired Headphones,1,11.99,2019-08-17 07:39:00,534 Pine St, Boston,MA,02215 +245496,Bose SoundSport Headphones,1,99.99,2019-08-12 14:43:00,60 13th St, Austin,TX,73301 +245497,iPhone,1,700.0,2019-08-14 16:39:00,741 North St, Seattle,WA,98101 +245497,Lightning Charging Cable,1,14.95,2019-08-14 16:39:00,741 North St, Seattle,WA,98101 +245498,27in FHD Monitor,1,149.99,2019-08-18 21:12:00,738 River St, New York City,NY,10001 +245499,AA Batteries (4-pack),1,3.84,2019-08-21 15:44:00,230 Ridge St, San Francisco,CA,94016 +245500,AA Batteries (4-pack),1,3.84,2019-08-19 09:32:00,129 14th St, San Francisco,CA,94016 +245501,34in Ultrawide Monitor,1,379.99,2019-08-17 22:04:00,320 Walnut St, Austin,TX,73301 +245502,AA Batteries (4-pack),1,3.84,2019-08-16 13:12:00,663 Highland St, Atlanta,GA,30301 +245503,Lightning Charging Cable,1,14.95,2019-08-28 18:01:00,453 9th St, New York City,NY,10001 +245504,Wired Headphones,1,11.99,2019-08-25 10:10:00,612 Spruce St, San Francisco,CA,94016 +245505,Lightning Charging Cable,1,14.95,2019-08-04 10:38:00,777 Jackson St, Seattle,WA,98101 +245506,AA Batteries (4-pack),2,3.84,2019-08-06 15:43:00,792 Adams St, Boston,MA,02215 +245507,Bose SoundSport Headphones,1,99.99,2019-08-10 11:30:00,37 Chestnut St, New York City,NY,10001 +245508,AA Batteries (4-pack),1,3.84,2019-08-16 10:59:00,875 Pine St, San Francisco,CA,94016 +245509,Apple Airpods Headphones,1,150.0,2019-08-19 23:19:00,902 Sunset St, New York City,NY,10001 +245510,27in FHD Monitor,1,149.99,2019-08-14 16:45:00,497 Highland St, Seattle,WA,98101 +245511,Bose SoundSport Headphones,1,99.99,2019-08-07 10:53:00,614 Cherry St, San Francisco,CA,94016 +245512,iPhone,1,700.0,2019-08-09 07:53:00,821 Park St, Los Angeles,CA,90001 +245513,27in FHD Monitor,1,149.99,2019-08-09 05:35:00,211 Walnut St, Dallas,TX,75001 +245514,AAA Batteries (4-pack),2,2.99,2019-08-17 19:36:00,703 River St, Dallas,TX,75001 +245515,AAA Batteries (4-pack),1,2.99,2019-08-03 17:55:00,557 Willow St, Dallas,TX,75001 +245516,AAA Batteries (4-pack),2,2.99,2019-08-12 14:40:00,982 South St, Atlanta,GA,30301 +245517,Apple Airpods Headphones,1,150.0,2019-08-17 12:51:00,558 West St, San Francisco,CA,94016 +245518,Bose SoundSport Headphones,1,99.99,2019-08-27 18:34:00,96 Dogwood St, Portland,OR,97035 +245519,AAA Batteries (4-pack),2,2.99,2019-08-08 17:40:00,650 Dogwood St, Dallas,TX,75001 +245520,USB-C Charging Cable,1,11.95,2019-08-29 03:02:00,748 Cedar St, San Francisco,CA,94016 +245521,34in Ultrawide Monitor,1,379.99,2019-08-13 00:59:00,300 Highland St, San Francisco,CA,94016 +245522,AA Batteries (4-pack),1,3.84,2019-08-05 22:57:00,522 7th St, San Francisco,CA,94016 +245523,27in 4K Gaming Monitor,1,389.99,2019-08-04 19:00:00,104 6th St, Los Angeles,CA,90001 +245524,LG Washing Machine,1,600.0,2019-08-28 14:27:00,214 7th St, Boston,MA,02215 +245525,USB-C Charging Cable,1,11.95,2019-08-16 13:24:00,415 Madison St, San Francisco,CA,94016 +245526,Bose SoundSport Headphones,1,99.99,2019-08-06 00:26:00,471 14th St, Boston,MA,02215 +245527,AAA Batteries (4-pack),2,2.99,2019-08-29 14:31:00,468 4th St, Los Angeles,CA,90001 +245528,27in 4K Gaming Monitor,1,389.99,2019-08-07 11:37:00,692 Main St, San Francisco,CA,94016 +245529,Wired Headphones,1,11.99,2019-08-19 22:37:00,735 Lake St, Los Angeles,CA,90001 +245530,Lightning Charging Cable,1,14.95,2019-08-20 19:07:00,595 Jefferson St, San Francisco,CA,94016 +245531,iPhone,1,700.0,2019-08-14 09:08:00,770 Maple St, Dallas,TX,75001 +245532,Apple Airpods Headphones,1,150.0,2019-08-31 11:25:00,924 Hickory St, Boston,MA,02215 +245533,AA Batteries (4-pack),1,3.84,2019-08-13 11:26:00,617 South St, San Francisco,CA,94016 +245534,Bose SoundSport Headphones,1,99.99,2019-08-01 17:40:00,271 Johnson St, Seattle,WA,98101 +245535,27in 4K Gaming Monitor,1,389.99,2019-08-18 19:13:00,564 Main St, San Francisco,CA,94016 +245536,Wired Headphones,1,11.99,2019-08-10 19:30:00,468 14th St, Atlanta,GA,30301 +245537,ThinkPad Laptop,1,999.99,2019-08-09 19:28:00,567 Jackson St, Dallas,TX,75001 +245538,Lightning Charging Cable,1,14.95,2019-08-15 19:37:00,976 Cedar St, San Francisco,CA,94016 +245539,AA Batteries (4-pack),1,3.84,2019-08-07 13:18:00,599 4th St, Portland,ME,04101 +245540,Bose SoundSport Headphones,1,99.99,2019-08-25 22:23:00,351 13th St, Boston,MA,02215 +245541,Wired Headphones,1,11.99,2019-08-27 13:37:00,986 Wilson St, Boston,MA,02215 +245542,Google Phone,1,600.0,2019-08-18 17:48:00,596 Park St, San Francisco,CA,94016 +245543,Vareebadd Phone,1,400.0,2019-08-14 06:06:00,496 Cedar St, Boston,MA,02215 +245544,iPhone,1,700.0,2019-08-07 06:11:00,371 Ridge St, Atlanta,GA,30301 +245545,Lightning Charging Cable,1,14.95,2019-08-06 14:15:00,441 Highland St, New York City,NY,10001 +245546,Macbook Pro Laptop,1,1700.0,2019-08-10 18:40:00,156 Park St, Boston,MA,02215 +245547,Bose SoundSport Headphones,1,99.99,2019-08-24 19:52:00,263 Willow St, Los Angeles,CA,90001 +245548,Lightning Charging Cable,1,14.95,2019-08-19 22:22:00,242 Forest St, New York City,NY,10001 +245549,Lightning Charging Cable,1,14.95,2019-08-28 21:02:00,908 Chestnut St, Los Angeles,CA,90001 +245550,Wired Headphones,1,11.99,2019-08-13 20:16:00,256 Forest St, Seattle,WA,98101 +245551,Bose SoundSport Headphones,1,99.99,2019-08-22 16:40:00,454 Adams St, San Francisco,CA,94016 +245551,Flatscreen TV,1,300.0,2019-08-22 16:40:00,454 Adams St, San Francisco,CA,94016 +245552,USB-C Charging Cable,1,11.95,2019-08-30 14:14:00,380 Lakeview St, Los Angeles,CA,90001 +245553,Bose SoundSport Headphones,1,99.99,2019-08-18 22:27:00,499 Jackson St, Seattle,WA,98101 +245554,Bose SoundSport Headphones,1,99.99,2019-08-03 11:39:00,780 Willow St, New York City,NY,10001 +245555,Vareebadd Phone,1,400.0,2019-08-02 11:32:00,928 9th St, Seattle,WA,98101 +245556,iPhone,1,700.0,2019-08-04 18:40:00,641 4th St, Atlanta,GA,30301 +245557,27in 4K Gaming Monitor,1,389.99,2019-08-21 09:59:00,329 Church St, Seattle,WA,98101 +245558,AAA Batteries (4-pack),3,2.99,2019-08-07 16:33:00,691 5th St, San Francisco,CA,94016 +245559,AA Batteries (4-pack),1,3.84,2019-08-11 15:05:00,565 6th St, Los Angeles,CA,90001 +245560,27in 4K Gaming Monitor,1,389.99,2019-08-04 19:40:00,969 Johnson St, Boston,MA,02215 +245561,iPhone,1,700.0,2019-08-17 14:27:00,445 North St, Los Angeles,CA,90001 +245562,AA Batteries (4-pack),1,3.84,2019-08-03 00:43:00,529 2nd St, Portland,OR,97035 +245563,AAA Batteries (4-pack),1,2.99,2019-08-11 18:09:00,444 14th St, New York City,NY,10001 +245564,Google Phone,1,600.0,2019-08-24 22:36:00,57 12th St, New York City,NY,10001 +245564,Bose SoundSport Headphones,1,99.99,2019-08-24 22:36:00,57 12th St, New York City,NY,10001 +245565,27in 4K Gaming Monitor,1,389.99,2019-08-28 21:46:00,495 2nd St, San Francisco,CA,94016 +245566,Wired Headphones,1,11.99,2019-08-06 20:50:00,327 North St, Atlanta,GA,30301 +245567,USB-C Charging Cable,1,11.95,2019-08-08 18:34:00,282 River St, Los Angeles,CA,90001 +245568,AAA Batteries (4-pack),3,2.99,2019-08-26 09:17:00,134 Church St, New York City,NY,10001 +245569,Flatscreen TV,1,300.0,2019-08-26 08:38:00,901 13th St, San Francisco,CA,94016 +245570,AAA Batteries (4-pack),1,2.99,2019-08-31 21:55:00,797 Meadow St, San Francisco,CA,94016 +245571,iPhone,1,700.0,2019-08-22 21:44:00,702 North St, New York City,NY,10001 +245572,Apple Airpods Headphones,1,150.0,2019-08-08 20:11:00,217 9th St, Boston,MA,02215 +245573,AAA Batteries (4-pack),1,2.99,2019-08-28 16:39:00,610 Cherry St, Seattle,WA,98101 +245574,Macbook Pro Laptop,1,1700.0,2019-08-20 17:19:00,572 Jackson St, New York City,NY,10001 +245575,Lightning Charging Cable,1,14.95,2019-08-18 00:55:00,870 Hill St, Los Angeles,CA,90001 +245576,AAA Batteries (4-pack),2,2.99,2019-08-23 08:25:00,12 Hill St, San Francisco,CA,94016 +245577,Macbook Pro Laptop,1,1700.0,2019-08-01 22:48:00,373 11th St, Austin,TX,73301 +245578,27in 4K Gaming Monitor,1,389.99,2019-08-27 09:17:00,291 Elm St, Dallas,TX,75001 +245579,Apple Airpods Headphones,1,150.0,2019-08-03 23:49:00,156 Hickory St, Portland,ME,04101 +245580,Wired Headphones,1,11.99,2019-08-03 17:44:00,760 Church St, Seattle,WA,98101 +245581,Flatscreen TV,1,300.0,2019-08-22 08:53:00,604 Washington St, Los Angeles,CA,90001 +245582,AAA Batteries (4-pack),2,2.99,2019-08-21 17:29:00,207 4th St, Dallas,TX,75001 +245583,USB-C Charging Cable,1,11.95,2019-08-22 12:07:00,879 Jefferson St, Atlanta,GA,30301 +245584,Apple Airpods Headphones,1,150.0,2019-08-20 19:55:00,322 Hill St, Boston,MA,02215 +245585,Lightning Charging Cable,1,14.95,2019-08-10 12:11:00,820 Madison St, San Francisco,CA,94016 +245586,Apple Airpods Headphones,1,150.0,2019-08-31 22:08:00,207 Dogwood St, Seattle,WA,98101 +245587,27in 4K Gaming Monitor,1,389.99,2019-08-14 16:18:00,34 13th St, Austin,TX,73301 +245588,Wired Headphones,1,11.99,2019-08-04 21:39:00,199 Pine St, Los Angeles,CA,90001 +245589,AA Batteries (4-pack),1,3.84,2019-08-13 05:37:00,926 13th St, Boston,MA,02215 +245590,Apple Airpods Headphones,1,150.0,2019-08-14 22:56:00,327 Pine St, New York City,NY,10001 +245591,AAA Batteries (4-pack),1,2.99,2019-08-02 18:52:00,686 6th St, San Francisco,CA,94016 +245592,AAA Batteries (4-pack),1,2.99,2019-08-23 21:28:00,528 7th St, Boston,MA,02215 +245593,Bose SoundSport Headphones,1,99.99,2019-08-19 08:10:00,16 6th St, Atlanta,GA,30301 +245594,Bose SoundSport Headphones,1,99.99,2019-08-25 22:43:00,153 Lakeview St, Portland,OR,97035 +245595,Wired Headphones,1,11.99,2019-08-24 18:38:00,744 North St, Atlanta,GA,30301 +245596,Bose SoundSport Headphones,1,99.99,2019-08-19 10:07:00,533 7th St, Los Angeles,CA,90001 +245597,Bose SoundSport Headphones,1,99.99,2019-08-20 16:49:00,965 Wilson St, Dallas,TX,75001 +245598,Flatscreen TV,1,300.0,2019-08-31 16:45:00,86 Maple St, Dallas,TX,75001 +245599,USB-C Charging Cable,1,11.95,2019-08-15 14:08:00,773 Church St, San Francisco,CA,94016 +245600,Google Phone,1,600.0,2019-08-04 08:53:00,389 5th St, Austin,TX,73301 +245600,Bose SoundSport Headphones,1,99.99,2019-08-04 08:53:00,389 5th St, Austin,TX,73301 +245601,USB-C Charging Cable,1,11.95,2019-08-25 09:54:00,363 Maple St, New York City,NY,10001 +245602,iPhone,1,700.0,2019-08-14 11:50:00,584 Lake St, New York City,NY,10001 +245602,Wired Headphones,1,11.99,2019-08-14 11:50:00,584 Lake St, New York City,NY,10001 +245603,AAA Batteries (4-pack),1,2.99,2019-08-12 19:52:00,470 Adams St, San Francisco,CA,94016 +245604,Lightning Charging Cable,1,14.95,2019-08-21 09:05:00,853 Ridge St, Seattle,WA,98101 +245605,AA Batteries (4-pack),1,3.84,2019-08-03 21:18:00,406 Wilson St, Boston,MA,02215 +245606,AA Batteries (4-pack),1,3.84,2019-08-23 13:51:00,318 Lakeview St, Portland,ME,04101 +245607,Lightning Charging Cable,1,14.95,2019-08-01 19:33:00,75 5th St, Portland,OR,97035 +245608,Wired Headphones,1,11.99,2019-08-07 16:00:00,976 Highland St, San Francisco,CA,94016 +245609,27in FHD Monitor,1,149.99,2019-08-07 22:14:00,237 Hickory St, Los Angeles,CA,90001 +245610,Lightning Charging Cable,1,14.95,2019-08-05 23:48:00,332 Dogwood St, Seattle,WA,98101 +245611,USB-C Charging Cable,1,11.95,2019-08-15 11:54:00,374 Lake St, Boston,MA,02215 +245612,Wired Headphones,1,11.99,2019-08-29 18:48:00,85 South St, San Francisco,CA,94016 +245613,27in 4K Gaming Monitor,1,389.99,2019-08-11 15:15:00,18 Highland St, Seattle,WA,98101 +245614,Wired Headphones,1,11.99,2019-08-29 21:30:00,830 Adams St, San Francisco,CA,94016 +245615,Google Phone,1,600.0,2019-08-27 11:05:00,538 Cedar St, Portland,OR,97035 +245615,USB-C Charging Cable,1,11.95,2019-08-27 11:05:00,538 Cedar St, Portland,OR,97035 +245616,Wired Headphones,1,11.99,2019-08-18 22:45:00,157 Willow St, San Francisco,CA,94016 +245617,27in FHD Monitor,1,149.99,2019-08-28 18:01:00,837 Chestnut St, San Francisco,CA,94016 +245618,27in FHD Monitor,1,149.99,2019-08-30 08:30:00,6 Sunset St, Portland,OR,97035 +245619,Flatscreen TV,1,300.0,2019-08-13 03:39:00,215 13th St, Los Angeles,CA,90001 +245620,ThinkPad Laptop,1,999.99,2019-08-24 16:59:00,536 Hill St, Seattle,WA,98101 +245621,Lightning Charging Cable,1,14.95,2019-08-09 22:33:00,564 8th St, Atlanta,GA,30301 +245622,USB-C Charging Cable,1,11.95,2019-08-06 11:00:00,406 Dogwood St, San Francisco,CA,94016 +245623,Lightning Charging Cable,1,14.95,2019-08-05 18:44:00,68 Lakeview St, Atlanta,GA,30301 +245624,AAA Batteries (4-pack),1,2.99,2019-08-14 14:10:00,189 Lake St, San Francisco,CA,94016 +245625,AAA Batteries (4-pack),1,2.99,2019-08-28 09:49:00,198 Ridge St, Atlanta,GA,30301 +245626,USB-C Charging Cable,2,11.95,2019-08-18 11:50:00,887 Wilson St, San Francisco,CA,94016 +245627,AAA Batteries (4-pack),1,2.99,2019-08-08 04:22:00,911 11th St, New York City,NY,10001 +245628,Wired Headphones,1,11.99,2019-08-02 21:49:00,640 Park St, Portland,OR,97035 +245629,27in 4K Gaming Monitor,1,389.99,2019-08-25 18:55:00,803 Wilson St, Seattle,WA,98101 +245630,Lightning Charging Cable,1,14.95,2019-08-09 13:38:00,981 Lakeview St, Portland,OR,97035 +245631,Lightning Charging Cable,1,14.95,2019-08-03 11:59:00,61 Sunset St, San Francisco,CA,94016 +245632,Lightning Charging Cable,1,14.95,2019-08-13 10:38:00,658 Jackson St, Portland,OR,97035 +245633,USB-C Charging Cable,1,11.95,2019-08-12 16:12:00,424 River St, Los Angeles,CA,90001 +245634,Lightning Charging Cable,1,14.95,2019-08-26 12:21:00,421 7th St, Boston,MA,02215 +245635,Lightning Charging Cable,1,14.95,2019-08-02 17:54:00,620 5th St, New York City,NY,10001 +245636,Lightning Charging Cable,1,14.95,2019-08-19 21:07:00,793 12th St, Dallas,TX,75001 +245637,Bose SoundSport Headphones,1,99.99,2019-08-07 21:06:00,473 Johnson St, Seattle,WA,98101 +245638,AAA Batteries (4-pack),1,2.99,2019-08-20 11:31:00,724 Dogwood St, Austin,TX,73301 +245639,20in Monitor,1,109.99,2019-08-19 12:17:00,430 Walnut St, Los Angeles,CA,90001 +245640,USB-C Charging Cable,1,11.95,2019-08-03 20:30:00,413 North St, Seattle,WA,98101 +245641,34in Ultrawide Monitor,1,379.99,2019-08-15 15:37:00,777 1st St, San Francisco,CA,94016 +245642,AA Batteries (4-pack),1,3.84,2019-08-21 18:33:00,681 Chestnut St, Portland,ME,04101 +245643,AA Batteries (4-pack),1,3.84,2019-08-06 20:10:00,74 8th St, San Francisco,CA,94016 +245644,USB-C Charging Cable,1,11.95,2019-08-10 22:03:00,70 Forest St, Seattle,WA,98101 +245645,Lightning Charging Cable,1,14.95,2019-08-30 18:37:00,699 River St, Dallas,TX,75001 +245646,20in Monitor,1,109.99,2019-08-13 11:21:00,576 Chestnut St, Los Angeles,CA,90001 +245647,27in FHD Monitor,1,149.99,2019-08-01 13:18:00,894 Highland St, Dallas,TX,75001 +245648,AA Batteries (4-pack),1,3.84,2019-08-04 22:48:00,858 Main St, Los Angeles,CA,90001 +245649,USB-C Charging Cable,1,11.95,2019-08-12 13:01:00,697 Lakeview St, San Francisco,CA,94016 +245650,27in FHD Monitor,1,149.99,2019-08-31 09:40:00,673 5th St, Atlanta,GA,30301 +245651,Lightning Charging Cable,1,14.95,2019-08-27 20:02:00,779 Hickory St, Los Angeles,CA,90001 +245652,27in 4K Gaming Monitor,1,389.99,2019-08-17 12:12:00,374 River St, San Francisco,CA,94016 +245653,ThinkPad Laptop,1,999.99,2019-08-14 18:01:00,986 7th St, San Francisco,CA,94016 +245654,AA Batteries (4-pack),1,3.84,2019-08-08 13:55:00,867 Center St, San Francisco,CA,94016 +245655,USB-C Charging Cable,1,11.95,2019-08-26 15:24:00,413 West St, Boston,MA,02215 +245656,AA Batteries (4-pack),1,3.84,2019-08-07 19:24:00,938 13th St, New York City,NY,10001 +245657,Bose SoundSport Headphones,1,99.99,2019-08-02 17:00:00,566 Maple St, New York City,NY,10001 +245658,AAA Batteries (4-pack),1,2.99,2019-08-18 12:05:00,791 4th St, Boston,MA,02215 +245659,USB-C Charging Cable,1,11.95,2019-08-16 12:20:00,11 Hickory St, Portland,OR,97035 +245660,27in FHD Monitor,1,149.99,2019-08-25 22:55:00,407 Dogwood St, Atlanta,GA,30301 +245661,Bose SoundSport Headphones,1,99.99,2019-08-23 14:53:00,572 Center St, San Francisco,CA,94016 +245662,Lightning Charging Cable,1,14.95,2019-08-28 15:13:00,238 South St, New York City,NY,10001 +245663,Lightning Charging Cable,1,14.95,2019-08-27 16:58:00,397 Johnson St, Los Angeles,CA,90001 +245664,AAA Batteries (4-pack),1,2.99,2019-08-30 21:21:00,84 1st St, Atlanta,GA,30301 +245665,AA Batteries (4-pack),1,3.84,2019-08-26 18:41:00,740 North St, Portland,OR,97035 +245666,Google Phone,1,600.0,2019-08-03 16:20:00,643 West St, Boston,MA,02215 +245667,AAA Batteries (4-pack),3,2.99,2019-08-03 11:21:00,378 Highland St, Austin,TX,73301 +245668,Bose SoundSport Headphones,1,99.99,2019-08-01 11:26:00,692 Cedar St, Dallas,TX,75001 +245669,Macbook Pro Laptop,1,1700.0,2019-08-30 08:29:00,878 Cedar St, San Francisco,CA,94016 +245670,Vareebadd Phone,1,400.0,2019-08-03 12:52:00,536 Spruce St, Boston,MA,02215 +245671,Lightning Charging Cable,1,14.95,2019-08-09 10:07:00,150 Hill St, Dallas,TX,75001 +245672,AAA Batteries (4-pack),2,2.99,2019-08-12 15:53:00,243 Pine St, Boston,MA,02215 +245673,Lightning Charging Cable,1,14.95,2019-08-27 18:39:00,417 Jefferson St, Dallas,TX,75001 +245674,Apple Airpods Headphones,1,150.0,2019-08-12 14:35:00,404 Center St, San Francisco,CA,94016 +245675,USB-C Charging Cable,1,11.95,2019-08-27 14:27:00,63 Hickory St, San Francisco,CA,94016 +245676,USB-C Charging Cable,1,11.95,2019-08-14 15:06:00,798 Hill St, San Francisco,CA,94016 +245677,AAA Batteries (4-pack),3,2.99,2019-08-01 18:31:00,273 11th St, Seattle,WA,98101 +245678,USB-C Charging Cable,1,11.95,2019-08-03 15:44:00,490 13th St, New York City,NY,10001 +245679,AAA Batteries (4-pack),4,2.99,2019-08-22 09:34:00,255 9th St, Dallas,TX,75001 +245680,Bose SoundSport Headphones,1,99.99,2019-08-09 19:54:00,962 6th St, Atlanta,GA,30301 +245681,Google Phone,1,600.0,2019-08-19 14:52:00,591 14th St, New York City,NY,10001 +245682,27in 4K Gaming Monitor,1,389.99,2019-08-24 15:49:00,81 South St, Los Angeles,CA,90001 +245683,Lightning Charging Cable,1,14.95,2019-08-24 12:53:00,229 Dogwood St, Seattle,WA,98101 +245684,AAA Batteries (4-pack),1,2.99,2019-08-01 10:52:00,190 Center St, San Francisco,CA,94016 +245685,AAA Batteries (4-pack),1,2.99,2019-08-03 22:29:00,65 Cedar St, San Francisco,CA,94016 +245686,Google Phone,1,600.0,2019-08-10 18:15:00,615 River St, San Francisco,CA,94016 +245687,USB-C Charging Cable,1,11.95,2019-08-19 18:49:00,613 Lakeview St, Portland,OR,97035 +245688,Lightning Charging Cable,1,14.95,2019-08-16 09:12:00,612 7th St, Portland,OR,97035 +245689,34in Ultrawide Monitor,1,379.99,2019-08-30 08:20:00,794 11th St, Seattle,WA,98101 +245690,27in 4K Gaming Monitor,1,389.99,2019-08-28 22:14:00,648 Cherry St, Portland,OR,97035 +245691,AA Batteries (4-pack),1,3.84,2019-08-15 21:10:00,864 Cedar St, Austin,TX,73301 +245692,Apple Airpods Headphones,1,150.0,2019-08-24 22:37:00,902 Forest St, Atlanta,GA,30301 +245693,27in FHD Monitor,1,149.99,2019-08-18 14:41:00,125 6th St, Dallas,TX,75001 +245694,AA Batteries (4-pack),1,3.84,2019-08-16 14:51:00,111 11th St, San Francisco,CA,94016 +245695,AAA Batteries (4-pack),2,2.99,2019-08-07 09:34:00,905 Maple St, Dallas,TX,75001 +245696,Vareebadd Phone,1,400.0,2019-08-11 19:39:00,829 Park St, San Francisco,CA,94016 +245697,iPhone,1,700.0,2019-08-24 16:58:00,824 Walnut St, Portland,ME,04101 +245697,Lightning Charging Cable,1,14.95,2019-08-24 16:58:00,824 Walnut St, Portland,ME,04101 +245697,Wired Headphones,1,11.99,2019-08-24 16:58:00,824 Walnut St, Portland,ME,04101 +245698,Bose SoundSport Headphones,1,99.99,2019-08-04 11:01:00,990 12th St, San Francisco,CA,94016 +245699,Lightning Charging Cable,1,14.95,2019-08-07 23:57:00,506 Spruce St, Los Angeles,CA,90001 +245700,Lightning Charging Cable,1,14.95,2019-08-29 11:14:00,803 Cedar St, Boston,MA,02215 +245701,Google Phone,1,600.0,2019-08-01 23:16:00,802 Chestnut St, Atlanta,GA,30301 +245702,AAA Batteries (4-pack),1,2.99,2019-08-26 12:07:00,292 Washington St, Boston,MA,02215 +245703,20in Monitor,1,109.99,2019-08-12 16:20:00,780 Hill St, New York City,NY,10001 +245704,Bose SoundSport Headphones,1,99.99,2019-08-22 11:58:00,960 12th St, San Francisco,CA,94016 +245704,AA Batteries (4-pack),1,3.84,2019-08-22 11:58:00,960 12th St, San Francisco,CA,94016 +245705,Lightning Charging Cable,1,14.95,2019-08-19 11:46:00,343 14th St, San Francisco,CA,94016 +245706,USB-C Charging Cable,1,11.95,2019-08-08 16:22:00,553 Johnson St, Seattle,WA,98101 +245707,USB-C Charging Cable,1,11.95,2019-08-08 07:38:00,716 Meadow St, Austin,TX,73301 +245708,Wired Headphones,1,11.99,2019-08-07 10:43:00,319 Cherry St, San Francisco,CA,94016 +245709,Bose SoundSport Headphones,1,99.99,2019-08-23 19:35:00,732 Highland St, Boston,MA,02215 +245710,Apple Airpods Headphones,1,150.0,2019-08-25 19:11:00,110 Chestnut St, San Francisco,CA,94016 +245711,27in FHD Monitor,1,149.99,2019-08-11 18:06:00,346 Maple St, Los Angeles,CA,90001 +245712,Apple Airpods Headphones,1,150.0,2019-09-01 02:48:00,208 Dogwood St, Boston,MA,02215 +245713,Macbook Pro Laptop,1,1700.0,2019-08-26 10:43:00,763 Maple St, New York City,NY,10001 +245714,34in Ultrawide Monitor,1,379.99,2019-08-25 06:05:00,107 14th St, Boston,MA,02215 +245715,AA Batteries (4-pack),1,3.84,2019-08-08 15:44:00,948 Hill St, Atlanta,GA,30301 +245716,iPhone,1,700.0,2019-08-29 19:13:00,554 Johnson St, Los Angeles,CA,90001 +245717,iPhone,1,700.0,2019-08-11 19:19:00,851 Lincoln St, New York City,NY,10001 +245718,Flatscreen TV,1,300.0,2019-08-29 16:32:00,507 Hill St, San Francisco,CA,94016 +245719,USB-C Charging Cable,2,11.95,2019-08-25 14:24:00,22 Walnut St, San Francisco,CA,94016 +245720,AAA Batteries (4-pack),1,2.99,2019-08-21 19:39:00,455 Forest St, Austin,TX,73301 +245721,AA Batteries (4-pack),3,3.84,2019-08-31 07:24:00,570 Sunset St, San Francisco,CA,94016 +245722,27in 4K Gaming Monitor,1,389.99,2019-08-05 21:53:00,927 10th St, Atlanta,GA,30301 +245723,AAA Batteries (4-pack),1,2.99,2019-08-13 16:07:00,354 North St, Los Angeles,CA,90001 +245724,Lightning Charging Cable,1,14.95,2019-08-17 15:06:00,171 Hickory St, Boston,MA,02215 +245725,27in 4K Gaming Monitor,1,389.99,2019-08-27 21:23:00,877 10th St, San Francisco,CA,94016 +245726,AA Batteries (4-pack),1,3.84,2019-08-22 21:40:00,187 Hill St, Portland,OR,97035 +245727,iPhone,1,700.0,2019-08-05 13:58:00,150 10th St, Seattle,WA,98101 +245728,AA Batteries (4-pack),1,3.84,2019-08-14 18:09:00,255 Cedar St, San Francisco,CA,94016 +245729,AAA Batteries (4-pack),3,2.99,2019-08-23 23:45:00,552 Maple St, San Francisco,CA,94016 +245730,34in Ultrawide Monitor,1,379.99,2019-08-26 15:02:00,576 Ridge St, San Francisco,CA,94016 +245731,Apple Airpods Headphones,1,150.0,2019-08-13 20:46:00,105 River St, San Francisco,CA,94016 +245732,Flatscreen TV,1,300.0,2019-08-14 03:21:00,549 North St, San Francisco,CA,94016 +245733,Macbook Pro Laptop,1,1700.0,2019-08-12 15:55:00,387 Forest St, San Francisco,CA,94016 +245734,USB-C Charging Cable,1,11.95,2019-08-08 18:29:00,882 11th St, San Francisco,CA,94016 +245735,AA Batteries (4-pack),1,3.84,2019-08-13 11:12:00,312 Hickory St, New York City,NY,10001 +245736,34in Ultrawide Monitor,1,379.99,2019-08-07 16:00:00,954 Madison St, Los Angeles,CA,90001 +245737,AA Batteries (4-pack),1,3.84,2019-08-01 14:06:00,861 Park St, Seattle,WA,98101 +245738,27in FHD Monitor,1,149.99,2019-08-04 11:40:00,186 South St, Austin,TX,73301 +245739,AAA Batteries (4-pack),2,2.99,2019-08-06 12:44:00,44 Church St, Austin,TX,73301 +245740,Wired Headphones,1,11.99,2019-08-24 06:58:00,642 Park St, Boston,MA,02215 +245741,Vareebadd Phone,1,400.0,2019-08-11 00:15:00,917 10th St, Atlanta,GA,30301 +245742,20in Monitor,1,109.99,2019-08-17 16:39:00,323 North St, Seattle,WA,98101 +245743,USB-C Charging Cable,1,11.95,2019-08-14 09:58:00,619 Ridge St, Seattle,WA,98101 +245744,USB-C Charging Cable,1,11.95,2019-08-14 11:48:00,665 1st St, New York City,NY,10001 +245745,AAA Batteries (4-pack),3,2.99,2019-08-21 14:32:00,170 Cedar St, New York City,NY,10001 +245746,AAA Batteries (4-pack),1,2.99,2019-08-10 15:49:00,501 11th St, San Francisco,CA,94016 +245747,Lightning Charging Cable,1,14.95,2019-08-18 01:11:00,873 5th St, San Francisco,CA,94016 +245748,AAA Batteries (4-pack),1,2.99,2019-08-05 14:51:00,310 North St, New York City,NY,10001 +245749,AAA Batteries (4-pack),2,2.99,2019-08-08 09:32:00,723 5th St, Seattle,WA,98101 +245750,AAA Batteries (4-pack),1,2.99,2019-08-08 17:05:00,219 Center St, Los Angeles,CA,90001 +245751,Lightning Charging Cable,1,14.95,2019-08-17 18:05:00,809 7th St, Atlanta,GA,30301 +245752,Flatscreen TV,1,300.0,2019-08-18 12:10:00,868 Cedar St, Dallas,TX,75001 +245753,27in FHD Monitor,1,149.99,2019-08-26 14:06:00,37 6th St, San Francisco,CA,94016 +245754,Lightning Charging Cable,1,14.95,2019-08-31 06:31:00,692 Spruce St, Boston,MA,02215 +245755,Lightning Charging Cable,1,14.95,2019-08-08 21:44:00,540 Highland St, New York City,NY,10001 +245756,20in Monitor,1,109.99,2019-08-03 15:14:00,11 Washington St, Austin,TX,73301 +245757,Google Phone,1,600.0,2019-08-14 21:49:00,937 West St, Los Angeles,CA,90001 +245758,AA Batteries (4-pack),2,3.84,2019-08-04 11:43:00,897 11th St, Boston,MA,02215 +245759,AA Batteries (4-pack),1,3.84,2019-08-30 00:46:00,66 Washington St, Los Angeles,CA,90001 +245760,Lightning Charging Cable,1,14.95,2019-08-07 18:11:00,116 Ridge St, Dallas,TX,75001 +245761,iPhone,1,700.0,2019-08-30 19:14:00,341 Sunset St, Seattle,WA,98101 +245762,34in Ultrawide Monitor,1,379.99,2019-08-15 14:21:00,929 Washington St, Boston,MA,02215 +245763,AAA Batteries (4-pack),1,2.99,2019-08-01 20:44:00,547 13th St, Boston,MA,02215 +245763,Wired Headphones,1,11.99,2019-08-01 20:44:00,547 13th St, Boston,MA,02215 +245764,Flatscreen TV,1,300.0,2019-08-04 17:39:00,837 7th St, New York City,NY,10001 +245765,Bose SoundSport Headphones,1,99.99,2019-08-28 11:29:00,371 4th St, Boston,MA,02215 +245766,AA Batteries (4-pack),1,3.84,2019-08-26 11:14:00,164 Lake St, New York City,NY,10001 +245767,AAA Batteries (4-pack),1,2.99,2019-08-17 14:16:00,330 Spruce St, Seattle,WA,98101 +245768,USB-C Charging Cable,3,11.95,2019-08-31 08:58:00,405 2nd St, San Francisco,CA,94016 +245769,ThinkPad Laptop,1,999.99,2019-08-15 10:51:00,883 9th St, New York City,NY,10001 +245770,Wired Headphones,1,11.99,2019-08-24 10:26:00,771 Park St, Los Angeles,CA,90001 +245771,Wired Headphones,1,11.99,2019-08-25 23:48:00,592 11th St, Portland,OR,97035 +245772,USB-C Charging Cable,1,11.95,2019-08-08 10:54:00,13 River St, Los Angeles,CA,90001 +245773,AA Batteries (4-pack),1,3.84,2019-08-14 06:46:00,172 Cedar St, San Francisco,CA,94016 +245774,Wired Headphones,1,11.99,2019-08-03 11:00:00,39 Adams St, Los Angeles,CA,90001 +245775,Bose SoundSport Headphones,1,99.99,2019-08-10 18:58:00,27 11th St, San Francisco,CA,94016 +245776,34in Ultrawide Monitor,1,379.99,2019-08-25 21:44:00,329 Wilson St, San Francisco,CA,94016 +245777,27in FHD Monitor,1,149.99,2019-08-23 10:14:00,51 Main St, New York City,NY,10001 +245778,AA Batteries (4-pack),1,3.84,2019-08-04 14:44:00,591 9th St, Los Angeles,CA,90001 +245779,AAA Batteries (4-pack),1,2.99,2019-08-02 22:43:00,643 8th St, Austin,TX,73301 +245780,Vareebadd Phone,1,400.0,2019-08-29 18:04:00,488 Willow St, Atlanta,GA,30301 +245781,Lightning Charging Cable,1,14.95,2019-08-29 10:10:00,51 Adams St, Los Angeles,CA,90001 +245782,ThinkPad Laptop,1,999.99,2019-08-14 16:49:00,333 Church St, San Francisco,CA,94016 +245783,27in FHD Monitor,1,149.99,2019-08-19 23:21:00,403 Pine St, Seattle,WA,98101 +245784,AA Batteries (4-pack),1,3.84,2019-08-09 20:30:00,544 Center St, Seattle,WA,98101 +245785,34in Ultrawide Monitor,1,379.99,2019-08-24 19:57:00,478 6th St, San Francisco,CA,94016 +245786,Lightning Charging Cable,1,14.95,2019-08-16 18:13:00,832 Adams St, Los Angeles,CA,90001 +245787,34in Ultrawide Monitor,1,379.99,2019-08-21 04:11:00,589 8th St, San Francisco,CA,94016 +245788,20in Monitor,1,109.99,2019-08-03 11:44:00,619 Elm St, Dallas,TX,75001 +245789,Wired Headphones,1,11.99,2019-08-12 17:04:00,130 Highland St, Seattle,WA,98101 +245790,AAA Batteries (4-pack),1,2.99,2019-08-05 15:42:00,332 Hill St, Dallas,TX,75001 +245791,USB-C Charging Cable,1,11.95,2019-08-05 21:33:00,549 Meadow St, Boston,MA,02215 +245792,Bose SoundSport Headphones,1,99.99,2019-08-11 22:46:00,243 10th St, Atlanta,GA,30301 +245793,USB-C Charging Cable,1,11.95,2019-08-07 10:26:00,106 12th St, San Francisco,CA,94016 +245794,USB-C Charging Cable,1,11.95,2019-08-03 02:29:00,554 Dogwood St, New York City,NY,10001 +245795,AAA Batteries (4-pack),2,2.99,2019-08-12 15:56:00,763 Adams St, Dallas,TX,75001 +245796,USB-C Charging Cable,1,11.95,2019-08-28 19:26:00,995 6th St, Los Angeles,CA,90001 +245797,AAA Batteries (4-pack),3,2.99,2019-08-01 18:57:00,829 14th St, New York City,NY,10001 +245798,Lightning Charging Cable,1,14.95,2019-08-29 07:43:00,646 Sunset St, Los Angeles,CA,90001 +245799,Lightning Charging Cable,1,14.95,2019-08-10 11:41:00,621 Park St, Dallas,TX,75001 +245800,USB-C Charging Cable,1,11.95,2019-08-10 16:20:00,220 North St, New York City,NY,10001 +245801,AAA Batteries (4-pack),1,2.99,2019-08-26 13:26:00,874 Park St, New York City,NY,10001 +245802,AAA Batteries (4-pack),2,2.99,2019-08-05 00:15:00,715 Madison St, Los Angeles,CA,90001 +245803,Apple Airpods Headphones,1,150.0,2019-08-13 06:19:00,630 1st St, Los Angeles,CA,90001 +245803,USB-C Charging Cable,1,11.95,2019-08-13 06:19:00,630 1st St, Los Angeles,CA,90001 +245804,AAA Batteries (4-pack),1,2.99,2019-08-09 09:45:00,55 Hill St, New York City,NY,10001 +245805,AAA Batteries (4-pack),5,2.99,2019-08-21 20:07:00,618 Jackson St, Los Angeles,CA,90001 +245806,AA Batteries (4-pack),1,3.84,2019-08-01 23:48:00,644 Jackson St, San Francisco,CA,94016 +245807,Google Phone,1,600.0,2019-08-28 10:27:00,492 West St, Dallas,TX,75001 +245808,AA Batteries (4-pack),1,3.84,2019-08-06 08:21:00,515 River St, Portland,OR,97035 +245809,Wired Headphones,1,11.99,2019-08-16 15:04:00,933 Highland St, Los Angeles,CA,90001 +245810,Lightning Charging Cable,1,14.95,2019-08-05 21:33:00,7 Church St, Dallas,TX,75001 +245811,Apple Airpods Headphones,1,150.0,2019-08-12 11:40:00,511 Walnut St, Seattle,WA,98101 +245812,Lightning Charging Cable,1,14.95,2019-08-09 15:53:00,369 Walnut St, Seattle,WA,98101 +245813,ThinkPad Laptop,1,999.99,2019-08-28 17:59:00,391 Cherry St, Los Angeles,CA,90001 +245814,Lightning Charging Cable,1,14.95,2019-08-26 21:02:00,706 Lakeview St, San Francisco,CA,94016 +245815,AAA Batteries (4-pack),1,2.99,2019-08-16 13:26:00,413 10th St, San Francisco,CA,94016 +245816,Flatscreen TV,1,300.0,2019-08-17 22:47:00,578 Jackson St, Portland,OR,97035 +245817,Wired Headphones,1,11.99,2019-08-07 13:04:00,231 Cedar St, Boston,MA,02215 +245818,34in Ultrawide Monitor,1,379.99,2019-08-22 20:21:00,239 4th St, Los Angeles,CA,90001 +245819,AA Batteries (4-pack),1,3.84,2019-08-16 15:21:00,525 Elm St, San Francisco,CA,94016 +245820,34in Ultrawide Monitor,1,379.99,2019-08-09 12:00:00,733 Forest St, Boston,MA,02215 +245821,Google Phone,1,600.0,2019-08-12 12:50:00,592 13th St, New York City,NY,10001 +245822,27in FHD Monitor,1,149.99,2019-08-01 22:26:00,551 Madison St, New York City,NY,10001 +245823,Apple Airpods Headphones,1,150.0,2019-08-21 13:01:00,431 Ridge St, Boston,MA,02215 +245824,Wired Headphones,1,11.99,2019-08-13 07:14:00,727 Meadow St, San Francisco,CA,94016 +245825,Lightning Charging Cable,1,14.95,2019-08-28 07:39:00,871 Madison St, Los Angeles,CA,90001 +245826,34in Ultrawide Monitor,1,379.99,2019-08-24 22:35:00,70 Lake St, San Francisco,CA,94016 +245827,USB-C Charging Cable,1,11.95,2019-08-27 21:40:00,514 2nd St, San Francisco,CA,94016 +245828,Bose SoundSport Headphones,1,99.99,2019-08-19 08:00:00,891 5th St, New York City,NY,10001 +245829,AAA Batteries (4-pack),1,2.99,2019-08-29 11:42:00,323 Willow St, Seattle,WA,98101 +245830,AA Batteries (4-pack),1,3.84,2019-08-14 17:56:00,273 River St, San Francisco,CA,94016 +245831,Macbook Pro Laptop,1,1700.0,2019-08-29 19:26:00,482 13th St, Portland,OR,97035 +245832,AAA Batteries (4-pack),2,2.99,2019-08-25 15:20:00,461 River St, Los Angeles,CA,90001 +245833,Macbook Pro Laptop,1,1700.0,2019-08-11 09:18:00,391 2nd St, Dallas,TX,75001 +245834,LG Washing Machine,1,600.0,2019-08-05 21:47:00,540 Dogwood St, Boston,MA,02215 +245835,AA Batteries (4-pack),1,3.84,2019-08-11 19:12:00,542 14th St, Portland,OR,97035 +245836,Lightning Charging Cable,1,14.95,2019-08-29 11:22:00,611 West St, New York City,NY,10001 +245837,Bose SoundSport Headphones,1,99.99,2019-08-16 00:19:00,669 8th St, San Francisco,CA,94016 +245838,34in Ultrawide Monitor,1,379.99,2019-08-08 09:22:00,771 9th St, San Francisco,CA,94016 +245839,Apple Airpods Headphones,1,150.0,2019-08-19 12:54:00,807 1st St, Los Angeles,CA,90001 +245840,Flatscreen TV,1,300.0,2019-08-05 12:05:00,434 Walnut St, San Francisco,CA,94016 +245840,Lightning Charging Cable,1,14.95,2019-08-05 12:05:00,434 Walnut St, San Francisco,CA,94016 +245841,27in FHD Monitor,1,149.99,2019-08-07 21:06:00,369 Dogwood St, Los Angeles,CA,90001 +245842,Lightning Charging Cable,1,14.95,2019-08-04 11:37:00,949 Elm St, San Francisco,CA,94016 +245843,ThinkPad Laptop,1,999.99,2019-08-29 12:59:00,573 Meadow St, Portland,OR,97035 +245844,27in 4K Gaming Monitor,1,389.99,2019-08-12 13:33:00,591 Hill St, Boston,MA,02215 +245845,20in Monitor,1,109.99,2019-08-04 13:03:00,544 Washington St, New York City,NY,10001 +245846,Lightning Charging Cable,1,14.95,2019-08-05 17:12:00,936 Forest St, Atlanta,GA,30301 +245847,Lightning Charging Cable,1,14.95,2019-08-28 02:07:00,873 Center St, New York City,NY,10001 +245848,AAA Batteries (4-pack),1,2.99,2019-08-30 16:58:00,638 Cedar St, Boston,MA,02215 +245849,27in FHD Monitor,1,149.99,2019-08-28 20:29:00,506 Center St, Boston,MA,02215 +245850,Flatscreen TV,1,300.0,2019-08-08 06:33:00,274 Hickory St, Dallas,TX,75001 +245851,AA Batteries (4-pack),1,3.84,2019-08-10 23:52:00,865 Park St, San Francisco,CA,94016 +245851,Bose SoundSport Headphones,1,99.99,2019-08-10 23:52:00,865 Park St, San Francisco,CA,94016 +245852,Bose SoundSport Headphones,1,99.99,2019-08-19 12:23:00,154 North St, Boston,MA,02215 +245853,27in FHD Monitor,1,149.99,2019-08-15 15:12:00,774 Washington St, San Francisco,CA,94016 +245854,27in FHD Monitor,1,149.99,2019-08-19 10:17:00,945 11th St, New York City,NY,10001 +245855,AA Batteries (4-pack),1,3.84,2019-08-10 14:23:00,305 Highland St, Austin,TX,73301 +245856,AAA Batteries (4-pack),2,2.99,2019-08-17 23:15:00,540 Highland St, Austin,TX,73301 +245857,Google Phone,1,600.0,2019-08-19 18:49:00,714 Wilson St, Los Angeles,CA,90001 +245858,USB-C Charging Cable,1,11.95,2019-08-03 13:52:00,883 Cedar St, New York City,NY,10001 +245859,Bose SoundSport Headphones,1,99.99,2019-08-20 20:07:00,864 5th St, San Francisco,CA,94016 +245860,Apple Airpods Headphones,1,150.0,2019-08-05 10:27:00,689 7th St, New York City,NY,10001 +245861,iPhone,1,700.0,2019-08-08 15:13:00,285 6th St, Seattle,WA,98101 +245862,USB-C Charging Cable,1,11.95,2019-08-24 12:20:00,526 Jackson St, Los Angeles,CA,90001 +245863,34in Ultrawide Monitor,1,379.99,2019-08-08 20:11:00,403 Park St, San Francisco,CA,94016 +245864,Bose SoundSport Headphones,1,99.99,2019-08-29 19:57:00,678 8th St, Boston,MA,02215 +245865,ThinkPad Laptop,1,999.99,2019-08-19 10:20:00,341 14th St, Atlanta,GA,30301 +245866,Lightning Charging Cable,1,14.95,2019-08-30 20:44:00,553 Hill St, Seattle,WA,98101 +245867,ThinkPad Laptop,1,999.99,2019-08-30 14:20:00,870 Lincoln St, Dallas,TX,75001 +245868,USB-C Charging Cable,1,11.95,2019-08-30 16:56:00,677 Cedar St, Dallas,TX,75001 +245869,AAA Batteries (4-pack),2,2.99,2019-08-14 00:48:00,593 2nd St, Dallas,TX,75001 +245870,Apple Airpods Headphones,1,150.0,2019-08-13 19:24:00,609 Dogwood St, San Francisco,CA,94016 +245871,Apple Airpods Headphones,1,150.0,2019-08-05 23:00:00,627 Cedar St, Seattle,WA,98101 +245872,ThinkPad Laptop,1,999.99,2019-08-19 16:59:00,230 Center St, Atlanta,GA,30301 +245873,Lightning Charging Cable,1,14.95,2019-08-17 21:51:00,367 7th St, Atlanta,GA,30301 +245874,USB-C Charging Cable,1,11.95,2019-08-06 21:06:00,381 Pine St, San Francisco,CA,94016 +245875,Lightning Charging Cable,1,14.95,2019-08-22 20:45:00,837 Sunset St, Austin,TX,73301 +245876,Wired Headphones,1,11.99,2019-08-28 14:03:00,582 Maple St, San Francisco,CA,94016 +245877,Bose SoundSport Headphones,1,99.99,2019-08-14 17:08:00,480 Pine St, Seattle,WA,98101 +245878,AAA Batteries (4-pack),1,2.99,2019-08-27 10:27:00,949 Dogwood St, San Francisco,CA,94016 +245879,iPhone,1,700.0,2019-08-11 07:19:00,503 River St, Seattle,WA,98101 +245880,AA Batteries (4-pack),1,3.84,2019-08-16 09:37:00,440 Cedar St, San Francisco,CA,94016 +245881,Lightning Charging Cable,1,14.95,2019-08-24 09:30:00,80 1st St, Austin,TX,73301 +245882,AAA Batteries (4-pack),2,2.99,2019-08-09 14:28:00,445 Hickory St, Seattle,WA,98101 +245883,Lightning Charging Cable,1,14.95,2019-08-12 10:10:00,369 10th St, San Francisco,CA,94016 +245884,Bose SoundSport Headphones,1,99.99,2019-08-14 21:38:00,74 Pine St, Boston,MA,02215 +245885,Bose SoundSport Headphones,1,99.99,2019-08-10 17:08:00,767 4th St, New York City,NY,10001 +245886,Lightning Charging Cable,1,14.95,2019-08-14 13:02:00,59 4th St, Los Angeles,CA,90001 +245887,Google Phone,1,600.0,2019-08-20 21:16:00,254 12th St, Austin,TX,73301 +245888,AAA Batteries (4-pack),1,2.99,2019-08-19 13:11:00,881 Chestnut St, Boston,MA,02215 +245889,AAA Batteries (4-pack),1,2.99,2019-08-21 20:29:00,571 6th St, New York City,NY,10001 +245890,iPhone,1,700.0,2019-08-01 14:13:00,381 Hickory St, Los Angeles,CA,90001 +245891,27in 4K Gaming Monitor,1,389.99,2019-08-04 20:37:00,409 Willow St, New York City,NY,10001 +245892,ThinkPad Laptop,1,999.99,2019-08-21 18:26:00,188 Lakeview St, New York City,NY,10001 +245893,Apple Airpods Headphones,1,150.0,2019-08-13 13:53:00,654 Lincoln St, Boston,MA,02215 +245894,Apple Airpods Headphones,1,150.0,2019-08-23 13:18:00,703 Hill St, New York City,NY,10001 +245895,AAA Batteries (4-pack),1,2.99,2019-08-29 18:18:00,31 Spruce St, San Francisco,CA,94016 +245896,USB-C Charging Cable,1,11.95,2019-08-11 10:38:00,797 13th St, Los Angeles,CA,90001 +245897,AA Batteries (4-pack),1,3.84,2019-08-10 20:22:00,864 South St, Boston,MA,02215 +245898,Apple Airpods Headphones,1,150.0,2019-08-27 01:34:00,313 Main St, New York City,NY,10001 +245899,Vareebadd Phone,1,400.0,2019-08-11 00:35:00,50 Walnut St, New York City,NY,10001 +245900,Wired Headphones,1,11.99,2019-08-24 23:02:00,800 Walnut St, New York City,NY,10001 +245901,ThinkPad Laptop,1,999.99,2019-08-13 19:05:00,493 1st St, Boston,MA,02215 +245902,Wired Headphones,1,11.99,2019-08-26 10:37:00,722 Meadow St, New York City,NY,10001 +245903,Macbook Pro Laptop,1,1700.0,2019-08-06 08:59:00,898 Park St, San Francisco,CA,94016 +245904,Wired Headphones,1,11.99,2019-08-21 20:37:00,464 Washington St, San Francisco,CA,94016 +245905,USB-C Charging Cable,1,11.95,2019-08-25 11:58:00,32 Elm St, Dallas,TX,75001 +245906,Wired Headphones,1,11.99,2019-08-12 11:52:00,905 West St, Boston,MA,02215 +245907,Flatscreen TV,1,300.0,2019-08-05 15:44:00,628 7th St, Atlanta,GA,30301 +245908,Vareebadd Phone,1,400.0,2019-08-14 00:37:00,851 Madison St, Los Angeles,CA,90001 +245909,AA Batteries (4-pack),1,3.84,2019-08-11 06:50:00,387 4th St, Austin,TX,73301 +245910,Wired Headphones,1,11.99,2019-08-03 16:11:00,348 Maple St, Austin,TX,73301 +245911,Lightning Charging Cable,1,14.95,2019-08-10 22:16:00,812 Jefferson St, Los Angeles,CA,90001 +245912,AA Batteries (4-pack),3,3.84,2019-08-30 09:41:00,687 Johnson St, Atlanta,GA,30301 +245913,Bose SoundSport Headphones,1,99.99,2019-08-21 13:22:00,632 Wilson St, Seattle,WA,98101 +245914,AA Batteries (4-pack),1,3.84,2019-08-11 12:40:00,633 Lincoln St, Los Angeles,CA,90001 +245915,Wired Headphones,1,11.99,2019-08-14 14:24:00,778 7th St, Austin,TX,73301 +245916,20in Monitor,1,109.99,2019-08-06 20:07:00,251 Meadow St, Los Angeles,CA,90001 +245917,USB-C Charging Cable,1,11.95,2019-08-11 10:03:00,379 Spruce St, Los Angeles,CA,90001 +245918,ThinkPad Laptop,1,999.99,2019-08-05 10:52:00,214 North St, San Francisco,CA,94016 +245919,Macbook Pro Laptop,1,1700.0,2019-08-29 17:33:00,579 9th St, New York City,NY,10001 +245920,Google Phone,1,600.0,2019-08-26 11:14:00,823 Park St, Boston,MA,02215 +245921,Apple Airpods Headphones,1,150.0,2019-08-17 13:01:00,146 Park St, Portland,OR,97035 +245922,ThinkPad Laptop,1,999.99,2019-08-15 22:10:00,23 Highland St, Los Angeles,CA,90001 +245923,Wired Headphones,1,11.99,2019-08-01 16:27:00,499 Highland St, Portland,OR,97035 +245924,27in FHD Monitor,1,149.99,2019-08-21 15:20:00,502 Sunset St, Boston,MA,02215 +245925,Bose SoundSport Headphones,1,99.99,2019-08-25 14:53:00,463 9th St, Atlanta,GA,30301 +245926,Wired Headphones,1,11.99,2019-08-22 11:59:00,97 Ridge St, Austin,TX,73301 +245927,Lightning Charging Cable,1,14.95,2019-08-30 18:56:00,915 Maple St, Dallas,TX,75001 +245928,AAA Batteries (4-pack),1,2.99,2019-08-17 10:49:00,844 Washington St, Dallas,TX,75001 +245929,27in FHD Monitor,1,149.99,2019-08-04 05:30:00,918 Lake St, San Francisco,CA,94016 +245930,AAA Batteries (4-pack),1,2.99,2019-08-01 10:31:00,543 Main St, New York City,NY,10001 +245931,Apple Airpods Headphones,1,150.0,2019-08-10 17:07:00,903 Highland St, Seattle,WA,98101 +245932,iPhone,1,700.0,2019-08-26 16:19:00,802 West St, Los Angeles,CA,90001 +245933,Apple Airpods Headphones,1,150.0,2019-08-15 19:31:00,526 Chestnut St, Los Angeles,CA,90001 +245934,AA Batteries (4-pack),1,3.84,2019-08-06 19:47:00,134 Jackson St, San Francisco,CA,94016 +245935,Wired Headphones,1,11.99,2019-08-04 22:31:00,220 Willow St, San Francisco,CA,94016 +245936,AAA Batteries (4-pack),2,2.99,2019-08-18 15:01:00,711 Park St, New York City,NY,10001 +245937,Wired Headphones,1,11.99,2019-08-31 07:43:00,412 Madison St, San Francisco,CA,94016 +245938,AA Batteries (4-pack),1,3.84,2019-08-02 23:12:00,811 5th St, Seattle,WA,98101 +245939,AAA Batteries (4-pack),2,2.99,2019-08-08 20:34:00,916 Sunset St, San Francisco,CA,94016 +245940,27in FHD Monitor,1,149.99,2019-08-27 21:17:00,815 Lakeview St, San Francisco,CA,94016 +245941,USB-C Charging Cable,1,11.95,2019-08-28 19:15:00,861 Spruce St, Seattle,WA,98101 +245942,Wired Headphones,1,11.99,2019-08-11 10:01:00,569 Madison St, New York City,NY,10001 +245943,Wired Headphones,1,11.99,2019-08-29 10:54:00,653 Pine St, Austin,TX,73301 +245944,Google Phone,1,600.0,2019-08-05 15:58:00,906 Sunset St, Los Angeles,CA,90001 +245945,iPhone,1,700.0,2019-08-30 11:40:00,366 Spruce St, New York City,NY,10001 +245946,AAA Batteries (4-pack),2,2.99,2019-08-26 11:14:00,737 Jackson St, Seattle,WA,98101 +245947,Flatscreen TV,1,300.0,2019-08-14 22:30:00,673 Sunset St, Los Angeles,CA,90001 +245948,Google Phone,1,600.0,2019-08-17 23:12:00,656 Main St, Boston,MA,02215 +245949,Macbook Pro Laptop,1,1700.0,2019-08-23 11:40:00,226 Center St, San Francisco,CA,94016 +245950,iPhone,1,700.0,2019-08-02 21:54:00,87 11th St, San Francisco,CA,94016 +245951,ThinkPad Laptop,1,999.99,2019-08-10 09:01:00,990 Johnson St, San Francisco,CA,94016 +245952,USB-C Charging Cable,1,11.95,2019-08-25 10:20:00,469 1st St, Boston,MA,02215 +245953,Bose SoundSport Headphones,1,99.99,2019-08-11 13:06:00,426 Park St, Atlanta,GA,30301 +245954,Lightning Charging Cable,1,14.95,2019-08-15 14:56:00,728 1st St, Los Angeles,CA,90001 +245955,Lightning Charging Cable,1,14.95,2019-08-30 18:59:00,791 Adams St, San Francisco,CA,94016 +245956,Wired Headphones,2,11.99,2019-08-16 12:49:00,59 2nd St, New York City,NY,10001 +245957,AAA Batteries (4-pack),1,2.99,2019-08-24 00:13:00,586 Lincoln St, New York City,NY,10001 +245958,AAA Batteries (4-pack),1,2.99,2019-08-04 13:06:00,38 Jefferson St, San Francisco,CA,94016 +245959,Macbook Pro Laptop,1,1700.0,2019-08-01 21:00:00,25 5th St, Atlanta,GA,30301 +245960,Vareebadd Phone,1,400.0,2019-08-22 23:50:00,933 Sunset St, Boston,MA,02215 +245961,Wired Headphones,1,11.99,2019-08-07 13:39:00,440 Main St, San Francisco,CA,94016 +245962,AA Batteries (4-pack),1,3.84,2019-08-31 13:15:00,521 South St, Boston,MA,02215 +245963,Bose SoundSport Headphones,1,99.99,2019-08-09 22:43:00,450 5th St, Boston,MA,02215 +245964,USB-C Charging Cable,1,11.95,2019-08-14 11:45:00,975 13th St, San Francisco,CA,94016 +245965,27in FHD Monitor,1,149.99,2019-08-23 18:06:00,735 Maple St, Los Angeles,CA,90001 +245966,AAA Batteries (4-pack),1,2.99,2019-08-19 12:24:00,898 Highland St, Austin,TX,73301 +245967,Apple Airpods Headphones,1,150.0,2019-08-25 13:12:00,301 Johnson St, San Francisco,CA,94016 +245968,Wired Headphones,1,11.99,2019-08-26 21:57:00,619 Highland St, San Francisco,CA,94016 +245969,iPhone,1,700.0,2019-08-17 16:03:00,171 5th St, San Francisco,CA,94016 +245970,Macbook Pro Laptop,1,1700.0,2019-08-16 20:13:00,33 Adams St, Seattle,WA,98101 +245971,Google Phone,1,600.0,2019-08-16 18:50:00,29 Washington St, San Francisco,CA,94016 +245972,Wired Headphones,1,11.99,2019-08-14 13:09:00,121 Highland St, New York City,NY,10001 +245973,Lightning Charging Cable,1,14.95,2019-08-16 14:42:00,711 Meadow St, Seattle,WA,98101 +245974,Bose SoundSport Headphones,1,99.99,2019-08-23 17:31:00,858 7th St, Los Angeles,CA,90001 +245975,Wired Headphones,1,11.99,2019-08-30 09:37:00,530 Ridge St, San Francisco,CA,94016 +245976,iPhone,1,700.0,2019-08-23 06:01:00,476 Park St, Atlanta,GA,30301 +245977,34in Ultrawide Monitor,1,379.99,2019-08-05 10:49:00,840 Washington St, Boston,MA,02215 +245978,20in Monitor,1,109.99,2019-08-29 13:40:00,40 Dogwood St, New York City,NY,10001 +245979,USB-C Charging Cable,1,11.95,2019-08-03 19:35:00,592 Cedar St, Portland,OR,97035 +245980,AA Batteries (4-pack),3,3.84,2019-08-20 14:26:00,658 Spruce St, San Francisco,CA,94016 +245981,Bose SoundSport Headphones,1,99.99,2019-08-04 11:04:00,365 Wilson St, San Francisco,CA,94016 +245982,Google Phone,1,600.0,2019-08-31 15:29:00,932 Wilson St, Seattle,WA,98101 +245982,Wired Headphones,1,11.99,2019-08-31 15:29:00,932 Wilson St, Seattle,WA,98101 +245983,Wired Headphones,1,11.99,2019-08-04 22:34:00,506 Highland St, Portland,OR,97035 +245984,Macbook Pro Laptop,1,1700.0,2019-08-11 20:50:00,985 Hill St, Los Angeles,CA,90001 +245985,34in Ultrawide Monitor,1,379.99,2019-08-20 14:37:00,18 Adams St, Seattle,WA,98101 +245986,Google Phone,1,600.0,2019-08-31 20:18:00,270 Park St, San Francisco,CA,94016 +245987,Flatscreen TV,1,300.0,2019-08-04 21:52:00,180 Maple St, Boston,MA,02215 +245988,USB-C Charging Cable,1,11.95,2019-08-01 08:43:00,696 9th St, Atlanta,GA,30301 +245989,Bose SoundSport Headphones,1,99.99,2019-08-19 03:33:00,392 Lincoln St, Atlanta,GA,30301 +245990,Wired Headphones,1,11.99,2019-08-16 08:30:00,109 Chestnut St, New York City,NY,10001 +245991,Vareebadd Phone,1,400.0,2019-08-18 10:54:00,433 Johnson St, New York City,NY,10001 +245992,iPhone,1,700.0,2019-08-22 15:19:00,832 1st St, Dallas,TX,75001 +245993,27in FHD Monitor,1,149.99,2019-08-27 09:48:00,788 Wilson St, Portland,OR,97035 +245994,20in Monitor,1,109.99,2019-08-27 09:37:00,625 Hickory St, Seattle,WA,98101 +245995,iPhone,1,700.0,2019-08-25 12:31:00,792 Adams St, Los Angeles,CA,90001 +245996,AA Batteries (4-pack),1,3.84,2019-08-04 20:49:00,340 Jackson St, San Francisco,CA,94016 +245997,Lightning Charging Cable,2,14.95,2019-08-16 20:16:00,697 14th St, San Francisco,CA,94016 +245998,Lightning Charging Cable,1,14.95,2019-08-16 18:24:00,662 7th St, Boston,MA,02215 +245999,27in 4K Gaming Monitor,1,389.99,2019-08-26 22:40:00,656 12th St, Los Angeles,CA,90001 +246000,Apple Airpods Headphones,1,150.0,2019-08-05 08:38:00,835 Jefferson St, San Francisco,CA,94016 +246001,Wired Headphones,1,11.99,2019-08-06 13:38:00,659 Lincoln St, Boston,MA,02215 +246002,AA Batteries (4-pack),2,3.84,2019-08-21 11:52:00,31 2nd St, Austin,TX,73301 +246003,Wired Headphones,1,11.99,2019-08-26 09:14:00,747 Hill St, San Francisco,CA,94016 +246004,USB-C Charging Cable,1,11.95,2019-08-24 11:29:00,485 River St, San Francisco,CA,94016 +246005,Wired Headphones,1,11.99,2019-08-14 22:12:00,227 Hickory St, New York City,NY,10001 +246006,AAA Batteries (4-pack),1,2.99,2019-08-18 20:57:00,544 Lake St, Seattle,WA,98101 +246007,20in Monitor,1,109.99,2019-08-19 14:06:00,112 Sunset St, New York City,NY,10001 +246008,Apple Airpods Headphones,1,150.0,2019-08-28 14:42:00,585 5th St, San Francisco,CA,94016 +246009,Vareebadd Phone,1,400.0,2019-08-19 12:11:00,389 2nd St, San Francisco,CA,94016 +246009,USB-C Charging Cable,1,11.95,2019-08-19 12:11:00,389 2nd St, San Francisco,CA,94016 +246010,AAA Batteries (4-pack),1,2.99,2019-08-02 10:01:00,651 Willow St, San Francisco,CA,94016 +246011,AAA Batteries (4-pack),3,2.99,2019-08-31 15:09:00,703 Jefferson St, New York City,NY,10001 +246011,Bose SoundSport Headphones,1,99.99,2019-08-31 15:09:00,703 Jefferson St, New York City,NY,10001 +246012,AAA Batteries (4-pack),1,2.99,2019-08-02 17:00:00,556 South St, Dallas,TX,75001 +246013,Wired Headphones,1,11.99,2019-08-21 02:01:00,485 Church St, Austin,TX,73301 +246014,USB-C Charging Cable,1,11.95,2019-08-01 14:02:00,563 Jefferson St, Atlanta,GA,30301 +246015,27in 4K Gaming Monitor,1,389.99,2019-08-06 21:15:00,322 Pine St, San Francisco,CA,94016 +246016,Lightning Charging Cable,1,14.95,2019-08-29 09:19:00,281 Jefferson St, Seattle,WA,98101 +246016,27in FHD Monitor,1,149.99,2019-08-29 09:19:00,281 Jefferson St, Seattle,WA,98101 +246017,AAA Batteries (4-pack),2,2.99,2019-08-04 19:38:00,96 10th St, Dallas,TX,75001 +246018,Macbook Pro Laptop,1,1700.0,2019-08-15 05:44:00,183 13th St, San Francisco,CA,94016 +246019,Wired Headphones,1,11.99,2019-08-24 18:33:00,651 Sunset St, Austin,TX,73301 +246020,Google Phone,1,600.0,2019-08-23 11:05:00,495 Ridge St, New York City,NY,10001 +246021,Wired Headphones,1,11.99,2019-08-07 11:19:00,899 9th St, Portland,OR,97035 +246022,AA Batteries (4-pack),2,3.84,2019-08-23 18:06:00,599 Wilson St, Boston,MA,02215 +246023,AA Batteries (4-pack),1,3.84,2019-08-02 00:56:00,431 4th St, Boston,MA,02215 +246024,Apple Airpods Headphones,1,150.0,2019-08-02 20:56:00,940 Willow St, Dallas,TX,75001 +246025,Flatscreen TV,1,300.0,2019-08-02 14:08:00,886 Center St, Boston,MA,02215 +246026,AAA Batteries (4-pack),2,2.99,2019-08-15 11:43:00,848 Jefferson St, San Francisco,CA,94016 +246027,AA Batteries (4-pack),1,3.84,2019-08-28 22:21:00,437 Madison St, Boston,MA,02215 +246028,Vareebadd Phone,1,400.0,2019-08-14 16:20:00,236 14th St, San Francisco,CA,94016 +246029,Lightning Charging Cable,1,14.95,2019-08-25 23:26:00,56 2nd St, Seattle,WA,98101 +246030,Apple Airpods Headphones,1,150.0,2019-08-01 21:31:00,472 2nd St, San Francisco,CA,94016 +246031,Google Phone,1,600.0,2019-08-23 18:10:00,829 4th St, Austin,TX,73301 +246032,AAA Batteries (4-pack),1,2.99,2019-08-11 15:08:00,186 Cedar St, Los Angeles,CA,90001 +246033,20in Monitor,1,109.99,2019-08-19 20:52:00,161 Willow St, Austin,TX,73301 +246034,27in 4K Gaming Monitor,1,389.99,2019-08-09 02:40:00,46 Chestnut St, Los Angeles,CA,90001 +246035,ThinkPad Laptop,1,999.99,2019-08-02 14:16:00,568 Lincoln St, Boston,MA,02215 +246036,USB-C Charging Cable,1,11.95,2019-08-09 22:31:00,17 Chestnut St, Los Angeles,CA,90001 +246037,AAA Batteries (4-pack),1,2.99,2019-08-12 00:15:00,367 2nd St, Boston,MA,02215 +246038,AA Batteries (4-pack),3,3.84,2019-08-14 23:51:00,422 Jefferson St, Boston,MA,02215 +246039,Apple Airpods Headphones,1,150.0,2019-08-12 19:02:00,274 Center St, Los Angeles,CA,90001 +246040,ThinkPad Laptop,1,999.99,2019-08-20 17:53:00,886 7th St, Boston,MA,02215 +246041,Lightning Charging Cable,1,14.95,2019-08-26 13:17:00,520 West St, San Francisco,CA,94016 +246041,USB-C Charging Cable,1,11.95,2019-08-26 13:17:00,520 West St, San Francisco,CA,94016 +246042,USB-C Charging Cable,1,11.95,2019-08-13 19:02:00,786 Adams St, Los Angeles,CA,90001 +246043,Lightning Charging Cable,1,14.95,2019-08-23 10:19:00,85 Lakeview St, Los Angeles,CA,90001 +246044,USB-C Charging Cable,2,11.95,2019-08-05 10:35:00,901 Church St, Los Angeles,CA,90001 +246045,20in Monitor,1,109.99,2019-08-11 13:47:00,91 14th St, Boston,MA,02215 +246046,Flatscreen TV,1,300.0,2019-08-11 09:50:00,962 12th St, San Francisco,CA,94016 +246047,Apple Airpods Headphones,1,150.0,2019-08-27 20:53:00,452 Spruce St, Atlanta,GA,30301 +246048,Lightning Charging Cable,1,14.95,2019-08-25 18:24:00,735 Madison St, Austin,TX,73301 +246049,USB-C Charging Cable,2,11.95,2019-08-13 19:29:00,429 12th St, Boston,MA,02215 +246050,AAA Batteries (4-pack),1,2.99,2019-08-10 06:49:00,520 Park St, Los Angeles,CA,90001 +246051,Apple Airpods Headphones,1,150.0,2019-08-08 17:30:00,288 Hickory St, Boston,MA,02215 +246052,Wired Headphones,1,11.99,2019-08-12 23:29:00,466 Walnut St, Dallas,TX,75001 +246053,Wired Headphones,1,11.99,2019-08-06 13:22:00,517 2nd St, New York City,NY,10001 +246054,Lightning Charging Cable,1,14.95,2019-08-19 18:08:00,209 West St, New York City,NY,10001 +246055,20in Monitor,1,109.99,2019-08-21 10:49:00,569 Washington St, Atlanta,GA,30301 +246056,Bose SoundSport Headphones,1,99.99,2019-08-05 19:37:00,792 Highland St, Dallas,TX,75001 +246057,iPhone,1,700.0,2019-08-15 10:23:00,963 Lake St, San Francisco,CA,94016 +246058,Vareebadd Phone,1,400.0,2019-08-04 19:57:00,842 North St, Los Angeles,CA,90001 +246059,27in 4K Gaming Monitor,1,389.99,2019-08-05 19:25:00,209 Walnut St, Boston,MA,02215 +246060,Wired Headphones,1,11.99,2019-08-13 04:19:00,927 Jackson St, Seattle,WA,98101 +246061,Apple Airpods Headphones,1,150.0,2019-08-13 13:13:00,314 9th St, Dallas,TX,75001 +246062,iPhone,1,700.0,2019-08-21 20:40:00,172 6th St, San Francisco,CA,94016 +246063,USB-C Charging Cable,1,11.95,2019-08-27 17:40:00,984 2nd St, Boston,MA,02215 +246064,Flatscreen TV,1,300.0,2019-08-29 11:41:00,892 Pine St, San Francisco,CA,94016 +246065,USB-C Charging Cable,1,11.95,2019-08-01 10:42:00,883 6th St, Los Angeles,CA,90001 +246066,AAA Batteries (4-pack),1,2.99,2019-08-07 08:53:00,675 4th St, Boston,MA,02215 +246067,USB-C Charging Cable,1,11.95,2019-08-22 15:55:00,804 Highland St, Atlanta,GA,30301 +246068,AAA Batteries (4-pack),1,2.99,2019-08-15 13:10:00,70 Hickory St, Dallas,TX,75001 +246069,AAA Batteries (4-pack),1,2.99,2019-08-04 23:31:00,881 14th St, Atlanta,GA,30301 +246070,iPhone,1,700.0,2019-08-21 08:09:00,625 8th St, Dallas,TX,75001 +246071,AA Batteries (4-pack),1,3.84,2019-08-02 21:50:00,159 Madison St, New York City,NY,10001 +246072,AAA Batteries (4-pack),2,2.99,2019-08-08 20:34:00,695 Pine St, Los Angeles,CA,90001 +246073,Vareebadd Phone,1,400.0,2019-08-16 20:16:00,576 Lakeview St, Austin,TX,73301 +246073,USB-C Charging Cable,1,11.95,2019-08-16 20:16:00,576 Lakeview St, Austin,TX,73301 +246074,AAA Batteries (4-pack),2,2.99,2019-08-24 08:25:00,456 Lake St, Atlanta,GA,30301 +246075,ThinkPad Laptop,1,999.99,2019-08-28 18:21:00,722 4th St, Boston,MA,02215 +246076,AAA Batteries (4-pack),1,2.99,2019-08-21 09:31:00,489 Spruce St, Austin,TX,73301 +246077,Bose SoundSport Headphones,1,99.99,2019-08-06 17:17:00,299 12th St, Seattle,WA,98101 +246078,AAA Batteries (4-pack),1,2.99,2019-08-27 10:19:00,1 Hill St, San Francisco,CA,94016 +246079,AA Batteries (4-pack),1,3.84,2019-08-15 17:27:00,824 Ridge St, San Francisco,CA,94016 +246080,Google Phone,1,600.0,2019-08-24 18:25:00,951 South St, San Francisco,CA,94016 +246080,Wired Headphones,1,11.99,2019-08-24 18:25:00,951 South St, San Francisco,CA,94016 +246081,Bose SoundSport Headphones,1,99.99,2019-08-28 14:08:00,697 Park St, San Francisco,CA,94016 +246082,AA Batteries (4-pack),3,3.84,2019-08-21 15:52:00,607 Church St, San Francisco,CA,94016 +246083,Wired Headphones,1,11.99,2019-08-26 18:17:00,330 11th St, San Francisco,CA,94016 +246084,Bose SoundSport Headphones,1,99.99,2019-08-17 14:34:00,731 Cherry St, Dallas,TX,75001 +246085,iPhone,1,700.0,2019-08-30 18:48:00,710 5th St, San Francisco,CA,94016 +246086,27in FHD Monitor,1,149.99,2019-08-31 12:39:00,869 Hickory St, Atlanta,GA,30301 +246087,AAA Batteries (4-pack),1,2.99,2019-08-14 17:25:00,95 Forest St, Atlanta,GA,30301 +246088,Google Phone,1,600.0,2019-08-26 00:00:00,506 Jefferson St, Los Angeles,CA,90001 +246088,Wired Headphones,1,11.99,2019-08-26 00:00:00,506 Jefferson St, Los Angeles,CA,90001 +246089,iPhone,1,700.0,2019-08-17 19:19:00,337 West St, San Francisco,CA,94016 +246089,Lightning Charging Cable,1,14.95,2019-08-17 19:19:00,337 West St, San Francisco,CA,94016 +246090,Flatscreen TV,1,300.0,2019-08-02 08:30:00,284 Forest St, Los Angeles,CA,90001 +246091,Lightning Charging Cable,1,14.95,2019-08-23 13:40:00,27 Wilson St, Dallas,TX,75001 +246092,USB-C Charging Cable,1,11.95,2019-08-03 09:47:00,175 Main St, Los Angeles,CA,90001 +246093,Lightning Charging Cable,1,14.95,2019-08-06 19:38:00,240 Highland St, Los Angeles,CA,90001 +246094,Apple Airpods Headphones,1,150.0,2019-08-29 18:15:00,990 5th St, Atlanta,GA,30301 +246095,USB-C Charging Cable,1,11.95,2019-08-03 14:36:00,649 Lincoln St, San Francisco,CA,94016 +246096,USB-C Charging Cable,1,11.95,2019-08-23 08:35:00,110 Pine St, San Francisco,CA,94016 +246097,AA Batteries (4-pack),1,3.84,2019-08-24 17:17:00,806 14th St, Atlanta,GA,30301 +246098,USB-C Charging Cable,1,11.95,2019-08-25 23:09:00,347 Hickory St, Los Angeles,CA,90001 +246099,USB-C Charging Cable,1,11.95,2019-08-02 23:55:00,85 12th St, Atlanta,GA,30301 +246100,Wired Headphones,1,11.99,2019-08-14 08:57:00,146 1st St, New York City,NY,10001 +246101,Macbook Pro Laptop,1,1700.0,2019-08-07 15:56:00,607 Ridge St, Los Angeles,CA,90001 +246102,Wired Headphones,1,11.99,2019-08-31 08:28:00,693 7th St, Boston,MA,02215 +246103,ThinkPad Laptop,1,999.99,2019-08-22 20:35:00,445 Highland St, Seattle,WA,98101 +246104,Lightning Charging Cable,1,14.95,2019-08-25 01:03:00,847 Madison St, New York City,NY,10001 +246105,Bose SoundSport Headphones,1,99.99,2019-08-29 19:55:00,412 Sunset St, Boston,MA,02215 +246106,Wired Headphones,1,11.99,2019-08-20 11:16:00,944 Forest St, Atlanta,GA,30301 +246107,AA Batteries (4-pack),2,3.84,2019-08-25 18:05:00,196 6th St, New York City,NY,10001 +246108,Wired Headphones,1,11.99,2019-08-27 08:16:00,709 Cedar St, Portland,OR,97035 +246109,AAA Batteries (4-pack),3,2.99,2019-08-12 17:02:00,296 South St, San Francisco,CA,94016 +246110,Apple Airpods Headphones,1,150.0,2019-08-17 20:35:00,150 West St, Austin,TX,73301 +246111,AAA Batteries (4-pack),1,2.99,2019-08-16 01:02:00,648 7th St, Los Angeles,CA,90001 +246112,Bose SoundSport Headphones,1,99.99,2019-08-27 00:31:00,758 5th St, Atlanta,GA,30301 +246113,27in 4K Gaming Monitor,1,389.99,2019-08-22 13:19:00,942 Johnson St, Seattle,WA,98101 +246114,ThinkPad Laptop,1,999.99,2019-08-28 12:09:00,86 Main St, Dallas,TX,75001 +246115,AAA Batteries (4-pack),2,2.99,2019-08-09 01:57:00,886 Church St, Boston,MA,02215 +246116,AAA Batteries (4-pack),1,2.99,2019-08-23 01:33:00,268 Forest St, Boston,MA,02215 +246117,Wired Headphones,1,11.99,2019-08-25 22:59:00,726 2nd St, New York City,NY,10001 +246118,27in FHD Monitor,1,149.99,2019-08-07 14:53:00,54 Pine St, Los Angeles,CA,90001 +246119,Wired Headphones,1,11.99,2019-08-10 00:09:00,678 Lincoln St, Seattle,WA,98101 +246120,Lightning Charging Cable,1,14.95,2019-08-11 08:06:00,152 Ridge St, Portland,OR,97035 +246121,Vareebadd Phone,1,400.0,2019-08-06 18:15:00,765 1st St, Seattle,WA,98101 +246122,27in FHD Monitor,1,149.99,2019-08-05 18:01:00,939 Pine St, New York City,NY,10001 +246123,AA Batteries (4-pack),1,3.84,2019-08-28 10:37:00,72 Jefferson St, San Francisco,CA,94016 +246124,AA Batteries (4-pack),1,3.84,2019-08-16 09:56:00,55 Wilson St, Seattle,WA,98101 +246125,USB-C Charging Cable,1,11.95,2019-08-16 15:14:00,519 Cherry St, Dallas,TX,75001 +246126,AA Batteries (4-pack),1,3.84,2019-08-11 16:13:00,213 Washington St, San Francisco,CA,94016 +246127,USB-C Charging Cable,1,11.95,2019-08-18 08:51:00,218 11th St, Austin,TX,73301 +246128,Lightning Charging Cable,1,14.95,2019-08-29 17:53:00,233 Washington St, Atlanta,GA,30301 +246128,USB-C Charging Cable,1,11.95,2019-08-29 17:53:00,233 Washington St, Atlanta,GA,30301 +246129,Apple Airpods Headphones,1,150.0,2019-08-23 09:17:00,221 Lakeview St, Seattle,WA,98101 +246130,Apple Airpods Headphones,1,150.0,2019-08-19 14:33:00,877 Elm St, Atlanta,GA,30301 +246131,Wired Headphones,1,11.99,2019-08-24 16:39:00,674 Adams St, Seattle,WA,98101 +246132,27in FHD Monitor,1,149.99,2019-08-07 12:05:00,56 Lincoln St, Los Angeles,CA,90001 +246133,AA Batteries (4-pack),1,3.84,2019-08-18 11:00:00,197 Chestnut St, Seattle,WA,98101 +246134,AA Batteries (4-pack),2,3.84,2019-08-29 16:22:00,88 12th St, Seattle,WA,98101 +246135,Apple Airpods Headphones,1,150.0,2019-08-14 10:02:00,748 Adams St, New York City,NY,10001 +246136,Wired Headphones,1,11.99,2019-08-13 05:45:00,988 Highland St, Atlanta,GA,30301 +246137,Wired Headphones,1,11.99,2019-08-12 19:44:00,109 12th St, New York City,NY,10001 +246138,iPhone,1,700.0,2019-08-27 06:31:00,563 Pine St, Seattle,WA,98101 +246139,20in Monitor,1,109.99,2019-09-01 01:00:00,761 Forest St, San Francisco,CA,94016 +246140,USB-C Charging Cable,1,11.95,2019-08-19 12:44:00,436 14th St, New York City,NY,10001 +246141,USB-C Charging Cable,1,11.95,2019-08-18 16:33:00,904 Lincoln St, New York City,NY,10001 +246142,27in 4K Gaming Monitor,1,389.99,2019-08-20 14:47:00,744 Lake St, San Francisco,CA,94016 +246143,27in 4K Gaming Monitor,1,389.99,2019-08-13 13:32:00,744 Lake St, Portland,OR,97035 +246144,AAA Batteries (4-pack),1,2.99,2019-08-16 11:30:00,537 Adams St, San Francisco,CA,94016 +246145,Flatscreen TV,1,300.0,2019-08-29 07:58:00,379 Lakeview St, New York City,NY,10001 +246146,Flatscreen TV,1,300.0,2019-08-07 07:49:00,607 Forest St, New York City,NY,10001 +246147,AAA Batteries (4-pack),1,2.99,2019-08-10 12:03:00,285 Chestnut St, Austin,TX,73301 +246148,Lightning Charging Cable,1,14.95,2019-08-27 09:24:00,911 Elm St, Atlanta,GA,30301 +246149,Wired Headphones,1,11.99,2019-08-15 23:37:00,379 Maple St, San Francisco,CA,94016 +246150,AAA Batteries (4-pack),3,2.99,2019-08-24 06:47:00,509 Hickory St, Austin,TX,73301 +246151,Wired Headphones,3,11.99,2019-08-11 15:32:00,442 Adams St, San Francisco,CA,94016 +246152,Lightning Charging Cable,1,14.95,2019-08-26 23:27:00,536 Lakeview St, New York City,NY,10001 +246153,AAA Batteries (4-pack),1,2.99,2019-08-05 10:07:00,252 Sunset St, Atlanta,GA,30301 +246154,34in Ultrawide Monitor,1,379.99,2019-08-19 19:52:00,627 Spruce St, Boston,MA,02215 +246154,ThinkPad Laptop,1,999.99,2019-08-19 19:52:00,627 Spruce St, Boston,MA,02215 +246155,Lightning Charging Cable,1,14.95,2019-08-02 20:22:00,333 Main St, Dallas,TX,75001 +246156,USB-C Charging Cable,1,11.95,2019-08-25 13:50:00,817 Walnut St, Dallas,TX,75001 +246157,LG Dryer,1,600.0,2019-08-29 16:09:00,481 14th St, Austin,TX,73301 +246158,Apple Airpods Headphones,1,150.0,2019-08-17 19:56:00,841 11th St, San Francisco,CA,94016 +246159,AA Batteries (4-pack),1,3.84,2019-08-09 06:16:00,171 Jefferson St, Portland,OR,97035 +246160,27in FHD Monitor,1,149.99,2019-08-05 19:13:00,339 Hickory St, San Francisco,CA,94016 +246161,27in 4K Gaming Monitor,1,389.99,2019-08-12 07:33:00,914 Lakeview St, San Francisco,CA,94016 +246162,Lightning Charging Cable,1,14.95,2019-08-03 13:49:00,625 Lincoln St, New York City,NY,10001 +246163,Bose SoundSport Headphones,1,99.99,2019-08-10 16:07:00,555 Willow St, Boston,MA,02215 +246164,Wired Headphones,1,11.99,2019-08-06 12:07:00,178 14th St, Atlanta,GA,30301 +246165,USB-C Charging Cable,2,11.95,2019-08-11 14:40:00,408 Elm St, Dallas,TX,75001 +246165,AAA Batteries (4-pack),1,2.99,2019-08-11 14:40:00,408 Elm St, Dallas,TX,75001 +246166,Wired Headphones,1,11.99,2019-08-13 15:16:00,992 Church St, Seattle,WA,98101 +246167,Lightning Charging Cable,1,14.95,2019-08-16 03:53:00,301 Elm St, Seattle,WA,98101 +246168,USB-C Charging Cable,1,11.95,2019-08-20 15:20:00,352 Chestnut St, San Francisco,CA,94016 +246169,AAA Batteries (4-pack),1,2.99,2019-08-06 21:47:00,771 Cedar St, Seattle,WA,98101 +246170,AA Batteries (4-pack),1,3.84,2019-08-28 13:39:00,99 Chestnut St, Portland,OR,97035 +246171,Lightning Charging Cable,1,14.95,2019-08-01 20:44:00,889 Adams St, Portland,OR,97035 +246172,USB-C Charging Cable,2,11.95,2019-08-11 17:30:00,948 1st St, San Francisco,CA,94016 +246173,34in Ultrawide Monitor,1,379.99,2019-08-28 15:51:00,363 Chestnut St, Dallas,TX,75001 +246174,34in Ultrawide Monitor,1,379.99,2019-08-25 17:17:00,265 10th St, Portland,OR,97035 +246175,Lightning Charging Cable,1,14.95,2019-08-04 22:06:00,322 1st St, Los Angeles,CA,90001 +246176,AA Batteries (4-pack),1,3.84,2019-08-14 12:40:00,91 Johnson St, San Francisco,CA,94016 +246177,Flatscreen TV,1,300.0,2019-08-26 20:30:00,949 9th St, New York City,NY,10001 +246178,USB-C Charging Cable,1,11.95,2019-08-16 14:37:00,444 Hill St, New York City,NY,10001 +246179,20in Monitor,1,109.99,2019-08-13 21:27:00,381 Chestnut St, San Francisco,CA,94016 +246180,Wired Headphones,1,11.99,2019-08-23 22:26:00,137 Walnut St, Seattle,WA,98101 +246181,AAA Batteries (4-pack),1,2.99,2019-08-19 19:46:00,18 Jefferson St, San Francisco,CA,94016 +246182,Lightning Charging Cable,1,14.95,2019-08-22 15:43:00,308 Spruce St, Los Angeles,CA,90001 +246183,AA Batteries (4-pack),1,3.84,2019-08-11 12:41:00,891 Wilson St, Boston,MA,02215 +246184,Bose SoundSport Headphones,1,99.99,2019-08-23 14:12:00,782 Forest St, San Francisco,CA,94016 +246185,AAA Batteries (4-pack),4,2.99,2019-08-15 16:56:00,547 6th St, San Francisco,CA,94016 +246186,Wired Headphones,1,11.99,2019-08-28 23:54:00,942 Wilson St, Austin,TX,73301 +246187,USB-C Charging Cable,1,11.95,2019-08-11 13:35:00,746 Dogwood St, Los Angeles,CA,90001 +246188,iPhone,1,700.0,2019-08-22 14:58:00,529 Sunset St, Seattle,WA,98101 +246189,20in Monitor,1,109.99,2019-08-07 08:07:00,840 West St, San Francisco,CA,94016 +246190,USB-C Charging Cable,1,11.95,2019-08-03 13:11:00,344 Dogwood St, New York City,NY,10001 +246191,AAA Batteries (4-pack),2,2.99,2019-08-22 13:11:00,98 Johnson St, Austin,TX,73301 +246192,USB-C Charging Cable,1,11.95,2019-08-17 17:10:00,828 Cedar St, Los Angeles,CA,90001 +246193,iPhone,1,700.0,2019-08-28 17:26:00,834 Jefferson St, San Francisco,CA,94016 +246194,27in 4K Gaming Monitor,1,389.99,2019-08-17 12:29:00,285 Lincoln St, San Francisco,CA,94016 +246195,AAA Batteries (4-pack),1,2.99,2019-08-28 23:25:00,36 Sunset St, San Francisco,CA,94016 +246196,USB-C Charging Cable,1,11.95,2019-08-09 10:22:00,336 12th St, Seattle,WA,98101 +246197,iPhone,1,700.0,2019-08-27 02:30:00,718 Sunset St, Dallas,TX,75001 +246197,AA Batteries (4-pack),1,3.84,2019-08-27 02:30:00,718 Sunset St, Dallas,TX,75001 +246198,Bose SoundSport Headphones,1,99.99,2019-08-19 15:58:00,478 Wilson St, Los Angeles,CA,90001 +246199,AAA Batteries (4-pack),2,2.99,2019-08-25 21:07:00,329 Washington St, Boston,MA,02215 +246200,AAA Batteries (4-pack),4,2.99,2019-08-06 18:46:00,387 Hickory St, San Francisco,CA,94016 +246201,USB-C Charging Cable,1,11.95,2019-08-18 17:39:00,768 Main St, Dallas,TX,75001 +246202,Wired Headphones,1,11.99,2019-08-12 12:12:00,888 Washington St, Boston,MA,02215 +246203,AA Batteries (4-pack),1,3.84,2019-08-15 10:05:00,533 Hickory St, Los Angeles,CA,90001 +246204,Bose SoundSport Headphones,1,99.99,2019-08-11 10:43:00,790 Hill St, Austin,TX,73301 +246205,20in Monitor,1,109.99,2019-08-22 20:15:00,258 Elm St, Los Angeles,CA,90001 +246206,AAA Batteries (4-pack),3,2.99,2019-08-07 11:26:00,938 Adams St, Los Angeles,CA,90001 +246207,Apple Airpods Headphones,1,150.0,2019-08-24 22:03:00,490 7th St, Los Angeles,CA,90001 +246208,USB-C Charging Cable,1,11.95,2019-08-16 19:40:00,298 1st St, Los Angeles,CA,90001 +246209,Bose SoundSport Headphones,1,99.99,2019-08-22 17:27:00,540 9th St, Atlanta,GA,30301 +246210,Flatscreen TV,1,300.0,2019-08-02 09:41:00,964 4th St, New York City,NY,10001 +246211,Lightning Charging Cable,1,14.95,2019-08-17 19:29:00,253 Pine St, Los Angeles,CA,90001 +246212,USB-C Charging Cable,1,11.95,2019-08-26 09:59:00,484 West St, San Francisco,CA,94016 +246213,Lightning Charging Cable,1,14.95,2019-08-30 10:25:00,853 Meadow St, Seattle,WA,98101 +246214,Macbook Pro Laptop,1,1700.0,2019-08-16 14:31:00,216 Lincoln St, Austin,TX,73301 +246215,Bose SoundSport Headphones,1,99.99,2019-08-25 05:48:00,43 Cedar St, San Francisco,CA,94016 +246216,Bose SoundSport Headphones,1,99.99,2019-08-28 13:42:00,35 5th St, San Francisco,CA,94016 +246217,USB-C Charging Cable,1,11.95,2019-08-13 12:07:00,126 Sunset St, Portland,OR,97035 +246218,AA Batteries (4-pack),1,3.84,2019-08-19 13:22:00,866 Walnut St, Seattle,WA,98101 +246219,Bose SoundSport Headphones,1,99.99,2019-08-15 21:11:00,889 Washington St, San Francisco,CA,94016 +246220,Lightning Charging Cable,1,14.95,2019-08-15 10:22:00,524 Madison St, San Francisco,CA,94016 +246221,Apple Airpods Headphones,1,150.0,2019-08-05 12:12:00,56 Maple St, Atlanta,GA,30301 +246222,Lightning Charging Cable,1,14.95,2019-08-09 15:05:00,67 4th St, San Francisco,CA,94016 +246223,Bose SoundSport Headphones,1,99.99,2019-08-14 22:21:00,69 Walnut St, San Francisco,CA,94016 +246224,AAA Batteries (4-pack),1,2.99,2019-08-14 00:06:00,743 West St, Dallas,TX,75001 +246225,Lightning Charging Cable,1,14.95,2019-08-16 22:06:00,710 Walnut St, Los Angeles,CA,90001 +246226,Lightning Charging Cable,1,14.95,2019-08-04 10:21:00,918 1st St, San Francisco,CA,94016 +246227,27in 4K Gaming Monitor,1,389.99,2019-08-18 15:04:00,333 14th St, New York City,NY,10001 +246228,USB-C Charging Cable,1,11.95,2019-08-07 14:15:00,661 6th St, Seattle,WA,98101 +246229,Lightning Charging Cable,1,14.95,2019-08-03 22:12:00,121 Dogwood St, Boston,MA,02215 +246230,27in FHD Monitor,1,149.99,2019-08-17 11:50:00,314 Chestnut St, San Francisco,CA,94016 +246231,AAA Batteries (4-pack),1,2.99,2019-08-14 15:57:00,111 Cedar St, New York City,NY,10001 +246232,AAA Batteries (4-pack),1,2.99,2019-08-10 17:43:00,692 1st St, San Francisco,CA,94016 +246233,AA Batteries (4-pack),3,3.84,2019-08-24 12:38:00,857 10th St, Portland,ME,04101 +246234,USB-C Charging Cable,2,11.95,2019-08-26 09:46:00,83 Dogwood St, Boston,MA,02215 +246235,34in Ultrawide Monitor,1,379.99,2019-08-25 15:59:00,296 1st St, Boston,MA,02215 +246236,Apple Airpods Headphones,1,150.0,2019-08-01 15:18:00,381 4th St, Los Angeles,CA,90001 +246237,34in Ultrawide Monitor,1,379.99,2019-08-09 11:29:00,312 Willow St, Boston,MA,02215 +246238,Apple Airpods Headphones,1,150.0,2019-08-11 18:44:00,8 Main St, Atlanta,GA,30301 +246239,Lightning Charging Cable,1,14.95,2019-08-13 14:50:00,753 7th St, Boston,MA,02215 +246240,Apple Airpods Headphones,1,150.0,2019-08-11 12:35:00,29 Lakeview St, Austin,TX,73301 +246241,AA Batteries (4-pack),1,3.84,2019-08-13 20:52:00,747 Cherry St, Dallas,TX,75001 +246242,AA Batteries (4-pack),1,3.84,2019-08-15 18:03:00,894 14th St, Atlanta,GA,30301 +246243,USB-C Charging Cable,1,11.95,2019-08-27 00:24:00,884 Jackson St, New York City,NY,10001 +246244,34in Ultrawide Monitor,1,379.99,2019-08-23 18:30:00,859 Ridge St, Austin,TX,73301 +246245,Macbook Pro Laptop,1,1700.0,2019-08-26 10:05:00,611 Church St, San Francisco,CA,94016 +246246,Lightning Charging Cable,1,14.95,2019-08-12 05:44:00,334 West St, New York City,NY,10001 +246247,27in 4K Gaming Monitor,1,389.99,2019-08-24 15:02:00,205 River St, Los Angeles,CA,90001 +246248,AAA Batteries (4-pack),2,2.99,2019-08-11 19:38:00,283 Forest St, San Francisco,CA,94016 +246248,USB-C Charging Cable,1,11.95,2019-08-11 19:38:00,283 Forest St, San Francisco,CA,94016 +246249,ThinkPad Laptop,1,999.99,2019-08-17 12:55:00,423 Willow St, San Francisco,CA,94016 +246250,USB-C Charging Cable,1,11.95,2019-08-09 11:53:00,248 Willow St, Los Angeles,CA,90001 +246251,USB-C Charging Cable,1,11.95,2019-08-17 13:04:00,550 Adams St, Boston,MA,02215 +246252,Apple Airpods Headphones,1,150.0,2019-08-18 14:19:00,345 Maple St, New York City,NY,10001 +246253,Wired Headphones,1,11.99,2019-08-06 08:39:00,392 Jefferson St, New York City,NY,10001 +246254,Lightning Charging Cable,1,14.95,2019-08-17 16:44:00,768 Lakeview St, Portland,ME,04101 +246255,20in Monitor,1,109.99,2019-08-12 13:32:00,270 Jackson St, San Francisco,CA,94016 +246256,AA Batteries (4-pack),2,3.84,2019-08-19 11:14:00,707 Forest St, San Francisco,CA,94016 +246257,AAA Batteries (4-pack),1,2.99,2019-08-15 21:04:00,868 River St, Atlanta,GA,30301 +246258,Flatscreen TV,1,300.0,2019-08-26 17:08:00,182 Jackson St, Seattle,WA,98101 +246259,AAA Batteries (4-pack),1,2.99,2019-08-25 19:21:00,181 Wilson St, San Francisco,CA,94016 +246260,Macbook Pro Laptop,1,1700.0,2019-08-11 18:20:00,282 Walnut St, Boston,MA,02215 +246261,Wired Headphones,1,11.99,2019-08-16 17:37:00,635 Main St, Portland,OR,97035 +246262,Wired Headphones,1,11.99,2019-08-13 16:57:00,907 10th St, San Francisco,CA,94016 +246262,USB-C Charging Cable,1,11.95,2019-08-13 16:57:00,907 10th St, San Francisco,CA,94016 +246263,USB-C Charging Cable,1,11.95,2019-08-07 13:49:00,85 Jackson St, Seattle,WA,98101 +246264,Bose SoundSport Headphones,1,99.99,2019-08-24 11:36:00,533 Dogwood St, San Francisco,CA,94016 +246265,AAA Batteries (4-pack),1,2.99,2019-08-25 15:41:00,760 Walnut St, Portland,OR,97035 +246266,AA Batteries (4-pack),2,3.84,2019-08-14 18:18:00,700 Spruce St, New York City,NY,10001 +246267,Wired Headphones,1,11.99,2019-08-01 12:13:00,56 West St, Boston,MA,02215 +246268,27in 4K Gaming Monitor,1,389.99,2019-08-24 13:33:00,960 Jefferson St, Dallas,TX,75001 +246269,AAA Batteries (4-pack),1,2.99,2019-08-27 22:32:00,731 Wilson St, Los Angeles,CA,90001 +246270,Lightning Charging Cable,1,14.95,2019-08-20 13:22:00,727 Forest St, New York City,NY,10001 +246271,Google Phone,1,600.0,2019-08-06 20:44:00,637 Wilson St, Los Angeles,CA,90001 +246272,Macbook Pro Laptop,1,1700.0,2019-08-28 21:16:00,746 Pine St, New York City,NY,10001 +246273,Lightning Charging Cable,1,14.95,2019-08-16 10:12:00,638 9th St, New York City,NY,10001 +246274,AA Batteries (4-pack),1,3.84,2019-08-29 16:05:00,262 North St, San Francisco,CA,94016 +246275,Lightning Charging Cable,1,14.95,2019-08-26 00:17:00,491 Lake St, San Francisco,CA,94016 +246276,AA Batteries (4-pack),1,3.84,2019-08-15 19:03:00,7 Lake St, Atlanta,GA,30301 +246277,Lightning Charging Cable,1,14.95,2019-08-07 11:02:00,929 Wilson St, Portland,OR,97035 +246278,27in FHD Monitor,1,149.99,2019-08-08 12:08:00,951 Wilson St, Austin,TX,73301 +246279,Flatscreen TV,1,300.0,2019-08-14 22:50:00,983 Washington St, New York City,NY,10001 +246280,AA Batteries (4-pack),2,3.84,2019-08-05 17:31:00,387 Johnson St, Portland,OR,97035 +246281,Lightning Charging Cable,1,14.95,2019-08-09 11:39:00,266 8th St, Seattle,WA,98101 +246282,27in 4K Gaming Monitor,1,389.99,2019-08-09 17:58:00,467 2nd St, Atlanta,GA,30301 +246283,AAA Batteries (4-pack),1,2.99,2019-08-03 13:14:00,709 1st St, San Francisco,CA,94016 +246284,AAA Batteries (4-pack),1,2.99,2019-08-30 22:06:00,926 Church St, Boston,MA,02215 +246285,Apple Airpods Headphones,1,150.0,2019-08-18 01:19:00,649 8th St, San Francisco,CA,94016 +246286,Google Phone,1,600.0,2019-08-16 19:15:00,758 8th St, Seattle,WA,98101 +246286,Bose SoundSport Headphones,1,99.99,2019-08-16 19:15:00,758 8th St, Seattle,WA,98101 +246287,Wired Headphones,1,11.99,2019-08-06 20:27:00,332 Washington St, San Francisco,CA,94016 +246288,USB-C Charging Cable,1,11.95,2019-08-27 08:15:00,762 Jackson St, Portland,OR,97035 +246289,Bose SoundSport Headphones,1,99.99,2019-08-18 17:44:00,845 Lake St, Boston,MA,02215 +246290,Flatscreen TV,1,300.0,2019-08-26 18:08:00,713 Lincoln St, San Francisco,CA,94016 +246291,Wired Headphones,1,11.99,2019-08-20 20:48:00,752 9th St, Seattle,WA,98101 +246292,Flatscreen TV,1,300.0,2019-08-18 23:34:00,208 Park St, New York City,NY,10001 +246293,iPhone,1,700.0,2019-08-10 13:44:00,709 Cherry St, New York City,NY,10001 +246294,iPhone,1,700.0,2019-08-05 10:27:00,802 Church St, Boston,MA,02215 +246295,Lightning Charging Cable,1,14.95,2019-08-30 16:46:00,417 Jefferson St, Atlanta,GA,30301 +246296,AA Batteries (4-pack),1,3.84,2019-08-16 17:33:00,631 Hill St, San Francisco,CA,94016 +246297,Lightning Charging Cable,1,14.95,2019-08-17 14:03:00,428 10th St, Seattle,WA,98101 +246298,iPhone,1,700.0,2019-08-03 17:24:00,212 12th St, Boston,MA,02215 +246299,Apple Airpods Headphones,1,150.0,2019-08-29 17:05:00,324 Cherry St, San Francisco,CA,94016 +246300,27in 4K Gaming Monitor,1,389.99,2019-08-04 16:18:00,38 6th St, Austin,TX,73301 +246301,AAA Batteries (4-pack),3,2.99,2019-08-17 11:26:00,936 Center St, Seattle,WA,98101 +246302,USB-C Charging Cable,1,11.95,2019-08-10 10:38:00,617 8th St, Portland,OR,97035 +246303,iPhone,1,700.0,2019-08-26 18:28:00,77 Lakeview St, Boston,MA,02215 +246304,iPhone,1,700.0,2019-08-01 08:59:00,599 Park St, San Francisco,CA,94016 +246305,34in Ultrawide Monitor,1,379.99,2019-08-05 10:14:00,861 Willow St, Dallas,TX,75001 +246306,USB-C Charging Cable,1,11.95,2019-08-29 19:06:00,735 Walnut St, Los Angeles,CA,90001 +246307,Bose SoundSport Headphones,1,99.99,2019-08-29 01:47:00,197 Jefferson St, New York City,NY,10001 +246308,USB-C Charging Cable,1,11.95,2019-08-13 19:13:00,786 Meadow St, Austin,TX,73301 +246309,AA Batteries (4-pack),1,3.84,2019-08-08 12:33:00,418 11th St, Austin,TX,73301 +246310,27in 4K Gaming Monitor,1,389.99,2019-08-30 18:54:00,57 Hill St, San Francisco,CA,94016 +246311,Apple Airpods Headphones,1,150.0,2019-08-19 13:54:00,745 Washington St, Los Angeles,CA,90001 +246312,Lightning Charging Cable,3,14.95,2019-08-14 13:02:00,595 Adams St, Dallas,TX,75001 +246313,Wired Headphones,1,11.99,2019-08-07 11:48:00,42 Meadow St, Portland,ME,04101 +246314,Apple Airpods Headphones,1,150.0,2019-08-14 22:55:00,28 West St, Austin,TX,73301 +246315,Macbook Pro Laptop,1,1700.0,2019-08-04 14:13:00,861 Main St, New York City,NY,10001 +246316,Macbook Pro Laptop,1,1700.0,2019-08-22 16:40:00,694 Church St, San Francisco,CA,94016 +246317,Wired Headphones,1,11.99,2019-08-27 13:23:00,983 13th St, Atlanta,GA,30301 +246318,27in FHD Monitor,1,149.99,2019-08-29 12:14:00,926 Chestnut St, Portland,OR,97035 +246319,Bose SoundSport Headphones,1,99.99,2019-08-28 15:46:00,860 Lakeview St, San Francisco,CA,94016 +246320,AA Batteries (4-pack),1,3.84,2019-08-02 18:21:00,499 Spruce St, San Francisco,CA,94016 +246321,Flatscreen TV,1,300.0,2019-08-13 18:48:00,903 Highland St, Boston,MA,02215 +246322,34in Ultrawide Monitor,1,379.99,2019-08-03 17:21:00,297 Walnut St, Los Angeles,CA,90001 +246323,20in Monitor,1,109.99,2019-08-17 16:46:00,457 Lake St, Portland,OR,97035 +246324,AAA Batteries (4-pack),1,2.99,2019-08-17 18:40:00,278 Center St, San Francisco,CA,94016 +246325,Bose SoundSport Headphones,1,99.99,2019-08-20 12:07:00,708 North St, Seattle,WA,98101 +246326,iPhone,1,700.0,2019-08-22 14:27:00,373 11th St, Los Angeles,CA,90001 +246327,AA Batteries (4-pack),1,3.84,2019-08-07 06:47:00,673 Wilson St, Los Angeles,CA,90001 +246328,AAA Batteries (4-pack),1,2.99,2019-08-24 18:31:00,427 Cedar St, Los Angeles,CA,90001 +246329,AAA Batteries (4-pack),3,2.99,2019-08-19 21:44:00,819 14th St, San Francisco,CA,94016 +246330,USB-C Charging Cable,1,11.95,2019-08-29 12:48:00,642 Spruce St, Atlanta,GA,30301 +246331,AA Batteries (4-pack),1,3.84,2019-08-21 12:29:00,806 Pine St, Seattle,WA,98101 +246332,AA Batteries (4-pack),2,3.84,2019-08-28 10:37:00,744 Highland St, Los Angeles,CA,90001 +246333,AA Batteries (4-pack),2,3.84,2019-08-03 11:15:00,605 Spruce St, Los Angeles,CA,90001 +246334,USB-C Charging Cable,1,11.95,2019-08-02 06:53:00,4 Church St, Portland,OR,97035 +246335,Lightning Charging Cable,1,14.95,2019-08-29 23:10:00,101 10th St, Dallas,TX,75001 +246336,Lightning Charging Cable,1,14.95,2019-08-23 19:15:00,346 Spruce St, Portland,OR,97035 +246337,Lightning Charging Cable,1,14.95,2019-08-01 22:07:00,316 Lakeview St, San Francisco,CA,94016 +246338,AA Batteries (4-pack),1,3.84,2019-08-23 20:03:00,291 Chestnut St, San Francisco,CA,94016 +246339,Bose SoundSport Headphones,1,99.99,2019-08-14 09:13:00,211 Lakeview St, New York City,NY,10001 +246340,Wired Headphones,1,11.99,2019-08-03 18:36:00,882 Church St, Atlanta,GA,30301 +246341,Lightning Charging Cable,1,14.95,2019-08-31 15:29:00,174 Center St, Portland,OR,97035 +246342,Lightning Charging Cable,1,14.95,2019-08-19 20:55:00,541 River St, Austin,TX,73301 +246343,Apple Airpods Headphones,1,150.0,2019-08-22 11:27:00,922 Chestnut St, San Francisco,CA,94016 +246344,Apple Airpods Headphones,1,150.0,2019-08-27 10:14:00,392 Spruce St, Dallas,TX,75001 +246345,AA Batteries (4-pack),2,3.84,2019-08-30 08:35:00,155 West St, New York City,NY,10001 +246346,AA Batteries (4-pack),2,3.84,2019-08-03 10:13:00,299 Hill St, Atlanta,GA,30301 +246347,Flatscreen TV,1,300.0,2019-08-20 16:35:00,718 Jefferson St, New York City,NY,10001 +246348,20in Monitor,1,109.99,2019-08-20 13:29:00,382 Center St, San Francisco,CA,94016 +246349,20in Monitor,1,109.99,2019-08-18 20:28:00,975 Cherry St, San Francisco,CA,94016 +246350,Wired Headphones,1,11.99,2019-08-31 12:25:00,442 Walnut St, San Francisco,CA,94016 +246351,AA Batteries (4-pack),2,3.84,2019-08-06 21:27:00,767 Meadow St, Los Angeles,CA,90001 +246352,USB-C Charging Cable,1,11.95,2019-08-10 17:49:00,194 4th St, New York City,NY,10001 +246353,Apple Airpods Headphones,1,150.0,2019-08-23 23:03:00,913 River St, San Francisco,CA,94016 +246354,Wired Headphones,1,11.99,2019-08-29 12:26:00,171 Park St, Portland,OR,97035 +246355,27in FHD Monitor,1,149.99,2019-08-08 20:25:00,371 Adams St, Los Angeles,CA,90001 +246356,Lightning Charging Cable,1,14.95,2019-08-15 15:36:00,564 Chestnut St, Los Angeles,CA,90001 +246357,AA Batteries (4-pack),1,3.84,2019-08-07 15:26:00,631 Cedar St, San Francisco,CA,94016 +246358,Apple Airpods Headphones,1,150.0,2019-08-08 22:24:00,913 Madison St, Dallas,TX,75001 +246359,20in Monitor,1,109.99,2019-08-26 21:24:00,290 7th St, Los Angeles,CA,90001 +246360,20in Monitor,1,109.99,2019-08-03 22:07:00,707 Spruce St, San Francisco,CA,94016 +246361,AA Batteries (4-pack),1,3.84,2019-08-24 10:03:00,942 Washington St, Boston,MA,02215 +246362,Bose SoundSport Headphones,1,99.99,2019-08-14 20:28:00,42 Elm St, Dallas,TX,75001 +246363,Flatscreen TV,1,300.0,2019-08-21 12:20:00,962 1st St, Dallas,TX,75001 +246364,27in FHD Monitor,1,149.99,2019-08-14 02:54:00,504 Chestnut St, San Francisco,CA,94016 +246365,27in 4K Gaming Monitor,1,389.99,2019-08-05 05:34:00,160 6th St, Austin,TX,73301 +246366,27in FHD Monitor,1,149.99,2019-08-28 08:50:00,746 11th St, New York City,NY,10001 +246367,Apple Airpods Headphones,1,150.0,2019-08-16 20:03:00,638 12th St, San Francisco,CA,94016 +246368,USB-C Charging Cable,1,11.95,2019-08-03 10:34:00,222 Elm St, Dallas,TX,75001 +246369,AAA Batteries (4-pack),1,2.99,2019-08-07 16:56:00,251 Lakeview St, Atlanta,GA,30301 +246370,Bose SoundSport Headphones,1,99.99,2019-08-04 20:44:00,834 Jefferson St, Atlanta,GA,30301 +246371,Bose SoundSport Headphones,1,99.99,2019-08-04 17:31:00,390 13th St, Los Angeles,CA,90001 +246372,20in Monitor,1,109.99,2019-08-10 16:20:00,716 Madison St, Los Angeles,CA,90001 +246373,Lightning Charging Cable,1,14.95,2019-08-20 17:43:00,673 Lake St, New York City,NY,10001 +246374,USB-C Charging Cable,1,11.95,2019-08-04 20:36:00,222 Lake St, Boston,MA,02215 +246375,AA Batteries (4-pack),1,3.84,2019-08-16 10:45:00,615 11th St, Dallas,TX,75001 +246376,AAA Batteries (4-pack),1,2.99,2019-08-09 08:41:00,84 12th St, Los Angeles,CA,90001 +246377,AAA Batteries (4-pack),1,2.99,2019-08-12 12:49:00,877 7th St, Boston,MA,02215 +246378,AA Batteries (4-pack),1,3.84,2019-08-28 19:43:00,420 Madison St, San Francisco,CA,94016 +246379,USB-C Charging Cable,1,11.95,2019-08-25 12:31:00,964 Lake St, San Francisco,CA,94016 +246380,Macbook Pro Laptop,1,1700.0,2019-08-23 03:39:00,311 Washington St, Seattle,WA,98101 +246381,ThinkPad Laptop,1,999.99,2019-08-23 19:44:00,557 Pine St, Boston,MA,02215 +246382,27in FHD Monitor,1,149.99,2019-08-05 16:25:00,411 Sunset St, New York City,NY,10001 +246383,Lightning Charging Cable,1,14.95,2019-08-14 20:38:00,49 North St, Dallas,TX,75001 +246384,Flatscreen TV,1,300.0,2019-08-05 16:36:00,980 Johnson St, Los Angeles,CA,90001 +246385,USB-C Charging Cable,1,11.95,2019-08-23 08:00:00,332 Maple St, Los Angeles,CA,90001 +246386,AA Batteries (4-pack),1,3.84,2019-08-27 20:38:00,765 10th St, Austin,TX,73301 +246387,Bose SoundSport Headphones,1,99.99,2019-08-25 11:46:00,517 5th St, Boston,MA,02215 +246388,USB-C Charging Cable,1,11.95,2019-08-15 00:02:00,823 8th St, Seattle,WA,98101 +246389,AA Batteries (4-pack),1,3.84,2019-08-15 14:44:00,334 Ridge St, Atlanta,GA,30301 +246390,AAA Batteries (4-pack),1,2.99,2019-08-01 16:51:00,936 Johnson St, Dallas,TX,75001 +246391,ThinkPad Laptop,1,999.99,2019-08-22 22:52:00,484 Center St, Dallas,TX,75001 +246392,Lightning Charging Cable,1,14.95,2019-08-25 16:00:00,541 Church St, New York City,NY,10001 +246393,AAA Batteries (4-pack),1,2.99,2019-08-25 09:55:00,403 Cherry St, New York City,NY,10001 +246394,Wired Headphones,1,11.99,2019-08-15 08:03:00,374 10th St, San Francisco,CA,94016 +246395,Apple Airpods Headphones,1,150.0,2019-08-05 13:22:00,600 Madison St, New York City,NY,10001 +246396,27in FHD Monitor,1,149.99,2019-08-16 11:47:00,948 Lincoln St, Austin,TX,73301 +246397,Lightning Charging Cable,1,14.95,2019-08-20 20:10:00,649 Cedar St, Los Angeles,CA,90001 +246398,Apple Airpods Headphones,1,150.0,2019-08-19 01:01:00,792 Willow St, New York City,NY,10001 +246399,AAA Batteries (4-pack),1,2.99,2019-08-19 20:58:00,958 Meadow St, Seattle,WA,98101 +246400,USB-C Charging Cable,1,11.95,2019-08-18 23:30:00,519 Church St, New York City,NY,10001 +246401,AA Batteries (4-pack),1,3.84,2019-08-20 18:39:00,400 1st St, Dallas,TX,75001 +246402,Wired Headphones,1,11.99,2019-08-17 12:05:00,417 9th St, San Francisco,CA,94016 +246403,AAA Batteries (4-pack),2,2.99,2019-08-28 09:11:00,174 River St, San Francisco,CA,94016 +246404,AAA Batteries (4-pack),1,2.99,2019-08-17 20:20:00,278 Johnson St, Los Angeles,CA,90001 +246405,AAA Batteries (4-pack),2,2.99,2019-08-07 18:47:00,615 Meadow St, Dallas,TX,75001 +246406,AAA Batteries (4-pack),1,2.99,2019-08-19 22:56:00,302 North St, San Francisco,CA,94016 +246407,Apple Airpods Headphones,1,150.0,2019-08-05 17:29:00,757 Center St, Portland,ME,04101 +246408,AAA Batteries (4-pack),1,2.99,2019-08-06 09:03:00,409 Walnut St, Los Angeles,CA,90001 +246409,34in Ultrawide Monitor,1,379.99,2019-08-06 11:03:00,224 Highland St, Portland,OR,97035 +246410,AA Batteries (4-pack),1,3.84,2019-08-09 23:41:00,340 Cherry St, Dallas,TX,75001 +246411,27in FHD Monitor,1,149.99,2019-08-12 13:08:00,601 Washington St, Boston,MA,02215 +246412,AAA Batteries (4-pack),1,2.99,2019-08-31 20:31:00,405 Sunset St, San Francisco,CA,94016 +246413,Wired Headphones,1,11.99,2019-08-03 12:25:00,399 Chestnut St, Portland,OR,97035 +246414,Flatscreen TV,1,300.0,2019-08-26 19:55:00,549 Lakeview St, Los Angeles,CA,90001 +246415,AAA Batteries (4-pack),4,2.99,2019-08-13 15:42:00,1 Center St, San Francisco,CA,94016 +246416,Lightning Charging Cable,1,14.95,2019-08-15 13:09:00,469 Washington St, San Francisco,CA,94016 +246417,USB-C Charging Cable,1,11.95,2019-08-09 22:34:00,367 Meadow St, Austin,TX,73301 +246418,Macbook Pro Laptop,1,1700.0,2019-08-25 08:57:00,844 Lake St, New York City,NY,10001 +246419,27in FHD Monitor,1,149.99,2019-08-18 09:33:00,563 Lakeview St, Los Angeles,CA,90001 +246420,iPhone,1,700.0,2019-08-18 10:19:00,235 West St, San Francisco,CA,94016 +246421,Wired Headphones,1,11.99,2019-08-07 18:33:00,179 Meadow St, Los Angeles,CA,90001 +246422,Wired Headphones,1,11.99,2019-08-15 08:57:00,352 Jefferson St, San Francisco,CA,94016 +246423,USB-C Charging Cable,1,11.95,2019-08-01 18:35:00,39 8th St, New York City,NY,10001 +246424,Apple Airpods Headphones,1,150.0,2019-08-02 21:18:00,855 Forest St, Dallas,TX,75001 +246425,Lightning Charging Cable,1,14.95,2019-08-20 11:27:00,948 Hill St, Los Angeles,CA,90001 +246426,Bose SoundSport Headphones,1,99.99,2019-08-02 17:40:00,783 Spruce St, Dallas,TX,75001 +246427,Wired Headphones,1,11.99,2019-08-20 07:03:00,117 Park St, New York City,NY,10001 +246428,AAA Batteries (4-pack),3,2.99,2019-08-23 08:46:00,901 4th St, New York City,NY,10001 +246429,Flatscreen TV,1,300.0,2019-08-31 15:42:00,942 Jackson St, Atlanta,GA,30301 +246430,iPhone,1,700.0,2019-08-05 09:27:00,465 Jackson St, San Francisco,CA,94016 +246431,20in Monitor,1,109.99,2019-08-01 18:54:00,905 Lincoln St, San Francisco,CA,94016 +246432,Google Phone,1,600.0,2019-08-25 18:57:00,821 13th St, New York City,NY,10001 +246433,USB-C Charging Cable,1,11.95,2019-08-28 11:07:00,618 Pine St, Austin,TX,73301 +246434,Bose SoundSport Headphones,1,99.99,2019-08-27 14:52:00,694 Hickory St, Seattle,WA,98101 +246435,USB-C Charging Cable,1,11.95,2019-08-02 08:08:00,872 2nd St, Dallas,TX,75001 +246436,USB-C Charging Cable,1,11.95,2019-08-25 11:11:00,254 Jackson St, Austin,TX,73301 +246437,USB-C Charging Cable,1,11.95,2019-08-06 21:06:00,757 Lakeview St, San Francisco,CA,94016 +246438,iPhone,1,700.0,2019-08-01 22:17:00,542 11th St, Atlanta,GA,30301 +246438,Lightning Charging Cable,1,14.95,2019-08-01 22:17:00,542 11th St, Atlanta,GA,30301 +246439,27in FHD Monitor,1,149.99,2019-08-04 12:43:00,614 Hickory St, Dallas,TX,75001 +246440,AAA Batteries (4-pack),2,2.99,2019-08-17 13:21:00,561 Maple St, San Francisco,CA,94016 +246441,27in 4K Gaming Monitor,1,389.99,2019-08-11 12:34:00,700 2nd St, San Francisco,CA,94016 +246442,AAA Batteries (4-pack),1,2.99,2019-08-15 16:16:00,113 11th St, Boston,MA,02215 +246443,27in FHD Monitor,1,149.99,2019-08-04 11:00:00,95 7th St, San Francisco,CA,94016 +246444,iPhone,1,700.0,2019-08-25 05:32:00,871 River St, Los Angeles,CA,90001 +246445,34in Ultrawide Monitor,1,379.99,2019-08-14 22:54:00,28 Main St, San Francisco,CA,94016 +246446,Wired Headphones,1,11.99,2019-08-22 20:13:00,146 Forest St, San Francisco,CA,94016 +246447,Apple Airpods Headphones,1,150.0,2019-08-22 23:17:00,918 Johnson St, New York City,NY,10001 +246448,27in FHD Monitor,1,149.99,2019-08-12 15:24:00,806 Forest St, Los Angeles,CA,90001 +246449,USB-C Charging Cable,2,11.95,2019-08-10 14:37:00,495 5th St, Seattle,WA,98101 +246450,Wired Headphones,1,11.99,2019-08-09 11:28:00,441 Maple St, New York City,NY,10001 +246451,LG Dryer,1,600.0,2019-08-16 10:21:00,534 12th St, San Francisco,CA,94016 +246452,AA Batteries (4-pack),3,3.84,2019-08-12 18:03:00,413 11th St, San Francisco,CA,94016 +246453,27in FHD Monitor,1,149.99,2019-08-23 22:39:00,956 Park St, Portland,ME,04101 +246454,Wired Headphones,1,11.99,2019-08-04 19:58:00,440 Jackson St, Los Angeles,CA,90001 +246455,Wired Headphones,1,11.99,2019-08-20 01:22:00,923 Ridge St, Portland,OR,97035 +246456,AA Batteries (4-pack),1,3.84,2019-08-14 19:58:00,507 Dogwood St, Atlanta,GA,30301 +246457,Vareebadd Phone,1,400.0,2019-08-01 15:31:00,31 Lincoln St, Atlanta,GA,30301 +246458,Lightning Charging Cable,1,14.95,2019-08-21 09:29:00,261 Lakeview St, Boston,MA,02215 +246459,USB-C Charging Cable,1,11.95,2019-08-27 18:39:00,70 Madison St, Los Angeles,CA,90001 +246460,Apple Airpods Headphones,1,150.0,2019-08-31 16:47:00,591 Hickory St, Atlanta,GA,30301 +246461,Bose SoundSport Headphones,1,99.99,2019-08-19 15:26:00,166 West St, New York City,NY,10001 +246462,USB-C Charging Cable,1,11.95,2019-08-22 20:24:00,793 Johnson St, San Francisco,CA,94016 +246463,Wired Headphones,1,11.99,2019-08-10 10:01:00,46 Sunset St, Portland,OR,97035 +246464,Bose SoundSport Headphones,1,99.99,2019-08-26 08:05:00,667 10th St, New York City,NY,10001 +246465,27in 4K Gaming Monitor,1,389.99,2019-08-14 11:41:00,340 13th St, Dallas,TX,75001 +246466,Lightning Charging Cable,1,14.95,2019-08-09 19:23:00,592 Lake St, Los Angeles,CA,90001 +246467,AAA Batteries (4-pack),1,2.99,2019-08-22 09:52:00,903 Hickory St, Dallas,TX,75001 +246468,Lightning Charging Cable,1,14.95,2019-08-31 13:16:00,592 10th St, Boston,MA,02215 +246469,27in 4K Gaming Monitor,1,389.99,2019-08-07 16:50:00,54 Forest St, Los Angeles,CA,90001 +246470,LG Dryer,1,600.0,2019-08-25 12:07:00,669 Main St, San Francisco,CA,94016 +246471,AA Batteries (4-pack),1,3.84,2019-08-14 12:43:00,382 Madison St, Atlanta,GA,30301 +246472,Macbook Pro Laptop,1,1700.0,2019-08-20 16:39:00,384 6th St, Boston,MA,02215 +246473,34in Ultrawide Monitor,1,379.99,2019-08-25 14:38:00,798 Hill St, Atlanta,GA,30301 +246474,AAA Batteries (4-pack),1,2.99,2019-08-22 12:29:00,190 Highland St, Portland,OR,97035 +246475,20in Monitor,1,109.99,2019-08-19 14:11:00,817 Adams St, Dallas,TX,75001 +246476,Macbook Pro Laptop,1,1700.0,2019-08-31 21:14:00,85 Elm St, San Francisco,CA,94016 +246477,AAA Batteries (4-pack),3,2.99,2019-08-19 19:52:00,824 Johnson St, Boston,MA,02215 +246478,USB-C Charging Cable,1,11.95,2019-08-05 11:45:00,130 South St, San Francisco,CA,94016 +246479,20in Monitor,1,109.99,2019-08-15 13:17:00,880 14th St, Boston,MA,02215 +246480,27in 4K Gaming Monitor,1,389.99,2019-08-04 14:11:00,327 Ridge St, Dallas,TX,75001 +246481,Bose SoundSport Headphones,1,99.99,2019-08-03 21:00:00,120 11th St, Los Angeles,CA,90001 +246482,AAA Batteries (4-pack),1,2.99,2019-08-10 19:43:00,94 7th St, Seattle,WA,98101 +246483,Google Phone,1,600.0,2019-08-30 22:41:00,601 Meadow St, Los Angeles,CA,90001 +246484,Bose SoundSport Headphones,1,99.99,2019-08-02 22:36:00,196 Johnson St, San Francisco,CA,94016 +246485,Wired Headphones,1,11.99,2019-08-08 11:46:00,783 Jefferson St, San Francisco,CA,94016 +246486,Apple Airpods Headphones,1,150.0,2019-08-17 10:22:00,911 Chestnut St, Dallas,TX,75001 +246487,Macbook Pro Laptop,1,1700.0,2019-08-11 17:17:00,247 Walnut St, Boston,MA,02215 +246488,AAA Batteries (4-pack),2,2.99,2019-08-30 00:22:00,628 Cherry St, New York City,NY,10001 +246489,LG Washing Machine,1,600.0,2019-08-26 18:08:00,402 Cherry St, Boston,MA,02215 +246490,Flatscreen TV,1,300.0,2019-08-06 14:30:00,137 11th St, San Francisco,CA,94016 +246491,USB-C Charging Cable,1,11.95,2019-08-18 16:43:00,657 1st St, New York City,NY,10001 +246492,AA Batteries (4-pack),1,3.84,2019-08-22 19:31:00,784 Cherry St, Los Angeles,CA,90001 +246493,Lightning Charging Cable,1,14.95,2019-08-02 00:10:00,362 13th St, Los Angeles,CA,90001 +246494,Wired Headphones,1,11.99,2019-08-09 20:57:00,995 Dogwood St, San Francisco,CA,94016 +246495,Apple Airpods Headphones,1,150.0,2019-08-29 07:24:00,794 Adams St, New York City,NY,10001 +246496,USB-C Charging Cable,1,11.95,2019-08-02 13:03:00,517 Meadow St, San Francisco,CA,94016 +246497,ThinkPad Laptop,1,999.99,2019-08-15 19:47:00,296 Washington St, Dallas,TX,75001 +246498,Lightning Charging Cable,1,14.95,2019-08-31 08:33:00,698 Hickory St, Dallas,TX,75001 +246499,Apple Airpods Headphones,1,150.0,2019-08-07 14:05:00,509 12th St, San Francisco,CA,94016 +246500,Lightning Charging Cable,1,14.95,2019-08-21 11:41:00,5 Church St, New York City,NY,10001 +246501,27in FHD Monitor,1,149.99,2019-08-22 20:58:00,767 Spruce St, San Francisco,CA,94016 +246502,Apple Airpods Headphones,1,150.0,2019-08-19 23:08:00,107 Spruce St, Boston,MA,02215 +246503,AAA Batteries (4-pack),2,2.99,2019-08-26 19:26:00,144 Jackson St, Boston,MA,02215 +246504,Apple Airpods Headphones,1,150.0,2019-08-19 04:10:00,28 Adams St, San Francisco,CA,94016 +246505,AAA Batteries (4-pack),2,2.99,2019-08-24 14:01:00,944 Johnson St, Seattle,WA,98101 +246506,Wired Headphones,2,11.99,2019-08-11 11:04:00,706 Spruce St, Los Angeles,CA,90001 +246507,AA Batteries (4-pack),1,3.84,2019-08-15 07:58:00,209 8th St, Boston,MA,02215 +246508,Bose SoundSport Headphones,1,99.99,2019-08-02 13:15:00,404 11th St, Austin,TX,73301 +246509,AA Batteries (4-pack),1,3.84,2019-08-26 20:03:00,686 Park St, New York City,NY,10001 +246510,Bose SoundSport Headphones,1,99.99,2019-08-21 23:47:00,924 14th St, San Francisco,CA,94016 +246511,Bose SoundSport Headphones,1,99.99,2019-08-31 09:34:00,806 Elm St, Los Angeles,CA,90001 +246512,AAA Batteries (4-pack),2,2.99,2019-08-01 12:02:00,292 Jefferson St, Los Angeles,CA,90001 +246513,34in Ultrawide Monitor,1,379.99,2019-08-10 12:42:00,390 11th St, Boston,MA,02215 +246514,27in FHD Monitor,1,149.99,2019-08-09 12:29:00,496 Meadow St, Atlanta,GA,30301 +246515,Apple Airpods Headphones,1,150.0,2019-08-29 08:49:00,629 Adams St, San Francisco,CA,94016 +246516,Flatscreen TV,1,300.0,2019-08-10 17:18:00,781 Cedar St, San Francisco,CA,94016 +246517,AAA Batteries (4-pack),3,2.99,2019-08-12 07:50:00,970 Jefferson St, Dallas,TX,75001 +246518,Macbook Pro Laptop,1,1700.0,2019-08-29 20:11:00,641 10th St, San Francisco,CA,94016 +246519,Lightning Charging Cable,1,14.95,2019-08-04 10:28:00,695 Elm St, Los Angeles,CA,90001 +246520,Bose SoundSport Headphones,1,99.99,2019-08-07 11:49:00,197 Jefferson St, San Francisco,CA,94016 +246521,Bose SoundSport Headphones,1,99.99,2019-08-10 19:50:00,617 13th St, Atlanta,GA,30301 +246522,AAA Batteries (4-pack),1,2.99,2019-08-10 19:18:00,115 12th St, Los Angeles,CA,90001 +246523,Google Phone,1,600.0,2019-08-02 21:24:00,479 North St, San Francisco,CA,94016 +246524,AAA Batteries (4-pack),1,2.99,2019-08-23 19:53:00,391 Meadow St, Seattle,WA,98101 +246525,Bose SoundSport Headphones,1,99.99,2019-08-11 17:02:00,743 9th St, Dallas,TX,75001 +246526,Apple Airpods Headphones,1,150.0,2019-08-22 19:39:00,440 Meadow St, Atlanta,GA,30301 +246527,34in Ultrawide Monitor,1,379.99,2019-08-20 08:35:00,176 11th St, Los Angeles,CA,90001 +246528,USB-C Charging Cable,2,11.95,2019-08-19 22:43:00,287 Jefferson St, New York City,NY,10001 +246529,Lightning Charging Cable,1,14.95,2019-08-29 10:54:00,140 6th St, Los Angeles,CA,90001 +246530,AA Batteries (4-pack),1,3.84,2019-08-23 18:57:00,938 Madison St, New York City,NY,10001 +246531,Apple Airpods Headphones,2,150.0,2019-08-19 06:57:00,812 Ridge St, Seattle,WA,98101 +246532,USB-C Charging Cable,2,11.95,2019-08-26 06:40:00,992 14th St, Seattle,WA,98101 +246533,Lightning Charging Cable,2,14.95,2019-08-25 17:58:00,809 Jackson St, San Francisco,CA,94016 +246534,iPhone,1,700.0,2019-08-21 01:44:00,733 Cherry St, Boston,MA,02215 +246535,Apple Airpods Headphones,1,150.0,2019-08-22 19:36:00,839 Hickory St, Dallas,TX,75001 +246536,ThinkPad Laptop,1,999.99,2019-08-08 03:15:00,980 14th St, Portland,OR,97035 +246537,Lightning Charging Cable,1,14.95,2019-08-21 23:21:00,529 Park St, Atlanta,GA,30301 +246538,Bose SoundSport Headphones,1,99.99,2019-08-31 12:33:00,73 Jackson St, New York City,NY,10001 +246539,USB-C Charging Cable,1,11.95,2019-08-28 14:22:00,102 Center St, Dallas,TX,75001 +246539,Lightning Charging Cable,1,14.95,2019-08-28 14:22:00,102 Center St, Dallas,TX,75001 +246540,USB-C Charging Cable,1,11.95,2019-08-27 02:03:00,563 Ridge St, Los Angeles,CA,90001 +246541,AA Batteries (4-pack),1,3.84,2019-08-10 09:09:00,981 South St, San Francisco,CA,94016 +246542,20in Monitor,1,109.99,2019-08-27 16:46:00,790 4th St, New York City,NY,10001 +246543,USB-C Charging Cable,1,11.95,2019-08-10 15:17:00,683 5th St, Boston,MA,02215 +246544,AA Batteries (4-pack),3,3.84,2019-08-25 15:33:00,678 9th St, Dallas,TX,75001 +246545,USB-C Charging Cable,1,11.95,2019-08-23 11:38:00,927 Madison St, San Francisco,CA,94016 +246546,27in 4K Gaming Monitor,1,389.99,2019-08-10 15:49:00,902 South St, Boston,MA,02215 +246547,AA Batteries (4-pack),1,3.84,2019-08-18 22:17:00,604 Ridge St, San Francisco,CA,94016 +246548,AA Batteries (4-pack),1,3.84,2019-08-23 18:32:00,754 Hickory St, San Francisco,CA,94016 +246549,Flatscreen TV,1,300.0,2019-08-26 12:15:00,867 12th St, San Francisco,CA,94016 +246550,Wired Headphones,1,11.99,2019-08-15 10:19:00,766 North St, San Francisco,CA,94016 +246551,Apple Airpods Headphones,1,150.0,2019-08-22 08:25:00,667 10th St, New York City,NY,10001 +246552,Wired Headphones,1,11.99,2019-08-07 15:31:00,491 Spruce St, Dallas,TX,75001 +246553,Lightning Charging Cable,1,14.95,2019-08-15 10:29:00,749 Elm St, Atlanta,GA,30301 +246554,Wired Headphones,2,11.99,2019-08-29 11:35:00,793 13th St, Atlanta,GA,30301 +246555,Wired Headphones,1,11.99,2019-08-17 11:47:00,93 Jefferson St, San Francisco,CA,94016 +246556,Apple Airpods Headphones,1,150.0,2019-08-26 12:21:00,352 Highland St, Los Angeles,CA,90001 +246557,Wired Headphones,1,11.99,2019-08-17 14:15:00,701 7th St, Atlanta,GA,30301 +246558,LG Dryer,1,600.0,2019-08-10 15:22:00,99 7th St, New York City,NY,10001 +246559,Apple Airpods Headphones,1,150.0,2019-08-09 10:41:00,906 Forest St, Boston,MA,02215 +246560,Vareebadd Phone,1,400.0,2019-08-03 16:52:00,773 Church St, Atlanta,GA,30301 +246561,20in Monitor,1,109.99,2019-08-29 08:47:00,428 Willow St, San Francisco,CA,94016 +246562,Lightning Charging Cable,1,14.95,2019-08-30 14:50:00,32 Highland St, Seattle,WA,98101 +246563,Macbook Pro Laptop,1,1700.0,2019-08-15 14:57:00,958 South St, Los Angeles,CA,90001 +246564,Apple Airpods Headphones,1,150.0,2019-08-24 04:56:00,50 4th St, San Francisco,CA,94016 +246565,27in FHD Monitor,1,149.99,2019-08-01 09:34:00,741 Church St, Dallas,TX,75001 +246566,Wired Headphones,1,11.99,2019-08-07 17:03:00,946 Willow St, San Francisco,CA,94016 +246567,AA Batteries (4-pack),3,3.84,2019-08-23 15:07:00,179 Meadow St, Los Angeles,CA,90001 +246568,Wired Headphones,1,11.99,2019-08-22 07:19:00,30 8th St, Boston,MA,02215 +246569,Lightning Charging Cable,1,14.95,2019-08-19 01:52:00,493 13th St, San Francisco,CA,94016 +246570,Lightning Charging Cable,1,14.95,2019-08-12 11:17:00,722 Walnut St, San Francisco,CA,94016 +246571,USB-C Charging Cable,1,11.95,2019-08-11 20:29:00,104 Sunset St, Seattle,WA,98101 +246572,AA Batteries (4-pack),3,3.84,2019-08-30 23:16:00,52 Lake St, Seattle,WA,98101 +246573,Wired Headphones,1,11.99,2019-08-29 19:56:00,824 1st St, Boston,MA,02215 +246574,AA Batteries (4-pack),2,3.84,2019-08-29 17:21:00,109 Spruce St, San Francisco,CA,94016 +246575,AA Batteries (4-pack),2,3.84,2019-08-11 08:42:00,247 Cherry St, Los Angeles,CA,90001 +246576,Bose SoundSport Headphones,1,99.99,2019-08-30 11:55:00,55 Ridge St, Los Angeles,CA,90001 +246577,27in FHD Monitor,1,149.99,2019-08-18 00:10:00,838 Chestnut St, New York City,NY,10001 +246578,AA Batteries (4-pack),4,3.84,2019-08-12 05:58:00,578 7th St, New York City,NY,10001 +246579,iPhone,1,700.0,2019-08-21 12:21:00,842 Meadow St, Los Angeles,CA,90001 +246580,Bose SoundSport Headphones,1,99.99,2019-08-01 08:19:00,788 14th St, Seattle,WA,98101 +246581,AA Batteries (4-pack),1,3.84,2019-08-10 11:21:00,20 Meadow St, Boston,MA,02215 +246582,AAA Batteries (4-pack),1,2.99,2019-08-22 18:05:00,664 Forest St, San Francisco,CA,94016 +246583,Wired Headphones,1,11.99,2019-08-05 07:05:00,373 1st St, Seattle,WA,98101 +246584,AAA Batteries (4-pack),1,2.99,2019-08-17 12:16:00,922 Ridge St, San Francisco,CA,94016 +246585,Wired Headphones,1,11.99,2019-08-28 15:12:00,52 5th St, San Francisco,CA,94016 +246586,34in Ultrawide Monitor,1,379.99,2019-08-19 10:35:00,742 Highland St, Los Angeles,CA,90001 +246587,LG Washing Machine,1,600.0,2019-08-11 23:24:00,842 Jefferson St, Dallas,TX,75001 +246588,AAA Batteries (4-pack),1,2.99,2019-08-10 23:57:00,790 Sunset St, New York City,NY,10001 +246589,AAA Batteries (4-pack),1,2.99,2019-08-08 23:31:00,549 Highland St, Boston,MA,02215 +246590,AA Batteries (4-pack),2,3.84,2019-08-31 08:54:00,464 Jefferson St, Atlanta,GA,30301 +246591,27in 4K Gaming Monitor,1,389.99,2019-08-12 07:54:00,134 Wilson St, Seattle,WA,98101 +246592,Wired Headphones,1,11.99,2019-08-16 12:38:00,43 12th St, Dallas,TX,75001 +246593,Lightning Charging Cable,1,14.95,2019-08-01 12:28:00,755 Willow St, San Francisco,CA,94016 +246594,34in Ultrawide Monitor,1,379.99,2019-08-26 16:26:00,669 8th St, Dallas,TX,75001 +246595,AAA Batteries (4-pack),1,2.99,2019-08-29 10:44:00,418 7th St, Atlanta,GA,30301 +246596,Lightning Charging Cable,1,14.95,2019-08-25 18:24:00,207 Maple St, Seattle,WA,98101 +246597,Lightning Charging Cable,1,14.95,2019-08-01 22:32:00,835 Church St, San Francisco,CA,94016 +246598,27in FHD Monitor,1,149.99,2019-08-08 00:34:00,778 Park St, Los Angeles,CA,90001 +246599,AA Batteries (4-pack),1,3.84,2019-08-13 07:39:00,971 Jefferson St, Boston,MA,02215 +246600,27in 4K Gaming Monitor,1,389.99,2019-08-31 20:51:00,376 Madison St, Atlanta,GA,30301 +246601,USB-C Charging Cable,1,11.95,2019-08-20 17:35:00,220 Dogwood St, Los Angeles,CA,90001 +246602,34in Ultrawide Monitor,1,379.99,2019-08-01 14:05:00,490 Sunset St, Seattle,WA,98101 +246603,AAA Batteries (4-pack),2,2.99,2019-08-27 12:29:00,440 1st St, Los Angeles,CA,90001 +246604,iPhone,1,700.0,2019-08-26 12:15:00,100 Spruce St, Atlanta,GA,30301 +246604,Lightning Charging Cable,1,14.95,2019-08-26 12:15:00,100 Spruce St, Atlanta,GA,30301 +246605,Lightning Charging Cable,1,14.95,2019-08-05 10:10:00,802 7th St, Boston,MA,02215 +246606,Vareebadd Phone,1,400.0,2019-08-29 23:34:00,964 Lakeview St, Boston,MA,02215 +246607,Flatscreen TV,1,300.0,2019-08-01 18:57:00,159 Meadow St, Boston,MA,02215 +246608,iPhone,1,700.0,2019-08-10 06:02:00,295 Cherry St, New York City,NY,10001 +246609,USB-C Charging Cable,1,11.95,2019-08-19 14:01:00,315 Johnson St, New York City,NY,10001 +246610,AAA Batteries (4-pack),2,2.99,2019-08-12 11:21:00,687 Cherry St, San Francisco,CA,94016 +246611,Wired Headphones,1,11.99,2019-08-09 19:39:00,521 10th St, San Francisco,CA,94016 +246612,USB-C Charging Cable,2,11.95,2019-08-14 16:58:00,552 Madison St, Atlanta,GA,30301 +246613,Lightning Charging Cable,1,14.95,2019-08-11 18:34:00,812 Maple St, San Francisco,CA,94016 +246614,Lightning Charging Cable,1,14.95,2019-08-11 19:18:00,339 Center St, San Francisco,CA,94016 +246615,Vareebadd Phone,1,400.0,2019-08-25 12:25:00,129 Hill St, Austin,TX,73301 +246616,USB-C Charging Cable,1,11.95,2019-08-19 11:31:00,199 Hill St, Boston,MA,02215 +246617,Lightning Charging Cable,1,14.95,2019-08-19 21:30:00,611 Johnson St, Dallas,TX,75001 +246618,AAA Batteries (4-pack),1,2.99,2019-08-04 23:52:00,494 7th St, Atlanta,GA,30301 +246619,Macbook Pro Laptop,1,1700.0,2019-08-15 08:00:00,890 West St, Boston,MA,02215 +246620,27in FHD Monitor,1,149.99,2019-08-20 14:31:00,962 10th St, Dallas,TX,75001 +246621,Apple Airpods Headphones,1,150.0,2019-08-21 13:06:00,273 6th St, Boston,MA,02215 +246622,AA Batteries (4-pack),1,3.84,2019-08-22 16:30:00,552 Park St, Seattle,WA,98101 +246623,27in 4K Gaming Monitor,1,389.99,2019-08-05 02:02:00,914 South St, Seattle,WA,98101 +246624,iPhone,1,700.0,2019-08-07 14:46:00,188 South St, San Francisco,CA,94016 +246625,AA Batteries (4-pack),1,3.84,2019-08-25 16:54:00,850 Washington St, Seattle,WA,98101 +246626,AA Batteries (4-pack),1,3.84,2019-08-16 09:00:00,126 North St, New York City,NY,10001 +246627,Bose SoundSport Headphones,1,99.99,2019-08-22 10:51:00,170 4th St, Boston,MA,02215 +246628,Wired Headphones,1,11.99,2019-08-22 11:25:00,557 Sunset St, Seattle,WA,98101 +246629,AAA Batteries (4-pack),1,2.99,2019-08-07 01:35:00,876 Wilson St, New York City,NY,10001 +246630,AA Batteries (4-pack),1,3.84,2019-08-04 20:04:00,763 Jackson St, Los Angeles,CA,90001 +246631,Vareebadd Phone,1,400.0,2019-08-24 15:38:00,468 Meadow St, San Francisco,CA,94016 +246632,Flatscreen TV,1,300.0,2019-08-01 21:29:00,674 Wilson St, Austin,TX,73301 +246633,USB-C Charging Cable,1,11.95,2019-08-28 21:34:00,273 5th St, New York City,NY,10001 +246634,27in FHD Monitor,1,149.99,2019-08-05 15:19:00,910 Pine St, New York City,NY,10001 +246635,Apple Airpods Headphones,1,150.0,2019-08-18 20:42:00,497 Cedar St, Los Angeles,CA,90001 +246636,Google Phone,1,600.0,2019-08-07 01:09:00,930 Elm St, Los Angeles,CA,90001 +246636,Wired Headphones,1,11.99,2019-08-07 01:09:00,930 Elm St, Los Angeles,CA,90001 +246637,Lightning Charging Cable,1,14.95,2019-08-09 20:43:00,696 Meadow St, Los Angeles,CA,90001 +246637,Flatscreen TV,1,300.0,2019-08-09 20:43:00,696 Meadow St, Los Angeles,CA,90001 +246638,Macbook Pro Laptop,1,1700.0,2019-08-05 20:24:00,640 Sunset St, Boston,MA,02215 +246639,USB-C Charging Cable,1,11.95,2019-08-21 17:56:00,344 12th St, Boston,MA,02215 +246640,Apple Airpods Headphones,1,150.0,2019-08-21 10:30:00,765 Pine St, San Francisco,CA,94016 +246641,20in Monitor,2,109.99,2019-08-22 13:44:00,785 Lakeview St, San Francisco,CA,94016 +246642,AA Batteries (4-pack),1,3.84,2019-08-15 22:30:00,768 1st St, New York City,NY,10001 +246643,Google Phone,1,600.0,2019-08-05 16:51:00,914 6th St, Austin,TX,73301 +246644,USB-C Charging Cable,1,11.95,2019-08-05 18:45:00,480 Maple St, New York City,NY,10001 +246645,20in Monitor,1,109.99,2019-08-31 18:22:00,388 10th St, Atlanta,GA,30301 +246646,Macbook Pro Laptop,1,1700.0,2019-08-14 17:26:00,807 Walnut St, Los Angeles,CA,90001 +246647,Macbook Pro Laptop,1,1700.0,2019-08-17 21:12:00,865 Dogwood St, San Francisco,CA,94016 +246648,Macbook Pro Laptop,1,1700.0,2019-08-22 21:48:00,76 Wilson St, Los Angeles,CA,90001 +246649,ThinkPad Laptop,1,999.99,2019-08-12 00:10:00,901 Park St, San Francisco,CA,94016 +246650,20in Monitor,1,109.99,2019-08-04 00:32:00,797 Madison St, San Francisco,CA,94016 +246651,Wired Headphones,1,11.99,2019-08-04 20:43:00,272 Washington St, New York City,NY,10001 +246652,Bose SoundSport Headphones,1,99.99,2019-08-29 12:41:00,118 Forest St, Los Angeles,CA,90001 +246653,iPhone,1,700.0,2019-08-10 12:58:00,633 Lakeview St, San Francisco,CA,94016 +246654,AA Batteries (4-pack),2,3.84,2019-08-30 00:15:00,975 5th St, Dallas,TX,75001 +246655,iPhone,1,700.0,2019-08-18 17:56:00,636 Main St, Seattle,WA,98101 +246655,Lightning Charging Cable,1,14.95,2019-08-18 17:56:00,636 Main St, Seattle,WA,98101 +246656,iPhone,1,700.0,2019-08-10 18:20:00,245 11th St, Los Angeles,CA,90001 +246656,Lightning Charging Cable,1,14.95,2019-08-10 18:20:00,245 11th St, Los Angeles,CA,90001 +246656,Apple Airpods Headphones,1,150.0,2019-08-10 18:20:00,245 11th St, Los Angeles,CA,90001 +246657,Lightning Charging Cable,1,14.95,2019-08-16 16:06:00,258 Forest St, Boston,MA,02215 +246658,AA Batteries (4-pack),1,3.84,2019-08-18 19:00:00,523 Center St, San Francisco,CA,94016 +246659,Google Phone,1,600.0,2019-08-03 18:30:00,237 Main St, New York City,NY,10001 +246660,AAA Batteries (4-pack),1,2.99,2019-08-11 09:35:00,991 Dogwood St, Los Angeles,CA,90001 +246661,AA Batteries (4-pack),2,3.84,2019-08-01 12:57:00,561 Sunset St, Portland,ME,04101 +246662,Wired Headphones,1,11.99,2019-08-28 15:55:00,577 Jefferson St, Dallas,TX,75001 +246663,AAA Batteries (4-pack),1,2.99,2019-08-11 22:35:00,490 Lincoln St, Atlanta,GA,30301 +246664,Lightning Charging Cable,1,14.95,2019-08-21 18:04:00,734 Main St, San Francisco,CA,94016 +246665,AA Batteries (4-pack),1,3.84,2019-08-11 16:49:00,744 11th St, New York City,NY,10001 +246666,Flatscreen TV,1,300.0,2019-08-03 07:46:00,226 South St, Atlanta,GA,30301 +246667,AA Batteries (4-pack),1,3.84,2019-08-09 11:54:00,124 Lincoln St, Atlanta,GA,30301 +246668,AAA Batteries (4-pack),1,2.99,2019-08-03 17:40:00,804 2nd St, San Francisco,CA,94016 +246669,Bose SoundSport Headphones,1,99.99,2019-08-29 00:21:00,281 10th St, San Francisco,CA,94016 +246670,Lightning Charging Cable,1,14.95,2019-08-12 11:22:00,602 Adams St, San Francisco,CA,94016 +246671,Macbook Pro Laptop,1,1700.0,2019-08-23 11:13:00,457 Cedar St, Dallas,TX,75001 +246672,27in FHD Monitor,1,149.99,2019-08-16 13:27:00,797 Wilson St, Boston,MA,02215 +246673,USB-C Charging Cable,1,11.95,2019-08-29 17:20:00,292 Lakeview St, New York City,NY,10001 +246674,Vareebadd Phone,1,400.0,2019-08-17 06:37:00,405 Hickory St, San Francisco,CA,94016 +246675,AA Batteries (4-pack),2,3.84,2019-08-25 09:35:00,1 Center St, Austin,TX,73301 +246676,USB-C Charging Cable,1,11.95,2019-08-29 17:47:00,882 Adams St, Atlanta,GA,30301 +246677,AA Batteries (4-pack),1,3.84,2019-08-18 21:19:00,700 Cherry St, Portland,OR,97035 +246678,AAA Batteries (4-pack),1,2.99,2019-08-22 14:14:00,579 7th St, Atlanta,GA,30301 +246679,Wired Headphones,1,11.99,2019-08-26 15:32:00,112 Madison St, Los Angeles,CA,90001 +246680,USB-C Charging Cable,1,11.95,2019-08-29 12:41:00,650 Main St, Dallas,TX,75001 +246681,Google Phone,1,600.0,2019-08-17 11:17:00,754 Church St, Dallas,TX,75001 +246682,AAA Batteries (4-pack),1,2.99,2019-08-26 17:21:00,181 Main St, Boston,MA,02215 +246683,AAA Batteries (4-pack),1,2.99,2019-08-21 21:51:00,895 12th St, Austin,TX,73301 +246684,USB-C Charging Cable,1,11.95,2019-08-02 15:00:00,108 Cedar St, San Francisco,CA,94016 +246685,Wired Headphones,1,11.99,2019-08-02 15:38:00,233 North St, San Francisco,CA,94016 +246686,AA Batteries (4-pack),1,3.84,2019-08-16 10:58:00,693 5th St, New York City,NY,10001 +246687,34in Ultrawide Monitor,1,379.99,2019-08-28 11:39:00,667 2nd St, Los Angeles,CA,90001 +246688,AA Batteries (4-pack),1,3.84,2019-08-12 08:36:00,731 Jefferson St, Seattle,WA,98101 +246689,Wired Headphones,1,11.99,2019-08-30 17:56:00,290 Johnson St, Portland,OR,97035 +246690,ThinkPad Laptop,1,999.99,2019-08-04 15:22:00,685 Wilson St, Atlanta,GA,30301 +246691,USB-C Charging Cable,1,11.95,2019-08-03 18:30:00,672 Elm St, New York City,NY,10001 +246692,AA Batteries (4-pack),1,3.84,2019-08-04 03:05:00,704 Jackson St, Seattle,WA,98101 +246693,34in Ultrawide Monitor,1,379.99,2019-08-12 08:39:00,114 Washington St, New York City,NY,10001 +246694,AA Batteries (4-pack),2,3.84,2019-08-15 20:52:00,434 Washington St, Boston,MA,02215 +246695,Macbook Pro Laptop,1,1700.0,2019-08-08 17:40:00,684 Cedar St, New York City,NY,10001 +246696,AAA Batteries (4-pack),2,2.99,2019-08-19 14:33:00,932 Walnut St, Atlanta,GA,30301 +246697,USB-C Charging Cable,1,11.95,2019-08-13 19:52:00,425 10th St, San Francisco,CA,94016 +246698,27in FHD Monitor,1,149.99,2019-08-30 23:13:00,13 Ridge St, Atlanta,GA,30301 +246699,AA Batteries (4-pack),1,3.84,2019-08-03 21:26:00,450 6th St, New York City,NY,10001 +246700,27in 4K Gaming Monitor,1,389.99,2019-08-03 15:15:00,479 7th St, Los Angeles,CA,90001 +246701,Bose SoundSport Headphones,1,99.99,2019-08-04 16:16:00,815 Cedar St, Dallas,TX,75001 +246702,AA Batteries (4-pack),2,3.84,2019-08-06 22:54:00,743 Madison St, Austin,TX,73301 +246703,AA Batteries (4-pack),2,3.84,2019-08-03 20:08:00,943 Elm St, Portland,OR,97035 +246704,AA Batteries (4-pack),1,3.84,2019-08-18 21:09:00,986 South St, Atlanta,GA,30301 +246705,AA Batteries (4-pack),2,3.84,2019-08-05 11:52:00,200 Ridge St, New York City,NY,10001 +246706,AA Batteries (4-pack),2,3.84,2019-08-15 20:48:00,762 Meadow St, Seattle,WA,98101 +246707,AAA Batteries (4-pack),1,2.99,2019-08-05 21:27:00,600 10th St, New York City,NY,10001 +246708,AAA Batteries (4-pack),1,2.99,2019-08-17 10:54:00,240 Meadow St, New York City,NY,10001 +246709,34in Ultrawide Monitor,1,379.99,2019-08-13 22:47:00,459 Dogwood St, Dallas,TX,75001 +246710,20in Monitor,1,109.99,2019-08-21 23:19:00,879 Lake St, New York City,NY,10001 +246711,Vareebadd Phone,1,400.0,2019-08-27 12:13:00,36 Forest St, San Francisco,CA,94016 +246712,Apple Airpods Headphones,1,150.0,2019-08-27 18:23:00,464 Ridge St, Dallas,TX,75001 +246713,ThinkPad Laptop,1,999.99,2019-08-08 14:00:00,178 Hickory St, Austin,TX,73301 +246714,AA Batteries (4-pack),1,3.84,2019-08-30 15:23:00,814 Lincoln St, Boston,MA,02215 +246715,AA Batteries (4-pack),1,3.84,2019-08-22 18:29:00,787 8th St, Seattle,WA,98101 +246715,34in Ultrawide Monitor,1,379.99,2019-08-22 18:29:00,787 8th St, Seattle,WA,98101 +246716,Lightning Charging Cable,1,14.95,2019-08-26 10:00:00,562 West St, San Francisco,CA,94016 +246717,Apple Airpods Headphones,1,150.0,2019-08-27 16:54:00,86 Maple St, New York City,NY,10001 +246718,AAA Batteries (4-pack),1,2.99,2019-08-26 15:24:00,940 11th St, Austin,TX,73301 +246719,AA Batteries (4-pack),1,3.84,2019-08-03 21:45:00,810 Willow St, Atlanta,GA,30301 +246720,AA Batteries (4-pack),1,3.84,2019-08-25 16:50:00,517 Hickory St, Seattle,WA,98101 +246721,Lightning Charging Cable,1,14.95,2019-08-23 22:36:00,456 5th St, Portland,OR,97035 +246722,27in FHD Monitor,1,149.99,2019-08-09 21:52:00,573 Pine St, Atlanta,GA,30301 +246723,27in 4K Gaming Monitor,1,389.99,2019-08-08 19:22:00,715 Lakeview St, Atlanta,GA,30301 +246724,Vareebadd Phone,1,400.0,2019-08-16 08:37:00,11 Jefferson St, Los Angeles,CA,90001 +246724,AA Batteries (4-pack),1,3.84,2019-08-16 08:37:00,11 Jefferson St, Los Angeles,CA,90001 +246725,Lightning Charging Cable,1,14.95,2019-08-17 03:07:00,444 Cedar St, Austin,TX,73301 +246726,34in Ultrawide Monitor,1,379.99,2019-08-28 12:06:00,819 Center St, Austin,TX,73301 +246727,Macbook Pro Laptop,1,1700.0,2019-08-30 09:14:00,314 13th St, Portland,ME,04101 +246728,27in FHD Monitor,1,149.99,2019-08-09 14:14:00,439 14th St, Atlanta,GA,30301 +246729,AAA Batteries (4-pack),2,2.99,2019-08-12 09:24:00,626 Johnson St, Atlanta,GA,30301 +246730,Bose SoundSport Headphones,1,99.99,2019-08-24 13:56:00,645 13th St, Seattle,WA,98101 +246731,AAA Batteries (4-pack),1,2.99,2019-08-08 07:38:00,701 Main St, Dallas,TX,75001 +246732,Lightning Charging Cable,1,14.95,2019-08-31 18:33:00,849 Pine St, San Francisco,CA,94016 +246733,AA Batteries (4-pack),1,3.84,2019-08-22 09:40:00,695 Forest St, New York City,NY,10001 +246734,Wired Headphones,1,11.99,2019-08-26 11:24:00,411 Wilson St, New York City,NY,10001 +246735,ThinkPad Laptop,1,999.99,2019-08-24 21:23:00,253 12th St, Portland,OR,97035 +246736,27in 4K Gaming Monitor,1,389.99,2019-08-03 20:04:00,574 9th St, Los Angeles,CA,90001 +246737,AA Batteries (4-pack),1,3.84,2019-08-22 18:59:00,299 Spruce St, Atlanta,GA,30301 +246738,AA Batteries (4-pack),1,3.84,2019-08-01 16:51:00,613 Maple St, New York City,NY,10001 +246739,27in 4K Gaming Monitor,1,389.99,2019-08-12 19:06:00,569 Main St, San Francisco,CA,94016 +246740,Macbook Pro Laptop,1,1700.0,2019-08-10 16:52:00,951 1st St, Austin,TX,73301 +246741,Lightning Charging Cable,1,14.95,2019-08-04 21:40:00,694 1st St, Boston,MA,02215 +246742,Lightning Charging Cable,1,14.95,2019-08-18 16:47:00,642 River St, Seattle,WA,98101 +246743,USB-C Charging Cable,2,11.95,2019-08-02 14:37:00,224 Lincoln St, San Francisco,CA,94016 +246744,Macbook Pro Laptop,1,1700.0,2019-08-12 12:42:00,381 Forest St, New York City,NY,10001 +246745,Bose SoundSport Headphones,1,99.99,2019-08-31 14:20:00,169 4th St, Boston,MA,02215 +246746,AA Batteries (4-pack),1,3.84,2019-08-21 09:14:00,534 Spruce St, New York City,NY,10001 +246747,AAA Batteries (4-pack),1,2.99,2019-08-19 18:01:00,894 Wilson St, Boston,MA,02215 +246748,20in Monitor,1,109.99,2019-08-02 13:07:00,701 Chestnut St, Austin,TX,73301 +246749,Apple Airpods Headphones,1,150.0,2019-08-13 12:54:00,895 Lakeview St, Dallas,TX,75001 +246750,Flatscreen TV,1,300.0,2019-08-28 18:03:00,669 Center St, Los Angeles,CA,90001 +246751,AA Batteries (4-pack),1,3.84,2019-08-22 21:03:00,836 1st St, New York City,NY,10001 +246752,Wired Headphones,1,11.99,2019-08-20 21:21:00,74 Adams St, New York City,NY,10001 +246753,Apple Airpods Headphones,1,150.0,2019-08-10 17:56:00,270 Sunset St, San Francisco,CA,94016 +246754,Lightning Charging Cable,1,14.95,2019-08-20 08:55:00,9 2nd St, New York City,NY,10001 +246755,Lightning Charging Cable,1,14.95,2019-08-05 09:28:00,649 Hill St, Seattle,WA,98101 +246756,AA Batteries (4-pack),2,3.84,2019-08-11 16:02:00,95 6th St, San Francisco,CA,94016 +246757,AAA Batteries (4-pack),1,2.99,2019-08-22 19:30:00,808 Jackson St, Los Angeles,CA,90001 +246758,Bose SoundSport Headphones,1,99.99,2019-08-24 15:31:00,988 10th St, Los Angeles,CA,90001 +246759,Flatscreen TV,1,300.0,2019-08-12 12:06:00,109 9th St, New York City,NY,10001 +246759,iPhone,1,700.0,2019-08-12 12:06:00,109 9th St, New York City,NY,10001 +246760,Lightning Charging Cable,1,14.95,2019-08-22 13:53:00,417 Meadow St, Los Angeles,CA,90001 +246761,AAA Batteries (4-pack),2,2.99,2019-08-27 08:26:00,276 South St, Seattle,WA,98101 +246762,AA Batteries (4-pack),3,3.84,2019-08-13 11:38:00,267 Forest St, Atlanta,GA,30301 +246763,AAA Batteries (4-pack),1,2.99,2019-08-19 08:26:00,967 Hickory St, Boston,MA,02215 +246764,AA Batteries (4-pack),1,3.84,2019-08-05 16:02:00,847 Church St, Boston,MA,02215 +246765,Macbook Pro Laptop,1,1700.0,2019-08-15 19:53:00,951 Lincoln St, New York City,NY,10001 +246766,AA Batteries (4-pack),1,3.84,2019-08-15 17:16:00,435 Wilson St, Los Angeles,CA,90001 +246767,USB-C Charging Cable,1,11.95,2019-08-26 11:15:00,157 South St, Seattle,WA,98101 +246768,Lightning Charging Cable,1,14.95,2019-08-26 22:48:00,597 13th St, Dallas,TX,75001 +246769,iPhone,1,700.0,2019-08-09 12:23:00,946 Park St, San Francisco,CA,94016 +246770,Google Phone,1,600.0,2019-08-07 16:31:00,320 Cedar St, San Francisco,CA,94016 +246771,Google Phone,1,600.0,2019-08-17 17:56:00,60 Center St, Seattle,WA,98101 +246772,USB-C Charging Cable,1,11.95,2019-08-19 08:46:00,47 4th St, Austin,TX,73301 +246773,USB-C Charging Cable,1,11.95,2019-08-29 15:43:00,612 Willow St, Los Angeles,CA,90001 +246774,AA Batteries (4-pack),1,3.84,2019-08-05 15:52:00,84 Jackson St, Boston,MA,02215 +246775,27in 4K Gaming Monitor,1,389.99,2019-08-29 15:32:00,431 Forest St, Atlanta,GA,30301 +246776,USB-C Charging Cable,1,11.95,2019-08-16 21:36:00,800 6th St, Atlanta,GA,30301 +246777,AA Batteries (4-pack),2,3.84,2019-08-14 12:40:00,647 Sunset St, New York City,NY,10001 +246778,Flatscreen TV,1,300.0,2019-08-18 23:29:00,987 14th St, San Francisco,CA,94016 +246779,Lightning Charging Cable,1,14.95,2019-08-17 12:45:00,527 Lakeview St, Dallas,TX,75001 +246780,34in Ultrawide Monitor,1,379.99,2019-08-22 20:44:00,453 Park St, San Francisco,CA,94016 +246781,Lightning Charging Cable,1,14.95,2019-08-14 13:22:00,486 8th St, Seattle,WA,98101 +246782,Wired Headphones,1,11.99,2019-08-10 18:47:00,398 West St, San Francisco,CA,94016 +246783,27in 4K Gaming Monitor,1,389.99,2019-08-17 08:14:00,812 Jefferson St, Austin,TX,73301 +246783,ThinkPad Laptop,1,999.99,2019-08-17 08:14:00,812 Jefferson St, Austin,TX,73301 +246784,Bose SoundSport Headphones,1,99.99,2019-08-17 08:51:00,894 Chestnut St, San Francisco,CA,94016 +246785,AA Batteries (4-pack),1,3.84,2019-08-05 23:19:00,610 Elm St, Boston,MA,02215 +246786,20in Monitor,1,109.99,2019-08-28 20:00:00,85 9th St, Los Angeles,CA,90001 +246787,Lightning Charging Cable,1,14.95,2019-08-02 13:16:00,501 10th St, Portland,OR,97035 +246788,Flatscreen TV,1,300.0,2019-08-19 12:35:00,379 Church St, San Francisco,CA,94016 +246789,iPhone,1,700.0,2019-08-08 17:32:00,518 8th St, San Francisco,CA,94016 +246790,27in FHD Monitor,1,149.99,2019-08-30 00:26:00,988 Center St, Los Angeles,CA,90001 +246791,Lightning Charging Cable,1,14.95,2019-08-19 19:43:00,930 1st St, Atlanta,GA,30301 +246792,AA Batteries (4-pack),2,3.84,2019-08-11 12:10:00,188 Spruce St, Seattle,WA,98101 +246793,Flatscreen TV,1,300.0,2019-08-10 06:36:00,97 Highland St, Seattle,WA,98101 +246794,27in 4K Gaming Monitor,1,389.99,2019-08-02 22:44:00,405 4th St, Austin,TX,73301 +246795,Lightning Charging Cable,1,14.95,2019-08-25 11:48:00,633 Meadow St, New York City,NY,10001 +246796,Apple Airpods Headphones,1,150.0,2019-08-31 10:52:00,555 Hickory St, Atlanta,GA,30301 +246797,Vareebadd Phone,1,400.0,2019-08-25 21:21:00,55 Lake St, Austin,TX,73301 +246797,USB-C Charging Cable,1,11.95,2019-08-25 21:21:00,55 Lake St, Austin,TX,73301 +246798,Apple Airpods Headphones,1,150.0,2019-08-13 19:02:00,631 6th St, Austin,TX,73301 +246799,34in Ultrawide Monitor,1,379.99,2019-08-07 00:21:00,972 11th St, New York City,NY,10001 +246800,Flatscreen TV,1,300.0,2019-08-09 22:38:00,969 Cedar St, Portland,OR,97035 +246801,AAA Batteries (4-pack),1,2.99,2019-08-18 08:19:00,971 Johnson St, Dallas,TX,75001 +246802,AA Batteries (4-pack),1,3.84,2019-08-04 01:34:00,499 14th St, San Francisco,CA,94016 +246803,Apple Airpods Headphones,1,150.0,2019-08-07 12:37:00,590 South St, San Francisco,CA,94016 +246804,AAA Batteries (4-pack),1,2.99,2019-08-24 12:34:00,659 Pine St, New York City,NY,10001 +246805,Google Phone,1,600.0,2019-08-27 19:47:00,693 Park St, Boston,MA,02215 +246806,Bose SoundSport Headphones,1,99.99,2019-08-11 21:05:00,934 6th St, Boston,MA,02215 +246807,AAA Batteries (4-pack),1,2.99,2019-08-20 11:20:00,7 Walnut St, Portland,OR,97035 +246808,USB-C Charging Cable,1,11.95,2019-08-25 21:44:00,842 South St, San Francisco,CA,94016 +246809,AA Batteries (4-pack),2,3.84,2019-08-18 17:51:00,591 River St, Boston,MA,02215 +246810,Google Phone,1,600.0,2019-08-05 11:46:00,988 9th St, San Francisco,CA,94016 +246811,AA Batteries (4-pack),1,3.84,2019-08-31 07:37:00,782 North St, Los Angeles,CA,90001 +246812,AA Batteries (4-pack),2,3.84,2019-08-31 00:09:00,200 10th St, Boston,MA,02215 +246813,Wired Headphones,1,11.99,2019-08-28 09:13:00,854 10th St, Portland,OR,97035 +246814,Lightning Charging Cable,1,14.95,2019-08-24 18:35:00,495 Hickory St, New York City,NY,10001 +246815,20in Monitor,1,109.99,2019-08-06 22:39:00,999 2nd St, Austin,TX,73301 +246816,Wired Headphones,1,11.99,2019-08-11 00:29:00,474 1st St, Atlanta,GA,30301 +246817,20in Monitor,1,109.99,2019-08-17 23:17:00,643 Park St, Seattle,WA,98101 +246818,Apple Airpods Headphones,1,150.0,2019-08-04 14:10:00,349 Johnson St, Los Angeles,CA,90001 +246819,USB-C Charging Cable,1,11.95,2019-08-17 20:02:00,116 11th St, Atlanta,GA,30301 +246820,Flatscreen TV,1,300.0,2019-08-13 21:41:00,468 Sunset St, Boston,MA,02215 +246821,Google Phone,1,600.0,2019-08-09 09:46:00,509 Dogwood St, Los Angeles,CA,90001 +246821,USB-C Charging Cable,1,11.95,2019-08-09 09:46:00,509 Dogwood St, Los Angeles,CA,90001 +246822,34in Ultrawide Monitor,1,379.99,2019-08-20 10:41:00,625 Main St, New York City,NY,10001 +246823,iPhone,1,700.0,2019-08-12 15:43:00,862 North St, San Francisco,CA,94016 +246824,AAA Batteries (4-pack),1,2.99,2019-08-26 17:09:00,295 Dogwood St, Atlanta,GA,30301 +246825,Flatscreen TV,1,300.0,2019-08-22 19:05:00,885 7th St, Los Angeles,CA,90001 +246826,27in FHD Monitor,1,149.99,2019-08-12 11:13:00,927 Lake St, Los Angeles,CA,90001 +246827,Wired Headphones,1,11.99,2019-08-19 13:18:00,527 Forest St, San Francisco,CA,94016 +246828,LG Dryer,1,600.0,2019-08-23 20:55:00,165 Lincoln St, Atlanta,GA,30301 +246829,Bose SoundSport Headphones,1,99.99,2019-08-16 08:29:00,40 7th St, Atlanta,GA,30301 +246830,Flatscreen TV,1,300.0,2019-08-17 08:39:00,525 1st St, Los Angeles,CA,90001 +246831,AAA Batteries (4-pack),1,2.99,2019-08-09 22:01:00,452 13th St, Boston,MA,02215 +246832,Apple Airpods Headphones,1,150.0,2019-08-28 18:38:00,115 Cedar St, Boston,MA,02215 +246833,Lightning Charging Cable,1,14.95,2019-08-31 12:21:00,661 Center St, Boston,MA,02215 +246834,Apple Airpods Headphones,1,150.0,2019-08-02 19:34:00,55 Washington St, Austin,TX,73301 +246835,27in 4K Gaming Monitor,1,389.99,2019-08-20 01:57:00,100 Elm St, New York City,NY,10001 +246836,iPhone,1,700.0,2019-08-26 06:02:00,415 River St, New York City,NY,10001 +246837,AA Batteries (4-pack),1,3.84,2019-08-21 20:51:00,455 Hill St, Dallas,TX,75001 +246838,AAA Batteries (4-pack),1,2.99,2019-08-15 23:39:00,977 North St, Atlanta,GA,30301 +246839,Lightning Charging Cable,1,14.95,2019-08-19 16:09:00,169 Cedar St, Boston,MA,02215 +246840,34in Ultrawide Monitor,1,379.99,2019-08-15 20:41:00,119 Madison St, New York City,NY,10001 +246841,USB-C Charging Cable,1,11.95,2019-08-10 18:48:00,67 7th St, New York City,NY,10001 +246842,Wired Headphones,1,11.99,2019-08-20 16:54:00,724 11th St, San Francisco,CA,94016 +246843,Bose SoundSport Headphones,1,99.99,2019-08-24 17:16:00,987 Jefferson St, San Francisco,CA,94016 +246844,AA Batteries (4-pack),2,3.84,2019-08-10 23:16:00,250 Walnut St, New York City,NY,10001 +246845,AAA Batteries (4-pack),1,2.99,2019-08-21 16:08:00,131 West St, San Francisco,CA,94016 +246846,AA Batteries (4-pack),1,3.84,2019-08-30 19:21:00,970 Center St, San Francisco,CA,94016 +246847,AA Batteries (4-pack),1,3.84,2019-08-15 21:06:00,494 South St, San Francisco,CA,94016 +246848,Bose SoundSport Headphones,2,99.99,2019-08-10 18:03:00,160 Pine St, New York City,NY,10001 +246849,Bose SoundSport Headphones,1,99.99,2019-08-22 22:34:00,594 West St, Seattle,WA,98101 +246850,27in FHD Monitor,1,149.99,2019-08-05 13:40:00,131 6th St, New York City,NY,10001 +246851,AA Batteries (4-pack),1,3.84,2019-08-27 06:31:00,453 8th St, Portland,OR,97035 +246852,Wired Headphones,1,11.99,2019-08-03 20:07:00,201 Meadow St, San Francisco,CA,94016 +246853,AA Batteries (4-pack),1,3.84,2019-08-20 09:26:00,309 Willow St, Dallas,TX,75001 +246854,Apple Airpods Headphones,1,150.0,2019-08-17 19:04:00,312 Hickory St, Seattle,WA,98101 +246855,Apple Airpods Headphones,1,150.0,2019-08-26 19:08:00,343 Spruce St, Seattle,WA,98101 +246856,34in Ultrawide Monitor,1,379.99,2019-08-07 11:24:00,691 Sunset St, Boston,MA,02215 +246857,AAA Batteries (4-pack),2,2.99,2019-08-04 11:01:00,942 Adams St, Atlanta,GA,30301 +246858,Apple Airpods Headphones,1,150.0,2019-08-18 12:44:00,881 11th St, Los Angeles,CA,90001 +246859,Apple Airpods Headphones,1,150.0,2019-08-15 21:47:00,124 Willow St, Atlanta,GA,30301 +246860,AAA Batteries (4-pack),3,2.99,2019-08-29 12:40:00,581 8th St, New York City,NY,10001 +246861,USB-C Charging Cable,1,11.95,2019-08-06 17:53:00,220 Jackson St, Atlanta,GA,30301 +246862,Apple Airpods Headphones,1,150.0,2019-08-24 10:47:00,8 Hill St, Atlanta,GA,30301 +246863,ThinkPad Laptop,1,999.99,2019-08-25 17:39:00,582 Sunset St, Dallas,TX,75001 +246864,27in FHD Monitor,1,149.99,2019-08-23 16:53:00,632 Jefferson St, San Francisco,CA,94016 +246865,Wired Headphones,1,11.99,2019-08-16 10:13:00,314 Ridge St, San Francisco,CA,94016 +246866,27in FHD Monitor,1,149.99,2019-08-10 21:30:00,635 Park St, Portland,ME,04101 +246867,AA Batteries (4-pack),1,3.84,2019-08-13 15:29:00,397 1st St, Seattle,WA,98101 +246868,Apple Airpods Headphones,1,150.0,2019-08-04 12:31:00,993 Highland St, New York City,NY,10001 +246869,AA Batteries (4-pack),1,3.84,2019-08-06 20:55:00,614 8th St, Seattle,WA,98101 +246870,20in Monitor,1,109.99,2019-08-13 08:22:00,723 Willow St, Seattle,WA,98101 +246871,Apple Airpods Headphones,1,150.0,2019-08-29 16:02:00,488 11th St, Austin,TX,73301 +246872,27in FHD Monitor,1,149.99,2019-08-04 15:16:00,19 10th St, New York City,NY,10001 +246873,iPhone,1,700.0,2019-08-02 19:31:00,709 10th St, Atlanta,GA,30301 +246874,Lightning Charging Cable,1,14.95,2019-08-06 22:11:00,782 Willow St, Dallas,TX,75001 +246875,iPhone,1,700.0,2019-08-04 08:27:00,681 7th St, Los Angeles,CA,90001 +246876,Bose SoundSport Headphones,1,99.99,2019-08-16 10:45:00,744 Center St, Austin,TX,73301 +246877,Wired Headphones,1,11.99,2019-08-04 23:54:00,257 Dogwood St, New York City,NY,10001 +246878,Apple Airpods Headphones,1,150.0,2019-08-08 08:44:00,904 Meadow St, Portland,OR,97035 +246879,20in Monitor,1,109.99,2019-08-06 07:28:00,549 Cedar St, Atlanta,GA,30301 +246880,Lightning Charging Cable,1,14.95,2019-08-01 10:53:00,958 Madison St, Boston,MA,02215 +246881,USB-C Charging Cable,1,11.95,2019-08-29 08:55:00,515 7th St, Austin,TX,73301 +246882,Lightning Charging Cable,1,14.95,2019-08-23 17:09:00,744 Cedar St, Los Angeles,CA,90001 +246883,27in FHD Monitor,1,149.99,2019-08-22 13:49:00,262 6th St, Los Angeles,CA,90001 +246884,USB-C Charging Cable,1,11.95,2019-08-10 15:08:00,928 Church St, Dallas,TX,75001 +246885,USB-C Charging Cable,1,11.95,2019-09-01 04:45:00,275 Adams St, Portland,OR,97035 +246886,Google Phone,1,600.0,2019-08-17 13:20:00,788 Lake St, Portland,OR,97035 +246887,USB-C Charging Cable,1,11.95,2019-08-10 16:09:00,856 Spruce St, Portland,ME,04101 +246888,ThinkPad Laptop,1,999.99,2019-08-28 06:30:00,865 Church St, San Francisco,CA,94016 +246889,AA Batteries (4-pack),1,3.84,2019-08-18 15:11:00,929 1st St, New York City,NY,10001 +246890,AA Batteries (4-pack),1,3.84,2019-08-19 15:09:00,518 Hill St, Boston,MA,02215 +246891,27in 4K Gaming Monitor,1,389.99,2019-08-24 18:07:00,648 12th St, Seattle,WA,98101 +246892,USB-C Charging Cable,1,11.95,2019-08-17 00:54:00,740 1st St, San Francisco,CA,94016 +246893,Bose SoundSport Headphones,1,99.99,2019-08-17 12:31:00,979 Jackson St, Atlanta,GA,30301 +246894,AAA Batteries (4-pack),1,2.99,2019-08-09 09:02:00,991 West St, Los Angeles,CA,90001 +246895,USB-C Charging Cable,2,11.95,2019-08-10 10:15:00,271 Wilson St, Portland,OR,97035 +246896,AA Batteries (4-pack),1,3.84,2019-08-19 00:56:00,720 11th St, San Francisco,CA,94016 +246897,27in FHD Monitor,1,149.99,2019-08-18 23:22:00,563 1st St, Portland,OR,97035 +246898,USB-C Charging Cable,1,11.95,2019-08-05 13:36:00,851 14th St, Boston,MA,02215 +246899,USB-C Charging Cable,1,11.95,2019-08-19 11:23:00,988 Adams St, Portland,OR,97035 +246900,Lightning Charging Cable,1,14.95,2019-08-04 21:03:00,702 Washington St, Dallas,TX,75001 +246901,Flatscreen TV,1,300.0,2019-08-31 12:23:00,919 Ridge St, San Francisco,CA,94016 +246902,Apple Airpods Headphones,1,150.0,2019-08-03 13:42:00,537 4th St, Austin,TX,73301 +246903,USB-C Charging Cable,1,11.95,2019-08-21 11:15:00,999 14th St, Los Angeles,CA,90001 +246904,Wired Headphones,1,11.99,2019-08-20 23:41:00,841 Spruce St, Dallas,TX,75001 +246905,AAA Batteries (4-pack),1,2.99,2019-08-11 18:57:00,10 Jefferson St, Portland,OR,97035 +246906,USB-C Charging Cable,1,11.95,2019-08-31 13:47:00,524 Cherry St, Boston,MA,02215 +246907,AA Batteries (4-pack),1,3.84,2019-08-27 23:48:00,273 Ridge St, Los Angeles,CA,90001 +246908,Apple Airpods Headphones,1,150.0,2019-08-05 11:51:00,144 Willow St, Dallas,TX,75001 +246909,AA Batteries (4-pack),1,3.84,2019-08-14 10:07:00,935 Jackson St, San Francisco,CA,94016 +246910,AA Batteries (4-pack),1,3.84,2019-08-29 11:41:00,805 Chestnut St, Dallas,TX,75001 +246911,AA Batteries (4-pack),1,3.84,2019-08-06 15:22:00,933 Madison St, San Francisco,CA,94016 +246912,Wired Headphones,1,11.99,2019-08-22 20:47:00,324 5th St, Seattle,WA,98101 +246913,AA Batteries (4-pack),1,3.84,2019-08-02 13:09:00,81 Lake St, Portland,OR,97035 +246914,AAA Batteries (4-pack),1,2.99,2019-08-16 14:06:00,497 12th St, New York City,NY,10001 +246915,AA Batteries (4-pack),1,3.84,2019-08-18 17:01:00,271 4th St, Los Angeles,CA,90001 +246916,Lightning Charging Cable,1,14.95,2019-08-24 15:33:00,455 Elm St, San Francisco,CA,94016 +246917,20in Monitor,1,109.99,2019-08-30 12:09:00,228 10th St, Los Angeles,CA,90001 +246918,iPhone,1,700.0,2019-08-26 19:34:00,567 Dogwood St, New York City,NY,10001 +246919,Lightning Charging Cable,1,14.95,2019-08-02 16:08:00,425 Lakeview St, Boston,MA,02215 +246920,Wired Headphones,1,11.99,2019-08-28 10:06:00,896 Cedar St, New York City,NY,10001 +246921,Flatscreen TV,1,300.0,2019-08-10 17:59:00,989 6th St, San Francisco,CA,94016 +246922,Apple Airpods Headphones,1,150.0,2019-08-25 15:04:00,776 Forest St, Atlanta,GA,30301 +246923,Macbook Pro Laptop,1,1700.0,2019-08-30 07:29:00,793 6th St, Atlanta,GA,30301 +246924,USB-C Charging Cable,1,11.95,2019-08-22 10:46:00,994 Madison St, Dallas,TX,75001 +246925,Lightning Charging Cable,1,14.95,2019-08-19 12:08:00,833 Cherry St, Atlanta,GA,30301 +246926,27in FHD Monitor,1,149.99,2019-08-15 20:04:00,101 Lakeview St, San Francisco,CA,94016 +246927,20in Monitor,1,109.99,2019-08-04 18:38:00,715 Cedar St, New York City,NY,10001 +246928,27in 4K Gaming Monitor,1,389.99,2019-08-18 22:15:00,771 Walnut St, San Francisco,CA,94016 +246929,Lightning Charging Cable,1,14.95,2019-08-25 22:58:00,232 Washington St, Los Angeles,CA,90001 +246930,27in 4K Gaming Monitor,1,389.99,2019-08-19 18:57:00,244 Center St, Atlanta,GA,30301 +246931,AAA Batteries (4-pack),1,2.99,2019-08-10 23:11:00,326 Park St, Seattle,WA,98101 +246932,Wired Headphones,1,11.99,2019-08-18 22:03:00,331 2nd St, New York City,NY,10001 +246933,Apple Airpods Headphones,1,150.0,2019-08-06 21:25:00,728 9th St, San Francisco,CA,94016 +246934,Lightning Charging Cable,1,14.95,2019-08-23 08:10:00,802 Walnut St, Austin,TX,73301 +246935,27in FHD Monitor,1,149.99,2019-08-14 05:15:00,661 River St, Atlanta,GA,30301 +246936,USB-C Charging Cable,1,11.95,2019-08-30 19:33:00,573 Johnson St, Boston,MA,02215 +246937,Google Phone,1,600.0,2019-08-02 17:57:00,681 South St, New York City,NY,10001 +246938,iPhone,1,700.0,2019-08-06 20:12:00,425 Sunset St, San Francisco,CA,94016 +246939,Lightning Charging Cable,1,14.95,2019-08-02 22:17:00,48 6th St, San Francisco,CA,94016 +246940,Apple Airpods Headphones,1,150.0,2019-08-26 20:17:00,404 Jefferson St, Boston,MA,02215 +246941,AA Batteries (4-pack),1,3.84,2019-08-17 23:03:00,52 Hickory St, New York City,NY,10001 +246942,AA Batteries (4-pack),1,3.84,2019-08-05 18:04:00,152 Hill St, Los Angeles,CA,90001 +246943,iPhone,1,700.0,2019-08-01 17:37:00,337 Lincoln St, Los Angeles,CA,90001 +246943,Apple Airpods Headphones,1,150.0,2019-08-01 17:37:00,337 Lincoln St, Los Angeles,CA,90001 +246944,Lightning Charging Cable,1,14.95,2019-08-14 16:21:00,845 Willow St, Boston,MA,02215 +246945,27in FHD Monitor,1,149.99,2019-08-28 16:58:00,988 Forest St, Los Angeles,CA,90001 +246946,ThinkPad Laptop,1,999.99,2019-08-20 13:56:00,104 North St, Los Angeles,CA,90001 +246947,USB-C Charging Cable,1,11.95,2019-08-02 16:17:00,246 Sunset St, New York City,NY,10001 +246948,27in FHD Monitor,1,149.99,2019-08-22 11:28:00,332 9th St, Portland,OR,97035 +246949,Lightning Charging Cable,1,14.95,2019-08-21 13:38:00,802 River St, New York City,NY,10001 +246950,Apple Airpods Headphones,1,150.0,2019-08-03 14:20:00,596 1st St, Los Angeles,CA,90001 +246951,Lightning Charging Cable,1,14.95,2019-08-24 13:47:00,180 5th St, Boston,MA,02215 +246952,AA Batteries (4-pack),3,3.84,2019-08-20 22:55:00,691 1st St, Dallas,TX,75001 +246953,Google Phone,1,600.0,2019-08-14 13:15:00,82 Madison St, Boston,MA,02215 +246954,Bose SoundSport Headphones,1,99.99,2019-08-07 13:11:00,965 Wilson St, San Francisco,CA,94016 +246955,Bose SoundSport Headphones,1,99.99,2019-08-16 10:27:00,408 1st St, San Francisco,CA,94016 +246956,Lightning Charging Cable,1,14.95,2019-08-08 00:13:00,727 9th St, San Francisco,CA,94016 +246957,iPhone,1,700.0,2019-08-18 11:40:00,119 Forest St, Los Angeles,CA,90001 +246958,27in FHD Monitor,1,149.99,2019-08-21 12:40:00,770 Church St, Los Angeles,CA,90001 +246959,Google Phone,1,600.0,2019-08-12 16:11:00,971 11th St, Seattle,WA,98101 +246960,Apple Airpods Headphones,1,150.0,2019-08-20 18:39:00,909 7th St, Boston,MA,02215 +246961,USB-C Charging Cable,1,11.95,2019-08-14 12:04:00,803 2nd St, Boston,MA,02215 +246962,Apple Airpods Headphones,1,150.0,2019-08-22 07:03:00,364 Park St, Dallas,TX,75001 +246963,AAA Batteries (4-pack),1,2.99,2019-08-31 20:21:00,943 North St, Atlanta,GA,30301 +246964,ThinkPad Laptop,1,999.99,2019-08-03 12:20:00,563 Adams St, Los Angeles,CA,90001 +246965,Bose SoundSport Headphones,1,99.99,2019-08-16 19:51:00,709 11th St, New York City,NY,10001 +246966,27in FHD Monitor,1,149.99,2019-08-03 09:51:00,916 1st St, Austin,TX,73301 +246967,AA Batteries (4-pack),1,3.84,2019-08-16 13:52:00,658 Dogwood St, Portland,ME,04101 +246968,AAA Batteries (4-pack),1,2.99,2019-08-10 19:26:00,443 Main St, Seattle,WA,98101 +246969,Apple Airpods Headphones,1,150.0,2019-08-08 20:33:00,413 Pine St, Portland,ME,04101 +246970,iPhone,1,700.0,2019-08-06 09:23:00,835 Walnut St, San Francisco,CA,94016 +246971,Lightning Charging Cable,1,14.95,2019-08-05 18:05:00,265 Park St, Los Angeles,CA,90001 +246972,20in Monitor,1,109.99,2019-08-05 12:11:00,100 Park St, New York City,NY,10001 +246973,AAA Batteries (4-pack),1,2.99,2019-08-25 19:37:00,783 11th St, San Francisco,CA,94016 +246974,AAA Batteries (4-pack),3,2.99,2019-08-29 15:41:00,174 Walnut St, Dallas,TX,75001 +246975,ThinkPad Laptop,1,999.99,2019-08-12 18:44:00,327 9th St, San Francisco,CA,94016 +246976,Apple Airpods Headphones,1,150.0,2019-08-09 20:40:00,513 Hickory St, New York City,NY,10001 +246977,Bose SoundSport Headphones,1,99.99,2019-08-02 22:40:00,104 Jackson St, Portland,OR,97035 +246978,Google Phone,1,600.0,2019-08-29 16:27:00,661 8th St, San Francisco,CA,94016 +246979,AAA Batteries (4-pack),1,2.99,2019-08-31 19:42:00,102 7th St, San Francisco,CA,94016 +246980,Lightning Charging Cable,1,14.95,2019-08-10 22:08:00,778 Jackson St, Austin,TX,73301 +246981,20in Monitor,1,109.99,2019-08-11 18:51:00,585 Chestnut St, Dallas,TX,75001 +246982,AA Batteries (4-pack),1,3.84,2019-08-18 19:42:00,491 Wilson St, Portland,OR,97035 +246983,iPhone,1,700.0,2019-08-31 15:14:00,945 Jefferson St, Boston,MA,02215 +246984,iPhone,1,700.0,2019-08-10 17:15:00,825 1st St, Portland,ME,04101 +246985,Wired Headphones,1,11.99,2019-08-18 11:30:00,144 5th St, New York City,NY,10001 +246986,AAA Batteries (4-pack),3,2.99,2019-08-11 23:06:00,532 Main St, Dallas,TX,75001 +246987,AA Batteries (4-pack),1,3.84,2019-08-08 17:53:00,860 Chestnut St, Los Angeles,CA,90001 +246988,Lightning Charging Cable,1,14.95,2019-08-26 19:04:00,814 9th St, New York City,NY,10001 +246989,34in Ultrawide Monitor,1,379.99,2019-08-04 15:49:00,733 North St, New York City,NY,10001 +246990,USB-C Charging Cable,1,11.95,2019-08-16 15:49:00,416 Adams St, Atlanta,GA,30301 +246991,Lightning Charging Cable,1,14.95,2019-08-23 18:55:00,156 Center St, New York City,NY,10001 +246992,Flatscreen TV,1,300.0,2019-08-16 20:25:00,377 Lincoln St, Austin,TX,73301 +246993,AA Batteries (4-pack),1,3.84,2019-08-19 09:23:00,415 Madison St, Boston,MA,02215 +246994,Flatscreen TV,1,300.0,2019-08-21 07:05:00,441 Adams St, Seattle,WA,98101 +246995,AAA Batteries (4-pack),1,2.99,2019-08-07 03:19:00,547 Madison St, San Francisco,CA,94016 +246996,Lightning Charging Cable,1,14.95,2019-08-30 22:23:00,194 Dogwood St, Boston,MA,02215 +246996,AA Batteries (4-pack),1,3.84,2019-08-30 22:23:00,194 Dogwood St, Boston,MA,02215 +246997,Lightning Charging Cable,1,14.95,2019-08-26 19:03:00,802 North St, Los Angeles,CA,90001 +246998,Macbook Pro Laptop,1,1700.0,2019-08-27 10:26:00,667 11th St, San Francisco,CA,94016 +246999,AAA Batteries (4-pack),1,2.99,2019-08-25 09:40:00,759 13th St, Boston,MA,02215 +247000,Lightning Charging Cable,2,14.95,2019-08-05 22:42:00,633 6th St, Portland,OR,97035 +247001,Apple Airpods Headphones,1,150.0,2019-08-24 05:59:00,454 North St, San Francisco,CA,94016 +247002,USB-C Charging Cable,1,11.95,2019-08-29 06:21:00,161 Elm St, Los Angeles,CA,90001 +247003,USB-C Charging Cable,1,11.95,2019-08-04 08:33:00,866 Dogwood St, Los Angeles,CA,90001 +247004,ThinkPad Laptop,1,999.99,2019-08-11 18:44:00,173 Johnson St, Seattle,WA,98101 +247005,Apple Airpods Headphones,1,150.0,2019-08-19 20:10:00,988 Forest St, San Francisco,CA,94016 +247006,iPhone,1,700.0,2019-08-12 18:51:00,319 8th St, San Francisco,CA,94016 +247006,Apple Airpods Headphones,1,150.0,2019-08-12 18:51:00,319 8th St, San Francisco,CA,94016 +247007,Lightning Charging Cable,2,14.95,2019-08-04 12:27:00,558 Lincoln St, Dallas,TX,75001 +247008,Wired Headphones,1,11.99,2019-08-23 11:32:00,131 Elm St, Atlanta,GA,30301 +247009,LG Washing Machine,1,600.0,2019-08-19 11:41:00,137 Johnson St, Austin,TX,73301 +247010,AAA Batteries (4-pack),1,2.99,2019-08-19 11:12:00,864 Maple St, San Francisco,CA,94016 +247011,AA Batteries (4-pack),1,3.84,2019-08-08 13:02:00,601 Church St, Los Angeles,CA,90001 +247012,27in 4K Gaming Monitor,1,389.99,2019-08-08 19:58:00,44 Lincoln St, New York City,NY,10001 +247013,27in FHD Monitor,1,149.99,2019-08-20 22:50:00,252 8th St, Atlanta,GA,30301 +247014,27in FHD Monitor,1,149.99,2019-08-13 00:13:00,246 River St, San Francisco,CA,94016 +247015,Google Phone,1,600.0,2019-08-27 15:11:00,123 Walnut St, Seattle,WA,98101 +247016,Lightning Charging Cable,1,14.95,2019-08-31 13:09:00,959 Wilson St, New York City,NY,10001 +247017,AA Batteries (4-pack),3,3.84,2019-08-10 20:55:00,960 Church St, Los Angeles,CA,90001 +247018,Lightning Charging Cable,1,14.95,2019-08-19 10:13:00,736 Maple St, San Francisco,CA,94016 +247019,Flatscreen TV,1,300.0,2019-08-21 14:33:00,504 Johnson St, Los Angeles,CA,90001 +247020,AA Batteries (4-pack),1,3.84,2019-08-14 04:16:00,669 Spruce St, San Francisco,CA,94016 +247021,Wired Headphones,1,11.99,2019-08-10 20:53:00,90 Meadow St, Boston,MA,02215 +247022,Macbook Pro Laptop,1,1700.0,2019-08-29 14:37:00,631 Pine St, Portland,OR,97035 +247023,AA Batteries (4-pack),1,3.84,2019-08-02 16:31:00,739 Meadow St, San Francisco,CA,94016 +247024,Apple Airpods Headphones,1,150.0,2019-08-10 19:41:00,271 Hickory St, Portland,OR,97035 +247025,Wired Headphones,1,11.99,2019-08-30 06:21:00,987 Highland St, Boston,MA,02215 +247026,USB-C Charging Cable,1,11.95,2019-08-11 14:15:00,421 Madison St, Boston,MA,02215 +247027,AAA Batteries (4-pack),3,2.99,2019-08-11 09:26:00,34 Chestnut St, Boston,MA,02215 +247028,AAA Batteries (4-pack),1,2.99,2019-08-04 11:48:00,146 Walnut St, New York City,NY,10001 +247029,Bose SoundSport Headphones,1,99.99,2019-08-23 23:30:00,124 Lake St, Seattle,WA,98101 +247030,Lightning Charging Cable,1,14.95,2019-08-31 21:30:00,313 West St, Los Angeles,CA,90001 +247031,Google Phone,1,600.0,2019-08-10 15:57:00,776 Lakeview St, Atlanta,GA,30301 +247032,27in 4K Gaming Monitor,1,389.99,2019-08-21 11:06:00,775 10th St, New York City,NY,10001 +247033,iPhone,1,700.0,2019-08-04 19:03:00,831 10th St, Seattle,WA,98101 +247033,Lightning Charging Cable,1,14.95,2019-08-04 19:03:00,831 10th St, Seattle,WA,98101 +247034,AAA Batteries (4-pack),1,2.99,2019-08-10 18:41:00,695 Forest St, Atlanta,GA,30301 +247035,USB-C Charging Cable,2,11.95,2019-08-13 18:55:00,330 9th St, New York City,NY,10001 +247036,AA Batteries (4-pack),1,3.84,2019-08-10 22:36:00,575 Lake St, Atlanta,GA,30301 +247037,Apple Airpods Headphones,1,150.0,2019-08-20 09:53:00,717 Ridge St, Boston,MA,02215 +247038,AA Batteries (4-pack),3,3.84,2019-08-14 11:24:00,638 South St, Los Angeles,CA,90001 +247039,27in FHD Monitor,1,149.99,2019-08-27 10:33:00,757 14th St, San Francisco,CA,94016 +247040,AAA Batteries (4-pack),1,2.99,2019-08-02 10:30:00,564 River St, Los Angeles,CA,90001 +247041,AAA Batteries (4-pack),2,2.99,2019-08-07 16:38:00,367 2nd St, Los Angeles,CA,90001 +247042,Bose SoundSport Headphones,1,99.99,2019-08-12 09:23:00,869 1st St, New York City,NY,10001 +247043,Bose SoundSport Headphones,1,99.99,2019-08-08 18:49:00,697 9th St, Atlanta,GA,30301 +247044,AAA Batteries (4-pack),1,2.99,2019-08-16 17:26:00,21 Jackson St, Los Angeles,CA,90001 +247045,Lightning Charging Cable,1,14.95,2019-08-30 13:52:00,11 Adams St, Los Angeles,CA,90001 +247046,AA Batteries (4-pack),1,3.84,2019-08-14 18:50:00,448 Madison St, Seattle,WA,98101 +247047,Lightning Charging Cable,1,14.95,2019-08-14 21:34:00,213 Jackson St, Portland,ME,04101 +247048,Apple Airpods Headphones,2,150.0,2019-08-22 08:21:00,161 Elm St, Boston,MA,02215 +247049,ThinkPad Laptop,1,999.99,2019-08-24 11:25:00,903 South St, San Francisco,CA,94016 +247050,Macbook Pro Laptop,1,1700.0,2019-08-19 12:34:00,294 Pine St, San Francisco,CA,94016 +247051,Wired Headphones,1,11.99,2019-08-16 07:24:00,861 Cherry St, Austin,TX,73301 +247052,Wired Headphones,1,11.99,2019-08-14 13:34:00,313 10th St, Seattle,WA,98101 +247053,Bose SoundSport Headphones,1,99.99,2019-08-18 15:11:00,1 2nd St, New York City,NY,10001 +247054,AA Batteries (4-pack),2,3.84,2019-08-04 07:37:00,354 Spruce St, Los Angeles,CA,90001 +247055,AA Batteries (4-pack),1,3.84,2019-08-31 14:23:00,53 10th St, Los Angeles,CA,90001 +247056,AA Batteries (4-pack),1,3.84,2019-08-13 10:04:00,215 Adams St, Boston,MA,02215 +247056,USB-C Charging Cable,1,11.95,2019-08-13 10:04:00,215 Adams St, Boston,MA,02215 +247057,Lightning Charging Cable,1,14.95,2019-08-19 18:49:00,137 9th St, Los Angeles,CA,90001 +247058,34in Ultrawide Monitor,1,379.99,2019-08-08 20:24:00,286 Maple St, Seattle,WA,98101 +247059,AAA Batteries (4-pack),1,2.99,2019-08-31 10:15:00,521 Jefferson St, New York City,NY,10001 +247060,USB-C Charging Cable,1,11.95,2019-08-15 17:09:00,167 Elm St, San Francisco,CA,94016 +247061,27in FHD Monitor,1,149.99,2019-08-25 01:19:00,600 Elm St, New York City,NY,10001 +247062,AAA Batteries (4-pack),2,2.99,2019-08-28 14:18:00,662 5th St, Atlanta,GA,30301 +247063,iPhone,1,700.0,2019-08-13 22:35:00,100 Jefferson St, Los Angeles,CA,90001 +247063,Apple Airpods Headphones,1,150.0,2019-08-13 22:35:00,100 Jefferson St, Los Angeles,CA,90001 +247064,Google Phone,1,600.0,2019-08-08 12:21:00,663 11th St, Dallas,TX,75001 +247065,Bose SoundSport Headphones,1,99.99,2019-08-02 09:23:00,780 Sunset St, Atlanta,GA,30301 +247066,Lightning Charging Cable,1,14.95,2019-08-27 10:35:00,71 Maple St, Los Angeles,CA,90001 +247067,27in FHD Monitor,1,149.99,2019-08-07 07:58:00,929 7th St, San Francisco,CA,94016 +247068,20in Monitor,1,109.99,2019-08-10 15:22:00,872 Madison St, San Francisco,CA,94016 +247069,Wired Headphones,1,11.99,2019-08-01 16:25:00,953 River St, Los Angeles,CA,90001 +247070,Apple Airpods Headphones,1,150.0,2019-08-25 12:11:00,331 Johnson St, San Francisco,CA,94016 +247071,Wired Headphones,2,11.99,2019-08-31 11:06:00,582 South St, Boston,MA,02215 +247072,Bose SoundSport Headphones,1,99.99,2019-08-08 16:57:00,813 Lake St, Dallas,TX,75001 +247073,USB-C Charging Cable,1,11.95,2019-08-10 06:57:00,800 Church St, Los Angeles,CA,90001 +247074,27in FHD Monitor,1,149.99,2019-08-04 21:52:00,207 2nd St, San Francisco,CA,94016 +247075,USB-C Charging Cable,1,11.95,2019-08-10 19:18:00,213 Main St, New York City,NY,10001 +247076,Macbook Pro Laptop,1,1700.0,2019-08-26 21:07:00,762 Forest St, San Francisco,CA,94016 +247077,Lightning Charging Cable,1,14.95,2019-08-02 16:43:00,408 Main St, San Francisco,CA,94016 +247078,Bose SoundSport Headphones,1,99.99,2019-08-23 10:20:00,90 South St, New York City,NY,10001 +247079,Lightning Charging Cable,1,14.95,2019-08-02 22:20:00,945 Willow St, Seattle,WA,98101 +247080,Lightning Charging Cable,1,14.95,2019-08-08 13:47:00,775 West St, New York City,NY,10001 +247081,USB-C Charging Cable,1,11.95,2019-08-21 14:55:00,674 Johnson St, Portland,ME,04101 +247082,Bose SoundSport Headphones,1,99.99,2019-08-10 09:58:00,870 Pine St, Portland,OR,97035 +247083,ThinkPad Laptop,1,999.99,2019-08-03 13:37:00,293 Highland St, Portland,OR,97035 +247084,Apple Airpods Headphones,1,150.0,2019-08-03 10:27:00,252 Hill St, Seattle,WA,98101 +247085,USB-C Charging Cable,1,11.95,2019-08-25 16:17:00,872 12th St, Los Angeles,CA,90001 +247086,Wired Headphones,1,11.99,2019-08-12 13:18:00,68 2nd St, San Francisco,CA,94016 +247087,Lightning Charging Cable,1,14.95,2019-08-26 17:12:00,704 Walnut St, Los Angeles,CA,90001 +247088,AA Batteries (4-pack),1,3.84,2019-08-08 12:13:00,77 Jackson St, Los Angeles,CA,90001 +247089,USB-C Charging Cable,1,11.95,2019-08-31 16:08:00,247 Jackson St, San Francisco,CA,94016 +247089,Lightning Charging Cable,1,14.95,2019-08-31 16:08:00,247 Jackson St, San Francisco,CA,94016 +247090,AAA Batteries (4-pack),1,2.99,2019-08-14 23:26:00,270 South St, Dallas,TX,75001 +247091,AAA Batteries (4-pack),1,2.99,2019-08-07 09:54:00,753 7th St, Austin,TX,73301 +247092,Wired Headphones,1,11.99,2019-08-15 14:37:00,658 7th St, San Francisco,CA,94016 +247093,Google Phone,1,600.0,2019-08-08 16:44:00,36 Ridge St, Los Angeles,CA,90001 +247094,Bose SoundSport Headphones,1,99.99,2019-08-30 20:18:00,291 Hill St, San Francisco,CA,94016 +247095,USB-C Charging Cable,1,11.95,2019-08-03 10:15:00,987 11th St, Dallas,TX,75001 +247096,27in 4K Gaming Monitor,1,389.99,2019-08-31 18:35:00,351 Lakeview St, Dallas,TX,75001 +247097,Lightning Charging Cable,1,14.95,2019-08-23 19:43:00,509 Elm St, Los Angeles,CA,90001 +247098,Bose SoundSport Headphones,1,99.99,2019-08-29 12:47:00,22 11th St, Atlanta,GA,30301 +247099,AA Batteries (4-pack),1,3.84,2019-08-13 06:21:00,653 9th St, Dallas,TX,75001 +247100,Flatscreen TV,1,300.0,2019-08-08 10:28:00,570 Forest St, New York City,NY,10001 +247101,AAA Batteries (4-pack),1,2.99,2019-08-24 12:29:00,833 Main St, Boston,MA,02215 +247102,Bose SoundSport Headphones,1,99.99,2019-08-06 07:36:00,962 Hickory St, Dallas,TX,75001 +247103,USB-C Charging Cable,2,11.95,2019-08-28 09:56:00,93 9th St, Los Angeles,CA,90001 +247104,AAA Batteries (4-pack),1,2.99,2019-08-24 22:55:00,662 West St, Portland,ME,04101 +247105,Flatscreen TV,1,300.0,2019-08-25 07:09:00,987 Spruce St, New York City,NY,10001 +247106,AAA Batteries (4-pack),1,2.99,2019-08-29 15:27:00,947 14th St, Seattle,WA,98101 +247107,USB-C Charging Cable,1,11.95,2019-08-23 12:16:00,625 Lakeview St, Los Angeles,CA,90001 +247108,Apple Airpods Headphones,1,150.0,2019-08-29 13:23:00,20 12th St, Austin,TX,73301 +247109,Lightning Charging Cable,1,14.95,2019-08-19 09:10:00,248 10th St, Atlanta,GA,30301 +247110,AA Batteries (4-pack),1,3.84,2019-08-01 15:15:00,985 Madison St, Austin,TX,73301 +247111,iPhone,1,700.0,2019-08-17 18:40:00,850 Park St, Portland,OR,97035 +247112,27in FHD Monitor,1,149.99,2019-08-10 09:56:00,508 Johnson St, San Francisco,CA,94016 +247113,Wired Headphones,1,11.99,2019-08-28 12:29:00,89 Ridge St, Portland,OR,97035 +247114,20in Monitor,1,109.99,2019-08-23 18:17:00,936 Ridge St, Dallas,TX,75001 +247115,USB-C Charging Cable,1,11.95,2019-08-07 18:19:00,172 West St, Los Angeles,CA,90001 +247116,20in Monitor,1,109.99,2019-08-18 17:48:00,199 Center St, Atlanta,GA,30301 +247117,Lightning Charging Cable,1,14.95,2019-08-16 13:30:00,179 Cherry St, New York City,NY,10001 +247118,Lightning Charging Cable,1,14.95,2019-08-31 18:54:00,394 Adams St, Austin,TX,73301 +247119,USB-C Charging Cable,1,11.95,2019-08-31 14:18:00,637 Forest St, Dallas,TX,75001 +247120,Apple Airpods Headphones,1,150.0,2019-08-08 10:21:00,253 4th St, Seattle,WA,98101 +247121,AAA Batteries (4-pack),4,2.99,2019-08-01 18:27:00,467 Pine St, Seattle,WA,98101 +247122,USB-C Charging Cable,1,11.95,2019-08-28 16:38:00,277 1st St, Austin,TX,73301 +247123,Google Phone,1,600.0,2019-08-25 19:16:00,260 8th St, San Francisco,CA,94016 +247124,AAA Batteries (4-pack),2,2.99,2019-08-21 20:51:00,18 13th St, Austin,TX,73301 +247125,Lightning Charging Cable,1,14.95,2019-08-10 19:00:00,228 River St, Dallas,TX,75001 +247126,Lightning Charging Cable,1,14.95,2019-08-20 09:52:00,730 Sunset St, San Francisco,CA,94016 +247127,Google Phone,1,600.0,2019-08-29 21:08:00,306 River St, Boston,MA,02215 +247127,Wired Headphones,2,11.99,2019-08-29 21:08:00,306 River St, Boston,MA,02215 +247128,Google Phone,1,600.0,2019-08-02 16:55:00,928 Lake St, Portland,OR,97035 +247129,Wired Headphones,1,11.99,2019-08-23 08:34:00,670 1st St, Boston,MA,02215 +247130,Bose SoundSport Headphones,1,99.99,2019-08-19 23:01:00,730 10th St, Boston,MA,02215 +247131,Bose SoundSport Headphones,1,99.99,2019-08-25 22:32:00,768 Lake St, Seattle,WA,98101 +247132,Bose SoundSport Headphones,1,99.99,2019-08-14 08:29:00,806 South St, San Francisco,CA,94016 +247133,ThinkPad Laptop,1,999.99,2019-08-31 15:40:00,133 Adams St, Seattle,WA,98101 +247134,Lightning Charging Cable,1,14.95,2019-08-24 16:30:00,959 Lake St, Boston,MA,02215 +247135,AAA Batteries (4-pack),1,2.99,2019-08-05 21:47:00,266 North St, Boston,MA,02215 +247136,AA Batteries (4-pack),1,3.84,2019-08-17 10:48:00,687 Pine St, San Francisco,CA,94016 +247137,Lightning Charging Cable,1,14.95,2019-08-13 21:16:00,692 13th St, Los Angeles,CA,90001 +247138,USB-C Charging Cable,1,11.95,2019-08-01 22:00:00,186 Park St, Los Angeles,CA,90001 +247139,USB-C Charging Cable,1,11.95,2019-08-10 13:38:00,930 Wilson St, Austin,TX,73301 +247140,Bose SoundSport Headphones,1,99.99,2019-08-24 09:40:00,631 Lincoln St, San Francisco,CA,94016 +247141,Apple Airpods Headphones,1,150.0,2019-08-13 19:06:00,219 North St, Atlanta,GA,30301 +247142,Apple Airpods Headphones,1,150.0,2019-08-26 13:34:00,324 Cedar St, New York City,NY,10001 +247143,Vareebadd Phone,1,400.0,2019-08-01 22:05:00,630 Dogwood St, Los Angeles,CA,90001 +247144,Wired Headphones,1,11.99,2019-08-13 09:30:00,7 Church St, Seattle,WA,98101 +247145,Lightning Charging Cable,1,14.95,2019-08-10 13:25:00,83 Johnson St, San Francisco,CA,94016 +247146,Bose SoundSport Headphones,1,99.99,2019-08-27 20:10:00,444 6th St, Austin,TX,73301 +247147,AA Batteries (4-pack),1,3.84,2019-08-21 16:14:00,689 Park St, Los Angeles,CA,90001 +247148,Macbook Pro Laptop,1,1700.0,2019-08-23 20:11:00,905 Meadow St, San Francisco,CA,94016 +247149,iPhone,1,700.0,2019-08-29 00:48:00,725 Elm St, New York City,NY,10001 +247149,Wired Headphones,1,11.99,2019-08-29 00:48:00,725 Elm St, New York City,NY,10001 +247150,Lightning Charging Cable,1,14.95,2019-08-04 15:22:00,138 1st St, New York City,NY,10001 +247151,AAA Batteries (4-pack),2,2.99,2019-08-22 20:58:00,403 Church St, Dallas,TX,75001 +247152,Apple Airpods Headphones,1,150.0,2019-08-29 09:50:00,467 1st St, San Francisco,CA,94016 +247153,AA Batteries (4-pack),1,3.84,2019-08-08 06:09:00,459 2nd St, San Francisco,CA,94016 +247154,iPhone,1,700.0,2019-08-16 12:52:00,475 Pine St, Los Angeles,CA,90001 +247155,Google Phone,1,600.0,2019-08-23 15:33:00,718 Highland St, Seattle,WA,98101 +247156,AAA Batteries (4-pack),1,2.99,2019-08-13 13:32:00,224 12th St, Los Angeles,CA,90001 +247157,Lightning Charging Cable,1,14.95,2019-08-18 18:08:00,69 North St, Atlanta,GA,30301 +247158,AA Batteries (4-pack),1,3.84,2019-08-28 06:53:00,246 Jefferson St, New York City,NY,10001 +247159,Lightning Charging Cable,1,14.95,2019-08-23 19:53:00,722 9th St, San Francisco,CA,94016 +247160,Wired Headphones,1,11.99,2019-08-05 10:34:00,240 4th St, New York City,NY,10001 +247161,AA Batteries (4-pack),1,3.84,2019-08-26 13:12:00,198 5th St, San Francisco,CA,94016 +247162,AA Batteries (4-pack),1,3.84,2019-08-08 16:35:00,223 Washington St, Seattle,WA,98101 +247163,20in Monitor,1,109.99,2019-08-28 19:01:00,323 Lincoln St, San Francisco,CA,94016 +247164,Wired Headphones,1,11.99,2019-08-12 16:00:00,209 Johnson St, New York City,NY,10001 +247165,AAA Batteries (4-pack),1,2.99,2019-08-22 12:43:00,552 Main St, Portland,OR,97035 +247166,AAA Batteries (4-pack),1,2.99,2019-08-17 20:49:00,967 North St, San Francisco,CA,94016 +247167,27in 4K Gaming Monitor,1,389.99,2019-08-03 06:41:00,40 River St, Seattle,WA,98101 +247168,Macbook Pro Laptop,1,1700.0,2019-08-08 08:17:00,815 Main St, New York City,NY,10001 +247169,Google Phone,1,600.0,2019-08-25 20:33:00,307 Elm St, Austin,TX,73301 +247170,AA Batteries (4-pack),1,3.84,2019-08-30 05:40:00,654 Hickory St, Boston,MA,02215 +247171,Lightning Charging Cable,1,14.95,2019-08-27 00:14:00,941 Lake St, New York City,NY,10001 +247172,27in FHD Monitor,1,149.99,2019-08-07 05:21:00,424 10th St, San Francisco,CA,94016 +247173,Wired Headphones,1,11.99,2019-08-18 12:13:00,488 8th St, New York City,NY,10001 +247174,AA Batteries (4-pack),3,3.84,2019-08-22 07:55:00,151 Pine St, Boston,MA,02215 +247175,Wired Headphones,1,11.99,2019-08-30 19:15:00,306 Jackson St, New York City,NY,10001 +247176,34in Ultrawide Monitor,1,379.99,2019-08-17 21:05:00,137 Chestnut St, Seattle,WA,98101 +247177,Lightning Charging Cable,1,14.95,2019-08-19 11:14:00,358 Highland St, Atlanta,GA,30301 +247178,Lightning Charging Cable,1,14.95,2019-08-17 21:15:00,849 Main St, Austin,TX,73301 +247179,USB-C Charging Cable,2,11.95,2019-08-04 15:56:00,844 Main St, Dallas,TX,75001 +247180,Google Phone,1,600.0,2019-08-25 18:36:00,752 Center St, San Francisco,CA,94016 +247180,USB-C Charging Cable,1,11.95,2019-08-25 18:36:00,752 Center St, San Francisco,CA,94016 +247181,USB-C Charging Cable,1,11.95,2019-08-08 11:12:00,87 Hill St, San Francisco,CA,94016 +247182,Wired Headphones,1,11.99,2019-08-29 01:14:00,844 Hickory St, San Francisco,CA,94016 +247183,USB-C Charging Cable,1,11.95,2019-08-31 13:10:00,940 Spruce St, San Francisco,CA,94016 +247184,Bose SoundSport Headphones,1,99.99,2019-08-31 21:07:00,164 2nd St, Atlanta,GA,30301 +247185,Lightning Charging Cable,1,14.95,2019-08-31 10:41:00,410 10th St, San Francisco,CA,94016 +247186,Apple Airpods Headphones,1,150.0,2019-08-07 17:35:00,932 Hill St, New York City,NY,10001 +247187,Lightning Charging Cable,1,14.95,2019-08-09 17:38:00,504 Willow St, Dallas,TX,75001 +247188,27in FHD Monitor,1,149.99,2019-08-28 11:05:00,453 Chestnut St, San Francisco,CA,94016 +247189,LG Dryer,1,600.0,2019-08-17 22:09:00,364 West St, Los Angeles,CA,90001 +247190,USB-C Charging Cable,2,11.95,2019-08-25 14:42:00,515 Jackson St, Portland,OR,97035 +247191,Lightning Charging Cable,1,14.95,2019-08-29 14:30:00,208 Walnut St, San Francisco,CA,94016 +247192,AA Batteries (4-pack),2,3.84,2019-08-28 12:49:00,199 11th St, Austin,TX,73301 +247193,27in FHD Monitor,1,149.99,2019-08-22 20:45:00,176 13th St, New York City,NY,10001 +247194,USB-C Charging Cable,1,11.95,2019-08-15 14:12:00,706 Church St, Seattle,WA,98101 +247195,Lightning Charging Cable,1,14.95,2019-08-05 22:36:00,433 South St, Atlanta,GA,30301 +247195,USB-C Charging Cable,1,11.95,2019-08-05 22:36:00,433 South St, Atlanta,GA,30301 +247196,34in Ultrawide Monitor,1,379.99,2019-08-25 18:37:00,822 1st St, Dallas,TX,75001 +247197,Lightning Charging Cable,2,14.95,2019-08-28 14:58:00,644 11th St, Los Angeles,CA,90001 +247198,ThinkPad Laptop,1,999.99,2019-08-06 02:09:00,510 Hickory St, Dallas,TX,75001 +247199,Apple Airpods Headphones,1,150.0,2019-08-14 19:43:00,758 9th St, Seattle,WA,98101 +247200,Wired Headphones,1,11.99,2019-08-07 10:12:00,997 River St, Portland,OR,97035 +247201,Apple Airpods Headphones,1,150.0,2019-08-28 18:27:00,288 2nd St, Portland,OR,97035 +247202,AA Batteries (4-pack),1,3.84,2019-08-02 12:27:00,463 Madison St, Atlanta,GA,30301 +247203,AAA Batteries (4-pack),1,2.99,2019-08-11 11:44:00,169 Jackson St, Dallas,TX,75001 +247204,27in FHD Monitor,1,149.99,2019-08-12 14:24:00,991 13th St, Boston,MA,02215 +247205,USB-C Charging Cable,1,11.95,2019-08-31 01:41:00,24 Chestnut St, Atlanta,GA,30301 +247206,27in 4K Gaming Monitor,1,389.99,2019-08-04 10:11:00,195 Highland St, New York City,NY,10001 +247207,Wired Headphones,1,11.99,2019-08-06 13:38:00,966 Highland St, Los Angeles,CA,90001 +247208,Flatscreen TV,1,300.0,2019-08-08 13:19:00,558 7th St, Seattle,WA,98101 +247209,Google Phone,1,600.0,2019-08-12 08:14:00,742 Meadow St, New York City,NY,10001 +247210,27in FHD Monitor,1,149.99,2019-08-21 07:52:00,783 Adams St, San Francisco,CA,94016 +247211,Apple Airpods Headphones,1,150.0,2019-08-28 19:43:00,883 Johnson St, Los Angeles,CA,90001 +247212,Vareebadd Phone,1,400.0,2019-08-27 13:37:00,259 14th St, Atlanta,GA,30301 +247213,USB-C Charging Cable,1,11.95,2019-08-05 11:42:00,462 5th St, Atlanta,GA,30301 +247214,Macbook Pro Laptop,1,1700.0,2019-08-19 07:52:00,33 Walnut St, Seattle,WA,98101 +247215,27in FHD Monitor,2,149.99,2019-08-19 23:17:00,664 Jackson St, San Francisco,CA,94016 +247216,Lightning Charging Cable,2,14.95,2019-08-03 08:19:00,644 Lincoln St, Austin,TX,73301 +247217,USB-C Charging Cable,1,11.95,2019-08-05 13:32:00,450 Hill St, Seattle,WA,98101 +247218,Flatscreen TV,1,300.0,2019-08-07 10:36:00,420 Church St, New York City,NY,10001 +247219,Bose SoundSport Headphones,1,99.99,2019-08-04 09:51:00,615 Ridge St, Portland,ME,04101 +247220,Apple Airpods Headphones,1,150.0,2019-08-26 17:21:00,370 Wilson St, San Francisco,CA,94016 +247221,AA Batteries (4-pack),1,3.84,2019-08-10 20:30:00,697 13th St, Seattle,WA,98101 +247222,AAA Batteries (4-pack),1,2.99,2019-08-25 22:52:00,88 Chestnut St, Austin,TX,73301 +247223,AAA Batteries (4-pack),1,2.99,2019-08-23 11:55:00,456 Forest St, Atlanta,GA,30301 +247224,Wired Headphones,1,11.99,2019-08-31 16:24:00,582 14th St, Dallas,TX,75001 +247225,AA Batteries (4-pack),1,3.84,2019-08-26 14:48:00,700 Hill St, Boston,MA,02215 +247226,ThinkPad Laptop,1,999.99,2019-08-29 22:44:00,520 Center St, Portland,ME,04101 +247227,Lightning Charging Cable,1,14.95,2019-08-04 12:14:00,36 Pine St, San Francisco,CA,94016 +247228,Lightning Charging Cable,1,14.95,2019-08-10 09:27:00,288 Meadow St, San Francisco,CA,94016 +247229,Bose SoundSport Headphones,1,99.99,2019-08-08 12:38:00,967 Wilson St, Boston,MA,02215 +247230,AAA Batteries (4-pack),2,2.99,2019-08-20 20:16:00,977 Dogwood St, Los Angeles,CA,90001 +247231,USB-C Charging Cable,1,11.95,2019-08-16 09:59:00,449 Cherry St, Dallas,TX,75001 +247232,USB-C Charging Cable,1,11.95,2019-08-09 09:57:00,734 Johnson St, Seattle,WA,98101 +247233,Apple Airpods Headphones,1,150.0,2019-08-19 15:45:00,238 7th St, New York City,NY,10001 +247234,AA Batteries (4-pack),1,3.84,2019-08-18 05:22:00,177 Elm St, San Francisco,CA,94016 +247235,Wired Headphones,1,11.99,2019-08-12 09:41:00,118 Hickory St, Boston,MA,02215 +247236,AA Batteries (4-pack),1,3.84,2019-08-14 03:15:00,988 Walnut St, Dallas,TX,75001 +247237,AAA Batteries (4-pack),1,2.99,2019-08-06 08:28:00,338 7th St, Atlanta,GA,30301 +247238,USB-C Charging Cable,1,11.95,2019-08-16 16:55:00,297 Sunset St, New York City,NY,10001 +247238,Bose SoundSport Headphones,1,99.99,2019-08-16 16:55:00,297 Sunset St, New York City,NY,10001 +247239,USB-C Charging Cable,1,11.95,2019-08-23 17:51:00,935 Jefferson St, New York City,NY,10001 +247240,USB-C Charging Cable,1,11.95,2019-08-28 11:59:00,579 10th St, Los Angeles,CA,90001 +247241,Lightning Charging Cable,1,14.95,2019-08-02 11:47:00,686 Dogwood St, San Francisco,CA,94016 +247242,Apple Airpods Headphones,1,150.0,2019-08-22 20:34:00,169 Walnut St, Boston,MA,02215 +247243,Wired Headphones,1,11.99,2019-08-13 10:52:00,366 14th St, Atlanta,GA,30301 +247244,Lightning Charging Cable,1,14.95,2019-08-11 15:24:00,66 Johnson St, Dallas,TX,75001 +247245,ThinkPad Laptop,1,999.99,2019-08-22 23:19:00,629 13th St, Portland,OR,97035 +247246,Lightning Charging Cable,1,14.95,2019-08-09 21:15:00,20 Elm St, New York City,NY,10001 +247247,AAA Batteries (4-pack),1,2.99,2019-08-11 20:00:00,253 Ridge St, Austin,TX,73301 +247248,LG Washing Machine,1,600.0,2019-08-18 15:20:00,253 7th St, San Francisco,CA,94016 +247249,Lightning Charging Cable,1,14.95,2019-08-13 14:49:00,976 Hill St, New York City,NY,10001 +247250,Apple Airpods Headphones,1,150.0,2019-08-29 22:25:00,932 Hickory St, San Francisco,CA,94016 +247251,Bose SoundSport Headphones,1,99.99,2019-08-08 09:37:00,567 Center St, San Francisco,CA,94016 +247252,34in Ultrawide Monitor,1,379.99,2019-08-12 08:03:00,183 Wilson St, Boston,MA,02215 +247253,27in 4K Gaming Monitor,1,389.99,2019-08-01 23:28:00,871 5th St, San Francisco,CA,94016 +247254,AAA Batteries (4-pack),1,2.99,2019-08-24 11:48:00,159 10th St, San Francisco,CA,94016 +247255,Lightning Charging Cable,1,14.95,2019-08-16 07:15:00,160 6th St, Los Angeles,CA,90001 +247256,34in Ultrawide Monitor,1,379.99,2019-08-13 22:51:00,176 Church St, Los Angeles,CA,90001 +247257,ThinkPad Laptop,1,999.99,2019-08-27 09:20:00,185 Wilson St, Dallas,TX,75001 +247258,Bose SoundSport Headphones,1,99.99,2019-08-19 20:07:00,810 Willow St, New York City,NY,10001 +247259,Lightning Charging Cable,1,14.95,2019-08-01 12:37:00,642 Pine St, New York City,NY,10001 +247260,Apple Airpods Headphones,1,150.0,2019-08-04 14:56:00,683 Cedar St, San Francisco,CA,94016 +247261,Apple Airpods Headphones,1,150.0,2019-08-28 11:08:00,692 4th St, New York City,NY,10001 +247262,Wired Headphones,1,11.99,2019-08-25 13:23:00,787 Wilson St, Boston,MA,02215 +247263,USB-C Charging Cable,2,11.95,2019-08-25 12:39:00,955 Elm St, Los Angeles,CA,90001 +247264,iPhone,1,700.0,2019-08-25 20:14:00,953 4th St, Boston,MA,02215 +247264,Lightning Charging Cable,1,14.95,2019-08-25 20:14:00,953 4th St, Boston,MA,02215 +247264,Wired Headphones,1,11.99,2019-08-25 20:14:00,953 4th St, Boston,MA,02215 +247265,USB-C Charging Cable,2,11.95,2019-08-21 15:08:00,781 11th St, Portland,OR,97035 +247266,Lightning Charging Cable,1,14.95,2019-08-11 20:57:00,582 Elm St, Portland,OR,97035 +247267,Lightning Charging Cable,1,14.95,2019-08-13 14:24:00,41 Madison St, New York City,NY,10001 +247268,Lightning Charging Cable,1,14.95,2019-08-15 16:15:00,860 2nd St, Seattle,WA,98101 +247269,ThinkPad Laptop,1,999.99,2019-08-23 17:52:00,873 8th St, Dallas,TX,75001 +247270,27in FHD Monitor,1,149.99,2019-08-03 15:29:00,418 Wilson St, Los Angeles,CA,90001 +247271,USB-C Charging Cable,1,11.95,2019-08-12 17:05:00,384 Hickory St, San Francisco,CA,94016 +247272,ThinkPad Laptop,1,999.99,2019-08-28 23:30:00,156 14th St, Dallas,TX,75001 +247273,AA Batteries (4-pack),1,3.84,2019-08-05 10:02:00,807 9th St, Atlanta,GA,30301 +247274,Flatscreen TV,1,300.0,2019-08-23 22:01:00,539 North St, New York City,NY,10001 +247275,27in 4K Gaming Monitor,1,389.99,2019-08-22 18:13:00,109 13th St, Atlanta,GA,30301 +247276,AA Batteries (4-pack),1,3.84,2019-08-13 13:53:00,306 Hickory St, Dallas,TX,75001 +247277,Macbook Pro Laptop,1,1700.0,2019-08-22 08:12:00,63 Hill St, Atlanta,GA,30301 +247278,Apple Airpods Headphones,1,150.0,2019-08-12 18:09:00,622 13th St, Portland,OR,97035 +247279,Bose SoundSport Headphones,1,99.99,2019-08-11 23:38:00,560 Lincoln St, Portland,OR,97035 +247280,USB-C Charging Cable,1,11.95,2019-08-02 21:02:00,700 Hickory St, Seattle,WA,98101 +247281,Macbook Pro Laptop,1,1700.0,2019-08-18 17:33:00,210 Forest St, Los Angeles,CA,90001 +247282,27in FHD Monitor,1,149.99,2019-08-07 11:36:00,507 Maple St, Los Angeles,CA,90001 +247283,34in Ultrawide Monitor,1,379.99,2019-08-11 13:35:00,525 Elm St, Boston,MA,02215 +247284,AA Batteries (4-pack),1,3.84,2019-08-28 21:58:00,617 South St, Boston,MA,02215 +247285,iPhone,1,700.0,2019-08-05 20:51:00,840 Cherry St, New York City,NY,10001 +247286,Bose SoundSport Headphones,1,99.99,2019-08-25 15:11:00,656 Adams St, Atlanta,GA,30301 +247287,iPhone,1,700.0,2019-08-14 08:04:00,39 Elm St, Portland,OR,97035 +247288,LG Dryer,1,600.0,2019-08-21 15:36:00,80 7th St, New York City,NY,10001 +247289,Lightning Charging Cable,1,14.95,2019-08-17 15:22:00,247 Church St, Boston,MA,02215 +247290,AA Batteries (4-pack),1,3.84,2019-08-29 09:21:00,52 Spruce St, Atlanta,GA,30301 +247291,Wired Headphones,1,11.99,2019-08-17 22:30:00,835 Chestnut St, Boston,MA,02215 +247292,Bose SoundSport Headphones,1,99.99,2019-08-29 22:37:00,566 2nd St, Los Angeles,CA,90001 +247293,Apple Airpods Headphones,1,150.0,2019-08-11 10:15:00,391 South St, Dallas,TX,75001 +247293,AAA Batteries (4-pack),2,2.99,2019-08-11 10:15:00,391 South St, Dallas,TX,75001 +247294,Apple Airpods Headphones,1,150.0,2019-08-27 19:56:00,806 Highland St, New York City,NY,10001 +247295,27in FHD Monitor,1,149.99,2019-08-23 13:09:00,349 Meadow St, Seattle,WA,98101 +247296,AAA Batteries (4-pack),1,2.99,2019-08-16 20:55:00,768 Church St, San Francisco,CA,94016 +247297,Apple Airpods Headphones,1,150.0,2019-08-28 18:25:00,934 Lincoln St, Portland,OR,97035 +247298,iPhone,1,700.0,2019-08-05 17:26:00,651 12th St, San Francisco,CA,94016 +247299,Lightning Charging Cable,1,14.95,2019-08-02 11:48:00,9 5th St, Portland,OR,97035 +247300,Wired Headphones,1,11.99,2019-08-27 21:14:00,585 Madison St, San Francisco,CA,94016 +247301,Flatscreen TV,1,300.0,2019-08-27 21:24:00,807 Spruce St, San Francisco,CA,94016 +247302,Macbook Pro Laptop,1,1700.0,2019-08-02 20:21:00,202 West St, San Francisco,CA,94016 +247303,Apple Airpods Headphones,1,150.0,2019-08-31 07:34:00,351 7th St, New York City,NY,10001 +247304,AA Batteries (4-pack),1,3.84,2019-08-08 23:48:00,691 Ridge St, New York City,NY,10001 +247305,Bose SoundSport Headphones,1,99.99,2019-08-14 17:02:00,978 Maple St, San Francisco,CA,94016 +247306,iPhone,1,700.0,2019-08-25 01:35:00,17 Elm St, New York City,NY,10001 +247307,Apple Airpods Headphones,1,150.0,2019-08-31 12:52:00,76 Meadow St, Los Angeles,CA,90001 +247308,AA Batteries (4-pack),1,3.84,2019-08-10 08:29:00,145 Park St, Portland,ME,04101 +247309,20in Monitor,1,109.99,2019-08-03 19:32:00,993 Center St, Los Angeles,CA,90001 +247310,Bose SoundSport Headphones,1,99.99,2019-08-12 10:56:00,275 Hill St, San Francisco,CA,94016 +247311,AA Batteries (4-pack),1,3.84,2019-08-11 18:06:00,868 Cherry St, New York City,NY,10001 +247312,Lightning Charging Cable,1,14.95,2019-08-24 13:58:00,173 Center St, San Francisco,CA,94016 +247313,34in Ultrawide Monitor,1,379.99,2019-08-04 19:18:00,459 13th St, Portland,OR,97035 +247314,Bose SoundSport Headphones,1,99.99,2019-08-14 21:31:00,144 Pine St, Los Angeles,CA,90001 +247315,Bose SoundSport Headphones,1,99.99,2019-08-03 11:53:00,747 Washington St, Los Angeles,CA,90001 +247316,Bose SoundSport Headphones,1,99.99,2019-08-04 08:20:00,767 Center St, New York City,NY,10001 +247317,ThinkPad Laptop,1,999.99,2019-08-26 06:38:00,309 South St, New York City,NY,10001 +247318,27in FHD Monitor,1,149.99,2019-08-09 17:22:00,910 12th St, New York City,NY,10001 +247319,iPhone,1,700.0,2019-08-20 19:56:00,133 North St, Boston,MA,02215 +247319,Lightning Charging Cable,1,14.95,2019-08-20 19:56:00,133 North St, Boston,MA,02215 +247320,USB-C Charging Cable,1,11.95,2019-08-17 13:22:00,164 Pine St, New York City,NY,10001 +247321,ThinkPad Laptop,1,999.99,2019-08-04 17:05:00,657 Adams St, San Francisco,CA,94016 +247322,AA Batteries (4-pack),1,3.84,2019-08-04 17:41:00,842 Ridge St, Los Angeles,CA,90001 +247323,Apple Airpods Headphones,1,150.0,2019-08-15 21:54:00,643 Hickory St, Los Angeles,CA,90001 +247324,USB-C Charging Cable,1,11.95,2019-08-19 17:07:00,27 Hill St, Los Angeles,CA,90001 +247325,Bose SoundSport Headphones,1,99.99,2019-08-05 15:03:00,459 Church St, Atlanta,GA,30301 +247326,USB-C Charging Cable,1,11.95,2019-08-05 22:16:00,830 Jefferson St, Dallas,TX,75001 +247327,Lightning Charging Cable,1,14.95,2019-08-11 09:14:00,814 Willow St, San Francisco,CA,94016 +247328,AA Batteries (4-pack),1,3.84,2019-08-09 17:55:00,724 Madison St, Dallas,TX,75001 +247329,AA Batteries (4-pack),2,3.84,2019-08-22 14:23:00,744 Hickory St, Atlanta,GA,30301 +247330,AA Batteries (4-pack),1,3.84,2019-08-04 14:34:00,581 Sunset St, San Francisco,CA,94016 +247331,Macbook Pro Laptop,1,1700.0,2019-08-05 18:11:00,594 Lake St, Austin,TX,73301 +247331,Bose SoundSport Headphones,1,99.99,2019-08-05 18:11:00,594 Lake St, Austin,TX,73301 +247332,Lightning Charging Cable,1,14.95,2019-08-19 13:44:00,680 Johnson St, Boston,MA,02215 +247333,Apple Airpods Headphones,1,150.0,2019-08-01 10:34:00,398 5th St, Boston,MA,02215 +247334,AA Batteries (4-pack),1,3.84,2019-08-16 16:39:00,113 Hill St, Los Angeles,CA,90001 +247335,Bose SoundSport Headphones,1,99.99,2019-08-04 12:51:00,109 North St, Los Angeles,CA,90001 +247336,AA Batteries (4-pack),2,3.84,2019-08-13 10:37:00,214 Chestnut St, Atlanta,GA,30301 +247337,Bose SoundSport Headphones,1,99.99,2019-08-02 17:09:00,934 Hill St, San Francisco,CA,94016 +247338,USB-C Charging Cable,1,11.95,2019-08-21 16:33:00,396 Maple St, Atlanta,GA,30301 +247339,Bose SoundSport Headphones,1,99.99,2019-08-27 18:48:00,313 Lincoln St, San Francisco,CA,94016 +247340,Wired Headphones,1,11.99,2019-08-30 15:48:00,857 Washington St, Austin,TX,73301 +247341,AA Batteries (4-pack),2,3.84,2019-08-27 10:40:00,165 Sunset St, Los Angeles,CA,90001 +247342,Google Phone,1,600.0,2019-08-30 22:03:00,475 West St, Dallas,TX,75001 +247342,Bose SoundSport Headphones,1,99.99,2019-08-30 22:03:00,475 West St, Dallas,TX,75001 +247343,Wired Headphones,1,11.99,2019-08-16 11:09:00,684 Lake St, Seattle,WA,98101 +247344,Apple Airpods Headphones,1,150.0,2019-08-15 02:57:00,325 Hickory St, Dallas,TX,75001 +247345,Lightning Charging Cable,1,14.95,2019-08-24 16:34:00,699 Elm St, Boston,MA,02215 +247346,Wired Headphones,2,11.99,2019-08-26 09:04:00,840 Pine St, Los Angeles,CA,90001 +247347,Bose SoundSport Headphones,2,99.99,2019-08-25 13:38:00,176 8th St, Boston,MA,02215 +247348,AA Batteries (4-pack),2,3.84,2019-08-31 20:58:00,177 Dogwood St, Dallas,TX,75001 +247349,Lightning Charging Cable,1,14.95,2019-08-30 14:34:00,103 Lake St, Boston,MA,02215 +247350,ThinkPad Laptop,1,999.99,2019-08-11 17:33:00,503 Center St, New York City,NY,10001 +247351,Vareebadd Phone,1,400.0,2019-08-20 09:32:00,714 Center St, Los Angeles,CA,90001 +247352,Apple Airpods Headphones,1,150.0,2019-08-27 18:31:00,720 Jackson St, Dallas,TX,75001 +247353,20in Monitor,1,109.99,2019-08-31 22:11:00,728 Sunset St, Atlanta,GA,30301 +247354,USB-C Charging Cable,1,11.95,2019-08-26 18:17:00,572 Madison St, San Francisco,CA,94016 +247355,USB-C Charging Cable,1,11.95,2019-08-16 11:43:00,764 Main St, New York City,NY,10001 +247356,iPhone,1,700.0,2019-08-17 19:34:00,382 Lake St, Atlanta,GA,30301 +247357,AA Batteries (4-pack),1,3.84,2019-08-07 09:32:00,980 Ridge St, Seattle,WA,98101 +247358,Flatscreen TV,1,300.0,2019-08-21 20:39:00,20 Jackson St, Boston,MA,02215 +247359,Apple Airpods Headphones,1,150.0,2019-08-15 21:35:00,524 1st St, New York City,NY,10001 +247360,Bose SoundSport Headphones,1,99.99,2019-08-15 18:15:00,95 Spruce St, Dallas,TX,75001 +247361,Bose SoundSport Headphones,1,99.99,2019-08-23 18:14:00,515 2nd St, Los Angeles,CA,90001 +247362,34in Ultrawide Monitor,1,379.99,2019-08-14 09:41:00,340 Jackson St, New York City,NY,10001 +247363,AAA Batteries (4-pack),1,2.99,2019-08-24 08:04:00,567 Church St, Austin,TX,73301 +247364,AA Batteries (4-pack),1,3.84,2019-08-06 20:09:00,332 Maple St, Austin,TX,73301 +247365,Apple Airpods Headphones,1,150.0,2019-08-31 10:01:00,654 Lincoln St, San Francisco,CA,94016 +247366,Bose SoundSport Headphones,1,99.99,2019-08-23 12:24:00,935 Ridge St, New York City,NY,10001 +247367,20in Monitor,1,109.99,2019-08-19 20:22:00,972 Meadow St, San Francisco,CA,94016 +247368,Wired Headphones,1,11.99,2019-08-15 18:20:00,671 6th St, San Francisco,CA,94016 +247369,Apple Airpods Headphones,1,150.0,2019-08-01 18:51:00,219 Park St, Los Angeles,CA,90001 +247370,AA Batteries (4-pack),1,3.84,2019-08-04 09:20:00,460 West St, Austin,TX,73301 +247371,27in FHD Monitor,1,149.99,2019-08-27 04:50:00,862 River St, New York City,NY,10001 +247372,Apple Airpods Headphones,1,150.0,2019-08-08 14:52:00,161 Cedar St, New York City,NY,10001 +247373,AAA Batteries (4-pack),1,2.99,2019-08-18 19:52:00,481 Jefferson St, San Francisco,CA,94016 +247374,34in Ultrawide Monitor,1,379.99,2019-08-30 08:50:00,565 10th St, Austin,TX,73301 +247375,Lightning Charging Cable,1,14.95,2019-08-31 07:06:00,687 Meadow St, Austin,TX,73301 +247376,Lightning Charging Cable,1,14.95,2019-08-01 11:14:00,122 1st St, Seattle,WA,98101 +247377,Apple Airpods Headphones,1,150.0,2019-08-06 14:17:00,557 North St, San Francisco,CA,94016 +247378,USB-C Charging Cable,1,11.95,2019-08-08 19:00:00,646 Ridge St, New York City,NY,10001 +247379,USB-C Charging Cable,1,11.95,2019-08-16 18:53:00,563 Cedar St, New York City,NY,10001 +247380,Bose SoundSport Headphones,1,99.99,2019-08-24 18:02:00,116 Willow St, San Francisco,CA,94016 +247381,Bose SoundSport Headphones,1,99.99,2019-08-06 23:09:00,353 Adams St, Dallas,TX,75001 +247382,Bose SoundSport Headphones,1,99.99,2019-08-12 02:35:00,191 Lincoln St, Seattle,WA,98101 +247383,AAA Batteries (4-pack),1,2.99,2019-08-26 21:07:00,74 Maple St, New York City,NY,10001 +247384,Wired Headphones,1,11.99,2019-08-31 18:49:00,121 Willow St, Dallas,TX,75001 +247385,USB-C Charging Cable,1,11.95,2019-08-20 22:28:00,569 Lincoln St, Atlanta,GA,30301 +247385,Apple Airpods Headphones,1,150.0,2019-08-20 22:28:00,569 Lincoln St, Atlanta,GA,30301 +247386,USB-C Charging Cable,1,11.95,2019-08-17 14:55:00,609 Madison St, San Francisco,CA,94016 +247386,Wired Headphones,1,11.99,2019-08-17 14:55:00,609 Madison St, San Francisco,CA,94016 +247387,Lightning Charging Cable,1,14.95,2019-08-30 15:37:00,683 Maple St, San Francisco,CA,94016 +247388,AA Batteries (4-pack),3,3.84,2019-08-06 16:33:00,723 Sunset St, Los Angeles,CA,90001 +247389,AA Batteries (4-pack),1,3.84,2019-08-05 06:54:00,900 North St, San Francisco,CA,94016 +247390,Lightning Charging Cable,1,14.95,2019-08-20 02:27:00,234 7th St, San Francisco,CA,94016 +247390,20in Monitor,1,109.99,2019-08-20 02:27:00,234 7th St, San Francisco,CA,94016 +247391,iPhone,1,700.0,2019-08-28 22:32:00,735 9th St, Austin,TX,73301 +247391,Lightning Charging Cable,1,14.95,2019-08-28 22:32:00,735 9th St, Austin,TX,73301 +247392,iPhone,1,700.0,2019-08-14 04:06:00,175 Maple St, San Francisco,CA,94016 +247393,Wired Headphones,1,11.99,2019-08-03 00:50:00,700 7th St, San Francisco,CA,94016 +247394,34in Ultrawide Monitor,1,379.99,2019-08-08 23:39:00,346 Ridge St, Los Angeles,CA,90001 +247395,Bose SoundSport Headphones,1,99.99,2019-08-03 10:39:00,345 Sunset St, New York City,NY,10001 +247396,Vareebadd Phone,1,400.0,2019-08-02 13:09:00,300 Chestnut St, Austin,TX,73301 +247397,Lightning Charging Cable,1,14.95,2019-08-03 12:41:00,554 Lincoln St, Austin,TX,73301 +247398,ThinkPad Laptop,1,999.99,2019-08-22 19:25:00,477 Walnut St, Boston,MA,02215 +247399,Macbook Pro Laptop,1,1700.0,2019-08-18 21:57:00,688 Spruce St, Atlanta,GA,30301 +247400,AAA Batteries (4-pack),1,2.99,2019-08-18 21:09:00,283 Cedar St, Dallas,TX,75001 +247401,Apple Airpods Headphones,1,150.0,2019-08-27 18:56:00,864 Meadow St, Boston,MA,02215 +247402,USB-C Charging Cable,1,11.95,2019-08-12 15:53:00,580 Main St, San Francisco,CA,94016 +247403,iPhone,1,700.0,2019-08-07 09:03:00,987 South St, San Francisco,CA,94016 +247404,AA Batteries (4-pack),1,3.84,2019-08-24 13:38:00,313 4th St, San Francisco,CA,94016 +247405,Flatscreen TV,1,300.0,2019-08-22 22:11:00,624 Sunset St, Atlanta,GA,30301 +247406,AAA Batteries (4-pack),3,2.99,2019-08-19 19:44:00,795 Cherry St, Dallas,TX,75001 +247407,Bose SoundSport Headphones,1,99.99,2019-08-09 09:09:00,654 Madison St, Los Angeles,CA,90001 +247408,USB-C Charging Cable,1,11.95,2019-08-26 17:34:00,44 Walnut St, New York City,NY,10001 +247409,34in Ultrawide Monitor,1,379.99,2019-08-15 10:12:00,886 Wilson St, Portland,OR,97035 +247410,AAA Batteries (4-pack),1,2.99,2019-08-01 10:10:00,262 Church St, New York City,NY,10001 +247411,USB-C Charging Cable,1,11.95,2019-08-21 12:19:00,377 2nd St, Austin,TX,73301 +247412,Apple Airpods Headphones,1,150.0,2019-08-25 18:29:00,721 River St, Boston,MA,02215 +247413,Macbook Pro Laptop,1,1700.0,2019-08-14 10:15:00,978 Dogwood St, Portland,OR,97035 +247414,Apple Airpods Headphones,1,150.0,2019-08-21 15:39:00,290 Lakeview St, Portland,OR,97035 +247415,Lightning Charging Cable,2,14.95,2019-08-23 19:10:00,283 Main St, Los Angeles,CA,90001 +247416,AAA Batteries (4-pack),1,2.99,2019-08-07 09:27:00,269 Walnut St, New York City,NY,10001 +247417,Apple Airpods Headphones,1,150.0,2019-08-10 17:27:00,736 2nd St, Atlanta,GA,30301 +247418,Apple Airpods Headphones,1,150.0,2019-08-27 17:15:00,263 Lincoln St, Boston,MA,02215 +247419,Apple Airpods Headphones,1,150.0,2019-08-16 23:15:00,385 Highland St, Los Angeles,CA,90001 +247420,Lightning Charging Cable,1,14.95,2019-08-10 19:45:00,160 Washington St, San Francisco,CA,94016 +247421,27in FHD Monitor,1,149.99,2019-08-28 13:57:00,976 7th St, Los Angeles,CA,90001 +247422,Google Phone,1,600.0,2019-08-15 20:39:00,54 9th St, Los Angeles,CA,90001 +247423,Apple Airpods Headphones,1,150.0,2019-08-27 20:05:00,460 Main St, San Francisco,CA,94016 +247424,Wired Headphones,1,11.99,2019-08-21 15:47:00,721 13th St, Atlanta,GA,30301 +247425,20in Monitor,1,109.99,2019-08-09 19:10:00,644 Lincoln St, Los Angeles,CA,90001 +247426,USB-C Charging Cable,2,11.95,2019-08-23 16:26:00,512 8th St, Dallas,TX,75001 +247427,AAA Batteries (4-pack),1,2.99,2019-08-08 10:30:00,48 Elm St, Seattle,WA,98101 +247428,Wired Headphones,1,11.99,2019-08-04 21:17:00,192 Pine St, Los Angeles,CA,90001 +247429,AA Batteries (4-pack),1,3.84,2019-08-07 12:06:00,675 Walnut St, Los Angeles,CA,90001 +247430,Wired Headphones,1,11.99,2019-08-07 17:48:00,258 Church St, Austin,TX,73301 +247431,Bose SoundSport Headphones,1,99.99,2019-08-12 19:23:00,393 8th St, New York City,NY,10001 +247432,20in Monitor,1,109.99,2019-08-23 11:40:00,790 Meadow St, Atlanta,GA,30301 +247433,27in FHD Monitor,1,149.99,2019-08-22 05:59:00,757 Adams St, Los Angeles,CA,90001 +247434,Apple Airpods Headphones,1,150.0,2019-08-17 21:54:00,138 Hickory St, Atlanta,GA,30301 +247435,iPhone,1,700.0,2019-08-30 16:43:00,940 9th St, Boston,MA,02215 +247435,Apple Airpods Headphones,1,150.0,2019-08-30 16:43:00,940 9th St, Boston,MA,02215 +247436,AA Batteries (4-pack),2,3.84,2019-08-31 23:57:00,845 Dogwood St, San Francisco,CA,94016 +247437,ThinkPad Laptop,1,999.99,2019-08-26 11:25:00,408 2nd St, Atlanta,GA,30301 +247438,Vareebadd Phone,1,400.0,2019-08-06 13:14:00,414 8th St, New York City,NY,10001 +247439,USB-C Charging Cable,1,11.95,2019-08-23 19:42:00,94 Maple St, San Francisco,CA,94016 +247440,Lightning Charging Cable,1,14.95,2019-08-11 18:56:00,270 Cherry St, Portland,OR,97035 +247441,Lightning Charging Cable,1,14.95,2019-08-06 08:54:00,871 Madison St, New York City,NY,10001 +247442,27in 4K Gaming Monitor,1,389.99,2019-08-19 22:27:00,574 Lincoln St, Los Angeles,CA,90001 +247443,27in FHD Monitor,1,149.99,2019-08-15 09:49:00,467 9th St, New York City,NY,10001 +247444,AA Batteries (4-pack),1,3.84,2019-08-04 22:22:00,889 Pine St, Los Angeles,CA,90001 +247445,Apple Airpods Headphones,1,150.0,2019-08-12 11:28:00,646 Spruce St, New York City,NY,10001 +247446,34in Ultrawide Monitor,1,379.99,2019-08-11 09:21:00,415 Lakeview St, Boston,MA,02215 +247447,Lightning Charging Cable,1,14.95,2019-08-04 12:34:00,755 5th St, Boston,MA,02215 +247448,Apple Airpods Headphones,1,150.0,2019-08-26 00:46:00,386 Highland St, San Francisco,CA,94016 +247449,Lightning Charging Cable,1,14.95,2019-08-01 19:19:00,368 Meadow St, New York City,NY,10001 +247450,Macbook Pro Laptop,1,1700.0,2019-08-31 15:36:00,803 Chestnut St, San Francisco,CA,94016 +247451,AA Batteries (4-pack),1,3.84,2019-08-13 02:24:00,476 10th St, New York City,NY,10001 +247452,Apple Airpods Headphones,1,150.0,2019-08-26 10:42:00,927 5th St, Atlanta,GA,30301 +247453,Lightning Charging Cable,1,14.95,2019-08-16 11:20:00,751 Dogwood St, Boston,MA,02215 +247454,27in 4K Gaming Monitor,1,389.99,2019-08-07 22:51:00,890 Chestnut St, San Francisco,CA,94016 +247455,Lightning Charging Cable,1,14.95,2019-08-04 01:54:00,657 Spruce St, Los Angeles,CA,90001 +247456,AA Batteries (4-pack),1,3.84,2019-08-10 17:27:00,574 South St, Seattle,WA,98101 +247457,iPhone,1,700.0,2019-08-08 22:58:00,132 Wilson St, Portland,ME,04101 +247457,Lightning Charging Cable,1,14.95,2019-08-08 22:58:00,132 Wilson St, Portland,ME,04101 +247458,Macbook Pro Laptop,1,1700.0,2019-08-03 17:27:00,573 11th St, San Francisco,CA,94016 +247459,Wired Headphones,1,11.99,2019-08-03 17:56:00,27 Hill St, Portland,OR,97035 +247460,USB-C Charging Cable,1,11.95,2019-08-26 08:47:00,292 Lakeview St, San Francisco,CA,94016 +247461,AA Batteries (4-pack),1,3.84,2019-08-05 23:35:00,518 Wilson St, Atlanta,GA,30301 +247462,USB-C Charging Cable,1,11.95,2019-08-31 21:31:00,289 Cedar St, San Francisco,CA,94016 +247463,iPhone,1,700.0,2019-08-21 20:00:00,977 West St, New York City,NY,10001 +247463,Lightning Charging Cable,1,14.95,2019-08-21 20:00:00,977 West St, New York City,NY,10001 +247464,Apple Airpods Headphones,1,150.0,2019-08-15 06:02:00,721 13th St, Boston,MA,02215 +247465,27in FHD Monitor,1,149.99,2019-08-21 15:18:00,204 Madison St, Dallas,TX,75001 +247466,27in FHD Monitor,1,149.99,2019-08-04 19:15:00,88 Highland St, Seattle,WA,98101 +247467,27in FHD Monitor,1,149.99,2019-08-29 09:01:00,958 Pine St, Seattle,WA,98101 +247468,Lightning Charging Cable,1,14.95,2019-08-18 13:04:00,932 Jefferson St, Boston,MA,02215 +247469,Apple Airpods Headphones,1,150.0,2019-08-26 20:28:00,244 Center St, Boston,MA,02215 +247470,AAA Batteries (4-pack),2,2.99,2019-08-02 11:15:00,852 8th St, San Francisco,CA,94016 +247471,Google Phone,1,600.0,2019-08-04 14:12:00,817 6th St, Atlanta,GA,30301 +247472,USB-C Charging Cable,1,11.95,2019-08-01 14:54:00,453 Willow St, Los Angeles,CA,90001 +247473,Wired Headphones,1,11.99,2019-08-31 10:45:00,961 Hickory St, New York City,NY,10001 +247474,Wired Headphones,1,11.99,2019-08-25 13:32:00,641 Main St, Seattle,WA,98101 +247475,Lightning Charging Cable,1,14.95,2019-08-15 13:23:00,238 Main St, New York City,NY,10001 +247476,USB-C Charging Cable,1,11.95,2019-08-08 09:32:00,534 Adams St, New York City,NY,10001 +247477,27in FHD Monitor,1,149.99,2019-08-07 13:41:00,629 Pine St, New York City,NY,10001 +247478,27in FHD Monitor,1,149.99,2019-08-17 21:16:00,670 Elm St, Dallas,TX,75001 +247479,Apple Airpods Headphones,1,150.0,2019-08-28 08:32:00,498 Cherry St, San Francisco,CA,94016 +247480,Wired Headphones,1,11.99,2019-08-05 06:59:00,789 Chestnut St, Dallas,TX,75001 +247481,Bose SoundSport Headphones,1,99.99,2019-08-31 13:00:00,447 11th St, San Francisco,CA,94016 +247482,AA Batteries (4-pack),1,3.84,2019-08-22 15:59:00,540 Sunset St, Los Angeles,CA,90001 +247483,Google Phone,1,600.0,2019-08-25 15:03:00,768 West St, Boston,MA,02215 +247484,Bose SoundSport Headphones,1,99.99,2019-08-20 09:33:00,431 14th St, New York City,NY,10001 +247485,Wired Headphones,1,11.99,2019-08-18 12:32:00,949 Washington St, New York City,NY,10001 +247486,Apple Airpods Headphones,1,150.0,2019-08-11 13:51:00,325 Lincoln St, Boston,MA,02215 +247487,27in 4K Gaming Monitor,1,389.99,2019-08-30 21:33:00,770 Dogwood St, San Francisco,CA,94016 +247488,AAA Batteries (4-pack),1,2.99,2019-08-23 11:08:00,218 Lake St, Portland,OR,97035 +247489,AAA Batteries (4-pack),1,2.99,2019-08-27 19:47:00,901 River St, San Francisco,CA,94016 +247490,USB-C Charging Cable,2,11.95,2019-08-20 21:17:00,797 Lakeview St, New York City,NY,10001 +247490,Wired Headphones,1,11.99,2019-08-20 21:17:00,797 Lakeview St, New York City,NY,10001 +247491,AAA Batteries (4-pack),1,2.99,2019-08-01 23:50:00,591 7th St, San Francisco,CA,94016 +247492,AAA Batteries (4-pack),3,2.99,2019-08-09 20:18:00,875 Center St, Los Angeles,CA,90001 +247493,Lightning Charging Cable,1,14.95,2019-08-18 18:21:00,898 Dogwood St, Boston,MA,02215 +247494,Macbook Pro Laptop,1,1700.0,2019-08-10 16:08:00,463 Ridge St, San Francisco,CA,94016 +247495,Apple Airpods Headphones,1,150.0,2019-08-24 20:57:00,903 Cherry St, Dallas,TX,75001 +247496,USB-C Charging Cable,1,11.95,2019-08-04 21:52:00,40 6th St, Los Angeles,CA,90001 +247497,ThinkPad Laptop,1,999.99,2019-08-30 16:17:00,868 Hickory St, Los Angeles,CA,90001 +247498,Lightning Charging Cable,1,14.95,2019-08-20 13:24:00,460 Maple St, Portland,ME,04101 +247499,USB-C Charging Cable,1,11.95,2019-08-02 06:26:00,233 Main St, Los Angeles,CA,90001 +247500,ThinkPad Laptop,1,999.99,2019-08-28 13:28:00,55 Main St, Dallas,TX,75001 +247501,Apple Airpods Headphones,1,150.0,2019-08-31 01:00:00,664 Cedar St, Los Angeles,CA,90001 +247502,Wired Headphones,1,11.99,2019-08-31 11:11:00,577 Forest St, Los Angeles,CA,90001 +247503,Bose SoundSport Headphones,1,99.99,2019-08-26 18:20:00,194 Main St, Austin,TX,73301 +247504,AAA Batteries (4-pack),1,2.99,2019-08-19 16:50:00,330 Meadow St, San Francisco,CA,94016 +247505,27in 4K Gaming Monitor,1,389.99,2019-08-13 08:55:00,263 Ridge St, Dallas,TX,75001 +247506,Lightning Charging Cable,1,14.95,2019-08-10 07:59:00,691 Jefferson St, Atlanta,GA,30301 +247507,iPhone,1,700.0,2019-08-07 19:28:00,354 Main St, New York City,NY,10001 +247508,Lightning Charging Cable,1,14.95,2019-08-18 08:15:00,231 5th St, New York City,NY,10001 +247509,27in FHD Monitor,1,149.99,2019-08-23 18:23:00,770 Willow St, Dallas,TX,75001 +247510,USB-C Charging Cable,1,11.95,2019-08-26 16:41:00,44 Cedar St, Los Angeles,CA,90001 +247511,Bose SoundSport Headphones,1,99.99,2019-08-16 19:53:00,262 South St, San Francisco,CA,94016 +247512,34in Ultrawide Monitor,1,379.99,2019-08-13 21:15:00,156 4th St, Atlanta,GA,30301 +247513,34in Ultrawide Monitor,1,379.99,2019-08-27 00:28:00,976 Elm St, New York City,NY,10001 +247514,Lightning Charging Cable,1,14.95,2019-08-14 17:22:00,97 Willow St, Seattle,WA,98101 +247515,USB-C Charging Cable,1,11.95,2019-08-15 15:59:00,876 Lake St, Dallas,TX,75001 +247516,Lightning Charging Cable,2,14.95,2019-08-12 08:44:00,181 River St, San Francisco,CA,94016 +247517,USB-C Charging Cable,1,11.95,2019-08-24 20:21:00,72 Center St, New York City,NY,10001 +247518,34in Ultrawide Monitor,1,379.99,2019-08-30 19:46:00,660 Washington St, Dallas,TX,75001 +247519,Vareebadd Phone,1,400.0,2019-08-09 16:35:00,136 1st St, Los Angeles,CA,90001 +247519,AA Batteries (4-pack),2,3.84,2019-08-09 16:35:00,136 1st St, Los Angeles,CA,90001 +247520,Bose SoundSport Headphones,1,99.99,2019-08-29 15:18:00,146 Meadow St, San Francisco,CA,94016 +247521,AAA Batteries (4-pack),2,2.99,2019-08-09 23:48:00,339 12th St, Dallas,TX,75001 +247522,LG Washing Machine,1,600.0,2019-08-16 11:24:00,746 Highland St, San Francisco,CA,94016 +247523,iPhone,1,700.0,2019-08-12 15:57:00,508 North St, Austin,TX,73301 +247524,Google Phone,1,600.0,2019-08-08 18:41:00,267 Willow St, New York City,NY,10001 +247525,AA Batteries (4-pack),1,3.84,2019-08-19 08:15:00,51 14th St, San Francisco,CA,94016 +247526,AA Batteries (4-pack),3,3.84,2019-08-06 12:39:00,795 Johnson St, Seattle,WA,98101 +247527,Google Phone,1,600.0,2019-08-11 19:28:00,337 Chestnut St, Dallas,TX,75001 +247528,AAA Batteries (4-pack),2,2.99,2019-08-07 09:02:00,627 Forest St, Dallas,TX,75001 +247529,34in Ultrawide Monitor,1,379.99,2019-08-29 10:32:00,266 8th St, New York City,NY,10001 +247530,34in Ultrawide Monitor,1,379.99,2019-08-22 15:42:00,169 Hickory St, Boston,MA,02215 +247531,Lightning Charging Cable,1,14.95,2019-08-23 17:59:00,591 Cherry St, Atlanta,GA,30301 +247532,USB-C Charging Cable,1,11.95,2019-08-27 21:28:00,456 River St, Boston,MA,02215 +247533,iPhone,1,700.0,2019-08-25 08:45:00,374 9th St, San Francisco,CA,94016 +247533,Flatscreen TV,1,300.0,2019-08-25 08:45:00,374 9th St, San Francisco,CA,94016 +247534,34in Ultrawide Monitor,1,379.99,2019-08-15 06:53:00,315 5th St, Atlanta,GA,30301 +247535,Bose SoundSport Headphones,1,99.99,2019-08-27 14:47:00,881 Pine St, Los Angeles,CA,90001 +247536,Flatscreen TV,1,300.0,2019-08-13 10:27:00,144 Lakeview St, Los Angeles,CA,90001 +247537,AA Batteries (4-pack),1,3.84,2019-08-31 19:41:00,567 11th St, San Francisco,CA,94016 +247537,Lightning Charging Cable,1,14.95,2019-08-31 19:41:00,567 11th St, San Francisco,CA,94016 +247538,Vareebadd Phone,1,400.0,2019-08-17 20:51:00,833 1st St, Austin,TX,73301 +247539,27in 4K Gaming Monitor,1,389.99,2019-08-25 12:57:00,452 Johnson St, Dallas,TX,75001 +247540,Apple Airpods Headphones,1,150.0,2019-08-01 19:19:00,724 Adams St, Atlanta,GA,30301 +247541,AA Batteries (4-pack),2,3.84,2019-08-24 21:38:00,97 Adams St, San Francisco,CA,94016 +247542,ThinkPad Laptop,1,999.99,2019-08-11 10:26:00,366 Dogwood St, San Francisco,CA,94016 +247543,iPhone,1,700.0,2019-08-14 07:48:00,357 Hickory St, Atlanta,GA,30301 +247543,Apple Airpods Headphones,1,150.0,2019-08-14 07:48:00,357 Hickory St, Atlanta,GA,30301 +247544,Lightning Charging Cable,2,14.95,2019-08-21 12:51:00,650 Pine St, Los Angeles,CA,90001 +247545,Lightning Charging Cable,1,14.95,2019-08-25 16:34:00,146 Chestnut St, San Francisco,CA,94016 +247546,AAA Batteries (4-pack),3,2.99,2019-08-29 13:44:00,122 4th St, New York City,NY,10001 +247547,Wired Headphones,1,11.99,2019-08-21 16:57:00,72 Maple St, San Francisco,CA,94016 +247548,USB-C Charging Cable,1,11.95,2019-08-28 10:30:00,321 Ridge St, Boston,MA,02215 +247549,Apple Airpods Headphones,1,150.0,2019-08-31 10:57:00,221 Lincoln St, Boston,MA,02215 +247550,AAA Batteries (4-pack),2,2.99,2019-08-10 01:28:00,74 5th St, San Francisco,CA,94016 +247551,Bose SoundSport Headphones,1,99.99,2019-08-01 10:48:00,355 Jackson St, Portland,OR,97035 +247552,Bose SoundSport Headphones,1,99.99,2019-08-13 13:19:00,945 Madison St, Austin,TX,73301 +247553,ThinkPad Laptop,1,999.99,2019-08-30 21:31:00,419 9th St, Los Angeles,CA,90001 +247554,Wired Headphones,2,11.99,2019-08-26 18:06:00,22 Madison St, Atlanta,GA,30301 +247555,AA Batteries (4-pack),2,3.84,2019-08-14 12:48:00,717 Lake St, San Francisco,CA,94016 +247556,Bose SoundSport Headphones,1,99.99,2019-08-25 13:41:00,528 Park St, San Francisco,CA,94016 +247557,27in 4K Gaming Monitor,1,389.99,2019-08-30 13:17:00,916 7th St, New York City,NY,10001 +247558,AAA Batteries (4-pack),1,2.99,2019-08-19 15:11:00,390 11th St, New York City,NY,10001 +247558,Apple Airpods Headphones,1,150.0,2019-08-19 15:11:00,390 11th St, New York City,NY,10001 +247559,AAA Batteries (4-pack),1,2.99,2019-08-21 07:55:00,317 5th St, Los Angeles,CA,90001 +247560,Apple Airpods Headphones,1,150.0,2019-08-13 12:20:00,824 Lake St, San Francisco,CA,94016 +247561,Google Phone,1,600.0,2019-08-06 19:07:00,701 Hill St, San Francisco,CA,94016 +247562,Apple Airpods Headphones,1,150.0,2019-08-30 11:29:00,575 Lakeview St, San Francisco,CA,94016 +247563,AA Batteries (4-pack),1,3.84,2019-08-19 17:58:00,369 Pine St, New York City,NY,10001 +247564,LG Dryer,1,600.0,2019-08-06 20:32:00,152 Ridge St, Dallas,TX,75001 +247565,Lightning Charging Cable,1,14.95,2019-08-05 21:48:00,925 9th St, New York City,NY,10001 +247566,Flatscreen TV,1,300.0,2019-08-18 14:14:00,340 North St, Atlanta,GA,30301 +247567,iPhone,1,700.0,2019-08-31 22:52:00,329 12th St, New York City,NY,10001 +247568,34in Ultrawide Monitor,1,379.99,2019-08-03 17:14:00,301 2nd St, San Francisco,CA,94016 +247569,34in Ultrawide Monitor,1,379.99,2019-08-11 20:37:00,53 Meadow St, Dallas,TX,75001 +247570,AAA Batteries (4-pack),2,2.99,2019-08-17 12:32:00,366 River St, San Francisco,CA,94016 +247571,20in Monitor,1,109.99,2019-08-02 09:37:00,232 4th St, Dallas,TX,75001 +247572,Vareebadd Phone,1,400.0,2019-08-28 12:33:00,894 11th St, Los Angeles,CA,90001 +247572,Bose SoundSport Headphones,1,99.99,2019-08-28 12:33:00,894 11th St, Los Angeles,CA,90001 +247573,AA Batteries (4-pack),1,3.84,2019-08-10 08:03:00,580 Wilson St, San Francisco,CA,94016 +247574,34in Ultrawide Monitor,1,379.99,2019-08-23 14:19:00,789 9th St, Dallas,TX,75001 +247575,AA Batteries (4-pack),1,3.84,2019-08-29 13:43:00,143 Ridge St, New York City,NY,10001 +247576,Wired Headphones,1,11.99,2019-08-11 20:52:00,170 Sunset St, Boston,MA,02215 +247577,Wired Headphones,1,11.99,2019-08-21 11:06:00,297 9th St, San Francisco,CA,94016 +247578,iPhone,1,700.0,2019-08-02 16:57:00,523 Wilson St, Portland,OR,97035 +247579,AA Batteries (4-pack),1,3.84,2019-08-27 12:03:00,573 7th St, San Francisco,CA,94016 +247580,Lightning Charging Cable,1,14.95,2019-08-06 16:56:00,99 Meadow St, Los Angeles,CA,90001 +247581,AAA Batteries (4-pack),1,2.99,2019-08-03 18:45:00,196 Sunset St, Dallas,TX,75001 +247582,Apple Airpods Headphones,1,150.0,2019-08-15 17:51:00,998 Adams St, New York City,NY,10001 +247583,34in Ultrawide Monitor,1,379.99,2019-08-28 08:06:00,821 Cedar St, San Francisco,CA,94016 +247584,AA Batteries (4-pack),1,3.84,2019-08-05 15:12:00,869 6th St, Los Angeles,CA,90001 +247585,Bose SoundSport Headphones,1,99.99,2019-08-19 06:36:00,442 2nd St, New York City,NY,10001 +247586,USB-C Charging Cable,1,11.95,2019-08-29 10:29:00,540 Forest St, San Francisco,CA,94016 +247587,Wired Headphones,1,11.99,2019-08-09 23:25:00,875 Dogwood St, Boston,MA,02215 +247588,AA Batteries (4-pack),1,3.84,2019-08-06 13:24:00,113 Adams St, Los Angeles,CA,90001 +247589,Google Phone,1,600.0,2019-08-17 12:08:00,585 12th St, Portland,OR,97035 +247590,AA Batteries (4-pack),1,3.84,2019-08-01 20:49:00,260 Lincoln St, New York City,NY,10001 +247591,ThinkPad Laptop,1,999.99,2019-08-13 23:41:00,828 5th St, Boston,MA,02215 +247592,AA Batteries (4-pack),1,3.84,2019-08-28 11:35:00,314 River St, Los Angeles,CA,90001 +247593,Apple Airpods Headphones,1,150.0,2019-08-01 18:22:00,726 Wilson St, San Francisco,CA,94016 +247594,Apple Airpods Headphones,1,150.0,2019-08-14 08:21:00,569 Walnut St, San Francisco,CA,94016 +247595,27in FHD Monitor,1,149.99,2019-08-30 09:41:00,384 4th St, San Francisco,CA,94016 +247596,ThinkPad Laptop,1,999.99,2019-08-03 15:36:00,753 North St, Dallas,TX,75001 +247597,iPhone,1,700.0,2019-08-10 20:27:00,926 Walnut St, Boston,MA,02215 +247598,27in FHD Monitor,1,149.99,2019-08-29 12:43:00,342 Adams St, Los Angeles,CA,90001 +247599,Flatscreen TV,1,300.0,2019-08-01 08:50:00,75 Madison St, Atlanta,GA,30301 +247600,AAA Batteries (4-pack),1,2.99,2019-08-09 20:01:00,394 Sunset St, San Francisco,CA,94016 +247601,Macbook Pro Laptop,1,1700.0,2019-08-17 09:12:00,282 Lakeview St, Seattle,WA,98101 +247602,AAA Batteries (4-pack),2,2.99,2019-08-21 15:45:00,418 Chestnut St, New York City,NY,10001 +247603,Lightning Charging Cable,1,14.95,2019-08-17 18:30:00,53 Washington St, Austin,TX,73301 +247604,Apple Airpods Headphones,1,150.0,2019-08-16 11:44:00,731 Dogwood St, San Francisco,CA,94016 +247605,USB-C Charging Cable,1,11.95,2019-08-14 10:34:00,311 Chestnut St, Los Angeles,CA,90001 +247606,Bose SoundSport Headphones,1,99.99,2019-08-08 18:51:00,181 Meadow St, Dallas,TX,75001 +247607,Wired Headphones,1,11.99,2019-08-20 19:04:00,230 Jackson St, Los Angeles,CA,90001 +247608,iPhone,1,700.0,2019-08-24 10:07:00,444 West St, San Francisco,CA,94016 +247609,AA Batteries (4-pack),1,3.84,2019-08-23 21:50:00,241 8th St, San Francisco,CA,94016 +247610,Apple Airpods Headphones,1,150.0,2019-08-13 08:41:00,591 Willow St, Los Angeles,CA,90001 +247611,27in FHD Monitor,1,149.99,2019-08-24 19:01:00,601 Jackson St, New York City,NY,10001 +247612,Wired Headphones,1,11.99,2019-08-06 19:57:00,419 11th St, Los Angeles,CA,90001 +247613,Flatscreen TV,1,300.0,2019-08-22 21:46:00,624 Dogwood St, San Francisco,CA,94016 +247614,34in Ultrawide Monitor,1,379.99,2019-08-05 18:19:00,185 South St, Austin,TX,73301 +247615,AAA Batteries (4-pack),1,2.99,2019-08-05 05:18:00,665 River St, Austin,TX,73301 +247616,Wired Headphones,1,11.99,2019-08-11 14:55:00,901 Meadow St, Dallas,TX,75001 +247617,Wired Headphones,1,11.99,2019-08-09 00:18:00,231 Forest St, New York City,NY,10001 +247618,20in Monitor,1,109.99,2019-08-23 13:41:00,184 Hickory St, Los Angeles,CA,90001 +247619,iPhone,1,700.0,2019-08-17 14:55:00,166 West St, Portland,OR,97035 +247620,AA Batteries (4-pack),1,3.84,2019-08-26 21:37:00,831 Lake St, Portland,OR,97035 +247621,Google Phone,1,600.0,2019-08-26 19:37:00,940 Forest St, Los Angeles,CA,90001 +247622,Vareebadd Phone,1,400.0,2019-08-04 15:38:00,237 Cedar St, Austin,TX,73301 +247623,iPhone,1,700.0,2019-08-13 12:46:00,565 2nd St, Atlanta,GA,30301 +247624,27in FHD Monitor,1,149.99,2019-08-25 17:55:00,628 Chestnut St, San Francisco,CA,94016 +247625,AAA Batteries (4-pack),1,2.99,2019-08-30 12:20:00,594 Willow St, San Francisco,CA,94016 +247626,AA Batteries (4-pack),1,3.84,2019-08-04 10:30:00,243 2nd St, Boston,MA,02215 +247627,20in Monitor,1,109.99,2019-08-24 20:23:00,210 10th St, Dallas,TX,75001 +247628,27in 4K Gaming Monitor,1,389.99,2019-08-25 09:59:00,233 Pine St, Los Angeles,CA,90001 +247629,LG Dryer,1,600.0,2019-08-02 19:15:00,958 Main St, San Francisco,CA,94016 +247630,Wired Headphones,1,11.99,2019-08-23 18:59:00,957 Willow St, Dallas,TX,75001 +247631,20in Monitor,1,109.99,2019-08-04 18:04:00,594 12th St, Los Angeles,CA,90001 +247632,iPhone,1,700.0,2019-08-17 14:37:00,979 Lakeview St, New York City,NY,10001 +247632,Apple Airpods Headphones,1,150.0,2019-08-17 14:37:00,979 Lakeview St, New York City,NY,10001 +247633,Wired Headphones,1,11.99,2019-08-31 11:52:00,130 Jefferson St, Seattle,WA,98101 +247634,Apple Airpods Headphones,1,150.0,2019-08-08 14:18:00,190 2nd St, Dallas,TX,75001 +247635,AAA Batteries (4-pack),1,2.99,2019-08-13 07:02:00,782 Maple St, Los Angeles,CA,90001 +247636,Bose SoundSport Headphones,1,99.99,2019-08-21 18:34:00,84 Dogwood St, Seattle,WA,98101 +247637,Vareebadd Phone,1,400.0,2019-08-27 19:48:00,680 7th St, Seattle,WA,98101 +247638,Lightning Charging Cable,1,14.95,2019-08-26 11:58:00,573 Lincoln St, Dallas,TX,75001 +247639,Apple Airpods Headphones,1,150.0,2019-08-02 14:22:00,750 Spruce St, Seattle,WA,98101 +247640,27in FHD Monitor,1,149.99,2019-08-16 19:57:00,720 14th St, New York City,NY,10001 +247640,Lightning Charging Cable,1,14.95,2019-08-16 19:57:00,720 14th St, New York City,NY,10001 +247641,Flatscreen TV,1,300.0,2019-08-31 17:05:00,978 Church St, Dallas,TX,75001 +247642,Bose SoundSport Headphones,1,99.99,2019-08-11 09:50:00,800 9th St, Austin,TX,73301 +247643,AAA Batteries (4-pack),1,2.99,2019-08-26 19:54:00,419 6th St, Austin,TX,73301 +247644,AAA Batteries (4-pack),1,2.99,2019-08-22 13:10:00,724 Park St, Atlanta,GA,30301 +247645,Bose SoundSport Headphones,1,99.99,2019-08-13 07:33:00,909 South St, San Francisco,CA,94016 +247646,Google Phone,1,600.0,2019-08-01 23:49:00,258 11th St, Portland,OR,97035 +247646,Wired Headphones,1,11.99,2019-08-01 23:49:00,258 11th St, Portland,OR,97035 +247647,AAA Batteries (4-pack),1,2.99,2019-08-17 13:31:00,446 Highland St, Austin,TX,73301 +247648,AAA Batteries (4-pack),1,2.99,2019-08-29 03:11:00,680 14th St, San Francisco,CA,94016 +247649,Bose SoundSport Headphones,2,99.99,2019-08-07 15:55:00,528 Dogwood St, Atlanta,GA,30301 +247650,AA Batteries (4-pack),1,3.84,2019-08-11 08:22:00,484 Johnson St, Atlanta,GA,30301 +247650,Lightning Charging Cable,1,14.95,2019-08-11 08:22:00,484 Johnson St, Atlanta,GA,30301 +247651,AAA Batteries (4-pack),3,2.99,2019-08-05 20:31:00,110 14th St, Dallas,TX,75001 +247652,27in FHD Monitor,1,149.99,2019-08-09 10:23:00,858 Dogwood St, Portland,OR,97035 +247653,27in 4K Gaming Monitor,1,389.99,2019-08-29 15:53:00,182 Park St, Portland,OR,97035 +247654,Lightning Charging Cable,1,14.95,2019-08-16 19:23:00,830 Park St, Atlanta,GA,30301 +247655,AA Batteries (4-pack),2,3.84,2019-08-06 15:00:00,512 River St, Seattle,WA,98101 +247656,20in Monitor,1,109.99,2019-08-04 08:37:00,886 Lincoln St, San Francisco,CA,94016 +247657,34in Ultrawide Monitor,1,379.99,2019-08-22 09:23:00,993 Ridge St, Los Angeles,CA,90001 +247658,LG Dryer,1,600.0,2019-08-28 20:49:00,534 11th St, San Francisco,CA,94016 +247659,Lightning Charging Cable,1,14.95,2019-08-12 08:44:00,680 West St, Dallas,TX,75001 +247660,USB-C Charging Cable,1,11.95,2019-08-20 16:14:00,961 Sunset St, New York City,NY,10001 +247661,AA Batteries (4-pack),1,3.84,2019-08-25 09:58:00,114 Lakeview St, New York City,NY,10001 +247662,34in Ultrawide Monitor,1,379.99,2019-08-06 13:21:00,909 Lake St, San Francisco,CA,94016 +247663,AAA Batteries (4-pack),2,2.99,2019-08-24 07:42:00,555 Walnut St, Los Angeles,CA,90001 +247664,Lightning Charging Cable,1,14.95,2019-08-03 15:26:00,965 Ridge St, San Francisco,CA,94016 +247665,AAA Batteries (4-pack),2,2.99,2019-08-23 17:14:00,975 Meadow St, Los Angeles,CA,90001 +247666,Google Phone,1,600.0,2019-08-17 08:05:00,782 Forest St, San Francisco,CA,94016 +247667,Wired Headphones,1,11.99,2019-08-16 16:23:00,452 Sunset St, Seattle,WA,98101 +247668,Lightning Charging Cable,1,14.95,2019-08-26 11:28:00,996 Forest St, New York City,NY,10001 +247669,Apple Airpods Headphones,1,150.0,2019-08-11 17:39:00,390 Meadow St, Los Angeles,CA,90001 +247670,Vareebadd Phone,1,400.0,2019-08-14 21:29:00,923 7th St, Austin,TX,73301 +247671,USB-C Charging Cable,1,11.95,2019-08-20 00:30:00,603 Spruce St, Los Angeles,CA,90001 +247672,AA Batteries (4-pack),2,3.84,2019-08-28 22:26:00,569 Highland St, San Francisco,CA,94016 +247673,USB-C Charging Cable,1,11.95,2019-08-19 19:27:00,600 River St, San Francisco,CA,94016 +247674,Bose SoundSport Headphones,1,99.99,2019-08-23 22:25:00,124 12th St, San Francisco,CA,94016 +247675,Flatscreen TV,1,300.0,2019-08-13 18:31:00,964 Dogwood St, Dallas,TX,75001 +247676,AAA Batteries (4-pack),1,2.99,2019-08-06 11:13:00,941 Sunset St, Los Angeles,CA,90001 +247677,AAA Batteries (4-pack),2,2.99,2019-08-25 20:55:00,936 Chestnut St, Los Angeles,CA,90001 +247678,34in Ultrawide Monitor,1,379.99,2019-08-03 11:44:00,642 Willow St, Seattle,WA,98101 +247679,Bose SoundSport Headphones,1,99.99,2019-08-11 08:32:00,93 9th St, San Francisco,CA,94016 +247680,Wired Headphones,1,11.99,2019-08-02 06:50:00,421 7th St, San Francisco,CA,94016 +247681,Bose SoundSport Headphones,1,99.99,2019-08-06 12:01:00,391 Johnson St, Los Angeles,CA,90001 +247682,Vareebadd Phone,1,400.0,2019-08-30 23:36:00,888 Cedar St, San Francisco,CA,94016 +247683,34in Ultrawide Monitor,1,379.99,2019-08-05 20:54:00,647 Lakeview St, Atlanta,GA,30301 +247684,Bose SoundSport Headphones,1,99.99,2019-08-03 10:14:00,260 Maple St, Austin,TX,73301 +247685,AA Batteries (4-pack),1,3.84,2019-08-08 23:36:00,528 Main St, Dallas,TX,75001 +247686,AA Batteries (4-pack),1,3.84,2019-08-29 19:46:00,528 Elm St, Los Angeles,CA,90001 +247687,Wired Headphones,2,11.99,2019-08-17 19:33:00,350 Jackson St, Atlanta,GA,30301 +247688,Bose SoundSport Headphones,1,99.99,2019-08-06 16:11:00,15 12th St, San Francisco,CA,94016 +247689,Wired Headphones,1,11.99,2019-08-04 19:44:00,858 Madison St, Boston,MA,02215 +247690,AA Batteries (4-pack),4,3.84,2019-08-27 11:05:00,323 Hill St, Los Angeles,CA,90001 +247691,Lightning Charging Cable,1,14.95,2019-08-27 21:58:00,341 Lake St, Atlanta,GA,30301 +247692,Bose SoundSport Headphones,1,99.99,2019-08-31 16:09:00,856 River St, Boston,MA,02215 +247693,iPhone,1,700.0,2019-08-23 22:17:00,589 Spruce St, Portland,ME,04101 +247693,Lightning Charging Cable,1,14.95,2019-08-23 22:17:00,589 Spruce St, Portland,ME,04101 +247694,iPhone,1,700.0,2019-08-11 16:12:00,262 12th St, New York City,NY,10001 +247695,iPhone,1,700.0,2019-08-23 21:21:00,463 Maple St, San Francisco,CA,94016 +247696,USB-C Charging Cable,1,11.95,2019-08-05 10:33:00,797 Park St, Los Angeles,CA,90001 +247697,Flatscreen TV,1,300.0,2019-08-04 17:34:00,209 Pine St, Seattle,WA,98101 +247698,Google Phone,1,600.0,2019-08-04 20:34:00,33 14th St, Atlanta,GA,30301 +247699,27in 4K Gaming Monitor,1,389.99,2019-08-16 15:41:00,682 7th St, Seattle,WA,98101 +247700,20in Monitor,1,109.99,2019-08-27 19:15:00,210 Adams St, Boston,MA,02215 +247701,Wired Headphones,1,11.99,2019-08-03 10:46:00,967 West St, New York City,NY,10001 +247702,Bose SoundSport Headphones,1,99.99,2019-08-31 21:17:00,227 Forest St, Los Angeles,CA,90001 +247703,27in 4K Gaming Monitor,1,389.99,2019-08-31 00:50:00,187 13th St, San Francisco,CA,94016 +247704,Macbook Pro Laptop,1,1700.0,2019-08-25 14:07:00,165 River St, Dallas,TX,75001 +247705,Lightning Charging Cable,1,14.95,2019-08-24 13:06:00,597 12th St, Austin,TX,73301 +247706,AAA Batteries (4-pack),3,2.99,2019-08-27 19:19:00,788 Forest St, San Francisco,CA,94016 +247707,Lightning Charging Cable,1,14.95,2019-08-28 19:33:00,840 Cedar St, Portland,OR,97035 +247708,AA Batteries (4-pack),1,3.84,2019-08-21 20:18:00,1 Washington St, San Francisco,CA,94016 +247709,Apple Airpods Headphones,1,150.0,2019-08-04 15:52:00,239 Park St, Portland,OR,97035 +247710,iPhone,1,700.0,2019-08-24 18:13:00,399 Cherry St, Boston,MA,02215 +247711,AAA Batteries (4-pack),1,2.99,2019-08-07 19:31:00,178 5th St, San Francisco,CA,94016 +247712,AA Batteries (4-pack),2,3.84,2019-08-21 08:41:00,73 Chestnut St, New York City,NY,10001 +247713,USB-C Charging Cable,1,11.95,2019-08-16 23:50:00,484 1st St, Los Angeles,CA,90001 +247714,Bose SoundSport Headphones,1,99.99,2019-08-18 10:45:00,969 Adams St, Los Angeles,CA,90001 +247715,Apple Airpods Headphones,1,150.0,2019-08-04 12:14:00,933 11th St, Portland,OR,97035 +247716,AAA Batteries (4-pack),1,2.99,2019-08-13 17:23:00,743 Johnson St, San Francisco,CA,94016 +247717,Bose SoundSport Headphones,1,99.99,2019-08-25 21:16:00,892 Center St, Boston,MA,02215 +247718,Bose SoundSport Headphones,1,99.99,2019-08-19 16:29:00,893 11th St, Los Angeles,CA,90001 +247719,Lightning Charging Cable,1,14.95,2019-08-20 10:03:00,967 Park St, Dallas,TX,75001 +247720,20in Monitor,1,109.99,2019-08-04 18:43:00,95 Chestnut St, Los Angeles,CA,90001 +247721,Apple Airpods Headphones,1,150.0,2019-08-30 15:09:00,352 5th St, New York City,NY,10001 +247722,USB-C Charging Cable,1,11.95,2019-08-22 15:16:00,624 8th St, San Francisco,CA,94016 +247723,AAA Batteries (4-pack),1,2.99,2019-08-12 08:47:00,31 Spruce St, San Francisco,CA,94016 +247724,Lightning Charging Cable,1,14.95,2019-08-09 17:00:00,223 Park St, Dallas,TX,75001 +247725,20in Monitor,1,109.99,2019-08-01 12:58:00,270 12th St, Seattle,WA,98101 +247726,Wired Headphones,1,11.99,2019-08-31 14:13:00,932 Hill St, Los Angeles,CA,90001 +247727,Bose SoundSport Headphones,1,99.99,2019-08-07 13:43:00,759 14th St, Los Angeles,CA,90001 +247728,27in FHD Monitor,1,149.99,2019-08-13 17:09:00,693 River St, Seattle,WA,98101 +247729,Apple Airpods Headphones,1,150.0,2019-08-13 23:44:00,193 Center St, Atlanta,GA,30301 +247730,Wired Headphones,1,11.99,2019-08-22 15:58:00,144 Spruce St, Boston,MA,02215 +247731,Lightning Charging Cable,1,14.95,2019-08-26 15:35:00,290 7th St, San Francisco,CA,94016 +247732,Lightning Charging Cable,1,14.95,2019-08-31 15:03:00,796 Wilson St, Boston,MA,02215 +247733,Wired Headphones,1,11.99,2019-08-31 10:32:00,527 Park St, Atlanta,GA,30301 +247734,iPhone,1,700.0,2019-08-29 12:34:00,139 2nd St, Atlanta,GA,30301 +247734,Lightning Charging Cable,1,14.95,2019-08-29 12:34:00,139 2nd St, Atlanta,GA,30301 +247735,Wired Headphones,1,11.99,2019-08-22 01:06:00,740 1st St, San Francisco,CA,94016 +247736,Wired Headphones,1,11.99,2019-08-10 19:36:00,457 12th St, Dallas,TX,75001 +247737,20in Monitor,1,109.99,2019-08-30 11:25:00,855 2nd St, Boston,MA,02215 +247738,Lightning Charging Cable,1,14.95,2019-08-17 16:17:00,991 Jackson St, Los Angeles,CA,90001 +247739,Wired Headphones,1,11.99,2019-08-17 10:35:00,683 Madison St, Boston,MA,02215 +247740,Lightning Charging Cable,1,14.95,2019-08-21 20:04:00,453 Dogwood St, Portland,OR,97035 +247741,Lightning Charging Cable,1,14.95,2019-08-28 18:48:00,725 1st St, San Francisco,CA,94016 +247742,Bose SoundSport Headphones,1,99.99,2019-08-12 06:00:00,959 7th St, San Francisco,CA,94016 +247743,Apple Airpods Headphones,1,150.0,2019-08-10 21:17:00,368 Main St, Dallas,TX,75001 +247744,AAA Batteries (4-pack),2,2.99,2019-08-17 22:53:00,434 Johnson St, New York City,NY,10001 +247745,AAA Batteries (4-pack),1,2.99,2019-08-24 11:28:00,782 Cedar St, Los Angeles,CA,90001 +247746,USB-C Charging Cable,1,11.95,2019-08-01 12:35:00,662 Jefferson St, Boston,MA,02215 +247747,Apple Airpods Headphones,1,150.0,2019-08-22 13:50:00,713 West St, San Francisco,CA,94016 +247748,USB-C Charging Cable,1,11.95,2019-08-31 18:44:00,34 Wilson St, Atlanta,GA,30301 +247749,iPhone,1,700.0,2019-08-03 16:36:00,531 7th St, New York City,NY,10001 +247750,ThinkPad Laptop,1,999.99,2019-08-28 23:17:00,157 Wilson St, Dallas,TX,75001 +247751,AAA Batteries (4-pack),1,2.99,2019-08-21 11:09:00,743 10th St, Portland,OR,97035 +247752,Apple Airpods Headphones,1,150.0,2019-08-13 18:36:00,768 Adams St, Los Angeles,CA,90001 +247753,34in Ultrawide Monitor,1,379.99,2019-08-13 21:35:00,542 9th St, San Francisco,CA,94016 +247754,USB-C Charging Cable,1,11.95,2019-08-17 01:03:00,870 Johnson St, San Francisco,CA,94016 +247755,34in Ultrawide Monitor,1,379.99,2019-08-31 14:28:00,412 Park St, Los Angeles,CA,90001 +247756,Lightning Charging Cable,1,14.95,2019-08-13 18:37:00,682 Cedar St, Seattle,WA,98101 +247757,AAA Batteries (4-pack),3,2.99,2019-08-07 15:25:00,561 Cedar St, Austin,TX,73301 +247758,34in Ultrawide Monitor,1,379.99,2019-08-07 14:28:00,857 6th St, San Francisco,CA,94016 +247759,27in FHD Monitor,1,149.99,2019-08-10 23:23:00,479 Meadow St, San Francisco,CA,94016 +247760,Bose SoundSport Headphones,1,99.99,2019-08-21 20:37:00,705 Lake St, Portland,OR,97035 +247761,20in Monitor,1,109.99,2019-08-01 22:05:00,86 Forest St, Los Angeles,CA,90001 +247762,27in 4K Gaming Monitor,1,389.99,2019-08-15 05:10:00,50 Cedar St, San Francisco,CA,94016 +247762,Apple Airpods Headphones,1,150.0,2019-08-15 05:10:00,50 Cedar St, San Francisco,CA,94016 +247763,AAA Batteries (4-pack),1,2.99,2019-08-22 20:25:00,820 11th St, San Francisco,CA,94016 +247764,Apple Airpods Headphones,1,150.0,2019-08-15 08:54:00,610 Center St, Atlanta,GA,30301 +247765,Wired Headphones,1,11.99,2019-08-04 18:55:00,271 13th St, Austin,TX,73301 +247766,Apple Airpods Headphones,1,150.0,2019-08-19 09:40:00,740 Adams St, Los Angeles,CA,90001 +247767,Wired Headphones,1,11.99,2019-08-22 20:43:00,495 North St, Portland,OR,97035 +247768,Google Phone,1,600.0,2019-08-20 22:38:00,451 7th St, Atlanta,GA,30301 +247768,Bose SoundSport Headphones,1,99.99,2019-08-20 22:38:00,451 7th St, Atlanta,GA,30301 +247769,Macbook Pro Laptop,1,1700.0,2019-08-16 17:59:00,307 Cedar St, Los Angeles,CA,90001 +247770,Lightning Charging Cable,1,14.95,2019-08-14 17:32:00,620 Ridge St, Atlanta,GA,30301 +247771,Google Phone,1,600.0,2019-08-24 13:24:00,145 Church St, Los Angeles,CA,90001 +247771,USB-C Charging Cable,1,11.95,2019-08-24 13:24:00,145 Church St, Los Angeles,CA,90001 +247772,Lightning Charging Cable,1,14.95,2019-08-11 17:52:00,333 Johnson St, San Francisco,CA,94016 +247773,AAA Batteries (4-pack),1,2.99,2019-08-04 10:26:00,244 Willow St, Boston,MA,02215 +247774,Wired Headphones,1,11.99,2019-08-30 21:31:00,669 1st St, San Francisco,CA,94016 +247775,AA Batteries (4-pack),1,3.84,2019-08-16 20:47:00,704 Park St, Boston,MA,02215 +247776,AAA Batteries (4-pack),2,2.99,2019-08-28 13:42:00,196 River St, San Francisco,CA,94016 +247777,Apple Airpods Headphones,1,150.0,2019-08-06 13:16:00,134 Adams St, Los Angeles,CA,90001 +247778,Wired Headphones,2,11.99,2019-08-11 10:55:00,464 2nd St, Portland,ME,04101 +247779,iPhone,1,700.0,2019-08-13 17:59:00,365 Forest St, Seattle,WA,98101 +247780,AAA Batteries (4-pack),1,2.99,2019-08-29 18:01:00,148 Lakeview St, Los Angeles,CA,90001 +247781,Wired Headphones,1,11.99,2019-08-07 17:21:00,87 9th St, Portland,OR,97035 +247782,AA Batteries (4-pack),2,3.84,2019-08-27 20:30:00,627 Lakeview St, San Francisco,CA,94016 +247783,Bose SoundSport Headphones,1,99.99,2019-08-08 10:46:00,916 Center St, San Francisco,CA,94016 +247784,ThinkPad Laptop,1,999.99,2019-08-19 13:48:00,880 Walnut St, Los Angeles,CA,90001 +247785,Apple Airpods Headphones,1,150.0,2019-08-04 07:57:00,801 Lake St, San Francisco,CA,94016 +247786,Apple Airpods Headphones,1,150.0,2019-08-12 18:58:00,911 Willow St, Dallas,TX,75001 +247787,USB-C Charging Cable,1,11.95,2019-08-05 22:07:00,107 Main St, San Francisco,CA,94016 +247788,iPhone,1,700.0,2019-08-03 11:36:00,582 Center St, Dallas,TX,75001 +247788,Lightning Charging Cable,2,14.95,2019-08-03 11:36:00,582 Center St, Dallas,TX,75001 +247789,Lightning Charging Cable,1,14.95,2019-08-29 11:36:00,362 11th St, San Francisco,CA,94016 +247790,Lightning Charging Cable,1,14.95,2019-08-07 08:57:00,659 2nd St, Atlanta,GA,30301 +247791,Google Phone,1,600.0,2019-08-20 15:04:00,29 14th St, San Francisco,CA,94016 +247792,Apple Airpods Headphones,1,150.0,2019-08-22 12:13:00,384 Park St, Boston,MA,02215 +247793,Apple Airpods Headphones,1,150.0,2019-08-17 14:57:00,833 Lake St, San Francisco,CA,94016 +247794,Wired Headphones,1,11.99,2019-08-28 14:34:00,917 Maple St, New York City,NY,10001 +247795,Flatscreen TV,1,300.0,2019-08-29 03:24:00,833 Center St, Dallas,TX,75001 +247796,Wired Headphones,1,11.99,2019-08-16 08:57:00,559 Cherry St, Dallas,TX,75001 +247797,AAA Batteries (4-pack),1,2.99,2019-08-08 13:15:00,116 Willow St, Los Angeles,CA,90001 +247798,Apple Airpods Headphones,1,150.0,2019-08-16 22:24:00,42 Johnson St, New York City,NY,10001 +247799,AA Batteries (4-pack),1,3.84,2019-08-22 15:31:00,184 1st St, Atlanta,GA,30301 +247800,Wired Headphones,1,11.99,2019-08-17 08:06:00,786 Cherry St, San Francisco,CA,94016 +247801,Macbook Pro Laptop,1,1700.0,2019-08-12 15:43:00,661 Washington St, Los Angeles,CA,90001 +247802,AA Batteries (4-pack),1,3.84,2019-08-08 20:24:00,671 Walnut St, Los Angeles,CA,90001 +247803,Flatscreen TV,1,300.0,2019-08-07 12:00:00,769 Forest St, Boston,MA,02215 +247804,34in Ultrawide Monitor,1,379.99,2019-08-03 17:13:00,132 Pine St, San Francisco,CA,94016 +247805,AA Batteries (4-pack),1,3.84,2019-08-24 12:20:00,72 Church St, New York City,NY,10001 +247806,Lightning Charging Cable,1,14.95,2019-08-30 10:25:00,836 Cherry St, Los Angeles,CA,90001 +247807,Lightning Charging Cable,1,14.95,2019-08-26 19:04:00,802 Wilson St, Dallas,TX,75001 +247808,Lightning Charging Cable,1,14.95,2019-08-15 17:37:00,831 Elm St, San Francisco,CA,94016 +247809,Wired Headphones,1,11.99,2019-08-16 11:59:00,224 Sunset St, San Francisco,CA,94016 +247810,27in FHD Monitor,1,149.99,2019-08-30 03:21:00,40 2nd St, Portland,OR,97035 +247811,Wired Headphones,2,11.99,2019-08-22 22:09:00,981 Meadow St, Boston,MA,02215 +247812,27in 4K Gaming Monitor,1,389.99,2019-08-20 17:13:00,977 Adams St, New York City,NY,10001 +247813,iPhone,1,700.0,2019-08-13 23:20:00,623 4th St, Portland,OR,97035 +247814,Wired Headphones,1,11.99,2019-08-25 13:56:00,996 14th St, Seattle,WA,98101 +247815,AAA Batteries (4-pack),1,2.99,2019-08-16 15:59:00,707 Hickory St, Atlanta,GA,30301 +247816,AA Batteries (4-pack),3,3.84,2019-08-03 14:53:00,165 Cedar St, Los Angeles,CA,90001 +247817,Lightning Charging Cable,1,14.95,2019-08-30 08:50:00,360 Madison St, San Francisco,CA,94016 +247818,Apple Airpods Headphones,1,150.0,2019-08-07 13:02:00,938 13th St, Portland,ME,04101 +247819,20in Monitor,1,109.99,2019-08-08 15:04:00,956 Cherry St, New York City,NY,10001 +247820,AAA Batteries (4-pack),2,2.99,2019-08-11 20:16:00,27 Washington St, Atlanta,GA,30301 +247821,Bose SoundSport Headphones,1,99.99,2019-08-30 11:23:00,885 Lake St, Portland,ME,04101 +247822,Lightning Charging Cable,1,14.95,2019-08-16 11:47:00,453 Cedar St, New York City,NY,10001 +247823,AAA Batteries (4-pack),1,2.99,2019-08-22 20:00:00,456 13th St, Seattle,WA,98101 +247824,34in Ultrawide Monitor,1,379.99,2019-08-20 15:32:00,951 Dogwood St, Dallas,TX,75001 +247825,Wired Headphones,1,11.99,2019-08-31 23:14:00,972 4th St, San Francisco,CA,94016 +247826,Wired Headphones,1,11.99,2019-08-17 10:25:00,519 Cedar St, Los Angeles,CA,90001 +247826,AAA Batteries (4-pack),1,2.99,2019-08-17 10:25:00,519 Cedar St, Los Angeles,CA,90001 +247827,USB-C Charging Cable,1,11.95,2019-08-03 18:33:00,557 11th St, New York City,NY,10001 +247827,34in Ultrawide Monitor,1,379.99,2019-08-03 18:33:00,557 11th St, New York City,NY,10001 +247828,Lightning Charging Cable,1,14.95,2019-08-13 11:30:00,715 Meadow St, Boston,MA,02215 +247829,Bose SoundSport Headphones,1,99.99,2019-08-09 10:23:00,160 6th St, San Francisco,CA,94016 +247830,Lightning Charging Cable,1,14.95,2019-08-12 20:07:00,699 Washington St, Dallas,TX,75001 +247831,Wired Headphones,1,11.99,2019-08-09 20:01:00,992 7th St, New York City,NY,10001 +247832,USB-C Charging Cable,1,11.95,2019-08-04 22:34:00,92 Willow St, San Francisco,CA,94016 +247833,Wired Headphones,1,11.99,2019-08-20 14:06:00,254 Madison St, Austin,TX,73301 +247834,Google Phone,1,600.0,2019-08-25 18:41:00,990 7th St, Boston,MA,02215 +247835,Wired Headphones,1,11.99,2019-08-27 16:11:00,23 Ridge St, San Francisco,CA,94016 +247836,Lightning Charging Cable,1,14.95,2019-08-10 12:01:00,363 Lakeview St, San Francisco,CA,94016 +247837,Apple Airpods Headphones,1,150.0,2019-08-03 10:19:00,487 Adams St, San Francisco,CA,94016 +247838,Wired Headphones,1,11.99,2019-08-13 16:48:00,538 Cedar St, San Francisco,CA,94016 +247839,Google Phone,1,600.0,2019-08-01 12:38:00,808 Park St, Atlanta,GA,30301 +247839,USB-C Charging Cable,1,11.95,2019-08-01 12:38:00,808 Park St, Atlanta,GA,30301 +247840,USB-C Charging Cable,1,11.95,2019-08-18 10:50:00,237 8th St, San Francisco,CA,94016 +247841,AAA Batteries (4-pack),1,2.99,2019-08-15 14:42:00,296 Spruce St, New York City,NY,10001 +247842,AAA Batteries (4-pack),1,2.99,2019-08-16 15:11:00,256 Jackson St, Los Angeles,CA,90001 +247843,Apple Airpods Headphones,2,150.0,2019-08-20 07:14:00,848 Johnson St, Portland,OR,97035 +247844,AA Batteries (4-pack),1,3.84,2019-08-29 10:42:00,885 Dogwood St, Seattle,WA,98101 +247845,AA Batteries (4-pack),2,3.84,2019-08-11 18:48:00,8 5th St, Seattle,WA,98101 +247846,AAA Batteries (4-pack),2,2.99,2019-08-08 20:08:00,780 Sunset St, Atlanta,GA,30301 +247847,Vareebadd Phone,1,400.0,2019-08-24 14:51:00,99 Madison St, New York City,NY,10001 +247848,20in Monitor,1,109.99,2019-08-06 12:13:00,738 Forest St, Atlanta,GA,30301 +247849,Bose SoundSport Headphones,1,99.99,2019-08-03 10:41:00,202 Jefferson St, Los Angeles,CA,90001 +247850,27in 4K Gaming Monitor,1,389.99,2019-08-23 15:36:00,521 Hill St, San Francisco,CA,94016 +247851,Macbook Pro Laptop,1,1700.0,2019-08-17 14:51:00,896 Cedar St, Atlanta,GA,30301 +247852,Apple Airpods Headphones,1,150.0,2019-08-27 15:14:00,937 Lincoln St, Austin,TX,73301 +247853,Wired Headphones,1,11.99,2019-08-30 15:04:00,435 Wilson St, Los Angeles,CA,90001 +247854,USB-C Charging Cable,1,11.95,2019-08-30 20:08:00,355 Park St, Dallas,TX,75001 +247855,USB-C Charging Cable,1,11.95,2019-08-21 10:50:00,780 Maple St, New York City,NY,10001 +247856,Flatscreen TV,1,300.0,2019-08-27 16:59:00,588 Johnson St, Portland,OR,97035 +247857,AAA Batteries (4-pack),2,2.99,2019-08-21 09:32:00,637 Madison St, San Francisco,CA,94016 +247858,Macbook Pro Laptop,1,1700.0,2019-08-25 15:31:00,502 9th St, Atlanta,GA,30301 +247859,USB-C Charging Cable,1,11.95,2019-08-05 11:06:00,514 9th St, Los Angeles,CA,90001 +247860,Macbook Pro Laptop,1,1700.0,2019-08-15 01:27:00,129 Willow St, Los Angeles,CA,90001 +247861,AA Batteries (4-pack),1,3.84,2019-08-01 06:16:00,124 Park St, San Francisco,CA,94016 +247862,Bose SoundSport Headphones,1,99.99,2019-08-30 18:31:00,454 14th St, Los Angeles,CA,90001 +247863,Apple Airpods Headphones,1,150.0,2019-08-10 12:24:00,665 Willow St, Boston,MA,02215 +247864,AA Batteries (4-pack),1,3.84,2019-08-21 18:21:00,713 Spruce St, San Francisco,CA,94016 +247865,34in Ultrawide Monitor,1,379.99,2019-08-04 13:10:00,578 Johnson St, Los Angeles,CA,90001 +247866,AAA Batteries (4-pack),1,2.99,2019-08-30 20:11:00,288 7th St, San Francisco,CA,94016 +247867,Apple Airpods Headphones,1,150.0,2019-08-17 14:06:00,796 Willow St, San Francisco,CA,94016 +247868,34in Ultrawide Monitor,1,379.99,2019-08-19 07:39:00,151 Willow St, New York City,NY,10001 +247869,AA Batteries (4-pack),1,3.84,2019-08-21 06:32:00,320 Jefferson St, San Francisco,CA,94016 +247870,Wired Headphones,1,11.99,2019-08-15 18:04:00,201 Center St, Atlanta,GA,30301 +247871,Bose SoundSport Headphones,1,99.99,2019-08-16 19:51:00,274 Lakeview St, Boston,MA,02215 +247872,Wired Headphones,1,11.99,2019-08-16 17:30:00,446 9th St, San Francisco,CA,94016 +247873,USB-C Charging Cable,1,11.95,2019-08-27 16:03:00,939 Forest St, Boston,MA,02215 +247874,Lightning Charging Cable,1,14.95,2019-08-04 22:31:00,357 South St, Austin,TX,73301 +247875,Lightning Charging Cable,1,14.95,2019-08-24 19:36:00,300 6th St, Dallas,TX,75001 +247876,Macbook Pro Laptop,1,1700.0,2019-08-18 21:42:00,221 1st St, New York City,NY,10001 +247877,Lightning Charging Cable,1,14.95,2019-08-04 08:49:00,83 Madison St, Austin,TX,73301 +247878,USB-C Charging Cable,1,11.95,2019-08-14 19:57:00,777 Willow St, Atlanta,GA,30301 +247879,Wired Headphones,1,11.99,2019-08-07 16:01:00,770 Lakeview St, Boston,MA,02215 +247879,USB-C Charging Cable,1,11.95,2019-08-07 16:01:00,770 Lakeview St, Boston,MA,02215 +247880,AA Batteries (4-pack),1,3.84,2019-08-09 09:59:00,770 Sunset St, San Francisco,CA,94016 +247881,Lightning Charging Cable,1,14.95,2019-08-03 20:41:00,396 Johnson St, San Francisco,CA,94016 +247882,Bose SoundSport Headphones,1,99.99,2019-08-11 08:42:00,863 8th St, New York City,NY,10001 +247883,Lightning Charging Cable,2,14.95,2019-08-27 23:28:00,96 Lakeview St, Atlanta,GA,30301 +247884,27in FHD Monitor,1,149.99,2019-08-26 10:21:00,756 Spruce St, Los Angeles,CA,90001 +247885,Apple Airpods Headphones,1,150.0,2019-08-12 13:01:00,711 Highland St, Seattle,WA,98101 +247886,USB-C Charging Cable,1,11.95,2019-08-15 09:50:00,653 North St, Seattle,WA,98101 +247887,34in Ultrawide Monitor,1,379.99,2019-08-17 13:10:00,333 6th St, New York City,NY,10001 +247888,34in Ultrawide Monitor,1,379.99,2019-08-26 16:23:00,674 Sunset St, Dallas,TX,75001 +247889,27in 4K Gaming Monitor,1,389.99,2019-08-13 08:28:00,409 Elm St, Los Angeles,CA,90001 +247890,Apple Airpods Headphones,1,150.0,2019-08-17 12:33:00,830 14th St, Portland,OR,97035 +247891,USB-C Charging Cable,1,11.95,2019-08-23 12:43:00,638 Lincoln St, San Francisco,CA,94016 +247891,AA Batteries (4-pack),1,3.84,2019-08-23 12:43:00,638 Lincoln St, San Francisco,CA,94016 +247892,AAA Batteries (4-pack),1,2.99,2019-08-25 16:00:00,749 7th St, Atlanta,GA,30301 +247893,AA Batteries (4-pack),3,3.84,2019-08-30 17:28:00,140 Washington St, Los Angeles,CA,90001 +247894,Lightning Charging Cable,1,14.95,2019-08-31 07:15:00,954 14th St, Portland,OR,97035 +247895,AA Batteries (4-pack),1,3.84,2019-08-11 08:26:00,929 Park St, Atlanta,GA,30301 +247896,Flatscreen TV,1,300.0,2019-08-22 11:24:00,601 West St, San Francisco,CA,94016 +247897,USB-C Charging Cable,1,11.95,2019-08-21 11:08:00,949 Willow St, Dallas,TX,75001 +247898,Wired Headphones,2,11.99,2019-08-19 19:48:00,742 7th St, San Francisco,CA,94016 +247899,Apple Airpods Headphones,1,150.0,2019-08-09 16:29:00,253 South St, Austin,TX,73301 +247900,iPhone,1,700.0,2019-08-16 20:12:00,944 West St, San Francisco,CA,94016 +247901,Wired Headphones,1,11.99,2019-08-04 23:40:00,333 North St, Los Angeles,CA,90001 +247902,Wired Headphones,1,11.99,2019-08-25 19:44:00,718 Lake St, San Francisco,CA,94016 +247903,Wired Headphones,1,11.99,2019-08-10 13:30:00,653 11th St, San Francisco,CA,94016 +247904,Apple Airpods Headphones,1,150.0,2019-08-14 21:38:00,960 Pine St, Dallas,TX,75001 +247905,AAA Batteries (4-pack),1,2.99,2019-08-02 16:31:00,319 11th St, New York City,NY,10001 +247906,LG Dryer,1,600.0,2019-08-12 15:52:00,220 Ridge St, San Francisco,CA,94016 +247907,AAA Batteries (4-pack),2,2.99,2019-08-06 20:07:00,978 Walnut St, Los Angeles,CA,90001 +247908,27in FHD Monitor,1,149.99,2019-08-01 11:49:00,736 Jackson St, San Francisco,CA,94016 +247909,Lightning Charging Cable,1,14.95,2019-08-29 22:22:00,77 South St, San Francisco,CA,94016 +247910,Flatscreen TV,1,300.0,2019-08-20 16:20:00,807 Adams St, Austin,TX,73301 +247911,USB-C Charging Cable,2,11.95,2019-08-01 13:37:00,676 Johnson St, Atlanta,GA,30301 +247912,AA Batteries (4-pack),1,3.84,2019-08-16 15:53:00,976 Hill St, Austin,TX,73301 +247913,Apple Airpods Headphones,1,150.0,2019-08-24 19:05:00,842 Madison St, Boston,MA,02215 +247914,27in FHD Monitor,1,149.99,2019-08-14 23:29:00,961 Ridge St, Los Angeles,CA,90001 +247915,Wired Headphones,1,11.99,2019-08-10 19:56:00,886 Wilson St, San Francisco,CA,94016 +247916,USB-C Charging Cable,1,11.95,2019-08-12 14:11:00,609 Dogwood St, Seattle,WA,98101 +247917,Apple Airpods Headphones,1,150.0,2019-08-30 18:02:00,764 8th St, San Francisco,CA,94016 +247918,AA Batteries (4-pack),2,3.84,2019-08-20 16:02:00,356 Jackson St, San Francisco,CA,94016 +247919,34in Ultrawide Monitor,1,379.99,2019-08-10 23:57:00,168 Willow St, Dallas,TX,75001 +247920,USB-C Charging Cable,1,11.95,2019-08-08 18:36:00,571 Pine St, Los Angeles,CA,90001 +247921,Apple Airpods Headphones,1,150.0,2019-08-02 20:53:00,328 Lakeview St, Boston,MA,02215 +247922,Apple Airpods Headphones,1,150.0,2019-08-06 11:22:00,209 Johnson St, New York City,NY,10001 +247923,Bose SoundSport Headphones,1,99.99,2019-08-14 02:24:00,954 5th St, Atlanta,GA,30301 +247924,USB-C Charging Cable,1,11.95,2019-08-15 09:05:00,443 River St, Seattle,WA,98101 +247925,Flatscreen TV,1,300.0,2019-08-19 14:34:00,913 1st St, Seattle,WA,98101 +247926,AA Batteries (4-pack),1,3.84,2019-08-12 22:24:00,350 Center St, Boston,MA,02215 +247927,Wired Headphones,1,11.99,2019-08-29 20:59:00,957 1st St, Austin,TX,73301 +247928,Bose SoundSport Headphones,1,99.99,2019-08-30 09:04:00,741 14th St, San Francisco,CA,94016 +247929,AA Batteries (4-pack),1,3.84,2019-08-05 20:09:00,712 Adams St, New York City,NY,10001 +247930,AAA Batteries (4-pack),2,2.99,2019-08-28 18:45:00,224 Cherry St, San Francisco,CA,94016 +247931,iPhone,1,700.0,2019-08-17 12:31:00,912 Highland St, Boston,MA,02215 +247932,Apple Airpods Headphones,1,150.0,2019-08-15 19:22:00,960 Ridge St, Austin,TX,73301 +247933,Bose SoundSport Headphones,1,99.99,2019-08-27 23:32:00,524 Cherry St, Los Angeles,CA,90001 +247934,Bose SoundSport Headphones,1,99.99,2019-08-25 21:41:00,332 12th St, New York City,NY,10001 +247935,Google Phone,1,600.0,2019-08-03 20:04:00,450 Wilson St, Atlanta,GA,30301 +247935,USB-C Charging Cable,1,11.95,2019-08-03 20:04:00,450 Wilson St, Atlanta,GA,30301 +247936,Apple Airpods Headphones,1,150.0,2019-08-19 13:32:00,449 Elm St, Seattle,WA,98101 +247937,27in 4K Gaming Monitor,1,389.99,2019-08-20 16:05:00,454 Jackson St, San Francisco,CA,94016 +247938,Vareebadd Phone,1,400.0,2019-08-23 19:23:00,534 Adams St, Portland,OR,97035 +247938,Google Phone,1,600.0,2019-08-23 19:23:00,534 Adams St, Portland,OR,97035 +247939,Google Phone,1,600.0,2019-08-11 16:24:00,400 Lake St, Los Angeles,CA,90001 +247940,AAA Batteries (4-pack),1,2.99,2019-08-21 18:35:00,995 Wilson St, Los Angeles,CA,90001 +247941,27in 4K Gaming Monitor,1,389.99,2019-08-24 12:24:00,792 Hill St, San Francisco,CA,94016 +247942,iPhone,1,700.0,2019-08-11 15:29:00,990 Meadow St, San Francisco,CA,94016 +247943,AAA Batteries (4-pack),1,2.99,2019-08-31 14:10:00,801 12th St, Los Angeles,CA,90001 +247944,AA Batteries (4-pack),1,3.84,2019-08-19 15:45:00,415 Elm St, New York City,NY,10001 +247945,AA Batteries (4-pack),1,3.84,2019-08-26 09:59:00,128 Spruce St, San Francisco,CA,94016 +247946,USB-C Charging Cable,1,11.95,2019-08-29 18:11:00,775 Spruce St, Atlanta,GA,30301 +247947,AA Batteries (4-pack),1,3.84,2019-08-10 21:33:00,649 Hill St, Boston,MA,02215 +247948,Wired Headphones,2,11.99,2019-08-28 11:04:00,398 Elm St, San Francisco,CA,94016 +247949,27in FHD Monitor,1,149.99,2019-08-21 12:07:00,738 Dogwood St, Boston,MA,02215 +247950,Bose SoundSport Headphones,1,99.99,2019-08-18 11:23:00,952 Johnson St, Los Angeles,CA,90001 +247951,Flatscreen TV,1,300.0,2019-08-05 10:36:00,427 Forest St, Los Angeles,CA,90001 +247952,Bose SoundSport Headphones,1,99.99,2019-08-10 12:36:00,496 Hill St, Atlanta,GA,30301 +247953,Wired Headphones,1,11.99,2019-08-07 05:18:00,893 North St, New York City,NY,10001 +247954,Bose SoundSport Headphones,1,99.99,2019-08-30 19:18:00,47 Dogwood St, Austin,TX,73301 +247955,iPhone,1,700.0,2019-08-21 17:34:00,41 Washington St, Los Angeles,CA,90001 +247956,Bose SoundSport Headphones,1,99.99,2019-08-06 19:27:00,877 9th St, Dallas,TX,75001 +247957,27in FHD Monitor,1,149.99,2019-08-31 21:09:00,737 Adams St, Portland,OR,97035 +247958,Apple Airpods Headphones,1,150.0,2019-08-05 14:43:00,897 Lake St, Portland,OR,97035 +247959,Lightning Charging Cable,1,14.95,2019-08-25 13:25:00,634 Chestnut St, Seattle,WA,98101 +247960,Apple Airpods Headphones,1,150.0,2019-08-20 01:19:00,233 Wilson St, New York City,NY,10001 +247961,Bose SoundSport Headphones,1,99.99,2019-08-03 17:33:00,532 Ridge St, Atlanta,GA,30301 +247962,AA Batteries (4-pack),1,3.84,2019-08-19 16:22:00,713 Ridge St, Atlanta,GA,30301 +247963,27in FHD Monitor,1,149.99,2019-08-03 20:12:00,471 11th St, Seattle,WA,98101 +247964,AAA Batteries (4-pack),1,2.99,2019-08-30 14:38:00,121 9th St, New York City,NY,10001 +247965,Apple Airpods Headphones,1,150.0,2019-08-31 11:31:00,82 Park St, San Francisco,CA,94016 +247966,iPhone,1,700.0,2019-08-05 05:17:00,847 6th St, New York City,NY,10001 +247966,Apple Airpods Headphones,1,150.0,2019-08-05 05:17:00,847 6th St, New York City,NY,10001 +247967,AAA Batteries (4-pack),2,2.99,2019-08-04 22:08:00,424 Wilson St, New York City,NY,10001 +247968,Wired Headphones,1,11.99,2019-08-08 07:30:00,818 13th St, San Francisco,CA,94016 +247969,AAA Batteries (4-pack),2,2.99,2019-08-12 11:39:00,301 Washington St, New York City,NY,10001 +247970,Wired Headphones,1,11.99,2019-08-08 17:42:00,199 1st St, Boston,MA,02215 +247971,AA Batteries (4-pack),4,3.84,2019-08-18 14:11:00,650 7th St, New York City,NY,10001 +247972,iPhone,1,700.0,2019-08-21 06:32:00,573 South St, Los Angeles,CA,90001 +247973,iPhone,1,700.0,2019-08-01 22:38:00,193 Ridge St, Atlanta,GA,30301 +247974,AAA Batteries (4-pack),2,2.99,2019-08-02 20:32:00,446 Park St, San Francisco,CA,94016 +247975,iPhone,1,700.0,2019-08-24 15:19:00,760 1st St, Portland,OR,97035 +247976,27in FHD Monitor,1,149.99,2019-08-11 20:11:00,313 South St, Atlanta,GA,30301 +247977,Wired Headphones,1,11.99,2019-08-08 12:52:00,613 10th St, Dallas,TX,75001 +247978,AAA Batteries (4-pack),2,2.99,2019-08-13 12:03:00,730 Park St, Austin,TX,73301 +247979,Lightning Charging Cable,1,14.95,2019-08-23 19:02:00,573 Hill St, Austin,TX,73301 +247980,Lightning Charging Cable,2,14.95,2019-08-13 00:18:00,290 Madison St, Los Angeles,CA,90001 +247981,27in FHD Monitor,1,149.99,2019-08-14 20:27:00,791 Cherry St, Boston,MA,02215 +247982,AA Batteries (4-pack),1,3.84,2019-08-23 17:32:00,962 Johnson St, San Francisco,CA,94016 +247983,Flatscreen TV,1,300.0,2019-08-08 22:19:00,711 6th St, San Francisco,CA,94016 +247984,27in FHD Monitor,1,149.99,2019-08-21 19:14:00,360 Spruce St, Atlanta,GA,30301 +247985,Lightning Charging Cable,1,14.95,2019-08-15 19:22:00,954 Sunset St, Los Angeles,CA,90001 +247986,Wired Headphones,1,11.99,2019-08-18 20:13:00,25 Jefferson St, Portland,OR,97035 +247987,Bose SoundSport Headphones,1,99.99,2019-08-28 14:05:00,863 Elm St, San Francisco,CA,94016 +247988,USB-C Charging Cable,1,11.95,2019-08-18 20:26:00,845 Wilson St, San Francisco,CA,94016 +247988,AA Batteries (4-pack),2,3.84,2019-08-18 20:26:00,845 Wilson St, San Francisco,CA,94016 +247989,AA Batteries (4-pack),2,3.84,2019-08-22 12:39:00,23 Lakeview St, Dallas,TX,75001 +247989,iPhone,1,700.0,2019-08-22 12:39:00,23 Lakeview St, Dallas,TX,75001 +247990,USB-C Charging Cable,2,11.95,2019-08-22 13:40:00,711 Adams St, Portland,OR,97035 +247991,AA Batteries (4-pack),6,3.84,2019-08-07 22:39:00,679 2nd St, San Francisco,CA,94016 +247992,AA Batteries (4-pack),2,3.84,2019-08-02 19:04:00,961 12th St, Los Angeles,CA,90001 +247993,Macbook Pro Laptop,1,1700.0,2019-08-29 23:13:00,768 Cherry St, San Francisco,CA,94016 +247994,Macbook Pro Laptop,1,1700.0,2019-08-20 23:55:00,317 Washington St, San Francisco,CA,94016 +247995,27in FHD Monitor,1,149.99,2019-08-22 16:03:00,270 Forest St, Los Angeles,CA,90001 +247996,ThinkPad Laptop,1,999.99,2019-08-03 10:46:00,336 9th St, San Francisco,CA,94016 +247997,Bose SoundSport Headphones,1,99.99,2019-08-05 12:02:00,487 4th St, Los Angeles,CA,90001 +247998,Bose SoundSport Headphones,1,99.99,2019-08-22 09:09:00,820 Ridge St, San Francisco,CA,94016 +247999,Wired Headphones,1,11.99,2019-08-01 23:45:00,811 Washington St, Seattle,WA,98101 +248000,Macbook Pro Laptop,1,1700.0,2019-08-07 17:50:00,987 Main St, Portland,ME,04101 +248000,Apple Airpods Headphones,1,150.0,2019-08-07 17:50:00,987 Main St, Portland,ME,04101 +248001,AAA Batteries (4-pack),1,2.99,2019-08-01 19:55:00,338 2nd St, San Francisco,CA,94016 +248001,Apple Airpods Headphones,1,150.0,2019-08-01 19:55:00,338 2nd St, San Francisco,CA,94016 +248002,Bose SoundSport Headphones,1,99.99,2019-08-15 01:55:00,793 North St, San Francisco,CA,94016 +248003,20in Monitor,1,109.99,2019-08-04 13:10:00,214 Highland St, Los Angeles,CA,90001 +248004,Lightning Charging Cable,1,14.95,2019-08-29 17:06:00,711 Lake St, Los Angeles,CA,90001 +248005,Wired Headphones,1,11.99,2019-08-23 23:10:00,428 Hickory St, Portland,OR,97035 +248005,AA Batteries (4-pack),1,3.84,2019-08-23 23:10:00,428 Hickory St, Portland,OR,97035 +248006,Apple Airpods Headphones,1,150.0,2019-08-13 13:06:00,510 Johnson St, San Francisco,CA,94016 +248007,AAA Batteries (4-pack),1,2.99,2019-08-28 21:54:00,388 1st St, Atlanta,GA,30301 +248008,AAA Batteries (4-pack),1,2.99,2019-08-08 16:05:00,565 5th St, Los Angeles,CA,90001 +248009,USB-C Charging Cable,1,11.95,2019-08-16 23:10:00,240 5th St, Dallas,TX,75001 +248010,USB-C Charging Cable,1,11.95,2019-08-22 11:46:00,561 Church St, Austin,TX,73301 +248011,USB-C Charging Cable,1,11.95,2019-08-15 23:47:00,774 9th St, San Francisco,CA,94016 +248012,Bose SoundSport Headphones,1,99.99,2019-08-16 19:46:00,191 8th St, San Francisco,CA,94016 +248013,USB-C Charging Cable,1,11.95,2019-08-20 14:24:00,852 Jefferson St, Dallas,TX,75001 +248014,Wired Headphones,1,11.99,2019-08-15 12:06:00,527 Wilson St, New York City,NY,10001 +248015,AA Batteries (4-pack),2,3.84,2019-08-03 23:48:00,139 Center St, San Francisco,CA,94016 +248016,Wired Headphones,1,11.99,2019-08-06 05:49:00,269 Lake St, Dallas,TX,75001 +248017,Apple Airpods Headphones,1,150.0,2019-08-29 13:32:00,353 Lake St, Dallas,TX,75001 +248018,AAA Batteries (4-pack),1,2.99,2019-08-31 00:02:00,951 8th St, Austin,TX,73301 +248019,Wired Headphones,1,11.99,2019-08-23 13:32:00,751 Main St, San Francisco,CA,94016 +248020,Lightning Charging Cable,1,14.95,2019-08-02 00:56:00,510 Cherry St, Los Angeles,CA,90001 +248021,AAA Batteries (4-pack),1,2.99,2019-08-30 19:42:00,458 10th St, Boston,MA,02215 +248022,USB-C Charging Cable,1,11.95,2019-08-21 22:44:00,432 Sunset St, San Francisco,CA,94016 +248023,USB-C Charging Cable,1,11.95,2019-08-23 08:20:00,614 Hickory St, Boston,MA,02215 +248024,AAA Batteries (4-pack),1,2.99,2019-08-12 10:16:00,526 Park St, Dallas,TX,75001 +248025,AA Batteries (4-pack),1,3.84,2019-08-22 16:15:00,526 Meadow St, Portland,OR,97035 +248026,LG Dryer,1,600.0,2019-08-31 09:40:00,41 North St, Boston,MA,02215 +248026,Vareebadd Phone,1,400.0,2019-08-31 09:40:00,41 North St, Boston,MA,02215 +248027,Bose SoundSport Headphones,2,99.99,2019-08-10 12:11:00,960 Pine St, Boston,MA,02215 +248028,AA Batteries (4-pack),1,3.84,2019-08-22 17:03:00,484 Highland St, Boston,MA,02215 +248029,Wired Headphones,1,11.99,2019-08-24 19:00:00,48 Highland St, Seattle,WA,98101 +248030,USB-C Charging Cable,1,11.95,2019-08-10 19:47:00,368 Center St, San Francisco,CA,94016 +248031,34in Ultrawide Monitor,1,379.99,2019-08-09 17:28:00,907 8th St, San Francisco,CA,94016 +248032,Wired Headphones,1,11.99,2019-08-27 06:50:00,341 Wilson St, Atlanta,GA,30301 +248033,Lightning Charging Cable,1,14.95,2019-08-03 16:46:00,691 Walnut St, Seattle,WA,98101 +248034,Wired Headphones,1,11.99,2019-08-14 14:08:00,856 6th St, San Francisco,CA,94016 +248035,Vareebadd Phone,1,400.0,2019-08-28 08:48:00,153 Elm St, New York City,NY,10001 +248036,USB-C Charging Cable,1,11.95,2019-08-06 19:56:00,340 Cherry St, San Francisco,CA,94016 +248037,AAA Batteries (4-pack),1,2.99,2019-08-09 18:57:00,230 Cherry St, New York City,NY,10001 +248038,27in 4K Gaming Monitor,1,389.99,2019-08-11 18:02:00,612 Meadow St, Seattle,WA,98101 +248039,AA Batteries (4-pack),1,3.84,2019-08-24 10:06:00,314 Jefferson St, Los Angeles,CA,90001 +248040,AAA Batteries (4-pack),3,2.99,2019-08-28 07:37:00,758 Highland St, Dallas,TX,75001 +248041,AAA Batteries (4-pack),1,2.99,2019-08-23 01:28:00,856 South St, San Francisco,CA,94016 +248042,USB-C Charging Cable,1,11.95,2019-08-29 12:12:00,283 West St, Los Angeles,CA,90001 +248043,USB-C Charging Cable,1,11.95,2019-08-24 23:59:00,986 Maple St, Los Angeles,CA,90001 +248044,LG Washing Machine,1,600.0,2019-08-07 17:54:00,812 Park St, Los Angeles,CA,90001 +248045,27in FHD Monitor,1,149.99,2019-08-06 15:30:00,107 Meadow St, San Francisco,CA,94016 +248046,AA Batteries (4-pack),1,3.84,2019-08-14 21:18:00,185 Pine St, Los Angeles,CA,90001 +248047,Bose SoundSport Headphones,1,99.99,2019-08-30 21:13:00,826 Highland St, Portland,OR,97035 +248048,AAA Batteries (4-pack),1,2.99,2019-08-19 22:02:00,730 Sunset St, Dallas,TX,75001 +248049,Vareebadd Phone,1,400.0,2019-08-20 20:15:00,561 West St, Atlanta,GA,30301 +248050,Macbook Pro Laptop,1,1700.0,2019-08-28 17:16:00,45 Chestnut St, San Francisco,CA,94016 +248051,Lightning Charging Cable,1,14.95,2019-08-23 15:14:00,257 Lincoln St, Los Angeles,CA,90001 +248052,USB-C Charging Cable,1,11.95,2019-08-08 10:49:00,424 Hickory St, Los Angeles,CA,90001 +248053,AA Batteries (4-pack),2,3.84,2019-08-05 09:03:00,57 Highland St, New York City,NY,10001 +248053,20in Monitor,1,109.99,2019-08-05 09:03:00,57 Highland St, New York City,NY,10001 +248054,Wired Headphones,1,11.99,2019-08-05 10:33:00,505 Lakeview St, Atlanta,GA,30301 +248055,iPhone,1,700.0,2019-08-21 07:32:00,675 12th St, Portland,OR,97035 +248056,AA Batteries (4-pack),1,3.84,2019-08-27 17:15:00,620 2nd St, Los Angeles,CA,90001 +248057,USB-C Charging Cable,1,11.95,2019-08-05 11:57:00,251 South St, San Francisco,CA,94016 +248058,USB-C Charging Cable,1,11.95,2019-08-08 12:26:00,284 11th St, Dallas,TX,75001 +248059,Lightning Charging Cable,1,14.95,2019-08-27 22:42:00,399 Ridge St, San Francisco,CA,94016 +248060,27in 4K Gaming Monitor,1,389.99,2019-08-16 20:09:00,682 Ridge St, San Francisco,CA,94016 +248061,Bose SoundSport Headphones,1,99.99,2019-08-08 20:36:00,442 Walnut St, Los Angeles,CA,90001 +248062,Wired Headphones,1,11.99,2019-08-22 23:10:00,55 4th St, Dallas,TX,75001 +248063,ThinkPad Laptop,1,999.99,2019-08-05 23:00:00,417 8th St, San Francisco,CA,94016 +248064,27in 4K Gaming Monitor,1,389.99,2019-08-17 09:58:00,208 Lake St, New York City,NY,10001 +248065,Macbook Pro Laptop,1,1700.0,2019-08-25 18:53:00,797 Lake St, New York City,NY,10001 +248066,Wired Headphones,1,11.99,2019-08-03 10:39:00,139 Elm St, Atlanta,GA,30301 +248067,34in Ultrawide Monitor,1,379.99,2019-08-03 20:10:00,830 Dogwood St, Seattle,WA,98101 +248068,Bose SoundSport Headphones,1,99.99,2019-08-13 11:42:00,563 Hill St, San Francisco,CA,94016 +248068,AA Batteries (4-pack),3,3.84,2019-08-13 11:42:00,563 Hill St, San Francisco,CA,94016 +248069,AAA Batteries (4-pack),1,2.99,2019-08-29 15:39:00,358 5th St, Los Angeles,CA,90001 +248070,Apple Airpods Headphones,1,150.0,2019-08-29 16:16:00,631 Jackson St, Dallas,TX,75001 +248071,AA Batteries (4-pack),1,3.84,2019-08-10 22:13:00,344 River St, Portland,OR,97035 +248072,Wired Headphones,1,11.99,2019-08-24 10:59:00,538 12th St, New York City,NY,10001 +248073,USB-C Charging Cable,1,11.95,2019-08-11 17:41:00,189 7th St, Los Angeles,CA,90001 +248074,Bose SoundSport Headphones,1,99.99,2019-08-18 18:29:00,815 Dogwood St, San Francisco,CA,94016 +248075,34in Ultrawide Monitor,1,379.99,2019-08-28 13:39:00,607 West St, San Francisco,CA,94016 +248076,Apple Airpods Headphones,1,150.0,2019-08-24 20:16:00,526 Cherry St, San Francisco,CA,94016 +248077,AA Batteries (4-pack),1,3.84,2019-08-14 15:13:00,888 Sunset St, San Francisco,CA,94016 +248078,Bose SoundSport Headphones,1,99.99,2019-08-09 05:35:00,164 Washington St, San Francisco,CA,94016 +248079,USB-C Charging Cable,1,11.95,2019-08-23 12:44:00,57 Dogwood St, Boston,MA,02215 +248080,Bose SoundSport Headphones,1,99.99,2019-08-23 07:30:00,772 Washington St, New York City,NY,10001 +248081,Apple Airpods Headphones,1,150.0,2019-08-13 17:14:00,738 5th St, Dallas,TX,75001 +248082,Macbook Pro Laptop,1,1700.0,2019-08-25 14:20:00,678 8th St, San Francisco,CA,94016 +248083,Lightning Charging Cable,1,14.95,2019-08-04 09:00:00,440 Lakeview St, San Francisco,CA,94016 +248084,AAA Batteries (4-pack),1,2.99,2019-08-23 14:48:00,886 5th St, San Francisco,CA,94016 +248085,USB-C Charging Cable,1,11.95,2019-08-24 18:21:00,337 1st St, Los Angeles,CA,90001 +248086,Apple Airpods Headphones,1,150.0,2019-08-10 23:27:00,644 2nd St, New York City,NY,10001 +248087,iPhone,1,700.0,2019-08-20 14:33:00,813 13th St, Los Angeles,CA,90001 +248088,ThinkPad Laptop,1,999.99,2019-08-13 19:26:00,614 11th St, San Francisco,CA,94016 +248088,Bose SoundSport Headphones,1,99.99,2019-08-13 19:26:00,614 11th St, San Francisco,CA,94016 +248089,Lightning Charging Cable,1,14.95,2019-08-04 14:41:00,116 Willow St, Boston,MA,02215 +248090,AA Batteries (4-pack),1,3.84,2019-08-15 05:57:00,398 Hill St, San Francisco,CA,94016 +248091,Lightning Charging Cable,1,14.95,2019-08-09 17:19:00,184 Pine St, Austin,TX,73301 +248092,27in FHD Monitor,1,149.99,2019-08-13 16:24:00,163 4th St, San Francisco,CA,94016 +248093,27in 4K Gaming Monitor,1,389.99,2019-08-15 15:33:00,569 Park St, Atlanta,GA,30301 +248094,Flatscreen TV,1,300.0,2019-08-31 19:59:00,190 Church St, Atlanta,GA,30301 +248095,34in Ultrawide Monitor,1,379.99,2019-08-23 12:48:00,905 Pine St, San Francisco,CA,94016 +248096,AAA Batteries (4-pack),1,2.99,2019-08-28 01:37:00,243 9th St, Boston,MA,02215 +248097,USB-C Charging Cable,1,11.95,2019-08-26 21:44:00,327 Maple St, Boston,MA,02215 +248098,Google Phone,2,600.0,2019-08-13 09:11:00,387 11th St, San Francisco,CA,94016 +248099,Lightning Charging Cable,1,14.95,2019-08-07 20:48:00,852 Cedar St, San Francisco,CA,94016 +248100,27in 4K Gaming Monitor,1,389.99,2019-08-25 12:04:00,579 Cedar St, New York City,NY,10001 +248101,AA Batteries (4-pack),1,3.84,2019-08-25 13:36:00,364 Jefferson St, Austin,TX,73301 +248102,AA Batteries (4-pack),1,3.84,2019-08-06 13:32:00,285 Main St, Boston,MA,02215 +248103,AA Batteries (4-pack),1,3.84,2019-08-16 09:32:00,22 6th St, Atlanta,GA,30301 +248104,20in Monitor,1,109.99,2019-08-01 07:00:00,528 9th St, Dallas,TX,75001 +248105,Google Phone,1,600.0,2019-08-28 19:27:00,21 Center St, New York City,NY,10001 +248105,Wired Headphones,1,11.99,2019-08-28 19:27:00,21 Center St, New York City,NY,10001 +248106,USB-C Charging Cable,1,11.95,2019-08-11 12:50:00,859 Johnson St, Boston,MA,02215 +248107,Macbook Pro Laptop,1,1700.0,2019-08-06 21:12:00,89 Spruce St, San Francisco,CA,94016 +248108,Wired Headphones,1,11.99,2019-08-29 20:23:00,541 Lake St, Los Angeles,CA,90001 +248109,Lightning Charging Cable,2,14.95,2019-08-02 19:28:00,409 1st St, San Francisco,CA,94016 +248110,Apple Airpods Headphones,1,150.0,2019-08-13 17:24:00,440 West St, San Francisco,CA,94016 +248111,USB-C Charging Cable,1,11.95,2019-08-10 11:37:00,47 Dogwood St, Austin,TX,73301 +248112,Wired Headphones,1,11.99,2019-08-09 00:13:00,976 Hickory St, New York City,NY,10001 +248113,20in Monitor,1,109.99,2019-08-14 06:02:00,62 Washington St, Portland,OR,97035 +248114,AA Batteries (4-pack),1,3.84,2019-08-29 15:36:00,187 South St, New York City,NY,10001 +248115,27in FHD Monitor,1,149.99,2019-08-18 17:26:00,411 11th St, San Francisco,CA,94016 +248116,Vareebadd Phone,1,400.0,2019-08-28 16:59:00,481 Wilson St, Portland,OR,97035 +248117,34in Ultrawide Monitor,1,379.99,2019-08-04 14:20:00,598 Johnson St, Los Angeles,CA,90001 +248118,AAA Batteries (4-pack),1,2.99,2019-08-29 10:59:00,224 Highland St, New York City,NY,10001 +248119,Lightning Charging Cable,1,14.95,2019-08-01 09:24:00,143 6th St, Boston,MA,02215 +248120,Google Phone,1,600.0,2019-08-02 20:42:00,619 5th St, New York City,NY,10001 +248120,USB-C Charging Cable,1,11.95,2019-08-02 20:42:00,619 5th St, New York City,NY,10001 +248121,USB-C Charging Cable,1,11.95,2019-08-29 10:30:00,762 Cherry St, Seattle,WA,98101 +248122,Bose SoundSport Headphones,1,99.99,2019-08-20 22:50:00,71 14th St, Dallas,TX,75001 +248123,USB-C Charging Cable,1,11.95,2019-08-23 13:57:00,252 13th St, Los Angeles,CA,90001 +248124,LG Dryer,1,600.0,2019-08-29 00:07:00,347 Willow St, Boston,MA,02215 +248125,Macbook Pro Laptop,1,1700.0,2019-08-18 20:11:00,88 5th St, Portland,OR,97035 +248126,AAA Batteries (4-pack),1,2.99,2019-08-10 19:18:00,337 Maple St, Portland,OR,97035 +248127,Wired Headphones,1,11.99,2019-08-24 17:28:00,368 Hickory St, Boston,MA,02215 +248128,Apple Airpods Headphones,1,150.0,2019-08-16 21:02:00,888 Jackson St, Austin,TX,73301 +248129,20in Monitor,1,109.99,2019-08-04 11:43:00,599 11th St, Dallas,TX,75001 +248130,Apple Airpods Headphones,1,150.0,2019-08-07 22:56:00,937 Highland St, Boston,MA,02215 +248131,USB-C Charging Cable,1,11.95,2019-08-14 20:32:00,120 4th St, New York City,NY,10001 +248132,27in 4K Gaming Monitor,1,389.99,2019-08-26 13:06:00,607 Cherry St, New York City,NY,10001 +248133,USB-C Charging Cable,1,11.95,2019-08-21 08:42:00,296 Church St, Los Angeles,CA,90001 +248134,Lightning Charging Cable,2,14.95,2019-08-16 22:48:00,48 Adams St, Los Angeles,CA,90001 +248135,LG Washing Machine,1,600.0,2019-08-14 11:44:00,429 11th St, New York City,NY,10001 +248136,Wired Headphones,1,11.99,2019-08-09 19:38:00,394 10th St, San Francisco,CA,94016 +248137,USB-C Charging Cable,1,11.95,2019-08-24 09:01:00,987 8th St, Portland,OR,97035 +248138,27in 4K Gaming Monitor,1,389.99,2019-08-10 06:18:00,742 North St, Portland,OR,97035 +248139,iPhone,1,700.0,2019-08-10 23:39:00,879 Spruce St, Los Angeles,CA,90001 +248140,Bose SoundSport Headphones,1,99.99,2019-08-27 18:43:00,49 Johnson St, Atlanta,GA,30301 +248141,AAA Batteries (4-pack),3,2.99,2019-08-07 10:09:00,304 Center St, Atlanta,GA,30301 +248142,34in Ultrawide Monitor,1,379.99,2019-08-25 09:35:00,928 Sunset St, Seattle,WA,98101 +248143,USB-C Charging Cable,1,11.95,2019-08-04 20:45:00,566 Adams St, San Francisco,CA,94016 +248144,Apple Airpods Headphones,1,150.0,2019-08-22 15:10:00,107 Maple St, Los Angeles,CA,90001 +248145,Wired Headphones,1,11.99,2019-08-20 19:07:00,87 12th St, Boston,MA,02215 +248146,Bose SoundSport Headphones,1,99.99,2019-08-29 22:19:00,868 Hickory St, San Francisco,CA,94016 +248147,AAA Batteries (4-pack),3,2.99,2019-08-31 16:26:00,206 Lakeview St, Boston,MA,02215 +248148,AA Batteries (4-pack),1,3.84,2019-08-02 07:25:00,568 13th St, Seattle,WA,98101 +248149,USB-C Charging Cable,1,11.95,2019-08-08 12:10:00,495 Walnut St, San Francisco,CA,94016 +248150,AA Batteries (4-pack),1,3.84,2019-08-16 08:13:00,738 Park St, Los Angeles,CA,90001 +295665,Macbook Pro Laptop,1,1700.0,2019-12-30 00:01:00,136 Church St, New York City,NY,10001 +295666,LG Washing Machine,1,600.0,2019-12-29 07:03:00,562 2nd St, New York City,NY,10001 +295667,USB-C Charging Cable,1,11.95,2019-12-12 18:21:00,277 Main St, New York City,NY,10001 +295668,27in FHD Monitor,1,149.99,2019-12-22 15:13:00,410 6th St, San Francisco,CA,94016 +295669,USB-C Charging Cable,1,11.95,2019-12-18 12:38:00,43 Hill St, Atlanta,GA,30301 +295670,AA Batteries (4-pack),1,3.84,2019-12-31 22:58:00,200 Jefferson St, New York City,NY,10001 +295671,USB-C Charging Cable,1,11.95,2019-12-16 15:10:00,928 12th St, Portland,OR,97035 +295672,USB-C Charging Cable,2,11.95,2019-12-13 09:29:00,813 Hickory St, Dallas,TX,75001 +295673,Bose SoundSport Headphones,1,99.99,2019-12-15 23:26:00,718 Wilson St, Dallas,TX,75001 +295674,AAA Batteries (4-pack),4,2.99,2019-12-28 11:51:00,77 7th St, Dallas,TX,75001 +295675,USB-C Charging Cable,2,11.95,2019-12-13 13:52:00,594 1st St, San Francisco,CA,94016 +295676,ThinkPad Laptop,1,999.99,2019-12-28 17:19:00,410 Lincoln St, Los Angeles,CA,90001 +295677,AA Batteries (4-pack),2,3.84,2019-12-20 19:19:00,866 Pine St, Boston,MA,02215 +295678,AAA Batteries (4-pack),2,2.99,2019-12-06 09:38:00,187 Lincoln St, Dallas,TX,75001 +295679,USB-C Charging Cable,1,11.95,2019-12-25 09:39:00,902 2nd St, Dallas,TX,75001 +295680,Lightning Charging Cable,1,14.95,2019-12-01 14:30:00,338 Main St, Austin,TX,73301 +295681,Google Phone,1,600.0,2019-12-25 12:37:00,79 Elm St, Boston,MA,02215 +295681,USB-C Charging Cable,1,11.95,2019-12-25 12:37:00,79 Elm St, Boston,MA,02215 +295681,Bose SoundSport Headphones,1,99.99,2019-12-25 12:37:00,79 Elm St, Boston,MA,02215 +295681,Wired Headphones,1,11.99,2019-12-25 12:37:00,79 Elm St, Boston,MA,02215 +295682,USB-C Charging Cable,1,11.95,2019-12-23 19:25:00,780 Elm St, Portland,OR,97035 +295683,Wired Headphones,1,11.99,2019-12-23 22:46:00,341 Lake St, San Francisco,CA,94016 +295684,AAA Batteries (4-pack),4,2.99,2019-12-04 12:29:00,936 Church St, San Francisco,CA,94016 +295685,Wired Headphones,1,11.99,2019-12-11 22:54:00,662 Ridge St, San Francisco,CA,94016 +295686,USB-C Charging Cable,1,11.95,2019-12-17 16:10:00,573 Maple St, Portland,ME,04101 +295687,Apple Airpods Headphones,1,150.0,2019-12-10 00:38:00,531 Ridge St, Boston,MA,02215 +295688,Apple Airpods Headphones,1,150.0,2019-12-08 11:21:00,546 Park St, Los Angeles,CA,90001 +295689,LG Washing Machine,1,600.0,2019-12-24 11:21:00,173 Lake St, San Francisco,CA,94016 +295690,Apple Airpods Headphones,1,150.0,2019-12-04 00:44:00,174 Cedar St, Seattle,WA,98101 +295691,Bose SoundSport Headphones,1,99.99,2019-12-22 18:34:00,102 Johnson St, Los Angeles,CA,90001 +295692,AA Batteries (4-pack),2,3.84,2019-12-14 01:21:00,640 Cherry St, Los Angeles,CA,90001 +295693,Wired Headphones,1,11.99,2019-12-16 16:40:00,856 12th St, Atlanta,GA,30301 +295694,Lightning Charging Cable,1,14.95,2019-12-26 18:18:00,310 Pine St, Dallas,TX,75001 +295695,Lightning Charging Cable,1,14.95,2019-12-14 06:09:00,903 Lincoln St, Boston,MA,02215 +295696,Lightning Charging Cable,1,14.95,2019-12-23 13:09:00,252 Hickory St, San Francisco,CA,94016 +295697,ThinkPad Laptop,1,999.99,2019-12-15 07:38:00,742 River St, San Francisco,CA,94016 +295698,Vareebadd Phone,1,400.0,2019-12-13 14:32:00,175 1st St, New York City,NY,10001 +295698,USB-C Charging Cable,2,11.95,2019-12-13 14:32:00,175 1st St, New York City,NY,10001 +295699,AA Batteries (4-pack),1,3.84,2019-12-17 18:32:00,162 Maple St, Seattle,WA,98101 +295700,Bose SoundSport Headphones,1,99.99,2019-12-25 19:02:00,363 Hickory St, New York City,NY,10001 +295701,Bose SoundSport Headphones,1,99.99,2019-12-28 15:05:00,751 North St, San Francisco,CA,94016 +295702,Wired Headphones,2,11.99,2019-12-21 18:50:00,628 River St, Austin,TX,73301 +295703,AA Batteries (4-pack),1,3.84,2019-12-17 12:27:00,502 Jefferson St, Austin,TX,73301 +295703,Bose SoundSport Headphones,1,99.99,2019-12-17 12:27:00,502 Jefferson St, Austin,TX,73301 +295704,Wired Headphones,1,11.99,2019-12-12 00:20:00,457 8th St, New York City,NY,10001 +295705,Wired Headphones,1,11.99,2019-12-25 10:41:00,133 Jackson St, New York City,NY,10001 +295706,AAA Batteries (4-pack),3,2.99,2019-12-12 20:08:00,599 Hill St, Los Angeles,CA,90001 +295707,Lightning Charging Cable,1,14.95,2019-12-07 11:01:00,547 Ridge St, San Francisco,CA,94016 +295708,27in FHD Monitor,1,149.99,2019-12-13 14:55:00,846 9th St, Boston,MA,02215 +295709,Bose SoundSport Headphones,1,99.99,2019-12-25 16:38:00,662 6th St, San Francisco,CA,94016 +295710,AAA Batteries (4-pack),1,2.99,2019-12-26 19:09:00,729 Pine St, Atlanta,GA,30301 +295711,AAA Batteries (4-pack),2,2.99,2019-12-04 13:43:00,489 Johnson St, San Francisco,CA,94016 +295712,Macbook Pro Laptop,1,1700.0,2019-12-10 20:02:00,331 Madison St, New York City,NY,10001 +295713,Bose SoundSport Headphones,1,99.99,2019-12-24 07:55:00,490 Spruce St, New York City,NY,10001 +295714,iPhone,1,700.0,2019-12-31 07:39:00,826 Hickory St, Los Angeles,CA,90001 +295715,USB-C Charging Cable,2,11.95,2019-12-17 18:20:00,169 Maple St, Seattle,WA,98101 +295716,20in Monitor,1,109.99,2019-12-03 23:28:00,593 9th St, Los Angeles,CA,90001 +295717,Macbook Pro Laptop,1,1700.0,2019-12-25 09:51:00,82 10th St, San Francisco,CA,94016 +295718,Lightning Charging Cable,1,14.95,2019-12-27 17:25:00,785 Chestnut St, San Francisco,CA,94016 +295719,27in FHD Monitor,1,149.99,2019-12-24 18:51:00,334 2nd St, Los Angeles,CA,90001 +295720,AA Batteries (4-pack),1,3.84,2019-12-17 22:52:00,298 Ridge St, New York City,NY,10001 +295721,34in Ultrawide Monitor,1,379.99,2019-12-08 18:22:00,915 1st St, Seattle,WA,98101 +295722,Wired Headphones,1,11.99,2019-12-08 23:46:00,380 Lake St, San Francisco,CA,94016 +295723,AA Batteries (4-pack),1,3.84,2019-12-07 13:59:00,530 Walnut St, Los Angeles,CA,90001 +295724,AA Batteries (4-pack),2,3.84,2019-12-03 14:19:00,570 Walnut St, Dallas,TX,75001 +295725,AAA Batteries (4-pack),3,2.99,2019-12-05 15:01:00,911 River St, San Francisco,CA,94016 +295726,iPhone,1,700.0,2019-12-25 14:49:00,203 Lakeview St, Boston,MA,02215 +295726,Lightning Charging Cable,1,14.95,2019-12-25 14:49:00,203 Lakeview St, Boston,MA,02215 +295727,Bose SoundSport Headphones,1,99.99,2019-12-14 14:03:00,5 Dogwood St, San Francisco,CA,94016 +295728,27in FHD Monitor,1,149.99,2019-12-21 19:21:00,366 Washington St, New York City,NY,10001 +295729,34in Ultrawide Monitor,1,379.99,2019-12-28 21:58:00,432 1st St, Dallas,TX,75001 +295730,34in Ultrawide Monitor,1,379.99,2019-12-14 20:04:00,574 West St, San Francisco,CA,94016 +295731,USB-C Charging Cable,1,11.95,2019-12-16 11:47:00,33 9th St, San Francisco,CA,94016 +295732,Apple Airpods Headphones,1,150.0,2019-12-29 18:44:00,860 Washington St, Boston,MA,02215 +295733,27in FHD Monitor,1,149.99,2019-12-20 11:31:00,228 5th St, Boston,MA,02215 +295734,AAA Batteries (4-pack),1,2.99,2019-12-25 12:38:00,453 Jackson St, Portland,OR,97035 +295735,iPhone,1,700.0,2019-12-22 18:25:00,374 Lincoln St, New York City,NY,10001 +295735,Apple Airpods Headphones,1,150.0,2019-12-22 18:25:00,374 Lincoln St, New York City,NY,10001 +295735,Wired Headphones,1,11.99,2019-12-22 18:25:00,374 Lincoln St, New York City,NY,10001 +295736,USB-C Charging Cable,2,11.95,2019-12-27 14:26:00,523 Lincoln St, San Francisco,CA,94016 +295737,iPhone,1,700.0,2019-12-19 08:51:00,966 10th St, Atlanta,GA,30301 +295737,Lightning Charging Cable,1,14.95,2019-12-19 08:51:00,966 10th St, Atlanta,GA,30301 +295738,AAA Batteries (4-pack),1,2.99,2019-12-20 18:19:00,829 7th St, Dallas,TX,75001 +295739,USB-C Charging Cable,1,11.95,2019-12-14 21:07:00,949 Wilson St, Los Angeles,CA,90001 +295740,USB-C Charging Cable,1,11.95,2019-12-01 20:36:00,102 Cedar St, New York City,NY,10001 +295741,Apple Airpods Headphones,1,150.0,2019-12-02 21:39:00,829 Johnson St, Boston,MA,02215 +295742,Apple Airpods Headphones,1,150.0,2019-12-09 23:45:00,368 Sunset St, New York City,NY,10001 +295743,USB-C Charging Cable,1,11.95,2019-12-03 11:52:00,346 South St, New York City,NY,10001 +295744,AA Batteries (4-pack),2,3.84,2019-12-19 03:54:00,579 Lake St, San Francisco,CA,94016 +295745,Flatscreen TV,1,300.0,2019-12-24 10:38:00,124 Lakeview St, New York City,NY,10001 +295746,27in FHD Monitor,1,149.99,2019-12-27 16:14:00,143 Adams St, New York City,NY,10001 +295747,AA Batteries (4-pack),3,3.84,2019-12-10 21:50:00,11 8th St, San Francisco,CA,94016 +295748,Wired Headphones,1,11.99,2019-12-07 19:39:00,45 Church St, Boston,MA,02215 +295749,Wired Headphones,2,11.99,2019-12-04 05:24:00,983 Highland St, Los Angeles,CA,90001 +295750,Bose SoundSport Headphones,1,99.99,2019-12-27 20:26:00,25 Lincoln St, San Francisco,CA,94016 +295751,AAA Batteries (4-pack),1,2.99,2019-12-29 11:03:00,922 Hickory St, Los Angeles,CA,90001 +295752,Google Phone,1,600.0,2019-12-11 12:29:00,341 Forest St, Dallas,TX,75001 +295753,34in Ultrawide Monitor,1,379.99,2019-12-25 06:26:00,365 Washington St, Dallas,TX,75001 +295753,Lightning Charging Cable,1,14.95,2019-12-25 06:26:00,365 Washington St, Dallas,TX,75001 +295754,Lightning Charging Cable,1,14.95,2019-12-07 19:26:00,502 Cherry St, Austin,TX,73301 +295755,Apple Airpods Headphones,1,150.0,2019-12-21 06:52:00,32 1st St, Boston,MA,02215 +295756,34in Ultrawide Monitor,1,379.99,2019-12-02 22:44:00,20 Wilson St, Atlanta,GA,30301 +295757,AA Batteries (4-pack),1,3.84,2019-12-05 08:59:00,819 Lake St, Portland,OR,97035 +295758,Wired Headphones,1,11.99,2019-12-26 23:42:00,910 Jackson St, New York City,NY,10001 +295759,Bose SoundSport Headphones,1,99.99,2019-12-25 06:53:00,15 Pine St, New York City,NY,10001 +295759,Wired Headphones,1,11.99,2019-12-25 06:53:00,15 Pine St, New York City,NY,10001 +295760,Bose SoundSport Headphones,1,99.99,2019-12-30 18:40:00,239 4th St, Atlanta,GA,30301 +295761,Lightning Charging Cable,1,14.95,2019-12-31 17:32:00,79 Chestnut St, Dallas,TX,75001 +295762,iPhone,1,700.0,2019-12-04 08:16:00,342 9th St, New York City,NY,10001 +295763,27in FHD Monitor,1,149.99,2019-12-18 13:15:00,594 4th St, Los Angeles,CA,90001 +295764,Lightning Charging Cable,1,14.95,2019-12-01 14:44:00,734 Hill St, New York City,NY,10001 +295765,Wired Headphones,1,11.99,2019-12-08 20:22:00,918 4th St, Seattle,WA,98101 +295766,Lightning Charging Cable,1,14.95,2019-12-17 22:58:00,795 8th St, Seattle,WA,98101 +295767,AAA Batteries (4-pack),1,2.99,2019-12-21 13:00:00,891 7th St, New York City,NY,10001 +295768,AAA Batteries (4-pack),2,2.99,2019-12-22 22:36:00,98 Johnson St, New York City,NY,10001 +295769,Bose SoundSport Headphones,1,99.99,2019-12-27 19:44:00,309 6th St, San Francisco,CA,94016 +295770,Bose SoundSport Headphones,1,99.99,2019-12-28 10:27:00,307 South St, San Francisco,CA,94016 +295771,AAA Batteries (4-pack),1,2.99,2019-12-23 12:10:00,352 Meadow St, San Francisco,CA,94016 +295772,Lightning Charging Cable,1,14.95,2019-12-17 10:24:00,44 Main St, Atlanta,GA,30301 +295773,Apple Airpods Headphones,1,150.0,2019-12-07 20:09:00,632 Cherry St, Los Angeles,CA,90001 +295774,Bose SoundSport Headphones,1,99.99,2019-12-31 11:00:00,196 Wilson St, Los Angeles,CA,90001 +295775,Google Phone,1,600.0,2019-12-04 15:02:00,439 Jefferson St, Dallas,TX,75001 +295776,USB-C Charging Cable,1,11.95,2019-12-22 20:23:00,552 Hill St, Atlanta,GA,30301 +295777,AAA Batteries (4-pack),1,2.99,2019-12-09 19:47:00,598 14th St, Atlanta,GA,30301 +295778,AA Batteries (4-pack),1,3.84,2019-12-08 21:09:00,820 Adams St, San Francisco,CA,94016 +295779,Wired Headphones,1,11.99,2019-12-25 15:40:00,201 Madison St, Los Angeles,CA,90001 +295780,USB-C Charging Cable,1,11.95,2019-12-26 00:08:00,864 Hickory St, Boston,MA,02215 +295781,USB-C Charging Cable,1,11.95,2019-12-08 12:32:00,413 Forest St, Boston,MA,02215 +295782,34in Ultrawide Monitor,1,379.99,2019-12-19 20:06:00,544 South St, Dallas,TX,75001 +295783,Vareebadd Phone,1,400.0,2019-12-06 12:41:00,87 5th St, San Francisco,CA,94016 +295783,USB-C Charging Cable,1,11.95,2019-12-06 12:41:00,87 5th St, San Francisco,CA,94016 +295784,USB-C Charging Cable,1,11.95,2019-12-31 13:04:00,935 Jackson St, Seattle,WA,98101 +295785,Bose SoundSport Headphones,1,99.99,2019-12-09 20:35:00,801 West St, Boston,MA,02215 +295786,USB-C Charging Cable,1,11.95,2019-12-24 10:27:00,859 12th St, Atlanta,GA,30301 +295786,Apple Airpods Headphones,1,150.0,2019-12-24 10:27:00,859 12th St, Atlanta,GA,30301 +295787,USB-C Charging Cable,1,11.95,2019-12-28 21:03:00,458 Elm St, Atlanta,GA,30301 +295788,AA Batteries (4-pack),1,3.84,2019-12-28 20:30:00,885 Lincoln St, Los Angeles,CA,90001 +295789,Lightning Charging Cable,1,14.95,2019-12-05 15:09:00,157 Main St, Austin,TX,73301 +295790,Lightning Charging Cable,1,14.95,2019-12-05 19:20:00,420 Center St, Los Angeles,CA,90001 +295791,USB-C Charging Cable,1,11.95,2019-12-14 10:22:00,286 North St, New York City,NY,10001 +295792,Lightning Charging Cable,1,14.95,2019-12-20 09:46:00,5 11th St, San Francisco,CA,94016 +295793,Google Phone,1,600.0,2019-12-15 11:26:00,275 Jackson St, San Francisco,CA,94016 +295793,USB-C Charging Cable,1,11.95,2019-12-15 11:26:00,275 Jackson St, San Francisco,CA,94016 +295794,27in 4K Gaming Monitor,1,389.99,2019-12-20 15:43:00,796 Chestnut St, Boston,MA,02215 +295795,Apple Airpods Headphones,1,150.0,2019-12-08 20:01:00,177 Walnut St, Los Angeles,CA,90001 +295796,Lightning Charging Cable,1,14.95,2019-12-13 21:11:00,677 Lakeview St, Seattle,WA,98101 +295797,Wired Headphones,1,11.99,2019-12-16 09:23:00,163 Washington St, Portland,ME,04101 +295798,Wired Headphones,1,11.99,2019-12-05 12:10:00,372 Chestnut St, Austin,TX,73301 +295799,AAA Batteries (4-pack),1,2.99,2019-12-22 08:02:00,236 Elm St, Los Angeles,CA,90001 +295800,AAA Batteries (4-pack),1,2.99,2019-12-29 10:07:00,140 10th St, Atlanta,GA,30301 +295801,Lightning Charging Cable,1,14.95,2019-12-19 12:57:00,943 Johnson St, San Francisco,CA,94016 +295802,34in Ultrawide Monitor,1,379.99,2019-12-11 19:45:00,838 Ridge St, San Francisco,CA,94016 +295803,Lightning Charging Cable,1,14.95,2019-12-24 10:39:00,513 Maple St, Los Angeles,CA,90001 +295804,Apple Airpods Headphones,1,150.0,2019-12-20 02:31:00,705 4th St, Los Angeles,CA,90001 +295805,Wired Headphones,1,11.99,2019-12-06 14:55:00,528 Willow St, New York City,NY,10001 +295806,Lightning Charging Cable,1,14.95,2019-12-01 08:16:00,323 Forest St, Dallas,TX,75001 +295807,20in Monitor,1,109.99,2019-12-23 10:59:00,286 Lincoln St, Los Angeles,CA,90001 +295808,AAA Batteries (4-pack),1,2.99,2019-12-21 10:45:00,961 Jackson St, San Francisco,CA,94016 +295809,27in FHD Monitor,1,149.99,2019-12-28 12:33:00,602 Ridge St, San Francisco,CA,94016 +295810,Lightning Charging Cable,1,14.95,2019-12-17 08:45:00,499 13th St, San Francisco,CA,94016 +295811,AAA Batteries (4-pack),1,2.99,2019-12-23 11:59:00,792 7th St, New York City,NY,10001 +295812,AA Batteries (4-pack),1,3.84,2019-12-23 14:58:00,359 12th St, Seattle,WA,98101 +295813,Bose SoundSport Headphones,1,99.99,2019-12-11 21:07:00,901 Madison St, New York City,NY,10001 +295814,AA Batteries (4-pack),3,3.84,2019-12-24 08:29:00,987 Cherry St, Los Angeles,CA,90001 +295815,Lightning Charging Cable,1,14.95,2019-12-28 18:44:00,464 Willow St, Boston,MA,02215 +295816,USB-C Charging Cable,1,11.95,2019-12-21 19:28:00,253 Jefferson St, Atlanta,GA,30301 +295817,USB-C Charging Cable,1,11.95,2019-12-19 06:07:00,963 Washington St, Austin,TX,73301 +295817,20in Monitor,1,109.99,2019-12-19 06:07:00,963 Washington St, Austin,TX,73301 +295818,Wired Headphones,1,11.99,2019-12-07 16:28:00,725 Wilson St, Boston,MA,02215 +295819,Lightning Charging Cable,1,14.95,2019-12-23 12:11:00,138 Highland St, Portland,OR,97035 +295820,Bose SoundSport Headphones,1,99.99,2019-12-13 09:42:00,51 Highland St, San Francisco,CA,94016 +295821,Bose SoundSport Headphones,1,99.99,2019-12-29 14:16:00,65 Center St, Boston,MA,02215 +295822,Google Phone,1,600.0,2019-12-04 13:53:00,307 Wilson St, San Francisco,CA,94016 +295822,Wired Headphones,1,11.99,2019-12-04 13:53:00,307 Wilson St, San Francisco,CA,94016 +295823,iPhone,1,700.0,2019-12-10 02:12:00,852 Maple St, Austin,TX,73301 +295824,Wired Headphones,1,11.99,2019-12-29 15:45:00,611 North St, New York City,NY,10001 +295825,Apple Airpods Headphones,1,150.0,2019-12-17 16:13:00,189 Pine St, Atlanta,GA,30301 +295826,USB-C Charging Cable,1,11.95,2019-12-07 14:18:00,765 Washington St, San Francisco,CA,94016 +295827,Bose SoundSport Headphones,1,99.99,2019-12-01 18:25:00,486 4th St, Los Angeles,CA,90001 +295828,USB-C Charging Cable,1,11.95,2019-12-13 18:56:00,984 Chestnut St, San Francisco,CA,94016 +295829,Google Phone,1,600.0,2019-12-27 13:07:00,904 13th St, Atlanta,GA,30301 +295829,USB-C Charging Cable,1,11.95,2019-12-27 13:07:00,904 13th St, Atlanta,GA,30301 +295830,Bose SoundSport Headphones,1,99.99,2019-12-18 14:52:00,515 Main St, New York City,NY,10001 +295831,27in 4K Gaming Monitor,1,389.99,2019-12-19 14:28:00,335 Chestnut St, Dallas,TX,75001 +295832,AA Batteries (4-pack),2,3.84,2019-12-21 15:52:00,972 Sunset St, Boston,MA,02215 +295833,USB-C Charging Cable,1,11.95,2019-12-28 21:48:00,673 Church St, Atlanta,GA,30301 +295834,Google Phone,1,600.0,2019-12-16 19:45:00,847 Lakeview St, San Francisco,CA,94016 +295835,USB-C Charging Cable,1,11.95,2019-12-24 15:34:00,892 Adams St, Austin,TX,73301 +295836,Lightning Charging Cable,1,14.95,2019-12-15 17:49:00,686 Cedar St, San Francisco,CA,94016 +295837,Bose SoundSport Headphones,1,99.99,2019-12-30 22:22:00,654 Highland St, Los Angeles,CA,90001 +295838,34in Ultrawide Monitor,1,379.99,2019-12-14 22:57:00,321 8th St, San Francisco,CA,94016 +295839,Apple Airpods Headphones,1,150.0,2019-12-23 12:28:00,340 Lakeview St, Seattle,WA,98101 +295840,27in 4K Gaming Monitor,1,389.99,2019-12-07 22:52:00,442 10th St, Los Angeles,CA,90001 +295841,Wired Headphones,1,11.99,2019-12-01 15:29:00,610 Madison St, Atlanta,GA,30301 +295842,Apple Airpods Headphones,1,150.0,2019-12-03 12:44:00,50 5th St, Los Angeles,CA,90001 +295843,Bose SoundSport Headphones,1,99.99,2019-12-19 14:02:00,700 West St, San Francisco,CA,94016 +295844,AA Batteries (4-pack),1,3.84,2019-12-31 17:51:00,663 12th St, Atlanta,GA,30301 +295845,Lightning Charging Cable,1,14.95,2019-12-20 09:53:00,955 Sunset St, San Francisco,CA,94016 +295846,Flatscreen TV,1,300.0,2019-12-27 19:22:00,453 Johnson St, Atlanta,GA,30301 +295847,34in Ultrawide Monitor,1,379.99,2019-12-13 15:56:00,40 Madison St, Dallas,TX,75001 +295848,Lightning Charging Cable,1,14.95,2019-12-23 19:25:00,675 Chestnut St, San Francisco,CA,94016 +295849,Wired Headphones,2,11.99,2019-12-24 14:42:00,121 2nd St, New York City,NY,10001 +295850,USB-C Charging Cable,1,11.95,2019-12-29 15:54:00,480 1st St, Los Angeles,CA,90001 +295851,iPhone,1,700.0,2019-12-11 17:08:00,197 2nd St, Boston,MA,02215 +295852,ThinkPad Laptop,1,999.99,2019-12-24 20:52:00,639 Sunset St, Los Angeles,CA,90001 +295853,Wired Headphones,1,11.99,2019-12-05 16:54:00,982 Cedar St, New York City,NY,10001 +295854,iPhone,1,700.0,2019-12-29 10:35:00,183 Hickory St, Austin,TX,73301 +295855,20in Monitor,1,109.99,2019-12-12 17:43:00,584 9th St, Boston,MA,02215 +295856,USB-C Charging Cable,1,11.95,2019-12-24 10:37:00,214 7th St, Boston,MA,02215 +295857,USB-C Charging Cable,1,11.95,2019-12-30 21:42:00,984 Jefferson St, Portland,OR,97035 +295858,AAA Batteries (4-pack),1,2.99,2019-12-08 00:13:00,218 7th St, Dallas,TX,75001 +295859,USB-C Charging Cable,1,11.95,2019-12-29 10:53:00,588 Washington St, Los Angeles,CA,90001 +295860,USB-C Charging Cable,1,11.95,2019-12-05 15:17:00,227 Cherry St, New York City,NY,10001 +295861,Lightning Charging Cable,1,14.95,2019-12-01 12:59:00,510 Sunset St, New York City,NY,10001 +295862,AAA Batteries (4-pack),1,2.99,2019-12-03 14:22:00,654 12th St, Portland,ME,04101 +295863,AA Batteries (4-pack),1,3.84,2019-12-12 11:14:00,736 Ridge St, Atlanta,GA,30301 +295864,27in 4K Gaming Monitor,1,389.99,2019-12-20 20:02:00,434 4th St, Austin,TX,73301 +295865,Bose SoundSport Headphones,1,99.99,2019-12-03 15:18:00,92 2nd St, Los Angeles,CA,90001 +295866,Wired Headphones,1,11.99,2019-12-06 13:57:00,281 West St, Los Angeles,CA,90001 +295867,Wired Headphones,1,11.99,2019-12-27 21:16:00,943 Cedar St, San Francisco,CA,94016 +295868,USB-C Charging Cable,1,11.95,2019-12-28 20:55:00,547 12th St, Boston,MA,02215 +295869,Lightning Charging Cable,1,14.95,2019-12-16 18:46:00,4 Main St, Los Angeles,CA,90001 +295870,Lightning Charging Cable,1,14.95,2019-12-09 17:01:00,955 13th St, San Francisco,CA,94016 +295871,Macbook Pro Laptop,1,1700.0,2019-12-28 11:19:00,661 Park St, Dallas,TX,75001 +295872,34in Ultrawide Monitor,1,379.99,2019-12-14 10:49:00,845 Forest St, Los Angeles,CA,90001 +295873,Google Phone,1,600.0,2019-12-17 11:50:00,919 Chestnut St, New York City,NY,10001 +295874,Wired Headphones,1,11.99,2019-12-15 08:31:00,78 Sunset St, San Francisco,CA,94016 +295875,Lightning Charging Cable,1,14.95,2019-12-11 16:54:00,898 Jefferson St, Los Angeles,CA,90001 +295876,AA Batteries (4-pack),1,3.84,2019-12-08 19:00:00,646 12th St, Atlanta,GA,30301 +295877,27in FHD Monitor,1,149.99,2019-12-31 15:27:00,721 1st St, Los Angeles,CA,90001 +295878,USB-C Charging Cable,1,11.95,2019-12-14 20:05:00,294 10th St, Los Angeles,CA,90001 +295879,34in Ultrawide Monitor,1,379.99,2019-12-24 11:54:00,893 Park St, Boston,MA,02215 +295880,AA Batteries (4-pack),1,3.84,2019-12-13 17:38:00,900 Madison St, San Francisco,CA,94016 +295881,USB-C Charging Cable,1,11.95,2019-12-02 18:36:00,316 River St, San Francisco,CA,94016 +295882,Wired Headphones,1,11.99,2019-12-20 18:14:00,301 Jackson St, Austin,TX,73301 +295883,27in 4K Gaming Monitor,1,389.99,2019-12-26 08:48:00,305 North St, New York City,NY,10001 +295884,AAA Batteries (4-pack),1,2.99,2019-12-28 18:49:00,198 Walnut St, San Francisco,CA,94016 +295885,iPhone,1,700.0,2019-12-20 13:47:00,223 5th St, Dallas,TX,75001 +295886,Wired Headphones,1,11.99,2019-12-27 08:59:00,352 2nd St, Los Angeles,CA,90001 +295887,Wired Headphones,1,11.99,2019-12-24 18:37:00,827 Lake St, Seattle,WA,98101 +295888,Lightning Charging Cable,1,14.95,2019-12-31 14:42:00,628 Church St, Los Angeles,CA,90001 +295889,USB-C Charging Cable,1,11.95,2019-12-24 17:56:00,300 Cherry St, New York City,NY,10001 +295890,ThinkPad Laptop,1,999.99,2019-12-05 11:59:00,254 Elm St, San Francisco,CA,94016 +295891,27in 4K Gaming Monitor,1,389.99,2019-12-05 13:02:00,854 North St, Atlanta,GA,30301 +295892,USB-C Charging Cable,1,11.95,2019-12-28 13:31:00,534 Walnut St, Portland,OR,97035 +295893,AAA Batteries (4-pack),1,2.99,2019-12-25 23:02:00,517 13th St, San Francisco,CA,94016 +295894,27in FHD Monitor,1,149.99,2019-12-26 13:24:00,9 Center St, Los Angeles,CA,90001 +295895,AAA Batteries (4-pack),1,2.99,2019-12-29 00:18:00,539 Forest St, San Francisco,CA,94016 +295896,Flatscreen TV,1,300.0,2019-12-24 18:21:00,929 Dogwood St, Los Angeles,CA,90001 +295897,27in FHD Monitor,1,149.99,2019-12-08 11:55:00,478 13th St, Portland,OR,97035 +295898,AA Batteries (4-pack),1,3.84,2019-12-21 11:28:00,375 Spruce St, San Francisco,CA,94016 +295899,USB-C Charging Cable,1,11.95,2019-12-13 16:44:00,722 Spruce St, Seattle,WA,98101 +295900,AA Batteries (4-pack),1,3.84,2019-12-27 18:56:00,283 Washington St, Boston,MA,02215 +295901,20in Monitor,1,109.99,2019-12-05 20:02:00,67 12th St, San Francisco,CA,94016 +295902,AA Batteries (4-pack),2,3.84,2019-12-26 21:54:00,160 Maple St, Austin,TX,73301 +295903,AA Batteries (4-pack),1,3.84,2019-12-21 13:40:00,337 12th St, Dallas,TX,75001 +295904,Wired Headphones,1,11.99,2019-12-19 17:30:00,647 Wilson St, Atlanta,GA,30301 +295905,AA Batteries (4-pack),2,3.84,2019-12-06 23:48:00,345 Walnut St, Los Angeles,CA,90001 +295906,27in FHD Monitor,1,149.99,2019-12-11 20:55:00,773 7th St, Atlanta,GA,30301 +295907,AA Batteries (4-pack),2,3.84,2019-12-18 08:43:00,672 Dogwood St, Austin,TX,73301 +295908,20in Monitor,1,109.99,2019-12-17 10:28:00,342 Adams St, New York City,NY,10001 +295909,AA Batteries (4-pack),1,3.84,2019-12-27 17:29:00,360 Wilson St, Boston,MA,02215 +295910,Lightning Charging Cable,1,14.95,2019-12-27 22:46:00,6 Wilson St, Seattle,WA,98101 +295911,Apple Airpods Headphones,1,150.0,2019-12-10 22:14:00,152 Spruce St, Los Angeles,CA,90001 +295912,AA Batteries (4-pack),1,3.84,2019-12-01 13:53:00,282 Lincoln St, San Francisco,CA,94016 +295913,Apple Airpods Headphones,1,150.0,2019-12-07 08:42:00,13 Pine St, New York City,NY,10001 +295914,AAA Batteries (4-pack),1,2.99,2019-12-13 13:48:00,413 Center St, Austin,TX,73301 +295915,Google Phone,1,600.0,2019-12-23 19:04:00,535 Meadow St, New York City,NY,10001 +295916,Lightning Charging Cable,1,14.95,2019-12-02 11:58:00,965 Willow St, Atlanta,GA,30301 +295917,27in FHD Monitor,1,149.99,2019-12-16 12:57:00,569 2nd St, San Francisco,CA,94016 +295918,AA Batteries (4-pack),1,3.84,2019-12-10 07:01:00,92 River St, New York City,NY,10001 +295918,AAA Batteries (4-pack),1,2.99,2019-12-10 07:01:00,92 River St, New York City,NY,10001 +295919,Bose SoundSport Headphones,1,99.99,2019-12-19 20:46:00,478 Maple St, San Francisco,CA,94016 +295920,27in 4K Gaming Monitor,1,389.99,2019-12-01 19:49:00,344 6th St, New York City,NY,10001 +295921,27in FHD Monitor,1,149.99,2019-12-16 11:09:00,425 Main St, Los Angeles,CA,90001 +295922,Bose SoundSport Headphones,1,99.99,2019-12-12 19:53:00,676 Hickory St, Portland,OR,97035 +295923,Lightning Charging Cable,1,14.95,2019-12-21 13:41:00,968 8th St, Austin,TX,73301 +295924,Wired Headphones,1,11.99,2019-12-13 10:53:00,170 Hickory St, Seattle,WA,98101 +295925,AA Batteries (4-pack),1,3.84,2019-12-23 10:01:00,554 Cedar St, Dallas,TX,75001 +295926,Lightning Charging Cable,1,14.95,2019-12-21 20:31:00,372 Ridge St, San Francisco,CA,94016 +295927,Wired Headphones,1,11.99,2019-12-16 08:14:00,626 Walnut St, San Francisco,CA,94016 +295928,AAA Batteries (4-pack),1,2.99,2019-12-25 12:08:00,683 Forest St, Boston,MA,02215 +295929,Apple Airpods Headphones,1,150.0,2019-12-25 19:18:00,538 6th St, Portland,OR,97035 +295930,Wired Headphones,1,11.99,2019-12-10 19:57:00,774 Washington St, Atlanta,GA,30301 +295931,Bose SoundSport Headphones,1,99.99,2019-12-16 22:01:00,142 Madison St, San Francisco,CA,94016 +295932,Apple Airpods Headphones,1,150.0,2019-12-19 10:28:00,663 Spruce St, New York City,NY,10001 +295932,Bose SoundSport Headphones,1,99.99,2019-12-19 10:28:00,663 Spruce St, New York City,NY,10001 +295933,AAA Batteries (4-pack),1,2.99,2019-12-16 22:44:00,19 Maple St, New York City,NY,10001 +295934,27in 4K Gaming Monitor,1,389.99,2019-12-01 14:56:00,760 Ridge St, Atlanta,GA,30301 +295935,AA Batteries (4-pack),1,3.84,2019-12-10 14:32:00,606 Lakeview St, San Francisco,CA,94016 +295936,AAA Batteries (4-pack),1,2.99,2019-12-23 10:08:00,283 Highland St, Seattle,WA,98101 +295937,Lightning Charging Cable,1,14.95,2019-12-26 23:17:00,282 Willow St, Seattle,WA,98101 +295938,Lightning Charging Cable,1,14.95,2019-12-08 08:11:00,679 Hickory St, Austin,TX,73301 +295939,AA Batteries (4-pack),1,3.84,2019-12-08 20:10:00,799 Lakeview St, New York City,NY,10001 +295940,Wired Headphones,1,11.99,2019-12-07 08:48:00,441 12th St, Los Angeles,CA,90001 +295941,ThinkPad Laptop,1,999.99,2019-12-31 16:24:00,64 Dogwood St, Portland,OR,97035 +295942,Google Phone,1,600.0,2019-12-30 19:21:00,150 North St, Boston,MA,02215 +295943,AAA Batteries (4-pack),3,2.99,2019-12-04 13:32:00,701 Sunset St, Dallas,TX,75001 +295944,27in 4K Gaming Monitor,1,389.99,2019-12-29 17:04:00,175 Main St, San Francisco,CA,94016 +295945,Wired Headphones,1,11.99,2019-12-06 10:20:00,207 Sunset St, Austin,TX,73301 +295946,20in Monitor,1,109.99,2019-12-09 11:44:00,970 Lincoln St, Portland,OR,97035 +295947,AA Batteries (4-pack),1,3.84,2019-12-29 20:09:00,441 6th St, Austin,TX,73301 +295948,Macbook Pro Laptop,1,1700.0,2019-12-17 21:08:00,863 West St, San Francisco,CA,94016 +295949,Bose SoundSport Headphones,1,99.99,2019-12-17 15:29:00,603 River St, Los Angeles,CA,90001 +295950,AA Batteries (4-pack),1,3.84,2019-12-31 09:15:00,789 14th St, Boston,MA,02215 +295951,Lightning Charging Cable,1,14.95,2019-12-02 10:25:00,349 North St, Dallas,TX,75001 +295952,USB-C Charging Cable,1,11.95,2019-12-23 12:55:00,403 Dogwood St, Seattle,WA,98101 +295952,Flatscreen TV,1,300.0,2019-12-23 12:55:00,403 Dogwood St, Seattle,WA,98101 +295953,Flatscreen TV,1,300.0,2019-12-24 17:03:00,559 Church St, Dallas,TX,75001 +295954,27in FHD Monitor,1,149.99,2019-12-29 18:56:00,321 River St, Boston,MA,02215 +295955,USB-C Charging Cable,1,11.95,2019-12-30 16:25:00,357 Hickory St, Boston,MA,02215 +295956,AAA Batteries (4-pack),1,2.99,2019-12-18 19:17:00,793 Adams St, Boston,MA,02215 +295957,Lightning Charging Cable,1,14.95,2019-12-27 16:15:00,356 12th St, Los Angeles,CA,90001 +295958,AAA Batteries (4-pack),1,2.99,2019-12-04 18:36:00,485 4th St, Boston,MA,02215 +295959,AAA Batteries (4-pack),2,2.99,2019-12-27 20:53:00,198 13th St, Atlanta,GA,30301 +295960,AA Batteries (4-pack),1,3.84,2019-12-21 19:35:00,397 Forest St, San Francisco,CA,94016 +295961,AA Batteries (4-pack),2,3.84,2019-12-16 13:13:00,229 Park St, Austin,TX,73301 +295962,20in Monitor,1,109.99,2019-12-25 16:15:00,668 14th St, San Francisco,CA,94016 +295963,Macbook Pro Laptop,1,1700.0,2019-12-08 10:21:00,556 11th St, Austin,TX,73301 +295964,Bose SoundSport Headphones,1,99.99,2019-12-03 21:52:00,950 1st St, Los Angeles,CA,90001 +295965,iPhone,1,700.0,2019-12-17 10:51:00,514 Ridge St, Dallas,TX,75001 +295966,Lightning Charging Cable,1,14.95,2019-12-17 19:42:00,233 North St, San Francisco,CA,94016 +295967,AAA Batteries (4-pack),2,2.99,2019-12-12 10:09:00,283 South St, Los Angeles,CA,90001 +295968,AA Batteries (4-pack),1,3.84,2019-12-05 13:18:00,720 Center St, New York City,NY,10001 +295969,USB-C Charging Cable,1,11.95,2019-12-10 11:08:00,646 Elm St, Boston,MA,02215 +295970,AA Batteries (4-pack),1,3.84,2019-12-03 23:08:00,414 Adams St, Boston,MA,02215 +295971,AA Batteries (4-pack),2,3.84,2019-12-30 16:45:00,10 Adams St, Los Angeles,CA,90001 +295972,USB-C Charging Cable,1,11.95,2019-12-12 11:54:00,340 1st St, Los Angeles,CA,90001 +295973,AA Batteries (4-pack),1,3.84,2019-12-07 02:15:00,597 Center St, New York City,NY,10001 +295974,USB-C Charging Cable,1,11.95,2019-12-15 20:57:00,570 Cherry St, San Francisco,CA,94016 +295975,USB-C Charging Cable,1,11.95,2019-12-14 10:01:00,716 Hickory St, San Francisco,CA,94016 +295976,Bose SoundSport Headphones,1,99.99,2019-12-30 13:20:00,981 7th St, Dallas,TX,75001 +295977,Wired Headphones,1,11.99,2019-12-09 17:50:00,141 West St, Boston,MA,02215 +295978,27in FHD Monitor,1,149.99,2019-12-10 08:08:00,293 7th St, Boston,MA,02215 +295979,Bose SoundSport Headphones,1,99.99,2019-12-28 20:33:00,356 Lake St, Los Angeles,CA,90001 +295980,27in 4K Gaming Monitor,1,389.99,2019-12-19 10:53:00,934 2nd St, Boston,MA,02215 +295981,Lightning Charging Cable,1,14.95,2019-12-27 20:27:00,321 Hill St, San Francisco,CA,94016 +295982,Vareebadd Phone,1,400.0,2019-12-28 07:11:00,3 11th St, Los Angeles,CA,90001 +295983,AA Batteries (4-pack),3,3.84,2019-12-06 10:46:00,782 5th St, Los Angeles,CA,90001 +295984,Lightning Charging Cable,1,14.95,2019-12-11 22:21:00,2 6th St, New York City,NY,10001 +295985,Lightning Charging Cable,1,14.95,2019-12-10 12:56:00,269 2nd St, San Francisco,CA,94016 +295986,USB-C Charging Cable,1,11.95,2019-12-18 01:34:00,996 Meadow St, San Francisco,CA,94016 +295987,34in Ultrawide Monitor,1,379.99,2019-12-06 19:07:00,351 9th St, San Francisco,CA,94016 +295988,AA Batteries (4-pack),1,3.84,2019-12-28 11:34:00,351 Lake St, Austin,TX,73301 +295989,Lightning Charging Cable,1,14.95,2019-12-16 14:01:00,872 Johnson St, Boston,MA,02215 +295990,ThinkPad Laptop,1,999.99,2019-12-16 22:08:00,192 Chestnut St, Seattle,WA,98101 +295991,iPhone,1,700.0,2019-12-15 20:16:00,857 Center St, Boston,MA,02215 +295991,Lightning Charging Cable,1,14.95,2019-12-15 20:16:00,857 Center St, Boston,MA,02215 +295992,iPhone,1,700.0,2019-12-02 06:33:00,511 Main St, Los Angeles,CA,90001 +295993,AAA Batteries (4-pack),2,2.99,2019-12-21 12:28:00,106 Ridge St, New York City,NY,10001 +295994,Lightning Charging Cable,1,14.95,2019-12-17 18:21:00,34 River St, San Francisco,CA,94016 +295995,27in 4K Gaming Monitor,1,389.99,2019-12-12 17:30:00,968 Meadow St, Boston,MA,02215 +295996,Bose SoundSport Headphones,1,99.99,2019-12-15 22:57:00,286 7th St, Austin,TX,73301 +295997,Apple Airpods Headphones,1,150.0,2019-12-09 07:45:00,973 Pine St, Boston,MA,02215 +295998,AAA Batteries (4-pack),2,2.99,2019-12-14 10:07:00,771 Cedar St, Austin,TX,73301 +295999,Flatscreen TV,1,300.0,2019-12-27 13:36:00,884 Main St, Boston,MA,02215 +296000,USB-C Charging Cable,1,11.95,2019-12-05 18:35:00,916 Cherry St, Boston,MA,02215 +296001,Wired Headphones,1,11.99,2019-12-18 15:44:00,379 Madison St, San Francisco,CA,94016 +296002,AAA Batteries (4-pack),2,2.99,2019-12-19 11:08:00,543 Chestnut St, San Francisco,CA,94016 +296003,USB-C Charging Cable,1,11.95,2019-12-23 05:57:00,827 Center St, Los Angeles,CA,90001 +296004,Apple Airpods Headphones,1,150.0,2019-12-02 19:03:00,660 Willow St, Seattle,WA,98101 +296005,AAA Batteries (4-pack),2,2.99,2019-12-27 19:39:00,503 Highland St, Boston,MA,02215 +296006,USB-C Charging Cable,1,11.95,2019-12-10 18:09:00,620 Main St, San Francisco,CA,94016 +296007,Lightning Charging Cable,1,14.95,2019-12-25 00:35:00,267 North St, Seattle,WA,98101 +296008,Google Phone,1,600.0,2019-12-06 13:18:00,616 10th St, Seattle,WA,98101 +296009,USB-C Charging Cable,1,11.95,2019-12-16 09:13:00,389 Jefferson St, Seattle,WA,98101 +296010,27in 4K Gaming Monitor,1,389.99,2019-12-13 13:00:00,311 Spruce St, Boston,MA,02215 +296011,27in 4K Gaming Monitor,1,389.99,2019-12-03 23:30:00,764 Jefferson St, Portland,OR,97035 +296012,iPhone,1,700.0,2019-12-15 18:43:00,689 Pine St, Seattle,WA,98101 +296013,AAA Batteries (4-pack),1,2.99,2019-12-07 11:08:00,369 Park St, Los Angeles,CA,90001 +296014,AAA Batteries (4-pack),1,2.99,2019-12-15 19:54:00,43 8th St, Portland,OR,97035 +296015,Lightning Charging Cable,2,14.95,2019-12-30 04:17:00,902 1st St, Austin,TX,73301 +296016,Bose SoundSport Headphones,1,99.99,2019-12-16 17:09:00,543 Spruce St, New York City,NY,10001 +296017,USB-C Charging Cable,1,11.95,2019-12-30 12:10:00,374 Maple St, Boston,MA,02215 +296018,AAA Batteries (4-pack),2,2.99,2019-12-28 07:14:00,305 Dogwood St, Portland,ME,04101 +296019,Bose SoundSport Headphones,1,99.99,2019-12-14 19:26:00,600 Willow St, Austin,TX,73301 +296020,34in Ultrawide Monitor,1,379.99,2019-12-25 23:36:00,533 Chestnut St, San Francisco,CA,94016 +296021,Wired Headphones,1,11.99,2019-12-25 12:49:00,581 North St, Portland,OR,97035 +296022,Wired Headphones,1,11.99,2019-12-06 19:25:00,526 1st St, Boston,MA,02215 +296023,20in Monitor,1,109.99,2019-12-11 11:52:00,699 Walnut St, Los Angeles,CA,90001 +296024,AA Batteries (4-pack),2,3.84,2019-12-12 12:10:00,524 Jefferson St, San Francisco,CA,94016 +296025,AA Batteries (4-pack),2,3.84,2019-12-03 03:34:00,721 14th St, Atlanta,GA,30301 +296026,Apple Airpods Headphones,1,150.0,2019-12-05 09:59:00,937 Highland St, San Francisco,CA,94016 +296027,AAA Batteries (4-pack),3,2.99,2019-12-20 06:27:00,577 10th St, Los Angeles,CA,90001 +296028,Vareebadd Phone,1,400.0,2019-12-04 18:45:00,216 Maple St, Los Angeles,CA,90001 +296029,27in 4K Gaming Monitor,1,389.99,2019-12-30 20:43:00,347 Meadow St, Dallas,TX,75001 +296030,Macbook Pro Laptop,1,1700.0,2019-12-24 12:31:00,698 4th St, Portland,OR,97035 +296031,Google Phone,1,600.0,2019-12-18 20:40:00,815 Pine St, Seattle,WA,98101 +296032,Bose SoundSport Headphones,1,99.99,2019-12-20 14:37:00,54 13th St, Los Angeles,CA,90001 +296033,27in FHD Monitor,1,149.99,2019-12-03 17:58:00,920 2nd St, New York City,NY,10001 +296034,Google Phone,1,600.0,2019-12-18 18:43:00,844 Forest St, Dallas,TX,75001 +296035,Lightning Charging Cable,1,14.95,2019-12-25 19:16:00,864 Lake St, Boston,MA,02215 +296036,Wired Headphones,1,11.99,2019-12-12 00:02:00,887 Walnut St, San Francisco,CA,94016 +296037,AA Batteries (4-pack),1,3.84,2019-12-23 10:13:00,744 7th St, Dallas,TX,75001 +296038,Bose SoundSport Headphones,1,99.99,2019-12-07 20:08:00,170 8th St, Dallas,TX,75001 +296039,Wired Headphones,1,11.99,2019-12-11 13:16:00,856 Madison St, Los Angeles,CA,90001 +296040,27in FHD Monitor,1,149.99,2019-12-25 16:30:00,794 West St, Atlanta,GA,30301 +296041,Flatscreen TV,1,300.0,2019-12-27 19:49:00,495 6th St, San Francisco,CA,94016 +296042,27in FHD Monitor,1,149.99,2019-12-13 16:29:00,830 11th St, Boston,MA,02215 +296043,Lightning Charging Cable,1,14.95,2019-12-05 18:46:00,776 Johnson St, Atlanta,GA,30301 +296044,AA Batteries (4-pack),3,3.84,2019-12-26 16:50:00,74 1st St, New York City,NY,10001 +296045,34in Ultrawide Monitor,1,379.99,2019-12-22 07:03:00,262 Elm St, New York City,NY,10001 +296046,USB-C Charging Cable,1,11.95,2019-12-15 11:59:00,319 Lake St, San Francisco,CA,94016 +296047,AAA Batteries (4-pack),2,2.99,2019-12-02 18:09:00,433 4th St, Los Angeles,CA,90001 +296048,AAA Batteries (4-pack),2,2.99,2019-12-07 14:03:00,441 Meadow St, Dallas,TX,75001 +296049,27in FHD Monitor,1,149.99,2019-12-12 15:16:00,779 Adams St, Atlanta,GA,30301 +296050,USB-C Charging Cable,1,11.95,2019-12-25 19:32:00,571 Lake St, New York City,NY,10001 +296051,Wired Headphones,2,11.99,2019-12-15 14:18:00,796 6th St, New York City,NY,10001 +296052,Apple Airpods Headphones,1,150.0,2019-12-08 18:59:00,349 Maple St, San Francisco,CA,94016 +296053,34in Ultrawide Monitor,1,379.99,2019-12-05 18:59:00,538 8th St, Boston,MA,02215 +296054,ThinkPad Laptop,1,999.99,2019-12-03 11:12:00,788 7th St, Portland,OR,97035 +296055,Apple Airpods Headphones,1,150.0,2019-12-25 04:56:00,266 8th St, Austin,TX,73301 +296056,Google Phone,1,600.0,2019-12-12 21:06:00,803 Highland St, Portland,OR,97035 +296057,AAA Batteries (4-pack),1,2.99,2019-12-05 12:41:00,487 Willow St, Atlanta,GA,30301 +296058,USB-C Charging Cable,1,11.95,2019-12-27 15:09:00,864 14th St, Boston,MA,02215 +296059,USB-C Charging Cable,1,11.95,2019-12-20 18:30:00,998 North St, New York City,NY,10001 +296060,iPhone,1,700.0,2019-12-23 18:50:00,951 Lakeview St, San Francisco,CA,94016 +296061,Apple Airpods Headphones,1,150.0,2019-12-09 20:45:00,519 Hickory St, Los Angeles,CA,90001 +296062,27in FHD Monitor,1,149.99,2019-12-09 16:32:00,48 Adams St, Boston,MA,02215 +296063,Apple Airpods Headphones,1,150.0,2019-12-13 08:35:00,852 Wilson St, Boston,MA,02215 +296064,USB-C Charging Cable,1,11.95,2019-12-11 16:35:00,370 Lakeview St, Atlanta,GA,30301 +296065,Lightning Charging Cable,1,14.95,2019-12-26 18:05:00,80 Chestnut St, Los Angeles,CA,90001 +296066,27in 4K Gaming Monitor,1,389.99,2019-12-05 11:12:00,243 Maple St, San Francisco,CA,94016 +296067,Apple Airpods Headphones,1,150.0,2019-12-29 06:21:00,858 Hickory St, Boston,MA,02215 +296068,Macbook Pro Laptop,1,1700.0,2019-12-08 22:10:00,897 Jackson St, San Francisco,CA,94016 +296069,AAA Batteries (4-pack),1,2.99,2019-12-22 04:48:00,465 Lakeview St, Portland,OR,97035 +296070,Lightning Charging Cable,1,14.95,2019-12-05 11:30:00,181 Pine St, Seattle,WA,98101 +296071,27in FHD Monitor,1,149.99,2019-12-23 09:56:00,926 Adams St, New York City,NY,10001 +296072,USB-C Charging Cable,1,11.95,2019-12-25 21:29:00,271 Spruce St, Seattle,WA,98101 +296073,Lightning Charging Cable,1,14.95,2019-12-27 07:36:00,774 Madison St, Atlanta,GA,30301 +296074,Lightning Charging Cable,1,14.95,2019-12-12 22:54:00,115 Johnson St, Portland,OR,97035 +296075,AAA Batteries (4-pack),1,2.99,2019-12-11 12:47:00,284 Jefferson St, Los Angeles,CA,90001 +296076,Macbook Pro Laptop,1,1700.0,2019-12-03 15:19:00,679 Chestnut St, San Francisco,CA,94016 +296077,34in Ultrawide Monitor,1,379.99,2019-12-27 09:09:00,941 Park St, Los Angeles,CA,90001 +296078,Flatscreen TV,1,300.0,2019-12-27 14:09:00,383 Church St, Seattle,WA,98101 +296079,Wired Headphones,1,11.99,2019-12-02 21:40:00,964 Hill St, Atlanta,GA,30301 +296080,USB-C Charging Cable,2,11.95,2019-12-22 13:53:00,805 North St, San Francisco,CA,94016 +296081,Flatscreen TV,1,300.0,2019-12-30 16:52:00,970 Sunset St, Austin,TX,73301 +296082,27in 4K Gaming Monitor,1,389.99,2019-12-21 08:38:00,38 1st St, San Francisco,CA,94016 +296083,iPhone,1,700.0,2019-12-30 20:04:00,354 Lakeview St, San Francisco,CA,94016 +296084,27in 4K Gaming Monitor,1,389.99,2019-12-05 14:04:00,533 Hickory St, San Francisco,CA,94016 +296085,Google Phone,1,600.0,2019-12-24 17:25:00,482 North St, New York City,NY,10001 +296086,27in 4K Gaming Monitor,1,389.99,2019-12-31 20:18:00,305 Jefferson St, Austin,TX,73301 +296087,AAA Batteries (4-pack),1,2.99,2019-12-26 01:06:00,654 Wilson St, San Francisco,CA,94016 +296088,iPhone,1,700.0,2019-12-16 20:32:00,622 4th St, Boston,MA,02215 +296089,Lightning Charging Cable,1,14.95,2019-12-16 13:05:00,949 North St, Portland,OR,97035 +296090,USB-C Charging Cable,1,11.95,2019-12-17 16:31:00,965 13th St, Los Angeles,CA,90001 +296091,Apple Airpods Headphones,1,150.0,2019-12-28 21:43:00,10 Maple St, Los Angeles,CA,90001 +296092,34in Ultrawide Monitor,1,379.99,2019-12-11 11:07:00,546 Meadow St, Boston,MA,02215 +296093,Wired Headphones,1,11.99,2019-12-15 11:13:00,693 10th St, San Francisco,CA,94016 +296094,iPhone,1,700.0,2019-12-04 01:44:00,376 4th St, Atlanta,GA,30301 +296095,AA Batteries (4-pack),2,3.84,2019-12-06 18:05:00,613 Forest St, Los Angeles,CA,90001 +296096,Wired Headphones,2,11.99,2019-12-14 12:43:00,381 North St, Los Angeles,CA,90001 +296097,27in FHD Monitor,1,149.99,2019-12-12 15:49:00,111 Adams St, San Francisco,CA,94016 +296098,Apple Airpods Headphones,1,150.0,2019-12-28 17:37:00,126 7th St, Los Angeles,CA,90001 +296099,AAA Batteries (4-pack),1,2.99,2019-12-01 09:12:00,376 11th St, Los Angeles,CA,90001 +296100,Wired Headphones,1,11.99,2019-12-27 10:05:00,101 12th St, Seattle,WA,98101 +296101,Lightning Charging Cable,1,14.95,2019-12-26 18:36:00,598 Maple St, New York City,NY,10001 +296102,27in 4K Gaming Monitor,1,389.99,2019-12-22 16:38:00,741 4th St, San Francisco,CA,94016 +296103,Flatscreen TV,1,300.0,2019-12-03 19:59:00,942 Madison St, San Francisco,CA,94016 +296104,Bose SoundSport Headphones,1,99.99,2019-12-10 18:32:00,111 Elm St, Los Angeles,CA,90001 +296105,Lightning Charging Cable,1,14.95,2019-12-29 17:57:00,134 Dogwood St, San Francisco,CA,94016 +296106,Wired Headphones,3,11.99,2019-12-18 13:04:00,755 Adams St, New York City,NY,10001 +296107,Lightning Charging Cable,1,14.95,2019-12-13 10:03:00,235 West St, New York City,NY,10001 +296108,Apple Airpods Headphones,1,150.0,2019-12-15 21:01:00,621 7th St, San Francisco,CA,94016 +296109,AA Batteries (4-pack),1,3.84,2019-12-05 20:27:00,15 Jefferson St, New York City,NY,10001 +296110,iPhone,1,700.0,2019-12-17 15:47:00,621 Adams St, San Francisco,CA,94016 +296111,Apple Airpods Headphones,1,150.0,2019-12-22 11:56:00,917 Madison St, San Francisco,CA,94016 +296112,34in Ultrawide Monitor,1,379.99,2019-12-11 20:51:00,814 Walnut St, Los Angeles,CA,90001 +296113,AA Batteries (4-pack),1,3.84,2019-12-25 04:31:00,49 Wilson St, San Francisco,CA,94016 +296114,34in Ultrawide Monitor,1,379.99,2019-12-07 17:35:00,983 Jefferson St, Los Angeles,CA,90001 +296115,AAA Batteries (4-pack),1,2.99,2019-12-03 08:38:00,457 Cedar St, New York City,NY,10001 +296116,Bose SoundSport Headphones,1,99.99,2019-12-23 10:31:00,22 7th St, Dallas,TX,75001 +296117,AAA Batteries (4-pack),1,2.99,2019-12-02 09:53:00,223 6th St, Austin,TX,73301 +296118,AA Batteries (4-pack),1,3.84,2019-12-24 16:47:00,786 Lincoln St, Boston,MA,02215 +296119,AAA Batteries (4-pack),1,2.99,2019-12-06 22:43:00,585 10th St, New York City,NY,10001 +296120,USB-C Charging Cable,1,11.95,2019-12-09 17:46:00,83 Adams St, San Francisco,CA,94016 +296121,USB-C Charging Cable,1,11.95,2019-12-22 08:42:00,585 Chestnut St, New York City,NY,10001 +296122,USB-C Charging Cable,1,11.95,2019-12-13 03:11:00,602 2nd St, San Francisco,CA,94016 +296123,27in 4K Gaming Monitor,1,389.99,2019-12-11 13:24:00,927 Sunset St, Seattle,WA,98101 +296124,Lightning Charging Cable,1,14.95,2019-12-07 08:38:00,213 River St, New York City,NY,10001 +296125,27in FHD Monitor,1,149.99,2019-12-26 19:16:00,42 7th St, New York City,NY,10001 +296126,Macbook Pro Laptop,1,1700.0,2019-12-31 18:45:00,15 Main St, Seattle,WA,98101 +296127,USB-C Charging Cable,1,11.95,2019-12-18 12:40:00,426 Meadow St, Portland,ME,04101 +296128,AAA Batteries (4-pack),2,2.99,2019-12-24 04:18:00,148 Sunset St, Austin,TX,73301 +296129,Apple Airpods Headphones,1,150.0,2019-12-17 17:14:00,545 Lake St, Austin,TX,73301 +296130,27in FHD Monitor,1,149.99,2019-12-14 09:59:00,909 5th St, New York City,NY,10001 +296131,Bose SoundSport Headphones,1,99.99,2019-12-25 21:02:00,68 Willow St, Seattle,WA,98101 +296132,20in Monitor,1,109.99,2019-12-02 20:21:00,219 Jefferson St, Portland,OR,97035 +296133,AA Batteries (4-pack),1,3.84,2019-12-29 19:31:00,534 Center St, Boston,MA,02215 +296134,AAA Batteries (4-pack),1,2.99,2019-12-16 10:29:00,545 Willow St, Portland,OR,97035 +296135,AA Batteries (4-pack),1,3.84,2019-12-06 19:18:00,298 Lincoln St, Boston,MA,02215 +296135,Lightning Charging Cable,1,14.95,2019-12-06 19:18:00,298 Lincoln St, Boston,MA,02215 +296136,USB-C Charging Cable,1,11.95,2019-12-11 04:19:00,867 Church St, New York City,NY,10001 +296137,Wired Headphones,1,11.99,2019-12-23 13:31:00,502 Forest St, Dallas,TX,75001 +296138,34in Ultrawide Monitor,1,379.99,2019-12-19 13:19:00,235 Adams St, San Francisco,CA,94016 +296139,Bose SoundSport Headphones,1,99.99,2019-12-29 02:40:00,440 Elm St, New York City,NY,10001 +296140,Macbook Pro Laptop,1,1700.0,2019-12-21 17:48:00,678 Wilson St, Los Angeles,CA,90001 +296141,Lightning Charging Cable,1,14.95,2019-12-09 18:21:00,787 Elm St, San Francisco,CA,94016 +296141,Bose SoundSport Headphones,1,99.99,2019-12-09 18:21:00,787 Elm St, San Francisco,CA,94016 +296142,Google Phone,1,600.0,2019-12-07 18:22:00,388 9th St, Seattle,WA,98101 +296143,AAA Batteries (4-pack),1,2.99,2019-12-05 20:25:00,62 Highland St, Los Angeles,CA,90001 +296144,iPhone,1,700.0,2019-12-16 21:21:00,897 Main St, New York City,NY,10001 +296144,Apple Airpods Headphones,1,150.0,2019-12-16 21:21:00,897 Main St, New York City,NY,10001 +296145,27in 4K Gaming Monitor,1,389.99,2019-12-19 18:09:00,995 13th St, Boston,MA,02215 +296146,USB-C Charging Cable,1,11.95,2019-12-06 13:01:00,996 Elm St, Portland,OR,97035 +296147,Google Phone,1,600.0,2019-12-07 09:04:00,171 Adams St, Los Angeles,CA,90001 +296148,27in FHD Monitor,1,149.99,2019-12-01 23:00:00,662 Highland St, New York City,NY,10001 +296149,AAA Batteries (4-pack),2,2.99,2019-12-08 23:12:00,926 5th St, Seattle,WA,98101 +296150,Apple Airpods Headphones,1,150.0,2019-12-04 14:00:00,205 Cherry St, New York City,NY,10001 +296151,AA Batteries (4-pack),1,3.84,2019-12-28 13:13:00,19 Sunset St, New York City,NY,10001 +296152,USB-C Charging Cable,1,11.95,2019-12-20 19:21:00,879 River St, Seattle,WA,98101 +296152,Lightning Charging Cable,1,14.95,2019-12-20 19:21:00,879 River St, Seattle,WA,98101 +296153,Apple Airpods Headphones,1,150.0,2019-12-11 21:25:00,205 Elm St, Los Angeles,CA,90001 +296154,Lightning Charging Cable,1,14.95,2019-12-08 20:30:00,150 Ridge St, Austin,TX,73301 +296155,AA Batteries (4-pack),1,3.84,2019-12-25 10:59:00,423 Johnson St, Los Angeles,CA,90001 +296156,Lightning Charging Cable,1,14.95,2019-12-10 20:30:00,150 Lake St, Austin,TX,73301 +296157,AAA Batteries (4-pack),1,2.99,2019-12-15 11:41:00,46 12th St, Boston,MA,02215 +296158,USB-C Charging Cable,1,11.95,2019-12-02 22:57:00,251 River St, Portland,ME,04101 +296159,Wired Headphones,1,11.99,2019-12-08 16:48:00,480 Hickory St, Los Angeles,CA,90001 +296160,Wired Headphones,1,11.99,2019-12-09 14:18:00,348 Willow St, New York City,NY,10001 +296161,AAA Batteries (4-pack),1,2.99,2019-12-13 09:53:00,638 1st St, New York City,NY,10001 +296162,Lightning Charging Cable,1,14.95,2019-12-31 09:36:00,647 Jackson St, San Francisco,CA,94016 +296163,27in FHD Monitor,1,149.99,2019-12-12 17:23:00,971 7th St, Dallas,TX,75001 +296164,Lightning Charging Cable,1,14.95,2019-12-01 10:12:00,856 Hill St, Atlanta,GA,30301 +296165,AA Batteries (4-pack),2,3.84,2019-12-09 16:44:00,429 Madison St, Los Angeles,CA,90001 +296166,Wired Headphones,1,11.99,2019-12-24 12:00:00,196 Washington St, Portland,OR,97035 +296167,AAA Batteries (4-pack),4,2.99,2019-12-22 10:18:00,298 9th St, Los Angeles,CA,90001 +296168,ThinkPad Laptop,1,999.99,2019-12-29 07:26:00,810 Lincoln St, Boston,MA,02215 +296169,iPhone,1,700.0,2019-12-10 22:31:00,111 Hickory St, Seattle,WA,98101 +296170,AA Batteries (4-pack),2,3.84,2019-12-28 18:46:00,158 Lake St, Austin,TX,73301 +296171,Bose SoundSport Headphones,1,99.99,2019-12-15 20:49:00,977 Wilson St, New York City,NY,10001 +296172,Wired Headphones,1,11.99,2019-12-29 21:37:00,119 11th St, Seattle,WA,98101 +296173,Apple Airpods Headphones,1,150.0,2019-12-08 09:26:00,542 Maple St, New York City,NY,10001 +296174,27in FHD Monitor,1,149.99,2019-12-29 09:38:00,982 Cherry St, Portland,OR,97035 +296175,Bose SoundSport Headphones,1,99.99,2019-12-27 09:45:00,601 Lakeview St, Atlanta,GA,30301 +296176,Wired Headphones,1,11.99,2019-12-11 17:56:00,893 Cedar St, San Francisco,CA,94016 +296177,ThinkPad Laptop,1,999.99,2019-12-23 14:22:00,236 Cherry St, San Francisco,CA,94016 +296178,AAA Batteries (4-pack),1,2.99,2019-12-16 17:47:00,307 Chestnut St, Boston,MA,02215 +296179,Apple Airpods Headphones,1,150.0,2019-12-09 14:42:00,764 Hickory St, Boston,MA,02215 +296180,AA Batteries (4-pack),4,3.84,2019-12-17 15:07:00,958 North St, Portland,OR,97035 +296181,Wired Headphones,1,11.99,2019-12-31 21:58:00,275 Meadow St, Dallas,TX,75001 +296182,Bose SoundSport Headphones,1,99.99,2019-12-06 10:27:00,864 Dogwood St, Austin,TX,73301 +296183,USB-C Charging Cable,1,11.95,2019-12-22 08:18:00,220 Lake St, Portland,OR,97035 +296184,27in 4K Gaming Monitor,1,389.99,2019-12-08 02:23:00,468 Sunset St, New York City,NY,10001 +296185,Apple Airpods Headphones,1,150.0,2019-12-13 12:26:00,472 Walnut St, Los Angeles,CA,90001 +296186,Apple Airpods Headphones,1,150.0,2019-12-11 12:22:00,661 Chestnut St, Seattle,WA,98101 +296187,Google Phone,1,600.0,2019-12-21 15:45:00,322 5th St, San Francisco,CA,94016 +296187,USB-C Charging Cable,1,11.95,2019-12-21 15:45:00,322 5th St, San Francisco,CA,94016 +296188,27in FHD Monitor,1,149.99,2019-12-14 13:50:00,860 Forest St, Boston,MA,02215 +296189,AA Batteries (4-pack),1,3.84,2019-12-11 19:16:00,549 Park St, Dallas,TX,75001 +296190,AA Batteries (4-pack),2,3.84,2019-12-07 14:04:00,937 Hill St, Austin,TX,73301 +296191,USB-C Charging Cable,1,11.95,2019-12-22 12:43:00,688 Madison St, Atlanta,GA,30301 +296192,Bose SoundSport Headphones,1,99.99,2019-12-14 07:34:00,659 14th St, Dallas,TX,75001 +296193,AAA Batteries (4-pack),1,2.99,2019-12-25 14:35:00,863 Forest St, San Francisco,CA,94016 +296194,Apple Airpods Headphones,1,150.0,2019-12-04 11:28:00,305 Madison St, Boston,MA,02215 +296195,Apple Airpods Headphones,1,150.0,2019-12-04 08:51:00,840 Main St, San Francisco,CA,94016 +296196,Lightning Charging Cable,1,14.95,2019-12-17 23:43:00,459 11th St, Atlanta,GA,30301 +296197,20in Monitor,1,109.99,2019-12-19 19:25:00,202 Washington St, New York City,NY,10001 +296198,Vareebadd Phone,1,400.0,2019-12-23 09:20:00,303 Ridge St, Austin,TX,73301 +296199,Google Phone,1,600.0,2019-12-06 22:03:00,746 Ridge St, Los Angeles,CA,90001 +296200,Bose SoundSport Headphones,1,99.99,2019-12-28 08:55:00,56 1st St, San Francisco,CA,94016 +296201,AA Batteries (4-pack),1,3.84,2019-12-19 14:56:00,78 Hickory St, San Francisco,CA,94016 +296202,USB-C Charging Cable,1,11.95,2019-12-13 10:35:00,354 Elm St, San Francisco,CA,94016 +296203,34in Ultrawide Monitor,1,379.99,2019-12-22 11:43:00,732 Highland St, New York City,NY,10001 +296204,Apple Airpods Headphones,1,150.0,2019-12-04 20:08:00,6 4th St, San Francisco,CA,94016 +296205,USB-C Charging Cable,1,11.95,2019-12-22 18:27:00,982 Cedar St, Dallas,TX,75001 +296206,27in 4K Gaming Monitor,1,389.99,2019-12-06 01:31:00,626 9th St, Portland,ME,04101 +296207,Wired Headphones,1,11.99,2019-12-16 08:54:00,123 South St, Los Angeles,CA,90001 +296208,27in 4K Gaming Monitor,1,389.99,2019-12-31 23:04:00,445 Cedar St, Los Angeles,CA,90001 +296209,AA Batteries (4-pack),1,3.84,2019-12-07 08:03:00,462 1st St, New York City,NY,10001 +296210,Macbook Pro Laptop,1,1700.0,2019-12-18 11:41:00,763 Cherry St, San Francisco,CA,94016 +296211,AAA Batteries (4-pack),2,2.99,2019-12-04 00:04:00,189 1st St, San Francisco,CA,94016 +296212,27in FHD Monitor,1,149.99,2019-12-04 14:26:00,414 Pine St, Portland,ME,04101 +296213,iPhone,1,700.0,2019-12-04 07:37:00,498 8th St, New York City,NY,10001 +296214,Bose SoundSport Headphones,1,99.99,2019-12-19 08:02:00,363 Center St, Atlanta,GA,30301 +296215,Apple Airpods Headphones,1,150.0,2019-12-28 19:02:00,598 West St, San Francisco,CA,94016 +296216,AA Batteries (4-pack),2,3.84,2019-12-22 12:07:00,103 Dogwood St, Boston,MA,02215 +296217,AA Batteries (4-pack),4,3.84,2019-12-27 15:07:00,302 Johnson St, Seattle,WA,98101 +296218,AA Batteries (4-pack),1,3.84,2019-12-28 18:34:00,692 Meadow St, Boston,MA,02215 +296219,Lightning Charging Cable,1,14.95,2019-12-09 08:25:00,238 South St, Austin,TX,73301 +296220,Apple Airpods Headphones,1,150.0,2019-12-19 15:01:00,167 Meadow St, Austin,TX,73301 +296221,Apple Airpods Headphones,1,150.0,2019-12-17 15:21:00,521 Jackson St, Los Angeles,CA,90001 +296222,Apple Airpods Headphones,1,150.0,2019-12-19 15:33:00,958 2nd St, Los Angeles,CA,90001 +296223,AA Batteries (4-pack),1,3.84,2019-12-13 06:20:00,456 Highland St, San Francisco,CA,94016 +296224,Bose SoundSport Headphones,1,99.99,2019-12-30 17:36:00,786 Cherry St, Austin,TX,73301 +296225,Lightning Charging Cable,2,14.95,2019-12-10 19:23:00,807 8th St, Boston,MA,02215 +296226,Apple Airpods Headphones,1,150.0,2019-12-27 22:39:00,891 Hill St, San Francisco,CA,94016 +296227,27in 4K Gaming Monitor,1,389.99,2019-12-14 19:47:00,482 Center St, Los Angeles,CA,90001 +296228,Flatscreen TV,1,300.0,2019-12-04 21:52:00,891 Ridge St, Dallas,TX,75001 +296229,Google Phone,1,600.0,2019-12-28 20:07:00,351 9th St, Austin,TX,73301 +296230,USB-C Charging Cable,1,11.95,2019-12-29 18:38:00,900 Lake St, Seattle,WA,98101 +296231,USB-C Charging Cable,1,11.95,2019-12-19 09:22:00,45 Park St, Austin,TX,73301 +296232,AA Batteries (4-pack),1,3.84,2019-12-27 10:41:00,158 Washington St, Seattle,WA,98101 +296233,AA Batteries (4-pack),1,3.84,2019-12-05 15:49:00,444 8th St, Los Angeles,CA,90001 +296234,iPhone,1,700.0,2019-12-01 10:44:00,466 2nd St, Los Angeles,CA,90001 +296235,USB-C Charging Cable,1,11.95,2019-12-23 16:13:00,84 Lakeview St, San Francisco,CA,94016 +296236,AA Batteries (4-pack),2,3.84,2019-12-11 15:04:00,993 4th St, Los Angeles,CA,90001 +296237,27in FHD Monitor,1,149.99,2019-12-02 10:35:00,611 Chestnut St, San Francisco,CA,94016 +296238,ThinkPad Laptop,1,999.99,2019-12-05 18:37:00,544 6th St, San Francisco,CA,94016 +296239,Lightning Charging Cable,1,14.95,2019-12-30 10:09:00,184 Center St, New York City,NY,10001 +296240,USB-C Charging Cable,1,11.95,2019-12-14 11:00:00,128 Spruce St, Austin,TX,73301 +296241,USB-C Charging Cable,1,11.95,2019-12-09 13:13:00,843 Washington St, New York City,NY,10001 +296242,USB-C Charging Cable,1,11.95,2019-12-29 17:51:00,825 Johnson St, Los Angeles,CA,90001 +296243,34in Ultrawide Monitor,1,379.99,2019-12-07 19:30:00,263 Adams St, Atlanta,GA,30301 +296244,USB-C Charging Cable,1,11.95,2019-12-26 18:04:00,354 Adams St, Boston,MA,02215 +296245,Lightning Charging Cable,1,14.95,2019-12-08 15:10:00,449 13th St, New York City,NY,10001 +296246,Apple Airpods Headphones,1,150.0,2019-12-02 16:49:00,618 Main St, Austin,TX,73301 +296247,AAA Batteries (4-pack),1,2.99,2019-12-28 14:54:00,123 Washington St, New York City,NY,10001 +296248,Flatscreen TV,1,300.0,2019-12-04 16:24:00,722 Forest St, New York City,NY,10001 +296249,Wired Headphones,1,11.99,2019-12-09 12:28:00,90 12th St, Boston,MA,02215 +296250,Lightning Charging Cable,1,14.95,2019-12-02 20:36:00,308 8th St, New York City,NY,10001 +296251,Apple Airpods Headphones,1,150.0,2019-12-23 21:43:00,869 Maple St, Atlanta,GA,30301 +296252,Lightning Charging Cable,1,14.95,2019-12-13 07:29:00,399 14th St, Austin,TX,73301 +296253,AA Batteries (4-pack),2,3.84,2019-12-02 21:20:00,699 Jackson St, Portland,OR,97035 +296254,USB-C Charging Cable,3,11.95,2019-12-12 10:04:00,690 Dogwood St, San Francisco,CA,94016 +296255,ThinkPad Laptop,1,999.99,2019-12-14 03:10:00,566 Lincoln St, San Francisco,CA,94016 +296256,Bose SoundSport Headphones,1,99.99,2019-12-03 13:05:00,714 11th St, Seattle,WA,98101 +296257,Apple Airpods Headphones,1,150.0,2019-12-07 21:00:00,546 Willow St, San Francisco,CA,94016 +296258,AA Batteries (4-pack),3,3.84,2019-12-09 23:55:00,388 Wilson St, Austin,TX,73301 +296259,Wired Headphones,1,11.99,2019-12-13 15:58:00,896 West St, San Francisco,CA,94016 +296260,Bose SoundSport Headphones,1,99.99,2019-12-14 10:02:00,220 Adams St, Austin,TX,73301 +296261,Wired Headphones,1,11.99,2019-12-21 19:59:00,271 Adams St, New York City,NY,10001 +296262,Lightning Charging Cable,1,14.95,2019-12-08 23:54:00,615 Wilson St, San Francisco,CA,94016 +296263,Google Phone,1,600.0,2019-12-11 18:04:00,229 Pine St, San Francisco,CA,94016 +296263,Wired Headphones,1,11.99,2019-12-11 18:04:00,229 Pine St, San Francisco,CA,94016 +296264,Lightning Charging Cable,1,14.95,2019-12-01 15:05:00,36 5th St, New York City,NY,10001 +296265,iPhone,1,700.0,2019-12-01 11:47:00,350 Center St, Boston,MA,02215 +296266,27in FHD Monitor,1,149.99,2019-12-11 14:52:00,173 Cherry St, Dallas,TX,75001 +296267,Flatscreen TV,1,300.0,2019-12-21 22:45:00,573 7th St, Atlanta,GA,30301 +296267,Lightning Charging Cable,1,14.95,2019-12-21 22:45:00,573 7th St, Atlanta,GA,30301 +296268,20in Monitor,1,109.99,2019-12-14 11:04:00,41 Willow St, Los Angeles,CA,90001 +296269,AA Batteries (4-pack),1,3.84,2019-12-06 17:57:00,142 Park St, San Francisco,CA,94016 +296270,USB-C Charging Cable,1,11.95,2019-12-06 08:05:00,10 Cherry St, San Francisco,CA,94016 +296271,Apple Airpods Headphones,1,150.0,2019-12-23 14:53:00,727 9th St, Atlanta,GA,30301 +296272,Flatscreen TV,1,300.0,2019-12-04 16:58:00,170 Maple St, San Francisco,CA,94016 +296273,Wired Headphones,1,11.99,2019-12-06 20:51:00,584 West St, Los Angeles,CA,90001 +296274,USB-C Charging Cable,1,11.95,2019-12-20 09:43:00,871 Wilson St, Portland,ME,04101 +296275,Lightning Charging Cable,1,14.95,2019-12-13 14:16:00,159 14th St, Portland,OR,97035 +296276,Vareebadd Phone,1,400.0,2019-12-30 17:56:00,186 14th St, New York City,NY,10001 +296276,USB-C Charging Cable,1,11.95,2019-12-30 17:56:00,186 14th St, New York City,NY,10001 +296277,34in Ultrawide Monitor,1,379.99,2019-12-10 16:46:00,839 Lake St, New York City,NY,10001 +296278,AAA Batteries (4-pack),3,2.99,2019-12-17 13:54:00,666 Sunset St, Atlanta,GA,30301 +296279,Lightning Charging Cable,1,14.95,2019-12-02 09:02:00,80 Chestnut St, Los Angeles,CA,90001 +296280,Apple Airpods Headphones,1,150.0,2019-12-03 23:15:00,737 Elm St, Atlanta,GA,30301 +296281,Apple Airpods Headphones,1,150.0,2019-12-04 22:53:00,942 Ridge St, New York City,NY,10001 +296282,AA Batteries (4-pack),1,3.84,2019-12-07 12:48:00,954 West St, San Francisco,CA,94016 +296283,AAA Batteries (4-pack),1,2.99,2019-12-06 20:46:00,654 Cedar St, Boston,MA,02215 +296284,Lightning Charging Cable,1,14.95,2019-12-25 08:57:00,145 South St, San Francisco,CA,94016 +296285,Lightning Charging Cable,2,14.95,2019-12-26 08:33:00,484 Cherry St, Dallas,TX,75001 +296286,AAA Batteries (4-pack),2,2.99,2019-12-22 13:43:00,790 Wilson St, Dallas,TX,75001 +296287,Bose SoundSport Headphones,1,99.99,2019-12-31 12:13:00,322 North St, Seattle,WA,98101 +296288,Flatscreen TV,1,300.0,2019-12-13 20:40:00,277 Wilson St, New York City,NY,10001 +296289,Wired Headphones,1,11.99,2019-12-22 22:38:00,419 14th St, Portland,OR,97035 +296290,Lightning Charging Cable,1,14.95,2019-12-26 18:15:00,157 10th St, Portland,OR,97035 +296291,34in Ultrawide Monitor,1,379.99,2019-12-24 12:31:00,885 Ridge St, Atlanta,GA,30301 +296292,Lightning Charging Cable,1,14.95,2019-12-29 12:05:00,907 Pine St, Boston,MA,02215 +296293,Wired Headphones,1,11.99,2019-12-09 14:35:00,896 Sunset St, New York City,NY,10001 +296294,Apple Airpods Headphones,1,150.0,2019-12-28 22:36:00,360 6th St, Portland,ME,04101 +296295,AAA Batteries (4-pack),1,2.99,2019-12-19 19:57:00,445 Washington St, Portland,OR,97035 +296296,Lightning Charging Cable,1,14.95,2019-12-21 18:28:00,447 Lake St, New York City,NY,10001 +296297,USB-C Charging Cable,1,11.95,2019-12-04 16:09:00,224 Washington St, Los Angeles,CA,90001 +296298,Lightning Charging Cable,1,14.95,2019-12-19 20:28:00,709 12th St, Los Angeles,CA,90001 +296299,USB-C Charging Cable,1,11.95,2019-12-31 11:24:00,160 5th St, San Francisco,CA,94016 +296300,AA Batteries (4-pack),2,3.84,2019-12-08 15:22:00,828 Lake St, New York City,NY,10001 +296301,AA Batteries (4-pack),1,3.84,2019-12-06 12:50:00,722 7th St, Los Angeles,CA,90001 +296302,Apple Airpods Headphones,1,150.0,2019-12-03 23:07:00,620 Cedar St, Boston,MA,02215 +296303,Lightning Charging Cable,1,14.95,2019-12-01 17:54:00,843 Ridge St, New York City,NY,10001 +296304,AAA Batteries (4-pack),7,2.99,2019-12-23 18:27:00,567 Highland St, San Francisco,CA,94016 +296305,AA Batteries (4-pack),2,3.84,2019-12-13 10:17:00,327 7th St, Portland,OR,97035 +296306,AAA Batteries (4-pack),2,2.99,2019-12-14 11:11:00,703 Hickory St, San Francisco,CA,94016 +296307,Apple Airpods Headphones,1,150.0,2019-12-07 09:49:00,536 Main St, Seattle,WA,98101 +296308,USB-C Charging Cable,1,11.95,2019-12-02 13:52:00,873 Madison St, San Francisco,CA,94016 +296309,27in 4K Gaming Monitor,1,389.99,2019-12-04 13:20:00,125 Church St, New York City,NY,10001 +296310,AAA Batteries (4-pack),1,2.99,2019-12-23 09:02:00,994 West St, New York City,NY,10001 +296311,USB-C Charging Cable,1,11.95,2019-12-30 10:48:00,385 Park St, Dallas,TX,75001 +296312,Lightning Charging Cable,1,14.95,2019-12-06 11:44:00,432 7th St, Boston,MA,02215 +296313,27in 4K Gaming Monitor,1,389.99,2019-12-02 12:21:00,670 Highland St, San Francisco,CA,94016 +296314,34in Ultrawide Monitor,1,379.99,2019-12-20 14:47:00,931 7th St, Boston,MA,02215 +296315,USB-C Charging Cable,1,11.95,2019-12-28 21:10:00,937 Spruce St, San Francisco,CA,94016 +296316,AAA Batteries (4-pack),1,2.99,2019-12-30 14:54:00,325 Walnut St, Austin,TX,73301 +296317,AA Batteries (4-pack),1,3.84,2019-12-21 10:47:00,949 Elm St, Austin,TX,73301 +296318,Bose SoundSport Headphones,1,99.99,2019-12-20 19:45:00,35 Madison St, San Francisco,CA,94016 +296319,20in Monitor,1,109.99,2019-12-31 09:58:00,208 6th St, Dallas,TX,75001 +296320,AA Batteries (4-pack),2,3.84,2019-12-19 19:15:00,635 Lake St, Portland,OR,97035 +296321,Bose SoundSport Headphones,1,99.99,2019-12-22 09:54:00,51 Hickory St, San Francisco,CA,94016 +296322,AA Batteries (4-pack),2,3.84,2019-12-27 10:08:00,627 4th St, Portland,ME,04101 +296323,Lightning Charging Cable,1,14.95,2019-12-04 21:09:00,945 14th St, Atlanta,GA,30301 +296324,34in Ultrawide Monitor,1,379.99,2019-12-19 12:33:00,76 Madison St, New York City,NY,10001 +296325,Macbook Pro Laptop,1,1700.0,2019-12-28 22:52:00,755 Adams St, Seattle,WA,98101 +296326,20in Monitor,1,109.99,2019-12-25 11:10:00,178 12th St, Los Angeles,CA,90001 +296327,USB-C Charging Cable,1,11.95,2019-12-05 23:54:00,327 Chestnut St, Los Angeles,CA,90001 +296328,USB-C Charging Cable,1,11.95,2019-12-21 12:05:00,558 2nd St, New York City,NY,10001 +296329,LG Washing Machine,1,600.0,2019-12-01 11:49:00,194 South St, San Francisco,CA,94016 +296330,Wired Headphones,1,11.99,2019-12-23 13:47:00,298 Jackson St, San Francisco,CA,94016 +296331,Flatscreen TV,1,300.0,2019-12-01 15:34:00,473 6th St, Seattle,WA,98101 +296332,USB-C Charging Cable,1,11.95,2019-12-12 10:09:00,991 Dogwood St, New York City,NY,10001 +296333,27in 4K Gaming Monitor,1,389.99,2019-12-24 23:12:00,587 Lakeview St, Boston,MA,02215 +296334,Lightning Charging Cable,1,14.95,2019-12-13 18:12:00,952 Dogwood St, Los Angeles,CA,90001 +296335,Wired Headphones,1,11.99,2019-12-31 11:10:00,850 Walnut St, San Francisco,CA,94016 +296336,Lightning Charging Cable,1,14.95,2019-12-29 18:26:00,407 Highland St, Los Angeles,CA,90001 +296337,34in Ultrawide Monitor,1,379.99,2019-12-23 11:23:00,783 South St, Los Angeles,CA,90001 +296338,USB-C Charging Cable,1,11.95,2019-12-23 15:55:00,595 Lake St, San Francisco,CA,94016 +296339,USB-C Charging Cable,2,11.95,2019-12-11 07:42:00,585 Washington St, New York City,NY,10001 +296340,AAA Batteries (4-pack),2,2.99,2019-12-02 12:10:00,873 North St, Los Angeles,CA,90001 +296341,AAA Batteries (4-pack),1,2.99,2019-12-26 21:52:00,634 Elm St, Dallas,TX,75001 +296342,USB-C Charging Cable,1,11.95,2019-12-04 09:03:00,391 7th St, San Francisco,CA,94016 +296343,27in 4K Gaming Monitor,1,389.99,2019-12-14 12:44:00,486 10th St, San Francisco,CA,94016 +296344,27in FHD Monitor,1,149.99,2019-12-24 11:47:00,887 Jackson St, San Francisco,CA,94016 +296345,AA Batteries (4-pack),1,3.84,2019-12-17 09:37:00,790 Jackson St, San Francisco,CA,94016 +296346,Macbook Pro Laptop,1,1700.0,2019-12-25 07:39:00,818 Willow St, Boston,MA,02215 +296347,Google Phone,1,600.0,2019-12-08 13:43:00,65 11th St, Boston,MA,02215 +296348,AA Batteries (4-pack),3,3.84,2019-12-13 23:46:00,25 Lake St, Dallas,TX,75001 +296349,Lightning Charging Cable,1,14.95,2019-12-06 13:31:00,995 4th St, Boston,MA,02215 +296350,Wired Headphones,1,11.99,2019-12-11 23:13:00,804 Center St, San Francisco,CA,94016 +296351,ThinkPad Laptop,1,999.99,2019-12-24 17:57:00,168 10th St, Portland,ME,04101 +296352,Lightning Charging Cable,1,14.95,2019-12-11 19:20:00,478 Sunset St, Los Angeles,CA,90001 +296353,iPhone,1,700.0,2019-12-01 22:49:00,475 Cedar St, Los Angeles,CA,90001 +296353,Lightning Charging Cable,1,14.95,2019-12-01 22:49:00,475 Cedar St, Los Angeles,CA,90001 +296353,Wired Headphones,1,11.99,2019-12-01 22:49:00,475 Cedar St, Los Angeles,CA,90001 +296353,AA Batteries (4-pack),2,3.84,2019-12-01 22:49:00,475 Cedar St, Los Angeles,CA,90001 +296354,Vareebadd Phone,1,400.0,2019-12-11 07:03:00,299 Lake St, Atlanta,GA,30301 +296354,USB-C Charging Cable,1,11.95,2019-12-11 07:03:00,299 Lake St, Atlanta,GA,30301 +296355,Lightning Charging Cable,1,14.95,2019-12-04 11:52:00,142 North St, Seattle,WA,98101 +296356,20in Monitor,1,109.99,2019-12-02 23:34:00,61 Maple St, Portland,ME,04101 +296357,USB-C Charging Cable,1,11.95,2019-12-09 22:26:00,529 7th St, Atlanta,GA,30301 +296358,34in Ultrawide Monitor,1,379.99,2019-12-15 19:02:00,61 4th St, Seattle,WA,98101 +296359,AA Batteries (4-pack),1,3.84,2019-12-22 14:23:00,53 Forest St, San Francisco,CA,94016 +296360,Google Phone,1,600.0,2019-12-12 10:12:00,979 Sunset St, New York City,NY,10001 +296361,Wired Headphones,1,11.99,2019-12-29 16:05:00,577 Hickory St, San Francisco,CA,94016 +296362,Lightning Charging Cable,1,14.95,2019-12-17 13:08:00,677 Church St, Atlanta,GA,30301 +296363,AA Batteries (4-pack),3,3.84,2019-12-01 22:03:00,583 11th St, New York City,NY,10001 +296364,USB-C Charging Cable,1,11.95,2019-12-10 17:07:00,486 Cedar St, San Francisco,CA,94016 +296365,Vareebadd Phone,1,400.0,2019-12-26 10:54:00,444 1st St, Austin,TX,73301 +296366,USB-C Charging Cable,1,11.95,2019-12-08 19:56:00,588 Johnson St, San Francisco,CA,94016 +296367,iPhone,1,700.0,2019-12-17 13:13:00,902 Dogwood St, Portland,OR,97035 +296368,34in Ultrawide Monitor,1,379.99,2019-12-19 13:44:00,223 10th St, New York City,NY,10001 +296369,Wired Headphones,1,11.99,2019-12-11 14:08:00,171 West St, Portland,OR,97035 +296370,27in FHD Monitor,1,149.99,2019-12-25 12:53:00,555 13th St, Boston,MA,02215 +296371,iPhone,1,700.0,2019-12-29 20:32:00,234 Cherry St, Los Angeles,CA,90001 +296372,AA Batteries (4-pack),1,3.84,2019-12-24 18:11:00,638 Forest St, Dallas,TX,75001 +296373,Wired Headphones,1,11.99,2019-12-26 22:15:00,924 Washington St, San Francisco,CA,94016 +296374,AAA Batteries (4-pack),1,2.99,2019-12-15 20:22:00,212 Walnut St, Boston,MA,02215 +296375,Lightning Charging Cable,1,14.95,2019-12-11 11:22:00,564 10th St, Seattle,WA,98101 +296376,LG Dryer,1,600.0,2019-12-21 10:10:00,817 Meadow St, Portland,OR,97035 +296377,Apple Airpods Headphones,1,150.0,2019-12-02 12:36:00,694 Washington St, New York City,NY,10001 +296378,Wired Headphones,1,11.99,2019-12-29 22:01:00,190 Spruce St, Atlanta,GA,30301 +296379,Lightning Charging Cable,1,14.95,2019-12-19 10:11:00,533 5th St, Los Angeles,CA,90001 +296380,USB-C Charging Cable,1,11.95,2019-12-19 12:58:00,474 Washington St, Seattle,WA,98101 +296381,Lightning Charging Cable,1,14.95,2019-12-02 18:19:00,146 Wilson St, New York City,NY,10001 +296382,iPhone,1,700.0,2019-12-30 10:03:00,215 Willow St, Dallas,TX,75001 +296383,Lightning Charging Cable,1,14.95,2019-12-08 13:20:00,118 Park St, San Francisco,CA,94016 +296384,Lightning Charging Cable,1,14.95,2019-12-24 22:10:00,159 Willow St, San Francisco,CA,94016 +296385,34in Ultrawide Monitor,1,379.99,2019-12-27 13:40:00,120 Center St, Portland,OR,97035 +296386,AA Batteries (4-pack),1,3.84,2019-12-07 15:05:00,521 Center St, Portland,OR,97035 +296387,USB-C Charging Cable,2,11.95,2019-12-27 21:07:00,40 North St, Portland,OR,97035 +296388,AA Batteries (4-pack),1,3.84,2019-12-02 09:42:00,801 7th St, New York City,NY,10001 +296389,iPhone,1,700.0,2019-12-06 17:39:00,692 West St, Portland,OR,97035 +296390,iPhone,1,700.0,2019-12-06 09:07:00,619 Jackson St, New York City,NY,10001 +296390,Wired Headphones,1,11.99,2019-12-06 09:07:00,619 Jackson St, New York City,NY,10001 +296391,Google Phone,1,600.0,2019-12-10 11:50:00,183 2nd St, San Francisco,CA,94016 +296392,Apple Airpods Headphones,1,150.0,2019-12-04 22:19:00,726 Dogwood St, Dallas,TX,75001 +296393,USB-C Charging Cable,1,11.95,2019-12-24 12:06:00,827 River St, San Francisco,CA,94016 +296394,Lightning Charging Cable,1,14.95,2019-12-28 18:52:00,762 Washington St, Seattle,WA,98101 +296395,USB-C Charging Cable,1,11.95,2019-12-04 13:42:00,697 Adams St, New York City,NY,10001 +296396,Wired Headphones,1,11.99,2019-12-29 22:18:00,58 Elm St, Los Angeles,CA,90001 +296397,Lightning Charging Cable,1,14.95,2019-12-08 10:11:00,268 West St, Boston,MA,02215 +296398,AAA Batteries (4-pack),1,2.99,2019-12-31 09:47:00,845 4th St, San Francisco,CA,94016 +296399,AAA Batteries (4-pack),1,2.99,2019-12-27 09:45:00,546 Church St, Atlanta,GA,30301 +296400,AA Batteries (4-pack),1,3.84,2019-12-14 21:20:00,791 Highland St, Portland,OR,97035 +296401,Wired Headphones,1,11.99,2019-12-17 22:42:00,853 Elm St, Seattle,WA,98101 +296402,USB-C Charging Cable,1,11.95,2019-12-16 18:06:00,306 Chestnut St, San Francisco,CA,94016 +296403,Wired Headphones,1,11.99,2019-12-26 15:35:00,209 5th St, Los Angeles,CA,90001 +296404,Bose SoundSport Headphones,1,99.99,2019-12-25 15:42:00,268 Sunset St, Boston,MA,02215 +296405,Wired Headphones,2,11.99,2019-12-11 07:58:00,391 Lakeview St, San Francisco,CA,94016 +296406,ThinkPad Laptop,1,999.99,2019-12-27 20:14:00,799 Sunset St, Los Angeles,CA,90001 +296407,USB-C Charging Cable,1,11.95,2019-12-12 15:41:00,645 Hickory St, New York City,NY,10001 +296408,Wired Headphones,1,11.99,2019-12-15 19:58:00,964 River St, San Francisco,CA,94016 +296409,AAA Batteries (4-pack),2,2.99,2019-12-22 12:28:00,507 Johnson St, San Francisco,CA,94016 +296410,Lightning Charging Cable,1,14.95,2019-12-31 17:52:00,716 Johnson St, New York City,NY,10001 +296411,Lightning Charging Cable,2,14.95,2019-12-13 21:05:00,538 Park St, Boston,MA,02215 +296412,Apple Airpods Headphones,1,150.0,2019-12-22 07:46:00,403 Chestnut St, Atlanta,GA,30301 +296413,Flatscreen TV,1,300.0,2019-12-12 10:49:00,389 Washington St, Atlanta,GA,30301 +296414,34in Ultrawide Monitor,1,379.99,2019-12-08 23:42:00,815 Maple St, Dallas,TX,75001 +296415,Bose SoundSport Headphones,1,99.99,2019-12-27 06:57:00,236 Hill St, Boston,MA,02215 +296416,Bose SoundSport Headphones,1,99.99,2019-12-11 03:38:00,373 9th St, New York City,NY,10001 +296417,AA Batteries (4-pack),1,3.84,2019-12-22 14:26:00,595 Spruce St, San Francisco,CA,94016 +296418,AA Batteries (4-pack),2,3.84,2019-12-12 15:50:00,277 Lakeview St, San Francisco,CA,94016 +296419,Lightning Charging Cable,1,14.95,2019-12-18 21:41:00,509 Walnut St, Portland,OR,97035 +296420,USB-C Charging Cable,2,11.95,2019-12-02 19:16:00,414 North St, Atlanta,GA,30301 +296421,USB-C Charging Cable,1,11.95,2019-12-28 07:26:00,973 Walnut St, Austin,TX,73301 +296422,USB-C Charging Cable,1,11.95,2019-12-22 13:05:00,351 6th St, Atlanta,GA,30301 +296423,27in 4K Gaming Monitor,1,389.99,2019-12-25 18:41:00,95 Ridge St, Los Angeles,CA,90001 +296424,Apple Airpods Headphones,1,150.0,2019-12-25 22:31:00,999 Madison St, San Francisco,CA,94016 +296425,Lightning Charging Cable,1,14.95,2019-12-04 16:14:00,188 Cherry St, Los Angeles,CA,90001 +296426,AA Batteries (4-pack),2,3.84,2019-12-22 23:27:00,651 Dogwood St, Boston,MA,02215 +296427,Lightning Charging Cable,1,14.95,2019-12-05 10:39:00,326 9th St, Atlanta,GA,30301 +296428,Lightning Charging Cable,1,14.95,2019-12-23 13:41:00,933 6th St, San Francisco,CA,94016 +296429,AA Batteries (4-pack),2,3.84,2019-12-30 07:58:00,805 Cherry St, Los Angeles,CA,90001 +296430,Lightning Charging Cable,1,14.95,2019-12-10 23:23:00,217 Hickory St, San Francisco,CA,94016 +296431,Bose SoundSport Headphones,1,99.99,2019-12-03 16:49:00,519 Lakeview St, Seattle,WA,98101 +296432,AAA Batteries (4-pack),1,2.99,2019-12-13 13:56:00,911 Cherry St, Boston,MA,02215 +296433,Apple Airpods Headphones,1,150.0,2019-12-08 10:28:00,596 13th St, San Francisco,CA,94016 +296434,Wired Headphones,1,11.99,2019-12-24 15:27:00,745 13th St, New York City,NY,10001 +296435,Lightning Charging Cable,1,14.95,2019-12-12 19:07:00,536 Maple St, Los Angeles,CA,90001 +296436,Vareebadd Phone,1,400.0,2019-12-25 13:13:00,939 River St, Los Angeles,CA,90001 +296437,Flatscreen TV,1,300.0,2019-12-01 12:42:00,19 12th St, Seattle,WA,98101 +296438,Vareebadd Phone,1,400.0,2019-12-02 12:20:00,355 Pine St, San Francisco,CA,94016 +296439,34in Ultrawide Monitor,1,379.99,2019-12-10 18:05:00,882 Elm St, Seattle,WA,98101 +296440,Macbook Pro Laptop,1,1700.0,2019-12-20 16:51:00,988 Spruce St, Boston,MA,02215 +296441,Apple Airpods Headphones,1,150.0,2019-12-22 19:00:00,969 11th St, Boston,MA,02215 +296442,Google Phone,1,600.0,2019-12-23 17:33:00,364 North St, Boston,MA,02215 +296442,USB-C Charging Cable,1,11.95,2019-12-23 17:33:00,364 North St, Boston,MA,02215 +296443,Vareebadd Phone,1,400.0,2019-12-20 10:49:00,181 12th St, Austin,TX,73301 +296443,Bose SoundSport Headphones,1,99.99,2019-12-20 10:49:00,181 12th St, Austin,TX,73301 +296444,AAA Batteries (4-pack),4,2.99,2019-12-17 14:24:00,504 Hickory St, Atlanta,GA,30301 +296444,USB-C Charging Cable,1,11.95,2019-12-17 14:24:00,504 Hickory St, Atlanta,GA,30301 +296445,AAA Batteries (4-pack),1,2.99,2019-12-05 14:25:00,458 Jefferson St, Boston,MA,02215 +296446,Apple Airpods Headphones,1,150.0,2019-12-22 19:03:00,653 Park St, San Francisco,CA,94016 +296447,Macbook Pro Laptop,1,1700.0,2019-12-06 18:17:00,585 Willow St, San Francisco,CA,94016 +296448,Bose SoundSport Headphones,1,99.99,2019-12-12 18:51:00,907 Willow St, San Francisco,CA,94016 +296449,Wired Headphones,2,11.99,2019-12-27 17:08:00,354 10th St, Los Angeles,CA,90001 +296450,Bose SoundSport Headphones,1,99.99,2019-12-27 15:44:00,498 Walnut St, Atlanta,GA,30301 +296451,USB-C Charging Cable,1,11.95,2019-12-28 13:18:00,400 4th St, Los Angeles,CA,90001 +296452,USB-C Charging Cable,1,11.95,2019-12-12 18:51:00,16 Chestnut St, Portland,OR,97035 +296453,AA Batteries (4-pack),1,3.84,2019-12-30 11:55:00,981 Hill St, Portland,OR,97035 +296454,AAA Batteries (4-pack),1,2.99,2019-12-28 09:28:00,965 Main St, San Francisco,CA,94016 +296455,USB-C Charging Cable,1,11.95,2019-12-05 18:51:00,473 South St, San Francisco,CA,94016 +296456,Apple Airpods Headphones,1,150.0,2019-12-01 04:48:00,937 River St, San Francisco,CA,94016 +296457,Apple Airpods Headphones,1,150.0,2019-12-30 17:10:00,125 Main St, New York City,NY,10001 +296458,ThinkPad Laptop,1,999.99,2019-12-20 20:41:00,881 Walnut St, Boston,MA,02215 +296459,Wired Headphones,1,11.99,2019-12-20 16:16:00,621 Cherry St, Los Angeles,CA,90001 +296460,AA Batteries (4-pack),1,3.84,2019-12-14 18:22:00,444 5th St, Dallas,TX,75001 +296461,Apple Airpods Headphones,1,150.0,2019-12-20 18:59:00,802 9th St, Boston,MA,02215 +296462,AAA Batteries (4-pack),5,2.99,2019-12-17 19:03:00,584 Spruce St, Boston,MA,02215 +296463,34in Ultrawide Monitor,1,379.99,2019-12-01 10:46:00,348 Lakeview St, Dallas,TX,75001 +296464,AAA Batteries (4-pack),3,2.99,2019-12-26 13:42:00,286 1st St, San Francisco,CA,94016 +296465,AA Batteries (4-pack),1,3.84,2019-12-16 11:11:00,822 South St, Portland,OR,97035 +296466,Wired Headphones,1,11.99,2019-12-08 16:17:00,626 4th St, Portland,ME,04101 +296467,Wired Headphones,1,11.99,2019-12-13 12:53:00,700 11th St, San Francisco,CA,94016 +296468,Wired Headphones,1,11.99,2019-12-26 13:31:00,784 Elm St, San Francisco,CA,94016 +296469,AA Batteries (4-pack),1,3.84,2019-12-19 05:56:00,582 Chestnut St, New York City,NY,10001 +296470,AA Batteries (4-pack),2,3.84,2019-12-11 16:38:00,29 Meadow St, Dallas,TX,75001 +296471,Google Phone,1,600.0,2019-12-13 10:16:00,510 Elm St, Dallas,TX,75001 +296472,LG Dryer,1,600.0,2019-12-21 10:50:00,199 Cedar St, Dallas,TX,75001 +296473,Bose SoundSport Headphones,1,99.99,2019-12-30 17:11:00,854 Hickory St, San Francisco,CA,94016 +296474,iPhone,1,700.0,2019-12-18 19:22:00,464 Jefferson St, New York City,NY,10001 +296475,27in 4K Gaming Monitor,1,389.99,2019-12-27 12:57:00,309 South St, Los Angeles,CA,90001 +296476,27in FHD Monitor,1,149.99,2019-12-30 18:16:00,723 13th St, Boston,MA,02215 +296477,Apple Airpods Headphones,1,150.0,2019-12-24 19:37:00,548 West St, Dallas,TX,75001 +296478,Wired Headphones,1,11.99,2019-12-08 18:58:00,915 6th St, Atlanta,GA,30301 +296479,USB-C Charging Cable,1,11.95,2019-12-24 19:25:00,499 River St, Los Angeles,CA,90001 +296480,Wired Headphones,1,11.99,2019-12-21 20:12:00,874 Adams St, Austin,TX,73301 +296481,Vareebadd Phone,1,400.0,2019-12-07 09:57:00,347 Wilson St, New York City,NY,10001 +296482,Flatscreen TV,1,300.0,2019-12-28 23:05:00,135 9th St, San Francisco,CA,94016 +296483,ThinkPad Laptop,1,999.99,2019-12-16 08:33:00,146 Cherry St, Atlanta,GA,30301 +296484,Lightning Charging Cable,2,14.95,2019-12-01 20:48:00,146 Meadow St, San Francisco,CA,94016 +296485,LG Dryer,1,600.0,2019-12-02 15:15:00,794 Church St, Austin,TX,73301 +296486,USB-C Charging Cable,2,11.95,2019-12-30 06:23:00,369 Forest St, Dallas,TX,75001 +296487,AAA Batteries (4-pack),1,2.99,2019-12-03 17:02:00,925 2nd St, New York City,NY,10001 +296488,USB-C Charging Cable,1,11.95,2019-12-18 13:09:00,814 Madison St, San Francisco,CA,94016 +296489,Apple Airpods Headphones,1,150.0,2019-12-26 20:37:00,888 Cedar St, New York City,NY,10001 +296490,USB-C Charging Cable,1,11.95,2019-12-21 23:40:00,682 South St, Austin,TX,73301 +296491,27in 4K Gaming Monitor,1,389.99,2019-12-17 23:02:00,623 Church St, Los Angeles,CA,90001 +296492,Wired Headphones,1,11.99,2019-12-06 10:27:00,992 Forest St, Atlanta,GA,30301 +296493,ThinkPad Laptop,1,999.99,2019-12-08 21:49:00,403 Main St, Boston,MA,02215 +296494,Lightning Charging Cable,1,14.95,2019-12-20 11:26:00,873 9th St, Boston,MA,02215 +296495,ThinkPad Laptop,1,999.99,2019-12-13 21:09:00,389 North St, Los Angeles,CA,90001 +296496,Wired Headphones,1,11.99,2019-12-06 18:13:00,119 Elm St, Austin,TX,73301 +296497,iPhone,1,700.0,2019-12-25 12:19:00,572 13th St, Los Angeles,CA,90001 +296498,27in 4K Gaming Monitor,1,389.99,2019-12-08 17:22:00,452 Sunset St, Dallas,TX,75001 +296499,AAA Batteries (4-pack),2,2.99,2019-12-01 23:13:00,70 8th St, San Francisco,CA,94016 +296500,AA Batteries (4-pack),1,3.84,2019-12-18 17:54:00,621 8th St, Austin,TX,73301 +296501,AA Batteries (4-pack),1,3.84,2019-12-06 16:56:00,30 4th St, Atlanta,GA,30301 +296502,Apple Airpods Headphones,1,150.0,2019-12-25 15:12:00,82 Lake St, New York City,NY,10001 +296503,Apple Airpods Headphones,1,150.0,2019-12-04 14:14:00,998 Pine St, New York City,NY,10001 +296504,27in FHD Monitor,1,149.99,2019-12-07 21:03:00,614 Washington St, San Francisco,CA,94016 +296505,AAA Batteries (4-pack),1,2.99,2019-12-30 09:13:00,310 Hickory St, Portland,ME,04101 +296506,20in Monitor,1,109.99,2019-12-11 14:21:00,276 South St, Portland,ME,04101 +296507,Bose SoundSport Headphones,1,99.99,2019-12-25 18:23:00,218 Sunset St, San Francisco,CA,94016 +296508,Bose SoundSport Headphones,1,99.99,2019-12-07 19:20:00,980 Main St, San Francisco,CA,94016 +296509,USB-C Charging Cable,1,11.95,2019-12-04 14:22:00,486 Park St, New York City,NY,10001 +296510,AAA Batteries (4-pack),1,2.99,2019-12-25 07:59:00,342 Elm St, San Francisco,CA,94016 +296511,27in FHD Monitor,1,149.99,2019-12-19 12:48:00,503 Madison St, Austin,TX,73301 +296512,AAA Batteries (4-pack),1,2.99,2019-12-10 20:29:00,244 Washington St, Atlanta,GA,30301 +296513,Lightning Charging Cable,1,14.95,2019-12-31 16:34:00,230 Pine St, Portland,OR,97035 +296514,Wired Headphones,1,11.99,2019-12-16 21:16:00,548 5th St, San Francisco,CA,94016 +296515,AA Batteries (4-pack),1,3.84,2019-12-14 22:34:00,966 Church St, Atlanta,GA,30301 +296516,Wired Headphones,1,11.99,2019-12-01 17:02:00,979 Lakeview St, Dallas,TX,75001 +296517,AA Batteries (4-pack),1,3.84,2019-12-01 14:28:00,454 Hickory St, San Francisco,CA,94016 +296518,Macbook Pro Laptop,1,1700.0,2019-12-25 03:17:00,866 Willow St, Boston,MA,02215 +296519,USB-C Charging Cable,1,11.95,2019-12-18 07:25:00,334 Lake St, Los Angeles,CA,90001 +296520,Google Phone,1,600.0,2019-12-25 20:52:00,7 Jackson St, Boston,MA,02215 +296520,USB-C Charging Cable,1,11.95,2019-12-25 20:52:00,7 Jackson St, Boston,MA,02215 +296521,Lightning Charging Cable,1,14.95,2019-12-23 09:12:00,380 Chestnut St, Dallas,TX,75001 +296522,USB-C Charging Cable,1,11.95,2019-12-06 16:35:00,500 11th St, San Francisco,CA,94016 +296523,Bose SoundSport Headphones,1,99.99,2019-12-19 13:09:00,355 Sunset St, Boston,MA,02215 +296524,Lightning Charging Cable,1,14.95,2019-12-15 18:03:00,614 1st St, Portland,OR,97035 +296525,Bose SoundSport Headphones,1,99.99,2019-12-17 11:59:00,125 Lakeview St, Seattle,WA,98101 +296526,Google Phone,1,600.0,2019-12-02 12:29:00,39 Lincoln St, Los Angeles,CA,90001 +296527,AA Batteries (4-pack),1,3.84,2019-12-11 20:49:00,844 11th St, San Francisco,CA,94016 +296528,AA Batteries (4-pack),2,3.84,2019-12-16 17:48:00,118 Chestnut St, Los Angeles,CA,90001 +296529,Google Phone,1,600.0,2019-12-09 15:37:00,717 14th St, Atlanta,GA,30301 +296530,Apple Airpods Headphones,1,150.0,2019-12-06 12:12:00,806 Elm St, Dallas,TX,75001 +296531,27in FHD Monitor,1,149.99,2019-12-09 16:10:00,791 Lincoln St, San Francisco,CA,94016 +296531,Bose SoundSport Headphones,1,99.99,2019-12-09 16:10:00,791 Lincoln St, San Francisco,CA,94016 +296532,AA Batteries (4-pack),2,3.84,2019-12-08 21:33:00,279 Wilson St, New York City,NY,10001 +296533,Flatscreen TV,1,300.0,2019-12-26 10:23:00,993 11th St, Boston,MA,02215 +296534,USB-C Charging Cable,1,11.95,2019-12-25 10:45:00,663 9th St, San Francisco,CA,94016 +296535,AAA Batteries (4-pack),1,2.99,2019-12-28 18:33:00,197 7th St, Dallas,TX,75001 +296536,Macbook Pro Laptop,1,1700.0,2019-12-27 14:17:00,453 Ridge St, San Francisco,CA,94016 +296537,USB-C Charging Cable,1,11.95,2019-12-23 13:41:00,567 Forest St, Boston,MA,02215 +296538,AAA Batteries (4-pack),1,2.99,2019-12-01 22:04:00,144 South St, Atlanta,GA,30301 +296539,AAA Batteries (4-pack),1,2.99,2019-12-09 11:06:00,916 10th St, San Francisco,CA,94016 +296540,USB-C Charging Cable,1,11.95,2019-12-31 14:49:00,602 13th St, Portland,OR,97035 +296541,Wired Headphones,1,11.99,2019-12-13 13:41:00,160 Adams St, San Francisco,CA,94016 +296542,USB-C Charging Cable,1,11.95,2019-12-31 12:33:00,578 1st St, Portland,OR,97035 +296543,27in FHD Monitor,1,149.99,2019-12-04 12:42:00,593 Cherry St, Los Angeles,CA,90001 +296544,Lightning Charging Cable,1,14.95,2019-12-16 18:25:00,942 Center St, Atlanta,GA,30301 +296545,USB-C Charging Cable,1,11.95,2019-12-25 19:20:00,52 Maple St, Austin,TX,73301 +296546,Macbook Pro Laptop,1,1700.0,2019-12-01 11:25:00,565 Forest St, San Francisco,CA,94016 +296547,ThinkPad Laptop,1,999.99,2019-12-31 01:16:00,225 14th St, Boston,MA,02215 +296548,Bose SoundSport Headphones,1,99.99,2019-12-04 20:45:00,92 Center St, Los Angeles,CA,90001 +296549,34in Ultrawide Monitor,1,379.99,2019-12-29 13:19:00,740 7th St, New York City,NY,10001 +296550,AA Batteries (4-pack),1,3.84,2019-12-12 10:31:00,210 Center St, Dallas,TX,75001 +296551,Apple Airpods Headphones,1,150.0,2019-12-29 14:59:00,753 1st St, Los Angeles,CA,90001 +296552,AAA Batteries (4-pack),2,2.99,2019-12-22 15:51:00,666 1st St, Atlanta,GA,30301 +296553,USB-C Charging Cable,1,11.95,2019-12-18 22:42:00,61 Walnut St, San Francisco,CA,94016 +296554,27in FHD Monitor,1,149.99,2019-12-19 21:22:00,983 Hickory St, Portland,OR,97035 +296555,Lightning Charging Cable,1,14.95,2019-12-30 04:32:00,193 Church St, Boston,MA,02215 +296556,USB-C Charging Cable,1,11.95,2019-12-01 23:00:00,391 South St, Dallas,TX,75001 +296557,Wired Headphones,1,11.99,2019-12-02 11:33:00,89 Walnut St, San Francisco,CA,94016 +296558,Wired Headphones,1,11.99,2019-12-16 17:43:00,979 Wilson St, Seattle,WA,98101 +296559,Bose SoundSport Headphones,1,99.99,2019-12-03 19:30:00,804 West St, San Francisco,CA,94016 +296560,AA Batteries (4-pack),3,3.84,2019-12-27 15:56:00,616 Elm St, Portland,OR,97035 +296561,Lightning Charging Cable,1,14.95,2019-12-04 16:23:00,146 North St, Los Angeles,CA,90001 +296562,Apple Airpods Headphones,1,150.0,2019-12-16 15:45:00,748 Spruce St, San Francisco,CA,94016 +296563,Macbook Pro Laptop,1,1700.0,2019-12-26 17:45:00,64 South St, Portland,OR,97035 +296564,Lightning Charging Cable,1,14.95,2019-12-07 08:17:00,927 Hickory St, Seattle,WA,98101 +296565,AAA Batteries (4-pack),1,2.99,2019-12-23 14:19:00,915 Wilson St, Boston,MA,02215 +296566,Lightning Charging Cable,1,14.95,2019-12-07 15:14:00,343 Park St, New York City,NY,10001 +296567,AA Batteries (4-pack),1,3.84,2019-12-27 12:21:00,77 Cedar St, Atlanta,GA,30301 +296568,27in FHD Monitor,1,149.99,2019-12-30 19:52:00,884 Highland St, San Francisco,CA,94016 +296569,Lightning Charging Cable,1,14.95,2019-12-25 10:32:00,733 10th St, Atlanta,GA,30301 +296570,AAA Batteries (4-pack),1,2.99,2019-12-20 17:12:00,769 Ridge St, San Francisco,CA,94016 +296571,USB-C Charging Cable,1,11.95,2019-12-27 13:14:00,792 8th St, Dallas,TX,75001 +296572,USB-C Charging Cable,1,11.95,2019-12-29 08:53:00,866 Washington St, San Francisco,CA,94016 +296573,USB-C Charging Cable,1,11.95,2019-12-09 14:14:00,557 Spruce St, San Francisco,CA,94016 +296574,iPhone,1,700.0,2019-12-17 20:17:00,709 Spruce St, Los Angeles,CA,90001 +296574,Wired Headphones,1,11.99,2019-12-17 20:17:00,709 Spruce St, Los Angeles,CA,90001 +296575,Bose SoundSport Headphones,1,99.99,2019-12-10 22:04:00,780 North St, San Francisco,CA,94016 +296576,Wired Headphones,1,11.99,2019-12-29 14:19:00,569 13th St, San Francisco,CA,94016 +296577,AA Batteries (4-pack),1,3.84,2019-12-24 20:01:00,406 Walnut St, San Francisco,CA,94016 +296578,Apple Airpods Headphones,1,150.0,2019-12-13 21:51:00,661 Lake St, Atlanta,GA,30301 +296579,USB-C Charging Cable,2,11.95,2019-12-31 11:22:00,391 Willow St, Boston,MA,02215 +296580,Bose SoundSport Headphones,1,99.99,2019-12-12 18:24:00,801 Johnson St, San Francisco,CA,94016 +296581,Wired Headphones,1,11.99,2019-12-03 22:39:00,306 Lincoln St, Atlanta,GA,30301 +296582,Apple Airpods Headphones,1,150.0,2019-12-17 09:45:00,319 Ridge St, Atlanta,GA,30301 +296583,Wired Headphones,1,11.99,2019-12-30 18:47:00,141 Jefferson St, Seattle,WA,98101 +296584,Google Phone,1,600.0,2019-12-07 18:54:00,586 Johnson St, San Francisco,CA,94016 +296585,Lightning Charging Cable,1,14.95,2019-12-09 20:45:00,890 Park St, Portland,ME,04101 +296586,AA Batteries (4-pack),1,3.84,2019-12-10 06:54:00,12 Ridge St, San Francisco,CA,94016 +296587,Apple Airpods Headphones,1,150.0,2019-12-07 18:07:00,589 10th St, Seattle,WA,98101 +296588,USB-C Charging Cable,1,11.95,2019-12-01 10:39:00,728 Elm St, New York City,NY,10001 +296589,27in 4K Gaming Monitor,1,389.99,2019-12-15 19:44:00,995 Chestnut St, Los Angeles,CA,90001 +296590,Lightning Charging Cable,1,14.95,2019-12-25 15:22:00,938 1st St, Boston,MA,02215 +296591,Apple Airpods Headphones,1,150.0,2019-12-01 13:11:00,332 Sunset St, New York City,NY,10001 +296592,27in FHD Monitor,1,149.99,2019-12-20 20:20:00,368 4th St, Boston,MA,02215 +296593,Apple Airpods Headphones,1,150.0,2019-12-04 00:29:00,560 Cedar St, Atlanta,GA,30301 +296594,Apple Airpods Headphones,1,150.0,2019-12-22 17:24:00,629 Church St, Austin,TX,73301 +296595,Lightning Charging Cable,1,14.95,2019-12-17 16:43:00,793 10th St, Los Angeles,CA,90001 +296596,USB-C Charging Cable,1,11.95,2019-12-07 18:38:00,182 13th St, New York City,NY,10001 +296597,AAA Batteries (4-pack),1,2.99,2019-12-03 13:05:00,527 Sunset St, Seattle,WA,98101 +296598,AAA Batteries (4-pack),3,2.99,2019-12-23 10:08:00,757 Lake St, Seattle,WA,98101 +296599,Apple Airpods Headphones,1,150.0,2019-12-06 20:13:00,328 Jefferson St, San Francisco,CA,94016 +296600,Apple Airpods Headphones,1,150.0,2019-12-15 17:51:00,891 Willow St, Los Angeles,CA,90001 +296601,Google Phone,1,600.0,2019-12-24 20:22:00,115 River St, Los Angeles,CA,90001 +296602,ThinkPad Laptop,1,999.99,2019-12-03 07:45:00,313 Cedar St, Atlanta,GA,30301 +296603,AAA Batteries (4-pack),1,2.99,2019-12-02 20:21:00,665 10th St, San Francisco,CA,94016 +296604,USB-C Charging Cable,1,11.95,2019-12-09 13:49:00,754 Center St, San Francisco,CA,94016 +296605,Apple Airpods Headphones,1,150.0,2019-12-26 10:48:00,127 2nd St, Dallas,TX,75001 +296606,Wired Headphones,1,11.99,2019-12-02 10:08:00,585 Main St, Dallas,TX,75001 +296607,AA Batteries (4-pack),3,3.84,2019-12-25 12:00:00,549 Jackson St, San Francisco,CA,94016 +296608,ThinkPad Laptop,1,999.99,2019-12-18 14:20:00,987 River St, Atlanta,GA,30301 +296609,Google Phone,1,600.0,2019-12-28 16:32:00,176 Sunset St, Boston,MA,02215 +296609,USB-C Charging Cable,1,11.95,2019-12-28 16:32:00,176 Sunset St, Boston,MA,02215 +296610,Bose SoundSport Headphones,1,99.99,2019-12-25 14:48:00,245 9th St, Portland,OR,97035 +296611,USB-C Charging Cable,1,11.95,2019-12-25 16:02:00,603 14th St, New York City,NY,10001 +296612,34in Ultrawide Monitor,1,379.99,2019-12-02 10:40:00,161 Sunset St, New York City,NY,10001 +296613,Apple Airpods Headphones,1,150.0,2019-12-08 15:27:00,484 5th St, San Francisco,CA,94016 +296614,Wired Headphones,1,11.99,2019-12-09 10:13:00,590 Willow St, Atlanta,GA,30301 +296615,Google Phone,1,600.0,2019-12-20 18:35:00,909 Ridge St, San Francisco,CA,94016 +296616,AAA Batteries (4-pack),1,2.99,2019-12-09 21:47:00,543 Hill St, Seattle,WA,98101 +296617,ThinkPad Laptop,1,999.99,2019-12-26 21:32:00,248 Washington St, San Francisco,CA,94016 +296618,Wired Headphones,1,11.99,2019-12-29 15:13:00,678 Hickory St, New York City,NY,10001 +296619,27in 4K Gaming Monitor,1,389.99,2019-12-11 12:46:00,543 4th St, Dallas,TX,75001 +296620,iPhone,1,700.0,2019-12-23 19:02:00,139 Cedar St, Seattle,WA,98101 +296621,AAA Batteries (4-pack),1,2.99,2019-12-16 10:39:00,412 Sunset St, Seattle,WA,98101 +296622,iPhone,1,700.0,2019-12-18 23:48:00,537 Sunset St, Dallas,TX,75001 +296623,20in Monitor,1,109.99,2019-12-29 00:04:00,764 Elm St, Boston,MA,02215 +296624,Wired Headphones,1,11.99,2019-12-23 15:49:00,727 Sunset St, San Francisco,CA,94016 +296625,Macbook Pro Laptop,1,1700.0,2019-12-25 20:00:00,54 Church St, Boston,MA,02215 +296626,AA Batteries (4-pack),2,3.84,2019-12-24 10:31:00,533 Washington St, New York City,NY,10001 +296627,Lightning Charging Cable,2,14.95,2019-12-18 11:58:00,780 Johnson St, Boston,MA,02215 +296628,Flatscreen TV,1,300.0,2019-12-23 16:31:00,617 14th St, New York City,NY,10001 +296629,Bose SoundSport Headphones,1,99.99,2019-12-16 21:29:00,262 8th St, Dallas,TX,75001 +296630,Lightning Charging Cable,1,14.95,2019-12-30 15:42:00,415 Sunset St, Seattle,WA,98101 +296631,27in 4K Gaming Monitor,1,389.99,2019-12-20 20:23:00,389 5th St, San Francisco,CA,94016 +296632,Wired Headphones,1,11.99,2019-12-17 13:01:00,674 Washington St, San Francisco,CA,94016 +296633,Wired Headphones,2,11.99,2019-12-18 23:04:00,25 Lincoln St, Portland,OR,97035 +296634,Bose SoundSport Headphones,1,99.99,2019-12-17 10:26:00,520 Meadow St, San Francisco,CA,94016 +296635,Apple Airpods Headphones,1,150.0,2019-12-02 10:27:00,859 Washington St, Los Angeles,CA,90001 +296636,Apple Airpods Headphones,1,150.0,2019-12-06 21:16:00,988 6th St, Portland,OR,97035 +296637,Wired Headphones,1,11.99,2019-12-27 23:55:00,152 Cherry St, San Francisco,CA,94016 +296638,Apple Airpods Headphones,1,150.0,2019-12-21 17:55:00,642 Park St, Dallas,TX,75001 +296639,27in FHD Monitor,1,149.99,2019-12-25 11:35:00,860 7th St, New York City,NY,10001 +296640,Apple Airpods Headphones,1,150.0,2019-12-29 22:47:00,185 Main St, Los Angeles,CA,90001 +296641,iPhone,1,700.0,2019-12-29 15:57:00,148 Sunset St, Los Angeles,CA,90001 +296641,Wired Headphones,1,11.99,2019-12-29 15:57:00,148 Sunset St, Los Angeles,CA,90001 +296642,AAA Batteries (4-pack),1,2.99,2019-12-29 22:42:00,369 10th St, San Francisco,CA,94016 +296643,Wired Headphones,1,11.99,2019-12-15 17:21:00,712 Main St, Dallas,TX,75001 +296644,Lightning Charging Cable,1,14.95,2019-12-15 21:12:00,580 Pine St, San Francisco,CA,94016 +296645,27in FHD Monitor,1,149.99,2019-12-22 15:29:00,609 Washington St, San Francisco,CA,94016 +296646,AAA Batteries (4-pack),3,2.99,2019-12-28 12:32:00,299 Washington St, Atlanta,GA,30301 +296647,Macbook Pro Laptop,1,1700.0,2019-12-09 16:09:00,86 6th St, New York City,NY,10001 +296648,Bose SoundSport Headphones,1,99.99,2019-12-10 13:40:00,547 4th St, Austin,TX,73301 +296649,27in 4K Gaming Monitor,1,389.99,2019-12-04 20:30:00,605 14th St, San Francisco,CA,94016 +296650,Apple Airpods Headphones,1,150.0,2019-12-02 16:38:00,734 10th St, Los Angeles,CA,90001 +296651,34in Ultrawide Monitor,1,379.99,2019-12-03 12:53:00,188 Hickory St, San Francisco,CA,94016 +296652,Apple Airpods Headphones,1,150.0,2019-12-30 19:55:00,48 Willow St, Austin,TX,73301 +296653,Google Phone,1,600.0,2019-12-14 10:19:00,964 Lakeview St, Boston,MA,02215 +296653,Wired Headphones,1,11.99,2019-12-14 10:19:00,964 Lakeview St, Boston,MA,02215 +296654,AA Batteries (4-pack),1,3.84,2019-12-16 22:46:00,80 Dogwood St, Austin,TX,73301 +296655,USB-C Charging Cable,1,11.95,2019-12-14 09:55:00,823 Lakeview St, San Francisco,CA,94016 +296656,AAA Batteries (4-pack),1,2.99,2019-12-28 10:36:00,937 5th St, Atlanta,GA,30301 +296657,iPhone,1,700.0,2019-12-05 18:26:00,855 Wilson St, San Francisco,CA,94016 +296658,27in 4K Gaming Monitor,1,389.99,2019-12-10 00:57:00,454 13th St, Seattle,WA,98101 +296659,Flatscreen TV,1,300.0,2019-12-12 12:43:00,214 Forest St, San Francisco,CA,94016 +296660,AAA Batteries (4-pack),2,2.99,2019-12-02 20:57:00,232 West St, San Francisco,CA,94016 +296661,20in Monitor,1,109.99,2019-12-29 22:30:00,476 Ridge St, Los Angeles,CA,90001 +296662,27in FHD Monitor,1,149.99,2019-12-15 20:28:00,550 Johnson St, Austin,TX,73301 +296663,Google Phone,1,600.0,2019-12-14 09:19:00,835 13th St, New York City,NY,10001 +296664,20in Monitor,1,109.99,2019-12-16 10:15:00,460 Highland St, New York City,NY,10001 +296665,AAA Batteries (4-pack),1,2.99,2019-12-29 20:37:00,336 Wilson St, Los Angeles,CA,90001 +296666,Lightning Charging Cable,1,14.95,2019-12-05 20:32:00,228 Johnson St, San Francisco,CA,94016 +296667,Apple Airpods Headphones,1,150.0,2019-12-20 18:55:00,61 Meadow St, Portland,OR,97035 +296668,AAA Batteries (4-pack),2,2.99,2019-12-20 16:07:00,535 7th St, San Francisco,CA,94016 +296668,AAA Batteries (4-pack),4,2.99,2019-12-20 16:07:00,535 7th St, San Francisco,CA,94016 +296669,Lightning Charging Cable,1,14.95,2019-12-28 05:47:00,220 Meadow St, San Francisco,CA,94016 +296670,Vareebadd Phone,1,400.0,2019-12-09 06:47:00,918 Ridge St, San Francisco,CA,94016 +296670,USB-C Charging Cable,1,11.95,2019-12-09 06:47:00,918 Ridge St, San Francisco,CA,94016 +296671,Lightning Charging Cable,1,14.95,2019-12-12 08:35:00,649 Maple St, San Francisco,CA,94016 +296672,USB-C Charging Cable,2,11.95,2019-12-24 17:39:00,348 6th St, Los Angeles,CA,90001 +296673,AAA Batteries (4-pack),2,2.99,2019-12-31 18:14:00,620 Spruce St, Boston,MA,02215 +296674,Google Phone,1,600.0,2019-12-03 18:27:00,258 6th St, Los Angeles,CA,90001 +296675,Bose SoundSport Headphones,1,99.99,2019-12-06 10:17:00,278 Center St, Dallas,TX,75001 +296676,AAA Batteries (4-pack),2,2.99,2019-12-25 13:41:00,870 Hill St, San Francisco,CA,94016 +296677,34in Ultrawide Monitor,1,379.99,2019-12-20 13:07:00,909 Wilson St, San Francisco,CA,94016 +296678,27in FHD Monitor,1,149.99,2019-12-22 10:53:00,581 Center St, Seattle,WA,98101 +296679,Wired Headphones,1,11.99,2019-12-20 13:05:00,882 Lincoln St, Los Angeles,CA,90001 +296680,AA Batteries (4-pack),1,3.84,2019-12-05 19:23:00,796 Willow St, Boston,MA,02215 +296681,AAA Batteries (4-pack),1,2.99,2019-12-10 00:18:00,786 6th St, Dallas,TX,75001 +296682,Lightning Charging Cable,1,14.95,2019-12-16 21:41:00,182 Wilson St, Los Angeles,CA,90001 +296683,ThinkPad Laptop,1,999.99,2019-12-05 20:01:00,22 13th St, Seattle,WA,98101 +296684,Bose SoundSport Headphones,1,99.99,2019-12-15 15:27:00,381 Main St, Los Angeles,CA,90001 +296685,Apple Airpods Headphones,1,150.0,2019-12-05 15:37:00,275 Maple St, Austin,TX,73301 +296686,27in 4K Gaming Monitor,1,389.99,2019-12-09 21:39:00,118 Johnson St, Dallas,TX,75001 +296687,Lightning Charging Cable,1,14.95,2019-12-07 21:39:00,312 Maple St, Atlanta,GA,30301 +296687,27in 4K Gaming Monitor,1,389.99,2019-12-07 21:39:00,312 Maple St, Atlanta,GA,30301 +296688,Macbook Pro Laptop,1,1700.0,2019-12-21 10:03:00,717 Maple St, Boston,MA,02215 +296689,27in FHD Monitor,1,149.99,2019-12-06 13:09:00,121 Jackson St, Portland,OR,97035 +296690,20in Monitor,1,109.99,2019-12-02 19:58:00,500 Maple St, Los Angeles,CA,90001 +296691,20in Monitor,1,109.99,2019-12-09 10:19:00,655 Chestnut St, Los Angeles,CA,90001 +296692,Bose SoundSport Headphones,1,99.99,2019-12-27 22:29:00,788 9th St, New York City,NY,10001 +296693,Bose SoundSport Headphones,1,99.99,2019-12-04 17:46:00,910 Hickory St, New York City,NY,10001 +296694,20in Monitor,1,109.99,2019-12-20 12:08:00,307 5th St, San Francisco,CA,94016 +296695,27in FHD Monitor,1,149.99,2019-12-06 18:58:00,960 Sunset St, Boston,MA,02215 +296696,Lightning Charging Cable,1,14.95,2019-12-10 10:03:00,743 7th St, Seattle,WA,98101 +296697,Lightning Charging Cable,1,14.95,2019-12-05 09:14:00,395 Pine St, Seattle,WA,98101 +296698,Wired Headphones,1,11.99,2019-12-13 22:02:00,676 13th St, Atlanta,GA,30301 +296699,34in Ultrawide Monitor,1,379.99,2019-12-09 10:24:00,129 Center St, Dallas,TX,75001 +296700,USB-C Charging Cable,1,11.95,2019-12-17 12:02:00,300 Chestnut St, Atlanta,GA,30301 +296701,Macbook Pro Laptop,1,1700.0,2019-12-16 08:14:00,999 Cedar St, Boston,MA,02215 +296702,iPhone,1,700.0,2019-12-13 13:49:00,903 North St, San Francisco,CA,94016 +296703,USB-C Charging Cable,1,11.95,2019-12-08 20:06:00,380 12th St, New York City,NY,10001 +296704,20in Monitor,1,109.99,2019-12-09 10:57:00,294 9th St, San Francisco,CA,94016 +296705,AAA Batteries (4-pack),1,2.99,2019-12-11 11:07:00,664 West St, Los Angeles,CA,90001 +296706,Apple Airpods Headphones,1,150.0,2019-12-29 16:30:00,330 Spruce St, Austin,TX,73301 +296707,Apple Airpods Headphones,1,150.0,2019-12-14 17:13:00,199 Forest St, San Francisco,CA,94016 +296707,Wired Headphones,1,11.99,2019-12-14 17:13:00,199 Forest St, San Francisco,CA,94016 +296708,iPhone,1,700.0,2019-12-02 22:20:00,624 Lakeview St, Atlanta,GA,30301 +296709,Flatscreen TV,1,300.0,2019-12-16 21:31:00,960 Elm St, Seattle,WA,98101 +296710,Lightning Charging Cable,1,14.95,2019-12-12 18:26:00,953 Cedar St, San Francisco,CA,94016 +296711,USB-C Charging Cable,1,11.95,2019-12-06 17:40:00,492 Lake St, Atlanta,GA,30301 +296712,AAA Batteries (4-pack),1,2.99,2019-12-07 12:03:00,432 Forest St, Los Angeles,CA,90001 +296713,Wired Headphones,2,11.99,2019-12-15 23:39:00,182 Main St, New York City,NY,10001 +296714,Wired Headphones,1,11.99,2019-12-07 08:49:00,227 2nd St, San Francisco,CA,94016 +296715,AAA Batteries (4-pack),1,2.99,2019-12-01 14:37:00,688 Dogwood St, Seattle,WA,98101 +296716,Lightning Charging Cable,1,14.95,2019-12-15 20:42:00,451 Jefferson St, Dallas,TX,75001 +296717,USB-C Charging Cable,1,11.95,2019-12-13 14:21:00,289 Cherry St, New York City,NY,10001 +296718,AAA Batteries (4-pack),5,2.99,2019-12-11 10:23:00,576 Johnson St, Seattle,WA,98101 +296719,AA Batteries (4-pack),2,3.84,2019-12-08 17:18:00,867 Center St, New York City,NY,10001 +296720,AAA Batteries (4-pack),1,2.99,2019-12-16 08:40:00,640 8th St, Atlanta,GA,30301 +296721,AA Batteries (4-pack),1,3.84,2019-12-20 12:48:00,458 Wilson St, San Francisco,CA,94016 +296722,USB-C Charging Cable,1,11.95,2019-12-12 14:06:00,511 Johnson St, San Francisco,CA,94016 +296723,USB-C Charging Cable,1,11.95,2019-12-31 12:19:00,15 Center St, Boston,MA,02215 +296724,AAA Batteries (4-pack),2,2.99,2019-12-24 17:37:00,459 4th St, Los Angeles,CA,90001 +296725,Google Phone,1,600.0,2019-12-13 16:06:00,607 Main St, Los Angeles,CA,90001 +296726,34in Ultrawide Monitor,1,379.99,2019-12-14 17:33:00,662 13th St, San Francisco,CA,94016 +296727,Flatscreen TV,1,300.0,2019-12-09 19:24:00,899 Walnut St, New York City,NY,10001 +296728,Wired Headphones,1,11.99,2019-12-09 12:44:00,799 Johnson St, San Francisco,CA,94016 +296729,34in Ultrawide Monitor,1,379.99,2019-12-07 00:54:00,429 Walnut St, Dallas,TX,75001 +296730,27in 4K Gaming Monitor,1,389.99,2019-12-16 07:29:00,818 Cedar St, Los Angeles,CA,90001 +296730,Wired Headphones,2,11.99,2019-12-16 07:29:00,818 Cedar St, Los Angeles,CA,90001 +296731,Google Phone,1,600.0,2019-12-02 20:50:00,482 Meadow St, San Francisco,CA,94016 +296732,AAA Batteries (4-pack),1,2.99,2019-12-25 21:32:00,338 2nd St, Atlanta,GA,30301 +296733,Wired Headphones,1,11.99,2019-12-02 10:17:00,696 10th St, San Francisco,CA,94016 +296734,Bose SoundSport Headphones,1,99.99,2019-12-16 18:49:00,837 Forest St, New York City,NY,10001 +296735,Lightning Charging Cable,1,14.95,2019-12-21 08:51:00,520 Willow St, Boston,MA,02215 +296736,AA Batteries (4-pack),1,3.84,2019-12-01 11:12:00,34 9th St, Dallas,TX,75001 +296737,AA Batteries (4-pack),2,3.84,2019-12-17 08:24:00,140 Cherry St, Seattle,WA,98101 +296738,20in Monitor,1,109.99,2019-12-17 14:57:00,207 Lakeview St, San Francisco,CA,94016 +296739,Wired Headphones,1,11.99,2019-12-18 14:33:00,397 Cedar St, Los Angeles,CA,90001 +296740,20in Monitor,1,109.99,2019-12-06 06:13:00,217 Forest St, Los Angeles,CA,90001 +296741,Google Phone,1,600.0,2019-12-09 06:31:00,961 Chestnut St, Boston,MA,02215 +296742,AAA Batteries (4-pack),2,2.99,2019-12-02 08:13:00,821 13th St, Seattle,WA,98101 +296743,AA Batteries (4-pack),1,3.84,2019-12-14 14:44:00,246 Jackson St, Los Angeles,CA,90001 +296744,Wired Headphones,1,11.99,2019-12-05 18:01:00,363 Cherry St, New York City,NY,10001 +296745,Wired Headphones,1,11.99,2019-12-02 10:42:00,379 Ridge St, New York City,NY,10001 +296746,27in FHD Monitor,1,149.99,2019-12-06 14:12:00,43 7th St, New York City,NY,10001 +296747,AA Batteries (4-pack),1,3.84,2019-12-15 05:24:00,644 11th St, Los Angeles,CA,90001 +296748,AAA Batteries (4-pack),1,2.99,2019-12-17 18:47:00,289 West St, New York City,NY,10001 +296749,34in Ultrawide Monitor,1,379.99,2019-12-05 21:21:00,570 Adams St, Seattle,WA,98101 +296750,Apple Airpods Headphones,1,150.0,2019-12-20 10:08:00,833 Maple St, Los Angeles,CA,90001 +296751,34in Ultrawide Monitor,1,379.99,2019-12-07 08:24:00,231 11th St, San Francisco,CA,94016 +296752,AA Batteries (4-pack),1,3.84,2019-12-27 03:44:00,80 13th St, New York City,NY,10001 +296753,USB-C Charging Cable,1,11.95,2019-12-17 23:17:00,541 Cherry St, Seattle,WA,98101 +296754,USB-C Charging Cable,2,11.95,2019-12-31 14:27:00,780 2nd St, Seattle,WA,98101 +296755,AAA Batteries (4-pack),2,2.99,2019-12-31 00:27:00,500 Meadow St, Atlanta,GA,30301 +296756,AAA Batteries (4-pack),1,2.99,2019-12-14 14:09:00,976 Lake St, Seattle,WA,98101 +296757,Apple Airpods Headphones,1,150.0,2019-12-24 18:46:00,80 Hill St, Boston,MA,02215 +296758,Lightning Charging Cable,1,14.95,2019-12-14 17:11:00,884 Hickory St, San Francisco,CA,94016 +296759,Apple Airpods Headphones,1,150.0,2019-12-28 16:22:00,703 9th St, Los Angeles,CA,90001 +296760,Flatscreen TV,1,300.0,2019-12-18 13:11:00,569 Center St, San Francisco,CA,94016 +296761,USB-C Charging Cable,1,11.95,2019-12-24 23:04:00,445 Johnson St, Austin,TX,73301 +296762,AA Batteries (4-pack),1,3.84,2019-12-01 11:25:00,460 Lincoln St, Seattle,WA,98101 +296763,Lightning Charging Cable,1,14.95,2019-12-30 19:01:00,783 Elm St, Atlanta,GA,30301 +296764,34in Ultrawide Monitor,1,379.99,2019-12-06 21:48:00,262 Hickory St, Atlanta,GA,30301 +296765,Wired Headphones,1,11.99,2019-12-23 20:05:00,892 Sunset St, Los Angeles,CA,90001 +296766,Wired Headphones,1,11.99,2019-12-14 13:11:00,177 Sunset St, New York City,NY,10001 +296767,AA Batteries (4-pack),1,3.84,2019-12-06 14:22:00,138 12th St, Seattle,WA,98101 +296768,AA Batteries (4-pack),2,3.84,2019-12-10 14:33:00,409 Washington St, San Francisco,CA,94016 +296769,Vareebadd Phone,1,400.0,2019-12-13 22:16:00,868 Elm St, Los Angeles,CA,90001 +296770,27in FHD Monitor,1,149.99,2019-12-24 21:18:00,621 Pine St, Los Angeles,CA,90001 +296771,27in 4K Gaming Monitor,1,389.99,2019-12-27 18:38:00,429 Madison St, Seattle,WA,98101 +296772,USB-C Charging Cable,1,11.95,2019-12-17 13:32:00,904 Spruce St, Boston,MA,02215 +296773,Wired Headphones,1,11.99,2019-12-16 07:25:00,796 South St, Dallas,TX,75001 +296774,AAA Batteries (4-pack),1,2.99,2019-12-26 20:27:00,174 8th St, Boston,MA,02215 +296775,27in 4K Gaming Monitor,1,389.99,2019-12-07 02:05:00,23 Adams St, Los Angeles,CA,90001 +296776,Wired Headphones,1,11.99,2019-12-05 09:33:00,709 7th St, Atlanta,GA,30301 +296777,USB-C Charging Cable,2,11.95,2019-12-14 16:33:00,140 6th St, San Francisco,CA,94016 +296778,Lightning Charging Cable,1,14.95,2019-12-14 10:31:00,703 14th St, New York City,NY,10001 +296779,ThinkPad Laptop,1,999.99,2019-12-20 14:48:00,769 North St, San Francisco,CA,94016 +296780,Wired Headphones,1,11.99,2019-12-08 13:17:00,226 Cherry St, Los Angeles,CA,90001 +296781,USB-C Charging Cable,1,11.95,2019-12-27 20:50:00,74 Meadow St, San Francisco,CA,94016 +296782,Google Phone,1,600.0,2019-12-02 10:26:00,15 11th St, San Francisco,CA,94016 +296783,27in 4K Gaming Monitor,1,389.99,2019-12-03 22:54:00,54 North St, Seattle,WA,98101 +296784,Wired Headphones,3,11.99,2019-12-28 18:09:00,408 10th St, Seattle,WA,98101 +296785,USB-C Charging Cable,1,11.95,2019-12-26 09:24:00,718 Madison St, New York City,NY,10001 +296786,AAA Batteries (4-pack),2,2.99,2019-12-05 17:57:00,891 Adams St, Seattle,WA,98101 +296787,Lightning Charging Cable,1,14.95,2019-12-12 19:22:00,367 4th St, San Francisco,CA,94016 +296788,USB-C Charging Cable,1,11.95,2019-12-30 20:55:00,913 Highland St, New York City,NY,10001 +296789,Apple Airpods Headphones,1,150.0,2019-12-24 13:00:00,733 Willow St, Los Angeles,CA,90001 +296790,AAA Batteries (4-pack),1,2.99,2019-12-09 06:47:00,577 Johnson St, San Francisco,CA,94016 +296791,Lightning Charging Cable,1,14.95,2019-12-04 22:57:00,678 14th St, Portland,OR,97035 +296792,AAA Batteries (4-pack),1,2.99,2019-12-02 12:16:00,900 Elm St, Dallas,TX,75001 +296793,AA Batteries (4-pack),1,3.84,2019-12-23 23:34:00,676 Chestnut St, Atlanta,GA,30301 +296794,iPhone,1,700.0,2019-12-15 19:02:00,788 Hill St, New York City,NY,10001 +296795,AAA Batteries (4-pack),1,2.99,2019-12-23 15:53:00,666 Willow St, San Francisco,CA,94016 +296796,USB-C Charging Cable,1,11.95,2019-12-15 23:39:00,133 Adams St, Los Angeles,CA,90001 +296797,Macbook Pro Laptop,1,1700.0,2019-12-14 11:01:00,80 1st St, New York City,NY,10001 +296797,Flatscreen TV,1,300.0,2019-12-14 11:01:00,80 1st St, New York City,NY,10001 +296798,AAA Batteries (4-pack),2,2.99,2019-12-19 18:15:00,360 7th St, San Francisco,CA,94016 +296799,Wired Headphones,1,11.99,2019-12-18 19:00:00,160 Johnson St, Seattle,WA,98101 +296800,AA Batteries (4-pack),1,3.84,2019-12-27 17:05:00,976 Maple St, Los Angeles,CA,90001 +296801,Lightning Charging Cable,1,14.95,2019-12-14 13:56:00,802 Hickory St, Dallas,TX,75001 +296802,Bose SoundSport Headphones,1,99.99,2019-12-08 23:46:00,366 7th St, Los Angeles,CA,90001 +296803,Lightning Charging Cable,1,14.95,2019-12-03 10:10:00,598 4th St, Los Angeles,CA,90001 +296804,Lightning Charging Cable,1,14.95,2019-12-31 20:49:00,114 10th St, Atlanta,GA,30301 +296804,AA Batteries (4-pack),1,3.84,2019-12-31 20:49:00,114 10th St, Atlanta,GA,30301 +296805,Apple Airpods Headphones,1,150.0,2019-12-16 08:52:00,771 Madison St, Dallas,TX,75001 +296806,Lightning Charging Cable,1,14.95,2019-12-28 09:34:00,163 Ridge St, Austin,TX,73301 +296807,AAA Batteries (4-pack),1,2.99,2019-12-13 19:56:00,781 Madison St, Los Angeles,CA,90001 +296808,Apple Airpods Headphones,1,150.0,2019-12-21 19:04:00,268 Hill St, Portland,OR,97035 +296809,34in Ultrawide Monitor,1,379.99,2019-12-26 11:31:00,757 Dogwood St, Seattle,WA,98101 +296810,Wired Headphones,1,11.99,2019-12-10 17:31:00,517 Park St, Boston,MA,02215 +296811,34in Ultrawide Monitor,1,379.99,2019-12-10 07:39:00,485 11th St, Portland,OR,97035 +296812,Lightning Charging Cable,1,14.95,2019-12-17 12:06:00,243 Maple St, Dallas,TX,75001 +296813,34in Ultrawide Monitor,1,379.99,2019-12-11 22:12:00,986 Elm St, Los Angeles,CA,90001 +296814,AA Batteries (4-pack),1,3.84,2019-12-24 13:23:00,613 Washington St, Portland,OR,97035 +296815,AA Batteries (4-pack),1,3.84,2019-12-20 23:00:00,214 Spruce St, Atlanta,GA,30301 +296816,Wired Headphones,1,11.99,2019-12-07 11:26:00,601 Center St, Dallas,TX,75001 +296817,20in Monitor,1,109.99,2019-12-20 15:06:00,541 Johnson St, San Francisco,CA,94016 +296818,Lightning Charging Cable,1,14.95,2019-12-07 13:26:00,208 4th St, Austin,TX,73301 +296819,Flatscreen TV,1,300.0,2019-12-15 10:27:00,530 Wilson St, Los Angeles,CA,90001 +296820,USB-C Charging Cable,2,11.95,2019-12-05 12:36:00,546 Elm St, Portland,OR,97035 +296821,AAA Batteries (4-pack),2,2.99,2019-12-06 17:07:00,840 Jefferson St, Seattle,WA,98101 +296822,Bose SoundSport Headphones,1,99.99,2019-12-21 17:12:00,310 Center St, New York City,NY,10001 +296823,Lightning Charging Cable,1,14.95,2019-12-06 00:27:00,640 Lincoln St, Boston,MA,02215 +296824,Apple Airpods Headphones,1,150.0,2019-12-05 10:06:00,339 5th St, San Francisco,CA,94016 +296825,USB-C Charging Cable,1,11.95,2019-12-21 12:21:00,2 Sunset St, San Francisco,CA,94016 +296826,USB-C Charging Cable,1,11.95,2019-12-06 00:06:00,950 13th St, Boston,MA,02215 +296827,Apple Airpods Headphones,1,150.0,2019-12-28 13:36:00,99 Center St, New York City,NY,10001 +296828,Wired Headphones,1,11.99,2019-12-22 14:04:00,810 2nd St, Boston,MA,02215 +296829,AA Batteries (4-pack),1,3.84,2019-12-22 13:57:00,100 Cedar St, New York City,NY,10001 +296830,Flatscreen TV,1,300.0,2019-12-23 23:00:00,797 Cedar St, Austin,TX,73301 +296831,34in Ultrawide Monitor,1,379.99,2019-12-31 11:18:00,420 Lincoln St, Boston,MA,02215 +296832,Apple Airpods Headphones,1,150.0,2019-12-14 13:08:00,392 Sunset St, Boston,MA,02215 +296833,Apple Airpods Headphones,1,150.0,2019-12-19 11:03:00,186 Elm St, New York City,NY,10001 +296834,USB-C Charging Cable,1,11.95,2019-12-11 17:46:00,328 12th St, Austin,TX,73301 +296835,Wired Headphones,1,11.99,2019-12-25 19:10:00,488 River St, Austin,TX,73301 +296836,Bose SoundSport Headphones,2,99.99,2019-12-15 12:01:00,783 10th St, Austin,TX,73301 +296837,Wired Headphones,1,11.99,2019-12-23 14:15:00,253 Cedar St, New York City,NY,10001 +296838,Lightning Charging Cable,1,14.95,2019-12-30 16:44:00,242 Lake St, Los Angeles,CA,90001 +296839,Bose SoundSport Headphones,1,99.99,2019-12-15 09:10:00,807 Dogwood St, New York City,NY,10001 +296840,27in 4K Gaming Monitor,1,389.99,2019-12-07 09:28:00,723 Jefferson St, Austin,TX,73301 +296841,iPhone,1,700.0,2019-12-31 11:52:00,431 Lincoln St, Los Angeles,CA,90001 +296841,Wired Headphones,1,11.99,2019-12-31 11:52:00,431 Lincoln St, Los Angeles,CA,90001 +296842,Wired Headphones,1,11.99,2019-12-07 12:30:00,488 Ridge St, New York City,NY,10001 +296843,Lightning Charging Cable,1,14.95,2019-12-24 19:38:00,168 2nd St, Los Angeles,CA,90001 +296844,34in Ultrawide Monitor,1,379.99,2019-12-06 09:31:00,971 Hill St, Dallas,TX,75001 +296845,LG Washing Machine,1,600.0,2019-12-17 16:38:00,930 River St, Atlanta,GA,30301 +296846,34in Ultrawide Monitor,1,379.99,2019-12-21 21:38:00,527 13th St, San Francisco,CA,94016 +296847,27in 4K Gaming Monitor,1,389.99,2019-12-01 17:03:00,596 14th St, San Francisco,CA,94016 +296848,USB-C Charging Cable,1,11.95,2019-12-17 22:45:00,305 11th St, Los Angeles,CA,90001 +296849,Apple Airpods Headphones,1,150.0,2019-12-29 14:36:00,208 Main St, Austin,TX,73301 +296850,Bose SoundSport Headphones,1,99.99,2019-12-29 09:58:00,825 South St, Boston,MA,02215 +296850,AAA Batteries (4-pack),2,2.99,2019-12-29 09:58:00,825 South St, Boston,MA,02215 +296851,USB-C Charging Cable,1,11.95,2019-12-21 02:16:00,621 Hill St, Atlanta,GA,30301 +296852,27in 4K Gaming Monitor,1,389.99,2019-12-10 19:07:00,505 South St, San Francisco,CA,94016 +296853,Wired Headphones,1,11.99,2019-12-23 10:51:00,896 Wilson St, San Francisco,CA,94016 +296854,Bose SoundSport Headphones,1,99.99,2019-12-14 00:51:00,588 West St, San Francisco,CA,94016 +296855,Wired Headphones,1,11.99,2019-12-31 13:39:00,130 12th St, New York City,NY,10001 +296856,Lightning Charging Cable,1,14.95,2019-12-07 21:58:00,618 Spruce St, San Francisco,CA,94016 +296856,27in FHD Monitor,1,149.99,2019-12-07 21:58:00,618 Spruce St, San Francisco,CA,94016 +296857,Apple Airpods Headphones,1,150.0,2019-12-16 17:13:00,953 Meadow St, Los Angeles,CA,90001 +296858,27in 4K Gaming Monitor,1,389.99,2019-12-11 21:10:00,569 Hickory St, Austin,TX,73301 +296859,USB-C Charging Cable,1,11.95,2019-12-08 10:35:00,320 Lincoln St, Atlanta,GA,30301 +296860,Wired Headphones,1,11.99,2019-12-31 12:53:00,437 7th St, San Francisco,CA,94016 +296861,AAA Batteries (4-pack),1,2.99,2019-12-15 18:29:00,462 12th St, New York City,NY,10001 +296862,AA Batteries (4-pack),2,3.84,2019-12-21 09:02:00,767 Park St, San Francisco,CA,94016 +296863,AA Batteries (4-pack),1,3.84,2019-12-10 18:17:00,969 Washington St, Dallas,TX,75001 +296864,USB-C Charging Cable,1,11.95,2019-12-06 16:13:00,238 Adams St, San Francisco,CA,94016 +296865,27in 4K Gaming Monitor,1,389.99,2019-12-02 11:07:00,87 Church St, San Francisco,CA,94016 +296866,USB-C Charging Cable,1,11.95,2019-12-15 20:18:00,820 Washington St, New York City,NY,10001 +296867,Lightning Charging Cable,1,14.95,2019-12-23 16:55:00,429 13th St, Boston,MA,02215 +296868,Apple Airpods Headphones,1,150.0,2019-12-25 16:02:00,440 Chestnut St, New York City,NY,10001 +296869,iPhone,1,700.0,2019-12-06 01:43:00,430 12th St, New York City,NY,10001 +296870,AAA Batteries (4-pack),1,2.99,2019-12-18 18:37:00,333 Washington St, San Francisco,CA,94016 +296871,34in Ultrawide Monitor,1,379.99,2019-12-07 08:36:00,618 Center St, Seattle,WA,98101 +296872,ThinkPad Laptop,1,999.99,2019-12-24 10:53:00,186 Lakeview St, Los Angeles,CA,90001 +296873,Wired Headphones,1,11.99,2019-12-15 23:15:00,613 9th St, San Francisco,CA,94016 +296874,Wired Headphones,1,11.99,2019-12-05 23:56:00,490 Washington St, San Francisco,CA,94016 +296875,USB-C Charging Cable,1,11.95,2019-12-24 20:33:00,297 Lincoln St, Boston,MA,02215 +296876,34in Ultrawide Monitor,1,379.99,2019-12-10 23:17:00,68 14th St, Los Angeles,CA,90001 +296877,Apple Airpods Headphones,1,150.0,2019-12-25 21:18:00,754 North St, Atlanta,GA,30301 +296878,34in Ultrawide Monitor,1,379.99,2019-12-04 22:00:00,232 Chestnut St, New York City,NY,10001 +296879,USB-C Charging Cable,1,11.95,2019-12-11 20:27:00,537 5th St, Los Angeles,CA,90001 +296880,34in Ultrawide Monitor,1,379.99,2019-12-15 13:46:00,501 12th St, Atlanta,GA,30301 +296881,Flatscreen TV,1,300.0,2019-12-06 18:20:00,832 Adams St, San Francisco,CA,94016 +296882,Apple Airpods Headphones,1,150.0,2019-12-06 13:56:00,5 South St, New York City,NY,10001 +296883,AAA Batteries (4-pack),1,2.99,2019-12-23 20:24:00,768 Forest St, Los Angeles,CA,90001 +296884,Lightning Charging Cable,1,14.95,2019-12-11 13:10:00,87 Pine St, Dallas,TX,75001 +296885,Wired Headphones,1,11.99,2019-12-24 09:10:00,936 River St, Portland,OR,97035 +296886,AA Batteries (4-pack),1,3.84,2019-12-15 02:47:00,29 Madison St, Los Angeles,CA,90001 +296887,Apple Airpods Headphones,1,150.0,2019-12-01 09:26:00,718 Spruce St, San Francisco,CA,94016 +296888,AAA Batteries (4-pack),2,2.99,2019-12-27 20:46:00,465 7th St, Dallas,TX,75001 +296889,Flatscreen TV,1,300.0,2019-12-26 20:19:00,706 Hill St, Dallas,TX,75001 +296890,Bose SoundSport Headphones,1,99.99,2019-12-01 19:47:00,434 Cedar St, Los Angeles,CA,90001 +296891,27in FHD Monitor,1,149.99,2019-12-29 09:55:00,881 1st St, Los Angeles,CA,90001 +296892,27in FHD Monitor,1,149.99,2019-12-30 11:46:00,365 South St, Los Angeles,CA,90001 +296893,LG Dryer,1,600.0,2019-12-09 09:49:00,108 Forest St, New York City,NY,10001 +296894,Flatscreen TV,1,300.0,2019-12-16 03:56:00,756 Madison St, Boston,MA,02215 +296895,34in Ultrawide Monitor,1,379.99,2019-12-09 15:17:00,326 Highland St, New York City,NY,10001 +296896,Lightning Charging Cable,1,14.95,2019-12-31 09:53:00,365 Lincoln St, San Francisco,CA,94016 +296897,Lightning Charging Cable,1,14.95,2019-12-23 12:20:00,613 Lake St, Atlanta,GA,30301 +296898,USB-C Charging Cable,1,11.95,2019-12-06 06:23:00,531 14th St, San Francisco,CA,94016 +296899,AAA Batteries (4-pack),1,2.99,2019-12-07 12:15:00,528 Johnson St, San Francisco,CA,94016 +296900,Vareebadd Phone,1,400.0,2019-12-02 20:55:00,237 Dogwood St, San Francisco,CA,94016 +296900,Wired Headphones,1,11.99,2019-12-02 20:55:00,237 Dogwood St, San Francisco,CA,94016 +296901,Lightning Charging Cable,1,14.95,2019-12-21 09:15:00,383 Highland St, New York City,NY,10001 +296902,20in Monitor,1,109.99,2019-12-30 06:38:00,707 Johnson St, Boston,MA,02215 +296903,USB-C Charging Cable,1,11.95,2019-12-16 09:25:00,103 Jackson St, San Francisco,CA,94016 +296904,Wired Headphones,1,11.99,2019-12-13 18:47:00,758 1st St, San Francisco,CA,94016 +296905,Macbook Pro Laptop,1,1700.0,2019-12-11 18:03:00,874 Lakeview St, Dallas,TX,75001 +296906,AAA Batteries (4-pack),4,2.99,2019-12-08 19:38:00,219 Adams St, Los Angeles,CA,90001 +296907,AA Batteries (4-pack),1,3.84,2019-12-15 15:02:00,348 Lakeview St, San Francisco,CA,94016 +296908,AAA Batteries (4-pack),1,2.99,2019-12-23 08:21:00,630 10th St, Los Angeles,CA,90001 +296909,Apple Airpods Headphones,1,150.0,2019-12-26 09:00:00,286 Cherry St, New York City,NY,10001 +296910,Apple Airpods Headphones,1,150.0,2019-12-15 12:52:00,266 12th St, Portland,OR,97035 +296911,34in Ultrawide Monitor,1,379.99,2019-12-26 09:07:00,722 Highland St, Los Angeles,CA,90001 +296912,Apple Airpods Headphones,1,150.0,2019-12-24 13:15:00,50 Adams St, San Francisco,CA,94016 +296913,34in Ultrawide Monitor,1,379.99,2019-12-02 19:46:00,283 Elm St, Dallas,TX,75001 +296914,Macbook Pro Laptop,1,1700.0,2019-12-16 22:41:00,886 Lakeview St, Seattle,WA,98101 +296914,iPhone,1,700.0,2019-12-16 22:41:00,886 Lakeview St, Seattle,WA,98101 +296915,Macbook Pro Laptop,1,1700.0,2019-12-19 20:19:00,433 Cherry St, Atlanta,GA,30301 +296916,iPhone,1,700.0,2019-12-03 13:09:00,427 Cedar St, San Francisco,CA,94016 +296917,Apple Airpods Headphones,1,150.0,2019-12-18 11:57:00,607 7th St, San Francisco,CA,94016 +296918,AA Batteries (4-pack),1,3.84,2019-12-27 23:22:00,773 Johnson St, Los Angeles,CA,90001 +296919,ThinkPad Laptop,1,999.99,2019-12-01 19:41:00,865 12th St, New York City,NY,10001 +296920,AAA Batteries (4-pack),2,2.99,2019-12-03 16:55:00,623 Chestnut St, New York City,NY,10001 +296921,AAA Batteries (4-pack),1,2.99,2019-12-31 12:19:00,659 Forest St, New York City,NY,10001 +296922,Google Phone,1,600.0,2019-12-03 13:39:00,146 5th St, San Francisco,CA,94016 +296922,USB-C Charging Cable,1,11.95,2019-12-03 13:39:00,146 5th St, San Francisco,CA,94016 +296923,AAA Batteries (4-pack),1,2.99,2019-12-02 13:24:00,279 Willow St, Dallas,TX,75001 +296924,iPhone,1,700.0,2019-12-22 21:36:00,754 10th St, Los Angeles,CA,90001 +296925,USB-C Charging Cable,1,11.95,2019-12-14 21:34:00,458 Center St, Seattle,WA,98101 +296926,27in 4K Gaming Monitor,1,389.99,2019-12-25 15:19:00,911 Cedar St, Los Angeles,CA,90001 +296927,Wired Headphones,1,11.99,2019-12-18 17:54:00,771 Jackson St, New York City,NY,10001 +296928,Lightning Charging Cable,2,14.95,2019-12-26 21:36:00,594 North St, Los Angeles,CA,90001 +296929,Bose SoundSport Headphones,1,99.99,2019-12-29 13:03:00,189 Chestnut St, San Francisco,CA,94016 +296930,Wired Headphones,1,11.99,2019-12-16 22:55:00,744 14th St, Austin,TX,73301 +296931,27in 4K Gaming Monitor,1,389.99,2019-12-28 22:47:00,442 7th St, Seattle,WA,98101 +296932,AA Batteries (4-pack),1,3.84,2019-12-09 18:39:00,959 1st St, Atlanta,GA,30301 +296933,Google Phone,1,600.0,2019-12-26 09:38:00,415 14th St, Los Angeles,CA,90001 +296934,Macbook Pro Laptop,1,1700.0,2019-12-09 10:07:00,83 13th St, Boston,MA,02215 +296935,Lightning Charging Cable,1,14.95,2019-12-22 19:33:00,985 Madison St, New York City,NY,10001 +296936,Lightning Charging Cable,1,14.95,2019-12-19 22:02:00,377 Willow St, Atlanta,GA,30301 +296937,AAA Batteries (4-pack),6,2.99,2019-12-08 19:25:00,45 Church St, Dallas,TX,75001 +296938,USB-C Charging Cable,1,11.95,2019-12-08 16:53:00,316 South St, San Francisco,CA,94016 +296939,Lightning Charging Cable,1,14.95,2019-12-06 18:56:00,464 Jefferson St, New York City,NY,10001 +296940,Lightning Charging Cable,2,14.95,2019-12-25 07:14:00,222 Walnut St, Austin,TX,73301 +296941,AAA Batteries (4-pack),2,2.99,2019-12-20 08:05:00,965 Dogwood St, New York City,NY,10001 +296942,ThinkPad Laptop,1,999.99,2019-12-07 23:13:00,34 6th St, San Francisco,CA,94016 +296943,ThinkPad Laptop,1,999.99,2019-12-08 11:55:00,141 Pine St, Atlanta,GA,30301 +296944,Google Phone,1,600.0,2019-12-29 20:39:00,855 Park St, Seattle,WA,98101 +296944,USB-C Charging Cable,1,11.95,2019-12-29 20:39:00,855 Park St, Seattle,WA,98101 +296945,USB-C Charging Cable,1,11.95,2019-12-24 17:25:00,973 Washington St, Atlanta,GA,30301 +296946,Google Phone,1,600.0,2019-12-22 20:12:00,594 South St, Portland,OR,97035 +296947,Bose SoundSport Headphones,1,99.99,2019-12-24 21:02:00,962 South St, Los Angeles,CA,90001 +296948,Apple Airpods Headphones,1,150.0,2019-12-10 22:32:00,12 Center St, Atlanta,GA,30301 +296949,ThinkPad Laptop,1,999.99,2019-12-14 23:17:00,144 10th St, Dallas,TX,75001 +296950,27in FHD Monitor,1,149.99,2019-12-13 10:42:00,267 Washington St, Los Angeles,CA,90001 +296951,AA Batteries (4-pack),1,3.84,2019-12-04 22:02:00,96 Meadow St, New York City,NY,10001 +296952,USB-C Charging Cable,1,11.95,2019-12-07 22:12:00,789 North St, Los Angeles,CA,90001 +296953,USB-C Charging Cable,2,11.95,2019-12-14 14:21:00,487 13th St, Boston,MA,02215 +296954,34in Ultrawide Monitor,1,379.99,2019-12-25 20:19:00,953 Hickory St, San Francisco,CA,94016 +296955,AAA Batteries (4-pack),2,2.99,2019-12-30 19:37:00,830 Highland St, New York City,NY,10001 +296956,Bose SoundSport Headphones,1,99.99,2019-12-17 10:14:00,797 Madison St, San Francisco,CA,94016 +296957,27in FHD Monitor,1,149.99,2019-12-14 14:22:00,291 Wilson St, Los Angeles,CA,90001 +296958,Bose SoundSport Headphones,1,99.99,2019-12-09 15:07:00,501 Highland St, San Francisco,CA,94016 +296959,AA Batteries (4-pack),1,3.84,2019-12-03 16:55:00,660 River St, Los Angeles,CA,90001 +296960,USB-C Charging Cable,1,11.95,2019-12-20 20:58:00,129 13th St, San Francisco,CA,94016 +296961,AA Batteries (4-pack),1,3.84,2019-12-25 10:20:00,970 West St, Seattle,WA,98101 +296962,USB-C Charging Cable,2,11.95,2019-12-27 20:33:00,192 Hickory St, San Francisco,CA,94016 +296963,Apple Airpods Headphones,1,150.0,2019-12-15 12:41:00,675 2nd St, San Francisco,CA,94016 +296964,27in FHD Monitor,1,149.99,2019-12-16 13:27:00,714 Washington St, San Francisco,CA,94016 +296965,Bose SoundSport Headphones,1,99.99,2019-12-06 12:03:00,804 8th St, New York City,NY,10001 +296966,Wired Headphones,1,11.99,2019-12-19 20:03:00,543 River St, Atlanta,GA,30301 +296967,AAA Batteries (4-pack),1,2.99,2019-12-13 13:43:00,392 Chestnut St, Dallas,TX,75001 +296968,Lightning Charging Cable,1,14.95,2019-12-29 11:00:00,575 Jackson St, Atlanta,GA,30301 +296969,Macbook Pro Laptop,1,1700.0,2019-12-20 16:23:00,626 Hickory St, San Francisco,CA,94016 +296970,AAA Batteries (4-pack),1,2.99,2019-12-04 19:56:00,618 Jackson St, Boston,MA,02215 +296971,Lightning Charging Cable,1,14.95,2019-12-12 05:09:00,507 14th St, Los Angeles,CA,90001 +296972,AA Batteries (4-pack),1,3.84,2019-12-20 16:47:00,156 Adams St, Boston,MA,02215 +296973,Apple Airpods Headphones,1,150.0,2019-12-09 14:29:00,645 Hickory St, San Francisco,CA,94016 +296974,AA Batteries (4-pack),1,3.84,2019-12-09 22:55:00,805 Highland St, New York City,NY,10001 +296975,LG Washing Machine,1,600.0,2019-12-14 16:39:00,643 Forest St, San Francisco,CA,94016 +296976,AAA Batteries (4-pack),2,2.99,2019-12-08 18:50:00,771 Meadow St, San Francisco,CA,94016 +296977,Apple Airpods Headphones,1,150.0,2019-12-27 20:37:00,225 7th St, San Francisco,CA,94016 +296978,Google Phone,1,600.0,2019-12-21 13:10:00,410 Jackson St, Los Angeles,CA,90001 +296978,USB-C Charging Cable,1,11.95,2019-12-21 13:10:00,410 Jackson St, Los Angeles,CA,90001 +296979,Wired Headphones,1,11.99,2019-12-03 14:42:00,840 Washington St, New York City,NY,10001 +296980,ThinkPad Laptop,1,999.99,2019-12-06 10:49:00,620 14th St, Los Angeles,CA,90001 +296981,Flatscreen TV,1,300.0,2019-12-25 13:43:00,43 Dogwood St, Atlanta,GA,30301 +296982,Wired Headphones,1,11.99,2019-12-20 22:11:00,39 Cedar St, Los Angeles,CA,90001 +296983,Lightning Charging Cable,1,14.95,2019-12-27 15:17:00,559 Forest St, Atlanta,GA,30301 +296984,AAA Batteries (4-pack),2,2.99,2019-12-28 00:08:00,446 Washington St, Portland,OR,97035 +296985,AA Batteries (4-pack),1,3.84,2019-12-03 08:46:00,318 River St, San Francisco,CA,94016 +296986,iPhone,1,700.0,2019-12-10 11:29:00,421 Sunset St, New York City,NY,10001 +296987,Lightning Charging Cable,1,14.95,2019-12-27 08:46:00,597 Hickory St, Portland,OR,97035 +296987,USB-C Charging Cable,1,11.95,2019-12-27 08:46:00,597 Hickory St, Portland,OR,97035 +296988,AA Batteries (4-pack),1,3.84,2019-12-20 06:39:00,793 Cherry St, Los Angeles,CA,90001 +296989,27in 4K Gaming Monitor,1,389.99,2019-12-10 13:31:00,752 11th St, Los Angeles,CA,90001 +296990,Bose SoundSport Headphones,1,99.99,2019-12-29 13:09:00,932 Elm St, San Francisco,CA,94016 +296991,AA Batteries (4-pack),1,3.84,2019-12-13 09:09:00,546 4th St, Los Angeles,CA,90001 +296992,iPhone,1,700.0,2019-12-09 18:46:00,410 Washington St, Dallas,TX,75001 +296992,Apple Airpods Headphones,1,150.0,2019-12-09 18:46:00,410 Washington St, Dallas,TX,75001 +296993,AAA Batteries (4-pack),1,2.99,2019-12-07 12:26:00,255 Pine St, Atlanta,GA,30301 +296994,AAA Batteries (4-pack),1,2.99,2019-12-18 15:38:00,95 Jackson St, San Francisco,CA,94016 +296995,AAA Batteries (4-pack),2,2.99,2019-12-21 19:35:00,542 Cedar St, New York City,NY,10001 +296996,AA Batteries (4-pack),2,3.84,2019-12-08 09:20:00,241 Madison St, Boston,MA,02215 +296997,Macbook Pro Laptop,1,1700.0,2019-12-09 19:28:00,488 Washington St, San Francisco,CA,94016 +296998,Google Phone,1,600.0,2019-12-01 19:05:00,177 Cedar St, Los Angeles,CA,90001 +296998,USB-C Charging Cable,1,11.95,2019-12-01 19:05:00,177 Cedar St, Los Angeles,CA,90001 +296998,Wired Headphones,1,11.99,2019-12-01 19:05:00,177 Cedar St, Los Angeles,CA,90001 +296999,Wired Headphones,1,11.99,2019-12-05 09:46:00,233 Hill St, Seattle,WA,98101 +297000,Macbook Pro Laptop,1,1700.0,2019-12-01 19:02:00,361 Hickory St, Boston,MA,02215 +297001,Lightning Charging Cable,1,14.95,2019-12-09 14:50:00,105 Madison St, Atlanta,GA,30301 +297002,USB-C Charging Cable,2,11.95,2019-12-15 07:50:00,901 Ridge St, Atlanta,GA,30301 +297003,Lightning Charging Cable,1,14.95,2019-12-03 09:41:00,889 Cedar St, Seattle,WA,98101 +297004,iPhone,1,700.0,2019-12-21 15:11:00,369 Forest St, New York City,NY,10001 +297005,Wired Headphones,1,11.99,2019-12-19 15:17:00,468 Elm St, Seattle,WA,98101 +297006,Apple Airpods Headphones,1,150.0,2019-12-29 20:10:00,805 North St, Boston,MA,02215 +297007,AA Batteries (4-pack),1,3.84,2019-12-16 14:08:00,438 West St, Los Angeles,CA,90001 +297008,Bose SoundSport Headphones,1,99.99,2019-12-24 16:03:00,673 Sunset St, San Francisco,CA,94016 +297009,Macbook Pro Laptop,1,1700.0,2019-12-16 08:07:00,779 Maple St, San Francisco,CA,94016 +297010,Wired Headphones,1,11.99,2019-12-10 18:32:00,262 Johnson St, Boston,MA,02215 +297011,USB-C Charging Cable,1,11.95,2019-12-18 00:12:00,540 Church St, San Francisco,CA,94016 +297012,AA Batteries (4-pack),1,3.84,2019-12-02 11:37:00,292 West St, New York City,NY,10001 +297013,USB-C Charging Cable,1,11.95,2019-12-10 12:02:00,149 Jefferson St, Portland,OR,97035 +297014,Apple Airpods Headphones,1,150.0,2019-12-31 15:26:00,516 14th St, Atlanta,GA,30301 +297015,AAA Batteries (4-pack),3,2.99,2019-12-13 08:43:00,58 Dogwood St, San Francisco,CA,94016 +297016,Wired Headphones,1,11.99,2019-12-03 22:48:00,157 Johnson St, Seattle,WA,98101 +297017,Apple Airpods Headphones,1,150.0,2019-12-25 00:57:00,990 11th St, Portland,OR,97035 +297018,Lightning Charging Cable,1,14.95,2019-12-06 05:00:00,549 Main St, San Francisco,CA,94016 +297019,USB-C Charging Cable,1,11.95,2019-12-18 21:26:00,297 West St, Boston,MA,02215 +297020,AA Batteries (4-pack),1,3.84,2019-12-29 17:27:00,387 10th St, Seattle,WA,98101 +297021,AAA Batteries (4-pack),1,2.99,2019-12-23 20:35:00,204 9th St, Seattle,WA,98101 +297022,Bose SoundSport Headphones,1,99.99,2019-12-03 19:09:00,132 Hickory St, San Francisco,CA,94016 +297023,iPhone,1,700.0,2019-12-12 00:22:00,169 Hill St, New York City,NY,10001 +297023,AAA Batteries (4-pack),1,2.99,2019-12-12 00:22:00,169 Hill St, New York City,NY,10001 +297024,Macbook Pro Laptop,1,1700.0,2019-12-15 15:16:00,869 9th St, San Francisco,CA,94016 +297025,34in Ultrawide Monitor,1,379.99,2019-12-18 12:04:00,836 Forest St, Boston,MA,02215 +297026,Wired Headphones,1,11.99,2019-12-12 07:51:00,696 Ridge St, Los Angeles,CA,90001 +297027,Google Phone,1,600.0,2019-12-18 01:52:00,261 Lake St, Los Angeles,CA,90001 +297028,Lightning Charging Cable,1,14.95,2019-12-09 21:39:00,567 Madison St, Boston,MA,02215 +297029,Lightning Charging Cable,2,14.95,2019-12-25 10:54:00,974 Pine St, Boston,MA,02215 +297030,Apple Airpods Headphones,1,150.0,2019-12-22 14:14:00,558 Willow St, San Francisco,CA,94016 +297031,AA Batteries (4-pack),1,3.84,2019-12-07 17:36:00,523 Maple St, San Francisco,CA,94016 +297032,AAA Batteries (4-pack),1,2.99,2019-12-29 20:49:00,811 River St, Dallas,TX,75001 +297033,27in 4K Gaming Monitor,1,389.99,2019-12-16 11:25:00,662 7th St, New York City,NY,10001 +297034,USB-C Charging Cable,1,11.95,2019-12-07 17:18:00,836 10th St, Boston,MA,02215 +297035,Bose SoundSport Headphones,2,99.99,2019-12-08 11:03:00,522 Walnut St, New York City,NY,10001 +297036,Google Phone,1,600.0,2019-12-24 13:55:00,386 Jefferson St, New York City,NY,10001 +297037,Lightning Charging Cable,1,14.95,2019-12-08 13:43:00,788 Highland St, Seattle,WA,98101 +297038,Apple Airpods Headphones,1,150.0,2019-12-28 20:47:00,778 Park St, New York City,NY,10001 +297039,USB-C Charging Cable,1,11.95,2019-12-22 20:03:00,252 Jefferson St, New York City,NY,10001 +297040,Wired Headphones,1,11.99,2019-12-02 09:32:00,526 Washington St, Atlanta,GA,30301 +297041,Lightning Charging Cable,1,14.95,2019-12-12 08:22:00,564 4th St, Dallas,TX,75001 +297042,Wired Headphones,1,11.99,2019-12-02 09:09:00,687 6th St, Austin,TX,73301 +297043,USB-C Charging Cable,1,11.95,2019-12-20 13:02:00,119 River St, San Francisco,CA,94016 +297044,AA Batteries (4-pack),2,3.84,2019-12-21 19:12:00,453 Park St, San Francisco,CA,94016 +297045,AAA Batteries (4-pack),1,2.99,2019-12-23 11:50:00,338 Walnut St, San Francisco,CA,94016 +297046,Bose SoundSport Headphones,1,99.99,2019-12-14 16:23:00,886 Hill St, Portland,OR,97035 +297047,USB-C Charging Cable,1,11.95,2019-12-01 12:51:00,146 Wilson St, New York City,NY,10001 +297048,AA Batteries (4-pack),1,3.84,2019-12-23 18:52:00,731 Walnut St, Los Angeles,CA,90001 +297049,Apple Airpods Headphones,1,150.0,2019-12-29 13:40:00,989 2nd St, Atlanta,GA,30301 +297050,AAA Batteries (4-pack),3,2.99,2019-12-10 10:58:00,269 Pine St, Dallas,TX,75001 +297051,AA Batteries (4-pack),2,3.84,2019-12-02 01:25:00,664 North St, Portland,OR,97035 +297052,AAA Batteries (4-pack),2,2.99,2019-12-09 20:31:00,479 Sunset St, Austin,TX,73301 +297053,27in FHD Monitor,1,149.99,2019-12-03 21:13:00,684 Maple St, Dallas,TX,75001 +297054,Lightning Charging Cable,1,14.95,2019-12-09 15:47:00,275 8th St, Boston,MA,02215 +297055,Bose SoundSport Headphones,1,99.99,2019-12-13 21:56:00,950 11th St, San Francisco,CA,94016 +297056,iPhone,1,700.0,2019-12-17 08:43:00,45 Willow St, New York City,NY,10001 +297056,Apple Airpods Headphones,1,150.0,2019-12-17 08:43:00,45 Willow St, New York City,NY,10001 +297056,Wired Headphones,1,11.99,2019-12-17 08:43:00,45 Willow St, New York City,NY,10001 +297057,AA Batteries (4-pack),1,3.84,2019-12-31 16:26:00,404 North St, Atlanta,GA,30301 +297058,Google Phone,1,600.0,2019-12-06 10:52:00,527 Cherry St, New York City,NY,10001 +297058,USB-C Charging Cable,1,11.95,2019-12-06 10:52:00,527 Cherry St, New York City,NY,10001 +297058,Wired Headphones,1,11.99,2019-12-06 10:52:00,527 Cherry St, New York City,NY,10001 +297059,AAA Batteries (4-pack),2,2.99,2019-12-25 17:06:00,895 Hickory St, San Francisco,CA,94016 +297060,Wired Headphones,1,11.99,2019-12-16 01:06:00,758 1st St, Portland,OR,97035 +297061,AA Batteries (4-pack),2,3.84,2019-12-24 19:33:00,888 Chestnut St, Boston,MA,02215 +297062,AA Batteries (4-pack),1,3.84,2019-12-31 12:04:00,740 11th St, San Francisco,CA,94016 +297063,AAA Batteries (4-pack),1,2.99,2019-12-23 18:25:00,24 13th St, New York City,NY,10001 +297064,AAA Batteries (4-pack),1,2.99,2019-12-13 09:23:00,816 Pine St, Los Angeles,CA,90001 +297065,34in Ultrawide Monitor,1,379.99,2019-12-01 17:38:00,3 North St, Boston,MA,02215 +297066,Wired Headphones,1,11.99,2019-12-20 12:08:00,133 4th St, Atlanta,GA,30301 +297067,Bose SoundSport Headphones,1,99.99,2019-12-09 16:38:00,864 Jackson St, San Francisco,CA,94016 +297068,Flatscreen TV,1,300.0,2019-12-23 11:18:00,326 7th St, San Francisco,CA,94016 +297069,27in FHD Monitor,1,149.99,2019-12-15 22:08:00,281 Lincoln St, Los Angeles,CA,90001 +297070,AAA Batteries (4-pack),1,2.99,2019-12-05 17:55:00,876 Forest St, Dallas,TX,75001 +297071,Wired Headphones,1,11.99,2019-12-31 12:01:00,101 Spruce St, Boston,MA,02215 +297072,Wired Headphones,1,11.99,2019-12-29 13:46:00,97 Meadow St, Los Angeles,CA,90001 +297073,iPhone,1,700.0,2019-12-29 12:14:00,695 4th St, Boston,MA,02215 +297074,AA Batteries (4-pack),1,3.84,2019-12-02 11:46:00,765 Forest St, Dallas,TX,75001 +297075,Lightning Charging Cable,1,14.95,2019-12-07 02:06:00,415 Center St, Atlanta,GA,30301 +297075,27in FHD Monitor,1,149.99,2019-12-07 02:06:00,415 Center St, Atlanta,GA,30301 +297076,Vareebadd Phone,1,400.0,2019-12-03 05:35:00,471 10th St, San Francisco,CA,94016 +297077,Lightning Charging Cable,1,14.95,2019-12-14 12:02:00,595 Pine St, Los Angeles,CA,90001 +297078,iPhone,1,700.0,2019-12-27 14:43:00,992 Cedar St, New York City,NY,10001 +297078,Lightning Charging Cable,1,14.95,2019-12-27 14:43:00,992 Cedar St, New York City,NY,10001 +297079,AA Batteries (4-pack),1,3.84,2019-12-09 11:23:00,554 North St, New York City,NY,10001 +297080,Lightning Charging Cable,1,14.95,2019-12-07 19:10:00,332 7th St, Portland,OR,97035 +297081,AA Batteries (4-pack),1,3.84,2019-12-31 05:26:00,709 Pine St, Dallas,TX,75001 +297082,Wired Headphones,1,11.99,2019-12-12 12:16:00,948 Lakeview St, Dallas,TX,75001 +297083,27in 4K Gaming Monitor,1,389.99,2019-12-30 17:59:00,215 8th St, San Francisco,CA,94016 +297084,Macbook Pro Laptop,1,1700.0,2019-12-22 19:48:00,712 Lakeview St, Los Angeles,CA,90001 +297085,27in 4K Gaming Monitor,1,389.99,2019-12-16 19:52:00,748 2nd St, New York City,NY,10001 +297086,AAA Batteries (4-pack),1,2.99,2019-12-28 18:27:00,19 4th St, Atlanta,GA,30301 +297087,Apple Airpods Headphones,1,150.0,2019-12-05 11:56:00,815 Park St, Atlanta,GA,30301 +297088,USB-C Charging Cable,2,11.95,2019-12-06 12:42:00,763 Sunset St, San Francisco,CA,94016 +297089,20in Monitor,1,109.99,2019-12-02 19:56:00,888 Wilson St, Los Angeles,CA,90001 +297090,AAA Batteries (4-pack),1,2.99,2019-12-05 09:11:00,596 13th St, Boston,MA,02215 +297091,Lightning Charging Cable,1,14.95,2019-12-08 18:44:00,913 11th St, New York City,NY,10001 +297092,AA Batteries (4-pack),1,3.84,2019-12-21 15:15:00,556 Willow St, San Francisco,CA,94016 +297093,Macbook Pro Laptop,1,1700.0,2019-12-21 20:12:00,685 Willow St, Dallas,TX,75001 +297094,USB-C Charging Cable,1,11.95,2019-12-23 07:01:00,93 1st St, New York City,NY,10001 +297095,AA Batteries (4-pack),1,3.84,2019-12-03 06:22:00,344 10th St, New York City,NY,10001 +297096,AA Batteries (4-pack),1,3.84,2019-12-11 17:41:00,121 Walnut St, Seattle,WA,98101 +297097,Lightning Charging Cable,1,14.95,2019-12-09 08:31:00,649 10th St, Los Angeles,CA,90001 +297098,AAA Batteries (4-pack),2,2.99,2019-12-28 21:30:00,986 Adams St, Dallas,TX,75001 +297099,USB-C Charging Cable,1,11.95,2019-12-11 19:11:00,521 River St, San Francisco,CA,94016 +297100,Macbook Pro Laptop,1,1700.0,2019-12-16 21:47:00,855 10th St, San Francisco,CA,94016 +297101,Bose SoundSport Headphones,1,99.99,2019-12-09 21:03:00,912 South St, Los Angeles,CA,90001 +297102,Lightning Charging Cable,1,14.95,2019-12-25 10:36:00,437 Lake St, Los Angeles,CA,90001 +297103,Google Phone,1,600.0,2019-12-21 10:57:00,360 Madison St, New York City,NY,10001 +297104,AAA Batteries (4-pack),3,2.99,2019-12-19 22:44:00,743 10th St, San Francisco,CA,94016 +297105,Lightning Charging Cable,1,14.95,2019-12-30 13:53:00,625 Jackson St, San Francisco,CA,94016 +297106,AA Batteries (4-pack),1,3.84,2019-12-27 12:33:00,817 6th St, New York City,NY,10001 +297107,Wired Headphones,1,11.99,2019-12-26 09:04:00,861 Wilson St, Dallas,TX,75001 +297108,AAA Batteries (4-pack),1,2.99,2019-12-01 16:22:00,860 7th St, San Francisco,CA,94016 +297109,AA Batteries (4-pack),1,3.84,2019-12-17 21:37:00,351 Cedar St, New York City,NY,10001 +297110,Lightning Charging Cable,1,14.95,2019-12-12 15:24:00,819 Wilson St, San Francisco,CA,94016 +297111,Lightning Charging Cable,1,14.95,2019-12-29 14:27:00,297 Spruce St, Dallas,TX,75001 +297112,27in FHD Monitor,1,149.99,2019-12-17 11:17:00,628 Madison St, Seattle,WA,98101 +297113,27in FHD Monitor,1,149.99,2019-12-03 12:00:00,423 Jefferson St, San Francisco,CA,94016 +297114,Wired Headphones,1,11.99,2019-12-11 20:54:00,815 South St, Los Angeles,CA,90001 +297115,Lightning Charging Cable,1,14.95,2019-12-09 08:06:00,137 11th St, San Francisco,CA,94016 +297116,AA Batteries (4-pack),1,3.84,2019-12-07 19:31:00,426 5th St, San Francisco,CA,94016 +297117,iPhone,1,700.0,2019-12-25 23:38:00,592 5th St, Los Angeles,CA,90001 +297118,Lightning Charging Cable,1,14.95,2019-12-09 21:30:00,179 Pine St, Dallas,TX,75001 +297119,Apple Airpods Headphones,1,150.0,2019-12-24 14:50:00,697 Willow St, Los Angeles,CA,90001 +297120,Flatscreen TV,1,300.0,2019-12-15 10:44:00,120 13th St, Los Angeles,CA,90001 +297121,USB-C Charging Cable,1,11.95,2019-12-03 08:52:00,14 Cedar St, San Francisco,CA,94016 +297122,Lightning Charging Cable,1,14.95,2019-12-17 13:11:00,757 2nd St, Portland,OR,97035 +297123,USB-C Charging Cable,2,11.95,2019-12-29 18:47:00,925 Center St, Seattle,WA,98101 +297124,Apple Airpods Headphones,1,150.0,2019-12-27 12:57:00,956 Wilson St, San Francisco,CA,94016 +297125,27in 4K Gaming Monitor,1,389.99,2019-12-14 16:42:00,489 Johnson St, San Francisco,CA,94016 +297126,Flatscreen TV,1,300.0,2019-12-29 08:52:00,536 River St, Boston,MA,02215 +297127,Lightning Charging Cable,1,14.95,2019-12-30 23:21:00,718 Highland St, Portland,OR,97035 +297128,ThinkPad Laptop,1,999.99,2019-12-04 23:25:00,90 14th St, Los Angeles,CA,90001 +297129,AAA Batteries (4-pack),1,2.99,2019-12-31 04:59:00,254 5th St, New York City,NY,10001 +297130,AAA Batteries (4-pack),2,2.99,2019-12-13 21:16:00,835 Cherry St, San Francisco,CA,94016 +297131,Apple Airpods Headphones,1,150.0,2019-12-13 10:48:00,608 Cherry St, Los Angeles,CA,90001 +297132,Lightning Charging Cable,1,14.95,2019-12-17 06:43:00,958 Dogwood St, San Francisco,CA,94016 +297133,27in FHD Monitor,1,149.99,2019-12-30 22:31:00,742 Elm St, Portland,OR,97035 +297134,Wired Headphones,1,11.99,2019-12-04 11:23:00,164 8th St, Atlanta,GA,30301 +297135,AA Batteries (4-pack),2,3.84,2019-12-04 15:41:00,639 Hickory St, Boston,MA,02215 +297136,Apple Airpods Headphones,1,150.0,2019-12-31 20:32:00,662 Church St, Los Angeles,CA,90001 +297137,Wired Headphones,1,11.99,2019-12-21 13:06:00,191 Walnut St, Portland,OR,97035 +297138,Apple Airpods Headphones,1,150.0,2019-12-11 19:36:00,485 Maple St, San Francisco,CA,94016 +297139,34in Ultrawide Monitor,1,379.99,2019-12-28 13:46:00,918 6th St, New York City,NY,10001 +297140,Apple Airpods Headphones,1,150.0,2019-12-21 12:33:00,610 2nd St, Boston,MA,02215 +297141,AAA Batteries (4-pack),2,2.99,2019-12-04 13:31:00,537 9th St, San Francisco,CA,94016 +297142,iPhone,1,700.0,2019-12-26 13:29:00,638 Forest St, Dallas,TX,75001 +297143,Apple Airpods Headphones,1,150.0,2019-12-05 08:34:00,625 Lincoln St, San Francisco,CA,94016 +297144,USB-C Charging Cable,1,11.95,2019-12-26 21:42:00,242 Hill St, Dallas,TX,75001 +297145,Lightning Charging Cable,1,14.95,2019-12-11 21:45:00,561 Chestnut St, New York City,NY,10001 +297146,AA Batteries (4-pack),2,3.84,2019-12-13 21:06:00,933 Willow St, Los Angeles,CA,90001 +297147,27in 4K Gaming Monitor,1,389.99,2019-12-05 17:06:00,305 Johnson St, San Francisco,CA,94016 +297148,Apple Airpods Headphones,1,150.0,2019-12-01 08:24:00,737 10th St, Dallas,TX,75001 +297149,Lightning Charging Cable,1,14.95,2019-12-14 19:09:00,671 Johnson St, Los Angeles,CA,90001 +297150,Lightning Charging Cable,1,14.95,2020-01-01 00:38:00,427 Wilson St, Dallas,TX,75001 +297151,Bose SoundSport Headphones,1,99.99,2019-12-09 18:41:00,515 Walnut St, Los Angeles,CA,90001 +297152,27in FHD Monitor,1,149.99,2019-12-30 16:35:00,250 Park St, Los Angeles,CA,90001 +297153,Vareebadd Phone,1,400.0,2019-12-23 01:11:00,211 Lakeview St, Boston,MA,02215 +297154,iPhone,1,700.0,2019-12-06 18:10:00,508 Jackson St, San Francisco,CA,94016 +297155,AA Batteries (4-pack),1,3.84,2019-12-27 16:17:00,413 Willow St, San Francisco,CA,94016 +297156,Flatscreen TV,1,300.0,2019-12-22 14:46:00,940 1st St, Boston,MA,02215 +297157,Wired Headphones,1,11.99,2019-12-07 09:19:00,591 Cedar St, San Francisco,CA,94016 +297158,20in Monitor,1,109.99,2019-12-06 10:18:00,119 Cedar St, Portland,OR,97035 +297159,Lightning Charging Cable,1,14.95,2019-12-25 16:19:00,401 8th St, Boston,MA,02215 +297160,Bose SoundSport Headphones,1,99.99,2019-12-23 23:26:00,985 Pine St, Atlanta,GA,30301 +297161,AAA Batteries (4-pack),3,2.99,2019-12-19 11:31:00,851 Wilson St, New York City,NY,10001 +297162,AAA Batteries (4-pack),2,2.99,2019-12-28 14:21:00,584 2nd St, San Francisco,CA,94016 +297163,27in FHD Monitor,1,149.99,2019-12-26 14:28:00,429 Main St, Los Angeles,CA,90001 +297164,AA Batteries (4-pack),1,3.84,2019-12-23 06:08:00,40 7th St, Boston,MA,02215 +297164,Lightning Charging Cable,1,14.95,2019-12-23 06:08:00,40 7th St, Boston,MA,02215 +297165,Lightning Charging Cable,1,14.95,2019-12-20 15:27:00,150 8th St, Boston,MA,02215 +297165,AAA Batteries (4-pack),2,2.99,2019-12-20 15:27:00,150 8th St, Boston,MA,02215 +297166,USB-C Charging Cable,1,11.95,2019-12-10 15:32:00,272 Lincoln St, San Francisco,CA,94016 +297167,AAA Batteries (4-pack),1,2.99,2019-12-04 23:28:00,738 Adams St, New York City,NY,10001 +297167,Flatscreen TV,1,300.0,2019-12-04 23:28:00,738 Adams St, New York City,NY,10001 +297168,USB-C Charging Cable,1,11.95,2019-12-19 19:04:00,955 Main St, Boston,MA,02215 +297169,Apple Airpods Headphones,1,150.0,2019-12-15 15:13:00,436 Lake St, San Francisco,CA,94016 +297170,AA Batteries (4-pack),1,3.84,2019-12-15 00:03:00,235 12th St, Boston,MA,02215 +297171,Apple Airpods Headphones,1,150.0,2019-12-23 14:24:00,924 Main St, Los Angeles,CA,90001 +297172,AAA Batteries (4-pack),1,2.99,2019-12-17 22:43:00,791 Wilson St, San Francisco,CA,94016 +297173,ThinkPad Laptop,1,999.99,2019-12-24 14:19:00,80 Jefferson St, Boston,MA,02215 +297174,Flatscreen TV,1,300.0,2019-12-25 13:12:00,225 Dogwood St, Seattle,WA,98101 +297175,Bose SoundSport Headphones,1,99.99,2019-12-03 18:16:00,209 Lake St, Austin,TX,73301 +297176,Apple Airpods Headphones,1,150.0,2019-12-21 11:47:00,288 6th St, Dallas,TX,75001 +297177,Wired Headphones,1,11.99,2019-12-01 18:04:00,308 Highland St, Seattle,WA,98101 +297178,USB-C Charging Cable,1,11.95,2019-12-29 20:53:00,55 Chestnut St, San Francisco,CA,94016 +297179,USB-C Charging Cable,1,11.95,2019-12-01 14:56:00,647 Wilson St, Seattle,WA,98101 +297180,Lightning Charging Cable,1,14.95,2019-12-07 22:36:00,158 South St, Los Angeles,CA,90001 +297181,AAA Batteries (4-pack),1,2.99,2019-12-24 09:57:00,108 Maple St, Dallas,TX,75001 +297182,AA Batteries (4-pack),1,3.84,2019-12-19 13:46:00,71 Willow St, Los Angeles,CA,90001 +297183,27in 4K Gaming Monitor,1,389.99,2019-12-05 09:38:00,96 Sunset St, New York City,NY,10001 +297184,AAA Batteries (4-pack),1,2.99,2019-12-02 19:51:00,398 Walnut St, New York City,NY,10001 +297185,Bose SoundSport Headphones,1,99.99,2019-12-06 12:07:00,652 11th St, Seattle,WA,98101 +297186,USB-C Charging Cable,1,11.95,2019-12-04 17:26:00,848 Elm St, Los Angeles,CA,90001 +297187,Bose SoundSport Headphones,1,99.99,2019-12-01 19:29:00,328 Dogwood St, New York City,NY,10001 +297188,Apple Airpods Headphones,1,150.0,2019-12-07 10:42:00,536 Washington St, Los Angeles,CA,90001 +297189,AA Batteries (4-pack),1,3.84,2019-12-03 14:47:00,666 Dogwood St, New York City,NY,10001 +297190,Bose SoundSport Headphones,1,99.99,2019-12-22 10:41:00,289 Chestnut St, Seattle,WA,98101 +297191,Bose SoundSport Headphones,1,99.99,2019-12-04 11:40:00,291 Main St, San Francisco,CA,94016 +297192,AA Batteries (4-pack),1,3.84,2019-12-29 16:25:00,207 12th St, New York City,NY,10001 +297192,Apple Airpods Headphones,1,150.0,2019-12-29 16:25:00,207 12th St, New York City,NY,10001 +297193,ThinkPad Laptop,1,999.99,2019-12-12 13:18:00,733 River St, New York City,NY,10001 +297194,iPhone,1,700.0,2019-12-30 16:11:00,771 Hill St, New York City,NY,10001 +297195,Wired Headphones,1,11.99,2019-12-25 18:06:00,974 1st St, Austin,TX,73301 +297196,20in Monitor,1,109.99,2019-12-12 20:16:00,928 River St, Seattle,WA,98101 +297197,Wired Headphones,1,11.99,2019-12-19 06:40:00,363 Washington St, San Francisco,CA,94016 +297197,AA Batteries (4-pack),1,3.84,2019-12-19 06:40:00,363 Washington St, San Francisco,CA,94016 +297198,AA Batteries (4-pack),1,3.84,2019-12-08 15:53:00,928 Dogwood St, San Francisco,CA,94016 +297199,Wired Headphones,1,11.99,2019-12-18 08:16:00,775 Maple St, Los Angeles,CA,90001 +297200,Wired Headphones,1,11.99,2019-12-16 12:11:00,367 6th St, New York City,NY,10001 +297201,USB-C Charging Cable,1,11.95,2019-12-09 08:28:00,497 Dogwood St, San Francisco,CA,94016 +297202,Google Phone,1,600.0,2019-12-18 08:36:00,497 River St, Portland,ME,04101 +297203,USB-C Charging Cable,1,11.95,2019-12-20 19:31:00,742 Cherry St, Atlanta,GA,30301 +297204,AA Batteries (4-pack),2,3.84,2019-12-10 15:05:00,337 Jefferson St, Dallas,TX,75001 +297205,27in FHD Monitor,1,149.99,2019-12-06 19:37:00,681 Highland St, Seattle,WA,98101 +297206,Flatscreen TV,1,300.0,2019-12-10 12:42:00,35 1st St, San Francisco,CA,94016 +297207,Macbook Pro Laptop,1,1700.0,2019-12-21 09:32:00,949 12th St, Portland,OR,97035 +297208,Bose SoundSport Headphones,1,99.99,2019-12-07 15:20:00,631 14th St, Boston,MA,02215 +297209,Lightning Charging Cable,1,14.95,2019-12-07 15:15:00,253 Jefferson St, Los Angeles,CA,90001 +297210,Bose SoundSport Headphones,1,99.99,2019-12-14 13:52:00,217 Forest St, Boston,MA,02215 +297211,Flatscreen TV,1,300.0,2019-12-03 08:45:00,635 8th St, San Francisco,CA,94016 +297212,iPhone,1,700.0,2019-12-11 23:42:00,240 11th St, New York City,NY,10001 +297213,27in FHD Monitor,1,149.99,2019-12-02 13:51:00,395 2nd St, Dallas,TX,75001 +297214,USB-C Charging Cable,1,11.95,2019-12-03 20:51:00,472 Forest St, Portland,OR,97035 +297215,Apple Airpods Headphones,1,150.0,2019-12-30 09:38:00,654 South St, New York City,NY,10001 +297216,Wired Headphones,1,11.99,2019-12-04 10:34:00,734 Lakeview St, San Francisco,CA,94016 +297217,AA Batteries (4-pack),1,3.84,2019-12-11 17:11:00,357 8th St, Portland,ME,04101 +297218,Wired Headphones,1,11.99,2019-12-08 06:49:00,2 1st St, Boston,MA,02215 +297219,Apple Airpods Headphones,1,150.0,2019-12-10 19:44:00,127 Dogwood St, San Francisco,CA,94016 +297220,Apple Airpods Headphones,1,150.0,2019-12-06 08:57:00,337 8th St, Portland,OR,97035 +297221,Lightning Charging Cable,1,14.95,2019-12-21 05:22:00,728 13th St, Boston,MA,02215 +297222,AAA Batteries (4-pack),2,2.99,2019-12-28 23:31:00,89 South St, San Francisco,CA,94016 +297223,Wired Headphones,1,11.99,2019-12-18 15:28:00,293 4th St, San Francisco,CA,94016 +297224,Lightning Charging Cable,1,14.95,2019-12-02 23:53:00,904 Sunset St, Seattle,WA,98101 +297225,Wired Headphones,1,11.99,2019-12-01 21:49:00,36 10th St, San Francisco,CA,94016 +297226,AAA Batteries (4-pack),1,2.99,2019-12-24 14:26:00,702 Ridge St, San Francisco,CA,94016 +297227,iPhone,1,700.0,2019-12-01 19:14:00,863 Hickory St, New York City,NY,10001 +297227,Lightning Charging Cable,1,14.95,2019-12-01 19:14:00,863 Hickory St, New York City,NY,10001 +297228,Bose SoundSport Headphones,1,99.99,2019-12-21 19:37:00,852 Elm St, Portland,OR,97035 +297229,Wired Headphones,1,11.99,2019-12-05 22:49:00,266 South St, Boston,MA,02215 +297230,Apple Airpods Headphones,1,150.0,2019-12-27 17:27:00,953 North St, Los Angeles,CA,90001 +297231,20in Monitor,1,109.99,2019-12-24 07:27:00,13 4th St, Portland,OR,97035 +297232,Apple Airpods Headphones,1,150.0,2019-12-09 08:07:00,144 Washington St, New York City,NY,10001 +297233,Wired Headphones,1,11.99,2019-12-13 18:39:00,303 North St, San Francisco,CA,94016 +297234,AA Batteries (4-pack),1,3.84,2019-12-19 18:12:00,448 Lakeview St, Dallas,TX,75001 +297235,Wired Headphones,1,11.99,2019-12-31 15:29:00,44 Main St, Atlanta,GA,30301 +297236,Lightning Charging Cable,1,14.95,2019-12-16 13:15:00,415 Cedar St, San Francisco,CA,94016 +297237,Bose SoundSport Headphones,1,99.99,2019-12-16 10:28:00,355 Park St, Boston,MA,02215 +297238,Macbook Pro Laptop,1,1700.0,2019-12-21 15:03:00,35 Elm St, Boston,MA,02215 +297239,AAA Batteries (4-pack),1,2.99,2019-12-11 14:35:00,798 South St, San Francisco,CA,94016 +297240,Bose SoundSport Headphones,1,99.99,2019-12-12 12:00:00,510 North St, San Francisco,CA,94016 +297241,USB-C Charging Cable,1,11.95,2019-12-28 11:49:00,406 Cedar St, Boston,MA,02215 +297242,Macbook Pro Laptop,1,1700.0,2019-12-29 11:18:00,382 7th St, Dallas,TX,75001 +297243,Wired Headphones,1,11.99,2019-12-12 13:41:00,934 Chestnut St, Portland,OR,97035 +297244,27in FHD Monitor,1,149.99,2019-12-25 19:38:00,802 Walnut St, Boston,MA,02215 +297245,27in FHD Monitor,1,149.99,2019-12-05 09:23:00,94 8th St, Los Angeles,CA,90001 +297246,27in 4K Gaming Monitor,1,389.99,2019-12-01 20:20:00,781 11th St, New York City,NY,10001 +297247,Lightning Charging Cable,1,14.95,2019-12-14 12:26:00,450 Adams St, Seattle,WA,98101 +297248,USB-C Charging Cable,1,11.95,2019-12-22 11:04:00,457 Dogwood St, San Francisco,CA,94016 +297249,iPhone,1,700.0,2019-12-05 09:07:00,298 Johnson St, Atlanta,GA,30301 +297250,iPhone,1,700.0,2019-12-16 12:42:00,857 Hickory St, Boston,MA,02215 +297251,iPhone,1,700.0,2019-12-19 20:19:00,835 Main St, Austin,TX,73301 +297252,27in 4K Gaming Monitor,1,389.99,2019-12-26 18:55:00,587 Cherry St, Boston,MA,02215 +297253,Lightning Charging Cable,1,14.95,2019-12-24 13:18:00,357 13th St, Atlanta,GA,30301 +297254,Wired Headphones,1,11.99,2019-12-18 11:17:00,595 Forest St, San Francisco,CA,94016 +297255,USB-C Charging Cable,1,11.95,2019-12-08 13:38:00,801 West St, Los Angeles,CA,90001 +297256,iPhone,1,700.0,2019-12-11 20:25:00,235 Meadow St, Boston,MA,02215 +297256,Lightning Charging Cable,1,14.95,2019-12-11 20:25:00,235 Meadow St, Boston,MA,02215 +297256,Apple Airpods Headphones,1,150.0,2019-12-11 20:25:00,235 Meadow St, Boston,MA,02215 +297257,Wired Headphones,1,11.99,2019-12-18 16:59:00,8 Forest St, Atlanta,GA,30301 +297258,AAA Batteries (4-pack),1,2.99,2019-12-14 23:45:00,397 Main St, Portland,OR,97035 +297259,Flatscreen TV,1,300.0,2019-12-22 02:53:00,133 7th St, Dallas,TX,75001 +297260,20in Monitor,1,109.99,2019-12-05 10:30:00,965 9th St, Atlanta,GA,30301 +297261,Flatscreen TV,1,300.0,2019-12-01 11:43:00,270 Adams St, Seattle,WA,98101 +297262,Apple Airpods Headphones,1,150.0,2019-12-11 18:35:00,633 Spruce St, San Francisco,CA,94016 +297263,USB-C Charging Cable,1,11.95,2019-12-15 11:08:00,334 Dogwood St, San Francisco,CA,94016 +297264,Lightning Charging Cable,1,14.95,2019-12-17 23:46:00,623 Cherry St, San Francisco,CA,94016 +297265,LG Washing Machine,1,600.0,2019-12-11 20:36:00,787 Ridge St, Los Angeles,CA,90001 +297266,Wired Headphones,1,11.99,2019-12-25 22:49:00,160 Elm St, New York City,NY,10001 +297267,Flatscreen TV,1,300.0,2019-12-20 13:53:00,327 Lakeview St, Boston,MA,02215 +297268,Bose SoundSport Headphones,1,99.99,2019-12-13 10:33:00,795 Main St, San Francisco,CA,94016 +297269,34in Ultrawide Monitor,1,379.99,2019-12-07 13:42:00,114 North St, San Francisco,CA,94016 +297270,iPhone,1,700.0,2019-12-25 22:11:00,938 Spruce St, Seattle,WA,98101 +297271,AAA Batteries (4-pack),2,2.99,2019-12-21 09:19:00,637 Wilson St, Dallas,TX,75001 +297272,USB-C Charging Cable,1,11.95,2019-12-15 13:52:00,14 13th St, San Francisco,CA,94016 +297273,Wired Headphones,1,11.99,2019-12-03 20:18:00,747 Cherry St, Seattle,WA,98101 +297274,Flatscreen TV,1,300.0,2019-12-25 16:17:00,737 Madison St, Boston,MA,02215 +297275,AA Batteries (4-pack),1,3.84,2019-12-04 18:43:00,709 Walnut St, Boston,MA,02215 +297276,Bose SoundSport Headphones,1,99.99,2019-12-14 22:14:00,915 North St, San Francisco,CA,94016 +297277,Wired Headphones,1,11.99,2019-12-31 17:57:00,961 Center St, Los Angeles,CA,90001 +297278,iPhone,1,700.0,2019-12-09 20:06:00,418 West St, Los Angeles,CA,90001 +297278,Wired Headphones,1,11.99,2019-12-09 20:06:00,418 West St, Los Angeles,CA,90001 +297279,Lightning Charging Cable,2,14.95,2019-12-09 17:32:00,701 Johnson St, New York City,NY,10001 +297280,AA Batteries (4-pack),1,3.84,2019-12-12 09:13:00,301 Ridge St, Los Angeles,CA,90001 +297281,Wired Headphones,1,11.99,2019-12-01 17:00:00,459 Jackson St, New York City,NY,10001 +297282,Bose SoundSport Headphones,1,99.99,2019-12-16 15:56:00,640 River St, Los Angeles,CA,90001 +297283,AA Batteries (4-pack),1,3.84,2019-12-18 10:26:00,743 Washington St, San Francisco,CA,94016 +297284,Apple Airpods Headphones,1,150.0,2019-12-12 16:23:00,410 5th St, Seattle,WA,98101 +297285,Lightning Charging Cable,1,14.95,2019-12-14 11:50:00,13 13th St, Boston,MA,02215 +297286,Google Phone,1,600.0,2019-12-15 18:28:00,364 9th St, Seattle,WA,98101 +297286,USB-C Charging Cable,1,11.95,2019-12-15 18:28:00,364 9th St, Seattle,WA,98101 +297287,Wired Headphones,1,11.99,2019-12-14 14:53:00,950 Pine St, Seattle,WA,98101 +297288,AA Batteries (4-pack),2,3.84,2019-12-31 23:16:00,914 Madison St, San Francisco,CA,94016 +297289,AAA Batteries (4-pack),1,2.99,2019-12-31 19:25:00,815 1st St, Los Angeles,CA,90001 +297290,AAA Batteries (4-pack),1,2.99,2019-12-29 14:23:00,306 Madison St, San Francisco,CA,94016 +297291,Lightning Charging Cable,1,14.95,2019-12-08 22:19:00,584 13th St, Atlanta,GA,30301 +297292,Bose SoundSport Headphones,1,99.99,2019-12-19 09:17:00,836 4th St, Seattle,WA,98101 +297293,34in Ultrawide Monitor,1,379.99,2019-12-25 18:05:00,160 Madison St, San Francisco,CA,94016 +297294,AA Batteries (4-pack),2,3.84,2019-12-08 01:31:00,334 Cedar St, Boston,MA,02215 +297295,Apple Airpods Headphones,1,150.0,2019-12-06 19:32:00,714 South St, Portland,OR,97035 +297296,AA Batteries (4-pack),3,3.84,2019-12-04 09:39:00,223 Forest St, Los Angeles,CA,90001 +297297,Wired Headphones,1,11.99,2019-12-21 19:43:00,875 2nd St, San Francisco,CA,94016 +297298,Wired Headphones,1,11.99,2019-12-03 21:41:00,583 Jackson St, New York City,NY,10001 +297299,Apple Airpods Headphones,1,150.0,2019-12-02 14:48:00,453 Ridge St, Dallas,TX,75001 +297300,Wired Headphones,1,11.99,2019-12-13 11:17:00,329 12th St, Austin,TX,73301 +297301,Wired Headphones,1,11.99,2019-12-05 11:54:00,334 Highland St, Boston,MA,02215 +297302,27in FHD Monitor,1,149.99,2019-12-10 10:08:00,820 Adams St, Atlanta,GA,30301 +297303,Lightning Charging Cable,1,14.95,2019-12-18 13:03:00,567 6th St, Los Angeles,CA,90001 +297304,Bose SoundSport Headphones,1,99.99,2019-12-31 11:07:00,269 North St, Portland,OR,97035 +297305,iPhone,1,700.0,2019-12-11 09:00:00,238 12th St, New York City,NY,10001 +297306,AA Batteries (4-pack),2,3.84,2019-12-06 15:18:00,807 Walnut St, Seattle,WA,98101 +297307,27in FHD Monitor,1,149.99,2019-12-12 17:39:00,42 Main St, Los Angeles,CA,90001 +297308,Apple Airpods Headphones,2,150.0,2019-12-23 20:48:00,280 Spruce St, San Francisco,CA,94016 +297309,Bose SoundSport Headphones,1,99.99,2019-12-25 18:30:00,997 Sunset St, New York City,NY,10001 +297310,Wired Headphones,2,11.99,2019-12-08 20:44:00,121 Dogwood St, San Francisco,CA,94016 +297311,Bose SoundSport Headphones,1,99.99,2019-12-07 07:30:00,858 Willow St, Los Angeles,CA,90001 +297312,Macbook Pro Laptop,1,1700.0,2019-12-27 15:37:00,219 12th St, Dallas,TX,75001 +297313,USB-C Charging Cable,1,11.95,2019-12-15 12:57:00,971 Madison St, San Francisco,CA,94016 +297314,Bose SoundSport Headphones,1,99.99,2019-12-07 19:26:00,121 Spruce St, Dallas,TX,75001 +297315,Wired Headphones,1,11.99,2019-12-28 18:26:00,220 Lake St, San Francisco,CA,94016 +297316,27in 4K Gaming Monitor,1,389.99,2019-12-27 19:05:00,824 Lakeview St, Dallas,TX,75001 +297317,Flatscreen TV,1,300.0,2019-12-19 17:30:00,367 Cherry St, Austin,TX,73301 +297318,AAA Batteries (4-pack),1,2.99,2019-12-25 15:12:00,523 Sunset St, Seattle,WA,98101 +297319,AA Batteries (4-pack),1,3.84,2019-12-25 08:18:00,652 Wilson St, Austin,TX,73301 +297320,Macbook Pro Laptop,1,1700.0,2019-12-14 20:12:00,160 West St, Dallas,TX,75001 +297321,AA Batteries (4-pack),1,3.84,2019-12-24 12:52:00,679 Lakeview St, New York City,NY,10001 +297322,ThinkPad Laptop,1,999.99,2019-12-06 10:54:00,823 Washington St, San Francisco,CA,94016 +297323,Flatscreen TV,1,300.0,2019-12-04 22:00:00,90 Park St, Dallas,TX,75001 +297324,Lightning Charging Cable,1,14.95,2019-12-18 17:40:00,860 Highland St, Boston,MA,02215 +297325,Bose SoundSport Headphones,1,99.99,2019-12-01 15:18:00,154 4th St, Portland,OR,97035 +297326,27in 4K Gaming Monitor,1,389.99,2019-12-17 18:36:00,823 Park St, New York City,NY,10001 +297327,iPhone,1,700.0,2019-12-12 09:48:00,787 Lincoln St, Boston,MA,02215 +297328,USB-C Charging Cable,1,11.95,2019-12-27 01:46:00,761 6th St, Austin,TX,73301 +297329,iPhone,1,700.0,2019-12-28 12:44:00,505 Madison St, Austin,TX,73301 +297330,Apple Airpods Headphones,1,150.0,2019-12-14 20:57:00,854 8th St, New York City,NY,10001 +297331,USB-C Charging Cable,1,11.95,2019-12-18 11:34:00,725 13th St, San Francisco,CA,94016 +297332,AAA Batteries (4-pack),2,2.99,2019-12-09 01:28:00,16 Center St, Austin,TX,73301 +297333,ThinkPad Laptop,1,999.99,2019-12-24 15:28:00,32 Lincoln St, Atlanta,GA,30301 +297334,Lightning Charging Cable,1,14.95,2019-12-16 17:21:00,980 Jefferson St, San Francisco,CA,94016 +297335,AAA Batteries (4-pack),1,2.99,2019-12-20 11:26:00,700 Madison St, New York City,NY,10001 +297336,AA Batteries (4-pack),4,3.84,2019-12-07 09:19:00,344 Lake St, New York City,NY,10001 +297337,Apple Airpods Headphones,1,150.0,2019-12-06 11:40:00,200 2nd St, San Francisco,CA,94016 +297338,USB-C Charging Cable,1,11.95,2019-12-03 13:54:00,946 Cherry St, Los Angeles,CA,90001 +297339,USB-C Charging Cable,1,11.95,2019-12-21 12:02:00,552 Cherry St, Dallas,TX,75001 +297340,Lightning Charging Cable,3,14.95,2019-12-02 12:01:00,132 13th St, Boston,MA,02215 +297341,27in FHD Monitor,1,149.99,2019-12-15 11:28:00,987 8th St, New York City,NY,10001 +297342,USB-C Charging Cable,1,11.95,2019-12-17 01:57:00,871 Cherry St, San Francisco,CA,94016 +297343,iPhone,1,700.0,2019-12-28 18:11:00,914 Pine St, Boston,MA,02215 +297343,Wired Headphones,1,11.99,2019-12-28 18:11:00,914 Pine St, Boston,MA,02215 +297344,Bose SoundSport Headphones,1,99.99,2019-12-10 14:52:00,113 4th St, Los Angeles,CA,90001 +297345,Google Phone,1,600.0,2019-12-02 13:39:00,88 8th St, Atlanta,GA,30301 +297345,Wired Headphones,1,11.99,2019-12-02 13:39:00,88 8th St, Atlanta,GA,30301 +297346,27in 4K Gaming Monitor,1,389.99,2019-12-30 22:08:00,756 Hill St, Dallas,TX,75001 +297347,iPhone,1,700.0,2019-12-17 16:50:00,266 Madison St, Atlanta,GA,30301 +297348,Bose SoundSport Headphones,1,99.99,2019-12-11 13:24:00,667 Highland St, Dallas,TX,75001 +297349,20in Monitor,1,109.99,2019-12-02 19:29:00,165 River St, San Francisco,CA,94016 +297350,Lightning Charging Cable,1,14.95,2019-12-14 17:20:00,295 Cherry St, Los Angeles,CA,90001 +297351,Wired Headphones,1,11.99,2019-12-10 23:54:00,413 Church St, New York City,NY,10001 +297352,USB-C Charging Cable,1,11.95,2019-12-01 10:06:00,179 Elm St, Los Angeles,CA,90001 +297353,27in 4K Gaming Monitor,1,389.99,2019-12-11 21:37:00,486 10th St, Austin,TX,73301 +297354,34in Ultrawide Monitor,1,379.99,2019-12-28 12:40:00,409 Sunset St, New York City,NY,10001 +297355,USB-C Charging Cable,1,11.95,2019-12-30 06:36:00,715 Adams St, New York City,NY,10001 +297356,27in 4K Gaming Monitor,1,389.99,2019-12-18 22:01:00,769 14th St, Dallas,TX,75001 +297357,Flatscreen TV,1,300.0,2019-12-13 00:30:00,725 Lakeview St, San Francisco,CA,94016 +297358,USB-C Charging Cable,1,11.95,2019-12-19 21:28:00,903 North St, Portland,OR,97035 +297359,USB-C Charging Cable,1,11.95,2019-12-08 08:19:00,936 Washington St, Atlanta,GA,30301 +297360,Lightning Charging Cable,1,14.95,2019-12-08 20:56:00,525 11th St, San Francisco,CA,94016 +297361,AA Batteries (4-pack),1,3.84,2019-12-08 11:11:00,617 Highland St, Austin,TX,73301 +297362,Macbook Pro Laptop,1,1700.0,2019-12-11 06:31:00,494 Ridge St, Portland,ME,04101 +297363,Wired Headphones,1,11.99,2019-12-15 22:34:00,707 Adams St, Boston,MA,02215 +297364,AA Batteries (4-pack),2,3.84,2019-12-19 07:34:00,844 Willow St, San Francisco,CA,94016 +297365,Lightning Charging Cable,1,14.95,2019-12-08 13:20:00,926 Adams St, San Francisco,CA,94016 +297366,Wired Headphones,1,11.99,2019-12-07 19:09:00,316 8th St, San Francisco,CA,94016 +297367,Lightning Charging Cable,1,14.95,2019-12-11 10:23:00,300 Ridge St, Boston,MA,02215 +297368,Apple Airpods Headphones,1,150.0,2019-12-06 12:56:00,624 Washington St, Atlanta,GA,30301 +297369,27in FHD Monitor,1,149.99,2019-12-13 12:33:00,758 1st St, Boston,MA,02215 +297370,AA Batteries (4-pack),3,3.84,2019-12-26 21:31:00,973 Main St, Portland,OR,97035 +297371,Lightning Charging Cable,1,14.95,2019-12-10 20:05:00,723 Lake St, New York City,NY,10001 +297372,Bose SoundSport Headphones,1,99.99,2019-12-28 10:34:00,580 Sunset St, San Francisco,CA,94016 +297373,Wired Headphones,1,11.99,2019-12-19 20:22:00,999 Maple St, Atlanta,GA,30301 +297374,iPhone,1,700.0,2019-12-13 09:42:00,982 North St, San Francisco,CA,94016 +297374,Apple Airpods Headphones,1,150.0,2019-12-13 09:42:00,982 North St, San Francisco,CA,94016 +297375,Wired Headphones,1,11.99,2019-12-21 19:41:00,26 Cherry St, Boston,MA,02215 +297376,27in FHD Monitor,1,149.99,2019-12-03 11:38:00,542 9th St, New York City,NY,10001 +297377,AAA Batteries (4-pack),1,2.99,2019-12-29 20:41:00,62 Cherry St, San Francisco,CA,94016 +297378,iPhone,1,700.0,2019-12-19 10:12:00,991 4th St, Dallas,TX,75001 +297378,Apple Airpods Headphones,1,150.0,2019-12-19 10:12:00,991 4th St, Dallas,TX,75001 +297379,Apple Airpods Headphones,1,150.0,2019-12-18 16:17:00,934 12th St, New York City,NY,10001 +297380,27in 4K Gaming Monitor,1,389.99,2019-12-07 18:20:00,19 Pine St, Portland,OR,97035 +297381,34in Ultrawide Monitor,1,379.99,2019-12-29 00:34:00,977 Hickory St, Atlanta,GA,30301 +297382,Bose SoundSport Headphones,1,99.99,2019-12-03 17:44:00,442 Lincoln St, San Francisco,CA,94016 +297383,Apple Airpods Headphones,1,150.0,2019-12-27 19:42:00,719 Main St, New York City,NY,10001 +297384,Bose SoundSport Headphones,1,99.99,2019-12-26 18:04:00,821 Spruce St, San Francisco,CA,94016 +297385,AA Batteries (4-pack),1,3.84,2019-12-24 15:25:00,435 13th St, Atlanta,GA,30301 +297386,Google Phone,1,600.0,2019-12-04 04:03:00,542 Ridge St, San Francisco,CA,94016 +297387,Lightning Charging Cable,1,14.95,2019-12-22 19:50:00,84 South St, Dallas,TX,75001 +297388,Google Phone,1,600.0,2019-12-09 04:34:00,148 Forest St, Austin,TX,73301 +297388,Wired Headphones,1,11.99,2019-12-09 04:34:00,148 Forest St, Austin,TX,73301 +297389,Flatscreen TV,1,300.0,2019-12-15 00:46:00,455 Lake St, San Francisco,CA,94016 +297390,Wired Headphones,1,11.99,2019-12-22 22:56:00,357 Cherry St, Austin,TX,73301 +297391,27in 4K Gaming Monitor,1,389.99,2019-12-31 00:19:00,875 River St, San Francisco,CA,94016 +297392,Apple Airpods Headphones,1,150.0,2019-12-21 04:46:00,138 7th St, Boston,MA,02215 +297393,Lightning Charging Cable,1,14.95,2019-12-31 21:52:00,884 Adams St, San Francisco,CA,94016 +297394,Flatscreen TV,1,300.0,2019-12-16 14:18:00,140 Elm St, San Francisco,CA,94016 +297395,Lightning Charging Cable,1,14.95,2019-12-11 13:46:00,715 North St, Boston,MA,02215 +297396,Lightning Charging Cable,1,14.95,2019-12-04 18:34:00,468 West St, Los Angeles,CA,90001 +297397,iPhone,1,700.0,2019-12-24 08:24:00,814 South St, New York City,NY,10001 +297398,AA Batteries (4-pack),1,3.84,2019-12-19 12:44:00,449 Cedar St, Boston,MA,02215 +297399,Wired Headphones,1,11.99,2019-12-05 20:26:00,30 Forest St, Atlanta,GA,30301 +297400,Wired Headphones,1,11.99,2019-12-25 18:48:00,231 Cherry St, Los Angeles,CA,90001 +297401,AAA Batteries (4-pack),1,2.99,2019-12-02 10:14:00,970 Meadow St, Atlanta,GA,30301 +297402,Lightning Charging Cable,1,14.95,2019-12-10 21:53:00,937 Ridge St, Dallas,TX,75001 +297403,Wired Headphones,1,11.99,2019-12-30 12:29:00,687 Jefferson St, San Francisco,CA,94016 +297404,Apple Airpods Headphones,1,150.0,2019-12-04 17:52:00,413 5th St, Boston,MA,02215 +297405,27in FHD Monitor,1,149.99,2019-12-18 18:59:00,329 Johnson St, Seattle,WA,98101 +297406,Lightning Charging Cable,1,14.95,2019-12-29 22:09:00,474 Jefferson St, Los Angeles,CA,90001 +297407,AAA Batteries (4-pack),1,2.99,2019-12-05 14:32:00,63 Jackson St, Boston,MA,02215 +297408,AA Batteries (4-pack),1,3.84,2019-12-20 11:36:00,670 6th St, Los Angeles,CA,90001 +297409,Lightning Charging Cable,1,14.95,2019-12-22 19:17:00,208 11th St, San Francisco,CA,94016 +297410,AAA Batteries (4-pack),1,2.99,2019-12-19 14:27:00,692 Elm St, Dallas,TX,75001 +297411,Wired Headphones,1,11.99,2019-12-09 17:51:00,637 13th St, New York City,NY,10001 +297412,USB-C Charging Cable,1,11.95,2019-12-15 18:28:00,616 4th St, Los Angeles,CA,90001 +297412,Lightning Charging Cable,1,14.95,2019-12-15 18:28:00,616 4th St, Los Angeles,CA,90001 +297413,AAA Batteries (4-pack),2,2.99,2019-12-21 07:20:00,88 Church St, Seattle,WA,98101 +297414,USB-C Charging Cable,1,11.95,2019-12-25 20:56:00,82 12th St, Seattle,WA,98101 +297415,AAA Batteries (4-pack),2,2.99,2019-12-03 20:35:00,167 Maple St, San Francisco,CA,94016 +297416,27in 4K Gaming Monitor,1,389.99,2019-12-25 20:35:00,472 River St, Los Angeles,CA,90001 +297417,AAA Batteries (4-pack),1,2.99,2019-12-06 21:53:00,8 Church St, Atlanta,GA,30301 +297418,Wired Headphones,2,11.99,2019-12-26 21:57:00,189 Lincoln St, San Francisco,CA,94016 +297419,Apple Airpods Headphones,1,150.0,2019-12-29 20:04:00,637 Washington St, San Francisco,CA,94016 +297420,Wired Headphones,1,11.99,2019-12-01 16:52:00,918 Dogwood St, Boston,MA,02215 +297421,Apple Airpods Headphones,1,150.0,2019-12-19 11:38:00,272 2nd St, Atlanta,GA,30301 +297422,USB-C Charging Cable,1,11.95,2019-12-27 13:08:00,932 Center St, New York City,NY,10001 +297423,Apple Airpods Headphones,1,150.0,2019-12-13 23:12:00,885 West St, Portland,OR,97035 +297424,Lightning Charging Cable,1,14.95,2019-12-19 13:38:00,801 Meadow St, New York City,NY,10001 +297425,Lightning Charging Cable,1,14.95,2019-12-21 22:10:00,588 9th St, San Francisco,CA,94016 +297426,USB-C Charging Cable,1,11.95,2019-12-27 14:08:00,350 5th St, Dallas,TX,75001 +297427,AA Batteries (4-pack),1,3.84,2019-12-16 18:19:00,577 12th St, Portland,ME,04101 +297428,Lightning Charging Cable,1,14.95,2019-12-26 11:56:00,967 Jackson St, Portland,ME,04101 +297429,Apple Airpods Headphones,1,150.0,2019-12-03 12:31:00,514 Hickory St, Dallas,TX,75001 +297430,Lightning Charging Cable,1,14.95,2019-12-14 09:51:00,844 Highland St, San Francisco,CA,94016 +297431,Apple Airpods Headphones,1,150.0,2019-12-13 09:07:00,587 Washington St, Austin,TX,73301 +297432,USB-C Charging Cable,1,11.95,2019-12-13 10:04:00,134 Spruce St, New York City,NY,10001 +297433,Wired Headphones,1,11.99,2019-12-31 15:52:00,416 Main St, Seattle,WA,98101 +297434,Apple Airpods Headphones,1,150.0,2019-12-13 18:40:00,633 Meadow St, San Francisco,CA,94016 +297435,AA Batteries (4-pack),2,3.84,2019-12-08 10:54:00,542 Center St, San Francisco,CA,94016 +297436,Flatscreen TV,1,300.0,2019-12-31 18:03:00,926 Lake St, Seattle,WA,98101 +297437,Apple Airpods Headphones,1,150.0,2019-12-11 00:15:00,227 4th St, San Francisco,CA,94016 +297438,iPhone,1,700.0,2019-12-17 13:13:00,708 Walnut St, New York City,NY,10001 +297438,Lightning Charging Cable,1,14.95,2019-12-17 13:13:00,708 Walnut St, New York City,NY,10001 +297439,Wired Headphones,1,11.99,2019-12-27 18:43:00,187 5th St, New York City,NY,10001 +297440,Lightning Charging Cable,1,14.95,2019-12-03 11:56:00,769 Park St, San Francisco,CA,94016 +297441,Bose SoundSport Headphones,1,99.99,2019-12-24 10:04:00,722 Maple St, New York City,NY,10001 +297442,AA Batteries (4-pack),1,3.84,2019-12-28 12:56:00,148 Lake St, Portland,OR,97035 +297443,AAA Batteries (4-pack),1,2.99,2019-12-22 04:57:00,54 14th St, Atlanta,GA,30301 +297444,Apple Airpods Headphones,1,150.0,2019-12-22 19:52:00,414 Highland St, New York City,NY,10001 +297445,27in 4K Gaming Monitor,1,389.99,2019-12-11 09:40:00,590 10th St, Atlanta,GA,30301 +297446,Flatscreen TV,1,300.0,2019-12-04 17:16:00,857 Hill St, Seattle,WA,98101 +297447,Apple Airpods Headphones,1,150.0,2019-12-29 11:22:00,628 2nd St, San Francisco,CA,94016 +297448,Lightning Charging Cable,1,14.95,2019-12-05 10:45:00,961 Willow St, Atlanta,GA,30301 +297449,34in Ultrawide Monitor,1,379.99,2019-12-09 12:01:00,195 11th St, San Francisco,CA,94016 +297450,34in Ultrawide Monitor,1,379.99,2019-12-12 15:45:00,762 Elm St, Los Angeles,CA,90001 +297451,AA Batteries (4-pack),1,3.84,2019-12-24 17:49:00,599 Washington St, Dallas,TX,75001 +297452,Google Phone,1,600.0,2019-12-29 20:46:00,451 Highland St, New York City,NY,10001 +297452,USB-C Charging Cable,2,11.95,2019-12-29 20:46:00,451 Highland St, New York City,NY,10001 +297453,Lightning Charging Cable,1,14.95,2019-12-28 15:14:00,469 Ridge St, Portland,OR,97035 +297454,Apple Airpods Headphones,1,150.0,2019-12-23 11:27:00,801 Pine St, San Francisco,CA,94016 +297455,Lightning Charging Cable,1,14.95,2019-12-02 14:51:00,972 Center St, New York City,NY,10001 +297456,Lightning Charging Cable,1,14.95,2019-12-25 05:57:00,570 Highland St, San Francisco,CA,94016 +297457,Google Phone,1,600.0,2019-12-29 20:59:00,640 Adams St, San Francisco,CA,94016 +297457,USB-C Charging Cable,2,11.95,2019-12-29 20:59:00,640 Adams St, San Francisco,CA,94016 +297458,USB-C Charging Cable,1,11.95,2019-12-13 18:12:00,660 Lincoln St, San Francisco,CA,94016 +297459,AA Batteries (4-pack),1,3.84,2019-12-04 10:58:00,619 13th St, San Francisco,CA,94016 +297460,USB-C Charging Cable,1,11.95,2019-12-19 11:28:00,602 Adams St, San Francisco,CA,94016 +297461,AA Batteries (4-pack),1,3.84,2019-12-23 20:36:00,86 Jefferson St, Dallas,TX,75001 +297462,AA Batteries (4-pack),1,3.84,2019-12-15 15:41:00,590 Main St, Atlanta,GA,30301 +297463,Lightning Charging Cable,1,14.95,2019-12-18 13:01:00,960 Hill St, Los Angeles,CA,90001 +297464,27in 4K Gaming Monitor,1,389.99,2019-12-07 19:55:00,955 Cherry St, San Francisco,CA,94016 +297465,iPhone,1,700.0,2019-12-27 22:48:00,550 Lakeview St, San Francisco,CA,94016 +297466,Wired Headphones,2,11.99,2019-12-02 22:58:00,644 Jefferson St, San Francisco,CA,94016 +297467,20in Monitor,1,109.99,2019-12-27 17:07:00,53 Highland St, Dallas,TX,75001 +297468,AA Batteries (4-pack),1,3.84,2019-12-14 21:29:00,880 Sunset St, Los Angeles,CA,90001 +297469,LG Washing Machine,1,600.0,2019-12-28 17:06:00,26 Dogwood St, Los Angeles,CA,90001 +297470,AAA Batteries (4-pack),1,2.99,2019-12-21 23:47:00,132 Center St, Los Angeles,CA,90001 +297471,27in FHD Monitor,1,149.99,2019-12-05 21:20:00,9 Park St, Portland,OR,97035 +297472,USB-C Charging Cable,1,11.95,2019-12-27 14:12:00,789 Madison St, Boston,MA,02215 +297473,AA Batteries (4-pack),1,3.84,2019-12-01 13:29:00,803 Chestnut St, Portland,OR,97035 +297474,Macbook Pro Laptop,1,1700.0,2019-12-22 12:21:00,581 Jackson St, New York City,NY,10001 +297475,20in Monitor,1,109.99,2019-12-24 14:14:00,389 Cedar St, Austin,TX,73301 +297476,Bose SoundSport Headphones,1,99.99,2019-12-29 13:10:00,403 Ridge St, Seattle,WA,98101 +297477,Apple Airpods Headphones,1,150.0,2019-12-02 13:25:00,452 Madison St, San Francisco,CA,94016 +297478,27in FHD Monitor,1,149.99,2019-12-05 19:06:00,168 Meadow St, Boston,MA,02215 +297479,AA Batteries (4-pack),1,3.84,2019-12-10 16:33:00,520 Jackson St, Seattle,WA,98101 +297480,Bose SoundSport Headphones,1,99.99,2019-12-26 10:59:00,111 Maple St, San Francisco,CA,94016 +297481,AA Batteries (4-pack),1,3.84,2019-12-31 23:42:00,82 Hill St, Dallas,TX,75001 +297482,Wired Headphones,2,11.99,2019-12-11 13:04:00,971 Maple St, Boston,MA,02215 +297483,iPhone,1,700.0,2019-12-04 14:55:00,705 Dogwood St, Boston,MA,02215 +297484,Lightning Charging Cable,1,14.95,2019-12-12 08:50:00,991 8th St, Los Angeles,CA,90001 +297485,27in FHD Monitor,1,149.99,2019-12-02 14:42:00,521 Ridge St, San Francisco,CA,94016 +297486,Lightning Charging Cable,1,14.95,2019-12-22 19:00:00,535 Hill St, San Francisco,CA,94016 +297487,AA Batteries (4-pack),2,3.84,2019-12-31 18:17:00,404 11th St, Portland,OR,97035 +297488,Macbook Pro Laptop,1,1700.0,2019-12-07 14:38:00,328 Ridge St, San Francisco,CA,94016 +297489,AAA Batteries (4-pack),1,2.99,2019-12-16 13:56:00,470 2nd St, New York City,NY,10001 +297490,Lightning Charging Cable,1,14.95,2019-12-23 19:17:00,284 Highland St, Dallas,TX,75001 +297491,Lightning Charging Cable,1,14.95,2019-12-17 17:58:00,470 9th St, San Francisco,CA,94016 +297492,ThinkPad Laptop,1,999.99,2019-12-20 10:16:00,999 1st St, New York City,NY,10001 +297493,AA Batteries (4-pack),2,3.84,2019-12-23 07:28:00,485 Chestnut St, Dallas,TX,75001 +297494,27in 4K Gaming Monitor,1,389.99,2019-12-20 05:40:00,946 Dogwood St, Boston,MA,02215 +297495,Lightning Charging Cable,1,14.95,2019-12-21 21:07:00,997 Maple St, New York City,NY,10001 +297496,Macbook Pro Laptop,1,1700.0,2019-12-15 10:49:00,645 Lincoln St, Seattle,WA,98101 +297497,27in FHD Monitor,1,149.99,2019-12-06 21:28:00,663 4th St, San Francisco,CA,94016 +297498,Apple Airpods Headphones,1,150.0,2019-12-09 07:36:00,269 10th St, New York City,NY,10001 +297499,Apple Airpods Headphones,1,150.0,2019-12-30 00:03:00,374 Park St, Boston,MA,02215 +297500,AA Batteries (4-pack),1,3.84,2019-12-31 14:24:00,637 Main St, Los Angeles,CA,90001 +297501,Bose SoundSport Headphones,1,99.99,2019-12-03 10:25:00,173 Lakeview St, Boston,MA,02215 +297502,USB-C Charging Cable,1,11.95,2019-12-25 22:31:00,661 Forest St, Portland,OR,97035 +297503,Lightning Charging Cable,1,14.95,2019-12-23 22:02:00,631 Willow St, New York City,NY,10001 +297504,USB-C Charging Cable,1,11.95,2019-12-08 13:29:00,679 North St, San Francisco,CA,94016 +297505,Wired Headphones,2,11.99,2019-12-19 21:41:00,578 Washington St, San Francisco,CA,94016 +297506,Flatscreen TV,1,300.0,2019-12-14 10:56:00,732 6th St, New York City,NY,10001 +297507,Bose SoundSport Headphones,1,99.99,2019-12-13 17:54:00,59 Center St, Los Angeles,CA,90001 +297508,AAA Batteries (4-pack),1,2.99,2019-12-25 12:54:00,564 11th St, New York City,NY,10001 +297509,Lightning Charging Cable,1,14.95,2019-12-16 00:32:00,980 Maple St, Los Angeles,CA,90001 +297510,USB-C Charging Cable,1,11.95,2019-12-25 18:39:00,73 North St, Seattle,WA,98101 +297511,Apple Airpods Headphones,1,150.0,2019-12-06 16:42:00,97 North St, Portland,OR,97035 +297512,USB-C Charging Cable,1,11.95,2019-12-03 12:50:00,336 13th St, Boston,MA,02215 +297513,Vareebadd Phone,1,400.0,2019-12-24 15:00:00,961 South St, Seattle,WA,98101 +297514,AAA Batteries (4-pack),1,2.99,2019-12-04 19:04:00,751 14th St, Seattle,WA,98101 +297515,AA Batteries (4-pack),1,3.84,2019-12-03 12:03:00,510 Highland St, New York City,NY,10001 +297516,Apple Airpods Headphones,1,150.0,2019-12-26 10:14:00,887 Elm St, Austin,TX,73301 +297517,Lightning Charging Cable,1,14.95,2019-12-03 12:29:00,768 Park St, Dallas,TX,75001 +297518,AA Batteries (4-pack),1,3.84,2019-12-15 19:27:00,804 5th St, San Francisco,CA,94016 +297519,Lightning Charging Cable,1,14.95,2019-12-02 09:18:00,899 River St, Boston,MA,02215 +297520,Lightning Charging Cable,1,14.95,2019-12-22 11:25:00,241 11th St, Los Angeles,CA,90001 +297521,Lightning Charging Cable,1,14.95,2019-12-29 14:02:00,319 Meadow St, Seattle,WA,98101 +297522,Lightning Charging Cable,1,14.95,2019-12-21 13:14:00,485 Center St, Los Angeles,CA,90001 +297523,27in 4K Gaming Monitor,1,389.99,2019-12-03 18:17:00,926 West St, Los Angeles,CA,90001 +297524,AAA Batteries (4-pack),2,2.99,2019-12-15 09:28:00,101 West St, Seattle,WA,98101 +297525,AA Batteries (4-pack),1,3.84,2019-12-15 09:28:00,468 Maple St, New York City,NY,10001 +297526,Bose SoundSport Headphones,1,99.99,2019-12-01 16:35:00,146 Center St, San Francisco,CA,94016 +297527,Bose SoundSport Headphones,1,99.99,2019-12-20 03:31:00,844 Jackson St, San Francisco,CA,94016 +297528,Lightning Charging Cable,1,14.95,2019-12-05 10:38:00,213 Elm St, Boston,MA,02215 +297529,20in Monitor,1,109.99,2019-12-13 14:11:00,527 Washington St, Dallas,TX,75001 +297530,Apple Airpods Headphones,1,150.0,2019-12-02 15:13:00,98 Spruce St, New York City,NY,10001 +297531,iPhone,1,700.0,2019-12-19 06:57:00,161 Walnut St, Boston,MA,02215 +297532,Lightning Charging Cable,1,14.95,2019-12-22 20:44:00,491 Highland St, Boston,MA,02215 +297533,Apple Airpods Headphones,1,150.0,2019-12-14 12:45:00,590 Washington St, Atlanta,GA,30301 +297534,USB-C Charging Cable,1,11.95,2019-12-07 06:39:00,585 Jackson St, Los Angeles,CA,90001 +297535,USB-C Charging Cable,2,11.95,2019-12-07 18:00:00,253 South St, San Francisco,CA,94016 +297536,USB-C Charging Cable,1,11.95,2019-12-25 22:01:00,756 Forest St, Boston,MA,02215 +297537,Apple Airpods Headphones,1,150.0,2019-12-23 19:24:00,61 Wilson St, Portland,OR,97035 +297538,iPhone,1,700.0,2019-12-16 16:21:00,72 Sunset St, Atlanta,GA,30301 +297538,Lightning Charging Cable,1,14.95,2019-12-16 16:21:00,72 Sunset St, Atlanta,GA,30301 +297539,Bose SoundSport Headphones,1,99.99,2019-12-29 13:28:00,633 Church St, Dallas,TX,75001 +297540,Lightning Charging Cable,1,14.95,2019-12-17 22:29:00,968 Hill St, Los Angeles,CA,90001 +297541,AAA Batteries (4-pack),1,2.99,2019-12-20 10:24:00,538 Hickory St, San Francisco,CA,94016 +297542,AAA Batteries (4-pack),3,2.99,2019-12-14 14:56:00,252 Dogwood St, San Francisco,CA,94016 +297543,34in Ultrawide Monitor,1,379.99,2019-12-15 17:10:00,916 7th St, Dallas,TX,75001 +297544,AAA Batteries (4-pack),2,2.99,2019-12-09 19:26:00,520 9th St, San Francisco,CA,94016 +297545,AAA Batteries (4-pack),2,2.99,2019-12-26 16:15:00,193 Chestnut St, Seattle,WA,98101 +297546,iPhone,1,700.0,2019-12-12 18:28:00,11 Jefferson St, Boston,MA,02215 +297547,27in 4K Gaming Monitor,1,389.99,2019-12-01 13:25:00,531 Meadow St, Seattle,WA,98101 +297548,USB-C Charging Cable,1,11.95,2019-12-27 23:04:00,24 Pine St, New York City,NY,10001 +297549,AA Batteries (4-pack),1,3.84,2019-12-26 08:53:00,942 Lakeview St, Dallas,TX,75001 +297550,AA Batteries (4-pack),1,3.84,2019-12-31 03:02:00,591 Jackson St, Dallas,TX,75001 +297551,iPhone,1,700.0,2019-12-19 13:49:00,840 12th St, Atlanta,GA,30301 +297552,Apple Airpods Headphones,1,150.0,2019-12-23 13:34:00,662 Center St, Boston,MA,02215 +297553,27in FHD Monitor,1,149.99,2019-12-24 09:02:00,784 Center St, Los Angeles,CA,90001 +297554,Vareebadd Phone,1,400.0,2019-12-03 15:32:00,275 11th St, Dallas,TX,75001 +297554,USB-C Charging Cable,1,11.95,2019-12-03 15:32:00,275 11th St, Dallas,TX,75001 +297554,iPhone,1,700.0,2019-12-03 15:32:00,275 11th St, Dallas,TX,75001 +297555,Bose SoundSport Headphones,1,99.99,2019-12-17 15:28:00,540 8th St, Los Angeles,CA,90001 +297556,Bose SoundSport Headphones,1,99.99,2019-12-26 15:07:00,618 Elm St, San Francisco,CA,94016 +297557,USB-C Charging Cable,1,11.95,2019-12-16 16:34:00,978 10th St, Boston,MA,02215 +297558,Apple Airpods Headphones,1,150.0,2019-12-13 18:44:00,815 Maple St, Seattle,WA,98101 +297559,USB-C Charging Cable,1,11.95,2019-12-08 11:57:00,417 8th St, New York City,NY,10001 +297560,AA Batteries (4-pack),1,3.84,2019-12-21 13:28:00,917 Main St, Boston,MA,02215 +297561,AA Batteries (4-pack),1,3.84,2019-12-14 13:48:00,65 South St, Seattle,WA,98101 +297562,Lightning Charging Cable,2,14.95,2019-12-10 00:09:00,610 Hickory St, Boston,MA,02215 +297563,Vareebadd Phone,1,400.0,2019-12-05 21:35:00,928 Jefferson St, Los Angeles,CA,90001 +297564,27in 4K Gaming Monitor,1,389.99,2019-12-16 12:19:00,83 Johnson St, Portland,OR,97035 +297565,Google Phone,1,600.0,2019-12-04 18:56:00,608 Walnut St, Dallas,TX,75001 +297565,Bose SoundSport Headphones,1,99.99,2019-12-04 18:56:00,608 Walnut St, Dallas,TX,75001 +297566,Flatscreen TV,1,300.0,2019-12-08 21:00:00,634 Cedar St, Austin,TX,73301 +297567,34in Ultrawide Monitor,1,379.99,2019-12-08 13:33:00,442 Dogwood St, Dallas,TX,75001 +297568,AA Batteries (4-pack),2,3.84,2019-12-25 00:15:00,742 North St, Boston,MA,02215 +297569,iPhone,1,700.0,2019-12-12 12:21:00,899 11th St, Boston,MA,02215 +297569,Lightning Charging Cable,1,14.95,2019-12-12 12:21:00,899 11th St, Boston,MA,02215 +297570,Wired Headphones,1,11.99,2019-12-11 23:57:00,165 10th St, Portland,OR,97035 +297571,Lightning Charging Cable,1,14.95,2019-12-25 08:54:00,700 Church St, San Francisco,CA,94016 +297572,USB-C Charging Cable,1,11.95,2019-12-31 09:31:00,880 Madison St, Austin,TX,73301 +297573,USB-C Charging Cable,1,11.95,2019-12-04 08:34:00,366 Cedar St, Boston,MA,02215 +297573,Lightning Charging Cable,1,14.95,2019-12-04 08:34:00,366 Cedar St, Boston,MA,02215 +297574,Vareebadd Phone,1,400.0,2019-12-18 13:51:00,519 Lake St, San Francisco,CA,94016 +297575,27in 4K Gaming Monitor,1,389.99,2019-12-12 21:37:00,142 Chestnut St, New York City,NY,10001 +297576,iPhone,1,700.0,2019-12-24 13:31:00,587 North St, New York City,NY,10001 +297576,Lightning Charging Cable,1,14.95,2019-12-24 13:31:00,587 North St, New York City,NY,10001 +297577,Google Phone,1,600.0,2019-12-01 11:14:00,90 Walnut St, San Francisco,CA,94016 +297578,USB-C Charging Cable,1,11.95,2019-12-07 19:14:00,714 Hickory St, San Francisco,CA,94016 +297579,Lightning Charging Cable,1,14.95,2019-12-23 14:31:00,653 9th St, San Francisco,CA,94016 +297580,Apple Airpods Headphones,1,150.0,2019-12-12 19:57:00,547 Jefferson St, Atlanta,GA,30301 +297581,27in 4K Gaming Monitor,1,389.99,2019-12-13 12:36:00,317 11th St, New York City,NY,10001 +297582,Lightning Charging Cable,1,14.95,2019-12-18 00:54:00,888 11th St, New York City,NY,10001 +297583,AA Batteries (4-pack),1,3.84,2019-12-05 16:26:00,972 10th St, Boston,MA,02215 +297584,USB-C Charging Cable,1,11.95,2019-12-22 23:02:00,84 Jefferson St, Austin,TX,73301 +297585,AA Batteries (4-pack),1,3.84,2019-12-21 19:27:00,508 Meadow St, New York City,NY,10001 +297586,Wired Headphones,1,11.99,2019-12-29 20:17:00,473 9th St, San Francisco,CA,94016 +297587,Bose SoundSport Headphones,1,99.99,2019-12-12 11:46:00,903 Main St, Boston,MA,02215 +297588,AAA Batteries (4-pack),1,2.99,2019-12-23 21:47:00,390 Maple St, Los Angeles,CA,90001 +297589,AA Batteries (4-pack),4,3.84,2019-12-07 13:55:00,552 1st St, Atlanta,GA,30301 +297590,AA Batteries (4-pack),2,3.84,2019-12-01 17:19:00,813 Park St, San Francisco,CA,94016 +297591,Macbook Pro Laptop,1,1700.0,2019-12-23 11:46:00,127 Church St, New York City,NY,10001 +297592,iPhone,1,700.0,2019-12-01 11:22:00,76 River St, Los Angeles,CA,90001 +297592,Lightning Charging Cable,1,14.95,2019-12-01 11:22:00,76 River St, Los Angeles,CA,90001 +297593,AAA Batteries (4-pack),1,2.99,2019-12-10 10:37:00,843 Jackson St, Atlanta,GA,30301 +297594,USB-C Charging Cable,2,11.95,2019-12-09 15:29:00,169 Washington St, San Francisco,CA,94016 +297595,Lightning Charging Cable,1,14.95,2019-12-26 10:31:00,881 Hickory St, Dallas,TX,75001 +297596,Flatscreen TV,1,300.0,2019-12-10 18:45:00,301 13th St, Los Angeles,CA,90001 +297597,Apple Airpods Headphones,1,150.0,2019-12-12 16:26:00,422 Johnson St, Atlanta,GA,30301 +297598,ThinkPad Laptop,1,999.99,2019-12-05 00:04:00,188 Forest St, Seattle,WA,98101 +297599,AAA Batteries (4-pack),2,2.99,2019-12-19 13:07:00,166 Jackson St, New York City,NY,10001 +297600,Flatscreen TV,1,300.0,2019-12-05 18:51:00,854 Main St, San Francisco,CA,94016 +297601,Bose SoundSport Headphones,1,99.99,2019-12-23 17:52:00,631 Main St, Los Angeles,CA,90001 +297602,Lightning Charging Cable,1,14.95,2019-12-21 17:18:00,441 7th St, San Francisco,CA,94016 +297603,Bose SoundSport Headphones,1,99.99,2019-12-08 01:20:00,546 Jefferson St, Los Angeles,CA,90001 +297604,Lightning Charging Cable,1,14.95,2019-12-26 16:46:00,659 12th St, Austin,TX,73301 +297605,Lightning Charging Cable,1,14.95,2019-12-22 11:47:00,936 Willow St, San Francisco,CA,94016 +297606,AA Batteries (4-pack),3,3.84,2019-12-04 06:28:00,175 Pine St, Portland,OR,97035 +297607,AA Batteries (4-pack),1,3.84,2019-12-02 19:06:00,211 Willow St, Atlanta,GA,30301 +297608,Bose SoundSport Headphones,1,99.99,2019-12-23 18:52:00,258 West St, Seattle,WA,98101 +297609,Google Phone,1,600.0,2019-12-09 19:23:00,252 14th St, Austin,TX,73301 +297610,USB-C Charging Cable,1,11.95,2019-12-17 06:58:00,638 Jefferson St, Los Angeles,CA,90001 +297611,Bose SoundSport Headphones,1,99.99,2019-12-31 16:33:00,752 Park St, New York City,NY,10001 +297612,Bose SoundSport Headphones,1,99.99,2019-12-23 19:00:00,54 7th St, San Francisco,CA,94016 +297613,20in Monitor,1,109.99,2019-12-07 15:30:00,642 Pine St, Los Angeles,CA,90001 +297614,27in FHD Monitor,1,149.99,2019-12-16 00:05:00,151 Wilson St, Boston,MA,02215 +297615,AAA Batteries (4-pack),2,2.99,2019-12-19 20:17:00,884 North St, Seattle,WA,98101 +297616,Macbook Pro Laptop,1,1700.0,2019-12-14 22:39:00,748 Elm St, San Francisco,CA,94016 +297617,ThinkPad Laptop,1,999.99,2019-12-25 17:30:00,759 Ridge St, Portland,OR,97035 +297618,AAA Batteries (4-pack),1,2.99,2019-12-28 12:59:00,606 Chestnut St, Austin,TX,73301 +297619,AAA Batteries (4-pack),1,2.99,2019-12-10 19:48:00,53 Jackson St, New York City,NY,10001 +297620,Macbook Pro Laptop,1,1700.0,2019-12-23 15:17:00,558 2nd St, New York City,NY,10001 +297621,AA Batteries (4-pack),1,3.84,2019-12-20 15:41:00,355 Ridge St, Atlanta,GA,30301 +297622,Apple Airpods Headphones,1,150.0,2019-12-17 12:04:00,95 Washington St, San Francisco,CA,94016 +297623,USB-C Charging Cable,1,11.95,2019-12-02 22:26:00,377 Elm St, San Francisco,CA,94016 +297624,AAA Batteries (4-pack),1,2.99,2019-12-11 15:09:00,630 Chestnut St, Dallas,TX,75001 +297625,Lightning Charging Cable,1,14.95,2019-12-07 17:48:00,459 Jefferson St, Seattle,WA,98101 +297626,AAA Batteries (4-pack),1,2.99,2019-12-28 08:45:00,511 Johnson St, San Francisco,CA,94016 +297627,Lightning Charging Cable,1,14.95,2019-12-26 17:11:00,319 Spruce St, San Francisco,CA,94016 +297628,AA Batteries (4-pack),1,3.84,2019-12-20 18:57:00,962 South St, Seattle,WA,98101 +297629,Wired Headphones,2,11.99,2019-12-20 22:03:00,616 Dogwood St, Boston,MA,02215 +297630,Google Phone,1,600.0,2019-12-01 09:27:00,952 Jackson St, Los Angeles,CA,90001 +297630,Wired Headphones,1,11.99,2019-12-01 09:27:00,952 Jackson St, Los Angeles,CA,90001 +297631,Macbook Pro Laptop,1,1700.0,2019-12-09 08:09:00,526 13th St, New York City,NY,10001 +297632,27in 4K Gaming Monitor,1,389.99,2019-12-17 17:23:00,965 6th St, Boston,MA,02215 +297633,27in 4K Gaming Monitor,1,389.99,2019-12-04 14:46:00,193 Meadow St, Boston,MA,02215 +297634,27in 4K Gaming Monitor,1,389.99,2019-12-13 11:43:00,181 Adams St, Atlanta,GA,30301 +297635,Wired Headphones,1,11.99,2019-12-06 09:50:00,199 8th St, San Francisco,CA,94016 +297636,Vareebadd Phone,1,400.0,2019-12-10 20:18:00,415 Cherry St, Los Angeles,CA,90001 +297637,ThinkPad Laptop,1,999.99,2019-12-16 13:23:00,454 Lake St, Dallas,TX,75001 +297638,Flatscreen TV,1,300.0,2019-12-08 22:08:00,27 14th St, San Francisco,CA,94016 +297639,Bose SoundSport Headphones,2,99.99,2019-12-25 14:14:00,206 Forest St, New York City,NY,10001 +297640,Bose SoundSport Headphones,1,99.99,2019-12-03 11:15:00,763 Dogwood St, San Francisco,CA,94016 +297640,27in FHD Monitor,1,149.99,2019-12-03 11:15:00,763 Dogwood St, San Francisco,CA,94016 +297641,Apple Airpods Headphones,1,150.0,2019-12-29 13:41:00,21 Jackson St, San Francisco,CA,94016 +297642,USB-C Charging Cable,1,11.95,2019-12-11 09:03:00,721 Cedar St, Atlanta,GA,30301 +297643,ThinkPad Laptop,1,999.99,2019-12-24 19:00:00,27 Maple St, Boston,MA,02215 +297644,USB-C Charging Cable,1,11.95,2019-12-28 00:14:00,778 West St, Atlanta,GA,30301 +297645,Lightning Charging Cable,1,14.95,2019-12-01 18:01:00,952 Lake St, San Francisco,CA,94016 +297646,Bose SoundSport Headphones,1,99.99,2019-12-22 10:00:00,522 7th St, New York City,NY,10001 +297647,AA Batteries (4-pack),1,3.84,2019-12-06 13:16:00,289 Main St, San Francisco,CA,94016 +297648,iPhone,1,700.0,2019-12-21 00:06:00,248 Hill St, New York City,NY,10001 +297649,Wired Headphones,1,11.99,2019-12-21 13:12:00,811 Johnson St, San Francisco,CA,94016 +297650,AAA Batteries (4-pack),1,2.99,2019-12-22 23:28:00,752 South St, Boston,MA,02215 +297651,27in 4K Gaming Monitor,1,389.99,2019-12-16 21:20:00,552 6th St, Los Angeles,CA,90001 +297652,Wired Headphones,1,11.99,2019-12-06 22:49:00,445 North St, Dallas,TX,75001 +297653,AA Batteries (4-pack),2,3.84,2019-12-16 12:59:00,119 Adams St, Austin,TX,73301 +297654,AA Batteries (4-pack),2,3.84,2019-12-07 17:27:00,375 Pine St, Dallas,TX,75001 +297655,Wired Headphones,1,11.99,2019-12-26 19:44:00,890 Forest St, Los Angeles,CA,90001 +297656,Lightning Charging Cable,1,14.95,2019-12-27 20:28:00,367 Adams St, Los Angeles,CA,90001 +297657,Flatscreen TV,1,300.0,2019-12-01 15:20:00,778 9th St, San Francisco,CA,94016 +297658,27in 4K Gaming Monitor,1,389.99,2019-12-27 17:05:00,628 Pine St, Dallas,TX,75001 +297659,AA Batteries (4-pack),1,3.84,2019-12-17 16:26:00,354 Jackson St, Dallas,TX,75001 +297660,Wired Headphones,1,11.99,2019-12-09 19:57:00,588 River St, San Francisco,CA,94016 +297661,AAA Batteries (4-pack),1,2.99,2019-12-03 13:19:00,250 11th St, San Francisco,CA,94016 +297662,AAA Batteries (4-pack),1,2.99,2019-12-11 13:29:00,134 7th St, San Francisco,CA,94016 +297663,Apple Airpods Headphones,1,150.0,2019-12-23 23:19:00,348 North St, New York City,NY,10001 +297664,Lightning Charging Cable,1,14.95,2019-12-30 19:52:00,32 Pine St, Portland,OR,97035 +297665,AA Batteries (4-pack),2,3.84,2019-12-06 01:39:00,755 Highland St, Boston,MA,02215 +297666,27in 4K Gaming Monitor,1,389.99,2019-12-20 10:41:00,303 Wilson St, Dallas,TX,75001 +297667,AAA Batteries (4-pack),1,2.99,2019-12-02 14:49:00,193 Cedar St, Portland,OR,97035 +297668,Lightning Charging Cable,1,14.95,2019-12-08 10:17:00,331 13th St, Austin,TX,73301 +297669,Macbook Pro Laptop,1,1700.0,2019-12-04 10:17:00,987 Sunset St, Dallas,TX,75001 +297670,Lightning Charging Cable,1,14.95,2019-12-04 23:04:00,532 Church St, Atlanta,GA,30301 +297671,34in Ultrawide Monitor,1,379.99,2019-12-17 10:59:00,736 Madison St, Portland,OR,97035 +297672,AAA Batteries (4-pack),2,2.99,2019-12-21 21:13:00,663 Sunset St, Austin,TX,73301 +297673,34in Ultrawide Monitor,1,379.99,2019-12-02 19:52:00,162 Willow St, Seattle,WA,98101 +297674,AAA Batteries (4-pack),1,2.99,2019-12-31 23:53:00,425 Lake St, Portland,OR,97035 +297675,AAA Batteries (4-pack),1,2.99,2019-12-30 12:35:00,16 Hickory St, Austin,TX,73301 +297676,Macbook Pro Laptop,1,1700.0,2019-12-02 22:47:00,161 Sunset St, Los Angeles,CA,90001 +297677,USB-C Charging Cable,1,11.95,2019-12-10 11:36:00,655 Wilson St, San Francisco,CA,94016 +297678,Lightning Charging Cable,2,14.95,2019-12-12 05:50:00,945 Madison St, Los Angeles,CA,90001 +297679,Bose SoundSport Headphones,1,99.99,2019-12-26 12:15:00,323 Sunset St, Boston,MA,02215 +297680,Macbook Pro Laptop,1,1700.0,2019-12-11 14:04:00,804 Lincoln St, San Francisco,CA,94016 +297681,USB-C Charging Cable,1,11.95,2019-12-19 22:09:00,718 13th St, Austin,TX,73301 +297682,Flatscreen TV,1,300.0,2019-12-13 16:40:00,790 11th St, Seattle,WA,98101 +297683,Wired Headphones,1,11.99,2019-12-03 15:26:00,540 10th St, Portland,OR,97035 +297684,AAA Batteries (4-pack),1,2.99,2019-12-25 22:55:00,589 Cherry St, Boston,MA,02215 +297685,AAA Batteries (4-pack),1,2.99,2019-12-17 15:28:00,300 Dogwood St, Portland,ME,04101 +297686,AAA Batteries (4-pack),1,2.99,2019-12-27 00:25:00,183 Madison St, Portland,OR,97035 +297687,Bose SoundSport Headphones,1,99.99,2019-12-11 13:24:00,984 Meadow St, New York City,NY,10001 +297688,Lightning Charging Cable,1,14.95,2019-12-06 16:20:00,462 14th St, New York City,NY,10001 +297689,AAA Batteries (4-pack),1,2.99,2019-12-12 21:50:00,774 9th St, San Francisco,CA,94016 +297690,USB-C Charging Cable,1,11.95,2019-12-17 21:34:00,231 Washington St, New York City,NY,10001 +297691,Apple Airpods Headphones,1,150.0,2019-12-29 11:08:00,899 10th St, San Francisco,CA,94016 +297692,Apple Airpods Headphones,1,150.0,2019-12-11 21:49:00,158 8th St, Atlanta,GA,30301 +297693,34in Ultrawide Monitor,1,379.99,2019-12-27 14:19:00,903 11th St, New York City,NY,10001 +297694,Lightning Charging Cable,1,14.95,2019-12-12 17:15:00,410 Chestnut St, New York City,NY,10001 +297695,Bose SoundSport Headphones,1,99.99,2019-12-08 20:37:00,244 6th St, Atlanta,GA,30301 +297696,20in Monitor,1,109.99,2019-12-10 17:22:00,768 8th St, Dallas,TX,75001 +297697,AAA Batteries (4-pack),1,2.99,2019-12-30 17:58:00,52 Jackson St, Los Angeles,CA,90001 +297698,USB-C Charging Cable,2,11.95,2019-12-20 23:36:00,420 7th St, San Francisco,CA,94016 +297699,USB-C Charging Cable,1,11.95,2019-12-09 12:15:00,122 Park St, Austin,TX,73301 +297700,34in Ultrawide Monitor,1,379.99,2019-12-29 15:51:00,486 Chestnut St, San Francisco,CA,94016 +297701,AA Batteries (4-pack),3,3.84,2019-12-05 23:04:00,716 North St, New York City,NY,10001 +297702,AAA Batteries (4-pack),1,2.99,2019-12-01 12:33:00,20 Lakeview St, Portland,ME,04101 +297703,Lightning Charging Cable,1,14.95,2019-12-25 22:31:00,284 Walnut St, New York City,NY,10001 +297704,USB-C Charging Cable,1,11.95,2019-12-01 17:37:00,41 Washington St, Austin,TX,73301 +297705,Apple Airpods Headphones,1,150.0,2019-12-22 14:36:00,682 11th St, Boston,MA,02215 +297706,iPhone,1,700.0,2019-12-31 16:14:00,246 Hill St, Atlanta,GA,30301 +297706,Lightning Charging Cable,1,14.95,2019-12-31 16:14:00,246 Hill St, Atlanta,GA,30301 +297707,AA Batteries (4-pack),1,3.84,2019-12-08 17:37:00,182 2nd St, San Francisco,CA,94016 +297708,Macbook Pro Laptop,1,1700.0,2019-12-07 12:23:00,124 Elm St, San Francisco,CA,94016 +297709,Wired Headphones,1,11.99,2019-12-22 14:08:00,526 5th St, Seattle,WA,98101 +297710,27in FHD Monitor,1,149.99,2019-12-08 17:52:00,739 14th St, Atlanta,GA,30301 +297711,ThinkPad Laptop,1,999.99,2019-12-01 10:46:00,961 4th St, Los Angeles,CA,90001 +297712,Apple Airpods Headphones,1,150.0,2019-12-10 08:01:00,84 Hill St, New York City,NY,10001 +297713,Apple Airpods Headphones,1,150.0,2019-12-23 02:05:00,405 Johnson St, Dallas,TX,75001 +297714,USB-C Charging Cable,1,11.95,2019-12-01 12:42:00,552 1st St, Los Angeles,CA,90001 +297715,USB-C Charging Cable,1,11.95,2019-12-31 14:29:00,421 Johnson St, San Francisco,CA,94016 +297716,USB-C Charging Cable,1,11.95,2019-12-03 17:49:00,79 North St, New York City,NY,10001 +297717,Apple Airpods Headphones,1,150.0,2019-12-17 21:17:00,151 12th St, San Francisco,CA,94016 +297718,AAA Batteries (4-pack),1,2.99,2019-12-28 14:21:00,202 Center St, San Francisco,CA,94016 +297719,Macbook Pro Laptop,1,1700.0,2019-12-01 14:29:00,927 9th St, San Francisco,CA,94016 +297720,Bose SoundSport Headphones,1,99.99,2019-12-19 12:09:00,588 Center St, Dallas,TX,75001 +297721,20in Monitor,1,109.99,2019-12-20 17:01:00,409 13th St, Seattle,WA,98101 +297722,USB-C Charging Cable,1,11.95,2019-12-23 23:26:00,71 1st St, New York City,NY,10001 +297723,Wired Headphones,1,11.99,2019-12-28 15:55:00,612 Dogwood St, Dallas,TX,75001 +297724,Bose SoundSport Headphones,1,99.99,2019-12-11 11:39:00,753 Church St, Los Angeles,CA,90001 +297725,Apple Airpods Headphones,1,150.0,2019-12-16 10:26:00,637 Johnson St, San Francisco,CA,94016 +297726,Vareebadd Phone,1,400.0,2019-12-27 12:12:00,235 11th St, New York City,NY,10001 +297727,USB-C Charging Cable,2,11.95,2019-12-10 18:32:00,994 Forest St, Dallas,TX,75001 +297728,20in Monitor,1,109.99,2019-12-29 09:46:00,211 Spruce St, Boston,MA,02215 +297729,USB-C Charging Cable,1,11.95,2019-12-18 12:46:00,995 West St, San Francisco,CA,94016 +297730,Vareebadd Phone,1,400.0,2019-12-18 11:00:00,399 South St, San Francisco,CA,94016 +297730,USB-C Charging Cable,1,11.95,2019-12-18 11:00:00,399 South St, San Francisco,CA,94016 +297731,ThinkPad Laptop,1,999.99,2019-12-20 17:52:00,269 Cedar St, Los Angeles,CA,90001 +297732,Lightning Charging Cable,1,14.95,2019-12-25 08:26:00,997 Center St, New York City,NY,10001 +297733,Wired Headphones,1,11.99,2019-12-02 20:18:00,506 Church St, New York City,NY,10001 +297734,27in FHD Monitor,1,149.99,2019-12-08 19:43:00,86 Park St, San Francisco,CA,94016 +297735,iPhone,1,700.0,2019-12-23 21:39:00,682 Elm St, Los Angeles,CA,90001 +297736,ThinkPad Laptop,1,999.99,2019-12-31 00:10:00,370 Cedar St, New York City,NY,10001 +297737,AAA Batteries (4-pack),1,2.99,2019-12-29 07:13:00,10 Park St, Boston,MA,02215 +297738,27in FHD Monitor,1,149.99,2019-12-04 11:39:00,443 Willow St, Austin,TX,73301 +297739,20in Monitor,1,109.99,2019-12-23 17:45:00,825 Meadow St, Atlanta,GA,30301 +297740,27in 4K Gaming Monitor,1,389.99,2019-12-16 14:12:00,490 Walnut St, Los Angeles,CA,90001 +297741,USB-C Charging Cable,2,11.95,2019-12-23 17:21:00,103 Church St, Boston,MA,02215 +297742,Bose SoundSport Headphones,1,99.99,2019-12-02 09:32:00,346 Maple St, Los Angeles,CA,90001 +297743,AA Batteries (4-pack),1,3.84,2019-12-07 03:14:00,691 Dogwood St, Los Angeles,CA,90001 +297744,Flatscreen TV,1,300.0,2019-12-21 17:02:00,435 Maple St, Portland,OR,97035 +297745,Macbook Pro Laptop,1,1700.0,2019-12-30 00:51:00,646 2nd St, San Francisco,CA,94016 +297746,USB-C Charging Cable,1,11.95,2019-12-02 07:03:00,36 14th St, Boston,MA,02215 +297747,Wired Headphones,1,11.99,2019-12-29 11:05:00,924 Jefferson St, Portland,OR,97035 +297748,Vareebadd Phone,1,400.0,2019-12-25 10:47:00,135 10th St, Los Angeles,CA,90001 +297749,USB-C Charging Cable,1,11.95,2019-12-02 17:05:00,887 Hickory St, New York City,NY,10001 +297750,AAA Batteries (4-pack),1,2.99,2019-12-29 22:27:00,889 Chestnut St, Atlanta,GA,30301 +297751,AAA Batteries (4-pack),2,2.99,2019-12-16 13:10:00,672 Maple St, Boston,MA,02215 +297752,AAA Batteries (4-pack),1,2.99,2019-12-03 16:23:00,898 Jackson St, San Francisco,CA,94016 +297753,AA Batteries (4-pack),1,3.84,2019-12-30 17:11:00,443 River St, Austin,TX,73301 +297754,USB-C Charging Cable,2,11.95,2019-12-28 18:34:00,741 Lakeview St, Dallas,TX,75001 +297755,USB-C Charging Cable,1,11.95,2019-12-30 18:51:00,79 Spruce St, Los Angeles,CA,90001 +297756,Flatscreen TV,1,300.0,2019-12-26 18:19:00,468 12th St, Austin,TX,73301 +297757,Wired Headphones,1,11.99,2019-12-12 17:24:00,519 1st St, San Francisco,CA,94016 +297758,AAA Batteries (4-pack),1,2.99,2019-12-16 13:03:00,225 12th St, Seattle,WA,98101 +297759,AAA Batteries (4-pack),1,2.99,2019-12-27 18:26:00,602 South St, New York City,NY,10001 +297760,iPhone,1,700.0,2019-12-30 22:56:00,917 Elm St, New York City,NY,10001 +297760,Lightning Charging Cable,1,14.95,2019-12-30 22:56:00,917 Elm St, New York City,NY,10001 +297761,Flatscreen TV,1,300.0,2019-12-04 12:50:00,894 Johnson St, San Francisco,CA,94016 +297762,Google Phone,1,600.0,2019-12-02 21:58:00,325 North St, Boston,MA,02215 +297763,Apple Airpods Headphones,1,150.0,2019-12-15 11:50:00,587 Sunset St, San Francisco,CA,94016 +297764,27in FHD Monitor,1,149.99,2019-12-29 19:50:00,71 Maple St, Atlanta,GA,30301 +297765,USB-C Charging Cable,3,11.95,2019-12-12 11:56:00,4 8th St, Austin,TX,73301 +297766,AA Batteries (4-pack),1,3.84,2019-12-25 18:19:00,4 Wilson St, New York City,NY,10001 +297767,USB-C Charging Cable,1,11.95,2019-12-10 21:07:00,170 Main St, Atlanta,GA,30301 +297768,Flatscreen TV,1,300.0,2019-12-05 00:33:00,225 Lincoln St, Dallas,TX,75001 +297769,Bose SoundSport Headphones,1,99.99,2019-12-12 18:29:00,55 7th St, Atlanta,GA,30301 +297770,iPhone,1,700.0,2019-12-01 13:16:00,104 Cherry St, San Francisco,CA,94016 +297771,iPhone,1,700.0,2019-12-09 10:16:00,404 Church St, Portland,OR,97035 +297772,USB-C Charging Cable,1,11.95,2019-12-13 14:16:00,380 13th St, New York City,NY,10001 +297773,Google Phone,1,600.0,2019-12-05 23:47:00,759 Spruce St, Dallas,TX,75001 +297774,Wired Headphones,1,11.99,2019-12-27 12:17:00,30 Pine St, Boston,MA,02215 +297775,Lightning Charging Cable,1,14.95,2019-12-10 19:03:00,878 Hickory St, Dallas,TX,75001 +297776,Lightning Charging Cable,1,14.95,2019-12-24 21:48:00,387 Adams St, Atlanta,GA,30301 +297777,Wired Headphones,2,11.99,2019-12-02 11:45:00,721 Wilson St, Atlanta,GA,30301 +297778,20in Monitor,1,109.99,2019-12-31 15:06:00,988 14th St, San Francisco,CA,94016 +297779,AAA Batteries (4-pack),1,2.99,2019-12-25 17:57:00,80 River St, New York City,NY,10001 +297780,AAA Batteries (4-pack),1,2.99,2019-12-23 15:48:00,37 Spruce St, New York City,NY,10001 +297781,Bose SoundSport Headphones,1,99.99,2019-12-04 10:43:00,365 Dogwood St, San Francisco,CA,94016 +297782,AA Batteries (4-pack),2,3.84,2019-12-02 14:11:00,125 Dogwood St, Boston,MA,02215 +297783,Lightning Charging Cable,1,14.95,2019-12-30 09:10:00,585 8th St, Austin,TX,73301 +297784,USB-C Charging Cable,1,11.95,2019-12-24 15:18:00,151 1st St, New York City,NY,10001 +297785,AAA Batteries (4-pack),1,2.99,2019-12-19 20:20:00,696 Lakeview St, San Francisco,CA,94016 +297786,Apple Airpods Headphones,1,150.0,2019-12-21 00:57:00,367 Wilson St, Seattle,WA,98101 +297787,Wired Headphones,1,11.99,2019-12-11 13:24:00,568 Madison St, Portland,OR,97035 +297788,iPhone,1,700.0,2019-12-27 23:22:00,944 13th St, San Francisco,CA,94016 +297789,AA Batteries (4-pack),2,3.84,2019-12-22 13:11:00,146 Lakeview St, Austin,TX,73301 +297790,Lightning Charging Cable,2,14.95,2019-12-28 07:53:00,241 13th St, Los Angeles,CA,90001 +297791,Apple Airpods Headphones,1,150.0,2019-12-17 11:38:00,19 Main St, Seattle,WA,98101 +297792,Wired Headphones,2,11.99,2019-12-14 18:13:00,933 Cedar St, Seattle,WA,98101 +297793,Lightning Charging Cable,1,14.95,2019-12-04 17:27:00,388 4th St, Dallas,TX,75001 +297794,Bose SoundSport Headphones,1,99.99,2019-12-21 14:10:00,90 Madison St, Atlanta,GA,30301 +297795,Bose SoundSport Headphones,1,99.99,2019-12-13 18:15:00,310 North St, San Francisco,CA,94016 +297796,AAA Batteries (4-pack),2,2.99,2019-12-24 13:37:00,64 5th St, New York City,NY,10001 +297797,34in Ultrawide Monitor,1,379.99,2019-12-02 18:45:00,894 Ridge St, San Francisco,CA,94016 +297798,27in FHD Monitor,1,149.99,2019-12-28 15:53:00,467 14th St, Los Angeles,CA,90001 +297799,AA Batteries (4-pack),1,3.84,2019-12-13 22:04:00,258 Madison St, San Francisco,CA,94016 +297800,Wired Headphones,1,11.99,2019-12-05 03:41:00,398 Washington St, Austin,TX,73301 +297801,USB-C Charging Cable,1,11.95,2019-12-06 17:26:00,653 River St, Los Angeles,CA,90001 +297802,ThinkPad Laptop,1,999.99,2019-12-13 09:47:00,266 River St, Dallas,TX,75001 +297803,27in 4K Gaming Monitor,1,389.99,2019-12-27 18:33:00,815 Maple St, Austin,TX,73301 +297804,Apple Airpods Headphones,1,150.0,2019-12-14 20:57:00,737 River St, Los Angeles,CA,90001 +297805,Wired Headphones,1,11.99,2019-12-19 09:57:00,907 Adams St, New York City,NY,10001 +297806,27in FHD Monitor,1,149.99,2019-12-22 16:28:00,6 Lakeview St, Portland,OR,97035 +297807,27in 4K Gaming Monitor,1,389.99,2019-12-27 01:22:00,183 10th St, New York City,NY,10001 +297808,AA Batteries (4-pack),1,3.84,2019-12-09 18:50:00,484 Adams St, Austin,TX,73301 +297809,Apple Airpods Headphones,1,150.0,2019-12-04 21:35:00,807 South St, Los Angeles,CA,90001 +297810,Bose SoundSport Headphones,1,99.99,2019-12-15 19:35:00,376 7th St, San Francisco,CA,94016 +297811,USB-C Charging Cable,1,11.95,2019-12-28 12:14:00,219 11th St, Atlanta,GA,30301 +297812,Bose SoundSport Headphones,2,99.99,2019-12-01 17:00:00,547 1st St, Dallas,TX,75001 +297813,AA Batteries (4-pack),2,3.84,2019-12-09 19:31:00,638 9th St, Atlanta,GA,30301 +297814,Lightning Charging Cable,1,14.95,2019-12-09 18:57:00,551 5th St, Los Angeles,CA,90001 +297815,Wired Headphones,1,11.99,2019-12-31 19:12:00,37 South St, Los Angeles,CA,90001 +297816,Google Phone,1,600.0,2019-12-19 19:39:00,511 West St, San Francisco,CA,94016 +297817,iPhone,1,700.0,2020-01-01 00:22:00,519 13th St, New York City,NY,10001 +297817,Lightning Charging Cable,2,14.95,2020-01-01 00:22:00,519 13th St, New York City,NY,10001 +297818,AAA Batteries (4-pack),2,2.99,2019-12-10 07:24:00,246 North St, Los Angeles,CA,90001 +297819,USB-C Charging Cable,1,11.95,2019-12-10 21:57:00,596 Johnson St, San Francisco,CA,94016 +297820,AAA Batteries (4-pack),4,2.99,2019-12-24 09:50:00,382 Forest St, Portland,ME,04101 +297821,Lightning Charging Cable,1,14.95,2019-12-09 12:57:00,311 Cherry St, New York City,NY,10001 +297822,Bose SoundSport Headphones,1,99.99,2019-12-25 10:13:00,399 River St, Seattle,WA,98101 +297823,Lightning Charging Cable,2,14.95,2019-12-20 20:50:00,17 North St, San Francisco,CA,94016 +297824,Lightning Charging Cable,2,14.95,2019-12-09 23:15:00,180 River St, Austin,TX,73301 +297825,27in 4K Gaming Monitor,1,389.99,2019-12-24 13:06:00,892 Chestnut St, New York City,NY,10001 +297826,Wired Headphones,1,11.99,2019-12-14 21:53:00,113 12th St, San Francisco,CA,94016 +297827,Apple Airpods Headphones,1,150.0,2019-12-01 17:44:00,299 Johnson St, Seattle,WA,98101 +297828,Lightning Charging Cable,1,14.95,2019-12-12 15:07:00,419 6th St, New York City,NY,10001 +297829,ThinkPad Laptop,1,999.99,2019-12-15 11:57:00,976 Center St, Portland,OR,97035 +297830,Lightning Charging Cable,1,14.95,2019-12-03 22:04:00,715 Pine St, Los Angeles,CA,90001 +297831,USB-C Charging Cable,1,11.95,2019-12-05 00:25:00,203 Cedar St, San Francisco,CA,94016 +297832,iPhone,1,700.0,2019-12-12 12:36:00,204 River St, New York City,NY,10001 +297833,27in 4K Gaming Monitor,1,389.99,2019-12-28 17:01:00,973 5th St, Dallas,TX,75001 +297834,AAA Batteries (4-pack),4,2.99,2019-12-04 17:11:00,720 Jackson St, San Francisco,CA,94016 +297835,Bose SoundSport Headphones,1,99.99,2019-12-16 11:12:00,320 Jackson St, Seattle,WA,98101 +297836,34in Ultrawide Monitor,1,379.99,2019-12-30 09:37:00,267 6th St, Los Angeles,CA,90001 +297837,AA Batteries (4-pack),2,3.84,2019-12-02 13:09:00,903 Walnut St, Atlanta,GA,30301 +297838,Flatscreen TV,1,300.0,2019-12-01 20:45:00,48 10th St, Seattle,WA,98101 +297839,Wired Headphones,1,11.99,2019-12-12 15:29:00,891 Washington St, Seattle,WA,98101 +297840,Apple Airpods Headphones,1,150.0,2019-12-20 09:03:00,267 Maple St, San Francisco,CA,94016 +297840,AAA Batteries (4-pack),1,2.99,2019-12-20 09:03:00,267 Maple St, San Francisco,CA,94016 +297841,ThinkPad Laptop,1,999.99,2019-12-15 15:21:00,409 North St, Dallas,TX,75001 +297842,Lightning Charging Cable,1,14.95,2019-12-17 16:36:00,634 10th St, San Francisco,CA,94016 +297843,USB-C Charging Cable,1,11.95,2019-12-18 21:18:00,482 Chestnut St, Boston,MA,02215 +297844,27in FHD Monitor,1,149.99,2019-12-19 15:57:00,414 5th St, Dallas,TX,75001 +297845,20in Monitor,1,109.99,2019-12-31 11:39:00,605 Willow St, Seattle,WA,98101 +297846,USB-C Charging Cable,1,11.95,2019-12-26 13:44:00,274 Jackson St, Boston,MA,02215 +297847,iPhone,1,700.0,2019-12-01 15:06:00,768 Maple St, New York City,NY,10001 +297847,Lightning Charging Cable,1,14.95,2019-12-01 15:06:00,768 Maple St, New York City,NY,10001 +297848,Bose SoundSport Headphones,1,99.99,2019-12-27 20:08:00,278 7th St, Boston,MA,02215 +297849,AAA Batteries (4-pack),2,2.99,2019-12-03 17:15:00,896 Main St, New York City,NY,10001 +297850,AAA Batteries (4-pack),1,2.99,2019-12-20 14:36:00,201 5th St, San Francisco,CA,94016 +297851,Flatscreen TV,1,300.0,2019-12-25 21:41:00,30 Hickory St, San Francisco,CA,94016 +297852,27in FHD Monitor,1,149.99,2019-12-27 09:35:00,940 Walnut St, San Francisco,CA,94016 +297853,27in FHD Monitor,1,149.99,2019-12-16 22:21:00,940 Cedar St, Boston,MA,02215 +297854,AAA Batteries (4-pack),1,2.99,2019-12-12 23:34:00,350 8th St, San Francisco,CA,94016 +297855,Apple Airpods Headphones,1,150.0,2019-12-19 13:44:00,235 7th St, Seattle,WA,98101 +297856,AA Batteries (4-pack),1,3.84,2019-12-20 11:46:00,384 2nd St, Dallas,TX,75001 +297857,Lightning Charging Cable,1,14.95,2019-12-28 13:28:00,293 6th St, Los Angeles,CA,90001 +297858,Lightning Charging Cable,1,14.95,2019-12-15 11:50:00,481 River St, Seattle,WA,98101 +297859,Macbook Pro Laptop,1,1700.0,2019-12-07 14:07:00,660 Madison St, New York City,NY,10001 +297860,Apple Airpods Headphones,1,150.0,2019-12-04 08:54:00,906 Cedar St, Los Angeles,CA,90001 +297861,AA Batteries (4-pack),1,3.84,2019-12-15 10:20:00,752 Center St, Boston,MA,02215 +297862,AAA Batteries (4-pack),1,2.99,2019-12-20 14:53:00,251 West St, Los Angeles,CA,90001 +297863,Lightning Charging Cable,1,14.95,2019-12-04 16:14:00,952 Lakeview St, New York City,NY,10001 +297864,20in Monitor,1,109.99,2019-12-31 18:39:00,556 9th St, Atlanta,GA,30301 +297865,Bose SoundSport Headphones,1,99.99,2019-12-06 00:50:00,186 14th St, New York City,NY,10001 +297866,Wired Headphones,1,11.99,2019-12-03 06:40:00,800 North St, Atlanta,GA,30301 +297867,AA Batteries (4-pack),1,3.84,2019-12-03 16:27:00,419 Lincoln St, San Francisco,CA,94016 +297868,Lightning Charging Cable,2,14.95,2019-12-21 11:07:00,847 Johnson St, Los Angeles,CA,90001 +297869,AAA Batteries (4-pack),1,2.99,2019-12-16 19:22:00,440 Maple St, Boston,MA,02215 +297870,Lightning Charging Cable,1,14.95,2019-12-24 23:27:00,732 Lincoln St, Dallas,TX,75001 +297871,ThinkPad Laptop,1,999.99,2019-12-03 16:52:00,95 13th St, Seattle,WA,98101 +297872,USB-C Charging Cable,2,11.95,2019-12-06 18:54:00,206 8th St, San Francisco,CA,94016 +297873,AA Batteries (4-pack),1,3.84,2019-12-19 12:53:00,28 Walnut St, San Francisco,CA,94016 +297874,20in Monitor,1,109.99,2019-12-04 21:10:00,311 10th St, Los Angeles,CA,90001 +297875,AAA Batteries (4-pack),2,2.99,2019-12-17 08:20:00,973 9th St, Los Angeles,CA,90001 +297876,Lightning Charging Cable,1,14.95,2019-12-05 10:25:00,162 9th St, Atlanta,GA,30301 +297877,Bose SoundSport Headphones,1,99.99,2019-12-13 00:10:00,578 2nd St, Atlanta,GA,30301 +297878,AAA Batteries (4-pack),1,2.99,2019-12-02 22:01:00,472 Highland St, New York City,NY,10001 +297879,Bose SoundSport Headphones,1,99.99,2019-12-12 05:58:00,242 14th St, Seattle,WA,98101 +297880,AAA Batteries (4-pack),2,2.99,2019-12-20 07:49:00,949 Adams St, Atlanta,GA,30301 +297881,Lightning Charging Cable,1,14.95,2019-12-17 21:20:00,564 Pine St, New York City,NY,10001 +297882,USB-C Charging Cable,3,11.95,2019-12-05 12:03:00,63 7th St, New York City,NY,10001 +297883,Apple Airpods Headphones,1,150.0,2019-12-19 12:37:00,678 11th St, Los Angeles,CA,90001 +297884,27in 4K Gaming Monitor,1,389.99,2019-12-12 20:37:00,67 13th St, San Francisco,CA,94016 +297885,Macbook Pro Laptop,1,1700.0,2019-12-05 22:37:00,566 Ridge St, Portland,OR,97035 +297886,Lightning Charging Cable,1,14.95,2019-12-15 11:22:00,211 Lake St, Dallas,TX,75001 +297887,Lightning Charging Cable,1,14.95,2019-12-20 18:37:00,278 11th St, San Francisco,CA,94016 +297888,USB-C Charging Cable,1,11.95,2019-12-15 10:59:00,472 Center St, Los Angeles,CA,90001 +297889,Lightning Charging Cable,1,14.95,2019-12-18 13:39:00,236 Forest St, San Francisco,CA,94016 +297890,34in Ultrawide Monitor,1,379.99,2019-12-17 15:09:00,812 Highland St, Los Angeles,CA,90001 +297891,AAA Batteries (4-pack),3,2.99,2019-12-13 19:16:00,568 13th St, Atlanta,GA,30301 +297892,ThinkPad Laptop,1,999.99,2019-12-23 14:33:00,478 Highland St, Portland,OR,97035 +297893,27in FHD Monitor,1,149.99,2019-12-30 10:29:00,475 Lake St, San Francisco,CA,94016 +297894,USB-C Charging Cable,1,11.95,2019-12-13 11:40:00,122 Main St, Boston,MA,02215 +297894,AA Batteries (4-pack),1,3.84,2019-12-13 11:40:00,122 Main St, Boston,MA,02215 +297895,USB-C Charging Cable,1,11.95,2019-12-17 20:07:00,382 5th St, Los Angeles,CA,90001 +297895,27in FHD Monitor,1,149.99,2019-12-17 20:07:00,382 5th St, Los Angeles,CA,90001 +297896,Bose SoundSport Headphones,1,99.99,2019-12-06 22:45:00,771 13th St, Los Angeles,CA,90001 +297897,USB-C Charging Cable,1,11.95,2019-12-06 19:19:00,737 Church St, Los Angeles,CA,90001 +297898,Wired Headphones,2,11.99,2019-12-19 21:02:00,624 River St, Atlanta,GA,30301 +297899,iPhone,1,700.0,2019-12-10 16:20:00,658 Hickory St, San Francisco,CA,94016 +297900,AAA Batteries (4-pack),1,2.99,2019-12-19 21:27:00,429 South St, Seattle,WA,98101 +297901,Wired Headphones,1,11.99,2019-12-10 17:29:00,249 Spruce St, New York City,NY,10001 +297902,Wired Headphones,1,11.99,2019-12-01 10:31:00,466 2nd St, Austin,TX,73301 +297903,USB-C Charging Cable,1,11.95,2019-12-10 16:12:00,537 Park St, Seattle,WA,98101 +297904,AAA Batteries (4-pack),1,2.99,2019-12-03 00:07:00,655 Elm St, Dallas,TX,75001 +297905,27in FHD Monitor,1,149.99,2019-12-14 06:21:00,817 Jefferson St, Dallas,TX,75001 +297906,Apple Airpods Headphones,1,150.0,2019-12-30 10:54:00,910 Johnson St, Portland,OR,97035 +297907,Flatscreen TV,1,300.0,2019-12-23 10:07:00,440 1st St, Dallas,TX,75001 +297908,Bose SoundSport Headphones,1,99.99,2019-12-28 13:33:00,862 13th St, San Francisco,CA,94016 +297909,Macbook Pro Laptop,1,1700.0,2019-12-29 10:00:00,310 Adams St, San Francisco,CA,94016 +297910,34in Ultrawide Monitor,1,379.99,2019-12-29 10:39:00,121 Lakeview St, Atlanta,GA,30301 +297911,Apple Airpods Headphones,1,150.0,2019-12-11 12:14:00,756 8th St, Los Angeles,CA,90001 +297912,AAA Batteries (4-pack),1,2.99,2019-12-05 12:29:00,910 Wilson St, Portland,OR,97035 +297913,34in Ultrawide Monitor,1,379.99,2019-12-29 14:26:00,50 Forest St, Los Angeles,CA,90001 +297914,AA Batteries (4-pack),1,3.84,2019-12-03 22:52:00,638 Center St, Los Angeles,CA,90001 +297915,AA Batteries (4-pack),1,3.84,2019-12-04 11:59:00,464 West St, New York City,NY,10001 +297916,34in Ultrawide Monitor,1,379.99,2019-12-25 16:36:00,537 14th St, Portland,OR,97035 +297917,AA Batteries (4-pack),1,3.84,2019-12-18 22:18:00,407 Lakeview St, Atlanta,GA,30301 +297918,Flatscreen TV,1,300.0,2019-12-01 23:10:00,812 Hickory St, Atlanta,GA,30301 +297919,AAA Batteries (4-pack),3,2.99,2019-12-08 12:06:00,171 Pine St, Dallas,TX,75001 +297920,iPhone,1,700.0,2019-12-13 20:25:00,128 Pine St, Boston,MA,02215 +297921,Apple Airpods Headphones,1,150.0,2019-12-28 23:13:00,476 Hill St, New York City,NY,10001 +297922,USB-C Charging Cable,2,11.95,2019-12-22 15:57:00,379 Elm St, San Francisco,CA,94016 +297923,20in Monitor,1,109.99,2019-12-13 23:18:00,717 Cherry St, San Francisco,CA,94016 +297924,AAA Batteries (4-pack),1,2.99,2019-12-11 11:10:00,382 Walnut St, Portland,OR,97035 +297925,AA Batteries (4-pack),1,3.84,2019-12-14 10:20:00,584 Pine St, Los Angeles,CA,90001 +297926,AA Batteries (4-pack),1,3.84,2019-12-29 22:39:00,831 Cherry St, Portland,OR,97035 +297927,AA Batteries (4-pack),1,3.84,2019-12-18 16:44:00,31 Maple St, Seattle,WA,98101 +297928,Google Phone,1,600.0,2019-12-23 21:57:00,198 Center St, Los Angeles,CA,90001 +297929,Apple Airpods Headphones,1,150.0,2019-12-26 15:15:00,100 12th St, Seattle,WA,98101 +297930,ThinkPad Laptop,1,999.99,2019-12-30 09:17:00,975 Johnson St, Boston,MA,02215 +297931,AA Batteries (4-pack),1,3.84,2019-12-28 13:16:00,804 2nd St, Dallas,TX,75001 +297932,AA Batteries (4-pack),1,3.84,2019-12-04 19:44:00,441 Lake St, Los Angeles,CA,90001 +297933,USB-C Charging Cable,2,11.95,2019-12-31 19:21:00,895 Hickory St, Boston,MA,02215 +297934,AA Batteries (4-pack),1,3.84,2019-12-26 20:53:00,390 Highland St, Portland,OR,97035 +297935,USB-C Charging Cable,1,11.95,2019-12-04 21:58:00,720 Wilson St, Seattle,WA,98101 +297936,27in 4K Gaming Monitor,1,389.99,2019-12-25 17:49:00,931 7th St, Dallas,TX,75001 +297937,AAA Batteries (4-pack),2,2.99,2019-12-12 12:33:00,574 7th St, Portland,OR,97035 +297938,Lightning Charging Cable,1,14.95,2019-12-06 17:05:00,836 Washington St, Los Angeles,CA,90001 +297939,AA Batteries (4-pack),1,3.84,2019-12-15 16:58:00,513 Meadow St, Boston,MA,02215 +297940,Bose SoundSport Headphones,1,99.99,2019-12-11 17:32:00,450 Hickory St, San Francisco,CA,94016 +297941,34in Ultrawide Monitor,1,379.99,2019-12-31 16:00:00,279 Sunset St, San Francisco,CA,94016 +297942,Flatscreen TV,1,300.0,2019-12-29 00:17:00,769 6th St, Portland,OR,97035 +297943,Bose SoundSport Headphones,1,99.99,2019-12-25 23:55:00,988 Church St, Austin,TX,73301 +297944,ThinkPad Laptop,1,999.99,2019-12-23 23:08:00,502 South St, Los Angeles,CA,90001 +297945,Vareebadd Phone,1,400.0,2019-12-29 15:48:00,181 Church St, Boston,MA,02215 +297945,USB-C Charging Cable,3,11.95,2019-12-29 15:48:00,181 Church St, Boston,MA,02215 +297945,Bose SoundSport Headphones,1,99.99,2019-12-29 15:48:00,181 Church St, Boston,MA,02215 +297946,Macbook Pro Laptop,1,1700.0,2019-12-07 12:28:00,427 Center St, Seattle,WA,98101 +297947,Lightning Charging Cable,1,14.95,2019-12-26 22:10:00,702 Jackson St, Los Angeles,CA,90001 +297948,AAA Batteries (4-pack),1,2.99,2019-12-19 13:07:00,697 Park St, Dallas,TX,75001 +297949,AAA Batteries (4-pack),1,2.99,2019-12-03 08:56:00,172 Forest St, New York City,NY,10001 +297950,Bose SoundSport Headphones,1,99.99,2019-12-01 23:34:00,742 Main St, San Francisco,CA,94016 +297951,USB-C Charging Cable,2,11.95,2019-12-11 21:18:00,79 7th St, San Francisco,CA,94016 +297951,Lightning Charging Cable,1,14.95,2019-12-11 21:18:00,79 7th St, San Francisco,CA,94016 +297952,Wired Headphones,1,11.99,2019-12-08 08:59:00,832 Dogwood St, Boston,MA,02215 +297953,AAA Batteries (4-pack),1,2.99,2019-12-25 11:43:00,424 8th St, Los Angeles,CA,90001 +297954,Macbook Pro Laptop,1,1700.0,2019-12-20 20:25:00,402 Sunset St, San Francisco,CA,94016 +297955,20in Monitor,1,109.99,2019-12-29 18:40:00,536 6th St, Austin,TX,73301 +297956,Wired Headphones,1,11.99,2019-12-10 21:05:00,419 Cedar St, Seattle,WA,98101 +297957,Apple Airpods Headphones,1,150.0,2019-12-25 08:37:00,670 11th St, New York City,NY,10001 +297958,AA Batteries (4-pack),2,3.84,2019-12-02 13:03:00,255 Center St, Atlanta,GA,30301 +297959,Bose SoundSport Headphones,1,99.99,2019-12-29 13:10:00,428 Wilson St, Seattle,WA,98101 +297960,AAA Batteries (4-pack),1,2.99,2019-12-15 19:13:00,934 Hill St, San Francisco,CA,94016 +297961,Google Phone,1,600.0,2019-12-11 12:56:00,891 13th St, New York City,NY,10001 +297962,27in 4K Gaming Monitor,1,389.99,2019-12-02 15:51:00,834 Lakeview St, San Francisco,CA,94016 +297963,Google Phone,1,600.0,2019-12-07 20:46:00,561 Center St, Seattle,WA,98101 +297964,AA Batteries (4-pack),2,3.84,2019-12-29 23:33:00,789 14th St, San Francisco,CA,94016 +297965,Google Phone,1,600.0,2019-12-10 18:34:00,791 Meadow St, Los Angeles,CA,90001 +297966,AAA Batteries (4-pack),1,2.99,2019-12-28 08:18:00,643 10th St, San Francisco,CA,94016 +297967,Macbook Pro Laptop,1,1700.0,2019-12-31 14:27:00,585 1st St, San Francisco,CA,94016 +297968,27in FHD Monitor,1,149.99,2019-12-26 12:34:00,250 2nd St, San Francisco,CA,94016 +297969,Google Phone,1,600.0,2020-01-01 00:54:00,542 2nd St, San Francisco,CA,94016 +297970,ThinkPad Laptop,1,999.99,2019-12-25 14:49:00,646 Church St, San Francisco,CA,94016 +297971,27in 4K Gaming Monitor,1,389.99,2019-12-28 13:27:00,596 Main St, Seattle,WA,98101 +297972,Wired Headphones,1,11.99,2019-12-12 14:56:00,356 Sunset St, Portland,OR,97035 +297973,27in FHD Monitor,1,149.99,2019-12-21 11:34:00,899 Elm St, Dallas,TX,75001 +297974,Lightning Charging Cable,1,14.95,2019-12-10 00:24:00,784 Lincoln St, Los Angeles,CA,90001 +297975,AA Batteries (4-pack),3,3.84,2019-12-05 23:51:00,426 12th St, New York City,NY,10001 +297976,27in FHD Monitor,1,149.99,2019-12-29 15:09:00,957 Sunset St, San Francisco,CA,94016 +297977,34in Ultrawide Monitor,1,379.99,2019-12-22 20:33:00,834 Jefferson St, New York City,NY,10001 +297978,AA Batteries (4-pack),1,3.84,2019-12-24 09:25:00,19 Walnut St, San Francisco,CA,94016 +297979,Bose SoundSport Headphones,1,99.99,2019-12-04 17:33:00,532 Chestnut St, Austin,TX,73301 +297980,Apple Airpods Headphones,1,150.0,2019-12-17 12:55:00,143 9th St, Atlanta,GA,30301 +297981,AAA Batteries (4-pack),2,2.99,2019-12-05 10:30:00,136 Lakeview St, Portland,OR,97035 +297982,Bose SoundSport Headphones,1,99.99,2019-12-16 11:24:00,257 Meadow St, Los Angeles,CA,90001 +297983,Google Phone,1,600.0,2019-12-21 13:29:00,459 Hill St, New York City,NY,10001 +297984,USB-C Charging Cable,1,11.95,2019-12-22 16:25:00,339 Center St, New York City,NY,10001 +297985,Bose SoundSport Headphones,1,99.99,2019-12-03 13:45:00,47 Madison St, Boston,MA,02215 +297986,AAA Batteries (4-pack),1,2.99,2019-12-24 19:51:00,303 11th St, San Francisco,CA,94016 +297987,Apple Airpods Headphones,1,150.0,2019-12-28 14:52:00,548 Lake St, Seattle,WA,98101 +297988,USB-C Charging Cable,1,11.95,2019-12-08 20:55:00,50 West St, Seattle,WA,98101 +297989,AA Batteries (4-pack),1,3.84,2019-12-26 13:21:00,270 North St, New York City,NY,10001 +297990,Macbook Pro Laptop,1,1700.0,2019-12-22 12:01:00,567 13th St, Portland,OR,97035 +297991,AAA Batteries (4-pack),2,2.99,2019-12-14 23:13:00,212 Lincoln St, Boston,MA,02215 +297992,LG Dryer,1,600.0,2019-12-12 00:04:00,427 Lake St, Atlanta,GA,30301 +297993,USB-C Charging Cable,1,11.95,2019-12-08 23:29:00,92 River St, Los Angeles,CA,90001 +297994,Macbook Pro Laptop,1,1700.0,2019-12-07 10:29:00,383 1st St, New York City,NY,10001 +297995,AAA Batteries (4-pack),1,2.99,2019-12-25 00:50:00,210 Willow St, San Francisco,CA,94016 +297996,Lightning Charging Cable,1,14.95,2019-12-18 19:46:00,259 South St, San Francisco,CA,94016 +297997,Wired Headphones,1,11.99,2019-12-17 18:25:00,883 1st St, Los Angeles,CA,90001 +297998,Bose SoundSport Headphones,1,99.99,2019-12-02 19:15:00,841 Lake St, Seattle,WA,98101 +297999,USB-C Charging Cable,1,11.95,2019-12-01 17:51:00,990 14th St, San Francisco,CA,94016 +298000,Apple Airpods Headphones,1,150.0,2019-12-20 09:01:00,194 7th St, Atlanta,GA,30301 +298001,AA Batteries (4-pack),1,3.84,2019-12-16 05:50:00,885 Sunset St, Los Angeles,CA,90001 +298002,ThinkPad Laptop,1,999.99,2019-12-17 21:17:00,582 Hickory St, New York City,NY,10001 +298003,Wired Headphones,1,11.99,2019-12-31 20:08:00,53 Washington St, Seattle,WA,98101 +298004,Apple Airpods Headphones,1,150.0,2019-12-04 19:10:00,559 Church St, Portland,ME,04101 +298005,20in Monitor,1,109.99,2019-12-25 09:22:00,857 Cedar St, Austin,TX,73301 +298006,Apple Airpods Headphones,1,150.0,2019-12-06 15:05:00,422 9th St, San Francisco,CA,94016 +298007,AA Batteries (4-pack),1,3.84,2019-12-26 15:10:00,704 13th St, Los Angeles,CA,90001 +298007,iPhone,1,700.0,2019-12-26 15:10:00,704 13th St, Los Angeles,CA,90001 +298008,Google Phone,1,600.0,2019-12-25 18:07:00,182 Adams St, New York City,NY,10001 +298008,USB-C Charging Cable,1,11.95,2019-12-25 18:07:00,182 Adams St, New York City,NY,10001 +298009,AAA Batteries (4-pack),1,2.99,2019-12-05 10:11:00,555 13th St, Portland,OR,97035 +298010,Wired Headphones,1,11.99,2019-12-04 08:36:00,350 Washington St, Los Angeles,CA,90001 +298011,Apple Airpods Headphones,1,150.0,2019-12-14 19:14:00,408 Willow St, Austin,TX,73301 +298012,27in FHD Monitor,1,149.99,2019-12-05 12:19:00,125 9th St, Seattle,WA,98101 +298013,Lightning Charging Cable,1,14.95,2019-12-03 23:38:00,317 7th St, Portland,OR,97035 +298014,Apple Airpods Headphones,1,150.0,2019-12-20 06:29:00,852 Elm St, San Francisco,CA,94016 +298015,ThinkPad Laptop,1,999.99,2019-12-08 23:26:00,619 North St, Dallas,TX,75001 +298016,Wired Headphones,1,11.99,2019-12-25 20:49:00,46 Chestnut St, New York City,NY,10001 +298017,Apple Airpods Headphones,1,150.0,2019-12-11 12:18:00,448 Johnson St, San Francisco,CA,94016 +298018,Flatscreen TV,1,300.0,2019-12-20 21:16:00,107 River St, Los Angeles,CA,90001 +298019,27in 4K Gaming Monitor,1,389.99,2019-12-20 15:00:00,590 14th St, Dallas,TX,75001 +298020,Bose SoundSport Headphones,1,99.99,2019-12-08 10:32:00,229 Cherry St, New York City,NY,10001 +298021,27in FHD Monitor,1,149.99,2019-12-10 13:59:00,626 Willow St, San Francisco,CA,94016 +298022,AAA Batteries (4-pack),1,2.99,2019-12-19 06:22:00,44 Jefferson St, Dallas,TX,75001 +298023,AAA Batteries (4-pack),1,2.99,2019-12-09 19:13:00,957 Maple St, San Francisco,CA,94016 +298024,Lightning Charging Cable,1,14.95,2019-12-31 07:11:00,668 River St, San Francisco,CA,94016 +298025,Bose SoundSport Headphones,1,99.99,2019-12-17 15:22:00,651 11th St, Dallas,TX,75001 +298026,Bose SoundSport Headphones,1,99.99,2019-12-26 09:58:00,754 Elm St, Los Angeles,CA,90001 +298027,Wired Headphones,1,11.99,2019-12-03 01:33:00,863 Sunset St, San Francisco,CA,94016 +298028,USB-C Charging Cable,1,11.95,2019-12-01 17:44:00,854 Center St, New York City,NY,10001 +298029,Flatscreen TV,1,300.0,2019-12-15 21:41:00,895 Chestnut St, San Francisco,CA,94016 +298030,AA Batteries (4-pack),1,3.84,2019-12-11 13:14:00,877 4th St, Boston,MA,02215 +298031,Bose SoundSport Headphones,1,99.99,2019-12-28 12:23:00,496 Cherry St, Dallas,TX,75001 +298032,USB-C Charging Cable,1,11.95,2019-12-31 16:40:00,930 Walnut St, Boston,MA,02215 +298033,USB-C Charging Cable,1,11.95,2019-12-17 22:28:00,133 10th St, San Francisco,CA,94016 +298034,Flatscreen TV,1,300.0,2019-12-25 10:10:00,407 5th St, Dallas,TX,75001 +298035,27in FHD Monitor,1,149.99,2019-12-27 21:51:00,763 Washington St, San Francisco,CA,94016 +298036,Lightning Charging Cable,1,14.95,2019-12-29 20:12:00,5 1st St, Portland,OR,97035 +298037,USB-C Charging Cable,1,11.95,2019-12-18 21:16:00,69 4th St, Boston,MA,02215 +298038,Apple Airpods Headphones,1,150.0,2019-12-20 15:35:00,987 Lincoln St, Boston,MA,02215 +298039,Lightning Charging Cable,1,14.95,2019-12-17 09:10:00,136 Chestnut St, Austin,TX,73301 +298040,Macbook Pro Laptop,1,1700.0,2019-12-26 17:10:00,286 Madison St, San Francisco,CA,94016 +298041,USB-C Charging Cable,1,11.95,2019-12-31 11:34:00,588 Pine St, Dallas,TX,75001 +298042,iPhone,1,700.0,2019-12-16 17:54:00,802 13th St, San Francisco,CA,94016 +298043,USB-C Charging Cable,1,11.95,2019-12-10 23:40:00,924 9th St, Dallas,TX,75001 +298044,Lightning Charging Cable,1,14.95,2019-12-19 18:56:00,325 Sunset St, San Francisco,CA,94016 +298045,34in Ultrawide Monitor,1,379.99,2019-12-17 05:51:00,301 Center St, Atlanta,GA,30301 +298046,Wired Headphones,1,11.99,2019-12-27 20:51:00,12 Forest St, San Francisco,CA,94016 +298047,Wired Headphones,1,11.99,2019-12-17 11:36:00,413 Meadow St, Portland,OR,97035 +298048,27in 4K Gaming Monitor,1,389.99,2019-12-22 01:24:00,528 Johnson St, Los Angeles,CA,90001 +298049,AA Batteries (4-pack),1,3.84,2019-12-03 22:27:00,426 West St, San Francisco,CA,94016 +298050,Bose SoundSport Headphones,1,99.99,2019-12-21 12:24:00,364 14th St, Los Angeles,CA,90001 +298051,Wired Headphones,1,11.99,2019-12-31 17:30:00,51 Lincoln St, San Francisco,CA,94016 +298052,AA Batteries (4-pack),1,3.84,2019-12-11 21:25:00,708 5th St, San Francisco,CA,94016 +298053,Google Phone,1,600.0,2019-12-28 07:21:00,762 2nd St, Boston,MA,02215 +298053,USB-C Charging Cable,1,11.95,2019-12-28 07:21:00,762 2nd St, Boston,MA,02215 +298054,Macbook Pro Laptop,1,1700.0,2019-12-30 22:17:00,368 Dogwood St, San Francisco,CA,94016 +298055,AAA Batteries (4-pack),1,2.99,2019-12-26 12:08:00,796 Jackson St, Austin,TX,73301 +298056,AAA Batteries (4-pack),2,2.99,2019-12-17 19:48:00,127 2nd St, Los Angeles,CA,90001 +298057,27in FHD Monitor,1,149.99,2019-12-23 19:49:00,698 Meadow St, Boston,MA,02215 +298058,Apple Airpods Headphones,1,150.0,2019-12-12 07:15:00,742 11th St, Boston,MA,02215 +298059,AAA Batteries (4-pack),1,2.99,2019-12-05 19:29:00,145 10th St, Atlanta,GA,30301 +298060,20in Monitor,1,109.99,2019-12-12 23:05:00,403 8th St, New York City,NY,10001 +298061,USB-C Charging Cable,1,11.95,2019-12-19 22:15:00,840 Sunset St, San Francisco,CA,94016 +298062,Google Phone,1,600.0,2019-12-20 16:09:00,345 Spruce St, New York City,NY,10001 +298063,Lightning Charging Cable,1,14.95,2019-12-10 11:34:00,762 Forest St, Austin,TX,73301 +298064,Apple Airpods Headphones,1,150.0,2019-12-28 09:46:00,66 Washington St, Boston,MA,02215 +298065,Lightning Charging Cable,1,14.95,2019-12-12 23:53:00,4 Willow St, San Francisco,CA,94016 +298066,Bose SoundSport Headphones,1,99.99,2019-12-27 09:16:00,278 Lincoln St, San Francisco,CA,94016 +298067,AA Batteries (4-pack),1,3.84,2019-12-02 20:53:00,706 7th St, Dallas,TX,75001 +298068,AA Batteries (4-pack),2,3.84,2019-12-07 21:57:00,381 West St, Boston,MA,02215 +298069,iPhone,1,700.0,2019-12-20 12:42:00,77 8th St, Los Angeles,CA,90001 +298070,AAA Batteries (4-pack),1,2.99,2019-12-11 23:56:00,434 Jefferson St, Boston,MA,02215 +298071,Wired Headphones,1,11.99,2019-12-05 18:16:00,51 12th St, San Francisco,CA,94016 +298072,AA Batteries (4-pack),3,3.84,2019-12-06 18:49:00,759 Johnson St, Seattle,WA,98101 +298073,AA Batteries (4-pack),1,3.84,2019-12-24 10:14:00,235 9th St, San Francisco,CA,94016 +298074,iPhone,1,700.0,2019-12-13 20:53:00,471 Meadow St, Dallas,TX,75001 +298075,USB-C Charging Cable,1,11.95,2019-12-24 00:46:00,617 Church St, Dallas,TX,75001 +298076,Lightning Charging Cable,1,14.95,2019-12-05 10:58:00,748 Johnson St, San Francisco,CA,94016 +298077,27in FHD Monitor,1,149.99,2019-12-24 20:22:00,424 Highland St, Boston,MA,02215 +298078,AA Batteries (4-pack),2,3.84,2019-12-31 18:21:00,334 7th St, Dallas,TX,75001 +298079,27in 4K Gaming Monitor,1,389.99,2019-12-13 08:47:00,847 Wilson St, New York City,NY,10001 +298080,AA Batteries (4-pack),1,3.84,2019-12-24 16:37:00,511 North St, San Francisco,CA,94016 +298081,Bose SoundSport Headphones,1,99.99,2019-12-28 13:13:00,50 Church St, New York City,NY,10001 +298082,USB-C Charging Cable,1,11.95,2019-12-09 23:57:00,193 1st St, San Francisco,CA,94016 +298083,Apple Airpods Headphones,1,150.0,2019-12-19 16:42:00,151 9th St, San Francisco,CA,94016 +298084,Flatscreen TV,1,300.0,2019-12-03 13:18:00,202 4th St, Portland,OR,97035 +298085,Bose SoundSport Headphones,1,99.99,2019-12-10 11:47:00,391 Elm St, New York City,NY,10001 +298086,USB-C Charging Cable,1,11.95,2019-12-28 14:26:00,738 Ridge St, Atlanta,GA,30301 +298087,AA Batteries (4-pack),2,3.84,2019-12-19 12:44:00,274 Lakeview St, Austin,TX,73301 +298088,34in Ultrawide Monitor,1,379.99,2019-12-14 22:18:00,689 River St, Los Angeles,CA,90001 +298089,USB-C Charging Cable,1,11.95,2019-12-24 13:25:00,540 Cherry St, San Francisco,CA,94016 +298090,Lightning Charging Cable,1,14.95,2019-12-24 19:33:00,277 6th St, Atlanta,GA,30301 +298091,AAA Batteries (4-pack),1,2.99,2019-12-25 12:49:00,484 Highland St, Boston,MA,02215 +298092,Wired Headphones,1,11.99,2019-12-29 18:29:00,257 1st St, Austin,TX,73301 +298093,AA Batteries (4-pack),2,3.84,2019-12-23 20:45:00,988 13th St, San Francisco,CA,94016 +298094,AAA Batteries (4-pack),1,2.99,2019-12-30 05:58:00,779 Elm St, Austin,TX,73301 +298095,Google Phone,1,600.0,2019-12-04 08:34:00,55 Forest St, Atlanta,GA,30301 +298096,Lightning Charging Cable,1,14.95,2019-12-16 15:20:00,784 Forest St, Boston,MA,02215 +298097,iPhone,1,700.0,2019-12-12 10:07:00,541 1st St, Austin,TX,73301 +298098,USB-C Charging Cable,1,11.95,2019-12-07 14:00:00,397 10th St, Los Angeles,CA,90001 +298099,USB-C Charging Cable,1,11.95,2019-12-28 22:32:00,164 Chestnut St, Seattle,WA,98101 +298100,Wired Headphones,1,11.99,2019-12-16 16:55:00,3 Washington St, Seattle,WA,98101 +298101,Lightning Charging Cable,1,14.95,2019-12-09 12:21:00,752 7th St, Seattle,WA,98101 +298102,27in FHD Monitor,1,149.99,2019-12-05 19:19:00,115 Church St, San Francisco,CA,94016 +298103,27in 4K Gaming Monitor,1,389.99,2019-12-02 14:24:00,397 Church St, Boston,MA,02215 +298104,AA Batteries (4-pack),1,3.84,2019-12-16 22:30:00,955 Johnson St, Los Angeles,CA,90001 +298105,AA Batteries (4-pack),3,3.84,2019-12-20 22:02:00,36 South St, Los Angeles,CA,90001 +298106,AA Batteries (4-pack),2,3.84,2019-12-12 18:01:00,51 Lake St, Austin,TX,73301 +298107,Wired Headphones,1,11.99,2019-12-25 23:01:00,802 Lake St, Los Angeles,CA,90001 +298108,AAA Batteries (4-pack),1,2.99,2019-12-02 18:22:00,779 Church St, Los Angeles,CA,90001 +298109,Flatscreen TV,1,300.0,2019-12-31 09:07:00,876 4th St, Atlanta,GA,30301 +298110,Bose SoundSport Headphones,1,99.99,2019-12-18 22:24:00,944 Cherry St, Seattle,WA,98101 +298111,iPhone,1,700.0,2019-12-14 14:00:00,549 Forest St, San Francisco,CA,94016 +298112,Wired Headphones,1,11.99,2019-12-07 11:57:00,572 Willow St, San Francisco,CA,94016 +298113,Apple Airpods Headphones,2,150.0,2019-12-11 13:13:00,789 Cedar St, Boston,MA,02215 +298114,AA Batteries (4-pack),1,3.84,2019-12-22 01:57:00,259 Johnson St, Atlanta,GA,30301 +298115,AAA Batteries (4-pack),1,2.99,2019-12-21 11:26:00,662 13th St, Atlanta,GA,30301 +298116,USB-C Charging Cable,2,11.95,2019-12-19 12:27:00,29 Church St, Atlanta,GA,30301 +298117,Google Phone,1,600.0,2019-12-27 00:20:00,307 Lakeview St, Portland,ME,04101 +298118,Google Phone,1,600.0,2019-12-17 18:46:00,425 6th St, Portland,OR,97035 +298118,USB-C Charging Cable,2,11.95,2019-12-17 18:46:00,425 6th St, Portland,OR,97035 +298119,Wired Headphones,2,11.99,2019-12-18 20:26:00,427 2nd St, Seattle,WA,98101 +298120,AA Batteries (4-pack),2,3.84,2019-12-29 15:32:00,884 8th St, Atlanta,GA,30301 +298121,AAA Batteries (4-pack),1,2.99,2019-12-28 01:29:00,666 Hill St, Los Angeles,CA,90001 +298122,AA Batteries (4-pack),2,3.84,2019-12-20 15:41:00,618 Main St, New York City,NY,10001 +298123,USB-C Charging Cable,1,11.95,2019-12-26 14:18:00,378 13th St, Seattle,WA,98101 +298124,Lightning Charging Cable,1,14.95,2019-12-08 17:38:00,837 1st St, San Francisco,CA,94016 +298125,Wired Headphones,1,11.99,2019-12-26 19:30:00,527 Maple St, Portland,OR,97035 +298126,AAA Batteries (4-pack),1,2.99,2019-12-28 14:05:00,627 Washington St, Dallas,TX,75001 +298127,Lightning Charging Cable,1,14.95,2019-12-12 23:28:00,622 Center St, Dallas,TX,75001 +298128,AAA Batteries (4-pack),1,2.99,2019-12-05 21:34:00,419 Cherry St, New York City,NY,10001 +298129,27in 4K Gaming Monitor,1,389.99,2019-12-25 12:58:00,347 Madison St, Los Angeles,CA,90001 +298130,Bose SoundSport Headphones,1,99.99,2019-12-02 13:00:00,953 Chestnut St, Austin,TX,73301 +298131,34in Ultrawide Monitor,1,379.99,2019-12-16 21:22:00,133 Park St, New York City,NY,10001 +298132,iPhone,1,700.0,2019-12-28 21:54:00,903 1st St, San Francisco,CA,94016 +298133,Bose SoundSport Headphones,1,99.99,2019-12-03 12:07:00,312 Ridge St, Boston,MA,02215 +298134,AA Batteries (4-pack),1,3.84,2019-12-31 16:12:00,605 Adams St, San Francisco,CA,94016 +298135,AAA Batteries (4-pack),2,2.99,2019-12-15 11:18:00,151 Willow St, Dallas,TX,75001 +298136,ThinkPad Laptop,1,999.99,2019-12-30 14:09:00,252 Lincoln St, Dallas,TX,75001 +298137,34in Ultrawide Monitor,2,379.99,2019-12-18 16:07:00,587 Hickory St, San Francisco,CA,94016 +298138,iPhone,1,700.0,2019-12-29 18:02:00,884 Hickory St, Boston,MA,02215 +298139,Lightning Charging Cable,1,14.95,2019-12-24 17:15:00,249 Wilson St, Boston,MA,02215 +298140,USB-C Charging Cable,1,11.95,2019-12-29 12:13:00,812 Madison St, Atlanta,GA,30301 +298141,Bose SoundSport Headphones,1,99.99,2019-12-17 13:42:00,876 Jackson St, New York City,NY,10001 +298142,USB-C Charging Cable,1,11.95,2019-12-18 01:47:00,763 Sunset St, Los Angeles,CA,90001 +298143,USB-C Charging Cable,1,11.95,2019-12-23 09:13:00,813 Johnson St, Boston,MA,02215 +298144,AAA Batteries (4-pack),2,2.99,2019-12-02 17:49:00,969 West St, Austin,TX,73301 +298145,Wired Headphones,1,11.99,2019-12-14 17:11:00,711 14th St, Dallas,TX,75001 +298146,USB-C Charging Cable,1,11.95,2019-12-27 14:58:00,556 Jackson St, San Francisco,CA,94016 +298147,Wired Headphones,1,11.99,2019-12-18 19:05:00,883 8th St, Boston,MA,02215 +298148,20in Monitor,1,109.99,2019-12-13 08:27:00,12 Maple St, San Francisco,CA,94016 +298149,AA Batteries (4-pack),2,3.84,2019-12-01 15:05:00,504 Center St, San Francisco,CA,94016 +298150,Wired Headphones,1,11.99,2019-12-11 10:23:00,498 Cherry St, Atlanta,GA,30301 +298151,Lightning Charging Cable,1,14.95,2019-12-03 00:57:00,55 6th St, Portland,OR,97035 +298152,AAA Batteries (4-pack),3,2.99,2019-12-13 01:45:00,393 2nd St, Los Angeles,CA,90001 +298153,Apple Airpods Headphones,1,150.0,2019-12-26 13:44:00,706 Washington St, Los Angeles,CA,90001 +298154,Bose SoundSport Headphones,2,99.99,2019-12-22 19:38:00,606 Dogwood St, Dallas,TX,75001 +298155,AA Batteries (4-pack),1,3.84,2019-12-05 13:46:00,590 Wilson St, San Francisco,CA,94016 +298156,Lightning Charging Cable,1,14.95,2019-12-02 22:14:00,347 Hill St, Dallas,TX,75001 +298157,USB-C Charging Cable,1,11.95,2019-12-15 09:23:00,981 Wilson St, Los Angeles,CA,90001 +298158,AA Batteries (4-pack),1,3.84,2019-12-05 16:03:00,986 5th St, New York City,NY,10001 +298159,Apple Airpods Headphones,1,150.0,2019-12-10 06:40:00,563 11th St, Portland,OR,97035 +298160,AA Batteries (4-pack),2,3.84,2019-12-12 13:46:00,996 7th St, San Francisco,CA,94016 +298161,Bose SoundSport Headphones,1,99.99,2019-12-13 17:26:00,632 South St, Portland,OR,97035 +298162,iPhone,1,700.0,2019-12-15 09:50:00,934 Madison St, San Francisco,CA,94016 +298163,34in Ultrawide Monitor,1,379.99,2019-12-02 09:23:00,848 Lincoln St, Boston,MA,02215 +298164,Google Phone,1,600.0,2019-12-19 12:00:00,873 North St, Seattle,WA,98101 +298165,Wired Headphones,1,11.99,2019-12-02 22:03:00,951 Walnut St, New York City,NY,10001 +298166,20in Monitor,1,109.99,2019-12-31 11:29:00,414 Forest St, Portland,OR,97035 +298167,Wired Headphones,1,11.99,2019-12-28 19:30:00,480 Walnut St, Los Angeles,CA,90001 +298168,USB-C Charging Cable,1,11.95,2019-12-16 22:51:00,167 Walnut St, San Francisco,CA,94016 +298169,AAA Batteries (4-pack),1,2.99,2019-12-21 06:34:00,365 River St, San Francisco,CA,94016 +298170,Apple Airpods Headphones,1,150.0,2019-12-09 00:22:00,201 West St, New York City,NY,10001 +298171,AA Batteries (4-pack),1,3.84,2019-12-10 14:36:00,789 Park St, San Francisco,CA,94016 +298172,27in FHD Monitor,1,149.99,2019-12-20 12:58:00,26 Jefferson St, Atlanta,GA,30301 +298173,USB-C Charging Cable,1,11.95,2019-12-01 23:58:00,185 Maple St, Boston,MA,02215 +298174,27in 4K Gaming Monitor,1,389.99,2019-12-20 15:11:00,764 8th St, Los Angeles,CA,90001 +298175,AAA Batteries (4-pack),1,2.99,2019-12-17 17:13:00,454 Spruce St, San Francisco,CA,94016 +298176,USB-C Charging Cable,1,11.95,2019-12-13 15:12:00,224 10th St, New York City,NY,10001 +298177,AA Batteries (4-pack),3,3.84,2019-12-21 13:57:00,35 Johnson St, Seattle,WA,98101 +298178,Lightning Charging Cable,1,14.95,2019-12-31 07:15:00,550 2nd St, Portland,OR,97035 +298179,Bose SoundSport Headphones,1,99.99,2019-12-06 09:10:00,748 Elm St, Atlanta,GA,30301 +298180,Lightning Charging Cable,1,14.95,2019-12-21 18:23:00,669 13th St, San Francisco,CA,94016 +298181,AAA Batteries (4-pack),1,2.99,2019-12-15 23:37:00,338 Cherry St, San Francisco,CA,94016 +298182,AA Batteries (4-pack),2,3.84,2019-12-29 13:17:00,508 Adams St, San Francisco,CA,94016 +298183,USB-C Charging Cable,1,11.95,2019-12-28 18:08:00,32 Dogwood St, Atlanta,GA,30301 +298184,Macbook Pro Laptop,1,1700.0,2019-12-03 13:43:00,26 9th St, Austin,TX,73301 +298185,Wired Headphones,1,11.99,2019-12-06 14:23:00,82 1st St, San Francisco,CA,94016 +298186,34in Ultrawide Monitor,1,379.99,2019-12-22 00:02:00,678 Willow St, Austin,TX,73301 +298187,34in Ultrawide Monitor,1,379.99,2019-12-27 16:03:00,848 Willow St, Atlanta,GA,30301 +298188,Lightning Charging Cable,1,14.95,2019-12-13 12:51:00,209 Cherry St, Seattle,WA,98101 +298189,AAA Batteries (4-pack),1,2.99,2019-12-18 12:39:00,677 Center St, Portland,OR,97035 +298190,34in Ultrawide Monitor,1,379.99,2019-12-02 17:10:00,973 Madison St, Atlanta,GA,30301 +298191,Lightning Charging Cable,2,14.95,2019-12-17 22:55:00,449 Lakeview St, New York City,NY,10001 +298192,AA Batteries (4-pack),2,3.84,2019-12-12 13:32:00,43 Church St, Boston,MA,02215 +298193,AAA Batteries (4-pack),1,2.99,2019-12-29 13:09:00,210 Johnson St, San Francisco,CA,94016 +298194,Lightning Charging Cable,1,14.95,2019-12-16 19:13:00,593 2nd St, San Francisco,CA,94016 +298195,Lightning Charging Cable,1,14.95,2019-12-27 18:00:00,549 12th St, New York City,NY,10001 +298196,AAA Batteries (4-pack),2,2.99,2019-12-08 23:10:00,675 Maple St, Los Angeles,CA,90001 +298197,Lightning Charging Cable,1,14.95,2019-12-23 18:17:00,57 Jackson St, Los Angeles,CA,90001 +298198,USB-C Charging Cable,1,11.95,2019-12-23 08:30:00,122 13th St, Seattle,WA,98101 +298199,AAA Batteries (4-pack),1,2.99,2019-12-13 16:11:00,745 Church St, Boston,MA,02215 +298200,Wired Headphones,1,11.99,2019-12-06 10:36:00,644 West St, New York City,NY,10001 +298201,AA Batteries (4-pack),1,3.84,2019-12-20 11:15:00,329 Meadow St, Dallas,TX,75001 +298202,Lightning Charging Cable,1,14.95,2019-12-22 12:54:00,107 Park St, Atlanta,GA,30301 +298203,Wired Headphones,1,11.99,2019-12-28 11:39:00,317 North St, Los Angeles,CA,90001 +298204,Lightning Charging Cable,1,14.95,2019-12-19 09:30:00,68 Madison St, San Francisco,CA,94016 +298205,Apple Airpods Headphones,1,150.0,2019-12-29 11:24:00,446 Chestnut St, San Francisco,CA,94016 +298206,27in FHD Monitor,1,149.99,2019-12-30 22:23:00,228 Elm St, New York City,NY,10001 +298207,iPhone,1,700.0,2019-12-10 10:57:00,387 Maple St, San Francisco,CA,94016 +298208,34in Ultrawide Monitor,1,379.99,2019-12-09 14:35:00,452 Cedar St, Seattle,WA,98101 +298209,Wired Headphones,1,11.99,2019-12-27 15:57:00,943 Ridge St, New York City,NY,10001 +298210,Apple Airpods Headphones,1,150.0,2019-12-05 21:21:00,131 Wilson St, San Francisco,CA,94016 +298211,Macbook Pro Laptop,1,1700.0,2019-12-10 19:35:00,8 2nd St, New York City,NY,10001 +298212,27in 4K Gaming Monitor,1,389.99,2019-12-02 21:24:00,870 9th St, New York City,NY,10001 +298213,Apple Airpods Headphones,1,150.0,2019-12-21 14:52:00,313 6th St, San Francisco,CA,94016 +298214,Google Phone,1,600.0,2019-12-18 16:16:00,330 Elm St, San Francisco,CA,94016 +298215,AAA Batteries (4-pack),1,2.99,2019-12-17 10:16:00,275 River St, Atlanta,GA,30301 +298216,Lightning Charging Cable,2,14.95,2019-12-30 13:36:00,820 2nd St, Seattle,WA,98101 +298216,AAA Batteries (4-pack),1,2.99,2019-12-30 13:36:00,820 2nd St, Seattle,WA,98101 +298217,Bose SoundSport Headphones,1,99.99,2019-12-12 23:53:00,110 Willow St, New York City,NY,10001 +298218,Wired Headphones,1,11.99,2019-12-22 14:52:00,906 7th St, Seattle,WA,98101 +298219,20in Monitor,1,109.99,2019-12-03 09:34:00,118 11th St, Los Angeles,CA,90001 +298220,USB-C Charging Cable,1,11.95,2019-12-27 07:09:00,447 9th St, Austin,TX,73301 +298221,Wired Headphones,1,11.99,2019-12-31 21:11:00,669 Willow St, Portland,OR,97035 +298222,AAA Batteries (4-pack),1,2.99,2019-12-03 13:36:00,77 Willow St, San Francisco,CA,94016 +298223,AA Batteries (4-pack),5,3.84,2019-12-02 14:17:00,84 South St, Portland,OR,97035 +298224,AA Batteries (4-pack),1,3.84,2019-12-28 18:10:00,877 Forest St, Seattle,WA,98101 +298225,AAA Batteries (4-pack),5,2.99,2019-12-05 15:41:00,50 4th St, Atlanta,GA,30301 +298226,AA Batteries (4-pack),1,3.84,2019-12-17 20:37:00,688 River St, San Francisco,CA,94016 +298227,ThinkPad Laptop,1,999.99,2019-12-27 15:06:00,377 River St, Austin,TX,73301 +298228,27in 4K Gaming Monitor,1,389.99,2019-12-21 11:57:00,222 Elm St, New York City,NY,10001 +298229,iPhone,1,700.0,2019-12-25 09:56:00,769 Ridge St, New York City,NY,10001 +298230,Bose SoundSport Headphones,1,99.99,2019-12-09 17:59:00,699 13th St, Boston,MA,02215 +298231,Lightning Charging Cable,1,14.95,2019-12-20 11:24:00,546 Spruce St, Seattle,WA,98101 +298232,Wired Headphones,1,11.99,2019-12-27 16:50:00,472 6th St, San Francisco,CA,94016 +298233,USB-C Charging Cable,1,11.95,2019-12-02 19:56:00,976 7th St, Seattle,WA,98101 +298234,27in FHD Monitor,1,149.99,2019-12-02 23:39:00,355 14th St, Los Angeles,CA,90001 +298235,27in FHD Monitor,1,149.99,2019-12-29 15:36:00,472 1st St, New York City,NY,10001 +298236,AAA Batteries (4-pack),2,2.99,2019-12-09 06:01:00,235 2nd St, Seattle,WA,98101 +298237,Google Phone,1,600.0,2019-12-15 02:06:00,985 Park St, New York City,NY,10001 +298238,AAA Batteries (4-pack),3,2.99,2019-12-23 12:54:00,560 Church St, Austin,TX,73301 +298239,27in FHD Monitor,1,149.99,2019-12-09 09:12:00,77 West St, Boston,MA,02215 +298240,iPhone,1,700.0,2019-12-10 07:03:00,923 Hill St, Los Angeles,CA,90001 +298241,iPhone,1,700.0,2019-12-30 07:27:00,418 8th St, Atlanta,GA,30301 +298242,Wired Headphones,1,11.99,2019-12-26 07:53:00,478 Elm St, Dallas,TX,75001 +298243,AAA Batteries (4-pack),1,2.99,2019-12-24 19:51:00,232 Lake St, San Francisco,CA,94016 +298244,Apple Airpods Headphones,1,150.0,2019-12-01 15:28:00,452 Ridge St, Boston,MA,02215 +298245,USB-C Charging Cable,1,11.95,2019-12-29 08:36:00,495 Spruce St, Boston,MA,02215 +298246,USB-C Charging Cable,2,11.95,2019-12-17 13:25:00,897 6th St, Austin,TX,73301 +298247,Flatscreen TV,1,300.0,2019-12-06 17:10:00,593 Washington St, San Francisco,CA,94016 +298248,USB-C Charging Cable,1,11.95,2019-12-06 13:57:00,486 Adams St, San Francisco,CA,94016 +298249,27in 4K Gaming Monitor,1,389.99,2019-12-23 05:16:00,826 Highland St, Los Angeles,CA,90001 +298250,AAA Batteries (4-pack),1,2.99,2019-12-12 12:12:00,572 Madison St, San Francisco,CA,94016 +298251,ThinkPad Laptop,1,999.99,2019-12-24 09:49:00,16 Wilson St, Austin,TX,73301 +298252,AA Batteries (4-pack),1,3.84,2019-12-01 17:23:00,326 5th St, Austin,TX,73301 +298253,AA Batteries (4-pack),1,3.84,2019-12-15 14:15:00,806 Pine St, San Francisco,CA,94016 +298254,Lightning Charging Cable,1,14.95,2019-12-15 17:28:00,853 7th St, Dallas,TX,75001 +298255,Bose SoundSport Headphones,1,99.99,2019-12-04 19:01:00,182 Wilson St, Los Angeles,CA,90001 +298256,Wired Headphones,1,11.99,2019-12-17 13:02:00,454 Walnut St, Los Angeles,CA,90001 +298257,27in 4K Gaming Monitor,1,389.99,2019-12-22 11:29:00,915 Washington St, San Francisco,CA,94016 +298258,LG Washing Machine,1,600.0,2019-12-29 16:05:00,929 11th St, San Francisco,CA,94016 +298259,USB-C Charging Cable,1,11.95,2019-12-08 18:07:00,730 South St, San Francisco,CA,94016 +298260,Wired Headphones,3,11.99,2019-12-10 23:14:00,703 South St, San Francisco,CA,94016 +298261,Wired Headphones,1,11.99,2019-12-28 04:58:00,9 5th St, Portland,OR,97035 +298262,AA Batteries (4-pack),1,3.84,2019-12-02 00:02:00,68 5th St, Seattle,WA,98101 +298263,Google Phone,1,600.0,2019-12-25 20:16:00,333 Maple St, San Francisco,CA,94016 +298264,USB-C Charging Cable,1,11.95,2019-12-08 11:10:00,177 11th St, San Francisco,CA,94016 +298265,Lightning Charging Cable,1,14.95,2019-12-09 07:04:00,227 Hickory St, San Francisco,CA,94016 +298266,Bose SoundSport Headphones,1,99.99,2019-12-04 07:13:00,792 Cedar St, Los Angeles,CA,90001 +298267,27in FHD Monitor,1,149.99,2019-12-21 22:32:00,252 Jackson St, Atlanta,GA,30301 +298268,AA Batteries (4-pack),2,3.84,2019-12-17 13:49:00,3 South St, San Francisco,CA,94016 +298269,Macbook Pro Laptop,1,1700.0,2019-12-18 13:44:00,553 12th St, Austin,TX,73301 +298270,USB-C Charging Cable,1,11.95,2019-12-10 21:05:00,762 Church St, Seattle,WA,98101 +298271,Wired Headphones,2,11.99,2019-12-27 14:24:00,543 Hill St, San Francisco,CA,94016 +298272,USB-C Charging Cable,1,11.95,2019-12-09 14:19:00,448 6th St, Los Angeles,CA,90001 +298273,Apple Airpods Headphones,1,150.0,2019-12-09 08:13:00,51 Lake St, Atlanta,GA,30301 +298274,20in Monitor,1,109.99,2019-12-14 21:51:00,16 Sunset St, Seattle,WA,98101 +298275,Apple Airpods Headphones,1,150.0,2019-12-17 05:08:00,59 Lakeview St, New York City,NY,10001 +298276,27in 4K Gaming Monitor,1,389.99,2019-12-08 15:15:00,368 West St, Boston,MA,02215 +298277,27in FHD Monitor,1,149.99,2019-12-28 22:32:00,834 11th St, Seattle,WA,98101 +298278,USB-C Charging Cable,1,11.95,2019-12-06 03:52:00,449 Ridge St, San Francisco,CA,94016 +298279,Lightning Charging Cable,1,14.95,2019-12-31 01:20:00,210 14th St, New York City,NY,10001 +298280,AA Batteries (4-pack),1,3.84,2019-12-09 15:35:00,653 Spruce St, Dallas,TX,75001 +298281,Apple Airpods Headphones,1,150.0,2019-12-30 08:57:00,988 Lake St, Austin,TX,73301 +298282,AA Batteries (4-pack),2,3.84,2019-12-19 17:40:00,944 1st St, Los Angeles,CA,90001 +298283,ThinkPad Laptop,1,999.99,2019-12-11 09:56:00,402 Johnson St, Atlanta,GA,30301 +298284,AAA Batteries (4-pack),2,2.99,2019-12-11 22:37:00,444 Wilson St, San Francisco,CA,94016 +298285,Lightning Charging Cable,1,14.95,2019-12-21 12:19:00,966 Lincoln St, San Francisco,CA,94016 +298286,USB-C Charging Cable,1,11.95,2019-12-02 08:40:00,522 11th St, San Francisco,CA,94016 +298287,LG Dryer,1,600.0,2019-12-04 19:13:00,947 Cherry St, Los Angeles,CA,90001 +298288,27in FHD Monitor,1,149.99,2019-12-17 16:45:00,206 Forest St, Dallas,TX,75001 +298289,Google Phone,1,600.0,2019-12-04 11:30:00,188 7th St, Austin,TX,73301 +298289,USB-C Charging Cable,1,11.95,2019-12-04 11:30:00,188 7th St, Austin,TX,73301 +298290,Lightning Charging Cable,1,14.95,2019-12-17 06:23:00,80 2nd St, Atlanta,GA,30301 +298291,AA Batteries (4-pack),3,3.84,2019-12-01 12:19:00,619 River St, San Francisco,CA,94016 +298292,Lightning Charging Cable,1,14.95,2019-12-05 11:34:00,797 Washington St, San Francisco,CA,94016 +298293,USB-C Charging Cable,1,11.95,2019-12-15 20:59:00,214 1st St, Dallas,TX,75001 +298294,AA Batteries (4-pack),1,3.84,2019-12-02 20:37:00,145 North St, Seattle,WA,98101 +298295,AAA Batteries (4-pack),4,2.99,2019-12-17 17:46:00,898 Adams St, Atlanta,GA,30301 +298296,iPhone,1,700.0,2019-12-11 07:12:00,207 13th St, Boston,MA,02215 +298297,USB-C Charging Cable,1,11.95,2019-12-06 14:27:00,383 Wilson St, San Francisco,CA,94016 +298298,Wired Headphones,1,11.99,2019-12-26 12:08:00,317 Maple St, San Francisco,CA,94016 +298299,ThinkPad Laptop,1,999.99,2019-12-21 12:28:00,158 Washington St, Los Angeles,CA,90001 +298300,AAA Batteries (4-pack),2,2.99,2019-12-24 21:55:00,137 9th St, Dallas,TX,75001 +298301,Wired Headphones,1,11.99,2019-12-29 08:45:00,13 4th St, Dallas,TX,75001 +298302,Lightning Charging Cable,1,14.95,2019-12-25 14:41:00,531 North St, Boston,MA,02215 +298303,27in FHD Monitor,1,149.99,2019-12-16 21:02:00,547 Jefferson St, San Francisco,CA,94016 +298304,AA Batteries (4-pack),1,3.84,2019-12-25 23:20:00,951 Center St, Los Angeles,CA,90001 +298305,Apple Airpods Headphones,1,150.0,2019-12-29 09:48:00,111 Meadow St, San Francisco,CA,94016 +298306,Apple Airpods Headphones,1,150.0,2019-12-24 20:40:00,901 Johnson St, San Francisco,CA,94016 +298307,Bose SoundSport Headphones,1,99.99,2019-12-02 08:14:00,638 Pine St, Seattle,WA,98101 +298308,Google Phone,1,600.0,2019-12-21 15:07:00,829 Dogwood St, San Francisco,CA,94016 +298309,Apple Airpods Headphones,1,150.0,2019-12-07 01:16:00,969 Jackson St, New York City,NY,10001 +298310,USB-C Charging Cable,1,11.95,2019-12-24 05:54:00,710 Highland St, San Francisco,CA,94016 +298311,USB-C Charging Cable,1,11.95,2019-12-27 13:03:00,995 Walnut St, San Francisco,CA,94016 +298312,AA Batteries (4-pack),1,3.84,2019-12-04 12:26:00,715 South St, Boston,MA,02215 +298313,AAA Batteries (4-pack),1,2.99,2019-12-26 10:30:00,228 Jackson St, Portland,OR,97035 +298314,27in 4K Gaming Monitor,1,389.99,2019-12-15 18:24:00,474 Wilson St, Atlanta,GA,30301 +298315,Lightning Charging Cable,1,14.95,2019-12-09 09:58:00,834 12th St, Boston,MA,02215 +298316,Lightning Charging Cable,1,14.95,2019-12-27 10:17:00,373 Elm St, Seattle,WA,98101 +298317,USB-C Charging Cable,1,11.95,2019-12-30 11:23:00,718 Adams St, Dallas,TX,75001 +298318,Lightning Charging Cable,1,14.95,2019-12-28 16:20:00,547 9th St, San Francisco,CA,94016 +298319,AAA Batteries (4-pack),2,2.99,2019-12-29 13:30:00,959 Walnut St, Los Angeles,CA,90001 +298320,AAA Batteries (4-pack),2,2.99,2019-12-21 03:27:00,374 6th St, Atlanta,GA,30301 +298321,USB-C Charging Cable,1,11.95,2019-12-21 05:58:00,183 Spruce St, New York City,NY,10001 +298322,Apple Airpods Headphones,1,150.0,2019-12-07 10:06:00,126 2nd St, New York City,NY,10001 +298323,34in Ultrawide Monitor,1,379.99,2019-12-18 12:38:00,221 Madison St, Portland,OR,97035 +298324,AA Batteries (4-pack),1,3.84,2019-12-17 16:23:00,955 Meadow St, Portland,ME,04101 +298325,AA Batteries (4-pack),1,3.84,2019-12-13 05:43:00,385 7th St, Dallas,TX,75001 +298326,USB-C Charging Cable,1,11.95,2019-12-20 23:34:00,271 Willow St, Portland,OR,97035 +298327,20in Monitor,1,109.99,2019-12-21 10:37:00,215 Lake St, New York City,NY,10001 +298328,Flatscreen TV,1,300.0,2019-12-06 19:00:00,150 Maple St, San Francisco,CA,94016 +298329,Macbook Pro Laptop,1,1700.0,2019-12-02 07:47:00,99 Main St, New York City,NY,10001 +298330,USB-C Charging Cable,1,11.95,2019-12-19 12:07:00,794 Jefferson St, Los Angeles,CA,90001 +298331,Flatscreen TV,1,300.0,2019-12-23 19:43:00,876 Pine St, San Francisco,CA,94016 +298332,AA Batteries (4-pack),2,3.84,2019-12-17 06:46:00,29 7th St, Atlanta,GA,30301 +298333,Bose SoundSport Headphones,1,99.99,2019-12-04 18:04:00,263 Willow St, San Francisco,CA,94016 +298334,USB-C Charging Cable,1,11.95,2019-12-29 15:56:00,761 Lakeview St, San Francisco,CA,94016 +298335,AA Batteries (4-pack),1,3.84,2019-12-01 18:13:00,717 6th St, Dallas,TX,75001 +298336,Macbook Pro Laptop,1,1700.0,2019-12-06 14:08:00,456 Lincoln St, San Francisco,CA,94016 +298337,Macbook Pro Laptop,1,1700.0,2019-12-29 12:25:00,100 Willow St, New York City,NY,10001 +298338,USB-C Charging Cable,1,11.95,2019-12-30 18:38:00,878 14th St, Los Angeles,CA,90001 +298339,Apple Airpods Headphones,1,150.0,2019-12-14 14:27:00,115 Park St, Portland,ME,04101 +298340,ThinkPad Laptop,1,999.99,2019-12-13 13:12:00,567 River St, Dallas,TX,75001 +298341,34in Ultrawide Monitor,1,379.99,2019-12-22 13:40:00,826 12th St, San Francisco,CA,94016 +298342,AA Batteries (4-pack),1,3.84,2019-12-09 20:12:00,775 Washington St, Los Angeles,CA,90001 +298343,Bose SoundSport Headphones,1,99.99,2019-12-29 00:35:00,349 Center St, Portland,OR,97035 +298344,Wired Headphones,4,11.99,2020-01-01 03:34:00,731 7th St, New York City,NY,10001 +298345,USB-C Charging Cable,1,11.95,2019-12-28 18:50:00,37 Meadow St, Seattle,WA,98101 +298346,27in FHD Monitor,1,149.99,2019-12-21 13:03:00,345 8th St, Boston,MA,02215 +298347,iPhone,1,700.0,2019-12-07 15:50:00,882 7th St, Boston,MA,02215 +298348,Wired Headphones,1,11.99,2019-12-01 14:46:00,854 Cedar St, Los Angeles,CA,90001 +298349,Wired Headphones,1,11.99,2019-12-03 15:33:00,668 Center St, Portland,OR,97035 +298350,Apple Airpods Headphones,1,150.0,2019-12-24 04:54:00,513 Johnson St, Portland,OR,97035 +298351,AAA Batteries (4-pack),1,2.99,2019-12-24 19:12:00,469 Park St, Austin,TX,73301 +298352,Lightning Charging Cable,1,14.95,2019-12-20 09:10:00,393 Cedar St, Boston,MA,02215 +298352,AA Batteries (4-pack),1,3.84,2019-12-20 09:10:00,393 Cedar St, Boston,MA,02215 +298353,27in FHD Monitor,1,149.99,2019-12-30 15:32:00,25 Wilson St, Los Angeles,CA,90001 +298354,34in Ultrawide Monitor,1,379.99,2019-12-22 10:39:00,676 Hill St, San Francisco,CA,94016 +298355,Wired Headphones,1,11.99,2019-12-26 14:59:00,423 Church St, Atlanta,GA,30301 +298356,iPhone,1,700.0,2019-12-20 18:10:00,917 Sunset St, Portland,OR,97035 +298357,Flatscreen TV,1,300.0,2019-12-09 07:25:00,834 2nd St, Boston,MA,02215 +298358,Apple Airpods Headphones,1,150.0,2019-12-04 15:57:00,482 8th St, San Francisco,CA,94016 +298359,Apple Airpods Headphones,1,150.0,2019-12-05 19:46:00,515 13th St, Seattle,WA,98101 +298360,Lightning Charging Cable,1,14.95,2019-12-26 11:40:00,44 Wilson St, Boston,MA,02215 +298361,USB-C Charging Cable,1,11.95,2019-12-20 14:21:00,893 8th St, New York City,NY,10001 +298362,Lightning Charging Cable,1,14.95,2019-12-23 10:31:00,605 6th St, San Francisco,CA,94016 +298363,Lightning Charging Cable,1,14.95,2019-12-09 22:17:00,634 13th St, Dallas,TX,75001 +298364,AA Batteries (4-pack),2,3.84,2019-12-02 00:38:00,26 2nd St, Portland,OR,97035 +298365,Apple Airpods Headphones,1,150.0,2019-12-11 20:46:00,458 Cherry St, Dallas,TX,75001 +298366,AAA Batteries (4-pack),1,2.99,2019-12-06 14:24:00,488 5th St, San Francisco,CA,94016 +298367,AAA Batteries (4-pack),1,2.99,2019-12-19 18:24:00,353 13th St, Atlanta,GA,30301 +298368,20in Monitor,1,109.99,2019-12-29 23:01:00,258 6th St, Atlanta,GA,30301 +298369,USB-C Charging Cable,1,11.95,2019-12-30 21:33:00,199 11th St, Austin,TX,73301 +298370,20in Monitor,1,109.99,2019-12-06 08:45:00,586 14th St, Atlanta,GA,30301 +298371,Lightning Charging Cable,1,14.95,2019-12-22 09:45:00,293 7th St, San Francisco,CA,94016 +298372,27in FHD Monitor,1,149.99,2019-12-21 03:51:00,486 Chestnut St, Boston,MA,02215 +298373,AA Batteries (4-pack),1,3.84,2019-12-16 22:37:00,486 13th St, San Francisco,CA,94016 +298374,USB-C Charging Cable,1,11.95,2019-12-30 20:05:00,177 Meadow St, Austin,TX,73301 +298375,Lightning Charging Cable,1,14.95,2019-12-29 03:32:00,793 Spruce St, Seattle,WA,98101 +298376,AAA Batteries (4-pack),3,2.99,2019-12-05 07:53:00,382 Church St, Atlanta,GA,30301 +298377,AA Batteries (4-pack),1,3.84,2019-12-31 03:08:00,580 Washington St, New York City,NY,10001 +298378,AA Batteries (4-pack),2,3.84,2019-12-26 04:52:00,722 Hill St, Atlanta,GA,30301 +298379,USB-C Charging Cable,1,11.95,2019-12-11 12:58:00,856 Walnut St, Austin,TX,73301 +298380,Wired Headphones,1,11.99,2019-12-15 19:42:00,756 Meadow St, San Francisco,CA,94016 +298381,Apple Airpods Headphones,1,150.0,2019-12-13 22:24:00,770 Hickory St, San Francisco,CA,94016 +298382,Flatscreen TV,1,300.0,2019-12-13 15:46:00,602 10th St, New York City,NY,10001 +298383,Apple Airpods Headphones,1,150.0,2019-12-10 17:40:00,487 14th St, Boston,MA,02215 +298384,Bose SoundSport Headphones,1,99.99,2019-12-13 20:17:00,383 Walnut St, Boston,MA,02215 +298385,AA Batteries (4-pack),2,3.84,2019-12-28 10:53:00,875 Jackson St, San Francisco,CA,94016 +298386,AAA Batteries (4-pack),1,2.99,2019-12-24 15:33:00,77 Washington St, Los Angeles,CA,90001 +298387,20in Monitor,1,109.99,2019-12-23 11:08:00,493 1st St, Seattle,WA,98101 +298388,AA Batteries (4-pack),1,3.84,2019-12-26 20:26:00,731 Hill St, Los Angeles,CA,90001 +298389,AAA Batteries (4-pack),1,2.99,2019-12-19 19:49:00,719 4th St, Portland,OR,97035 +298390,Flatscreen TV,1,300.0,2019-12-30 10:13:00,93 Meadow St, New York City,NY,10001 +298391,Lightning Charging Cable,1,14.95,2019-12-24 13:22:00,293 Park St, Atlanta,GA,30301 +298392,AA Batteries (4-pack),1,3.84,2019-12-09 10:25:00,746 11th St, Los Angeles,CA,90001 +298393,USB-C Charging Cable,1,11.95,2019-12-27 14:02:00,5 Main St, Boston,MA,02215 +298394,27in 4K Gaming Monitor,1,389.99,2019-12-05 14:24:00,266 Hill St, Seattle,WA,98101 +298395,27in FHD Monitor,1,149.99,2019-12-17 08:31:00,528 River St, San Francisco,CA,94016 +298396,Apple Airpods Headphones,1,150.0,2019-12-08 22:34:00,678 Spruce St, San Francisco,CA,94016 +298397,27in 4K Gaming Monitor,1,389.99,2019-12-26 17:44:00,489 Hill St, Los Angeles,CA,90001 +298398,Macbook Pro Laptop,1,1700.0,2019-12-11 14:47:00,662 Ridge St, San Francisco,CA,94016 +298399,20in Monitor,1,109.99,2019-12-31 03:14:00,165 Sunset St, San Francisco,CA,94016 +298400,AA Batteries (4-pack),1,3.84,2019-12-31 19:09:00,391 Hickory St, Los Angeles,CA,90001 +298401,USB-C Charging Cable,1,11.95,2019-12-30 23:53:00,828 Wilson St, Atlanta,GA,30301 +298402,27in FHD Monitor,1,149.99,2019-12-14 16:51:00,615 Center St, Atlanta,GA,30301 +298403,iPhone,1,700.0,2019-12-27 13:21:00,945 Center St, New York City,NY,10001 +298404,Flatscreen TV,1,300.0,2019-12-03 13:49:00,236 9th St, San Francisco,CA,94016 +298405,Bose SoundSport Headphones,1,99.99,2019-12-17 11:35:00,764 Cherry St, San Francisco,CA,94016 +298406,AAA Batteries (4-pack),2,2.99,2019-12-31 23:42:00,30 Elm St, San Francisco,CA,94016 +298407,AAA Batteries (4-pack),1,2.99,2019-12-31 16:49:00,429 Sunset St, San Francisco,CA,94016 +298408,Bose SoundSport Headphones,1,99.99,2019-12-21 13:59:00,873 4th St, Atlanta,GA,30301 +298409,AA Batteries (4-pack),1,3.84,2019-12-13 10:59:00,702 South St, Boston,MA,02215 +298410,27in FHD Monitor,1,149.99,2019-12-01 22:38:00,893 Lakeview St, New York City,NY,10001 +298411,Apple Airpods Headphones,1,150.0,2019-12-09 19:31:00,363 5th St, Austin,TX,73301 +298412,Wired Headphones,1,11.99,2019-12-27 10:06:00,902 Johnson St, Los Angeles,CA,90001 +298413,AA Batteries (4-pack),1,3.84,2019-12-03 13:46:00,307 Walnut St, Seattle,WA,98101 +298414,LG Dryer,1,600.0,2019-12-20 18:42:00,74 Willow St, Los Angeles,CA,90001 +298415,34in Ultrawide Monitor,1,379.99,2019-12-22 16:45:00,613 Dogwood St, Boston,MA,02215 +298416,Wired Headphones,1,11.99,2019-12-25 18:46:00,645 1st St, Austin,TX,73301 +298417,Lightning Charging Cable,1,14.95,2019-12-22 12:00:00,305 Lakeview St, Portland,OR,97035 +298418,USB-C Charging Cable,2,11.95,2019-12-26 06:35:00,606 Dogwood St, Dallas,TX,75001 +298419,AAA Batteries (4-pack),6,2.99,2019-12-02 08:40:00,605 13th St, Dallas,TX,75001 +298420,AA Batteries (4-pack),1,3.84,2019-12-10 14:02:00,756 Wilson St, San Francisco,CA,94016 +298421,27in 4K Gaming Monitor,1,389.99,2019-12-13 01:00:00,934 9th St, Atlanta,GA,30301 +298422,Lightning Charging Cable,1,14.95,2019-12-19 20:24:00,249 Wilson St, Dallas,TX,75001 +298423,Apple Airpods Headphones,1,150.0,2019-12-14 17:46:00,617 Lakeview St, Portland,OR,97035 +298424,Macbook Pro Laptop,1,1700.0,2019-12-03 10:14:00,742 2nd St, Austin,TX,73301 +298425,USB-C Charging Cable,1,11.95,2019-12-05 13:18:00,124 Church St, Seattle,WA,98101 +298426,LG Dryer,1,600.0,2019-12-31 07:45:00,472 Willow St, Austin,TX,73301 +298427,USB-C Charging Cable,1,11.95,2019-12-28 21:02:00,652 Lake St, Portland,OR,97035 +298428,34in Ultrawide Monitor,1,379.99,2019-12-01 14:04:00,971 North St, New York City,NY,10001 +298429,Bose SoundSport Headphones,1,99.99,2019-12-07 12:38:00,762 Ridge St, San Francisco,CA,94016 +298430,Macbook Pro Laptop,1,1700.0,2019-12-20 08:39:00,229 Lake St, Portland,OR,97035 +298431,AA Batteries (4-pack),1,3.84,2019-12-08 17:06:00,333 Johnson St, New York City,NY,10001 +298432,Bose SoundSport Headphones,1,99.99,2019-12-18 10:05:00,406 Hill St, Portland,ME,04101 +298433,USB-C Charging Cable,1,11.95,2019-12-13 07:58:00,661 Madison St, Austin,TX,73301 +298434,iPhone,1,700.0,2019-12-11 21:39:00,807 6th St, Boston,MA,02215 +298435,AA Batteries (4-pack),1,3.84,2019-12-18 16:18:00,176 Hill St, Los Angeles,CA,90001 +298436,Wired Headphones,1,11.99,2019-12-03 12:39:00,493 Adams St, Boston,MA,02215 +298437,27in FHD Monitor,1,149.99,2019-12-07 13:10:00,924 River St, Boston,MA,02215 +298438,USB-C Charging Cable,1,11.95,2019-12-31 16:35:00,73 Highland St, San Francisco,CA,94016 +298439,USB-C Charging Cable,1,11.95,2019-12-15 17:43:00,11 Main St, Seattle,WA,98101 +298440,AA Batteries (4-pack),3,3.84,2019-12-18 16:15:00,336 Walnut St, New York City,NY,10001 +298441,Apple Airpods Headphones,1,150.0,2019-12-25 00:32:00,791 Jefferson St, New York City,NY,10001 +298442,Lightning Charging Cable,2,14.95,2019-12-18 11:10:00,974 Maple St, New York City,NY,10001 +298443,Apple Airpods Headphones,1,150.0,2019-12-03 23:52:00,143 Lakeview St, New York City,NY,10001 +298444,USB-C Charging Cable,1,11.95,2019-12-24 19:36:00,32 12th St, Dallas,TX,75001 +298445,27in FHD Monitor,1,149.99,2019-12-03 21:32:00,442 Walnut St, San Francisco,CA,94016 +298446,Macbook Pro Laptop,1,1700.0,2019-12-02 23:33:00,705 Willow St, New York City,NY,10001 +298447,Lightning Charging Cable,1,14.95,2019-12-31 19:29:00,939 5th St, Austin,TX,73301 +298448,Wired Headphones,1,11.99,2019-12-12 16:56:00,85 Lake St, Austin,TX,73301 +298449,Lightning Charging Cable,1,14.95,2019-12-21 18:56:00,313 9th St, San Francisco,CA,94016 +298450,Apple Airpods Headphones,1,150.0,2019-12-01 10:05:00,312 Main St, San Francisco,CA,94016 +298451,Wired Headphones,1,11.99,2019-12-29 21:04:00,134 11th St, Boston,MA,02215 +298452,Wired Headphones,1,11.99,2019-12-31 10:07:00,764 Lake St, Los Angeles,CA,90001 +298453,AA Batteries (4-pack),1,3.84,2019-12-17 21:54:00,880 Adams St, San Francisco,CA,94016 +298454,AAA Batteries (4-pack),3,2.99,2019-12-09 10:21:00,103 Jefferson St, Los Angeles,CA,90001 +298455,20in Monitor,1,109.99,2019-12-22 09:19:00,702 Wilson St, New York City,NY,10001 +298456,Lightning Charging Cable,1,14.95,2019-12-20 17:48:00,700 Dogwood St, Boston,MA,02215 +298457,Lightning Charging Cable,1,14.95,2019-12-07 20:17:00,848 River St, San Francisco,CA,94016 +298458,iPhone,1,700.0,2019-12-04 19:02:00,371 Center St, Los Angeles,CA,90001 +298458,Wired Headphones,1,11.99,2019-12-04 19:02:00,371 Center St, Los Angeles,CA,90001 +298459,Apple Airpods Headphones,1,150.0,2019-12-29 20:02:00,145 Chestnut St, Atlanta,GA,30301 +298460,USB-C Charging Cable,1,11.95,2019-12-15 10:55:00,53 Wilson St, New York City,NY,10001 +298461,Lightning Charging Cable,1,14.95,2019-12-04 12:47:00,306 Hill St, Los Angeles,CA,90001 +298462,Flatscreen TV,1,300.0,2019-12-08 12:04:00,347 Jackson St, Seattle,WA,98101 +298463,AA Batteries (4-pack),2,3.84,2019-12-29 23:06:00,210 Adams St, San Francisco,CA,94016 +298464,Lightning Charging Cable,1,14.95,2019-12-24 20:35:00,32 14th St, New York City,NY,10001 +298464,Bose SoundSport Headphones,1,99.99,2019-12-24 20:35:00,32 14th St, New York City,NY,10001 +298465,iPhone,1,700.0,2019-12-04 17:26:00,852 Maple St, Dallas,TX,75001 +298466,27in 4K Gaming Monitor,1,389.99,2019-12-07 13:44:00,41 River St, Los Angeles,CA,90001 +298466,Wired Headphones,1,11.99,2019-12-07 13:44:00,41 River St, Los Angeles,CA,90001 +298467,AA Batteries (4-pack),1,3.84,2019-12-07 11:43:00,486 Sunset St, Seattle,WA,98101 +298468,iPhone,1,700.0,2019-12-03 13:38:00,362 Pine St, New York City,NY,10001 +298469,Bose SoundSport Headphones,1,99.99,2019-12-11 10:26:00,784 Lakeview St, San Francisco,CA,94016 +298470,Flatscreen TV,1,300.0,2019-12-12 22:11:00,98 North St, Boston,MA,02215 +298471,20in Monitor,1,109.99,2019-12-05 11:14:00,549 Meadow St, San Francisco,CA,94016 +298472,Macbook Pro Laptop,1,1700.0,2019-12-14 13:24:00,919 Jackson St, Boston,MA,02215 +298473,USB-C Charging Cable,1,11.95,2019-12-11 12:19:00,343 Hill St, San Francisco,CA,94016 +298474,AAA Batteries (4-pack),1,2.99,2019-12-30 18:54:00,149 Highland St, New York City,NY,10001 +298475,Macbook Pro Laptop,1,1700.0,2019-12-15 11:38:00,880 Maple St, New York City,NY,10001 +298475,Lightning Charging Cable,1,14.95,2019-12-15 11:38:00,880 Maple St, New York City,NY,10001 +298476,27in FHD Monitor,1,149.99,2019-12-17 16:20:00,302 Ridge St, New York City,NY,10001 +298477,Wired Headphones,1,11.99,2019-12-06 09:49:00,801 8th St, Seattle,WA,98101 +298478,Lightning Charging Cable,1,14.95,2019-12-25 09:49:00,947 Hickory St, Boston,MA,02215 +298479,Lightning Charging Cable,1,14.95,2019-12-11 09:21:00,396 8th St, San Francisco,CA,94016 +298480,AA Batteries (4-pack),2,3.84,2019-12-12 20:12:00,125 Spruce St, New York City,NY,10001 +298481,AA Batteries (4-pack),1,3.84,2019-12-13 16:35:00,583 Hill St, New York City,NY,10001 +298482,USB-C Charging Cable,1,11.95,2019-12-06 16:06:00,199 Madison St, Seattle,WA,98101 +298483,Lightning Charging Cable,1,14.95,2019-12-03 09:45:00,928 Pine St, Los Angeles,CA,90001 +298483,iPhone,1,700.0,2019-12-03 09:45:00,928 Pine St, Los Angeles,CA,90001 +298484,27in FHD Monitor,1,149.99,2019-12-29 12:57:00,30 Johnson St, Atlanta,GA,30301 +298485,20in Monitor,1,109.99,2019-12-19 14:34:00,713 Forest St, San Francisco,CA,94016 +298486,Lightning Charging Cable,1,14.95,2019-12-12 09:48:00,61 Madison St, Boston,MA,02215 +298487,AAA Batteries (4-pack),2,2.99,2019-12-07 20:46:00,378 Center St, New York City,NY,10001 +298488,Lightning Charging Cable,1,14.95,2019-12-30 11:33:00,60 Forest St, Boston,MA,02215 +298489,Macbook Pro Laptop,1,1700.0,2019-12-12 11:11:00,561 West St, Austin,TX,73301 +298490,Apple Airpods Headphones,1,150.0,2019-12-18 12:19:00,438 Chestnut St, Portland,ME,04101 +298491,34in Ultrawide Monitor,1,379.99,2019-12-06 22:40:00,259 Hill St, Los Angeles,CA,90001 +298492,Lightning Charging Cable,1,14.95,2019-12-13 00:05:00,476 13th St, San Francisco,CA,94016 +298493,AA Batteries (4-pack),1,3.84,2019-12-25 00:29:00,58 Dogwood St, Boston,MA,02215 +298494,USB-C Charging Cable,1,11.95,2019-12-02 17:41:00,175 River St, San Francisco,CA,94016 +298495,AAA Batteries (4-pack),1,2.99,2019-12-03 12:11:00,628 Main St, New York City,NY,10001 +298496,USB-C Charging Cable,1,11.95,2019-12-03 09:11:00,549 Meadow St, Boston,MA,02215 +298497,iPhone,1,700.0,2019-12-13 11:57:00,388 Lincoln St, Atlanta,GA,30301 +298498,Lightning Charging Cable,1,14.95,2019-12-11 14:29:00,337 5th St, Austin,TX,73301 +298499,Lightning Charging Cable,1,14.95,2019-12-31 09:30:00,868 Cedar St, San Francisco,CA,94016 +298500,Lightning Charging Cable,1,14.95,2019-12-11 11:51:00,89 Lincoln St, New York City,NY,10001 +298501,AA Batteries (4-pack),1,3.84,2019-12-02 14:50:00,130 5th St, Seattle,WA,98101 +298502,Wired Headphones,1,11.99,2019-12-22 23:31:00,114 6th St, Seattle,WA,98101 +298503,AA Batteries (4-pack),2,3.84,2019-12-27 18:30:00,981 10th St, Portland,ME,04101 +298504,AAA Batteries (4-pack),1,2.99,2019-12-30 12:25:00,946 Pine St, Seattle,WA,98101 +298505,AA Batteries (4-pack),3,3.84,2019-12-16 01:37:00,860 Maple St, Los Angeles,CA,90001 +298506,AAA Batteries (4-pack),1,2.99,2019-12-17 23:23:00,382 11th St, Portland,OR,97035 +298507,AA Batteries (4-pack),1,3.84,2019-12-12 00:12:00,733 12th St, San Francisco,CA,94016 +298508,Vareebadd Phone,1,400.0,2019-12-30 19:23:00,377 Elm St, Austin,TX,73301 +298508,USB-C Charging Cable,1,11.95,2019-12-30 19:23:00,377 Elm St, Austin,TX,73301 +298509,Macbook Pro Laptop,1,1700.0,2019-12-12 02:12:00,411 Lake St, Portland,OR,97035 +298510,Wired Headphones,1,11.99,2019-12-04 13:58:00,810 Willow St, New York City,NY,10001 +298511,Lightning Charging Cable,2,14.95,2019-12-04 17:21:00,660 Walnut St, San Francisco,CA,94016 +298512,Apple Airpods Headphones,1,150.0,2019-12-11 00:28:00,675 Elm St, Seattle,WA,98101 +298513,Lightning Charging Cable,1,14.95,2019-12-14 10:23:00,233 Elm St, Dallas,TX,75001 +298514,Lightning Charging Cable,1,14.95,2019-12-28 19:25:00,573 Main St, Portland,OR,97035 +298515,34in Ultrawide Monitor,1,379.99,2019-12-27 08:42:00,577 10th St, Los Angeles,CA,90001 +298516,AA Batteries (4-pack),2,3.84,2019-12-13 18:17:00,543 Park St, Atlanta,GA,30301 +298517,Bose SoundSport Headphones,1,99.99,2019-12-14 16:52:00,298 Johnson St, New York City,NY,10001 +298518,AAA Batteries (4-pack),2,2.99,2019-12-22 12:00:00,467 Elm St, Boston,MA,02215 +298519,Lightning Charging Cable,1,14.95,2019-12-04 13:56:00,703 North St, San Francisco,CA,94016 +298520,Wired Headphones,2,11.99,2019-12-27 15:17:00,604 12th St, New York City,NY,10001 +298521,AAA Batteries (4-pack),1,2.99,2019-12-15 17:16:00,421 12th St, Austin,TX,73301 +298522,Vareebadd Phone,1,400.0,2019-12-06 15:59:00,365 Lakeview St, Atlanta,GA,30301 +298523,USB-C Charging Cable,1,11.95,2019-12-04 11:34:00,234 Hickory St, San Francisco,CA,94016 +298524,LG Dryer,1,600.0,2019-12-29 13:04:00,886 9th St, San Francisco,CA,94016 +298525,Wired Headphones,1,11.99,2019-12-21 23:18:00,618 Forest St, Boston,MA,02215 +298526,AA Batteries (4-pack),1,3.84,2019-12-15 18:31:00,221 Pine St, New York City,NY,10001 +298527,Lightning Charging Cable,1,14.95,2019-12-02 22:31:00,237 South St, Los Angeles,CA,90001 +298528,Flatscreen TV,1,300.0,2019-12-30 23:50:00,851 Cherry St, Seattle,WA,98101 +298529,Lightning Charging Cable,1,14.95,2019-12-29 22:13:00,374 5th St, Austin,TX,73301 +298530,Bose SoundSport Headphones,1,99.99,2019-12-30 18:12:00,529 Lincoln St, San Francisco,CA,94016 +298531,Macbook Pro Laptop,1,1700.0,2019-12-04 19:16:00,344 Adams St, San Francisco,CA,94016 +298532,AAA Batteries (4-pack),1,2.99,2019-12-10 15:32:00,490 6th St, San Francisco,CA,94016 +298533,AAA Batteries (4-pack),1,2.99,2019-12-30 18:08:00,398 Elm St, Los Angeles,CA,90001 +298534,AAA Batteries (4-pack),1,2.99,2019-12-30 10:30:00,672 Church St, San Francisco,CA,94016 +298535,Wired Headphones,1,11.99,2019-12-12 20:37:00,543 Walnut St, Atlanta,GA,30301 +298536,Wired Headphones,1,11.99,2019-12-01 13:24:00,121 4th St, New York City,NY,10001 +298537,USB-C Charging Cable,1,11.95,2019-12-10 19:45:00,479 4th St, Los Angeles,CA,90001 +298538,Apple Airpods Headphones,1,150.0,2019-12-05 11:23:00,729 Elm St, San Francisco,CA,94016 +298539,USB-C Charging Cable,1,11.95,2019-12-12 13:30:00,507 Cherry St, Boston,MA,02215 +298540,Flatscreen TV,1,300.0,2019-12-10 20:32:00,908 6th St, Los Angeles,CA,90001 +298541,Bose SoundSport Headphones,1,99.99,2019-12-03 09:05:00,762 Highland St, Los Angeles,CA,90001 +298542,Bose SoundSport Headphones,1,99.99,2019-12-05 11:54:00,174 6th St, Atlanta,GA,30301 +298543,Flatscreen TV,1,300.0,2019-12-16 11:05:00,787 4th St, Los Angeles,CA,90001 +298544,Wired Headphones,1,11.99,2019-12-26 00:11:00,649 South St, Atlanta,GA,30301 +298545,Lightning Charging Cable,1,14.95,2019-12-24 19:46:00,594 Adams St, Portland,ME,04101 +298546,Lightning Charging Cable,1,14.95,2019-12-03 13:04:00,719 7th St, Los Angeles,CA,90001 +298547,iPhone,1,700.0,2019-12-10 15:05:00,6 Maple St, Dallas,TX,75001 +298548,AAA Batteries (4-pack),1,2.99,2019-12-27 08:52:00,265 Church St, San Francisco,CA,94016 +298549,AA Batteries (4-pack),1,3.84,2019-12-07 15:08:00,101 10th St, Atlanta,GA,30301 +298550,Bose SoundSport Headphones,1,99.99,2019-12-10 11:39:00,699 Johnson St, Los Angeles,CA,90001 +298551,Flatscreen TV,1,300.0,2019-12-13 11:41:00,449 9th St, New York City,NY,10001 +298552,Apple Airpods Headphones,1,150.0,2019-12-06 08:22:00,56 Church St, Los Angeles,CA,90001 +298553,AA Batteries (4-pack),1,3.84,2019-12-17 13:19:00,418 10th St, San Francisco,CA,94016 +298554,Wired Headphones,2,11.99,2019-12-27 13:21:00,106 12th St, San Francisco,CA,94016 +298555,Wired Headphones,1,11.99,2019-12-18 14:56:00,675 Madison St, San Francisco,CA,94016 +298556,Wired Headphones,1,11.99,2019-12-14 17:24:00,87 Dogwood St, Dallas,TX,75001 +298557,Lightning Charging Cable,1,14.95,2019-12-01 20:03:00,577 7th St, Los Angeles,CA,90001 +298558,Lightning Charging Cable,1,14.95,2019-12-24 11:54:00,980 Jefferson St, Dallas,TX,75001 +298559,AAA Batteries (4-pack),1,2.99,2019-12-28 08:09:00,555 5th St, San Francisco,CA,94016 +298560,Bose SoundSport Headphones,1,99.99,2019-12-28 14:47:00,356 7th St, Portland,OR,97035 +298561,27in 4K Gaming Monitor,1,389.99,2019-12-11 19:41:00,806 1st St, San Francisco,CA,94016 +298562,iPhone,1,700.0,2019-12-17 10:43:00,202 Spruce St, San Francisco,CA,94016 +298563,USB-C Charging Cable,1,11.95,2019-12-31 20:10:00,22 12th St, Dallas,TX,75001 +298564,Macbook Pro Laptop,1,1700.0,2019-12-10 19:43:00,170 West St, San Francisco,CA,94016 +298565,Lightning Charging Cable,1,14.95,2019-12-30 09:12:00,196 North St, Los Angeles,CA,90001 +298566,Macbook Pro Laptop,1,1700.0,2019-12-03 18:59:00,43 Cedar St, Boston,MA,02215 +298567,Lightning Charging Cable,1,14.95,2019-12-07 14:15:00,875 Willow St, Los Angeles,CA,90001 +298568,Wired Headphones,2,11.99,2019-12-20 19:49:00,159 Pine St, Boston,MA,02215 +298569,Apple Airpods Headphones,1,150.0,2019-12-25 13:32:00,662 5th St, Boston,MA,02215 +298570,AA Batteries (4-pack),2,3.84,2019-12-07 10:18:00,268 Hill St, Atlanta,GA,30301 +298571,Lightning Charging Cable,1,14.95,2019-12-28 17:55:00,546 Sunset St, Los Angeles,CA,90001 +298572,27in 4K Gaming Monitor,1,389.99,2019-12-15 12:41:00,498 9th St, Austin,TX,73301 +298573,Lightning Charging Cable,1,14.95,2019-12-03 11:32:00,421 Center St, Portland,OR,97035 +298574,27in FHD Monitor,1,149.99,2019-12-12 12:19:00,567 Walnut St, Atlanta,GA,30301 +298575,Lightning Charging Cable,1,14.95,2019-12-17 19:44:00,82 Ridge St, Portland,OR,97035 +298576,Wired Headphones,1,11.99,2019-12-05 16:16:00,692 13th St, Los Angeles,CA,90001 +298577,Lightning Charging Cable,1,14.95,2019-12-06 06:43:00,421 Church St, Portland,OR,97035 +298578,AA Batteries (4-pack),2,3.84,2019-12-18 18:58:00,348 Hill St, New York City,NY,10001 +298579,Wired Headphones,1,11.99,2019-12-02 20:08:00,722 9th St, New York City,NY,10001 +298580,Wired Headphones,1,11.99,2019-12-08 08:00:00,428 South St, Los Angeles,CA,90001 +298581,Apple Airpods Headphones,1,150.0,2019-12-12 18:18:00,896 Hill St, New York City,NY,10001 +298582,20in Monitor,1,109.99,2019-12-25 14:43:00,750 Lake St, San Francisco,CA,94016 +298583,Macbook Pro Laptop,1,1700.0,2019-12-11 11:27:00,934 2nd St, Boston,MA,02215 +298584,USB-C Charging Cable,1,11.95,2019-12-27 10:44:00,625 Highland St, Los Angeles,CA,90001 +298585,27in 4K Gaming Monitor,1,389.99,2019-12-29 11:19:00,231 Hill St, San Francisco,CA,94016 +298586,AAA Batteries (4-pack),4,2.99,2019-12-19 14:32:00,351 Park St, Los Angeles,CA,90001 +298587,USB-C Charging Cable,3,11.95,2019-12-19 13:06:00,917 South St, Los Angeles,CA,90001 +298588,Flatscreen TV,1,300.0,2019-12-13 12:08:00,368 6th St, Boston,MA,02215 +298589,AAA Batteries (4-pack),4,2.99,2019-12-09 16:27:00,532 2nd St, Dallas,TX,75001 +298590,27in FHD Monitor,1,149.99,2019-12-21 14:23:00,868 Lakeview St, New York City,NY,10001 +298591,AAA Batteries (4-pack),1,2.99,2019-12-19 01:00:00,238 Cedar St, San Francisco,CA,94016 +298592,AAA Batteries (4-pack),1,2.99,2019-12-10 10:17:00,824 Adams St, Dallas,TX,75001 +298593,34in Ultrawide Monitor,1,379.99,2019-12-31 10:16:00,515 Adams St, Los Angeles,CA,90001 +298594,AAA Batteries (4-pack),1,2.99,2019-12-23 13:11:00,665 Cherry St, San Francisco,CA,94016 +298595,34in Ultrawide Monitor,1,379.99,2019-12-02 10:55:00,575 Highland St, Los Angeles,CA,90001 +298596,AAA Batteries (4-pack),1,2.99,2019-12-24 18:45:00,118 Center St, San Francisco,CA,94016 +298597,USB-C Charging Cable,1,11.95,2019-12-21 08:52:00,527 South St, Portland,OR,97035 +298598,Wired Headphones,2,11.99,2019-12-19 21:16:00,22 River St, San Francisco,CA,94016 +298599,Lightning Charging Cable,1,14.95,2019-12-14 22:03:00,200 Spruce St, Boston,MA,02215 +298600,AA Batteries (4-pack),2,3.84,2019-12-12 15:46:00,809 South St, Boston,MA,02215 +298601,Lightning Charging Cable,1,14.95,2019-12-20 12:53:00,525 Lincoln St, San Francisco,CA,94016 +298602,Apple Airpods Headphones,1,150.0,2019-12-11 10:57:00,491 Cherry St, Portland,OR,97035 +298603,Flatscreen TV,1,300.0,2019-12-29 16:21:00,733 4th St, San Francisco,CA,94016 +298604,Bose SoundSport Headphones,1,99.99,2019-12-17 07:13:00,406 Jackson St, Portland,OR,97035 +298605,Macbook Pro Laptop,1,1700.0,2019-12-14 16:26:00,142 West St, Boston,MA,02215 +298606,USB-C Charging Cable,1,11.95,2019-12-31 21:40:00,675 10th St, Los Angeles,CA,90001 +298607,Bose SoundSport Headphones,1,99.99,2019-12-31 10:19:00,135 Elm St, Boston,MA,02215 +298608,27in 4K Gaming Monitor,1,389.99,2019-12-12 21:12:00,438 Main St, San Francisco,CA,94016 +298609,Apple Airpods Headphones,1,150.0,2019-12-17 10:13:00,847 Main St, San Francisco,CA,94016 +298610,Lightning Charging Cable,1,14.95,2019-12-16 19:43:00,272 5th St, San Francisco,CA,94016 +298611,Flatscreen TV,1,300.0,2019-12-29 21:11:00,949 6th St, Portland,OR,97035 +298612,20in Monitor,1,109.99,2019-12-02 15:19:00,969 7th St, Seattle,WA,98101 +298613,Lightning Charging Cable,1,14.95,2019-12-31 11:30:00,423 11th St, San Francisco,CA,94016 +298614,Google Phone,1,600.0,2019-12-01 09:25:00,9 Dogwood St, New York City,NY,10001 +298615,Lightning Charging Cable,1,14.95,2019-12-27 19:13:00,945 North St, Portland,OR,97035 +298616,Wired Headphones,1,11.99,2019-12-09 21:43:00,755 Dogwood St, New York City,NY,10001 +298617,Lightning Charging Cable,1,14.95,2019-12-25 21:08:00,873 Adams St, New York City,NY,10001 +298618,Wired Headphones,1,11.99,2019-12-24 12:59:00,345 10th St, Dallas,TX,75001 +298619,Wired Headphones,1,11.99,2019-12-08 15:51:00,5 10th St, Los Angeles,CA,90001 +298620,USB-C Charging Cable,1,11.95,2019-12-30 08:57:00,43 Wilson St, New York City,NY,10001 +298621,USB-C Charging Cable,2,11.95,2019-12-14 20:46:00,125 1st St, San Francisco,CA,94016 +298622,ThinkPad Laptop,1,999.99,2019-12-12 08:03:00,332 Hill St, New York City,NY,10001 +298623,Apple Airpods Headphones,1,150.0,2019-12-03 21:10:00,691 11th St, Seattle,WA,98101 +298624,Lightning Charging Cable,1,14.95,2019-12-07 10:13:00,504 14th St, Portland,OR,97035 +298625,LG Dryer,1,600.0,2019-12-25 21:34:00,460 Ridge St, Dallas,TX,75001 +298626,AAA Batteries (4-pack),1,2.99,2019-12-17 13:07:00,961 Dogwood St, New York City,NY,10001 +298627,Bose SoundSport Headphones,1,99.99,2019-12-05 18:45:00,185 Madison St, San Francisco,CA,94016 +298628,Google Phone,1,600.0,2019-12-08 11:20:00,883 10th St, Atlanta,GA,30301 +298629,Lightning Charging Cable,1,14.95,2019-12-12 20:39:00,893 8th St, Los Angeles,CA,90001 +298630,Lightning Charging Cable,1,14.95,2019-12-08 05:45:00,807 2nd St, San Francisco,CA,94016 +298631,AAA Batteries (4-pack),1,2.99,2019-12-25 21:41:00,596 Jackson St, Dallas,TX,75001 +298632,USB-C Charging Cable,1,11.95,2019-12-24 08:40:00,538 Sunset St, San Francisco,CA,94016 +298633,34in Ultrawide Monitor,1,379.99,2019-12-07 18:40:00,300 Pine St, Boston,MA,02215 +298634,AA Batteries (4-pack),1,3.84,2019-12-05 12:17:00,554 5th St, San Francisco,CA,94016 +298635,Wired Headphones,1,11.99,2019-12-01 14:41:00,104 14th St, Austin,TX,73301 +298636,Macbook Pro Laptop,1,1700.0,2019-12-23 16:38:00,972 14th St, Portland,OR,97035 +298637,Bose SoundSport Headphones,1,99.99,2019-12-30 20:34:00,787 Cedar St, Los Angeles,CA,90001 +298638,Apple Airpods Headphones,1,150.0,2019-12-27 12:30:00,289 Forest St, Boston,MA,02215 +298639,AAA Batteries (4-pack),1,2.99,2019-12-31 12:14:00,469 Highland St, Dallas,TX,75001 +298640,AA Batteries (4-pack),2,3.84,2019-12-19 11:45:00,315 Wilson St, Los Angeles,CA,90001 +298641,AA Batteries (4-pack),1,3.84,2019-12-25 11:15:00,403 Lake St, Los Angeles,CA,90001 +298642,AAA Batteries (4-pack),1,2.99,2019-12-31 13:04:00,420 Meadow St, Boston,MA,02215 +298643,Macbook Pro Laptop,1,1700.0,2019-12-04 18:11:00,466 6th St, Seattle,WA,98101 +298644,Bose SoundSport Headphones,1,99.99,2019-12-26 09:27:00,526 Forest St, San Francisco,CA,94016 +298645,Google Phone,1,600.0,2019-12-20 15:45:00,75 Spruce St, San Francisco,CA,94016 +298646,Flatscreen TV,1,300.0,2019-12-04 17:28:00,177 Washington St, Atlanta,GA,30301 +298647,AA Batteries (4-pack),1,3.84,2019-12-18 11:02:00,665 North St, Portland,OR,97035 +298648,Wired Headphones,1,11.99,2019-12-10 06:07:00,423 Lake St, Portland,OR,97035 +298649,Lightning Charging Cable,1,14.95,2019-12-20 22:00:00,455 Madison St, Boston,MA,02215 +298650,ThinkPad Laptop,1,999.99,2019-12-26 13:37:00,611 Elm St, Atlanta,GA,30301 +298651,Lightning Charging Cable,1,14.95,2019-12-27 23:42:00,796 Washington St, Seattle,WA,98101 +298652,Wired Headphones,1,11.99,2019-12-23 10:55:00,20 Center St, Los Angeles,CA,90001 +298652,USB-C Charging Cable,1,11.95,2019-12-23 10:55:00,20 Center St, Los Angeles,CA,90001 +298653,Macbook Pro Laptop,1,1700.0,2019-12-04 18:10:00,377 Willow St, New York City,NY,10001 +298654,AA Batteries (4-pack),1,3.84,2019-12-19 10:10:00,980 Pine St, Los Angeles,CA,90001 +298655,Google Phone,1,600.0,2019-12-03 20:32:00,770 Maple St, San Francisco,CA,94016 +298656,Google Phone,1,600.0,2019-12-06 13:51:00,718 North St, San Francisco,CA,94016 +298657,Lightning Charging Cable,1,14.95,2019-12-01 18:22:00,428 12th St, Atlanta,GA,30301 +298658,iPhone,1,700.0,2019-12-11 14:51:00,388 Washington St, San Francisco,CA,94016 +298658,Apple Airpods Headphones,1,150.0,2019-12-11 14:51:00,388 Washington St, San Francisco,CA,94016 +298659,27in FHD Monitor,1,149.99,2019-12-26 19:26:00,278 Park St, Austin,TX,73301 +298660,Wired Headphones,1,11.99,2019-12-10 12:57:00,781 5th St, Los Angeles,CA,90001 +298661,Apple Airpods Headphones,1,150.0,2019-12-16 19:28:00,967 Lincoln St, New York City,NY,10001 +298662,Google Phone,1,600.0,2019-12-09 09:39:00,54 Hickory St, San Francisco,CA,94016 +298662,USB-C Charging Cable,1,11.95,2019-12-09 09:39:00,54 Hickory St, San Francisco,CA,94016 +298663,27in 4K Gaming Monitor,1,389.99,2019-12-19 21:23:00,186 Jackson St, Seattle,WA,98101 +298664,AAA Batteries (4-pack),1,2.99,2019-12-30 13:32:00,873 Willow St, San Francisco,CA,94016 +298665,LG Washing Machine,1,600.0,2019-12-20 18:16:00,450 11th St, Seattle,WA,98101 +298666,USB-C Charging Cable,1,11.95,2019-12-18 12:39:00,334 Johnson St, Los Angeles,CA,90001 +298667,ThinkPad Laptop,1,999.99,2019-12-30 13:38:00,444 Elm St, San Francisco,CA,94016 +298668,Bose SoundSport Headphones,1,99.99,2019-12-30 14:23:00,420 Sunset St, San Francisco,CA,94016 +298669,AA Batteries (4-pack),1,3.84,2019-12-31 21:45:00,610 8th St, San Francisco,CA,94016 +298670,27in 4K Gaming Monitor,1,389.99,2019-12-02 20:48:00,688 8th St, San Francisco,CA,94016 +298671,Lightning Charging Cable,1,14.95,2019-12-08 23:08:00,678 Wilson St, San Francisco,CA,94016 +298672,Lightning Charging Cable,1,14.95,2019-12-22 19:30:00,915 Cherry St, New York City,NY,10001 +298673,Bose SoundSport Headphones,1,99.99,2019-12-14 11:51:00,919 Sunset St, Seattle,WA,98101 +298674,Lightning Charging Cable,3,14.95,2019-12-06 22:23:00,720 12th St, Atlanta,GA,30301 +298675,ThinkPad Laptop,1,999.99,2019-12-02 19:12:00,925 8th St, New York City,NY,10001 +298676,Google Phone,1,600.0,2019-12-16 10:54:00,383 Johnson St, Atlanta,GA,30301 +298677,USB-C Charging Cable,1,11.95,2019-12-25 10:31:00,421 Elm St, San Francisco,CA,94016 +298678,20in Monitor,1,109.99,2019-12-24 08:32:00,682 14th St, San Francisco,CA,94016 +298679,Wired Headphones,1,11.99,2019-12-08 11:32:00,851 River St, Los Angeles,CA,90001 +298680,Lightning Charging Cable,2,14.95,2019-12-11 08:15:00,563 River St, Seattle,WA,98101 +298681,AAA Batteries (4-pack),1,2.99,2019-12-12 22:02:00,232 1st St, San Francisco,CA,94016 +298682,AAA Batteries (4-pack),1,2.99,2019-12-25 16:16:00,101 Church St, San Francisco,CA,94016 +298682,Apple Airpods Headphones,1,150.0,2019-12-25 16:16:00,101 Church St, San Francisco,CA,94016 +298683,Apple Airpods Headphones,1,150.0,2019-12-31 15:34:00,741 10th St, San Francisco,CA,94016 +298684,AA Batteries (4-pack),1,3.84,2019-12-10 16:56:00,711 Spruce St, San Francisco,CA,94016 +298685,AAA Batteries (4-pack),1,2.99,2019-12-10 18:40:00,414 Main St, Dallas,TX,75001 +298686,34in Ultrawide Monitor,1,379.99,2019-12-01 21:33:00,282 Ridge St, Dallas,TX,75001 +298687,27in 4K Gaming Monitor,1,389.99,2019-12-25 21:30:00,632 West St, Austin,TX,73301 +298688,AAA Batteries (4-pack),1,2.99,2019-12-04 11:26:00,376 Lakeview St, Los Angeles,CA,90001 +298689,34in Ultrawide Monitor,1,379.99,2019-12-13 22:26:00,187 13th St, Los Angeles,CA,90001 +298690,Apple Airpods Headphones,1,150.0,2019-12-29 06:43:00,606 Washington St, Los Angeles,CA,90001 +298691,Flatscreen TV,1,300.0,2019-12-31 19:56:00,345 Forest St, Portland,OR,97035 +298692,AAA Batteries (4-pack),1,2.99,2019-12-06 13:39:00,498 13th St, Dallas,TX,75001 +298692,ThinkPad Laptop,1,999.99,2019-12-06 13:39:00,498 13th St, Dallas,TX,75001 +298693,Apple Airpods Headphones,1,150.0,2019-12-22 16:57:00,299 Church St, Boston,MA,02215 +298694,Flatscreen TV,1,300.0,2019-12-24 22:26:00,626 Park St, Portland,OR,97035 +298695,AAA Batteries (4-pack),3,2.99,2019-12-26 13:05:00,166 Willow St, Atlanta,GA,30301 +298696,Flatscreen TV,1,300.0,2019-12-17 19:56:00,145 Wilson St, San Francisco,CA,94016 +298697,Wired Headphones,1,11.99,2019-12-27 01:13:00,24 Elm St, Portland,ME,04101 +298698,AA Batteries (4-pack),1,3.84,2019-12-23 05:00:00,616 Washington St, San Francisco,CA,94016 +298698,Lightning Charging Cable,1,14.95,2019-12-23 05:00:00,616 Washington St, San Francisco,CA,94016 +298699,USB-C Charging Cable,2,11.95,2019-12-14 09:25:00,129 Lake St, Boston,MA,02215 +298700,AA Batteries (4-pack),1,3.84,2019-12-29 08:49:00,88 Hill St, Dallas,TX,75001 +298701,27in FHD Monitor,1,149.99,2019-12-02 14:14:00,390 Lakeview St, Dallas,TX,75001 +298702,Wired Headphones,1,11.99,2019-12-30 17:35:00,47 1st St, Austin,TX,73301 +298703,Lightning Charging Cable,1,14.95,2019-12-28 16:13:00,704 13th St, Los Angeles,CA,90001 +298704,AA Batteries (4-pack),1,3.84,2019-12-12 09:48:00,864 Wilson St, Portland,OR,97035 +298705,AAA Batteries (4-pack),1,2.99,2019-12-05 17:56:00,142 Lake St, Austin,TX,73301 +298706,USB-C Charging Cable,1,11.95,2019-12-18 22:01:00,47 11th St, San Francisco,CA,94016 +298707,AA Batteries (4-pack),1,3.84,2019-12-17 16:34:00,644 Johnson St, Atlanta,GA,30301 +298708,Apple Airpods Headphones,1,150.0,2019-12-18 19:02:00,650 West St, New York City,NY,10001 +298709,Apple Airpods Headphones,1,150.0,2019-12-23 01:12:00,355 Madison St, Boston,MA,02215 +298710,Flatscreen TV,1,300.0,2019-12-19 19:22:00,489 12th St, Atlanta,GA,30301 +298711,LG Dryer,1,600.0,2019-12-31 11:32:00,952 4th St, Boston,MA,02215 +298712,AAA Batteries (4-pack),1,2.99,2019-12-12 09:48:00,383 Hickory St, Dallas,TX,75001 +298713,AAA Batteries (4-pack),1,2.99,2019-12-31 12:20:00,868 Highland St, Los Angeles,CA,90001 +298714,AAA Batteries (4-pack),1,2.99,2019-12-13 10:23:00,644 Ridge St, San Francisco,CA,94016 +298715,Lightning Charging Cable,2,14.95,2019-12-19 22:23:00,85 1st St, Boston,MA,02215 +298716,iPhone,1,700.0,2019-12-19 19:38:00,724 14th St, Seattle,WA,98101 +298717,AA Batteries (4-pack),2,3.84,2019-12-18 23:09:00,599 Washington St, San Francisco,CA,94016 +298718,Lightning Charging Cable,1,14.95,2019-12-23 15:16:00,109 Sunset St, Portland,ME,04101 +298719,AAA Batteries (4-pack),2,2.99,2019-12-01 15:00:00,910 Walnut St, San Francisco,CA,94016 +298720,Wired Headphones,1,11.99,2019-12-12 05:01:00,865 Johnson St, New York City,NY,10001 +298721,AA Batteries (4-pack),1,3.84,2019-12-23 09:00:00,82 Willow St, Dallas,TX,75001 +298722,AAA Batteries (4-pack),1,2.99,2019-12-22 15:26:00,241 7th St, Los Angeles,CA,90001 +298723,Apple Airpods Headphones,1,150.0,2019-12-26 14:30:00,641 Lincoln St, Boston,MA,02215 +298724,Google Phone,1,600.0,2019-12-28 09:16:00,728 Forest St, San Francisco,CA,94016 +298725,20in Monitor,1,109.99,2019-12-26 12:04:00,226 Meadow St, Austin,TX,73301 +298726,AAA Batteries (4-pack),2,2.99,2019-12-04 13:21:00,592 Church St, Los Angeles,CA,90001 +298727,USB-C Charging Cable,1,11.95,2019-12-23 12:09:00,55 Main St, Portland,OR,97035 +298728,Wired Headphones,1,11.99,2019-12-12 13:02:00,926 Hickory St, New York City,NY,10001 +298729,20in Monitor,1,109.99,2019-12-10 14:32:00,39 Highland St, Boston,MA,02215 +298730,iPhone,1,700.0,2019-12-22 22:31:00,265 11th St, Dallas,TX,75001 +298731,27in FHD Monitor,1,149.99,2019-12-12 22:12:00,195 5th St, New York City,NY,10001 +298732,Vareebadd Phone,1,400.0,2019-12-16 11:59:00,122 Elm St, Atlanta,GA,30301 +298732,Bose SoundSport Headphones,1,99.99,2019-12-16 11:59:00,122 Elm St, Atlanta,GA,30301 +298733,AAA Batteries (4-pack),2,2.99,2019-12-31 11:30:00,453 7th St, Boston,MA,02215 +298734,Google Phone,1,600.0,2019-12-16 15:29:00,964 Center St, Austin,TX,73301 +298734,USB-C Charging Cable,1,11.95,2019-12-16 15:29:00,964 Center St, Austin,TX,73301 +298735,Lightning Charging Cable,1,14.95,2019-12-18 17:50:00,869 Lincoln St, San Francisco,CA,94016 +298736,Wired Headphones,1,11.99,2019-12-22 17:32:00,797 2nd St, Boston,MA,02215 +298737,LG Washing Machine,1,600.0,2019-12-02 17:08:00,533 Jackson St, San Francisco,CA,94016 +298738,AAA Batteries (4-pack),4,2.99,2019-12-26 10:06:00,591 Main St, Los Angeles,CA,90001 +298739,Lightning Charging Cable,1,14.95,2019-12-19 17:37:00,190 Jackson St, Los Angeles,CA,90001 +298740,AAA Batteries (4-pack),1,2.99,2019-12-16 13:46:00,309 Church St, Austin,TX,73301 +298741,USB-C Charging Cable,2,11.95,2019-12-11 19:31:00,688 Hill St, Atlanta,GA,30301 +298742,Lightning Charging Cable,1,14.95,2019-12-19 09:55:00,737 Washington St, San Francisco,CA,94016 +298743,Google Phone,1,600.0,2019-12-01 21:05:00,764 Johnson St, Austin,TX,73301 +298744,Macbook Pro Laptop,1,1700.0,2019-12-26 13:42:00,37 Park St, San Francisco,CA,94016 +298744,Google Phone,1,600.0,2019-12-26 13:42:00,37 Park St, San Francisco,CA,94016 +298745,Macbook Pro Laptop,1,1700.0,2019-12-27 08:58:00,903 11th St, Atlanta,GA,30301 +298746,AAA Batteries (4-pack),2,2.99,2019-12-14 18:24:00,808 Forest St, Los Angeles,CA,90001 +298747,USB-C Charging Cable,1,11.95,2019-12-15 09:24:00,630 North St, Portland,OR,97035 +298748,AAA Batteries (4-pack),1,2.99,2019-12-22 12:48:00,797 13th St, Los Angeles,CA,90001 +298749,Apple Airpods Headphones,1,150.0,2019-12-22 19:37:00,675 Pine St, San Francisco,CA,94016 +298750,AA Batteries (4-pack),1,3.84,2019-12-11 20:04:00,864 Spruce St, Seattle,WA,98101 +298751,Lightning Charging Cable,1,14.95,2019-12-12 11:55:00,5 Jefferson St, New York City,NY,10001 +298752,AA Batteries (4-pack),1,3.84,2019-12-23 19:23:00,307 2nd St, San Francisco,CA,94016 +298753,AA Batteries (4-pack),1,3.84,2019-12-25 11:12:00,522 1st St, Seattle,WA,98101 +298754,34in Ultrawide Monitor,1,379.99,2019-12-09 08:04:00,858 North St, Portland,OR,97035 +298755,Wired Headphones,1,11.99,2019-12-30 09:36:00,207 4th St, Boston,MA,02215 +298756,Wired Headphones,1,11.99,2019-12-19 18:07:00,804 Jefferson St, Los Angeles,CA,90001 +298757,USB-C Charging Cable,1,11.95,2019-12-23 23:08:00,253 Hickory St, San Francisco,CA,94016 +298758,USB-C Charging Cable,1,11.95,2019-12-27 21:57:00,892 13th St, New York City,NY,10001 +298759,AA Batteries (4-pack),3,3.84,2019-12-05 12:54:00,756 Lincoln St, Atlanta,GA,30301 +298760,Bose SoundSport Headphones,1,99.99,2019-12-14 15:57:00,632 1st St, Boston,MA,02215 +298761,Wired Headphones,1,11.99,2019-12-23 19:41:00,784 Wilson St, Seattle,WA,98101 +298762,AA Batteries (4-pack),2,3.84,2019-12-05 15:55:00,807 Cedar St, Boston,MA,02215 +298763,Wired Headphones,1,11.99,2019-12-26 22:40:00,91 6th St, Boston,MA,02215 +298764,AAA Batteries (4-pack),3,2.99,2019-12-10 10:48:00,311 North St, Portland,ME,04101 +298765,27in FHD Monitor,1,149.99,2019-12-10 14:13:00,5 Cedar St, Boston,MA,02215 +298766,AAA Batteries (4-pack),1,2.99,2019-12-27 09:22:00,728 Hickory St, Boston,MA,02215 +298767,Lightning Charging Cable,2,14.95,2019-12-05 06:33:00,520 Church St, Los Angeles,CA,90001 +298768,Lightning Charging Cable,1,14.95,2019-12-20 16:22:00,779 Center St, Portland,OR,97035 +298769,Wired Headphones,1,11.99,2019-12-15 19:15:00,512 West St, Los Angeles,CA,90001 +298770,Google Phone,1,600.0,2019-12-13 22:00:00,585 Hickory St, San Francisco,CA,94016 +298771,Vareebadd Phone,1,400.0,2019-12-27 21:12:00,988 7th St, Dallas,TX,75001 +298772,AAA Batteries (4-pack),1,2.99,2019-12-01 20:20:00,298 Cedar St, Portland,OR,97035 +298773,Apple Airpods Headphones,1,150.0,2019-12-23 01:47:00,788 13th St, Los Angeles,CA,90001 +298774,AAA Batteries (4-pack),1,2.99,2019-12-13 16:21:00,235 11th St, Boston,MA,02215 +298775,AA Batteries (4-pack),1,3.84,2019-12-07 10:33:00,786 5th St, Portland,OR,97035 +298776,AA Batteries (4-pack),1,3.84,2019-12-13 20:39:00,744 Cherry St, Los Angeles,CA,90001 +298777,Wired Headphones,1,11.99,2019-12-01 19:52:00,255 Adams St, Portland,OR,97035 +298778,USB-C Charging Cable,2,11.95,2019-12-29 15:27:00,867 4th St, Los Angeles,CA,90001 +298779,Bose SoundSport Headphones,1,99.99,2019-12-19 00:00:00,305 Wilson St, New York City,NY,10001 +298780,AAA Batteries (4-pack),1,2.99,2019-12-15 21:10:00,59 Madison St, Boston,MA,02215 +298781,AAA Batteries (4-pack),2,2.99,2019-12-01 15:59:00,978 Meadow St, Austin,TX,73301 +298782,Bose SoundSport Headphones,1,99.99,2019-12-03 21:06:00,686 1st St, Seattle,WA,98101 +298783,AA Batteries (4-pack),1,3.84,2019-12-04 11:18:00,798 Hill St, San Francisco,CA,94016 +298784,Flatscreen TV,1,300.0,2019-12-28 01:18:00,203 7th St, New York City,NY,10001 +298785,USB-C Charging Cable,1,11.95,2019-12-18 11:24:00,868 Forest St, Austin,TX,73301 +298786,Lightning Charging Cable,1,14.95,2019-12-08 12:55:00,315 6th St, Dallas,TX,75001 +298787,AA Batteries (4-pack),1,3.84,2019-12-13 09:22:00,624 Johnson St, Los Angeles,CA,90001 +298788,Wired Headphones,1,11.99,2019-12-13 20:06:00,313 Church St, Atlanta,GA,30301 +298789,27in FHD Monitor,1,149.99,2019-12-05 23:13:00,397 5th St, San Francisco,CA,94016 +298790,AA Batteries (4-pack),2,3.84,2019-12-17 21:39:00,538 Jackson St, New York City,NY,10001 +298791,Lightning Charging Cable,1,14.95,2019-12-14 21:28:00,669 West St, Dallas,TX,75001 +298792,AAA Batteries (4-pack),1,2.99,2019-12-15 11:30:00,891 Johnson St, San Francisco,CA,94016 +298793,Lightning Charging Cable,1,14.95,2019-12-11 10:50:00,835 Pine St, Boston,MA,02215 +298794,34in Ultrawide Monitor,1,379.99,2019-12-17 15:27:00,185 2nd St, Atlanta,GA,30301 +298795,Wired Headphones,2,11.99,2019-12-26 18:29:00,346 Maple St, New York City,NY,10001 +298796,AA Batteries (4-pack),1,3.84,2019-12-10 14:56:00,803 Cedar St, New York City,NY,10001 +298797,20in Monitor,1,109.99,2019-12-08 19:52:00,669 5th St, Austin,TX,73301 +298798,Wired Headphones,1,11.99,2019-12-31 21:45:00,853 Adams St, New York City,NY,10001 +298799,USB-C Charging Cable,1,11.95,2019-12-16 13:02:00,659 Adams St, Seattle,WA,98101 +298800,Apple Airpods Headphones,1,150.0,2019-12-11 23:14:00,495 Dogwood St, Austin,TX,73301 +298801,Bose SoundSport Headphones,1,99.99,2019-12-03 09:27:00,744 Hickory St, Los Angeles,CA,90001 +298801,Lightning Charging Cable,1,14.95,2019-12-03 09:27:00,744 Hickory St, Los Angeles,CA,90001 +298802,Lightning Charging Cable,1,14.95,2019-12-15 10:17:00,173 Walnut St, Portland,OR,97035 +298803,AAA Batteries (4-pack),1,2.99,2019-12-01 09:34:00,824 Madison St, San Francisco,CA,94016 +298804,iPhone,1,700.0,2019-12-07 11:30:00,505 West St, New York City,NY,10001 +298805,Macbook Pro Laptop,1,1700.0,2019-12-04 10:53:00,708 Dogwood St, Atlanta,GA,30301 +298806,iPhone,1,700.0,2019-12-03 17:22:00,979 Madison St, New York City,NY,10001 +298806,Lightning Charging Cable,1,14.95,2019-12-03 17:22:00,979 Madison St, New York City,NY,10001 +298807,Macbook Pro Laptop,1,1700.0,2019-12-17 14:52:00,599 Madison St, Los Angeles,CA,90001 +298808,Lightning Charging Cable,1,14.95,2019-12-11 09:25:00,312 14th St, Boston,MA,02215 +298809,Wired Headphones,1,11.99,2019-12-04 20:10:00,634 Center St, Portland,OR,97035 +298810,27in 4K Gaming Monitor,1,389.99,2019-12-27 17:46:00,20 Ridge St, San Francisco,CA,94016 +298811,USB-C Charging Cable,1,11.95,2019-12-05 22:38:00,242 14th St, Dallas,TX,75001 +298812,AA Batteries (4-pack),1,3.84,2019-12-22 15:12:00,124 Spruce St, San Francisco,CA,94016 +298813,Apple Airpods Headphones,1,150.0,2019-12-06 23:07:00,337 5th St, Austin,TX,73301 +298814,34in Ultrawide Monitor,1,379.99,2019-12-31 06:30:00,199 Highland St, Portland,ME,04101 +298815,USB-C Charging Cable,2,11.95,2019-12-09 08:45:00,14 Walnut St, San Francisco,CA,94016 +298816,Lightning Charging Cable,1,14.95,2019-12-23 09:11:00,615 Madison St, New York City,NY,10001 +298817,Lightning Charging Cable,1,14.95,2019-12-20 21:46:00,866 Cedar St, Boston,MA,02215 +298818,AA Batteries (4-pack),1,3.84,2019-12-17 21:53:00,346 5th St, New York City,NY,10001 +298819,27in 4K Gaming Monitor,1,389.99,2019-12-09 11:45:00,109 5th St, Portland,OR,97035 +298820,AA Batteries (4-pack),1,3.84,2019-12-31 21:32:00,395 Johnson St, San Francisco,CA,94016 +298821,27in 4K Gaming Monitor,1,389.99,2019-12-30 10:07:00,496 Cherry St, Dallas,TX,75001 +298821,AAA Batteries (4-pack),1,2.99,2019-12-30 10:07:00,496 Cherry St, Dallas,TX,75001 +298822,Apple Airpods Headphones,1,150.0,2019-12-12 23:53:00,101 South St, San Francisco,CA,94016 +298823,Apple Airpods Headphones,1,150.0,2019-12-28 20:22:00,151 14th St, Boston,MA,02215 +298824,iPhone,1,700.0,2019-12-17 20:53:00,118 8th St, Atlanta,GA,30301 +298825,AAA Batteries (4-pack),1,2.99,2019-12-26 12:36:00,451 Maple St, Portland,OR,97035 +298826,Lightning Charging Cable,1,14.95,2019-12-05 18:04:00,492 Willow St, Los Angeles,CA,90001 +298827,AAA Batteries (4-pack),1,2.99,2019-12-13 19:50:00,401 Hill St, New York City,NY,10001 +298828,Apple Airpods Headphones,1,150.0,2019-12-10 12:29:00,157 Ridge St, Los Angeles,CA,90001 +298829,Google Phone,1,600.0,2019-12-22 21:16:00,179 2nd St, San Francisco,CA,94016 +298829,USB-C Charging Cable,1,11.95,2019-12-22 21:16:00,179 2nd St, San Francisco,CA,94016 +298830,27in 4K Gaming Monitor,1,389.99,2019-12-20 15:20:00,477 Center St, Portland,OR,97035 +298831,Apple Airpods Headphones,1,150.0,2019-12-12 02:42:00,729 River St, Austin,TX,73301 +298832,AAA Batteries (4-pack),1,2.99,2019-12-11 22:20:00,814 Cedar St, Seattle,WA,98101 +298833,27in 4K Gaming Monitor,1,389.99,2019-12-10 19:24:00,704 Forest St, San Francisco,CA,94016 +298834,Apple Airpods Headphones,1,150.0,2019-12-28 20:20:00,264 Hill St, San Francisco,CA,94016 +298835,iPhone,1,700.0,2019-12-14 10:03:00,45 Maple St, New York City,NY,10001 +298835,Lightning Charging Cable,1,14.95,2019-12-14 10:03:00,45 Maple St, New York City,NY,10001 +298836,Macbook Pro Laptop,1,1700.0,2019-12-15 22:30:00,117 Dogwood St, Atlanta,GA,30301 +298837,27in FHD Monitor,1,149.99,2019-12-08 16:59:00,525 8th St, Portland,OR,97035 +298838,Lightning Charging Cable,1,14.95,2019-12-20 19:33:00,105 Madison St, Boston,MA,02215 +298839,Wired Headphones,1,11.99,2019-12-06 23:51:00,396 Lincoln St, Atlanta,GA,30301 +298840,Bose SoundSport Headphones,1,99.99,2019-12-13 18:59:00,67 Main St, San Francisco,CA,94016 +298841,27in FHD Monitor,1,149.99,2019-12-28 11:43:00,815 Johnson St, Atlanta,GA,30301 +298842,20in Monitor,1,109.99,2019-12-03 13:54:00,319 Ridge St, San Francisco,CA,94016 +298843,Lightning Charging Cable,1,14.95,2019-12-10 18:59:00,46 Wilson St, Los Angeles,CA,90001 +298844,Vareebadd Phone,1,400.0,2019-12-23 14:41:00,193 Wilson St, Dallas,TX,75001 +298844,USB-C Charging Cable,1,11.95,2019-12-23 14:41:00,193 Wilson St, Dallas,TX,75001 +298845,AA Batteries (4-pack),3,3.84,2019-12-10 19:27:00,388 West St, Los Angeles,CA,90001 +298846,Google Phone,1,600.0,2019-12-17 00:24:00,103 Madison St, Austin,TX,73301 +298847,USB-C Charging Cable,1,11.95,2019-12-20 21:39:00,58 Washington St, San Francisco,CA,94016 +298848,ThinkPad Laptop,1,999.99,2019-12-06 07:47:00,256 2nd St, New York City,NY,10001 +298849,USB-C Charging Cable,1,11.95,2019-12-14 20:37:00,162 1st St, Dallas,TX,75001 +298850,AAA Batteries (4-pack),1,2.99,2019-12-04 21:54:00,203 Dogwood St, Dallas,TX,75001 +298851,AA Batteries (4-pack),1,3.84,2019-12-06 14:56:00,301 Lincoln St, Los Angeles,CA,90001 +298852,Apple Airpods Headphones,1,150.0,2019-12-30 18:16:00,344 Lincoln St, Los Angeles,CA,90001 +298853,Flatscreen TV,1,300.0,2019-12-15 07:27:00,541 Washington St, Los Angeles,CA,90001 +298854,AAA Batteries (4-pack),2,2.99,2019-12-15 04:15:00,904 Jackson St, Seattle,WA,98101 +298855,AAA Batteries (4-pack),1,2.99,2019-12-07 18:15:00,996 Cedar St, New York City,NY,10001 +298856,USB-C Charging Cable,2,11.95,2019-12-15 12:51:00,832 Maple St, Atlanta,GA,30301 +298857,Wired Headphones,1,11.99,2019-12-31 08:33:00,144 Maple St, New York City,NY,10001 +298858,27in 4K Gaming Monitor,1,389.99,2019-12-10 21:07:00,938 6th St, Portland,OR,97035 +298859,Apple Airpods Headphones,1,150.0,2019-12-09 10:58:00,124 11th St, San Francisco,CA,94016 +298860,Wired Headphones,1,11.99,2019-12-07 09:03:00,306 Church St, Dallas,TX,75001 +298861,27in FHD Monitor,1,149.99,2019-12-28 14:25:00,989 Meadow St, Seattle,WA,98101 +298862,AAA Batteries (4-pack),3,2.99,2019-12-24 11:03:00,422 North St, San Francisco,CA,94016 +298863,Wired Headphones,1,11.99,2019-12-05 23:08:00,963 9th St, Los Angeles,CA,90001 +298864,USB-C Charging Cable,1,11.95,2019-12-13 10:58:00,616 Main St, Portland,OR,97035 +298865,AA Batteries (4-pack),1,3.84,2019-12-21 16:58:00,594 Wilson St, Dallas,TX,75001 +298866,Wired Headphones,1,11.99,2019-12-16 10:22:00,225 Cherry St, New York City,NY,10001 +298867,USB-C Charging Cable,1,11.95,2019-12-01 09:48:00,603 4th St, New York City,NY,10001 +298867,27in 4K Gaming Monitor,1,389.99,2019-12-01 09:48:00,603 4th St, New York City,NY,10001 +298868,Lightning Charging Cable,1,14.95,2019-12-12 13:00:00,970 6th St, San Francisco,CA,94016 +298869,Macbook Pro Laptop,1,1700.0,2019-12-21 13:55:00,730 Dogwood St, Los Angeles,CA,90001 +298870,Lightning Charging Cable,1,14.95,2019-12-07 08:04:00,139 Cherry St, Boston,MA,02215 +298871,Google Phone,1,600.0,2019-12-15 14:21:00,530 Center St, Atlanta,GA,30301 +298871,Bose SoundSport Headphones,1,99.99,2019-12-15 14:21:00,530 Center St, Atlanta,GA,30301 +298871,Wired Headphones,1,11.99,2019-12-15 14:21:00,530 Center St, Atlanta,GA,30301 +298872,Bose SoundSport Headphones,1,99.99,2019-12-30 21:09:00,254 Maple St, Boston,MA,02215 +298873,Bose SoundSport Headphones,1,99.99,2019-12-10 21:58:00,756 Washington St, Los Angeles,CA,90001 +298874,34in Ultrawide Monitor,1,379.99,2019-12-31 00:00:00,534 Main St, Los Angeles,CA,90001 +298875,Bose SoundSport Headphones,1,99.99,2019-12-25 16:49:00,799 Lakeview St, San Francisco,CA,94016 +298876,Apple Airpods Headphones,1,150.0,2019-12-11 17:06:00,368 Madison St, San Francisco,CA,94016 +298877,Bose SoundSport Headphones,1,99.99,2019-12-12 19:30:00,229 11th St, Dallas,TX,75001 +298878,Apple Airpods Headphones,1,150.0,2019-12-22 14:30:00,149 6th St, San Francisco,CA,94016 +298879,Apple Airpods Headphones,1,150.0,2019-12-09 08:30:00,408 Main St, San Francisco,CA,94016 +298880,AAA Batteries (4-pack),1,2.99,2019-12-14 19:57:00,197 7th St, Los Angeles,CA,90001 +298881,ThinkPad Laptop,1,999.99,2019-12-12 19:14:00,481 Sunset St, Seattle,WA,98101 +298882,34in Ultrawide Monitor,1,379.99,2019-12-03 07:53:00,862 Forest St, Los Angeles,CA,90001 +298883,Wired Headphones,1,11.99,2019-12-28 18:07:00,516 Willow St, Los Angeles,CA,90001 +298884,Apple Airpods Headphones,1,150.0,2019-12-03 18:06:00,725 River St, San Francisco,CA,94016 +298885,Lightning Charging Cable,1,14.95,2019-12-22 12:12:00,775 Johnson St, Austin,TX,73301 +298886,Apple Airpods Headphones,1,150.0,2019-12-21 15:06:00,930 Main St, Boston,MA,02215 +298887,USB-C Charging Cable,1,11.95,2019-12-23 09:16:00,727 Jefferson St, Dallas,TX,75001 +298888,AA Batteries (4-pack),2,3.84,2019-12-22 12:33:00,840 Main St, Dallas,TX,75001 +298889,AA Batteries (4-pack),1,3.84,2019-12-31 23:20:00,77 10th St, Los Angeles,CA,90001 +298890,34in Ultrawide Monitor,1,379.99,2019-12-16 09:12:00,675 Sunset St, Seattle,WA,98101 +298891,USB-C Charging Cable,1,11.95,2019-12-07 16:18:00,704 Lincoln St, San Francisco,CA,94016 +298892,Bose SoundSport Headphones,1,99.99,2019-12-29 23:53:00,369 5th St, San Francisco,CA,94016 +298893,AAA Batteries (4-pack),1,2.99,2019-12-05 08:33:00,662 Jackson St, San Francisco,CA,94016 +298894,AA Batteries (4-pack),2,3.84,2019-12-16 11:18:00,793 Forest St, Boston,MA,02215 +298895,AA Batteries (4-pack),1,3.84,2019-12-24 12:42:00,126 4th St, Austin,TX,73301 +298896,Apple Airpods Headphones,1,150.0,2019-12-30 19:38:00,322 Wilson St, Boston,MA,02215 +298897,ThinkPad Laptop,1,999.99,2019-12-09 16:31:00,694 Cherry St, Seattle,WA,98101 +298898,27in FHD Monitor,1,149.99,2019-12-21 16:29:00,487 Wilson St, San Francisco,CA,94016 +298899,Flatscreen TV,1,300.0,2019-12-07 04:15:00,761 6th St, San Francisco,CA,94016 +298900,Apple Airpods Headphones,1,150.0,2019-12-16 13:19:00,267 5th St, Atlanta,GA,30301 +298901,AA Batteries (4-pack),1,3.84,2019-12-17 10:48:00,782 Jackson St, Austin,TX,73301 +298902,Apple Airpods Headphones,1,150.0,2019-12-28 14:33:00,434 10th St, New York City,NY,10001 +298903,Vareebadd Phone,1,400.0,2019-12-07 22:34:00,392 River St, San Francisco,CA,94016 +298904,AA Batteries (4-pack),1,3.84,2019-12-07 13:32:00,229 6th St, Boston,MA,02215 +298905,USB-C Charging Cable,1,11.95,2019-12-31 10:09:00,913 Pine St, San Francisco,CA,94016 +298906,AA Batteries (4-pack),5,3.84,2019-12-02 14:48:00,805 Chestnut St, Boston,MA,02215 +298907,USB-C Charging Cable,1,11.95,2019-12-20 16:21:00,208 Jackson St, New York City,NY,10001 +298908,Wired Headphones,1,11.99,2019-12-01 13:57:00,457 Ridge St, San Francisco,CA,94016 +298909,AA Batteries (4-pack),1,3.84,2019-12-30 14:26:00,259 Jefferson St, Seattle,WA,98101 +298910,34in Ultrawide Monitor,1,379.99,2019-12-25 14:36:00,619 Center St, Seattle,WA,98101 +298911,Wired Headphones,1,11.99,2019-12-13 01:50:00,458 Lakeview St, Boston,MA,02215 +298912,AAA Batteries (4-pack),1,2.99,2019-12-18 22:32:00,953 Lakeview St, San Francisco,CA,94016 +298913,Wired Headphones,1,11.99,2019-12-10 23:32:00,441 Park St, New York City,NY,10001 +298914,Google Phone,1,600.0,2019-12-26 11:57:00,713 Jackson St, Boston,MA,02215 +298915,Apple Airpods Headphones,1,150.0,2019-12-31 18:19:00,103 River St, Boston,MA,02215 +298916,iPhone,1,700.0,2019-12-30 07:16:00,611 River St, Atlanta,GA,30301 +298917,AAA Batteries (4-pack),1,2.99,2019-12-16 18:53:00,914 Center St, Portland,OR,97035 +298918,27in FHD Monitor,1,149.99,2019-12-01 09:08:00,14 8th St, San Francisco,CA,94016 +298919,AA Batteries (4-pack),1,3.84,2019-12-26 09:35:00,202 Cherry St, Los Angeles,CA,90001 +298920,Macbook Pro Laptop,1,1700.0,2019-12-22 05:25:00,414 Cedar St, Seattle,WA,98101 +298921,Wired Headphones,1,11.99,2019-12-26 15:11:00,589 Lakeview St, Seattle,WA,98101 +298922,iPhone,1,700.0,2019-12-10 20:10:00,171 Main St, Dallas,TX,75001 +298922,Lightning Charging Cable,1,14.95,2019-12-10 20:10:00,171 Main St, Dallas,TX,75001 +298923,Lightning Charging Cable,1,14.95,2019-12-12 02:33:00,291 Center St, New York City,NY,10001 +298924,USB-C Charging Cable,1,11.95,2019-12-22 18:57:00,25 Park St, Los Angeles,CA,90001 +298925,Google Phone,1,600.0,2019-12-19 10:14:00,564 6th St, Austin,TX,73301 +298926,34in Ultrawide Monitor,1,379.99,2019-12-12 12:50:00,355 Forest St, Boston,MA,02215 +298927,USB-C Charging Cable,1,11.95,2019-12-04 21:13:00,242 Lake St, Dallas,TX,75001 +298928,Lightning Charging Cable,1,14.95,2019-12-20 16:15:00,432 7th St, New York City,NY,10001 +298929,Apple Airpods Headphones,1,150.0,2019-12-05 08:32:00,4 Pine St, San Francisco,CA,94016 +298930,AAA Batteries (4-pack),2,2.99,2019-12-21 13:09:00,196 Hickory St, San Francisco,CA,94016 +298931,Google Phone,1,600.0,2019-12-10 13:02:00,540 West St, Seattle,WA,98101 +298931,USB-C Charging Cable,1,11.95,2019-12-10 13:02:00,540 West St, Seattle,WA,98101 +298932,AA Batteries (4-pack),1,3.84,2019-12-31 13:27:00,67 4th St, Portland,OR,97035 +298933,27in FHD Monitor,1,149.99,2019-12-27 15:09:00,522 River St, Atlanta,GA,30301 +298934,Wired Headphones,1,11.99,2019-12-11 10:28:00,400 Highland St, Seattle,WA,98101 +298935,27in 4K Gaming Monitor,1,389.99,2019-12-23 15:27:00,954 Walnut St, Dallas,TX,75001 +298936,AAA Batteries (4-pack),1,2.99,2019-12-17 07:54:00,521 13th St, San Francisco,CA,94016 +298937,Wired Headphones,1,11.99,2019-12-18 13:50:00,540 Elm St, Boston,MA,02215 +298938,USB-C Charging Cable,1,11.95,2019-12-05 23:10:00,108 Forest St, New York City,NY,10001 +298939,20in Monitor,1,109.99,2019-12-13 23:51:00,94 South St, San Francisco,CA,94016 +298940,Wired Headphones,1,11.99,2019-12-02 14:11:00,907 Elm St, San Francisco,CA,94016 +298941,Bose SoundSport Headphones,1,99.99,2019-12-05 17:27:00,897 10th St, Dallas,TX,75001 +298942,USB-C Charging Cable,1,11.95,2019-12-18 17:39:00,842 9th St, Los Angeles,CA,90001 +298943,AAA Batteries (4-pack),1,2.99,2019-12-02 11:44:00,213 1st St, Boston,MA,02215 +298944,AAA Batteries (4-pack),3,2.99,2019-12-03 14:51:00,47 Dogwood St, Boston,MA,02215 +298945,AAA Batteries (4-pack),1,2.99,2019-12-31 10:34:00,478 4th St, San Francisco,CA,94016 +298946,Bose SoundSport Headphones,1,99.99,2019-12-21 23:39:00,707 Lake St, San Francisco,CA,94016 +298947,Vareebadd Phone,1,400.0,2019-12-09 10:31:00,303 8th St, New York City,NY,10001 +298948,AAA Batteries (4-pack),3,2.99,2019-12-07 11:02:00,568 Pine St, Portland,OR,97035 +298949,AAA Batteries (4-pack),1,2.99,2019-12-05 19:44:00,224 Hickory St, Atlanta,GA,30301 +298950,AA Batteries (4-pack),1,3.84,2019-12-11 07:00:00,758 Meadow St, San Francisco,CA,94016 +298951,Apple Airpods Headphones,1,150.0,2019-12-27 13:38:00,544 Hickory St, Dallas,TX,75001 +298952,Bose SoundSport Headphones,1,99.99,2019-12-30 19:46:00,224 Madison St, San Francisco,CA,94016 +298953,AAA Batteries (4-pack),1,2.99,2019-12-25 06:29:00,434 South St, Los Angeles,CA,90001 +298954,AAA Batteries (4-pack),1,2.99,2019-12-19 11:34:00,335 River St, Austin,TX,73301 +298955,34in Ultrawide Monitor,1,379.99,2019-12-31 08:06:00,79 6th St, Los Angeles,CA,90001 +298956,USB-C Charging Cable,1,11.95,2019-12-08 20:11:00,422 1st St, Boston,MA,02215 +298957,LG Dryer,1,600.0,2019-12-21 13:05:00,818 1st St, Los Angeles,CA,90001 +298958,Google Phone,1,600.0,2019-12-22 10:26:00,212 Hill St, Atlanta,GA,30301 +298959,27in 4K Gaming Monitor,1,389.99,2019-12-09 19:20:00,970 1st St, Seattle,WA,98101 +298960,Macbook Pro Laptop,1,1700.0,2019-12-21 23:37:00,374 Highland St, Los Angeles,CA,90001 +298961,AAA Batteries (4-pack),3,2.99,2019-12-12 11:20:00,421 2nd St, San Francisco,CA,94016 +298962,Lightning Charging Cable,1,14.95,2019-12-30 14:45:00,656 5th St, San Francisco,CA,94016 +298963,AAA Batteries (4-pack),1,2.99,2019-12-19 06:59:00,22 Washington St, New York City,NY,10001 +298964,AAA Batteries (4-pack),1,2.99,2019-12-30 18:38:00,348 10th St, Atlanta,GA,30301 +298965,Apple Airpods Headphones,1,150.0,2019-12-24 12:39:00,350 Jackson St, New York City,NY,10001 +298966,USB-C Charging Cable,1,11.95,2019-12-22 11:45:00,674 Dogwood St, New York City,NY,10001 +298967,Flatscreen TV,1,300.0,2019-12-22 10:18:00,703 Lake St, San Francisco,CA,94016 +298968,Wired Headphones,1,11.99,2019-12-20 09:31:00,193 Chestnut St, Austin,TX,73301 +298969,AA Batteries (4-pack),2,3.84,2019-12-19 12:40:00,774 Hickory St, Seattle,WA,98101 +298970,Bose SoundSport Headphones,1,99.99,2019-12-17 14:18:00,227 Cedar St, Los Angeles,CA,90001 +298971,USB-C Charging Cable,1,11.95,2019-12-27 08:34:00,565 Cherry St, New York City,NY,10001 +298972,Wired Headphones,1,11.99,2019-12-06 14:32:00,80 Elm St, Los Angeles,CA,90001 +298973,iPhone,1,700.0,2019-12-04 15:16:00,560 South St, Seattle,WA,98101 +298974,AAA Batteries (4-pack),1,2.99,2019-12-24 13:50:00,992 Ridge St, Seattle,WA,98101 +298975,Apple Airpods Headphones,1,150.0,2019-12-26 09:37:00,527 Johnson St, Los Angeles,CA,90001 +298976,Lightning Charging Cable,1,14.95,2019-12-29 16:32:00,984 Adams St, San Francisco,CA,94016 +298977,Google Phone,1,600.0,2019-12-03 19:57:00,471 Hickory St, Los Angeles,CA,90001 +298978,Lightning Charging Cable,1,14.95,2019-12-29 19:04:00,413 Jackson St, San Francisco,CA,94016 +298979,AAA Batteries (4-pack),1,2.99,2019-12-13 04:25:00,165 Washington St, Austin,TX,73301 +298980,AAA Batteries (4-pack),1,2.99,2019-12-10 10:59:00,726 Meadow St, Austin,TX,73301 +298981,AAA Batteries (4-pack),1,2.99,2019-12-28 21:45:00,497 Johnson St, San Francisco,CA,94016 +298982,Wired Headphones,1,11.99,2019-12-12 19:19:00,755 Forest St, Portland,OR,97035 +298983,Flatscreen TV,1,300.0,2019-12-14 12:58:00,748 Lincoln St, New York City,NY,10001 +298984,Wired Headphones,1,11.99,2019-12-31 13:23:00,445 Spruce St, Atlanta,GA,30301 +298985,iPhone,1,700.0,2019-12-14 10:07:00,871 Main St, Los Angeles,CA,90001 +298986,Wired Headphones,1,11.99,2019-12-09 17:53:00,203 Hickory St, Los Angeles,CA,90001 +298987,Lightning Charging Cable,1,14.95,2019-12-22 20:03:00,632 Jefferson St, Austin,TX,73301 +298988,Wired Headphones,1,11.99,2019-12-26 16:11:00,528 8th St, Austin,TX,73301 +298989,AAA Batteries (4-pack),1,2.99,2019-12-03 19:38:00,77 Adams St, New York City,NY,10001 +298990,Apple Airpods Headphones,1,150.0,2019-12-20 14:01:00,314 Wilson St, Seattle,WA,98101 +298991,iPhone,1,700.0,2019-12-29 20:29:00,356 Spruce St, San Francisco,CA,94016 +298991,Lightning Charging Cable,1,14.95,2019-12-29 20:29:00,356 Spruce St, San Francisco,CA,94016 +298992,Bose SoundSport Headphones,1,99.99,2019-12-15 15:24:00,301 5th St, New York City,NY,10001 +298993,Apple Airpods Headphones,1,150.0,2019-12-22 21:39:00,450 11th St, Portland,OR,97035 +298994,iPhone,1,700.0,2019-12-06 16:04:00,987 Lakeview St, Los Angeles,CA,90001 +298994,Apple Airpods Headphones,1,150.0,2019-12-06 16:04:00,987 Lakeview St, Los Angeles,CA,90001 +298995,AA Batteries (4-pack),1,3.84,2019-12-31 11:55:00,909 Johnson St, Los Angeles,CA,90001 +298996,AAA Batteries (4-pack),1,2.99,2019-12-05 17:34:00,540 Highland St, Dallas,TX,75001 +298997,USB-C Charging Cable,1,11.95,2019-12-18 05:46:00,322 Spruce St, Boston,MA,02215 +298998,Apple Airpods Headphones,1,150.0,2019-12-17 11:38:00,376 8th St, Los Angeles,CA,90001 +298999,AAA Batteries (4-pack),1,2.99,2019-12-31 18:30:00,907 Cherry St, New York City,NY,10001 +299000,Lightning Charging Cable,2,14.95,2019-12-04 09:30:00,785 Church St, Portland,OR,97035 +299001,AA Batteries (4-pack),1,3.84,2019-12-01 21:28:00,377 13th St, New York City,NY,10001 +299002,Wired Headphones,1,11.99,2019-12-02 17:13:00,630 Washington St, New York City,NY,10001 +299003,iPhone,1,700.0,2019-12-24 14:23:00,142 Wilson St, San Francisco,CA,94016 +299004,Lightning Charging Cable,1,14.95,2019-12-19 18:08:00,798 Washington St, San Francisco,CA,94016 +299005,Wired Headphones,1,11.99,2019-12-31 12:30:00,330 Park St, San Francisco,CA,94016 +299006,AAA Batteries (4-pack),1,2.99,2019-12-30 09:01:00,726 Hill St, San Francisco,CA,94016 +299007,Wired Headphones,1,11.99,2019-12-22 14:20:00,751 Highland St, New York City,NY,10001 +299008,Apple Airpods Headphones,1,150.0,2019-12-18 19:31:00,655 Elm St, Austin,TX,73301 +299009,Bose SoundSport Headphones,1,99.99,2019-12-19 11:43:00,165 Church St, Boston,MA,02215 +299010,AAA Batteries (4-pack),3,2.99,2019-12-25 18:55:00,680 Willow St, Boston,MA,02215 +299010,Lightning Charging Cable,1,14.95,2019-12-25 18:55:00,680 Willow St, Boston,MA,02215 +299011,USB-C Charging Cable,1,11.95,2019-12-15 19:52:00,534 1st St, Los Angeles,CA,90001 +299012,Bose SoundSport Headphones,1,99.99,2019-12-12 19:26:00,891 11th St, San Francisco,CA,94016 +299013,AA Batteries (4-pack),1,3.84,2019-12-17 16:21:00,713 Spruce St, Dallas,TX,75001 +299014,AA Batteries (4-pack),1,3.84,2019-12-11 02:20:00,3 Meadow St, Dallas,TX,75001 +299015,Flatscreen TV,1,300.0,2019-12-31 09:03:00,627 Lake St, Los Angeles,CA,90001 +299016,AAA Batteries (4-pack),2,2.99,2019-12-21 19:55:00,878 5th St, Seattle,WA,98101 +299017,Wired Headphones,1,11.99,2019-12-14 13:56:00,477 Willow St, Boston,MA,02215 +299018,Wired Headphones,1,11.99,2019-12-24 09:30:00,718 Lakeview St, Los Angeles,CA,90001 +299019,AA Batteries (4-pack),2,3.84,2019-12-30 16:22:00,584 9th St, Los Angeles,CA,90001 +299020,AAA Batteries (4-pack),4,2.99,2019-12-13 22:48:00,889 Willow St, Portland,OR,97035 +299021,Bose SoundSport Headphones,1,99.99,2019-12-23 19:38:00,845 Chestnut St, San Francisco,CA,94016 +299022,Bose SoundSport Headphones,1,99.99,2019-12-07 20:52:00,248 South St, Los Angeles,CA,90001 +299023,Wired Headphones,1,11.99,2019-12-11 17:18:00,13 Ridge St, San Francisco,CA,94016 +299024,Google Phone,1,600.0,2019-12-30 19:25:00,65 Ridge St, Boston,MA,02215 +299024,Wired Headphones,1,11.99,2019-12-30 19:25:00,65 Ridge St, Boston,MA,02215 +299025,Bose SoundSport Headphones,1,99.99,2019-12-16 20:44:00,815 9th St, Boston,MA,02215 +299026,27in FHD Monitor,1,149.99,2019-12-04 08:53:00,985 Park St, Los Angeles,CA,90001 +299027,USB-C Charging Cable,1,11.95,2019-12-24 18:55:00,793 4th St, Atlanta,GA,30301 +299028,USB-C Charging Cable,1,11.95,2019-12-23 23:40:00,746 Park St, Seattle,WA,98101 +299029,AAA Batteries (4-pack),3,2.99,2019-12-31 04:50:00,828 Main St, Los Angeles,CA,90001 +299030,AA Batteries (4-pack),1,3.84,2019-12-29 15:44:00,110 Wilson St, Portland,ME,04101 +299031,USB-C Charging Cable,1,11.95,2019-12-08 12:31:00,722 Walnut St, San Francisco,CA,94016 +299032,34in Ultrawide Monitor,1,379.99,2019-12-25 22:58:00,806 Spruce St, San Francisco,CA,94016 +299033,AAA Batteries (4-pack),2,2.99,2019-12-14 19:06:00,152 Washington St, Boston,MA,02215 +299034,AA Batteries (4-pack),2,3.84,2019-12-26 14:45:00,30 South St, San Francisco,CA,94016 +299035,27in FHD Monitor,1,149.99,2019-12-14 22:47:00,702 Elm St, Atlanta,GA,30301 +299036,Lightning Charging Cable,1,14.95,2019-12-07 16:25:00,523 Hickory St, San Francisco,CA,94016 +299037,AA Batteries (4-pack),1,3.84,2019-12-20 17:56:00,785 North St, San Francisco,CA,94016 +299038,34in Ultrawide Monitor,1,379.99,2019-12-28 11:31:00,94 Adams St, San Francisco,CA,94016 +299039,Lightning Charging Cable,1,14.95,2019-12-01 13:14:00,697 Lakeview St, Seattle,WA,98101 +299040,Apple Airpods Headphones,1,150.0,2019-12-19 11:57:00,260 Center St, Austin,TX,73301 +299041,AAA Batteries (4-pack),3,2.99,2019-12-24 17:37:00,93 6th St, Los Angeles,CA,90001 +299042,AAA Batteries (4-pack),2,2.99,2019-12-31 20:05:00,322 Adams St, Austin,TX,73301 +299043,Wired Headphones,2,11.99,2019-12-13 12:40:00,790 Jackson St, San Francisco,CA,94016 +299044,Lightning Charging Cable,1,14.95,2019-12-31 23:36:00,946 South St, Atlanta,GA,30301 +299045,Wired Headphones,1,11.99,2019-12-06 18:29:00,647 Forest St, Los Angeles,CA,90001 +299046,Google Phone,1,600.0,2019-12-30 22:06:00,373 River St, San Francisco,CA,94016 +299046,USB-C Charging Cable,1,11.95,2019-12-30 22:06:00,373 River St, San Francisco,CA,94016 +299047,iPhone,1,700.0,2019-12-06 17:34:00,233 Pine St, San Francisco,CA,94016 +299048,Apple Airpods Headphones,1,150.0,2019-12-28 17:12:00,688 11th St, Los Angeles,CA,90001 +299049,Apple Airpods Headphones,1,150.0,2020-01-01 01:17:00,762 Johnson St, San Francisco,CA,94016 +299050,27in 4K Gaming Monitor,1,389.99,2019-12-17 19:30:00,439 Cherry St, San Francisco,CA,94016 +299051,Bose SoundSport Headphones,1,99.99,2019-12-20 20:29:00,626 West St, Seattle,WA,98101 +299052,AAA Batteries (4-pack),1,2.99,2019-12-22 11:48:00,495 1st St, Dallas,TX,75001 +299053,USB-C Charging Cable,1,11.95,2019-12-02 08:45:00,956 Cherry St, Atlanta,GA,30301 +299054,AAA Batteries (4-pack),1,2.99,2019-12-11 22:12:00,536 Cedar St, Dallas,TX,75001 +299055,Bose SoundSport Headphones,1,99.99,2019-12-31 07:24:00,380 Wilson St, Boston,MA,02215 +299056,Lightning Charging Cable,1,14.95,2019-12-29 23:57:00,173 Forest St, Austin,TX,73301 +299057,34in Ultrawide Monitor,1,379.99,2019-12-09 11:14:00,457 12th St, San Francisco,CA,94016 +299058,Lightning Charging Cable,2,14.95,2019-12-01 20:22:00,823 10th St, Portland,OR,97035 +299059,Apple Airpods Headphones,1,150.0,2019-12-01 05:47:00,113 South St, Los Angeles,CA,90001 +299060,Wired Headphones,1,11.99,2019-12-22 13:08:00,971 Forest St, San Francisco,CA,94016 +299061,34in Ultrawide Monitor,1,379.99,2019-12-23 00:03:00,435 Wilson St, Seattle,WA,98101 +299062,iPhone,1,700.0,2019-12-20 12:21:00,977 Cedar St, Dallas,TX,75001 +299063,34in Ultrawide Monitor,1,379.99,2019-12-25 22:31:00,257 12th St, Portland,OR,97035 +299064,iPhone,1,700.0,2019-12-22 17:04:00,451 9th St, Los Angeles,CA,90001 +299065,iPhone,1,700.0,2019-12-28 10:02:00,126 Hickory St, Portland,OR,97035 +299066,iPhone,1,700.0,2019-12-29 16:45:00,459 Meadow St, San Francisco,CA,94016 +299067,iPhone,1,700.0,2019-12-03 12:42:00,155 Church St, New York City,NY,10001 +299067,Apple Airpods Headphones,1,150.0,2019-12-03 12:42:00,155 Church St, New York City,NY,10001 +299068,Wired Headphones,1,11.99,2019-12-09 12:20:00,553 Wilson St, New York City,NY,10001 +299069,20in Monitor,1,109.99,2019-12-03 11:11:00,912 Hill St, New York City,NY,10001 +299070,AA Batteries (4-pack),2,3.84,2019-12-20 15:08:00,556 Pine St, Seattle,WA,98101 +299071,ThinkPad Laptop,1,999.99,2019-12-18 15:23:00,851 Meadow St, Dallas,TX,75001 +299072,20in Monitor,1,109.99,2019-12-17 19:05:00,492 Chestnut St, Dallas,TX,75001 +299073,USB-C Charging Cable,1,11.95,2019-12-19 12:37:00,310 5th St, San Francisco,CA,94016 +299074,iPhone,1,700.0,2019-12-16 14:09:00,547 9th St, San Francisco,CA,94016 +299075,Wired Headphones,1,11.99,2019-12-02 11:14:00,829 Park St, Portland,OR,97035 +299076,iPhone,1,700.0,2019-12-11 10:40:00,934 Church St, San Francisco,CA,94016 +299077,Lightning Charging Cable,1,14.95,2019-12-18 20:09:00,653 Jefferson St, Dallas,TX,75001 +299078,AA Batteries (4-pack),1,3.84,2019-12-14 11:15:00,747 Hickory St, Los Angeles,CA,90001 +299079,20in Monitor,1,109.99,2019-12-18 13:45:00,467 Ridge St, Boston,MA,02215 +299080,AA Batteries (4-pack),1,3.84,2019-12-07 14:38:00,119 Maple St, San Francisco,CA,94016 +299081,LG Washing Machine,1,600.0,2019-12-29 11:42:00,568 7th St, New York City,NY,10001 +299082,AAA Batteries (4-pack),1,2.99,2019-12-14 19:40:00,564 5th St, Portland,OR,97035 +299083,27in 4K Gaming Monitor,1,389.99,2019-12-09 12:48:00,615 North St, Atlanta,GA,30301 +299084,AA Batteries (4-pack),3,3.84,2019-12-15 18:34:00,71 North St, Atlanta,GA,30301 +299085,Bose SoundSport Headphones,1,99.99,2019-12-01 17:32:00,134 Maple St, Seattle,WA,98101 +299086,Lightning Charging Cable,1,14.95,2019-12-13 17:31:00,570 Wilson St, San Francisco,CA,94016 +299087,Bose SoundSport Headphones,1,99.99,2019-12-18 19:14:00,400 14th St, New York City,NY,10001 +299088,LG Washing Machine,1,600.0,2019-12-30 15:21:00,804 10th St, Dallas,TX,75001 +299089,AAA Batteries (4-pack),1,2.99,2019-12-01 19:37:00,794 10th St, San Francisco,CA,94016 +299090,Wired Headphones,1,11.99,2019-12-24 20:26:00,675 Jackson St, Los Angeles,CA,90001 +299091,Wired Headphones,1,11.99,2019-12-08 14:59:00,106 13th St, New York City,NY,10001 +299092,27in FHD Monitor,1,149.99,2019-12-22 21:11:00,23 Meadow St, Los Angeles,CA,90001 +299093,Google Phone,1,600.0,2019-12-01 11:59:00,145 Sunset St, Boston,MA,02215 +299094,Lightning Charging Cable,1,14.95,2019-12-21 13:43:00,852 8th St, Austin,TX,73301 +299095,Wired Headphones,1,11.99,2019-12-25 18:56:00,88 11th St, New York City,NY,10001 +299096,Apple Airpods Headphones,1,150.0,2019-12-30 04:11:00,506 7th St, Dallas,TX,75001 +299097,Wired Headphones,1,11.99,2019-12-28 19:08:00,507 Forest St, Los Angeles,CA,90001 +299098,Lightning Charging Cable,1,14.95,2019-12-05 11:05:00,324 5th St, Dallas,TX,75001 +299099,USB-C Charging Cable,1,11.95,2019-12-08 13:41:00,674 Center St, Portland,OR,97035 +299100,AA Batteries (4-pack),1,3.84,2019-12-04 10:46:00,84 South St, Portland,OR,97035 +299101,Lightning Charging Cable,1,14.95,2019-12-28 22:37:00,76 Pine St, Dallas,TX,75001 +299102,iPhone,1,700.0,2019-12-08 09:05:00,809 West St, Los Angeles,CA,90001 +299103,USB-C Charging Cable,2,11.95,2019-12-01 08:04:00,414 Maple St, New York City,NY,10001 +299104,iPhone,1,700.0,2019-12-09 18:39:00,104 Walnut St, San Francisco,CA,94016 +299104,Lightning Charging Cable,1,14.95,2019-12-09 18:39:00,104 Walnut St, San Francisco,CA,94016 +299105,AAA Batteries (4-pack),1,2.99,2019-12-22 13:45:00,569 1st St, Boston,MA,02215 +299106,AAA Batteries (4-pack),2,2.99,2019-12-11 01:31:00,502 Highland St, Dallas,TX,75001 +299107,AA Batteries (4-pack),1,3.84,2019-12-03 10:34:00,546 13th St, Seattle,WA,98101 +299108,AAA Batteries (4-pack),2,2.99,2019-12-08 18:57:00,240 South St, Portland,ME,04101 +299109,27in FHD Monitor,1,149.99,2019-12-17 20:51:00,305 Center St, San Francisco,CA,94016 +299110,Lightning Charging Cable,1,14.95,2019-12-16 23:06:00,929 Hickory St, New York City,NY,10001 +299111,Lightning Charging Cable,1,14.95,2019-12-22 06:41:00,560 9th St, San Francisco,CA,94016 +299112,Apple Airpods Headphones,1,150.0,2019-12-11 22:48:00,882 1st St, San Francisco,CA,94016 +299113,USB-C Charging Cable,1,11.95,2019-12-19 20:55:00,88 1st St, Atlanta,GA,30301 +299114,Apple Airpods Headphones,1,150.0,2019-12-04 22:46:00,498 Sunset St, San Francisco,CA,94016 +299115,Wired Headphones,1,11.99,2019-12-04 21:47:00,142 Lakeview St, New York City,NY,10001 +299116,34in Ultrawide Monitor,1,379.99,2019-12-30 08:03:00,545 Dogwood St, Los Angeles,CA,90001 +299117,USB-C Charging Cable,1,11.95,2019-12-24 20:25:00,523 11th St, Los Angeles,CA,90001 +299118,AAA Batteries (4-pack),2,2.99,2019-12-11 21:05:00,443 Walnut St, New York City,NY,10001 +299119,27in FHD Monitor,1,149.99,2019-12-26 17:07:00,916 Park St, Seattle,WA,98101 +299120,Lightning Charging Cable,1,14.95,2019-12-01 17:20:00,560 12th St, New York City,NY,10001 +299120,AAA Batteries (4-pack),1,2.99,2019-12-01 17:20:00,560 12th St, New York City,NY,10001 +299121,USB-C Charging Cable,2,11.95,2019-12-23 11:30:00,227 Willow St, Seattle,WA,98101 +299122,Macbook Pro Laptop,1,1700.0,2019-12-09 14:51:00,108 Lake St, Los Angeles,CA,90001 +299123,ThinkPad Laptop,1,999.99,2019-12-20 18:51:00,651 Chestnut St, Boston,MA,02215 +299123,Lightning Charging Cable,1,14.95,2019-12-20 18:51:00,651 Chestnut St, Boston,MA,02215 +299124,Lightning Charging Cable,1,14.95,2019-12-21 16:24:00,370 River St, San Francisco,CA,94016 +299125,USB-C Charging Cable,1,11.95,2020-01-01 04:21:00,754 Hickory St, New York City,NY,10001 +299126,iPhone,1,700.0,2019-12-21 12:41:00,256 Wilson St, Boston,MA,02215 +299126,Lightning Charging Cable,1,14.95,2019-12-21 12:41:00,256 Wilson St, Boston,MA,02215 +299126,Wired Headphones,1,11.99,2019-12-21 12:41:00,256 Wilson St, Boston,MA,02215 +299127,AA Batteries (4-pack),3,3.84,2019-12-29 21:07:00,515 Wilson St, Portland,OR,97035 +299127,AAA Batteries (4-pack),1,2.99,2019-12-29 21:07:00,515 Wilson St, Portland,OR,97035 +299128,USB-C Charging Cable,1,11.95,2019-12-14 19:01:00,231 9th St, New York City,NY,10001 +299129,AAA Batteries (4-pack),3,2.99,2019-12-27 17:38:00,418 Lake St, New York City,NY,10001 +299130,Lightning Charging Cable,1,14.95,2019-12-17 12:17:00,338 West St, Dallas,TX,75001 +299131,Vareebadd Phone,1,400.0,2019-12-10 15:49:00,27 Dogwood St, Dallas,TX,75001 +299132,Lightning Charging Cable,1,14.95,2019-12-14 10:00:00,15 Adams St, New York City,NY,10001 +299133,AAA Batteries (4-pack),1,2.99,2019-12-05 18:38:00,961 5th St, Seattle,WA,98101 +299134,AAA Batteries (4-pack),1,2.99,2019-12-09 15:38:00,914 Chestnut St, Atlanta,GA,30301 +299135,USB-C Charging Cable,1,11.95,2019-12-10 16:55:00,896 Church St, New York City,NY,10001 +299136,AAA Batteries (4-pack),1,2.99,2019-12-17 13:13:00,969 Meadow St, Los Angeles,CA,90001 +299137,Apple Airpods Headphones,1,150.0,2019-12-29 16:45:00,114 Cedar St, New York City,NY,10001 +299137,Wired Headphones,1,11.99,2019-12-29 16:45:00,114 Cedar St, New York City,NY,10001 +299138,iPhone,1,700.0,2019-12-18 00:31:00,153 Forest St, Dallas,TX,75001 +299139,Wired Headphones,1,11.99,2019-12-28 14:07:00,310 North St, New York City,NY,10001 +299140,Apple Airpods Headphones,1,150.0,2019-12-14 22:40:00,423 Dogwood St, Boston,MA,02215 +299141,Bose SoundSport Headphones,1,99.99,2019-12-19 11:16:00,901 Hickory St, Portland,ME,04101 +299142,AA Batteries (4-pack),2,3.84,2019-12-03 11:21:00,168 4th St, Atlanta,GA,30301 +299143,Flatscreen TV,1,300.0,2019-12-25 01:22:00,245 Highland St, Austin,TX,73301 +299144,USB-C Charging Cable,1,11.95,2019-12-17 11:41:00,940 Willow St, Atlanta,GA,30301 +299145,AAA Batteries (4-pack),1,2.99,2019-12-12 13:05:00,410 14th St, New York City,NY,10001 +299146,Apple Airpods Headphones,1,150.0,2019-12-02 23:03:00,629 Sunset St, Boston,MA,02215 +299147,Google Phone,1,600.0,2019-12-10 11:23:00,170 Pine St, San Francisco,CA,94016 +299148,USB-C Charging Cable,1,11.95,2019-12-20 14:10:00,43 Meadow St, Seattle,WA,98101 +299149,27in 4K Gaming Monitor,1,389.99,2019-12-13 16:39:00,837 North St, San Francisco,CA,94016 +299150,Macbook Pro Laptop,1,1700.0,2019-12-08 20:28:00,646 Washington St, Los Angeles,CA,90001 +299151,Flatscreen TV,1,300.0,2019-12-02 18:23:00,112 Highland St, New York City,NY,10001 +299152,USB-C Charging Cable,1,11.95,2019-12-23 17:25:00,437 14th St, Portland,OR,97035 +299153,27in FHD Monitor,1,149.99,2019-12-30 19:16:00,532 Meadow St, Portland,ME,04101 +299154,20in Monitor,1,109.99,2019-12-06 07:57:00,82 7th St, San Francisco,CA,94016 +299155,AA Batteries (4-pack),1,3.84,2019-12-25 11:13:00,561 Meadow St, New York City,NY,10001 +299156,Bose SoundSport Headphones,2,99.99,2019-12-30 13:22:00,525 6th St, Los Angeles,CA,90001 +299157,Wired Headphones,1,11.99,2019-12-28 08:31:00,563 Chestnut St, Austin,TX,73301 +299158,Macbook Pro Laptop,1,1700.0,2019-12-03 21:29:00,608 Elm St, San Francisco,CA,94016 +299159,AAA Batteries (4-pack),1,2.99,2019-12-23 10:24:00,771 Pine St, Dallas,TX,75001 +299160,34in Ultrawide Monitor,1,379.99,2019-12-03 23:05:00,912 Pine St, Los Angeles,CA,90001 +299161,AA Batteries (4-pack),1,3.84,2019-12-27 18:53:00,757 Forest St, Dallas,TX,75001 +299162,Wired Headphones,1,11.99,2019-12-12 11:09:00,512 10th St, Dallas,TX,75001 +299163,20in Monitor,1,109.99,2019-12-01 08:06:00,485 River St, Austin,TX,73301 +299164,Google Phone,1,600.0,2019-12-14 17:21:00,594 6th St, San Francisco,CA,94016 +299164,USB-C Charging Cable,1,11.95,2019-12-14 17:21:00,594 6th St, San Francisco,CA,94016 +299165,AA Batteries (4-pack),1,3.84,2019-12-20 20:25:00,953 Park St, Dallas,TX,75001 +299166,Wired Headphones,1,11.99,2019-12-22 14:28:00,309 7th St, New York City,NY,10001 +299167,20in Monitor,2,109.99,2019-12-26 15:18:00,973 Hill St, San Francisco,CA,94016 +299168,AA Batteries (4-pack),2,3.84,2019-12-14 13:21:00,817 Spruce St, New York City,NY,10001 +299169,iPhone,1,700.0,2019-12-21 19:40:00,983 Madison St, New York City,NY,10001 +299170,34in Ultrawide Monitor,1,379.99,2019-12-05 09:19:00,972 8th St, Austin,TX,73301 +299171,Lightning Charging Cable,1,14.95,2019-12-17 09:28:00,273 8th St, San Francisco,CA,94016 +299172,Macbook Pro Laptop,1,1700.0,2019-12-31 15:06:00,433 North St, San Francisco,CA,94016 +299173,AAA Batteries (4-pack),1,2.99,2019-12-20 21:42:00,575 Park St, Seattle,WA,98101 +299174,Flatscreen TV,1,300.0,2019-12-24 19:11:00,696 12th St, Portland,OR,97035 +299175,ThinkPad Laptop,1,999.99,2019-12-30 08:04:00,740 Main St, San Francisco,CA,94016 +299176,27in FHD Monitor,1,149.99,2019-12-17 23:16:00,930 Meadow St, Atlanta,GA,30301 +299177,27in FHD Monitor,1,149.99,2019-12-02 09:30:00,823 West St, Boston,MA,02215 +299178,27in FHD Monitor,1,149.99,2019-12-04 19:14:00,758 River St, Seattle,WA,98101 +299178,Apple Airpods Headphones,1,150.0,2019-12-04 19:14:00,758 River St, Seattle,WA,98101 +299179,Lightning Charging Cable,1,14.95,2019-12-28 17:52:00,55 Spruce St, Portland,OR,97035 +299180,Bose SoundSport Headphones,1,99.99,2019-12-26 18:11:00,911 14th St, San Francisco,CA,94016 +299181,34in Ultrawide Monitor,1,379.99,2019-12-31 17:06:00,65 Jackson St, San Francisco,CA,94016 +299182,Lightning Charging Cable,1,14.95,2019-12-24 12:48:00,847 Pine St, Portland,OR,97035 +299183,USB-C Charging Cable,1,11.95,2019-12-09 18:29:00,731 Madison St, New York City,NY,10001 +299184,AA Batteries (4-pack),1,3.84,2019-12-04 13:42:00,592 Jefferson St, San Francisco,CA,94016 +299185,iPhone,1,700.0,2019-12-21 11:24:00,975 South St, Atlanta,GA,30301 +299186,Google Phone,1,600.0,2019-12-29 23:20:00,305 Meadow St, Austin,TX,73301 +299186,Wired Headphones,1,11.99,2019-12-29 23:20:00,305 Meadow St, Austin,TX,73301 +299187,Wired Headphones,1,11.99,2019-12-05 21:28:00,140 Chestnut St, New York City,NY,10001 +299188,Bose SoundSport Headphones,1,99.99,2019-12-29 09:24:00,896 Cedar St, Los Angeles,CA,90001 +299189,Bose SoundSport Headphones,1,99.99,2019-12-05 11:11:00,317 River St, San Francisco,CA,94016 +299190,Flatscreen TV,1,300.0,2019-12-28 04:48:00,104 12th St, Boston,MA,02215 +299191,Flatscreen TV,1,300.0,2019-12-28 12:08:00,723 5th St, Dallas,TX,75001 +299192,Apple Airpods Headphones,1,150.0,2019-12-11 07:32:00,374 Main St, Austin,TX,73301 +299193,27in FHD Monitor,1,149.99,2019-12-13 09:25:00,123 Spruce St, Los Angeles,CA,90001 +299194,27in 4K Gaming Monitor,1,389.99,2019-12-11 20:05:00,175 Wilson St, Atlanta,GA,30301 +299195,Wired Headphones,1,11.99,2019-12-27 08:10:00,712 Meadow St, Los Angeles,CA,90001 +299196,USB-C Charging Cable,1,11.95,2019-12-16 12:09:00,905 14th St, Los Angeles,CA,90001 +299197,AAA Batteries (4-pack),1,2.99,2019-12-31 22:29:00,205 Hickory St, Los Angeles,CA,90001 +299198,34in Ultrawide Monitor,1,379.99,2019-12-04 20:23:00,202 Pine St, Boston,MA,02215 +299199,Bose SoundSport Headphones,1,99.99,2019-12-09 11:44:00,664 Main St, Austin,TX,73301 +299200,Wired Headphones,1,11.99,2019-12-30 13:08:00,934 Meadow St, Portland,OR,97035 +299201,Apple Airpods Headphones,1,150.0,2019-12-13 12:51:00,602 Park St, Austin,TX,73301 +299202,USB-C Charging Cable,1,11.95,2019-12-20 21:10:00,899 Willow St, New York City,NY,10001 +299203,AAA Batteries (4-pack),1,2.99,2019-12-23 17:55:00,163 Ridge St, New York City,NY,10001 +299204,AA Batteries (4-pack),1,3.84,2019-12-10 15:46:00,916 Park St, Los Angeles,CA,90001 +299205,Lightning Charging Cable,1,14.95,2019-12-15 11:57:00,571 Jackson St, Los Angeles,CA,90001 +299206,Vareebadd Phone,1,400.0,2019-12-10 11:00:00,436 River St, San Francisco,CA,94016 +299206,USB-C Charging Cable,1,11.95,2019-12-10 11:00:00,436 River St, San Francisco,CA,94016 +299206,Wired Headphones,1,11.99,2019-12-10 11:00:00,436 River St, San Francisco,CA,94016 +299207,Bose SoundSport Headphones,1,99.99,2019-12-08 12:17:00,180 Ridge St, Seattle,WA,98101 +299208,Apple Airpods Headphones,1,150.0,2019-12-26 12:51:00,535 Church St, Austin,TX,73301 +299209,AAA Batteries (4-pack),1,2.99,2019-12-28 20:31:00,113 Elm St, New York City,NY,10001 +299210,Lightning Charging Cable,1,14.95,2019-12-18 12:20:00,25 11th St, Portland,OR,97035 +299211,Wired Headphones,1,11.99,2019-12-09 19:26:00,854 River St, San Francisco,CA,94016 +299212,Lightning Charging Cable,1,14.95,2019-12-11 22:55:00,64 Chestnut St, Los Angeles,CA,90001 +299213,AAA Batteries (4-pack),1,2.99,2019-12-23 17:59:00,33 South St, Atlanta,GA,30301 +299214,USB-C Charging Cable,1,11.95,2019-12-07 16:36:00,146 South St, Boston,MA,02215 +299215,iPhone,1,700.0,2019-12-05 10:56:00,156 Willow St, Los Angeles,CA,90001 +299216,Apple Airpods Headphones,1,150.0,2019-12-29 11:26:00,531 9th St, Portland,OR,97035 +299217,AA Batteries (4-pack),2,3.84,2019-12-22 22:57:00,422 Cherry St, Los Angeles,CA,90001 +299218,USB-C Charging Cable,1,11.95,2019-12-25 10:49:00,908 Cherry St, San Francisco,CA,94016 +299219,Lightning Charging Cable,1,14.95,2019-12-16 22:48:00,798 2nd St, Dallas,TX,75001 +299220,27in 4K Gaming Monitor,1,389.99,2019-12-05 18:56:00,874 Hill St, Atlanta,GA,30301 +299221,34in Ultrawide Monitor,1,379.99,2019-12-07 21:10:00,832 Chestnut St, San Francisco,CA,94016 +299222,Apple Airpods Headphones,1,150.0,2019-12-19 20:03:00,339 Wilson St, San Francisco,CA,94016 +299223,20in Monitor,1,109.99,2019-12-23 23:04:00,388 Washington St, Los Angeles,CA,90001 +299224,20in Monitor,1,109.99,2019-12-05 19:47:00,526 Ridge St, Atlanta,GA,30301 +299225,AA Batteries (4-pack),1,3.84,2019-12-24 16:46:00,746 Cedar St, Los Angeles,CA,90001 +299226,Flatscreen TV,1,300.0,2019-12-01 09:08:00,907 Willow St, Los Angeles,CA,90001 +299227,Lightning Charging Cable,1,14.95,2019-12-08 00:00:00,568 Forest St, San Francisco,CA,94016 +299228,34in Ultrawide Monitor,1,379.99,2019-12-13 10:55:00,482 2nd St, Los Angeles,CA,90001 +299229,AAA Batteries (4-pack),1,2.99,2019-12-26 14:04:00,208 Forest St, Atlanta,GA,30301 +299230,iPhone,1,700.0,2019-12-06 11:32:00,611 Maple St, Seattle,WA,98101 +299231,Apple Airpods Headphones,1,150.0,2019-12-05 22:58:00,403 14th St, New York City,NY,10001 +299232,Lightning Charging Cable,1,14.95,2019-12-07 11:22:00,116 Forest St, San Francisco,CA,94016 +299233,27in 4K Gaming Monitor,1,389.99,2019-12-10 11:26:00,448 Wilson St, New York City,NY,10001 +299234,Apple Airpods Headphones,1,150.0,2019-12-21 19:11:00,12 Johnson St, Boston,MA,02215 +299235,Vareebadd Phone,1,400.0,2019-12-21 12:47:00,452 Adams St, Austin,TX,73301 +299236,iPhone,1,700.0,2019-12-10 16:13:00,726 South St, Boston,MA,02215 +299236,Lightning Charging Cable,1,14.95,2019-12-10 16:13:00,726 South St, Boston,MA,02215 +299236,Wired Headphones,1,11.99,2019-12-10 16:13:00,726 South St, Boston,MA,02215 +299237,Bose SoundSport Headphones,1,99.99,2019-12-09 10:10:00,297 Main St, Portland,OR,97035 +299238,20in Monitor,1,109.99,2019-12-13 18:26:00,89 Maple St, San Francisco,CA,94016 +299239,Bose SoundSport Headphones,1,99.99,2019-12-15 13:11:00,767 Hickory St, Boston,MA,02215 +299240,Bose SoundSport Headphones,1,99.99,2019-12-02 14:32:00,29 Park St, San Francisco,CA,94016 +299241,USB-C Charging Cable,1,11.95,2019-12-23 08:58:00,25 Maple St, San Francisco,CA,94016 +299242,Lightning Charging Cable,1,14.95,2019-12-14 12:27:00,109 Ridge St, Los Angeles,CA,90001 +299243,iPhone,1,700.0,2019-12-09 10:33:00,288 North St, Los Angeles,CA,90001 +299244,Macbook Pro Laptop,1,1700.0,2019-12-24 22:26:00,117 Lakeview St, San Francisco,CA,94016 +299245,Lightning Charging Cable,1,14.95,2019-12-08 15:51:00,382 South St, Atlanta,GA,30301 +299246,27in 4K Gaming Monitor,1,389.99,2019-12-18 21:27:00,640 Spruce St, Boston,MA,02215 +299247,Lightning Charging Cable,1,14.95,2019-12-01 18:11:00,869 4th St, San Francisco,CA,94016 +299248,Lightning Charging Cable,1,14.95,2019-12-03 12:05:00,359 2nd St, Atlanta,GA,30301 +299249,Flatscreen TV,1,300.0,2019-12-28 18:41:00,176 Highland St, New York City,NY,10001 +299250,iPhone,1,700.0,2019-12-22 23:33:00,462 Dogwood St, Los Angeles,CA,90001 +299251,iPhone,1,700.0,2019-12-02 22:19:00,87 Cherry St, Boston,MA,02215 +299251,Wired Headphones,1,11.99,2019-12-02 22:19:00,87 Cherry St, Boston,MA,02215 +299252,Wired Headphones,1,11.99,2019-12-12 15:30:00,59 Lincoln St, Los Angeles,CA,90001 +299253,Wired Headphones,1,11.99,2019-12-01 21:24:00,483 Adams St, Austin,TX,73301 +299254,AAA Batteries (4-pack),3,2.99,2019-12-10 12:41:00,795 South St, Portland,OR,97035 +299255,AAA Batteries (4-pack),1,2.99,2019-12-28 20:55:00,344 Madison St, Seattle,WA,98101 +299256,Macbook Pro Laptop,1,1700.0,2019-12-20 13:03:00,890 Cedar St, Dallas,TX,75001 +299257,Google Phone,1,600.0,2019-12-30 10:01:00,728 1st St, New York City,NY,10001 +299258,USB-C Charging Cable,1,11.95,2019-12-27 12:28:00,240 14th St, San Francisco,CA,94016 +299259,AAA Batteries (4-pack),1,2.99,2019-12-21 22:02:00,127 10th St, Atlanta,GA,30301 +299260,AAA Batteries (4-pack),1,2.99,2019-12-04 23:09:00,447 Center St, Los Angeles,CA,90001 +299261,Google Phone,1,600.0,2019-12-10 18:35:00,75 Center St, New York City,NY,10001 +299262,Vareebadd Phone,1,400.0,2019-12-24 09:18:00,331 11th St, Boston,MA,02215 +299263,Wired Headphones,1,11.99,2019-12-28 16:57:00,939 12th St, Austin,TX,73301 +299264,Apple Airpods Headphones,1,150.0,2019-12-12 09:44:00,429 Highland St, San Francisco,CA,94016 +299265,Apple Airpods Headphones,1,150.0,2019-12-20 22:14:00,481 North St, Atlanta,GA,30301 +299266,Bose SoundSport Headphones,1,99.99,2019-12-12 19:54:00,6 8th St, San Francisco,CA,94016 +299267,AAA Batteries (4-pack),1,2.99,2019-12-05 11:01:00,37 Cherry St, Dallas,TX,75001 +299268,Wired Headphones,1,11.99,2019-12-23 05:38:00,548 Meadow St, San Francisco,CA,94016 +299268,AAA Batteries (4-pack),1,2.99,2019-12-23 05:38:00,548 Meadow St, San Francisco,CA,94016 +299269,AAA Batteries (4-pack),1,2.99,2019-12-11 12:07:00,526 9th St, San Francisco,CA,94016 +299270,34in Ultrawide Monitor,1,379.99,2019-12-16 18:22:00,721 1st St, Dallas,TX,75001 +299271,Lightning Charging Cable,1,14.95,2019-12-25 00:17:00,140 Forest St, Atlanta,GA,30301 +299272,USB-C Charging Cable,1,11.95,2019-12-22 17:41:00,121 7th St, Dallas,TX,75001 +299273,Lightning Charging Cable,1,14.95,2019-12-17 13:48:00,750 Willow St, Los Angeles,CA,90001 +299274,iPhone,1,700.0,2019-12-05 14:03:00,814 5th St, Atlanta,GA,30301 +299275,34in Ultrawide Monitor,1,379.99,2019-12-08 06:23:00,888 Meadow St, Austin,TX,73301 +299276,20in Monitor,1,109.99,2019-12-08 18:35:00,773 Adams St, Boston,MA,02215 +299277,Bose SoundSport Headphones,1,99.99,2019-12-19 11:59:00,797 Chestnut St, Los Angeles,CA,90001 +299278,iPhone,1,700.0,2019-12-01 18:54:00,57 Park St, San Francisco,CA,94016 +299278,Wired Headphones,1,11.99,2019-12-01 18:54:00,57 Park St, San Francisco,CA,94016 +299279,20in Monitor,1,109.99,2019-12-14 22:40:00,174 West St, Seattle,WA,98101 +299280,AAA Batteries (4-pack),1,2.99,2019-12-22 20:07:00,11 Dogwood St, Boston,MA,02215 +299281,Macbook Pro Laptop,1,1700.0,2019-12-10 10:11:00,118 Hickory St, Los Angeles,CA,90001 +299282,Apple Airpods Headphones,1,150.0,2019-12-10 13:29:00,58 Hill St, Los Angeles,CA,90001 +299283,Macbook Pro Laptop,1,1700.0,2019-12-13 22:37:00,816 2nd St, Dallas,TX,75001 +299284,Lightning Charging Cable,2,14.95,2019-12-28 15:02:00,441 Walnut St, Seattle,WA,98101 +299285,20in Monitor,1,109.99,2019-12-01 20:13:00,640 11th St, Los Angeles,CA,90001 +299286,Apple Airpods Headphones,1,150.0,2019-12-26 11:07:00,773 Park St, New York City,NY,10001 +299287,Wired Headphones,1,11.99,2019-12-15 20:44:00,591 Hill St, New York City,NY,10001 +299288,AA Batteries (4-pack),1,3.84,2019-12-05 15:21:00,184 Park St, Los Angeles,CA,90001 +299289,AAA Batteries (4-pack),1,2.99,2019-12-20 21:25:00,95 Willow St, San Francisco,CA,94016 +299290,Lightning Charging Cable,1,14.95,2019-12-14 09:41:00,73 Dogwood St, Seattle,WA,98101 +299291,AAA Batteries (4-pack),1,2.99,2019-12-10 20:09:00,370 Washington St, Portland,OR,97035 +299292,AA Batteries (4-pack),1,3.84,2019-12-21 19:16:00,204 Sunset St, Seattle,WA,98101 +299293,Bose SoundSport Headphones,1,99.99,2019-12-13 09:21:00,600 River St, Dallas,TX,75001 +299294,USB-C Charging Cable,1,11.95,2019-12-21 12:43:00,383 Jackson St, Portland,OR,97035 +299295,USB-C Charging Cable,1,11.95,2019-12-26 20:04:00,213 Hickory St, Atlanta,GA,30301 +299296,AAA Batteries (4-pack),1,2.99,2019-12-23 18:26:00,58 Jefferson St, Los Angeles,CA,90001 +299297,Apple Airpods Headphones,1,150.0,2019-12-12 02:34:00,953 Hickory St, Seattle,WA,98101 +299298,Bose SoundSport Headphones,1,99.99,2019-12-26 22:52:00,646 Walnut St, New York City,NY,10001 +299299,Apple Airpods Headphones,1,150.0,2019-12-24 10:08:00,673 Spruce St, Dallas,TX,75001 +299300,Lightning Charging Cable,1,14.95,2019-12-06 16:49:00,212 Chestnut St, Seattle,WA,98101 +299301,Flatscreen TV,1,300.0,2019-12-22 18:31:00,697 14th St, Seattle,WA,98101 +299302,27in FHD Monitor,1,149.99,2019-12-18 12:05:00,699 Madison St, Boston,MA,02215 +299303,iPhone,1,700.0,2019-12-10 22:46:00,199 Dogwood St, New York City,NY,10001 +299304,Wired Headphones,2,11.99,2019-12-04 11:00:00,570 Highland St, New York City,NY,10001 +299305,iPhone,1,700.0,2019-12-10 20:06:00,784 4th St, San Francisco,CA,94016 +299306,Lightning Charging Cable,1,14.95,2019-12-02 14:57:00,628 11th St, New York City,NY,10001 +299307,USB-C Charging Cable,2,11.95,2019-12-29 12:24:00,940 11th St, Austin,TX,73301 +299308,USB-C Charging Cable,1,11.95,2019-12-11 16:23:00,606 Ridge St, Los Angeles,CA,90001 +299309,AA Batteries (4-pack),1,3.84,2019-12-28 14:31:00,572 8th St, Atlanta,GA,30301 +299310,20in Monitor,1,109.99,2019-12-19 19:00:00,501 Center St, San Francisco,CA,94016 +299311,USB-C Charging Cable,2,11.95,2019-12-05 18:39:00,403 11th St, New York City,NY,10001 +299312,Apple Airpods Headphones,1,150.0,2019-12-25 20:32:00,913 River St, Seattle,WA,98101 +299313,Lightning Charging Cable,1,14.95,2019-12-29 09:30:00,802 Meadow St, San Francisco,CA,94016 +299314,Lightning Charging Cable,1,14.95,2019-12-16 20:10:00,193 Main St, Atlanta,GA,30301 +299315,Wired Headphones,1,11.99,2019-12-29 12:44:00,185 5th St, New York City,NY,10001 +299316,Wired Headphones,1,11.99,2019-12-22 13:57:00,235 Dogwood St, Atlanta,GA,30301 +299317,USB-C Charging Cable,1,11.95,2019-12-13 17:00:00,812 Sunset St, Los Angeles,CA,90001 +299318,Google Phone,1,600.0,2019-12-20 16:46:00,713 Hill St, Austin,TX,73301 +299319,Bose SoundSport Headphones,1,99.99,2019-12-18 21:32:00,883 Cherry St, Los Angeles,CA,90001 +299320,iPhone,1,700.0,2019-12-12 15:14:00,196 Church St, Los Angeles,CA,90001 +299321,Macbook Pro Laptop,1,1700.0,2019-12-23 19:47:00,309 Park St, Los Angeles,CA,90001 +299322,AAA Batteries (4-pack),2,2.99,2019-12-24 09:28:00,955 Forest St, Seattle,WA,98101 +299323,Bose SoundSport Headphones,1,99.99,2019-12-23 21:20:00,692 8th St, Austin,TX,73301 +299324,AAA Batteries (4-pack),1,2.99,2019-12-13 08:35:00,497 Hill St, San Francisco,CA,94016 +299325,34in Ultrawide Monitor,1,379.99,2019-12-04 07:49:00,155 Johnson St, Boston,MA,02215 +299326,Apple Airpods Headphones,1,150.0,2019-12-17 23:07:00,218 Jackson St, San Francisco,CA,94016 +299327,AAA Batteries (4-pack),1,2.99,2019-12-27 20:38:00,650 Highland St, Boston,MA,02215 +299328,iPhone,1,700.0,2019-12-21 12:11:00,690 Ridge St, Boston,MA,02215 +299329,USB-C Charging Cable,1,11.95,2019-12-12 11:02:00,217 Madison St, New York City,NY,10001 +299330,Wired Headphones,1,11.99,2019-12-07 22:42:00,37 7th St, Los Angeles,CA,90001 +299331,Wired Headphones,1,11.99,2019-12-15 11:47:00,918 Center St, Dallas,TX,75001 +299332,Apple Airpods Headphones,1,150.0,2019-12-18 08:28:00,486 Washington St, Atlanta,GA,30301 +299333,AAA Batteries (4-pack),1,2.99,2019-12-29 19:32:00,101 Main St, Dallas,TX,75001 +299334,Apple Airpods Headphones,1,150.0,2019-12-25 14:57:00,579 Johnson St, San Francisco,CA,94016 +299335,27in 4K Gaming Monitor,1,389.99,2019-12-13 20:51:00,334 Johnson St, Dallas,TX,75001 +299336,AAA Batteries (4-pack),1,2.99,2019-12-01 12:15:00,580 Maple St, San Francisco,CA,94016 +299337,27in 4K Gaming Monitor,1,389.99,2019-12-13 20:04:00,163 Hill St, New York City,NY,10001 +299338,AAA Batteries (4-pack),1,2.99,2019-12-27 20:55:00,921 Washington St, San Francisco,CA,94016 +299339,Bose SoundSport Headphones,1,99.99,2019-12-20 12:15:00,963 11th St, Boston,MA,02215 +299340,27in FHD Monitor,1,149.99,2019-12-16 11:12:00,206 Elm St, Atlanta,GA,30301 +299341,AAA Batteries (4-pack),4,2.99,2019-12-05 05:56:00,643 1st St, Dallas,TX,75001 +299342,AAA Batteries (4-pack),1,2.99,2019-12-05 12:27:00,798 Chestnut St, Seattle,WA,98101 +299343,Wired Headphones,1,11.99,2019-12-17 19:05:00,621 River St, Seattle,WA,98101 +299344,USB-C Charging Cable,1,11.95,2019-12-02 23:21:00,646 6th St, Los Angeles,CA,90001 +299345,20in Monitor,1,109.99,2019-12-20 12:09:00,440 5th St, Dallas,TX,75001 +299346,34in Ultrawide Monitor,1,379.99,2019-12-19 11:17:00,593 Center St, Austin,TX,73301 +299347,Bose SoundSport Headphones,1,99.99,2019-12-10 12:15:00,963 Dogwood St, Los Angeles,CA,90001 +299348,34in Ultrawide Monitor,1,379.99,2019-12-20 06:15:00,170 Washington St, New York City,NY,10001 +299349,27in 4K Gaming Monitor,1,389.99,2019-12-10 23:32:00,917 River St, Los Angeles,CA,90001 +299350,Bose SoundSport Headphones,1,99.99,2019-12-15 10:44:00,762 11th St, San Francisco,CA,94016 +299351,Wired Headphones,1,11.99,2019-12-29 07:14:00,273 Walnut St, Dallas,TX,75001 +299352,Wired Headphones,1,11.99,2019-12-10 11:21:00,768 Park St, Seattle,WA,98101 +299353,USB-C Charging Cable,1,11.95,2019-12-28 22:38:00,697 Pine St, Portland,ME,04101 +299354,USB-C Charging Cable,1,11.95,2019-12-07 07:46:00,989 Elm St, Seattle,WA,98101 +299355,Google Phone,1,600.0,2019-12-03 17:20:00,898 Lakeview St, San Francisco,CA,94016 +299356,AAA Batteries (4-pack),1,2.99,2019-12-01 04:32:00,512 Lake St, Dallas,TX,75001 +299357,Bose SoundSport Headphones,1,99.99,2019-12-29 18:04:00,516 6th St, Seattle,WA,98101 +299358,34in Ultrawide Monitor,1,379.99,2019-12-03 20:07:00,707 Hill St, San Francisco,CA,94016 +299359,AAA Batteries (4-pack),1,2.99,2019-12-24 12:41:00,357 Center St, San Francisco,CA,94016 +299360,Lightning Charging Cable,1,14.95,2019-12-29 13:57:00,784 Adams St, Los Angeles,CA,90001 +299361,27in FHD Monitor,1,149.99,2019-12-29 09:06:00,770 Dogwood St, Portland,OR,97035 +299362,Apple Airpods Headphones,1,150.0,2019-12-10 16:27:00,556 South St, Dallas,TX,75001 +299363,USB-C Charging Cable,1,11.95,2019-12-05 18:28:00,869 North St, San Francisco,CA,94016 +299364,AAA Batteries (4-pack),2,2.99,2019-12-13 21:59:00,269 Meadow St, Boston,MA,02215 +299365,Google Phone,1,600.0,2019-12-22 22:33:00,814 Walnut St, Austin,TX,73301 +299366,LG Dryer,1,600.0,2019-12-18 08:15:00,829 Johnson St, Los Angeles,CA,90001 +299367,Apple Airpods Headphones,1,150.0,2019-12-22 16:07:00,331 Elm St, San Francisco,CA,94016 +299368,AA Batteries (4-pack),1,3.84,2019-12-26 21:43:00,718 5th St, Atlanta,GA,30301 +299369,Lightning Charging Cable,1,14.95,2019-12-06 17:11:00,29 2nd St, Dallas,TX,75001 +299370,Lightning Charging Cable,1,14.95,2019-12-30 16:56:00,631 13th St, San Francisco,CA,94016 +299371,USB-C Charging Cable,1,11.95,2019-12-31 22:20:00,275 Highland St, Dallas,TX,75001 +299372,AA Batteries (4-pack),1,3.84,2019-12-13 10:25:00,195 1st St, Dallas,TX,75001 +299373,Lightning Charging Cable,1,14.95,2019-12-18 12:43:00,204 Lake St, Atlanta,GA,30301 +299374,Macbook Pro Laptop,1,1700.0,2019-12-22 11:22:00,960 Cedar St, Dallas,TX,75001 +299375,20in Monitor,1,109.99,2019-12-17 11:05:00,166 10th St, New York City,NY,10001 +299376,Lightning Charging Cable,1,14.95,2019-12-12 22:03:00,218 Meadow St, Boston,MA,02215 +299377,AAA Batteries (4-pack),1,2.99,2019-12-27 13:45:00,210 South St, Dallas,TX,75001 +299378,Vareebadd Phone,1,400.0,2019-12-31 23:37:00,876 Lincoln St, San Francisco,CA,94016 +299379,USB-C Charging Cable,2,11.95,2019-12-26 22:14:00,79 Jackson St, Los Angeles,CA,90001 +299380,Lightning Charging Cable,1,14.95,2019-12-04 18:21:00,62 11th St, Portland,OR,97035 +299381,AA Batteries (4-pack),1,3.84,2019-12-17 15:40:00,195 West St, Atlanta,GA,30301 +299382,Lightning Charging Cable,1,14.95,2019-12-28 16:28:00,430 5th St, Los Angeles,CA,90001 +299383,AAA Batteries (4-pack),1,2.99,2019-12-10 14:39:00,505 West St, San Francisco,CA,94016 +299384,Macbook Pro Laptop,1,1700.0,2019-12-31 19:54:00,308 Pine St, San Francisco,CA,94016 +299385,AAA Batteries (4-pack),1,2.99,2019-12-15 17:34:00,28 Pine St, Portland,OR,97035 +299386,USB-C Charging Cable,1,11.95,2019-12-21 11:31:00,838 Forest St, San Francisco,CA,94016 +299387,Bose SoundSport Headphones,1,99.99,2019-12-29 15:56:00,828 Hickory St, Los Angeles,CA,90001 +299388,Lightning Charging Cable,1,14.95,2019-12-31 19:33:00,158 Dogwood St, Los Angeles,CA,90001 +299389,Flatscreen TV,1,300.0,2019-12-26 23:12:00,699 Highland St, San Francisco,CA,94016 +299390,Wired Headphones,1,11.99,2019-12-14 15:52:00,979 Church St, Dallas,TX,75001 +299391,AA Batteries (4-pack),1,3.84,2019-12-15 21:56:00,534 Hill St, San Francisco,CA,94016 +299392,Lightning Charging Cable,1,14.95,2019-12-20 16:37:00,280 13th St, Boston,MA,02215 +299393,AAA Batteries (4-pack),3,2.99,2019-12-14 13:02:00,736 12th St, Boston,MA,02215 +299394,Lightning Charging Cable,1,14.95,2019-12-12 09:55:00,582 4th St, Portland,ME,04101 +299395,AA Batteries (4-pack),1,3.84,2019-12-19 16:42:00,309 Pine St, New York City,NY,10001 +299396,Apple Airpods Headphones,1,150.0,2019-12-25 16:09:00,395 14th St, New York City,NY,10001 +299397,AA Batteries (4-pack),1,3.84,2019-12-08 22:02:00,517 Jackson St, Los Angeles,CA,90001 +299398,iPhone,1,700.0,2019-12-09 12:23:00,562 1st St, San Francisco,CA,94016 +299398,Apple Airpods Headphones,1,150.0,2019-12-09 12:23:00,562 1st St, San Francisco,CA,94016 +299399,Apple Airpods Headphones,1,150.0,2019-12-15 10:40:00,171 Adams St, San Francisco,CA,94016 +299400,AA Batteries (4-pack),3,3.84,2019-12-21 15:47:00,822 Main St, San Francisco,CA,94016 +299401,Apple Airpods Headphones,1,150.0,2019-12-29 06:54:00,503 8th St, New York City,NY,10001 +299402,USB-C Charging Cable,1,11.95,2019-12-18 20:19:00,507 14th St, San Francisco,CA,94016 +299403,Lightning Charging Cable,1,14.95,2019-12-19 09:59:00,484 North St, San Francisco,CA,94016 +299404,USB-C Charging Cable,1,11.95,2019-12-21 10:18:00,878 Lincoln St, Boston,MA,02215 +299405,Bose SoundSport Headphones,1,99.99,2019-12-10 19:05:00,207 12th St, Portland,ME,04101 +299406,Lightning Charging Cable,1,14.95,2019-12-12 19:25:00,945 Jackson St, New York City,NY,10001 +299407,AAA Batteries (4-pack),1,2.99,2019-12-19 23:45:00,647 Sunset St, Portland,OR,97035 +299408,AA Batteries (4-pack),2,3.84,2019-12-27 11:26:00,827 4th St, San Francisco,CA,94016 +299409,Lightning Charging Cable,1,14.95,2019-12-14 10:19:00,753 9th St, Seattle,WA,98101 +299410,Wired Headphones,1,11.99,2019-12-13 14:52:00,192 5th St, Boston,MA,02215 +299411,USB-C Charging Cable,1,11.95,2019-12-21 14:35:00,29 North St, Atlanta,GA,30301 +299412,Lightning Charging Cable,1,14.95,2019-12-04 08:25:00,648 Spruce St, New York City,NY,10001 +299413,27in FHD Monitor,1,149.99,2019-12-26 17:34:00,107 Pine St, San Francisco,CA,94016 +299414,Bose SoundSport Headphones,1,99.99,2019-12-09 08:21:00,653 Dogwood St, Portland,OR,97035 +299415,Flatscreen TV,1,300.0,2019-12-14 16:25:00,402 River St, New York City,NY,10001 +299416,Google Phone,1,600.0,2019-12-31 19:48:00,950 Center St, Boston,MA,02215 +299417,AAA Batteries (4-pack),1,2.99,2019-12-07 13:26:00,592 Pine St, San Francisco,CA,94016 +299418,ThinkPad Laptop,1,999.99,2019-12-17 19:46:00,897 Adams St, Atlanta,GA,30301 +299419,Wired Headphones,1,11.99,2019-12-20 12:45:00,495 Washington St, San Francisco,CA,94016 +299420,USB-C Charging Cable,1,11.95,2019-12-10 20:17:00,630 Jackson St, Los Angeles,CA,90001 +299421,Wired Headphones,1,11.99,2019-12-04 15:25:00,707 North St, San Francisco,CA,94016 +299422,34in Ultrawide Monitor,1,379.99,2019-12-11 13:47:00,267 Madison St, Seattle,WA,98101 +299423,Apple Airpods Headphones,1,150.0,2019-12-02 22:48:00,440 Maple St, Boston,MA,02215 +299424,Macbook Pro Laptop,1,1700.0,2019-12-03 12:54:00,936 Highland St, San Francisco,CA,94016 +299425,Wired Headphones,1,11.99,2019-12-14 14:54:00,902 Jefferson St, Dallas,TX,75001 +299426,AAA Batteries (4-pack),3,2.99,2019-12-15 13:31:00,840 5th St, San Francisco,CA,94016 +299427,AA Batteries (4-pack),1,3.84,2019-12-02 22:15:00,758 Ridge St, Atlanta,GA,30301 +299428,USB-C Charging Cable,1,11.95,2019-12-21 19:23:00,590 Park St, Seattle,WA,98101 +299429,AA Batteries (4-pack),1,3.84,2019-12-28 06:14:00,952 Hill St, Portland,OR,97035 +299430,Apple Airpods Headphones,1,150.0,2019-12-30 15:16:00,470 Willow St, San Francisco,CA,94016 +299431,Wired Headphones,1,11.99,2019-12-05 22:18:00,412 Madison St, San Francisco,CA,94016 +299432,34in Ultrawide Monitor,1,379.99,2019-12-27 15:52:00,886 5th St, Portland,OR,97035 +299433,USB-C Charging Cable,1,11.95,2019-12-21 20:06:00,753 South St, Atlanta,GA,30301 +299434,AAA Batteries (4-pack),4,2.99,2019-12-20 18:43:00,664 Ridge St, Boston,MA,02215 +299434,27in FHD Monitor,1,149.99,2019-12-20 18:43:00,664 Ridge St, Boston,MA,02215 +299435,Wired Headphones,1,11.99,2019-12-18 13:21:00,492 9th St, Los Angeles,CA,90001 +299436,34in Ultrawide Monitor,1,379.99,2019-12-29 19:47:00,804 7th St, New York City,NY,10001 +299437,iPhone,1,700.0,2019-12-12 13:50:00,198 Hill St, Boston,MA,02215 +299438,Wired Headphones,1,11.99,2019-12-27 17:37:00,679 Lake St, San Francisco,CA,94016 +299439,ThinkPad Laptop,1,999.99,2019-12-03 08:23:00,59 Willow St, Los Angeles,CA,90001 +299440,Bose SoundSport Headphones,1,99.99,2019-12-04 18:27:00,129 Chestnut St, Los Angeles,CA,90001 +299441,Lightning Charging Cable,1,14.95,2019-12-28 08:18:00,514 Meadow St, Los Angeles,CA,90001 +299442,iPhone,1,700.0,2019-12-26 09:17:00,416 Center St, New York City,NY,10001 +299442,Wired Headphones,1,11.99,2019-12-26 09:17:00,416 Center St, New York City,NY,10001 +299443,ThinkPad Laptop,1,999.99,2019-12-12 14:32:00,776 Sunset St, New York City,NY,10001 +299444,AA Batteries (4-pack),5,3.84,2019-12-28 19:11:00,142 Ridge St, Los Angeles,CA,90001 +299445,USB-C Charging Cable,1,11.95,2019-12-08 14:35:00,291 Madison St, New York City,NY,10001 +299446,Bose SoundSport Headphones,1,99.99,2019-12-19 10:05:00,773 Park St, San Francisco,CA,94016 +299447,27in 4K Gaming Monitor,1,389.99,2019-12-04 10:57:00,791 Washington St, Atlanta,GA,30301 +299448,Wired Headphones,1,11.99,2019-12-13 20:28:00,598 11th St, New York City,NY,10001 +299449,Bose SoundSport Headphones,1,99.99,2019-12-12 15:15:00,511 13th St, New York City,NY,10001 +299450,AAA Batteries (4-pack),2,2.99,2019-12-11 10:15:00,820 13th St, New York City,NY,10001 +299451,Macbook Pro Laptop,1,1700.0,2019-12-22 10:24:00,527 Park St, New York City,NY,10001 +299452,AAA Batteries (4-pack),1,2.99,2019-12-21 19:44:00,721 9th St, Atlanta,GA,30301 +299453,27in FHD Monitor,1,149.99,2019-12-12 13:09:00,127 7th St, San Francisco,CA,94016 +299454,AA Batteries (4-pack),1,3.84,2019-12-10 20:08:00,681 14th St, Portland,OR,97035 +299455,AA Batteries (4-pack),2,3.84,2019-12-29 08:24:00,976 Center St, Dallas,TX,75001 +299456,Apple Airpods Headphones,1,150.0,2019-12-30 22:06:00,584 4th St, Los Angeles,CA,90001 +299457,Apple Airpods Headphones,1,150.0,2019-12-16 13:06:00,399 Cedar St, New York City,NY,10001 +299458,Wired Headphones,1,11.99,2019-12-10 10:01:00,270 River St, Portland,OR,97035 +299459,USB-C Charging Cable,1,11.95,2019-12-23 17:33:00,771 Elm St, San Francisco,CA,94016 +299460,Bose SoundSport Headphones,1,99.99,2019-12-08 13:11:00,809 North St, Portland,OR,97035 +299461,Lightning Charging Cable,1,14.95,2019-12-11 20:16:00,316 4th St, Atlanta,GA,30301 +299462,AAA Batteries (4-pack),2,2.99,2019-12-31 15:47:00,223 10th St, Los Angeles,CA,90001 +299463,AA Batteries (4-pack),3,3.84,2019-12-20 17:17:00,979 13th St, Los Angeles,CA,90001 +299464,27in 4K Gaming Monitor,1,389.99,2019-12-26 20:46:00,699 Walnut St, New York City,NY,10001 +299465,Flatscreen TV,1,300.0,2019-12-22 19:08:00,858 Chestnut St, San Francisco,CA,94016 +299466,AA Batteries (4-pack),1,3.84,2019-12-22 10:12:00,519 Cherry St, Los Angeles,CA,90001 +299467,Lightning Charging Cable,1,14.95,2019-12-19 11:16:00,337 Main St, San Francisco,CA,94016 +299468,USB-C Charging Cable,1,11.95,2019-12-29 17:08:00,317 Johnson St, Los Angeles,CA,90001 +299469,34in Ultrawide Monitor,1,379.99,2019-12-13 00:29:00,726 11th St, New York City,NY,10001 +299470,Flatscreen TV,1,300.0,2019-12-21 17:14:00,996 Johnson St, New York City,NY,10001 +299471,34in Ultrawide Monitor,1,379.99,2019-12-28 12:46:00,112 Spruce St, Los Angeles,CA,90001 +299472,AAA Batteries (4-pack),1,2.99,2019-12-21 03:52:00,450 6th St, Los Angeles,CA,90001 +299473,34in Ultrawide Monitor,1,379.99,2019-12-07 12:31:00,619 Willow St, Atlanta,GA,30301 +299474,Bose SoundSport Headphones,1,99.99,2019-12-06 23:28:00,909 1st St, Dallas,TX,75001 +299475,AAA Batteries (4-pack),1,2.99,2019-12-20 15:52:00,378 Hickory St, New York City,NY,10001 +299476,Lightning Charging Cable,1,14.95,2019-12-06 16:46:00,815 Cherry St, Portland,ME,04101 +299477,AA Batteries (4-pack),1,3.84,2019-12-28 19:15:00,670 Walnut St, Portland,OR,97035 +299478,AA Batteries (4-pack),1,3.84,2019-12-07 16:35:00,499 Ridge St, Los Angeles,CA,90001 +299479,34in Ultrawide Monitor,1,379.99,2019-12-03 20:34:00,294 Ridge St, Los Angeles,CA,90001 +299480,Wired Headphones,1,11.99,2019-12-09 23:19:00,397 12th St, Dallas,TX,75001 +299481,AA Batteries (4-pack),3,3.84,2019-12-06 20:16:00,372 Main St, New York City,NY,10001 +299482,Apple Airpods Headphones,1,150.0,2019-12-08 23:03:00,684 Hill St, Portland,OR,97035 +299483,Macbook Pro Laptop,1,1700.0,2019-12-15 14:27:00,235 Sunset St, Los Angeles,CA,90001 +299484,Vareebadd Phone,1,400.0,2019-12-29 00:46:00,959 Church St, Seattle,WA,98101 +299485,20in Monitor,1,109.99,2019-12-29 16:29:00,485 13th St, Seattle,WA,98101 +299486,34in Ultrawide Monitor,1,379.99,2019-12-01 23:05:00,678 Cherry St, San Francisco,CA,94016 +299487,AAA Batteries (4-pack),1,2.99,2019-12-05 02:12:00,834 West St, Los Angeles,CA,90001 +299488,Apple Airpods Headphones,1,150.0,2019-12-29 12:30:00,752 1st St, Austin,TX,73301 +299489,iPhone,1,700.0,2019-12-05 20:18:00,327 Hickory St, New York City,NY,10001 +299490,Lightning Charging Cable,1,14.95,2019-12-08 13:42:00,98 Lincoln St, Austin,TX,73301 +299491,Lightning Charging Cable,1,14.95,2019-12-20 19:59:00,468 Center St, Boston,MA,02215 +299492,Lightning Charging Cable,1,14.95,2019-12-13 11:29:00,451 Spruce St, Portland,OR,97035 +299493,AAA Batteries (4-pack),3,2.99,2019-12-10 07:47:00,599 Sunset St, Portland,OR,97035 +299494,AA Batteries (4-pack),1,3.84,2019-12-10 16:53:00,616 Ridge St, New York City,NY,10001 +299495,Lightning Charging Cable,1,14.95,2019-12-24 19:47:00,878 Hickory St, Boston,MA,02215 +299496,Apple Airpods Headphones,1,150.0,2019-12-24 12:40:00,784 Washington St, San Francisco,CA,94016 +299497,27in FHD Monitor,1,149.99,2019-12-19 10:53:00,410 Hill St, Boston,MA,02215 +299498,Wired Headphones,1,11.99,2019-12-16 01:11:00,242 Sunset St, Atlanta,GA,30301 +299499,AA Batteries (4-pack),2,3.84,2019-12-18 19:46:00,723 Dogwood St, Los Angeles,CA,90001 +299500,Lightning Charging Cable,1,14.95,2019-12-24 22:19:00,926 North St, San Francisco,CA,94016 +299501,AA Batteries (4-pack),1,3.84,2019-12-23 21:18:00,151 14th St, Seattle,WA,98101 +299502,AA Batteries (4-pack),2,3.84,2019-12-24 12:34:00,696 2nd St, San Francisco,CA,94016 +299503,34in Ultrawide Monitor,1,379.99,2019-12-03 14:48:00,239 Main St, Austin,TX,73301 +299504,Lightning Charging Cable,1,14.95,2019-12-12 19:57:00,485 Lake St, San Francisco,CA,94016 +299505,Wired Headphones,1,11.99,2019-12-18 12:15:00,363 Jackson St, San Francisco,CA,94016 +299506,Apple Airpods Headphones,1,150.0,2019-12-07 09:35:00,284 9th St, Los Angeles,CA,90001 +299507,Apple Airpods Headphones,1,150.0,2019-12-14 23:48:00,529 Johnson St, Los Angeles,CA,90001 +299508,AA Batteries (4-pack),2,3.84,2019-12-14 21:31:00,997 Sunset St, Dallas,TX,75001 +299509,iPhone,1,700.0,2019-12-24 14:18:00,404 River St, Atlanta,GA,30301 +299510,USB-C Charging Cable,1,11.95,2019-12-16 04:21:00,635 2nd St, Boston,MA,02215 +299511,Wired Headphones,1,11.99,2019-12-28 14:06:00,393 12th St, San Francisco,CA,94016 +299512,27in 4K Gaming Monitor,1,389.99,2019-12-20 02:24:00,988 River St, Los Angeles,CA,90001 +299513,USB-C Charging Cable,1,11.95,2019-12-07 21:57:00,17 Highland St, Austin,TX,73301 +299514,Apple Airpods Headphones,1,150.0,2019-12-26 10:04:00,568 Elm St, San Francisco,CA,94016 +299515,Lightning Charging Cable,1,14.95,2019-12-16 04:04:00,81 14th St, San Francisco,CA,94016 +299516,Lightning Charging Cable,1,14.95,2019-12-27 14:13:00,319 Cherry St, San Francisco,CA,94016 +299517,Apple Airpods Headphones,1,150.0,2019-12-28 21:14:00,803 Pine St, Dallas,TX,75001 +299518,Flatscreen TV,1,300.0,2019-12-07 10:24:00,273 Meadow St, New York City,NY,10001 +299518,34in Ultrawide Monitor,1,379.99,2019-12-07 10:24:00,273 Meadow St, New York City,NY,10001 +299519,27in 4K Gaming Monitor,1,389.99,2019-12-10 19:38:00,25 13th St, San Francisco,CA,94016 +299520,USB-C Charging Cable,1,11.95,2019-12-15 10:16:00,532 Lakeview St, New York City,NY,10001 +299521,USB-C Charging Cable,1,11.95,2019-12-29 11:56:00,599 Jefferson St, New York City,NY,10001 +299522,Wired Headphones,1,11.99,2019-12-02 06:05:00,288 Lincoln St, Los Angeles,CA,90001 +299523,Bose SoundSport Headphones,1,99.99,2019-12-14 20:52:00,30 Church St, Atlanta,GA,30301 +299524,Lightning Charging Cable,1,14.95,2019-12-01 21:15:00,610 Jefferson St, Los Angeles,CA,90001 +299525,USB-C Charging Cable,1,11.95,2019-12-25 15:41:00,158 Sunset St, San Francisco,CA,94016 +299526,USB-C Charging Cable,1,11.95,2019-12-11 19:39:00,472 8th St, San Francisco,CA,94016 +299527,iPhone,1,700.0,2019-12-29 15:31:00,796 Johnson St, Los Angeles,CA,90001 +299528,AA Batteries (4-pack),1,3.84,2019-12-15 17:18:00,298 Johnson St, Atlanta,GA,30301 +299529,Wired Headphones,1,11.99,2019-12-28 13:51:00,603 8th St, San Francisco,CA,94016 +299530,AAA Batteries (4-pack),1,2.99,2019-12-29 17:39:00,352 Walnut St, Boston,MA,02215 +299531,AA Batteries (4-pack),1,3.84,2019-12-27 06:24:00,878 Park St, Portland,OR,97035 +299532,LG Washing Machine,1,600.0,2019-12-05 11:10:00,605 Church St, San Francisco,CA,94016 +299533,AAA Batteries (4-pack),1,2.99,2019-12-04 19:50:00,127 8th St, San Francisco,CA,94016 +299534,USB-C Charging Cable,1,11.95,2019-12-19 16:35:00,99 Spruce St, Portland,ME,04101 +299535,iPhone,1,700.0,2019-12-09 00:15:00,638 4th St, Los Angeles,CA,90001 +299536,AAA Batteries (4-pack),1,2.99,2019-12-17 22:23:00,851 Wilson St, Los Angeles,CA,90001 +299536,Flatscreen TV,1,300.0,2019-12-17 22:23:00,851 Wilson St, Los Angeles,CA,90001 +299537,AA Batteries (4-pack),1,3.84,2019-12-16 12:48:00,71 14th St, Portland,ME,04101 +299538,Flatscreen TV,1,300.0,2019-12-29 23:15:00,210 North St, Atlanta,GA,30301 +299539,20in Monitor,1,109.99,2019-12-17 17:59:00,821 Willow St, Seattle,WA,98101 +299540,Google Phone,1,600.0,2019-12-20 13:20:00,321 Wilson St, Portland,OR,97035 +299540,USB-C Charging Cable,1,11.95,2019-12-20 13:20:00,321 Wilson St, Portland,OR,97035 +299541,USB-C Charging Cable,1,11.95,2019-12-18 00:17:00,538 Sunset St, Los Angeles,CA,90001 +299542,AAA Batteries (4-pack),1,2.99,2019-12-17 10:55:00,156 Center St, San Francisco,CA,94016 +299543,AAA Batteries (4-pack),1,2.99,2019-12-15 20:12:00,386 Washington St, Boston,MA,02215 +299544,Flatscreen TV,1,300.0,2019-12-09 19:09:00,9 Dogwood St, San Francisco,CA,94016 +299545,AAA Batteries (4-pack),1,2.99,2019-12-13 14:28:00,537 Jefferson St, Los Angeles,CA,90001 +299546,Wired Headphones,1,11.99,2019-12-13 11:15:00,512 Ridge St, Atlanta,GA,30301 +299547,Bose SoundSport Headphones,1,99.99,2019-12-23 03:00:00,278 2nd St, New York City,NY,10001 +299548,Wired Headphones,1,11.99,2019-12-23 16:10:00,299 West St, New York City,NY,10001 +299549,AAA Batteries (4-pack),1,2.99,2019-12-17 13:30:00,454 10th St, San Francisco,CA,94016 +299550,Lightning Charging Cable,1,14.95,2019-12-27 11:55:00,861 Forest St, Atlanta,GA,30301 +299550,AA Batteries (4-pack),2,3.84,2019-12-27 11:55:00,861 Forest St, Atlanta,GA,30301 +299551,AA Batteries (4-pack),2,3.84,2019-12-26 07:39:00,236 5th St, Los Angeles,CA,90001 +299552,USB-C Charging Cable,1,11.95,2019-12-26 22:03:00,273 6th St, San Francisco,CA,94016 +299553,Flatscreen TV,1,300.0,2019-12-17 18:56:00,136 2nd St, Los Angeles,CA,90001 +299554,Wired Headphones,1,11.99,2019-12-11 15:29:00,362 Lakeview St, Los Angeles,CA,90001 +299555,Lightning Charging Cable,1,14.95,2019-12-05 00:00:00,403 9th St, Los Angeles,CA,90001 +299556,Wired Headphones,1,11.99,2019-12-24 14:02:00,505 Dogwood St, New York City,NY,10001 +299557,Lightning Charging Cable,1,14.95,2019-12-25 02:01:00,84 5th St, Boston,MA,02215 +299558,Lightning Charging Cable,1,14.95,2019-12-31 16:48:00,216 Park St, Austin,TX,73301 +299559,ThinkPad Laptop,1,999.99,2019-12-03 23:27:00,299 South St, San Francisco,CA,94016 +299560,Apple Airpods Headphones,1,150.0,2019-12-08 13:57:00,480 Lakeview St, Los Angeles,CA,90001 +299561,20in Monitor,1,109.99,2019-12-22 19:46:00,917 Forest St, Los Angeles,CA,90001 +299562,AA Batteries (4-pack),1,3.84,2019-12-06 01:45:00,471 8th St, San Francisco,CA,94016 +299563,Lightning Charging Cable,1,14.95,2019-12-02 11:48:00,45 4th St, New York City,NY,10001 +299564,Bose SoundSport Headphones,1,99.99,2019-12-15 12:04:00,696 Chestnut St, New York City,NY,10001 +299565,27in 4K Gaming Monitor,1,389.99,2019-12-23 07:39:00,304 Hickory St, Dallas,TX,75001 +299566,AA Batteries (4-pack),1,3.84,2019-12-21 09:19:00,102 River St, Boston,MA,02215 +299567,Bose SoundSport Headphones,1,99.99,2019-12-16 19:08:00,131 Park St, Boston,MA,02215 +299568,Apple Airpods Headphones,1,150.0,2019-12-04 22:16:00,438 Jefferson St, Dallas,TX,75001 +299569,ThinkPad Laptop,1,999.99,2019-12-14 06:47:00,606 Maple St, Boston,MA,02215 +299570,Bose SoundSport Headphones,1,99.99,2019-12-22 01:25:00,140 5th St, New York City,NY,10001 +299571,27in FHD Monitor,1,149.99,2019-12-26 11:04:00,9 11th St, San Francisco,CA,94016 +299572,Apple Airpods Headphones,1,150.0,2019-12-30 09:17:00,757 Walnut St, New York City,NY,10001 +299572,Wired Headphones,1,11.99,2019-12-30 09:17:00,757 Walnut St, New York City,NY,10001 +299573,Lightning Charging Cable,1,14.95,2019-12-12 14:26:00,855 2nd St, Atlanta,GA,30301 +299573,Bose SoundSport Headphones,1,99.99,2019-12-12 14:26:00,855 2nd St, Atlanta,GA,30301 +299574,iPhone,1,700.0,2019-12-09 12:13:00,610 13th St, San Francisco,CA,94016 +299575,USB-C Charging Cable,1,11.95,2019-12-01 21:35:00,999 Dogwood St, Atlanta,GA,30301 +299576,USB-C Charging Cable,1,11.95,2019-12-26 12:48:00,442 Maple St, New York City,NY,10001 +299577,Wired Headphones,1,11.99,2019-12-11 16:09:00,79 South St, Austin,TX,73301 +299578,Lightning Charging Cable,2,14.95,2019-12-11 18:00:00,794 Cherry St, Los Angeles,CA,90001 +299579,27in FHD Monitor,1,149.99,2019-12-24 11:23:00,789 Spruce St, Boston,MA,02215 +299580,Lightning Charging Cable,1,14.95,2019-12-25 15:05:00,677 4th St, Los Angeles,CA,90001 +299581,34in Ultrawide Monitor,1,379.99,2019-12-31 10:53:00,564 Main St, Dallas,TX,75001 +299582,AAA Batteries (4-pack),1,2.99,2019-12-02 22:47:00,29 Lakeview St, Los Angeles,CA,90001 +299583,iPhone,1,700.0,2019-12-24 21:08:00,195 2nd St, Boston,MA,02215 +299584,ThinkPad Laptop,1,999.99,2019-12-12 18:51:00,866 North St, San Francisco,CA,94016 +299585,27in 4K Gaming Monitor,1,389.99,2019-12-11 20:11:00,22 River St, Boston,MA,02215 +299586,iPhone,1,700.0,2019-12-09 01:50:00,770 Highland St, Boston,MA,02215 +299586,Wired Headphones,2,11.99,2019-12-09 01:50:00,770 Highland St, Boston,MA,02215 +299587,27in FHD Monitor,1,149.99,2019-12-28 21:36:00,715 Spruce St, Los Angeles,CA,90001 +299588,AA Batteries (4-pack),1,3.84,2019-12-27 03:53:00,872 7th St, Los Angeles,CA,90001 +299589,Vareebadd Phone,1,400.0,2019-12-13 20:27:00,176 6th St, Dallas,TX,75001 +299590,Apple Airpods Headphones,1,150.0,2019-12-09 19:55:00,350 Willow St, San Francisco,CA,94016 +299591,Bose SoundSport Headphones,1,99.99,2019-12-18 11:30:00,781 Walnut St, Atlanta,GA,30301 +299592,LG Dryer,1,600.0,2019-12-26 20:22:00,722 Center St, Austin,TX,73301 +299593,AA Batteries (4-pack),3,3.84,2019-12-05 14:48:00,93 Dogwood St, San Francisco,CA,94016 +299594,USB-C Charging Cable,1,11.95,2019-12-25 17:57:00,507 Ridge St, Boston,MA,02215 +299595,Wired Headphones,1,11.99,2019-12-29 20:23:00,479 2nd St, Boston,MA,02215 +299596,Apple Airpods Headphones,1,150.0,2019-12-29 11:33:00,444 Hill St, Seattle,WA,98101 +299597,Bose SoundSport Headphones,1,99.99,2019-12-05 10:29:00,606 Willow St, New York City,NY,10001 +299598,iPhone,1,700.0,2019-12-05 12:11:00,528 Meadow St, Portland,OR,97035 +299598,Wired Headphones,1,11.99,2019-12-05 12:11:00,528 Meadow St, Portland,OR,97035 +299599,Google Phone,1,600.0,2019-12-13 06:50:00,475 Lincoln St, San Francisco,CA,94016 +299600,Lightning Charging Cable,1,14.95,2019-12-11 14:04:00,164 Center St, Los Angeles,CA,90001 +299601,Apple Airpods Headphones,1,150.0,2019-12-24 12:04:00,119 Main St, Seattle,WA,98101 +299602,Wired Headphones,1,11.99,2019-12-03 20:11:00,651 Hickory St, Boston,MA,02215 +299603,Bose SoundSport Headphones,1,99.99,2019-12-08 10:35:00,339 Adams St, Los Angeles,CA,90001 +299604,AA Batteries (4-pack),1,3.84,2019-12-27 18:43:00,707 South St, Portland,OR,97035 +299605,AA Batteries (4-pack),1,3.84,2019-12-26 18:40:00,556 Spruce St, New York City,NY,10001 +299605,AA Batteries (4-pack),3,3.84,2019-12-26 18:40:00,556 Spruce St, New York City,NY,10001 +299606,USB-C Charging Cable,1,11.95,2019-12-11 08:31:00,604 River St, New York City,NY,10001 +299607,Google Phone,1,600.0,2019-12-16 16:17:00,919 Main St, Atlanta,GA,30301 +299608,AAA Batteries (4-pack),1,2.99,2019-12-28 15:54:00,511 Meadow St, New York City,NY,10001 +299609,AAA Batteries (4-pack),3,2.99,2019-12-24 19:11:00,310 Washington St, San Francisco,CA,94016 +299610,Bose SoundSport Headphones,1,99.99,2019-12-17 09:33:00,704 4th St, Boston,MA,02215 +299611,Apple Airpods Headphones,1,150.0,2019-12-08 02:02:00,55 8th St, New York City,NY,10001 +299612,USB-C Charging Cable,1,11.95,2019-12-28 15:25:00,617 12th St, Atlanta,GA,30301 +299613,USB-C Charging Cable,1,11.95,2019-12-13 12:22:00,916 4th St, New York City,NY,10001 +299614,34in Ultrawide Monitor,1,379.99,2019-12-15 16:19:00,268 5th St, Boston,MA,02215 +299615,Flatscreen TV,1,300.0,2019-12-28 06:23:00,683 Washington St, New York City,NY,10001 +299616,Wired Headphones,1,11.99,2019-12-08 14:01:00,28 Highland St, Los Angeles,CA,90001 +299617,AA Batteries (4-pack),1,3.84,2019-12-27 20:55:00,746 Highland St, Austin,TX,73301 +299618,Lightning Charging Cable,1,14.95,2019-12-21 19:56:00,283 Chestnut St, San Francisco,CA,94016 +299619,ThinkPad Laptop,1,999.99,2019-12-25 19:24:00,481 Johnson St, Portland,OR,97035 +299620,Wired Headphones,1,11.99,2019-12-18 09:42:00,4 Washington St, San Francisco,CA,94016 +299620,AA Batteries (4-pack),1,3.84,2019-12-18 09:42:00,4 Washington St, San Francisco,CA,94016 +299621,AA Batteries (4-pack),1,3.84,2019-12-18 06:35:00,937 Chestnut St, Boston,MA,02215 +299622,AAA Batteries (4-pack),2,2.99,2019-12-31 18:20:00,699 9th St, Los Angeles,CA,90001 +299623,Macbook Pro Laptop,1,1700.0,2019-12-20 00:03:00,956 6th St, New York City,NY,10001 +299624,iPhone,1,700.0,2019-12-14 07:53:00,575 Elm St, San Francisco,CA,94016 +299625,27in FHD Monitor,1,149.99,2019-12-03 15:02:00,843 Pine St, Portland,OR,97035 +299626,AA Batteries (4-pack),2,3.84,2019-12-15 11:09:00,144 Washington St, San Francisco,CA,94016 +299627,AAA Batteries (4-pack),2,2.99,2019-12-18 07:25:00,577 West St, Portland,OR,97035 +299628,AA Batteries (4-pack),1,3.84,2019-12-27 20:54:00,328 Wilson St, Boston,MA,02215 +299629,Bose SoundSport Headphones,1,99.99,2019-12-29 20:14:00,361 1st St, Los Angeles,CA,90001 +299630,AAA Batteries (4-pack),3,2.99,2019-12-28 11:23:00,893 Meadow St, Austin,TX,73301 +299631,Google Phone,1,600.0,2019-12-05 11:22:00,983 14th St, Dallas,TX,75001 +299631,USB-C Charging Cable,1,11.95,2019-12-05 11:22:00,983 14th St, Dallas,TX,75001 +299632,iPhone,1,700.0,2019-12-18 09:10:00,727 Dogwood St, Los Angeles,CA,90001 +299633,27in FHD Monitor,1,149.99,2019-12-30 17:47:00,256 West St, Los Angeles,CA,90001 +299634,USB-C Charging Cable,1,11.95,2019-12-02 14:13:00,389 South St, San Francisco,CA,94016 +299635,AA Batteries (4-pack),2,3.84,2019-12-07 08:28:00,747 Cherry St, San Francisco,CA,94016 +299636,AA Batteries (4-pack),1,3.84,2019-12-08 08:51:00,800 Hill St, Seattle,WA,98101 +299637,Macbook Pro Laptop,1,1700.0,2019-12-03 17:23:00,589 Walnut St, New York City,NY,10001 +299638,Wired Headphones,1,11.99,2019-12-18 14:58:00,850 Church St, Seattle,WA,98101 +299639,AAA Batteries (4-pack),1,2.99,2019-12-29 20:13:00,534 Maple St, Portland,OR,97035 +299640,Lightning Charging Cable,1,14.95,2019-12-19 16:24:00,235 Park St, New York City,NY,10001 +299641,27in 4K Gaming Monitor,1,389.99,2019-12-05 11:29:00,584 Forest St, Los Angeles,CA,90001 +299642,AA Batteries (4-pack),2,3.84,2019-12-16 14:41:00,811 Willow St, Atlanta,GA,30301 +299643,Wired Headphones,1,11.99,2019-12-03 10:18:00,656 Lake St, Los Angeles,CA,90001 +299644,USB-C Charging Cable,1,11.95,2019-12-07 19:56:00,950 Wilson St, San Francisco,CA,94016 +299645,AAA Batteries (4-pack),2,2.99,2019-12-16 18:09:00,454 Wilson St, Boston,MA,02215 +299646,Lightning Charging Cable,1,14.95,2019-12-19 12:08:00,633 Willow St, Boston,MA,02215 +299647,Google Phone,1,600.0,2019-12-10 13:42:00,57 Hickory St, San Francisco,CA,94016 +299648,USB-C Charging Cable,1,11.95,2019-12-08 20:20:00,284 Lakeview St, Atlanta,GA,30301 +299649,27in 4K Gaming Monitor,1,389.99,2019-12-06 23:13:00,510 14th St, Dallas,TX,75001 +299650,ThinkPad Laptop,1,999.99,2019-12-08 15:37:00,825 Highland St, Los Angeles,CA,90001 +299651,Macbook Pro Laptop,1,1700.0,2019-12-13 12:13:00,140 River St, Los Angeles,CA,90001 +299652,USB-C Charging Cable,1,11.95,2019-12-20 05:29:00,177 Sunset St, New York City,NY,10001 +299653,Macbook Pro Laptop,1,1700.0,2019-12-18 22:25:00,434 River St, San Francisco,CA,94016 +299654,AAA Batteries (4-pack),4,2.99,2019-12-13 14:00:00,251 7th St, San Francisco,CA,94016 +299655,AA Batteries (4-pack),1,3.84,2019-12-16 15:57:00,584 9th St, Seattle,WA,98101 +299656,USB-C Charging Cable,1,11.95,2019-12-31 03:27:00,704 8th St, San Francisco,CA,94016 +299657,USB-C Charging Cable,1,11.95,2019-12-05 16:12:00,744 11th St, San Francisco,CA,94016 +299658,AA Batteries (4-pack),3,3.84,2019-12-21 10:26:00,844 4th St, New York City,NY,10001 +299659,USB-C Charging Cable,1,11.95,2019-12-20 18:35:00,769 13th St, Portland,OR,97035 +299660,AA Batteries (4-pack),1,3.84,2019-12-23 13:05:00,785 Madison St, Seattle,WA,98101 +299661,Lightning Charging Cable,1,14.95,2019-12-02 14:17:00,85 14th St, New York City,NY,10001 +299662,AAA Batteries (4-pack),1,2.99,2019-12-25 14:34:00,697 Sunset St, Austin,TX,73301 +299663,27in FHD Monitor,1,149.99,2019-12-20 11:27:00,117 Highland St, San Francisco,CA,94016 +299664,Wired Headphones,1,11.99,2019-12-22 23:41:00,417 South St, San Francisco,CA,94016 +299665,USB-C Charging Cable,1,11.95,2019-12-11 18:05:00,98 2nd St, Los Angeles,CA,90001 +299666,Lightning Charging Cable,1,14.95,2019-12-18 20:18:00,447 13th St, New York City,NY,10001 +299667,Wired Headphones,1,11.99,2019-12-06 03:16:00,989 Sunset St, Austin,TX,73301 +299668,AAA Batteries (4-pack),1,2.99,2019-12-16 18:23:00,242 Lakeview St, New York City,NY,10001 +299669,Vareebadd Phone,1,400.0,2019-12-31 20:49:00,327 Hickory St, San Francisco,CA,94016 +299670,AA Batteries (4-pack),1,3.84,2019-12-14 17:45:00,278 Main St, New York City,NY,10001 +299670,Lightning Charging Cable,1,14.95,2019-12-14 17:45:00,278 Main St, New York City,NY,10001 +299671,Macbook Pro Laptop,1,1700.0,2019-12-29 19:37:00,38 Sunset St, San Francisco,CA,94016 +299672,AA Batteries (4-pack),1,3.84,2019-12-08 07:33:00,317 Johnson St, Austin,TX,73301 +299673,USB-C Charging Cable,1,11.95,2019-12-05 19:50:00,467 Spruce St, New York City,NY,10001 +299674,AA Batteries (4-pack),1,3.84,2019-12-16 13:07:00,90 Dogwood St, Atlanta,GA,30301 +299675,AAA Batteries (4-pack),1,2.99,2019-12-29 07:13:00,103 Maple St, Atlanta,GA,30301 +299676,Flatscreen TV,1,300.0,2019-12-10 10:04:00,278 Jackson St, New York City,NY,10001 +299677,USB-C Charging Cable,1,11.95,2019-12-18 11:11:00,527 12th St, Los Angeles,CA,90001 +299678,AA Batteries (4-pack),1,3.84,2019-12-15 10:45:00,117 4th St, New York City,NY,10001 +299679,27in FHD Monitor,1,149.99,2019-12-17 19:44:00,259 Main St, Austin,TX,73301 +299680,AAA Batteries (4-pack),1,2.99,2019-12-13 23:54:00,87 Spruce St, Boston,MA,02215 +299681,27in 4K Gaming Monitor,1,389.99,2019-12-26 19:26:00,863 Cherry St, Los Angeles,CA,90001 +299682,Lightning Charging Cable,1,14.95,2019-12-15 22:45:00,228 7th St, Austin,TX,73301 +299683,USB-C Charging Cable,2,11.95,2019-12-28 19:31:00,294 Willow St, Portland,OR,97035 +299684,AA Batteries (4-pack),1,3.84,2019-12-11 14:03:00,766 West St, San Francisco,CA,94016 +299685,USB-C Charging Cable,1,11.95,2019-12-27 21:37:00,781 Hill St, San Francisco,CA,94016 +299686,Apple Airpods Headphones,1,150.0,2019-12-31 14:13:00,560 5th St, San Francisco,CA,94016 +299687,Apple Airpods Headphones,1,150.0,2019-12-18 21:21:00,161 8th St, San Francisco,CA,94016 +299688,27in FHD Monitor,1,149.99,2019-12-25 14:49:00,423 Cedar St, Boston,MA,02215 +299689,Bose SoundSport Headphones,1,99.99,2019-12-20 14:26:00,843 1st St, San Francisco,CA,94016 +299690,USB-C Charging Cable,1,11.95,2019-12-16 22:24:00,911 Spruce St, New York City,NY,10001 +299691,Wired Headphones,1,11.99,2019-12-13 21:23:00,457 Walnut St, Dallas,TX,75001 +299692,Bose SoundSport Headphones,1,99.99,2019-12-31 12:28:00,157 Main St, Boston,MA,02215 +299693,AAA Batteries (4-pack),1,2.99,2019-12-01 14:06:00,181 Jefferson St, Atlanta,GA,30301 +299694,AA Batteries (4-pack),2,3.84,2019-12-30 07:48:00,578 Johnson St, New York City,NY,10001 +299695,Apple Airpods Headphones,1,150.0,2019-12-16 20:47:00,888 Meadow St, San Francisco,CA,94016 +299696,34in Ultrawide Monitor,1,379.99,2019-12-17 20:49:00,976 Washington St, New York City,NY,10001 +299697,Lightning Charging Cable,1,14.95,2019-12-10 18:30:00,389 Sunset St, New York City,NY,10001 +299698,AA Batteries (4-pack),2,3.84,2019-12-26 12:43:00,209 13th St, San Francisco,CA,94016 +299699,USB-C Charging Cable,1,11.95,2019-12-12 11:25:00,159 Walnut St, Atlanta,GA,30301 +299700,AA Batteries (4-pack),1,3.84,2019-12-20 06:34:00,371 Cedar St, Dallas,TX,75001 +299701,Wired Headphones,1,11.99,2019-12-16 15:16:00,346 10th St, Dallas,TX,75001 +299702,AAA Batteries (4-pack),4,2.99,2019-12-26 01:46:00,658 Church St, Boston,MA,02215 +299703,Google Phone,1,600.0,2019-12-25 20:19:00,165 Main St, New York City,NY,10001 +299703,USB-C Charging Cable,1,11.95,2019-12-25 20:19:00,165 Main St, New York City,NY,10001 +299704,Lightning Charging Cable,1,14.95,2019-12-27 22:12:00,530 Jackson St, Portland,OR,97035 +299705,27in FHD Monitor,1,149.99,2019-12-13 17:15:00,371 Lincoln St, New York City,NY,10001 +299706,20in Monitor,1,109.99,2019-12-17 09:33:00,843 Wilson St, San Francisco,CA,94016 +299707,Macbook Pro Laptop,1,1700.0,2019-12-10 02:28:00,116 Park St, New York City,NY,10001 +299708,AAA Batteries (4-pack),1,2.99,2019-12-10 11:50:00,245 14th St, San Francisco,CA,94016 +299709,Apple Airpods Headphones,1,150.0,2019-12-13 00:27:00,196 14th St, Austin,TX,73301 +299710,27in 4K Gaming Monitor,1,389.99,2019-12-05 17:17:00,427 Dogwood St, Portland,ME,04101 +299711,Apple Airpods Headphones,1,150.0,2019-12-21 16:00:00,396 Maple St, Dallas,TX,75001 +299712,AAA Batteries (4-pack),3,2.99,2019-12-20 18:54:00,360 Lincoln St, New York City,NY,10001 +299713,AA Batteries (4-pack),7,3.84,2019-12-17 20:56:00,160 Hickory St, Dallas,TX,75001 +299714,27in FHD Monitor,1,149.99,2019-12-07 16:18:00,488 Lakeview St, San Francisco,CA,94016 +299715,Lightning Charging Cable,1,14.95,2019-12-02 03:10:00,414 Hill St, Seattle,WA,98101 +299716,Lightning Charging Cable,1,14.95,2019-12-14 09:48:00,903 Hill St, Seattle,WA,98101 +299717,Lightning Charging Cable,1,14.95,2019-12-12 13:28:00,435 Chestnut St, Seattle,WA,98101 +299718,Google Phone,1,600.0,2019-12-03 17:18:00,990 North St, New York City,NY,10001 +299719,Macbook Pro Laptop,1,1700.0,2019-12-02 09:18:00,260 Pine St, New York City,NY,10001 +299719,Apple Airpods Headphones,1,150.0,2019-12-02 09:18:00,260 Pine St, New York City,NY,10001 +299720,AA Batteries (4-pack),1,3.84,2019-12-23 20:35:00,105 2nd St, San Francisco,CA,94016 +299721,Google Phone,1,600.0,2019-12-24 08:49:00,837 Willow St, Los Angeles,CA,90001 +299722,Bose SoundSport Headphones,1,99.99,2019-12-06 12:32:00,165 Madison St, Seattle,WA,98101 +299723,Wired Headphones,2,11.99,2019-12-15 11:25:00,160 Hill St, Portland,OR,97035 +299724,AA Batteries (4-pack),2,3.84,2019-12-06 11:35:00,299 4th St, San Francisco,CA,94016 +299725,USB-C Charging Cable,1,11.95,2019-12-28 12:00:00,950 Hickory St, Seattle,WA,98101 +299726,LG Dryer,1,600.0,2019-12-22 15:55:00,787 9th St, Atlanta,GA,30301 +299727,Apple Airpods Headphones,1,150.0,2019-12-12 14:57:00,591 Johnson St, Austin,TX,73301 +299728,Lightning Charging Cable,1,14.95,2019-12-21 00:21:00,265 8th St, Dallas,TX,75001 +299729,USB-C Charging Cable,1,11.95,2019-12-29 13:16:00,933 Jefferson St, Los Angeles,CA,90001 +299730,Bose SoundSport Headphones,1,99.99,2019-12-06 06:15:00,526 West St, San Francisco,CA,94016 +299731,USB-C Charging Cable,1,11.95,2019-12-19 16:16:00,534 Center St, New York City,NY,10001 +299732,AA Batteries (4-pack),1,3.84,2019-12-18 15:53:00,933 Johnson St, Los Angeles,CA,90001 +299733,Lightning Charging Cable,1,14.95,2019-12-21 16:20:00,267 2nd St, San Francisco,CA,94016 +299734,Bose SoundSport Headphones,1,99.99,2019-12-23 14:02:00,446 Lakeview St, Boston,MA,02215 +299735,Wired Headphones,1,11.99,2019-12-23 21:26:00,738 14th St, Seattle,WA,98101 +299736,Macbook Pro Laptop,1,1700.0,2019-12-12 07:23:00,929 2nd St, New York City,NY,10001 +299737,Lightning Charging Cable,2,14.95,2019-12-18 23:05:00,925 Adams St, Seattle,WA,98101 +299738,Apple Airpods Headphones,1,150.0,2019-12-25 16:17:00,862 12th St, Los Angeles,CA,90001 +299739,Lightning Charging Cable,1,14.95,2019-12-25 20:31:00,241 12th St, San Francisco,CA,94016 +299740,Vareebadd Phone,1,400.0,2019-12-29 20:12:00,541 Washington St, Los Angeles,CA,90001 +299741,Lightning Charging Cable,1,14.95,2019-12-22 22:05:00,783 South St, Boston,MA,02215 +299742,USB-C Charging Cable,1,11.95,2019-12-28 18:04:00,944 8th St, San Francisco,CA,94016 +299743,Lightning Charging Cable,2,14.95,2019-12-11 11:21:00,988 Forest St, Dallas,TX,75001 +299744,Bose SoundSport Headphones,1,99.99,2019-12-20 10:54:00,709 Lake St, Los Angeles,CA,90001 +299745,Vareebadd Phone,1,400.0,2019-12-27 16:14:00,180 Center St, Portland,OR,97035 +299745,Bose SoundSport Headphones,1,99.99,2019-12-27 16:14:00,180 Center St, Portland,OR,97035 +299746,USB-C Charging Cable,1,11.95,2019-12-07 21:09:00,174 Jackson St, Dallas,TX,75001 +299747,Apple Airpods Headphones,1,150.0,2019-12-23 20:27:00,184 Wilson St, Boston,MA,02215 +299748,iPhone,1,700.0,2019-12-17 14:00:00,523 Cedar St, San Francisco,CA,94016 +299749,Lightning Charging Cable,1,14.95,2019-12-16 11:40:00,332 Church St, San Francisco,CA,94016 +299750,AAA Batteries (4-pack),2,2.99,2019-12-30 23:20:00,504 1st St, Dallas,TX,75001 +299751,Macbook Pro Laptop,1,1700.0,2019-12-21 16:42:00,390 Meadow St, Austin,TX,73301 +299752,Lightning Charging Cable,2,14.95,2019-12-02 18:15:00,597 Maple St, Seattle,WA,98101 +299753,Lightning Charging Cable,2,14.95,2019-12-15 02:51:00,679 Meadow St, New York City,NY,10001 +299754,Wired Headphones,1,11.99,2019-12-04 17:00:00,624 10th St, New York City,NY,10001 +299755,Lightning Charging Cable,1,14.95,2019-12-16 13:21:00,579 Main St, Boston,MA,02215 +299756,Google Phone,1,600.0,2019-12-14 08:38:00,564 Johnson St, San Francisco,CA,94016 +299757,AAA Batteries (4-pack),1,2.99,2019-12-28 17:00:00,564 Willow St, Los Angeles,CA,90001 +299758,USB-C Charging Cable,1,11.95,2019-12-17 17:57:00,710 Spruce St, Austin,TX,73301 +299759,USB-C Charging Cable,1,11.95,2019-12-16 09:34:00,52 Meadow St, Seattle,WA,98101 +299760,USB-C Charging Cable,1,11.95,2019-12-24 14:59:00,677 Lincoln St, Los Angeles,CA,90001 +299761,AAA Batteries (4-pack),1,2.99,2019-12-05 09:09:00,5 River St, Boston,MA,02215 +299762,Google Phone,1,600.0,2019-12-01 18:58:00,191 Center St, Portland,OR,97035 +299763,USB-C Charging Cable,1,11.95,2019-12-02 21:48:00,371 Center St, Los Angeles,CA,90001 +299764,Google Phone,1,600.0,2019-12-09 12:15:00,975 5th St, Atlanta,GA,30301 +299765,Google Phone,1,600.0,2019-12-16 11:19:00,311 12th St, Los Angeles,CA,90001 +299766,Apple Airpods Headphones,1,150.0,2019-12-09 10:18:00,989 River St, Atlanta,GA,30301 +299767,27in 4K Gaming Monitor,1,389.99,2019-12-14 06:22:00,944 River St, New York City,NY,10001 +299768,Wired Headphones,2,11.99,2019-12-19 14:16:00,686 14th St, Portland,OR,97035 +299769,27in FHD Monitor,1,149.99,2019-12-01 22:18:00,598 Wilson St, New York City,NY,10001 +299770,AAA Batteries (4-pack),1,2.99,2019-12-26 06:36:00,140 Jackson St, Dallas,TX,75001 +299771,Apple Airpods Headphones,1,150.0,2019-12-09 11:44:00,396 Lincoln St, Dallas,TX,75001 +299772,Wired Headphones,1,11.99,2019-12-16 16:48:00,103 Main St, Austin,TX,73301 +299773,Lightning Charging Cable,1,14.95,2019-12-09 10:37:00,239 West St, Portland,OR,97035 +299774,USB-C Charging Cable,1,11.95,2019-12-30 16:58:00,832 Cherry St, Los Angeles,CA,90001 +299775,Wired Headphones,1,11.99,2019-12-12 11:36:00,771 Ridge St, San Francisco,CA,94016 +299776,Wired Headphones,1,11.99,2019-12-17 12:48:00,945 Ridge St, Boston,MA,02215 +299777,Wired Headphones,1,11.99,2019-12-17 12:47:00,672 Elm St, Seattle,WA,98101 +299778,AAA Batteries (4-pack),1,2.99,2019-12-29 21:26:00,643 Center St, Seattle,WA,98101 +299779,AAA Batteries (4-pack),1,2.99,2019-12-30 18:34:00,851 Center St, San Francisco,CA,94016 +299780,USB-C Charging Cable,1,11.95,2019-12-08 18:06:00,321 9th St, Seattle,WA,98101 +299781,Flatscreen TV,1,300.0,2019-12-02 12:52:00,992 Pine St, New York City,NY,10001 +299782,Apple Airpods Headphones,1,150.0,2019-12-17 19:29:00,948 12th St, Los Angeles,CA,90001 +299783,iPhone,1,700.0,2019-12-08 09:28:00,34 13th St, Seattle,WA,98101 +299784,Wired Headphones,1,11.99,2019-12-31 15:55:00,26 Cherry St, San Francisco,CA,94016 +299785,iPhone,1,700.0,2019-12-06 17:42:00,403 2nd St, Dallas,TX,75001 +299786,27in 4K Gaming Monitor,1,389.99,2019-12-14 14:27:00,867 Walnut St, San Francisco,CA,94016 +299787,Macbook Pro Laptop,1,1700.0,2019-12-02 18:46:00,115 Meadow St, Atlanta,GA,30301 +299788,27in FHD Monitor,1,149.99,2019-12-05 17:12:00,722 Lakeview St, San Francisco,CA,94016 +299789,AAA Batteries (4-pack),1,2.99,2019-12-16 16:58:00,229 7th St, Boston,MA,02215 +299790,Apple Airpods Headphones,1,150.0,2019-12-02 16:16:00,13 4th St, Boston,MA,02215 +299791,ThinkPad Laptop,1,999.99,2019-12-11 10:01:00,200 Center St, New York City,NY,10001 +299792,Vareebadd Phone,1,400.0,2019-12-13 05:51:00,193 Cherry St, Los Angeles,CA,90001 +299792,Bose SoundSport Headphones,1,99.99,2019-12-13 05:51:00,193 Cherry St, Los Angeles,CA,90001 +299792,Wired Headphones,1,11.99,2019-12-13 05:51:00,193 Cherry St, Los Angeles,CA,90001 +299793,AAA Batteries (4-pack),1,2.99,2019-12-19 15:01:00,202 Main St, New York City,NY,10001 +299794,34in Ultrawide Monitor,1,379.99,2019-12-28 14:32:00,878 2nd St, Dallas,TX,75001 +299795,USB-C Charging Cable,1,11.95,2019-12-20 12:23:00,682 Hill St, Portland,OR,97035 +299796,AA Batteries (4-pack),1,3.84,2019-12-17 19:19:00,293 Washington St, Seattle,WA,98101 +299797,USB-C Charging Cable,1,11.95,2019-12-08 22:47:00,512 7th St, Seattle,WA,98101 +299798,Lightning Charging Cable,1,14.95,2019-12-20 10:36:00,142 Church St, New York City,NY,10001 +299799,27in 4K Gaming Monitor,1,389.99,2019-12-13 15:57:00,776 Maple St, New York City,NY,10001 +299800,USB-C Charging Cable,1,11.95,2019-12-17 19:47:00,648 14th St, Boston,MA,02215 +299801,Google Phone,1,600.0,2019-12-14 15:14:00,724 Walnut St, San Francisco,CA,94016 +299802,34in Ultrawide Monitor,1,379.99,2019-12-24 09:08:00,554 Church St, San Francisco,CA,94016 +299803,USB-C Charging Cable,1,11.95,2019-12-07 19:32:00,744 Walnut St, San Francisco,CA,94016 +299804,AAA Batteries (4-pack),1,2.99,2019-12-07 09:34:00,59 Adams St, San Francisco,CA,94016 +299804,27in FHD Monitor,1,149.99,2019-12-07 09:34:00,59 Adams St, San Francisco,CA,94016 +299805,Lightning Charging Cable,1,14.95,2019-12-09 08:47:00,37 Spruce St, New York City,NY,10001 +299806,AA Batteries (4-pack),1,3.84,2019-12-10 15:29:00,743 Johnson St, Los Angeles,CA,90001 +299807,27in 4K Gaming Monitor,1,389.99,2019-12-03 08:37:00,568 Dogwood St, Boston,MA,02215 +299808,AAA Batteries (4-pack),1,2.99,2019-12-09 23:10:00,647 9th St, San Francisco,CA,94016 +299809,AAA Batteries (4-pack),1,2.99,2019-12-09 00:58:00,458 Cedar St, New York City,NY,10001 +299810,27in 4K Gaming Monitor,1,389.99,2019-12-06 10:25:00,187 Hill St, New York City,NY,10001 +299811,Macbook Pro Laptop,1,1700.0,2019-12-21 19:59:00,967 Maple St, Atlanta,GA,30301 +299812,AA Batteries (4-pack),1,3.84,2019-12-26 15:22:00,2 Dogwood St, Seattle,WA,98101 +299813,AAA Batteries (4-pack),1,2.99,2019-12-14 13:21:00,370 5th St, Seattle,WA,98101 +299814,27in FHD Monitor,1,149.99,2019-12-18 15:25:00,499 Highland St, Los Angeles,CA,90001 +299815,20in Monitor,1,109.99,2019-12-19 09:13:00,29 Main St, Austin,TX,73301 +299816,AA Batteries (4-pack),1,3.84,2019-12-13 15:05:00,624 Jackson St, Dallas,TX,75001 +299817,Bose SoundSport Headphones,1,99.99,2019-12-16 19:27:00,487 Wilson St, Seattle,WA,98101 +299818,AAA Batteries (4-pack),1,2.99,2019-12-09 22:05:00,774 West St, Los Angeles,CA,90001 +299819,Google Phone,1,600.0,2019-12-26 19:00:00,815 11th St, Los Angeles,CA,90001 +299819,AAA Batteries (4-pack),1,2.99,2019-12-26 19:00:00,815 11th St, Los Angeles,CA,90001 +299820,20in Monitor,1,109.99,2019-12-08 18:52:00,903 Cedar St, Atlanta,GA,30301 +299821,iPhone,1,700.0,2019-12-02 19:13:00,611 Maple St, New York City,NY,10001 +299822,Apple Airpods Headphones,1,150.0,2019-12-25 16:19:00,642 Cedar St, Austin,TX,73301 +299823,AAA Batteries (4-pack),1,2.99,2019-12-25 18:48:00,662 Chestnut St, San Francisco,CA,94016 +299824,27in FHD Monitor,1,149.99,2019-12-15 11:57:00,476 Adams St, Los Angeles,CA,90001 +299825,Wired Headphones,1,11.99,2019-12-24 16:57:00,783 Jefferson St, Atlanta,GA,30301 +299826,Bose SoundSport Headphones,1,99.99,2019-12-17 17:56:00,585 Center St, Seattle,WA,98101 +299827,USB-C Charging Cable,2,11.95,2019-12-04 17:09:00,568 14th St, New York City,NY,10001 +299828,Wired Headphones,1,11.99,2019-12-30 06:43:00,527 Dogwood St, Atlanta,GA,30301 +299829,Lightning Charging Cable,1,14.95,2019-12-23 10:43:00,499 Cherry St, San Francisco,CA,94016 +299830,iPhone,1,700.0,2019-12-25 18:58:00,208 Jackson St, Los Angeles,CA,90001 +299830,Lightning Charging Cable,1,14.95,2019-12-25 18:58:00,208 Jackson St, Los Angeles,CA,90001 +299830,Apple Airpods Headphones,1,150.0,2019-12-25 18:58:00,208 Jackson St, Los Angeles,CA,90001 +299831,27in FHD Monitor,1,149.99,2019-12-30 12:54:00,714 Madison St, Portland,OR,97035 +299832,Bose SoundSport Headphones,1,99.99,2019-12-16 17:29:00,474 8th St, San Francisco,CA,94016 +299833,USB-C Charging Cable,1,11.95,2019-12-06 18:50:00,211 Lakeview St, Dallas,TX,75001 +299834,USB-C Charging Cable,1,11.95,2019-12-06 11:21:00,123 Lakeview St, San Francisco,CA,94016 +299835,27in 4K Gaming Monitor,1,389.99,2019-12-26 23:17:00,349 Hill St, New York City,NY,10001 +299836,27in 4K Gaming Monitor,1,389.99,2019-12-19 08:40:00,876 Elm St, Los Angeles,CA,90001 +299837,Flatscreen TV,1,300.0,2019-12-02 14:48:00,61 9th St, San Francisco,CA,94016 +299838,Apple Airpods Headphones,1,150.0,2019-12-22 15:21:00,117 Center St, Los Angeles,CA,90001 +299839,USB-C Charging Cable,1,11.95,2019-12-07 14:41:00,136 Pine St, Boston,MA,02215 +299840,Google Phone,1,600.0,2019-12-03 19:04:00,5 Madison St, Portland,OR,97035 +299841,Wired Headphones,1,11.99,2019-12-23 07:09:00,571 Hickory St, Los Angeles,CA,90001 +299842,AAA Batteries (4-pack),1,2.99,2019-12-10 21:39:00,927 1st St, New York City,NY,10001 +299843,27in 4K Gaming Monitor,1,389.99,2019-12-13 17:31:00,30 Chestnut St, San Francisco,CA,94016 +299844,20in Monitor,1,109.99,2019-12-15 18:17:00,77 Jackson St, San Francisco,CA,94016 +299845,20in Monitor,1,109.99,2019-12-19 19:02:00,256 11th St, Atlanta,GA,30301 +299846,Lightning Charging Cable,1,14.95,2019-12-10 15:27:00,692 Maple St, Dallas,TX,75001 +299847,Macbook Pro Laptop,1,1700.0,2019-12-07 20:09:00,394 12th St, Seattle,WA,98101 +299848,Apple Airpods Headphones,1,150.0,2019-12-06 21:02:00,447 Forest St, Los Angeles,CA,90001 +299849,Macbook Pro Laptop,1,1700.0,2019-12-02 07:52:00,703 Washington St, San Francisco,CA,94016 +299850,AAA Batteries (4-pack),1,2.99,2019-12-21 11:04:00,554 Maple St, Los Angeles,CA,90001 +299851,Lightning Charging Cable,1,14.95,2019-12-12 17:23:00,287 Lincoln St, Boston,MA,02215 +299852,Flatscreen TV,1,300.0,2019-12-17 21:47:00,323 4th St, Dallas,TX,75001 +299853,27in 4K Gaming Monitor,1,389.99,2019-12-12 08:06:00,910 Lincoln St, Portland,OR,97035 +299854,Bose SoundSport Headphones,1,99.99,2019-12-23 14:47:00,112 5th St, Atlanta,GA,30301 +299855,Wired Headphones,1,11.99,2019-12-24 19:40:00,449 2nd St, New York City,NY,10001 +299856,Lightning Charging Cable,1,14.95,2019-12-18 20:40:00,479 11th St, Austin,TX,73301 +299857,AAA Batteries (4-pack),1,2.99,2019-12-26 07:53:00,776 Park St, San Francisco,CA,94016 +299858,Apple Airpods Headphones,1,150.0,2019-12-15 10:43:00,460 Elm St, San Francisco,CA,94016 +299859,AAA Batteries (4-pack),2,2.99,2019-12-26 21:46:00,746 Elm St, Seattle,WA,98101 +299860,AAA Batteries (4-pack),1,2.99,2019-12-28 09:23:00,11 Elm St, Los Angeles,CA,90001 +299861,Macbook Pro Laptop,1,1700.0,2019-12-18 07:37:00,163 Main St, Seattle,WA,98101 +299862,AA Batteries (4-pack),1,3.84,2019-12-24 20:15:00,912 Washington St, San Francisco,CA,94016 +299863,USB-C Charging Cable,1,11.95,2019-12-26 17:44:00,119 Jefferson St, Boston,MA,02215 +299864,Bose SoundSport Headphones,1,99.99,2019-12-13 21:28:00,760 2nd St, Dallas,TX,75001 +299865,AAA Batteries (4-pack),1,2.99,2019-12-18 12:46:00,501 Church St, Seattle,WA,98101 +299866,Lightning Charging Cable,1,14.95,2019-12-05 09:42:00,940 Lakeview St, Atlanta,GA,30301 +299867,34in Ultrawide Monitor,1,379.99,2019-12-01 22:55:00,126 9th St, Boston,MA,02215 +299868,Bose SoundSport Headphones,1,99.99,2019-12-01 20:07:00,899 Elm St, San Francisco,CA,94016 +299869,Bose SoundSport Headphones,1,99.99,2019-12-02 14:12:00,853 Lake St, Boston,MA,02215 +299870,Bose SoundSport Headphones,1,99.99,2019-12-19 11:37:00,662 8th St, New York City,NY,10001 +299871,Bose SoundSport Headphones,1,99.99,2019-12-23 17:05:00,990 Cherry St, Portland,OR,97035 +299872,27in FHD Monitor,1,149.99,2019-12-02 22:57:00,365 Pine St, San Francisco,CA,94016 +299873,AAA Batteries (4-pack),1,2.99,2019-12-13 19:30:00,428 Spruce St, Seattle,WA,98101 +299874,iPhone,1,700.0,2019-12-19 09:47:00,159 Park St, Atlanta,GA,30301 +299875,Apple Airpods Headphones,1,150.0,2019-12-28 18:18:00,446 Walnut St, Los Angeles,CA,90001 +299876,20in Monitor,1,109.99,2019-12-05 18:51:00,902 5th St, San Francisco,CA,94016 +299877,AAA Batteries (4-pack),3,2.99,2019-12-08 00:49:00,843 Jackson St, Dallas,TX,75001 +299878,Lightning Charging Cable,1,14.95,2019-12-21 16:12:00,923 Church St, Los Angeles,CA,90001 +299879,27in 4K Gaming Monitor,1,389.99,2019-12-30 09:44:00,855 Highland St, San Francisco,CA,94016 +299880,iPhone,1,700.0,2019-12-19 18:51:00,144 Washington St, Boston,MA,02215 +299881,USB-C Charging Cable,1,11.95,2019-12-24 21:31:00,765 10th St, Seattle,WA,98101 +299882,Google Phone,1,600.0,2019-12-04 04:46:00,523 West St, Atlanta,GA,30301 +299882,Wired Headphones,1,11.99,2019-12-04 04:46:00,523 West St, Atlanta,GA,30301 +299883,Lightning Charging Cable,1,14.95,2019-12-21 07:22:00,333 Lake St, Los Angeles,CA,90001 +299884,Apple Airpods Headphones,1,150.0,2019-12-23 13:30:00,699 Pine St, Boston,MA,02215 +299885,Wired Headphones,1,11.99,2019-12-24 09:48:00,524 13th St, Boston,MA,02215 +299886,20in Monitor,1,109.99,2019-12-12 14:11:00,368 11th St, San Francisco,CA,94016 +299886,USB-C Charging Cable,1,11.95,2019-12-12 14:11:00,368 11th St, San Francisco,CA,94016 +299887,USB-C Charging Cable,1,11.95,2019-12-16 16:55:00,554 9th St, New York City,NY,10001 +299888,USB-C Charging Cable,2,11.95,2019-12-04 11:45:00,472 Center St, Boston,MA,02215 +299889,Apple Airpods Headphones,1,150.0,2019-12-08 20:21:00,212 Highland St, New York City,NY,10001 +299890,27in FHD Monitor,1,149.99,2019-12-24 05:55:00,924 Park St, Dallas,TX,75001 +299891,Lightning Charging Cable,1,14.95,2019-12-30 21:17:00,882 6th St, Seattle,WA,98101 +299892,AA Batteries (4-pack),1,3.84,2019-12-27 15:24:00,248 Meadow St, New York City,NY,10001 +299893,AA Batteries (4-pack),1,3.84,2019-12-15 00:33:00,511 13th St, Atlanta,GA,30301 +299894,ThinkPad Laptop,1,999.99,2019-12-25 18:11:00,823 Lakeview St, Los Angeles,CA,90001 +299895,Bose SoundSport Headphones,1,99.99,2019-12-07 14:44:00,896 Maple St, Boston,MA,02215 +299896,USB-C Charging Cable,1,11.95,2019-12-20 18:40:00,632 West St, San Francisco,CA,94016 +299897,Bose SoundSport Headphones,1,99.99,2019-12-01 10:56:00,964 Lakeview St, San Francisco,CA,94016 +299898,Vareebadd Phone,1,400.0,2019-12-22 22:50:00,408 8th St, San Francisco,CA,94016 +299898,USB-C Charging Cable,1,11.95,2019-12-22 22:50:00,408 8th St, San Francisco,CA,94016 +299899,Flatscreen TV,1,300.0,2019-12-18 14:16:00,766 Hickory St, Portland,OR,97035 +299900,Lightning Charging Cable,1,14.95,2019-12-31 00:03:00,92 Ridge St, San Francisco,CA,94016 +299901,AA Batteries (4-pack),1,3.84,2019-12-20 10:39:00,822 Park St, Seattle,WA,98101 +299902,Apple Airpods Headphones,1,150.0,2019-12-27 22:50:00,125 Adams St, Boston,MA,02215 +299903,Bose SoundSport Headphones,1,99.99,2019-12-10 19:17:00,14 9th St, New York City,NY,10001 +299904,Macbook Pro Laptop,1,1700.0,2019-12-01 17:24:00,465 Spruce St, Portland,OR,97035 +299905,Lightning Charging Cable,2,14.95,2019-12-11 19:25:00,778 West St, San Francisco,CA,94016 +299906,USB-C Charging Cable,1,11.95,2019-12-12 14:07:00,834 Ridge St, San Francisco,CA,94016 +299907,AA Batteries (4-pack),1,3.84,2019-12-16 20:57:00,66 7th St, Dallas,TX,75001 +299908,Lightning Charging Cable,1,14.95,2019-12-04 09:03:00,139 Lakeview St, Austin,TX,73301 +299909,27in FHD Monitor,1,149.99,2019-12-18 20:38:00,246 Ridge St, Portland,ME,04101 +299910,Lightning Charging Cable,1,14.95,2019-12-09 18:20:00,48 2nd St, Los Angeles,CA,90001 +299911,Lightning Charging Cable,1,14.95,2019-12-10 15:49:00,793 7th St, Los Angeles,CA,90001 +299912,Google Phone,1,600.0,2019-12-14 15:32:00,722 Main St, Boston,MA,02215 +299913,AAA Batteries (4-pack),1,2.99,2019-12-20 12:04:00,901 Hickory St, Seattle,WA,98101 +299914,USB-C Charging Cable,1,11.95,2019-12-31 20:55:00,505 2nd St, Boston,MA,02215 +299915,20in Monitor,1,109.99,2019-12-19 22:17:00,112 Forest St, Portland,OR,97035 +299916,Flatscreen TV,1,300.0,2019-12-24 12:20:00,415 South St, New York City,NY,10001 +299917,iPhone,1,700.0,2019-12-22 15:17:00,612 Lincoln St, Boston,MA,02215 +299918,Apple Airpods Headphones,1,150.0,2019-12-04 16:04:00,585 Ridge St, San Francisco,CA,94016 +299919,USB-C Charging Cable,1,11.95,2019-12-24 12:58:00,707 12th St, Seattle,WA,98101 +299920,Lightning Charging Cable,1,14.95,2019-12-26 09:41:00,83 Forest St, Los Angeles,CA,90001 +299921,AAA Batteries (4-pack),3,2.99,2019-12-21 19:39:00,884 Chestnut St, San Francisco,CA,94016 +299922,Apple Airpods Headphones,1,150.0,2019-12-17 22:53:00,661 7th St, San Francisco,CA,94016 +299923,AAA Batteries (4-pack),1,2.99,2019-12-03 22:08:00,18 Adams St, San Francisco,CA,94016 +299924,Lightning Charging Cable,1,14.95,2019-12-22 15:26:00,481 14th St, Seattle,WA,98101 +299925,Lightning Charging Cable,1,14.95,2019-12-18 17:02:00,621 6th St, Atlanta,GA,30301 +299926,Lightning Charging Cable,1,14.95,2019-12-15 19:39:00,195 8th St, Atlanta,GA,30301 +299927,20in Monitor,1,109.99,2019-12-31 16:55:00,143 Chestnut St, Los Angeles,CA,90001 +299928,Macbook Pro Laptop,1,1700.0,2019-12-05 20:42:00,241 North St, Portland,ME,04101 +299929,Apple Airpods Headphones,1,150.0,2019-12-28 14:04:00,677 Park St, San Francisco,CA,94016 +299930,27in FHD Monitor,1,149.99,2019-12-14 12:44:00,502 11th St, Austin,TX,73301 +299931,Bose SoundSport Headphones,1,99.99,2019-12-12 14:47:00,47 Madison St, Boston,MA,02215 +299932,Bose SoundSport Headphones,1,99.99,2019-12-17 19:19:00,332 Pine St, San Francisco,CA,94016 +299933,AAA Batteries (4-pack),1,2.99,2019-12-02 18:28:00,298 Maple St, Boston,MA,02215 +299934,USB-C Charging Cable,1,11.95,2019-12-11 22:01:00,927 11th St, Boston,MA,02215 +299935,Macbook Pro Laptop,1,1700.0,2019-12-21 21:54:00,429 7th St, Los Angeles,CA,90001 +299936,AAA Batteries (4-pack),1,2.99,2019-12-01 07:40:00,983 Spruce St, Boston,MA,02215 +299937,34in Ultrawide Monitor,1,379.99,2019-12-12 09:50:00,155 Jefferson St, San Francisco,CA,94016 +299938,27in 4K Gaming Monitor,1,389.99,2019-12-29 12:46:00,769 Lincoln St, Los Angeles,CA,90001 +299939,Wired Headphones,1,11.99,2019-12-29 09:31:00,573 Meadow St, Portland,OR,97035 +299940,Lightning Charging Cable,1,14.95,2019-12-11 16:47:00,439 10th St, New York City,NY,10001 +299941,Wired Headphones,1,11.99,2019-12-25 03:13:00,373 South St, Boston,MA,02215 +299942,Lightning Charging Cable,1,14.95,2019-12-17 23:27:00,511 11th St, Portland,OR,97035 +299943,USB-C Charging Cable,1,11.95,2019-12-31 15:13:00,633 7th St, Atlanta,GA,30301 +299944,27in 4K Gaming Monitor,1,389.99,2019-12-10 21:37:00,74 Lakeview St, Seattle,WA,98101 +299945,Apple Airpods Headphones,1,150.0,2019-12-29 14:35:00,545 Willow St, Austin,TX,73301 +299946,Lightning Charging Cable,1,14.95,2019-12-31 20:54:00,84 9th St, San Francisco,CA,94016 +299947,34in Ultrawide Monitor,1,379.99,2019-12-10 17:36:00,537 Lakeview St, Los Angeles,CA,90001 +299948,Wired Headphones,1,11.99,2019-12-26 14:42:00,432 Wilson St, Los Angeles,CA,90001 +299949,Lightning Charging Cable,1,14.95,2019-12-09 12:58:00,829 Adams St, Austin,TX,73301 +299950,27in 4K Gaming Monitor,1,389.99,2019-12-02 17:02:00,133 13th St, Boston,MA,02215 +299951,Wired Headphones,1,11.99,2019-12-14 15:59:00,451 Hickory St, New York City,NY,10001 +299952,27in FHD Monitor,1,149.99,2019-12-31 13:01:00,395 8th St, Dallas,TX,75001 +299953,Google Phone,1,600.0,2019-12-25 18:17:00,977 Jefferson St, New York City,NY,10001 +299953,USB-C Charging Cable,1,11.95,2019-12-25 18:17:00,977 Jefferson St, New York City,NY,10001 +299954,Macbook Pro Laptop,1,1700.0,2019-12-18 11:09:00,467 Washington St, Portland,OR,97035 +299955,Bose SoundSport Headphones,1,99.99,2019-12-25 18:00:00,830 Walnut St, Los Angeles,CA,90001 +299956,20in Monitor,1,109.99,2019-12-17 07:24:00,87 North St, San Francisco,CA,94016 +299957,Wired Headphones,1,11.99,2019-12-26 20:26:00,114 River St, Atlanta,GA,30301 +299958,AA Batteries (4-pack),2,3.84,2019-12-26 20:00:00,124 West St, Austin,TX,73301 +299959,AAA Batteries (4-pack),1,2.99,2019-12-11 17:19:00,829 South St, San Francisco,CA,94016 +299960,Google Phone,1,600.0,2019-12-10 22:08:00,910 Willow St, San Francisco,CA,94016 +299961,USB-C Charging Cable,1,11.95,2019-12-23 13:37:00,901 Center St, Austin,TX,73301 +299962,USB-C Charging Cable,1,11.95,2019-12-08 11:31:00,917 2nd St, Dallas,TX,75001 +299963,Wired Headphones,1,11.99,2019-12-19 18:01:00,717 Center St, New York City,NY,10001 +299964,34in Ultrawide Monitor,1,379.99,2019-12-02 18:45:00,911 12th St, Portland,OR,97035 +299965,AAA Batteries (4-pack),1,2.99,2019-12-02 19:11:00,331 Meadow St, Los Angeles,CA,90001 +299966,AA Batteries (4-pack),5,3.84,2019-12-18 13:08:00,717 Walnut St, San Francisco,CA,94016 +299967,Apple Airpods Headphones,1,150.0,2019-12-04 22:21:00,173 Wilson St, San Francisco,CA,94016 +299968,AA Batteries (4-pack),2,3.84,2019-12-30 12:41:00,633 9th St, New York City,NY,10001 +299969,AAA Batteries (4-pack),1,2.99,2019-12-27 19:29:00,754 Park St, Boston,MA,02215 +299970,20in Monitor,1,109.99,2019-12-29 07:41:00,355 Chestnut St, Los Angeles,CA,90001 +299971,27in FHD Monitor,1,149.99,2019-12-31 11:07:00,644 Dogwood St, Los Angeles,CA,90001 +299972,ThinkPad Laptop,1,999.99,2019-12-12 19:27:00,995 Washington St, New York City,NY,10001 +299973,Apple Airpods Headphones,1,150.0,2019-12-24 16:16:00,652 Madison St, Portland,OR,97035 +299974,AA Batteries (4-pack),1,3.84,2019-12-28 11:05:00,755 North St, San Francisco,CA,94016 +299975,Google Phone,1,600.0,2019-12-08 23:32:00,787 Wilson St, Los Angeles,CA,90001 +299975,USB-C Charging Cable,1,11.95,2019-12-08 23:32:00,787 Wilson St, Los Angeles,CA,90001 +299976,AA Batteries (4-pack),3,3.84,2019-12-28 10:04:00,325 5th St, Atlanta,GA,30301 +299977,27in FHD Monitor,1,149.99,2019-12-20 19:36:00,551 13th St, San Francisco,CA,94016 +299978,27in FHD Monitor,1,149.99,2019-12-13 22:20:00,245 Hill St, Boston,MA,02215 +299979,Vareebadd Phone,1,400.0,2019-12-17 20:01:00,696 Madison St, Portland,OR,97035 +299980,Apple Airpods Headphones,1,150.0,2019-12-24 16:33:00,119 Johnson St, Atlanta,GA,30301 +299981,iPhone,1,700.0,2019-12-09 20:17:00,545 Chestnut St, Portland,OR,97035 +299981,Apple Airpods Headphones,1,150.0,2019-12-09 20:17:00,545 Chestnut St, Portland,OR,97035 +299982,iPhone,1,700.0,2019-12-27 11:51:00,210 Maple St, New York City,NY,10001 +299983,Wired Headphones,1,11.99,2019-12-24 13:45:00,581 Center St, New York City,NY,10001 +299984,Macbook Pro Laptop,1,1700.0,2019-12-20 09:33:00,590 Pine St, New York City,NY,10001 +299985,Lightning Charging Cable,1,14.95,2019-12-16 18:44:00,642 4th St, New York City,NY,10001 +299986,AA Batteries (4-pack),1,3.84,2019-12-07 00:51:00,254 6th St, Portland,OR,97035 +299987,USB-C Charging Cable,1,11.95,2019-12-24 22:30:00,998 13th St, Dallas,TX,75001 +299988,Google Phone,1,600.0,2019-12-04 21:17:00,420 Adams St, Los Angeles,CA,90001 +299988,Wired Headphones,1,11.99,2019-12-04 21:17:00,420 Adams St, Los Angeles,CA,90001 +299989,Lightning Charging Cable,1,14.95,2019-12-25 20:41:00,502 Maple St, New York City,NY,10001 +299990,Flatscreen TV,1,300.0,2019-12-04 15:52:00,785 Church St, Dallas,TX,75001 +299991,USB-C Charging Cable,1,11.95,2019-12-26 14:39:00,642 Lincoln St, Boston,MA,02215 +299992,Lightning Charging Cable,1,14.95,2019-12-11 17:30:00,499 Madison St, San Francisco,CA,94016 +299993,Apple Airpods Headphones,1,150.0,2019-12-10 08:40:00,400 Lake St, Boston,MA,02215 +299994,Bose SoundSport Headphones,1,99.99,2019-12-23 14:09:00,106 Hill St, Austin,TX,73301 +299995,USB-C Charging Cable,1,11.95,2019-12-03 15:46:00,238 River St, San Francisco,CA,94016 +299996,Macbook Pro Laptop,1,1700.0,2019-12-10 12:37:00,786 9th St, New York City,NY,10001 +299997,27in 4K Gaming Monitor,1,389.99,2019-12-11 22:51:00,676 7th St, Portland,OR,97035 +299998,Macbook Pro Laptop,1,1700.0,2019-12-22 11:17:00,183 Maple St, Los Angeles,CA,90001 +299999,AAA Batteries (4-pack),6,2.99,2019-12-10 19:29:00,132 11th St, Boston,MA,02215 +300000,ThinkPad Laptop,1,999.99,2019-12-26 16:40:00,132 Ridge St, San Francisco,CA,94016 +300001,USB-C Charging Cable,1,11.95,2019-12-25 15:28:00,970 Adams St, Los Angeles,CA,90001 +300002,AAA Batteries (4-pack),1,2.99,2019-12-31 12:32:00,596 South St, Atlanta,GA,30301 +300002,Lightning Charging Cable,1,14.95,2019-12-31 12:32:00,596 South St, Atlanta,GA,30301 +300003,20in Monitor,1,109.99,2019-12-14 14:49:00,705 Sunset St, New York City,NY,10001 +300004,AAA Batteries (4-pack),1,2.99,2019-12-17 18:41:00,380 Park St, San Francisco,CA,94016 +300005,Wired Headphones,1,11.99,2019-12-25 08:57:00,539 Johnson St, New York City,NY,10001 +300006,AAA Batteries (4-pack),2,2.99,2019-12-06 01:34:00,382 Hickory St, New York City,NY,10001 +300007,AA Batteries (4-pack),1,3.84,2019-12-23 23:07:00,266 12th St, New York City,NY,10001 +300008,Bose SoundSport Headphones,1,99.99,2019-12-29 14:18:00,586 Meadow St, Portland,OR,97035 +300009,Apple Airpods Headphones,1,150.0,2019-12-27 17:01:00,972 2nd St, Atlanta,GA,30301 +300010,Lightning Charging Cable,1,14.95,2019-12-20 15:52:00,274 7th St, San Francisco,CA,94016 +300011,Bose SoundSport Headphones,1,99.99,2019-12-01 21:22:00,814 9th St, San Francisco,CA,94016 +300012,Wired Headphones,1,11.99,2019-12-10 00:31:00,559 Park St, New York City,NY,10001 +300013,AA Batteries (4-pack),1,3.84,2019-12-11 13:09:00,495 Meadow St, Los Angeles,CA,90001 +300014,USB-C Charging Cable,1,11.95,2019-12-06 15:57:00,347 7th St, Seattle,WA,98101 +300015,Wired Headphones,1,11.99,2019-12-20 15:10:00,942 14th St, Boston,MA,02215 +300016,USB-C Charging Cable,1,11.95,2019-12-23 10:27:00,204 Hickory St, Los Angeles,CA,90001 +300017,USB-C Charging Cable,1,11.95,2019-12-04 15:56:00,294 Maple St, Boston,MA,02215 +300018,Wired Headphones,1,11.99,2019-12-09 20:48:00,17 Cherry St, Los Angeles,CA,90001 +300019,Lightning Charging Cable,1,14.95,2019-12-23 18:03:00,971 Madison St, San Francisco,CA,94016 +300020,iPhone,1,700.0,2019-12-02 16:24:00,875 River St, Boston,MA,02215 +300021,USB-C Charging Cable,1,11.95,2019-12-14 23:04:00,812 8th St, Portland,ME,04101 +300022,Google Phone,1,600.0,2019-12-21 18:45:00,940 River St, San Francisco,CA,94016 +300023,LG Washing Machine,1,600.0,2019-12-28 15:32:00,890 Ridge St, San Francisco,CA,94016 +300024,AAA Batteries (4-pack),1,2.99,2019-12-01 21:58:00,274 14th St, Austin,TX,73301 +300025,Lightning Charging Cable,1,14.95,2019-12-12 15:52:00,41 South St, San Francisco,CA,94016 +300026,Apple Airpods Headphones,1,150.0,2019-12-15 16:03:00,75 Lakeview St, Dallas,TX,75001 +300027,Wired Headphones,1,11.99,2019-12-17 21:50:00,966 Dogwood St, Dallas,TX,75001 +300028,27in FHD Monitor,1,149.99,2019-12-05 18:10:00,453 2nd St, New York City,NY,10001 +300029,AA Batteries (4-pack),1,3.84,2019-12-09 16:31:00,341 8th St, San Francisco,CA,94016 +300030,AAA Batteries (4-pack),2,2.99,2019-12-12 13:40:00,842 Cherry St, San Francisco,CA,94016 +300031,Wired Headphones,1,11.99,2019-12-27 20:26:00,659 6th St, San Francisco,CA,94016 +300032,USB-C Charging Cable,2,11.95,2019-12-20 16:13:00,338 South St, San Francisco,CA,94016 +300033,AA Batteries (4-pack),1,3.84,2019-12-07 22:41:00,584 Lincoln St, San Francisco,CA,94016 +300034,Google Phone,1,600.0,2019-12-14 06:28:00,602 11th St, Atlanta,GA,30301 +300034,USB-C Charging Cable,1,11.95,2019-12-14 06:28:00,602 11th St, Atlanta,GA,30301 +300035,AAA Batteries (4-pack),2,2.99,2019-12-21 05:45:00,994 Wilson St, Portland,OR,97035 +300036,Apple Airpods Headphones,1,150.0,2019-12-07 06:57:00,516 Highland St, Seattle,WA,98101 +300037,USB-C Charging Cable,1,11.95,2019-12-31 13:14:00,766 Maple St, San Francisco,CA,94016 +300038,Wired Headphones,1,11.99,2019-12-25 14:44:00,229 10th St, Los Angeles,CA,90001 +300039,Google Phone,1,600.0,2019-12-12 13:48:00,879 Wilson St, San Francisco,CA,94016 +300040,Flatscreen TV,1,300.0,2019-12-16 08:02:00,850 Park St, Dallas,TX,75001 +300041,Lightning Charging Cable,1,14.95,2019-12-25 22:37:00,941 5th St, New York City,NY,10001 +300042,Lightning Charging Cable,1,14.95,2019-12-25 18:11:00,630 14th St, Dallas,TX,75001 +300043,Vareebadd Phone,1,400.0,2019-12-30 17:06:00,59 Hill St, San Francisco,CA,94016 +300044,AA Batteries (4-pack),1,3.84,2019-12-26 13:59:00,761 9th St, Dallas,TX,75001 +300045,AA Batteries (4-pack),1,3.84,2019-12-14 15:09:00,949 Main St, Boston,MA,02215 +300046,Lightning Charging Cable,1,14.95,2019-12-13 14:45:00,152 Sunset St, Los Angeles,CA,90001 +300047,iPhone,1,700.0,2019-12-11 22:58:00,519 Johnson St, Los Angeles,CA,90001 +300048,Macbook Pro Laptop,1,1700.0,2019-12-04 16:17:00,450 Jackson St, New York City,NY,10001 +300049,Google Phone,1,600.0,2019-12-02 00:30:00,761 14th St, Seattle,WA,98101 +300050,AAA Batteries (4-pack),2,2.99,2019-12-28 18:51:00,896 9th St, Dallas,TX,75001 +300051,AA Batteries (4-pack),1,3.84,2019-12-27 21:29:00,211 West St, San Francisco,CA,94016 +300052,Bose SoundSport Headphones,1,99.99,2019-12-23 20:07:00,996 11th St, Los Angeles,CA,90001 +300053,27in 4K Gaming Monitor,1,389.99,2019-12-16 21:14:00,809 Lake St, Austin,TX,73301 +300054,Bose SoundSport Headphones,1,99.99,2019-12-07 05:54:00,390 Dogwood St, Boston,MA,02215 +300055,34in Ultrawide Monitor,1,379.99,2019-12-20 21:40:00,442 North St, New York City,NY,10001 +300056,AAA Batteries (4-pack),3,2.99,2019-12-22 18:11:00,677 1st St, Dallas,TX,75001 +300057,Lightning Charging Cable,1,14.95,2019-12-28 20:08:00,715 Madison St, Los Angeles,CA,90001 +300058,34in Ultrawide Monitor,1,379.99,2019-12-12 04:12:00,255 Washington St, Los Angeles,CA,90001 +300059,AA Batteries (4-pack),1,3.84,2019-12-25 18:34:00,490 Center St, San Francisco,CA,94016 +300060,AAA Batteries (4-pack),3,2.99,2019-12-01 11:11:00,571 11th St, Atlanta,GA,30301 +300061,USB-C Charging Cable,3,11.95,2019-12-06 09:44:00,488 Cedar St, Portland,ME,04101 +300062,Bose SoundSport Headphones,1,99.99,2019-12-23 22:04:00,272 Pine St, Seattle,WA,98101 +300063,AA Batteries (4-pack),2,3.84,2019-12-25 13:47:00,603 9th St, Dallas,TX,75001 +300064,Lightning Charging Cable,1,14.95,2019-12-30 21:01:00,48 Church St, New York City,NY,10001 +300065,ThinkPad Laptop,1,999.99,2019-12-14 14:44:00,190 Washington St, Los Angeles,CA,90001 +300066,Apple Airpods Headphones,1,150.0,2019-12-08 11:32:00,310 6th St, Portland,OR,97035 +300067,Lightning Charging Cable,1,14.95,2019-12-08 10:10:00,709 Center St, Austin,TX,73301 +300068,20in Monitor,1,109.99,2019-12-02 17:47:00,722 Cedar St, Los Angeles,CA,90001 +300069,Apple Airpods Headphones,1,150.0,2019-12-14 15:18:00,961 Highland St, San Francisco,CA,94016 +300070,27in FHD Monitor,1,149.99,2019-12-26 18:34:00,99 Elm St, San Francisco,CA,94016 +300071,34in Ultrawide Monitor,1,379.99,2019-12-26 20:25:00,847 Jefferson St, Seattle,WA,98101 +300072,Vareebadd Phone,1,400.0,2019-12-26 07:21:00,995 Lincoln St, San Francisco,CA,94016 +300072,USB-C Charging Cable,1,11.95,2019-12-26 07:21:00,995 Lincoln St, San Francisco,CA,94016 +300072,Wired Headphones,1,11.99,2019-12-26 07:21:00,995 Lincoln St, San Francisco,CA,94016 +300073,iPhone,1,700.0,2019-12-14 10:23:00,638 5th St, New York City,NY,10001 +300074,USB-C Charging Cable,2,11.95,2019-12-07 23:04:00,577 Johnson St, San Francisco,CA,94016 +300075,Bose SoundSport Headphones,1,99.99,2019-12-04 23:00:00,256 Park St, Seattle,WA,98101 +300076,USB-C Charging Cable,1,11.95,2019-12-12 21:46:00,233 Cedar St, Seattle,WA,98101 +300077,Macbook Pro Laptop,1,1700.0,2019-12-17 15:37:00,325 1st St, Los Angeles,CA,90001 +300078,USB-C Charging Cable,1,11.95,2019-12-23 16:18:00,42 Park St, San Francisco,CA,94016 +300079,Wired Headphones,1,11.99,2019-12-10 11:34:00,96 2nd St, New York City,NY,10001 +300080,Apple Airpods Headphones,1,150.0,2019-12-28 20:31:00,593 13th St, Dallas,TX,75001 +300081,AAA Batteries (4-pack),3,2.99,2019-12-02 14:24:00,917 Pine St, Los Angeles,CA,90001 +300082,Wired Headphones,2,11.99,2019-12-14 15:22:00,63 Pine St, New York City,NY,10001 +300083,USB-C Charging Cable,1,11.95,2019-12-13 11:09:00,823 Lake St, New York City,NY,10001 +300084,Wired Headphones,1,11.99,2019-12-27 18:29:00,140 Dogwood St, San Francisco,CA,94016 +300085,AA Batteries (4-pack),1,3.84,2019-12-17 14:01:00,601 Spruce St, Boston,MA,02215 +300086,USB-C Charging Cable,1,11.95,2019-12-15 18:02:00,386 Chestnut St, Portland,ME,04101 +300087,34in Ultrawide Monitor,1,379.99,2019-12-27 11:09:00,325 8th St, Seattle,WA,98101 +300088,Apple Airpods Headphones,1,150.0,2019-12-17 11:54:00,595 Willow St, San Francisco,CA,94016 +300089,20in Monitor,1,109.99,2019-12-25 22:48:00,476 7th St, New York City,NY,10001 +300090,Wired Headphones,1,11.99,2019-12-13 13:51:00,97 Center St, Los Angeles,CA,90001 +300091,Macbook Pro Laptop,1,1700.0,2019-12-06 19:18:00,308 6th St, Boston,MA,02215 +300092,USB-C Charging Cable,1,11.95,2019-12-01 06:55:00,208 Meadow St, Los Angeles,CA,90001 +300093,Apple Airpods Headphones,1,150.0,2019-12-17 08:28:00,803 6th St, Austin,TX,73301 +300094,Macbook Pro Laptop,1,1700.0,2019-12-29 10:49:00,97 Johnson St, New York City,NY,10001 +300095,AAA Batteries (4-pack),1,2.99,2019-12-08 14:06:00,896 10th St, Boston,MA,02215 +300096,Lightning Charging Cable,1,14.95,2019-12-24 19:39:00,622 2nd St, Seattle,WA,98101 +300097,USB-C Charging Cable,1,11.95,2019-12-03 11:06:00,695 Sunset St, Dallas,TX,75001 +300098,AA Batteries (4-pack),2,3.84,2019-12-26 18:52:00,192 Hill St, Seattle,WA,98101 +300099,27in FHD Monitor,1,149.99,2019-12-11 18:43:00,315 7th St, Atlanta,GA,30301 +300100,Lightning Charging Cable,1,14.95,2019-12-13 09:24:00,677 West St, Seattle,WA,98101 +300101,AA Batteries (4-pack),1,3.84,2019-12-18 11:17:00,685 2nd St, Los Angeles,CA,90001 +300102,Wired Headphones,1,11.99,2019-12-27 19:55:00,591 Chestnut St, Los Angeles,CA,90001 +300103,Bose SoundSport Headphones,1,99.99,2019-12-26 21:19:00,531 Main St, Dallas,TX,75001 +300104,Wired Headphones,1,11.99,2019-12-27 22:18:00,903 Meadow St, Portland,OR,97035 +300105,Google Phone,1,600.0,2019-12-07 20:13:00,423 12th St, San Francisco,CA,94016 +300106,34in Ultrawide Monitor,1,379.99,2019-12-28 05:59:00,214 Maple St, San Francisco,CA,94016 +300107,AA Batteries (4-pack),1,3.84,2019-12-01 12:22:00,816 Cedar St, New York City,NY,10001 +300108,ThinkPad Laptop,1,999.99,2019-12-12 17:21:00,136 West St, Atlanta,GA,30301 +300109,Wired Headphones,1,11.99,2019-12-23 16:00:00,852 Elm St, San Francisco,CA,94016 +300110,AAA Batteries (4-pack),2,2.99,2019-12-24 18:49:00,130 North St, Dallas,TX,75001 +300111,27in 4K Gaming Monitor,1,389.99,2019-12-28 17:38:00,938 Hickory St, Dallas,TX,75001 +300112,USB-C Charging Cable,1,11.95,2019-12-13 16:55:00,976 14th St, Austin,TX,73301 +300113,USB-C Charging Cable,1,11.95,2019-12-12 09:21:00,629 Willow St, San Francisco,CA,94016 +300114,Bose SoundSport Headphones,1,99.99,2019-12-22 20:17:00,945 Maple St, Austin,TX,73301 +300115,Lightning Charging Cable,1,14.95,2019-12-27 11:06:00,292 Adams St, Boston,MA,02215 +300116,Bose SoundSport Headphones,1,99.99,2019-12-20 18:51:00,996 Lake St, Boston,MA,02215 +300117,Apple Airpods Headphones,1,150.0,2019-12-12 22:42:00,549 Maple St, Atlanta,GA,30301 +300117,AAA Batteries (4-pack),1,2.99,2019-12-12 22:42:00,549 Maple St, Atlanta,GA,30301 +300118,ThinkPad Laptop,1,999.99,2019-12-10 15:08:00,111 Main St, San Francisco,CA,94016 +300119,Wired Headphones,1,11.99,2019-12-30 13:22:00,533 Jackson St, Seattle,WA,98101 +300120,34in Ultrawide Monitor,1,379.99,2019-12-04 20:17:00,984 Spruce St, Los Angeles,CA,90001 +300121,AAA Batteries (4-pack),1,2.99,2019-12-05 09:57:00,152 Spruce St, Los Angeles,CA,90001 +300122,Lightning Charging Cable,1,14.95,2019-12-22 14:51:00,880 Lakeview St, San Francisco,CA,94016 +300123,Wired Headphones,1,11.99,2019-12-26 20:53:00,146 River St, Boston,MA,02215 +300124,Bose SoundSport Headphones,1,99.99,2019-12-28 12:55:00,698 12th St, New York City,NY,10001 +300125,AA Batteries (4-pack),3,3.84,2019-12-20 14:43:00,180 Ridge St, San Francisco,CA,94016 +300126,Wired Headphones,1,11.99,2019-12-16 08:46:00,6 West St, New York City,NY,10001 +300127,Wired Headphones,1,11.99,2019-12-10 08:55:00,385 Center St, Dallas,TX,75001 +300128,AAA Batteries (4-pack),1,2.99,2019-12-17 20:21:00,718 2nd St, Portland,OR,97035 +300129,27in 4K Gaming Monitor,1,389.99,2019-12-11 21:44:00,413 Cherry St, San Francisco,CA,94016 +300130,Bose SoundSport Headphones,1,99.99,2019-12-16 13:56:00,971 West St, New York City,NY,10001 +300131,USB-C Charging Cable,1,11.95,2019-12-09 12:05:00,53 Cedar St, Los Angeles,CA,90001 +300132,27in 4K Gaming Monitor,1,389.99,2019-12-10 16:36:00,467 Center St, Portland,OR,97035 +300133,Flatscreen TV,1,300.0,2019-12-09 20:01:00,674 Walnut St, San Francisco,CA,94016 +300134,27in 4K Gaming Monitor,1,389.99,2019-12-16 21:32:00,916 Hill St, Atlanta,GA,30301 +300135,Wired Headphones,1,11.99,2019-12-03 20:41:00,239 9th St, New York City,NY,10001 +300136,Google Phone,1,600.0,2019-12-23 09:26:00,10 Lakeview St, Boston,MA,02215 +300137,27in 4K Gaming Monitor,1,389.99,2019-12-27 11:17:00,971 Lincoln St, Los Angeles,CA,90001 +300138,27in 4K Gaming Monitor,1,389.99,2019-12-21 11:38:00,512 Ridge St, San Francisco,CA,94016 +300139,Lightning Charging Cable,1,14.95,2019-12-22 21:48:00,908 12th St, Portland,ME,04101 +300140,Macbook Pro Laptop,1,1700.0,2019-12-08 06:21:00,871 Lakeview St, Los Angeles,CA,90001 +300141,USB-C Charging Cable,1,11.95,2019-12-31 11:14:00,459 Chestnut St, Boston,MA,02215 +300142,AA Batteries (4-pack),1,3.84,2019-12-24 14:51:00,799 14th St, Los Angeles,CA,90001 +300143,USB-C Charging Cable,1,11.95,2019-12-28 20:07:00,478 Jackson St, New York City,NY,10001 +300144,Lightning Charging Cable,1,14.95,2019-12-05 19:53:00,617 8th St, Seattle,WA,98101 +300145,Google Phone,1,600.0,2019-12-19 14:59:00,694 Cherry St, Portland,OR,97035 +300146,Bose SoundSport Headphones,1,99.99,2019-12-31 20:41:00,121 Madison St, Seattle,WA,98101 +300147,20in Monitor,1,109.99,2019-12-28 15:15:00,192 Maple St, San Francisco,CA,94016 +300148,Google Phone,1,600.0,2019-12-14 20:19:00,387 Lake St, Los Angeles,CA,90001 +300148,Bose SoundSport Headphones,1,99.99,2019-12-14 20:19:00,387 Lake St, Los Angeles,CA,90001 +300149,AA Batteries (4-pack),1,3.84,2019-12-06 09:47:00,578 Chestnut St, Dallas,TX,75001 +300150,Bose SoundSport Headphones,1,99.99,2019-12-22 13:12:00,368 Jackson St, New York City,NY,10001 +300151,AA Batteries (4-pack),1,3.84,2019-12-08 00:06:00,534 7th St, Atlanta,GA,30301 +300152,27in 4K Gaming Monitor,1,389.99,2019-12-23 07:37:00,317 Sunset St, Los Angeles,CA,90001 +300153,AA Batteries (4-pack),1,3.84,2019-12-20 16:25:00,180 Sunset St, New York City,NY,10001 +300154,iPhone,1,700.0,2019-12-23 17:08:00,817 12th St, Portland,OR,97035 +300155,AAA Batteries (4-pack),1,2.99,2019-12-21 20:37:00,978 Pine St, Portland,OR,97035 +300156,Wired Headphones,2,11.99,2019-12-22 15:25:00,712 Lakeview St, Boston,MA,02215 +300157,Wired Headphones,1,11.99,2019-12-10 12:09:00,825 Cherry St, San Francisco,CA,94016 +300158,ThinkPad Laptop,1,999.99,2019-12-05 19:33:00,566 9th St, Boston,MA,02215 +300159,20in Monitor,1,109.99,2019-12-23 09:51:00,565 Main St, Seattle,WA,98101 +300160,Wired Headphones,1,11.99,2019-12-25 18:11:00,170 Hill St, San Francisco,CA,94016 +300161,27in 4K Gaming Monitor,1,389.99,2019-12-30 13:48:00,813 9th St, Boston,MA,02215 +300162,AAA Batteries (4-pack),1,2.99,2019-12-17 03:00:00,682 Pine St, San Francisco,CA,94016 +300163,Lightning Charging Cable,1,14.95,2019-12-15 12:11:00,264 Church St, Portland,ME,04101 +300164,LG Dryer,1,600.0,2019-12-17 19:41:00,950 Ridge St, New York City,NY,10001 +300165,Wired Headphones,1,11.99,2019-12-13 17:55:00,584 Chestnut St, New York City,NY,10001 +300166,Bose SoundSport Headphones,1,99.99,2019-12-10 08:04:00,834 West St, San Francisco,CA,94016 +300167,Wired Headphones,1,11.99,2019-12-25 20:21:00,487 Jackson St, Los Angeles,CA,90001 +300168,AAA Batteries (4-pack),2,2.99,2019-12-09 11:44:00,7 Adams St, Dallas,TX,75001 +300169,Bose SoundSport Headphones,1,99.99,2019-12-15 15:20:00,136 Center St, San Francisco,CA,94016 +300170,Lightning Charging Cable,1,14.95,2019-12-20 22:48:00,649 Forest St, Dallas,TX,75001 +300171,Lightning Charging Cable,1,14.95,2019-12-07 12:45:00,30 Lake St, Dallas,TX,75001 +300172,Apple Airpods Headphones,1,150.0,2019-12-04 07:10:00,985 Washington St, Atlanta,GA,30301 +300173,Apple Airpods Headphones,1,150.0,2019-12-19 11:08:00,699 Ridge St, Atlanta,GA,30301 +300174,Bose SoundSport Headphones,1,99.99,2019-12-20 11:40:00,310 14th St, San Francisco,CA,94016 +300175,Lightning Charging Cable,1,14.95,2019-12-30 19:05:00,416 1st St, San Francisco,CA,94016 +300176,USB-C Charging Cable,1,11.95,2019-12-21 18:51:00,373 Hill St, Seattle,WA,98101 +300177,LG Washing Machine,1,600.0,2019-12-17 19:17:00,394 Sunset St, Boston,MA,02215 +300178,27in FHD Monitor,1,149.99,2019-12-29 07:49:00,138 1st St, Atlanta,GA,30301 +300179,Apple Airpods Headphones,1,150.0,2019-12-14 07:01:00,696 6th St, Los Angeles,CA,90001 +300180,Apple Airpods Headphones,1,150.0,2019-12-31 02:01:00,433 Cherry St, Austin,TX,73301 +300181,Bose SoundSport Headphones,1,99.99,2019-12-10 01:25:00,50 Jackson St, Los Angeles,CA,90001 +300182,Apple Airpods Headphones,1,150.0,2019-12-05 10:04:00,215 Washington St, Los Angeles,CA,90001 +300183,Lightning Charging Cable,1,14.95,2019-12-07 23:42:00,406 Adams St, Atlanta,GA,30301 +300184,Wired Headphones,2,11.99,2019-12-25 12:38:00,953 Wilson St, New York City,NY,10001 +300185,Bose SoundSport Headphones,1,99.99,2019-12-20 20:47:00,482 Johnson St, Seattle,WA,98101 +300186,Apple Airpods Headphones,1,150.0,2019-12-13 23:03:00,979 Hickory St, Los Angeles,CA,90001 +300187,27in FHD Monitor,1,149.99,2019-12-10 12:06:00,562 4th St, New York City,NY,10001 +300188,Lightning Charging Cable,1,14.95,2019-12-01 18:07:00,812 Washington St, Atlanta,GA,30301 +300189,Bose SoundSport Headphones,1,99.99,2019-12-24 14:36:00,583 Ridge St, Portland,OR,97035 +300190,AA Batteries (4-pack),1,3.84,2019-12-16 00:58:00,357 13th St, San Francisco,CA,94016 +300191,AA Batteries (4-pack),1,3.84,2019-12-25 21:41:00,182 6th St, San Francisco,CA,94016 +300192,Bose SoundSport Headphones,1,99.99,2019-12-10 06:55:00,115 North St, Los Angeles,CA,90001 +300193,AAA Batteries (4-pack),4,2.99,2019-12-14 21:07:00,135 Adams St, Boston,MA,02215 +300194,Bose SoundSport Headphones,1,99.99,2019-12-17 20:37:00,800 Ridge St, Atlanta,GA,30301 +300195,Wired Headphones,1,11.99,2019-12-21 11:39:00,861 12th St, San Francisco,CA,94016 +300196,Bose SoundSport Headphones,1,99.99,2019-12-17 08:03:00,143 Lincoln St, Portland,OR,97035 +300197,27in 4K Gaming Monitor,1,389.99,2019-12-02 20:46:00,120 2nd St, Boston,MA,02215 +300198,AAA Batteries (4-pack),1,2.99,2019-12-14 18:54:00,200 Dogwood St, Atlanta,GA,30301 +300199,AA Batteries (4-pack),1,3.84,2019-12-03 22:39:00,920 Lincoln St, New York City,NY,10001 +300200,USB-C Charging Cable,1,11.95,2019-12-09 10:57:00,845 Johnson St, New York City,NY,10001 +300201,Wired Headphones,1,11.99,2019-12-24 12:32:00,108 Highland St, Portland,OR,97035 +300202,27in FHD Monitor,1,149.99,2019-12-13 04:42:00,217 1st St, New York City,NY,10001 +300203,AA Batteries (4-pack),2,3.84,2019-12-03 13:34:00,899 Pine St, Los Angeles,CA,90001 +300204,Apple Airpods Headphones,1,150.0,2019-12-10 15:27:00,605 Dogwood St, Seattle,WA,98101 +300205,20in Monitor,1,109.99,2019-12-01 19:39:00,944 Lakeview St, Los Angeles,CA,90001 +300206,Flatscreen TV,1,300.0,2019-12-01 07:03:00,141 14th St, Boston,MA,02215 +300207,Wired Headphones,1,11.99,2019-12-27 10:01:00,91 Washington St, Seattle,WA,98101 +300208,Apple Airpods Headphones,1,150.0,2019-12-06 16:22:00,893 West St, San Francisco,CA,94016 +300209,USB-C Charging Cable,1,11.95,2019-12-30 20:49:00,665 11th St, Austin,TX,73301 +300210,Google Phone,1,600.0,2019-12-14 15:17:00,7 4th St, San Francisco,CA,94016 +300211,AA Batteries (4-pack),2,3.84,2019-12-23 19:42:00,386 13th St, New York City,NY,10001 +300212,Flatscreen TV,1,300.0,2019-12-06 20:34:00,476 12th St, Atlanta,GA,30301 +300213,Wired Headphones,2,11.99,2019-12-13 11:12:00,811 Walnut St, Los Angeles,CA,90001 +300214,Wired Headphones,1,11.99,2019-12-05 10:02:00,691 13th St, Austin,TX,73301 +300215,27in 4K Gaming Monitor,1,389.99,2019-12-07 08:37:00,69 1st St, Boston,MA,02215 +300216,Flatscreen TV,1,300.0,2019-12-13 17:16:00,509 Chestnut St, Los Angeles,CA,90001 +300217,Bose SoundSport Headphones,1,99.99,2019-12-28 19:22:00,588 7th St, Los Angeles,CA,90001 +300218,USB-C Charging Cable,2,11.95,2019-12-08 15:09:00,563 Highland St, Dallas,TX,75001 +300219,34in Ultrawide Monitor,1,379.99,2019-12-16 20:53:00,475 Center St, San Francisco,CA,94016 +300220,iPhone,1,700.0,2019-12-12 15:27:00,22 2nd St, New York City,NY,10001 +300221,AA Batteries (4-pack),1,3.84,2019-12-30 21:36:00,978 Elm St, San Francisco,CA,94016 +300222,iPhone,1,700.0,2019-12-16 16:14:00,957 Hill St, New York City,NY,10001 +300222,Apple Airpods Headphones,1,150.0,2019-12-16 16:14:00,957 Hill St, New York City,NY,10001 +300223,USB-C Charging Cable,1,11.95,2019-12-07 22:11:00,542 Walnut St, Boston,MA,02215 +300224,iPhone,1,700.0,2019-12-01 12:33:00,662 14th St, Seattle,WA,98101 +300225,Wired Headphones,1,11.99,2019-12-27 12:04:00,413 6th St, San Francisco,CA,94016 +300226,Lightning Charging Cable,1,14.95,2019-12-29 11:14:00,560 1st St, Dallas,TX,75001 +300227,USB-C Charging Cable,2,11.95,2019-12-05 13:50:00,5 13th St, Dallas,TX,75001 +300228,20in Monitor,1,109.99,2019-12-02 13:53:00,692 Johnson St, Boston,MA,02215 +300229,LG Dryer,1,600.0,2019-12-25 18:17:00,683 11th St, Atlanta,GA,30301 +300230,iPhone,1,700.0,2019-12-20 06:02:00,804 Jackson St, San Francisco,CA,94016 +300230,Apple Airpods Headphones,1,150.0,2019-12-20 06:02:00,804 Jackson St, San Francisco,CA,94016 +300231,AAA Batteries (4-pack),2,2.99,2019-12-23 07:35:00,793 Lakeview St, Austin,TX,73301 +300232,Lightning Charging Cable,1,14.95,2019-12-01 12:05:00,513 Pine St, Austin,TX,73301 +300233,Wired Headphones,1,11.99,2019-12-18 14:42:00,371 Washington St, Portland,OR,97035 +300234,34in Ultrawide Monitor,1,379.99,2019-12-23 09:07:00,679 Wilson St, Boston,MA,02215 +300235,AAA Batteries (4-pack),1,2.99,2019-12-18 09:52:00,204 Cherry St, Boston,MA,02215 +300236,USB-C Charging Cable,1,11.95,2019-12-26 20:22:00,736 Jackson St, Atlanta,GA,30301 +300237,34in Ultrawide Monitor,1,379.99,2019-12-05 07:44:00,321 Church St, San Francisco,CA,94016 +300238,AA Batteries (4-pack),1,3.84,2019-12-30 21:29:00,420 5th St, Atlanta,GA,30301 +300239,27in FHD Monitor,1,149.99,2019-12-02 13:49:00,677 Washington St, Los Angeles,CA,90001 +300240,Apple Airpods Headphones,1,150.0,2019-12-05 09:30:00,168 Highland St, Seattle,WA,98101 +300241,Wired Headphones,1,11.99,2019-12-11 18:58:00,505 13th St, Los Angeles,CA,90001 +300242,Lightning Charging Cable,1,14.95,2019-12-03 10:16:00,112 Washington St, Los Angeles,CA,90001 +300243,USB-C Charging Cable,2,11.95,2019-12-03 14:21:00,519 Park St, Los Angeles,CA,90001 +300244,Wired Headphones,1,11.99,2019-12-15 16:54:00,362 Adams St, Los Angeles,CA,90001 +300245,Lightning Charging Cable,1,14.95,2019-12-05 11:33:00,419 Meadow St, San Francisco,CA,94016 +300246,Wired Headphones,1,11.99,2019-12-07 19:14:00,167 South St, San Francisco,CA,94016 +300247,Google Phone,1,600.0,2019-12-04 18:21:00,295 7th St, San Francisco,CA,94016 +300248,Wired Headphones,1,11.99,2019-12-27 14:16:00,531 13th St, San Francisco,CA,94016 +300249,20in Monitor,1,109.99,2019-12-17 11:27:00,283 Lakeview St, Los Angeles,CA,90001 +300250,USB-C Charging Cable,1,11.95,2019-12-10 07:37:00,811 Lakeview St, Austin,TX,73301 +300251,Apple Airpods Headphones,1,150.0,2019-12-01 17:55:00,12 River St, New York City,NY,10001 +300252,AA Batteries (4-pack),1,3.84,2019-12-07 08:22:00,828 River St, Los Angeles,CA,90001 +300253,Bose SoundSport Headphones,1,99.99,2019-12-19 18:38:00,491 8th St, Boston,MA,02215 +300254,Bose SoundSport Headphones,1,99.99,2019-12-12 11:21:00,442 Elm St, Austin,TX,73301 +300255,AAA Batteries (4-pack),1,2.99,2019-12-22 17:18:00,896 Adams St, San Francisco,CA,94016 +300256,Flatscreen TV,1,300.0,2019-12-24 16:46:00,197 Dogwood St, Portland,OR,97035 +300257,Lightning Charging Cable,1,14.95,2019-12-12 17:02:00,144 11th St, Boston,MA,02215 +300258,Google Phone,1,600.0,2019-12-15 13:42:00,381 Main St, New York City,NY,10001 +300258,Bose SoundSport Headphones,1,99.99,2019-12-15 13:42:00,381 Main St, New York City,NY,10001 +300259,AAA Batteries (4-pack),1,2.99,2019-12-14 09:05:00,695 7th St, New York City,NY,10001 +300260,iPhone,1,700.0,2019-12-11 13:39:00,224 Lake St, Portland,ME,04101 +300261,USB-C Charging Cable,1,11.95,2019-12-06 07:56:00,367 Ridge St, Atlanta,GA,30301 +300262,USB-C Charging Cable,1,11.95,2019-12-05 16:47:00,77 Wilson St, New York City,NY,10001 +300263,AA Batteries (4-pack),4,3.84,2019-12-08 07:17:00,707 Madison St, Los Angeles,CA,90001 +300264,AAA Batteries (4-pack),1,2.99,2019-12-30 10:47:00,127 Lincoln St, San Francisco,CA,94016 +300265,Bose SoundSport Headphones,1,99.99,2019-12-17 15:07:00,161 Spruce St, New York City,NY,10001 +300266,Wired Headphones,1,11.99,2019-12-31 09:21:00,556 North St, Los Angeles,CA,90001 +300267,AA Batteries (4-pack),1,3.84,2019-12-06 00:50:00,45 Jefferson St, San Francisco,CA,94016 +300268,Lightning Charging Cable,1,14.95,2019-12-19 20:19:00,203 Pine St, Dallas,TX,75001 +300269,AA Batteries (4-pack),2,3.84,2019-12-23 15:23:00,91 Chestnut St, Boston,MA,02215 +300270,20in Monitor,1,109.99,2019-12-21 06:04:00,828 Church St, San Francisco,CA,94016 +300271,27in FHD Monitor,1,149.99,2019-12-01 12:50:00,315 7th St, San Francisco,CA,94016 +300272,AAA Batteries (4-pack),1,2.99,2019-12-19 18:20:00,19 Jackson St, Austin,TX,73301 +300273,Wired Headphones,1,11.99,2019-12-28 14:49:00,845 Hill St, Portland,OR,97035 +300274,Wired Headphones,1,11.99,2019-12-10 10:41:00,810 Hill St, Seattle,WA,98101 +300275,AAA Batteries (4-pack),1,2.99,2019-12-22 11:14:00,545 8th St, Atlanta,GA,30301 +300276,Google Phone,1,600.0,2019-12-21 21:32:00,193 14th St, New York City,NY,10001 +300276,USB-C Charging Cable,1,11.95,2019-12-21 21:32:00,193 14th St, New York City,NY,10001 +300277,Wired Headphones,1,11.99,2019-12-20 21:27:00,532 13th St, San Francisco,CA,94016 +300278,Bose SoundSport Headphones,1,99.99,2019-12-15 18:56:00,996 Elm St, New York City,NY,10001 +300279,AA Batteries (4-pack),1,3.84,2019-12-14 19:27:00,158 8th St, New York City,NY,10001 +300280,AAA Batteries (4-pack),1,2.99,2019-12-04 16:58:00,275 Church St, New York City,NY,10001 +300281,Lightning Charging Cable,1,14.95,2019-12-03 15:33:00,126 Cherry St, San Francisco,CA,94016 +300282,Macbook Pro Laptop,1,1700.0,2019-12-15 18:09:00,545 9th St, Seattle,WA,98101 +300283,Lightning Charging Cable,1,14.95,2019-12-29 06:53:00,109 Pine St, Dallas,TX,75001 +300284,Wired Headphones,1,11.99,2019-12-19 20:51:00,525 Adams St, Atlanta,GA,30301 +300285,AAA Batteries (4-pack),1,2.99,2019-12-02 09:22:00,311 7th St, San Francisco,CA,94016 +300286,USB-C Charging Cable,1,11.95,2019-12-17 22:27:00,210 Highland St, Los Angeles,CA,90001 +300287,AA Batteries (4-pack),2,3.84,2019-12-01 14:27:00,567 Pine St, Portland,OR,97035 +300288,AAA Batteries (4-pack),1,2.99,2019-12-12 10:12:00,352 12th St, Seattle,WA,98101 +300289,AA Batteries (4-pack),1,3.84,2019-12-05 07:44:00,26 13th St, Portland,OR,97035 +300290,USB-C Charging Cable,1,11.95,2019-12-28 22:10:00,662 4th St, Dallas,TX,75001 +300291,Apple Airpods Headphones,1,150.0,2019-12-10 20:07:00,486 West St, San Francisco,CA,94016 +300292,AA Batteries (4-pack),2,3.84,2019-12-04 18:11:00,244 12th St, Atlanta,GA,30301 +300293,Flatscreen TV,1,300.0,2019-12-08 15:28:00,361 Highland St, New York City,NY,10001 +300294,Lightning Charging Cable,1,14.95,2019-12-14 23:10:00,130 Walnut St, Seattle,WA,98101 +300295,27in FHD Monitor,1,149.99,2019-12-11 12:52:00,386 Dogwood St, New York City,NY,10001 +300296,Apple Airpods Headphones,1,150.0,2019-12-04 22:03:00,734 Church St, San Francisco,CA,94016 +300297,Bose SoundSport Headphones,1,99.99,2019-12-23 07:51:00,988 13th St, San Francisco,CA,94016 +300298,20in Monitor,1,109.99,2019-12-30 06:12:00,457 Hickory St, San Francisco,CA,94016 +300299,27in 4K Gaming Monitor,1,389.99,2019-12-04 16:29:00,574 South St, New York City,NY,10001 +300300,Lightning Charging Cable,1,14.95,2019-12-24 21:41:00,966 Adams St, New York City,NY,10001 +300301,Lightning Charging Cable,1,14.95,2019-12-07 09:34:00,656 Madison St, Boston,MA,02215 +300302,AA Batteries (4-pack),1,3.84,2019-12-03 23:02:00,120 Ridge St, Los Angeles,CA,90001 +300303,27in FHD Monitor,1,149.99,2019-12-22 14:02:00,360 Sunset St, Boston,MA,02215 +300304,Apple Airpods Headphones,1,150.0,2019-12-07 17:49:00,746 Lakeview St, Austin,TX,73301 +300305,Google Phone,1,600.0,2019-12-31 17:23:00,66 Park St, Los Angeles,CA,90001 +300306,27in FHD Monitor,1,149.99,2019-12-01 17:36:00,316 Walnut St, Atlanta,GA,30301 +300307,AAA Batteries (4-pack),2,2.99,2019-12-24 08:12:00,524 6th St, New York City,NY,10001 +300308,AAA Batteries (4-pack),1,2.99,2019-12-03 07:56:00,502 Meadow St, San Francisco,CA,94016 +300309,Macbook Pro Laptop,1,1700.0,2019-12-25 13:55:00,377 Cedar St, Dallas,TX,75001 +300310,Google Phone,1,600.0,2019-12-12 19:48:00,123 Johnson St, Seattle,WA,98101 +300310,Wired Headphones,1,11.99,2019-12-12 19:48:00,123 Johnson St, Seattle,WA,98101 +300311,Bose SoundSport Headphones,1,99.99,2019-12-08 20:00:00,553 2nd St, Atlanta,GA,30301 +300312,Wired Headphones,1,11.99,2019-12-30 14:38:00,293 Cedar St, Boston,MA,02215 +300313,ThinkPad Laptop,1,999.99,2019-12-22 13:37:00,855 Jackson St, San Francisco,CA,94016 +300314,Google Phone,1,600.0,2019-12-18 14:46:00,969 Spruce St, Seattle,WA,98101 +300315,AA Batteries (4-pack),1,3.84,2019-12-02 06:18:00,281 6th St, San Francisco,CA,94016 +300316,AAA Batteries (4-pack),1,2.99,2019-12-06 16:42:00,51 13th St, New York City,NY,10001 +300317,Apple Airpods Headphones,1,150.0,2019-12-25 20:25:00,49 Jefferson St, Boston,MA,02215 +300318,AAA Batteries (4-pack),1,2.99,2019-12-01 22:41:00,720 1st St, Dallas,TX,75001 +300319,USB-C Charging Cable,1,11.95,2019-12-03 12:19:00,631 River St, Los Angeles,CA,90001 +300320,Lightning Charging Cable,1,14.95,2019-12-20 12:15:00,976 Center St, San Francisco,CA,94016 +300321,AAA Batteries (4-pack),3,2.99,2019-12-22 05:44:00,331 Park St, New York City,NY,10001 +300322,Wired Headphones,1,11.99,2019-12-01 19:17:00,65 2nd St, Seattle,WA,98101 +300323,Bose SoundSport Headphones,1,99.99,2019-12-07 08:31:00,893 Main St, Seattle,WA,98101 +300324,USB-C Charging Cable,2,11.95,2019-12-06 01:22:00,544 Hill St, Los Angeles,CA,90001 +300325,Flatscreen TV,1,300.0,2019-12-18 10:07:00,444 Washington St, Atlanta,GA,30301 +300326,Google Phone,1,600.0,2019-12-07 12:59:00,279 Dogwood St, Atlanta,GA,30301 +300327,34in Ultrawide Monitor,1,379.99,2019-12-21 17:49:00,382 Cedar St, Los Angeles,CA,90001 +300328,AAA Batteries (4-pack),2,2.99,2019-12-27 19:42:00,319 Cherry St, New York City,NY,10001 +300329,AA Batteries (4-pack),2,3.84,2019-12-15 07:29:00,470 Jefferson St, San Francisco,CA,94016 +300330,Vareebadd Phone,1,400.0,2019-12-24 11:38:00,439 Washington St, Atlanta,GA,30301 +300331,USB-C Charging Cable,1,11.95,2019-12-29 19:32:00,148 Hickory St, Los Angeles,CA,90001 +300332,USB-C Charging Cable,1,11.95,2019-12-02 15:38:00,399 Jackson St, Atlanta,GA,30301 +300333,AAA Batteries (4-pack),1,2.99,2019-12-11 20:23:00,754 Spruce St, Seattle,WA,98101 +300334,Lightning Charging Cable,1,14.95,2019-12-13 21:15:00,775 Hickory St, Atlanta,GA,30301 +300335,USB-C Charging Cable,1,11.95,2019-12-24 10:59:00,785 Cedar St, Dallas,TX,75001 +300336,Bose SoundSport Headphones,1,99.99,2019-12-21 13:22:00,810 6th St, New York City,NY,10001 +300337,Wired Headphones,2,11.99,2019-12-05 12:56:00,332 Lincoln St, Los Angeles,CA,90001 +300338,Lightning Charging Cable,1,14.95,2019-12-19 15:41:00,479 Hickory St, Dallas,TX,75001 +300339,USB-C Charging Cable,1,11.95,2019-12-19 19:31:00,813 5th St, New York City,NY,10001 +300340,USB-C Charging Cable,1,11.95,2019-12-02 09:33:00,931 Pine St, San Francisco,CA,94016 +300341,AAA Batteries (4-pack),1,2.99,2019-12-06 02:24:00,367 Adams St, San Francisco,CA,94016 +300342,USB-C Charging Cable,1,11.95,2019-12-29 19:06:00,505 12th St, Boston,MA,02215 +300343,Vareebadd Phone,1,400.0,2019-12-14 04:27:00,497 Walnut St, Los Angeles,CA,90001 +300343,USB-C Charging Cable,1,11.95,2019-12-14 04:27:00,497 Walnut St, Los Angeles,CA,90001 +300344,AA Batteries (4-pack),1,3.84,2019-12-30 21:14:00,123 12th St, Dallas,TX,75001 +300345,USB-C Charging Cable,1,11.95,2019-12-11 21:01:00,8 Jefferson St, Dallas,TX,75001 +300346,USB-C Charging Cable,1,11.95,2019-12-29 13:00:00,597 13th St, San Francisco,CA,94016 +300347,Lightning Charging Cable,1,14.95,2019-12-14 18:58:00,290 Madison St, New York City,NY,10001 +300348,Bose SoundSport Headphones,1,99.99,2019-12-29 08:11:00,859 Cherry St, New York City,NY,10001 +300349,Wired Headphones,1,11.99,2019-12-18 13:06:00,405 14th St, Boston,MA,02215 +300350,iPhone,1,700.0,2019-12-15 20:45:00,349 West St, San Francisco,CA,94016 +300351,AAA Batteries (4-pack),1,2.99,2019-12-11 11:49:00,248 9th St, Seattle,WA,98101 +300352,Apple Airpods Headphones,1,150.0,2019-12-04 12:55:00,188 South St, Austin,TX,73301 +300353,Apple Airpods Headphones,1,150.0,2019-12-14 09:50:00,865 Lakeview St, San Francisco,CA,94016 +300354,Lightning Charging Cable,1,14.95,2019-12-11 11:54:00,155 Ridge St, Los Angeles,CA,90001 +300355,Apple Airpods Headphones,1,150.0,2019-12-07 17:32:00,807 14th St, San Francisco,CA,94016 +300356,AAA Batteries (4-pack),1,2.99,2019-12-30 18:27:00,15 Jefferson St, Portland,OR,97035 +300357,Wired Headphones,1,11.99,2019-12-02 13:23:00,870 8th St, Los Angeles,CA,90001 +300358,iPhone,1,700.0,2019-12-14 13:30:00,439 Johnson St, New York City,NY,10001 +300359,USB-C Charging Cable,1,11.95,2019-12-27 09:47:00,335 Cherry St, Austin,TX,73301 +300360,27in FHD Monitor,1,149.99,2019-12-24 13:28:00,503 10th St, Atlanta,GA,30301 +300361,ThinkPad Laptop,1,999.99,2019-12-23 17:54:00,994 Park St, San Francisco,CA,94016 +300362,USB-C Charging Cable,1,11.95,2020-01-01 00:59:00,581 River St, San Francisco,CA,94016 +300363,USB-C Charging Cable,1,11.95,2019-12-24 21:20:00,425 Park St, San Francisco,CA,94016 +300364,Lightning Charging Cable,1,14.95,2019-12-09 19:45:00,19 9th St, Seattle,WA,98101 +300365,Lightning Charging Cable,1,14.95,2019-12-26 12:44:00,265 5th St, Los Angeles,CA,90001 +300366,Wired Headphones,1,11.99,2019-12-06 13:16:00,316 Walnut St, Los Angeles,CA,90001 +300367,Apple Airpods Headphones,1,150.0,2019-12-17 02:20:00,693 Jackson St, Portland,OR,97035 +300368,AA Batteries (4-pack),1,3.84,2019-12-09 13:24:00,239 North St, Boston,MA,02215 +300369,AA Batteries (4-pack),1,3.84,2019-12-06 18:44:00,229 Dogwood St, Boston,MA,02215 +300370,Lightning Charging Cable,1,14.95,2019-12-06 13:00:00,16 Forest St, Boston,MA,02215 +300371,Wired Headphones,1,11.99,2019-12-04 12:54:00,833 13th St, Austin,TX,73301 +300372,20in Monitor,1,109.99,2019-12-31 13:35:00,170 2nd St, Dallas,TX,75001 +300373,AA Batteries (4-pack),1,3.84,2019-12-16 22:02:00,639 2nd St, Los Angeles,CA,90001 +300374,Wired Headphones,1,11.99,2019-12-31 11:35:00,363 Dogwood St, Portland,ME,04101 +300375,Bose SoundSport Headphones,1,99.99,2019-12-29 13:27:00,919 9th St, Los Angeles,CA,90001 +300376,34in Ultrawide Monitor,1,379.99,2019-12-10 13:02:00,457 Pine St, San Francisco,CA,94016 +300377,27in FHD Monitor,1,149.99,2019-12-30 20:39:00,807 Walnut St, Los Angeles,CA,90001 +300378,Flatscreen TV,1,300.0,2019-12-10 18:58:00,48 13th St, San Francisco,CA,94016 +300379,Wired Headphones,1,11.99,2019-12-04 02:58:00,322 Maple St, Atlanta,GA,30301 +300380,Wired Headphones,1,11.99,2019-12-16 21:23:00,917 6th St, San Francisco,CA,94016 +300381,Bose SoundSport Headphones,1,99.99,2019-12-08 20:54:00,812 Lakeview St, Los Angeles,CA,90001 +300382,AAA Batteries (4-pack),1,2.99,2019-12-26 18:44:00,256 Jackson St, San Francisco,CA,94016 +300383,Google Phone,1,600.0,2019-12-20 19:21:00,885 Jefferson St, Atlanta,GA,30301 +300383,Wired Headphones,1,11.99,2019-12-20 19:21:00,885 Jefferson St, Atlanta,GA,30301 +300384,USB-C Charging Cable,1,11.95,2019-12-08 15:45:00,401 Church St, Dallas,TX,75001 +300385,AA Batteries (4-pack),1,3.84,2019-12-05 18:23:00,869 1st St, Seattle,WA,98101 +300386,Lightning Charging Cable,1,14.95,2019-12-23 17:10:00,6 Jackson St, Seattle,WA,98101 +300387,Wired Headphones,1,11.99,2019-12-09 15:28:00,176 Jefferson St, Portland,ME,04101 +300388,USB-C Charging Cable,1,11.95,2019-12-25 10:11:00,439 4th St, Boston,MA,02215 +300389,Lightning Charging Cable,1,14.95,2019-12-20 14:24:00,812 Hill St, Boston,MA,02215 +300390,AAA Batteries (4-pack),1,2.99,2019-12-23 17:17:00,995 West St, Dallas,TX,75001 +300391,Bose SoundSport Headphones,1,99.99,2019-12-15 22:47:00,558 Center St, San Francisco,CA,94016 +300392,USB-C Charging Cable,1,11.95,2019-12-12 13:09:00,813 Cedar St, Atlanta,GA,30301 +300393,USB-C Charging Cable,1,11.95,2019-12-28 11:57:00,782 Ridge St, Dallas,TX,75001 +300394,Lightning Charging Cable,1,14.95,2019-12-31 23:27:00,634 Highland St, Atlanta,GA,30301 +300395,Google Phone,1,600.0,2019-12-16 02:29:00,679 Jackson St, Portland,OR,97035 +300395,USB-C Charging Cable,1,11.95,2019-12-16 02:29:00,679 Jackson St, Portland,OR,97035 +300396,Lightning Charging Cable,1,14.95,2019-12-05 22:11:00,105 Dogwood St, Seattle,WA,98101 +300397,Wired Headphones,1,11.99,2019-12-13 14:40:00,538 Church St, San Francisco,CA,94016 +300398,Vareebadd Phone,1,400.0,2019-12-14 08:34:00,742 Center St, New York City,NY,10001 +300399,Lightning Charging Cable,1,14.95,2019-12-05 10:28:00,514 Madison St, San Francisco,CA,94016 +300400,Lightning Charging Cable,1,14.95,2019-12-10 11:44:00,617 13th St, Atlanta,GA,30301 +300401,20in Monitor,1,109.99,2019-12-12 21:19:00,820 Park St, Boston,MA,02215 +300402,Google Phone,1,600.0,2019-12-15 17:33:00,93 River St, San Francisco,CA,94016 +300403,AAA Batteries (4-pack),3,2.99,2019-12-21 18:04:00,896 South St, Portland,OR,97035 +300404,Flatscreen TV,1,300.0,2019-12-10 02:05:00,690 Center St, San Francisco,CA,94016 +300405,Lightning Charging Cable,1,14.95,2019-12-19 07:45:00,253 Elm St, San Francisco,CA,94016 +300406,AA Batteries (4-pack),1,3.84,2019-12-08 20:32:00,618 Lincoln St, Seattle,WA,98101 +300407,AA Batteries (4-pack),3,3.84,2019-12-08 15:10:00,128 West St, Atlanta,GA,30301 +300408,20in Monitor,1,109.99,2019-12-08 17:11:00,380 Jackson St, New York City,NY,10001 +300409,Bose SoundSport Headphones,1,99.99,2019-12-31 11:50:00,899 Wilson St, Dallas,TX,75001 +300410,AAA Batteries (4-pack),1,2.99,2019-12-23 13:07:00,641 North St, Atlanta,GA,30301 +300411,Lightning Charging Cable,1,14.95,2019-12-26 22:48:00,978 Dogwood St, Los Angeles,CA,90001 +300412,USB-C Charging Cable,1,11.95,2019-12-27 16:47:00,626 Sunset St, Dallas,TX,75001 +300412,20in Monitor,1,109.99,2019-12-27 16:47:00,626 Sunset St, Dallas,TX,75001 +300413,AAA Batteries (4-pack),1,2.99,2019-12-15 12:31:00,567 Wilson St, Dallas,TX,75001 +300414,27in FHD Monitor,1,149.99,2019-12-08 11:11:00,266 14th St, Dallas,TX,75001 +300415,Bose SoundSport Headphones,1,99.99,2019-12-13 13:16:00,740 5th St, Portland,OR,97035 +300416,AAA Batteries (4-pack),1,2.99,2019-12-06 17:18:00,767 Sunset St, Dallas,TX,75001 +300417,Apple Airpods Headphones,1,150.0,2019-12-02 13:41:00,964 8th St, New York City,NY,10001 +300418,Google Phone,1,600.0,2019-12-31 09:10:00,258 Washington St, Atlanta,GA,30301 +300419,iPhone,1,700.0,2019-12-18 21:12:00,218 Cedar St, Portland,OR,97035 +300420,AAA Batteries (4-pack),1,2.99,2019-12-17 13:07:00,441 7th St, Portland,OR,97035 +300421,USB-C Charging Cable,1,11.95,2019-12-06 09:32:00,640 Jefferson St, Boston,MA,02215 +300422,USB-C Charging Cable,1,11.95,2019-12-11 09:30:00,276 7th St, Seattle,WA,98101 +300423,USB-C Charging Cable,1,11.95,2019-12-23 20:05:00,529 Lake St, Boston,MA,02215 +300424,Lightning Charging Cable,1,14.95,2019-12-08 08:57:00,666 Dogwood St, Austin,TX,73301 +300425,USB-C Charging Cable,1,11.95,2019-12-23 15:59:00,203 7th St, Boston,MA,02215 +300426,Macbook Pro Laptop,1,1700.0,2019-12-08 23:30:00,78 Johnson St, New York City,NY,10001 +300427,LG Dryer,1,600.0,2019-12-13 17:45:00,102 8th St, New York City,NY,10001 +300428,AA Batteries (4-pack),2,3.84,2019-12-30 18:49:00,280 Willow St, Dallas,TX,75001 +300429,USB-C Charging Cable,1,11.95,2019-12-20 18:26:00,707 Jefferson St, New York City,NY,10001 +300430,Lightning Charging Cable,1,14.95,2019-12-13 11:21:00,627 Meadow St, New York City,NY,10001 +300431,USB-C Charging Cable,2,11.95,2019-12-11 19:42:00,95 Meadow St, San Francisco,CA,94016 +300432,Lightning Charging Cable,1,14.95,2019-12-22 17:02:00,393 Highland St, Seattle,WA,98101 +300433,AA Batteries (4-pack),2,3.84,2019-12-06 04:09:00,320 River St, Atlanta,GA,30301 +300434,Lightning Charging Cable,1,14.95,2019-12-22 11:45:00,838 10th St, Boston,MA,02215 +300435,Bose SoundSport Headphones,1,99.99,2019-12-08 15:53:00,681 Johnson St, Boston,MA,02215 +300436,Wired Headphones,1,11.99,2019-12-11 10:27:00,157 Jefferson St, Austin,TX,73301 +300437,ThinkPad Laptop,1,999.99,2019-12-11 12:08:00,313 Hickory St, Los Angeles,CA,90001 +300438,20in Monitor,1,109.99,2019-12-20 00:32:00,264 Willow St, Boston,MA,02215 +300439,AA Batteries (4-pack),1,3.84,2019-12-09 16:38:00,784 Center St, San Francisco,CA,94016 +300440,27in FHD Monitor,1,149.99,2019-12-25 16:54:00,2 Chestnut St, Seattle,WA,98101 +300441,USB-C Charging Cable,3,11.95,2019-12-11 12:08:00,533 5th St, Austin,TX,73301 +300442,Bose SoundSport Headphones,1,99.99,2019-12-19 12:10:00,273 River St, Los Angeles,CA,90001 +300443,Macbook Pro Laptop,1,1700.0,2019-12-08 18:26:00,527 13th St, Seattle,WA,98101 +300444,USB-C Charging Cable,1,11.95,2019-12-03 12:25:00,459 Center St, San Francisco,CA,94016 +300445,LG Dryer,1,600.0,2019-12-05 08:10:00,757 Church St, Seattle,WA,98101 +300446,AA Batteries (4-pack),1,3.84,2019-12-09 12:42:00,825 Main St, San Francisco,CA,94016 +300447,Flatscreen TV,1,300.0,2019-12-04 09:59:00,617 11th St, Austin,TX,73301 +300448,Apple Airpods Headphones,1,150.0,2019-12-24 20:56:00,199 5th St, San Francisco,CA,94016 +300449,USB-C Charging Cable,1,11.95,2019-12-06 19:16:00,95 5th St, New York City,NY,10001 +300450,AAA Batteries (4-pack),1,2.99,2019-12-14 20:37:00,867 Cherry St, Portland,OR,97035 +300451,Macbook Pro Laptop,1,1700.0,2019-12-13 13:24:00,811 2nd St, Boston,MA,02215 +300452,AA Batteries (4-pack),1,3.84,2019-12-02 19:07:00,515 Highland St, Portland,OR,97035 +300453,Bose SoundSport Headphones,1,99.99,2019-12-29 15:47:00,868 9th St, New York City,NY,10001 +300454,AA Batteries (4-pack),1,3.84,2019-12-12 15:53:00,657 Maple St, Portland,ME,04101 +300455,Flatscreen TV,1,300.0,2019-12-18 13:57:00,800 Lincoln St, Atlanta,GA,30301 +300456,AAA Batteries (4-pack),1,2.99,2019-12-27 21:23:00,929 North St, San Francisco,CA,94016 +300456,USB-C Charging Cable,2,11.95,2019-12-27 21:23:00,929 North St, San Francisco,CA,94016 +300457,AAA Batteries (4-pack),1,2.99,2019-12-21 12:00:00,240 Ridge St, San Francisco,CA,94016 +300458,Macbook Pro Laptop,1,1700.0,2019-12-15 17:28:00,309 10th St, Atlanta,GA,30301 +300459,USB-C Charging Cable,1,11.95,2019-12-28 17:23:00,635 8th St, Atlanta,GA,30301 +300460,Lightning Charging Cable,2,14.95,2019-12-19 17:56:00,838 Lakeview St, Dallas,TX,75001 +300461,USB-C Charging Cable,1,11.95,2019-12-10 12:13:00,518 8th St, New York City,NY,10001 +300462,Bose SoundSport Headphones,1,99.99,2019-12-03 11:42:00,267 North St, Portland,ME,04101 +300463,Lightning Charging Cable,1,14.95,2019-12-14 20:05:00,152 Elm St, Portland,OR,97035 +300464,Google Phone,1,600.0,2019-12-07 16:17:00,532 Pine St, Los Angeles,CA,90001 +300465,Apple Airpods Headphones,1,150.0,2019-12-11 21:27:00,60 4th St, Portland,OR,97035 +300466,Wired Headphones,1,11.99,2019-12-29 11:51:00,723 13th St, Atlanta,GA,30301 +300467,AAA Batteries (4-pack),1,2.99,2019-12-01 09:47:00,593 Cherry St, Seattle,WA,98101 +300468,27in FHD Monitor,1,149.99,2019-12-26 00:27:00,27 South St, Los Angeles,CA,90001 +300469,AAA Batteries (4-pack),1,2.99,2019-12-18 14:02:00,206 Maple St, Boston,MA,02215 +300470,AAA Batteries (4-pack),1,2.99,2019-12-11 23:00:00,585 South St, Austin,TX,73301 +300471,AA Batteries (4-pack),1,3.84,2019-12-01 11:33:00,273 Lincoln St, Austin,TX,73301 +300472,27in 4K Gaming Monitor,1,389.99,2019-12-22 14:27:00,49 Hill St, Boston,MA,02215 +300473,USB-C Charging Cable,1,11.95,2019-12-29 17:05:00,374 13th St, New York City,NY,10001 +300474,USB-C Charging Cable,1,11.95,2019-12-06 14:53:00,866 River St, Los Angeles,CA,90001 +300475,AAA Batteries (4-pack),1,2.99,2019-12-04 18:46:00,422 Elm St, New York City,NY,10001 +300476,AA Batteries (4-pack),2,3.84,2019-12-10 18:53:00,311 Center St, Los Angeles,CA,90001 +300477,34in Ultrawide Monitor,1,379.99,2019-12-22 18:06:00,213 Cedar St, Seattle,WA,98101 +300478,Wired Headphones,1,11.99,2019-12-31 05:08:00,710 Maple St, New York City,NY,10001 +300479,AAA Batteries (4-pack),1,2.99,2019-12-28 11:25:00,977 10th St, Boston,MA,02215 +300480,Vareebadd Phone,1,400.0,2019-12-04 18:07:00,342 Dogwood St, New York City,NY,10001 +300481,34in Ultrawide Monitor,1,379.99,2019-12-30 17:15:00,906 7th St, Atlanta,GA,30301 +300482,Flatscreen TV,1,300.0,2019-12-04 19:16:00,256 Dogwood St, Los Angeles,CA,90001 +300483,AA Batteries (4-pack),3,3.84,2019-12-26 12:55:00,200 7th St, Atlanta,GA,30301 +300484,Wired Headphones,2,11.99,2019-12-29 19:10:00,803 Cedar St, Atlanta,GA,30301 +300485,Wired Headphones,1,11.99,2019-12-08 21:20:00,824 Madison St, New York City,NY,10001 +300486,iPhone,1,700.0,2019-12-12 17:33:00,765 Johnson St, Dallas,TX,75001 +300487,Lightning Charging Cable,1,14.95,2019-12-19 13:25:00,424 Jefferson St, San Francisco,CA,94016 +300488,Bose SoundSport Headphones,1,99.99,2019-12-27 07:33:00,34 12th St, Los Angeles,CA,90001 +300489,Lightning Charging Cable,1,14.95,2019-12-20 13:39:00,116 River St, Portland,OR,97035 +300490,Apple Airpods Headphones,1,150.0,2019-12-03 21:13:00,853 Lincoln St, New York City,NY,10001 +300491,AA Batteries (4-pack),4,3.84,2019-12-31 12:28:00,653 Park St, New York City,NY,10001 +300492,Bose SoundSport Headphones,1,99.99,2019-12-08 13:54:00,701 4th St, Dallas,TX,75001 +300493,AAA Batteries (4-pack),1,2.99,2019-12-05 12:04:00,713 Meadow St, Austin,TX,73301 +300494,Wired Headphones,1,11.99,2019-12-02 18:52:00,49 Lincoln St, Seattle,WA,98101 +300495,iPhone,1,700.0,2019-12-08 12:44:00,516 11th St, New York City,NY,10001 +300495,AA Batteries (4-pack),1,3.84,2019-12-08 12:44:00,516 11th St, New York City,NY,10001 +300496,Apple Airpods Headphones,1,150.0,2019-12-03 11:26:00,53 Maple St, New York City,NY,10001 +300497,Wired Headphones,1,11.99,2019-12-16 01:05:00,91 Lakeview St, San Francisco,CA,94016 +300498,20in Monitor,1,109.99,2019-12-18 12:21:00,998 Elm St, Los Angeles,CA,90001 +300499,USB-C Charging Cable,1,11.95,2019-12-04 20:53:00,104 West St, New York City,NY,10001 +300500,Lightning Charging Cable,1,14.95,2019-12-21 14:36:00,210 Center St, Portland,OR,97035 +300501,Apple Airpods Headphones,1,150.0,2019-12-19 07:12:00,157 Forest St, Portland,OR,97035 +300502,iPhone,1,700.0,2019-12-09 13:47:00,654 Pine St, Los Angeles,CA,90001 +300503,Apple Airpods Headphones,1,150.0,2019-12-13 13:54:00,29 Forest St, Los Angeles,CA,90001 +300504,AA Batteries (4-pack),1,3.84,2019-12-12 19:11:00,967 Forest St, San Francisco,CA,94016 +300505,iPhone,1,700.0,2019-12-24 21:11:00,199 6th St, Dallas,TX,75001 +300506,AA Batteries (4-pack),1,3.84,2019-12-17 12:46:00,950 Dogwood St, Boston,MA,02215 +300507,AA Batteries (4-pack),1,3.84,2019-12-19 04:22:00,238 Meadow St, Portland,ME,04101 +300508,AAA Batteries (4-pack),1,2.99,2019-12-03 08:33:00,563 Cherry St, Atlanta,GA,30301 +300509,Wired Headphones,1,11.99,2019-12-17 09:06:00,70 Adams St, Los Angeles,CA,90001 +300510,AA Batteries (4-pack),1,3.84,2019-12-08 11:25:00,551 West St, Austin,TX,73301 +300511,Bose SoundSport Headphones,1,99.99,2019-12-22 07:43:00,756 Jackson St, Boston,MA,02215 +300512,USB-C Charging Cable,1,11.95,2019-12-12 16:30:00,731 9th St, San Francisco,CA,94016 +300513,iPhone,1,700.0,2019-12-27 08:27:00,131 Ridge St, San Francisco,CA,94016 +300514,Wired Headphones,1,11.99,2019-12-29 17:33:00,826 10th St, New York City,NY,10001 +300515,ThinkPad Laptop,1,999.99,2019-12-13 14:40:00,218 1st St, Atlanta,GA,30301 +300516,Wired Headphones,1,11.99,2019-12-15 20:41:00,375 12th St, Austin,TX,73301 +300517,Wired Headphones,1,11.99,2019-12-27 20:40:00,318 8th St, San Francisco,CA,94016 +300518,AAA Batteries (4-pack),1,2.99,2019-12-19 11:23:00,768 South St, Los Angeles,CA,90001 +300519,Bose SoundSport Headphones,1,99.99,2020-01-01 05:13:00,657 Spruce St, New York City,NY,10001 +300519,Lightning Charging Cable,1,14.95,2020-01-01 05:13:00,657 Spruce St, New York City,NY,10001 +300520,34in Ultrawide Monitor,1,379.99,2019-12-23 16:40:00,214 Washington St, San Francisco,CA,94016 +300521,AAA Batteries (4-pack),2,2.99,2019-12-03 13:36:00,505 Lincoln St, Seattle,WA,98101 +300522,27in 4K Gaming Monitor,1,389.99,2019-12-28 06:12:00,708 Walnut St, New York City,NY,10001 +300523,USB-C Charging Cable,1,11.95,2019-12-09 21:14:00,756 Cedar St, Seattle,WA,98101 +300524,Macbook Pro Laptop,1,1700.0,2019-12-10 10:31:00,738 Adams St, Austin,TX,73301 +300525,AA Batteries (4-pack),1,3.84,2019-12-31 01:12:00,20 Cherry St, Seattle,WA,98101 +300526,Apple Airpods Headphones,1,150.0,2019-12-26 13:20:00,668 Hickory St, Austin,TX,73301 +300527,27in FHD Monitor,1,149.99,2019-12-12 17:36:00,420 Johnson St, Los Angeles,CA,90001 +300528,Google Phone,1,600.0,2019-12-06 15:19:00,944 Main St, Atlanta,GA,30301 +300528,USB-C Charging Cable,1,11.95,2019-12-06 15:19:00,944 Main St, Atlanta,GA,30301 +300529,Google Phone,1,600.0,2019-12-23 12:47:00,486 Walnut St, Los Angeles,CA,90001 +300530,Flatscreen TV,1,300.0,2019-12-12 18:41:00,589 Elm St, Boston,MA,02215 +300531,Wired Headphones,1,11.99,2019-12-26 09:39:00,266 Sunset St, Austin,TX,73301 +300532,AAA Batteries (4-pack),2,2.99,2019-12-24 10:22:00,395 7th St, Portland,ME,04101 +300533,34in Ultrawide Monitor,1,379.99,2019-12-23 13:34:00,239 Maple St, San Francisco,CA,94016 +300534,Bose SoundSport Headphones,1,99.99,2019-12-04 19:44:00,302 12th St, San Francisco,CA,94016 +300535,Flatscreen TV,1,300.0,2019-12-17 11:43:00,73 Jefferson St, Los Angeles,CA,90001 +300536,Bose SoundSport Headphones,1,99.99,2019-12-27 07:19:00,497 Cherry St, Boston,MA,02215 +300537,ThinkPad Laptop,1,999.99,2019-12-05 02:13:00,551 Pine St, San Francisco,CA,94016 +300538,Bose SoundSport Headphones,1,99.99,2019-12-11 11:37:00,354 Sunset St, Atlanta,GA,30301 +300539,34in Ultrawide Monitor,1,379.99,2019-12-24 08:44:00,186 Sunset St, Dallas,TX,75001 +300540,AAA Batteries (4-pack),1,2.99,2019-12-11 00:37:00,342 Hickory St, Portland,ME,04101 +300541,USB-C Charging Cable,1,11.95,2019-12-14 20:01:00,290 Lake St, Seattle,WA,98101 +300542,USB-C Charging Cable,1,11.95,2019-12-30 00:24:00,961 Cherry St, Portland,OR,97035 +300543,Wired Headphones,1,11.99,2019-12-28 17:57:00,715 11th St, New York City,NY,10001 +300544,27in 4K Gaming Monitor,1,389.99,2019-12-02 09:43:00,555 West St, Dallas,TX,75001 +300545,AAA Batteries (4-pack),1,2.99,2019-12-04 13:20:00,836 Ridge St, Seattle,WA,98101 +300546,27in 4K Gaming Monitor,1,389.99,2019-12-21 19:35:00,443 River St, Los Angeles,CA,90001 +300547,34in Ultrawide Monitor,1,379.99,2019-12-25 10:19:00,53 7th St, Los Angeles,CA,90001 +300548,Wired Headphones,1,11.99,2019-12-09 20:33:00,13 Maple St, San Francisco,CA,94016 +300549,Macbook Pro Laptop,1,1700.0,2019-12-21 23:02:00,820 Washington St, New York City,NY,10001 +300550,USB-C Charging Cable,1,11.95,2019-12-21 09:00:00,415 Pine St, Boston,MA,02215 +300551,Lightning Charging Cable,1,14.95,2019-12-04 20:02:00,405 10th St, San Francisco,CA,94016 +300552,AAA Batteries (4-pack),1,2.99,2019-12-31 17:14:00,890 5th St, Portland,OR,97035 +300553,20in Monitor,1,109.99,2019-12-08 13:06:00,257 Walnut St, San Francisco,CA,94016 +300554,Lightning Charging Cable,1,14.95,2019-12-18 20:54:00,180 13th St, Dallas,TX,75001 +300555,Flatscreen TV,1,300.0,2019-12-31 19:49:00,466 12th St, New York City,NY,10001 +300556,20in Monitor,1,109.99,2019-12-26 23:05:00,766 Cedar St, Austin,TX,73301 +300557,27in 4K Gaming Monitor,1,389.99,2019-12-30 19:55:00,506 Elm St, Atlanta,GA,30301 +300558,Lightning Charging Cable,2,14.95,2019-12-23 12:37:00,112 Main St, Los Angeles,CA,90001 +300559,USB-C Charging Cable,1,11.95,2019-12-01 06:52:00,566 Jefferson St, Los Angeles,CA,90001 +300560,USB-C Charging Cable,1,11.95,2019-12-02 18:30:00,137 13th St, Boston,MA,02215 +300561,AAA Batteries (4-pack),1,2.99,2019-12-04 19:27:00,413 Center St, New York City,NY,10001 +300562,Lightning Charging Cable,1,14.95,2019-12-30 15:25:00,695 12th St, Austin,TX,73301 +300563,Apple Airpods Headphones,1,150.0,2019-12-19 21:48:00,693 Johnson St, Los Angeles,CA,90001 +300564,AAA Batteries (4-pack),1,2.99,2019-12-21 07:06:00,356 Church St, Boston,MA,02215 +300565,20in Monitor,1,109.99,2019-12-09 15:49:00,388 Center St, San Francisco,CA,94016 +300566,USB-C Charging Cable,1,11.95,2019-12-08 19:03:00,708 8th St, San Francisco,CA,94016 +300567,AA Batteries (4-pack),1,3.84,2019-12-02 18:17:00,225 Jackson St, Dallas,TX,75001 +300568,AA Batteries (4-pack),1,3.84,2019-12-12 19:53:00,266 Dogwood St, Dallas,TX,75001 +300569,Macbook Pro Laptop,1,1700.0,2019-12-30 21:21:00,350 Dogwood St, Austin,TX,73301 +300570,Lightning Charging Cable,1,14.95,2019-12-14 15:57:00,941 Main St, Portland,OR,97035 +300571,AA Batteries (4-pack),1,3.84,2019-12-29 13:17:00,793 Cedar St, Dallas,TX,75001 +300572,Apple Airpods Headphones,1,150.0,2019-12-28 19:55:00,277 River St, Portland,OR,97035 +300573,Bose SoundSport Headphones,1,99.99,2019-12-04 19:31:00,255 Maple St, San Francisco,CA,94016 +300574,USB-C Charging Cable,1,11.95,2019-12-21 19:45:00,435 2nd St, New York City,NY,10001 +300575,Wired Headphones,1,11.99,2019-12-11 10:59:00,623 1st St, Portland,ME,04101 +300576,AA Batteries (4-pack),1,3.84,2019-12-22 11:12:00,910 South St, San Francisco,CA,94016 +300576,Bose SoundSport Headphones,1,99.99,2019-12-22 11:12:00,910 South St, San Francisco,CA,94016 +300577,27in 4K Gaming Monitor,1,389.99,2019-12-21 18:06:00,196 Meadow St, Portland,OR,97035 +300578,AAA Batteries (4-pack),3,2.99,2019-12-02 12:42:00,781 8th St, San Francisco,CA,94016 +300579,34in Ultrawide Monitor,1,379.99,2019-12-14 14:28:00,229 2nd St, Austin,TX,73301 +300580,Lightning Charging Cable,1,14.95,2019-12-17 16:30:00,972 7th St, New York City,NY,10001 +300581,Google Phone,1,600.0,2019-12-18 19:10:00,435 Spruce St, Los Angeles,CA,90001 +300582,27in 4K Gaming Monitor,1,389.99,2019-12-11 20:08:00,388 Pine St, Boston,MA,02215 +300583,27in FHD Monitor,1,149.99,2019-12-19 10:25:00,997 Lakeview St, Atlanta,GA,30301 +300584,AA Batteries (4-pack),1,3.84,2019-12-13 13:49:00,275 Hickory St, New York City,NY,10001 +300585,Wired Headphones,1,11.99,2019-12-10 15:03:00,614 1st St, Boston,MA,02215 +300586,AAA Batteries (4-pack),1,2.99,2019-12-13 18:22:00,57 Walnut St, New York City,NY,10001 +300587,AA Batteries (4-pack),2,3.84,2019-12-30 12:56:00,881 14th St, San Francisco,CA,94016 +300588,iPhone,1,700.0,2019-12-07 22:44:00,771 Wilson St, Dallas,TX,75001 +300589,34in Ultrawide Monitor,1,379.99,2019-12-22 04:53:00,476 7th St, San Francisco,CA,94016 +300590,Flatscreen TV,1,300.0,2019-12-17 16:19:00,885 Lincoln St, Boston,MA,02215 +300591,34in Ultrawide Monitor,1,379.99,2019-12-10 17:38:00,79 7th St, Portland,OR,97035 +300592,Bose SoundSport Headphones,1,99.99,2019-12-10 16:22:00,899 Lake St, Seattle,WA,98101 +300593,27in FHD Monitor,1,149.99,2019-12-02 07:49:00,925 Adams St, Dallas,TX,75001 +300594,Lightning Charging Cable,1,14.95,2019-12-03 05:31:00,576 Lakeview St, San Francisco,CA,94016 +300595,Bose SoundSport Headphones,1,99.99,2019-12-21 18:22:00,104 Adams St, Boston,MA,02215 +300596,27in 4K Gaming Monitor,1,389.99,2019-12-03 14:48:00,667 1st St, San Francisco,CA,94016 +300597,AA Batteries (4-pack),1,3.84,2019-12-16 18:51:00,227 Washington St, Austin,TX,73301 +300598,AA Batteries (4-pack),1,3.84,2019-12-29 11:13:00,563 Lincoln St, Dallas,TX,75001 +300599,USB-C Charging Cable,1,11.95,2019-12-17 10:34:00,309 1st St, New York City,NY,10001 +300600,AA Batteries (4-pack),2,3.84,2019-12-02 15:22:00,790 13th St, Boston,MA,02215 +300601,Apple Airpods Headphones,1,150.0,2019-12-16 14:11:00,577 Elm St, Los Angeles,CA,90001 +300601,20in Monitor,1,109.99,2019-12-16 14:11:00,577 Elm St, Los Angeles,CA,90001 +300602,Lightning Charging Cable,1,14.95,2019-12-21 00:34:00,768 Lincoln St, Los Angeles,CA,90001 +300603,Apple Airpods Headphones,1,150.0,2019-12-16 10:15:00,791 River St, Boston,MA,02215 +300604,Wired Headphones,1,11.99,2019-12-28 19:32:00,594 Park St, Dallas,TX,75001 +300605,27in FHD Monitor,1,149.99,2019-12-11 07:19:00,446 South St, San Francisco,CA,94016 +300606,AAA Batteries (4-pack),1,2.99,2019-12-21 22:36:00,981 9th St, San Francisco,CA,94016 +300607,ThinkPad Laptop,1,999.99,2019-12-01 19:24:00,484 Highland St, Portland,OR,97035 +300608,AAA Batteries (4-pack),1,2.99,2019-12-06 00:54:00,660 13th St, San Francisco,CA,94016 +300609,20in Monitor,1,109.99,2019-12-27 23:16:00,127 Cherry St, San Francisco,CA,94016 +300610,AA Batteries (4-pack),1,3.84,2019-12-18 11:17:00,518 Walnut St, San Francisco,CA,94016 +300611,USB-C Charging Cable,1,11.95,2019-12-22 11:20:00,759 13th St, Dallas,TX,75001 +300612,Lightning Charging Cable,1,14.95,2019-12-03 14:26:00,842 Church St, Los Angeles,CA,90001 +300613,AAA Batteries (4-pack),2,2.99,2019-12-16 23:07:00,76 Church St, San Francisco,CA,94016 +300614,Wired Headphones,1,11.99,2019-12-06 13:35:00,934 10th St, Boston,MA,02215 +300615,iPhone,1,700.0,2019-12-24 10:05:00,322 Maple St, San Francisco,CA,94016 +300615,Apple Airpods Headphones,1,150.0,2019-12-24 10:05:00,322 Maple St, San Francisco,CA,94016 +300616,Google Phone,1,600.0,2019-12-21 22:08:00,749 Adams St, San Francisco,CA,94016 +300617,Apple Airpods Headphones,1,150.0,2019-12-14 18:45:00,767 Church St, Dallas,TX,75001 +300618,Flatscreen TV,1,300.0,2019-12-05 10:40:00,849 12th St, Atlanta,GA,30301 +300619,Apple Airpods Headphones,1,150.0,2019-12-08 14:28:00,99 Jefferson St, Los Angeles,CA,90001 +300620,Lightning Charging Cable,1,14.95,2019-12-23 13:58:00,51 Spruce St, Los Angeles,CA,90001 +300621,AAA Batteries (4-pack),2,2.99,2019-12-19 19:42:00,623 Lakeview St, Portland,OR,97035 +300622,ThinkPad Laptop,1,999.99,2019-12-10 19:27:00,22 Willow St, Dallas,TX,75001 +300623,USB-C Charging Cable,1,11.95,2019-12-22 20:56:00,934 River St, New York City,NY,10001 +300624,AAA Batteries (4-pack),1,2.99,2019-12-10 07:15:00,417 Hickory St, Los Angeles,CA,90001 +300625,Bose SoundSport Headphones,1,99.99,2019-12-05 20:27:00,580 1st St, Los Angeles,CA,90001 +300626,Lightning Charging Cable,2,14.95,2019-12-07 12:22:00,686 Meadow St, San Francisco,CA,94016 +300627,34in Ultrawide Monitor,1,379.99,2019-12-24 15:00:00,798 Highland St, Seattle,WA,98101 +300628,AA Batteries (4-pack),1,3.84,2019-12-14 18:55:00,528 Ridge St, Boston,MA,02215 +300629,Flatscreen TV,1,300.0,2019-12-16 20:38:00,119 Cedar St, Dallas,TX,75001 +300630,Vareebadd Phone,1,400.0,2019-12-23 14:38:00,416 Johnson St, New York City,NY,10001 +300631,Flatscreen TV,1,300.0,2019-12-23 12:48:00,920 Dogwood St, Dallas,TX,75001 +300632,20in Monitor,1,109.99,2019-12-13 17:29:00,583 Lake St, Boston,MA,02215 +300633,Lightning Charging Cable,1,14.95,2019-12-21 17:59:00,907 Spruce St, Boston,MA,02215 +300634,USB-C Charging Cable,1,11.95,2019-12-29 13:40:00,718 Dogwood St, Austin,TX,73301 +300635,Lightning Charging Cable,1,14.95,2019-12-12 12:28:00,468 Dogwood St, San Francisco,CA,94016 +300636,USB-C Charging Cable,1,11.95,2019-12-09 07:04:00,504 1st St, New York City,NY,10001 +300637,AAA Batteries (4-pack),1,2.99,2019-12-25 12:31:00,126 Wilson St, Austin,TX,73301 +300638,USB-C Charging Cable,1,11.95,2019-12-22 09:44:00,349 Cherry St, Austin,TX,73301 +300639,USB-C Charging Cable,1,11.95,2019-12-04 01:25:00,131 Center St, Los Angeles,CA,90001 +300640,Bose SoundSport Headphones,1,99.99,2019-12-11 12:10:00,591 Meadow St, Atlanta,GA,30301 +300641,Flatscreen TV,1,300.0,2019-12-20 11:45:00,919 11th St, Los Angeles,CA,90001 +300642,Flatscreen TV,1,300.0,2019-12-28 19:08:00,841 6th St, Boston,MA,02215 +300643,27in FHD Monitor,1,149.99,2019-12-28 10:37:00,759 Maple St, Boston,MA,02215 +300644,Bose SoundSport Headphones,1,99.99,2019-12-14 12:03:00,922 Main St, Austin,TX,73301 +300645,Lightning Charging Cable,1,14.95,2019-12-28 22:58:00,996 4th St, San Francisco,CA,94016 +300646,Google Phone,1,600.0,2019-12-28 22:14:00,244 Maple St, Seattle,WA,98101 +300647,27in FHD Monitor,1,149.99,2019-12-08 13:39:00,845 Washington St, Boston,MA,02215 +300648,AA Batteries (4-pack),3,3.84,2019-12-10 23:53:00,103 Wilson St, Los Angeles,CA,90001 +300649,Lightning Charging Cable,1,14.95,2019-12-16 21:29:00,529 Jackson St, Los Angeles,CA,90001 +300650,20in Monitor,1,109.99,2019-12-14 20:33:00,516 Main St, Atlanta,GA,30301 +300651,Apple Airpods Headphones,1,150.0,2019-12-21 01:55:00,633 Spruce St, San Francisco,CA,94016 +300652,USB-C Charging Cable,1,11.95,2019-12-26 20:15:00,991 13th St, Atlanta,GA,30301 +300653,27in FHD Monitor,1,149.99,2019-12-25 16:49:00,796 Meadow St, San Francisco,CA,94016 +300654,USB-C Charging Cable,1,11.95,2019-12-31 22:38:00,679 Center St, Los Angeles,CA,90001 +300655,Bose SoundSport Headphones,1,99.99,2019-12-03 00:04:00,431 Madison St, San Francisco,CA,94016 +300656,AAA Batteries (4-pack),2,2.99,2019-12-25 19:17:00,134 Adams St, Los Angeles,CA,90001 +300657,USB-C Charging Cable,2,11.95,2019-12-03 20:23:00,173 1st St, Boston,MA,02215 +300658,Lightning Charging Cable,1,14.95,2019-12-17 22:43:00,755 Walnut St, Boston,MA,02215 +300659,iPhone,1,700.0,2019-12-11 22:58:00,781 South St, San Francisco,CA,94016 +300659,Lightning Charging Cable,1,14.95,2019-12-11 22:58:00,781 South St, San Francisco,CA,94016 +300660,Apple Airpods Headphones,1,150.0,2019-12-30 20:55:00,454 Jackson St, Austin,TX,73301 +300661,USB-C Charging Cable,1,11.95,2019-12-22 20:05:00,799 5th St, San Francisco,CA,94016 +300662,USB-C Charging Cable,1,11.95,2019-12-08 22:14:00,288 Main St, Los Angeles,CA,90001 +300663,LG Washing Machine,1,600.0,2019-12-17 01:49:00,708 Church St, San Francisco,CA,94016 +300664,AA Batteries (4-pack),1,3.84,2019-12-17 15:59:00,72 1st St, Atlanta,GA,30301 +300665,27in FHD Monitor,1,149.99,2019-12-03 23:38:00,695 River St, Austin,TX,73301 +300666,Bose SoundSport Headphones,1,99.99,2019-12-17 19:33:00,796 4th St, Atlanta,GA,30301 +300667,USB-C Charging Cable,1,11.95,2019-12-13 19:15:00,511 Spruce St, Boston,MA,02215 +300668,27in 4K Gaming Monitor,1,389.99,2019-12-30 14:42:00,191 Johnson St, San Francisco,CA,94016 +300669,iPhone,1,700.0,2019-12-24 00:17:00,745 Maple St, Boston,MA,02215 +300670,AA Batteries (4-pack),1,3.84,2019-12-02 16:16:00,485 Johnson St, Los Angeles,CA,90001 +300671,Apple Airpods Headphones,1,150.0,2019-12-02 18:05:00,548 Lake St, Boston,MA,02215 +300672,Lightning Charging Cable,1,14.95,2019-12-29 22:11:00,354 12th St, Los Angeles,CA,90001 +300673,iPhone,1,700.0,2019-12-18 19:18:00,236 Madison St, Los Angeles,CA,90001 +300673,Apple Airpods Headphones,1,150.0,2019-12-18 19:18:00,236 Madison St, Los Angeles,CA,90001 +300674,Macbook Pro Laptop,1,1700.0,2019-12-28 17:27:00,771 Jackson St, Atlanta,GA,30301 +300675,AA Batteries (4-pack),1,3.84,2019-12-05 16:59:00,191 2nd St, Los Angeles,CA,90001 +300676,AA Batteries (4-pack),1,3.84,2019-12-31 17:03:00,847 4th St, Los Angeles,CA,90001 +300677,USB-C Charging Cable,1,11.95,2019-12-07 17:36:00,815 River St, New York City,NY,10001 +300678,Apple Airpods Headphones,1,150.0,2019-12-08 09:21:00,298 Hickory St, San Francisco,CA,94016 +300679,AA Batteries (4-pack),1,3.84,2019-12-29 18:57:00,184 Dogwood St, New York City,NY,10001 +300680,Apple Airpods Headphones,1,150.0,2019-12-27 21:06:00,940 6th St, Los Angeles,CA,90001 +300681,Lightning Charging Cable,1,14.95,2019-12-16 19:27:00,658 Jackson St, Atlanta,GA,30301 +300682,Macbook Pro Laptop,1,1700.0,2019-12-24 11:20:00,764 Center St, Dallas,TX,75001 +300683,Vareebadd Phone,1,400.0,2019-12-27 11:01:00,841 Cedar St, San Francisco,CA,94016 +300683,USB-C Charging Cable,1,11.95,2019-12-27 11:01:00,841 Cedar St, San Francisco,CA,94016 +300683,Wired Headphones,1,11.99,2019-12-27 11:01:00,841 Cedar St, San Francisco,CA,94016 +300684,USB-C Charging Cable,1,11.95,2019-12-14 22:55:00,282 Dogwood St, San Francisco,CA,94016 +300685,Apple Airpods Headphones,1,150.0,2019-12-13 20:54:00,95 Meadow St, Seattle,WA,98101 +300686,LG Dryer,1,600.0,2019-12-30 13:31:00,420 10th St, Dallas,TX,75001 +300687,AA Batteries (4-pack),1,3.84,2019-12-07 22:05:00,952 Hill St, New York City,NY,10001 +300688,Lightning Charging Cable,1,14.95,2019-12-30 11:57:00,553 Lake St, New York City,NY,10001 +300689,Apple Airpods Headphones,1,150.0,2019-12-01 16:43:00,948 Adams St, Los Angeles,CA,90001 +300690,Vareebadd Phone,1,400.0,2019-12-28 09:36:00,562 Jefferson St, Los Angeles,CA,90001 +300691,USB-C Charging Cable,1,11.95,2019-12-10 11:57:00,39 Spruce St, Atlanta,GA,30301 +300692,Bose SoundSport Headphones,1,99.99,2019-12-27 09:30:00,887 River St, Austin,TX,73301 +300693,Bose SoundSport Headphones,1,99.99,2019-12-22 15:02:00,183 Willow St, New York City,NY,10001 +300694,LG Washing Machine,1,600.0,2019-12-15 02:08:00,157 14th St, Los Angeles,CA,90001 +300695,Bose SoundSport Headphones,1,99.99,2019-12-25 17:07:00,48 Cedar St, Atlanta,GA,30301 +300696,Apple Airpods Headphones,1,150.0,2019-12-16 17:41:00,734 1st St, Los Angeles,CA,90001 +300697,Lightning Charging Cable,1,14.95,2019-12-19 12:19:00,560 Main St, Austin,TX,73301 +300698,Wired Headphones,1,11.99,2019-12-28 16:58:00,779 Willow St, Atlanta,GA,30301 +300699,27in FHD Monitor,1,149.99,2019-12-07 14:38:00,989 Sunset St, New York City,NY,10001 +300700,AAA Batteries (4-pack),1,2.99,2019-12-14 14:53:00,706 Maple St, San Francisco,CA,94016 +300701,AAA Batteries (4-pack),1,2.99,2019-12-13 17:45:00,82 North St, Los Angeles,CA,90001 +300702,USB-C Charging Cable,1,11.95,2019-12-11 16:38:00,152 South St, Boston,MA,02215 +300703,27in 4K Gaming Monitor,1,389.99,2019-12-12 20:16:00,767 Pine St, Boston,MA,02215 +300704,Lightning Charging Cable,1,14.95,2019-12-12 22:10:00,435 West St, Dallas,TX,75001 +300705,Wired Headphones,3,11.99,2019-12-18 03:04:00,570 Madison St, Dallas,TX,75001 +300706,27in FHD Monitor,1,149.99,2019-12-21 12:43:00,421 Wilson St, Seattle,WA,98101 +300707,Wired Headphones,1,11.99,2019-12-06 17:18:00,801 7th St, Portland,OR,97035 +300708,USB-C Charging Cable,1,11.95,2019-12-21 02:07:00,473 Hickory St, Boston,MA,02215 +300709,Wired Headphones,1,11.99,2019-12-30 15:06:00,844 Lincoln St, Los Angeles,CA,90001 +300710,USB-C Charging Cable,1,11.95,2019-12-03 16:58:00,420 Lake St, Portland,OR,97035 +300711,27in FHD Monitor,1,149.99,2019-12-22 10:00:00,262 Hickory St, Portland,OR,97035 +300712,AA Batteries (4-pack),1,3.84,2019-12-16 14:36:00,542 Ridge St, New York City,NY,10001 +300713,34in Ultrawide Monitor,1,379.99,2019-12-22 20:55:00,264 Church St, Portland,OR,97035 +300714,iPhone,1,700.0,2019-12-12 18:48:00,898 Maple St, Dallas,TX,75001 +300715,Bose SoundSport Headphones,1,99.99,2019-12-23 18:28:00,745 Main St, New York City,NY,10001 +300716,Wired Headphones,1,11.99,2019-12-26 10:32:00,398 2nd St, Seattle,WA,98101 +300717,AA Batteries (4-pack),1,3.84,2019-12-08 20:24:00,877 North St, San Francisco,CA,94016 +300718,Apple Airpods Headphones,1,150.0,2019-12-14 14:26:00,846 Sunset St, San Francisco,CA,94016 +300719,ThinkPad Laptop,1,999.99,2019-12-14 17:32:00,486 Chestnut St, Dallas,TX,75001 +300719,Vareebadd Phone,1,400.0,2019-12-14 17:32:00,486 Chestnut St, Dallas,TX,75001 +300720,34in Ultrawide Monitor,1,379.99,2019-12-06 22:24:00,86 6th St, New York City,NY,10001 +300721,AAA Batteries (4-pack),1,2.99,2019-12-21 10:45:00,121 Ridge St, San Francisco,CA,94016 +300722,USB-C Charging Cable,1,11.95,2019-12-02 02:34:00,274 Hickory St, New York City,NY,10001 +300723,Lightning Charging Cable,1,14.95,2019-12-05 20:35:00,768 Cherry St, New York City,NY,10001 +300724,Lightning Charging Cable,1,14.95,2019-12-05 10:41:00,704 Lincoln St, Seattle,WA,98101 +300725,Apple Airpods Headphones,1,150.0,2019-12-19 10:07:00,498 Maple St, Seattle,WA,98101 +300726,Wired Headphones,2,11.99,2019-12-29 20:39:00,562 Dogwood St, New York City,NY,10001 +300727,AAA Batteries (4-pack),1,2.99,2019-12-12 18:24:00,533 Church St, Austin,TX,73301 +300728,Apple Airpods Headphones,1,150.0,2019-12-29 13:57:00,971 11th St, San Francisco,CA,94016 +300729,27in FHD Monitor,1,149.99,2019-12-23 10:33:00,281 Ridge St, San Francisco,CA,94016 +300730,ThinkPad Laptop,1,999.99,2019-12-07 20:53:00,534 West St, New York City,NY,10001 +300731,AA Batteries (4-pack),1,3.84,2019-12-15 15:53:00,216 Dogwood St, San Francisco,CA,94016 +300732,Wired Headphones,2,11.99,2019-12-30 08:07:00,580 2nd St, Dallas,TX,75001 +300733,AA Batteries (4-pack),2,3.84,2019-12-11 16:48:00,102 Hickory St, Los Angeles,CA,90001 +300734,Macbook Pro Laptop,1,1700.0,2019-12-16 10:55:00,172 Ridge St, Los Angeles,CA,90001 +300735,Wired Headphones,1,11.99,2019-12-25 21:34:00,688 5th St, Portland,ME,04101 +300736,AAA Batteries (4-pack),1,2.99,2019-12-03 20:39:00,215 Adams St, Boston,MA,02215 +300737,iPhone,1,700.0,2019-12-12 16:08:00,884 Center St, Atlanta,GA,30301 +300738,ThinkPad Laptop,1,999.99,2019-12-25 20:15:00,146 14th St, Austin,TX,73301 +300739,USB-C Charging Cable,1,11.95,2019-12-16 14:34:00,751 Washington St, New York City,NY,10001 +300740,Apple Airpods Headphones,1,150.0,2019-12-30 13:15:00,641 Jefferson St, San Francisco,CA,94016 +300741,27in 4K Gaming Monitor,1,389.99,2019-12-28 13:22:00,456 12th St, San Francisco,CA,94016 +300742,Lightning Charging Cable,2,14.95,2019-12-13 14:26:00,312 Forest St, Portland,OR,97035 +300743,Lightning Charging Cable,1,14.95,2019-12-10 07:57:00,927 10th St, Atlanta,GA,30301 +300744,USB-C Charging Cable,1,11.95,2019-12-14 07:22:00,683 Lake St, San Francisco,CA,94016 +300745,AA Batteries (4-pack),1,3.84,2019-12-04 10:55:00,111 13th St, Los Angeles,CA,90001 +300746,AA Batteries (4-pack),1,3.84,2019-12-11 11:02:00,147 Church St, Dallas,TX,75001 +300747,AA Batteries (4-pack),1,3.84,2019-12-18 10:22:00,434 Center St, San Francisco,CA,94016 +300748,Flatscreen TV,1,300.0,2019-12-06 19:23:00,11 Lincoln St, Seattle,WA,98101 +300749,USB-C Charging Cable,1,11.95,2019-12-02 22:17:00,927 Jackson St, San Francisco,CA,94016 +300750,Apple Airpods Headphones,2,150.0,2019-12-30 18:06:00,314 1st St, New York City,NY,10001 +300751,AA Batteries (4-pack),1,3.84,2019-12-07 17:52:00,934 Ridge St, Los Angeles,CA,90001 +300752,20in Monitor,1,109.99,2019-12-30 19:36:00,303 Maple St, Atlanta,GA,30301 +300753,20in Monitor,1,109.99,2019-12-28 22:36:00,563 Maple St, Atlanta,GA,30301 +300754,AA Batteries (4-pack),1,3.84,2019-12-14 20:47:00,150 Center St, San Francisco,CA,94016 +300755,AAA Batteries (4-pack),2,2.99,2019-12-08 18:43:00,912 11th St, San Francisco,CA,94016 +300756,Macbook Pro Laptop,1,1700.0,2019-12-10 13:11:00,35 13th St, Los Angeles,CA,90001 +300757,USB-C Charging Cable,1,11.95,2019-12-07 09:02:00,205 Dogwood St, Austin,TX,73301 +300758,LG Washing Machine,1,600.0,2019-12-22 19:39:00,287 Cherry St, San Francisco,CA,94016 +300759,20in Monitor,1,109.99,2020-01-01 00:14:00,193 5th St, Austin,TX,73301 +300760,Macbook Pro Laptop,1,1700.0,2019-12-16 21:45:00,724 Lakeview St, Boston,MA,02215 +300761,iPhone,1,700.0,2019-12-16 21:15:00,524 Hill St, New York City,NY,10001 +300762,AA Batteries (4-pack),1,3.84,2019-12-06 17:56:00,339 River St, Portland,OR,97035 +300763,Lightning Charging Cable,1,14.95,2019-12-02 17:29:00,214 Forest St, Portland,OR,97035 +300764,Wired Headphones,1,11.99,2019-12-15 09:53:00,525 Washington St, Seattle,WA,98101 +300765,Apple Airpods Headphones,1,150.0,2019-12-28 09:42:00,350 Lincoln St, Los Angeles,CA,90001 +300766,Google Phone,1,600.0,2019-12-29 07:45:00,787 Cedar St, Dallas,TX,75001 +300766,USB-C Charging Cable,1,11.95,2019-12-29 07:45:00,787 Cedar St, Dallas,TX,75001 +300767,USB-C Charging Cable,1,11.95,2019-12-13 23:24:00,177 Elm St, Boston,MA,02215 +300768,Apple Airpods Headphones,1,150.0,2019-12-10 11:21:00,838 12th St, New York City,NY,10001 +300769,Apple Airpods Headphones,1,150.0,2019-12-21 07:00:00,45 Park St, Atlanta,GA,30301 +300770,USB-C Charging Cable,1,11.95,2019-12-28 14:13:00,587 Lincoln St, Austin,TX,73301 +300771,Lightning Charging Cable,1,14.95,2019-12-17 11:01:00,450 Dogwood St, Boston,MA,02215 +300772,34in Ultrawide Monitor,1,379.99,2019-12-22 15:14:00,315 Maple St, Boston,MA,02215 +300773,USB-C Charging Cable,1,11.95,2019-12-20 13:41:00,757 6th St, Los Angeles,CA,90001 +300774,AA Batteries (4-pack),1,3.84,2019-12-25 12:58:00,390 Wilson St, San Francisco,CA,94016 +300775,Flatscreen TV,1,300.0,2019-12-17 14:20:00,66 Church St, Los Angeles,CA,90001 +300776,Apple Airpods Headphones,1,150.0,2019-12-29 17:21:00,553 Washington St, Atlanta,GA,30301 +300777,Lightning Charging Cable,1,14.95,2019-12-04 19:17:00,116 South St, San Francisco,CA,94016 +300778,Lightning Charging Cable,1,14.95,2019-12-09 18:04:00,990 Meadow St, New York City,NY,10001 +300779,Google Phone,1,600.0,2019-12-12 19:44:00,419 Forest St, San Francisco,CA,94016 +300780,Bose SoundSport Headphones,1,99.99,2019-12-26 22:15:00,160 10th St, San Francisco,CA,94016 +300781,iPhone,1,700.0,2019-12-14 21:12:00,994 12th St, New York City,NY,10001 +300782,Lightning Charging Cable,1,14.95,2019-12-05 13:45:00,412 14th St, New York City,NY,10001 +300783,Lightning Charging Cable,1,14.95,2019-12-06 04:41:00,908 South St, Boston,MA,02215 +300784,Wired Headphones,1,11.99,2019-12-22 13:54:00,983 North St, Portland,OR,97035 +300785,Wired Headphones,1,11.99,2019-12-20 10:59:00,484 1st St, Los Angeles,CA,90001 +300786,Wired Headphones,1,11.99,2019-12-15 04:36:00,395 Highland St, Seattle,WA,98101 +300787,Lightning Charging Cable,1,14.95,2019-12-29 04:59:00,211 North St, Atlanta,GA,30301 +300788,AA Batteries (4-pack),2,3.84,2019-12-10 11:03:00,635 Highland St, New York City,NY,10001 +300789,Apple Airpods Headphones,1,150.0,2019-12-12 16:33:00,854 Cherry St, San Francisco,CA,94016 +300790,ThinkPad Laptop,1,999.99,2019-12-12 16:42:00,367 1st St, San Francisco,CA,94016 +300791,AA Batteries (4-pack),1,3.84,2019-12-18 22:47:00,6 Chestnut St, San Francisco,CA,94016 +300792,AAA Batteries (4-pack),1,2.99,2019-12-30 18:21:00,426 Ridge St, Boston,MA,02215 +300793,Bose SoundSport Headphones,1,99.99,2019-12-01 14:21:00,720 South St, Atlanta,GA,30301 +300794,USB-C Charging Cable,1,11.95,2019-12-26 09:42:00,198 Sunset St, Dallas,TX,75001 +300795,Flatscreen TV,1,300.0,2019-12-19 05:21:00,440 River St, Austin,TX,73301 +300796,AAA Batteries (4-pack),1,2.99,2019-12-14 09:30:00,821 South St, Dallas,TX,75001 +300797,27in FHD Monitor,1,149.99,2019-12-31 09:48:00,854 Dogwood St, Atlanta,GA,30301 +300798,Bose SoundSport Headphones,1,99.99,2019-12-14 10:02:00,53 Johnson St, Austin,TX,73301 +300799,USB-C Charging Cable,1,11.95,2019-12-24 13:26:00,892 Adams St, Los Angeles,CA,90001 +300800,AA Batteries (4-pack),1,3.84,2019-12-17 11:00:00,17 Elm St, Austin,TX,73301 +300801,Apple Airpods Headphones,1,150.0,2019-12-20 13:30:00,395 7th St, Atlanta,GA,30301 +300802,Lightning Charging Cable,1,14.95,2019-12-13 11:56:00,209 5th St, Los Angeles,CA,90001 +300803,Lightning Charging Cable,1,14.95,2019-12-16 11:26:00,555 Church St, San Francisco,CA,94016 +300804,Apple Airpods Headphones,1,150.0,2019-12-20 19:03:00,620 Ridge St, New York City,NY,10001 +300805,Wired Headphones,1,11.99,2019-12-24 22:58:00,554 West St, Dallas,TX,75001 +300806,Bose SoundSport Headphones,1,99.99,2019-12-30 14:06:00,272 2nd St, Boston,MA,02215 +300807,Bose SoundSport Headphones,1,99.99,2019-12-10 21:07:00,142 10th St, New York City,NY,10001 +300808,Lightning Charging Cable,1,14.95,2019-12-02 19:43:00,474 Center St, San Francisco,CA,94016 +300809,34in Ultrawide Monitor,1,379.99,2019-12-21 15:35:00,849 Forest St, New York City,NY,10001 +300810,Bose SoundSport Headphones,1,99.99,2019-12-28 09:10:00,15 Adams St, San Francisco,CA,94016 +300811,AAA Batteries (4-pack),1,2.99,2019-12-09 19:41:00,536 10th St, Boston,MA,02215 +300812,27in 4K Gaming Monitor,1,389.99,2019-12-16 11:11:00,120 Johnson St, Dallas,TX,75001 +300813,AA Batteries (4-pack),2,3.84,2019-12-24 11:51:00,35 2nd St, San Francisco,CA,94016 +300814,Bose SoundSport Headphones,1,99.99,2019-12-17 10:57:00,429 9th St, Los Angeles,CA,90001 +300815,Apple Airpods Headphones,1,150.0,2019-12-24 18:41:00,362 Spruce St, Boston,MA,02215 +300816,34in Ultrawide Monitor,1,379.99,2019-12-31 19:16:00,344 2nd St, San Francisco,CA,94016 +300817,AA Batteries (4-pack),3,3.84,2019-12-03 15:42:00,457 11th St, Los Angeles,CA,90001 +300818,Macbook Pro Laptop,1,1700.0,2019-12-09 17:02:00,172 Jackson St, New York City,NY,10001 +300819,USB-C Charging Cable,1,11.95,2019-12-30 13:28:00,339 14th St, Seattle,WA,98101 +300820,USB-C Charging Cable,1,11.95,2019-12-08 09:48:00,785 Spruce St, Boston,MA,02215 +300821,Wired Headphones,1,11.99,2019-12-22 19:15:00,671 14th St, Los Angeles,CA,90001 +300822,27in 4K Gaming Monitor,1,389.99,2019-12-10 18:52:00,832 Church St, Austin,TX,73301 +300823,Wired Headphones,1,11.99,2019-12-15 12:51:00,270 Hickory St, Atlanta,GA,30301 +300824,Flatscreen TV,1,300.0,2019-12-09 18:58:00,760 Lakeview St, Seattle,WA,98101 +300825,Wired Headphones,1,11.99,2019-12-03 14:41:00,265 1st St, San Francisco,CA,94016 +300826,ThinkPad Laptop,1,999.99,2019-12-16 16:33:00,108 Forest St, Seattle,WA,98101 +300827,Apple Airpods Headphones,1,150.0,2019-12-23 18:38:00,1 Elm St, New York City,NY,10001 +300828,Wired Headphones,1,11.99,2019-12-20 14:57:00,54 Madison St, Los Angeles,CA,90001 +300829,Lightning Charging Cable,1,14.95,2019-12-23 18:02:00,807 Highland St, Boston,MA,02215 +300830,Lightning Charging Cable,1,14.95,2019-12-29 19:48:00,606 Adams St, New York City,NY,10001 +300831,Macbook Pro Laptop,1,1700.0,2019-12-09 11:04:00,857 2nd St, Seattle,WA,98101 +300832,34in Ultrawide Monitor,1,379.99,2019-12-26 19:46:00,738 10th St, Seattle,WA,98101 +300833,Wired Headphones,1,11.99,2019-12-10 19:02:00,834 Walnut St, San Francisco,CA,94016 +300834,iPhone,1,700.0,2019-12-08 17:37:00,682 2nd St, San Francisco,CA,94016 +300835,Google Phone,1,600.0,2019-12-10 07:56:00,170 11th St, Atlanta,GA,30301 +300835,Bose SoundSport Headphones,1,99.99,2019-12-10 07:56:00,170 11th St, Atlanta,GA,30301 +300835,Wired Headphones,1,11.99,2019-12-10 07:56:00,170 11th St, Atlanta,GA,30301 +300836,AA Batteries (4-pack),4,3.84,2019-12-06 19:33:00,403 Meadow St, Portland,OR,97035 +300837,USB-C Charging Cable,1,11.95,2019-12-10 16:23:00,402 Willow St, Boston,MA,02215 +300838,AA Batteries (4-pack),1,3.84,2019-12-15 13:59:00,679 Cherry St, Boston,MA,02215 +300839,Lightning Charging Cable,1,14.95,2019-12-25 19:55:00,166 8th St, New York City,NY,10001 +300840,Wired Headphones,1,11.99,2019-12-26 14:30:00,837 South St, Seattle,WA,98101 +300841,Lightning Charging Cable,1,14.95,2019-12-27 21:13:00,613 13th St, San Francisco,CA,94016 +300842,Bose SoundSport Headphones,1,99.99,2019-12-24 21:44:00,996 Wilson St, San Francisco,CA,94016 +300843,AAA Batteries (4-pack),2,2.99,2019-12-22 19:40:00,725 Spruce St, New York City,NY,10001 +300844,USB-C Charging Cable,1,11.95,2019-12-06 18:45:00,729 Pine St, Dallas,TX,75001 +300845,Google Phone,1,600.0,2019-12-13 20:02:00,866 Park St, San Francisco,CA,94016 +300846,ThinkPad Laptop,1,999.99,2019-12-16 16:59:00,326 Ridge St, Boston,MA,02215 +300847,Lightning Charging Cable,1,14.95,2019-12-08 08:11:00,340 8th St, Los Angeles,CA,90001 +300848,Wired Headphones,2,11.99,2019-12-08 13:48:00,110 13th St, New York City,NY,10001 +300849,Lightning Charging Cable,1,14.95,2019-12-04 21:31:00,66 Washington St, New York City,NY,10001 +300850,Apple Airpods Headphones,1,150.0,2019-12-31 08:54:00,657 8th St, Boston,MA,02215 +300851,20in Monitor,1,109.99,2019-12-12 12:53:00,550 Cherry St, San Francisco,CA,94016 +300852,Wired Headphones,1,11.99,2019-12-19 19:18:00,257 River St, Atlanta,GA,30301 +300853,Bose SoundSport Headphones,1,99.99,2019-12-27 14:33:00,247 Adams St, Boston,MA,02215 +300854,Apple Airpods Headphones,1,150.0,2019-12-06 18:33:00,269 8th St, New York City,NY,10001 +300855,Wired Headphones,1,11.99,2019-12-03 18:24:00,457 4th St, Boston,MA,02215 +300856,Wired Headphones,1,11.99,2019-12-11 21:44:00,442 10th St, Los Angeles,CA,90001 +300857,iPhone,1,700.0,2019-12-01 21:13:00,74 Walnut St, Austin,TX,73301 +300857,Lightning Charging Cable,1,14.95,2019-12-01 21:13:00,74 Walnut St, Austin,TX,73301 +300858,AAA Batteries (4-pack),1,2.99,2019-12-20 20:00:00,839 Wilson St, Dallas,TX,75001 +300859,Wired Headphones,1,11.99,2019-12-29 14:21:00,159 Meadow St, Dallas,TX,75001 +300860,USB-C Charging Cable,1,11.95,2019-12-03 23:41:00,128 Washington St, Dallas,TX,75001 +300861,Lightning Charging Cable,1,14.95,2019-12-14 05:38:00,10 1st St, Dallas,TX,75001 +300862,Bose SoundSport Headphones,1,99.99,2019-12-04 12:50:00,568 Sunset St, San Francisco,CA,94016 +300863,Apple Airpods Headphones,1,150.0,2019-12-28 18:13:00,625 Chestnut St, Austin,TX,73301 +300864,Lightning Charging Cable,1,14.95,2019-12-05 21:43:00,444 Cedar St, San Francisco,CA,94016 +300865,Lightning Charging Cable,1,14.95,2019-12-27 22:35:00,145 Pine St, Portland,OR,97035 +300866,AA Batteries (4-pack),3,3.84,2019-12-28 10:21:00,294 14th St, San Francisco,CA,94016 +300867,AA Batteries (4-pack),1,3.84,2019-12-26 08:58:00,142 Walnut St, New York City,NY,10001 +300868,27in 4K Gaming Monitor,1,389.99,2019-12-08 10:01:00,570 Center St, Seattle,WA,98101 +300869,Wired Headphones,1,11.99,2019-12-08 19:56:00,644 Madison St, San Francisco,CA,94016 +300870,AA Batteries (4-pack),1,3.84,2019-12-13 08:21:00,529 Lincoln St, Austin,TX,73301 +300871,20in Monitor,1,109.99,2019-12-02 10:22:00,438 Johnson St, Los Angeles,CA,90001 +300872,Lightning Charging Cable,1,14.95,2019-12-15 01:37:00,72 River St, Boston,MA,02215 +300873,Wired Headphones,1,11.99,2019-12-09 21:43:00,689 9th St, New York City,NY,10001 +300874,27in 4K Gaming Monitor,1,389.99,2019-12-25 18:19:00,788 Adams St, San Francisco,CA,94016 +300875,ThinkPad Laptop,1,999.99,2019-12-27 23:08:00,684 River St, Los Angeles,CA,90001 +300875,Bose SoundSport Headphones,1,99.99,2019-12-27 23:08:00,684 River St, Los Angeles,CA,90001 +300876,Lightning Charging Cable,1,14.95,2019-12-25 14:04:00,853 10th St, Seattle,WA,98101 +300877,iPhone,1,700.0,2019-12-13 10:21:00,685 4th St, San Francisco,CA,94016 +300877,Lightning Charging Cable,1,14.95,2019-12-13 10:21:00,685 4th St, San Francisco,CA,94016 +300878,Wired Headphones,1,11.99,2019-12-26 20:28:00,556 Willow St, San Francisco,CA,94016 +300879,Lightning Charging Cable,1,14.95,2019-12-15 21:43:00,156 Jackson St, New York City,NY,10001 +300880,USB-C Charging Cable,2,11.95,2019-12-14 15:27:00,978 Maple St, Seattle,WA,98101 +300881,Flatscreen TV,1,300.0,2019-12-04 09:27:00,487 River St, New York City,NY,10001 +300882,AAA Batteries (4-pack),1,2.99,2019-12-03 13:48:00,697 Main St, San Francisco,CA,94016 +300883,Apple Airpods Headphones,1,150.0,2019-12-17 08:26:00,948 Park St, Austin,TX,73301 +300884,Wired Headphones,1,11.99,2019-12-22 05:49:00,745 Maple St, San Francisco,CA,94016 +300885,AA Batteries (4-pack),1,3.84,2019-12-24 19:35:00,821 Jackson St, Portland,OR,97035 +300886,Apple Airpods Headphones,1,150.0,2019-12-28 07:19:00,767 6th St, Los Angeles,CA,90001 +300887,AAA Batteries (4-pack),3,2.99,2019-12-22 11:08:00,827 9th St, Los Angeles,CA,90001 +300888,AAA Batteries (4-pack),1,2.99,2019-12-26 13:13:00,834 River St, Los Angeles,CA,90001 +300889,AAA Batteries (4-pack),1,2.99,2019-12-22 10:30:00,990 13th St, San Francisco,CA,94016 +300890,Apple Airpods Headphones,1,150.0,2019-12-27 18:02:00,623 5th St, Boston,MA,02215 +300891,AA Batteries (4-pack),3,3.84,2019-12-08 11:05:00,450 Adams St, New York City,NY,10001 +300892,USB-C Charging Cable,1,11.95,2019-12-20 10:02:00,546 Lincoln St, Los Angeles,CA,90001 +300893,27in FHD Monitor,1,149.99,2019-12-14 15:44:00,446 11th St, San Francisco,CA,94016 +300894,20in Monitor,1,109.99,2019-12-30 19:50:00,363 Washington St, San Francisco,CA,94016 +300895,Lightning Charging Cable,2,14.95,2019-12-03 15:11:00,359 Meadow St, Portland,OR,97035 +300896,ThinkPad Laptop,1,999.99,2019-12-07 21:06:00,560 Highland St, Dallas,TX,75001 +300897,AAA Batteries (4-pack),1,2.99,2019-12-31 10:16:00,404 Johnson St, San Francisco,CA,94016 +300898,USB-C Charging Cable,1,11.95,2019-12-15 21:47:00,568 9th St, San Francisco,CA,94016 +300899,Wired Headphones,1,11.99,2019-12-20 15:12:00,628 10th St, Dallas,TX,75001 +300900,AA Batteries (4-pack),3,3.84,2019-12-12 13:22:00,472 Johnson St, Seattle,WA,98101 +300901,Apple Airpods Headphones,1,150.0,2019-12-03 16:58:00,414 Elm St, Portland,ME,04101 +300902,Wired Headphones,1,11.99,2019-12-08 23:55:00,922 Willow St, Los Angeles,CA,90001 +300903,ThinkPad Laptop,1,999.99,2019-12-09 07:30:00,402 Elm St, Portland,OR,97035 +300904,20in Monitor,1,109.99,2019-12-15 23:21:00,26 Maple St, Austin,TX,73301 +300905,Google Phone,1,600.0,2019-12-07 21:21:00,815 Lake St, Seattle,WA,98101 +300906,USB-C Charging Cable,1,11.95,2019-12-13 09:25:00,710 13th St, Boston,MA,02215 +300907,AAA Batteries (4-pack),1,2.99,2019-12-27 15:05:00,303 Chestnut St, San Francisco,CA,94016 +300908,ThinkPad Laptop,1,999.99,2019-12-12 17:22:00,300 Adams St, Boston,MA,02215 +300909,AAA Batteries (4-pack),1,2.99,2019-12-15 19:06:00,210 Cherry St, New York City,NY,10001 +300910,27in 4K Gaming Monitor,1,389.99,2019-12-02 15:49:00,945 Cedar St, Los Angeles,CA,90001 +300911,AA Batteries (4-pack),1,3.84,2019-12-31 19:45:00,1 Center St, Boston,MA,02215 +300912,AA Batteries (4-pack),1,3.84,2019-12-20 15:05:00,93 11th St, New York City,NY,10001 +300913,Lightning Charging Cable,1,14.95,2019-12-18 15:34:00,282 Pine St, Boston,MA,02215 +300914,AA Batteries (4-pack),1,3.84,2019-12-31 14:11:00,463 13th St, San Francisco,CA,94016 +300915,20in Monitor,1,109.99,2019-12-24 02:36:00,338 11th St, Atlanta,GA,30301 +300916,27in 4K Gaming Monitor,1,389.99,2019-12-14 20:17:00,174 Pine St, Dallas,TX,75001 +300917,AAA Batteries (4-pack),2,2.99,2019-12-09 07:26:00,258 6th St, Dallas,TX,75001 +300918,AAA Batteries (4-pack),1,2.99,2019-12-16 20:07:00,903 Walnut St, Los Angeles,CA,90001 +300919,Apple Airpods Headphones,1,150.0,2019-12-25 14:18:00,972 Church St, Seattle,WA,98101 +300920,34in Ultrawide Monitor,1,379.99,2019-12-17 13:36:00,126 North St, San Francisco,CA,94016 +300921,AA Batteries (4-pack),1,3.84,2019-12-16 16:59:00,521 Pine St, Boston,MA,02215 +300922,USB-C Charging Cable,1,11.95,2019-12-18 13:50:00,917 Chestnut St, Dallas,TX,75001 +300923,Bose SoundSport Headphones,1,99.99,2019-12-12 16:37:00,788 2nd St, New York City,NY,10001 +300924,Macbook Pro Laptop,1,1700.0,2019-12-07 10:22:00,258 6th St, Portland,OR,97035 +300925,Wired Headphones,1,11.99,2019-12-22 19:36:00,646 5th St, Austin,TX,73301 +300926,Vareebadd Phone,1,400.0,2019-12-13 11:48:00,510 12th St, Atlanta,GA,30301 +300927,Macbook Pro Laptop,1,1700.0,2019-12-31 14:36:00,148 Lake St, Seattle,WA,98101 +300928,34in Ultrawide Monitor,1,379.99,2019-12-24 19:15:00,207 Maple St, Atlanta,GA,30301 +300929,ThinkPad Laptop,1,999.99,2019-12-04 10:32:00,568 10th St, Los Angeles,CA,90001 +300930,Lightning Charging Cable,1,14.95,2019-12-22 17:41:00,891 Jackson St, Seattle,WA,98101 +300931,Lightning Charging Cable,1,14.95,2019-12-09 11:44:00,61 Forest St, Boston,MA,02215 +300932,34in Ultrawide Monitor,1,379.99,2019-12-23 21:24:00,680 Adams St, New York City,NY,10001 +300933,Wired Headphones,1,11.99,2019-12-17 14:56:00,391 River St, Austin,TX,73301 +300934,Bose SoundSport Headphones,1,99.99,2019-12-21 05:15:00,716 Jackson St, San Francisco,CA,94016 +300935,Lightning Charging Cable,1,14.95,2019-12-10 11:19:00,225 West St, Austin,TX,73301 +300936,Apple Airpods Headphones,1,150.0,2019-12-17 10:36:00,605 Willow St, Los Angeles,CA,90001 +300937,iPhone,1,700.0,2019-12-11 19:32:00,827 1st St, New York City,NY,10001 +300938,Wired Headphones,1,11.99,2019-12-07 19:46:00,778 Spruce St, Seattle,WA,98101 +300939,Macbook Pro Laptop,1,1700.0,2019-12-31 07:01:00,948 11th St, Boston,MA,02215 +300940,AAA Batteries (4-pack),2,2.99,2019-12-04 18:36:00,9 Hill St, Atlanta,GA,30301 +300941,AA Batteries (4-pack),1,3.84,2019-12-20 06:52:00,597 Forest St, New York City,NY,10001 +300942,27in FHD Monitor,1,149.99,2019-12-06 10:53:00,435 Cherry St, San Francisco,CA,94016 +300943,AA Batteries (4-pack),2,3.84,2019-12-08 19:52:00,905 North St, Austin,TX,73301 +300944,Lightning Charging Cable,1,14.95,2019-12-23 16:28:00,334 Spruce St, New York City,NY,10001 +300945,Bose SoundSport Headphones,1,99.99,2019-12-12 11:28:00,463 Main St, Dallas,TX,75001 +300946,AAA Batteries (4-pack),1,2.99,2019-12-13 22:44:00,533 Washington St, Portland,OR,97035 +300947,27in 4K Gaming Monitor,1,389.99,2019-12-03 09:58:00,535 Lincoln St, San Francisco,CA,94016 +300948,AAA Batteries (4-pack),1,2.99,2019-12-30 11:55:00,512 Spruce St, Boston,MA,02215 +300949,AA Batteries (4-pack),1,3.84,2019-12-22 07:22:00,913 Cherry St, San Francisco,CA,94016 +300950,AAA Batteries (4-pack),1,2.99,2019-12-23 20:27:00,706 Chestnut St, San Francisco,CA,94016 +300951,AAA Batteries (4-pack),1,2.99,2019-12-16 08:27:00,797 Lake St, Portland,OR,97035 +300952,AA Batteries (4-pack),2,3.84,2019-12-03 13:48:00,725 Center St, Seattle,WA,98101 +300953,USB-C Charging Cable,2,11.95,2019-12-10 14:27:00,607 Meadow St, Boston,MA,02215 +300954,Bose SoundSport Headphones,1,99.99,2019-12-15 08:11:00,815 Willow St, Atlanta,GA,30301 +300955,Macbook Pro Laptop,1,1700.0,2019-12-20 19:36:00,751 7th St, Los Angeles,CA,90001 +300956,AAA Batteries (4-pack),1,2.99,2019-12-18 14:32:00,126 Washington St, Atlanta,GA,30301 +300956,Wired Headphones,1,11.99,2019-12-18 14:32:00,126 Washington St, Atlanta,GA,30301 +300957,AAA Batteries (4-pack),1,2.99,2019-12-21 11:35:00,102 North St, Portland,ME,04101 +300958,Lightning Charging Cable,1,14.95,2019-12-06 18:34:00,855 South St, Dallas,TX,75001 +300959,Bose SoundSport Headphones,1,99.99,2019-12-20 18:21:00,173 Walnut St, San Francisco,CA,94016 +300960,AA Batteries (4-pack),1,3.84,2019-12-11 21:59:00,826 Sunset St, Seattle,WA,98101 +300961,AAA Batteries (4-pack),2,2.99,2019-12-16 19:58:00,715 8th St, San Francisco,CA,94016 +300962,Apple Airpods Headphones,1,150.0,2019-12-28 23:12:00,794 South St, Los Angeles,CA,90001 +300963,USB-C Charging Cable,1,11.95,2019-12-06 20:30:00,864 Center St, Atlanta,GA,30301 +300964,USB-C Charging Cable,1,11.95,2019-12-30 18:44:00,186 North St, Atlanta,GA,30301 +300965,27in 4K Gaming Monitor,1,389.99,2019-12-30 10:39:00,938 Pine St, Portland,OR,97035 +300966,Apple Airpods Headphones,1,150.0,2019-12-10 12:50:00,8 River St, San Francisco,CA,94016 +300967,Wired Headphones,1,11.99,2019-12-03 14:24:00,564 Spruce St, Boston,MA,02215 +300968,USB-C Charging Cable,1,11.95,2019-12-09 07:13:00,437 Hill St, Austin,TX,73301 +300969,27in 4K Gaming Monitor,1,389.99,2019-12-14 21:26:00,696 Wilson St, Los Angeles,CA,90001 +300970,AA Batteries (4-pack),1,3.84,2019-12-31 18:16:00,5 5th St, Austin,TX,73301 +300971,34in Ultrawide Monitor,1,379.99,2019-12-23 17:25:00,24 13th St, San Francisco,CA,94016 +300972,20in Monitor,1,109.99,2019-12-27 13:13:00,564 Pine St, Los Angeles,CA,90001 +300973,Bose SoundSport Headphones,1,99.99,2019-12-29 14:44:00,124 South St, Boston,MA,02215 +300974,USB-C Charging Cable,1,11.95,2019-12-24 18:38:00,412 Meadow St, Austin,TX,73301 +300975,27in 4K Gaming Monitor,1,389.99,2019-12-03 20:45:00,972 Lakeview St, Los Angeles,CA,90001 +300976,Apple Airpods Headphones,1,150.0,2019-12-07 15:01:00,597 4th St, Atlanta,GA,30301 +300977,ThinkPad Laptop,1,999.99,2019-12-26 21:03:00,787 8th St, Los Angeles,CA,90001 +300978,Lightning Charging Cable,1,14.95,2019-12-18 10:25:00,824 West St, San Francisco,CA,94016 +300979,Lightning Charging Cable,1,14.95,2019-12-15 10:52:00,409 Sunset St, San Francisco,CA,94016 +300980,27in FHD Monitor,1,149.99,2019-12-01 06:16:00,959 Ridge St, San Francisco,CA,94016 +300981,Bose SoundSport Headphones,1,99.99,2019-12-05 16:27:00,79 1st St, San Francisco,CA,94016 +300982,AAA Batteries (4-pack),1,2.99,2019-12-27 14:27:00,110 7th St, Boston,MA,02215 +300983,AA Batteries (4-pack),3,3.84,2019-12-30 15:20:00,14 Hill St, New York City,NY,10001 +300984,USB-C Charging Cable,1,11.95,2019-12-11 06:27:00,389 1st St, Seattle,WA,98101 +300985,AA Batteries (4-pack),2,3.84,2019-12-17 10:54:00,75 Spruce St, San Francisco,CA,94016 +300986,AA Batteries (4-pack),3,3.84,2019-12-17 21:11:00,366 7th St, New York City,NY,10001 +300987,Lightning Charging Cable,1,14.95,2019-12-09 20:41:00,261 Willow St, San Francisco,CA,94016 +300987,Google Phone,1,600.0,2019-12-09 20:41:00,261 Willow St, San Francisco,CA,94016 +300988,27in FHD Monitor,1,149.99,2019-12-06 22:09:00,838 West St, New York City,NY,10001 +300989,Vareebadd Phone,1,400.0,2019-12-03 10:22:00,617 Sunset St, Los Angeles,CA,90001 +300990,Flatscreen TV,1,300.0,2019-12-05 18:53:00,628 Park St, New York City,NY,10001 +300991,27in FHD Monitor,1,149.99,2019-12-01 20:41:00,599 Wilson St, Portland,OR,97035 +300992,Apple Airpods Headphones,1,150.0,2019-12-07 19:24:00,341 Adams St, Dallas,TX,75001 +300993,AA Batteries (4-pack),1,3.84,2019-12-01 12:00:00,570 Willow St, San Francisco,CA,94016 +300994,34in Ultrawide Monitor,1,379.99,2019-12-23 10:06:00,720 Lincoln St, Boston,MA,02215 +300995,Apple Airpods Headphones,1,150.0,2019-12-16 06:25:00,229 Main St, Austin,TX,73301 +300996,Wired Headphones,1,11.99,2019-12-30 22:38:00,846 Adams St, San Francisco,CA,94016 +300997,34in Ultrawide Monitor,1,379.99,2019-12-09 15:08:00,468 Spruce St, Atlanta,GA,30301 +300998,34in Ultrawide Monitor,1,379.99,2019-12-30 19:44:00,674 Meadow St, Seattle,WA,98101 +300999,27in FHD Monitor,1,149.99,2019-12-03 17:27:00,485 Hill St, San Francisco,CA,94016 +301000,Flatscreen TV,1,300.0,2019-12-16 19:18:00,868 Spruce St, Seattle,WA,98101 +301001,AAA Batteries (4-pack),1,2.99,2019-12-06 10:23:00,455 12th St, New York City,NY,10001 +301002,27in 4K Gaming Monitor,1,389.99,2019-12-22 14:50:00,823 Johnson St, Seattle,WA,98101 +301003,AAA Batteries (4-pack),3,2.99,2019-12-24 10:46:00,675 Meadow St, Seattle,WA,98101 +301004,Google Phone,1,600.0,2019-12-19 14:27:00,147 1st St, San Francisco,CA,94016 +301004,USB-C Charging Cable,1,11.95,2019-12-19 14:27:00,147 1st St, San Francisco,CA,94016 +301005,Flatscreen TV,1,300.0,2019-12-19 12:44:00,440 Adams St, Los Angeles,CA,90001 +301006,AA Batteries (4-pack),1,3.84,2019-12-24 10:59:00,850 14th St, Los Angeles,CA,90001 +301007,Bose SoundSport Headphones,1,99.99,2019-12-31 08:26:00,686 2nd St, Boston,MA,02215 +301008,AA Batteries (4-pack),1,3.84,2019-12-02 19:22:00,374 Main St, Los Angeles,CA,90001 +301009,Wired Headphones,1,11.99,2019-12-13 20:58:00,812 River St, Los Angeles,CA,90001 +301010,Apple Airpods Headphones,1,150.0,2019-12-17 04:54:00,279 Sunset St, Boston,MA,02215 +301011,Lightning Charging Cable,1,14.95,2019-12-28 19:32:00,556 4th St, Seattle,WA,98101 +301012,27in 4K Gaming Monitor,1,389.99,2019-12-27 15:17:00,377 Lakeview St, Dallas,TX,75001 +301013,20in Monitor,1,109.99,2019-12-16 16:59:00,812 Jackson St, Austin,TX,73301 +301014,AA Batteries (4-pack),2,3.84,2019-12-02 07:11:00,536 8th St, San Francisco,CA,94016 +301015,AAA Batteries (4-pack),2,2.99,2019-12-07 17:18:00,410 River St, Austin,TX,73301 +301016,27in FHD Monitor,1,149.99,2019-12-13 18:22:00,995 Forest St, Dallas,TX,75001 +301017,Wired Headphones,1,11.99,2019-12-15 18:49:00,625 2nd St, San Francisco,CA,94016 +301018,AA Batteries (4-pack),1,3.84,2019-12-02 14:51:00,746 Pine St, Los Angeles,CA,90001 +301019,AAA Batteries (4-pack),1,2.99,2019-12-18 12:27:00,153 Washington St, Boston,MA,02215 +301020,Wired Headphones,1,11.99,2019-12-06 11:25:00,239 Cedar St, Los Angeles,CA,90001 +301021,iPhone,1,700.0,2019-12-20 17:22:00,729 West St, Los Angeles,CA,90001 +301022,34in Ultrawide Monitor,1,379.99,2019-12-19 11:54:00,487 Sunset St, Los Angeles,CA,90001 +301023,USB-C Charging Cable,1,11.95,2019-12-19 13:15:00,723 11th St, Dallas,TX,75001 +301024,27in FHD Monitor,1,149.99,2019-12-08 18:45:00,370 Cherry St, Boston,MA,02215 +301025,Apple Airpods Headphones,1,150.0,2019-12-24 00:40:00,488 Willow St, Portland,OR,97035 +301026,AA Batteries (4-pack),1,3.84,2019-12-07 20:29:00,158 Jefferson St, New York City,NY,10001 +301027,USB-C Charging Cable,1,11.95,2019-12-04 12:12:00,8 Jefferson St, Atlanta,GA,30301 +301028,AA Batteries (4-pack),1,3.84,2019-12-20 21:04:00,145 12th St, Austin,TX,73301 +301029,Wired Headphones,1,11.99,2019-12-15 15:04:00,524 Pine St, Los Angeles,CA,90001 +301030,AA Batteries (4-pack),1,3.84,2019-12-14 19:20:00,250 Lakeview St, Atlanta,GA,30301 +301031,Apple Airpods Headphones,1,150.0,2019-12-05 13:59:00,769 Sunset St, New York City,NY,10001 +301032,Apple Airpods Headphones,1,150.0,2019-12-13 16:39:00,155 Maple St, San Francisco,CA,94016 +301033,Wired Headphones,1,11.99,2019-12-19 11:22:00,737 Wilson St, New York City,NY,10001 +301034,iPhone,1,700.0,2019-12-14 08:29:00,777 Jefferson St, New York City,NY,10001 +301034,Wired Headphones,1,11.99,2019-12-14 08:29:00,777 Jefferson St, New York City,NY,10001 +301035,Lightning Charging Cable,1,14.95,2019-12-09 08:54:00,234 14th St, San Francisco,CA,94016 +301036,USB-C Charging Cable,2,11.95,2019-12-01 13:28:00,883 Spruce St, San Francisco,CA,94016 +301037,ThinkPad Laptop,1,999.99,2019-12-01 21:39:00,818 Main St, San Francisco,CA,94016 +301038,Bose SoundSport Headphones,1,99.99,2019-12-29 08:13:00,107 Chestnut St, San Francisco,CA,94016 +301039,Lightning Charging Cable,1,14.95,2019-12-15 21:36:00,416 Walnut St, Boston,MA,02215 +301040,27in FHD Monitor,1,149.99,2019-12-26 23:44:00,960 West St, Dallas,TX,75001 +301041,Bose SoundSport Headphones,1,99.99,2019-12-20 22:02:00,922 Washington St, Seattle,WA,98101 +301042,27in 4K Gaming Monitor,1,389.99,2019-12-08 09:07:00,837 Chestnut St, Boston,MA,02215 +301043,Lightning Charging Cable,1,14.95,2019-12-15 10:47:00,522 Forest St, Boston,MA,02215 +301044,USB-C Charging Cable,1,11.95,2019-12-13 15:46:00,879 Jefferson St, Atlanta,GA,30301 +301045,Flatscreen TV,1,300.0,2019-12-15 20:45:00,720 Pine St, San Francisco,CA,94016 +301046,AAA Batteries (4-pack),1,2.99,2019-12-02 10:40:00,472 8th St, Seattle,WA,98101 +301047,AA Batteries (4-pack),1,3.84,2019-12-01 23:16:00,113 Sunset St, San Francisco,CA,94016 +301048,Lightning Charging Cable,1,14.95,2019-12-07 09:34:00,889 Maple St, San Francisco,CA,94016 +301049,27in FHD Monitor,1,149.99,2019-12-03 21:10:00,512 Pine St, Seattle,WA,98101 +301050,iPhone,1,700.0,2019-12-10 11:58:00,310 Pine St, San Francisco,CA,94016 +301051,Lightning Charging Cable,1,14.95,2019-12-28 22:21:00,404 Willow St, Boston,MA,02215 +301052,AA Batteries (4-pack),1,3.84,2019-12-22 07:28:00,45 Maple St, New York City,NY,10001 +301053,USB-C Charging Cable,1,11.95,2019-12-07 20:48:00,69 14th St, Portland,OR,97035 +301054,Apple Airpods Headphones,1,150.0,2019-12-22 22:33:00,535 Walnut St, Dallas,TX,75001 +301055,ThinkPad Laptop,1,999.99,2019-12-26 09:17:00,475 Ridge St, Seattle,WA,98101 +301056,AA Batteries (4-pack),1,3.84,2019-12-05 12:57:00,591 Main St, Austin,TX,73301 +301057,AA Batteries (4-pack),1,3.84,2019-12-19 22:51:00,675 Walnut St, San Francisco,CA,94016 +301058,AA Batteries (4-pack),1,3.84,2019-12-26 19:16:00,987 Lakeview St, Seattle,WA,98101 +301059,Vareebadd Phone,1,400.0,2019-12-03 19:55:00,64 10th St, Austin,TX,73301 +301060,Lightning Charging Cable,1,14.95,2019-12-12 09:58:00,601 5th St, Boston,MA,02215 +301061,34in Ultrawide Monitor,1,379.99,2019-12-24 11:12:00,676 Willow St, Atlanta,GA,30301 +301062,AA Batteries (4-pack),2,3.84,2019-12-06 20:46:00,788 Washington St, Seattle,WA,98101 +301063,Bose SoundSport Headphones,1,99.99,2019-12-29 15:09:00,148 Pine St, Dallas,TX,75001 +301064,Lightning Charging Cable,1,14.95,2019-12-04 22:56:00,349 Meadow St, Los Angeles,CA,90001 +301065,Apple Airpods Headphones,1,150.0,2019-12-05 20:31:00,210 South St, Portland,ME,04101 +301066,AA Batteries (4-pack),1,3.84,2019-12-02 21:51:00,121 Cherry St, Austin,TX,73301 +301067,27in 4K Gaming Monitor,1,389.99,2019-12-02 18:33:00,6 Center St, New York City,NY,10001 +301068,Wired Headphones,1,11.99,2019-12-29 13:45:00,136 Pine St, Atlanta,GA,30301 +301069,Bose SoundSport Headphones,1,99.99,2019-12-12 01:02:00,458 8th St, Austin,TX,73301 +301070,AA Batteries (4-pack),1,3.84,2019-12-15 17:09:00,960 Park St, Austin,TX,73301 +301071,Apple Airpods Headphones,1,150.0,2019-12-21 10:12:00,22 Jefferson St, Portland,OR,97035 +301072,Wired Headphones,1,11.99,2019-12-27 01:32:00,22 Willow St, San Francisco,CA,94016 +301072,34in Ultrawide Monitor,1,379.99,2019-12-27 01:32:00,22 Willow St, San Francisco,CA,94016 +301073,27in 4K Gaming Monitor,1,389.99,2019-12-15 09:50:00,82 Spruce St, San Francisco,CA,94016 +301074,Lightning Charging Cable,1,14.95,2019-12-06 10:06:00,708 Maple St, New York City,NY,10001 +301075,27in FHD Monitor,1,149.99,2019-12-17 17:25:00,75 12th St, Los Angeles,CA,90001 +301076,20in Monitor,1,109.99,2019-12-22 11:27:00,145 Wilson St, Austin,TX,73301 +301077,Lightning Charging Cable,1,14.95,2019-12-14 20:25:00,201 Spruce St, Boston,MA,02215 +301078,ThinkPad Laptop,1,999.99,2019-12-25 00:52:00,257 Willow St, Dallas,TX,75001 +301079,Bose SoundSport Headphones,1,99.99,2019-12-02 14:38:00,499 River St, Boston,MA,02215 +301080,34in Ultrawide Monitor,1,379.99,2019-12-01 22:02:00,562 Elm St, Los Angeles,CA,90001 +301081,Macbook Pro Laptop,1,1700.0,2019-12-30 03:39:00,752 14th St, Los Angeles,CA,90001 +301082,AA Batteries (4-pack),3,3.84,2019-12-26 16:53:00,925 Elm St, New York City,NY,10001 +301083,27in 4K Gaming Monitor,1,389.99,2019-12-08 07:02:00,634 Ridge St, Boston,MA,02215 +301084,Bose SoundSport Headphones,1,99.99,2019-12-28 13:01:00,260 Lake St, Los Angeles,CA,90001 +301085,AAA Batteries (4-pack),1,2.99,2019-12-29 09:33:00,113 13th St, Boston,MA,02215 +301086,USB-C Charging Cable,1,11.95,2019-12-02 20:08:00,94 Madison St, Dallas,TX,75001 +301087,USB-C Charging Cable,1,11.95,2019-12-28 18:29:00,820 14th St, San Francisco,CA,94016 +301088,Lightning Charging Cable,1,14.95,2019-12-22 09:21:00,987 West St, Portland,OR,97035 +301089,Bose SoundSport Headphones,1,99.99,2019-12-15 18:59:00,442 Chestnut St, San Francisco,CA,94016 +301090,AA Batteries (4-pack),2,3.84,2019-12-09 12:01:00,667 Main St, Portland,OR,97035 +301091,20in Monitor,1,109.99,2019-12-22 22:12:00,246 Maple St, Atlanta,GA,30301 +301092,AAA Batteries (4-pack),1,2.99,2019-12-28 14:46:00,890 14th St, San Francisco,CA,94016 +301093,Flatscreen TV,1,300.0,2019-12-03 17:23:00,727 Lake St, San Francisco,CA,94016 +301094,Apple Airpods Headphones,1,150.0,2019-12-04 09:41:00,600 Main St, Austin,TX,73301 +301095,34in Ultrawide Monitor,1,379.99,2019-12-19 06:47:00,946 Forest St, Los Angeles,CA,90001 +301096,ThinkPad Laptop,1,999.99,2019-12-30 17:10:00,957 12th St, Portland,OR,97035 +301097,AAA Batteries (4-pack),1,2.99,2019-12-18 06:53:00,93 9th St, San Francisco,CA,94016 +301098,Apple Airpods Headphones,1,150.0,2019-12-03 22:47:00,937 North St, Portland,OR,97035 +301099,20in Monitor,1,109.99,2019-12-16 07:09:00,451 Cherry St, San Francisco,CA,94016 +301100,AAA Batteries (4-pack),1,2.99,2019-12-24 10:08:00,788 Hill St, New York City,NY,10001 +301101,Apple Airpods Headphones,1,150.0,2019-12-20 13:40:00,554 Forest St, Austin,TX,73301 +301101,AAA Batteries (4-pack),1,2.99,2019-12-20 13:40:00,554 Forest St, Austin,TX,73301 +301102,Apple Airpods Headphones,1,150.0,2019-12-24 13:13:00,740 South St, San Francisco,CA,94016 +301103,iPhone,1,700.0,2019-12-12 12:03:00,989 Main St, Boston,MA,02215 +301104,AAA Batteries (4-pack),1,2.99,2019-12-11 19:04:00,87 South St, New York City,NY,10001 +301105,Macbook Pro Laptop,1,1700.0,2019-12-30 17:41:00,325 Willow St, Los Angeles,CA,90001 +301106,Macbook Pro Laptop,1,1700.0,2019-12-22 18:02:00,811 Chestnut St, Los Angeles,CA,90001 +301107,Lightning Charging Cable,2,14.95,2019-12-05 16:22:00,958 West St, Portland,ME,04101 +301108,Apple Airpods Headphones,1,150.0,2019-12-11 18:30:00,344 Wilson St, Boston,MA,02215 +301109,27in 4K Gaming Monitor,1,389.99,2019-12-06 11:38:00,476 South St, Los Angeles,CA,90001 +301110,34in Ultrawide Monitor,1,379.99,2019-12-07 08:48:00,55 Willow St, Boston,MA,02215 +301111,USB-C Charging Cable,1,11.95,2019-12-02 00:59:00,364 14th St, Atlanta,GA,30301 +301112,27in 4K Gaming Monitor,1,389.99,2019-12-04 12:16:00,273 Jefferson St, San Francisco,CA,94016 +301113,27in 4K Gaming Monitor,1,389.99,2019-12-27 20:16:00,217 River St, New York City,NY,10001 +301114,Wired Headphones,1,11.99,2019-12-11 14:24:00,314 North St, Seattle,WA,98101 +301115,ThinkPad Laptop,1,999.99,2019-12-01 13:54:00,817 2nd St, Atlanta,GA,30301 +301116,AA Batteries (4-pack),1,3.84,2019-12-10 01:16:00,545 Sunset St, San Francisco,CA,94016 +301117,20in Monitor,1,109.99,2019-12-22 16:03:00,688 Elm St, Boston,MA,02215 +301118,Wired Headphones,1,11.99,2019-12-31 20:06:00,823 Church St, Dallas,TX,75001 +301119,AAA Batteries (4-pack),1,2.99,2019-12-27 12:35:00,293 North St, San Francisco,CA,94016 +301120,Google Phone,1,600.0,2019-12-16 09:03:00,897 11th St, Boston,MA,02215 +301121,Macbook Pro Laptop,1,1700.0,2019-12-02 10:39:00,253 5th St, Boston,MA,02215 +301122,Macbook Pro Laptop,1,1700.0,2019-12-06 09:55:00,767 Main St, Boston,MA,02215 +301123,Macbook Pro Laptop,1,1700.0,2019-12-09 20:21:00,433 Walnut St, San Francisco,CA,94016 +301124,Flatscreen TV,1,300.0,2019-12-30 10:31:00,617 Elm St, Los Angeles,CA,90001 +301125,AAA Batteries (4-pack),1,2.99,2019-12-23 16:34:00,873 Forest St, Boston,MA,02215 +301126,Apple Airpods Headphones,1,150.0,2019-12-07 23:33:00,254 5th St, Los Angeles,CA,90001 +301127,27in 4K Gaming Monitor,1,389.99,2019-12-16 19:15:00,791 Main St, San Francisco,CA,94016 +301127,AAA Batteries (4-pack),1,2.99,2019-12-16 19:15:00,791 Main St, San Francisco,CA,94016 +301128,Wired Headphones,1,11.99,2019-12-04 15:00:00,783 Spruce St, San Francisco,CA,94016 +301129,Bose SoundSport Headphones,1,99.99,2019-12-11 11:27:00,784 9th St, San Francisco,CA,94016 +301130,34in Ultrawide Monitor,1,379.99,2019-12-11 20:13:00,376 Forest St, New York City,NY,10001 +301131,Bose SoundSport Headphones,1,99.99,2019-12-11 16:38:00,525 4th St, Atlanta,GA,30301 +301132,Vareebadd Phone,1,400.0,2019-12-21 10:32:00,889 Adams St, Seattle,WA,98101 +301133,AA Batteries (4-pack),1,3.84,2019-12-27 10:05:00,941 Lakeview St, Boston,MA,02215 +301134,AA Batteries (4-pack),1,3.84,2019-12-21 19:54:00,943 North St, San Francisco,CA,94016 +301135,Lightning Charging Cable,1,14.95,2019-12-26 22:43:00,303 Spruce St, Portland,OR,97035 +301136,USB-C Charging Cable,1,11.95,2019-12-03 19:01:00,545 Willow St, San Francisco,CA,94016 +301137,Apple Airpods Headphones,1,150.0,2019-12-17 20:51:00,8 Hickory St, New York City,NY,10001 +301138,27in FHD Monitor,1,149.99,2019-12-23 13:57:00,644 Park St, San Francisco,CA,94016 +301139,Apple Airpods Headphones,1,150.0,2019-12-02 09:50:00,893 9th St, Dallas,TX,75001 +301140,27in FHD Monitor,1,149.99,2019-12-30 19:55:00,335 Cherry St, New York City,NY,10001 +301141,Apple Airpods Headphones,1,150.0,2019-12-22 14:02:00,647 Meadow St, Boston,MA,02215 +301142,Wired Headphones,1,11.99,2019-12-22 21:22:00,598 West St, Boston,MA,02215 +301143,20in Monitor,1,109.99,2019-12-30 16:56:00,74 Walnut St, Los Angeles,CA,90001 +301144,Apple Airpods Headphones,1,150.0,2019-12-02 19:49:00,456 North St, Los Angeles,CA,90001 +301145,iPhone,1,700.0,2019-12-23 14:25:00,586 12th St, San Francisco,CA,94016 +301146,Bose SoundSport Headphones,1,99.99,2019-12-20 10:07:00,907 Center St, San Francisco,CA,94016 +301147,AA Batteries (4-pack),1,3.84,2019-12-21 11:59:00,896 Wilson St, Seattle,WA,98101 +301148,USB-C Charging Cable,1,11.95,2019-12-16 00:53:00,226 Washington St, Los Angeles,CA,90001 +301149,20in Monitor,1,109.99,2019-12-16 18:37:00,495 Jefferson St, Boston,MA,02215 +301150,USB-C Charging Cable,1,11.95,2019-12-31 13:31:00,185 13th St, Atlanta,GA,30301 +301151,AA Batteries (4-pack),1,3.84,2019-12-12 09:06:00,32 Forest St, Los Angeles,CA,90001 +301152,Wired Headphones,1,11.99,2019-12-12 13:28:00,183 Lake St, Dallas,TX,75001 +301153,AAA Batteries (4-pack),2,2.99,2019-12-17 18:01:00,926 5th St, Boston,MA,02215 +301154,USB-C Charging Cable,1,11.95,2019-12-08 12:30:00,271 2nd St, San Francisco,CA,94016 +301155,Wired Headphones,3,11.99,2019-12-27 18:25:00,854 Cherry St, Los Angeles,CA,90001 +301156,USB-C Charging Cable,1,11.95,2019-12-15 12:16:00,652 Center St, Dallas,TX,75001 +301157,Macbook Pro Laptop,1,1700.0,2019-12-10 13:15:00,316 Lincoln St, New York City,NY,10001 +301158,27in 4K Gaming Monitor,1,389.99,2019-12-15 10:20:00,540 10th St, Atlanta,GA,30301 +301159,34in Ultrawide Monitor,1,379.99,2019-12-08 11:05:00,639 Jackson St, Seattle,WA,98101 +301160,USB-C Charging Cable,1,11.95,2019-12-11 05:56:00,557 West St, Boston,MA,02215 +301161,Wired Headphones,1,11.99,2019-12-17 11:38:00,424 Forest St, San Francisco,CA,94016 +301162,AA Batteries (4-pack),1,3.84,2019-12-12 16:01:00,359 Main St, Seattle,WA,98101 +301163,LG Dryer,1,600.0,2019-12-01 19:35:00,396 7th St, San Francisco,CA,94016 +301164,Lightning Charging Cable,1,14.95,2019-12-29 11:39:00,203 Chestnut St, Austin,TX,73301 +301165,iPhone,1,700.0,2019-12-24 11:51:00,734 Lake St, New York City,NY,10001 +301165,Lightning Charging Cable,1,14.95,2019-12-24 11:51:00,734 Lake St, New York City,NY,10001 +301166,Flatscreen TV,1,300.0,2019-12-25 16:34:00,124 Lake St, Los Angeles,CA,90001 +301167,USB-C Charging Cable,2,11.95,2019-12-14 20:37:00,243 Lincoln St, Los Angeles,CA,90001 +301168,Bose SoundSport Headphones,1,99.99,2019-12-03 20:34:00,423 Main St, Seattle,WA,98101 +301169,Bose SoundSport Headphones,1,99.99,2019-12-10 08:41:00,999 Forest St, Boston,MA,02215 +301170,Bose SoundSport Headphones,1,99.99,2019-12-05 14:14:00,541 Wilson St, Los Angeles,CA,90001 +301171,Apple Airpods Headphones,1,150.0,2019-12-07 21:55:00,18 6th St, San Francisco,CA,94016 +301172,AA Batteries (4-pack),1,3.84,2019-12-21 17:44:00,179 Center St, New York City,NY,10001 +301173,Lightning Charging Cable,1,14.95,2019-12-25 11:03:00,519 Johnson St, New York City,NY,10001 +301174,Lightning Charging Cable,1,14.95,2019-12-28 08:59:00,283 Main St, Boston,MA,02215 +301175,Bose SoundSport Headphones,1,99.99,2019-12-23 11:53:00,230 Forest St, San Francisco,CA,94016 +301176,Wired Headphones,1,11.99,2019-12-13 12:57:00,126 Dogwood St, Seattle,WA,98101 +301177,AA Batteries (4-pack),2,3.84,2019-12-13 23:00:00,970 Chestnut St, Atlanta,GA,30301 +301178,Vareebadd Phone,1,400.0,2019-12-21 15:06:00,277 Jackson St, Atlanta,GA,30301 +301178,USB-C Charging Cable,1,11.95,2019-12-21 15:06:00,277 Jackson St, Atlanta,GA,30301 +301179,USB-C Charging Cable,1,11.95,2019-12-09 14:27:00,783 5th St, Atlanta,GA,30301 +301180,27in FHD Monitor,1,149.99,2019-12-12 10:26:00,231 Center St, Atlanta,GA,30301 +301181,Apple Airpods Headphones,1,150.0,2019-12-08 21:21:00,377 1st St, Boston,MA,02215 +301182,Apple Airpods Headphones,1,150.0,2019-12-17 01:42:00,271 8th St, Seattle,WA,98101 +301183,20in Monitor,1,109.99,2019-12-05 15:51:00,417 6th St, Seattle,WA,98101 +301184,Apple Airpods Headphones,1,150.0,2019-12-07 16:43:00,203 Forest St, Atlanta,GA,30301 +301185,AA Batteries (4-pack),1,3.84,2019-12-11 08:34:00,540 Wilson St, San Francisco,CA,94016 +301186,Apple Airpods Headphones,1,150.0,2019-12-13 19:20:00,361 Park St, Austin,TX,73301 +301186,Google Phone,1,600.0,2019-12-13 19:20:00,361 Park St, Austin,TX,73301 +301187,AAA Batteries (4-pack),1,2.99,2019-12-18 19:31:00,841 Lincoln St, Portland,OR,97035 +301188,20in Monitor,1,109.99,2019-12-28 18:46:00,294 5th St, Seattle,WA,98101 +301189,Google Phone,1,600.0,2019-12-15 07:24:00,273 Center St, San Francisco,CA,94016 +301190,20in Monitor,1,109.99,2019-12-08 18:05:00,182 West St, San Francisco,CA,94016 +301191,Google Phone,1,600.0,2019-12-17 11:27:00,821 Center St, Los Angeles,CA,90001 +301192,Wired Headphones,1,11.99,2019-12-02 12:21:00,90 Cedar St, New York City,NY,10001 +301193,Lightning Charging Cable,1,14.95,2019-12-02 22:03:00,593 Forest St, Portland,OR,97035 +301194,Flatscreen TV,1,300.0,2019-12-11 14:27:00,576 Dogwood St, Austin,TX,73301 +301195,USB-C Charging Cable,1,11.95,2019-12-26 13:30:00,500 Meadow St, Atlanta,GA,30301 +301196,Lightning Charging Cable,1,14.95,2019-12-26 16:18:00,102 Maple St, Boston,MA,02215 +301197,ThinkPad Laptop,1,999.99,2019-12-12 16:49:00,621 Lincoln St, San Francisco,CA,94016 +301198,34in Ultrawide Monitor,1,379.99,2019-12-29 14:13:00,396 Meadow St, Atlanta,GA,30301 +301199,AAA Batteries (4-pack),1,2.99,2019-12-12 21:45:00,978 Chestnut St, San Francisco,CA,94016 +301200,Apple Airpods Headphones,1,150.0,2019-12-24 18:23:00,167 8th St, Seattle,WA,98101 +301201,AAA Batteries (4-pack),1,2.99,2019-12-29 10:21:00,552 Jefferson St, Dallas,TX,75001 +301202,iPhone,1,700.0,2019-12-10 17:28:00,19 7th St, San Francisco,CA,94016 +301203,34in Ultrawide Monitor,1,379.99,2019-12-17 20:31:00,659 River St, New York City,NY,10001 +301204,AAA Batteries (4-pack),1,2.99,2019-12-14 21:26:00,207 Forest St, San Francisco,CA,94016 +301205,USB-C Charging Cable,1,11.95,2019-12-17 08:23:00,125 West St, Los Angeles,CA,90001 +301206,iPhone,1,700.0,2019-12-18 16:28:00,261 5th St, Los Angeles,CA,90001 +301207,AA Batteries (4-pack),1,3.84,2019-12-09 11:02:00,652 Adams St, Boston,MA,02215 +301208,USB-C Charging Cable,1,11.95,2019-12-29 18:09:00,959 Walnut St, Boston,MA,02215 +301209,27in FHD Monitor,1,149.99,2019-12-26 08:08:00,325 Highland St, Seattle,WA,98101 +301210,Wired Headphones,1,11.99,2019-12-30 16:00:00,270 Forest St, Boston,MA,02215 +301211,USB-C Charging Cable,1,11.95,2019-12-25 19:01:00,148 Walnut St, New York City,NY,10001 +301212,Wired Headphones,1,11.99,2019-12-06 10:08:00,218 Wilson St, San Francisco,CA,94016 +301213,USB-C Charging Cable,1,11.95,2019-12-21 14:30:00,494 Hill St, San Francisco,CA,94016 +301214,Lightning Charging Cable,1,14.95,2019-12-06 11:41:00,48 Dogwood St, Austin,TX,73301 +301215,Wired Headphones,1,11.99,2019-12-02 09:30:00,731 10th St, San Francisco,CA,94016 +301216,27in 4K Gaming Monitor,1,389.99,2019-12-07 16:54:00,250 14th St, Atlanta,GA,30301 +301217,USB-C Charging Cable,2,11.95,2019-12-21 12:59:00,965 West St, Austin,TX,73301 +301218,Lightning Charging Cable,1,14.95,2019-12-23 23:13:00,80 Cherry St, San Francisco,CA,94016 +301219,Lightning Charging Cable,1,14.95,2019-12-14 18:07:00,833 7th St, Austin,TX,73301 +301220,Lightning Charging Cable,2,14.95,2019-12-07 18:33:00,441 Sunset St, New York City,NY,10001 +301221,AAA Batteries (4-pack),1,2.99,2019-12-20 11:03:00,51 Meadow St, Seattle,WA,98101 +301222,27in 4K Gaming Monitor,1,389.99,2019-12-25 20:26:00,722 9th St, Boston,MA,02215 +301223,AA Batteries (4-pack),1,3.84,2019-12-05 08:20:00,404 Dogwood St, San Francisco,CA,94016 +301224,Bose SoundSport Headphones,1,99.99,2019-12-20 10:31:00,172 Meadow St, Boston,MA,02215 +301225,Bose SoundSport Headphones,1,99.99,2019-12-04 10:55:00,918 7th St, Los Angeles,CA,90001 +301226,Lightning Charging Cable,1,14.95,2019-12-10 10:10:00,226 South St, Portland,OR,97035 +301227,AAA Batteries (4-pack),2,2.99,2019-12-02 21:07:00,121 4th St, Boston,MA,02215 +301228,Lightning Charging Cable,1,14.95,2019-12-30 10:11:00,284 Spruce St, New York City,NY,10001 +301229,Bose SoundSport Headphones,1,99.99,2019-12-07 21:08:00,505 Madison St, San Francisco,CA,94016 +301230,AAA Batteries (4-pack),1,2.99,2019-12-28 11:34:00,787 4th St, Boston,MA,02215 +301231,20in Monitor,1,109.99,2019-12-08 21:01:00,49 Meadow St, Los Angeles,CA,90001 +301232,USB-C Charging Cable,1,11.95,2019-12-26 08:16:00,515 11th St, Boston,MA,02215 +301233,Apple Airpods Headphones,1,150.0,2019-12-17 14:45:00,875 Chestnut St, Boston,MA,02215 +301234,27in 4K Gaming Monitor,1,389.99,2019-12-12 07:37:00,815 13th St, San Francisco,CA,94016 +301235,Wired Headphones,1,11.99,2019-12-17 11:45:00,323 Park St, Portland,OR,97035 +301236,Wired Headphones,1,11.99,2019-12-17 22:54:00,46 Park St, Los Angeles,CA,90001 +301237,AAA Batteries (4-pack),1,2.99,2019-12-04 10:17:00,253 Lincoln St, New York City,NY,10001 +301238,AA Batteries (4-pack),1,3.84,2019-12-13 23:55:00,399 Madison St, Atlanta,GA,30301 +301239,Lightning Charging Cable,1,14.95,2019-12-20 14:00:00,502 Elm St, San Francisco,CA,94016 +301240,Lightning Charging Cable,1,14.95,2019-12-23 01:13:00,811 Chestnut St, Boston,MA,02215 +301241,USB-C Charging Cable,1,11.95,2019-12-11 19:37:00,408 Hickory St, Boston,MA,02215 +301242,Wired Headphones,1,11.99,2019-12-03 21:58:00,279 Dogwood St, Austin,TX,73301 +301243,Wired Headphones,1,11.99,2019-12-07 15:30:00,381 1st St, Austin,TX,73301 +301244,Wired Headphones,1,11.99,2019-12-15 19:47:00,598 Lincoln St, San Francisco,CA,94016 +301245,Apple Airpods Headphones,1,150.0,2019-12-14 17:29:00,766 Maple St, Seattle,WA,98101 +301246,AA Batteries (4-pack),2,3.84,2019-12-09 07:25:00,871 Lake St, Atlanta,GA,30301 +301246,Apple Airpods Headphones,1,150.0,2019-12-09 07:25:00,871 Lake St, Atlanta,GA,30301 +301247,Macbook Pro Laptop,1,1700.0,2019-12-03 20:02:00,308 Maple St, Austin,TX,73301 +301248,Flatscreen TV,1,300.0,2019-12-18 23:48:00,748 Madison St, San Francisco,CA,94016 +301249,Vareebadd Phone,1,400.0,2019-12-18 19:05:00,475 Cherry St, San Francisco,CA,94016 +301250,Lightning Charging Cable,1,14.95,2019-12-29 14:16:00,189 Cherry St, Atlanta,GA,30301 +301251,Apple Airpods Headphones,1,150.0,2019-12-25 18:26:00,766 11th St, Dallas,TX,75001 +301252,AA Batteries (4-pack),1,3.84,2019-12-22 12:41:00,958 Ridge St, Los Angeles,CA,90001 +301253,iPhone,1,700.0,2019-12-01 14:59:00,267 8th St, Boston,MA,02215 +301254,AA Batteries (4-pack),1,3.84,2019-12-17 19:24:00,97 Lakeview St, Boston,MA,02215 +301255,ThinkPad Laptop,1,999.99,2019-12-24 23:09:00,24 Center St, Los Angeles,CA,90001 +301256,Wired Headphones,1,11.99,2019-12-10 14:59:00,846 14th St, Portland,ME,04101 +301257,Lightning Charging Cable,2,14.95,2019-12-14 12:46:00,514 Madison St, Los Angeles,CA,90001 +301258,20in Monitor,1,109.99,2019-12-10 09:29:00,541 Highland St, San Francisco,CA,94016 +301259,Lightning Charging Cable,1,14.95,2019-12-13 23:47:00,975 River St, San Francisco,CA,94016 +301260,34in Ultrawide Monitor,1,379.99,2019-12-23 12:33:00,753 West St, Los Angeles,CA,90001 +301261,Apple Airpods Headphones,1,150.0,2019-12-01 20:08:00,402 North St, Portland,ME,04101 +301262,27in FHD Monitor,1,149.99,2019-12-08 11:22:00,829 Johnson St, Los Angeles,CA,90001 +301263,AAA Batteries (4-pack),1,2.99,2019-12-13 17:39:00,965 Washington St, New York City,NY,10001 +301264,AA Batteries (4-pack),1,3.84,2019-12-01 21:57:00,768 Dogwood St, Atlanta,GA,30301 +301265,AAA Batteries (4-pack),1,2.99,2019-12-07 12:06:00,821 Ridge St, Dallas,TX,75001 +301266,AA Batteries (4-pack),1,3.84,2019-12-05 08:41:00,228 7th St, San Francisco,CA,94016 +301267,34in Ultrawide Monitor,1,379.99,2019-12-13 19:36:00,429 Washington St, Atlanta,GA,30301 +301268,AAA Batteries (4-pack),1,2.99,2019-12-15 04:54:00,180 Cedar St, San Francisco,CA,94016 +301269,Bose SoundSport Headphones,1,99.99,2019-12-28 12:58:00,417 Main St, Los Angeles,CA,90001 +301270,AAA Batteries (4-pack),1,2.99,2019-12-11 12:27:00,669 Washington St, Seattle,WA,98101 +301271,AAA Batteries (4-pack),4,2.99,2019-12-07 14:10:00,609 Center St, San Francisco,CA,94016 +301272,AA Batteries (4-pack),1,3.84,2019-12-19 11:53:00,661 Wilson St, San Francisco,CA,94016 +301273,Macbook Pro Laptop,1,1700.0,2019-12-17 13:22:00,345 Jefferson St, New York City,NY,10001 +301274,USB-C Charging Cable,1,11.95,2019-12-29 18:33:00,447 Spruce St, Dallas,TX,75001 +301275,Apple Airpods Headphones,1,150.0,2019-12-05 09:32:00,198 Forest St, Seattle,WA,98101 +301276,Bose SoundSport Headphones,1,99.99,2019-12-20 21:36:00,718 Main St, San Francisco,CA,94016 +301277,27in FHD Monitor,1,149.99,2019-12-26 10:49:00,767 Chestnut St, San Francisco,CA,94016 +301278,iPhone,1,700.0,2019-12-21 05:22:00,454 Highland St, New York City,NY,10001 +301279,USB-C Charging Cable,1,11.95,2019-12-16 09:38:00,91 Hill St, Los Angeles,CA,90001 +301280,USB-C Charging Cable,1,11.95,2019-12-02 18:19:00,18 14th St, Seattle,WA,98101 +301281,USB-C Charging Cable,1,11.95,2019-12-22 12:52:00,562 Lakeview St, New York City,NY,10001 +301282,AA Batteries (4-pack),1,3.84,2019-12-23 11:20:00,480 13th St, New York City,NY,10001 +301283,AAA Batteries (4-pack),1,2.99,2019-12-30 20:29:00,451 10th St, Los Angeles,CA,90001 +301284,AAA Batteries (4-pack),1,2.99,2019-12-14 23:41:00,655 5th St, Boston,MA,02215 +301285,USB-C Charging Cable,1,11.95,2019-12-14 23:19:00,277 Willow St, New York City,NY,10001 +301286,Wired Headphones,1,11.99,2019-12-02 14:44:00,906 Pine St, Los Angeles,CA,90001 +301287,AAA Batteries (4-pack),1,2.99,2019-12-25 22:12:00,305 West St, Dallas,TX,75001 +301288,Wired Headphones,1,11.99,2019-12-10 12:15:00,685 Spruce St, San Francisco,CA,94016 +301289,AAA Batteries (4-pack),3,2.99,2019-12-19 09:13:00,701 South St, San Francisco,CA,94016 +301290,Wired Headphones,2,11.99,2019-12-28 11:21:00,368 11th St, Boston,MA,02215 +301291,USB-C Charging Cable,1,11.95,2019-12-14 11:08:00,101 West St, San Francisco,CA,94016 +301292,27in 4K Gaming Monitor,1,389.99,2019-12-24 18:02:00,877 River St, Los Angeles,CA,90001 +301293,Macbook Pro Laptop,1,1700.0,2019-12-06 12:28:00,275 Lakeview St, Boston,MA,02215 +301293,Lightning Charging Cable,1,14.95,2019-12-06 12:28:00,275 Lakeview St, Boston,MA,02215 +301294,AAA Batteries (4-pack),1,2.99,2019-12-29 21:14:00,32 Maple St, Portland,OR,97035 +301295,AAA Batteries (4-pack),3,2.99,2019-12-12 11:33:00,802 Forest St, Atlanta,GA,30301 +301296,Lightning Charging Cable,2,14.95,2019-12-13 18:16:00,4 9th St, New York City,NY,10001 +301297,USB-C Charging Cable,2,11.95,2019-12-22 12:45:00,119 Park St, San Francisco,CA,94016 +301298,USB-C Charging Cable,1,11.95,2019-12-22 20:34:00,941 Jackson St, San Francisco,CA,94016 +301299,34in Ultrawide Monitor,1,379.99,2019-12-10 15:27:00,87 Elm St, Los Angeles,CA,90001 +301300,27in 4K Gaming Monitor,1,389.99,2019-12-20 15:35:00,760 11th St, New York City,NY,10001 +301301,AA Batteries (4-pack),1,3.84,2019-12-13 10:42:00,600 2nd St, Los Angeles,CA,90001 +301302,ThinkPad Laptop,1,999.99,2019-12-21 12:32:00,140 Madison St, Los Angeles,CA,90001 +301303,USB-C Charging Cable,1,11.95,2019-12-07 16:54:00,135 Wilson St, New York City,NY,10001 +301304,Wired Headphones,1,11.99,2019-12-10 13:27:00,558 Jefferson St, San Francisco,CA,94016 +301305,ThinkPad Laptop,1,999.99,2019-12-24 21:06:00,463 6th St, Dallas,TX,75001 +301306,AA Batteries (4-pack),2,3.84,2019-12-27 04:25:00,19 Highland St, Austin,TX,73301 +301307,AA Batteries (4-pack),3,3.84,2019-12-14 16:35:00,450 8th St, New York City,NY,10001 +301308,Lightning Charging Cable,1,14.95,2019-12-21 18:43:00,257 4th St, Boston,MA,02215 +301309,AA Batteries (4-pack),1,3.84,2019-12-22 09:50:00,367 11th St, San Francisco,CA,94016 +301310,AAA Batteries (4-pack),1,2.99,2019-12-27 14:47:00,834 Church St, San Francisco,CA,94016 +301311,Apple Airpods Headphones,1,150.0,2019-12-02 13:28:00,250 Sunset St, San Francisco,CA,94016 +301312,AAA Batteries (4-pack),1,2.99,2019-12-17 11:16:00,952 West St, Austin,TX,73301 +301313,iPhone,1,700.0,2019-12-11 19:04:00,6 Forest St, Portland,OR,97035 +301314,27in FHD Monitor,1,149.99,2019-12-03 22:08:00,785 8th St, New York City,NY,10001 +301315,iPhone,1,700.0,2019-12-30 21:00:00,633 Dogwood St, Los Angeles,CA,90001 +301316,AA Batteries (4-pack),1,3.84,2019-12-29 03:49:00,155 Ridge St, San Francisco,CA,94016 +301317,Bose SoundSport Headphones,1,99.99,2019-12-19 19:32:00,851 Chestnut St, Seattle,WA,98101 +301318,AA Batteries (4-pack),2,3.84,2019-12-27 00:27:00,816 9th St, Atlanta,GA,30301 +301319,AAA Batteries (4-pack),1,2.99,2019-12-14 10:23:00,786 Park St, New York City,NY,10001 +301320,AA Batteries (4-pack),3,3.84,2019-12-28 21:10:00,327 7th St, Los Angeles,CA,90001 +301321,Apple Airpods Headphones,1,150.0,2019-12-06 00:54:00,320 Highland St, New York City,NY,10001 +301322,Bose SoundSport Headphones,1,99.99,2019-12-19 22:24:00,226 Church St, Los Angeles,CA,90001 +301323,Apple Airpods Headphones,1,150.0,2019-12-17 20:41:00,287 1st St, San Francisco,CA,94016 +301324,Bose SoundSport Headphones,1,99.99,2019-12-04 15:06:00,92 South St, Los Angeles,CA,90001 +301325,AA Batteries (4-pack),1,3.84,2019-12-20 11:57:00,712 North St, San Francisco,CA,94016 +301326,Lightning Charging Cable,1,14.95,2019-12-19 22:54:00,788 10th St, Dallas,TX,75001 +301327,Wired Headphones,1,11.99,2019-12-27 16:06:00,739 Spruce St, San Francisco,CA,94016 +301328,Apple Airpods Headphones,1,150.0,2019-12-28 13:20:00,210 8th St, San Francisco,CA,94016 +301329,27in 4K Gaming Monitor,1,389.99,2019-12-10 19:24:00,313 Adams St, New York City,NY,10001 +301330,Bose SoundSport Headphones,1,99.99,2019-12-02 06:29:00,344 Hill St, San Francisco,CA,94016 +301331,Wired Headphones,1,11.99,2019-12-04 13:42:00,380 Lakeview St, San Francisco,CA,94016 +301332,Wired Headphones,1,11.99,2019-12-28 20:55:00,16 1st St, Dallas,TX,75001 +301333,Lightning Charging Cable,1,14.95,2019-12-09 14:38:00,922 Willow St, San Francisco,CA,94016 +301334,AA Batteries (4-pack),1,3.84,2019-12-03 09:53:00,636 Chestnut St, New York City,NY,10001 +301334,USB-C Charging Cable,1,11.95,2019-12-03 09:53:00,636 Chestnut St, New York City,NY,10001 +301335,Apple Airpods Headphones,1,150.0,2019-12-12 22:21:00,624 5th St, Austin,TX,73301 +301336,Vareebadd Phone,1,400.0,2019-12-18 02:05:00,176 Center St, Los Angeles,CA,90001 +301336,USB-C Charging Cable,1,11.95,2019-12-18 02:05:00,176 Center St, Los Angeles,CA,90001 +301337,iPhone,1,700.0,2019-12-29 00:47:00,12 6th St, Boston,MA,02215 +301338,Lightning Charging Cable,1,14.95,2019-12-17 13:44:00,701 Sunset St, San Francisco,CA,94016 +301339,Vareebadd Phone,1,400.0,2019-12-11 21:00:00,528 2nd St, San Francisco,CA,94016 +301340,Vareebadd Phone,1,400.0,2019-12-16 15:17:00,299 1st St, Boston,MA,02215 +301341,Bose SoundSport Headphones,1,99.99,2019-12-10 20:12:00,976 7th St, Austin,TX,73301 +301342,USB-C Charging Cable,1,11.95,2019-12-09 21:00:00,668 5th St, Atlanta,GA,30301 +301343,Bose SoundSport Headphones,1,99.99,2019-12-27 09:54:00,418 10th St, San Francisco,CA,94016 +301344,AA Batteries (4-pack),1,3.84,2019-12-18 21:41:00,582 8th St, Boston,MA,02215 +301345,AA Batteries (4-pack),1,3.84,2019-12-24 08:20:00,34 7th St, Portland,OR,97035 +301346,Lightning Charging Cable,1,14.95,2019-12-01 23:14:00,796 Chestnut St, San Francisco,CA,94016 +301347,Lightning Charging Cable,2,14.95,2019-12-21 22:05:00,503 9th St, Los Angeles,CA,90001 +301347,Apple Airpods Headphones,1,150.0,2019-12-21 22:05:00,503 9th St, Los Angeles,CA,90001 +301348,Bose SoundSport Headphones,1,99.99,2019-12-18 11:36:00,562 Sunset St, Los Angeles,CA,90001 +301349,Wired Headphones,1,11.99,2019-12-14 14:14:00,13 10th St, San Francisco,CA,94016 +301350,Vareebadd Phone,1,400.0,2019-12-31 09:40:00,241 West St, Seattle,WA,98101 +301351,Lightning Charging Cable,1,14.95,2019-12-18 12:02:00,764 10th St, Boston,MA,02215 +301352,Wired Headphones,1,11.99,2019-12-05 14:00:00,124 Sunset St, San Francisco,CA,94016 +301353,AAA Batteries (4-pack),1,2.99,2019-12-03 22:48:00,161 Meadow St, Portland,OR,97035 +301354,AAA Batteries (4-pack),1,2.99,2019-12-03 22:59:00,238 Highland St, Atlanta,GA,30301 +301355,Vareebadd Phone,1,400.0,2019-12-23 17:13:00,801 Washington St, Atlanta,GA,30301 +301356,AA Batteries (4-pack),1,3.84,2019-12-02 03:49:00,964 Dogwood St, Austin,TX,73301 +301357,ThinkPad Laptop,1,999.99,2019-12-17 17:30:00,578 Cedar St, Boston,MA,02215 +301358,Wired Headphones,1,11.99,2019-12-18 16:53:00,208 12th St, Los Angeles,CA,90001 +301359,AAA Batteries (4-pack),2,2.99,2019-12-08 19:37:00,321 5th St, Seattle,WA,98101 +301360,Apple Airpods Headphones,1,150.0,2019-12-11 13:21:00,725 5th St, Los Angeles,CA,90001 +301361,Wired Headphones,1,11.99,2019-12-04 15:05:00,357 13th St, Dallas,TX,75001 +301362,AA Batteries (4-pack),1,3.84,2019-12-03 09:04:00,394 13th St, Dallas,TX,75001 +301363,AA Batteries (4-pack),1,3.84,2019-12-20 20:06:00,296 Lake St, Austin,TX,73301 +301364,Wired Headphones,1,11.99,2019-12-10 09:55:00,186 Chestnut St, Dallas,TX,75001 +301365,Apple Airpods Headphones,1,150.0,2019-12-27 07:45:00,855 Hill St, New York City,NY,10001 +301366,Wired Headphones,1,11.99,2019-12-09 02:01:00,967 Hill St, Dallas,TX,75001 +301367,USB-C Charging Cable,1,11.95,2019-12-07 18:56:00,727 South St, San Francisco,CA,94016 +301368,Lightning Charging Cable,1,14.95,2019-12-27 14:15:00,22 River St, Los Angeles,CA,90001 +301369,AAA Batteries (4-pack),2,2.99,2019-12-09 21:14:00,444 14th St, Portland,OR,97035 +301370,AAA Batteries (4-pack),1,2.99,2019-12-04 23:14:00,935 Lake St, Boston,MA,02215 +301371,Wired Headphones,1,11.99,2019-12-16 23:24:00,999 Elm St, San Francisco,CA,94016 +301372,iPhone,1,700.0,2019-12-31 13:41:00,41 Highland St, San Francisco,CA,94016 +301373,AA Batteries (4-pack),1,3.84,2019-12-17 00:10:00,838 14th St, San Francisco,CA,94016 +301374,Bose SoundSport Headphones,1,99.99,2019-12-26 18:24:00,179 4th St, San Francisco,CA,94016 +301375,AA Batteries (4-pack),1,3.84,2019-12-10 20:38:00,184 Chestnut St, Atlanta,GA,30301 +301376,Apple Airpods Headphones,1,150.0,2019-12-22 16:58:00,953 Walnut St, Los Angeles,CA,90001 +301377,AA Batteries (4-pack),1,3.84,2019-12-04 09:16:00,303 Pine St, Seattle,WA,98101 +301378,Lightning Charging Cable,1,14.95,2019-12-21 12:00:00,32 Main St, Atlanta,GA,30301 +301379,ThinkPad Laptop,1,999.99,2019-12-08 23:50:00,595 8th St, New York City,NY,10001 +301380,Flatscreen TV,1,300.0,2019-12-11 10:35:00,19 Dogwood St, Boston,MA,02215 +301381,Flatscreen TV,1,300.0,2019-12-27 12:18:00,317 6th St, New York City,NY,10001 +301382,Google Phone,1,600.0,2019-12-18 12:09:00,925 Park St, San Francisco,CA,94016 +301382,USB-C Charging Cable,1,11.95,2019-12-18 12:09:00,925 Park St, San Francisco,CA,94016 +301382,Bose SoundSport Headphones,1,99.99,2019-12-18 12:09:00,925 Park St, San Francisco,CA,94016 +301383,Bose SoundSport Headphones,1,99.99,2019-12-20 21:20:00,883 Main St, Atlanta,GA,30301 +301384,AAA Batteries (4-pack),2,2.99,2019-12-31 15:51:00,98 6th St, Atlanta,GA,30301 +301385,20in Monitor,1,109.99,2019-12-27 19:52:00,973 Johnson St, Boston,MA,02215 +301386,USB-C Charging Cable,1,11.95,2019-12-12 22:55:00,870 Jefferson St, Dallas,TX,75001 +301387,AA Batteries (4-pack),2,3.84,2019-12-28 09:56:00,660 Jefferson St, Los Angeles,CA,90001 +301388,27in FHD Monitor,1,149.99,2019-12-18 20:40:00,562 Wilson St, Boston,MA,02215 +301389,27in FHD Monitor,1,149.99,2019-12-28 10:25:00,133 Ridge St, Portland,ME,04101 +301390,Wired Headphones,1,11.99,2019-12-12 20:56:00,474 Lake St, Atlanta,GA,30301 +301391,27in 4K Gaming Monitor,1,389.99,2019-12-12 18:48:00,563 Hill St, Seattle,WA,98101 +301392,AAA Batteries (4-pack),1,2.99,2019-12-28 18:59:00,282 14th St, San Francisco,CA,94016 +301393,AA Batteries (4-pack),2,3.84,2019-12-24 15:08:00,185 6th St, Seattle,WA,98101 +301394,AA Batteries (4-pack),1,3.84,2019-12-10 15:02:00,258 13th St, New York City,NY,10001 +301395,LG Dryer,1,600.0,2019-12-12 11:13:00,310 Cherry St, Boston,MA,02215 +301396,Vareebadd Phone,1,400.0,2019-12-06 20:57:00,55 Cedar St, San Francisco,CA,94016 +301397,LG Washing Machine,1,600.0,2019-12-30 13:57:00,369 Ridge St, Boston,MA,02215 +301398,AA Batteries (4-pack),1,3.84,2019-12-04 14:59:00,405 Lake St, Boston,MA,02215 +301399,Bose SoundSport Headphones,1,99.99,2019-12-10 16:39:00,938 Washington St, Atlanta,GA,30301 +301400,ThinkPad Laptop,1,999.99,2019-12-05 19:57:00,827 Chestnut St, Los Angeles,CA,90001 +301401,Lightning Charging Cable,1,14.95,2019-12-27 06:40:00,50 North St, Los Angeles,CA,90001 +301402,Apple Airpods Headphones,1,150.0,2019-12-20 13:17:00,383 Sunset St, Los Angeles,CA,90001 +301403,AA Batteries (4-pack),2,3.84,2019-12-25 08:22:00,925 Lincoln St, New York City,NY,10001 +301404,20in Monitor,1,109.99,2019-12-30 19:53:00,533 Cherry St, Austin,TX,73301 +301405,Bose SoundSport Headphones,1,99.99,2019-12-22 06:11:00,720 Lincoln St, New York City,NY,10001 +301406,AA Batteries (4-pack),1,3.84,2019-12-24 13:23:00,685 Cherry St, Dallas,TX,75001 +301407,Apple Airpods Headphones,1,150.0,2019-12-13 14:10:00,723 Walnut St, New York City,NY,10001 +301408,Macbook Pro Laptop,1,1700.0,2019-12-19 00:07:00,131 Jefferson St, San Francisco,CA,94016 +301409,34in Ultrawide Monitor,1,379.99,2019-12-17 19:39:00,64 South St, Dallas,TX,75001 +301410,USB-C Charging Cable,1,11.95,2019-12-07 10:08:00,418 Sunset St, New York City,NY,10001 +301411,27in 4K Gaming Monitor,1,389.99,2019-12-12 14:50:00,114 Lake St, Boston,MA,02215 +301412,AAA Batteries (4-pack),1,2.99,2019-12-13 17:31:00,877 North St, New York City,NY,10001 +301413,Lightning Charging Cable,1,14.95,2019-12-03 17:51:00,507 12th St, San Francisco,CA,94016 +301414,Lightning Charging Cable,1,14.95,2019-12-01 11:45:00,702 Ridge St, Seattle,WA,98101 +301415,Lightning Charging Cable,1,14.95,2019-12-24 16:37:00,376 Elm St, Austin,TX,73301 +301416,AAA Batteries (4-pack),1,2.99,2019-12-18 11:16:00,242 6th St, Los Angeles,CA,90001 +301417,34in Ultrawide Monitor,1,379.99,2019-12-20 11:27:00,437 Main St, Atlanta,GA,30301 +301418,AA Batteries (4-pack),1,3.84,2019-12-06 22:51:00,876 Johnson St, Seattle,WA,98101 +301419,Wired Headphones,1,11.99,2019-12-24 15:38:00,49 Highland St, San Francisco,CA,94016 +301420,Lightning Charging Cable,1,14.95,2019-12-17 18:47:00,695 Main St, New York City,NY,10001 +301421,LG Dryer,1,600.0,2019-12-18 18:32:00,662 Park St, Los Angeles,CA,90001 +301422,20in Monitor,1,109.99,2019-12-11 11:34:00,284 Pine St, Seattle,WA,98101 +301423,Bose SoundSport Headphones,1,99.99,2019-12-05 16:48:00,370 Lincoln St, Los Angeles,CA,90001 +301424,iPhone,1,700.0,2019-12-19 23:02:00,230 South St, Los Angeles,CA,90001 +301425,iPhone,1,700.0,2019-12-17 19:07:00,731 2nd St, Boston,MA,02215 +301425,Lightning Charging Cable,1,14.95,2019-12-17 19:07:00,731 2nd St, Boston,MA,02215 +301426,AAA Batteries (4-pack),3,2.99,2019-12-19 08:02:00,693 Washington St, San Francisco,CA,94016 +301427,27in FHD Monitor,1,149.99,2019-12-08 16:53:00,670 11th St, Seattle,WA,98101 +301428,USB-C Charging Cable,1,11.95,2019-12-22 20:45:00,164 Willow St, New York City,NY,10001 +301429,AAA Batteries (4-pack),1,2.99,2019-12-06 11:13:00,688 Lincoln St, New York City,NY,10001 +301430,Lightning Charging Cable,1,14.95,2019-12-06 23:19:00,695 Park St, San Francisco,CA,94016 +301431,Apple Airpods Headphones,1,150.0,2019-12-01 16:32:00,82 Chestnut St, San Francisco,CA,94016 +301432,Lightning Charging Cable,1,14.95,2019-12-17 14:28:00,118 6th St, Atlanta,GA,30301 +301433,Apple Airpods Headphones,1,150.0,2019-12-20 11:53:00,570 Forest St, Atlanta,GA,30301 +301434,Bose SoundSport Headphones,1,99.99,2019-12-13 10:16:00,995 13th St, Los Angeles,CA,90001 +301435,AA Batteries (4-pack),2,3.84,2019-12-20 00:30:00,984 Chestnut St, New York City,NY,10001 +301436,AA Batteries (4-pack),1,3.84,2019-12-05 16:13:00,975 Cherry St, New York City,NY,10001 +301437,Lightning Charging Cable,1,14.95,2019-12-27 16:24:00,115 6th St, Los Angeles,CA,90001 +301438,iPhone,1,700.0,2019-12-13 14:51:00,851 Lake St, Los Angeles,CA,90001 +301439,USB-C Charging Cable,1,11.95,2019-12-14 23:35:00,914 10th St, San Francisco,CA,94016 +301440,Flatscreen TV,1,300.0,2019-12-21 16:31:00,296 10th St, Seattle,WA,98101 +301441,AA Batteries (4-pack),1,3.84,2019-12-16 15:37:00,946 Pine St, San Francisco,CA,94016 +301442,Wired Headphones,3,11.99,2019-12-09 13:48:00,898 Hickory St, New York City,NY,10001 +301443,AAA Batteries (4-pack),1,2.99,2019-12-18 08:04:00,491 Main St, Boston,MA,02215 +301444,Macbook Pro Laptop,1,1700.0,2019-12-22 11:28:00,742 6th St, New York City,NY,10001 +301445,27in FHD Monitor,1,149.99,2019-12-16 16:01:00,764 Pine St, Los Angeles,CA,90001 +301446,Google Phone,1,600.0,2019-12-08 22:27:00,797 Jefferson St, New York City,NY,10001 +301447,Wired Headphones,1,11.99,2019-12-18 10:08:00,762 12th St, Seattle,WA,98101 +301448,Lightning Charging Cable,1,14.95,2019-12-15 16:50:00,266 Sunset St, Portland,OR,97035 +301449,Lightning Charging Cable,1,14.95,2019-12-17 23:19:00,637 West St, Austin,TX,73301 +301450,Apple Airpods Headphones,1,150.0,2019-12-23 19:39:00,804 Church St, New York City,NY,10001 +301451,Bose SoundSport Headphones,1,99.99,2019-12-09 22:07:00,24 13th St, Austin,TX,73301 +301452,USB-C Charging Cable,1,11.95,2019-12-18 12:29:00,746 Washington St, Atlanta,GA,30301 +301453,Wired Headphones,2,11.99,2019-12-16 11:05:00,764 1st St, San Francisco,CA,94016 +301454,Flatscreen TV,1,300.0,2019-12-12 09:22:00,708 Cherry St, New York City,NY,10001 +301455,AAA Batteries (4-pack),1,2.99,2019-12-12 23:51:00,417 Dogwood St, Portland,ME,04101 +301456,Lightning Charging Cable,2,14.95,2019-12-17 12:44:00,749 14th St, Atlanta,GA,30301 +301457,Apple Airpods Headphones,1,150.0,2019-12-13 22:59:00,379 Lakeview St, Los Angeles,CA,90001 +301458,Apple Airpods Headphones,1,150.0,2019-12-10 01:27:00,680 Hill St, Boston,MA,02215 +301459,Wired Headphones,1,11.99,2019-12-31 20:11:00,429 Willow St, Austin,TX,73301 +301460,Apple Airpods Headphones,1,150.0,2019-12-25 19:15:00,294 6th St, Atlanta,GA,30301 +301461,USB-C Charging Cable,1,11.95,2019-12-20 20:26:00,184 Jackson St, New York City,NY,10001 +301462,Macbook Pro Laptop,1,1700.0,2019-12-28 18:36:00,208 Adams St, San Francisco,CA,94016 +301463,AA Batteries (4-pack),5,3.84,2019-12-28 13:02:00,792 Jefferson St, San Francisco,CA,94016 +301464,Lightning Charging Cable,1,14.95,2019-12-17 13:06:00,478 Chestnut St, Boston,MA,02215 +301465,AAA Batteries (4-pack),1,2.99,2019-12-15 21:07:00,902 Spruce St, San Francisco,CA,94016 +301466,27in FHD Monitor,1,149.99,2019-12-25 17:26:00,753 Lincoln St, San Francisco,CA,94016 +301467,Wired Headphones,1,11.99,2019-12-01 20:41:00,7 Center St, San Francisco,CA,94016 +301468,Apple Airpods Headphones,1,150.0,2019-12-02 23:53:00,605 8th St, San Francisco,CA,94016 +301469,AAA Batteries (4-pack),1,2.99,2019-12-31 08:19:00,879 Park St, Boston,MA,02215 +301470,AAA Batteries (4-pack),2,2.99,2019-12-12 21:41:00,661 Elm St, Los Angeles,CA,90001 +301471,AA Batteries (4-pack),1,3.84,2019-12-04 13:54:00,369 9th St, Austin,TX,73301 +301472,USB-C Charging Cable,1,11.95,2019-12-15 18:13:00,758 North St, San Francisco,CA,94016 +301473,Apple Airpods Headphones,1,150.0,2019-12-13 09:18:00,3 11th St, New York City,NY,10001 +301474,iPhone,1,700.0,2019-12-30 07:19:00,594 Spruce St, Dallas,TX,75001 +301475,USB-C Charging Cable,1,11.95,2019-12-11 21:08:00,488 13th St, San Francisco,CA,94016 +301476,Bose SoundSport Headphones,1,99.99,2019-12-06 23:10:00,611 10th St, New York City,NY,10001 +301477,27in 4K Gaming Monitor,1,389.99,2019-12-28 16:54:00,348 Johnson St, Los Angeles,CA,90001 +301478,USB-C Charging Cable,2,11.95,2019-12-02 21:19:00,523 Washington St, Portland,ME,04101 +301479,AAA Batteries (4-pack),1,2.99,2019-12-10 16:23:00,776 Spruce St, Los Angeles,CA,90001 +301480,AAA Batteries (4-pack),3,2.99,2019-12-17 14:01:00,38 Walnut St, Dallas,TX,75001 +301481,AA Batteries (4-pack),1,3.84,2019-12-23 04:54:00,941 Lincoln St, San Francisco,CA,94016 +301482,Wired Headphones,1,11.99,2019-12-10 20:47:00,68 Chestnut St, Seattle,WA,98101 +301483,34in Ultrawide Monitor,1,379.99,2019-12-04 23:25:00,974 Jefferson St, San Francisco,CA,94016 +301484,Bose SoundSport Headphones,1,99.99,2019-12-27 18:44:00,285 Chestnut St, San Francisco,CA,94016 +301485,Lightning Charging Cable,1,14.95,2019-12-06 12:52:00,106 10th St, Austin,TX,73301 +301486,Lightning Charging Cable,1,14.95,2019-12-09 20:07:00,175 2nd St, Los Angeles,CA,90001 +301487,27in FHD Monitor,1,149.99,2019-12-13 10:51:00,363 4th St, Seattle,WA,98101 +301488,Lightning Charging Cable,1,14.95,2019-12-29 16:12:00,747 Hickory St, New York City,NY,10001 +301489,USB-C Charging Cable,1,11.95,2019-12-11 20:26:00,729 Chestnut St, Atlanta,GA,30301 +301490,Wired Headphones,2,11.99,2019-12-26 17:32:00,622 5th St, Seattle,WA,98101 +301491,Bose SoundSport Headphones,1,99.99,2019-12-12 10:12:00,124 Main St, Atlanta,GA,30301 +301492,Google Phone,1,600.0,2019-12-22 21:58:00,568 Adams St, San Francisco,CA,94016 +301493,AA Batteries (4-pack),1,3.84,2019-12-01 19:34:00,707 Forest St, Dallas,TX,75001 +301494,Lightning Charging Cable,1,14.95,2019-12-28 15:22:00,59 4th St, New York City,NY,10001 +301495,Lightning Charging Cable,1,14.95,2019-12-30 11:27:00,658 Cedar St, San Francisco,CA,94016 +301496,AAA Batteries (4-pack),1,2.99,2019-12-28 17:54:00,740 Main St, San Francisco,CA,94016 +301497,AA Batteries (4-pack),1,3.84,2019-12-21 11:08:00,461 7th St, San Francisco,CA,94016 +301498,Wired Headphones,1,11.99,2019-12-03 14:49:00,181 Sunset St, Dallas,TX,75001 +301499,Bose SoundSport Headphones,1,99.99,2019-12-31 16:00:00,934 Lincoln St, San Francisco,CA,94016 +301500,Flatscreen TV,1,300.0,2019-12-05 23:23:00,685 Walnut St, Los Angeles,CA,90001 +301501,USB-C Charging Cable,1,11.95,2019-12-14 18:46:00,687 Meadow St, San Francisco,CA,94016 +301502,Lightning Charging Cable,1,14.95,2019-12-22 19:58:00,906 5th St, New York City,NY,10001 +301503,Google Phone,1,600.0,2019-12-15 15:54:00,105 North St, Dallas,TX,75001 +301503,USB-C Charging Cable,1,11.95,2019-12-15 15:54:00,105 North St, Dallas,TX,75001 +301504,Wired Headphones,1,11.99,2019-12-14 16:53:00,985 Chestnut St, San Francisco,CA,94016 +301505,Wired Headphones,1,11.99,2019-12-25 13:03:00,472 Maple St, San Francisco,CA,94016 +301506,Flatscreen TV,1,300.0,2019-12-31 12:10:00,888 7th St, San Francisco,CA,94016 +301507,Vareebadd Phone,1,400.0,2019-12-27 12:11:00,303 Ridge St, Los Angeles,CA,90001 +301507,USB-C Charging Cable,1,11.95,2019-12-27 12:11:00,303 Ridge St, Los Angeles,CA,90001 +301508,Apple Airpods Headphones,1,150.0,2019-12-24 21:10:00,211 1st St, Boston,MA,02215 +301509,Lightning Charging Cable,1,14.95,2019-12-28 21:56:00,479 2nd St, Atlanta,GA,30301 +301510,Wired Headphones,1,11.99,2019-12-09 21:36:00,20 Highland St, San Francisco,CA,94016 +301511,AAA Batteries (4-pack),2,2.99,2019-12-18 20:11:00,958 Hickory St, Seattle,WA,98101 +301512,34in Ultrawide Monitor,1,379.99,2019-12-11 23:14:00,134 Center St, Dallas,TX,75001 +301513,20in Monitor,1,109.99,2019-12-23 22:19:00,903 Church St, Los Angeles,CA,90001 +301514,USB-C Charging Cable,1,11.95,2019-12-06 21:31:00,578 7th St, San Francisco,CA,94016 +301515,USB-C Charging Cable,1,11.95,2019-12-08 13:33:00,568 Walnut St, Los Angeles,CA,90001 +301516,Apple Airpods Headphones,1,150.0,2019-12-25 20:20:00,359 4th St, Los Angeles,CA,90001 +301517,AA Batteries (4-pack),1,3.84,2019-12-28 00:13:00,387 Hill St, San Francisco,CA,94016 +301518,AAA Batteries (4-pack),1,2.99,2019-12-26 17:12:00,160 Jackson St, Boston,MA,02215 +301519,27in FHD Monitor,1,149.99,2019-12-27 10:09:00,675 5th St, Seattle,WA,98101 +301520,USB-C Charging Cable,1,11.95,2019-12-23 16:26:00,122 Spruce St, New York City,NY,10001 +301521,27in FHD Monitor,1,149.99,2019-12-12 21:34:00,392 Madison St, Portland,ME,04101 +301522,27in FHD Monitor,1,149.99,2019-12-04 12:27:00,203 Chestnut St, Atlanta,GA,30301 +301523,Wired Headphones,1,11.99,2019-12-05 12:32:00,516 13th St, San Francisco,CA,94016 +301524,AAA Batteries (4-pack),1,2.99,2019-12-25 12:49:00,236 Dogwood St, Dallas,TX,75001 +301525,Lightning Charging Cable,1,14.95,2019-12-11 17:34:00,910 Meadow St, New York City,NY,10001 +301526,Apple Airpods Headphones,1,150.0,2019-12-08 01:01:00,689 Jackson St, Seattle,WA,98101 +301527,AAA Batteries (4-pack),3,2.99,2019-12-19 15:29:00,924 Forest St, San Francisco,CA,94016 +301528,Flatscreen TV,1,300.0,2019-12-08 21:55:00,587 Meadow St, Atlanta,GA,30301 +301529,Wired Headphones,2,11.99,2019-12-07 15:26:00,767 14th St, Atlanta,GA,30301 +301530,Apple Airpods Headphones,1,150.0,2019-12-25 18:28:00,9 Jackson St, Boston,MA,02215 +301531,Apple Airpods Headphones,1,150.0,2019-12-18 18:16:00,502 Hill St, San Francisco,CA,94016 +301532,Wired Headphones,1,11.99,2019-12-31 18:46:00,800 10th St, San Francisco,CA,94016 +301533,27in FHD Monitor,1,149.99,2019-12-15 17:13:00,80 Cherry St, Boston,MA,02215 +301534,Apple Airpods Headphones,1,150.0,2019-12-09 23:56:00,609 12th St, Los Angeles,CA,90001 +301535,27in 4K Gaming Monitor,1,389.99,2019-12-02 04:20:00,334 Hickory St, New York City,NY,10001 +301536,AA Batteries (4-pack),1,3.84,2019-12-07 20:28:00,37 Willow St, Boston,MA,02215 +301537,Lightning Charging Cable,1,14.95,2019-12-23 19:11:00,737 Elm St, New York City,NY,10001 +301538,Apple Airpods Headphones,1,150.0,2019-12-13 05:09:00,374 Wilson St, New York City,NY,10001 +301539,USB-C Charging Cable,1,11.95,2019-12-24 12:23:00,852 Dogwood St, Portland,OR,97035 +301540,Flatscreen TV,1,300.0,2019-12-28 12:55:00,261 Johnson St, Austin,TX,73301 +301541,AAA Batteries (4-pack),1,2.99,2019-12-23 18:21:00,105 Lakeview St, Boston,MA,02215 +301542,Wired Headphones,1,11.99,2019-12-01 19:54:00,172 7th St, Dallas,TX,75001 +301543,Lightning Charging Cable,2,14.95,2019-12-28 11:27:00,854 10th St, San Francisco,CA,94016 +301544,AAA Batteries (4-pack),3,2.99,2019-12-26 19:21:00,679 Center St, Boston,MA,02215 +301545,34in Ultrawide Monitor,1,379.99,2019-12-18 15:01:00,652 Pine St, Austin,TX,73301 +301546,27in FHD Monitor,1,149.99,2019-12-25 19:25:00,786 Maple St, San Francisco,CA,94016 +301547,LG Dryer,1,600.0,2019-12-23 23:37:00,753 Forest St, New York City,NY,10001 +301548,AAA Batteries (4-pack),1,2.99,2019-12-25 15:23:00,316 West St, Austin,TX,73301 +301549,Lightning Charging Cable,1,14.95,2019-12-18 14:46:00,129 Walnut St, Austin,TX,73301 +301550,Wired Headphones,1,11.99,2019-12-01 12:03:00,125 12th St, Atlanta,GA,30301 +301551,AAA Batteries (4-pack),1,2.99,2019-12-29 00:40:00,351 Lakeview St, Los Angeles,CA,90001 +301552,Bose SoundSport Headphones,1,99.99,2019-12-18 10:22:00,528 River St, Los Angeles,CA,90001 +301553,Lightning Charging Cable,1,14.95,2019-12-02 10:57:00,219 Elm St, Dallas,TX,75001 +301554,AA Batteries (4-pack),1,3.84,2019-12-10 18:57:00,545 Elm St, Dallas,TX,75001 +301555,Apple Airpods Headphones,1,150.0,2019-12-23 18:09:00,860 Cedar St, San Francisco,CA,94016 +301556,Wired Headphones,2,11.99,2019-12-16 12:49:00,780 Dogwood St, Los Angeles,CA,90001 +301557,20in Monitor,1,109.99,2019-12-30 21:56:00,637 Hickory St, Los Angeles,CA,90001 +301558,AAA Batteries (4-pack),2,2.99,2019-12-31 11:08:00,750 Adams St, Dallas,TX,75001 +301559,AAA Batteries (4-pack),2,2.99,2019-12-23 11:54:00,97 Spruce St, Seattle,WA,98101 +301560,Wired Headphones,1,11.99,2019-12-10 04:16:00,123 Hill St, Los Angeles,CA,90001 +301561,Lightning Charging Cable,1,14.95,2019-12-13 21:21:00,815 Jefferson St, Boston,MA,02215 +301562,27in 4K Gaming Monitor,1,389.99,2019-12-28 07:41:00,343 Sunset St, Seattle,WA,98101 +301563,27in 4K Gaming Monitor,1,389.99,2019-12-27 17:39:00,859 5th St, New York City,NY,10001 +301564,AAA Batteries (4-pack),1,2.99,2019-12-08 14:00:00,405 Johnson St, Dallas,TX,75001 +301565,AAA Batteries (4-pack),1,2.99,2019-12-10 19:09:00,998 Walnut St, Dallas,TX,75001 +301566,27in 4K Gaming Monitor,1,389.99,2019-12-09 09:37:00,449 12th St, Dallas,TX,75001 +301567,Bose SoundSport Headphones,1,99.99,2019-12-21 19:25:00,719 5th St, Los Angeles,CA,90001 +301568,AA Batteries (4-pack),3,3.84,2019-12-01 13:48:00,978 1st St, Boston,MA,02215 +301569,USB-C Charging Cable,1,11.95,2019-12-24 02:00:00,354 Pine St, San Francisco,CA,94016 +301570,Wired Headphones,1,11.99,2019-12-23 17:29:00,204 11th St, New York City,NY,10001 +301571,AA Batteries (4-pack),1,3.84,2019-12-24 20:53:00,750 12th St, New York City,NY,10001 +301572,Lightning Charging Cable,1,14.95,2019-12-04 14:28:00,93 Forest St, Los Angeles,CA,90001 +301573,34in Ultrawide Monitor,1,379.99,2019-12-13 12:23:00,709 Elm St, Boston,MA,02215 +301574,AAA Batteries (4-pack),1,2.99,2019-12-10 13:57:00,26 6th St, New York City,NY,10001 +301575,Lightning Charging Cable,1,14.95,2019-12-10 16:53:00,359 Pine St, Los Angeles,CA,90001 +301576,USB-C Charging Cable,1,11.95,2019-12-30 18:24:00,810 Sunset St, Boston,MA,02215 +301577,USB-C Charging Cable,1,11.95,2019-12-29 16:12:00,197 Highland St, Seattle,WA,98101 +301578,AAA Batteries (4-pack),1,2.99,2019-12-02 20:40:00,139 Lake St, Portland,OR,97035 +301579,AA Batteries (4-pack),1,3.84,2019-12-21 12:33:00,260 1st St, Dallas,TX,75001 +301580,Wired Headphones,1,11.99,2019-12-23 14:42:00,788 Church St, Dallas,TX,75001 +301581,34in Ultrawide Monitor,1,379.99,2019-12-07 20:54:00,992 Meadow St, Boston,MA,02215 +301582,Lightning Charging Cable,1,14.95,2019-12-11 07:47:00,370 Madison St, Seattle,WA,98101 +301583,AAA Batteries (4-pack),1,2.99,2019-12-24 21:05:00,373 1st St, San Francisco,CA,94016 +301584,AAA Batteries (4-pack),1,2.99,2019-12-01 15:14:00,994 Sunset St, Portland,ME,04101 +301585,AA Batteries (4-pack),1,3.84,2019-12-31 11:00:00,676 Lincoln St, Los Angeles,CA,90001 +301586,Lightning Charging Cable,1,14.95,2019-12-23 19:13:00,144 7th St, Los Angeles,CA,90001 +301587,AA Batteries (4-pack),1,3.84,2019-12-30 11:26:00,283 Lincoln St, Los Angeles,CA,90001 +301588,Wired Headphones,1,11.99,2019-12-16 08:57:00,868 Maple St, Seattle,WA,98101 +301589,Apple Airpods Headphones,1,150.0,2019-12-18 13:43:00,245 5th St, New York City,NY,10001 +301590,Lightning Charging Cable,2,14.95,2019-12-10 21:26:00,350 Madison St, San Francisco,CA,94016 +301591,Flatscreen TV,1,300.0,2019-12-26 17:50:00,490 River St, Los Angeles,CA,90001 +301592,AA Batteries (4-pack),1,3.84,2019-12-01 12:06:00,812 Madison St, Atlanta,GA,30301 +301593,AA Batteries (4-pack),3,3.84,2019-12-19 11:24:00,602 Sunset St, San Francisco,CA,94016 +301594,Bose SoundSport Headphones,1,99.99,2019-12-18 21:18:00,540 Church St, San Francisco,CA,94016 +301595,iPhone,1,700.0,2019-12-22 13:24:00,609 12th St, San Francisco,CA,94016 +301596,Bose SoundSport Headphones,1,99.99,2019-12-02 19:08:00,937 12th St, Atlanta,GA,30301 +301597,USB-C Charging Cable,2,11.95,2019-12-01 09:04:00,24 Sunset St, New York City,NY,10001 +301598,AAA Batteries (4-pack),1,2.99,2019-12-12 01:04:00,264 Adams St, Portland,OR,97035 +301599,Lightning Charging Cable,1,14.95,2019-12-24 19:54:00,225 Hill St, Atlanta,GA,30301 +301600,USB-C Charging Cable,1,11.95,2019-12-21 14:00:00,835 Hickory St, New York City,NY,10001 +301601,34in Ultrawide Monitor,1,379.99,2019-12-11 17:02:00,532 Washington St, Atlanta,GA,30301 +301602,Bose SoundSport Headphones,1,99.99,2019-12-28 13:25:00,785 13th St, New York City,NY,10001 +301603,USB-C Charging Cable,1,11.95,2019-12-29 22:01:00,349 4th St, New York City,NY,10001 +301604,AAA Batteries (4-pack),1,2.99,2019-12-28 14:39:00,13 5th St, New York City,NY,10001 +301605,AAA Batteries (4-pack),1,2.99,2019-12-21 14:01:00,825 10th St, Los Angeles,CA,90001 +301606,USB-C Charging Cable,2,11.95,2019-12-30 19:04:00,136 10th St, New York City,NY,10001 +301607,AA Batteries (4-pack),1,3.84,2019-12-27 19:56:00,797 Spruce St, Seattle,WA,98101 +301608,AAA Batteries (4-pack),1,2.99,2019-12-07 09:23:00,337 Hill St, Los Angeles,CA,90001 +301609,Lightning Charging Cable,1,14.95,2019-12-07 21:54:00,769 Center St, San Francisco,CA,94016 +301610,Lightning Charging Cable,1,14.95,2019-12-13 21:49:00,16 Park St, Portland,ME,04101 +301611,Wired Headphones,2,11.99,2019-12-12 10:19:00,691 Lincoln St, Seattle,WA,98101 +301611,AAA Batteries (4-pack),3,2.99,2019-12-12 10:19:00,691 Lincoln St, Seattle,WA,98101 +301612,AAA Batteries (4-pack),1,2.99,2019-12-27 12:15:00,892 Maple St, San Francisco,CA,94016 +301613,AA Batteries (4-pack),1,3.84,2019-12-12 19:00:00,228 Lincoln St, Seattle,WA,98101 +301614,Bose SoundSport Headphones,1,99.99,2019-12-20 23:07:00,527 13th St, Los Angeles,CA,90001 +301615,AAA Batteries (4-pack),1,2.99,2019-12-07 22:36:00,114 Walnut St, Los Angeles,CA,90001 +301616,AAA Batteries (4-pack),2,2.99,2019-12-19 17:28:00,826 North St, San Francisco,CA,94016 +301617,Apple Airpods Headphones,1,150.0,2019-12-13 10:25:00,32 14th St, San Francisco,CA,94016 +301618,USB-C Charging Cable,1,11.95,2019-12-16 09:24:00,475 4th St, San Francisco,CA,94016 +301619,Flatscreen TV,1,300.0,2019-12-07 07:11:00,742 7th St, New York City,NY,10001 +301620,AAA Batteries (4-pack),1,2.99,2019-12-12 18:19:00,868 Lakeview St, San Francisco,CA,94016 +301621,AAA Batteries (4-pack),2,2.99,2019-12-17 22:57:00,157 5th St, San Francisco,CA,94016 +301622,Lightning Charging Cable,1,14.95,2019-12-06 16:28:00,925 8th St, San Francisco,CA,94016 +301623,AA Batteries (4-pack),2,3.84,2019-12-31 20:05:00,939 12th St, San Francisco,CA,94016 +301624,Google Phone,1,600.0,2019-12-09 09:44:00,634 Maple St, Seattle,WA,98101 +301625,USB-C Charging Cable,1,11.95,2019-12-27 14:58:00,5 Maple St, Seattle,WA,98101 +301626,Flatscreen TV,1,300.0,2019-12-18 14:16:00,395 Center St, San Francisco,CA,94016 +301627,AA Batteries (4-pack),1,3.84,2019-12-29 20:15:00,935 Ridge St, Seattle,WA,98101 +301628,AA Batteries (4-pack),1,3.84,2019-12-24 10:16:00,179 Walnut St, San Francisco,CA,94016 +301629,ThinkPad Laptop,1,999.99,2019-12-22 14:05:00,421 Chestnut St, Dallas,TX,75001 +301630,Google Phone,1,600.0,2019-12-22 14:46:00,561 Maple St, Austin,TX,73301 +301631,Apple Airpods Headphones,1,150.0,2019-12-28 03:38:00,812 Jefferson St, San Francisco,CA,94016 +301632,Bose SoundSport Headphones,1,99.99,2019-12-18 12:47:00,977 9th St, Los Angeles,CA,90001 +301633,LG Washing Machine,1,600.0,2019-12-17 11:28:00,462 Elm St, Los Angeles,CA,90001 +301634,Apple Airpods Headphones,1,150.0,2019-12-02 08:33:00,89 Willow St, New York City,NY,10001 +301635,Macbook Pro Laptop,1,1700.0,2019-12-20 17:21:00,64 2nd St, San Francisco,CA,94016 +301636,AA Batteries (4-pack),1,3.84,2019-12-02 19:53:00,173 Main St, Dallas,TX,75001 +301637,AAA Batteries (4-pack),1,2.99,2019-12-22 20:37:00,323 Sunset St, Los Angeles,CA,90001 +301638,AAA Batteries (4-pack),1,2.99,2019-12-08 13:25:00,858 Spruce St, Los Angeles,CA,90001 +301639,AA Batteries (4-pack),1,3.84,2019-12-09 18:45:00,814 Lake St, Portland,ME,04101 +301640,Macbook Pro Laptop,1,1700.0,2019-12-22 15:17:00,476 Church St, Austin,TX,73301 +301641,Lightning Charging Cable,1,14.95,2019-12-24 18:32:00,185 Meadow St, Seattle,WA,98101 +301642,AAA Batteries (4-pack),1,2.99,2019-12-11 12:13:00,351 2nd St, Atlanta,GA,30301 +301643,USB-C Charging Cable,1,11.95,2019-12-12 06:08:00,148 West St, Atlanta,GA,30301 +301644,Wired Headphones,1,11.99,2019-12-02 23:42:00,651 Church St, Seattle,WA,98101 +301645,Bose SoundSport Headphones,1,99.99,2019-12-13 19:21:00,896 1st St, Dallas,TX,75001 +301646,Bose SoundSport Headphones,1,99.99,2019-12-16 13:33:00,739 Cherry St, Boston,MA,02215 +301647,20in Monitor,1,109.99,2019-12-05 12:21:00,455 Cherry St, San Francisco,CA,94016 +301648,Apple Airpods Headphones,1,150.0,2019-12-13 15:12:00,576 Forest St, Portland,OR,97035 +301649,Lightning Charging Cable,1,14.95,2019-12-30 10:15:00,132 6th St, Atlanta,GA,30301 +301650,Bose SoundSport Headphones,1,99.99,2019-12-19 23:07:00,959 Chestnut St, Boston,MA,02215 +301651,Wired Headphones,1,11.99,2019-12-25 17:41:00,756 12th St, Seattle,WA,98101 +301652,Wired Headphones,1,11.99,2019-12-07 14:39:00,713 11th St, San Francisco,CA,94016 +301653,USB-C Charging Cable,1,11.95,2019-12-01 18:05:00,113 Lincoln St, San Francisco,CA,94016 +301654,Google Phone,1,600.0,2019-12-29 19:24:00,199 2nd St, Seattle,WA,98101 +301655,USB-C Charging Cable,1,11.95,2019-12-19 12:43:00,986 2nd St, San Francisco,CA,94016 +301656,USB-C Charging Cable,1,11.95,2019-12-13 15:27:00,214 Maple St, Los Angeles,CA,90001 +301657,34in Ultrawide Monitor,1,379.99,2019-12-04 18:12:00,93 4th St, Los Angeles,CA,90001 +301658,AA Batteries (4-pack),1,3.84,2019-12-19 09:00:00,200 Elm St, Seattle,WA,98101 +301659,Wired Headphones,1,11.99,2019-12-04 19:30:00,166 Walnut St, Portland,ME,04101 +301660,USB-C Charging Cable,1,11.95,2019-12-17 19:46:00,201 Center St, Austin,TX,73301 +301661,USB-C Charging Cable,1,11.95,2019-12-16 12:07:00,399 1st St, Los Angeles,CA,90001 +301662,AAA Batteries (4-pack),1,2.99,2019-12-09 09:34:00,361 Hill St, New York City,NY,10001 +301663,AA Batteries (4-pack),2,3.84,2019-12-28 07:44:00,449 Wilson St, San Francisco,CA,94016 +301664,AAA Batteries (4-pack),2,2.99,2019-12-05 11:54:00,857 Elm St, Boston,MA,02215 +301665,USB-C Charging Cable,1,11.95,2019-12-12 18:22:00,239 Church St, New York City,NY,10001 +301666,27in 4K Gaming Monitor,2,389.99,2019-12-29 11:56:00,18 North St, Boston,MA,02215 +301667,34in Ultrawide Monitor,1,379.99,2019-12-23 15:45:00,790 Sunset St, San Francisco,CA,94016 +301668,Lightning Charging Cable,1,14.95,2019-12-13 15:53:00,341 11th St, Portland,OR,97035 +301669,Apple Airpods Headphones,1,150.0,2019-12-01 21:28:00,344 9th St, New York City,NY,10001 +301670,Lightning Charging Cable,1,14.95,2019-12-21 08:25:00,86 Sunset St, Los Angeles,CA,90001 +301671,iPhone,1,700.0,2019-12-04 23:33:00,868 Madison St, Austin,TX,73301 +301672,USB-C Charging Cable,1,11.95,2019-12-18 23:26:00,931 2nd St, Los Angeles,CA,90001 +301673,34in Ultrawide Monitor,1,379.99,2019-12-27 08:53:00,411 Jefferson St, Boston,MA,02215 +301674,Wired Headphones,3,11.99,2019-12-16 19:52:00,974 Maple St, Los Angeles,CA,90001 +301675,Wired Headphones,1,11.99,2019-12-02 21:29:00,213 Madison St, New York City,NY,10001 +301676,Wired Headphones,1,11.99,2019-12-02 19:03:00,240 North St, Portland,ME,04101 +301677,Bose SoundSport Headphones,1,99.99,2019-12-28 15:58:00,513 1st St, Los Angeles,CA,90001 +301678,Lightning Charging Cable,1,14.95,2019-12-07 12:19:00,422 Lakeview St, Atlanta,GA,30301 +301679,AAA Batteries (4-pack),1,2.99,2019-12-06 15:08:00,378 Walnut St, Los Angeles,CA,90001 +301680,Wired Headphones,1,11.99,2019-12-11 18:47:00,637 2nd St, Seattle,WA,98101 +301681,Lightning Charging Cable,1,14.95,2019-12-06 20:31:00,788 1st St, Boston,MA,02215 +301682,AAA Batteries (4-pack),2,2.99,2019-12-15 14:24:00,863 Main St, San Francisco,CA,94016 +301683,27in FHD Monitor,1,149.99,2019-12-23 22:18:00,457 River St, San Francisco,CA,94016 +301684,Lightning Charging Cable,1,14.95,2019-12-21 11:17:00,524 Church St, Los Angeles,CA,90001 +301685,ThinkPad Laptop,1,999.99,2019-12-28 15:49:00,40 South St, Seattle,WA,98101 +301686,AAA Batteries (4-pack),1,2.99,2019-12-14 23:41:00,942 Wilson St, San Francisco,CA,94016 +301687,Wired Headphones,1,11.99,2019-12-03 23:40:00,578 North St, Atlanta,GA,30301 +301688,USB-C Charging Cable,1,11.95,2019-12-08 16:45:00,990 Forest St, Austin,TX,73301 +301689,AA Batteries (4-pack),1,3.84,2019-12-30 13:53:00,181 Center St, Los Angeles,CA,90001 +301690,AA Batteries (4-pack),1,3.84,2019-12-31 17:35:00,562 Johnson St, Portland,OR,97035 +301691,Flatscreen TV,1,300.0,2019-12-03 05:32:00,710 Meadow St, San Francisco,CA,94016 +301692,USB-C Charging Cable,1,11.95,2019-12-07 11:10:00,314 Jackson St, Seattle,WA,98101 +301693,AAA Batteries (4-pack),1,2.99,2019-12-20 16:44:00,536 Spruce St, San Francisco,CA,94016 +301694,Lightning Charging Cable,1,14.95,2019-12-18 05:58:00,58 Spruce St, Atlanta,GA,30301 +301695,AAA Batteries (4-pack),1,2.99,2019-12-17 14:27:00,661 Washington St, Boston,MA,02215 +301696,Apple Airpods Headphones,1,150.0,2019-12-10 16:02:00,224 Maple St, Austin,TX,73301 +301697,Bose SoundSport Headphones,1,99.99,2019-12-26 16:46:00,115 12th St, San Francisco,CA,94016 +301698,AAA Batteries (4-pack),1,2.99,2019-12-18 21:55:00,770 North St, Dallas,TX,75001 +301699,20in Monitor,1,109.99,2019-12-21 15:51:00,792 6th St, San Francisco,CA,94016 +301700,AA Batteries (4-pack),1,3.84,2019-12-29 12:45:00,846 Lake St, Austin,TX,73301 +301701,iPhone,1,700.0,2019-12-15 13:23:00,591 Maple St, Seattle,WA,98101 +301701,Lightning Charging Cable,1,14.95,2019-12-15 13:23:00,591 Maple St, Seattle,WA,98101 +301702,AAA Batteries (4-pack),2,2.99,2019-12-07 20:37:00,947 Lake St, San Francisco,CA,94016 +301703,AAA Batteries (4-pack),1,2.99,2019-12-16 15:25:00,691 Maple St, San Francisco,CA,94016 +301704,Lightning Charging Cable,1,14.95,2019-12-18 13:01:00,632 2nd St, Dallas,TX,75001 +301705,34in Ultrawide Monitor,1,379.99,2019-12-24 14:33:00,4 North St, New York City,NY,10001 +301706,27in FHD Monitor,1,149.99,2019-12-13 23:29:00,138 5th St, Seattle,WA,98101 +301707,Wired Headphones,1,11.99,2019-12-12 06:20:00,255 Walnut St, San Francisco,CA,94016 +301708,27in 4K Gaming Monitor,1,389.99,2019-12-04 13:13:00,422 West St, Austin,TX,73301 +301709,Wired Headphones,1,11.99,2019-12-19 10:54:00,648 Walnut St, Seattle,WA,98101 +301710,Lightning Charging Cable,1,14.95,2019-12-24 14:43:00,15 Jackson St, Boston,MA,02215 +301711,AA Batteries (4-pack),1,3.84,2019-12-20 20:39:00,92 Forest St, Los Angeles,CA,90001 +301712,USB-C Charging Cable,1,11.95,2019-12-07 05:57:00,49 1st St, Atlanta,GA,30301 +301713,AA Batteries (4-pack),3,3.84,2019-12-07 13:17:00,436 South St, Seattle,WA,98101 +301714,AAA Batteries (4-pack),3,2.99,2019-12-12 14:38:00,937 North St, San Francisco,CA,94016 +301715,USB-C Charging Cable,1,11.95,2019-12-08 18:51:00,668 Cedar St, Los Angeles,CA,90001 +301716,AA Batteries (4-pack),1,3.84,2019-12-15 04:52:00,715 4th St, San Francisco,CA,94016 +301717,Apple Airpods Headphones,1,150.0,2019-12-14 22:27:00,494 Church St, Seattle,WA,98101 +301718,Bose SoundSport Headphones,1,99.99,2019-12-05 20:11:00,839 Dogwood St, New York City,NY,10001 +301719,Lightning Charging Cable,1,14.95,2019-12-22 10:54:00,913 12th St, Atlanta,GA,30301 +301720,20in Monitor,1,109.99,2019-12-12 10:15:00,586 Walnut St, Los Angeles,CA,90001 +301721,Wired Headphones,1,11.99,2019-12-14 13:37:00,217 Elm St, Portland,OR,97035 +301722,Lightning Charging Cable,2,14.95,2019-12-10 07:17:00,88 5th St, Los Angeles,CA,90001 +301723,iPhone,1,700.0,2019-12-16 23:11:00,696 Meadow St, Portland,OR,97035 +301724,AAA Batteries (4-pack),1,2.99,2019-12-14 00:46:00,373 Maple St, Portland,OR,97035 +301725,Wired Headphones,1,11.99,2019-12-29 10:35:00,673 Cherry St, New York City,NY,10001 +301726,Wired Headphones,1,11.99,2019-12-07 14:44:00,821 Walnut St, San Francisco,CA,94016 +301727,Google Phone,1,600.0,2019-12-16 20:49:00,450 Wilson St, Seattle,WA,98101 +301727,Bose SoundSport Headphones,1,99.99,2019-12-16 20:49:00,450 Wilson St, Seattle,WA,98101 +301728,USB-C Charging Cable,1,11.95,2019-12-01 20:48:00,900 Spruce St, San Francisco,CA,94016 +301729,iPhone,1,700.0,2019-12-19 16:42:00,492 South St, Los Angeles,CA,90001 +301729,Lightning Charging Cable,1,14.95,2019-12-19 16:42:00,492 South St, Los Angeles,CA,90001 +301730,ThinkPad Laptop,1,999.99,2019-12-13 20:58:00,774 Meadow St, San Francisco,CA,94016 +301731,ThinkPad Laptop,1,999.99,2019-12-27 10:08:00,865 Jefferson St, Dallas,TX,75001 +301732,Lightning Charging Cable,1,14.95,2019-12-19 23:55:00,644 9th St, Seattle,WA,98101 +301733,Flatscreen TV,1,300.0,2019-12-08 17:53:00,113 7th St, Boston,MA,02215 +301734,34in Ultrawide Monitor,1,379.99,2019-12-04 08:20:00,533 Highland St, New York City,NY,10001 +301735,Lightning Charging Cable,1,14.95,2019-12-06 16:10:00,29 5th St, Los Angeles,CA,90001 +301736,Lightning Charging Cable,1,14.95,2019-12-19 17:42:00,437 6th St, Portland,OR,97035 +301737,ThinkPad Laptop,1,999.99,2019-12-02 15:11:00,177 Willow St, San Francisco,CA,94016 +301738,Lightning Charging Cable,1,14.95,2019-12-28 08:03:00,14 2nd St, San Francisco,CA,94016 +301739,USB-C Charging Cable,1,11.95,2019-12-18 15:35:00,98 Lake St, San Francisco,CA,94016 +301740,USB-C Charging Cable,1,11.95,2019-12-04 11:23:00,884 Willow St, San Francisco,CA,94016 +301741,Bose SoundSport Headphones,1,99.99,2019-12-19 19:19:00,280 Spruce St, New York City,NY,10001 +301742,USB-C Charging Cable,1,11.95,2019-12-30 20:45:00,927 Center St, Los Angeles,CA,90001 +301743,USB-C Charging Cable,1,11.95,2019-12-09 14:25:00,278 Church St, Boston,MA,02215 +301744,34in Ultrawide Monitor,1,379.99,2019-12-09 18:26:00,384 West St, Los Angeles,CA,90001 +301745,27in FHD Monitor,1,149.99,2019-12-22 17:09:00,590 Adams St, San Francisco,CA,94016 +301746,27in 4K Gaming Monitor,1,389.99,2019-12-04 15:07:00,212 West St, Dallas,TX,75001 +301747,34in Ultrawide Monitor,1,379.99,2019-12-13 11:22:00,795 Johnson St, Boston,MA,02215 +301748,USB-C Charging Cable,1,11.95,2019-12-08 13:17:00,604 2nd St, New York City,NY,10001 +301749,27in FHD Monitor,2,149.99,2019-12-24 14:45:00,563 Maple St, Atlanta,GA,30301 +301750,AAA Batteries (4-pack),3,2.99,2019-12-11 12:43:00,602 Lincoln St, Austin,TX,73301 +301751,Lightning Charging Cable,1,14.95,2019-12-13 20:43:00,418 Lincoln St, San Francisco,CA,94016 +301752,AAA Batteries (4-pack),3,2.99,2019-12-02 10:39:00,135 Elm St, Dallas,TX,75001 +301753,Macbook Pro Laptop,1,1700.0,2019-12-19 18:21:00,207 5th St, San Francisco,CA,94016 +301754,USB-C Charging Cable,1,11.95,2019-12-12 18:09:00,657 Center St, Los Angeles,CA,90001 +301755,27in FHD Monitor,1,149.99,2019-12-30 19:56:00,510 7th St, San Francisco,CA,94016 +301756,USB-C Charging Cable,1,11.95,2019-12-25 16:18:00,626 Lakeview St, Seattle,WA,98101 +301757,34in Ultrawide Monitor,1,379.99,2019-12-16 11:45:00,188 Johnson St, New York City,NY,10001 +301758,Macbook Pro Laptop,1,1700.0,2019-12-11 11:16:00,777 Church St, Boston,MA,02215 +301759,34in Ultrawide Monitor,1,379.99,2019-12-02 10:35:00,876 Maple St, Los Angeles,CA,90001 +301760,AAA Batteries (4-pack),2,2.99,2019-12-22 20:38:00,502 Lake St, New York City,NY,10001 +301761,Google Phone,1,600.0,2019-12-08 13:19:00,39 Washington St, Dallas,TX,75001 +301762,20in Monitor,1,109.99,2019-12-21 00:40:00,321 Johnson St, Dallas,TX,75001 +301763,USB-C Charging Cable,1,11.95,2019-12-12 16:42:00,948 Willow St, San Francisco,CA,94016 +301764,Apple Airpods Headphones,1,150.0,2019-12-04 15:28:00,11 11th St, Portland,OR,97035 +301765,iPhone,1,700.0,2019-12-07 23:07:00,979 5th St, Atlanta,GA,30301 +301766,USB-C Charging Cable,1,11.95,2019-12-26 09:23:00,310 Hill St, Atlanta,GA,30301 +301767,Bose SoundSport Headphones,1,99.99,2019-12-01 14:11:00,710 Maple St, San Francisco,CA,94016 +301768,USB-C Charging Cable,1,11.95,2019-12-06 16:54:00,33 Main St, Los Angeles,CA,90001 +301769,USB-C Charging Cable,1,11.95,2019-12-25 19:20:00,893 North St, Seattle,WA,98101 +301770,27in FHD Monitor,1,149.99,2019-12-07 01:01:00,748 Chestnut St, Atlanta,GA,30301 +301771,27in 4K Gaming Monitor,1,389.99,2019-12-10 17:50:00,892 Elm St, Boston,MA,02215 +301772,27in 4K Gaming Monitor,1,389.99,2019-12-02 15:40:00,451 Adams St, Los Angeles,CA,90001 +301773,Wired Headphones,2,11.99,2019-12-08 12:13:00,729 Washington St, Boston,MA,02215 +301774,AAA Batteries (4-pack),1,2.99,2019-12-13 20:07:00,325 Johnson St, San Francisco,CA,94016 +301775,AAA Batteries (4-pack),1,2.99,2019-12-29 12:44:00,754 Walnut St, Seattle,WA,98101 +301776,Flatscreen TV,1,300.0,2019-12-02 11:19:00,339 Hickory St, New York City,NY,10001 +301777,AAA Batteries (4-pack),3,2.99,2019-12-24 18:32:00,83 Sunset St, San Francisco,CA,94016 +301778,USB-C Charging Cable,1,11.95,2019-12-01 02:50:00,920 Highland St, Seattle,WA,98101 +301779,Apple Airpods Headphones,1,150.0,2019-12-26 12:42:00,610 Main St, Seattle,WA,98101 +301780,AA Batteries (4-pack),1,3.84,2019-12-09 00:54:00,985 South St, San Francisco,CA,94016 +301781,AA Batteries (4-pack),1,3.84,2019-12-24 19:54:00,337 South St, Dallas,TX,75001 +301782,AAA Batteries (4-pack),1,2.99,2019-12-14 23:41:00,273 West St, New York City,NY,10001 +301783,Apple Airpods Headphones,1,150.0,2019-12-23 11:50:00,58 Park St, Los Angeles,CA,90001 +301784,Macbook Pro Laptop,1,1700.0,2019-12-13 15:12:00,713 Church St, San Francisco,CA,94016 +301785,34in Ultrawide Monitor,1,379.99,2019-12-25 07:49:00,55 7th St, New York City,NY,10001 +301786,AAA Batteries (4-pack),2,2.99,2019-12-16 10:05:00,641 Park St, Los Angeles,CA,90001 +301787,Lightning Charging Cable,1,14.95,2019-12-24 15:07:00,738 Forest St, San Francisco,CA,94016 +301788,20in Monitor,1,109.99,2019-12-06 19:12:00,666 Meadow St, San Francisco,CA,94016 +301789,27in 4K Gaming Monitor,1,389.99,2019-12-18 15:05:00,603 Lakeview St, Dallas,TX,75001 +301790,Apple Airpods Headphones,1,150.0,2019-12-20 10:54:00,87 1st St, San Francisco,CA,94016 +301791,Wired Headphones,1,11.99,2019-12-22 21:03:00,745 8th St, New York City,NY,10001 +301792,34in Ultrawide Monitor,1,379.99,2019-12-12 19:01:00,831 Jackson St, Boston,MA,02215 +301793,Google Phone,1,600.0,2019-12-14 18:46:00,29 North St, Seattle,WA,98101 +301794,Apple Airpods Headphones,1,150.0,2019-12-27 16:32:00,186 West St, Boston,MA,02215 +301795,ThinkPad Laptop,1,999.99,2019-12-27 12:26:00,963 Meadow St, Dallas,TX,75001 +301796,USB-C Charging Cable,1,11.95,2019-12-09 07:29:00,953 West St, Atlanta,GA,30301 +301797,iPhone,1,700.0,2019-12-05 11:11:00,822 Park St, Seattle,WA,98101 +301797,Apple Airpods Headphones,1,150.0,2019-12-05 11:11:00,822 Park St, Seattle,WA,98101 +301798,34in Ultrawide Monitor,1,379.99,2019-12-28 18:54:00,902 Highland St, Boston,MA,02215 +301799,AA Batteries (4-pack),1,3.84,2019-12-30 17:26:00,99 Ridge St, New York City,NY,10001 +301800,AAA Batteries (4-pack),1,2.99,2019-12-09 20:32:00,659 Willow St, Seattle,WA,98101 +301801,iPhone,1,700.0,2019-12-09 01:09:00,826 11th St, Seattle,WA,98101 +301802,Wired Headphones,1,11.99,2019-12-28 19:37:00,848 11th St, Los Angeles,CA,90001 +301803,Wired Headphones,1,11.99,2019-12-16 20:00:00,927 Willow St, Los Angeles,CA,90001 +301804,34in Ultrawide Monitor,1,379.99,2019-12-11 20:40:00,272 Lake St, New York City,NY,10001 +301805,AAA Batteries (4-pack),2,2.99,2019-12-26 12:24:00,104 River St, Atlanta,GA,30301 +301806,Bose SoundSport Headphones,1,99.99,2019-12-24 03:49:00,707 Center St, Atlanta,GA,30301 +301807,Vareebadd Phone,1,400.0,2019-12-13 00:19:00,374 Sunset St, Atlanta,GA,30301 +301808,AA Batteries (4-pack),1,3.84,2019-12-09 22:11:00,31 West St, Los Angeles,CA,90001 +301809,Lightning Charging Cable,1,14.95,2019-12-28 12:05:00,476 Chestnut St, San Francisco,CA,94016 +301810,Bose SoundSport Headphones,1,99.99,2019-12-21 15:38:00,328 Lake St, New York City,NY,10001 +301811,Wired Headphones,1,11.99,2019-12-27 09:29:00,640 Park St, Seattle,WA,98101 +301812,USB-C Charging Cable,1,11.95,2019-12-07 19:38:00,40 Jackson St, Portland,ME,04101 +301813,ThinkPad Laptop,1,999.99,2019-12-18 23:03:00,616 Washington St, Atlanta,GA,30301 +301814,AA Batteries (4-pack),1,3.84,2019-12-12 18:09:00,606 Hill St, New York City,NY,10001 +301815,34in Ultrawide Monitor,1,379.99,2019-12-08 13:26:00,856 14th St, Los Angeles,CA,90001 +301816,Wired Headphones,1,11.99,2019-12-26 09:04:00,581 7th St, Seattle,WA,98101 +301817,iPhone,1,700.0,2019-12-14 18:10:00,889 Ridge St, Los Angeles,CA,90001 +301818,Wired Headphones,1,11.99,2019-12-22 08:59:00,7 Maple St, Dallas,TX,75001 +301819,Lightning Charging Cable,1,14.95,2019-12-13 17:24:00,87 Lake St, Atlanta,GA,30301 +301820,Apple Airpods Headphones,1,150.0,2019-12-02 18:37:00,619 Cherry St, Los Angeles,CA,90001 +301821,iPhone,1,700.0,2019-12-01 18:41:00,623 Lakeview St, Los Angeles,CA,90001 +301822,34in Ultrawide Monitor,1,379.99,2019-12-20 17:13:00,462 Cedar St, Dallas,TX,75001 +301823,Bose SoundSport Headphones,1,99.99,2019-12-20 16:41:00,484 South St, San Francisco,CA,94016 +301824,Bose SoundSport Headphones,1,99.99,2019-12-23 22:51:00,513 Spruce St, San Francisco,CA,94016 +301825,Wired Headphones,1,11.99,2019-12-10 17:02:00,591 10th St, Seattle,WA,98101 +301826,USB-C Charging Cable,1,11.95,2019-12-25 21:43:00,207 4th St, San Francisco,CA,94016 +301827,Apple Airpods Headphones,1,150.0,2019-12-14 21:39:00,1 14th St, Seattle,WA,98101 +301828,Bose SoundSport Headphones,1,99.99,2019-12-13 00:58:00,145 Elm St, San Francisco,CA,94016 +301829,27in 4K Gaming Monitor,1,389.99,2019-12-26 21:04:00,231 10th St, Seattle,WA,98101 +301830,AAA Batteries (4-pack),1,2.99,2019-12-07 13:44:00,115 Hill St, Seattle,WA,98101 +301831,Apple Airpods Headphones,1,150.0,2019-12-20 22:37:00,137 Wilson St, Los Angeles,CA,90001 +301832,AAA Batteries (4-pack),1,2.99,2019-12-31 20:51:00,774 Washington St, San Francisco,CA,94016 +301832,20in Monitor,2,109.99,2019-12-31 20:51:00,774 Washington St, San Francisco,CA,94016 +301833,Lightning Charging Cable,1,14.95,2019-12-29 13:55:00,368 Lake St, Portland,OR,97035 +301834,AA Batteries (4-pack),1,3.84,2019-12-12 07:46:00,989 14th St, Austin,TX,73301 +301835,Wired Headphones,1,11.99,2019-12-25 15:59:00,589 South St, Los Angeles,CA,90001 +301836,AA Batteries (4-pack),4,3.84,2019-12-19 09:00:00,650 10th St, San Francisco,CA,94016 +301837,Bose SoundSport Headphones,1,99.99,2019-12-08 12:33:00,808 6th St, Boston,MA,02215 +301838,Lightning Charging Cable,1,14.95,2019-12-10 15:40:00,636 Highland St, Dallas,TX,75001 +301839,Bose SoundSport Headphones,1,99.99,2019-12-14 11:02:00,491 Washington St, Boston,MA,02215 +301840,Lightning Charging Cable,1,14.95,2019-12-14 12:06:00,137 Sunset St, New York City,NY,10001 +301841,AA Batteries (4-pack),1,3.84,2019-12-30 14:00:00,755 Willow St, Dallas,TX,75001 +301842,USB-C Charging Cable,1,11.95,2019-12-17 12:24:00,745 Lake St, Atlanta,GA,30301 +301843,AA Batteries (4-pack),1,3.84,2019-12-13 13:03:00,411 Chestnut St, Portland,OR,97035 +301844,27in 4K Gaming Monitor,1,389.99,2019-12-21 20:08:00,371 Hickory St, Austin,TX,73301 +301845,iPhone,1,700.0,2019-12-23 10:11:00,602 2nd St, Austin,TX,73301 +301845,Wired Headphones,2,11.99,2019-12-23 10:11:00,602 2nd St, Austin,TX,73301 +301846,Lightning Charging Cable,3,14.95,2019-12-12 18:27:00,592 Madison St, San Francisco,CA,94016 +301847,27in FHD Monitor,1,149.99,2019-12-02 21:48:00,291 4th St, Seattle,WA,98101 +301848,AA Batteries (4-pack),1,3.84,2019-12-14 22:52:00,84 Adams St, Dallas,TX,75001 +301849,AA Batteries (4-pack),1,3.84,2019-12-25 19:08:00,205 7th St, San Francisco,CA,94016 +301850,Bose SoundSport Headphones,1,99.99,2019-12-05 10:13:00,655 Jefferson St, New York City,NY,10001 +301851,AAA Batteries (4-pack),2,2.99,2019-12-06 20:33:00,197 Jefferson St, San Francisco,CA,94016 +301852,Apple Airpods Headphones,1,150.0,2019-12-25 19:10:00,285 Lincoln St, Austin,TX,73301 +301853,AA Batteries (4-pack),1,3.84,2019-12-13 09:17:00,11 Madison St, Seattle,WA,98101 +301854,AAA Batteries (4-pack),1,2.99,2019-12-15 11:03:00,958 Wilson St, Los Angeles,CA,90001 +301855,AA Batteries (4-pack),1,3.84,2019-12-16 14:44:00,322 Ridge St, San Francisco,CA,94016 +301856,ThinkPad Laptop,1,999.99,2019-12-25 14:01:00,538 8th St, Austin,TX,73301 +301857,Lightning Charging Cable,2,14.95,2019-12-17 20:31:00,479 Maple St, Los Angeles,CA,90001 +301858,AAA Batteries (4-pack),1,2.99,2019-12-24 00:04:00,194 Lakeview St, Dallas,TX,75001 +301859,AA Batteries (4-pack),1,3.84,2019-12-08 15:00:00,483 Sunset St, New York City,NY,10001 +301860,AAA Batteries (4-pack),1,2.99,2019-12-29 11:30:00,337 Wilson St, San Francisco,CA,94016 +301861,Flatscreen TV,1,300.0,2019-12-20 01:22:00,564 Highland St, Boston,MA,02215 +301862,27in 4K Gaming Monitor,1,389.99,2019-12-16 21:58:00,116 Meadow St, Atlanta,GA,30301 +301863,Lightning Charging Cable,1,14.95,2019-12-21 13:16:00,934 5th St, New York City,NY,10001 +301864,AA Batteries (4-pack),1,3.84,2019-12-05 17:48:00,407 1st St, Portland,OR,97035 +301865,USB-C Charging Cable,1,11.95,2019-12-11 12:01:00,310 Lakeview St, Portland,OR,97035 +301866,27in 4K Gaming Monitor,1,389.99,2019-12-09 18:00:00,862 Wilson St, New York City,NY,10001 +301867,27in 4K Gaming Monitor,1,389.99,2019-12-20 21:51:00,191 Maple St, Atlanta,GA,30301 +301868,Bose SoundSport Headphones,1,99.99,2019-12-03 11:44:00,331 Park St, Seattle,WA,98101 +301869,AAA Batteries (4-pack),1,2.99,2019-12-08 14:24:00,71 Ridge St, Boston,MA,02215 +301870,Wired Headphones,1,11.99,2019-12-29 03:28:00,795 Jackson St, Los Angeles,CA,90001 +301871,27in FHD Monitor,1,149.99,2019-12-13 19:36:00,625 11th St, San Francisco,CA,94016 +301872,Vareebadd Phone,1,400.0,2019-12-11 21:42:00,72 West St, Boston,MA,02215 +301873,Apple Airpods Headphones,1,150.0,2019-12-11 08:59:00,323 1st St, Los Angeles,CA,90001 +301874,AAA Batteries (4-pack),1,2.99,2019-12-29 12:57:00,16 7th St, Dallas,TX,75001 +301875,Bose SoundSport Headphones,1,99.99,2019-12-03 19:15:00,79 Ridge St, San Francisco,CA,94016 +301876,27in FHD Monitor,1,149.99,2019-12-01 11:04:00,457 7th St, Portland,OR,97035 +301877,27in 4K Gaming Monitor,1,389.99,2019-12-30 19:37:00,643 South St, San Francisco,CA,94016 +301878,USB-C Charging Cable,1,11.95,2019-12-21 15:53:00,805 Meadow St, Boston,MA,02215 +301879,Wired Headphones,1,11.99,2019-12-20 17:02:00,890 1st St, San Francisco,CA,94016 +301880,AAA Batteries (4-pack),1,2.99,2019-12-19 03:10:00,130 West St, San Francisco,CA,94016 +301881,20in Monitor,1,109.99,2019-12-06 16:10:00,258 Adams St, Seattle,WA,98101 +301881,27in FHD Monitor,1,149.99,2019-12-06 16:10:00,258 Adams St, Seattle,WA,98101 +301882,Google Phone,1,600.0,2019-12-02 15:20:00,313 Forest St, Los Angeles,CA,90001 +301883,LG Dryer,1,600.0,2019-12-02 16:56:00,219 2nd St, Los Angeles,CA,90001 +301884,Vareebadd Phone,1,400.0,2019-12-28 13:11:00,463 Ridge St, San Francisco,CA,94016 +301884,Flatscreen TV,1,300.0,2019-12-28 13:11:00,463 Ridge St, San Francisco,CA,94016 +301885,AAA Batteries (4-pack),1,2.99,2019-12-07 21:43:00,651 Jefferson St, San Francisco,CA,94016 +301886,AAA Batteries (4-pack),1,2.99,2019-12-09 06:48:00,265 6th St, Portland,OR,97035 +301887,Lightning Charging Cable,1,14.95,2019-12-30 17:50:00,733 Lakeview St, San Francisco,CA,94016 +301888,AA Batteries (4-pack),2,3.84,2019-12-08 20:13:00,741 Hickory St, Portland,OR,97035 +301889,AA Batteries (4-pack),1,3.84,2019-12-09 02:29:00,475 Cherry St, Seattle,WA,98101 +301890,Bose SoundSport Headphones,1,99.99,2019-12-26 19:43:00,755 Church St, Austin,TX,73301 +301891,USB-C Charging Cable,1,11.95,2019-12-13 23:04:00,458 Elm St, Austin,TX,73301 +301892,iPhone,1,700.0,2019-12-13 12:35:00,6 Walnut St, Portland,OR,97035 +301892,Wired Headphones,1,11.99,2019-12-13 12:35:00,6 Walnut St, Portland,OR,97035 +301893,AAA Batteries (4-pack),2,2.99,2019-12-24 16:59:00,148 7th St, Seattle,WA,98101 +301894,AAA Batteries (4-pack),1,2.99,2019-12-15 18:49:00,995 Cherry St, Boston,MA,02215 +301895,Apple Airpods Headphones,1,150.0,2019-12-16 11:47:00,861 Madison St, Los Angeles,CA,90001 +301896,Wired Headphones,1,11.99,2019-12-08 10:52:00,137 2nd St, San Francisco,CA,94016 +301896,27in 4K Gaming Monitor,1,389.99,2019-12-08 10:52:00,137 2nd St, San Francisco,CA,94016 +301897,20in Monitor,1,109.99,2019-12-25 08:29:00,558 7th St, Seattle,WA,98101 +301898,AAA Batteries (4-pack),1,2.99,2019-12-26 12:37:00,236 Elm St, San Francisco,CA,94016 +301899,iPhone,1,700.0,2019-12-25 09:42:00,506 Walnut St, Portland,OR,97035 +301900,AA Batteries (4-pack),2,3.84,2019-12-13 14:47:00,63 Johnson St, Los Angeles,CA,90001 +301901,27in 4K Gaming Monitor,1,389.99,2019-12-06 21:51:00,552 5th St, San Francisco,CA,94016 +301902,AA Batteries (4-pack),1,3.84,2019-12-19 20:13:00,537 Jefferson St, Atlanta,GA,30301 +301903,Wired Headphones,1,11.99,2019-12-24 19:42:00,707 River St, Dallas,TX,75001 +301904,Apple Airpods Headphones,1,150.0,2019-12-12 01:02:00,124 8th St, Los Angeles,CA,90001 +301905,Apple Airpods Headphones,1,150.0,2019-12-08 20:08:00,888 Sunset St, San Francisco,CA,94016 +301906,USB-C Charging Cable,1,11.95,2019-12-16 22:49:00,874 Hickory St, Boston,MA,02215 +301907,iPhone,1,700.0,2019-12-12 11:07:00,768 10th St, San Francisco,CA,94016 +301908,USB-C Charging Cable,1,11.95,2019-12-05 11:04:00,267 1st St, San Francisco,CA,94016 +301909,USB-C Charging Cable,1,11.95,2019-12-06 08:23:00,83 Maple St, San Francisco,CA,94016 +301910,AAA Batteries (4-pack),1,2.99,2019-12-11 00:00:00,355 14th St, Portland,OR,97035 +301911,Bose SoundSport Headphones,1,99.99,2019-12-07 11:40:00,351 Sunset St, Austin,TX,73301 +301912,AA Batteries (4-pack),1,3.84,2019-12-31 19:55:00,777 13th St, Boston,MA,02215 +301913,Bose SoundSport Headphones,1,99.99,2019-12-25 10:17:00,78 Center St, Los Angeles,CA,90001 +301914,AAA Batteries (4-pack),1,2.99,2019-12-19 08:36:00,799 Willow St, Los Angeles,CA,90001 +301915,27in FHD Monitor,1,149.99,2019-12-19 01:34:00,951 Dogwood St, Portland,ME,04101 +301916,AAA Batteries (4-pack),1,2.99,2019-12-13 11:16:00,604 5th St, Seattle,WA,98101 +301917,Apple Airpods Headphones,1,150.0,2019-12-03 14:33:00,850 Sunset St, San Francisco,CA,94016 +301917,Vareebadd Phone,1,400.0,2019-12-03 14:33:00,850 Sunset St, San Francisco,CA,94016 +301918,AAA Batteries (4-pack),2,2.99,2019-12-13 15:13:00,567 Madison St, San Francisco,CA,94016 +301919,USB-C Charging Cable,1,11.95,2019-12-05 11:44:00,947 Ridge St, San Francisco,CA,94016 +301920,AA Batteries (4-pack),2,3.84,2019-12-22 15:01:00,386 13th St, Los Angeles,CA,90001 +301921,Lightning Charging Cable,1,14.95,2019-12-21 16:05:00,611 12th St, Los Angeles,CA,90001 +301922,Apple Airpods Headphones,1,150.0,2019-12-16 11:49:00,647 Elm St, Atlanta,GA,30301 +301923,34in Ultrawide Monitor,1,379.99,2019-12-19 03:40:00,552 Ridge St, San Francisco,CA,94016 +301924,Lightning Charging Cable,1,14.95,2019-12-29 23:23:00,120 Lincoln St, Seattle,WA,98101 +301925,Macbook Pro Laptop,1,1700.0,2019-12-25 10:42:00,979 Main St, San Francisco,CA,94016 +301926,Vareebadd Phone,1,400.0,2019-12-03 23:20:00,590 Washington St, San Francisco,CA,94016 +301927,27in FHD Monitor,1,149.99,2019-12-23 13:17:00,568 11th St, Seattle,WA,98101 +301928,AAA Batteries (4-pack),1,2.99,2019-12-15 11:10:00,44 Dogwood St, Los Angeles,CA,90001 +301929,AA Batteries (4-pack),1,3.84,2019-12-31 16:37:00,193 Church St, Atlanta,GA,30301 +301930,USB-C Charging Cable,1,11.95,2019-12-23 17:15:00,903 Meadow St, Boston,MA,02215 +301931,Bose SoundSport Headphones,1,99.99,2019-12-13 16:57:00,444 12th St, Dallas,TX,75001 +301932,Wired Headphones,1,11.99,2019-12-27 12:57:00,2 Cedar St, Dallas,TX,75001 +301933,Lightning Charging Cable,1,14.95,2019-12-15 12:50:00,664 1st St, Los Angeles,CA,90001 +301934,27in FHD Monitor,1,149.99,2019-12-19 23:49:00,915 Lincoln St, Los Angeles,CA,90001 +301935,iPhone,1,700.0,2019-12-02 05:11:00,271 4th St, Los Angeles,CA,90001 +301936,Bose SoundSport Headphones,1,99.99,2019-12-12 17:40:00,718 Adams St, New York City,NY,10001 +301937,USB-C Charging Cable,2,11.95,2019-12-05 23:36:00,613 Willow St, Dallas,TX,75001 +301938,USB-C Charging Cable,2,11.95,2019-12-16 10:00:00,857 Willow St, Los Angeles,CA,90001 +301938,Wired Headphones,2,11.99,2019-12-16 10:00:00,857 Willow St, Los Angeles,CA,90001 +301939,USB-C Charging Cable,1,11.95,2019-12-10 13:55:00,242 Lincoln St, Austin,TX,73301 +301940,USB-C Charging Cable,1,11.95,2019-12-04 15:39:00,218 Lincoln St, Boston,MA,02215 +301941,Lightning Charging Cable,1,14.95,2019-12-18 17:09:00,663 9th St, San Francisco,CA,94016 +301942,Apple Airpods Headphones,1,150.0,2019-12-30 11:19:00,877 Adams St, Portland,OR,97035 +301943,USB-C Charging Cable,1,11.95,2019-12-26 14:15:00,375 Highland St, Dallas,TX,75001 +301944,AA Batteries (4-pack),1,3.84,2019-12-28 23:16:00,274 Center St, Los Angeles,CA,90001 +301945,iPhone,1,700.0,2019-12-26 17:08:00,791 12th St, Portland,OR,97035 +301946,AA Batteries (4-pack),1,3.84,2019-12-12 15:35:00,658 Center St, New York City,NY,10001 +301947,AA Batteries (4-pack),1,3.84,2019-12-03 20:32:00,647 Adams St, Los Angeles,CA,90001 +301948,AAA Batteries (4-pack),4,2.99,2019-12-19 10:44:00,553 7th St, New York City,NY,10001 +301949,Wired Headphones,1,11.99,2019-12-15 13:51:00,913 1st St, Boston,MA,02215 +301950,Apple Airpods Headphones,1,150.0,2019-12-15 12:52:00,543 Madison St, Los Angeles,CA,90001 +301951,Lightning Charging Cable,1,14.95,2019-12-10 20:15:00,141 Highland St, New York City,NY,10001 +301952,Bose SoundSport Headphones,1,99.99,2019-12-20 12:07:00,977 Adams St, Atlanta,GA,30301 +301953,Bose SoundSport Headphones,1,99.99,2019-12-15 15:02:00,811 Chestnut St, Los Angeles,CA,90001 +301954,Wired Headphones,1,11.99,2019-12-24 15:26:00,906 13th St, Los Angeles,CA,90001 +301955,AA Batteries (4-pack),1,3.84,2019-12-16 12:19:00,448 Jefferson St, San Francisco,CA,94016 +301956,Apple Airpods Headphones,1,150.0,2019-12-06 11:15:00,336 Highland St, Boston,MA,02215 +301957,USB-C Charging Cable,2,11.95,2019-12-27 08:31:00,27 Spruce St, Los Angeles,CA,90001 +301958,USB-C Charging Cable,1,11.95,2019-12-07 10:18:00,56 Lincoln St, Los Angeles,CA,90001 +301959,AA Batteries (4-pack),1,3.84,2019-12-18 22:15:00,184 Walnut St, Austin,TX,73301 +301960,AAA Batteries (4-pack),1,2.99,2019-12-23 11:25:00,500 Ridge St, Dallas,TX,75001 +301961,AAA Batteries (4-pack),2,2.99,2019-12-13 14:09:00,987 Cedar St, Seattle,WA,98101 +301962,Macbook Pro Laptop,1,1700.0,2019-12-03 18:10:00,707 Hickory St, San Francisco,CA,94016 +301963,34in Ultrawide Monitor,1,379.99,2019-12-13 09:48:00,186 Main St, San Francisco,CA,94016 +301964,Lightning Charging Cable,1,14.95,2019-12-16 15:48:00,128 Meadow St, Portland,ME,04101 +301965,USB-C Charging Cable,1,11.95,2019-12-02 11:16:00,32 Meadow St, Dallas,TX,75001 +301966,USB-C Charging Cable,1,11.95,2019-12-03 21:22:00,220 River St, Boston,MA,02215 +301967,Lightning Charging Cable,2,14.95,2019-12-19 22:38:00,965 Ridge St, San Francisco,CA,94016 +301968,AA Batteries (4-pack),1,3.84,2019-12-17 10:07:00,428 Lakeview St, Boston,MA,02215 +301969,Wired Headphones,1,11.99,2019-12-12 15:20:00,931 Wilson St, Seattle,WA,98101 +301970,AA Batteries (4-pack),1,3.84,2019-12-06 19:30:00,613 West St, San Francisco,CA,94016 +301971,Google Phone,1,600.0,2019-12-22 17:56:00,61 6th St, New York City,NY,10001 +301972,Lightning Charging Cable,1,14.95,2019-12-11 21:21:00,361 14th St, Seattle,WA,98101 +301973,Flatscreen TV,1,300.0,2019-12-27 13:59:00,147 13th St, New York City,NY,10001 +301974,Bose SoundSport Headphones,1,99.99,2019-12-27 11:39:00,768 10th St, Portland,ME,04101 +301975,USB-C Charging Cable,1,11.95,2019-12-30 08:30:00,940 Adams St, Boston,MA,02215 +301976,27in 4K Gaming Monitor,1,389.99,2019-12-18 11:23:00,379 Walnut St, New York City,NY,10001 +301977,Wired Headphones,1,11.99,2019-12-20 18:34:00,441 Ridge St, Atlanta,GA,30301 +301978,34in Ultrawide Monitor,2,379.99,2019-12-08 20:23:00,905 Park St, Los Angeles,CA,90001 +301979,Macbook Pro Laptop,1,1700.0,2019-12-15 09:00:00,661 Spruce St, San Francisco,CA,94016 +301980,27in 4K Gaming Monitor,1,389.99,2019-12-31 11:16:00,969 Willow St, San Francisco,CA,94016 +301981,Google Phone,1,600.0,2019-12-01 17:16:00,447 Maple St, Atlanta,GA,30301 +301982,Google Phone,1,600.0,2019-12-12 10:55:00,237 South St, Austin,TX,73301 +301983,USB-C Charging Cable,1,11.95,2019-12-30 09:39:00,706 Cherry St, New York City,NY,10001 +301984,USB-C Charging Cable,2,11.95,2019-12-18 15:19:00,81 Johnson St, Austin,TX,73301 +301985,Google Phone,1,600.0,2019-12-23 14:15:00,582 6th St, Portland,OR,97035 +301985,USB-C Charging Cable,1,11.95,2019-12-23 14:15:00,582 6th St, Portland,OR,97035 +301986,LG Washing Machine,1,600.0,2019-12-10 18:19:00,547 Hill St, Seattle,WA,98101 +301987,USB-C Charging Cable,1,11.95,2019-12-01 07:48:00,934 Cherry St, Los Angeles,CA,90001 +301988,Wired Headphones,1,11.99,2019-12-29 18:20:00,463 North St, Seattle,WA,98101 +301989,Lightning Charging Cable,1,14.95,2019-12-15 23:55:00,148 Jackson St, Seattle,WA,98101 +301990,AAA Batteries (4-pack),4,2.99,2019-12-20 01:36:00,814 Hill St, Los Angeles,CA,90001 +301991,34in Ultrawide Monitor,1,379.99,2019-12-17 15:02:00,257 Adams St, Dallas,TX,75001 +301992,27in 4K Gaming Monitor,1,389.99,2019-12-26 09:04:00,432 8th St, Boston,MA,02215 +301993,Lightning Charging Cable,1,14.95,2019-12-04 14:45:00,568 Jefferson St, Los Angeles,CA,90001 +301994,USB-C Charging Cable,1,11.95,2019-12-31 11:34:00,104 West St, Atlanta,GA,30301 +301995,AA Batteries (4-pack),3,3.84,2019-12-31 09:15:00,356 5th St, Seattle,WA,98101 +301996,Bose SoundSport Headphones,1,99.99,2019-12-19 12:54:00,675 1st St, Los Angeles,CA,90001 +301997,AAA Batteries (4-pack),1,2.99,2019-12-15 20:16:00,249 5th St, San Francisco,CA,94016 +301997,USB-C Charging Cable,1,11.95,2019-12-15 20:16:00,249 5th St, San Francisco,CA,94016 +301998,Google Phone,1,600.0,2019-12-10 21:14:00,557 Johnson St, San Francisco,CA,94016 +301999,USB-C Charging Cable,1,11.95,2019-12-22 21:54:00,350 11th St, Atlanta,GA,30301 +302000,USB-C Charging Cable,1,11.95,2019-12-21 09:47:00,299 14th St, New York City,NY,10001 +302001,AA Batteries (4-pack),1,3.84,2019-12-29 18:48:00,975 14th St, San Francisco,CA,94016 +302002,Apple Airpods Headphones,1,150.0,2019-12-03 21:39:00,753 Lake St, Boston,MA,02215 +302003,34in Ultrawide Monitor,1,379.99,2019-12-28 08:00:00,579 Madison St, San Francisco,CA,94016 +302004,AAA Batteries (4-pack),2,2.99,2019-12-19 21:13:00,58 Wilson St, Boston,MA,02215 +302005,iPhone,1,700.0,2019-12-04 18:48:00,902 Washington St, San Francisco,CA,94016 +302006,AAA Batteries (4-pack),1,2.99,2019-12-21 10:05:00,324 Elm St, New York City,NY,10001 +302007,Lightning Charging Cable,1,14.95,2019-12-19 09:38:00,764 Lincoln St, Los Angeles,CA,90001 +302008,Wired Headphones,1,11.99,2019-12-25 10:04:00,791 South St, Dallas,TX,75001 +302009,iPhone,1,700.0,2019-12-30 01:55:00,446 Madison St, Los Angeles,CA,90001 +302010,34in Ultrawide Monitor,1,379.99,2019-12-10 01:43:00,509 Church St, Los Angeles,CA,90001 +302011,iPhone,1,700.0,2019-12-15 11:49:00,245 Lakeview St, San Francisco,CA,94016 +302012,AA Batteries (4-pack),1,3.84,2019-12-11 19:20:00,252 Jefferson St, Boston,MA,02215 +302013,27in 4K Gaming Monitor,1,389.99,2019-12-19 13:29:00,586 7th St, San Francisco,CA,94016 +302014,Apple Airpods Headphones,1,150.0,2019-12-21 20:41:00,376 Park St, Atlanta,GA,30301 +302015,Wired Headphones,1,11.99,2019-12-12 17:26:00,107 South St, Austin,TX,73301 +302016,Apple Airpods Headphones,1,150.0,2019-12-09 14:49:00,475 Center St, San Francisco,CA,94016 +302017,Wired Headphones,1,11.99,2019-12-05 15:04:00,79 Willow St, San Francisco,CA,94016 +302018,AAA Batteries (4-pack),2,2.99,2019-12-05 08:43:00,444 South St, San Francisco,CA,94016 +302019,27in 4K Gaming Monitor,1,389.99,2019-12-05 22:12:00,997 Park St, New York City,NY,10001 +302020,AA Batteries (4-pack),2,3.84,2019-12-06 18:49:00,583 Adams St, Los Angeles,CA,90001 +302021,USB-C Charging Cable,1,11.95,2019-12-11 21:23:00,77 7th St, New York City,NY,10001 +302022,Wired Headphones,1,11.99,2019-12-22 17:44:00,533 Sunset St, Boston,MA,02215 +302023,Google Phone,1,600.0,2019-12-20 21:37:00,77 Cedar St, Portland,OR,97035 +302024,ThinkPad Laptop,1,999.99,2019-12-06 21:58:00,764 Hickory St, Boston,MA,02215 +302025,Google Phone,1,600.0,2019-12-28 23:42:00,647 5th St, New York City,NY,10001 +302026,Wired Headphones,1,11.99,2019-12-08 22:35:00,625 Madison St, San Francisco,CA,94016 +302027,Lightning Charging Cable,1,14.95,2019-12-26 19:39:00,360 Maple St, Austin,TX,73301 +302028,USB-C Charging Cable,1,11.95,2019-12-10 09:24:00,639 Elm St, San Francisco,CA,94016 +302029,Wired Headphones,1,11.99,2019-12-06 00:02:00,17 Chestnut St, Los Angeles,CA,90001 +302030,Lightning Charging Cable,1,14.95,2019-12-11 18:42:00,302 Park St, Boston,MA,02215 +302031,Apple Airpods Headphones,1,150.0,2019-12-14 15:56:00,620 Washington St, Atlanta,GA,30301 +302032,USB-C Charging Cable,1,11.95,2019-12-19 09:02:00,484 River St, Seattle,WA,98101 +302033,Macbook Pro Laptop,1,1700.0,2019-12-25 23:13:00,885 4th St, Boston,MA,02215 +302034,AA Batteries (4-pack),1,3.84,2019-12-07 20:19:00,899 North St, Atlanta,GA,30301 +302035,Wired Headphones,1,11.99,2019-12-22 23:25:00,759 Meadow St, San Francisco,CA,94016 +302036,USB-C Charging Cable,1,11.95,2019-12-26 10:38:00,881 2nd St, Boston,MA,02215 +302037,Macbook Pro Laptop,1,1700.0,2019-12-17 07:38:00,94 Hill St, Los Angeles,CA,90001 +302038,USB-C Charging Cable,1,11.95,2019-12-15 18:38:00,860 Sunset St, Atlanta,GA,30301 +302039,Bose SoundSport Headphones,1,99.99,2019-12-13 23:58:00,720 8th St, San Francisco,CA,94016 +302040,USB-C Charging Cable,1,11.95,2019-12-06 13:11:00,818 River St, Seattle,WA,98101 +302041,Wired Headphones,1,11.99,2019-12-08 15:32:00,248 Main St, Dallas,TX,75001 +302042,20in Monitor,1,109.99,2019-12-04 19:10:00,667 West St, New York City,NY,10001 +302043,Apple Airpods Headphones,1,150.0,2019-12-05 17:40:00,599 2nd St, Los Angeles,CA,90001 +302044,Lightning Charging Cable,1,14.95,2019-12-16 19:28:00,751 Lincoln St, Los Angeles,CA,90001 +302045,USB-C Charging Cable,1,11.95,2019-12-17 11:38:00,779 West St, Los Angeles,CA,90001 +302046,AA Batteries (4-pack),1,3.84,2019-12-24 19:20:00,143 Forest St, New York City,NY,10001 +302047,AAA Batteries (4-pack),2,2.99,2019-12-17 23:56:00,831 Spruce St, Dallas,TX,75001 +302048,27in FHD Monitor,1,149.99,2019-12-25 08:32:00,953 South St, New York City,NY,10001 +302049,Wired Headphones,1,11.99,2019-12-08 11:05:00,911 North St, Los Angeles,CA,90001 +302050,AA Batteries (4-pack),1,3.84,2019-12-25 12:19:00,12 Elm St, Portland,OR,97035 +302051,AAA Batteries (4-pack),2,2.99,2019-12-26 12:09:00,367 Cherry St, San Francisco,CA,94016 +302052,Lightning Charging Cable,1,14.95,2019-12-25 18:51:00,972 Cherry St, New York City,NY,10001 +302053,Flatscreen TV,1,300.0,2019-12-13 05:48:00,647 Cedar St, New York City,NY,10001 +302054,27in FHD Monitor,1,149.99,2019-12-05 20:32:00,243 Cherry St, New York City,NY,10001 +302055,iPhone,1,700.0,2019-12-21 20:34:00,156 West St, Los Angeles,CA,90001 +302055,Wired Headphones,1,11.99,2019-12-21 20:34:00,156 West St, Los Angeles,CA,90001 +302056,27in FHD Monitor,1,149.99,2019-12-10 13:19:00,191 12th St, Dallas,TX,75001 +302057,AAA Batteries (4-pack),1,2.99,2019-12-16 14:26:00,736 11th St, Dallas,TX,75001 +302058,27in FHD Monitor,1,149.99,2019-12-31 11:46:00,248 Hickory St, Portland,OR,97035 +302059,Lightning Charging Cable,1,14.95,2019-12-06 08:16:00,241 9th St, New York City,NY,10001 +302060,AA Batteries (4-pack),1,3.84,2019-12-14 01:25:00,458 Hickory St, San Francisco,CA,94016 +302061,ThinkPad Laptop,1,999.99,2019-12-19 10:51:00,924 Hill St, Boston,MA,02215 +302062,Macbook Pro Laptop,1,1700.0,2019-12-25 18:56:00,343 Dogwood St, Portland,OR,97035 +302063,AA Batteries (4-pack),1,3.84,2019-12-07 02:08:00,803 Lake St, Dallas,TX,75001 +302064,AA Batteries (4-pack),1,3.84,2019-12-02 14:52:00,337 Johnson St, San Francisco,CA,94016 +302065,Lightning Charging Cable,1,14.95,2019-12-27 19:23:00,93 Willow St, Los Angeles,CA,90001 +302066,Wired Headphones,1,11.99,2019-12-11 11:22:00,942 Center St, San Francisco,CA,94016 +302067,USB-C Charging Cable,1,11.95,2019-12-21 13:13:00,276 Washington St, Atlanta,GA,30301 +302068,Wired Headphones,1,11.99,2019-12-11 19:46:00,174 Johnson St, Portland,OR,97035 +302069,ThinkPad Laptop,1,999.99,2019-12-21 13:18:00,675 Main St, Dallas,TX,75001 +302070,AA Batteries (4-pack),1,3.84,2019-12-03 08:55:00,802 Maple St, San Francisco,CA,94016 +302071,USB-C Charging Cable,1,11.95,2019-12-18 18:12:00,417 8th St, Boston,MA,02215 +302072,Apple Airpods Headphones,1,150.0,2019-12-19 22:25:00,245 Elm St, Austin,TX,73301 +302073,AAA Batteries (4-pack),1,2.99,2019-12-10 14:07:00,649 Madison St, Dallas,TX,75001 +302074,Lightning Charging Cable,1,14.95,2019-12-01 09:08:00,156 Spruce St, San Francisco,CA,94016 +302075,USB-C Charging Cable,1,11.95,2019-12-11 22:12:00,497 2nd St, San Francisco,CA,94016 +302076,AAA Batteries (4-pack),1,2.99,2019-12-25 13:28:00,851 Spruce St, Atlanta,GA,30301 +302077,AAA Batteries (4-pack),2,2.99,2019-12-01 22:45:00,664 Johnson St, Los Angeles,CA,90001 +302078,Bose SoundSport Headphones,1,99.99,2019-12-04 18:55:00,806 Wilson St, Boston,MA,02215 +302079,Flatscreen TV,1,300.0,2019-12-19 18:39:00,837 Dogwood St, San Francisco,CA,94016 +302080,AA Batteries (4-pack),2,3.84,2019-12-30 07:33:00,934 Lakeview St, Los Angeles,CA,90001 +302081,Lightning Charging Cable,1,14.95,2019-12-05 20:05:00,635 Lake St, Los Angeles,CA,90001 +302082,Google Phone,1,600.0,2019-12-05 11:32:00,680 Walnut St, Boston,MA,02215 +302083,27in FHD Monitor,1,149.99,2019-12-11 22:41:00,239 2nd St, New York City,NY,10001 +302084,Lightning Charging Cable,1,14.95,2019-12-02 13:43:00,55 12th St, San Francisco,CA,94016 +302085,Lightning Charging Cable,1,14.95,2019-12-25 11:57:00,232 Spruce St, San Francisco,CA,94016 +302086,Bose SoundSport Headphones,1,99.99,2019-12-18 09:31:00,955 Jackson St, Atlanta,GA,30301 +302087,AA Batteries (4-pack),1,3.84,2019-12-10 14:49:00,779 14th St, San Francisco,CA,94016 +302088,AAA Batteries (4-pack),4,2.99,2019-12-25 12:28:00,576 Willow St, San Francisco,CA,94016 +302089,Wired Headphones,1,11.99,2019-12-14 18:12:00,345 Wilson St, Austin,TX,73301 +302090,Apple Airpods Headphones,1,150.0,2019-12-11 13:21:00,908 6th St, Austin,TX,73301 +302091,27in FHD Monitor,1,149.99,2019-12-19 21:41:00,708 Spruce St, Los Angeles,CA,90001 +302092,USB-C Charging Cable,1,11.95,2019-12-28 11:31:00,411 12th St, Boston,MA,02215 +302093,34in Ultrawide Monitor,1,379.99,2019-12-06 10:25:00,731 Dogwood St, Austin,TX,73301 +302094,AAA Batteries (4-pack),1,2.99,2019-12-31 22:02:00,551 9th St, Los Angeles,CA,90001 +302095,AA Batteries (4-pack),1,3.84,2019-12-18 15:08:00,219 14th St, San Francisco,CA,94016 +302096,AAA Batteries (4-pack),1,2.99,2019-12-15 15:49:00,774 12th St, Los Angeles,CA,90001 +302097,AA Batteries (4-pack),1,3.84,2019-12-23 13:38:00,908 West St, Los Angeles,CA,90001 +302098,USB-C Charging Cable,1,11.95,2019-12-30 15:59:00,970 Highland St, Atlanta,GA,30301 +302099,AAA Batteries (4-pack),4,2.99,2019-12-23 22:44:00,277 Willow St, Austin,TX,73301 +302100,Flatscreen TV,1,300.0,2019-12-21 10:35:00,574 8th St, Boston,MA,02215 +302101,Wired Headphones,1,11.99,2019-12-17 12:13:00,16 12th St, San Francisco,CA,94016 +302102,Lightning Charging Cable,1,14.95,2019-12-03 20:37:00,555 Hickory St, Atlanta,GA,30301 +302103,AAA Batteries (4-pack),2,2.99,2019-12-06 14:43:00,825 Madison St, Los Angeles,CA,90001 +302104,20in Monitor,1,109.99,2019-12-07 13:08:00,127 Park St, Seattle,WA,98101 +302105,Apple Airpods Headphones,1,150.0,2019-12-17 10:15:00,218 River St, Atlanta,GA,30301 +302106,Apple Airpods Headphones,1,150.0,2019-12-31 12:59:00,972 Forest St, Atlanta,GA,30301 +302107,Apple Airpods Headphones,1,150.0,2019-12-16 16:44:00,510 Forest St, San Francisco,CA,94016 +302108,34in Ultrawide Monitor,1,379.99,2019-12-18 18:40:00,12 13th St, Los Angeles,CA,90001 +302109,Lightning Charging Cable,1,14.95,2019-12-09 10:57:00,154 Cherry St, Atlanta,GA,30301 +302110,AA Batteries (4-pack),2,3.84,2019-12-04 21:28:00,30 Forest St, Boston,MA,02215 +302111,Bose SoundSport Headphones,1,99.99,2019-12-18 21:27:00,69 13th St, San Francisco,CA,94016 +302112,AAA Batteries (4-pack),1,2.99,2019-12-28 13:05:00,869 Sunset St, New York City,NY,10001 +302113,USB-C Charging Cable,1,11.95,2019-12-24 18:05:00,157 North St, Austin,TX,73301 +302114,USB-C Charging Cable,1,11.95,2019-12-01 21:20:00,114 9th St, San Francisco,CA,94016 +302115,USB-C Charging Cable,1,11.95,2019-12-12 22:52:00,267 11th St, Dallas,TX,75001 +302116,LG Washing Machine,1,600.0,2019-12-08 20:08:00,674 9th St, Los Angeles,CA,90001 +302117,Google Phone,1,600.0,2019-12-09 10:56:00,450 Pine St, Los Angeles,CA,90001 +302118,iPhone,1,700.0,2019-12-09 08:38:00,881 Highland St, San Francisco,CA,94016 +302119,27in FHD Monitor,1,149.99,2019-12-07 14:11:00,603 Park St, San Francisco,CA,94016 +302120,Wired Headphones,1,11.99,2019-12-27 08:09:00,257 Washington St, Atlanta,GA,30301 +302121,Wired Headphones,1,11.99,2019-12-08 22:06:00,321 Highland St, Seattle,WA,98101 +302122,iPhone,1,700.0,2019-12-09 13:20:00,440 Washington St, San Francisco,CA,94016 +302123,Bose SoundSport Headphones,1,99.99,2019-12-07 12:55:00,362 South St, San Francisco,CA,94016 +302124,Bose SoundSport Headphones,1,99.99,2019-12-10 22:22:00,917 Sunset St, Atlanta,GA,30301 +302125,Google Phone,1,600.0,2019-12-16 17:12:00,885 11th St, San Francisco,CA,94016 +302126,USB-C Charging Cable,1,11.95,2019-12-18 18:00:00,986 Ridge St, Boston,MA,02215 +302127,Google Phone,1,600.0,2019-12-21 19:36:00,658 Hill St, San Francisco,CA,94016 +302127,Wired Headphones,1,11.99,2019-12-21 19:36:00,658 Hill St, San Francisco,CA,94016 +302128,AA Batteries (4-pack),1,3.84,2019-12-21 06:05:00,971 9th St, Boston,MA,02215 +302129,27in FHD Monitor,1,149.99,2019-12-24 23:00:00,10 8th St, San Francisco,CA,94016 +302130,27in 4K Gaming Monitor,1,389.99,2019-12-17 20:34:00,719 14th St, Los Angeles,CA,90001 +302131,Lightning Charging Cable,1,14.95,2019-12-31 12:39:00,911 Ridge St, Boston,MA,02215 +302132,LG Washing Machine,1,600.0,2019-12-29 05:36:00,158 Hill St, San Francisco,CA,94016 +302133,20in Monitor,1,109.99,2019-12-05 20:42:00,875 4th St, Boston,MA,02215 +302134,AAA Batteries (4-pack),1,2.99,2019-12-01 22:53:00,420 North St, Atlanta,GA,30301 +302135,Flatscreen TV,1,300.0,2019-12-18 10:29:00,750 West St, San Francisco,CA,94016 +302136,AA Batteries (4-pack),1,3.84,2019-12-15 10:36:00,558 Cedar St, San Francisco,CA,94016 +302137,34in Ultrawide Monitor,1,379.99,2019-12-26 19:28:00,577 10th St, Portland,OR,97035 +302138,27in 4K Gaming Monitor,1,389.99,2019-12-09 12:02:00,936 Cedar St, Los Angeles,CA,90001 +302139,Bose SoundSport Headphones,1,99.99,2019-12-28 14:56:00,81 Madison St, Dallas,TX,75001 +302140,27in 4K Gaming Monitor,1,389.99,2019-12-08 22:43:00,208 Hickory St, Los Angeles,CA,90001 +302141,20in Monitor,1,109.99,2019-12-08 13:06:00,346 Forest St, New York City,NY,10001 +302142,AAA Batteries (4-pack),2,2.99,2019-12-19 14:12:00,136 Spruce St, Boston,MA,02215 +302143,AA Batteries (4-pack),1,3.84,2019-12-18 19:51:00,965 13th St, Seattle,WA,98101 +302144,20in Monitor,1,109.99,2019-12-04 11:17:00,782 Adams St, Los Angeles,CA,90001 +302145,AA Batteries (4-pack),1,3.84,2019-12-17 14:14:00,339 Center St, Los Angeles,CA,90001 +302146,Lightning Charging Cable,1,14.95,2019-12-14 10:45:00,427 13th St, Dallas,TX,75001 +302146,34in Ultrawide Monitor,1,379.99,2019-12-14 10:45:00,427 13th St, Dallas,TX,75001 +302147,Macbook Pro Laptop,1,1700.0,2019-12-13 13:44:00,976 14th St, Los Angeles,CA,90001 +302148,Google Phone,1,600.0,2019-12-30 21:16:00,749 Church St, Boston,MA,02215 +302149,Apple Airpods Headphones,1,150.0,2019-12-29 23:05:00,271 Park St, Los Angeles,CA,90001 +302150,AAA Batteries (4-pack),1,2.99,2019-12-29 19:53:00,531 9th St, Dallas,TX,75001 +302151,AA Batteries (4-pack),2,3.84,2019-12-20 13:19:00,641 Cherry St, San Francisco,CA,94016 +302152,AAA Batteries (4-pack),3,2.99,2019-12-07 14:00:00,401 Madison St, Portland,OR,97035 +302153,34in Ultrawide Monitor,1,379.99,2019-12-16 17:17:00,601 4th St, San Francisco,CA,94016 +302154,Bose SoundSport Headphones,1,99.99,2019-12-30 18:04:00,454 Pine St, Dallas,TX,75001 +302154,Apple Airpods Headphones,1,150.0,2019-12-30 18:04:00,454 Pine St, Dallas,TX,75001 +302155,Lightning Charging Cable,1,14.95,2019-12-26 20:10:00,837 Cherry St, San Francisco,CA,94016 +302156,USB-C Charging Cable,1,11.95,2019-12-23 11:47:00,444 West St, Seattle,WA,98101 +302157,Bose SoundSport Headphones,1,99.99,2019-12-14 14:17:00,861 Cedar St, Los Angeles,CA,90001 +302158,ThinkPad Laptop,1,999.99,2019-12-06 16:43:00,585 1st St, San Francisco,CA,94016 +302159,Flatscreen TV,1,300.0,2019-12-31 21:03:00,721 Dogwood St, Los Angeles,CA,90001 +302160,Lightning Charging Cable,1,14.95,2019-12-26 13:46:00,40 Walnut St, San Francisco,CA,94016 +302161,Flatscreen TV,1,300.0,2019-12-15 14:20:00,496 12th St, Boston,MA,02215 +302162,Wired Headphones,1,11.99,2019-12-31 00:00:00,369 Lakeview St, New York City,NY,10001 +302163,27in FHD Monitor,1,149.99,2019-12-29 18:31:00,264 Hickory St, Atlanta,GA,30301 +302164,Lightning Charging Cable,1,14.95,2019-12-07 10:14:00,89 River St, Boston,MA,02215 +302165,34in Ultrawide Monitor,1,379.99,2019-12-16 21:50:00,271 10th St, San Francisco,CA,94016 +302166,34in Ultrawide Monitor,1,379.99,2019-12-13 22:57:00,447 2nd St, Los Angeles,CA,90001 +302167,Lightning Charging Cable,1,14.95,2019-12-28 13:44:00,992 6th St, San Francisco,CA,94016 +302168,Flatscreen TV,1,300.0,2019-12-23 10:09:00,549 Cedar St, Portland,OR,97035 +302169,AAA Batteries (4-pack),1,2.99,2019-12-31 13:39:00,623 West St, Boston,MA,02215 +302170,AAA Batteries (4-pack),1,2.99,2019-12-05 13:33:00,117 Jefferson St, Boston,MA,02215 +302171,USB-C Charging Cable,1,11.95,2019-12-30 19:05:00,683 10th St, New York City,NY,10001 +302171,Wired Headphones,1,11.99,2019-12-30 19:05:00,683 10th St, New York City,NY,10001 +302172,AA Batteries (4-pack),1,3.84,2019-12-25 14:34:00,871 10th St, Atlanta,GA,30301 +302173,34in Ultrawide Monitor,1,379.99,2019-12-26 18:59:00,968 Dogwood St, San Francisco,CA,94016 +302174,ThinkPad Laptop,1,999.99,2019-12-20 17:20:00,946 9th St, New York City,NY,10001 +302175,AA Batteries (4-pack),1,3.84,2019-12-18 11:54:00,81 West St, San Francisco,CA,94016 +302176,USB-C Charging Cable,1,11.95,2019-12-06 17:51:00,960 Lincoln St, Boston,MA,02215 +302177,Apple Airpods Headphones,1,150.0,2019-12-21 15:44:00,476 Main St, San Francisco,CA,94016 +302178,Lightning Charging Cable,2,14.95,2019-12-19 12:17:00,633 1st St, Boston,MA,02215 +302179,AA Batteries (4-pack),1,3.84,2019-12-11 14:41:00,98 Cedar St, New York City,NY,10001 +302180,AA Batteries (4-pack),1,3.84,2019-12-28 12:17:00,291 Hill St, Atlanta,GA,30301 +302181,USB-C Charging Cable,1,11.95,2019-12-04 15:41:00,891 Lake St, San Francisco,CA,94016 +302182,AA Batteries (4-pack),2,3.84,2019-12-21 22:19:00,283 5th St, San Francisco,CA,94016 +302183,Wired Headphones,1,11.99,2019-12-16 09:05:00,291 7th St, San Francisco,CA,94016 +302184,Lightning Charging Cable,1,14.95,2019-12-16 15:08:00,421 River St, Atlanta,GA,30301 +302185,AAA Batteries (4-pack),1,2.99,2019-12-23 09:42:00,931 Willow St, San Francisco,CA,94016 +302186,AAA Batteries (4-pack),1,2.99,2019-12-24 10:04:00,516 11th St, Los Angeles,CA,90001 +302187,Lightning Charging Cable,2,14.95,2019-12-11 13:25:00,112 Church St, Los Angeles,CA,90001 +302188,USB-C Charging Cable,1,11.95,2019-12-09 19:02:00,123 Spruce St, Los Angeles,CA,90001 +302189,AA Batteries (4-pack),1,3.84,2019-12-08 21:57:00,601 10th St, Los Angeles,CA,90001 +302190,AA Batteries (4-pack),1,3.84,2019-12-03 18:14:00,304 Park St, Los Angeles,CA,90001 +302191,Lightning Charging Cable,1,14.95,2019-12-02 13:51:00,130 Ridge St, Austin,TX,73301 +302192,ThinkPad Laptop,1,999.99,2019-12-21 10:19:00,314 12th St, Los Angeles,CA,90001 +302193,Wired Headphones,1,11.99,2019-12-11 10:35:00,894 Pine St, San Francisco,CA,94016 +302194,Google Phone,1,600.0,2019-12-05 10:08:00,600 Maple St, Dallas,TX,75001 +302195,Apple Airpods Headphones,1,150.0,2019-12-30 18:26:00,405 Church St, San Francisco,CA,94016 +302196,Wired Headphones,1,11.99,2019-12-26 12:46:00,435 5th St, New York City,NY,10001 +302197,AAA Batteries (4-pack),1,2.99,2019-12-16 20:30:00,960 Elm St, Atlanta,GA,30301 +302198,Lightning Charging Cable,1,14.95,2019-12-29 04:15:00,402 6th St, Dallas,TX,75001 +302199,Wired Headphones,1,11.99,2019-12-15 10:32:00,493 River St, Boston,MA,02215 +302200,AA Batteries (4-pack),1,3.84,2019-12-31 01:48:00,334 4th St, Atlanta,GA,30301 +302201,Apple Airpods Headphones,1,150.0,2019-12-18 14:58:00,252 9th St, Los Angeles,CA,90001 +302202,Bose SoundSport Headphones,1,99.99,2019-12-29 17:28:00,380 6th St, Dallas,TX,75001 +302203,Wired Headphones,1,11.99,2019-12-06 20:04:00,261 9th St, Austin,TX,73301 +302204,AAA Batteries (4-pack),3,2.99,2019-12-20 12:49:00,563 Elm St, Boston,MA,02215 +302205,AAA Batteries (4-pack),1,2.99,2019-12-30 06:59:00,506 14th St, San Francisco,CA,94016 +302206,USB-C Charging Cable,1,11.95,2019-12-12 18:04:00,95 Lincoln St, Portland,OR,97035 +302207,USB-C Charging Cable,1,11.95,2019-12-16 10:56:00,917 Jefferson St, Los Angeles,CA,90001 +302208,AAA Batteries (4-pack),2,2.99,2019-12-16 00:11:00,935 Park St, Seattle,WA,98101 +302209,USB-C Charging Cable,1,11.95,2019-12-14 10:42:00,16 Lincoln St, Boston,MA,02215 +302210,Wired Headphones,1,11.99,2019-12-19 14:10:00,921 Johnson St, San Francisco,CA,94016 +302211,AAA Batteries (4-pack),1,2.99,2019-12-06 12:05:00,151 8th St, Austin,TX,73301 +302212,USB-C Charging Cable,1,11.95,2019-12-24 18:17:00,831 Meadow St, Portland,OR,97035 +302213,Flatscreen TV,1,300.0,2019-12-06 15:35:00,283 Lake St, Austin,TX,73301 +302214,Apple Airpods Headphones,1,150.0,2019-12-06 17:51:00,973 Jackson St, San Francisco,CA,94016 +302215,AA Batteries (4-pack),2,3.84,2019-12-14 10:07:00,655 5th St, Portland,OR,97035 +302216,27in FHD Monitor,1,149.99,2019-12-11 21:46:00,510 Center St, Atlanta,GA,30301 +302217,Wired Headphones,1,11.99,2019-12-24 10:48:00,508 Chestnut St, San Francisco,CA,94016 +302218,27in FHD Monitor,1,149.99,2019-12-31 16:41:00,402 Sunset St, Los Angeles,CA,90001 +302219,AAA Batteries (4-pack),1,2.99,2019-12-07 15:34:00,828 2nd St, San Francisco,CA,94016 +302220,AAA Batteries (4-pack),1,2.99,2019-12-22 00:42:00,59 Jefferson St, Atlanta,GA,30301 +302221,Wired Headphones,1,11.99,2019-12-15 21:27:00,868 Cherry St, New York City,NY,10001 +302222,Bose SoundSport Headphones,1,99.99,2019-12-26 05:20:00,359 Pine St, New York City,NY,10001 +302223,AAA Batteries (4-pack),1,2.99,2019-12-20 08:37:00,464 11th St, San Francisco,CA,94016 +302224,USB-C Charging Cable,1,11.95,2019-12-08 11:41:00,739 North St, Seattle,WA,98101 +302225,Apple Airpods Headphones,1,150.0,2019-12-14 15:13:00,961 Lincoln St, New York City,NY,10001 +302226,AAA Batteries (4-pack),5,2.99,2019-12-24 10:22:00,894 7th St, New York City,NY,10001 +302227,Lightning Charging Cable,1,14.95,2019-12-14 12:24:00,767 8th St, Portland,OR,97035 +302228,34in Ultrawide Monitor,1,379.99,2019-12-12 15:17:00,350 Madison St, San Francisco,CA,94016 +302229,AA Batteries (4-pack),1,3.84,2019-12-05 17:23:00,131 4th St, Los Angeles,CA,90001 +302230,Lightning Charging Cable,1,14.95,2019-12-16 20:19:00,847 Johnson St, Atlanta,GA,30301 +302231,AAA Batteries (4-pack),1,2.99,2019-12-15 12:11:00,285 Washington St, Los Angeles,CA,90001 +302232,27in FHD Monitor,1,149.99,2019-12-23 19:30:00,79 Wilson St, Boston,MA,02215 +302233,Wired Headphones,1,11.99,2019-12-27 05:34:00,347 Ridge St, Dallas,TX,75001 +302234,USB-C Charging Cable,2,11.95,2019-12-09 16:03:00,520 Lincoln St, Dallas,TX,75001 +302235,Wired Headphones,1,11.99,2019-12-30 12:13:00,701 13th St, New York City,NY,10001 +302236,27in FHD Monitor,1,149.99,2019-12-17 15:39:00,582 Park St, New York City,NY,10001 +302237,Wired Headphones,1,11.99,2019-12-11 07:05:00,355 Meadow St, San Francisco,CA,94016 +302238,Bose SoundSport Headphones,1,99.99,2019-12-19 14:34:00,15 Lincoln St, San Francisco,CA,94016 +302239,Lightning Charging Cable,1,14.95,2019-12-15 19:53:00,843 6th St, Dallas,TX,75001 +302240,Lightning Charging Cable,1,14.95,2019-12-09 19:28:00,363 14th St, San Francisco,CA,94016 +302241,Bose SoundSport Headphones,1,99.99,2019-12-01 20:42:00,586 9th St, Dallas,TX,75001 +302242,Flatscreen TV,1,300.0,2019-12-09 16:58:00,973 Spruce St, Seattle,WA,98101 +302243,USB-C Charging Cable,1,11.95,2019-12-20 19:28:00,833 River St, New York City,NY,10001 +302244,34in Ultrawide Monitor,1,379.99,2019-12-25 22:46:00,79 Ridge St, San Francisco,CA,94016 +302245,USB-C Charging Cable,1,11.95,2019-12-11 13:08:00,129 Adams St, New York City,NY,10001 +302246,27in 4K Gaming Monitor,1,389.99,2019-12-08 13:14:00,686 Forest St, Los Angeles,CA,90001 +302247,AA Batteries (4-pack),2,3.84,2019-12-29 23:00:00,674 1st St, Los Angeles,CA,90001 +302248,ThinkPad Laptop,1,999.99,2019-12-08 17:58:00,88 Dogwood St, Seattle,WA,98101 +302249,AAA Batteries (4-pack),2,2.99,2019-12-29 20:43:00,426 Main St, Portland,OR,97035 +302250,Apple Airpods Headphones,1,150.0,2019-12-10 13:30:00,67 South St, Atlanta,GA,30301 +302251,Bose SoundSport Headphones,1,99.99,2019-12-26 14:28:00,322 Lincoln St, Atlanta,GA,30301 +302252,27in 4K Gaming Monitor,1,389.99,2019-12-01 19:27:00,244 Center St, Los Angeles,CA,90001 +302253,AAA Batteries (4-pack),1,2.99,2019-12-31 11:54:00,748 Elm St, New York City,NY,10001 +302254,Lightning Charging Cable,1,14.95,2019-12-03 09:13:00,831 Lake St, Los Angeles,CA,90001 +302255,USB-C Charging Cable,1,11.95,2019-12-15 11:00:00,626 Washington St, Atlanta,GA,30301 +302256,Wired Headphones,1,11.99,2019-12-10 12:12:00,797 Elm St, Austin,TX,73301 +302257,AAA Batteries (4-pack),2,2.99,2019-12-25 10:37:00,774 Madison St, Los Angeles,CA,90001 +302258,AA Batteries (4-pack),2,3.84,2019-12-06 19:10:00,577 1st St, Seattle,WA,98101 +302259,AA Batteries (4-pack),2,3.84,2019-12-18 18:14:00,320 13th St, Boston,MA,02215 +302260,USB-C Charging Cable,1,11.95,2019-12-19 18:39:00,192 5th St, Austin,TX,73301 +302261,Apple Airpods Headphones,1,150.0,2019-12-01 23:17:00,127 12th St, Boston,MA,02215 +302262,AAA Batteries (4-pack),1,2.99,2019-12-06 19:37:00,268 Center St, Atlanta,GA,30301 +302263,20in Monitor,1,109.99,2019-12-07 10:37:00,513 Park St, Boston,MA,02215 +302264,AA Batteries (4-pack),1,3.84,2019-12-05 21:13:00,592 River St, Boston,MA,02215 +302265,Apple Airpods Headphones,1,150.0,2019-12-06 12:10:00,669 Highland St, Atlanta,GA,30301 +302266,Lightning Charging Cable,1,14.95,2019-12-18 16:23:00,10 9th St, New York City,NY,10001 +302267,USB-C Charging Cable,1,11.95,2019-12-14 11:14:00,346 11th St, San Francisco,CA,94016 +302268,USB-C Charging Cable,1,11.95,2019-12-29 15:27:00,558 12th St, Los Angeles,CA,90001 +302269,Apple Airpods Headphones,1,150.0,2019-12-09 20:39:00,817 12th St, San Francisco,CA,94016 +302269,Google Phone,1,600.0,2019-12-09 20:39:00,817 12th St, San Francisco,CA,94016 +302270,AAA Batteries (4-pack),1,2.99,2019-12-27 19:23:00,872 Maple St, New York City,NY,10001 +302271,27in 4K Gaming Monitor,1,389.99,2019-12-20 16:51:00,257 12th St, Los Angeles,CA,90001 +302272,Lightning Charging Cable,1,14.95,2019-12-15 11:52:00,549 Ridge St, Los Angeles,CA,90001 +302273,USB-C Charging Cable,1,11.95,2019-12-09 22:53:00,999 4th St, Seattle,WA,98101 +302274,AA Batteries (4-pack),1,3.84,2019-12-11 20:40:00,415 Pine St, New York City,NY,10001 +302275,AAA Batteries (4-pack),1,2.99,2019-12-10 16:14:00,623 West St, Boston,MA,02215 +302276,AAA Batteries (4-pack),2,2.99,2019-12-26 08:32:00,90 Main St, New York City,NY,10001 +302277,Bose SoundSport Headphones,1,99.99,2019-12-23 21:48:00,316 Forest St, Los Angeles,CA,90001 +302278,Apple Airpods Headphones,1,150.0,2019-12-02 15:36:00,174 Jefferson St, New York City,NY,10001 +302279,AAA Batteries (4-pack),1,2.99,2019-12-29 15:31:00,510 Walnut St, San Francisco,CA,94016 +302280,AA Batteries (4-pack),1,3.84,2019-12-14 23:18:00,186 Cedar St, Austin,TX,73301 +302281,AAA Batteries (4-pack),1,2.99,2019-12-07 18:28:00,270 5th St, New York City,NY,10001 +302282,Lightning Charging Cable,1,14.95,2019-12-21 21:24:00,37 Hickory St, Boston,MA,02215 +302283,USB-C Charging Cable,1,11.95,2019-12-16 19:49:00,163 Cedar St, San Francisco,CA,94016 +302284,USB-C Charging Cable,1,11.95,2019-12-21 04:08:00,743 Lincoln St, Dallas,TX,75001 +302285,Bose SoundSport Headphones,1,99.99,2019-12-18 23:10:00,793 Spruce St, Seattle,WA,98101 +302286,USB-C Charging Cable,1,11.95,2019-12-25 16:22:00,431 Main St, Boston,MA,02215 +302287,AA Batteries (4-pack),3,3.84,2019-12-30 04:15:00,272 Main St, Los Angeles,CA,90001 +302288,34in Ultrawide Monitor,1,379.99,2019-12-18 18:51:00,862 Chestnut St, Atlanta,GA,30301 +302289,Lightning Charging Cable,1,14.95,2019-12-15 06:33:00,419 Main St, San Francisco,CA,94016 +302290,Flatscreen TV,1,300.0,2019-12-01 20:28:00,549 2nd St, New York City,NY,10001 +302291,AAA Batteries (4-pack),3,2.99,2019-12-02 19:19:00,534 Madison St, San Francisco,CA,94016 +302292,27in FHD Monitor,1,149.99,2019-12-10 11:04:00,10 4th St, San Francisco,CA,94016 +302293,AAA Batteries (4-pack),2,2.99,2019-12-17 11:36:00,71 7th St, New York City,NY,10001 +302294,AAA Batteries (4-pack),4,2.99,2019-12-30 15:49:00,233 Ridge St, Austin,TX,73301 +302295,iPhone,1,700.0,2019-12-27 10:12:00,215 Madison St, Seattle,WA,98101 +302296,Wired Headphones,1,11.99,2019-12-14 18:35:00,92 Maple St, San Francisco,CA,94016 +302297,Bose SoundSport Headphones,1,99.99,2019-12-24 20:09:00,817 Church St, San Francisco,CA,94016 +302298,Wired Headphones,3,11.99,2019-12-16 12:31:00,47 Washington St, Boston,MA,02215 +302299,USB-C Charging Cable,1,11.95,2019-12-07 19:47:00,582 Cedar St, Los Angeles,CA,90001 +302300,20in Monitor,1,109.99,2019-12-18 13:51:00,88 River St, Atlanta,GA,30301 +302301,USB-C Charging Cable,1,11.95,2019-12-06 23:41:00,203 Forest St, New York City,NY,10001 +302302,Wired Headphones,1,11.99,2019-12-03 11:16:00,636 South St, San Francisco,CA,94016 +302303,AA Batteries (4-pack),1,3.84,2019-12-02 21:59:00,491 Forest St, New York City,NY,10001 +302304,USB-C Charging Cable,1,11.95,2019-12-13 07:21:00,250 Lakeview St, San Francisco,CA,94016 +302305,Google Phone,1,600.0,2019-12-14 12:44:00,917 North St, Boston,MA,02215 +302306,AA Batteries (4-pack),1,3.84,2019-12-07 00:55:00,489 Hickory St, Los Angeles,CA,90001 +302307,Lightning Charging Cable,1,14.95,2019-12-02 20:19:00,264 River St, New York City,NY,10001 +302308,ThinkPad Laptop,1,999.99,2019-12-11 14:29:00,565 Forest St, San Francisco,CA,94016 +302309,34in Ultrawide Monitor,1,379.99,2019-12-19 10:33:00,649 10th St, New York City,NY,10001 +302310,AA Batteries (4-pack),2,3.84,2019-12-29 08:26:00,575 6th St, Seattle,WA,98101 +302311,20in Monitor,1,109.99,2019-12-10 10:00:00,270 Church St, Seattle,WA,98101 +302312,Google Phone,1,600.0,2019-12-04 00:00:00,442 9th St, Seattle,WA,98101 +302313,Bose SoundSport Headphones,1,99.99,2019-12-31 13:06:00,685 Lakeview St, San Francisco,CA,94016 +302314,Bose SoundSport Headphones,1,99.99,2019-12-16 18:59:00,785 Adams St, Los Angeles,CA,90001 +302315,USB-C Charging Cable,1,11.95,2019-12-20 11:53:00,450 Washington St, San Francisco,CA,94016 +302316,Lightning Charging Cable,1,14.95,2019-12-14 01:40:00,852 8th St, Dallas,TX,75001 +302317,USB-C Charging Cable,1,11.95,2019-12-08 05:23:00,93 10th St, Boston,MA,02215 +302318,Lightning Charging Cable,2,14.95,2019-12-14 18:06:00,160 Maple St, New York City,NY,10001 +302319,34in Ultrawide Monitor,1,379.99,2019-12-23 19:48:00,442 10th St, San Francisco,CA,94016 +302320,Wired Headphones,1,11.99,2019-12-07 18:38:00,332 Jackson St, Boston,MA,02215 +302321,AA Batteries (4-pack),1,3.84,2019-12-04 21:57:00,472 Dogwood St, San Francisco,CA,94016 +302322,20in Monitor,1,109.99,2019-12-14 19:44:00,453 Adams St, Atlanta,GA,30301 +302322,Wired Headphones,2,11.99,2019-12-14 19:44:00,453 Adams St, Atlanta,GA,30301 +302323,AAA Batteries (4-pack),2,2.99,2019-12-19 19:19:00,534 13th St, Portland,OR,97035 +302324,Apple Airpods Headphones,1,150.0,2019-12-14 16:31:00,351 Lake St, Portland,OR,97035 +302325,Apple Airpods Headphones,1,150.0,2019-12-07 17:42:00,718 Johnson St, Atlanta,GA,30301 +302326,Apple Airpods Headphones,1,150.0,2019-12-29 12:58:00,154 Johnson St, Boston,MA,02215 +302327,Lightning Charging Cable,1,14.95,2019-12-13 14:49:00,533 Chestnut St, New York City,NY,10001 +302328,Wired Headphones,1,11.99,2019-12-02 20:16:00,627 West St, New York City,NY,10001 +302329,iPhone,1,700.0,2019-12-17 08:18:00,754 11th St, San Francisco,CA,94016 +302330,27in FHD Monitor,1,149.99,2019-12-03 02:08:00,157 Madison St, Portland,OR,97035 +302331,USB-C Charging Cable,1,11.95,2019-12-23 11:05:00,101 1st St, Austin,TX,73301 +302332,iPhone,1,700.0,2019-12-11 15:33:00,575 Jefferson St, Los Angeles,CA,90001 +302332,Apple Airpods Headphones,1,150.0,2019-12-11 15:33:00,575 Jefferson St, Los Angeles,CA,90001 +302333,USB-C Charging Cable,1,11.95,2019-12-29 15:11:00,244 Meadow St, San Francisco,CA,94016 +302334,USB-C Charging Cable,3,11.95,2019-12-15 18:09:00,129 2nd St, Dallas,TX,75001 +302335,Lightning Charging Cable,1,14.95,2019-12-02 22:59:00,772 Hickory St, Los Angeles,CA,90001 +302336,Flatscreen TV,1,300.0,2019-12-12 12:38:00,626 7th St, New York City,NY,10001 +302337,USB-C Charging Cable,1,11.95,2019-12-28 16:14:00,787 Cedar St, Austin,TX,73301 +302338,Apple Airpods Headphones,1,150.0,2019-12-14 12:38:00,189 2nd St, San Francisco,CA,94016 +302339,USB-C Charging Cable,1,11.95,2019-12-08 08:21:00,307 4th St, San Francisco,CA,94016 +302340,USB-C Charging Cable,1,11.95,2019-12-13 16:14:00,692 Lincoln St, New York City,NY,10001 +302341,Lightning Charging Cable,1,14.95,2019-12-20 19:46:00,294 Lake St, San Francisco,CA,94016 +302342,Bose SoundSport Headphones,1,99.99,2019-12-23 07:55:00,68 9th St, Portland,OR,97035 +302343,AA Batteries (4-pack),2,3.84,2019-12-22 13:30:00,401 Ridge St, Portland,ME,04101 +302344,Lightning Charging Cable,1,14.95,2019-12-17 19:16:00,643 Hickory St, San Francisco,CA,94016 +302345,Google Phone,1,600.0,2019-12-19 00:38:00,427 Spruce St, Boston,MA,02215 +302346,USB-C Charging Cable,1,11.95,2019-12-23 11:53:00,779 North St, Austin,TX,73301 +302347,Wired Headphones,1,11.99,2019-12-08 12:48:00,73 Jefferson St, Los Angeles,CA,90001 +302348,Wired Headphones,1,11.99,2019-12-08 11:23:00,414 South St, San Francisco,CA,94016 +302349,Bose SoundSport Headphones,1,99.99,2019-12-28 03:43:00,857 8th St, New York City,NY,10001 +302350,Wired Headphones,1,11.99,2019-12-10 18:55:00,552 Sunset St, San Francisco,CA,94016 +302351,Wired Headphones,3,11.99,2019-12-18 13:12:00,339 Center St, New York City,NY,10001 +302352,USB-C Charging Cable,1,11.95,2019-12-26 11:43:00,572 7th St, San Francisco,CA,94016 +302353,Flatscreen TV,1,300.0,2019-12-18 08:54:00,142 Madison St, Austin,TX,73301 +302354,Flatscreen TV,1,300.0,2019-12-29 20:03:00,47 Park St, San Francisco,CA,94016 +302355,AA Batteries (4-pack),1,3.84,2019-12-06 13:07:00,142 Jefferson St, Boston,MA,02215 +302356,Bose SoundSport Headphones,1,99.99,2019-12-06 10:44:00,923 Park St, San Francisco,CA,94016 +302357,AAA Batteries (4-pack),1,2.99,2019-12-21 18:02:00,954 Willow St, New York City,NY,10001 +302358,ThinkPad Laptop,1,999.99,2019-12-31 21:37:00,788 12th St, New York City,NY,10001 +302359,AA Batteries (4-pack),4,3.84,2019-12-03 15:11:00,628 Hickory St, Los Angeles,CA,90001 +302360,Macbook Pro Laptop,1,1700.0,2019-12-20 22:17:00,895 Meadow St, New York City,NY,10001 +302361,Lightning Charging Cable,1,14.95,2019-12-06 13:20:00,617 Meadow St, San Francisco,CA,94016 +302362,Lightning Charging Cable,1,14.95,2019-12-29 11:59:00,566 Ridge St, San Francisco,CA,94016 +302363,Bose SoundSport Headphones,1,99.99,2019-12-11 11:37:00,574 8th St, Boston,MA,02215 +302364,Apple Airpods Headphones,1,150.0,2019-12-21 17:28:00,320 Adams St, Atlanta,GA,30301 +302365,Bose SoundSport Headphones,1,99.99,2019-12-12 09:26:00,662 River St, Los Angeles,CA,90001 +302366,USB-C Charging Cable,1,11.95,2019-12-07 20:57:00,831 West St, San Francisco,CA,94016 +302367,Wired Headphones,1,11.99,2019-12-01 17:46:00,12 Wilson St, San Francisco,CA,94016 +302368,34in Ultrawide Monitor,1,379.99,2019-12-07 00:00:00,482 6th St, Boston,MA,02215 +302369,Wired Headphones,1,11.99,2019-12-16 20:45:00,591 Center St, Boston,MA,02215 +302370,AA Batteries (4-pack),2,3.84,2019-12-01 13:22:00,656 9th St, San Francisco,CA,94016 +302371,LG Washing Machine,1,600.0,2019-12-04 11:25:00,798 10th St, Seattle,WA,98101 +302372,Bose SoundSport Headphones,1,99.99,2019-12-06 20:49:00,513 Johnson St, San Francisco,CA,94016 +302373,AAA Batteries (4-pack),2,2.99,2019-12-30 18:44:00,808 Hickory St, Seattle,WA,98101 +302374,Google Phone,1,600.0,2019-12-24 21:17:00,668 Lake St, New York City,NY,10001 +302375,AA Batteries (4-pack),1,3.84,2019-12-15 17:28:00,517 9th St, Los Angeles,CA,90001 +302376,Lightning Charging Cable,1,14.95,2019-12-03 18:57:00,279 Dogwood St, Los Angeles,CA,90001 +302377,AAA Batteries (4-pack),1,2.99,2019-12-12 18:17:00,374 Wilson St, Los Angeles,CA,90001 +302378,AAA Batteries (4-pack),1,2.99,2019-12-14 06:50:00,493 Hickory St, Los Angeles,CA,90001 +302379,Lightning Charging Cable,1,14.95,2019-12-14 17:14:00,26 Willow St, Boston,MA,02215 +302380,AAA Batteries (4-pack),6,2.99,2019-12-24 12:14:00,54 Dogwood St, Seattle,WA,98101 +302381,USB-C Charging Cable,2,11.95,2019-12-24 23:18:00,334 Jefferson St, Boston,MA,02215 +302382,AAA Batteries (4-pack),2,2.99,2019-12-27 21:44:00,396 10th St, Seattle,WA,98101 +302383,USB-C Charging Cable,1,11.95,2019-12-25 13:08:00,10 Meadow St, Portland,OR,97035 +302384,AA Batteries (4-pack),1,3.84,2019-12-15 09:09:00,72 2nd St, Seattle,WA,98101 +302385,Wired Headphones,1,11.99,2019-12-13 20:44:00,938 Maple St, New York City,NY,10001 +302386,Vareebadd Phone,1,400.0,2019-12-17 23:06:00,165 7th St, Los Angeles,CA,90001 +302387,AAA Batteries (4-pack),3,2.99,2019-12-17 09:11:00,693 6th St, Boston,MA,02215 +302388,AAA Batteries (4-pack),2,2.99,2019-12-06 17:37:00,692 West St, Dallas,TX,75001 +302388,Apple Airpods Headphones,1,150.0,2019-12-06 17:37:00,692 West St, Dallas,TX,75001 +302389,Macbook Pro Laptop,1,1700.0,2019-12-18 17:53:00,644 1st St, Los Angeles,CA,90001 +302390,Lightning Charging Cable,2,14.95,2019-12-12 13:57:00,435 1st St, New York City,NY,10001 +302391,27in 4K Gaming Monitor,1,389.99,2019-12-26 00:37:00,907 Madison St, Dallas,TX,75001 +302392,AAA Batteries (4-pack),1,2.99,2019-12-09 13:05:00,999 West St, Dallas,TX,75001 +302393,Lightning Charging Cable,1,14.95,2020-01-01 00:14:00,108 Jefferson St, Boston,MA,02215 +302394,USB-C Charging Cable,1,11.95,2019-12-27 14:34:00,856 Chestnut St, Boston,MA,02215 +302395,USB-C Charging Cable,1,11.95,2019-12-05 00:50:00,945 4th St, Seattle,WA,98101 +302396,AA Batteries (4-pack),1,3.84,2019-12-30 17:59:00,464 1st St, New York City,NY,10001 +302397,Macbook Pro Laptop,1,1700.0,2019-12-02 10:53:00,549 Cedar St, Portland,OR,97035 +302398,AAA Batteries (4-pack),2,2.99,2019-12-04 20:56:00,750 4th St, San Francisco,CA,94016 +302399,AA Batteries (4-pack),1,3.84,2019-12-30 19:29:00,386 Center St, San Francisco,CA,94016 +302400,27in FHD Monitor,1,149.99,2019-12-23 19:13:00,16 Forest St, Los Angeles,CA,90001 +302401,iPhone,1,700.0,2019-12-18 23:12:00,382 Cherry St, Dallas,TX,75001 +302401,Lightning Charging Cable,1,14.95,2019-12-18 23:12:00,382 Cherry St, Dallas,TX,75001 +302402,Macbook Pro Laptop,1,1700.0,2019-12-23 12:24:00,1 12th St, San Francisco,CA,94016 +302403,Lightning Charging Cable,1,14.95,2019-12-03 18:01:00,327 7th St, Portland,OR,97035 +302404,Bose SoundSport Headphones,1,99.99,2019-12-18 09:42:00,755 Lakeview St, Portland,OR,97035 +302405,AAA Batteries (4-pack),1,2.99,2019-12-01 19:34:00,5 Willow St, New York City,NY,10001 +302406,Apple Airpods Headphones,1,150.0,2019-12-30 17:49:00,173 Johnson St, New York City,NY,10001 +302407,USB-C Charging Cable,1,11.95,2019-12-21 08:59:00,178 1st St, Dallas,TX,75001 +302408,Lightning Charging Cable,2,14.95,2019-12-14 12:32:00,431 Sunset St, Seattle,WA,98101 +302409,20in Monitor,1,109.99,2019-12-23 15:21:00,176 North St, San Francisco,CA,94016 +302410,AAA Batteries (4-pack),1,2.99,2019-12-23 18:15:00,124 Sunset St, New York City,NY,10001 +302411,USB-C Charging Cable,1,11.95,2019-12-07 02:15:00,21 Highland St, San Francisco,CA,94016 +302412,Apple Airpods Headphones,1,150.0,2019-12-07 08:49:00,87 Lincoln St, New York City,NY,10001 +302413,LG Washing Machine,1,600.0,2019-12-20 22:25:00,191 Hill St, New York City,NY,10001 +302414,Apple Airpods Headphones,1,150.0,2019-12-06 11:28:00,349 Church St, Austin,TX,73301 +302415,Bose SoundSport Headphones,1,99.99,2019-12-16 01:14:00,835 Main St, Los Angeles,CA,90001 +302416,Google Phone,1,600.0,2019-12-12 09:35:00,280 14th St, Seattle,WA,98101 +302417,Apple Airpods Headphones,1,150.0,2019-12-28 13:31:00,302 Johnson St, Atlanta,GA,30301 +302418,Lightning Charging Cable,1,14.95,2019-12-22 19:49:00,649 Washington St, Atlanta,GA,30301 +302419,Flatscreen TV,1,300.0,2019-12-21 13:21:00,97 Main St, Dallas,TX,75001 +302420,AAA Batteries (4-pack),1,2.99,2019-12-31 12:06:00,311 Walnut St, New York City,NY,10001 +302421,USB-C Charging Cable,1,11.95,2019-12-26 03:03:00,969 5th St, Austin,TX,73301 +302422,Bose SoundSport Headphones,1,99.99,2019-12-03 20:59:00,16 Adams St, New York City,NY,10001 +302423,Lightning Charging Cable,1,14.95,2019-12-12 19:14:00,70 9th St, Los Angeles,CA,90001 +302424,Bose SoundSport Headphones,1,99.99,2019-12-17 19:27:00,685 Ridge St, San Francisco,CA,94016 +302425,Wired Headphones,2,11.99,2019-12-21 12:51:00,812 Madison St, Boston,MA,02215 +302426,USB-C Charging Cable,1,11.95,2019-12-23 04:05:00,813 Lake St, Los Angeles,CA,90001 +302427,Lightning Charging Cable,1,14.95,2019-12-02 17:02:00,723 Meadow St, Atlanta,GA,30301 +302428,Google Phone,1,600.0,2019-12-18 21:10:00,896 Jackson St, Atlanta,GA,30301 +302428,USB-C Charging Cable,1,11.95,2019-12-18 21:10:00,896 Jackson St, Atlanta,GA,30301 +302429,Apple Airpods Headphones,1,150.0,2019-12-06 14:26:00,904 11th St, Seattle,WA,98101 +302430,27in FHD Monitor,1,149.99,2019-12-09 23:58:00,833 Washington St, Dallas,TX,75001 +302431,Wired Headphones,1,11.99,2019-12-15 18:11:00,250 14th St, Dallas,TX,75001 +302432,Lightning Charging Cable,1,14.95,2019-12-25 11:54:00,55 Park St, San Francisco,CA,94016 +302433,Macbook Pro Laptop,1,1700.0,2019-12-05 19:25:00,352 1st St, Atlanta,GA,30301 +302434,27in FHD Monitor,1,149.99,2019-12-14 21:23:00,176 4th St, Portland,OR,97035 +302435,Wired Headphones,1,11.99,2019-12-08 15:38:00,918 11th St, Dallas,TX,75001 +302436,Bose SoundSport Headphones,1,99.99,2019-12-24 15:24:00,368 1st St, New York City,NY,10001 +302437,Lightning Charging Cable,1,14.95,2019-12-28 09:59:00,628 Lincoln St, San Francisco,CA,94016 +302438,AA Batteries (4-pack),1,3.84,2019-12-18 19:41:00,931 Dogwood St, San Francisco,CA,94016 +302439,Bose SoundSport Headphones,1,99.99,2019-12-08 22:08:00,118 Elm St, Austin,TX,73301 +302440,Bose SoundSport Headphones,1,99.99,2019-12-06 11:46:00,643 Main St, New York City,NY,10001 +302441,ThinkPad Laptop,1,999.99,2019-12-25 07:05:00,680 6th St, Seattle,WA,98101 +302442,AAA Batteries (4-pack),1,2.99,2019-12-15 17:18:00,947 Chestnut St, Los Angeles,CA,90001 +302443,Bose SoundSport Headphones,1,99.99,2019-12-01 12:16:00,637 1st St, Dallas,TX,75001 +302444,Google Phone,1,600.0,2019-12-26 16:08:00,197 Center St, New York City,NY,10001 +302444,USB-C Charging Cable,3,11.95,2019-12-26 16:08:00,197 Center St, New York City,NY,10001 +302445,Lightning Charging Cable,1,14.95,2019-12-02 01:36:00,841 Wilson St, Portland,OR,97035 +302446,USB-C Charging Cable,1,11.95,2019-12-12 11:34:00,396 Sunset St, San Francisco,CA,94016 +302447,Apple Airpods Headphones,2,150.0,2019-12-06 17:09:00,647 Lake St, Dallas,TX,75001 +302448,AAA Batteries (4-pack),1,2.99,2019-12-25 11:34:00,721 Ridge St, San Francisco,CA,94016 +302449,AAA Batteries (4-pack),1,2.99,2019-12-18 23:22:00,889 Hickory St, Seattle,WA,98101 +302450,AAA Batteries (4-pack),1,2.99,2019-12-11 09:17:00,551 North St, Seattle,WA,98101 +302451,Macbook Pro Laptop,1,1700.0,2019-12-02 12:53:00,707 Cedar St, San Francisco,CA,94016 +302451,Apple Airpods Headphones,1,150.0,2019-12-02 12:53:00,707 Cedar St, San Francisco,CA,94016 +302452,27in FHD Monitor,1,149.99,2019-12-18 16:06:00,138 Jefferson St, Portland,OR,97035 +302453,Apple Airpods Headphones,1,150.0,2019-12-17 06:37:00,561 North St, New York City,NY,10001 +302454,AA Batteries (4-pack),1,3.84,2019-12-28 17:49:00,261 5th St, Atlanta,GA,30301 +302455,USB-C Charging Cable,1,11.95,2019-12-18 00:34:00,537 Ridge St, Dallas,TX,75001 +302456,Wired Headphones,1,11.99,2019-12-08 17:00:00,28 River St, New York City,NY,10001 +302457,AA Batteries (4-pack),1,3.84,2019-12-12 19:05:00,262 4th St, San Francisco,CA,94016 +302458,Bose SoundSport Headphones,1,99.99,2019-12-24 16:42:00,553 Meadow St, Los Angeles,CA,90001 +302459,27in 4K Gaming Monitor,1,389.99,2019-12-23 18:21:00,965 West St, Portland,OR,97035 +302460,USB-C Charging Cable,1,11.95,2019-12-10 19:53:00,111 Dogwood St, New York City,NY,10001 +302461,USB-C Charging Cable,1,11.95,2019-12-27 22:20:00,952 Walnut St, Seattle,WA,98101 +302462,Apple Airpods Headphones,1,150.0,2019-12-07 12:31:00,471 Pine St, Portland,OR,97035 +302463,34in Ultrawide Monitor,1,379.99,2019-12-07 06:27:00,268 Cedar St, Boston,MA,02215 +302464,Google Phone,1,600.0,2019-12-23 11:40:00,919 10th St, Boston,MA,02215 +302464,AAA Batteries (4-pack),1,2.99,2019-12-23 11:40:00,919 10th St, Boston,MA,02215 +302465,34in Ultrawide Monitor,1,379.99,2019-12-07 01:58:00,821 Lake St, Portland,OR,97035 +302466,Apple Airpods Headphones,1,150.0,2019-12-04 09:16:00,161 Pine St, Portland,OR,97035 +302467,Wired Headphones,1,11.99,2019-12-25 16:32:00,417 Cherry St, San Francisco,CA,94016 +302468,Flatscreen TV,1,300.0,2019-12-20 13:09:00,160 11th St, Los Angeles,CA,90001 +302469,ThinkPad Laptop,1,999.99,2019-12-07 12:28:00,564 2nd St, New York City,NY,10001 +302470,34in Ultrawide Monitor,1,379.99,2019-12-25 11:15:00,233 Dogwood St, Dallas,TX,75001 +302471,USB-C Charging Cable,1,11.95,2019-12-22 17:13:00,878 10th St, Boston,MA,02215 +302472,20in Monitor,1,109.99,2019-12-04 07:08:00,268 4th St, New York City,NY,10001 +302473,Bose SoundSport Headphones,1,99.99,2019-12-19 17:56:00,750 Meadow St, San Francisco,CA,94016 +302474,ThinkPad Laptop,1,999.99,2019-12-04 19:47:00,937 Hickory St, Los Angeles,CA,90001 +302475,Lightning Charging Cable,1,14.95,2019-12-12 10:54:00,421 Center St, Los Angeles,CA,90001 +302476,Wired Headphones,1,11.99,2019-12-08 21:37:00,214 Forest St, Boston,MA,02215 +302477,Bose SoundSport Headphones,1,99.99,2019-12-01 13:17:00,452 Meadow St, Los Angeles,CA,90001 +302478,Lightning Charging Cable,1,14.95,2019-12-25 23:41:00,299 11th St, San Francisco,CA,94016 +302478,Bose SoundSport Headphones,1,99.99,2019-12-25 23:41:00,299 11th St, San Francisco,CA,94016 +302479,34in Ultrawide Monitor,1,379.99,2019-12-03 15:54:00,186 North St, Atlanta,GA,30301 +302480,AAA Batteries (4-pack),1,2.99,2019-12-05 19:03:00,282 Cedar St, San Francisco,CA,94016 +302481,Lightning Charging Cable,1,14.95,2019-12-01 17:17:00,932 Meadow St, Atlanta,GA,30301 +302482,27in FHD Monitor,1,149.99,2019-12-12 22:30:00,492 Chestnut St, Los Angeles,CA,90001 +302483,Vareebadd Phone,1,400.0,2019-12-14 12:23:00,396 8th St, New York City,NY,10001 +302484,Apple Airpods Headphones,1,150.0,2019-12-01 11:55:00,152 8th St, Austin,TX,73301 +302485,AAA Batteries (4-pack),4,2.99,2019-12-17 09:41:00,452 West St, San Francisco,CA,94016 +302486,AAA Batteries (4-pack),2,2.99,2019-12-17 18:52:00,36 Cedar St, Atlanta,GA,30301 +302487,Wired Headphones,1,11.99,2019-12-17 15:12:00,858 Forest St, New York City,NY,10001 +302488,Google Phone,1,600.0,2019-12-18 21:43:00,248 Wilson St, New York City,NY,10001 +302489,Macbook Pro Laptop,1,1700.0,2019-12-30 17:19:00,246 Willow St, Portland,ME,04101 +302490,AA Batteries (4-pack),1,3.84,2019-12-10 16:06:00,525 River St, Los Angeles,CA,90001 +302491,USB-C Charging Cable,1,11.95,2019-12-06 17:28:00,457 Elm St, Los Angeles,CA,90001 +302491,AAA Batteries (4-pack),1,2.99,2019-12-06 17:28:00,457 Elm St, Los Angeles,CA,90001 +302492,34in Ultrawide Monitor,1,379.99,2019-12-04 10:18:00,437 Elm St, Boston,MA,02215 +302493,27in FHD Monitor,1,149.99,2019-12-28 14:09:00,591 Walnut St, San Francisco,CA,94016 +302494,USB-C Charging Cable,1,11.95,2019-12-08 20:50:00,479 Main St, Seattle,WA,98101 +302495,AAA Batteries (4-pack),1,2.99,2019-12-21 13:40:00,652 Cedar St, Portland,ME,04101 +302496,Bose SoundSport Headphones,1,99.99,2019-12-18 20:02:00,829 Dogwood St, Austin,TX,73301 +302497,Wired Headphones,1,11.99,2019-12-04 14:19:00,687 Walnut St, Los Angeles,CA,90001 +302498,Wired Headphones,1,11.99,2019-12-02 14:44:00,510 Sunset St, Portland,OR,97035 +302499,Lightning Charging Cable,1,14.95,2019-12-06 10:57:00,425 North St, Atlanta,GA,30301 +302500,AAA Batteries (4-pack),3,2.99,2019-12-24 18:21:00,451 Washington St, San Francisco,CA,94016 +302501,AAA Batteries (4-pack),1,2.99,2019-12-19 02:06:00,562 11th St, Atlanta,GA,30301 +302502,27in 4K Gaming Monitor,1,389.99,2019-12-21 20:11:00,53 Maple St, Portland,OR,97035 +302503,Bose SoundSport Headphones,1,99.99,2019-12-18 09:53:00,999 Adams St, Atlanta,GA,30301 +302504,Flatscreen TV,1,300.0,2019-12-03 11:05:00,603 Lake St, Dallas,TX,75001 +302505,AAA Batteries (4-pack),1,2.99,2019-12-19 22:46:00,145 Forest St, Los Angeles,CA,90001 +302506,Vareebadd Phone,1,400.0,2019-12-30 17:05:00,847 13th St, Los Angeles,CA,90001 +302507,AAA Batteries (4-pack),1,2.99,2019-12-31 10:02:00,137 Cedar St, Seattle,WA,98101 +302508,USB-C Charging Cable,1,11.95,2019-12-28 04:54:00,296 Maple St, Dallas,TX,75001 +302509,USB-C Charging Cable,1,11.95,2019-12-03 11:34:00,684 Dogwood St, Boston,MA,02215 +302510,AA Batteries (4-pack),1,3.84,2019-12-03 20:20:00,664 1st St, Dallas,TX,75001 +302511,Bose SoundSport Headphones,1,99.99,2019-12-07 11:52:00,554 12th St, Dallas,TX,75001 +302512,iPhone,1,700.0,2019-12-27 20:14:00,241 River St, Los Angeles,CA,90001 +302512,Lightning Charging Cable,1,14.95,2019-12-27 20:14:00,241 River St, Los Angeles,CA,90001 +302513,AAA Batteries (4-pack),1,2.99,2019-12-17 20:36:00,683 North St, Boston,MA,02215 +302514,iPhone,1,700.0,2019-12-24 13:28:00,134 Sunset St, Los Angeles,CA,90001 +302515,Apple Airpods Headphones,1,150.0,2019-12-28 10:13:00,48 9th St, Los Angeles,CA,90001 +302516,27in 4K Gaming Monitor,1,389.99,2019-12-02 12:58:00,162 Washington St, Seattle,WA,98101 +302517,Wired Headphones,1,11.99,2019-12-27 20:13:00,261 8th St, San Francisco,CA,94016 +302518,Lightning Charging Cable,2,14.95,2019-12-18 19:01:00,709 6th St, Austin,TX,73301 +302519,Bose SoundSport Headphones,1,99.99,2019-12-29 15:47:00,37 Cedar St, Portland,OR,97035 +302520,27in 4K Gaming Monitor,1,389.99,2019-12-12 21:32:00,843 7th St, Atlanta,GA,30301 +302521,Wired Headphones,1,11.99,2019-12-17 20:55:00,682 Park St, Los Angeles,CA,90001 +302522,Wired Headphones,1,11.99,2019-12-04 17:16:00,293 Pine St, Boston,MA,02215 +302523,Lightning Charging Cable,1,14.95,2019-12-09 09:36:00,337 12th St, New York City,NY,10001 +302524,AA Batteries (4-pack),1,3.84,2019-12-25 07:39:00,950 Madison St, Atlanta,GA,30301 +302525,AAA Batteries (4-pack),1,2.99,2019-12-27 20:39:00,446 Jackson St, Dallas,TX,75001 +302526,20in Monitor,1,109.99,2019-12-21 09:19:00,714 Jefferson St, Austin,TX,73301 +302527,27in 4K Gaming Monitor,1,389.99,2019-12-23 13:22:00,698 Walnut St, Austin,TX,73301 +302528,iPhone,1,700.0,2019-12-12 07:56:00,375 11th St, Boston,MA,02215 +302529,USB-C Charging Cable,1,11.95,2019-12-03 15:53:00,425 Sunset St, Los Angeles,CA,90001 +302530,Bose SoundSport Headphones,1,99.99,2019-12-26 22:58:00,363 Washington St, New York City,NY,10001 +302531,Wired Headphones,1,11.99,2019-12-20 06:48:00,907 10th St, Seattle,WA,98101 +302532,34in Ultrawide Monitor,1,379.99,2019-12-07 20:37:00,255 Madison St, Portland,ME,04101 +302533,USB-C Charging Cable,1,11.95,2019-12-29 10:59:00,519 Forest St, San Francisco,CA,94016 +302534,iPhone,1,700.0,2019-12-23 16:06:00,899 Dogwood St, New York City,NY,10001 +302534,Wired Headphones,1,11.99,2019-12-23 16:06:00,899 Dogwood St, New York City,NY,10001 +302535,Apple Airpods Headphones,1,150.0,2019-12-07 14:52:00,309 14th St, Los Angeles,CA,90001 +302536,AAA Batteries (4-pack),1,2.99,2019-12-03 19:35:00,187 Main St, Boston,MA,02215 +302537,Bose SoundSport Headphones,1,99.99,2019-12-24 21:54:00,672 6th St, San Francisco,CA,94016 +302538,Apple Airpods Headphones,1,150.0,2019-12-24 12:51:00,150 Meadow St, San Francisco,CA,94016 +302539,Lightning Charging Cable,1,14.95,2019-12-24 20:35:00,489 Center St, Seattle,WA,98101 +302540,Lightning Charging Cable,2,14.95,2019-12-23 21:33:00,111 7th St, San Francisco,CA,94016 +302541,ThinkPad Laptop,1,999.99,2019-12-15 08:30:00,26 7th St, Boston,MA,02215 +302542,Macbook Pro Laptop,1,1700.0,2019-12-03 18:04:00,724 Madison St, Boston,MA,02215 +302543,Lightning Charging Cable,1,14.95,2019-12-05 12:20:00,853 North St, San Francisco,CA,94016 +302544,Apple Airpods Headphones,1,150.0,2019-12-03 09:15:00,162 Chestnut St, New York City,NY,10001 +302545,AA Batteries (4-pack),1,3.84,2019-12-28 18:45:00,659 6th St, Atlanta,GA,30301 +302546,Google Phone,1,600.0,2019-12-14 18:10:00,893 10th St, San Francisco,CA,94016 +302546,Bose SoundSport Headphones,1,99.99,2019-12-14 18:10:00,893 10th St, San Francisco,CA,94016 +302547,34in Ultrawide Monitor,1,379.99,2019-12-05 12:12:00,845 Johnson St, Boston,MA,02215 +302548,AAA Batteries (4-pack),1,2.99,2019-12-13 14:25:00,214 Meadow St, San Francisco,CA,94016 +302549,AA Batteries (4-pack),3,3.84,2019-12-24 16:45:00,15 11th St, San Francisco,CA,94016 +302550,ThinkPad Laptop,1,999.99,2019-12-13 17:57:00,512 West St, Los Angeles,CA,90001 +302551,AA Batteries (4-pack),1,3.84,2019-12-20 22:01:00,905 7th St, Los Angeles,CA,90001 +302552,Lightning Charging Cable,1,14.95,2019-12-15 12:31:00,311 12th St, Austin,TX,73301 +302553,Apple Airpods Headphones,1,150.0,2019-12-05 22:15:00,815 14th St, New York City,NY,10001 +302554,AAA Batteries (4-pack),1,2.99,2019-12-05 11:04:00,407 Jackson St, San Francisco,CA,94016 +302555,Macbook Pro Laptop,1,1700.0,2019-12-18 16:07:00,507 Lake St, Los Angeles,CA,90001 +302556,Lightning Charging Cable,1,14.95,2019-12-30 19:15:00,7 9th St, Austin,TX,73301 +302557,AAA Batteries (4-pack),1,2.99,2019-12-16 05:35:00,692 5th St, San Francisco,CA,94016 +302558,Lightning Charging Cable,1,14.95,2019-12-11 12:09:00,60 Chestnut St, San Francisco,CA,94016 +302559,AA Batteries (4-pack),2,3.84,2019-12-16 00:03:00,587 Church St, Seattle,WA,98101 +302560,Bose SoundSport Headphones,1,99.99,2019-12-25 18:43:00,275 Hickory St, Los Angeles,CA,90001 +302561,iPhone,1,700.0,2019-12-12 12:08:00,496 Willow St, Dallas,TX,75001 +302562,AAA Batteries (4-pack),2,2.99,2019-12-10 10:38:00,321 River St, San Francisco,CA,94016 +302563,AAA Batteries (4-pack),3,2.99,2019-12-13 19:36:00,68 13th St, San Francisco,CA,94016 +302564,Wired Headphones,1,11.99,2019-12-25 13:47:00,667 South St, Dallas,TX,75001 +302565,AAA Batteries (4-pack),1,2.99,2019-12-06 19:27:00,629 Adams St, Dallas,TX,75001 +302566,Google Phone,1,600.0,2019-12-17 15:41:00,66 Main St, San Francisco,CA,94016 +302566,USB-C Charging Cable,1,11.95,2019-12-17 15:41:00,66 Main St, San Francisco,CA,94016 +302567,AAA Batteries (4-pack),1,2.99,2019-12-20 08:13:00,261 Spruce St, San Francisco,CA,94016 +302568,ThinkPad Laptop,1,999.99,2019-12-02 21:14:00,589 Meadow St, Austin,TX,73301 +302569,AA Batteries (4-pack),1,3.84,2019-12-22 13:40:00,35 Dogwood St, San Francisco,CA,94016 +302570,USB-C Charging Cable,1,11.95,2019-12-23 13:42:00,567 Wilson St, Austin,TX,73301 +302571,iPhone,1,700.0,2019-12-01 20:55:00,454 Lakeview St, New York City,NY,10001 +302572,Wired Headphones,1,11.99,2019-12-17 17:03:00,920 Center St, Atlanta,GA,30301 +302573,USB-C Charging Cable,1,11.95,2019-12-24 17:13:00,132 Lake St, Austin,TX,73301 +302574,Wired Headphones,1,11.99,2019-12-03 10:59:00,736 Spruce St, San Francisco,CA,94016 +302575,Lightning Charging Cable,1,14.95,2019-12-15 13:58:00,137 South St, Los Angeles,CA,90001 +302576,Apple Airpods Headphones,1,150.0,2019-12-30 00:44:00,199 1st St, Dallas,TX,75001 +302577,34in Ultrawide Monitor,1,379.99,2019-12-30 10:54:00,86 Spruce St, Boston,MA,02215 +302577,USB-C Charging Cable,1,11.95,2019-12-30 10:54:00,86 Spruce St, Boston,MA,02215 +302578,Lightning Charging Cable,1,14.95,2019-12-18 16:38:00,247 14th St, Dallas,TX,75001 +302578,USB-C Charging Cable,1,11.95,2019-12-18 16:38:00,247 14th St, Dallas,TX,75001 +302579,AA Batteries (4-pack),2,3.84,2019-12-18 06:52:00,757 River St, San Francisco,CA,94016 +302580,Lightning Charging Cable,1,14.95,2019-12-14 09:26:00,188 Lincoln St, Atlanta,GA,30301 +302581,Apple Airpods Headphones,1,150.0,2019-12-17 12:47:00,597 11th St, Dallas,TX,75001 +302582,Lightning Charging Cable,1,14.95,2019-12-19 18:18:00,984 Johnson St, San Francisco,CA,94016 +302583,27in FHD Monitor,1,149.99,2019-12-07 22:45:00,903 North St, Austin,TX,73301 +302584,Google Phone,1,600.0,2019-12-22 13:10:00,447 Adams St, Dallas,TX,75001 +302585,Google Phone,1,600.0,2019-12-06 07:58:00,559 4th St, San Francisco,CA,94016 +302586,Flatscreen TV,1,300.0,2019-12-10 09:48:00,780 Johnson St, Dallas,TX,75001 +302587,AA Batteries (4-pack),1,3.84,2019-12-13 15:41:00,236 Ridge St, San Francisco,CA,94016 +302588,Flatscreen TV,1,300.0,2019-12-02 09:57:00,105 Maple St, Boston,MA,02215 +302589,USB-C Charging Cable,1,11.95,2019-12-04 19:55:00,627 Pine St, New York City,NY,10001 +302590,Apple Airpods Headphones,1,150.0,2019-12-25 23:09:00,670 Madison St, Dallas,TX,75001 +302591,iPhone,1,700.0,2019-12-03 22:06:00,924 8th St, Los Angeles,CA,90001 +302592,USB-C Charging Cable,2,11.95,2019-12-02 16:21:00,4 Washington St, San Francisco,CA,94016 +302593,AAA Batteries (4-pack),2,2.99,2019-12-28 08:13:00,969 Dogwood St, Seattle,WA,98101 +302594,27in 4K Gaming Monitor,1,389.99,2019-12-27 10:15:00,660 Hickory St, San Francisco,CA,94016 +302595,USB-C Charging Cable,1,11.95,2019-12-12 17:27:00,74 Church St, San Francisco,CA,94016 +302596,AA Batteries (4-pack),1,3.84,2019-12-16 18:02:00,316 Maple St, Los Angeles,CA,90001 +302597,Apple Airpods Headphones,1,150.0,2019-12-30 12:45:00,283 2nd St, Dallas,TX,75001 +302598,Apple Airpods Headphones,1,150.0,2019-12-01 14:59:00,734 Chestnut St, San Francisco,CA,94016 +302599,Lightning Charging Cable,2,14.95,2019-12-20 21:43:00,258 Adams St, Atlanta,GA,30301 +302600,Lightning Charging Cable,1,14.95,2019-12-05 11:42:00,183 Jefferson St, Dallas,TX,75001 +302601,Wired Headphones,1,11.99,2019-12-07 10:28:00,675 Lake St, Atlanta,GA,30301 +302602,Lightning Charging Cable,1,14.95,2019-12-07 11:07:00,219 Meadow St, Atlanta,GA,30301 +302603,27in FHD Monitor,1,149.99,2019-12-01 18:56:00,388 Lake St, Los Angeles,CA,90001 +302604,Apple Airpods Headphones,1,150.0,2019-12-27 12:23:00,499 Spruce St, San Francisco,CA,94016 +302605,Wired Headphones,1,11.99,2019-12-28 18:55:00,191 Forest St, San Francisco,CA,94016 +302606,AA Batteries (4-pack),3,3.84,2019-12-28 12:46:00,452 Hill St, Los Angeles,CA,90001 +302607,AA Batteries (4-pack),1,3.84,2019-12-28 10:11:00,799 Church St, Los Angeles,CA,90001 +302608,Apple Airpods Headphones,1,150.0,2019-12-31 18:40:00,94 South St, New York City,NY,10001 +302609,Lightning Charging Cable,1,14.95,2019-12-24 18:11:00,139 Hickory St, Boston,MA,02215 +302610,Apple Airpods Headphones,1,150.0,2019-12-06 09:18:00,587 Maple St, New York City,NY,10001 +302611,AA Batteries (4-pack),1,3.84,2019-12-27 23:21:00,366 Main St, San Francisco,CA,94016 +302612,AAA Batteries (4-pack),1,2.99,2019-12-05 15:29:00,297 14th St, San Francisco,CA,94016 +302613,Macbook Pro Laptop,1,1700.0,2019-12-29 17:29:00,560 Meadow St, Boston,MA,02215 +302614,AA Batteries (4-pack),3,3.84,2019-12-31 15:59:00,995 South St, Atlanta,GA,30301 +302615,34in Ultrawide Monitor,1,379.99,2019-12-14 16:14:00,966 Main St, Atlanta,GA,30301 +302616,Lightning Charging Cable,1,14.95,2019-12-13 23:21:00,990 8th St, Boston,MA,02215 +302617,AA Batteries (4-pack),1,3.84,2019-12-05 21:16:00,357 River St, San Francisco,CA,94016 +302618,AA Batteries (4-pack),1,3.84,2019-12-01 20:08:00,425 River St, Boston,MA,02215 +302619,AA Batteries (4-pack),2,3.84,2019-12-26 16:31:00,34 Wilson St, Atlanta,GA,30301 +302620,AA Batteries (4-pack),1,3.84,2019-12-08 19:09:00,387 North St, Los Angeles,CA,90001 +302621,27in 4K Gaming Monitor,1,389.99,2019-12-16 10:40:00,140 9th St, Boston,MA,02215 +302622,Apple Airpods Headphones,1,150.0,2019-12-28 01:38:00,899 Washington St, Seattle,WA,98101 +302623,27in FHD Monitor,1,149.99,2019-12-07 09:31:00,546 Pine St, New York City,NY,10001 +302624,AAA Batteries (4-pack),1,2.99,2019-12-10 09:00:00,276 Cedar St, Boston,MA,02215 +302625,Google Phone,1,600.0,2019-12-30 09:30:00,53 Cedar St, New York City,NY,10001 +302625,Wired Headphones,1,11.99,2019-12-30 09:30:00,53 Cedar St, New York City,NY,10001 +302626,AA Batteries (4-pack),2,3.84,2019-12-07 19:56:00,756 Walnut St, Dallas,TX,75001 +302627,Lightning Charging Cable,1,14.95,2019-12-05 13:01:00,833 Highland St, New York City,NY,10001 +302628,Wired Headphones,1,11.99,2019-12-21 18:16:00,568 Hickory St, San Francisco,CA,94016 +302629,USB-C Charging Cable,1,11.95,2019-12-03 06:04:00,202 Ridge St, San Francisco,CA,94016 +302630,AAA Batteries (4-pack),1,2.99,2019-12-13 19:06:00,148 Madison St, Boston,MA,02215 +302631,Lightning Charging Cable,1,14.95,2019-12-17 16:51:00,710 1st St, Seattle,WA,98101 +302632,AAA Batteries (4-pack),1,2.99,2019-12-30 13:16:00,720 Walnut St, Austin,TX,73301 +302633,USB-C Charging Cable,1,11.95,2019-12-16 20:17:00,392 West St, Atlanta,GA,30301 +302634,Bose SoundSport Headphones,1,99.99,2019-12-13 17:17:00,641 Center St, San Francisco,CA,94016 +302635,AA Batteries (4-pack),1,3.84,2019-12-23 12:47:00,660 7th St, San Francisco,CA,94016 +302636,34in Ultrawide Monitor,1,379.99,2019-12-22 07:07:00,629 Center St, San Francisco,CA,94016 +302637,AAA Batteries (4-pack),1,2.99,2019-12-14 22:36:00,628 Adams St, San Francisco,CA,94016 +302638,Lightning Charging Cable,2,14.95,2019-12-24 08:51:00,257 Washington St, Portland,OR,97035 +302639,Google Phone,1,600.0,2019-12-03 19:08:00,121 Washington St, New York City,NY,10001 +302639,USB-C Charging Cable,2,11.95,2019-12-03 19:08:00,121 Washington St, New York City,NY,10001 +302640,Lightning Charging Cable,1,14.95,2019-12-16 14:43:00,947 West St, San Francisco,CA,94016 +302641,AAA Batteries (4-pack),2,2.99,2019-12-03 12:48:00,839 Forest St, Atlanta,GA,30301 +302642,Macbook Pro Laptop,1,1700.0,2019-12-18 19:25:00,921 9th St, Atlanta,GA,30301 +302643,Lightning Charging Cable,2,14.95,2019-12-24 05:27:00,297 9th St, Dallas,TX,75001 +302644,Lightning Charging Cable,1,14.95,2019-12-18 07:05:00,737 7th St, Austin,TX,73301 +302645,USB-C Charging Cable,1,11.95,2019-12-19 23:38:00,220 11th St, Austin,TX,73301 +302646,USB-C Charging Cable,1,11.95,2019-12-04 05:54:00,911 Park St, San Francisco,CA,94016 +302647,Bose SoundSport Headphones,1,99.99,2019-12-13 15:10:00,615 Meadow St, New York City,NY,10001 +302648,USB-C Charging Cable,1,11.95,2019-12-23 15:10:00,950 South St, Austin,TX,73301 +302649,AAA Batteries (4-pack),2,2.99,2019-12-04 20:10:00,987 Church St, Boston,MA,02215 +302650,AAA Batteries (4-pack),2,2.99,2019-12-12 11:52:00,423 4th St, San Francisco,CA,94016 +302651,Lightning Charging Cable,1,14.95,2019-12-03 19:08:00,105 Cherry St, Dallas,TX,75001 +302652,Apple Airpods Headphones,1,150.0,2019-12-04 08:17:00,237 Walnut St, New York City,NY,10001 +302653,USB-C Charging Cable,1,11.95,2019-12-07 21:00:00,261 Park St, San Francisco,CA,94016 +302654,AAA Batteries (4-pack),1,2.99,2019-12-05 20:01:00,600 2nd St, New York City,NY,10001 +302655,AAA Batteries (4-pack),1,2.99,2019-12-11 10:35:00,111 Forest St, Seattle,WA,98101 +302656,Wired Headphones,1,11.99,2019-12-09 12:36:00,286 8th St, Los Angeles,CA,90001 +302657,ThinkPad Laptop,1,999.99,2019-12-23 07:19:00,676 Center St, Dallas,TX,75001 +302658,iPhone,1,700.0,2019-12-04 14:05:00,382 Walnut St, Los Angeles,CA,90001 +302659,27in FHD Monitor,1,149.99,2019-12-03 18:36:00,445 Hickory St, Atlanta,GA,30301 +302660,AA Batteries (4-pack),1,3.84,2019-12-17 17:34:00,901 Park St, Austin,TX,73301 +302661,ThinkPad Laptop,1,999.99,2019-12-28 11:26:00,79 Jackson St, Boston,MA,02215 +302662,27in 4K Gaming Monitor,1,389.99,2019-12-01 08:36:00,194 4th St, Dallas,TX,75001 +302663,Apple Airpods Headphones,1,150.0,2019-12-14 19:17:00,581 13th St, San Francisco,CA,94016 +302664,USB-C Charging Cable,1,11.95,2019-12-31 10:36:00,110 Highland St, San Francisco,CA,94016 +302665,USB-C Charging Cable,1,11.95,2019-12-25 19:32:00,871 South St, San Francisco,CA,94016 +302666,ThinkPad Laptop,1,999.99,2019-12-01 17:57:00,762 Adams St, Los Angeles,CA,90001 +302667,Apple Airpods Headphones,1,150.0,2019-12-23 16:17:00,406 Dogwood St, Boston,MA,02215 +302668,AA Batteries (4-pack),1,3.84,2019-12-19 11:03:00,76 Elm St, Portland,OR,97035 +302669,AAA Batteries (4-pack),1,2.99,2019-12-22 02:23:00,556 Sunset St, San Francisco,CA,94016 +302670,AAA Batteries (4-pack),4,2.99,2019-12-23 21:01:00,735 Cedar St, Boston,MA,02215 +302671,27in FHD Monitor,1,149.99,2019-12-27 06:22:00,468 Forest St, San Francisco,CA,94016 +302672,Bose SoundSport Headphones,1,99.99,2019-12-07 23:33:00,363 Center St, Boston,MA,02215 +302673,27in FHD Monitor,1,149.99,2019-12-01 08:48:00,749 Meadow St, Austin,TX,73301 +302674,27in FHD Monitor,1,149.99,2019-12-10 12:46:00,436 Cherry St, Portland,OR,97035 +302675,Wired Headphones,1,11.99,2019-12-08 17:44:00,21 4th St, Austin,TX,73301 +302676,Lightning Charging Cable,1,14.95,2019-12-19 18:13:00,940 6th St, New York City,NY,10001 +302677,20in Monitor,1,109.99,2019-12-03 17:21:00,198 Ridge St, Seattle,WA,98101 +302678,Lightning Charging Cable,1,14.95,2019-12-18 15:15:00,178 Hill St, Seattle,WA,98101 +302679,34in Ultrawide Monitor,1,379.99,2019-12-28 19:42:00,881 Dogwood St, San Francisco,CA,94016 +302680,AA Batteries (4-pack),1,3.84,2019-12-05 03:33:00,738 Jefferson St, Los Angeles,CA,90001 +302681,Flatscreen TV,1,300.0,2019-12-30 14:19:00,679 Spruce St, Boston,MA,02215 +302682,ThinkPad Laptop,1,999.99,2019-12-10 20:00:00,790 Park St, Los Angeles,CA,90001 +302683,iPhone,1,700.0,2019-12-08 11:13:00,711 Jefferson St, Los Angeles,CA,90001 +302684,AA Batteries (4-pack),1,3.84,2019-12-29 14:05:00,975 Lincoln St, Boston,MA,02215 +302685,Apple Airpods Headphones,1,150.0,2019-12-13 19:32:00,178 Wilson St, Atlanta,GA,30301 +302686,Lightning Charging Cable,1,14.95,2019-12-25 18:23:00,740 Elm St, Boston,MA,02215 +302687,AAA Batteries (4-pack),1,2.99,2019-12-03 20:22:00,503 7th St, New York City,NY,10001 +302688,Google Phone,1,600.0,2019-12-11 09:30:00,997 4th St, Portland,OR,97035 +302689,Bose SoundSport Headphones,1,99.99,2019-12-24 14:36:00,834 6th St, Austin,TX,73301 +302690,27in FHD Monitor,1,149.99,2019-12-26 14:39:00,572 2nd St, Los Angeles,CA,90001 +302691,AA Batteries (4-pack),1,3.84,2019-12-29 07:49:00,283 South St, Los Angeles,CA,90001 +302691,iPhone,1,700.0,2019-12-29 07:49:00,283 South St, Los Angeles,CA,90001 +302692,Lightning Charging Cable,1,14.95,2019-12-25 09:52:00,493 8th St, Boston,MA,02215 +302693,AAA Batteries (4-pack),2,2.99,2019-12-19 13:47:00,121 Park St, Boston,MA,02215 +302694,AAA Batteries (4-pack),3,2.99,2019-12-26 09:31:00,825 Church St, Atlanta,GA,30301 +302695,AAA Batteries (4-pack),2,2.99,2019-12-08 01:59:00,550 Sunset St, Seattle,WA,98101 +302696,Lightning Charging Cable,1,14.95,2019-12-22 08:29:00,536 Dogwood St, San Francisco,CA,94016 +302697,AA Batteries (4-pack),2,3.84,2019-12-04 14:51:00,304 River St, Boston,MA,02215 +302698,AA Batteries (4-pack),1,3.84,2019-12-31 21:12:00,951 Wilson St, Atlanta,GA,30301 +302699,27in FHD Monitor,1,149.99,2019-12-18 16:31:00,966 West St, San Francisco,CA,94016 +302700,AAA Batteries (4-pack),1,2.99,2019-12-31 14:32:00,454 Wilson St, New York City,NY,10001 +302701,AA Batteries (4-pack),1,3.84,2019-12-31 00:15:00,457 North St, Portland,OR,97035 +302702,27in FHD Monitor,1,149.99,2019-12-10 10:09:00,176 Forest St, Dallas,TX,75001 +302703,Apple Airpods Headphones,1,150.0,2019-12-11 08:40:00,498 Jackson St, New York City,NY,10001 +302704,ThinkPad Laptop,1,999.99,2019-12-06 12:50:00,686 Adams St, Dallas,TX,75001 +302705,AA Batteries (4-pack),2,3.84,2019-12-14 16:49:00,279 Lake St, San Francisco,CA,94016 +302706,Google Phone,1,600.0,2019-12-09 12:42:00,933 Hill St, Austin,TX,73301 +302707,AA Batteries (4-pack),1,3.84,2019-12-24 12:57:00,83 5th St, Seattle,WA,98101 +302708,Vareebadd Phone,1,400.0,2019-12-12 22:10:00,961 Lakeview St, San Francisco,CA,94016 +302708,Wired Headphones,2,11.99,2019-12-12 22:10:00,961 Lakeview St, San Francisco,CA,94016 +302709,Bose SoundSport Headphones,1,99.99,2019-12-11 14:19:00,454 Center St, Seattle,WA,98101 +302710,Wired Headphones,1,11.99,2019-12-06 22:10:00,508 Sunset St, San Francisco,CA,94016 +302711,AAA Batteries (4-pack),2,2.99,2019-12-31 16:09:00,829 Elm St, Seattle,WA,98101 +302712,AAA Batteries (4-pack),1,2.99,2019-12-29 13:30:00,261 9th St, Dallas,TX,75001 +302713,Apple Airpods Headphones,1,150.0,2019-12-12 23:16:00,441 Park St, Boston,MA,02215 +302713,Bose SoundSport Headphones,1,99.99,2019-12-12 23:16:00,441 Park St, Boston,MA,02215 +302714,Wired Headphones,1,11.99,2019-12-06 08:54:00,781 Meadow St, Boston,MA,02215 +302715,USB-C Charging Cable,2,11.95,2019-12-17 19:41:00,564 Hickory St, Boston,MA,02215 +302716,Flatscreen TV,1,300.0,2019-12-24 21:13:00,104 Ridge St, San Francisco,CA,94016 +302717,USB-C Charging Cable,1,11.95,2019-12-15 21:24:00,26 Lakeview St, Atlanta,GA,30301 +302717,AAA Batteries (4-pack),1,2.99,2019-12-15 21:24:00,26 Lakeview St, Atlanta,GA,30301 +302718,AA Batteries (4-pack),1,3.84,2019-12-17 22:14:00,879 West St, San Francisco,CA,94016 +302719,Wired Headphones,1,11.99,2019-12-05 22:01:00,318 Main St, Atlanta,GA,30301 +302720,USB-C Charging Cable,1,11.95,2019-12-29 18:33:00,689 4th St, San Francisco,CA,94016 +302721,iPhone,1,700.0,2019-12-24 23:30:00,70 Adams St, Seattle,WA,98101 +302721,Lightning Charging Cable,1,14.95,2019-12-24 23:30:00,70 Adams St, Seattle,WA,98101 +302721,Wired Headphones,1,11.99,2019-12-24 23:30:00,70 Adams St, Seattle,WA,98101 +302722,Wired Headphones,1,11.99,2019-12-23 14:23:00,763 Dogwood St, Portland,ME,04101 +302723,AAA Batteries (4-pack),1,2.99,2019-12-14 18:32:00,962 Ridge St, San Francisco,CA,94016 +302724,Wired Headphones,2,11.99,2019-12-22 14:57:00,721 River St, Los Angeles,CA,90001 +302725,USB-C Charging Cable,1,11.95,2019-12-04 15:43:00,830 River St, New York City,NY,10001 +302726,USB-C Charging Cable,1,11.95,2019-12-07 11:09:00,993 Hickory St, Austin,TX,73301 +302727,Apple Airpods Headphones,1,150.0,2019-12-20 15:55:00,46 12th St, New York City,NY,10001 +302728,27in FHD Monitor,1,149.99,2019-12-31 19:12:00,238 6th St, Boston,MA,02215 +302729,Lightning Charging Cable,1,14.95,2019-12-17 22:23:00,393 Highland St, Dallas,TX,75001 +302730,20in Monitor,1,109.99,2019-12-27 22:31:00,993 Forest St, Boston,MA,02215 +302731,USB-C Charging Cable,1,11.95,2019-12-22 15:48:00,343 Forest St, Seattle,WA,98101 +302732,34in Ultrawide Monitor,1,379.99,2019-12-27 21:35:00,331 Sunset St, Portland,OR,97035 +302733,AAA Batteries (4-pack),1,2.99,2019-12-07 20:50:00,30 Wilson St, Dallas,TX,75001 +302734,AA Batteries (4-pack),1,3.84,2019-12-10 10:47:00,760 10th St, San Francisco,CA,94016 +302735,Wired Headphones,1,11.99,2019-12-04 19:59:00,776 Walnut St, Portland,OR,97035 +302736,Apple Airpods Headphones,1,150.0,2019-12-29 18:16:00,26 Adams St, New York City,NY,10001 +302737,34in Ultrawide Monitor,1,379.99,2019-12-17 09:35:00,980 Washington St, Seattle,WA,98101 +302738,27in 4K Gaming Monitor,1,389.99,2019-12-11 00:52:00,135 North St, Boston,MA,02215 +302739,Wired Headphones,1,11.99,2019-12-05 12:05:00,170 Hill St, Los Angeles,CA,90001 +302740,AAA Batteries (4-pack),3,2.99,2019-12-04 15:53:00,828 Forest St, New York City,NY,10001 +302741,27in 4K Gaming Monitor,1,389.99,2019-12-22 07:53:00,417 Johnson St, Los Angeles,CA,90001 +302742,AA Batteries (4-pack),1,3.84,2019-12-02 08:38:00,722 River St, New York City,NY,10001 +302743,34in Ultrawide Monitor,1,379.99,2019-12-21 19:30:00,429 Lincoln St, San Francisco,CA,94016 +302744,27in 4K Gaming Monitor,1,389.99,2019-12-27 21:55:00,2 5th St, Dallas,TX,75001 +302745,Flatscreen TV,1,300.0,2019-12-01 11:22:00,541 Pine St, Los Angeles,CA,90001 +302746,iPhone,1,700.0,2019-12-12 20:50:00,193 Forest St, San Francisco,CA,94016 +302746,Lightning Charging Cable,1,14.95,2019-12-12 20:50:00,193 Forest St, San Francisco,CA,94016 +302747,Lightning Charging Cable,1,14.95,2019-12-15 15:24:00,123 Walnut St, Boston,MA,02215 +302748,34in Ultrawide Monitor,2,379.99,2019-12-05 18:11:00,186 Pine St, Atlanta,GA,30301 +302749,AAA Batteries (4-pack),1,2.99,2019-12-11 17:41:00,313 5th St, Portland,ME,04101 +302750,iPhone,1,700.0,2019-12-04 12:36:00,995 Cedar St, Austin,TX,73301 +302750,Lightning Charging Cable,1,14.95,2019-12-04 12:36:00,995 Cedar St, Austin,TX,73301 +302751,iPhone,1,700.0,2019-12-02 14:29:00,158 Washington St, San Francisco,CA,94016 +302752,Vareebadd Phone,1,400.0,2019-12-23 20:37:00,3 Elm St, Boston,MA,02215 +302753,AAA Batteries (4-pack),1,2.99,2019-12-16 22:15:00,681 Pine St, San Francisco,CA,94016 +302754,Wired Headphones,1,11.99,2019-12-29 20:31:00,234 2nd St, New York City,NY,10001 +302755,Wired Headphones,1,11.99,2019-12-03 12:18:00,297 Madison St, Atlanta,GA,30301 +302756,Lightning Charging Cable,1,14.95,2019-12-25 16:52:00,266 Park St, Portland,OR,97035 +302757,Lightning Charging Cable,1,14.95,2019-12-14 20:35:00,989 Johnson St, San Francisco,CA,94016 +302758,AAA Batteries (4-pack),2,2.99,2019-12-08 00:27:00,487 Sunset St, Atlanta,GA,30301 +302759,Lightning Charging Cable,1,14.95,2019-12-08 12:14:00,404 13th St, Seattle,WA,98101 +302760,Lightning Charging Cable,1,14.95,2019-12-15 18:06:00,852 Park St, San Francisco,CA,94016 +302761,AA Batteries (4-pack),1,3.84,2019-12-22 14:37:00,701 9th St, Dallas,TX,75001 +302762,AAA Batteries (4-pack),1,2.99,2019-12-12 13:24:00,393 North St, Austin,TX,73301 +302763,27in 4K Gaming Monitor,1,389.99,2019-12-07 19:14:00,76 6th St, Los Angeles,CA,90001 +302764,Lightning Charging Cable,1,14.95,2019-12-26 08:14:00,676 2nd St, Atlanta,GA,30301 +302765,Bose SoundSport Headphones,1,99.99,2019-12-14 19:15:00,662 Chestnut St, San Francisco,CA,94016 +302766,AA Batteries (4-pack),1,3.84,2019-12-01 12:19:00,139 Lincoln St, New York City,NY,10001 +302767,Wired Headphones,1,11.99,2019-12-20 12:57:00,535 5th St, Los Angeles,CA,90001 +302768,AAA Batteries (4-pack),2,2.99,2019-12-23 23:26:00,827 2nd St, Los Angeles,CA,90001 +302769,Macbook Pro Laptop,1,1700.0,2019-12-24 03:28:00,839 Lincoln St, San Francisco,CA,94016 +302770,AA Batteries (4-pack),1,3.84,2019-12-08 23:35:00,71 West St, San Francisco,CA,94016 +302771,AA Batteries (4-pack),1,3.84,2019-12-01 12:39:00,810 Dogwood St, Seattle,WA,98101 +302772,AA Batteries (4-pack),1,3.84,2019-12-26 19:47:00,703 9th St, San Francisco,CA,94016 +302773,iPhone,1,700.0,2019-12-21 12:27:00,966 Meadow St, San Francisco,CA,94016 +302774,AAA Batteries (4-pack),1,2.99,2019-12-20 06:06:00,123 Church St, Austin,TX,73301 +302775,Wired Headphones,1,11.99,2019-12-12 12:07:00,652 Center St, San Francisco,CA,94016 +302776,Lightning Charging Cable,1,14.95,2019-12-25 10:15:00,755 Cedar St, Los Angeles,CA,90001 +302777,34in Ultrawide Monitor,1,379.99,2019-12-18 00:41:00,760 Pine St, New York City,NY,10001 +302778,Bose SoundSport Headphones,1,99.99,2019-12-30 12:35:00,35 1st St, Portland,OR,97035 +302778,AAA Batteries (4-pack),1,2.99,2019-12-30 12:35:00,35 1st St, Portland,OR,97035 +302779,27in FHD Monitor,1,149.99,2019-12-28 14:34:00,665 Maple St, New York City,NY,10001 +302780,34in Ultrawide Monitor,1,379.99,2019-12-19 18:11:00,188 Sunset St, Austin,TX,73301 +302781,Apple Airpods Headphones,1,150.0,2019-12-14 00:17:00,974 Ridge St, Boston,MA,02215 +302782,Lightning Charging Cable,1,14.95,2019-12-04 17:02:00,601 Church St, Los Angeles,CA,90001 +302783,AA Batteries (4-pack),1,3.84,2019-12-28 10:24:00,357 Sunset St, Atlanta,GA,30301 +302784,Wired Headphones,1,11.99,2019-12-19 14:40:00,283 14th St, Dallas,TX,75001 +302785,USB-C Charging Cable,1,11.95,2019-12-05 00:01:00,529 9th St, Portland,ME,04101 +302786,34in Ultrawide Monitor,1,379.99,2019-12-18 10:36:00,703 Maple St, Boston,MA,02215 +302787,USB-C Charging Cable,1,11.95,2019-12-24 10:27:00,5 1st St, San Francisco,CA,94016 +302788,Flatscreen TV,1,300.0,2019-12-07 18:59:00,276 Spruce St, Seattle,WA,98101 +302789,AAA Batteries (4-pack),2,2.99,2019-12-12 22:10:00,77 Center St, Boston,MA,02215 +302790,iPhone,1,700.0,2019-12-14 12:04:00,185 South St, Boston,MA,02215 +302791,AA Batteries (4-pack),1,3.84,2019-12-31 16:17:00,671 4th St, Boston,MA,02215 +302792,Lightning Charging Cable,1,14.95,2019-12-31 19:26:00,866 Forest St, New York City,NY,10001 +302793,Google Phone,1,600.0,2019-12-06 23:37:00,994 6th St, Los Angeles,CA,90001 +302793,USB-C Charging Cable,1,11.95,2019-12-06 23:37:00,994 6th St, Los Angeles,CA,90001 +302794,20in Monitor,1,109.99,2019-12-22 09:53:00,111 1st St, Los Angeles,CA,90001 +302795,AA Batteries (4-pack),1,3.84,2019-12-31 08:45:00,591 Main St, Austin,TX,73301 +302796,Lightning Charging Cable,1,14.95,2019-12-21 20:19:00,947 Forest St, Los Angeles,CA,90001 +302797,Bose SoundSport Headphones,1,99.99,2019-12-24 18:08:00,717 8th St, San Francisco,CA,94016 +302798,AA Batteries (4-pack),2,3.84,2019-12-29 11:01:00,848 River St, Austin,TX,73301 +302799,Lightning Charging Cable,1,14.95,2019-12-22 16:50:00,183 Hill St, New York City,NY,10001 +302800,AAA Batteries (4-pack),2,2.99,2019-12-21 20:53:00,178 13th St, New York City,NY,10001 +302801,ThinkPad Laptop,1,999.99,2019-12-05 15:05:00,648 Lakeview St, New York City,NY,10001 +302802,USB-C Charging Cable,1,11.95,2019-12-03 21:25:00,684 Meadow St, New York City,NY,10001 +302803,Apple Airpods Headphones,1,150.0,2019-12-14 17:18:00,949 Lakeview St, Austin,TX,73301 +302804,AAA Batteries (4-pack),1,2.99,2019-12-27 08:46:00,556 Washington St, Los Angeles,CA,90001 +302805,AA Batteries (4-pack),1,3.84,2019-12-19 14:11:00,577 Center St, Boston,MA,02215 +302806,Google Phone,1,600.0,2019-12-30 19:21:00,207 Cherry St, San Francisco,CA,94016 +302807,AAA Batteries (4-pack),3,2.99,2019-12-25 20:00:00,635 Madison St, San Francisco,CA,94016 +302808,Lightning Charging Cable,2,14.95,2019-12-17 00:24:00,366 Lakeview St, San Francisco,CA,94016 +302809,AA Batteries (4-pack),1,3.84,2019-12-27 11:01:00,719 Sunset St, Los Angeles,CA,90001 +302810,Apple Airpods Headphones,1,150.0,2019-12-15 12:56:00,355 Center St, Dallas,TX,75001 +302811,AA Batteries (4-pack),1,3.84,2019-12-13 10:15:00,547 Lincoln St, New York City,NY,10001 +302812,Flatscreen TV,1,300.0,2019-12-02 22:42:00,811 Jefferson St, Los Angeles,CA,90001 +302813,Bose SoundSport Headphones,1,99.99,2019-12-02 13:10:00,453 Sunset St, Portland,OR,97035 +302814,Lightning Charging Cable,1,14.95,2019-12-09 14:47:00,332 8th St, Portland,OR,97035 +302815,Wired Headphones,1,11.99,2019-12-12 23:08:00,332 Jackson St, San Francisco,CA,94016 +302816,27in 4K Gaming Monitor,1,389.99,2019-12-03 07:45:00,190 Forest St, New York City,NY,10001 +302817,Flatscreen TV,1,300.0,2019-12-26 20:19:00,185 Adams St, Portland,ME,04101 +302818,LG Dryer,1,600.0,2019-12-08 18:30:00,685 Cherry St, Austin,TX,73301 +302819,AAA Batteries (4-pack),3,2.99,2019-12-27 22:23:00,752 Church St, Boston,MA,02215 +302820,27in 4K Gaming Monitor,1,389.99,2019-12-09 21:57:00,4 Church St, San Francisco,CA,94016 +302821,AAA Batteries (4-pack),1,2.99,2019-12-16 13:05:00,264 Main St, Portland,ME,04101 +302822,Apple Airpods Headphones,1,150.0,2019-12-23 11:38:00,532 Willow St, Los Angeles,CA,90001 +302823,AAA Batteries (4-pack),3,2.99,2019-12-09 20:32:00,852 Lakeview St, San Francisco,CA,94016 +302824,Lightning Charging Cable,2,14.95,2019-12-19 11:48:00,68 1st St, Los Angeles,CA,90001 +302825,AA Batteries (4-pack),2,3.84,2019-12-25 11:53:00,394 Hickory St, Dallas,TX,75001 +302826,AA Batteries (4-pack),1,3.84,2019-12-15 22:03:00,681 Cherry St, Seattle,WA,98101 +302827,27in FHD Monitor,1,149.99,2019-12-15 12:29:00,221 5th St, Dallas,TX,75001 +302828,Lightning Charging Cable,1,14.95,2019-12-08 19:32:00,93 Main St, Dallas,TX,75001 +302829,Lightning Charging Cable,1,14.95,2019-12-19 21:31:00,830 Lakeview St, Atlanta,GA,30301 +302830,Google Phone,1,600.0,2019-12-28 20:58:00,57 Jefferson St, Los Angeles,CA,90001 +302831,AAA Batteries (4-pack),1,2.99,2019-12-26 21:00:00,416 Pine St, New York City,NY,10001 +302832,AA Batteries (4-pack),1,3.84,2019-12-29 19:22:00,666 Center St, Seattle,WA,98101 +302833,Lightning Charging Cable,1,14.95,2019-12-23 00:27:00,44 6th St, New York City,NY,10001 +302834,Apple Airpods Headphones,1,150.0,2019-12-18 12:00:00,219 8th St, San Francisco,CA,94016 +302835,iPhone,1,700.0,2019-12-13 11:45:00,216 Johnson St, Los Angeles,CA,90001 +302836,Wired Headphones,2,11.99,2019-12-22 22:17:00,685 5th St, Seattle,WA,98101 +302837,Wired Headphones,1,11.99,2019-12-11 14:27:00,635 Walnut St, Seattle,WA,98101 +302838,27in 4K Gaming Monitor,1,389.99,2019-12-27 12:21:00,955 North St, Dallas,TX,75001 +302839,Apple Airpods Headphones,1,150.0,2019-12-09 11:59:00,150 Ridge St, Atlanta,GA,30301 +302840,AAA Batteries (4-pack),1,2.99,2019-12-21 14:03:00,111 13th St, Dallas,TX,75001 +302841,AAA Batteries (4-pack),1,2.99,2019-12-05 13:01:00,573 Meadow St, San Francisco,CA,94016 +302842,AA Batteries (4-pack),1,3.84,2019-12-15 11:58:00,392 Johnson St, San Francisco,CA,94016 +302843,Vareebadd Phone,1,400.0,2019-12-02 18:34:00,340 Center St, Seattle,WA,98101 +302844,Bose SoundSport Headphones,1,99.99,2019-12-22 13:47:00,25 Madison St, Boston,MA,02215 +302845,USB-C Charging Cable,1,11.95,2019-12-22 23:18:00,805 Jackson St, New York City,NY,10001 +302846,Lightning Charging Cable,1,14.95,2019-12-22 18:54:00,489 9th St, Boston,MA,02215 +302847,AAA Batteries (4-pack),2,2.99,2019-12-17 23:03:00,159 11th St, Atlanta,GA,30301 +302848,Lightning Charging Cable,1,14.95,2019-12-13 15:03:00,576 12th St, Portland,OR,97035 +302849,iPhone,1,700.0,2019-12-16 19:36:00,34 Lake St, San Francisco,CA,94016 +302850,USB-C Charging Cable,1,11.95,2019-12-16 15:57:00,308 Lakeview St, San Francisco,CA,94016 +302851,27in FHD Monitor,1,149.99,2019-12-03 20:05:00,272 14th St, Portland,OR,97035 +302852,Wired Headphones,1,11.99,2019-12-26 05:52:00,341 Willow St, Dallas,TX,75001 +302853,AA Batteries (4-pack),1,3.84,2019-12-22 16:43:00,231 Lincoln St, Los Angeles,CA,90001 +302854,Lightning Charging Cable,1,14.95,2019-12-15 01:44:00,458 Adams St, Austin,TX,73301 +302855,USB-C Charging Cable,1,11.95,2019-12-10 13:36:00,284 Lakeview St, Los Angeles,CA,90001 +302856,27in FHD Monitor,1,149.99,2019-12-13 12:44:00,283 1st St, Los Angeles,CA,90001 +302857,AA Batteries (4-pack),1,3.84,2019-12-12 09:49:00,552 Adams St, Los Angeles,CA,90001 +302858,Apple Airpods Headphones,1,150.0,2019-12-14 01:09:00,109 Forest St, San Francisco,CA,94016 +302859,27in FHD Monitor,1,149.99,2019-12-03 05:43:00,992 Jackson St, Seattle,WA,98101 +302860,Google Phone,1,600.0,2019-12-31 16:17:00,490 Center St, Dallas,TX,75001 +302861,Wired Headphones,1,11.99,2019-12-11 09:08:00,705 Dogwood St, Seattle,WA,98101 +302862,AA Batteries (4-pack),1,3.84,2019-12-23 16:41:00,108 Adams St, Los Angeles,CA,90001 +302863,AAA Batteries (4-pack),1,2.99,2019-12-22 09:33:00,596 Johnson St, San Francisco,CA,94016 +302864,Lightning Charging Cable,1,14.95,2019-12-30 23:47:00,575 2nd St, Portland,OR,97035 +302864,27in 4K Gaming Monitor,1,389.99,2019-12-30 23:47:00,575 2nd St, Portland,OR,97035 +302865,Apple Airpods Headphones,1,150.0,2019-12-23 20:49:00,854 4th St, Atlanta,GA,30301 +302866,iPhone,1,700.0,2019-12-30 17:57:00,845 Ridge St, Boston,MA,02215 +302867,USB-C Charging Cable,1,11.95,2019-12-13 21:10:00,663 Hill St, New York City,NY,10001 +302868,27in FHD Monitor,1,149.99,2019-12-03 17:08:00,986 Walnut St, Los Angeles,CA,90001 +302869,Wired Headphones,1,11.99,2019-12-27 08:34:00,984 13th St, New York City,NY,10001 +302870,Vareebadd Phone,1,400.0,2019-12-01 08:27:00,319 Jefferson St, Seattle,WA,98101 +302871,20in Monitor,1,109.99,2019-12-20 16:31:00,154 Spruce St, San Francisco,CA,94016 +302872,Lightning Charging Cable,1,14.95,2019-12-29 20:47:00,440 Hill St, Boston,MA,02215 +302873,Bose SoundSport Headphones,1,99.99,2019-12-22 20:39:00,764 14th St, Boston,MA,02215 +302874,Lightning Charging Cable,1,14.95,2019-12-22 22:22:00,398 River St, San Francisco,CA,94016 +302875,34in Ultrawide Monitor,1,379.99,2019-12-29 14:40:00,477 2nd St, Seattle,WA,98101 +302876,AA Batteries (4-pack),2,3.84,2019-12-21 11:25:00,863 Johnson St, Dallas,TX,75001 +302877,20in Monitor,1,109.99,2019-12-21 22:56:00,319 Park St, Boston,MA,02215 +302878,AA Batteries (4-pack),1,3.84,2019-12-03 20:37:00,703 Lakeview St, Portland,OR,97035 +302879,AAA Batteries (4-pack),1,2.99,2019-12-29 12:28:00,266 11th St, Portland,OR,97035 +302880,Wired Headphones,2,11.99,2019-12-19 10:32:00,341 7th St, Dallas,TX,75001 +302881,27in 4K Gaming Monitor,1,389.99,2019-12-09 19:36:00,294 14th St, Portland,OR,97035 +302881,Google Phone,1,600.0,2019-12-09 19:36:00,294 14th St, Portland,OR,97035 +302882,Apple Airpods Headphones,1,150.0,2019-12-29 17:05:00,162 Adams St, San Francisco,CA,94016 +302883,27in 4K Gaming Monitor,1,389.99,2019-12-27 19:35:00,141 Highland St, Austin,TX,73301 +302884,27in FHD Monitor,1,149.99,2019-12-19 21:12:00,874 Maple St, Los Angeles,CA,90001 +302885,ThinkPad Laptop,1,999.99,2019-12-29 20:08:00,469 Spruce St, Boston,MA,02215 +302886,AAA Batteries (4-pack),1,2.99,2019-12-09 00:37:00,394 South St, Atlanta,GA,30301 +302887,Lightning Charging Cable,1,14.95,2019-12-24 17:11:00,488 Hickory St, San Francisco,CA,94016 +302888,AAA Batteries (4-pack),4,2.99,2019-12-03 17:38:00,954 North St, Boston,MA,02215 +302888,27in FHD Monitor,1,149.99,2019-12-03 17:38:00,954 North St, Boston,MA,02215 +302889,AAA Batteries (4-pack),5,2.99,2019-12-25 19:50:00,437 Hill St, Austin,TX,73301 +302890,AA Batteries (4-pack),1,3.84,2019-12-15 11:16:00,728 Main St, Atlanta,GA,30301 +302891,USB-C Charging Cable,1,11.95,2019-12-06 07:46:00,516 Adams St, Dallas,TX,75001 +302892,Bose SoundSport Headphones,1,99.99,2019-12-09 15:28:00,967 Madison St, Dallas,TX,75001 +302893,USB-C Charging Cable,1,11.95,2019-12-06 15:50:00,731 11th St, San Francisco,CA,94016 +302894,Flatscreen TV,1,300.0,2019-12-18 12:56:00,932 1st St, Los Angeles,CA,90001 +302895,Macbook Pro Laptop,1,1700.0,2019-12-16 14:00:00,180 14th St, San Francisco,CA,94016 +302896,Lightning Charging Cable,2,14.95,2019-12-13 18:09:00,284 Lake St, Seattle,WA,98101 +302897,LG Dryer,1,600.0,2019-12-10 11:39:00,378 14th St, Los Angeles,CA,90001 +302898,AAA Batteries (4-pack),1,2.99,2019-12-06 21:28:00,620 Highland St, Atlanta,GA,30301 +302899,Apple Airpods Headphones,1,150.0,2019-12-12 15:50:00,469 Johnson St, Los Angeles,CA,90001 +302900,iPhone,1,700.0,2019-12-05 20:55:00,345 Wilson St, New York City,NY,10001 +302901,20in Monitor,1,109.99,2019-12-16 10:41:00,444 Adams St, San Francisco,CA,94016 +302902,AAA Batteries (4-pack),1,2.99,2019-12-08 08:58:00,825 Wilson St, San Francisco,CA,94016 +302903,LG Dryer,1,600.0,2019-12-08 09:29:00,906 Church St, Seattle,WA,98101 +302904,34in Ultrawide Monitor,1,379.99,2019-12-17 21:43:00,883 14th St, Atlanta,GA,30301 +302905,AA Batteries (4-pack),1,3.84,2019-12-08 11:45:00,426 Willow St, Austin,TX,73301 +302906,34in Ultrawide Monitor,1,379.99,2019-12-17 12:56:00,375 Center St, Boston,MA,02215 +302907,Lightning Charging Cable,1,14.95,2019-12-23 22:17:00,384 West St, Los Angeles,CA,90001 +302908,AA Batteries (4-pack),1,3.84,2019-12-02 23:55:00,648 Madison St, Boston,MA,02215 +302909,Lightning Charging Cable,1,14.95,2019-12-06 10:51:00,716 River St, San Francisco,CA,94016 +302910,Wired Headphones,1,11.99,2019-12-09 17:20:00,26 12th St, Portland,OR,97035 +302911,Wired Headphones,1,11.99,2019-12-04 18:21:00,360 Johnson St, Los Angeles,CA,90001 +302912,AAA Batteries (4-pack),1,2.99,2019-12-10 20:00:00,839 River St, San Francisco,CA,94016 +302913,USB-C Charging Cable,1,11.95,2019-12-26 11:54:00,967 Adams St, Seattle,WA,98101 +302914,Bose SoundSport Headphones,1,99.99,2019-12-13 15:10:00,862 Main St, Austin,TX,73301 +302915,Wired Headphones,1,11.99,2019-12-24 23:09:00,721 Main St, Los Angeles,CA,90001 +302916,AAA Batteries (4-pack),2,2.99,2019-12-05 16:54:00,206 Wilson St, Portland,OR,97035 +302917,USB-C Charging Cable,1,11.95,2019-12-08 19:55:00,775 5th St, Boston,MA,02215 +302918,ThinkPad Laptop,1,999.99,2019-12-10 23:55:00,57 Jefferson St, San Francisco,CA,94016 +302919,Apple Airpods Headphones,1,150.0,2019-12-28 19:01:00,885 Jackson St, San Francisco,CA,94016 +302920,AA Batteries (4-pack),1,3.84,2019-12-20 13:46:00,217 Washington St, Atlanta,GA,30301 +302921,AA Batteries (4-pack),2,3.84,2019-12-16 06:29:00,638 2nd St, San Francisco,CA,94016 +302922,Wired Headphones,1,11.99,2019-12-06 23:38:00,329 Maple St, New York City,NY,10001 +302923,Apple Airpods Headphones,1,150.0,2019-12-22 18:41:00,180 Highland St, Portland,OR,97035 +302924,Google Phone,1,600.0,2019-12-30 10:15:00,63 Center St, San Francisco,CA,94016 +302925,USB-C Charging Cable,1,11.95,2019-12-11 20:29:00,727 9th St, San Francisco,CA,94016 +302926,Wired Headphones,1,11.99,2019-12-24 17:44:00,177 Pine St, San Francisco,CA,94016 +302927,Apple Airpods Headphones,1,150.0,2019-12-12 20:42:00,129 Jefferson St, San Francisco,CA,94016 +302928,Lightning Charging Cable,1,14.95,2019-12-19 10:08:00,686 Jefferson St, Los Angeles,CA,90001 +302929,Wired Headphones,1,11.99,2019-12-23 19:33:00,892 Jackson St, Los Angeles,CA,90001 +302930,Bose SoundSport Headphones,1,99.99,2019-12-23 18:40:00,988 Elm St, Atlanta,GA,30301 +302931,27in 4K Gaming Monitor,1,389.99,2019-12-15 23:39:00,888 Hickory St, Austin,TX,73301 +302932,Wired Headphones,1,11.99,2019-12-23 08:35:00,937 6th St, Boston,MA,02215 +302933,Wired Headphones,1,11.99,2019-12-02 20:55:00,444 Dogwood St, New York City,NY,10001 +302934,34in Ultrawide Monitor,1,379.99,2019-12-19 12:48:00,263 Sunset St, Boston,MA,02215 +302935,Flatscreen TV,1,300.0,2019-12-08 22:22:00,19 Spruce St, Los Angeles,CA,90001 +302936,Lightning Charging Cable,1,14.95,2019-12-07 12:19:00,266 Washington St, Boston,MA,02215 +302937,USB-C Charging Cable,1,11.95,2019-12-18 19:16:00,245 Jefferson St, New York City,NY,10001 +302938,USB-C Charging Cable,2,11.95,2019-12-17 18:54:00,24 Walnut St, San Francisco,CA,94016 +302939,AAA Batteries (4-pack),1,2.99,2019-12-01 18:46:00,774 Washington St, San Francisco,CA,94016 +302940,Lightning Charging Cable,1,14.95,2019-12-15 14:59:00,779 Lakeview St, San Francisco,CA,94016 +302941,27in 4K Gaming Monitor,1,389.99,2019-12-15 22:15:00,558 13th St, Seattle,WA,98101 +302942,AAA Batteries (4-pack),2,2.99,2019-12-17 18:07:00,755 5th St, San Francisco,CA,94016 +302943,27in FHD Monitor,1,149.99,2019-12-20 10:09:00,590 4th St, New York City,NY,10001 +302944,AA Batteries (4-pack),1,3.84,2019-12-01 22:23:00,462 Hickory St, Los Angeles,CA,90001 +302945,Flatscreen TV,1,300.0,2019-12-01 12:11:00,736 13th St, San Francisco,CA,94016 +302946,USB-C Charging Cable,1,11.95,2019-12-30 17:43:00,598 Forest St, Dallas,TX,75001 +302947,Lightning Charging Cable,1,14.95,2019-12-15 21:15:00,427 Elm St, New York City,NY,10001 +302948,USB-C Charging Cable,2,11.95,2019-12-29 15:58:00,491 Cedar St, Boston,MA,02215 +302949,27in FHD Monitor,1,149.99,2019-12-04 22:29:00,402 5th St, Austin,TX,73301 +302950,27in 4K Gaming Monitor,1,389.99,2019-12-15 21:51:00,294 River St, Los Angeles,CA,90001 +302951,AAA Batteries (4-pack),1,2.99,2019-12-01 16:15:00,176 Cedar St, San Francisco,CA,94016 +302952,Flatscreen TV,1,300.0,2019-12-02 09:35:00,877 Washington St, New York City,NY,10001 +302953,USB-C Charging Cable,1,11.95,2019-12-23 10:17:00,488 1st St, Dallas,TX,75001 +302954,Wired Headphones,1,11.99,2019-12-21 15:40:00,755 Jefferson St, New York City,NY,10001 +302955,Lightning Charging Cable,1,14.95,2019-12-25 19:09:00,138 Park St, Portland,ME,04101 +302956,Bose SoundSport Headphones,1,99.99,2019-12-16 01:27:00,41 Walnut St, Los Angeles,CA,90001 +302957,AA Batteries (4-pack),1,3.84,2019-12-25 21:04:00,92 Chestnut St, Los Angeles,CA,90001 +302958,USB-C Charging Cable,1,11.95,2019-12-24 21:13:00,196 14th St, San Francisco,CA,94016 +302959,USB-C Charging Cable,1,11.95,2019-12-01 11:59:00,50 Walnut St, Portland,OR,97035 +302960,Apple Airpods Headphones,1,150.0,2019-12-15 07:54:00,93 13th St, Boston,MA,02215 +302961,AA Batteries (4-pack),1,3.84,2019-12-09 13:21:00,490 Dogwood St, San Francisco,CA,94016 +302962,AAA Batteries (4-pack),2,2.99,2019-12-12 20:51:00,361 Wilson St, Portland,OR,97035 +302963,Flatscreen TV,1,300.0,2019-12-13 01:47:00,794 14th St, Seattle,WA,98101 +302964,AAA Batteries (4-pack),1,2.99,2019-12-30 23:05:00,990 Washington St, Los Angeles,CA,90001 +302965,34in Ultrawide Monitor,1,379.99,2019-12-12 12:54:00,314 Main St, Dallas,TX,75001 +302966,Lightning Charging Cable,2,14.95,2019-12-28 21:01:00,836 10th St, Seattle,WA,98101 +302967,iPhone,1,700.0,2019-12-14 13:13:00,165 Adams St, New York City,NY,10001 +302968,AAA Batteries (4-pack),1,2.99,2019-12-14 17:26:00,479 13th St, New York City,NY,10001 +302969,Wired Headphones,1,11.99,2019-12-22 13:20:00,644 Forest St, New York City,NY,10001 +302970,34in Ultrawide Monitor,1,379.99,2019-12-14 11:05:00,993 Highland St, Dallas,TX,75001 +302971,27in 4K Gaming Monitor,1,389.99,2019-12-06 11:00:00,629 Willow St, Seattle,WA,98101 +302972,USB-C Charging Cable,1,11.95,2019-12-11 20:26:00,165 Willow St, Atlanta,GA,30301 +302973,Lightning Charging Cable,1,14.95,2019-12-13 16:04:00,585 Willow St, San Francisco,CA,94016 +302974,27in 4K Gaming Monitor,1,389.99,2019-12-17 13:55:00,967 Lake St, Boston,MA,02215 +302975,Wired Headphones,1,11.99,2019-12-17 21:34:00,898 Madison St, San Francisco,CA,94016 +302976,ThinkPad Laptop,1,999.99,2019-12-03 15:25:00,542 11th St, Boston,MA,02215 +302977,Lightning Charging Cable,1,14.95,2019-12-13 18:54:00,294 Madison St, Dallas,TX,75001 +302978,USB-C Charging Cable,1,11.95,2019-12-27 16:02:00,999 12th St, Atlanta,GA,30301 +302979,Wired Headphones,1,11.99,2019-12-29 13:48:00,951 Church St, San Francisco,CA,94016 +302980,Wired Headphones,1,11.99,2019-12-24 19:53:00,596 5th St, San Francisco,CA,94016 +302981,USB-C Charging Cable,1,11.95,2019-12-18 18:48:00,144 1st St, San Francisco,CA,94016 +302982,iPhone,1,700.0,2019-12-10 05:55:00,759 Hickory St, San Francisco,CA,94016 +302983,USB-C Charging Cable,1,11.95,2019-12-03 08:58:00,681 6th St, Dallas,TX,75001 +302984,AAA Batteries (4-pack),2,2.99,2019-12-28 17:07:00,361 Cedar St, Seattle,WA,98101 +302985,USB-C Charging Cable,1,11.95,2019-12-23 20:32:00,803 13th St, New York City,NY,10001 +302985,Apple Airpods Headphones,1,150.0,2019-12-23 20:32:00,803 13th St, New York City,NY,10001 +302986,20in Monitor,1,109.99,2019-12-05 15:19:00,187 Cedar St, San Francisco,CA,94016 +302987,Lightning Charging Cable,1,14.95,2019-12-28 20:49:00,596 North St, San Francisco,CA,94016 +302988,ThinkPad Laptop,1,999.99,2019-12-21 13:52:00,333 Cherry St, Seattle,WA,98101 +302989,Vareebadd Phone,1,400.0,2019-12-23 15:00:00,8 2nd St, Atlanta,GA,30301 +302989,USB-C Charging Cable,1,11.95,2019-12-23 15:00:00,8 2nd St, Atlanta,GA,30301 +302989,Wired Headphones,1,11.99,2019-12-23 15:00:00,8 2nd St, Atlanta,GA,30301 +302990,AAA Batteries (4-pack),2,2.99,2019-12-06 19:39:00,930 Center St, San Francisco,CA,94016 +302991,Google Phone,1,600.0,2019-12-26 07:48:00,605 Washington St, Los Angeles,CA,90001 +302991,USB-C Charging Cable,1,11.95,2019-12-26 07:48:00,605 Washington St, Los Angeles,CA,90001 +302991,Wired Headphones,2,11.99,2019-12-26 07:48:00,605 Washington St, Los Angeles,CA,90001 +302992,AA Batteries (4-pack),1,3.84,2019-12-04 17:44:00,987 Jackson St, Boston,MA,02215 +302993,AA Batteries (4-pack),2,3.84,2019-12-12 16:37:00,480 River St, Portland,OR,97035 +302994,Lightning Charging Cable,1,14.95,2019-12-19 16:31:00,139 Elm St, Los Angeles,CA,90001 +302995,AAA Batteries (4-pack),1,2.99,2019-12-16 16:33:00,786 Lincoln St, Atlanta,GA,30301 +302996,20in Monitor,1,109.99,2019-12-04 15:05:00,178 Ridge St, Seattle,WA,98101 +302997,Flatscreen TV,1,300.0,2019-12-11 02:24:00,958 Hill St, Los Angeles,CA,90001 +302998,USB-C Charging Cable,1,11.95,2019-12-27 20:11:00,639 Cedar St, Atlanta,GA,30301 +302999,AA Batteries (4-pack),1,3.84,2019-12-19 20:52:00,312 Madison St, Austin,TX,73301 +303000,Lightning Charging Cable,1,14.95,2019-12-14 21:58:00,933 Hickory St, Los Angeles,CA,90001 +303001,Apple Airpods Headphones,1,150.0,2019-12-18 19:43:00,778 Chestnut St, Atlanta,GA,30301 +303002,AA Batteries (4-pack),1,3.84,2019-12-21 21:55:00,531 Park St, Austin,TX,73301 +303003,AA Batteries (4-pack),2,3.84,2019-12-02 19:12:00,659 Highland St, Atlanta,GA,30301 +303004,USB-C Charging Cable,1,11.95,2019-12-24 18:48:00,128 South St, Austin,TX,73301 +303005,ThinkPad Laptop,1,999.99,2019-12-04 22:28:00,283 Willow St, Boston,MA,02215 +303006,Bose SoundSport Headphones,1,99.99,2019-12-14 20:23:00,96 Ridge St, San Francisco,CA,94016 +303007,Apple Airpods Headphones,1,150.0,2019-12-25 19:42:00,944 Church St, Atlanta,GA,30301 +303008,AAA Batteries (4-pack),2,2.99,2019-12-28 10:12:00,853 Johnson St, Austin,TX,73301 +303009,27in FHD Monitor,1,149.99,2019-12-06 17:50:00,250 Main St, San Francisco,CA,94016 +303010,iPhone,1,700.0,2019-12-03 04:47:00,308 Willow St, Boston,MA,02215 +303011,AAA Batteries (4-pack),2,2.99,2019-12-27 12:27:00,228 Adams St, San Francisco,CA,94016 +303012,Apple Airpods Headphones,1,150.0,2019-12-10 01:47:00,125 Lake St, Atlanta,GA,30301 +303013,20in Monitor,1,109.99,2019-12-29 21:04:00,923 Ridge St, San Francisco,CA,94016 +303014,AAA Batteries (4-pack),1,2.99,2019-12-02 17:47:00,810 Willow St, San Francisco,CA,94016 +303015,USB-C Charging Cable,1,11.95,2019-12-26 10:22:00,922 14th St, New York City,NY,10001 +303016,AA Batteries (4-pack),2,3.84,2019-12-29 19:06:00,555 Church St, Los Angeles,CA,90001 +303017,Apple Airpods Headphones,1,150.0,2019-12-20 10:56:00,915 Walnut St, San Francisco,CA,94016 +303018,AA Batteries (4-pack),2,3.84,2019-12-24 07:03:00,533 Hill St, Austin,TX,73301 +303019,27in FHD Monitor,1,149.99,2019-12-19 21:48:00,606 Chestnut St, San Francisco,CA,94016 +303020,Bose SoundSport Headphones,1,99.99,2019-12-01 22:03:00,209 North St, Dallas,TX,75001 +303021,Wired Headphones,1,11.99,2019-12-07 09:36:00,878 Church St, Boston,MA,02215 +303022,Lightning Charging Cable,1,14.95,2019-12-01 11:48:00,306 West St, Atlanta,GA,30301 +303023,Wired Headphones,1,11.99,2019-12-04 00:25:00,632 Highland St, New York City,NY,10001 +303024,Lightning Charging Cable,1,14.95,2019-12-23 13:04:00,131 Hill St, New York City,NY,10001 +303025,Bose SoundSport Headphones,1,99.99,2019-12-24 08:25:00,899 Church St, New York City,NY,10001 +303026,iPhone,1,700.0,2019-12-07 12:34:00,117 Washington St, San Francisco,CA,94016 +303027,USB-C Charging Cable,1,11.95,2019-12-10 20:09:00,978 9th St, San Francisco,CA,94016 +303028,USB-C Charging Cable,3,11.95,2019-12-09 00:19:00,960 Jackson St, Boston,MA,02215 +303029,AA Batteries (4-pack),1,3.84,2019-12-12 17:37:00,659 6th St, Portland,OR,97035 +303030,Bose SoundSport Headphones,1,99.99,2019-12-05 11:53:00,860 West St, San Francisco,CA,94016 +303031,AA Batteries (4-pack),1,3.84,2019-12-17 17:04:00,852 Wilson St, San Francisco,CA,94016 +303032,27in FHD Monitor,1,149.99,2019-12-04 19:04:00,381 Lakeview St, Atlanta,GA,30301 +303033,Lightning Charging Cable,1,14.95,2019-12-21 20:12:00,397 Center St, Atlanta,GA,30301 +303034,Bose SoundSport Headphones,1,99.99,2019-12-18 18:50:00,422 Sunset St, San Francisco,CA,94016 +303035,USB-C Charging Cable,1,11.95,2019-12-23 11:17:00,622 7th St, Los Angeles,CA,90001 +303036,USB-C Charging Cable,1,11.95,2019-12-06 09:34:00,69 Maple St, San Francisco,CA,94016 +303037,AAA Batteries (4-pack),1,2.99,2019-12-10 14:56:00,327 West St, Dallas,TX,75001 +303038,AAA Batteries (4-pack),2,2.99,2019-12-06 18:33:00,619 Wilson St, Seattle,WA,98101 +303039,AAA Batteries (4-pack),2,2.99,2019-12-05 06:31:00,158 11th St, New York City,NY,10001 +303040,AA Batteries (4-pack),1,3.84,2019-12-24 21:38:00,906 West St, Los Angeles,CA,90001 +303041,Wired Headphones,1,11.99,2019-12-27 00:22:00,824 5th St, Seattle,WA,98101 +303042,27in 4K Gaming Monitor,1,389.99,2019-12-28 14:45:00,18 Center St, New York City,NY,10001 +303043,USB-C Charging Cable,1,11.95,2019-12-29 22:03:00,938 Adams St, New York City,NY,10001 +303043,AA Batteries (4-pack),2,3.84,2019-12-29 22:03:00,938 Adams St, New York City,NY,10001 +303044,Flatscreen TV,1,300.0,2019-12-06 19:11:00,902 Meadow St, Austin,TX,73301 +303045,ThinkPad Laptop,1,999.99,2019-12-12 09:57:00,619 6th St, Austin,TX,73301 +303046,Lightning Charging Cable,1,14.95,2019-12-23 08:13:00,779 10th St, Boston,MA,02215 +303047,34in Ultrawide Monitor,1,379.99,2019-12-16 10:49:00,600 Forest St, Dallas,TX,75001 +303048,Wired Headphones,1,11.99,2019-12-31 14:39:00,278 River St, San Francisco,CA,94016 +303049,Google Phone,1,600.0,2019-12-21 07:46:00,982 Spruce St, Austin,TX,73301 +303050,USB-C Charging Cable,1,11.95,2019-12-31 19:54:00,397 5th St, Seattle,WA,98101 +303051,iPhone,1,700.0,2019-12-25 20:15:00,541 Washington St, Portland,OR,97035 +303051,Lightning Charging Cable,1,14.95,2019-12-25 20:15:00,541 Washington St, Portland,OR,97035 +303052,27in FHD Monitor,1,149.99,2019-12-02 19:58:00,438 Meadow St, Dallas,TX,75001 +303053,AAA Batteries (4-pack),3,2.99,2019-12-19 23:23:00,948 2nd St, New York City,NY,10001 +303054,Bose SoundSport Headphones,1,99.99,2019-12-21 17:18:00,967 7th St, San Francisco,CA,94016 +303055,Macbook Pro Laptop,1,1700.0,2019-12-05 20:17:00,984 Cedar St, Los Angeles,CA,90001 +303056,27in FHD Monitor,1,149.99,2019-12-22 15:14:00,799 13th St, San Francisco,CA,94016 +303057,Wired Headphones,1,11.99,2019-12-18 17:34:00,299 10th St, Austin,TX,73301 +303058,27in FHD Monitor,1,149.99,2019-12-30 18:41:00,799 Elm St, San Francisco,CA,94016 +303059,AAA Batteries (4-pack),2,2.99,2019-12-30 11:21:00,559 12th St, Boston,MA,02215 +303060,Wired Headphones,1,11.99,2019-12-04 05:59:00,126 Jackson St, Portland,OR,97035 +303061,USB-C Charging Cable,1,11.95,2019-12-27 16:56:00,993 North St, San Francisco,CA,94016 +303062,27in 4K Gaming Monitor,1,389.99,2019-12-26 11:47:00,271 South St, San Francisco,CA,94016 +303063,Google Phone,1,600.0,2019-12-22 14:29:00,263 Sunset St, San Francisco,CA,94016 +303064,USB-C Charging Cable,1,11.95,2019-12-19 21:55:00,954 Lakeview St, San Francisco,CA,94016 +303065,Lightning Charging Cable,1,14.95,2019-12-10 19:39:00,847 Adams St, Portland,OR,97035 +303066,Bose SoundSport Headphones,1,99.99,2019-12-16 22:22:00,611 Maple St, San Francisco,CA,94016 +303067,34in Ultrawide Monitor,1,379.99,2019-12-27 21:26:00,746 South St, Boston,MA,02215 +303068,Apple Airpods Headphones,1,150.0,2019-12-28 18:12:00,333 Cherry St, New York City,NY,10001 +303069,Google Phone,1,600.0,2019-12-25 15:00:00,603 Hill St, New York City,NY,10001 +303069,USB-C Charging Cable,1,11.95,2019-12-25 15:00:00,603 Hill St, New York City,NY,10001 +303070,AAA Batteries (4-pack),1,2.99,2019-12-18 22:59:00,332 Washington St, Boston,MA,02215 +303071,LG Dryer,1,600.0,2019-12-13 20:31:00,59 5th St, Seattle,WA,98101 +303072,LG Washing Machine,1,600.0,2019-12-14 17:30:00,151 Elm St, San Francisco,CA,94016 +303073,Wired Headphones,1,11.99,2019-12-20 11:22:00,273 12th St, San Francisco,CA,94016 +303074,20in Monitor,1,109.99,2019-12-12 17:32:00,105 Chestnut St, San Francisco,CA,94016 +303075,Lightning Charging Cable,1,14.95,2019-12-10 18:23:00,788 Johnson St, Dallas,TX,75001 +303076,LG Washing Machine,1,600.0,2019-12-02 21:36:00,821 Forest St, Dallas,TX,75001 +303077,Macbook Pro Laptop,1,1700.0,2019-12-08 18:58:00,104 Lakeview St, Boston,MA,02215 +303078,27in 4K Gaming Monitor,1,389.99,2019-12-01 18:56:00,37 Meadow St, Seattle,WA,98101 +303079,34in Ultrawide Monitor,1,379.99,2019-12-23 01:35:00,685 Chestnut St, Austin,TX,73301 +303080,27in FHD Monitor,1,149.99,2019-12-03 11:37:00,33 River St, Portland,OR,97035 +303080,Apple Airpods Headphones,1,150.0,2019-12-03 11:37:00,33 River St, Portland,OR,97035 +303081,Wired Headphones,1,11.99,2019-12-10 20:40:00,841 Lincoln St, Boston,MA,02215 +303082,Wired Headphones,3,11.99,2019-12-01 23:06:00,812 Park St, San Francisco,CA,94016 +303083,Bose SoundSport Headphones,1,99.99,2019-12-15 19:07:00,116 Lincoln St, New York City,NY,10001 +303084,USB-C Charging Cable,1,11.95,2019-12-09 13:49:00,570 Madison St, Austin,TX,73301 +303085,20in Monitor,1,109.99,2019-12-24 12:50:00,148 Highland St, San Francisco,CA,94016 +303086,Lightning Charging Cable,1,14.95,2019-12-02 17:28:00,101 5th St, Portland,OR,97035 +303087,27in FHD Monitor,1,149.99,2019-12-11 19:44:00,946 Spruce St, Los Angeles,CA,90001 +303088,AAA Batteries (4-pack),2,2.99,2019-12-19 22:19:00,404 Madison St, Boston,MA,02215 +303089,Wired Headphones,1,11.99,2019-12-26 09:24:00,763 Highland St, Los Angeles,CA,90001 +303090,AAA Batteries (4-pack),2,2.99,2019-12-06 23:02:00,35 Maple St, Dallas,TX,75001 +303091,ThinkPad Laptop,1,999.99,2019-12-26 08:16:00,451 Sunset St, Los Angeles,CA,90001 +303092,Wired Headphones,1,11.99,2019-12-26 20:35:00,634 Meadow St, Austin,TX,73301 +303093,Flatscreen TV,1,300.0,2019-12-19 16:22:00,276 Maple St, Dallas,TX,75001 +303094,Lightning Charging Cable,1,14.95,2019-12-26 16:24:00,871 7th St, New York City,NY,10001 +303095,20in Monitor,1,109.99,2019-12-12 10:03:00,902 Washington St, Los Angeles,CA,90001 +303096,27in 4K Gaming Monitor,1,389.99,2019-12-21 23:09:00,54 8th St, Atlanta,GA,30301 +303097,iPhone,1,700.0,2019-12-28 17:46:00,927 Ridge St, Austin,TX,73301 +303098,USB-C Charging Cable,1,11.95,2019-12-25 17:36:00,84 Willow St, Boston,MA,02215 +303099,Apple Airpods Headphones,1,150.0,2019-12-02 22:03:00,801 Spruce St, San Francisco,CA,94016 +303100,Lightning Charging Cable,1,14.95,2019-12-29 20:22:00,804 Jackson St, Atlanta,GA,30301 +303101,Lightning Charging Cable,1,14.95,2019-12-28 15:27:00,819 6th St, Los Angeles,CA,90001 +303102,AA Batteries (4-pack),1,3.84,2019-12-06 20:49:00,23 Maple St, Los Angeles,CA,90001 +303103,27in 4K Gaming Monitor,1,389.99,2019-12-23 11:43:00,448 Church St, Boston,MA,02215 +303104,Wired Headphones,1,11.99,2019-12-09 14:54:00,37 Lakeview St, Portland,OR,97035 +303105,USB-C Charging Cable,1,11.95,2019-12-14 22:45:00,528 Main St, Boston,MA,02215 +303106,Vareebadd Phone,1,400.0,2019-12-15 21:33:00,776 Adams St, Boston,MA,02215 +303107,USB-C Charging Cable,1,11.95,2019-12-06 18:25:00,763 12th St, Dallas,TX,75001 +303108,AA Batteries (4-pack),1,3.84,2019-12-26 21:26:00,504 Walnut St, New York City,NY,10001 +303109,Apple Airpods Headphones,1,150.0,2019-12-06 21:08:00,211 Ridge St, Atlanta,GA,30301 +303110,Lightning Charging Cable,1,14.95,2019-12-06 23:03:00,40 South St, Los Angeles,CA,90001 +303111,USB-C Charging Cable,1,11.95,2019-12-17 07:59:00,990 8th St, Boston,MA,02215 +303112,USB-C Charging Cable,1,11.95,2019-12-18 11:13:00,640 Hill St, Boston,MA,02215 +303113,iPhone,1,700.0,2019-12-29 17:27:00,615 Chestnut St, Austin,TX,73301 +303114,Lightning Charging Cable,1,14.95,2019-12-02 21:25:00,955 Madison St, Los Angeles,CA,90001 +303115,AA Batteries (4-pack),1,3.84,2019-12-13 15:53:00,156 Walnut St, San Francisco,CA,94016 +303116,iPhone,1,700.0,2019-12-14 16:20:00,947 14th St, Atlanta,GA,30301 +303117,AA Batteries (4-pack),1,3.84,2019-12-27 05:53:00,939 14th St, Dallas,TX,75001 +303118,USB-C Charging Cable,2,11.95,2019-12-07 15:44:00,122 Jefferson St, San Francisco,CA,94016 +303119,Bose SoundSport Headphones,1,99.99,2019-12-18 11:49:00,425 Main St, Seattle,WA,98101 +303120,Lightning Charging Cable,1,14.95,2019-12-13 18:07:00,220 2nd St, New York City,NY,10001 +303121,USB-C Charging Cable,1,11.95,2019-12-06 07:31:00,197 Meadow St, Atlanta,GA,30301 +303122,Google Phone,1,600.0,2019-12-26 17:27:00,152 Forest St, Seattle,WA,98101 +303123,Lightning Charging Cable,1,14.95,2019-12-22 00:23:00,48 7th St, Boston,MA,02215 +303124,Apple Airpods Headphones,1,150.0,2019-12-08 18:51:00,415 Jackson St, Atlanta,GA,30301 +303125,Bose SoundSport Headphones,1,99.99,2019-12-30 17:57:00,477 Church St, Atlanta,GA,30301 +303126,USB-C Charging Cable,1,11.95,2019-12-20 23:49:00,337 Walnut St, Los Angeles,CA,90001 +303127,Google Phone,1,600.0,2019-12-10 15:52:00,602 4th St, Los Angeles,CA,90001 +303128,Wired Headphones,2,11.99,2019-12-21 18:53:00,273 Adams St, Boston,MA,02215 +303129,USB-C Charging Cable,1,11.95,2019-12-01 17:35:00,985 Adams St, Los Angeles,CA,90001 +303130,AA Batteries (4-pack),1,3.84,2019-12-26 16:07:00,567 River St, San Francisco,CA,94016 +303131,Wired Headphones,1,11.99,2019-12-27 13:01:00,349 Maple St, Portland,OR,97035 +303132,Wired Headphones,1,11.99,2019-12-04 19:13:00,824 Hickory St, Austin,TX,73301 +303133,20in Monitor,1,109.99,2019-12-19 17:12:00,987 River St, Atlanta,GA,30301 +303134,AAA Batteries (4-pack),2,2.99,2019-12-24 01:16:00,186 Lincoln St, Portland,OR,97035 +303135,Bose SoundSport Headphones,1,99.99,2019-12-12 19:55:00,199 Dogwood St, Portland,OR,97035 +303136,27in FHD Monitor,1,149.99,2019-12-19 21:23:00,451 14th St, Seattle,WA,98101 +303137,Apple Airpods Headphones,1,150.0,2019-12-07 07:20:00,918 Spruce St, Portland,OR,97035 +303138,AA Batteries (4-pack),1,3.84,2019-12-04 20:02:00,874 8th St, Seattle,WA,98101 +303139,Lightning Charging Cable,1,14.95,2019-12-06 10:37:00,833 14th St, Portland,OR,97035 +303140,Vareebadd Phone,1,400.0,2019-12-04 12:49:00,785 Cherry St, Los Angeles,CA,90001 +303141,20in Monitor,1,109.99,2019-12-25 18:23:00,573 Washington St, New York City,NY,10001 +303142,Apple Airpods Headphones,1,150.0,2019-12-13 16:12:00,42 7th St, San Francisco,CA,94016 +303143,AA Batteries (4-pack),1,3.84,2019-12-13 03:45:00,398 Park St, San Francisco,CA,94016 +303144,Google Phone,1,600.0,2019-12-31 18:22:00,546 12th St, Los Angeles,CA,90001 +303145,Bose SoundSport Headphones,1,99.99,2019-12-19 22:39:00,562 Walnut St, Boston,MA,02215 +303146,Apple Airpods Headphones,1,150.0,2019-12-06 22:41:00,63 Maple St, Los Angeles,CA,90001 +303147,iPhone,1,700.0,2019-12-31 19:40:00,499 13th St, Atlanta,GA,30301 +303147,Lightning Charging Cable,1,14.95,2019-12-31 19:40:00,499 13th St, Atlanta,GA,30301 +303148,USB-C Charging Cable,1,11.95,2019-12-28 07:48:00,280 Meadow St, Boston,MA,02215 +303149,ThinkPad Laptop,1,999.99,2019-12-29 21:58:00,810 2nd St, San Francisco,CA,94016 +303150,Bose SoundSport Headphones,1,99.99,2019-12-14 22:35:00,175 South St, Seattle,WA,98101 +303151,USB-C Charging Cable,1,11.95,2019-12-05 23:18:00,792 Wilson St, Dallas,TX,75001 +303152,27in FHD Monitor,1,149.99,2019-12-04 20:32:00,137 Wilson St, Los Angeles,CA,90001 +303153,Apple Airpods Headphones,1,150.0,2019-12-15 13:55:00,312 Wilson St, New York City,NY,10001 +303154,iPhone,1,700.0,2019-12-25 08:53:00,126 Church St, San Francisco,CA,94016 +303154,Wired Headphones,1,11.99,2019-12-25 08:53:00,126 Church St, San Francisco,CA,94016 +303155,Wired Headphones,1,11.99,2019-12-24 09:52:00,104 Chestnut St, San Francisco,CA,94016 +303156,Macbook Pro Laptop,1,1700.0,2019-12-10 22:31:00,108 Highland St, Los Angeles,CA,90001 +303157,USB-C Charging Cable,1,11.95,2019-12-07 13:39:00,211 11th St, Atlanta,GA,30301 +303158,Wired Headphones,1,11.99,2019-12-25 22:27:00,154 Lincoln St, Los Angeles,CA,90001 +303159,Lightning Charging Cable,1,14.95,2019-12-07 19:27:00,729 Church St, Austin,TX,73301 +303160,27in 4K Gaming Monitor,1,389.99,2019-12-21 09:20:00,45 Spruce St, Seattle,WA,98101 +303161,Wired Headphones,1,11.99,2019-12-08 19:38:00,670 Main St, Dallas,TX,75001 +303162,USB-C Charging Cable,1,11.95,2019-12-16 11:13:00,52 7th St, Dallas,TX,75001 +303163,AAA Batteries (4-pack),4,2.99,2019-12-17 14:14:00,690 Wilson St, San Francisco,CA,94016 +303164,Lightning Charging Cable,1,14.95,2019-12-07 13:16:00,938 Lincoln St, San Francisco,CA,94016 +303165,AAA Batteries (4-pack),1,2.99,2019-12-15 22:07:00,854 Spruce St, San Francisco,CA,94016 +303166,AAA Batteries (4-pack),2,2.99,2019-12-01 13:21:00,99 Spruce St, San Francisco,CA,94016 +303167,34in Ultrawide Monitor,1,379.99,2019-12-27 09:38:00,922 Chestnut St, Seattle,WA,98101 +303168,AAA Batteries (4-pack),1,2.99,2019-12-23 21:42:00,432 Highland St, San Francisco,CA,94016 +303169,AAA Batteries (4-pack),1,2.99,2019-12-31 15:59:00,350 Lake St, Boston,MA,02215 +303170,Lightning Charging Cable,1,14.95,2019-12-03 13:50:00,226 Ridge St, Seattle,WA,98101 +303171,AAA Batteries (4-pack),2,2.99,2019-12-31 19:15:00,855 River St, Dallas,TX,75001 +303172,iPhone,1,700.0,2019-12-14 20:28:00,633 Washington St, New York City,NY,10001 +303173,27in 4K Gaming Monitor,1,389.99,2019-12-15 21:27:00,711 Sunset St, Portland,OR,97035 +303174,27in 4K Gaming Monitor,1,389.99,2019-12-23 22:59:00,745 West St, Seattle,WA,98101 +303175,Wired Headphones,1,11.99,2019-12-15 13:47:00,592 River St, Dallas,TX,75001 +303176,Macbook Pro Laptop,1,1700.0,2019-12-02 22:56:00,797 West St, Los Angeles,CA,90001 +303177,Lightning Charging Cable,1,14.95,2019-12-01 16:10:00,316 South St, Dallas,TX,75001 +303178,20in Monitor,1,109.99,2019-12-11 20:27:00,192 Willow St, Los Angeles,CA,90001 +303179,Lightning Charging Cable,1,14.95,2019-12-15 15:53:00,276 9th St, San Francisco,CA,94016 +303180,Apple Airpods Headphones,1,150.0,2019-12-10 10:45:00,302 Meadow St, New York City,NY,10001 +303181,Lightning Charging Cable,1,14.95,2019-12-11 02:57:00,564 11th St, Dallas,TX,75001 +303182,Lightning Charging Cable,1,14.95,2019-12-20 23:26:00,82 12th St, San Francisco,CA,94016 +303183,Lightning Charging Cable,1,14.95,2019-12-31 20:05:00,39 Cherry St, Boston,MA,02215 +303184,USB-C Charging Cable,1,11.95,2019-12-09 09:12:00,915 Cedar St, San Francisco,CA,94016 +303185,Lightning Charging Cable,1,14.95,2019-12-15 17:41:00,375 Lake St, Los Angeles,CA,90001 +303186,20in Monitor,1,109.99,2019-12-19 19:51:00,682 Cedar St, Seattle,WA,98101 +303187,Bose SoundSport Headphones,1,99.99,2019-12-05 13:29:00,828 Madison St, Atlanta,GA,30301 +303188,Lightning Charging Cable,1,14.95,2019-12-25 09:16:00,202 Park St, Portland,ME,04101 +303189,Lightning Charging Cable,1,14.95,2019-12-14 20:40:00,257 North St, New York City,NY,10001 +303190,AAA Batteries (4-pack),1,2.99,2019-12-23 11:24:00,999 Main St, Atlanta,GA,30301 +303191,AAA Batteries (4-pack),3,2.99,2019-12-19 06:18:00,85 Walnut St, Los Angeles,CA,90001 +303192,Bose SoundSport Headphones,1,99.99,2019-12-10 21:07:00,290 Lake St, Atlanta,GA,30301 +303193,AA Batteries (4-pack),1,3.84,2019-12-16 09:13:00,721 Dogwood St, Seattle,WA,98101 +303194,Lightning Charging Cable,1,14.95,2019-12-09 21:35:00,46 2nd St, Boston,MA,02215 +303195,Apple Airpods Headphones,2,150.0,2019-12-12 21:36:00,687 Wilson St, Portland,OR,97035 +303196,27in FHD Monitor,1,149.99,2019-12-08 12:14:00,272 Washington St, Dallas,TX,75001 +303197,Wired Headphones,1,11.99,2019-12-13 19:33:00,320 Cherry St, Boston,MA,02215 +303198,AA Batteries (4-pack),1,3.84,2019-12-06 16:14:00,68 Willow St, New York City,NY,10001 +303199,USB-C Charging Cable,1,11.95,2019-12-14 15:36:00,991 Pine St, San Francisco,CA,94016 +303200,Lightning Charging Cable,1,14.95,2019-12-06 20:50:00,294 Forest St, Seattle,WA,98101 +303201,AA Batteries (4-pack),1,3.84,2019-12-19 20:11:00,870 6th St, Atlanta,GA,30301 +303202,Lightning Charging Cable,2,14.95,2019-12-10 10:35:00,564 Main St, San Francisco,CA,94016 +303203,USB-C Charging Cable,1,11.95,2019-12-05 11:11:00,64 1st St, Atlanta,GA,30301 +303204,AAA Batteries (4-pack),1,2.99,2019-12-11 05:36:00,313 12th St, Portland,ME,04101 +303205,Apple Airpods Headphones,1,150.0,2019-12-09 16:35:00,986 Spruce St, Dallas,TX,75001 +303206,34in Ultrawide Monitor,1,379.99,2019-12-11 08:27:00,660 Park St, Boston,MA,02215 +303207,AAA Batteries (4-pack),1,2.99,2019-12-21 21:54:00,335 Walnut St, Atlanta,GA,30301 +303208,Bose SoundSport Headphones,1,99.99,2019-12-10 11:48:00,867 2nd St, New York City,NY,10001 +303209,USB-C Charging Cable,2,11.95,2019-12-23 09:31:00,471 Jefferson St, San Francisco,CA,94016 +303210,Lightning Charging Cable,1,14.95,2019-12-02 16:56:00,265 Center St, Seattle,WA,98101 +303211,Wired Headphones,2,11.99,2019-12-20 19:23:00,50 Lincoln St, New York City,NY,10001 +303212,Apple Airpods Headphones,1,150.0,2019-12-09 21:27:00,568 6th St, San Francisco,CA,94016 +303213,iPhone,1,700.0,2019-12-24 09:30:00,831 7th St, Portland,OR,97035 +303214,AA Batteries (4-pack),1,3.84,2019-12-01 20:09:00,795 Willow St, San Francisco,CA,94016 +303215,AAA Batteries (4-pack),1,2.99,2019-12-02 22:58:00,834 Park St, New York City,NY,10001 +303216,USB-C Charging Cable,1,11.95,2019-12-07 01:06:00,539 Pine St, Los Angeles,CA,90001 +303217,Lightning Charging Cable,1,14.95,2019-12-31 05:38:00,462 12th St, Atlanta,GA,30301 +303218,iPhone,1,700.0,2019-12-05 01:26:00,165 5th St, Atlanta,GA,30301 +303219,AAA Batteries (4-pack),1,2.99,2019-12-30 11:27:00,907 Willow St, Los Angeles,CA,90001 +303220,USB-C Charging Cable,1,11.95,2019-12-31 18:22:00,165 Cherry St, Portland,OR,97035 +303221,Apple Airpods Headphones,1,150.0,2019-12-27 13:02:00,708 Johnson St, Austin,TX,73301 +303222,27in FHD Monitor,1,149.99,2019-12-20 16:38:00,233 Elm St, Seattle,WA,98101 +303223,Lightning Charging Cable,1,14.95,2019-12-24 22:53:00,202 5th St, San Francisco,CA,94016 +303224,Apple Airpods Headphones,1,150.0,2019-12-06 17:41:00,545 Lake St, Boston,MA,02215 +303225,Lightning Charging Cable,1,14.95,2019-12-01 13:17:00,441 Maple St, Austin,TX,73301 +303226,AA Batteries (4-pack),2,3.84,2019-12-11 17:49:00,969 Maple St, New York City,NY,10001 +303227,AA Batteries (4-pack),1,3.84,2019-12-24 11:50:00,752 Forest St, Atlanta,GA,30301 +303228,Google Phone,1,600.0,2019-12-29 14:56:00,709 Main St, New York City,NY,10001 +303229,Bose SoundSport Headphones,1,99.99,2019-12-03 12:36:00,27 Chestnut St, New York City,NY,10001 +303230,AA Batteries (4-pack),1,3.84,2019-12-13 16:40:00,582 1st St, Portland,OR,97035 +303231,Flatscreen TV,1,300.0,2019-12-30 15:00:00,167 Madison St, San Francisco,CA,94016 +303232,Google Phone,1,600.0,2019-12-03 10:06:00,214 Meadow St, Los Angeles,CA,90001 +303233,Lightning Charging Cable,1,14.95,2019-12-02 19:25:00,198 Main St, San Francisco,CA,94016 +303234,27in 4K Gaming Monitor,1,389.99,2019-12-03 01:54:00,838 Lake St, San Francisco,CA,94016 +303235,USB-C Charging Cable,1,11.95,2019-12-02 13:45:00,620 Jackson St, Atlanta,GA,30301 +303236,Apple Airpods Headphones,1,150.0,2019-12-21 08:51:00,200 Maple St, Los Angeles,CA,90001 +303237,AAA Batteries (4-pack),1,2.99,2019-12-29 19:27:00,618 Spruce St, Dallas,TX,75001 +303238,USB-C Charging Cable,1,11.95,2019-12-02 13:15:00,389 Lakeview St, New York City,NY,10001 +303239,AAA Batteries (4-pack),2,2.99,2019-12-23 17:28:00,473 Center St, Los Angeles,CA,90001 +303240,iPhone,1,700.0,2019-12-04 10:03:00,61 Hickory St, Los Angeles,CA,90001 +303241,Apple Airpods Headphones,1,150.0,2019-12-14 16:56:00,588 Spruce St, Austin,TX,73301 +303242,Apple Airpods Headphones,1,150.0,2019-12-14 19:01:00,36 8th St, New York City,NY,10001 +303243,AA Batteries (4-pack),3,3.84,2019-12-05 20:50:00,239 8th St, New York City,NY,10001 +303244,AA Batteries (4-pack),1,3.84,2019-12-09 08:19:00,48 9th St, Boston,MA,02215 +303245,ThinkPad Laptop,1,999.99,2019-12-19 19:02:00,177 Church St, Boston,MA,02215 +303246,Lightning Charging Cable,1,14.95,2019-12-19 08:21:00,890 8th St, Seattle,WA,98101 +303247,Flatscreen TV,1,300.0,2019-12-02 14:50:00,979 6th St, Seattle,WA,98101 +303248,AA Batteries (4-pack),2,3.84,2019-12-09 11:43:00,378 2nd St, New York City,NY,10001 +303249,Lightning Charging Cable,1,14.95,2019-12-24 21:58:00,788 Washington St, New York City,NY,10001 +303250,Wired Headphones,2,11.99,2019-12-20 20:24:00,511 Lake St, Austin,TX,73301 +303251,27in 4K Gaming Monitor,1,389.99,2019-12-10 17:35:00,300 Center St, San Francisco,CA,94016 +303252,USB-C Charging Cable,1,11.95,2019-12-18 21:29:00,90 North St, San Francisco,CA,94016 +303253,27in FHD Monitor,1,149.99,2019-12-05 13:22:00,775 1st St, Dallas,TX,75001 +303254,Bose SoundSport Headphones,1,99.99,2019-12-06 16:43:00,22 12th St, New York City,NY,10001 +303255,27in FHD Monitor,1,149.99,2019-12-20 12:14:00,606 1st St, Dallas,TX,75001 +303256,Apple Airpods Headphones,1,150.0,2019-12-24 08:46:00,270 10th St, New York City,NY,10001 +303257,27in FHD Monitor,1,149.99,2019-12-14 23:10:00,745 Adams St, San Francisco,CA,94016 +303258,iPhone,1,700.0,2019-12-11 08:27:00,37 Washington St, San Francisco,CA,94016 +303259,Bose SoundSport Headphones,1,99.99,2019-12-19 10:08:00,35 Washington St, Atlanta,GA,30301 +303260,Wired Headphones,1,11.99,2019-12-12 18:43:00,531 Pine St, Dallas,TX,75001 +303261,AAA Batteries (4-pack),2,2.99,2019-12-01 08:25:00,721 7th St, New York City,NY,10001 +303262,AA Batteries (4-pack),1,3.84,2019-12-15 16:12:00,978 Sunset St, Atlanta,GA,30301 +303263,Wired Headphones,1,11.99,2019-12-09 13:50:00,117 12th St, New York City,NY,10001 +303264,Wired Headphones,1,11.99,2019-12-15 13:00:00,271 Sunset St, Austin,TX,73301 +303265,20in Monitor,1,109.99,2019-12-30 17:00:00,160 Jefferson St, Atlanta,GA,30301 +303266,Wired Headphones,1,11.99,2019-12-08 19:38:00,583 4th St, San Francisco,CA,94016 +303267,27in FHD Monitor,1,149.99,2019-12-15 19:53:00,591 9th St, Atlanta,GA,30301 +303268,Bose SoundSport Headphones,1,99.99,2019-12-24 15:30:00,915 Jefferson St, Seattle,WA,98101 +303269,Bose SoundSport Headphones,1,99.99,2019-12-06 19:02:00,299 West St, New York City,NY,10001 +303270,USB-C Charging Cable,1,11.95,2019-12-17 18:56:00,117 Hill St, Atlanta,GA,30301 +303271,AA Batteries (4-pack),1,3.84,2019-12-31 20:02:00,103 7th St, Los Angeles,CA,90001 +303272,AA Batteries (4-pack),2,3.84,2019-12-11 15:20:00,20 6th St, San Francisco,CA,94016 +303273,Macbook Pro Laptop,1,1700.0,2019-12-20 11:39:00,600 Spruce St, Atlanta,GA,30301 +303274,AA Batteries (4-pack),1,3.84,2019-12-11 13:28:00,720 Walnut St, Portland,OR,97035 +303275,27in 4K Gaming Monitor,1,389.99,2019-12-30 16:17:00,414 13th St, Seattle,WA,98101 +303276,iPhone,1,700.0,2019-12-30 21:30:00,741 Hickory St, San Francisco,CA,94016 +303277,Wired Headphones,1,11.99,2019-12-13 14:11:00,323 Jefferson St, San Francisco,CA,94016 +303278,LG Dryer,1,600.0,2019-12-08 12:10:00,900 Jackson St, Austin,TX,73301 +303279,27in FHD Monitor,1,149.99,2019-12-04 13:03:00,959 Hill St, Los Angeles,CA,90001 +303280,Bose SoundSport Headphones,1,99.99,2019-12-16 16:58:00,712 North St, San Francisco,CA,94016 +303281,Lightning Charging Cable,1,14.95,2019-12-26 19:50:00,890 7th St, Los Angeles,CA,90001 +303282,Lightning Charging Cable,1,14.95,2019-12-18 09:59:00,667 Meadow St, San Francisco,CA,94016 +303283,Wired Headphones,1,11.99,2019-12-28 07:00:00,927 Hill St, San Francisco,CA,94016 +303284,Lightning Charging Cable,1,14.95,2019-12-05 09:14:00,157 4th St, Seattle,WA,98101 +303285,AA Batteries (4-pack),1,3.84,2019-12-28 11:40:00,197 2nd St, San Francisco,CA,94016 +303286,Bose SoundSport Headphones,1,99.99,2019-12-07 01:23:00,421 Dogwood St, Atlanta,GA,30301 +303287,iPhone,1,700.0,2019-12-18 22:00:00,263 Madison St, Boston,MA,02215 +303288,27in 4K Gaming Monitor,1,389.99,2019-12-27 06:22:00,936 Walnut St, San Francisco,CA,94016 +303289,iPhone,1,700.0,2019-12-01 18:58:00,559 5th St, Los Angeles,CA,90001 +303290,27in FHD Monitor,1,149.99,2019-12-11 18:34:00,729 Ridge St, San Francisco,CA,94016 +303291,Flatscreen TV,1,300.0,2019-12-19 11:15:00,641 9th St, Dallas,TX,75001 +303292,Vareebadd Phone,1,400.0,2019-12-29 18:50:00,899 Walnut St, New York City,NY,10001 +303293,USB-C Charging Cable,1,11.95,2019-12-03 17:02:00,229 1st St, Atlanta,GA,30301 +303294,AAA Batteries (4-pack),2,2.99,2019-12-12 18:02:00,992 Adams St, Boston,MA,02215 +303295,AA Batteries (4-pack),3,3.84,2019-12-24 14:20:00,992 South St, Dallas,TX,75001 +303295,Apple Airpods Headphones,1,150.0,2019-12-24 14:20:00,992 South St, Dallas,TX,75001 +303296,Apple Airpods Headphones,1,150.0,2019-12-17 21:19:00,261 West St, Los Angeles,CA,90001 +303297,Lightning Charging Cable,1,14.95,2019-12-08 19:01:00,368 Spruce St, Los Angeles,CA,90001 +303298,Wired Headphones,2,11.99,2019-12-13 16:33:00,886 Main St, Boston,MA,02215 +303299,Wired Headphones,1,11.99,2019-12-10 17:48:00,633 Chestnut St, New York City,NY,10001 +303300,AAA Batteries (4-pack),1,2.99,2019-12-14 14:57:00,88 Center St, San Francisco,CA,94016 +303301,Lightning Charging Cable,1,14.95,2019-12-22 17:22:00,637 10th St, San Francisco,CA,94016 +303302,USB-C Charging Cable,1,11.95,2019-12-30 12:21:00,457 Spruce St, New York City,NY,10001 +303303,Bose SoundSport Headphones,1,99.99,2019-12-22 13:02:00,527 5th St, San Francisco,CA,94016 +303304,Lightning Charging Cable,2,14.95,2019-12-19 13:39:00,153 10th St, Austin,TX,73301 +303305,AA Batteries (4-pack),1,3.84,2019-12-29 11:06:00,614 Main St, Los Angeles,CA,90001 +303306,34in Ultrawide Monitor,1,379.99,2019-12-12 20:48:00,727 Forest St, San Francisco,CA,94016 +303307,Wired Headphones,1,11.99,2019-12-05 17:47:00,304 Forest St, Boston,MA,02215 +303308,ThinkPad Laptop,1,999.99,2019-12-30 10:00:00,893 8th St, Portland,OR,97035 +303309,USB-C Charging Cable,1,11.95,2019-12-25 13:00:00,253 Lake St, Seattle,WA,98101 +303310,AAA Batteries (4-pack),2,2.99,2019-12-18 08:42:00,988 13th St, Boston,MA,02215 +303311,Bose SoundSport Headphones,1,99.99,2019-12-11 20:39:00,412 Sunset St, New York City,NY,10001 +303312,Lightning Charging Cable,1,14.95,2019-12-04 17:48:00,109 Park St, San Francisco,CA,94016 +303313,USB-C Charging Cable,1,11.95,2019-12-07 08:47:00,339 Maple St, Boston,MA,02215 +303314,Wired Headphones,1,11.99,2019-12-29 12:54:00,797 13th St, New York City,NY,10001 +303315,AAA Batteries (4-pack),1,2.99,2019-12-04 19:25:00,810 7th St, San Francisco,CA,94016 +303316,AAA Batteries (4-pack),2,2.99,2019-12-10 16:15:00,949 13th St, New York City,NY,10001 +303317,Google Phone,1,600.0,2019-12-13 19:32:00,462 Cedar St, San Francisco,CA,94016 +303317,USB-C Charging Cable,1,11.95,2019-12-13 19:32:00,462 Cedar St, San Francisco,CA,94016 +303318,ThinkPad Laptop,1,999.99,2019-12-17 22:58:00,409 12th St, Dallas,TX,75001 +303319,AAA Batteries (4-pack),1,2.99,2019-12-02 18:28:00,219 Meadow St, San Francisco,CA,94016 +303320,AA Batteries (4-pack),1,3.84,2019-12-19 19:04:00,382 2nd St, Portland,OR,97035 +303321,Bose SoundSport Headphones,1,99.99,2019-12-23 01:19:00,241 Church St, Los Angeles,CA,90001 +303322,Wired Headphones,1,11.99,2019-12-22 13:43:00,314 Sunset St, San Francisco,CA,94016 +303322,Lightning Charging Cable,1,14.95,2019-12-22 13:43:00,314 Sunset St, San Francisco,CA,94016 +303323,USB-C Charging Cable,1,11.95,2019-12-30 13:54:00,330 River St, Los Angeles,CA,90001 +303324,Apple Airpods Headphones,1,150.0,2019-12-12 02:57:00,509 Hickory St, Los Angeles,CA,90001 +303325,AAA Batteries (4-pack),2,2.99,2019-12-10 14:23:00,425 14th St, Los Angeles,CA,90001 +303326,AAA Batteries (4-pack),2,2.99,2019-12-16 16:37:00,827 Highland St, Austin,TX,73301 +303327,AA Batteries (4-pack),1,3.84,2019-12-21 12:51:00,580 11th St, San Francisco,CA,94016 +303328,Macbook Pro Laptop,1,1700.0,2019-12-22 16:28:00,942 Church St, Portland,OR,97035 +303329,27in 4K Gaming Monitor,1,389.99,2019-12-31 08:26:00,948 12th St, San Francisco,CA,94016 +303330,20in Monitor,1,109.99,2019-12-15 20:58:00,425 1st St, Dallas,TX,75001 +303331,Bose SoundSport Headphones,1,99.99,2019-12-01 17:07:00,9 13th St, San Francisco,CA,94016 +303332,USB-C Charging Cable,1,11.95,2019-12-26 04:20:00,354 1st St, San Francisco,CA,94016 +303333,Lightning Charging Cable,1,14.95,2019-12-20 12:16:00,434 5th St, New York City,NY,10001 +303334,USB-C Charging Cable,1,11.95,2019-12-26 16:30:00,256 Elm St, Austin,TX,73301 +303335,AAA Batteries (4-pack),1,2.99,2019-12-14 22:18:00,549 Walnut St, New York City,NY,10001 +303336,34in Ultrawide Monitor,1,379.99,2019-12-17 12:03:00,520 Chestnut St, New York City,NY,10001 +303337,Apple Airpods Headphones,1,150.0,2019-12-06 11:11:00,374 Willow St, New York City,NY,10001 +303338,USB-C Charging Cable,1,11.95,2019-12-10 20:03:00,467 6th St, San Francisco,CA,94016 +303338,Lightning Charging Cable,1,14.95,2019-12-10 20:03:00,467 6th St, San Francisco,CA,94016 +303339,Apple Airpods Headphones,1,150.0,2019-12-11 13:47:00,533 Washington St, Boston,MA,02215 +303340,USB-C Charging Cable,1,11.95,2019-12-14 15:41:00,368 Elm St, Seattle,WA,98101 +303341,Apple Airpods Headphones,1,150.0,2019-12-25 22:20:00,127 Lakeview St, Los Angeles,CA,90001 +303342,Lightning Charging Cable,1,14.95,2019-12-16 14:03:00,927 11th St, San Francisco,CA,94016 +303343,AAA Batteries (4-pack),2,2.99,2019-12-14 11:57:00,618 Jefferson St, San Francisco,CA,94016 +303344,iPhone,1,700.0,2019-12-26 16:19:00,252 Cedar St, New York City,NY,10001 +303345,LG Washing Machine,1,600.0,2019-12-10 19:03:00,197 2nd St, Dallas,TX,75001 +303346,Google Phone,1,600.0,2019-12-17 12:40:00,781 Pine St, New York City,NY,10001 +303347,Google Phone,1,600.0,2019-12-22 20:07:00,427 Walnut St, Los Angeles,CA,90001 +303348,AAA Batteries (4-pack),3,2.99,2019-12-14 07:34:00,323 Hill St, San Francisco,CA,94016 +303349,Lightning Charging Cable,1,14.95,2019-12-15 20:15:00,255 Jackson St, Boston,MA,02215 +303350,Bose SoundSport Headphones,1,99.99,2019-12-02 19:26:00,581 Cherry St, Dallas,TX,75001 +303351,Wired Headphones,1,11.99,2019-12-03 18:08:00,259 Meadow St, San Francisco,CA,94016 +303352,AA Batteries (4-pack),2,3.84,2019-12-14 00:52:00,232 4th St, New York City,NY,10001 +303353,Bose SoundSport Headphones,1,99.99,2019-12-04 13:12:00,442 8th St, Los Angeles,CA,90001 +303354,USB-C Charging Cable,1,11.95,2019-12-12 11:28:00,932 Lakeview St, New York City,NY,10001 +303355,Wired Headphones,1,11.99,2019-12-16 15:12:00,862 Park St, San Francisco,CA,94016 +303356,iPhone,1,700.0,2019-12-30 18:14:00,288 Willow St, Seattle,WA,98101 +303356,Wired Headphones,1,11.99,2019-12-30 18:14:00,288 Willow St, Seattle,WA,98101 +303357,Apple Airpods Headphones,1,150.0,2019-12-25 14:10:00,120 6th St, San Francisco,CA,94016 +303357,Google Phone,1,600.0,2019-12-25 14:10:00,120 6th St, San Francisco,CA,94016 +303358,Wired Headphones,1,11.99,2019-12-01 12:56:00,605 Church St, San Francisco,CA,94016 +303359,AA Batteries (4-pack),1,3.84,2019-12-24 18:58:00,862 4th St, Los Angeles,CA,90001 +303360,AAA Batteries (4-pack),1,2.99,2019-12-20 10:59:00,290 10th St, Los Angeles,CA,90001 +303361,USB-C Charging Cable,1,11.95,2019-12-01 15:32:00,545 Hill St, Dallas,TX,75001 +303362,Bose SoundSport Headphones,1,99.99,2019-12-21 21:26:00,960 Hill St, Los Angeles,CA,90001 +303363,AA Batteries (4-pack),2,3.84,2019-12-07 07:41:00,818 Cherry St, San Francisco,CA,94016 +303364,Bose SoundSport Headphones,1,99.99,2019-12-16 14:19:00,100 Madison St, Boston,MA,02215 +303365,Apple Airpods Headphones,1,150.0,2019-12-12 16:10:00,823 10th St, Los Angeles,CA,90001 +303366,AA Batteries (4-pack),2,3.84,2019-12-25 18:15:00,538 Sunset St, San Francisco,CA,94016 +303367,Bose SoundSport Headphones,1,99.99,2019-12-21 11:27:00,733 Park St, Seattle,WA,98101 +303368,iPhone,1,700.0,2019-12-08 14:39:00,605 Cedar St, Boston,MA,02215 +303368,Lightning Charging Cable,1,14.95,2019-12-08 14:39:00,605 Cedar St, Boston,MA,02215 +303369,Lightning Charging Cable,1,14.95,2019-12-14 10:04:00,140 13th St, Los Angeles,CA,90001 +303370,Google Phone,1,600.0,2019-12-28 20:11:00,711 Ridge St, Los Angeles,CA,90001 +303370,Bose SoundSport Headphones,1,99.99,2019-12-28 20:11:00,711 Ridge St, Los Angeles,CA,90001 +303371,Apple Airpods Headphones,1,150.0,2019-12-30 07:25:00,535 Highland St, Atlanta,GA,30301 +303372,AAA Batteries (4-pack),1,2.99,2019-12-15 01:14:00,634 Ridge St, Boston,MA,02215 +303373,Wired Headphones,1,11.99,2019-12-03 08:38:00,574 Hickory St, Boston,MA,02215 +303374,Wired Headphones,1,11.99,2019-12-26 08:33:00,301 Cedar St, San Francisco,CA,94016 +303375,AA Batteries (4-pack),1,3.84,2019-12-18 22:41:00,304 Park St, San Francisco,CA,94016 +303376,Apple Airpods Headphones,1,150.0,2019-12-30 12:20:00,48 8th St, San Francisco,CA,94016 +303377,Apple Airpods Headphones,1,150.0,2019-12-05 10:16:00,836 Pine St, Austin,TX,73301 +303378,AA Batteries (4-pack),1,3.84,2019-12-19 18:54:00,77 12th St, New York City,NY,10001 +303379,27in 4K Gaming Monitor,1,389.99,2019-12-21 20:45:00,112 South St, Boston,MA,02215 +303380,AA Batteries (4-pack),1,3.84,2019-12-26 10:24:00,715 Lakeview St, San Francisco,CA,94016 +303381,Flatscreen TV,1,300.0,2019-12-02 14:24:00,437 11th St, San Francisco,CA,94016 +303382,Wired Headphones,1,11.99,2019-12-05 22:00:00,348 Cedar St, San Francisco,CA,94016 +303383,AAA Batteries (4-pack),1,2.99,2019-12-01 14:39:00,158 Main St, San Francisco,CA,94016 +303384,Apple Airpods Headphones,1,150.0,2019-12-03 15:12:00,959 Elm St, Boston,MA,02215 +303385,AA Batteries (4-pack),1,3.84,2019-12-15 09:38:00,354 5th St, San Francisco,CA,94016 +303386,iPhone,1,700.0,2019-12-26 13:19:00,106 Cedar St, San Francisco,CA,94016 +303387,AAA Batteries (4-pack),2,2.99,2019-12-20 12:58:00,757 Cherry St, Boston,MA,02215 +303388,Wired Headphones,1,11.99,2019-12-28 10:17:00,28 Washington St, Portland,OR,97035 +303389,USB-C Charging Cable,1,11.95,2019-12-11 14:45:00,147 1st St, New York City,NY,10001 +303390,34in Ultrawide Monitor,1,379.99,2019-12-14 11:26:00,950 7th St, New York City,NY,10001 +303391,20in Monitor,1,109.99,2019-12-29 00:17:00,9 11th St, Boston,MA,02215 +303392,Apple Airpods Headphones,1,150.0,2019-12-03 11:58:00,916 9th St, New York City,NY,10001 +303393,34in Ultrawide Monitor,1,379.99,2019-12-06 00:29:00,219 4th St, San Francisco,CA,94016 +303394,27in FHD Monitor,1,149.99,2019-12-20 23:46:00,151 Ridge St, Dallas,TX,75001 +303395,27in 4K Gaming Monitor,1,389.99,2019-12-18 10:05:00,193 Center St, San Francisco,CA,94016 +303396,AA Batteries (4-pack),1,3.84,2019-12-18 20:21:00,404 Hickory St, Atlanta,GA,30301 +303397,34in Ultrawide Monitor,1,379.99,2019-12-22 17:02:00,250 Jackson St, Los Angeles,CA,90001 +303398,Bose SoundSport Headphones,1,99.99,2019-12-08 16:28:00,677 12th St, New York City,NY,10001 +303399,AA Batteries (4-pack),1,3.84,2019-12-09 10:25:00,158 1st St, Boston,MA,02215 +303400,USB-C Charging Cable,1,11.95,2019-12-26 00:16:00,552 Spruce St, Seattle,WA,98101 +303401,27in FHD Monitor,1,149.99,2019-12-20 17:45:00,916 Washington St, Dallas,TX,75001 +303402,Google Phone,1,600.0,2019-12-21 12:01:00,903 Sunset St, Boston,MA,02215 +303402,Wired Headphones,1,11.99,2019-12-21 12:01:00,903 Sunset St, Boston,MA,02215 +303403,AA Batteries (4-pack),1,3.84,2019-12-17 19:29:00,212 Main St, Portland,ME,04101 +303404,iPhone,1,700.0,2019-12-12 09:30:00,200 Cedar St, San Francisco,CA,94016 +303405,Lightning Charging Cable,1,14.95,2019-12-02 12:52:00,786 Park St, Portland,OR,97035 +303406,27in FHD Monitor,1,149.99,2019-12-16 21:31:00,241 Madison St, San Francisco,CA,94016 +303407,27in FHD Monitor,1,149.99,2019-12-26 19:11:00,273 Johnson St, New York City,NY,10001 +303408,20in Monitor,1,109.99,2019-12-01 15:13:00,468 Madison St, Atlanta,GA,30301 +303409,Flatscreen TV,1,300.0,2019-12-26 20:42:00,295 14th St, Boston,MA,02215 +303410,AA Batteries (4-pack),1,3.84,2019-12-26 11:40:00,54 Willow St, Los Angeles,CA,90001 +303411,Flatscreen TV,1,300.0,2019-12-05 13:52:00,892 2nd St, San Francisco,CA,94016 +303412,27in FHD Monitor,1,149.99,2019-12-17 17:59:00,324 Meadow St, Dallas,TX,75001 +303413,Lightning Charging Cable,1,14.95,2019-12-08 21:10:00,152 13th St, Los Angeles,CA,90001 +303414,Bose SoundSport Headphones,1,99.99,2019-12-12 04:06:00,139 Spruce St, San Francisco,CA,94016 +303415,Wired Headphones,1,11.99,2019-12-15 14:59:00,545 Hill St, New York City,NY,10001 +303416,Lightning Charging Cable,1,14.95,2019-12-24 09:28:00,364 Center St, Boston,MA,02215 +303417,27in 4K Gaming Monitor,1,389.99,2019-12-11 21:50:00,761 Walnut St, Seattle,WA,98101 +303418,Macbook Pro Laptop,1,1700.0,2019-12-23 16:21:00,337 Center St, New York City,NY,10001 +303419,AAA Batteries (4-pack),1,2.99,2019-12-07 20:22:00,991 Meadow St, Dallas,TX,75001 +303420,Lightning Charging Cable,1,14.95,2019-12-22 18:50:00,850 Dogwood St, New York City,NY,10001 +303421,20in Monitor,1,109.99,2019-12-10 20:36:00,746 Walnut St, Seattle,WA,98101 +303421,Bose SoundSport Headphones,1,99.99,2019-12-10 20:36:00,746 Walnut St, Seattle,WA,98101 +303422,Lightning Charging Cable,1,14.95,2019-12-10 11:34:00,264 11th St, Atlanta,GA,30301 +303423,Apple Airpods Headphones,1,150.0,2019-12-26 14:02:00,135 Adams St, Portland,OR,97035 +303424,Wired Headphones,1,11.99,2019-12-26 11:10:00,84 Willow St, San Francisco,CA,94016 +303425,Lightning Charging Cable,1,14.95,2019-12-15 07:54:00,253 2nd St, San Francisco,CA,94016 +303426,Wired Headphones,1,11.99,2019-12-14 17:43:00,400 6th St, Austin,TX,73301 +303427,Lightning Charging Cable,1,14.95,2019-12-08 21:56:00,465 North St, San Francisco,CA,94016 +303428,AA Batteries (4-pack),1,3.84,2019-12-05 19:35:00,481 Cedar St, Seattle,WA,98101 +303429,Google Phone,1,600.0,2019-12-16 13:28:00,545 Spruce St, Los Angeles,CA,90001 +303430,USB-C Charging Cable,1,11.95,2019-12-12 12:40:00,273 11th St, Boston,MA,02215 +303431,USB-C Charging Cable,1,11.95,2019-12-13 17:41:00,715 Wilson St, San Francisco,CA,94016 +303432,Google Phone,1,600.0,2019-12-24 06:19:00,743 14th St, Atlanta,GA,30301 +303433,Lightning Charging Cable,1,14.95,2019-12-24 17:34:00,693 Johnson St, San Francisco,CA,94016 +303434,AAA Batteries (4-pack),2,2.99,2019-12-01 14:46:00,686 4th St, San Francisco,CA,94016 +303435,AAA Batteries (4-pack),2,2.99,2019-12-17 08:51:00,683 Chestnut St, Portland,OR,97035 +303436,Wired Headphones,1,11.99,2019-12-01 07:08:00,533 11th St, Dallas,TX,75001 +303437,Bose SoundSport Headphones,1,99.99,2019-12-04 09:44:00,749 5th St, Dallas,TX,75001 +303438,AA Batteries (4-pack),2,3.84,2019-12-05 20:01:00,706 Hill St, San Francisco,CA,94016 +303439,Apple Airpods Headphones,1,150.0,2019-12-30 20:39:00,387 Park St, San Francisco,CA,94016 +303440,USB-C Charging Cable,1,11.95,2019-12-03 20:31:00,568 8th St, San Francisco,CA,94016 +303441,Lightning Charging Cable,1,14.95,2019-12-19 22:11:00,421 7th St, New York City,NY,10001 +303442,Wired Headphones,1,11.99,2019-12-01 13:54:00,694 Maple St, Atlanta,GA,30301 +303443,Wired Headphones,1,11.99,2019-12-03 11:17:00,11 7th St, Atlanta,GA,30301 +303444,AAA Batteries (4-pack),4,2.99,2019-12-30 18:35:00,72 Hickory St, Portland,OR,97035 +303445,Lightning Charging Cable,1,14.95,2019-12-12 20:06:00,319 14th St, Dallas,TX,75001 +303446,27in FHD Monitor,1,149.99,2019-12-04 19:45:00,771 Lake St, Los Angeles,CA,90001 +303447,AA Batteries (4-pack),1,3.84,2019-12-15 19:29:00,170 Lake St, Boston,MA,02215 +303448,AAA Batteries (4-pack),2,2.99,2019-12-23 14:51:00,746 Lake St, Los Angeles,CA,90001 +303449,AAA Batteries (4-pack),2,2.99,2019-12-31 08:33:00,495 Cherry St, Boston,MA,02215 +303450,34in Ultrawide Monitor,1,379.99,2019-12-27 10:51:00,276 Hickory St, New York City,NY,10001 +303451,27in FHD Monitor,1,149.99,2019-12-28 20:55:00,791 South St, San Francisco,CA,94016 +303452,34in Ultrawide Monitor,1,379.99,2019-12-12 20:04:00,811 Walnut St, Los Angeles,CA,90001 +303453,34in Ultrawide Monitor,1,379.99,2019-12-14 23:22:00,241 Park St, San Francisco,CA,94016 +303454,Wired Headphones,1,11.99,2019-12-06 20:49:00,834 10th St, Los Angeles,CA,90001 +303455,AA Batteries (4-pack),1,3.84,2019-12-05 08:18:00,170 Maple St, Portland,ME,04101 +303456,Wired Headphones,1,11.99,2019-12-07 05:59:00,390 Elm St, San Francisco,CA,94016 +303457,Apple Airpods Headphones,1,150.0,2019-12-08 15:20:00,548 Johnson St, Seattle,WA,98101 +303458,USB-C Charging Cable,2,11.95,2019-12-06 16:23:00,285 River St, Dallas,TX,75001 +303458,ThinkPad Laptop,1,999.99,2019-12-06 16:23:00,285 River St, Dallas,TX,75001 +303459,27in 4K Gaming Monitor,1,389.99,2019-12-09 15:27:00,62 North St, Atlanta,GA,30301 +303460,AA Batteries (4-pack),1,3.84,2019-12-10 20:26:00,86 Main St, Los Angeles,CA,90001 +303461,Lightning Charging Cable,1,14.95,2019-12-12 20:10:00,509 11th St, New York City,NY,10001 +303462,Bose SoundSport Headphones,1,99.99,2019-12-23 19:54:00,277 Cherry St, Los Angeles,CA,90001 +303463,Bose SoundSport Headphones,1,99.99,2019-12-03 20:54:00,680 1st St, Los Angeles,CA,90001 +303464,AA Batteries (4-pack),1,3.84,2019-12-25 11:14:00,347 14th St, Atlanta,GA,30301 +303465,USB-C Charging Cable,1,11.95,2019-12-10 12:02:00,423 Meadow St, New York City,NY,10001 +303466,AA Batteries (4-pack),1,3.84,2019-12-27 12:59:00,781 Maple St, Los Angeles,CA,90001 +303467,iPhone,1,700.0,2019-12-18 19:00:00,445 Hill St, New York City,NY,10001 +303467,Lightning Charging Cable,1,14.95,2019-12-18 19:00:00,445 Hill St, New York City,NY,10001 +303468,27in FHD Monitor,1,149.99,2019-12-12 07:26:00,38 5th St, Atlanta,GA,30301 +303469,Bose SoundSport Headphones,1,99.99,2019-12-11 20:00:00,410 Hickory St, Atlanta,GA,30301 +303470,USB-C Charging Cable,1,11.95,2019-12-30 21:17:00,948 River St, New York City,NY,10001 +303471,AAA Batteries (4-pack),1,2.99,2019-12-31 13:56:00,804 10th St, Los Angeles,CA,90001 +303472,Wired Headphones,1,11.99,2019-12-10 20:32:00,271 Dogwood St, Seattle,WA,98101 +303473,34in Ultrawide Monitor,1,379.99,2019-12-28 12:40:00,56 Walnut St, Boston,MA,02215 +303474,AA Batteries (4-pack),2,3.84,2019-12-14 12:50:00,140 13th St, New York City,NY,10001 +303475,USB-C Charging Cable,2,11.95,2019-12-21 07:28:00,993 10th St, Boston,MA,02215 +303476,Wired Headphones,1,11.99,2019-12-18 10:36:00,366 Cedar St, New York City,NY,10001 +303477,iPhone,1,700.0,2019-12-19 12:34:00,545 12th St, Boston,MA,02215 +303477,Lightning Charging Cable,1,14.95,2019-12-19 12:34:00,545 12th St, Boston,MA,02215 +303478,20in Monitor,1,109.99,2019-12-15 16:09:00,179 Jefferson St, Seattle,WA,98101 +303479,iPhone,1,700.0,2019-12-22 20:03:00,946 Jackson St, Seattle,WA,98101 +303480,Flatscreen TV,1,300.0,2019-12-05 22:55:00,911 Walnut St, Atlanta,GA,30301 +303481,Apple Airpods Headphones,1,150.0,2019-12-23 11:18:00,776 14th St, San Francisco,CA,94016 +303482,Wired Headphones,1,11.99,2019-12-16 23:17:00,666 Jackson St, San Francisco,CA,94016 +303483,AA Batteries (4-pack),2,3.84,2019-12-04 12:26:00,940 Walnut St, Boston,MA,02215 +303484,Flatscreen TV,1,300.0,2019-12-22 20:29:00,950 Forest St, Los Angeles,CA,90001 +303485,USB-C Charging Cable,1,11.95,2019-12-26 12:14:00,424 10th St, New York City,NY,10001 +303485,Google Phone,1,600.0,2019-12-26 12:14:00,424 10th St, New York City,NY,10001 +303486,AAA Batteries (4-pack),1,2.99,2019-12-31 20:02:00,182 4th St, San Francisco,CA,94016 +303487,AA Batteries (4-pack),1,3.84,2019-12-16 18:39:00,734 Church St, San Francisco,CA,94016 +303488,AAA Batteries (4-pack),2,2.99,2019-12-04 19:22:00,856 Chestnut St, Dallas,TX,75001 +303489,AAA Batteries (4-pack),1,2.99,2019-12-30 20:20:00,423 Willow St, Los Angeles,CA,90001 +303490,Bose SoundSport Headphones,1,99.99,2019-12-30 09:40:00,849 6th St, Portland,OR,97035 +303491,27in 4K Gaming Monitor,1,389.99,2019-12-23 09:23:00,936 Center St, New York City,NY,10001 +303492,AAA Batteries (4-pack),2,2.99,2019-12-17 16:53:00,595 7th St, San Francisco,CA,94016 +303493,Bose SoundSport Headphones,1,99.99,2019-12-26 12:13:00,453 8th St, San Francisco,CA,94016 +303494,Google Phone,1,600.0,2019-12-29 17:46:00,105 Spruce St, New York City,NY,10001 +303495,AAA Batteries (4-pack),1,2.99,2019-12-16 11:28:00,994 Sunset St, Dallas,TX,75001 +303496,Wired Headphones,1,11.99,2019-12-15 17:26:00,510 11th St, Austin,TX,73301 +303497,Apple Airpods Headphones,1,150.0,2019-12-04 19:15:00,885 14th St, Atlanta,GA,30301 +303498,34in Ultrawide Monitor,1,379.99,2019-12-10 10:34:00,451 Lincoln St, Portland,ME,04101 +303499,USB-C Charging Cable,2,11.95,2019-12-19 21:27:00,257 Ridge St, Austin,TX,73301 +303500,Bose SoundSport Headphones,1,99.99,2019-12-15 11:19:00,878 10th St, Boston,MA,02215 +303501,AAA Batteries (4-pack),1,2.99,2019-12-26 13:43:00,278 4th St, San Francisco,CA,94016 +303502,Wired Headphones,1,11.99,2019-12-26 17:54:00,764 Lake St, Portland,OR,97035 +303503,AA Batteries (4-pack),1,3.84,2019-12-13 10:41:00,194 13th St, San Francisco,CA,94016 +303504,Bose SoundSport Headphones,1,99.99,2019-12-06 02:22:00,391 Jefferson St, New York City,NY,10001 +303505,Wired Headphones,1,11.99,2019-12-06 11:59:00,360 Highland St, Los Angeles,CA,90001 +303506,AAA Batteries (4-pack),1,2.99,2019-12-22 11:12:00,159 Spruce St, New York City,NY,10001 +303507,Lightning Charging Cable,1,14.95,2019-12-08 13:56:00,980 Highland St, Dallas,TX,75001 +303508,Wired Headphones,1,11.99,2019-12-21 19:33:00,321 Sunset St, San Francisco,CA,94016 +303508,USB-C Charging Cable,1,11.95,2019-12-21 19:33:00,321 Sunset St, San Francisco,CA,94016 +303509,iPhone,1,700.0,2019-12-31 18:29:00,673 Lakeview St, Boston,MA,02215 +303510,Apple Airpods Headphones,1,150.0,2019-12-24 21:03:00,702 1st St, Los Angeles,CA,90001 +303511,iPhone,1,700.0,2019-12-29 10:56:00,719 9th St, New York City,NY,10001 +303512,Wired Headphones,1,11.99,2019-12-25 13:36:00,411 8th St, Atlanta,GA,30301 +303513,iPhone,1,700.0,2019-12-26 12:05:00,890 West St, Boston,MA,02215 +303514,Wired Headphones,1,11.99,2019-12-31 17:58:00,927 Washington St, New York City,NY,10001 +303515,Apple Airpods Headphones,1,150.0,2019-12-13 18:06:00,904 Church St, Los Angeles,CA,90001 +303516,AAA Batteries (4-pack),2,2.99,2019-12-01 23:35:00,504 Park St, San Francisco,CA,94016 +303517,Bose SoundSport Headphones,1,99.99,2019-12-27 12:32:00,226 Park St, New York City,NY,10001 +303518,Apple Airpods Headphones,1,150.0,2019-12-07 15:23:00,339 North St, San Francisco,CA,94016 +303519,Macbook Pro Laptop,1,1700.0,2019-12-02 17:31:00,802 South St, Portland,OR,97035 +303520,iPhone,1,700.0,2019-12-21 18:53:00,800 Hill St, Los Angeles,CA,90001 +303520,Lightning Charging Cable,1,14.95,2019-12-21 18:53:00,800 Hill St, Los Angeles,CA,90001 +303521,Google Phone,1,600.0,2019-12-01 20:43:00,853 7th St, San Francisco,CA,94016 +303522,ThinkPad Laptop,1,999.99,2019-12-16 13:34:00,674 Pine St, Portland,OR,97035 +303523,Bose SoundSport Headphones,1,99.99,2019-12-28 13:08:00,514 4th St, New York City,NY,10001 +303524,AAA Batteries (4-pack),1,2.99,2019-12-10 18:29:00,307 Center St, New York City,NY,10001 +303525,USB-C Charging Cable,1,11.95,2019-12-20 14:03:00,600 North St, San Francisco,CA,94016 +303525,Google Phone,1,600.0,2019-12-20 14:03:00,600 North St, San Francisco,CA,94016 +303526,USB-C Charging Cable,1,11.95,2019-12-22 11:26:00,279 Ridge St, Los Angeles,CA,90001 +303527,iPhone,1,700.0,2019-12-07 18:07:00,617 6th St, San Francisco,CA,94016 +303527,Lightning Charging Cable,2,14.95,2019-12-07 18:07:00,617 6th St, San Francisco,CA,94016 +303528,Wired Headphones,1,11.99,2019-12-21 19:01:00,578 14th St, San Francisco,CA,94016 +303529,Bose SoundSport Headphones,1,99.99,2019-12-18 21:04:00,673 Dogwood St, Seattle,WA,98101 +303530,USB-C Charging Cable,1,11.95,2019-12-09 18:01:00,941 North St, Boston,MA,02215 +303531,Wired Headphones,1,11.99,2019-12-18 14:31:00,573 8th St, San Francisco,CA,94016 +303532,AA Batteries (4-pack),1,3.84,2019-12-15 20:53:00,702 14th St, Portland,OR,97035 +303533,Apple Airpods Headphones,1,150.0,2019-12-24 22:11:00,977 Hickory St, Dallas,TX,75001 +303534,Lightning Charging Cable,2,14.95,2019-12-28 19:48:00,362 12th St, Los Angeles,CA,90001 +303535,Google Phone,1,600.0,2019-12-05 14:59:00,974 2nd St, Atlanta,GA,30301 +303535,USB-C Charging Cable,1,11.95,2019-12-05 14:59:00,974 2nd St, Atlanta,GA,30301 +303536,Apple Airpods Headphones,1,150.0,2019-12-10 09:50:00,978 Meadow St, Seattle,WA,98101 +303537,Wired Headphones,1,11.99,2019-12-17 09:04:00,18 Spruce St, San Francisco,CA,94016 +303538,USB-C Charging Cable,1,11.95,2019-12-20 07:23:00,569 14th St, Seattle,WA,98101 +303539,Bose SoundSport Headphones,1,99.99,2019-12-06 07:10:00,176 Sunset St, Los Angeles,CA,90001 +303540,Bose SoundSport Headphones,1,99.99,2019-12-05 09:48:00,529 South St, Boston,MA,02215 +303541,AAA Batteries (4-pack),1,2.99,2019-12-23 05:51:00,738 Church St, San Francisco,CA,94016 +303542,Vareebadd Phone,1,400.0,2019-12-11 15:21:00,788 Meadow St, New York City,NY,10001 +303543,Apple Airpods Headphones,1,150.0,2019-12-07 07:02:00,688 10th St, Los Angeles,CA,90001 +303544,Lightning Charging Cable,1,14.95,2019-12-31 15:54:00,231 Walnut St, New York City,NY,10001 +303545,iPhone,1,700.0,2019-12-11 21:25:00,456 7th St, San Francisco,CA,94016 +303546,AAA Batteries (4-pack),1,2.99,2019-12-27 20:24:00,306 Walnut St, Los Angeles,CA,90001 +303547,AAA Batteries (4-pack),1,2.99,2019-12-11 14:33:00,376 4th St, Seattle,WA,98101 +303548,Flatscreen TV,1,300.0,2019-12-05 18:17:00,624 4th St, San Francisco,CA,94016 +303549,20in Monitor,1,109.99,2019-12-17 07:13:00,336 4th St, New York City,NY,10001 +303550,Lightning Charging Cable,1,14.95,2019-12-11 21:18:00,177 4th St, San Francisco,CA,94016 +303551,Wired Headphones,1,11.99,2019-12-23 13:30:00,751 Ridge St, San Francisco,CA,94016 +303552,Apple Airpods Headphones,1,150.0,2019-12-11 06:37:00,564 4th St, Seattle,WA,98101 +303553,20in Monitor,1,109.99,2019-12-21 17:28:00,975 Park St, New York City,NY,10001 +303554,Apple Airpods Headphones,1,150.0,2019-12-13 08:26:00,363 Chestnut St, San Francisco,CA,94016 +303555,Apple Airpods Headphones,1,150.0,2019-12-27 10:18:00,569 West St, Los Angeles,CA,90001 +303556,ThinkPad Laptop,1,999.99,2019-12-31 07:21:00,368 Elm St, Dallas,TX,75001 +303557,AA Batteries (4-pack),1,3.84,2019-12-18 09:56:00,562 5th St, San Francisco,CA,94016 +303558,USB-C Charging Cable,1,11.95,2019-12-08 11:14:00,288 Park St, Atlanta,GA,30301 +303559,AAA Batteries (4-pack),1,2.99,2019-12-01 16:24:00,78 Adams St, San Francisco,CA,94016 +303560,27in 4K Gaming Monitor,1,389.99,2019-12-03 10:07:00,514 Ridge St, Los Angeles,CA,90001 +303561,Wired Headphones,1,11.99,2019-12-06 21:36:00,486 Walnut St, New York City,NY,10001 +303562,Macbook Pro Laptop,1,1700.0,2019-12-09 21:56:00,393 5th St, San Francisco,CA,94016 +303563,AA Batteries (4-pack),2,3.84,2019-12-02 17:33:00,221 Lakeview St, Seattle,WA,98101 +303564,Wired Headphones,1,11.99,2019-12-09 22:12:00,403 Chestnut St, Los Angeles,CA,90001 +303565,Bose SoundSport Headphones,1,99.99,2019-12-20 17:15:00,589 Lincoln St, Seattle,WA,98101 +303566,Apple Airpods Headphones,1,150.0,2019-12-21 19:04:00,668 8th St, San Francisco,CA,94016 +303567,AA Batteries (4-pack),1,3.84,2019-12-12 15:21:00,411 Washington St, Atlanta,GA,30301 +303568,Bose SoundSport Headphones,1,99.99,2019-12-17 17:10:00,911 13th St, Boston,MA,02215 +303569,Lightning Charging Cable,1,14.95,2019-12-09 19:50:00,862 14th St, Los Angeles,CA,90001 +303570,Macbook Pro Laptop,1,1700.0,2019-12-22 01:52:00,924 Center St, Dallas,TX,75001 +303571,Flatscreen TV,1,300.0,2019-12-29 06:45:00,29 2nd St, San Francisco,CA,94016 +303572,USB-C Charging Cable,2,11.95,2019-12-16 19:58:00,719 Wilson St, Atlanta,GA,30301 +303573,Lightning Charging Cable,1,14.95,2019-12-11 18:15:00,485 Spruce St, Seattle,WA,98101 +303574,Wired Headphones,1,11.99,2019-12-01 10:18:00,800 Spruce St, New York City,NY,10001 +303575,Apple Airpods Headphones,1,150.0,2019-12-22 00:10:00,472 Forest St, Austin,TX,73301 +303576,Apple Airpods Headphones,1,150.0,2019-12-01 13:06:00,270 Chestnut St, Boston,MA,02215 +303577,AA Batteries (4-pack),1,3.84,2019-12-13 17:00:00,838 5th St, Boston,MA,02215 +303578,34in Ultrawide Monitor,1,379.99,2019-12-28 11:10:00,435 14th St, New York City,NY,10001 +303579,AA Batteries (4-pack),1,3.84,2019-12-05 22:27:00,816 6th St, Dallas,TX,75001 +303580,AA Batteries (4-pack),1,3.84,2019-12-26 11:42:00,561 5th St, New York City,NY,10001 +303581,USB-C Charging Cable,2,11.95,2019-12-06 16:56:00,869 13th St, Boston,MA,02215 +303582,AA Batteries (4-pack),1,3.84,2019-12-06 00:17:00,501 Washington St, Seattle,WA,98101 +303583,Wired Headphones,1,11.99,2019-12-14 22:56:00,812 Lincoln St, San Francisco,CA,94016 +303584,27in 4K Gaming Monitor,1,389.99,2019-12-05 21:26:00,643 Center St, Atlanta,GA,30301 +303585,Apple Airpods Headphones,1,150.0,2019-12-18 10:12:00,487 Johnson St, Boston,MA,02215 +303586,Bose SoundSport Headphones,1,99.99,2019-12-23 11:56:00,819 Cherry St, New York City,NY,10001 +303587,Lightning Charging Cable,1,14.95,2019-12-24 13:26:00,395 Sunset St, Austin,TX,73301 +303588,Lightning Charging Cable,1,14.95,2019-12-12 13:59:00,630 Adams St, Portland,ME,04101 +303589,Apple Airpods Headphones,1,150.0,2019-12-25 13:06:00,630 Forest St, San Francisco,CA,94016 +303590,20in Monitor,1,109.99,2019-12-03 10:45:00,769 Willow St, Seattle,WA,98101 +303591,iPhone,1,700.0,2019-12-25 11:47:00,717 South St, San Francisco,CA,94016 +303592,USB-C Charging Cable,2,11.95,2019-12-17 10:44:00,747 4th St, New York City,NY,10001 +303592,Google Phone,1,600.0,2019-12-17 10:44:00,747 4th St, New York City,NY,10001 +303593,Google Phone,1,600.0,2019-12-14 01:02:00,87 River St, San Francisco,CA,94016 +303593,USB-C Charging Cable,1,11.95,2019-12-14 01:02:00,87 River St, San Francisco,CA,94016 +303594,AAA Batteries (4-pack),2,2.99,2019-12-08 20:39:00,655 Johnson St, New York City,NY,10001 +303595,AAA Batteries (4-pack),1,2.99,2019-12-26 17:26:00,232 Church St, Seattle,WA,98101 +303596,Flatscreen TV,1,300.0,2019-12-07 19:01:00,423 1st St, San Francisco,CA,94016 +303597,iPhone,1,700.0,2019-12-14 22:20:00,951 10th St, Boston,MA,02215 +303598,Apple Airpods Headphones,1,150.0,2019-12-09 01:18:00,806 Dogwood St, Seattle,WA,98101 +303599,Lightning Charging Cable,1,14.95,2019-12-03 14:33:00,406 South St, New York City,NY,10001 +303600,Lightning Charging Cable,1,14.95,2019-12-01 19:37:00,59 Center St, San Francisco,CA,94016 +303601,Wired Headphones,1,11.99,2019-12-24 13:11:00,498 Cedar St, Seattle,WA,98101 +303602,USB-C Charging Cable,1,11.95,2019-12-31 11:57:00,23 Hill St, Dallas,TX,75001 +303603,iPhone,1,700.0,2019-12-21 16:42:00,547 Lakeview St, New York City,NY,10001 +303604,AAA Batteries (4-pack),1,2.99,2019-12-24 22:44:00,258 4th St, Los Angeles,CA,90001 +303605,USB-C Charging Cable,1,11.95,2019-12-10 21:27:00,445 South St, Los Angeles,CA,90001 +303606,Bose SoundSport Headphones,1,99.99,2019-12-28 14:08:00,369 Hickory St, Atlanta,GA,30301 +303607,AA Batteries (4-pack),1,3.84,2019-12-14 18:48:00,915 Washington St, New York City,NY,10001 +303608,iPhone,1,700.0,2019-12-06 11:56:00,592 Sunset St, Seattle,WA,98101 +303609,Google Phone,1,600.0,2019-12-11 00:13:00,320 River St, Los Angeles,CA,90001 +303610,Flatscreen TV,1,300.0,2019-12-22 08:26:00,614 5th St, Los Angeles,CA,90001 +303611,Bose SoundSport Headphones,1,99.99,2019-12-13 10:54:00,569 Elm St, Dallas,TX,75001 +303612,Apple Airpods Headphones,1,150.0,2019-12-28 15:12:00,922 10th St, Austin,TX,73301 +303613,ThinkPad Laptop,1,999.99,2019-12-18 17:00:00,810 Jackson St, San Francisco,CA,94016 +303614,Apple Airpods Headphones,1,150.0,2019-12-03 14:23:00,750 Jefferson St, San Francisco,CA,94016 +303615,USB-C Charging Cable,1,11.95,2019-12-20 18:42:00,202 Jackson St, Los Angeles,CA,90001 +303616,27in 4K Gaming Monitor,1,389.99,2019-12-07 15:27:00,368 9th St, New York City,NY,10001 +303617,Bose SoundSport Headphones,1,99.99,2019-12-03 15:44:00,95 Wilson St, San Francisco,CA,94016 +303618,AAA Batteries (4-pack),1,2.99,2019-12-07 22:45:00,945 South St, Seattle,WA,98101 +303619,Apple Airpods Headphones,1,150.0,2019-12-06 10:14:00,586 8th St, Atlanta,GA,30301 +303620,Wired Headphones,1,11.99,2019-12-25 00:07:00,498 Main St, San Francisco,CA,94016 +303621,AA Batteries (4-pack),1,3.84,2019-12-28 17:35:00,536 Highland St, San Francisco,CA,94016 +303622,27in 4K Gaming Monitor,1,389.99,2019-12-23 07:48:00,575 River St, New York City,NY,10001 +303623,27in FHD Monitor,1,149.99,2019-12-24 09:46:00,34 West St, San Francisco,CA,94016 +303624,Wired Headphones,1,11.99,2019-12-17 00:30:00,711 Chestnut St, Boston,MA,02215 +303625,AA Batteries (4-pack),1,3.84,2019-12-14 18:45:00,927 Pine St, San Francisco,CA,94016 +303626,AAA Batteries (4-pack),1,2.99,2019-12-28 21:09:00,700 14th St, Atlanta,GA,30301 +303627,Bose SoundSport Headphones,1,99.99,2019-12-29 01:07:00,805 Walnut St, Los Angeles,CA,90001 +303628,AAA Batteries (4-pack),3,2.99,2019-12-16 20:28:00,632 Hill St, Boston,MA,02215 +303629,Flatscreen TV,1,300.0,2019-12-20 14:25:00,524 Wilson St, Seattle,WA,98101 +303630,AA Batteries (4-pack),2,3.84,2019-12-01 15:52:00,37 Cherry St, Los Angeles,CA,90001 +303631,AA Batteries (4-pack),1,3.84,2019-12-21 06:14:00,859 11th St, Austin,TX,73301 +303632,Lightning Charging Cable,1,14.95,2019-12-22 10:38:00,257 1st St, Los Angeles,CA,90001 +303633,Apple Airpods Headphones,1,150.0,2019-12-31 18:13:00,101 6th St, New York City,NY,10001 +303634,Wired Headphones,1,11.99,2019-12-01 16:44:00,891 Wilson St, Austin,TX,73301 +303635,Bose SoundSport Headphones,1,99.99,2019-12-08 23:15:00,576 Meadow St, Los Angeles,CA,90001 +303636,27in 4K Gaming Monitor,1,389.99,2019-12-10 13:15:00,634 Park St, San Francisco,CA,94016 +303637,AA Batteries (4-pack),2,3.84,2019-12-23 04:37:00,911 8th St, Los Angeles,CA,90001 +303638,Bose SoundSport Headphones,1,99.99,2019-12-30 19:25:00,180 1st St, Atlanta,GA,30301 +303639,USB-C Charging Cable,1,11.95,2019-12-01 10:44:00,644 Chestnut St, Atlanta,GA,30301 +303640,AAA Batteries (4-pack),1,2.99,2019-12-05 07:40:00,462 Sunset St, Atlanta,GA,30301 +303641,Bose SoundSport Headphones,1,99.99,2019-12-16 14:44:00,811 Maple St, San Francisco,CA,94016 +303642,Macbook Pro Laptop,1,1700.0,2019-12-06 22:37:00,994 10th St, New York City,NY,10001 +303643,Bose SoundSport Headphones,1,99.99,2019-12-10 11:27:00,805 13th St, San Francisco,CA,94016 +303644,USB-C Charging Cable,1,11.95,2019-12-08 16:59:00,546 6th St, Atlanta,GA,30301 +303645,20in Monitor,1,109.99,2019-12-24 18:52:00,979 Lincoln St, Seattle,WA,98101 +303646,Lightning Charging Cable,1,14.95,2019-12-14 12:47:00,118 West St, Los Angeles,CA,90001 +303647,Lightning Charging Cable,1,14.95,2019-12-22 11:36:00,355 11th St, Dallas,TX,75001 +303648,Vareebadd Phone,1,400.0,2019-12-23 09:17:00,800 Ridge St, San Francisco,CA,94016 +303648,Wired Headphones,1,11.99,2019-12-23 09:17:00,800 Ridge St, San Francisco,CA,94016 +303649,USB-C Charging Cable,1,11.95,2019-12-31 13:07:00,272 Park St, Seattle,WA,98101 +303650,Bose SoundSport Headphones,1,99.99,2019-12-18 13:04:00,62 Willow St, New York City,NY,10001 +303651,AA Batteries (4-pack),2,3.84,2019-12-04 09:29:00,220 Adams St, Los Angeles,CA,90001 +303652,Bose SoundSport Headphones,1,99.99,2019-12-03 21:32:00,851 Dogwood St, San Francisco,CA,94016 +303653,20in Monitor,1,109.99,2019-12-03 09:18:00,72 Madison St, Los Angeles,CA,90001 +303654,Wired Headphones,1,11.99,2019-12-04 13:05:00,58 Church St, Los Angeles,CA,90001 +303655,USB-C Charging Cable,1,11.95,2019-12-12 15:41:00,79 9th St, San Francisco,CA,94016 +303656,AA Batteries (4-pack),1,3.84,2019-12-19 15:53:00,287 1st St, Boston,MA,02215 +303657,AA Batteries (4-pack),1,3.84,2019-12-09 10:51:00,1 Highland St, San Francisco,CA,94016 +303658,USB-C Charging Cable,1,11.95,2019-12-16 11:56:00,892 7th St, Los Angeles,CA,90001 +303659,27in FHD Monitor,1,149.99,2019-12-16 16:12:00,593 Cherry St, New York City,NY,10001 +303660,USB-C Charging Cable,1,11.95,2019-12-14 19:39:00,376 12th St, Los Angeles,CA,90001 +303661,AAA Batteries (4-pack),1,2.99,2019-12-06 17:18:00,312 South St, New York City,NY,10001 +303662,27in FHD Monitor,1,149.99,2019-12-16 14:58:00,578 Ridge St, San Francisco,CA,94016 +303662,AAA Batteries (4-pack),2,2.99,2019-12-16 14:58:00,578 Ridge St, San Francisco,CA,94016 +303663,USB-C Charging Cable,1,11.95,2019-12-16 18:30:00,524 6th St, San Francisco,CA,94016 +303664,AAA Batteries (4-pack),1,2.99,2019-12-12 08:15:00,428 5th St, Seattle,WA,98101 +303665,27in 4K Gaming Monitor,1,389.99,2019-12-02 09:52:00,967 Forest St, Dallas,TX,75001 +303666,Apple Airpods Headphones,1,150.0,2019-12-10 12:03:00,59 Wilson St, San Francisco,CA,94016 +303667,iPhone,1,700.0,2019-12-11 19:39:00,301 North St, New York City,NY,10001 +303668,AA Batteries (4-pack),1,3.84,2019-12-02 07:46:00,260 Center St, Boston,MA,02215 +303669,AAA Batteries (4-pack),1,2.99,2019-12-08 20:16:00,597 Main St, Los Angeles,CA,90001 +303670,Apple Airpods Headphones,1,150.0,2019-12-17 13:06:00,318 Jackson St, Dallas,TX,75001 +303671,Lightning Charging Cable,1,14.95,2019-12-27 20:36:00,805 Meadow St, Dallas,TX,75001 +303672,Apple Airpods Headphones,1,150.0,2019-12-17 13:23:00,235 Maple St, Boston,MA,02215 +303673,AA Batteries (4-pack),1,3.84,2019-12-09 19:38:00,84 Church St, Boston,MA,02215 +303674,AA Batteries (4-pack),2,3.84,2019-12-30 10:07:00,169 Lake St, New York City,NY,10001 +303675,ThinkPad Laptop,1,999.99,2019-12-09 19:28:00,444 13th St, Seattle,WA,98101 +303676,Lightning Charging Cable,1,14.95,2019-12-02 16:40:00,920 Jackson St, New York City,NY,10001 +303677,Lightning Charging Cable,1,14.95,2019-12-02 18:36:00,205 Chestnut St, New York City,NY,10001 +303678,Lightning Charging Cable,1,14.95,2019-12-30 08:46:00,378 6th St, Los Angeles,CA,90001 +303679,Lightning Charging Cable,1,14.95,2019-12-19 16:15:00,43 7th St, Dallas,TX,75001 +303680,Apple Airpods Headphones,1,150.0,2019-12-10 15:30:00,944 2nd St, Boston,MA,02215 +303681,AA Batteries (4-pack),1,3.84,2019-12-13 17:06:00,699 4th St, San Francisco,CA,94016 +303682,USB-C Charging Cable,1,11.95,2019-12-08 16:07:00,729 Hickory St, Seattle,WA,98101 +303683,Macbook Pro Laptop,1,1700.0,2019-12-26 16:13:00,828 Willow St, Seattle,WA,98101 +303684,AA Batteries (4-pack),3,3.84,2019-12-07 16:14:00,254 Washington St, New York City,NY,10001 +303685,AAA Batteries (4-pack),1,2.99,2019-12-24 11:22:00,835 Center St, Seattle,WA,98101 +303686,Apple Airpods Headphones,1,150.0,2019-12-13 11:05:00,51 Walnut St, San Francisco,CA,94016 +303687,Lightning Charging Cable,1,14.95,2019-12-26 17:27:00,999 West St, Los Angeles,CA,90001 +303688,Lightning Charging Cable,1,14.95,2019-12-29 10:03:00,827 Pine St, Boston,MA,02215 +303689,AA Batteries (4-pack),1,3.84,2019-12-21 16:07:00,447 Center St, Boston,MA,02215 +303690,AAA Batteries (4-pack),1,2.99,2019-12-20 11:49:00,513 1st St, San Francisco,CA,94016 +303691,AAA Batteries (4-pack),1,2.99,2019-12-07 18:14:00,317 Chestnut St, San Francisco,CA,94016 +303692,USB-C Charging Cable,1,11.95,2019-12-07 13:10:00,502 Center St, San Francisco,CA,94016 +303693,Lightning Charging Cable,2,14.95,2019-12-26 19:39:00,435 Church St, Los Angeles,CA,90001 +303694,iPhone,1,700.0,2019-12-22 04:40:00,424 Spruce St, New York City,NY,10001 +303695,AA Batteries (4-pack),2,3.84,2019-12-19 18:14:00,180 2nd St, San Francisco,CA,94016 +303696,AA Batteries (4-pack),1,3.84,2019-12-15 00:29:00,361 Sunset St, Atlanta,GA,30301 +303697,AA Batteries (4-pack),2,3.84,2019-12-15 12:56:00,613 Center St, San Francisco,CA,94016 +303698,Lightning Charging Cable,1,14.95,2019-12-31 19:51:00,89 Cherry St, New York City,NY,10001 +303699,Flatscreen TV,1,300.0,2019-12-02 21:27:00,455 Church St, Austin,TX,73301 +303700,Lightning Charging Cable,1,14.95,2019-12-28 20:21:00,652 Lakeview St, Los Angeles,CA,90001 +303701,Wired Headphones,1,11.99,2019-12-21 13:10:00,755 Cedar St, Portland,OR,97035 +303702,Apple Airpods Headphones,1,150.0,2019-12-29 18:48:00,669 Chestnut St, Atlanta,GA,30301 +303703,Apple Airpods Headphones,1,150.0,2019-12-16 23:14:00,669 5th St, Boston,MA,02215 +303704,iPhone,1,700.0,2019-12-04 16:25:00,157 West St, Boston,MA,02215 +303705,Lightning Charging Cable,3,14.95,2019-12-25 09:48:00,63 Cedar St, Dallas,TX,75001 +303706,Wired Headphones,1,11.99,2019-12-23 13:02:00,48 Center St, Portland,OR,97035 +303707,Bose SoundSport Headphones,1,99.99,2019-12-18 16:45:00,453 Jackson St, Boston,MA,02215 +303708,AA Batteries (4-pack),1,3.84,2019-12-06 13:02:00,871 Hickory St, Los Angeles,CA,90001 +303709,AAA Batteries (4-pack),1,2.99,2019-12-09 08:49:00,429 Spruce St, Seattle,WA,98101 +303709,AA Batteries (4-pack),1,3.84,2019-12-09 08:49:00,429 Spruce St, Seattle,WA,98101 +303710,Bose SoundSport Headphones,1,99.99,2019-12-24 17:58:00,122 Jefferson St, Los Angeles,CA,90001 +303711,Wired Headphones,1,11.99,2019-12-31 17:05:00,183 Elm St, Austin,TX,73301 +303712,AAA Batteries (4-pack),3,2.99,2019-12-09 23:01:00,878 Highland St, Los Angeles,CA,90001 +303713,Apple Airpods Headphones,1,150.0,2019-12-26 18:01:00,871 14th St, Seattle,WA,98101 +303714,AA Batteries (4-pack),1,3.84,2019-12-04 20:01:00,4 12th St, Los Angeles,CA,90001 +303715,AAA Batteries (4-pack),1,2.99,2019-12-24 14:49:00,639 Johnson St, Dallas,TX,75001 +303716,AAA Batteries (4-pack),2,2.99,2019-12-09 19:25:00,313 Chestnut St, Los Angeles,CA,90001 +303717,USB-C Charging Cable,1,11.95,2019-12-05 21:48:00,816 Forest St, Atlanta,GA,30301 +303718,AAA Batteries (4-pack),1,2.99,2019-12-31 11:19:00,712 Cherry St, Seattle,WA,98101 +303719,iPhone,1,700.0,2019-12-02 16:08:00,349 Lake St, Seattle,WA,98101 +303719,Wired Headphones,1,11.99,2019-12-02 16:08:00,349 Lake St, Seattle,WA,98101 +303720,iPhone,1,700.0,2019-12-29 23:40:00,974 South St, Dallas,TX,75001 +303721,Flatscreen TV,1,300.0,2019-12-22 12:05:00,268 Cedar St, San Francisco,CA,94016 +303721,AA Batteries (4-pack),1,3.84,2019-12-22 12:05:00,268 Cedar St, San Francisco,CA,94016 +303722,Macbook Pro Laptop,1,1700.0,2019-12-13 11:06:00,766 10th St, San Francisco,CA,94016 +303723,Flatscreen TV,1,300.0,2019-12-20 14:22:00,511 5th St, Boston,MA,02215 +303724,AA Batteries (4-pack),1,3.84,2019-12-08 14:06:00,807 Chestnut St, Portland,OR,97035 +303725,34in Ultrawide Monitor,1,379.99,2019-12-25 10:56:00,384 Main St, Seattle,WA,98101 +303726,AA Batteries (4-pack),1,3.84,2019-12-30 10:12:00,520 Willow St, Portland,OR,97035 +303727,Bose SoundSport Headphones,1,99.99,2019-12-22 18:52:00,364 Wilson St, Atlanta,GA,30301 +303728,34in Ultrawide Monitor,1,379.99,2019-12-24 11:56:00,233 8th St, New York City,NY,10001 +303729,USB-C Charging Cable,1,11.95,2019-12-20 13:27:00,909 Johnson St, Dallas,TX,75001 +303730,Bose SoundSport Headphones,1,99.99,2019-12-28 12:59:00,142 Walnut St, Portland,OR,97035 +303731,Macbook Pro Laptop,1,1700.0,2019-12-12 15:18:00,229 Meadow St, Los Angeles,CA,90001 +303732,Bose SoundSport Headphones,1,99.99,2019-12-12 16:45:00,197 14th St, Austin,TX,73301 +303733,Wired Headphones,2,11.99,2019-12-04 08:14:00,52 Center St, Atlanta,GA,30301 +303734,ThinkPad Laptop,1,999.99,2019-12-29 05:47:00,612 Dogwood St, Seattle,WA,98101 +303735,Bose SoundSport Headphones,1,99.99,2019-12-21 17:42:00,160 Adams St, San Francisco,CA,94016 +303736,Wired Headphones,1,11.99,2019-12-01 23:15:00,809 Hickory St, San Francisco,CA,94016 +303736,LG Washing Machine,1,600.0,2019-12-01 23:15:00,809 Hickory St, San Francisco,CA,94016 +303737,20in Monitor,1,109.99,2019-12-18 12:43:00,442 Maple St, Los Angeles,CA,90001 +303738,USB-C Charging Cable,1,11.95,2019-12-23 21:05:00,416 Jefferson St, San Francisco,CA,94016 +303739,Wired Headphones,1,11.99,2019-12-29 22:02:00,657 Center St, Seattle,WA,98101 +303740,AAA Batteries (4-pack),1,2.99,2019-12-10 19:17:00,376 Dogwood St, San Francisco,CA,94016 +303741,Bose SoundSport Headphones,1,99.99,2019-12-20 13:00:00,894 Johnson St, San Francisco,CA,94016 +303742,Lightning Charging Cable,1,14.95,2019-12-07 12:46:00,824 Maple St, Dallas,TX,75001 +303743,Lightning Charging Cable,1,14.95,2019-12-07 11:57:00,12 2nd St, New York City,NY,10001 +303744,AA Batteries (4-pack),1,3.84,2019-12-30 14:06:00,455 Walnut St, San Francisco,CA,94016 +303745,Lightning Charging Cable,1,14.95,2019-12-02 23:30:00,269 12th St, Los Angeles,CA,90001 +303746,Apple Airpods Headphones,1,150.0,2019-12-31 11:18:00,281 Park St, Los Angeles,CA,90001 +303747,USB-C Charging Cable,1,11.95,2019-12-14 12:01:00,479 2nd St, Boston,MA,02215 +303748,AA Batteries (4-pack),2,3.84,2019-12-13 12:18:00,578 Main St, San Francisco,CA,94016 +303749,AA Batteries (4-pack),1,3.84,2019-12-09 11:45:00,269 9th St, San Francisco,CA,94016 +303750,Bose SoundSport Headphones,1,99.99,2019-12-03 10:03:00,967 Forest St, Boston,MA,02215 +303751,Apple Airpods Headphones,1,150.0,2019-12-11 11:19:00,250 Lincoln St, New York City,NY,10001 +303751,27in FHD Monitor,1,149.99,2019-12-11 11:19:00,250 Lincoln St, New York City,NY,10001 +303752,AA Batteries (4-pack),1,3.84,2019-12-13 14:48:00,293 West St, New York City,NY,10001 +303753,USB-C Charging Cable,1,11.95,2019-12-07 17:16:00,235 4th St, Portland,OR,97035 +303754,27in FHD Monitor,1,149.99,2019-12-02 08:19:00,991 Walnut St, Portland,OR,97035 +303755,Wired Headphones,1,11.99,2019-12-18 07:42:00,775 Center St, Portland,OR,97035 +303756,USB-C Charging Cable,1,11.95,2019-12-18 15:43:00,820 Dogwood St, New York City,NY,10001 +303757,Wired Headphones,1,11.99,2019-12-12 07:42:00,441 1st St, New York City,NY,10001 +303758,USB-C Charging Cable,1,11.95,2019-12-27 18:03:00,237 Madison St, New York City,NY,10001 +303759,Wired Headphones,1,11.99,2019-12-04 12:45:00,654 Maple St, San Francisco,CA,94016 +303760,34in Ultrawide Monitor,1,379.99,2019-12-22 14:49:00,925 13th St, Atlanta,GA,30301 +303761,Bose SoundSport Headphones,1,99.99,2019-12-12 08:52:00,743 Chestnut St, Los Angeles,CA,90001 +303762,USB-C Charging Cable,2,11.95,2019-12-31 14:55:00,258 Lincoln St, Dallas,TX,75001 +303763,34in Ultrawide Monitor,1,379.99,2019-12-18 20:37:00,29 Center St, Seattle,WA,98101 +303764,Lightning Charging Cable,1,14.95,2019-12-03 19:26:00,9 4th St, Dallas,TX,75001 +303765,AA Batteries (4-pack),1,3.84,2019-12-16 21:49:00,505 9th St, Boston,MA,02215 +303766,27in 4K Gaming Monitor,1,389.99,2019-12-20 19:05:00,607 Chestnut St, Seattle,WA,98101 +303767,27in 4K Gaming Monitor,1,389.99,2019-12-19 11:29:00,208 Meadow St, San Francisco,CA,94016 +303768,Lightning Charging Cable,1,14.95,2019-12-22 14:52:00,218 River St, Seattle,WA,98101 +303769,AAA Batteries (4-pack),5,2.99,2019-12-20 18:26:00,235 10th St, Dallas,TX,75001 +303770,Google Phone,1,600.0,2019-12-23 12:41:00,308 4th St, Portland,OR,97035 +303771,Flatscreen TV,1,300.0,2019-12-18 23:25:00,706 Lincoln St, San Francisco,CA,94016 +303772,USB-C Charging Cable,1,11.95,2019-12-30 13:58:00,134 Johnson St, San Francisco,CA,94016 +303773,AAA Batteries (4-pack),2,2.99,2019-12-25 11:24:00,829 8th St, New York City,NY,10001 +303774,Apple Airpods Headphones,1,150.0,2019-12-27 22:23:00,799 Lincoln St, Los Angeles,CA,90001 +303775,AAA Batteries (4-pack),3,2.99,2019-12-04 10:38:00,787 Park St, Los Angeles,CA,90001 +303776,Lightning Charging Cable,1,14.95,2019-12-30 19:47:00,269 Ridge St, New York City,NY,10001 +303777,Apple Airpods Headphones,1,150.0,2019-12-30 15:35:00,75 Washington St, Los Angeles,CA,90001 +303778,AA Batteries (4-pack),1,3.84,2019-12-04 07:59:00,226 Cherry St, San Francisco,CA,94016 +303779,Flatscreen TV,1,300.0,2019-12-20 12:02:00,816 Forest St, Boston,MA,02215 +303780,Lightning Charging Cable,1,14.95,2019-12-05 22:22:00,283 River St, Portland,OR,97035 +303781,Google Phone,1,600.0,2019-12-16 11:10:00,107 North St, Seattle,WA,98101 +303782,AA Batteries (4-pack),2,3.84,2019-12-06 19:32:00,609 Spruce St, San Francisco,CA,94016 +303783,AAA Batteries (4-pack),2,2.99,2019-12-23 18:48:00,577 Hickory St, Boston,MA,02215 +303784,USB-C Charging Cable,1,11.95,2019-12-23 09:55:00,516 Lakeview St, Boston,MA,02215 +303785,AAA Batteries (4-pack),1,2.99,2019-12-11 18:12:00,690 12th St, San Francisco,CA,94016 +303786,AAA Batteries (4-pack),2,2.99,2019-12-29 23:22:00,289 Willow St, San Francisco,CA,94016 +303787,AAA Batteries (4-pack),2,2.99,2019-12-30 19:29:00,117 West St, Portland,OR,97035 +303788,Flatscreen TV,1,300.0,2019-12-02 23:44:00,41 Jefferson St, San Francisco,CA,94016 +303789,27in 4K Gaming Monitor,1,389.99,2019-12-30 13:19:00,350 Adams St, Boston,MA,02215 +303790,Wired Headphones,2,11.99,2019-12-03 13:24:00,108 Dogwood St, San Francisco,CA,94016 +303791,AAA Batteries (4-pack),1,2.99,2019-12-21 12:33:00,808 6th St, Los Angeles,CA,90001 +303792,AA Batteries (4-pack),1,3.84,2019-12-18 11:41:00,813 Hickory St, Boston,MA,02215 +303793,Apple Airpods Headphones,1,150.0,2019-12-01 14:16:00,587 Johnson St, San Francisco,CA,94016 +303794,AA Batteries (4-pack),2,3.84,2019-12-24 06:16:00,735 Ridge St, Dallas,TX,75001 +303795,Flatscreen TV,1,300.0,2019-12-15 20:30:00,65 Johnson St, Atlanta,GA,30301 +303796,ThinkPad Laptop,1,999.99,2019-12-25 12:42:00,925 Wilson St, Portland,OR,97035 +303797,Flatscreen TV,1,300.0,2019-12-24 18:52:00,80 Church St, Portland,OR,97035 +303798,AAA Batteries (4-pack),1,2.99,2019-12-01 18:38:00,209 Elm St, Atlanta,GA,30301 +303799,AA Batteries (4-pack),4,3.84,2019-12-11 10:17:00,298 Adams St, Atlanta,GA,30301 +303800,Lightning Charging Cable,1,14.95,2019-12-07 13:33:00,702 10th St, Portland,OR,97035 +303801,USB-C Charging Cable,1,11.95,2019-12-11 13:50:00,876 West St, Atlanta,GA,30301 +303802,Wired Headphones,1,11.99,2019-12-28 03:13:00,597 Sunset St, San Francisco,CA,94016 +303803,ThinkPad Laptop,1,999.99,2019-12-25 17:49:00,101 Park St, Dallas,TX,75001 +303804,Wired Headphones,1,11.99,2019-12-22 21:59:00,199 Cherry St, New York City,NY,10001 +303805,27in FHD Monitor,1,149.99,2019-12-07 13:04:00,627 2nd St, Seattle,WA,98101 +303806,Bose SoundSport Headphones,1,99.99,2019-12-01 09:27:00,859 Maple St, Atlanta,GA,30301 +303807,27in 4K Gaming Monitor,1,389.99,2019-12-25 11:44:00,625 Ridge St, Atlanta,GA,30301 +303808,Apple Airpods Headphones,1,150.0,2019-12-26 09:59:00,974 Highland St, Seattle,WA,98101 +303809,AAA Batteries (4-pack),2,2.99,2019-12-30 14:48:00,539 North St, Boston,MA,02215 +303810,Google Phone,1,600.0,2019-12-07 11:42:00,980 Lake St, Boston,MA,02215 +303811,27in FHD Monitor,1,149.99,2019-12-28 14:14:00,182 Chestnut St, Austin,TX,73301 +303812,AAA Batteries (4-pack),2,2.99,2019-12-06 08:34:00,565 Highland St, Los Angeles,CA,90001 +303813,AAA Batteries (4-pack),1,2.99,2019-12-02 01:06:00,263 Maple St, Dallas,TX,75001 +303814,27in FHD Monitor,1,149.99,2019-12-19 11:05:00,520 Jackson St, Los Angeles,CA,90001 +303815,Apple Airpods Headphones,1,150.0,2019-12-06 15:01:00,717 Cherry St, New York City,NY,10001 +303816,ThinkPad Laptop,1,999.99,2019-12-24 10:22:00,519 7th St, Atlanta,GA,30301 +303817,Bose SoundSport Headphones,1,99.99,2019-12-14 18:39:00,485 Sunset St, San Francisco,CA,94016 +303818,USB-C Charging Cable,2,11.95,2019-12-11 23:13:00,691 River St, Dallas,TX,75001 +303819,AAA Batteries (4-pack),1,2.99,2019-12-07 13:38:00,158 River St, Los Angeles,CA,90001 +303820,USB-C Charging Cable,1,11.95,2019-12-21 15:59:00,857 Jackson St, Los Angeles,CA,90001 +303821,Bose SoundSport Headphones,1,99.99,2019-12-24 20:42:00,465 Jackson St, New York City,NY,10001 +303822,Wired Headphones,1,11.99,2019-12-06 19:49:00,737 Elm St, Los Angeles,CA,90001 +303823,AAA Batteries (4-pack),1,2.99,2019-12-13 09:49:00,231 South St, Dallas,TX,75001 +303824,Apple Airpods Headphones,1,150.0,2019-12-18 14:08:00,81 14th St, Los Angeles,CA,90001 +303825,Bose SoundSport Headphones,1,99.99,2019-12-16 10:43:00,300 Pine St, Portland,OR,97035 +303826,AAA Batteries (4-pack),1,2.99,2019-12-29 19:43:00,802 Pine St, New York City,NY,10001 +303827,iPhone,1,700.0,2019-12-26 18:55:00,746 Lakeview St, Portland,OR,97035 +303828,AA Batteries (4-pack),1,3.84,2019-12-23 15:32:00,925 Lakeview St, Los Angeles,CA,90001 +303829,27in 4K Gaming Monitor,1,389.99,2019-12-01 17:19:00,721 Adams St, San Francisco,CA,94016 +303830,AA Batteries (4-pack),1,3.84,2019-12-14 16:58:00,942 Pine St, Portland,OR,97035 +303831,34in Ultrawide Monitor,1,379.99,2019-12-15 08:57:00,875 Sunset St, San Francisco,CA,94016 +303832,27in 4K Gaming Monitor,1,389.99,2019-12-12 22:13:00,470 Church St, New York City,NY,10001 +303833,Wired Headphones,1,11.99,2019-12-28 20:01:00,829 Sunset St, Los Angeles,CA,90001 +303834,27in 4K Gaming Monitor,1,389.99,2019-12-10 15:27:00,50 Jackson St, New York City,NY,10001 +303835,AAA Batteries (4-pack),1,2.99,2019-12-16 14:47:00,206 Hill St, Boston,MA,02215 +303836,AA Batteries (4-pack),1,3.84,2019-12-23 14:12:00,327 Highland St, Boston,MA,02215 +303837,AA Batteries (4-pack),2,3.84,2019-12-31 15:28:00,170 Highland St, San Francisco,CA,94016 +303838,AAA Batteries (4-pack),1,2.99,2019-12-24 15:02:00,839 5th St, San Francisco,CA,94016 +303839,Lightning Charging Cable,1,14.95,2019-12-06 19:35:00,82 Willow St, New York City,NY,10001 +303840,27in 4K Gaming Monitor,1,389.99,2019-12-19 18:47:00,800 Elm St, New York City,NY,10001 +303841,USB-C Charging Cable,1,11.95,2019-12-24 22:02:00,225 Walnut St, New York City,NY,10001 +303842,27in FHD Monitor,1,149.99,2019-12-25 12:48:00,799 Dogwood St, Seattle,WA,98101 +303843,ThinkPad Laptop,1,999.99,2019-12-08 17:11:00,374 1st St, Atlanta,GA,30301 +303844,Macbook Pro Laptop,1,1700.0,2019-12-09 15:32:00,790 Center St, Atlanta,GA,30301 +303845,Wired Headphones,1,11.99,2019-12-24 21:26:00,817 Elm St, Portland,OR,97035 +303846,Apple Airpods Headphones,1,150.0,2019-12-24 00:03:00,306 8th St, San Francisco,CA,94016 +303847,20in Monitor,1,109.99,2019-12-14 20:13:00,89 12th St, Los Angeles,CA,90001 +303848,USB-C Charging Cable,1,11.95,2019-12-26 13:13:00,385 Spruce St, New York City,NY,10001 +303849,Wired Headphones,1,11.99,2019-12-30 12:06:00,824 Forest St, Los Angeles,CA,90001 +303850,Bose SoundSport Headphones,1,99.99,2019-12-13 15:00:00,485 Church St, Los Angeles,CA,90001 +303851,Flatscreen TV,1,300.0,2019-12-13 15:06:00,280 South St, Los Angeles,CA,90001 +303852,Apple Airpods Headphones,1,150.0,2019-12-01 09:28:00,498 Lincoln St, Atlanta,GA,30301 +303853,27in FHD Monitor,1,149.99,2019-12-31 12:31:00,429 Madison St, New York City,NY,10001 +303854,34in Ultrawide Monitor,1,379.99,2019-12-15 01:49:00,479 Hickory St, New York City,NY,10001 +303855,AAA Batteries (4-pack),1,2.99,2019-12-20 08:55:00,691 Lake St, New York City,NY,10001 +303856,27in 4K Gaming Monitor,1,389.99,2019-12-29 15:54:00,642 Center St, Dallas,TX,75001 +303857,AA Batteries (4-pack),1,3.84,2019-12-13 20:17:00,780 Hickory St, Los Angeles,CA,90001 +303858,Flatscreen TV,1,300.0,2019-12-29 20:08:00,213 River St, San Francisco,CA,94016 +303859,Lightning Charging Cable,1,14.95,2019-12-04 04:32:00,232 Forest St, San Francisco,CA,94016 +303860,Lightning Charging Cable,1,14.95,2019-12-02 08:59:00,434 Hill St, Atlanta,GA,30301 +303861,USB-C Charging Cable,1,11.95,2019-12-17 10:48:00,26 Cedar St, Boston,MA,02215 +303862,USB-C Charging Cable,1,11.95,2019-12-17 14:01:00,243 Lakeview St, Portland,OR,97035 +303863,20in Monitor,1,109.99,2019-12-27 10:23:00,331 Center St, Seattle,WA,98101 +303864,Macbook Pro Laptop,1,1700.0,2019-12-22 11:56:00,117 6th St, Seattle,WA,98101 +303865,Lightning Charging Cable,3,14.95,2019-12-15 11:34:00,766 Main St, Boston,MA,02215 +303866,AAA Batteries (4-pack),1,2.99,2019-12-01 09:12:00,231 Dogwood St, Seattle,WA,98101 +303867,Bose SoundSport Headphones,1,99.99,2019-12-29 09:57:00,64 Wilson St, San Francisco,CA,94016 +303868,USB-C Charging Cable,1,11.95,2019-12-28 20:50:00,821 Cherry St, Los Angeles,CA,90001 +303869,Wired Headphones,1,11.99,2019-12-18 15:28:00,797 Jackson St, New York City,NY,10001 +303870,iPhone,1,700.0,2019-12-31 01:09:00,631 9th St, Atlanta,GA,30301 +303871,Wired Headphones,1,11.99,2019-12-31 01:13:00,246 12th St, Dallas,TX,75001 +303872,27in 4K Gaming Monitor,1,389.99,2019-12-15 13:24:00,582 Johnson St, New York City,NY,10001 +303873,iPhone,1,700.0,2019-12-12 14:29:00,638 Church St, Los Angeles,CA,90001 +303874,27in FHD Monitor,1,149.99,2019-12-02 15:07:00,150 Johnson St, San Francisco,CA,94016 +303875,Bose SoundSport Headphones,1,99.99,2019-12-15 12:38:00,200 Walnut St, San Francisco,CA,94016 +303876,Bose SoundSport Headphones,1,99.99,2019-12-05 11:58:00,356 Lincoln St, Los Angeles,CA,90001 +303877,AAA Batteries (4-pack),1,2.99,2019-12-25 19:48:00,835 11th St, Los Angeles,CA,90001 +303878,27in FHD Monitor,1,149.99,2019-12-10 14:45:00,891 Cherry St, San Francisco,CA,94016 +303879,USB-C Charging Cable,1,11.95,2019-12-18 18:30:00,517 Elm St, Seattle,WA,98101 +303880,Apple Airpods Headphones,1,150.0,2019-12-30 09:36:00,528 6th St, Atlanta,GA,30301 +303881,Wired Headphones,1,11.99,2019-12-20 23:15:00,781 Jackson St, Atlanta,GA,30301 +303882,34in Ultrawide Monitor,1,379.99,2019-12-01 18:01:00,313 Lincoln St, San Francisco,CA,94016 +303883,AA Batteries (4-pack),2,3.84,2019-12-01 11:34:00,684 Willow St, Portland,OR,97035 +303884,AAA Batteries (4-pack),2,2.99,2019-12-29 00:23:00,458 12th St, San Francisco,CA,94016 +303885,Apple Airpods Headphones,1,150.0,2019-12-20 18:30:00,129 Jefferson St, New York City,NY,10001 +303886,AA Batteries (4-pack),1,3.84,2019-12-17 00:34:00,701 4th St, Portland,OR,97035 +303887,AAA Batteries (4-pack),3,2.99,2019-12-25 10:46:00,249 Lincoln St, Austin,TX,73301 +303888,Bose SoundSport Headphones,1,99.99,2019-12-22 13:25:00,414 Cedar St, Dallas,TX,75001 +303889,USB-C Charging Cable,1,11.95,2019-12-12 01:18:00,142 9th St, New York City,NY,10001 +303890,iPhone,1,700.0,2019-12-26 09:17:00,163 Walnut St, Atlanta,GA,30301 +303891,Macbook Pro Laptop,1,1700.0,2019-12-10 11:38:00,5 Center St, New York City,NY,10001 +303892,USB-C Charging Cable,1,11.95,2019-12-27 00:39:00,951 8th St, Portland,OR,97035 +303893,27in 4K Gaming Monitor,1,389.99,2019-12-13 17:04:00,653 Elm St, Los Angeles,CA,90001 +303894,Bose SoundSport Headphones,1,99.99,2019-12-24 21:11:00,68 Walnut St, Portland,OR,97035 +303895,AA Batteries (4-pack),3,3.84,2019-12-14 00:53:00,972 Forest St, Seattle,WA,98101 +303896,Lightning Charging Cable,1,14.95,2019-12-11 15:57:00,664 Dogwood St, San Francisco,CA,94016 +303897,Macbook Pro Laptop,1,1700.0,2019-12-25 08:13:00,258 14th St, Los Angeles,CA,90001 +303898,Flatscreen TV,1,300.0,2019-12-24 21:59:00,355 Center St, Austin,TX,73301 +303899,USB-C Charging Cable,1,11.95,2019-12-11 16:27:00,319 Jefferson St, Los Angeles,CA,90001 +303900,ThinkPad Laptop,1,999.99,2019-12-24 16:08:00,883 Washington St, Boston,MA,02215 +303901,Apple Airpods Headphones,1,150.0,2019-12-06 19:57:00,35 Hickory St, Los Angeles,CA,90001 +303902,AA Batteries (4-pack),1,3.84,2019-12-01 18:34:00,983 12th St, San Francisco,CA,94016 +303903,Bose SoundSport Headphones,1,99.99,2019-12-06 11:00:00,310 Main St, Boston,MA,02215 +303904,AAA Batteries (4-pack),1,2.99,2019-12-19 11:49:00,92 Elm St, Boston,MA,02215 +303905,ThinkPad Laptop,1,999.99,2019-12-19 15:17:00,159 Pine St, San Francisco,CA,94016 +303906,34in Ultrawide Monitor,1,379.99,2019-12-24 18:22:00,186 14th St, Los Angeles,CA,90001 +303907,Google Phone,1,600.0,2019-12-03 17:34:00,470 Hickory St, Portland,OR,97035 +303907,USB-C Charging Cable,1,11.95,2019-12-03 17:34:00,470 Hickory St, Portland,OR,97035 +303907,Wired Headphones,2,11.99,2019-12-03 17:34:00,470 Hickory St, Portland,OR,97035 +303908,AAA Batteries (4-pack),2,2.99,2019-12-08 14:09:00,996 North St, Boston,MA,02215 +303909,USB-C Charging Cable,1,11.95,2019-12-06 16:21:00,698 Lincoln St, Seattle,WA,98101 +303909,Lightning Charging Cable,1,14.95,2019-12-06 16:21:00,698 Lincoln St, Seattle,WA,98101 +303910,iPhone,1,700.0,2019-12-05 09:44:00,25 Sunset St, San Francisco,CA,94016 +303911,Bose SoundSport Headphones,1,99.99,2019-12-13 23:51:00,553 Hickory St, Los Angeles,CA,90001 +303912,ThinkPad Laptop,1,999.99,2019-12-08 17:44:00,341 8th St, San Francisco,CA,94016 +303913,Google Phone,1,600.0,2019-12-17 17:43:00,497 Church St, Boston,MA,02215 +303914,AA Batteries (4-pack),1,3.84,2019-12-22 09:50:00,564 Chestnut St, Los Angeles,CA,90001 +303915,27in 4K Gaming Monitor,1,389.99,2019-12-21 15:11:00,453 14th St, San Francisco,CA,94016 +303916,34in Ultrawide Monitor,1,379.99,2019-12-24 06:54:00,761 7th St, Dallas,TX,75001 +303917,AAA Batteries (4-pack),2,2.99,2019-12-11 21:32:00,72 Meadow St, Portland,OR,97035 +303918,AAA Batteries (4-pack),1,2.99,2019-12-21 19:21:00,677 Lake St, New York City,NY,10001 +303919,27in FHD Monitor,1,149.99,2019-12-30 06:41:00,271 Maple St, Portland,OR,97035 +303920,iPhone,1,700.0,2019-12-10 16:42:00,656 10th St, San Francisco,CA,94016 +303920,Wired Headphones,1,11.99,2019-12-10 16:42:00,656 10th St, San Francisco,CA,94016 +303921,AA Batteries (4-pack),2,3.84,2019-12-06 22:10:00,968 Cherry St, Los Angeles,CA,90001 +303922,AAA Batteries (4-pack),1,2.99,2019-12-06 17:24:00,912 Dogwood St, San Francisco,CA,94016 +303923,Lightning Charging Cable,1,14.95,2019-12-28 12:37:00,790 9th St, Los Angeles,CA,90001 +303924,LG Dryer,1,600.0,2019-12-05 11:54:00,211 Willow St, Los Angeles,CA,90001 +303925,AA Batteries (4-pack),2,3.84,2019-12-07 22:03:00,66 Sunset St, Atlanta,GA,30301 +303926,27in FHD Monitor,1,149.99,2019-12-15 19:55:00,705 Chestnut St, San Francisco,CA,94016 +303927,Apple Airpods Headphones,1,150.0,2019-12-26 19:30:00,540 Highland St, San Francisco,CA,94016 +303928,AAA Batteries (4-pack),3,2.99,2019-12-21 21:53:00,179 Adams St, Los Angeles,CA,90001 +303929,Macbook Pro Laptop,1,1700.0,2019-12-04 06:02:00,800 West St, New York City,NY,10001 +303930,27in FHD Monitor,1,149.99,2019-12-30 07:09:00,302 6th St, Boston,MA,02215 +303931,USB-C Charging Cable,1,11.95,2019-12-27 22:30:00,454 5th St, Los Angeles,CA,90001 +303932,Lightning Charging Cable,1,14.95,2019-12-11 16:45:00,149 Chestnut St, Austin,TX,73301 +303933,Lightning Charging Cable,1,14.95,2019-12-20 18:29:00,121 Jefferson St, San Francisco,CA,94016 +303934,Lightning Charging Cable,1,14.95,2019-12-23 10:11:00,820 Willow St, San Francisco,CA,94016 +303935,20in Monitor,1,109.99,2019-12-13 06:41:00,676 14th St, Los Angeles,CA,90001 +303936,Wired Headphones,1,11.99,2019-12-04 18:00:00,611 West St, San Francisco,CA,94016 +303937,AAA Batteries (4-pack),1,2.99,2019-12-19 10:17:00,953 Cedar St, San Francisco,CA,94016 +303938,Lightning Charging Cable,1,14.95,2019-12-09 12:44:00,986 4th St, New York City,NY,10001 +303939,USB-C Charging Cable,1,11.95,2019-12-09 13:59:00,451 11th St, Boston,MA,02215 +303940,Lightning Charging Cable,1,14.95,2019-12-04 16:59:00,910 Washington St, Los Angeles,CA,90001 +303941,Lightning Charging Cable,1,14.95,2019-12-07 07:18:00,61 4th St, Boston,MA,02215 +303942,Bose SoundSport Headphones,1,99.99,2019-12-14 11:32:00,181 14th St, Seattle,WA,98101 +303943,iPhone,1,700.0,2019-12-23 08:58:00,762 12th St, Boston,MA,02215 +303944,Bose SoundSport Headphones,1,99.99,2019-12-14 11:26:00,49 River St, San Francisco,CA,94016 +303945,Wired Headphones,1,11.99,2019-12-29 13:27:00,113 Wilson St, Boston,MA,02215 +303946,Wired Headphones,1,11.99,2019-12-04 14:02:00,508 6th St, Austin,TX,73301 +303947,AA Batteries (4-pack),2,3.84,2019-12-12 18:04:00,964 1st St, Atlanta,GA,30301 +303948,Bose SoundSport Headphones,1,99.99,2019-12-15 11:26:00,679 1st St, New York City,NY,10001 +303949,Flatscreen TV,1,300.0,2019-12-13 09:40:00,502 Maple St, San Francisco,CA,94016 +303950,34in Ultrawide Monitor,1,379.99,2019-12-31 13:30:00,435 Chestnut St, Portland,OR,97035 +303951,LG Washing Machine,1,600.0,2019-12-22 15:00:00,356 South St, San Francisco,CA,94016 +303952,AAA Batteries (4-pack),1,2.99,2019-12-19 08:26:00,260 South St, Dallas,TX,75001 +303953,Flatscreen TV,1,300.0,2019-12-30 20:53:00,592 Hickory St, Austin,TX,73301 +303954,Apple Airpods Headphones,1,150.0,2019-12-22 00:44:00,664 Hill St, Portland,ME,04101 +303955,Wired Headphones,1,11.99,2019-12-27 14:58:00,867 Lake St, New York City,NY,10001 +303956,AAA Batteries (4-pack),1,2.99,2019-12-10 10:37:00,115 Hickory St, Portland,OR,97035 +303957,Bose SoundSport Headphones,1,99.99,2019-12-01 19:53:00,627 10th St, Seattle,WA,98101 +303958,USB-C Charging Cable,1,11.95,2019-12-18 10:31:00,87 13th St, Seattle,WA,98101 +303959,AAA Batteries (4-pack),1,2.99,2019-12-24 15:17:00,415 Sunset St, San Francisco,CA,94016 +303960,iPhone,1,700.0,2019-12-30 18:18:00,600 Madison St, San Francisco,CA,94016 +303961,USB-C Charging Cable,1,11.95,2019-12-17 21:48:00,2 Pine St, San Francisco,CA,94016 +303962,Lightning Charging Cable,1,14.95,2019-12-30 14:44:00,963 Lakeview St, New York City,NY,10001 +303963,USB-C Charging Cable,1,11.95,2019-12-10 13:25:00,612 2nd St, Seattle,WA,98101 +303964,Lightning Charging Cable,1,14.95,2019-12-06 23:44:00,362 Hill St, San Francisco,CA,94016 +303965,AA Batteries (4-pack),1,3.84,2019-12-04 13:32:00,390 Wilson St, Boston,MA,02215 +303966,Wired Headphones,1,11.99,2019-12-09 17:35:00,864 Pine St, San Francisco,CA,94016 +303967,Apple Airpods Headphones,1,150.0,2019-12-19 10:37:00,146 Hill St, Atlanta,GA,30301 +303968,iPhone,1,700.0,2019-12-04 19:20:00,982 5th St, Boston,MA,02215 +303968,Lightning Charging Cable,1,14.95,2019-12-04 19:20:00,982 5th St, Boston,MA,02215 +303969,USB-C Charging Cable,1,11.95,2019-12-11 15:02:00,728 Ridge St, Atlanta,GA,30301 +303970,20in Monitor,1,109.99,2019-12-24 11:34:00,813 Lincoln St, Los Angeles,CA,90001 +303971,Wired Headphones,1,11.99,2019-12-23 21:09:00,808 Lincoln St, Los Angeles,CA,90001 +303972,Vareebadd Phone,1,400.0,2019-12-03 08:36:00,263 Wilson St, New York City,NY,10001 +303972,USB-C Charging Cable,1,11.95,2019-12-03 08:36:00,263 Wilson St, New York City,NY,10001 +303973,Bose SoundSport Headphones,1,99.99,2019-12-18 22:26:00,963 Washington St, Atlanta,GA,30301 +303974,Apple Airpods Headphones,1,150.0,2019-12-24 08:39:00,991 South St, San Francisco,CA,94016 +303975,Apple Airpods Headphones,1,150.0,2019-12-31 19:11:00,353 4th St, Dallas,TX,75001 +303976,AA Batteries (4-pack),1,3.84,2019-12-20 20:18:00,618 4th St, Austin,TX,73301 +303977,iPhone,1,700.0,2019-12-20 23:45:00,585 Dogwood St, Seattle,WA,98101 +303978,AAA Batteries (4-pack),2,2.99,2019-12-05 20:06:00,595 Johnson St, New York City,NY,10001 +303979,27in FHD Monitor,1,149.99,2019-12-09 08:41:00,312 Lincoln St, Los Angeles,CA,90001 +303980,AAA Batteries (4-pack),1,2.99,2019-12-27 13:41:00,146 Adams St, Los Angeles,CA,90001 +303981,Wired Headphones,1,11.99,2019-12-11 15:32:00,946 Pine St, Seattle,WA,98101 +303982,USB-C Charging Cable,1,11.95,2019-12-16 12:44:00,58 8th St, San Francisco,CA,94016 +303983,AAA Batteries (4-pack),2,2.99,2019-12-16 00:33:00,810 13th St, Los Angeles,CA,90001 +303984,USB-C Charging Cable,1,11.95,2019-12-12 09:46:00,821 Maple St, San Francisco,CA,94016 +303984,AAA Batteries (4-pack),1,2.99,2019-12-12 09:46:00,821 Maple St, San Francisco,CA,94016 +303985,34in Ultrawide Monitor,1,379.99,2019-12-13 13:34:00,238 Forest St, San Francisco,CA,94016 +303986,Google Phone,1,600.0,2019-12-05 16:43:00,40 Maple St, New York City,NY,10001 +303986,Wired Headphones,1,11.99,2019-12-05 16:43:00,40 Maple St, New York City,NY,10001 +303987,Wired Headphones,1,11.99,2019-12-27 19:16:00,594 7th St, Portland,OR,97035 +303988,27in FHD Monitor,1,149.99,2019-12-19 10:09:00,250 Wilson St, Austin,TX,73301 +303989,Google Phone,1,600.0,2019-12-17 00:03:00,7 4th St, San Francisco,CA,94016 +303990,AA Batteries (4-pack),2,3.84,2019-12-16 16:24:00,967 Wilson St, Boston,MA,02215 +303991,Google Phone,1,600.0,2019-12-09 12:58:00,978 Center St, Portland,ME,04101 +303992,34in Ultrawide Monitor,1,379.99,2019-12-25 16:11:00,922 Cedar St, San Francisco,CA,94016 +303993,Bose SoundSport Headphones,1,99.99,2019-12-30 10:45:00,502 10th St, New York City,NY,10001 +303994,Lightning Charging Cable,1,14.95,2019-12-28 13:40:00,627 Jefferson St, Austin,TX,73301 +303995,AA Batteries (4-pack),1,3.84,2019-12-16 10:33:00,955 Wilson St, Los Angeles,CA,90001 +303996,Lightning Charging Cable,2,14.95,2019-12-26 21:16:00,628 Willow St, Portland,ME,04101 +303997,AA Batteries (4-pack),1,3.84,2019-12-15 13:52:00,717 4th St, Dallas,TX,75001 +303998,Google Phone,1,600.0,2019-12-25 09:05:00,108 South St, Boston,MA,02215 +303999,USB-C Charging Cable,1,11.95,2019-12-24 17:36:00,867 Park St, San Francisco,CA,94016 +304000,Wired Headphones,1,11.99,2019-12-03 21:17:00,87 Center St, Portland,OR,97035 +304001,ThinkPad Laptop,1,999.99,2019-12-16 20:09:00,810 Sunset St, New York City,NY,10001 +304002,AA Batteries (4-pack),1,3.84,2019-12-29 13:13:00,899 7th St, New York City,NY,10001 +304003,Wired Headphones,1,11.99,2019-12-12 03:02:00,276 Willow St, New York City,NY,10001 +304004,AAA Batteries (4-pack),1,2.99,2019-12-27 10:03:00,507 12th St, Seattle,WA,98101 +304005,AA Batteries (4-pack),2,3.84,2019-12-26 10:12:00,286 Adams St, Seattle,WA,98101 +304006,27in 4K Gaming Monitor,1,389.99,2019-12-15 07:51:00,431 Jefferson St, Los Angeles,CA,90001 +304007,20in Monitor,1,109.99,2019-12-06 01:51:00,748 Dogwood St, San Francisco,CA,94016 +304008,27in FHD Monitor,1,149.99,2019-12-14 17:44:00,476 Park St, Austin,TX,73301 +304009,Vareebadd Phone,1,400.0,2019-12-09 21:19:00,152 7th St, San Francisco,CA,94016 +304010,Apple Airpods Headphones,1,150.0,2019-12-17 12:18:00,403 Adams St, Los Angeles,CA,90001 +304011,Apple Airpods Headphones,1,150.0,2019-12-19 20:49:00,390 Maple St, Seattle,WA,98101 +304012,AAA Batteries (4-pack),1,2.99,2019-12-16 15:11:00,14 Church St, Austin,TX,73301 +304013,Apple Airpods Headphones,1,150.0,2019-12-01 09:12:00,195 Chestnut St, New York City,NY,10001 +304014,Google Phone,1,600.0,2019-12-16 10:16:00,103 Dogwood St, Boston,MA,02215 +304015,AAA Batteries (4-pack),1,2.99,2019-12-13 20:14:00,102 Lakeview St, Boston,MA,02215 +304016,Lightning Charging Cable,1,14.95,2019-12-11 13:15:00,145 Center St, Boston,MA,02215 +304017,Lightning Charging Cable,1,14.95,2019-12-23 15:53:00,73 River St, Los Angeles,CA,90001 +304018,Apple Airpods Headphones,1,150.0,2019-12-03 18:38:00,5 13th St, Dallas,TX,75001 +304019,Bose SoundSport Headphones,1,99.99,2019-12-30 22:59:00,177 Center St, Los Angeles,CA,90001 +304020,Lightning Charging Cable,1,14.95,2019-12-27 17:03:00,974 6th St, Boston,MA,02215 +304021,34in Ultrawide Monitor,1,379.99,2019-12-23 22:13:00,721 Meadow St, Austin,TX,73301 +304022,Apple Airpods Headphones,1,150.0,2019-12-05 10:00:00,732 Spruce St, Los Angeles,CA,90001 +304023,Apple Airpods Headphones,1,150.0,2019-12-24 10:48:00,118 Forest St, Dallas,TX,75001 +304024,ThinkPad Laptop,1,999.99,2019-12-19 17:19:00,531 Hickory St, Portland,OR,97035 +304025,Apple Airpods Headphones,1,150.0,2019-12-20 10:44:00,664 Madison St, Portland,OR,97035 +304026,AAA Batteries (4-pack),1,2.99,2019-12-25 13:22:00,140 North St, San Francisco,CA,94016 +304027,27in FHD Monitor,1,149.99,2019-12-03 15:31:00,105 Walnut St, San Francisco,CA,94016 +304028,Bose SoundSport Headphones,1,99.99,2019-12-06 19:28:00,146 Hill St, Portland,OR,97035 +304029,Lightning Charging Cable,1,14.95,2019-12-17 17:52:00,760 Main St, San Francisco,CA,94016 +304030,iPhone,1,700.0,2019-12-03 18:02:00,549 14th St, Los Angeles,CA,90001 +304031,USB-C Charging Cable,1,11.95,2019-12-05 17:16:00,44 2nd St, San Francisco,CA,94016 +304032,iPhone,1,700.0,2019-12-15 21:51:00,346 Church St, Seattle,WA,98101 +304033,Lightning Charging Cable,1,14.95,2019-12-02 21:09:00,654 12th St, Los Angeles,CA,90001 +304034,USB-C Charging Cable,1,11.95,2019-12-21 22:39:00,366 Willow St, Los Angeles,CA,90001 +304035,Wired Headphones,1,11.99,2019-12-07 10:01:00,394 Jackson St, Austin,TX,73301 +304036,AAA Batteries (4-pack),1,2.99,2019-12-03 14:22:00,707 8th St, San Francisco,CA,94016 +304037,AAA Batteries (4-pack),3,2.99,2019-12-09 14:32:00,954 10th St, New York City,NY,10001 +304038,USB-C Charging Cable,1,11.95,2019-12-20 18:49:00,426 North St, Austin,TX,73301 +304039,AA Batteries (4-pack),1,3.84,2019-12-30 19:10:00,579 Washington St, Los Angeles,CA,90001 +304040,Apple Airpods Headphones,1,150.0,2019-12-26 08:56:00,48 Johnson St, Dallas,TX,75001 +304041,AAA Batteries (4-pack),1,2.99,2019-12-07 15:05:00,477 Hill St, San Francisco,CA,94016 +304042,27in 4K Gaming Monitor,1,389.99,2019-12-31 18:37:00,990 Meadow St, Boston,MA,02215 +304043,USB-C Charging Cable,1,11.95,2019-12-23 19:52:00,789 Willow St, Los Angeles,CA,90001 +304044,AAA Batteries (4-pack),2,2.99,2019-12-22 07:07:00,417 Madison St, Seattle,WA,98101 +304045,iPhone,1,700.0,2019-12-24 08:24:00,199 1st St, Seattle,WA,98101 +304046,Macbook Pro Laptop,1,1700.0,2019-12-15 17:31:00,709 Elm St, Los Angeles,CA,90001 +304047,Flatscreen TV,1,300.0,2019-12-20 20:27:00,312 1st St, Austin,TX,73301 +304048,27in FHD Monitor,1,149.99,2019-12-07 18:50:00,559 Cherry St, San Francisco,CA,94016 +304049,Bose SoundSport Headphones,1,99.99,2019-12-31 18:34:00,183 Main St, New York City,NY,10001 +304050,27in 4K Gaming Monitor,1,389.99,2019-12-18 17:22:00,312 Madison St, Los Angeles,CA,90001 +304051,34in Ultrawide Monitor,1,379.99,2019-12-08 19:44:00,602 West St, San Francisco,CA,94016 +304052,AA Batteries (4-pack),1,3.84,2019-12-01 20:40:00,831 Spruce St, Portland,OR,97035 +304053,20in Monitor,1,109.99,2019-12-16 17:55:00,954 Dogwood St, San Francisco,CA,94016 +304054,USB-C Charging Cable,1,11.95,2019-12-01 22:32:00,786 5th St, San Francisco,CA,94016 +304055,Flatscreen TV,1,300.0,2019-12-24 22:07:00,236 Adams St, Boston,MA,02215 +304055,AAA Batteries (4-pack),2,2.99,2019-12-24 22:07:00,236 Adams St, Boston,MA,02215 +304056,AA Batteries (4-pack),2,3.84,2019-12-25 23:03:00,531 Forest St, San Francisco,CA,94016 +304056,ThinkPad Laptop,1,999.99,2019-12-25 23:03:00,531 Forest St, San Francisco,CA,94016 +304057,27in FHD Monitor,1,149.99,2019-12-27 00:07:00,246 12th St, San Francisco,CA,94016 +304058,Wired Headphones,1,11.99,2019-12-18 00:34:00,170 12th St, New York City,NY,10001 +304059,Lightning Charging Cable,1,14.95,2019-12-19 13:23:00,760 River St, New York City,NY,10001 +304060,Apple Airpods Headphones,1,150.0,2019-12-28 12:15:00,566 8th St, Atlanta,GA,30301 +304061,Apple Airpods Headphones,1,150.0,2019-12-15 00:37:00,817 Church St, San Francisco,CA,94016 +304062,34in Ultrawide Monitor,1,379.99,2019-12-02 00:54:00,997 9th St, Atlanta,GA,30301 +304063,Flatscreen TV,1,300.0,2019-12-14 13:01:00,939 Highland St, Dallas,TX,75001 +304064,Wired Headphones,1,11.99,2019-12-20 09:01:00,898 Cedar St, Seattle,WA,98101 +304065,27in 4K Gaming Monitor,1,389.99,2019-12-29 14:00:00,792 5th St, Atlanta,GA,30301 +304065,Wired Headphones,1,11.99,2019-12-29 14:00:00,792 5th St, Atlanta,GA,30301 +304066,Apple Airpods Headphones,1,150.0,2019-12-10 22:27:00,933 Cherry St, Los Angeles,CA,90001 +304067,iPhone,1,700.0,2019-12-25 09:02:00,785 Maple St, San Francisco,CA,94016 +304068,20in Monitor,1,109.99,2019-12-19 00:22:00,676 8th St, Los Angeles,CA,90001 +304069,Bose SoundSport Headphones,1,99.99,2019-12-05 11:00:00,850 Lake St, Los Angeles,CA,90001 +304070,AA Batteries (4-pack),1,3.84,2019-12-02 18:24:00,827 Hill St, New York City,NY,10001 +304071,Lightning Charging Cable,1,14.95,2019-12-21 17:55:00,640 Jackson St, New York City,NY,10001 +304072,USB-C Charging Cable,1,11.95,2019-12-24 11:54:00,21 Sunset St, Los Angeles,CA,90001 +304073,34in Ultrawide Monitor,1,379.99,2019-12-03 18:08:00,671 Lakeview St, Austin,TX,73301 +304074,Google Phone,1,600.0,2019-12-15 16:42:00,731 Adams St, San Francisco,CA,94016 +304075,Wired Headphones,1,11.99,2019-12-11 12:13:00,597 Cedar St, Austin,TX,73301 +304076,Flatscreen TV,1,300.0,2019-12-15 18:53:00,586 Hill St, New York City,NY,10001 +304077,AA Batteries (4-pack),1,3.84,2019-12-30 20:37:00,709 Cherry St, Portland,OR,97035 +304078,27in 4K Gaming Monitor,1,389.99,2019-12-29 07:01:00,173 Main St, Dallas,TX,75001 +304079,Wired Headphones,1,11.99,2019-12-12 20:39:00,270 South St, Los Angeles,CA,90001 +304080,Wired Headphones,1,11.99,2019-12-29 22:18:00,924 12th St, San Francisco,CA,94016 +304081,Lightning Charging Cable,1,14.95,2019-12-01 18:34:00,878 Center St, San Francisco,CA,94016 +304082,AAA Batteries (4-pack),1,2.99,2019-12-19 09:49:00,817 10th St, San Francisco,CA,94016 +304083,AA Batteries (4-pack),2,3.84,2019-12-23 21:22:00,574 Maple St, San Francisco,CA,94016 +304084,USB-C Charging Cable,1,11.95,2019-12-15 00:18:00,721 Hill St, San Francisco,CA,94016 +304085,27in FHD Monitor,1,149.99,2019-12-03 18:17:00,42 14th St, New York City,NY,10001 +304086,27in FHD Monitor,1,149.99,2019-12-04 18:23:00,24 Cherry St, Portland,OR,97035 +304087,ThinkPad Laptop,1,999.99,2019-12-27 21:43:00,801 1st St, New York City,NY,10001 +304088,AA Batteries (4-pack),2,3.84,2019-12-02 13:32:00,23 11th St, Dallas,TX,75001 +304089,Macbook Pro Laptop,1,1700.0,2019-12-21 19:55:00,560 Main St, New York City,NY,10001 +304090,USB-C Charging Cable,1,11.95,2019-12-17 18:38:00,62 7th St, New York City,NY,10001 +304091,AA Batteries (4-pack),1,3.84,2019-12-14 18:09:00,685 Chestnut St, Atlanta,GA,30301 +304092,AAA Batteries (4-pack),1,2.99,2019-12-19 21:29:00,710 Spruce St, New York City,NY,10001 +304093,iPhone,1,700.0,2019-12-25 10:13:00,566 Dogwood St, Dallas,TX,75001 +304094,AA Batteries (4-pack),2,3.84,2019-12-16 18:00:00,72 Elm St, New York City,NY,10001 +304095,Wired Headphones,1,11.99,2019-12-14 21:13:00,295 Willow St, New York City,NY,10001 +304096,27in 4K Gaming Monitor,1,389.99,2019-12-17 07:37:00,840 6th St, Atlanta,GA,30301 +304097,USB-C Charging Cable,2,11.95,2019-12-13 21:25:00,638 Jackson St, San Francisco,CA,94016 +304098,Lightning Charging Cable,1,14.95,2019-12-25 22:37:00,696 Jackson St, Austin,TX,73301 +304099,Wired Headphones,1,11.99,2019-12-10 08:45:00,879 Maple St, Dallas,TX,75001 +304100,Vareebadd Phone,1,400.0,2019-12-18 20:22:00,889 8th St, Dallas,TX,75001 +304101,AAA Batteries (4-pack),1,2.99,2019-12-20 17:44:00,843 West St, Dallas,TX,75001 +304101,AA Batteries (4-pack),1,3.84,2019-12-20 17:44:00,843 West St, Dallas,TX,75001 +304102,Wired Headphones,1,11.99,2019-12-05 15:39:00,620 Walnut St, New York City,NY,10001 +304103,Bose SoundSport Headphones,1,99.99,2019-12-09 10:47:00,194 6th St, San Francisco,CA,94016 +304104,Macbook Pro Laptop,1,1700.0,2019-12-02 13:44:00,438 Forest St, New York City,NY,10001 +304105,USB-C Charging Cable,1,11.95,2019-12-28 23:02:00,294 Spruce St, Dallas,TX,75001 +304106,USB-C Charging Cable,2,11.95,2019-12-20 13:19:00,407 Johnson St, Los Angeles,CA,90001 +304107,AA Batteries (4-pack),1,3.84,2019-12-19 12:06:00,914 2nd St, Boston,MA,02215 +304108,Wired Headphones,1,11.99,2019-12-13 10:00:00,809 11th St, Seattle,WA,98101 +304109,Lightning Charging Cable,1,14.95,2019-12-11 09:29:00,833 North St, Austin,TX,73301 +304110,USB-C Charging Cable,1,11.95,2019-12-24 22:08:00,439 Highland St, Seattle,WA,98101 +304111,20in Monitor,1,109.99,2019-12-25 12:46:00,592 West St, Los Angeles,CA,90001 +304112,34in Ultrawide Monitor,1,379.99,2019-12-22 10:58:00,32 South St, San Francisco,CA,94016 +304113,Apple Airpods Headphones,1,150.0,2019-12-03 17:18:00,589 Ridge St, Los Angeles,CA,90001 +304114,USB-C Charging Cable,1,11.95,2019-12-14 09:24:00,312 Hill St, New York City,NY,10001 +304115,20in Monitor,1,109.99,2019-12-12 22:16:00,187 Washington St, Portland,ME,04101 +304116,27in FHD Monitor,1,149.99,2019-12-28 15:49:00,419 Church St, San Francisco,CA,94016 +304117,Lightning Charging Cable,1,14.95,2019-12-13 15:13:00,854 10th St, Boston,MA,02215 +304118,USB-C Charging Cable,1,11.95,2019-12-23 20:03:00,610 7th St, Los Angeles,CA,90001 +304119,Bose SoundSport Headphones,1,99.99,2019-12-20 11:32:00,841 West St, San Francisco,CA,94016 +304120,USB-C Charging Cable,1,11.95,2019-12-13 11:29:00,30 6th St, San Francisco,CA,94016 +304121,USB-C Charging Cable,2,11.95,2019-12-24 12:53:00,301 Ridge St, San Francisco,CA,94016 +304122,AA Batteries (4-pack),2,3.84,2019-12-08 14:17:00,309 Adams St, New York City,NY,10001 +304123,AAA Batteries (4-pack),1,2.99,2019-12-24 19:45:00,138 Sunset St, Boston,MA,02215 +304124,Lightning Charging Cable,1,14.95,2019-12-29 22:05:00,10 Willow St, Portland,OR,97035 +304125,LG Dryer,1,600.0,2019-12-06 10:57:00,591 Willow St, Portland,OR,97035 +304126,34in Ultrawide Monitor,1,379.99,2019-12-04 18:45:00,563 Lincoln St, San Francisco,CA,94016 +304127,Wired Headphones,1,11.99,2019-12-03 14:43:00,541 Wilson St, San Francisco,CA,94016 +304128,Bose SoundSport Headphones,1,99.99,2019-12-15 15:39:00,675 Highland St, Seattle,WA,98101 +304129,Wired Headphones,1,11.99,2019-12-15 20:30:00,926 13th St, Atlanta,GA,30301 +304130,ThinkPad Laptop,1,999.99,2019-12-31 13:44:00,887 Wilson St, San Francisco,CA,94016 +304131,USB-C Charging Cable,1,11.95,2019-12-22 12:40:00,203 Main St, San Francisco,CA,94016 +304132,27in 4K Gaming Monitor,1,389.99,2019-12-25 18:16:00,991 Main St, Los Angeles,CA,90001 +304133,AAA Batteries (4-pack),1,2.99,2019-12-28 13:19:00,990 14th St, San Francisco,CA,94016 +304133,Lightning Charging Cable,1,14.95,2019-12-28 13:19:00,990 14th St, San Francisco,CA,94016 +304134,USB-C Charging Cable,2,11.95,2019-12-31 00:00:00,384 4th St, Boston,MA,02215 +304135,Apple Airpods Headphones,1,150.0,2019-12-17 18:42:00,581 Elm St, Atlanta,GA,30301 +304136,34in Ultrawide Monitor,1,379.99,2019-12-23 12:08:00,610 11th St, Portland,OR,97035 +304136,iPhone,1,700.0,2019-12-23 12:08:00,610 11th St, Portland,OR,97035 +304137,USB-C Charging Cable,1,11.95,2019-12-24 09:16:00,607 West St, Los Angeles,CA,90001 +304138,USB-C Charging Cable,1,11.95,2019-12-05 05:09:00,69 Highland St, San Francisco,CA,94016 +304139,USB-C Charging Cable,1,11.95,2019-12-07 18:21:00,173 1st St, Boston,MA,02215 +304140,Vareebadd Phone,1,400.0,2019-12-30 21:39:00,22 Madison St, New York City,NY,10001 +304141,Apple Airpods Headphones,1,150.0,2019-12-07 12:54:00,378 8th St, New York City,NY,10001 +304142,USB-C Charging Cable,1,11.95,2019-12-30 19:46:00,60 Wilson St, Dallas,TX,75001 +304143,Bose SoundSport Headphones,1,99.99,2019-12-20 14:36:00,999 Pine St, San Francisco,CA,94016 +304144,Google Phone,1,600.0,2019-12-03 20:22:00,124 11th St, San Francisco,CA,94016 +304145,Wired Headphones,1,11.99,2019-12-27 21:06:00,192 Jefferson St, Portland,OR,97035 +304146,Wired Headphones,1,11.99,2019-12-19 11:48:00,915 Park St, Seattle,WA,98101 +304147,Bose SoundSport Headphones,1,99.99,2019-12-22 09:39:00,592 Madison St, Atlanta,GA,30301 +304148,27in FHD Monitor,1,149.99,2019-12-30 17:26:00,938 Chestnut St, Atlanta,GA,30301 +304149,AAA Batteries (4-pack),1,2.99,2019-12-10 21:03:00,646 Highland St, Boston,MA,02215 +304150,Wired Headphones,1,11.99,2019-12-28 14:32:00,989 12th St, Los Angeles,CA,90001 +304151,Lightning Charging Cable,1,14.95,2019-12-26 13:48:00,338 4th St, San Francisco,CA,94016 +304152,Bose SoundSport Headphones,1,99.99,2019-12-25 20:57:00,104 Willow St, Los Angeles,CA,90001 +304153,34in Ultrawide Monitor,1,379.99,2019-12-15 01:03:00,395 13th St, Los Angeles,CA,90001 +304154,AA Batteries (4-pack),1,3.84,2019-12-15 12:57:00,676 Johnson St, New York City,NY,10001 +304155,Apple Airpods Headphones,1,150.0,2019-12-26 16:04:00,100 Walnut St, Portland,OR,97035 +304156,USB-C Charging Cable,1,11.95,2019-12-23 21:04:00,67 North St, Dallas,TX,75001 +304157,USB-C Charging Cable,1,11.95,2019-12-09 22:06:00,979 Sunset St, Boston,MA,02215 +304158,27in 4K Gaming Monitor,1,389.99,2019-12-08 10:00:00,900 Jackson St, New York City,NY,10001 +304159,AAA Batteries (4-pack),1,2.99,2019-12-23 17:52:00,246 9th St, Boston,MA,02215 +304160,Bose SoundSport Headphones,1,99.99,2019-12-27 08:35:00,589 4th St, Dallas,TX,75001 +304161,Lightning Charging Cable,1,14.95,2019-12-16 19:40:00,810 Main St, Los Angeles,CA,90001 +304162,Apple Airpods Headphones,1,150.0,2019-12-24 19:26:00,381 Highland St, Dallas,TX,75001 +304163,Lightning Charging Cable,1,14.95,2019-12-24 01:35:00,128 Jefferson St, Atlanta,GA,30301 +304164,Apple Airpods Headphones,1,150.0,2019-12-10 18:33:00,242 8th St, Seattle,WA,98101 +304165,AAA Batteries (4-pack),1,2.99,2020-01-01 04:13:00,825 Adams St, Portland,OR,97035 +304166,Wired Headphones,1,11.99,2019-12-19 16:59:00,443 9th St, Austin,TX,73301 +304167,Lightning Charging Cable,1,14.95,2019-12-12 15:16:00,245 Lakeview St, Atlanta,GA,30301 +304168,AAA Batteries (4-pack),2,2.99,2019-12-14 12:39:00,597 Cedar St, New York City,NY,10001 +304169,Lightning Charging Cable,1,14.95,2019-12-09 19:14:00,286 Cedar St, Los Angeles,CA,90001 +304170,Lightning Charging Cable,1,14.95,2019-12-30 13:14:00,248 Sunset St, Boston,MA,02215 +304171,34in Ultrawide Monitor,1,379.99,2019-12-05 07:47:00,223 Elm St, Los Angeles,CA,90001 +304172,Flatscreen TV,1,300.0,2019-12-31 11:10:00,386 Maple St, Portland,OR,97035 +304173,AA Batteries (4-pack),1,3.84,2019-12-30 10:40:00,351 Wilson St, Los Angeles,CA,90001 +304174,USB-C Charging Cable,1,11.95,2019-12-31 14:15:00,22 12th St, San Francisco,CA,94016 +304175,Lightning Charging Cable,1,14.95,2019-12-20 12:20:00,553 4th St, San Francisco,CA,94016 +304176,USB-C Charging Cable,2,11.95,2019-12-26 22:46:00,855 Highland St, Portland,OR,97035 +304177,Lightning Charging Cable,1,14.95,2019-12-27 14:58:00,7 7th St, Los Angeles,CA,90001 +304178,Apple Airpods Headphones,1,150.0,2019-12-09 18:52:00,977 Pine St, Los Angeles,CA,90001 +304179,LG Washing Machine,1,600.0,2019-12-04 12:59:00,462 Lincoln St, San Francisco,CA,94016 +304180,Wired Headphones,1,11.99,2019-12-30 11:44:00,455 6th St, Seattle,WA,98101 +304181,USB-C Charging Cable,1,11.95,2019-12-22 19:00:00,263 Cedar St, Atlanta,GA,30301 +304182,20in Monitor,1,109.99,2019-12-25 12:21:00,859 Spruce St, Seattle,WA,98101 +304183,AA Batteries (4-pack),2,3.84,2019-12-15 20:53:00,820 River St, Boston,MA,02215 +304184,AAA Batteries (4-pack),2,2.99,2019-12-11 23:47:00,870 Lake St, Portland,OR,97035 +304185,34in Ultrawide Monitor,1,379.99,2019-12-03 09:29:00,724 West St, San Francisco,CA,94016 +304186,AA Batteries (4-pack),1,3.84,2019-12-11 14:43:00,280 Highland St, Boston,MA,02215 +304187,AA Batteries (4-pack),1,3.84,2019-12-14 15:11:00,124 Main St, Los Angeles,CA,90001 +304188,Wired Headphones,1,11.99,2019-12-15 17:21:00,900 6th St, Atlanta,GA,30301 +304189,USB-C Charging Cable,1,11.95,2019-12-07 21:55:00,393 7th St, Austin,TX,73301 +304190,Lightning Charging Cable,1,14.95,2019-12-13 09:56:00,472 Jackson St, New York City,NY,10001 +304191,AA Batteries (4-pack),1,3.84,2019-12-30 12:39:00,963 Church St, Boston,MA,02215 +304192,34in Ultrawide Monitor,1,379.99,2019-12-13 23:06:00,463 10th St, Boston,MA,02215 +304193,27in FHD Monitor,1,149.99,2019-12-16 17:35:00,237 Madison St, Seattle,WA,98101 +304194,Wired Headphones,1,11.99,2019-12-06 10:13:00,222 Pine St, Portland,OR,97035 +304195,Lightning Charging Cable,1,14.95,2019-12-27 16:16:00,480 Wilson St, San Francisco,CA,94016 +304196,ThinkPad Laptop,1,999.99,2019-12-19 09:47:00,406 14th St, San Francisco,CA,94016 +304197,Wired Headphones,1,11.99,2019-12-28 13:59:00,174 Forest St, Boston,MA,02215 +304198,Bose SoundSport Headphones,1,99.99,2019-12-15 20:32:00,578 Washington St, Los Angeles,CA,90001 +304199,Bose SoundSport Headphones,1,99.99,2019-12-13 18:12:00,248 Madison St, New York City,NY,10001 +304200,Wired Headphones,1,11.99,2019-12-08 21:25:00,665 Sunset St, San Francisco,CA,94016 +304201,ThinkPad Laptop,1,999.99,2019-12-31 08:11:00,944 Johnson St, New York City,NY,10001 +304202,20in Monitor,1,109.99,2019-12-31 12:57:00,721 Elm St, Boston,MA,02215 +304203,Apple Airpods Headphones,1,150.0,2019-12-18 20:10:00,682 5th St, Boston,MA,02215 +304204,27in FHD Monitor,1,149.99,2019-12-16 19:01:00,127 1st St, New York City,NY,10001 +304205,27in 4K Gaming Monitor,1,389.99,2019-12-21 16:21:00,72 4th St, Atlanta,GA,30301 +304206,Apple Airpods Headphones,1,150.0,2019-12-29 17:20:00,701 Sunset St, New York City,NY,10001 +304207,Wired Headphones,2,11.99,2019-12-21 20:03:00,395 Church St, Boston,MA,02215 +304208,USB-C Charging Cable,1,11.95,2019-12-13 20:46:00,356 Highland St, New York City,NY,10001 +304209,Wired Headphones,1,11.99,2019-12-20 20:20:00,643 Adams St, San Francisco,CA,94016 +304210,AA Batteries (4-pack),1,3.84,2019-12-21 13:33:00,366 Adams St, Los Angeles,CA,90001 +304211,Apple Airpods Headphones,1,150.0,2019-12-06 20:53:00,905 Hickory St, San Francisco,CA,94016 +304212,Lightning Charging Cable,1,14.95,2019-12-14 17:54:00,813 Johnson St, Seattle,WA,98101 +304213,AAA Batteries (4-pack),1,2.99,2019-12-22 18:54:00,936 13th St, Dallas,TX,75001 +304214,AA Batteries (4-pack),1,3.84,2019-12-15 20:11:00,60 Main St, Los Angeles,CA,90001 +304215,Bose SoundSport Headphones,1,99.99,2019-12-15 12:54:00,916 Madison St, Los Angeles,CA,90001 +304216,34in Ultrawide Monitor,1,379.99,2019-12-08 19:25:00,766 Wilson St, Dallas,TX,75001 +304217,Wired Headphones,1,11.99,2019-12-15 21:20:00,141 Hickory St, New York City,NY,10001 +304218,USB-C Charging Cable,1,11.95,2019-12-21 18:50:00,523 Meadow St, San Francisco,CA,94016 +304219,Lightning Charging Cable,2,14.95,2019-12-19 16:01:00,936 River St, Austin,TX,73301 +304219,AA Batteries (4-pack),2,3.84,2019-12-19 16:01:00,936 River St, Austin,TX,73301 +304220,27in 4K Gaming Monitor,1,389.99,2019-12-12 15:51:00,426 Dogwood St, San Francisco,CA,94016 +304221,Lightning Charging Cable,1,14.95,2019-12-16 23:21:00,945 Pine St, Austin,TX,73301 +304221,Wired Headphones,1,11.99,2019-12-16 23:21:00,945 Pine St, Austin,TX,73301 +304222,Wired Headphones,1,11.99,2019-12-10 09:45:00,371 Willow St, Atlanta,GA,30301 +304223,Macbook Pro Laptop,1,1700.0,2019-12-31 11:18:00,142 11th St, Seattle,WA,98101 +304224,USB-C Charging Cable,1,11.95,2019-12-26 11:35:00,706 River St, New York City,NY,10001 +304225,Bose SoundSport Headphones,1,99.99,2019-12-03 21:05:00,803 Main St, Dallas,TX,75001 +304226,Apple Airpods Headphones,1,150.0,2019-12-12 19:05:00,689 Washington St, Atlanta,GA,30301 +304227,Wired Headphones,1,11.99,2019-12-08 17:16:00,760 Main St, Los Angeles,CA,90001 +304228,Google Phone,1,600.0,2019-12-06 09:53:00,216 2nd St, Portland,OR,97035 +304229,Wired Headphones,1,11.99,2019-12-25 13:34:00,477 5th St, Portland,OR,97035 +304230,27in 4K Gaming Monitor,1,389.99,2019-12-26 19:07:00,662 Adams St, Los Angeles,CA,90001 +304231,Bose SoundSport Headphones,1,99.99,2019-12-17 20:20:00,238 Church St, Dallas,TX,75001 +304232,AAA Batteries (4-pack),2,2.99,2019-12-31 10:10:00,346 Pine St, Portland,OR,97035 +304233,Macbook Pro Laptop,1,1700.0,2019-12-23 16:26:00,279 Highland St, Boston,MA,02215 +304234,AA Batteries (4-pack),2,3.84,2019-12-20 17:33:00,764 Johnson St, Austin,TX,73301 +304235,Bose SoundSport Headphones,1,99.99,2019-12-06 20:18:00,983 Forest St, Atlanta,GA,30301 +304236,Apple Airpods Headphones,1,150.0,2019-12-24 21:05:00,549 Spruce St, Los Angeles,CA,90001 +304237,USB-C Charging Cable,1,11.95,2019-12-16 15:04:00,475 12th St, New York City,NY,10001 +304238,Wired Headphones,1,11.99,2019-12-31 18:53:00,353 Pine St, Los Angeles,CA,90001 +304239,AA Batteries (4-pack),1,3.84,2019-12-07 18:20:00,409 Adams St, San Francisco,CA,94016 +304240,AAA Batteries (4-pack),1,2.99,2019-12-09 19:05:00,796 8th St, Boston,MA,02215 +304241,AA Batteries (4-pack),2,3.84,2019-12-13 20:15:00,706 Madison St, Atlanta,GA,30301 +304242,34in Ultrawide Monitor,1,379.99,2019-12-24 14:07:00,578 9th St, Portland,OR,97035 +304243,Macbook Pro Laptop,1,1700.0,2019-12-03 14:39:00,766 Park St, Los Angeles,CA,90001 +304244,iPhone,1,700.0,2019-12-04 12:21:00,39 Forest St, New York City,NY,10001 +304245,27in 4K Gaming Monitor,1,389.99,2019-12-29 11:51:00,252 Johnson St, Seattle,WA,98101 +304246,Vareebadd Phone,1,400.0,2019-12-28 14:12:00,364 Dogwood St, New York City,NY,10001 +304247,Wired Headphones,1,11.99,2019-12-12 19:40:00,456 Pine St, Los Angeles,CA,90001 +304248,Lightning Charging Cable,1,14.95,2019-12-11 19:09:00,440 9th St, Portland,OR,97035 +304249,USB-C Charging Cable,1,11.95,2019-12-22 11:22:00,269 12th St, Los Angeles,CA,90001 +304250,Vareebadd Phone,1,400.0,2019-12-30 09:49:00,270 Adams St, San Francisco,CA,94016 +304251,iPhone,1,700.0,2019-12-09 11:09:00,547 7th St, Austin,TX,73301 +304252,Lightning Charging Cable,1,14.95,2019-12-26 12:53:00,783 Park St, Austin,TX,73301 +304252,iPhone,1,700.0,2019-12-26 12:53:00,783 Park St, Austin,TX,73301 +304253,Apple Airpods Headphones,1,150.0,2019-12-22 08:32:00,193 2nd St, Seattle,WA,98101 +304254,AA Batteries (4-pack),2,3.84,2019-12-19 11:34:00,938 10th St, New York City,NY,10001 +304255,AA Batteries (4-pack),1,3.84,2019-12-03 13:24:00,647 West St, Los Angeles,CA,90001 +304256,Bose SoundSport Headphones,1,99.99,2019-12-23 11:13:00,562 Hickory St, Los Angeles,CA,90001 +304257,iPhone,1,700.0,2019-12-11 18:04:00,68 9th St, Boston,MA,02215 +304257,34in Ultrawide Monitor,1,379.99,2019-12-11 18:04:00,68 9th St, Boston,MA,02215 +304258,Bose SoundSport Headphones,1,99.99,2019-12-29 19:00:00,457 Jefferson St, San Francisco,CA,94016 +304259,34in Ultrawide Monitor,1,379.99,2019-12-10 20:54:00,356 Elm St, Atlanta,GA,30301 +304260,Flatscreen TV,1,300.0,2019-12-12 13:35:00,283 Forest St, San Francisco,CA,94016 +304261,USB-C Charging Cable,1,11.95,2019-12-24 19:56:00,741 Lincoln St, Atlanta,GA,30301 +304262,AAA Batteries (4-pack),1,2.99,2019-12-15 17:44:00,571 Elm St, San Francisco,CA,94016 +304263,Lightning Charging Cable,2,14.95,2019-12-31 18:12:00,937 Madison St, Los Angeles,CA,90001 +304264,AAA Batteries (4-pack),1,2.99,2019-12-14 22:57:00,527 Elm St, Atlanta,GA,30301 +304265,AAA Batteries (4-pack),2,2.99,2019-12-12 22:07:00,486 Jackson St, Seattle,WA,98101 +304266,Apple Airpods Headphones,1,150.0,2019-12-27 14:30:00,351 Church St, Los Angeles,CA,90001 +304267,AAA Batteries (4-pack),1,2.99,2019-12-21 20:45:00,329 Adams St, Atlanta,GA,30301 +304268,Wired Headphones,1,11.99,2019-12-19 19:07:00,634 Lake St, Atlanta,GA,30301 +304269,20in Monitor,1,109.99,2019-12-27 18:29:00,165 2nd St, Boston,MA,02215 +304270,AA Batteries (4-pack),3,3.84,2019-12-05 14:26:00,51 Cherry St, Seattle,WA,98101 +304271,AA Batteries (4-pack),1,3.84,2019-12-19 10:59:00,983 Hickory St, New York City,NY,10001 +304272,Google Phone,1,600.0,2019-12-06 21:15:00,207 Sunset St, Atlanta,GA,30301 +304273,34in Ultrawide Monitor,1,379.99,2019-12-24 15:13:00,979 Elm St, Boston,MA,02215 +304274,LG Dryer,1,600.0,2019-12-07 22:20:00,723 Washington St, San Francisco,CA,94016 +304275,Flatscreen TV,1,300.0,2019-12-15 22:35:00,46 Chestnut St, New York City,NY,10001 +304276,ThinkPad Laptop,1,999.99,2019-12-15 06:07:00,358 5th St, New York City,NY,10001 +304276,iPhone,1,700.0,2019-12-15 06:07:00,358 5th St, New York City,NY,10001 +304277,Wired Headphones,1,11.99,2019-12-13 17:57:00,738 6th St, New York City,NY,10001 +304278,AAA Batteries (4-pack),1,2.99,2019-12-28 11:24:00,753 Pine St, San Francisco,CA,94016 +304279,34in Ultrawide Monitor,1,379.99,2019-12-09 19:15:00,413 Cedar St, Los Angeles,CA,90001 +304280,Bose SoundSport Headphones,1,99.99,2019-12-08 08:50:00,637 12th St, Los Angeles,CA,90001 +304281,AA Batteries (4-pack),1,3.84,2019-12-07 20:41:00,165 Madison St, Boston,MA,02215 +304282,Google Phone,1,600.0,2019-12-31 23:35:00,524 4th St, New York City,NY,10001 +304283,27in FHD Monitor,1,149.99,2019-12-15 04:54:00,610 Forest St, New York City,NY,10001 +304284,27in FHD Monitor,1,149.99,2019-12-30 18:06:00,284 Elm St, Portland,OR,97035 +304285,AAA Batteries (4-pack),2,2.99,2019-12-03 11:58:00,789 Willow St, San Francisco,CA,94016 +304286,USB-C Charging Cable,1,11.95,2019-12-22 18:13:00,865 Park St, Los Angeles,CA,90001 +304287,ThinkPad Laptop,1,999.99,2019-12-10 18:09:00,185 2nd St, San Francisco,CA,94016 +304288,Wired Headphones,1,11.99,2019-12-11 19:39:00,769 4th St, New York City,NY,10001 +304289,Apple Airpods Headphones,1,150.0,2019-12-30 20:43:00,758 1st St, Boston,MA,02215 +304290,Google Phone,1,600.0,2019-12-25 09:31:00,120 9th St, Los Angeles,CA,90001 +304290,USB-C Charging Cable,1,11.95,2019-12-25 09:31:00,120 9th St, Los Angeles,CA,90001 +304291,Apple Airpods Headphones,1,150.0,2019-12-17 11:45:00,750 12th St, Boston,MA,02215 +304291,Bose SoundSport Headphones,1,99.99,2019-12-17 11:45:00,750 12th St, Boston,MA,02215 +304292,Bose SoundSport Headphones,1,99.99,2019-12-04 08:57:00,40 13th St, New York City,NY,10001 +304293,Macbook Pro Laptop,1,1700.0,2019-12-02 14:41:00,252 Maple St, Los Angeles,CA,90001 +304294,USB-C Charging Cable,1,11.95,2019-12-26 19:58:00,648 6th St, Los Angeles,CA,90001 +304295,Google Phone,1,600.0,2019-12-13 18:23:00,635 13th St, Los Angeles,CA,90001 +304295,Wired Headphones,1,11.99,2019-12-13 18:23:00,635 13th St, Los Angeles,CA,90001 +304296,LG Dryer,1,600.0,2019-12-28 22:10:00,776 12th St, Austin,TX,73301 +304297,AA Batteries (4-pack),1,3.84,2019-12-14 19:17:00,154 Highland St, San Francisco,CA,94016 +304298,27in FHD Monitor,1,149.99,2019-12-17 10:54:00,408 Cedar St, Atlanta,GA,30301 +304299,Apple Airpods Headphones,1,150.0,2019-12-07 12:19:00,359 2nd St, New York City,NY,10001 +304300,AA Batteries (4-pack),1,3.84,2019-12-05 21:44:00,247 Elm St, Boston,MA,02215 +304301,Apple Airpods Headphones,1,150.0,2019-12-23 12:20:00,551 River St, Boston,MA,02215 +304302,Apple Airpods Headphones,1,150.0,2019-12-05 17:01:00,149 Dogwood St, San Francisco,CA,94016 +304303,USB-C Charging Cable,1,11.95,2019-12-11 09:38:00,615 2nd St, San Francisco,CA,94016 +304304,Apple Airpods Headphones,1,150.0,2019-12-08 14:56:00,27 Center St, Los Angeles,CA,90001 +304305,Wired Headphones,1,11.99,2019-12-16 02:47:00,81 Elm St, San Francisco,CA,94016 +304306,27in FHD Monitor,1,149.99,2019-12-29 12:10:00,415 Chestnut St, San Francisco,CA,94016 +304307,Wired Headphones,1,11.99,2019-12-28 19:35:00,524 River St, Dallas,TX,75001 +304308,AAA Batteries (4-pack),1,2.99,2019-12-02 15:18:00,513 14th St, Dallas,TX,75001 +304309,27in 4K Gaming Monitor,1,389.99,2019-12-03 19:16:00,606 2nd St, Seattle,WA,98101 +304310,Wired Headphones,1,11.99,2019-12-05 11:19:00,762 Forest St, Dallas,TX,75001 +304311,AAA Batteries (4-pack),1,2.99,2019-12-29 10:42:00,402 Johnson St, San Francisco,CA,94016 +304312,AA Batteries (4-pack),2,3.84,2019-12-20 09:06:00,283 West St, New York City,NY,10001 +304313,27in FHD Monitor,1,149.99,2019-12-29 12:44:00,872 Center St, Atlanta,GA,30301 +304314,USB-C Charging Cable,1,11.95,2019-12-11 02:43:00,82 9th St, Los Angeles,CA,90001 +304315,Wired Headphones,1,11.99,2019-12-24 23:45:00,200 Hickory St, Dallas,TX,75001 +304316,iPhone,1,700.0,2019-12-08 20:55:00,228 5th St, New York City,NY,10001 +304317,Wired Headphones,1,11.99,2019-12-11 00:43:00,326 11th St, New York City,NY,10001 +304318,USB-C Charging Cable,1,11.95,2019-12-10 17:35:00,198 Cedar St, Los Angeles,CA,90001 +304319,Macbook Pro Laptop,1,1700.0,2019-12-29 10:16:00,868 11th St, San Francisco,CA,94016 +304320,AA Batteries (4-pack),1,3.84,2019-12-29 06:51:00,490 8th St, Atlanta,GA,30301 +304321,AAA Batteries (4-pack),1,2.99,2019-12-13 13:11:00,205 Madison St, Boston,MA,02215 +304322,Lightning Charging Cable,1,14.95,2019-12-03 13:12:00,943 13th St, New York City,NY,10001 +304323,Lightning Charging Cable,1,14.95,2019-12-14 13:57:00,535 11th St, Austin,TX,73301 +304324,iPhone,1,700.0,2019-12-13 10:44:00,293 Walnut St, San Francisco,CA,94016 +304324,Lightning Charging Cable,1,14.95,2019-12-13 10:44:00,293 Walnut St, San Francisco,CA,94016 +304325,Lightning Charging Cable,1,14.95,2019-12-18 07:03:00,733 Church St, San Francisco,CA,94016 +304326,Flatscreen TV,1,300.0,2019-12-02 19:47:00,961 14th St, Boston,MA,02215 +304327,34in Ultrawide Monitor,1,379.99,2019-12-23 11:12:00,493 Cherry St, Portland,OR,97035 +304328,AAA Batteries (4-pack),2,2.99,2019-12-12 23:22:00,865 Madison St, Los Angeles,CA,90001 +304329,USB-C Charging Cable,1,11.95,2019-12-25 03:39:00,105 Sunset St, Boston,MA,02215 +304330,Lightning Charging Cable,1,14.95,2019-12-05 15:54:00,937 Jefferson St, Dallas,TX,75001 +304331,Lightning Charging Cable,1,14.95,2019-12-27 11:13:00,503 4th St, San Francisco,CA,94016 +304332,USB-C Charging Cable,1,11.95,2019-12-23 18:20:00,853 Jefferson St, San Francisco,CA,94016 +304333,AAA Batteries (4-pack),3,2.99,2019-12-18 16:09:00,68 Lincoln St, Seattle,WA,98101 +304334,Vareebadd Phone,1,400.0,2019-12-28 16:51:00,2 9th St, Dallas,TX,75001 +304335,AA Batteries (4-pack),1,3.84,2019-12-22 23:14:00,63 11th St, San Francisco,CA,94016 +304336,Wired Headphones,1,11.99,2019-12-28 11:15:00,900 Madison St, San Francisco,CA,94016 +304337,USB-C Charging Cable,1,11.95,2019-12-01 20:48:00,796 13th St, New York City,NY,10001 +304338,USB-C Charging Cable,1,11.95,2019-12-27 10:34:00,825 Dogwood St, Los Angeles,CA,90001 +304339,Apple Airpods Headphones,1,150.0,2019-12-18 04:33:00,737 Hill St, New York City,NY,10001 +304340,27in 4K Gaming Monitor,1,389.99,2019-12-18 20:47:00,57 Cedar St, New York City,NY,10001 +304341,20in Monitor,1,109.99,2019-12-18 20:18:00,569 Elm St, Los Angeles,CA,90001 +304342,Lightning Charging Cable,1,14.95,2019-12-12 21:48:00,705 Park St, Boston,MA,02215 +304343,Bose SoundSport Headphones,1,99.99,2019-12-16 18:24:00,803 8th St, Austin,TX,73301 +304344,Apple Airpods Headphones,1,150.0,2019-12-22 18:48:00,645 Lincoln St, San Francisco,CA,94016 +304345,AAA Batteries (4-pack),2,2.99,2019-12-03 09:00:00,518 Meadow St, Dallas,TX,75001 +304346,AA Batteries (4-pack),4,3.84,2019-12-19 15:22:00,164 Dogwood St, Atlanta,GA,30301 +304347,USB-C Charging Cable,1,11.95,2019-12-16 08:52:00,574 Church St, Los Angeles,CA,90001 +304348,Bose SoundSport Headphones,1,99.99,2019-12-26 22:07:00,170 12th St, Boston,MA,02215 +304349,ThinkPad Laptop,1,999.99,2019-12-25 10:36:00,268 14th St, Los Angeles,CA,90001 +304350,Google Phone,1,600.0,2019-12-26 16:22:00,637 Dogwood St, New York City,NY,10001 +304351,Bose SoundSport Headphones,1,99.99,2019-12-26 13:44:00,89 Dogwood St, San Francisco,CA,94016 +304352,Wired Headphones,2,11.99,2019-12-17 15:14:00,620 13th St, Los Angeles,CA,90001 +304353,Wired Headphones,1,11.99,2019-12-04 17:07:00,853 Washington St, Boston,MA,02215 +304354,Flatscreen TV,1,300.0,2019-12-31 20:25:00,140 Spruce St, Atlanta,GA,30301 +304355,Macbook Pro Laptop,1,1700.0,2019-12-05 20:12:00,924 Cedar St, Atlanta,GA,30301 +304356,ThinkPad Laptop,1,999.99,2019-12-06 21:22:00,810 Hill St, Dallas,TX,75001 +304357,Lightning Charging Cable,1,14.95,2019-12-13 08:24:00,710 13th St, Atlanta,GA,30301 +304358,iPhone,1,700.0,2019-12-07 13:45:00,844 12th St, Austin,TX,73301 +304359,Apple Airpods Headphones,1,150.0,2019-12-19 08:33:00,858 Lincoln St, Dallas,TX,75001 +304360,Bose SoundSport Headphones,1,99.99,2019-12-16 19:42:00,671 6th St, New York City,NY,10001 +304361,AA Batteries (4-pack),1,3.84,2019-12-28 23:58:00,753 12th St, San Francisco,CA,94016 +304362,Lightning Charging Cable,1,14.95,2019-12-24 21:22:00,802 Highland St, Los Angeles,CA,90001 +304363,27in 4K Gaming Monitor,1,389.99,2019-12-01 12:03:00,400 7th St, Portland,OR,97035 +304364,Lightning Charging Cable,1,14.95,2019-12-28 20:10:00,519 Hickory St, Seattle,WA,98101 +304365,iPhone,1,700.0,2019-12-18 11:40:00,45 Lake St, San Francisco,CA,94016 +304366,Flatscreen TV,1,300.0,2019-12-15 00:37:00,164 Center St, Los Angeles,CA,90001 +304367,Apple Airpods Headphones,1,150.0,2019-12-28 09:16:00,574 Ridge St, Los Angeles,CA,90001 +304368,AA Batteries (4-pack),1,3.84,2019-12-23 22:05:00,991 Jackson St, Dallas,TX,75001 +304369,27in FHD Monitor,1,149.99,2019-12-21 20:46:00,608 Wilson St, Atlanta,GA,30301 +304370,LG Washing Machine,1,600.0,2019-12-05 20:38:00,363 14th St, New York City,NY,10001 +304371,34in Ultrawide Monitor,1,379.99,2019-12-09 17:24:00,982 Cedar St, Boston,MA,02215 +304372,AAA Batteries (4-pack),1,2.99,2019-12-12 21:15:00,493 Willow St, San Francisco,CA,94016 +304373,27in FHD Monitor,1,149.99,2019-12-06 19:39:00,605 Church St, Seattle,WA,98101 +304374,AA Batteries (4-pack),1,3.84,2019-12-11 16:43:00,123 Washington St, Atlanta,GA,30301 +304375,Lightning Charging Cable,1,14.95,2019-12-13 00:38:00,272 North St, Los Angeles,CA,90001 +304376,27in 4K Gaming Monitor,1,389.99,2019-12-17 13:57:00,569 Dogwood St, Los Angeles,CA,90001 +304377,27in 4K Gaming Monitor,1,389.99,2019-12-31 16:01:00,529 12th St, Atlanta,GA,30301 +304378,USB-C Charging Cable,1,11.95,2019-12-03 08:56:00,325 Jackson St, Atlanta,GA,30301 +304379,AA Batteries (4-pack),1,3.84,2019-12-30 15:38:00,322 Johnson St, San Francisco,CA,94016 +304380,Lightning Charging Cable,1,14.95,2019-12-09 08:50:00,653 Elm St, San Francisco,CA,94016 +304381,Lightning Charging Cable,1,14.95,2019-12-03 20:15:00,446 Jefferson St, Boston,MA,02215 +304382,Apple Airpods Headphones,1,150.0,2019-12-27 17:47:00,118 Wilson St, Dallas,TX,75001 +304383,Lightning Charging Cable,1,14.95,2019-12-10 10:56:00,493 Church St, San Francisco,CA,94016 +304384,AAA Batteries (4-pack),1,2.99,2019-12-18 14:45:00,763 Hickory St, Los Angeles,CA,90001 +304385,AAA Batteries (4-pack),1,2.99,2019-12-26 12:31:00,554 Sunset St, Seattle,WA,98101 +304386,AAA Batteries (4-pack),1,2.99,2019-12-12 15:38:00,154 Church St, San Francisco,CA,94016 +304387,iPhone,1,700.0,2019-12-11 16:47:00,661 Park St, San Francisco,CA,94016 +304388,Lightning Charging Cable,1,14.95,2019-12-05 11:41:00,141 10th St, San Francisco,CA,94016 +304389,27in 4K Gaming Monitor,1,389.99,2019-12-23 09:32:00,129 2nd St, Los Angeles,CA,90001 +304390,AAA Batteries (4-pack),2,2.99,2019-12-13 11:35:00,988 Spruce St, Portland,OR,97035 +304391,27in 4K Gaming Monitor,1,389.99,2019-12-09 21:21:00,923 Pine St, San Francisco,CA,94016 +304392,AAA Batteries (4-pack),1,2.99,2019-12-03 21:02:00,406 Spruce St, New York City,NY,10001 +304393,AAA Batteries (4-pack),2,2.99,2019-12-12 21:14:00,711 Dogwood St, Dallas,TX,75001 +304394,USB-C Charging Cable,1,11.95,2019-12-19 11:57:00,153 Willow St, Dallas,TX,75001 +304395,Lightning Charging Cable,1,14.95,2019-12-09 18:52:00,263 Highland St, Boston,MA,02215 +304396,Macbook Pro Laptop,1,1700.0,2019-12-19 13:51:00,683 West St, San Francisco,CA,94016 +304397,AAA Batteries (4-pack),1,2.99,2019-12-23 21:59:00,557 7th St, New York City,NY,10001 +304398,Wired Headphones,1,11.99,2019-12-15 11:20:00,43 River St, Dallas,TX,75001 +304399,Lightning Charging Cable,1,14.95,2019-12-30 17:50:00,725 Adams St, Los Angeles,CA,90001 +304400,Lightning Charging Cable,1,14.95,2019-12-15 14:28:00,530 8th St, Los Angeles,CA,90001 +304401,Apple Airpods Headphones,1,150.0,2019-12-20 10:29:00,699 South St, Austin,TX,73301 +304402,Flatscreen TV,1,300.0,2019-12-04 17:27:00,712 Chestnut St, Portland,OR,97035 +304403,AAA Batteries (4-pack),2,2.99,2019-12-19 07:03:00,70 River St, Atlanta,GA,30301 +304404,AAA Batteries (4-pack),1,2.99,2019-12-18 11:15:00,738 Madison St, Portland,ME,04101 +304405,USB-C Charging Cable,1,11.95,2019-12-06 22:25:00,732 Jefferson St, New York City,NY,10001 +304406,Lightning Charging Cable,1,14.95,2019-12-31 22:02:00,723 South St, San Francisco,CA,94016 +304407,Wired Headphones,1,11.99,2019-12-23 10:20:00,188 Madison St, Portland,ME,04101 +304408,Wired Headphones,1,11.99,2019-12-01 05:10:00,395 North St, New York City,NY,10001 +304409,Wired Headphones,2,11.99,2019-12-14 14:53:00,712 Chestnut St, New York City,NY,10001 +304410,ThinkPad Laptop,1,999.99,2019-12-28 13:28:00,214 Hickory St, Portland,ME,04101 +304411,Google Phone,1,600.0,2019-12-12 12:47:00,485 9th St, Atlanta,GA,30301 +304412,Macbook Pro Laptop,1,1700.0,2019-12-15 19:40:00,793 1st St, Atlanta,GA,30301 +304413,Wired Headphones,1,11.99,2019-12-04 14:50:00,834 9th St, Austin,TX,73301 +304414,AA Batteries (4-pack),1,3.84,2019-12-16 20:00:00,207 Park St, New York City,NY,10001 +304415,Google Phone,1,600.0,2019-12-21 21:44:00,55 Center St, San Francisco,CA,94016 +304416,USB-C Charging Cable,1,11.95,2019-12-07 22:52:00,226 13th St, Boston,MA,02215 +304417,Lightning Charging Cable,1,14.95,2019-12-08 20:30:00,342 Center St, New York City,NY,10001 +304418,ThinkPad Laptop,1,999.99,2019-12-21 14:49:00,686 Chestnut St, San Francisco,CA,94016 +304419,Apple Airpods Headphones,1,150.0,2019-12-07 06:58:00,512 Cedar St, Dallas,TX,75001 +304419,AA Batteries (4-pack),1,3.84,2019-12-07 06:58:00,512 Cedar St, Dallas,TX,75001 +304420,Bose SoundSport Headphones,1,99.99,2019-12-17 08:31:00,183 Pine St, New York City,NY,10001 +304421,20in Monitor,1,109.99,2019-12-23 22:52:00,782 11th St, Los Angeles,CA,90001 +304422,27in FHD Monitor,1,149.99,2019-12-03 12:10:00,388 Wilson St, Atlanta,GA,30301 +304423,AA Batteries (4-pack),4,3.84,2019-12-31 21:45:00,905 9th St, New York City,NY,10001 +304424,AA Batteries (4-pack),1,3.84,2019-12-20 17:10:00,465 Dogwood St, San Francisco,CA,94016 +304425,Apple Airpods Headphones,1,150.0,2019-12-23 06:18:00,897 Lincoln St, Atlanta,GA,30301 +304426,AAA Batteries (4-pack),2,2.99,2019-12-19 21:18:00,962 Johnson St, San Francisco,CA,94016 +304427,Wired Headphones,1,11.99,2019-12-08 21:52:00,194 5th St, Boston,MA,02215 +304428,AAA Batteries (4-pack),2,2.99,2019-12-25 11:26:00,99 Church St, Atlanta,GA,30301 +304429,Bose SoundSport Headphones,1,99.99,2019-12-24 23:17:00,379 South St, New York City,NY,10001 +304430,AAA Batteries (4-pack),1,2.99,2019-12-15 14:14:00,830 Adams St, Los Angeles,CA,90001 +304431,AA Batteries (4-pack),1,3.84,2019-12-12 18:17:00,955 Dogwood St, Los Angeles,CA,90001 +304432,Apple Airpods Headphones,1,150.0,2019-12-30 14:30:00,920 13th St, Seattle,WA,98101 +304433,Lightning Charging Cable,1,14.95,2019-12-06 22:02:00,460 Chestnut St, Los Angeles,CA,90001 +304434,Google Phone,1,600.0,2019-12-14 22:35:00,545 Forest St, Austin,TX,73301 +304435,AAA Batteries (4-pack),1,2.99,2019-12-17 16:48:00,67 River St, Los Angeles,CA,90001 +304436,AA Batteries (4-pack),1,3.84,2019-12-25 19:51:00,190 Meadow St, Boston,MA,02215 +304437,Lightning Charging Cable,1,14.95,2019-12-18 10:31:00,617 Willow St, Los Angeles,CA,90001 +304438,USB-C Charging Cable,1,11.95,2019-12-12 11:10:00,307 Wilson St, Portland,OR,97035 +304439,ThinkPad Laptop,1,999.99,2019-12-01 08:24:00,291 Cherry St, New York City,NY,10001 +304440,27in 4K Gaming Monitor,1,389.99,2019-12-15 20:17:00,635 Spruce St, Dallas,TX,75001 +304441,AA Batteries (4-pack),1,3.84,2019-12-16 08:19:00,854 Walnut St, San Francisco,CA,94016 +304442,Lightning Charging Cable,1,14.95,2019-12-18 23:04:00,332 Lincoln St, Dallas,TX,75001 +304443,27in FHD Monitor,1,149.99,2019-12-10 09:54:00,733 Park St, New York City,NY,10001 +304444,AAA Batteries (4-pack),1,2.99,2019-12-23 16:31:00,501 Lake St, New York City,NY,10001 +304445,Macbook Pro Laptop,1,1700.0,2019-12-16 11:06:00,550 Johnson St, San Francisco,CA,94016 +304446,Lightning Charging Cable,1,14.95,2019-12-17 08:56:00,806 Washington St, San Francisco,CA,94016 +304447,Lightning Charging Cable,1,14.95,2019-12-07 18:52:00,164 14th St, Los Angeles,CA,90001 +304447,Bose SoundSport Headphones,1,99.99,2019-12-07 18:52:00,164 14th St, Los Angeles,CA,90001 +304448,ThinkPad Laptop,1,999.99,2019-12-05 13:08:00,838 Washington St, New York City,NY,10001 +304449,Macbook Pro Laptop,1,1700.0,2019-12-07 01:20:00,164 Hickory St, Seattle,WA,98101 +304450,USB-C Charging Cable,1,11.95,2019-12-28 13:18:00,301 Pine St, Atlanta,GA,30301 +304451,USB-C Charging Cable,1,11.95,2019-12-04 12:31:00,921 Johnson St, Atlanta,GA,30301 +304452,AAA Batteries (4-pack),3,2.99,2019-12-09 05:50:00,516 Center St, Boston,MA,02215 +304453,Lightning Charging Cable,1,14.95,2019-12-07 19:50:00,67 Cedar St, Atlanta,GA,30301 +304454,27in 4K Gaming Monitor,1,389.99,2019-12-08 20:49:00,272 Washington St, Atlanta,GA,30301 +304455,Vareebadd Phone,1,400.0,2019-12-24 12:46:00,120 North St, New York City,NY,10001 +304455,USB-C Charging Cable,1,11.95,2019-12-24 12:46:00,120 North St, New York City,NY,10001 +304456,USB-C Charging Cable,1,11.95,2019-12-25 06:05:00,364 10th St, Boston,MA,02215 +304457,27in FHD Monitor,1,149.99,2019-12-21 16:39:00,612 Hickory St, Atlanta,GA,30301 +304458,AAA Batteries (4-pack),4,2.99,2019-12-09 21:52:00,732 Jackson St, Dallas,TX,75001 +304459,AAA Batteries (4-pack),2,2.99,2019-12-16 11:59:00,325 Hickory St, Atlanta,GA,30301 +304460,USB-C Charging Cable,1,11.95,2019-12-17 12:54:00,583 Pine St, San Francisco,CA,94016 +304461,Apple Airpods Headphones,1,150.0,2019-12-06 14:50:00,340 Hill St, Dallas,TX,75001 +304462,Apple Airpods Headphones,1,150.0,2019-12-18 13:52:00,570 Forest St, Los Angeles,CA,90001 +304463,AA Batteries (4-pack),1,3.84,2019-12-19 10:29:00,844 Wilson St, San Francisco,CA,94016 +304464,Bose SoundSport Headphones,1,99.99,2019-12-05 18:07:00,699 Church St, Dallas,TX,75001 +304465,iPhone,1,700.0,2019-12-10 15:51:00,238 River St, Seattle,WA,98101 +304465,Lightning Charging Cable,1,14.95,2019-12-10 15:51:00,238 River St, Seattle,WA,98101 +304466,20in Monitor,1,109.99,2019-12-03 19:18:00,716 Center St, Boston,MA,02215 +304467,Wired Headphones,2,11.99,2019-12-09 20:04:00,773 4th St, San Francisco,CA,94016 +304468,Wired Headphones,1,11.99,2019-12-03 05:15:00,620 North St, Los Angeles,CA,90001 +304469,Bose SoundSport Headphones,1,99.99,2019-12-11 15:04:00,409 Washington St, Atlanta,GA,30301 +304470,AAA Batteries (4-pack),1,2.99,2019-12-03 07:07:00,164 11th St, New York City,NY,10001 +304471,34in Ultrawide Monitor,1,379.99,2019-12-20 16:43:00,123 Walnut St, San Francisco,CA,94016 +304472,34in Ultrawide Monitor,1,379.99,2019-12-26 10:45:00,431 Ridge St, Boston,MA,02215 +304473,Apple Airpods Headphones,1,150.0,2019-12-31 13:10:00,993 6th St, Dallas,TX,75001 +304474,Bose SoundSport Headphones,1,99.99,2019-12-11 21:50:00,542 Maple St, Seattle,WA,98101 +304475,iPhone,1,700.0,2019-12-30 15:13:00,674 Jefferson St, San Francisco,CA,94016 +304476,Apple Airpods Headphones,1,150.0,2019-12-31 17:47:00,619 10th St, Seattle,WA,98101 +304477,Wired Headphones,2,11.99,2019-12-04 17:55:00,192 North St, Los Angeles,CA,90001 +304478,AAA Batteries (4-pack),2,2.99,2019-12-07 22:02:00,416 12th St, Dallas,TX,75001 +304479,USB-C Charging Cable,1,11.95,2019-12-22 20:39:00,890 North St, San Francisco,CA,94016 +304480,AAA Batteries (4-pack),2,2.99,2019-12-15 18:47:00,559 14th St, Dallas,TX,75001 +304481,Apple Airpods Headphones,1,150.0,2019-12-04 00:07:00,782 Pine St, Dallas,TX,75001 +304482,Wired Headphones,1,11.99,2019-12-05 21:20:00,771 Sunset St, Atlanta,GA,30301 +304483,Lightning Charging Cable,1,14.95,2019-12-27 14:25:00,969 Washington St, Boston,MA,02215 +304484,Bose SoundSport Headphones,1,99.99,2019-12-27 14:27:00,874 Willow St, Boston,MA,02215 +304485,ThinkPad Laptop,1,999.99,2019-12-28 13:07:00,390 Lake St, Dallas,TX,75001 +304486,Wired Headphones,1,11.99,2019-12-16 11:04:00,741 Highland St, Seattle,WA,98101 +304487,Wired Headphones,1,11.99,2019-12-13 21:04:00,320 10th St, Dallas,TX,75001 +304488,Bose SoundSport Headphones,1,99.99,2019-12-28 21:10:00,667 Walnut St, San Francisco,CA,94016 +304489,AA Batteries (4-pack),1,3.84,2019-12-25 15:50:00,810 10th St, San Francisco,CA,94016 +304490,Vareebadd Phone,1,400.0,2019-12-08 20:51:00,312 14th St, Seattle,WA,98101 +304491,Google Phone,1,600.0,2019-12-29 15:23:00,782 Wilson St, New York City,NY,10001 +304492,Wired Headphones,1,11.99,2019-12-23 15:12:00,321 9th St, Los Angeles,CA,90001 +304493,Bose SoundSport Headphones,1,99.99,2019-12-22 04:03:00,675 11th St, Atlanta,GA,30301 +304494,Lightning Charging Cable,1,14.95,2019-12-31 19:57:00,452 Highland St, Portland,ME,04101 +304495,27in 4K Gaming Monitor,1,389.99,2019-12-10 15:33:00,898 8th St, San Francisco,CA,94016 +304496,Lightning Charging Cable,1,14.95,2019-12-16 10:20:00,779 Cedar St, Seattle,WA,98101 +304497,Wired Headphones,1,11.99,2019-12-10 01:28:00,426 Center St, San Francisco,CA,94016 +304498,Bose SoundSport Headphones,1,99.99,2019-12-23 14:09:00,528 Pine St, San Francisco,CA,94016 +304499,Google Phone,1,600.0,2019-12-09 07:13:00,492 Willow St, Los Angeles,CA,90001 +304500,AA Batteries (4-pack),1,3.84,2019-12-24 15:08:00,880 1st St, Boston,MA,02215 +304501,Lightning Charging Cable,2,14.95,2019-12-27 14:02:00,543 Johnson St, New York City,NY,10001 +304501,ThinkPad Laptop,1,999.99,2019-12-27 14:02:00,543 Johnson St, New York City,NY,10001 +304502,Wired Headphones,1,11.99,2019-12-05 21:05:00,637 Maple St, Los Angeles,CA,90001 +304503,Apple Airpods Headphones,1,150.0,2019-12-05 21:33:00,658 Lakeview St, New York City,NY,10001 +304504,USB-C Charging Cable,1,11.95,2019-12-05 10:46:00,921 2nd St, Los Angeles,CA,90001 +304505,27in FHD Monitor,1,149.99,2019-12-13 21:11:00,551 Hill St, San Francisco,CA,94016 +304506,Lightning Charging Cable,1,14.95,2019-12-08 17:17:00,74 1st St, San Francisco,CA,94016 +304507,27in 4K Gaming Monitor,1,389.99,2019-12-11 18:05:00,304 Church St, Atlanta,GA,30301 +304508,Bose SoundSport Headphones,1,99.99,2019-12-21 08:53:00,63 Walnut St, San Francisco,CA,94016 +304509,Bose SoundSport Headphones,1,99.99,2019-12-23 19:08:00,56 Lakeview St, Dallas,TX,75001 +304510,20in Monitor,1,109.99,2019-12-21 17:42:00,542 13th St, Austin,TX,73301 +304511,Apple Airpods Headphones,1,150.0,2019-12-21 09:29:00,748 Walnut St, Los Angeles,CA,90001 +304512,Wired Headphones,1,11.99,2019-12-17 07:03:00,645 Meadow St, Los Angeles,CA,90001 +304513,Wired Headphones,1,11.99,2019-12-03 19:13:00,631 Wilson St, San Francisco,CA,94016 +304514,Wired Headphones,1,11.99,2019-12-07 14:31:00,535 6th St, New York City,NY,10001 +304515,AA Batteries (4-pack),1,3.84,2019-12-11 16:31:00,841 Elm St, San Francisco,CA,94016 +304516,USB-C Charging Cable,1,11.95,2019-12-22 20:39:00,970 6th St, Portland,OR,97035 +304517,AAA Batteries (4-pack),1,2.99,2019-12-21 19:45:00,245 Willow St, San Francisco,CA,94016 +304518,Apple Airpods Headphones,1,150.0,2019-12-03 23:27:00,682 Pine St, Atlanta,GA,30301 +304519,27in FHD Monitor,1,149.99,2019-12-04 19:24:00,174 Main St, Dallas,TX,75001 +304520,34in Ultrawide Monitor,1,379.99,2019-12-04 10:32:00,817 Ridge St, San Francisco,CA,94016 +304521,27in FHD Monitor,1,149.99,2019-12-05 16:30:00,644 Chestnut St, Seattle,WA,98101 +304522,Wired Headphones,1,11.99,2019-12-17 19:04:00,33 14th St, Los Angeles,CA,90001 +304523,iPhone,1,700.0,2019-12-05 07:49:00,467 Madison St, Dallas,TX,75001 +304524,Flatscreen TV,1,300.0,2019-12-24 18:09:00,143 Johnson St, Los Angeles,CA,90001 +304525,USB-C Charging Cable,1,11.95,2019-12-18 20:11:00,590 6th St, Los Angeles,CA,90001 +304526,Apple Airpods Headphones,1,150.0,2019-12-27 20:00:00,9 Wilson St, San Francisco,CA,94016 +304527,Lightning Charging Cable,1,14.95,2019-12-16 14:23:00,109 Highland St, Los Angeles,CA,90001 +304528,Wired Headphones,1,11.99,2019-12-31 20:09:00,789 Chestnut St, San Francisco,CA,94016 +304529,AAA Batteries (4-pack),1,2.99,2019-12-07 22:32:00,772 13th St, New York City,NY,10001 +304530,Wired Headphones,1,11.99,2019-12-14 10:14:00,420 6th St, Austin,TX,73301 +304531,Wired Headphones,1,11.99,2019-12-27 00:44:00,306 Jackson St, Los Angeles,CA,90001 +304532,Lightning Charging Cable,1,14.95,2019-12-09 13:10:00,95 Spruce St, Seattle,WA,98101 +304533,Apple Airpods Headphones,1,150.0,2019-12-17 21:26:00,526 Park St, Dallas,TX,75001 +304534,Wired Headphones,1,11.99,2019-12-06 20:11:00,445 Adams St, Los Angeles,CA,90001 +304535,Bose SoundSport Headphones,1,99.99,2019-12-05 07:20:00,113 Center St, San Francisco,CA,94016 +304536,Wired Headphones,1,11.99,2019-12-12 12:45:00,479 Lakeview St, San Francisco,CA,94016 +304537,Bose SoundSport Headphones,1,99.99,2019-12-12 18:18:00,325 Willow St, San Francisco,CA,94016 +304538,Bose SoundSport Headphones,1,99.99,2019-12-19 19:37:00,112 South St, Los Angeles,CA,90001 +304539,Lightning Charging Cable,1,14.95,2019-12-10 18:53:00,663 Highland St, Los Angeles,CA,90001 +304540,27in FHD Monitor,1,149.99,2019-12-03 01:23:00,857 Cedar St, Boston,MA,02215 +304541,AA Batteries (4-pack),2,3.84,2019-12-22 16:01:00,592 South St, Los Angeles,CA,90001 +304542,iPhone,1,700.0,2019-12-12 09:57:00,231 Lake St, Atlanta,GA,30301 +304543,Apple Airpods Headphones,1,150.0,2019-12-05 01:22:00,695 14th St, Seattle,WA,98101 +304544,Wired Headphones,1,11.99,2019-12-29 05:43:00,281 13th St, Boston,MA,02215 +304545,Wired Headphones,1,11.99,2019-12-09 23:27:00,282 13th St, Portland,ME,04101 +304546,AAA Batteries (4-pack),1,2.99,2019-12-03 12:12:00,590 10th St, New York City,NY,10001 +304547,Bose SoundSport Headphones,1,99.99,2019-12-07 14:43:00,305 11th St, Los Angeles,CA,90001 +304548,AA Batteries (4-pack),1,3.84,2019-12-30 09:56:00,69 7th St, Atlanta,GA,30301 +304549,Lightning Charging Cable,1,14.95,2019-12-24 18:28:00,113 Elm St, Dallas,TX,75001 +304550,Lightning Charging Cable,1,14.95,2019-12-02 15:35:00,393 Spruce St, Los Angeles,CA,90001 +304551,AAA Batteries (4-pack),1,2.99,2019-12-19 16:41:00,783 Ridge St, New York City,NY,10001 +304552,AA Batteries (4-pack),1,3.84,2019-12-16 11:07:00,692 Walnut St, New York City,NY,10001 +304553,27in FHD Monitor,1,149.99,2019-12-25 19:30:00,512 Pine St, San Francisco,CA,94016 +304554,USB-C Charging Cable,1,11.95,2019-12-19 20:40:00,208 4th St, San Francisco,CA,94016 +304555,AA Batteries (4-pack),2,3.84,2019-12-31 10:12:00,252 Hill St, Boston,MA,02215 +304556,Lightning Charging Cable,2,14.95,2019-12-28 11:00:00,120 10th St, Atlanta,GA,30301 +304557,Macbook Pro Laptop,1,1700.0,2019-12-17 17:59:00,932 12th St, San Francisco,CA,94016 +304558,Apple Airpods Headphones,1,150.0,2019-12-26 16:01:00,558 Elm St, Los Angeles,CA,90001 +304559,AAA Batteries (4-pack),1,2.99,2019-12-06 09:24:00,271 8th St, Seattle,WA,98101 +304560,Lightning Charging Cable,1,14.95,2019-12-24 19:16:00,136 7th St, New York City,NY,10001 +304561,27in FHD Monitor,1,149.99,2019-12-06 20:30:00,781 Highland St, Los Angeles,CA,90001 +304562,Lightning Charging Cable,1,14.95,2019-12-15 15:43:00,88 Walnut St, Austin,TX,73301 +304563,AAA Batteries (4-pack),1,2.99,2019-12-15 23:39:00,655 Jefferson St, Atlanta,GA,30301 +304564,AA Batteries (4-pack),1,3.84,2019-12-22 20:29:00,268 Wilson St, Seattle,WA,98101 +304565,27in 4K Gaming Monitor,1,389.99,2019-12-24 15:56:00,28 6th St, New York City,NY,10001 +304566,Bose SoundSport Headphones,1,99.99,2019-12-20 14:00:00,861 Lake St, Portland,OR,97035 +304567,AAA Batteries (4-pack),1,2.99,2019-12-23 14:59:00,641 Wilson St, Austin,TX,73301 +304568,iPhone,1,700.0,2019-12-10 16:25:00,672 Dogwood St, San Francisco,CA,94016 +304568,Lightning Charging Cable,1,14.95,2019-12-10 16:25:00,672 Dogwood St, San Francisco,CA,94016 +304569,iPhone,1,700.0,2019-12-15 08:50:00,519 Main St, Dallas,TX,75001 +304570,USB-C Charging Cable,1,11.95,2019-12-09 11:35:00,602 Sunset St, San Francisco,CA,94016 +304571,34in Ultrawide Monitor,1,379.99,2019-12-14 19:10:00,888 Johnson St, New York City,NY,10001 +304572,Wired Headphones,1,11.99,2019-12-22 21:29:00,8 Willow St, Los Angeles,CA,90001 +304573,27in FHD Monitor,1,149.99,2019-12-13 12:06:00,919 West St, New York City,NY,10001 +304574,27in 4K Gaming Monitor,1,389.99,2019-12-05 08:30:00,151 Center St, Atlanta,GA,30301 +304574,AA Batteries (4-pack),1,3.84,2019-12-05 08:30:00,151 Center St, Atlanta,GA,30301 +304575,AA Batteries (4-pack),1,3.84,2019-12-30 17:45:00,843 Main St, San Francisco,CA,94016 +304576,USB-C Charging Cable,2,11.95,2019-12-20 11:33:00,45 Forest St, San Francisco,CA,94016 +304577,iPhone,1,700.0,2019-12-08 09:59:00,775 Elm St, San Francisco,CA,94016 +304578,AAA Batteries (4-pack),1,2.99,2019-12-20 17:35:00,434 Maple St, San Francisco,CA,94016 +304579,Flatscreen TV,1,300.0,2019-12-10 01:58:00,792 Jefferson St, Los Angeles,CA,90001 +304580,Apple Airpods Headphones,1,150.0,2019-12-19 01:18:00,199 Pine St, Los Angeles,CA,90001 +304581,AAA Batteries (4-pack),2,2.99,2019-12-07 16:23:00,14 Jackson St, New York City,NY,10001 +304582,USB-C Charging Cable,1,11.95,2019-12-07 10:19:00,699 Madison St, Austin,TX,73301 +304583,27in 4K Gaming Monitor,1,389.99,2019-12-20 08:59:00,927 Dogwood St, Boston,MA,02215 +304584,Lightning Charging Cable,1,14.95,2019-12-12 07:43:00,530 Dogwood St, Dallas,TX,75001 +304585,AAA Batteries (4-pack),3,2.99,2019-12-23 11:45:00,870 Madison St, San Francisco,CA,94016 +304586,Apple Airpods Headphones,1,150.0,2019-12-15 10:50:00,120 2nd St, New York City,NY,10001 +304587,34in Ultrawide Monitor,1,379.99,2019-12-02 22:14:00,150 Main St, New York City,NY,10001 +304588,Macbook Pro Laptop,1,1700.0,2019-12-07 07:35:00,16 Walnut St, Portland,ME,04101 +304589,Bose SoundSport Headphones,1,99.99,2019-12-25 15:34:00,593 River St, Dallas,TX,75001 +304590,AAA Batteries (4-pack),2,2.99,2019-12-07 15:59:00,819 West St, Los Angeles,CA,90001 +304591,USB-C Charging Cable,1,11.95,2019-12-20 13:15:00,975 Park St, Boston,MA,02215 +304592,USB-C Charging Cable,1,11.95,2019-12-18 19:16:00,213 Washington St, Los Angeles,CA,90001 +304593,27in 4K Gaming Monitor,1,389.99,2019-12-12 10:06:00,97 5th St, Austin,TX,73301 +304594,Lightning Charging Cable,1,14.95,2019-12-07 09:35:00,289 Park St, Boston,MA,02215 +304595,USB-C Charging Cable,1,11.95,2019-12-15 11:20:00,492 Forest St, Dallas,TX,75001 +304596,34in Ultrawide Monitor,1,379.99,2019-12-12 22:42:00,496 8th St, Atlanta,GA,30301 +304597,Wired Headphones,1,11.99,2019-12-31 16:23:00,498 Sunset St, Dallas,TX,75001 +304598,AA Batteries (4-pack),2,3.84,2019-12-17 11:45:00,236 Hill St, Los Angeles,CA,90001 +304599,AA Batteries (4-pack),2,3.84,2019-12-01 11:09:00,458 Forest St, Los Angeles,CA,90001 +304600,AAA Batteries (4-pack),3,2.99,2019-12-16 11:03:00,181 Park St, Los Angeles,CA,90001 +304601,20in Monitor,1,109.99,2019-12-31 19:20:00,965 Lake St, Los Angeles,CA,90001 +304602,Google Phone,1,600.0,2019-12-17 21:23:00,762 Dogwood St, New York City,NY,10001 +304603,AAA Batteries (4-pack),1,2.99,2019-12-02 21:56:00,664 13th St, Los Angeles,CA,90001 +304604,34in Ultrawide Monitor,1,379.99,2019-12-30 13:50:00,737 11th St, Austin,TX,73301 +304605,AA Batteries (4-pack),2,3.84,2019-12-14 17:41:00,547 Park St, Atlanta,GA,30301 +304606,Lightning Charging Cable,1,14.95,2019-12-24 18:21:00,278 Park St, Dallas,TX,75001 +304607,USB-C Charging Cable,1,11.95,2019-12-06 23:44:00,265 Johnson St, Los Angeles,CA,90001 +304608,AAA Batteries (4-pack),2,2.99,2019-12-31 09:21:00,752 Dogwood St, Portland,OR,97035 +304609,Lightning Charging Cable,1,14.95,2019-12-24 17:38:00,159 Chestnut St, Austin,TX,73301 +304610,AA Batteries (4-pack),1,3.84,2019-12-18 10:15:00,222 Center St, Portland,OR,97035 +304611,27in 4K Gaming Monitor,1,389.99,2019-12-25 13:27:00,659 Cedar St, Atlanta,GA,30301 +304612,AAA Batteries (4-pack),1,2.99,2019-12-26 17:09:00,634 West St, Portland,OR,97035 +304613,Lightning Charging Cable,1,14.95,2019-12-14 10:13:00,585 Elm St, New York City,NY,10001 +304614,Lightning Charging Cable,1,14.95,2019-12-04 12:26:00,984 13th St, Portland,OR,97035 +304615,AA Batteries (4-pack),1,3.84,2019-12-10 21:10:00,14 Lakeview St, New York City,NY,10001 +304616,Flatscreen TV,1,300.0,2019-12-12 10:10:00,888 River St, San Francisco,CA,94016 +304617,27in 4K Gaming Monitor,1,389.99,2019-12-12 21:08:00,731 4th St, Los Angeles,CA,90001 +304618,AA Batteries (4-pack),1,3.84,2019-12-17 08:27:00,420 Sunset St, Los Angeles,CA,90001 +304619,Vareebadd Phone,1,400.0,2019-12-07 16:35:00,881 North St, Seattle,WA,98101 +304619,USB-C Charging Cable,1,11.95,2019-12-07 16:35:00,881 North St, Seattle,WA,98101 +304620,27in 4K Gaming Monitor,1,389.99,2019-12-12 22:05:00,679 7th St, Los Angeles,CA,90001 +304621,Lightning Charging Cable,1,14.95,2019-12-15 22:04:00,537 Church St, Los Angeles,CA,90001 +304622,AAA Batteries (4-pack),1,2.99,2019-12-18 09:34:00,302 5th St, Atlanta,GA,30301 +304623,USB-C Charging Cable,2,11.95,2019-12-19 23:53:00,57 14th St, San Francisco,CA,94016 +304624,Lightning Charging Cable,1,14.95,2019-12-04 21:06:00,104 Jefferson St, San Francisco,CA,94016 +304625,AA Batteries (4-pack),1,3.84,2019-12-04 10:48:00,83 1st St, Dallas,TX,75001 +304626,Google Phone,1,600.0,2019-12-27 09:30:00,68 7th St, New York City,NY,10001 +304627,iPhone,1,700.0,2019-12-14 11:40:00,254 6th St, Dallas,TX,75001 +304628,Macbook Pro Laptop,1,1700.0,2019-12-24 11:30:00,87 Lincoln St, San Francisco,CA,94016 +304628,AAA Batteries (4-pack),1,2.99,2019-12-24 11:30:00,87 Lincoln St, San Francisco,CA,94016 +304629,20in Monitor,1,109.99,2019-12-20 11:16:00,88 Johnson St, San Francisco,CA,94016 +304630,Apple Airpods Headphones,1,150.0,2019-12-17 22:56:00,79 Johnson St, Atlanta,GA,30301 +304631,27in FHD Monitor,1,149.99,2019-12-22 00:09:00,50 13th St, Los Angeles,CA,90001 +304632,27in FHD Monitor,1,149.99,2019-12-12 08:08:00,382 Wilson St, San Francisco,CA,94016 +304633,Bose SoundSport Headphones,1,99.99,2019-12-11 22:50:00,404 River St, San Francisco,CA,94016 +304634,Lightning Charging Cable,1,14.95,2019-12-28 11:23:00,787 Maple St, Seattle,WA,98101 +304635,20in Monitor,1,109.99,2019-12-08 05:01:00,413 Spruce St, San Francisco,CA,94016 +304636,Apple Airpods Headphones,1,150.0,2019-12-08 20:06:00,986 Wilson St, New York City,NY,10001 +304637,34in Ultrawide Monitor,1,379.99,2019-12-20 17:08:00,811 Walnut St, San Francisco,CA,94016 +304638,USB-C Charging Cable,1,11.95,2019-12-10 14:41:00,17 9th St, Seattle,WA,98101 +304639,27in 4K Gaming Monitor,1,389.99,2019-12-23 18:32:00,965 Highland St, San Francisco,CA,94016 +304640,USB-C Charging Cable,1,11.95,2019-12-10 00:41:00,855 Pine St, New York City,NY,10001 +304641,Google Phone,1,600.0,2019-12-26 17:14:00,230 Adams St, Los Angeles,CA,90001 +304642,AAA Batteries (4-pack),1,2.99,2019-12-24 06:03:00,280 14th St, Seattle,WA,98101 +304643,27in 4K Gaming Monitor,1,389.99,2019-12-01 08:33:00,697 River St, Boston,MA,02215 +304644,ThinkPad Laptop,1,999.99,2019-12-09 06:40:00,988 River St, New York City,NY,10001 +304644,AAA Batteries (4-pack),2,2.99,2019-12-09 06:40:00,988 River St, New York City,NY,10001 +304645,27in 4K Gaming Monitor,1,389.99,2019-12-30 12:29:00,672 Maple St, Los Angeles,CA,90001 +304646,Bose SoundSport Headphones,1,99.99,2019-12-20 07:16:00,312 Madison St, Portland,OR,97035 +304647,Bose SoundSport Headphones,1,99.99,2019-12-24 16:28:00,273 Main St, New York City,NY,10001 +304648,AA Batteries (4-pack),1,3.84,2019-12-09 20:46:00,583 Pine St, San Francisco,CA,94016 +304649,34in Ultrawide Monitor,1,379.99,2019-12-20 15:08:00,768 Church St, Seattle,WA,98101 +304650,USB-C Charging Cable,1,11.95,2019-12-13 06:17:00,835 Spruce St, Dallas,TX,75001 +304651,AAA Batteries (4-pack),1,2.99,2019-12-22 10:16:00,438 Washington St, Los Angeles,CA,90001 +304652,AA Batteries (4-pack),2,3.84,2019-12-26 19:50:00,747 13th St, Los Angeles,CA,90001 +304653,ThinkPad Laptop,1,999.99,2019-12-19 22:11:00,464 10th St, San Francisco,CA,94016 +304654,AAA Batteries (4-pack),2,2.99,2019-12-12 12:25:00,287 Center St, Dallas,TX,75001 +304655,AA Batteries (4-pack),1,3.84,2019-12-06 18:39:00,998 Elm St, Portland,OR,97035 +304656,Lightning Charging Cable,1,14.95,2019-12-27 19:50:00,711 Washington St, Portland,OR,97035 +304657,AA Batteries (4-pack),3,3.84,2019-12-05 23:04:00,58 Hill St, Boston,MA,02215 +304658,Macbook Pro Laptop,1,1700.0,2019-12-11 23:17:00,802 Wilson St, San Francisco,CA,94016 +304659,AAA Batteries (4-pack),1,2.99,2019-12-17 10:13:00,185 Chestnut St, Austin,TX,73301 +304660,Lightning Charging Cable,1,14.95,2019-12-24 18:53:00,396 6th St, Portland,OR,97035 +304661,34in Ultrawide Monitor,1,379.99,2019-12-14 09:06:00,677 Spruce St, San Francisco,CA,94016 +304662,USB-C Charging Cable,1,11.95,2019-12-28 20:49:00,306 7th St, Seattle,WA,98101 +304663,27in 4K Gaming Monitor,1,389.99,2019-12-01 10:26:00,425 River St, New York City,NY,10001 +304664,Bose SoundSport Headphones,1,99.99,2019-12-28 07:06:00,402 7th St, New York City,NY,10001 +304665,34in Ultrawide Monitor,1,379.99,2019-12-03 21:55:00,983 Center St, Dallas,TX,75001 +304666,USB-C Charging Cable,1,11.95,2019-12-08 08:53:00,654 Adams St, Portland,OR,97035 +304667,USB-C Charging Cable,1,11.95,2019-12-16 12:25:00,201 4th St, Los Angeles,CA,90001 +304668,USB-C Charging Cable,1,11.95,2019-12-13 06:08:00,672 12th St, Los Angeles,CA,90001 +304669,Vareebadd Phone,1,400.0,2019-12-12 11:37:00,421 11th St, Los Angeles,CA,90001 +304670,Wired Headphones,1,11.99,2019-12-23 19:55:00,931 River St, Atlanta,GA,30301 +304671,Lightning Charging Cable,1,14.95,2019-12-09 10:26:00,171 8th St, Los Angeles,CA,90001 +304672,ThinkPad Laptop,1,999.99,2019-12-20 09:19:00,903 12th St, New York City,NY,10001 +304673,AA Batteries (4-pack),2,3.84,2019-12-23 20:08:00,355 West St, Los Angeles,CA,90001 +304674,iPhone,1,700.0,2019-12-03 17:24:00,964 Meadow St, New York City,NY,10001 +304674,Lightning Charging Cable,1,14.95,2019-12-03 17:24:00,964 Meadow St, New York City,NY,10001 +304675,AAA Batteries (4-pack),1,2.99,2019-12-19 20:08:00,148 Johnson St, San Francisco,CA,94016 +304676,AA Batteries (4-pack),1,3.84,2019-12-04 23:46:00,423 West St, New York City,NY,10001 +304677,27in FHD Monitor,1,149.99,2019-12-13 20:02:00,95 Sunset St, Seattle,WA,98101 +304678,Bose SoundSport Headphones,1,99.99,2019-12-22 21:37:00,628 Spruce St, Portland,ME,04101 +304679,27in 4K Gaming Monitor,1,389.99,2019-12-26 14:12:00,981 Spruce St, Seattle,WA,98101 +304680,Wired Headphones,1,11.99,2019-12-28 11:59:00,914 Spruce St, Seattle,WA,98101 +304681,Apple Airpods Headphones,1,150.0,2019-12-26 09:26:00,483 1st St, Dallas,TX,75001 +304682,Wired Headphones,1,11.99,2019-12-08 20:22:00,146 4th St, Dallas,TX,75001 +304683,AAA Batteries (4-pack),1,2.99,2019-12-18 19:53:00,51 Lincoln St, Dallas,TX,75001 +304684,Google Phone,1,600.0,2019-12-20 09:57:00,378 River St, Los Angeles,CA,90001 +304684,USB-C Charging Cable,1,11.95,2019-12-20 09:57:00,378 River St, Los Angeles,CA,90001 +304684,Wired Headphones,1,11.99,2019-12-20 09:57:00,378 River St, Los Angeles,CA,90001 +304685,ThinkPad Laptop,1,999.99,2019-12-31 09:20:00,464 8th St, San Francisco,CA,94016 +304686,AAA Batteries (4-pack),1,2.99,2019-12-12 10:56:00,159 11th St, New York City,NY,10001 +304687,Wired Headphones,1,11.99,2019-12-05 12:18:00,996 Adams St, New York City,NY,10001 +304688,Bose SoundSport Headphones,1,99.99,2019-12-13 18:30:00,294 Jefferson St, San Francisco,CA,94016 +304689,Lightning Charging Cable,1,14.95,2019-12-05 09:39:00,730 Lakeview St, Austin,TX,73301 +304690,ThinkPad Laptop,1,999.99,2019-12-25 17:05:00,434 5th St, San Francisco,CA,94016 +304691,27in 4K Gaming Monitor,1,389.99,2019-12-29 11:43:00,118 Main St, San Francisco,CA,94016 +304692,iPhone,1,700.0,2019-12-19 09:45:00,945 Hickory St, Boston,MA,02215 +304693,Macbook Pro Laptop,1,1700.0,2019-12-05 10:30:00,566 Jefferson St, Boston,MA,02215 +304694,Bose SoundSport Headphones,1,99.99,2019-12-19 06:40:00,661 11th St, San Francisco,CA,94016 +304695,34in Ultrawide Monitor,1,379.99,2019-12-18 21:52:00,438 12th St, San Francisco,CA,94016 +304696,AAA Batteries (4-pack),7,2.99,2019-12-02 21:21:00,393 West St, Atlanta,GA,30301 +304697,AAA Batteries (4-pack),2,2.99,2019-12-09 11:11:00,311 2nd St, Los Angeles,CA,90001 +304698,Wired Headphones,1,11.99,2019-12-15 08:22:00,158 Dogwood St, Atlanta,GA,30301 +304699,Bose SoundSport Headphones,1,99.99,2019-12-09 23:58:00,996 13th St, San Francisco,CA,94016 +304700,USB-C Charging Cable,1,11.95,2019-12-22 12:42:00,485 7th St, Atlanta,GA,30301 +304701,Apple Airpods Headphones,1,150.0,2019-12-11 13:24:00,442 Walnut St, New York City,NY,10001 +304702,AA Batteries (4-pack),4,3.84,2019-12-29 17:04:00,45 5th St, Boston,MA,02215 +304702,AA Batteries (4-pack),1,3.84,2019-12-29 17:04:00,45 5th St, Boston,MA,02215 +304703,AA Batteries (4-pack),1,3.84,2019-12-22 16:39:00,821 Wilson St, Los Angeles,CA,90001 +304704,34in Ultrawide Monitor,1,379.99,2019-12-10 23:47:00,706 1st St, San Francisco,CA,94016 +304705,Google Phone,1,600.0,2019-12-13 22:39:00,757 Park St, Los Angeles,CA,90001 +304706,Lightning Charging Cable,1,14.95,2019-12-28 12:40:00,857 11th St, Seattle,WA,98101 +304707,Wired Headphones,1,11.99,2019-12-25 20:17:00,707 Cherry St, Portland,ME,04101 +304708,Macbook Pro Laptop,1,1700.0,2019-12-01 13:59:00,619 Hickory St, Los Angeles,CA,90001 +304709,AAA Batteries (4-pack),2,2.99,2019-12-10 22:52:00,123 14th St, New York City,NY,10001 +304710,20in Monitor,1,109.99,2019-12-07 17:30:00,872 Lakeview St, Austin,TX,73301 +304711,Lightning Charging Cable,1,14.95,2019-12-05 14:31:00,854 7th St, Seattle,WA,98101 +304712,Bose SoundSport Headphones,1,99.99,2019-12-20 18:16:00,939 Center St, Boston,MA,02215 +304713,Flatscreen TV,1,300.0,2019-12-06 10:47:00,796 Adams St, New York City,NY,10001 +304714,AAA Batteries (4-pack),1,2.99,2019-12-01 18:37:00,852 Elm St, San Francisco,CA,94016 +304715,USB-C Charging Cable,1,11.95,2019-12-29 01:53:00,847 West St, Dallas,TX,75001 +304716,iPhone,1,700.0,2019-12-27 18:41:00,81 7th St, San Francisco,CA,94016 +304717,AAA Batteries (4-pack),2,2.99,2019-12-28 10:24:00,331 Elm St, Portland,OR,97035 +304718,iPhone,1,700.0,2019-12-18 00:07:00,860 Madison St, Portland,OR,97035 +304719,Lightning Charging Cable,1,14.95,2019-12-15 20:11:00,153 13th St, San Francisco,CA,94016 +304720,20in Monitor,1,109.99,2019-12-09 22:45:00,852 Lakeview St, New York City,NY,10001 +304721,Lightning Charging Cable,1,14.95,2019-12-10 18:22:00,294 Church St, Seattle,WA,98101 +304722,Lightning Charging Cable,1,14.95,2019-12-19 04:23:00,403 1st St, San Francisco,CA,94016 +304723,AA Batteries (4-pack),1,3.84,2019-12-03 08:42:00,851 Lakeview St, New York City,NY,10001 +304724,27in FHD Monitor,1,149.99,2019-12-28 10:42:00,509 Lakeview St, Boston,MA,02215 +304724,USB-C Charging Cable,1,11.95,2019-12-28 10:42:00,509 Lakeview St, Boston,MA,02215 +304725,AA Batteries (4-pack),1,3.84,2019-12-01 14:45:00,209 South St, New York City,NY,10001 +304726,AAA Batteries (4-pack),2,2.99,2019-12-23 21:47:00,850 Elm St, Austin,TX,73301 +304727,USB-C Charging Cable,1,11.95,2019-12-21 21:22:00,816 12th St, Portland,OR,97035 +304728,AAA Batteries (4-pack),1,2.99,2019-12-24 09:39:00,697 Lincoln St, Los Angeles,CA,90001 +304729,Apple Airpods Headphones,1,150.0,2019-12-23 14:16:00,823 Jackson St, Los Angeles,CA,90001 +304730,34in Ultrawide Monitor,1,379.99,2019-12-20 19:40:00,454 Forest St, San Francisco,CA,94016 +304731,Lightning Charging Cable,1,14.95,2019-12-03 21:06:00,711 Adams St, Boston,MA,02215 +304732,USB-C Charging Cable,1,11.95,2019-12-06 08:05:00,134 South St, New York City,NY,10001 +304733,Google Phone,1,600.0,2019-12-26 02:04:00,854 Dogwood St, Austin,TX,73301 +304734,iPhone,1,700.0,2019-12-04 22:30:00,266 6th St, Dallas,TX,75001 +304735,AA Batteries (4-pack),1,3.84,2019-12-31 01:11:00,90 Hill St, Atlanta,GA,30301 +304736,Apple Airpods Headphones,1,150.0,2019-12-04 20:00:00,10 Pine St, San Francisco,CA,94016 +304737,AA Batteries (4-pack),1,3.84,2019-12-02 16:18:00,719 14th St, Los Angeles,CA,90001 +304738,Wired Headphones,1,11.99,2019-12-05 22:06:00,593 Ridge St, Austin,TX,73301 +304739,iPhone,1,700.0,2019-12-20 14:24:00,479 Adams St, Dallas,TX,75001 +304740,iPhone,1,700.0,2019-12-21 11:55:00,496 Dogwood St, Atlanta,GA,30301 +304741,Wired Headphones,1,11.99,2019-12-05 13:47:00,895 Hickory St, Boston,MA,02215 +304742,iPhone,1,700.0,2019-12-25 14:27:00,354 Lincoln St, San Francisco,CA,94016 +304742,Lightning Charging Cable,1,14.95,2019-12-25 14:27:00,354 Lincoln St, San Francisco,CA,94016 +304742,Wired Headphones,1,11.99,2019-12-25 14:27:00,354 Lincoln St, San Francisco,CA,94016 +304743,AA Batteries (4-pack),2,3.84,2019-12-11 09:54:00,468 8th St, New York City,NY,10001 +304744,Flatscreen TV,1,300.0,2019-12-13 20:34:00,64 7th St, New York City,NY,10001 +304745,Apple Airpods Headphones,1,150.0,2019-12-11 07:05:00,288 6th St, San Francisco,CA,94016 +304746,AAA Batteries (4-pack),1,2.99,2019-12-10 19:41:00,192 Lakeview St, Dallas,TX,75001 +304747,Wired Headphones,1,11.99,2019-12-21 13:42:00,206 Dogwood St, Atlanta,GA,30301 +304748,AAA Batteries (4-pack),2,2.99,2019-12-26 16:04:00,614 Dogwood St, Boston,MA,02215 +304749,Lightning Charging Cable,1,14.95,2019-12-23 21:39:00,590 14th St, New York City,NY,10001 +304750,Lightning Charging Cable,1,14.95,2019-12-09 21:44:00,12 2nd St, Atlanta,GA,30301 +304751,Wired Headphones,1,11.99,2019-12-09 07:43:00,789 Willow St, Los Angeles,CA,90001 +304752,AA Batteries (4-pack),1,3.84,2019-12-13 23:52:00,762 10th St, Austin,TX,73301 +304753,LG Washing Machine,1,600.0,2019-12-30 22:48:00,358 Forest St, San Francisco,CA,94016 +304754,iPhone,1,700.0,2019-12-11 11:44:00,661 River St, Austin,TX,73301 +304754,Lightning Charging Cable,1,14.95,2019-12-11 11:44:00,661 River St, Austin,TX,73301 +304755,iPhone,1,700.0,2019-12-05 20:15:00,685 Hickory St, Seattle,WA,98101 +304756,Wired Headphones,2,11.99,2019-12-28 09:54:00,518 Wilson St, Portland,OR,97035 +304757,Macbook Pro Laptop,1,1700.0,2019-12-25 19:18:00,493 10th St, Austin,TX,73301 +304758,AA Batteries (4-pack),3,3.84,2019-12-28 20:04:00,776 Washington St, New York City,NY,10001 +304759,AAA Batteries (4-pack),1,2.99,2019-12-24 01:31:00,565 Washington St, Seattle,WA,98101 +304760,Wired Headphones,1,11.99,2019-12-23 13:53:00,471 Maple St, Portland,OR,97035 +304761,USB-C Charging Cable,1,11.95,2019-12-22 09:51:00,506 8th St, San Francisco,CA,94016 +304762,AAA Batteries (4-pack),2,2.99,2019-12-24 21:59:00,588 4th St, Boston,MA,02215 +304763,Apple Airpods Headphones,1,150.0,2019-12-20 11:40:00,894 River St, San Francisco,CA,94016 +304764,Apple Airpods Headphones,1,150.0,2019-12-30 10:07:00,503 Highland St, San Francisco,CA,94016 +304765,AAA Batteries (4-pack),4,2.99,2019-12-11 19:15:00,549 5th St, San Francisco,CA,94016 +304766,Wired Headphones,1,11.99,2019-12-23 10:08:00,882 Ridge St, San Francisco,CA,94016 +304767,Macbook Pro Laptop,1,1700.0,2019-12-18 18:33:00,869 7th St, Seattle,WA,98101 +304768,USB-C Charging Cable,1,11.95,2019-12-23 13:11:00,316 Hickory St, Dallas,TX,75001 +304769,Apple Airpods Headphones,1,150.0,2019-12-14 16:01:00,854 South St, Atlanta,GA,30301 +304770,USB-C Charging Cable,1,11.95,2019-12-15 23:55:00,442 Main St, Los Angeles,CA,90001 +304771,Flatscreen TV,1,300.0,2019-12-20 14:09:00,774 2nd St, Los Angeles,CA,90001 +304772,34in Ultrawide Monitor,1,379.99,2019-12-08 17:19:00,803 Dogwood St, Boston,MA,02215 +304773,27in FHD Monitor,1,149.99,2019-12-28 13:37:00,194 North St, San Francisco,CA,94016 +304774,USB-C Charging Cable,1,11.95,2019-12-05 21:24:00,190 2nd St, Dallas,TX,75001 +304774,AAA Batteries (4-pack),1,2.99,2019-12-05 21:24:00,190 2nd St, Dallas,TX,75001 +304775,27in 4K Gaming Monitor,1,389.99,2019-12-05 14:16:00,122 Meadow St, San Francisco,CA,94016 +304776,34in Ultrawide Monitor,1,379.99,2019-12-08 15:00:00,957 Sunset St, San Francisco,CA,94016 +304777,AA Batteries (4-pack),1,3.84,2019-12-21 11:00:00,568 Hill St, Boston,MA,02215 +304778,AAA Batteries (4-pack),1,2.99,2019-12-29 10:29:00,305 Lake St, Los Angeles,CA,90001 +304779,Bose SoundSport Headphones,1,99.99,2019-12-10 05:01:00,315 Adams St, Los Angeles,CA,90001 +304780,AAA Batteries (4-pack),4,2.99,2019-12-17 22:33:00,662 Jackson St, San Francisco,CA,94016 +304781,Bose SoundSport Headphones,1,99.99,2019-12-29 19:47:00,746 Adams St, Boston,MA,02215 +304782,AAA Batteries (4-pack),4,2.99,2019-12-11 22:07:00,289 8th St, Austin,TX,73301 +304783,27in 4K Gaming Monitor,1,389.99,2019-12-11 08:49:00,100 Center St, San Francisco,CA,94016 +304784,AAA Batteries (4-pack),2,2.99,2019-12-28 20:26:00,384 Jackson St, New York City,NY,10001 +304784,Lightning Charging Cable,1,14.95,2019-12-28 20:26:00,384 Jackson St, New York City,NY,10001 +304785,Lightning Charging Cable,1,14.95,2019-12-24 15:36:00,342 Madison St, New York City,NY,10001 +304786,AAA Batteries (4-pack),3,2.99,2019-12-30 19:51:00,358 Forest St, Boston,MA,02215 +304787,27in 4K Gaming Monitor,1,389.99,2019-12-23 11:40:00,948 Elm St, San Francisco,CA,94016 +304788,Wired Headphones,1,11.99,2019-12-14 10:13:00,740 West St, New York City,NY,10001 +304789,AA Batteries (4-pack),1,3.84,2019-12-04 17:02:00,961 Church St, Dallas,TX,75001 +304790,USB-C Charging Cable,1,11.95,2019-12-31 12:21:00,467 Madison St, Seattle,WA,98101 +304791,USB-C Charging Cable,1,11.95,2019-12-14 17:04:00,825 Lincoln St, San Francisco,CA,94016 +304792,27in 4K Gaming Monitor,1,389.99,2019-12-08 07:22:00,663 6th St, Austin,TX,73301 +304793,USB-C Charging Cable,1,11.95,2019-12-26 20:12:00,178 Willow St, Atlanta,GA,30301 +304794,Lightning Charging Cable,1,14.95,2019-12-04 16:06:00,121 10th St, San Francisco,CA,94016 +304795,Flatscreen TV,1,300.0,2019-12-16 19:41:00,50 River St, New York City,NY,10001 +304796,Macbook Pro Laptop,1,1700.0,2019-12-18 11:15:00,218 Pine St, San Francisco,CA,94016 +304797,Lightning Charging Cable,1,14.95,2019-12-30 10:50:00,820 Cherry St, Los Angeles,CA,90001 +304798,Wired Headphones,1,11.99,2019-12-26 20:43:00,553 Ridge St, San Francisco,CA,94016 +304799,Wired Headphones,1,11.99,2019-12-12 17:28:00,791 6th St, Austin,TX,73301 +304800,Wired Headphones,1,11.99,2019-12-18 18:27:00,63 Pine St, Seattle,WA,98101 +304801,Bose SoundSport Headphones,2,99.99,2019-12-23 19:38:00,714 Main St, San Francisco,CA,94016 +304802,Google Phone,1,600.0,2019-12-27 13:14:00,569 Lake St, Los Angeles,CA,90001 +304802,USB-C Charging Cable,1,11.95,2019-12-27 13:14:00,569 Lake St, Los Angeles,CA,90001 +304802,Bose SoundSport Headphones,1,99.99,2019-12-27 13:14:00,569 Lake St, Los Angeles,CA,90001 +304802,34in Ultrawide Monitor,1,379.99,2019-12-27 13:14:00,569 Lake St, Los Angeles,CA,90001 +304803,Google Phone,1,600.0,2019-12-17 19:28:00,888 4th St, Dallas,TX,75001 +304804,27in FHD Monitor,1,149.99,2019-12-26 10:23:00,97 Wilson St, Boston,MA,02215 +304805,Bose SoundSport Headphones,1,99.99,2019-12-20 22:16:00,280 2nd St, Atlanta,GA,30301 +304805,Lightning Charging Cable,1,14.95,2019-12-20 22:16:00,280 2nd St, Atlanta,GA,30301 +304806,Lightning Charging Cable,1,14.95,2019-12-24 15:49:00,287 Willow St, San Francisco,CA,94016 +304807,Wired Headphones,1,11.99,2019-12-17 23:01:00,283 Jackson St, San Francisco,CA,94016 +304808,AA Batteries (4-pack),1,3.84,2019-12-20 21:40:00,330 Walnut St, San Francisco,CA,94016 +304809,AA Batteries (4-pack),1,3.84,2019-12-15 20:10:00,819 Adams St, Los Angeles,CA,90001 +304810,Lightning Charging Cable,2,14.95,2019-12-02 21:19:00,396 8th St, Los Angeles,CA,90001 +304811,Bose SoundSport Headphones,1,99.99,2019-12-04 20:32:00,511 Meadow St, Los Angeles,CA,90001 +304812,AAA Batteries (4-pack),2,2.99,2019-12-02 22:05:00,547 Main St, San Francisco,CA,94016 +304813,34in Ultrawide Monitor,1,379.99,2019-12-16 09:39:00,146 5th St, San Francisco,CA,94016 +304813,AA Batteries (4-pack),1,3.84,2019-12-16 09:39:00,146 5th St, San Francisco,CA,94016 +304814,Lightning Charging Cable,1,14.95,2019-12-09 21:11:00,935 8th St, Austin,TX,73301 +304815,AAA Batteries (4-pack),1,2.99,2019-12-15 15:38:00,864 Walnut St, San Francisco,CA,94016 +304816,Google Phone,1,600.0,2019-12-20 15:12:00,487 9th St, San Francisco,CA,94016 +304817,AA Batteries (4-pack),1,3.84,2019-12-20 03:32:00,318 Jefferson St, Los Angeles,CA,90001 +304818,AAA Batteries (4-pack),1,2.99,2019-12-30 13:48:00,669 Pine St, San Francisco,CA,94016 +304819,34in Ultrawide Monitor,1,379.99,2019-12-10 05:05:00,691 Washington St, Boston,MA,02215 +304820,Bose SoundSport Headphones,1,99.99,2019-12-21 06:24:00,317 5th St, Atlanta,GA,30301 +304821,Lightning Charging Cable,1,14.95,2019-12-20 10:47:00,351 9th St, San Francisco,CA,94016 +304822,USB-C Charging Cable,2,11.95,2019-12-04 12:34:00,300 Dogwood St, Atlanta,GA,30301 +304823,AAA Batteries (4-pack),1,2.99,2019-12-20 19:17:00,237 2nd St, New York City,NY,10001 +304824,AA Batteries (4-pack),1,3.84,2019-12-28 10:52:00,990 Elm St, New York City,NY,10001 +304825,AA Batteries (4-pack),1,3.84,2019-12-07 00:10:00,424 Park St, San Francisco,CA,94016 +304826,Apple Airpods Headphones,1,150.0,2019-12-25 15:09:00,641 Adams St, Portland,ME,04101 +304827,USB-C Charging Cable,1,11.95,2019-12-01 12:02:00,833 Cedar St, Boston,MA,02215 +304828,AA Batteries (4-pack),1,3.84,2019-12-07 14:42:00,605 Church St, Atlanta,GA,30301 +304829,Flatscreen TV,1,300.0,2019-12-26 16:30:00,805 Main St, Dallas,TX,75001 +304829,AA Batteries (4-pack),1,3.84,2019-12-26 16:30:00,805 Main St, Dallas,TX,75001 +304830,Flatscreen TV,1,300.0,2019-12-04 11:15:00,151 10th St, San Francisco,CA,94016 +304831,Lightning Charging Cable,1,14.95,2019-12-14 10:38:00,743 13th St, Seattle,WA,98101 +304832,Wired Headphones,1,11.99,2019-12-21 08:54:00,141 Cedar St, Los Angeles,CA,90001 +304833,Wired Headphones,1,11.99,2019-12-26 15:31:00,704 Madison St, Los Angeles,CA,90001 +304834,LG Washing Machine,1,600.0,2019-12-24 00:52:00,919 Sunset St, Atlanta,GA,30301 +304835,USB-C Charging Cable,1,11.95,2019-12-01 20:08:00,887 11th St, Boston,MA,02215 +304836,ThinkPad Laptop,1,999.99,2019-12-29 14:33:00,350 Jackson St, Los Angeles,CA,90001 +304837,Flatscreen TV,1,300.0,2019-12-21 19:40:00,751 Maple St, San Francisco,CA,94016 +304838,USB-C Charging Cable,1,11.95,2019-12-30 12:50:00,563 Jefferson St, San Francisco,CA,94016 +304839,Lightning Charging Cable,1,14.95,2019-12-13 02:13:00,28 Main St, Portland,OR,97035 +304840,AAA Batteries (4-pack),1,2.99,2019-12-25 08:09:00,968 Park St, New York City,NY,10001 +304841,Apple Airpods Headphones,1,150.0,2019-12-12 23:13:00,222 River St, San Francisco,CA,94016 +304842,AAA Batteries (4-pack),1,2.99,2019-12-11 14:38:00,173 Johnson St, New York City,NY,10001 +304843,Lightning Charging Cable,1,14.95,2019-12-24 04:53:00,218 Sunset St, Dallas,TX,75001 +304844,iPhone,1,700.0,2019-12-31 01:33:00,199 Jackson St, Portland,OR,97035 +304845,Apple Airpods Headphones,1,150.0,2019-12-27 18:58:00,379 Pine St, Dallas,TX,75001 +304846,Bose SoundSport Headphones,1,99.99,2019-12-15 13:41:00,788 Lake St, San Francisco,CA,94016 +304847,Lightning Charging Cable,1,14.95,2019-12-15 14:36:00,498 Meadow St, Atlanta,GA,30301 +304848,Bose SoundSport Headphones,1,99.99,2019-12-26 10:32:00,895 Johnson St, Seattle,WA,98101 +304849,27in FHD Monitor,1,149.99,2019-12-17 19:27:00,756 Adams St, Atlanta,GA,30301 +304850,ThinkPad Laptop,1,999.99,2019-12-29 21:49:00,729 7th St, Seattle,WA,98101 +304851,Wired Headphones,1,11.99,2019-12-01 15:57:00,291 11th St, Boston,MA,02215 +304852,AAA Batteries (4-pack),1,2.99,2019-12-18 22:13:00,442 Ridge St, New York City,NY,10001 +304853,34in Ultrawide Monitor,1,379.99,2019-12-01 19:26:00,352 7th St, San Francisco,CA,94016 +304854,Lightning Charging Cable,1,14.95,2019-12-14 19:57:00,450 North St, Dallas,TX,75001 +304855,Lightning Charging Cable,1,14.95,2019-12-30 15:09:00,155 8th St, Los Angeles,CA,90001 +304856,AAA Batteries (4-pack),3,2.99,2019-12-25 07:47:00,142 Dogwood St, Dallas,TX,75001 +304857,USB-C Charging Cable,1,11.95,2019-12-26 13:34:00,573 12th St, Los Angeles,CA,90001 +304858,27in 4K Gaming Monitor,1,389.99,2019-12-21 18:56:00,916 Willow St, San Francisco,CA,94016 +304859,Wired Headphones,1,11.99,2019-12-01 12:06:00,408 Jackson St, San Francisco,CA,94016 +304860,Bose SoundSport Headphones,1,99.99,2019-12-12 17:05:00,400 10th St, Los Angeles,CA,90001 +304861,Wired Headphones,1,11.99,2019-12-16 15:07:00,438 Johnson St, San Francisco,CA,94016 +304862,Lightning Charging Cable,1,14.95,2019-12-29 13:18:00,93 Hickory St, Dallas,TX,75001 +304863,34in Ultrawide Monitor,1,379.99,2019-12-04 20:10:00,867 Center St, Seattle,WA,98101 +304864,Wired Headphones,1,11.99,2019-12-02 06:53:00,303 Hill St, Seattle,WA,98101 +304865,AA Batteries (4-pack),1,3.84,2019-12-28 19:01:00,378 West St, New York City,NY,10001 +304866,AA Batteries (4-pack),1,3.84,2019-12-25 18:38:00,457 14th St, San Francisco,CA,94016 +304867,Lightning Charging Cable,1,14.95,2019-12-09 02:01:00,742 12th St, San Francisco,CA,94016 +304867,AAA Batteries (4-pack),1,2.99,2019-12-09 02:01:00,742 12th St, San Francisco,CA,94016 +304868,AAA Batteries (4-pack),2,2.99,2019-12-27 18:53:00,962 Lincoln St, Los Angeles,CA,90001 +304869,Bose SoundSport Headphones,1,99.99,2019-12-03 17:56:00,178 Elm St, Seattle,WA,98101 +304870,Wired Headphones,1,11.99,2019-12-15 07:22:00,12 4th St, Los Angeles,CA,90001 +304871,Macbook Pro Laptop,1,1700.0,2019-12-03 23:28:00,394 Meadow St, Los Angeles,CA,90001 +304872,USB-C Charging Cable,2,11.95,2019-12-26 15:46:00,657 Walnut St, San Francisco,CA,94016 +304873,AA Batteries (4-pack),2,3.84,2019-12-13 21:46:00,165 Walnut St, Austin,TX,73301 +304874,AAA Batteries (4-pack),1,2.99,2019-12-14 19:26:00,928 9th St, Boston,MA,02215 +304875,34in Ultrawide Monitor,1,379.99,2019-12-12 00:49:00,844 13th St, San Francisco,CA,94016 +304876,Apple Airpods Headphones,1,150.0,2019-12-26 20:36:00,336 Chestnut St, Los Angeles,CA,90001 +304877,Bose SoundSport Headphones,1,99.99,2019-12-16 13:09:00,522 Dogwood St, Los Angeles,CA,90001 +304878,AAA Batteries (4-pack),1,2.99,2019-12-07 10:28:00,143 Chestnut St, San Francisco,CA,94016 +304879,Lightning Charging Cable,1,14.95,2019-12-25 18:40:00,41 Elm St, Los Angeles,CA,90001 +304880,27in 4K Gaming Monitor,1,389.99,2019-12-10 08:18:00,398 Lakeview St, Boston,MA,02215 +304881,Lightning Charging Cable,1,14.95,2019-12-23 15:15:00,308 Chestnut St, San Francisco,CA,94016 +304882,iPhone,1,700.0,2019-12-10 19:31:00,201 Johnson St, Seattle,WA,98101 +304883,20in Monitor,1,109.99,2019-12-19 17:40:00,974 Lake St, Portland,OR,97035 +304884,Wired Headphones,1,11.99,2019-12-10 19:17:00,308 7th St, Boston,MA,02215 +304885,AA Batteries (4-pack),1,3.84,2019-12-17 10:10:00,193 North St, New York City,NY,10001 +304886,AAA Batteries (4-pack),2,2.99,2019-12-21 19:46:00,844 Lakeview St, Boston,MA,02215 +304887,AAA Batteries (4-pack),2,2.99,2019-12-13 19:24:00,670 Main St, San Francisco,CA,94016 +304888,Google Phone,1,600.0,2019-12-30 19:23:00,550 Adams St, San Francisco,CA,94016 +304888,34in Ultrawide Monitor,1,379.99,2019-12-30 19:23:00,550 Adams St, San Francisco,CA,94016 +304889,Vareebadd Phone,1,400.0,2019-12-01 07:01:00,972 Spruce St, Dallas,TX,75001 +304890,27in FHD Monitor,1,149.99,2019-12-12 13:51:00,647 2nd St, San Francisco,CA,94016 +304891,USB-C Charging Cable,1,11.95,2019-12-25 12:10:00,657 2nd St, San Francisco,CA,94016 +304892,Lightning Charging Cable,1,14.95,2019-12-05 13:11:00,732 Main St, Dallas,TX,75001 +304893,Apple Airpods Headphones,1,150.0,2019-12-13 22:48:00,910 Jackson St, Boston,MA,02215 +304894,Google Phone,1,600.0,2019-12-03 19:39:00,440 2nd St, Austin,TX,73301 +304894,USB-C Charging Cable,1,11.95,2019-12-03 19:39:00,440 2nd St, Austin,TX,73301 +304895,Wired Headphones,1,11.99,2019-12-18 09:58:00,606 Chestnut St, Los Angeles,CA,90001 +304896,Bose SoundSport Headphones,1,99.99,2019-12-17 13:59:00,748 9th St, Portland,OR,97035 +304897,Bose SoundSport Headphones,1,99.99,2019-12-30 20:49:00,783 Hickory St, Portland,OR,97035 +304898,USB-C Charging Cable,1,11.95,2019-12-30 18:03:00,451 Maple St, San Francisco,CA,94016 +304899,Wired Headphones,1,11.99,2019-12-27 16:55:00,150 Madison St, New York City,NY,10001 +304900,Apple Airpods Headphones,1,150.0,2019-12-08 13:35:00,880 Pine St, San Francisco,CA,94016 +304901,AA Batteries (4-pack),1,3.84,2019-12-08 08:23:00,180 Main St, Austin,TX,73301 +304902,AAA Batteries (4-pack),1,2.99,2019-12-07 20:49:00,524 Chestnut St, San Francisco,CA,94016 +304903,USB-C Charging Cable,1,11.95,2019-12-22 13:06:00,410 Adams St, Austin,TX,73301 +304904,27in FHD Monitor,1,149.99,2019-12-05 11:08:00,187 Church St, Seattle,WA,98101 +304905,Lightning Charging Cable,1,14.95,2019-12-09 18:09:00,760 North St, Los Angeles,CA,90001 +304906,Flatscreen TV,1,300.0,2019-12-23 14:07:00,953 Madison St, Boston,MA,02215 +304907,27in FHD Monitor,1,149.99,2019-12-30 09:27:00,560 Pine St, Los Angeles,CA,90001 +304908,Lightning Charging Cable,1,14.95,2019-12-29 16:56:00,425 Cedar St, Seattle,WA,98101 +304909,27in 4K Gaming Monitor,1,389.99,2019-12-16 15:26:00,734 Church St, New York City,NY,10001 +304910,Flatscreen TV,1,300.0,2019-12-11 00:41:00,336 Sunset St, Boston,MA,02215 +304911,USB-C Charging Cable,1,11.95,2019-12-06 01:27:00,771 Cedar St, Boston,MA,02215 +304912,Lightning Charging Cable,2,14.95,2019-12-12 10:51:00,30 2nd St, New York City,NY,10001 +304913,Wired Headphones,1,11.99,2019-12-06 15:25:00,762 South St, Los Angeles,CA,90001 +304914,USB-C Charging Cable,1,11.95,2019-12-01 10:49:00,430 Lincoln St, Los Angeles,CA,90001 +304915,Wired Headphones,1,11.99,2019-12-23 08:52:00,806 Dogwood St, Boston,MA,02215 +304916,Lightning Charging Cable,1,14.95,2019-12-07 07:25:00,504 South St, Boston,MA,02215 +304917,AAA Batteries (4-pack),1,2.99,2019-12-07 15:09:00,940 9th St, New York City,NY,10001 +304918,Wired Headphones,1,11.99,2019-12-22 13:09:00,765 West St, Dallas,TX,75001 +304919,AAA Batteries (4-pack),2,2.99,2019-12-17 19:53:00,623 Walnut St, San Francisco,CA,94016 +304920,34in Ultrawide Monitor,1,379.99,2019-12-14 14:28:00,714 Willow St, Atlanta,GA,30301 +304921,34in Ultrawide Monitor,1,379.99,2019-12-21 08:12:00,207 Meadow St, New York City,NY,10001 +304922,Wired Headphones,1,11.99,2019-12-24 05:58:00,12 1st St, Los Angeles,CA,90001 +304923,Apple Airpods Headphones,1,150.0,2019-12-26 19:05:00,961 South St, Dallas,TX,75001 +304924,Bose SoundSport Headphones,1,99.99,2019-12-15 23:16:00,159 2nd St, Boston,MA,02215 +304925,Bose SoundSport Headphones,1,99.99,2019-12-13 11:57:00,734 8th St, San Francisco,CA,94016 +304926,iPhone,1,700.0,2019-12-07 10:49:00,14 Hill St, San Francisco,CA,94016 +304927,USB-C Charging Cable,1,11.95,2019-12-19 21:17:00,667 Hickory St, Atlanta,GA,30301 +304928,iPhone,1,700.0,2019-12-23 23:02:00,910 Johnson St, Los Angeles,CA,90001 +304929,Lightning Charging Cable,2,14.95,2019-12-28 15:11:00,439 Cedar St, Boston,MA,02215 +304930,USB-C Charging Cable,1,11.95,2019-12-07 15:42:00,595 7th St, Boston,MA,02215 +304931,iPhone,1,700.0,2019-12-01 09:32:00,41 Maple St, San Francisco,CA,94016 +304932,Wired Headphones,1,11.99,2019-12-02 14:59:00,736 Maple St, New York City,NY,10001 +304933,AA Batteries (4-pack),1,3.84,2019-12-10 12:36:00,43 Ridge St, Seattle,WA,98101 +304934,iPhone,1,700.0,2019-12-20 00:10:00,874 Meadow St, Seattle,WA,98101 +304935,USB-C Charging Cable,1,11.95,2019-12-01 07:26:00,667 West St, Boston,MA,02215 +304936,Flatscreen TV,1,300.0,2019-12-22 20:26:00,15 Walnut St, Seattle,WA,98101 +304937,Wired Headphones,1,11.99,2019-12-13 19:21:00,135 North St, Boston,MA,02215 +304938,Lightning Charging Cable,1,14.95,2019-12-05 11:57:00,372 Park St, Seattle,WA,98101 +304939,iPhone,1,700.0,2019-12-20 21:16:00,96 Madison St, Boston,MA,02215 +304940,Bose SoundSport Headphones,1,99.99,2019-12-15 19:18:00,664 Madison St, San Francisco,CA,94016 +304941,20in Monitor,1,109.99,2019-12-11 18:35:00,74 West St, Los Angeles,CA,90001 +304942,Apple Airpods Headphones,1,150.0,2019-12-15 16:56:00,858 South St, Atlanta,GA,30301 +304943,USB-C Charging Cable,1,11.95,2019-12-07 02:29:00,215 10th St, Los Angeles,CA,90001 +304944,Wired Headphones,1,11.99,2019-12-26 08:32:00,942 5th St, Portland,OR,97035 +304945,Macbook Pro Laptop,1,1700.0,2019-12-12 10:05:00,388 Dogwood St, Boston,MA,02215 +304946,Wired Headphones,1,11.99,2019-12-28 20:11:00,71 Johnson St, Austin,TX,73301 +304947,Bose SoundSport Headphones,1,99.99,2019-12-07 13:48:00,675 4th St, Los Angeles,CA,90001 +304948,Wired Headphones,1,11.99,2019-12-29 12:15:00,378 Elm St, San Francisco,CA,94016 +304949,Lightning Charging Cable,1,14.95,2019-12-12 18:41:00,369 Dogwood St, San Francisco,CA,94016 +304950,Lightning Charging Cable,1,14.95,2019-12-25 18:54:00,851 Church St, San Francisco,CA,94016 +304951,27in FHD Monitor,1,149.99,2019-12-30 08:57:00,460 6th St, New York City,NY,10001 +304952,Wired Headphones,1,11.99,2019-12-28 11:19:00,502 West St, Portland,OR,97035 +304953,AAA Batteries (4-pack),1,2.99,2019-12-26 10:05:00,852 Lake St, Los Angeles,CA,90001 +304954,Lightning Charging Cable,1,14.95,2019-12-04 11:01:00,568 Jackson St, Dallas,TX,75001 +304955,AAA Batteries (4-pack),2,2.99,2019-12-26 18:54:00,448 Dogwood St, New York City,NY,10001 +304956,Lightning Charging Cable,1,14.95,2019-12-25 23:39:00,313 6th St, Dallas,TX,75001 +304957,Bose SoundSport Headphones,1,99.99,2019-12-21 15:11:00,443 Wilson St, Los Angeles,CA,90001 +304958,Lightning Charging Cable,1,14.95,2019-12-13 23:36:00,564 Highland St, San Francisco,CA,94016 +304959,Macbook Pro Laptop,1,1700.0,2019-12-24 17:24:00,849 Hill St, Portland,OR,97035 +304960,AA Batteries (4-pack),1,3.84,2019-12-08 23:42:00,486 14th St, Boston,MA,02215 +304961,ThinkPad Laptop,1,999.99,2019-12-11 21:45:00,981 River St, San Francisco,CA,94016 +304962,Lightning Charging Cable,1,14.95,2019-12-01 11:15:00,340 Cedar St, Atlanta,GA,30301 +304962,USB-C Charging Cable,1,11.95,2019-12-01 11:15:00,340 Cedar St, Atlanta,GA,30301 +304963,20in Monitor,1,109.99,2019-12-25 20:30:00,802 Madison St, New York City,NY,10001 +304964,USB-C Charging Cable,1,11.95,2019-12-07 19:24:00,174 Lake St, Seattle,WA,98101 +304965,Bose SoundSport Headphones,1,99.99,2019-12-22 17:51:00,533 Park St, Atlanta,GA,30301 +304966,Wired Headphones,1,11.99,2019-12-02 19:16:00,721 Highland St, Seattle,WA,98101 +304967,USB-C Charging Cable,1,11.95,2019-12-17 15:53:00,651 Highland St, Austin,TX,73301 +304968,iPhone,1,700.0,2019-12-21 16:42:00,223 River St, Los Angeles,CA,90001 +304969,27in FHD Monitor,1,149.99,2019-12-19 16:47:00,646 Cherry St, Seattle,WA,98101 +304970,USB-C Charging Cable,1,11.95,2019-12-11 12:55:00,507 6th St, Portland,ME,04101 +304971,27in FHD Monitor,1,149.99,2019-12-20 09:22:00,406 North St, San Francisco,CA,94016 +304972,AA Batteries (4-pack),2,3.84,2019-12-30 17:05:00,963 Hill St, San Francisco,CA,94016 +304973,USB-C Charging Cable,1,11.95,2019-12-02 18:36:00,333 Willow St, Atlanta,GA,30301 +304974,USB-C Charging Cable,1,11.95,2019-12-02 23:15:00,638 Adams St, Portland,OR,97035 +304975,AA Batteries (4-pack),1,3.84,2019-12-23 22:28:00,460 Adams St, San Francisco,CA,94016 +304976,AAA Batteries (4-pack),1,2.99,2019-12-18 09:32:00,230 Maple St, Austin,TX,73301 +304977,Flatscreen TV,1,300.0,2019-12-29 13:32:00,185 Johnson St, Boston,MA,02215 +304978,Bose SoundSport Headphones,1,99.99,2019-12-17 12:00:00,962 Dogwood St, Atlanta,GA,30301 +304979,AAA Batteries (4-pack),1,2.99,2019-12-11 20:39:00,621 Madison St, Boston,MA,02215 +304980,Wired Headphones,1,11.99,2019-12-17 13:15:00,983 Elm St, Dallas,TX,75001 +304981,AAA Batteries (4-pack),1,2.99,2019-12-03 16:29:00,916 Maple St, San Francisco,CA,94016 +304982,AAA Batteries (4-pack),1,2.99,2019-12-21 18:44:00,499 2nd St, Austin,TX,73301 +304983,AAA Batteries (4-pack),1,2.99,2019-12-24 13:54:00,334 Meadow St, Atlanta,GA,30301 +304984,Wired Headphones,1,11.99,2019-12-29 07:05:00,292 Park St, Los Angeles,CA,90001 +304985,Bose SoundSport Headphones,1,99.99,2019-12-01 16:01:00,487 Hickory St, San Francisco,CA,94016 +304986,20in Monitor,1,109.99,2019-12-20 23:21:00,814 Johnson St, Los Angeles,CA,90001 +304987,AA Batteries (4-pack),1,3.84,2019-12-25 10:58:00,891 Park St, Los Angeles,CA,90001 +304988,Lightning Charging Cable,1,14.95,2019-12-14 13:49:00,72 Pine St, Dallas,TX,75001 +304989,Wired Headphones,1,11.99,2019-12-26 20:39:00,183 Hill St, Boston,MA,02215 +304990,Apple Airpods Headphones,1,150.0,2019-12-12 10:59:00,733 Lakeview St, Dallas,TX,75001 +304991,AA Batteries (4-pack),4,3.84,2019-12-03 09:08:00,625 Center St, San Francisco,CA,94016 +304992,Bose SoundSport Headphones,1,99.99,2019-12-24 05:57:00,945 Lakeview St, Los Angeles,CA,90001 +304993,AAA Batteries (4-pack),1,2.99,2019-12-16 21:19:00,818 5th St, Los Angeles,CA,90001 +304994,Bose SoundSport Headphones,1,99.99,2019-12-14 15:21:00,340 Dogwood St, Atlanta,GA,30301 +304995,AA Batteries (4-pack),1,3.84,2019-12-15 19:42:00,592 Maple St, San Francisco,CA,94016 +304996,iPhone,1,700.0,2019-12-12 22:47:00,799 Hickory St, New York City,NY,10001 +304997,27in FHD Monitor,1,149.99,2019-12-08 06:52:00,383 7th St, Seattle,WA,98101 +304998,USB-C Charging Cable,1,11.95,2019-12-23 07:22:00,517 River St, Los Angeles,CA,90001 +304999,Wired Headphones,1,11.99,2019-12-15 16:45:00,606 Church St, Dallas,TX,75001 +305000,ThinkPad Laptop,1,999.99,2019-12-20 15:26:00,715 Ridge St, Austin,TX,73301 +305001,Flatscreen TV,1,300.0,2019-12-14 17:48:00,567 Madison St, Dallas,TX,75001 +305002,AA Batteries (4-pack),2,3.84,2019-12-24 21:56:00,431 North St, Boston,MA,02215 +305003,AA Batteries (4-pack),2,3.84,2019-12-09 22:01:00,147 North St, Portland,ME,04101 +305004,AA Batteries (4-pack),1,3.84,2019-12-02 14:00:00,276 Main St, Atlanta,GA,30301 +305005,Lightning Charging Cable,1,14.95,2019-12-19 15:59:00,637 Chestnut St, San Francisco,CA,94016 +305006,AA Batteries (4-pack),1,3.84,2019-12-13 22:55:00,322 River St, New York City,NY,10001 +305007,20in Monitor,1,109.99,2019-12-23 20:09:00,559 Lakeview St, Boston,MA,02215 +305008,iPhone,1,700.0,2019-12-09 17:48:00,610 Maple St, Dallas,TX,75001 +305009,Lightning Charging Cable,1,14.95,2019-12-11 21:31:00,7 Adams St, Boston,MA,02215 +305010,Apple Airpods Headphones,1,150.0,2019-12-19 15:42:00,10 Center St, Atlanta,GA,30301 +305010,Wired Headphones,1,11.99,2019-12-19 15:42:00,10 Center St, Atlanta,GA,30301 +305011,Wired Headphones,1,11.99,2019-12-21 16:38:00,118 Cedar St, San Francisco,CA,94016 +305012,Macbook Pro Laptop,1,1700.0,2019-12-26 19:16:00,534 Spruce St, Los Angeles,CA,90001 +305013,Lightning Charging Cable,1,14.95,2019-12-06 15:20:00,407 Jackson St, Atlanta,GA,30301 +305014,27in FHD Monitor,1,149.99,2019-12-12 21:08:00,621 Main St, Seattle,WA,98101 +305015,Wired Headphones,1,11.99,2019-12-05 17:46:00,737 Lincoln St, New York City,NY,10001 +305016,AAA Batteries (4-pack),1,2.99,2019-12-13 20:50:00,809 Adams St, Seattle,WA,98101 +305017,AA Batteries (4-pack),1,3.84,2019-12-26 21:53:00,357 9th St, San Francisco,CA,94016 +305018,ThinkPad Laptop,1,999.99,2019-12-20 19:07:00,99 1st St, Boston,MA,02215 +305019,USB-C Charging Cable,1,11.95,2019-12-03 21:39:00,380 6th St, Los Angeles,CA,90001 +305020,Macbook Pro Laptop,1,1700.0,2019-12-13 11:32:00,317 Johnson St, Seattle,WA,98101 +305021,Macbook Pro Laptop,1,1700.0,2019-12-14 14:27:00,223 Church St, San Francisco,CA,94016 +305022,34in Ultrawide Monitor,1,379.99,2019-12-25 15:54:00,652 Adams St, San Francisco,CA,94016 +305023,AA Batteries (4-pack),1,3.84,2019-12-24 03:00:00,80 Maple St, Atlanta,GA,30301 +305024,Bose SoundSport Headphones,1,99.99,2019-12-16 13:05:00,104 River St, Atlanta,GA,30301 +305025,34in Ultrawide Monitor,1,379.99,2019-12-16 14:07:00,961 Adams St, Portland,OR,97035 +305026,Apple Airpods Headphones,1,150.0,2019-12-23 12:18:00,863 Spruce St, San Francisco,CA,94016 +305027,Apple Airpods Headphones,1,150.0,2019-12-28 18:19:00,522 Spruce St, San Francisco,CA,94016 +305028,AAA Batteries (4-pack),2,2.99,2019-12-28 12:35:00,869 Main St, Dallas,TX,75001 +305029,Lightning Charging Cable,1,14.95,2019-12-28 21:27:00,786 13th St, Austin,TX,73301 +305030,Vareebadd Phone,1,400.0,2019-12-01 18:49:00,554 6th St, New York City,NY,10001 +305030,USB-C Charging Cable,1,11.95,2019-12-01 18:49:00,554 6th St, New York City,NY,10001 +305031,Bose SoundSport Headphones,1,99.99,2019-12-22 21:48:00,814 7th St, Atlanta,GA,30301 +305032,Bose SoundSport Headphones,1,99.99,2019-12-12 15:58:00,725 2nd St, Boston,MA,02215 +305033,USB-C Charging Cable,1,11.95,2019-12-05 22:00:00,787 North St, Portland,OR,97035 +305034,LG Dryer,1,600.0,2019-12-22 09:58:00,867 6th St, San Francisco,CA,94016 +305035,AAA Batteries (4-pack),1,2.99,2019-12-28 18:47:00,909 Cedar St, New York City,NY,10001 +305036,AA Batteries (4-pack),1,3.84,2019-12-24 00:38:00,501 Sunset St, Boston,MA,02215 +305037,Bose SoundSport Headphones,1,99.99,2019-12-22 16:33:00,168 Sunset St, Portland,OR,97035 +305038,34in Ultrawide Monitor,1,379.99,2019-12-19 07:50:00,59 Maple St, Boston,MA,02215 +305039,Wired Headphones,1,11.99,2019-12-25 12:31:00,869 Maple St, San Francisco,CA,94016 +305040,AAA Batteries (4-pack),2,2.99,2019-12-14 02:15:00,359 River St, New York City,NY,10001 +305041,Apple Airpods Headphones,1,150.0,2019-12-24 01:11:00,290 Walnut St, Atlanta,GA,30301 +305042,iPhone,1,700.0,2019-12-21 10:02:00,410 Washington St, Portland,ME,04101 +305043,AAA Batteries (4-pack),2,2.99,2019-12-31 10:42:00,454 Hickory St, Los Angeles,CA,90001 +305044,AA Batteries (4-pack),1,3.84,2019-12-08 13:03:00,632 Hill St, Dallas,TX,75001 +305045,Bose SoundSport Headphones,1,99.99,2019-12-10 16:03:00,951 14th St, New York City,NY,10001 +305046,USB-C Charging Cable,1,11.95,2019-12-20 16:09:00,254 7th St, Austin,TX,73301 +305047,Lightning Charging Cable,1,14.95,2019-12-05 22:07:00,863 Ridge St, Los Angeles,CA,90001 +305048,Lightning Charging Cable,1,14.95,2019-12-27 22:03:00,24 6th St, San Francisco,CA,94016 +305049,Bose SoundSport Headphones,1,99.99,2019-12-07 19:46:00,25 South St, Dallas,TX,75001 +305050,20in Monitor,1,109.99,2019-12-31 13:31:00,20 Hill St, Los Angeles,CA,90001 +305051,Wired Headphones,1,11.99,2019-12-30 19:59:00,769 Main St, Los Angeles,CA,90001 +305052,Bose SoundSport Headphones,1,99.99,2019-12-02 12:47:00,955 Center St, New York City,NY,10001 +305053,Macbook Pro Laptop,1,1700.0,2019-12-02 10:00:00,151 9th St, Boston,MA,02215 +305054,AA Batteries (4-pack),1,3.84,2019-12-09 21:11:00,956 Pine St, Boston,MA,02215 +305055,Lightning Charging Cable,1,14.95,2019-12-28 12:09:00,135 Main St, Seattle,WA,98101 +305056,Apple Airpods Headphones,1,150.0,2019-12-05 10:40:00,575 Wilson St, San Francisco,CA,94016 +305057,Apple Airpods Headphones,1,150.0,2019-12-10 22:01:00,390 Hickory St, New York City,NY,10001 +305058,Apple Airpods Headphones,1,150.0,2019-12-17 11:31:00,111 Cedar St, New York City,NY,10001 +305059,Apple Airpods Headphones,1,150.0,2019-12-16 12:35:00,426 5th St, Atlanta,GA,30301 +305060,AA Batteries (4-pack),1,3.84,2019-12-23 17:32:00,627 Lake St, San Francisco,CA,94016 +305061,Wired Headphones,1,11.99,2019-12-02 18:10:00,384 12th St, Seattle,WA,98101 +305062,iPhone,1,700.0,2019-12-19 16:53:00,213 Lake St, Seattle,WA,98101 +305062,Wired Headphones,1,11.99,2019-12-19 16:53:00,213 Lake St, Seattle,WA,98101 +305063,AAA Batteries (4-pack),3,2.99,2019-12-17 18:48:00,969 South St, San Francisco,CA,94016 +305064,USB-C Charging Cable,1,11.95,2019-12-29 13:11:00,374 7th St, Boston,MA,02215 +305064,Lightning Charging Cable,1,14.95,2019-12-29 13:11:00,374 7th St, Boston,MA,02215 +305065,Lightning Charging Cable,1,14.95,2019-12-06 13:07:00,325 Johnson St, Los Angeles,CA,90001 +305066,AAA Batteries (4-pack),3,2.99,2019-12-07 17:30:00,226 10th St, Seattle,WA,98101 +305067,AA Batteries (4-pack),3,3.84,2019-12-17 19:53:00,666 Hickory St, Los Angeles,CA,90001 +305068,Wired Headphones,1,11.99,2019-12-01 10:30:00,268 9th St, Los Angeles,CA,90001 +305069,Wired Headphones,1,11.99,2019-12-11 22:48:00,568 Wilson St, Los Angeles,CA,90001 +305070,Google Phone,1,600.0,2019-12-26 00:24:00,542 Wilson St, Portland,OR,97035 +305071,Wired Headphones,1,11.99,2019-12-03 12:28:00,943 Hill St, San Francisco,CA,94016 +305072,Flatscreen TV,1,300.0,2019-12-29 22:04:00,839 North St, San Francisco,CA,94016 +305073,iPhone,1,700.0,2019-12-26 12:40:00,421 8th St, Boston,MA,02215 +305074,Apple Airpods Headphones,1,150.0,2019-12-22 10:43:00,977 9th St, Portland,OR,97035 +305075,AA Batteries (4-pack),2,3.84,2019-12-19 15:18:00,368 Washington St, Boston,MA,02215 +305076,Bose SoundSport Headphones,1,99.99,2019-12-12 12:50:00,872 Cherry St, Portland,OR,97035 +305077,Flatscreen TV,1,300.0,2019-12-12 21:07:00,470 7th St, Atlanta,GA,30301 +305078,Lightning Charging Cable,1,14.95,2019-12-16 13:14:00,287 1st St, Portland,OR,97035 +305079,Google Phone,1,600.0,2019-12-13 19:25:00,138 Meadow St, Portland,OR,97035 +305079,USB-C Charging Cable,1,11.95,2019-12-13 19:25:00,138 Meadow St, Portland,OR,97035 +305080,Wired Headphones,1,11.99,2019-12-26 14:51:00,404 Elm St, Los Angeles,CA,90001 +305081,Macbook Pro Laptop,1,1700.0,2019-12-03 17:36:00,66 Highland St, New York City,NY,10001 +305082,Flatscreen TV,1,300.0,2019-12-02 10:46:00,139 Cedar St, Portland,OR,97035 +305083,AAA Batteries (4-pack),2,2.99,2019-12-26 15:42:00,748 Sunset St, New York City,NY,10001 +305084,iPhone,1,700.0,2019-12-05 12:59:00,544 9th St, Dallas,TX,75001 +305085,AAA Batteries (4-pack),1,2.99,2019-12-05 18:23:00,552 Pine St, New York City,NY,10001 +305086,USB-C Charging Cable,1,11.95,2019-12-18 20:02:00,893 Dogwood St, San Francisco,CA,94016 +305087,AA Batteries (4-pack),1,3.84,2019-12-08 13:04:00,472 Meadow St, Los Angeles,CA,90001 +305088,AA Batteries (4-pack),1,3.84,2019-12-26 16:21:00,493 11th St, Los Angeles,CA,90001 +305089,Bose SoundSport Headphones,1,99.99,2019-12-21 03:16:00,109 Cherry St, Boston,MA,02215 +305090,Lightning Charging Cable,1,14.95,2019-12-15 05:29:00,200 Main St, San Francisco,CA,94016 +305091,Lightning Charging Cable,1,14.95,2019-12-21 16:06:00,824 4th St, Portland,OR,97035 +305092,USB-C Charging Cable,1,11.95,2019-12-10 10:17:00,664 9th St, San Francisco,CA,94016 +305093,Apple Airpods Headphones,1,150.0,2019-12-31 17:54:00,583 Highland St, San Francisco,CA,94016 +305094,Bose SoundSport Headphones,1,99.99,2019-12-11 10:39:00,93 Johnson St, Austin,TX,73301 +305095,Wired Headphones,1,11.99,2019-12-12 00:44:00,445 Maple St, Dallas,TX,75001 +305096,20in Monitor,1,109.99,2019-12-22 20:19:00,72 Pine St, Atlanta,GA,30301 +305097,AAA Batteries (4-pack),1,2.99,2019-12-26 19:14:00,788 Madison St, Austin,TX,73301 +305098,AAA Batteries (4-pack),1,2.99,2019-12-01 12:36:00,25 2nd St, Seattle,WA,98101 +305099,Lightning Charging Cable,1,14.95,2019-12-17 18:40:00,638 Maple St, Seattle,WA,98101 +305100,Apple Airpods Headphones,1,150.0,2019-12-21 12:03:00,554 10th St, Boston,MA,02215 +305101,USB-C Charging Cable,1,11.95,2019-12-27 10:37:00,794 Jefferson St, San Francisco,CA,94016 +305102,Lightning Charging Cable,1,14.95,2019-12-07 00:06:00,41 10th St, Boston,MA,02215 +305103,34in Ultrawide Monitor,1,379.99,2019-12-13 22:57:00,920 Pine St, San Francisco,CA,94016 +305104,Bose SoundSport Headphones,1,99.99,2019-12-20 20:51:00,470 Adams St, San Francisco,CA,94016 +305105,Apple Airpods Headphones,1,150.0,2019-12-20 14:59:00,188 13th St, New York City,NY,10001 +305106,Macbook Pro Laptop,1,1700.0,2019-12-04 21:56:00,472 Wilson St, Dallas,TX,75001 +305107,27in FHD Monitor,1,149.99,2019-12-23 09:07:00,539 Lake St, San Francisco,CA,94016 +305108,Wired Headphones,1,11.99,2019-12-10 21:32:00,62 Washington St, Seattle,WA,98101 +305109,Google Phone,1,600.0,2019-12-20 13:21:00,885 Jackson St, Los Angeles,CA,90001 +305110,27in FHD Monitor,1,149.99,2019-12-27 19:45:00,601 Center St, Los Angeles,CA,90001 +305111,LG Dryer,1,600.0,2019-12-02 20:22:00,24 Jackson St, Los Angeles,CA,90001 +305112,Bose SoundSport Headphones,1,99.99,2019-12-31 12:09:00,164 Hickory St, New York City,NY,10001 +305113,34in Ultrawide Monitor,1,379.99,2019-12-06 14:39:00,172 1st St, New York City,NY,10001 +305114,34in Ultrawide Monitor,1,379.99,2019-12-18 01:42:00,616 Park St, Los Angeles,CA,90001 +305115,USB-C Charging Cable,1,11.95,2019-12-25 10:27:00,506 Willow St, Los Angeles,CA,90001 +305116,Apple Airpods Headphones,1,150.0,2019-12-31 12:30:00,517 Elm St, San Francisco,CA,94016 +305117,Lightning Charging Cable,1,14.95,2019-12-14 22:30:00,661 13th St, Los Angeles,CA,90001 +305118,ThinkPad Laptop,1,999.99,2019-12-31 14:51:00,735 West St, New York City,NY,10001 +305119,Lightning Charging Cable,1,14.95,2019-12-22 11:56:00,462 Adams St, Los Angeles,CA,90001 +305120,Flatscreen TV,1,300.0,2019-12-04 15:01:00,342 Walnut St, Dallas,TX,75001 +305121,AAA Batteries (4-pack),3,2.99,2019-12-20 00:39:00,773 Cedar St, Dallas,TX,75001 +305122,Lightning Charging Cable,1,14.95,2019-12-16 19:58:00,729 Cherry St, Los Angeles,CA,90001 +305123,USB-C Charging Cable,1,11.95,2019-12-06 14:24:00,753 7th St, Los Angeles,CA,90001 +305124,Lightning Charging Cable,1,14.95,2019-12-06 12:11:00,603 Ridge St, Boston,MA,02215 +305125,AAA Batteries (4-pack),1,2.99,2019-12-15 19:01:00,505 Dogwood St, New York City,NY,10001 +305126,34in Ultrawide Monitor,1,379.99,2019-12-12 18:30:00,925 Jefferson St, San Francisco,CA,94016 +305127,USB-C Charging Cable,1,11.95,2019-12-06 20:02:00,885 13th St, San Francisco,CA,94016 +305128,20in Monitor,1,109.99,2019-12-26 22:09:00,364 8th St, New York City,NY,10001 +305129,USB-C Charging Cable,1,11.95,2019-12-24 11:37:00,953 Forest St, Boston,MA,02215 +305130,USB-C Charging Cable,1,11.95,2019-12-15 18:59:00,90 9th St, Portland,ME,04101 +305131,Bose SoundSport Headphones,1,99.99,2019-12-28 13:50:00,527 Willow St, San Francisco,CA,94016 +305132,Bose SoundSport Headphones,1,99.99,2019-12-18 09:29:00,535 West St, Seattle,WA,98101 +305133,ThinkPad Laptop,1,999.99,2019-12-26 13:40:00,65 Madison St, Boston,MA,02215 +305134,AA Batteries (4-pack),2,3.84,2019-12-28 09:07:00,677 Cedar St, San Francisco,CA,94016 +305135,20in Monitor,1,109.99,2019-12-22 18:28:00,796 Washington St, Boston,MA,02215 +305136,Google Phone,1,600.0,2019-12-14 12:24:00,785 Jackson St, Austin,TX,73301 +305137,AAA Batteries (4-pack),1,2.99,2019-12-06 13:44:00,60 Maple St, Atlanta,GA,30301 +305138,AA Batteries (4-pack),3,3.84,2019-12-16 14:44:00,224 Center St, Seattle,WA,98101 +305139,20in Monitor,1,109.99,2019-12-30 17:04:00,132 Jackson St, San Francisco,CA,94016 +305140,Apple Airpods Headphones,1,150.0,2019-12-10 06:03:00,262 Cedar St, San Francisco,CA,94016 +305141,ThinkPad Laptop,1,999.99,2019-12-17 10:27:00,643 10th St, San Francisco,CA,94016 +305142,AA Batteries (4-pack),1,3.84,2019-12-28 22:51:00,579 5th St, New York City,NY,10001 +305143,AAA Batteries (4-pack),1,2.99,2019-12-26 22:56:00,121 Elm St, Dallas,TX,75001 +305144,27in FHD Monitor,1,149.99,2019-12-02 11:36:00,812 South St, Boston,MA,02215 +305145,Lightning Charging Cable,1,14.95,2019-12-01 13:02:00,495 12th St, Boston,MA,02215 +305146,Google Phone,1,600.0,2019-12-21 17:25:00,739 Sunset St, Boston,MA,02215 +305147,AA Batteries (4-pack),2,3.84,2019-12-14 10:02:00,64 Sunset St, Los Angeles,CA,90001 +305148,Wired Headphones,1,11.99,2019-12-02 14:01:00,338 5th St, Los Angeles,CA,90001 +305149,Apple Airpods Headphones,1,150.0,2019-12-10 14:10:00,527 Hill St, San Francisco,CA,94016 +305150,iPhone,1,700.0,2019-12-14 15:29:00,788 Jackson St, Dallas,TX,75001 +305151,Wired Headphones,1,11.99,2019-12-09 19:10:00,145 Lakeview St, New York City,NY,10001 +305152,USB-C Charging Cable,1,11.95,2019-12-05 22:47:00,621 River St, Los Angeles,CA,90001 +305153,AAA Batteries (4-pack),2,2.99,2019-12-26 13:58:00,786 Sunset St, Atlanta,GA,30301 +305154,27in 4K Gaming Monitor,1,389.99,2019-12-12 17:59:00,856 6th St, Dallas,TX,75001 +305155,Wired Headphones,1,11.99,2019-12-07 23:25:00,614 Johnson St, Los Angeles,CA,90001 +305156,AAA Batteries (4-pack),2,2.99,2019-12-27 21:03:00,148 River St, San Francisco,CA,94016 +305157,34in Ultrawide Monitor,1,379.99,2019-12-11 01:32:00,494 14th St, Atlanta,GA,30301 +305158,Bose SoundSport Headphones,1,99.99,2019-12-16 11:36:00,814 Meadow St, San Francisco,CA,94016 +305159,USB-C Charging Cable,1,11.95,2019-12-30 02:47:00,640 Main St, San Francisco,CA,94016 +305160,Flatscreen TV,1,300.0,2019-12-12 07:44:00,397 12th St, Los Angeles,CA,90001 +305161,Vareebadd Phone,1,400.0,2019-12-29 19:48:00,735 Main St, Boston,MA,02215 +305162,AA Batteries (4-pack),1,3.84,2019-12-22 14:41:00,139 North St, Los Angeles,CA,90001 +305163,Wired Headphones,1,11.99,2019-12-15 04:54:00,618 Wilson St, Austin,TX,73301 +305164,34in Ultrawide Monitor,1,379.99,2019-12-09 17:36:00,382 Center St, Los Angeles,CA,90001 +305165,Lightning Charging Cable,1,14.95,2019-12-23 13:00:00,483 Madison St, Los Angeles,CA,90001 +305166,AA Batteries (4-pack),1,3.84,2019-12-26 13:52:00,4 Adams St, Boston,MA,02215 +305167,Wired Headphones,1,11.99,2019-12-02 18:48:00,911 Johnson St, Portland,ME,04101 +305168,Wired Headphones,1,11.99,2019-12-07 18:53:00,994 Wilson St, Boston,MA,02215 +305169,iPhone,1,700.0,2019-12-19 08:19:00,433 10th St, Atlanta,GA,30301 +305170,Lightning Charging Cable,1,14.95,2019-12-21 23:30:00,797 Spruce St, Atlanta,GA,30301 +305171,AAA Batteries (4-pack),1,2.99,2019-12-25 11:44:00,661 5th St, San Francisco,CA,94016 +305172,USB-C Charging Cable,1,11.95,2019-12-26 14:48:00,172 Maple St, Seattle,WA,98101 +305173,34in Ultrawide Monitor,1,379.99,2019-12-23 10:33:00,748 North St, San Francisco,CA,94016 +305174,iPhone,1,700.0,2019-12-28 17:30:00,508 Pine St, San Francisco,CA,94016 +305175,Google Phone,1,600.0,2019-12-24 23:21:00,399 Hill St, Boston,MA,02215 +305176,iPhone,1,700.0,2019-12-20 19:23:00,512 Meadow St, San Francisco,CA,94016 +305177,Wired Headphones,1,11.99,2019-12-03 09:47:00,799 Chestnut St, San Francisco,CA,94016 +305178,Google Phone,1,600.0,2019-12-10 11:51:00,836 Jefferson St, San Francisco,CA,94016 +305179,Lightning Charging Cable,2,14.95,2019-12-04 15:24:00,861 5th St, Los Angeles,CA,90001 +305180,iPhone,1,700.0,2019-12-12 08:08:00,102 Pine St, Atlanta,GA,30301 +305181,AA Batteries (4-pack),2,3.84,2019-12-03 23:09:00,944 Church St, Atlanta,GA,30301 +305182,Wired Headphones,1,11.99,2019-12-10 10:53:00,49 12th St, San Francisco,CA,94016 +305183,AA Batteries (4-pack),2,3.84,2019-12-17 21:41:00,724 Wilson St, Austin,TX,73301 +305184,Macbook Pro Laptop,1,1700.0,2019-12-25 10:32:00,269 Johnson St, San Francisco,CA,94016 +305185,Lightning Charging Cable,1,14.95,2019-12-09 19:48:00,653 Walnut St, New York City,NY,10001 +305186,Apple Airpods Headphones,1,150.0,2019-12-30 20:56:00,987 Wilson St, San Francisco,CA,94016 +305187,27in 4K Gaming Monitor,1,389.99,2019-12-04 17:45:00,451 14th St, New York City,NY,10001 +305188,AAA Batteries (4-pack),1,2.99,2019-12-23 20:49:00,108 South St, San Francisco,CA,94016 +305189,Apple Airpods Headphones,1,150.0,2019-12-04 08:01:00,979 12th St, Portland,OR,97035 +305190,Flatscreen TV,1,300.0,2019-12-04 12:16:00,975 Johnson St, Boston,MA,02215 +305191,Wired Headphones,1,11.99,2019-12-29 16:28:00,715 9th St, Austin,TX,73301 +305192,iPhone,1,700.0,2019-12-27 13:20:00,321 6th St, San Francisco,CA,94016 +305193,Apple Airpods Headphones,1,150.0,2019-12-26 22:00:00,677 Hill St, Portland,OR,97035 +305194,AA Batteries (4-pack),2,3.84,2019-12-14 14:11:00,816 River St, Boston,MA,02215 +305195,AA Batteries (4-pack),1,3.84,2019-12-17 20:02:00,440 12th St, Seattle,WA,98101 +305196,Lightning Charging Cable,1,14.95,2019-12-13 07:11:00,942 Dogwood St, New York City,NY,10001 +305197,Google Phone,1,600.0,2019-12-26 08:38:00,550 5th St, San Francisco,CA,94016 +305198,Bose SoundSport Headphones,1,99.99,2019-12-19 21:42:00,390 Chestnut St, Dallas,TX,75001 +305199,27in FHD Monitor,1,149.99,2019-12-21 22:13:00,582 2nd St, Portland,ME,04101 +305200,ThinkPad Laptop,1,999.99,2019-12-30 15:51:00,295 Cedar St, New York City,NY,10001 +305201,27in 4K Gaming Monitor,1,389.99,2019-12-07 20:56:00,940 Willow St, New York City,NY,10001 +305202,AAA Batteries (4-pack),1,2.99,2019-12-18 17:08:00,757 Meadow St, Atlanta,GA,30301 +305203,Bose SoundSport Headphones,1,99.99,2019-12-30 21:24:00,522 Willow St, New York City,NY,10001 +305204,USB-C Charging Cable,1,11.95,2019-12-15 08:31:00,737 Chestnut St, San Francisco,CA,94016 +305205,USB-C Charging Cable,1,11.95,2019-12-20 10:10:00,780 11th St, New York City,NY,10001 +305206,USB-C Charging Cable,1,11.95,2019-12-14 08:13:00,201 Dogwood St, Dallas,TX,75001 +305207,27in 4K Gaming Monitor,1,389.99,2019-12-20 14:07:00,164 Main St, Atlanta,GA,30301 +305208,27in 4K Gaming Monitor,1,389.99,2019-12-27 20:40:00,246 12th St, Boston,MA,02215 +305209,Wired Headphones,2,11.99,2019-12-23 14:45:00,555 Lake St, Los Angeles,CA,90001 +305210,USB-C Charging Cable,1,11.95,2019-12-22 08:29:00,916 River St, Los Angeles,CA,90001 +305211,34in Ultrawide Monitor,1,379.99,2019-12-26 14:06:00,729 Cedar St, Boston,MA,02215 +305212,Bose SoundSport Headphones,1,99.99,2019-12-18 12:30:00,484 Park St, Austin,TX,73301 +305213,Lightning Charging Cable,1,14.95,2019-12-27 12:46:00,796 Johnson St, San Francisco,CA,94016 +305214,ThinkPad Laptop,1,999.99,2019-12-10 14:59:00,16 Walnut St, Boston,MA,02215 +305215,AA Batteries (4-pack),1,3.84,2019-12-22 11:15:00,57 North St, Portland,OR,97035 +305216,Wired Headphones,3,11.99,2019-12-30 08:24:00,912 Walnut St, Dallas,TX,75001 +305217,AAA Batteries (4-pack),1,2.99,2019-12-17 20:17:00,308 5th St, Boston,MA,02215 +305218,Apple Airpods Headphones,1,150.0,2019-12-14 13:04:00,353 Ridge St, Los Angeles,CA,90001 +305219,USB-C Charging Cable,1,11.95,2019-12-26 13:24:00,937 Elm St, Seattle,WA,98101 +305220,27in FHD Monitor,1,149.99,2019-12-22 19:26:00,9 Ridge St, Seattle,WA,98101 +305221,Lightning Charging Cable,1,14.95,2019-12-15 11:17:00,250 Lincoln St, Boston,MA,02215 +305222,AA Batteries (4-pack),2,3.84,2019-12-17 13:36:00,646 Dogwood St, Los Angeles,CA,90001 +305223,Google Phone,1,600.0,2019-12-22 11:47:00,570 8th St, San Francisco,CA,94016 +305224,34in Ultrawide Monitor,1,379.99,2019-12-24 13:29:00,661 Ridge St, New York City,NY,10001 +305225,Wired Headphones,1,11.99,2019-12-30 17:28:00,172 Meadow St, San Francisco,CA,94016 +305226,Apple Airpods Headphones,1,150.0,2019-12-16 19:04:00,901 Willow St, Atlanta,GA,30301 +305227,Wired Headphones,1,11.99,2019-12-26 09:07:00,511 Pine St, Atlanta,GA,30301 +305228,Wired Headphones,1,11.99,2019-12-08 12:28:00,144 South St, Los Angeles,CA,90001 +305229,iPhone,1,700.0,2019-12-16 23:52:00,319 Dogwood St, San Francisco,CA,94016 +305229,Lightning Charging Cable,1,14.95,2019-12-16 23:52:00,319 Dogwood St, San Francisco,CA,94016 +305230,Flatscreen TV,1,300.0,2019-12-14 15:46:00,286 Meadow St, Boston,MA,02215 +305231,AAA Batteries (4-pack),1,2.99,2019-12-13 14:22:00,639 8th St, Atlanta,GA,30301 +305232,34in Ultrawide Monitor,1,379.99,2019-12-24 14:16:00,627 Forest St, Los Angeles,CA,90001 +305233,AA Batteries (4-pack),1,3.84,2019-12-17 17:56:00,904 North St, Atlanta,GA,30301 +305234,Apple Airpods Headphones,1,150.0,2019-12-21 17:06:00,902 Ridge St, Austin,TX,73301 +305235,Lightning Charging Cable,1,14.95,2019-12-28 10:56:00,784 South St, Seattle,WA,98101 +305236,AAA Batteries (4-pack),1,2.99,2019-12-13 14:24:00,434 Pine St, Dallas,TX,75001 +305237,AAA Batteries (4-pack),1,2.99,2019-12-11 09:20:00,35 8th St, New York City,NY,10001 +305238,ThinkPad Laptop,1,999.99,2019-12-07 18:01:00,807 Cedar St, Boston,MA,02215 +305239,Lightning Charging Cable,1,14.95,2019-12-18 17:30:00,155 Elm St, Dallas,TX,75001 +305240,ThinkPad Laptop,1,999.99,2019-12-22 17:30:00,985 Pine St, San Francisco,CA,94016 +305241,AA Batteries (4-pack),1,3.84,2019-12-29 12:07:00,712 11th St, Boston,MA,02215 +305242,Wired Headphones,1,11.99,2019-12-27 18:36:00,235 Jefferson St, San Francisco,CA,94016 +305243,Wired Headphones,1,11.99,2019-12-06 18:42:00,942 4th St, San Francisco,CA,94016 +305244,Lightning Charging Cable,1,14.95,2019-12-08 18:00:00,358 Madison St, Los Angeles,CA,90001 +305245,AAA Batteries (4-pack),1,2.99,2019-12-04 22:06:00,295 Sunset St, Los Angeles,CA,90001 +305246,Vareebadd Phone,1,400.0,2019-12-31 08:59:00,693 Maple St, Dallas,TX,75001 +305247,AA Batteries (4-pack),1,3.84,2019-12-27 18:06:00,139 Chestnut St, San Francisco,CA,94016 +305248,USB-C Charging Cable,1,11.95,2019-12-25 15:37:00,765 8th St, Seattle,WA,98101 +305249,AAA Batteries (4-pack),3,2.99,2019-12-03 11:11:00,961 1st St, Boston,MA,02215 +305250,USB-C Charging Cable,1,11.95,2019-12-02 17:36:00,909 12th St, Portland,ME,04101 +305251,Lightning Charging Cable,1,14.95,2019-12-04 21:42:00,712 Maple St, Los Angeles,CA,90001 +305252,Apple Airpods Headphones,1,150.0,2019-12-20 17:00:00,474 10th St, Atlanta,GA,30301 +305253,AAA Batteries (4-pack),1,2.99,2019-12-29 23:47:00,317 Pine St, Boston,MA,02215 +305254,Wired Headphones,1,11.99,2019-12-06 21:01:00,724 Elm St, Atlanta,GA,30301 +305255,USB-C Charging Cable,1,11.95,2019-12-05 14:42:00,474 Sunset St, Boston,MA,02215 +305256,AAA Batteries (4-pack),3,2.99,2019-12-31 00:34:00,311 Maple St, San Francisco,CA,94016 +305257,Apple Airpods Headphones,1,150.0,2019-12-01 20:38:00,932 Cherry St, Austin,TX,73301 +305258,AA Batteries (4-pack),1,3.84,2019-12-14 07:15:00,88 Pine St, New York City,NY,10001 +305258,AAA Batteries (4-pack),2,2.99,2019-12-14 07:15:00,88 Pine St, New York City,NY,10001 +305259,iPhone,1,700.0,2019-12-22 18:58:00,467 Center St, Boston,MA,02215 +305259,Wired Headphones,1,11.99,2019-12-22 18:58:00,467 Center St, Boston,MA,02215 +305260,USB-C Charging Cable,1,11.95,2019-12-01 10:49:00,227 14th St, Portland,OR,97035 +305261,AA Batteries (4-pack),1,3.84,2019-12-17 16:04:00,44 South St, Dallas,TX,75001 +305262,AA Batteries (4-pack),1,3.84,2019-12-15 07:24:00,998 Meadow St, Portland,OR,97035 +305263,AAA Batteries (4-pack),1,2.99,2019-12-13 20:02:00,475 Meadow St, San Francisco,CA,94016 +305264,Apple Airpods Headphones,1,150.0,2019-12-30 18:58:00,785 Elm St, San Francisco,CA,94016 +305265,34in Ultrawide Monitor,1,379.99,2019-12-15 13:10:00,178 Elm St, Atlanta,GA,30301 +305266,Lightning Charging Cable,1,14.95,2019-12-08 20:42:00,540 5th St, Dallas,TX,75001 +305267,USB-C Charging Cable,1,11.95,2019-12-01 16:35:00,362 Willow St, San Francisco,CA,94016 +305268,iPhone,1,700.0,2019-12-22 22:20:00,516 Lincoln St, Los Angeles,CA,90001 +305269,27in FHD Monitor,1,149.99,2019-12-09 09:21:00,77 Jefferson St, Seattle,WA,98101 +305270,AA Batteries (4-pack),1,3.84,2019-12-16 16:06:00,543 5th St, San Francisco,CA,94016 +305271,AAA Batteries (4-pack),1,2.99,2019-12-22 22:30:00,386 13th St, San Francisco,CA,94016 +305272,Lightning Charging Cable,1,14.95,2019-12-14 20:54:00,847 Lakeview St, San Francisco,CA,94016 +305273,Macbook Pro Laptop,1,1700.0,2019-12-28 14:09:00,236 10th St, San Francisco,CA,94016 +305274,Wired Headphones,1,11.99,2019-12-02 19:28:00,322 Center St, San Francisco,CA,94016 +305275,iPhone,1,700.0,2019-12-11 18:50:00,940 Cedar St, Atlanta,GA,30301 +305276,Lightning Charging Cable,1,14.95,2019-12-15 19:37:00,883 Forest St, Dallas,TX,75001 +305277,AA Batteries (4-pack),1,3.84,2019-12-28 20:30:00,518 10th St, Los Angeles,CA,90001 +305278,USB-C Charging Cable,1,11.95,2019-12-13 11:29:00,983 Maple St, Los Angeles,CA,90001 +305279,USB-C Charging Cable,1,11.95,2019-12-04 17:19:00,427 Adams St, San Francisco,CA,94016 +305280,AA Batteries (4-pack),1,3.84,2019-12-29 16:30:00,177 Adams St, Portland,OR,97035 +305281,Apple Airpods Headphones,1,150.0,2019-12-09 08:19:00,721 Hickory St, San Francisco,CA,94016 +305282,USB-C Charging Cable,1,11.95,2019-12-22 14:01:00,788 Wilson St, Portland,ME,04101 +305283,Apple Airpods Headphones,1,150.0,2019-12-21 07:38:00,707 Cedar St, Los Angeles,CA,90001 +305284,AAA Batteries (4-pack),1,2.99,2019-12-03 15:43:00,782 Sunset St, New York City,NY,10001 +305285,USB-C Charging Cable,1,11.95,2019-12-12 12:26:00,691 Jefferson St, Portland,OR,97035 +305286,AAA Batteries (4-pack),1,2.99,2019-12-17 19:01:00,818 13th St, Seattle,WA,98101 +305287,Lightning Charging Cable,1,14.95,2019-12-08 17:56:00,393 Washington St, Austin,TX,73301 +305288,AAA Batteries (4-pack),4,2.99,2019-12-22 19:28:00,844 South St, Dallas,TX,75001 +305289,Apple Airpods Headphones,1,150.0,2019-12-09 07:35:00,529 South St, San Francisco,CA,94016 +305290,Bose SoundSport Headphones,1,99.99,2019-12-18 17:58:00,803 North St, San Francisco,CA,94016 +305291,20in Monitor,1,109.99,2019-12-29 14:06:00,995 Adams St, Portland,ME,04101 +305292,Bose SoundSport Headphones,1,99.99,2019-12-05 20:00:00,421 Lincoln St, New York City,NY,10001 +305293,Wired Headphones,1,11.99,2019-12-03 16:09:00,147 Cedar St, Dallas,TX,75001 +305294,Wired Headphones,1,11.99,2019-12-26 17:34:00,891 Willow St, San Francisco,CA,94016 +305295,Google Phone,1,600.0,2019-12-23 20:59:00,618 Elm St, San Francisco,CA,94016 +305296,AAA Batteries (4-pack),1,2.99,2019-12-30 16:35:00,858 Willow St, Dallas,TX,75001 +305297,ThinkPad Laptop,1,999.99,2019-12-20 08:00:00,732 10th St, Austin,TX,73301 +305298,USB-C Charging Cable,1,11.95,2019-12-27 17:47:00,701 Lincoln St, San Francisco,CA,94016 +305299,AAA Batteries (4-pack),1,2.99,2019-12-06 18:43:00,723 Madison St, Boston,MA,02215 +305300,AAA Batteries (4-pack),1,2.99,2019-12-08 11:50:00,420 5th St, San Francisco,CA,94016 +305301,20in Monitor,1,109.99,2019-12-10 06:34:00,582 South St, Portland,OR,97035 +305302,iPhone,1,700.0,2019-12-26 08:58:00,49 Cherry St, Boston,MA,02215 +305303,Macbook Pro Laptop,1,1700.0,2019-12-07 20:59:00,585 Elm St, Dallas,TX,75001 +305304,Google Phone,1,600.0,2019-12-30 20:18:00,524 2nd St, Los Angeles,CA,90001 +305305,Macbook Pro Laptop,1,1700.0,2019-12-29 08:48:00,814 West St, Los Angeles,CA,90001 +305306,Lightning Charging Cable,2,14.95,2019-12-20 16:46:00,135 Madison St, Los Angeles,CA,90001 +305307,27in FHD Monitor,1,149.99,2019-12-18 13:46:00,397 Johnson St, San Francisco,CA,94016 +305308,Macbook Pro Laptop,1,1700.0,2019-12-25 17:33:00,843 Main St, Boston,MA,02215 +305309,USB-C Charging Cable,2,11.95,2019-12-01 21:32:00,73 Hill St, Boston,MA,02215 +305310,USB-C Charging Cable,1,11.95,2019-12-16 20:15:00,408 Cherry St, Portland,OR,97035 +305311,27in FHD Monitor,1,149.99,2019-12-10 21:08:00,833 Jefferson St, Dallas,TX,75001 +305312,Wired Headphones,1,11.99,2019-12-23 16:21:00,385 River St, San Francisco,CA,94016 +305313,Wired Headphones,1,11.99,2019-12-03 23:11:00,75 13th St, Los Angeles,CA,90001 +305314,USB-C Charging Cable,1,11.95,2019-12-03 21:13:00,711 Lakeview St, Dallas,TX,75001 +305315,USB-C Charging Cable,1,11.95,2019-12-06 12:10:00,638 Main St, Boston,MA,02215 +305316,Wired Headphones,1,11.99,2019-12-10 17:06:00,957 Cedar St, San Francisco,CA,94016 +305316,USB-C Charging Cable,1,11.95,2019-12-10 17:06:00,957 Cedar St, San Francisco,CA,94016 +305317,Wired Headphones,1,11.99,2019-12-10 14:21:00,554 West St, Los Angeles,CA,90001 +305318,34in Ultrawide Monitor,1,379.99,2019-12-29 18:19:00,863 12th St, New York City,NY,10001 +305319,USB-C Charging Cable,1,11.95,2019-12-31 05:26:00,620 Forest St, Seattle,WA,98101 +305320,AAA Batteries (4-pack),1,2.99,2019-12-21 22:27:00,291 5th St, Los Angeles,CA,90001 +305321,Apple Airpods Headphones,1,150.0,2019-12-22 13:10:00,952 9th St, Dallas,TX,75001 +305322,27in FHD Monitor,1,149.99,2019-12-08 10:58:00,397 Maple St, Boston,MA,02215 +305323,Bose SoundSport Headphones,1,99.99,2019-12-02 15:39:00,801 Chestnut St, San Francisco,CA,94016 +305324,Lightning Charging Cable,1,14.95,2019-12-08 12:40:00,204 1st St, Portland,OR,97035 +305325,Google Phone,1,600.0,2019-12-15 14:16:00,712 Forest St, New York City,NY,10001 +305325,USB-C Charging Cable,1,11.95,2019-12-15 14:16:00,712 Forest St, New York City,NY,10001 +305326,iPhone,1,700.0,2019-12-06 17:52:00,877 Lake St, Seattle,WA,98101 +305327,27in FHD Monitor,1,149.99,2019-12-29 23:08:00,792 13th St, Boston,MA,02215 +305328,AA Batteries (4-pack),1,3.84,2019-12-28 23:58:00,676 Park St, Atlanta,GA,30301 +305329,Wired Headphones,1,11.99,2019-12-10 16:57:00,373 Park St, Atlanta,GA,30301 +305330,Bose SoundSport Headphones,1,99.99,2019-12-23 07:17:00,446 Dogwood St, Los Angeles,CA,90001 +305331,USB-C Charging Cable,2,11.95,2019-12-24 20:04:00,628 Willow St, San Francisco,CA,94016 +305332,27in FHD Monitor,1,149.99,2019-12-17 20:32:00,848 Hill St, Los Angeles,CA,90001 +305333,AAA Batteries (4-pack),1,2.99,2019-12-23 09:53:00,437 8th St, Austin,TX,73301 +305333,Apple Airpods Headphones,1,150.0,2019-12-23 09:53:00,437 8th St, Austin,TX,73301 +305334,AAA Batteries (4-pack),2,2.99,2019-12-31 17:31:00,450 4th St, San Francisco,CA,94016 +305335,AA Batteries (4-pack),1,3.84,2019-12-03 11:22:00,89 Elm St, Boston,MA,02215 +305336,Apple Airpods Headphones,1,150.0,2019-12-11 16:50:00,303 Pine St, Austin,TX,73301 +305337,Bose SoundSport Headphones,1,99.99,2019-12-26 06:01:00,331 9th St, Boston,MA,02215 +305338,Bose SoundSport Headphones,1,99.99,2019-12-07 19:59:00,605 1st St, San Francisco,CA,94016 +305339,Google Phone,1,600.0,2019-12-07 20:17:00,658 River St, New York City,NY,10001 +305339,Wired Headphones,1,11.99,2019-12-07 20:17:00,658 River St, New York City,NY,10001 +305340,Bose SoundSport Headphones,1,99.99,2019-12-31 00:06:00,737 Walnut St, Seattle,WA,98101 +305341,Lightning Charging Cable,1,14.95,2019-12-19 06:29:00,9 6th St, Seattle,WA,98101 +305341,AA Batteries (4-pack),2,3.84,2019-12-19 06:29:00,9 6th St, Seattle,WA,98101 +305342,USB-C Charging Cable,1,11.95,2019-12-04 20:25:00,123 Washington St, Los Angeles,CA,90001 +305343,Wired Headphones,1,11.99,2019-12-21 18:15:00,273 8th St, Austin,TX,73301 +305344,Lightning Charging Cable,1,14.95,2019-12-31 23:07:00,746 Chestnut St, Seattle,WA,98101 +305345,Flatscreen TV,1,300.0,2019-12-19 18:37:00,327 Madison St, Los Angeles,CA,90001 +305346,USB-C Charging Cable,1,11.95,2019-12-04 08:49:00,494 2nd St, Atlanta,GA,30301 +305347,Apple Airpods Headphones,1,150.0,2019-12-03 18:43:00,736 Jefferson St, Los Angeles,CA,90001 +305348,AA Batteries (4-pack),1,3.84,2019-12-20 12:54:00,834 Maple St, Los Angeles,CA,90001 +305349,Wired Headphones,1,11.99,2019-12-24 13:09:00,311 Willow St, Los Angeles,CA,90001 +305350,Lightning Charging Cable,1,14.95,2019-12-19 12:42:00,587 9th St, Los Angeles,CA,90001 +305351,Apple Airpods Headphones,1,150.0,2019-12-22 16:37:00,50 11th St, San Francisco,CA,94016 +305351,Google Phone,1,600.0,2019-12-22 16:37:00,50 11th St, San Francisco,CA,94016 +305352,34in Ultrawide Monitor,1,379.99,2019-12-25 15:28:00,539 Main St, San Francisco,CA,94016 +305353,AA Batteries (4-pack),1,3.84,2019-12-01 09:39:00,657 Willow St, Portland,OR,97035 +305354,USB-C Charging Cable,1,11.95,2019-12-03 16:13:00,933 Church St, Austin,TX,73301 +305355,Wired Headphones,1,11.99,2019-12-13 10:14:00,431 South St, New York City,NY,10001 +305356,AA Batteries (4-pack),3,3.84,2019-12-23 08:54:00,462 Elm St, New York City,NY,10001 +305357,Lightning Charging Cable,1,14.95,2019-12-20 18:40:00,659 Jackson St, Los Angeles,CA,90001 +305358,Wired Headphones,1,11.99,2019-12-01 11:58:00,458 9th St, Los Angeles,CA,90001 +305359,USB-C Charging Cable,1,11.95,2019-12-03 16:08:00,104 Jackson St, San Francisco,CA,94016 +305360,USB-C Charging Cable,1,11.95,2019-12-21 17:04:00,443 Wilson St, San Francisco,CA,94016 +305361,USB-C Charging Cable,1,11.95,2019-12-18 22:22:00,69 Wilson St, San Francisco,CA,94016 +305362,Wired Headphones,1,11.99,2019-12-14 18:19:00,943 4th St, Atlanta,GA,30301 +305363,ThinkPad Laptop,1,999.99,2019-12-03 15:10:00,212 Hill St, San Francisco,CA,94016 +305364,iPhone,1,700.0,2019-12-08 12:25:00,627 14th St, Boston,MA,02215 +305365,Bose SoundSport Headphones,1,99.99,2019-12-27 21:25:00,58 Dogwood St, Seattle,WA,98101 +305366,AA Batteries (4-pack),1,3.84,2019-12-20 16:19:00,634 Lincoln St, Boston,MA,02215 +305367,Lightning Charging Cable,2,14.95,2019-12-11 11:51:00,636 6th St, New York City,NY,10001 +305368,USB-C Charging Cable,1,11.95,2019-12-05 15:25:00,64 Lincoln St, San Francisco,CA,94016 +305369,AAA Batteries (4-pack),2,2.99,2019-12-20 12:48:00,137 Cherry St, Seattle,WA,98101 +305370,AA Batteries (4-pack),3,3.84,2019-12-04 12:45:00,156 Dogwood St, San Francisco,CA,94016 +305371,Wired Headphones,1,11.99,2019-12-21 12:38:00,514 12th St, New York City,NY,10001 +305372,USB-C Charging Cable,1,11.95,2019-12-25 19:47:00,885 West St, San Francisco,CA,94016 +305373,27in 4K Gaming Monitor,1,389.99,2019-12-23 17:24:00,493 4th St, Los Angeles,CA,90001 +305374,Lightning Charging Cable,1,14.95,2019-12-27 13:54:00,922 5th St, Portland,ME,04101 +305375,Lightning Charging Cable,1,14.95,2019-12-14 13:13:00,899 Wilson St, San Francisco,CA,94016 +305376,Apple Airpods Headphones,1,150.0,2019-12-27 19:11:00,718 10th St, New York City,NY,10001 +305377,AAA Batteries (4-pack),1,2.99,2019-12-28 18:26:00,920 2nd St, Dallas,TX,75001 +305378,Apple Airpods Headphones,1,150.0,2019-12-19 10:03:00,645 West St, Austin,TX,73301 +305379,AAA Batteries (4-pack),1,2.99,2019-12-07 11:32:00,575 Lincoln St, San Francisco,CA,94016 +305380,ThinkPad Laptop,1,999.99,2019-12-27 19:13:00,25 Meadow St, New York City,NY,10001 +305381,Flatscreen TV,1,300.0,2019-12-11 00:28:00,387 Church St, New York City,NY,10001 +305382,27in FHD Monitor,1,149.99,2019-12-05 21:14:00,996 Ridge St, Boston,MA,02215 +305382,Apple Airpods Headphones,1,150.0,2019-12-05 21:14:00,996 Ridge St, Boston,MA,02215 +305383,Vareebadd Phone,1,400.0,2019-12-24 19:54:00,192 2nd St, Boston,MA,02215 +305384,USB-C Charging Cable,1,11.95,2019-12-11 16:11:00,307 River St, San Francisco,CA,94016 +305385,27in FHD Monitor,1,149.99,2019-12-07 14:16:00,827 Johnson St, Boston,MA,02215 +305386,Bose SoundSport Headphones,1,99.99,2019-12-03 19:26:00,658 5th St, Austin,TX,73301 +305387,AAA Batteries (4-pack),1,2.99,2019-12-15 18:31:00,947 11th St, Boston,MA,02215 +305388,Bose SoundSport Headphones,1,99.99,2019-12-25 21:22:00,351 13th St, San Francisco,CA,94016 +305389,Wired Headphones,1,11.99,2019-12-17 12:35:00,731 6th St, Seattle,WA,98101 +305390,Lightning Charging Cable,1,14.95,2019-12-05 16:59:00,601 Lakeview St, Atlanta,GA,30301 +305391,AAA Batteries (4-pack),1,2.99,2019-12-18 08:15:00,465 Maple St, San Francisco,CA,94016 +305392,AA Batteries (4-pack),1,3.84,2019-12-27 09:45:00,867 7th St, Dallas,TX,75001 +305393,Lightning Charging Cable,1,14.95,2019-12-12 09:52:00,10 Walnut St, Dallas,TX,75001 +305394,USB-C Charging Cable,1,11.95,2019-12-19 07:53:00,838 Cedar St, Dallas,TX,75001 +305395,Flatscreen TV,1,300.0,2019-12-19 19:03:00,692 Hickory St, Los Angeles,CA,90001 +305396,Flatscreen TV,1,300.0,2019-12-23 17:26:00,474 8th St, Dallas,TX,75001 +305397,USB-C Charging Cable,1,11.95,2019-12-30 15:27:00,497 10th St, New York City,NY,10001 +305398,AAA Batteries (4-pack),1,2.99,2019-12-29 15:48:00,843 West St, Portland,OR,97035 +305399,AA Batteries (4-pack),1,3.84,2019-12-02 13:19:00,748 Jefferson St, New York City,NY,10001 +305400,34in Ultrawide Monitor,1,379.99,2019-12-05 06:40:00,491 Jefferson St, Los Angeles,CA,90001 +305401,Apple Airpods Headphones,1,150.0,2019-12-07 21:24:00,537 10th St, Dallas,TX,75001 +305402,ThinkPad Laptop,1,999.99,2019-12-10 20:29:00,538 9th St, New York City,NY,10001 +305403,Google Phone,1,600.0,2019-12-19 13:14:00,209 Hill St, Austin,TX,73301 +305404,AA Batteries (4-pack),3,3.84,2019-12-14 14:40:00,762 Spruce St, Portland,ME,04101 +305405,Apple Airpods Headphones,1,150.0,2019-12-31 12:02:00,966 Meadow St, Dallas,TX,75001 +305406,USB-C Charging Cable,1,11.95,2019-12-20 23:24:00,824 Adams St, New York City,NY,10001 +305407,AAA Batteries (4-pack),2,2.99,2019-12-26 23:41:00,695 Lake St, New York City,NY,10001 +305408,Bose SoundSport Headphones,1,99.99,2019-12-20 19:52:00,397 11th St, San Francisco,CA,94016 +305409,27in FHD Monitor,1,149.99,2019-12-19 11:53:00,941 Pine St, New York City,NY,10001 +305410,Flatscreen TV,1,300.0,2019-12-18 21:20:00,90 Hill St, Boston,MA,02215 +305411,AA Batteries (4-pack),1,3.84,2019-12-26 22:08:00,489 Elm St, San Francisco,CA,94016 +305412,27in FHD Monitor,1,149.99,2019-12-24 08:58:00,278 Wilson St, New York City,NY,10001 +305413,Wired Headphones,2,11.99,2019-12-02 22:16:00,550 4th St, San Francisco,CA,94016 +305414,USB-C Charging Cable,1,11.95,2019-12-30 17:15:00,596 9th St, Los Angeles,CA,90001 +305415,AA Batteries (4-pack),1,3.84,2019-12-14 21:38:00,118 Sunset St, San Francisco,CA,94016 +305416,AA Batteries (4-pack),2,3.84,2019-12-22 17:15:00,343 1st St, San Francisco,CA,94016 +305417,AAA Batteries (4-pack),2,2.99,2019-12-11 22:44:00,560 Park St, Seattle,WA,98101 +305418,Macbook Pro Laptop,1,1700.0,2019-12-03 13:48:00,21 Chestnut St, Portland,OR,97035 +305419,27in 4K Gaming Monitor,1,389.99,2019-12-02 13:53:00,635 Lincoln St, Los Angeles,CA,90001 +305420,AA Batteries (4-pack),1,3.84,2019-12-31 21:58:00,6 Ridge St, San Francisco,CA,94016 +305421,Macbook Pro Laptop,1,1700.0,2019-12-29 16:16:00,898 West St, Atlanta,GA,30301 +305422,Wired Headphones,1,11.99,2019-12-20 19:51:00,730 River St, Los Angeles,CA,90001 +305423,Wired Headphones,1,11.99,2019-12-31 10:58:00,702 Chestnut St, San Francisco,CA,94016 +305424,Apple Airpods Headphones,1,150.0,2019-12-23 10:48:00,949 14th St, Atlanta,GA,30301 +305425,Google Phone,1,600.0,2019-12-24 12:27:00,179 5th St, San Francisco,CA,94016 +305426,Lightning Charging Cable,1,14.95,2019-12-30 00:04:00,666 Jefferson St, New York City,NY,10001 +305427,AA Batteries (4-pack),2,3.84,2019-12-16 06:29:00,794 Church St, San Francisco,CA,94016 +305428,Bose SoundSport Headphones,1,99.99,2019-12-19 17:57:00,96 South St, San Francisco,CA,94016 +305429,Lightning Charging Cable,1,14.95,2019-12-13 17:57:00,108 Church St, Seattle,WA,98101 +305430,27in FHD Monitor,1,149.99,2019-12-21 18:34:00,528 Lincoln St, New York City,NY,10001 +305431,Wired Headphones,1,11.99,2019-12-12 23:54:00,499 Madison St, Austin,TX,73301 +305432,Lightning Charging Cable,1,14.95,2019-12-24 21:12:00,931 Dogwood St, San Francisco,CA,94016 +305433,AA Batteries (4-pack),1,3.84,2019-12-14 11:29:00,473 10th St, Dallas,TX,75001 +305434,AAA Batteries (4-pack),1,2.99,2019-12-06 18:40:00,984 Pine St, Boston,MA,02215 +305435,Lightning Charging Cable,2,14.95,2019-12-23 06:48:00,471 Jefferson St, Atlanta,GA,30301 +305436,Lightning Charging Cable,1,14.95,2019-12-26 22:10:00,591 Adams St, Los Angeles,CA,90001 +305437,AA Batteries (4-pack),2,3.84,2019-12-09 13:12:00,57 Center St, San Francisco,CA,94016 +305438,Macbook Pro Laptop,1,1700.0,2019-12-10 19:46:00,366 5th St, Los Angeles,CA,90001 +305438,27in FHD Monitor,1,149.99,2019-12-10 19:46:00,366 5th St, Los Angeles,CA,90001 +305439,ThinkPad Laptop,1,999.99,2019-12-09 09:11:00,982 South St, New York City,NY,10001 +305440,Macbook Pro Laptop,1,1700.0,2019-12-28 15:04:00,712 8th St, New York City,NY,10001 +305441,ThinkPad Laptop,1,999.99,2019-12-03 22:00:00,588 Main St, Portland,OR,97035 +305442,Wired Headphones,1,11.99,2019-12-31 18:04:00,737 Jackson St, San Francisco,CA,94016 +305443,Apple Airpods Headphones,1,150.0,2019-12-15 23:08:00,12 Walnut St, New York City,NY,10001 +305444,Lightning Charging Cable,1,14.95,2019-12-28 20:35:00,45 Willow St, Atlanta,GA,30301 +305445,Lightning Charging Cable,1,14.95,2019-12-14 18:46:00,910 Forest St, San Francisco,CA,94016 +305446,AAA Batteries (4-pack),1,2.99,2019-12-08 11:16:00,768 Wilson St, New York City,NY,10001 +305447,AA Batteries (4-pack),1,3.84,2019-12-03 11:18:00,116 9th St, Boston,MA,02215 +305448,Wired Headphones,1,11.99,2019-12-19 07:06:00,17 Church St, San Francisco,CA,94016 +305449,USB-C Charging Cable,1,11.95,2019-12-08 14:20:00,375 South St, Los Angeles,CA,90001 +305450,Apple Airpods Headphones,1,150.0,2019-12-17 22:03:00,696 Sunset St, Dallas,TX,75001 +305451,Macbook Pro Laptop,1,1700.0,2019-12-28 18:22:00,470 Walnut St, San Francisco,CA,94016 +305452,AAA Batteries (4-pack),5,2.99,2019-12-16 07:04:00,308 Walnut St, New York City,NY,10001 +305453,USB-C Charging Cable,1,11.95,2019-12-08 14:23:00,400 Adams St, Los Angeles,CA,90001 +305454,AAA Batteries (4-pack),1,2.99,2019-12-24 00:15:00,891 Cedar St, Los Angeles,CA,90001 +305455,27in FHD Monitor,1,149.99,2019-12-16 17:36:00,392 Madison St, Portland,OR,97035 +305456,USB-C Charging Cable,1,11.95,2019-12-09 07:40:00,613 Jackson St, Seattle,WA,98101 +305457,Lightning Charging Cable,1,14.95,2019-12-13 08:32:00,650 7th St, New York City,NY,10001 +305458,AAA Batteries (4-pack),2,2.99,2019-12-23 17:55:00,354 6th St, New York City,NY,10001 +305459,AAA Batteries (4-pack),1,2.99,2019-12-24 19:13:00,864 West St, Dallas,TX,75001 +305460,AA Batteries (4-pack),2,3.84,2019-12-08 18:55:00,859 Cherry St, New York City,NY,10001 +305461,AAA Batteries (4-pack),1,2.99,2019-12-05 18:22:00,826 Spruce St, Portland,OR,97035 +305462,Apple Airpods Headphones,1,150.0,2019-12-18 05:43:00,826 10th St, San Francisco,CA,94016 +305463,Apple Airpods Headphones,1,150.0,2019-12-16 18:42:00,7 Park St, San Francisco,CA,94016 +305464,Wired Headphones,2,11.99,2019-12-15 12:42:00,927 Ridge St, Boston,MA,02215 +305465,Wired Headphones,1,11.99,2019-12-28 17:28:00,939 14th St, San Francisco,CA,94016 +305466,AA Batteries (4-pack),2,3.84,2019-12-07 21:54:00,423 Lake St, New York City,NY,10001 +305467,AA Batteries (4-pack),1,3.84,2019-12-10 06:05:00,547 South St, Los Angeles,CA,90001 +305468,AAA Batteries (4-pack),2,2.99,2019-12-20 16:29:00,604 Jackson St, Dallas,TX,75001 +305469,ThinkPad Laptop,1,999.99,2019-12-29 18:07:00,372 Willow St, San Francisco,CA,94016 +305470,Apple Airpods Headphones,1,150.0,2019-12-20 21:27:00,45 Highland St, San Francisco,CA,94016 +305471,Apple Airpods Headphones,1,150.0,2019-12-06 22:30:00,909 11th St, Los Angeles,CA,90001 +305472,Wired Headphones,1,11.99,2019-12-25 10:00:00,499 Jackson St, Austin,TX,73301 +305473,Bose SoundSport Headphones,1,99.99,2019-12-11 22:08:00,719 2nd St, New York City,NY,10001 +305474,27in FHD Monitor,1,149.99,2019-12-11 14:35:00,187 Washington St, San Francisco,CA,94016 +305475,AA Batteries (4-pack),3,3.84,2019-12-14 20:19:00,834 Main St, San Francisco,CA,94016 +305476,Flatscreen TV,1,300.0,2019-12-27 11:51:00,255 Center St, Dallas,TX,75001 +305477,AAA Batteries (4-pack),2,2.99,2019-12-10 01:30:00,39 Adams St, San Francisco,CA,94016 +305478,iPhone,1,700.0,2019-12-06 11:52:00,372 Lincoln St, Dallas,TX,75001 +305479,Lightning Charging Cable,1,14.95,2019-12-28 13:54:00,666 Chestnut St, San Francisco,CA,94016 +305480,27in 4K Gaming Monitor,1,389.99,2019-12-24 10:31:00,509 Elm St, Dallas,TX,75001 +305481,Vareebadd Phone,1,400.0,2019-12-31 10:05:00,69 Chestnut St, Los Angeles,CA,90001 +305482,Google Phone,1,600.0,2019-12-10 12:25:00,229 Johnson St, San Francisco,CA,94016 +305483,27in FHD Monitor,1,149.99,2019-12-26 08:33:00,61 South St, Los Angeles,CA,90001 +305484,Apple Airpods Headphones,1,150.0,2019-12-22 00:46:00,426 Main St, Boston,MA,02215 +305485,Macbook Pro Laptop,1,1700.0,2019-12-20 05:48:00,971 Maple St, New York City,NY,10001 +305486,Apple Airpods Headphones,1,150.0,2019-12-01 19:31:00,896 Jefferson St, Seattle,WA,98101 +305487,USB-C Charging Cable,1,11.95,2019-12-25 09:14:00,836 Dogwood St, Boston,MA,02215 +305488,USB-C Charging Cable,1,11.95,2019-12-13 22:53:00,278 Lakeview St, Atlanta,GA,30301 +305489,Macbook Pro Laptop,1,1700.0,2019-12-29 20:21:00,933 Adams St, Atlanta,GA,30301 +305490,AAA Batteries (4-pack),1,2.99,2019-12-07 06:55:00,328 2nd St, Boston,MA,02215 +305491,Wired Headphones,1,11.99,2019-12-25 10:18:00,378 14th St, San Francisco,CA,94016 +305492,USB-C Charging Cable,1,11.95,2019-12-29 20:56:00,434 Adams St, Portland,OR,97035 +305493,USB-C Charging Cable,1,11.95,2019-12-30 18:40:00,775 Lincoln St, New York City,NY,10001 +305494,USB-C Charging Cable,1,11.95,2019-12-15 22:22:00,10 10th St, New York City,NY,10001 +305495,Wired Headphones,1,11.99,2019-12-17 12:21:00,151 Maple St, Austin,TX,73301 +305496,Apple Airpods Headphones,1,150.0,2019-12-21 18:37:00,416 Washington St, Atlanta,GA,30301 +305497,USB-C Charging Cable,1,11.95,2019-12-27 09:56:00,764 Hill St, Dallas,TX,75001 +305498,AAA Batteries (4-pack),2,2.99,2019-12-08 09:58:00,696 12th St, Los Angeles,CA,90001 +305498,iPhone,1,700.0,2019-12-08 09:58:00,696 12th St, Los Angeles,CA,90001 +305499,Lightning Charging Cable,1,14.95,2019-12-02 08:53:00,398 13th St, Atlanta,GA,30301 +305500,Wired Headphones,1,11.99,2019-12-30 10:32:00,962 Maple St, New York City,NY,10001 +305501,iPhone,1,700.0,2019-12-01 21:16:00,330 Willow St, Portland,ME,04101 +305502,AAA Batteries (4-pack),1,2.99,2019-12-16 21:08:00,920 1st St, Atlanta,GA,30301 +305503,AAA Batteries (4-pack),1,2.99,2019-12-28 19:21:00,947 Highland St, New York City,NY,10001 +305504,USB-C Charging Cable,1,11.95,2019-12-07 12:01:00,847 Lincoln St, Austin,TX,73301 +305505,USB-C Charging Cable,1,11.95,2019-12-14 18:30:00,276 Ridge St, Dallas,TX,75001 +305506,USB-C Charging Cable,1,11.95,2019-12-25 16:20:00,999 11th St, San Francisco,CA,94016 +305507,Google Phone,1,600.0,2019-12-16 14:16:00,846 Sunset St, San Francisco,CA,94016 +305508,Bose SoundSport Headphones,1,99.99,2019-12-06 17:00:00,420 West St, San Francisco,CA,94016 +305509,Bose SoundSport Headphones,1,99.99,2019-12-30 20:22:00,936 11th St, Boston,MA,02215 +305510,Bose SoundSport Headphones,1,99.99,2019-12-04 15:26:00,16 Hill St, Atlanta,GA,30301 +305511,Lightning Charging Cable,1,14.95,2019-12-12 18:01:00,66 West St, Los Angeles,CA,90001 +305512,27in 4K Gaming Monitor,1,389.99,2019-12-27 12:44:00,466 Main St, New York City,NY,10001 +305513,AAA Batteries (4-pack),1,2.99,2019-12-02 21:06:00,406 2nd St, San Francisco,CA,94016 +305514,Lightning Charging Cable,1,14.95,2019-12-01 20:26:00,492 Lincoln St, Portland,OR,97035 +305515,Lightning Charging Cable,1,14.95,2019-12-14 18:58:00,403 Jefferson St, Portland,OR,97035 +305516,34in Ultrawide Monitor,1,379.99,2019-12-24 14:00:00,27 Madison St, Los Angeles,CA,90001 +305517,AA Batteries (4-pack),1,3.84,2019-12-17 14:26:00,509 1st St, Seattle,WA,98101 +305518,Apple Airpods Headphones,1,150.0,2019-12-09 10:42:00,480 8th St, San Francisco,CA,94016 +305519,AAA Batteries (4-pack),1,2.99,2019-12-25 12:39:00,585 Lakeview St, Seattle,WA,98101 +305520,USB-C Charging Cable,1,11.95,2019-12-21 11:27:00,470 Forest St, San Francisco,CA,94016 +305521,Wired Headphones,1,11.99,2019-12-20 16:35:00,999 Maple St, San Francisco,CA,94016 +305522,Google Phone,1,600.0,2019-12-18 11:17:00,778 Hill St, Austin,TX,73301 +305523,Apple Airpods Headphones,1,150.0,2019-12-05 20:16:00,196 12th St, Portland,OR,97035 +305524,USB-C Charging Cable,1,11.95,2019-12-10 17:29:00,132 Elm St, Portland,ME,04101 +305525,USB-C Charging Cable,1,11.95,2019-12-18 20:07:00,928 5th St, Atlanta,GA,30301 +305526,USB-C Charging Cable,1,11.95,2019-12-17 13:03:00,587 10th St, Dallas,TX,75001 +305527,iPhone,1,700.0,2019-12-26 15:47:00,526 12th St, San Francisco,CA,94016 +305527,Apple Airpods Headphones,1,150.0,2019-12-26 15:47:00,526 12th St, San Francisco,CA,94016 +305528,AAA Batteries (4-pack),3,2.99,2019-12-31 07:38:00,659 Highland St, New York City,NY,10001 +305529,AAA Batteries (4-pack),2,2.99,2019-12-19 17:27:00,118 Park St, Atlanta,GA,30301 +305530,Bose SoundSport Headphones,1,99.99,2019-12-29 15:42:00,45 Ridge St, Dallas,TX,75001 +305531,AA Batteries (4-pack),4,3.84,2019-12-31 09:37:00,106 13th St, Los Angeles,CA,90001 +305532,AA Batteries (4-pack),1,3.84,2019-12-17 19:50:00,465 Forest St, San Francisco,CA,94016 +305533,Lightning Charging Cable,1,14.95,2019-12-03 16:32:00,147 River St, New York City,NY,10001 +305534,27in 4K Gaming Monitor,1,389.99,2019-12-26 15:25:00,105 North St, Los Angeles,CA,90001 +305535,AA Batteries (4-pack),1,3.84,2019-12-09 23:03:00,197 8th St, Boston,MA,02215 +305536,AA Batteries (4-pack),2,3.84,2019-12-31 18:30:00,85 Washington St, Austin,TX,73301 +305537,AA Batteries (4-pack),1,3.84,2019-12-09 20:28:00,106 14th St, Boston,MA,02215 +305538,Apple Airpods Headphones,1,150.0,2020-01-01 01:00:00,693 1st St, Portland,OR,97035 +305539,Apple Airpods Headphones,1,150.0,2019-12-19 20:21:00,944 14th St, San Francisco,CA,94016 +305540,Wired Headphones,1,11.99,2019-12-26 20:05:00,632 Forest St, San Francisco,CA,94016 +305541,AA Batteries (4-pack),1,3.84,2019-12-04 11:46:00,582 Spruce St, New York City,NY,10001 +305542,Lightning Charging Cable,1,14.95,2019-12-17 14:19:00,538 Lincoln St, New York City,NY,10001 +305543,AA Batteries (4-pack),2,3.84,2019-12-03 13:51:00,715 Forest St, New York City,NY,10001 +305544,Flatscreen TV,1,300.0,2019-12-13 22:23:00,982 Adams St, San Francisco,CA,94016 +305545,Bose SoundSport Headphones,1,99.99,2019-12-25 17:02:00,775 9th St, Boston,MA,02215 +305546,AAA Batteries (4-pack),2,2.99,2019-12-14 21:52:00,352 Cedar St, Seattle,WA,98101 +305547,iPhone,1,700.0,2019-12-06 09:07:00,395 Hill St, Seattle,WA,98101 +305548,Lightning Charging Cable,1,14.95,2019-12-04 08:22:00,551 Johnson St, San Francisco,CA,94016 +305549,20in Monitor,1,109.99,2019-12-18 18:05:00,941 Lakeview St, San Francisco,CA,94016 +305550,USB-C Charging Cable,1,11.95,2019-12-18 13:01:00,178 2nd St, Dallas,TX,75001 +305551,USB-C Charging Cable,1,11.95,2019-12-16 19:51:00,577 Meadow St, Boston,MA,02215 +305552,Google Phone,1,600.0,2019-12-08 06:11:00,897 14th St, Atlanta,GA,30301 +305553,AAA Batteries (4-pack),2,2.99,2019-12-27 19:06:00,950 Hill St, Boston,MA,02215 +305554,iPhone,1,700.0,2019-12-13 00:37:00,347 Center St, Boston,MA,02215 +305555,AAA Batteries (4-pack),2,2.99,2019-12-08 19:56:00,363 Walnut St, Boston,MA,02215 +305556,Vareebadd Phone,1,400.0,2019-12-17 21:49:00,234 Dogwood St, Portland,OR,97035 +305556,Wired Headphones,1,11.99,2019-12-17 21:49:00,234 Dogwood St, Portland,OR,97035 +305557,AAA Batteries (4-pack),1,2.99,2019-12-15 13:04:00,47 Cedar St, Portland,OR,97035 +305558,AA Batteries (4-pack),1,3.84,2019-12-15 11:11:00,295 14th St, New York City,NY,10001 +305558,Wired Headphones,1,11.99,2019-12-15 11:11:00,295 14th St, New York City,NY,10001 +305559,Lightning Charging Cable,1,14.95,2019-12-06 21:25:00,100 Hickory St, New York City,NY,10001 +305560,34in Ultrawide Monitor,1,379.99,2019-12-12 14:52:00,651 Maple St, Austin,TX,73301 +305561,27in FHD Monitor,1,149.99,2019-12-08 11:45:00,305 South St, Los Angeles,CA,90001 +305562,Wired Headphones,2,11.99,2019-12-19 08:14:00,336 Highland St, New York City,NY,10001 +305563,Lightning Charging Cable,1,14.95,2019-12-22 15:37:00,779 11th St, Seattle,WA,98101 +305564,Lightning Charging Cable,1,14.95,2019-12-10 11:52:00,312 Jefferson St, New York City,NY,10001 +305565,Bose SoundSport Headphones,1,99.99,2019-12-09 10:52:00,241 Jefferson St, Austin,TX,73301 +305566,27in FHD Monitor,1,149.99,2019-12-26 20:53:00,730 4th St, San Francisco,CA,94016 +305567,AA Batteries (4-pack),1,3.84,2019-12-25 11:26:00,590 Jefferson St, Boston,MA,02215 +305568,Bose SoundSport Headphones,1,99.99,2019-12-21 11:46:00,778 Johnson St, Los Angeles,CA,90001 +305569,Wired Headphones,1,11.99,2019-12-17 13:37:00,798 Forest St, Austin,TX,73301 +305570,USB-C Charging Cable,2,11.95,2019-12-11 14:19:00,610 Dogwood St, Los Angeles,CA,90001 +305571,Lightning Charging Cable,1,14.95,2019-12-15 09:49:00,761 1st St, Atlanta,GA,30301 +305572,AAA Batteries (4-pack),2,2.99,2019-12-27 21:16:00,257 Lincoln St, Boston,MA,02215 +305573,Flatscreen TV,1,300.0,2019-12-13 13:51:00,982 South St, Los Angeles,CA,90001 +305574,USB-C Charging Cable,1,11.95,2019-12-08 08:35:00,848 Willow St, New York City,NY,10001 +305575,ThinkPad Laptop,1,999.99,2019-12-01 20:14:00,283 Park St, Los Angeles,CA,90001 +305576,Apple Airpods Headphones,1,150.0,2019-12-13 21:38:00,663 13th St, Boston,MA,02215 +305577,Apple Airpods Headphones,1,150.0,2019-12-13 18:28:00,283 13th St, Los Angeles,CA,90001 +305578,AAA Batteries (4-pack),3,2.99,2019-12-30 16:00:00,916 West St, Boston,MA,02215 +305579,ThinkPad Laptop,1,999.99,2019-12-16 14:32:00,102 Hickory St, Los Angeles,CA,90001 +305580,Lightning Charging Cable,1,14.95,2019-12-03 10:40:00,471 Lakeview St, Boston,MA,02215 +305581,Google Phone,1,600.0,2019-12-20 17:37:00,38 Meadow St, San Francisco,CA,94016 +305581,Wired Headphones,1,11.99,2019-12-20 17:37:00,38 Meadow St, San Francisco,CA,94016 +305582,Apple Airpods Headphones,1,150.0,2019-12-04 23:16:00,260 9th St, Seattle,WA,98101 +305583,USB-C Charging Cable,1,11.95,2019-12-22 10:51:00,235 South St, Seattle,WA,98101 +305584,Lightning Charging Cable,1,14.95,2019-12-14 15:36:00,959 12th St, Boston,MA,02215 +305585,USB-C Charging Cable,1,11.95,2019-12-18 11:29:00,386 1st St, Dallas,TX,75001 +305586,Wired Headphones,1,11.99,2019-12-08 19:55:00,623 Madison St, Los Angeles,CA,90001 +305587,USB-C Charging Cable,1,11.95,2019-12-28 12:07:00,479 Park St, Portland,OR,97035 +305588,USB-C Charging Cable,1,11.95,2019-12-21 10:10:00,492 Dogwood St, Boston,MA,02215 +305589,Google Phone,1,600.0,2019-12-24 11:17:00,379 Johnson St, San Francisco,CA,94016 +305590,Apple Airpods Headphones,1,150.0,2019-12-07 19:34:00,589 Pine St, Seattle,WA,98101 +305591,AAA Batteries (4-pack),1,2.99,2019-12-07 12:56:00,636 Forest St, Austin,TX,73301 +305592,AAA Batteries (4-pack),1,2.99,2019-12-12 11:10:00,58 Willow St, Portland,ME,04101 +305593,AA Batteries (4-pack),1,3.84,2019-12-18 23:45:00,294 14th St, Atlanta,GA,30301 +305594,LG Washing Machine,1,600.0,2019-12-17 13:29:00,739 Jefferson St, San Francisco,CA,94016 +305595,Wired Headphones,1,11.99,2019-12-27 17:14:00,926 Church St, San Francisco,CA,94016 +305596,27in FHD Monitor,1,149.99,2019-12-05 13:29:00,74 Ridge St, Portland,ME,04101 +305597,Apple Airpods Headphones,1,150.0,2019-12-18 17:41:00,351 Park St, Atlanta,GA,30301 +305598,USB-C Charging Cable,1,11.95,2019-12-24 19:34:00,269 Sunset St, San Francisco,CA,94016 +305599,Flatscreen TV,1,300.0,2019-12-27 07:43:00,599 Church St, San Francisco,CA,94016 +305600,USB-C Charging Cable,1,11.95,2019-12-12 10:54:00,274 7th St, San Francisco,CA,94016 +305601,Apple Airpods Headphones,1,150.0,2019-12-03 11:18:00,814 10th St, Austin,TX,73301 +305602,AA Batteries (4-pack),1,3.84,2019-12-17 18:56:00,625 10th St, Los Angeles,CA,90001 +305603,27in FHD Monitor,1,149.99,2019-12-25 15:21:00,654 North St, Seattle,WA,98101 +305604,Apple Airpods Headphones,1,150.0,2019-12-28 02:54:00,690 Lincoln St, Los Angeles,CA,90001 +305605,Apple Airpods Headphones,1,150.0,2019-12-16 16:02:00,583 Maple St, Los Angeles,CA,90001 +305606,AA Batteries (4-pack),2,3.84,2019-12-14 21:19:00,885 Pine St, Dallas,TX,75001 +305607,Bose SoundSport Headphones,1,99.99,2019-12-04 20:01:00,400 2nd St, New York City,NY,10001 +305608,AA Batteries (4-pack),1,3.84,2019-12-21 12:43:00,61 River St, Atlanta,GA,30301 +305609,27in 4K Gaming Monitor,1,389.99,2019-12-05 10:56:00,210 Cedar St, Los Angeles,CA,90001 +305610,AA Batteries (4-pack),1,3.84,2019-12-27 17:54:00,128 South St, Dallas,TX,75001 +305611,Bose SoundSport Headphones,1,99.99,2019-12-02 08:56:00,795 River St, Boston,MA,02215 +305612,USB-C Charging Cable,1,11.95,2019-12-27 11:52:00,66 1st St, San Francisco,CA,94016 +305613,Bose SoundSport Headphones,1,99.99,2019-12-20 00:24:00,860 Pine St, Los Angeles,CA,90001 +305614,AAA Batteries (4-pack),1,2.99,2019-12-06 16:54:00,11 South St, New York City,NY,10001 +305615,Lightning Charging Cable,1,14.95,2019-12-24 17:16:00,392 Hickory St, Atlanta,GA,30301 +305616,AAA Batteries (4-pack),1,2.99,2019-12-21 16:36:00,18 Main St, Dallas,TX,75001 +305617,AAA Batteries (4-pack),1,2.99,2019-12-18 22:00:00,768 1st St, Los Angeles,CA,90001 +305618,Lightning Charging Cable,1,14.95,2019-12-08 10:50:00,735 10th St, Dallas,TX,75001 +305619,27in 4K Gaming Monitor,1,389.99,2019-12-19 17:27:00,243 Sunset St, San Francisco,CA,94016 +305620,iPhone,1,700.0,2019-12-28 17:10:00,647 Adams St, San Francisco,CA,94016 +305621,Lightning Charging Cable,1,14.95,2019-12-30 09:11:00,215 6th St, New York City,NY,10001 +305622,USB-C Charging Cable,1,11.95,2019-12-17 09:42:00,766 River St, Seattle,WA,98101 +305623,USB-C Charging Cable,1,11.95,2019-12-17 11:32:00,889 5th St, Atlanta,GA,30301 +305624,AAA Batteries (4-pack),1,2.99,2019-12-29 19:35:00,964 5th St, Boston,MA,02215 +305625,AA Batteries (4-pack),1,3.84,2019-12-04 18:20:00,305 8th St, San Francisco,CA,94016 +305626,Bose SoundSport Headphones,1,99.99,2019-12-04 22:35:00,5 6th St, Atlanta,GA,30301 +305627,Wired Headphones,1,11.99,2019-12-03 17:38:00,70 Main St, San Francisco,CA,94016 +305628,USB-C Charging Cable,1,11.95,2019-12-05 10:38:00,338 Cherry St, Atlanta,GA,30301 +305629,AAA Batteries (4-pack),1,2.99,2019-12-18 19:14:00,323 Lincoln St, Austin,TX,73301 +305630,USB-C Charging Cable,1,11.95,2019-12-20 21:22:00,475 Maple St, San Francisco,CA,94016 +305631,AAA Batteries (4-pack),2,2.99,2019-12-03 20:30:00,402 Cherry St, San Francisco,CA,94016 +305632,Apple Airpods Headphones,1,150.0,2019-12-23 20:03:00,901 5th St, San Francisco,CA,94016 +305633,Apple Airpods Headphones,1,150.0,2019-12-28 23:58:00,221 Washington St, Portland,OR,97035 +305634,Apple Airpods Headphones,1,150.0,2019-12-23 08:57:00,62 4th St, San Francisco,CA,94016 +305635,USB-C Charging Cable,1,11.95,2019-12-27 10:17:00,493 Church St, Seattle,WA,98101 +305636,Wired Headphones,1,11.99,2019-12-14 16:12:00,474 9th St, Los Angeles,CA,90001 +305637,AAA Batteries (4-pack),1,2.99,2019-12-14 16:54:00,76 Elm St, Los Angeles,CA,90001 +305638,USB-C Charging Cable,1,11.95,2019-12-19 21:44:00,246 Pine St, Dallas,TX,75001 +305639,Google Phone,1,600.0,2019-12-11 11:18:00,15 Chestnut St, Seattle,WA,98101 +305640,Macbook Pro Laptop,1,1700.0,2019-12-06 13:04:00,138 13th St, New York City,NY,10001 +305641,Wired Headphones,1,11.99,2019-12-17 02:23:00,93 4th St, Portland,OR,97035 +305642,AAA Batteries (4-pack),2,2.99,2019-12-21 14:26:00,695 Spruce St, San Francisco,CA,94016 +305643,Lightning Charging Cable,1,14.95,2019-12-06 21:14:00,861 5th St, New York City,NY,10001 +305644,34in Ultrawide Monitor,1,379.99,2019-12-19 10:58:00,694 Lake St, Dallas,TX,75001 +305645,AA Batteries (4-pack),1,3.84,2019-12-14 14:39:00,752 Highland St, San Francisco,CA,94016 +305646,Bose SoundSport Headphones,1,99.99,2019-12-17 11:54:00,427 12th St, San Francisco,CA,94016 +305647,AAA Batteries (4-pack),1,2.99,2019-12-18 15:04:00,694 Walnut St, San Francisco,CA,94016 +305648,AAA Batteries (4-pack),1,2.99,2019-12-19 15:12:00,793 Johnson St, San Francisco,CA,94016 +305649,27in FHD Monitor,1,149.99,2019-12-08 19:03:00,298 Ridge St, New York City,NY,10001 +305650,ThinkPad Laptop,1,999.99,2019-12-24 09:00:00,166 Hickory St, New York City,NY,10001 +305651,Lightning Charging Cable,1,14.95,2019-12-10 00:01:00,61 Cedar St, Portland,OR,97035 +305652,Apple Airpods Headphones,1,150.0,2019-12-04 11:43:00,960 Wilson St, Los Angeles,CA,90001 +305653,USB-C Charging Cable,1,11.95,2019-12-30 12:59:00,392 12th St, Los Angeles,CA,90001 +305654,Flatscreen TV,1,300.0,2019-12-26 14:45:00,768 Lakeview St, Los Angeles,CA,90001 +305655,AA Batteries (4-pack),1,3.84,2019-12-02 10:46:00,773 North St, San Francisco,CA,94016 +305655,Lightning Charging Cable,1,14.95,2019-12-02 10:46:00,773 North St, San Francisco,CA,94016 +305656,AAA Batteries (4-pack),1,2.99,2019-12-17 10:37:00,260 Cherry St, New York City,NY,10001 +305657,Bose SoundSport Headphones,1,99.99,2019-12-23 20:12:00,653 2nd St, Austin,TX,73301 +305658,Wired Headphones,1,11.99,2019-12-09 15:40:00,541 South St, San Francisco,CA,94016 +305659,AA Batteries (4-pack),1,3.84,2019-12-14 19:16:00,706 7th St, Austin,TX,73301 +305660,Lightning Charging Cable,1,14.95,2019-12-09 20:29:00,758 Forest St, Los Angeles,CA,90001 +305661,27in FHD Monitor,1,149.99,2019-12-19 06:33:00,164 9th St, New York City,NY,10001 +305662,Bose SoundSport Headphones,1,99.99,2019-12-21 13:09:00,389 Cedar St, New York City,NY,10001 +305663,Lightning Charging Cable,1,14.95,2019-12-05 08:42:00,595 West St, Dallas,TX,75001 +305664,Apple Airpods Headphones,1,150.0,2019-12-01 15:13:00,588 Maple St, San Francisco,CA,94016 +305665,iPhone,1,700.0,2019-12-22 23:28:00,725 Hickory St, Los Angeles,CA,90001 +305666,20in Monitor,1,109.99,2019-12-29 00:34:00,361 Lincoln St, San Francisco,CA,94016 +305667,Wired Headphones,1,11.99,2019-12-21 20:02:00,156 Ridge St, San Francisco,CA,94016 +305668,iPhone,1,700.0,2019-12-18 14:03:00,359 Jefferson St, Seattle,WA,98101 +305668,Wired Headphones,1,11.99,2019-12-18 14:03:00,359 Jefferson St, Seattle,WA,98101 +305669,USB-C Charging Cable,1,11.95,2019-12-09 09:24:00,112 Center St, Boston,MA,02215 +305670,Lightning Charging Cable,2,14.95,2019-12-19 20:17:00,659 Chestnut St, Dallas,TX,75001 +305671,Wired Headphones,1,11.99,2019-12-03 11:42:00,320 Johnson St, San Francisco,CA,94016 +305672,Bose SoundSport Headphones,1,99.99,2019-12-21 09:07:00,399 6th St, Seattle,WA,98101 +305673,Wired Headphones,1,11.99,2019-12-26 16:01:00,194 Elm St, Los Angeles,CA,90001 +305674,Apple Airpods Headphones,1,150.0,2019-12-12 12:23:00,438 4th St, San Francisco,CA,94016 +305675,AA Batteries (4-pack),1,3.84,2019-12-08 17:55:00,992 2nd St, Portland,OR,97035 +305676,27in 4K Gaming Monitor,1,389.99,2019-12-09 10:19:00,78 South St, Los Angeles,CA,90001 +305677,USB-C Charging Cable,1,11.95,2019-12-17 03:34:00,328 9th St, Boston,MA,02215 +305678,Wired Headphones,1,11.99,2019-12-05 00:38:00,481 Church St, San Francisco,CA,94016 +305679,USB-C Charging Cable,1,11.95,2019-12-17 00:35:00,656 Lakeview St, Dallas,TX,75001 +305680,Apple Airpods Headphones,1,150.0,2019-12-19 11:06:00,453 Adams St, Portland,OR,97035 +305681,ThinkPad Laptop,1,999.99,2019-12-03 16:33:00,180 Lake St, Boston,MA,02215 +305682,Lightning Charging Cable,1,14.95,2019-12-13 16:10:00,646 Center St, Portland,OR,97035 +305683,iPhone,1,700.0,2019-12-26 12:02:00,378 13th St, New York City,NY,10001 +305684,Apple Airpods Headphones,1,150.0,2019-12-28 12:52:00,107 Walnut St, Portland,OR,97035 +305685,Bose SoundSport Headphones,1,99.99,2019-12-18 16:01:00,740 1st St, Los Angeles,CA,90001 +305686,USB-C Charging Cable,1,11.95,2019-12-22 23:52:00,361 Forest St, San Francisco,CA,94016 +305687,Google Phone,1,600.0,2019-12-07 08:07:00,129 Hickory St, San Francisco,CA,94016 +305688,USB-C Charging Cable,1,11.95,2019-12-07 12:33:00,485 Cedar St, Boston,MA,02215 +305689,AA Batteries (4-pack),1,3.84,2019-12-31 11:35:00,952 Madison St, Los Angeles,CA,90001 +305690,Wired Headphones,1,11.99,2019-12-12 13:29:00,801 Madison St, New York City,NY,10001 +305691,AAA Batteries (4-pack),1,2.99,2019-12-10 13:25:00,250 2nd St, Los Angeles,CA,90001 +305692,AAA Batteries (4-pack),3,2.99,2019-12-08 13:54:00,502 12th St, Los Angeles,CA,90001 +305693,Wired Headphones,2,11.99,2019-12-30 20:20:00,43 Willow St, New York City,NY,10001 +305694,USB-C Charging Cable,1,11.95,2019-12-04 22:48:00,410 Forest St, Dallas,TX,75001 +305695,USB-C Charging Cable,1,11.95,2019-12-27 20:47:00,346 Pine St, Boston,MA,02215 +305696,27in FHD Monitor,1,149.99,2019-12-24 16:32:00,437 North St, San Francisco,CA,94016 +305696,Wired Headphones,1,11.99,2019-12-24 16:32:00,437 North St, San Francisco,CA,94016 +305697,Apple Airpods Headphones,1,150.0,2019-12-06 23:43:00,577 Walnut St, Seattle,WA,98101 +305698,Flatscreen TV,1,300.0,2019-12-19 20:22:00,639 Pine St, San Francisco,CA,94016 +305699,USB-C Charging Cable,1,11.95,2019-12-08 16:09:00,130 Ridge St, Portland,OR,97035 +305700,Bose SoundSport Headphones,1,99.99,2019-12-28 18:49:00,332 Center St, Austin,TX,73301 +305701,AAA Batteries (4-pack),3,2.99,2019-12-17 17:14:00,479 Lincoln St, Portland,OR,97035 +305702,LG Dryer,1,600.0,2019-12-05 12:10:00,269 Chestnut St, New York City,NY,10001 +305703,Google Phone,1,600.0,2019-12-25 12:03:00,64 Lake St, Dallas,TX,75001 +305703,USB-C Charging Cable,1,11.95,2019-12-25 12:03:00,64 Lake St, Dallas,TX,75001 +305704,27in 4K Gaming Monitor,1,389.99,2019-12-13 22:59:00,539 Cedar St, New York City,NY,10001 +305705,Bose SoundSport Headphones,1,99.99,2019-12-05 09:49:00,570 Maple St, San Francisco,CA,94016 +305706,Google Phone,1,600.0,2019-12-31 16:21:00,988 Lakeview St, Los Angeles,CA,90001 +305706,USB-C Charging Cable,1,11.95,2019-12-31 16:21:00,988 Lakeview St, Los Angeles,CA,90001 +305707,AAA Batteries (4-pack),1,2.99,2019-12-19 14:49:00,307 13th St, Portland,OR,97035 +305708,34in Ultrawide Monitor,1,379.99,2019-12-29 19:54:00,421 Washington St, Boston,MA,02215 +305709,27in FHD Monitor,1,149.99,2019-12-19 12:19:00,70 Madison St, Atlanta,GA,30301 +305710,Apple Airpods Headphones,1,150.0,2019-12-22 13:14:00,586 Forest St, Boston,MA,02215 +305711,27in FHD Monitor,1,149.99,2019-12-18 12:04:00,449 South St, New York City,NY,10001 +305712,Bose SoundSport Headphones,1,99.99,2019-12-06 22:01:00,966 Forest St, New York City,NY,10001 +305713,Wired Headphones,1,11.99,2019-12-27 12:51:00,578 Park St, Portland,OR,97035 +305714,ThinkPad Laptop,1,999.99,2019-12-16 10:38:00,474 Adams St, San Francisco,CA,94016 +305715,USB-C Charging Cable,1,11.95,2019-12-30 19:44:00,37 Meadow St, Atlanta,GA,30301 +305716,AA Batteries (4-pack),1,3.84,2019-12-16 16:25:00,303 Highland St, New York City,NY,10001 +305717,Lightning Charging Cable,1,14.95,2019-12-05 16:24:00,183 Meadow St, Atlanta,GA,30301 +305718,Lightning Charging Cable,1,14.95,2019-12-17 16:47:00,640 West St, San Francisco,CA,94016 +305719,20in Monitor,1,109.99,2019-12-17 05:27:00,984 8th St, Los Angeles,CA,90001 +305720,Bose SoundSport Headphones,1,99.99,2019-12-23 14:17:00,14 Lincoln St, New York City,NY,10001 +305721,AAA Batteries (4-pack),1,2.99,2019-12-06 10:32:00,629 11th St, New York City,NY,10001 +305722,Apple Airpods Headphones,1,150.0,2019-12-08 23:50:00,109 Forest St, Portland,OR,97035 +305723,Macbook Pro Laptop,1,1700.0,2019-12-24 13:16:00,947 Sunset St, Austin,TX,73301 +305724,Google Phone,1,600.0,2019-12-03 10:21:00,693 Main St, San Francisco,CA,94016 +305725,Flatscreen TV,1,300.0,2019-12-15 00:08:00,136 Highland St, Los Angeles,CA,90001 +305726,20in Monitor,1,109.99,2019-12-13 19:52:00,552 13th St, Los Angeles,CA,90001 +305727,USB-C Charging Cable,1,11.95,2019-12-03 00:57:00,874 Wilson St, New York City,NY,10001 +305728,34in Ultrawide Monitor,1,379.99,2019-12-22 18:39:00,151 Lakeview St, Atlanta,GA,30301 +305729,Wired Headphones,1,11.99,2019-12-21 19:14:00,154 Maple St, Los Angeles,CA,90001 +305730,Lightning Charging Cable,1,14.95,2019-12-20 07:06:00,757 7th St, Los Angeles,CA,90001 +305731,Wired Headphones,1,11.99,2019-12-11 22:37:00,428 Forest St, New York City,NY,10001 +305732,Bose SoundSport Headphones,1,99.99,2019-12-07 13:33:00,53 Main St, San Francisco,CA,94016 +305733,27in FHD Monitor,1,149.99,2019-12-09 18:41:00,380 10th St, Atlanta,GA,30301 +305734,34in Ultrawide Monitor,1,379.99,2019-12-16 16:04:00,480 13th St, San Francisco,CA,94016 +305735,Macbook Pro Laptop,1,1700.0,2019-12-31 18:51:00,994 Maple St, San Francisco,CA,94016 +305736,Apple Airpods Headphones,1,150.0,2019-12-14 12:46:00,729 Center St, New York City,NY,10001 +305737,AAA Batteries (4-pack),1,2.99,2019-12-12 11:41:00,40 North St, Atlanta,GA,30301 +305738,34in Ultrawide Monitor,1,379.99,2019-12-30 20:01:00,309 Spruce St, Los Angeles,CA,90001 +305739,Lightning Charging Cable,1,14.95,2019-12-10 05:05:00,162 12th St, Austin,TX,73301 +305740,27in FHD Monitor,1,149.99,2019-12-13 04:34:00,394 8th St, San Francisco,CA,94016 +305741,27in 4K Gaming Monitor,1,389.99,2019-12-16 10:43:00,479 Ridge St, San Francisco,CA,94016 +305742,Bose SoundSport Headphones,1,99.99,2019-12-10 10:12:00,309 Hill St, New York City,NY,10001 +305743,Apple Airpods Headphones,1,150.0,2019-12-22 18:41:00,842 Wilson St, Atlanta,GA,30301 +305744,iPhone,1,700.0,2019-12-04 00:51:00,463 Willow St, Los Angeles,CA,90001 +305745,Bose SoundSport Headphones,1,99.99,2019-12-22 21:56:00,725 Wilson St, Los Angeles,CA,90001 +305746,20in Monitor,1,109.99,2019-12-14 16:00:00,19 Center St, San Francisco,CA,94016 +305747,USB-C Charging Cable,1,11.95,2019-12-23 05:25:00,261 7th St, Los Angeles,CA,90001 +305748,20in Monitor,1,109.99,2019-12-22 02:26:00,482 2nd St, New York City,NY,10001 +305749,Bose SoundSport Headphones,1,99.99,2019-12-11 09:26:00,514 11th St, Boston,MA,02215 +305750,Wired Headphones,1,11.99,2019-12-24 17:10:00,47 13th St, San Francisco,CA,94016 +305751,Wired Headphones,1,11.99,2019-12-13 17:49:00,761 Washington St, Dallas,TX,75001 +305752,Apple Airpods Headphones,1,150.0,2019-12-29 21:46:00,132 Madison St, New York City,NY,10001 +305753,AAA Batteries (4-pack),1,2.99,2019-12-06 21:31:00,613 4th St, Los Angeles,CA,90001 +305754,AAA Batteries (4-pack),1,2.99,2019-12-05 12:39:00,904 Cedar St, Atlanta,GA,30301 +305755,34in Ultrawide Monitor,1,379.99,2019-12-30 08:33:00,111 Highland St, Austin,TX,73301 +305756,AA Batteries (4-pack),3,3.84,2019-12-16 13:12:00,469 2nd St, New York City,NY,10001 +305757,27in 4K Gaming Monitor,1,389.99,2019-12-02 17:36:00,232 Cherry St, Los Angeles,CA,90001 +305758,AAA Batteries (4-pack),5,2.99,2019-12-28 07:56:00,851 Spruce St, Atlanta,GA,30301 +305759,USB-C Charging Cable,1,11.95,2019-12-24 08:57:00,941 Madison St, Los Angeles,CA,90001 +305760,Lightning Charging Cable,1,14.95,2019-12-04 15:50:00,887 Elm St, Boston,MA,02215 +305761,27in 4K Gaming Monitor,1,389.99,2019-12-19 14:06:00,932 6th St, San Francisco,CA,94016 +305762,20in Monitor,1,109.99,2019-12-20 17:07:00,981 Sunset St, San Francisco,CA,94016 +305763,USB-C Charging Cable,1,11.95,2019-12-16 22:13:00,216 Elm St, Los Angeles,CA,90001 +305764,LG Dryer,1,600.0,2019-12-06 14:32:00,983 North St, Seattle,WA,98101 +305765,AAA Batteries (4-pack),1,2.99,2019-12-19 13:16:00,212 6th St, Austin,TX,73301 +305766,USB-C Charging Cable,1,11.95,2019-12-23 20:03:00,165 River St, Atlanta,GA,30301 +305767,Apple Airpods Headphones,1,150.0,2019-12-01 12:47:00,288 Johnson St, Boston,MA,02215 +305768,Bose SoundSport Headphones,1,99.99,2019-12-12 18:41:00,668 North St, Atlanta,GA,30301 +305769,Apple Airpods Headphones,1,150.0,2019-12-21 13:20:00,635 4th St, Portland,OR,97035 +305770,USB-C Charging Cable,1,11.95,2019-12-01 20:59:00,897 Church St, San Francisco,CA,94016 +305771,USB-C Charging Cable,1,11.95,2019-12-25 09:07:00,110 Johnson St, San Francisco,CA,94016 +305772,Macbook Pro Laptop,1,1700.0,2019-12-10 11:54:00,223 Center St, Boston,MA,02215 +305773,Lightning Charging Cable,1,14.95,2019-12-28 13:45:00,916 North St, San Francisco,CA,94016 +305774,27in FHD Monitor,1,149.99,2019-12-23 18:50:00,835 10th St, Austin,TX,73301 +305775,Wired Headphones,1,11.99,2019-12-20 19:17:00,655 Forest St, New York City,NY,10001 +305776,Lightning Charging Cable,1,14.95,2019-12-21 13:43:00,980 South St, Los Angeles,CA,90001 +305777,iPhone,1,700.0,2019-12-13 20:01:00,884 West St, Boston,MA,02215 +305778,27in FHD Monitor,1,149.99,2019-12-12 05:03:00,705 9th St, San Francisco,CA,94016 +305779,AA Batteries (4-pack),2,3.84,2019-12-05 11:22:00,265 Madison St, Los Angeles,CA,90001 +305780,USB-C Charging Cable,1,11.95,2019-12-06 18:30:00,455 Pine St, San Francisco,CA,94016 +305781,Lightning Charging Cable,1,14.95,2019-12-16 17:07:00,503 Willow St, Los Angeles,CA,90001 +305782,Macbook Pro Laptop,1,1700.0,2019-12-09 19:38:00,373 Park St, Boston,MA,02215 +305783,Google Phone,1,600.0,2019-12-30 17:53:00,138 Pine St, San Francisco,CA,94016 +305783,USB-C Charging Cable,1,11.95,2019-12-30 17:53:00,138 Pine St, San Francisco,CA,94016 +305784,AA Batteries (4-pack),1,3.84,2019-12-27 12:53:00,110 Sunset St, San Francisco,CA,94016 +305785,ThinkPad Laptop,1,999.99,2019-12-06 11:23:00,861 Johnson St, San Francisco,CA,94016 +305786,Lightning Charging Cable,1,14.95,2019-12-01 13:00:00,12 Adams St, San Francisco,CA,94016 +305787,Flatscreen TV,1,300.0,2019-12-13 21:57:00,329 Adams St, San Francisco,CA,94016 +305788,Macbook Pro Laptop,1,1700.0,2019-12-18 13:17:00,678 Ridge St, Boston,MA,02215 +305789,USB-C Charging Cable,1,11.95,2019-12-11 19:13:00,522 4th St, New York City,NY,10001 +305790,ThinkPad Laptop,1,999.99,2019-12-04 11:12:00,543 Main St, Los Angeles,CA,90001 +305791,Lightning Charging Cable,1,14.95,2019-12-19 13:05:00,862 Jefferson St, Los Angeles,CA,90001 +305792,Apple Airpods Headphones,1,150.0,2019-12-28 08:45:00,50 Spruce St, Atlanta,GA,30301 +305793,Apple Airpods Headphones,1,150.0,2019-12-18 19:14:00,134 9th St, Portland,OR,97035 +305794,Lightning Charging Cable,1,14.95,2019-12-23 17:27:00,501 Ridge St, Atlanta,GA,30301 +305795,Apple Airpods Headphones,1,150.0,2019-12-22 18:35:00,471 Jackson St, Atlanta,GA,30301 +305796,USB-C Charging Cable,1,11.95,2019-12-26 23:51:00,963 Park St, New York City,NY,10001 +305797,USB-C Charging Cable,1,11.95,2019-12-01 22:10:00,954 2nd St, Atlanta,GA,30301 +305798,AA Batteries (4-pack),1,3.84,2019-12-09 05:16:00,199 1st St, Boston,MA,02215 +305799,AA Batteries (4-pack),1,3.84,2019-12-11 14:16:00,177 Walnut St, New York City,NY,10001 +305800,AA Batteries (4-pack),2,3.84,2019-12-24 16:24:00,921 14th St, Seattle,WA,98101 +305801,Lightning Charging Cable,1,14.95,2019-12-22 14:50:00,794 Park St, San Francisco,CA,94016 +305802,USB-C Charging Cable,1,11.95,2019-12-15 03:51:00,568 8th St, Austin,TX,73301 +305803,Wired Headphones,1,11.99,2019-12-26 15:23:00,922 Madison St, New York City,NY,10001 +305804,34in Ultrawide Monitor,1,379.99,2019-12-15 21:53:00,445 Main St, San Francisco,CA,94016 +305805,AA Batteries (4-pack),1,3.84,2019-12-11 17:49:00,732 9th St, Seattle,WA,98101 +305806,Lightning Charging Cable,1,14.95,2019-12-07 12:59:00,577 North St, Los Angeles,CA,90001 +305807,Wired Headphones,1,11.99,2019-12-19 14:08:00,529 Lincoln St, New York City,NY,10001 +305808,USB-C Charging Cable,1,11.95,2019-12-12 07:40:00,59 Madison St, Los Angeles,CA,90001 +305809,AA Batteries (4-pack),2,3.84,2019-12-09 11:35:00,400 North St, San Francisco,CA,94016 +305810,Apple Airpods Headphones,1,150.0,2019-12-26 21:24:00,664 Center St, San Francisco,CA,94016 +305811,ThinkPad Laptop,1,999.99,2019-12-21 23:10:00,85 Lincoln St, San Francisco,CA,94016 +305812,USB-C Charging Cable,1,11.95,2019-12-11 18:29:00,701 River St, Dallas,TX,75001 +305813,AA Batteries (4-pack),1,3.84,2019-12-02 12:13:00,802 6th St, Austin,TX,73301 +305814,AA Batteries (4-pack),1,3.84,2019-12-25 14:11:00,908 Wilson St, San Francisco,CA,94016 +305815,Apple Airpods Headphones,1,150.0,2019-12-08 10:43:00,674 Jefferson St, San Francisco,CA,94016 +305816,27in 4K Gaming Monitor,1,389.99,2019-12-14 10:32:00,941 4th St, Portland,OR,97035 +305817,USB-C Charging Cable,1,11.95,2019-12-04 16:36:00,356 Main St, San Francisco,CA,94016 +305818,USB-C Charging Cable,3,11.95,2019-12-28 01:54:00,693 Center St, Boston,MA,02215 +305819,AA Batteries (4-pack),1,3.84,2019-12-16 17:34:00,734 Adams St, Seattle,WA,98101 +305820,AA Batteries (4-pack),2,3.84,2019-12-29 12:50:00,634 Lake St, Portland,OR,97035 +305821,AA Batteries (4-pack),2,3.84,2019-12-08 12:56:00,679 Jackson St, Los Angeles,CA,90001 +305822,Bose SoundSport Headphones,1,99.99,2019-12-08 17:30:00,245 1st St, San Francisco,CA,94016 +305823,USB-C Charging Cable,1,11.95,2019-12-10 15:47:00,615 Lake St, San Francisco,CA,94016 +305824,ThinkPad Laptop,1,999.99,2019-12-23 08:43:00,567 Church St, San Francisco,CA,94016 +305825,27in 4K Gaming Monitor,1,389.99,2019-12-28 12:58:00,420 11th St, San Francisco,CA,94016 +305826,Lightning Charging Cable,2,14.95,2019-12-02 04:59:00,939 Cedar St, Dallas,TX,75001 +305827,iPhone,1,700.0,2019-12-04 16:30:00,361 6th St, Boston,MA,02215 +305827,Wired Headphones,1,11.99,2019-12-04 16:30:00,361 6th St, Boston,MA,02215 +305828,AAA Batteries (4-pack),1,2.99,2019-12-23 08:07:00,21 6th St, Los Angeles,CA,90001 +305829,AAA Batteries (4-pack),1,2.99,2019-12-08 12:54:00,832 River St, San Francisco,CA,94016 +305830,Apple Airpods Headphones,1,150.0,2019-12-15 10:15:00,332 Lake St, Austin,TX,73301 +305831,20in Monitor,1,109.99,2019-12-08 20:25:00,311 Lincoln St, Boston,MA,02215 +305832,USB-C Charging Cable,1,11.95,2019-12-18 14:37:00,21 South St, Los Angeles,CA,90001 +305833,ThinkPad Laptop,1,999.99,2019-12-29 22:55:00,670 Jefferson St, Atlanta,GA,30301 +305834,Bose SoundSport Headphones,1,99.99,2019-12-05 17:06:00,650 River St, San Francisco,CA,94016 +305835,Lightning Charging Cable,1,14.95,2019-12-16 20:09:00,293 Wilson St, Boston,MA,02215 +305836,Lightning Charging Cable,1,14.95,2019-12-07 20:14:00,46 4th St, Boston,MA,02215 +305837,iPhone,1,700.0,2019-12-15 19:43:00,206 Willow St, San Francisco,CA,94016 +305838,USB-C Charging Cable,1,11.95,2019-12-15 11:49:00,280 Hill St, Seattle,WA,98101 +305839,AA Batteries (4-pack),1,3.84,2019-12-25 07:38:00,36 Highland St, Dallas,TX,75001 +305840,Bose SoundSport Headphones,1,99.99,2020-01-01 04:54:00,784 River St, San Francisco,CA,94016 +305841,USB-C Charging Cable,1,11.95,2019-12-25 22:34:00,526 7th St, Austin,TX,73301 +305842,Apple Airpods Headphones,1,150.0,2019-12-15 03:12:00,6 Madison St, San Francisco,CA,94016 +305843,USB-C Charging Cable,1,11.95,2019-12-14 03:42:00,759 Maple St, San Francisco,CA,94016 +305844,27in 4K Gaming Monitor,1,389.99,2019-12-04 17:12:00,72 Ridge St, San Francisco,CA,94016 +305845,AA Batteries (4-pack),2,3.84,2019-12-10 12:37:00,528 Dogwood St, Portland,OR,97035 +305846,Apple Airpods Headphones,1,150.0,2019-12-20 19:15:00,661 11th St, San Francisco,CA,94016 +305847,20in Monitor,1,109.99,2019-12-07 15:20:00,785 Pine St, Los Angeles,CA,90001 +305848,Lightning Charging Cable,1,14.95,2019-12-08 21:19:00,811 Hickory St, New York City,NY,10001 +305849,AA Batteries (4-pack),3,3.84,2019-12-03 14:15:00,155 10th St, Los Angeles,CA,90001 +305850,Apple Airpods Headphones,1,150.0,2019-12-08 05:25:00,439 1st St, Boston,MA,02215 +305851,AA Batteries (4-pack),1,3.84,2019-12-30 00:11:00,755 Ridge St, New York City,NY,10001 +305852,AAA Batteries (4-pack),1,2.99,2019-12-06 12:48:00,457 Forest St, New York City,NY,10001 +305853,AA Batteries (4-pack),2,3.84,2019-12-08 10:47:00,985 12th St, Seattle,WA,98101 +305854,Wired Headphones,1,11.99,2019-12-04 15:06:00,539 Cherry St, New York City,NY,10001 +305855,AA Batteries (4-pack),1,3.84,2019-12-09 16:45:00,463 6th St, New York City,NY,10001 +305856,Google Phone,1,600.0,2019-12-25 06:44:00,581 West St, Los Angeles,CA,90001 +305857,Macbook Pro Laptop,1,1700.0,2019-12-05 08:51:00,402 Cedar St, New York City,NY,10001 +305858,Lightning Charging Cable,1,14.95,2019-12-15 10:29:00,110 South St, Los Angeles,CA,90001 +305859,Wired Headphones,1,11.99,2019-12-02 11:48:00,396 5th St, Austin,TX,73301 +305860,LG Washing Machine,1,600.0,2019-12-31 19:05:00,882 Johnson St, Los Angeles,CA,90001 +305861,iPhone,1,700.0,2019-12-16 22:45:00,24 Lincoln St, Seattle,WA,98101 +305862,iPhone,1,700.0,2019-12-22 11:12:00,200 Ridge St, San Francisco,CA,94016 +305862,Lightning Charging Cable,2,14.95,2019-12-22 11:12:00,200 Ridge St, San Francisco,CA,94016 +305863,Lightning Charging Cable,1,14.95,2019-12-09 15:58:00,950 1st St, Boston,MA,02215 +305864,Apple Airpods Headphones,1,150.0,2019-12-29 16:59:00,708 11th St, Seattle,WA,98101 +305865,Apple Airpods Headphones,1,150.0,2019-12-18 19:37:00,584 Spruce St, Los Angeles,CA,90001 +305866,AA Batteries (4-pack),1,3.84,2019-12-22 18:02:00,781 Adams St, Atlanta,GA,30301 +305867,USB-C Charging Cable,1,11.95,2019-12-29 13:20:00,13 9th St, Atlanta,GA,30301 +305868,Wired Headphones,1,11.99,2019-12-15 00:23:00,353 1st St, Los Angeles,CA,90001 +305869,Apple Airpods Headphones,1,150.0,2019-12-25 12:39:00,657 Adams St, Boston,MA,02215 +305870,Lightning Charging Cable,1,14.95,2019-12-05 10:41:00,199 Wilson St, New York City,NY,10001 +305871,iPhone,1,700.0,2019-12-06 13:56:00,910 Hickory St, Portland,OR,97035 +305872,AAA Batteries (4-pack),1,2.99,2019-12-01 12:26:00,432 Elm St, Atlanta,GA,30301 +305873,34in Ultrawide Monitor,1,379.99,2019-12-08 21:55:00,18 Forest St, New York City,NY,10001 +305874,Bose SoundSport Headphones,1,99.99,2019-12-14 16:01:00,806 2nd St, Dallas,TX,75001 +305875,AA Batteries (4-pack),2,3.84,2019-12-24 21:47:00,457 Main St, Los Angeles,CA,90001 +305876,34in Ultrawide Monitor,1,379.99,2019-12-23 13:46:00,952 Cherry St, San Francisco,CA,94016 +305877,Flatscreen TV,1,300.0,2019-12-25 14:33:00,989 5th St, Dallas,TX,75001 +305878,Wired Headphones,1,11.99,2019-12-17 00:01:00,57 Washington St, Los Angeles,CA,90001 +305879,Wired Headphones,1,11.99,2019-12-11 08:55:00,494 4th St, Dallas,TX,75001 +305880,34in Ultrawide Monitor,1,379.99,2019-12-18 14:19:00,413 4th St, Atlanta,GA,30301 +305881,AA Batteries (4-pack),1,3.84,2019-12-21 18:46:00,854 Dogwood St, Boston,MA,02215 +305882,Apple Airpods Headphones,1,150.0,2019-12-17 00:18:00,654 Lincoln St, Boston,MA,02215 +305883,AAA Batteries (4-pack),2,2.99,2019-12-01 22:50:00,599 Jackson St, Dallas,TX,75001 +305884,AA Batteries (4-pack),1,3.84,2019-12-31 18:29:00,208 Church St, Portland,OR,97035 +305885,iPhone,1,700.0,2019-12-24 18:07:00,277 Forest St, San Francisco,CA,94016 +305885,Wired Headphones,1,11.99,2019-12-24 18:07:00,277 Forest St, San Francisco,CA,94016 +305886,USB-C Charging Cable,1,11.95,2019-12-14 22:10:00,54 Sunset St, New York City,NY,10001 +305887,34in Ultrawide Monitor,1,379.99,2019-12-31 10:43:00,265 Spruce St, Portland,OR,97035 +305888,Bose SoundSport Headphones,1,99.99,2019-12-31 15:46:00,135 West St, Portland,OR,97035 +305889,AA Batteries (4-pack),1,3.84,2019-12-03 19:11:00,511 Spruce St, New York City,NY,10001 +305890,27in FHD Monitor,1,149.99,2019-12-18 09:11:00,214 Chestnut St, Dallas,TX,75001 +305891,Apple Airpods Headphones,1,150.0,2019-12-24 22:13:00,368 Jackson St, New York City,NY,10001 +305892,Google Phone,1,600.0,2019-12-28 21:55:00,551 14th St, New York City,NY,10001 +305893,Apple Airpods Headphones,1,150.0,2019-12-02 12:34:00,572 Ridge St, San Francisco,CA,94016 +305894,iPhone,1,700.0,2019-12-22 12:11:00,70 Jefferson St, New York City,NY,10001 +305895,AAA Batteries (4-pack),1,2.99,2019-12-23 09:19:00,308 13th St, San Francisco,CA,94016 +305896,AAA Batteries (4-pack),3,2.99,2019-12-22 12:12:00,618 Elm St, Atlanta,GA,30301 +305897,AA Batteries (4-pack),1,3.84,2019-12-23 22:12:00,504 Walnut St, Los Angeles,CA,90001 +305898,Apple Airpods Headphones,1,150.0,2019-12-19 14:39:00,348 Pine St, San Francisco,CA,94016 +305899,Lightning Charging Cable,1,14.95,2019-12-01 19:59:00,958 South St, Atlanta,GA,30301 +305900,27in 4K Gaming Monitor,1,389.99,2019-12-28 18:36:00,409 12th St, Portland,OR,97035 +305901,Apple Airpods Headphones,1,150.0,2019-12-06 19:37:00,657 Meadow St, San Francisco,CA,94016 +305902,USB-C Charging Cable,1,11.95,2019-12-21 16:53:00,684 Church St, San Francisco,CA,94016 +305903,27in 4K Gaming Monitor,1,389.99,2019-12-24 10:33:00,479 Spruce St, San Francisco,CA,94016 +305904,Lightning Charging Cable,1,14.95,2019-12-18 23:13:00,881 Pine St, Boston,MA,02215 +305905,AA Batteries (4-pack),1,3.84,2019-12-29 11:32:00,543 14th St, Dallas,TX,75001 +305906,iPhone,1,700.0,2019-12-17 22:24:00,451 7th St, Atlanta,GA,30301 +305907,AAA Batteries (4-pack),1,2.99,2019-12-11 16:11:00,757 Highland St, New York City,NY,10001 +305908,ThinkPad Laptop,1,999.99,2019-12-17 08:43:00,423 Jefferson St, Dallas,TX,75001 +305909,Bose SoundSport Headphones,1,99.99,2019-12-25 21:38:00,273 Dogwood St, Los Angeles,CA,90001 +305910,34in Ultrawide Monitor,1,379.99,2019-12-22 08:43:00,444 Cedar St, Portland,OR,97035 +305911,AAA Batteries (4-pack),1,2.99,2019-12-12 09:29:00,932 Meadow St, Los Angeles,CA,90001 +305912,Bose SoundSport Headphones,1,99.99,2019-12-08 17:00:00,682 10th St, San Francisco,CA,94016 +305913,Lightning Charging Cable,1,14.95,2019-12-06 19:43:00,959 Chestnut St, Seattle,WA,98101 +305914,USB-C Charging Cable,1,11.95,2019-12-28 19:02:00,880 Meadow St, Seattle,WA,98101 +305915,Apple Airpods Headphones,1,150.0,2019-12-17 16:03:00,886 Dogwood St, Seattle,WA,98101 +305916,iPhone,1,700.0,2019-12-27 20:01:00,92 Maple St, San Francisco,CA,94016 +305917,27in 4K Gaming Monitor,1,389.99,2019-12-15 09:14:00,294 Main St, Boston,MA,02215 +305918,USB-C Charging Cable,2,11.95,2019-12-24 21:22:00,273 6th St, San Francisco,CA,94016 +305919,Apple Airpods Headphones,1,150.0,2019-12-05 22:26:00,480 4th St, San Francisco,CA,94016 +305920,Apple Airpods Headphones,1,150.0,2019-12-21 19:24:00,42 Adams St, Seattle,WA,98101 +305921,Bose SoundSport Headphones,1,99.99,2019-12-01 17:51:00,733 Walnut St, San Francisco,CA,94016 +305922,USB-C Charging Cable,1,11.95,2019-12-16 19:00:00,496 4th St, Seattle,WA,98101 +305923,Lightning Charging Cable,1,14.95,2019-12-09 12:17:00,790 Church St, Los Angeles,CA,90001 +305924,Lightning Charging Cable,2,14.95,2019-12-20 19:44:00,782 Forest St, Dallas,TX,75001 +305925,Bose SoundSport Headphones,1,99.99,2019-12-29 14:52:00,129 West St, Seattle,WA,98101 +305926,Lightning Charging Cable,1,14.95,2019-12-30 21:18:00,492 Wilson St, San Francisco,CA,94016 +305927,AA Batteries (4-pack),1,3.84,2019-12-15 09:14:00,61 Pine St, Los Angeles,CA,90001 +305928,ThinkPad Laptop,1,999.99,2019-12-08 16:33:00,637 North St, Los Angeles,CA,90001 +305929,iPhone,1,700.0,2019-12-15 20:12:00,889 Willow St, Dallas,TX,75001 +305930,AAA Batteries (4-pack),1,2.99,2019-12-11 20:28:00,522 West St, Portland,OR,97035 +305931,Apple Airpods Headphones,1,150.0,2019-12-20 10:42:00,64 Lincoln St, San Francisco,CA,94016 +305932,Lightning Charging Cable,1,14.95,2019-12-14 12:37:00,506 South St, Atlanta,GA,30301 +305933,Google Phone,1,600.0,2019-12-11 22:01:00,46 Dogwood St, Austin,TX,73301 +305934,Flatscreen TV,1,300.0,2019-12-16 16:09:00,894 Pine St, New York City,NY,10001 +305935,Lightning Charging Cable,1,14.95,2019-12-20 16:05:00,192 Willow St, New York City,NY,10001 +305936,iPhone,1,700.0,2019-12-13 08:32:00,509 14th St, Los Angeles,CA,90001 +305937,Flatscreen TV,1,300.0,2019-12-02 14:17:00,547 West St, Los Angeles,CA,90001 +305938,USB-C Charging Cable,1,11.95,2019-12-19 14:58:00,861 Dogwood St, Austin,TX,73301 +305939,Google Phone,1,600.0,2019-12-29 13:04:00,210 13th St, New York City,NY,10001 +305940,USB-C Charging Cable,1,11.95,2019-12-14 23:33:00,473 Madison St, San Francisco,CA,94016 +305941,Lightning Charging Cable,1,14.95,2019-12-17 15:10:00,625 Highland St, Portland,OR,97035 +305942,USB-C Charging Cable,2,11.95,2019-12-28 09:43:00,819 11th St, Atlanta,GA,30301 +305943,Apple Airpods Headphones,1,150.0,2019-12-12 20:01:00,247 Sunset St, New York City,NY,10001 +305944,ThinkPad Laptop,1,999.99,2019-12-01 20:49:00,441 8th St, Boston,MA,02215 +305945,Bose SoundSport Headphones,1,99.99,2019-12-25 11:23:00,177 13th St, San Francisco,CA,94016 +305946,AAA Batteries (4-pack),2,2.99,2019-12-28 20:47:00,831 14th St, San Francisco,CA,94016 +305947,AA Batteries (4-pack),1,3.84,2019-12-08 08:46:00,404 13th St, Dallas,TX,75001 +305948,iPhone,1,700.0,2019-12-16 12:53:00,527 Willow St, Boston,MA,02215 +305948,Lightning Charging Cable,1,14.95,2019-12-16 12:53:00,527 Willow St, Boston,MA,02215 +305949,USB-C Charging Cable,1,11.95,2019-12-08 16:20:00,246 Highland St, San Francisco,CA,94016 +305950,AAA Batteries (4-pack),1,2.99,2019-12-02 19:14:00,456 Washington St, Atlanta,GA,30301 +305951,Wired Headphones,1,11.99,2019-12-06 13:29:00,938 Willow St, New York City,NY,10001 +305952,Google Phone,1,600.0,2019-12-21 10:35:00,481 Hill St, San Francisco,CA,94016 +305952,Flatscreen TV,1,300.0,2019-12-21 10:35:00,481 Hill St, San Francisco,CA,94016 +305953,Bose SoundSport Headphones,1,99.99,2019-12-25 15:00:00,944 Elm St, San Francisco,CA,94016 +305954,Bose SoundSport Headphones,1,99.99,2019-12-13 11:57:00,289 Pine St, Boston,MA,02215 +305955,AAA Batteries (4-pack),1,2.99,2019-12-07 01:02:00,317 9th St, San Francisco,CA,94016 +305956,USB-C Charging Cable,1,11.95,2019-12-30 08:58:00,783 Cedar St, Dallas,TX,75001 +305957,USB-C Charging Cable,1,11.95,2019-12-22 15:56:00,140 Hickory St, Los Angeles,CA,90001 +305958,Bose SoundSport Headphones,1,99.99,2019-12-07 13:45:00,489 Church St, San Francisco,CA,94016 +305959,27in FHD Monitor,1,149.99,2019-12-27 11:35:00,175 Washington St, Dallas,TX,75001 +305960,Apple Airpods Headphones,1,150.0,2019-12-24 12:31:00,331 Washington St, Los Angeles,CA,90001 +305961,USB-C Charging Cable,1,11.95,2019-12-23 13:38:00,261 South St, San Francisco,CA,94016 +305962,ThinkPad Laptop,1,999.99,2019-12-03 02:06:00,4 Jefferson St, Los Angeles,CA,90001 +305963,Wired Headphones,1,11.99,2019-12-11 23:54:00,347 Walnut St, Austin,TX,73301 +305964,Bose SoundSport Headphones,1,99.99,2019-12-04 10:44:00,753 10th St, Portland,OR,97035 +305965,USB-C Charging Cable,1,11.95,2019-12-17 17:50:00,923 14th St, Dallas,TX,75001 +305966,27in FHD Monitor,1,149.99,2019-12-10 07:09:00,406 Johnson St, New York City,NY,10001 +305967,Flatscreen TV,1,300.0,2019-12-25 14:41:00,442 Spruce St, Los Angeles,CA,90001 +305968,34in Ultrawide Monitor,1,379.99,2019-12-19 11:55:00,704 Elm St, Los Angeles,CA,90001 +305969,Google Phone,1,600.0,2019-12-29 17:41:00,548 Church St, Austin,TX,73301 +305970,Bose SoundSport Headphones,1,99.99,2019-12-27 20:24:00,384 Lincoln St, Boston,MA,02215 +305971,USB-C Charging Cable,1,11.95,2019-12-14 16:05:00,595 4th St, San Francisco,CA,94016 +305972,iPhone,1,700.0,2019-12-18 16:35:00,896 Wilson St, San Francisco,CA,94016 +305973,AAA Batteries (4-pack),1,2.99,2019-12-06 21:12:00,898 Willow St, Boston,MA,02215 +305974,iPhone,1,700.0,2019-12-10 22:59:00,273 Jackson St, San Francisco,CA,94016 +305975,USB-C Charging Cable,1,11.95,2019-12-23 15:18:00,55 Park St, Atlanta,GA,30301 +305976,AA Batteries (4-pack),1,3.84,2019-12-09 07:24:00,905 5th St, Dallas,TX,75001 +305976,AAA Batteries (4-pack),1,2.99,2019-12-09 07:24:00,905 5th St, Dallas,TX,75001 +305977,Lightning Charging Cable,1,14.95,2019-12-15 09:34:00,913 5th St, Austin,TX,73301 +305978,Wired Headphones,1,11.99,2019-12-01 08:58:00,905 Madison St, Los Angeles,CA,90001 +305979,USB-C Charging Cable,1,11.95,2019-12-02 11:09:00,806 South St, Los Angeles,CA,90001 +305980,27in 4K Gaming Monitor,1,389.99,2019-12-26 17:20:00,135 1st St, San Francisco,CA,94016 +305981,Lightning Charging Cable,1,14.95,2019-12-12 19:28:00,927 11th St, Austin,TX,73301 +305982,Lightning Charging Cable,1,14.95,2019-12-12 13:43:00,739 5th St, Austin,TX,73301 +305983,AAA Batteries (4-pack),1,2.99,2019-12-08 07:14:00,913 11th St, Seattle,WA,98101 +305984,Macbook Pro Laptop,1,1700.0,2019-12-25 20:56:00,104 Meadow St, Seattle,WA,98101 +305985,AA Batteries (4-pack),1,3.84,2019-12-23 08:05:00,838 Highland St, San Francisco,CA,94016 +305986,Apple Airpods Headphones,1,150.0,2019-12-26 12:10:00,246 Center St, Boston,MA,02215 +305987,Flatscreen TV,1,300.0,2019-12-17 15:35:00,580 Madison St, Los Angeles,CA,90001 +305988,Lightning Charging Cable,1,14.95,2019-12-06 20:14:00,278 Cedar St, Los Angeles,CA,90001 +305989,Wired Headphones,1,11.99,2019-12-14 13:43:00,807 Willow St, Portland,OR,97035 +305990,Bose SoundSport Headphones,1,99.99,2019-12-15 10:24:00,909 Dogwood St, San Francisco,CA,94016 +305991,Lightning Charging Cable,1,14.95,2019-12-07 00:47:00,814 12th St, San Francisco,CA,94016 +305992,27in FHD Monitor,1,149.99,2019-12-31 09:21:00,821 11th St, Dallas,TX,75001 +305993,Bose SoundSport Headphones,1,99.99,2019-12-28 21:29:00,417 Jefferson St, Seattle,WA,98101 +305994,AA Batteries (4-pack),1,3.84,2019-12-22 13:57:00,650 Lakeview St, Seattle,WA,98101 +305995,Bose SoundSport Headphones,1,99.99,2019-12-09 17:36:00,733 Pine St, Atlanta,GA,30301 +305996,Wired Headphones,1,11.99,2019-12-12 21:02:00,200 Hickory St, San Francisco,CA,94016 +305997,AAA Batteries (4-pack),1,2.99,2019-12-23 20:23:00,402 1st St, Los Angeles,CA,90001 +305998,Google Phone,1,600.0,2019-12-08 16:40:00,111 4th St, Seattle,WA,98101 +305998,USB-C Charging Cable,1,11.95,2019-12-08 16:40:00,111 4th St, Seattle,WA,98101 +305999,AAA Batteries (4-pack),1,2.99,2019-12-18 14:54:00,542 2nd St, San Francisco,CA,94016 +306000,Lightning Charging Cable,1,14.95,2019-12-09 15:01:00,647 Walnut St, Seattle,WA,98101 +306001,Wired Headphones,1,11.99,2019-12-31 10:41:00,30 6th St, Dallas,TX,75001 +306002,iPhone,1,700.0,2019-12-06 09:13:00,39 Elm St, Seattle,WA,98101 +306003,Lightning Charging Cable,1,14.95,2019-12-07 22:33:00,838 Meadow St, New York City,NY,10001 +306004,AAA Batteries (4-pack),1,2.99,2019-12-19 18:55:00,384 Cherry St, Seattle,WA,98101 +306005,27in FHD Monitor,1,149.99,2019-12-18 12:11:00,951 Church St, Atlanta,GA,30301 +306006,AA Batteries (4-pack),1,3.84,2019-12-31 20:58:00,408 Johnson St, San Francisco,CA,94016 +306007,Google Phone,1,600.0,2019-12-28 15:13:00,546 Main St, Dallas,TX,75001 +306008,27in 4K Gaming Monitor,1,389.99,2019-12-11 21:32:00,396 Dogwood St, Portland,OR,97035 +306009,Lightning Charging Cable,1,14.95,2019-12-15 16:00:00,71 Willow St, San Francisco,CA,94016 +306010,Bose SoundSport Headphones,1,99.99,2019-12-24 22:03:00,712 1st St, New York City,NY,10001 +306011,34in Ultrawide Monitor,1,379.99,2019-12-26 19:17:00,640 4th St, Austin,TX,73301 +306012,ThinkPad Laptop,1,999.99,2019-12-12 20:26:00,943 1st St, Atlanta,GA,30301 +306013,27in FHD Monitor,1,149.99,2019-12-04 06:50:00,708 Lincoln St, Seattle,WA,98101 +306014,AAA Batteries (4-pack),2,2.99,2019-12-29 19:45:00,244 5th St, San Francisco,CA,94016 +306015,USB-C Charging Cable,1,11.95,2019-12-23 22:42:00,622 7th St, Boston,MA,02215 +306016,Lightning Charging Cable,1,14.95,2019-12-07 16:04:00,297 Highland St, Los Angeles,CA,90001 +306017,Wired Headphones,1,11.99,2019-12-05 11:06:00,322 Maple St, Los Angeles,CA,90001 +306018,Lightning Charging Cable,1,14.95,2019-12-14 19:08:00,525 5th St, New York City,NY,10001 +306019,AA Batteries (4-pack),2,3.84,2019-12-30 18:25:00,760 Maple St, San Francisco,CA,94016 +306020,AAA Batteries (4-pack),2,2.99,2019-12-09 17:37:00,323 Forest St, Atlanta,GA,30301 +306021,Wired Headphones,1,11.99,2019-12-11 19:39:00,50 Pine St, Boston,MA,02215 +306022,Apple Airpods Headphones,1,150.0,2019-12-20 14:43:00,495 Chestnut St, San Francisco,CA,94016 +306023,Lightning Charging Cable,1,14.95,2019-12-04 14:18:00,251 Main St, Dallas,TX,75001 +306024,20in Monitor,1,109.99,2019-12-09 12:28:00,888 8th St, Los Angeles,CA,90001 +306025,Bose SoundSport Headphones,1,99.99,2019-12-19 00:39:00,453 Highland St, Portland,OR,97035 +306025,Flatscreen TV,1,300.0,2019-12-19 00:39:00,453 Highland St, Portland,OR,97035 +306026,27in FHD Monitor,1,149.99,2019-12-27 20:30:00,929 Adams St, Los Angeles,CA,90001 +306027,Apple Airpods Headphones,1,150.0,2019-12-23 19:24:00,945 Willow St, Dallas,TX,75001 +306028,AA Batteries (4-pack),1,3.84,2019-12-20 06:31:00,724 11th St, San Francisco,CA,94016 +306029,AA Batteries (4-pack),1,3.84,2019-12-20 10:39:00,262 Johnson St, San Francisco,CA,94016 +306030,ThinkPad Laptop,1,999.99,2019-12-10 12:05:00,840 5th St, Atlanta,GA,30301 +306031,AAA Batteries (4-pack),3,2.99,2019-12-22 17:29:00,527 Adams St, Austin,TX,73301 +306032,34in Ultrawide Monitor,1,379.99,2019-12-30 16:17:00,795 Willow St, New York City,NY,10001 +306033,LG Dryer,1,600.0,2019-12-07 13:51:00,719 Center St, Boston,MA,02215 +306034,USB-C Charging Cable,1,11.95,2019-12-12 21:46:00,216 Pine St, Los Angeles,CA,90001 +306035,Lightning Charging Cable,1,14.95,2019-12-14 14:13:00,813 Pine St, Los Angeles,CA,90001 +306036,Lightning Charging Cable,1,14.95,2019-12-03 19:24:00,205 Church St, Los Angeles,CA,90001 +306037,Bose SoundSport Headphones,1,99.99,2019-12-27 16:09:00,286 12th St, Los Angeles,CA,90001 +306038,Apple Airpods Headphones,1,150.0,2019-12-18 13:56:00,70 11th St, Austin,TX,73301 +306039,AA Batteries (4-pack),1,3.84,2019-12-25 15:57:00,362 West St, Boston,MA,02215 +306040,Wired Headphones,1,11.99,2019-12-20 20:40:00,300 Park St, Atlanta,GA,30301 +306041,Bose SoundSport Headphones,1,99.99,2019-12-12 21:59:00,911 Walnut St, Atlanta,GA,30301 +306042,Bose SoundSport Headphones,1,99.99,2019-12-09 17:35:00,990 Meadow St, Austin,TX,73301 +306043,iPhone,1,700.0,2019-12-04 11:59:00,49 North St, Atlanta,GA,30301 +306044,27in FHD Monitor,1,149.99,2019-12-13 04:58:00,11 14th St, New York City,NY,10001 +306045,Wired Headphones,1,11.99,2019-12-17 11:17:00,253 11th St, San Francisco,CA,94016 +306046,Lightning Charging Cable,1,14.95,2019-12-27 10:52:00,854 Hickory St, New York City,NY,10001 +306047,Lightning Charging Cable,1,14.95,2019-12-23 16:30:00,307 Main St, Boston,MA,02215 +306048,Bose SoundSport Headphones,1,99.99,2019-12-14 20:12:00,261 4th St, Austin,TX,73301 +306049,Apple Airpods Headphones,1,150.0,2019-12-25 20:09:00,826 Main St, Seattle,WA,98101 +306050,iPhone,1,700.0,2019-12-20 12:22:00,136 Elm St, Los Angeles,CA,90001 +306051,USB-C Charging Cable,1,11.95,2019-12-12 15:32:00,321 Wilson St, San Francisco,CA,94016 +306052,USB-C Charging Cable,1,11.95,2019-12-06 23:57:00,284 2nd St, San Francisco,CA,94016 +306053,AA Batteries (4-pack),2,3.84,2019-12-17 20:35:00,218 North St, Boston,MA,02215 +306054,Wired Headphones,1,11.99,2019-12-22 11:47:00,77 11th St, New York City,NY,10001 +306055,20in Monitor,1,109.99,2019-12-19 10:42:00,951 Lincoln St, New York City,NY,10001 +306056,Apple Airpods Headphones,1,150.0,2019-12-24 13:28:00,356 Ridge St, Boston,MA,02215 +306057,Lightning Charging Cable,1,14.95,2019-12-18 16:45:00,126 7th St, San Francisco,CA,94016 +306058,27in FHD Monitor,1,149.99,2019-12-27 23:44:00,969 Elm St, San Francisco,CA,94016 +306059,Lightning Charging Cable,1,14.95,2019-12-09 21:30:00,9 Elm St, San Francisco,CA,94016 +306060,AAA Batteries (4-pack),1,2.99,2019-12-12 16:37:00,442 Park St, New York City,NY,10001 +306061,Lightning Charging Cable,1,14.95,2019-12-19 18:57:00,48 Jefferson St, Seattle,WA,98101 +306062,AA Batteries (4-pack),1,3.84,2019-12-28 20:53:00,376 2nd St, Atlanta,GA,30301 +306063,Vareebadd Phone,1,400.0,2019-12-16 15:23:00,519 5th St, San Francisco,CA,94016 +306064,20in Monitor,1,109.99,2019-12-18 12:12:00,793 North St, San Francisco,CA,94016 +306065,AAA Batteries (4-pack),1,2.99,2019-12-16 16:39:00,990 Hickory St, Portland,ME,04101 +306066,Bose SoundSport Headphones,1,99.99,2019-12-15 10:32:00,477 13th St, New York City,NY,10001 +306067,AAA Batteries (4-pack),2,2.99,2019-12-31 19:33:00,79 Chestnut St, Los Angeles,CA,90001 +306068,27in 4K Gaming Monitor,1,389.99,2019-12-30 21:26:00,128 Hill St, San Francisco,CA,94016 +306069,Google Phone,1,600.0,2019-12-05 19:50:00,61 Washington St, Seattle,WA,98101 +306069,Wired Headphones,1,11.99,2019-12-05 19:50:00,61 Washington St, Seattle,WA,98101 +306070,27in 4K Gaming Monitor,1,389.99,2019-12-20 23:14:00,784 Chestnut St, Boston,MA,02215 +306071,Lightning Charging Cable,1,14.95,2019-12-22 21:26:00,217 Pine St, Dallas,TX,75001 +306072,27in FHD Monitor,1,149.99,2019-12-11 11:58:00,156 Jefferson St, Dallas,TX,75001 +306073,Apple Airpods Headphones,1,150.0,2019-12-12 13:02:00,738 Highland St, Atlanta,GA,30301 +306074,USB-C Charging Cable,1,11.95,2019-12-02 20:43:00,665 Spruce St, San Francisco,CA,94016 +306075,Lightning Charging Cable,2,14.95,2019-12-24 11:56:00,308 6th St, New York City,NY,10001 +306076,Lightning Charging Cable,1,14.95,2019-12-28 10:48:00,498 Cedar St, San Francisco,CA,94016 +306077,Macbook Pro Laptop,1,1700.0,2019-12-05 15:22:00,585 14th St, San Francisco,CA,94016 +306078,Wired Headphones,1,11.99,2019-12-23 11:28:00,52 Sunset St, Los Angeles,CA,90001 +306079,34in Ultrawide Monitor,1,379.99,2019-12-23 17:20:00,128 Sunset St, New York City,NY,10001 +306080,AA Batteries (4-pack),1,3.84,2019-12-26 11:29:00,813 Walnut St, Atlanta,GA,30301 +306081,AA Batteries (4-pack),1,3.84,2019-12-13 16:16:00,521 5th St, San Francisco,CA,94016 +306082,iPhone,1,700.0,2019-12-30 05:04:00,633 Lincoln St, New York City,NY,10001 +306083,USB-C Charging Cable,1,11.95,2019-12-14 12:56:00,403 Wilson St, New York City,NY,10001 +306084,Macbook Pro Laptop,1,1700.0,2019-12-23 21:10:00,321 11th St, Los Angeles,CA,90001 +306085,Bose SoundSport Headphones,1,99.99,2019-12-18 16:43:00,399 14th St, New York City,NY,10001 +306086,Lightning Charging Cable,1,14.95,2019-12-14 17:32:00,877 Willow St, Los Angeles,CA,90001 +306087,34in Ultrawide Monitor,1,379.99,2019-12-22 21:42:00,390 11th St, Portland,OR,97035 +306088,AA Batteries (4-pack),1,3.84,2019-12-18 22:39:00,716 Pine St, San Francisco,CA,94016 +306089,Lightning Charging Cable,1,14.95,2019-12-27 21:23:00,321 8th St, San Francisco,CA,94016 +306090,USB-C Charging Cable,1,11.95,2019-12-20 18:45:00,758 Adams St, Los Angeles,CA,90001 +306091,AA Batteries (4-pack),1,3.84,2019-12-21 16:03:00,659 Church St, Los Angeles,CA,90001 +306092,AA Batteries (4-pack),2,3.84,2019-12-09 15:30:00,641 9th St, Atlanta,GA,30301 +306093,AAA Batteries (4-pack),2,2.99,2019-12-19 23:43:00,115 14th St, Austin,TX,73301 +306094,Flatscreen TV,1,300.0,2019-12-06 10:38:00,763 11th St, San Francisco,CA,94016 +306095,34in Ultrawide Monitor,1,379.99,2019-12-31 10:25:00,843 South St, Boston,MA,02215 +306096,USB-C Charging Cable,1,11.95,2019-12-02 13:52:00,434 12th St, New York City,NY,10001 +306097,AA Batteries (4-pack),2,3.84,2019-12-18 04:08:00,932 13th St, Los Angeles,CA,90001 +306098,AA Batteries (4-pack),1,3.84,2019-12-02 09:10:00,923 2nd St, San Francisco,CA,94016 +306099,Flatscreen TV,1,300.0,2019-12-08 19:55:00,420 Washington St, Dallas,TX,75001 +306100,AAA Batteries (4-pack),1,2.99,2019-12-30 22:16:00,900 Madison St, San Francisco,CA,94016 +306101,USB-C Charging Cable,1,11.95,2019-12-21 20:45:00,172 Wilson St, Boston,MA,02215 +306102,Apple Airpods Headphones,1,150.0,2019-12-09 11:03:00,769 Hickory St, Austin,TX,73301 +306103,Bose SoundSport Headphones,1,99.99,2019-12-29 12:17:00,873 Meadow St, San Francisco,CA,94016 +306104,Vareebadd Phone,1,400.0,2019-12-18 14:05:00,275 Jackson St, San Francisco,CA,94016 +306105,Macbook Pro Laptop,1,1700.0,2019-12-03 08:31:00,236 Lincoln St, New York City,NY,10001 +306106,USB-C Charging Cable,2,11.95,2019-12-14 15:50:00,449 6th St, New York City,NY,10001 +306107,Wired Headphones,1,11.99,2019-12-31 14:39:00,128 Johnson St, Seattle,WA,98101 +306108,AAA Batteries (4-pack),2,2.99,2019-12-17 20:39:00,982 12th St, Atlanta,GA,30301 +306109,Bose SoundSport Headphones,1,99.99,2019-12-11 21:26:00,320 South St, Austin,TX,73301 +306110,USB-C Charging Cable,1,11.95,2019-12-20 20:44:00,911 Center St, Los Angeles,CA,90001 +306111,27in FHD Monitor,1,149.99,2019-12-20 01:07:00,191 North St, Boston,MA,02215 +306112,Apple Airpods Headphones,1,150.0,2019-12-22 19:28:00,167 6th St, Boston,MA,02215 +306113,Wired Headphones,1,11.99,2019-12-13 21:09:00,768 River St, Atlanta,GA,30301 +306114,AA Batteries (4-pack),1,3.84,2019-12-07 09:48:00,332 11th St, Atlanta,GA,30301 +306115,iPhone,1,700.0,2019-12-08 17:10:00,433 2nd St, New York City,NY,10001 +306115,Apple Airpods Headphones,1,150.0,2019-12-08 17:10:00,433 2nd St, New York City,NY,10001 +306115,AAA Batteries (4-pack),1,2.99,2019-12-08 17:10:00,433 2nd St, New York City,NY,10001 +306116,Lightning Charging Cable,1,14.95,2019-12-04 08:19:00,163 West St, San Francisco,CA,94016 +306117,Bose SoundSport Headphones,1,99.99,2019-12-20 12:04:00,219 Cedar St, Los Angeles,CA,90001 +306118,USB-C Charging Cable,1,11.95,2019-12-22 11:53:00,56 River St, San Francisco,CA,94016 +306119,AAA Batteries (4-pack),1,2.99,2019-12-07 10:17:00,44 1st St, Los Angeles,CA,90001 +306120,USB-C Charging Cable,1,11.95,2019-12-25 23:29:00,827 Sunset St, San Francisco,CA,94016 +306121,Wired Headphones,1,11.99,2019-12-10 09:25:00,914 Washington St, Austin,TX,73301 +306122,Wired Headphones,1,11.99,2019-12-03 08:49:00,663 North St, Los Angeles,CA,90001 +306123,USB-C Charging Cable,2,11.95,2019-12-05 19:05:00,316 Jefferson St, San Francisco,CA,94016 +306124,Lightning Charging Cable,1,14.95,2019-12-04 23:42:00,547 Hill St, San Francisco,CA,94016 +306125,27in 4K Gaming Monitor,1,389.99,2019-12-15 12:14:00,19 Center St, San Francisco,CA,94016 +306126,Lightning Charging Cable,1,14.95,2019-12-06 17:15:00,328 Ridge St, Portland,OR,97035 +306127,Wired Headphones,1,11.99,2019-12-15 09:56:00,271 8th St, New York City,NY,10001 +306128,AA Batteries (4-pack),1,3.84,2019-12-25 15:56:00,159 Center St, Dallas,TX,75001 +306129,AA Batteries (4-pack),1,3.84,2019-12-28 13:27:00,506 8th St, Los Angeles,CA,90001 +306130,27in FHD Monitor,1,149.99,2019-12-05 13:19:00,970 North St, Portland,ME,04101 +306131,USB-C Charging Cable,2,11.95,2019-12-26 15:10:00,763 Elm St, Boston,MA,02215 +306132,Apple Airpods Headphones,1,150.0,2019-12-11 14:30:00,200 Sunset St, San Francisco,CA,94016 +306133,Macbook Pro Laptop,1,1700.0,2019-12-31 19:16:00,838 Lake St, New York City,NY,10001 +306134,Lightning Charging Cable,1,14.95,2019-12-20 19:06:00,374 South St, Los Angeles,CA,90001 +306135,Google Phone,1,600.0,2019-12-06 17:02:00,909 Lake St, Portland,OR,97035 +306135,USB-C Charging Cable,1,11.95,2019-12-06 17:02:00,909 Lake St, Portland,OR,97035 +306136,USB-C Charging Cable,1,11.95,2019-12-10 19:53:00,49 Jefferson St, Los Angeles,CA,90001 +306137,34in Ultrawide Monitor,1,379.99,2019-12-23 12:20:00,105 Church St, Austin,TX,73301 +306138,Lightning Charging Cable,1,14.95,2019-12-27 18:42:00,72 Walnut St, San Francisco,CA,94016 +306139,27in FHD Monitor,1,149.99,2019-12-31 21:12:00,313 Sunset St, Los Angeles,CA,90001 +306140,Macbook Pro Laptop,1,1700.0,2019-12-16 11:10:00,894 13th St, Austin,TX,73301 +306141,Bose SoundSport Headphones,1,99.99,2019-12-15 13:28:00,828 River St, San Francisco,CA,94016 +306142,USB-C Charging Cable,1,11.95,2019-12-23 22:51:00,346 Lake St, Los Angeles,CA,90001 +306143,Bose SoundSport Headphones,1,99.99,2019-12-20 15:21:00,643 Wilson St, San Francisco,CA,94016 +306144,Bose SoundSport Headphones,1,99.99,2019-12-20 21:57:00,329 2nd St, Los Angeles,CA,90001 +306145,Apple Airpods Headphones,1,150.0,2019-12-14 10:20:00,379 River St, New York City,NY,10001 +306146,AAA Batteries (4-pack),2,2.99,2019-12-13 22:33:00,307 Jackson St, New York City,NY,10001 +306147,iPhone,1,700.0,2019-12-29 23:05:00,304 Jefferson St, Dallas,TX,75001 +306148,Bose SoundSport Headphones,1,99.99,2019-12-15 01:31:00,162 13th St, Dallas,TX,75001 +306149,27in 4K Gaming Monitor,1,389.99,2019-12-28 18:48:00,473 Ridge St, Seattle,WA,98101 +306150,AAA Batteries (4-pack),2,2.99,2019-12-17 10:12:00,105 9th St, Atlanta,GA,30301 +306151,USB-C Charging Cable,1,11.95,2019-12-31 19:30:00,738 Church St, Seattle,WA,98101 +306152,USB-C Charging Cable,1,11.95,2019-12-20 16:02:00,803 Highland St, Los Angeles,CA,90001 +306153,USB-C Charging Cable,1,11.95,2019-12-12 11:51:00,488 Ridge St, Los Angeles,CA,90001 +306154,Bose SoundSport Headphones,1,99.99,2019-12-04 15:16:00,903 Church St, San Francisco,CA,94016 +306155,Lightning Charging Cable,1,14.95,2019-12-23 14:37:00,424 2nd St, Atlanta,GA,30301 +306156,AAA Batteries (4-pack),1,2.99,2019-12-11 13:48:00,274 5th St, New York City,NY,10001 +306157,Lightning Charging Cable,1,14.95,2019-12-15 16:39:00,426 13th St, New York City,NY,10001 +306158,USB-C Charging Cable,1,11.95,2019-12-22 17:12:00,343 Lincoln St, Boston,MA,02215 +306159,AAA Batteries (4-pack),1,2.99,2019-12-07 20:09:00,564 Hickory St, New York City,NY,10001 +306160,LG Washing Machine,1,600.0,2019-12-02 04:34:00,977 Willow St, San Francisco,CA,94016 +306161,ThinkPad Laptop,1,999.99,2019-12-03 22:35:00,186 Madison St, Seattle,WA,98101 +306162,ThinkPad Laptop,1,999.99,2019-12-12 09:18:00,2 1st St, New York City,NY,10001 +306163,AA Batteries (4-pack),1,3.84,2019-12-10 23:09:00,273 Cherry St, Los Angeles,CA,90001 +306164,Lightning Charging Cable,1,14.95,2019-12-11 10:45:00,108 Ridge St, New York City,NY,10001 +306165,Bose SoundSport Headphones,1,99.99,2019-12-31 21:42:00,3 2nd St, Los Angeles,CA,90001 +306166,AAA Batteries (4-pack),1,2.99,2019-12-16 12:46:00,453 8th St, Dallas,TX,75001 +306167,USB-C Charging Cable,1,11.95,2019-12-02 16:43:00,219 West St, New York City,NY,10001 +306168,AA Batteries (4-pack),1,3.84,2019-12-13 21:56:00,186 North St, New York City,NY,10001 +306169,iPhone,1,700.0,2019-12-14 14:34:00,416 Jefferson St, Boston,MA,02215 +306169,Lightning Charging Cable,1,14.95,2019-12-14 14:34:00,416 Jefferson St, Boston,MA,02215 +306170,Wired Headphones,1,11.99,2019-12-27 21:34:00,892 River St, Los Angeles,CA,90001 +306171,Vareebadd Phone,1,400.0,2019-12-12 18:21:00,328 7th St, San Francisco,CA,94016 +306172,AAA Batteries (4-pack),1,2.99,2019-12-10 09:38:00,185 10th St, Portland,ME,04101 +306173,AA Batteries (4-pack),1,3.84,2019-12-23 09:12:00,539 Walnut St, Austin,TX,73301 +306174,AA Batteries (4-pack),2,3.84,2019-12-29 11:53:00,82 14th St, Seattle,WA,98101 +306175,AA Batteries (4-pack),1,3.84,2019-12-11 20:10:00,657 1st St, Portland,OR,97035 +306176,Google Phone,1,600.0,2019-12-25 19:25:00,452 Church St, Seattle,WA,98101 +306177,27in 4K Gaming Monitor,1,389.99,2019-12-27 19:35:00,734 Walnut St, Portland,OR,97035 +306178,Bose SoundSport Headphones,1,99.99,2019-12-26 04:54:00,802 Center St, Austin,TX,73301 +306179,USB-C Charging Cable,1,11.95,2019-12-26 12:25:00,696 4th St, Los Angeles,CA,90001 +306180,Apple Airpods Headphones,1,150.0,2019-12-13 09:33:00,858 13th St, Boston,MA,02215 +306181,AA Batteries (4-pack),1,3.84,2019-12-18 16:05:00,837 Cherry St, Boston,MA,02215 +306182,AAA Batteries (4-pack),2,2.99,2019-12-17 12:22:00,339 9th St, San Francisco,CA,94016 +306183,27in 4K Gaming Monitor,1,389.99,2019-12-14 20:06:00,206 Hickory St, Seattle,WA,98101 +306184,Bose SoundSport Headphones,1,99.99,2019-12-27 11:17:00,503 Madison St, Dallas,TX,75001 +306185,iPhone,1,700.0,2019-12-11 13:25:00,278 14th St, Portland,OR,97035 +306186,Apple Airpods Headphones,1,150.0,2019-12-23 14:16:00,970 Jackson St, Seattle,WA,98101 +306187,Bose SoundSport Headphones,1,99.99,2019-12-16 10:49:00,424 Walnut St, Seattle,WA,98101 +306188,AA Batteries (4-pack),1,3.84,2019-12-15 14:07:00,834 West St, New York City,NY,10001 +306189,Apple Airpods Headphones,1,150.0,2019-12-11 16:46:00,723 South St, Los Angeles,CA,90001 +306190,Wired Headphones,1,11.99,2019-12-15 00:02:00,22 North St, Los Angeles,CA,90001 +306191,Apple Airpods Headphones,1,150.0,2019-12-10 03:10:00,950 River St, Seattle,WA,98101 +306192,Google Phone,1,600.0,2019-12-08 19:33:00,795 Elm St, Boston,MA,02215 +306193,Lightning Charging Cable,1,14.95,2019-12-11 10:21:00,620 Lincoln St, Los Angeles,CA,90001 +306194,iPhone,1,700.0,2019-12-04 11:12:00,382 South St, New York City,NY,10001 +306194,Wired Headphones,1,11.99,2019-12-04 11:12:00,382 South St, New York City,NY,10001 +306195,Lightning Charging Cable,1,14.95,2019-12-10 17:49:00,998 Jefferson St, San Francisco,CA,94016 +306196,AAA Batteries (4-pack),1,2.99,2019-12-26 13:02:00,718 Walnut St, San Francisco,CA,94016 +306197,USB-C Charging Cable,1,11.95,2019-12-11 15:03:00,867 Church St, Atlanta,GA,30301 +306198,Bose SoundSport Headphones,1,99.99,2019-12-22 05:05:00,421 6th St, Austin,TX,73301 +306199,Wired Headphones,1,11.99,2019-12-19 20:16:00,943 Jackson St, Boston,MA,02215 +306200,Wired Headphones,1,11.99,2019-12-08 11:06:00,308 Dogwood St, Atlanta,GA,30301 +306201,AA Batteries (4-pack),1,3.84,2019-12-03 18:16:00,45 Center St, Boston,MA,02215 +306202,20in Monitor,1,109.99,2019-12-11 16:54:00,511 Walnut St, Atlanta,GA,30301 +306203,USB-C Charging Cable,1,11.95,2019-12-24 00:31:00,275 Hill St, San Francisco,CA,94016 +306204,AAA Batteries (4-pack),2,2.99,2019-12-13 21:29:00,556 2nd St, Los Angeles,CA,90001 +306205,AAA Batteries (4-pack),1,2.99,2019-12-25 10:27:00,272 North St, Atlanta,GA,30301 +306206,AAA Batteries (4-pack),1,2.99,2019-12-04 14:38:00,913 West St, San Francisco,CA,94016 +306207,AAA Batteries (4-pack),1,2.99,2019-12-16 20:09:00,697 9th St, Dallas,TX,75001 +306208,USB-C Charging Cable,1,11.95,2019-12-02 14:00:00,312 10th St, Boston,MA,02215 +306209,AA Batteries (4-pack),1,3.84,2019-12-07 13:23:00,68 Chestnut St, Atlanta,GA,30301 +306210,Wired Headphones,1,11.99,2019-12-12 16:20:00,716 14th St, Los Angeles,CA,90001 +306211,34in Ultrawide Monitor,1,379.99,2019-12-05 08:53:00,859 Chestnut St, Portland,ME,04101 +306212,Lightning Charging Cable,1,14.95,2019-12-13 05:51:00,414 North St, Boston,MA,02215 +306213,Wired Headphones,1,11.99,2019-12-28 22:26:00,36 Ridge St, San Francisco,CA,94016 +306214,AAA Batteries (4-pack),1,2.99,2019-12-26 07:33:00,513 Cherry St, Boston,MA,02215 +306215,ThinkPad Laptop,1,999.99,2019-12-28 07:19:00,688 Spruce St, Boston,MA,02215 +306216,20in Monitor,1,109.99,2019-12-05 21:27:00,98 10th St, Atlanta,GA,30301 +306217,USB-C Charging Cable,1,11.95,2019-12-26 09:21:00,378 Chestnut St, Atlanta,GA,30301 +306218,AAA Batteries (4-pack),1,2.99,2019-12-23 23:00:00,125 Spruce St, Boston,MA,02215 +306219,Google Phone,1,600.0,2019-12-26 14:56:00,470 Lakeview St, Portland,OR,97035 +306219,USB-C Charging Cable,1,11.95,2019-12-26 14:56:00,470 Lakeview St, Portland,OR,97035 +306220,AAA Batteries (4-pack),1,2.99,2019-12-02 20:48:00,782 8th St, Boston,MA,02215 +306221,AA Batteries (4-pack),1,3.84,2019-12-11 11:16:00,516 Dogwood St, Los Angeles,CA,90001 +306222,Bose SoundSport Headphones,1,99.99,2019-12-30 14:10:00,521 Walnut St, Dallas,TX,75001 +306223,AA Batteries (4-pack),2,3.84,2019-12-20 15:23:00,690 7th St, Dallas,TX,75001 +306224,USB-C Charging Cable,1,11.95,2019-12-28 17:27:00,242 Highland St, San Francisco,CA,94016 +306225,Google Phone,1,600.0,2019-12-02 21:13:00,581 5th St, Dallas,TX,75001 +306226,Lightning Charging Cable,1,14.95,2019-12-22 10:41:00,538 9th St, Seattle,WA,98101 +306227,Wired Headphones,1,11.99,2019-12-05 17:10:00,648 9th St, Los Angeles,CA,90001 +306228,AA Batteries (4-pack),1,3.84,2019-12-23 17:32:00,56 Park St, Los Angeles,CA,90001 +306229,AAA Batteries (4-pack),1,2.99,2019-12-07 18:53:00,995 Dogwood St, Atlanta,GA,30301 +306230,AAA Batteries (4-pack),1,2.99,2019-12-09 06:24:00,347 Lakeview St, San Francisco,CA,94016 +306231,LG Washing Machine,1,600.0,2019-12-03 20:25:00,503 Chestnut St, San Francisco,CA,94016 +306232,USB-C Charging Cable,1,11.95,2019-12-05 18:54:00,193 Cedar St, New York City,NY,10001 +306233,Google Phone,1,600.0,2019-12-30 20:35:00,587 Dogwood St, Boston,MA,02215 +306234,Apple Airpods Headphones,1,150.0,2019-12-11 20:08:00,908 11th St, San Francisco,CA,94016 +306235,AAA Batteries (4-pack),2,2.99,2019-12-23 14:35:00,444 Madison St, Atlanta,GA,30301 +306236,Lightning Charging Cable,1,14.95,2019-12-22 13:53:00,749 13th St, New York City,NY,10001 +306237,Lightning Charging Cable,1,14.95,2019-12-05 12:05:00,122 Meadow St, San Francisco,CA,94016 +306238,Lightning Charging Cable,1,14.95,2019-12-20 08:10:00,660 Chestnut St, San Francisco,CA,94016 +306239,27in 4K Gaming Monitor,1,389.99,2019-12-01 18:58:00,702 Center St, San Francisco,CA,94016 +306240,Apple Airpods Headphones,1,150.0,2019-12-28 19:59:00,576 Jefferson St, San Francisco,CA,94016 +306241,Wired Headphones,1,11.99,2019-12-19 19:02:00,872 11th St, Portland,OR,97035 +306242,27in 4K Gaming Monitor,1,389.99,2019-12-14 15:51:00,571 Sunset St, Seattle,WA,98101 +306243,27in FHD Monitor,1,149.99,2019-12-11 21:44:00,862 Washington St, Dallas,TX,75001 +306244,USB-C Charging Cable,1,11.95,2019-12-13 06:34:00,300 Chestnut St, Boston,MA,02215 +306245,USB-C Charging Cable,1,11.95,2019-12-23 17:34:00,143 Pine St, San Francisco,CA,94016 +306246,iPhone,1,700.0,2019-12-06 18:37:00,761 Church St, San Francisco,CA,94016 +306246,Wired Headphones,1,11.99,2019-12-06 18:37:00,761 Church St, San Francisco,CA,94016 +306247,Lightning Charging Cable,1,14.95,2019-12-24 22:06:00,478 5th St, New York City,NY,10001 +306248,AAA Batteries (4-pack),6,2.99,2019-12-23 18:08:00,598 Church St, New York City,NY,10001 +306249,Wired Headphones,1,11.99,2019-12-26 18:35:00,854 Sunset St, Los Angeles,CA,90001 +306250,Flatscreen TV,1,300.0,2019-12-02 15:46:00,468 14th St, Boston,MA,02215 +306251,Bose SoundSport Headphones,1,99.99,2019-12-25 10:02:00,518 Adams St, San Francisco,CA,94016 +306252,USB-C Charging Cable,1,11.95,2019-12-31 13:27:00,654 Sunset St, Austin,TX,73301 +306253,Bose SoundSport Headphones,1,99.99,2019-12-07 19:33:00,534 Jefferson St, Seattle,WA,98101 +306254,USB-C Charging Cable,1,11.95,2019-12-24 16:30:00,812 Forest St, Los Angeles,CA,90001 +306255,Lightning Charging Cable,1,14.95,2019-12-07 10:57:00,650 Center St, Dallas,TX,75001 +306256,Lightning Charging Cable,1,14.95,2019-12-01 19:18:00,597 8th St, Los Angeles,CA,90001 +306257,Google Phone,1,600.0,2019-12-20 14:03:00,703 2nd St, Boston,MA,02215 +306258,Lightning Charging Cable,1,14.95,2019-12-15 20:16:00,116 Lincoln St, Seattle,WA,98101 +306258,USB-C Charging Cable,1,11.95,2019-12-15 20:16:00,116 Lincoln St, Seattle,WA,98101 +306259,USB-C Charging Cable,1,11.95,2019-12-07 22:42:00,122 Dogwood St, Seattle,WA,98101 +306260,Apple Airpods Headphones,1,150.0,2019-12-17 18:48:00,729 North St, Los Angeles,CA,90001 +306261,Apple Airpods Headphones,1,150.0,2019-12-19 17:22:00,573 Madison St, Seattle,WA,98101 +306261,27in 4K Gaming Monitor,1,389.99,2019-12-19 17:22:00,573 Madison St, Seattle,WA,98101 +306262,iPhone,1,700.0,2019-12-27 20:35:00,86 Adams St, San Francisco,CA,94016 +306263,Bose SoundSport Headphones,1,99.99,2019-12-04 22:37:00,196 5th St, Austin,TX,73301 +306264,AA Batteries (4-pack),1,3.84,2019-12-14 14:07:00,371 Elm St, Austin,TX,73301 +306265,Apple Airpods Headphones,1,150.0,2019-12-26 16:06:00,967 7th St, Austin,TX,73301 +306266,Apple Airpods Headphones,1,150.0,2019-12-17 12:03:00,710 Lakeview St, Seattle,WA,98101 +306267,iPhone,1,700.0,2019-12-23 18:58:00,41 Jackson St, Atlanta,GA,30301 +306268,AA Batteries (4-pack),1,3.84,2019-12-13 15:06:00,536 7th St, San Francisco,CA,94016 +306269,iPhone,1,700.0,2019-12-15 17:21:00,764 8th St, Portland,OR,97035 +306270,iPhone,1,700.0,2019-12-21 06:27:00,293 Cherry St, San Francisco,CA,94016 +306271,AAA Batteries (4-pack),2,2.99,2019-12-10 13:17:00,487 River St, New York City,NY,10001 +306272,27in 4K Gaming Monitor,1,389.99,2019-12-15 12:19:00,24 Madison St, Los Angeles,CA,90001 +306273,Macbook Pro Laptop,1,1700.0,2019-12-28 18:51:00,971 Sunset St, Portland,OR,97035 +306274,27in FHD Monitor,1,149.99,2019-12-11 18:37:00,185 4th St, San Francisco,CA,94016 +306275,iPhone,1,700.0,2019-12-25 22:02:00,82 4th St, Los Angeles,CA,90001 +306276,Flatscreen TV,1,300.0,2019-12-08 17:16:00,637 South St, New York City,NY,10001 +306277,Google Phone,1,600.0,2019-12-12 06:28:00,735 Chestnut St, Portland,OR,97035 +306277,Bose SoundSport Headphones,1,99.99,2019-12-12 06:28:00,735 Chestnut St, Portland,OR,97035 +306278,USB-C Charging Cable,1,11.95,2019-12-29 20:44:00,962 Sunset St, San Francisco,CA,94016 +306279,Lightning Charging Cable,1,14.95,2019-12-31 12:38:00,999 14th St, Los Angeles,CA,90001 +306280,Apple Airpods Headphones,1,150.0,2019-12-08 21:07:00,18 Jackson St, Boston,MA,02215 +306281,Wired Headphones,1,11.99,2019-12-11 10:48:00,26 River St, San Francisco,CA,94016 +306282,Bose SoundSport Headphones,1,99.99,2019-12-12 14:37:00,574 Wilson St, San Francisco,CA,94016 +306283,20in Monitor,1,109.99,2019-12-10 10:06:00,334 Meadow St, Los Angeles,CA,90001 +306284,USB-C Charging Cable,1,11.95,2019-12-27 19:23:00,560 Main St, San Francisco,CA,94016 +306285,ThinkPad Laptop,1,999.99,2019-12-18 13:00:00,982 Dogwood St, Los Angeles,CA,90001 +306286,AA Batteries (4-pack),1,3.84,2019-12-01 07:27:00,973 Cherry St, New York City,NY,10001 +306287,27in FHD Monitor,1,149.99,2019-12-24 13:25:00,502 5th St, San Francisco,CA,94016 +306288,USB-C Charging Cable,1,11.95,2019-12-20 16:40:00,221 7th St, San Francisco,CA,94016 +306289,AAA Batteries (4-pack),2,2.99,2019-12-17 20:05:00,896 West St, San Francisco,CA,94016 +306290,Apple Airpods Headphones,1,150.0,2019-12-08 20:30:00,215 Chestnut St, New York City,NY,10001 +306291,AA Batteries (4-pack),1,3.84,2019-12-18 17:24:00,177 West St, Seattle,WA,98101 +306292,USB-C Charging Cable,1,11.95,2019-12-04 17:18:00,58 Adams St, Los Angeles,CA,90001 +306293,ThinkPad Laptop,1,999.99,2019-12-09 14:56:00,784 West St, Atlanta,GA,30301 +306294,34in Ultrawide Monitor,1,379.99,2019-12-22 19:06:00,130 Forest St, Seattle,WA,98101 +306295,Wired Headphones,1,11.99,2019-12-01 21:38:00,43 Church St, Portland,OR,97035 +306296,USB-C Charging Cable,1,11.95,2019-12-18 09:03:00,256 Johnson St, Seattle,WA,98101 +306297,Google Phone,1,600.0,2019-12-01 12:18:00,791 14th St, Los Angeles,CA,90001 +306298,iPhone,1,700.0,2019-12-09 11:00:00,508 River St, Seattle,WA,98101 +306299,Lightning Charging Cable,1,14.95,2019-12-21 14:21:00,921 River St, Los Angeles,CA,90001 +306300,Apple Airpods Headphones,1,150.0,2019-12-23 13:26:00,144 Sunset St, New York City,NY,10001 +306301,AA Batteries (4-pack),1,3.84,2019-12-24 18:43:00,155 Jefferson St, Seattle,WA,98101 +306302,Wired Headphones,1,11.99,2019-12-10 09:25:00,86 Elm St, New York City,NY,10001 +306303,27in 4K Gaming Monitor,1,389.99,2019-12-29 09:40:00,289 Cherry St, San Francisco,CA,94016 +306304,Wired Headphones,1,11.99,2019-12-13 09:04:00,437 Dogwood St, San Francisco,CA,94016 +306305,AAA Batteries (4-pack),1,2.99,2019-12-26 18:28:00,959 12th St, New York City,NY,10001 +306306,27in 4K Gaming Monitor,1,389.99,2019-12-29 05:08:00,560 7th St, San Francisco,CA,94016 +306307,iPhone,1,700.0,2019-12-09 21:55:00,249 Pine St, San Francisco,CA,94016 +306308,Flatscreen TV,1,300.0,2019-12-13 18:00:00,960 Hill St, Seattle,WA,98101 +306309,AA Batteries (4-pack),1,3.84,2019-12-24 13:51:00,110 Maple St, Boston,MA,02215 +306310,USB-C Charging Cable,1,11.95,2019-12-03 01:25:00,688 Chestnut St, Austin,TX,73301 +306311,iPhone,1,700.0,2019-12-11 23:36:00,462 Willow St, Seattle,WA,98101 +306311,AAA Batteries (4-pack),1,2.99,2019-12-11 23:36:00,462 Willow St, Seattle,WA,98101 +306312,27in FHD Monitor,1,149.99,2019-12-24 08:35:00,299 7th St, Atlanta,GA,30301 +306313,Bose SoundSport Headphones,1,99.99,2019-12-06 05:39:00,470 6th St, New York City,NY,10001 +306314,34in Ultrawide Monitor,1,379.99,2019-12-17 11:58:00,576 Jefferson St, Atlanta,GA,30301 +306315,Bose SoundSport Headphones,1,99.99,2019-12-05 10:43:00,102 Johnson St, Portland,OR,97035 +306316,Macbook Pro Laptop,1,1700.0,2019-12-20 13:25:00,585 Forest St, San Francisco,CA,94016 +306317,iPhone,1,700.0,2019-12-24 11:24:00,790 Church St, New York City,NY,10001 +306318,Wired Headphones,1,11.99,2019-12-30 20:39:00,302 13th St, New York City,NY,10001 +306319,USB-C Charging Cable,1,11.95,2019-12-31 18:39:00,60 West St, New York City,NY,10001 +306320,Bose SoundSport Headphones,1,99.99,2019-12-16 17:45:00,209 Jefferson St, Los Angeles,CA,90001 +306321,iPhone,1,700.0,2019-12-12 20:48:00,36 Johnson St, Austin,TX,73301 +306322,AAA Batteries (4-pack),1,2.99,2019-12-29 16:05:00,858 5th St, San Francisco,CA,94016 +306323,AAA Batteries (4-pack),2,2.99,2019-12-13 08:58:00,216 Dogwood St, Dallas,TX,75001 +306324,AA Batteries (4-pack),1,3.84,2019-12-24 15:01:00,139 12th St, Seattle,WA,98101 +306325,AA Batteries (4-pack),2,3.84,2019-12-28 21:07:00,879 Lakeview St, New York City,NY,10001 +306326,Google Phone,1,600.0,2019-12-22 15:52:00,917 Maple St, Boston,MA,02215 +306327,Bose SoundSport Headphones,1,99.99,2019-12-02 18:19:00,60 Main St, New York City,NY,10001 +306328,Wired Headphones,1,11.99,2019-12-02 18:18:00,152 Lake St, Boston,MA,02215 +306329,Wired Headphones,1,11.99,2019-12-23 21:46:00,709 8th St, San Francisco,CA,94016 +306330,AAA Batteries (4-pack),1,2.99,2019-12-25 11:50:00,216 8th St, Austin,TX,73301 +306331,AA Batteries (4-pack),1,3.84,2019-12-25 10:38:00,601 7th St, San Francisco,CA,94016 +306332,iPhone,1,700.0,2019-12-17 15:56:00,552 Spruce St, Austin,TX,73301 +306332,Lightning Charging Cable,1,14.95,2019-12-17 15:56:00,552 Spruce St, Austin,TX,73301 +306333,AA Batteries (4-pack),1,3.84,2019-12-21 15:20:00,102 Park St, Los Angeles,CA,90001 +306334,USB-C Charging Cable,1,11.95,2019-12-25 20:36:00,815 River St, Los Angeles,CA,90001 +306335,Bose SoundSport Headphones,1,99.99,2019-12-27 09:18:00,975 14th St, Atlanta,GA,30301 +306336,20in Monitor,1,109.99,2019-12-28 23:22:00,570 13th St, San Francisco,CA,94016 +306337,Bose SoundSport Headphones,1,99.99,2019-12-13 15:26:00,493 Lakeview St, Boston,MA,02215 +306338,Wired Headphones,2,11.99,2019-12-06 20:47:00,744 Johnson St, Dallas,TX,75001 +306339,iPhone,1,700.0,2019-12-24 16:56:00,710 Park St, Portland,OR,97035 +306340,USB-C Charging Cable,2,11.95,2019-12-31 14:12:00,460 South St, Los Angeles,CA,90001 +306341,USB-C Charging Cable,1,11.95,2019-12-12 14:41:00,245 Forest St, New York City,NY,10001 +306342,AAA Batteries (4-pack),2,2.99,2019-12-21 15:14:00,762 10th St, New York City,NY,10001 +306343,Wired Headphones,1,11.99,2019-12-04 14:34:00,108 Meadow St, San Francisco,CA,94016 +306344,USB-C Charging Cable,1,11.95,2019-12-02 14:55:00,107 North St, Boston,MA,02215 +306345,AAA Batteries (4-pack),2,2.99,2019-12-26 09:39:00,747 River St, Los Angeles,CA,90001 +306346,Apple Airpods Headphones,1,150.0,2019-12-28 07:47:00,519 Highland St, Austin,TX,73301 +306347,USB-C Charging Cable,1,11.95,2019-12-15 09:14:00,57 Highland St, Portland,OR,97035 +306348,Lightning Charging Cable,1,14.95,2019-12-23 19:25:00,710 Sunset St, Los Angeles,CA,90001 +306349,USB-C Charging Cable,1,11.95,2019-12-14 17:25:00,377 Madison St, Boston,MA,02215 +306350,Google Phone,1,600.0,2019-12-24 13:49:00,794 Hickory St, Los Angeles,CA,90001 +306351,AAA Batteries (4-pack),1,2.99,2019-12-08 20:57:00,945 4th St, Boston,MA,02215 +306352,AAA Batteries (4-pack),1,2.99,2019-12-14 16:47:00,474 Jackson St, Atlanta,GA,30301 +306353,AAA Batteries (4-pack),2,2.99,2019-12-13 22:31:00,79 10th St, Dallas,TX,75001 +306354,AAA Batteries (4-pack),1,2.99,2019-12-01 15:43:00,452 Lakeview St, Seattle,WA,98101 +306355,Flatscreen TV,1,300.0,2019-12-13 19:07:00,222 Center St, Atlanta,GA,30301 +306356,20in Monitor,1,109.99,2019-12-09 08:48:00,189 5th St, Boston,MA,02215 +306357,27in FHD Monitor,1,149.99,2019-12-25 19:29:00,376 Chestnut St, Dallas,TX,75001 +306358,AAA Batteries (4-pack),2,2.99,2019-12-24 11:36:00,78 Church St, Los Angeles,CA,90001 +306359,USB-C Charging Cable,1,11.95,2019-12-20 08:45:00,151 1st St, San Francisco,CA,94016 +306360,AAA Batteries (4-pack),3,2.99,2019-12-21 09:42:00,260 Elm St, New York City,NY,10001 +306361,AA Batteries (4-pack),1,3.84,2019-12-19 22:09:00,561 1st St, San Francisco,CA,94016 +306362,AA Batteries (4-pack),2,3.84,2019-12-27 11:17:00,862 Lincoln St, Los Angeles,CA,90001 +306363,AA Batteries (4-pack),4,3.84,2019-12-05 03:19:00,222 South St, Los Angeles,CA,90001 +306364,USB-C Charging Cable,1,11.95,2019-12-06 12:40:00,253 West St, Boston,MA,02215 +306365,Bose SoundSport Headphones,1,99.99,2019-12-20 16:53:00,998 8th St, Austin,TX,73301 +306366,Wired Headphones,1,11.99,2019-12-15 21:31:00,812 Meadow St, San Francisco,CA,94016 +306367,Macbook Pro Laptop,1,1700.0,2019-12-05 19:23:00,744 West St, Portland,ME,04101 +306368,Macbook Pro Laptop,1,1700.0,2019-12-26 22:07:00,459 13th St, Los Angeles,CA,90001 +306369,Flatscreen TV,1,300.0,2019-12-26 11:34:00,260 Walnut St, Boston,MA,02215 +306370,AA Batteries (4-pack),2,3.84,2019-12-26 17:18:00,356 Forest St, Los Angeles,CA,90001 +306371,Lightning Charging Cable,1,14.95,2019-12-15 06:11:00,429 Ridge St, New York City,NY,10001 +306372,Wired Headphones,1,11.99,2019-12-23 17:28:00,255 South St, Los Angeles,CA,90001 +306373,USB-C Charging Cable,3,11.95,2019-12-16 16:34:00,419 Madison St, San Francisco,CA,94016 +306374,Bose SoundSport Headphones,1,99.99,2019-12-22 12:34:00,814 Hickory St, Boston,MA,02215 +306375,27in FHD Monitor,1,149.99,2019-12-25 12:46:00,447 Highland St, San Francisco,CA,94016 +306376,Bose SoundSport Headphones,1,99.99,2019-12-17 06:54:00,368 North St, Seattle,WA,98101 +306377,Lightning Charging Cable,1,14.95,2019-12-21 02:10:00,752 Sunset St, San Francisco,CA,94016 +306378,AA Batteries (4-pack),2,3.84,2019-12-08 20:34:00,673 Main St, Boston,MA,02215 +306379,Wired Headphones,1,11.99,2019-12-09 03:45:00,460 5th St, Dallas,TX,75001 +306380,AA Batteries (4-pack),1,3.84,2019-12-05 12:15:00,284 Walnut St, San Francisco,CA,94016 +306381,AAA Batteries (4-pack),1,2.99,2019-12-14 10:43:00,270 Jefferson St, San Francisco,CA,94016 +306382,Lightning Charging Cable,1,14.95,2019-12-11 11:31:00,584 Walnut St, Boston,MA,02215 +306383,AAA Batteries (4-pack),1,2.99,2019-12-20 20:28:00,961 Jackson St, Dallas,TX,75001 +306384,Google Phone,1,600.0,2019-12-16 16:53:00,869 Lincoln St, Dallas,TX,75001 +306385,USB-C Charging Cable,1,11.95,2019-12-14 17:15:00,147 14th St, Seattle,WA,98101 +306386,iPhone,1,700.0,2019-12-08 14:22:00,424 Maple St, Seattle,WA,98101 +306387,Wired Headphones,1,11.99,2019-12-15 11:21:00,286 Adams St, San Francisco,CA,94016 +306388,AA Batteries (4-pack),1,3.84,2019-12-02 01:57:00,22 1st St, Boston,MA,02215 +306389,AAA Batteries (4-pack),2,2.99,2019-12-03 15:35:00,846 Pine St, San Francisco,CA,94016 +306390,Apple Airpods Headphones,1,150.0,2019-12-16 15:20:00,2 Washington St, Atlanta,GA,30301 +306391,Lightning Charging Cable,1,14.95,2019-12-08 12:39:00,795 Ridge St, Seattle,WA,98101 +306392,AAA Batteries (4-pack),1,2.99,2019-12-04 10:28:00,202 Spruce St, New York City,NY,10001 +306393,Lightning Charging Cable,1,14.95,2019-12-02 07:46:00,404 2nd St, San Francisco,CA,94016 +306394,AAA Batteries (4-pack),4,2.99,2019-12-14 11:54:00,616 Maple St, Dallas,TX,75001 +306395,Apple Airpods Headphones,1,150.0,2019-12-11 13:38:00,318 Church St, Portland,OR,97035 +306396,AA Batteries (4-pack),1,3.84,2019-12-02 11:12:00,776 Park St, Dallas,TX,75001 +306397,AAA Batteries (4-pack),2,2.99,2019-12-02 07:26:00,676 Highland St, Boston,MA,02215 +306398,20in Monitor,1,109.99,2019-12-26 15:52:00,197 South St, Los Angeles,CA,90001 +306399,AA Batteries (4-pack),1,3.84,2019-12-22 09:04:00,962 Madison St, San Francisco,CA,94016 +306400,AA Batteries (4-pack),2,3.84,2019-12-02 12:34:00,541 Adams St, Dallas,TX,75001 +306401,Wired Headphones,1,11.99,2019-12-28 22:44:00,923 Washington St, Boston,MA,02215 +306402,Apple Airpods Headphones,1,150.0,2019-12-21 08:40:00,926 Johnson St, San Francisco,CA,94016 +306403,34in Ultrawide Monitor,1,379.99,2019-12-10 17:17:00,952 Meadow St, Los Angeles,CA,90001 +306404,AAA Batteries (4-pack),1,2.99,2019-12-08 12:22:00,880 Sunset St, San Francisco,CA,94016 +306405,Apple Airpods Headphones,1,150.0,2019-12-09 09:24:00,72 Hill St, Atlanta,GA,30301 +306406,27in FHD Monitor,1,149.99,2019-12-15 12:49:00,677 Wilson St, San Francisco,CA,94016 +306407,AA Batteries (4-pack),3,3.84,2019-12-29 19:07:00,298 1st St, Los Angeles,CA,90001 +306408,Apple Airpods Headphones,1,150.0,2019-12-11 23:20:00,125 7th St, Dallas,TX,75001 +306409,USB-C Charging Cable,1,11.95,2019-12-15 13:13:00,850 6th St, Boston,MA,02215 +306410,Lightning Charging Cable,1,14.95,2019-12-31 14:59:00,264 Pine St, Los Angeles,CA,90001 +306411,Lightning Charging Cable,1,14.95,2019-12-09 00:58:00,112 Hill St, Portland,ME,04101 +306412,USB-C Charging Cable,1,11.95,2019-12-22 17:19:00,334 Sunset St, San Francisco,CA,94016 +306413,AA Batteries (4-pack),1,3.84,2019-12-31 08:23:00,614 West St, Portland,OR,97035 +306414,AAA Batteries (4-pack),2,2.99,2019-12-28 09:44:00,682 Hill St, Seattle,WA,98101 +306415,AAA Batteries (4-pack),1,2.99,2019-12-17 07:42:00,570 Church St, New York City,NY,10001 +306416,27in 4K Gaming Monitor,1,389.99,2019-12-23 09:10:00,307 Ridge St, Los Angeles,CA,90001 +306417,Wired Headphones,1,11.99,2019-12-29 02:07:00,466 Lake St, Dallas,TX,75001 +306418,USB-C Charging Cable,1,11.95,2019-12-19 19:33:00,292 South St, Atlanta,GA,30301 +306419,USB-C Charging Cable,1,11.95,2019-12-04 14:57:00,975 10th St, Boston,MA,02215 +306420,AAA Batteries (4-pack),2,2.99,2019-12-30 14:15:00,611 Cedar St, Los Angeles,CA,90001 +306421,Lightning Charging Cable,1,14.95,2019-12-04 15:26:00,377 Dogwood St, New York City,NY,10001 +306422,AA Batteries (4-pack),1,3.84,2019-12-05 11:19:00,467 Sunset St, Seattle,WA,98101 +306423,ThinkPad Laptop,1,999.99,2019-12-20 14:53:00,7 10th St, Boston,MA,02215 +306424,Apple Airpods Headphones,1,150.0,2019-12-24 14:43:00,77 6th St, New York City,NY,10001 +306425,Macbook Pro Laptop,1,1700.0,2019-12-10 16:26:00,808 Main St, San Francisco,CA,94016 +306426,USB-C Charging Cable,1,11.95,2019-12-01 18:33:00,270 8th St, Boston,MA,02215 +306427,AAA Batteries (4-pack),1,2.99,2019-12-13 16:34:00,102 Maple St, Austin,TX,73301 +306428,Flatscreen TV,1,300.0,2019-12-08 20:27:00,370 7th St, Boston,MA,02215 +306428,Lightning Charging Cable,1,14.95,2019-12-08 20:27:00,370 7th St, Boston,MA,02215 +306429,ThinkPad Laptop,1,999.99,2019-12-12 15:00:00,811 Lincoln St, Atlanta,GA,30301 +306430,USB-C Charging Cable,1,11.95,2019-12-27 14:36:00,639 Main St, San Francisco,CA,94016 +306431,34in Ultrawide Monitor,1,379.99,2019-12-07 09:13:00,471 9th St, New York City,NY,10001 +306432,Macbook Pro Laptop,1,1700.0,2019-12-04 13:39:00,990 Lakeview St, Boston,MA,02215 +306433,AA Batteries (4-pack),2,3.84,2019-12-22 21:42:00,885 Spruce St, Los Angeles,CA,90001 +306434,Lightning Charging Cable,1,14.95,2019-12-15 09:52:00,414 10th St, Dallas,TX,75001 +306435,Lightning Charging Cable,1,14.95,2019-12-11 21:17:00,467 10th St, San Francisco,CA,94016 +306436,Wired Headphones,1,11.99,2019-12-23 13:54:00,433 12th St, Los Angeles,CA,90001 +306437,USB-C Charging Cable,1,11.95,2019-12-03 11:59:00,881 Cherry St, Seattle,WA,98101 +306438,LG Washing Machine,1,600.0,2019-12-17 19:21:00,332 Walnut St, San Francisco,CA,94016 +306439,AAA Batteries (4-pack),1,2.99,2019-12-01 13:35:00,114 Forest St, Dallas,TX,75001 +306440,27in FHD Monitor,1,149.99,2019-12-26 19:03:00,290 Willow St, Portland,OR,97035 +306441,iPhone,1,700.0,2019-12-26 11:55:00,877 Center St, San Francisco,CA,94016 +306441,Wired Headphones,1,11.99,2019-12-26 11:55:00,877 Center St, San Francisco,CA,94016 +306442,iPhone,1,700.0,2019-12-17 16:26:00,25 Johnson St, San Francisco,CA,94016 +306443,Flatscreen TV,1,300.0,2019-12-09 16:23:00,637 Cedar St, Dallas,TX,75001 +306444,USB-C Charging Cable,3,11.95,2019-12-06 14:29:00,523 Jackson St, Atlanta,GA,30301 +306445,Lightning Charging Cable,1,14.95,2019-12-29 22:03:00,784 North St, Boston,MA,02215 +306446,Lightning Charging Cable,1,14.95,2019-12-02 18:31:00,493 North St, Los Angeles,CA,90001 +306447,Google Phone,1,600.0,2019-12-22 17:15:00,626 Willow St, San Francisco,CA,94016 +306448,AAA Batteries (4-pack),1,2.99,2019-12-12 07:43:00,298 7th St, Boston,MA,02215 +306449,iPhone,1,700.0,2019-12-26 23:43:00,787 Madison St, Seattle,WA,98101 +306450,Wired Headphones,1,11.99,2019-12-22 16:12:00,369 Ridge St, San Francisco,CA,94016 +306451,AA Batteries (4-pack),1,3.84,2019-12-07 10:52:00,869 Meadow St, Seattle,WA,98101 +306452,iPhone,1,700.0,2019-12-09 15:11:00,551 River St, Seattle,WA,98101 +306453,Wired Headphones,1,11.99,2019-12-17 08:45:00,290 7th St, Boston,MA,02215 +306454,AAA Batteries (4-pack),2,2.99,2019-12-24 07:19:00,55 River St, Portland,OR,97035 +306455,ThinkPad Laptop,1,999.99,2019-12-01 12:52:00,319 Pine St, New York City,NY,10001 +306456,Wired Headphones,1,11.99,2019-12-05 16:53:00,701 Willow St, San Francisco,CA,94016 +306457,Wired Headphones,1,11.99,2019-12-02 13:37:00,532 Highland St, Los Angeles,CA,90001 +306458,27in 4K Gaming Monitor,1,389.99,2019-12-22 11:27:00,641 West St, Atlanta,GA,30301 +306459,Lightning Charging Cable,1,14.95,2019-12-29 00:58:00,343 4th St, Boston,MA,02215 +306460,AAA Batteries (4-pack),2,2.99,2019-12-21 17:53:00,769 Dogwood St, New York City,NY,10001 +306461,27in 4K Gaming Monitor,1,389.99,2019-12-12 20:00:00,694 Cedar St, Atlanta,GA,30301 +306462,AA Batteries (4-pack),1,3.84,2019-12-03 10:45:00,661 Dogwood St, Los Angeles,CA,90001 +306463,AA Batteries (4-pack),1,3.84,2019-12-02 23:38:00,884 Park St, San Francisco,CA,94016 +306464,AA Batteries (4-pack),1,3.84,2019-12-16 00:22:00,308 11th St, New York City,NY,10001 +306465,Bose SoundSport Headphones,1,99.99,2019-12-07 13:21:00,104 Highland St, Dallas,TX,75001 +306466,Lightning Charging Cable,1,14.95,2019-12-14 10:57:00,167 Washington St, Seattle,WA,98101 +306467,Lightning Charging Cable,1,14.95,2019-12-31 21:25:00,29 14th St, San Francisco,CA,94016 +306468,AAA Batteries (4-pack),1,2.99,2019-12-16 16:14:00,95 Highland St, Atlanta,GA,30301 +306469,Lightning Charging Cable,1,14.95,2019-12-23 07:21:00,189 River St, Boston,MA,02215 +306470,Google Phone,1,600.0,2019-12-12 18:27:00,25 Center St, San Francisco,CA,94016 +306470,USB-C Charging Cable,1,11.95,2019-12-12 18:27:00,25 Center St, San Francisco,CA,94016 +306471,AAA Batteries (4-pack),1,2.99,2019-12-16 10:27:00,117 5th St, San Francisco,CA,94016 +306472,Lightning Charging Cable,1,14.95,2019-12-15 00:55:00,144 Forest St, New York City,NY,10001 +306473,USB-C Charging Cable,2,11.95,2019-12-12 14:29:00,810 Chestnut St, Dallas,TX,75001 +306474,Wired Headphones,1,11.99,2019-12-15 08:59:00,6 11th St, San Francisco,CA,94016 +306475,Wired Headphones,1,11.99,2019-12-13 17:18:00,869 South St, San Francisco,CA,94016 +306476,USB-C Charging Cable,1,11.95,2019-12-12 18:51:00,913 5th St, Boston,MA,02215 +306477,Wired Headphones,1,11.99,2019-12-11 10:32:00,394 Cedar St, Seattle,WA,98101 +306478,Macbook Pro Laptop,1,1700.0,2019-12-19 14:25:00,339 South St, Los Angeles,CA,90001 +306479,AA Batteries (4-pack),1,3.84,2019-12-07 06:58:00,910 Cherry St, New York City,NY,10001 +306480,USB-C Charging Cable,1,11.95,2019-12-14 08:19:00,598 Chestnut St, Los Angeles,CA,90001 +306481,34in Ultrawide Monitor,1,379.99,2019-12-02 18:12:00,81 Lake St, Boston,MA,02215 +306482,Lightning Charging Cable,1,14.95,2019-12-05 06:55:00,81 Hill St, Los Angeles,CA,90001 +306483,Apple Airpods Headphones,1,150.0,2019-12-13 00:20:00,523 Walnut St, Los Angeles,CA,90001 +306484,AAA Batteries (4-pack),3,2.99,2019-12-04 18:36:00,161 6th St, Los Angeles,CA,90001 +306485,Lightning Charging Cable,1,14.95,2019-12-01 21:57:00,337 9th St, San Francisco,CA,94016 +306486,27in 4K Gaming Monitor,1,389.99,2019-12-29 15:46:00,849 Lincoln St, New York City,NY,10001 +306487,Apple Airpods Headphones,1,150.0,2019-12-17 22:59:00,864 Center St, New York City,NY,10001 +306488,Wired Headphones,1,11.99,2019-12-01 21:43:00,971 Lincoln St, Boston,MA,02215 +306489,27in FHD Monitor,1,149.99,2019-12-24 15:30:00,51 Cherry St, New York City,NY,10001 +306490,20in Monitor,1,109.99,2019-12-25 15:40:00,456 14th St, Los Angeles,CA,90001 +306491,AA Batteries (4-pack),1,3.84,2019-12-22 17:02:00,225 Spruce St, Seattle,WA,98101 +306492,Lightning Charging Cable,1,14.95,2019-12-22 10:25:00,403 Ridge St, San Francisco,CA,94016 +306493,AAA Batteries (4-pack),1,2.99,2019-12-20 19:35:00,50 Maple St, Atlanta,GA,30301 +306494,Wired Headphones,1,11.99,2019-12-09 15:19:00,775 Hickory St, Boston,MA,02215 +306495,27in 4K Gaming Monitor,1,389.99,2019-12-04 16:34:00,949 Lake St, Boston,MA,02215 +306496,Flatscreen TV,1,300.0,2019-12-09 19:16:00,664 Walnut St, New York City,NY,10001 +306497,USB-C Charging Cable,1,11.95,2019-12-02 22:24:00,134 Cherry St, San Francisco,CA,94016 +306498,Lightning Charging Cable,1,14.95,2019-12-30 23:13:00,997 Jackson St, Los Angeles,CA,90001 +306498,AAA Batteries (4-pack),1,2.99,2019-12-30 23:13:00,997 Jackson St, Los Angeles,CA,90001 +306499,Bose SoundSport Headphones,1,99.99,2019-12-24 19:56:00,97 South St, Portland,ME,04101 +306500,Vareebadd Phone,1,400.0,2019-12-15 12:09:00,6 River St, Los Angeles,CA,90001 +306501,Bose SoundSport Headphones,1,99.99,2019-12-03 09:46:00,27 Washington St, Boston,MA,02215 +306502,Wired Headphones,1,11.99,2019-12-11 13:04:00,103 Cherry St, San Francisco,CA,94016 +306503,Lightning Charging Cable,2,14.95,2019-12-01 14:01:00,577 Maple St, San Francisco,CA,94016 +306504,Apple Airpods Headphones,1,150.0,2019-12-13 16:43:00,480 2nd St, Boston,MA,02215 +306505,20in Monitor,1,109.99,2019-12-07 12:05:00,23 5th St, San Francisco,CA,94016 +306506,Apple Airpods Headphones,1,150.0,2019-12-19 21:10:00,6 Park St, San Francisco,CA,94016 +306507,Lightning Charging Cable,1,14.95,2019-12-06 17:21:00,36 Pine St, New York City,NY,10001 +306508,Wired Headphones,1,11.99,2019-12-19 02:33:00,921 North St, San Francisco,CA,94016 +306509,27in FHD Monitor,1,149.99,2019-12-02 16:03:00,959 Park St, San Francisco,CA,94016 +306510,USB-C Charging Cable,1,11.95,2019-12-28 07:06:00,201 Park St, Boston,MA,02215 +306511,Macbook Pro Laptop,1,1700.0,2019-12-28 22:57:00,549 River St, San Francisco,CA,94016 +306512,Flatscreen TV,1,300.0,2019-12-28 17:56:00,575 13th St, Seattle,WA,98101 +306513,Google Phone,1,600.0,2019-12-06 14:37:00,964 Cedar St, San Francisco,CA,94016 +306514,Macbook Pro Laptop,1,1700.0,2019-12-22 18:33:00,947 Forest St, Los Angeles,CA,90001 +306515,Apple Airpods Headphones,1,150.0,2019-12-21 16:56:00,719 Ridge St, San Francisco,CA,94016 +306516,Wired Headphones,1,11.99,2019-12-05 16:19:00,912 7th St, Boston,MA,02215 +306517,Wired Headphones,1,11.99,2019-12-22 15:30:00,186 Church St, San Francisco,CA,94016 +306517,Google Phone,1,600.0,2019-12-22 15:30:00,186 Church St, San Francisco,CA,94016 +306518,AAA Batteries (4-pack),1,2.99,2019-12-21 21:44:00,964 4th St, Portland,ME,04101 +306519,USB-C Charging Cable,1,11.95,2019-12-19 10:35:00,266 Walnut St, New York City,NY,10001 +306520,Apple Airpods Headphones,1,150.0,2019-12-20 15:32:00,283 Pine St, Boston,MA,02215 +306521,USB-C Charging Cable,1,11.95,2019-12-16 08:36:00,503 Cedar St, San Francisco,CA,94016 +306522,Lightning Charging Cable,3,14.95,2019-12-16 01:18:00,881 Washington St, Los Angeles,CA,90001 +306523,AA Batteries (4-pack),1,3.84,2019-12-15 09:57:00,339 Cedar St, Boston,MA,02215 +306524,Macbook Pro Laptop,1,1700.0,2019-12-01 12:29:00,315 Elm St, Boston,MA,02215 +306525,Lightning Charging Cable,1,14.95,2019-12-04 20:21:00,636 Pine St, Seattle,WA,98101 +306526,27in 4K Gaming Monitor,1,389.99,2019-12-17 10:09:00,532 Wilson St, Seattle,WA,98101 +306527,20in Monitor,1,109.99,2019-12-11 15:30:00,886 12th St, New York City,NY,10001 +306527,Wired Headphones,1,11.99,2019-12-11 15:30:00,886 12th St, New York City,NY,10001 +306528,Wired Headphones,1,11.99,2019-12-18 19:01:00,115 Forest St, New York City,NY,10001 +306529,USB-C Charging Cable,1,11.95,2019-12-01 12:53:00,359 4th St, San Francisco,CA,94016 +306530,Bose SoundSport Headphones,1,99.99,2019-12-02 19:26:00,504 Church St, Portland,ME,04101 +306531,Flatscreen TV,1,300.0,2019-12-30 12:01:00,208 Sunset St, Portland,OR,97035 +306532,AA Batteries (4-pack),1,3.84,2019-12-15 21:17:00,112 Adams St, Los Angeles,CA,90001 +306533,Vareebadd Phone,1,400.0,2019-12-06 19:38:00,394 Main St, New York City,NY,10001 +306534,Lightning Charging Cable,1,14.95,2019-12-09 20:59:00,436 2nd St, Portland,OR,97035 +306535,AA Batteries (4-pack),1,3.84,2019-12-26 18:57:00,452 Adams St, Boston,MA,02215 +306536,USB-C Charging Cable,1,11.95,2019-12-10 11:49:00,549 Adams St, New York City,NY,10001 +306537,27in FHD Monitor,1,149.99,2019-12-27 20:36:00,290 Hill St, Los Angeles,CA,90001 +306538,AAA Batteries (4-pack),3,2.99,2019-12-27 08:11:00,876 12th St, Los Angeles,CA,90001 +306539,Macbook Pro Laptop,1,1700.0,2019-12-13 17:39:00,382 Sunset St, Portland,OR,97035 +306540,AAA Batteries (4-pack),1,2.99,2019-12-29 21:44:00,524 Church St, Dallas,TX,75001 +306541,AA Batteries (4-pack),1,3.84,2019-12-22 19:21:00,932 Elm St, Portland,OR,97035 +306542,USB-C Charging Cable,1,11.95,2019-12-14 16:01:00,528 Lake St, New York City,NY,10001 +306543,Lightning Charging Cable,1,14.95,2019-12-04 07:02:00,412 9th St, New York City,NY,10001 +306544,Flatscreen TV,1,300.0,2019-12-27 07:04:00,378 7th St, San Francisco,CA,94016 +306545,Lightning Charging Cable,2,14.95,2019-12-23 19:29:00,482 Johnson St, San Francisco,CA,94016 +306546,Macbook Pro Laptop,1,1700.0,2019-12-16 18:26:00,860 Washington St, Dallas,TX,75001 +306547,Wired Headphones,1,11.99,2019-12-03 16:51:00,262 Hickory St, San Francisco,CA,94016 +306548,34in Ultrawide Monitor,1,379.99,2019-12-03 15:33:00,690 Pine St, Seattle,WA,98101 +306549,Wired Headphones,1,11.99,2019-12-27 16:50:00,324 Maple St, San Francisco,CA,94016 +306550,Bose SoundSport Headphones,1,99.99,2019-12-29 16:24:00,681 Sunset St, Los Angeles,CA,90001 +306551,Wired Headphones,1,11.99,2019-12-11 17:30:00,287 River St, New York City,NY,10001 +306552,Wired Headphones,1,11.99,2019-12-31 14:50:00,857 West St, Dallas,TX,75001 +306553,Wired Headphones,1,11.99,2019-12-08 19:47:00,996 Jefferson St, Dallas,TX,75001 +306554,AAA Batteries (4-pack),1,2.99,2019-12-22 20:21:00,348 Church St, Seattle,WA,98101 +306555,AA Batteries (4-pack),2,3.84,2019-12-19 02:55:00,678 Cedar St, San Francisco,CA,94016 +306556,USB-C Charging Cable,1,11.95,2019-12-12 12:51:00,519 4th St, San Francisco,CA,94016 +306557,Flatscreen TV,1,300.0,2019-12-01 17:36:00,427 Hickory St, Seattle,WA,98101 +306558,AAA Batteries (4-pack),2,2.99,2019-12-24 10:41:00,122 5th St, San Francisco,CA,94016 +306559,Apple Airpods Headphones,1,150.0,2019-12-06 17:02:00,914 Chestnut St, Dallas,TX,75001 +306560,Wired Headphones,1,11.99,2019-12-18 22:54:00,862 7th St, San Francisco,CA,94016 +306561,Vareebadd Phone,1,400.0,2019-12-22 16:34:00,694 Maple St, Boston,MA,02215 +306562,Apple Airpods Headphones,1,150.0,2019-12-03 17:59:00,710 Spruce St, Dallas,TX,75001 +306563,27in FHD Monitor,1,149.99,2019-12-01 13:37:00,636 Park St, Dallas,TX,75001 +306564,USB-C Charging Cable,2,11.95,2019-12-29 22:47:00,514 River St, Austin,TX,73301 +306565,AA Batteries (4-pack),1,3.84,2019-12-31 12:07:00,314 12th St, Seattle,WA,98101 +306566,27in FHD Monitor,1,149.99,2019-12-01 19:22:00,111 7th St, Austin,TX,73301 +306567,Bose SoundSport Headphones,1,99.99,2019-12-29 22:10:00,681 Jefferson St, Los Angeles,CA,90001 +306568,AA Batteries (4-pack),2,3.84,2019-12-15 20:40:00,551 Chestnut St, Los Angeles,CA,90001 +306569,Lightning Charging Cable,1,14.95,2019-12-15 17:15:00,159 Meadow St, Atlanta,GA,30301 +306570,Wired Headphones,1,11.99,2019-12-27 19:34:00,75 6th St, San Francisco,CA,94016 +306571,Apple Airpods Headphones,1,150.0,2019-12-03 09:30:00,831 Spruce St, Boston,MA,02215 +306572,Flatscreen TV,1,300.0,2019-12-12 12:21:00,854 Jefferson St, New York City,NY,10001 +306573,USB-C Charging Cable,1,11.95,2019-12-13 14:51:00,4 Johnson St, Seattle,WA,98101 +306574,iPhone,1,700.0,2019-12-26 22:03:00,728 Highland St, Boston,MA,02215 +306574,Lightning Charging Cable,1,14.95,2019-12-26 22:03:00,728 Highland St, Boston,MA,02215 +306575,27in 4K Gaming Monitor,1,389.99,2019-12-26 19:11:00,855 Lake St, Boston,MA,02215 +306576,iPhone,1,700.0,2019-12-18 21:08:00,107 Walnut St, Portland,OR,97035 +306577,Macbook Pro Laptop,1,1700.0,2019-12-15 16:00:00,130 4th St, San Francisco,CA,94016 +306578,Wired Headphones,1,11.99,2019-12-05 01:02:00,134 12th St, Seattle,WA,98101 +306579,Vareebadd Phone,1,400.0,2019-12-08 20:40:00,331 Ridge St, Dallas,TX,75001 +306580,Wired Headphones,1,11.99,2019-12-07 14:29:00,850 Walnut St, New York City,NY,10001 +306581,27in FHD Monitor,1,149.99,2019-12-25 09:41:00,154 1st St, New York City,NY,10001 +306582,Wired Headphones,2,11.99,2019-12-26 10:34:00,379 Chestnut St, San Francisco,CA,94016 +306583,27in FHD Monitor,1,149.99,2019-12-26 05:41:00,898 Sunset St, New York City,NY,10001 +306584,Wired Headphones,1,11.99,2019-12-27 09:23:00,205 Willow St, Atlanta,GA,30301 +306585,Apple Airpods Headphones,1,150.0,2019-12-22 23:22:00,778 North St, Boston,MA,02215 +306586,iPhone,1,700.0,2019-12-20 13:54:00,976 Elm St, Los Angeles,CA,90001 +306587,27in FHD Monitor,1,149.99,2019-12-10 23:12:00,859 8th St, San Francisco,CA,94016 +306588,Lightning Charging Cable,2,14.95,2019-12-27 08:39:00,466 9th St, New York City,NY,10001 +306589,AAA Batteries (4-pack),1,2.99,2019-12-02 12:59:00,98 Lake St, Los Angeles,CA,90001 +306590,Bose SoundSport Headphones,1,99.99,2019-12-24 18:57:00,4 South St, San Francisco,CA,94016 +306591,AAA Batteries (4-pack),1,2.99,2019-12-06 20:21:00,829 Ridge St, Atlanta,GA,30301 +306592,Lightning Charging Cable,1,14.95,2019-12-10 13:23:00,976 Lincoln St, San Francisco,CA,94016 +306593,27in FHD Monitor,1,149.99,2019-12-04 09:02:00,562 Cherry St, San Francisco,CA,94016 +306594,Wired Headphones,1,11.99,2019-12-23 09:30:00,578 Park St, Los Angeles,CA,90001 +306595,AAA Batteries (4-pack),2,2.99,2019-12-03 13:34:00,831 Wilson St, New York City,NY,10001 +306596,USB-C Charging Cable,1,11.95,2019-12-20 09:13:00,511 5th St, Los Angeles,CA,90001 +306597,Lightning Charging Cable,1,14.95,2019-12-21 21:31:00,437 7th St, San Francisco,CA,94016 +306598,USB-C Charging Cable,1,11.95,2019-12-26 15:06:00,68 Wilson St, San Francisco,CA,94016 +306599,27in FHD Monitor,1,149.99,2019-12-27 21:24:00,768 North St, Los Angeles,CA,90001 +306600,AAA Batteries (4-pack),1,2.99,2019-12-25 16:51:00,359 14th St, San Francisco,CA,94016 +306601,Google Phone,1,600.0,2019-12-13 21:43:00,636 Johnson St, Portland,OR,97035 +306602,Wired Headphones,1,11.99,2019-12-02 12:40:00,414 Hickory St, San Francisco,CA,94016 +306603,Google Phone,1,600.0,2019-12-27 12:50:00,528 11th St, Seattle,WA,98101 +306603,USB-C Charging Cable,1,11.95,2019-12-27 12:50:00,528 11th St, Seattle,WA,98101 +306604,27in 4K Gaming Monitor,1,389.99,2019-12-07 13:52:00,289 9th St, San Francisco,CA,94016 +306605,Wired Headphones,1,11.99,2019-12-07 09:08:00,481 6th St, New York City,NY,10001 +306606,Apple Airpods Headphones,1,150.0,2019-12-21 12:04:00,536 Forest St, Atlanta,GA,30301 +306607,27in 4K Gaming Monitor,1,389.99,2019-12-16 10:07:00,222 Wilson St, Los Angeles,CA,90001 +306608,USB-C Charging Cable,1,11.95,2019-12-25 05:15:00,710 Main St, Boston,MA,02215 +306609,Bose SoundSport Headphones,1,99.99,2019-12-03 07:38:00,166 Lakeview St, San Francisco,CA,94016 +306610,USB-C Charging Cable,1,11.95,2019-12-11 09:14:00,497 Highland St, New York City,NY,10001 +306611,Vareebadd Phone,1,400.0,2019-12-24 16:38:00,53 Dogwood St, Los Angeles,CA,90001 +306611,Wired Headphones,1,11.99,2019-12-24 16:38:00,53 Dogwood St, Los Angeles,CA,90001 +306612,AA Batteries (4-pack),1,3.84,2019-12-09 12:48:00,749 4th St, Seattle,WA,98101 +306613,iPhone,1,700.0,2019-12-22 01:43:00,952 Meadow St, Los Angeles,CA,90001 +306614,ThinkPad Laptop,1,999.99,2019-12-18 13:11:00,566 Washington St, Seattle,WA,98101 +306615,USB-C Charging Cable,1,11.95,2019-12-06 05:31:00,857 Sunset St, New York City,NY,10001 +306616,AA Batteries (4-pack),1,3.84,2019-12-02 13:47:00,663 Lincoln St, San Francisco,CA,94016 +306617,AAA Batteries (4-pack),1,2.99,2019-12-02 13:03:00,997 Lake St, Dallas,TX,75001 +306618,Flatscreen TV,1,300.0,2019-12-05 15:45:00,832 Spruce St, Dallas,TX,75001 +306619,27in FHD Monitor,1,149.99,2019-12-27 17:07:00,240 Ridge St, Portland,OR,97035 +306620,ThinkPad Laptop,1,999.99,2019-12-24 20:04:00,214 Church St, New York City,NY,10001 +306621,34in Ultrawide Monitor,1,379.99,2019-12-11 08:21:00,802 12th St, Dallas,TX,75001 +306622,34in Ultrawide Monitor,1,379.99,2019-12-31 17:05:00,912 13th St, Boston,MA,02215 +306623,USB-C Charging Cable,1,11.95,2019-12-31 20:00:00,28 Ridge St, New York City,NY,10001 +306624,Wired Headphones,1,11.99,2019-12-29 12:53:00,907 14th St, Seattle,WA,98101 +306625,USB-C Charging Cable,1,11.95,2019-12-19 13:37:00,157 4th St, Seattle,WA,98101 +306626,Wired Headphones,1,11.99,2019-12-02 22:00:00,946 8th St, Los Angeles,CA,90001 +306627,Wired Headphones,2,11.99,2019-12-18 10:37:00,471 Sunset St, San Francisco,CA,94016 +306628,Wired Headphones,1,11.99,2019-12-06 09:49:00,180 7th St, Los Angeles,CA,90001 +306629,27in FHD Monitor,1,149.99,2019-12-13 11:45:00,393 Hickory St, San Francisco,CA,94016 +306630,Wired Headphones,1,11.99,2019-12-19 20:27:00,284 Cedar St, San Francisco,CA,94016 +306631,Lightning Charging Cable,1,14.95,2019-12-07 22:27:00,343 8th St, Boston,MA,02215 +306632,27in FHD Monitor,1,149.99,2019-12-16 16:34:00,217 4th St, San Francisco,CA,94016 +306633,34in Ultrawide Monitor,1,379.99,2019-12-10 13:25:00,318 Willow St, San Francisco,CA,94016 +306634,AAA Batteries (4-pack),1,2.99,2019-12-22 16:41:00,171 Park St, Boston,MA,02215 +306635,AA Batteries (4-pack),1,3.84,2019-12-16 19:13:00,241 Maple St, San Francisco,CA,94016 +306636,Bose SoundSport Headphones,1,99.99,2019-12-13 15:44:00,104 Wilson St, Dallas,TX,75001 +306637,AA Batteries (4-pack),1,3.84,2019-12-08 10:05:00,712 8th St, Los Angeles,CA,90001 +306638,Bose SoundSport Headphones,1,99.99,2019-12-21 10:50:00,536 Elm St, Los Angeles,CA,90001 +306639,Apple Airpods Headphones,1,150.0,2019-12-21 19:57:00,806 Church St, Los Angeles,CA,90001 +306640,USB-C Charging Cable,1,11.95,2019-12-24 10:41:00,156 Adams St, Portland,ME,04101 +306641,AAA Batteries (4-pack),1,2.99,2019-12-23 17:46:00,855 Hill St, San Francisco,CA,94016 +306642,20in Monitor,1,109.99,2019-12-09 13:18:00,870 14th St, Los Angeles,CA,90001 +306643,Wired Headphones,1,11.99,2019-12-08 02:37:00,562 Washington St, Atlanta,GA,30301 +306644,AAA Batteries (4-pack),1,2.99,2019-12-21 17:51:00,115 Sunset St, Dallas,TX,75001 +306645,Lightning Charging Cable,1,14.95,2019-12-16 02:09:00,761 Chestnut St, Austin,TX,73301 +306646,Wired Headphones,1,11.99,2019-12-01 09:49:00,562 Spruce St, San Francisco,CA,94016 +306647,Lightning Charging Cable,1,14.95,2019-12-19 23:39:00,467 8th St, New York City,NY,10001 +306648,Macbook Pro Laptop,1,1700.0,2019-12-13 10:56:00,380 5th St, New York City,NY,10001 +306649,Lightning Charging Cable,1,14.95,2019-12-22 23:14:00,689 Ridge St, San Francisco,CA,94016 +306650,LG Dryer,1,600.0,2019-12-24 13:36:00,125 14th St, New York City,NY,10001 +306651,27in 4K Gaming Monitor,1,389.99,2019-12-27 15:30:00,69 Wilson St, New York City,NY,10001 +306652,Lightning Charging Cable,1,14.95,2019-12-01 17:47:00,163 Church St, San Francisco,CA,94016 +306653,AA Batteries (4-pack),1,3.84,2019-12-31 23:19:00,377 Wilson St, Atlanta,GA,30301 +306654,ThinkPad Laptop,1,999.99,2019-12-07 09:45:00,533 Jefferson St, Los Angeles,CA,90001 +306655,ThinkPad Laptop,1,999.99,2020-01-01 01:46:00,431 Hickory St, Los Angeles,CA,90001 +306656,Flatscreen TV,1,300.0,2019-12-07 09:13:00,812 Spruce St, Dallas,TX,75001 +306657,USB-C Charging Cable,1,11.95,2019-12-19 16:19:00,860 Pine St, New York City,NY,10001 +306658,27in 4K Gaming Monitor,1,389.99,2019-12-24 10:33:00,332 12th St, Dallas,TX,75001 +306659,iPhone,1,700.0,2019-12-19 22:02:00,394 Elm St, Boston,MA,02215 +306660,AA Batteries (4-pack),1,3.84,2019-12-01 11:36:00,138 12th St, Atlanta,GA,30301 +306661,Macbook Pro Laptop,1,1700.0,2019-12-07 16:20:00,494 Hickory St, San Francisco,CA,94016 +306662,AA Batteries (4-pack),2,3.84,2019-12-16 14:16:00,449 4th St, Boston,MA,02215 +306663,Wired Headphones,1,11.99,2019-12-05 23:06:00,576 10th St, San Francisco,CA,94016 +306664,AA Batteries (4-pack),1,3.84,2019-12-19 10:04:00,998 Chestnut St, San Francisco,CA,94016 +306665,34in Ultrawide Monitor,1,379.99,2019-12-14 13:27:00,125 Johnson St, San Francisco,CA,94016 +306666,USB-C Charging Cable,1,11.95,2019-12-25 00:30:00,701 Willow St, Seattle,WA,98101 +306667,Bose SoundSport Headphones,1,99.99,2019-12-10 20:23:00,584 Cherry St, Boston,MA,02215 +306668,20in Monitor,1,109.99,2019-12-09 14:39:00,858 Walnut St, New York City,NY,10001 +306669,Apple Airpods Headphones,1,150.0,2019-12-22 10:44:00,663 5th St, Los Angeles,CA,90001 +306670,Wired Headphones,1,11.99,2019-12-07 14:38:00,837 Church St, Seattle,WA,98101 +306671,Bose SoundSport Headphones,1,99.99,2019-12-28 10:00:00,68 Maple St, Los Angeles,CA,90001 +306672,Lightning Charging Cable,2,14.95,2019-12-06 13:39:00,863 Meadow St, Los Angeles,CA,90001 +306673,Lightning Charging Cable,2,14.95,2019-12-23 16:59:00,459 Center St, Dallas,TX,75001 +306674,34in Ultrawide Monitor,1,379.99,2019-12-09 12:05:00,830 Meadow St, New York City,NY,10001 +306675,27in 4K Gaming Monitor,1,389.99,2019-12-19 10:44:00,9 Meadow St, Boston,MA,02215 +306676,AA Batteries (4-pack),1,3.84,2019-12-08 17:12:00,837 9th St, Atlanta,GA,30301 +306677,Apple Airpods Headphones,1,150.0,2019-12-28 16:42:00,391 Meadow St, New York City,NY,10001 +306678,Apple Airpods Headphones,1,150.0,2019-12-10 01:12:00,515 Willow St, San Francisco,CA,94016 +306679,Vareebadd Phone,1,400.0,2019-12-24 03:51:00,402 Main St, San Francisco,CA,94016 +306680,USB-C Charging Cable,1,11.95,2019-12-30 11:11:00,801 Lake St, San Francisco,CA,94016 +306681,Wired Headphones,1,11.99,2019-12-28 23:33:00,336 Center St, New York City,NY,10001 +306681,USB-C Charging Cable,1,11.95,2019-12-28 23:33:00,336 Center St, New York City,NY,10001 +306682,Lightning Charging Cable,1,14.95,2019-12-12 19:54:00,412 Park St, Los Angeles,CA,90001 +306683,ThinkPad Laptop,1,999.99,2019-12-13 18:41:00,702 Johnson St, San Francisco,CA,94016 +306684,27in FHD Monitor,1,149.99,2019-12-04 09:17:00,502 Washington St, San Francisco,CA,94016 +306685,Macbook Pro Laptop,1,1700.0,2019-12-02 13:28:00,638 Park St, Atlanta,GA,30301 +306686,Macbook Pro Laptop,1,1700.0,2019-12-22 23:25:00,908 Madison St, San Francisco,CA,94016 +306687,Wired Headphones,1,11.99,2019-12-03 00:15:00,818 Madison St, San Francisco,CA,94016 +306688,USB-C Charging Cable,1,11.95,2019-12-23 18:06:00,283 Maple St, San Francisco,CA,94016 +306689,AAA Batteries (4-pack),1,2.99,2019-12-18 10:04:00,550 Johnson St, Los Angeles,CA,90001 +306690,Macbook Pro Laptop,1,1700.0,2019-12-18 14:43:00,432 Church St, Los Angeles,CA,90001 +306691,Wired Headphones,1,11.99,2019-12-03 16:01:00,49 Dogwood St, Seattle,WA,98101 +306692,USB-C Charging Cable,1,11.95,2019-12-31 16:52:00,840 11th St, Dallas,TX,75001 +306693,Apple Airpods Headphones,1,150.0,2019-12-02 01:12:00,196 Pine St, New York City,NY,10001 +306694,Lightning Charging Cable,1,14.95,2019-12-09 18:34:00,825 13th St, Portland,OR,97035 +306695,Bose SoundSport Headphones,1,99.99,2019-12-31 22:43:00,372 Jackson St, Boston,MA,02215 +306696,Macbook Pro Laptop,1,1700.0,2019-12-19 23:49:00,836 Church St, Los Angeles,CA,90001 +306697,Lightning Charging Cable,1,14.95,2019-12-12 15:17:00,664 Hill St, Austin,TX,73301 +306698,USB-C Charging Cable,1,11.95,2019-12-10 13:58:00,951 Meadow St, Seattle,WA,98101 +306699,Apple Airpods Headphones,1,150.0,2019-12-07 02:31:00,338 Jefferson St, Seattle,WA,98101 +306700,Flatscreen TV,1,300.0,2019-12-13 13:36:00,408 10th St, Austin,TX,73301 +306701,ThinkPad Laptop,1,999.99,2019-12-07 17:40:00,321 Pine St, San Francisco,CA,94016 +306702,27in FHD Monitor,1,149.99,2019-12-23 15:20:00,396 Hickory St, Los Angeles,CA,90001 +306703,Apple Airpods Headphones,1,150.0,2019-12-01 20:09:00,628 Meadow St, Los Angeles,CA,90001 +306704,Apple Airpods Headphones,1,150.0,2019-12-05 06:46:00,430 Adams St, San Francisco,CA,94016 +306705,Wired Headphones,1,11.99,2019-12-29 09:35:00,710 Pine St, San Francisco,CA,94016 +306706,AA Batteries (4-pack),2,3.84,2019-12-18 09:18:00,474 Willow St, Los Angeles,CA,90001 +306707,Macbook Pro Laptop,1,1700.0,2019-12-26 15:21:00,934 Ridge St, Seattle,WA,98101 +306708,AAA Batteries (4-pack),3,2.99,2019-12-27 11:07:00,387 Pine St, Atlanta,GA,30301 +306709,Google Phone,1,600.0,2019-12-08 17:41:00,186 Forest St, Austin,TX,73301 +306710,AAA Batteries (4-pack),1,2.99,2019-12-31 12:48:00,541 Adams St, Atlanta,GA,30301 +306711,AAA Batteries (4-pack),1,2.99,2019-12-26 09:57:00,243 Elm St, Boston,MA,02215 +306712,Wired Headphones,1,11.99,2019-12-31 19:40:00,138 Lakeview St, San Francisco,CA,94016 +306713,AAA Batteries (4-pack),1,2.99,2019-12-11 10:15:00,629 6th St, San Francisco,CA,94016 +306714,iPhone,1,700.0,2019-12-26 18:41:00,821 7th St, Boston,MA,02215 +306715,Wired Headphones,1,11.99,2019-12-05 18:31:00,79 Hill St, San Francisco,CA,94016 +306716,AAA Batteries (4-pack),1,2.99,2019-12-22 09:21:00,345 South St, Atlanta,GA,30301 +306717,Apple Airpods Headphones,1,150.0,2019-12-21 21:21:00,169 Madison St, New York City,NY,10001 +306718,Wired Headphones,1,11.99,2019-12-26 13:19:00,459 Sunset St, Boston,MA,02215 +306719,Wired Headphones,1,11.99,2019-12-07 10:17:00,342 Maple St, San Francisco,CA,94016 +306720,USB-C Charging Cable,1,11.95,2019-12-31 12:20:00,639 River St, Los Angeles,CA,90001 +306721,USB-C Charging Cable,1,11.95,2019-12-31 07:10:00,54 Lake St, Seattle,WA,98101 +306722,Wired Headphones,1,11.99,2019-12-29 11:31:00,536 Center St, New York City,NY,10001 +306723,Macbook Pro Laptop,1,1700.0,2019-12-16 11:41:00,497 Walnut St, San Francisco,CA,94016 +306724,Lightning Charging Cable,1,14.95,2019-12-24 11:51:00,438 River St, San Francisco,CA,94016 +306725,USB-C Charging Cable,1,11.95,2019-12-21 17:40:00,657 13th St, Seattle,WA,98101 +306726,USB-C Charging Cable,1,11.95,2019-12-05 17:11:00,691 10th St, Atlanta,GA,30301 +306727,USB-C Charging Cable,1,11.95,2019-12-24 19:10:00,570 4th St, New York City,NY,10001 +306728,Wired Headphones,1,11.99,2019-12-03 06:34:00,441 West St, San Francisco,CA,94016 +306729,34in Ultrawide Monitor,1,379.99,2019-12-17 23:23:00,671 Spruce St, Dallas,TX,75001 +306730,Wired Headphones,1,11.99,2019-12-29 17:34:00,816 Washington St, Austin,TX,73301 +306731,AAA Batteries (4-pack),1,2.99,2019-12-17 10:30:00,962 Cedar St, Atlanta,GA,30301 +306732,Apple Airpods Headphones,1,150.0,2019-12-01 22:43:00,732 Highland St, Los Angeles,CA,90001 +306733,Lightning Charging Cable,1,14.95,2019-12-02 17:08:00,265 Washington St, San Francisco,CA,94016 +306734,Bose SoundSport Headphones,1,99.99,2019-12-27 22:36:00,697 14th St, San Francisco,CA,94016 +306735,34in Ultrawide Monitor,1,379.99,2019-12-05 15:34:00,874 Willow St, Atlanta,GA,30301 +306736,USB-C Charging Cable,1,11.95,2019-12-17 08:26:00,354 North St, Atlanta,GA,30301 +306737,USB-C Charging Cable,1,11.95,2019-12-09 18:05:00,200 Lakeview St, New York City,NY,10001 +306738,Bose SoundSport Headphones,1,99.99,2019-12-30 10:44:00,296 Lakeview St, Los Angeles,CA,90001 +306739,USB-C Charging Cable,1,11.95,2019-12-18 13:13:00,871 Walnut St, Atlanta,GA,30301 +306739,Lightning Charging Cable,1,14.95,2019-12-18 13:13:00,871 Walnut St, Atlanta,GA,30301 +306740,AA Batteries (4-pack),1,3.84,2019-12-11 10:10:00,955 12th St, San Francisco,CA,94016 +306741,AAA Batteries (4-pack),1,2.99,2019-12-13 07:28:00,454 Hickory St, San Francisco,CA,94016 +306742,27in FHD Monitor,1,149.99,2019-12-01 19:19:00,492 Jackson St, Seattle,WA,98101 +306743,USB-C Charging Cable,1,11.95,2019-12-14 10:34:00,815 Willow St, Dallas,TX,75001 +306744,Macbook Pro Laptop,1,1700.0,2019-12-16 21:51:00,652 9th St, Seattle,WA,98101 +306744,USB-C Charging Cable,1,11.95,2019-12-16 21:51:00,652 9th St, Seattle,WA,98101 +306745,AAA Batteries (4-pack),1,2.99,2019-12-01 21:33:00,11 Forest St, Seattle,WA,98101 +306746,Google Phone,1,600.0,2019-12-27 19:36:00,228 2nd St, Los Angeles,CA,90001 +306747,AA Batteries (4-pack),1,3.84,2019-12-23 20:19:00,456 Walnut St, San Francisco,CA,94016 +306748,27in FHD Monitor,1,149.99,2019-12-12 14:57:00,385 Ridge St, Los Angeles,CA,90001 +306749,Macbook Pro Laptop,1,1700.0,2019-12-23 07:19:00,422 8th St, Portland,OR,97035 +306750,USB-C Charging Cable,1,11.95,2019-12-16 21:09:00,536 Forest St, San Francisco,CA,94016 +306750,Lightning Charging Cable,1,14.95,2019-12-16 21:09:00,536 Forest St, San Francisco,CA,94016 +306751,Lightning Charging Cable,1,14.95,2019-12-10 12:22:00,363 8th St, Los Angeles,CA,90001 +306752,AAA Batteries (4-pack),1,2.99,2019-12-10 13:48:00,400 Lincoln St, Boston,MA,02215 +306752,Apple Airpods Headphones,1,150.0,2019-12-10 13:48:00,400 Lincoln St, Boston,MA,02215 +306753,34in Ultrawide Monitor,1,379.99,2019-12-06 19:51:00,37 9th St, San Francisco,CA,94016 +306754,27in 4K Gaming Monitor,1,389.99,2019-12-15 20:24:00,642 Dogwood St, Los Angeles,CA,90001 +306755,USB-C Charging Cable,1,11.95,2019-12-10 14:45:00,646 Lincoln St, Boston,MA,02215 +306756,USB-C Charging Cable,1,11.95,2019-12-17 07:09:00,934 Spruce St, Portland,OR,97035 +306757,Google Phone,1,600.0,2019-12-24 13:42:00,333 Washington St, Dallas,TX,75001 +306758,Wired Headphones,1,11.99,2019-12-02 14:23:00,73 Jackson St, Seattle,WA,98101 +306759,AAA Batteries (4-pack),3,2.99,2019-12-13 19:43:00,808 Forest St, Boston,MA,02215 +306760,Apple Airpods Headphones,1,150.0,2019-12-27 19:02:00,457 11th St, New York City,NY,10001 +306761,USB-C Charging Cable,1,11.95,2019-12-16 07:37:00,541 Cedar St, New York City,NY,10001 +306762,USB-C Charging Cable,1,11.95,2019-12-14 02:39:00,864 Madison St, New York City,NY,10001 +306763,USB-C Charging Cable,1,11.95,2019-12-03 09:52:00,766 Johnson St, San Francisco,CA,94016 +306764,Wired Headphones,1,11.99,2019-12-23 08:42:00,560 Adams St, Boston,MA,02215 +306765,Lightning Charging Cable,1,14.95,2019-12-18 18:50:00,764 8th St, Seattle,WA,98101 +306766,27in 4K Gaming Monitor,1,389.99,2019-12-06 21:16:00,498 North St, Atlanta,GA,30301 +306767,iPhone,1,700.0,2019-12-10 00:00:00,35 Lakeview St, San Francisco,CA,94016 +306768,Macbook Pro Laptop,1,1700.0,2019-12-16 16:38:00,83 5th St, San Francisco,CA,94016 +306769,Wired Headphones,1,11.99,2019-12-14 08:32:00,456 Johnson St, San Francisco,CA,94016 +306770,AA Batteries (4-pack),1,3.84,2019-12-28 21:37:00,307 Hill St, Seattle,WA,98101 +306771,Wired Headphones,1,11.99,2019-12-01 19:46:00,259 Wilson St, New York City,NY,10001 +306772,34in Ultrawide Monitor,1,379.99,2019-12-31 10:28:00,504 Madison St, San Francisco,CA,94016 +306773,20in Monitor,1,109.99,2019-12-24 20:46:00,751 14th St, Seattle,WA,98101 +306774,iPhone,1,700.0,2019-12-07 05:48:00,78 Lincoln St, Austin,TX,73301 +306774,Lightning Charging Cable,1,14.95,2019-12-07 05:48:00,78 Lincoln St, Austin,TX,73301 +306775,iPhone,1,700.0,2019-12-13 17:48:00,915 6th St, San Francisco,CA,94016 +306776,27in 4K Gaming Monitor,1,389.99,2019-12-24 08:37:00,680 Center St, Los Angeles,CA,90001 +306777,Wired Headphones,1,11.99,2019-12-12 19:45:00,253 North St, Boston,MA,02215 +306778,USB-C Charging Cable,1,11.95,2019-12-18 16:54:00,357 2nd St, New York City,NY,10001 +306779,Wired Headphones,1,11.99,2019-12-05 16:43:00,851 1st St, New York City,NY,10001 +306780,Lightning Charging Cable,1,14.95,2019-12-19 20:17:00,411 Washington St, San Francisco,CA,94016 +306781,Flatscreen TV,1,300.0,2019-12-12 09:54:00,919 Jefferson St, Seattle,WA,98101 +306782,Google Phone,1,600.0,2019-12-03 21:03:00,12 Dogwood St, New York City,NY,10001 +306782,USB-C Charging Cable,1,11.95,2019-12-03 21:03:00,12 Dogwood St, New York City,NY,10001 +306783,AA Batteries (4-pack),1,3.84,2019-12-22 12:31:00,168 Maple St, Austin,TX,73301 +306784,Lightning Charging Cable,1,14.95,2019-12-17 13:17:00,209 Cherry St, Portland,OR,97035 +306785,AAA Batteries (4-pack),1,2.99,2019-12-03 15:57:00,28 Hill St, Los Angeles,CA,90001 +306786,27in FHD Monitor,1,149.99,2019-12-02 11:52:00,826 Lake St, New York City,NY,10001 +306787,iPhone,1,700.0,2019-12-21 16:44:00,170 Dogwood St, Portland,OR,97035 +306787,Wired Headphones,1,11.99,2019-12-21 16:44:00,170 Dogwood St, Portland,OR,97035 +306788,Wired Headphones,1,11.99,2019-12-29 07:13:00,698 Church St, Los Angeles,CA,90001 +306789,Wired Headphones,1,11.99,2019-12-02 10:33:00,63 Elm St, San Francisco,CA,94016 +306790,USB-C Charging Cable,1,11.95,2019-12-27 18:18:00,663 Highland St, San Francisco,CA,94016 +306791,AA Batteries (4-pack),2,3.84,2019-12-01 12:58:00,255 7th St, San Francisco,CA,94016 +306792,Bose SoundSport Headphones,1,99.99,2019-12-14 11:22:00,972 13th St, Atlanta,GA,30301 +306793,Bose SoundSport Headphones,1,99.99,2019-12-17 13:00:00,483 Cedar St, San Francisco,CA,94016 +306794,AAA Batteries (4-pack),1,2.99,2019-12-31 13:38:00,502 1st St, Los Angeles,CA,90001 +306795,AAA Batteries (4-pack),1,2.99,2019-12-07 11:44:00,564 Chestnut St, Atlanta,GA,30301 +306796,27in FHD Monitor,1,149.99,2019-12-14 14:00:00,338 Church St, Portland,OR,97035 +306797,Bose SoundSport Headphones,1,99.99,2019-12-27 05:53:00,691 Jefferson St, Los Angeles,CA,90001 +306798,USB-C Charging Cable,1,11.95,2019-12-28 10:15:00,247 Spruce St, San Francisco,CA,94016 +306799,AAA Batteries (4-pack),1,2.99,2019-12-13 20:34:00,33 Highland St, San Francisco,CA,94016 +306800,Apple Airpods Headphones,1,150.0,2019-12-01 22:25:00,318 Church St, Boston,MA,02215 +306801,34in Ultrawide Monitor,1,379.99,2019-12-14 19:25:00,168 5th St, Dallas,TX,75001 +306802,AAA Batteries (4-pack),3,2.99,2019-12-03 00:18:00,619 Cherry St, Boston,MA,02215 +306803,Apple Airpods Headphones,1,150.0,2019-12-09 08:01:00,785 Spruce St, Boston,MA,02215 +306804,Lightning Charging Cable,1,14.95,2019-12-26 11:26:00,649 Hill St, Dallas,TX,75001 +306805,USB-C Charging Cable,1,11.95,2019-12-20 19:57:00,98 5th St, San Francisco,CA,94016 +306806,AA Batteries (4-pack),1,3.84,2019-12-01 18:09:00,935 Lake St, Portland,OR,97035 +306807,AAA Batteries (4-pack),2,2.99,2019-12-06 16:12:00,942 River St, Austin,TX,73301 +306808,AA Batteries (4-pack),1,3.84,2019-12-01 21:42:00,850 6th St, New York City,NY,10001 +306809,Macbook Pro Laptop,1,1700.0,2020-01-01 02:20:00,326 14th St, Dallas,TX,75001 +306810,Lightning Charging Cable,1,14.95,2019-12-08 17:51:00,739 Pine St, San Francisco,CA,94016 +306811,USB-C Charging Cable,1,11.95,2019-12-27 10:26:00,843 North St, San Francisco,CA,94016 +306812,USB-C Charging Cable,1,11.95,2019-12-31 12:39:00,399 7th St, Dallas,TX,75001 +306813,20in Monitor,1,109.99,2019-12-04 12:25:00,557 Madison St, San Francisco,CA,94016 +306814,20in Monitor,1,109.99,2019-12-02 18:53:00,152 Ridge St, San Francisco,CA,94016 +306815,Google Phone,1,600.0,2019-12-23 21:17:00,731 7th St, San Francisco,CA,94016 +306816,Google Phone,1,600.0,2019-12-12 13:14:00,248 Hill St, Atlanta,GA,30301 +306817,iPhone,1,700.0,2019-12-21 12:56:00,815 13th St, San Francisco,CA,94016 +306818,Apple Airpods Headphones,1,150.0,2019-12-16 10:11:00,979 Ridge St, Los Angeles,CA,90001 +306819,Bose SoundSport Headphones,1,99.99,2019-12-02 18:59:00,435 14th St, Seattle,WA,98101 +306820,AA Batteries (4-pack),1,3.84,2019-12-24 19:07:00,681 13th St, Boston,MA,02215 +306821,USB-C Charging Cable,1,11.95,2019-12-11 11:30:00,455 Dogwood St, New York City,NY,10001 +306822,Lightning Charging Cable,1,14.95,2019-12-23 11:48:00,128 South St, San Francisco,CA,94016 +306823,27in FHD Monitor,1,149.99,2019-12-19 14:48:00,995 Wilson St, Austin,TX,73301 +306824,Wired Headphones,1,11.99,2019-12-02 23:30:00,500 Johnson St, San Francisco,CA,94016 +306825,AA Batteries (4-pack),1,3.84,2019-12-24 06:19:00,778 Highland St, San Francisco,CA,94016 +306826,Wired Headphones,1,11.99,2019-12-03 19:50:00,83 Cherry St, Boston,MA,02215 +306827,Bose SoundSport Headphones,1,99.99,2019-12-17 16:53:00,231 South St, Portland,ME,04101 +306828,Flatscreen TV,1,300.0,2019-12-30 00:23:00,14 Johnson St, Dallas,TX,75001 +306829,27in 4K Gaming Monitor,1,389.99,2019-12-06 09:16:00,937 North St, Boston,MA,02215 +306830,AAA Batteries (4-pack),2,2.99,2019-12-29 21:00:00,152 5th St, Atlanta,GA,30301 +306831,Wired Headphones,2,11.99,2019-12-17 10:44:00,946 Lincoln St, Austin,TX,73301 +306832,Flatscreen TV,1,300.0,2019-12-09 22:34:00,90 Maple St, Seattle,WA,98101 +306833,Bose SoundSport Headphones,1,99.99,2019-12-14 18:48:00,678 Cedar St, Los Angeles,CA,90001 +306834,34in Ultrawide Monitor,1,379.99,2019-12-18 14:03:00,288 South St, San Francisco,CA,94016 +306835,Apple Airpods Headphones,1,150.0,2019-12-09 13:37:00,660 Park St, New York City,NY,10001 +306836,34in Ultrawide Monitor,1,379.99,2019-12-02 12:17:00,766 13th St, San Francisco,CA,94016 +306837,Lightning Charging Cable,1,14.95,2019-12-02 11:00:00,314 7th St, San Francisco,CA,94016 +306838,USB-C Charging Cable,1,11.95,2019-12-14 15:48:00,26 Sunset St, Boston,MA,02215 +306839,AAA Batteries (4-pack),1,2.99,2019-12-04 14:35:00,210 Sunset St, Dallas,TX,75001 +306840,AA Batteries (4-pack),1,3.84,2019-12-05 13:01:00,343 10th St, New York City,NY,10001 +306841,Wired Headphones,1,11.99,2019-12-22 19:20:00,940 Ridge St, San Francisco,CA,94016 +306842,AA Batteries (4-pack),1,3.84,2019-12-18 00:47:00,736 5th St, Los Angeles,CA,90001 +306843,AAA Batteries (4-pack),2,2.99,2019-12-02 12:43:00,281 Willow St, Boston,MA,02215 +306844,AA Batteries (4-pack),1,3.84,2019-12-04 08:02:00,284 Lincoln St, Seattle,WA,98101 +306845,AAA Batteries (4-pack),1,2.99,2019-12-25 06:45:00,249 Park St, Austin,TX,73301 +306846,iPhone,1,700.0,2019-12-03 20:03:00,377 North St, New York City,NY,10001 +306846,Lightning Charging Cable,1,14.95,2019-12-03 20:03:00,377 North St, New York City,NY,10001 +306847,Lightning Charging Cable,1,14.95,2019-12-31 08:09:00,913 Washington St, San Francisco,CA,94016 +306848,USB-C Charging Cable,1,11.95,2019-12-29 13:58:00,424 Johnson St, San Francisco,CA,94016 +306849,Lightning Charging Cable,1,14.95,2019-12-10 12:09:00,737 Walnut St, Boston,MA,02215 +306850,Macbook Pro Laptop,1,1700.0,2019-12-19 21:07:00,160 14th St, New York City,NY,10001 +306851,AA Batteries (4-pack),1,3.84,2019-12-01 18:31:00,704 North St, New York City,NY,10001 +306851,AA Batteries (4-pack),3,3.84,2019-12-01 18:31:00,704 North St, New York City,NY,10001 +306852,Flatscreen TV,1,300.0,2019-12-12 11:26:00,779 Lakeview St, Portland,OR,97035 +306853,AA Batteries (4-pack),2,3.84,2019-12-02 14:20:00,643 10th St, Los Angeles,CA,90001 +306854,USB-C Charging Cable,1,11.95,2019-12-06 22:16:00,451 Jefferson St, Los Angeles,CA,90001 +306855,Bose SoundSport Headphones,1,99.99,2019-12-25 07:37:00,213 6th St, San Francisco,CA,94016 +306856,Lightning Charging Cable,1,14.95,2019-12-21 10:52:00,319 8th St, San Francisco,CA,94016 +306857,iPhone,1,700.0,2019-12-03 18:31:00,25 Lakeview St, Los Angeles,CA,90001 +306857,Apple Airpods Headphones,1,150.0,2019-12-03 18:31:00,25 Lakeview St, Los Angeles,CA,90001 +306858,34in Ultrawide Monitor,1,379.99,2019-12-30 10:28:00,631 6th St, New York City,NY,10001 +306859,27in 4K Gaming Monitor,1,389.99,2019-12-11 11:30:00,221 Forest St, San Francisco,CA,94016 +306860,20in Monitor,1,109.99,2019-12-25 17:40:00,481 Cherry St, Los Angeles,CA,90001 +306861,27in FHD Monitor,1,149.99,2019-12-20 10:14:00,704 7th St, New York City,NY,10001 +306862,20in Monitor,1,109.99,2019-12-26 01:32:00,691 Maple St, New York City,NY,10001 +306863,AA Batteries (4-pack),1,3.84,2019-12-07 19:09:00,661 9th St, Dallas,TX,75001 +306864,AA Batteries (4-pack),1,3.84,2019-12-12 17:36:00,117 Main St, Boston,MA,02215 +306865,Macbook Pro Laptop,1,1700.0,2019-12-25 01:46:00,969 Cedar St, San Francisco,CA,94016 +306866,AAA Batteries (4-pack),2,2.99,2019-12-02 11:45:00,516 Spruce St, San Francisco,CA,94016 +306867,Apple Airpods Headphones,1,150.0,2019-12-12 10:11:00,645 Spruce St, San Francisco,CA,94016 +306867,27in FHD Monitor,1,149.99,2019-12-12 10:11:00,645 Spruce St, San Francisco,CA,94016 +306868,AA Batteries (4-pack),1,3.84,2019-12-18 21:54:00,577 11th St, Dallas,TX,75001 +306869,Macbook Pro Laptop,1,1700.0,2019-12-24 20:33:00,866 2nd St, Portland,OR,97035 +306870,Macbook Pro Laptop,1,1700.0,2019-12-17 09:00:00,401 11th St, San Francisco,CA,94016 +306871,iPhone,1,700.0,2019-12-06 09:58:00,260 2nd St, Los Angeles,CA,90001 +306872,27in FHD Monitor,1,149.99,2019-12-10 23:05:00,284 Willow St, San Francisco,CA,94016 +306873,Lightning Charging Cable,1,14.95,2019-12-08 19:54:00,179 North St, Boston,MA,02215 +306874,Vareebadd Phone,1,400.0,2019-12-19 10:59:00,549 Ridge St, Boston,MA,02215 +306874,Wired Headphones,1,11.99,2019-12-19 10:59:00,549 Ridge St, Boston,MA,02215 +306875,AA Batteries (4-pack),1,3.84,2019-12-15 09:40:00,870 1st St, Portland,ME,04101 +306876,Flatscreen TV,1,300.0,2019-12-27 19:20:00,680 Cherry St, San Francisco,CA,94016 +306877,iPhone,1,700.0,2019-12-21 21:32:00,999 Cherry St, San Francisco,CA,94016 +306878,20in Monitor,1,109.99,2019-12-11 13:46:00,346 West St, Austin,TX,73301 +306879,Bose SoundSport Headphones,1,99.99,2019-12-13 23:37:00,189 9th St, Austin,TX,73301 +306880,AAA Batteries (4-pack),1,2.99,2019-12-24 09:24:00,96 Madison St, Portland,OR,97035 +306881,Lightning Charging Cable,1,14.95,2019-12-20 12:50:00,105 Washington St, Boston,MA,02215 +306882,27in 4K Gaming Monitor,1,389.99,2019-12-29 13:14:00,784 Lake St, San Francisco,CA,94016 +306883,Macbook Pro Laptop,1,1700.0,2019-12-14 09:56:00,850 Lincoln St, New York City,NY,10001 +306884,Lightning Charging Cable,1,14.95,2019-12-07 00:59:00,525 12th St, Atlanta,GA,30301 +306885,Bose SoundSport Headphones,1,99.99,2019-12-20 15:13:00,985 Ridge St, Boston,MA,02215 +306886,Apple Airpods Headphones,1,150.0,2019-12-20 19:15:00,97 Hickory St, Austin,TX,73301 +306887,Wired Headphones,1,11.99,2019-12-20 12:10:00,598 Hickory St, San Francisco,CA,94016 +306888,Wired Headphones,1,11.99,2019-12-23 14:56:00,2 Maple St, San Francisco,CA,94016 +306889,AA Batteries (4-pack),1,3.84,2019-12-06 12:40:00,294 Jackson St, Portland,OR,97035 +306890,Apple Airpods Headphones,1,150.0,2019-12-10 17:39:00,922 7th St, Atlanta,GA,30301 +306891,Flatscreen TV,1,300.0,2019-12-28 08:26:00,410 Main St, San Francisco,CA,94016 +306892,AA Batteries (4-pack),1,3.84,2019-12-12 11:04:00,453 Cedar St, Portland,ME,04101 +306893,AAA Batteries (4-pack),1,2.99,2019-12-30 18:03:00,458 1st St, Portland,OR,97035 +306894,AAA Batteries (4-pack),1,2.99,2019-12-23 15:00:00,276 Lincoln St, Los Angeles,CA,90001 +306895,34in Ultrawide Monitor,1,379.99,2019-12-17 15:25:00,121 Cedar St, New York City,NY,10001 +306896,USB-C Charging Cable,1,11.95,2019-12-23 18:07:00,705 North St, Seattle,WA,98101 +306897,AA Batteries (4-pack),1,3.84,2019-12-29 21:03:00,365 Dogwood St, Austin,TX,73301 +306898,AAA Batteries (4-pack),1,2.99,2019-12-12 01:21:00,448 11th St, San Francisco,CA,94016 +306899,AA Batteries (4-pack),1,3.84,2019-12-10 17:46:00,958 2nd St, Dallas,TX,75001 +306899,27in 4K Gaming Monitor,1,389.99,2019-12-10 17:46:00,958 2nd St, Dallas,TX,75001 +306900,ThinkPad Laptop,1,999.99,2019-12-30 16:45:00,550 Hickory St, Portland,OR,97035 +306901,27in 4K Gaming Monitor,1,389.99,2019-12-23 23:15:00,790 Center St, Boston,MA,02215 +306902,AAA Batteries (4-pack),4,2.99,2019-12-17 18:38:00,458 Jefferson St, San Francisco,CA,94016 +306903,34in Ultrawide Monitor,1,379.99,2019-12-26 17:15:00,639 Hickory St, Boston,MA,02215 +306904,27in FHD Monitor,1,149.99,2019-12-16 22:05:00,692 Center St, New York City,NY,10001 +306905,Wired Headphones,1,11.99,2019-12-03 11:48:00,655 Chestnut St, New York City,NY,10001 +306906,AA Batteries (4-pack),1,3.84,2019-12-30 14:39:00,764 7th St, New York City,NY,10001 +306907,Macbook Pro Laptop,1,1700.0,2019-12-29 01:15:00,481 South St, Los Angeles,CA,90001 +306908,AA Batteries (4-pack),1,3.84,2019-12-16 19:49:00,854 South St, San Francisco,CA,94016 +306909,Google Phone,1,600.0,2019-12-24 22:01:00,521 Sunset St, San Francisco,CA,94016 +306909,USB-C Charging Cable,2,11.95,2019-12-24 22:01:00,521 Sunset St, San Francisco,CA,94016 +306910,ThinkPad Laptop,1,999.99,2019-12-01 13:52:00,512 12th St, Dallas,TX,75001 +306911,27in FHD Monitor,1,149.99,2019-12-21 11:25:00,922 Adams St, Portland,OR,97035 +306912,AAA Batteries (4-pack),1,2.99,2019-12-10 11:34:00,487 Cedar St, New York City,NY,10001 +306913,ThinkPad Laptop,1,999.99,2019-12-31 00:13:00,360 8th St, San Francisco,CA,94016 +306914,AA Batteries (4-pack),1,3.84,2019-12-04 14:02:00,715 Wilson St, Seattle,WA,98101 +306915,Bose SoundSport Headphones,1,99.99,2019-12-31 03:34:00,801 Sunset St, Boston,MA,02215 +306916,Apple Airpods Headphones,1,150.0,2019-12-15 19:58:00,583 Hill St, Los Angeles,CA,90001 +306917,AA Batteries (4-pack),1,3.84,2019-12-27 17:33:00,942 Cedar St, Dallas,TX,75001 +306918,USB-C Charging Cable,1,11.95,2019-12-23 21:03:00,919 Lincoln St, Los Angeles,CA,90001 +306919,34in Ultrawide Monitor,1,379.99,2019-12-07 21:35:00,973 Lincoln St, San Francisco,CA,94016 +306920,Wired Headphones,1,11.99,2019-12-01 12:44:00,599 Meadow St, San Francisco,CA,94016 +306921,34in Ultrawide Monitor,1,379.99,2019-12-28 06:51:00,504 2nd St, San Francisco,CA,94016 +306922,Lightning Charging Cable,1,14.95,2019-12-25 12:54:00,810 Pine St, Seattle,WA,98101 +306923,USB-C Charging Cable,2,11.95,2019-12-12 07:32:00,151 River St, Los Angeles,CA,90001 +306924,Lightning Charging Cable,1,14.95,2019-12-02 20:11:00,412 Cedar St, Seattle,WA,98101 +306925,Macbook Pro Laptop,1,1700.0,2019-12-24 16:01:00,462 11th St, New York City,NY,10001 +306926,AAA Batteries (4-pack),1,2.99,2019-12-26 19:12:00,442 2nd St, Seattle,WA,98101 +306927,AAA Batteries (4-pack),1,2.99,2019-12-10 14:14:00,760 Washington St, Dallas,TX,75001 +306928,ThinkPad Laptop,1,999.99,2020-01-01 03:14:00,762 Elm St, Boston,MA,02215 +306929,USB-C Charging Cable,1,11.95,2019-12-05 20:39:00,493 5th St, San Francisco,CA,94016 +306930,Apple Airpods Headphones,1,150.0,2019-12-03 11:16:00,842 Ridge St, San Francisco,CA,94016 +306931,Flatscreen TV,1,300.0,2019-12-09 13:57:00,920 Center St, San Francisco,CA,94016 +306932,AA Batteries (4-pack),1,3.84,2019-12-24 20:46:00,954 9th St, New York City,NY,10001 +306933,LG Washing Machine,1,600.0,2019-12-08 16:29:00,643 Lakeview St, Boston,MA,02215 +306934,27in 4K Gaming Monitor,1,389.99,2019-12-12 09:25:00,302 Lake St, Portland,OR,97035 +306935,Vareebadd Phone,1,400.0,2019-12-14 15:00:00,482 Walnut St, Los Angeles,CA,90001 +306936,Bose SoundSport Headphones,1,99.99,2019-12-10 21:10:00,364 Maple St, Los Angeles,CA,90001 +306937,Wired Headphones,1,11.99,2019-12-31 20:11:00,627 Lakeview St, Dallas,TX,75001 +306938,Apple Airpods Headphones,1,150.0,2019-12-08 13:48:00,841 5th St, Los Angeles,CA,90001 +306939,Bose SoundSport Headphones,1,99.99,2019-12-01 20:07:00,153 Dogwood St, Boston,MA,02215 +306940,USB-C Charging Cable,2,11.95,2019-12-01 18:16:00,457 6th St, Atlanta,GA,30301 +306941,AAA Batteries (4-pack),1,2.99,2019-12-20 18:53:00,167 Wilson St, New York City,NY,10001 +306942,Wired Headphones,1,11.99,2019-12-24 18:43:00,816 Washington St, New York City,NY,10001 +306942,Apple Airpods Headphones,1,150.0,2019-12-24 18:43:00,816 Washington St, New York City,NY,10001 +306943,Apple Airpods Headphones,1,150.0,2019-12-15 21:16:00,996 Cherry St, Dallas,TX,75001 +306944,27in FHD Monitor,1,149.99,2019-12-23 18:52:00,679 Sunset St, New York City,NY,10001 +306945,34in Ultrawide Monitor,1,379.99,2019-12-08 12:35:00,401 9th St, Seattle,WA,98101 +306946,AAA Batteries (4-pack),2,2.99,2019-12-18 07:49:00,427 Sunset St, San Francisco,CA,94016 +306947,USB-C Charging Cable,1,11.95,2019-12-21 12:48:00,755 Maple St, New York City,NY,10001 +306948,Bose SoundSport Headphones,1,99.99,2019-12-06 12:56:00,985 12th St, San Francisco,CA,94016 +306949,Macbook Pro Laptop,1,1700.0,2019-12-07 20:28:00,195 Maple St, Portland,OR,97035 +306950,iPhone,1,700.0,2019-12-30 19:28:00,273 Park St, Boston,MA,02215 +306951,Flatscreen TV,1,300.0,2019-12-12 23:50:00,454 Elm St, Dallas,TX,75001 +306952,Wired Headphones,1,11.99,2019-12-19 14:16:00,128 Washington St, Los Angeles,CA,90001 +306953,Apple Airpods Headphones,1,150.0,2019-12-16 22:51:00,838 Spruce St, San Francisco,CA,94016 +306954,27in FHD Monitor,1,149.99,2019-12-22 20:03:00,516 14th St, Boston,MA,02215 +306955,iPhone,1,700.0,2019-12-20 20:34:00,712 13th St, Los Angeles,CA,90001 +306955,Lightning Charging Cable,1,14.95,2019-12-20 20:34:00,712 13th St, Los Angeles,CA,90001 +306956,USB-C Charging Cable,1,11.95,2019-12-15 14:03:00,627 Maple St, Los Angeles,CA,90001 +306957,AA Batteries (4-pack),1,3.84,2019-12-10 21:22:00,164 13th St, Los Angeles,CA,90001 +306958,AA Batteries (4-pack),1,3.84,2019-12-26 22:11:00,488 Washington St, San Francisco,CA,94016 +306959,iPhone,1,700.0,2019-12-20 11:45:00,715 2nd St, New York City,NY,10001 +306959,Wired Headphones,1,11.99,2019-12-20 11:45:00,715 2nd St, New York City,NY,10001 +306960,AA Batteries (4-pack),1,3.84,2019-12-15 10:58:00,828 Dogwood St, New York City,NY,10001 +306961,Vareebadd Phone,1,400.0,2019-12-09 12:25:00,566 5th St, New York City,NY,10001 +306962,AA Batteries (4-pack),1,3.84,2019-12-03 05:35:00,863 Meadow St, New York City,NY,10001 +306963,AA Batteries (4-pack),1,3.84,2019-12-26 18:40:00,621 Jefferson St, Boston,MA,02215 +306964,USB-C Charging Cable,1,11.95,2019-12-22 10:00:00,734 Elm St, Los Angeles,CA,90001 +306965,AA Batteries (4-pack),1,3.84,2019-12-14 21:28:00,7 Madison St, San Francisco,CA,94016 +306966,AA Batteries (4-pack),1,3.84,2019-12-17 13:48:00,553 Walnut St, Boston,MA,02215 +306967,iPhone,1,700.0,2019-12-27 20:41:00,559 Ridge St, Los Angeles,CA,90001 +306967,Lightning Charging Cable,1,14.95,2019-12-27 20:41:00,559 Ridge St, Los Angeles,CA,90001 +306968,Lightning Charging Cable,1,14.95,2019-12-08 17:53:00,888 Hill St, San Francisco,CA,94016 +306969,AAA Batteries (4-pack),1,2.99,2019-12-18 14:08:00,49 Lincoln St, Austin,TX,73301 +306970,AAA Batteries (4-pack),2,2.99,2019-12-07 11:45:00,941 Lake St, Dallas,TX,75001 +306971,Bose SoundSport Headphones,1,99.99,2019-12-18 20:06:00,549 9th St, Los Angeles,CA,90001 +306972,AA Batteries (4-pack),1,3.84,2019-12-14 12:31:00,525 Lincoln St, Portland,OR,97035 +306973,AAA Batteries (4-pack),1,2.99,2019-12-01 23:06:00,120 11th St, Boston,MA,02215 +306974,Lightning Charging Cable,1,14.95,2019-12-03 10:01:00,181 Lakeview St, Seattle,WA,98101 +306975,AAA Batteries (4-pack),2,2.99,2019-12-21 09:06:00,874 Park St, San Francisco,CA,94016 +306976,Flatscreen TV,1,300.0,2019-12-30 16:26:00,912 10th St, Atlanta,GA,30301 +306977,Apple Airpods Headphones,1,150.0,2019-12-22 20:34:00,591 Forest St, Austin,TX,73301 +306978,AA Batteries (4-pack),1,3.84,2019-12-06 10:01:00,322 Johnson St, Atlanta,GA,30301 +306979,AAA Batteries (4-pack),2,2.99,2019-12-21 11:25:00,972 Cherry St, Boston,MA,02215 +306980,34in Ultrawide Monitor,1,379.99,2019-12-11 08:32:00,978 Chestnut St, Los Angeles,CA,90001 +306981,USB-C Charging Cable,1,11.95,2019-12-08 04:29:00,269 Highland St, San Francisco,CA,94016 +306982,USB-C Charging Cable,1,11.95,2019-12-07 16:59:00,247 10th St, San Francisco,CA,94016 +306983,Wired Headphones,1,11.99,2019-12-23 11:11:00,733 Adams St, Dallas,TX,75001 +306984,27in FHD Monitor,1,149.99,2019-12-09 15:13:00,578 River St, Portland,OR,97035 +306985,27in FHD Monitor,1,149.99,2019-12-24 16:01:00,972 Dogwood St, New York City,NY,10001 +306986,Lightning Charging Cable,1,14.95,2019-12-21 12:20:00,483 12th St, San Francisco,CA,94016 +306987,27in FHD Monitor,1,149.99,2019-12-03 13:16:00,100 5th St, Austin,TX,73301 +306988,AAA Batteries (4-pack),1,2.99,2019-12-20 07:34:00,329 11th St, Los Angeles,CA,90001 +306989,USB-C Charging Cable,1,11.95,2019-12-22 17:36:00,260 Jefferson St, Dallas,TX,75001 +306990,Vareebadd Phone,1,400.0,2019-12-02 17:50:00,973 Sunset St, Los Angeles,CA,90001 +306990,USB-C Charging Cable,1,11.95,2019-12-02 17:50:00,973 Sunset St, Los Angeles,CA,90001 +306991,Lightning Charging Cable,1,14.95,2019-12-21 06:46:00,671 Jefferson St, San Francisco,CA,94016 +306992,Apple Airpods Headphones,1,150.0,2019-12-15 14:19:00,684 7th St, New York City,NY,10001 +306993,AAA Batteries (4-pack),1,2.99,2019-12-16 23:29:00,940 9th St, Boston,MA,02215 +306994,27in 4K Gaming Monitor,1,389.99,2019-12-09 03:44:00,688 Dogwood St, San Francisco,CA,94016 +306995,Bose SoundSport Headphones,1,99.99,2019-12-25 18:08:00,779 Hill St, Los Angeles,CA,90001 +306996,iPhone,1,700.0,2019-12-11 16:59:00,771 Jackson St, San Francisco,CA,94016 +306997,Apple Airpods Headphones,1,150.0,2019-12-31 12:29:00,725 Wilson St, Seattle,WA,98101 +306998,ThinkPad Laptop,1,999.99,2019-12-17 10:36:00,962 Pine St, San Francisco,CA,94016 +306999,Bose SoundSport Headphones,1,99.99,2019-12-21 11:04:00,465 Maple St, Portland,OR,97035 +307000,Wired Headphones,1,11.99,2019-12-12 13:39:00,786 West St, Atlanta,GA,30301 +307001,Bose SoundSport Headphones,1,99.99,2019-12-08 22:25:00,764 Lakeview St, Atlanta,GA,30301 +307002,AAA Batteries (4-pack),1,2.99,2019-12-25 20:16:00,285 Ridge St, New York City,NY,10001 +307003,Wired Headphones,1,11.99,2019-12-03 15:47:00,579 Spruce St, Los Angeles,CA,90001 +307004,AA Batteries (4-pack),1,3.84,2019-12-09 08:18:00,407 Meadow St, New York City,NY,10001 +307005,USB-C Charging Cable,1,11.95,2019-12-19 07:04:00,349 Lakeview St, New York City,NY,10001 +307006,Lightning Charging Cable,1,14.95,2019-12-02 12:24:00,165 Walnut St, San Francisco,CA,94016 +307007,Apple Airpods Headphones,1,150.0,2019-12-26 06:35:00,753 Johnson St, Atlanta,GA,30301 +307008,Apple Airpods Headphones,1,150.0,2019-12-28 13:13:00,729 Hickory St, Boston,MA,02215 +307009,Bose SoundSport Headphones,1,99.99,2019-12-28 16:24:00,137 2nd St, Los Angeles,CA,90001 +307010,27in 4K Gaming Monitor,1,389.99,2019-12-03 19:30:00,33 Jackson St, New York City,NY,10001 +307011,Wired Headphones,1,11.99,2019-12-19 14:50:00,388 2nd St, Dallas,TX,75001 +307012,AAA Batteries (4-pack),1,2.99,2019-12-15 11:01:00,574 Chestnut St, San Francisco,CA,94016 +307013,27in FHD Monitor,1,149.99,2019-12-01 11:13:00,333 10th St, Atlanta,GA,30301 +307014,20in Monitor,1,109.99,2019-12-28 09:25:00,537 Center St, Dallas,TX,75001 +307015,Wired Headphones,1,11.99,2019-12-19 00:06:00,876 Forest St, Boston,MA,02215 +307016,USB-C Charging Cable,1,11.95,2019-12-21 17:04:00,458 Johnson St, Los Angeles,CA,90001 +307017,USB-C Charging Cable,1,11.95,2019-12-05 20:22:00,44 North St, San Francisco,CA,94016 +307018,Apple Airpods Headphones,1,150.0,2019-12-02 12:06:00,430 Meadow St, Portland,OR,97035 +307019,USB-C Charging Cable,1,11.95,2019-12-23 23:29:00,646 5th St, New York City,NY,10001 +307020,Wired Headphones,1,11.99,2019-12-22 20:58:00,467 1st St, Boston,MA,02215 +307021,20in Monitor,1,109.99,2019-12-28 16:23:00,189 Pine St, Los Angeles,CA,90001 +307022,AAA Batteries (4-pack),1,2.99,2019-12-29 17:35:00,520 Cherry St, San Francisco,CA,94016 +307023,Apple Airpods Headphones,1,150.0,2019-12-13 09:50:00,667 North St, Los Angeles,CA,90001 +307024,Wired Headphones,1,11.99,2019-12-02 10:21:00,629 Madison St, Los Angeles,CA,90001 +307025,Bose SoundSport Headphones,1,99.99,2019-12-23 14:38:00,394 4th St, San Francisco,CA,94016 +307026,ThinkPad Laptop,1,999.99,2019-12-01 16:17:00,544 North St, San Francisco,CA,94016 +307027,Google Phone,1,600.0,2019-12-29 10:46:00,238 9th St, Seattle,WA,98101 +307028,AAA Batteries (4-pack),2,2.99,2019-12-26 01:15:00,566 Spruce St, San Francisco,CA,94016 +307029,Bose SoundSport Headphones,1,99.99,2019-12-21 12:10:00,248 Walnut St, San Francisco,CA,94016 +307030,Lightning Charging Cable,1,14.95,2019-12-01 11:51:00,569 Madison St, San Francisco,CA,94016 +307031,AAA Batteries (4-pack),1,2.99,2019-12-02 12:14:00,697 Jefferson St, Boston,MA,02215 +307032,Wired Headphones,1,11.99,2019-12-16 23:33:00,113 Madison St, San Francisco,CA,94016 +307033,iPhone,1,700.0,2019-12-01 16:47:00,684 12th St, Los Angeles,CA,90001 +307034,AAA Batteries (4-pack),1,2.99,2019-12-16 12:17:00,692 River St, San Francisco,CA,94016 +307035,Lightning Charging Cable,1,14.95,2019-12-04 18:46:00,971 Elm St, Austin,TX,73301 +307036,27in FHD Monitor,1,149.99,2019-12-20 10:11:00,178 South St, Los Angeles,CA,90001 +307037,AAA Batteries (4-pack),1,2.99,2019-12-29 17:08:00,302 Elm St, San Francisco,CA,94016 +307038,AA Batteries (4-pack),1,3.84,2019-12-19 20:43:00,1 Ridge St, San Francisco,CA,94016 +307039,AA Batteries (4-pack),1,3.84,2019-12-24 12:59:00,7 Hill St, Portland,OR,97035 +307040,Lightning Charging Cable,1,14.95,2019-12-05 07:54:00,376 13th St, Portland,OR,97035 +307041,USB-C Charging Cable,1,11.95,2019-12-13 18:45:00,803 10th St, Boston,MA,02215 +307042,AAA Batteries (4-pack),3,2.99,2019-12-01 11:56:00,156 South St, Portland,OR,97035 +307043,AAA Batteries (4-pack),1,2.99,2019-12-20 23:22:00,355 Highland St, Atlanta,GA,30301 +307044,iPhone,1,700.0,2019-12-25 21:54:00,336 7th St, Boston,MA,02215 +307045,Lightning Charging Cable,1,14.95,2019-12-11 16:56:00,860 Cedar St, Seattle,WA,98101 +307046,USB-C Charging Cable,1,11.95,2019-12-25 22:44:00,976 13th St, New York City,NY,10001 +307047,Lightning Charging Cable,1,14.95,2019-12-17 01:48:00,800 West St, San Francisco,CA,94016 +307048,Apple Airpods Headphones,1,150.0,2019-12-19 20:44:00,135 Dogwood St, San Francisco,CA,94016 +307049,AA Batteries (4-pack),1,3.84,2019-12-21 17:11:00,106 Pine St, Portland,OR,97035 +307050,AA Batteries (4-pack),1,3.84,2019-12-06 11:19:00,805 Sunset St, New York City,NY,10001 +307051,Bose SoundSport Headphones,1,99.99,2019-12-12 16:21:00,755 5th St, Boston,MA,02215 +307052,Apple Airpods Headphones,1,150.0,2019-12-11 19:33:00,460 Ridge St, San Francisco,CA,94016 +307053,Wired Headphones,1,11.99,2019-12-30 14:55:00,342 Church St, Portland,ME,04101 +307054,Lightning Charging Cable,1,14.95,2019-12-22 18:07:00,728 4th St, Los Angeles,CA,90001 +307055,Wired Headphones,1,11.99,2019-12-29 09:33:00,696 Center St, Boston,MA,02215 +307056,iPhone,1,700.0,2019-12-24 15:08:00,788 13th St, New York City,NY,10001 +307057,Apple Airpods Headphones,1,150.0,2019-12-11 14:05:00,669 Lake St, Los Angeles,CA,90001 +307058,27in FHD Monitor,1,149.99,2019-12-13 12:21:00,372 River St, San Francisco,CA,94016 +307059,Wired Headphones,1,11.99,2019-12-03 21:28:00,779 9th St, Los Angeles,CA,90001 +307060,Wired Headphones,1,11.99,2019-12-07 13:30:00,914 Chestnut St, Austin,TX,73301 +307061,Lightning Charging Cable,1,14.95,2019-12-12 19:21:00,787 Adams St, Boston,MA,02215 +307062,AAA Batteries (4-pack),1,2.99,2019-12-30 13:11:00,441 Church St, New York City,NY,10001 +307063,Apple Airpods Headphones,1,150.0,2019-12-21 16:06:00,95 Hickory St, Atlanta,GA,30301 +307064,27in 4K Gaming Monitor,1,389.99,2019-12-18 14:01:00,751 Sunset St, Boston,MA,02215 +307065,AAA Batteries (4-pack),1,2.99,2019-12-19 20:41:00,512 Park St, New York City,NY,10001 +307066,Apple Airpods Headphones,1,150.0,2019-12-06 18:09:00,54 North St, Portland,OR,97035 +307067,Wired Headphones,1,11.99,2019-12-01 09:55:00,243 Cedar St, Dallas,TX,75001 +307068,Apple Airpods Headphones,1,150.0,2019-12-25 13:08:00,656 Elm St, Seattle,WA,98101 +307069,Google Phone,1,600.0,2019-12-09 01:30:00,892 Church St, Seattle,WA,98101 +307070,Wired Headphones,1,11.99,2019-12-23 19:18:00,201 Walnut St, New York City,NY,10001 +307071,AA Batteries (4-pack),1,3.84,2019-12-16 11:59:00,480 Chestnut St, Portland,OR,97035 +307071,Lightning Charging Cable,1,14.95,2019-12-16 11:59:00,480 Chestnut St, Portland,OR,97035 +307072,Google Phone,1,600.0,2019-12-27 19:33:00,988 Jackson St, San Francisco,CA,94016 +307073,Wired Headphones,1,11.99,2019-12-28 09:46:00,675 Church St, Atlanta,GA,30301 +307074,Apple Airpods Headphones,1,150.0,2019-12-24 19:00:00,505 Johnson St, Boston,MA,02215 +307075,Lightning Charging Cable,1,14.95,2019-12-16 12:38:00,836 Adams St, San Francisco,CA,94016 +307076,AAA Batteries (4-pack),2,2.99,2019-12-19 15:09:00,288 4th St, Boston,MA,02215 +307077,Apple Airpods Headphones,1,150.0,2019-12-14 10:59:00,180 Willow St, San Francisco,CA,94016 +307078,Wired Headphones,1,11.99,2019-12-30 18:42:00,387 Jefferson St, Atlanta,GA,30301 +307079,Apple Airpods Headphones,1,150.0,2019-12-18 14:53:00,722 1st St, San Francisco,CA,94016 +307080,Lightning Charging Cable,1,14.95,2019-12-03 19:35:00,549 11th St, New York City,NY,10001 +307081,Macbook Pro Laptop,1,1700.0,2019-12-21 18:25:00,625 Walnut St, San Francisco,CA,94016 +307082,Wired Headphones,1,11.99,2019-12-31 18:14:00,690 Hill St, San Francisco,CA,94016 +307083,Wired Headphones,1,11.99,2019-12-16 10:56:00,196 Willow St, San Francisco,CA,94016 +307084,Lightning Charging Cable,1,14.95,2019-12-07 22:14:00,437 Cherry St, Los Angeles,CA,90001 +307085,Wired Headphones,1,11.99,2019-12-14 15:06:00,101 Chestnut St, Boston,MA,02215 +307086,Bose SoundSport Headphones,1,99.99,2019-12-10 10:16:00,606 7th St, Portland,OR,97035 +307087,AAA Batteries (4-pack),2,2.99,2019-12-07 17:26:00,787 8th St, Boston,MA,02215 +307088,Macbook Pro Laptop,1,1700.0,2019-12-20 09:08:00,372 Main St, Los Angeles,CA,90001 +307089,AA Batteries (4-pack),1,3.84,2019-12-14 15:03:00,69 4th St, Austin,TX,73301 +307090,Google Phone,1,600.0,2019-12-03 00:34:00,603 11th St, San Francisco,CA,94016 +307091,Google Phone,1,600.0,2019-12-09 07:04:00,996 Maple St, New York City,NY,10001 +307092,Flatscreen TV,1,300.0,2019-12-21 20:32:00,956 2nd St, Boston,MA,02215 +307093,AAA Batteries (4-pack),2,2.99,2019-12-07 02:49:00,569 Wilson St, Seattle,WA,98101 +307094,USB-C Charging Cable,1,11.95,2019-12-25 14:46:00,408 River St, New York City,NY,10001 +307095,AA Batteries (4-pack),1,3.84,2019-12-24 10:40:00,684 Dogwood St, San Francisco,CA,94016 +307096,27in 4K Gaming Monitor,1,389.99,2019-12-02 14:34:00,522 Lincoln St, San Francisco,CA,94016 +307097,AAA Batteries (4-pack),1,2.99,2019-12-07 10:18:00,975 Dogwood St, Boston,MA,02215 +307098,AA Batteries (4-pack),1,3.84,2019-12-10 10:47:00,507 Spruce St, Los Angeles,CA,90001 +307099,ThinkPad Laptop,1,999.99,2019-12-15 19:36:00,393 Park St, San Francisco,CA,94016 +307100,20in Monitor,1,109.99,2019-12-18 19:15:00,216 9th St, Seattle,WA,98101 +307101,Lightning Charging Cable,1,14.95,2019-12-10 17:04:00,703 7th St, Seattle,WA,98101 +307102,USB-C Charging Cable,1,11.95,2019-12-12 19:48:00,602 1st St, Los Angeles,CA,90001 +307103,Google Phone,1,600.0,2019-12-17 14:47:00,718 8th St, Dallas,TX,75001 +307103,USB-C Charging Cable,1,11.95,2019-12-17 14:47:00,718 8th St, Dallas,TX,75001 +307103,Wired Headphones,1,11.99,2019-12-17 14:47:00,718 8th St, Dallas,TX,75001 +307104,Bose SoundSport Headphones,1,99.99,2019-12-12 21:07:00,652 Johnson St, New York City,NY,10001 +307105,Bose SoundSport Headphones,1,99.99,2019-12-18 23:05:00,370 Spruce St, Seattle,WA,98101 +307106,Lightning Charging Cable,1,14.95,2019-12-22 09:52:00,718 4th St, Dallas,TX,75001 +307107,USB-C Charging Cable,1,11.95,2019-12-30 23:39:00,479 14th St, San Francisco,CA,94016 +307108,Macbook Pro Laptop,1,1700.0,2019-12-01 09:11:00,518 Wilson St, San Francisco,CA,94016 +307109,AAA Batteries (4-pack),1,2.99,2019-12-16 12:05:00,264 Elm St, New York City,NY,10001 +307110,Vareebadd Phone,1,400.0,2019-12-01 21:19:00,921 Jefferson St, San Francisco,CA,94016 +307111,Lightning Charging Cable,1,14.95,2019-12-02 06:16:00,146 Lincoln St, Portland,OR,97035 +307112,Apple Airpods Headphones,1,150.0,2019-12-02 12:43:00,549 Spruce St, Dallas,TX,75001 +307113,Bose SoundSport Headphones,1,99.99,2019-12-08 19:15:00,895 Main St, Dallas,TX,75001 +307114,Apple Airpods Headphones,1,150.0,2019-12-13 16:17:00,512 Maple St, Portland,OR,97035 +307115,Apple Airpods Headphones,1,150.0,2019-12-18 06:13:00,403 Dogwood St, San Francisco,CA,94016 +307116,Lightning Charging Cable,2,14.95,2019-12-25 09:37:00,929 1st St, Seattle,WA,98101 +307117,Wired Headphones,1,11.99,2019-12-15 18:48:00,873 10th St, Seattle,WA,98101 +307118,Bose SoundSport Headphones,1,99.99,2019-12-02 11:27:00,514 Cedar St, New York City,NY,10001 +307119,AA Batteries (4-pack),2,3.84,2019-12-15 12:42:00,978 West St, Los Angeles,CA,90001 +307120,34in Ultrawide Monitor,1,379.99,2019-12-03 12:42:00,453 Chestnut St, Portland,OR,97035 +307121,USB-C Charging Cable,1,11.95,2019-12-31 15:27:00,618 13th St, Boston,MA,02215 +307122,AA Batteries (4-pack),1,3.84,2019-12-13 09:12:00,967 Center St, San Francisco,CA,94016 +307123,34in Ultrawide Monitor,1,379.99,2019-12-29 18:41:00,832 5th St, Los Angeles,CA,90001 +307124,Bose SoundSport Headphones,1,99.99,2019-12-01 18:03:00,730 Madison St, Boston,MA,02215 +307125,Bose SoundSport Headphones,1,99.99,2019-12-12 15:17:00,239 Ridge St, Boston,MA,02215 +307126,Bose SoundSport Headphones,1,99.99,2019-12-28 10:53:00,481 Maple St, Austin,TX,73301 +307127,AA Batteries (4-pack),1,3.84,2019-12-27 01:17:00,465 West St, Portland,OR,97035 +307128,AAA Batteries (4-pack),1,2.99,2019-12-15 12:45:00,230 Ridge St, Portland,OR,97035 +307129,AAA Batteries (4-pack),2,2.99,2019-12-16 15:11:00,954 Hill St, Los Angeles,CA,90001 +307130,Bose SoundSport Headphones,1,99.99,2019-12-25 08:31:00,487 Hickory St, New York City,NY,10001 +307131,27in 4K Gaming Monitor,1,389.99,2019-12-04 21:11:00,425 8th St, San Francisco,CA,94016 +307132,ThinkPad Laptop,1,999.99,2019-12-01 18:09:00,636 Center St, Dallas,TX,75001 +307133,Bose SoundSport Headphones,1,99.99,2019-12-23 20:38:00,344 Hickory St, New York City,NY,10001 +307134,ThinkPad Laptop,1,999.99,2019-12-04 00:56:00,568 West St, Austin,TX,73301 +307135,Flatscreen TV,1,300.0,2019-12-21 16:48:00,408 Sunset St, Boston,MA,02215 +307136,27in 4K Gaming Monitor,1,389.99,2019-12-15 08:41:00,391 5th St, San Francisco,CA,94016 +307137,Flatscreen TV,1,300.0,2019-12-21 15:28:00,526 Lincoln St, San Francisco,CA,94016 +307138,Lightning Charging Cable,2,14.95,2019-12-06 22:08:00,858 Chestnut St, Boston,MA,02215 +307139,Lightning Charging Cable,1,14.95,2019-12-04 23:49:00,553 Hickory St, San Francisco,CA,94016 +307140,AAA Batteries (4-pack),1,2.99,2019-12-23 19:28:00,156 Wilson St, San Francisco,CA,94016 +307141,AAA Batteries (4-pack),1,2.99,2019-12-29 21:32:00,166 Cedar St, San Francisco,CA,94016 +307142,USB-C Charging Cable,1,11.95,2019-12-25 20:32:00,417 Elm St, Los Angeles,CA,90001 +307143,Lightning Charging Cable,1,14.95,2019-12-20 18:49:00,361 Park St, Austin,TX,73301 +307144,iPhone,1,700.0,2019-12-22 20:03:00,265 Wilson St, Los Angeles,CA,90001 +307145,AA Batteries (4-pack),1,3.84,2019-12-23 21:51:00,929 Lincoln St, Boston,MA,02215 +307146,Wired Headphones,1,11.99,2019-12-18 14:37:00,441 Dogwood St, San Francisco,CA,94016 +307147,ThinkPad Laptop,1,999.99,2019-12-27 13:48:00,492 5th St, Boston,MA,02215 +307148,AAA Batteries (4-pack),1,2.99,2019-12-14 23:34:00,685 West St, San Francisco,CA,94016 +307149,LG Dryer,1,600.0,2019-12-30 19:31:00,747 Jackson St, Los Angeles,CA,90001 +307150,Wired Headphones,1,11.99,2019-12-23 22:32:00,375 Sunset St, Austin,TX,73301 +307151,USB-C Charging Cable,2,11.95,2019-12-13 16:38:00,376 8th St, New York City,NY,10001 +307152,Bose SoundSport Headphones,1,99.99,2019-12-07 23:18:00,199 Park St, Los Angeles,CA,90001 +307153,ThinkPad Laptop,1,999.99,2019-12-01 10:31:00,652 14th St, Atlanta,GA,30301 +307153,Macbook Pro Laptop,1,1700.0,2019-12-01 10:31:00,652 14th St, Atlanta,GA,30301 +307154,Google Phone,1,600.0,2019-12-27 20:03:00,269 Park St, Atlanta,GA,30301 +307155,AAA Batteries (4-pack),4,2.99,2019-12-22 01:12:00,27 2nd St, San Francisco,CA,94016 +307156,AA Batteries (4-pack),1,3.84,2019-12-27 18:53:00,309 Hill St, San Francisco,CA,94016 +307157,Wired Headphones,1,11.99,2019-12-04 11:55:00,736 2nd St, Atlanta,GA,30301 +307158,27in 4K Gaming Monitor,1,389.99,2019-12-28 14:48:00,650 Jackson St, San Francisco,CA,94016 +307159,Lightning Charging Cable,1,14.95,2019-12-31 20:39:00,582 6th St, Atlanta,GA,30301 +307160,Google Phone,1,600.0,2019-12-01 08:49:00,227 11th St, Dallas,TX,75001 +307161,AA Batteries (4-pack),1,3.84,2019-12-10 07:52:00,694 8th St, San Francisco,CA,94016 +307162,Wired Headphones,2,11.99,2019-12-30 11:01:00,588 Park St, Los Angeles,CA,90001 +307163,27in FHD Monitor,1,149.99,2019-12-22 10:50:00,520 Johnson St, Portland,ME,04101 +307164,Bose SoundSport Headphones,2,99.99,2019-12-27 15:45:00,26 Wilson St, Dallas,TX,75001 +307165,27in FHD Monitor,1,149.99,2019-12-02 15:53:00,716 Hickory St, Portland,OR,97035 +307166,AAA Batteries (4-pack),6,2.99,2019-12-23 05:34:00,604 Johnson St, Seattle,WA,98101 +307167,AA Batteries (4-pack),1,3.84,2019-12-23 19:14:00,241 2nd St, New York City,NY,10001 +307168,34in Ultrawide Monitor,1,379.99,2019-12-03 07:39:00,76 7th St, New York City,NY,10001 +307169,AAA Batteries (4-pack),1,2.99,2019-12-23 16:24:00,699 River St, Austin,TX,73301 +307170,Apple Airpods Headphones,1,150.0,2019-12-26 18:45:00,889 Hill St, Los Angeles,CA,90001 +307171,AAA Batteries (4-pack),1,2.99,2019-12-08 09:22:00,552 Center St, Los Angeles,CA,90001 +307172,34in Ultrawide Monitor,1,379.99,2019-12-08 15:58:00,188 Cherry St, Los Angeles,CA,90001 +307173,Apple Airpods Headphones,1,150.0,2019-12-12 21:08:00,528 14th St, Boston,MA,02215 +307174,AA Batteries (4-pack),2,3.84,2019-12-02 18:56:00,50 7th St, Dallas,TX,75001 +307175,Wired Headphones,1,11.99,2019-12-15 11:20:00,185 8th St, Seattle,WA,98101 +307176,AAA Batteries (4-pack),2,2.99,2019-12-09 18:18:00,900 Park St, San Francisco,CA,94016 +307177,Vareebadd Phone,1,400.0,2019-12-18 11:28:00,248 Pine St, Atlanta,GA,30301 +307178,USB-C Charging Cable,1,11.95,2019-12-26 20:20:00,980 Forest St, Dallas,TX,75001 +307179,Bose SoundSport Headphones,1,99.99,2019-12-04 00:03:00,309 1st St, Portland,OR,97035 +307180,USB-C Charging Cable,1,11.95,2019-12-09 18:30:00,705 14th St, New York City,NY,10001 +307181,Wired Headphones,2,11.99,2019-12-01 11:01:00,93 Adams St, Boston,MA,02215 +307182,Macbook Pro Laptop,1,1700.0,2019-12-15 07:02:00,979 North St, San Francisco,CA,94016 +307183,AAA Batteries (4-pack),1,2.99,2019-12-15 19:54:00,403 Center St, Atlanta,GA,30301 +307184,AA Batteries (4-pack),2,3.84,2019-12-04 21:25:00,440 Johnson St, Boston,MA,02215 +307185,AAA Batteries (4-pack),1,2.99,2019-12-22 16:41:00,13 10th St, Los Angeles,CA,90001 +307186,Apple Airpods Headphones,1,150.0,2019-12-19 11:16:00,659 Church St, Dallas,TX,75001 +307187,Apple Airpods Headphones,1,150.0,2019-12-01 18:23:00,464 5th St, Atlanta,GA,30301 +307188,Wired Headphones,1,11.99,2019-12-15 22:40:00,3 13th St, Seattle,WA,98101 +307189,Apple Airpods Headphones,1,150.0,2019-12-22 19:15:00,28 Jefferson St, Seattle,WA,98101 +307190,AAA Batteries (4-pack),1,2.99,2019-12-15 18:28:00,872 Center St, Atlanta,GA,30301 +307191,Flatscreen TV,1,300.0,2019-12-13 14:17:00,312 Elm St, New York City,NY,10001 +307192,Wired Headphones,1,11.99,2019-12-01 13:38:00,876 4th St, Los Angeles,CA,90001 +307193,USB-C Charging Cable,1,11.95,2019-12-29 08:49:00,661 8th St, Portland,OR,97035 +307194,27in FHD Monitor,1,149.99,2019-12-16 16:54:00,788 Forest St, New York City,NY,10001 +307195,AAA Batteries (4-pack),2,2.99,2019-12-12 16:45:00,922 Chestnut St, Dallas,TX,75001 +307196,AA Batteries (4-pack),1,3.84,2019-12-23 10:37:00,261 West St, New York City,NY,10001 +307197,AA Batteries (4-pack),1,3.84,2019-12-12 08:29:00,464 Elm St, Dallas,TX,75001 +307198,AA Batteries (4-pack),2,3.84,2019-12-16 22:08:00,186 Wilson St, Austin,TX,73301 +307199,Wired Headphones,1,11.99,2019-12-13 15:25:00,426 Meadow St, New York City,NY,10001 +307200,Lightning Charging Cable,1,14.95,2019-12-06 00:45:00,278 Forest St, San Francisco,CA,94016 +307201,Lightning Charging Cable,1,14.95,2019-12-21 17:28:00,606 Cherry St, Los Angeles,CA,90001 +307202,AAA Batteries (4-pack),2,2.99,2019-12-03 20:45:00,845 Church St, San Francisco,CA,94016 +307203,Flatscreen TV,1,300.0,2019-12-27 15:58:00,736 Elm St, Dallas,TX,75001 +307204,27in FHD Monitor,1,149.99,2019-12-23 13:52:00,373 Washington St, Boston,MA,02215 +307205,USB-C Charging Cable,1,11.95,2019-12-20 15:57:00,866 6th St, San Francisco,CA,94016 +307206,Apple Airpods Headphones,1,150.0,2019-12-15 18:39:00,570 Highland St, Dallas,TX,75001 +307207,AAA Batteries (4-pack),3,2.99,2019-12-06 12:03:00,834 8th St, Los Angeles,CA,90001 +307208,iPhone,1,700.0,2019-12-09 23:08:00,758 Chestnut St, Dallas,TX,75001 +307209,AA Batteries (4-pack),1,3.84,2019-12-06 16:21:00,574 Lakeview St, Los Angeles,CA,90001 +307210,Bose SoundSport Headphones,1,99.99,2019-12-17 21:50:00,199 Madison St, New York City,NY,10001 +307211,Apple Airpods Headphones,1,150.0,2019-12-06 21:06:00,787 Hill St, New York City,NY,10001 +307212,USB-C Charging Cable,1,11.95,2019-12-31 15:23:00,748 Sunset St, San Francisco,CA,94016 +307213,AAA Batteries (4-pack),2,2.99,2019-12-23 19:41:00,925 6th St, San Francisco,CA,94016 +307214,Lightning Charging Cable,1,14.95,2019-12-24 09:29:00,160 Park St, Austin,TX,73301 +307215,27in 4K Gaming Monitor,1,389.99,2019-12-23 17:44:00,723 Chestnut St, Seattle,WA,98101 +307216,Apple Airpods Headphones,1,150.0,2019-12-10 12:24:00,166 Lakeview St, Los Angeles,CA,90001 +307217,Lightning Charging Cable,1,14.95,2019-12-10 10:15:00,370 North St, Atlanta,GA,30301 +307218,AA Batteries (4-pack),1,3.84,2019-12-20 18:39:00,522 Jackson St, Portland,OR,97035 +307219,Bose SoundSport Headphones,1,99.99,2019-12-11 09:58:00,13 9th St, San Francisco,CA,94016 +307220,AAA Batteries (4-pack),1,2.99,2019-12-14 14:38:00,557 Forest St, San Francisco,CA,94016 +307221,AA Batteries (4-pack),1,3.84,2019-12-16 07:33:00,944 Pine St, Atlanta,GA,30301 +307222,Apple Airpods Headphones,1,150.0,2019-12-08 09:07:00,665 Dogwood St, Los Angeles,CA,90001 +307223,Apple Airpods Headphones,1,150.0,2019-12-10 20:15:00,842 7th St, San Francisco,CA,94016 +307224,Macbook Pro Laptop,1,1700.0,2019-12-25 15:29:00,207 Wilson St, San Francisco,CA,94016 +307225,AA Batteries (4-pack),2,3.84,2019-12-19 19:28:00,987 Center St, Los Angeles,CA,90001 +307226,AAA Batteries (4-pack),1,2.99,2019-12-28 20:13:00,230 Spruce St, New York City,NY,10001 +307227,Wired Headphones,1,11.99,2019-12-17 14:05:00,448 Wilson St, Los Angeles,CA,90001 +307228,27in FHD Monitor,1,149.99,2019-12-08 19:38:00,513 Park St, Boston,MA,02215 +307229,Vareebadd Phone,1,400.0,2019-12-31 03:56:00,6 Center St, Austin,TX,73301 +307229,Wired Headphones,1,11.99,2019-12-31 03:56:00,6 Center St, Austin,TX,73301 +307230,34in Ultrawide Monitor,1,379.99,2019-12-28 06:50:00,255 Madison St, San Francisco,CA,94016 +307231,27in FHD Monitor,1,149.99,2019-12-05 10:43:00,198 Lincoln St, Los Angeles,CA,90001 +307232,Google Phone,1,600.0,2019-12-12 10:04:00,433 Forest St, Seattle,WA,98101 +307233,AAA Batteries (4-pack),2,2.99,2019-12-17 11:39:00,639 14th St, San Francisco,CA,94016 +307234,Lightning Charging Cable,1,14.95,2019-12-21 09:15:00,879 Johnson St, Los Angeles,CA,90001 +307235,AA Batteries (4-pack),1,3.84,2019-12-15 19:48:00,945 8th St, New York City,NY,10001 +307236,iPhone,1,700.0,2019-12-02 07:16:00,851 Forest St, Portland,OR,97035 +307237,34in Ultrawide Monitor,1,379.99,2019-12-04 16:33:00,889 Meadow St, Portland,OR,97035 +307238,34in Ultrawide Monitor,1,379.99,2019-12-06 11:22:00,505 Willow St, San Francisco,CA,94016 +307239,Wired Headphones,1,11.99,2019-12-21 11:34:00,260 South St, San Francisco,CA,94016 +307240,AAA Batteries (4-pack),4,2.99,2019-12-16 16:08:00,415 Washington St, Los Angeles,CA,90001 +307241,USB-C Charging Cable,1,11.95,2019-12-28 12:31:00,250 Meadow St, San Francisco,CA,94016 +307242,AAA Batteries (4-pack),1,2.99,2019-12-13 18:04:00,71 West St, San Francisco,CA,94016 +307243,Apple Airpods Headphones,1,150.0,2019-12-19 20:56:00,260 Jefferson St, San Francisco,CA,94016 +307244,Wired Headphones,1,11.99,2019-12-28 19:40:00,398 Main St, San Francisco,CA,94016 +307245,27in 4K Gaming Monitor,1,389.99,2019-12-09 17:00:00,303 North St, New York City,NY,10001 +307246,AAA Batteries (4-pack),1,2.99,2019-12-28 13:15:00,132 12th St, Austin,TX,73301 +307247,AA Batteries (4-pack),1,3.84,2019-12-11 15:01:00,62 Cherry St, Portland,OR,97035 +307248,Wired Headphones,1,11.99,2019-12-09 16:38:00,20 Meadow St, New York City,NY,10001 +307249,Bose SoundSport Headphones,1,99.99,2019-12-10 21:46:00,209 Center St, Atlanta,GA,30301 +307250,Lightning Charging Cable,1,14.95,2019-12-10 20:26:00,310 Adams St, Boston,MA,02215 +307251,Bose SoundSport Headphones,1,99.99,2019-12-18 17:33:00,396 2nd St, Atlanta,GA,30301 +307252,Google Phone,1,600.0,2019-12-08 11:48:00,880 Forest St, New York City,NY,10001 +307253,Google Phone,1,600.0,2019-12-01 15:17:00,883 14th St, San Francisco,CA,94016 +307254,Lightning Charging Cable,1,14.95,2019-12-21 20:10:00,922 River St, San Francisco,CA,94016 +307255,Apple Airpods Headphones,1,150.0,2019-12-22 14:26:00,601 Park St, San Francisco,CA,94016 +307256,USB-C Charging Cable,2,11.95,2019-12-11 17:00:00,484 Johnson St, San Francisco,CA,94016 +307257,Wired Headphones,1,11.99,2019-12-20 09:32:00,162 9th St, Portland,OR,97035 +307258,AAA Batteries (4-pack),1,2.99,2019-12-29 19:17:00,585 6th St, Dallas,TX,75001 +307259,Lightning Charging Cable,1,14.95,2019-12-22 11:13:00,613 Sunset St, San Francisco,CA,94016 +307260,USB-C Charging Cable,1,11.95,2019-12-22 09:09:00,531 Willow St, Boston,MA,02215 +307261,34in Ultrawide Monitor,1,379.99,2019-12-06 21:59:00,198 North St, Atlanta,GA,30301 +307262,Vareebadd Phone,1,400.0,2019-12-02 12:32:00,773 7th St, Boston,MA,02215 +307263,iPhone,1,700.0,2019-12-17 15:25:00,399 Highland St, Dallas,TX,75001 +307264,Wired Headphones,1,11.99,2019-12-14 16:16:00,96 12th St, Los Angeles,CA,90001 +307265,AA Batteries (4-pack),1,3.84,2019-12-18 15:14:00,887 13th St, San Francisco,CA,94016 +307266,34in Ultrawide Monitor,1,379.99,2019-12-06 18:46:00,638 Johnson St, San Francisco,CA,94016 +307267,USB-C Charging Cable,1,11.95,2019-12-08 23:59:00,142 Maple St, Seattle,WA,98101 +307268,AAA Batteries (4-pack),2,2.99,2019-12-18 22:56:00,733 Jackson St, Los Angeles,CA,90001 +307269,AA Batteries (4-pack),3,3.84,2019-12-03 15:39:00,660 12th St, San Francisco,CA,94016 +307270,USB-C Charging Cable,1,11.95,2019-12-17 22:11:00,496 Lincoln St, Portland,ME,04101 +307271,AAA Batteries (4-pack),1,2.99,2019-12-01 09:53:00,312 Lake St, Atlanta,GA,30301 +307272,USB-C Charging Cable,1,11.95,2019-12-20 16:59:00,859 Meadow St, Dallas,TX,75001 +307273,27in FHD Monitor,1,149.99,2019-12-21 18:51:00,141 10th St, Austin,TX,73301 +307274,USB-C Charging Cable,2,11.95,2019-12-27 18:18:00,239 Dogwood St, Portland,OR,97035 +307275,Lightning Charging Cable,1,14.95,2019-12-19 13:36:00,263 6th St, Los Angeles,CA,90001 +307276,Macbook Pro Laptop,1,1700.0,2019-12-20 09:38:00,549 Chestnut St, Dallas,TX,75001 +307277,USB-C Charging Cable,1,11.95,2019-12-01 12:55:00,573 Jefferson St, Seattle,WA,98101 +307278,Google Phone,1,600.0,2019-12-11 02:49:00,915 Park St, Atlanta,GA,30301 +307279,27in FHD Monitor,1,149.99,2019-12-07 14:53:00,792 1st St, San Francisco,CA,94016 +307280,USB-C Charging Cable,1,11.95,2019-12-16 23:19:00,653 Spruce St, Atlanta,GA,30301 +307281,AA Batteries (4-pack),1,3.84,2019-12-12 16:57:00,859 9th St, San Francisco,CA,94016 +307282,Apple Airpods Headphones,1,150.0,2019-12-16 16:14:00,107 11th St, New York City,NY,10001 +307283,Lightning Charging Cable,1,14.95,2019-12-27 19:21:00,639 Center St, Boston,MA,02215 +307284,Apple Airpods Headphones,1,150.0,2019-12-08 17:54:00,573 Spruce St, San Francisco,CA,94016 +307285,AA Batteries (4-pack),1,3.84,2019-12-01 11:37:00,111 Meadow St, Los Angeles,CA,90001 +307286,Wired Headphones,1,11.99,2019-12-17 19:36:00,672 6th St, Los Angeles,CA,90001 +307287,Bose SoundSport Headphones,1,99.99,2019-12-23 19:38:00,652 Meadow St, San Francisco,CA,94016 +307288,27in FHD Monitor,1,149.99,2019-12-11 14:36:00,245 South St, Boston,MA,02215 +307289,27in 4K Gaming Monitor,1,389.99,2019-12-19 19:34:00,610 North St, San Francisco,CA,94016 +307290,20in Monitor,1,109.99,2019-12-25 18:46:00,875 13th St, Atlanta,GA,30301 +307291,AAA Batteries (4-pack),1,2.99,2019-12-21 09:31:00,441 Main St, Los Angeles,CA,90001 +307292,USB-C Charging Cable,1,11.95,2019-12-05 23:29:00,186 Maple St, Portland,OR,97035 +307293,Lightning Charging Cable,1,14.95,2019-12-03 14:29:00,844 11th St, Atlanta,GA,30301 +307294,ThinkPad Laptop,1,999.99,2019-12-24 16:42:00,345 Lake St, San Francisco,CA,94016 +307295,Lightning Charging Cable,1,14.95,2019-12-27 14:42:00,793 Cherry St, Austin,TX,73301 +307296,AAA Batteries (4-pack),1,2.99,2019-12-25 23:52:00,162 8th St, Los Angeles,CA,90001 +307297,AAA Batteries (4-pack),1,2.99,2019-12-11 20:05:00,415 Jackson St, San Francisco,CA,94016 +307298,Wired Headphones,1,11.99,2019-12-20 08:27:00,255 Hill St, New York City,NY,10001 +307299,Bose SoundSport Headphones,1,99.99,2019-12-14 21:14:00,175 Johnson St, Dallas,TX,75001 +307300,iPhone,1,700.0,2019-12-19 20:04:00,556 South St, Atlanta,GA,30301 +307301,27in 4K Gaming Monitor,1,389.99,2019-12-29 14:18:00,198 Lakeview St, Seattle,WA,98101 +307302,AAA Batteries (4-pack),2,2.99,2019-12-23 16:46:00,573 8th St, Austin,TX,73301 +307303,AA Batteries (4-pack),1,3.84,2019-12-25 21:01:00,338 Adams St, Boston,MA,02215 +307304,USB-C Charging Cable,1,11.95,2019-12-30 11:34:00,606 Jackson St, San Francisco,CA,94016 +307305,AA Batteries (4-pack),1,3.84,2019-12-22 07:36:00,697 Highland St, Dallas,TX,75001 +307306,Apple Airpods Headphones,1,150.0,2019-12-17 17:23:00,249 Hickory St, Seattle,WA,98101 +307307,Lightning Charging Cable,1,14.95,2019-12-01 09:58:00,914 Sunset St, San Francisco,CA,94016 +307308,Lightning Charging Cable,1,14.95,2019-12-05 18:47:00,510 1st St, New York City,NY,10001 +307309,ThinkPad Laptop,1,999.99,2019-12-07 16:24:00,896 12th St, New York City,NY,10001 +307310,Wired Headphones,1,11.99,2019-12-17 21:00:00,214 Forest St, San Francisco,CA,94016 +307311,AA Batteries (4-pack),1,3.84,2019-12-30 15:24:00,862 Lake St, Seattle,WA,98101 +307312,AAA Batteries (4-pack),2,2.99,2019-12-18 20:30:00,370 Johnson St, San Francisco,CA,94016 +307313,Lightning Charging Cable,1,14.95,2019-12-14 21:05:00,233 12th St, Los Angeles,CA,90001 +307314,Wired Headphones,1,11.99,2019-12-27 21:37:00,954 10th St, Los Angeles,CA,90001 +307315,iPhone,1,700.0,2019-12-12 12:16:00,41 Pine St, Los Angeles,CA,90001 +307316,Lightning Charging Cable,1,14.95,2019-12-30 20:22:00,619 Hickory St, Boston,MA,02215 +307317,iPhone,1,700.0,2019-12-24 12:05:00,522 South St, Boston,MA,02215 +307318,AA Batteries (4-pack),1,3.84,2019-12-06 16:43:00,264 Cedar St, Atlanta,GA,30301 +307319,Wired Headphones,1,11.99,2019-12-26 18:35:00,939 8th St, New York City,NY,10001 +307320,Apple Airpods Headphones,1,150.0,2019-12-17 18:08:00,717 Center St, Dallas,TX,75001 +307321,ThinkPad Laptop,1,999.99,2019-12-07 18:47:00,503 Wilson St, Los Angeles,CA,90001 +307322,USB-C Charging Cable,1,11.95,2019-12-01 16:34:00,335 14th St, Los Angeles,CA,90001 +307323,Bose SoundSport Headphones,1,99.99,2019-12-17 09:00:00,777 Pine St, Austin,TX,73301 +307324,USB-C Charging Cable,2,11.95,2019-12-18 01:39:00,986 4th St, Dallas,TX,75001 +307325,AA Batteries (4-pack),1,3.84,2019-12-30 12:17:00,341 Lake St, San Francisco,CA,94016 +307326,27in FHD Monitor,1,149.99,2019-12-21 11:54:00,702 Spruce St, Atlanta,GA,30301 +307327,AAA Batteries (4-pack),1,2.99,2019-12-16 12:09:00,676 River St, Los Angeles,CA,90001 +307328,Bose SoundSport Headphones,1,99.99,2019-12-31 14:40:00,372 11th St, Dallas,TX,75001 +307328,27in FHD Monitor,1,149.99,2019-12-31 14:40:00,372 11th St, Dallas,TX,75001 +307329,20in Monitor,1,109.99,2019-12-03 22:27:00,807 Forest St, Los Angeles,CA,90001 +307330,Lightning Charging Cable,1,14.95,2019-12-13 10:40:00,348 Willow St, San Francisco,CA,94016 +307331,AAA Batteries (4-pack),3,2.99,2019-12-31 17:02:00,768 9th St, San Francisco,CA,94016 +307332,Apple Airpods Headphones,1,150.0,2019-12-04 18:07:00,420 Dogwood St, Seattle,WA,98101 +307333,USB-C Charging Cable,1,11.95,2019-12-20 18:00:00,406 4th St, Boston,MA,02215 +307334,Wired Headphones,1,11.99,2019-12-16 08:23:00,489 River St, New York City,NY,10001 +307335,AA Batteries (4-pack),1,3.84,2019-12-29 17:40:00,150 14th St, New York City,NY,10001 +307336,20in Monitor,1,109.99,2019-12-22 21:02:00,415 4th St, Boston,MA,02215 +307337,AA Batteries (4-pack),2,3.84,2019-12-27 13:02:00,534 4th St, San Francisco,CA,94016 +307338,Wired Headphones,1,11.99,2019-12-14 23:38:00,584 9th St, Los Angeles,CA,90001 +307339,Lightning Charging Cable,1,14.95,2019-12-07 23:29:00,308 Madison St, San Francisco,CA,94016 +307340,20in Monitor,1,109.99,2019-12-06 15:41:00,433 11th St, Boston,MA,02215 +307341,Apple Airpods Headphones,1,150.0,2019-12-13 06:25:00,169 8th St, Boston,MA,02215 +307342,27in FHD Monitor,1,149.99,2019-12-02 16:52:00,248 7th St, Atlanta,GA,30301 +307343,Wired Headphones,1,11.99,2019-12-07 23:16:00,204 West St, Los Angeles,CA,90001 +307344,Bose SoundSport Headphones,1,99.99,2019-12-20 12:52:00,852 Washington St, Atlanta,GA,30301 +307345,AAA Batteries (4-pack),2,2.99,2019-12-22 15:53:00,119 Main St, San Francisco,CA,94016 +307346,Wired Headphones,1,11.99,2019-12-30 19:04:00,311 Washington St, San Francisco,CA,94016 +307347,Lightning Charging Cable,1,14.95,2019-12-29 01:10:00,591 Sunset St, Los Angeles,CA,90001 +307348,USB-C Charging Cable,1,11.95,2019-12-04 00:19:00,434 12th St, Boston,MA,02215 +307349,Wired Headphones,1,11.99,2019-12-24 12:51:00,875 Walnut St, Seattle,WA,98101 +307350,AAA Batteries (4-pack),2,2.99,2019-12-20 17:51:00,253 Dogwood St, New York City,NY,10001 +307351,Lightning Charging Cable,1,14.95,2019-12-15 14:33:00,686 7th St, Atlanta,GA,30301 +307352,Apple Airpods Headphones,1,150.0,2019-12-13 14:25:00,408 Lincoln St, Los Angeles,CA,90001 +307353,AA Batteries (4-pack),1,3.84,2019-12-29 14:02:00,879 Ridge St, Austin,TX,73301 +307353,Apple Airpods Headphones,1,150.0,2019-12-29 14:02:00,879 Ridge St, Austin,TX,73301 +307354,Apple Airpods Headphones,1,150.0,2019-12-12 23:04:00,194 Lake St, Seattle,WA,98101 +307355,Lightning Charging Cable,1,14.95,2019-12-23 19:16:00,640 5th St, New York City,NY,10001 +307356,AA Batteries (4-pack),1,3.84,2019-12-24 23:36:00,995 Wilson St, Dallas,TX,75001 +307357,Wired Headphones,1,11.99,2019-12-22 21:47:00,164 1st St, New York City,NY,10001 +307358,AA Batteries (4-pack),2,3.84,2019-12-24 19:44:00,757 Forest St, Los Angeles,CA,90001 +307359,Wired Headphones,1,11.99,2019-12-22 08:24:00,759 Johnson St, New York City,NY,10001 +307360,Google Phone,1,600.0,2019-12-23 23:42:00,454 Jefferson St, Boston,MA,02215 +307361,20in Monitor,1,109.99,2019-12-28 15:03:00,878 Walnut St, San Francisco,CA,94016 +307362,34in Ultrawide Monitor,1,379.99,2019-12-25 14:39:00,463 Wilson St, Los Angeles,CA,90001 +307363,Wired Headphones,1,11.99,2019-12-03 14:32:00,321 Wilson St, Los Angeles,CA,90001 +307364,AAA Batteries (4-pack),1,2.99,2019-12-09 16:45:00,659 Main St, San Francisco,CA,94016 +307365,Lightning Charging Cable,1,14.95,2019-12-22 13:52:00,149 Hill St, New York City,NY,10001 +307366,Bose SoundSport Headphones,1,99.99,2019-12-30 07:12:00,545 Main St, Los Angeles,CA,90001 +307367,Apple Airpods Headphones,1,150.0,2019-12-28 19:14:00,733 2nd St, Los Angeles,CA,90001 +307368,Wired Headphones,1,11.99,2019-12-31 18:22:00,401 Main St, San Francisco,CA,94016 +307369,USB-C Charging Cable,1,11.95,2019-12-24 22:49:00,405 5th St, San Francisco,CA,94016 +307370,iPhone,1,700.0,2019-12-04 15:44:00,283 Main St, New York City,NY,10001 +307371,Apple Airpods Headphones,1,150.0,2019-12-15 01:11:00,526 Maple St, New York City,NY,10001 +307372,Lightning Charging Cable,1,14.95,2019-12-21 19:08:00,112 Sunset St, New York City,NY,10001 +307373,AAA Batteries (4-pack),2,2.99,2019-12-02 18:20:00,596 10th St, San Francisco,CA,94016 +307374,iPhone,1,700.0,2019-12-28 12:04:00,84 South St, San Francisco,CA,94016 +307375,27in 4K Gaming Monitor,1,389.99,2019-12-22 16:42:00,16 4th St, Austin,TX,73301 +307376,Lightning Charging Cable,1,14.95,2019-12-04 15:38:00,942 Lake St, San Francisco,CA,94016 +307377,Bose SoundSport Headphones,1,99.99,2019-12-05 09:34:00,53 Lincoln St, Dallas,TX,75001 +307378,Wired Headphones,1,11.99,2019-12-12 11:56:00,788 10th St, Los Angeles,CA,90001 +307379,AA Batteries (4-pack),1,3.84,2019-12-15 12:59:00,172 Pine St, Los Angeles,CA,90001 +307380,Wired Headphones,1,11.99,2019-12-29 13:12:00,469 Dogwood St, Atlanta,GA,30301 +307381,Vareebadd Phone,1,400.0,2019-12-16 18:31:00,422 Lake St, Boston,MA,02215 +307382,Lightning Charging Cable,1,14.95,2019-12-16 13:53:00,57 Dogwood St, Los Angeles,CA,90001 +307383,Apple Airpods Headphones,1,150.0,2019-12-30 04:43:00,79 Elm St, New York City,NY,10001 +307384,Lightning Charging Cable,1,14.95,2019-12-11 09:41:00,712 Hill St, Atlanta,GA,30301 +307385,Wired Headphones,1,11.99,2019-12-17 11:24:00,986 Lakeview St, New York City,NY,10001 +307386,AA Batteries (4-pack),1,3.84,2019-12-12 09:12:00,163 9th St, Boston,MA,02215 +307387,AA Batteries (4-pack),1,3.84,2019-12-14 20:18:00,826 Hickory St, Atlanta,GA,30301 +307388,USB-C Charging Cable,1,11.95,2019-12-29 14:19:00,535 Washington St, Atlanta,GA,30301 +307389,Flatscreen TV,1,300.0,2019-12-28 19:00:00,935 Jefferson St, San Francisco,CA,94016 +307390,ThinkPad Laptop,1,999.99,2019-12-30 06:54:00,60 Walnut St, Austin,TX,73301 +307391,Wired Headphones,1,11.99,2019-12-08 08:57:00,853 Dogwood St, San Francisco,CA,94016 +307392,AA Batteries (4-pack),1,3.84,2019-12-31 22:46:00,334 North St, Boston,MA,02215 +307393,20in Monitor,1,109.99,2019-12-06 08:08:00,658 Jefferson St, Atlanta,GA,30301 +307394,Bose SoundSport Headphones,1,99.99,2019-12-14 11:43:00,851 Spruce St, Los Angeles,CA,90001 +307395,Apple Airpods Headphones,1,150.0,2019-12-18 19:43:00,109 River St, Dallas,TX,75001 +307396,Wired Headphones,2,11.99,2019-12-26 17:31:00,171 2nd St, San Francisco,CA,94016 +307397,AAA Batteries (4-pack),3,2.99,2019-12-25 00:36:00,846 Lakeview St, Austin,TX,73301 +307398,Apple Airpods Headphones,1,150.0,2019-12-18 10:10:00,618 12th St, Austin,TX,73301 +307399,Apple Airpods Headphones,1,150.0,2019-12-02 13:36:00,324 12th St, San Francisco,CA,94016 +307400,AAA Batteries (4-pack),1,2.99,2019-12-05 01:34:00,321 Adams St, San Francisco,CA,94016 +307401,Apple Airpods Headphones,1,150.0,2019-12-31 00:26:00,492 Adams St, New York City,NY,10001 +307402,Bose SoundSport Headphones,1,99.99,2019-12-15 23:03:00,519 Spruce St, Los Angeles,CA,90001 +307403,ThinkPad Laptop,1,999.99,2019-12-26 19:47:00,123 Forest St, Austin,TX,73301 +307404,Lightning Charging Cable,1,14.95,2019-12-30 17:17:00,860 Jackson St, Los Angeles,CA,90001 +307405,Lightning Charging Cable,1,14.95,2019-12-31 11:58:00,658 Main St, Seattle,WA,98101 +307406,Wired Headphones,1,11.99,2019-12-23 06:54:00,672 1st St, Seattle,WA,98101 +307407,Lightning Charging Cable,1,14.95,2019-12-17 16:22:00,135 Jefferson St, San Francisco,CA,94016 +307408,27in FHD Monitor,1,149.99,2019-12-06 18:27:00,92 Willow St, Dallas,TX,75001 +307409,AAA Batteries (4-pack),2,2.99,2019-12-07 17:04:00,123 8th St, New York City,NY,10001 +307410,AA Batteries (4-pack),1,3.84,2019-12-30 12:30:00,88 10th St, Los Angeles,CA,90001 +307411,27in 4K Gaming Monitor,1,389.99,2019-12-10 11:20:00,276 Hill St, Boston,MA,02215 +307412,Lightning Charging Cable,1,14.95,2019-12-03 16:30:00,755 Center St, Atlanta,GA,30301 +307413,Wired Headphones,2,11.99,2019-12-06 16:15:00,471 West St, Seattle,WA,98101 +307414,Bose SoundSport Headphones,1,99.99,2019-12-14 13:23:00,496 4th St, Los Angeles,CA,90001 +307415,AAA Batteries (4-pack),2,2.99,2019-12-06 11:44:00,345 Walnut St, Boston,MA,02215 +307416,27in FHD Monitor,1,149.99,2019-12-02 20:49:00,893 Adams St, San Francisco,CA,94016 +307417,AAA Batteries (4-pack),2,2.99,2019-12-11 18:21:00,440 Pine St, San Francisco,CA,94016 +307418,Lightning Charging Cable,1,14.95,2019-12-27 23:53:00,681 Cedar St, Seattle,WA,98101 +307419,AA Batteries (4-pack),1,3.84,2019-12-20 09:28:00,890 Lakeview St, Boston,MA,02215 +307420,AAA Batteries (4-pack),1,2.99,2019-12-12 15:09:00,86 13th St, Los Angeles,CA,90001 +307421,Bose SoundSport Headphones,1,99.99,2019-12-01 08:21:00,739 2nd St, Los Angeles,CA,90001 +307422,USB-C Charging Cable,1,11.95,2019-12-26 13:06:00,946 Cherry St, Atlanta,GA,30301 +307423,Bose SoundSport Headphones,1,99.99,2019-12-18 05:09:00,995 1st St, Dallas,TX,75001 +307424,Apple Airpods Headphones,1,150.0,2019-12-17 09:23:00,631 Johnson St, New York City,NY,10001 +307425,Apple Airpods Headphones,1,150.0,2019-12-30 19:45:00,297 4th St, Dallas,TX,75001 +307426,iPhone,1,700.0,2019-12-16 14:23:00,585 North St, Boston,MA,02215 +307427,Vareebadd Phone,1,400.0,2019-12-25 22:14:00,559 4th St, San Francisco,CA,94016 +307428,Flatscreen TV,1,300.0,2019-12-23 02:28:00,289 Cherry St, Dallas,TX,75001 +307429,iPhone,1,700.0,2019-12-21 11:36:00,722 1st St, Portland,OR,97035 +307430,Google Phone,1,600.0,2019-12-06 09:53:00,996 River St, San Francisco,CA,94016 +307431,Apple Airpods Headphones,1,150.0,2019-12-08 10:20:00,479 North St, Portland,OR,97035 +307432,AAA Batteries (4-pack),1,2.99,2019-12-15 09:23:00,449 5th St, Los Angeles,CA,90001 +307433,ThinkPad Laptop,1,999.99,2019-12-06 23:10:00,673 Highland St, Austin,TX,73301 +307434,Apple Airpods Headphones,1,150.0,2019-12-14 21:19:00,867 Willow St, Atlanta,GA,30301 +307435,Apple Airpods Headphones,1,150.0,2019-12-04 22:41:00,363 Lincoln St, New York City,NY,10001 +307436,AAA Batteries (4-pack),1,2.99,2019-12-25 23:10:00,150 8th St, Atlanta,GA,30301 +307437,AA Batteries (4-pack),1,3.84,2019-12-09 14:02:00,846 Elm St, San Francisco,CA,94016 +307438,Wired Headphones,1,11.99,2019-12-18 20:58:00,351 Elm St, Los Angeles,CA,90001 +307439,Macbook Pro Laptop,1,1700.0,2019-12-31 22:19:00,380 Washington St, Dallas,TX,75001 +307440,Lightning Charging Cable,1,14.95,2019-12-20 12:00:00,614 West St, San Francisco,CA,94016 +307441,ThinkPad Laptop,1,999.99,2019-12-07 14:15:00,70 North St, New York City,NY,10001 +307442,AAA Batteries (4-pack),1,2.99,2019-12-14 20:08:00,984 5th St, Dallas,TX,75001 +307443,Bose SoundSport Headphones,1,99.99,2019-12-01 14:53:00,762 2nd St, New York City,NY,10001 +307444,AAA Batteries (4-pack),1,2.99,2019-12-13 09:31:00,823 Hill St, Austin,TX,73301 +307445,AA Batteries (4-pack),2,3.84,2019-12-14 14:58:00,315 Cherry St, New York City,NY,10001 +307446,AA Batteries (4-pack),1,3.84,2019-12-29 11:56:00,112 Johnson St, Boston,MA,02215 +307447,AAA Batteries (4-pack),1,2.99,2019-12-16 18:17:00,251 Hill St, Atlanta,GA,30301 +307448,Bose SoundSport Headphones,1,99.99,2019-12-29 20:43:00,264 14th St, Los Angeles,CA,90001 +307449,AAA Batteries (4-pack),1,2.99,2019-12-21 20:13:00,972 4th St, New York City,NY,10001 +307450,AA Batteries (4-pack),1,3.84,2019-12-03 17:19:00,25 North St, New York City,NY,10001 +307451,USB-C Charging Cable,1,11.95,2019-12-19 10:32:00,81 13th St, Dallas,TX,75001 +307452,Lightning Charging Cable,1,14.95,2019-12-21 21:36:00,423 1st St, Dallas,TX,75001 +307453,LG Washing Machine,1,600.0,2019-12-03 12:55:00,681 Meadow St, San Francisco,CA,94016 +307454,Wired Headphones,1,11.99,2019-12-16 16:28:00,951 Cedar St, Dallas,TX,75001 +307455,34in Ultrawide Monitor,1,379.99,2019-12-06 07:36:00,416 Church St, Atlanta,GA,30301 +307456,Wired Headphones,1,11.99,2019-12-19 10:50:00,951 Lincoln St, Los Angeles,CA,90001 +307457,Google Phone,1,600.0,2019-12-16 19:45:00,346 Maple St, Atlanta,GA,30301 +307458,Lightning Charging Cable,1,14.95,2019-12-14 14:50:00,836 13th St, Seattle,WA,98101 +307459,20in Monitor,1,109.99,2019-12-16 12:42:00,668 6th St, Seattle,WA,98101 +307460,20in Monitor,1,109.99,2019-12-29 11:20:00,670 Madison St, Austin,TX,73301 +307461,Wired Headphones,1,11.99,2019-12-08 10:45:00,275 4th St, San Francisco,CA,94016 +307462,Wired Headphones,1,11.99,2019-12-10 08:29:00,108 Cedar St, San Francisco,CA,94016 +307462,Vareebadd Phone,1,400.0,2019-12-10 08:29:00,108 Cedar St, San Francisco,CA,94016 +307463,27in FHD Monitor,1,149.99,2019-12-27 13:20:00,384 Cedar St, San Francisco,CA,94016 +307464,ThinkPad Laptop,1,999.99,2019-12-14 14:01:00,702 North St, Seattle,WA,98101 +307465,AAA Batteries (4-pack),2,2.99,2019-12-31 05:57:00,12 4th St, Portland,OR,97035 +307466,Lightning Charging Cable,2,14.95,2019-12-23 16:20:00,508 6th St, Los Angeles,CA,90001 +307467,Bose SoundSport Headphones,1,99.99,2019-12-20 18:40:00,66 Wilson St, Atlanta,GA,30301 +307468,Apple Airpods Headphones,1,150.0,2019-12-03 18:23:00,820 Ridge St, Los Angeles,CA,90001 +307469,AA Batteries (4-pack),1,3.84,2019-12-08 20:54:00,806 5th St, Portland,OR,97035 +307470,27in 4K Gaming Monitor,1,389.99,2019-12-18 18:46:00,919 Elm St, San Francisco,CA,94016 +307471,Wired Headphones,1,11.99,2019-12-19 09:39:00,768 Cedar St, New York City,NY,10001 +307472,AAA Batteries (4-pack),1,2.99,2019-12-02 17:44:00,346 Cherry St, Los Angeles,CA,90001 +307473,34in Ultrawide Monitor,1,379.99,2019-12-09 18:34:00,245 Lake St, San Francisco,CA,94016 +307474,AA Batteries (4-pack),1,3.84,2019-12-19 01:28:00,904 Hickory St, San Francisco,CA,94016 +307475,Lightning Charging Cable,1,14.95,2019-12-12 23:38:00,135 6th St, Los Angeles,CA,90001 +307476,Wired Headphones,1,11.99,2019-12-08 14:20:00,492 Cherry St, Los Angeles,CA,90001 +307477,Wired Headphones,2,11.99,2019-12-30 11:11:00,463 1st St, San Francisco,CA,94016 +307478,AAA Batteries (4-pack),1,2.99,2019-12-25 11:45:00,74 Johnson St, Dallas,TX,75001 +307479,USB-C Charging Cable,1,11.95,2019-12-14 23:03:00,49 Forest St, New York City,NY,10001 +307480,AAA Batteries (4-pack),1,2.99,2019-12-12 18:37:00,422 Wilson St, Los Angeles,CA,90001 +307481,34in Ultrawide Monitor,1,379.99,2019-12-06 14:23:00,697 12th St, Boston,MA,02215 +307482,Apple Airpods Headphones,1,150.0,2019-12-28 14:43:00,797 13th St, Los Angeles,CA,90001 +307483,USB-C Charging Cable,1,11.95,2019-12-24 09:41:00,230 Cedar St, Los Angeles,CA,90001 +307484,Flatscreen TV,1,300.0,2019-12-18 20:29:00,447 10th St, San Francisco,CA,94016 +307485,Wired Headphones,1,11.99,2019-12-22 17:40:00,876 Pine St, Boston,MA,02215 +307486,Wired Headphones,1,11.99,2019-12-30 14:40:00,728 Hill St, New York City,NY,10001 +307487,AA Batteries (4-pack),1,3.84,2019-12-20 09:33:00,973 Dogwood St, New York City,NY,10001 +307488,iPhone,1,700.0,2019-12-15 09:30:00,515 Ridge St, Dallas,TX,75001 +307489,Wired Headphones,1,11.99,2019-12-01 21:42:00,874 13th St, Los Angeles,CA,90001 +307490,AA Batteries (4-pack),2,3.84,2019-12-23 04:21:00,212 Willow St, Los Angeles,CA,90001 +307491,AA Batteries (4-pack),1,3.84,2019-12-25 19:25:00,726 7th St, Dallas,TX,75001 +307492,USB-C Charging Cable,1,11.95,2019-12-10 21:25:00,133 Cherry St, San Francisco,CA,94016 +307493,Wired Headphones,1,11.99,2019-12-04 19:44:00,291 Meadow St, San Francisco,CA,94016 +307494,34in Ultrawide Monitor,1,379.99,2019-12-21 20:50:00,251 Washington St, Atlanta,GA,30301 +307495,Apple Airpods Headphones,1,150.0,2019-12-29 10:58:00,875 North St, Boston,MA,02215 +307496,AAA Batteries (4-pack),1,2.99,2019-12-19 17:40:00,513 Lake St, Los Angeles,CA,90001 +307497,AAA Batteries (4-pack),2,2.99,2019-12-10 15:02:00,988 12th St, Atlanta,GA,30301 +307498,AAA Batteries (4-pack),2,2.99,2019-12-25 20:39:00,331 8th St, Boston,MA,02215 +307499,Lightning Charging Cable,1,14.95,2019-12-09 21:22:00,378 Madison St, Los Angeles,CA,90001 +307500,Apple Airpods Headphones,1,150.0,2019-12-31 07:31:00,152 Forest St, Portland,OR,97035 +307501,USB-C Charging Cable,1,11.95,2019-12-23 19:40:00,859 Meadow St, Boston,MA,02215 +307502,Bose SoundSport Headphones,1,99.99,2019-12-12 11:18:00,34 Hill St, Los Angeles,CA,90001 +307503,Bose SoundSport Headphones,1,99.99,2019-12-28 16:19:00,475 Hickory St, Dallas,TX,75001 +307504,AA Batteries (4-pack),1,3.84,2019-12-23 12:34:00,60 6th St, New York City,NY,10001 +307505,iPhone,1,700.0,2019-12-27 08:10:00,251 Highland St, Austin,TX,73301 +307506,AAA Batteries (4-pack),1,2.99,2019-12-19 13:10:00,196 Madison St, Los Angeles,CA,90001 +307507,AAA Batteries (4-pack),4,2.99,2019-12-23 12:58:00,430 11th St, San Francisco,CA,94016 +307508,27in FHD Monitor,1,149.99,2019-12-27 10:36:00,727 5th St, Dallas,TX,75001 +307509,Wired Headphones,1,11.99,2019-12-01 15:49:00,256 Chestnut St, San Francisco,CA,94016 +307510,AA Batteries (4-pack),1,3.84,2019-12-28 21:44:00,545 Meadow St, Seattle,WA,98101 +307511,AA Batteries (4-pack),1,3.84,2019-12-06 07:58:00,612 Walnut St, Los Angeles,CA,90001 +307512,Bose SoundSport Headphones,1,99.99,2019-12-13 08:36:00,300 Center St, San Francisco,CA,94016 +307513,Apple Airpods Headphones,1,150.0,2019-12-21 10:13:00,607 10th St, Boston,MA,02215 +307514,USB-C Charging Cable,1,11.95,2019-12-06 20:27:00,301 Hill St, San Francisco,CA,94016 +307515,ThinkPad Laptop,1,999.99,2019-12-10 18:42:00,311 11th St, Dallas,TX,75001 +307516,AAA Batteries (4-pack),2,2.99,2019-12-26 12:41:00,697 Elm St, San Francisco,CA,94016 +307517,AAA Batteries (4-pack),1,2.99,2019-12-10 21:35:00,920 South St, New York City,NY,10001 +307518,iPhone,1,700.0,2019-12-10 18:12:00,194 8th St, Los Angeles,CA,90001 +307519,27in FHD Monitor,1,149.99,2019-12-31 20:24:00,231 West St, San Francisco,CA,94016 +307520,20in Monitor,1,109.99,2019-12-30 23:12:00,971 Madison St, Atlanta,GA,30301 +307521,USB-C Charging Cable,1,11.95,2019-12-16 12:00:00,851 Lake St, Portland,OR,97035 +307522,AA Batteries (4-pack),1,3.84,2019-12-14 16:22:00,988 Church St, Boston,MA,02215 +307523,iPhone,1,700.0,2019-12-22 07:20:00,548 Spruce St, Seattle,WA,98101 +307524,LG Dryer,1,600.0,2019-12-21 10:31:00,339 Hickory St, New York City,NY,10001 +307525,27in 4K Gaming Monitor,1,389.99,2019-12-13 06:32:00,113 Spruce St, Boston,MA,02215 +307526,USB-C Charging Cable,1,11.95,2019-12-21 12:16:00,596 Lakeview St, New York City,NY,10001 +307527,27in 4K Gaming Monitor,1,389.99,2019-12-05 18:59:00,123 Jackson St, San Francisco,CA,94016 +307528,Wired Headphones,1,11.99,2019-12-05 04:14:00,368 West St, Boston,MA,02215 +307529,USB-C Charging Cable,1,11.95,2019-12-17 17:07:00,108 Meadow St, San Francisco,CA,94016 +307530,Apple Airpods Headphones,1,150.0,2019-12-25 16:07:00,635 Elm St, Atlanta,GA,30301 +307531,Bose SoundSport Headphones,1,99.99,2019-12-19 15:02:00,200 7th St, Boston,MA,02215 +307532,ThinkPad Laptop,1,999.99,2019-12-01 15:01:00,428 Jefferson St, San Francisco,CA,94016 +307533,Wired Headphones,1,11.99,2019-12-24 12:18:00,555 North St, Los Angeles,CA,90001 +307534,Flatscreen TV,1,300.0,2019-12-18 07:02:00,366 5th St, Seattle,WA,98101 +307535,Flatscreen TV,1,300.0,2019-12-24 11:16:00,204 Ridge St, Los Angeles,CA,90001 +307536,20in Monitor,1,109.99,2019-12-13 14:16:00,865 8th St, Atlanta,GA,30301 +307537,AA Batteries (4-pack),2,3.84,2019-12-17 19:28:00,893 Church St, Boston,MA,02215 +307538,Lightning Charging Cable,1,14.95,2019-12-06 17:13:00,633 10th St, New York City,NY,10001 +307539,27in FHD Monitor,1,149.99,2019-12-18 19:00:00,252 5th St, Seattle,WA,98101 +307540,USB-C Charging Cable,1,11.95,2019-12-15 19:37:00,503 Jefferson St, Atlanta,GA,30301 +307541,AAA Batteries (4-pack),1,2.99,2019-12-11 16:58:00,783 Maple St, Los Angeles,CA,90001 +307542,27in FHD Monitor,1,149.99,2019-12-08 00:55:00,390 Cedar St, San Francisco,CA,94016 +307543,Wired Headphones,1,11.99,2019-12-22 00:10:00,766 Forest St, San Francisco,CA,94016 +307544,AA Batteries (4-pack),1,3.84,2019-12-12 07:28:00,520 Chestnut St, Dallas,TX,75001 +307545,Macbook Pro Laptop,1,1700.0,2019-12-19 15:31:00,547 Lakeview St, Austin,TX,73301 +307546,USB-C Charging Cable,2,11.95,2019-12-25 11:27:00,383 Elm St, Atlanta,GA,30301 +307547,Vareebadd Phone,1,400.0,2019-12-02 13:38:00,961 Johnson St, Dallas,TX,75001 +307548,Wired Headphones,1,11.99,2019-12-02 00:17:00,649 Park St, Boston,MA,02215 +307549,AA Batteries (4-pack),1,3.84,2019-12-18 10:18:00,999 Maple St, Dallas,TX,75001 +307550,AA Batteries (4-pack),1,3.84,2019-12-08 16:53:00,596 5th St, Los Angeles,CA,90001 +307551,LG Washing Machine,1,600.0,2019-12-14 18:39:00,934 Church St, New York City,NY,10001 +307552,USB-C Charging Cable,1,11.95,2019-12-07 13:38:00,153 Cedar St, Atlanta,GA,30301 +307553,27in FHD Monitor,1,149.99,2019-12-06 19:42:00,528 Spruce St, San Francisco,CA,94016 +307554,Bose SoundSport Headphones,1,99.99,2019-12-31 16:14:00,963 Wilson St, San Francisco,CA,94016 +307555,Macbook Pro Laptop,1,1700.0,2019-12-11 22:34:00,329 Hill St, Seattle,WA,98101 +307556,27in 4K Gaming Monitor,1,389.99,2019-12-18 13:43:00,84 12th St, New York City,NY,10001 +307557,Google Phone,1,600.0,2019-12-31 20:42:00,501 Hickory St, Seattle,WA,98101 +307558,AAA Batteries (4-pack),1,2.99,2019-12-24 18:49:00,145 Lakeview St, Dallas,TX,75001 +307559,Wired Headphones,1,11.99,2019-12-07 16:23:00,839 West St, Los Angeles,CA,90001 +307560,ThinkPad Laptop,1,999.99,2019-12-02 18:39:00,923 Cedar St, Atlanta,GA,30301 +307561,USB-C Charging Cable,1,11.95,2019-12-16 22:09:00,238 Hill St, Atlanta,GA,30301 +307562,Lightning Charging Cable,1,14.95,2019-12-21 11:01:00,170 Spruce St, Seattle,WA,98101 +307563,Google Phone,1,600.0,2019-12-12 10:12:00,221 Cherry St, Los Angeles,CA,90001 +307564,Bose SoundSport Headphones,1,99.99,2019-12-25 14:50:00,323 Walnut St, New York City,NY,10001 +307565,27in FHD Monitor,1,149.99,2019-12-23 14:38:00,696 Meadow St, Dallas,TX,75001 +307566,AA Batteries (4-pack),2,3.84,2019-12-05 22:23:00,974 Walnut St, San Francisco,CA,94016 +307567,USB-C Charging Cable,1,11.95,2019-12-11 20:06:00,854 Main St, Seattle,WA,98101 +307568,AAA Batteries (4-pack),2,2.99,2019-12-16 11:56:00,683 5th St, New York City,NY,10001 +307569,Lightning Charging Cable,1,14.95,2019-12-02 12:24:00,153 14th St, Seattle,WA,98101 +307570,34in Ultrawide Monitor,1,379.99,2019-12-15 13:51:00,809 8th St, Dallas,TX,75001 +307571,Wired Headphones,1,11.99,2019-12-13 15:59:00,433 11th St, Atlanta,GA,30301 +307572,Lightning Charging Cable,1,14.95,2019-12-22 18:59:00,635 10th St, San Francisco,CA,94016 +307573,AAA Batteries (4-pack),1,2.99,2019-12-17 17:31:00,744 South St, Seattle,WA,98101 +307574,AA Batteries (4-pack),1,3.84,2019-12-07 09:25:00,725 Church St, Los Angeles,CA,90001 +307575,AA Batteries (4-pack),1,3.84,2019-12-12 12:31:00,101 Lake St, Atlanta,GA,30301 +307576,AAA Batteries (4-pack),1,2.99,2019-12-31 22:38:00,586 Walnut St, Los Angeles,CA,90001 +307577,27in FHD Monitor,1,149.99,2019-12-19 09:14:00,103 Park St, San Francisco,CA,94016 +307578,20in Monitor,1,109.99,2019-12-28 22:52:00,564 12th St, Los Angeles,CA,90001 +307579,AAA Batteries (4-pack),1,2.99,2019-12-16 23:08:00,143 Center St, San Francisco,CA,94016 +307580,AAA Batteries (4-pack),3,2.99,2019-12-10 22:27:00,821 Elm St, San Francisco,CA,94016 +307581,Apple Airpods Headphones,1,150.0,2019-12-31 18:15:00,627 Forest St, San Francisco,CA,94016 +307582,AA Batteries (4-pack),1,3.84,2019-12-09 19:40:00,324 Hickory St, New York City,NY,10001 +307583,Lightning Charging Cable,1,14.95,2019-12-26 12:36:00,304 1st St, Atlanta,GA,30301 +307584,USB-C Charging Cable,1,11.95,2019-12-16 18:07:00,627 Maple St, Seattle,WA,98101 +307585,Wired Headphones,1,11.99,2019-12-31 11:25:00,250 Wilson St, Dallas,TX,75001 +307586,Bose SoundSport Headphones,1,99.99,2019-12-04 06:09:00,655 Lake St, Portland,ME,04101 +307587,AA Batteries (4-pack),2,3.84,2019-12-19 18:21:00,31 4th St, Seattle,WA,98101 +307588,AA Batteries (4-pack),1,3.84,2019-12-05 18:17:00,641 Walnut St, Atlanta,GA,30301 +307589,Lightning Charging Cable,1,14.95,2019-12-09 14:21:00,361 Chestnut St, Dallas,TX,75001 +307590,AAA Batteries (4-pack),2,2.99,2019-12-11 12:58:00,451 Meadow St, Seattle,WA,98101 +307591,27in 4K Gaming Monitor,1,389.99,2019-12-26 08:00:00,252 1st St, New York City,NY,10001 +307592,USB-C Charging Cable,1,11.95,2019-12-04 14:04:00,219 Forest St, New York City,NY,10001 +307593,ThinkPad Laptop,1,999.99,2019-12-13 02:25:00,96 12th St, Atlanta,GA,30301 +307594,Bose SoundSport Headphones,1,99.99,2019-12-15 18:55:00,232 11th St, Austin,TX,73301 +307595,Bose SoundSport Headphones,1,99.99,2019-12-25 23:12:00,836 Ridge St, New York City,NY,10001 +307596,Wired Headphones,1,11.99,2019-12-21 15:11:00,293 Meadow St, Dallas,TX,75001 +307597,27in FHD Monitor,1,149.99,2019-12-08 12:46:00,200 Spruce St, Portland,OR,97035 +307598,27in FHD Monitor,1,149.99,2019-12-13 16:55:00,136 Willow St, New York City,NY,10001 +307598,AA Batteries (4-pack),1,3.84,2019-12-13 16:55:00,136 Willow St, New York City,NY,10001 +307599,Apple Airpods Headphones,1,150.0,2019-12-11 22:48:00,654 Hickory St, Los Angeles,CA,90001 +307600,Lightning Charging Cable,1,14.95,2019-12-11 12:51:00,561 Adams St, San Francisco,CA,94016 +307601,Wired Headphones,1,11.99,2019-12-27 11:30:00,640 Cedar St, Los Angeles,CA,90001 +307602,AA Batteries (4-pack),1,3.84,2019-12-17 23:02:00,741 Adams St, Dallas,TX,75001 +307603,27in 4K Gaming Monitor,1,389.99,2019-12-27 11:27:00,490 Sunset St, Seattle,WA,98101 +307604,USB-C Charging Cable,1,11.95,2019-12-27 15:16:00,48 Main St, San Francisco,CA,94016 +307605,AA Batteries (4-pack),1,3.84,2019-12-24 21:21:00,106 4th St, Los Angeles,CA,90001 +307606,Lightning Charging Cable,1,14.95,2019-12-03 14:56:00,437 Washington St, New York City,NY,10001 +307607,Google Phone,1,600.0,2019-12-15 12:38:00,101 Pine St, Seattle,WA,98101 +307608,USB-C Charging Cable,1,11.95,2019-12-12 23:03:00,668 Lakeview St, San Francisco,CA,94016 +307609,Apple Airpods Headphones,1,150.0,2019-12-09 17:45:00,571 2nd St, San Francisco,CA,94016 +307610,Wired Headphones,1,11.99,2019-12-07 13:32:00,716 South St, Dallas,TX,75001 +307611,USB-C Charging Cable,1,11.95,2019-12-08 13:14:00,521 2nd St, New York City,NY,10001 +307612,Wired Headphones,1,11.99,2019-12-17 13:59:00,417 Spruce St, Boston,MA,02215 +307613,Wired Headphones,1,11.99,2019-12-15 19:16:00,750 Center St, Boston,MA,02215 +307614,Lightning Charging Cable,1,14.95,2019-12-03 19:49:00,842 Highland St, San Francisco,CA,94016 +307615,AAA Batteries (4-pack),1,2.99,2019-12-23 23:29:00,651 Park St, San Francisco,CA,94016 +307616,AAA Batteries (4-pack),1,2.99,2019-12-28 06:27:00,748 Spruce St, San Francisco,CA,94016 +307617,AAA Batteries (4-pack),1,2.99,2019-12-30 13:09:00,539 13th St, Boston,MA,02215 +307618,USB-C Charging Cable,1,11.95,2019-12-28 07:34:00,542 7th St, San Francisco,CA,94016 +307619,Wired Headphones,1,11.99,2019-12-02 16:01:00,708 Madison St, Atlanta,GA,30301 +307620,Lightning Charging Cable,2,14.95,2019-12-23 18:03:00,970 Highland St, Boston,MA,02215 +307621,Apple Airpods Headphones,1,150.0,2019-12-02 21:04:00,284 Wilson St, Atlanta,GA,30301 +307622,Lightning Charging Cable,1,14.95,2019-12-15 08:32:00,327 Wilson St, San Francisco,CA,94016 +307623,Lightning Charging Cable,2,14.95,2019-12-09 21:39:00,151 10th St, Seattle,WA,98101 +307624,Apple Airpods Headphones,1,150.0,2019-12-29 01:00:00,786 Chestnut St, Boston,MA,02215 +307625,34in Ultrawide Monitor,1,379.99,2019-12-06 17:42:00,692 Highland St, Austin,TX,73301 +307626,Apple Airpods Headphones,1,150.0,2019-12-10 17:23:00,388 1st St, Austin,TX,73301 +307627,Lightning Charging Cable,1,14.95,2019-12-12 22:13:00,64 Jefferson St, Los Angeles,CA,90001 +307628,Flatscreen TV,1,300.0,2019-12-30 13:12:00,122 Maple St, Portland,ME,04101 +307629,ThinkPad Laptop,1,999.99,2019-12-31 14:47:00,714 6th St, Dallas,TX,75001 +307630,USB-C Charging Cable,1,11.95,2019-12-25 14:51:00,96 Highland St, Seattle,WA,98101 +307631,ThinkPad Laptop,1,999.99,2019-12-28 02:05:00,402 1st St, Seattle,WA,98101 +307632,USB-C Charging Cable,1,11.95,2019-12-14 00:20:00,138 Chestnut St, Seattle,WA,98101 +307633,27in 4K Gaming Monitor,1,389.99,2019-12-19 14:14:00,235 Ridge St, Dallas,TX,75001 +307634,Bose SoundSport Headphones,1,99.99,2019-12-29 13:32:00,141 Dogwood St, Portland,OR,97035 +307635,USB-C Charging Cable,1,11.95,2019-12-17 23:38:00,257 9th St, Portland,OR,97035 +307636,USB-C Charging Cable,1,11.95,2019-12-04 23:20:00,511 North St, Dallas,TX,75001 +307637,Lightning Charging Cable,1,14.95,2019-12-06 19:46:00,442 Willow St, Dallas,TX,75001 +307638,34in Ultrawide Monitor,1,379.99,2019-12-13 15:15:00,238 11th St, Los Angeles,CA,90001 +307639,Macbook Pro Laptop,1,1700.0,2019-12-05 09:27:00,133 7th St, San Francisco,CA,94016 +307640,AAA Batteries (4-pack),3,2.99,2019-12-05 06:23:00,723 Main St, Seattle,WA,98101 +307641,Lightning Charging Cable,1,14.95,2019-12-31 13:57:00,480 Johnson St, San Francisco,CA,94016 +307642,Macbook Pro Laptop,1,1700.0,2019-12-21 09:16:00,599 West St, Dallas,TX,75001 +307643,ThinkPad Laptop,1,999.99,2019-12-17 10:48:00,460 4th St, Los Angeles,CA,90001 +307644,AAA Batteries (4-pack),1,2.99,2019-12-04 14:09:00,915 Main St, San Francisco,CA,94016 +307645,Bose SoundSport Headphones,1,99.99,2019-12-06 14:45:00,416 Center St, Boston,MA,02215 +307646,Bose SoundSport Headphones,1,99.99,2019-12-02 12:45:00,750 13th St, Los Angeles,CA,90001 +307647,LG Washing Machine,1,600.0,2019-12-23 21:08:00,159 Lincoln St, New York City,NY,10001 +307648,20in Monitor,1,109.99,2019-12-21 09:51:00,870 Chestnut St, San Francisco,CA,94016 +307649,Apple Airpods Headphones,1,150.0,2019-12-30 15:36:00,484 Ridge St, San Francisco,CA,94016 +307650,20in Monitor,1,109.99,2019-12-02 20:15:00,871 6th St, Atlanta,GA,30301 +307651,USB-C Charging Cable,2,11.95,2019-12-24 13:58:00,813 Dogwood St, San Francisco,CA,94016 +307652,AAA Batteries (4-pack),1,2.99,2019-12-05 11:32:00,760 Church St, Boston,MA,02215 +307653,AAA Batteries (4-pack),1,2.99,2019-12-22 19:10:00,895 Elm St, Portland,OR,97035 +307654,Bose SoundSport Headphones,1,99.99,2019-12-26 08:08:00,396 1st St, San Francisco,CA,94016 +307655,Wired Headphones,1,11.99,2019-12-09 13:18:00,275 8th St, Seattle,WA,98101 +307656,AA Batteries (4-pack),2,3.84,2019-12-06 21:22:00,862 14th St, Los Angeles,CA,90001 +307657,AAA Batteries (4-pack),1,2.99,2019-12-21 05:09:00,73 South St, San Francisco,CA,94016 +307658,USB-C Charging Cable,1,11.95,2019-12-19 07:59:00,275 Sunset St, San Francisco,CA,94016 +307659,AAA Batteries (4-pack),1,2.99,2019-12-03 17:45:00,484 Chestnut St, San Francisco,CA,94016 +307660,Apple Airpods Headphones,1,150.0,2019-12-23 18:00:00,304 8th St, Portland,OR,97035 +307661,Wired Headphones,1,11.99,2019-12-18 18:08:00,572 West St, New York City,NY,10001 +307662,27in FHD Monitor,1,149.99,2019-12-16 14:13:00,65 10th St, Los Angeles,CA,90001 +307663,AAA Batteries (4-pack),2,2.99,2019-12-13 09:57:00,462 Willow St, San Francisco,CA,94016 +307664,27in 4K Gaming Monitor,1,389.99,2019-12-12 13:43:00,669 8th St, Boston,MA,02215 +307665,27in 4K Gaming Monitor,1,389.99,2019-12-25 20:14:00,126 Dogwood St, New York City,NY,10001 +307666,Apple Airpods Headphones,1,150.0,2019-12-22 15:46:00,952 Sunset St, New York City,NY,10001 +307667,Apple Airpods Headphones,1,150.0,2019-12-16 21:19:00,967 Highland St, Dallas,TX,75001 +307668,USB-C Charging Cable,1,11.95,2019-12-01 17:32:00,140 Forest St, Seattle,WA,98101 +307669,27in FHD Monitor,1,149.99,2019-12-19 00:07:00,455 Main St, Los Angeles,CA,90001 +307670,20in Monitor,1,109.99,2019-12-28 11:04:00,912 Cherry St, Boston,MA,02215 +307671,Bose SoundSport Headphones,1,99.99,2019-12-01 11:34:00,59 6th St, Atlanta,GA,30301 +307672,Wired Headphones,1,11.99,2019-12-14 18:57:00,148 West St, San Francisco,CA,94016 +307673,Bose SoundSport Headphones,1,99.99,2019-12-08 21:20:00,528 1st St, Austin,TX,73301 +307674,AA Batteries (4-pack),1,3.84,2019-12-19 09:54:00,44 Sunset St, Seattle,WA,98101 +307675,USB-C Charging Cable,1,11.95,2019-12-11 10:46:00,237 12th St, San Francisco,CA,94016 +307676,Macbook Pro Laptop,1,1700.0,2019-12-10 11:27:00,985 Jackson St, Boston,MA,02215 +307677,Apple Airpods Headphones,1,150.0,2019-12-10 20:23:00,110 Jackson St, Los Angeles,CA,90001 +307678,Bose SoundSport Headphones,1,99.99,2019-12-11 21:36:00,848 Sunset St, New York City,NY,10001 +307679,Flatscreen TV,1,300.0,2019-12-31 12:49:00,578 6th St, Dallas,TX,75001 +307680,Lightning Charging Cable,1,14.95,2019-12-14 13:44:00,347 14th St, Los Angeles,CA,90001 +307681,Macbook Pro Laptop,1,1700.0,2019-12-26 16:50:00,656 Cedar St, Seattle,WA,98101 +307682,AAA Batteries (4-pack),2,2.99,2019-12-29 12:06:00,352 13th St, Boston,MA,02215 +307683,AAA Batteries (4-pack),1,2.99,2019-12-10 11:46:00,172 West St, New York City,NY,10001 +307684,Wired Headphones,1,11.99,2019-12-31 15:33:00,722 12th St, Boston,MA,02215 +307685,iPhone,1,700.0,2019-12-17 17:06:00,992 10th St, New York City,NY,10001 +307686,USB-C Charging Cable,1,11.95,2019-12-25 12:46:00,901 Walnut St, San Francisco,CA,94016 +307687,Lightning Charging Cable,1,14.95,2019-12-03 09:22:00,684 Madison St, Los Angeles,CA,90001 +307688,AAA Batteries (4-pack),1,2.99,2019-12-05 13:03:00,975 10th St, Seattle,WA,98101 +307689,USB-C Charging Cable,1,11.95,2019-12-21 15:01:00,377 1st St, Boston,MA,02215 +307690,AAA Batteries (4-pack),1,2.99,2019-12-16 13:38:00,693 1st St, San Francisco,CA,94016 +307691,AA Batteries (4-pack),1,3.84,2019-12-28 18:53:00,590 Wilson St, Seattle,WA,98101 +307692,Lightning Charging Cable,1,14.95,2019-12-17 17:28:00,863 Ridge St, New York City,NY,10001 +307693,Wired Headphones,1,11.99,2019-12-02 16:56:00,504 Lincoln St, San Francisco,CA,94016 +307694,Apple Airpods Headphones,1,150.0,2019-12-15 23:58:00,774 Hickory St, Seattle,WA,98101 +307695,AA Batteries (4-pack),1,3.84,2019-12-25 16:25:00,917 5th St, San Francisco,CA,94016 +307696,AAA Batteries (4-pack),1,2.99,2019-12-21 11:56:00,833 Highland St, Seattle,WA,98101 +307697,Apple Airpods Headphones,1,150.0,2019-12-09 14:28:00,881 6th St, Dallas,TX,75001 +307698,AAA Batteries (4-pack),1,2.99,2019-12-26 12:52:00,808 Willow St, San Francisco,CA,94016 +307698,AAA Batteries (4-pack),5,2.99,2019-12-26 12:52:00,808 Willow St, San Francisco,CA,94016 +307699,USB-C Charging Cable,1,11.95,2019-12-17 17:45:00,308 Church St, New York City,NY,10001 +307700,AA Batteries (4-pack),1,3.84,2019-12-18 08:44:00,586 Washington St, San Francisco,CA,94016 +307701,Wired Headphones,1,11.99,2019-12-26 22:05:00,546 Hill St, Dallas,TX,75001 +307702,AAA Batteries (4-pack),1,2.99,2019-12-23 22:56:00,949 11th St, Los Angeles,CA,90001 +307703,AA Batteries (4-pack),1,3.84,2019-12-09 23:34:00,842 Cedar St, Austin,TX,73301 +307704,Lightning Charging Cable,1,14.95,2019-12-24 01:03:00,871 Walnut St, Portland,OR,97035 +307705,AA Batteries (4-pack),2,3.84,2019-12-29 21:19:00,594 Highland St, San Francisco,CA,94016 +307706,Lightning Charging Cable,1,14.95,2019-12-29 14:07:00,745 Hill St, Seattle,WA,98101 +307707,27in FHD Monitor,1,149.99,2019-12-05 17:07:00,745 Walnut St, Los Angeles,CA,90001 +307708,AAA Batteries (4-pack),2,2.99,2019-12-05 09:21:00,994 Sunset St, Los Angeles,CA,90001 +307709,USB-C Charging Cable,1,11.95,2019-12-07 13:05:00,463 Washington St, New York City,NY,10001 +307710,Vareebadd Phone,1,400.0,2019-12-02 11:15:00,330 West St, New York City,NY,10001 +307711,Lightning Charging Cable,1,14.95,2019-12-20 02:09:00,311 1st St, New York City,NY,10001 +307712,Lightning Charging Cable,1,14.95,2019-12-24 20:48:00,114 Church St, Boston,MA,02215 +307713,Wired Headphones,1,11.99,2019-12-26 21:08:00,73 2nd St, Boston,MA,02215 +307714,Bose SoundSport Headphones,1,99.99,2019-12-15 13:39:00,865 West St, New York City,NY,10001 +307715,Apple Airpods Headphones,1,150.0,2019-12-12 13:12:00,965 11th St, New York City,NY,10001 +307716,20in Monitor,1,109.99,2019-12-20 20:49:00,377 Hill St, San Francisco,CA,94016 +307717,USB-C Charging Cable,1,11.95,2019-12-10 13:10:00,119 9th St, Seattle,WA,98101 +307718,Macbook Pro Laptop,1,1700.0,2019-12-06 21:21:00,376 West St, Dallas,TX,75001 +307719,Apple Airpods Headphones,1,150.0,2019-12-12 14:10:00,512 13th St, Dallas,TX,75001 +307720,Lightning Charging Cable,1,14.95,2019-12-05 10:54:00,498 7th St, San Francisco,CA,94016 +307721,27in FHD Monitor,1,149.99,2019-12-28 21:58:00,540 7th St, San Francisco,CA,94016 +307722,AA Batteries (4-pack),1,3.84,2019-12-23 08:44:00,695 Maple St, Seattle,WA,98101 +307723,27in FHD Monitor,1,149.99,2019-12-02 15:03:00,840 Wilson St, Los Angeles,CA,90001 +307724,AA Batteries (4-pack),2,3.84,2019-12-13 12:21:00,520 12th St, Atlanta,GA,30301 +307725,Macbook Pro Laptop,1,1700.0,2019-12-14 07:59:00,826 2nd St, New York City,NY,10001 +307726,Lightning Charging Cable,1,14.95,2019-12-31 20:16:00,585 Main St, Boston,MA,02215 +307727,USB-C Charging Cable,1,11.95,2019-12-03 10:24:00,160 12th St, Los Angeles,CA,90001 +307728,34in Ultrawide Monitor,1,379.99,2019-12-11 08:47:00,651 8th St, New York City,NY,10001 +307729,Flatscreen TV,1,300.0,2019-12-11 01:01:00,546 Elm St, Austin,TX,73301 +307730,Apple Airpods Headphones,1,150.0,2019-12-15 09:00:00,253 West St, Dallas,TX,75001 +307731,AA Batteries (4-pack),1,3.84,2019-12-11 19:01:00,367 Adams St, San Francisco,CA,94016 +307732,34in Ultrawide Monitor,1,379.99,2019-12-20 00:46:00,963 Lake St, San Francisco,CA,94016 +307733,AA Batteries (4-pack),1,3.84,2019-12-28 00:18:00,815 Lake St, Los Angeles,CA,90001 +307734,AAA Batteries (4-pack),1,2.99,2019-12-07 12:37:00,558 Main St, Los Angeles,CA,90001 +307735,USB-C Charging Cable,2,11.95,2019-12-19 15:46:00,501 Madison St, Austin,TX,73301 +307736,Wired Headphones,1,11.99,2019-12-29 07:10:00,950 Lincoln St, New York City,NY,10001 +307737,Apple Airpods Headphones,1,150.0,2019-12-07 19:29:00,248 Cherry St, San Francisco,CA,94016 +307738,Lightning Charging Cable,1,14.95,2019-12-02 09:04:00,773 Cedar St, Atlanta,GA,30301 +307739,ThinkPad Laptop,1,999.99,2019-12-18 15:30:00,283 8th St, Los Angeles,CA,90001 +307740,27in 4K Gaming Monitor,1,389.99,2019-12-12 20:14:00,197 Johnson St, Boston,MA,02215 +307740,Lightning Charging Cable,1,14.95,2019-12-12 20:14:00,197 Johnson St, Boston,MA,02215 +307741,USB-C Charging Cable,1,11.95,2019-12-24 19:46:00,269 9th St, San Francisco,CA,94016 +307742,Apple Airpods Headphones,1,150.0,2019-12-16 22:13:00,566 Cherry St, San Francisco,CA,94016 +307743,USB-C Charging Cable,1,11.95,2019-12-11 21:39:00,518 Spruce St, Seattle,WA,98101 +307744,AA Batteries (4-pack),2,3.84,2019-12-15 20:39:00,114 North St, Atlanta,GA,30301 +307744,iPhone,1,700.0,2019-12-15 20:39:00,114 North St, Atlanta,GA,30301 +307745,AAA Batteries (4-pack),1,2.99,2019-12-25 19:20:00,77 River St, Los Angeles,CA,90001 +307746,Wired Headphones,1,11.99,2019-12-29 14:03:00,90 Lakeview St, New York City,NY,10001 +307747,Lightning Charging Cable,1,14.95,2019-12-23 12:21:00,689 Highland St, Dallas,TX,75001 +307748,27in FHD Monitor,1,149.99,2019-12-05 10:36:00,745 12th St, San Francisco,CA,94016 +307749,Lightning Charging Cable,1,14.95,2019-12-30 09:54:00,990 Hill St, Seattle,WA,98101 +307749,Bose SoundSport Headphones,1,99.99,2019-12-30 09:54:00,990 Hill St, Seattle,WA,98101 +307750,USB-C Charging Cable,2,11.95,2019-12-06 10:43:00,956 Maple St, San Francisco,CA,94016 +307751,Bose SoundSport Headphones,1,99.99,2019-12-27 09:36:00,828 South St, Dallas,TX,75001 +307752,27in FHD Monitor,1,149.99,2019-12-25 18:26:00,432 Church St, Portland,OR,97035 +307753,ThinkPad Laptop,1,999.99,2019-12-05 17:42:00,876 Madison St, Austin,TX,73301 +307754,AAA Batteries (4-pack),1,2.99,2019-12-22 20:25:00,249 Sunset St, New York City,NY,10001 +307755,AAA Batteries (4-pack),3,2.99,2019-12-30 08:34:00,83 Walnut St, San Francisco,CA,94016 +307756,Apple Airpods Headphones,1,150.0,2019-12-01 16:06:00,942 Johnson St, San Francisco,CA,94016 +307757,USB-C Charging Cable,1,11.95,2019-12-25 13:08:00,584 2nd St, San Francisco,CA,94016 +307758,Wired Headphones,1,11.99,2019-12-31 16:19:00,459 Meadow St, Dallas,TX,75001 +307759,Wired Headphones,1,11.99,2019-12-15 20:08:00,364 11th St, Dallas,TX,75001 +307760,Bose SoundSport Headphones,1,99.99,2019-12-13 14:52:00,379 River St, Boston,MA,02215 +307761,USB-C Charging Cable,1,11.95,2019-12-28 10:18:00,215 4th St, Austin,TX,73301 +307762,Bose SoundSport Headphones,1,99.99,2019-12-26 16:37:00,855 Jefferson St, San Francisco,CA,94016 +307763,34in Ultrawide Monitor,1,379.99,2019-12-11 14:12:00,251 Wilson St, San Francisco,CA,94016 +307764,20in Monitor,1,109.99,2019-12-15 21:14:00,330 4th St, San Francisco,CA,94016 +307765,20in Monitor,1,109.99,2019-12-27 14:40:00,588 Chestnut St, Austin,TX,73301 +307766,AA Batteries (4-pack),1,3.84,2019-12-13 23:00:00,329 Madison St, Boston,MA,02215 +307766,AAA Batteries (4-pack),2,2.99,2019-12-13 23:00:00,329 Madison St, Boston,MA,02215 +307767,Google Phone,1,600.0,2019-12-17 09:33:00,89 Lakeview St, San Francisco,CA,94016 +307768,AA Batteries (4-pack),1,3.84,2019-12-04 23:04:00,828 11th St, Seattle,WA,98101 +307769,AAA Batteries (4-pack),3,2.99,2019-12-17 18:05:00,604 4th St, San Francisco,CA,94016 +307770,Apple Airpods Headphones,1,150.0,2019-12-08 17:21:00,864 1st St, Austin,TX,73301 +307771,USB-C Charging Cable,1,11.95,2019-12-10 13:59:00,470 Pine St, New York City,NY,10001 +307772,20in Monitor,1,109.99,2019-12-28 22:57:00,229 Willow St, Boston,MA,02215 +307773,Vareebadd Phone,1,400.0,2019-12-04 12:56:00,80 West St, Seattle,WA,98101 +307774,Google Phone,1,600.0,2019-12-14 20:05:00,470 Highland St, New York City,NY,10001 +307775,AAA Batteries (4-pack),1,2.99,2019-12-05 16:36:00,908 Lake St, San Francisco,CA,94016 +307776,Apple Airpods Headphones,1,150.0,2019-12-14 10:27:00,18 5th St, San Francisco,CA,94016 +307777,Flatscreen TV,1,300.0,2019-12-28 22:26:00,672 Sunset St, Los Angeles,CA,90001 +307778,AAA Batteries (4-pack),1,2.99,2019-12-12 17:14:00,994 Chestnut St, Boston,MA,02215 +307779,Bose SoundSport Headphones,1,99.99,2019-12-20 16:43:00,212 Forest St, Atlanta,GA,30301 +307780,ThinkPad Laptop,1,999.99,2019-12-29 07:12:00,10 Pine St, San Francisco,CA,94016 +307781,Wired Headphones,1,11.99,2019-12-06 17:07:00,705 Elm St, Los Angeles,CA,90001 +307782,Bose SoundSport Headphones,1,99.99,2019-12-21 10:57:00,303 8th St, Seattle,WA,98101 +307783,Lightning Charging Cable,1,14.95,2019-12-14 14:04:00,781 Center St, New York City,NY,10001 +307784,AA Batteries (4-pack),1,3.84,2019-12-16 15:14:00,689 Dogwood St, Atlanta,GA,30301 +307785,Lightning Charging Cable,1,14.95,2019-12-04 08:54:00,681 Wilson St, Seattle,WA,98101 +307786,USB-C Charging Cable,1,11.95,2019-12-03 19:07:00,749 Cherry St, Austin,TX,73301 +307787,USB-C Charging Cable,1,11.95,2019-12-19 20:02:00,618 Johnson St, Dallas,TX,75001 +307788,20in Monitor,1,109.99,2019-12-04 17:25:00,137 Lakeview St, Boston,MA,02215 +307789,AAA Batteries (4-pack),1,2.99,2019-12-12 12:16:00,608 Willow St, Portland,ME,04101 +307790,AA Batteries (4-pack),2,3.84,2019-12-08 15:45:00,203 Sunset St, Boston,MA,02215 +307791,Bose SoundSport Headphones,1,99.99,2019-12-25 12:38:00,291 Madison St, Portland,OR,97035 +307792,AAA Batteries (4-pack),1,2.99,2019-12-09 15:14:00,417 Elm St, Boston,MA,02215 +307793,Flatscreen TV,1,300.0,2019-12-25 09:50:00,656 11th St, Portland,OR,97035 +307794,34in Ultrawide Monitor,1,379.99,2019-12-02 20:49:00,534 Ridge St, Atlanta,GA,30301 +307795,Apple Airpods Headphones,1,150.0,2019-12-29 22:15:00,994 Cedar St, New York City,NY,10001 +307796,27in 4K Gaming Monitor,1,389.99,2019-12-29 00:18:00,2 Washington St, San Francisco,CA,94016 +307797,Apple Airpods Headphones,1,150.0,2019-12-02 21:36:00,200 11th St, Atlanta,GA,30301 +307798,Wired Headphones,1,11.99,2019-12-19 14:47:00,26 Hill St, San Francisco,CA,94016 +307799,ThinkPad Laptop,1,999.99,2019-12-31 22:52:00,276 Jackson St, Seattle,WA,98101 +307800,Lightning Charging Cable,1,14.95,2019-12-11 20:42:00,941 Cherry St, San Francisco,CA,94016 +307801,Wired Headphones,1,11.99,2019-12-07 19:30:00,843 Maple St, New York City,NY,10001 +307802,Google Phone,1,600.0,2019-12-28 14:26:00,796 Ridge St, Atlanta,GA,30301 +307802,USB-C Charging Cable,1,11.95,2019-12-28 14:26:00,796 Ridge St, Atlanta,GA,30301 +307802,Wired Headphones,1,11.99,2019-12-28 14:26:00,796 Ridge St, Atlanta,GA,30301 +307803,Bose SoundSport Headphones,1,99.99,2019-12-18 10:34:00,941 Cedar St, Los Angeles,CA,90001 +307804,Lightning Charging Cable,1,14.95,2019-12-30 09:40:00,544 Jefferson St, San Francisco,CA,94016 +307805,AAA Batteries (4-pack),1,2.99,2019-12-29 18:46:00,597 14th St, Portland,OR,97035 +307806,USB-C Charging Cable,1,11.95,2019-12-20 14:27:00,449 Wilson St, Los Angeles,CA,90001 +307807,AA Batteries (4-pack),1,3.84,2019-12-18 10:10:00,587 5th St, San Francisco,CA,94016 +307808,LG Washing Machine,1,600.0,2019-12-14 16:27:00,85 1st St, Atlanta,GA,30301 +307809,27in FHD Monitor,1,149.99,2019-12-13 19:05:00,97 Walnut St, Los Angeles,CA,90001 +307810,27in FHD Monitor,1,149.99,2019-12-30 20:20:00,728 Jackson St, Seattle,WA,98101 +307811,Lightning Charging Cable,1,14.95,2019-12-18 19:01:00,132 4th St, Portland,ME,04101 +307812,AAA Batteries (4-pack),1,2.99,2019-12-20 10:30:00,776 River St, Boston,MA,02215 +307813,34in Ultrawide Monitor,1,379.99,2019-12-07 14:59:00,859 12th St, San Francisco,CA,94016 +307813,Lightning Charging Cable,1,14.95,2019-12-07 14:59:00,859 12th St, San Francisco,CA,94016 +307814,Vareebadd Phone,1,400.0,2019-12-04 15:19:00,183 7th St, Portland,OR,97035 +307815,Bose SoundSport Headphones,1,99.99,2019-12-15 17:24:00,504 Park St, Seattle,WA,98101 +307816,USB-C Charging Cable,1,11.95,2019-12-12 22:46:00,321 Meadow St, Los Angeles,CA,90001 +307817,Macbook Pro Laptop,1,1700.0,2019-12-09 17:44:00,968 Maple St, Portland,OR,97035 +307818,34in Ultrawide Monitor,1,379.99,2019-12-28 23:30:00,401 4th St, Seattle,WA,98101 +307819,Bose SoundSport Headphones,1,99.99,2019-12-05 06:20:00,973 Hill St, Los Angeles,CA,90001 +307820,AA Batteries (4-pack),1,3.84,2019-12-18 20:18:00,982 Maple St, Boston,MA,02215 +307821,Wired Headphones,1,11.99,2019-12-08 11:10:00,827 Meadow St, Dallas,TX,75001 +307822,AA Batteries (4-pack),1,3.84,2019-12-04 09:39:00,474 Chestnut St, Seattle,WA,98101 +307823,Bose SoundSport Headphones,1,99.99,2019-12-16 23:36:00,580 10th St, San Francisco,CA,94016 +307824,Wired Headphones,1,11.99,2019-12-13 15:28:00,489 12th St, San Francisco,CA,94016 +307825,Apple Airpods Headphones,1,150.0,2019-12-20 19:01:00,195 8th St, Dallas,TX,75001 +307826,Apple Airpods Headphones,1,150.0,2019-12-27 21:45:00,930 14th St, New York City,NY,10001 +307827,Apple Airpods Headphones,2,150.0,2019-12-05 13:37:00,838 1st St, Austin,TX,73301 +307828,AAA Batteries (4-pack),2,2.99,2019-12-30 00:33:00,732 Maple St, Seattle,WA,98101 +307829,20in Monitor,1,109.99,2019-12-06 11:02:00,103 Dogwood St, New York City,NY,10001 +307830,Bose SoundSport Headphones,1,99.99,2019-12-29 13:59:00,946 West St, Los Angeles,CA,90001 +307831,Wired Headphones,1,11.99,2019-12-15 20:37:00,806 Johnson St, San Francisco,CA,94016 +307832,USB-C Charging Cable,1,11.95,2019-12-28 04:53:00,158 13th St, Los Angeles,CA,90001 +307833,Flatscreen TV,1,300.0,2019-12-03 23:37:00,601 Willow St, Seattle,WA,98101 +307834,34in Ultrawide Monitor,1,379.99,2019-12-09 18:06:00,701 Washington St, New York City,NY,10001 +307835,AA Batteries (4-pack),2,3.84,2019-12-10 16:20:00,64 Jefferson St, New York City,NY,10001 +307836,AAA Batteries (4-pack),3,2.99,2019-12-13 07:55:00,470 Walnut St, Atlanta,GA,30301 +307837,Apple Airpods Headphones,1,150.0,2019-12-09 03:32:00,565 West St, Atlanta,GA,30301 +307838,AA Batteries (4-pack),2,3.84,2019-12-20 19:20:00,499 Willow St, Boston,MA,02215 +307839,20in Monitor,1,109.99,2019-12-26 03:33:00,85 13th St, San Francisco,CA,94016 +307840,27in FHD Monitor,1,149.99,2019-12-16 17:55:00,945 Chestnut St, Atlanta,GA,30301 +307841,AA Batteries (4-pack),1,3.84,2019-12-17 16:56:00,831 Meadow St, Austin,TX,73301 +307842,Lightning Charging Cable,1,14.95,2019-12-19 08:22:00,989 Madison St, Dallas,TX,75001 +307843,34in Ultrawide Monitor,1,379.99,2019-12-11 07:44:00,910 Elm St, New York City,NY,10001 +307844,Wired Headphones,1,11.99,2019-12-24 13:33:00,467 5th St, San Francisco,CA,94016 +307845,27in FHD Monitor,1,149.99,2019-12-06 03:51:00,692 Dogwood St, Los Angeles,CA,90001 +307846,Apple Airpods Headphones,1,150.0,2019-12-21 12:03:00,377 Wilson St, Seattle,WA,98101 +307847,Flatscreen TV,1,300.0,2019-12-05 09:19:00,439 West St, Los Angeles,CA,90001 +307848,USB-C Charging Cable,1,11.95,2019-12-15 01:04:00,554 14th St, Portland,OR,97035 +307849,Bose SoundSport Headphones,1,99.99,2019-12-28 14:10:00,416 West St, Boston,MA,02215 +307849,Wired Headphones,1,11.99,2019-12-28 14:10:00,416 West St, Boston,MA,02215 +307850,27in FHD Monitor,1,149.99,2019-12-17 19:47:00,187 West St, San Francisco,CA,94016 +307851,Apple Airpods Headphones,1,150.0,2019-12-17 15:31:00,528 Washington St, New York City,NY,10001 +307852,Lightning Charging Cable,1,14.95,2019-12-26 22:06:00,677 Jackson St, New York City,NY,10001 +307853,AA Batteries (4-pack),1,3.84,2019-12-18 18:54:00,294 2nd St, Austin,TX,73301 +307854,Wired Headphones,1,11.99,2019-12-29 13:48:00,666 14th St, San Francisco,CA,94016 +307855,Apple Airpods Headphones,1,150.0,2019-12-02 12:25:00,175 4th St, Boston,MA,02215 +307856,Google Phone,1,600.0,2019-12-16 10:39:00,858 Elm St, Seattle,WA,98101 +307857,Google Phone,1,600.0,2019-12-02 08:18:00,514 Park St, Atlanta,GA,30301 +307858,Apple Airpods Headphones,1,150.0,2019-12-07 22:31:00,922 Sunset St, Dallas,TX,75001 +307859,USB-C Charging Cable,1,11.95,2019-12-03 14:01:00,463 Madison St, New York City,NY,10001 +307859,AAA Batteries (4-pack),2,2.99,2019-12-03 14:01:00,463 Madison St, New York City,NY,10001 +307860,20in Monitor,1,109.99,2019-12-01 16:03:00,198 Lakeview St, San Francisco,CA,94016 +307861,Lightning Charging Cable,1,14.95,2019-12-29 13:01:00,124 Cherry St, San Francisco,CA,94016 +307862,Apple Airpods Headphones,1,150.0,2019-12-15 10:37:00,484 Meadow St, New York City,NY,10001 +307863,ThinkPad Laptop,1,999.99,2019-12-01 13:08:00,218 Highland St, San Francisco,CA,94016 +307864,AAA Batteries (4-pack),3,2.99,2019-12-29 12:46:00,771 Jefferson St, New York City,NY,10001 +307865,AA Batteries (4-pack),3,3.84,2019-12-23 11:45:00,982 4th St, Seattle,WA,98101 +307866,Lightning Charging Cable,1,14.95,2019-12-09 21:04:00,206 9th St, Atlanta,GA,30301 +307867,Apple Airpods Headphones,1,150.0,2019-12-02 21:10:00,346 Hickory St, Los Angeles,CA,90001 +307868,Lightning Charging Cable,1,14.95,2019-12-14 23:00:00,621 Park St, New York City,NY,10001 +307869,USB-C Charging Cable,1,11.95,2019-12-29 07:13:00,711 Wilson St, Austin,TX,73301 +307870,AAA Batteries (4-pack),2,2.99,2019-12-10 14:31:00,549 Jefferson St, Portland,OR,97035 +307871,Bose SoundSport Headphones,1,99.99,2019-12-06 11:51:00,801 Lincoln St, Portland,OR,97035 +307872,AAA Batteries (4-pack),1,2.99,2019-12-24 16:57:00,630 6th St, Seattle,WA,98101 +307873,AAA Batteries (4-pack),1,2.99,2019-12-31 15:19:00,521 Cherry St, San Francisco,CA,94016 +307874,Lightning Charging Cable,1,14.95,2019-12-06 13:01:00,369 Church St, Los Angeles,CA,90001 +307875,Macbook Pro Laptop,1,1700.0,2019-12-16 13:12:00,872 Lincoln St, San Francisco,CA,94016 +307876,Lightning Charging Cable,1,14.95,2019-12-25 11:11:00,311 Chestnut St, Boston,MA,02215 +307877,34in Ultrawide Monitor,1,379.99,2019-12-17 21:24:00,125 Ridge St, Atlanta,GA,30301 +307878,27in FHD Monitor,1,149.99,2019-12-30 22:18:00,989 Jefferson St, San Francisco,CA,94016 +307879,USB-C Charging Cable,1,11.95,2019-12-06 08:14:00,488 Jackson St, Dallas,TX,75001 +307880,Bose SoundSport Headphones,1,99.99,2019-12-16 20:50:00,440 Ridge St, Portland,OR,97035 +307881,Macbook Pro Laptop,1,1700.0,2019-12-25 22:34:00,450 Wilson St, Seattle,WA,98101 +307882,Bose SoundSport Headphones,1,99.99,2019-12-05 23:35:00,840 North St, Portland,OR,97035 +307883,USB-C Charging Cable,1,11.95,2019-12-13 12:07:00,128 Chestnut St, Austin,TX,73301 +307884,AA Batteries (4-pack),1,3.84,2019-12-14 11:17:00,482 Park St, San Francisco,CA,94016 +307885,Apple Airpods Headphones,1,150.0,2019-12-03 13:37:00,667 1st St, San Francisco,CA,94016 +307886,Apple Airpods Headphones,1,150.0,2019-12-24 14:40:00,795 Elm St, Los Angeles,CA,90001 +307887,AA Batteries (4-pack),1,3.84,2019-12-27 09:35:00,931 Elm St, San Francisco,CA,94016 +307888,Apple Airpods Headphones,1,150.0,2019-12-30 15:34:00,963 Hill St, San Francisco,CA,94016 +307889,Wired Headphones,1,11.99,2019-12-22 12:59:00,618 Chestnut St, Atlanta,GA,30301 +307890,Lightning Charging Cable,1,14.95,2020-01-01 02:06:00,39 Pine St, New York City,NY,10001 +307891,Google Phone,1,600.0,2019-12-20 09:44:00,46 5th St, Dallas,TX,75001 +307892,USB-C Charging Cable,1,11.95,2019-12-17 20:51:00,104 Center St, Portland,OR,97035 +307893,20in Monitor,1,109.99,2019-12-05 22:49:00,661 Madison St, San Francisco,CA,94016 +307894,USB-C Charging Cable,1,11.95,2019-12-05 15:54:00,319 Ridge St, New York City,NY,10001 +307895,Google Phone,1,600.0,2019-12-06 13:56:00,457 Jackson St, Austin,TX,73301 +307896,Apple Airpods Headphones,1,150.0,2019-12-05 18:26:00,777 10th St, Los Angeles,CA,90001 +307897,AA Batteries (4-pack),1,3.84,2019-12-06 14:23:00,740 7th St, New York City,NY,10001 +307898,Google Phone,1,600.0,2019-12-15 14:02:00,324 Chestnut St, New York City,NY,10001 +307898,USB-C Charging Cable,1,11.95,2019-12-15 14:02:00,324 Chestnut St, New York City,NY,10001 +307899,Bose SoundSport Headphones,1,99.99,2019-12-31 17:55:00,965 2nd St, Los Angeles,CA,90001 +307900,Wired Headphones,1,11.99,2019-12-30 10:19:00,723 Hill St, Atlanta,GA,30301 +307901,USB-C Charging Cable,1,11.95,2019-12-07 16:53:00,830 Center St, San Francisco,CA,94016 +307902,Bose SoundSport Headphones,1,99.99,2019-12-10 17:06:00,480 Cedar St, Austin,TX,73301 +307903,Apple Airpods Headphones,1,150.0,2019-12-31 20:41:00,640 Wilson St, Seattle,WA,98101 +307904,Macbook Pro Laptop,1,1700.0,2019-12-24 14:58:00,159 Maple St, Seattle,WA,98101 +307905,20in Monitor,1,109.99,2019-12-28 20:30:00,374 Cedar St, Dallas,TX,75001 +307906,27in FHD Monitor,1,149.99,2019-12-02 12:18:00,670 12th St, Los Angeles,CA,90001 +307906,34in Ultrawide Monitor,1,379.99,2019-12-02 12:18:00,670 12th St, Los Angeles,CA,90001 +307907,Wired Headphones,1,11.99,2019-12-02 11:18:00,362 Walnut St, San Francisco,CA,94016 +307908,iPhone,1,700.0,2019-12-13 08:22:00,142 12th St, San Francisco,CA,94016 +307909,AAA Batteries (4-pack),1,2.99,2019-12-03 10:53:00,193 Hickory St, Portland,OR,97035 +307910,iPhone,1,700.0,2019-12-06 11:42:00,765 10th St, Seattle,WA,98101 +307911,AAA Batteries (4-pack),1,2.99,2019-12-10 20:56:00,197 6th St, New York City,NY,10001 +307912,27in FHD Monitor,1,149.99,2019-12-07 16:12:00,306 Highland St, Dallas,TX,75001 +307913,Lightning Charging Cable,1,14.95,2019-12-27 19:45:00,46 Pine St, New York City,NY,10001 +307914,AA Batteries (4-pack),1,3.84,2019-12-15 19:16:00,664 Main St, New York City,NY,10001 +307915,AA Batteries (4-pack),1,3.84,2019-12-28 10:10:00,138 Cedar St, San Francisco,CA,94016 +307916,27in 4K Gaming Monitor,1,389.99,2019-12-25 10:49:00,680 9th St, Portland,OR,97035 +307917,Wired Headphones,1,11.99,2019-12-12 15:41:00,714 Highland St, New York City,NY,10001 +307918,USB-C Charging Cable,1,11.95,2019-12-04 13:44:00,31 Lake St, Atlanta,GA,30301 +307919,AAA Batteries (4-pack),1,2.99,2019-12-29 15:37:00,921 13th St, New York City,NY,10001 +307920,AA Batteries (4-pack),1,3.84,2019-12-20 12:49:00,851 Sunset St, San Francisco,CA,94016 +307921,USB-C Charging Cable,2,11.95,2019-12-12 11:55:00,824 Church St, San Francisco,CA,94016 +307922,USB-C Charging Cable,1,11.95,2019-12-15 14:36:00,49 Johnson St, Boston,MA,02215 +307923,Lightning Charging Cable,1,14.95,2019-12-07 07:56:00,526 13th St, Los Angeles,CA,90001 +307924,Bose SoundSport Headphones,1,99.99,2019-12-17 09:27:00,441 Lakeview St, San Francisco,CA,94016 +307925,Bose SoundSport Headphones,1,99.99,2019-12-09 14:08:00,928 7th St, San Francisco,CA,94016 +307926,iPhone,1,700.0,2019-12-14 15:12:00,494 2nd St, New York City,NY,10001 +307927,AA Batteries (4-pack),4,3.84,2019-12-13 07:20:00,559 Hill St, San Francisco,CA,94016 +307928,AA Batteries (4-pack),1,3.84,2019-12-05 22:18:00,992 North St, Los Angeles,CA,90001 +307929,Flatscreen TV,1,300.0,2019-12-23 09:54:00,946 Lincoln St, New York City,NY,10001 +307930,34in Ultrawide Monitor,1,379.99,2019-12-11 13:20:00,887 Jefferson St, Dallas,TX,75001 +307931,27in FHD Monitor,1,149.99,2019-12-14 17:39:00,918 Jefferson St, Portland,ME,04101 +307932,USB-C Charging Cable,1,11.95,2019-12-25 19:26:00,20 11th St, Austin,TX,73301 +307933,20in Monitor,1,109.99,2019-12-05 19:07:00,802 Maple St, Los Angeles,CA,90001 +307934,Google Phone,1,600.0,2019-12-05 20:36:00,820 Madison St, Atlanta,GA,30301 +307935,Lightning Charging Cable,1,14.95,2019-12-14 16:28:00,873 6th St, Los Angeles,CA,90001 +307936,AA Batteries (4-pack),2,3.84,2019-12-15 07:49:00,749 5th St, Boston,MA,02215 +307937,Flatscreen TV,1,300.0,2019-12-19 19:37:00,757 7th St, Portland,ME,04101 +307938,AA Batteries (4-pack),6,3.84,2019-12-01 14:36:00,421 13th St, Portland,OR,97035 +307939,iPhone,1,700.0,2019-12-05 18:24:00,753 Main St, Atlanta,GA,30301 +307940,USB-C Charging Cable,1,11.95,2019-12-19 23:11:00,593 Center St, Los Angeles,CA,90001 +307941,20in Monitor,1,109.99,2019-12-27 17:11:00,903 Adams St, San Francisco,CA,94016 +307942,USB-C Charging Cable,1,11.95,2019-12-30 12:52:00,59 West St, Los Angeles,CA,90001 +307943,Lightning Charging Cable,1,14.95,2019-12-04 08:53:00,900 5th St, San Francisco,CA,94016 +307944,Lightning Charging Cable,1,14.95,2019-12-10 19:51:00,270 South St, Portland,OR,97035 +307945,AA Batteries (4-pack),2,3.84,2019-12-19 09:21:00,856 Hickory St, San Francisco,CA,94016 +307946,27in FHD Monitor,1,149.99,2019-12-27 23:48:00,885 Ridge St, San Francisco,CA,94016 +307947,USB-C Charging Cable,1,11.95,2019-12-02 13:20:00,380 10th St, Boston,MA,02215 +307948,Apple Airpods Headphones,1,150.0,2019-12-29 12:28:00,335 Jackson St, Atlanta,GA,30301 +307949,AAA Batteries (4-pack),1,2.99,2019-12-06 11:12:00,477 14th St, Atlanta,GA,30301 +307950,ThinkPad Laptop,1,999.99,2019-12-29 20:04:00,524 Hickory St, New York City,NY,10001 +307951,Apple Airpods Headphones,1,150.0,2019-12-29 21:46:00,357 5th St, Austin,TX,73301 +307952,Bose SoundSport Headphones,1,99.99,2019-12-06 13:11:00,490 South St, Seattle,WA,98101 +307953,34in Ultrawide Monitor,1,379.99,2019-12-04 13:32:00,924 2nd St, Seattle,WA,98101 +307954,Bose SoundSport Headphones,1,99.99,2019-12-23 18:23:00,351 Lincoln St, Atlanta,GA,30301 +307954,AAA Batteries (4-pack),1,2.99,2019-12-23 18:23:00,351 Lincoln St, Atlanta,GA,30301 +307955,27in FHD Monitor,1,149.99,2019-12-16 11:05:00,944 Pine St, Boston,MA,02215 +307956,AAA Batteries (4-pack),1,2.99,2019-12-28 06:03:00,680 9th St, San Francisco,CA,94016 +307957,20in Monitor,1,109.99,2019-12-06 16:26:00,644 Adams St, Los Angeles,CA,90001 +307958,Apple Airpods Headphones,1,150.0,2019-12-13 10:07:00,953 Forest St, Seattle,WA,98101 +307959,AA Batteries (4-pack),1,3.84,2019-12-15 11:15:00,845 4th St, San Francisco,CA,94016 +307960,Wired Headphones,1,11.99,2019-12-06 18:52:00,366 4th St, New York City,NY,10001 +307961,Wired Headphones,1,11.99,2019-12-20 16:21:00,704 Sunset St, San Francisco,CA,94016 +307962,Lightning Charging Cable,1,14.95,2019-12-30 16:33:00,700 11th St, Seattle,WA,98101 +307963,34in Ultrawide Monitor,1,379.99,2019-12-22 11:36:00,41 8th St, Boston,MA,02215 +307964,Lightning Charging Cable,1,14.95,2019-12-22 19:48:00,770 Highland St, San Francisco,CA,94016 +307965,USB-C Charging Cable,1,11.95,2019-12-05 20:13:00,897 Jackson St, Portland,ME,04101 +307966,Bose SoundSport Headphones,1,99.99,2019-12-24 18:09:00,466 Highland St, Boston,MA,02215 +307967,Apple Airpods Headphones,1,150.0,2019-12-23 14:42:00,259 Hill St, Seattle,WA,98101 +307968,27in FHD Monitor,1,149.99,2019-12-13 05:38:00,507 8th St, Austin,TX,73301 +307969,AAA Batteries (4-pack),1,2.99,2019-12-24 10:05:00,543 Hickory St, Los Angeles,CA,90001 +307970,20in Monitor,1,109.99,2019-12-30 11:52:00,816 Hill St, Boston,MA,02215 +307971,ThinkPad Laptop,1,999.99,2019-12-01 08:34:00,284 South St, New York City,NY,10001 +307972,AA Batteries (4-pack),1,3.84,2019-12-07 20:13:00,803 North St, Atlanta,GA,30301 +307973,AAA Batteries (4-pack),1,2.99,2019-12-22 21:36:00,745 Lincoln St, New York City,NY,10001 +307974,Bose SoundSport Headphones,1,99.99,2019-12-28 15:13:00,488 South St, Boston,MA,02215 +307975,27in FHD Monitor,1,149.99,2019-12-12 11:24:00,103 6th St, Dallas,TX,75001 +307976,Lightning Charging Cable,1,14.95,2019-12-26 22:30:00,759 7th St, Los Angeles,CA,90001 +307977,Wired Headphones,1,11.99,2019-12-07 13:40:00,800 North St, San Francisco,CA,94016 +307978,AA Batteries (4-pack),1,3.84,2019-12-01 11:36:00,146 Highland St, Los Angeles,CA,90001 +307979,USB-C Charging Cable,1,11.95,2019-12-08 01:02:00,997 10th St, San Francisco,CA,94016 +307980,Vareebadd Phone,1,400.0,2019-12-20 21:15:00,354 1st St, Boston,MA,02215 +307981,20in Monitor,1,109.99,2019-12-07 22:51:00,195 Highland St, Portland,OR,97035 +307982,AAA Batteries (4-pack),2,2.99,2019-12-15 13:21:00,239 Park St, Seattle,WA,98101 +307983,AAA Batteries (4-pack),1,2.99,2019-12-31 22:27:00,89 Elm St, Seattle,WA,98101 +307984,AA Batteries (4-pack),1,3.84,2019-12-12 20:14:00,310 Lake St, Portland,OR,97035 +307985,27in 4K Gaming Monitor,1,389.99,2019-12-15 16:08:00,674 8th St, Dallas,TX,75001 +307986,Lightning Charging Cable,1,14.95,2019-12-06 18:49:00,803 River St, San Francisco,CA,94016 +307987,34in Ultrawide Monitor,1,379.99,2019-12-29 18:01:00,675 Cherry St, San Francisco,CA,94016 +307988,AAA Batteries (4-pack),2,2.99,2019-12-19 09:00:00,822 Cherry St, Boston,MA,02215 +307989,Google Phone,1,600.0,2019-12-15 11:40:00,883 Cherry St, San Francisco,CA,94016 +307990,AA Batteries (4-pack),1,3.84,2019-12-30 21:33:00,961 2nd St, Dallas,TX,75001 +307991,AAA Batteries (4-pack),3,2.99,2019-12-06 16:21:00,954 7th St, Los Angeles,CA,90001 +307992,27in 4K Gaming Monitor,1,389.99,2019-12-09 17:15:00,95 1st St, San Francisco,CA,94016 +307993,AA Batteries (4-pack),1,3.84,2019-12-19 19:02:00,947 5th St, New York City,NY,10001 +307994,AA Batteries (4-pack),1,3.84,2019-12-19 10:49:00,430 Pine St, New York City,NY,10001 +307995,27in FHD Monitor,1,149.99,2019-12-30 19:53:00,324 Wilson St, Portland,OR,97035 +307996,27in 4K Gaming Monitor,1,389.99,2019-12-08 23:01:00,932 12th St, San Francisco,CA,94016 +307997,Lightning Charging Cable,1,14.95,2019-12-31 09:58:00,986 Cedar St, San Francisco,CA,94016 +307998,Lightning Charging Cable,1,14.95,2019-12-10 10:58:00,184 Center St, Atlanta,GA,30301 +307999,AAA Batteries (4-pack),1,2.99,2019-12-07 12:40:00,671 West St, Los Angeles,CA,90001 +308000,Wired Headphones,1,11.99,2019-12-04 18:06:00,676 West St, New York City,NY,10001 +308001,AA Batteries (4-pack),1,3.84,2019-12-11 09:52:00,676 12th St, San Francisco,CA,94016 +308002,Lightning Charging Cable,1,14.95,2019-12-08 13:58:00,265 Meadow St, Los Angeles,CA,90001 +308003,Wired Headphones,1,11.99,2019-12-05 20:52:00,56 Adams St, San Francisco,CA,94016 +308004,AAA Batteries (4-pack),1,2.99,2019-12-20 17:33:00,417 Chestnut St, San Francisco,CA,94016 +308005,Lightning Charging Cable,1,14.95,2019-12-18 08:30:00,700 12th St, New York City,NY,10001 +308006,Lightning Charging Cable,1,14.95,2019-12-03 16:22:00,833 Hickory St, Austin,TX,73301 +308007,Lightning Charging Cable,2,14.95,2019-12-16 07:28:00,32 7th St, San Francisco,CA,94016 +308008,Google Phone,1,600.0,2019-12-04 12:42:00,545 5th St, Boston,MA,02215 +308009,AA Batteries (4-pack),1,3.84,2019-12-23 18:20:00,502 10th St, Seattle,WA,98101 +308010,AAA Batteries (4-pack),2,2.99,2019-12-15 14:07:00,996 Highland St, Portland,OR,97035 +308011,USB-C Charging Cable,1,11.95,2019-12-28 12:27:00,755 River St, New York City,NY,10001 +308012,20in Monitor,1,109.99,2019-12-13 19:37:00,166 Forest St, San Francisco,CA,94016 +308013,Bose SoundSport Headphones,2,99.99,2019-12-06 18:56:00,315 Ridge St, Los Angeles,CA,90001 +308014,AAA Batteries (4-pack),1,2.99,2019-12-27 17:27:00,317 Jefferson St, Los Angeles,CA,90001 +308014,Apple Airpods Headphones,1,150.0,2019-12-27 17:27:00,317 Jefferson St, Los Angeles,CA,90001 +308015,AAA Batteries (4-pack),1,2.99,2019-12-06 19:55:00,49 8th St, San Francisco,CA,94016 +308016,AAA Batteries (4-pack),1,2.99,2019-12-16 14:38:00,284 Madison St, Atlanta,GA,30301 +308017,Apple Airpods Headphones,1,150.0,2019-12-07 11:51:00,909 Dogwood St, Dallas,TX,75001 +308018,AAA Batteries (4-pack),1,2.99,2019-12-03 18:55:00,5 9th St, Seattle,WA,98101 +308019,iPhone,1,700.0,2019-12-04 18:27:00,69 Hickory St, Los Angeles,CA,90001 +308019,Lightning Charging Cable,1,14.95,2019-12-04 18:27:00,69 Hickory St, Los Angeles,CA,90001 +308020,USB-C Charging Cable,1,11.95,2019-12-15 21:24:00,348 6th St, San Francisco,CA,94016 +308021,LG Dryer,1,600.0,2019-12-22 19:06:00,210 West St, Atlanta,GA,30301 +308022,AA Batteries (4-pack),1,3.84,2019-12-31 20:38:00,953 Forest St, Portland,ME,04101 +308023,Wired Headphones,1,11.99,2019-12-01 21:58:00,967 Madison St, Atlanta,GA,30301 +308024,Lightning Charging Cable,1,14.95,2019-12-30 23:59:00,615 6th St, Dallas,TX,75001 +308025,ThinkPad Laptop,1,999.99,2019-12-16 09:19:00,774 6th St, New York City,NY,10001 +308026,AA Batteries (4-pack),1,3.84,2019-12-31 23:12:00,95 Park St, Dallas,TX,75001 +308027,ThinkPad Laptop,1,999.99,2019-12-28 11:14:00,777 Washington St, Austin,TX,73301 +308028,20in Monitor,1,109.99,2019-12-17 15:01:00,333 Highland St, New York City,NY,10001 +308029,Apple Airpods Headphones,1,150.0,2019-12-06 12:40:00,843 Madison St, Boston,MA,02215 +308030,Apple Airpods Headphones,1,150.0,2019-12-01 17:15:00,982 6th St, New York City,NY,10001 +308031,20in Monitor,1,109.99,2019-12-11 18:56:00,378 Lake St, Atlanta,GA,30301 +308032,AAA Batteries (4-pack),1,2.99,2019-12-30 08:47:00,699 Sunset St, Los Angeles,CA,90001 +308033,Flatscreen TV,1,300.0,2019-12-26 16:26:00,525 Cherry St, New York City,NY,10001 +308034,Bose SoundSport Headphones,1,99.99,2019-12-04 13:48:00,487 Wilson St, Dallas,TX,75001 +308035,AAA Batteries (4-pack),1,2.99,2019-12-16 15:18:00,391 Adams St, Los Angeles,CA,90001 +308036,27in 4K Gaming Monitor,1,389.99,2019-12-04 10:00:00,608 Center St, New York City,NY,10001 +308037,AAA Batteries (4-pack),3,2.99,2019-12-20 20:25:00,691 4th St, Los Angeles,CA,90001 +308038,USB-C Charging Cable,1,11.95,2019-12-08 17:53:00,357 Park St, Portland,ME,04101 +308039,Google Phone,1,600.0,2019-12-04 17:54:00,499 Sunset St, New York City,NY,10001 +308040,iPhone,1,700.0,2019-12-02 15:58:00,227 Park St, Seattle,WA,98101 +308041,Apple Airpods Headphones,1,150.0,2019-12-02 04:29:00,91 Lakeview St, Atlanta,GA,30301 +308042,Apple Airpods Headphones,1,150.0,2019-12-31 18:02:00,400 Maple St, Atlanta,GA,30301 +308043,AA Batteries (4-pack),1,3.84,2019-12-04 13:54:00,387 North St, Dallas,TX,75001 +308044,AAA Batteries (4-pack),1,2.99,2019-12-30 01:11:00,363 Walnut St, Austin,TX,73301 +308045,AAA Batteries (4-pack),3,2.99,2019-12-02 22:33:00,808 Highland St, Dallas,TX,75001 +308046,27in 4K Gaming Monitor,1,389.99,2019-12-02 22:27:00,694 Pine St, New York City,NY,10001 +308047,Lightning Charging Cable,1,14.95,2019-12-31 17:22:00,944 5th St, San Francisco,CA,94016 +308048,Lightning Charging Cable,1,14.95,2019-12-24 19:22:00,931 Dogwood St, San Francisco,CA,94016 +308049,AA Batteries (4-pack),2,3.84,2019-12-13 11:25:00,478 Wilson St, Dallas,TX,75001 +308050,AAA Batteries (4-pack),1,2.99,2019-12-24 06:56:00,560 Hickory St, Atlanta,GA,30301 +308051,iPhone,1,700.0,2019-12-09 16:38:00,692 Meadow St, San Francisco,CA,94016 +308052,Flatscreen TV,1,300.0,2019-12-28 19:30:00,580 Johnson St, Atlanta,GA,30301 +308053,USB-C Charging Cable,1,11.95,2019-12-25 09:07:00,593 Elm St, San Francisco,CA,94016 +308054,AAA Batteries (4-pack),1,2.99,2019-12-01 08:46:00,179 River St, Seattle,WA,98101 +308055,USB-C Charging Cable,1,11.95,2019-12-07 11:44:00,941 Forest St, Austin,TX,73301 +308056,Bose SoundSport Headphones,1,99.99,2019-12-02 22:27:00,175 10th St, San Francisco,CA,94016 +308057,Wired Headphones,1,11.99,2019-12-31 18:09:00,39 Lake St, Atlanta,GA,30301 +308058,Lightning Charging Cable,1,14.95,2019-12-04 12:21:00,593 Lincoln St, Dallas,TX,75001 +308059,Wired Headphones,2,11.99,2019-12-11 20:14:00,286 Hill St, Dallas,TX,75001 +308060,34in Ultrawide Monitor,1,379.99,2019-12-10 20:33:00,644 Forest St, Boston,MA,02215 +308061,iPhone,1,700.0,2019-12-27 19:22:00,162 2nd St, Los Angeles,CA,90001 +308061,Apple Airpods Headphones,1,150.0,2019-12-27 19:22:00,162 2nd St, Los Angeles,CA,90001 +308062,Wired Headphones,1,11.99,2019-12-13 15:20:00,330 Johnson St, Atlanta,GA,30301 +308063,AA Batteries (4-pack),1,3.84,2019-12-16 08:59:00,122 Dogwood St, Dallas,TX,75001 +308064,Lightning Charging Cable,2,14.95,2019-12-20 12:28:00,163 14th St, San Francisco,CA,94016 +308065,AA Batteries (4-pack),1,3.84,2019-12-07 17:31:00,316 Washington St, San Francisco,CA,94016 +308065,Macbook Pro Laptop,1,1700.0,2019-12-07 17:31:00,316 Washington St, San Francisco,CA,94016 +308066,AA Batteries (4-pack),1,3.84,2019-12-09 17:39:00,196 Cedar St, Seattle,WA,98101 +308067,Vareebadd Phone,1,400.0,2019-12-29 14:12:00,246 West St, San Francisco,CA,94016 +308067,Wired Headphones,1,11.99,2019-12-29 14:12:00,246 West St, San Francisco,CA,94016 +308068,Bose SoundSport Headphones,1,99.99,2019-12-18 11:17:00,489 Chestnut St, Austin,TX,73301 +308069,Apple Airpods Headphones,1,150.0,2019-12-09 10:43:00,800 Wilson St, Atlanta,GA,30301 +308070,AA Batteries (4-pack),2,3.84,2019-12-30 11:39:00,649 Highland St, Atlanta,GA,30301 +308071,Google Phone,1,600.0,2019-12-16 10:09:00,952 8th St, Boston,MA,02215 +308072,Apple Airpods Headphones,1,150.0,2019-12-13 11:50:00,106 11th St, Los Angeles,CA,90001 +308073,AA Batteries (4-pack),2,3.84,2019-12-25 17:42:00,219 1st St, Boston,MA,02215 +308074,Apple Airpods Headphones,1,150.0,2019-12-09 00:25:00,222 Jefferson St, Boston,MA,02215 +308075,USB-C Charging Cable,1,11.95,2019-12-30 18:45:00,785 Sunset St, Atlanta,GA,30301 +308076,USB-C Charging Cable,1,11.95,2019-12-30 13:56:00,247 Main St, San Francisco,CA,94016 +308077,AA Batteries (4-pack),1,3.84,2019-12-01 17:19:00,280 River St, Seattle,WA,98101 +308078,AAA Batteries (4-pack),1,2.99,2019-12-23 16:00:00,466 West St, Atlanta,GA,30301 +308079,iPhone,1,700.0,2019-12-14 12:19:00,156 13th St, San Francisco,CA,94016 +308079,Apple Airpods Headphones,1,150.0,2019-12-14 12:19:00,156 13th St, San Francisco,CA,94016 +308080,AA Batteries (4-pack),2,3.84,2019-12-26 10:35:00,294 North St, Seattle,WA,98101 +308081,Bose SoundSport Headphones,1,99.99,2019-12-17 18:43:00,324 11th St, San Francisco,CA,94016 +308082,Wired Headphones,1,11.99,2019-12-19 15:54:00,238 Highland St, Seattle,WA,98101 +308083,iPhone,1,700.0,2019-12-16 11:50:00,417 7th St, Los Angeles,CA,90001 +308084,Lightning Charging Cable,1,14.95,2019-12-11 13:17:00,378 Forest St, New York City,NY,10001 +308085,Macbook Pro Laptop,1,1700.0,2019-12-18 11:36:00,912 11th St, Atlanta,GA,30301 +308086,Apple Airpods Headphones,1,150.0,2019-12-13 10:51:00,352 Main St, Dallas,TX,75001 +308087,27in 4K Gaming Monitor,1,389.99,2019-12-09 10:32:00,370 River St, Seattle,WA,98101 +308088,Lightning Charging Cable,1,14.95,2019-12-03 10:08:00,75 Maple St, Los Angeles,CA,90001 +308089,34in Ultrawide Monitor,1,379.99,2019-12-09 01:58:00,892 Ridge St, Seattle,WA,98101 +308090,Wired Headphones,1,11.99,2019-12-08 21:49:00,216 Elm St, Los Angeles,CA,90001 +308091,27in FHD Monitor,1,149.99,2019-12-19 10:25:00,717 Cherry St, Boston,MA,02215 +308092,LG Washing Machine,1,600.0,2019-12-09 16:41:00,86 Walnut St, San Francisco,CA,94016 +308093,Apple Airpods Headphones,1,150.0,2019-12-12 19:13:00,873 14th St, Dallas,TX,75001 +308094,Apple Airpods Headphones,1,150.0,2019-12-03 21:37:00,770 11th St, Atlanta,GA,30301 +308095,AAA Batteries (4-pack),2,2.99,2019-12-26 18:42:00,889 Meadow St, Austin,TX,73301 +308096,Bose SoundSport Headphones,1,99.99,2019-12-08 21:14:00,561 Johnson St, New York City,NY,10001 +308097,Bose SoundSport Headphones,1,99.99,2019-12-15 18:50:00,692 Forest St, Boston,MA,02215 +308098,Wired Headphones,1,11.99,2019-12-13 17:12:00,6 Pine St, Austin,TX,73301 +308099,USB-C Charging Cable,1,11.95,2019-12-08 19:10:00,391 Center St, Atlanta,GA,30301 +308100,Macbook Pro Laptop,1,1700.0,2019-12-18 08:42:00,505 Elm St, Los Angeles,CA,90001 +308101,34in Ultrawide Monitor,1,379.99,2019-12-26 23:42:00,101 11th St, Boston,MA,02215 +308102,AAA Batteries (4-pack),1,2.99,2019-12-13 14:13:00,54 Ridge St, Los Angeles,CA,90001 +308103,USB-C Charging Cable,1,11.95,2019-12-08 09:23:00,804 Forest St, New York City,NY,10001 +308104,27in 4K Gaming Monitor,1,389.99,2019-12-27 11:08:00,675 West St, Atlanta,GA,30301 +308105,Apple Airpods Headphones,1,150.0,2019-12-11 18:31:00,27 2nd St, Los Angeles,CA,90001 +308106,LG Washing Machine,1,600.0,2019-12-03 19:37:00,830 Madison St, Dallas,TX,75001 +308107,Lightning Charging Cable,1,14.95,2019-12-12 14:30:00,65 2nd St, Atlanta,GA,30301 +308108,AA Batteries (4-pack),1,3.84,2019-12-30 13:17:00,518 North St, San Francisco,CA,94016 +308109,Bose SoundSport Headphones,1,99.99,2019-12-21 12:43:00,871 Hickory St, New York City,NY,10001 +308110,USB-C Charging Cable,1,11.95,2019-12-19 22:53:00,887 Spruce St, New York City,NY,10001 +308111,AA Batteries (4-pack),1,3.84,2019-12-01 05:49:00,936 Chestnut St, Portland,OR,97035 +308112,27in 4K Gaming Monitor,1,389.99,2019-12-16 18:28:00,481 Spruce St, San Francisco,CA,94016 +308113,AAA Batteries (4-pack),1,2.99,2019-12-08 21:53:00,956 Main St, San Francisco,CA,94016 +308114,Apple Airpods Headphones,1,150.0,2019-12-17 16:46:00,15 Jefferson St, Dallas,TX,75001 +308115,34in Ultrawide Monitor,1,379.99,2019-12-13 17:51:00,366 10th St, San Francisco,CA,94016 +308116,27in 4K Gaming Monitor,1,389.99,2019-12-14 14:27:00,259 North St, Atlanta,GA,30301 +308117,Wired Headphones,1,11.99,2019-12-03 13:02:00,180 10th St, Austin,TX,73301 +308118,Apple Airpods Headphones,1,150.0,2019-12-30 18:43:00,736 Lincoln St, New York City,NY,10001 +308119,USB-C Charging Cable,1,11.95,2019-12-30 17:37:00,440 Meadow St, Atlanta,GA,30301 +308120,Vareebadd Phone,1,400.0,2019-12-15 08:09:00,496 7th St, San Francisco,CA,94016 +308121,Lightning Charging Cable,1,14.95,2019-12-31 16:43:00,644 Pine St, San Francisco,CA,94016 +308122,Wired Headphones,1,11.99,2019-12-03 21:26:00,725 Jefferson St, Boston,MA,02215 +308123,USB-C Charging Cable,1,11.95,2019-12-26 09:48:00,4 Church St, Portland,OR,97035 +308124,Wired Headphones,1,11.99,2019-12-07 13:13:00,515 Cherry St, Dallas,TX,75001 +308125,Apple Airpods Headphones,1,150.0,2019-12-23 07:08:00,793 Highland St, New York City,NY,10001 +308126,Flatscreen TV,1,300.0,2019-12-31 20:05:00,290 14th St, San Francisco,CA,94016 +308127,AA Batteries (4-pack),1,3.84,2019-12-30 11:55:00,450 Chestnut St, New York City,NY,10001 +308128,AA Batteries (4-pack),1,3.84,2019-12-17 06:22:00,150 Elm St, Los Angeles,CA,90001 +308129,Wired Headphones,1,11.99,2019-12-06 10:20:00,767 Hill St, New York City,NY,10001 +308130,34in Ultrawide Monitor,1,379.99,2019-12-24 10:59:00,933 Spruce St, Dallas,TX,75001 +308131,AA Batteries (4-pack),1,3.84,2019-12-25 13:43:00,430 Highland St, San Francisco,CA,94016 +308132,USB-C Charging Cable,1,11.95,2019-12-10 15:51:00,531 Lake St, Portland,ME,04101 +308133,USB-C Charging Cable,1,11.95,2019-12-12 15:44:00,706 Chestnut St, Boston,MA,02215 +308134,Bose SoundSport Headphones,1,99.99,2019-12-31 21:33:00,779 Lincoln St, San Francisco,CA,94016 +308135,Lightning Charging Cable,1,14.95,2019-12-15 11:30:00,672 Johnson St, Atlanta,GA,30301 +308136,iPhone,1,700.0,2019-12-06 10:42:00,963 2nd St, Los Angeles,CA,90001 +308137,Apple Airpods Headphones,1,150.0,2019-12-21 21:05:00,313 14th St, San Francisco,CA,94016 +308137,USB-C Charging Cable,1,11.95,2019-12-21 21:05:00,313 14th St, San Francisco,CA,94016 +308138,USB-C Charging Cable,1,11.95,2019-12-08 06:17:00,196 10th St, San Francisco,CA,94016 +308139,USB-C Charging Cable,1,11.95,2019-12-31 14:56:00,640 5th St, Austin,TX,73301 +308140,USB-C Charging Cable,1,11.95,2019-12-17 14:35:00,95 12th St, New York City,NY,10001 +308141,AAA Batteries (4-pack),1,2.99,2019-12-25 18:09:00,259 Center St, San Francisco,CA,94016 +308142,34in Ultrawide Monitor,1,379.99,2019-12-02 22:02:00,843 6th St, Dallas,TX,75001 +308143,Lightning Charging Cable,1,14.95,2019-12-04 12:57:00,242 Lakeview St, New York City,NY,10001 +308144,Lightning Charging Cable,1,14.95,2019-12-23 18:21:00,639 Lakeview St, Atlanta,GA,30301 +308145,AA Batteries (4-pack),1,3.84,2019-12-12 07:48:00,426 Main St, Atlanta,GA,30301 +308146,USB-C Charging Cable,2,11.95,2019-12-14 18:54:00,919 West St, San Francisco,CA,94016 +308147,Bose SoundSport Headphones,1,99.99,2019-12-21 20:44:00,669 Adams St, Boston,MA,02215 +308148,USB-C Charging Cable,1,11.95,2019-12-16 17:59:00,820 Jefferson St, San Francisco,CA,94016 +308149,Bose SoundSport Headphones,1,99.99,2019-12-17 19:46:00,849 South St, Dallas,TX,75001 +308150,USB-C Charging Cable,1,11.95,2019-12-20 00:07:00,139 Cherry St, Atlanta,GA,30301 +308151,AAA Batteries (4-pack),1,2.99,2019-12-19 10:53:00,50 Cherry St, Boston,MA,02215 +308152,USB-C Charging Cable,1,11.95,2019-12-23 04:18:00,707 5th St, San Francisco,CA,94016 +308153,34in Ultrawide Monitor,1,379.99,2019-12-25 21:03:00,279 1st St, Dallas,TX,75001 +308154,USB-C Charging Cable,1,11.95,2019-12-15 16:58:00,38 Lincoln St, San Francisco,CA,94016 +308155,AAA Batteries (4-pack),1,2.99,2019-12-22 09:19:00,201 Church St, Portland,OR,97035 +308156,USB-C Charging Cable,1,11.95,2019-12-10 20:13:00,314 14th St, Los Angeles,CA,90001 +308157,AA Batteries (4-pack),2,3.84,2019-12-08 12:45:00,301 Cedar St, Boston,MA,02215 +308158,Bose SoundSport Headphones,1,99.99,2019-12-31 19:57:00,108 Wilson St, San Francisco,CA,94016 +308159,Bose SoundSport Headphones,1,99.99,2019-12-22 21:28:00,252 9th St, Los Angeles,CA,90001 +308160,Bose SoundSport Headphones,1,99.99,2019-12-14 19:38:00,49 North St, Atlanta,GA,30301 +308161,AA Batteries (4-pack),1,3.84,2019-12-28 14:25:00,372 Hickory St, Seattle,WA,98101 +308162,27in 4K Gaming Monitor,1,389.99,2019-12-05 15:18:00,336 Cherry St, San Francisco,CA,94016 +308163,AAA Batteries (4-pack),1,2.99,2019-12-31 15:47:00,469 Jackson St, Austin,TX,73301 +308164,AA Batteries (4-pack),2,3.84,2019-12-26 16:32:00,729 6th St, Boston,MA,02215 +308165,Wired Headphones,1,11.99,2019-12-26 23:31:00,614 Center St, Atlanta,GA,30301 +308166,Wired Headphones,2,11.99,2019-12-28 14:49:00,58 10th St, San Francisco,CA,94016 +308167,Vareebadd Phone,1,400.0,2019-12-29 08:20:00,699 Lincoln St, New York City,NY,10001 +308168,Bose SoundSport Headphones,1,99.99,2019-12-30 09:45:00,706 2nd St, Los Angeles,CA,90001 +308169,27in 4K Gaming Monitor,1,389.99,2019-12-21 13:47:00,395 Lakeview St, San Francisco,CA,94016 +308170,Wired Headphones,1,11.99,2019-12-08 16:11:00,164 Highland St, San Francisco,CA,94016 +308171,AA Batteries (4-pack),1,3.84,2019-12-03 18:59:00,655 Main St, San Francisco,CA,94016 +308172,USB-C Charging Cable,1,11.95,2019-12-15 14:40:00,167 2nd St, Los Angeles,CA,90001 +308173,Wired Headphones,1,11.99,2019-12-06 14:03:00,880 Lakeview St, San Francisco,CA,94016 +308174,Apple Airpods Headphones,1,150.0,2019-12-10 20:54:00,444 Madison St, Seattle,WA,98101 +308175,Wired Headphones,1,11.99,2019-12-26 12:36:00,102 Ridge St, San Francisco,CA,94016 +308176,34in Ultrawide Monitor,1,379.99,2019-12-14 00:13:00,13 Ridge St, Portland,OR,97035 +308177,Apple Airpods Headphones,1,150.0,2019-12-17 10:10:00,683 North St, Seattle,WA,98101 +308178,AAA Batteries (4-pack),1,2.99,2019-12-14 17:28:00,809 2nd St, Dallas,TX,75001 +308179,Lightning Charging Cable,2,14.95,2019-12-24 13:44:00,545 Ridge St, Los Angeles,CA,90001 +308180,Bose SoundSport Headphones,1,99.99,2019-12-30 07:17:00,422 Cherry St, Dallas,TX,75001 +308181,AAA Batteries (4-pack),1,2.99,2019-12-08 02:10:00,904 Hickory St, Seattle,WA,98101 +308182,Wired Headphones,1,11.99,2019-12-13 07:30:00,852 Church St, San Francisco,CA,94016 +308183,iPhone,1,700.0,2019-12-11 13:25:00,270 8th St, Los Angeles,CA,90001 +308183,Lightning Charging Cable,1,14.95,2019-12-11 13:25:00,270 8th St, Los Angeles,CA,90001 +308184,AA Batteries (4-pack),1,3.84,2019-12-17 14:20:00,423 11th St, San Francisco,CA,94016 +308185,27in FHD Monitor,1,149.99,2020-01-01 04:06:00,202 Maple St, San Francisco,CA,94016 +308186,Lightning Charging Cable,2,14.95,2019-12-15 12:44:00,908 Lake St, Atlanta,GA,30301 +308187,AAA Batteries (4-pack),1,2.99,2019-12-19 17:02:00,593 4th St, Atlanta,GA,30301 +308188,Wired Headphones,1,11.99,2019-12-04 12:03:00,830 Willow St, Los Angeles,CA,90001 +308189,Lightning Charging Cable,1,14.95,2019-12-19 12:27:00,736 Park St, Los Angeles,CA,90001 +308190,Google Phone,1,600.0,2019-12-22 16:31:00,120 8th St, Los Angeles,CA,90001 +308191,34in Ultrawide Monitor,1,379.99,2019-12-15 23:00:00,179 Forest St, New York City,NY,10001 +308192,Lightning Charging Cable,1,14.95,2019-12-20 19:32:00,652 1st St, New York City,NY,10001 +308193,Wired Headphones,1,11.99,2019-12-10 15:00:00,899 Highland St, San Francisco,CA,94016 +308194,Lightning Charging Cable,1,14.95,2019-12-23 21:00:00,505 7th St, San Francisco,CA,94016 +308195,AAA Batteries (4-pack),2,2.99,2019-12-27 04:39:00,939 Ridge St, New York City,NY,10001 +308196,AAA Batteries (4-pack),2,2.99,2019-12-04 20:57:00,934 Cedar St, New York City,NY,10001 +308197,Wired Headphones,1,11.99,2019-12-15 08:15:00,231 Lincoln St, Atlanta,GA,30301 +308198,27in FHD Monitor,1,149.99,2019-12-22 10:32:00,603 Chestnut St, Los Angeles,CA,90001 +308199,USB-C Charging Cable,1,11.95,2019-12-27 22:01:00,509 11th St, New York City,NY,10001 +308200,Bose SoundSport Headphones,1,99.99,2019-12-21 15:04:00,790 Church St, New York City,NY,10001 +308201,AA Batteries (4-pack),1,3.84,2019-12-16 21:19:00,539 Walnut St, Los Angeles,CA,90001 +308202,Bose SoundSport Headphones,1,99.99,2019-12-29 13:12:00,422 River St, Portland,OR,97035 +308203,AA Batteries (4-pack),1,3.84,2019-12-07 11:53:00,915 Lakeview St, Dallas,TX,75001 +308204,Bose SoundSport Headphones,1,99.99,2019-12-25 20:07:00,93 Lakeview St, Boston,MA,02215 +308205,Bose SoundSport Headphones,1,99.99,2019-12-23 20:37:00,415 North St, New York City,NY,10001 +308206,Google Phone,1,600.0,2019-12-18 15:21:00,623 13th St, Boston,MA,02215 +308207,Bose SoundSport Headphones,1,99.99,2019-12-17 21:29:00,907 Madison St, San Francisco,CA,94016 +308208,Apple Airpods Headphones,1,150.0,2019-12-13 21:46:00,717 8th St, San Francisco,CA,94016 +308209,Vareebadd Phone,1,400.0,2019-12-03 17:06:00,595 10th St, Atlanta,GA,30301 +308210,iPhone,1,700.0,2019-12-21 12:10:00,342 Cherry St, New York City,NY,10001 +308210,Lightning Charging Cable,1,14.95,2019-12-21 12:10:00,342 Cherry St, New York City,NY,10001 +308211,Macbook Pro Laptop,1,1700.0,2019-12-27 08:56:00,497 Pine St, San Francisco,CA,94016 +308212,USB-C Charging Cable,1,11.95,2019-12-26 17:22:00,626 Pine St, Dallas,TX,75001 +308213,AAA Batteries (4-pack),1,2.99,2019-12-02 16:05:00,816 Lake St, Austin,TX,73301 +308214,Wired Headphones,1,11.99,2019-12-18 14:07:00,146 West St, Los Angeles,CA,90001 +308215,Bose SoundSport Headphones,1,99.99,2019-12-01 08:44:00,756 Maple St, San Francisco,CA,94016 +308216,Flatscreen TV,1,300.0,2019-12-28 08:39:00,573 6th St, San Francisco,CA,94016 +308217,Apple Airpods Headphones,1,150.0,2019-12-22 19:59:00,519 Jackson St, Portland,ME,04101 +308218,Wired Headphones,2,11.99,2019-12-11 18:37:00,469 Pine St, Austin,TX,73301 +308219,Apple Airpods Headphones,1,150.0,2019-12-27 01:19:00,443 West St, San Francisco,CA,94016 +308220,Apple Airpods Headphones,1,150.0,2019-12-07 10:32:00,113 Dogwood St, Dallas,TX,75001 +308221,iPhone,1,700.0,2019-12-03 19:20:00,636 Hill St, Austin,TX,73301 +308222,Wired Headphones,1,11.99,2019-12-02 23:32:00,624 14th St, Portland,OR,97035 +308223,27in 4K Gaming Monitor,1,389.99,2019-12-07 18:39:00,730 Pine St, Portland,OR,97035 +308224,Wired Headphones,1,11.99,2019-12-21 13:30:00,890 Lakeview St, Seattle,WA,98101 +308225,AA Batteries (4-pack),2,3.84,2019-12-24 22:03:00,472 9th St, New York City,NY,10001 +308226,Bose SoundSport Headphones,1,99.99,2019-12-16 20:15:00,618 Madison St, Los Angeles,CA,90001 +308227,Apple Airpods Headphones,1,150.0,2019-12-25 18:59:00,2 Dogwood St, Atlanta,GA,30301 +308228,20in Monitor,1,109.99,2019-12-04 19:53:00,71 Walnut St, San Francisco,CA,94016 +308229,AA Batteries (4-pack),2,3.84,2019-12-19 09:16:00,677 Chestnut St, San Francisco,CA,94016 +308229,Bose SoundSport Headphones,1,99.99,2019-12-19 09:16:00,677 Chestnut St, San Francisco,CA,94016 +308230,Apple Airpods Headphones,1,150.0,2019-12-19 19:34:00,922 River St, Austin,TX,73301 +308231,Wired Headphones,1,11.99,2019-12-13 18:49:00,55 5th St, Los Angeles,CA,90001 +308232,iPhone,1,700.0,2019-12-06 15:18:00,997 12th St, San Francisco,CA,94016 +308233,AA Batteries (4-pack),1,3.84,2019-12-28 17:19:00,877 5th St, Los Angeles,CA,90001 +308234,34in Ultrawide Monitor,1,379.99,2019-12-21 19:31:00,507 Center St, Los Angeles,CA,90001 +308234,Apple Airpods Headphones,1,150.0,2019-12-21 19:31:00,507 Center St, Los Angeles,CA,90001 +308235,Google Phone,1,600.0,2019-12-15 11:42:00,801 Madison St, San Francisco,CA,94016 +308235,USB-C Charging Cable,1,11.95,2019-12-15 11:42:00,801 Madison St, San Francisco,CA,94016 +308236,AA Batteries (4-pack),2,3.84,2019-12-04 16:52:00,467 Wilson St, San Francisco,CA,94016 +308237,27in 4K Gaming Monitor,1,389.99,2019-12-04 10:21:00,388 13th St, New York City,NY,10001 +308238,iPhone,1,700.0,2019-12-23 10:36:00,173 Madison St, San Francisco,CA,94016 +308239,34in Ultrawide Monitor,1,379.99,2019-12-08 12:42:00,43 Elm St, San Francisco,CA,94016 +308240,AAA Batteries (4-pack),3,2.99,2019-12-21 11:18:00,417 Center St, New York City,NY,10001 +308241,Lightning Charging Cable,1,14.95,2019-12-05 15:44:00,130 Washington St, Boston,MA,02215 +308242,AAA Batteries (4-pack),2,2.99,2019-12-14 19:54:00,973 9th St, Dallas,TX,75001 +308243,Apple Airpods Headphones,1,150.0,2019-12-01 12:54:00,873 South St, San Francisco,CA,94016 +308244,34in Ultrawide Monitor,1,379.99,2019-12-08 22:39:00,101 Lincoln St, Austin,TX,73301 +308245,USB-C Charging Cable,1,11.95,2019-12-07 19:33:00,844 Main St, Los Angeles,CA,90001 +308246,AA Batteries (4-pack),2,3.84,2019-12-18 11:33:00,413 West St, San Francisco,CA,94016 +308247,Google Phone,1,600.0,2019-12-18 11:30:00,487 West St, San Francisco,CA,94016 +308248,Wired Headphones,2,11.99,2019-12-22 16:45:00,20 Main St, San Francisco,CA,94016 +308249,USB-C Charging Cable,1,11.95,2019-12-25 16:33:00,795 Washington St, San Francisco,CA,94016 +308250,Macbook Pro Laptop,1,1700.0,2019-12-18 15:28:00,374 River St, Los Angeles,CA,90001 +308251,AAA Batteries (4-pack),1,2.99,2019-12-15 10:50:00,666 Lincoln St, Dallas,TX,75001 +308252,27in FHD Monitor,1,149.99,2019-12-08 20:46:00,386 Hickory St, San Francisco,CA,94016 +308253,Lightning Charging Cable,1,14.95,2019-12-26 14:48:00,536 River St, New York City,NY,10001 +308254,Bose SoundSport Headphones,1,99.99,2019-12-28 09:38:00,583 South St, New York City,NY,10001 +308255,Apple Airpods Headphones,1,150.0,2019-12-03 13:18:00,494 Jefferson St, Los Angeles,CA,90001 +308256,Wired Headphones,1,11.99,2019-12-18 19:07:00,164 Lincoln St, Seattle,WA,98101 +308257,27in FHD Monitor,1,149.99,2019-12-18 10:09:00,991 Hill St, San Francisco,CA,94016 +308258,LG Dryer,1,600.0,2019-12-28 13:12:00,805 South St, Los Angeles,CA,90001 +308259,AA Batteries (4-pack),1,3.84,2019-12-24 20:12:00,207 Johnson St, Los Angeles,CA,90001 +308260,Bose SoundSport Headphones,1,99.99,2019-12-10 05:24:00,956 Wilson St, Dallas,TX,75001 +308261,AA Batteries (4-pack),1,3.84,2019-12-13 15:34:00,818 5th St, Portland,OR,97035 +308262,USB-C Charging Cable,1,11.95,2019-12-09 19:02:00,401 Church St, Atlanta,GA,30301 +308263,34in Ultrawide Monitor,1,379.99,2019-12-23 21:22:00,823 Adams St, Seattle,WA,98101 +308264,Bose SoundSport Headphones,1,99.99,2019-12-18 18:30:00,352 Pine St, Atlanta,GA,30301 +308265,Macbook Pro Laptop,1,1700.0,2019-12-26 15:19:00,773 6th St, San Francisco,CA,94016 +308266,USB-C Charging Cable,1,11.95,2019-12-10 18:23:00,475 Lake St, San Francisco,CA,94016 +308267,Lightning Charging Cable,1,14.95,2019-12-15 20:58:00,629 South St, New York City,NY,10001 +308268,20in Monitor,1,109.99,2019-12-31 21:00:00,411 5th St, New York City,NY,10001 +308269,Apple Airpods Headphones,1,150.0,2019-12-18 15:47:00,441 Center St, Austin,TX,73301 +308270,USB-C Charging Cable,1,11.95,2019-12-13 22:22:00,339 Madison St, Austin,TX,73301 +308271,Lightning Charging Cable,1,14.95,2019-12-13 21:00:00,896 Maple St, Los Angeles,CA,90001 +308272,Wired Headphones,1,11.99,2019-12-18 20:36:00,258 Spruce St, Dallas,TX,75001 +308273,USB-C Charging Cable,1,11.95,2019-12-25 10:03:00,647 Meadow St, San Francisco,CA,94016 +308274,iPhone,1,700.0,2019-12-17 19:20:00,23 9th St, Los Angeles,CA,90001 +308275,AA Batteries (4-pack),1,3.84,2019-12-12 23:49:00,460 13th St, San Francisco,CA,94016 +308276,Bose SoundSport Headphones,1,99.99,2019-12-17 17:18:00,621 Johnson St, Los Angeles,CA,90001 +308277,USB-C Charging Cable,1,11.95,2019-12-10 17:25:00,854 1st St, Los Angeles,CA,90001 +308278,Vareebadd Phone,1,400.0,2019-12-13 19:35:00,639 Jackson St, Seattle,WA,98101 +308279,AA Batteries (4-pack),1,3.84,2019-12-11 21:08:00,598 11th St, Atlanta,GA,30301 +308280,AA Batteries (4-pack),1,3.84,2019-12-31 08:27:00,103 Madison St, New York City,NY,10001 +308281,Wired Headphones,1,11.99,2019-12-26 11:14:00,990 6th St, Seattle,WA,98101 +308282,USB-C Charging Cable,1,11.95,2019-12-19 12:41:00,199 8th St, Seattle,WA,98101 +308283,AAA Batteries (4-pack),1,2.99,2019-12-30 11:02:00,361 4th St, San Francisco,CA,94016 +308284,USB-C Charging Cable,1,11.95,2019-12-19 18:14:00,203 12th St, San Francisco,CA,94016 +308285,USB-C Charging Cable,1,11.95,2019-12-17 21:43:00,907 6th St, Los Angeles,CA,90001 +308286,USB-C Charging Cable,1,11.95,2019-12-16 17:53:00,373 Cedar St, New York City,NY,10001 +308287,AAA Batteries (4-pack),2,2.99,2019-12-09 14:34:00,132 13th St, San Francisco,CA,94016 +308288,27in 4K Gaming Monitor,1,389.99,2019-12-08 12:51:00,144 Ridge St, Los Angeles,CA,90001 +308289,AAA Batteries (4-pack),1,2.99,2019-12-09 15:00:00,139 Meadow St, San Francisco,CA,94016 +308290,Wired Headphones,1,11.99,2019-12-05 22:52:00,425 Pine St, Seattle,WA,98101 +308291,27in 4K Gaming Monitor,1,389.99,2019-12-10 19:22:00,522 Johnson St, San Francisco,CA,94016 +308292,Flatscreen TV,1,300.0,2019-12-23 13:26:00,64 Jackson St, Boston,MA,02215 +308293,Wired Headphones,1,11.99,2019-12-27 20:27:00,348 Adams St, Dallas,TX,75001 +308294,AA Batteries (4-pack),2,3.84,2019-12-28 18:16:00,119 Jefferson St, Los Angeles,CA,90001 +308295,AA Batteries (4-pack),1,3.84,2019-12-27 17:06:00,845 River St, Los Angeles,CA,90001 +308296,27in 4K Gaming Monitor,1,389.99,2019-12-16 02:18:00,901 Lake St, Boston,MA,02215 +308297,34in Ultrawide Monitor,1,379.99,2019-12-22 21:02:00,536 14th St, Seattle,WA,98101 +308298,34in Ultrawide Monitor,1,379.99,2019-12-10 04:29:00,705 7th St, Seattle,WA,98101 +308299,USB-C Charging Cable,1,11.95,2019-12-12 21:58:00,752 Willow St, Boston,MA,02215 +308300,34in Ultrawide Monitor,1,379.99,2019-12-31 21:45:00,384 Jackson St, Los Angeles,CA,90001 +308301,AA Batteries (4-pack),6,3.84,2019-12-21 08:42:00,691 Main St, Dallas,TX,75001 +308302,AAA Batteries (4-pack),2,2.99,2019-12-17 19:39:00,692 Washington St, Austin,TX,73301 +308303,AA Batteries (4-pack),1,3.84,2019-12-18 19:29:00,21 Church St, Portland,OR,97035 +308304,iPhone,1,700.0,2019-12-29 12:49:00,268 Jackson St, Boston,MA,02215 +308305,Lightning Charging Cable,2,14.95,2019-12-22 22:58:00,315 14th St, San Francisco,CA,94016 +308306,Vareebadd Phone,1,400.0,2019-12-01 20:24:00,318 Ridge St, San Francisco,CA,94016 +308307,Apple Airpods Headphones,1,150.0,2019-12-13 18:06:00,238 Hickory St, Dallas,TX,75001 +308308,Google Phone,1,600.0,2019-12-18 15:08:00,914 Elm St, San Francisco,CA,94016 +308309,20in Monitor,1,109.99,2019-12-24 20:20:00,308 Walnut St, New York City,NY,10001 +308310,34in Ultrawide Monitor,1,379.99,2019-12-24 22:47:00,163 Adams St, Los Angeles,CA,90001 +308311,ThinkPad Laptop,1,999.99,2019-12-14 01:01:00,369 Main St, Los Angeles,CA,90001 +308312,AA Batteries (4-pack),2,3.84,2019-12-16 22:55:00,247 Dogwood St, Los Angeles,CA,90001 +308313,Bose SoundSport Headphones,1,99.99,2019-12-16 10:39:00,834 10th St, San Francisco,CA,94016 +308314,USB-C Charging Cable,1,11.95,2019-12-06 21:08:00,578 North St, San Francisco,CA,94016 +308315,Wired Headphones,1,11.99,2019-12-03 06:58:00,77 Elm St, Dallas,TX,75001 +308316,Apple Airpods Headphones,1,150.0,2019-12-02 07:59:00,4 8th St, Atlanta,GA,30301 +308317,AAA Batteries (4-pack),1,2.99,2019-12-12 20:31:00,614 Adams St, Los Angeles,CA,90001 +308318,Wired Headphones,2,11.99,2019-12-07 12:54:00,73 River St, Seattle,WA,98101 +308319,USB-C Charging Cable,1,11.95,2019-12-31 19:56:00,706 12th St, Boston,MA,02215 +308320,Lightning Charging Cable,1,14.95,2019-12-21 03:13:00,214 10th St, New York City,NY,10001 +308321,Wired Headphones,1,11.99,2019-12-25 19:23:00,995 Johnson St, Boston,MA,02215 +308322,Bose SoundSport Headphones,1,99.99,2020-01-01 00:24:00,362 Willow St, San Francisco,CA,94016 +308323,iPhone,1,700.0,2019-12-01 22:10:00,680 5th St, New York City,NY,10001 +308324,AA Batteries (4-pack),1,3.84,2019-12-11 22:39:00,881 Washington St, New York City,NY,10001 +308325,Apple Airpods Headphones,1,150.0,2019-12-07 09:49:00,361 Ridge St, Portland,ME,04101 +308326,20in Monitor,1,109.99,2019-12-18 12:17:00,460 Main St, San Francisco,CA,94016 +308327,Lightning Charging Cable,1,14.95,2019-12-11 20:19:00,32 Jackson St, New York City,NY,10001 +308328,27in FHD Monitor,1,149.99,2019-12-26 11:08:00,309 Johnson St, Boston,MA,02215 +308329,Wired Headphones,1,11.99,2019-12-03 09:29:00,315 Hickory St, Seattle,WA,98101 +308330,AA Batteries (4-pack),2,3.84,2019-12-15 17:36:00,687 6th St, San Francisco,CA,94016 +308331,AAA Batteries (4-pack),1,2.99,2019-12-07 21:35:00,395 9th St, New York City,NY,10001 +308332,AA Batteries (4-pack),1,3.84,2019-12-15 11:16:00,56 Highland St, New York City,NY,10001 +308333,USB-C Charging Cable,1,11.95,2019-12-04 12:31:00,721 12th St, Los Angeles,CA,90001 +308334,LG Washing Machine,1,600.0,2019-12-21 18:29:00,379 North St, New York City,NY,10001 +308335,USB-C Charging Cable,1,11.95,2019-12-25 16:18:00,531 14th St, Portland,ME,04101 +308336,Macbook Pro Laptop,1,1700.0,2019-12-06 13:01:00,590 Meadow St, Boston,MA,02215 +308337,27in 4K Gaming Monitor,1,389.99,2019-12-26 11:07:00,339 Lincoln St, Seattle,WA,98101 +308338,34in Ultrawide Monitor,1,379.99,2019-12-29 11:44:00,326 11th St, Boston,MA,02215 +308338,AAA Batteries (4-pack),1,2.99,2019-12-29 11:44:00,326 11th St, Boston,MA,02215 +308339,AAA Batteries (4-pack),1,2.99,2019-12-24 21:23:00,422 Main St, Dallas,TX,75001 +308340,AAA Batteries (4-pack),2,2.99,2019-12-22 20:15:00,190 4th St, New York City,NY,10001 +308341,AAA Batteries (4-pack),1,2.99,2019-12-11 16:36:00,976 Church St, Seattle,WA,98101 +308342,USB-C Charging Cable,2,11.95,2019-12-11 11:54:00,882 Sunset St, San Francisco,CA,94016 +308343,Lightning Charging Cable,1,14.95,2019-12-07 17:19:00,910 10th St, San Francisco,CA,94016 +308344,AA Batteries (4-pack),1,3.84,2019-12-18 17:13:00,590 Adams St, Seattle,WA,98101 +308345,LG Dryer,1,600.0,2019-12-24 08:44:00,936 Center St, Atlanta,GA,30301 +308346,27in FHD Monitor,1,149.99,2019-12-24 13:38:00,937 Jackson St, Boston,MA,02215 +308347,Lightning Charging Cable,2,14.95,2019-12-04 15:10:00,277 11th St, New York City,NY,10001 +308348,AA Batteries (4-pack),1,3.84,2019-12-30 10:27:00,346 Lakeview St, San Francisco,CA,94016 +308349,Macbook Pro Laptop,1,1700.0,2019-12-21 09:22:00,107 Spruce St, Portland,ME,04101 +308350,AAA Batteries (4-pack),4,2.99,2019-12-26 18:56:00,888 Main St, San Francisco,CA,94016 +308351,AA Batteries (4-pack),1,3.84,2019-12-16 22:55:00,586 Highland St, Los Angeles,CA,90001 +308352,Macbook Pro Laptop,1,1700.0,2019-12-25 09:04:00,192 13th St, Seattle,WA,98101 +308352,34in Ultrawide Monitor,1,379.99,2019-12-25 09:04:00,192 13th St, Seattle,WA,98101 +308353,27in 4K Gaming Monitor,1,389.99,2019-12-20 00:13:00,655 Hickory St, New York City,NY,10001 +308354,ThinkPad Laptop,1,999.99,2019-12-29 17:49:00,955 Pine St, New York City,NY,10001 +308355,Apple Airpods Headphones,1,150.0,2019-12-26 16:54:00,78 7th St, Seattle,WA,98101 +308356,Apple Airpods Headphones,1,150.0,2019-12-24 15:07:00,126 Hickory St, Austin,TX,73301 +308356,AA Batteries (4-pack),1,3.84,2019-12-24 15:07:00,126 Hickory St, Austin,TX,73301 +308357,Wired Headphones,1,11.99,2019-12-30 07:13:00,298 Willow St, Portland,OR,97035 +308358,Apple Airpods Headphones,1,150.0,2019-12-18 18:10:00,809 Walnut St, San Francisco,CA,94016 +308359,Wired Headphones,1,11.99,2019-12-08 01:30:00,611 5th St, Seattle,WA,98101 +308360,Flatscreen TV,1,300.0,2019-12-02 13:44:00,691 11th St, Atlanta,GA,30301 +308361,AA Batteries (4-pack),3,3.84,2019-12-01 15:31:00,326 Lincoln St, Los Angeles,CA,90001 +308362,AAA Batteries (4-pack),1,2.99,2019-12-31 10:18:00,914 Pine St, San Francisco,CA,94016 +308363,Apple Airpods Headphones,1,150.0,2019-12-27 23:12:00,671 River St, Portland,OR,97035 +308364,USB-C Charging Cable,1,11.95,2019-12-05 21:13:00,12 Church St, Portland,OR,97035 +308365,USB-C Charging Cable,1,11.95,2019-12-31 12:53:00,432 Washington St, San Francisco,CA,94016 +308366,Flatscreen TV,1,300.0,2019-12-28 20:48:00,671 Pine St, San Francisco,CA,94016 +308367,Apple Airpods Headphones,1,150.0,2019-12-08 16:57:00,270 Ridge St, Boston,MA,02215 +308367,Lightning Charging Cable,1,14.95,2019-12-08 16:57:00,270 Ridge St, Boston,MA,02215 +308368,Wired Headphones,1,11.99,2019-12-01 19:00:00,539 Park St, Portland,ME,04101 +308369,Vareebadd Phone,1,400.0,2019-12-13 08:43:00,511 Jefferson St, Boston,MA,02215 +308369,Bose SoundSport Headphones,1,99.99,2019-12-13 08:43:00,511 Jefferson St, Boston,MA,02215 +308370,Wired Headphones,1,11.99,2019-12-13 22:02:00,116 Maple St, Boston,MA,02215 +308371,27in FHD Monitor,1,149.99,2019-12-20 16:37:00,501 Forest St, San Francisco,CA,94016 +308372,27in FHD Monitor,1,149.99,2019-12-02 01:24:00,392 Main St, San Francisco,CA,94016 +308373,Macbook Pro Laptop,1,1700.0,2019-12-18 21:56:00,311 Lake St, Boston,MA,02215 +308374,AAA Batteries (4-pack),1,2.99,2019-12-30 10:05:00,963 4th St, Dallas,TX,75001 +308375,Lightning Charging Cable,2,14.95,2019-12-10 08:40:00,430 2nd St, Dallas,TX,75001 +308376,AA Batteries (4-pack),1,3.84,2019-12-19 20:53:00,26 Spruce St, Seattle,WA,98101 +308377,Wired Headphones,1,11.99,2019-12-14 19:43:00,758 11th St, New York City,NY,10001 +308378,34in Ultrawide Monitor,1,379.99,2019-12-20 09:11:00,362 Highland St, Boston,MA,02215 +308379,Wired Headphones,1,11.99,2019-12-11 19:13:00,916 11th St, Los Angeles,CA,90001 +308380,34in Ultrawide Monitor,1,379.99,2019-12-09 16:28:00,240 Forest St, Los Angeles,CA,90001 +308381,Apple Airpods Headphones,1,150.0,2019-12-02 20:47:00,754 Elm St, Los Angeles,CA,90001 +308382,Wired Headphones,1,11.99,2019-12-20 17:49:00,799 Dogwood St, San Francisco,CA,94016 +308383,ThinkPad Laptop,1,999.99,2019-12-19 21:52:00,312 Dogwood St, Boston,MA,02215 +308384,ThinkPad Laptop,1,999.99,2019-12-24 06:36:00,868 Hill St, Boston,MA,02215 +308385,AAA Batteries (4-pack),1,2.99,2019-12-27 11:34:00,299 13th St, San Francisco,CA,94016 +308386,Google Phone,1,600.0,2019-12-10 09:30:00,482 Hill St, San Francisco,CA,94016 +308387,Flatscreen TV,1,300.0,2019-12-21 17:59:00,408 River St, Los Angeles,CA,90001 +308388,AA Batteries (4-pack),1,3.84,2019-12-03 20:09:00,526 Lakeview St, Los Angeles,CA,90001 +308389,Wired Headphones,1,11.99,2019-12-30 09:26:00,812 9th St, Boston,MA,02215 +308390,Lightning Charging Cable,1,14.95,2019-12-14 15:12:00,750 Forest St, New York City,NY,10001 +308391,AA Batteries (4-pack),1,3.84,2019-12-31 00:24:00,927 Lincoln St, Portland,ME,04101 +308392,AAA Batteries (4-pack),5,2.99,2019-12-20 20:24:00,5 Jackson St, Portland,ME,04101 +308393,Google Phone,1,600.0,2019-12-11 13:55:00,713 Willow St, Seattle,WA,98101 +308394,USB-C Charging Cable,1,11.95,2019-12-02 12:42:00,30 Cherry St, Los Angeles,CA,90001 +308395,34in Ultrawide Monitor,1,379.99,2019-12-30 12:32:00,198 Jefferson St, Seattle,WA,98101 +308396,27in 4K Gaming Monitor,1,389.99,2019-12-16 15:07:00,432 River St, Portland,OR,97035 +308397,27in 4K Gaming Monitor,1,389.99,2019-12-21 23:53:00,956 2nd St, Los Angeles,CA,90001 +308398,Macbook Pro Laptop,1,1700.0,2019-12-11 17:13:00,445 Maple St, Austin,TX,73301 +308399,USB-C Charging Cable,1,11.95,2019-12-09 23:34:00,772 Chestnut St, Portland,OR,97035 +308400,Lightning Charging Cable,1,14.95,2019-12-19 11:25:00,447 7th St, Los Angeles,CA,90001 +308401,Lightning Charging Cable,1,14.95,2019-12-02 18:12:00,354 Chestnut St, San Francisco,CA,94016 +308402,20in Monitor,1,109.99,2019-12-19 20:53:00,938 10th St, Boston,MA,02215 +308403,AA Batteries (4-pack),1,3.84,2019-12-29 19:23:00,745 Jefferson St, Los Angeles,CA,90001 +308404,AAA Batteries (4-pack),4,2.99,2019-12-27 23:27:00,671 Maple St, Portland,OR,97035 +308405,USB-C Charging Cable,1,11.95,2019-12-24 16:25:00,186 Maple St, Seattle,WA,98101 +308406,Apple Airpods Headphones,1,150.0,2019-12-25 02:41:00,879 Pine St, Atlanta,GA,30301 +308407,AAA Batteries (4-pack),3,2.99,2019-12-22 17:28:00,64 2nd St, Austin,TX,73301 +308408,iPhone,1,700.0,2019-12-10 22:38:00,10 Madison St, Boston,MA,02215 +308409,USB-C Charging Cable,1,11.95,2019-12-05 18:14:00,649 8th St, Boston,MA,02215 +308410,USB-C Charging Cable,1,11.95,2019-12-25 12:36:00,704 Sunset St, San Francisco,CA,94016 +308411,27in FHD Monitor,1,149.99,2019-12-08 13:37:00,281 Lakeview St, San Francisco,CA,94016 +308412,AA Batteries (4-pack),1,3.84,2019-12-16 14:38:00,184 Wilson St, Los Angeles,CA,90001 +308413,34in Ultrawide Monitor,1,379.99,2019-12-19 17:59:00,712 Cedar St, Atlanta,GA,30301 +308414,Bose SoundSport Headphones,1,99.99,2019-12-05 13:19:00,879 Jackson St, Boston,MA,02215 +308414,Vareebadd Phone,1,400.0,2019-12-05 13:19:00,879 Jackson St, Boston,MA,02215 +308415,Macbook Pro Laptop,1,1700.0,2019-12-10 15:58:00,987 Ridge St, New York City,NY,10001 +308416,USB-C Charging Cable,1,11.95,2019-12-06 09:25:00,141 River St, Los Angeles,CA,90001 +308417,Lightning Charging Cable,1,14.95,2019-12-12 11:45:00,934 Park St, Portland,OR,97035 +308418,Macbook Pro Laptop,1,1700.0,2019-12-16 12:51:00,281 Hickory St, Austin,TX,73301 +308419,Wired Headphones,1,11.99,2019-12-05 17:23:00,986 Adams St, Dallas,TX,75001 +308420,iPhone,1,700.0,2019-12-24 20:26:00,275 North St, Los Angeles,CA,90001 +308421,Wired Headphones,1,11.99,2019-12-07 08:50:00,127 Hickory St, San Francisco,CA,94016 +308422,Lightning Charging Cable,1,14.95,2019-12-24 11:29:00,364 12th St, Atlanta,GA,30301 +308423,AAA Batteries (4-pack),1,2.99,2019-12-26 00:54:00,150 Lincoln St, San Francisco,CA,94016 +308424,USB-C Charging Cable,1,11.95,2019-12-03 00:19:00,684 River St, San Francisco,CA,94016 +308425,27in FHD Monitor,1,149.99,2019-12-11 17:04:00,974 Jefferson St, Seattle,WA,98101 +308426,AA Batteries (4-pack),1,3.84,2019-12-09 17:41:00,948 9th St, Boston,MA,02215 +308427,iPhone,1,700.0,2019-12-25 15:30:00,258 Jefferson St, Dallas,TX,75001 +308427,Lightning Charging Cable,1,14.95,2019-12-25 15:30:00,258 Jefferson St, Dallas,TX,75001 +308428,Wired Headphones,1,11.99,2019-12-14 17:38:00,990 7th St, San Francisco,CA,94016 +308429,27in FHD Monitor,1,149.99,2019-12-25 23:08:00,660 North St, Los Angeles,CA,90001 +308430,Apple Airpods Headphones,1,150.0,2019-12-02 22:39:00,564 Park St, New York City,NY,10001 +308431,Apple Airpods Headphones,1,150.0,2019-12-03 20:43:00,632 7th St, Los Angeles,CA,90001 +308432,Flatscreen TV,1,300.0,2019-12-14 14:30:00,19 Maple St, Boston,MA,02215 +308433,AAA Batteries (4-pack),2,2.99,2019-12-28 16:25:00,422 South St, Atlanta,GA,30301 +308434,Bose SoundSport Headphones,1,99.99,2019-12-25 15:10:00,836 Forest St, San Francisco,CA,94016 +308435,USB-C Charging Cable,1,11.95,2019-12-08 10:07:00,534 Walnut St, Los Angeles,CA,90001 +308436,27in 4K Gaming Monitor,1,389.99,2019-12-22 21:04:00,665 River St, San Francisco,CA,94016 +308437,20in Monitor,1,109.99,2019-12-05 14:34:00,467 North St, Los Angeles,CA,90001 +308438,Wired Headphones,1,11.99,2019-12-04 18:23:00,663 1st St, New York City,NY,10001 +308438,USB-C Charging Cable,1,11.95,2019-12-04 18:23:00,663 1st St, New York City,NY,10001 +308439,27in 4K Gaming Monitor,1,389.99,2019-12-24 11:32:00,801 Jefferson St, New York City,NY,10001 +308440,Lightning Charging Cable,1,14.95,2019-12-07 21:00:00,367 Maple St, Los Angeles,CA,90001 +308441,Lightning Charging Cable,1,14.95,2019-12-04 02:04:00,890 Meadow St, Austin,TX,73301 +308442,Wired Headphones,1,11.99,2019-12-15 12:17:00,807 4th St, Boston,MA,02215 +308443,20in Monitor,1,109.99,2019-12-24 13:41:00,646 Willow St, Los Angeles,CA,90001 +308444,AAA Batteries (4-pack),2,2.99,2019-12-22 16:37:00,14 10th St, Los Angeles,CA,90001 +308445,AAA Batteries (4-pack),1,2.99,2019-12-19 16:45:00,145 Church St, Seattle,WA,98101 +308446,USB-C Charging Cable,2,11.95,2019-12-28 12:58:00,318 North St, San Francisco,CA,94016 +308447,27in FHD Monitor,1,149.99,2019-12-31 17:02:00,150 Maple St, Austin,TX,73301 +308448,Google Phone,1,600.0,2019-12-10 14:06:00,452 8th St, San Francisco,CA,94016 +308449,AAA Batteries (4-pack),1,2.99,2019-12-25 13:33:00,370 Elm St, Boston,MA,02215 +308450,USB-C Charging Cable,2,11.95,2019-12-03 19:23:00,388 Ridge St, Austin,TX,73301 +308450,Wired Headphones,1,11.99,2019-12-03 19:23:00,388 Ridge St, Austin,TX,73301 +308451,Apple Airpods Headphones,1,150.0,2019-12-09 23:31:00,720 11th St, San Francisco,CA,94016 +308452,USB-C Charging Cable,1,11.95,2019-12-01 16:02:00,92 Lakeview St, Portland,OR,97035 +308453,27in FHD Monitor,1,149.99,2019-12-29 09:10:00,717 2nd St, Dallas,TX,75001 +308453,AAA Batteries (4-pack),2,2.99,2019-12-29 09:10:00,717 2nd St, Dallas,TX,75001 +308454,Bose SoundSport Headphones,1,99.99,2019-12-05 14:40:00,537 Adams St, Portland,OR,97035 +308455,Wired Headphones,1,11.99,2019-12-02 20:45:00,849 7th St, Portland,OR,97035 +308456,USB-C Charging Cable,1,11.95,2019-12-24 16:08:00,473 Highland St, San Francisco,CA,94016 +308457,Wired Headphones,1,11.99,2019-12-07 10:40:00,110 Pine St, New York City,NY,10001 +308458,34in Ultrawide Monitor,1,379.99,2019-12-17 10:12:00,886 Madison St, New York City,NY,10001 +308459,Flatscreen TV,1,300.0,2019-12-17 14:27:00,431 5th St, New York City,NY,10001 +308460,AAA Batteries (4-pack),1,2.99,2019-12-22 18:18:00,230 5th St, San Francisco,CA,94016 +308461,Lightning Charging Cable,1,14.95,2019-12-31 10:44:00,966 12th St, Seattle,WA,98101 +308462,AAA Batteries (4-pack),2,2.99,2019-12-04 10:58:00,692 Lincoln St, San Francisco,CA,94016 +308463,34in Ultrawide Monitor,1,379.99,2019-12-08 19:55:00,827 Chestnut St, San Francisco,CA,94016 +308464,20in Monitor,1,109.99,2019-12-05 15:44:00,521 River St, Austin,TX,73301 +308465,Flatscreen TV,1,300.0,2019-12-11 00:33:00,368 West St, Boston,MA,02215 +308466,AA Batteries (4-pack),1,3.84,2019-12-04 12:28:00,314 Lincoln St, Austin,TX,73301 +308467,Wired Headphones,1,11.99,2019-12-13 10:59:00,748 North St, San Francisco,CA,94016 +308468,Lightning Charging Cable,1,14.95,2019-12-07 18:12:00,195 Hickory St, Dallas,TX,75001 +308469,Vareebadd Phone,1,400.0,2019-12-04 21:46:00,907 Willow St, Atlanta,GA,30301 +308470,Bose SoundSport Headphones,1,99.99,2019-12-28 23:07:00,715 Washington St, San Francisco,CA,94016 +308471,Apple Airpods Headphones,1,150.0,2019-12-26 10:14:00,30 6th St, Austin,TX,73301 +308472,27in 4K Gaming Monitor,1,389.99,2019-12-05 19:40:00,711 Hickory St, Portland,ME,04101 +308473,Vareebadd Phone,1,400.0,2019-12-20 03:53:00,381 Lake St, Boston,MA,02215 +308474,Apple Airpods Headphones,1,150.0,2019-12-01 08:52:00,484 Washington St, Portland,OR,97035 +308475,Bose SoundSport Headphones,1,99.99,2019-12-15 22:58:00,33 Pine St, Los Angeles,CA,90001 +308476,Bose SoundSport Headphones,1,99.99,2019-12-05 09:47:00,822 Elm St, New York City,NY,10001 +308477,Bose SoundSport Headphones,1,99.99,2019-12-18 22:30:00,838 Spruce St, Seattle,WA,98101 +308478,Wired Headphones,1,11.99,2019-12-14 06:43:00,397 Cedar St, San Francisco,CA,94016 +308479,Bose SoundSport Headphones,1,99.99,2019-12-19 07:02:00,190 10th St, Atlanta,GA,30301 +308480,AA Batteries (4-pack),1,3.84,2019-12-09 21:00:00,406 Lincoln St, Dallas,TX,75001 +308481,Apple Airpods Headphones,1,150.0,2019-12-02 19:22:00,339 Spruce St, San Francisco,CA,94016 +308482,iPhone,1,700.0,2019-12-21 19:23:00,866 1st St, New York City,NY,10001 +308483,Lightning Charging Cable,1,14.95,2019-12-05 12:26:00,527 4th St, Los Angeles,CA,90001 +308484,USB-C Charging Cable,1,11.95,2019-12-31 22:54:00,711 Lake St, New York City,NY,10001 +308485,ThinkPad Laptop,1,999.99,2019-12-21 15:00:00,175 Highland St, New York City,NY,10001 +308486,Lightning Charging Cable,1,14.95,2019-12-25 15:38:00,792 2nd St, San Francisco,CA,94016 +308487,Bose SoundSport Headphones,1,99.99,2019-12-17 14:23:00,811 Lakeview St, New York City,NY,10001 +308488,AA Batteries (4-pack),1,3.84,2019-12-21 13:14:00,239 8th St, Boston,MA,02215 +308489,AAA Batteries (4-pack),1,2.99,2019-12-03 20:35:00,170 6th St, San Francisco,CA,94016 +308490,Bose SoundSport Headphones,1,99.99,2019-12-14 11:50:00,78 Spruce St, Atlanta,GA,30301 +308491,ThinkPad Laptop,1,999.99,2019-12-18 20:47:00,488 2nd St, San Francisco,CA,94016 +308492,AA Batteries (4-pack),2,3.84,2019-12-22 21:17:00,21 Walnut St, San Francisco,CA,94016 +308493,Wired Headphones,1,11.99,2019-12-21 11:33:00,122 12th St, Atlanta,GA,30301 +308494,AA Batteries (4-pack),1,3.84,2019-12-04 21:09:00,816 Cedar St, Portland,ME,04101 +308495,ThinkPad Laptop,1,999.99,2019-12-31 22:19:00,825 Highland St, Los Angeles,CA,90001 +308496,AA Batteries (4-pack),2,3.84,2019-12-21 19:16:00,185 13th St, New York City,NY,10001 +308497,Lightning Charging Cable,1,14.95,2019-12-11 11:06:00,604 Forest St, Dallas,TX,75001 +308498,Lightning Charging Cable,1,14.95,2019-12-21 11:36:00,382 Sunset St, New York City,NY,10001 +308499,Wired Headphones,1,11.99,2019-12-23 20:48:00,55 Jefferson St, San Francisco,CA,94016 +308500,AAA Batteries (4-pack),1,2.99,2019-12-27 15:33:00,455 9th St, New York City,NY,10001 +308501,20in Monitor,1,109.99,2019-12-24 17:24:00,113 Willow St, Seattle,WA,98101 +308502,Apple Airpods Headphones,1,150.0,2019-12-21 21:22:00,486 Dogwood St, Portland,OR,97035 +308503,Lightning Charging Cable,1,14.95,2019-12-11 21:23:00,161 8th St, Seattle,WA,98101 +308504,AAA Batteries (4-pack),1,2.99,2019-12-05 19:33:00,571 7th St, San Francisco,CA,94016 +308505,iPhone,1,700.0,2019-12-06 06:32:00,280 6th St, Los Angeles,CA,90001 +308506,Wired Headphones,1,11.99,2019-12-17 18:16:00,371 Adams St, Seattle,WA,98101 +308507,Apple Airpods Headphones,1,150.0,2019-12-14 16:03:00,787 Park St, Dallas,TX,75001 +308507,AA Batteries (4-pack),2,3.84,2019-12-14 16:03:00,787 Park St, Dallas,TX,75001 +308508,Bose SoundSport Headphones,1,99.99,2019-12-16 17:33:00,651 Jefferson St, Atlanta,GA,30301 +308509,AAA Batteries (4-pack),4,2.99,2019-12-29 16:18:00,737 Center St, Boston,MA,02215 +308510,USB-C Charging Cable,1,11.95,2019-12-29 21:35:00,652 Walnut St, San Francisco,CA,94016 +308511,Bose SoundSport Headphones,1,99.99,2019-12-28 09:56:00,406 14th St, Seattle,WA,98101 +308512,AAA Batteries (4-pack),2,2.99,2019-12-23 15:59:00,925 Dogwood St, Los Angeles,CA,90001 +308513,Wired Headphones,1,11.99,2019-12-07 08:11:00,353 Wilson St, Portland,ME,04101 +308514,Apple Airpods Headphones,1,150.0,2019-12-12 03:31:00,258 Willow St, Atlanta,GA,30301 +308515,Apple Airpods Headphones,1,150.0,2019-12-18 00:30:00,113 Walnut St, New York City,NY,10001 +308516,27in FHD Monitor,1,149.99,2019-12-29 14:15:00,554 South St, San Francisco,CA,94016 +308517,Lightning Charging Cable,1,14.95,2019-12-06 19:20:00,481 12th St, Portland,OR,97035 +308518,Apple Airpods Headphones,1,150.0,2019-12-08 21:02:00,233 North St, Dallas,TX,75001 +308519,27in 4K Gaming Monitor,1,389.99,2019-12-17 15:42:00,438 Center St, Boston,MA,02215 +308520,Vareebadd Phone,1,400.0,2019-12-31 16:27:00,27 Maple St, Dallas,TX,75001 +308521,iPhone,1,700.0,2019-12-27 11:33:00,988 Walnut St, Seattle,WA,98101 +308522,USB-C Charging Cable,1,11.95,2019-12-05 20:22:00,355 Sunset St, New York City,NY,10001 +308523,34in Ultrawide Monitor,1,379.99,2019-12-11 18:10:00,287 14th St, Portland,OR,97035 +308524,ThinkPad Laptop,1,999.99,2019-12-06 10:33:00,568 Spruce St, Atlanta,GA,30301 +308525,34in Ultrawide Monitor,1,379.99,2019-12-17 10:13:00,702 Dogwood St, San Francisco,CA,94016 +308526,Bose SoundSport Headphones,1,99.99,2019-12-18 18:56:00,320 5th St, New York City,NY,10001 +308527,Vareebadd Phone,1,400.0,2019-12-10 21:41:00,615 Park St, Dallas,TX,75001 +308528,USB-C Charging Cable,1,11.95,2019-12-16 01:15:00,205 North St, San Francisco,CA,94016 +308529,Vareebadd Phone,1,400.0,2019-12-14 07:53:00,795 Walnut St, Seattle,WA,98101 +308530,Lightning Charging Cable,1,14.95,2019-12-19 13:43:00,545 River St, San Francisco,CA,94016 +308531,AA Batteries (4-pack),1,3.84,2019-12-12 18:24:00,440 River St, San Francisco,CA,94016 +308532,AAA Batteries (4-pack),1,2.99,2019-12-04 17:44:00,704 Dogwood St, San Francisco,CA,94016 +308533,ThinkPad Laptop,1,999.99,2019-12-26 20:04:00,397 Chestnut St, Atlanta,GA,30301 +308534,AA Batteries (4-pack),4,3.84,2019-12-23 14:14:00,245 Lake St, Austin,TX,73301 +308535,Lightning Charging Cable,1,14.95,2019-12-26 11:12:00,976 14th St, San Francisco,CA,94016 +308536,Wired Headphones,1,11.99,2019-12-08 13:05:00,465 9th St, Los Angeles,CA,90001 +308537,Flatscreen TV,1,300.0,2019-12-28 21:28:00,320 Jackson St, Los Angeles,CA,90001 +308538,20in Monitor,1,109.99,2019-12-13 08:18:00,945 Cedar St, Atlanta,GA,30301 +308539,Wired Headphones,2,11.99,2019-12-04 18:55:00,692 North St, San Francisco,CA,94016 +308540,Apple Airpods Headphones,1,150.0,2019-12-10 20:38:00,180 14th St, Boston,MA,02215 +308541,USB-C Charging Cable,1,11.95,2019-12-17 16:56:00,12 2nd St, San Francisco,CA,94016 +308542,27in 4K Gaming Monitor,1,389.99,2019-12-19 19:03:00,395 Highland St, Atlanta,GA,30301 +308543,Bose SoundSport Headphones,1,99.99,2019-12-22 14:07:00,366 Lake St, New York City,NY,10001 +308544,AA Batteries (4-pack),3,3.84,2019-12-11 06:42:00,607 Elm St, Dallas,TX,75001 +308545,Wired Headphones,1,11.99,2019-12-18 15:25:00,538 6th St, Dallas,TX,75001 +308546,Vareebadd Phone,1,400.0,2019-12-13 10:39:00,66 Sunset St, San Francisco,CA,94016 +308546,USB-C Charging Cable,1,11.95,2019-12-13 10:39:00,66 Sunset St, San Francisco,CA,94016 +308547,Lightning Charging Cable,1,14.95,2019-12-17 19:39:00,966 Johnson St, Seattle,WA,98101 +308548,AAA Batteries (4-pack),1,2.99,2019-12-02 17:04:00,647 Forest St, San Francisco,CA,94016 +308549,USB-C Charging Cable,1,11.95,2019-12-22 16:08:00,128 Lake St, San Francisco,CA,94016 +308550,Macbook Pro Laptop,1,1700.0,2019-12-19 16:47:00,974 Wilson St, Seattle,WA,98101 +308551,Macbook Pro Laptop,1,1700.0,2019-12-17 08:12:00,750 Cherry St, Seattle,WA,98101 +308552,USB-C Charging Cable,1,11.95,2019-12-09 12:55:00,811 Hickory St, Los Angeles,CA,90001 +308553,AAA Batteries (4-pack),1,2.99,2019-12-13 13:15:00,672 Main St, Boston,MA,02215 +308554,Google Phone,1,600.0,2019-12-12 10:06:00,544 4th St, Dallas,TX,75001 +308555,AAA Batteries (4-pack),1,2.99,2019-12-27 15:20:00,532 Cherry St, San Francisco,CA,94016 +308556,Lightning Charging Cable,1,14.95,2019-12-29 07:16:00,252 Hickory St, Atlanta,GA,30301 +308557,Flatscreen TV,1,300.0,2019-12-09 19:47:00,578 12th St, Atlanta,GA,30301 +308558,Flatscreen TV,1,300.0,2019-12-26 10:11:00,150 Cedar St, Los Angeles,CA,90001 +308559,20in Monitor,1,109.99,2019-12-26 14:20:00,3 Hill St, Atlanta,GA,30301 +308560,USB-C Charging Cable,1,11.95,2019-12-13 16:34:00,807 Jackson St, New York City,NY,10001 +308561,Lightning Charging Cable,1,14.95,2019-12-08 12:22:00,806 Madison St, Boston,MA,02215 +308562,Bose SoundSport Headphones,1,99.99,2019-12-31 12:21:00,754 Adams St, Atlanta,GA,30301 +308563,USB-C Charging Cable,1,11.95,2019-12-09 22:46:00,653 South St, Boston,MA,02215 +308564,Lightning Charging Cable,1,14.95,2019-12-15 19:01:00,132 River St, Austin,TX,73301 +308565,AAA Batteries (4-pack),1,2.99,2019-12-10 20:48:00,855 Cedar St, Portland,OR,97035 +308566,27in FHD Monitor,1,149.99,2019-12-09 13:52:00,423 Lakeview St, San Francisco,CA,94016 +308567,AA Batteries (4-pack),1,3.84,2019-12-28 19:55:00,676 Meadow St, San Francisco,CA,94016 +308568,AA Batteries (4-pack),1,3.84,2019-12-19 13:28:00,386 Highland St, Seattle,WA,98101 +308569,AAA Batteries (4-pack),2,2.99,2019-12-02 21:20:00,583 Hickory St, New York City,NY,10001 +308570,Wired Headphones,2,11.99,2019-12-16 21:07:00,964 Sunset St, Dallas,TX,75001 +308571,Lightning Charging Cable,1,14.95,2019-12-22 19:26:00,769 Cedar St, Seattle,WA,98101 +308572,AAA Batteries (4-pack),4,2.99,2019-12-29 19:11:00,17 Johnson St, Boston,MA,02215 +308573,AA Batteries (4-pack),2,3.84,2019-12-12 13:26:00,202 9th St, New York City,NY,10001 +308574,27in 4K Gaming Monitor,1,389.99,2019-12-17 17:16:00,318 Johnson St, San Francisco,CA,94016 +308575,Lightning Charging Cable,1,14.95,2019-12-11 20:08:00,964 Cedar St, Seattle,WA,98101 +308576,iPhone,1,700.0,2019-12-09 19:01:00,87 Church St, Los Angeles,CA,90001 +308576,Wired Headphones,1,11.99,2019-12-09 19:01:00,87 Church St, Los Angeles,CA,90001 +308577,AAA Batteries (4-pack),3,2.99,2019-12-07 01:05:00,614 Lincoln St, San Francisco,CA,94016 +308578,20in Monitor,1,109.99,2019-12-18 00:33:00,701 Lincoln St, New York City,NY,10001 +308579,Bose SoundSport Headphones,1,99.99,2019-12-04 12:52:00,722 Hill St, Boston,MA,02215 +308580,34in Ultrawide Monitor,1,379.99,2019-12-17 09:29:00,512 Pine St, Austin,TX,73301 +308581,AAA Batteries (4-pack),1,2.99,2019-12-30 11:35:00,220 8th St, Seattle,WA,98101 +308582,Apple Airpods Headphones,1,150.0,2019-12-30 04:01:00,963 Walnut St, New York City,NY,10001 +308583,USB-C Charging Cable,1,11.95,2019-12-01 07:31:00,144 Madison St, San Francisco,CA,94016 +308584,AA Batteries (4-pack),1,3.84,2019-12-20 23:03:00,593 South St, New York City,NY,10001 +308585,Bose SoundSport Headphones,1,99.99,2019-12-11 22:31:00,431 7th St, Seattle,WA,98101 +308586,27in FHD Monitor,1,149.99,2019-12-28 13:53:00,501 Johnson St, New York City,NY,10001 +308587,Vareebadd Phone,1,400.0,2019-12-21 19:08:00,29 Willow St, Boston,MA,02215 +308588,Lightning Charging Cable,1,14.95,2019-12-11 15:23:00,106 Chestnut St, New York City,NY,10001 +308589,Flatscreen TV,1,300.0,2019-12-17 11:50:00,644 Park St, New York City,NY,10001 +308590,Wired Headphones,1,11.99,2019-12-20 23:25:00,190 6th St, San Francisco,CA,94016 +308591,iPhone,1,700.0,2019-12-12 23:16:00,431 South St, Boston,MA,02215 +308591,Lightning Charging Cable,1,14.95,2019-12-12 23:16:00,431 South St, Boston,MA,02215 +308592,USB-C Charging Cable,1,11.95,2019-12-11 15:51:00,496 10th St, San Francisco,CA,94016 +308593,20in Monitor,1,109.99,2019-12-20 18:57:00,950 Hickory St, Portland,OR,97035 +308594,USB-C Charging Cable,2,11.95,2019-12-18 18:35:00,164 11th St, Portland,ME,04101 +308594,Vareebadd Phone,1,400.0,2019-12-18 18:35:00,164 11th St, Portland,ME,04101 +308595,Lightning Charging Cable,1,14.95,2019-12-10 19:08:00,863 South St, Boston,MA,02215 +308596,AA Batteries (4-pack),2,3.84,2019-12-10 18:38:00,883 Maple St, Atlanta,GA,30301 +308597,Bose SoundSport Headphones,1,99.99,2019-12-18 09:32:00,21 7th St, San Francisco,CA,94016 +308598,Macbook Pro Laptop,1,1700.0,2019-12-15 13:00:00,593 Spruce St, San Francisco,CA,94016 +308599,AA Batteries (4-pack),1,3.84,2019-12-05 19:00:00,49 Cherry St, Seattle,WA,98101 +308600,Flatscreen TV,1,300.0,2019-12-17 07:43:00,875 West St, Portland,OR,97035 +308601,AA Batteries (4-pack),2,3.84,2019-12-18 20:52:00,211 10th St, Seattle,WA,98101 +308602,AA Batteries (4-pack),2,3.84,2019-12-11 12:36:00,503 Pine St, New York City,NY,10001 +308603,Bose SoundSport Headphones,1,99.99,2019-12-03 08:36:00,428 14th St, San Francisco,CA,94016 +308604,Wired Headphones,1,11.99,2019-12-06 10:27:00,216 Chestnut St, San Francisco,CA,94016 +308605,Wired Headphones,1,11.99,2019-12-03 12:18:00,928 Sunset St, San Francisco,CA,94016 +308606,Macbook Pro Laptop,1,1700.0,2019-12-07 18:15:00,952 River St, Seattle,WA,98101 +308607,Apple Airpods Headphones,1,150.0,2019-12-11 15:12:00,918 Sunset St, New York City,NY,10001 +308608,Google Phone,1,600.0,2019-12-13 12:58:00,284 Cedar St, Dallas,TX,75001 +308608,Wired Headphones,2,11.99,2019-12-13 12:58:00,284 Cedar St, Dallas,TX,75001 +308609,Bose SoundSport Headphones,1,99.99,2019-12-01 09:18:00,561 Lincoln St, Atlanta,GA,30301 +308610,USB-C Charging Cable,2,11.95,2019-12-31 17:43:00,212 14th St, Boston,MA,02215 +308611,Bose SoundSport Headphones,1,99.99,2019-12-20 11:32:00,434 Jefferson St, New York City,NY,10001 +308612,34in Ultrawide Monitor,1,379.99,2019-12-21 19:31:00,930 Walnut St, Boston,MA,02215 +308613,20in Monitor,1,109.99,2019-12-28 17:14:00,181 Spruce St, San Francisco,CA,94016 +308613,Wired Headphones,1,11.99,2019-12-28 17:14:00,181 Spruce St, San Francisco,CA,94016 +308614,AA Batteries (4-pack),3,3.84,2019-12-27 20:45:00,850 Chestnut St, Boston,MA,02215 +308615,AA Batteries (4-pack),2,3.84,2019-12-13 18:58:00,882 Walnut St, Seattle,WA,98101 +308616,AAA Batteries (4-pack),2,2.99,2019-12-04 12:10:00,231 Lake St, Boston,MA,02215 +308617,AAA Batteries (4-pack),1,2.99,2019-12-26 13:08:00,581 Cherry St, Boston,MA,02215 +308618,Google Phone,1,600.0,2019-12-17 15:32:00,446 9th St, San Francisco,CA,94016 +308619,Flatscreen TV,1,300.0,2019-12-22 18:56:00,871 Washington St, San Francisco,CA,94016 +308620,USB-C Charging Cable,1,11.95,2019-12-24 14:43:00,270 9th St, San Francisco,CA,94016 +308621,AA Batteries (4-pack),1,3.84,2019-12-08 20:56:00,568 10th St, Portland,OR,97035 +308622,Google Phone,1,600.0,2019-12-12 13:36:00,586 Main St, Dallas,TX,75001 +308623,27in 4K Gaming Monitor,1,389.99,2019-12-08 14:32:00,808 Lake St, Los Angeles,CA,90001 +308624,Bose SoundSport Headphones,1,99.99,2019-12-22 22:03:00,408 6th St, Atlanta,GA,30301 +308625,USB-C Charging Cable,1,11.95,2019-12-09 22:52:00,140 10th St, Atlanta,GA,30301 +308626,AAA Batteries (4-pack),3,2.99,2019-12-30 20:56:00,510 Forest St, San Francisco,CA,94016 +308627,AA Batteries (4-pack),1,3.84,2019-12-17 02:08:00,27 1st St, Atlanta,GA,30301 +308628,Macbook Pro Laptop,1,1700.0,2019-12-14 11:02:00,266 Willow St, Boston,MA,02215 +308629,27in FHD Monitor,1,149.99,2019-12-09 21:43:00,268 Hill St, Austin,TX,73301 +308630,AAA Batteries (4-pack),1,2.99,2019-12-14 13:46:00,597 10th St, Los Angeles,CA,90001 +308631,AAA Batteries (4-pack),1,2.99,2019-12-13 11:24:00,756 1st St, San Francisco,CA,94016 +308632,Apple Airpods Headphones,1,150.0,2019-12-17 18:21:00,451 2nd St, San Francisco,CA,94016 +308633,AA Batteries (4-pack),1,3.84,2019-12-25 01:14:00,142 Maple St, San Francisco,CA,94016 +308634,Apple Airpods Headphones,1,150.0,2019-12-10 02:55:00,862 11th St, Los Angeles,CA,90001 +308635,Bose SoundSport Headphones,1,99.99,2019-12-17 12:04:00,723 Washington St, Boston,MA,02215 +308636,AAA Batteries (4-pack),1,2.99,2019-12-14 17:19:00,840 Jefferson St, Los Angeles,CA,90001 +308637,USB-C Charging Cable,1,11.95,2019-12-09 15:32:00,87 Jackson St, Boston,MA,02215 +308638,Wired Headphones,1,11.99,2019-12-30 12:36:00,221 4th St, Los Angeles,CA,90001 +308639,Apple Airpods Headphones,1,150.0,2019-12-18 09:42:00,867 Lakeview St, Portland,ME,04101 +308640,iPhone,1,700.0,2019-12-20 09:57:00,355 Cherry St, San Francisco,CA,94016 +308641,Lightning Charging Cable,1,14.95,2019-12-20 16:37:00,858 Sunset St, Dallas,TX,75001 +308642,Lightning Charging Cable,1,14.95,2019-12-26 01:51:00,905 Hill St, Seattle,WA,98101 +308643,Macbook Pro Laptop,1,1700.0,2019-12-16 20:25:00,865 Hickory St, San Francisco,CA,94016 +308644,AAA Batteries (4-pack),2,2.99,2019-12-15 04:30:00,640 Lake St, Atlanta,GA,30301 +308645,Bose SoundSport Headphones,1,99.99,2019-12-21 15:58:00,183 Ridge St, San Francisco,CA,94016 +308646,Bose SoundSport Headphones,1,99.99,2019-12-03 19:34:00,861 Madison St, Portland,OR,97035 +308647,iPhone,1,700.0,2019-12-18 01:28:00,326 9th St, San Francisco,CA,94016 +308648,AAA Batteries (4-pack),2,2.99,2019-12-28 14:55:00,514 12th St, San Francisco,CA,94016 +308649,Wired Headphones,1,11.99,2019-12-19 19:49:00,281 Maple St, New York City,NY,10001 +308650,Bose SoundSport Headphones,1,99.99,2019-12-24 09:56:00,849 South St, Seattle,WA,98101 +308651,Apple Airpods Headphones,1,150.0,2019-12-18 12:29:00,408 Dogwood St, San Francisco,CA,94016 +308652,AA Batteries (4-pack),1,3.84,2019-12-08 21:02:00,162 2nd St, San Francisco,CA,94016 +308653,Bose SoundSport Headphones,1,99.99,2019-12-06 10:36:00,766 Walnut St, Portland,ME,04101 +308654,Wired Headphones,1,11.99,2019-12-12 09:39:00,872 Main St, Los Angeles,CA,90001 +308655,Apple Airpods Headphones,1,150.0,2019-12-01 13:23:00,820 Hill St, Atlanta,GA,30301 +308656,20in Monitor,1,109.99,2019-12-28 06:35:00,543 Adams St, San Francisco,CA,94016 +308657,Apple Airpods Headphones,1,150.0,2019-12-16 16:02:00,419 5th St, New York City,NY,10001 +308658,AAA Batteries (4-pack),2,2.99,2019-12-28 14:51:00,231 Willow St, New York City,NY,10001 +308659,USB-C Charging Cable,1,11.95,2019-12-07 00:23:00,597 Pine St, Los Angeles,CA,90001 +308660,iPhone,1,700.0,2019-12-13 18:15:00,299 Cherry St, Portland,ME,04101 +308660,Lightning Charging Cable,1,14.95,2019-12-13 18:15:00,299 Cherry St, Portland,ME,04101 +308661,AAA Batteries (4-pack),1,2.99,2019-12-09 11:06:00,268 Forest St, Los Angeles,CA,90001 +308662,Wired Headphones,1,11.99,2019-12-27 07:35:00,408 Walnut St, Portland,OR,97035 +308663,USB-C Charging Cable,1,11.95,2019-12-07 19:26:00,410 North St, Dallas,TX,75001 +308664,Apple Airpods Headphones,1,150.0,2019-12-12 23:05:00,536 Cherry St, San Francisco,CA,94016 +308665,34in Ultrawide Monitor,1,379.99,2019-12-12 11:30:00,44 Pine St, New York City,NY,10001 +308666,AAA Batteries (4-pack),1,2.99,2019-12-31 20:27:00,239 Lincoln St, Los Angeles,CA,90001 +308667,20in Monitor,1,109.99,2019-12-29 18:16:00,40 Elm St, Boston,MA,02215 +308668,AA Batteries (4-pack),2,3.84,2019-12-04 20:21:00,49 10th St, Atlanta,GA,30301 +308669,AAA Batteries (4-pack),1,2.99,2019-12-07 18:01:00,908 Church St, Dallas,TX,75001 +308670,Google Phone,1,600.0,2019-12-23 11:44:00,314 Lakeview St, Portland,ME,04101 +308670,USB-C Charging Cable,1,11.95,2019-12-23 11:44:00,314 Lakeview St, Portland,ME,04101 +308671,27in 4K Gaming Monitor,1,389.99,2019-12-28 10:52:00,773 Johnson St, San Francisco,CA,94016 +308672,Google Phone,1,600.0,2019-12-27 17:24:00,24 Ridge St, New York City,NY,10001 +308673,Lightning Charging Cable,1,14.95,2019-12-14 22:19:00,891 Jackson St, Los Angeles,CA,90001 +308674,iPhone,1,700.0,2019-12-16 22:08:00,171 Lincoln St, Los Angeles,CA,90001 +308675,Wired Headphones,1,11.99,2019-12-02 14:47:00,152 1st St, San Francisco,CA,94016 +308676,Apple Airpods Headphones,1,150.0,2019-12-27 20:37:00,605 Jackson St, San Francisco,CA,94016 +308677,USB-C Charging Cable,1,11.95,2019-12-03 08:07:00,123 Spruce St, Los Angeles,CA,90001 +308678,27in 4K Gaming Monitor,1,389.99,2019-12-06 21:17:00,968 12th St, San Francisco,CA,94016 +308679,34in Ultrawide Monitor,1,379.99,2019-12-23 14:47:00,946 Maple St, Los Angeles,CA,90001 +308680,AAA Batteries (4-pack),4,2.99,2019-12-17 16:46:00,17 Sunset St, San Francisco,CA,94016 +308681,Wired Headphones,1,11.99,2019-12-19 00:02:00,894 Ridge St, Los Angeles,CA,90001 +308682,Apple Airpods Headphones,1,150.0,2019-12-26 16:49:00,871 Willow St, Atlanta,GA,30301 +308683,Wired Headphones,1,11.99,2019-12-02 20:29:00,943 10th St, San Francisco,CA,94016 +308684,USB-C Charging Cable,1,11.95,2019-12-21 02:38:00,794 9th St, Dallas,TX,75001 +308685,AA Batteries (4-pack),1,3.84,2019-12-13 15:52:00,667 6th St, San Francisco,CA,94016 +308686,iPhone,1,700.0,2019-12-01 13:08:00,634 West St, Seattle,WA,98101 +308687,Wired Headphones,1,11.99,2019-12-01 16:13:00,424 Church St, San Francisco,CA,94016 +308688,Google Phone,1,600.0,2019-12-20 09:07:00,324 Elm St, San Francisco,CA,94016 +308689,Bose SoundSport Headphones,1,99.99,2019-12-07 08:45:00,226 Johnson St, Boston,MA,02215 +308690,Wired Headphones,1,11.99,2019-12-02 20:51:00,559 River St, Los Angeles,CA,90001 +308691,Macbook Pro Laptop,1,1700.0,2019-12-26 20:18:00,257 6th St, San Francisco,CA,94016 +308692,AAA Batteries (4-pack),1,2.99,2019-12-04 02:07:00,486 12th St, Los Angeles,CA,90001 +308693,Wired Headphones,1,11.99,2019-12-04 19:51:00,810 Washington St, San Francisco,CA,94016 +308694,Wired Headphones,1,11.99,2019-12-25 14:54:00,995 Main St, Los Angeles,CA,90001 +308695,USB-C Charging Cable,1,11.95,2019-12-27 13:34:00,924 Chestnut St, Portland,OR,97035 +308696,27in 4K Gaming Monitor,1,389.99,2019-12-26 14:08:00,716 4th St, Seattle,WA,98101 +308697,AAA Batteries (4-pack),1,2.99,2019-12-31 20:09:00,597 Lincoln St, San Francisco,CA,94016 +308698,Bose SoundSport Headphones,1,99.99,2019-12-09 18:55:00,420 River St, Boston,MA,02215 +308699,27in 4K Gaming Monitor,1,389.99,2019-12-13 11:42:00,33 Walnut St, Atlanta,GA,30301 +308700,34in Ultrawide Monitor,1,379.99,2019-12-16 14:27:00,239 7th St, San Francisco,CA,94016 +308701,Apple Airpods Headphones,1,150.0,2019-12-30 14:49:00,656 Church St, Boston,MA,02215 +308702,34in Ultrawide Monitor,1,379.99,2019-12-30 14:45:00,349 1st St, Austin,TX,73301 +308703,Lightning Charging Cable,1,14.95,2019-12-04 22:56:00,80 1st St, Dallas,TX,75001 +308704,Lightning Charging Cable,1,14.95,2019-12-05 22:53:00,530 2nd St, New York City,NY,10001 +308705,USB-C Charging Cable,1,11.95,2019-12-14 15:06:00,805 11th St, Boston,MA,02215 +308706,Lightning Charging Cable,1,14.95,2019-12-24 15:30:00,318 South St, Seattle,WA,98101 +308707,AA Batteries (4-pack),1,3.84,2019-12-02 09:45:00,353 Elm St, San Francisco,CA,94016 +308708,AAA Batteries (4-pack),1,2.99,2019-12-29 01:08:00,369 Hickory St, Dallas,TX,75001 +308709,Bose SoundSport Headphones,1,99.99,2019-12-24 14:18:00,747 10th St, Boston,MA,02215 +308710,Flatscreen TV,1,300.0,2019-12-20 08:04:00,534 Park St, Los Angeles,CA,90001 +308711,27in FHD Monitor,1,149.99,2019-12-19 20:09:00,695 13th St, Dallas,TX,75001 +308712,20in Monitor,1,109.99,2019-12-21 13:47:00,846 11th St, San Francisco,CA,94016 +308713,Bose SoundSport Headphones,1,99.99,2019-12-22 06:15:00,309 Lincoln St, San Francisco,CA,94016 +308714,USB-C Charging Cable,1,11.95,2019-12-05 19:04:00,448 Cherry St, Los Angeles,CA,90001 +308715,AAA Batteries (4-pack),2,2.99,2019-12-04 14:15:00,861 Hill St, Atlanta,GA,30301 +308716,USB-C Charging Cable,1,11.95,2019-12-14 16:50:00,831 Walnut St, Austin,TX,73301 +308717,AA Batteries (4-pack),1,3.84,2019-12-17 13:10:00,282 Sunset St, Boston,MA,02215 +308718,Lightning Charging Cable,1,14.95,2019-12-11 06:39:00,933 North St, Boston,MA,02215 +308719,USB-C Charging Cable,1,11.95,2019-12-01 18:37:00,103 11th St, Seattle,WA,98101 +308720,AAA Batteries (4-pack),1,2.99,2019-12-12 11:31:00,813 Johnson St, Seattle,WA,98101 +308721,AA Batteries (4-pack),1,3.84,2019-12-26 08:54:00,176 Walnut St, New York City,NY,10001 +308722,Wired Headphones,1,11.99,2019-12-28 09:20:00,260 7th St, Los Angeles,CA,90001 +308723,Wired Headphones,1,11.99,2019-12-19 22:10:00,876 Lincoln St, Seattle,WA,98101 +308724,Lightning Charging Cable,1,14.95,2019-12-03 13:41:00,785 Jefferson St, New York City,NY,10001 +308725,Wired Headphones,1,11.99,2019-12-06 00:54:00,462 Lakeview St, Austin,TX,73301 +308726,iPhone,1,700.0,2019-12-16 17:28:00,697 Meadow St, New York City,NY,10001 +308726,Lightning Charging Cable,1,14.95,2019-12-16 17:28:00,697 Meadow St, New York City,NY,10001 +308727,USB-C Charging Cable,1,11.95,2019-12-04 14:14:00,525 Sunset St, Boston,MA,02215 +308728,AAA Batteries (4-pack),1,2.99,2019-12-04 10:29:00,971 Sunset St, Seattle,WA,98101 +308729,AA Batteries (4-pack),1,3.84,2019-12-01 21:21:00,642 North St, New York City,NY,10001 +308730,Apple Airpods Headphones,1,150.0,2019-12-03 18:25:00,879 Willow St, Dallas,TX,75001 +308731,Lightning Charging Cable,1,14.95,2019-12-05 22:30:00,894 Adams St, San Francisco,CA,94016 +308732,27in FHD Monitor,1,149.99,2019-12-07 09:35:00,527 Hickory St, New York City,NY,10001 +308733,iPhone,1,700.0,2019-12-09 21:31:00,492 Jefferson St, Seattle,WA,98101 +308734,iPhone,1,700.0,2019-12-26 12:48:00,270 8th St, Seattle,WA,98101 +308735,34in Ultrawide Monitor,1,379.99,2019-12-14 15:59:00,113 Washington St, Portland,OR,97035 +308736,27in 4K Gaming Monitor,1,389.99,2019-12-14 20:29:00,938 14th St, San Francisco,CA,94016 +308737,AA Batteries (4-pack),1,3.84,2019-12-21 09:30:00,841 Walnut St, San Francisco,CA,94016 +308738,Apple Airpods Headphones,1,150.0,2019-12-24 14:22:00,782 Hill St, Portland,OR,97035 +308739,Wired Headphones,1,11.99,2019-12-12 14:51:00,833 12th St, New York City,NY,10001 +308740,AAA Batteries (4-pack),2,2.99,2019-12-10 21:38:00,117 Highland St, San Francisco,CA,94016 +308741,Google Phone,1,600.0,2019-12-13 01:41:00,482 Meadow St, New York City,NY,10001 +308741,AA Batteries (4-pack),1,3.84,2019-12-13 01:41:00,482 Meadow St, New York City,NY,10001 +308742,Bose SoundSport Headphones,1,99.99,2019-12-29 08:41:00,292 4th St, New York City,NY,10001 +308743,Wired Headphones,1,11.99,2019-12-10 12:50:00,251 West St, San Francisco,CA,94016 +308744,Lightning Charging Cable,2,14.95,2019-12-07 22:54:00,213 2nd St, Los Angeles,CA,90001 +308745,Macbook Pro Laptop,1,1700.0,2019-12-25 21:21:00,52 8th St, San Francisco,CA,94016 +308746,Macbook Pro Laptop,1,1700.0,2019-12-07 12:00:00,333 Center St, San Francisco,CA,94016 +308747,AA Batteries (4-pack),1,3.84,2019-12-28 22:08:00,855 Wilson St, New York City,NY,10001 +308748,Wired Headphones,1,11.99,2019-12-23 12:45:00,164 Wilson St, Portland,OR,97035 +308749,Lightning Charging Cable,1,14.95,2019-12-18 21:36:00,689 Main St, Atlanta,GA,30301 +308750,Bose SoundSport Headphones,1,99.99,2019-12-24 20:06:00,39 Main St, New York City,NY,10001 +308751,USB-C Charging Cable,1,11.95,2019-12-31 20:17:00,204 Sunset St, New York City,NY,10001 +308752,27in 4K Gaming Monitor,1,389.99,2019-12-07 19:09:00,226 9th St, Atlanta,GA,30301 +308753,AAA Batteries (4-pack),2,2.99,2019-12-08 22:31:00,943 7th St, New York City,NY,10001 +308754,Lightning Charging Cable,1,14.95,2019-12-31 00:16:00,148 West St, Los Angeles,CA,90001 +308755,Bose SoundSport Headphones,1,99.99,2019-12-29 00:15:00,500 Highland St, Atlanta,GA,30301 +308756,LG Dryer,1,600.0,2019-12-10 18:05:00,750 Maple St, San Francisco,CA,94016 +308757,USB-C Charging Cable,1,11.95,2019-12-25 14:24:00,124 Wilson St, New York City,NY,10001 +308758,AAA Batteries (4-pack),1,2.99,2019-12-23 18:13:00,522 Forest St, New York City,NY,10001 +308759,USB-C Charging Cable,1,11.95,2019-12-27 00:24:00,274 Adams St, Boston,MA,02215 +308760,Lightning Charging Cable,1,14.95,2019-12-01 15:09:00,729 Center St, New York City,NY,10001 +308761,USB-C Charging Cable,1,11.95,2019-12-10 01:19:00,537 11th St, Portland,OR,97035 +308762,Wired Headphones,1,11.99,2019-12-18 21:19:00,84 2nd St, Austin,TX,73301 +308763,AAA Batteries (4-pack),1,2.99,2019-12-10 16:33:00,919 North St, Dallas,TX,75001 +308764,27in 4K Gaming Monitor,1,389.99,2019-12-23 09:40:00,768 2nd St, Boston,MA,02215 +308765,27in FHD Monitor,1,149.99,2019-12-16 15:38:00,526 11th St, San Francisco,CA,94016 +308766,Apple Airpods Headphones,1,150.0,2019-12-22 13:42:00,471 Chestnut St, San Francisco,CA,94016 +308767,Lightning Charging Cable,2,14.95,2019-12-17 07:32:00,473 Park St, New York City,NY,10001 +308768,USB-C Charging Cable,1,11.95,2019-12-05 11:07:00,236 4th St, Boston,MA,02215 +308769,Wired Headphones,2,11.99,2019-12-17 07:12:00,428 Spruce St, New York City,NY,10001 +308770,AAA Batteries (4-pack),2,2.99,2019-12-21 22:03:00,974 Washington St, New York City,NY,10001 +308771,Apple Airpods Headphones,1,150.0,2019-12-26 00:11:00,362 River St, Boston,MA,02215 +308772,Lightning Charging Cable,1,14.95,2019-12-06 13:58:00,756 Wilson St, San Francisco,CA,94016 +308773,Flatscreen TV,1,300.0,2019-12-08 12:56:00,753 12th St, Dallas,TX,75001 +308774,Bose SoundSport Headphones,1,99.99,2019-12-12 23:10:00,981 Highland St, Boston,MA,02215 +308775,Bose SoundSport Headphones,1,99.99,2019-12-28 19:05:00,874 6th St, Seattle,WA,98101 +308776,Apple Airpods Headphones,1,150.0,2019-12-11 16:48:00,329 1st St, Los Angeles,CA,90001 +308777,27in FHD Monitor,1,149.99,2019-12-25 08:28:00,469 Meadow St, Portland,OR,97035 +308778,Lightning Charging Cable,1,14.95,2019-12-10 10:58:00,591 Cedar St, Los Angeles,CA,90001 +308779,Macbook Pro Laptop,1,1700.0,2019-12-18 20:50:00,505 10th St, San Francisco,CA,94016 +308780,Bose SoundSport Headphones,1,99.99,2019-12-08 13:27:00,961 West St, Dallas,TX,75001 +308781,Wired Headphones,1,11.99,2019-12-11 12:57:00,586 9th St, San Francisco,CA,94016 +308782,AA Batteries (4-pack),2,3.84,2019-12-08 11:26:00,234 Maple St, San Francisco,CA,94016 +308783,Flatscreen TV,1,300.0,2019-12-21 10:37:00,564 West St, Los Angeles,CA,90001 +308784,AA Batteries (4-pack),1,3.84,2019-12-15 16:54:00,648 12th St, Los Angeles,CA,90001 +308785,Apple Airpods Headphones,1,150.0,2019-12-15 20:35:00,532 Spruce St, San Francisco,CA,94016 +308786,USB-C Charging Cable,1,11.95,2019-12-31 10:22:00,198 7th St, San Francisco,CA,94016 +308787,iPhone,1,700.0,2019-12-25 23:45:00,530 Center St, Seattle,WA,98101 +308787,Apple Airpods Headphones,1,150.0,2019-12-25 23:45:00,530 Center St, Seattle,WA,98101 +308788,iPhone,1,700.0,2019-12-04 09:23:00,319 Maple St, New York City,NY,10001 +308789,Google Phone,1,600.0,2019-12-03 20:40:00,359 Center St, San Francisco,CA,94016 +308790,Wired Headphones,1,11.99,2019-12-07 20:50:00,435 Hill St, New York City,NY,10001 +308791,Apple Airpods Headphones,1,150.0,2019-12-24 20:29:00,934 10th St, New York City,NY,10001 +308792,Lightning Charging Cable,1,14.95,2019-12-14 16:41:00,753 Cedar St, Boston,MA,02215 +308793,Wired Headphones,1,11.99,2019-12-20 08:01:00,370 Jefferson St, San Francisco,CA,94016 +308794,AAA Batteries (4-pack),1,2.99,2019-12-03 12:09:00,904 Willow St, New York City,NY,10001 +308795,iPhone,1,700.0,2019-12-01 15:55:00,623 Dogwood St, Atlanta,GA,30301 +308795,Apple Airpods Headphones,1,150.0,2019-12-01 15:55:00,623 Dogwood St, Atlanta,GA,30301 +308795,Wired Headphones,1,11.99,2019-12-01 15:55:00,623 Dogwood St, Atlanta,GA,30301 +308796,Wired Headphones,1,11.99,2019-12-19 18:50:00,315 4th St, San Francisco,CA,94016 +308797,USB-C Charging Cable,1,11.95,2019-12-02 14:58:00,294 10th St, Boston,MA,02215 +308797,ThinkPad Laptop,1,999.99,2019-12-02 14:58:00,294 10th St, Boston,MA,02215 +308798,Google Phone,1,600.0,2019-12-21 16:18:00,496 6th St, Dallas,TX,75001 +308799,Bose SoundSport Headphones,1,99.99,2019-12-16 23:02:00,680 Hickory St, New York City,NY,10001 +308800,Wired Headphones,1,11.99,2019-12-29 22:49:00,858 Elm St, New York City,NY,10001 +308801,Lightning Charging Cable,1,14.95,2019-12-19 17:45:00,843 Park St, San Francisco,CA,94016 +308802,USB-C Charging Cable,1,11.95,2019-12-26 10:38:00,251 Jackson St, San Francisco,CA,94016 +308803,AAA Batteries (4-pack),1,2.99,2019-12-13 11:20:00,534 8th St, San Francisco,CA,94016 +308804,Apple Airpods Headphones,1,150.0,2019-12-26 12:27:00,202 7th St, Los Angeles,CA,90001 +308805,Lightning Charging Cable,1,14.95,2019-12-11 20:48:00,181 Cherry St, New York City,NY,10001 +308806,Lightning Charging Cable,1,14.95,2019-12-21 10:02:00,623 Cherry St, Austin,TX,73301 +308807,AAA Batteries (4-pack),1,2.99,2019-12-23 10:01:00,835 14th St, Los Angeles,CA,90001 +308807,AAA Batteries (4-pack),2,2.99,2019-12-23 10:01:00,835 14th St, Los Angeles,CA,90001 +308808,USB-C Charging Cable,1,11.95,2019-12-02 10:29:00,104 10th St, San Francisco,CA,94016 +308809,Lightning Charging Cable,1,14.95,2019-12-30 06:08:00,407 Maple St, San Francisco,CA,94016 +308810,Lightning Charging Cable,1,14.95,2019-12-19 12:05:00,502 8th St, San Francisco,CA,94016 +308811,Apple Airpods Headphones,1,150.0,2019-12-31 08:18:00,478 2nd St, Portland,OR,97035 +308812,iPhone,1,700.0,2019-12-14 13:06:00,201 Ridge St, Boston,MA,02215 +308813,Wired Headphones,1,11.99,2019-12-15 21:11:00,6 Willow St, Boston,MA,02215 +308814,iPhone,1,700.0,2019-12-10 16:16:00,732 12th St, Seattle,WA,98101 +308815,AAA Batteries (4-pack),1,2.99,2019-12-12 22:10:00,451 West St, Los Angeles,CA,90001 +308816,Lightning Charging Cable,1,14.95,2019-12-11 10:30:00,10 Center St, Dallas,TX,75001 +308817,LG Washing Machine,1,600.0,2019-12-23 14:34:00,710 Dogwood St, Dallas,TX,75001 +308818,Lightning Charging Cable,1,14.95,2019-12-09 16:31:00,887 11th St, Atlanta,GA,30301 +308819,USB-C Charging Cable,1,11.95,2019-12-15 16:38:00,360 7th St, New York City,NY,10001 +308820,27in 4K Gaming Monitor,1,389.99,2019-12-30 11:36:00,980 8th St, Los Angeles,CA,90001 +308821,USB-C Charging Cable,1,11.95,2019-12-06 01:01:00,116 Cherry St, Austin,TX,73301 +308822,USB-C Charging Cable,1,11.95,2019-12-07 11:20:00,103 Spruce St, San Francisco,CA,94016 +308823,AAA Batteries (4-pack),1,2.99,2019-12-07 04:04:00,20 Jackson St, Los Angeles,CA,90001 +308824,20in Monitor,1,109.99,2019-12-20 17:55:00,251 5th St, Austin,TX,73301 +308825,ThinkPad Laptop,1,999.99,2019-12-20 10:31:00,68 Park St, Los Angeles,CA,90001 +308826,Apple Airpods Headphones,1,150.0,2019-12-11 19:21:00,354 Lake St, Austin,TX,73301 +308827,Google Phone,1,600.0,2019-12-24 10:19:00,786 11th St, Portland,ME,04101 +308828,Wired Headphones,1,11.99,2019-12-24 15:23:00,288 5th St, Los Angeles,CA,90001 +308829,Bose SoundSport Headphones,2,99.99,2019-12-14 18:56:00,138 Lincoln St, Los Angeles,CA,90001 +308830,AA Batteries (4-pack),1,3.84,2019-12-28 19:53:00,129 5th St, New York City,NY,10001 +308831,Wired Headphones,1,11.99,2019-12-05 18:00:00,188 Elm St, Boston,MA,02215 +308832,USB-C Charging Cable,1,11.95,2019-12-29 15:02:00,756 13th St, San Francisco,CA,94016 +308833,Apple Airpods Headphones,1,150.0,2019-12-17 04:32:00,411 Jackson St, Dallas,TX,75001 +308834,USB-C Charging Cable,1,11.95,2019-12-31 10:40:00,101 Cedar St, Boston,MA,02215 +308835,Lightning Charging Cable,1,14.95,2019-12-30 14:38:00,139 10th St, San Francisco,CA,94016 +308836,Bose SoundSport Headphones,1,99.99,2019-12-31 21:46:00,188 14th St, Seattle,WA,98101 +308837,27in FHD Monitor,1,149.99,2019-12-25 22:08:00,81 Walnut St, Portland,OR,97035 +308838,Lightning Charging Cable,1,14.95,2019-12-01 18:56:00,901 Park St, New York City,NY,10001 +308838,Google Phone,1,600.0,2019-12-01 18:56:00,901 Park St, New York City,NY,10001 +308839,USB-C Charging Cable,1,11.95,2019-12-08 20:38:00,376 4th St, Seattle,WA,98101 +308840,AAA Batteries (4-pack),1,2.99,2019-12-05 13:06:00,972 Elm St, San Francisco,CA,94016 +308841,Lightning Charging Cable,1,14.95,2019-12-22 23:29:00,664 North St, San Francisco,CA,94016 +308842,Wired Headphones,1,11.99,2019-12-05 17:18:00,120 River St, San Francisco,CA,94016 +308843,Bose SoundSport Headphones,1,99.99,2019-12-18 21:03:00,893 Center St, San Francisco,CA,94016 +308844,AA Batteries (4-pack),1,3.84,2019-12-14 12:01:00,773 Wilson St, Atlanta,GA,30301 +308845,USB-C Charging Cable,1,11.95,2019-12-09 13:19:00,923 Lincoln St, New York City,NY,10001 +308846,AA Batteries (4-pack),1,3.84,2019-12-14 04:50:00,414 Jackson St, Atlanta,GA,30301 +308847,Lightning Charging Cable,1,14.95,2019-12-16 07:20:00,471 2nd St, Portland,OR,97035 +308848,USB-C Charging Cable,1,11.95,2019-12-02 10:34:00,362 Hill St, Los Angeles,CA,90001 +308849,Lightning Charging Cable,1,14.95,2019-12-12 13:42:00,896 Johnson St, Atlanta,GA,30301 +308850,Wired Headphones,1,11.99,2019-12-05 21:59:00,472 Cedar St, Portland,OR,97035 +308851,Lightning Charging Cable,1,14.95,2019-12-26 15:24:00,562 Lake St, Boston,MA,02215 +308852,Wired Headphones,1,11.99,2019-12-02 17:59:00,22 11th St, Los Angeles,CA,90001 +308853,Lightning Charging Cable,1,14.95,2019-12-21 13:59:00,726 Elm St, New York City,NY,10001 +308854,Lightning Charging Cable,1,14.95,2019-12-15 15:07:00,347 Lakeview St, Atlanta,GA,30301 +308855,Lightning Charging Cable,2,14.95,2019-12-31 11:54:00,415 North St, San Francisco,CA,94016 +308856,Flatscreen TV,1,300.0,2019-12-28 19:38:00,221 Dogwood St, Los Angeles,CA,90001 +308857,AA Batteries (4-pack),1,3.84,2019-12-29 20:01:00,383 14th St, Seattle,WA,98101 +308858,AAA Batteries (4-pack),1,2.99,2019-12-07 09:53:00,697 Willow St, Boston,MA,02215 +308859,Google Phone,1,600.0,2019-12-10 15:06:00,177 Madison St, Dallas,TX,75001 +308860,USB-C Charging Cable,1,11.95,2019-12-19 10:29:00,507 Elm St, San Francisco,CA,94016 +308861,Lightning Charging Cable,1,14.95,2019-12-21 20:53:00,572 South St, Los Angeles,CA,90001 +308862,AAA Batteries (4-pack),1,2.99,2019-12-16 11:35:00,208 Sunset St, San Francisco,CA,94016 +308863,Apple Airpods Headphones,1,150.0,2019-12-22 12:31:00,215 6th St, Los Angeles,CA,90001 +308864,Wired Headphones,3,11.99,2019-12-21 19:26:00,202 Highland St, New York City,NY,10001 +308865,Google Phone,1,600.0,2019-12-31 21:08:00,307 6th St, San Francisco,CA,94016 +308866,27in 4K Gaming Monitor,1,389.99,2019-12-24 23:13:00,18 4th St, Atlanta,GA,30301 +308867,Lightning Charging Cable,1,14.95,2019-12-11 14:55:00,478 13th St, Los Angeles,CA,90001 +308868,Bose SoundSport Headphones,1,99.99,2019-12-26 21:22:00,721 Maple St, Los Angeles,CA,90001 +308869,USB-C Charging Cable,1,11.95,2019-12-15 12:20:00,224 Sunset St, Dallas,TX,75001 +308870,Bose SoundSport Headphones,1,99.99,2019-12-05 14:08:00,433 Washington St, Los Angeles,CA,90001 +308871,Lightning Charging Cable,1,14.95,2019-12-28 20:35:00,704 Church St, San Francisco,CA,94016 +308872,USB-C Charging Cable,1,11.95,2019-12-09 12:56:00,67 8th St, San Francisco,CA,94016 +308873,Bose SoundSport Headphones,1,99.99,2019-12-07 12:35:00,596 Adams St, Seattle,WA,98101 +308874,AA Batteries (4-pack),1,3.84,2019-12-17 10:00:00,566 Lake St, Atlanta,GA,30301 +308875,iPhone,1,700.0,2019-12-20 13:10:00,192 Lakeview St, Boston,MA,02215 +308876,Apple Airpods Headphones,1,150.0,2019-12-25 12:07:00,609 Washington St, Los Angeles,CA,90001 +308877,27in 4K Gaming Monitor,1,389.99,2019-12-18 21:13:00,146 7th St, Los Angeles,CA,90001 +308878,Apple Airpods Headphones,2,150.0,2019-12-26 17:18:00,94 Pine St, New York City,NY,10001 +308879,Wired Headphones,1,11.99,2019-12-20 21:28:00,240 4th St, San Francisco,CA,94016 +308880,Apple Airpods Headphones,1,150.0,2019-12-06 11:22:00,389 Lakeview St, San Francisco,CA,94016 +308881,Apple Airpods Headphones,1,150.0,2019-12-19 10:45:00,127 West St, San Francisco,CA,94016 +308882,Lightning Charging Cable,1,14.95,2019-12-04 10:37:00,960 9th St, San Francisco,CA,94016 +308883,34in Ultrawide Monitor,1,379.99,2019-12-03 21:19:00,607 Sunset St, Los Angeles,CA,90001 +308884,Lightning Charging Cable,1,14.95,2019-12-06 00:56:00,914 Chestnut St, Boston,MA,02215 +308885,Lightning Charging Cable,1,14.95,2019-12-17 18:21:00,776 River St, Atlanta,GA,30301 +308886,20in Monitor,1,109.99,2019-12-05 12:36:00,588 North St, Dallas,TX,75001 +308887,USB-C Charging Cable,1,11.95,2019-12-17 01:40:00,963 8th St, San Francisco,CA,94016 +308888,AA Batteries (4-pack),2,3.84,2019-12-17 16:40:00,189 Chestnut St, San Francisco,CA,94016 +308889,ThinkPad Laptop,1,999.99,2019-12-15 13:35:00,833 2nd St, Los Angeles,CA,90001 +308890,Apple Airpods Headphones,1,150.0,2019-12-15 21:45:00,311 Lake St, San Francisco,CA,94016 +308891,iPhone,1,700.0,2019-12-03 02:45:00,531 Cedar St, New York City,NY,10001 +308891,Lightning Charging Cable,1,14.95,2019-12-03 02:45:00,531 Cedar St, New York City,NY,10001 +308892,AAA Batteries (4-pack),1,2.99,2019-12-15 22:44:00,815 South St, Dallas,TX,75001 +308893,Lightning Charging Cable,1,14.95,2019-12-30 21:38:00,301 Center St, Los Angeles,CA,90001 +308894,USB-C Charging Cable,2,11.95,2019-12-29 18:29:00,171 6th St, Los Angeles,CA,90001 +308895,Apple Airpods Headphones,1,150.0,2019-12-18 18:45:00,837 Forest St, New York City,NY,10001 +308896,Apple Airpods Headphones,1,150.0,2019-12-14 14:30:00,221 Park St, Los Angeles,CA,90001 +308897,Bose SoundSport Headphones,1,99.99,2019-12-15 12:09:00,97 Jefferson St, Los Angeles,CA,90001 +308898,Lightning Charging Cable,1,14.95,2019-12-14 20:13:00,396 Spruce St, Seattle,WA,98101 +308899,AA Batteries (4-pack),1,3.84,2019-12-24 18:06:00,325 Center St, Austin,TX,73301 +308900,34in Ultrawide Monitor,1,379.99,2019-12-11 06:22:00,843 12th St, Austin,TX,73301 +308901,Apple Airpods Headphones,1,150.0,2019-12-24 19:57:00,477 Elm St, Los Angeles,CA,90001 +308902,ThinkPad Laptop,1,999.99,2019-12-13 02:42:00,123 Highland St, Atlanta,GA,30301 +308903,USB-C Charging Cable,1,11.95,2019-12-23 07:33:00,126 Willow St, San Francisco,CA,94016 +308904,Flatscreen TV,1,300.0,2019-12-26 03:48:00,946 10th St, Austin,TX,73301 +308905,27in FHD Monitor,1,149.99,2019-12-22 13:58:00,738 River St, San Francisco,CA,94016 +308906,Lightning Charging Cable,1,14.95,2019-12-12 14:03:00,451 Spruce St, Los Angeles,CA,90001 +308907,AA Batteries (4-pack),1,3.84,2019-12-24 11:49:00,953 4th St, New York City,NY,10001 +308908,USB-C Charging Cable,1,11.95,2019-12-08 16:57:00,917 Highland St, Seattle,WA,98101 +308909,AAA Batteries (4-pack),1,2.99,2019-12-28 14:49:00,165 14th St, New York City,NY,10001 +308910,AAA Batteries (4-pack),1,2.99,2019-12-28 23:24:00,546 Hickory St, San Francisco,CA,94016 +308911,AAA Batteries (4-pack),1,2.99,2019-12-14 19:45:00,142 14th St, New York City,NY,10001 +308912,USB-C Charging Cable,1,11.95,2019-12-06 21:22:00,554 West St, San Francisco,CA,94016 +308913,Wired Headphones,2,11.99,2019-12-04 19:48:00,927 Madison St, Boston,MA,02215 +308914,Wired Headphones,1,11.99,2019-12-31 11:38:00,395 Maple St, Dallas,TX,75001 +308915,LG Dryer,1,600.0,2019-12-20 13:02:00,173 Jefferson St, San Francisco,CA,94016 +308916,Bose SoundSport Headphones,1,99.99,2019-12-04 16:34:00,452 11th St, Seattle,WA,98101 +308917,USB-C Charging Cable,1,11.95,2019-12-26 16:04:00,515 Walnut St, Los Angeles,CA,90001 +308918,iPhone,1,700.0,2019-12-19 12:57:00,656 Willow St, Boston,MA,02215 +308919,AAA Batteries (4-pack),1,2.99,2019-12-13 17:06:00,219 Church St, Boston,MA,02215 +308920,Wired Headphones,1,11.99,2019-12-22 18:08:00,688 Pine St, Dallas,TX,75001 +308921,27in FHD Monitor,1,149.99,2019-12-28 02:22:00,754 Chestnut St, Boston,MA,02215 +308922,34in Ultrawide Monitor,1,379.99,2019-12-15 15:04:00,878 12th St, San Francisco,CA,94016 +308923,AA Batteries (4-pack),1,3.84,2019-12-02 20:07:00,950 13th St, San Francisco,CA,94016 +308924,iPhone,1,700.0,2019-12-10 13:42:00,881 14th St, New York City,NY,10001 +308924,Wired Headphones,1,11.99,2019-12-10 13:42:00,881 14th St, New York City,NY,10001 +308925,AAA Batteries (4-pack),1,2.99,2019-12-12 17:27:00,35 Cherry St, San Francisco,CA,94016 +308926,AAA Batteries (4-pack),1,2.99,2019-12-01 11:05:00,753 1st St, Los Angeles,CA,90001 +308927,Lightning Charging Cable,1,14.95,2019-12-19 22:24:00,841 Madison St, Los Angeles,CA,90001 +308928,Bose SoundSport Headphones,1,99.99,2019-12-10 12:35:00,97 Ridge St, Portland,OR,97035 +308929,Apple Airpods Headphones,1,150.0,2019-12-15 10:21:00,375 Lake St, Seattle,WA,98101 +308930,Flatscreen TV,1,300.0,2019-12-25 11:48:00,748 5th St, San Francisco,CA,94016 +308931,USB-C Charging Cable,1,11.95,2019-12-24 11:54:00,848 Ridge St, Portland,OR,97035 +308932,AA Batteries (4-pack),1,3.84,2019-12-10 09:19:00,640 2nd St, Los Angeles,CA,90001 +308933,20in Monitor,1,109.99,2019-12-13 10:00:00,411 Elm St, Los Angeles,CA,90001 +308934,ThinkPad Laptop,1,999.99,2019-12-16 23:01:00,627 Church St, Los Angeles,CA,90001 +308935,Macbook Pro Laptop,1,1700.0,2019-12-02 21:37:00,648 Wilson St, San Francisco,CA,94016 +308936,AA Batteries (4-pack),1,3.84,2019-12-06 13:22:00,520 Wilson St, Austin,TX,73301 +308937,AA Batteries (4-pack),1,3.84,2019-12-26 12:33:00,429 Dogwood St, New York City,NY,10001 +308938,AAA Batteries (4-pack),1,2.99,2019-12-02 11:45:00,588 South St, San Francisco,CA,94016 +308939,USB-C Charging Cable,1,11.95,2019-12-30 11:28:00,716 Jefferson St, San Francisco,CA,94016 +308940,Macbook Pro Laptop,1,1700.0,2019-12-10 18:18:00,969 Wilson St, Los Angeles,CA,90001 +308941,Google Phone,1,600.0,2019-12-30 11:52:00,477 9th St, Seattle,WA,98101 +308942,Lightning Charging Cable,1,14.95,2019-12-24 18:57:00,131 Main St, New York City,NY,10001 +308943,Lightning Charging Cable,1,14.95,2019-12-31 17:00:00,582 Maple St, Los Angeles,CA,90001 +308944,AAA Batteries (4-pack),1,2.99,2019-12-21 17:44:00,536 South St, Los Angeles,CA,90001 +308945,Lightning Charging Cable,1,14.95,2019-12-26 13:02:00,495 12th St, San Francisco,CA,94016 +308946,Wired Headphones,1,11.99,2019-12-20 23:19:00,219 Cherry St, Los Angeles,CA,90001 +308947,Lightning Charging Cable,1,14.95,2019-12-22 16:40:00,404 River St, New York City,NY,10001 +308948,27in FHD Monitor,1,149.99,2019-12-05 18:34:00,626 Lincoln St, Los Angeles,CA,90001 +308949,AAA Batteries (4-pack),1,2.99,2019-12-12 19:53:00,345 Cherry St, Boston,MA,02215 +308950,Apple Airpods Headphones,1,150.0,2019-12-15 09:40:00,660 13th St, New York City,NY,10001 +308951,20in Monitor,1,109.99,2019-12-10 10:14:00,414 4th St, Los Angeles,CA,90001 +308952,USB-C Charging Cable,1,11.95,2019-12-22 20:31:00,939 Walnut St, Dallas,TX,75001 +308953,27in FHD Monitor,1,149.99,2019-12-02 08:02:00,564 Pine St, Los Angeles,CA,90001 +308954,Lightning Charging Cable,1,14.95,2019-12-06 16:11:00,191 6th St, Dallas,TX,75001 +308955,Lightning Charging Cable,1,14.95,2019-12-03 20:38:00,687 Maple St, Los Angeles,CA,90001 +308956,iPhone,1,700.0,2019-12-25 17:47:00,303 Park St, New York City,NY,10001 +308956,Wired Headphones,1,11.99,2019-12-25 17:47:00,303 Park St, New York City,NY,10001 +308957,USB-C Charging Cable,1,11.95,2019-12-21 12:03:00,367 4th St, Portland,OR,97035 +308958,Lightning Charging Cable,1,14.95,2019-12-05 11:45:00,690 Jefferson St, Boston,MA,02215 +308959,USB-C Charging Cable,1,11.95,2019-12-25 22:13:00,803 Center St, Atlanta,GA,30301 +308960,AAA Batteries (4-pack),1,2.99,2019-12-07 18:04:00,905 Center St, Dallas,TX,75001 +308961,Lightning Charging Cable,1,14.95,2019-12-11 19:43:00,786 River St, Austin,TX,73301 +308962,AAA Batteries (4-pack),1,2.99,2019-12-12 19:47:00,534 Walnut St, New York City,NY,10001 +308963,USB-C Charging Cable,1,11.95,2019-12-04 13:42:00,551 Sunset St, Seattle,WA,98101 +308964,LG Dryer,1,600.0,2019-12-13 19:51:00,915 Main St, Dallas,TX,75001 +308965,Wired Headphones,1,11.99,2019-12-18 16:36:00,722 12th St, Dallas,TX,75001 +308966,Bose SoundSport Headphones,1,99.99,2019-12-20 13:44:00,164 Ridge St, Dallas,TX,75001 +308967,USB-C Charging Cable,1,11.95,2019-12-19 16:55:00,88 9th St, San Francisco,CA,94016 +308968,USB-C Charging Cable,1,11.95,2019-12-28 05:20:00,987 Hickory St, Portland,OR,97035 +308969,USB-C Charging Cable,1,11.95,2019-12-14 13:17:00,665 Cherry St, San Francisco,CA,94016 +308970,AA Batteries (4-pack),1,3.84,2019-12-05 13:26:00,777 10th St, San Francisco,CA,94016 +308971,Wired Headphones,1,11.99,2019-12-13 23:04:00,698 Spruce St, Austin,TX,73301 +308972,34in Ultrawide Monitor,1,379.99,2019-12-10 18:50:00,344 Church St, San Francisco,CA,94016 +308973,Apple Airpods Headphones,1,150.0,2019-12-16 08:00:00,949 Dogwood St, New York City,NY,10001 +308974,27in 4K Gaming Monitor,1,389.99,2019-12-23 14:45:00,604 Hickory St, Seattle,WA,98101 +308975,AA Batteries (4-pack),1,3.84,2019-12-14 07:59:00,343 Highland St, Seattle,WA,98101 +308976,iPhone,1,700.0,2019-12-26 22:23:00,112 2nd St, Los Angeles,CA,90001 +308977,AAA Batteries (4-pack),1,2.99,2019-12-15 21:37:00,440 Maple St, Dallas,TX,75001 +308978,USB-C Charging Cable,1,11.95,2019-12-02 14:33:00,879 Lincoln St, Los Angeles,CA,90001 +308979,Lightning Charging Cable,1,14.95,2019-12-10 21:42:00,678 4th St, Austin,TX,73301 +308980,Google Phone,1,600.0,2019-12-30 15:55:00,824 14th St, San Francisco,CA,94016 +308981,27in FHD Monitor,1,149.99,2019-12-27 08:51:00,678 Lake St, Austin,TX,73301 +308982,Apple Airpods Headphones,1,150.0,2019-12-19 14:17:00,444 Church St, Boston,MA,02215 +308983,USB-C Charging Cable,1,11.95,2019-12-06 19:22:00,910 Lakeview St, Atlanta,GA,30301 +308984,27in 4K Gaming Monitor,1,389.99,2019-12-20 15:19:00,629 11th St, Dallas,TX,75001 +308985,Wired Headphones,1,11.99,2019-12-28 07:27:00,585 13th St, Boston,MA,02215 +308986,Wired Headphones,1,11.99,2019-12-22 08:34:00,934 Spruce St, San Francisco,CA,94016 +308987,Google Phone,1,600.0,2019-12-22 07:07:00,162 1st St, San Francisco,CA,94016 +308988,Apple Airpods Headphones,1,150.0,2019-12-06 14:28:00,869 Hill St, San Francisco,CA,94016 +308989,AAA Batteries (4-pack),1,2.99,2019-12-18 20:56:00,86 Elm St, Dallas,TX,75001 +308990,ThinkPad Laptop,1,999.99,2019-12-09 16:05:00,529 Johnson St, Seattle,WA,98101 +308991,AAA Batteries (4-pack),1,2.99,2019-12-22 18:39:00,148 Adams St, Boston,MA,02215 +308992,Apple Airpods Headphones,1,150.0,2019-12-26 19:30:00,189 Chestnut St, New York City,NY,10001 +308992,AAA Batteries (4-pack),2,2.99,2019-12-26 19:30:00,189 Chestnut St, New York City,NY,10001 +308993,Lightning Charging Cable,1,14.95,2019-12-05 10:39:00,186 10th St, Los Angeles,CA,90001 +308994,USB-C Charging Cable,1,11.95,2019-12-10 15:54:00,124 12th St, Los Angeles,CA,90001 +308995,27in 4K Gaming Monitor,1,389.99,2019-12-24 13:53:00,708 Sunset St, San Francisco,CA,94016 +308996,Vareebadd Phone,1,400.0,2019-12-04 15:26:00,26 Washington St, San Francisco,CA,94016 +308997,20in Monitor,1,109.99,2019-12-26 12:18:00,473 Sunset St, Atlanta,GA,30301 +308998,Bose SoundSport Headphones,1,99.99,2019-12-07 10:17:00,142 Chestnut St, Dallas,TX,75001 +308999,Lightning Charging Cable,1,14.95,2019-12-07 19:20:00,946 10th St, Seattle,WA,98101 +309000,AA Batteries (4-pack),3,3.84,2019-12-20 10:23:00,527 4th St, New York City,NY,10001 +309001,Wired Headphones,1,11.99,2019-12-10 11:19:00,626 2nd St, San Francisco,CA,94016 +309002,20in Monitor,1,109.99,2019-12-19 11:59:00,22 13th St, Los Angeles,CA,90001 +309003,Lightning Charging Cable,1,14.95,2019-12-12 21:45:00,786 Cedar St, Atlanta,GA,30301 +309004,Wired Headphones,1,11.99,2019-12-03 17:48:00,245 North St, Boston,MA,02215 +309005,Lightning Charging Cable,1,14.95,2019-12-30 22:01:00,510 6th St, Dallas,TX,75001 +309006,Lightning Charging Cable,1,14.95,2019-12-30 10:14:00,7 Forest St, Seattle,WA,98101 +309007,USB-C Charging Cable,1,11.95,2019-12-02 10:18:00,662 Madison St, Los Angeles,CA,90001 +309008,Apple Airpods Headphones,1,150.0,2019-12-23 22:13:00,161 Pine St, Austin,TX,73301 +309009,27in 4K Gaming Monitor,1,389.99,2019-12-27 14:52:00,893 13th St, Portland,OR,97035 +309010,USB-C Charging Cable,2,11.95,2019-12-26 07:55:00,960 Washington St, Austin,TX,73301 +309011,Apple Airpods Headphones,1,150.0,2019-12-09 21:52:00,264 9th St, Dallas,TX,75001 +309012,Wired Headphones,1,11.99,2019-12-20 15:21:00,397 Ridge St, San Francisco,CA,94016 +309012,34in Ultrawide Monitor,1,379.99,2019-12-20 15:21:00,397 Ridge St, San Francisco,CA,94016 +309013,AAA Batteries (4-pack),1,2.99,2019-12-24 14:07:00,744 River St, Atlanta,GA,30301 +309014,AAA Batteries (4-pack),1,2.99,2019-12-25 12:43:00,502 9th St, New York City,NY,10001 +309015,Apple Airpods Headphones,1,150.0,2019-12-26 19:37:00,732 Elm St, New York City,NY,10001 +309016,Lightning Charging Cable,1,14.95,2019-12-14 21:48:00,708 1st St, San Francisco,CA,94016 +309017,Lightning Charging Cable,1,14.95,2019-12-19 12:24:00,42 12th St, Los Angeles,CA,90001 +309018,AAA Batteries (4-pack),1,2.99,2019-12-13 19:30:00,161 West St, Dallas,TX,75001 +309019,Wired Headphones,1,11.99,2019-12-28 12:44:00,54 11th St, Los Angeles,CA,90001 +309020,Lightning Charging Cable,1,14.95,2019-12-11 11:58:00,21 Park St, San Francisco,CA,94016 +309021,Bose SoundSport Headphones,1,99.99,2019-12-31 07:23:00,425 Sunset St, San Francisco,CA,94016 +309022,Google Phone,1,600.0,2019-12-03 19:26:00,715 Spruce St, Boston,MA,02215 +309022,USB-C Charging Cable,1,11.95,2019-12-03 19:26:00,715 Spruce St, Boston,MA,02215 +309023,Google Phone,1,600.0,2019-12-23 13:22:00,751 Hickory St, Boston,MA,02215 +309023,USB-C Charging Cable,1,11.95,2019-12-23 13:22:00,751 Hickory St, Boston,MA,02215 +309024,iPhone,1,700.0,2019-12-04 17:19:00,509 Lake St, San Francisco,CA,94016 +309025,Apple Airpods Headphones,1,150.0,2019-12-08 15:52:00,792 Lake St, Seattle,WA,98101 +309026,Lightning Charging Cable,1,14.95,2019-12-07 17:08:00,527 Walnut St, Boston,MA,02215 +309027,AA Batteries (4-pack),1,3.84,2019-12-05 12:57:00,103 River St, Boston,MA,02215 +309028,Bose SoundSport Headphones,1,99.99,2019-12-19 16:33:00,736 Wilson St, San Francisco,CA,94016 +309029,Lightning Charging Cable,1,14.95,2019-12-12 07:21:00,474 Elm St, New York City,NY,10001 +309030,AA Batteries (4-pack),1,3.84,2019-12-23 15:26:00,40 5th St, San Francisco,CA,94016 +309031,USB-C Charging Cable,1,11.95,2019-12-14 03:09:00,800 Cedar St, New York City,NY,10001 +309032,20in Monitor,1,109.99,2019-12-21 18:06:00,797 12th St, New York City,NY,10001 +309033,AA Batteries (4-pack),1,3.84,2019-12-14 00:47:00,107 Jackson St, Boston,MA,02215 +309034,Wired Headphones,1,11.99,2019-12-12 12:45:00,721 Center St, New York City,NY,10001 +309035,LG Dryer,1,600.0,2019-12-04 13:09:00,527 2nd St, Los Angeles,CA,90001 +309036,Wired Headphones,1,11.99,2019-12-11 10:06:00,529 Elm St, New York City,NY,10001 +309037,USB-C Charging Cable,1,11.95,2019-12-23 13:05:00,513 Hill St, Dallas,TX,75001 +309038,USB-C Charging Cable,1,11.95,2019-12-21 16:14:00,368 Lincoln St, San Francisco,CA,94016 +309039,27in 4K Gaming Monitor,1,389.99,2019-12-27 09:31:00,909 South St, Los Angeles,CA,90001 +309040,Lightning Charging Cable,1,14.95,2019-12-16 20:03:00,95 Willow St, Los Angeles,CA,90001 +309041,ThinkPad Laptop,1,999.99,2019-12-07 10:04:00,66 Lincoln St, San Francisco,CA,94016 +309042,Lightning Charging Cable,1,14.95,2019-12-31 19:50:00,953 Willow St, San Francisco,CA,94016 +309043,AAA Batteries (4-pack),1,2.99,2019-12-05 21:00:00,388 Johnson St, Austin,TX,73301 +309044,27in 4K Gaming Monitor,1,389.99,2019-12-15 16:21:00,181 Hickory St, San Francisco,CA,94016 +309045,Apple Airpods Headphones,1,150.0,2019-12-14 20:00:00,358 Chestnut St, New York City,NY,10001 +309046,Lightning Charging Cable,1,14.95,2019-12-28 10:32:00,880 Hill St, San Francisco,CA,94016 +309046,Wired Headphones,1,11.99,2019-12-28 10:32:00,880 Hill St, San Francisco,CA,94016 +309047,AA Batteries (4-pack),1,3.84,2019-12-04 13:46:00,777 8th St, Boston,MA,02215 +309048,Lightning Charging Cable,1,14.95,2019-12-24 13:37:00,81 Chestnut St, Los Angeles,CA,90001 +309049,27in 4K Gaming Monitor,1,389.99,2019-12-24 15:47:00,49 Center St, Los Angeles,CA,90001 +309050,Lightning Charging Cable,1,14.95,2019-12-18 16:54:00,222 1st St, Boston,MA,02215 +309051,AAA Batteries (4-pack),3,2.99,2019-12-29 12:41:00,421 Spruce St, Portland,ME,04101 +309052,Macbook Pro Laptop,1,1700.0,2019-12-07 08:17:00,452 Forest St, Los Angeles,CA,90001 +309053,27in FHD Monitor,1,149.99,2019-12-15 13:06:00,772 Center St, San Francisco,CA,94016 +309054,Apple Airpods Headphones,1,150.0,2019-12-25 19:09:00,904 Jackson St, New York City,NY,10001 +309055,USB-C Charging Cable,1,11.95,2019-12-31 16:16:00,943 Madison St, San Francisco,CA,94016 +309056,Google Phone,1,600.0,2019-12-01 10:36:00,860 Meadow St, San Francisco,CA,94016 +309057,Flatscreen TV,1,300.0,2019-12-09 19:46:00,30 Highland St, Dallas,TX,75001 +309058,AAA Batteries (4-pack),1,2.99,2019-12-20 09:42:00,868 Hill St, San Francisco,CA,94016 +309059,AA Batteries (4-pack),2,3.84,2019-12-10 18:01:00,916 Jefferson St, San Francisco,CA,94016 +309060,AAA Batteries (4-pack),1,2.99,2019-12-29 17:26:00,657 West St, San Francisco,CA,94016 +309061,Apple Airpods Headphones,1,150.0,2019-12-07 16:16:00,412 River St, San Francisco,CA,94016 +309062,Vareebadd Phone,1,400.0,2019-12-17 11:23:00,978 Ridge St, Austin,TX,73301 +309063,AAA Batteries (4-pack),1,2.99,2019-12-14 14:04:00,682 Elm St, San Francisco,CA,94016 +309064,USB-C Charging Cable,1,11.95,2019-12-06 11:59:00,953 10th St, Los Angeles,CA,90001 +309065,34in Ultrawide Monitor,1,379.99,2019-12-05 12:34:00,569 Cherry St, San Francisco,CA,94016 +309066,Lightning Charging Cable,2,14.95,2019-12-23 19:12:00,49 Hill St, Dallas,TX,75001 +309067,AAA Batteries (4-pack),1,2.99,2019-12-02 12:29:00,983 Johnson St, San Francisco,CA,94016 +309068,AA Batteries (4-pack),2,3.84,2019-12-29 08:19:00,753 Madison St, New York City,NY,10001 +309069,34in Ultrawide Monitor,1,379.99,2019-12-19 13:10:00,731 Wilson St, Portland,OR,97035 +309070,iPhone,1,700.0,2019-12-01 11:50:00,575 West St, New York City,NY,10001 +309070,Lightning Charging Cable,3,14.95,2019-12-01 11:50:00,575 West St, New York City,NY,10001 +309071,27in FHD Monitor,1,149.99,2019-12-08 17:51:00,80 12th St, Dallas,TX,75001 +309072,AAA Batteries (4-pack),3,2.99,2019-12-14 19:12:00,527 Jackson St, San Francisco,CA,94016 +309073,USB-C Charging Cable,2,11.95,2019-12-29 18:51:00,871 Meadow St, New York City,NY,10001 +309074,Bose SoundSport Headphones,1,99.99,2019-12-13 17:53:00,863 Jackson St, San Francisco,CA,94016 +309075,Apple Airpods Headphones,1,150.0,2019-12-19 18:34:00,847 Chestnut St, Atlanta,GA,30301 +309076,USB-C Charging Cable,1,11.95,2019-12-04 01:15:00,185 2nd St, San Francisco,CA,94016 +309077,27in 4K Gaming Monitor,1,389.99,2019-12-18 10:32:00,727 Park St, Los Angeles,CA,90001 +309078,27in 4K Gaming Monitor,1,389.99,2019-12-31 21:06:00,701 12th St, Boston,MA,02215 +309079,Apple Airpods Headphones,1,150.0,2019-12-19 14:07:00,826 Jefferson St, Portland,OR,97035 +309080,Google Phone,1,600.0,2019-12-04 14:52:00,898 Dogwood St, Boston,MA,02215 +309081,AAA Batteries (4-pack),1,2.99,2019-12-08 17:14:00,844 Elm St, Dallas,TX,75001 +309082,USB-C Charging Cable,1,11.95,2019-12-12 20:28:00,947 Adams St, Seattle,WA,98101 +309083,Apple Airpods Headphones,1,150.0,2019-12-24 19:02:00,53 Hickory St, San Francisco,CA,94016 +309084,ThinkPad Laptop,1,999.99,2019-12-13 00:37:00,175 10th St, New York City,NY,10001 +309085,AA Batteries (4-pack),1,3.84,2019-12-08 11:16:00,85 Cherry St, Atlanta,GA,30301 +309086,Wired Headphones,1,11.99,2019-12-13 01:52:00,560 1st St, San Francisco,CA,94016 +309087,Wired Headphones,1,11.99,2019-12-30 19:25:00,511 Willow St, Los Angeles,CA,90001 +309088,Bose SoundSport Headphones,1,99.99,2019-12-06 19:03:00,326 1st St, Boston,MA,02215 +309089,AAA Batteries (4-pack),1,2.99,2019-12-17 18:52:00,977 South St, Boston,MA,02215 +309090,USB-C Charging Cable,1,11.95,2019-12-26 11:52:00,750 Johnson St, Los Angeles,CA,90001 +309091,20in Monitor,1,109.99,2019-12-09 19:01:00,533 Cherry St, San Francisco,CA,94016 +309092,AA Batteries (4-pack),2,3.84,2019-12-23 20:06:00,887 5th St, Austin,TX,73301 +309093,Apple Airpods Headphones,1,150.0,2019-12-29 22:23:00,293 Hickory St, Los Angeles,CA,90001 +309094,iPhone,1,700.0,2019-12-04 22:25:00,790 Lake St, Seattle,WA,98101 +309095,USB-C Charging Cable,2,11.95,2019-12-24 11:21:00,668 Pine St, San Francisco,CA,94016 +309096,Wired Headphones,1,11.99,2019-12-17 09:59:00,810 Wilson St, Los Angeles,CA,90001 +309097,Lightning Charging Cable,1,14.95,2019-12-11 19:12:00,637 Hill St, New York City,NY,10001 +309098,Google Phone,1,600.0,2019-12-13 08:13:00,9 Lakeview St, San Francisco,CA,94016 +309098,USB-C Charging Cable,1,11.95,2019-12-13 08:13:00,9 Lakeview St, San Francisco,CA,94016 +309098,Wired Headphones,1,11.99,2019-12-13 08:13:00,9 Lakeview St, San Francisco,CA,94016 +309099,Wired Headphones,1,11.99,2019-12-07 11:12:00,335 4th St, Los Angeles,CA,90001 +309100,USB-C Charging Cable,3,11.95,2019-12-11 20:11:00,783 Chestnut St, Seattle,WA,98101 +309101,Lightning Charging Cable,1,14.95,2019-12-20 09:00:00,664 Forest St, San Francisco,CA,94016 +309102,Lightning Charging Cable,1,14.95,2019-12-18 19:41:00,138 9th St, Austin,TX,73301 +309103,34in Ultrawide Monitor,1,379.99,2019-12-15 08:16:00,782 Maple St, San Francisco,CA,94016 +309104,Wired Headphones,1,11.99,2019-12-16 23:44:00,713 Pine St, New York City,NY,10001 +309105,Wired Headphones,2,11.99,2019-12-23 17:27:00,558 Johnson St, Los Angeles,CA,90001 +309106,Wired Headphones,1,11.99,2019-12-16 22:39:00,879 Lake St, San Francisco,CA,94016 +309107,ThinkPad Laptop,1,999.99,2019-12-27 05:56:00,729 Cedar St, Boston,MA,02215 +309108,27in FHD Monitor,1,149.99,2019-12-03 13:25:00,561 Center St, Seattle,WA,98101 +309109,Google Phone,1,600.0,2019-12-28 01:46:00,44 Lincoln St, Seattle,WA,98101 +309110,USB-C Charging Cable,2,11.95,2019-12-03 07:13:00,625 11th St, Los Angeles,CA,90001 +309111,AAA Batteries (4-pack),1,2.99,2019-12-01 17:05:00,792 8th St, San Francisco,CA,94016 +309112,AA Batteries (4-pack),1,3.84,2019-12-07 08:28:00,316 1st St, Boston,MA,02215 +309113,AA Batteries (4-pack),1,3.84,2019-12-19 10:59:00,754 Highland St, San Francisco,CA,94016 +309114,Lightning Charging Cable,1,14.95,2019-12-12 07:49:00,439 Cedar St, Atlanta,GA,30301 +309115,Wired Headphones,2,11.99,2019-12-21 12:36:00,90 River St, Seattle,WA,98101 +309116,USB-C Charging Cable,1,11.95,2019-12-06 20:41:00,238 Maple St, Boston,MA,02215 +309117,Wired Headphones,1,11.99,2019-12-17 01:54:00,806 7th St, Dallas,TX,75001 +309118,Bose SoundSport Headphones,1,99.99,2019-12-05 00:04:00,190 6th St, New York City,NY,10001 +309119,AAA Batteries (4-pack),3,2.99,2019-12-25 14:11:00,543 7th St, San Francisco,CA,94016 +309120,Lightning Charging Cable,1,14.95,2019-12-28 07:42:00,805 Elm St, Boston,MA,02215 +309121,Wired Headphones,1,11.99,2019-12-30 22:33:00,903 Elm St, San Francisco,CA,94016 +309122,27in 4K Gaming Monitor,1,389.99,2019-12-09 18:42:00,474 Sunset St, San Francisco,CA,94016 +309123,AA Batteries (4-pack),1,3.84,2019-12-20 11:01:00,310 Washington St, San Francisco,CA,94016 +309124,Bose SoundSport Headphones,1,99.99,2019-12-16 21:16:00,737 Sunset St, San Francisco,CA,94016 +309125,Wired Headphones,1,11.99,2019-12-19 21:16:00,292 6th St, New York City,NY,10001 +309126,Lightning Charging Cable,1,14.95,2019-12-03 23:33:00,533 Park St, Dallas,TX,75001 +309127,27in 4K Gaming Monitor,1,389.99,2019-12-25 15:05:00,980 Johnson St, New York City,NY,10001 +309128,USB-C Charging Cable,1,11.95,2019-12-19 16:07:00,560 Maple St, Austin,TX,73301 +309129,27in FHD Monitor,1,149.99,2019-12-22 10:32:00,434 Cedar St, Los Angeles,CA,90001 +309130,AA Batteries (4-pack),1,3.84,2019-12-22 11:48:00,535 Meadow St, Los Angeles,CA,90001 +309131,Lightning Charging Cable,1,14.95,2019-12-07 19:16:00,750 9th St, San Francisco,CA,94016 +309132,34in Ultrawide Monitor,1,379.99,2019-12-13 09:46:00,765 Johnson St, Boston,MA,02215 +309133,AA Batteries (4-pack),1,3.84,2019-12-21 13:15:00,273 8th St, San Francisco,CA,94016 +309134,Wired Headphones,1,11.99,2019-12-13 21:11:00,393 Jefferson St, Dallas,TX,75001 +309135,Macbook Pro Laptop,1,1700.0,2019-12-07 01:30:00,995 Lake St, Dallas,TX,75001 +309136,Vareebadd Phone,1,400.0,2019-12-10 16:18:00,440 11th St, Dallas,TX,75001 +309137,AA Batteries (4-pack),1,3.84,2019-12-13 15:19:00,639 North St, New York City,NY,10001 +309138,AA Batteries (4-pack),1,3.84,2019-12-05 22:12:00,472 Lake St, New York City,NY,10001 +309139,ThinkPad Laptop,1,999.99,2019-12-08 17:51:00,807 River St, Boston,MA,02215 +309140,USB-C Charging Cable,1,11.95,2019-12-04 19:27:00,782 13th St, Austin,TX,73301 +309141,ThinkPad Laptop,1,999.99,2019-12-31 13:51:00,564 Wilson St, Atlanta,GA,30301 +309141,Bose SoundSport Headphones,1,99.99,2019-12-31 13:51:00,564 Wilson St, Atlanta,GA,30301 +309142,AAA Batteries (4-pack),1,2.99,2019-12-15 13:31:00,430 River St, Dallas,TX,75001 +309143,Vareebadd Phone,1,400.0,2019-12-10 15:28:00,422 Pine St, Boston,MA,02215 +309144,Wired Headphones,1,11.99,2019-12-27 17:19:00,522 Adams St, Seattle,WA,98101 +309145,AAA Batteries (4-pack),1,2.99,2019-12-10 13:19:00,388 1st St, San Francisco,CA,94016 +309146,27in FHD Monitor,1,149.99,2019-12-28 21:10:00,741 Walnut St, New York City,NY,10001 +309147,AA Batteries (4-pack),1,3.84,2019-12-13 13:48:00,96 12th St, Los Angeles,CA,90001 +309148,Bose SoundSport Headphones,1,99.99,2019-12-12 20:22:00,168 Chestnut St, San Francisco,CA,94016 +309149,USB-C Charging Cable,1,11.95,2019-12-21 21:01:00,875 Hill St, Los Angeles,CA,90001 +309150,Macbook Pro Laptop,1,1700.0,2019-12-06 20:07:00,582 West St, Austin,TX,73301 +309151,Lightning Charging Cable,1,14.95,2019-12-31 15:02:00,619 Washington St, Los Angeles,CA,90001 +309152,Lightning Charging Cable,1,14.95,2019-12-18 21:06:00,421 Willow St, New York City,NY,10001 +309153,AAA Batteries (4-pack),3,2.99,2019-12-31 01:46:00,110 Jackson St, New York City,NY,10001 +309154,iPhone,1,700.0,2019-12-02 17:35:00,121 14th St, Dallas,TX,75001 +309154,Lightning Charging Cable,1,14.95,2019-12-02 17:35:00,121 14th St, Dallas,TX,75001 +309155,Macbook Pro Laptop,1,1700.0,2019-12-29 21:22:00,208 13th St, San Francisco,CA,94016 +309156,Lightning Charging Cable,1,14.95,2019-12-29 14:10:00,720 Hickory St, Dallas,TX,75001 +309157,Lightning Charging Cable,1,14.95,2019-12-16 19:31:00,993 Washington St, New York City,NY,10001 +309158,Apple Airpods Headphones,1,150.0,2019-12-06 17:17:00,8 Maple St, Los Angeles,CA,90001 +309159,34in Ultrawide Monitor,1,379.99,2019-12-25 21:02:00,529 Elm St, San Francisco,CA,94016 +309160,Wired Headphones,2,11.99,2019-12-28 11:51:00,476 7th St, Los Angeles,CA,90001 +309161,Lightning Charging Cable,1,14.95,2019-12-03 20:02:00,343 Dogwood St, Los Angeles,CA,90001 +309162,Wired Headphones,1,11.99,2019-12-08 23:01:00,780 Forest St, Los Angeles,CA,90001 +309163,USB-C Charging Cable,1,11.95,2019-12-05 19:41:00,490 7th St, Atlanta,GA,30301 +309164,iPhone,1,700.0,2019-12-16 16:59:00,890 Cherry St, Dallas,TX,75001 +309165,Wired Headphones,1,11.99,2019-12-23 10:24:00,885 Hill St, New York City,NY,10001 +309166,Wired Headphones,1,11.99,2019-12-03 13:48:00,758 Jefferson St, New York City,NY,10001 +309167,Flatscreen TV,1,300.0,2019-12-15 22:58:00,203 8th St, Los Angeles,CA,90001 +309168,Wired Headphones,1,11.99,2019-12-23 11:12:00,626 Center St, San Francisco,CA,94016 +309169,Apple Airpods Headphones,1,150.0,2019-12-15 19:46:00,728 Chestnut St, Atlanta,GA,30301 +309170,20in Monitor,1,109.99,2019-12-09 21:28:00,60 Hill St, New York City,NY,10001 +309171,AA Batteries (4-pack),2,3.84,2019-12-26 10:45:00,222 Lincoln St, Boston,MA,02215 +309172,AAA Batteries (4-pack),1,2.99,2019-12-03 16:21:00,514 13th St, Seattle,WA,98101 +309173,34in Ultrawide Monitor,1,379.99,2019-12-26 18:01:00,868 Forest St, Los Angeles,CA,90001 +309174,AA Batteries (4-pack),1,3.84,2019-12-12 00:21:00,218 Adams St, Los Angeles,CA,90001 +309175,Macbook Pro Laptop,1,1700.0,2019-12-08 17:18:00,886 Wilson St, Dallas,TX,75001 +309176,Lightning Charging Cable,1,14.95,2019-12-18 12:06:00,110 Washington St, Atlanta,GA,30301 +309177,Wired Headphones,1,11.99,2019-12-07 10:54:00,448 7th St, Boston,MA,02215 +309178,34in Ultrawide Monitor,1,379.99,2019-12-30 08:56:00,29 2nd St, Los Angeles,CA,90001 +309179,34in Ultrawide Monitor,1,379.99,2019-12-27 06:46:00,473 Lakeview St, San Francisco,CA,94016 +309180,AAA Batteries (4-pack),2,2.99,2019-12-03 14:07:00,861 North St, Seattle,WA,98101 +309181,AAA Batteries (4-pack),2,2.99,2019-12-01 23:03:00,404 Maple St, San Francisco,CA,94016 +309182,AAA Batteries (4-pack),2,2.99,2019-12-17 07:00:00,627 Park St, Boston,MA,02215 +309183,iPhone,1,700.0,2019-12-08 12:04:00,242 Highland St, Seattle,WA,98101 +309183,Apple Airpods Headphones,1,150.0,2019-12-08 12:04:00,242 Highland St, Seattle,WA,98101 +309184,27in FHD Monitor,1,149.99,2019-12-20 18:51:00,984 Lakeview St, San Francisco,CA,94016 +309185,AA Batteries (4-pack),1,3.84,2019-12-26 11:21:00,703 Meadow St, Seattle,WA,98101 +309186,AAA Batteries (4-pack),1,2.99,2019-12-04 11:24:00,584 Hickory St, Austin,TX,73301 +309187,USB-C Charging Cable,1,11.95,2019-12-15 15:33:00,403 Wilson St, Boston,MA,02215 +309188,AAA Batteries (4-pack),1,2.99,2019-12-17 12:00:00,331 Spruce St, San Francisco,CA,94016 +309189,AA Batteries (4-pack),2,3.84,2019-12-25 23:25:00,335 Wilson St, Seattle,WA,98101 +309190,27in FHD Monitor,1,149.99,2019-12-28 21:13:00,744 West St, Atlanta,GA,30301 +309191,Apple Airpods Headphones,1,150.0,2019-12-12 16:22:00,953 Center St, New York City,NY,10001 +309192,Apple Airpods Headphones,1,150.0,2019-12-29 09:48:00,337 14th St, Seattle,WA,98101 +309193,AA Batteries (4-pack),2,3.84,2019-12-22 00:30:00,807 6th St, Los Angeles,CA,90001 +309194,Apple Airpods Headphones,1,150.0,2019-12-11 21:37:00,916 9th St, Dallas,TX,75001 +309195,Lightning Charging Cable,1,14.95,2019-12-18 08:12:00,984 11th St, Austin,TX,73301 +309196,Flatscreen TV,1,300.0,2019-12-27 13:23:00,175 Sunset St, New York City,NY,10001 +309197,Lightning Charging Cable,1,14.95,2019-12-18 20:00:00,685 Park St, San Francisco,CA,94016 +309198,USB-C Charging Cable,1,11.95,2019-12-22 20:13:00,85 Sunset St, Seattle,WA,98101 +309199,AA Batteries (4-pack),1,3.84,2019-12-01 09:45:00,304 2nd St, Los Angeles,CA,90001 +309200,Google Phone,1,600.0,2019-12-14 19:12:00,626 Walnut St, New York City,NY,10001 +309201,USB-C Charging Cable,1,11.95,2019-12-27 12:27:00,611 Park St, Portland,OR,97035 +309202,20in Monitor,1,109.99,2019-12-30 18:00:00,19 11th St, Atlanta,GA,30301 +309203,Bose SoundSport Headphones,1,99.99,2019-12-08 21:48:00,399 North St, New York City,NY,10001 +309204,USB-C Charging Cable,1,11.95,2019-12-26 07:43:00,74 North St, Boston,MA,02215 +309204,Lightning Charging Cable,1,14.95,2019-12-26 07:43:00,74 North St, Boston,MA,02215 +309205,Flatscreen TV,1,300.0,2019-12-23 18:13:00,783 8th St, San Francisco,CA,94016 +309206,AAA Batteries (4-pack),1,2.99,2019-12-09 14:31:00,292 Adams St, New York City,NY,10001 +309207,AAA Batteries (4-pack),2,2.99,2019-12-31 18:26:00,703 Lincoln St, Los Angeles,CA,90001 +309208,Flatscreen TV,1,300.0,2019-12-17 17:58:00,507 Sunset St, San Francisco,CA,94016 +309209,AA Batteries (4-pack),1,3.84,2019-12-23 22:03:00,301 Cedar St, Boston,MA,02215 +309210,Apple Airpods Headphones,1,150.0,2019-12-13 15:09:00,281 Sunset St, Los Angeles,CA,90001 +309211,USB-C Charging Cable,1,11.95,2019-12-28 20:17:00,942 Ridge St, Seattle,WA,98101 +309212,USB-C Charging Cable,1,11.95,2019-12-17 09:30:00,91 Dogwood St, Seattle,WA,98101 +309213,Google Phone,1,600.0,2019-12-01 03:10:00,694 11th St, Portland,OR,97035 +309214,Wired Headphones,1,11.99,2019-12-17 13:37:00,883 1st St, Seattle,WA,98101 +309215,iPhone,1,700.0,2019-12-20 07:56:00,963 Elm St, San Francisco,CA,94016 +309216,Apple Airpods Headphones,1,150.0,2019-12-26 11:26:00,408 Hill St, Los Angeles,CA,90001 +309217,AA Batteries (4-pack),1,3.84,2019-12-22 15:25:00,820 8th St, Dallas,TX,75001 +309218,Lightning Charging Cable,1,14.95,2019-12-31 13:24:00,512 7th St, Austin,TX,73301 +309219,ThinkPad Laptop,1,999.99,2019-12-02 12:40:00,549 Hill St, Dallas,TX,75001 +309220,Apple Airpods Headphones,1,150.0,2019-12-30 19:33:00,903 Forest St, San Francisco,CA,94016 +309221,USB-C Charging Cable,1,11.95,2019-12-12 23:19:00,443 Hill St, Austin,TX,73301 +309222,34in Ultrawide Monitor,1,379.99,2019-12-24 12:04:00,924 7th St, New York City,NY,10001 +309223,Vareebadd Phone,1,400.0,2019-12-01 20:46:00,543 Cedar St, Los Angeles,CA,90001 +309224,AA Batteries (4-pack),2,3.84,2019-12-02 09:59:00,632 Lakeview St, Atlanta,GA,30301 +309225,Bose SoundSport Headphones,1,99.99,2019-12-21 15:56:00,408 Walnut St, Los Angeles,CA,90001 +309226,AAA Batteries (4-pack),1,2.99,2019-12-03 19:48:00,926 8th St, New York City,NY,10001 +309227,Apple Airpods Headphones,1,150.0,2019-12-23 17:43:00,804 13th St, Portland,OR,97035 +309228,iPhone,1,700.0,2019-12-10 18:56:00,79 Willow St, Portland,OR,97035 +309228,Apple Airpods Headphones,1,150.0,2019-12-10 18:56:00,79 Willow St, Portland,OR,97035 +309229,LG Dryer,1,600.0,2019-12-24 12:24:00,482 7th St, Dallas,TX,75001 +309230,AAA Batteries (4-pack),1,2.99,2019-12-01 09:01:00,99 1st St, San Francisco,CA,94016 +309231,USB-C Charging Cable,1,11.95,2019-12-27 13:32:00,709 4th St, San Francisco,CA,94016 +309232,Bose SoundSport Headphones,1,99.99,2019-12-10 20:01:00,558 Jefferson St, Los Angeles,CA,90001 +309233,Lightning Charging Cable,1,14.95,2019-12-22 11:17:00,583 Hill St, Austin,TX,73301 +309234,AAA Batteries (4-pack),1,2.99,2019-12-05 19:46:00,982 Spruce St, Portland,ME,04101 +309235,Wired Headphones,1,11.99,2019-12-03 17:15:00,557 Cedar St, Los Angeles,CA,90001 +309236,Wired Headphones,1,11.99,2019-12-27 17:15:00,773 13th St, Seattle,WA,98101 +309237,34in Ultrawide Monitor,1,379.99,2019-12-29 10:59:00,814 Maple St, Los Angeles,CA,90001 +309238,Macbook Pro Laptop,1,1700.0,2019-12-01 20:51:00,642 Elm St, Atlanta,GA,30301 +309239,AA Batteries (4-pack),1,3.84,2019-12-10 12:38:00,479 West St, Dallas,TX,75001 +309240,USB-C Charging Cable,2,11.95,2019-12-28 13:35:00,795 5th St, Boston,MA,02215 +309241,Lightning Charging Cable,1,14.95,2019-12-01 06:53:00,97 West St, Boston,MA,02215 +309242,27in 4K Gaming Monitor,1,389.99,2019-12-16 23:32:00,971 North St, New York City,NY,10001 +309243,Bose SoundSport Headphones,1,99.99,2019-12-13 08:22:00,872 Wilson St, Portland,OR,97035 +309244,Wired Headphones,1,11.99,2019-12-13 20:53:00,508 Lakeview St, Los Angeles,CA,90001 +309245,34in Ultrawide Monitor,1,379.99,2019-12-04 23:48:00,907 Jackson St, Seattle,WA,98101 +309246,20in Monitor,1,109.99,2019-12-25 09:48:00,340 Main St, Atlanta,GA,30301 +309247,Google Phone,1,600.0,2019-12-14 20:41:00,337 Park St, Austin,TX,73301 +309248,USB-C Charging Cable,1,11.95,2019-12-22 16:33:00,671 Dogwood St, Atlanta,GA,30301 +309249,34in Ultrawide Monitor,1,379.99,2019-12-12 01:11:00,105 Meadow St, San Francisco,CA,94016 +309250,34in Ultrawide Monitor,1,379.99,2019-12-21 10:14:00,435 Jefferson St, Atlanta,GA,30301 +309251,ThinkPad Laptop,1,999.99,2019-12-21 19:06:00,324 Wilson St, New York City,NY,10001 +309252,Wired Headphones,1,11.99,2019-12-27 10:42:00,219 2nd St, Portland,OR,97035 +309253,Lightning Charging Cable,1,14.95,2019-12-11 13:03:00,17 Lake St, Austin,TX,73301 +309254,Lightning Charging Cable,1,14.95,2019-12-19 12:48:00,230 Jefferson St, New York City,NY,10001 +309255,USB-C Charging Cable,1,11.95,2019-12-29 21:09:00,387 8th St, Seattle,WA,98101 +309256,Apple Airpods Headphones,1,150.0,2019-12-07 13:06:00,89 14th St, Boston,MA,02215 +309257,AAA Batteries (4-pack),1,2.99,2019-12-03 17:15:00,276 North St, Los Angeles,CA,90001 +309258,AAA Batteries (4-pack),2,2.99,2019-12-18 17:49:00,723 Cedar St, New York City,NY,10001 +309259,AAA Batteries (4-pack),1,2.99,2019-12-14 10:39:00,835 5th St, Portland,OR,97035 +309260,AAA Batteries (4-pack),1,2.99,2019-12-13 12:14:00,690 12th St, New York City,NY,10001 +309261,27in 4K Gaming Monitor,1,389.99,2019-12-05 18:30:00,973 Adams St, San Francisco,CA,94016 +309262,AA Batteries (4-pack),1,3.84,2019-12-30 18:18:00,334 Sunset St, Boston,MA,02215 +309263,Bose SoundSport Headphones,1,99.99,2019-12-10 12:01:00,978 Lincoln St, Atlanta,GA,30301 +309264,Apple Airpods Headphones,1,150.0,2019-12-22 09:16:00,918 Meadow St, San Francisco,CA,94016 +309265,Vareebadd Phone,1,400.0,2019-12-03 12:26:00,594 6th St, San Francisco,CA,94016 +309266,iPhone,1,700.0,2019-12-04 18:03:00,276 1st St, Dallas,TX,75001 +309267,Apple Airpods Headphones,1,150.0,2019-12-24 12:23:00,712 Meadow St, Portland,OR,97035 +309268,Lightning Charging Cable,1,14.95,2019-12-17 18:14:00,391 10th St, Portland,OR,97035 +309269,USB-C Charging Cable,1,11.95,2019-12-11 07:27:00,386 Ridge St, Portland,OR,97035 +309270,AAA Batteries (4-pack),1,2.99,2019-12-12 20:25:00,414 14th St, New York City,NY,10001 +309271,AA Batteries (4-pack),1,3.84,2019-12-16 17:38:00,520 4th St, Atlanta,GA,30301 +309272,Bose SoundSport Headphones,1,99.99,2019-12-16 08:50:00,839 5th St, Dallas,TX,75001 +309273,AA Batteries (4-pack),1,3.84,2019-12-13 21:44:00,469 Hill St, New York City,NY,10001 +309274,AAA Batteries (4-pack),1,2.99,2019-12-06 10:46:00,144 1st St, San Francisco,CA,94016 +309275,AAA Batteries (4-pack),2,2.99,2019-12-30 22:11:00,204 Main St, San Francisco,CA,94016 +309276,Wired Headphones,1,11.99,2019-12-25 18:31:00,429 10th St, Dallas,TX,75001 +309277,AAA Batteries (4-pack),2,2.99,2019-12-07 09:53:00,54 Washington St, Boston,MA,02215 +309278,iPhone,1,700.0,2019-12-19 17:15:00,701 Center St, Portland,OR,97035 +309279,Apple Airpods Headphones,1,150.0,2019-12-04 08:50:00,717 Main St, Portland,OR,97035 +309280,USB-C Charging Cable,1,11.95,2019-12-12 10:59:00,977 Jackson St, Los Angeles,CA,90001 +309281,Macbook Pro Laptop,1,1700.0,2019-12-16 19:59:00,944 13th St, Atlanta,GA,30301 +309282,Apple Airpods Headphones,1,150.0,2019-12-08 11:48:00,120 Pine St, San Francisco,CA,94016 +309283,AAA Batteries (4-pack),1,2.99,2019-12-19 13:05:00,463 12th St, San Francisco,CA,94016 +309284,Lightning Charging Cable,1,14.95,2019-12-25 13:41:00,242 2nd St, Los Angeles,CA,90001 +309284,Wired Headphones,1,11.99,2019-12-25 13:41:00,242 2nd St, Los Angeles,CA,90001 +309285,Wired Headphones,2,11.99,2019-12-21 16:19:00,215 9th St, Boston,MA,02215 +309286,Apple Airpods Headphones,1,150.0,2019-12-24 09:10:00,241 Sunset St, Portland,OR,97035 +309287,USB-C Charging Cable,1,11.95,2019-12-08 17:40:00,93 Chestnut St, San Francisco,CA,94016 +309288,AA Batteries (4-pack),1,3.84,2019-12-30 16:55:00,363 Adams St, New York City,NY,10001 +309289,Bose SoundSport Headphones,1,99.99,2019-12-13 09:06:00,631 Main St, Boston,MA,02215 +309290,Apple Airpods Headphones,1,150.0,2019-12-21 19:02:00,944 7th St, Seattle,WA,98101 +309291,Macbook Pro Laptop,1,1700.0,2019-12-20 01:06:00,405 Cherry St, New York City,NY,10001 +309292,AA Batteries (4-pack),1,3.84,2019-12-10 16:53:00,113 2nd St, Atlanta,GA,30301 +309293,Bose SoundSport Headphones,1,99.99,2019-12-14 11:01:00,349 Lincoln St, New York City,NY,10001 +309294,USB-C Charging Cable,1,11.95,2019-12-29 22:52:00,526 Church St, Boston,MA,02215 +309295,27in 4K Gaming Monitor,1,389.99,2019-12-18 10:40:00,695 Ridge St, Boston,MA,02215 +309296,27in 4K Gaming Monitor,1,389.99,2019-12-18 18:54:00,824 Adams St, Portland,ME,04101 +309297,Bose SoundSport Headphones,1,99.99,2019-12-23 21:09:00,542 Wilson St, Dallas,TX,75001 +309298,Bose SoundSport Headphones,1,99.99,2019-12-29 07:04:00,205 Hickory St, San Francisco,CA,94016 +309299,Lightning Charging Cable,1,14.95,2019-12-11 00:21:00,773 Walnut St, San Francisco,CA,94016 +309300,Flatscreen TV,1,300.0,2019-12-25 19:14:00,504 Meadow St, San Francisco,CA,94016 +309301,Lightning Charging Cable,1,14.95,2019-12-30 08:48:00,788 Madison St, Seattle,WA,98101 +309302,USB-C Charging Cable,1,11.95,2019-12-11 14:31:00,729 11th St, Portland,OR,97035 +309303,USB-C Charging Cable,1,11.95,2019-12-21 10:49:00,621 7th St, San Francisco,CA,94016 +309304,Bose SoundSport Headphones,1,99.99,2019-12-22 00:45:00,934 Hill St, Los Angeles,CA,90001 +309305,Apple Airpods Headphones,1,150.0,2019-12-02 19:53:00,750 Forest St, Los Angeles,CA,90001 +309306,USB-C Charging Cable,1,11.95,2019-12-27 21:13:00,537 Jackson St, Boston,MA,02215 +309307,Wired Headphones,1,11.99,2019-12-22 10:50:00,724 Cherry St, San Francisco,CA,94016 +309308,AAA Batteries (4-pack),1,2.99,2019-12-08 23:50:00,412 Jackson St, Atlanta,GA,30301 +309309,iPhone,1,700.0,2019-12-21 08:48:00,989 Chestnut St, Seattle,WA,98101 +309310,Bose SoundSport Headphones,1,99.99,2019-12-27 14:57:00,815 14th St, New York City,NY,10001 +309311,34in Ultrawide Monitor,1,379.99,2019-12-25 19:03:00,90 West St, Dallas,TX,75001 +309312,27in FHD Monitor,1,149.99,2019-12-17 21:38:00,581 River St, Boston,MA,02215 +309313,AA Batteries (4-pack),1,3.84,2019-12-07 08:11:00,197 7th St, Dallas,TX,75001 +309314,Flatscreen TV,1,300.0,2019-12-17 15:11:00,695 North St, San Francisco,CA,94016 +309315,Wired Headphones,1,11.99,2019-12-29 19:14:00,363 Forest St, San Francisco,CA,94016 +309316,Google Phone,1,600.0,2019-12-28 11:26:00,504 2nd St, San Francisco,CA,94016 +309317,AAA Batteries (4-pack),3,2.99,2019-12-26 06:42:00,120 6th St, New York City,NY,10001 +309318,USB-C Charging Cable,2,11.95,2019-12-31 18:47:00,85 11th St, New York City,NY,10001 +309319,Flatscreen TV,1,300.0,2019-12-18 15:00:00,202 11th St, New York City,NY,10001 +309320,AAA Batteries (4-pack),1,2.99,2019-12-31 15:03:00,618 1st St, San Francisco,CA,94016 +309321,AA Batteries (4-pack),1,3.84,2019-12-30 12:53:00,941 Wilson St, Los Angeles,CA,90001 +309322,Google Phone,1,600.0,2019-12-30 18:40:00,973 8th St, Dallas,TX,75001 +309323,AAA Batteries (4-pack),1,2.99,2019-12-21 23:27:00,866 Hickory St, Dallas,TX,75001 +309324,Flatscreen TV,1,300.0,2019-12-29 19:31:00,565 Chestnut St, Atlanta,GA,30301 +309325,AA Batteries (4-pack),1,3.84,2019-12-08 10:59:00,241 West St, Seattle,WA,98101 +309326,AAA Batteries (4-pack),1,2.99,2019-12-01 14:36:00,450 Church St, San Francisco,CA,94016 +309327,27in 4K Gaming Monitor,1,389.99,2019-12-10 06:27:00,387 8th St, Austin,TX,73301 +309328,Lightning Charging Cable,1,14.95,2019-12-04 17:12:00,360 Center St, San Francisco,CA,94016 +309329,34in Ultrawide Monitor,1,379.99,2019-12-14 08:52:00,853 River St, San Francisco,CA,94016 +309330,27in 4K Gaming Monitor,1,389.99,2019-12-30 05:21:00,297 Maple St, New York City,NY,10001 +309331,34in Ultrawide Monitor,1,379.99,2019-12-09 09:10:00,634 2nd St, Portland,OR,97035 +309332,AAA Batteries (4-pack),1,2.99,2019-12-07 18:50:00,649 North St, Los Angeles,CA,90001 +309333,Wired Headphones,1,11.99,2019-12-13 16:28:00,233 9th St, San Francisco,CA,94016 +309334,Wired Headphones,1,11.99,2019-12-20 15:14:00,318 2nd St, Seattle,WA,98101 +309335,Wired Headphones,1,11.99,2019-12-31 18:57:00,165 Wilson St, San Francisco,CA,94016 +309336,Lightning Charging Cable,1,14.95,2019-12-29 20:53:00,323 Maple St, New York City,NY,10001 +309337,LG Dryer,1,600.0,2019-12-17 00:45:00,387 West St, San Francisco,CA,94016 +309338,Wired Headphones,1,11.99,2019-12-03 10:52:00,653 Jefferson St, Atlanta,GA,30301 +309339,USB-C Charging Cable,1,11.95,2019-12-02 10:55:00,781 Highland St, Boston,MA,02215 +309340,Bose SoundSport Headphones,1,99.99,2019-12-18 11:54:00,680 Madison St, San Francisco,CA,94016 +309341,AA Batteries (4-pack),1,3.84,2019-12-23 17:59:00,85 Church St, San Francisco,CA,94016 +309342,27in FHD Monitor,1,149.99,2019-12-18 13:14:00,358 13th St, San Francisco,CA,94016 +309343,Lightning Charging Cable,1,14.95,2019-12-01 08:47:00,596 Jefferson St, Boston,MA,02215 +309343,USB-C Charging Cable,1,11.95,2019-12-01 08:47:00,596 Jefferson St, Boston,MA,02215 +309344,Lightning Charging Cable,1,14.95,2019-12-15 22:45:00,411 Jackson St, Portland,OR,97035 +309345,Bose SoundSport Headphones,1,99.99,2019-12-28 10:05:00,445 Madison St, San Francisco,CA,94016 +309346,USB-C Charging Cable,1,11.95,2019-12-26 21:39:00,121 Meadow St, San Francisco,CA,94016 +309347,iPhone,1,700.0,2019-12-24 13:38:00,967 Dogwood St, Dallas,TX,75001 +309348,AAA Batteries (4-pack),2,2.99,2019-12-12 20:43:00,968 Lakeview St, Los Angeles,CA,90001 +309349,Lightning Charging Cable,2,14.95,2019-12-24 10:36:00,120 Hill St, Dallas,TX,75001 +309350,Lightning Charging Cable,1,14.95,2019-12-18 17:26:00,638 9th St, Los Angeles,CA,90001 +309351,20in Monitor,1,109.99,2019-12-01 20:55:00,690 1st St, Dallas,TX,75001 +309352,Apple Airpods Headphones,1,150.0,2019-12-28 21:23:00,403 South St, Portland,OR,97035 +309353,34in Ultrawide Monitor,1,379.99,2019-12-23 01:44:00,644 West St, Los Angeles,CA,90001 +309354,Apple Airpods Headphones,1,150.0,2019-12-07 15:26:00,271 7th St, New York City,NY,10001 +309355,Google Phone,1,600.0,2019-12-25 17:17:00,554 Main St, San Francisco,CA,94016 +309356,Lightning Charging Cable,1,14.95,2019-12-12 20:40:00,360 Church St, Austin,TX,73301 +309357,AAA Batteries (4-pack),1,2.99,2019-12-29 10:36:00,226 Madison St, Austin,TX,73301 +309358,Apple Airpods Headphones,1,150.0,2019-12-09 09:27:00,687 River St, Seattle,WA,98101 +309359,Lightning Charging Cable,1,14.95,2019-12-24 21:36:00,836 Center St, Atlanta,GA,30301 +309360,34in Ultrawide Monitor,1,379.99,2019-12-18 10:03:00,111 13th St, San Francisco,CA,94016 +309361,AA Batteries (4-pack),1,3.84,2019-12-27 20:38:00,305 Pine St, Austin,TX,73301 +309362,AAA Batteries (4-pack),1,2.99,2019-12-14 19:24:00,234 Highland St, Dallas,TX,75001 +309363,USB-C Charging Cable,1,11.95,2019-12-28 18:15:00,746 Hickory St, Austin,TX,73301 +309364,AA Batteries (4-pack),1,3.84,2019-12-22 20:58:00,941 West St, Seattle,WA,98101 +309365,Apple Airpods Headphones,1,150.0,2019-12-12 09:14:00,224 Elm St, Portland,OR,97035 +309366,Wired Headphones,1,11.99,2019-12-31 23:25:00,328 Washington St, Portland,OR,97035 +309367,27in FHD Monitor,1,149.99,2019-12-01 15:53:00,658 13th St, Los Angeles,CA,90001 +309368,Bose SoundSport Headphones,1,99.99,2019-12-30 15:39:00,415 7th St, New York City,NY,10001 +309369,Google Phone,1,600.0,2019-12-18 20:57:00,640 Walnut St, Seattle,WA,98101 +309370,Apple Airpods Headphones,1,150.0,2019-12-04 12:15:00,562 2nd St, Boston,MA,02215 +309371,27in FHD Monitor,1,149.99,2019-12-04 08:57:00,733 Sunset St, San Francisco,CA,94016 +309372,Lightning Charging Cable,1,14.95,2019-12-12 12:24:00,208 7th St, Boston,MA,02215 +309373,LG Dryer,1,600.0,2019-12-01 16:00:00,372 6th St, Portland,OR,97035 +309374,iPhone,1,700.0,2019-12-21 10:47:00,626 1st St, San Francisco,CA,94016 +309375,ThinkPad Laptop,1,999.99,2019-12-17 08:49:00,169 West St, Atlanta,GA,30301 +309376,Lightning Charging Cable,1,14.95,2019-12-22 16:25:00,133 13th St, San Francisco,CA,94016 +309377,LG Dryer,1,600.0,2019-12-08 00:15:00,928 Lakeview St, Atlanta,GA,30301 +309378,AA Batteries (4-pack),1,3.84,2019-12-26 16:40:00,644 Cedar St, Los Angeles,CA,90001 +309379,USB-C Charging Cable,2,11.95,2019-12-25 18:42:00,525 Sunset St, San Francisco,CA,94016 +309380,AAA Batteries (4-pack),1,2.99,2019-12-27 15:40:00,578 13th St, Los Angeles,CA,90001 +309381,27in 4K Gaming Monitor,1,389.99,2019-12-10 08:52:00,293 14th St, Dallas,TX,75001 +309382,USB-C Charging Cable,1,11.95,2019-12-14 13:10:00,929 7th St, New York City,NY,10001 +309383,Apple Airpods Headphones,1,150.0,2019-12-06 21:59:00,234 Elm St, San Francisco,CA,94016 +309384,Wired Headphones,1,11.99,2019-12-06 19:45:00,443 West St, Los Angeles,CA,90001 +309385,Wired Headphones,1,11.99,2019-12-24 22:37:00,337 Forest St, San Francisco,CA,94016 +309386,AA Batteries (4-pack),1,3.84,2019-12-24 13:44:00,299 Ridge St, Austin,TX,73301 +309387,27in FHD Monitor,1,149.99,2019-12-27 14:47:00,761 Washington St, Boston,MA,02215 +309388,Lightning Charging Cable,1,14.95,2019-12-27 09:17:00,732 13th St, Dallas,TX,75001 +309389,Lightning Charging Cable,1,14.95,2019-12-31 14:56:00,464 9th St, Boston,MA,02215 +309390,Lightning Charging Cable,1,14.95,2019-12-07 14:25:00,398 Walnut St, Boston,MA,02215 +309391,Apple Airpods Headphones,1,150.0,2019-12-03 10:26:00,610 14th St, Dallas,TX,75001 +309392,iPhone,1,700.0,2019-12-14 20:33:00,199 Johnson St, New York City,NY,10001 +309393,Wired Headphones,1,11.99,2019-12-12 00:41:00,600 Hickory St, Los Angeles,CA,90001 +309394,AAA Batteries (4-pack),1,2.99,2019-12-27 12:13:00,190 11th St, New York City,NY,10001 +309395,Lightning Charging Cable,1,14.95,2019-12-22 16:07:00,640 Chestnut St, New York City,NY,10001 +309396,Flatscreen TV,2,300.0,2019-12-04 12:45:00,880 Washington St, Boston,MA,02215 +309397,27in FHD Monitor,1,149.99,2019-12-02 09:52:00,634 Washington St, San Francisco,CA,94016 +309398,Lightning Charging Cable,1,14.95,2019-12-05 16:43:00,484 Lakeview St, New York City,NY,10001 +309399,USB-C Charging Cable,1,11.95,2019-12-24 08:49:00,890 Main St, Los Angeles,CA,90001 +309400,Apple Airpods Headphones,1,150.0,2019-12-21 11:52:00,899 4th St, Portland,ME,04101 +309401,Lightning Charging Cable,1,14.95,2019-12-03 22:42:00,798 West St, Portland,ME,04101 +309402,AA Batteries (4-pack),3,3.84,2019-12-26 11:43:00,459 12th St, New York City,NY,10001 +309403,iPhone,1,700.0,2019-12-08 22:03:00,364 6th St, Boston,MA,02215 +309404,ThinkPad Laptop,1,999.99,2019-12-29 19:31:00,70 Dogwood St, Seattle,WA,98101 +309405,34in Ultrawide Monitor,1,379.99,2019-12-05 11:25:00,661 Lake St, San Francisco,CA,94016 +309406,20in Monitor,1,109.99,2019-12-15 19:37:00,739 Lincoln St, Los Angeles,CA,90001 +309407,Bose SoundSport Headphones,1,99.99,2019-12-18 15:17:00,115 9th St, Los Angeles,CA,90001 +309408,USB-C Charging Cable,1,11.95,2019-12-13 08:32:00,103 7th St, New York City,NY,10001 +309409,Apple Airpods Headphones,1,150.0,2019-12-30 16:45:00,551 Lincoln St, Boston,MA,02215 +309410,AAA Batteries (4-pack),1,2.99,2019-12-08 22:28:00,66 Chestnut St, Dallas,TX,75001 +309411,AA Batteries (4-pack),2,3.84,2019-12-21 23:46:00,192 Hickory St, San Francisco,CA,94016 +309412,AAA Batteries (4-pack),2,2.99,2019-12-31 19:01:00,542 5th St, San Francisco,CA,94016 +309413,Bose SoundSport Headphones,1,99.99,2019-12-17 15:24:00,150 9th St, Los Angeles,CA,90001 +309414,AAA Batteries (4-pack),1,2.99,2019-12-21 12:14:00,909 Sunset St, San Francisco,CA,94016 +309415,Apple Airpods Headphones,1,150.0,2019-12-17 18:33:00,685 Jackson St, Los Angeles,CA,90001 +309416,Lightning Charging Cable,1,14.95,2019-12-30 10:38:00,195 West St, San Francisco,CA,94016 +309417,34in Ultrawide Monitor,1,379.99,2019-12-03 10:27:00,218 Park St, Portland,OR,97035 +309418,AA Batteries (4-pack),1,3.84,2019-12-25 10:09:00,544 11th St, Atlanta,GA,30301 +309419,Google Phone,1,600.0,2019-12-28 21:57:00,926 Jefferson St, Los Angeles,CA,90001 +309419,USB-C Charging Cable,1,11.95,2019-12-28 21:57:00,926 Jefferson St, Los Angeles,CA,90001 +309420,34in Ultrawide Monitor,1,379.99,2019-12-06 23:00:00,999 6th St, Dallas,TX,75001 +309421,USB-C Charging Cable,1,11.95,2019-12-28 18:35:00,284 5th St, San Francisco,CA,94016 +309422,Lightning Charging Cable,1,14.95,2019-12-19 23:45:00,223 West St, Seattle,WA,98101 +309423,20in Monitor,1,109.99,2019-12-22 20:30:00,222 12th St, San Francisco,CA,94016 +309424,USB-C Charging Cable,1,11.95,2019-12-24 23:44:00,689 12th St, Austin,TX,73301 +309425,Wired Headphones,1,11.99,2019-12-11 07:26:00,456 River St, Los Angeles,CA,90001 +309426,Lightning Charging Cable,1,14.95,2019-12-03 21:15:00,813 North St, New York City,NY,10001 +309427,Bose SoundSport Headphones,1,99.99,2019-12-21 11:02:00,870 1st St, Dallas,TX,75001 +309428,27in 4K Gaming Monitor,1,389.99,2019-12-14 11:57:00,917 14th St, San Francisco,CA,94016 +309429,AA Batteries (4-pack),4,3.84,2019-12-27 22:22:00,172 Park St, New York City,NY,10001 +309429,Apple Airpods Headphones,1,150.0,2019-12-27 22:22:00,172 Park St, New York City,NY,10001 +309430,Apple Airpods Headphones,1,150.0,2019-12-23 08:06:00,361 Cherry St, San Francisco,CA,94016 +309431,USB-C Charging Cable,1,11.95,2019-12-22 17:37:00,138 Pine St, Seattle,WA,98101 +309432,Lightning Charging Cable,1,14.95,2019-12-14 08:40:00,677 Jefferson St, Austin,TX,73301 +309433,USB-C Charging Cable,1,11.95,2019-12-24 12:23:00,51 10th St, Austin,TX,73301 +309434,iPhone,1,700.0,2019-12-19 09:19:00,664 5th St, New York City,NY,10001 +309435,Wired Headphones,1,11.99,2019-12-02 19:10:00,819 Main St, Los Angeles,CA,90001 +309436,Lightning Charging Cable,1,14.95,2019-12-23 11:33:00,237 Adams St, Atlanta,GA,30301 +309437,20in Monitor,1,109.99,2019-12-11 15:15:00,235 South St, San Francisco,CA,94016 +309438,AAA Batteries (4-pack),1,2.99,2019-12-28 19:52:00,16 Jefferson St, San Francisco,CA,94016 +309439,Apple Airpods Headphones,1,150.0,2019-12-17 13:06:00,793 6th St, San Francisco,CA,94016 +309440,Bose SoundSport Headphones,1,99.99,2019-12-08 20:30:00,22 Washington St, Atlanta,GA,30301 +309441,USB-C Charging Cable,1,11.95,2019-12-23 11:38:00,309 Church St, Austin,TX,73301 +309442,iPhone,1,700.0,2019-12-20 15:02:00,930 Jefferson St, Los Angeles,CA,90001 +309443,Bose SoundSport Headphones,1,99.99,2019-12-28 19:22:00,846 7th St, Dallas,TX,75001 +309444,27in FHD Monitor,1,149.99,2019-12-27 00:00:00,753 Chestnut St, New York City,NY,10001 +309445,Wired Headphones,2,11.99,2019-12-19 22:14:00,517 Walnut St, San Francisco,CA,94016 +309446,Lightning Charging Cable,1,14.95,2019-12-04 20:37:00,813 Ridge St, San Francisco,CA,94016 +309447,AA Batteries (4-pack),1,3.84,2019-12-27 14:41:00,796 Walnut St, San Francisco,CA,94016 +309448,34in Ultrawide Monitor,1,379.99,2019-12-06 12:59:00,810 6th St, Atlanta,GA,30301 +309449,Lightning Charging Cable,1,14.95,2019-12-05 18:01:00,205 Jackson St, Boston,MA,02215 +309450,USB-C Charging Cable,1,11.95,2019-12-04 13:47:00,456 Madison St, Boston,MA,02215 +309451,Wired Headphones,1,11.99,2019-12-15 01:05:00,784 Hickory St, Austin,TX,73301 +309452,AAA Batteries (4-pack),1,2.99,2019-12-10 14:15:00,945 Lincoln St, Los Angeles,CA,90001 +309453,Google Phone,1,600.0,2019-12-28 15:49:00,120 9th St, San Francisco,CA,94016 +309454,20in Monitor,1,109.99,2019-12-18 17:49:00,449 2nd St, Dallas,TX,75001 +309455,AA Batteries (4-pack),1,3.84,2019-12-31 16:19:00,945 Hill St, Boston,MA,02215 +309456,Flatscreen TV,1,300.0,2019-12-22 16:43:00,186 Hickory St, Seattle,WA,98101 +309457,USB-C Charging Cable,1,11.95,2019-12-04 14:53:00,691 Park St, Los Angeles,CA,90001 +309458,Lightning Charging Cable,1,14.95,2019-12-20 09:13:00,270 Park St, New York City,NY,10001 +309459,27in 4K Gaming Monitor,1,389.99,2019-12-16 20:57:00,928 Jackson St, Seattle,WA,98101 +309460,34in Ultrawide Monitor,1,379.99,2019-12-16 15:29:00,74 Dogwood St, New York City,NY,10001 +309461,27in 4K Gaming Monitor,1,389.99,2019-12-06 11:03:00,614 Park St, San Francisco,CA,94016 +309462,AAA Batteries (4-pack),1,2.99,2019-12-24 18:20:00,812 5th St, New York City,NY,10001 +309463,Bose SoundSport Headphones,1,99.99,2019-12-12 13:19:00,911 Sunset St, New York City,NY,10001 +309464,Wired Headphones,1,11.99,2019-12-27 15:51:00,640 14th St, Atlanta,GA,30301 +309465,Google Phone,1,600.0,2019-12-31 17:17:00,117 Dogwood St, San Francisco,CA,94016 +309466,AA Batteries (4-pack),3,3.84,2019-12-20 00:47:00,377 Walnut St, Boston,MA,02215 +309467,34in Ultrawide Monitor,1,379.99,2019-12-27 11:00:00,552 North St, New York City,NY,10001 +309468,Macbook Pro Laptop,1,1700.0,2019-12-17 10:31:00,495 8th St, Atlanta,GA,30301 +309469,Bose SoundSport Headphones,1,99.99,2019-12-10 19:52:00,29 North St, San Francisco,CA,94016 +309470,Wired Headphones,1,11.99,2019-12-04 00:15:00,947 14th St, Boston,MA,02215 +309471,LG Dryer,1,600.0,2019-12-29 12:22:00,240 Lakeview St, New York City,NY,10001 +309472,Wired Headphones,1,11.99,2019-12-21 17:22:00,872 Center St, Portland,OR,97035 +309473,Apple Airpods Headphones,1,150.0,2019-12-29 19:43:00,8 Pine St, Seattle,WA,98101 +309474,Apple Airpods Headphones,1,150.0,2019-12-31 07:53:00,878 5th St, Boston,MA,02215 +309475,AAA Batteries (4-pack),1,2.99,2019-12-09 07:10:00,507 Dogwood St, Los Angeles,CA,90001 +309476,USB-C Charging Cable,1,11.95,2019-12-27 08:40:00,191 14th St, San Francisco,CA,94016 +309477,Flatscreen TV,1,300.0,2019-12-13 07:34:00,46 Washington St, Portland,OR,97035 +309478,Macbook Pro Laptop,1,1700.0,2019-12-11 00:30:00,995 8th St, Portland,OR,97035 +309479,Wired Headphones,1,11.99,2019-12-06 13:04:00,35 Washington St, San Francisco,CA,94016 +309480,27in 4K Gaming Monitor,1,389.99,2019-12-26 09:46:00,833 Chestnut St, Los Angeles,CA,90001 +309481,Wired Headphones,1,11.99,2019-12-31 16:54:00,366 Park St, Boston,MA,02215 +309482,AA Batteries (4-pack),1,3.84,2019-12-10 16:59:00,680 Lincoln St, New York City,NY,10001 +309483,Lightning Charging Cable,1,14.95,2019-12-19 13:10:00,820 1st St, Austin,TX,73301 +309484,AA Batteries (4-pack),1,3.84,2019-12-05 12:27:00,748 Wilson St, New York City,NY,10001 +309485,27in 4K Gaming Monitor,1,389.99,2019-12-26 17:45:00,323 8th St, Los Angeles,CA,90001 +309486,Lightning Charging Cable,1,14.95,2019-12-07 14:38:00,339 Sunset St, New York City,NY,10001 +309487,Macbook Pro Laptop,1,1700.0,2019-12-15 11:58:00,880 9th St, Atlanta,GA,30301 +309488,LG Dryer,1,600.0,2019-12-13 11:30:00,96 North St, San Francisco,CA,94016 +309489,Wired Headphones,1,11.99,2019-12-05 16:09:00,496 9th St, Boston,MA,02215 +309490,Apple Airpods Headphones,1,150.0,2019-12-13 19:18:00,933 2nd St, San Francisco,CA,94016 +309491,27in 4K Gaming Monitor,1,389.99,2019-12-15 11:25:00,504 Jackson St, Los Angeles,CA,90001 +309492,Apple Airpods Headphones,1,150.0,2019-12-29 13:14:00,304 Cedar St, Seattle,WA,98101 +309493,Apple Airpods Headphones,1,150.0,2019-12-18 10:06:00,468 10th St, Seattle,WA,98101 +309494,Apple Airpods Headphones,1,150.0,2019-12-13 16:30:00,784 Lincoln St, Los Angeles,CA,90001 +309495,Apple Airpods Headphones,1,150.0,2019-12-27 10:55:00,843 2nd St, San Francisco,CA,94016 +309496,AA Batteries (4-pack),1,3.84,2019-12-14 23:01:00,841 Lake St, Atlanta,GA,30301 +309497,34in Ultrawide Monitor,1,379.99,2019-12-02 21:20:00,712 Jefferson St, San Francisco,CA,94016 +309498,27in 4K Gaming Monitor,1,389.99,2019-12-02 18:25:00,36 West St, Austin,TX,73301 +309499,AAA Batteries (4-pack),1,2.99,2019-12-24 13:41:00,261 10th St, New York City,NY,10001 +309499,Lightning Charging Cable,1,14.95,2019-12-24 13:41:00,261 10th St, New York City,NY,10001 +309500,27in 4K Gaming Monitor,1,389.99,2019-12-09 12:12:00,706 Washington St, New York City,NY,10001 +309501,Wired Headphones,1,11.99,2019-12-13 21:13:00,882 Jackson St, New York City,NY,10001 +309502,Flatscreen TV,1,300.0,2019-12-08 17:04:00,552 10th St, Dallas,TX,75001 +309503,AA Batteries (4-pack),1,3.84,2019-12-01 09:13:00,419 Church St, New York City,NY,10001 +309504,Apple Airpods Headphones,1,150.0,2019-12-24 15:09:00,984 7th St, Atlanta,GA,30301 +309505,iPhone,1,700.0,2019-12-12 23:15:00,485 8th St, San Francisco,CA,94016 +309506,Google Phone,1,600.0,2019-12-08 06:22:00,395 14th St, Dallas,TX,75001 +309507,Apple Airpods Headphones,1,150.0,2019-12-06 00:02:00,338 9th St, Boston,MA,02215 +309508,Apple Airpods Headphones,1,150.0,2019-12-24 20:02:00,227 Forest St, New York City,NY,10001 +309509,AAA Batteries (4-pack),1,2.99,2019-12-23 08:23:00,365 West St, Atlanta,GA,30301 +309510,Bose SoundSport Headphones,1,99.99,2019-12-07 16:32:00,334 Dogwood St, New York City,NY,10001 +309511,Bose SoundSport Headphones,1,99.99,2019-12-07 18:37:00,101 Church St, Los Angeles,CA,90001 +309512,AA Batteries (4-pack),1,3.84,2019-12-12 11:06:00,397 10th St, Los Angeles,CA,90001 +309513,Bose SoundSport Headphones,1,99.99,2019-12-21 13:51:00,511 11th St, Austin,TX,73301 +309514,Wired Headphones,1,11.99,2019-12-27 15:32:00,902 10th St, Los Angeles,CA,90001 +309515,Wired Headphones,1,11.99,2019-12-08 10:24:00,931 1st St, New York City,NY,10001 +309516,AAA Batteries (4-pack),1,2.99,2019-12-28 20:24:00,303 Cedar St, Boston,MA,02215 +309517,ThinkPad Laptop,1,999.99,2019-12-31 12:04:00,446 Jackson St, Los Angeles,CA,90001 +309518,AA Batteries (4-pack),3,3.84,2019-12-29 13:22:00,418 North St, New York City,NY,10001 +309519,27in FHD Monitor,1,149.99,2019-12-20 08:33:00,672 Adams St, Portland,OR,97035 +309520,27in FHD Monitor,1,149.99,2019-12-24 09:31:00,630 River St, Dallas,TX,75001 +309521,Macbook Pro Laptop,1,1700.0,2019-12-14 20:37:00,400 Church St, Atlanta,GA,30301 +309522,AAA Batteries (4-pack),1,2.99,2019-12-06 16:08:00,160 5th St, Seattle,WA,98101 +309523,AAA Batteries (4-pack),2,2.99,2019-12-26 15:42:00,965 Willow St, Los Angeles,CA,90001 +309524,Wired Headphones,1,11.99,2019-12-09 10:52:00,264 Center St, Dallas,TX,75001 +309525,27in FHD Monitor,1,149.99,2019-12-09 16:07:00,259 Washington St, San Francisco,CA,94016 +309526,AAA Batteries (4-pack),3,2.99,2019-12-26 14:40:00,71 11th St, New York City,NY,10001 +309527,27in 4K Gaming Monitor,1,389.99,2019-12-12 22:29:00,126 Johnson St, New York City,NY,10001 +309527,Wired Headphones,1,11.99,2019-12-12 22:29:00,126 Johnson St, New York City,NY,10001 +309528,Apple Airpods Headphones,1,150.0,2019-12-28 19:03:00,692 13th St, New York City,NY,10001 +309529,34in Ultrawide Monitor,1,379.99,2019-12-07 21:19:00,730 Dogwood St, Boston,MA,02215 +309530,AAA Batteries (4-pack),1,2.99,2019-12-29 23:14:00,164 1st St, Portland,OR,97035 +309531,iPhone,1,700.0,2019-12-11 15:58:00,410 River St, San Francisco,CA,94016 +309531,Apple Airpods Headphones,1,150.0,2019-12-11 15:58:00,410 River St, San Francisco,CA,94016 +309532,Google Phone,1,600.0,2019-12-03 15:06:00,874 Adams St, Los Angeles,CA,90001 +309533,AA Batteries (4-pack),1,3.84,2019-12-02 15:46:00,778 Pine St, Boston,MA,02215 +309534,20in Monitor,1,109.99,2019-12-30 12:08:00,938 Walnut St, Los Angeles,CA,90001 +309535,Bose SoundSport Headphones,1,99.99,2019-12-24 06:20:00,102 Spruce St, Los Angeles,CA,90001 +309536,Bose SoundSport Headphones,1,99.99,2019-12-24 10:43:00,867 Jackson St, New York City,NY,10001 +309537,Lightning Charging Cable,1,14.95,2019-12-23 19:13:00,674 Spruce St, San Francisco,CA,94016 +309538,27in FHD Monitor,1,149.99,2019-12-23 07:03:00,448 Madison St, San Francisco,CA,94016 +309539,AA Batteries (4-pack),1,3.84,2019-12-10 10:56:00,183 1st St, Boston,MA,02215 +309540,27in 4K Gaming Monitor,1,389.99,2019-12-25 19:43:00,174 Adams St, Boston,MA,02215 +309541,34in Ultrawide Monitor,1,379.99,2019-12-13 12:14:00,567 2nd St, Los Angeles,CA,90001 +309542,Macbook Pro Laptop,1,1700.0,2019-12-22 23:31:00,475 11th St, San Francisco,CA,94016 +309543,Lightning Charging Cable,1,14.95,2019-12-14 23:25:00,743 Hickory St, San Francisco,CA,94016 +309544,27in FHD Monitor,1,149.99,2019-12-19 12:17:00,177 Meadow St, New York City,NY,10001 +309545,Wired Headphones,1,11.99,2019-12-19 19:53:00,352 5th St, Seattle,WA,98101 +309546,USB-C Charging Cable,1,11.95,2019-12-11 16:25:00,911 Church St, San Francisco,CA,94016 +309547,34in Ultrawide Monitor,1,379.99,2019-12-27 21:20:00,490 Jackson St, Dallas,TX,75001 +309548,iPhone,1,700.0,2019-12-09 14:04:00,705 Hill St, New York City,NY,10001 +309548,Lightning Charging Cable,1,14.95,2019-12-09 14:04:00,705 Hill St, New York City,NY,10001 +309549,20in Monitor,1,109.99,2019-12-02 11:53:00,568 14th St, San Francisco,CA,94016 +309550,Wired Headphones,2,11.99,2019-12-01 09:36:00,27 1st St, Atlanta,GA,30301 +309551,LG Dryer,1,600.0,2019-12-15 10:18:00,733 Spruce St, Austin,TX,73301 +309552,Google Phone,1,600.0,2019-12-20 22:01:00,805 Center St, Los Angeles,CA,90001 +309553,AA Batteries (4-pack),1,3.84,2019-12-17 19:28:00,590 Hill St, Portland,OR,97035 +309554,AA Batteries (4-pack),2,3.84,2019-12-26 06:00:00,15 Lakeview St, San Francisco,CA,94016 +309555,Wired Headphones,1,11.99,2019-12-25 00:26:00,669 Willow St, Los Angeles,CA,90001 +309556,Apple Airpods Headphones,1,150.0,2019-12-13 18:45:00,463 11th St, Boston,MA,02215 +309557,Google Phone,1,600.0,2019-12-13 12:56:00,723 13th St, San Francisco,CA,94016 +309558,27in FHD Monitor,1,149.99,2019-12-18 00:30:00,994 Sunset St, Los Angeles,CA,90001 +309559,AA Batteries (4-pack),2,3.84,2019-12-17 08:33:00,552 6th St, Boston,MA,02215 +309560,Lightning Charging Cable,1,14.95,2019-12-23 15:09:00,426 Jackson St, New York City,NY,10001 +309561,AAA Batteries (4-pack),1,2.99,2019-12-28 17:39:00,185 5th St, New York City,NY,10001 +309562,AA Batteries (4-pack),4,3.84,2019-12-04 18:52:00,401 Adams St, Dallas,TX,75001 +309563,Apple Airpods Headphones,2,150.0,2019-12-10 17:53:00,454 Jackson St, Dallas,TX,75001 +309564,27in FHD Monitor,1,149.99,2019-12-22 17:48:00,812 Chestnut St, San Francisco,CA,94016 +309565,Bose SoundSport Headphones,1,99.99,2019-12-08 12:20:00,188 5th St, Los Angeles,CA,90001 +309566,Google Phone,1,600.0,2019-12-27 07:50:00,311 South St, Boston,MA,02215 +309567,AA Batteries (4-pack),1,3.84,2019-12-26 14:51:00,28 Ridge St, Austin,TX,73301 +309568,Wired Headphones,1,11.99,2019-12-02 13:54:00,13 11th St, Los Angeles,CA,90001 +309569,LG Dryer,1,600.0,2019-12-10 08:42:00,176 Cherry St, New York City,NY,10001 +309570,USB-C Charging Cable,1,11.95,2019-12-09 15:49:00,645 Spruce St, Atlanta,GA,30301 +309571,iPhone,1,700.0,2019-12-20 14:49:00,529 12th St, Atlanta,GA,30301 +309572,Lightning Charging Cable,1,14.95,2019-12-08 19:15:00,868 12th St, Portland,OR,97035 +309573,iPhone,1,700.0,2019-12-13 15:04:00,883 Sunset St, Portland,OR,97035 +309574,27in 4K Gaming Monitor,1,389.99,2019-12-12 13:49:00,553 Jefferson St, Boston,MA,02215 +309575,Bose SoundSport Headphones,1,99.99,2019-12-26 08:36:00,307 Chestnut St, Los Angeles,CA,90001 +309576,27in 4K Gaming Monitor,1,389.99,2019-12-16 14:50:00,967 Chestnut St, Portland,OR,97035 +309577,AA Batteries (4-pack),1,3.84,2019-12-05 17:28:00,609 10th St, Atlanta,GA,30301 +309578,AA Batteries (4-pack),1,3.84,2019-12-11 17:27:00,94 14th St, San Francisco,CA,94016 +309579,AA Batteries (4-pack),1,3.84,2019-12-24 08:37:00,167 Dogwood St, Seattle,WA,98101 +309580,USB-C Charging Cable,1,11.95,2019-12-22 20:03:00,837 Sunset St, San Francisco,CA,94016 +309581,USB-C Charging Cable,1,11.95,2019-12-14 16:55:00,17 Hickory St, Portland,ME,04101 +309582,AAA Batteries (4-pack),1,2.99,2019-12-24 12:21:00,175 Adams St, Seattle,WA,98101 +309583,ThinkPad Laptop,1,999.99,2019-12-08 20:13:00,155 Willow St, Los Angeles,CA,90001 +309584,Wired Headphones,1,11.99,2019-12-31 04:20:00,820 Meadow St, Seattle,WA,98101 +309585,AAA Batteries (4-pack),1,2.99,2019-12-06 10:38:00,263 Dogwood St, San Francisco,CA,94016 +309586,Macbook Pro Laptop,1,1700.0,2019-12-06 16:10:00,736 Spruce St, New York City,NY,10001 +309587,USB-C Charging Cable,1,11.95,2019-12-16 19:16:00,251 Sunset St, Portland,OR,97035 +309588,20in Monitor,1,109.99,2019-12-20 21:50:00,140 Forest St, San Francisco,CA,94016 +309589,USB-C Charging Cable,1,11.95,2019-12-03 09:22:00,573 Lakeview St, New York City,NY,10001 +309590,USB-C Charging Cable,1,11.95,2019-12-05 13:33:00,12 Chestnut St, Seattle,WA,98101 +309591,ThinkPad Laptop,1,999.99,2019-12-28 20:35:00,692 Maple St, Portland,ME,04101 +309592,34in Ultrawide Monitor,1,379.99,2019-12-03 20:04:00,43 Main St, San Francisco,CA,94016 +309593,USB-C Charging Cable,1,11.95,2019-12-05 12:06:00,781 North St, Boston,MA,02215 +309594,Lightning Charging Cable,1,14.95,2019-12-20 18:16:00,484 Spruce St, Portland,OR,97035 +309595,Lightning Charging Cable,1,14.95,2019-12-27 12:58:00,582 11th St, Boston,MA,02215 +309596,AA Batteries (4-pack),1,3.84,2019-12-15 08:30:00,311 8th St, Boston,MA,02215 +309597,Wired Headphones,1,11.99,2019-12-29 19:13:00,63 Madison St, Boston,MA,02215 +309598,Bose SoundSport Headphones,1,99.99,2019-12-28 12:43:00,401 Johnson St, Atlanta,GA,30301 +309599,AA Batteries (4-pack),1,3.84,2019-12-22 13:19:00,730 Forest St, San Francisco,CA,94016 +309600,Lightning Charging Cable,1,14.95,2019-12-12 20:29:00,20 Hill St, San Francisco,CA,94016 +309601,AAA Batteries (4-pack),1,2.99,2019-12-27 12:57:00,303 Elm St, Atlanta,GA,30301 +309602,AA Batteries (4-pack),1,3.84,2019-12-17 23:58:00,643 Lake St, Dallas,TX,75001 +309603,34in Ultrawide Monitor,1,379.99,2019-12-28 19:21:00,203 Hill St, New York City,NY,10001 +309604,Macbook Pro Laptop,1,1700.0,2019-12-19 10:58:00,121 Chestnut St, Seattle,WA,98101 +309605,Apple Airpods Headphones,1,150.0,2019-12-19 16:18:00,965 Cherry St, Portland,OR,97035 +309606,AAA Batteries (4-pack),2,2.99,2019-12-13 11:40:00,979 Ridge St, Seattle,WA,98101 +309607,34in Ultrawide Monitor,1,379.99,2019-12-11 15:32:00,205 Walnut St, Los Angeles,CA,90001 +309608,AAA Batteries (4-pack),3,2.99,2019-12-13 20:05:00,502 North St, San Francisco,CA,94016 +309609,AAA Batteries (4-pack),3,2.99,2019-12-17 18:24:00,170 Johnson St, San Francisco,CA,94016 +309610,27in FHD Monitor,1,149.99,2019-12-31 20:39:00,920 Main St, Atlanta,GA,30301 +309611,34in Ultrawide Monitor,1,379.99,2019-12-26 20:53:00,57 West St, Los Angeles,CA,90001 +309612,AA Batteries (4-pack),1,3.84,2019-12-19 12:16:00,27 Dogwood St, Los Angeles,CA,90001 +309613,Bose SoundSport Headphones,1,99.99,2019-12-02 20:58:00,297 Dogwood St, San Francisco,CA,94016 +309614,AAA Batteries (4-pack),1,2.99,2019-12-08 17:06:00,274 Adams St, Seattle,WA,98101 +309615,Lightning Charging Cable,1,14.95,2019-12-12 22:34:00,529 Elm St, New York City,NY,10001 +309616,USB-C Charging Cable,1,11.95,2019-12-19 19:33:00,187 Dogwood St, Los Angeles,CA,90001 +309617,27in FHD Monitor,1,149.99,2019-12-04 10:46:00,69 Jefferson St, Seattle,WA,98101 +309618,27in FHD Monitor,1,149.99,2019-12-18 21:23:00,569 14th St, New York City,NY,10001 +309619,AAA Batteries (4-pack),1,2.99,2019-12-08 21:55:00,560 Maple St, San Francisco,CA,94016 +309620,27in 4K Gaming Monitor,1,389.99,2019-12-23 14:17:00,746 Adams St, San Francisco,CA,94016 +309621,AA Batteries (4-pack),1,3.84,2019-12-11 15:46:00,229 Chestnut St, San Francisco,CA,94016 +309622,20in Monitor,1,109.99,2019-12-01 18:19:00,673 Johnson St, Dallas,TX,75001 +309623,Lightning Charging Cable,1,14.95,2019-12-06 11:00:00,460 Ridge St, New York City,NY,10001 +309624,Apple Airpods Headphones,1,150.0,2019-12-08 21:10:00,884 1st St, San Francisco,CA,94016 +309625,Apple Airpods Headphones,1,150.0,2019-12-09 13:11:00,987 Lakeview St, San Francisco,CA,94016 +309626,AA Batteries (4-pack),1,3.84,2019-12-03 15:43:00,845 Dogwood St, San Francisco,CA,94016 +309627,Apple Airpods Headphones,1,150.0,2019-12-30 18:55:00,614 Wilson St, San Francisco,CA,94016 +309628,34in Ultrawide Monitor,1,379.99,2019-12-18 18:05:00,842 6th St, San Francisco,CA,94016 +309629,AA Batteries (4-pack),3,3.84,2019-12-24 12:25:00,157 River St, Dallas,TX,75001 +309630,34in Ultrawide Monitor,1,379.99,2019-12-11 11:10:00,525 12th St, New York City,NY,10001 +309631,Google Phone,1,600.0,2019-12-26 15:31:00,497 Ridge St, New York City,NY,10001 +309632,AAA Batteries (4-pack),1,2.99,2019-12-29 17:48:00,813 9th St, Seattle,WA,98101 +309633,Lightning Charging Cable,1,14.95,2019-12-06 11:07:00,179 Lakeview St, New York City,NY,10001 +309634,AA Batteries (4-pack),1,3.84,2019-12-30 22:08:00,695 Park St, Los Angeles,CA,90001 +309635,27in 4K Gaming Monitor,1,389.99,2019-12-25 18:47:00,592 4th St, San Francisco,CA,94016 +309636,iPhone,1,700.0,2019-12-18 19:16:00,653 5th St, Seattle,WA,98101 +309637,34in Ultrawide Monitor,1,379.99,2019-12-20 08:03:00,227 Spruce St, San Francisco,CA,94016 +309638,Macbook Pro Laptop,1,1700.0,2019-12-22 17:53:00,846 Jefferson St, Boston,MA,02215 +309639,Wired Headphones,1,11.99,2019-12-03 21:01:00,327 Pine St, Boston,MA,02215 +309640,34in Ultrawide Monitor,1,379.99,2019-12-14 20:07:00,718 Lincoln St, San Francisco,CA,94016 +309641,34in Ultrawide Monitor,1,379.99,2019-12-17 19:34:00,602 Walnut St, Atlanta,GA,30301 +309642,Google Phone,1,600.0,2019-12-31 00:46:00,843 Church St, Boston,MA,02215 +309643,AAA Batteries (4-pack),1,2.99,2019-12-20 13:27:00,938 12th St, San Francisco,CA,94016 +309644,AA Batteries (4-pack),1,3.84,2019-12-23 15:57:00,351 2nd St, Dallas,TX,75001 +309645,AAA Batteries (4-pack),2,2.99,2019-12-29 21:41:00,537 Park St, San Francisco,CA,94016 +309646,Lightning Charging Cable,1,14.95,2019-12-02 21:12:00,896 Spruce St, Boston,MA,02215 +309647,Wired Headphones,1,11.99,2019-12-03 21:23:00,628 9th St, San Francisco,CA,94016 +309648,Wired Headphones,1,11.99,2019-12-03 00:10:00,238 West St, Seattle,WA,98101 +309649,Vareebadd Phone,1,400.0,2019-12-12 21:53:00,418 Lincoln St, San Francisco,CA,94016 +309650,Google Phone,1,600.0,2019-12-24 17:51:00,989 Johnson St, Dallas,TX,75001 +309651,AA Batteries (4-pack),1,3.84,2019-12-31 20:08:00,59 Hickory St, Atlanta,GA,30301 +309652,AA Batteries (4-pack),2,3.84,2019-12-18 20:05:00,495 Dogwood St, San Francisco,CA,94016 +309653,Wired Headphones,1,11.99,2019-12-03 23:23:00,660 Johnson St, San Francisco,CA,94016 +309654,USB-C Charging Cable,1,11.95,2019-12-17 14:43:00,236 1st St, Los Angeles,CA,90001 +309655,Wired Headphones,1,11.99,2019-12-08 21:29:00,688 Hickory St, Boston,MA,02215 +309656,Bose SoundSport Headphones,1,99.99,2019-12-01 12:34:00,533 Sunset St, Boston,MA,02215 +309657,27in FHD Monitor,1,149.99,2019-12-29 09:48:00,448 Ridge St, Atlanta,GA,30301 +309658,Flatscreen TV,1,300.0,2019-12-24 09:35:00,977 1st St, Boston,MA,02215 +309659,Wired Headphones,1,11.99,2019-12-17 01:00:00,899 Ridge St, San Francisco,CA,94016 +309660,Apple Airpods Headphones,1,150.0,2019-12-04 11:46:00,324 8th St, Atlanta,GA,30301 +309661,iPhone,1,700.0,2019-12-04 15:56:00,346 Lake St, Austin,TX,73301 +309661,Lightning Charging Cable,1,14.95,2019-12-04 15:56:00,346 Lake St, Austin,TX,73301 +309662,iPhone,1,700.0,2019-12-04 11:20:00,81 Cedar St, San Francisco,CA,94016 +309663,Lightning Charging Cable,2,14.95,2019-12-30 20:32:00,901 Cherry St, Los Angeles,CA,90001 +309664,Bose SoundSport Headphones,1,99.99,2019-12-19 16:39:00,655 11th St, Seattle,WA,98101 +309665,34in Ultrawide Monitor,1,379.99,2019-12-11 03:31:00,100 Madison St, San Francisco,CA,94016 +309666,Macbook Pro Laptop,1,1700.0,2019-12-15 04:20:00,348 Walnut St, Los Angeles,CA,90001 +309667,Wired Headphones,1,11.99,2019-12-30 13:08:00,784 11th St, Dallas,TX,75001 +309668,USB-C Charging Cable,1,11.95,2019-12-29 08:47:00,302 Hill St, Atlanta,GA,30301 +309669,AA Batteries (4-pack),1,3.84,2019-12-26 12:45:00,590 Center St, San Francisco,CA,94016 +309670,AAA Batteries (4-pack),1,2.99,2019-12-03 21:07:00,520 Cedar St, San Francisco,CA,94016 +309671,Lightning Charging Cable,1,14.95,2019-12-16 12:58:00,90 Lakeview St, New York City,NY,10001 +309672,27in 4K Gaming Monitor,1,389.99,2019-12-22 13:44:00,427 Highland St, San Francisco,CA,94016 +309673,Flatscreen TV,1,300.0,2019-12-07 16:34:00,13 Meadow St, Seattle,WA,98101 +309674,AA Batteries (4-pack),1,3.84,2019-12-06 12:54:00,666 West St, Dallas,TX,75001 +309675,34in Ultrawide Monitor,1,379.99,2019-12-30 14:23:00,638 10th St, New York City,NY,10001 +309676,ThinkPad Laptop,1,999.99,2019-12-23 10:07:00,328 4th St, New York City,NY,10001 +309677,AAA Batteries (4-pack),1,2.99,2019-12-26 09:30:00,782 12th St, Portland,ME,04101 +309678,Wired Headphones,1,11.99,2019-12-27 23:00:00,462 Jefferson St, Los Angeles,CA,90001 +309679,USB-C Charging Cable,1,11.95,2019-12-19 15:00:00,203 6th St, San Francisco,CA,94016 +309680,AAA Batteries (4-pack),1,2.99,2019-12-15 20:03:00,305 Chestnut St, Boston,MA,02215 +309681,Wired Headphones,1,11.99,2019-12-23 19:48:00,287 13th St, Seattle,WA,98101 +309682,Wired Headphones,1,11.99,2019-12-05 13:08:00,470 2nd St, New York City,NY,10001 +309683,AAA Batteries (4-pack),2,2.99,2019-12-27 20:07:00,735 Elm St, Dallas,TX,75001 +309684,27in FHD Monitor,1,149.99,2019-12-06 00:09:00,839 Highland St, San Francisco,CA,94016 +309685,Lightning Charging Cable,1,14.95,2019-12-24 08:37:00,390 Lake St, Austin,TX,73301 +309686,Bose SoundSport Headphones,1,99.99,2019-12-14 22:34:00,114 Lakeview St, Portland,OR,97035 +309687,AAA Batteries (4-pack),1,2.99,2019-12-14 12:18:00,96 Cedar St, Atlanta,GA,30301 +309688,Lightning Charging Cable,1,14.95,2019-12-26 09:37:00,65 Lincoln St, San Francisco,CA,94016 +309689,Flatscreen TV,1,300.0,2019-12-23 15:13:00,332 Madison St, Dallas,TX,75001 +309690,USB-C Charging Cable,1,11.95,2019-12-17 23:05:00,758 8th St, Los Angeles,CA,90001 +309690,Wired Headphones,1,11.99,2019-12-17 23:05:00,758 8th St, Los Angeles,CA,90001 +309691,Google Phone,1,600.0,2019-12-31 18:01:00,340 7th St, San Francisco,CA,94016 +309692,iPhone,1,700.0,2019-12-13 12:02:00,370 4th St, New York City,NY,10001 +309693,Bose SoundSport Headphones,1,99.99,2019-12-07 23:29:00,386 Dogwood St, San Francisco,CA,94016 +309694,Apple Airpods Headphones,1,150.0,2019-12-12 09:26:00,877 Spruce St, San Francisco,CA,94016 +309695,Lightning Charging Cable,1,14.95,2019-12-22 11:52:00,543 Main St, New York City,NY,10001 +309696,27in FHD Monitor,1,149.99,2019-12-16 13:44:00,112 Spruce St, Los Angeles,CA,90001 +309697,AA Batteries (4-pack),1,3.84,2019-12-22 19:17:00,902 5th St, Dallas,TX,75001 +309698,Bose SoundSport Headphones,1,99.99,2019-12-06 13:10:00,497 Jackson St, Portland,ME,04101 +309699,Apple Airpods Headphones,1,150.0,2019-12-13 21:33:00,752 Church St, Boston,MA,02215 +309700,AA Batteries (4-pack),1,3.84,2019-12-07 13:03:00,523 9th St, Atlanta,GA,30301 +309701,Macbook Pro Laptop,1,1700.0,2019-12-10 07:42:00,144 Lincoln St, San Francisco,CA,94016 +309702,AA Batteries (4-pack),1,3.84,2019-12-03 09:24:00,933 Wilson St, Atlanta,GA,30301 +309703,Apple Airpods Headphones,1,150.0,2019-12-27 19:11:00,599 5th St, Los Angeles,CA,90001 +309703,Wired Headphones,1,11.99,2019-12-27 19:11:00,599 5th St, Los Angeles,CA,90001 +309704,27in FHD Monitor,1,149.99,2019-12-26 13:36:00,798 8th St, Dallas,TX,75001 +309705,Lightning Charging Cable,1,14.95,2019-12-25 11:06:00,432 Lake St, New York City,NY,10001 +309706,AA Batteries (4-pack),2,3.84,2019-12-17 19:46:00,153 Hill St, San Francisco,CA,94016 +309706,AA Batteries (4-pack),1,3.84,2019-12-17 19:46:00,153 Hill St, San Francisco,CA,94016 +309707,Lightning Charging Cable,1,14.95,2019-12-10 09:59:00,90 Lakeview St, New York City,NY,10001 +309708,27in 4K Gaming Monitor,1,389.99,2019-12-16 19:41:00,379 Sunset St, San Francisco,CA,94016 +309709,Apple Airpods Headphones,1,150.0,2019-12-12 17:31:00,217 Lincoln St, Seattle,WA,98101 +309710,Google Phone,1,600.0,2019-12-10 18:45:00,41 Jackson St, San Francisco,CA,94016 +309711,ThinkPad Laptop,1,999.99,2019-12-02 17:36:00,767 Elm St, San Francisco,CA,94016 +309712,Vareebadd Phone,1,400.0,2019-12-03 15:39:00,425 Wilson St, New York City,NY,10001 +309712,USB-C Charging Cable,1,11.95,2019-12-03 15:39:00,425 Wilson St, New York City,NY,10001 +309713,USB-C Charging Cable,1,11.95,2019-12-11 17:51:00,350 River St, Boston,MA,02215 +309714,Apple Airpods Headphones,1,150.0,2019-12-19 14:09:00,977 River St, Los Angeles,CA,90001 +309715,AAA Batteries (4-pack),2,2.99,2019-12-21 20:58:00,710 12th St, Atlanta,GA,30301 +309716,USB-C Charging Cable,1,11.95,2019-12-30 10:34:00,747 8th St, San Francisco,CA,94016 +309717,USB-C Charging Cable,1,11.95,2019-12-04 12:42:00,701 8th St, San Francisco,CA,94016 +309718,Wired Headphones,1,11.99,2019-12-15 01:26:00,335 Chestnut St, Atlanta,GA,30301 +309719,Wired Headphones,1,11.99,2019-12-29 09:34:00,74 Adams St, San Francisco,CA,94016 +309720,Flatscreen TV,1,300.0,2019-12-24 18:26:00,276 Sunset St, San Francisco,CA,94016 +309721,Bose SoundSport Headphones,1,99.99,2019-12-09 12:47:00,510 Madison St, New York City,NY,10001 +309722,iPhone,1,700.0,2019-12-24 19:13:00,722 Chestnut St, New York City,NY,10001 +309723,AAA Batteries (4-pack),1,2.99,2019-12-10 17:12:00,11 Main St, Los Angeles,CA,90001 +309724,Lightning Charging Cable,1,14.95,2019-12-06 22:34:00,269 Center St, Seattle,WA,98101 +309725,Macbook Pro Laptop,1,1700.0,2019-12-19 06:44:00,407 Church St, Atlanta,GA,30301 +309726,Macbook Pro Laptop,1,1700.0,2019-12-01 07:51:00,934 Hickory St, Portland,ME,04101 +309727,Apple Airpods Headphones,1,150.0,2019-12-21 13:09:00,987 Walnut St, Atlanta,GA,30301 +309728,Vareebadd Phone,1,400.0,2019-12-30 07:59:00,618 Walnut St, Austin,TX,73301 +309729,AA Batteries (4-pack),3,3.84,2019-12-08 07:22:00,694 Jefferson St, Austin,TX,73301 +309730,20in Monitor,1,109.99,2019-12-28 13:59:00,545 Ridge St, San Francisco,CA,94016 +309731,Wired Headphones,1,11.99,2019-12-27 11:19:00,267 Main St, San Francisco,CA,94016 +309732,Macbook Pro Laptop,1,1700.0,2019-12-11 14:31:00,229 1st St, San Francisco,CA,94016 +309733,27in 4K Gaming Monitor,1,389.99,2019-12-12 11:46:00,426 Ridge St, Dallas,TX,75001 +309734,Wired Headphones,1,11.99,2019-12-20 01:32:00,746 Willow St, San Francisco,CA,94016 +309735,Flatscreen TV,1,300.0,2019-12-06 16:04:00,920 Adams St, Austin,TX,73301 +309736,AAA Batteries (4-pack),1,2.99,2019-12-23 12:13:00,18 River St, San Francisco,CA,94016 +309737,AAA Batteries (4-pack),1,2.99,2019-12-23 13:01:00,229 Chestnut St, Atlanta,GA,30301 +309738,Apple Airpods Headphones,1,150.0,2019-12-24 07:03:00,736 Ridge St, Los Angeles,CA,90001 +309739,AA Batteries (4-pack),1,3.84,2019-12-11 15:02:00,773 Johnson St, San Francisco,CA,94016 +309740,Bose SoundSport Headphones,1,99.99,2019-12-13 15:15:00,407 Lake St, New York City,NY,10001 +309741,Wired Headphones,1,11.99,2019-12-27 19:19:00,133 Hickory St, Portland,ME,04101 +309742,Wired Headphones,1,11.99,2019-12-30 11:13:00,361 Jefferson St, San Francisco,CA,94016 +309743,Wired Headphones,1,11.99,2019-12-04 12:46:00,341 River St, Los Angeles,CA,90001 +309744,Apple Airpods Headphones,1,150.0,2019-12-14 18:12:00,744 12th St, Atlanta,GA,30301 +309745,27in 4K Gaming Monitor,1,389.99,2019-12-04 18:06:00,70 Jefferson St, New York City,NY,10001 +309746,Lightning Charging Cable,1,14.95,2019-12-09 06:42:00,33 10th St, New York City,NY,10001 +309747,Lightning Charging Cable,1,14.95,2019-12-03 21:39:00,964 Willow St, Austin,TX,73301 +309748,Apple Airpods Headphones,1,150.0,2019-12-04 17:00:00,872 12th St, Los Angeles,CA,90001 +309749,USB-C Charging Cable,1,11.95,2019-12-21 19:07:00,417 Walnut St, Seattle,WA,98101 +309750,Lightning Charging Cable,1,14.95,2019-12-08 13:32:00,493 7th St, Dallas,TX,75001 +309751,Wired Headphones,1,11.99,2019-12-25 00:41:00,872 Maple St, Boston,MA,02215 +309752,AA Batteries (4-pack),1,3.84,2019-12-24 04:36:00,595 14th St, Los Angeles,CA,90001 +309753,Apple Airpods Headphones,1,150.0,2019-12-21 18:43:00,209 Park St, Boston,MA,02215 +309754,AA Batteries (4-pack),1,3.84,2019-12-29 07:33:00,582 10th St, Boston,MA,02215 +309754,Lightning Charging Cable,1,14.95,2019-12-29 07:33:00,582 10th St, Boston,MA,02215 +309755,Apple Airpods Headphones,1,150.0,2019-12-05 07:34:00,905 2nd St, San Francisco,CA,94016 +309756,Apple Airpods Headphones,1,150.0,2019-12-30 13:42:00,511 Meadow St, Boston,MA,02215 +309757,Apple Airpods Headphones,1,150.0,2019-12-02 16:34:00,177 10th St, Dallas,TX,75001 +309758,AAA Batteries (4-pack),2,2.99,2019-12-29 20:20:00,524 Madison St, Portland,OR,97035 +309759,Google Phone,1,600.0,2019-12-30 03:30:00,299 Center St, Boston,MA,02215 +309759,USB-C Charging Cable,1,11.95,2019-12-30 03:30:00,299 Center St, Boston,MA,02215 +309759,Bose SoundSport Headphones,1,99.99,2019-12-30 03:30:00,299 Center St, Boston,MA,02215 +309760,Lightning Charging Cable,1,14.95,2019-12-30 11:34:00,654 Forest St, Atlanta,GA,30301 +309761,AAA Batteries (4-pack),3,2.99,2019-12-12 12:43:00,478 5th St, Atlanta,GA,30301 +309762,27in FHD Monitor,1,149.99,2019-12-10 17:05:00,264 West St, Portland,OR,97035 +309763,AA Batteries (4-pack),1,3.84,2019-12-28 22:16:00,172 Washington St, Dallas,TX,75001 +309764,AA Batteries (4-pack),2,3.84,2019-12-24 12:13:00,192 7th St, San Francisco,CA,94016 +309765,34in Ultrawide Monitor,1,379.99,2019-12-27 11:40:00,4 Washington St, Portland,OR,97035 +309766,27in FHD Monitor,1,149.99,2019-12-19 17:55:00,902 Washington St, Austin,TX,73301 +309767,AAA Batteries (4-pack),1,2.99,2019-12-13 21:49:00,698 Lincoln St, San Francisco,CA,94016 +309768,AA Batteries (4-pack),1,3.84,2019-12-16 00:51:00,688 Lake St, San Francisco,CA,94016 +309769,27in FHD Monitor,1,149.99,2019-12-19 08:51:00,680 12th St, New York City,NY,10001 +309770,AAA Batteries (4-pack),1,2.99,2019-12-06 17:31:00,669 Highland St, San Francisco,CA,94016 +309771,Lightning Charging Cable,1,14.95,2019-12-17 11:26:00,534 Forest St, New York City,NY,10001 +309772,Bose SoundSport Headphones,1,99.99,2019-12-07 13:58:00,727 Adams St, Dallas,TX,75001 +309773,AAA Batteries (4-pack),1,2.99,2019-12-31 23:52:00,60 Hickory St, Los Angeles,CA,90001 +309774,AA Batteries (4-pack),2,3.84,2019-12-05 09:06:00,507 Wilson St, San Francisco,CA,94016 +309775,ThinkPad Laptop,1,999.99,2019-12-26 19:30:00,809 Sunset St, Boston,MA,02215 +309776,Lightning Charging Cable,1,14.95,2019-12-31 15:02:00,998 North St, San Francisco,CA,94016 +309777,Flatscreen TV,1,300.0,2019-12-16 08:04:00,702 13th St, San Francisco,CA,94016 +309778,Bose SoundSport Headphones,1,99.99,2019-12-12 23:08:00,311 1st St, San Francisco,CA,94016 +309779,Bose SoundSport Headphones,1,99.99,2019-12-21 14:55:00,9 14th St, Austin,TX,73301 +309780,AAA Batteries (4-pack),2,2.99,2019-12-12 17:03:00,868 Ridge St, Austin,TX,73301 +309781,Wired Headphones,1,11.99,2019-12-03 15:47:00,513 Elm St, Dallas,TX,75001 +309782,USB-C Charging Cable,1,11.95,2019-12-21 18:01:00,439 South St, New York City,NY,10001 +309783,AA Batteries (4-pack),1,3.84,2019-12-10 13:51:00,703 7th St, San Francisco,CA,94016 +309784,USB-C Charging Cable,1,11.95,2019-12-01 12:49:00,777 Ridge St, Los Angeles,CA,90001 +309785,USB-C Charging Cable,2,11.95,2019-12-12 15:28:00,526 Jackson St, New York City,NY,10001 +309786,27in 4K Gaming Monitor,1,389.99,2019-12-02 22:33:00,607 Spruce St, San Francisco,CA,94016 +309787,Apple Airpods Headphones,1,150.0,2019-12-30 22:43:00,514 Spruce St, Los Angeles,CA,90001 +309788,AAA Batteries (4-pack),1,2.99,2019-12-27 13:40:00,468 Spruce St, Boston,MA,02215 +309789,Lightning Charging Cable,1,14.95,2019-12-04 16:21:00,558 South St, Seattle,WA,98101 +309790,AAA Batteries (4-pack),1,2.99,2019-12-14 09:02:00,971 Maple St, Portland,OR,97035 +309791,Apple Airpods Headphones,1,150.0,2019-12-31 15:40:00,393 Spruce St, Austin,TX,73301 +309792,AA Batteries (4-pack),2,3.84,2019-12-08 16:34:00,434 West St, New York City,NY,10001 +309793,Apple Airpods Headphones,1,150.0,2019-12-22 17:53:00,161 Cherry St, New York City,NY,10001 +309794,Apple Airpods Headphones,1,150.0,2019-12-08 20:43:00,83 Hickory St, New York City,NY,10001 +309795,USB-C Charging Cable,1,11.95,2019-12-04 17:50:00,259 Madison St, Los Angeles,CA,90001 +309796,Lightning Charging Cable,1,14.95,2019-12-17 01:46:00,642 Cherry St, San Francisco,CA,94016 +309797,ThinkPad Laptop,1,999.99,2019-12-02 13:32:00,541 1st St, Austin,TX,73301 +309797,USB-C Charging Cable,1,11.95,2019-12-02 13:32:00,541 1st St, Austin,TX,73301 +309798,USB-C Charging Cable,1,11.95,2019-12-21 23:29:00,449 Adams St, New York City,NY,10001 +309799,Wired Headphones,1,11.99,2019-12-15 19:30:00,246 9th St, Seattle,WA,98101 +309800,AA Batteries (4-pack),1,3.84,2019-12-20 19:19:00,701 Pine St, Atlanta,GA,30301 +309801,Macbook Pro Laptop,1,1700.0,2019-12-08 21:12:00,430 North St, Dallas,TX,75001 +309802,Apple Airpods Headphones,1,150.0,2019-12-21 20:36:00,143 North St, Dallas,TX,75001 +309803,AAA Batteries (4-pack),1,2.99,2019-12-12 20:54:00,615 Jackson St, San Francisco,CA,94016 +309804,Bose SoundSport Headphones,1,99.99,2019-12-12 18:49:00,805 Washington St, Austin,TX,73301 +309805,Bose SoundSport Headphones,1,99.99,2019-12-19 11:55:00,827 13th St, New York City,NY,10001 +309806,20in Monitor,1,109.99,2019-12-02 12:34:00,889 Lakeview St, New York City,NY,10001 +309807,Lightning Charging Cable,1,14.95,2019-12-08 15:18:00,805 Adams St, Los Angeles,CA,90001 +309808,27in FHD Monitor,1,149.99,2019-12-22 22:42:00,832 6th St, Seattle,WA,98101 +309809,AA Batteries (4-pack),2,3.84,2019-12-10 14:49:00,316 1st St, Atlanta,GA,30301 +309810,AAA Batteries (4-pack),1,2.99,2019-12-10 08:58:00,938 Cedar St, New York City,NY,10001 +309811,AAA Batteries (4-pack),3,2.99,2019-12-14 21:56:00,374 2nd St, San Francisco,CA,94016 +309812,Apple Airpods Headphones,1,150.0,2019-12-13 21:40:00,83 Sunset St, Atlanta,GA,30301 +309813,AA Batteries (4-pack),1,3.84,2019-12-27 20:21:00,158 North St, San Francisco,CA,94016 +309814,AAA Batteries (4-pack),1,2.99,2019-12-21 09:10:00,44 Cedar St, Seattle,WA,98101 +309815,Lightning Charging Cable,1,14.95,2019-12-14 12:43:00,324 River St, Austin,TX,73301 +309816,Bose SoundSport Headphones,1,99.99,2019-12-25 05:47:00,354 8th St, Los Angeles,CA,90001 +309817,AAA Batteries (4-pack),1,2.99,2019-12-01 16:52:00,252 7th St, Portland,OR,97035 +309818,Apple Airpods Headphones,1,150.0,2019-12-10 13:22:00,714 West St, New York City,NY,10001 +309819,Google Phone,1,600.0,2019-12-15 15:56:00,62 9th St, Atlanta,GA,30301 +309819,Bose SoundSport Headphones,1,99.99,2019-12-15 15:56:00,62 9th St, Atlanta,GA,30301 +309820,USB-C Charging Cable,1,11.95,2019-12-04 18:43:00,817 Park St, Portland,OR,97035 +309821,Google Phone,1,600.0,2019-12-08 00:59:00,689 Hickory St, Atlanta,GA,30301 +309822,Wired Headphones,1,11.99,2019-12-23 09:05:00,234 Dogwood St, San Francisco,CA,94016 +309823,Macbook Pro Laptop,1,1700.0,2019-12-17 11:18:00,689 Sunset St, San Francisco,CA,94016 +309824,AA Batteries (4-pack),2,3.84,2019-12-05 16:54:00,240 1st St, Portland,OR,97035 +309825,USB-C Charging Cable,1,11.95,2019-12-18 09:33:00,213 Walnut St, Seattle,WA,98101 +309826,Wired Headphones,1,11.99,2019-12-26 19:01:00,818 4th St, Seattle,WA,98101 +309827,Apple Airpods Headphones,1,150.0,2019-12-22 11:17:00,827 Spruce St, San Francisco,CA,94016 +309828,34in Ultrawide Monitor,1,379.99,2019-12-06 19:59:00,984 Madison St, Atlanta,GA,30301 +309829,USB-C Charging Cable,1,11.95,2019-12-11 14:29:00,508 North St, San Francisco,CA,94016 +309830,AAA Batteries (4-pack),1,2.99,2019-12-29 20:23:00,297 10th St, Los Angeles,CA,90001 +309831,iPhone,1,700.0,2019-12-21 19:36:00,578 Wilson St, Los Angeles,CA,90001 +309832,27in FHD Monitor,1,149.99,2019-12-30 13:21:00,525 14th St, New York City,NY,10001 +309833,Wired Headphones,1,11.99,2019-12-10 13:33:00,195 Lakeview St, San Francisco,CA,94016 +309834,AA Batteries (4-pack),1,3.84,2019-12-09 21:23:00,568 Hill St, San Francisco,CA,94016 +309835,Lightning Charging Cable,1,14.95,2019-12-03 17:29:00,774 4th St, Los Angeles,CA,90001 +309836,Wired Headphones,1,11.99,2019-12-30 12:59:00,994 Forest St, Atlanta,GA,30301 +309837,Bose SoundSport Headphones,1,99.99,2019-12-16 03:14:00,356 4th St, Atlanta,GA,30301 +309838,AA Batteries (4-pack),1,3.84,2019-12-29 11:25:00,338 2nd St, San Francisco,CA,94016 +309839,Apple Airpods Headphones,1,150.0,2019-12-25 18:21:00,480 12th St, Boston,MA,02215 +309840,Bose SoundSport Headphones,1,99.99,2019-12-15 00:14:00,358 Meadow St, San Francisco,CA,94016 +309841,34in Ultrawide Monitor,1,379.99,2019-12-09 17:03:00,137 12th St, New York City,NY,10001 +309842,Bose SoundSport Headphones,1,99.99,2019-12-15 23:15:00,508 Park St, San Francisco,CA,94016 +309843,27in FHD Monitor,1,149.99,2019-12-05 15:30:00,534 11th St, Dallas,TX,75001 +309844,Bose SoundSport Headphones,2,99.99,2019-12-15 16:26:00,224 Park St, Atlanta,GA,30301 +309845,Apple Airpods Headphones,1,150.0,2019-12-18 15:30:00,961 13th St, Boston,MA,02215 +309846,Lightning Charging Cable,1,14.95,2019-12-17 12:59:00,43 14th St, New York City,NY,10001 +309847,AA Batteries (4-pack),1,3.84,2019-12-16 11:12:00,111 10th St, Dallas,TX,75001 +309848,AAA Batteries (4-pack),1,2.99,2019-12-28 11:46:00,437 Meadow St, Los Angeles,CA,90001 +309849,Lightning Charging Cable,1,14.95,2019-12-10 12:54:00,458 Forest St, San Francisco,CA,94016 +309850,Wired Headphones,1,11.99,2019-12-22 13:54:00,976 4th St, San Francisco,CA,94016 +309851,Bose SoundSport Headphones,1,99.99,2019-12-31 15:28:00,946 Church St, Atlanta,GA,30301 +309852,USB-C Charging Cable,1,11.95,2019-12-16 19:44:00,716 13th St, Boston,MA,02215 +309853,27in 4K Gaming Monitor,1,389.99,2019-12-30 11:06:00,506 Willow St, Seattle,WA,98101 +309854,Wired Headphones,2,11.99,2019-12-13 13:29:00,90 Lincoln St, Seattle,WA,98101 +309855,AAA Batteries (4-pack),2,2.99,2019-12-30 10:32:00,631 11th St, Los Angeles,CA,90001 +309856,34in Ultrawide Monitor,1,379.99,2019-12-23 19:49:00,438 13th St, Portland,OR,97035 +309857,27in FHD Monitor,1,149.99,2019-12-17 14:04:00,85 7th St, San Francisco,CA,94016 +309858,Apple Airpods Headphones,1,150.0,2019-12-11 04:55:00,236 Washington St, Los Angeles,CA,90001 +309859,Apple Airpods Headphones,1,150.0,2019-12-19 11:28:00,684 Forest St, Dallas,TX,75001 +309860,AA Batteries (4-pack),3,3.84,2019-12-06 15:11:00,794 Jefferson St, San Francisco,CA,94016 +309861,Macbook Pro Laptop,1,1700.0,2019-12-04 22:15:00,678 River St, Seattle,WA,98101 +309862,Apple Airpods Headphones,1,150.0,2019-12-16 13:10:00,948 Church St, Portland,ME,04101 +309863,Lightning Charging Cable,1,14.95,2019-12-29 08:32:00,599 Dogwood St, San Francisco,CA,94016 +309864,USB-C Charging Cable,1,11.95,2019-12-04 22:24:00,924 North St, Atlanta,GA,30301 +309865,27in FHD Monitor,1,149.99,2019-12-18 00:12:00,6 Dogwood St, Portland,OR,97035 +309866,34in Ultrawide Monitor,1,379.99,2019-12-22 18:54:00,954 10th St, Atlanta,GA,30301 +309867,20in Monitor,1,109.99,2019-12-12 02:51:00,811 Cherry St, San Francisco,CA,94016 +309868,USB-C Charging Cable,1,11.95,2019-12-23 17:19:00,891 Ridge St, Boston,MA,02215 +309869,Lightning Charging Cable,1,14.95,2019-12-19 13:29:00,442 Meadow St, San Francisco,CA,94016 +309870,USB-C Charging Cable,1,11.95,2019-12-30 13:37:00,508 Cedar St, San Francisco,CA,94016 +309871,27in 4K Gaming Monitor,1,389.99,2019-12-30 19:51:00,602 Madison St, Los Angeles,CA,90001 +309872,Apple Airpods Headphones,1,150.0,2019-12-25 09:42:00,733 4th St, New York City,NY,10001 +309873,34in Ultrawide Monitor,1,379.99,2019-12-11 00:23:00,266 Madison St, San Francisco,CA,94016 +309874,Wired Headphones,1,11.99,2019-12-01 09:20:00,785 Hill St, Atlanta,GA,30301 +309875,AA Batteries (4-pack),1,3.84,2019-12-04 18:18:00,392 12th St, Boston,MA,02215 +309876,AA Batteries (4-pack),1,3.84,2019-12-16 18:52:00,509 Dogwood St, San Francisco,CA,94016 +309877,iPhone,1,700.0,2019-12-23 20:38:00,1 Willow St, San Francisco,CA,94016 +309878,USB-C Charging Cable,1,11.95,2019-12-24 15:39:00,159 River St, San Francisco,CA,94016 +309879,Lightning Charging Cable,1,14.95,2019-12-17 12:08:00,637 Dogwood St, Boston,MA,02215 +309880,Lightning Charging Cable,1,14.95,2019-12-12 11:49:00,795 Park St, San Francisco,CA,94016 +309881,Bose SoundSport Headphones,1,99.99,2019-12-27 21:07:00,427 South St, San Francisco,CA,94016 +309882,USB-C Charging Cable,1,11.95,2019-12-29 11:29:00,19 Center St, San Francisco,CA,94016 +309883,AA Batteries (4-pack),4,3.84,2019-12-27 18:27:00,796 Chestnut St, San Francisco,CA,94016 +309884,Wired Headphones,1,11.99,2019-12-06 12:01:00,985 West St, Boston,MA,02215 +309885,AA Batteries (4-pack),1,3.84,2019-12-17 12:30:00,832 Spruce St, Seattle,WA,98101 +309886,Apple Airpods Headphones,1,150.0,2019-12-18 06:17:00,334 Spruce St, San Francisco,CA,94016 +309887,27in 4K Gaming Monitor,1,389.99,2019-12-20 12:54:00,492 Madison St, Los Angeles,CA,90001 +309888,AAA Batteries (4-pack),2,2.99,2019-12-15 13:18:00,869 Cedar St, New York City,NY,10001 +309889,34in Ultrawide Monitor,1,379.99,2019-12-25 11:56:00,373 Elm St, Los Angeles,CA,90001 +309890,Apple Airpods Headphones,1,150.0,2019-12-22 18:49:00,701 Adams St, Los Angeles,CA,90001 +309891,Macbook Pro Laptop,1,1700.0,2019-12-08 18:21:00,353 Jefferson St, Los Angeles,CA,90001 +309892,Lightning Charging Cable,1,14.95,2019-12-03 00:05:00,707 Highland St, Boston,MA,02215 +309893,Vareebadd Phone,1,400.0,2019-12-01 18:15:00,22 Washington St, Austin,TX,73301 +309894,Macbook Pro Laptop,1,1700.0,2019-12-30 23:20:00,342 Maple St, Dallas,TX,75001 +309895,USB-C Charging Cable,1,11.95,2019-12-31 11:41:00,269 Cherry St, Dallas,TX,75001 +309896,AA Batteries (4-pack),1,3.84,2019-12-04 10:11:00,118 Ridge St, Boston,MA,02215 +309897,Wired Headphones,1,11.99,2019-12-01 17:10:00,801 Spruce St, Los Angeles,CA,90001 +309898,ThinkPad Laptop,1,999.99,2019-12-29 16:45:00,321 Park St, Los Angeles,CA,90001 +309899,Bose SoundSport Headphones,1,99.99,2019-12-15 05:47:00,489 Forest St, Boston,MA,02215 +309900,Lightning Charging Cable,1,14.95,2019-12-03 20:01:00,355 Elm St, Boston,MA,02215 +309901,Macbook Pro Laptop,1,1700.0,2019-12-15 17:08:00,979 Main St, San Francisco,CA,94016 +309902,iPhone,1,700.0,2019-12-11 10:22:00,826 8th St, Los Angeles,CA,90001 +309903,27in 4K Gaming Monitor,1,389.99,2019-12-26 21:42:00,909 South St, Austin,TX,73301 +309904,ThinkPad Laptop,1,999.99,2019-12-14 15:14:00,408 Washington St, San Francisco,CA,94016 +309905,Wired Headphones,1,11.99,2019-12-23 17:53:00,212 Chestnut St, New York City,NY,10001 +309906,AA Batteries (4-pack),1,3.84,2019-12-30 11:12:00,311 Ridge St, Los Angeles,CA,90001 +309907,Google Phone,1,600.0,2019-12-07 09:14:00,839 Hill St, San Francisco,CA,94016 +309908,Bose SoundSport Headphones,1,99.99,2019-12-05 16:28:00,309 6th St, New York City,NY,10001 +309909,34in Ultrawide Monitor,1,379.99,2019-12-23 14:46:00,714 Center St, Atlanta,GA,30301 +309910,Macbook Pro Laptop,1,1700.0,2019-12-28 14:59:00,349 Willow St, Boston,MA,02215 +309911,AA Batteries (4-pack),1,3.84,2019-12-06 21:53:00,673 Church St, Los Angeles,CA,90001 +309912,Wired Headphones,1,11.99,2019-12-31 16:58:00,809 Pine St, Atlanta,GA,30301 +309913,Bose SoundSport Headphones,1,99.99,2019-12-09 14:04:00,180 Cedar St, San Francisco,CA,94016 +309914,Bose SoundSport Headphones,1,99.99,2019-12-21 12:53:00,460 4th St, Boston,MA,02215 +309915,Bose SoundSport Headphones,1,99.99,2019-12-23 13:03:00,913 Cherry St, Los Angeles,CA,90001 +309916,Wired Headphones,1,11.99,2019-12-23 18:42:00,302 Cedar St, Los Angeles,CA,90001 +309917,AAA Batteries (4-pack),1,2.99,2019-12-05 10:32:00,540 8th St, Dallas,TX,75001 +309918,Lightning Charging Cable,2,14.95,2019-12-31 00:53:00,501 10th St, Dallas,TX,75001 +309919,Apple Airpods Headphones,1,150.0,2019-12-16 09:27:00,537 Lincoln St, San Francisco,CA,94016 +309920,ThinkPad Laptop,1,999.99,2019-12-15 12:01:00,62 10th St, San Francisco,CA,94016 +309921,USB-C Charging Cable,1,11.95,2019-12-08 11:28:00,477 4th St, San Francisco,CA,94016 +309922,AA Batteries (4-pack),1,3.84,2019-12-17 13:46:00,985 Park St, Seattle,WA,98101 +309923,AA Batteries (4-pack),1,3.84,2019-12-09 18:37:00,335 13th St, Atlanta,GA,30301 +309924,Lightning Charging Cable,1,14.95,2019-12-10 11:27:00,837 Main St, Boston,MA,02215 +309925,USB-C Charging Cable,1,11.95,2019-12-15 10:20:00,419 River St, Boston,MA,02215 +309926,Lightning Charging Cable,1,14.95,2019-12-04 15:54:00,889 Dogwood St, Boston,MA,02215 +309927,34in Ultrawide Monitor,1,379.99,2019-12-25 10:22:00,530 Hickory St, San Francisco,CA,94016 +309928,AA Batteries (4-pack),1,3.84,2019-12-20 03:16:00,200 9th St, Boston,MA,02215 +309929,20in Monitor,1,109.99,2019-12-25 23:01:00,34 Hill St, Los Angeles,CA,90001 +309930,AA Batteries (4-pack),1,3.84,2019-12-15 20:22:00,163 Lake St, New York City,NY,10001 +309931,AAA Batteries (4-pack),2,2.99,2019-12-30 11:46:00,567 West St, Dallas,TX,75001 +309932,34in Ultrawide Monitor,1,379.99,2019-12-14 18:43:00,655 Forest St, New York City,NY,10001 +309933,Lightning Charging Cable,1,14.95,2019-12-22 16:53:00,686 Forest St, Los Angeles,CA,90001 +309934,Wired Headphones,1,11.99,2019-12-09 14:15:00,430 Highland St, Los Angeles,CA,90001 +309935,Lightning Charging Cable,1,14.95,2019-12-30 18:10:00,524 Adams St, San Francisco,CA,94016 +309936,34in Ultrawide Monitor,1,379.99,2019-12-28 20:21:00,386 Lakeview St, San Francisco,CA,94016 +309937,AA Batteries (4-pack),1,3.84,2019-12-20 17:59:00,308 Pine St, Los Angeles,CA,90001 +309938,AA Batteries (4-pack),1,3.84,2019-12-20 12:09:00,555 Hill St, Atlanta,GA,30301 +309939,27in 4K Gaming Monitor,1,389.99,2019-12-25 20:59:00,429 Elm St, Atlanta,GA,30301 +309940,LG Dryer,1,600.0,2019-12-27 15:21:00,515 Walnut St, Seattle,WA,98101 +309941,iPhone,1,700.0,2019-12-31 12:35:00,850 Cherry St, Boston,MA,02215 +309942,27in FHD Monitor,1,149.99,2019-12-05 09:12:00,463 Church St, San Francisco,CA,94016 +309943,USB-C Charging Cable,1,11.95,2019-12-09 11:25:00,610 West St, San Francisco,CA,94016 +309944,Wired Headphones,1,11.99,2019-12-04 14:36:00,367 14th St, New York City,NY,10001 +309945,Wired Headphones,1,11.99,2019-12-29 13:16:00,785 Elm St, Seattle,WA,98101 +309946,Wired Headphones,1,11.99,2019-12-20 22:25:00,158 Lincoln St, Los Angeles,CA,90001 +309947,Lightning Charging Cable,1,14.95,2019-12-25 03:20:00,428 6th St, Atlanta,GA,30301 +309948,Wired Headphones,1,11.99,2019-12-07 13:17:00,591 West St, Seattle,WA,98101 +309949,Macbook Pro Laptop,1,1700.0,2019-12-15 02:18:00,642 Wilson St, San Francisco,CA,94016 +309950,Apple Airpods Headphones,1,150.0,2019-12-07 17:21:00,741 9th St, San Francisco,CA,94016 +309951,Apple Airpods Headphones,3,150.0,2019-12-31 21:37:00,446 Walnut St, Boston,MA,02215 +309952,AAA Batteries (4-pack),2,2.99,2019-12-18 11:53:00,651 Lake St, Atlanta,GA,30301 +309953,Google Phone,1,600.0,2019-12-15 00:06:00,675 Meadow St, Seattle,WA,98101 +309954,AAA Batteries (4-pack),1,2.99,2019-12-25 10:08:00,817 Cedar St, New York City,NY,10001 +309955,USB-C Charging Cable,1,11.95,2019-12-31 15:33:00,824 Sunset St, Portland,OR,97035 +309956,AAA Batteries (4-pack),1,2.99,2019-12-03 10:54:00,160 Johnson St, Austin,TX,73301 +309957,AAA Batteries (4-pack),1,2.99,2019-12-10 20:50:00,811 11th St, San Francisco,CA,94016 +309958,AAA Batteries (4-pack),2,2.99,2019-12-29 22:19:00,653 Forest St, New York City,NY,10001 +309959,AA Batteries (4-pack),1,3.84,2019-12-08 16:21:00,639 South St, Los Angeles,CA,90001 +309960,Apple Airpods Headphones,1,150.0,2019-12-29 15:06:00,656 Spruce St, San Francisco,CA,94016 +309961,Bose SoundSport Headphones,1,99.99,2019-12-17 01:15:00,620 Spruce St, Los Angeles,CA,90001 +309962,Lightning Charging Cable,1,14.95,2019-12-23 10:34:00,804 Adams St, Los Angeles,CA,90001 +309963,ThinkPad Laptop,1,999.99,2019-12-10 11:12:00,922 Elm St, New York City,NY,10001 +309964,AAA Batteries (4-pack),2,2.99,2019-12-29 20:13:00,494 2nd St, Austin,TX,73301 +309965,34in Ultrawide Monitor,1,379.99,2019-12-24 14:21:00,391 Sunset St, Seattle,WA,98101 +309966,27in FHD Monitor,1,149.99,2019-12-29 11:30:00,886 Hill St, San Francisco,CA,94016 +309967,Apple Airpods Headphones,1,150.0,2019-12-29 23:34:00,592 Chestnut St, Seattle,WA,98101 +309968,Wired Headphones,1,11.99,2019-12-18 07:08:00,458 Pine St, Los Angeles,CA,90001 +309968,Apple Airpods Headphones,1,150.0,2019-12-18 07:08:00,458 Pine St, Los Angeles,CA,90001 +309969,Wired Headphones,1,11.99,2019-12-25 22:29:00,693 Meadow St, Los Angeles,CA,90001 +309970,Lightning Charging Cable,1,14.95,2019-12-02 10:08:00,335 7th St, Seattle,WA,98101 +309971,Google Phone,1,600.0,2019-12-29 03:20:00,633 Meadow St, Austin,TX,73301 +309972,Wired Headphones,1,11.99,2019-12-24 22:02:00,825 9th St, San Francisco,CA,94016 +309973,Wired Headphones,1,11.99,2019-12-20 10:25:00,274 Jackson St, Los Angeles,CA,90001 +309974,34in Ultrawide Monitor,1,379.99,2019-12-23 21:08:00,641 Lakeview St, Dallas,TX,75001 +309975,AAA Batteries (4-pack),1,2.99,2019-12-08 06:49:00,646 North St, Atlanta,GA,30301 +309976,Lightning Charging Cable,1,14.95,2019-12-16 20:40:00,741 13th St, Los Angeles,CA,90001 +309977,27in FHD Monitor,1,149.99,2019-12-13 09:09:00,408 6th St, Austin,TX,73301 +309978,Bose SoundSport Headphones,1,99.99,2019-12-11 06:01:00,17 11th St, San Francisco,CA,94016 +309979,27in 4K Gaming Monitor,1,389.99,2019-12-01 21:38:00,680 Jackson St, New York City,NY,10001 +309980,iPhone,1,700.0,2019-12-08 18:22:00,729 Jackson St, San Francisco,CA,94016 +309981,Lightning Charging Cable,1,14.95,2019-12-06 13:45:00,746 River St, Austin,TX,73301 +309982,27in 4K Gaming Monitor,1,389.99,2019-12-07 16:48:00,925 5th St, Los Angeles,CA,90001 +309982,27in FHD Monitor,1,149.99,2019-12-07 16:48:00,925 5th St, Los Angeles,CA,90001 +309983,Wired Headphones,1,11.99,2019-12-04 05:30:00,13 1st St, New York City,NY,10001 +309984,USB-C Charging Cable,1,11.95,2019-12-18 15:42:00,712 Main St, San Francisco,CA,94016 +309985,AAA Batteries (4-pack),1,2.99,2019-12-30 16:39:00,28 Hickory St, San Francisco,CA,94016 +309986,Lightning Charging Cable,1,14.95,2019-12-08 13:27:00,778 Wilson St, Seattle,WA,98101 +309987,Lightning Charging Cable,1,14.95,2019-12-26 12:19:00,580 13th St, Seattle,WA,98101 +309988,Bose SoundSport Headphones,1,99.99,2019-12-05 05:29:00,924 14th St, Dallas,TX,75001 +309989,Lightning Charging Cable,1,14.95,2019-12-23 11:50:00,2 6th St, Los Angeles,CA,90001 +309990,AA Batteries (4-pack),1,3.84,2019-12-11 23:53:00,990 Hickory St, Atlanta,GA,30301 +309991,AA Batteries (4-pack),2,3.84,2019-12-19 09:35:00,147 Chestnut St, Los Angeles,CA,90001 +309992,Bose SoundSport Headphones,1,99.99,2019-12-11 15:09:00,945 Maple St, Los Angeles,CA,90001 +309993,Wired Headphones,2,11.99,2019-12-17 16:21:00,752 Spruce St, Seattle,WA,98101 +309994,AA Batteries (4-pack),1,3.84,2019-12-29 14:03:00,281 10th St, Los Angeles,CA,90001 +309995,AAA Batteries (4-pack),2,2.99,2019-12-17 16:44:00,570 Walnut St, Dallas,TX,75001 +309996,iPhone,1,700.0,2019-12-14 18:56:00,229 Walnut St, New York City,NY,10001 +309997,Wired Headphones,1,11.99,2019-12-19 22:45:00,198 Maple St, San Francisco,CA,94016 +309998,AA Batteries (4-pack),1,3.84,2019-12-15 23:02:00,124 11th St, Boston,MA,02215 +309999,27in 4K Gaming Monitor,1,389.99,2019-12-30 15:23:00,196 Willow St, Boston,MA,02215 +310000,Apple Airpods Headphones,1,150.0,2019-12-27 22:24:00,740 Dogwood St, Dallas,TX,75001 +310001,USB-C Charging Cable,1,11.95,2019-12-14 17:54:00,305 Adams St, San Francisco,CA,94016 +310002,Lightning Charging Cable,1,14.95,2019-12-21 14:25:00,41 Wilson St, Seattle,WA,98101 +310003,Wired Headphones,1,11.99,2019-12-05 14:06:00,281 Washington St, Los Angeles,CA,90001 +310004,ThinkPad Laptop,1,999.99,2019-12-04 16:57:00,512 Jackson St, San Francisco,CA,94016 +310005,iPhone,1,700.0,2019-12-30 23:26:00,570 10th St, Boston,MA,02215 +310006,34in Ultrawide Monitor,1,379.99,2019-12-19 19:52:00,906 Johnson St, San Francisco,CA,94016 +310007,Lightning Charging Cable,1,14.95,2019-12-14 14:10:00,96 5th St, Dallas,TX,75001 +310008,Wired Headphones,1,11.99,2019-12-23 16:12:00,28 Cedar St, San Francisco,CA,94016 +310009,Wired Headphones,1,11.99,2019-12-13 11:22:00,872 North St, Boston,MA,02215 +310010,AAA Batteries (4-pack),1,2.99,2019-12-12 15:10:00,57 12th St, Boston,MA,02215 +310011,USB-C Charging Cable,1,11.95,2019-12-01 16:56:00,258 Washington St, Portland,OR,97035 +310012,AAA Batteries (4-pack),1,2.99,2019-12-08 12:17:00,41 Hickory St, Atlanta,GA,30301 +310013,AAA Batteries (4-pack),1,2.99,2019-12-05 15:47:00,1 Willow St, Portland,OR,97035 +310014,Wired Headphones,1,11.99,2019-12-04 11:03:00,168 Highland St, Boston,MA,02215 +310015,ThinkPad Laptop,1,999.99,2019-12-31 13:53:00,669 7th St, San Francisco,CA,94016 +310016,Lightning Charging Cable,1,14.95,2019-12-22 21:04:00,43 Cherry St, Portland,OR,97035 +310017,Lightning Charging Cable,1,14.95,2019-12-27 09:47:00,64 Chestnut St, Portland,ME,04101 +310018,27in FHD Monitor,1,149.99,2019-12-26 12:18:00,238 Cedar St, Boston,MA,02215 +310019,Lightning Charging Cable,4,14.95,2019-12-12 16:27:00,771 1st St, Boston,MA,02215 +310020,USB-C Charging Cable,1,11.95,2019-12-18 17:28:00,670 Dogwood St, Seattle,WA,98101 +310021,AA Batteries (4-pack),1,3.84,2019-12-31 20:19:00,600 South St, Dallas,TX,75001 +310022,Bose SoundSport Headphones,1,99.99,2019-12-13 12:34:00,262 West St, Seattle,WA,98101 +310023,Lightning Charging Cable,1,14.95,2019-12-04 21:02:00,573 Wilson St, Atlanta,GA,30301 +310024,AAA Batteries (4-pack),2,2.99,2019-12-21 09:57:00,890 Hill St, New York City,NY,10001 +310025,Apple Airpods Headphones,1,150.0,2019-12-26 19:36:00,35 Park St, Portland,OR,97035 +310026,Wired Headphones,1,11.99,2019-12-16 12:45:00,549 Highland St, Dallas,TX,75001 +310027,Wired Headphones,1,11.99,2019-12-07 13:19:00,541 13th St, New York City,NY,10001 +310028,Google Phone,1,600.0,2019-12-05 19:08:00,90 Washington St, Boston,MA,02215 +310029,Vareebadd Phone,1,400.0,2019-12-07 12:47:00,515 Walnut St, New York City,NY,10001 +310029,Wired Headphones,1,11.99,2019-12-07 12:47:00,515 Walnut St, New York City,NY,10001 +310030,USB-C Charging Cable,1,11.95,2019-12-19 18:41:00,388 Cherry St, Portland,ME,04101 +310031,27in FHD Monitor,1,149.99,2019-12-11 23:13:00,45 11th St, New York City,NY,10001 +310032,USB-C Charging Cable,1,11.95,2019-12-24 14:16:00,937 Washington St, Portland,ME,04101 +310033,Macbook Pro Laptop,1,1700.0,2019-12-19 08:25:00,568 Park St, Atlanta,GA,30301 +310034,iPhone,1,700.0,2019-12-28 13:16:00,837 Madison St, Seattle,WA,98101 +310035,Wired Headphones,1,11.99,2019-12-30 10:28:00,715 Jackson St, New York City,NY,10001 +310036,USB-C Charging Cable,1,11.95,2019-12-24 12:05:00,357 South St, Portland,OR,97035 +310037,20in Monitor,1,109.99,2019-12-11 10:53:00,671 Church St, Seattle,WA,98101 +310038,Lightning Charging Cable,1,14.95,2019-12-27 14:25:00,980 Highland St, San Francisco,CA,94016 +310039,34in Ultrawide Monitor,1,379.99,2019-12-07 14:22:00,326 Adams St, New York City,NY,10001 +310040,Bose SoundSport Headphones,1,99.99,2019-12-20 23:00:00,570 South St, San Francisco,CA,94016 +310041,Apple Airpods Headphones,1,150.0,2019-12-29 14:06:00,351 Maple St, Boston,MA,02215 +310042,AA Batteries (4-pack),1,3.84,2019-12-15 20:37:00,656 Lake St, New York City,NY,10001 +310043,AAA Batteries (4-pack),1,2.99,2019-12-06 20:05:00,849 5th St, Los Angeles,CA,90001 +310044,Macbook Pro Laptop,1,1700.0,2019-12-03 13:21:00,998 Meadow St, Boston,MA,02215 +310044,AA Batteries (4-pack),1,3.84,2019-12-03 13:21:00,998 Meadow St, Boston,MA,02215 +310045,Apple Airpods Headphones,1,150.0,2019-12-18 11:08:00,849 10th St, Boston,MA,02215 +310046,27in FHD Monitor,1,149.99,2019-12-27 19:16:00,766 West St, San Francisco,CA,94016 +310047,Bose SoundSport Headphones,1,99.99,2019-12-19 13:21:00,298 10th St, Los Angeles,CA,90001 +310048,Lightning Charging Cable,1,14.95,2019-12-05 15:31:00,717 Ridge St, New York City,NY,10001 +310049,Apple Airpods Headphones,1,150.0,2019-12-10 18:56:00,449 Washington St, San Francisco,CA,94016 +310050,27in 4K Gaming Monitor,1,389.99,2019-12-28 09:53:00,772 5th St, Seattle,WA,98101 +310051,34in Ultrawide Monitor,1,379.99,2019-12-16 20:12:00,752 6th St, San Francisco,CA,94016 +310052,Lightning Charging Cable,1,14.95,2019-12-17 13:47:00,408 13th St, San Francisco,CA,94016 +310053,Macbook Pro Laptop,1,1700.0,2019-12-24 11:23:00,351 Jefferson St, New York City,NY,10001 +310053,Wired Headphones,1,11.99,2019-12-24 11:23:00,351 Jefferson St, New York City,NY,10001 +310054,34in Ultrawide Monitor,1,379.99,2019-12-25 10:19:00,394 North St, Boston,MA,02215 +310055,AA Batteries (4-pack),1,3.84,2019-12-10 19:47:00,187 Hickory St, Atlanta,GA,30301 +310056,Apple Airpods Headphones,1,150.0,2019-12-19 10:41:00,572 Highland St, San Francisco,CA,94016 +310057,Macbook Pro Laptop,1,1700.0,2019-12-07 19:48:00,259 Maple St, Portland,OR,97035 +310058,USB-C Charging Cable,1,11.95,2019-12-11 14:25:00,698 Lakeview St, Boston,MA,02215 +310059,AA Batteries (4-pack),1,3.84,2019-12-20 21:32:00,494 Center St, Dallas,TX,75001 +310060,Flatscreen TV,1,300.0,2019-12-05 17:08:00,329 Cedar St, Atlanta,GA,30301 +310061,USB-C Charging Cable,1,11.95,2019-12-02 13:49:00,434 Willow St, Boston,MA,02215 +310062,Wired Headphones,1,11.99,2019-12-17 10:59:00,711 Willow St, San Francisco,CA,94016 +310063,Bose SoundSport Headphones,1,99.99,2019-12-26 18:26:00,297 Park St, San Francisco,CA,94016 +310064,USB-C Charging Cable,1,11.95,2019-12-12 15:18:00,229 8th St, San Francisco,CA,94016 +310065,Lightning Charging Cable,1,14.95,2019-12-03 10:54:00,861 6th St, San Francisco,CA,94016 +310066,AA Batteries (4-pack),2,3.84,2019-12-01 16:55:00,842 1st St, Atlanta,GA,30301 +310067,AA Batteries (4-pack),1,3.84,2019-12-04 11:30:00,432 Park St, Los Angeles,CA,90001 +310068,Lightning Charging Cable,1,14.95,2019-12-25 13:41:00,609 7th St, Boston,MA,02215 +310069,USB-C Charging Cable,1,11.95,2019-12-05 12:27:00,41 Spruce St, Austin,TX,73301 +310070,LG Washing Machine,1,600.0,2019-12-04 18:21:00,696 Cherry St, Dallas,TX,75001 +310071,Wired Headphones,1,11.99,2019-12-01 18:18:00,775 West St, San Francisco,CA,94016 +310072,Flatscreen TV,1,300.0,2019-12-23 20:53:00,941 Madison St, Boston,MA,02215 +310073,USB-C Charging Cable,1,11.95,2019-12-12 20:45:00,789 1st St, San Francisco,CA,94016 +310074,Apple Airpods Headphones,1,150.0,2020-01-01 01:46:00,636 Lakeview St, San Francisco,CA,94016 +310075,34in Ultrawide Monitor,1,379.99,2019-12-16 14:26:00,343 Washington St, Boston,MA,02215 +310076,USB-C Charging Cable,1,11.95,2019-12-25 12:18:00,244 South St, Boston,MA,02215 +310077,USB-C Charging Cable,1,11.95,2019-12-04 22:17:00,979 8th St, Atlanta,GA,30301 +310078,Macbook Pro Laptop,1,1700.0,2019-12-29 14:03:00,454 Jackson St, San Francisco,CA,94016 +310079,Wired Headphones,1,11.99,2019-12-20 13:41:00,186 Ridge St, San Francisco,CA,94016 +310080,20in Monitor,1,109.99,2019-12-06 13:32:00,496 North St, Portland,OR,97035 +310081,AAA Batteries (4-pack),1,2.99,2019-12-17 11:53:00,258 10th St, Austin,TX,73301 +310082,27in FHD Monitor,1,149.99,2019-12-20 18:57:00,13 Hickory St, Seattle,WA,98101 +310083,Bose SoundSport Headphones,1,99.99,2019-12-05 15:19:00,9 Dogwood St, Dallas,TX,75001 +310084,Wired Headphones,1,11.99,2019-12-02 17:13:00,851 Highland St, New York City,NY,10001 +310085,Lightning Charging Cable,1,14.95,2019-12-06 08:11:00,90 Adams St, Los Angeles,CA,90001 +310086,Bose SoundSport Headphones,1,99.99,2019-12-31 08:25:00,456 13th St, New York City,NY,10001 +310087,Macbook Pro Laptop,1,1700.0,2019-12-26 16:55:00,50 River St, Los Angeles,CA,90001 +310088,AAA Batteries (4-pack),1,2.99,2019-12-13 14:58:00,296 Meadow St, Los Angeles,CA,90001 +310089,iPhone,1,700.0,2019-12-18 11:05:00,908 Meadow St, San Francisco,CA,94016 +310090,27in FHD Monitor,1,149.99,2019-12-26 22:35:00,527 9th St, Seattle,WA,98101 +310091,USB-C Charging Cable,1,11.95,2019-12-07 14:58:00,993 Hill St, Los Angeles,CA,90001 +310092,Lightning Charging Cable,1,14.95,2019-12-20 19:25:00,380 Jefferson St, San Francisco,CA,94016 +310093,20in Monitor,1,109.99,2019-12-27 10:47:00,712 Cherry St, San Francisco,CA,94016 +310094,AAA Batteries (4-pack),2,2.99,2019-12-03 13:00:00,536 Meadow St, Los Angeles,CA,90001 +310095,Flatscreen TV,1,300.0,2019-12-18 16:43:00,941 Forest St, Seattle,WA,98101 +310096,USB-C Charging Cable,1,11.95,2019-12-09 14:40:00,471 Sunset St, Atlanta,GA,30301 +310097,Apple Airpods Headphones,1,150.0,2019-12-04 22:40:00,556 10th St, New York City,NY,10001 +310098,Google Phone,1,600.0,2019-12-08 19:48:00,679 Meadow St, New York City,NY,10001 +310099,Bose SoundSport Headphones,1,99.99,2019-12-28 11:59:00,688 Highland St, Seattle,WA,98101 +310100,Lightning Charging Cable,1,14.95,2019-12-19 16:00:00,667 Johnson St, Los Angeles,CA,90001 +310101,USB-C Charging Cable,1,11.95,2019-12-29 02:20:00,463 Pine St, San Francisco,CA,94016 +310102,AAA Batteries (4-pack),2,2.99,2019-12-04 01:02:00,370 9th St, Dallas,TX,75001 +310103,27in FHD Monitor,1,149.99,2019-12-30 16:18:00,301 Maple St, Atlanta,GA,30301 +310104,AAA Batteries (4-pack),1,2.99,2019-12-21 09:00:00,57 Jackson St, Los Angeles,CA,90001 +310105,AA Batteries (4-pack),1,3.84,2019-12-29 10:34:00,509 West St, Dallas,TX,75001 +310106,Flatscreen TV,1,300.0,2019-12-06 13:30:00,235 Meadow St, New York City,NY,10001 +310107,Wired Headphones,1,11.99,2019-12-17 10:43:00,876 6th St, San Francisco,CA,94016 +310108,20in Monitor,1,109.99,2019-12-25 17:10:00,993 Main St, Atlanta,GA,30301 +310109,Lightning Charging Cable,1,14.95,2019-12-06 20:22:00,258 7th St, San Francisco,CA,94016 +310110,Apple Airpods Headphones,1,150.0,2019-12-27 20:53:00,169 Willow St, Portland,OR,97035 +310111,Apple Airpods Headphones,1,150.0,2019-12-15 18:36:00,300 Wilson St, San Francisco,CA,94016 +310112,USB-C Charging Cable,1,11.95,2019-12-08 15:19:00,251 North St, San Francisco,CA,94016 +310113,AAA Batteries (4-pack),2,2.99,2019-12-30 10:48:00,665 Highland St, Los Angeles,CA,90001 +310114,AAA Batteries (4-pack),1,2.99,2019-12-04 14:53:00,149 Lakeview St, Seattle,WA,98101 +310115,Apple Airpods Headphones,1,150.0,2019-12-10 12:33:00,987 1st St, Los Angeles,CA,90001 +310116,Wired Headphones,1,11.99,2019-12-18 07:23:00,281 Highland St, Boston,MA,02215 +310117,Lightning Charging Cable,1,14.95,2019-12-14 08:33:00,15 Hill St, San Francisco,CA,94016 +310118,Apple Airpods Headphones,1,150.0,2019-12-19 11:28:00,440 Jackson St, Atlanta,GA,30301 +310119,USB-C Charging Cable,1,11.95,2019-12-13 11:24:00,77 Center St, San Francisco,CA,94016 +310120,Apple Airpods Headphones,1,150.0,2019-12-29 21:15:00,811 Johnson St, Seattle,WA,98101 +310121,USB-C Charging Cable,1,11.95,2019-12-16 20:03:00,266 Jefferson St, Dallas,TX,75001 +310122,AA Batteries (4-pack),1,3.84,2019-12-26 17:49:00,871 South St, San Francisco,CA,94016 +310123,Apple Airpods Headphones,1,150.0,2019-12-02 18:48:00,934 Spruce St, Boston,MA,02215 +310124,AA Batteries (4-pack),1,3.84,2019-12-08 16:23:00,205 Ridge St, Los Angeles,CA,90001 +310125,ThinkPad Laptop,1,999.99,2019-12-21 12:49:00,759 11th St, Portland,OR,97035 +310126,AA Batteries (4-pack),1,3.84,2019-12-16 20:08:00,951 8th St, Seattle,WA,98101 +310127,AA Batteries (4-pack),1,3.84,2019-12-14 15:06:00,4 North St, San Francisco,CA,94016 +310128,34in Ultrawide Monitor,1,379.99,2019-12-13 06:27:00,562 Hill St, New York City,NY,10001 +310129,AAA Batteries (4-pack),1,2.99,2019-12-20 20:25:00,389 Sunset St, San Francisco,CA,94016 +310130,AAA Batteries (4-pack),1,2.99,2019-12-21 08:06:00,99 Pine St, San Francisco,CA,94016 +310131,USB-C Charging Cable,1,11.95,2019-12-14 11:26:00,117 West St, San Francisco,CA,94016 +310132,Wired Headphones,1,11.99,2019-12-07 18:53:00,698 Church St, Seattle,WA,98101 +310133,27in 4K Gaming Monitor,1,389.99,2019-12-04 12:25:00,689 Lake St, New York City,NY,10001 +310134,AAA Batteries (4-pack),3,2.99,2019-12-17 11:50:00,776 Highland St, Los Angeles,CA,90001 +310134,ThinkPad Laptop,1,999.99,2019-12-17 11:50:00,776 Highland St, Los Angeles,CA,90001 +310135,iPhone,1,700.0,2019-12-13 20:36:00,37 Sunset St, Atlanta,GA,30301 +310136,Wired Headphones,1,11.99,2019-12-16 09:02:00,326 Lake St, Dallas,TX,75001 +310137,Lightning Charging Cable,1,14.95,2019-12-24 18:37:00,874 Pine St, Los Angeles,CA,90001 +310138,AAA Batteries (4-pack),1,2.99,2019-12-27 20:06:00,578 Spruce St, Los Angeles,CA,90001 +310139,AAA Batteries (4-pack),1,2.99,2019-12-07 19:54:00,405 South St, San Francisco,CA,94016 +310140,Lightning Charging Cable,1,14.95,2019-12-14 10:55:00,579 Meadow St, Seattle,WA,98101 +310141,AA Batteries (4-pack),3,3.84,2019-12-31 15:07:00,893 Highland St, Boston,MA,02215 +310142,Vareebadd Phone,1,400.0,2019-12-13 17:24:00,669 11th St, New York City,NY,10001 +310142,34in Ultrawide Monitor,1,379.99,2019-12-13 17:24:00,669 11th St, New York City,NY,10001 +310143,Apple Airpods Headphones,1,150.0,2019-12-20 11:15:00,626 2nd St, San Francisco,CA,94016 +310144,AA Batteries (4-pack),1,3.84,2019-12-10 14:05:00,717 5th St, Boston,MA,02215 +310145,Flatscreen TV,1,300.0,2019-12-17 11:12:00,931 9th St, San Francisco,CA,94016 +310146,34in Ultrawide Monitor,1,379.99,2019-12-04 18:26:00,947 Hickory St, New York City,NY,10001 +310147,27in FHD Monitor,1,149.99,2019-12-30 00:31:00,611 Lake St, Austin,TX,73301 +310148,USB-C Charging Cable,1,11.95,2019-12-26 13:34:00,463 Johnson St, Atlanta,GA,30301 +310148,AAA Batteries (4-pack),1,2.99,2019-12-26 13:34:00,463 Johnson St, Atlanta,GA,30301 +310149,Bose SoundSport Headphones,1,99.99,2019-12-05 17:56:00,204 11th St, Los Angeles,CA,90001 +310150,Lightning Charging Cable,1,14.95,2019-12-11 11:47:00,406 Willow St, San Francisco,CA,94016 +310151,Wired Headphones,1,11.99,2019-12-13 00:14:00,660 Jackson St, Los Angeles,CA,90001 +310152,AAA Batteries (4-pack),1,2.99,2019-12-01 23:07:00,446 Washington St, Seattle,WA,98101 +310153,27in 4K Gaming Monitor,1,389.99,2019-12-06 21:08:00,35 7th St, Boston,MA,02215 +310154,USB-C Charging Cable,1,11.95,2019-12-20 06:23:00,411 Lakeview St, Austin,TX,73301 +310155,Google Phone,1,600.0,2019-12-25 22:14:00,954 Lake St, Boston,MA,02215 +310156,AAA Batteries (4-pack),1,2.99,2019-12-21 11:57:00,337 11th St, Boston,MA,02215 +310157,AAA Batteries (4-pack),1,2.99,2019-12-04 16:55:00,422 2nd St, Los Angeles,CA,90001 +310158,Lightning Charging Cable,1,14.95,2019-12-09 12:48:00,825 6th St, San Francisco,CA,94016 +310159,Wired Headphones,1,11.99,2019-12-17 15:21:00,744 Church St, New York City,NY,10001 +310160,AAA Batteries (4-pack),2,2.99,2019-12-12 18:10:00,618 5th St, New York City,NY,10001 +310161,AA Batteries (4-pack),2,3.84,2019-12-09 19:51:00,228 8th St, Boston,MA,02215 +310162,27in FHD Monitor,1,149.99,2019-12-19 23:20:00,746 Wilson St, Los Angeles,CA,90001 +310163,Macbook Pro Laptop,1,1700.0,2019-12-11 15:19:00,255 Dogwood St, Boston,MA,02215 +310164,Bose SoundSport Headphones,1,99.99,2019-12-02 10:36:00,994 2nd St, New York City,NY,10001 +310165,Wired Headphones,1,11.99,2019-12-14 23:11:00,914 Elm St, Dallas,TX,75001 +310166,Flatscreen TV,1,300.0,2019-12-21 13:14:00,397 Willow St, Seattle,WA,98101 +310167,Wired Headphones,1,11.99,2019-12-26 14:39:00,114 Chestnut St, Dallas,TX,75001 +310167,27in 4K Gaming Monitor,1,389.99,2019-12-26 14:39:00,114 Chestnut St, Dallas,TX,75001 +310168,Bose SoundSport Headphones,1,99.99,2019-12-22 12:10:00,298 12th St, Atlanta,GA,30301 +310169,AAA Batteries (4-pack),1,2.99,2019-12-21 19:33:00,6 Hill St, San Francisco,CA,94016 +310170,Lightning Charging Cable,1,14.95,2019-12-02 22:43:00,120 Adams St, Seattle,WA,98101 +310171,27in 4K Gaming Monitor,1,389.99,2019-12-13 20:31:00,713 Hill St, San Francisco,CA,94016 +310172,AAA Batteries (4-pack),1,2.99,2019-12-06 03:41:00,136 12th St, Los Angeles,CA,90001 +310173,AA Batteries (4-pack),1,3.84,2019-12-19 14:19:00,596 South St, Seattle,WA,98101 +310174,AAA Batteries (4-pack),2,2.99,2019-12-18 22:48:00,568 Sunset St, San Francisco,CA,94016 +310175,Wired Headphones,1,11.99,2019-12-06 01:06:00,659 11th St, New York City,NY,10001 +310176,27in 4K Gaming Monitor,1,389.99,2019-12-30 18:41:00,455 Walnut St, Los Angeles,CA,90001 +310177,Wired Headphones,1,11.99,2019-12-07 12:27:00,673 Spruce St, Dallas,TX,75001 +310178,Wired Headphones,1,11.99,2019-12-07 11:53:00,705 Center St, Seattle,WA,98101 +310179,34in Ultrawide Monitor,1,379.99,2019-12-03 19:17:00,553 10th St, Dallas,TX,75001 +310180,Wired Headphones,1,11.99,2019-12-23 10:37:00,666 6th St, New York City,NY,10001 +310181,Macbook Pro Laptop,1,1700.0,2019-12-31 14:50:00,482 Walnut St, San Francisco,CA,94016 +310182,Bose SoundSport Headphones,1,99.99,2019-12-26 12:04:00,776 Church St, San Francisco,CA,94016 +310183,USB-C Charging Cable,1,11.95,2019-12-29 10:49:00,986 Main St, Los Angeles,CA,90001 +310184,Lightning Charging Cable,1,14.95,2019-12-16 12:56:00,309 12th St, Boston,MA,02215 +310185,34in Ultrawide Monitor,1,379.99,2019-12-08 13:36:00,469 Dogwood St, Los Angeles,CA,90001 +310186,Bose SoundSport Headphones,1,99.99,2019-12-03 17:03:00,802 Main St, San Francisco,CA,94016 +310187,Macbook Pro Laptop,1,1700.0,2019-12-20 18:57:00,253 2nd St, Seattle,WA,98101 +310188,Wired Headphones,1,11.99,2019-12-24 08:55:00,727 9th St, San Francisco,CA,94016 +310188,Apple Airpods Headphones,1,150.0,2019-12-24 08:55:00,727 9th St, San Francisco,CA,94016 +310189,AAA Batteries (4-pack),1,2.99,2019-12-14 20:15:00,851 Hickory St, Dallas,TX,75001 +310190,27in FHD Monitor,1,149.99,2019-12-05 08:19:00,562 Lakeview St, New York City,NY,10001 +310191,Lightning Charging Cable,1,14.95,2019-12-03 02:17:00,169 Lake St, Dallas,TX,75001 +310192,AAA Batteries (4-pack),2,2.99,2019-12-08 16:54:00,511 Cedar St, San Francisco,CA,94016 +310193,Lightning Charging Cable,1,14.95,2019-12-17 16:08:00,224 Cherry St, San Francisco,CA,94016 +310194,AA Batteries (4-pack),1,3.84,2019-12-14 16:32:00,339 Cherry St, San Francisco,CA,94016 +310195,Apple Airpods Headphones,1,150.0,2019-12-16 20:04:00,999 1st St, Atlanta,GA,30301 +310196,AAA Batteries (4-pack),2,2.99,2019-12-05 11:44:00,32 5th St, San Francisco,CA,94016 +310197,Wired Headphones,1,11.99,2019-12-22 04:28:00,116 Lake St, Boston,MA,02215 +310198,Apple Airpods Headphones,1,150.0,2019-12-16 18:32:00,765 West St, Seattle,WA,98101 +310199,Lightning Charging Cable,1,14.95,2019-12-08 19:34:00,545 Sunset St, San Francisco,CA,94016 +310200,Wired Headphones,1,11.99,2019-12-29 18:11:00,667 Hill St, Boston,MA,02215 +310201,27in 4K Gaming Monitor,1,389.99,2019-12-20 15:07:00,949 Pine St, Atlanta,GA,30301 +310202,27in 4K Gaming Monitor,1,389.99,2019-12-05 15:03:00,760 Meadow St, San Francisco,CA,94016 +310203,USB-C Charging Cable,1,11.95,2019-12-11 09:45:00,784 Jefferson St, Los Angeles,CA,90001 +310204,27in 4K Gaming Monitor,1,389.99,2019-12-14 12:53:00,918 River St, Seattle,WA,98101 +310205,27in 4K Gaming Monitor,1,389.99,2019-12-15 08:36:00,263 5th St, Los Angeles,CA,90001 +310206,ThinkPad Laptop,1,999.99,2019-12-03 03:35:00,941 9th St, Dallas,TX,75001 +310207,USB-C Charging Cable,1,11.95,2019-12-01 17:10:00,209 Center St, San Francisco,CA,94016 +310208,USB-C Charging Cable,1,11.95,2019-12-28 08:03:00,724 7th St, Los Angeles,CA,90001 +310209,Apple Airpods Headphones,1,150.0,2019-12-05 12:08:00,729 13th St, Boston,MA,02215 +310210,Wired Headphones,1,11.99,2019-12-01 21:05:00,342 Dogwood St, Austin,TX,73301 +310211,AA Batteries (4-pack),1,3.84,2019-12-20 07:37:00,347 Willow St, Los Angeles,CA,90001 +310212,Lightning Charging Cable,1,14.95,2019-12-27 10:40:00,71 Elm St, San Francisco,CA,94016 +310213,ThinkPad Laptop,1,999.99,2019-12-08 18:56:00,469 Spruce St, Dallas,TX,75001 +310214,20in Monitor,1,109.99,2019-12-12 17:05:00,913 Jefferson St, New York City,NY,10001 +310215,AAA Batteries (4-pack),1,2.99,2019-12-05 10:41:00,881 Highland St, New York City,NY,10001 +310216,USB-C Charging Cable,1,11.95,2019-12-21 11:28:00,734 Johnson St, Los Angeles,CA,90001 +310217,ThinkPad Laptop,1,999.99,2019-12-01 09:33:00,310 Jefferson St, Atlanta,GA,30301 +310218,Wired Headphones,1,11.99,2019-12-18 09:57:00,611 Washington St, Boston,MA,02215 +310219,AA Batteries (4-pack),1,3.84,2019-12-15 16:57:00,13 Maple St, San Francisco,CA,94016 +310220,USB-C Charging Cable,1,11.95,2019-12-06 15:32:00,150 Hickory St, San Francisco,CA,94016 +310221,27in FHD Monitor,1,149.99,2019-12-08 16:19:00,904 6th St, Los Angeles,CA,90001 +310222,Apple Airpods Headphones,1,150.0,2019-12-20 12:19:00,697 Hickory St, Los Angeles,CA,90001 +310223,Wired Headphones,1,11.99,2019-12-12 12:20:00,323 Ridge St, New York City,NY,10001 +310224,AA Batteries (4-pack),1,3.84,2019-12-07 23:53:00,633 Lake St, Austin,TX,73301 +310225,Bose SoundSport Headphones,1,99.99,2019-12-08 15:28:00,69 1st St, Dallas,TX,75001 +310226,Bose SoundSport Headphones,1,99.99,2019-12-12 22:03:00,95 Lake St, San Francisco,CA,94016 +310227,Bose SoundSport Headphones,1,99.99,2019-12-10 15:32:00,145 Forest St, Los Angeles,CA,90001 +310228,Lightning Charging Cable,2,14.95,2019-12-19 19:54:00,739 Main St, Dallas,TX,75001 +310229,LG Dryer,1,600.0,2019-12-28 17:33:00,798 6th St, Boston,MA,02215 +310230,USB-C Charging Cable,1,11.95,2019-12-06 11:27:00,661 Elm St, Boston,MA,02215 +310231,ThinkPad Laptop,1,999.99,2019-12-20 07:59:00,844 Highland St, San Francisco,CA,94016 +310232,Lightning Charging Cable,2,14.95,2019-12-15 15:02:00,985 Cedar St, Seattle,WA,98101 +310233,AAA Batteries (4-pack),1,2.99,2019-12-25 19:28:00,59 Lincoln St, Los Angeles,CA,90001 +310234,Vareebadd Phone,1,400.0,2019-12-08 10:51:00,746 Church St, Boston,MA,02215 +310235,34in Ultrawide Monitor,1,379.99,2019-12-19 11:31:00,337 Chestnut St, Boston,MA,02215 +310236,34in Ultrawide Monitor,1,379.99,2019-12-01 16:20:00,790 Spruce St, Atlanta,GA,30301 +310237,USB-C Charging Cable,1,11.95,2019-12-25 22:25:00,641 River St, San Francisco,CA,94016 +310238,USB-C Charging Cable,1,11.95,2019-12-11 12:35:00,978 Jefferson St, San Francisco,CA,94016 +310239,Bose SoundSport Headphones,1,99.99,2019-12-18 11:32:00,499 7th St, San Francisco,CA,94016 +310240,Lightning Charging Cable,1,14.95,2019-12-15 13:54:00,215 11th St, Los Angeles,CA,90001 +310241,Google Phone,1,600.0,2019-12-25 22:43:00,419 Pine St, New York City,NY,10001 +310241,USB-C Charging Cable,1,11.95,2019-12-25 22:43:00,419 Pine St, New York City,NY,10001 +310242,AA Batteries (4-pack),2,3.84,2019-12-16 20:18:00,743 Lincoln St, New York City,NY,10001 +310243,Flatscreen TV,1,300.0,2019-12-29 21:05:00,867 Walnut St, San Francisco,CA,94016 +310244,ThinkPad Laptop,1,999.99,2019-12-15 22:36:00,870 South St, Boston,MA,02215 +310245,AA Batteries (4-pack),1,3.84,2019-12-24 21:25:00,182 Jefferson St, Boston,MA,02215 +310246,AAA Batteries (4-pack),1,2.99,2019-12-09 16:13:00,829 Chestnut St, Boston,MA,02215 +310247,AA Batteries (4-pack),1,3.84,2019-12-16 10:18:00,409 Chestnut St, San Francisco,CA,94016 +310248,Bose SoundSport Headphones,1,99.99,2019-12-02 21:36:00,944 Main St, Seattle,WA,98101 +310249,AA Batteries (4-pack),1,3.84,2019-12-05 19:23:00,415 Jackson St, New York City,NY,10001 +310250,Google Phone,1,600.0,2019-12-29 07:34:00,654 Forest St, Dallas,TX,75001 +310250,Lightning Charging Cable,1,14.95,2019-12-29 07:34:00,654 Forest St, Dallas,TX,75001 +310251,27in FHD Monitor,1,149.99,2019-12-16 22:48:00,606 Highland St, Boston,MA,02215 +310252,27in FHD Monitor,1,149.99,2019-12-17 18:06:00,74 Elm St, Los Angeles,CA,90001 +310253,AA Batteries (4-pack),2,3.84,2019-12-23 21:21:00,982 Elm St, New York City,NY,10001 +310254,27in FHD Monitor,1,149.99,2019-12-20 12:03:00,949 8th St, Los Angeles,CA,90001 +310255,USB-C Charging Cable,2,11.95,2019-12-02 10:11:00,886 Cherry St, Boston,MA,02215 +310256,AA Batteries (4-pack),5,3.84,2019-12-18 10:44:00,523 6th St, San Francisco,CA,94016 +310257,Apple Airpods Headphones,1,150.0,2019-12-24 10:30:00,210 Johnson St, Los Angeles,CA,90001 +310258,Wired Headphones,1,11.99,2019-12-26 10:42:00,429 River St, San Francisco,CA,94016 +310259,AAA Batteries (4-pack),1,2.99,2019-12-02 12:34:00,84 4th St, San Francisco,CA,94016 +310260,Lightning Charging Cable,1,14.95,2019-12-18 18:25:00,206 Lake St, Portland,OR,97035 +310261,Macbook Pro Laptop,1,1700.0,2019-12-30 22:08:00,563 Forest St, San Francisco,CA,94016 +310262,Apple Airpods Headphones,1,150.0,2019-12-26 15:48:00,10 7th St, Los Angeles,CA,90001 +310263,AAA Batteries (4-pack),1,2.99,2019-12-15 11:53:00,756 Lake St, Seattle,WA,98101 +310264,USB-C Charging Cable,1,11.95,2019-12-10 10:39:00,477 Hickory St, Los Angeles,CA,90001 +310265,AAA Batteries (4-pack),1,2.99,2019-12-22 19:13:00,102 1st St, San Francisco,CA,94016 +310266,Flatscreen TV,1,300.0,2019-12-07 17:15:00,846 Elm St, Austin,TX,73301 +310267,Macbook Pro Laptop,1,1700.0,2019-12-19 20:32:00,609 4th St, Austin,TX,73301 +310268,Flatscreen TV,1,300.0,2019-12-08 19:35:00,696 8th St, Atlanta,GA,30301 +310269,AAA Batteries (4-pack),2,2.99,2019-12-04 12:08:00,41 9th St, San Francisco,CA,94016 +310270,Lightning Charging Cable,1,14.95,2019-12-23 17:01:00,829 10th St, San Francisco,CA,94016 +310271,Apple Airpods Headphones,1,150.0,2019-12-23 14:00:00,390 South St, New York City,NY,10001 +310272,Bose SoundSport Headphones,1,99.99,2019-12-04 13:42:00,782 11th St, Dallas,TX,75001 +310273,Wired Headphones,1,11.99,2019-12-30 19:20:00,864 Hickory St, Boston,MA,02215 +310274,AA Batteries (4-pack),1,3.84,2019-12-04 19:43:00,995 Sunset St, New York City,NY,10001 +310275,AA Batteries (4-pack),1,3.84,2019-12-09 14:59:00,324 Wilson St, Boston,MA,02215 +310276,Lightning Charging Cable,1,14.95,2019-12-08 22:25:00,566 Chestnut St, Seattle,WA,98101 +310277,Lightning Charging Cable,1,14.95,2019-12-02 16:15:00,778 Lakeview St, Austin,TX,73301 +310278,iPhone,1,700.0,2019-12-28 12:09:00,908 Lakeview St, New York City,NY,10001 +310279,AAA Batteries (4-pack),1,2.99,2019-12-10 20:01:00,838 Lakeview St, San Francisco,CA,94016 +310280,AA Batteries (4-pack),1,3.84,2019-12-19 22:06:00,416 Main St, Los Angeles,CA,90001 +310281,USB-C Charging Cable,1,11.95,2019-12-27 22:05:00,151 9th St, New York City,NY,10001 +310282,Apple Airpods Headphones,1,150.0,2019-12-29 19:35:00,731 Pine St, Boston,MA,02215 +310283,USB-C Charging Cable,1,11.95,2019-12-01 21:16:00,885 4th St, Boston,MA,02215 +310284,27in FHD Monitor,1,149.99,2019-12-01 15:13:00,667 Cedar St, New York City,NY,10001 +310285,Wired Headphones,1,11.99,2019-12-12 16:27:00,385 Washington St, San Francisco,CA,94016 +310286,AAA Batteries (4-pack),1,2.99,2019-12-19 14:39:00,510 Main St, Dallas,TX,75001 +310287,USB-C Charging Cable,1,11.95,2019-12-05 21:05:00,105 Park St, Boston,MA,02215 +310288,USB-C Charging Cable,1,11.95,2019-12-12 15:48:00,707 Hickory St, New York City,NY,10001 +310289,27in 4K Gaming Monitor,1,389.99,2019-12-05 23:29:00,13 Hickory St, San Francisco,CA,94016 +310290,AA Batteries (4-pack),1,3.84,2019-12-07 12:19:00,634 Highland St, Los Angeles,CA,90001 +310291,AAA Batteries (4-pack),1,2.99,2019-12-31 08:22:00,813 Dogwood St, San Francisco,CA,94016 +310292,Apple Airpods Headphones,1,150.0,2019-12-27 20:49:00,543 North St, San Francisco,CA,94016 +310293,Macbook Pro Laptop,1,1700.0,2019-12-16 05:00:00,459 Jefferson St, New York City,NY,10001 +310294,20in Monitor,1,109.99,2019-12-27 13:32:00,975 Sunset St, Austin,TX,73301 +310295,AAA Batteries (4-pack),1,2.99,2019-12-19 21:24:00,387 Madison St, Dallas,TX,75001 +310296,Bose SoundSport Headphones,1,99.99,2019-12-24 16:08:00,893 10th St, New York City,NY,10001 +310297,USB-C Charging Cable,1,11.95,2019-12-19 19:05:00,401 Dogwood St, San Francisco,CA,94016 +310298,20in Monitor,1,109.99,2019-12-13 15:05:00,839 Ridge St, Los Angeles,CA,90001 +310299,AAA Batteries (4-pack),2,2.99,2019-12-11 23:12:00,562 Hill St, Boston,MA,02215 +310300,Bose SoundSport Headphones,1,99.99,2019-12-22 22:27:00,994 Madison St, Los Angeles,CA,90001 +310301,AA Batteries (4-pack),1,3.84,2019-12-07 15:13:00,753 Sunset St, Austin,TX,73301 +310302,34in Ultrawide Monitor,1,379.99,2019-12-28 13:16:00,283 5th St, Seattle,WA,98101 +310303,AAA Batteries (4-pack),2,2.99,2019-12-17 10:29:00,990 7th St, New York City,NY,10001 +310304,AAA Batteries (4-pack),2,2.99,2019-12-17 14:25:00,954 11th St, New York City,NY,10001 +310305,27in FHD Monitor,1,149.99,2019-12-20 19:43:00,310 Lake St, San Francisco,CA,94016 +310306,Apple Airpods Headphones,1,150.0,2019-12-16 06:57:00,972 River St, New York City,NY,10001 +310307,Macbook Pro Laptop,1,1700.0,2019-12-26 16:51:00,841 Main St, Atlanta,GA,30301 +310308,27in FHD Monitor,1,149.99,2019-12-18 22:56:00,977 Johnson St, New York City,NY,10001 +310309,Wired Headphones,1,11.99,2019-12-06 13:52:00,170 Spruce St, Boston,MA,02215 +310310,AA Batteries (4-pack),1,3.84,2019-12-04 14:55:00,305 7th St, Boston,MA,02215 +310311,20in Monitor,1,109.99,2019-12-24 23:59:00,629 13th St, Boston,MA,02215 +310312,Apple Airpods Headphones,1,150.0,2019-12-05 14:02:00,200 Main St, Los Angeles,CA,90001 +310313,iPhone,1,700.0,2019-12-16 08:57:00,133 Madison St, San Francisco,CA,94016 +310313,Apple Airpods Headphones,1,150.0,2019-12-16 08:57:00,133 Madison St, San Francisco,CA,94016 +310314,20in Monitor,1,109.99,2019-12-04 10:46:00,990 11th St, Austin,TX,73301 +310315,27in FHD Monitor,1,149.99,2019-12-23 13:50:00,249 1st St, Atlanta,GA,30301 +310316,USB-C Charging Cable,1,11.95,2019-12-08 17:21:00,202 Lake St, Austin,TX,73301 +310317,Lightning Charging Cable,3,14.95,2019-12-27 12:16:00,82 Elm St, Dallas,TX,75001 +310318,AA Batteries (4-pack),1,3.84,2019-12-26 14:58:00,615 Lincoln St, Boston,MA,02215 +310319,Bose SoundSport Headphones,1,99.99,2019-12-22 15:21:00,395 Johnson St, New York City,NY,10001 +310320,AA Batteries (4-pack),1,3.84,2019-12-15 21:08:00,586 Elm St, San Francisco,CA,94016 +310321,USB-C Charging Cable,1,11.95,2019-12-12 11:21:00,236 Meadow St, Los Angeles,CA,90001 +310322,Lightning Charging Cable,1,14.95,2019-12-11 11:59:00,210 Highland St, Dallas,TX,75001 +310323,Wired Headphones,1,11.99,2019-12-24 11:43:00,235 Cedar St, Boston,MA,02215 +310324,Lightning Charging Cable,1,14.95,2019-12-19 15:21:00,814 Dogwood St, Boston,MA,02215 +310325,Google Phone,1,600.0,2019-12-04 21:48:00,310 Maple St, Boston,MA,02215 +310325,Bose SoundSport Headphones,1,99.99,2019-12-04 21:48:00,310 Maple St, Boston,MA,02215 +310326,Lightning Charging Cable,2,14.95,2019-12-27 21:40:00,281 4th St, San Francisco,CA,94016 +310327,Lightning Charging Cable,1,14.95,2019-12-04 22:06:00,823 Elm St, Seattle,WA,98101 +310328,Wired Headphones,1,11.99,2019-12-20 13:05:00,484 8th St, New York City,NY,10001 +310329,AAA Batteries (4-pack),1,2.99,2019-12-21 10:40:00,285 South St, Seattle,WA,98101 +310330,USB-C Charging Cable,1,11.95,2019-12-15 14:53:00,976 Walnut St, Atlanta,GA,30301 +310331,Lightning Charging Cable,1,14.95,2019-12-17 01:31:00,946 North St, Portland,ME,04101 +310332,34in Ultrawide Monitor,1,379.99,2019-12-25 17:53:00,424 Maple St, Boston,MA,02215 +310333,Bose SoundSport Headphones,1,99.99,2019-12-06 19:17:00,498 Willow St, Seattle,WA,98101 +310334,Wired Headphones,1,11.99,2019-12-10 12:06:00,687 2nd St, Seattle,WA,98101 +310335,AA Batteries (4-pack),1,3.84,2019-12-13 10:20:00,854 Johnson St, San Francisco,CA,94016 +310336,Google Phone,1,600.0,2019-12-06 05:07:00,936 6th St, Portland,OR,97035 +310336,USB-C Charging Cable,1,11.95,2019-12-06 05:07:00,936 6th St, Portland,OR,97035 +310337,Lightning Charging Cable,1,14.95,2019-12-15 11:58:00,549 Wilson St, Portland,ME,04101 +310338,Bose SoundSport Headphones,1,99.99,2019-12-19 16:32:00,798 West St, New York City,NY,10001 +310339,Lightning Charging Cable,1,14.95,2019-12-15 00:11:00,461 South St, Los Angeles,CA,90001 +310340,Wired Headphones,1,11.99,2019-12-29 10:21:00,871 Maple St, Los Angeles,CA,90001 +310341,USB-C Charging Cable,1,11.95,2019-12-18 18:56:00,490 North St, Dallas,TX,75001 +310342,Lightning Charging Cable,1,14.95,2019-12-09 07:07:00,292 Center St, San Francisco,CA,94016 +310343,Lightning Charging Cable,1,14.95,2019-12-28 21:28:00,832 Chestnut St, Dallas,TX,75001 +310344,AA Batteries (4-pack),1,3.84,2019-12-24 12:10:00,159 Washington St, Los Angeles,CA,90001 +310345,Bose SoundSport Headphones,1,99.99,2019-12-11 20:19:00,540 Lake St, Austin,TX,73301 +310346,27in 4K Gaming Monitor,1,389.99,2019-12-29 14:57:00,640 Forest St, Los Angeles,CA,90001 +310347,AA Batteries (4-pack),1,3.84,2019-12-27 11:40:00,543 Dogwood St, Los Angeles,CA,90001 +310348,Apple Airpods Headphones,1,150.0,2019-12-21 16:28:00,281 Highland St, Austin,TX,73301 +310349,Google Phone,1,600.0,2019-12-02 12:44:00,458 Jefferson St, San Francisco,CA,94016 +310350,Apple Airpods Headphones,1,150.0,2019-12-11 07:12:00,89 14th St, Seattle,WA,98101 +310351,USB-C Charging Cable,1,11.95,2019-12-01 15:49:00,202 Sunset St, San Francisco,CA,94016 +310352,Lightning Charging Cable,1,14.95,2019-12-24 19:59:00,225 Jackson St, Dallas,TX,75001 +310353,USB-C Charging Cable,1,11.95,2019-12-17 18:13:00,342 10th St, New York City,NY,10001 +310354,Lightning Charging Cable,1,14.95,2019-12-01 22:18:00,651 4th St, Boston,MA,02215 +310355,AA Batteries (4-pack),1,3.84,2019-12-20 12:10:00,817 Cedar St, New York City,NY,10001 +310356,LG Washing Machine,1,600.0,2019-12-18 08:53:00,834 Center St, New York City,NY,10001 +310357,Google Phone,1,600.0,2019-12-31 12:59:00,810 8th St, New York City,NY,10001 +310358,Flatscreen TV,1,300.0,2019-12-27 12:51:00,797 River St, Atlanta,GA,30301 +310359,Bose SoundSport Headphones,1,99.99,2019-12-08 21:44:00,734 West St, Portland,OR,97035 +310360,Wired Headphones,1,11.99,2019-12-10 12:53:00,153 7th St, San Francisco,CA,94016 +310361,USB-C Charging Cable,1,11.95,2019-12-11 19:09:00,909 North St, Seattle,WA,98101 +310362,Apple Airpods Headphones,1,150.0,2019-12-18 16:57:00,62 Hill St, Dallas,TX,75001 +310363,Macbook Pro Laptop,1,1700.0,2019-12-13 21:28:00,274 West St, Los Angeles,CA,90001 +310364,Apple Airpods Headphones,1,150.0,2019-12-05 15:57:00,122 Adams St, Austin,TX,73301 +310365,AA Batteries (4-pack),2,3.84,2019-12-06 12:03:00,837 8th St, Dallas,TX,75001 +310366,AA Batteries (4-pack),2,3.84,2019-12-21 21:02:00,746 5th St, Los Angeles,CA,90001 +310367,Apple Airpods Headphones,1,150.0,2019-12-18 11:45:00,799 Madison St, Atlanta,GA,30301 +310368,AAA Batteries (4-pack),1,2.99,2019-12-12 21:53:00,962 7th St, Atlanta,GA,30301 +310369,AA Batteries (4-pack),1,3.84,2019-12-13 13:25:00,242 11th St, San Francisco,CA,94016 +310370,AA Batteries (4-pack),1,3.84,2019-12-29 17:19:00,942 Cherry St, Dallas,TX,75001 +310371,AAA Batteries (4-pack),1,2.99,2019-12-10 04:30:00,108 4th St, Portland,ME,04101 +310372,Bose SoundSport Headphones,1,99.99,2019-12-25 10:44:00,851 South St, San Francisco,CA,94016 +310373,Wired Headphones,1,11.99,2019-12-05 11:01:00,107 Jackson St, Atlanta,GA,30301 +310374,Wired Headphones,1,11.99,2019-12-21 11:02:00,419 7th St, Los Angeles,CA,90001 +310375,Wired Headphones,1,11.99,2019-12-30 08:33:00,884 Washington St, New York City,NY,10001 +310376,Bose SoundSport Headphones,1,99.99,2019-12-03 14:53:00,660 Church St, Los Angeles,CA,90001 +310377,27in FHD Monitor,1,149.99,2019-12-14 14:03:00,641 8th St, Boston,MA,02215 +310378,AA Batteries (4-pack),1,3.84,2019-12-21 19:55:00,905 Ridge St, Seattle,WA,98101 +310379,AA Batteries (4-pack),1,3.84,2019-12-05 12:13:00,241 Highland St, Los Angeles,CA,90001 +310380,AA Batteries (4-pack),1,3.84,2019-12-30 12:06:00,839 Chestnut St, Dallas,TX,75001 +310381,AA Batteries (4-pack),1,3.84,2019-12-07 01:11:00,45 11th St, San Francisco,CA,94016 +310382,AA Batteries (4-pack),3,3.84,2019-12-05 10:06:00,51 1st St, Los Angeles,CA,90001 +310383,Vareebadd Phone,1,400.0,2019-12-14 12:18:00,579 Elm St, Austin,TX,73301 +310384,Lightning Charging Cable,1,14.95,2019-12-20 10:16:00,881 Highland St, Los Angeles,CA,90001 +310385,Flatscreen TV,1,300.0,2019-12-01 18:24:00,376 Sunset St, Seattle,WA,98101 +310386,27in FHD Monitor,1,149.99,2019-12-19 18:47:00,889 Meadow St, Dallas,TX,75001 +310387,USB-C Charging Cable,1,11.95,2019-12-18 22:05:00,340 Jefferson St, Seattle,WA,98101 +310388,Bose SoundSport Headphones,1,99.99,2019-12-04 08:59:00,198 South St, Seattle,WA,98101 +310389,Apple Airpods Headphones,2,150.0,2019-12-19 12:37:00,524 Adams St, Los Angeles,CA,90001 +310390,Google Phone,1,600.0,2019-12-03 19:39:00,2 Wilson St, Seattle,WA,98101 +310390,USB-C Charging Cable,1,11.95,2019-12-03 19:39:00,2 Wilson St, Seattle,WA,98101 +310391,AA Batteries (4-pack),1,3.84,2019-12-26 19:42:00,231 Hickory St, Boston,MA,02215 +310392,Lightning Charging Cable,1,14.95,2019-12-28 21:52:00,144 North St, New York City,NY,10001 +310393,USB-C Charging Cable,1,11.95,2019-12-06 18:56:00,282 Lincoln St, Los Angeles,CA,90001 +310394,Lightning Charging Cable,1,14.95,2019-12-21 23:53:00,987 Center St, New York City,NY,10001 +310395,USB-C Charging Cable,2,11.95,2019-12-11 07:28:00,301 Church St, Austin,TX,73301 +310396,Apple Airpods Headphones,1,150.0,2019-12-16 14:43:00,45 North St, Austin,TX,73301 +310397,Apple Airpods Headphones,1,150.0,2019-12-26 20:13:00,954 Washington St, Portland,OR,97035 +310398,USB-C Charging Cable,3,11.95,2019-12-24 13:29:00,687 Jefferson St, Dallas,TX,75001 +310399,Apple Airpods Headphones,1,150.0,2019-12-07 19:05:00,870 Jackson St, Atlanta,GA,30301 +310400,Wired Headphones,1,11.99,2019-12-11 15:18:00,468 Chestnut St, San Francisco,CA,94016 +310401,USB-C Charging Cable,1,11.95,2019-12-27 11:15:00,178 7th St, Atlanta,GA,30301 +310402,AAA Batteries (4-pack),2,2.99,2019-12-02 21:14:00,596 Forest St, Dallas,TX,75001 +310403,20in Monitor,1,109.99,2019-12-10 11:19:00,879 Maple St, Atlanta,GA,30301 +310404,Lightning Charging Cable,1,14.95,2019-12-11 14:50:00,742 Jefferson St, Atlanta,GA,30301 +310405,Wired Headphones,1,11.99,2019-12-14 10:17:00,827 North St, Dallas,TX,75001 +310406,Lightning Charging Cable,1,14.95,2019-12-29 14:52:00,660 8th St, New York City,NY,10001 +310407,USB-C Charging Cable,1,11.95,2019-12-20 20:41:00,382 Church St, Portland,OR,97035 +310408,USB-C Charging Cable,1,11.95,2019-12-03 23:19:00,578 14th St, New York City,NY,10001 +310409,AAA Batteries (4-pack),1,2.99,2019-12-10 18:37:00,722 1st St, Portland,OR,97035 +310410,AA Batteries (4-pack),1,3.84,2019-12-14 10:07:00,183 Maple St, New York City,NY,10001 +310411,Google Phone,1,600.0,2019-12-12 14:17:00,298 North St, Boston,MA,02215 +310411,USB-C Charging Cable,1,11.95,2019-12-12 14:17:00,298 North St, Boston,MA,02215 +310412,Lightning Charging Cable,1,14.95,2019-12-15 09:27:00,353 9th St, New York City,NY,10001 +310413,AA Batteries (4-pack),1,3.84,2019-12-16 06:41:00,319 Ridge St, San Francisco,CA,94016 +310414,Wired Headphones,1,11.99,2019-12-21 18:11:00,357 4th St, Los Angeles,CA,90001 +310415,iPhone,1,700.0,2019-12-01 19:07:00,322 2nd St, San Francisco,CA,94016 +310415,Wired Headphones,2,11.99,2019-12-01 19:07:00,322 2nd St, San Francisco,CA,94016 +310416,27in 4K Gaming Monitor,1,389.99,2019-12-06 19:34:00,307 12th St, Seattle,WA,98101 +310417,Macbook Pro Laptop,1,1700.0,2019-12-06 09:48:00,109 Sunset St, Los Angeles,CA,90001 +310418,AA Batteries (4-pack),1,3.84,2019-12-01 19:25:00,107 Center St, Los Angeles,CA,90001 +310419,Lightning Charging Cable,1,14.95,2019-12-29 23:57:00,52 6th St, New York City,NY,10001 +310420,AA Batteries (4-pack),1,3.84,2019-12-29 01:08:00,557 Cedar St, Los Angeles,CA,90001 +310421,AA Batteries (4-pack),2,3.84,2019-12-12 23:22:00,334 14th St, Los Angeles,CA,90001 +310422,AA Batteries (4-pack),1,3.84,2019-12-20 19:41:00,431 Maple St, Dallas,TX,75001 +310423,Lightning Charging Cable,1,14.95,2019-12-03 18:36:00,771 6th St, Seattle,WA,98101 +310424,Lightning Charging Cable,1,14.95,2019-12-31 10:43:00,398 Chestnut St, Atlanta,GA,30301 +310425,Lightning Charging Cable,1,14.95,2019-12-15 18:11:00,477 8th St, New York City,NY,10001 +310426,Lightning Charging Cable,1,14.95,2019-12-31 10:46:00,22 Chestnut St, San Francisco,CA,94016 +310427,Lightning Charging Cable,2,14.95,2019-12-27 17:14:00,169 Cedar St, San Francisco,CA,94016 +310428,Apple Airpods Headphones,1,150.0,2019-12-11 13:53:00,914 8th St, San Francisco,CA,94016 +310429,34in Ultrawide Monitor,1,379.99,2019-12-05 13:14:00,366 9th St, San Francisco,CA,94016 +310430,Flatscreen TV,1,300.0,2019-12-13 08:48:00,11 12th St, San Francisco,CA,94016 +310431,27in 4K Gaming Monitor,1,389.99,2019-12-01 22:19:00,390 Madison St, Los Angeles,CA,90001 +310432,Lightning Charging Cable,1,14.95,2019-12-15 10:57:00,350 Jefferson St, Portland,OR,97035 +310433,Wired Headphones,1,11.99,2019-12-12 12:55:00,825 Spruce St, Austin,TX,73301 +310434,ThinkPad Laptop,1,999.99,2019-12-12 08:26:00,725 Cedar St, Austin,TX,73301 +310435,Macbook Pro Laptop,1,1700.0,2019-12-07 09:51:00,745 Highland St, San Francisco,CA,94016 +310436,Apple Airpods Headphones,1,150.0,2019-12-17 09:30:00,813 Park St, Los Angeles,CA,90001 +310437,USB-C Charging Cable,1,11.95,2019-12-31 19:14:00,449 Maple St, Los Angeles,CA,90001 +310438,Wired Headphones,1,11.99,2019-12-24 10:01:00,58 Pine St, San Francisco,CA,94016 +310439,USB-C Charging Cable,1,11.95,2019-12-12 12:08:00,813 14th St, Portland,OR,97035 +310440,AAA Batteries (4-pack),3,2.99,2019-12-17 13:44:00,509 Elm St, Portland,OR,97035 +310441,27in 4K Gaming Monitor,1,389.99,2019-12-05 16:03:00,953 10th St, Seattle,WA,98101 +310442,Lightning Charging Cable,1,14.95,2019-12-27 22:04:00,38 10th St, Portland,OR,97035 +310443,Macbook Pro Laptop,1,1700.0,2019-12-11 14:57:00,617 Meadow St, New York City,NY,10001 +310444,USB-C Charging Cable,1,11.95,2019-12-10 17:22:00,243 Lincoln St, Los Angeles,CA,90001 +310445,27in FHD Monitor,1,149.99,2019-12-09 08:45:00,629 Wilson St, New York City,NY,10001 +310446,Bose SoundSport Headphones,1,99.99,2019-12-04 13:58:00,919 12th St, New York City,NY,10001 +310447,AAA Batteries (4-pack),2,2.99,2019-12-19 22:06:00,568 5th St, Atlanta,GA,30301 +310448,USB-C Charging Cable,1,11.95,2019-12-24 18:21:00,60 Park St, Los Angeles,CA,90001 +310449,Apple Airpods Headphones,1,150.0,2019-12-14 16:03:00,168 Highland St, Boston,MA,02215 +310450,Apple Airpods Headphones,1,150.0,2019-12-26 18:01:00,617 Cedar St, San Francisco,CA,94016 +310451,LG Dryer,1,600.0,2019-12-14 15:58:00,77 Willow St, New York City,NY,10001 +310452,USB-C Charging Cable,1,11.95,2019-12-13 17:31:00,768 Lincoln St, San Francisco,CA,94016 +310453,Apple Airpods Headphones,1,150.0,2019-12-27 21:32:00,320 1st St, Los Angeles,CA,90001 +310454,AA Batteries (4-pack),1,3.84,2019-12-30 15:30:00,530 Highland St, Los Angeles,CA,90001 +310455,Lightning Charging Cable,1,14.95,2019-12-27 23:15:00,558 10th St, New York City,NY,10001 +310456,34in Ultrawide Monitor,1,379.99,2019-12-20 16:59:00,128 5th St, Portland,OR,97035 +310457,Bose SoundSport Headphones,1,99.99,2019-12-22 16:49:00,250 Maple St, San Francisco,CA,94016 +310458,ThinkPad Laptop,1,999.99,2019-12-21 13:03:00,829 Cedar St, San Francisco,CA,94016 +310459,Wired Headphones,1,11.99,2019-12-05 11:45:00,542 Forest St, San Francisco,CA,94016 +310460,Flatscreen TV,1,300.0,2019-12-30 00:40:00,135 12th St, Dallas,TX,75001 +310461,34in Ultrawide Monitor,1,379.99,2019-12-12 18:31:00,5 Park St, Los Angeles,CA,90001 +310462,Wired Headphones,1,11.99,2019-12-04 05:18:00,592 Ridge St, Dallas,TX,75001 +310463,Bose SoundSport Headphones,1,99.99,2019-12-05 13:50:00,969 Meadow St, San Francisco,CA,94016 +310464,27in 4K Gaming Monitor,1,389.99,2019-12-28 22:29:00,906 Forest St, Portland,OR,97035 +310465,iPhone,1,700.0,2019-12-07 10:44:00,430 5th St, Boston,MA,02215 +310466,LG Washing Machine,1,600.0,2019-12-17 17:52:00,420 Church St, Los Angeles,CA,90001 +310467,27in FHD Monitor,1,149.99,2019-12-18 08:12:00,551 Highland St, Los Angeles,CA,90001 +310468,AA Batteries (4-pack),1,3.84,2019-12-01 16:22:00,543 11th St, Seattle,WA,98101 +310469,USB-C Charging Cable,1,11.95,2019-12-26 22:12:00,144 Wilson St, Atlanta,GA,30301 +310470,ThinkPad Laptop,1,999.99,2019-12-26 09:48:00,279 North St, Austin,TX,73301 +310471,AA Batteries (4-pack),2,3.84,2019-12-14 18:47:00,49 13th St, San Francisco,CA,94016 +310472,Wired Headphones,1,11.99,2019-12-12 11:38:00,471 Center St, San Francisco,CA,94016 +310473,27in FHD Monitor,1,149.99,2019-12-31 00:19:00,160 Madison St, San Francisco,CA,94016 +310474,Lightning Charging Cable,1,14.95,2019-12-22 19:10:00,818 5th St, Dallas,TX,75001 +310475,27in 4K Gaming Monitor,1,389.99,2019-12-29 23:05:00,812 11th St, Portland,OR,97035 +310476,Bose SoundSport Headphones,1,99.99,2019-12-22 16:02:00,977 Highland St, Austin,TX,73301 +310477,AAA Batteries (4-pack),1,2.99,2019-12-16 11:43:00,315 Elm St, Seattle,WA,98101 +310478,ThinkPad Laptop,1,999.99,2019-12-07 08:57:00,645 Chestnut St, Los Angeles,CA,90001 +310479,34in Ultrawide Monitor,1,379.99,2019-12-22 11:28:00,772 Center St, Boston,MA,02215 +310480,ThinkPad Laptop,1,999.99,2019-12-30 12:49:00,29 Meadow St, Boston,MA,02215 +310481,Apple Airpods Headphones,1,150.0,2019-12-31 10:31:00,333 Ridge St, Los Angeles,CA,90001 +310482,34in Ultrawide Monitor,1,379.99,2019-12-26 19:39:00,504 Sunset St, Atlanta,GA,30301 +310483,Wired Headphones,1,11.99,2019-12-20 23:06:00,259 Willow St, New York City,NY,10001 +310484,34in Ultrawide Monitor,1,379.99,2019-12-05 08:17:00,91 Maple St, Los Angeles,CA,90001 +310485,Lightning Charging Cable,1,14.95,2019-12-21 20:32:00,552 6th St, Portland,OR,97035 +310486,Google Phone,1,600.0,2019-12-17 15:05:00,230 10th St, Los Angeles,CA,90001 +310487,Lightning Charging Cable,1,14.95,2019-12-15 19:46:00,43 Lincoln St, Boston,MA,02215 +310488,Apple Airpods Headphones,1,150.0,2019-12-09 10:12:00,887 12th St, Dallas,TX,75001 +310489,Lightning Charging Cable,1,14.95,2019-12-15 14:17:00,482 Jackson St, Austin,TX,73301 +310490,Flatscreen TV,1,300.0,2019-12-09 19:03:00,793 8th St, Los Angeles,CA,90001 +310491,Wired Headphones,1,11.99,2019-12-31 17:06:00,112 Jefferson St, San Francisco,CA,94016 +310492,USB-C Charging Cable,1,11.95,2019-12-19 10:52:00,10 Walnut St, Seattle,WA,98101 +310493,AAA Batteries (4-pack),2,2.99,2019-12-08 15:14:00,621 North St, San Francisco,CA,94016 +310493,AAA Batteries (4-pack),1,2.99,2019-12-08 15:14:00,621 North St, San Francisco,CA,94016 +310494,Lightning Charging Cable,1,14.95,2019-12-21 09:20:00,125 South St, Los Angeles,CA,90001 +310495,Bose SoundSport Headphones,1,99.99,2019-12-13 15:01:00,914 Lincoln St, Boston,MA,02215 +310496,Wired Headphones,1,11.99,2019-12-09 21:56:00,861 8th St, Austin,TX,73301 +310497,Wired Headphones,1,11.99,2019-12-05 11:39:00,285 14th St, Dallas,TX,75001 +310498,iPhone,1,700.0,2019-12-01 18:36:00,713 Lake St, Dallas,TX,75001 +310498,Lightning Charging Cable,1,14.95,2019-12-01 18:36:00,713 Lake St, Dallas,TX,75001 +310499,Bose SoundSport Headphones,1,99.99,2019-12-23 13:55:00,733 12th St, New York City,NY,10001 +310500,Flatscreen TV,1,300.0,2019-12-14 14:18:00,936 Hickory St, Boston,MA,02215 +310501,AA Batteries (4-pack),1,3.84,2019-12-08 07:18:00,676 Adams St, San Francisco,CA,94016 +310502,Bose SoundSport Headphones,1,99.99,2019-12-22 18:08:00,196 10th St, San Francisco,CA,94016 +310503,Google Phone,1,600.0,2019-12-12 13:34:00,46 Ridge St, San Francisco,CA,94016 +310504,Lightning Charging Cable,1,14.95,2019-12-28 10:26:00,180 Church St, Los Angeles,CA,90001 +310505,AAA Batteries (4-pack),1,2.99,2019-12-25 07:19:00,19 West St, Boston,MA,02215 +310506,AAA Batteries (4-pack),1,2.99,2019-12-12 16:54:00,355 Washington St, Los Angeles,CA,90001 +310507,Wired Headphones,1,11.99,2019-12-01 19:50:00,348 7th St, New York City,NY,10001 +310508,27in 4K Gaming Monitor,1,389.99,2019-12-28 20:57:00,964 Hickory St, Los Angeles,CA,90001 +310509,Wired Headphones,1,11.99,2019-12-25 16:29:00,52 9th St, Boston,MA,02215 +310510,AA Batteries (4-pack),1,3.84,2019-12-03 10:26:00,845 1st St, San Francisco,CA,94016 +310511,AAA Batteries (4-pack),1,2.99,2019-12-03 15:00:00,373 10th St, San Francisco,CA,94016 +310512,Lightning Charging Cable,1,14.95,2019-12-30 17:58:00,85 12th St, San Francisco,CA,94016 +310513,AAA Batteries (4-pack),2,2.99,2019-12-10 15:47:00,521 Cherry St, Boston,MA,02215 +310514,20in Monitor,1,109.99,2019-12-19 11:14:00,938 North St, Seattle,WA,98101 +310515,20in Monitor,1,109.99,2019-12-28 15:12:00,93 Cedar St, Los Angeles,CA,90001 +310516,Wired Headphones,1,11.99,2019-12-14 19:17:00,474 Lakeview St, San Francisco,CA,94016 +310517,Flatscreen TV,1,300.0,2019-12-04 11:31:00,359 Walnut St, New York City,NY,10001 +310518,27in FHD Monitor,1,149.99,2019-12-08 17:01:00,890 Johnson St, San Francisco,CA,94016 +310519,Wired Headphones,1,11.99,2019-12-25 15:39:00,216 Cedar St, San Francisco,CA,94016 +310520,iPhone,1,700.0,2019-12-09 14:01:00,760 11th St, Atlanta,GA,30301 +310521,AAA Batteries (4-pack),1,2.99,2019-12-14 10:46:00,600 Wilson St, San Francisco,CA,94016 +310522,iPhone,1,700.0,2019-12-08 17:16:00,120 8th St, New York City,NY,10001 +310523,AAA Batteries (4-pack),1,2.99,2019-12-11 11:26:00,166 Main St, Austin,TX,73301 +310524,Bose SoundSport Headphones,1,99.99,2019-12-21 10:58:00,319 8th St, Portland,OR,97035 +310525,Lightning Charging Cable,1,14.95,2019-12-24 19:51:00,980 Maple St, Los Angeles,CA,90001 +310526,Lightning Charging Cable,1,14.95,2019-12-05 13:04:00,243 Hill St, Dallas,TX,75001 +310527,USB-C Charging Cable,1,11.95,2019-12-06 19:57:00,503 Jackson St, Atlanta,GA,30301 +310528,USB-C Charging Cable,1,11.95,2019-12-23 18:59:00,779 9th St, Seattle,WA,98101 +310529,20in Monitor,1,109.99,2019-12-28 15:36:00,580 7th St, San Francisco,CA,94016 +310530,27in 4K Gaming Monitor,1,389.99,2019-12-27 20:36:00,716 5th St, Austin,TX,73301 +310531,AAA Batteries (4-pack),3,2.99,2019-12-30 09:33:00,942 Elm St, Austin,TX,73301 +310532,Apple Airpods Headphones,1,150.0,2019-12-13 14:33:00,52 River St, Los Angeles,CA,90001 +310533,Wired Headphones,1,11.99,2019-12-26 09:49:00,862 River St, Dallas,TX,75001 +310534,ThinkPad Laptop,1,999.99,2019-12-16 19:23:00,258 Main St, New York City,NY,10001 +310535,AA Batteries (4-pack),1,3.84,2019-12-08 21:36:00,510 Hill St, San Francisco,CA,94016 +310536,Lightning Charging Cable,1,14.95,2019-12-23 15:17:00,97 Lakeview St, Los Angeles,CA,90001 +310537,iPhone,1,700.0,2019-12-23 17:47:00,359 South St, San Francisco,CA,94016 +310537,Lightning Charging Cable,1,14.95,2019-12-23 17:47:00,359 South St, San Francisco,CA,94016 +310538,AA Batteries (4-pack),1,3.84,2019-12-01 18:43:00,450 Adams St, Boston,MA,02215 +310539,Wired Headphones,1,11.99,2019-12-15 23:12:00,12 6th St, Atlanta,GA,30301 +310540,USB-C Charging Cable,1,11.95,2019-12-02 13:38:00,107 8th St, Seattle,WA,98101 +310541,Lightning Charging Cable,1,14.95,2019-12-25 15:12:00,122 Highland St, Los Angeles,CA,90001 +310542,34in Ultrawide Monitor,1,379.99,2019-12-01 11:28:00,195 9th St, New York City,NY,10001 +310543,AA Batteries (4-pack),2,3.84,2019-12-05 19:09:00,109 Main St, Atlanta,GA,30301 +310544,Apple Airpods Headphones,1,150.0,2019-12-25 08:47:00,595 Sunset St, Austin,TX,73301 +310545,34in Ultrawide Monitor,1,379.99,2019-12-25 09:01:00,937 Forest St, New York City,NY,10001 +310546,34in Ultrawide Monitor,1,379.99,2019-12-13 21:00:00,731 8th St, Los Angeles,CA,90001 +310547,AAA Batteries (4-pack),1,2.99,2019-12-20 08:37:00,792 Main St, Boston,MA,02215 +310548,AA Batteries (4-pack),1,3.84,2019-12-31 13:38:00,484 7th St, San Francisco,CA,94016 +310549,Macbook Pro Laptop,1,1700.0,2019-12-24 18:10:00,321 Cherry St, Los Angeles,CA,90001 +310550,27in 4K Gaming Monitor,1,389.99,2019-12-13 20:14:00,208 9th St, Atlanta,GA,30301 +310551,USB-C Charging Cable,2,11.95,2019-12-02 11:27:00,101 Highland St, San Francisco,CA,94016 +310552,AAA Batteries (4-pack),1,2.99,2019-12-29 19:44:00,320 13th St, Austin,TX,73301 +310553,Lightning Charging Cable,1,14.95,2019-12-21 18:37:00,742 Church St, Boston,MA,02215 +310554,USB-C Charging Cable,1,11.95,2019-12-13 13:15:00,411 Jefferson St, San Francisco,CA,94016 +310555,Apple Airpods Headphones,1,150.0,2019-12-31 11:52:00,398 13th St, Seattle,WA,98101 +310556,USB-C Charging Cable,1,11.95,2019-12-18 11:52:00,953 Washington St, San Francisco,CA,94016 +310557,Lightning Charging Cable,1,14.95,2019-12-31 19:31:00,655 Lakeview St, Portland,OR,97035 +310558,ThinkPad Laptop,1,999.99,2019-12-18 12:42:00,490 Forest St, Atlanta,GA,30301 +310559,Lightning Charging Cable,1,14.95,2019-12-10 17:42:00,427 West St, Atlanta,GA,30301 +310560,AAA Batteries (4-pack),1,2.99,2019-12-25 16:54:00,954 2nd St, New York City,NY,10001 +310561,AA Batteries (4-pack),1,3.84,2019-12-02 14:16:00,525 North St, Los Angeles,CA,90001 +310562,Wired Headphones,1,11.99,2019-12-17 15:50:00,982 Church St, Boston,MA,02215 +310563,Bose SoundSport Headphones,1,99.99,2019-12-17 06:17:00,675 Forest St, New York City,NY,10001 +310564,AAA Batteries (4-pack),2,2.99,2019-12-05 08:44:00,56 Cedar St, New York City,NY,10001 +310565,Flatscreen TV,1,300.0,2019-12-12 09:05:00,558 Wilson St, San Francisco,CA,94016 +310566,iPhone,1,700.0,2019-12-23 20:21:00,987 Washington St, New York City,NY,10001 +310567,Google Phone,1,600.0,2019-12-08 17:21:00,613 Maple St, Atlanta,GA,30301 +310568,AA Batteries (4-pack),1,3.84,2019-12-19 20:57:00,784 Cherry St, Boston,MA,02215 +310569,Lightning Charging Cable,1,14.95,2019-12-31 21:45:00,74 13th St, New York City,NY,10001 +310570,Lightning Charging Cable,1,14.95,2019-12-26 07:32:00,974 Forest St, Boston,MA,02215 +310571,USB-C Charging Cable,1,11.95,2019-12-01 07:29:00,913 West St, San Francisco,CA,94016 +310572,ThinkPad Laptop,1,999.99,2019-12-21 15:32:00,253 12th St, Boston,MA,02215 +310573,Apple Airpods Headphones,1,150.0,2019-12-07 09:51:00,288 South St, New York City,NY,10001 +310574,USB-C Charging Cable,1,11.95,2019-12-21 20:54:00,736 Dogwood St, Los Angeles,CA,90001 +310575,AA Batteries (4-pack),1,3.84,2019-12-09 22:04:00,415 Lincoln St, Atlanta,GA,30301 +310576,AAA Batteries (4-pack),1,2.99,2019-12-04 12:21:00,890 Jefferson St, Los Angeles,CA,90001 +310577,USB-C Charging Cable,1,11.95,2019-12-22 16:43:00,69 Lake St, Seattle,WA,98101 +310578,Bose SoundSport Headphones,1,99.99,2019-12-05 10:37:00,860 Jefferson St, Dallas,TX,75001 +310579,Flatscreen TV,1,300.0,2019-12-03 11:45:00,597 7th St, Los Angeles,CA,90001 +310580,Bose SoundSport Headphones,1,99.99,2019-12-04 13:00:00,138 Center St, San Francisco,CA,94016 +310581,Apple Airpods Headphones,1,150.0,2019-12-07 17:10:00,764 Meadow St, Los Angeles,CA,90001 +310582,Bose SoundSport Headphones,1,99.99,2019-12-11 08:22:00,275 Chestnut St, Los Angeles,CA,90001 +310583,Bose SoundSport Headphones,1,99.99,2019-12-18 22:51:00,891 Forest St, Atlanta,GA,30301 +310584,Lightning Charging Cable,1,14.95,2019-12-28 03:21:00,989 Lakeview St, New York City,NY,10001 +310585,Bose SoundSport Headphones,1,99.99,2019-12-12 10:13:00,86 6th St, Dallas,TX,75001 +310586,Lightning Charging Cable,1,14.95,2019-12-09 17:08:00,424 12th St, Los Angeles,CA,90001 +310587,Apple Airpods Headphones,1,150.0,2019-12-23 19:00:00,735 Hill St, San Francisco,CA,94016 +310588,Lightning Charging Cable,1,14.95,2019-12-14 11:41:00,862 Park St, San Francisco,CA,94016 +310589,USB-C Charging Cable,1,11.95,2019-12-28 16:49:00,270 Jefferson St, Boston,MA,02215 +310590,USB-C Charging Cable,1,11.95,2019-12-14 11:21:00,159 Center St, San Francisco,CA,94016 +310591,USB-C Charging Cable,1,11.95,2019-12-13 21:32:00,559 Wilson St, Seattle,WA,98101 +310592,AAA Batteries (4-pack),1,2.99,2019-12-10 19:38:00,839 West St, San Francisco,CA,94016 +310593,Apple Airpods Headphones,1,150.0,2019-12-23 10:44:00,408 Lake St, Dallas,TX,75001 +310594,Lightning Charging Cable,1,14.95,2019-12-14 12:11:00,514 Jackson St, Dallas,TX,75001 +310595,Bose SoundSport Headphones,1,99.99,2019-12-22 21:50:00,767 9th St, Los Angeles,CA,90001 +310596,USB-C Charging Cable,1,11.95,2019-12-13 16:09:00,562 Spruce St, San Francisco,CA,94016 +310597,34in Ultrawide Monitor,1,379.99,2019-12-09 22:22:00,345 Sunset St, Boston,MA,02215 +310598,ThinkPad Laptop,1,999.99,2019-12-30 01:18:00,419 Jefferson St, New York City,NY,10001 +310599,Apple Airpods Headphones,1,150.0,2019-12-14 21:47:00,747 7th St, Los Angeles,CA,90001 +310600,27in 4K Gaming Monitor,1,389.99,2019-12-05 13:33:00,239 8th St, Austin,TX,73301 +310601,Lightning Charging Cable,2,14.95,2019-12-23 00:46:00,54 Highland St, San Francisco,CA,94016 +310602,USB-C Charging Cable,1,11.95,2019-12-26 15:55:00,647 Main St, Atlanta,GA,30301 +310603,Wired Headphones,1,11.99,2019-12-19 20:26:00,63 Pine St, New York City,NY,10001 +310604,Lightning Charging Cable,1,14.95,2019-12-11 20:57:00,464 10th St, Boston,MA,02215 +310605,Wired Headphones,1,11.99,2019-12-13 10:43:00,823 Dogwood St, Boston,MA,02215 +310606,34in Ultrawide Monitor,1,379.99,2019-12-04 00:21:00,472 Ridge St, Portland,ME,04101 +310607,Wired Headphones,1,11.99,2019-12-14 23:32:00,382 Elm St, San Francisco,CA,94016 +310608,Macbook Pro Laptop,1,1700.0,2019-12-20 14:21:00,197 Lincoln St, San Francisco,CA,94016 +310609,AA Batteries (4-pack),2,3.84,2019-12-30 15:49:00,957 Johnson St, Los Angeles,CA,90001 +310610,USB-C Charging Cable,1,11.95,2019-12-15 19:55:00,992 Cherry St, San Francisco,CA,94016 +310611,AA Batteries (4-pack),1,3.84,2019-12-09 12:14:00,482 Chestnut St, Atlanta,GA,30301 +310612,AA Batteries (4-pack),1,3.84,2019-12-27 12:01:00,960 Park St, Atlanta,GA,30301 +310612,Apple Airpods Headphones,1,150.0,2019-12-27 12:01:00,960 Park St, Atlanta,GA,30301 +310613,AA Batteries (4-pack),3,3.84,2019-12-12 09:36:00,814 Center St, Los Angeles,CA,90001 +310614,AA Batteries (4-pack),1,3.84,2019-12-08 17:38:00,335 9th St, New York City,NY,10001 +310615,34in Ultrawide Monitor,1,379.99,2019-12-07 20:12:00,828 South St, San Francisco,CA,94016 +310616,AA Batteries (4-pack),1,3.84,2019-12-04 09:23:00,720 Washington St, San Francisco,CA,94016 +310617,Lightning Charging Cable,1,14.95,2019-12-12 19:01:00,570 Spruce St, Portland,OR,97035 +310618,27in 4K Gaming Monitor,1,389.99,2019-12-01 18:27:00,520 Lake St, Austin,TX,73301 +310619,Apple Airpods Headphones,1,150.0,2019-12-08 11:39:00,506 8th St, Seattle,WA,98101 +310620,Wired Headphones,1,11.99,2019-12-03 17:02:00,947 5th St, New York City,NY,10001 +310621,Wired Headphones,1,11.99,2019-12-28 00:05:00,244 Walnut St, San Francisco,CA,94016 +310621,USB-C Charging Cable,1,11.95,2019-12-28 00:05:00,244 Walnut St, San Francisco,CA,94016 +310622,Bose SoundSport Headphones,1,99.99,2019-12-30 21:36:00,815 Center St, New York City,NY,10001 +310623,Apple Airpods Headphones,1,150.0,2019-12-30 16:27:00,736 8th St, San Francisco,CA,94016 +310624,Google Phone,1,600.0,2019-12-25 22:13:00,537 Sunset St, Seattle,WA,98101 +310625,iPhone,1,700.0,2019-12-20 10:43:00,295 Lake St, Boston,MA,02215 +310626,AA Batteries (4-pack),2,3.84,2019-12-11 11:57:00,298 4th St, New York City,NY,10001 +310627,AAA Batteries (4-pack),2,2.99,2019-12-17 15:53:00,4 Sunset St, Boston,MA,02215 +310628,AA Batteries (4-pack),1,3.84,2019-12-15 04:32:00,652 Church St, New York City,NY,10001 +310629,AAA Batteries (4-pack),1,2.99,2019-12-05 10:49:00,867 Highland St, Seattle,WA,98101 +310630,Vareebadd Phone,1,400.0,2019-12-16 11:34:00,266 Hickory St, Atlanta,GA,30301 +310631,AA Batteries (4-pack),1,3.84,2019-12-13 14:49:00,333 13th St, Los Angeles,CA,90001 +310632,20in Monitor,1,109.99,2019-12-08 13:47:00,633 Center St, Seattle,WA,98101 +310633,AAA Batteries (4-pack),1,2.99,2019-12-28 21:47:00,872 Highland St, Seattle,WA,98101 +310634,34in Ultrawide Monitor,1,379.99,2019-12-20 13:42:00,669 Chestnut St, Austin,TX,73301 +310635,Lightning Charging Cable,1,14.95,2019-12-20 22:05:00,943 2nd St, Los Angeles,CA,90001 +310636,ThinkPad Laptop,1,999.99,2019-12-05 21:56:00,949 Center St, San Francisco,CA,94016 +310637,27in 4K Gaming Monitor,1,389.99,2019-12-28 09:36:00,248 Main St, San Francisco,CA,94016 +310638,34in Ultrawide Monitor,1,379.99,2019-12-15 18:09:00,656 14th St, New York City,NY,10001 +310639,AA Batteries (4-pack),1,3.84,2019-12-30 20:53:00,660 Madison St, New York City,NY,10001 +310640,Apple Airpods Headphones,1,150.0,2019-12-04 14:16:00,926 South St, Los Angeles,CA,90001 +310641,Lightning Charging Cable,1,14.95,2019-12-31 13:04:00,413 Park St, Dallas,TX,75001 +310642,Lightning Charging Cable,1,14.95,2019-12-10 12:19:00,837 River St, San Francisco,CA,94016 +310643,USB-C Charging Cable,1,11.95,2019-12-12 08:41:00,129 River St, Seattle,WA,98101 +310644,iPhone,1,700.0,2019-12-28 17:14:00,565 North St, New York City,NY,10001 +310645,AA Batteries (4-pack),1,3.84,2019-12-16 20:43:00,684 Adams St, Los Angeles,CA,90001 +310646,USB-C Charging Cable,1,11.95,2019-12-06 23:34:00,95 Church St, San Francisco,CA,94016 +310647,AAA Batteries (4-pack),2,2.99,2019-12-26 21:11:00,736 Cherry St, Los Angeles,CA,90001 +310648,USB-C Charging Cable,1,11.95,2019-12-11 12:27:00,213 Jefferson St, Boston,MA,02215 +310649,Apple Airpods Headphones,1,150.0,2019-12-12 19:16:00,818 North St, New York City,NY,10001 +310650,Flatscreen TV,1,300.0,2019-12-30 13:05:00,264 Spruce St, Boston,MA,02215 +310651,27in FHD Monitor,1,149.99,2019-12-14 00:25:00,969 14th St, San Francisco,CA,94016 +310652,Apple Airpods Headphones,1,150.0,2019-12-11 15:25:00,810 14th St, Los Angeles,CA,90001 +310653,AAA Batteries (4-pack),1,2.99,2019-12-31 15:29:00,531 Willow St, Atlanta,GA,30301 +310654,Flatscreen TV,1,300.0,2019-12-10 10:14:00,442 14th St, Los Angeles,CA,90001 +310655,34in Ultrawide Monitor,1,379.99,2019-12-04 05:31:00,844 Elm St, Austin,TX,73301 +310656,Lightning Charging Cable,1,14.95,2019-12-05 16:03:00,210 Washington St, Los Angeles,CA,90001 +310657,USB-C Charging Cable,1,11.95,2019-12-21 18:16:00,671 Main St, San Francisco,CA,94016 +310658,27in FHD Monitor,1,149.99,2019-12-07 07:59:00,718 Willow St, Los Angeles,CA,90001 +310659,Apple Airpods Headphones,1,150.0,2019-12-13 09:42:00,730 Jefferson St, Dallas,TX,75001 +310660,AA Batteries (4-pack),2,3.84,2019-12-31 13:45:00,770 Madison St, San Francisco,CA,94016 +310661,Apple Airpods Headphones,1,150.0,2019-12-31 15:06:00,161 Highland St, Los Angeles,CA,90001 +310662,LG Dryer,1,600.0,2019-12-09 13:34:00,276 Main St, New York City,NY,10001 +310663,Bose SoundSport Headphones,1,99.99,2019-12-08 22:20:00,884 Sunset St, Austin,TX,73301 +310664,27in 4K Gaming Monitor,1,389.99,2019-12-13 13:33:00,175 Johnson St, Los Angeles,CA,90001 +310664,AA Batteries (4-pack),1,3.84,2019-12-13 13:33:00,175 Johnson St, Los Angeles,CA,90001 +310665,USB-C Charging Cable,1,11.95,2019-12-17 17:28:00,522 Cedar St, San Francisco,CA,94016 +310666,USB-C Charging Cable,1,11.95,2019-12-03 08:40:00,677 Pine St, Los Angeles,CA,90001 +310667,Bose SoundSport Headphones,1,99.99,2019-12-30 12:44:00,7 1st St, Los Angeles,CA,90001 +310668,Macbook Pro Laptop,1,1700.0,2019-12-19 10:30:00,844 North St, Seattle,WA,98101 +310669,USB-C Charging Cable,1,11.95,2019-12-31 22:45:00,846 12th St, Los Angeles,CA,90001 +310670,AA Batteries (4-pack),1,3.84,2019-12-07 08:06:00,60 Willow St, San Francisco,CA,94016 +310671,USB-C Charging Cable,1,11.95,2019-12-22 10:11:00,344 11th St, Austin,TX,73301 +310672,Google Phone,1,600.0,2019-12-22 11:30:00,185 Jefferson St, Portland,ME,04101 +310673,Apple Airpods Headphones,1,150.0,2019-12-15 08:24:00,629 Hickory St, San Francisco,CA,94016 +310674,iPhone,1,700.0,2019-12-07 21:48:00,385 12th St, Atlanta,GA,30301 +310675,27in FHD Monitor,1,149.99,2019-12-26 16:54:00,91 9th St, Boston,MA,02215 +310676,AA Batteries (4-pack),5,3.84,2019-12-26 09:47:00,867 13th St, Austin,TX,73301 +310677,27in FHD Monitor,1,149.99,2019-12-27 21:22:00,221 Wilson St, Boston,MA,02215 +310678,Flatscreen TV,1,300.0,2019-12-06 18:27:00,688 Sunset St, Boston,MA,02215 +310679,USB-C Charging Cable,1,11.95,2019-12-18 07:42:00,533 Lincoln St, Dallas,TX,75001 +310680,Bose SoundSport Headphones,1,99.99,2019-12-02 21:42:00,255 Sunset St, Boston,MA,02215 +310681,AAA Batteries (4-pack),1,2.99,2019-12-21 11:45:00,272 14th St, Atlanta,GA,30301 +310682,iPhone,1,700.0,2019-12-16 12:14:00,290 Meadow St, Atlanta,GA,30301 +310683,AA Batteries (4-pack),1,3.84,2019-12-25 21:26:00,226 14th St, Portland,ME,04101 +310684,Flatscreen TV,1,300.0,2019-12-16 14:07:00,709 14th St, San Francisco,CA,94016 +310685,Lightning Charging Cable,1,14.95,2019-12-18 13:27:00,546 Ridge St, Dallas,TX,75001 +310686,USB-C Charging Cable,1,11.95,2019-12-03 20:34:00,494 Highland St, San Francisco,CA,94016 +310687,27in FHD Monitor,1,149.99,2019-12-15 11:33:00,603 Hill St, San Francisco,CA,94016 +310688,Bose SoundSport Headphones,1,99.99,2019-12-09 18:29:00,592 Chestnut St, San Francisco,CA,94016 +310689,AAA Batteries (4-pack),4,2.99,2019-12-07 22:41:00,809 10th St, Dallas,TX,75001 +310690,Google Phone,1,600.0,2019-12-01 13:40:00,558 Meadow St, Atlanta,GA,30301 +310691,Lightning Charging Cable,2,14.95,2019-12-17 02:21:00,656 Center St, San Francisco,CA,94016 +310692,Wired Headphones,1,11.99,2019-12-10 20:09:00,663 Main St, Atlanta,GA,30301 +310693,Google Phone,1,600.0,2019-12-05 09:05:00,586 Lake St, Atlanta,GA,30301 +310694,Vareebadd Phone,1,400.0,2019-12-06 13:08:00,696 Meadow St, Seattle,WA,98101 +310694,USB-C Charging Cable,1,11.95,2019-12-06 13:08:00,696 Meadow St, Seattle,WA,98101 +310695,AAA Batteries (4-pack),1,2.99,2019-12-18 09:54:00,172 Adams St, Los Angeles,CA,90001 +310696,Wired Headphones,1,11.99,2019-12-05 16:35:00,215 Walnut St, Atlanta,GA,30301 +310697,27in 4K Gaming Monitor,1,389.99,2019-12-12 19:05:00,832 Main St, San Francisco,CA,94016 +310698,USB-C Charging Cable,1,11.95,2019-12-27 11:47:00,568 North St, Seattle,WA,98101 +310699,Wired Headphones,1,11.99,2019-12-24 09:13:00,380 Church St, Atlanta,GA,30301 +310700,27in 4K Gaming Monitor,1,389.99,2019-12-06 12:26:00,803 Lincoln St, Los Angeles,CA,90001 +310701,Macbook Pro Laptop,1,1700.0,2019-12-03 17:34:00,142 West St, San Francisco,CA,94016 +310702,34in Ultrawide Monitor,1,379.99,2019-12-01 19:34:00,807 5th St, San Francisco,CA,94016 +310703,AAA Batteries (4-pack),1,2.99,2019-12-18 17:02:00,628 Spruce St, San Francisco,CA,94016 +310704,Flatscreen TV,1,300.0,2019-12-26 17:48:00,499 Cedar St, New York City,NY,10001 +310705,iPhone,1,700.0,2019-12-18 03:41:00,909 Hickory St, Los Angeles,CA,90001 +310705,Wired Headphones,1,11.99,2019-12-18 03:41:00,909 Hickory St, Los Angeles,CA,90001 +310706,Bose SoundSport Headphones,1,99.99,2019-12-06 22:49:00,289 Jefferson St, Seattle,WA,98101 +310707,27in FHD Monitor,1,149.99,2019-12-20 10:50:00,405 6th St, Boston,MA,02215 +310708,20in Monitor,1,109.99,2019-12-19 12:05:00,409 Chestnut St, Boston,MA,02215 +310709,Wired Headphones,1,11.99,2019-12-29 17:26:00,681 Highland St, Portland,OR,97035 +310710,Lightning Charging Cable,1,14.95,2019-12-05 01:04:00,544 Lakeview St, Boston,MA,02215 +310711,AA Batteries (4-pack),1,3.84,2019-12-31 11:04:00,984 Lincoln St, San Francisco,CA,94016 +310712,20in Monitor,1,109.99,2019-12-17 20:39:00,143 Johnson St, San Francisco,CA,94016 +310713,Apple Airpods Headphones,1,150.0,2019-12-12 18:50:00,584 8th St, Atlanta,GA,30301 +310714,34in Ultrawide Monitor,1,379.99,2019-12-01 16:55:00,638 6th St, San Francisco,CA,94016 +310715,Wired Headphones,1,11.99,2019-12-08 15:26:00,426 Park St, San Francisco,CA,94016 +310716,20in Monitor,1,109.99,2019-12-18 10:57:00,260 13th St, Los Angeles,CA,90001 +310717,Bose SoundSport Headphones,1,99.99,2019-12-06 09:44:00,94 Elm St, Dallas,TX,75001 +310718,Lightning Charging Cable,1,14.95,2019-12-19 08:47:00,818 6th St, New York City,NY,10001 +310719,Lightning Charging Cable,1,14.95,2019-12-29 17:32:00,40 Highland St, New York City,NY,10001 +310720,iPhone,1,700.0,2019-12-26 23:31:00,947 2nd St, Los Angeles,CA,90001 +310721,AAA Batteries (4-pack),4,2.99,2019-12-10 21:03:00,149 Main St, New York City,NY,10001 +310722,27in 4K Gaming Monitor,1,389.99,2019-12-27 08:14:00,477 Madison St, Boston,MA,02215 +310723,AAA Batteries (4-pack),1,2.99,2019-12-23 14:22:00,297 West St, San Francisco,CA,94016 +310724,34in Ultrawide Monitor,1,379.99,2019-12-23 11:16:00,674 South St, Atlanta,GA,30301 +310725,Wired Headphones,1,11.99,2019-12-26 05:54:00,358 Maple St, Los Angeles,CA,90001 +310726,Bose SoundSport Headphones,1,99.99,2019-12-16 11:31:00,184 Main St, Los Angeles,CA,90001 +310727,27in FHD Monitor,1,149.99,2019-12-15 17:12:00,492 Jefferson St, Austin,TX,73301 +310728,Lightning Charging Cable,1,14.95,2019-12-23 15:53:00,626 Cherry St, Boston,MA,02215 +310729,Apple Airpods Headphones,1,150.0,2019-12-09 17:59:00,514 Maple St, Dallas,TX,75001 +310730,Vareebadd Phone,1,400.0,2019-12-24 08:35:00,660 Walnut St, Portland,OR,97035 +310731,34in Ultrawide Monitor,1,379.99,2019-12-21 09:20:00,346 7th St, Atlanta,GA,30301 +310732,iPhone,1,700.0,2019-12-23 20:50:00,859 Center St, Seattle,WA,98101 +310733,Apple Airpods Headphones,1,150.0,2019-12-31 08:01:00,629 Church St, Boston,MA,02215 +310734,27in FHD Monitor,1,149.99,2019-12-20 09:47:00,52 South St, New York City,NY,10001 +310735,Lightning Charging Cable,1,14.95,2019-12-08 18:39:00,920 Hill St, Boston,MA,02215 +310736,USB-C Charging Cable,2,11.95,2019-12-21 15:00:00,93 7th St, Austin,TX,73301 +310737,Lightning Charging Cable,1,14.95,2019-12-13 00:12:00,526 Church St, San Francisco,CA,94016 +310737,Macbook Pro Laptop,1,1700.0,2019-12-13 00:12:00,526 Church St, San Francisco,CA,94016 +310738,Lightning Charging Cable,1,14.95,2019-12-08 13:41:00,819 5th St, Seattle,WA,98101 +310739,27in 4K Gaming Monitor,1,389.99,2019-12-04 11:50:00,960 Park St, New York City,NY,10001 +310740,Wired Headphones,1,11.99,2019-12-05 03:11:00,551 Dogwood St, San Francisco,CA,94016 +310741,Lightning Charging Cable,1,14.95,2019-12-07 08:30:00,663 Dogwood St, Atlanta,GA,30301 +310742,AA Batteries (4-pack),1,3.84,2019-12-31 10:57:00,114 Lakeview St, Seattle,WA,98101 +310743,Lightning Charging Cable,1,14.95,2019-12-08 07:49:00,2 Adams St, Portland,OR,97035 +310744,AA Batteries (4-pack),1,3.84,2019-12-25 13:19:00,459 Highland St, Portland,OR,97035 +310745,Bose SoundSport Headphones,1,99.99,2019-12-29 09:52:00,864 Forest St, Los Angeles,CA,90001 +310746,AA Batteries (4-pack),2,3.84,2019-12-31 21:42:00,860 6th St, Austin,TX,73301 +310747,AAA Batteries (4-pack),1,2.99,2019-12-13 13:05:00,743 Church St, San Francisco,CA,94016 +310748,Wired Headphones,2,11.99,2019-12-25 08:37:00,840 Ridge St, Boston,MA,02215 +310749,USB-C Charging Cable,1,11.95,2019-12-06 20:34:00,689 Cedar St, San Francisco,CA,94016 +310750,AA Batteries (4-pack),2,3.84,2019-12-19 11:22:00,819 2nd St, Seattle,WA,98101 +310751,Flatscreen TV,1,300.0,2019-12-12 16:33:00,440 11th St, San Francisco,CA,94016 +310752,AA Batteries (4-pack),2,3.84,2019-12-09 19:19:00,492 Walnut St, San Francisco,CA,94016 +310753,Google Phone,1,600.0,2019-12-20 17:55:00,27 Ridge St, Austin,TX,73301 +310754,AAA Batteries (4-pack),1,2.99,2019-12-19 08:11:00,529 1st St, Los Angeles,CA,90001 +310755,AA Batteries (4-pack),1,3.84,2019-12-31 08:13:00,249 Cedar St, Atlanta,GA,30301 +310756,Apple Airpods Headphones,1,150.0,2019-12-28 01:44:00,80 Hill St, Los Angeles,CA,90001 +310757,AAA Batteries (4-pack),1,2.99,2019-12-21 20:02:00,96 Hill St, San Francisco,CA,94016 +310758,Lightning Charging Cable,1,14.95,2019-12-09 16:08:00,103 11th St, San Francisco,CA,94016 +310759,Wired Headphones,2,11.99,2019-12-01 22:56:00,734 Lakeview St, Dallas,TX,75001 +310760,Lightning Charging Cable,1,14.95,2019-12-28 15:03:00,426 Hickory St, New York City,NY,10001 +310761,AAA Batteries (4-pack),2,2.99,2019-12-22 14:40:00,810 Maple St, Austin,TX,73301 +310762,USB-C Charging Cable,1,11.95,2019-12-30 20:24:00,972 Willow St, Boston,MA,02215 +310763,AA Batteries (4-pack),2,3.84,2019-12-09 08:18:00,870 10th St, Los Angeles,CA,90001 +310764,Apple Airpods Headphones,1,150.0,2019-12-25 22:52:00,351 Park St, San Francisco,CA,94016 +310765,AA Batteries (4-pack),3,3.84,2019-12-24 20:34:00,569 Jackson St, San Francisco,CA,94016 +310766,Apple Airpods Headphones,1,150.0,2019-12-11 07:22:00,978 5th St, San Francisco,CA,94016 +310767,Macbook Pro Laptop,1,1700.0,2019-12-28 18:45:00,814 14th St, Seattle,WA,98101 +310768,Macbook Pro Laptop,1,1700.0,2019-12-07 08:24:00,148 Park St, Atlanta,GA,30301 +310769,Google Phone,1,600.0,2019-12-02 12:20:00,346 11th St, San Francisco,CA,94016 +310769,USB-C Charging Cable,1,11.95,2019-12-02 12:20:00,346 11th St, San Francisco,CA,94016 +310770,Lightning Charging Cable,1,14.95,2019-12-02 22:35:00,149 Forest St, San Francisco,CA,94016 +310771,27in 4K Gaming Monitor,1,389.99,2019-12-19 17:56:00,537 Elm St, Dallas,TX,75001 +310772,AAA Batteries (4-pack),2,2.99,2019-12-11 12:57:00,964 Ridge St, New York City,NY,10001 +310773,iPhone,1,700.0,2019-12-05 11:16:00,415 Johnson St, Boston,MA,02215 +310773,Wired Headphones,1,11.99,2019-12-05 11:16:00,415 Johnson St, Boston,MA,02215 +310774,Flatscreen TV,1,300.0,2019-12-13 17:11:00,701 9th St, Dallas,TX,75001 +310775,USB-C Charging Cable,1,11.95,2019-12-08 14:41:00,948 Wilson St, Los Angeles,CA,90001 +310776,ThinkPad Laptop,1,999.99,2019-12-26 09:09:00,445 Elm St, San Francisco,CA,94016 +310777,USB-C Charging Cable,1,11.95,2019-12-17 08:20:00,350 Washington St, San Francisco,CA,94016 +310778,AA Batteries (4-pack),1,3.84,2019-12-25 07:36:00,131 Washington St, Austin,TX,73301 +310779,USB-C Charging Cable,2,11.95,2019-12-07 22:08:00,918 11th St, San Francisco,CA,94016 +310780,Lightning Charging Cable,1,14.95,2019-12-26 13:27:00,387 Willow St, San Francisco,CA,94016 +310781,Lightning Charging Cable,1,14.95,2019-12-17 22:35:00,229 Chestnut St, Austin,TX,73301 +310782,Wired Headphones,1,11.99,2019-12-26 19:47:00,952 Hickory St, Boston,MA,02215 +310783,27in FHD Monitor,1,149.99,2019-12-09 13:08:00,563 12th St, San Francisco,CA,94016 +310784,USB-C Charging Cable,1,11.95,2019-12-02 20:26:00,263 Jackson St, New York City,NY,10001 +310785,Wired Headphones,2,11.99,2019-12-31 00:57:00,41 Lincoln St, Boston,MA,02215 +310786,Apple Airpods Headphones,1,150.0,2019-12-19 14:44:00,354 Lincoln St, Atlanta,GA,30301 +310787,Lightning Charging Cable,1,14.95,2019-12-12 18:20:00,748 West St, Los Angeles,CA,90001 +310788,Google Phone,1,600.0,2019-12-14 17:40:00,254 Wilson St, Boston,MA,02215 +310789,Apple Airpods Headphones,1,150.0,2019-12-14 19:07:00,416 1st St, San Francisco,CA,94016 +310789,Flatscreen TV,1,300.0,2019-12-14 19:07:00,416 1st St, San Francisco,CA,94016 +310790,USB-C Charging Cable,1,11.95,2019-12-10 19:19:00,837 Wilson St, Los Angeles,CA,90001 +310791,USB-C Charging Cable,1,11.95,2019-12-28 17:27:00,775 Lakeview St, Austin,TX,73301 +310792,Bose SoundSport Headphones,1,99.99,2019-12-30 06:34:00,799 Hill St, Dallas,TX,75001 +310793,AA Batteries (4-pack),3,3.84,2019-12-14 22:01:00,820 Dogwood St, San Francisco,CA,94016 +310794,27in FHD Monitor,1,149.99,2019-12-29 01:18:00,871 1st St, Boston,MA,02215 +310795,27in 4K Gaming Monitor,1,389.99,2019-12-06 14:34:00,853 Jackson St, Seattle,WA,98101 +310795,AA Batteries (4-pack),1,3.84,2019-12-06 14:34:00,853 Jackson St, Seattle,WA,98101 +310796,USB-C Charging Cable,2,11.95,2019-12-25 08:22:00,486 Highland St, Austin,TX,73301 +310797,Wired Headphones,1,11.99,2019-12-21 12:51:00,555 Park St, Portland,OR,97035 +310798,AA Batteries (4-pack),2,3.84,2019-12-03 19:30:00,721 12th St, Los Angeles,CA,90001 +310799,AA Batteries (4-pack),1,3.84,2019-12-21 18:05:00,261 Willow St, Seattle,WA,98101 +310800,AA Batteries (4-pack),2,3.84,2019-12-28 10:23:00,839 Elm St, New York City,NY,10001 +310801,20in Monitor,1,109.99,2019-12-22 13:05:00,163 Adams St, Portland,ME,04101 +310802,Bose SoundSport Headphones,1,99.99,2019-12-23 06:27:00,994 4th St, Los Angeles,CA,90001 +310803,AAA Batteries (4-pack),1,2.99,2019-12-28 16:58:00,205 Church St, Los Angeles,CA,90001 +310804,iPhone,1,700.0,2019-12-23 17:51:00,177 Spruce St, New York City,NY,10001 +310805,AAA Batteries (4-pack),1,2.99,2019-12-08 11:15:00,436 8th St, San Francisco,CA,94016 +310806,Google Phone,1,600.0,2019-12-25 01:28:00,130 11th St, New York City,NY,10001 +310807,Apple Airpods Headphones,1,150.0,2019-12-22 10:22:00,168 Johnson St, Seattle,WA,98101 +310808,27in 4K Gaming Monitor,1,389.99,2019-12-09 15:43:00,625 Forest St, Boston,MA,02215 +310809,Apple Airpods Headphones,1,150.0,2019-12-27 23:05:00,451 Hickory St, Atlanta,GA,30301 +310810,20in Monitor,1,109.99,2019-12-27 07:19:00,405 North St, Dallas,TX,75001 +310811,Bose SoundSport Headphones,1,99.99,2019-12-26 12:47:00,513 Dogwood St, New York City,NY,10001 +310812,AA Batteries (4-pack),1,3.84,2019-12-12 23:27:00,672 North St, Boston,MA,02215 +310813,Bose SoundSport Headphones,1,99.99,2019-12-10 11:47:00,176 8th St, Portland,OR,97035 +310814,USB-C Charging Cable,1,11.95,2019-12-17 13:32:00,343 Main St, Los Angeles,CA,90001 +310815,Apple Airpods Headphones,1,150.0,2019-12-31 21:09:00,698 13th St, Austin,TX,73301 +310816,27in FHD Monitor,1,149.99,2019-12-21 13:21:00,595 Lake St, Seattle,WA,98101 +310817,Wired Headphones,1,11.99,2019-12-30 19:39:00,134 Madison St, Boston,MA,02215 +310818,iPhone,1,700.0,2019-12-07 18:17:00,323 North St, San Francisco,CA,94016 +310819,20in Monitor,1,109.99,2019-12-20 14:57:00,911 Jackson St, Austin,TX,73301 +310820,Bose SoundSport Headphones,1,99.99,2019-12-11 14:28:00,843 Sunset St, Los Angeles,CA,90001 +310821,Bose SoundSport Headphones,1,99.99,2019-12-19 22:56:00,93 8th St, Boston,MA,02215 +310822,AA Batteries (4-pack),1,3.84,2019-12-24 16:06:00,254 Maple St, Los Angeles,CA,90001 +310823,Apple Airpods Headphones,1,150.0,2019-12-23 21:15:00,326 11th St, New York City,NY,10001 +310824,iPhone,1,700.0,2019-12-09 20:41:00,229 Main St, New York City,NY,10001 +310825,27in FHD Monitor,1,149.99,2019-12-23 13:53:00,669 11th St, San Francisco,CA,94016 +310826,AAA Batteries (4-pack),1,2.99,2019-12-27 19:20:00,694 Cherry St, Los Angeles,CA,90001 +310827,AA Batteries (4-pack),1,3.84,2019-12-20 13:11:00,94 Madison St, Dallas,TX,75001 +310828,Apple Airpods Headphones,1,150.0,2019-12-22 16:52:00,365 Jackson St, San Francisco,CA,94016 +310829,Wired Headphones,1,11.99,2019-12-14 22:31:00,358 South St, Seattle,WA,98101 +310830,Flatscreen TV,1,300.0,2019-12-27 11:17:00,61 Wilson St, Atlanta,GA,30301 +310831,34in Ultrawide Monitor,1,379.99,2019-12-18 12:33:00,571 6th St, Dallas,TX,75001 +310832,USB-C Charging Cable,1,11.95,2019-12-24 15:11:00,727 Center St, Seattle,WA,98101 +310833,AA Batteries (4-pack),1,3.84,2019-12-18 15:47:00,968 Hill St, San Francisco,CA,94016 +310834,AA Batteries (4-pack),1,3.84,2019-12-18 19:40:00,920 10th St, San Francisco,CA,94016 +310835,USB-C Charging Cable,1,11.95,2019-12-29 19:10:00,276 Cedar St, San Francisco,CA,94016 +310836,AAA Batteries (4-pack),2,2.99,2019-12-11 22:16:00,458 Jefferson St, Portland,OR,97035 +310837,USB-C Charging Cable,1,11.95,2019-12-30 15:13:00,890 5th St, Boston,MA,02215 +310838,USB-C Charging Cable,1,11.95,2019-12-14 18:06:00,492 Dogwood St, Boston,MA,02215 +310839,Bose SoundSport Headphones,1,99.99,2019-12-23 16:29:00,747 Sunset St, Austin,TX,73301 +310840,27in 4K Gaming Monitor,1,389.99,2019-12-14 19:15:00,690 11th St, Boston,MA,02215 +310841,AA Batteries (4-pack),3,3.84,2019-12-25 23:02:00,177 River St, Austin,TX,73301 +310842,USB-C Charging Cable,1,11.95,2019-12-03 20:49:00,603 Meadow St, Boston,MA,02215 +310843,20in Monitor,1,109.99,2019-12-17 15:55:00,249 Highland St, San Francisco,CA,94016 +310844,Wired Headphones,1,11.99,2019-12-18 00:20:00,893 South St, Dallas,TX,75001 +310845,Bose SoundSport Headphones,1,99.99,2019-12-23 14:57:00,679 Maple St, New York City,NY,10001 +310846,AA Batteries (4-pack),1,3.84,2019-12-09 10:20:00,771 Adams St, Boston,MA,02215 +310847,Lightning Charging Cable,1,14.95,2019-12-24 17:27:00,501 Lake St, San Francisco,CA,94016 +310848,AAA Batteries (4-pack),4,2.99,2019-12-01 08:48:00,447 Washington St, New York City,NY,10001 +310849,Bose SoundSport Headphones,1,99.99,2019-12-22 14:16:00,683 South St, Los Angeles,CA,90001 +310850,Lightning Charging Cable,1,14.95,2019-12-06 13:03:00,275 Spruce St, Los Angeles,CA,90001 +310851,Apple Airpods Headphones,1,150.0,2019-12-09 00:07:00,518 2nd St, Los Angeles,CA,90001 +310852,USB-C Charging Cable,1,11.95,2019-12-29 16:01:00,172 Sunset St, New York City,NY,10001 +310853,AAA Batteries (4-pack),1,2.99,2019-12-04 16:00:00,75 Walnut St, San Francisco,CA,94016 +310854,USB-C Charging Cable,1,11.95,2019-12-10 14:12:00,510 Forest St, New York City,NY,10001 +310855,Apple Airpods Headphones,1,150.0,2019-12-04 09:39:00,799 Dogwood St, Austin,TX,73301 +310856,AAA Batteries (4-pack),1,2.99,2019-12-01 23:14:00,886 Wilson St, San Francisco,CA,94016 +310857,Vareebadd Phone,1,400.0,2019-12-28 14:28:00,206 Maple St, Austin,TX,73301 +310857,USB-C Charging Cable,1,11.95,2019-12-28 14:28:00,206 Maple St, Austin,TX,73301 +310858,Flatscreen TV,1,300.0,2019-12-10 19:27:00,417 Jackson St, Los Angeles,CA,90001 +310859,USB-C Charging Cable,1,11.95,2019-12-05 20:43:00,972 Ridge St, Dallas,TX,75001 +310860,Macbook Pro Laptop,1,1700.0,2019-12-09 21:14:00,482 Sunset St, San Francisco,CA,94016 +310861,Flatscreen TV,1,300.0,2019-12-31 19:07:00,169 Highland St, Boston,MA,02215 +310862,AAA Batteries (4-pack),1,2.99,2019-12-06 09:47:00,596 Dogwood St, Dallas,TX,75001 +310863,Wired Headphones,2,11.99,2019-12-04 19:41:00,537 Main St, Los Angeles,CA,90001 +310864,Google Phone,1,600.0,2019-12-24 20:29:00,666 Chestnut St, San Francisco,CA,94016 +310864,USB-C Charging Cable,2,11.95,2019-12-24 20:29:00,666 Chestnut St, San Francisco,CA,94016 +310865,AA Batteries (4-pack),1,3.84,2019-12-12 21:58:00,356 14th St, San Francisco,CA,94016 +310866,Google Phone,1,600.0,2019-12-23 09:37:00,639 9th St, Seattle,WA,98101 +310867,AA Batteries (4-pack),1,3.84,2019-12-19 08:42:00,580 Meadow St, Atlanta,GA,30301 +310868,USB-C Charging Cable,1,11.95,2019-12-25 07:39:00,317 Elm St, San Francisco,CA,94016 +310869,Lightning Charging Cable,1,14.95,2019-12-05 13:45:00,513 8th St, Seattle,WA,98101 +310870,Macbook Pro Laptop,1,1700.0,2019-12-18 11:18:00,903 Center St, Seattle,WA,98101 +310871,USB-C Charging Cable,1,11.95,2019-12-03 17:59:00,673 10th St, Los Angeles,CA,90001 +310872,Apple Airpods Headphones,1,150.0,2019-12-09 20:32:00,927 12th St, Seattle,WA,98101 +310873,Apple Airpods Headphones,1,150.0,2019-12-09 08:15:00,528 14th St, Boston,MA,02215 +310874,Flatscreen TV,1,300.0,2019-12-04 20:46:00,879 Highland St, Atlanta,GA,30301 +310875,27in FHD Monitor,1,149.99,2019-12-03 21:29:00,337 Spruce St, San Francisco,CA,94016 +310876,AAA Batteries (4-pack),1,2.99,2019-12-08 09:02:00,149 Jefferson St, Portland,OR,97035 +310877,Wired Headphones,2,11.99,2019-12-29 19:04:00,618 14th St, New York City,NY,10001 +310878,USB-C Charging Cable,2,11.95,2019-12-11 12:52:00,879 Hickory St, Atlanta,GA,30301 +310879,34in Ultrawide Monitor,1,379.99,2019-12-17 11:48:00,766 Highland St, Atlanta,GA,30301 +310880,27in 4K Gaming Monitor,1,389.99,2019-12-03 17:43:00,805 Cherry St, Boston,MA,02215 +310881,Bose SoundSport Headphones,1,99.99,2019-12-21 17:27:00,892 Hickory St, Los Angeles,CA,90001 +310882,USB-C Charging Cable,1,11.95,2019-12-16 17:25:00,886 West St, Los Angeles,CA,90001 +310883,Apple Airpods Headphones,1,150.0,2019-12-22 18:34:00,54 1st St, New York City,NY,10001 +310884,AAA Batteries (4-pack),2,2.99,2019-12-23 11:51:00,7 Willow St, New York City,NY,10001 +310885,AA Batteries (4-pack),2,3.84,2019-12-21 19:35:00,670 Ridge St, Portland,OR,97035 +310886,27in FHD Monitor,1,149.99,2019-12-08 00:01:00,421 Cherry St, Boston,MA,02215 +310887,27in FHD Monitor,1,149.99,2019-12-12 15:40:00,572 Jackson St, San Francisco,CA,94016 +310888,ThinkPad Laptop,1,999.99,2019-12-21 10:45:00,888 4th St, San Francisco,CA,94016 +310889,34in Ultrawide Monitor,1,379.99,2019-12-13 09:51:00,738 12th St, San Francisco,CA,94016 +310890,AA Batteries (4-pack),1,3.84,2019-12-18 20:09:00,191 Meadow St, Boston,MA,02215 +310891,USB-C Charging Cable,1,11.95,2019-12-17 22:27:00,837 10th St, Dallas,TX,75001 +310892,AA Batteries (4-pack),2,3.84,2019-12-14 16:32:00,592 Park St, San Francisco,CA,94016 +310893,USB-C Charging Cable,1,11.95,2019-12-07 07:50:00,671 Forest St, San Francisco,CA,94016 +310894,Apple Airpods Headphones,1,150.0,2019-12-23 14:56:00,906 River St, Boston,MA,02215 +310895,Apple Airpods Headphones,1,150.0,2019-12-11 16:34:00,261 Cedar St, New York City,NY,10001 +310896,Wired Headphones,1,11.99,2019-12-18 13:21:00,576 West St, Los Angeles,CA,90001 +310897,Bose SoundSport Headphones,1,99.99,2019-12-02 00:14:00,167 Johnson St, Atlanta,GA,30301 +310898,iPhone,1,700.0,2019-12-29 10:27:00,903 Dogwood St, Atlanta,GA,30301 +310898,Wired Headphones,1,11.99,2019-12-29 10:27:00,903 Dogwood St, Atlanta,GA,30301 +310899,USB-C Charging Cable,1,11.95,2019-12-02 19:49:00,569 Hill St, San Francisco,CA,94016 +310900,27in FHD Monitor,1,149.99,2019-12-16 19:14:00,238 Forest St, Boston,MA,02215 +310901,Wired Headphones,1,11.99,2019-12-07 14:23:00,971 Walnut St, Atlanta,GA,30301 +310902,34in Ultrawide Monitor,1,379.99,2019-12-02 10:44:00,661 Cedar St, New York City,NY,10001 +310903,AAA Batteries (4-pack),3,2.99,2019-12-08 09:21:00,448 Hill St, New York City,NY,10001 +310904,27in 4K Gaming Monitor,1,389.99,2019-12-14 23:00:00,706 10th St, Los Angeles,CA,90001 +310905,AA Batteries (4-pack),1,3.84,2019-12-05 11:40:00,140 Pine St, Boston,MA,02215 +310906,AAA Batteries (4-pack),1,2.99,2019-12-13 14:06:00,936 2nd St, Los Angeles,CA,90001 +310907,Lightning Charging Cable,1,14.95,2019-12-29 15:42:00,502 11th St, Los Angeles,CA,90001 +310908,Apple Airpods Headphones,1,150.0,2019-12-15 20:21:00,788 River St, Los Angeles,CA,90001 +310909,Lightning Charging Cable,1,14.95,2019-12-02 09:05:00,992 Adams St, Boston,MA,02215 +310910,Wired Headphones,1,11.99,2019-12-14 08:22:00,671 11th St, Los Angeles,CA,90001 +310911,Wired Headphones,1,11.99,2019-12-06 14:58:00,793 West St, New York City,NY,10001 +310912,Google Phone,1,600.0,2019-12-02 08:40:00,268 5th St, San Francisco,CA,94016 +310913,Apple Airpods Headphones,1,150.0,2019-12-12 11:15:00,366 Maple St, San Francisco,CA,94016 +310914,20in Monitor,1,109.99,2019-12-06 21:58:00,247 Maple St, Los Angeles,CA,90001 +310915,USB-C Charging Cable,1,11.95,2019-12-15 14:16:00,380 Church St, Seattle,WA,98101 +310916,27in 4K Gaming Monitor,1,389.99,2019-12-03 12:43:00,545 Adams St, Los Angeles,CA,90001 +310917,Lightning Charging Cable,1,14.95,2019-12-13 18:28:00,887 Elm St, San Francisco,CA,94016 +310918,AAA Batteries (4-pack),1,2.99,2019-12-21 14:37:00,307 Dogwood St, New York City,NY,10001 +310919,Bose SoundSport Headphones,1,99.99,2019-12-16 17:01:00,36 Lakeview St, Portland,OR,97035 +310920,Wired Headphones,1,11.99,2019-12-13 09:51:00,164 Madison St, Seattle,WA,98101 +310921,Bose SoundSport Headphones,1,99.99,2019-12-17 17:12:00,696 Elm St, Atlanta,GA,30301 +310922,27in 4K Gaming Monitor,1,389.99,2019-12-01 19:01:00,275 7th St, Austin,TX,73301 +310923,Flatscreen TV,1,300.0,2019-12-22 00:45:00,864 14th St, San Francisco,CA,94016 +310924,27in FHD Monitor,1,149.99,2019-12-16 18:41:00,608 Center St, San Francisco,CA,94016 +310925,Google Phone,1,600.0,2019-12-22 12:57:00,646 Pine St, Seattle,WA,98101 +310926,USB-C Charging Cable,1,11.95,2019-12-31 21:50:00,156 7th St, San Francisco,CA,94016 +310927,Bose SoundSport Headphones,1,99.99,2019-12-03 15:17:00,349 Johnson St, Los Angeles,CA,90001 +310928,USB-C Charging Cable,1,11.95,2019-12-29 19:20:00,81 Church St, Seattle,WA,98101 +310929,Bose SoundSport Headphones,1,99.99,2019-12-26 11:27:00,881 Center St, Seattle,WA,98101 +310930,Lightning Charging Cable,1,14.95,2019-12-03 03:35:00,725 Jackson St, San Francisco,CA,94016 +310931,AAA Batteries (4-pack),1,2.99,2019-12-02 17:16:00,311 Church St, Dallas,TX,75001 +310932,AA Batteries (4-pack),1,3.84,2019-12-18 16:54:00,411 Washington St, Los Angeles,CA,90001 +310933,ThinkPad Laptop,1,999.99,2019-12-09 11:28:00,843 Highland St, Los Angeles,CA,90001 +310934,27in 4K Gaming Monitor,1,389.99,2019-12-28 20:52:00,202 Spruce St, Atlanta,GA,30301 +310935,AA Batteries (4-pack),1,3.84,2019-12-19 14:03:00,92 Main St, Boston,MA,02215 +310936,Apple Airpods Headphones,1,150.0,2019-12-12 09:04:00,656 Meadow St, San Francisco,CA,94016 +310937,Bose SoundSport Headphones,1,99.99,2019-12-04 04:38:00,108 River St, Dallas,TX,75001 +310938,Wired Headphones,1,11.99,2019-12-30 18:00:00,716 Highland St, New York City,NY,10001 +310939,USB-C Charging Cable,1,11.95,2019-12-19 10:15:00,664 Walnut St, New York City,NY,10001 +310940,Apple Airpods Headphones,1,150.0,2019-12-18 16:46:00,814 Jackson St, New York City,NY,10001 +310941,AAA Batteries (4-pack),2,2.99,2019-12-19 16:35:00,349 4th St, San Francisco,CA,94016 +310942,AAA Batteries (4-pack),3,2.99,2019-12-01 19:39:00,188 12th St, Los Angeles,CA,90001 +310943,USB-C Charging Cable,1,11.95,2019-12-21 21:03:00,311 Hickory St, Seattle,WA,98101 +310944,Lightning Charging Cable,1,14.95,2019-12-17 21:07:00,500 Hill St, Los Angeles,CA,90001 +310945,Macbook Pro Laptop,1,1700.0,2019-12-05 09:48:00,124 Meadow St, Boston,MA,02215 +310946,27in FHD Monitor,1,149.99,2019-12-16 17:19:00,478 11th St, Los Angeles,CA,90001 +310947,34in Ultrawide Monitor,1,379.99,2019-12-15 15:54:00,847 Pine St, Los Angeles,CA,90001 +310948,Google Phone,1,600.0,2019-12-04 20:20:00,456 Meadow St, San Francisco,CA,94016 +310949,iPhone,1,700.0,2019-12-24 07:02:00,127 4th St, Seattle,WA,98101 +310950,20in Monitor,1,109.99,2019-12-27 12:43:00,308 Walnut St, San Francisco,CA,94016 +310951,Lightning Charging Cable,1,14.95,2019-12-22 13:46:00,195 Elm St, Boston,MA,02215 +310952,AA Batteries (4-pack),5,3.84,2019-12-20 17:36:00,427 North St, San Francisco,CA,94016 +310953,Lightning Charging Cable,1,14.95,2019-12-18 19:15:00,36 12th St, San Francisco,CA,94016 +310954,Bose SoundSport Headphones,1,99.99,2019-12-11 07:21:00,472 Willow St, San Francisco,CA,94016 +310955,Google Phone,1,600.0,2019-12-26 17:43:00,752 14th St, San Francisco,CA,94016 +310956,AA Batteries (4-pack),1,3.84,2019-12-29 12:45:00,123 Adams St, Boston,MA,02215 +310957,Wired Headphones,1,11.99,2019-12-27 23:46:00,47 Jackson St, San Francisco,CA,94016 +310958,Macbook Pro Laptop,1,1700.0,2019-12-18 14:40:00,644 Johnson St, Seattle,WA,98101 +310958,Apple Airpods Headphones,1,150.0,2019-12-18 14:40:00,644 Johnson St, Seattle,WA,98101 +310959,Bose SoundSport Headphones,1,99.99,2019-12-06 12:05:00,352 River St, San Francisco,CA,94016 +310960,USB-C Charging Cable,1,11.95,2019-12-23 18:43:00,393 14th St, San Francisco,CA,94016 +310961,34in Ultrawide Monitor,1,379.99,2019-12-12 18:13:00,279 Maple St, Boston,MA,02215 +310962,Flatscreen TV,1,300.0,2019-12-17 16:09:00,758 Pine St, New York City,NY,10001 +310963,iPhone,1,700.0,2019-12-25 17:23:00,960 Adams St, New York City,NY,10001 +310964,Apple Airpods Headphones,1,150.0,2019-12-05 13:10:00,858 11th St, Atlanta,GA,30301 +310965,34in Ultrawide Monitor,1,379.99,2019-12-31 19:42:00,566 Jefferson St, San Francisco,CA,94016 +310966,AAA Batteries (4-pack),1,2.99,2019-12-24 14:35:00,127 Maple St, Dallas,TX,75001 +310967,Lightning Charging Cable,1,14.95,2019-12-21 17:57:00,967 North St, New York City,NY,10001 +310968,Macbook Pro Laptop,1,1700.0,2019-12-12 11:14:00,556 North St, San Francisco,CA,94016 +310969,AA Batteries (4-pack),2,3.84,2019-12-04 10:38:00,102 Cedar St, Atlanta,GA,30301 +310970,AAA Batteries (4-pack),1,2.99,2019-12-28 17:08:00,708 Jackson St, San Francisco,CA,94016 +310971,Apple Airpods Headphones,1,150.0,2019-12-05 22:34:00,190 Johnson St, Los Angeles,CA,90001 +310972,AA Batteries (4-pack),1,3.84,2019-12-29 12:01:00,103 Dogwood St, Dallas,TX,75001 +310973,Macbook Pro Laptop,1,1700.0,2019-12-18 11:30:00,209 South St, Seattle,WA,98101 +310974,Vareebadd Phone,1,400.0,2019-12-31 21:58:00,72 South St, San Francisco,CA,94016 +310975,USB-C Charging Cable,1,11.95,2019-12-04 14:50:00,681 Ridge St, San Francisco,CA,94016 +310976,iPhone,1,700.0,2019-12-19 18:07:00,266 West St, San Francisco,CA,94016 +310976,Wired Headphones,1,11.99,2019-12-19 18:07:00,266 West St, San Francisco,CA,94016 +310977,USB-C Charging Cable,1,11.95,2019-12-07 13:30:00,478 2nd St, Los Angeles,CA,90001 +310978,USB-C Charging Cable,1,11.95,2019-12-29 13:23:00,376 Pine St, Dallas,TX,75001 +310979,AAA Batteries (4-pack),1,2.99,2019-12-01 19:15:00,243 Meadow St, San Francisco,CA,94016 +310980,Wired Headphones,1,11.99,2019-12-19 18:25:00,256 West St, New York City,NY,10001 +310981,Wired Headphones,1,11.99,2019-12-05 09:32:00,129 Jackson St, Los Angeles,CA,90001 +310982,AA Batteries (4-pack),2,3.84,2019-12-31 14:20:00,867 Lake St, Dallas,TX,75001 +310983,USB-C Charging Cable,1,11.95,2019-12-20 12:37:00,472 Johnson St, Atlanta,GA,30301 +310984,27in 4K Gaming Monitor,1,389.99,2019-12-20 12:25:00,271 Adams St, Dallas,TX,75001 +310985,USB-C Charging Cable,1,11.95,2019-12-17 14:25:00,164 Hickory St, Austin,TX,73301 +310986,AAA Batteries (4-pack),2,2.99,2019-12-11 09:56:00,257 11th St, Austin,TX,73301 +310987,20in Monitor,1,109.99,2019-12-24 14:47:00,204 7th St, Seattle,WA,98101 +310988,AA Batteries (4-pack),1,3.84,2019-12-10 12:04:00,782 Jackson St, New York City,NY,10001 +310989,Apple Airpods Headphones,1,150.0,2019-12-30 18:31:00,130 Willow St, Atlanta,GA,30301 +310990,AA Batteries (4-pack),1,3.84,2019-12-26 09:25:00,370 Cedar St, Seattle,WA,98101 +310991,Lightning Charging Cable,1,14.95,2019-12-01 09:05:00,483 Main St, Los Angeles,CA,90001 +310992,Bose SoundSport Headphones,1,99.99,2019-12-20 15:27:00,819 Hickory St, Boston,MA,02215 +310993,AA Batteries (4-pack),1,3.84,2019-12-04 10:38:00,797 Jackson St, San Francisco,CA,94016 +310994,27in 4K Gaming Monitor,1,389.99,2019-12-29 19:02:00,601 Lakeview St, San Francisco,CA,94016 +310995,20in Monitor,1,109.99,2019-12-28 17:08:00,318 Adams St, San Francisco,CA,94016 +310996,Apple Airpods Headphones,1,150.0,2019-12-06 15:25:00,753 Spruce St, Los Angeles,CA,90001 +310997,27in 4K Gaming Monitor,1,389.99,2019-12-11 18:59:00,132 River St, San Francisco,CA,94016 +310998,AAA Batteries (4-pack),1,2.99,2019-12-22 21:49:00,120 Washington St, San Francisco,CA,94016 +310998,Wired Headphones,1,11.99,2019-12-22 21:49:00,120 Washington St, San Francisco,CA,94016 +310999,USB-C Charging Cable,1,11.95,2019-12-02 05:44:00,313 Highland St, New York City,NY,10001 +311000,Apple Airpods Headphones,1,150.0,2019-12-17 12:54:00,263 Adams St, Dallas,TX,75001 +311001,USB-C Charging Cable,1,11.95,2019-12-08 11:22:00,71 Lake St, New York City,NY,10001 +311002,Wired Headphones,1,11.99,2019-12-17 11:39:00,205 Lakeview St, Boston,MA,02215 +311003,iPhone,1,700.0,2019-12-04 18:20:00,686 1st St, Austin,TX,73301 +311004,Bose SoundSport Headphones,1,99.99,2019-12-28 16:17:00,427 6th St, New York City,NY,10001 +311005,USB-C Charging Cable,1,11.95,2019-12-16 09:33:00,89 Jefferson St, Los Angeles,CA,90001 +311006,USB-C Charging Cable,1,11.95,2019-12-06 14:52:00,259 10th St, Portland,OR,97035 +311007,AA Batteries (4-pack),1,3.84,2019-12-29 14:43:00,999 13th St, San Francisco,CA,94016 +311008,Lightning Charging Cable,1,14.95,2019-12-12 12:57:00,70 West St, Seattle,WA,98101 +311009,Wired Headphones,1,11.99,2019-12-04 12:50:00,353 South St, Los Angeles,CA,90001 +311009,AA Batteries (4-pack),1,3.84,2019-12-04 12:50:00,353 South St, Los Angeles,CA,90001 +311010,Google Phone,1,600.0,2019-12-28 02:45:00,55 5th St, San Francisco,CA,94016 +311011,27in FHD Monitor,1,149.99,2019-12-11 14:36:00,255 2nd St, Dallas,TX,75001 +311012,AA Batteries (4-pack),2,3.84,2019-12-06 13:03:00,338 River St, Los Angeles,CA,90001 +311013,Macbook Pro Laptop,1,1700.0,2019-12-04 02:25:00,618 Maple St, San Francisco,CA,94016 +311014,Wired Headphones,2,11.99,2019-12-30 12:38:00,426 Pine St, Atlanta,GA,30301 +311015,iPhone,1,700.0,2019-12-03 10:34:00,939 Ridge St, New York City,NY,10001 +311016,Google Phone,1,600.0,2019-12-31 20:09:00,736 5th St, Los Angeles,CA,90001 +311017,Bose SoundSport Headphones,1,99.99,2019-12-23 11:52:00,997 12th St, San Francisco,CA,94016 +311018,USB-C Charging Cable,1,11.95,2019-12-10 07:07:00,696 4th St, San Francisco,CA,94016 +311019,Wired Headphones,1,11.99,2019-12-03 21:10:00,148 Jefferson St, Atlanta,GA,30301 +311020,ThinkPad Laptop,1,999.99,2019-12-30 10:34:00,296 Sunset St, New York City,NY,10001 +311021,27in FHD Monitor,1,149.99,2019-12-06 22:56:00,680 South St, New York City,NY,10001 +311022,USB-C Charging Cable,1,11.95,2019-12-07 16:29:00,774 Adams St, San Francisco,CA,94016 +311023,Lightning Charging Cable,1,14.95,2019-12-15 11:44:00,201 2nd St, New York City,NY,10001 +311024,USB-C Charging Cable,1,11.95,2019-12-20 15:55:00,880 Cherry St, San Francisco,CA,94016 +311025,Bose SoundSport Headphones,1,99.99,2019-12-21 20:11:00,749 11th St, Dallas,TX,75001 +311026,Wired Headphones,1,11.99,2019-12-15 22:19:00,885 10th St, Los Angeles,CA,90001 +311027,Lightning Charging Cable,1,14.95,2019-12-24 23:25:00,231 Highland St, New York City,NY,10001 +311028,USB-C Charging Cable,1,11.95,2019-12-23 18:45:00,807 Ridge St, Atlanta,GA,30301 +311029,Apple Airpods Headphones,1,150.0,2019-12-04 12:51:00,572 Walnut St, Boston,MA,02215 +311030,iPhone,1,700.0,2019-12-03 13:20:00,393 Walnut St, San Francisco,CA,94016 +311031,AAA Batteries (4-pack),1,2.99,2019-12-16 22:59:00,13 Lake St, Atlanta,GA,30301 +311032,27in FHD Monitor,1,149.99,2019-12-08 08:08:00,439 Sunset St, New York City,NY,10001 +311033,34in Ultrawide Monitor,1,379.99,2019-12-01 14:52:00,39 North St, Seattle,WA,98101 +311034,AA Batteries (4-pack),3,3.84,2019-12-10 16:20:00,765 Meadow St, New York City,NY,10001 +311035,Lightning Charging Cable,1,14.95,2019-12-30 16:17:00,523 Center St, Los Angeles,CA,90001 +311036,AAA Batteries (4-pack),3,2.99,2019-12-31 22:04:00,138 Lincoln St, Los Angeles,CA,90001 +311036,Macbook Pro Laptop,1,1700.0,2019-12-31 22:04:00,138 Lincoln St, Los Angeles,CA,90001 +311037,USB-C Charging Cable,1,11.95,2019-12-07 18:09:00,886 Sunset St, Los Angeles,CA,90001 +311038,27in FHD Monitor,1,149.99,2019-12-01 17:20:00,739 2nd St, Boston,MA,02215 +311039,Apple Airpods Headphones,1,150.0,2019-12-09 16:38:00,217 Cherry St, Boston,MA,02215 +311040,Wired Headphones,1,11.99,2019-12-31 16:02:00,825 Park St, Boston,MA,02215 +311041,AAA Batteries (4-pack),1,2.99,2019-12-19 13:29:00,127 14th St, New York City,NY,10001 +311042,USB-C Charging Cable,1,11.95,2019-12-20 14:17:00,942 2nd St, Seattle,WA,98101 +311043,Bose SoundSport Headphones,1,99.99,2019-12-20 19:10:00,626 Dogwood St, Los Angeles,CA,90001 +311044,Apple Airpods Headphones,1,150.0,2019-12-19 23:10:00,587 Highland St, San Francisco,CA,94016 +311045,AAA Batteries (4-pack),1,2.99,2019-12-16 16:18:00,343 Johnson St, Portland,ME,04101 +311046,Bose SoundSport Headphones,1,99.99,2019-12-20 18:26:00,126 Madison St, San Francisco,CA,94016 +311047,AA Batteries (4-pack),1,3.84,2019-12-05 20:31:00,53 Ridge St, Los Angeles,CA,90001 +311048,USB-C Charging Cable,1,11.95,2019-12-14 15:48:00,477 Lakeview St, New York City,NY,10001 +311049,20in Monitor,1,109.99,2019-12-14 22:25:00,696 Main St, San Francisco,CA,94016 +311050,AA Batteries (4-pack),1,3.84,2019-12-30 22:53:00,734 Madison St, New York City,NY,10001 +311051,Wired Headphones,1,11.99,2019-12-24 22:54:00,128 Elm St, Los Angeles,CA,90001 +311052,20in Monitor,1,109.99,2019-12-16 15:33:00,578 Lakeview St, Dallas,TX,75001 +311053,Lightning Charging Cable,2,14.95,2019-12-15 17:10:00,107 Johnson St, Austin,TX,73301 +311054,USB-C Charging Cable,1,11.95,2019-12-25 10:13:00,586 Willow St, New York City,NY,10001 +311055,Bose SoundSport Headphones,1,99.99,2019-12-08 22:33:00,561 1st St, Boston,MA,02215 +311056,34in Ultrawide Monitor,1,379.99,2019-12-02 11:58:00,856 Church St, Atlanta,GA,30301 +311057,Wired Headphones,1,11.99,2019-12-06 13:12:00,294 Lakeview St, Boston,MA,02215 +311058,Lightning Charging Cable,2,14.95,2019-12-18 15:28:00,8 Adams St, Los Angeles,CA,90001 +311059,USB-C Charging Cable,1,11.95,2019-12-02 17:41:00,970 14th St, San Francisco,CA,94016 +311060,AA Batteries (4-pack),2,3.84,2019-12-08 19:41:00,364 Pine St, San Francisco,CA,94016 +311061,USB-C Charging Cable,1,11.95,2019-12-24 18:41:00,810 14th St, San Francisco,CA,94016 +311062,Google Phone,1,600.0,2019-12-16 23:46:00,383 9th St, Dallas,TX,75001 +311063,USB-C Charging Cable,1,11.95,2019-12-07 17:32:00,434 Spruce St, Boston,MA,02215 +311064,AA Batteries (4-pack),6,3.84,2019-12-30 12:13:00,582 River St, San Francisco,CA,94016 +311065,iPhone,1,700.0,2019-12-06 16:08:00,268 4th St, New York City,NY,10001 +311066,Apple Airpods Headphones,1,150.0,2019-12-29 13:27:00,594 2nd St, Los Angeles,CA,90001 +311067,Bose SoundSport Headphones,1,99.99,2019-12-18 21:35:00,811 9th St, San Francisco,CA,94016 +311068,27in 4K Gaming Monitor,1,389.99,2019-12-30 17:47:00,593 Ridge St, Boston,MA,02215 +311069,Bose SoundSport Headphones,1,99.99,2019-12-02 15:06:00,797 1st St, Dallas,TX,75001 +311070,USB-C Charging Cable,1,11.95,2019-12-25 19:48:00,875 4th St, New York City,NY,10001 +311071,Macbook Pro Laptop,1,1700.0,2019-12-08 04:26:00,287 Spruce St, Atlanta,GA,30301 +311072,USB-C Charging Cable,1,11.95,2019-12-09 14:59:00,93 Lincoln St, Atlanta,GA,30301 +311073,AAA Batteries (4-pack),1,2.99,2019-12-30 16:31:00,590 Meadow St, San Francisco,CA,94016 +311074,20in Monitor,1,109.99,2019-12-19 16:57:00,137 13th St, Los Angeles,CA,90001 +311075,Lightning Charging Cable,1,14.95,2019-12-17 18:21:00,18 Hickory St, New York City,NY,10001 +311076,27in 4K Gaming Monitor,1,389.99,2019-12-08 19:59:00,898 14th St, San Francisco,CA,94016 +311077,AA Batteries (4-pack),5,3.84,2019-12-09 13:44:00,293 Walnut St, Los Angeles,CA,90001 +311078,27in 4K Gaming Monitor,1,389.99,2019-12-10 13:24:00,169 Ridge St, Dallas,TX,75001 +311079,27in 4K Gaming Monitor,1,389.99,2019-12-04 01:55:00,156 12th St, Portland,OR,97035 +311080,Flatscreen TV,1,300.0,2019-12-22 22:10:00,160 River St, San Francisco,CA,94016 +311081,USB-C Charging Cable,1,11.95,2019-12-18 13:39:00,881 9th St, Dallas,TX,75001 +311082,Lightning Charging Cable,1,14.95,2019-12-10 13:39:00,560 Adams St, San Francisco,CA,94016 +311083,Apple Airpods Headphones,1,150.0,2019-12-05 20:35:00,890 Hill St, New York City,NY,10001 +311084,Macbook Pro Laptop,1,1700.0,2019-12-17 19:10:00,231 Wilson St, Boston,MA,02215 +311085,AAA Batteries (4-pack),1,2.99,2019-12-15 19:15:00,394 Pine St, San Francisco,CA,94016 +311086,Lightning Charging Cable,2,14.95,2019-12-29 12:25:00,477 Center St, Atlanta,GA,30301 +311087,20in Monitor,1,109.99,2019-12-14 19:51:00,77 13th St, Boston,MA,02215 +311088,AAA Batteries (4-pack),1,2.99,2019-12-30 09:45:00,68 Jackson St, Portland,OR,97035 +311089,Bose SoundSport Headphones,1,99.99,2019-12-11 16:55:00,844 7th St, Atlanta,GA,30301 +311090,USB-C Charging Cable,1,11.95,2019-12-15 13:21:00,471 Adams St, Los Angeles,CA,90001 +311091,iPhone,1,700.0,2019-12-02 15:03:00,559 West St, San Francisco,CA,94016 +311092,USB-C Charging Cable,1,11.95,2019-12-28 20:47:00,987 Sunset St, San Francisco,CA,94016 +311093,USB-C Charging Cable,1,11.95,2019-12-03 14:23:00,620 Sunset St, San Francisco,CA,94016 +311094,Wired Headphones,1,11.99,2019-12-14 14:09:00,776 12th St, San Francisco,CA,94016 +311095,Wired Headphones,1,11.99,2019-12-06 17:54:00,688 Cedar St, Boston,MA,02215 +311096,Bose SoundSport Headphones,2,99.99,2019-12-29 19:04:00,128 Jackson St, Los Angeles,CA,90001 +311097,Macbook Pro Laptop,1,1700.0,2019-12-31 20:05:00,766 Main St, San Francisco,CA,94016 +311098,Bose SoundSport Headphones,1,99.99,2019-12-04 20:42:00,763 South St, San Francisco,CA,94016 +311099,34in Ultrawide Monitor,1,379.99,2019-12-24 11:31:00,363 11th St, Dallas,TX,75001 +311100,Lightning Charging Cable,1,14.95,2019-12-24 15:54:00,868 North St, Portland,OR,97035 +311101,Apple Airpods Headphones,1,150.0,2019-12-29 13:07:00,92 Cherry St, New York City,NY,10001 +311102,AAA Batteries (4-pack),2,2.99,2019-12-21 09:23:00,640 Lake St, New York City,NY,10001 +311103,34in Ultrawide Monitor,1,379.99,2019-12-16 15:07:00,36 Church St, Los Angeles,CA,90001 +311104,Bose SoundSport Headphones,1,99.99,2019-12-31 21:52:00,361 Washington St, Los Angeles,CA,90001 +311105,Apple Airpods Headphones,1,150.0,2019-12-24 19:34:00,787 8th St, New York City,NY,10001 +311106,27in FHD Monitor,1,149.99,2019-12-03 20:20:00,576 10th St, Boston,MA,02215 +311107,27in FHD Monitor,1,149.99,2019-12-25 19:38:00,756 Hickory St, Boston,MA,02215 +311108,USB-C Charging Cable,1,11.95,2019-12-16 15:03:00,219 Dogwood St, San Francisco,CA,94016 +311109,Bose SoundSport Headphones,1,99.99,2019-12-18 14:27:00,143 Center St, Los Angeles,CA,90001 +311110,Lightning Charging Cable,1,14.95,2019-12-10 10:22:00,872 13th St, Dallas,TX,75001 +311111,Flatscreen TV,1,300.0,2019-12-01 14:28:00,317 West St, San Francisco,CA,94016 +311112,AAA Batteries (4-pack),1,2.99,2019-12-30 14:48:00,169 5th St, Portland,ME,04101 +311113,Apple Airpods Headphones,1,150.0,2019-12-09 19:29:00,734 Lakeview St, Portland,ME,04101 +311114,USB-C Charging Cable,1,11.95,2019-12-21 10:38:00,405 6th St, San Francisco,CA,94016 +311115,Lightning Charging Cable,1,14.95,2019-12-31 23:16:00,9 South St, Los Angeles,CA,90001 +311116,Macbook Pro Laptop,1,1700.0,2019-12-02 09:21:00,503 Johnson St, San Francisco,CA,94016 +311117,Lightning Charging Cable,1,14.95,2019-12-21 14:27:00,225 4th St, San Francisco,CA,94016 +311118,27in FHD Monitor,1,149.99,2019-12-01 17:40:00,183 Church St, Portland,OR,97035 +311119,Lightning Charging Cable,1,14.95,2019-12-23 12:44:00,658 Hickory St, San Francisco,CA,94016 +311120,Wired Headphones,1,11.99,2019-12-03 18:10:00,648 Jackson St, Dallas,TX,75001 +311121,Wired Headphones,1,11.99,2019-12-24 15:22:00,578 Wilson St, Portland,OR,97035 +311122,Apple Airpods Headphones,1,150.0,2019-12-18 15:06:00,426 North St, San Francisco,CA,94016 +311123,AA Batteries (4-pack),1,3.84,2019-12-20 16:09:00,464 Lakeview St, San Francisco,CA,94016 +311124,ThinkPad Laptop,1,999.99,2019-12-23 09:03:00,17 Ridge St, Boston,MA,02215 +311125,Apple Airpods Headphones,1,150.0,2019-12-24 13:24:00,261 13th St, San Francisco,CA,94016 +311126,34in Ultrawide Monitor,1,379.99,2019-12-16 16:58:00,374 Jackson St, San Francisco,CA,94016 +311127,27in 4K Gaming Monitor,1,389.99,2019-12-15 21:14:00,291 Willow St, Boston,MA,02215 +311128,27in FHD Monitor,1,149.99,2019-12-06 16:36:00,329 Hill St, Dallas,TX,75001 +311129,USB-C Charging Cable,1,11.95,2019-12-23 13:24:00,836 Center St, Los Angeles,CA,90001 +311130,Bose SoundSport Headphones,1,99.99,2019-12-02 16:56:00,972 Willow St, Dallas,TX,75001 +311131,USB-C Charging Cable,1,11.95,2019-12-11 22:59:00,661 Meadow St, Austin,TX,73301 +311132,AA Batteries (4-pack),1,3.84,2019-12-17 20:47:00,652 Jackson St, Los Angeles,CA,90001 +311133,Lightning Charging Cable,2,14.95,2019-12-31 06:16:00,195 7th St, New York City,NY,10001 +311134,AAA Batteries (4-pack),1,2.99,2019-12-15 19:44:00,812 2nd St, Portland,OR,97035 +311135,27in FHD Monitor,1,149.99,2019-12-09 17:49:00,343 Ridge St, San Francisco,CA,94016 +311136,Wired Headphones,1,11.99,2019-12-21 15:31:00,404 4th St, San Francisco,CA,94016 +311137,Wired Headphones,1,11.99,2019-12-12 11:43:00,991 7th St, Boston,MA,02215 +311138,Macbook Pro Laptop,1,1700.0,2019-12-24 15:42:00,77 Pine St, San Francisco,CA,94016 +311139,20in Monitor,1,109.99,2019-12-31 19:40:00,349 Church St, Austin,TX,73301 +311140,Macbook Pro Laptop,1,1700.0,2019-12-22 17:12:00,177 12th St, Boston,MA,02215 +311141,27in 4K Gaming Monitor,1,389.99,2019-12-06 11:07:00,645 9th St, Boston,MA,02215 +311142,27in FHD Monitor,1,149.99,2019-12-17 10:58:00,63 Lakeview St, New York City,NY,10001 +311143,USB-C Charging Cable,1,11.95,2019-12-12 18:46:00,691 Wilson St, San Francisco,CA,94016 +311144,AA Batteries (4-pack),1,3.84,2019-12-28 10:31:00,422 Cherry St, San Francisco,CA,94016 +311145,AAA Batteries (4-pack),1,2.99,2019-12-11 10:00:00,276 River St, San Francisco,CA,94016 +311146,20in Monitor,1,109.99,2019-12-14 11:36:00,997 Sunset St, New York City,NY,10001 +311147,USB-C Charging Cable,2,11.95,2019-12-08 08:55:00,343 2nd St, Boston,MA,02215 +311148,USB-C Charging Cable,1,11.95,2019-12-04 13:01:00,917 Center St, Dallas,TX,75001 +311149,iPhone,1,700.0,2019-12-10 18:41:00,15 Madison St, New York City,NY,10001 +311150,Lightning Charging Cable,1,14.95,2019-12-26 14:54:00,951 Maple St, San Francisco,CA,94016 +311151,34in Ultrawide Monitor,1,379.99,2019-12-07 08:13:00,448 South St, Austin,TX,73301 +311152,AA Batteries (4-pack),1,3.84,2019-12-12 12:25:00,222 14th St, San Francisco,CA,94016 +311153,iPhone,1,700.0,2019-12-27 18:28:00,184 West St, Los Angeles,CA,90001 +311154,USB-C Charging Cable,1,11.95,2019-12-25 21:29:00,273 14th St, Austin,TX,73301 +311155,Bose SoundSport Headphones,1,99.99,2019-12-24 06:57:00,59 12th St, Dallas,TX,75001 +311156,Bose SoundSport Headphones,1,99.99,2019-12-11 19:09:00,91 Adams St, San Francisco,CA,94016 +311157,Bose SoundSport Headphones,1,99.99,2019-12-07 00:29:00,218 Willow St, Boston,MA,02215 +311158,AAA Batteries (4-pack),1,2.99,2019-12-14 12:06:00,305 Adams St, Boston,MA,02215 +311159,AAA Batteries (4-pack),1,2.99,2019-12-29 08:19:00,948 Maple St, New York City,NY,10001 +311160,USB-C Charging Cable,2,11.95,2019-12-12 23:47:00,332 Walnut St, Austin,TX,73301 +311161,AAA Batteries (4-pack),2,2.99,2019-12-31 11:40:00,546 Ridge St, San Francisco,CA,94016 +311162,USB-C Charging Cable,1,11.95,2019-12-08 12:01:00,363 1st St, San Francisco,CA,94016 +311163,iPhone,1,700.0,2019-12-18 11:30:00,759 7th St, Boston,MA,02215 +311164,Apple Airpods Headphones,1,150.0,2019-12-29 11:54:00,804 Willow St, San Francisco,CA,94016 +311165,Lightning Charging Cable,1,14.95,2019-12-09 16:22:00,614 Lincoln St, Austin,TX,73301 +311166,Bose SoundSport Headphones,1,99.99,2019-12-05 19:36:00,837 6th St, Los Angeles,CA,90001 +311167,Bose SoundSport Headphones,1,99.99,2019-12-28 21:54:00,546 Lake St, New York City,NY,10001 +311168,Google Phone,1,600.0,2019-12-06 14:55:00,251 Cedar St, Austin,TX,73301 +311169,USB-C Charging Cable,1,11.95,2019-12-05 07:14:00,178 Dogwood St, Los Angeles,CA,90001 +311170,AA Batteries (4-pack),1,3.84,2019-12-10 21:27:00,810 4th St, San Francisco,CA,94016 +311171,Bose SoundSport Headphones,1,99.99,2019-12-02 13:18:00,56 Washington St, Los Angeles,CA,90001 +311172,AA Batteries (4-pack),1,3.84,2019-12-07 00:06:00,988 Hickory St, Los Angeles,CA,90001 +311173,AA Batteries (4-pack),1,3.84,2019-12-29 19:27:00,547 Sunset St, San Francisco,CA,94016 +311174,Vareebadd Phone,1,400.0,2019-12-26 18:36:00,448 Main St, Austin,TX,73301 +311175,Google Phone,1,600.0,2019-12-25 22:30:00,247 Dogwood St, Atlanta,GA,30301 +311176,AAA Batteries (4-pack),1,2.99,2019-12-05 20:14:00,837 Washington St, Atlanta,GA,30301 +311177,Bose SoundSport Headphones,1,99.99,2019-12-27 22:00:00,753 Hill St, Boston,MA,02215 +311178,Lightning Charging Cable,1,14.95,2019-12-16 19:05:00,496 Dogwood St, Portland,OR,97035 +311179,Macbook Pro Laptop,1,1700.0,2019-12-10 09:28:00,511 6th St, New York City,NY,10001 +311180,Bose SoundSport Headphones,1,99.99,2019-12-30 12:40:00,425 South St, Los Angeles,CA,90001 +311181,ThinkPad Laptop,1,999.99,2019-12-15 10:04:00,832 Lincoln St, New York City,NY,10001 +311182,20in Monitor,1,109.99,2019-12-20 21:42:00,98 Lake St, Portland,OR,97035 +311183,AAA Batteries (4-pack),1,2.99,2019-12-16 13:14:00,316 11th St, San Francisco,CA,94016 +311184,Wired Headphones,1,11.99,2019-12-24 06:52:00,570 Dogwood St, San Francisco,CA,94016 +311185,AAA Batteries (4-pack),1,2.99,2019-12-03 10:34:00,230 River St, New York City,NY,10001 +311186,USB-C Charging Cable,1,11.95,2019-12-15 18:40:00,839 Chestnut St, Atlanta,GA,30301 +311187,Bose SoundSport Headphones,1,99.99,2019-12-10 11:04:00,811 10th St, Portland,ME,04101 +311188,Google Phone,1,600.0,2019-12-27 17:27:00,184 Cedar St, San Francisco,CA,94016 +311188,USB-C Charging Cable,1,11.95,2019-12-27 17:27:00,184 Cedar St, San Francisco,CA,94016 +311189,Wired Headphones,1,11.99,2019-12-31 18:39:00,558 South St, San Francisco,CA,94016 +311190,AAA Batteries (4-pack),1,2.99,2019-12-25 12:33:00,883 Dogwood St, New York City,NY,10001 +311191,AAA Batteries (4-pack),2,2.99,2019-12-14 11:53:00,629 13th St, San Francisco,CA,94016 +311192,USB-C Charging Cable,1,11.95,2019-12-09 19:50:00,200 4th St, Los Angeles,CA,90001 +311193,USB-C Charging Cable,1,11.95,2019-12-15 14:48:00,410 11th St, Dallas,TX,75001 +311194,Vareebadd Phone,1,400.0,2019-12-09 18:49:00,462 14th St, Seattle,WA,98101 +311194,ThinkPad Laptop,1,999.99,2019-12-09 18:49:00,462 14th St, Seattle,WA,98101 +311195,34in Ultrawide Monitor,1,379.99,2019-12-20 19:58:00,877 Johnson St, Austin,TX,73301 +311196,Apple Airpods Headphones,1,150.0,2019-12-11 15:06:00,410 Washington St, Seattle,WA,98101 +311197,AAA Batteries (4-pack),1,2.99,2019-12-23 15:23:00,982 13th St, Los Angeles,CA,90001 +311198,27in 4K Gaming Monitor,1,389.99,2019-12-12 19:22:00,441 Spruce St, San Francisco,CA,94016 +311199,USB-C Charging Cable,1,11.95,2019-12-17 07:42:00,793 Lakeview St, San Francisco,CA,94016 +311200,AA Batteries (4-pack),1,3.84,2019-12-04 09:47:00,131 Adams St, Los Angeles,CA,90001 +311201,Lightning Charging Cable,1,14.95,2019-12-12 10:22:00,403 North St, San Francisco,CA,94016 +311202,Apple Airpods Headphones,1,150.0,2019-12-25 15:22:00,487 Spruce St, Portland,OR,97035 +311203,AA Batteries (4-pack),1,3.84,2019-12-12 08:31:00,237 Ridge St, Austin,TX,73301 +311204,iPhone,1,700.0,2019-12-18 19:05:00,849 West St, San Francisco,CA,94016 +311204,Lightning Charging Cable,1,14.95,2019-12-18 19:05:00,849 West St, San Francisco,CA,94016 +311205,Bose SoundSport Headphones,1,99.99,2019-12-18 14:34:00,982 Jackson St, San Francisco,CA,94016 +311206,34in Ultrawide Monitor,1,379.99,2019-12-26 14:05:00,617 North St, Austin,TX,73301 +311207,ThinkPad Laptop,1,999.99,2019-12-02 10:26:00,728 Highland St, Los Angeles,CA,90001 +311208,Google Phone,1,600.0,2019-12-23 19:36:00,44 Jackson St, Los Angeles,CA,90001 +311209,Flatscreen TV,1,300.0,2019-12-02 20:01:00,707 Maple St, Portland,OR,97035 +311210,20in Monitor,1,109.99,2019-12-28 09:24:00,38 Chestnut St, Boston,MA,02215 +311211,27in FHD Monitor,1,149.99,2019-12-22 14:15:00,710 River St, New York City,NY,10001 +311212,AA Batteries (4-pack),2,3.84,2019-12-31 00:39:00,416 13th St, San Francisco,CA,94016 +311213,Macbook Pro Laptop,1,1700.0,2019-12-09 12:57:00,982 10th St, New York City,NY,10001 +311214,Bose SoundSport Headphones,1,99.99,2019-12-23 21:46:00,518 Park St, San Francisco,CA,94016 +311215,Macbook Pro Laptop,1,1700.0,2019-12-04 21:01:00,866 Meadow St, Dallas,TX,75001 +311216,Apple Airpods Headphones,1,150.0,2019-12-09 18:57:00,588 Jackson St, Seattle,WA,98101 +311217,USB-C Charging Cable,1,11.95,2019-12-28 17:32:00,791 8th St, New York City,NY,10001 +311218,Flatscreen TV,1,300.0,2019-12-02 16:02:00,376 14th St, Los Angeles,CA,90001 +311219,34in Ultrawide Monitor,1,379.99,2019-12-11 12:25:00,570 Lincoln St, Austin,TX,73301 +311220,Lightning Charging Cable,1,14.95,2019-12-17 18:30:00,70 Highland St, Dallas,TX,75001 +311221,AAA Batteries (4-pack),1,2.99,2019-12-19 11:54:00,983 Lake St, Boston,MA,02215 +311222,AA Batteries (4-pack),1,3.84,2019-12-15 21:17:00,680 Cherry St, Boston,MA,02215 +311223,Apple Airpods Headphones,1,150.0,2019-12-14 12:39:00,83 Washington St, Boston,MA,02215 +311224,Bose SoundSport Headphones,1,99.99,2019-12-29 00:12:00,844 Johnson St, Boston,MA,02215 +311225,iPhone,1,700.0,2019-12-27 14:43:00,166 13th St, Boston,MA,02215 +311226,Lightning Charging Cable,1,14.95,2019-12-30 20:21:00,699 Lake St, Dallas,TX,75001 +311227,USB-C Charging Cable,1,11.95,2019-12-01 18:39:00,656 Jackson St, San Francisco,CA,94016 +311228,Bose SoundSport Headphones,1,99.99,2019-12-13 22:06:00,388 Lake St, Los Angeles,CA,90001 +311229,34in Ultrawide Monitor,1,379.99,2019-12-15 08:46:00,356 5th St, San Francisco,CA,94016 +311230,Macbook Pro Laptop,1,1700.0,2019-12-06 08:21:00,818 Center St, Los Angeles,CA,90001 +311231,20in Monitor,1,109.99,2019-12-11 12:32:00,649 14th St, New York City,NY,10001 +311232,Lightning Charging Cable,1,14.95,2019-12-14 20:26:00,656 North St, Boston,MA,02215 +311233,Google Phone,1,600.0,2019-12-26 18:40:00,311 Meadow St, Boston,MA,02215 +311234,USB-C Charging Cable,2,11.95,2019-12-17 12:24:00,71 West St, Atlanta,GA,30301 +311235,Apple Airpods Headphones,1,150.0,2019-12-11 13:56:00,319 Elm St, San Francisco,CA,94016 +311236,Wired Headphones,1,11.99,2019-12-04 04:55:00,834 Hill St, San Francisco,CA,94016 +311237,AA Batteries (4-pack),1,3.84,2019-12-22 15:35:00,968 Spruce St, Los Angeles,CA,90001 +311238,AA Batteries (4-pack),3,3.84,2019-12-03 23:58:00,902 Walnut St, San Francisco,CA,94016 +311239,34in Ultrawide Monitor,1,379.99,2019-12-28 08:11:00,741 Church St, Los Angeles,CA,90001 +311240,Wired Headphones,1,11.99,2019-12-07 00:28:00,192 Highland St, San Francisco,CA,94016 +311241,iPhone,1,700.0,2019-12-18 16:20:00,718 8th St, Austin,TX,73301 +311242,Wired Headphones,1,11.99,2019-12-12 15:24:00,922 10th St, San Francisco,CA,94016 +311243,USB-C Charging Cable,1,11.95,2019-12-05 16:14:00,998 West St, New York City,NY,10001 +311244,Bose SoundSport Headphones,1,99.99,2019-12-02 00:40:00,291 Pine St, Boston,MA,02215 +311245,27in FHD Monitor,2,149.99,2019-12-03 20:11:00,558 4th St, Los Angeles,CA,90001 +311246,Lightning Charging Cable,1,14.95,2019-12-17 11:01:00,64 5th St, Dallas,TX,75001 +311247,27in 4K Gaming Monitor,1,389.99,2019-12-22 19:12:00,18 5th St, New York City,NY,10001 +311248,AAA Batteries (4-pack),1,2.99,2019-12-18 16:31:00,462 North St, Los Angeles,CA,90001 +311249,Macbook Pro Laptop,1,1700.0,2019-12-16 09:20:00,927 Willow St, New York City,NY,10001 +311250,USB-C Charging Cable,1,11.95,2019-12-09 20:06:00,409 Washington St, Dallas,TX,75001 +311250,27in FHD Monitor,1,149.99,2019-12-09 20:06:00,409 Washington St, Dallas,TX,75001 +311251,ThinkPad Laptop,1,999.99,2019-12-30 11:51:00,59 Meadow St, Dallas,TX,75001 +311252,Macbook Pro Laptop,1,1700.0,2019-12-11 20:14:00,622 North St, San Francisco,CA,94016 +311253,USB-C Charging Cable,2,11.95,2019-12-18 14:36:00,314 Ridge St, Portland,OR,97035 +311254,34in Ultrawide Monitor,1,379.99,2019-12-25 17:19:00,809 11th St, Boston,MA,02215 +311255,34in Ultrawide Monitor,1,379.99,2019-12-22 17:18:00,120 Lakeview St, Seattle,WA,98101 +311256,AAA Batteries (4-pack),1,2.99,2019-12-15 15:11:00,856 Elm St, Portland,OR,97035 +311257,AAA Batteries (4-pack),6,2.99,2019-12-18 11:32:00,32 Jefferson St, San Francisco,CA,94016 +311258,Google Phone,1,600.0,2019-12-24 18:54:00,872 Walnut St, San Francisco,CA,94016 +311259,AAA Batteries (4-pack),1,2.99,2019-12-11 18:53:00,485 11th St, Seattle,WA,98101 +311260,Apple Airpods Headphones,1,150.0,2019-12-11 21:02:00,21 Lake St, Los Angeles,CA,90001 +311261,20in Monitor,1,109.99,2019-12-16 15:29:00,612 Spruce St, Atlanta,GA,30301 +311262,34in Ultrawide Monitor,1,379.99,2019-12-07 17:08:00,936 Wilson St, Austin,TX,73301 +311263,USB-C Charging Cable,2,11.95,2019-12-03 13:16:00,808 Johnson St, San Francisco,CA,94016 +311264,34in Ultrawide Monitor,1,379.99,2019-12-26 13:50:00,436 Chestnut St, New York City,NY,10001 +311265,AA Batteries (4-pack),2,3.84,2019-12-08 03:30:00,547 Main St, Atlanta,GA,30301 +311266,LG Dryer,1,600.0,2019-12-20 00:24:00,958 Sunset St, San Francisco,CA,94016 +311267,USB-C Charging Cable,1,11.95,2019-12-30 23:22:00,84 Adams St, San Francisco,CA,94016 +311268,AA Batteries (4-pack),1,3.84,2019-12-07 03:14:00,929 Sunset St, Portland,ME,04101 +311269,Lightning Charging Cable,1,14.95,2019-12-30 18:03:00,585 Walnut St, San Francisco,CA,94016 +311270,Wired Headphones,1,11.99,2019-12-21 17:04:00,889 10th St, Seattle,WA,98101 +311271,20in Monitor,1,109.99,2019-12-14 22:51:00,77 West St, San Francisco,CA,94016 +311272,Lightning Charging Cable,1,14.95,2019-12-23 08:36:00,361 10th St, Boston,MA,02215 +311273,AAA Batteries (4-pack),1,2.99,2019-12-30 23:30:00,855 West St, Los Angeles,CA,90001 +311274,27in FHD Monitor,1,149.99,2019-12-21 15:32:00,693 Jackson St, Austin,TX,73301 +311275,USB-C Charging Cable,1,11.95,2019-12-03 18:26:00,446 Main St, Los Angeles,CA,90001 +311276,Wired Headphones,1,11.99,2019-12-06 09:26:00,903 Madison St, Los Angeles,CA,90001 +311277,AA Batteries (4-pack),1,3.84,2019-12-13 11:20:00,706 Forest St, Dallas,TX,75001 +311278,Macbook Pro Laptop,1,1700.0,2019-12-24 13:29:00,223 Hickory St, Los Angeles,CA,90001 +311279,AAA Batteries (4-pack),1,2.99,2019-12-03 07:01:00,48 Ridge St, Los Angeles,CA,90001 +311280,Lightning Charging Cable,1,14.95,2019-12-09 15:02:00,344 Adams St, Los Angeles,CA,90001 +311281,AAA Batteries (4-pack),2,2.99,2019-12-04 20:55:00,953 River St, San Francisco,CA,94016 +311282,iPhone,1,700.0,2019-12-16 14:31:00,950 Cherry St, Boston,MA,02215 +311283,AAA Batteries (4-pack),5,2.99,2019-12-31 00:45:00,248 North St, Boston,MA,02215 +311284,Bose SoundSport Headphones,1,99.99,2019-12-16 14:27:00,844 2nd St, San Francisco,CA,94016 +311285,27in FHD Monitor,1,149.99,2019-12-24 09:04:00,892 Jackson St, Dallas,TX,75001 +311286,20in Monitor,1,109.99,2019-12-30 17:49:00,106 Main St, San Francisco,CA,94016 +311287,Bose SoundSport Headphones,1,99.99,2019-12-07 22:46:00,821 Jefferson St, Atlanta,GA,30301 +311288,Bose SoundSport Headphones,1,99.99,2019-12-01 22:27:00,645 Chestnut St, San Francisco,CA,94016 +311289,Bose SoundSport Headphones,1,99.99,2019-12-17 16:25:00,607 13th St, Dallas,TX,75001 +311290,Wired Headphones,1,11.99,2019-12-16 17:12:00,540 6th St, New York City,NY,10001 +311291,iPhone,1,700.0,2019-12-13 20:57:00,550 Lakeview St, Atlanta,GA,30301 +311292,27in 4K Gaming Monitor,1,389.99,2019-12-01 15:43:00,639 Spruce St, New York City,NY,10001 +311293,Wired Headphones,1,11.99,2019-12-02 11:18:00,324 River St, Portland,ME,04101 +311294,USB-C Charging Cable,1,11.95,2019-12-09 21:08:00,754 Forest St, Portland,OR,97035 +311295,AA Batteries (4-pack),1,3.84,2019-12-25 09:05:00,298 Main St, Los Angeles,CA,90001 +311296,Wired Headphones,1,11.99,2019-12-11 19:20:00,624 Hill St, Dallas,TX,75001 +311297,AAA Batteries (4-pack),1,2.99,2019-12-08 21:35:00,361 Forest St, Boston,MA,02215 +311298,Lightning Charging Cable,1,14.95,2019-12-02 12:56:00,109 Sunset St, Boston,MA,02215 +311298,USB-C Charging Cable,1,11.95,2019-12-02 12:56:00,109 Sunset St, Boston,MA,02215 +311299,AA Batteries (4-pack),1,3.84,2019-12-03 03:39:00,421 Hickory St, Seattle,WA,98101 +311300,AA Batteries (4-pack),1,3.84,2019-12-11 12:45:00,916 Lakeview St, Seattle,WA,98101 +311301,Apple Airpods Headphones,1,150.0,2019-12-08 22:03:00,59 Cherry St, San Francisco,CA,94016 +311302,20in Monitor,1,109.99,2019-12-10 10:39:00,464 Jefferson St, New York City,NY,10001 +311303,Vareebadd Phone,1,400.0,2019-12-04 18:48:00,504 Hill St, San Francisco,CA,94016 +311304,AAA Batteries (4-pack),2,2.99,2019-12-11 12:09:00,881 Lincoln St, San Francisco,CA,94016 +311305,Lightning Charging Cable,1,14.95,2019-12-22 23:41:00,445 Adams St, Atlanta,GA,30301 +311306,Apple Airpods Headphones,1,150.0,2019-12-01 20:58:00,656 Highland St, Portland,OR,97035 +311307,Bose SoundSport Headphones,1,99.99,2019-12-08 14:53:00,475 12th St, Boston,MA,02215 +311308,Wired Headphones,1,11.99,2019-12-16 04:38:00,715 Chestnut St, Portland,OR,97035 +311309,USB-C Charging Cable,1,11.95,2019-12-25 12:31:00,961 Dogwood St, New York City,NY,10001 +311310,27in FHD Monitor,1,149.99,2019-12-16 21:47:00,471 11th St, San Francisco,CA,94016 +311311,Lightning Charging Cable,1,14.95,2019-12-04 15:36:00,788 Sunset St, San Francisco,CA,94016 +311312,27in 4K Gaming Monitor,1,389.99,2019-12-24 16:41:00,963 1st St, Los Angeles,CA,90001 +311313,Bose SoundSport Headphones,1,99.99,2019-12-27 12:20:00,373 Park St, San Francisco,CA,94016 +311314,USB-C Charging Cable,1,11.95,2019-12-15 22:32:00,55 Pine St, Los Angeles,CA,90001 +311315,Apple Airpods Headphones,1,150.0,2019-12-15 01:54:00,17 Washington St, Portland,OR,97035 +311316,AA Batteries (4-pack),2,3.84,2019-12-19 01:29:00,132 6th St, New York City,NY,10001 +311317,LG Dryer,1,600.0,2019-12-24 22:41:00,914 Lakeview St, San Francisco,CA,94016 +311318,AA Batteries (4-pack),2,3.84,2019-12-06 11:28:00,515 5th St, New York City,NY,10001 +311319,AAA Batteries (4-pack),2,2.99,2019-12-31 23:02:00,203 Ridge St, Dallas,TX,75001 +311320,Wired Headphones,1,11.99,2019-12-13 02:39:00,1 Adams St, Dallas,TX,75001 +311321,AA Batteries (4-pack),1,3.84,2019-12-26 17:36:00,744 Elm St, Austin,TX,73301 +311322,Apple Airpods Headphones,1,150.0,2019-12-20 22:45:00,991 Lake St, San Francisco,CA,94016 +311323,USB-C Charging Cable,1,11.95,2019-12-28 17:30:00,570 South St, New York City,NY,10001 +311324,AAA Batteries (4-pack),1,2.99,2019-12-12 11:19:00,273 Willow St, Los Angeles,CA,90001 +311325,Vareebadd Phone,1,400.0,2019-12-10 07:33:00,52 Center St, Los Angeles,CA,90001 +311325,USB-C Charging Cable,1,11.95,2019-12-10 07:33:00,52 Center St, Los Angeles,CA,90001 +311326,Lightning Charging Cable,1,14.95,2019-12-14 11:05:00,843 River St, Atlanta,GA,30301 +311327,AA Batteries (4-pack),2,3.84,2019-12-17 21:26:00,212 Highland St, San Francisco,CA,94016 +311328,USB-C Charging Cable,1,11.95,2019-12-04 13:11:00,640 West St, Dallas,TX,75001 +311329,Lightning Charging Cable,1,14.95,2019-12-18 21:13:00,879 10th St, Los Angeles,CA,90001 +311330,Apple Airpods Headphones,1,150.0,2019-12-01 09:51:00,794 Pine St, San Francisco,CA,94016 +311331,Lightning Charging Cable,1,14.95,2019-12-17 19:57:00,650 North St, New York City,NY,10001 +311332,USB-C Charging Cable,1,11.95,2019-12-20 09:17:00,415 River St, Dallas,TX,75001 +311333,20in Monitor,1,109.99,2019-12-12 22:08:00,701 Adams St, Dallas,TX,75001 +311334,AA Batteries (4-pack),1,3.84,2019-12-26 18:53:00,726 Park St, New York City,NY,10001 +311335,USB-C Charging Cable,2,11.95,2019-12-25 02:25:00,792 Meadow St, Seattle,WA,98101 +311336,Google Phone,1,600.0,2019-12-30 12:37:00,926 Chestnut St, San Francisco,CA,94016 +311337,Bose SoundSport Headphones,1,99.99,2019-12-13 18:09:00,823 Cedar St, Boston,MA,02215 +311338,AAA Batteries (4-pack),2,2.99,2019-12-17 11:25:00,65 Elm St, Seattle,WA,98101 +311339,Apple Airpods Headphones,1,150.0,2019-12-09 17:52:00,723 Center St, Portland,OR,97035 +311340,27in 4K Gaming Monitor,1,389.99,2019-12-29 17:26:00,617 Chestnut St, Los Angeles,CA,90001 +311341,ThinkPad Laptop,1,999.99,2019-12-19 12:17:00,734 Hill St, San Francisco,CA,94016 +311342,Bose SoundSport Headphones,1,99.99,2019-12-17 21:30:00,953 North St, Seattle,WA,98101 +311343,Bose SoundSport Headphones,1,99.99,2019-12-22 13:50:00,576 Adams St, Los Angeles,CA,90001 +311344,Lightning Charging Cable,1,14.95,2019-12-02 20:36:00,277 Chestnut St, Boston,MA,02215 +311345,AA Batteries (4-pack),1,3.84,2019-12-07 21:23:00,140 Meadow St, New York City,NY,10001 +311346,AA Batteries (4-pack),1,3.84,2019-12-20 23:44:00,216 Highland St, San Francisco,CA,94016 +311347,AAA Batteries (4-pack),1,2.99,2019-12-09 12:32:00,655 South St, San Francisco,CA,94016 +311348,Apple Airpods Headphones,1,150.0,2019-12-28 12:45:00,552 Sunset St, Los Angeles,CA,90001 +311349,Wired Headphones,1,11.99,2019-12-02 19:07:00,721 South St, Atlanta,GA,30301 +311350,AAA Batteries (4-pack),3,2.99,2019-12-31 13:27:00,818 Jefferson St, Boston,MA,02215 +311351,AAA Batteries (4-pack),1,2.99,2019-12-13 10:34:00,677 Forest St, Atlanta,GA,30301 +311352,Google Phone,1,600.0,2019-12-23 09:43:00,82 Sunset St, San Francisco,CA,94016 +311352,Wired Headphones,1,11.99,2019-12-23 09:43:00,82 Sunset St, San Francisco,CA,94016 +311353,Macbook Pro Laptop,1,1700.0,2019-12-04 19:25:00,753 Chestnut St, Boston,MA,02215 +311354,AA Batteries (4-pack),4,3.84,2019-12-17 12:42:00,448 North St, San Francisco,CA,94016 +311355,AA Batteries (4-pack),1,3.84,2019-12-24 21:51:00,441 West St, Seattle,WA,98101 +311356,Apple Airpods Headphones,1,150.0,2019-12-20 23:11:00,383 8th St, Boston,MA,02215 +311357,Macbook Pro Laptop,1,1700.0,2019-12-05 20:30:00,239 Cherry St, Dallas,TX,75001 +311358,USB-C Charging Cable,1,11.95,2019-12-03 14:11:00,413 Pine St, Los Angeles,CA,90001 +311359,34in Ultrawide Monitor,1,379.99,2019-12-20 16:45:00,842 Sunset St, Dallas,TX,75001 +311360,20in Monitor,1,109.99,2019-12-01 12:00:00,771 Jackson St, Boston,MA,02215 +311361,USB-C Charging Cable,1,11.95,2019-12-19 14:38:00,374 Meadow St, New York City,NY,10001 +311362,27in FHD Monitor,1,149.99,2019-12-23 12:21:00,931 Hickory St, New York City,NY,10001 +311363,Wired Headphones,1,11.99,2019-12-13 12:49:00,145 11th St, Austin,TX,73301 +311364,Vareebadd Phone,1,400.0,2019-12-12 12:34:00,414 Hickory St, Los Angeles,CA,90001 +311364,Wired Headphones,1,11.99,2019-12-12 12:34:00,414 Hickory St, Los Angeles,CA,90001 +311365,AAA Batteries (4-pack),1,2.99,2019-12-12 14:53:00,176 Center St, San Francisco,CA,94016 +311366,iPhone,1,700.0,2019-12-04 07:33:00,156 5th St, San Francisco,CA,94016 +311367,27in FHD Monitor,1,149.99,2019-12-01 12:35:00,542 Cherry St, Los Angeles,CA,90001 +311368,Lightning Charging Cable,1,14.95,2019-12-05 20:59:00,119 Meadow St, San Francisco,CA,94016 +311369,USB-C Charging Cable,3,11.95,2019-12-25 21:28:00,696 7th St, Boston,MA,02215 +311370,Bose SoundSport Headphones,1,99.99,2019-12-17 13:57:00,966 South St, San Francisco,CA,94016 +311371,27in FHD Monitor,1,149.99,2019-12-17 22:35:00,858 Hill St, Seattle,WA,98101 +311372,AA Batteries (4-pack),1,3.84,2019-12-01 12:06:00,35 Jackson St, Boston,MA,02215 +311373,Wired Headphones,1,11.99,2019-12-08 20:55:00,141 4th St, Atlanta,GA,30301 +311374,USB-C Charging Cable,1,11.95,2019-12-16 14:24:00,265 Elm St, Portland,ME,04101 +311375,USB-C Charging Cable,1,11.95,2019-12-11 10:36:00,395 Madison St, Los Angeles,CA,90001 +311376,Lightning Charging Cable,1,14.95,2019-12-12 14:41:00,997 Lincoln St, Los Angeles,CA,90001 +311377,Bose SoundSport Headphones,1,99.99,2019-12-25 14:56:00,233 Lake St, Boston,MA,02215 +311378,AA Batteries (4-pack),1,3.84,2019-12-26 10:43:00,435 Washington St, Los Angeles,CA,90001 +311379,iPhone,1,700.0,2019-12-02 19:17:00,244 9th St, Austin,TX,73301 +311380,AA Batteries (4-pack),1,3.84,2019-12-28 14:53:00,124 14th St, Seattle,WA,98101 +311381,AA Batteries (4-pack),1,3.84,2019-12-03 04:31:00,258 7th St, Boston,MA,02215 +311382,AAA Batteries (4-pack),3,2.99,2019-12-17 17:54:00,142 South St, San Francisco,CA,94016 +311383,Apple Airpods Headphones,1,150.0,2019-12-20 20:17:00,161 Highland St, Atlanta,GA,30301 +311384,27in 4K Gaming Monitor,1,389.99,2019-12-15 18:12:00,218 Meadow St, Boston,MA,02215 +311385,USB-C Charging Cable,2,11.95,2019-12-12 21:42:00,538 Main St, Los Angeles,CA,90001 +311386,iPhone,1,700.0,2020-01-01 00:10:00,730 Pine St, San Francisco,CA,94016 +311386,Apple Airpods Headphones,1,150.0,2020-01-01 00:10:00,730 Pine St, San Francisco,CA,94016 +311387,Lightning Charging Cable,1,14.95,2019-12-21 01:19:00,804 Lakeview St, Los Angeles,CA,90001 +311388,Wired Headphones,1,11.99,2019-12-05 10:02:00,610 Pine St, New York City,NY,10001 +311389,Google Phone,1,600.0,2019-12-29 16:20:00,66 Chestnut St, Portland,ME,04101 +311390,34in Ultrawide Monitor,1,379.99,2019-12-14 18:04:00,99 9th St, San Francisco,CA,94016 +311391,USB-C Charging Cable,1,11.95,2019-12-04 21:17:00,624 South St, Los Angeles,CA,90001 +311392,27in FHD Monitor,1,149.99,2019-12-13 16:21:00,545 Walnut St, Boston,MA,02215 +311393,AA Batteries (4-pack),1,3.84,2019-12-30 18:56:00,829 Cherry St, Atlanta,GA,30301 +311394,USB-C Charging Cable,1,11.95,2019-12-23 12:00:00,939 5th St, Los Angeles,CA,90001 +311395,AA Batteries (4-pack),1,3.84,2019-12-24 12:13:00,806 Forest St, Los Angeles,CA,90001 +311396,AA Batteries (4-pack),1,3.84,2019-12-01 16:44:00,204 Washington St, New York City,NY,10001 +311396,Wired Headphones,1,11.99,2019-12-01 16:44:00,204 Washington St, New York City,NY,10001 +311397,Google Phone,1,600.0,2019-12-20 14:16:00,478 Forest St, Seattle,WA,98101 +311397,Wired Headphones,2,11.99,2019-12-20 14:16:00,478 Forest St, Seattle,WA,98101 +311398,Flatscreen TV,1,300.0,2019-12-04 08:30:00,609 Elm St, Seattle,WA,98101 +311398,Apple Airpods Headphones,1,150.0,2019-12-04 08:30:00,609 Elm St, Seattle,WA,98101 +311399,AA Batteries (4-pack),1,3.84,2019-12-14 09:50:00,7 Cherry St, Dallas,TX,75001 +311400,Flatscreen TV,1,300.0,2019-12-27 10:20:00,36 9th St, San Francisco,CA,94016 +311401,USB-C Charging Cable,1,11.95,2019-12-10 22:00:00,930 7th St, Portland,OR,97035 +311402,34in Ultrawide Monitor,1,379.99,2019-12-23 14:51:00,939 West St, Dallas,TX,75001 +311403,AAA Batteries (4-pack),1,2.99,2019-12-06 15:13:00,861 Hill St, Los Angeles,CA,90001 +311404,AAA Batteries (4-pack),1,2.99,2019-12-01 16:46:00,801 Forest St, Atlanta,GA,30301 +311405,34in Ultrawide Monitor,1,379.99,2019-12-07 10:18:00,290 Dogwood St, Dallas,TX,75001 +311406,Lightning Charging Cable,1,14.95,2019-12-16 19:46:00,216 Dogwood St, Seattle,WA,98101 +311407,Wired Headphones,1,11.99,2019-12-21 00:42:00,413 River St, Seattle,WA,98101 +311408,Apple Airpods Headphones,1,150.0,2019-12-04 08:01:00,880 Hickory St, Los Angeles,CA,90001 +311409,Lightning Charging Cable,1,14.95,2019-12-24 13:01:00,649 2nd St, Los Angeles,CA,90001 +311410,Lightning Charging Cable,1,14.95,2019-12-10 12:52:00,279 Cedar St, Atlanta,GA,30301 +311411,AAA Batteries (4-pack),3,2.99,2019-12-23 12:22:00,504 Sunset St, New York City,NY,10001 +311412,Vareebadd Phone,1,400.0,2019-12-15 15:34:00,895 7th St, New York City,NY,10001 +311412,USB-C Charging Cable,1,11.95,2019-12-15 15:34:00,895 7th St, New York City,NY,10001 +311413,Bose SoundSport Headphones,1,99.99,2019-12-12 22:41:00,898 Adams St, San Francisco,CA,94016 +311414,Apple Airpods Headphones,1,150.0,2019-12-07 20:10:00,321 2nd St, Boston,MA,02215 +311415,Wired Headphones,1,11.99,2019-12-13 00:37:00,270 River St, New York City,NY,10001 +311416,27in 4K Gaming Monitor,1,389.99,2019-12-28 18:28:00,776 South St, New York City,NY,10001 +311417,Lightning Charging Cable,1,14.95,2019-12-16 23:53:00,136 9th St, Boston,MA,02215 +311418,USB-C Charging Cable,1,11.95,2019-12-16 17:38:00,796 Maple St, Los Angeles,CA,90001 +311419,USB-C Charging Cable,1,11.95,2019-12-12 13:38:00,776 9th St, Los Angeles,CA,90001 +311420,ThinkPad Laptop,1,999.99,2019-12-16 00:06:00,703 13th St, Atlanta,GA,30301 +311421,Wired Headphones,1,11.99,2019-12-06 09:59:00,54 11th St, San Francisco,CA,94016 +311422,27in 4K Gaming Monitor,1,389.99,2019-12-02 10:34:00,292 Highland St, Austin,TX,73301 +311423,27in 4K Gaming Monitor,1,389.99,2019-12-19 08:03:00,817 Hill St, Seattle,WA,98101 +311424,Apple Airpods Headphones,1,150.0,2019-12-30 12:06:00,406 7th St, Dallas,TX,75001 +311425,Bose SoundSport Headphones,1,99.99,2019-12-01 19:23:00,879 Johnson St, San Francisco,CA,94016 +311426,USB-C Charging Cable,1,11.95,2019-12-12 12:45:00,41 Church St, San Francisco,CA,94016 +311427,iPhone,1,700.0,2019-12-26 22:15:00,920 11th St, Los Angeles,CA,90001 +311428,ThinkPad Laptop,1,999.99,2019-12-04 15:07:00,863 6th St, New York City,NY,10001 +311429,34in Ultrawide Monitor,1,379.99,2019-12-05 15:35:00,359 Maple St, San Francisco,CA,94016 +311430,Bose SoundSport Headphones,1,99.99,2019-12-19 16:15:00,927 Walnut St, Atlanta,GA,30301 +311431,ThinkPad Laptop,1,999.99,2019-12-03 17:55:00,903 Madison St, Los Angeles,CA,90001 +311432,Wired Headphones,1,11.99,2019-12-21 13:14:00,519 Hickory St, San Francisco,CA,94016 +311433,Lightning Charging Cable,1,14.95,2019-12-08 21:10:00,431 Lincoln St, Los Angeles,CA,90001 +311434,Bose SoundSport Headphones,1,99.99,2019-12-13 10:24:00,999 2nd St, Boston,MA,02215 +311435,USB-C Charging Cable,1,11.95,2019-12-06 07:43:00,978 Madison St, Seattle,WA,98101 +311436,27in FHD Monitor,1,149.99,2019-12-04 09:54:00,269 Lake St, Seattle,WA,98101 +311437,ThinkPad Laptop,1,999.99,2019-12-05 19:42:00,386 Walnut St, Atlanta,GA,30301 +311438,AA Batteries (4-pack),2,3.84,2019-12-08 13:59:00,718 Lake St, Atlanta,GA,30301 +311439,Apple Airpods Headphones,1,150.0,2019-12-24 22:44:00,679 Highland St, Boston,MA,02215 +311440,Wired Headphones,1,11.99,2019-12-22 12:48:00,130 Jackson St, Los Angeles,CA,90001 +311441,AAA Batteries (4-pack),1,2.99,2019-12-25 19:18:00,499 5th St, Portland,OR,97035 +311442,Bose SoundSport Headphones,1,99.99,2019-12-28 22:30:00,677 Ridge St, Austin,TX,73301 +311443,Wired Headphones,1,11.99,2019-12-21 12:36:00,772 5th St, Los Angeles,CA,90001 +311444,Apple Airpods Headphones,1,150.0,2019-12-02 01:49:00,679 7th St, San Francisco,CA,94016 +311445,27in 4K Gaming Monitor,1,389.99,2019-12-14 06:01:00,463 Willow St, Atlanta,GA,30301 +311446,USB-C Charging Cable,1,11.95,2019-12-07 06:35:00,62 Sunset St, Portland,OR,97035 +311447,AAA Batteries (4-pack),1,2.99,2019-12-28 01:29:00,783 11th St, Boston,MA,02215 +311448,AAA Batteries (4-pack),1,2.99,2019-12-08 11:39:00,705 Wilson St, San Francisco,CA,94016 +311449,USB-C Charging Cable,2,11.95,2019-12-26 10:44:00,763 12th St, Los Angeles,CA,90001 +311450,Lightning Charging Cable,1,14.95,2019-12-13 18:15:00,285 1st St, Dallas,TX,75001 +311451,Flatscreen TV,1,300.0,2019-12-18 17:28:00,955 7th St, San Francisco,CA,94016 +311452,Bose SoundSport Headphones,1,99.99,2019-12-14 23:55:00,328 Maple St, Los Angeles,CA,90001 +311453,Bose SoundSport Headphones,1,99.99,2019-12-06 23:23:00,867 Park St, Seattle,WA,98101 +311454,Lightning Charging Cable,1,14.95,2019-12-09 23:47:00,515 6th St, New York City,NY,10001 +311455,27in FHD Monitor,1,149.99,2019-12-15 08:48:00,102 Adams St, Dallas,TX,75001 +311456,AA Batteries (4-pack),1,3.84,2019-12-03 17:06:00,664 11th St, New York City,NY,10001 +311457,USB-C Charging Cable,1,11.95,2019-12-15 06:00:00,838 North St, Los Angeles,CA,90001 +311458,27in 4K Gaming Monitor,1,389.99,2019-12-15 08:58:00,238 Walnut St, Boston,MA,02215 +311459,AA Batteries (4-pack),1,3.84,2019-12-17 08:46:00,570 Madison St, Boston,MA,02215 +311460,AA Batteries (4-pack),3,3.84,2019-12-29 19:21:00,817 Madison St, Atlanta,GA,30301 +311461,34in Ultrawide Monitor,1,379.99,2019-12-18 14:00:00,74 Church St, New York City,NY,10001 +311462,Flatscreen TV,1,300.0,2019-12-06 14:12:00,185 Park St, Dallas,TX,75001 +311463,AAA Batteries (4-pack),2,2.99,2019-12-14 06:35:00,939 Washington St, New York City,NY,10001 +311464,Lightning Charging Cable,1,14.95,2019-12-16 20:28:00,642 Lake St, San Francisco,CA,94016 +311465,Wired Headphones,1,11.99,2019-12-27 15:23:00,667 10th St, San Francisco,CA,94016 +311466,ThinkPad Laptop,1,999.99,2019-12-01 14:20:00,126 Chestnut St, San Francisco,CA,94016 +311467,Lightning Charging Cable,1,14.95,2019-12-24 17:28:00,535 Lake St, Boston,MA,02215 +311468,AAA Batteries (4-pack),4,2.99,2019-12-12 11:09:00,336 Meadow St, San Francisco,CA,94016 +311469,iPhone,1,700.0,2019-12-21 16:33:00,792 6th St, Boston,MA,02215 +311470,USB-C Charging Cable,1,11.95,2019-12-30 12:57:00,154 Center St, Los Angeles,CA,90001 +311471,USB-C Charging Cable,1,11.95,2019-12-24 10:52:00,840 Lake St, Austin,TX,73301 +311472,AA Batteries (4-pack),1,3.84,2019-12-30 10:07:00,279 Spruce St, Dallas,TX,75001 +311473,Wired Headphones,1,11.99,2019-12-25 20:10:00,698 11th St, San Francisco,CA,94016 +311474,AA Batteries (4-pack),1,3.84,2019-12-30 12:43:00,521 Cherry St, Los Angeles,CA,90001 +311475,AA Batteries (4-pack),1,3.84,2019-12-29 17:18:00,212 5th St, Seattle,WA,98101 +311476,AA Batteries (4-pack),2,3.84,2019-12-23 14:22:00,847 Spruce St, Los Angeles,CA,90001 +311477,27in FHD Monitor,1,149.99,2019-12-09 10:45:00,617 Jackson St, Portland,OR,97035 +311478,ThinkPad Laptop,1,999.99,2019-12-27 20:29:00,821 7th St, Los Angeles,CA,90001 +311479,34in Ultrawide Monitor,1,379.99,2019-12-08 16:27:00,292 Center St, Seattle,WA,98101 +311480,AA Batteries (4-pack),1,3.84,2019-12-28 20:44:00,948 South St, Los Angeles,CA,90001 +311481,AAA Batteries (4-pack),2,2.99,2019-12-30 15:30:00,858 South St, San Francisco,CA,94016 +311482,USB-C Charging Cable,1,11.95,2019-12-21 20:18:00,331 Adams St, Los Angeles,CA,90001 +311483,AAA Batteries (4-pack),1,2.99,2019-12-26 13:59:00,323 Lake St, New York City,NY,10001 +311484,AAA Batteries (4-pack),1,2.99,2019-12-05 15:10:00,490 1st St, New York City,NY,10001 +311485,Flatscreen TV,1,300.0,2019-12-26 11:40:00,455 North St, San Francisco,CA,94016 +311486,AA Batteries (4-pack),1,3.84,2019-12-03 09:42:00,372 Lake St, Seattle,WA,98101 +311487,Apple Airpods Headphones,1,150.0,2019-12-14 20:52:00,269 Chestnut St, Boston,MA,02215 +311488,AA Batteries (4-pack),2,3.84,2019-12-04 23:17:00,504 Church St, San Francisco,CA,94016 +311489,USB-C Charging Cable,1,11.95,2019-12-19 12:11:00,189 West St, Los Angeles,CA,90001 +311490,Apple Airpods Headphones,1,150.0,2019-12-06 17:45:00,343 Forest St, Los Angeles,CA,90001 +311491,27in FHD Monitor,1,149.99,2019-12-12 19:24:00,595 12th St, San Francisco,CA,94016 +311492,20in Monitor,1,109.99,2019-12-02 15:52:00,363 Madison St, Dallas,TX,75001 +311493,Lightning Charging Cable,1,14.95,2019-12-26 20:50:00,721 5th St, Los Angeles,CA,90001 +311494,AA Batteries (4-pack),1,3.84,2019-12-20 12:14:00,985 Wilson St, Los Angeles,CA,90001 +311495,AAA Batteries (4-pack),1,2.99,2019-12-24 13:53:00,244 Jefferson St, Dallas,TX,75001 +311496,AAA Batteries (4-pack),2,2.99,2019-12-02 07:06:00,238 Jefferson St, San Francisco,CA,94016 +311497,AAA Batteries (4-pack),2,2.99,2019-12-31 23:05:00,855 Spruce St, Seattle,WA,98101 +311498,AAA Batteries (4-pack),1,2.99,2019-12-10 15:54:00,489 River St, San Francisco,CA,94016 +311499,ThinkPad Laptop,1,999.99,2019-12-25 00:27:00,341 7th St, New York City,NY,10001 +311500,iPhone,1,700.0,2019-12-10 14:09:00,910 11th St, Atlanta,GA,30301 +311500,Lightning Charging Cable,1,14.95,2019-12-10 14:09:00,910 11th St, Atlanta,GA,30301 +311501,AA Batteries (4-pack),1,3.84,2019-12-31 14:39:00,533 Hill St, San Francisco,CA,94016 +311502,AA Batteries (4-pack),1,3.84,2019-12-07 16:24:00,473 8th St, San Francisco,CA,94016 +311503,27in 4K Gaming Monitor,1,389.99,2019-12-07 10:56:00,782 Center St, New York City,NY,10001 +311504,AA Batteries (4-pack),1,3.84,2019-12-22 18:35:00,74 2nd St, Portland,OR,97035 +311505,Apple Airpods Headphones,1,150.0,2019-12-05 15:27:00,700 11th St, Boston,MA,02215 +311506,Lightning Charging Cable,1,14.95,2019-12-16 18:52:00,243 13th St, New York City,NY,10001 +311507,Flatscreen TV,1,300.0,2019-12-25 16:35:00,17 Dogwood St, San Francisco,CA,94016 +311508,AAA Batteries (4-pack),3,2.99,2019-12-09 11:01:00,392 Park St, Atlanta,GA,30301 +311509,AA Batteries (4-pack),2,3.84,2019-12-13 08:15:00,763 North St, Portland,ME,04101 +311510,27in 4K Gaming Monitor,1,389.99,2019-12-15 19:36:00,951 Cedar St, Boston,MA,02215 +311511,AA Batteries (4-pack),1,3.84,2019-12-15 11:00:00,795 Meadow St, New York City,NY,10001 +311512,AAA Batteries (4-pack),1,2.99,2019-12-03 10:22:00,161 10th St, Los Angeles,CA,90001 +311513,USB-C Charging Cable,1,11.95,2019-12-18 12:07:00,311 Spruce St, Austin,TX,73301 +311514,Apple Airpods Headphones,1,150.0,2019-12-23 10:56:00,373 Park St, Los Angeles,CA,90001 +311515,AA Batteries (4-pack),1,3.84,2019-12-16 10:20:00,233 Jackson St, New York City,NY,10001 +311516,AA Batteries (4-pack),2,3.84,2019-12-01 14:33:00,99 4th St, Austin,TX,73301 +311517,Wired Headphones,1,11.99,2019-12-12 19:53:00,540 Wilson St, Boston,MA,02215 +311518,ThinkPad Laptop,1,999.99,2019-12-29 14:49:00,430 Chestnut St, Dallas,TX,75001 +311519,iPhone,1,700.0,2019-12-17 00:11:00,679 Ridge St, Seattle,WA,98101 +311520,iPhone,1,700.0,2019-12-31 22:35:00,787 8th St, New York City,NY,10001 +311521,Lightning Charging Cable,1,14.95,2019-12-12 17:18:00,798 River St, San Francisco,CA,94016 +311522,Apple Airpods Headphones,1,150.0,2019-12-15 20:46:00,353 River St, San Francisco,CA,94016 +311523,Apple Airpods Headphones,1,150.0,2019-12-14 17:39:00,482 Cherry St, San Francisco,CA,94016 +311524,AA Batteries (4-pack),2,3.84,2019-12-16 21:56:00,9 Highland St, San Francisco,CA,94016 +311525,Macbook Pro Laptop,1,1700.0,2019-12-19 19:28:00,12 Spruce St, San Francisco,CA,94016 +311526,AA Batteries (4-pack),1,3.84,2019-12-20 10:50:00,402 River St, San Francisco,CA,94016 +311527,ThinkPad Laptop,1,999.99,2019-12-15 00:37:00,893 Lake St, Austin,TX,73301 +311528,Lightning Charging Cable,2,14.95,2019-12-30 12:29:00,947 Maple St, San Francisco,CA,94016 +311529,27in 4K Gaming Monitor,1,389.99,2019-12-27 14:32:00,818 Center St, New York City,NY,10001 +311530,AA Batteries (4-pack),1,3.84,2019-12-04 18:22:00,127 North St, Los Angeles,CA,90001 +311531,Lightning Charging Cable,1,14.95,2019-12-07 16:53:00,491 Hickory St, New York City,NY,10001 +311532,AAA Batteries (4-pack),1,2.99,2019-12-31 03:30:00,124 Madison St, New York City,NY,10001 +311533,AA Batteries (4-pack),3,3.84,2019-12-10 07:42:00,629 Lincoln St, Atlanta,GA,30301 +311534,Flatscreen TV,1,300.0,2019-12-20 02:47:00,379 Jefferson St, San Francisco,CA,94016 +311535,Lightning Charging Cable,1,14.95,2019-12-07 13:13:00,767 Chestnut St, Los Angeles,CA,90001 +311536,27in 4K Gaming Monitor,1,389.99,2019-12-23 10:02:00,329 Main St, Dallas,TX,75001 +311537,Wired Headphones,1,11.99,2019-12-14 11:27:00,446 Main St, Los Angeles,CA,90001 +311538,Apple Airpods Headphones,1,150.0,2019-12-04 10:09:00,978 Spruce St, New York City,NY,10001 +311539,Bose SoundSport Headphones,1,99.99,2019-12-16 12:09:00,186 Maple St, Atlanta,GA,30301 +311540,27in FHD Monitor,1,149.99,2019-12-02 13:51:00,494 West St, Boston,MA,02215 +311541,Google Phone,1,600.0,2019-12-04 08:12:00,96 River St, Austin,TX,73301 +311541,USB-C Charging Cable,1,11.95,2019-12-04 08:12:00,96 River St, Austin,TX,73301 +311542,27in 4K Gaming Monitor,1,389.99,2019-12-11 11:06:00,58 Lake St, Seattle,WA,98101 +311543,Flatscreen TV,1,300.0,2019-12-29 11:52:00,815 Washington St, New York City,NY,10001 +311544,Google Phone,1,600.0,2019-12-24 20:20:00,880 Church St, Atlanta,GA,30301 +311545,AA Batteries (4-pack),1,3.84,2019-12-09 12:52:00,314 Center St, Boston,MA,02215 +311546,Lightning Charging Cable,1,14.95,2019-12-14 12:11:00,911 Maple St, Austin,TX,73301 +311547,AA Batteries (4-pack),1,3.84,2019-12-16 22:37:00,403 7th St, San Francisco,CA,94016 +311548,Wired Headphones,1,11.99,2019-12-20 13:33:00,187 Washington St, San Francisco,CA,94016 +311549,AA Batteries (4-pack),1,3.84,2019-12-02 11:05:00,18 14th St, Seattle,WA,98101 +311550,AAA Batteries (4-pack),1,2.99,2019-12-09 02:13:00,377 South St, San Francisco,CA,94016 +311551,27in FHD Monitor,1,149.99,2019-12-04 19:02:00,784 North St, Los Angeles,CA,90001 +311552,Lightning Charging Cable,1,14.95,2019-12-03 09:04:00,736 North St, Atlanta,GA,30301 +311553,Lightning Charging Cable,1,14.95,2019-12-14 09:39:00,732 Hickory St, Boston,MA,02215 +311554,Apple Airpods Headphones,1,150.0,2019-12-10 20:14:00,682 Church St, New York City,NY,10001 +311555,Bose SoundSport Headphones,1,99.99,2019-12-27 19:22:00,473 Ridge St, Los Angeles,CA,90001 +311556,Wired Headphones,1,11.99,2019-12-20 20:00:00,99 Jackson St, Dallas,TX,75001 +311557,Apple Airpods Headphones,1,150.0,2019-12-06 14:58:00,861 Madison St, Dallas,TX,75001 +311558,Lightning Charging Cable,1,14.95,2019-12-20 09:55:00,570 Walnut St, San Francisco,CA,94016 +311558,ThinkPad Laptop,1,999.99,2019-12-20 09:55:00,570 Walnut St, San Francisco,CA,94016 +311559,Lightning Charging Cable,1,14.95,2019-12-08 14:32:00,399 North St, Los Angeles,CA,90001 +311560,Wired Headphones,1,11.99,2019-12-25 16:50:00,375 South St, Atlanta,GA,30301 +311561,AA Batteries (4-pack),3,3.84,2019-12-17 23:38:00,663 2nd St, San Francisco,CA,94016 +311562,Macbook Pro Laptop,1,1700.0,2019-12-29 23:36:00,644 Forest St, New York City,NY,10001 +311563,iPhone,1,700.0,2019-12-09 20:16:00,798 Jefferson St, Seattle,WA,98101 +311564,AAA Batteries (4-pack),3,2.99,2019-12-14 21:36:00,800 Dogwood St, San Francisco,CA,94016 +311565,AA Batteries (4-pack),2,3.84,2019-12-02 11:06:00,374 Ridge St, Portland,OR,97035 +311566,AA Batteries (4-pack),3,3.84,2019-12-26 14:23:00,648 5th St, Seattle,WA,98101 +311567,Lightning Charging Cable,1,14.95,2019-12-06 23:33:00,462 Elm St, New York City,NY,10001 +311568,Wired Headphones,1,11.99,2019-12-03 11:20:00,400 Johnson St, Austin,TX,73301 +311569,USB-C Charging Cable,1,11.95,2019-12-27 11:56:00,311 Lincoln St, Boston,MA,02215 +311570,Flatscreen TV,1,300.0,2019-12-05 18:30:00,766 Center St, New York City,NY,10001 +311571,USB-C Charging Cable,2,11.95,2019-12-13 21:00:00,757 Sunset St, San Francisco,CA,94016 +311572,Macbook Pro Laptop,1,1700.0,2019-12-18 22:00:00,905 Pine St, Portland,OR,97035 +311573,Macbook Pro Laptop,1,1700.0,2019-12-15 19:02:00,54 Cedar St, San Francisco,CA,94016 +311574,Google Phone,1,600.0,2019-12-16 20:27:00,47 Highland St, Seattle,WA,98101 +311575,Bose SoundSport Headphones,1,99.99,2019-12-07 12:26:00,301 2nd St, San Francisco,CA,94016 +311576,USB-C Charging Cable,1,11.95,2019-12-13 21:35:00,195 Highland St, Los Angeles,CA,90001 +311577,USB-C Charging Cable,1,11.95,2019-12-06 10:55:00,222 2nd St, San Francisco,CA,94016 +311578,USB-C Charging Cable,2,11.95,2019-12-19 20:25:00,337 14th St, Dallas,TX,75001 +311579,AA Batteries (4-pack),1,3.84,2019-12-02 22:44:00,353 North St, San Francisco,CA,94016 +311580,AA Batteries (4-pack),1,3.84,2019-12-25 17:06:00,64 Cedar St, San Francisco,CA,94016 +311581,Macbook Pro Laptop,1,1700.0,2019-12-17 09:58:00,369 7th St, Boston,MA,02215 +311582,Macbook Pro Laptop,1,1700.0,2019-12-18 11:25:00,319 River St, Seattle,WA,98101 +311583,Lightning Charging Cable,1,14.95,2019-12-31 19:10:00,200 Washington St, Los Angeles,CA,90001 +311584,Vareebadd Phone,1,400.0,2019-12-24 08:34:00,588 7th St, Los Angeles,CA,90001 +311585,Bose SoundSport Headphones,1,99.99,2019-12-11 20:45:00,196 Washington St, San Francisco,CA,94016 +311586,ThinkPad Laptop,1,999.99,2019-12-01 21:57:00,477 Dogwood St, San Francisco,CA,94016 +311587,Macbook Pro Laptop,1,1700.0,2019-12-08 19:17:00,118 Hill St, Los Angeles,CA,90001 +311588,Macbook Pro Laptop,1,1700.0,2019-12-05 19:03:00,27 10th St, Seattle,WA,98101 +311589,iPhone,1,700.0,2019-12-17 18:54:00,124 1st St, Dallas,TX,75001 +311589,Lightning Charging Cable,1,14.95,2019-12-17 18:54:00,124 1st St, Dallas,TX,75001 +311590,AAA Batteries (4-pack),1,2.99,2019-12-31 17:47:00,887 Jackson St, Portland,OR,97035 +311591,AA Batteries (4-pack),1,3.84,2019-12-27 17:54:00,198 10th St, San Francisco,CA,94016 +311592,AA Batteries (4-pack),1,3.84,2019-12-10 06:27:00,550 Pine St, San Francisco,CA,94016 +311593,LG Washing Machine,1,600.0,2019-12-08 21:15:00,725 11th St, Portland,ME,04101 +311594,AAA Batteries (4-pack),1,2.99,2019-12-16 17:41:00,194 Walnut St, New York City,NY,10001 +311595,34in Ultrawide Monitor,1,379.99,2019-12-27 23:41:00,730 Lakeview St, Los Angeles,CA,90001 +311596,AAA Batteries (4-pack),4,2.99,2019-12-15 10:23:00,589 Elm St, San Francisco,CA,94016 +311597,Macbook Pro Laptop,1,1700.0,2019-12-15 13:08:00,753 9th St, San Francisco,CA,94016 +311598,Google Phone,1,600.0,2019-12-21 18:20:00,274 Washington St, New York City,NY,10001 +311599,Lightning Charging Cable,1,14.95,2019-12-11 20:11:00,150 Madison St, Los Angeles,CA,90001 +311600,34in Ultrawide Monitor,1,379.99,2019-12-25 13:59:00,789 9th St, Portland,OR,97035 +311601,iPhone,1,700.0,2019-12-18 08:16:00,766 West St, San Francisco,CA,94016 +311602,27in 4K Gaming Monitor,1,389.99,2019-12-11 18:07:00,667 Ridge St, Boston,MA,02215 +311603,AAA Batteries (4-pack),1,2.99,2019-12-06 13:42:00,722 5th St, Austin,TX,73301 +311604,AA Batteries (4-pack),1,3.84,2019-12-20 17:37:00,142 Center St, San Francisco,CA,94016 +311605,AAA Batteries (4-pack),1,2.99,2019-12-31 22:04:00,594 Wilson St, San Francisco,CA,94016 +311606,iPhone,1,700.0,2019-12-04 20:35:00,267 Forest St, Boston,MA,02215 +311607,Lightning Charging Cable,1,14.95,2019-12-20 17:43:00,244 Wilson St, Atlanta,GA,30301 +311608,AA Batteries (4-pack),3,3.84,2019-12-12 09:35:00,205 Lake St, Dallas,TX,75001 +311609,27in FHD Monitor,1,149.99,2019-12-17 10:45:00,755 Hickory St, San Francisco,CA,94016 +311610,USB-C Charging Cable,1,11.95,2019-12-02 01:04:00,517 South St, Los Angeles,CA,90001 +311611,Lightning Charging Cable,1,14.95,2019-12-17 18:29:00,987 Elm St, Boston,MA,02215 +311612,Lightning Charging Cable,1,14.95,2019-12-04 16:30:00,516 River St, San Francisco,CA,94016 +311613,Macbook Pro Laptop,1,1700.0,2019-12-02 00:40:00,705 Forest St, San Francisco,CA,94016 +311614,Macbook Pro Laptop,1,1700.0,2019-12-08 15:08:00,751 Wilson St, Los Angeles,CA,90001 +311615,Apple Airpods Headphones,1,150.0,2019-12-29 00:42:00,454 Main St, San Francisco,CA,94016 +311616,USB-C Charging Cable,1,11.95,2019-12-29 19:57:00,197 7th St, Dallas,TX,75001 +311617,ThinkPad Laptop,1,999.99,2019-12-06 01:08:00,140 Pine St, Portland,ME,04101 +311618,USB-C Charging Cable,1,11.95,2019-12-15 08:01:00,907 Johnson St, San Francisco,CA,94016 +311619,20in Monitor,1,109.99,2019-12-31 18:22:00,121 Madison St, Atlanta,GA,30301 +311620,AAA Batteries (4-pack),1,2.99,2019-12-27 20:41:00,519 Pine St, Atlanta,GA,30301 +311621,Wired Headphones,1,11.99,2019-12-11 20:59:00,990 13th St, San Francisco,CA,94016 +311622,Apple Airpods Headphones,1,150.0,2019-12-17 20:10:00,585 7th St, Boston,MA,02215 +311623,Macbook Pro Laptop,1,1700.0,2019-12-30 19:50:00,711 9th St, Atlanta,GA,30301 +311624,AAA Batteries (4-pack),1,2.99,2019-12-27 15:29:00,91 Cherry St, Atlanta,GA,30301 +311625,USB-C Charging Cable,1,11.95,2019-12-25 09:24:00,839 Adams St, Los Angeles,CA,90001 +311626,AA Batteries (4-pack),1,3.84,2019-12-16 18:39:00,721 South St, Austin,TX,73301 +311627,USB-C Charging Cable,1,11.95,2019-12-16 18:03:00,488 Willow St, San Francisco,CA,94016 +311628,ThinkPad Laptop,1,999.99,2019-12-09 01:06:00,697 Hill St, Seattle,WA,98101 +311629,Apple Airpods Headphones,1,150.0,2019-12-22 15:14:00,523 Cedar St, San Francisco,CA,94016 +311630,34in Ultrawide Monitor,1,379.99,2019-12-03 06:49:00,631 Meadow St, San Francisco,CA,94016 +311630,AA Batteries (4-pack),2,3.84,2019-12-03 06:49:00,631 Meadow St, San Francisco,CA,94016 +311631,USB-C Charging Cable,1,11.95,2019-12-19 12:42:00,102 Dogwood St, Boston,MA,02215 +311632,20in Monitor,1,109.99,2019-12-28 17:44:00,897 North St, Los Angeles,CA,90001 +311633,Lightning Charging Cable,1,14.95,2019-12-10 10:50:00,199 Jackson St, New York City,NY,10001 +311634,20in Monitor,1,109.99,2019-12-30 07:00:00,451 Ridge St, Boston,MA,02215 +311635,Wired Headphones,2,11.99,2019-12-27 10:42:00,202 8th St, New York City,NY,10001 +311636,Apple Airpods Headphones,1,150.0,2019-12-13 09:57:00,948 Park St, Los Angeles,CA,90001 +311637,Lightning Charging Cable,1,14.95,2019-12-05 17:32:00,340 Church St, Boston,MA,02215 +311638,Bose SoundSport Headphones,1,99.99,2019-12-14 16:38:00,847 North St, San Francisco,CA,94016 +311639,AA Batteries (4-pack),1,3.84,2019-12-23 21:54:00,84 Cedar St, Austin,TX,73301 +311640,34in Ultrawide Monitor,1,379.99,2019-12-11 09:25:00,48 Hill St, San Francisco,CA,94016 +311641,USB-C Charging Cable,1,11.95,2019-12-23 21:32:00,750 Main St, Austin,TX,73301 +311642,Bose SoundSport Headphones,1,99.99,2019-12-02 22:14:00,109 Madison St, Seattle,WA,98101 +311643,Bose SoundSport Headphones,1,99.99,2019-12-17 17:07:00,882 Lincoln St, Portland,OR,97035 +311644,Bose SoundSport Headphones,1,99.99,2019-12-14 20:52:00,926 10th St, New York City,NY,10001 +311645,34in Ultrawide Monitor,1,379.99,2019-12-09 09:30:00,179 14th St, New York City,NY,10001 +311646,Apple Airpods Headphones,1,150.0,2019-12-18 21:22:00,224 12th St, Atlanta,GA,30301 +311647,iPhone,1,700.0,2019-12-31 17:53:00,19 Lincoln St, New York City,NY,10001 +311648,Lightning Charging Cable,1,14.95,2019-12-28 15:33:00,992 12th St, Boston,MA,02215 +311649,27in 4K Gaming Monitor,1,389.99,2019-12-05 17:42:00,759 Church St, New York City,NY,10001 +311650,Google Phone,1,600.0,2019-12-18 22:44:00,734 Maple St, Seattle,WA,98101 +311650,Wired Headphones,2,11.99,2019-12-18 22:44:00,734 Maple St, Seattle,WA,98101 +311651,Apple Airpods Headphones,1,150.0,2019-12-14 19:39:00,554 Park St, Seattle,WA,98101 +311652,USB-C Charging Cable,1,11.95,2019-12-29 13:34:00,398 West St, Atlanta,GA,30301 +311653,Wired Headphones,1,11.99,2019-12-15 19:36:00,125 Jefferson St, Seattle,WA,98101 +311654,27in FHD Monitor,1,149.99,2019-12-17 23:02:00,211 Lakeview St, San Francisco,CA,94016 +311655,27in 4K Gaming Monitor,1,389.99,2019-12-07 11:29:00,219 Madison St, Atlanta,GA,30301 +311656,Lightning Charging Cable,1,14.95,2019-12-22 11:08:00,181 Forest St, Los Angeles,CA,90001 +311657,Wired Headphones,1,11.99,2019-12-23 20:19:00,147 Lincoln St, Portland,ME,04101 +311658,Wired Headphones,1,11.99,2019-12-22 18:19:00,863 Jefferson St, San Francisco,CA,94016 +311658,AAA Batteries (4-pack),1,2.99,2019-12-22 18:19:00,863 Jefferson St, San Francisco,CA,94016 +311659,Apple Airpods Headphones,1,150.0,2019-12-26 19:45:00,840 Spruce St, Portland,OR,97035 +311660,Lightning Charging Cable,1,14.95,2019-12-18 18:33:00,440 Hickory St, Portland,OR,97035 +311661,Apple Airpods Headphones,1,150.0,2019-12-27 19:57:00,210 West St, Boston,MA,02215 +311661,27in 4K Gaming Monitor,1,389.99,2019-12-27 19:57:00,210 West St, Boston,MA,02215 +311662,Bose SoundSport Headphones,1,99.99,2019-12-11 13:55:00,331 Cedar St, Los Angeles,CA,90001 +311663,Lightning Charging Cable,1,14.95,2019-12-27 18:12:00,550 Willow St, Dallas,TX,75001 +311664,Wired Headphones,1,11.99,2019-12-10 12:46:00,659 Hickory St, Austin,TX,73301 +311665,Google Phone,1,600.0,2019-12-03 13:33:00,875 North St, San Francisco,CA,94016 +311665,USB-C Charging Cable,1,11.95,2019-12-03 13:33:00,875 North St, San Francisco,CA,94016 +311666,USB-C Charging Cable,1,11.95,2019-12-14 15:50:00,4 11th St, Los Angeles,CA,90001 +311667,27in FHD Monitor,1,149.99,2019-12-14 19:04:00,109 5th St, Los Angeles,CA,90001 +311668,AA Batteries (4-pack),1,3.84,2019-12-23 10:22:00,198 Elm St, Atlanta,GA,30301 +311669,ThinkPad Laptop,1,999.99,2019-12-27 17:07:00,868 7th St, Boston,MA,02215 +311670,Bose SoundSport Headphones,1,99.99,2019-12-20 12:01:00,112 North St, Boston,MA,02215 +311671,iPhone,1,700.0,2019-12-01 16:08:00,525 Main St, San Francisco,CA,94016 +311672,Bose SoundSport Headphones,1,99.99,2019-12-02 16:16:00,400 1st St, San Francisco,CA,94016 +311673,USB-C Charging Cable,1,11.95,2019-12-26 22:24:00,169 Forest St, San Francisco,CA,94016 +311674,AAA Batteries (4-pack),3,2.99,2019-12-28 15:19:00,682 Maple St, Portland,OR,97035 +311675,Lightning Charging Cable,1,14.95,2019-12-13 12:06:00,587 Lake St, San Francisco,CA,94016 +311676,27in 4K Gaming Monitor,1,389.99,2019-12-12 17:57:00,472 14th St, Dallas,TX,75001 +311677,Apple Airpods Headphones,1,150.0,2019-12-25 15:25:00,713 Cherry St, Boston,MA,02215 +311678,27in 4K Gaming Monitor,1,389.99,2019-12-15 23:24:00,126 Dogwood St, Atlanta,GA,30301 +311679,Bose SoundSport Headphones,1,99.99,2019-12-11 12:46:00,661 8th St, Boston,MA,02215 +311680,iPhone,1,700.0,2019-12-01 22:38:00,928 Church St, Los Angeles,CA,90001 +311681,27in FHD Monitor,1,149.99,2019-12-04 07:40:00,22 13th St, San Francisco,CA,94016 +311682,AAA Batteries (4-pack),1,2.99,2019-12-02 12:46:00,411 Washington St, San Francisco,CA,94016 +311683,27in 4K Gaming Monitor,1,389.99,2019-12-18 20:58:00,673 Lincoln St, Atlanta,GA,30301 +311684,Flatscreen TV,1,300.0,2019-12-06 15:06:00,115 Elm St, San Francisco,CA,94016 +311685,Lightning Charging Cable,1,14.95,2019-12-27 12:26:00,707 6th St, Los Angeles,CA,90001 +311686,Bose SoundSport Headphones,1,99.99,2019-12-14 10:46:00,853 Elm St, New York City,NY,10001 +311687,USB-C Charging Cable,1,11.95,2019-12-22 03:57:00,302 13th St, Dallas,TX,75001 +311688,AA Batteries (4-pack),1,3.84,2019-12-24 19:31:00,936 10th St, San Francisco,CA,94016 +311689,AAA Batteries (4-pack),2,2.99,2019-12-15 15:52:00,738 14th St, Boston,MA,02215 +311690,AA Batteries (4-pack),2,3.84,2019-12-19 10:29:00,312 Jefferson St, San Francisco,CA,94016 +311691,USB-C Charging Cable,1,11.95,2019-12-27 19:18:00,496 Lake St, Atlanta,GA,30301 +311692,Lightning Charging Cable,1,14.95,2019-12-09 11:49:00,462 Park St, Los Angeles,CA,90001 +311693,27in FHD Monitor,1,149.99,2019-12-06 18:05:00,594 9th St, Dallas,TX,75001 +311694,AAA Batteries (4-pack),1,2.99,2019-12-19 07:35:00,905 11th St, Atlanta,GA,30301 +311695,Wired Headphones,1,11.99,2019-12-21 21:06:00,107 Lakeview St, San Francisco,CA,94016 +311696,Bose SoundSport Headphones,1,99.99,2019-12-05 11:28:00,742 Wilson St, Boston,MA,02215 +311697,Vareebadd Phone,1,400.0,2019-12-12 07:29:00,216 9th St, Austin,TX,73301 +311697,USB-C Charging Cable,1,11.95,2019-12-12 07:29:00,216 9th St, Austin,TX,73301 +311698,Google Phone,1,600.0,2019-12-09 20:10:00,315 1st St, Boston,MA,02215 +311699,Lightning Charging Cable,1,14.95,2019-12-16 17:18:00,468 Adams St, Los Angeles,CA,90001 +311700,AAA Batteries (4-pack),1,2.99,2019-12-28 22:00:00,370 Cedar St, Los Angeles,CA,90001 +311701,34in Ultrawide Monitor,1,379.99,2019-12-04 19:44:00,290 Lake St, San Francisco,CA,94016 +311702,Wired Headphones,1,11.99,2019-12-17 07:11:00,401 Ridge St, San Francisco,CA,94016 +311703,Apple Airpods Headphones,1,150.0,2019-12-03 14:27:00,803 14th St, New York City,NY,10001 +311704,Vareebadd Phone,1,400.0,2019-12-16 10:57:00,827 Madison St, Atlanta,GA,30301 +311704,USB-C Charging Cable,1,11.95,2019-12-16 10:57:00,827 Madison St, Atlanta,GA,30301 +311705,Lightning Charging Cable,1,14.95,2019-12-24 15:47:00,752 South St, Dallas,TX,75001 +311706,Wired Headphones,1,11.99,2019-12-11 10:44:00,516 Hickory St, New York City,NY,10001 +311707,27in 4K Gaming Monitor,1,389.99,2019-12-27 11:12:00,937 2nd St, San Francisco,CA,94016 +311708,Lightning Charging Cable,1,14.95,2019-12-18 18:30:00,756 Hickory St, Los Angeles,CA,90001 +311709,AA Batteries (4-pack),2,3.84,2019-12-23 15:15:00,713 6th St, San Francisco,CA,94016 +311710,AA Batteries (4-pack),1,3.84,2019-12-22 13:07:00,253 Willow St, San Francisco,CA,94016 +311711,Wired Headphones,1,11.99,2019-12-07 10:15:00,475 South St, Portland,ME,04101 +311712,AAA Batteries (4-pack),3,2.99,2019-12-10 21:54:00,267 8th St, Seattle,WA,98101 +311713,USB-C Charging Cable,1,11.95,2019-12-06 19:03:00,2 Hill St, New York City,NY,10001 +311714,Bose SoundSport Headphones,1,99.99,2019-12-20 08:25:00,866 Center St, Seattle,WA,98101 +311715,Flatscreen TV,1,300.0,2019-12-13 01:09:00,503 Wilson St, Los Angeles,CA,90001 +311715,AAA Batteries (4-pack),1,2.99,2019-12-13 01:09:00,503 Wilson St, Los Angeles,CA,90001 +311716,Apple Airpods Headphones,1,150.0,2019-12-03 23:22:00,286 4th St, Boston,MA,02215 +311717,AA Batteries (4-pack),1,3.84,2019-12-14 07:52:00,153 Pine St, San Francisco,CA,94016 +311717,iPhone,1,700.0,2019-12-14 07:52:00,153 Pine St, San Francisco,CA,94016 +311718,Flatscreen TV,1,300.0,2019-12-27 11:22:00,224 Chestnut St, Los Angeles,CA,90001 +311719,AA Batteries (4-pack),2,3.84,2019-12-09 20:42:00,594 Hill St, Portland,OR,97035 +311720,AAA Batteries (4-pack),1,2.99,2019-12-08 14:51:00,914 11th St, Seattle,WA,98101 +311721,USB-C Charging Cable,1,11.95,2019-12-28 08:58:00,914 Lincoln St, Los Angeles,CA,90001 +311722,USB-C Charging Cable,1,11.95,2019-12-29 15:39:00,543 2nd St, New York City,NY,10001 +311723,ThinkPad Laptop,1,999.99,2019-12-03 12:10:00,799 1st St, San Francisco,CA,94016 +311724,Wired Headphones,1,11.99,2019-12-22 10:25:00,670 Walnut St, Atlanta,GA,30301 +311725,Bose SoundSport Headphones,1,99.99,2019-12-14 09:35:00,60 Jackson St, Los Angeles,CA,90001 +311726,USB-C Charging Cable,1,11.95,2019-12-10 22:19:00,862 5th St, Portland,OR,97035 +311727,Google Phone,1,600.0,2019-12-16 11:20:00,198 Lake St, Seattle,WA,98101 +311727,USB-C Charging Cable,1,11.95,2019-12-16 11:20:00,198 Lake St, Seattle,WA,98101 +311727,Wired Headphones,1,11.99,2019-12-16 11:20:00,198 Lake St, Seattle,WA,98101 +311728,Apple Airpods Headphones,1,150.0,2019-12-19 09:41:00,864 Adams St, Seattle,WA,98101 +311729,Lightning Charging Cable,1,14.95,2019-12-22 17:01:00,636 Cherry St, Seattle,WA,98101 +311730,27in FHD Monitor,1,149.99,2019-12-29 12:57:00,980 Elm St, San Francisco,CA,94016 +311731,27in FHD Monitor,1,149.99,2019-12-13 21:07:00,846 Main St, Austin,TX,73301 +311732,ThinkPad Laptop,1,999.99,2019-12-01 09:09:00,399 Forest St, San Francisco,CA,94016 +311733,Macbook Pro Laptop,1,1700.0,2019-12-16 11:12:00,650 West St, San Francisco,CA,94016 +311734,AAA Batteries (4-pack),1,2.99,2019-12-16 21:53:00,654 Park St, Boston,MA,02215 +311735,USB-C Charging Cable,1,11.95,2019-12-24 19:41:00,573 5th St, San Francisco,CA,94016 +311736,Bose SoundSport Headphones,1,99.99,2019-12-17 17:39:00,243 1st St, Boston,MA,02215 +311737,AAA Batteries (4-pack),1,2.99,2019-12-06 20:07:00,905 Johnson St, New York City,NY,10001 +311738,USB-C Charging Cable,1,11.95,2019-12-29 20:29:00,743 10th St, Seattle,WA,98101 +311739,AAA Batteries (4-pack),1,2.99,2019-12-28 00:26:00,757 Pine St, Seattle,WA,98101 +311740,AA Batteries (4-pack),1,3.84,2019-12-23 14:09:00,565 Park St, San Francisco,CA,94016 +311741,AA Batteries (4-pack),1,3.84,2019-12-09 01:24:00,386 7th St, San Francisco,CA,94016 +311742,AA Batteries (4-pack),4,3.84,2019-12-02 20:45:00,969 Maple St, San Francisco,CA,94016 +311743,AA Batteries (4-pack),3,3.84,2019-12-01 14:10:00,784 5th St, Atlanta,GA,30301 +311744,Wired Headphones,1,11.99,2019-12-31 17:05:00,204 11th St, Los Angeles,CA,90001 +311745,Google Phone,1,600.0,2019-12-07 09:17:00,926 13th St, Boston,MA,02215 +311745,USB-C Charging Cable,1,11.95,2019-12-07 09:17:00,926 13th St, Boston,MA,02215 +311746,USB-C Charging Cable,1,11.95,2019-12-14 17:24:00,830 5th St, Atlanta,GA,30301 +311747,ThinkPad Laptop,1,999.99,2019-12-09 16:23:00,862 Lincoln St, Atlanta,GA,30301 +311748,USB-C Charging Cable,1,11.95,2019-12-19 10:41:00,273 2nd St, New York City,NY,10001 +311749,USB-C Charging Cable,1,11.95,2019-12-07 13:53:00,543 12th St, Los Angeles,CA,90001 +311750,USB-C Charging Cable,1,11.95,2019-12-13 10:52:00,130 Pine St, Dallas,TX,75001 +311751,Apple Airpods Headphones,1,150.0,2019-12-21 05:11:00,147 Lake St, Atlanta,GA,30301 +311752,AAA Batteries (4-pack),1,2.99,2019-12-25 00:23:00,561 Park St, New York City,NY,10001 +311753,Lightning Charging Cable,1,14.95,2019-12-26 22:28:00,537 Church St, New York City,NY,10001 +311754,Flatscreen TV,1,300.0,2019-12-18 11:27:00,75 South St, Boston,MA,02215 +311755,Apple Airpods Headphones,1,150.0,2019-12-08 08:49:00,785 Center St, Austin,TX,73301 +311756,Lightning Charging Cable,1,14.95,2019-12-12 01:26:00,721 Maple St, Atlanta,GA,30301 +311757,Google Phone,1,600.0,2019-12-11 09:53:00,493 West St, Boston,MA,02215 +311758,Wired Headphones,1,11.99,2019-12-31 14:33:00,866 Jackson St, Seattle,WA,98101 +311759,27in FHD Monitor,1,149.99,2019-12-30 19:18:00,906 Lakeview St, Atlanta,GA,30301 +311760,Bose SoundSport Headphones,1,99.99,2019-12-20 17:53:00,264 Cedar St, Boston,MA,02215 +311761,20in Monitor,1,109.99,2019-12-29 15:03:00,821 4th St, Los Angeles,CA,90001 +311762,Lightning Charging Cable,1,14.95,2019-12-02 14:42:00,618 Lakeview St, Austin,TX,73301 +311763,Apple Airpods Headphones,1,150.0,2019-12-10 22:10:00,52 Sunset St, San Francisco,CA,94016 +311764,Lightning Charging Cable,1,14.95,2019-12-12 09:57:00,485 Cedar St, San Francisco,CA,94016 +311765,AA Batteries (4-pack),1,3.84,2019-12-02 15:54:00,323 6th St, New York City,NY,10001 +311766,Wired Headphones,1,11.99,2019-12-12 22:52:00,935 Dogwood St, San Francisco,CA,94016 +311767,27in 4K Gaming Monitor,1,389.99,2019-12-07 13:14:00,289 Cherry St, Atlanta,GA,30301 +311768,AA Batteries (4-pack),1,3.84,2019-12-09 19:07:00,645 Chestnut St, Portland,OR,97035 +311769,USB-C Charging Cable,1,11.95,2019-12-23 12:30:00,596 West St, Portland,ME,04101 +311770,USB-C Charging Cable,1,11.95,2019-12-29 10:38:00,132 West St, San Francisco,CA,94016 +311771,Wired Headphones,1,11.99,2019-12-04 08:27:00,45 Lincoln St, San Francisco,CA,94016 +311772,Lightning Charging Cable,1,14.95,2019-12-11 10:47:00,407 Lakeview St, Dallas,TX,75001 +311773,AA Batteries (4-pack),2,3.84,2019-12-28 10:48:00,341 Sunset St, New York City,NY,10001 +311774,27in 4K Gaming Monitor,1,389.99,2019-12-01 16:59:00,757 Forest St, San Francisco,CA,94016 +311775,Apple Airpods Headphones,1,150.0,2019-12-08 20:38:00,713 Main St, Los Angeles,CA,90001 +311776,34in Ultrawide Monitor,1,379.99,2019-12-15 20:08:00,101 5th St, Atlanta,GA,30301 +311777,Apple Airpods Headphones,1,150.0,2019-12-01 13:19:00,205 6th St, Austin,TX,73301 +311778,USB-C Charging Cable,1,11.95,2019-12-07 20:16:00,655 Maple St, San Francisco,CA,94016 +311778,ThinkPad Laptop,1,999.99,2019-12-07 20:16:00,655 Maple St, San Francisco,CA,94016 +311779,USB-C Charging Cable,1,11.95,2019-12-22 15:35:00,408 Madison St, Los Angeles,CA,90001 +311780,27in FHD Monitor,1,149.99,2019-12-21 20:07:00,633 2nd St, San Francisco,CA,94016 +311781,Apple Airpods Headphones,1,150.0,2019-12-29 13:38:00,272 Cherry St, San Francisco,CA,94016 +311782,USB-C Charging Cable,2,11.95,2019-12-23 06:53:00,181 Center St, Los Angeles,CA,90001 +311783,AA Batteries (4-pack),4,3.84,2019-12-14 16:38:00,375 Meadow St, Los Angeles,CA,90001 +311784,Bose SoundSport Headphones,1,99.99,2019-12-02 11:59:00,234 12th St, Los Angeles,CA,90001 +311785,AAA Batteries (4-pack),3,2.99,2019-12-06 08:27:00,770 1st St, San Francisco,CA,94016 +311786,USB-C Charging Cable,2,11.95,2019-12-08 11:55:00,235 South St, San Francisco,CA,94016 +311787,AAA Batteries (4-pack),1,2.99,2019-12-08 00:30:00,455 7th St, Boston,MA,02215 +311788,AAA Batteries (4-pack),1,2.99,2019-12-02 10:03:00,481 Washington St, Portland,ME,04101 +311789,27in 4K Gaming Monitor,1,389.99,2019-12-13 11:25:00,210 Cherry St, Boston,MA,02215 +311790,34in Ultrawide Monitor,1,379.99,2019-12-26 20:22:00,520 Sunset St, Dallas,TX,75001 +311791,USB-C Charging Cable,1,11.95,2019-12-11 11:00:00,771 Main St, San Francisco,CA,94016 +311792,Bose SoundSport Headphones,1,99.99,2019-12-28 20:57:00,19 Wilson St, Atlanta,GA,30301 +311793,Lightning Charging Cable,1,14.95,2019-12-08 12:17:00,195 12th St, San Francisco,CA,94016 +311794,AAA Batteries (4-pack),1,2.99,2019-12-12 11:17:00,555 2nd St, Seattle,WA,98101 +311795,Apple Airpods Headphones,1,150.0,2019-12-23 12:18:00,68 14th St, New York City,NY,10001 +311796,Google Phone,1,600.0,2019-12-20 13:13:00,76 1st St, Los Angeles,CA,90001 +311797,Lightning Charging Cable,1,14.95,2019-12-03 12:21:00,500 Forest St, San Francisco,CA,94016 +311798,Bose SoundSport Headphones,1,99.99,2019-12-15 15:26:00,834 River St, Seattle,WA,98101 +311799,AA Batteries (4-pack),1,3.84,2019-12-20 12:12:00,48 Park St, Austin,TX,73301 +311800,AAA Batteries (4-pack),1,2.99,2019-12-18 19:09:00,666 Main St, San Francisco,CA,94016 +311801,AAA Batteries (4-pack),1,2.99,2019-12-10 14:12:00,163 Pine St, Seattle,WA,98101 +311802,AA Batteries (4-pack),1,3.84,2019-12-16 18:00:00,987 River St, New York City,NY,10001 +311803,Wired Headphones,1,11.99,2019-12-23 15:31:00,982 Park St, San Francisco,CA,94016 +311804,Wired Headphones,1,11.99,2019-12-17 15:44:00,221 Forest St, New York City,NY,10001 +311805,AA Batteries (4-pack),3,3.84,2019-12-05 12:21:00,812 Adams St, Los Angeles,CA,90001 +311806,AAA Batteries (4-pack),3,2.99,2019-12-02 16:02:00,586 Hickory St, Dallas,TX,75001 +311807,USB-C Charging Cable,1,11.95,2019-12-20 22:10:00,603 Adams St, Los Angeles,CA,90001 +311808,USB-C Charging Cable,1,11.95,2019-12-02 22:24:00,223 11th St, Boston,MA,02215 +311809,Wired Headphones,1,11.99,2019-12-28 17:41:00,964 Chestnut St, San Francisco,CA,94016 +311810,AAA Batteries (4-pack),1,2.99,2019-12-20 10:43:00,328 Lincoln St, San Francisco,CA,94016 +311811,20in Monitor,1,109.99,2019-12-09 15:16:00,684 Lincoln St, San Francisco,CA,94016 +311812,Bose SoundSport Headphones,1,99.99,2019-12-27 07:29:00,906 Chestnut St, Portland,OR,97035 +311813,Apple Airpods Headphones,1,150.0,2019-12-06 18:56:00,379 Walnut St, Portland,OR,97035 +311814,Wired Headphones,1,11.99,2019-12-07 17:18:00,706 1st St, Los Angeles,CA,90001 +311815,Wired Headphones,1,11.99,2019-12-14 14:19:00,182 Cherry St, Seattle,WA,98101 +311816,27in 4K Gaming Monitor,1,389.99,2019-12-10 17:30:00,600 2nd St, Atlanta,GA,30301 +311817,34in Ultrawide Monitor,1,379.99,2019-12-10 10:01:00,766 West St, Austin,TX,73301 +311818,27in 4K Gaming Monitor,1,389.99,2019-12-16 23:33:00,660 Main St, San Francisco,CA,94016 +311819,Apple Airpods Headphones,1,150.0,2019-12-06 07:57:00,663 Cherry St, Los Angeles,CA,90001 +311820,USB-C Charging Cable,1,11.95,2019-12-18 18:10:00,276 Washington St, San Francisco,CA,94016 +311821,Wired Headphones,1,11.99,2019-12-10 22:14:00,444 Johnson St, San Francisco,CA,94016 +311822,Macbook Pro Laptop,1,1700.0,2019-12-23 09:59:00,189 Highland St, Boston,MA,02215 +311823,Wired Headphones,1,11.99,2019-12-16 12:18:00,67 Wilson St, Austin,TX,73301 +311824,Wired Headphones,1,11.99,2019-12-12 13:22:00,194 South St, Boston,MA,02215 +311825,Bose SoundSport Headphones,1,99.99,2019-12-30 17:03:00,528 9th St, San Francisco,CA,94016 +311826,Wired Headphones,1,11.99,2019-12-10 17:07:00,710 Meadow St, New York City,NY,10001 +311827,Wired Headphones,1,11.99,2019-12-02 13:01:00,536 8th St, Los Angeles,CA,90001 +311828,27in 4K Gaming Monitor,1,389.99,2019-12-16 11:39:00,848 13th St, Dallas,TX,75001 +311829,Google Phone,1,600.0,2019-12-10 14:07:00,307 1st St, Seattle,WA,98101 +311830,AAA Batteries (4-pack),3,2.99,2019-12-30 15:50:00,998 6th St, Los Angeles,CA,90001 +311831,Apple Airpods Headphones,1,150.0,2019-12-27 16:41:00,116 Pine St, Los Angeles,CA,90001 +311832,27in FHD Monitor,1,149.99,2019-12-09 22:28:00,567 10th St, San Francisco,CA,94016 +311833,Wired Headphones,2,11.99,2019-12-28 10:18:00,741 River St, New York City,NY,10001 +311834,AAA Batteries (4-pack),2,2.99,2019-12-12 18:37:00,619 8th St, San Francisco,CA,94016 +311835,Bose SoundSport Headphones,1,99.99,2019-12-17 09:19:00,92 Church St, Boston,MA,02215 +311836,AAA Batteries (4-pack),1,2.99,2019-12-05 15:09:00,647 Lake St, Boston,MA,02215 +311837,Apple Airpods Headphones,1,150.0,2019-12-22 12:31:00,616 Maple St, Los Angeles,CA,90001 +311838,AA Batteries (4-pack),1,3.84,2019-12-23 04:56:00,212 Pine St, Dallas,TX,75001 +311839,AAA Batteries (4-pack),1,2.99,2019-12-02 15:08:00,787 Jackson St, New York City,NY,10001 +311840,USB-C Charging Cable,1,11.95,2019-12-31 01:11:00,986 6th St, New York City,NY,10001 +311841,Flatscreen TV,1,300.0,2019-12-02 18:21:00,625 Lincoln St, Atlanta,GA,30301 +311842,iPhone,1,700.0,2019-12-10 23:41:00,754 Dogwood St, Portland,OR,97035 +311843,Macbook Pro Laptop,1,1700.0,2019-12-14 14:31:00,393 Dogwood St, New York City,NY,10001 +311844,Lightning Charging Cable,1,14.95,2019-12-10 22:10:00,194 6th St, Seattle,WA,98101 +311845,USB-C Charging Cable,1,11.95,2019-12-13 21:24:00,672 North St, Los Angeles,CA,90001 +311846,AA Batteries (4-pack),1,3.84,2019-12-09 21:27:00,781 Adams St, Los Angeles,CA,90001 +311847,AAA Batteries (4-pack),2,2.99,2019-12-17 12:17:00,24 North St, New York City,NY,10001 +311848,AA Batteries (4-pack),1,3.84,2019-12-31 20:46:00,939 North St, Portland,ME,04101 +311849,USB-C Charging Cable,1,11.95,2019-12-18 21:27:00,883 Church St, San Francisco,CA,94016 +311850,USB-C Charging Cable,1,11.95,2019-12-08 12:51:00,227 River St, San Francisco,CA,94016 +311851,USB-C Charging Cable,1,11.95,2019-12-14 21:28:00,329 Dogwood St, San Francisco,CA,94016 +311852,Bose SoundSport Headphones,1,99.99,2019-12-09 09:02:00,819 Madison St, Dallas,TX,75001 +311853,AA Batteries (4-pack),1,3.84,2019-12-18 17:08:00,471 Walnut St, Seattle,WA,98101 +311854,Bose SoundSport Headphones,1,99.99,2019-12-16 11:00:00,59 Sunset St, Boston,MA,02215 +311855,ThinkPad Laptop,1,999.99,2019-12-03 16:29:00,112 Hickory St, Los Angeles,CA,90001 +311856,AAA Batteries (4-pack),1,2.99,2019-12-16 21:07:00,566 Walnut St, San Francisco,CA,94016 +311857,Lightning Charging Cable,1,14.95,2019-12-28 09:17:00,546 12th St, Los Angeles,CA,90001 +311858,ThinkPad Laptop,1,999.99,2019-12-06 17:43:00,60 Chestnut St, Boston,MA,02215 +311859,20in Monitor,1,109.99,2019-12-31 16:54:00,771 Dogwood St, San Francisco,CA,94016 +311860,AAA Batteries (4-pack),1,2.99,2019-12-01 19:26:00,236 9th St, San Francisco,CA,94016 +311861,Macbook Pro Laptop,1,1700.0,2019-12-30 11:56:00,574 14th St, Atlanta,GA,30301 +311862,Apple Airpods Headphones,1,150.0,2019-12-10 13:47:00,241 6th St, New York City,NY,10001 +311863,Wired Headphones,1,11.99,2019-12-01 21:57:00,328 Walnut St, Los Angeles,CA,90001 +311864,Flatscreen TV,1,300.0,2019-12-15 18:04:00,893 9th St, New York City,NY,10001 +311865,Lightning Charging Cable,1,14.95,2019-12-03 12:30:00,552 Forest St, San Francisco,CA,94016 +311866,Apple Airpods Headphones,1,150.0,2019-12-29 14:45:00,146 5th St, San Francisco,CA,94016 +311867,Flatscreen TV,1,300.0,2019-12-05 17:05:00,626 Adams St, San Francisco,CA,94016 +311868,Wired Headphones,1,11.99,2019-12-16 03:25:00,495 14th St, New York City,NY,10001 +311869,27in FHD Monitor,1,149.99,2019-12-08 18:57:00,547 South St, San Francisco,CA,94016 +311870,USB-C Charging Cable,1,11.95,2019-12-13 15:31:00,696 Wilson St, San Francisco,CA,94016 +311871,20in Monitor,1,109.99,2019-12-11 13:24:00,951 Center St, Atlanta,GA,30301 +311872,Lightning Charging Cable,2,14.95,2019-12-29 10:26:00,208 9th St, Atlanta,GA,30301 +311873,Wired Headphones,1,11.99,2019-12-14 10:50:00,485 River St, San Francisco,CA,94016 +311874,Wired Headphones,1,11.99,2019-12-23 09:56:00,387 Jackson St, New York City,NY,10001 +311875,Apple Airpods Headphones,1,150.0,2019-12-31 18:11:00,220 11th St, Boston,MA,02215 +311876,Apple Airpods Headphones,1,150.0,2019-12-22 00:44:00,608 13th St, San Francisco,CA,94016 +311877,Lightning Charging Cable,1,14.95,2019-12-01 10:42:00,287 Jackson St, San Francisco,CA,94016 +311878,Lightning Charging Cable,1,14.95,2019-12-12 12:34:00,230 Hickory St, Austin,TX,73301 +311878,20in Monitor,1,109.99,2019-12-12 12:34:00,230 Hickory St, Austin,TX,73301 +311879,Apple Airpods Headphones,1,150.0,2019-12-24 17:53:00,455 Walnut St, Los Angeles,CA,90001 +311880,Flatscreen TV,1,300.0,2019-12-04 20:23:00,451 13th St, Portland,ME,04101 +311881,Wired Headphones,1,11.99,2019-12-01 20:52:00,509 8th St, Portland,ME,04101 +311882,AAA Batteries (4-pack),4,2.99,2019-12-11 16:18:00,516 Pine St, Los Angeles,CA,90001 +311883,Apple Airpods Headphones,1,150.0,2019-12-17 09:43:00,30 Wilson St, Los Angeles,CA,90001 +311884,AA Batteries (4-pack),1,3.84,2019-12-30 08:22:00,648 Church St, New York City,NY,10001 +311885,AA Batteries (4-pack),1,3.84,2019-12-20 12:31:00,771 River St, New York City,NY,10001 +311886,AAA Batteries (4-pack),1,2.99,2019-12-24 18:47:00,279 Main St, New York City,NY,10001 +311887,Bose SoundSport Headphones,1,99.99,2019-12-19 10:04:00,498 Elm St, San Francisco,CA,94016 +311888,Lightning Charging Cable,1,14.95,2019-12-23 12:17:00,595 Washington St, Dallas,TX,75001 +311889,Apple Airpods Headphones,1,150.0,2019-12-21 16:23:00,461 Pine St, Dallas,TX,75001 +311890,Apple Airpods Headphones,1,150.0,2019-12-08 11:26:00,926 Park St, New York City,NY,10001 +311891,Apple Airpods Headphones,1,150.0,2019-12-28 16:00:00,656 Hickory St, Los Angeles,CA,90001 +311892,Wired Headphones,1,11.99,2019-12-28 20:43:00,72 Johnson St, San Francisco,CA,94016 +311893,USB-C Charging Cable,2,11.95,2019-12-30 10:27:00,82 Cherry St, Boston,MA,02215 +311894,Flatscreen TV,1,300.0,2019-12-08 11:59:00,705 Jefferson St, Seattle,WA,98101 +311895,AAA Batteries (4-pack),1,2.99,2019-12-26 12:15:00,872 Lincoln St, Los Angeles,CA,90001 +311896,27in FHD Monitor,1,149.99,2019-12-18 09:26:00,533 13th St, San Francisco,CA,94016 +311897,USB-C Charging Cable,1,11.95,2019-12-26 18:15:00,484 Hill St, New York City,NY,10001 +311898,34in Ultrawide Monitor,1,379.99,2019-12-02 15:02:00,658 10th St, San Francisco,CA,94016 +311898,Bose SoundSport Headphones,1,99.99,2019-12-02 15:02:00,658 10th St, San Francisco,CA,94016 +311899,Apple Airpods Headphones,1,150.0,2019-12-10 20:56:00,404 Jackson St, San Francisco,CA,94016 +311900,Google Phone,1,600.0,2019-12-13 08:34:00,962 Jefferson St, Atlanta,GA,30301 +311901,Flatscreen TV,1,300.0,2019-12-21 13:59:00,641 Center St, San Francisco,CA,94016 +311902,Lightning Charging Cable,2,14.95,2019-12-29 14:14:00,302 Lake St, Boston,MA,02215 +311903,USB-C Charging Cable,2,11.95,2019-12-16 12:30:00,515 Center St, New York City,NY,10001 +311904,USB-C Charging Cable,1,11.95,2019-12-05 09:49:00,437 Elm St, Atlanta,GA,30301 +311905,Wired Headphones,1,11.99,2019-12-14 07:13:00,94 Lincoln St, Los Angeles,CA,90001 +311906,AAA Batteries (4-pack),2,2.99,2019-12-13 22:26:00,381 Wilson St, Portland,OR,97035 +311907,Lightning Charging Cable,1,14.95,2019-12-29 22:28:00,576 13th St, Boston,MA,02215 +311908,USB-C Charging Cable,1,11.95,2019-12-31 14:45:00,285 11th St, Los Angeles,CA,90001 +311909,AAA Batteries (4-pack),1,2.99,2019-12-06 21:10:00,964 Chestnut St, San Francisco,CA,94016 +311910,20in Monitor,1,109.99,2019-12-04 19:07:00,413 Main St, Dallas,TX,75001 +311911,Macbook Pro Laptop,1,1700.0,2019-12-06 07:08:00,501 Wilson St, Dallas,TX,75001 +311912,Flatscreen TV,1,300.0,2019-12-07 20:09:00,915 Ridge St, Dallas,TX,75001 +311913,USB-C Charging Cable,1,11.95,2019-12-30 20:13:00,165 Walnut St, New York City,NY,10001 +311914,Google Phone,1,600.0,2019-12-27 07:16:00,62 12th St, San Francisco,CA,94016 +311915,USB-C Charging Cable,1,11.95,2019-12-07 11:43:00,483 7th St, Austin,TX,73301 +311916,Wired Headphones,1,11.99,2019-12-18 11:48:00,120 Lake St, Portland,OR,97035 +311917,Wired Headphones,1,11.99,2019-12-24 10:04:00,138 Hill St, Los Angeles,CA,90001 +311917,iPhone,1,700.0,2019-12-24 10:04:00,138 Hill St, Los Angeles,CA,90001 +311918,Flatscreen TV,1,300.0,2019-12-08 23:10:00,661 Jackson St, San Francisco,CA,94016 +311919,USB-C Charging Cable,1,11.95,2019-12-15 00:41:00,451 1st St, New York City,NY,10001 +311920,Flatscreen TV,1,300.0,2019-12-17 22:11:00,689 Adams St, Boston,MA,02215 +311921,Apple Airpods Headphones,1,150.0,2019-12-26 15:19:00,937 Jefferson St, San Francisco,CA,94016 +311922,Wired Headphones,1,11.99,2019-12-27 19:50:00,511 4th St, Dallas,TX,75001 +311923,AA Batteries (4-pack),1,3.84,2019-12-11 15:22:00,795 Johnson St, San Francisco,CA,94016 +311924,AA Batteries (4-pack),2,3.84,2019-12-14 02:13:00,549 13th St, Atlanta,GA,30301 +311925,USB-C Charging Cable,1,11.95,2019-12-19 00:09:00,539 Walnut St, New York City,NY,10001 +311926,Bose SoundSport Headphones,1,99.99,2019-12-22 13:00:00,516 Walnut St, Austin,TX,73301 +311927,AA Batteries (4-pack),1,3.84,2019-12-12 15:24:00,317 Cherry St, New York City,NY,10001 +311928,iPhone,1,700.0,2019-12-13 21:48:00,258 9th St, Los Angeles,CA,90001 +311929,AA Batteries (4-pack),1,3.84,2019-12-18 21:29:00,861 6th St, New York City,NY,10001 +311930,Wired Headphones,1,11.99,2019-12-24 19:58:00,771 12th St, Los Angeles,CA,90001 +311931,Lightning Charging Cable,1,14.95,2019-12-07 12:48:00,480 12th St, Los Angeles,CA,90001 +311932,USB-C Charging Cable,1,11.95,2019-12-03 16:12:00,290 9th St, San Francisco,CA,94016 +311933,AAA Batteries (4-pack),2,2.99,2019-12-28 13:34:00,748 South St, San Francisco,CA,94016 +311934,27in 4K Gaming Monitor,1,389.99,2019-12-13 13:50:00,621 Dogwood St, Los Angeles,CA,90001 +311935,Apple Airpods Headphones,1,150.0,2019-12-05 21:33:00,453 Chestnut St, Los Angeles,CA,90001 +311936,AAA Batteries (4-pack),2,2.99,2019-12-21 12:55:00,743 Cedar St, Portland,OR,97035 +311937,AAA Batteries (4-pack),1,2.99,2019-12-31 20:54:00,595 Hickory St, Boston,MA,02215 +311938,27in 4K Gaming Monitor,1,389.99,2019-12-06 14:24:00,775 2nd St, Seattle,WA,98101 +311939,AAA Batteries (4-pack),3,2.99,2019-12-21 11:19:00,467 Walnut St, Seattle,WA,98101 +311940,Wired Headphones,1,11.99,2019-12-26 06:52:00,548 Center St, Dallas,TX,75001 +311941,iPhone,1,700.0,2019-12-05 21:08:00,711 Maple St, New York City,NY,10001 +311942,Wired Headphones,1,11.99,2019-12-27 01:10:00,2 Walnut St, Portland,OR,97035 +311943,AA Batteries (4-pack),2,3.84,2019-12-19 09:35:00,427 Cherry St, San Francisco,CA,94016 +311944,Wired Headphones,1,11.99,2019-12-15 12:19:00,468 Ridge St, Dallas,TX,75001 +311945,USB-C Charging Cable,1,11.95,2019-12-13 15:40:00,37 Chestnut St, Boston,MA,02215 +311946,Bose SoundSport Headphones,1,99.99,2019-12-16 10:24:00,262 Center St, Atlanta,GA,30301 +311947,Google Phone,1,600.0,2019-12-23 18:23:00,246 Adams St, San Francisco,CA,94016 +311948,AAA Batteries (4-pack),2,2.99,2019-12-30 13:33:00,179 12th St, San Francisco,CA,94016 +311949,Wired Headphones,1,11.99,2019-12-16 19:12:00,437 Willow St, Dallas,TX,75001 +311950,AAA Batteries (4-pack),1,2.99,2019-12-18 17:32:00,592 2nd St, Dallas,TX,75001 +311951,ThinkPad Laptop,1,999.99,2019-12-28 14:23:00,356 Lincoln St, San Francisco,CA,94016 +311952,ThinkPad Laptop,1,999.99,2019-12-22 18:31:00,971 13th St, Los Angeles,CA,90001 +311953,27in 4K Gaming Monitor,1,389.99,2019-12-23 09:47:00,924 9th St, Boston,MA,02215 +311954,Lightning Charging Cable,1,14.95,2019-12-06 13:23:00,827 Maple St, Atlanta,GA,30301 +311955,Apple Airpods Headphones,1,150.0,2019-12-24 20:35:00,73 7th St, Seattle,WA,98101 +311956,AAA Batteries (4-pack),3,2.99,2019-12-27 20:42:00,290 Madison St, New York City,NY,10001 +311957,34in Ultrawide Monitor,1,379.99,2019-12-22 13:44:00,338 Chestnut St, Boston,MA,02215 +311958,Lightning Charging Cable,1,14.95,2019-12-02 17:46:00,821 Lincoln St, New York City,NY,10001 +311959,Wired Headphones,1,11.99,2019-12-21 15:03:00,137 Park St, Los Angeles,CA,90001 +311960,iPhone,1,700.0,2019-12-13 14:28:00,996 Sunset St, Boston,MA,02215 +311960,Apple Airpods Headphones,1,150.0,2019-12-13 14:28:00,996 Sunset St, Boston,MA,02215 +311961,27in 4K Gaming Monitor,1,389.99,2019-12-21 13:01:00,736 South St, San Francisco,CA,94016 +311962,AAA Batteries (4-pack),4,2.99,2019-12-24 22:01:00,171 Dogwood St, Atlanta,GA,30301 +311963,AA Batteries (4-pack),1,3.84,2019-12-05 18:34:00,646 Lincoln St, San Francisco,CA,94016 +311964,Wired Headphones,1,11.99,2019-12-18 18:29:00,911 Hill St, Los Angeles,CA,90001 +311965,Apple Airpods Headphones,1,150.0,2019-12-02 13:10:00,741 Cherry St, Los Angeles,CA,90001 +311966,AA Batteries (4-pack),1,3.84,2019-12-20 18:23:00,298 Lincoln St, Atlanta,GA,30301 +311967,LG Dryer,1,600.0,2019-12-26 14:50:00,963 Walnut St, Portland,OR,97035 +311968,Apple Airpods Headphones,1,150.0,2019-12-30 20:11:00,342 Wilson St, San Francisco,CA,94016 +311969,Vareebadd Phone,1,400.0,2019-12-08 11:00:00,466 Maple St, San Francisco,CA,94016 +311969,USB-C Charging Cable,1,11.95,2019-12-08 11:00:00,466 Maple St, San Francisco,CA,94016 +311970,Wired Headphones,1,11.99,2019-12-06 22:03:00,832 7th St, Boston,MA,02215 +311971,Apple Airpods Headphones,1,150.0,2019-12-19 12:15:00,56 Cedar St, Atlanta,GA,30301 +311972,20in Monitor,1,109.99,2019-12-31 18:46:00,973 Sunset St, Boston,MA,02215 +311973,AA Batteries (4-pack),1,3.84,2019-12-29 19:57:00,818 Forest St, Boston,MA,02215 +311974,34in Ultrawide Monitor,1,379.99,2019-12-08 13:46:00,448 Main St, San Francisco,CA,94016 +311975,Wired Headphones,1,11.99,2019-12-31 01:11:00,526 4th St, Austin,TX,73301 +311976,Wired Headphones,2,11.99,2019-12-19 23:27:00,887 7th St, New York City,NY,10001 +311977,Google Phone,1,600.0,2019-12-03 11:33:00,146 Walnut St, New York City,NY,10001 +311978,34in Ultrawide Monitor,1,379.99,2019-12-05 12:15:00,635 5th St, San Francisco,CA,94016 +311979,Wired Headphones,1,11.99,2019-12-28 10:45:00,794 Cedar St, New York City,NY,10001 +311980,Wired Headphones,1,11.99,2019-12-21 16:43:00,751 2nd St, San Francisco,CA,94016 +311981,27in 4K Gaming Monitor,1,389.99,2019-12-17 13:29:00,371 9th St, New York City,NY,10001 +311982,AAA Batteries (4-pack),1,2.99,2019-12-12 20:23:00,292 Wilson St, Seattle,WA,98101 +311983,Wired Headphones,1,11.99,2019-12-08 14:46:00,970 Washington St, Boston,MA,02215 +311984,Apple Airpods Headphones,1,150.0,2019-12-13 20:03:00,814 Jefferson St, Portland,OR,97035 +311985,Wired Headphones,1,11.99,2019-12-18 14:27:00,734 Forest St, San Francisco,CA,94016 +311986,Apple Airpods Headphones,1,150.0,2019-12-28 11:49:00,878 7th St, New York City,NY,10001 +311987,Wired Headphones,1,11.99,2019-12-28 11:30:00,136 8th St, Dallas,TX,75001 +311988,Lightning Charging Cable,2,14.95,2019-12-24 13:51:00,142 Highland St, San Francisco,CA,94016 +311989,USB-C Charging Cable,1,11.95,2019-12-22 01:45:00,608 Center St, San Francisco,CA,94016 +311990,AA Batteries (4-pack),1,3.84,2019-12-12 20:07:00,226 Hill St, San Francisco,CA,94016 +311991,USB-C Charging Cable,1,11.95,2019-12-17 11:34:00,116 Lincoln St, San Francisco,CA,94016 +311992,USB-C Charging Cable,1,11.95,2019-12-18 21:39:00,901 Lake St, Atlanta,GA,30301 +311993,USB-C Charging Cable,1,11.95,2019-12-17 10:10:00,990 Chestnut St, Portland,OR,97035 +311994,ThinkPad Laptop,1,999.99,2019-12-23 16:35:00,626 Jackson St, Portland,ME,04101 +311995,Bose SoundSport Headphones,1,99.99,2019-12-23 19:19:00,258 14th St, Boston,MA,02215 +311996,USB-C Charging Cable,1,11.95,2019-12-21 14:02:00,138 Maple St, Boston,MA,02215 +311997,Google Phone,1,600.0,2019-12-12 17:00:00,311 Forest St, Austin,TX,73301 +311998,27in FHD Monitor,1,149.99,2019-12-04 20:24:00,988 Cedar St, Atlanta,GA,30301 +311999,USB-C Charging Cable,1,11.95,2019-12-08 11:48:00,781 11th St, New York City,NY,10001 +312000,27in FHD Monitor,1,149.99,2019-12-21 11:40:00,654 4th St, Portland,ME,04101 +312001,Google Phone,1,600.0,2019-12-05 00:44:00,51 1st St, Los Angeles,CA,90001 +312001,USB-C Charging Cable,1,11.95,2019-12-05 00:44:00,51 1st St, Los Angeles,CA,90001 +312002,34in Ultrawide Monitor,1,379.99,2019-12-03 20:11:00,924 Forest St, Austin,TX,73301 +312003,AA Batteries (4-pack),1,3.84,2019-12-27 19:20:00,500 Wilson St, San Francisco,CA,94016 +312004,Apple Airpods Headphones,2,150.0,2019-12-31 16:22:00,135 14th St, San Francisco,CA,94016 +312005,Lightning Charging Cable,1,14.95,2019-12-24 16:34:00,798 5th St, Portland,OR,97035 +312006,Wired Headphones,2,11.99,2019-12-16 11:48:00,989 Washington St, San Francisco,CA,94016 +312007,Wired Headphones,1,11.99,2019-12-12 18:27:00,529 13th St, Atlanta,GA,30301 +312008,USB-C Charging Cable,1,11.95,2019-12-13 19:25:00,507 Sunset St, Dallas,TX,75001 +312009,AA Batteries (4-pack),3,3.84,2019-12-25 23:23:00,436 13th St, Dallas,TX,75001 +312010,USB-C Charging Cable,1,11.95,2019-12-13 18:42:00,368 5th St, Austin,TX,73301 +312011,27in 4K Gaming Monitor,1,389.99,2019-12-14 12:40:00,817 North St, San Francisco,CA,94016 +312012,27in FHD Monitor,1,149.99,2020-01-01 02:12:00,507 13th St, San Francisco,CA,94016 +312013,AA Batteries (4-pack),1,3.84,2019-12-25 06:37:00,857 Highland St, Dallas,TX,75001 +312013,Wired Headphones,1,11.99,2019-12-25 06:37:00,857 Highland St, Dallas,TX,75001 +312014,Apple Airpods Headphones,1,150.0,2019-12-19 18:38:00,264 7th St, San Francisco,CA,94016 +312015,Macbook Pro Laptop,1,1700.0,2019-12-05 17:30:00,30 Lincoln St, Los Angeles,CA,90001 +312016,AAA Batteries (4-pack),3,2.99,2019-12-26 07:13:00,890 Cedar St, New York City,NY,10001 +312017,Wired Headphones,1,11.99,2019-12-08 15:30:00,506 Dogwood St, Los Angeles,CA,90001 +312018,Lightning Charging Cable,1,14.95,2019-12-11 21:59:00,132 Chestnut St, Atlanta,GA,30301 +312019,27in 4K Gaming Monitor,1,389.99,2019-12-01 11:35:00,607 River St, Seattle,WA,98101 +312020,Apple Airpods Headphones,1,150.0,2019-12-04 00:07:00,767 Meadow St, Austin,TX,73301 +312021,Bose SoundSport Headphones,1,99.99,2019-12-27 13:11:00,424 Hickory St, Seattle,WA,98101 +312022,Wired Headphones,1,11.99,2019-12-15 17:40:00,975 2nd St, Atlanta,GA,30301 +312023,iPhone,1,700.0,2019-12-22 21:49:00,386 Wilson St, Los Angeles,CA,90001 +312023,Apple Airpods Headphones,1,150.0,2019-12-22 21:49:00,386 Wilson St, Los Angeles,CA,90001 +312024,AAA Batteries (4-pack),1,2.99,2019-12-02 12:44:00,991 11th St, Seattle,WA,98101 +312025,AA Batteries (4-pack),1,3.84,2019-12-25 10:19:00,367 Johnson St, Seattle,WA,98101 +312026,AAA Batteries (4-pack),1,2.99,2019-12-26 13:16:00,808 Jackson St, Seattle,WA,98101 +312027,Wired Headphones,1,11.99,2019-12-28 12:19:00,750 Hill St, Boston,MA,02215 +312028,Wired Headphones,1,11.99,2019-12-07 20:05:00,525 5th St, New York City,NY,10001 +312029,Flatscreen TV,1,300.0,2019-12-04 08:13:00,118 4th St, San Francisco,CA,94016 +312030,AAA Batteries (4-pack),1,2.99,2019-12-31 08:42:00,271 Adams St, New York City,NY,10001 +312031,Bose SoundSport Headphones,1,99.99,2019-12-24 19:31:00,164 Forest St, San Francisco,CA,94016 +312032,AA Batteries (4-pack),1,3.84,2019-12-25 20:42:00,96 Sunset St, New York City,NY,10001 +312033,Wired Headphones,1,11.99,2019-12-17 19:50:00,617 Jackson St, Dallas,TX,75001 +312033,Macbook Pro Laptop,1,1700.0,2019-12-17 19:50:00,617 Jackson St, Dallas,TX,75001 +312034,AA Batteries (4-pack),1,3.84,2019-12-04 12:52:00,138 Cedar St, Los Angeles,CA,90001 +312035,Wired Headphones,1,11.99,2019-12-20 22:47:00,250 Spruce St, Boston,MA,02215 +312035,Bose SoundSport Headphones,1,99.99,2019-12-20 22:47:00,250 Spruce St, Boston,MA,02215 +312036,Lightning Charging Cable,1,14.95,2019-12-13 16:45:00,633 North St, San Francisco,CA,94016 +312037,Wired Headphones,1,11.99,2019-12-09 11:09:00,907 Adams St, Los Angeles,CA,90001 +312038,AAA Batteries (4-pack),1,2.99,2019-12-23 19:33:00,89 12th St, Boston,MA,02215 +312039,AA Batteries (4-pack),1,3.84,2019-12-06 07:42:00,627 14th St, Seattle,WA,98101 +312040,iPhone,1,700.0,2019-12-14 17:44:00,523 Madison St, Boston,MA,02215 +312041,iPhone,1,700.0,2019-12-24 21:57:00,971 Madison St, Los Angeles,CA,90001 +312042,Apple Airpods Headphones,1,150.0,2019-12-02 07:16:00,561 4th St, Austin,TX,73301 +312043,USB-C Charging Cable,1,11.95,2019-12-11 09:58:00,278 Spruce St, Portland,ME,04101 +312044,iPhone,1,700.0,2019-12-31 11:53:00,62 Johnson St, Los Angeles,CA,90001 +312044,Lightning Charging Cable,1,14.95,2019-12-31 11:53:00,62 Johnson St, Los Angeles,CA,90001 +312045,Apple Airpods Headphones,1,150.0,2019-12-28 17:50:00,248 Cedar St, Los Angeles,CA,90001 +312046,Wired Headphones,1,11.99,2019-12-18 19:54:00,592 Maple St, Seattle,WA,98101 +312047,AA Batteries (4-pack),2,3.84,2019-12-01 09:55:00,353 Lakeview St, Austin,TX,73301 +312048,USB-C Charging Cable,1,11.95,2019-12-10 16:36:00,623 Church St, Portland,ME,04101 +312049,Wired Headphones,1,11.99,2019-12-09 08:18:00,90 River St, New York City,NY,10001 +312050,Lightning Charging Cable,1,14.95,2019-12-22 19:09:00,174 Highland St, Austin,TX,73301 +312051,Google Phone,1,600.0,2019-12-10 21:11:00,15 8th St, Dallas,TX,75001 +312051,Wired Headphones,1,11.99,2019-12-10 21:11:00,15 8th St, Dallas,TX,75001 +312052,27in FHD Monitor,1,149.99,2019-12-06 08:20:00,788 Willow St, San Francisco,CA,94016 +312053,Google Phone,1,600.0,2019-12-19 21:18:00,345 14th St, San Francisco,CA,94016 +312053,Wired Headphones,1,11.99,2019-12-19 21:18:00,345 14th St, San Francisco,CA,94016 +312054,USB-C Charging Cable,1,11.95,2019-12-17 09:25:00,338 6th St, San Francisco,CA,94016 +312055,USB-C Charging Cable,2,11.95,2019-12-19 16:01:00,389 Johnson St, Boston,MA,02215 +312056,27in FHD Monitor,1,149.99,2019-12-16 19:39:00,113 5th St, Dallas,TX,75001 +312057,Lightning Charging Cable,1,14.95,2019-12-29 20:57:00,522 River St, Boston,MA,02215 +312058,USB-C Charging Cable,1,11.95,2019-12-25 19:48:00,653 Cherry St, Austin,TX,73301 +312059,27in 4K Gaming Monitor,1,389.99,2019-12-30 20:03:00,499 Highland St, New York City,NY,10001 +312060,34in Ultrawide Monitor,1,379.99,2019-12-13 15:55:00,699 Madison St, Boston,MA,02215 +312061,AAA Batteries (4-pack),1,2.99,2019-12-20 09:15:00,256 Maple St, Atlanta,GA,30301 +312062,AA Batteries (4-pack),1,3.84,2019-12-11 13:38:00,566 Willow St, Austin,TX,73301 +312063,USB-C Charging Cable,1,11.95,2019-12-30 16:38:00,370 Ridge St, Dallas,TX,75001 +312064,Apple Airpods Headphones,1,150.0,2019-12-21 20:55:00,337 Cherry St, New York City,NY,10001 +312065,AA Batteries (4-pack),2,3.84,2019-12-26 21:29:00,431 12th St, Seattle,WA,98101 +312066,iPhone,1,700.0,2019-12-12 08:10:00,596 Elm St, Dallas,TX,75001 +312067,Lightning Charging Cable,1,14.95,2019-12-16 22:42:00,510 West St, Atlanta,GA,30301 +312068,Lightning Charging Cable,1,14.95,2019-12-20 10:47:00,940 Main St, Austin,TX,73301 +312069,AAA Batteries (4-pack),1,2.99,2019-12-16 16:07:00,922 5th St, Los Angeles,CA,90001 +312070,27in 4K Gaming Monitor,1,389.99,2019-12-21 16:25:00,61 Meadow St, Portland,OR,97035 +312071,AA Batteries (4-pack),1,3.84,2019-12-08 10:54:00,97 West St, Seattle,WA,98101 +312072,Apple Airpods Headphones,1,150.0,2019-12-08 04:40:00,128 2nd St, Los Angeles,CA,90001 +312073,Lightning Charging Cable,2,14.95,2019-12-01 07:43:00,661 Hickory St, Boston,MA,02215 +312074,AAA Batteries (4-pack),1,2.99,2019-12-16 16:24:00,396 Elm St, San Francisco,CA,94016 +312075,Bose SoundSport Headphones,1,99.99,2019-12-30 22:09:00,589 Cherry St, Portland,OR,97035 +312076,AA Batteries (4-pack),1,3.84,2019-12-16 13:50:00,345 Church St, New York City,NY,10001 +312077,Google Phone,1,600.0,2019-12-19 19:31:00,465 Washington St, San Francisco,CA,94016 +312078,Lightning Charging Cable,1,14.95,2019-12-11 15:36:00,231 8th St, Boston,MA,02215 +312079,AA Batteries (4-pack),2,3.84,2019-12-02 15:11:00,794 Spruce St, San Francisco,CA,94016 +312080,Flatscreen TV,1,300.0,2019-12-20 21:52:00,665 Cherry St, San Francisco,CA,94016 +312081,AAA Batteries (4-pack),1,2.99,2019-12-13 09:46:00,98 Adams St, New York City,NY,10001 +312082,AA Batteries (4-pack),1,3.84,2019-12-16 20:25:00,89 Adams St, New York City,NY,10001 +312083,AAA Batteries (4-pack),2,2.99,2019-12-29 22:32:00,643 Wilson St, San Francisco,CA,94016 +312084,AA Batteries (4-pack),2,3.84,2019-12-15 03:19:00,102 Jackson St, Los Angeles,CA,90001 +312085,AA Batteries (4-pack),1,3.84,2019-12-14 22:25:00,279 Willow St, San Francisco,CA,94016 +312086,Apple Airpods Headphones,1,150.0,2019-12-24 07:24:00,799 Hill St, Boston,MA,02215 +312087,Bose SoundSport Headphones,1,99.99,2019-12-19 14:36:00,274 Park St, Austin,TX,73301 +312088,Flatscreen TV,1,300.0,2019-12-06 22:57:00,24 Cedar St, Dallas,TX,75001 +312089,USB-C Charging Cable,1,11.95,2019-12-21 11:17:00,967 Lakeview St, New York City,NY,10001 +312090,27in 4K Gaming Monitor,1,389.99,2019-12-28 23:34:00,593 Park St, Austin,TX,73301 +312091,AAA Batteries (4-pack),2,2.99,2019-12-08 23:02:00,561 Lakeview St, New York City,NY,10001 +312092,Lightning Charging Cable,1,14.95,2019-12-24 06:16:00,785 Hill St, San Francisco,CA,94016 +312093,Lightning Charging Cable,1,14.95,2019-12-31 14:33:00,539 Adams St, San Francisco,CA,94016 +312094,iPhone,1,700.0,2019-12-30 15:59:00,559 Main St, San Francisco,CA,94016 +312095,34in Ultrawide Monitor,1,379.99,2019-12-27 21:23:00,516 1st St, Boston,MA,02215 +312096,ThinkPad Laptop,1,999.99,2019-12-10 15:28:00,659 13th St, Atlanta,GA,30301 +312097,Apple Airpods Headphones,1,150.0,2019-12-17 19:55:00,760 1st St, San Francisco,CA,94016 +312098,Apple Airpods Headphones,1,150.0,2019-12-28 14:41:00,246 9th St, Seattle,WA,98101 +312099,Bose SoundSport Headphones,1,99.99,2019-12-01 08:54:00,274 Dogwood St, San Francisco,CA,94016 +312100,34in Ultrawide Monitor,1,379.99,2019-12-10 13:56:00,645 Lakeview St, Los Angeles,CA,90001 +312101,Apple Airpods Headphones,1,150.0,2019-12-12 03:40:00,153 14th St, Portland,ME,04101 +312102,USB-C Charging Cable,1,11.95,2019-12-09 16:38:00,338 Lake St, San Francisco,CA,94016 +312103,Wired Headphones,1,11.99,2019-12-11 13:05:00,628 Jackson St, Boston,MA,02215 +312104,Lightning Charging Cable,1,14.95,2019-12-03 08:27:00,168 Washington St, San Francisco,CA,94016 +312105,Apple Airpods Headphones,1,150.0,2019-12-29 19:15:00,750 9th St, Portland,ME,04101 +312106,ThinkPad Laptop,1,999.99,2019-12-20 07:22:00,604 Washington St, Austin,TX,73301 +312107,AA Batteries (4-pack),1,3.84,2019-12-03 18:08:00,141 Church St, Dallas,TX,75001 +312108,27in 4K Gaming Monitor,1,389.99,2019-12-11 11:30:00,8 1st St, Atlanta,GA,30301 +312109,USB-C Charging Cable,3,11.95,2019-12-20 14:28:00,408 Dogwood St, San Francisco,CA,94016 +312110,Apple Airpods Headphones,1,150.0,2019-12-09 18:22:00,956 8th St, New York City,NY,10001 +312111,Lightning Charging Cable,1,14.95,2019-12-22 10:59:00,947 14th St, Los Angeles,CA,90001 +312112,AAA Batteries (4-pack),2,2.99,2019-12-23 11:03:00,713 Meadow St, Portland,OR,97035 +312113,Apple Airpods Headphones,1,150.0,2019-12-19 13:16:00,635 8th St, New York City,NY,10001 +312114,20in Monitor,1,109.99,2019-12-08 12:59:00,592 Spruce St, Los Angeles,CA,90001 +312115,Lightning Charging Cable,1,14.95,2019-12-19 14:37:00,463 Wilson St, San Francisco,CA,94016 +312116,Google Phone,1,600.0,2019-12-15 09:54:00,26 Willow St, Austin,TX,73301 +312117,Macbook Pro Laptop,1,1700.0,2019-12-14 12:39:00,628 Dogwood St, San Francisco,CA,94016 +312118,Lightning Charging Cable,1,14.95,2019-12-01 11:37:00,622 Walnut St, Boston,MA,02215 +312119,ThinkPad Laptop,1,999.99,2019-12-06 21:53:00,635 Maple St, Atlanta,GA,30301 +312120,Wired Headphones,1,11.99,2019-12-25 18:32:00,414 Jackson St, San Francisco,CA,94016 +312121,ThinkPad Laptop,1,999.99,2019-12-12 12:43:00,788 Elm St, Los Angeles,CA,90001 +312122,27in FHD Monitor,1,149.99,2019-12-23 13:15:00,952 River St, New York City,NY,10001 +312123,USB-C Charging Cable,1,11.95,2019-12-03 17:22:00,528 13th St, Portland,OR,97035 +312124,AAA Batteries (4-pack),1,2.99,2019-12-04 18:56:00,668 Hill St, Seattle,WA,98101 +312125,AA Batteries (4-pack),1,3.84,2019-12-09 14:58:00,88 Willow St, San Francisco,CA,94016 +312126,AAA Batteries (4-pack),1,2.99,2019-12-23 23:29:00,548 West St, Los Angeles,CA,90001 +312127,27in 4K Gaming Monitor,1,389.99,2019-12-22 10:09:00,390 West St, Atlanta,GA,30301 +312128,Wired Headphones,1,11.99,2019-12-05 20:07:00,53 River St, New York City,NY,10001 +312129,AA Batteries (4-pack),2,3.84,2019-12-23 21:17:00,411 1st St, New York City,NY,10001 +312130,Vareebadd Phone,1,400.0,2019-12-05 20:22:00,923 7th St, San Francisco,CA,94016 +312131,Flatscreen TV,1,300.0,2019-12-10 07:53:00,655 4th St, San Francisco,CA,94016 +312132,Bose SoundSport Headphones,1,99.99,2019-12-16 13:23:00,927 4th St, San Francisco,CA,94016 +312133,AAA Batteries (4-pack),1,2.99,2019-12-13 12:17:00,497 2nd St, San Francisco,CA,94016 +312134,Bose SoundSport Headphones,1,99.99,2019-12-19 21:04:00,899 Cherry St, New York City,NY,10001 +312135,27in 4K Gaming Monitor,1,389.99,2019-12-08 18:28:00,941 Walnut St, Boston,MA,02215 +312136,Bose SoundSport Headphones,1,99.99,2019-12-02 13:57:00,576 Walnut St, New York City,NY,10001 +312137,27in 4K Gaming Monitor,1,389.99,2019-12-29 21:38:00,142 Wilson St, San Francisco,CA,94016 +312138,Wired Headphones,1,11.99,2019-12-26 10:16:00,987 Hill St, San Francisco,CA,94016 +312139,Lightning Charging Cable,1,14.95,2019-12-22 14:24:00,485 Walnut St, Los Angeles,CA,90001 +312140,Wired Headphones,1,11.99,2019-12-13 11:54:00,923 8th St, New York City,NY,10001 +312141,iPhone,1,700.0,2019-12-02 14:37:00,336 Maple St, Los Angeles,CA,90001 +312142,AA Batteries (4-pack),2,3.84,2019-12-20 22:05:00,51 Hill St, San Francisco,CA,94016 +312143,Wired Headphones,1,11.99,2019-12-18 12:38:00,992 Hickory St, Dallas,TX,75001 +312144,Wired Headphones,1,11.99,2019-12-19 19:59:00,714 Meadow St, New York City,NY,10001 +312145,Wired Headphones,1,11.99,2019-12-12 11:19:00,818 Lincoln St, New York City,NY,10001 +312146,Apple Airpods Headphones,1,150.0,2019-12-02 18:56:00,350 4th St, Austin,TX,73301 +312147,Lightning Charging Cable,1,14.95,2019-12-09 10:48:00,377 10th St, Los Angeles,CA,90001 +312148,27in 4K Gaming Monitor,1,389.99,2019-12-09 17:54:00,783 12th St, Boston,MA,02215 +312149,USB-C Charging Cable,1,11.95,2019-12-18 14:22:00,512 Church St, Boston,MA,02215 +312150,AAA Batteries (4-pack),2,2.99,2019-12-19 07:43:00,326 Forest St, New York City,NY,10001 +312151,AA Batteries (4-pack),1,3.84,2019-12-30 21:43:00,53 North St, Dallas,TX,75001 +312152,AAA Batteries (4-pack),1,2.99,2019-12-15 08:16:00,932 Elm St, San Francisco,CA,94016 +312153,Google Phone,1,600.0,2019-12-04 18:45:00,83 Forest St, Seattle,WA,98101 +312154,USB-C Charging Cable,1,11.95,2019-12-30 10:01:00,572 Maple St, Los Angeles,CA,90001 +312155,AAA Batteries (4-pack),3,2.99,2019-12-28 20:03:00,899 2nd St, New York City,NY,10001 +312156,Lightning Charging Cable,1,14.95,2019-12-19 14:29:00,565 1st St, Portland,OR,97035 +312157,AA Batteries (4-pack),1,3.84,2019-12-16 17:56:00,147 West St, Los Angeles,CA,90001 +312158,Lightning Charging Cable,1,14.95,2019-12-02 00:16:00,510 Jackson St, Los Angeles,CA,90001 +312159,Lightning Charging Cable,1,14.95,2019-12-20 13:52:00,826 Highland St, San Francisco,CA,94016 +312160,20in Monitor,1,109.99,2019-12-12 11:32:00,795 Washington St, San Francisco,CA,94016 +312161,Flatscreen TV,1,300.0,2019-12-28 20:14:00,410 Church St, Seattle,WA,98101 +312162,Flatscreen TV,1,300.0,2019-12-25 14:40:00,936 South St, Austin,TX,73301 +312163,AA Batteries (4-pack),3,3.84,2019-12-29 16:14:00,956 Madison St, San Francisco,CA,94016 +312164,USB-C Charging Cable,1,11.95,2019-12-25 06:58:00,825 13th St, Austin,TX,73301 +312164,Wired Headphones,1,11.99,2019-12-25 06:58:00,825 13th St, Austin,TX,73301 +312165,USB-C Charging Cable,1,11.95,2019-12-11 11:51:00,645 Hill St, Los Angeles,CA,90001 +312166,Macbook Pro Laptop,1,1700.0,2019-12-26 13:28:00,269 Forest St, Austin,TX,73301 +312167,AA Batteries (4-pack),2,3.84,2019-12-11 09:47:00,587 Cedar St, New York City,NY,10001 +312168,AAA Batteries (4-pack),1,2.99,2019-12-29 10:27:00,804 Ridge St, San Francisco,CA,94016 +312169,USB-C Charging Cable,1,11.95,2019-12-14 07:19:00,572 Lake St, Portland,OR,97035 +312170,AAA Batteries (4-pack),1,2.99,2019-12-13 16:28:00,596 Sunset St, Seattle,WA,98101 +312171,AA Batteries (4-pack),1,3.84,2019-12-17 13:15:00,666 1st St, San Francisco,CA,94016 +312172,AAA Batteries (4-pack),2,2.99,2019-12-16 09:30:00,439 Elm St, Los Angeles,CA,90001 +312173,34in Ultrawide Monitor,1,379.99,2019-12-26 17:13:00,272 Wilson St, Dallas,TX,75001 +312174,USB-C Charging Cable,1,11.95,2019-12-06 09:57:00,865 River St, Atlanta,GA,30301 +312175,20in Monitor,1,109.99,2019-12-19 15:39:00,496 4th St, New York City,NY,10001 +312176,USB-C Charging Cable,1,11.95,2019-12-17 14:31:00,383 Wilson St, New York City,NY,10001 +312177,USB-C Charging Cable,1,11.95,2019-12-24 19:25:00,644 9th St, Portland,OR,97035 +312178,AAA Batteries (4-pack),1,2.99,2019-12-05 19:17:00,625 Jackson St, Portland,OR,97035 +312179,AA Batteries (4-pack),3,3.84,2019-12-16 21:55:00,754 Jackson St, San Francisco,CA,94016 +312180,Wired Headphones,1,11.99,2019-12-16 22:27:00,634 7th St, San Francisco,CA,94016 +312181,Macbook Pro Laptop,1,1700.0,2019-12-26 13:12:00,718 Park St, San Francisco,CA,94016 +312182,AA Batteries (4-pack),1,3.84,2019-12-02 06:27:00,267 12th St, San Francisco,CA,94016 +312183,AAA Batteries (4-pack),1,2.99,2019-12-04 18:35:00,256 River St, San Francisco,CA,94016 +312184,27in 4K Gaming Monitor,1,389.99,2019-12-14 10:03:00,521 11th St, Dallas,TX,75001 +312185,USB-C Charging Cable,1,11.95,2019-12-21 19:41:00,241 Adams St, Portland,OR,97035 +312186,iPhone,1,700.0,2019-12-19 13:32:00,645 Spruce St, Los Angeles,CA,90001 +312187,AAA Batteries (4-pack),6,2.99,2019-12-23 10:07:00,943 Forest St, Los Angeles,CA,90001 +312188,Macbook Pro Laptop,1,1700.0,2019-12-20 12:09:00,359 North St, Boston,MA,02215 +312189,iPhone,1,700.0,2019-12-07 07:31:00,747 Cherry St, Austin,TX,73301 +312190,AAA Batteries (4-pack),1,2.99,2019-12-03 11:42:00,355 Forest St, San Francisco,CA,94016 +312191,AAA Batteries (4-pack),1,2.99,2019-12-28 14:09:00,501 River St, Boston,MA,02215 +312192,20in Monitor,1,109.99,2019-12-23 22:11:00,547 Meadow St, Portland,ME,04101 +312193,20in Monitor,1,109.99,2019-12-13 04:29:00,452 Hill St, Boston,MA,02215 +312194,AAA Batteries (4-pack),1,2.99,2019-12-03 17:12:00,319 14th St, San Francisco,CA,94016 +312195,Bose SoundSport Headphones,1,99.99,2019-12-19 21:31:00,680 Elm St, San Francisco,CA,94016 +312196,Flatscreen TV,1,300.0,2019-12-29 23:12:00,76 Hill St, New York City,NY,10001 +312197,27in FHD Monitor,1,149.99,2019-12-01 17:32:00,911 1st St, New York City,NY,10001 +312198,Lightning Charging Cable,1,14.95,2019-12-19 09:27:00,489 Maple St, Dallas,TX,75001 +312199,27in 4K Gaming Monitor,1,389.99,2019-12-05 17:30:00,625 Washington St, Dallas,TX,75001 +312200,Google Phone,1,600.0,2019-12-22 17:34:00,297 Johnson St, Dallas,TX,75001 +312201,AA Batteries (4-pack),2,3.84,2019-12-16 22:43:00,3 Ridge St, Seattle,WA,98101 +312201,20in Monitor,1,109.99,2019-12-16 22:43:00,3 Ridge St, Seattle,WA,98101 +312202,Apple Airpods Headphones,1,150.0,2019-12-11 21:31:00,178 North St, Boston,MA,02215 +312203,Flatscreen TV,1,300.0,2019-12-25 14:05:00,713 7th St, Seattle,WA,98101 +312204,AA Batteries (4-pack),2,3.84,2019-12-05 15:19:00,589 Lake St, Boston,MA,02215 +312205,27in 4K Gaming Monitor,1,389.99,2019-12-10 19:56:00,271 6th St, Dallas,TX,75001 +312206,Google Phone,1,600.0,2019-12-13 20:37:00,225 Madison St, Austin,TX,73301 +312207,AA Batteries (4-pack),1,3.84,2019-12-12 00:13:00,893 8th St, Los Angeles,CA,90001 +312208,Wired Headphones,2,11.99,2019-12-25 17:58:00,668 Cherry St, San Francisco,CA,94016 +312209,Bose SoundSport Headphones,1,99.99,2019-12-08 12:07:00,513 Sunset St, Atlanta,GA,30301 +312210,27in 4K Gaming Monitor,1,389.99,2019-12-16 11:28:00,586 Chestnut St, San Francisco,CA,94016 +312211,AA Batteries (4-pack),1,3.84,2019-12-23 03:31:00,622 Adams St, Atlanta,GA,30301 +312212,AA Batteries (4-pack),1,3.84,2019-12-11 12:50:00,973 Ridge St, San Francisco,CA,94016 +312213,AAA Batteries (4-pack),1,2.99,2019-12-04 07:00:00,236 Hill St, Atlanta,GA,30301 +312214,AA Batteries (4-pack),1,3.84,2019-12-01 12:35:00,989 Church St, San Francisco,CA,94016 +312215,Wired Headphones,1,11.99,2019-12-13 09:18:00,711 West St, Boston,MA,02215 +312216,Bose SoundSport Headphones,1,99.99,2019-12-19 13:52:00,606 7th St, Seattle,WA,98101 +312217,Flatscreen TV,1,300.0,2019-12-09 11:59:00,107 Jefferson St, Dallas,TX,75001 +312218,Bose SoundSport Headphones,1,99.99,2019-12-07 21:26:00,234 Maple St, San Francisco,CA,94016 +312219,AAA Batteries (4-pack),1,2.99,2019-12-26 16:01:00,908 Spruce St, New York City,NY,10001 +312220,AAA Batteries (4-pack),1,2.99,2019-12-16 19:05:00,741 Hill St, Austin,TX,73301 +312221,USB-C Charging Cable,1,11.95,2019-12-27 17:52:00,542 6th St, Los Angeles,CA,90001 +312222,Apple Airpods Headphones,1,150.0,2019-12-30 15:06:00,803 Willow St, New York City,NY,10001 +312223,LG Washing Machine,1,600.0,2019-12-18 20:19:00,428 4th St, San Francisco,CA,94016 +312224,USB-C Charging Cable,1,11.95,2019-12-06 07:10:00,269 Adams St, Portland,OR,97035 +312225,Bose SoundSport Headphones,1,99.99,2019-12-22 00:14:00,815 South St, Los Angeles,CA,90001 +312226,Lightning Charging Cable,1,14.95,2019-12-01 20:34:00,266 Lake St, Los Angeles,CA,90001 +312227,34in Ultrawide Monitor,1,379.99,2019-12-09 22:46:00,934 8th St, Los Angeles,CA,90001 +312228,20in Monitor,1,109.99,2019-12-18 23:08:00,514 9th St, Boston,MA,02215 +312228,ThinkPad Laptop,1,999.99,2019-12-18 23:08:00,514 9th St, Boston,MA,02215 +312229,AA Batteries (4-pack),1,3.84,2019-12-06 16:30:00,676 Hill St, San Francisco,CA,94016 +312230,34in Ultrawide Monitor,1,379.99,2019-12-12 09:23:00,397 14th St, San Francisco,CA,94016 +312231,Wired Headphones,1,11.99,2019-12-24 10:59:00,820 Lakeview St, Los Angeles,CA,90001 +312232,Lightning Charging Cable,1,14.95,2019-12-29 22:21:00,43 Jefferson St, Boston,MA,02215 +312233,Lightning Charging Cable,1,14.95,2019-12-23 23:26:00,366 Lakeview St, Atlanta,GA,30301 +312234,34in Ultrawide Monitor,1,379.99,2019-12-11 11:50:00,851 Church St, New York City,NY,10001 +312235,AAA Batteries (4-pack),1,2.99,2019-12-21 10:24:00,425 8th St, New York City,NY,10001 +312236,AAA Batteries (4-pack),1,2.99,2019-12-09 16:04:00,517 Main St, Los Angeles,CA,90001 +312237,Lightning Charging Cable,3,14.95,2019-12-11 19:28:00,356 Willow St, San Francisco,CA,94016 +312238,USB-C Charging Cable,1,11.95,2019-12-30 23:05:00,237 Walnut St, Dallas,TX,75001 +312239,Wired Headphones,1,11.99,2019-12-19 22:32:00,611 North St, San Francisco,CA,94016 +312240,Vareebadd Phone,1,400.0,2019-12-21 22:14:00,132 Wilson St, New York City,NY,10001 +312241,34in Ultrawide Monitor,1,379.99,2019-12-01 20:28:00,81 14th St, New York City,NY,10001 +312242,AA Batteries (4-pack),2,3.84,2019-12-07 12:06:00,271 Forest St, San Francisco,CA,94016 +312243,27in 4K Gaming Monitor,1,389.99,2019-12-18 08:35:00,132 Willow St, Boston,MA,02215 +312244,27in FHD Monitor,1,149.99,2019-12-22 09:33:00,97 12th St, Los Angeles,CA,90001 +312245,Apple Airpods Headphones,1,150.0,2019-12-25 15:48:00,8 Jackson St, Los Angeles,CA,90001 +312246,Lightning Charging Cable,1,14.95,2019-12-14 13:36:00,687 Willow St, Seattle,WA,98101 +312247,Macbook Pro Laptop,1,1700.0,2019-12-31 20:19:00,907 Spruce St, Seattle,WA,98101 +312248,27in FHD Monitor,1,149.99,2019-12-29 18:39:00,714 Willow St, San Francisco,CA,94016 +312249,USB-C Charging Cable,1,11.95,2019-12-14 11:49:00,440 Lake St, San Francisco,CA,94016 +312250,AA Batteries (4-pack),1,3.84,2019-12-21 17:05:00,404 Center St, New York City,NY,10001 +312251,Lightning Charging Cable,1,14.95,2019-12-27 14:10:00,500 2nd St, Seattle,WA,98101 +312252,Flatscreen TV,1,300.0,2019-12-22 22:38:00,388 9th St, Atlanta,GA,30301 +312253,20in Monitor,1,109.99,2019-12-16 15:45:00,824 12th St, Austin,TX,73301 +312254,iPhone,1,700.0,2019-12-19 22:20:00,11 Park St, Portland,OR,97035 +312255,USB-C Charging Cable,1,11.95,2019-12-24 10:12:00,126 Lake St, Los Angeles,CA,90001 +312256,AAA Batteries (4-pack),1,2.99,2019-12-10 14:27:00,66 Dogwood St, Atlanta,GA,30301 +312257,27in FHD Monitor,1,149.99,2019-12-23 22:22:00,44 Chestnut St, Portland,OR,97035 +312258,Wired Headphones,1,11.99,2019-12-31 15:49:00,101 8th St, San Francisco,CA,94016 +312259,20in Monitor,1,109.99,2019-12-09 17:19:00,459 Cherry St, San Francisco,CA,94016 +312259,USB-C Charging Cable,1,11.95,2019-12-09 17:19:00,459 Cherry St, San Francisco,CA,94016 +312260,27in FHD Monitor,1,149.99,2019-12-07 20:12:00,567 12th St, New York City,NY,10001 +312261,Google Phone,1,600.0,2019-12-16 23:52:00,48 North St, Seattle,WA,98101 +312262,USB-C Charging Cable,1,11.95,2019-12-26 19:16:00,911 11th St, San Francisco,CA,94016 +312263,Apple Airpods Headphones,1,150.0,2019-12-08 13:23:00,805 Highland St, Los Angeles,CA,90001 +312264,Lightning Charging Cable,1,14.95,2019-12-04 20:39:00,88 Walnut St, Dallas,TX,75001 +312265,AA Batteries (4-pack),1,3.84,2019-12-12 14:55:00,139 Hill St, San Francisco,CA,94016 +312266,USB-C Charging Cable,1,11.95,2019-12-22 19:14:00,681 Wilson St, Boston,MA,02215 +312267,Wired Headphones,1,11.99,2019-12-12 18:04:00,244 Walnut St, New York City,NY,10001 +312268,Wired Headphones,1,11.99,2019-12-04 11:14:00,621 Main St, New York City,NY,10001 +312269,Wired Headphones,1,11.99,2019-12-23 17:58:00,767 North St, New York City,NY,10001 +312270,Vareebadd Phone,1,400.0,2019-12-12 21:34:00,603 Center St, Boston,MA,02215 +312270,USB-C Charging Cable,1,11.95,2019-12-12 21:34:00,603 Center St, Boston,MA,02215 +312271,Apple Airpods Headphones,1,150.0,2019-12-07 23:40:00,392 Adams St, Atlanta,GA,30301 +312272,Lightning Charging Cable,1,14.95,2019-12-26 10:17:00,339 Hickory St, San Francisco,CA,94016 +312273,AA Batteries (4-pack),1,3.84,2019-12-05 13:45:00,212 Forest St, New York City,NY,10001 +312274,Apple Airpods Headphones,1,150.0,2019-12-17 00:14:00,706 14th St, New York City,NY,10001 +312275,USB-C Charging Cable,1,11.95,2019-12-30 18:34:00,672 Wilson St, New York City,NY,10001 +312276,USB-C Charging Cable,1,11.95,2019-12-27 09:23:00,427 Madison St, San Francisco,CA,94016 +312277,USB-C Charging Cable,1,11.95,2019-12-05 17:21:00,210 Church St, San Francisco,CA,94016 +312278,Apple Airpods Headphones,1,150.0,2019-12-07 17:34:00,817 Washington St, New York City,NY,10001 +312279,AAA Batteries (4-pack),1,2.99,2019-12-30 18:14:00,953 Church St, Portland,OR,97035 +312280,27in 4K Gaming Monitor,1,389.99,2019-12-14 20:38:00,347 Cherry St, New York City,NY,10001 +312281,AA Batteries (4-pack),1,3.84,2019-12-19 16:39:00,442 River St, Los Angeles,CA,90001 +312282,AAA Batteries (4-pack),1,2.99,2019-12-19 16:19:00,454 Meadow St, Atlanta,GA,30301 +312283,Wired Headphones,1,11.99,2019-12-05 14:57:00,615 Pine St, Austin,TX,73301 +312284,AA Batteries (4-pack),2,3.84,2019-12-22 20:11:00,471 14th St, Atlanta,GA,30301 +312285,AA Batteries (4-pack),1,3.84,2019-12-01 20:17:00,938 14th St, Austin,TX,73301 +312286,AA Batteries (4-pack),1,3.84,2019-12-04 13:09:00,167 Ridge St, Atlanta,GA,30301 +312287,Lightning Charging Cable,2,14.95,2019-12-02 09:38:00,575 7th St, Los Angeles,CA,90001 +312288,AAA Batteries (4-pack),2,2.99,2019-12-31 11:31:00,700 6th St, San Francisco,CA,94016 +312289,Lightning Charging Cable,1,14.95,2019-12-08 12:56:00,949 9th St, San Francisco,CA,94016 +312290,Apple Airpods Headphones,1,150.0,2019-12-03 14:09:00,443 Cherry St, San Francisco,CA,94016 +312291,Bose SoundSport Headphones,1,99.99,2019-12-09 10:43:00,146 Meadow St, Austin,TX,73301 +312292,AAA Batteries (4-pack),1,2.99,2019-12-25 17:33:00,364 Wilson St, Austin,TX,73301 +312293,AAA Batteries (4-pack),2,2.99,2019-12-21 23:54:00,967 Adams St, San Francisco,CA,94016 +312294,20in Monitor,1,109.99,2019-12-31 15:37:00,3 Jackson St, New York City,NY,10001 +312295,AA Batteries (4-pack),1,3.84,2019-12-18 05:36:00,352 Washington St, Seattle,WA,98101 +312296,AAA Batteries (4-pack),1,2.99,2019-12-19 22:36:00,717 Hickory St, Los Angeles,CA,90001 +312297,Apple Airpods Headphones,1,150.0,2019-12-27 11:36:00,567 7th St, Seattle,WA,98101 +312298,Wired Headphones,1,11.99,2019-12-20 20:42:00,561 Willow St, San Francisco,CA,94016 +312299,USB-C Charging Cable,1,11.95,2019-12-11 13:18:00,437 Meadow St, Boston,MA,02215 +312300,USB-C Charging Cable,2,11.95,2019-12-11 08:44:00,961 9th St, Boston,MA,02215 +312301,USB-C Charging Cable,1,11.95,2019-12-11 21:31:00,906 Spruce St, Atlanta,GA,30301 +312302,AA Batteries (4-pack),2,3.84,2019-12-20 08:49:00,995 Dogwood St, Portland,OR,97035 +312303,27in 4K Gaming Monitor,1,389.99,2019-12-22 09:45:00,304 Main St, San Francisco,CA,94016 +312304,Google Phone,1,600.0,2019-12-31 22:37:00,319 Main St, Boston,MA,02215 +312305,ThinkPad Laptop,1,999.99,2019-12-10 10:07:00,77 Hill St, Atlanta,GA,30301 +312306,27in 4K Gaming Monitor,1,389.99,2019-12-22 21:59:00,34 Ridge St, Los Angeles,CA,90001 +312307,Lightning Charging Cable,1,14.95,2019-12-03 17:39:00,462 Park St, New York City,NY,10001 +312308,AA Batteries (4-pack),1,3.84,2019-12-30 09:19:00,919 Church St, New York City,NY,10001 +312309,AA Batteries (4-pack),1,3.84,2019-12-12 18:41:00,199 8th St, Los Angeles,CA,90001 +312310,AAA Batteries (4-pack),1,2.99,2019-12-23 18:54:00,358 Washington St, Los Angeles,CA,90001 +312311,Apple Airpods Headphones,1,150.0,2019-12-12 16:59:00,97 11th St, Los Angeles,CA,90001 +312312,AA Batteries (4-pack),1,3.84,2019-12-03 12:41:00,427 4th St, San Francisco,CA,94016 +312313,Wired Headphones,1,11.99,2019-12-03 14:30:00,491 West St, Los Angeles,CA,90001 +312314,Lightning Charging Cable,1,14.95,2019-12-17 15:06:00,793 6th St, Seattle,WA,98101 +312315,34in Ultrawide Monitor,1,379.99,2019-12-13 22:33:00,219 1st St, San Francisco,CA,94016 +312316,USB-C Charging Cable,1,11.95,2019-12-11 08:05:00,82 10th St, Seattle,WA,98101 +312317,27in 4K Gaming Monitor,1,389.99,2019-12-09 14:58:00,617 Chestnut St, Austin,TX,73301 +312318,Lightning Charging Cable,1,14.95,2019-12-22 13:31:00,639 8th St, Boston,MA,02215 +312319,27in 4K Gaming Monitor,1,389.99,2019-12-03 15:52:00,785 8th St, Los Angeles,CA,90001 +312320,Apple Airpods Headphones,1,150.0,2019-12-06 23:55:00,550 Church St, Austin,TX,73301 +312321,USB-C Charging Cable,2,11.95,2019-12-01 17:18:00,29 4th St, San Francisco,CA,94016 +312322,27in FHD Monitor,1,149.99,2019-12-11 01:48:00,780 Willow St, Los Angeles,CA,90001 +312323,Wired Headphones,1,11.99,2019-12-28 15:01:00,402 Chestnut St, San Francisco,CA,94016 +312324,Wired Headphones,1,11.99,2019-12-02 12:59:00,838 Washington St, Los Angeles,CA,90001 +312325,AA Batteries (4-pack),1,3.84,2019-12-19 16:40:00,9 Maple St, Boston,MA,02215 +312326,Google Phone,1,600.0,2019-12-13 09:24:00,107 Jackson St, San Francisco,CA,94016 +312327,Flatscreen TV,1,300.0,2019-12-02 23:05:00,511 Lake St, Los Angeles,CA,90001 +312328,AAA Batteries (4-pack),6,2.99,2019-12-21 11:00:00,351 Lincoln St, San Francisco,CA,94016 +312329,Bose SoundSport Headphones,1,99.99,2019-12-20 18:42:00,15 8th St, Boston,MA,02215 +312330,AA Batteries (4-pack),1,3.84,2019-12-28 20:02:00,598 Walnut St, San Francisco,CA,94016 +312331,Google Phone,1,600.0,2019-12-10 19:45:00,609 13th St, Portland,OR,97035 +312332,27in FHD Monitor,1,149.99,2019-12-13 14:44:00,123 13th St, Boston,MA,02215 +312333,Lightning Charging Cable,1,14.95,2019-12-04 17:30:00,929 Park St, New York City,NY,10001 +312334,Apple Airpods Headphones,1,150.0,2019-12-11 15:41:00,652 North St, Dallas,TX,75001 +312335,USB-C Charging Cable,1,11.95,2019-12-01 20:55:00,874 12th St, San Francisco,CA,94016 +312336,27in FHD Monitor,1,149.99,2019-12-26 00:30:00,759 4th St, Portland,OR,97035 +312337,USB-C Charging Cable,1,11.95,2019-12-16 14:59:00,971 Madison St, San Francisco,CA,94016 +312338,27in FHD Monitor,1,149.99,2019-12-03 14:09:00,908 Adams St, Los Angeles,CA,90001 +312339,Google Phone,1,600.0,2019-12-17 21:17:00,663 Elm St, Portland,OR,97035 +312339,USB-C Charging Cable,1,11.95,2019-12-17 21:17:00,663 Elm St, Portland,OR,97035 +312340,Bose SoundSport Headphones,1,99.99,2019-12-08 13:09:00,686 Walnut St, Portland,OR,97035 +312341,AA Batteries (4-pack),1,3.84,2019-12-05 13:57:00,448 South St, Los Angeles,CA,90001 +312342,Wired Headphones,1,11.99,2019-12-02 10:30:00,703 Dogwood St, San Francisco,CA,94016 +312343,Apple Airpods Headphones,1,150.0,2019-12-27 23:44:00,183 Ridge St, Portland,OR,97035 +312344,AAA Batteries (4-pack),1,2.99,2019-12-31 01:14:00,709 Meadow St, Los Angeles,CA,90001 +312345,Apple Airpods Headphones,1,150.0,2019-12-27 09:08:00,644 Dogwood St, New York City,NY,10001 +312346,USB-C Charging Cable,1,11.95,2019-12-21 08:21:00,858 Lakeview St, New York City,NY,10001 +312346,Bose SoundSport Headphones,1,99.99,2019-12-21 08:21:00,858 Lakeview St, New York City,NY,10001 +312347,ThinkPad Laptop,1,999.99,2019-12-09 12:46:00,360 Meadow St, New York City,NY,10001 +312348,Wired Headphones,1,11.99,2019-12-15 18:33:00,738 Washington St, San Francisco,CA,94016 +312349,27in 4K Gaming Monitor,1,389.99,2019-12-26 12:46:00,990 Adams St, New York City,NY,10001 +312350,Bose SoundSport Headphones,1,99.99,2019-12-18 11:41:00,324 Johnson St, Atlanta,GA,30301 +312351,Google Phone,1,600.0,2019-12-13 02:22:00,136 South St, Portland,OR,97035 +312352,Flatscreen TV,1,300.0,2019-12-08 12:07:00,321 Adams St, San Francisco,CA,94016 +312353,Apple Airpods Headphones,1,150.0,2019-12-26 12:05:00,897 Chestnut St, New York City,NY,10001 +312354,Lightning Charging Cable,1,14.95,2019-12-19 07:27:00,126 13th St, Portland,OR,97035 +312355,AAA Batteries (4-pack),1,2.99,2019-12-06 11:49:00,449 Wilson St, Los Angeles,CA,90001 +312356,Lightning Charging Cable,1,14.95,2019-12-15 07:43:00,752 9th St, Atlanta,GA,30301 +312357,Wired Headphones,1,11.99,2019-12-09 17:34:00,509 7th St, Boston,MA,02215 +312358,Wired Headphones,2,11.99,2019-12-10 12:10:00,571 North St, New York City,NY,10001 +312359,Lightning Charging Cable,2,14.95,2019-12-26 10:13:00,819 Dogwood St, Atlanta,GA,30301 +312360,AA Batteries (4-pack),1,3.84,2019-12-19 21:26:00,707 Jackson St, Boston,MA,02215 +312361,Flatscreen TV,1,300.0,2019-12-19 15:35:00,97 Center St, Atlanta,GA,30301 +312362,AAA Batteries (4-pack),1,2.99,2019-12-26 09:56:00,294 South St, San Francisco,CA,94016 +312363,Apple Airpods Headphones,1,150.0,2019-12-27 21:04:00,568 River St, New York City,NY,10001 +312364,27in FHD Monitor,1,149.99,2019-12-15 13:30:00,325 Church St, Boston,MA,02215 +312365,USB-C Charging Cable,1,11.95,2019-12-10 18:10:00,987 River St, Los Angeles,CA,90001 +312366,AAA Batteries (4-pack),1,2.99,2019-12-13 23:20:00,189 8th St, Los Angeles,CA,90001 +312367,USB-C Charging Cable,1,11.95,2019-12-17 20:52:00,946 West St, Los Angeles,CA,90001 +312368,Macbook Pro Laptop,1,1700.0,2019-12-10 11:53:00,128 Main St, New York City,NY,10001 +312369,Wired Headphones,1,11.99,2019-12-28 13:35:00,410 Lake St, New York City,NY,10001 +312370,Apple Airpods Headphones,1,150.0,2019-12-04 14:07:00,930 10th St, Atlanta,GA,30301 +312371,Apple Airpods Headphones,1,150.0,2019-12-10 07:56:00,921 North St, San Francisco,CA,94016 +312372,Lightning Charging Cable,1,14.95,2019-12-13 23:07:00,458 4th St, Atlanta,GA,30301 +312373,Flatscreen TV,1,300.0,2019-12-10 15:00:00,689 Wilson St, San Francisco,CA,94016 +312374,Wired Headphones,1,11.99,2019-12-27 17:30:00,901 Johnson St, Atlanta,GA,30301 +312375,Lightning Charging Cable,1,14.95,2019-12-26 18:20:00,83 11th St, San Francisco,CA,94016 +312376,20in Monitor,1,109.99,2019-12-24 11:14:00,913 Forest St, Atlanta,GA,30301 +312377,Apple Airpods Headphones,1,150.0,2019-12-05 23:25:00,712 Sunset St, Seattle,WA,98101 +312378,Flatscreen TV,1,300.0,2019-12-10 09:08:00,630 Hickory St, Portland,OR,97035 +312379,34in Ultrawide Monitor,1,379.99,2019-12-21 18:43:00,160 Park St, San Francisco,CA,94016 +312380,Bose SoundSport Headphones,1,99.99,2019-12-01 18:33:00,872 11th St, Dallas,TX,75001 +312381,27in 4K Gaming Monitor,1,389.99,2019-12-18 17:31:00,653 Main St, Seattle,WA,98101 +312382,34in Ultrawide Monitor,1,379.99,2019-12-29 09:53:00,349 Willow St, Los Angeles,CA,90001 +312383,AAA Batteries (4-pack),1,2.99,2019-12-04 13:24:00,467 5th St, Dallas,TX,75001 +312384,Bose SoundSport Headphones,1,99.99,2019-12-14 19:28:00,47 6th St, Dallas,TX,75001 +312385,Wired Headphones,1,11.99,2019-12-10 15:45:00,919 Maple St, Dallas,TX,75001 +312386,20in Monitor,1,109.99,2019-12-25 14:13:00,637 Lake St, Los Angeles,CA,90001 +312387,27in FHD Monitor,1,149.99,2019-12-06 11:17:00,548 Sunset St, Boston,MA,02215 +312388,Lightning Charging Cable,1,14.95,2019-12-10 13:07:00,842 13th St, San Francisco,CA,94016 +312389,Bose SoundSport Headphones,1,99.99,2019-12-15 10:07:00,7 River St, Atlanta,GA,30301 +312390,Wired Headphones,1,11.99,2019-12-24 08:31:00,674 Washington St, Dallas,TX,75001 +312391,AA Batteries (4-pack),3,3.84,2019-12-25 05:34:00,382 Madison St, New York City,NY,10001 +312392,Lightning Charging Cable,1,14.95,2019-12-01 09:34:00,816 7th St, Dallas,TX,75001 +312393,iPhone,1,700.0,2019-12-01 13:47:00,519 Pine St, Boston,MA,02215 +312394,Lightning Charging Cable,1,14.95,2019-12-06 05:50:00,127 West St, San Francisco,CA,94016 +312395,AA Batteries (4-pack),1,3.84,2019-12-27 23:52:00,186 12th St, Atlanta,GA,30301 +312395,ThinkPad Laptop,1,999.99,2019-12-27 23:52:00,186 12th St, Atlanta,GA,30301 +312396,Vareebadd Phone,1,400.0,2019-12-30 12:48:00,456 Maple St, Seattle,WA,98101 +312396,USB-C Charging Cable,1,11.95,2019-12-30 12:48:00,456 Maple St, Seattle,WA,98101 +312397,27in 4K Gaming Monitor,1,389.99,2019-12-06 20:18:00,164 Chestnut St, Los Angeles,CA,90001 +312398,Wired Headphones,2,11.99,2019-12-14 22:02:00,606 13th St, New York City,NY,10001 +312399,Wired Headphones,1,11.99,2019-12-07 15:24:00,216 Highland St, Dallas,TX,75001 +312400,USB-C Charging Cable,1,11.95,2019-12-08 10:24:00,140 North St, New York City,NY,10001 +312401,Apple Airpods Headphones,1,150.0,2019-12-02 13:19:00,304 Adams St, Seattle,WA,98101 +312402,Lightning Charging Cable,1,14.95,2019-12-21 01:48:00,310 12th St, Seattle,WA,98101 +312403,Lightning Charging Cable,1,14.95,2019-12-28 11:31:00,905 Cherry St, Portland,OR,97035 +312404,Wired Headphones,1,11.99,2019-12-30 19:30:00,416 Walnut St, Los Angeles,CA,90001 +312405,Apple Airpods Headphones,1,150.0,2019-12-13 22:33:00,278 9th St, Atlanta,GA,30301 +312406,Apple Airpods Headphones,1,150.0,2019-12-09 01:02:00,935 Dogwood St, New York City,NY,10001 +312407,Google Phone,1,600.0,2019-12-09 15:18:00,523 Elm St, Seattle,WA,98101 +312407,USB-C Charging Cable,1,11.95,2019-12-09 15:18:00,523 Elm St, Seattle,WA,98101 +312407,Wired Headphones,1,11.99,2019-12-09 15:18:00,523 Elm St, Seattle,WA,98101 +312407,Apple Airpods Headphones,1,150.0,2019-12-09 15:18:00,523 Elm St, Seattle,WA,98101 +312408,USB-C Charging Cable,1,11.95,2019-12-23 02:54:00,98 Jefferson St, Los Angeles,CA,90001 +312409,Vareebadd Phone,1,400.0,2019-12-09 19:45:00,112 Forest St, Boston,MA,02215 +312410,Macbook Pro Laptop,1,1700.0,2019-12-13 21:01:00,130 Elm St, Dallas,TX,75001 +312411,Lightning Charging Cable,2,14.95,2019-12-17 10:44:00,940 Forest St, San Francisco,CA,94016 +312412,Flatscreen TV,1,300.0,2019-12-23 12:34:00,466 Johnson St, Atlanta,GA,30301 +312413,Bose SoundSport Headphones,1,99.99,2019-12-27 16:15:00,436 14th St, Seattle,WA,98101 +312414,Apple Airpods Headphones,1,150.0,2019-12-23 13:06:00,937 Church St, Los Angeles,CA,90001 +312415,27in FHD Monitor,1,149.99,2019-12-04 23:11:00,834 Walnut St, Dallas,TX,75001 +312416,Wired Headphones,1,11.99,2019-12-15 18:13:00,876 7th St, San Francisco,CA,94016 +312416,Lightning Charging Cable,1,14.95,2019-12-15 18:13:00,876 7th St, San Francisco,CA,94016 +312417,Wired Headphones,1,11.99,2019-12-31 07:21:00,124 Chestnut St, Boston,MA,02215 +312418,AAA Batteries (4-pack),1,2.99,2019-12-05 07:09:00,410 River St, Dallas,TX,75001 +312419,AA Batteries (4-pack),1,3.84,2019-12-23 22:15:00,637 Dogwood St, New York City,NY,10001 +312420,AA Batteries (4-pack),1,3.84,2019-12-16 07:34:00,54 Main St, Atlanta,GA,30301 +312421,34in Ultrawide Monitor,1,379.99,2019-12-07 00:09:00,437 Highland St, San Francisco,CA,94016 +312422,Lightning Charging Cable,1,14.95,2019-12-09 15:09:00,613 Center St, Los Angeles,CA,90001 +312423,Bose SoundSport Headphones,1,99.99,2019-12-10 09:45:00,252 Jefferson St, Dallas,TX,75001 +312424,AAA Batteries (4-pack),1,2.99,2019-12-01 04:24:00,226 Elm St, New York City,NY,10001 +312425,Google Phone,1,600.0,2019-12-27 14:18:00,696 Main St, Seattle,WA,98101 +312426,Wired Headphones,2,11.99,2019-12-10 10:06:00,195 7th St, San Francisco,CA,94016 +312427,Apple Airpods Headphones,1,150.0,2019-12-17 18:01:00,424 4th St, Austin,TX,73301 +312427,Lightning Charging Cable,1,14.95,2019-12-17 18:01:00,424 4th St, Austin,TX,73301 +312428,Bose SoundSport Headphones,1,99.99,2019-12-07 19:26:00,806 Willow St, Los Angeles,CA,90001 +312429,Bose SoundSport Headphones,1,99.99,2019-12-28 17:39:00,706 Jefferson St, Atlanta,GA,30301 +312430,Google Phone,1,600.0,2019-12-15 00:56:00,117 Church St, Seattle,WA,98101 +312431,Wired Headphones,1,11.99,2019-12-13 06:50:00,141 Lincoln St, New York City,NY,10001 +312431,34in Ultrawide Monitor,1,379.99,2019-12-13 06:50:00,141 Lincoln St, New York City,NY,10001 +312432,Bose SoundSport Headphones,1,99.99,2019-12-20 10:36:00,477 Cedar St, Seattle,WA,98101 +312433,Lightning Charging Cable,1,14.95,2019-12-01 07:44:00,956 Lincoln St, Seattle,WA,98101 +312434,Apple Airpods Headphones,1,150.0,2019-12-20 09:55:00,528 6th St, San Francisco,CA,94016 +312435,34in Ultrawide Monitor,1,379.99,2019-12-28 20:12:00,324 Johnson St, San Francisco,CA,94016 +312436,Lightning Charging Cable,1,14.95,2019-12-07 11:59:00,767 North St, San Francisco,CA,94016 +312437,AA Batteries (4-pack),1,3.84,2019-12-16 20:20:00,393 Johnson St, New York City,NY,10001 +312438,Google Phone,1,600.0,2019-12-09 17:26:00,190 Hickory St, Los Angeles,CA,90001 +312438,Wired Headphones,1,11.99,2019-12-09 17:26:00,190 Hickory St, Los Angeles,CA,90001 +312439,Wired Headphones,1,11.99,2019-12-24 09:55:00,706 Jefferson St, New York City,NY,10001 +312440,Bose SoundSport Headphones,1,99.99,2019-12-25 13:01:00,858 Lake St, Boston,MA,02215 +312441,AA Batteries (4-pack),1,3.84,2019-12-15 10:58:00,575 Hill St, Los Angeles,CA,90001 +312442,AA Batteries (4-pack),1,3.84,2019-12-01 14:40:00,105 14th St, San Francisco,CA,94016 +312443,Apple Airpods Headphones,1,150.0,2019-12-26 10:19:00,353 Park St, Los Angeles,CA,90001 +312444,Bose SoundSport Headphones,1,99.99,2019-12-18 22:17:00,621 Jackson St, Portland,OR,97035 +312445,AAA Batteries (4-pack),1,2.99,2019-12-29 05:30:00,480 Dogwood St, San Francisco,CA,94016 +312446,AA Batteries (4-pack),1,3.84,2019-12-23 12:58:00,567 6th St, Atlanta,GA,30301 +312447,AA Batteries (4-pack),1,3.84,2019-12-21 15:40:00,245 Dogwood St, Los Angeles,CA,90001 +312448,Apple Airpods Headphones,1,150.0,2019-12-08 11:12:00,497 Chestnut St, Atlanta,GA,30301 +312449,AA Batteries (4-pack),2,3.84,2019-12-27 02:26:00,497 11th St, Boston,MA,02215 +312450,27in 4K Gaming Monitor,1,389.99,2019-12-18 14:16:00,14 Lake St, Boston,MA,02215 +312451,Apple Airpods Headphones,1,150.0,2019-12-13 12:16:00,293 Forest St, Dallas,TX,75001 +312452,USB-C Charging Cable,1,11.95,2019-12-05 10:24:00,161 Park St, Dallas,TX,75001 +312453,Flatscreen TV,1,300.0,2019-12-02 11:08:00,662 Cherry St, Atlanta,GA,30301 +312454,AAA Batteries (4-pack),3,2.99,2019-12-15 11:26:00,332 Church St, Boston,MA,02215 +312455,27in FHD Monitor,1,149.99,2019-12-03 07:44:00,460 11th St, San Francisco,CA,94016 +312456,Bose SoundSport Headphones,1,99.99,2019-12-15 13:45:00,421 Main St, Portland,OR,97035 +312457,Bose SoundSport Headphones,1,99.99,2019-12-02 11:54:00,932 Church St, San Francisco,CA,94016 +312458,Wired Headphones,1,11.99,2019-12-23 11:22:00,44 Cherry St, New York City,NY,10001 +312459,Flatscreen TV,1,300.0,2019-12-28 17:44:00,201 Highland St, Austin,TX,73301 +312460,Bose SoundSport Headphones,1,99.99,2019-12-03 09:42:00,185 Chestnut St, Seattle,WA,98101 +312461,27in FHD Monitor,1,149.99,2019-12-12 23:06:00,749 Jefferson St, San Francisco,CA,94016 +312462,iPhone,1,700.0,2019-12-08 13:19:00,210 Spruce St, San Francisco,CA,94016 +312462,Lightning Charging Cable,1,14.95,2019-12-08 13:19:00,210 Spruce St, San Francisco,CA,94016 +312462,Apple Airpods Headphones,2,150.0,2019-12-08 13:19:00,210 Spruce St, San Francisco,CA,94016 +312462,Wired Headphones,1,11.99,2019-12-08 13:19:00,210 Spruce St, San Francisco,CA,94016 +312463,AA Batteries (4-pack),1,3.84,2019-12-31 11:56:00,99 Pine St, New York City,NY,10001 +312464,Lightning Charging Cable,1,14.95,2019-12-24 08:33:00,241 Ridge St, Seattle,WA,98101 +312465,Macbook Pro Laptop,1,1700.0,2019-12-23 15:00:00,618 1st St, Atlanta,GA,30301 +312466,AAA Batteries (4-pack),1,2.99,2019-12-08 13:22:00,872 Cedar St, Boston,MA,02215 +312467,27in 4K Gaming Monitor,1,389.99,2019-12-16 21:09:00,588 8th St, San Francisco,CA,94016 +312468,USB-C Charging Cable,1,11.95,2019-12-28 19:54:00,632 Forest St, San Francisco,CA,94016 +312469,USB-C Charging Cable,1,11.95,2019-12-18 21:39:00,699 Lincoln St, Dallas,TX,75001 +312470,Bose SoundSport Headphones,1,99.99,2019-12-13 21:03:00,229 Washington St, Portland,OR,97035 +312471,AAA Batteries (4-pack),1,2.99,2019-12-11 19:34:00,334 Church St, Atlanta,GA,30301 +312472,Bose SoundSport Headphones,1,99.99,2019-12-24 19:48:00,407 Madison St, San Francisco,CA,94016 +312473,AA Batteries (4-pack),1,3.84,2019-12-18 15:31:00,909 Washington St, Los Angeles,CA,90001 +312474,Lightning Charging Cable,1,14.95,2019-12-19 21:16:00,314 Dogwood St, Los Angeles,CA,90001 +312475,AA Batteries (4-pack),1,3.84,2019-12-14 19:23:00,654 Center St, San Francisco,CA,94016 +312476,AAA Batteries (4-pack),1,2.99,2019-12-29 19:14:00,300 11th St, San Francisco,CA,94016 +312477,27in 4K Gaming Monitor,1,389.99,2019-12-18 17:27:00,509 Lake St, Boston,MA,02215 +312478,Wired Headphones,1,11.99,2019-12-31 23:17:00,837 14th St, Boston,MA,02215 +312479,AAA Batteries (4-pack),1,2.99,2019-12-17 10:45:00,121 7th St, Austin,TX,73301 +312480,Google Phone,1,600.0,2019-12-20 16:40:00,442 8th St, New York City,NY,10001 +312481,Google Phone,1,600.0,2019-12-30 11:04:00,282 Hickory St, Atlanta,GA,30301 +312482,34in Ultrawide Monitor,1,379.99,2019-12-18 06:48:00,697 Jefferson St, Dallas,TX,75001 +312483,Wired Headphones,1,11.99,2019-12-13 16:01:00,636 Park St, Los Angeles,CA,90001 +312484,34in Ultrawide Monitor,1,379.99,2019-12-11 19:39:00,197 Wilson St, New York City,NY,10001 +312485,USB-C Charging Cable,1,11.95,2019-12-13 13:25:00,702 Dogwood St, San Francisco,CA,94016 +312486,20in Monitor,1,109.99,2019-12-14 23:40:00,405 10th St, Los Angeles,CA,90001 +312487,AAA Batteries (4-pack),1,2.99,2019-12-26 08:44:00,744 Jackson St, Seattle,WA,98101 +312488,USB-C Charging Cable,1,11.95,2019-12-27 18:26:00,148 Chestnut St, New York City,NY,10001 +312489,Lightning Charging Cable,1,14.95,2019-12-05 11:01:00,858 4th St, Los Angeles,CA,90001 +312490,Wired Headphones,1,11.99,2019-12-31 20:14:00,520 2nd St, Atlanta,GA,30301 +312491,iPhone,1,700.0,2019-12-27 23:34:00,759 West St, San Francisco,CA,94016 +312492,AAA Batteries (4-pack),1,2.99,2019-12-02 12:24:00,611 Sunset St, San Francisco,CA,94016 +312493,Apple Airpods Headphones,1,150.0,2019-12-02 18:16:00,730 Chestnut St, Seattle,WA,98101 +312494,AAA Batteries (4-pack),1,2.99,2019-12-14 18:18:00,631 Meadow St, Dallas,TX,75001 +312495,Bose SoundSport Headphones,1,99.99,2019-12-22 19:17:00,331 Meadow St, San Francisco,CA,94016 +312496,Lightning Charging Cable,1,14.95,2019-12-25 13:02:00,963 North St, San Francisco,CA,94016 +312497,AAA Batteries (4-pack),5,2.99,2019-12-13 22:27:00,557 1st St, San Francisco,CA,94016 +312498,USB-C Charging Cable,1,11.95,2019-12-22 18:39:00,981 8th St, Los Angeles,CA,90001 +312499,Wired Headphones,1,11.99,2019-12-23 16:59:00,78 Hickory St, San Francisco,CA,94016 +312500,USB-C Charging Cable,1,11.95,2019-12-27 10:06:00,939 Church St, Dallas,TX,75001 +312501,Bose SoundSport Headphones,1,99.99,2019-12-18 19:11:00,448 Meadow St, San Francisco,CA,94016 +312502,ThinkPad Laptop,1,999.99,2019-12-07 14:09:00,817 Maple St, Austin,TX,73301 +312503,Apple Airpods Headphones,1,150.0,2019-12-30 15:50:00,528 Lakeview St, San Francisco,CA,94016 +312504,Apple Airpods Headphones,1,150.0,2019-12-14 18:31:00,275 5th St, San Francisco,CA,94016 +312505,Lightning Charging Cable,1,14.95,2019-12-04 19:46:00,768 14th St, Boston,MA,02215 +312506,Lightning Charging Cable,1,14.95,2019-12-30 20:01:00,976 11th St, New York City,NY,10001 +312507,ThinkPad Laptop,1,999.99,2019-12-06 12:05:00,686 Maple St, San Francisco,CA,94016 +312508,ThinkPad Laptop,1,999.99,2019-12-16 20:59:00,695 8th St, Portland,OR,97035 +312509,AA Batteries (4-pack),1,3.84,2019-12-20 11:03:00,535 Pine St, San Francisco,CA,94016 +312510,USB-C Charging Cable,1,11.95,2019-12-18 17:54:00,247 9th St, Seattle,WA,98101 +312511,AAA Batteries (4-pack),2,2.99,2019-12-05 12:26:00,64 Hill St, Los Angeles,CA,90001 +312512,Bose SoundSport Headphones,1,99.99,2019-12-05 23:36:00,808 8th St, Seattle,WA,98101 +312512,AAA Batteries (4-pack),3,2.99,2019-12-05 23:36:00,808 8th St, Seattle,WA,98101 +312513,27in FHD Monitor,1,149.99,2019-12-24 13:04:00,56 7th St, Boston,MA,02215 +312514,AA Batteries (4-pack),1,3.84,2019-12-11 16:21:00,409 7th St, Seattle,WA,98101 +312515,Macbook Pro Laptop,1,1700.0,2019-12-09 07:11:00,639 Highland St, San Francisco,CA,94016 +312516,Wired Headphones,1,11.99,2019-12-02 23:56:00,549 Madison St, New York City,NY,10001 +312517,AAA Batteries (4-pack),1,2.99,2019-12-17 13:50:00,926 Center St, Seattle,WA,98101 +312518,AAA Batteries (4-pack),2,2.99,2019-12-11 13:30:00,174 Chestnut St, Seattle,WA,98101 +312519,AAA Batteries (4-pack),1,2.99,2019-12-22 22:15:00,57 Cherry St, New York City,NY,10001 +312520,Lightning Charging Cable,1,14.95,2019-12-27 12:31:00,995 Johnson St, Seattle,WA,98101 +312521,AAA Batteries (4-pack),1,2.99,2019-12-17 08:41:00,772 Main St, Los Angeles,CA,90001 +312522,Google Phone,1,600.0,2019-12-31 20:49:00,240 Washington St, Seattle,WA,98101 +312523,Lightning Charging Cable,1,14.95,2019-12-31 13:45:00,94 12th St, San Francisco,CA,94016 +312524,27in FHD Monitor,1,149.99,2019-12-25 11:19:00,802 Cedar St, Atlanta,GA,30301 +312525,Bose SoundSport Headphones,1,99.99,2019-12-06 22:29:00,790 West St, San Francisco,CA,94016 +312526,AA Batteries (4-pack),2,3.84,2019-12-23 09:21:00,823 7th St, Boston,MA,02215 +312527,27in FHD Monitor,1,149.99,2019-12-09 17:12:00,122 7th St, Boston,MA,02215 +312528,USB-C Charging Cable,1,11.95,2019-12-16 10:25:00,980 Hickory St, Seattle,WA,98101 +312529,Bose SoundSport Headphones,1,99.99,2019-12-28 16:19:00,776 Hickory St, San Francisco,CA,94016 +312530,AA Batteries (4-pack),1,3.84,2019-12-22 11:54:00,864 Center St, Boston,MA,02215 +312531,Lightning Charging Cable,1,14.95,2019-12-15 23:53:00,481 Elm St, Atlanta,GA,30301 +312532,Bose SoundSport Headphones,1,99.99,2019-12-26 06:43:00,115 Pine St, San Francisco,CA,94016 +312532,AAA Batteries (4-pack),1,2.99,2019-12-26 06:43:00,115 Pine St, San Francisco,CA,94016 +312533,USB-C Charging Cable,1,11.95,2019-12-23 18:10:00,777 West St, Los Angeles,CA,90001 +312534,34in Ultrawide Monitor,1,379.99,2019-12-17 20:46:00,688 14th St, Boston,MA,02215 +312535,27in 4K Gaming Monitor,1,389.99,2019-12-19 13:25:00,198 7th St, Los Angeles,CA,90001 +312536,Wired Headphones,1,11.99,2019-12-20 12:37:00,313 Madison St, San Francisco,CA,94016 +312537,27in 4K Gaming Monitor,1,389.99,2019-12-14 01:18:00,417 13th St, New York City,NY,10001 +312538,Google Phone,1,600.0,2019-12-19 22:05:00,413 Meadow St, San Francisco,CA,94016 +312539,AAA Batteries (4-pack),1,2.99,2019-12-23 20:38:00,608 1st St, Boston,MA,02215 +312540,Lightning Charging Cable,1,14.95,2019-12-02 17:17:00,59 Chestnut St, Seattle,WA,98101 +312541,27in 4K Gaming Monitor,1,389.99,2019-12-21 10:02:00,547 11th St, Los Angeles,CA,90001 +312542,Wired Headphones,1,11.99,2019-12-19 08:17:00,57 Forest St, Seattle,WA,98101 +312543,USB-C Charging Cable,1,11.95,2019-12-26 12:51:00,790 Elm St, Los Angeles,CA,90001 +312544,Apple Airpods Headphones,1,150.0,2019-12-17 10:51:00,997 Park St, Boston,MA,02215 +312544,AAA Batteries (4-pack),2,2.99,2019-12-17 10:51:00,997 Park St, Boston,MA,02215 +312545,Lightning Charging Cable,1,14.95,2019-12-29 10:06:00,150 4th St, Boston,MA,02215 +312546,Apple Airpods Headphones,1,150.0,2019-12-19 11:41:00,26 Adams St, New York City,NY,10001 +312547,USB-C Charging Cable,1,11.95,2019-12-26 21:05:00,683 Cherry St, Los Angeles,CA,90001 +312548,27in 4K Gaming Monitor,1,389.99,2019-12-21 17:00:00,530 Johnson St, Austin,TX,73301 +312549,Apple Airpods Headphones,1,150.0,2019-12-27 20:32:00,511 Lincoln St, San Francisco,CA,94016 +312550,27in 4K Gaming Monitor,1,389.99,2019-12-07 16:41:00,62 Forest St, Seattle,WA,98101 +312551,Wired Headphones,1,11.99,2019-12-28 10:26:00,959 Lakeview St, San Francisco,CA,94016 +312552,USB-C Charging Cable,1,11.95,2019-12-31 20:01:00,956 Elm St, Los Angeles,CA,90001 +312553,Apple Airpods Headphones,1,150.0,2019-12-20 14:51:00,705 South St, San Francisco,CA,94016 +312554,AAA Batteries (4-pack),1,2.99,2019-12-31 04:44:00,886 7th St, Dallas,TX,75001 +312555,AA Batteries (4-pack),1,3.84,2019-12-04 15:07:00,767 Johnson St, Austin,TX,73301 +312556,Lightning Charging Cable,1,14.95,2019-12-23 19:21:00,80 Walnut St, Seattle,WA,98101 +312557,LG Dryer,1,600.0,2019-12-02 08:22:00,560 13th St, Seattle,WA,98101 +312558,AAA Batteries (4-pack),1,2.99,2019-12-29 00:59:00,29 5th St, San Francisco,CA,94016 +312559,AA Batteries (4-pack),1,3.84,2019-12-16 10:46:00,750 West St, New York City,NY,10001 +312560,AAA Batteries (4-pack),1,2.99,2019-12-27 11:03:00,328 Hickory St, Seattle,WA,98101 +312561,USB-C Charging Cable,1,11.95,2019-12-24 11:34:00,172 Walnut St, San Francisco,CA,94016 +312562,AA Batteries (4-pack),2,3.84,2019-12-18 20:27:00,549 Meadow St, Los Angeles,CA,90001 +312563,USB-C Charging Cable,1,11.95,2019-12-03 12:53:00,530 Walnut St, New York City,NY,10001 +312564,AA Batteries (4-pack),1,3.84,2019-12-17 01:08:00,369 Lakeview St, San Francisco,CA,94016 +312565,Google Phone,1,600.0,2019-12-07 18:08:00,570 8th St, San Francisco,CA,94016 +312566,27in 4K Gaming Monitor,1,389.99,2019-12-24 09:26:00,8 Adams St, Los Angeles,CA,90001 +312567,Macbook Pro Laptop,1,1700.0,2019-12-04 19:18:00,558 Willow St, New York City,NY,10001 +312568,AAA Batteries (4-pack),1,2.99,2019-12-23 19:38:00,818 Dogwood St, Los Angeles,CA,90001 +312569,AAA Batteries (4-pack),2,2.99,2019-12-29 16:28:00,749 North St, Los Angeles,CA,90001 +312570,iPhone,1,700.0,2019-12-04 14:55:00,89 Cherry St, Seattle,WA,98101 +312571,27in FHD Monitor,1,149.99,2019-12-21 12:15:00,418 Main St, Seattle,WA,98101 +312572,Apple Airpods Headphones,1,150.0,2019-12-08 20:12:00,601 Adams St, Boston,MA,02215 +312573,AA Batteries (4-pack),2,3.84,2019-12-06 13:10:00,484 Forest St, San Francisco,CA,94016 +312574,USB-C Charging Cable,2,11.95,2019-12-13 22:42:00,571 Church St, Los Angeles,CA,90001 +312575,Flatscreen TV,1,300.0,2019-12-13 18:49:00,739 Wilson St, New York City,NY,10001 +312576,USB-C Charging Cable,1,11.95,2019-12-13 14:37:00,796 Cedar St, Dallas,TX,75001 +312577,34in Ultrawide Monitor,1,379.99,2019-12-14 10:38:00,697 Park St, New York City,NY,10001 +312578,Wired Headphones,1,11.99,2019-12-10 17:27:00,575 Pine St, San Francisco,CA,94016 +312579,Lightning Charging Cable,1,14.95,2019-12-11 09:17:00,75 Jackson St, Atlanta,GA,30301 +312580,Bose SoundSport Headphones,1,99.99,2019-12-30 13:31:00,485 Cedar St, Boston,MA,02215 +312581,Wired Headphones,1,11.99,2019-12-25 09:42:00,920 Park St, Dallas,TX,75001 +312582,USB-C Charging Cable,2,11.95,2019-12-12 16:39:00,697 Johnson St, San Francisco,CA,94016 +312583,AA Batteries (4-pack),1,3.84,2019-12-11 09:17:00,500 4th St, Boston,MA,02215 +312584,Lightning Charging Cable,1,14.95,2019-12-29 22:44:00,340 10th St, New York City,NY,10001 +312585,Apple Airpods Headphones,1,150.0,2019-12-17 10:18:00,840 River St, Seattle,WA,98101 +312586,27in 4K Gaming Monitor,1,389.99,2019-12-27 21:42:00,749 South St, New York City,NY,10001 +312587,Bose SoundSport Headphones,1,99.99,2019-12-06 21:58:00,846 River St, New York City,NY,10001 +312588,Wired Headphones,1,11.99,2019-12-31 10:46:00,971 Sunset St, Portland,OR,97035 +312589,Lightning Charging Cable,1,14.95,2019-12-14 23:07:00,255 Washington St, San Francisco,CA,94016 +312590,27in 4K Gaming Monitor,1,389.99,2019-12-28 15:36:00,273 Maple St, Boston,MA,02215 +312591,Bose SoundSport Headphones,1,99.99,2019-12-30 12:27:00,420 Meadow St, Los Angeles,CA,90001 +312592,AA Batteries (4-pack),1,3.84,2019-12-11 21:48:00,734 14th St, Austin,TX,73301 +312593,USB-C Charging Cable,1,11.95,2019-12-16 22:42:00,566 South St, San Francisco,CA,94016 +312594,AA Batteries (4-pack),3,3.84,2019-12-09 06:56:00,725 Church St, Seattle,WA,98101 +312595,27in FHD Monitor,1,149.99,2019-12-22 13:54:00,3 North St, Boston,MA,02215 +312596,Wired Headphones,1,11.99,2019-12-23 11:48:00,115 South St, New York City,NY,10001 +312597,USB-C Charging Cable,1,11.95,2019-12-02 13:57:00,812 12th St, San Francisco,CA,94016 +312598,ThinkPad Laptop,1,999.99,2019-12-04 19:26:00,627 1st St, San Francisco,CA,94016 +312599,AA Batteries (4-pack),1,3.84,2019-12-07 18:35:00,13 North St, Austin,TX,73301 +312600,Apple Airpods Headphones,1,150.0,2019-12-20 13:45:00,671 Center St, Seattle,WA,98101 +312601,Apple Airpods Headphones,1,150.0,2019-12-18 14:05:00,892 Jackson St, Dallas,TX,75001 +312602,AA Batteries (4-pack),1,3.84,2019-12-16 11:24:00,659 Walnut St, Los Angeles,CA,90001 +312603,20in Monitor,1,109.99,2019-12-21 19:25:00,941 Hill St, San Francisco,CA,94016 +312604,Wired Headphones,1,11.99,2019-12-13 20:35:00,11 Wilson St, Boston,MA,02215 +312605,27in FHD Monitor,1,149.99,2019-12-18 07:15:00,131 Adams St, Seattle,WA,98101 +312606,Wired Headphones,1,11.99,2019-12-08 21:57:00,97 Chestnut St, New York City,NY,10001 +312607,Lightning Charging Cable,1,14.95,2019-12-03 14:05:00,812 Chestnut St, Boston,MA,02215 +312607,AA Batteries (4-pack),1,3.84,2019-12-03 14:05:00,812 Chestnut St, Boston,MA,02215 +312608,27in FHD Monitor,1,149.99,2019-12-23 07:20:00,581 Maple St, New York City,NY,10001 +312609,Lightning Charging Cable,1,14.95,2019-12-30 07:49:00,898 Park St, San Francisco,CA,94016 +312610,Google Phone,1,600.0,2019-12-19 01:06:00,202 12th St, Los Angeles,CA,90001 +312611,AA Batteries (4-pack),1,3.84,2019-12-01 16:37:00,184 Hill St, Dallas,TX,75001 +312612,Apple Airpods Headphones,1,150.0,2019-12-26 12:31:00,986 Cedar St, Seattle,WA,98101 +312613,iPhone,1,700.0,2019-12-22 18:02:00,977 Maple St, San Francisco,CA,94016 +312614,AA Batteries (4-pack),2,3.84,2019-12-13 00:27:00,741 Adams St, Boston,MA,02215 +312615,iPhone,1,700.0,2019-12-30 19:53:00,146 12th St, Dallas,TX,75001 +312616,AAA Batteries (4-pack),1,2.99,2019-12-25 09:13:00,710 5th St, Seattle,WA,98101 +312617,Lightning Charging Cable,1,14.95,2019-12-25 14:35:00,79 10th St, Atlanta,GA,30301 +312618,Lightning Charging Cable,1,14.95,2019-12-03 17:34:00,747 10th St, San Francisco,CA,94016 +312619,AAA Batteries (4-pack),1,2.99,2019-12-21 07:33:00,594 Church St, San Francisco,CA,94016 +312620,27in FHD Monitor,1,149.99,2019-12-08 15:21:00,165 4th St, New York City,NY,10001 +312621,Bose SoundSport Headphones,1,99.99,2019-12-21 10:06:00,961 South St, San Francisco,CA,94016 +312622,iPhone,1,700.0,2019-12-19 18:30:00,544 Walnut St, San Francisco,CA,94016 +312623,27in 4K Gaming Monitor,1,389.99,2019-12-30 23:58:00,946 Maple St, San Francisco,CA,94016 +312624,Flatscreen TV,1,300.0,2019-12-14 09:38:00,993 West St, Portland,OR,97035 +312625,AAA Batteries (4-pack),2,2.99,2019-12-12 11:50:00,826 Hickory St, San Francisco,CA,94016 +312626,iPhone,1,700.0,2019-12-12 16:50:00,938 Adams St, Boston,MA,02215 +312626,Lightning Charging Cable,1,14.95,2019-12-12 16:50:00,938 Adams St, Boston,MA,02215 +312627,AAA Batteries (4-pack),1,2.99,2019-12-08 12:25:00,167 Adams St, San Francisco,CA,94016 +312628,Apple Airpods Headphones,1,150.0,2019-12-02 05:34:00,36 Lakeview St, Los Angeles,CA,90001 +312629,AA Batteries (4-pack),2,3.84,2019-12-15 14:48:00,548 9th St, New York City,NY,10001 +312630,Wired Headphones,1,11.99,2019-12-11 01:52:00,266 Adams St, Boston,MA,02215 +312631,USB-C Charging Cable,1,11.95,2019-12-08 08:35:00,569 10th St, Los Angeles,CA,90001 +312632,Apple Airpods Headphones,1,150.0,2019-12-04 01:00:00,67 11th St, New York City,NY,10001 +312633,Lightning Charging Cable,1,14.95,2019-12-16 12:07:00,252 Highland St, Dallas,TX,75001 +312634,Wired Headphones,1,11.99,2019-12-13 19:05:00,671 Cherry St, Boston,MA,02215 +312635,Vareebadd Phone,1,400.0,2019-12-31 09:38:00,85 Dogwood St, Dallas,TX,75001 +312635,Bose SoundSport Headphones,1,99.99,2019-12-31 09:38:00,85 Dogwood St, Dallas,TX,75001 +312636,AAA Batteries (4-pack),1,2.99,2019-12-12 19:17:00,753 Main St, Boston,MA,02215 +312637,20in Monitor,1,109.99,2019-12-10 11:06:00,31 Cedar St, New York City,NY,10001 +312638,USB-C Charging Cable,1,11.95,2019-12-26 14:13:00,817 8th St, New York City,NY,10001 +312639,Bose SoundSport Headphones,1,99.99,2019-12-16 14:49:00,767 Lincoln St, San Francisco,CA,94016 +312640,AAA Batteries (4-pack),1,2.99,2019-12-27 14:15:00,287 Dogwood St, San Francisco,CA,94016 +312641,AA Batteries (4-pack),1,3.84,2019-12-26 10:34:00,977 Madison St, Portland,OR,97035 +312642,Macbook Pro Laptop,1,1700.0,2019-12-17 13:38:00,808 Lake St, Seattle,WA,98101 +312643,AA Batteries (4-pack),1,3.84,2019-12-19 12:36:00,102 Wilson St, Dallas,TX,75001 +312644,AA Batteries (4-pack),1,3.84,2019-12-11 12:23:00,631 Church St, Portland,ME,04101 +312645,Apple Airpods Headphones,1,150.0,2019-12-05 14:42:00,469 Sunset St, Los Angeles,CA,90001 +312646,AA Batteries (4-pack),1,3.84,2019-12-17 21:31:00,684 Hill St, San Francisco,CA,94016 +312647,Wired Headphones,1,11.99,2019-12-20 13:07:00,959 South St, Atlanta,GA,30301 +312648,ThinkPad Laptop,1,999.99,2019-12-09 10:43:00,783 Elm St, Dallas,TX,75001 +312649,AA Batteries (4-pack),1,3.84,2019-12-20 12:04:00,625 7th St, San Francisco,CA,94016 +312650,AA Batteries (4-pack),2,3.84,2019-12-19 10:23:00,829 Dogwood St, Austin,TX,73301 +312651,Lightning Charging Cable,1,14.95,2019-12-26 09:34:00,460 Wilson St, Austin,TX,73301 +312652,AA Batteries (4-pack),1,3.84,2019-12-03 15:02:00,843 Walnut St, Dallas,TX,75001 +312653,34in Ultrawide Monitor,1,379.99,2019-12-24 21:14:00,28 Main St, New York City,NY,10001 +312654,iPhone,1,700.0,2019-12-08 16:47:00,861 11th St, Boston,MA,02215 +312655,Flatscreen TV,1,300.0,2019-12-31 07:41:00,261 6th St, New York City,NY,10001 +312656,AA Batteries (4-pack),1,3.84,2019-12-30 10:07:00,557 9th St, Atlanta,GA,30301 +312657,iPhone,1,700.0,2019-12-29 14:37:00,289 Chestnut St, Austin,TX,73301 +312657,Wired Headphones,1,11.99,2019-12-29 14:37:00,289 Chestnut St, Austin,TX,73301 +312658,AAA Batteries (4-pack),2,2.99,2019-12-02 13:47:00,507 Washington St, San Francisco,CA,94016 +312659,Lightning Charging Cable,1,14.95,2019-12-19 11:07:00,8 Elm St, Boston,MA,02215 +312660,Lightning Charging Cable,2,14.95,2019-12-19 23:50:00,973 West St, Boston,MA,02215 +312661,Google Phone,1,600.0,2019-12-06 10:55:00,545 Lake St, San Francisco,CA,94016 +312662,AAA Batteries (4-pack),2,2.99,2019-12-17 19:13:00,765 9th St, San Francisco,CA,94016 +312663,USB-C Charging Cable,2,11.95,2019-12-28 08:56:00,68 Maple St, Austin,TX,73301 +312664,USB-C Charging Cable,2,11.95,2019-12-16 05:11:00,361 Main St, San Francisco,CA,94016 +312665,Wired Headphones,1,11.99,2019-12-28 18:08:00,881 4th St, Dallas,TX,75001 +312666,AAA Batteries (4-pack),2,2.99,2019-12-19 16:52:00,326 Jefferson St, San Francisco,CA,94016 +312667,LG Washing Machine,1,600.0,2019-12-15 11:17:00,924 Ridge St, Boston,MA,02215 +312668,Google Phone,1,600.0,2019-12-27 12:56:00,437 Walnut St, Boston,MA,02215 +312669,USB-C Charging Cable,1,11.95,2019-12-09 20:06:00,54 Meadow St, Boston,MA,02215 +312670,Lightning Charging Cable,1,14.95,2019-12-14 08:45:00,333 Cedar St, New York City,NY,10001 +312671,USB-C Charging Cable,1,11.95,2019-12-10 18:45:00,448 River St, San Francisco,CA,94016 +312672,USB-C Charging Cable,1,11.95,2019-12-22 06:38:00,620 Lincoln St, New York City,NY,10001 +312673,Macbook Pro Laptop,1,1700.0,2019-12-10 23:01:00,450 Lakeview St, Portland,OR,97035 +312674,Bose SoundSport Headphones,1,99.99,2019-12-25 23:48:00,744 13th St, Dallas,TX,75001 +312675,Lightning Charging Cable,2,14.95,2019-12-23 18:56:00,88 Ridge St, Dallas,TX,75001 +312676,Apple Airpods Headphones,1,150.0,2019-12-31 16:44:00,146 West St, Portland,ME,04101 +312677,Lightning Charging Cable,1,14.95,2019-12-02 15:16:00,794 Wilson St, Dallas,TX,75001 +312678,AAA Batteries (4-pack),1,2.99,2019-12-29 19:16:00,390 Johnson St, San Francisco,CA,94016 +312679,Wired Headphones,1,11.99,2019-12-01 10:29:00,468 Jefferson St, Atlanta,GA,30301 +312680,AAA Batteries (4-pack),1,2.99,2019-12-06 10:10:00,792 South St, Portland,OR,97035 +312681,Lightning Charging Cable,1,14.95,2019-12-14 16:22:00,883 Hill St, New York City,NY,10001 +312682,AA Batteries (4-pack),1,3.84,2019-12-02 17:34:00,267 Pine St, Boston,MA,02215 +312683,34in Ultrawide Monitor,1,379.99,2019-12-22 10:18:00,893 4th St, San Francisco,CA,94016 +312684,Bose SoundSport Headphones,1,99.99,2019-12-23 09:14:00,540 Hickory St, Seattle,WA,98101 +312685,Flatscreen TV,1,300.0,2019-12-02 12:52:00,13 Lakeview St, San Francisco,CA,94016 +312686,Bose SoundSport Headphones,1,99.99,2019-12-26 23:36:00,485 Highland St, Los Angeles,CA,90001 +312687,Lightning Charging Cable,1,14.95,2019-12-23 13:48:00,525 North St, Dallas,TX,75001 +312688,27in FHD Monitor,1,149.99,2019-12-25 17:14:00,751 West St, Boston,MA,02215 +312689,AAA Batteries (4-pack),1,2.99,2019-12-25 00:17:00,691 Willow St, Atlanta,GA,30301 +312690,AA Batteries (4-pack),2,3.84,2019-12-31 10:15:00,575 Highland St, Boston,MA,02215 +312691,AAA Batteries (4-pack),1,2.99,2019-12-20 20:43:00,868 Cedar St, New York City,NY,10001 +312692,20in Monitor,1,109.99,2019-12-21 19:31:00,223 Lakeview St, San Francisco,CA,94016 +312693,USB-C Charging Cable,1,11.95,2019-12-15 22:06:00,188 Ridge St, Los Angeles,CA,90001 +312694,AA Batteries (4-pack),1,3.84,2019-12-17 20:17:00,171 Maple St, Portland,OR,97035 +312695,AAA Batteries (4-pack),1,2.99,2019-12-16 12:24:00,217 1st St, Los Angeles,CA,90001 +312696,AAA Batteries (4-pack),2,2.99,2019-12-06 19:21:00,827 South St, Portland,OR,97035 +312697,Lightning Charging Cable,1,14.95,2019-12-10 19:15:00,401 Center St, Seattle,WA,98101 +312698,AA Batteries (4-pack),1,3.84,2019-12-01 13:02:00,826 Chestnut St, Atlanta,GA,30301 +312699,iPhone,1,700.0,2019-12-11 18:50:00,163 North St, Seattle,WA,98101 +312700,Flatscreen TV,1,300.0,2019-12-29 22:01:00,212 Lake St, Austin,TX,73301 +312701,USB-C Charging Cable,1,11.95,2019-12-12 11:02:00,791 Lincoln St, Dallas,TX,75001 +312702,27in 4K Gaming Monitor,1,389.99,2019-12-13 14:45:00,686 Spruce St, Dallas,TX,75001 +312703,Lightning Charging Cable,1,14.95,2019-12-23 17:56:00,395 13th St, San Francisco,CA,94016 +312704,AAA Batteries (4-pack),1,2.99,2019-12-16 16:53:00,874 Chestnut St, Dallas,TX,75001 +312705,Apple Airpods Headphones,1,150.0,2019-12-05 21:28:00,658 Forest St, San Francisco,CA,94016 +312706,AA Batteries (4-pack),1,3.84,2019-12-06 00:18:00,794 4th St, Dallas,TX,75001 +312707,Apple Airpods Headphones,1,150.0,2019-12-03 00:11:00,402 Willow St, Seattle,WA,98101 +312708,USB-C Charging Cable,1,11.95,2019-12-05 15:51:00,584 Highland St, New York City,NY,10001 +312709,Apple Airpods Headphones,1,150.0,2019-12-21 22:07:00,81 5th St, San Francisco,CA,94016 +312710,AA Batteries (4-pack),1,3.84,2019-12-20 15:48:00,593 5th St, New York City,NY,10001 +312711,AA Batteries (4-pack),1,3.84,2019-12-06 09:12:00,836 4th St, San Francisco,CA,94016 +312712,AA Batteries (4-pack),1,3.84,2019-12-06 17:51:00,461 1st St, Seattle,WA,98101 +312713,Lightning Charging Cable,1,14.95,2019-12-29 14:41:00,191 Lakeview St, Austin,TX,73301 +312714,AAA Batteries (4-pack),1,2.99,2019-12-05 10:42:00,599 10th St, San Francisco,CA,94016 +312715,34in Ultrawide Monitor,1,379.99,2019-12-01 11:49:00,359 Pine St, New York City,NY,10001 +312716,Wired Headphones,1,11.99,2019-12-19 15:34:00,497 Madison St, Atlanta,GA,30301 +312717,Lightning Charging Cable,1,14.95,2019-12-25 19:41:00,371 Johnson St, San Francisco,CA,94016 +312718,27in 4K Gaming Monitor,1,389.99,2019-12-23 14:11:00,174 Willow St, New York City,NY,10001 +312719,Bose SoundSport Headphones,1,99.99,2019-12-03 09:29:00,870 Ridge St, San Francisco,CA,94016 +312720,iPhone,1,700.0,2019-12-28 14:50:00,43 Ridge St, Dallas,TX,75001 +312720,Wired Headphones,3,11.99,2019-12-28 14:50:00,43 Ridge St, Dallas,TX,75001 +312721,Lightning Charging Cable,1,14.95,2019-12-17 09:48:00,519 4th St, Boston,MA,02215 +312722,Lightning Charging Cable,1,14.95,2019-12-16 19:13:00,170 Jefferson St, Dallas,TX,75001 +312723,ThinkPad Laptop,1,999.99,2019-12-29 14:47:00,526 Walnut St, Seattle,WA,98101 +312724,Bose SoundSport Headphones,1,99.99,2019-12-01 22:36:00,587 9th St, Los Angeles,CA,90001 +312725,AAA Batteries (4-pack),1,2.99,2019-12-18 19:49:00,684 North St, New York City,NY,10001 +312726,34in Ultrawide Monitor,1,379.99,2019-12-15 19:36:00,123 Cherry St, Boston,MA,02215 +312727,AA Batteries (4-pack),1,3.84,2019-12-24 14:30:00,662 4th St, San Francisco,CA,94016 +312728,Google Phone,1,600.0,2019-12-13 15:36:00,287 Jackson St, San Francisco,CA,94016 +312729,AA Batteries (4-pack),1,3.84,2019-12-31 10:44:00,654 Ridge St, San Francisco,CA,94016 +312730,Bose SoundSport Headphones,1,99.99,2019-12-13 23:44:00,700 Washington St, Atlanta,GA,30301 +312731,Bose SoundSport Headphones,1,99.99,2019-12-11 15:50:00,927 Cedar St, San Francisco,CA,94016 +312732,AAA Batteries (4-pack),2,2.99,2019-12-18 22:04:00,327 Main St, Dallas,TX,75001 +312733,20in Monitor,1,109.99,2019-12-02 16:17:00,330 13th St, Boston,MA,02215 +312734,Lightning Charging Cable,1,14.95,2019-12-29 20:12:00,378 Sunset St, San Francisco,CA,94016 +312735,27in 4K Gaming Monitor,1,389.99,2019-12-11 12:41:00,567 Elm St, Los Angeles,CA,90001 +312736,AA Batteries (4-pack),1,3.84,2019-12-19 15:10:00,952 8th St, Dallas,TX,75001 +312737,AA Batteries (4-pack),1,3.84,2019-12-09 12:39:00,411 6th St, Atlanta,GA,30301 +312738,USB-C Charging Cable,2,11.95,2019-12-17 09:41:00,315 6th St, New York City,NY,10001 +312739,Lightning Charging Cable,1,14.95,2019-12-15 14:48:00,323 14th St, Portland,OR,97035 +312740,Lightning Charging Cable,1,14.95,2019-12-05 18:04:00,930 5th St, Dallas,TX,75001 +312741,USB-C Charging Cable,1,11.95,2019-12-14 09:38:00,369 Walnut St, New York City,NY,10001 +312742,27in 4K Gaming Monitor,1,389.99,2019-12-10 19:47:00,58 10th St, Los Angeles,CA,90001 +312743,27in 4K Gaming Monitor,1,389.99,2019-12-04 10:55:00,499 Lincoln St, Dallas,TX,75001 +312744,Bose SoundSport Headphones,1,99.99,2019-12-09 09:25:00,82 Main St, Austin,TX,73301 +312745,AAA Batteries (4-pack),1,2.99,2019-12-15 15:25:00,102 Park St, Boston,MA,02215 +312746,Apple Airpods Headphones,1,150.0,2019-12-01 18:06:00,563 Pine St, Portland,OR,97035 +312747,AA Batteries (4-pack),1,3.84,2019-12-19 06:03:00,608 Madison St, Seattle,WA,98101 +312748,20in Monitor,1,109.99,2019-12-22 11:45:00,314 2nd St, Boston,MA,02215 +312749,Apple Airpods Headphones,1,150.0,2019-12-25 11:59:00,310 Meadow St, Dallas,TX,75001 +312750,USB-C Charging Cable,1,11.95,2019-12-19 23:56:00,689 Hickory St, Boston,MA,02215 +312751,AAA Batteries (4-pack),1,2.99,2019-12-06 15:34:00,982 4th St, New York City,NY,10001 +312752,Apple Airpods Headphones,1,150.0,2019-12-21 23:21:00,390 11th St, Los Angeles,CA,90001 +312753,Bose SoundSport Headphones,1,99.99,2019-12-25 14:17:00,802 South St, Boston,MA,02215 +312754,AA Batteries (4-pack),1,3.84,2019-12-08 22:06:00,468 Washington St, Austin,TX,73301 +312755,27in 4K Gaming Monitor,1,389.99,2019-12-26 19:55:00,981 North St, Los Angeles,CA,90001 +312756,27in 4K Gaming Monitor,1,389.99,2019-12-06 20:43:00,492 7th St, Dallas,TX,75001 +312757,Bose SoundSport Headphones,1,99.99,2019-12-11 10:29:00,57 Jackson St, Seattle,WA,98101 +312758,AAA Batteries (4-pack),1,2.99,2019-12-20 18:39:00,492 Jefferson St, Dallas,TX,75001 +312759,USB-C Charging Cable,1,11.95,2019-12-28 22:18:00,624 8th St, New York City,NY,10001 +312760,ThinkPad Laptop,1,999.99,2019-12-31 12:16:00,99 Jefferson St, San Francisco,CA,94016 +312761,AAA Batteries (4-pack),1,2.99,2019-12-25 13:10:00,167 Walnut St, San Francisco,CA,94016 +312762,Wired Headphones,2,11.99,2019-12-15 19:20:00,714 14th St, Seattle,WA,98101 +312763,Lightning Charging Cable,1,14.95,2019-12-10 16:30:00,170 Willow St, Seattle,WA,98101 +312764,Wired Headphones,1,11.99,2019-12-01 13:35:00,696 Maple St, Los Angeles,CA,90001 +312765,AA Batteries (4-pack),1,3.84,2019-12-10 15:26:00,400 Forest St, Boston,MA,02215 +312766,20in Monitor,1,109.99,2019-12-16 11:37:00,149 River St, Seattle,WA,98101 +312767,Bose SoundSport Headphones,1,99.99,2019-12-11 12:27:00,902 1st St, Los Angeles,CA,90001 +312768,AAA Batteries (4-pack),1,2.99,2019-12-26 10:44:00,682 North St, Seattle,WA,98101 +312769,Macbook Pro Laptop,1,1700.0,2019-12-15 07:06:00,986 7th St, Atlanta,GA,30301 +312770,AAA Batteries (4-pack),2,2.99,2019-12-26 13:45:00,384 6th St, Austin,TX,73301 +312771,Bose SoundSport Headphones,1,99.99,2019-12-14 20:12:00,271 12th St, San Francisco,CA,94016 +312772,Lightning Charging Cable,1,14.95,2019-12-17 15:27:00,164 Ridge St, San Francisco,CA,94016 +312773,Flatscreen TV,1,300.0,2019-12-30 20:08:00,986 Ridge St, Seattle,WA,98101 +312774,AAA Batteries (4-pack),2,2.99,2019-12-06 01:52:00,473 Spruce St, New York City,NY,10001 +312775,Apple Airpods Headphones,1,150.0,2019-12-27 16:20:00,976 River St, Boston,MA,02215 +312776,USB-C Charging Cable,1,11.95,2019-12-04 18:50:00,648 Ridge St, San Francisco,CA,94016 +312777,iPhone,1,700.0,2019-12-08 17:53:00,394 2nd St, San Francisco,CA,94016 +312777,Lightning Charging Cable,1,14.95,2019-12-08 17:53:00,394 2nd St, San Francisco,CA,94016 +312778,27in FHD Monitor,1,149.99,2019-12-17 11:39:00,574 11th St, Los Angeles,CA,90001 +312779,Google Phone,1,600.0,2019-12-20 10:55:00,306 Highland St, Austin,TX,73301 +312779,Wired Headphones,1,11.99,2019-12-20 10:55:00,306 Highland St, Austin,TX,73301 +312780,Wired Headphones,1,11.99,2019-12-10 17:23:00,90 River St, Boston,MA,02215 +312781,USB-C Charging Cable,1,11.95,2019-12-31 20:57:00,391 Madison St, Boston,MA,02215 +312782,USB-C Charging Cable,1,11.95,2019-12-28 10:01:00,145 Church St, Los Angeles,CA,90001 +312783,Apple Airpods Headphones,1,150.0,2019-12-14 18:31:00,580 Hickory St, San Francisco,CA,94016 +312784,Bose SoundSport Headphones,1,99.99,2019-12-24 08:56:00,904 Lake St, Los Angeles,CA,90001 +312785,27in FHD Monitor,1,149.99,2019-12-19 05:12:00,346 Center St, San Francisco,CA,94016 +312786,USB-C Charging Cable,1,11.95,2019-12-05 13:16:00,102 Cherry St, New York City,NY,10001 +312787,AAA Batteries (4-pack),1,2.99,2019-12-25 15:21:00,289 Adams St, Portland,OR,97035 +312787,Lightning Charging Cable,1,14.95,2019-12-25 15:21:00,289 Adams St, Portland,OR,97035 +312788,Bose SoundSport Headphones,1,99.99,2019-12-30 13:01:00,985 Forest St, Boston,MA,02215 +312789,Lightning Charging Cable,1,14.95,2019-12-06 15:26:00,644 Hickory St, Seattle,WA,98101 +312790,AAA Batteries (4-pack),2,2.99,2019-12-21 13:41:00,913 Church St, Austin,TX,73301 +312791,Bose SoundSport Headphones,1,99.99,2019-12-31 14:50:00,196 Forest St, San Francisco,CA,94016 +312792,Lightning Charging Cable,2,14.95,2019-12-23 19:12:00,94 Johnson St, Los Angeles,CA,90001 +312793,20in Monitor,1,109.99,2019-12-25 14:04:00,106 Cherry St, Seattle,WA,98101 +312794,USB-C Charging Cable,1,11.95,2019-12-25 02:20:00,482 Wilson St, Portland,OR,97035 +312795,AA Batteries (4-pack),3,3.84,2019-12-03 17:16:00,727 Sunset St, Los Angeles,CA,90001 +312796,Bose SoundSport Headphones,1,99.99,2019-12-03 10:18:00,641 7th St, Boston,MA,02215 +312797,Macbook Pro Laptop,1,1700.0,2019-12-26 13:01:00,143 River St, Austin,TX,73301 +312798,Apple Airpods Headphones,1,150.0,2019-12-28 19:25:00,265 Main St, San Francisco,CA,94016 +312799,Bose SoundSport Headphones,1,99.99,2019-12-13 05:22:00,507 10th St, Boston,MA,02215 +312800,Wired Headphones,1,11.99,2019-12-30 15:51:00,312 Dogwood St, Los Angeles,CA,90001 +312801,Wired Headphones,1,11.99,2019-12-28 20:29:00,802 9th St, San Francisco,CA,94016 +312802,ThinkPad Laptop,1,999.99,2019-12-17 05:13:00,431 Jackson St, New York City,NY,10001 +312803,AAA Batteries (4-pack),1,2.99,2019-12-08 23:49:00,413 Dogwood St, Seattle,WA,98101 +312804,Lightning Charging Cable,1,14.95,2019-12-19 15:01:00,648 River St, New York City,NY,10001 +312805,AAA Batteries (4-pack),1,2.99,2019-12-17 10:31:00,200 Church St, San Francisco,CA,94016 +312806,Flatscreen TV,1,300.0,2019-12-02 20:22:00,803 9th St, New York City,NY,10001 +312807,Wired Headphones,1,11.99,2019-12-20 09:26:00,941 6th St, New York City,NY,10001 +312808,Apple Airpods Headphones,1,150.0,2019-12-16 07:48:00,210 Cedar St, Boston,MA,02215 +312809,USB-C Charging Cable,1,11.95,2019-12-17 12:21:00,358 Center St, San Francisco,CA,94016 +312810,Lightning Charging Cable,1,14.95,2019-12-06 10:55:00,323 Park St, San Francisco,CA,94016 +312811,27in 4K Gaming Monitor,1,389.99,2019-12-04 14:34:00,172 Center St, Boston,MA,02215 +312812,Flatscreen TV,1,300.0,2020-01-01 01:56:00,129 6th St, Boston,MA,02215 +312813,27in 4K Gaming Monitor,1,389.99,2019-12-11 17:46:00,93 River St, Los Angeles,CA,90001 +312814,AAA Batteries (4-pack),1,2.99,2019-12-02 14:19:00,345 10th St, Dallas,TX,75001 +312815,Wired Headphones,1,11.99,2019-12-02 21:01:00,237 Meadow St, Seattle,WA,98101 +312816,Wired Headphones,1,11.99,2019-12-07 17:09:00,620 South St, Los Angeles,CA,90001 +312817,AAA Batteries (4-pack),4,2.99,2019-12-21 16:55:00,108 13th St, Los Angeles,CA,90001 +312818,34in Ultrawide Monitor,1,379.99,2019-12-22 11:47:00,462 West St, Seattle,WA,98101 +312819,AA Batteries (4-pack),1,3.84,2019-12-14 14:59:00,604 5th St, San Francisco,CA,94016 +312820,AAA Batteries (4-pack),2,2.99,2019-12-29 23:41:00,909 Church St, Portland,ME,04101 +312821,27in FHD Monitor,1,149.99,2019-12-13 17:03:00,715 4th St, Los Angeles,CA,90001 +312822,27in 4K Gaming Monitor,1,389.99,2019-12-04 18:55:00,411 Center St, San Francisco,CA,94016 +312823,27in 4K Gaming Monitor,1,389.99,2019-12-19 11:52:00,680 Cedar St, Dallas,TX,75001 +312824,AAA Batteries (4-pack),1,2.99,2019-12-18 22:18:00,304 Walnut St, New York City,NY,10001 +312825,Bose SoundSport Headphones,1,99.99,2019-12-03 23:33:00,615 1st St, New York City,NY,10001 +312826,AAA Batteries (4-pack),3,2.99,2019-12-08 11:42:00,679 Forest St, Los Angeles,CA,90001 +312827,Bose SoundSport Headphones,1,99.99,2019-12-19 09:52:00,800 Elm St, San Francisco,CA,94016 +312828,27in 4K Gaming Monitor,1,389.99,2019-12-05 16:19:00,486 Madison St, Los Angeles,CA,90001 +312829,Lightning Charging Cable,1,14.95,2019-12-27 21:40:00,834 North St, Atlanta,GA,30301 +312830,Bose SoundSport Headphones,1,99.99,2019-12-27 17:08:00,537 North St, Seattle,WA,98101 +312831,Bose SoundSport Headphones,1,99.99,2019-12-14 03:46:00,901 6th St, Boston,MA,02215 +312831,Wired Headphones,1,11.99,2019-12-14 03:46:00,901 6th St, Boston,MA,02215 +312832,Apple Airpods Headphones,1,150.0,2019-12-04 20:07:00,143 Hickory St, Los Angeles,CA,90001 +312833,AAA Batteries (4-pack),1,2.99,2019-12-15 05:48:00,510 Wilson St, Los Angeles,CA,90001 +312834,AAA Batteries (4-pack),2,2.99,2019-12-16 16:40:00,522 6th St, San Francisco,CA,94016 +312835,ThinkPad Laptop,1,999.99,2019-12-12 16:28:00,689 8th St, Seattle,WA,98101 +312836,LG Washing Machine,1,600.0,2019-12-31 11:25:00,696 Forest St, San Francisco,CA,94016 +312837,Lightning Charging Cable,1,14.95,2019-12-03 21:11:00,16 6th St, Dallas,TX,75001 +312838,Wired Headphones,1,11.99,2019-12-13 21:01:00,109 13th St, San Francisco,CA,94016 +312839,Lightning Charging Cable,1,14.95,2019-12-03 13:00:00,958 Washington St, Dallas,TX,75001 +312840,USB-C Charging Cable,1,11.95,2019-12-14 12:40:00,625 1st St, Los Angeles,CA,90001 +312841,AA Batteries (4-pack),1,3.84,2019-12-03 09:00:00,554 Meadow St, Boston,MA,02215 +312842,27in 4K Gaming Monitor,1,389.99,2019-12-01 07:14:00,785 Elm St, Portland,ME,04101 +312843,AA Batteries (4-pack),1,3.84,2019-12-20 18:12:00,957 Lake St, New York City,NY,10001 +312844,ThinkPad Laptop,1,999.99,2019-12-26 10:32:00,633 Lincoln St, Seattle,WA,98101 +312845,AAA Batteries (4-pack),3,2.99,2019-12-22 09:26:00,761 Walnut St, Dallas,TX,75001 +312846,Bose SoundSport Headphones,1,99.99,2019-12-04 23:24:00,240 Meadow St, Los Angeles,CA,90001 +312847,Wired Headphones,1,11.99,2019-12-30 17:05:00,258 Dogwood St, New York City,NY,10001 +312848,AA Batteries (4-pack),1,3.84,2019-12-29 14:09:00,654 Maple St, Los Angeles,CA,90001 +312849,Lightning Charging Cable,1,14.95,2019-12-02 20:56:00,837 Forest St, Boston,MA,02215 +312850,USB-C Charging Cable,1,11.95,2019-12-24 16:47:00,455 Sunset St, New York City,NY,10001 +312851,Lightning Charging Cable,1,14.95,2019-12-27 19:25:00,561 1st St, Portland,ME,04101 +312851,AAA Batteries (4-pack),1,2.99,2019-12-27 19:25:00,561 1st St, Portland,ME,04101 +312852,AA Batteries (4-pack),2,3.84,2019-12-01 11:37:00,455 Meadow St, Dallas,TX,75001 +312853,AAA Batteries (4-pack),1,2.99,2019-12-12 12:59:00,726 Willow St, Austin,TX,73301 +312854,27in FHD Monitor,1,149.99,2019-12-09 14:49:00,516 Washington St, Dallas,TX,75001 +312855,Macbook Pro Laptop,1,1700.0,2019-12-22 23:38:00,929 Lakeview St, Dallas,TX,75001 +312856,27in 4K Gaming Monitor,1,389.99,2019-12-08 10:23:00,152 Spruce St, Dallas,TX,75001 +312857,Lightning Charging Cable,2,14.95,2019-12-28 19:28:00,256 14th St, San Francisco,CA,94016 +312858,AA Batteries (4-pack),1,3.84,2019-12-26 12:03:00,948 Willow St, Austin,TX,73301 +312859,Apple Airpods Headphones,1,150.0,2019-12-14 01:52:00,172 South St, Austin,TX,73301 +312860,USB-C Charging Cable,1,11.95,2019-12-08 10:23:00,452 Lakeview St, Atlanta,GA,30301 +312861,Lightning Charging Cable,1,14.95,2019-12-18 10:15:00,132 Willow St, Boston,MA,02215 +312861,AAA Batteries (4-pack),2,2.99,2019-12-18 10:15:00,132 Willow St, Boston,MA,02215 +312862,Bose SoundSport Headphones,1,99.99,2019-12-10 12:03:00,295 Adams St, New York City,NY,10001 +312863,USB-C Charging Cable,1,11.95,2019-12-08 06:34:00,890 Lakeview St, Seattle,WA,98101 +312864,Vareebadd Phone,1,400.0,2019-12-06 23:44:00,338 Cherry St, San Francisco,CA,94016 +312865,USB-C Charging Cable,1,11.95,2019-12-25 22:32:00,175 Park St, Boston,MA,02215 +312866,AAA Batteries (4-pack),1,2.99,2019-12-22 10:01:00,149 Washington St, Atlanta,GA,30301 +312867,Google Phone,2,600.0,2019-12-29 12:52:00,305 Hill St, Los Angeles,CA,90001 +312867,USB-C Charging Cable,1,11.95,2019-12-29 12:52:00,305 Hill St, Los Angeles,CA,90001 +312867,Bose SoundSport Headphones,1,99.99,2019-12-29 12:52:00,305 Hill St, Los Angeles,CA,90001 +312868,Wired Headphones,1,11.99,2019-12-12 16:41:00,373 14th St, San Francisco,CA,94016 +312869,AAA Batteries (4-pack),1,2.99,2019-12-03 07:51:00,476 Center St, San Francisco,CA,94016 +312870,AAA Batteries (4-pack),1,2.99,2019-12-05 21:12:00,793 1st St, Atlanta,GA,30301 +312871,AA Batteries (4-pack),1,3.84,2019-12-27 14:41:00,352 4th St, Atlanta,GA,30301 +312872,AAA Batteries (4-pack),2,2.99,2019-12-30 11:48:00,383 Elm St, Boston,MA,02215 +312873,Lightning Charging Cable,1,14.95,2019-12-31 18:19:00,890 4th St, San Francisco,CA,94016 +312874,Wired Headphones,1,11.99,2019-12-21 19:55:00,931 Church St, Boston,MA,02215 +312875,AA Batteries (4-pack),3,3.84,2019-12-03 12:26:00,106 6th St, Boston,MA,02215 +312876,USB-C Charging Cable,1,11.95,2019-12-20 08:04:00,540 2nd St, Seattle,WA,98101 +312877,Lightning Charging Cable,1,14.95,2019-12-22 20:31:00,676 Adams St, Los Angeles,CA,90001 +312878,USB-C Charging Cable,1,11.95,2019-12-03 20:26:00,92 Maple St, San Francisco,CA,94016 +312879,USB-C Charging Cable,1,11.95,2019-12-21 10:48:00,803 Forest St, Portland,OR,97035 +312880,AAA Batteries (4-pack),4,2.99,2019-12-21 10:47:00,464 Lakeview St, Seattle,WA,98101 +312881,AAA Batteries (4-pack),1,2.99,2019-12-13 23:11:00,530 14th St, Los Angeles,CA,90001 +312882,ThinkPad Laptop,1,999.99,2019-12-23 12:19:00,185 Chestnut St, San Francisco,CA,94016 +312883,Apple Airpods Headphones,1,150.0,2019-12-01 17:47:00,943 Sunset St, Dallas,TX,75001 +312884,AAA Batteries (4-pack),1,2.99,2019-12-22 10:59:00,331 11th St, New York City,NY,10001 +312885,Apple Airpods Headphones,1,150.0,2019-12-17 14:29:00,780 Adams St, San Francisco,CA,94016 +312886,Apple Airpods Headphones,1,150.0,2019-12-10 20:25:00,492 1st St, Los Angeles,CA,90001 +312887,20in Monitor,1,109.99,2019-12-20 12:51:00,909 11th St, San Francisco,CA,94016 +312888,27in FHD Monitor,1,149.99,2019-12-11 16:55:00,216 Park St, Atlanta,GA,30301 +312889,AAA Batteries (4-pack),1,2.99,2019-12-25 18:15:00,235 9th St, New York City,NY,10001 +312890,USB-C Charging Cable,1,11.95,2019-12-30 14:13:00,610 Jackson St, San Francisco,CA,94016 +312891,Lightning Charging Cable,1,14.95,2019-12-22 12:30:00,420 Pine St, New York City,NY,10001 +312892,iPhone,1,700.0,2019-12-23 01:40:00,956 Maple St, San Francisco,CA,94016 +312893,34in Ultrawide Monitor,1,379.99,2019-12-10 22:53:00,676 Park St, Los Angeles,CA,90001 +312894,Apple Airpods Headphones,1,150.0,2019-12-26 14:02:00,237 9th St, San Francisco,CA,94016 +312895,Wired Headphones,1,11.99,2019-12-11 12:51:00,168 Jefferson St, Boston,MA,02215 +312896,Flatscreen TV,1,300.0,2019-12-01 22:07:00,953 Meadow St, Los Angeles,CA,90001 +312897,Wired Headphones,2,11.99,2019-12-29 18:28:00,614 Chestnut St, New York City,NY,10001 +312898,USB-C Charging Cable,1,11.95,2019-12-29 22:14:00,603 Spruce St, Dallas,TX,75001 +312899,Wired Headphones,1,11.99,2019-12-08 17:29:00,3 West St, New York City,NY,10001 +312900,Apple Airpods Headphones,1,150.0,2019-12-07 11:11:00,818 8th St, Boston,MA,02215 +312901,34in Ultrawide Monitor,1,379.99,2019-12-09 17:40:00,68 11th St, San Francisco,CA,94016 +312902,27in FHD Monitor,1,149.99,2019-12-02 20:43:00,71 Madison St, New York City,NY,10001 +312903,Wired Headphones,1,11.99,2019-12-15 14:19:00,144 Cherry St, Los Angeles,CA,90001 +312904,Apple Airpods Headphones,1,150.0,2019-12-12 23:16:00,959 Walnut St, Seattle,WA,98101 +312905,iPhone,1,700.0,2019-12-31 22:21:00,851 Dogwood St, New York City,NY,10001 +312906,AA Batteries (4-pack),1,3.84,2019-12-17 12:26:00,280 Main St, Portland,ME,04101 +312907,USB-C Charging Cable,1,11.95,2019-12-22 00:02:00,916 West St, Boston,MA,02215 +312908,Lightning Charging Cable,1,14.95,2019-12-17 09:34:00,597 11th St, Dallas,TX,75001 +312909,Wired Headphones,1,11.99,2019-12-12 21:36:00,688 Jackson St, New York City,NY,10001 +312910,Wired Headphones,1,11.99,2019-12-14 17:42:00,174 2nd St, San Francisco,CA,94016 +312911,Lightning Charging Cable,1,14.95,2019-12-15 02:06:00,246 Chestnut St, New York City,NY,10001 +312912,iPhone,1,700.0,2019-12-13 12:28:00,518 Chestnut St, Los Angeles,CA,90001 +312913,Bose SoundSport Headphones,1,99.99,2019-12-31 18:31:00,447 Walnut St, Austin,TX,73301 +312914,Bose SoundSport Headphones,1,99.99,2019-12-21 10:01:00,954 Cedar St, Seattle,WA,98101 +312915,AA Batteries (4-pack),1,3.84,2019-12-14 23:17:00,463 Church St, Boston,MA,02215 +312916,USB-C Charging Cable,1,11.95,2019-12-12 13:55:00,549 Church St, San Francisco,CA,94016 +312917,Apple Airpods Headphones,1,150.0,2019-12-27 18:45:00,910 Sunset St, Los Angeles,CA,90001 +312918,iPhone,1,700.0,2019-12-30 14:41:00,360 12th St, New York City,NY,10001 +312919,AAA Batteries (4-pack),1,2.99,2019-12-09 12:12:00,902 River St, Los Angeles,CA,90001 +312920,Wired Headphones,1,11.99,2019-12-07 07:50:00,311 Walnut St, Atlanta,GA,30301 +312921,Flatscreen TV,1,300.0,2019-12-24 18:03:00,146 South St, Portland,OR,97035 +312922,AA Batteries (4-pack),3,3.84,2019-12-16 22:23:00,950 Lincoln St, Dallas,TX,75001 +312923,Lightning Charging Cable,1,14.95,2019-12-17 14:15:00,347 10th St, Boston,MA,02215 +312924,Bose SoundSport Headphones,1,99.99,2019-12-11 20:40:00,985 Lincoln St, San Francisco,CA,94016 +312925,USB-C Charging Cable,1,11.95,2019-12-28 11:40:00,526 South St, Boston,MA,02215 +312926,iPhone,1,700.0,2019-12-27 19:26:00,352 10th St, Los Angeles,CA,90001 +312926,Lightning Charging Cable,2,14.95,2019-12-27 19:26:00,352 10th St, Los Angeles,CA,90001 +312927,AA Batteries (4-pack),1,3.84,2019-12-31 11:51:00,461 Adams St, San Francisco,CA,94016 +312927,iPhone,1,700.0,2019-12-31 11:51:00,461 Adams St, San Francisco,CA,94016 +312928,Bose SoundSport Headphones,1,99.99,2019-12-14 17:31:00,529 4th St, San Francisco,CA,94016 +312929,Wired Headphones,1,11.99,2019-12-29 15:25:00,184 Maple St, New York City,NY,10001 +312930,AAA Batteries (4-pack),1,2.99,2019-12-05 08:30:00,60 Lake St, New York City,NY,10001 +312931,AA Batteries (4-pack),2,3.84,2019-12-17 13:39:00,182 Hill St, Los Angeles,CA,90001 +312932,Lightning Charging Cable,1,14.95,2019-12-04 08:11:00,990 Jefferson St, Boston,MA,02215 +312933,Lightning Charging Cable,1,14.95,2019-12-03 01:31:00,330 Cherry St, San Francisco,CA,94016 +312934,iPhone,1,700.0,2019-12-29 17:44:00,893 Cherry St, Los Angeles,CA,90001 +312935,27in 4K Gaming Monitor,1,389.99,2019-12-06 12:30:00,303 Hickory St, Seattle,WA,98101 +312936,Apple Airpods Headphones,1,150.0,2019-12-14 09:11:00,527 9th St, Los Angeles,CA,90001 +312937,AA Batteries (4-pack),2,3.84,2019-12-22 15:13:00,552 5th St, New York City,NY,10001 +312938,iPhone,1,700.0,2019-12-04 08:31:00,638 Johnson St, Los Angeles,CA,90001 +312938,Lightning Charging Cable,1,14.95,2019-12-04 08:31:00,638 Johnson St, Los Angeles,CA,90001 +312939,AA Batteries (4-pack),1,3.84,2019-12-06 17:46:00,320 9th St, New York City,NY,10001 +312940,Google Phone,1,600.0,2019-12-03 09:00:00,206 Pine St, Austin,TX,73301 +312941,Macbook Pro Laptop,1,1700.0,2019-12-19 11:33:00,968 2nd St, San Francisco,CA,94016 +312942,Wired Headphones,1,11.99,2019-12-31 09:37:00,272 5th St, New York City,NY,10001 +312943,Lightning Charging Cable,1,14.95,2019-12-29 09:21:00,469 Park St, Seattle,WA,98101 +312944,Lightning Charging Cable,1,14.95,2019-12-07 20:12:00,185 Spruce St, Seattle,WA,98101 +312945,AAA Batteries (4-pack),1,2.99,2019-12-03 16:57:00,401 Lakeview St, San Francisco,CA,94016 +312946,Wired Headphones,1,11.99,2019-12-08 11:13:00,919 11th St, Boston,MA,02215 +312946,AAA Batteries (4-pack),1,2.99,2019-12-08 11:13:00,919 11th St, Boston,MA,02215 +312947,Bose SoundSport Headphones,1,99.99,2019-12-02 12:07:00,225 13th St, Los Angeles,CA,90001 +312948,Google Phone,1,600.0,2019-12-11 10:23:00,849 10th St, Los Angeles,CA,90001 +312948,Bose SoundSport Headphones,1,99.99,2019-12-11 10:23:00,849 10th St, Los Angeles,CA,90001 +312949,USB-C Charging Cable,1,11.95,2019-12-11 05:46:00,714 Washington St, New York City,NY,10001 +312950,iPhone,1,700.0,2019-12-13 21:59:00,916 Lincoln St, New York City,NY,10001 +312950,Lightning Charging Cable,1,14.95,2019-12-13 21:59:00,916 Lincoln St, New York City,NY,10001 +312951,Wired Headphones,1,11.99,2019-12-31 10:30:00,256 14th St, San Francisco,CA,94016 +312952,Wired Headphones,1,11.99,2019-12-04 18:12:00,398 Center St, San Francisco,CA,94016 +312953,USB-C Charging Cable,1,11.95,2019-12-01 12:36:00,765 6th St, San Francisco,CA,94016 +312954,Apple Airpods Headphones,1,150.0,2019-12-29 14:29:00,615 Sunset St, Dallas,TX,75001 +312955,Apple Airpods Headphones,1,150.0,2019-12-10 18:30:00,750 Highland St, San Francisco,CA,94016 +312956,AA Batteries (4-pack),1,3.84,2019-12-17 22:03:00,141 Washington St, San Francisco,CA,94016 +312957,34in Ultrawide Monitor,1,379.99,2019-12-19 11:06:00,746 Lincoln St, San Francisco,CA,94016 +312958,iPhone,1,700.0,2019-12-23 19:31:00,755 Church St, Los Angeles,CA,90001 +312959,AA Batteries (4-pack),1,3.84,2019-12-06 18:20:00,348 8th St, San Francisco,CA,94016 +312960,Bose SoundSport Headphones,1,99.99,2019-12-18 13:49:00,612 Spruce St, New York City,NY,10001 +312961,Bose SoundSport Headphones,1,99.99,2019-12-29 01:02:00,797 Pine St, San Francisco,CA,94016 +312962,Wired Headphones,1,11.99,2019-12-27 11:15:00,850 11th St, Dallas,TX,75001 +312963,Vareebadd Phone,1,400.0,2019-12-01 08:50:00,925 12th St, Atlanta,GA,30301 +312964,AA Batteries (4-pack),1,3.84,2019-12-09 10:05:00,126 5th St, Boston,MA,02215 +312965,Lightning Charging Cable,1,14.95,2019-12-10 11:17:00,96 Willow St, Boston,MA,02215 +312966,Macbook Pro Laptop,1,1700.0,2019-12-12 15:02:00,825 6th St, Boston,MA,02215 +312966,AAA Batteries (4-pack),3,2.99,2019-12-12 15:02:00,825 6th St, Boston,MA,02215 +312967,USB-C Charging Cable,1,11.95,2019-12-04 16:50:00,451 Lakeview St, New York City,NY,10001 +312968,AAA Batteries (4-pack),2,2.99,2019-12-15 12:23:00,791 Madison St, Los Angeles,CA,90001 +312969,Wired Headphones,3,11.99,2019-12-18 23:55:00,677 Johnson St, Austin,TX,73301 +312970,AA Batteries (4-pack),6,3.84,2019-12-12 10:59:00,879 West St, New York City,NY,10001 +312971,AAA Batteries (4-pack),1,2.99,2019-12-09 19:56:00,689 5th St, New York City,NY,10001 +312972,27in FHD Monitor,1,149.99,2019-12-17 18:58:00,569 Walnut St, San Francisco,CA,94016 +312973,Apple Airpods Headphones,1,150.0,2019-12-15 11:36:00,618 Lake St, Atlanta,GA,30301 +312974,USB-C Charging Cable,1,11.95,2019-12-29 18:41:00,152 7th St, New York City,NY,10001 +312975,Lightning Charging Cable,1,14.95,2019-12-16 19:16:00,772 Jackson St, Dallas,TX,75001 +312976,Bose SoundSport Headphones,1,99.99,2019-12-26 20:53:00,439 Lakeview St, San Francisco,CA,94016 +312977,Lightning Charging Cable,1,14.95,2019-12-28 17:47:00,581 Willow St, Los Angeles,CA,90001 +312978,34in Ultrawide Monitor,1,379.99,2019-12-25 09:28:00,603 Center St, San Francisco,CA,94016 +312979,Bose SoundSport Headphones,1,99.99,2019-12-11 13:44:00,207 Walnut St, Boston,MA,02215 +312980,Wired Headphones,1,11.99,2019-12-31 19:46:00,195 9th St, San Francisco,CA,94016 +312981,Macbook Pro Laptop,1,1700.0,2019-12-14 12:57:00,521 Jefferson St, Boston,MA,02215 +312982,AAA Batteries (4-pack),1,2.99,2019-12-10 22:35:00,440 Walnut St, Los Angeles,CA,90001 +312983,AA Batteries (4-pack),1,3.84,2019-12-08 19:54:00,214 Chestnut St, San Francisco,CA,94016 +312984,AA Batteries (4-pack),2,3.84,2019-12-22 11:49:00,338 5th St, New York City,NY,10001 +312985,Bose SoundSport Headphones,1,99.99,2019-12-26 22:49:00,418 Adams St, Atlanta,GA,30301 +312986,Lightning Charging Cable,2,14.95,2019-12-11 07:59:00,369 River St, Austin,TX,73301 +312986,USB-C Charging Cable,1,11.95,2019-12-11 07:59:00,369 River St, Austin,TX,73301 +312987,Lightning Charging Cable,1,14.95,2019-12-16 21:39:00,361 Dogwood St, New York City,NY,10001 +312988,Apple Airpods Headphones,1,150.0,2019-12-21 19:18:00,252 5th St, Dallas,TX,75001 +312989,USB-C Charging Cable,1,11.95,2019-12-25 22:18:00,131 Dogwood St, Atlanta,GA,30301 +312990,USB-C Charging Cable,1,11.95,2019-12-30 05:52:00,888 7th St, San Francisco,CA,94016 +312991,AAA Batteries (4-pack),1,2.99,2019-12-03 16:16:00,385 Church St, San Francisco,CA,94016 +312992,34in Ultrawide Monitor,1,379.99,2019-12-31 15:24:00,837 14th St, Los Angeles,CA,90001 +312993,AA Batteries (4-pack),2,3.84,2019-12-31 14:33:00,904 Hickory St, Seattle,WA,98101 +312994,iPhone,1,700.0,2019-12-19 13:08:00,879 13th St, Seattle,WA,98101 +312995,USB-C Charging Cable,1,11.95,2019-12-10 16:29:00,131 Sunset St, Atlanta,GA,30301 +312996,AAA Batteries (4-pack),1,2.99,2019-12-05 06:12:00,70 West St, Seattle,WA,98101 +312996,AAA Batteries (4-pack),3,2.99,2019-12-05 06:12:00,70 West St, Seattle,WA,98101 +312997,27in 4K Gaming Monitor,1,389.99,2019-12-28 13:42:00,972 Jackson St, Boston,MA,02215 +312998,ThinkPad Laptop,1,999.99,2019-12-22 17:45:00,191 10th St, San Francisco,CA,94016 +312999,AAA Batteries (4-pack),1,2.99,2019-12-10 20:56:00,660 7th St, Los Angeles,CA,90001 +313000,Flatscreen TV,1,300.0,2019-12-09 15:30:00,448 Pine St, Austin,TX,73301 +313001,USB-C Charging Cable,1,11.95,2019-12-06 23:17:00,795 4th St, Dallas,TX,75001 +313002,AA Batteries (4-pack),4,3.84,2019-12-07 20:14:00,880 Center St, Seattle,WA,98101 +313003,AA Batteries (4-pack),1,3.84,2019-12-22 21:21:00,259 Forest St, San Francisco,CA,94016 +313004,Apple Airpods Headphones,1,150.0,2019-12-02 16:07:00,692 4th St, San Francisco,CA,94016 +313005,34in Ultrawide Monitor,1,379.99,2019-12-07 17:52:00,891 Wilson St, Los Angeles,CA,90001 +313006,AA Batteries (4-pack),1,3.84,2019-12-18 12:18:00,610 Elm St, San Francisco,CA,94016 +313007,AAA Batteries (4-pack),2,2.99,2019-12-17 17:59:00,418 13th St, New York City,NY,10001 +313008,USB-C Charging Cable,1,11.95,2019-12-15 17:50:00,22 Willow St, New York City,NY,10001 +313009,AAA Batteries (4-pack),1,2.99,2019-12-20 16:44:00,107 Jackson St, Los Angeles,CA,90001 +313010,AAA Batteries (4-pack),1,2.99,2019-12-06 15:11:00,635 Madison St, New York City,NY,10001 +313011,Bose SoundSport Headphones,1,99.99,2019-12-25 13:46:00,708 1st St, Austin,TX,73301 +313012,Lightning Charging Cable,1,14.95,2019-12-05 03:34:00,700 Hickory St, New York City,NY,10001 +313012,20in Monitor,1,109.99,2019-12-05 03:34:00,700 Hickory St, New York City,NY,10001 +313013,Wired Headphones,1,11.99,2019-12-09 11:36:00,88 Jackson St, Austin,TX,73301 +313014,Lightning Charging Cable,1,14.95,2019-12-01 13:15:00,371 Sunset St, Atlanta,GA,30301 +313015,Wired Headphones,2,11.99,2019-12-29 16:44:00,380 West St, Austin,TX,73301 +313016,USB-C Charging Cable,1,11.95,2019-12-30 14:46:00,298 Highland St, San Francisco,CA,94016 +313017,Google Phone,1,600.0,2019-12-05 12:25:00,881 Elm St, Atlanta,GA,30301 +313018,Bose SoundSport Headphones,1,99.99,2019-12-28 18:15:00,977 Main St, Seattle,WA,98101 +313019,Google Phone,1,600.0,2019-12-15 10:09:00,547 Lake St, San Francisco,CA,94016 +313020,USB-C Charging Cable,1,11.95,2019-12-30 12:15:00,993 Jefferson St, Los Angeles,CA,90001 +313021,Wired Headphones,1,11.99,2019-12-21 12:32:00,62 Forest St, Atlanta,GA,30301 +313022,27in 4K Gaming Monitor,1,389.99,2019-12-25 13:19:00,541 Ridge St, Dallas,TX,75001 +313023,Wired Headphones,1,11.99,2019-12-12 12:27:00,492 8th St, Dallas,TX,75001 +313024,Lightning Charging Cable,1,14.95,2019-12-28 13:03:00,120 Ridge St, Los Angeles,CA,90001 +313025,Bose SoundSport Headphones,1,99.99,2019-12-14 22:06:00,535 Dogwood St, Los Angeles,CA,90001 +313026,Bose SoundSport Headphones,1,99.99,2019-12-29 19:11:00,815 Ridge St, Los Angeles,CA,90001 +313027,AAA Batteries (4-pack),2,2.99,2019-12-13 12:37:00,853 Johnson St, Portland,OR,97035 +313028,34in Ultrawide Monitor,1,379.99,2019-12-30 08:13:00,753 8th St, Los Angeles,CA,90001 +313029,Apple Airpods Headphones,1,150.0,2019-12-17 14:18:00,364 Sunset St, Seattle,WA,98101 +313030,27in 4K Gaming Monitor,1,389.99,2019-12-17 22:54:00,971 11th St, Portland,OR,97035 +313030,AA Batteries (4-pack),1,3.84,2019-12-17 22:54:00,971 11th St, Portland,OR,97035 +313031,20in Monitor,1,109.99,2019-12-11 20:01:00,106 7th St, Los Angeles,CA,90001 +313032,Apple Airpods Headphones,1,150.0,2019-12-21 13:51:00,380 Chestnut St, Boston,MA,02215 +313033,Macbook Pro Laptop,1,1700.0,2019-12-27 14:12:00,982 Chestnut St, New York City,NY,10001 +313034,LG Dryer,1,600.0,2019-12-01 20:01:00,23 Sunset St, Atlanta,GA,30301 +313035,Flatscreen TV,1,300.0,2019-12-11 17:51:00,152 Cherry St, Los Angeles,CA,90001 +313036,27in FHD Monitor,1,149.99,2019-12-09 10:44:00,566 River St, Portland,ME,04101 +313037,Wired Headphones,3,11.99,2019-12-13 00:03:00,372 Forest St, Dallas,TX,75001 +313038,AA Batteries (4-pack),1,3.84,2019-12-15 13:10:00,186 14th St, Seattle,WA,98101 +313039,Wired Headphones,1,11.99,2019-12-27 08:11:00,882 Elm St, New York City,NY,10001 +313040,Wired Headphones,1,11.99,2019-12-26 11:56:00,647 Pine St, Seattle,WA,98101 +313041,USB-C Charging Cable,1,11.95,2019-12-18 11:38:00,934 8th St, New York City,NY,10001 +313042,AA Batteries (4-pack),1,3.84,2019-12-11 19:23:00,714 West St, Dallas,TX,75001 +313043,27in FHD Monitor,1,149.99,2019-12-15 12:57:00,561 Center St, New York City,NY,10001 +313044,34in Ultrawide Monitor,1,379.99,2019-12-12 11:48:00,992 Hickory St, Los Angeles,CA,90001 +313045,AAA Batteries (4-pack),3,2.99,2019-12-15 09:38:00,316 Washington St, Portland,OR,97035 +313046,AA Batteries (4-pack),3,3.84,2019-12-09 11:21:00,479 2nd St, Seattle,WA,98101 +313047,Lightning Charging Cable,1,14.95,2019-12-18 11:38:00,878 Chestnut St, San Francisco,CA,94016 +313048,USB-C Charging Cable,1,11.95,2019-12-04 14:00:00,18 7th St, Los Angeles,CA,90001 +313049,Bose SoundSport Headphones,1,99.99,2019-12-04 12:52:00,778 Spruce St, Atlanta,GA,30301 +313050,USB-C Charging Cable,1,11.95,2019-12-29 10:37:00,4 South St, Dallas,TX,75001 +313051,USB-C Charging Cable,1,11.95,2019-12-25 11:50:00,989 Cherry St, New York City,NY,10001 +313052,Bose SoundSport Headphones,1,99.99,2019-12-28 18:57:00,9 Cedar St, Atlanta,GA,30301 +313053,20in Monitor,1,109.99,2019-12-09 10:07:00,377 Cedar St, New York City,NY,10001 +313054,AAA Batteries (4-pack),2,2.99,2019-12-29 22:55:00,304 Washington St, Los Angeles,CA,90001 +313055,Lightning Charging Cable,1,14.95,2019-12-03 20:23:00,51 River St, New York City,NY,10001 +313056,iPhone,1,700.0,2019-12-31 18:40:00,870 Forest St, New York City,NY,10001 +313056,Lightning Charging Cable,1,14.95,2019-12-31 18:40:00,870 Forest St, New York City,NY,10001 +313057,Lightning Charging Cable,1,14.95,2019-12-29 19:51:00,955 Jefferson St, Atlanta,GA,30301 +313058,Wired Headphones,2,11.99,2019-12-02 22:34:00,635 Center St, Atlanta,GA,30301 +313059,Apple Airpods Headphones,1,150.0,2019-12-26 13:41:00,17 Dogwood St, New York City,NY,10001 +313060,Macbook Pro Laptop,1,1700.0,2019-12-21 21:37:00,235 10th St, New York City,NY,10001 +313061,AA Batteries (4-pack),1,3.84,2019-12-02 19:23:00,423 Madison St, Los Angeles,CA,90001 +313062,Vareebadd Phone,1,400.0,2019-12-23 13:33:00,580 Cherry St, New York City,NY,10001 +313062,Wired Headphones,1,11.99,2019-12-23 13:33:00,580 Cherry St, New York City,NY,10001 +313063,Apple Airpods Headphones,1,150.0,2019-12-09 17:24:00,86 Johnson St, Los Angeles,CA,90001 +313064,Wired Headphones,1,11.99,2019-12-12 00:45:00,824 10th St, Los Angeles,CA,90001 +313065,Lightning Charging Cable,1,14.95,2019-12-06 21:10:00,210 Washington St, Atlanta,GA,30301 +313066,20in Monitor,1,109.99,2019-12-25 05:42:00,988 4th St, Boston,MA,02215 +313067,AA Batteries (4-pack),1,3.84,2019-12-18 20:47:00,899 Dogwood St, Seattle,WA,98101 +313068,AAA Batteries (4-pack),1,2.99,2019-12-20 13:59:00,14 Church St, Los Angeles,CA,90001 +313069,AA Batteries (4-pack),1,3.84,2019-12-13 14:07:00,527 North St, Atlanta,GA,30301 +313070,27in FHD Monitor,1,149.99,2019-12-30 12:16:00,109 Madison St, Los Angeles,CA,90001 +313071,Bose SoundSport Headphones,1,99.99,2019-12-14 19:33:00,148 North St, Portland,OR,97035 +313072,34in Ultrawide Monitor,1,379.99,2019-12-15 12:26:00,196 Main St, Seattle,WA,98101 +313073,USB-C Charging Cable,1,11.95,2019-12-27 22:01:00,513 8th St, Portland,OR,97035 +313074,Lightning Charging Cable,1,14.95,2019-12-22 21:50:00,974 Madison St, Dallas,TX,75001 +313075,27in 4K Gaming Monitor,1,389.99,2019-12-02 22:16:00,543 Church St, Boston,MA,02215 +313076,Wired Headphones,1,11.99,2019-12-02 10:53:00,225 Cherry St, San Francisco,CA,94016 +313077,Lightning Charging Cable,1,14.95,2019-12-20 14:16:00,342 12th St, Portland,OR,97035 +313078,Lightning Charging Cable,1,14.95,2019-12-07 18:37:00,175 Ridge St, New York City,NY,10001 +313079,Apple Airpods Headphones,1,150.0,2019-12-12 19:05:00,84 Maple St, Portland,ME,04101 +313080,Macbook Pro Laptop,1,1700.0,2019-12-06 18:40:00,995 Spruce St, Boston,MA,02215 +313081,Google Phone,1,600.0,2019-12-22 12:03:00,488 Dogwood St, Seattle,WA,98101 +313082,Lightning Charging Cable,1,14.95,2019-12-30 19:17:00,747 Walnut St, San Francisco,CA,94016 +313083,Wired Headphones,1,11.99,2019-12-31 21:29:00,469 7th St, San Francisco,CA,94016 +313084,USB-C Charging Cable,1,11.95,2019-12-15 19:01:00,594 Center St, Seattle,WA,98101 +313085,USB-C Charging Cable,2,11.95,2019-12-15 23:11:00,811 Wilson St, San Francisco,CA,94016 +313086,Macbook Pro Laptop,1,1700.0,2019-12-23 08:12:00,309 Spruce St, San Francisco,CA,94016 +313087,USB-C Charging Cable,2,11.95,2019-12-27 18:03:00,830 Church St, San Francisco,CA,94016 +313088,AAA Batteries (4-pack),2,2.99,2019-12-21 18:06:00,812 Maple St, San Francisco,CA,94016 +313089,Lightning Charging Cable,1,14.95,2019-12-04 13:59:00,922 South St, Seattle,WA,98101 +313090,AAA Batteries (4-pack),1,2.99,2019-12-29 13:51:00,387 Hill St, Dallas,TX,75001 +313091,AAA Batteries (4-pack),2,2.99,2019-12-11 21:31:00,76 Washington St, Los Angeles,CA,90001 +313092,20in Monitor,1,109.99,2019-12-04 22:53:00,974 Walnut St, Dallas,TX,75001 +313093,Vareebadd Phone,1,400.0,2019-12-18 06:56:00,90 13th St, Dallas,TX,75001 +313093,USB-C Charging Cable,1,11.95,2019-12-18 06:56:00,90 13th St, Dallas,TX,75001 +313094,AA Batteries (4-pack),1,3.84,2019-12-05 20:43:00,990 4th St, Boston,MA,02215 +313095,34in Ultrawide Monitor,1,379.99,2019-12-05 19:40:00,752 Highland St, Boston,MA,02215 +313096,Bose SoundSport Headphones,1,99.99,2019-12-07 20:40:00,850 Forest St, San Francisco,CA,94016 +313097,Apple Airpods Headphones,1,150.0,2019-12-15 12:21:00,436 Hickory St, Austin,TX,73301 +313098,AA Batteries (4-pack),1,3.84,2019-12-19 10:58:00,958 2nd St, Dallas,TX,75001 +313099,Bose SoundSport Headphones,1,99.99,2019-12-04 21:38:00,435 Pine St, San Francisco,CA,94016 +313100,Wired Headphones,1,11.99,2019-12-13 22:03:00,588 West St, New York City,NY,10001 +313101,AAA Batteries (4-pack),1,2.99,2019-12-24 08:52:00,89 10th St, Dallas,TX,75001 +313102,iPhone,1,700.0,2019-12-31 16:28:00,891 Sunset St, Los Angeles,CA,90001 +313103,34in Ultrawide Monitor,1,379.99,2019-12-17 19:05:00,527 Meadow St, San Francisco,CA,94016 +313104,iPhone,1,700.0,2019-12-13 14:54:00,557 Walnut St, Seattle,WA,98101 +313105,Lightning Charging Cable,1,14.95,2019-12-31 21:24:00,37 13th St, Portland,OR,97035 +313106,AAA Batteries (4-pack),1,2.99,2019-12-13 21:58:00,95 Walnut St, Austin,TX,73301 +313107,Bose SoundSport Headphones,1,99.99,2019-12-24 05:10:00,378 5th St, San Francisco,CA,94016 +313108,Lightning Charging Cable,1,14.95,2019-12-14 15:19:00,932 Washington St, San Francisco,CA,94016 +313109,Wired Headphones,1,11.99,2019-12-13 13:13:00,206 Elm St, Dallas,TX,75001 +313110,Bose SoundSport Headphones,1,99.99,2019-12-21 18:12:00,326 Johnson St, Seattle,WA,98101 +313111,AAA Batteries (4-pack),1,2.99,2019-12-23 12:50:00,228 Hickory St, Portland,OR,97035 +313112,AAA Batteries (4-pack),1,2.99,2019-12-19 11:17:00,748 Dogwood St, Boston,MA,02215 +313113,USB-C Charging Cable,1,11.95,2019-12-29 15:31:00,558 Meadow St, Portland,OR,97035 +313114,AAA Batteries (4-pack),2,2.99,2019-12-30 11:46:00,67 Washington St, Portland,ME,04101 +313115,Google Phone,1,600.0,2019-12-17 08:32:00,866 9th St, San Francisco,CA,94016 +313115,USB-C Charging Cable,2,11.95,2019-12-17 08:32:00,866 9th St, San Francisco,CA,94016 +313115,Wired Headphones,1,11.99,2019-12-17 08:32:00,866 9th St, San Francisco,CA,94016 +313116,AAA Batteries (4-pack),1,2.99,2019-12-11 10:20:00,617 Maple St, Seattle,WA,98101 +313117,AA Batteries (4-pack),1,3.84,2019-12-28 19:23:00,696 North St, Los Angeles,CA,90001 +313118,Lightning Charging Cable,1,14.95,2019-12-08 21:06:00,136 Main St, San Francisco,CA,94016 +313119,Lightning Charging Cable,1,14.95,2019-12-02 12:30:00,583 Pine St, Portland,OR,97035 +313120,AAA Batteries (4-pack),1,2.99,2019-12-29 12:23:00,242 Lincoln St, Portland,OR,97035 +313121,Lightning Charging Cable,1,14.95,2019-12-15 09:29:00,16 Center St, New York City,NY,10001 +313122,AAA Batteries (4-pack),1,2.99,2019-12-27 13:42:00,52 12th St, San Francisco,CA,94016 +313123,USB-C Charging Cable,1,11.95,2019-12-09 17:37:00,181 Cedar St, San Francisco,CA,94016 +313124,Wired Headphones,1,11.99,2019-12-04 17:27:00,53 Park St, Los Angeles,CA,90001 +313125,Bose SoundSport Headphones,1,99.99,2019-12-09 12:08:00,262 Washington St, Seattle,WA,98101 +313126,Flatscreen TV,1,300.0,2019-12-12 09:17:00,890 Willow St, San Francisco,CA,94016 +313127,Vareebadd Phone,1,400.0,2019-12-05 00:23:00,850 West St, Los Angeles,CA,90001 +313128,USB-C Charging Cable,1,11.95,2019-12-19 10:47:00,972 5th St, San Francisco,CA,94016 +313129,34in Ultrawide Monitor,1,379.99,2019-12-13 19:01:00,62 Spruce St, Portland,ME,04101 +313130,Apple Airpods Headphones,1,150.0,2019-12-14 10:50:00,930 Lake St, Los Angeles,CA,90001 +313131,Lightning Charging Cable,1,14.95,2019-12-17 15:28:00,553 Johnson St, Atlanta,GA,30301 +313132,Lightning Charging Cable,1,14.95,2019-12-26 13:12:00,383 Sunset St, Los Angeles,CA,90001 +313132,27in FHD Monitor,1,149.99,2019-12-26 13:12:00,383 Sunset St, Los Angeles,CA,90001 +313133,Vareebadd Phone,1,400.0,2019-12-04 04:37:00,578 Elm St, Dallas,TX,75001 +313134,AA Batteries (4-pack),1,3.84,2019-12-09 14:34:00,598 River St, Austin,TX,73301 +313135,Lightning Charging Cable,1,14.95,2019-12-29 17:04:00,374 North St, Los Angeles,CA,90001 +313136,AAA Batteries (4-pack),1,2.99,2019-12-14 12:09:00,819 Dogwood St, Seattle,WA,98101 +313137,Wired Headphones,1,11.99,2019-12-20 17:17:00,538 1st St, Los Angeles,CA,90001 +313138,iPhone,1,700.0,2019-12-04 11:07:00,577 Cedar St, Boston,MA,02215 +313138,Lightning Charging Cable,1,14.95,2019-12-04 11:07:00,577 Cedar St, Boston,MA,02215 +313139,27in 4K Gaming Monitor,1,389.99,2019-12-31 13:41:00,250 Maple St, Boston,MA,02215 +313140,USB-C Charging Cable,1,11.95,2019-12-09 21:33:00,591 10th St, Atlanta,GA,30301 +313141,AAA Batteries (4-pack),2,2.99,2019-12-29 14:12:00,943 West St, Los Angeles,CA,90001 +313142,AA Batteries (4-pack),1,3.84,2019-12-06 12:31:00,954 Park St, San Francisco,CA,94016 +313142,Apple Airpods Headphones,1,150.0,2019-12-06 12:31:00,954 Park St, San Francisco,CA,94016 +313143,34in Ultrawide Monitor,1,379.99,2019-12-03 19:14:00,636 Jackson St, San Francisco,CA,94016 +313144,Lightning Charging Cable,1,14.95,2019-12-20 14:49:00,270 Spruce St, Boston,MA,02215 +313145,Macbook Pro Laptop,1,1700.0,2019-12-13 05:53:00,411 4th St, New York City,NY,10001 +313146,AA Batteries (4-pack),1,3.84,2019-12-22 21:54:00,13 West St, San Francisco,CA,94016 +313147,AAA Batteries (4-pack),1,2.99,2019-12-27 21:15:00,749 6th St, Atlanta,GA,30301 +313148,AAA Batteries (4-pack),1,2.99,2019-12-07 09:49:00,889 South St, Boston,MA,02215 +313149,iPhone,1,700.0,2019-12-20 08:43:00,427 Meadow St, San Francisco,CA,94016 +313150,27in 4K Gaming Monitor,1,389.99,2019-12-06 14:17:00,962 West St, San Francisco,CA,94016 +313151,AAA Batteries (4-pack),1,2.99,2019-12-18 08:15:00,370 Walnut St, San Francisco,CA,94016 +313152,AAA Batteries (4-pack),1,2.99,2019-12-21 10:03:00,301 South St, Dallas,TX,75001 +313153,USB-C Charging Cable,1,11.95,2019-12-12 22:10:00,26 Maple St, San Francisco,CA,94016 +313154,Wired Headphones,2,11.99,2019-12-27 20:15:00,885 Elm St, Boston,MA,02215 +313155,Bose SoundSport Headphones,1,99.99,2019-12-25 22:23:00,616 Lakeview St, San Francisco,CA,94016 +313156,Lightning Charging Cable,1,14.95,2019-12-07 21:30:00,123 Madison St, Los Angeles,CA,90001 +313157,27in FHD Monitor,1,149.99,2019-12-30 13:20:00,537 5th St, Portland,OR,97035 +313158,Wired Headphones,1,11.99,2019-12-15 11:56:00,523 Maple St, Los Angeles,CA,90001 +313159,20in Monitor,1,109.99,2019-12-16 16:20:00,918 Walnut St, Dallas,TX,75001 +313160,Wired Headphones,1,11.99,2019-12-14 00:21:00,791 13th St, San Francisco,CA,94016 +313161,Lightning Charging Cable,1,14.95,2019-12-11 12:16:00,548 River St, Seattle,WA,98101 +313162,AAA Batteries (4-pack),1,2.99,2019-12-13 18:39:00,627 Cherry St, Dallas,TX,75001 +313163,Lightning Charging Cable,1,14.95,2019-12-14 21:23:00,832 Forest St, San Francisco,CA,94016 +313164,AAA Batteries (4-pack),2,2.99,2019-12-26 07:50:00,261 Center St, Boston,MA,02215 +313165,iPhone,1,700.0,2019-12-22 18:36:00,483 Pine St, Atlanta,GA,30301 +313166,Google Phone,1,600.0,2019-12-18 16:01:00,808 Lincoln St, Dallas,TX,75001 +313167,USB-C Charging Cable,1,11.95,2019-12-30 19:00:00,800 Meadow St, Boston,MA,02215 +313168,iPhone,1,700.0,2019-12-04 16:07:00,329 Cedar St, Atlanta,GA,30301 +313168,Apple Airpods Headphones,1,150.0,2019-12-04 16:07:00,329 Cedar St, Atlanta,GA,30301 +313169,Bose SoundSport Headphones,1,99.99,2019-12-14 09:55:00,487 5th St, Portland,OR,97035 +313170,Wired Headphones,1,11.99,2019-12-16 13:31:00,669 River St, Los Angeles,CA,90001 +313171,USB-C Charging Cable,1,11.95,2019-12-21 10:22:00,95 11th St, New York City,NY,10001 +313172,Google Phone,1,600.0,2019-12-07 17:13:00,397 Lake St, San Francisco,CA,94016 +313173,34in Ultrawide Monitor,1,379.99,2019-12-10 15:27:00,829 Cherry St, Dallas,TX,75001 +313174,Bose SoundSport Headphones,1,99.99,2019-12-14 22:30:00,386 Forest St, San Francisco,CA,94016 +313175,Wired Headphones,1,11.99,2019-12-26 22:31:00,831 Highland St, Los Angeles,CA,90001 +313176,27in 4K Gaming Monitor,1,389.99,2019-12-26 11:38:00,321 7th St, Los Angeles,CA,90001 +313177,Lightning Charging Cable,1,14.95,2019-12-01 10:53:00,20 Jackson St, San Francisco,CA,94016 +313178,USB-C Charging Cable,1,11.95,2019-12-30 22:06:00,268 13th St, San Francisco,CA,94016 +313179,Wired Headphones,1,11.99,2019-12-05 07:17:00,789 Chestnut St, Los Angeles,CA,90001 +313180,Vareebadd Phone,1,400.0,2019-12-19 08:12:00,620 11th St, San Francisco,CA,94016 +313181,34in Ultrawide Monitor,1,379.99,2019-12-14 23:53:00,877 12th St, Los Angeles,CA,90001 +313182,Apple Airpods Headphones,1,150.0,2019-12-05 18:12:00,768 Forest St, San Francisco,CA,94016 +313183,Lightning Charging Cable,2,14.95,2019-12-03 20:49:00,775 Lake St, Boston,MA,02215 +313184,AAA Batteries (4-pack),1,2.99,2019-12-05 13:32:00,183 7th St, San Francisco,CA,94016 +313185,20in Monitor,1,109.99,2019-12-31 22:48:00,594 South St, San Francisco,CA,94016 +313186,Wired Headphones,1,11.99,2019-12-24 11:24:00,932 6th St, Los Angeles,CA,90001 +313187,Macbook Pro Laptop,1,1700.0,2019-12-29 06:52:00,165 Adams St, Portland,OR,97035 +313188,Flatscreen TV,1,300.0,2019-12-16 13:37:00,780 Hill St, Boston,MA,02215 +313189,Vareebadd Phone,1,400.0,2019-12-27 12:23:00,760 Hill St, San Francisco,CA,94016 +313189,USB-C Charging Cable,1,11.95,2019-12-27 12:23:00,760 Hill St, San Francisco,CA,94016 +313190,Lightning Charging Cable,1,14.95,2019-12-25 04:16:00,128 South St, San Francisco,CA,94016 +313191,Macbook Pro Laptop,1,1700.0,2019-12-11 19:57:00,57 7th St, Atlanta,GA,30301 +313192,Wired Headphones,1,11.99,2019-12-21 16:07:00,225 Spruce St, Los Angeles,CA,90001 +313193,AAA Batteries (4-pack),1,2.99,2019-12-19 12:43:00,271 5th St, New York City,NY,10001 +313194,AAA Batteries (4-pack),1,2.99,2019-12-10 11:08:00,814 11th St, Austin,TX,73301 +313195,Lightning Charging Cable,1,14.95,2019-12-04 13:40:00,37 6th St, Seattle,WA,98101 +313196,27in FHD Monitor,1,149.99,2019-12-20 12:33:00,960 Center St, Los Angeles,CA,90001 +313197,Lightning Charging Cable,1,14.95,2019-12-01 19:04:00,968 Lakeview St, San Francisco,CA,94016 +313198,Wired Headphones,1,11.99,2019-12-24 17:39:00,527 Johnson St, Atlanta,GA,30301 +313199,AAA Batteries (4-pack),3,2.99,2019-12-28 00:07:00,185 Washington St, San Francisco,CA,94016 +313200,USB-C Charging Cable,1,11.95,2019-12-06 10:33:00,172 Dogwood St, Boston,MA,02215 +313201,Bose SoundSport Headphones,1,99.99,2019-12-18 02:53:00,162 12th St, Portland,OR,97035 +313202,Apple Airpods Headphones,1,150.0,2019-12-29 17:53:00,870 2nd St, Los Angeles,CA,90001 +313203,Wired Headphones,1,11.99,2019-12-04 09:35:00,790 Ridge St, New York City,NY,10001 +313204,Apple Airpods Headphones,1,150.0,2019-12-26 19:24:00,272 Ridge St, San Francisco,CA,94016 +313205,Flatscreen TV,1,300.0,2019-12-28 21:22:00,79 4th St, Dallas,TX,75001 +313206,34in Ultrawide Monitor,1,379.99,2019-12-14 09:42:00,431 Spruce St, Los Angeles,CA,90001 +313207,Wired Headphones,1,11.99,2019-12-05 20:09:00,934 Madison St, Austin,TX,73301 +313208,USB-C Charging Cable,1,11.95,2019-12-19 19:50:00,755 11th St, Los Angeles,CA,90001 +313209,Apple Airpods Headphones,1,150.0,2019-12-19 02:19:00,810 Cherry St, Boston,MA,02215 +313210,Bose SoundSport Headphones,1,99.99,2019-12-04 15:28:00,930 12th St, Dallas,TX,75001 +313211,27in FHD Monitor,1,149.99,2019-12-01 21:32:00,228 Dogwood St, New York City,NY,10001 +313212,Wired Headphones,2,11.99,2019-12-05 10:06:00,204 Lincoln St, San Francisco,CA,94016 +313213,Wired Headphones,1,11.99,2019-12-09 22:37:00,568 Madison St, Los Angeles,CA,90001 +313214,AAA Batteries (4-pack),1,2.99,2019-12-25 21:00:00,25 Hill St, Seattle,WA,98101 +313215,27in 4K Gaming Monitor,1,389.99,2019-12-27 12:23:00,176 6th St, Portland,ME,04101 +313216,Lightning Charging Cable,1,14.95,2019-12-05 13:31:00,811 4th St, Los Angeles,CA,90001 +313217,ThinkPad Laptop,1,999.99,2019-12-29 08:58:00,274 Lakeview St, Los Angeles,CA,90001 +313218,AA Batteries (4-pack),1,3.84,2019-12-24 18:34:00,295 Chestnut St, San Francisco,CA,94016 +313219,Wired Headphones,1,11.99,2019-12-29 14:38:00,218 Lake St, San Francisco,CA,94016 +313220,Wired Headphones,1,11.99,2019-12-30 12:50:00,797 Walnut St, San Francisco,CA,94016 +313221,AA Batteries (4-pack),1,3.84,2019-12-16 21:13:00,870 Elm St, San Francisco,CA,94016 +313222,iPhone,1,700.0,2019-12-23 17:37:00,267 11th St, Los Angeles,CA,90001 +313222,Lightning Charging Cable,1,14.95,2019-12-23 17:37:00,267 11th St, Los Angeles,CA,90001 +313223,Bose SoundSport Headphones,1,99.99,2019-12-13 21:28:00,491 Adams St, Austin,TX,73301 +313224,AA Batteries (4-pack),1,3.84,2019-12-14 22:05:00,767 Sunset St, Los Angeles,CA,90001 +313225,USB-C Charging Cable,1,11.95,2019-12-22 12:39:00,757 Highland St, San Francisco,CA,94016 +313226,Wired Headphones,1,11.99,2019-12-25 14:20:00,188 Willow St, San Francisco,CA,94016 +313227,Lightning Charging Cable,1,14.95,2019-12-10 23:22:00,152 Spruce St, Portland,OR,97035 +313228,Flatscreen TV,1,300.0,2019-12-11 15:08:00,666 Highland St, New York City,NY,10001 +313229,Google Phone,1,600.0,2019-12-02 17:48:00,224 5th St, San Francisco,CA,94016 +313230,AAA Batteries (4-pack),1,2.99,2019-12-09 10:02:00,574 2nd St, San Francisco,CA,94016 +313231,Lightning Charging Cable,1,14.95,2019-12-28 04:34:00,710 Highland St, San Francisco,CA,94016 +313232,ThinkPad Laptop,1,999.99,2019-12-13 21:14:00,37 4th St, San Francisco,CA,94016 +313233,Wired Headphones,1,11.99,2019-12-25 18:11:00,873 7th St, Atlanta,GA,30301 +313234,Wired Headphones,2,11.99,2019-12-05 19:14:00,285 Madison St, New York City,NY,10001 +313235,iPhone,1,700.0,2019-12-15 21:09:00,648 6th St, Seattle,WA,98101 +313236,Wired Headphones,1,11.99,2019-12-11 19:09:00,297 Pine St, Atlanta,GA,30301 +313237,Lightning Charging Cable,1,14.95,2019-12-09 18:34:00,545 Ridge St, Los Angeles,CA,90001 +313238,USB-C Charging Cable,1,11.95,2019-12-10 19:00:00,857 11th St, San Francisco,CA,94016 +313239,27in 4K Gaming Monitor,1,389.99,2019-12-02 12:19:00,26 9th St, Boston,MA,02215 +313240,20in Monitor,1,109.99,2019-12-06 21:08:00,841 Main St, San Francisco,CA,94016 +313241,Bose SoundSport Headphones,1,99.99,2019-12-12 10:31:00,576 Lake St, New York City,NY,10001 +313242,AAA Batteries (4-pack),1,2.99,2019-12-16 19:10:00,559 Washington St, Austin,TX,73301 +313243,USB-C Charging Cable,1,11.95,2019-12-18 10:02:00,474 Spruce St, Seattle,WA,98101 +313244,27in 4K Gaming Monitor,1,389.99,2019-12-10 08:27:00,125 Elm St, San Francisco,CA,94016 +313245,Apple Airpods Headphones,1,150.0,2019-12-20 01:00:00,827 7th St, Dallas,TX,75001 +313246,Bose SoundSport Headphones,1,99.99,2019-12-05 20:19:00,990 Church St, Atlanta,GA,30301 +313247,USB-C Charging Cable,1,11.95,2019-12-20 10:53:00,767 Meadow St, Austin,TX,73301 +313247,Apple Airpods Headphones,1,150.0,2019-12-20 10:53:00,767 Meadow St, Austin,TX,73301 +313248,Bose SoundSport Headphones,1,99.99,2019-12-16 14:08:00,353 Hill St, Portland,OR,97035 +313249,34in Ultrawide Monitor,1,379.99,2019-12-02 13:39:00,633 Chestnut St, Portland,OR,97035 +313250,USB-C Charging Cable,2,11.95,2019-12-18 12:05:00,177 South St, San Francisco,CA,94016 +313251,Lightning Charging Cable,1,14.95,2019-12-22 10:16:00,754 9th St, New York City,NY,10001 +313252,AAA Batteries (4-pack),1,2.99,2019-12-19 07:08:00,969 Meadow St, Los Angeles,CA,90001 +313253,AAA Batteries (4-pack),1,2.99,2019-12-08 08:48:00,885 Hickory St, Austin,TX,73301 +313254,USB-C Charging Cable,2,11.95,2019-12-18 20:35:00,697 Sunset St, Boston,MA,02215 +313255,USB-C Charging Cable,1,11.95,2019-12-31 20:19:00,576 Lake St, Dallas,TX,75001 +313256,Apple Airpods Headphones,1,150.0,2019-12-03 21:17:00,8 Jefferson St, New York City,NY,10001 +313257,27in 4K Gaming Monitor,1,389.99,2019-12-01 20:59:00,448 8th St, Boston,MA,02215 +313258,AAA Batteries (4-pack),1,2.99,2019-12-02 13:32:00,247 Johnson St, Dallas,TX,75001 +313259,Lightning Charging Cable,1,14.95,2019-12-01 19:58:00,488 North St, New York City,NY,10001 +313260,AA Batteries (4-pack),1,3.84,2019-12-07 18:48:00,538 West St, Portland,ME,04101 +313261,27in FHD Monitor,1,149.99,2019-12-10 16:40:00,283 Willow St, Los Angeles,CA,90001 +313262,USB-C Charging Cable,1,11.95,2019-12-06 20:31:00,495 Sunset St, Atlanta,GA,30301 +313263,Bose SoundSport Headphones,1,99.99,2019-12-17 21:40:00,775 Hickory St, Los Angeles,CA,90001 +313264,27in 4K Gaming Monitor,1,389.99,2019-12-01 20:40:00,258 Adams St, New York City,NY,10001 +313265,27in FHD Monitor,1,149.99,2019-12-04 00:17:00,596 4th St, Portland,OR,97035 +313266,Apple Airpods Headphones,1,150.0,2019-12-13 11:18:00,545 12th St, Seattle,WA,98101 +313267,Bose SoundSport Headphones,1,99.99,2019-12-25 14:00:00,100 11th St, New York City,NY,10001 +313268,AAA Batteries (4-pack),1,2.99,2019-12-02 18:47:00,477 Cedar St, Boston,MA,02215 +313269,Wired Headphones,1,11.99,2019-12-01 19:19:00,428 11th St, Portland,ME,04101 +313270,iPhone,1,700.0,2019-12-28 19:48:00,982 Park St, Los Angeles,CA,90001 +313270,Lightning Charging Cable,1,14.95,2019-12-28 19:48:00,982 Park St, Los Angeles,CA,90001 +313271,Wired Headphones,1,11.99,2019-12-18 14:26:00,884 Walnut St, Dallas,TX,75001 +313272,20in Monitor,1,109.99,2019-12-10 09:55:00,528 10th St, Austin,TX,73301 +313273,AA Batteries (4-pack),1,3.84,2019-12-28 09:27:00,204 Chestnut St, Boston,MA,02215 +313274,AAA Batteries (4-pack),1,2.99,2019-12-11 15:30:00,652 Main St, Seattle,WA,98101 +313275,LG Dryer,1,600.0,2019-12-26 08:54:00,862 2nd St, New York City,NY,10001 +313276,Lightning Charging Cable,1,14.95,2019-12-15 21:16:00,200 Main St, San Francisco,CA,94016 +313277,Wired Headphones,1,11.99,2019-12-26 12:31:00,396 Center St, Austin,TX,73301 +313278,Flatscreen TV,1,300.0,2019-12-18 10:13:00,622 West St, Portland,OR,97035 +313279,Lightning Charging Cable,1,14.95,2019-12-14 17:17:00,957 Main St, San Francisco,CA,94016 +313280,27in FHD Monitor,1,149.99,2019-12-31 09:03:00,260 Willow St, New York City,NY,10001 +313281,iPhone,1,700.0,2019-12-11 16:14:00,653 Lincoln St, New York City,NY,10001 +313281,Wired Headphones,1,11.99,2019-12-11 16:14:00,653 Lincoln St, New York City,NY,10001 +313282,Apple Airpods Headphones,1,150.0,2019-12-18 22:01:00,350 Highland St, San Francisco,CA,94016 +313283,AA Batteries (4-pack),1,3.84,2019-12-03 11:33:00,175 Lakeview St, San Francisco,CA,94016 +313284,USB-C Charging Cable,1,11.95,2019-12-01 16:32:00,296 Chestnut St, Seattle,WA,98101 +313285,iPhone,1,700.0,2019-12-31 20:53:00,718 8th St, San Francisco,CA,94016 +313286,Flatscreen TV,1,300.0,2019-12-04 17:01:00,526 Dogwood St, Boston,MA,02215 +313287,27in FHD Monitor,1,149.99,2019-12-07 13:03:00,900 Main St, Los Angeles,CA,90001 +313288,Wired Headphones,1,11.99,2019-12-12 10:30:00,571 Church St, Boston,MA,02215 +313289,USB-C Charging Cable,1,11.95,2019-12-06 10:26:00,511 Hickory St, San Francisco,CA,94016 +313290,Wired Headphones,1,11.99,2019-12-27 16:06:00,415 9th St, San Francisco,CA,94016 +313291,Macbook Pro Laptop,1,1700.0,2019-12-26 20:36:00,984 Washington St, Los Angeles,CA,90001 +313292,USB-C Charging Cable,1,11.95,2019-12-25 16:03:00,198 Johnson St, New York City,NY,10001 +313293,USB-C Charging Cable,1,11.95,2019-12-29 21:50:00,589 8th St, San Francisco,CA,94016 +313294,USB-C Charging Cable,1,11.95,2019-12-10 11:50:00,990 Elm St, San Francisco,CA,94016 +313295,Apple Airpods Headphones,1,150.0,2019-12-22 19:20:00,774 Lakeview St, Seattle,WA,98101 +313296,Apple Airpods Headphones,1,150.0,2019-12-27 21:33:00,130 2nd St, Los Angeles,CA,90001 +313297,AAA Batteries (4-pack),1,2.99,2019-12-04 16:53:00,459 Jefferson St, San Francisco,CA,94016 +313298,USB-C Charging Cable,1,11.95,2019-12-05 17:40:00,410 8th St, Seattle,WA,98101 +313299,USB-C Charging Cable,1,11.95,2019-12-26 12:04:00,36 Cherry St, San Francisco,CA,94016 +313300,Lightning Charging Cable,1,14.95,2019-12-13 20:14:00,794 Hill St, San Francisco,CA,94016 +313301,Flatscreen TV,1,300.0,2019-12-18 22:27:00,105 Spruce St, San Francisco,CA,94016 +313302,27in 4K Gaming Monitor,1,389.99,2019-12-10 22:24:00,48 8th St, Austin,TX,73301 +313303,USB-C Charging Cable,1,11.95,2019-12-10 11:35:00,112 Madison St, Los Angeles,CA,90001 +313304,AAA Batteries (4-pack),1,2.99,2019-12-03 23:43:00,916 West St, San Francisco,CA,94016 +313305,34in Ultrawide Monitor,1,379.99,2019-12-08 18:25:00,915 Ridge St, Boston,MA,02215 +313306,AA Batteries (4-pack),1,3.84,2019-12-14 16:25:00,262 7th St, San Francisco,CA,94016 +313307,Apple Airpods Headphones,1,150.0,2019-12-10 21:01:00,895 Pine St, Dallas,TX,75001 +313308,AA Batteries (4-pack),1,3.84,2019-12-03 14:28:00,336 Jackson St, Dallas,TX,75001 +313309,Lightning Charging Cable,1,14.95,2019-12-03 10:14:00,582 Lake St, Los Angeles,CA,90001 +313310,AAA Batteries (4-pack),2,2.99,2019-12-19 02:03:00,23 1st St, Dallas,TX,75001 +313311,AA Batteries (4-pack),1,3.84,2019-12-11 19:08:00,273 14th St, New York City,NY,10001 +313312,27in FHD Monitor,1,149.99,2019-12-29 21:10:00,22 10th St, New York City,NY,10001 +313313,Wired Headphones,1,11.99,2019-12-06 11:48:00,516 Jefferson St, Dallas,TX,75001 +313314,Lightning Charging Cable,1,14.95,2019-12-27 14:23:00,187 Hill St, Seattle,WA,98101 +313315,Bose SoundSport Headphones,1,99.99,2019-12-21 06:30:00,172 5th St, Atlanta,GA,30301 +313316,iPhone,1,700.0,2019-12-05 21:26:00,316 Main St, Los Angeles,CA,90001 +313317,Apple Airpods Headphones,2,150.0,2019-12-29 19:28:00,910 4th St, New York City,NY,10001 +313318,Bose SoundSport Headphones,1,99.99,2019-12-02 20:11:00,149 12th St, Seattle,WA,98101 +313319,Lightning Charging Cable,1,14.95,2019-12-13 13:00:00,493 5th St, Boston,MA,02215 +313320,AAA Batteries (4-pack),1,2.99,2019-12-25 13:01:00,605 11th St, Portland,OR,97035 +313321,Vareebadd Phone,1,400.0,2019-12-13 17:48:00,321 South St, Dallas,TX,75001 +313322,Wired Headphones,2,11.99,2019-12-08 13:41:00,728 Lake St, New York City,NY,10001 +313323,AA Batteries (4-pack),1,3.84,2019-12-19 23:43:00,692 Maple St, San Francisco,CA,94016 +313323,USB-C Charging Cable,1,11.95,2019-12-19 23:43:00,692 Maple St, San Francisco,CA,94016 +313324,Bose SoundSport Headphones,1,99.99,2019-12-01 13:25:00,157 Madison St, Los Angeles,CA,90001 +313325,20in Monitor,1,109.99,2019-12-03 15:57:00,576 South St, Portland,OR,97035 +313326,AAA Batteries (4-pack),2,2.99,2019-12-02 17:12:00,269 6th St, San Francisco,CA,94016 +313327,Apple Airpods Headphones,1,150.0,2019-12-09 22:25:00,812 Elm St, New York City,NY,10001 +313328,Google Phone,1,600.0,2019-12-20 17:42:00,554 Jackson St, New York City,NY,10001 +313329,Wired Headphones,1,11.99,2019-12-30 23:20:00,680 5th St, Seattle,WA,98101 +313330,AAA Batteries (4-pack),1,2.99,2019-12-12 17:41:00,901 Sunset St, Boston,MA,02215 +313331,AAA Batteries (4-pack),2,2.99,2019-12-10 23:26:00,424 Dogwood St, San Francisco,CA,94016 +313332,Bose SoundSport Headphones,1,99.99,2019-12-02 12:39:00,753 Forest St, San Francisco,CA,94016 +313333,USB-C Charging Cable,1,11.95,2019-12-29 18:46:00,576 6th St, Austin,TX,73301 +313334,AAA Batteries (4-pack),1,2.99,2019-12-19 06:34:00,607 7th St, San Francisco,CA,94016 +313335,Macbook Pro Laptop,1,1700.0,2019-12-22 13:00:00,329 6th St, Dallas,TX,75001 +313336,USB-C Charging Cable,1,11.95,2019-12-25 19:31:00,284 Maple St, Austin,TX,73301 +313337,Lightning Charging Cable,1,14.95,2019-12-03 21:26:00,685 Lincoln St, New York City,NY,10001 +313338,Apple Airpods Headphones,1,150.0,2019-12-21 09:13:00,880 Forest St, New York City,NY,10001 +313339,Wired Headphones,1,11.99,2019-12-29 08:36:00,388 River St, Atlanta,GA,30301 +313340,Wired Headphones,1,11.99,2019-12-19 11:49:00,220 Ridge St, Portland,ME,04101 +313341,AA Batteries (4-pack),2,3.84,2019-12-26 20:18:00,547 North St, San Francisco,CA,94016 +313342,USB-C Charging Cable,1,11.95,2019-12-26 22:52:00,725 Meadow St, San Francisco,CA,94016 +313343,Apple Airpods Headphones,1,150.0,2019-12-13 21:24:00,731 West St, Dallas,TX,75001 +313344,AAA Batteries (4-pack),2,2.99,2019-12-18 13:55:00,595 8th St, New York City,NY,10001 +313345,AA Batteries (4-pack),2,3.84,2019-12-09 00:51:00,664 Forest St, San Francisco,CA,94016 +313346,34in Ultrawide Monitor,1,379.99,2019-12-17 20:56:00,24 10th St, Los Angeles,CA,90001 +313347,iPhone,1,700.0,2019-12-01 20:27:00,189 Ridge St, Atlanta,GA,30301 +313348,Apple Airpods Headphones,1,150.0,2019-12-31 16:34:00,630 Cedar St, Boston,MA,02215 +313349,Bose SoundSport Headphones,1,99.99,2019-12-15 07:37:00,2 Hill St, Atlanta,GA,30301 +313350,AAA Batteries (4-pack),2,2.99,2019-12-05 16:14:00,365 10th St, New York City,NY,10001 +313351,AAA Batteries (4-pack),1,2.99,2019-12-03 11:52:00,717 Cherry St, Los Angeles,CA,90001 +313352,Apple Airpods Headphones,1,150.0,2019-12-12 20:35:00,528 Lake St, Dallas,TX,75001 +313353,Apple Airpods Headphones,1,150.0,2019-12-31 12:58:00,259 Cherry St, Seattle,WA,98101 +313354,Flatscreen TV,1,300.0,2019-12-01 17:46:00,547 Church St, San Francisco,CA,94016 +313355,AAA Batteries (4-pack),1,2.99,2019-12-16 11:21:00,909 Maple St, San Francisco,CA,94016 +313356,AAA Batteries (4-pack),1,2.99,2019-12-26 12:36:00,629 1st St, Los Angeles,CA,90001 +313357,iPhone,1,700.0,2019-12-08 14:59:00,404 9th St, Seattle,WA,98101 +313358,AA Batteries (4-pack),1,3.84,2019-12-29 11:05:00,319 North St, New York City,NY,10001 +313359,AAA Batteries (4-pack),2,2.99,2019-12-29 19:21:00,930 Highland St, Austin,TX,73301 +313360,iPhone,1,700.0,2019-12-15 11:45:00,445 Madison St, Los Angeles,CA,90001 +313360,Lightning Charging Cable,1,14.95,2019-12-15 11:45:00,445 Madison St, Los Angeles,CA,90001 +313361,Wired Headphones,1,11.99,2019-12-10 18:49:00,648 6th St, Los Angeles,CA,90001 +313362,27in FHD Monitor,1,149.99,2019-12-24 19:41:00,164 11th St, Boston,MA,02215 +313363,USB-C Charging Cable,1,11.95,2019-12-16 12:01:00,209 Johnson St, Atlanta,GA,30301 +313364,Macbook Pro Laptop,1,1700.0,2019-12-22 22:06:00,913 Walnut St, New York City,NY,10001 +313365,USB-C Charging Cable,1,11.95,2019-12-22 22:49:00,578 5th St, Atlanta,GA,30301 +313366,20in Monitor,1,109.99,2019-12-21 12:16:00,394 2nd St, Atlanta,GA,30301 +313367,AAA Batteries (4-pack),1,2.99,2019-12-13 12:24:00,281 Main St, Dallas,TX,75001 +313368,ThinkPad Laptop,1,999.99,2019-12-25 16:18:00,594 Wilson St, Boston,MA,02215 +313369,Google Phone,1,600.0,2019-12-13 11:36:00,715 7th St, San Francisco,CA,94016 +313370,AAA Batteries (4-pack),3,2.99,2019-12-24 20:16:00,808 Walnut St, Dallas,TX,75001 +313371,Google Phone,1,600.0,2019-12-20 17:59:00,79 Park St, Seattle,WA,98101 +313372,AA Batteries (4-pack),1,3.84,2019-12-13 21:59:00,423 Forest St, Los Angeles,CA,90001 +313373,Vareebadd Phone,1,400.0,2019-12-30 21:16:00,991 1st St, Los Angeles,CA,90001 +313374,AA Batteries (4-pack),3,3.84,2019-12-03 20:42:00,19 Dogwood St, San Francisco,CA,94016 +313375,USB-C Charging Cable,1,11.95,2019-12-26 22:10:00,85 10th St, Seattle,WA,98101 +313376,Flatscreen TV,1,300.0,2019-12-24 12:00:00,319 Center St, San Francisco,CA,94016 +313377,AAA Batteries (4-pack),3,2.99,2019-12-17 23:31:00,122 2nd St, Los Angeles,CA,90001 +313378,AAA Batteries (4-pack),5,2.99,2019-12-26 21:01:00,447 8th St, Dallas,TX,75001 +313379,Apple Airpods Headphones,1,150.0,2019-12-05 23:11:00,354 Wilson St, Boston,MA,02215 +313380,Wired Headphones,1,11.99,2019-12-10 19:14:00,678 11th St, New York City,NY,10001 +313381,ThinkPad Laptop,1,999.99,2019-12-31 19:45:00,208 Cherry St, Atlanta,GA,30301 +313382,Bose SoundSport Headphones,1,99.99,2019-12-21 21:07:00,737 7th St, Boston,MA,02215 +313383,AAA Batteries (4-pack),1,2.99,2019-12-23 09:26:00,314 Wilson St, Los Angeles,CA,90001 +313384,AAA Batteries (4-pack),1,2.99,2019-12-15 18:39:00,238 Lakeview St, Atlanta,GA,30301 +313385,iPhone,1,700.0,2019-12-23 10:04:00,8 Sunset St, Los Angeles,CA,90001 +313385,Apple Airpods Headphones,1,150.0,2019-12-23 10:04:00,8 Sunset St, Los Angeles,CA,90001 +313386,AAA Batteries (4-pack),1,2.99,2019-12-15 06:19:00,510 River St, Austin,TX,73301 +313387,Bose SoundSport Headphones,1,99.99,2019-12-04 21:04:00,229 8th St, Seattle,WA,98101 +313388,27in FHD Monitor,1,149.99,2019-12-09 15:24:00,509 Elm St, Los Angeles,CA,90001 +313389,AAA Batteries (4-pack),1,2.99,2019-12-07 11:40:00,960 Chestnut St, Austin,TX,73301 +313390,Bose SoundSport Headphones,1,99.99,2019-12-13 01:50:00,334 Hickory St, New York City,NY,10001 +313391,27in FHD Monitor,1,149.99,2019-12-28 21:47:00,833 Main St, Austin,TX,73301 +313392,AA Batteries (4-pack),1,3.84,2019-12-26 10:23:00,997 Center St, Atlanta,GA,30301 +313393,34in Ultrawide Monitor,1,379.99,2019-12-19 05:26:00,513 Lincoln St, San Francisco,CA,94016 +313394,Lightning Charging Cable,1,14.95,2019-12-28 16:01:00,417 Lakeview St, Los Angeles,CA,90001 +313395,Bose SoundSport Headphones,1,99.99,2019-12-18 23:50:00,972 Maple St, Dallas,TX,75001 +313396,AA Batteries (4-pack),1,3.84,2019-12-15 23:53:00,505 Elm St, Austin,TX,73301 +313397,Wired Headphones,1,11.99,2019-12-18 12:34:00,63 5th St, Los Angeles,CA,90001 +313398,Bose SoundSport Headphones,1,99.99,2019-12-27 07:44:00,993 Lakeview St, Los Angeles,CA,90001 +313399,AA Batteries (4-pack),1,3.84,2019-12-27 09:51:00,886 Church St, Los Angeles,CA,90001 +313400,AAA Batteries (4-pack),1,2.99,2019-12-29 09:17:00,586 Church St, Los Angeles,CA,90001 +313401,AA Batteries (4-pack),1,3.84,2019-12-15 14:52:00,142 13th St, Los Angeles,CA,90001 +313402,USB-C Charging Cable,1,11.95,2019-12-10 03:17:00,309 Jefferson St, San Francisco,CA,94016 +313403,27in 4K Gaming Monitor,1,389.99,2019-12-31 22:32:00,927 Main St, San Francisco,CA,94016 +313404,Macbook Pro Laptop,1,1700.0,2019-12-16 09:29:00,227 Spruce St, Dallas,TX,75001 +313405,USB-C Charging Cable,1,11.95,2019-12-28 19:21:00,69 Spruce St, New York City,NY,10001 +313406,AA Batteries (4-pack),2,3.84,2019-12-25 13:03:00,176 Ridge St, Austin,TX,73301 +313407,Wired Headphones,1,11.99,2019-12-02 14:46:00,234 13th St, San Francisco,CA,94016 +313408,Apple Airpods Headphones,1,150.0,2019-12-27 10:20:00,72 Jackson St, New York City,NY,10001 +313409,USB-C Charging Cable,1,11.95,2019-12-25 06:48:00,697 Cherry St, San Francisco,CA,94016 +313410,Wired Headphones,1,11.99,2019-12-27 19:47:00,6 Hill St, San Francisco,CA,94016 +313411,Apple Airpods Headphones,1,150.0,2019-12-03 18:32:00,723 Meadow St, Portland,OR,97035 +313412,Google Phone,1,600.0,2019-12-06 22:31:00,459 4th St, New York City,NY,10001 +313413,Bose SoundSport Headphones,1,99.99,2019-12-21 13:31:00,285 Jackson St, Seattle,WA,98101 +313414,AAA Batteries (4-pack),1,2.99,2019-12-24 19:57:00,278 Cherry St, Seattle,WA,98101 +313415,AA Batteries (4-pack),1,3.84,2019-12-19 20:19:00,967 9th St, Dallas,TX,75001 +313416,Wired Headphones,1,11.99,2019-12-17 18:15:00,121 Jackson St, San Francisco,CA,94016 +313417,AA Batteries (4-pack),2,3.84,2019-12-30 20:07:00,148 10th St, Austin,TX,73301 +313418,AAA Batteries (4-pack),2,2.99,2019-12-27 19:09:00,977 West St, San Francisco,CA,94016 +313419,AAA Batteries (4-pack),1,2.99,2019-12-16 19:03:00,340 Johnson St, Dallas,TX,75001 +313420,AA Batteries (4-pack),2,3.84,2019-12-01 18:00:00,393 Madison St, San Francisco,CA,94016 +313421,AA Batteries (4-pack),1,3.84,2019-12-14 20:11:00,222 Cherry St, Austin,TX,73301 +313422,27in FHD Monitor,1,149.99,2019-12-15 16:29:00,256 Willow St, Austin,TX,73301 +313423,USB-C Charging Cable,1,11.95,2019-12-24 12:05:00,782 Dogwood St, Dallas,TX,75001 +313424,AA Batteries (4-pack),1,3.84,2019-12-04 15:29:00,859 Main St, New York City,NY,10001 +313425,Google Phone,1,600.0,2019-12-20 21:55:00,570 13th St, San Francisco,CA,94016 +313425,AA Batteries (4-pack),1,3.84,2019-12-20 21:55:00,570 13th St, San Francisco,CA,94016 +313426,AAA Batteries (4-pack),1,2.99,2019-12-22 13:17:00,807 River St, New York City,NY,10001 +313427,ThinkPad Laptop,1,999.99,2019-12-12 10:32:00,444 Hill St, Portland,OR,97035 +313428,Bose SoundSport Headphones,1,99.99,2019-12-06 16:31:00,92 Elm St, San Francisco,CA,94016 +313429,Apple Airpods Headphones,1,150.0,2019-12-16 18:52:00,93 South St, Portland,OR,97035 +313430,ThinkPad Laptop,1,999.99,2019-12-02 22:47:00,550 Willow St, New York City,NY,10001 +313431,Lightning Charging Cable,1,14.95,2019-12-04 15:23:00,697 11th St, New York City,NY,10001 +313432,27in 4K Gaming Monitor,1,389.99,2019-12-29 18:40:00,518 Jefferson St, Portland,OR,97035 +313433,USB-C Charging Cable,2,11.95,2019-12-17 18:20:00,639 13th St, Atlanta,GA,30301 +313434,USB-C Charging Cable,1,11.95,2019-12-27 22:34:00,595 Meadow St, Boston,MA,02215 +313435,Google Phone,1,600.0,2019-12-05 23:03:00,804 Meadow St, New York City,NY,10001 +313436,AA Batteries (4-pack),1,3.84,2019-12-20 12:12:00,796 North St, Los Angeles,CA,90001 +313437,ThinkPad Laptop,1,999.99,2019-12-28 20:36:00,454 5th St, Portland,ME,04101 +313438,USB-C Charging Cable,1,11.95,2019-12-22 08:55:00,279 1st St, San Francisco,CA,94016 +313439,20in Monitor,1,109.99,2019-12-01 13:42:00,554 Sunset St, Los Angeles,CA,90001 +313440,USB-C Charging Cable,1,11.95,2019-12-16 22:56:00,343 Wilson St, Dallas,TX,75001 +313441,Apple Airpods Headphones,1,150.0,2019-12-14 10:33:00,952 Hill St, Dallas,TX,75001 +313442,AA Batteries (4-pack),1,3.84,2019-12-26 20:45:00,991 Willow St, Los Angeles,CA,90001 +313443,ThinkPad Laptop,1,999.99,2019-12-23 10:06:00,509 Dogwood St, Seattle,WA,98101 +313444,34in Ultrawide Monitor,1,379.99,2019-12-19 12:07:00,964 Hickory St, Portland,ME,04101 +313445,Bose SoundSport Headphones,1,99.99,2019-12-23 15:47:00,417 River St, Dallas,TX,75001 +313446,AA Batteries (4-pack),1,3.84,2019-12-17 10:32:00,717 Main St, Dallas,TX,75001 +313447,AAA Batteries (4-pack),1,2.99,2019-12-06 20:03:00,778 11th St, Dallas,TX,75001 +313448,Lightning Charging Cable,1,14.95,2019-12-21 16:41:00,25 Lake St, Atlanta,GA,30301 +313449,ThinkPad Laptop,1,999.99,2019-12-01 05:07:00,279 Jefferson St, New York City,NY,10001 +313450,27in 4K Gaming Monitor,1,389.99,2019-12-02 01:17:00,596 8th St, Austin,TX,73301 +313451,Apple Airpods Headphones,1,150.0,2019-12-07 11:40:00,625 Hill St, San Francisco,CA,94016 +313452,Lightning Charging Cable,1,14.95,2019-12-10 19:14:00,581 Willow St, Boston,MA,02215 +313453,Bose SoundSport Headphones,1,99.99,2019-12-21 15:16:00,387 Church St, Los Angeles,CA,90001 +313454,Apple Airpods Headphones,1,150.0,2019-12-04 10:02:00,793 Dogwood St, Seattle,WA,98101 +313455,27in FHD Monitor,1,149.99,2019-12-28 22:21:00,575 Center St, Los Angeles,CA,90001 +313456,Lightning Charging Cable,1,14.95,2019-12-11 18:27:00,199 4th St, San Francisco,CA,94016 +313457,USB-C Charging Cable,1,11.95,2019-12-10 09:45:00,199 12th St, Seattle,WA,98101 +313458,Apple Airpods Headphones,1,150.0,2019-12-30 06:52:00,132 Washington St, New York City,NY,10001 +313459,Wired Headphones,1,11.99,2019-12-16 15:35:00,559 12th St, Boston,MA,02215 +313460,27in 4K Gaming Monitor,1,389.99,2019-12-29 06:32:00,559 Adams St, New York City,NY,10001 +313461,Lightning Charging Cable,1,14.95,2019-12-17 18:28:00,169 Johnson St, San Francisco,CA,94016 +313462,Lightning Charging Cable,1,14.95,2019-12-03 10:26:00,427 Park St, San Francisco,CA,94016 +313463,USB-C Charging Cable,1,11.95,2019-12-05 17:41:00,400 Jackson St, Seattle,WA,98101 +313464,USB-C Charging Cable,1,11.95,2019-12-10 19:17:00,355 Maple St, Atlanta,GA,30301 +313465,Lightning Charging Cable,2,14.95,2019-12-17 10:17:00,111 4th St, Los Angeles,CA,90001 +313466,iPhone,1,700.0,2019-12-01 20:18:00,189 Center St, Atlanta,GA,30301 +313467,AA Batteries (4-pack),1,3.84,2019-12-28 14:11:00,276 Meadow St, Boston,MA,02215 +313468,27in FHD Monitor,1,149.99,2019-12-20 14:30:00,687 12th St, New York City,NY,10001 +313469,Apple Airpods Headphones,1,150.0,2019-12-24 12:46:00,366 Adams St, Austin,TX,73301 +313470,Google Phone,1,600.0,2019-12-26 16:30:00,718 Willow St, San Francisco,CA,94016 +313471,AAA Batteries (4-pack),2,2.99,2019-12-29 14:31:00,201 Willow St, Dallas,TX,75001 +313472,Bose SoundSport Headphones,1,99.99,2019-12-27 23:46:00,232 Madison St, Portland,OR,97035 +313473,iPhone,1,700.0,2019-12-17 07:53:00,845 5th St, Dallas,TX,75001 +313474,Wired Headphones,1,11.99,2019-12-16 10:36:00,770 Wilson St, Los Angeles,CA,90001 +313475,USB-C Charging Cable,1,11.95,2019-12-29 06:05:00,465 Forest St, Los Angeles,CA,90001 +313476,ThinkPad Laptop,1,999.99,2019-12-14 22:55:00,821 Lakeview St, Boston,MA,02215 +313477,27in FHD Monitor,1,149.99,2019-12-28 08:54:00,586 North St, Boston,MA,02215 +313478,AAA Batteries (4-pack),1,2.99,2019-12-18 16:18:00,269 West St, San Francisco,CA,94016 +313479,USB-C Charging Cable,1,11.95,2019-12-19 23:33:00,943 Cherry St, New York City,NY,10001 +313480,USB-C Charging Cable,2,11.95,2019-12-19 19:46:00,539 Johnson St, Atlanta,GA,30301 +313481,USB-C Charging Cable,1,11.95,2019-12-15 11:36:00,238 10th St, New York City,NY,10001 +313482,Apple Airpods Headphones,1,150.0,2019-12-03 22:04:00,102 Center St, Austin,TX,73301 +313483,AA Batteries (4-pack),1,3.84,2019-12-24 10:25:00,393 Elm St, Dallas,TX,75001 +313484,AAA Batteries (4-pack),1,2.99,2019-12-19 17:08:00,588 Wilson St, Boston,MA,02215 +313485,34in Ultrawide Monitor,1,379.99,2019-12-02 11:38:00,353 1st St, Los Angeles,CA,90001 +313486,Lightning Charging Cable,1,14.95,2019-12-07 15:55:00,565 Adams St, Los Angeles,CA,90001 +313487,AAA Batteries (4-pack),1,2.99,2019-12-01 20:11:00,728 Johnson St, San Francisco,CA,94016 +313488,USB-C Charging Cable,1,11.95,2019-12-10 14:21:00,600 Lincoln St, Boston,MA,02215 +313489,AA Batteries (4-pack),2,3.84,2019-12-23 10:55:00,876 Park St, Austin,TX,73301 +313490,AAA Batteries (4-pack),1,2.99,2019-12-16 22:26:00,513 Willow St, Boston,MA,02215 +313490,Macbook Pro Laptop,1,1700.0,2019-12-16 22:26:00,513 Willow St, Boston,MA,02215 +313491,USB-C Charging Cable,2,11.95,2019-12-30 12:05:00,898 9th St, New York City,NY,10001 +313492,Macbook Pro Laptop,1,1700.0,2019-12-17 14:55:00,298 Lincoln St, Los Angeles,CA,90001 +313493,ThinkPad Laptop,1,999.99,2019-12-15 22:23:00,211 South St, Los Angeles,CA,90001 +313494,ThinkPad Laptop,1,999.99,2019-12-23 07:54:00,909 West St, New York City,NY,10001 +313495,USB-C Charging Cable,1,11.95,2019-12-28 16:45:00,245 Lincoln St, Dallas,TX,75001 +313496,USB-C Charging Cable,1,11.95,2019-12-21 10:45:00,947 Ridge St, Atlanta,GA,30301 +313497,USB-C Charging Cable,1,11.95,2019-12-24 18:17:00,488 Maple St, Boston,MA,02215 +313498,Wired Headphones,1,11.99,2019-12-25 17:23:00,269 5th St, San Francisco,CA,94016 +313499,USB-C Charging Cable,1,11.95,2019-12-23 01:01:00,90 12th St, Boston,MA,02215 +313500,34in Ultrawide Monitor,1,379.99,2019-12-17 13:24:00,484 11th St, Dallas,TX,75001 +313501,Bose SoundSport Headphones,1,99.99,2019-12-19 20:47:00,858 5th St, Seattle,WA,98101 +313502,Lightning Charging Cable,1,14.95,2019-12-08 13:04:00,637 North St, San Francisco,CA,94016 +313503,AAA Batteries (4-pack),1,2.99,2019-12-26 08:19:00,270 Dogwood St, New York City,NY,10001 +313504,LG Dryer,1,600.0,2019-12-22 15:24:00,469 Chestnut St, Boston,MA,02215 +313505,Google Phone,1,600.0,2019-12-04 12:10:00,293 Park St, San Francisco,CA,94016 +313506,34in Ultrawide Monitor,1,379.99,2019-12-29 14:47:00,50 Chestnut St, New York City,NY,10001 +313507,AAA Batteries (4-pack),1,2.99,2019-12-12 17:54:00,28 Johnson St, Los Angeles,CA,90001 +313508,Lightning Charging Cable,1,14.95,2019-12-09 06:45:00,730 14th St, Dallas,TX,75001 +313509,Wired Headphones,1,11.99,2019-12-12 22:31:00,900 South St, San Francisco,CA,94016 +313510,AAA Batteries (4-pack),1,2.99,2019-12-09 12:15:00,377 12th St, San Francisco,CA,94016 +313511,AAA Batteries (4-pack),2,2.99,2019-12-29 19:01:00,188 8th St, Los Angeles,CA,90001 +313512,Apple Airpods Headphones,1,150.0,2019-12-18 19:52:00,494 Jackson St, Los Angeles,CA,90001 +313513,Lightning Charging Cable,1,14.95,2019-12-23 04:19:00,167 Highland St, Los Angeles,CA,90001 +313514,Macbook Pro Laptop,1,1700.0,2019-12-12 14:02:00,909 Maple St, Dallas,TX,75001 +313515,AA Batteries (4-pack),1,3.84,2019-12-04 15:09:00,91 Hill St, Portland,OR,97035 +313516,LG Washing Machine,1,600.0,2019-12-14 12:15:00,414 1st St, Boston,MA,02215 +313517,Apple Airpods Headphones,1,150.0,2019-12-30 15:20:00,248 Lincoln St, Austin,TX,73301 +313518,Bose SoundSport Headphones,1,99.99,2019-12-18 22:23:00,341 7th St, San Francisco,CA,94016 +313519,Lightning Charging Cable,1,14.95,2019-12-17 12:33:00,87 Dogwood St, Los Angeles,CA,90001 +313520,AA Batteries (4-pack),1,3.84,2019-12-20 13:46:00,112 Lakeview St, New York City,NY,10001 +313521,iPhone,1,700.0,2019-12-31 19:55:00,903 Jefferson St, Los Angeles,CA,90001 +313522,AA Batteries (4-pack),1,3.84,2019-12-28 20:34:00,891 Adams St, Portland,OR,97035 +313523,27in FHD Monitor,1,149.99,2019-12-04 20:55:00,200 Center St, San Francisco,CA,94016 +313523,Lightning Charging Cable,1,14.95,2019-12-04 20:55:00,200 Center St, San Francisco,CA,94016 +313524,27in FHD Monitor,1,149.99,2019-12-27 08:43:00,54 Maple St, New York City,NY,10001 +313525,AAA Batteries (4-pack),1,2.99,2019-12-07 14:32:00,17 Washington St, Portland,OR,97035 +313526,27in FHD Monitor,1,149.99,2019-12-07 16:19:00,541 Chestnut St, San Francisco,CA,94016 +313527,Google Phone,1,600.0,2019-12-03 14:15:00,420 Park St, Boston,MA,02215 +313528,USB-C Charging Cable,2,11.95,2019-12-29 19:36:00,29 5th St, Seattle,WA,98101 +313529,AA Batteries (4-pack),1,3.84,2019-12-03 06:15:00,21 5th St, San Francisco,CA,94016 +313530,USB-C Charging Cable,1,11.95,2019-12-29 20:13:00,683 Center St, Boston,MA,02215 +313531,Bose SoundSport Headphones,1,99.99,2019-12-07 20:47:00,814 Walnut St, Los Angeles,CA,90001 +313532,Wired Headphones,1,11.99,2019-12-26 20:36:00,703 Spruce St, San Francisco,CA,94016 +313533,Apple Airpods Headphones,1,150.0,2019-12-18 13:35:00,884 Adams St, Los Angeles,CA,90001 +313534,iPhone,1,700.0,2019-12-03 12:14:00,957 Hickory St, New York City,NY,10001 +313535,Google Phone,1,600.0,2019-12-12 13:36:00,487 Cedar St, San Francisco,CA,94016 +313536,34in Ultrawide Monitor,1,379.99,2019-12-09 00:20:00,216 Elm St, Seattle,WA,98101 +313537,27in 4K Gaming Monitor,1,389.99,2019-12-06 11:51:00,415 Jackson St, New York City,NY,10001 +313538,ThinkPad Laptop,1,999.99,2019-12-29 22:29:00,58 5th St, Boston,MA,02215 +313539,27in 4K Gaming Monitor,1,389.99,2019-12-30 08:59:00,93 Sunset St, San Francisco,CA,94016 +313540,Google Phone,1,600.0,2019-12-24 13:37:00,243 Wilson St, Los Angeles,CA,90001 +313541,Lightning Charging Cable,1,14.95,2019-12-31 17:10:00,835 1st St, Austin,TX,73301 +313541,USB-C Charging Cable,1,11.95,2019-12-31 17:10:00,835 1st St, Austin,TX,73301 +313542,AAA Batteries (4-pack),1,2.99,2019-12-26 21:45:00,234 Highland St, Atlanta,GA,30301 +313543,USB-C Charging Cable,1,11.95,2019-12-21 18:36:00,630 Lincoln St, Portland,OR,97035 +313544,Flatscreen TV,1,300.0,2019-12-06 13:49:00,409 Forest St, San Francisco,CA,94016 +313545,USB-C Charging Cable,1,11.95,2019-12-25 23:01:00,63 11th St, New York City,NY,10001 +313546,AA Batteries (4-pack),2,3.84,2019-12-25 13:22:00,23 Willow St, Dallas,TX,75001 +313547,27in 4K Gaming Monitor,1,389.99,2019-12-24 00:10:00,836 Spruce St, New York City,NY,10001 +313548,LG Dryer,1,600.0,2019-12-10 15:47:00,521 7th St, San Francisco,CA,94016 +313549,AA Batteries (4-pack),1,3.84,2019-12-15 14:11:00,670 7th St, Los Angeles,CA,90001 +313550,Apple Airpods Headphones,1,150.0,2019-12-26 11:18:00,876 13th St, Dallas,TX,75001 +313551,Google Phone,1,600.0,2019-12-12 01:50:00,20 Walnut St, San Francisco,CA,94016 +313552,Wired Headphones,1,11.99,2019-12-17 19:01:00,432 2nd St, San Francisco,CA,94016 +313553,ThinkPad Laptop,1,999.99,2019-12-05 08:42:00,945 Hickory St, Los Angeles,CA,90001 +313554,iPhone,1,700.0,2019-12-09 20:13:00,144 Wilson St, Los Angeles,CA,90001 +313555,Apple Airpods Headphones,1,150.0,2019-12-03 20:17:00,930 Cherry St, San Francisco,CA,94016 +313556,20in Monitor,1,109.99,2019-12-16 00:52:00,426 Adams St, New York City,NY,10001 +313557,Wired Headphones,1,11.99,2019-12-22 10:44:00,949 Adams St, San Francisco,CA,94016 +313558,USB-C Charging Cable,1,11.95,2019-12-19 18:38:00,580 Hickory St, Boston,MA,02215 +313559,Lightning Charging Cable,1,14.95,2019-12-10 18:15:00,962 Ridge St, New York City,NY,10001 +313560,ThinkPad Laptop,1,999.99,2019-12-11 19:12:00,576 Hill St, Atlanta,GA,30301 +313561,Apple Airpods Headphones,1,150.0,2019-12-21 11:08:00,349 River St, Los Angeles,CA,90001 +313562,27in FHD Monitor,1,149.99,2019-12-28 19:56:00,332 Highland St, San Francisco,CA,94016 +313563,Lightning Charging Cable,1,14.95,2019-12-17 22:07:00,523 Church St, New York City,NY,10001 +313564,AAA Batteries (4-pack),3,2.99,2019-12-02 17:01:00,20 West St, Los Angeles,CA,90001 +313565,Lightning Charging Cable,1,14.95,2019-12-15 19:44:00,13 12th St, Seattle,WA,98101 +313566,27in FHD Monitor,1,149.99,2019-12-01 23:53:00,607 Main St, Dallas,TX,75001 +313567,Lightning Charging Cable,1,14.95,2019-12-06 20:16:00,690 Jefferson St, Los Angeles,CA,90001 +313568,Google Phone,1,600.0,2019-12-10 10:37:00,819 South St, New York City,NY,10001 +313569,Apple Airpods Headphones,1,150.0,2019-12-21 15:04:00,652 River St, San Francisco,CA,94016 +313570,AA Batteries (4-pack),1,3.84,2019-12-25 23:43:00,89 10th St, New York City,NY,10001 +313571,34in Ultrawide Monitor,1,379.99,2019-12-30 12:21:00,86 14th St, Atlanta,GA,30301 +313572,AAA Batteries (4-pack),2,2.99,2019-12-31 11:31:00,31 9th St, Portland,ME,04101 +313573,Wired Headphones,1,11.99,2019-12-24 11:04:00,867 Walnut St, San Francisco,CA,94016 +313574,Bose SoundSport Headphones,1,99.99,2019-12-21 13:03:00,51 North St, Austin,TX,73301 +313575,Bose SoundSport Headphones,1,99.99,2019-12-16 16:44:00,838 Lincoln St, Austin,TX,73301 +313576,AAA Batteries (4-pack),1,2.99,2019-12-16 10:36:00,84 Madison St, Austin,TX,73301 +313577,USB-C Charging Cable,1,11.95,2019-12-05 14:08:00,851 Sunset St, Dallas,TX,75001 +313578,Apple Airpods Headphones,1,150.0,2019-12-25 08:26:00,281 Walnut St, San Francisco,CA,94016 +313579,Lightning Charging Cable,1,14.95,2019-12-13 19:14:00,307 Center St, San Francisco,CA,94016 +313580,AAA Batteries (4-pack),2,2.99,2019-12-12 11:08:00,787 7th St, Portland,OR,97035 +313581,AA Batteries (4-pack),1,3.84,2019-12-22 22:27:00,406 Cherry St, San Francisco,CA,94016 +313582,USB-C Charging Cable,1,11.95,2019-12-29 13:10:00,440 Lakeview St, Dallas,TX,75001 +313583,Flatscreen TV,1,300.0,2019-12-08 17:00:00,283 Adams St, San Francisco,CA,94016 +313584,AA Batteries (4-pack),3,3.84,2019-12-30 15:27:00,120 South St, Seattle,WA,98101 +313585,Macbook Pro Laptop,1,1700.0,2019-12-04 15:44:00,747 South St, Atlanta,GA,30301 +313586,AAA Batteries (4-pack),1,2.99,2019-12-19 17:21:00,54 Madison St, Seattle,WA,98101 +313587,Wired Headphones,1,11.99,2019-12-03 13:40:00,568 Pine St, New York City,NY,10001 +313588,AAA Batteries (4-pack),4,2.99,2019-12-20 14:59:00,701 Forest St, Portland,OR,97035 +313589,Lightning Charging Cable,1,14.95,2019-12-11 17:13:00,287 1st St, San Francisco,CA,94016 +313590,AA Batteries (4-pack),1,3.84,2019-12-23 19:15:00,861 Adams St, San Francisco,CA,94016 +313591,AAA Batteries (4-pack),1,2.99,2019-12-17 04:56:00,14 Lakeview St, San Francisco,CA,94016 +313592,iPhone,1,700.0,2019-12-02 21:53:00,816 2nd St, Los Angeles,CA,90001 +313593,34in Ultrawide Monitor,1,379.99,2019-12-08 15:17:00,888 Hill St, Seattle,WA,98101 +313594,AAA Batteries (4-pack),1,2.99,2019-12-05 09:11:00,685 Elm St, Boston,MA,02215 +313595,Apple Airpods Headphones,1,150.0,2019-12-23 12:13:00,910 12th St, New York City,NY,10001 +313596,Lightning Charging Cable,1,14.95,2019-12-05 13:45:00,549 12th St, Los Angeles,CA,90001 +313597,27in 4K Gaming Monitor,1,389.99,2019-12-14 14:24:00,223 8th St, Austin,TX,73301 +313598,Lightning Charging Cable,1,14.95,2019-12-14 10:39:00,519 Wilson St, San Francisco,CA,94016 +313599,AAA Batteries (4-pack),3,2.99,2019-12-15 18:36:00,727 7th St, New York City,NY,10001 +313600,Google Phone,1,600.0,2019-12-23 19:30:00,503 Cherry St, Dallas,TX,75001 +313601,LG Dryer,1,600.0,2019-12-16 06:51:00,645 Lincoln St, Austin,TX,73301 +313602,Wired Headphones,1,11.99,2019-12-14 20:51:00,773 Maple St, San Francisco,CA,94016 +313603,Lightning Charging Cable,1,14.95,2019-12-27 14:44:00,254 West St, Atlanta,GA,30301 +313604,USB-C Charging Cable,1,11.95,2019-12-20 13:49:00,6 River St, San Francisco,CA,94016 +313605,27in 4K Gaming Monitor,1,389.99,2019-12-26 20:02:00,129 Lake St, Atlanta,GA,30301 +313606,iPhone,1,700.0,2019-12-16 10:23:00,546 Adams St, New York City,NY,10001 +313607,27in FHD Monitor,1,149.99,2019-12-03 21:26:00,106 Lincoln St, Boston,MA,02215 +313608,27in FHD Monitor,1,149.99,2019-12-28 16:00:00,799 Spruce St, Dallas,TX,75001 +313609,Wired Headphones,1,11.99,2019-12-06 20:43:00,356 Johnson St, Portland,OR,97035 +313610,USB-C Charging Cable,1,11.95,2019-12-28 10:46:00,923 Lincoln St, Los Angeles,CA,90001 +313611,USB-C Charging Cable,1,11.95,2019-12-19 21:21:00,95 Jackson St, Seattle,WA,98101 +313612,Google Phone,1,600.0,2019-12-22 16:40:00,161 1st St, Atlanta,GA,30301 +313612,Bose SoundSport Headphones,1,99.99,2019-12-22 16:40:00,161 1st St, Atlanta,GA,30301 +313613,Apple Airpods Headphones,1,150.0,2019-12-26 21:59:00,444 Chestnut St, San Francisco,CA,94016 +313614,34in Ultrawide Monitor,1,379.99,2019-12-20 12:25:00,43 River St, Austin,TX,73301 +313615,34in Ultrawide Monitor,1,379.99,2019-12-24 07:54:00,563 Lincoln St, Portland,OR,97035 +313616,USB-C Charging Cable,2,11.95,2019-12-30 07:06:00,696 Park St, Los Angeles,CA,90001 +313617,AAA Batteries (4-pack),1,2.99,2019-12-08 19:27:00,195 Madison St, Los Angeles,CA,90001 +313618,27in 4K Gaming Monitor,1,389.99,2019-12-13 13:20:00,102 Cherry St, San Francisco,CA,94016 +313618,AA Batteries (4-pack),1,3.84,2019-12-13 13:20:00,102 Cherry St, San Francisco,CA,94016 +313619,Bose SoundSport Headphones,1,99.99,2019-12-17 19:10:00,229 Pine St, San Francisco,CA,94016 +313620,AA Batteries (4-pack),1,3.84,2019-12-12 16:41:00,646 South St, Portland,ME,04101 +313621,27in 4K Gaming Monitor,1,389.99,2019-12-11 18:05:00,274 Sunset St, Dallas,TX,75001 +313622,Apple Airpods Headphones,1,150.0,2019-12-09 16:56:00,500 Church St, Seattle,WA,98101 +313623,AA Batteries (4-pack),1,3.84,2019-12-04 08:56:00,998 5th St, Boston,MA,02215 +313624,AA Batteries (4-pack),3,3.84,2019-12-14 12:40:00,570 4th St, Atlanta,GA,30301 +313625,Macbook Pro Laptop,1,1700.0,2019-12-23 00:24:00,545 Lakeview St, Atlanta,GA,30301 +313626,Lightning Charging Cable,1,14.95,2019-12-03 20:13:00,141 10th St, San Francisco,CA,94016 +313627,AA Batteries (4-pack),2,3.84,2019-12-05 16:27:00,926 Park St, Atlanta,GA,30301 +313628,Apple Airpods Headphones,1,150.0,2019-12-20 18:05:00,176 1st St, New York City,NY,10001 +313629,Lightning Charging Cable,1,14.95,2019-12-17 15:29:00,823 Park St, San Francisco,CA,94016 +313630,Bose SoundSport Headphones,1,99.99,2019-12-25 19:08:00,877 11th St, San Francisco,CA,94016 +313631,Lightning Charging Cable,1,14.95,2019-12-31 14:07:00,18 Washington St, San Francisco,CA,94016 +313631,LG Washing Machine,1,600.0,2019-12-31 14:07:00,18 Washington St, San Francisco,CA,94016 +313632,Apple Airpods Headphones,1,150.0,2019-12-11 16:11:00,277 Washington St, Boston,MA,02215 +313633,Wired Headphones,1,11.99,2019-12-13 14:09:00,881 Adams St, San Francisco,CA,94016 +313634,USB-C Charging Cable,1,11.95,2019-12-23 11:12:00,714 5th St, San Francisco,CA,94016 +313635,Apple Airpods Headphones,1,150.0,2019-12-22 15:03:00,818 Cherry St, Austin,TX,73301 +313636,iPhone,1,700.0,2019-12-30 17:40:00,670 Elm St, Portland,OR,97035 +313636,Apple Airpods Headphones,1,150.0,2019-12-30 17:40:00,670 Elm St, Portland,OR,97035 +313636,Wired Headphones,1,11.99,2019-12-30 17:40:00,670 Elm St, Portland,OR,97035 +313637,Wired Headphones,1,11.99,2019-12-26 01:13:00,514 Hickory St, Portland,OR,97035 +313638,Bose SoundSport Headphones,1,99.99,2019-12-03 08:15:00,917 6th St, Atlanta,GA,30301 +313639,34in Ultrawide Monitor,1,379.99,2019-12-08 18:48:00,8 Center St, San Francisco,CA,94016 +313640,34in Ultrawide Monitor,1,379.99,2019-12-09 09:16:00,670 Cherry St, San Francisco,CA,94016 +313641,USB-C Charging Cable,1,11.95,2019-12-24 11:08:00,392 Willow St, Los Angeles,CA,90001 +313642,Lightning Charging Cable,1,14.95,2019-12-19 15:24:00,352 Dogwood St, Dallas,TX,75001 +313643,27in FHD Monitor,1,149.99,2019-12-15 13:48:00,27 Maple St, Los Angeles,CA,90001 +313644,Wired Headphones,1,11.99,2019-12-15 18:29:00,674 Jefferson St, Seattle,WA,98101 +313645,Flatscreen TV,1,300.0,2019-12-16 20:44:00,844 Jackson St, San Francisco,CA,94016 +313646,Apple Airpods Headphones,1,150.0,2019-12-05 16:46:00,430 West St, San Francisco,CA,94016 +313647,Flatscreen TV,1,300.0,2019-12-14 16:11:00,389 5th St, New York City,NY,10001 +313648,Apple Airpods Headphones,1,150.0,2019-12-04 21:08:00,608 River St, New York City,NY,10001 +313649,27in FHD Monitor,1,149.99,2019-12-13 18:21:00,938 8th St, San Francisco,CA,94016 +313650,Lightning Charging Cable,1,14.95,2019-12-09 17:16:00,416 West St, New York City,NY,10001 +313651,34in Ultrawide Monitor,1,379.99,2019-12-06 16:14:00,797 Cherry St, Portland,OR,97035 +313652,Lightning Charging Cable,1,14.95,2019-12-20 19:39:00,51 Jackson St, Portland,OR,97035 +313653,Bose SoundSport Headphones,1,99.99,2019-12-13 16:30:00,947 Church St, San Francisco,CA,94016 +313654,Apple Airpods Headphones,1,150.0,2019-12-26 19:41:00,444 West St, Los Angeles,CA,90001 +313655,Bose SoundSport Headphones,1,99.99,2019-12-11 13:00:00,225 Madison St, Austin,TX,73301 +313656,USB-C Charging Cable,2,11.95,2019-12-01 11:57:00,898 Lake St, Los Angeles,CA,90001 +313657,Wired Headphones,1,11.99,2019-12-28 20:05:00,410 Sunset St, San Francisco,CA,94016 +313658,Vareebadd Phone,1,400.0,2019-12-03 21:57:00,382 9th St, San Francisco,CA,94016 +313659,Lightning Charging Cable,1,14.95,2019-12-05 09:05:00,328 Highland St, New York City,NY,10001 +313660,AAA Batteries (4-pack),2,2.99,2019-12-20 02:00:00,759 Chestnut St, Seattle,WA,98101 +313661,Lightning Charging Cable,1,14.95,2019-12-12 08:06:00,349 South St, New York City,NY,10001 +313662,AAA Batteries (4-pack),1,2.99,2019-12-18 12:47:00,594 South St, Los Angeles,CA,90001 +313663,AA Batteries (4-pack),1,3.84,2019-12-25 15:22:00,548 River St, Dallas,TX,75001 +313664,Apple Airpods Headphones,1,150.0,2019-12-21 20:37:00,290 Cedar St, Portland,OR,97035 +313665,AA Batteries (4-pack),1,3.84,2019-12-15 08:54:00,226 5th St, Portland,OR,97035 +313666,iPhone,1,700.0,2019-12-04 13:46:00,313 Highland St, Los Angeles,CA,90001 +313667,27in FHD Monitor,1,149.99,2019-12-02 11:46:00,426 South St, New York City,NY,10001 +313668,Wired Headphones,1,11.99,2019-12-01 20:39:00,449 7th St, Seattle,WA,98101 +313669,27in FHD Monitor,1,149.99,2019-12-05 20:37:00,34 Center St, New York City,NY,10001 +313670,AAA Batteries (4-pack),2,2.99,2019-12-27 07:52:00,101 West St, San Francisco,CA,94016 +313671,USB-C Charging Cable,1,11.95,2019-12-29 13:39:00,158 River St, Los Angeles,CA,90001 +313672,AAA Batteries (4-pack),1,2.99,2019-12-02 16:00:00,636 South St, Austin,TX,73301 +313673,Apple Airpods Headphones,1,150.0,2019-12-28 12:24:00,206 10th St, Dallas,TX,75001 +313674,27in FHD Monitor,1,149.99,2019-12-28 10:51:00,727 9th St, San Francisco,CA,94016 +313675,Bose SoundSport Headphones,1,99.99,2019-12-16 14:40:00,577 South St, Dallas,TX,75001 +313676,USB-C Charging Cable,1,11.95,2019-12-14 22:36:00,8 5th St, New York City,NY,10001 +313677,Wired Headphones,1,11.99,2019-12-27 19:32:00,249 12th St, New York City,NY,10001 +313678,27in FHD Monitor,1,149.99,2019-12-07 19:16:00,686 Lakeview St, San Francisco,CA,94016 +313679,AAA Batteries (4-pack),1,2.99,2019-12-08 12:22:00,460 Maple St, Austin,TX,73301 +313680,20in Monitor,1,109.99,2019-12-29 17:44:00,440 10th St, Portland,ME,04101 +313681,Macbook Pro Laptop,1,1700.0,2019-12-04 15:25:00,160 Walnut St, Boston,MA,02215 +313682,AA Batteries (4-pack),2,3.84,2019-12-17 18:45:00,110 Jackson St, Dallas,TX,75001 +313683,Google Phone,1,600.0,2019-12-15 13:17:00,439 Madison St, Los Angeles,CA,90001 +313684,USB-C Charging Cable,1,11.95,2019-12-03 23:45:00,175 7th St, Los Angeles,CA,90001 +313685,Lightning Charging Cable,3,14.95,2019-12-21 17:23:00,908 Hill St, Boston,MA,02215 +313686,USB-C Charging Cable,1,11.95,2019-12-14 13:49:00,857 Elm St, San Francisco,CA,94016 +313687,27in FHD Monitor,1,149.99,2019-12-12 15:26:00,254 Lake St, New York City,NY,10001 +313688,27in 4K Gaming Monitor,1,389.99,2019-12-23 10:27:00,665 Wilson St, Dallas,TX,75001 +313689,Apple Airpods Headphones,1,150.0,2019-12-27 20:02:00,513 Park St, Portland,OR,97035 +313690,27in FHD Monitor,1,149.99,2019-12-29 18:46:00,377 5th St, Los Angeles,CA,90001 +313691,Wired Headphones,1,11.99,2019-12-17 00:25:00,467 Forest St, San Francisco,CA,94016 +313692,ThinkPad Laptop,1,999.99,2019-12-17 11:36:00,435 7th St, New York City,NY,10001 +313693,27in FHD Monitor,1,149.99,2019-12-28 11:51:00,807 Lakeview St, San Francisco,CA,94016 +313694,AA Batteries (4-pack),3,3.84,2019-12-12 14:11:00,695 13th St, Seattle,WA,98101 +313695,Flatscreen TV,1,300.0,2019-12-24 12:30:00,369 9th St, Portland,OR,97035 +313696,Macbook Pro Laptop,1,1700.0,2019-12-05 19:26:00,37 Jackson St, New York City,NY,10001 +313697,Wired Headphones,1,11.99,2019-12-19 16:19:00,257 Pine St, Los Angeles,CA,90001 +313698,AAA Batteries (4-pack),1,2.99,2019-12-04 21:24:00,284 Jefferson St, Atlanta,GA,30301 +313699,Macbook Pro Laptop,1,1700.0,2019-12-29 20:12:00,284 Johnson St, Dallas,TX,75001 +313700,27in 4K Gaming Monitor,1,389.99,2019-12-17 11:39:00,20 Jefferson St, Los Angeles,CA,90001 +313701,27in 4K Gaming Monitor,1,389.99,2019-12-16 15:50:00,255 North St, New York City,NY,10001 +313702,Wired Headphones,1,11.99,2019-12-07 14:57:00,965 12th St, San Francisco,CA,94016 +313703,USB-C Charging Cable,1,11.95,2019-12-12 12:41:00,739 Washington St, Los Angeles,CA,90001 +313704,AAA Batteries (4-pack),2,2.99,2019-12-28 18:36:00,980 Park St, New York City,NY,10001 +313705,Google Phone,1,600.0,2019-12-21 15:24:00,631 Lake St, Portland,OR,97035 +313706,AA Batteries (4-pack),2,3.84,2019-12-11 19:50:00,445 10th St, New York City,NY,10001 +313707,Lightning Charging Cable,1,14.95,2019-12-15 14:57:00,20 Lake St, Seattle,WA,98101 +313708,USB-C Charging Cable,1,11.95,2019-12-19 13:52:00,764 1st St, Portland,OR,97035 +313709,USB-C Charging Cable,1,11.95,2019-12-20 20:46:00,490 14th St, New York City,NY,10001 +313710,AA Batteries (4-pack),1,3.84,2019-12-04 11:37:00,343 West St, Los Angeles,CA,90001 +313711,Apple Airpods Headphones,1,150.0,2019-12-29 14:48:00,993 Adams St, Austin,TX,73301 +313712,iPhone,1,700.0,2019-12-06 20:43:00,736 Cherry St, San Francisco,CA,94016 +313713,34in Ultrawide Monitor,1,379.99,2019-12-20 20:34:00,35 Walnut St, Los Angeles,CA,90001 +313714,AAA Batteries (4-pack),1,2.99,2019-12-06 00:36:00,734 Ridge St, New York City,NY,10001 +313715,USB-C Charging Cable,1,11.95,2019-12-29 08:41:00,985 Jefferson St, Atlanta,GA,30301 +313716,Apple Airpods Headphones,1,150.0,2019-12-20 20:56:00,238 Adams St, Los Angeles,CA,90001 +313717,AA Batteries (4-pack),2,3.84,2019-12-30 00:40:00,950 Meadow St, New York City,NY,10001 +313718,Lightning Charging Cable,1,14.95,2019-12-04 11:43:00,343 Hill St, Dallas,TX,75001 +313719,34in Ultrawide Monitor,1,379.99,2019-12-07 00:34:00,613 Washington St, Austin,TX,73301 +313720,Lightning Charging Cable,1,14.95,2019-12-03 14:23:00,143 North St, Atlanta,GA,30301 +313721,USB-C Charging Cable,1,11.95,2019-12-18 16:20:00,34 Lake St, San Francisco,CA,94016 +313722,USB-C Charging Cable,1,11.95,2019-12-07 16:12:00,747 Willow St, Portland,OR,97035 +313723,AA Batteries (4-pack),1,3.84,2019-12-25 07:53:00,639 Meadow St, San Francisco,CA,94016 +313724,Wired Headphones,1,11.99,2019-12-06 08:08:00,1 2nd St, Atlanta,GA,30301 +313725,Wired Headphones,1,11.99,2019-12-07 21:04:00,643 Church St, New York City,NY,10001 +313726,27in 4K Gaming Monitor,1,389.99,2019-12-29 23:51:00,427 Pine St, New York City,NY,10001 +313727,Apple Airpods Headphones,1,150.0,2019-12-27 14:36:00,862 Elm St, San Francisco,CA,94016 +313728,Wired Headphones,1,11.99,2019-12-28 14:40:00,872 7th St, New York City,NY,10001 +313729,AAA Batteries (4-pack),1,2.99,2019-12-08 13:10:00,30 Johnson St, Dallas,TX,75001 +313730,Wired Headphones,1,11.99,2019-12-07 09:12:00,681 11th St, San Francisco,CA,94016 +313731,Lightning Charging Cable,1,14.95,2019-12-13 14:54:00,929 9th St, Portland,OR,97035 +313732,Apple Airpods Headphones,1,150.0,2019-12-05 15:21:00,878 5th St, Boston,MA,02215 +313733,USB-C Charging Cable,1,11.95,2019-12-10 11:29:00,835 Walnut St, Los Angeles,CA,90001 +313734,AA Batteries (4-pack),1,3.84,2019-12-04 17:40:00,977 Hickory St, Portland,ME,04101 +313735,Flatscreen TV,1,300.0,2019-12-08 07:08:00,767 Johnson St, San Francisco,CA,94016 +313736,USB-C Charging Cable,1,11.95,2019-12-13 14:34:00,876 11th St, Atlanta,GA,30301 +313737,AA Batteries (4-pack),1,3.84,2019-12-12 15:09:00,273 Cherry St, Los Angeles,CA,90001 +313738,USB-C Charging Cable,2,11.95,2019-12-31 16:32:00,982 Adams St, New York City,NY,10001 +313739,Flatscreen TV,1,300.0,2019-12-30 13:55:00,149 Jefferson St, Los Angeles,CA,90001 +313740,Bose SoundSport Headphones,1,99.99,2019-12-07 07:03:00,857 Park St, Boston,MA,02215 +313741,AAA Batteries (4-pack),2,2.99,2019-12-15 11:15:00,675 Elm St, New York City,NY,10001 +313742,Lightning Charging Cable,1,14.95,2019-12-16 16:41:00,257 Madison St, Austin,TX,73301 +313743,Macbook Pro Laptop,1,1700.0,2019-12-10 15:15:00,934 6th St, Seattle,WA,98101 +313744,20in Monitor,1,109.99,2019-12-21 18:52:00,2 North St, San Francisco,CA,94016 +313745,Bose SoundSport Headphones,1,99.99,2019-12-12 21:02:00,669 10th St, San Francisco,CA,94016 +313746,Lightning Charging Cable,1,14.95,2019-12-25 10:27:00,996 13th St, San Francisco,CA,94016 +313747,27in FHD Monitor,1,149.99,2019-12-04 10:14:00,874 Cedar St, New York City,NY,10001 +313748,Flatscreen TV,1,300.0,2019-12-24 18:27:00,211 2nd St, Seattle,WA,98101 +313749,Bose SoundSport Headphones,1,99.99,2019-12-05 19:37:00,798 2nd St, Atlanta,GA,30301 +313750,iPhone,1,700.0,2019-12-29 00:55:00,758 14th St, Seattle,WA,98101 +313750,Lightning Charging Cable,1,14.95,2019-12-29 00:55:00,758 14th St, Seattle,WA,98101 +313751,Flatscreen TV,1,300.0,2019-12-09 09:04:00,132 South St, Boston,MA,02215 +313752,Bose SoundSport Headphones,1,99.99,2019-12-11 11:30:00,157 Chestnut St, San Francisco,CA,94016 +313753,Flatscreen TV,1,300.0,2019-12-14 00:44:00,278 Adams St, Seattle,WA,98101 +313754,20in Monitor,1,109.99,2019-12-09 13:13:00,963 1st St, Dallas,TX,75001 +313755,iPhone,1,700.0,2019-12-27 23:27:00,125 Jackson St, San Francisco,CA,94016 +313756,Bose SoundSport Headphones,1,99.99,2019-12-13 16:41:00,245 9th St, Portland,OR,97035 +313757,Bose SoundSport Headphones,1,99.99,2019-12-30 12:13:00,798 Church St, Portland,OR,97035 +313758,27in FHD Monitor,1,149.99,2019-12-08 18:15:00,559 6th St, San Francisco,CA,94016 +313759,ThinkPad Laptop,1,999.99,2019-12-25 22:07:00,70 4th St, Dallas,TX,75001 +313760,Wired Headphones,1,11.99,2019-12-31 21:04:00,517 Spruce St, Los Angeles,CA,90001 +313761,Bose SoundSport Headphones,1,99.99,2019-12-15 22:51:00,252 Wilson St, San Francisco,CA,94016 +313762,AA Batteries (4-pack),1,3.84,2019-12-19 20:40:00,327 2nd St, Los Angeles,CA,90001 +313763,Macbook Pro Laptop,1,1700.0,2019-12-21 10:40:00,271 Lake St, Los Angeles,CA,90001 +313764,AAA Batteries (4-pack),2,2.99,2019-12-02 19:02:00,246 Lake St, Los Angeles,CA,90001 +313765,USB-C Charging Cable,1,11.95,2019-12-13 10:45:00,226 Maple St, Dallas,TX,75001 +313766,Lightning Charging Cable,1,14.95,2019-12-16 04:13:00,567 West St, San Francisco,CA,94016 +313767,Google Phone,1,600.0,2019-12-25 18:40:00,426 6th St, Seattle,WA,98101 +313767,USB-C Charging Cable,1,11.95,2019-12-25 18:40:00,426 6th St, Seattle,WA,98101 +313767,Wired Headphones,1,11.99,2019-12-25 18:40:00,426 6th St, Seattle,WA,98101 +313768,27in 4K Gaming Monitor,1,389.99,2019-12-04 07:27:00,395 5th St, San Francisco,CA,94016 +313769,Bose SoundSport Headphones,1,99.99,2019-12-01 14:55:00,499 Jackson St, New York City,NY,10001 +313770,USB-C Charging Cable,1,11.95,2019-12-06 23:14:00,970 Park St, Portland,OR,97035 +313771,27in FHD Monitor,1,149.99,2019-12-06 21:39:00,47 Dogwood St, New York City,NY,10001 +313772,AAA Batteries (4-pack),2,2.99,2019-12-19 09:49:00,368 Elm St, Atlanta,GA,30301 +313773,USB-C Charging Cable,1,11.95,2019-12-15 21:47:00,266 4th St, Seattle,WA,98101 +313774,Wired Headphones,1,11.99,2019-12-20 01:40:00,142 Maple St, San Francisco,CA,94016 +313775,USB-C Charging Cable,1,11.95,2019-12-07 20:02:00,983 Meadow St, San Francisco,CA,94016 +313776,AAA Batteries (4-pack),1,2.99,2019-12-29 14:12:00,517 Pine St, San Francisco,CA,94016 +313777,Wired Headphones,1,11.99,2019-12-27 19:42:00,748 Hickory St, Los Angeles,CA,90001 +313778,iPhone,1,700.0,2019-12-19 17:13:00,211 South St, Portland,OR,97035 +313779,AAA Batteries (4-pack),1,2.99,2019-12-25 20:05:00,974 Washington St, Los Angeles,CA,90001 +313780,27in FHD Monitor,1,149.99,2019-12-28 05:11:00,580 Washington St, Austin,TX,73301 +313781,Macbook Pro Laptop,1,1700.0,2019-12-17 19:46:00,842 10th St, New York City,NY,10001 +313782,Apple Airpods Headphones,1,150.0,2019-12-10 11:16:00,575 10th St, Dallas,TX,75001 +313783,AAA Batteries (4-pack),1,2.99,2019-12-17 09:10:00,108 Park St, Austin,TX,73301 +313784,27in 4K Gaming Monitor,1,389.99,2019-12-05 18:49:00,392 Wilson St, Atlanta,GA,30301 +313785,USB-C Charging Cable,1,11.95,2019-12-14 08:16:00,8 6th St, Boston,MA,02215 +313786,Wired Headphones,1,11.99,2019-12-04 17:48:00,95 8th St, Los Angeles,CA,90001 +313787,Wired Headphones,1,11.99,2019-12-08 07:15:00,361 Center St, San Francisco,CA,94016 +313788,Google Phone,1,600.0,2019-12-08 11:52:00,827 13th St, Los Angeles,CA,90001 +313789,Bose SoundSport Headphones,1,99.99,2019-12-05 21:52:00,807 West St, San Francisco,CA,94016 +313790,34in Ultrawide Monitor,1,379.99,2019-12-11 10:56:00,135 Willow St, Los Angeles,CA,90001 +313791,Apple Airpods Headphones,1,150.0,2019-12-14 21:07:00,225 Spruce St, Seattle,WA,98101 +313792,Lightning Charging Cable,1,14.95,2019-12-06 11:26:00,760 Willow St, New York City,NY,10001 +313793,USB-C Charging Cable,1,11.95,2019-12-19 14:16:00,444 8th St, Austin,TX,73301 +313794,Lightning Charging Cable,1,14.95,2019-12-27 00:16:00,867 12th St, Portland,ME,04101 +313795,AAA Batteries (4-pack),1,2.99,2019-12-08 00:01:00,392 Ridge St, San Francisco,CA,94016 +313796,AA Batteries (4-pack),2,3.84,2019-12-15 18:50:00,674 14th St, Dallas,TX,75001 +313797,27in FHD Monitor,1,149.99,2019-12-18 09:36:00,419 Maple St, New York City,NY,10001 +313798,Wired Headphones,1,11.99,2019-12-25 11:09:00,446 12th St, Austin,TX,73301 +313799,Lightning Charging Cable,1,14.95,2019-12-17 13:24:00,116 Walnut St, Portland,OR,97035 +313800,AA Batteries (4-pack),2,3.84,2019-12-08 10:58:00,330 Cedar St, Boston,MA,02215 +313801,Flatscreen TV,1,300.0,2019-12-18 18:46:00,963 Jefferson St, Los Angeles,CA,90001 +313802,AAA Batteries (4-pack),1,2.99,2019-12-28 22:05:00,981 Adams St, Austin,TX,73301 +313803,Bose SoundSport Headphones,1,99.99,2019-12-10 08:20:00,776 Johnson St, Seattle,WA,98101 +313804,iPhone,1,700.0,2019-12-11 16:37:00,370 West St, Los Angeles,CA,90001 +313805,Lightning Charging Cable,1,14.95,2019-12-20 17:06:00,931 Washington St, Portland,OR,97035 +313806,USB-C Charging Cable,1,11.95,2019-12-24 19:14:00,982 Wilson St, Boston,MA,02215 +313807,34in Ultrawide Monitor,1,379.99,2019-12-18 06:14:00,924 Chestnut St, Los Angeles,CA,90001 +313808,USB-C Charging Cable,1,11.95,2019-12-21 14:09:00,80 11th St, Los Angeles,CA,90001 +313809,AAA Batteries (4-pack),3,2.99,2019-12-17 10:38:00,198 Wilson St, San Francisco,CA,94016 +313809,Macbook Pro Laptop,1,1700.0,2019-12-17 10:38:00,198 Wilson St, San Francisco,CA,94016 +313810,AA Batteries (4-pack),3,3.84,2019-12-29 10:07:00,750 Ridge St, San Francisco,CA,94016 +313811,Apple Airpods Headphones,1,150.0,2019-12-10 09:17:00,346 Cherry St, Austin,TX,73301 +313812,Vareebadd Phone,1,400.0,2019-12-31 08:57:00,254 Center St, San Francisco,CA,94016 +313813,Lightning Charging Cable,1,14.95,2019-12-06 20:06:00,982 River St, San Francisco,CA,94016 +313814,Lightning Charging Cable,1,14.95,2019-12-11 17:42:00,789 Elm St, San Francisco,CA,94016 +313815,Apple Airpods Headphones,1,150.0,2019-12-19 16:42:00,75 Highland St, Los Angeles,CA,90001 +313816,20in Monitor,1,109.99,2019-12-17 10:29:00,228 Cherry St, Seattle,WA,98101 +313817,Wired Headphones,1,11.99,2019-12-21 18:11:00,747 Chestnut St, New York City,NY,10001 +313818,USB-C Charging Cable,1,11.95,2019-12-19 00:05:00,682 Chestnut St, San Francisco,CA,94016 +313819,Google Phone,1,600.0,2019-12-27 15:44:00,966 Cedar St, Dallas,TX,75001 +313820,USB-C Charging Cable,1,11.95,2019-12-07 16:15:00,223 West St, New York City,NY,10001 +313821,Flatscreen TV,1,300.0,2019-12-16 19:24:00,223 North St, Los Angeles,CA,90001 +313822,Wired Headphones,1,11.99,2019-12-18 10:56:00,235 Jefferson St, Seattle,WA,98101 +313823,Wired Headphones,2,11.99,2019-12-12 09:22:00,343 South St, Austin,TX,73301 +313824,Lightning Charging Cable,1,14.95,2019-12-29 16:22:00,195 Adams St, Atlanta,GA,30301 +313825,Wired Headphones,1,11.99,2019-12-14 23:37:00,22 1st St, New York City,NY,10001 +313826,AA Batteries (4-pack),2,3.84,2019-12-25 14:06:00,813 River St, San Francisco,CA,94016 +313827,Lightning Charging Cable,1,14.95,2019-12-30 19:16:00,296 Maple St, Seattle,WA,98101 +313828,AA Batteries (4-pack),1,3.84,2019-12-04 18:23:00,966 Lake St, San Francisco,CA,94016 +313829,Apple Airpods Headphones,1,150.0,2019-12-13 19:59:00,367 Lake St, Los Angeles,CA,90001 +313830,34in Ultrawide Monitor,1,379.99,2019-12-26 22:57:00,182 Church St, San Francisco,CA,94016 +313831,Bose SoundSport Headphones,1,99.99,2019-12-10 17:02:00,719 Lincoln St, San Francisco,CA,94016 +313832,Lightning Charging Cable,1,14.95,2019-12-12 06:12:00,348 12th St, Austin,TX,73301 +313833,Flatscreen TV,1,300.0,2019-12-13 11:08:00,219 Wilson St, San Francisco,CA,94016 +313834,ThinkPad Laptop,1,999.99,2019-12-23 22:48:00,968 13th St, Atlanta,GA,30301 +313835,USB-C Charging Cable,1,11.95,2019-12-10 16:49:00,528 Hickory St, New York City,NY,10001 +313836,Flatscreen TV,1,300.0,2019-12-04 15:11:00,798 Washington St, Los Angeles,CA,90001 +313837,34in Ultrawide Monitor,1,379.99,2019-12-12 12:29:00,578 Madison St, Boston,MA,02215 +313838,AAA Batteries (4-pack),1,2.99,2019-12-23 17:42:00,240 Wilson St, New York City,NY,10001 +313839,AAA Batteries (4-pack),1,2.99,2019-12-30 18:57:00,952 Walnut St, Boston,MA,02215 +313840,27in 4K Gaming Monitor,1,389.99,2019-12-24 14:31:00,392 Meadow St, San Francisco,CA,94016 +313841,Bose SoundSport Headphones,1,99.99,2019-12-23 16:52:00,599 12th St, New York City,NY,10001 +313842,iPhone,1,700.0,2019-12-14 08:47:00,112 Walnut St, Los Angeles,CA,90001 +313842,Lightning Charging Cable,2,14.95,2019-12-14 08:47:00,112 Walnut St, Los Angeles,CA,90001 +313843,34in Ultrawide Monitor,1,379.99,2019-12-23 15:35:00,913 Park St, San Francisco,CA,94016 +313844,USB-C Charging Cable,1,11.95,2019-12-02 17:37:00,100 7th St, Dallas,TX,75001 +313845,USB-C Charging Cable,1,11.95,2019-12-15 10:11:00,949 Walnut St, New York City,NY,10001 +313846,Bose SoundSport Headphones,1,99.99,2019-12-01 17:39:00,926 Chestnut St, San Francisco,CA,94016 +313847,iPhone,1,700.0,2019-12-04 10:55:00,632 South St, Los Angeles,CA,90001 +313848,27in FHD Monitor,1,149.99,2019-12-04 01:16:00,176 Adams St, Seattle,WA,98101 +313849,USB-C Charging Cable,1,11.95,2019-12-31 08:01:00,674 Jackson St, Seattle,WA,98101 +313850,Apple Airpods Headphones,1,150.0,2019-12-20 22:39:00,940 Sunset St, San Francisco,CA,94016 +313851,27in FHD Monitor,1,149.99,2019-12-23 19:57:00,586 Hill St, Dallas,TX,75001 +313852,USB-C Charging Cable,1,11.95,2019-12-30 13:30:00,679 West St, San Francisco,CA,94016 +313853,USB-C Charging Cable,2,11.95,2019-12-21 21:52:00,96 14th St, Los Angeles,CA,90001 +313854,27in FHD Monitor,1,149.99,2019-12-01 11:52:00,893 Wilson St, Atlanta,GA,30301 +313855,AA Batteries (4-pack),1,3.84,2019-12-12 05:49:00,688 Center St, Dallas,TX,75001 +313856,LG Washing Machine,1,600.0,2019-12-06 10:09:00,482 Spruce St, Boston,MA,02215 +313857,AAA Batteries (4-pack),1,2.99,2019-12-22 17:03:00,340 River St, Dallas,TX,75001 +313858,AAA Batteries (4-pack),1,2.99,2019-12-31 11:06:00,240 Washington St, San Francisco,CA,94016 +313859,AA Batteries (4-pack),1,3.84,2019-12-31 13:10:00,657 9th St, Seattle,WA,98101 +313860,Flatscreen TV,1,300.0,2019-12-30 00:02:00,263 11th St, Los Angeles,CA,90001 +313861,Apple Airpods Headphones,1,150.0,2019-12-23 19:47:00,12 5th St, San Francisco,CA,94016 +313862,AAA Batteries (4-pack),3,2.99,2019-12-04 14:11:00,769 Wilson St, San Francisco,CA,94016 +313863,Bose SoundSport Headphones,1,99.99,2019-12-27 13:05:00,820 Pine St, New York City,NY,10001 +313864,AAA Batteries (4-pack),1,2.99,2019-12-14 10:53:00,164 South St, Seattle,WA,98101 +313865,27in FHD Monitor,1,149.99,2019-12-02 02:48:00,261 5th St, San Francisco,CA,94016 +313866,AAA Batteries (4-pack),1,2.99,2019-12-12 13:15:00,441 10th St, Los Angeles,CA,90001 +313867,Lightning Charging Cable,1,14.95,2019-12-26 19:07:00,505 Jackson St, Dallas,TX,75001 +313868,Wired Headphones,1,11.99,2019-12-11 11:26:00,292 14th St, Seattle,WA,98101 +313869,Lightning Charging Cable,1,14.95,2019-12-08 23:30:00,253 Willow St, New York City,NY,10001 +313870,AAA Batteries (4-pack),1,2.99,2019-12-29 13:14:00,288 Pine St, San Francisco,CA,94016 +313871,Wired Headphones,1,11.99,2019-12-25 15:40:00,449 Madison St, San Francisco,CA,94016 +313872,Bose SoundSport Headphones,1,99.99,2019-12-06 11:03:00,336 Lake St, Boston,MA,02215 +313873,Bose SoundSport Headphones,1,99.99,2019-12-24 16:44:00,976 Wilson St, Dallas,TX,75001 +313874,27in 4K Gaming Monitor,1,389.99,2019-12-24 17:26:00,97 River St, New York City,NY,10001 +313875,Macbook Pro Laptop,1,1700.0,2019-12-02 11:19:00,999 Walnut St, Portland,OR,97035 +313876,27in 4K Gaming Monitor,1,389.99,2019-12-24 07:23:00,822 Highland St, San Francisco,CA,94016 +313877,ThinkPad Laptop,1,999.99,2019-12-10 21:39:00,673 Chestnut St, Los Angeles,CA,90001 +313878,Macbook Pro Laptop,1,1700.0,2019-12-21 18:48:00,575 Sunset St, Los Angeles,CA,90001 +313879,34in Ultrawide Monitor,1,379.99,2019-12-09 23:19:00,456 Ridge St, Austin,TX,73301 +313880,AAA Batteries (4-pack),1,2.99,2019-12-17 00:28:00,600 Chestnut St, San Francisco,CA,94016 +313881,iPhone,1,700.0,2019-12-19 15:33:00,226 9th St, Dallas,TX,75001 +313882,Apple Airpods Headphones,2,150.0,2019-12-14 13:18:00,245 Willow St, Los Angeles,CA,90001 +313883,AA Batteries (4-pack),1,3.84,2019-12-31 10:24:00,299 North St, Atlanta,GA,30301 +313884,USB-C Charging Cable,1,11.95,2019-12-16 12:26:00,869 11th St, San Francisco,CA,94016 +313885,Lightning Charging Cable,1,14.95,2019-12-06 11:06:00,200 Spruce St, San Francisco,CA,94016 +313886,27in 4K Gaming Monitor,1,389.99,2019-12-21 11:24:00,379 Adams St, San Francisco,CA,94016 +313887,LG Washing Machine,1,600.0,2019-12-05 19:37:00,23 10th St, Seattle,WA,98101 +313888,Lightning Charging Cable,1,14.95,2019-12-18 17:37:00,588 11th St, Boston,MA,02215 +313889,AAA Batteries (4-pack),1,2.99,2019-12-19 07:57:00,824 Forest St, Boston,MA,02215 +313890,AAA Batteries (4-pack),3,2.99,2019-12-23 21:39:00,748 Lakeview St, Atlanta,GA,30301 +313891,AAA Batteries (4-pack),4,2.99,2019-12-27 15:10:00,104 South St, Boston,MA,02215 +313892,Wired Headphones,2,11.99,2019-12-09 09:42:00,417 2nd St, San Francisco,CA,94016 +313893,Wired Headphones,1,11.99,2019-12-24 16:02:00,115 14th St, Atlanta,GA,30301 +313894,Bose SoundSport Headphones,1,99.99,2019-12-24 21:21:00,61 Wilson St, Seattle,WA,98101 +313895,Bose SoundSport Headphones,1,99.99,2019-12-29 00:16:00,476 Adams St, Austin,TX,73301 +313896,27in FHD Monitor,1,149.99,2019-12-31 18:06:00,649 South St, Portland,OR,97035 +313897,27in 4K Gaming Monitor,1,389.99,2019-12-17 12:28:00,135 4th St, Boston,MA,02215 +313898,AA Batteries (4-pack),1,3.84,2019-12-13 13:14:00,948 12th St, New York City,NY,10001 +313899,Bose SoundSport Headphones,1,99.99,2019-12-22 21:19:00,881 Lincoln St, San Francisco,CA,94016 +313900,USB-C Charging Cable,1,11.95,2019-12-19 10:26:00,418 Spruce St, New York City,NY,10001 +313901,Google Phone,1,600.0,2019-12-07 12:10:00,812 Church St, Boston,MA,02215 +313901,USB-C Charging Cable,1,11.95,2019-12-07 12:10:00,812 Church St, Boston,MA,02215 +313902,AAA Batteries (4-pack),1,2.99,2019-12-08 10:02:00,455 Dogwood St, New York City,NY,10001 +313903,USB-C Charging Cable,1,11.95,2019-12-30 19:15:00,805 Lake St, Los Angeles,CA,90001 +313904,Bose SoundSport Headphones,1,99.99,2019-12-25 11:39:00,742 Chestnut St, New York City,NY,10001 +313905,Apple Airpods Headphones,1,150.0,2019-12-02 20:16:00,818 12th St, San Francisco,CA,94016 +313906,Wired Headphones,1,11.99,2019-12-06 15:22:00,291 Adams St, San Francisco,CA,94016 +313907,AA Batteries (4-pack),1,3.84,2019-12-15 12:48:00,320 4th St, Seattle,WA,98101 +313908,Lightning Charging Cable,1,14.95,2019-12-06 23:16:00,175 12th St, Los Angeles,CA,90001 +313909,Apple Airpods Headphones,1,150.0,2019-12-10 10:55:00,923 Ridge St, Austin,TX,73301 +313910,Wired Headphones,1,11.99,2019-12-01 17:16:00,347 Lakeview St, San Francisco,CA,94016 +313911,AAA Batteries (4-pack),1,2.99,2019-12-10 11:51:00,975 Chestnut St, Atlanta,GA,30301 +313912,Lightning Charging Cable,1,14.95,2019-12-22 09:36:00,825 South St, Dallas,TX,75001 +313913,34in Ultrawide Monitor,1,379.99,2019-12-31 11:39:00,251 10th St, Dallas,TX,75001 +313914,Apple Airpods Headphones,1,150.0,2019-12-15 16:55:00,76 Cedar St, Los Angeles,CA,90001 +313915,AAA Batteries (4-pack),1,2.99,2019-12-24 18:55:00,355 Cedar St, Portland,OR,97035 +313916,Wired Headphones,1,11.99,2019-12-06 12:29:00,412 Church St, Portland,OR,97035 +313917,Apple Airpods Headphones,1,150.0,2019-12-23 13:59:00,165 Cedar St, Boston,MA,02215 +313918,20in Monitor,1,109.99,2019-12-10 07:02:00,402 Hickory St, San Francisco,CA,94016 +313919,Lightning Charging Cable,1,14.95,2019-12-03 15:18:00,91 Adams St, Portland,OR,97035 +313920,AA Batteries (4-pack),2,3.84,2019-12-28 21:54:00,91 Lincoln St, Dallas,TX,75001 +313921,Apple Airpods Headphones,1,150.0,2019-12-08 20:10:00,135 Hill St, Los Angeles,CA,90001 +313922,Wired Headphones,1,11.99,2019-12-16 21:44:00,578 10th St, Boston,MA,02215 +313923,USB-C Charging Cable,1,11.95,2019-12-16 20:16:00,923 North St, Los Angeles,CA,90001 +313924,AAA Batteries (4-pack),2,2.99,2019-12-30 22:21:00,913 Spruce St, New York City,NY,10001 +313925,Bose SoundSport Headphones,1,99.99,2019-12-05 16:54:00,896 9th St, Boston,MA,02215 +313926,Wired Headphones,2,11.99,2019-12-26 22:35:00,803 Spruce St, San Francisco,CA,94016 +313927,Lightning Charging Cable,1,14.95,2019-12-10 14:18:00,673 Center St, San Francisco,CA,94016 +313928,AA Batteries (4-pack),1,3.84,2019-12-22 15:06:00,217 Pine St, Dallas,TX,75001 +313929,USB-C Charging Cable,1,11.95,2019-12-25 07:21:00,269 12th St, Boston,MA,02215 +313930,Macbook Pro Laptop,1,1700.0,2019-12-05 07:12:00,414 Spruce St, New York City,NY,10001 +313931,AAA Batteries (4-pack),2,2.99,2019-12-07 19:36:00,742 Highland St, Atlanta,GA,30301 +313932,27in 4K Gaming Monitor,1,389.99,2019-12-19 18:16:00,645 Meadow St, Seattle,WA,98101 +313933,AAA Batteries (4-pack),1,2.99,2019-12-21 22:57:00,628 Sunset St, San Francisco,CA,94016 +313934,Apple Airpods Headphones,1,150.0,2019-12-01 21:32:00,618 14th St, New York City,NY,10001 +313935,Lightning Charging Cable,1,14.95,2019-12-20 09:34:00,408 Chestnut St, Los Angeles,CA,90001 +313936,Wired Headphones,1,11.99,2019-12-02 18:26:00,726 Cedar St, Seattle,WA,98101 +313937,ThinkPad Laptop,1,999.99,2019-12-31 06:57:00,548 Lincoln St, Dallas,TX,75001 +313938,Lightning Charging Cable,1,14.95,2019-12-30 09:46:00,35 Hickory St, San Francisco,CA,94016 +313938,Wired Headphones,1,11.99,2019-12-30 09:46:00,35 Hickory St, San Francisco,CA,94016 +313939,iPhone,1,700.0,2019-12-29 13:51:00,67 River St, Seattle,WA,98101 +313940,USB-C Charging Cable,1,11.95,2019-12-09 15:47:00,438 North St, Atlanta,GA,30301 +313941,Bose SoundSport Headphones,1,99.99,2019-12-23 12:44:00,231 8th St, Boston,MA,02215 +313942,27in 4K Gaming Monitor,1,389.99,2019-12-01 10:07:00,329 Elm St, Boston,MA,02215 +313943,AA Batteries (4-pack),1,3.84,2019-12-20 17:47:00,347 Lake St, Los Angeles,CA,90001 +313944,20in Monitor,1,109.99,2019-12-25 17:12:00,507 Sunset St, Los Angeles,CA,90001 +313945,20in Monitor,1,109.99,2019-12-15 16:04:00,766 Jefferson St, Boston,MA,02215 +313946,AA Batteries (4-pack),1,3.84,2019-12-13 15:39:00,475 Hill St, Los Angeles,CA,90001 +313947,27in 4K Gaming Monitor,1,389.99,2019-12-07 14:11:00,564 5th St, Portland,ME,04101 +313948,USB-C Charging Cable,1,11.95,2019-12-06 13:07:00,157 Elm St, San Francisco,CA,94016 +313949,AAA Batteries (4-pack),2,2.99,2019-12-21 03:54:00,865 Chestnut St, Los Angeles,CA,90001 +313950,Lightning Charging Cable,2,14.95,2019-12-15 15:57:00,799 Church St, San Francisco,CA,94016 +313951,Lightning Charging Cable,1,14.95,2019-12-22 10:03:00,422 Walnut St, Boston,MA,02215 +313952,27in FHD Monitor,1,149.99,2019-12-14 18:54:00,100 Sunset St, San Francisco,CA,94016 +313953,Macbook Pro Laptop,1,1700.0,2019-12-28 12:16:00,370 Lincoln St, Boston,MA,02215 +313954,USB-C Charging Cable,1,11.95,2019-12-17 08:19:00,22 11th St, San Francisco,CA,94016 +313955,Lightning Charging Cable,1,14.95,2019-12-20 17:35:00,999 Chestnut St, Boston,MA,02215 +313956,Google Phone,1,600.0,2019-12-11 09:48:00,261 Hill St, Austin,TX,73301 +313956,Bose SoundSport Headphones,1,99.99,2019-12-11 09:48:00,261 Hill St, Austin,TX,73301 +313956,Wired Headphones,1,11.99,2019-12-11 09:48:00,261 Hill St, Austin,TX,73301 +313957,27in FHD Monitor,2,149.99,2019-12-28 12:48:00,425 Forest St, San Francisco,CA,94016 +313958,Google Phone,1,600.0,2019-12-03 13:01:00,659 1st St, San Francisco,CA,94016 +313959,Google Phone,1,600.0,2019-12-27 21:06:00,820 6th St, Los Angeles,CA,90001 +313960,USB-C Charging Cable,1,11.95,2019-12-06 09:18:00,232 Cherry St, Los Angeles,CA,90001 +313961,AA Batteries (4-pack),1,3.84,2019-12-02 11:35:00,190 Pine St, San Francisco,CA,94016 +313962,AA Batteries (4-pack),1,3.84,2019-12-18 08:28:00,59 Lincoln St, Seattle,WA,98101 +313963,LG Washing Machine,1,600.0,2019-12-19 01:22:00,60 9th St, San Francisco,CA,94016 +313964,USB-C Charging Cable,1,11.95,2019-12-13 09:39:00,523 Cherry St, Los Angeles,CA,90001 +313965,AAA Batteries (4-pack),1,2.99,2019-12-24 12:04:00,920 Forest St, Los Angeles,CA,90001 +313966,Lightning Charging Cable,1,14.95,2019-12-18 10:50:00,557 Sunset St, Seattle,WA,98101 +313967,Lightning Charging Cable,1,14.95,2019-12-14 11:06:00,124 Highland St, Boston,MA,02215 +313968,USB-C Charging Cable,1,11.95,2019-12-01 17:20:00,878 Cedar St, San Francisco,CA,94016 +313969,Apple Airpods Headphones,1,150.0,2019-12-24 10:30:00,520 6th St, Seattle,WA,98101 +313970,AA Batteries (4-pack),2,3.84,2019-12-05 19:17:00,914 West St, Austin,TX,73301 +313971,Wired Headphones,1,11.99,2019-12-27 23:24:00,16 Madison St, San Francisco,CA,94016 +313972,Apple Airpods Headphones,1,150.0,2019-12-10 19:32:00,530 Cedar St, Dallas,TX,75001 +313973,Lightning Charging Cable,1,14.95,2019-12-01 20:52:00,916 Park St, Seattle,WA,98101 +313974,AAA Batteries (4-pack),1,2.99,2019-12-19 09:51:00,555 Jefferson St, New York City,NY,10001 +313975,AA Batteries (4-pack),1,3.84,2019-12-07 19:06:00,907 Lake St, New York City,NY,10001 +313976,Wired Headphones,1,11.99,2019-12-06 11:24:00,352 Willow St, Boston,MA,02215 +313977,Wired Headphones,1,11.99,2019-12-26 22:09:00,544 Pine St, Atlanta,GA,30301 +313978,Lightning Charging Cable,1,14.95,2019-12-24 10:46:00,391 Meadow St, San Francisco,CA,94016 +313979,Wired Headphones,1,11.99,2019-12-26 09:28:00,864 4th St, Portland,ME,04101 +313980,Google Phone,1,600.0,2019-12-18 14:31:00,442 10th St, Austin,TX,73301 +313980,USB-C Charging Cable,1,11.95,2019-12-18 14:31:00,442 10th St, Austin,TX,73301 +313981,AAA Batteries (4-pack),3,2.99,2019-12-31 14:36:00,380 South St, Dallas,TX,75001 +313982,Lightning Charging Cable,1,14.95,2019-12-11 13:36:00,797 Hill St, Los Angeles,CA,90001 +313983,Lightning Charging Cable,1,14.95,2019-12-28 10:35:00,301 Pine St, Atlanta,GA,30301 +313984,20in Monitor,1,109.99,2019-12-02 00:09:00,470 Jefferson St, San Francisco,CA,94016 +313985,27in 4K Gaming Monitor,1,389.99,2019-12-21 14:15:00,391 Wilson St, Austin,TX,73301 +313986,34in Ultrawide Monitor,1,379.99,2019-12-01 22:06:00,809 5th St, San Francisco,CA,94016 +313987,AAA Batteries (4-pack),1,2.99,2019-12-04 23:34:00,79 Wilson St, Boston,MA,02215 +313988,Wired Headphones,1,11.99,2019-12-20 12:56:00,66 11th St, San Francisco,CA,94016 +313989,Bose SoundSport Headphones,1,99.99,2019-12-30 11:32:00,469 Jackson St, Boston,MA,02215 +313990,USB-C Charging Cable,1,11.95,2019-12-25 16:20:00,743 Spruce St, San Francisco,CA,94016 +313991,Bose SoundSport Headphones,1,99.99,2019-12-29 23:15:00,452 Elm St, Los Angeles,CA,90001 +313992,USB-C Charging Cable,1,11.95,2019-12-17 13:07:00,373 Sunset St, Atlanta,GA,30301 +313993,Wired Headphones,1,11.99,2019-12-27 21:39:00,973 13th St, San Francisco,CA,94016 +313994,Bose SoundSport Headphones,1,99.99,2019-12-01 09:30:00,99 Park St, New York City,NY,10001 +313995,Lightning Charging Cable,1,14.95,2019-12-17 11:34:00,391 Wilson St, Los Angeles,CA,90001 +313996,AAA Batteries (4-pack),4,2.99,2019-12-17 13:25:00,757 Chestnut St, San Francisco,CA,94016 +313997,AA Batteries (4-pack),1,3.84,2019-12-18 14:18:00,492 Highland St, Portland,OR,97035 +313998,AA Batteries (4-pack),2,3.84,2019-12-01 16:35:00,598 Willow St, Austin,TX,73301 +313999,AA Batteries (4-pack),1,3.84,2019-12-11 19:17:00,130 Main St, Atlanta,GA,30301 +314000,AAA Batteries (4-pack),1,2.99,2019-12-01 17:38:00,846 6th St, Los Angeles,CA,90001 +314001,Lightning Charging Cable,1,14.95,2019-12-14 17:07:00,166 Dogwood St, Dallas,TX,75001 +314002,USB-C Charging Cable,1,11.95,2019-12-02 12:47:00,167 Cedar St, Boston,MA,02215 +314003,Google Phone,1,600.0,2019-12-12 04:22:00,504 Lake St, San Francisco,CA,94016 +314004,USB-C Charging Cable,1,11.95,2019-12-09 07:55:00,341 1st St, Dallas,TX,75001 +314005,Vareebadd Phone,1,400.0,2019-12-08 22:39:00,146 South St, Atlanta,GA,30301 +314005,USB-C Charging Cable,1,11.95,2019-12-08 22:39:00,146 South St, Atlanta,GA,30301 +314006,Lightning Charging Cable,1,14.95,2019-12-21 01:16:00,235 River St, Los Angeles,CA,90001 +314007,Lightning Charging Cable,1,14.95,2019-12-22 19:44:00,86 Willow St, Portland,OR,97035 +314008,Wired Headphones,4,11.99,2019-12-17 16:31:00,999 1st St, Dallas,TX,75001 +314009,USB-C Charging Cable,1,11.95,2019-12-14 19:14:00,910 West St, New York City,NY,10001 +314010,Apple Airpods Headphones,1,150.0,2019-12-31 05:16:00,106 Chestnut St, Los Angeles,CA,90001 +314011,Lightning Charging Cable,1,14.95,2019-12-25 13:30:00,738 Wilson St, Austin,TX,73301 +314012,27in 4K Gaming Monitor,1,389.99,2019-12-27 18:39:00,456 14th St, Portland,OR,97035 +314013,USB-C Charging Cable,1,11.95,2019-12-19 10:45:00,33 Main St, Los Angeles,CA,90001 +314014,AA Batteries (4-pack),1,3.84,2019-12-15 11:39:00,110 2nd St, Los Angeles,CA,90001 +314014,Lightning Charging Cable,1,14.95,2019-12-15 11:39:00,110 2nd St, Los Angeles,CA,90001 +314015,AA Batteries (4-pack),1,3.84,2019-12-23 07:29:00,958 2nd St, Austin,TX,73301 +314016,27in FHD Monitor,1,149.99,2019-12-14 13:35:00,637 Pine St, San Francisco,CA,94016 +314017,USB-C Charging Cable,1,11.95,2019-12-23 09:35:00,263 Walnut St, San Francisco,CA,94016 +314018,AA Batteries (4-pack),2,3.84,2019-12-29 01:04:00,761 11th St, Atlanta,GA,30301 +314019,Apple Airpods Headphones,1,150.0,2019-12-23 21:08:00,727 Washington St, Los Angeles,CA,90001 +314020,AA Batteries (4-pack),2,3.84,2019-12-21 14:31:00,827 Lincoln St, Los Angeles,CA,90001 +314021,AAA Batteries (4-pack),1,2.99,2019-12-09 23:16:00,298 North St, Los Angeles,CA,90001 +314022,AAA Batteries (4-pack),5,2.99,2019-12-27 14:32:00,326 Jefferson St, San Francisco,CA,94016 +314023,Lightning Charging Cable,1,14.95,2019-12-15 04:22:00,898 Jefferson St, San Francisco,CA,94016 +314024,AA Batteries (4-pack),1,3.84,2019-12-31 21:56:00,730 Church St, San Francisco,CA,94016 +314025,AAA Batteries (4-pack),1,2.99,2019-12-15 17:59:00,538 6th St, San Francisco,CA,94016 +314026,AA Batteries (4-pack),1,3.84,2019-12-27 09:28:00,308 South St, Dallas,TX,75001 +314027,20in Monitor,1,109.99,2019-12-31 02:51:00,15 Chestnut St, Boston,MA,02215 +314028,Apple Airpods Headphones,1,150.0,2019-12-03 07:03:00,614 North St, Boston,MA,02215 +314029,Bose SoundSport Headphones,1,99.99,2019-12-09 21:57:00,819 West St, New York City,NY,10001 +314030,Wired Headphones,2,11.99,2019-12-18 01:09:00,693 River St, Dallas,TX,75001 +314031,iPhone,1,700.0,2019-12-26 17:47:00,6 Wilson St, New York City,NY,10001 +314032,USB-C Charging Cable,1,11.95,2019-12-06 19:42:00,448 Church St, San Francisco,CA,94016 +314033,USB-C Charging Cable,1,11.95,2019-12-06 16:34:00,753 Wilson St, Los Angeles,CA,90001 +314034,Lightning Charging Cable,1,14.95,2019-12-21 14:14:00,190 Walnut St, Seattle,WA,98101 +314035,34in Ultrawide Monitor,1,379.99,2019-12-27 14:59:00,996 Johnson St, Seattle,WA,98101 +314036,Wired Headphones,1,11.99,2019-12-01 22:44:00,526 10th St, Los Angeles,CA,90001 +314037,27in 4K Gaming Monitor,1,389.99,2019-12-19 19:55:00,110 Park St, New York City,NY,10001 +314038,iPhone,1,700.0,2019-12-26 20:25:00,116 Sunset St, Portland,OR,97035 +314039,AAA Batteries (4-pack),2,2.99,2019-12-24 18:47:00,862 Lake St, San Francisco,CA,94016 +314040,Apple Airpods Headphones,1,150.0,2019-12-28 21:18:00,350 Madison St, Atlanta,GA,30301 +314041,Lightning Charging Cable,1,14.95,2019-12-19 01:12:00,551 Church St, Los Angeles,CA,90001 +314042,USB-C Charging Cable,1,11.95,2019-12-20 14:53:00,801 11th St, San Francisco,CA,94016 +314043,AA Batteries (4-pack),1,3.84,2019-12-27 09:02:00,708 Adams St, Los Angeles,CA,90001 +314044,Macbook Pro Laptop,1,1700.0,2019-12-17 18:14:00,697 Church St, Los Angeles,CA,90001 +314045,Macbook Pro Laptop,1,1700.0,2019-12-05 21:51:00,457 4th St, San Francisco,CA,94016 +314046,AA Batteries (4-pack),1,3.84,2019-12-04 22:44:00,461 Maple St, Portland,OR,97035 +314047,Wired Headphones,1,11.99,2019-12-09 11:03:00,458 Madison St, Atlanta,GA,30301 +314048,Apple Airpods Headphones,1,150.0,2019-12-06 12:18:00,976 Johnson St, Seattle,WA,98101 +314049,USB-C Charging Cable,1,11.95,2019-12-01 16:25:00,455 Pine St, New York City,NY,10001 +314050,USB-C Charging Cable,1,11.95,2019-12-05 12:24:00,299 Maple St, San Francisco,CA,94016 +314051,Flatscreen TV,1,300.0,2019-12-16 11:35:00,301 Main St, Dallas,TX,75001 +314052,Wired Headphones,1,11.99,2019-12-29 13:06:00,563 Willow St, Los Angeles,CA,90001 +314053,27in 4K Gaming Monitor,1,389.99,2019-12-15 19:37:00,209 Washington St, Portland,OR,97035 +314054,iPhone,1,700.0,2019-12-11 08:16:00,595 Cedar St, Los Angeles,CA,90001 +314055,Lightning Charging Cable,1,14.95,2019-12-15 13:13:00,475 12th St, Los Angeles,CA,90001 +314056,iPhone,1,700.0,2019-12-06 11:04:00,55 West St, Dallas,TX,75001 +314057,Macbook Pro Laptop,1,1700.0,2019-12-13 14:29:00,529 8th St, Dallas,TX,75001 +314058,Apple Airpods Headphones,1,150.0,2019-12-22 16:57:00,26 Highland St, San Francisco,CA,94016 +314059,Apple Airpods Headphones,1,150.0,2019-12-05 18:34:00,811 4th St, Atlanta,GA,30301 +314060,Wired Headphones,1,11.99,2019-12-05 10:25:00,871 Dogwood St, San Francisco,CA,94016 +314061,Wired Headphones,1,11.99,2019-12-24 18:48:00,471 Lake St, San Francisco,CA,94016 +314062,Lightning Charging Cable,1,14.95,2019-12-31 12:37:00,321 8th St, Boston,MA,02215 +314063,AAA Batteries (4-pack),3,2.99,2019-12-21 23:46:00,592 Main St, Austin,TX,73301 +314064,Apple Airpods Headphones,1,150.0,2019-12-28 09:06:00,129 14th St, Los Angeles,CA,90001 +314065,AAA Batteries (4-pack),1,2.99,2019-12-15 00:44:00,35 2nd St, Boston,MA,02215 +314066,USB-C Charging Cable,1,11.95,2020-01-01 01:52:00,922 8th St, New York City,NY,10001 +314067,Apple Airpods Headphones,1,150.0,2019-12-15 16:49:00,301 Pine St, Atlanta,GA,30301 +314068,AAA Batteries (4-pack),2,2.99,2019-12-16 10:54:00,26 Center St, Los Angeles,CA,90001 +314069,Apple Airpods Headphones,1,150.0,2019-12-23 10:03:00,229 South St, Los Angeles,CA,90001 +314070,Apple Airpods Headphones,1,150.0,2019-12-08 11:08:00,22 Sunset St, Los Angeles,CA,90001 +314071,AAA Batteries (4-pack),2,2.99,2019-12-10 19:21:00,655 Adams St, Boston,MA,02215 +314072,Apple Airpods Headphones,1,150.0,2019-12-25 10:04:00,143 Jefferson St, San Francisco,CA,94016 +314073,USB-C Charging Cable,1,11.95,2019-12-08 17:34:00,702 Chestnut St, Portland,OR,97035 +314074,Lightning Charging Cable,1,14.95,2019-12-24 08:54:00,768 Church St, Boston,MA,02215 +314075,27in 4K Gaming Monitor,1,389.99,2019-12-08 23:38:00,120 Wilson St, Los Angeles,CA,90001 +314076,Bose SoundSport Headphones,1,99.99,2019-12-31 11:13:00,768 Chestnut St, New York City,NY,10001 +314077,AAA Batteries (4-pack),1,2.99,2019-12-09 19:03:00,21 5th St, Dallas,TX,75001 +314078,USB-C Charging Cable,1,11.95,2019-12-24 22:56:00,341 Park St, Seattle,WA,98101 +314079,Lightning Charging Cable,1,14.95,2019-12-13 21:37:00,219 Jefferson St, San Francisco,CA,94016 +314080,Lightning Charging Cable,1,14.95,2019-12-16 12:44:00,557 11th St, Boston,MA,02215 +314081,AAA Batteries (4-pack),3,2.99,2019-12-08 15:13:00,554 6th St, Boston,MA,02215 +314081,27in 4K Gaming Monitor,1,389.99,2019-12-08 15:13:00,554 6th St, Boston,MA,02215 +314082,ThinkPad Laptop,1,999.99,2019-12-31 14:56:00,941 Ridge St, Boston,MA,02215 +314083,Bose SoundSport Headphones,1,99.99,2019-12-04 23:09:00,747 Chestnut St, San Francisco,CA,94016 +314084,USB-C Charging Cable,1,11.95,2019-12-06 12:07:00,70 Johnson St, San Francisco,CA,94016 +314085,Wired Headphones,1,11.99,2019-12-19 09:14:00,448 West St, Seattle,WA,98101 +314086,AA Batteries (4-pack),1,3.84,2019-12-14 10:13:00,314 9th St, Austin,TX,73301 +314086,ThinkPad Laptop,1,999.99,2019-12-14 10:13:00,314 9th St, Austin,TX,73301 +314087,Wired Headphones,1,11.99,2019-12-03 14:14:00,656 13th St, New York City,NY,10001 +314088,Bose SoundSport Headphones,1,99.99,2019-12-07 10:16:00,732 Lake St, Los Angeles,CA,90001 +314089,Wired Headphones,1,11.99,2019-12-13 12:20:00,602 Park St, New York City,NY,10001 +314090,27in FHD Monitor,1,149.99,2019-12-17 20:04:00,28 1st St, San Francisco,CA,94016 +314091,Macbook Pro Laptop,1,1700.0,2019-12-18 17:40:00,190 4th St, New York City,NY,10001 +314092,AA Batteries (4-pack),1,3.84,2019-12-25 15:22:00,23 Ridge St, Atlanta,GA,30301 +314093,AAA Batteries (4-pack),1,2.99,2019-12-11 07:51:00,377 Dogwood St, Seattle,WA,98101 +314094,Flatscreen TV,1,300.0,2019-12-29 10:07:00,512 Walnut St, San Francisco,CA,94016 +314095,Flatscreen TV,1,300.0,2019-12-26 18:00:00,66 Church St, Los Angeles,CA,90001 +314096,Wired Headphones,1,11.99,2019-12-05 13:28:00,91 5th St, Los Angeles,CA,90001 +314097,Apple Airpods Headphones,1,150.0,2019-12-15 17:22:00,5 7th St, Portland,OR,97035 +314098,Lightning Charging Cable,1,14.95,2019-12-16 15:43:00,239 14th St, Portland,OR,97035 +314099,AAA Batteries (4-pack),2,2.99,2019-12-14 22:31:00,19 Adams St, Seattle,WA,98101 +314100,Bose SoundSport Headphones,1,99.99,2019-12-16 18:47:00,457 Johnson St, Seattle,WA,98101 +314101,Google Phone,1,600.0,2019-12-22 20:10:00,164 6th St, Los Angeles,CA,90001 +314102,Bose SoundSport Headphones,1,99.99,2019-12-24 11:29:00,73 Washington St, Dallas,TX,75001 +314103,20in Monitor,1,109.99,2019-12-06 16:49:00,243 4th St, New York City,NY,10001 +314104,Lightning Charging Cable,1,14.95,2019-12-23 16:54:00,37 Sunset St, Boston,MA,02215 +314105,Bose SoundSport Headphones,1,99.99,2019-12-10 15:44:00,68 9th St, Austin,TX,73301 +314106,AA Batteries (4-pack),2,3.84,2019-12-04 22:56:00,821 Madison St, Seattle,WA,98101 +314107,Google Phone,1,600.0,2019-12-27 21:53:00,417 Main St, Dallas,TX,75001 +314108,27in FHD Monitor,1,149.99,2019-12-13 02:34:00,950 Hickory St, Atlanta,GA,30301 +314109,Macbook Pro Laptop,1,1700.0,2019-12-17 14:34:00,468 Hill St, San Francisco,CA,94016 +314110,USB-C Charging Cable,1,11.95,2019-12-05 23:22:00,42 River St, San Francisco,CA,94016 +314111,27in 4K Gaming Monitor,1,389.99,2019-12-05 13:16:00,698 Madison St, Boston,MA,02215 +314112,34in Ultrawide Monitor,1,379.99,2019-12-01 12:51:00,833 Main St, San Francisco,CA,94016 +314113,ThinkPad Laptop,1,999.99,2019-12-23 00:22:00,977 Hill St, Dallas,TX,75001 +314114,AAA Batteries (4-pack),1,2.99,2019-12-21 14:46:00,14 11th St, New York City,NY,10001 +314115,AAA Batteries (4-pack),1,2.99,2019-12-03 15:14:00,774 Hickory St, Portland,ME,04101 +314116,USB-C Charging Cable,1,11.95,2019-12-04 10:17:00,377 Forest St, Atlanta,GA,30301 +314117,Wired Headphones,1,11.99,2019-12-16 00:23:00,100 6th St, Boston,MA,02215 +314118,USB-C Charging Cable,1,11.95,2019-12-19 19:03:00,97 11th St, Portland,OR,97035 +314119,34in Ultrawide Monitor,1,379.99,2019-12-22 10:09:00,602 Jackson St, Dallas,TX,75001 +314120,27in 4K Gaming Monitor,1,389.99,2019-12-16 10:05:00,433 West St, Los Angeles,CA,90001 +314121,AA Batteries (4-pack),1,3.84,2019-12-14 14:34:00,656 Meadow St, Atlanta,GA,30301 +314122,Lightning Charging Cable,1,14.95,2019-12-05 06:18:00,275 Walnut St, New York City,NY,10001 +314123,AAA Batteries (4-pack),1,2.99,2019-12-10 12:17:00,956 North St, Dallas,TX,75001 +314124,AA Batteries (4-pack),1,3.84,2019-12-02 14:50:00,740 Park St, Los Angeles,CA,90001 +314125,USB-C Charging Cable,2,11.95,2019-12-04 16:00:00,890 1st St, Seattle,WA,98101 +314126,AA Batteries (4-pack),2,3.84,2019-12-06 12:08:00,301 4th St, Dallas,TX,75001 +314127,USB-C Charging Cable,2,11.95,2019-12-31 12:13:00,86 Elm St, Austin,TX,73301 +314128,USB-C Charging Cable,1,11.95,2019-12-27 21:11:00,130 10th St, Atlanta,GA,30301 +314129,Lightning Charging Cable,1,14.95,2019-12-10 14:13:00,946 Willow St, Boston,MA,02215 +314130,27in 4K Gaming Monitor,1,389.99,2019-12-12 11:44:00,717 12th St, Dallas,TX,75001 +314131,20in Monitor,1,109.99,2019-12-04 18:50:00,497 9th St, San Francisco,CA,94016 +314132,USB-C Charging Cable,1,11.95,2019-12-28 08:21:00,239 4th St, Los Angeles,CA,90001 +314133,USB-C Charging Cable,1,11.95,2019-12-16 11:48:00,313 Hill St, Los Angeles,CA,90001 +314134,AA Batteries (4-pack),2,3.84,2019-12-02 10:31:00,342 River St, Los Angeles,CA,90001 +314135,Lightning Charging Cable,1,14.95,2019-12-08 14:16:00,581 Hickory St, Austin,TX,73301 +314136,USB-C Charging Cable,1,11.95,2019-12-13 17:42:00,333 Adams St, San Francisco,CA,94016 +314137,Lightning Charging Cable,1,14.95,2019-12-26 20:33:00,268 12th St, Austin,TX,73301 +314138,Bose SoundSport Headphones,1,99.99,2019-12-26 16:17:00,189 Ridge St, Atlanta,GA,30301 +314139,Flatscreen TV,1,300.0,2019-12-28 16:00:00,108 9th St, Los Angeles,CA,90001 +314140,AAA Batteries (4-pack),1,2.99,2019-12-08 20:44:00,346 9th St, San Francisco,CA,94016 +314141,AAA Batteries (4-pack),1,2.99,2019-12-20 09:41:00,330 Walnut St, Boston,MA,02215 +314142,USB-C Charging Cable,1,11.95,2019-12-21 14:45:00,655 Sunset St, San Francisco,CA,94016 +314143,AAA Batteries (4-pack),1,2.99,2019-12-10 14:35:00,205 5th St, San Francisco,CA,94016 +314144,Lightning Charging Cable,1,14.95,2019-12-27 18:28:00,475 13th St, Dallas,TX,75001 +314145,20in Monitor,1,109.99,2019-12-23 19:12:00,857 Lincoln St, San Francisco,CA,94016 +314146,Apple Airpods Headphones,1,150.0,2019-12-12 10:51:00,659 5th St, New York City,NY,10001 +314147,Apple Airpods Headphones,1,150.0,2019-12-17 21:43:00,733 River St, Austin,TX,73301 +314148,iPhone,1,700.0,2019-12-27 15:15:00,493 Hill St, Los Angeles,CA,90001 +314149,Flatscreen TV,1,300.0,2019-12-01 11:52:00,117 14th St, Dallas,TX,75001 +314150,34in Ultrawide Monitor,1,379.99,2019-12-16 19:31:00,905 Lincoln St, New York City,NY,10001 +314151,Apple Airpods Headphones,1,150.0,2019-12-28 18:23:00,768 Main St, San Francisco,CA,94016 +314152,Bose SoundSport Headphones,1,99.99,2019-12-24 17:16:00,847 River St, Boston,MA,02215 +314153,20in Monitor,1,109.99,2019-12-05 13:23:00,25 Meadow St, Seattle,WA,98101 +314154,Bose SoundSport Headphones,1,99.99,2019-12-08 18:58:00,789 Johnson St, Seattle,WA,98101 +314155,USB-C Charging Cable,1,11.95,2019-12-16 12:42:00,256 Washington St, Los Angeles,CA,90001 +314156,Wired Headphones,1,11.99,2019-12-11 23:09:00,294 Elm St, Los Angeles,CA,90001 +314157,Wired Headphones,1,11.99,2019-12-23 09:28:00,157 Lakeview St, Seattle,WA,98101 +314158,AAA Batteries (4-pack),1,2.99,2019-12-15 22:30:00,865 1st St, Boston,MA,02215 +314159,USB-C Charging Cable,1,11.95,2019-12-12 11:38:00,902 Washington St, New York City,NY,10001 +314160,Apple Airpods Headphones,1,150.0,2019-12-20 14:49:00,505 10th St, Portland,OR,97035 +314161,USB-C Charging Cable,1,11.95,2019-12-17 10:59:00,392 6th St, Los Angeles,CA,90001 +314162,Lightning Charging Cable,1,14.95,2019-12-26 21:25:00,483 Park St, Dallas,TX,75001 +314163,USB-C Charging Cable,1,11.95,2019-12-22 12:00:00,393 Johnson St, Boston,MA,02215 +314164,Lightning Charging Cable,1,14.95,2019-12-02 11:46:00,692 Cherry St, Los Angeles,CA,90001 +314165,AA Batteries (4-pack),1,3.84,2019-12-12 15:35:00,140 Sunset St, San Francisco,CA,94016 +314166,Wired Headphones,1,11.99,2019-12-05 18:17:00,705 9th St, Atlanta,GA,30301 +314167,Wired Headphones,1,11.99,2019-12-29 21:14:00,363 Forest St, Boston,MA,02215 +314168,ThinkPad Laptop,1,999.99,2019-12-02 21:42:00,724 7th St, San Francisco,CA,94016 +314169,LG Washing Machine,1,600.0,2019-12-02 16:58:00,64 Meadow St, Atlanta,GA,30301 +314170,27in FHD Monitor,1,149.99,2019-12-15 15:23:00,519 Forest St, New York City,NY,10001 +314171,Wired Headphones,1,11.99,2019-12-22 22:56:00,757 Forest St, Portland,OR,97035 +314172,AAA Batteries (4-pack),1,2.99,2019-12-09 17:57:00,636 11th St, San Francisco,CA,94016 +314173,Bose SoundSport Headphones,1,99.99,2019-12-26 21:50:00,648 Spruce St, San Francisco,CA,94016 +314174,AAA Batteries (4-pack),4,2.99,2019-12-15 23:13:00,222 South St, New York City,NY,10001 +314175,AA Batteries (4-pack),1,3.84,2019-12-23 18:00:00,21 8th St, Los Angeles,CA,90001 +314176,Wired Headphones,1,11.99,2019-12-24 14:01:00,827 Maple St, Seattle,WA,98101 +314177,AA Batteries (4-pack),1,3.84,2019-12-07 06:58:00,269 Elm St, Boston,MA,02215 +314178,USB-C Charging Cable,1,11.95,2019-12-15 07:49:00,647 14th St, New York City,NY,10001 +314179,USB-C Charging Cable,1,11.95,2019-12-31 22:46:00,371 Hickory St, New York City,NY,10001 +314180,AAA Batteries (4-pack),1,2.99,2019-12-02 20:19:00,909 South St, New York City,NY,10001 +314181,USB-C Charging Cable,1,11.95,2019-12-21 22:50:00,338 Hickory St, Los Angeles,CA,90001 +314182,Bose SoundSport Headphones,1,99.99,2019-12-26 09:12:00,629 Lincoln St, San Francisco,CA,94016 +314183,iPhone,1,700.0,2019-12-05 12:31:00,663 Lake St, New York City,NY,10001 +314184,Lightning Charging Cable,1,14.95,2019-12-13 15:37:00,414 Spruce St, Portland,OR,97035 +314185,iPhone,1,700.0,2019-12-21 13:31:00,534 7th St, Boston,MA,02215 +314186,AAA Batteries (4-pack),1,2.99,2019-12-21 18:11:00,386 Johnson St, New York City,NY,10001 +314187,27in FHD Monitor,1,149.99,2019-12-18 14:18:00,860 Church St, Boston,MA,02215 +314188,Lightning Charging Cable,1,14.95,2019-12-13 19:52:00,806 5th St, Los Angeles,CA,90001 +314189,Lightning Charging Cable,1,14.95,2019-12-06 20:06:00,969 Center St, San Francisco,CA,94016 +314190,Wired Headphones,1,11.99,2019-12-25 20:43:00,620 River St, San Francisco,CA,94016 +314191,USB-C Charging Cable,1,11.95,2019-12-03 15:22:00,584 Church St, Dallas,TX,75001 +314192,USB-C Charging Cable,1,11.95,2019-12-10 13:00:00,670 Johnson St, Portland,OR,97035 +314193,AAA Batteries (4-pack),1,2.99,2019-12-31 13:42:00,992 Pine St, San Francisco,CA,94016 +314194,Flatscreen TV,1,300.0,2019-12-28 08:23:00,31 Adams St, San Francisco,CA,94016 +314195,Bose SoundSport Headphones,1,99.99,2019-12-12 18:36:00,346 Ridge St, Atlanta,GA,30301 +314196,iPhone,1,700.0,2019-12-23 10:25:00,541 Lakeview St, Austin,TX,73301 +314197,Bose SoundSport Headphones,1,99.99,2019-12-14 10:54:00,487 Maple St, Boston,MA,02215 +314197,AA Batteries (4-pack),2,3.84,2019-12-14 10:54:00,487 Maple St, Boston,MA,02215 +314198,Flatscreen TV,1,300.0,2019-12-02 12:33:00,155 1st St, Los Angeles,CA,90001 +314199,Lightning Charging Cable,1,14.95,2019-12-10 15:16:00,612 Adams St, Los Angeles,CA,90001 +314200,USB-C Charging Cable,1,11.95,2019-12-10 12:54:00,285 Jackson St, Boston,MA,02215 +314201,Wired Headphones,1,11.99,2019-12-20 10:59:00,691 Park St, San Francisco,CA,94016 +314202,Bose SoundSport Headphones,1,99.99,2019-12-12 17:59:00,212 Jackson St, New York City,NY,10001 +314203,27in FHD Monitor,1,149.99,2019-12-04 17:02:00,447 Cherry St, Boston,MA,02215 +314204,AA Batteries (4-pack),1,3.84,2019-12-04 19:42:00,143 12th St, Los Angeles,CA,90001 +314205,AAA Batteries (4-pack),1,2.99,2019-12-13 10:33:00,301 Jefferson St, Los Angeles,CA,90001 +314206,Lightning Charging Cable,1,14.95,2019-12-16 06:11:00,360 Cherry St, New York City,NY,10001 +314207,USB-C Charging Cable,1,11.95,2019-12-16 11:17:00,707 Lincoln St, Seattle,WA,98101 +314208,ThinkPad Laptop,1,999.99,2019-12-15 12:13:00,664 14th St, Dallas,TX,75001 +314209,27in FHD Monitor,1,149.99,2019-12-10 16:40:00,107 Elm St, San Francisco,CA,94016 +314210,Apple Airpods Headphones,1,150.0,2019-12-18 21:23:00,795 4th St, Los Angeles,CA,90001 +314211,USB-C Charging Cable,1,11.95,2019-12-16 22:03:00,836 Sunset St, Los Angeles,CA,90001 +314212,Wired Headphones,1,11.99,2019-12-07 18:36:00,779 8th St, Seattle,WA,98101 +314213,AA Batteries (4-pack),1,3.84,2019-12-18 21:45:00,973 12th St, Los Angeles,CA,90001 +314214,USB-C Charging Cable,1,11.95,2019-12-13 11:14:00,276 10th St, Seattle,WA,98101 +314215,Apple Airpods Headphones,1,150.0,2019-12-25 22:22:00,736 Ridge St, Dallas,TX,75001 +314216,Lightning Charging Cable,1,14.95,2019-12-01 10:40:00,81 Sunset St, Boston,MA,02215 +314217,34in Ultrawide Monitor,1,379.99,2019-12-05 22:44:00,223 1st St, San Francisco,CA,94016 +314218,27in FHD Monitor,1,149.99,2019-12-07 10:24:00,29 4th St, San Francisco,CA,94016 +314219,Lightning Charging Cable,1,14.95,2019-12-04 06:59:00,484 12th St, Atlanta,GA,30301 +314220,AAA Batteries (4-pack),2,2.99,2019-12-05 19:17:00,594 Forest St, Los Angeles,CA,90001 +314221,AAA Batteries (4-pack),1,2.99,2019-12-07 16:26:00,623 9th St, New York City,NY,10001 +314222,Bose SoundSport Headphones,1,99.99,2019-12-11 18:50:00,753 Forest St, Portland,OR,97035 +314223,Apple Airpods Headphones,1,150.0,2019-12-26 19:15:00,29 Wilson St, Atlanta,GA,30301 +314224,Macbook Pro Laptop,1,1700.0,2019-12-05 16:49:00,119 12th St, Dallas,TX,75001 +314225,34in Ultrawide Monitor,1,379.99,2019-12-20 00:14:00,402 West St, Los Angeles,CA,90001 +314226,Macbook Pro Laptop,1,1700.0,2019-12-09 22:22:00,591 Jefferson St, Dallas,TX,75001 +314227,Apple Airpods Headphones,1,150.0,2019-12-05 22:24:00,796 Chestnut St, San Francisco,CA,94016 +314228,AA Batteries (4-pack),1,3.84,2019-12-07 17:17:00,695 14th St, Boston,MA,02215 +314229,USB-C Charging Cable,1,11.95,2019-12-14 22:18:00,68 13th St, New York City,NY,10001 +314230,AAA Batteries (4-pack),2,2.99,2019-12-30 15:51:00,846 13th St, San Francisco,CA,94016 +314231,Lightning Charging Cable,1,14.95,2019-12-08 02:07:00,615 1st St, Atlanta,GA,30301 +314232,USB-C Charging Cable,2,11.95,2019-12-04 14:00:00,346 Cherry St, San Francisco,CA,94016 +314233,27in 4K Gaming Monitor,1,389.99,2019-12-23 10:24:00,78 Meadow St, Dallas,TX,75001 +314234,AA Batteries (4-pack),1,3.84,2019-12-08 23:45:00,314 River St, Boston,MA,02215 +314235,Wired Headphones,1,11.99,2019-12-04 23:29:00,326 11th St, San Francisco,CA,94016 +314236,27in 4K Gaming Monitor,1,389.99,2019-12-21 21:32:00,669 8th St, San Francisco,CA,94016 +314237,AA Batteries (4-pack),2,3.84,2019-12-29 22:56:00,387 Cedar St, Atlanta,GA,30301 +314238,USB-C Charging Cable,1,11.95,2019-12-05 16:40:00,503 River St, Seattle,WA,98101 +314239,27in FHD Monitor,1,149.99,2019-12-29 13:17:00,857 Jackson St, Dallas,TX,75001 +314240,USB-C Charging Cable,1,11.95,2019-12-09 19:34:00,685 Lincoln St, New York City,NY,10001 +314241,34in Ultrawide Monitor,1,379.99,2019-12-30 09:33:00,401 Church St, Austin,TX,73301 +314242,AA Batteries (4-pack),3,3.84,2019-12-01 07:11:00,260 Forest St, Dallas,TX,75001 +314243,ThinkPad Laptop,1,999.99,2019-12-22 19:32:00,776 10th St, San Francisco,CA,94016 +314244,USB-C Charging Cable,1,11.95,2019-12-19 12:44:00,325 Lincoln St, Boston,MA,02215 +314245,Wired Headphones,2,11.99,2019-12-13 11:40:00,370 Walnut St, Dallas,TX,75001 +314246,Bose SoundSport Headphones,1,99.99,2019-12-24 12:47:00,998 Washington St, Los Angeles,CA,90001 +314247,Wired Headphones,2,11.99,2019-12-18 22:35:00,369 6th St, San Francisco,CA,94016 +314248,Apple Airpods Headphones,1,150.0,2019-12-05 14:27:00,700 13th St, Dallas,TX,75001 +314249,USB-C Charging Cable,1,11.95,2019-12-20 13:03:00,679 6th St, San Francisco,CA,94016 +314250,Bose SoundSport Headphones,1,99.99,2019-12-04 14:18:00,827 Elm St, Dallas,TX,75001 +314251,ThinkPad Laptop,1,999.99,2019-12-10 16:48:00,66 Hill St, New York City,NY,10001 +314252,Lightning Charging Cable,1,14.95,2019-12-01 19:24:00,371 Center St, Portland,ME,04101 +314253,AAA Batteries (4-pack),2,2.99,2019-12-31 19:04:00,753 Washington St, San Francisco,CA,94016 +314254,Apple Airpods Headphones,1,150.0,2019-12-30 09:42:00,205 Hill St, Seattle,WA,98101 +314255,USB-C Charging Cable,1,11.95,2019-12-21 09:59:00,737 Pine St, New York City,NY,10001 +314256,Bose SoundSport Headphones,1,99.99,2019-12-17 11:15:00,854 South St, San Francisco,CA,94016 +314257,USB-C Charging Cable,1,11.95,2019-12-19 08:40:00,432 Cedar St, San Francisco,CA,94016 +314258,Apple Airpods Headphones,1,150.0,2019-12-29 15:04:00,955 Ridge St, Portland,ME,04101 +314259,Apple Airpods Headphones,1,150.0,2019-12-04 13:41:00,899 4th St, Dallas,TX,75001 +314260,Bose SoundSport Headphones,1,99.99,2019-12-17 18:36:00,757 River St, New York City,NY,10001 +314261,Lightning Charging Cable,1,14.95,2019-12-23 12:32:00,177 4th St, San Francisco,CA,94016 +314262,Apple Airpods Headphones,1,150.0,2019-12-06 20:13:00,818 Chestnut St, Seattle,WA,98101 +314263,iPhone,1,700.0,2019-12-04 20:49:00,941 River St, Portland,OR,97035 +314264,AAA Batteries (4-pack),2,2.99,2019-12-20 01:55:00,530 Johnson St, Seattle,WA,98101 +314265,USB-C Charging Cable,1,11.95,2019-12-20 19:16:00,618 Pine St, Portland,OR,97035 +314266,Lightning Charging Cable,1,14.95,2019-12-22 19:51:00,675 Lincoln St, Los Angeles,CA,90001 +314267,Apple Airpods Headphones,1,150.0,2019-12-18 23:19:00,2 Dogwood St, Dallas,TX,75001 +314268,AAA Batteries (4-pack),1,2.99,2019-12-02 14:22:00,747 Cherry St, New York City,NY,10001 +314269,AA Batteries (4-pack),1,3.84,2019-12-29 11:11:00,627 Jefferson St, New York City,NY,10001 +314270,Apple Airpods Headphones,1,150.0,2019-12-23 12:22:00,141 Meadow St, San Francisco,CA,94016 +314271,iPhone,1,700.0,2019-12-19 14:34:00,543 Cherry St, New York City,NY,10001 +314272,AAA Batteries (4-pack),1,2.99,2019-12-03 21:45:00,461 Sunset St, Los Angeles,CA,90001 +314273,27in 4K Gaming Monitor,1,389.99,2019-12-20 18:04:00,734 Adams St, Atlanta,GA,30301 +314274,Bose SoundSport Headphones,1,99.99,2019-12-26 15:48:00,814 Maple St, San Francisco,CA,94016 +314275,Flatscreen TV,1,300.0,2019-12-24 10:27:00,627 Dogwood St, Portland,ME,04101 +314276,USB-C Charging Cable,1,11.95,2019-12-06 12:40:00,826 5th St, Austin,TX,73301 +314277,USB-C Charging Cable,2,11.95,2019-12-06 14:08:00,977 Washington St, Los Angeles,CA,90001 +314278,AA Batteries (4-pack),1,3.84,2019-12-25 09:39:00,180 Pine St, New York City,NY,10001 +314279,AA Batteries (4-pack),1,3.84,2019-12-17 07:24:00,782 Jefferson St, Los Angeles,CA,90001 +314280,Wired Headphones,1,11.99,2019-12-06 22:02:00,628 Meadow St, Austin,TX,73301 +314281,Apple Airpods Headphones,1,150.0,2019-12-11 20:17:00,3 Johnson St, New York City,NY,10001 +314282,27in 4K Gaming Monitor,1,389.99,2019-12-13 14:28:00,434 Madison St, New York City,NY,10001 +314283,27in FHD Monitor,1,149.99,2019-12-16 07:43:00,932 West St, Atlanta,GA,30301 +314284,Bose SoundSport Headphones,1,99.99,2019-12-14 13:58:00,866 Forest St, San Francisco,CA,94016 +314285,Bose SoundSport Headphones,1,99.99,2019-12-05 08:48:00,161 Hickory St, Seattle,WA,98101 +314286,Wired Headphones,1,11.99,2019-12-09 14:17:00,746 West St, New York City,NY,10001 +314287,ThinkPad Laptop,1,999.99,2019-12-01 19:01:00,861 8th St, San Francisco,CA,94016 +314288,Lightning Charging Cable,1,14.95,2019-12-09 23:44:00,400 West St, Austin,TX,73301 +314289,Google Phone,1,600.0,2019-12-04 15:54:00,730 Park St, Boston,MA,02215 +314290,AAA Batteries (4-pack),1,2.99,2019-12-24 11:29:00,439 Elm St, New York City,NY,10001 +314291,AAA Batteries (4-pack),1,2.99,2019-12-23 22:41:00,984 Church St, New York City,NY,10001 +314292,USB-C Charging Cable,1,11.95,2019-12-12 23:18:00,765 6th St, New York City,NY,10001 +314293,iPhone,1,700.0,2019-12-25 16:38:00,318 Cherry St, San Francisco,CA,94016 +314294,USB-C Charging Cable,1,11.95,2019-12-19 09:06:00,768 Johnson St, Los Angeles,CA,90001 +314295,AAA Batteries (4-pack),2,2.99,2019-12-30 21:21:00,693 Highland St, Los Angeles,CA,90001 +314296,AA Batteries (4-pack),1,3.84,2019-12-11 14:31:00,619 West St, New York City,NY,10001 +314297,27in 4K Gaming Monitor,1,389.99,2019-12-20 13:38:00,6 South St, Boston,MA,02215 +314298,iPhone,1,700.0,2019-12-26 20:54:00,98 5th St, Seattle,WA,98101 +314299,34in Ultrawide Monitor,1,379.99,2019-12-12 13:34:00,391 North St, New York City,NY,10001 +314300,iPhone,1,700.0,2019-12-31 11:54:00,525 Madison St, Dallas,TX,75001 +314301,AA Batteries (4-pack),1,3.84,2019-12-04 18:01:00,427 Ridge St, New York City,NY,10001 +314302,AA Batteries (4-pack),3,3.84,2019-12-01 22:25:00,120 Highland St, Atlanta,GA,30301 +314303,Wired Headphones,1,11.99,2019-12-25 21:03:00,424 Lake St, San Francisco,CA,94016 +314304,USB-C Charging Cable,1,11.95,2019-12-12 17:25:00,196 Highland St, Boston,MA,02215 +314305,Bose SoundSport Headphones,1,99.99,2019-12-02 22:42:00,142 Johnson St, San Francisco,CA,94016 +314306,Apple Airpods Headphones,1,150.0,2019-12-23 09:51:00,547 Cherry St, Atlanta,GA,30301 +314307,Lightning Charging Cable,1,14.95,2019-12-25 21:56:00,19 Jackson St, Portland,OR,97035 +314308,Wired Headphones,1,11.99,2019-12-18 12:43:00,568 Forest St, Portland,OR,97035 +314309,Bose SoundSport Headphones,1,99.99,2019-12-21 03:27:00,333 Jefferson St, San Francisco,CA,94016 +314310,Bose SoundSport Headphones,1,99.99,2019-12-06 16:06:00,79 2nd St, Boston,MA,02215 +314311,Wired Headphones,1,11.99,2019-12-29 23:15:00,981 South St, San Francisco,CA,94016 +314312,Lightning Charging Cable,1,14.95,2019-12-01 18:52:00,546 Dogwood St, Los Angeles,CA,90001 +314313,Apple Airpods Headphones,1,150.0,2019-12-11 12:09:00,923 10th St, Los Angeles,CA,90001 +314314,34in Ultrawide Monitor,1,379.99,2019-12-15 23:13:00,724 Main St, Seattle,WA,98101 +314315,Wired Headphones,1,11.99,2019-12-16 10:45:00,417 12th St, Seattle,WA,98101 +314316,AA Batteries (4-pack),2,3.84,2019-12-16 19:00:00,347 Park St, New York City,NY,10001 +314317,Apple Airpods Headphones,1,150.0,2019-12-26 17:05:00,795 6th St, Atlanta,GA,30301 +314318,Flatscreen TV,1,300.0,2019-12-25 20:49:00,409 Lake St, San Francisco,CA,94016 +314319,Wired Headphones,2,11.99,2019-12-22 16:21:00,643 8th St, Portland,OR,97035 +314320,LG Dryer,1,600.0,2019-12-06 12:18:00,793 4th St, Atlanta,GA,30301 +314321,AA Batteries (4-pack),1,3.84,2019-12-01 20:14:00,3 Adams St, Boston,MA,02215 +314322,Macbook Pro Laptop,1,1700.0,2019-12-11 12:53:00,968 Washington St, New York City,NY,10001 +314323,34in Ultrawide Monitor,1,379.99,2019-12-08 17:51:00,781 Cherry St, Dallas,TX,75001 +314324,AA Batteries (4-pack),1,3.84,2019-12-31 10:39:00,923 12th St, Seattle,WA,98101 +314325,Bose SoundSport Headphones,1,99.99,2019-12-24 11:32:00,304 Maple St, Boston,MA,02215 +314326,Lightning Charging Cable,1,14.95,2019-12-15 21:49:00,496 14th St, Los Angeles,CA,90001 +314326,USB-C Charging Cable,1,11.95,2019-12-15 21:49:00,496 14th St, Los Angeles,CA,90001 +314327,AAA Batteries (4-pack),2,2.99,2019-12-30 15:18:00,413 Jackson St, San Francisco,CA,94016 +314328,Wired Headphones,1,11.99,2019-12-28 18:09:00,23 Ridge St, Dallas,TX,75001 +314329,AA Batteries (4-pack),2,3.84,2019-12-26 09:31:00,300 Cedar St, Portland,OR,97035 +314330,Bose SoundSport Headphones,1,99.99,2019-12-20 20:58:00,232 2nd St, San Francisco,CA,94016 +314331,USB-C Charging Cable,1,11.95,2019-12-25 22:51:00,778 Hickory St, Los Angeles,CA,90001 +314332,Google Phone,1,600.0,2019-12-30 21:49:00,50 Sunset St, Seattle,WA,98101 +314333,Wired Headphones,1,11.99,2019-12-09 11:43:00,602 12th St, Dallas,TX,75001 +314334,USB-C Charging Cable,1,11.95,2019-12-12 11:12:00,432 Lake St, San Francisco,CA,94016 +314335,AA Batteries (4-pack),1,3.84,2019-12-19 15:19:00,661 Park St, San Francisco,CA,94016 +314336,27in FHD Monitor,1,149.99,2019-12-06 08:23:00,719 Pine St, San Francisco,CA,94016 +314337,iPhone,1,700.0,2019-12-04 20:13:00,622 Spruce St, Austin,TX,73301 +314338,Lightning Charging Cable,2,14.95,2019-12-29 12:39:00,992 Jackson St, San Francisco,CA,94016 +314339,27in FHD Monitor,1,149.99,2019-12-06 07:31:00,692 West St, San Francisco,CA,94016 +314340,Bose SoundSport Headphones,1,99.99,2019-12-10 13:41:00,532 13th St, San Francisco,CA,94016 +314341,iPhone,1,700.0,2019-12-09 16:35:00,167 Hickory St, Seattle,WA,98101 +314342,Apple Airpods Headphones,1,150.0,2019-12-31 18:02:00,170 Dogwood St, Portland,OR,97035 +314343,USB-C Charging Cable,1,11.95,2019-12-24 22:10:00,796 River St, Portland,ME,04101 +314344,AAA Batteries (4-pack),1,2.99,2019-12-30 14:29:00,210 Meadow St, Boston,MA,02215 +314345,Vareebadd Phone,1,400.0,2019-12-15 15:38:00,864 Lakeview St, New York City,NY,10001 +314345,Bose SoundSport Headphones,1,99.99,2019-12-15 15:38:00,864 Lakeview St, New York City,NY,10001 +314346,Bose SoundSport Headphones,1,99.99,2019-12-28 17:43:00,180 River St, Atlanta,GA,30301 +314347,iPhone,1,700.0,2019-12-09 19:22:00,80 6th St, San Francisco,CA,94016 +314347,Apple Airpods Headphones,1,150.0,2019-12-09 19:22:00,80 6th St, San Francisco,CA,94016 +314348,AAA Batteries (4-pack),3,2.99,2019-12-28 12:34:00,429 Highland St, Los Angeles,CA,90001 +314349,USB-C Charging Cable,1,11.95,2019-12-31 13:11:00,959 Walnut St, Los Angeles,CA,90001 +314350,USB-C Charging Cable,1,11.95,2019-12-21 16:01:00,974 12th St, Los Angeles,CA,90001 +314351,AAA Batteries (4-pack),1,2.99,2019-12-20 23:14:00,248 2nd St, Dallas,TX,75001 +314352,AAA Batteries (4-pack),1,2.99,2019-12-19 08:09:00,400 Elm St, Seattle,WA,98101 +314353,USB-C Charging Cable,1,11.95,2019-12-06 15:33:00,106 River St, Los Angeles,CA,90001 +314354,AA Batteries (4-pack),1,3.84,2019-12-21 17:26:00,355 Ridge St, Boston,MA,02215 +314355,AA Batteries (4-pack),1,3.84,2019-12-12 18:59:00,429 10th St, Los Angeles,CA,90001 +314356,USB-C Charging Cable,2,11.95,2019-12-09 19:10:00,741 14th St, New York City,NY,10001 +314357,AAA Batteries (4-pack),1,2.99,2019-12-31 20:49:00,261 Cherry St, Seattle,WA,98101 +314358,34in Ultrawide Monitor,1,379.99,2019-12-11 21:50:00,963 10th St, San Francisco,CA,94016 +314359,Wired Headphones,2,11.99,2019-12-05 14:18:00,991 4th St, Los Angeles,CA,90001 +314360,AAA Batteries (4-pack),2,2.99,2019-12-25 07:42:00,845 Hickory St, Austin,TX,73301 +314361,Vareebadd Phone,1,400.0,2019-12-12 00:16:00,277 Walnut St, Dallas,TX,75001 +314361,USB-C Charging Cable,1,11.95,2019-12-12 00:16:00,277 Walnut St, Dallas,TX,75001 +314362,27in FHD Monitor,1,149.99,2019-12-24 18:40:00,156 Hickory St, San Francisco,CA,94016 +314363,Bose SoundSport Headphones,1,99.99,2019-12-10 07:31:00,143 Cherry St, Dallas,TX,75001 +314364,20in Monitor,1,109.99,2019-12-21 20:39:00,298 South St, Los Angeles,CA,90001 +314365,AAA Batteries (4-pack),2,2.99,2019-12-03 18:33:00,859 Lake St, San Francisco,CA,94016 +314366,iPhone,1,700.0,2019-12-03 21:57:00,312 9th St, Seattle,WA,98101 +314366,Lightning Charging Cable,2,14.95,2019-12-03 21:57:00,312 9th St, Seattle,WA,98101 +314367,AA Batteries (4-pack),1,3.84,2019-12-05 23:30:00,537 Lakeview St, Dallas,TX,75001 +314368,LG Washing Machine,1,600.0,2019-12-07 11:32:00,356 Wilson St, Atlanta,GA,30301 +314369,USB-C Charging Cable,1,11.95,2019-12-27 21:18:00,286 Spruce St, Atlanta,GA,30301 +314370,USB-C Charging Cable,1,11.95,2019-12-14 13:26:00,787 Meadow St, San Francisco,CA,94016 +314371,Lightning Charging Cable,1,14.95,2019-12-20 09:14:00,633 Church St, San Francisco,CA,94016 +314372,AA Batteries (4-pack),1,3.84,2019-12-21 18:21:00,382 13th St, New York City,NY,10001 +314373,Bose SoundSport Headphones,1,99.99,2019-12-07 14:41:00,870 Lake St, San Francisco,CA,94016 +314374,Wired Headphones,2,11.99,2019-12-15 08:34:00,892 Maple St, Los Angeles,CA,90001 +314375,Wired Headphones,1,11.99,2019-12-10 13:12:00,61 8th St, Atlanta,GA,30301 +314376,Wired Headphones,1,11.99,2019-12-09 21:29:00,332 Willow St, Boston,MA,02215 +314377,Lightning Charging Cable,1,14.95,2019-12-02 14:32:00,142 Jackson St, Atlanta,GA,30301 +314378,AAA Batteries (4-pack),1,2.99,2019-12-09 20:33:00,396 Willow St, Portland,OR,97035 +314379,AAA Batteries (4-pack),1,2.99,2019-12-05 21:43:00,840 Hill St, Los Angeles,CA,90001 +314380,AA Batteries (4-pack),3,3.84,2019-12-07 23:19:00,723 Johnson St, San Francisco,CA,94016 +314381,Wired Headphones,1,11.99,2019-12-09 21:43:00,919 Ridge St, Los Angeles,CA,90001 +314382,27in FHD Monitor,1,149.99,2019-12-10 13:57:00,271 Jefferson St, San Francisco,CA,94016 +314383,USB-C Charging Cable,2,11.95,2019-12-05 10:52:00,213 Sunset St, San Francisco,CA,94016 +314384,34in Ultrawide Monitor,1,379.99,2019-12-21 15:22:00,171 8th St, Los Angeles,CA,90001 +314385,USB-C Charging Cable,1,11.95,2019-12-26 11:32:00,586 Elm St, Atlanta,GA,30301 +314386,iPhone,1,700.0,2019-12-08 19:19:00,970 Sunset St, New York City,NY,10001 +314387,Macbook Pro Laptop,1,1700.0,2019-12-30 19:07:00,519 10th St, Boston,MA,02215 +314388,AA Batteries (4-pack),1,3.84,2019-12-26 09:23:00,983 Pine St, Seattle,WA,98101 +314389,Apple Airpods Headphones,1,150.0,2019-12-13 10:06:00,946 Washington St, Atlanta,GA,30301 +314390,Bose SoundSport Headphones,1,99.99,2019-12-28 12:14:00,268 14th St, Portland,OR,97035 +314391,34in Ultrawide Monitor,1,379.99,2019-12-30 23:08:00,70 9th St, Dallas,TX,75001 +314392,AAA Batteries (4-pack),1,2.99,2019-12-11 14:54:00,982 Church St, San Francisco,CA,94016 +314392,Wired Headphones,1,11.99,2019-12-11 14:54:00,982 Church St, San Francisco,CA,94016 +314393,Wired Headphones,1,11.99,2019-12-01 12:16:00,747 Washington St, San Francisco,CA,94016 +314394,AA Batteries (4-pack),1,3.84,2019-12-10 20:07:00,140 Main St, Los Angeles,CA,90001 +314395,27in 4K Gaming Monitor,1,389.99,2019-12-23 18:48:00,733 Johnson St, San Francisco,CA,94016 +314396,Lightning Charging Cable,1,14.95,2019-12-01 11:22:00,546 Willow St, San Francisco,CA,94016 +314397,Macbook Pro Laptop,1,1700.0,2019-12-21 20:32:00,521 River St, San Francisco,CA,94016 +314398,USB-C Charging Cable,1,11.95,2019-12-18 10:25:00,954 Pine St, Portland,OR,97035 +314399,AAA Batteries (4-pack),1,2.99,2019-12-15 22:41:00,213 Washington St, San Francisco,CA,94016 +314400,AAA Batteries (4-pack),1,2.99,2019-12-11 19:02:00,419 Hill St, Atlanta,GA,30301 +314401,Apple Airpods Headphones,1,150.0,2019-12-03 19:05:00,560 11th St, Los Angeles,CA,90001 +314402,USB-C Charging Cable,1,11.95,2019-12-03 12:37:00,129 Hickory St, San Francisco,CA,94016 +314403,34in Ultrawide Monitor,1,379.99,2019-12-25 18:34:00,760 Willow St, San Francisco,CA,94016 +314404,Bose SoundSport Headphones,1,99.99,2019-12-07 12:19:00,487 Meadow St, Seattle,WA,98101 +314405,ThinkPad Laptop,1,999.99,2019-12-16 15:44:00,363 Walnut St, Boston,MA,02215 +314406,AAA Batteries (4-pack),2,2.99,2019-12-25 20:57:00,350 Sunset St, San Francisco,CA,94016 +314407,27in FHD Monitor,1,149.99,2019-12-17 20:09:00,259 South St, Los Angeles,CA,90001 +314407,ThinkPad Laptop,1,999.99,2019-12-17 20:09:00,259 South St, Los Angeles,CA,90001 +314408,Lightning Charging Cable,1,14.95,2019-12-20 10:25:00,982 Adams St, San Francisco,CA,94016 +314409,20in Monitor,1,109.99,2019-12-29 01:48:00,598 Adams St, San Francisco,CA,94016 +314410,USB-C Charging Cable,1,11.95,2019-12-05 10:08:00,871 Jefferson St, New York City,NY,10001 +314411,USB-C Charging Cable,1,11.95,2019-12-12 12:19:00,246 Highland St, Atlanta,GA,30301 +314412,USB-C Charging Cable,1,11.95,2019-12-18 11:54:00,463 9th St, Atlanta,GA,30301 +314413,AA Batteries (4-pack),1,3.84,2019-12-06 11:43:00,431 Forest St, San Francisco,CA,94016 +314414,Google Phone,1,600.0,2019-12-10 18:30:00,757 Washington St, Los Angeles,CA,90001 +314414,USB-C Charging Cable,1,11.95,2019-12-10 18:30:00,757 Washington St, Los Angeles,CA,90001 +314415,Macbook Pro Laptop,1,1700.0,2019-12-11 23:10:00,430 Lakeview St, Dallas,TX,75001 +314416,Wired Headphones,1,11.99,2019-12-09 14:54:00,670 Lakeview St, Dallas,TX,75001 +314417,USB-C Charging Cable,1,11.95,2019-12-19 07:59:00,256 Forest St, Atlanta,GA,30301 +314418,Macbook Pro Laptop,1,1700.0,2019-12-17 17:00:00,198 Lincoln St, San Francisco,CA,94016 +314419,AA Batteries (4-pack),1,3.84,2019-12-12 18:54:00,841 4th St, Atlanta,GA,30301 +314420,Vareebadd Phone,1,400.0,2019-12-23 22:03:00,77 Hickory St, Portland,OR,97035 +314421,Lightning Charging Cable,1,14.95,2019-12-23 13:02:00,84 11th St, Boston,MA,02215 +314422,Wired Headphones,1,11.99,2019-12-13 13:14:00,556 Hickory St, Los Angeles,CA,90001 +314423,Bose SoundSport Headphones,1,99.99,2019-12-19 12:02:00,325 Jefferson St, New York City,NY,10001 +314424,Lightning Charging Cable,1,14.95,2019-12-23 16:59:00,190 Center St, Portland,OR,97035 +314425,Wired Headphones,1,11.99,2019-12-31 12:07:00,502 River St, New York City,NY,10001 +314426,Apple Airpods Headphones,1,150.0,2019-12-03 12:32:00,490 13th St, New York City,NY,10001 +314427,AA Batteries (4-pack),1,3.84,2019-12-17 17:01:00,998 5th St, Portland,OR,97035 +314428,AA Batteries (4-pack),1,3.84,2019-12-10 12:53:00,443 13th St, Portland,OR,97035 +314429,iPhone,1,700.0,2019-12-29 14:39:00,782 Forest St, San Francisco,CA,94016 +314430,27in FHD Monitor,1,149.99,2019-12-30 11:32:00,887 Pine St, San Francisco,CA,94016 +314431,Lightning Charging Cable,1,14.95,2019-12-29 19:05:00,933 Elm St, San Francisco,CA,94016 +314432,Lightning Charging Cable,1,14.95,2019-12-09 13:18:00,590 Willow St, Atlanta,GA,30301 +314433,Macbook Pro Laptop,1,1700.0,2019-12-27 14:10:00,690 Hickory St, Boston,MA,02215 +314434,Macbook Pro Laptop,1,1700.0,2019-12-02 14:20:00,122 Adams St, Portland,OR,97035 +314435,AAA Batteries (4-pack),1,2.99,2019-12-10 21:13:00,624 1st St, New York City,NY,10001 +314436,iPhone,1,700.0,2019-12-04 13:59:00,790 10th St, Seattle,WA,98101 +314436,Lightning Charging Cable,1,14.95,2019-12-04 13:59:00,790 10th St, Seattle,WA,98101 +314437,AAA Batteries (4-pack),1,2.99,2019-12-13 21:26:00,842 Cedar St, San Francisco,CA,94016 +314438,Bose SoundSport Headphones,1,99.99,2019-12-22 21:24:00,134 Walnut St, Portland,OR,97035 +314439,Bose SoundSport Headphones,1,99.99,2019-12-07 08:10:00,184 Spruce St, San Francisco,CA,94016 +314440,AA Batteries (4-pack),1,3.84,2019-12-07 18:27:00,216 Forest St, San Francisco,CA,94016 +314441,Bose SoundSport Headphones,1,99.99,2019-12-15 13:05:00,798 Johnson St, Boston,MA,02215 +314442,Apple Airpods Headphones,1,150.0,2019-12-30 21:04:00,131 North St, San Francisco,CA,94016 +314443,USB-C Charging Cable,1,11.95,2019-12-15 13:31:00,116 Park St, Boston,MA,02215 +314444,34in Ultrawide Monitor,1,379.99,2019-12-26 17:22:00,67 Washington St, San Francisco,CA,94016 +314445,USB-C Charging Cable,1,11.95,2019-12-15 10:45:00,88 Washington St, Dallas,TX,75001 +314446,Flatscreen TV,1,300.0,2019-12-27 13:25:00,889 Main St, Portland,OR,97035 +314447,AAA Batteries (4-pack),1,2.99,2019-12-14 15:55:00,508 1st St, Los Angeles,CA,90001 +314448,AAA Batteries (4-pack),1,2.99,2019-12-13 11:05:00,411 Meadow St, Atlanta,GA,30301 +314449,20in Monitor,1,109.99,2019-12-13 11:08:00,490 Madison St, Portland,OR,97035 +314450,Macbook Pro Laptop,1,1700.0,2019-12-13 11:50:00,664 14th St, New York City,NY,10001 +314451,ThinkPad Laptop,1,999.99,2019-12-21 09:54:00,86 South St, San Francisco,CA,94016 +314452,Google Phone,1,600.0,2019-12-08 01:27:00,678 West St, San Francisco,CA,94016 +314453,Wired Headphones,2,11.99,2019-12-16 11:29:00,319 Adams St, Boston,MA,02215 +314454,USB-C Charging Cable,1,11.95,2019-12-29 11:27:00,565 Pine St, San Francisco,CA,94016 +314455,27in FHD Monitor,1,149.99,2019-12-13 11:14:00,190 Elm St, New York City,NY,10001 +314456,27in FHD Monitor,1,149.99,2019-12-02 12:48:00,382 10th St, Los Angeles,CA,90001 +314457,iPhone,1,700.0,2019-12-30 15:37:00,963 Walnut St, Boston,MA,02215 +314458,34in Ultrawide Monitor,1,379.99,2019-12-09 16:32:00,207 West St, Portland,OR,97035 +314459,USB-C Charging Cable,1,11.95,2019-12-22 08:39:00,364 Jefferson St, Atlanta,GA,30301 +314460,Lightning Charging Cable,1,14.95,2019-12-13 16:31:00,691 10th St, Boston,MA,02215 +314461,AAA Batteries (4-pack),3,2.99,2019-12-21 14:44:00,927 Forest St, Portland,OR,97035 +314462,Lightning Charging Cable,1,14.95,2019-12-23 11:57:00,162 Elm St, Los Angeles,CA,90001 +314462,Wired Headphones,1,11.99,2019-12-23 11:57:00,162 Elm St, Los Angeles,CA,90001 +314463,Wired Headphones,1,11.99,2019-12-09 00:26:00,116 Willow St, San Francisco,CA,94016 +314464,AAA Batteries (4-pack),1,2.99,2019-12-11 19:47:00,656 2nd St, New York City,NY,10001 +314465,Bose SoundSport Headphones,1,99.99,2019-12-08 12:48:00,44 Cherry St, Los Angeles,CA,90001 +314466,Flatscreen TV,1,300.0,2019-12-29 20:00:00,751 Sunset St, Boston,MA,02215 +314467,Google Phone,1,600.0,2019-12-20 19:11:00,552 Highland St, New York City,NY,10001 +314468,iPhone,1,700.0,2019-12-12 09:46:00,294 2nd St, Portland,OR,97035 +314469,AA Batteries (4-pack),1,3.84,2019-12-16 22:15:00,861 Church St, Los Angeles,CA,90001 +314470,iPhone,1,700.0,2019-12-02 13:43:00,715 Madison St, Boston,MA,02215 +314471,AAA Batteries (4-pack),1,2.99,2019-12-15 18:14:00,337 Washington St, Boston,MA,02215 +314472,Bose SoundSport Headphones,1,99.99,2019-12-23 16:36:00,329 Johnson St, Atlanta,GA,30301 +314473,27in FHD Monitor,1,149.99,2019-12-13 12:14:00,215 8th St, Seattle,WA,98101 +314474,USB-C Charging Cable,1,11.95,2019-12-04 07:33:00,203 Cedar St, Atlanta,GA,30301 +314475,Lightning Charging Cable,1,14.95,2019-12-11 07:50:00,942 Cedar St, Boston,MA,02215 +314476,AAA Batteries (4-pack),1,2.99,2019-12-29 21:38:00,973 1st St, Portland,OR,97035 +314477,AAA Batteries (4-pack),2,2.99,2019-12-06 15:48:00,207 7th St, Boston,MA,02215 +314478,Bose SoundSport Headphones,1,99.99,2019-12-27 12:43:00,190 Meadow St, New York City,NY,10001 +314479,34in Ultrawide Monitor,1,379.99,2019-12-11 15:19:00,469 River St, New York City,NY,10001 +314480,Wired Headphones,1,11.99,2019-12-05 22:55:00,833 8th St, Boston,MA,02215 +314481,USB-C Charging Cable,1,11.95,2019-12-29 15:23:00,408 Pine St, New York City,NY,10001 +314482,Flatscreen TV,1,300.0,2019-12-30 18:07:00,378 2nd St, San Francisco,CA,94016 +314483,Lightning Charging Cable,1,14.95,2019-12-06 05:57:00,885 Walnut St, Seattle,WA,98101 +314484,Lightning Charging Cable,1,14.95,2019-12-29 12:15:00,544 11th St, Boston,MA,02215 +314485,USB-C Charging Cable,2,11.95,2019-12-12 06:31:00,543 Wilson St, Los Angeles,CA,90001 +314486,Flatscreen TV,1,300.0,2019-12-05 20:40:00,945 Jefferson St, San Francisco,CA,94016 +314487,34in Ultrawide Monitor,1,379.99,2019-12-31 13:45:00,833 Chestnut St, Los Angeles,CA,90001 +314488,AA Batteries (4-pack),1,3.84,2019-12-06 18:05:00,552 Dogwood St, Los Angeles,CA,90001 +314489,USB-C Charging Cable,1,11.95,2019-12-07 22:33:00,603 River St, New York City,NY,10001 +314490,Lightning Charging Cable,1,14.95,2019-12-13 15:49:00,381 12th St, San Francisco,CA,94016 +314491,27in FHD Monitor,1,149.99,2019-12-27 09:37:00,768 Wilson St, San Francisco,CA,94016 +314492,AA Batteries (4-pack),1,3.84,2019-12-07 10:23:00,223 6th St, San Francisco,CA,94016 +314493,Macbook Pro Laptop,1,1700.0,2019-12-04 14:54:00,80 Cherry St, New York City,NY,10001 +314494,Wired Headphones,2,11.99,2019-12-08 16:16:00,385 Park St, Boston,MA,02215 +314495,AAA Batteries (4-pack),1,2.99,2019-12-31 10:44:00,863 Main St, Los Angeles,CA,90001 +314496,USB-C Charging Cable,1,11.95,2019-12-27 16:45:00,956 Jackson St, San Francisco,CA,94016 +314497,AAA Batteries (4-pack),1,2.99,2019-12-15 07:14:00,266 Ridge St, Boston,MA,02215 +314498,27in 4K Gaming Monitor,1,389.99,2019-12-22 12:07:00,807 Madison St, Austin,TX,73301 +314499,AAA Batteries (4-pack),2,2.99,2019-12-18 01:48:00,160 9th St, San Francisco,CA,94016 +314500,AAA Batteries (4-pack),1,2.99,2019-12-21 15:38:00,297 12th St, New York City,NY,10001 +314501,27in 4K Gaming Monitor,1,389.99,2019-12-26 12:07:00,862 Ridge St, San Francisco,CA,94016 +314502,Vareebadd Phone,1,400.0,2019-12-23 12:28:00,270 Lake St, San Francisco,CA,94016 +314502,USB-C Charging Cable,1,11.95,2019-12-23 12:28:00,270 Lake St, San Francisco,CA,94016 +314503,Bose SoundSport Headphones,1,99.99,2019-12-31 21:23:00,705 14th St, Dallas,TX,75001 +314504,Vareebadd Phone,1,400.0,2019-12-26 14:42:00,736 Meadow St, Austin,TX,73301 +314505,AA Batteries (4-pack),2,3.84,2019-12-05 14:39:00,49 8th St, Dallas,TX,75001 +314506,Bose SoundSport Headphones,1,99.99,2019-12-12 20:02:00,95 Willow St, Los Angeles,CA,90001 +314507,AA Batteries (4-pack),1,3.84,2019-12-16 11:34:00,443 2nd St, Atlanta,GA,30301 +314508,USB-C Charging Cable,1,11.95,2019-12-06 16:59:00,64 Center St, Atlanta,GA,30301 +314509,Lightning Charging Cable,1,14.95,2019-12-19 22:14:00,373 5th St, San Francisco,CA,94016 +314510,Wired Headphones,2,11.99,2019-12-24 08:33:00,691 Adams St, Dallas,TX,75001 +314511,USB-C Charging Cable,1,11.95,2019-12-11 15:10:00,575 Dogwood St, Atlanta,GA,30301 +314512,AAA Batteries (4-pack),1,2.99,2019-12-09 13:25:00,255 Adams St, New York City,NY,10001 +314513,27in 4K Gaming Monitor,1,389.99,2019-12-04 22:04:00,140 8th St, Boston,MA,02215 +314514,AAA Batteries (4-pack),1,2.99,2019-12-21 17:46:00,670 Jefferson St, Seattle,WA,98101 +314515,34in Ultrawide Monitor,1,379.99,2019-12-31 10:02:00,421 Elm St, San Francisco,CA,94016 +314516,Lightning Charging Cable,1,14.95,2019-12-27 18:13:00,602 13th St, San Francisco,CA,94016 +314517,AAA Batteries (4-pack),6,2.99,2019-12-30 22:43:00,318 Maple St, San Francisco,CA,94016 +314518,Apple Airpods Headphones,1,150.0,2019-12-28 21:31:00,625 Adams St, New York City,NY,10001 +314519,Google Phone,1,600.0,2019-12-22 13:38:00,85 Church St, Los Angeles,CA,90001 +314520,USB-C Charging Cable,1,11.95,2019-12-18 21:04:00,996 Wilson St, Portland,ME,04101 +314521,ThinkPad Laptop,1,999.99,2019-12-19 09:30:00,257 Chestnut St, Boston,MA,02215 +314522,ThinkPad Laptop,1,999.99,2019-12-23 08:36:00,867 Main St, San Francisco,CA,94016 +314523,Vareebadd Phone,1,400.0,2019-12-25 13:44:00,813 13th St, Seattle,WA,98101 +314524,Lightning Charging Cable,1,14.95,2019-12-28 09:50:00,364 Johnson St, Dallas,TX,75001 +314525,Flatscreen TV,1,300.0,2019-12-18 20:44:00,76 13th St, Dallas,TX,75001 +314526,Wired Headphones,1,11.99,2019-12-18 21:02:00,538 14th St, San Francisco,CA,94016 +314527,Apple Airpods Headphones,1,150.0,2019-12-29 22:46:00,424 9th St, San Francisco,CA,94016 +314528,Apple Airpods Headphones,1,150.0,2019-12-30 01:25:00,775 River St, New York City,NY,10001 +314529,Flatscreen TV,1,300.0,2019-12-26 11:28:00,204 South St, San Francisco,CA,94016 +314530,Lightning Charging Cable,1,14.95,2019-12-10 19:08:00,843 5th St, Los Angeles,CA,90001 +314531,Bose SoundSport Headphones,1,99.99,2019-12-09 01:08:00,212 Center St, San Francisco,CA,94016 +314532,Lightning Charging Cable,1,14.95,2019-12-05 13:03:00,404 River St, New York City,NY,10001 +314533,27in 4K Gaming Monitor,1,389.99,2019-12-03 12:31:00,454 Highland St, San Francisco,CA,94016 +314534,27in 4K Gaming Monitor,1,389.99,2019-12-10 10:54:00,716 Madison St, New York City,NY,10001 +314535,USB-C Charging Cable,1,11.95,2019-12-25 19:11:00,782 Walnut St, Atlanta,GA,30301 +314536,27in FHD Monitor,1,149.99,2019-12-14 17:38:00,468 Madison St, San Francisco,CA,94016 +314537,ThinkPad Laptop,1,999.99,2019-12-13 19:06:00,448 South St, Boston,MA,02215 +314538,Apple Airpods Headphones,1,150.0,2019-12-29 06:16:00,548 7th St, Boston,MA,02215 +314539,Bose SoundSport Headphones,1,99.99,2019-12-07 18:40:00,407 4th St, New York City,NY,10001 +314540,Apple Airpods Headphones,1,150.0,2019-12-05 14:27:00,625 Forest St, Boston,MA,02215 +314541,iPhone,1,700.0,2019-12-31 17:56:00,901 Highland St, Los Angeles,CA,90001 +314542,Apple Airpods Headphones,1,150.0,2019-12-03 04:03:00,334 Ridge St, Portland,OR,97035 +314543,20in Monitor,1,109.99,2019-12-01 13:24:00,998 Hickory St, San Francisco,CA,94016 +314544,Apple Airpods Headphones,1,150.0,2019-12-27 19:10:00,777 14th St, Austin,TX,73301 +314545,AA Batteries (4-pack),1,3.84,2019-12-20 20:02:00,466 Washington St, Austin,TX,73301 +314546,Lightning Charging Cable,1,14.95,2019-12-30 22:41:00,166 10th St, New York City,NY,10001 +314547,USB-C Charging Cable,1,11.95,2019-12-07 11:42:00,460 13th St, New York City,NY,10001 +314548,Wired Headphones,1,11.99,2019-12-25 18:38:00,131 Church St, New York City,NY,10001 +314549,AA Batteries (4-pack),1,3.84,2019-12-01 16:09:00,229 Lake St, Boston,MA,02215 +314550,Vareebadd Phone,1,400.0,2019-12-14 21:10:00,40 Highland St, Boston,MA,02215 +314551,Lightning Charging Cable,1,14.95,2019-12-25 18:05:00,19 Ridge St, Atlanta,GA,30301 +314552,AAA Batteries (4-pack),1,2.99,2020-01-01 01:47:00,541 4th St, San Francisco,CA,94016 +314553,AA Batteries (4-pack),1,3.84,2019-12-28 23:09:00,570 5th St, New York City,NY,10001 +314554,iPhone,1,700.0,2019-12-19 22:16:00,937 2nd St, Austin,TX,73301 +314555,USB-C Charging Cable,1,11.95,2019-12-21 15:46:00,581 Church St, New York City,NY,10001 +314556,Macbook Pro Laptop,1,1700.0,2019-12-02 08:16:00,709 1st St, Portland,ME,04101 +314557,USB-C Charging Cable,1,11.95,2019-12-26 16:19:00,648 Meadow St, San Francisco,CA,94016 +314558,AAA Batteries (4-pack),1,2.99,2019-12-02 19:03:00,734 Wilson St, Portland,OR,97035 +314559,AA Batteries (4-pack),1,3.84,2019-12-17 14:12:00,14 Elm St, Seattle,WA,98101 +314560,27in FHD Monitor,1,149.99,2019-12-09 20:41:00,132 Pine St, New York City,NY,10001 +314561,27in FHD Monitor,1,149.99,2019-12-24 09:19:00,749 Sunset St, San Francisco,CA,94016 +314562,AA Batteries (4-pack),1,3.84,2019-12-20 18:22:00,761 Church St, Portland,ME,04101 +314563,Lightning Charging Cable,1,14.95,2019-12-11 16:06:00,762 Pine St, New York City,NY,10001 +314564,Lightning Charging Cable,1,14.95,2019-12-03 19:07:00,241 Hill St, New York City,NY,10001 +314565,34in Ultrawide Monitor,1,379.99,2019-12-18 23:13:00,874 Spruce St, Seattle,WA,98101 +314566,Google Phone,1,600.0,2019-12-30 22:15:00,465 Lakeview St, San Francisco,CA,94016 +314567,Wired Headphones,1,11.99,2019-12-07 18:55:00,641 1st St, Seattle,WA,98101 +314568,iPhone,1,700.0,2019-12-05 12:36:00,803 North St, San Francisco,CA,94016 +314569,Bose SoundSport Headphones,1,99.99,2019-12-27 09:06:00,450 Forest St, Los Angeles,CA,90001 +314570,Lightning Charging Cable,1,14.95,2019-12-23 15:15:00,861 Chestnut St, Boston,MA,02215 +314571,iPhone,1,700.0,2019-12-03 09:47:00,893 Dogwood St, Atlanta,GA,30301 +314572,iPhone,1,700.0,2019-12-17 09:32:00,166 7th St, San Francisco,CA,94016 +314573,AAA Batteries (4-pack),1,2.99,2019-12-31 17:42:00,712 Church St, Los Angeles,CA,90001 +314574,Flatscreen TV,1,300.0,2019-12-13 18:50:00,904 12th St, Dallas,TX,75001 +314575,Wired Headphones,1,11.99,2019-12-12 21:02:00,961 2nd St, New York City,NY,10001 +314575,Apple Airpods Headphones,1,150.0,2019-12-12 21:02:00,961 2nd St, New York City,NY,10001 +314576,Wired Headphones,1,11.99,2019-12-27 17:04:00,441 Church St, San Francisco,CA,94016 +314577,27in 4K Gaming Monitor,1,389.99,2019-12-04 14:24:00,631 Center St, Boston,MA,02215 +314578,Lightning Charging Cable,1,14.95,2019-12-02 19:23:00,983 River St, Portland,OR,97035 +314579,20in Monitor,1,109.99,2019-12-13 11:13:00,183 8th St, San Francisco,CA,94016 +314580,Bose SoundSport Headphones,1,99.99,2019-12-22 15:13:00,981 Johnson St, San Francisco,CA,94016 +314581,USB-C Charging Cable,1,11.95,2019-12-06 22:25:00,515 Maple St, Atlanta,GA,30301 +314582,34in Ultrawide Monitor,1,379.99,2019-12-02 17:40:00,79 Chestnut St, Los Angeles,CA,90001 +314583,iPhone,1,700.0,2019-12-30 17:49:00,539 14th St, San Francisco,CA,94016 +314584,ThinkPad Laptop,1,999.99,2019-12-21 12:13:00,34 Hickory St, San Francisco,CA,94016 +314585,Lightning Charging Cable,1,14.95,2019-12-19 00:07:00,338 Washington St, New York City,NY,10001 +314586,Lightning Charging Cable,1,14.95,2019-12-28 18:06:00,985 Spruce St, New York City,NY,10001 +314587,34in Ultrawide Monitor,1,379.99,2019-12-01 04:06:00,746 North St, Dallas,TX,75001 +314588,Apple Airpods Headphones,1,150.0,2019-12-19 20:34:00,245 Sunset St, Los Angeles,CA,90001 +314589,Apple Airpods Headphones,1,150.0,2019-12-16 17:39:00,61 10th St, Atlanta,GA,30301 +314590,27in FHD Monitor,1,149.99,2019-12-25 00:27:00,866 Wilson St, New York City,NY,10001 +314591,AA Batteries (4-pack),1,3.84,2019-12-28 00:30:00,162 Lincoln St, Boston,MA,02215 +314592,20in Monitor,1,109.99,2019-12-27 22:01:00,636 12th St, Boston,MA,02215 +314593,20in Monitor,1,109.99,2019-12-29 23:07:00,224 6th St, San Francisco,CA,94016 +314594,Bose SoundSport Headphones,1,99.99,2019-12-15 19:31:00,919 Forest St, San Francisco,CA,94016 +314595,Macbook Pro Laptop,1,1700.0,2019-12-12 23:35:00,430 Center St, Austin,TX,73301 +314596,Google Phone,1,600.0,2019-12-10 08:28:00,336 Jackson St, Dallas,TX,75001 +314597,AAA Batteries (4-pack),3,2.99,2019-12-30 21:52:00,747 Elm St, Los Angeles,CA,90001 +314598,USB-C Charging Cable,1,11.95,2019-12-23 11:35:00,335 Lakeview St, San Francisco,CA,94016 +314599,Google Phone,1,600.0,2019-12-03 17:48:00,30 4th St, New York City,NY,10001 +314600,Bose SoundSport Headphones,1,99.99,2019-12-04 22:29:00,210 Sunset St, Boston,MA,02215 +314600,Lightning Charging Cable,1,14.95,2019-12-04 22:29:00,210 Sunset St, Boston,MA,02215 +314601,Wired Headphones,1,11.99,2019-12-04 22:39:00,602 Jackson St, Los Angeles,CA,90001 +314602,Wired Headphones,1,11.99,2019-12-18 03:02:00,638 1st St, Seattle,WA,98101 +314603,Lightning Charging Cable,1,14.95,2019-12-27 12:46:00,127 Maple St, Boston,MA,02215 +314604,USB-C Charging Cable,1,11.95,2019-12-28 21:02:00,101 10th St, San Francisco,CA,94016 +314605,Bose SoundSport Headphones,1,99.99,2019-12-22 16:23:00,553 4th St, New York City,NY,10001 +314606,Lightning Charging Cable,1,14.95,2019-12-13 22:31:00,503 Maple St, Atlanta,GA,30301 +314607,AAA Batteries (4-pack),1,2.99,2019-12-04 13:03:00,762 Maple St, San Francisco,CA,94016 +314608,Google Phone,1,600.0,2019-12-05 17:48:00,672 Main St, New York City,NY,10001 +314608,Wired Headphones,2,11.99,2019-12-05 17:48:00,672 Main St, New York City,NY,10001 +314609,Apple Airpods Headphones,1,150.0,2019-12-25 15:01:00,787 10th St, Boston,MA,02215 +314610,Wired Headphones,1,11.99,2019-12-01 15:09:00,152 West St, San Francisco,CA,94016 +314611,Google Phone,1,600.0,2019-12-01 16:52:00,252 Washington St, Seattle,WA,98101 +314611,USB-C Charging Cable,1,11.95,2019-12-01 16:52:00,252 Washington St, Seattle,WA,98101 +314612,Lightning Charging Cable,1,14.95,2019-12-29 18:50:00,62 5th St, New York City,NY,10001 +314613,USB-C Charging Cable,1,11.95,2019-12-13 08:13:00,331 Meadow St, New York City,NY,10001 +314614,AA Batteries (4-pack),1,3.84,2019-12-02 14:47:00,20 Lake St, San Francisco,CA,94016 +314615,AAA Batteries (4-pack),1,2.99,2019-12-26 21:43:00,620 2nd St, Austin,TX,73301 +314616,Wired Headphones,1,11.99,2019-12-30 15:07:00,894 Sunset St, Dallas,TX,75001 +314617,USB-C Charging Cable,1,11.95,2019-12-31 19:43:00,818 Park St, Dallas,TX,75001 +314618,ThinkPad Laptop,1,999.99,2019-12-04 09:37:00,161 Elm St, Portland,OR,97035 +314619,Google Phone,1,600.0,2019-12-13 14:25:00,695 Pine St, Dallas,TX,75001 +314620,Google Phone,1,600.0,2019-12-11 15:03:00,849 12th St, Dallas,TX,75001 +314621,USB-C Charging Cable,1,11.95,2019-12-01 20:26:00,425 Lakeview St, Seattle,WA,98101 +314622,Lightning Charging Cable,1,14.95,2019-12-09 13:45:00,531 Willow St, Seattle,WA,98101 +314623,Vareebadd Phone,1,400.0,2019-12-10 12:16:00,473 Elm St, Dallas,TX,75001 +314624,Bose SoundSport Headphones,1,99.99,2019-12-21 11:22:00,644 Jackson St, Seattle,WA,98101 +314625,Apple Airpods Headphones,1,150.0,2019-12-06 13:28:00,479 7th St, Atlanta,GA,30301 +314626,Apple Airpods Headphones,1,150.0,2019-12-23 13:25:00,557 Hickory St, Atlanta,GA,30301 +314627,iPhone,1,700.0,2019-12-16 23:50:00,852 Wilson St, San Francisco,CA,94016 +314628,20in Monitor,1,109.99,2019-12-12 14:26:00,825 North St, Portland,OR,97035 +314629,Lightning Charging Cable,1,14.95,2019-12-20 15:24:00,51 Lincoln St, San Francisco,CA,94016 +314630,Apple Airpods Headphones,2,150.0,2019-12-07 20:28:00,39 Washington St, San Francisco,CA,94016 +314631,27in FHD Monitor,1,149.99,2019-12-04 21:19:00,539 Elm St, San Francisco,CA,94016 +314632,AA Batteries (4-pack),1,3.84,2019-12-25 19:23:00,474 13th St, Austin,TX,73301 +314633,AA Batteries (4-pack),1,3.84,2019-12-24 13:09:00,16 Center St, Austin,TX,73301 +314634,AA Batteries (4-pack),1,3.84,2019-12-11 20:27:00,201 West St, San Francisco,CA,94016 +314635,AAA Batteries (4-pack),1,2.99,2019-12-02 13:30:00,260 5th St, Seattle,WA,98101 +314636,USB-C Charging Cable,2,11.95,2019-12-27 13:57:00,405 Park St, San Francisco,CA,94016 +314637,Flatscreen TV,1,300.0,2019-12-14 16:31:00,550 Johnson St, Boston,MA,02215 +314637,AA Batteries (4-pack),3,3.84,2019-12-14 16:31:00,550 Johnson St, Boston,MA,02215 +314638,Apple Airpods Headphones,1,150.0,2019-12-18 09:55:00,468 Ridge St, Boston,MA,02215 +314639,Lightning Charging Cable,1,14.95,2019-12-21 17:59:00,728 11th St, Boston,MA,02215 +314640,Apple Airpods Headphones,2,150.0,2019-12-02 19:21:00,337 Cedar St, Dallas,TX,75001 +314641,Google Phone,1,600.0,2019-12-09 16:48:00,71 Main St, Los Angeles,CA,90001 +314642,Bose SoundSport Headphones,1,99.99,2019-12-30 11:17:00,215 Cherry St, New York City,NY,10001 +314643,AAA Batteries (4-pack),1,2.99,2019-12-05 20:27:00,568 Lake St, Austin,TX,73301 +314644,USB-C Charging Cable,1,11.95,2019-12-29 19:30:00,403 Highland St, Atlanta,GA,30301 +314645,Lightning Charging Cable,1,14.95,2019-12-27 07:32:00,323 Church St, San Francisco,CA,94016 +314646,AA Batteries (4-pack),1,3.84,2019-12-06 23:22:00,683 11th St, Los Angeles,CA,90001 +314647,34in Ultrawide Monitor,1,379.99,2019-12-01 12:23:00,991 Sunset St, New York City,NY,10001 +314648,34in Ultrawide Monitor,1,379.99,2019-12-08 18:30:00,115 Maple St, Dallas,TX,75001 +314649,Wired Headphones,1,11.99,2019-12-01 21:51:00,743 Spruce St, San Francisco,CA,94016 +314650,Apple Airpods Headphones,1,150.0,2019-12-20 18:05:00,166 Main St, Dallas,TX,75001 +314651,34in Ultrawide Monitor,1,379.99,2019-12-15 17:21:00,514 Sunset St, San Francisco,CA,94016 +314652,AA Batteries (4-pack),1,3.84,2019-12-16 23:07:00,332 Washington St, Atlanta,GA,30301 +314653,AAA Batteries (4-pack),5,2.99,2019-12-30 19:52:00,294 Wilson St, San Francisco,CA,94016 +314654,Bose SoundSport Headphones,1,99.99,2019-12-27 23:51:00,730 Cedar St, New York City,NY,10001 +314655,Lightning Charging Cable,1,14.95,2019-12-27 08:59:00,264 Church St, Dallas,TX,75001 +314656,Bose SoundSport Headphones,1,99.99,2019-12-26 20:55:00,991 Park St, San Francisco,CA,94016 +314657,iPhone,1,700.0,2019-12-10 12:54:00,946 Meadow St, Los Angeles,CA,90001 +314658,Flatscreen TV,1,300.0,2019-12-31 17:55:00,134 Church St, Portland,OR,97035 +314659,AA Batteries (4-pack),1,3.84,2019-12-10 18:21:00,168 Hill St, Boston,MA,02215 +314660,ThinkPad Laptop,1,999.99,2019-12-17 07:16:00,126 Meadow St, San Francisco,CA,94016 +314661,iPhone,1,700.0,2019-12-14 18:39:00,832 8th St, Atlanta,GA,30301 +314662,27in 4K Gaming Monitor,1,389.99,2019-12-08 15:39:00,193 Maple St, Atlanta,GA,30301 +314663,AA Batteries (4-pack),2,3.84,2019-12-02 07:04:00,619 South St, Boston,MA,02215 +314664,Lightning Charging Cable,1,14.95,2019-12-12 18:03:00,81 14th St, Atlanta,GA,30301 +314665,USB-C Charging Cable,1,11.95,2019-12-06 20:30:00,590 Elm St, New York City,NY,10001 +314666,20in Monitor,1,109.99,2019-12-14 11:56:00,816 Cedar St, Los Angeles,CA,90001 +314667,Lightning Charging Cable,1,14.95,2019-12-15 00:30:00,585 14th St, Los Angeles,CA,90001 +314668,27in FHD Monitor,1,149.99,2019-12-19 13:32:00,989 11th St, Los Angeles,CA,90001 +314669,AAA Batteries (4-pack),3,2.99,2019-12-27 19:01:00,61 Washington St, Seattle,WA,98101 +314670,AAA Batteries (4-pack),1,2.99,2019-12-11 20:31:00,615 Washington St, San Francisco,CA,94016 +314671,AA Batteries (4-pack),1,3.84,2019-12-04 00:03:00,176 7th St, San Francisco,CA,94016 +314672,Lightning Charging Cable,1,14.95,2019-12-18 19:42:00,385 Lincoln St, Los Angeles,CA,90001 +314673,Wired Headphones,1,11.99,2019-12-31 21:45:00,888 Spruce St, Portland,ME,04101 +314674,Bose SoundSport Headphones,1,99.99,2019-12-26 12:11:00,816 West St, Seattle,WA,98101 +314675,AA Batteries (4-pack),1,3.84,2019-12-26 09:01:00,927 13th St, San Francisco,CA,94016 +314676,AAA Batteries (4-pack),1,2.99,2019-12-05 12:56:00,572 12th St, Austin,TX,73301 +314677,Macbook Pro Laptop,1,1700.0,2019-12-24 09:48:00,44 Forest St, San Francisco,CA,94016 +314678,AA Batteries (4-pack),1,3.84,2019-12-02 22:48:00,869 West St, Austin,TX,73301 +314679,27in FHD Monitor,1,149.99,2019-12-10 12:10:00,190 Park St, Boston,MA,02215 +314680,AAA Batteries (4-pack),1,2.99,2019-12-01 15:10:00,265 2nd St, Los Angeles,CA,90001 +314681,USB-C Charging Cable,1,11.95,2019-12-22 13:25:00,698 Wilson St, New York City,NY,10001 +314682,Google Phone,1,600.0,2019-12-17 20:55:00,267 13th St, San Francisco,CA,94016 +314682,Wired Headphones,2,11.99,2019-12-17 20:55:00,267 13th St, San Francisco,CA,94016 +314683,Wired Headphones,1,11.99,2019-12-29 09:15:00,113 Willow St, Atlanta,GA,30301 +314684,Apple Airpods Headphones,1,150.0,2019-12-18 15:40:00,207 Pine St, Seattle,WA,98101 +314685,AAA Batteries (4-pack),1,2.99,2019-12-19 19:50:00,148 Madison St, Seattle,WA,98101 +314686,Lightning Charging Cable,1,14.95,2019-12-20 16:13:00,668 Hickory St, Boston,MA,02215 +314687,Bose SoundSport Headphones,1,99.99,2019-12-12 22:02:00,290 Adams St, Los Angeles,CA,90001 +314688,AAA Batteries (4-pack),1,2.99,2019-12-02 22:05:00,312 Forest St, Los Angeles,CA,90001 +314689,USB-C Charging Cable,1,11.95,2019-12-06 11:55:00,354 Wilson St, Portland,OR,97035 +314690,USB-C Charging Cable,1,11.95,2019-12-30 16:33:00,545 Walnut St, Austin,TX,73301 +314691,Google Phone,1,600.0,2019-12-06 15:32:00,390 Cherry St, Seattle,WA,98101 +314692,34in Ultrawide Monitor,1,379.99,2019-12-23 14:46:00,950 5th St, San Francisco,CA,94016 +314693,ThinkPad Laptop,1,999.99,2019-12-31 10:07:00,700 Highland St, Portland,OR,97035 +314694,USB-C Charging Cable,1,11.95,2019-12-07 13:56:00,883 4th St, Los Angeles,CA,90001 +314695,27in 4K Gaming Monitor,1,389.99,2019-12-06 05:59:00,677 4th St, New York City,NY,10001 +314696,Wired Headphones,1,11.99,2019-12-23 07:53:00,853 North St, New York City,NY,10001 +314697,Lightning Charging Cable,1,14.95,2019-12-24 13:37:00,46 Lakeview St, San Francisco,CA,94016 +314698,Flatscreen TV,1,300.0,2019-12-11 20:12:00,256 Willow St, New York City,NY,10001 +314699,27in 4K Gaming Monitor,1,389.99,2019-12-22 12:40:00,384 Adams St, San Francisco,CA,94016 +314700,Bose SoundSport Headphones,1,99.99,2019-12-07 16:53:00,815 Madison St, San Francisco,CA,94016 +314701,Bose SoundSport Headphones,1,99.99,2019-12-10 14:26:00,979 Dogwood St, Portland,OR,97035 +314702,Lightning Charging Cable,1,14.95,2019-12-20 15:10:00,161 Center St, Los Angeles,CA,90001 +314703,AAA Batteries (4-pack),1,2.99,2019-12-05 18:58:00,43 South St, Portland,OR,97035 +314704,Lightning Charging Cable,1,14.95,2019-12-03 10:56:00,271 Maple St, Los Angeles,CA,90001 +314705,AAA Batteries (4-pack),1,2.99,2019-12-25 16:28:00,521 Main St, Boston,MA,02215 +314706,Apple Airpods Headphones,1,150.0,2019-12-25 14:24:00,990 Wilson St, Boston,MA,02215 +314707,34in Ultrawide Monitor,1,379.99,2019-12-25 09:01:00,573 Maple St, New York City,NY,10001 +314708,Apple Airpods Headphones,1,150.0,2019-12-06 18:25:00,159 8th St, Dallas,TX,75001 +314709,Apple Airpods Headphones,1,150.0,2019-12-17 18:28:00,214 2nd St, Portland,OR,97035 +314710,Bose SoundSport Headphones,1,99.99,2019-12-10 09:46:00,739 14th St, Los Angeles,CA,90001 +314710,AA Batteries (4-pack),2,3.84,2019-12-10 09:46:00,739 14th St, Los Angeles,CA,90001 +314711,Vareebadd Phone,1,400.0,2019-12-26 13:22:00,824 Lake St, San Francisco,CA,94016 +314712,Apple Airpods Headphones,1,150.0,2019-12-28 14:43:00,524 Wilson St, Seattle,WA,98101 +314713,Wired Headphones,1,11.99,2019-12-08 14:30:00,377 7th St, New York City,NY,10001 +314714,Bose SoundSport Headphones,1,99.99,2019-12-02 14:24:00,432 9th St, Los Angeles,CA,90001 +314715,Wired Headphones,1,11.99,2019-12-11 21:12:00,684 7th St, Atlanta,GA,30301 +314715,Google Phone,1,600.0,2019-12-11 21:12:00,684 7th St, Atlanta,GA,30301 +314716,AA Batteries (4-pack),1,3.84,2019-12-21 13:00:00,714 1st St, San Francisco,CA,94016 +314717,AA Batteries (4-pack),1,3.84,2019-12-10 05:30:00,78 7th St, San Francisco,CA,94016 +314718,USB-C Charging Cable,1,11.95,2019-12-02 16:10:00,781 Willow St, San Francisco,CA,94016 +314719,Apple Airpods Headphones,1,150.0,2019-12-10 12:33:00,875 Willow St, Portland,OR,97035 +314720,Lightning Charging Cable,1,14.95,2019-12-18 21:04:00,206 Maple St, Atlanta,GA,30301 +314721,USB-C Charging Cable,1,11.95,2019-12-08 21:10:00,941 River St, Atlanta,GA,30301 +314722,Lightning Charging Cable,1,14.95,2019-12-31 16:58:00,800 Main St, New York City,NY,10001 +314723,AAA Batteries (4-pack),2,2.99,2019-12-09 16:02:00,36 Spruce St, Austin,TX,73301 +314724,Flatscreen TV,2,300.0,2019-12-25 09:50:00,482 Dogwood St, San Francisco,CA,94016 +314725,USB-C Charging Cable,1,11.95,2019-12-26 11:09:00,407 Lincoln St, Los Angeles,CA,90001 +314726,iPhone,1,700.0,2019-12-23 21:08:00,174 Madison St, Austin,TX,73301 +314727,Apple Airpods Headphones,1,150.0,2019-12-18 21:54:00,683 Walnut St, New York City,NY,10001 +314728,USB-C Charging Cable,1,11.95,2019-12-01 12:11:00,269 Madison St, Seattle,WA,98101 +314729,Wired Headphones,1,11.99,2019-12-31 18:36:00,581 Elm St, Los Angeles,CA,90001 +314730,Vareebadd Phone,1,400.0,2019-12-30 19:09:00,476 Washington St, Dallas,TX,75001 +314731,Bose SoundSport Headphones,1,99.99,2019-12-10 20:45:00,698 Adams St, Dallas,TX,75001 +314732,USB-C Charging Cable,1,11.95,2019-12-17 01:16:00,743 11th St, Dallas,TX,75001 +314733,AAA Batteries (4-pack),1,2.99,2019-12-09 23:43:00,344 Meadow St, New York City,NY,10001 +314734,AAA Batteries (4-pack),6,2.99,2019-12-30 13:50:00,597 Maple St, Los Angeles,CA,90001 +314735,Bose SoundSport Headphones,1,99.99,2019-12-14 11:13:00,576 5th St, San Francisco,CA,94016 +314736,Google Phone,1,600.0,2019-12-03 17:27:00,615 9th St, New York City,NY,10001 +314737,Wired Headphones,1,11.99,2019-12-19 20:29:00,148 Forest St, San Francisco,CA,94016 +314738,Lightning Charging Cable,1,14.95,2019-12-09 21:19:00,450 Maple St, San Francisco,CA,94016 +314739,Flatscreen TV,1,300.0,2019-12-19 17:32:00,524 Sunset St, San Francisco,CA,94016 +314740,USB-C Charging Cable,1,11.95,2019-12-21 15:27:00,448 Washington St, Los Angeles,CA,90001 +314741,34in Ultrawide Monitor,1,379.99,2019-12-10 21:15:00,961 2nd St, Portland,OR,97035 +314742,27in 4K Gaming Monitor,1,389.99,2019-12-05 07:27:00,420 Madison St, Dallas,TX,75001 +314743,Wired Headphones,1,11.99,2019-12-04 11:05:00,345 6th St, Dallas,TX,75001 +314744,27in FHD Monitor,1,149.99,2019-12-26 16:42:00,891 Meadow St, Atlanta,GA,30301 +314745,AA Batteries (4-pack),1,3.84,2019-12-22 17:36:00,990 Highland St, Boston,MA,02215 +314746,20in Monitor,1,109.99,2019-12-20 01:03:00,24 13th St, San Francisco,CA,94016 +314747,Lightning Charging Cable,1,14.95,2019-12-27 13:56:00,65 6th St, Los Angeles,CA,90001 +314747,AA Batteries (4-pack),1,3.84,2019-12-27 13:56:00,65 6th St, Los Angeles,CA,90001 +314748,AAA Batteries (4-pack),1,2.99,2019-12-18 15:07:00,374 8th St, San Francisco,CA,94016 +314749,AA Batteries (4-pack),2,3.84,2019-12-15 22:03:00,286 Church St, Los Angeles,CA,90001 +314750,Wired Headphones,2,11.99,2019-12-15 18:24:00,506 Cherry St, Los Angeles,CA,90001 +314751,Apple Airpods Headphones,1,150.0,2019-12-17 06:51:00,800 8th St, San Francisco,CA,94016 +314752,Apple Airpods Headphones,1,150.0,2019-12-18 12:27:00,535 5th St, Austin,TX,73301 +314753,Bose SoundSport Headphones,1,99.99,2019-12-09 10:41:00,946 Lincoln St, New York City,NY,10001 +314754,LG Dryer,1,600.0,2019-12-10 12:50:00,605 Lake St, Los Angeles,CA,90001 +314755,AAA Batteries (4-pack),2,2.99,2019-12-15 11:46:00,262 River St, San Francisco,CA,94016 +314756,USB-C Charging Cable,1,11.95,2019-12-08 01:12:00,793 9th St, San Francisco,CA,94016 +314757,Apple Airpods Headphones,1,150.0,2019-12-13 22:14:00,107 Lakeview St, Los Angeles,CA,90001 +314757,USB-C Charging Cable,1,11.95,2019-12-13 22:14:00,107 Lakeview St, Los Angeles,CA,90001 +314758,27in 4K Gaming Monitor,1,389.99,2019-12-02 14:31:00,512 13th St, Los Angeles,CA,90001 +314759,Bose SoundSport Headphones,1,99.99,2019-12-18 21:47:00,383 Jackson St, San Francisco,CA,94016 +314760,Wired Headphones,1,11.99,2019-12-26 12:25:00,379 Willow St, San Francisco,CA,94016 +314761,AAA Batteries (4-pack),1,2.99,2019-12-13 13:30:00,990 13th St, Austin,TX,73301 +314762,USB-C Charging Cable,1,11.95,2019-12-18 15:00:00,325 Jefferson St, San Francisco,CA,94016 +314763,USB-C Charging Cable,1,11.95,2019-12-13 07:13:00,353 1st St, Los Angeles,CA,90001 +314764,Lightning Charging Cable,1,14.95,2019-12-15 21:25:00,993 Washington St, San Francisco,CA,94016 +314765,Bose SoundSport Headphones,1,99.99,2019-12-10 21:11:00,695 Wilson St, Los Angeles,CA,90001 +314766,Lightning Charging Cable,1,14.95,2019-12-26 19:01:00,44 14th St, New York City,NY,10001 +314767,Wired Headphones,1,11.99,2019-12-22 13:08:00,414 West St, New York City,NY,10001 +314768,Flatscreen TV,1,300.0,2019-12-16 11:19:00,986 Dogwood St, San Francisco,CA,94016 +314769,iPhone,1,700.0,2019-12-08 22:02:00,939 8th St, Seattle,WA,98101 +314770,iPhone,1,700.0,2019-12-09 22:58:00,984 Chestnut St, Los Angeles,CA,90001 +314771,USB-C Charging Cable,2,11.95,2019-12-14 11:46:00,423 Forest St, Seattle,WA,98101 +314772,Bose SoundSport Headphones,1,99.99,2019-12-06 22:41:00,447 Adams St, Los Angeles,CA,90001 +314773,27in FHD Monitor,1,149.99,2019-12-09 12:10:00,207 Center St, Los Angeles,CA,90001 +314774,Apple Airpods Headphones,1,150.0,2019-12-30 22:52:00,251 Madison St, San Francisco,CA,94016 +314775,Vareebadd Phone,1,400.0,2019-12-10 17:10:00,770 4th St, Los Angeles,CA,90001 +314776,Macbook Pro Laptop,1,1700.0,2019-12-06 17:44:00,248 8th St, Seattle,WA,98101 +314777,Lightning Charging Cable,1,14.95,2019-12-12 21:39:00,30 Park St, Los Angeles,CA,90001 +314778,iPhone,1,700.0,2019-12-18 10:58:00,268 Chestnut St, Portland,OR,97035 +314778,Apple Airpods Headphones,1,150.0,2019-12-18 10:58:00,268 Chestnut St, Portland,OR,97035 +314779,Google Phone,1,600.0,2019-12-29 12:12:00,287 9th St, Portland,OR,97035 +314780,USB-C Charging Cable,2,11.95,2019-12-31 18:10:00,862 Sunset St, New York City,NY,10001 +314781,Macbook Pro Laptop,1,1700.0,2019-12-21 14:11:00,685 1st St, Boston,MA,02215 +314782,27in 4K Gaming Monitor,1,389.99,2019-12-19 11:04:00,919 Maple St, Seattle,WA,98101 +314783,USB-C Charging Cable,1,11.95,2019-12-25 22:21:00,5 12th St, Portland,ME,04101 +314784,27in FHD Monitor,1,149.99,2019-12-31 12:22:00,253 7th St, San Francisco,CA,94016 +314785,AA Batteries (4-pack),1,3.84,2019-12-31 14:37:00,213 10th St, Dallas,TX,75001 +314786,27in 4K Gaming Monitor,1,389.99,2019-12-17 09:37:00,198 6th St, Boston,MA,02215 +314787,AA Batteries (4-pack),1,3.84,2019-12-31 07:03:00,739 West St, Los Angeles,CA,90001 +314788,Macbook Pro Laptop,1,1700.0,2019-12-07 09:32:00,490 12th St, New York City,NY,10001 +314789,USB-C Charging Cable,1,11.95,2019-12-03 09:38:00,602 Chestnut St, Los Angeles,CA,90001 +314790,Apple Airpods Headphones,1,150.0,2019-12-02 15:39:00,896 1st St, San Francisco,CA,94016 +314791,Google Phone,1,600.0,2019-12-28 11:51:00,787 2nd St, San Francisco,CA,94016 +314792,AA Batteries (4-pack),1,3.84,2019-12-05 21:54:00,615 11th St, Portland,OR,97035 +314793,27in 4K Gaming Monitor,1,389.99,2019-12-08 12:11:00,424 Hickory St, Los Angeles,CA,90001 +314794,Lightning Charging Cable,1,14.95,2019-12-28 15:40:00,408 Wilson St, Boston,MA,02215 +314795,USB-C Charging Cable,1,11.95,2019-12-01 08:56:00,105 9th St, Atlanta,GA,30301 +314796,Bose SoundSport Headphones,1,99.99,2019-12-07 13:14:00,612 Center St, New York City,NY,10001 +314797,Apple Airpods Headphones,1,150.0,2019-12-01 17:28:00,608 Dogwood St, San Francisco,CA,94016 +314798,AAA Batteries (4-pack),1,2.99,2019-12-10 19:28:00,125 Church St, Boston,MA,02215 +314799,Lightning Charging Cable,1,14.95,2019-12-20 19:26:00,619 Washington St, San Francisco,CA,94016 +314800,USB-C Charging Cable,1,11.95,2019-12-15 17:40:00,200 Lake St, San Francisco,CA,94016 +314801,Apple Airpods Headphones,1,150.0,2019-12-23 14:49:00,792 Washington St, Atlanta,GA,30301 +314802,Wired Headphones,2,11.99,2019-12-15 07:29:00,526 5th St, Portland,OR,97035 +314803,AAA Batteries (4-pack),3,2.99,2019-12-28 19:00:00,253 14th St, Seattle,WA,98101 +314804,Wired Headphones,1,11.99,2019-12-12 10:58:00,29 Jefferson St, Austin,TX,73301 +314805,27in FHD Monitor,1,149.99,2019-12-22 12:53:00,526 7th St, Los Angeles,CA,90001 +314806,Bose SoundSport Headphones,1,99.99,2019-12-19 15:20:00,855 8th St, Portland,OR,97035 +314807,USB-C Charging Cable,1,11.95,2019-12-01 12:11:00,350 Johnson St, San Francisco,CA,94016 +314808,ThinkPad Laptop,1,999.99,2019-12-08 11:19:00,110 7th St, Dallas,TX,75001 +314809,Lightning Charging Cable,1,14.95,2019-12-03 16:46:00,381 Lake St, Dallas,TX,75001 +314809,AA Batteries (4-pack),1,3.84,2019-12-03 16:46:00,381 Lake St, Dallas,TX,75001 +314810,Lightning Charging Cable,1,14.95,2019-12-10 17:14:00,676 2nd St, Boston,MA,02215 +314811,34in Ultrawide Monitor,1,379.99,2019-12-04 07:30:00,591 7th St, Los Angeles,CA,90001 +314812,Wired Headphones,1,11.99,2019-12-11 14:50:00,825 Sunset St, Atlanta,GA,30301 +314813,Apple Airpods Headphones,1,150.0,2019-12-20 18:55:00,621 2nd St, Dallas,TX,75001 +314814,Macbook Pro Laptop,1,1700.0,2019-12-26 08:47:00,196 Elm St, New York City,NY,10001 +314815,USB-C Charging Cable,1,11.95,2019-12-20 13:02:00,141 Church St, Los Angeles,CA,90001 +314816,Wired Headphones,1,11.99,2019-12-14 12:43:00,902 Center St, New York City,NY,10001 +314817,AA Batteries (4-pack),1,3.84,2019-12-13 15:06:00,620 Washington St, New York City,NY,10001 +314818,Lightning Charging Cable,1,14.95,2019-12-03 00:44:00,909 12th St, Portland,OR,97035 +314819,Apple Airpods Headphones,1,150.0,2019-12-26 11:31:00,827 6th St, New York City,NY,10001 +314820,Lightning Charging Cable,1,14.95,2019-12-13 10:40:00,535 Lincoln St, New York City,NY,10001 +314821,Lightning Charging Cable,1,14.95,2019-12-11 14:47:00,891 Maple St, New York City,NY,10001 +314822,AAA Batteries (4-pack),1,2.99,2019-12-07 15:48:00,495 12th St, Austin,TX,73301 +314823,USB-C Charging Cable,1,11.95,2019-12-11 17:54:00,450 Spruce St, San Francisco,CA,94016 +314824,Google Phone,1,600.0,2019-12-28 16:01:00,525 Elm St, New York City,NY,10001 +314825,34in Ultrawide Monitor,1,379.99,2019-12-11 11:45:00,335 13th St, Dallas,TX,75001 +314826,Wired Headphones,1,11.99,2019-12-23 12:08:00,472 Adams St, San Francisco,CA,94016 +314827,Bose SoundSport Headphones,1,99.99,2019-12-22 14:10:00,389 13th St, New York City,NY,10001 +314828,Macbook Pro Laptop,1,1700.0,2019-12-15 23:11:00,498 Main St, Portland,OR,97035 +314829,Wired Headphones,1,11.99,2019-12-10 16:08:00,579 Chestnut St, Seattle,WA,98101 +314830,AAA Batteries (4-pack),1,2.99,2019-12-28 22:20:00,506 Hickory St, Los Angeles,CA,90001 +314831,Flatscreen TV,1,300.0,2019-12-23 12:36:00,782 Center St, Boston,MA,02215 +314832,AA Batteries (4-pack),1,3.84,2019-12-12 18:58:00,794 Jefferson St, Seattle,WA,98101 +314833,Google Phone,1,600.0,2019-12-16 20:06:00,865 Church St, Seattle,WA,98101 +314834,AAA Batteries (4-pack),1,2.99,2019-12-13 16:56:00,564 South St, San Francisco,CA,94016 +314835,USB-C Charging Cable,1,11.95,2019-12-29 14:17:00,802 Lake St, Atlanta,GA,30301 +314836,Wired Headphones,2,11.99,2019-12-17 09:03:00,347 Walnut St, Dallas,TX,75001 +314837,Macbook Pro Laptop,1,1700.0,2019-12-30 20:29:00,928 Center St, Los Angeles,CA,90001 +314838,Apple Airpods Headphones,1,150.0,2019-12-14 02:20:00,595 Washington St, Los Angeles,CA,90001 +314839,Lightning Charging Cable,1,14.95,2019-12-16 21:48:00,965 Walnut St, Dallas,TX,75001 +314840,Wired Headphones,1,11.99,2019-12-16 21:19:00,97 North St, San Francisco,CA,94016 +314841,Bose SoundSport Headphones,1,99.99,2019-12-02 11:15:00,42 9th St, Portland,OR,97035 +314842,Bose SoundSport Headphones,1,99.99,2019-12-18 18:49:00,459 1st St, Los Angeles,CA,90001 +314843,ThinkPad Laptop,1,999.99,2019-12-05 16:59:00,114 River St, New York City,NY,10001 +314844,Lightning Charging Cable,1,14.95,2019-12-21 10:05:00,239 Johnson St, New York City,NY,10001 +314845,iPhone,1,700.0,2019-12-10 16:05:00,155 Johnson St, Boston,MA,02215 +314846,AAA Batteries (4-pack),1,2.99,2019-12-17 20:56:00,548 Adams St, New York City,NY,10001 +314847,AA Batteries (4-pack),2,3.84,2019-12-10 18:46:00,191 2nd St, Seattle,WA,98101 +314848,ThinkPad Laptop,1,999.99,2019-12-25 14:33:00,679 Lincoln St, Austin,TX,73301 +314849,Lightning Charging Cable,1,14.95,2019-12-20 15:08:00,345 12th St, Austin,TX,73301 +314850,Apple Airpods Headphones,1,150.0,2019-12-28 14:07:00,910 5th St, Austin,TX,73301 +314851,AA Batteries (4-pack),1,3.84,2019-12-14 19:52:00,559 Wilson St, Portland,OR,97035 +314852,27in FHD Monitor,1,149.99,2019-12-03 19:03:00,943 Center St, Los Angeles,CA,90001 +314853,AA Batteries (4-pack),1,3.84,2019-12-22 10:44:00,489 Center St, Austin,TX,73301 +314854,Lightning Charging Cable,1,14.95,2019-12-12 22:26:00,163 Wilson St, New York City,NY,10001 +314855,USB-C Charging Cable,1,11.95,2019-12-26 14:31:00,488 Adams St, Seattle,WA,98101 +314856,Bose SoundSport Headphones,1,99.99,2019-12-11 08:25:00,996 Walnut St, Los Angeles,CA,90001 +314857,Wired Headphones,1,11.99,2019-12-10 20:40:00,53 Ridge St, San Francisco,CA,94016 +314858,Apple Airpods Headphones,1,150.0,2019-12-31 10:44:00,822 Elm St, New York City,NY,10001 +314859,AA Batteries (4-pack),4,3.84,2019-12-20 11:16:00,760 Park St, New York City,NY,10001 +314860,Lightning Charging Cable,1,14.95,2019-12-21 14:51:00,412 Pine St, Seattle,WA,98101 +314861,27in FHD Monitor,1,149.99,2019-12-11 23:08:00,767 Chestnut St, Austin,TX,73301 +314862,Lightning Charging Cable,1,14.95,2019-12-11 14:04:00,496 Washington St, Atlanta,GA,30301 +314863,Flatscreen TV,1,300.0,2019-12-12 14:43:00,255 Lakeview St, Austin,TX,73301 +314864,Bose SoundSport Headphones,1,99.99,2019-12-19 06:42:00,101 Dogwood St, Austin,TX,73301 +314865,27in FHD Monitor,1,149.99,2019-12-05 15:07:00,991 Sunset St, New York City,NY,10001 +314866,AAA Batteries (4-pack),1,2.99,2019-12-28 18:16:00,748 4th St, New York City,NY,10001 +314867,Bose SoundSport Headphones,1,99.99,2019-12-30 12:46:00,551 5th St, Los Angeles,CA,90001 +314868,Bose SoundSport Headphones,1,99.99,2019-12-14 08:28:00,925 14th St, New York City,NY,10001 +314869,Lightning Charging Cable,1,14.95,2019-12-17 20:00:00,3 Hill St, Austin,TX,73301 +314870,Bose SoundSport Headphones,1,99.99,2019-12-28 11:06:00,339 13th St, Atlanta,GA,30301 +314871,Macbook Pro Laptop,1,1700.0,2019-12-25 15:46:00,184 Madison St, San Francisco,CA,94016 +314872,USB-C Charging Cable,1,11.95,2019-12-30 08:02:00,876 Adams St, San Francisco,CA,94016 +314873,AAA Batteries (4-pack),3,2.99,2019-12-07 18:12:00,84 Washington St, San Francisco,CA,94016 +314874,AA Batteries (4-pack),1,3.84,2019-12-19 18:55:00,270 North St, Dallas,TX,75001 +314875,Lightning Charging Cable,1,14.95,2019-12-13 14:41:00,87 Washington St, Dallas,TX,75001 +314876,Wired Headphones,2,11.99,2019-12-13 10:10:00,426 8th St, San Francisco,CA,94016 +314877,20in Monitor,1,109.99,2019-12-04 08:29:00,983 Wilson St, San Francisco,CA,94016 +314878,Wired Headphones,1,11.99,2019-12-15 13:21:00,103 Lincoln St, Dallas,TX,75001 +314879,Apple Airpods Headphones,1,150.0,2019-12-29 11:51:00,359 Lake St, Atlanta,GA,30301 +314880,34in Ultrawide Monitor,1,379.99,2019-12-16 10:02:00,504 Lakeview St, New York City,NY,10001 +314881,34in Ultrawide Monitor,1,379.99,2019-12-19 05:58:00,398 8th St, Austin,TX,73301 +314882,Bose SoundSport Headphones,1,99.99,2019-12-30 00:17:00,729 5th St, New York City,NY,10001 +314883,Wired Headphones,1,11.99,2019-12-18 22:11:00,988 Lakeview St, San Francisco,CA,94016 +314884,USB-C Charging Cable,1,11.95,2019-12-18 07:19:00,550 5th St, Dallas,TX,75001 +314885,Google Phone,1,600.0,2019-12-19 10:11:00,783 13th St, San Francisco,CA,94016 +314885,USB-C Charging Cable,1,11.95,2019-12-19 10:11:00,783 13th St, San Francisco,CA,94016 +314886,AA Batteries (4-pack),2,3.84,2019-12-22 23:34:00,964 Maple St, Boston,MA,02215 +314887,Google Phone,1,600.0,2019-12-16 02:54:00,341 Jefferson St, Seattle,WA,98101 +314888,Apple Airpods Headphones,1,150.0,2019-12-26 22:50:00,570 Maple St, Atlanta,GA,30301 +314889,AA Batteries (4-pack),1,3.84,2019-12-16 15:29:00,699 Dogwood St, Atlanta,GA,30301 +314890,Lightning Charging Cable,1,14.95,2019-12-17 11:34:00,765 Meadow St, New York City,NY,10001 +314891,USB-C Charging Cable,2,11.95,2019-12-03 23:35:00,419 1st St, Dallas,TX,75001 +314892,27in 4K Gaming Monitor,1,389.99,2019-12-29 08:58:00,267 9th St, San Francisco,CA,94016 +314893,USB-C Charging Cable,1,11.95,2019-12-03 10:17:00,654 Hill St, Atlanta,GA,30301 +314894,USB-C Charging Cable,1,11.95,2019-12-08 21:15:00,880 River St, Los Angeles,CA,90001 +314895,Lightning Charging Cable,1,14.95,2019-12-21 18:41:00,68 Church St, Dallas,TX,75001 +314896,Lightning Charging Cable,1,14.95,2019-12-03 12:14:00,362 Elm St, Boston,MA,02215 +314897,34in Ultrawide Monitor,1,379.99,2019-12-01 09:31:00,750 Main St, Atlanta,GA,30301 +314898,ThinkPad Laptop,1,999.99,2019-12-07 20:06:00,948 Meadow St, New York City,NY,10001 +314899,Wired Headphones,1,11.99,2019-12-13 15:15:00,697 Spruce St, New York City,NY,10001 +314900,Apple Airpods Headphones,1,150.0,2019-12-20 00:17:00,859 Cherry St, San Francisco,CA,94016 +314901,Lightning Charging Cable,1,14.95,2019-12-10 08:01:00,993 8th St, Portland,OR,97035 +314902,27in 4K Gaming Monitor,1,389.99,2019-12-19 19:50:00,703 5th St, Boston,MA,02215 +314903,AA Batteries (4-pack),1,3.84,2019-12-26 21:56:00,808 Meadow St, Los Angeles,CA,90001 +314904,Macbook Pro Laptop,1,1700.0,2019-12-01 15:00:00,881 Lincoln St, New York City,NY,10001 +314905,Vareebadd Phone,1,400.0,2019-12-23 10:43:00,916 Sunset St, San Francisco,CA,94016 +314906,AAA Batteries (4-pack),2,2.99,2019-12-10 15:25:00,852 Lakeview St, New York City,NY,10001 +314907,Bose SoundSport Headphones,1,99.99,2019-12-05 22:06:00,249 5th St, San Francisco,CA,94016 +314907,34in Ultrawide Monitor,1,379.99,2019-12-05 22:06:00,249 5th St, San Francisco,CA,94016 +314908,USB-C Charging Cable,1,11.95,2019-12-16 05:40:00,272 Spruce St, Los Angeles,CA,90001 +314909,USB-C Charging Cable,1,11.95,2019-12-19 19:28:00,226 Jefferson St, New York City,NY,10001 +314910,Wired Headphones,1,11.99,2019-12-23 12:11:00,34 8th St, Dallas,TX,75001 +314911,USB-C Charging Cable,2,11.95,2019-12-12 17:27:00,354 River St, Atlanta,GA,30301 +314912,AAA Batteries (4-pack),1,2.99,2019-12-02 09:53:00,629 14th St, Dallas,TX,75001 +314913,20in Monitor,1,109.99,2019-12-15 20:30:00,380 Center St, Boston,MA,02215 +314914,USB-C Charging Cable,1,11.95,2019-12-31 20:41:00,700 14th St, San Francisco,CA,94016 +314915,Lightning Charging Cable,2,14.95,2019-12-30 13:34:00,598 Meadow St, Atlanta,GA,30301 +314916,Apple Airpods Headphones,1,150.0,2019-12-29 22:37:00,651 Johnson St, Boston,MA,02215 +314917,Google Phone,1,600.0,2019-12-06 13:01:00,882 Lake St, San Francisco,CA,94016 +314918,USB-C Charging Cable,1,11.95,2019-12-22 06:34:00,348 Main St, San Francisco,CA,94016 +314919,USB-C Charging Cable,2,11.95,2019-12-20 19:55:00,95 Willow St, New York City,NY,10001 +314920,USB-C Charging Cable,1,11.95,2019-12-25 15:14:00,434 Highland St, San Francisco,CA,94016 +314921,Lightning Charging Cable,1,14.95,2019-12-25 18:18:00,277 Madison St, San Francisco,CA,94016 +314922,USB-C Charging Cable,1,11.95,2019-12-29 08:53:00,890 4th St, Seattle,WA,98101 +314923,USB-C Charging Cable,1,11.95,2019-12-16 22:41:00,183 Cherry St, Los Angeles,CA,90001 +314924,Wired Headphones,1,11.99,2019-12-04 11:26:00,735 Walnut St, Dallas,TX,75001 +314925,AAA Batteries (4-pack),1,2.99,2019-12-19 00:31:00,188 West St, Boston,MA,02215 +314926,34in Ultrawide Monitor,1,379.99,2019-12-20 12:29:00,105 Highland St, San Francisco,CA,94016 +314927,Wired Headphones,1,11.99,2019-12-03 19:43:00,917 4th St, Portland,OR,97035 +314928,USB-C Charging Cable,1,11.95,2019-12-01 16:35:00,989 Hickory St, San Francisco,CA,94016 +314929,Bose SoundSport Headphones,1,99.99,2019-12-02 12:18:00,96 6th St, Boston,MA,02215 +314930,AA Batteries (4-pack),2,3.84,2019-12-07 00:04:00,526 Elm St, Dallas,TX,75001 +314931,AAA Batteries (4-pack),1,2.99,2019-12-08 16:03:00,158 Forest St, San Francisco,CA,94016 +314932,Apple Airpods Headphones,1,150.0,2019-12-25 06:41:00,501 Willow St, Boston,MA,02215 +314933,Apple Airpods Headphones,1,150.0,2019-12-19 15:57:00,488 Lincoln St, Atlanta,GA,30301 +314934,AA Batteries (4-pack),1,3.84,2019-12-17 20:42:00,832 Pine St, Austin,TX,73301 +314935,Wired Headphones,1,11.99,2019-12-31 13:28:00,922 Forest St, Los Angeles,CA,90001 +314936,Wired Headphones,1,11.99,2019-12-16 16:00:00,206 14th St, Boston,MA,02215 +314937,USB-C Charging Cable,1,11.95,2019-12-31 10:30:00,558 Meadow St, Los Angeles,CA,90001 +314938,USB-C Charging Cable,1,11.95,2019-12-17 22:59:00,185 Lake St, New York City,NY,10001 +314939,AAA Batteries (4-pack),1,2.99,2019-12-11 17:23:00,881 Jackson St, Boston,MA,02215 +314940,iPhone,1,700.0,2019-12-23 06:52:00,38 6th St, Los Angeles,CA,90001 +314940,Apple Airpods Headphones,1,150.0,2019-12-23 06:52:00,38 6th St, Los Angeles,CA,90001 +314941,LG Washing Machine,1,600.0,2019-12-19 16:49:00,596 10th St, Boston,MA,02215 +314942,20in Monitor,1,109.99,2019-12-13 08:11:00,699 Walnut St, San Francisco,CA,94016 +314943,Apple Airpods Headphones,1,150.0,2019-12-04 21:06:00,246 Forest St, Dallas,TX,75001 +314944,Bose SoundSport Headphones,1,99.99,2019-12-03 00:48:00,480 River St, Austin,TX,73301 +314945,iPhone,1,700.0,2019-12-22 07:52:00,852 Willow St, San Francisco,CA,94016 +314946,34in Ultrawide Monitor,1,379.99,2019-12-08 20:21:00,136 South St, Los Angeles,CA,90001 +314947,AAA Batteries (4-pack),2,2.99,2019-12-21 12:05:00,474 Elm St, Los Angeles,CA,90001 +314948,AA Batteries (4-pack),1,3.84,2019-12-17 18:34:00,937 Lincoln St, San Francisco,CA,94016 +314949,Apple Airpods Headphones,2,150.0,2019-12-11 22:41:00,516 4th St, San Francisco,CA,94016 +314950,Apple Airpods Headphones,1,150.0,2019-12-21 15:28:00,165 11th St, New York City,NY,10001 +314951,Wired Headphones,1,11.99,2019-12-03 19:30:00,574 Johnson St, Boston,MA,02215 +314952,Google Phone,1,600.0,2019-12-26 13:13:00,463 Sunset St, Boston,MA,02215 +314953,AAA Batteries (4-pack),1,2.99,2019-12-11 18:18:00,315 Center St, Seattle,WA,98101 +314954,AAA Batteries (4-pack),2,2.99,2019-12-05 20:19:00,316 Wilson St, San Francisco,CA,94016 +314955,AAA Batteries (4-pack),1,2.99,2019-12-15 21:16:00,21 Johnson St, New York City,NY,10001 +314956,Bose SoundSport Headphones,1,99.99,2019-12-30 10:39:00,951 Hickory St, New York City,NY,10001 +314957,Wired Headphones,1,11.99,2019-12-04 22:42:00,452 Center St, Atlanta,GA,30301 +314958,AA Batteries (4-pack),2,3.84,2019-12-10 23:14:00,383 Ridge St, San Francisco,CA,94016 +314959,USB-C Charging Cable,1,11.95,2019-12-02 09:36:00,164 Jackson St, San Francisco,CA,94016 +314960,Lightning Charging Cable,1,14.95,2019-12-29 09:02:00,228 9th St, Los Angeles,CA,90001 +314961,USB-C Charging Cable,1,11.95,2019-12-28 23:50:00,647 Jackson St, San Francisco,CA,94016 +314962,20in Monitor,1,109.99,2019-12-12 15:40:00,830 Ridge St, San Francisco,CA,94016 +314963,AA Batteries (4-pack),1,3.84,2019-12-22 17:02:00,241 12th St, San Francisco,CA,94016 +314964,AA Batteries (4-pack),1,3.84,2019-12-19 19:35:00,561 Dogwood St, Los Angeles,CA,90001 +314965,Lightning Charging Cable,1,14.95,2019-12-27 15:24:00,91 Washington St, Los Angeles,CA,90001 +314966,Google Phone,1,600.0,2019-12-14 15:37:00,321 Highland St, Los Angeles,CA,90001 +314967,27in 4K Gaming Monitor,1,389.99,2019-12-13 01:33:00,764 Hill St, Boston,MA,02215 +314968,USB-C Charging Cable,1,11.95,2019-12-30 13:57:00,301 1st St, San Francisco,CA,94016 +314969,AAA Batteries (4-pack),1,2.99,2019-12-09 23:22:00,67 Wilson St, San Francisco,CA,94016 +314970,Wired Headphones,1,11.99,2019-12-26 13:01:00,359 Main St, Portland,ME,04101 +314971,AA Batteries (4-pack),1,3.84,2019-12-22 16:10:00,224 Ridge St, Los Angeles,CA,90001 +314972,AA Batteries (4-pack),3,3.84,2019-12-15 10:45:00,116 Maple St, Austin,TX,73301 +314973,34in Ultrawide Monitor,1,379.99,2019-12-16 20:54:00,905 Wilson St, San Francisco,CA,94016 +314974,AAA Batteries (4-pack),2,2.99,2019-12-05 19:21:00,568 Spruce St, San Francisco,CA,94016 +314975,ThinkPad Laptop,1,999.99,2019-12-06 10:26:00,746 11th St, Atlanta,GA,30301 +314976,Wired Headphones,2,11.99,2019-12-10 13:59:00,772 Wilson St, Austin,TX,73301 +314977,AAA Batteries (4-pack),1,2.99,2019-12-08 21:22:00,372 Meadow St, San Francisco,CA,94016 +314978,AAA Batteries (4-pack),4,2.99,2019-12-15 20:52:00,619 9th St, Portland,OR,97035 +314979,Lightning Charging Cable,1,14.95,2019-12-17 09:08:00,266 Lincoln St, Portland,OR,97035 +314980,Bose SoundSport Headphones,1,99.99,2019-12-01 16:38:00,808 Ridge St, Atlanta,GA,30301 +314981,27in FHD Monitor,1,149.99,2019-12-31 20:09:00,199 Forest St, Dallas,TX,75001 +314982,AA Batteries (4-pack),2,3.84,2019-12-31 17:53:00,938 Walnut St, New York City,NY,10001 +314983,Wired Headphones,1,11.99,2019-12-06 13:47:00,849 Madison St, Boston,MA,02215 +314984,Bose SoundSport Headphones,1,99.99,2019-12-18 18:41:00,447 4th St, Los Angeles,CA,90001 +314985,Wired Headphones,1,11.99,2019-12-29 15:35:00,678 13th St, Los Angeles,CA,90001 +314986,27in 4K Gaming Monitor,1,389.99,2019-12-14 09:37:00,527 Pine St, Dallas,TX,75001 +314987,34in Ultrawide Monitor,1,379.99,2019-12-18 22:29:00,559 Main St, San Francisco,CA,94016 +314988,iPhone,1,700.0,2019-12-05 12:32:00,461 13th St, Boston,MA,02215 +314989,Bose SoundSport Headphones,1,99.99,2019-12-26 04:36:00,384 1st St, San Francisco,CA,94016 +314990,AAA Batteries (4-pack),1,2.99,2019-12-25 13:09:00,961 Elm St, Los Angeles,CA,90001 +314991,Apple Airpods Headphones,1,150.0,2019-12-22 16:28:00,178 North St, New York City,NY,10001 +314992,USB-C Charging Cable,1,11.95,2019-12-23 17:07:00,5 Hickory St, Atlanta,GA,30301 +314993,Apple Airpods Headphones,1,150.0,2019-12-03 20:26:00,452 1st St, Dallas,TX,75001 +314994,AA Batteries (4-pack),1,3.84,2019-12-19 12:37:00,222 Park St, Boston,MA,02215 +314995,USB-C Charging Cable,1,11.95,2019-12-13 02:00:00,187 2nd St, San Francisco,CA,94016 +314996,Lightning Charging Cable,1,14.95,2019-12-16 21:55:00,133 Spruce St, Dallas,TX,75001 +314997,ThinkPad Laptop,1,999.99,2019-12-15 09:07:00,224 4th St, New York City,NY,10001 +314998,Bose SoundSport Headphones,1,99.99,2019-12-22 11:25:00,419 Jefferson St, Los Angeles,CA,90001 +314999,27in 4K Gaming Monitor,1,389.99,2019-12-01 13:46:00,457 11th St, San Francisco,CA,94016 +315000,Lightning Charging Cable,1,14.95,2019-12-08 21:28:00,732 1st St, Dallas,TX,75001 +315001,AA Batteries (4-pack),2,3.84,2019-12-15 12:30:00,215 Ridge St, Seattle,WA,98101 +315002,USB-C Charging Cable,1,11.95,2019-12-09 21:36:00,68 Hill St, Los Angeles,CA,90001 +315003,Wired Headphones,1,11.99,2019-12-31 16:37:00,243 10th St, Atlanta,GA,30301 +315004,Lightning Charging Cable,1,14.95,2019-12-17 12:10:00,440 Wilson St, Austin,TX,73301 +315005,USB-C Charging Cable,1,11.95,2019-12-09 20:30:00,388 Cherry St, Austin,TX,73301 +315006,USB-C Charging Cable,1,11.95,2019-12-21 16:16:00,518 Park St, San Francisco,CA,94016 +315007,34in Ultrawide Monitor,1,379.99,2019-12-04 09:22:00,629 6th St, San Francisco,CA,94016 +315008,iPhone,1,700.0,2019-12-27 21:28:00,133 River St, Austin,TX,73301 +315009,AAA Batteries (4-pack),4,2.99,2019-12-31 19:57:00,525 Adams St, Atlanta,GA,30301 +315010,Wired Headphones,1,11.99,2019-12-06 04:45:00,413 Ridge St, San Francisco,CA,94016 +315011,AAA Batteries (4-pack),1,2.99,2019-12-04 16:05:00,815 7th St, San Francisco,CA,94016 +315012,AA Batteries (4-pack),2,3.84,2019-12-02 18:36:00,450 14th St, Los Angeles,CA,90001 +315013,AA Batteries (4-pack),1,3.84,2019-12-18 16:27:00,510 Maple St, Portland,OR,97035 +315014,AAA Batteries (4-pack),1,2.99,2019-12-04 08:57:00,488 10th St, San Francisco,CA,94016 +315015,Lightning Charging Cable,1,14.95,2019-12-07 15:35:00,900 Lakeview St, New York City,NY,10001 +315016,AAA Batteries (4-pack),1,2.99,2019-12-12 17:39:00,948 Wilson St, Los Angeles,CA,90001 +315017,iPhone,1,700.0,2019-12-09 14:42:00,431 4th St, Los Angeles,CA,90001 +315018,Apple Airpods Headphones,1,150.0,2019-12-26 14:19:00,804 10th St, Dallas,TX,75001 +315019,Macbook Pro Laptop,1,1700.0,2019-12-04 19:19:00,399 8th St, San Francisco,CA,94016 +315020,Lightning Charging Cable,1,14.95,2019-12-06 18:35:00,715 Walnut St, Austin,TX,73301 +315021,20in Monitor,1,109.99,2019-12-15 14:01:00,39 4th St, Boston,MA,02215 +315022,Flatscreen TV,1,300.0,2019-12-22 15:20:00,250 5th St, Dallas,TX,75001 +315023,27in FHD Monitor,1,149.99,2019-12-17 15:16:00,798 8th St, San Francisco,CA,94016 +315024,Lightning Charging Cable,1,14.95,2019-12-04 13:15:00,198 Sunset St, Boston,MA,02215 +315025,Wired Headphones,2,11.99,2019-12-29 12:43:00,938 Hill St, Dallas,TX,75001 +315026,ThinkPad Laptop,1,999.99,2019-12-04 13:21:00,376 Sunset St, San Francisco,CA,94016 +315027,USB-C Charging Cable,1,11.95,2019-12-21 14:58:00,774 Sunset St, San Francisco,CA,94016 +315028,AA Batteries (4-pack),1,3.84,2019-12-03 02:11:00,866 13th St, San Francisco,CA,94016 +315029,USB-C Charging Cable,1,11.95,2019-12-21 18:06:00,858 4th St, San Francisco,CA,94016 +315030,USB-C Charging Cable,1,11.95,2019-12-20 21:17:00,768 Wilson St, Austin,TX,73301 +315031,Apple Airpods Headphones,1,150.0,2019-12-31 18:11:00,122 North St, San Francisco,CA,94016 +315032,AA Batteries (4-pack),3,3.84,2019-12-01 07:23:00,625 Chestnut St, Austin,TX,73301 +315033,Macbook Pro Laptop,1,1700.0,2019-12-04 12:46:00,713 9th St, Atlanta,GA,30301 +315034,AA Batteries (4-pack),1,3.84,2019-12-09 18:24:00,194 West St, Atlanta,GA,30301 +315035,USB-C Charging Cable,1,11.95,2019-12-19 13:29:00,680 10th St, San Francisco,CA,94016 +315036,AAA Batteries (4-pack),1,2.99,2019-12-17 14:36:00,787 Center St, Portland,OR,97035 +315036,Lightning Charging Cable,1,14.95,2019-12-17 14:36:00,787 Center St, Portland,OR,97035 +315037,34in Ultrawide Monitor,1,379.99,2019-12-10 21:05:00,465 Willow St, Seattle,WA,98101 +315038,Apple Airpods Headphones,1,150.0,2019-12-22 12:41:00,43 Cherry St, Portland,OR,97035 +315039,34in Ultrawide Monitor,1,379.99,2019-12-10 10:54:00,330 4th St, New York City,NY,10001 +315040,USB-C Charging Cable,1,11.95,2019-12-31 09:06:00,145 West St, New York City,NY,10001 +315041,Google Phone,1,600.0,2019-12-04 18:57:00,507 North St, Austin,TX,73301 +315041,Wired Headphones,1,11.99,2019-12-04 18:57:00,507 North St, Austin,TX,73301 +315042,AA Batteries (4-pack),1,3.84,2019-12-13 14:03:00,626 4th St, Los Angeles,CA,90001 +315043,USB-C Charging Cable,1,11.95,2019-12-18 19:57:00,891 1st St, Portland,OR,97035 +315044,Lightning Charging Cable,1,14.95,2019-12-18 15:59:00,720 Sunset St, Austin,TX,73301 +315045,Apple Airpods Headphones,1,150.0,2019-12-08 22:33:00,713 2nd St, San Francisco,CA,94016 +315046,USB-C Charging Cable,1,11.95,2019-12-26 13:57:00,940 Hickory St, Boston,MA,02215 +315047,iPhone,1,700.0,2019-12-14 07:38:00,41 Main St, Los Angeles,CA,90001 +315047,Lightning Charging Cable,1,14.95,2019-12-14 07:38:00,41 Main St, Los Angeles,CA,90001 +315048,AA Batteries (4-pack),1,3.84,2019-12-21 21:20:00,293 Elm St, Los Angeles,CA,90001 +315049,AAA Batteries (4-pack),2,2.99,2019-12-09 22:10:00,863 5th St, Los Angeles,CA,90001 +315050,AA Batteries (4-pack),1,3.84,2019-12-22 21:02:00,45 Cedar St, San Francisco,CA,94016 +315051,AAA Batteries (4-pack),1,2.99,2019-12-08 22:04:00,509 Forest St, Los Angeles,CA,90001 +315052,USB-C Charging Cable,1,11.95,2019-12-04 22:07:00,343 Walnut St, Seattle,WA,98101 +315053,AA Batteries (4-pack),1,3.84,2019-12-31 23:12:00,459 Park St, Dallas,TX,75001 +315054,USB-C Charging Cable,1,11.95,2019-12-10 10:21:00,921 8th St, Los Angeles,CA,90001 +315055,USB-C Charging Cable,1,11.95,2019-12-01 18:24:00,566 Jackson St, Atlanta,GA,30301 +315056,AA Batteries (4-pack),1,3.84,2019-12-02 21:25:00,288 Pine St, Seattle,WA,98101 +315057,Macbook Pro Laptop,1,1700.0,2019-12-11 14:43:00,542 Cedar St, San Francisco,CA,94016 +315058,Apple Airpods Headphones,1,150.0,2019-12-30 10:03:00,148 Cherry St, Austin,TX,73301 +315058,AAA Batteries (4-pack),1,2.99,2019-12-30 10:03:00,148 Cherry St, Austin,TX,73301 +315059,Lightning Charging Cable,1,14.95,2019-12-11 18:07:00,170 9th St, Austin,TX,73301 +315059,Vareebadd Phone,1,400.0,2019-12-11 18:07:00,170 9th St, Austin,TX,73301 +315060,AAA Batteries (4-pack),1,2.99,2019-12-17 14:55:00,446 Wilson St, Dallas,TX,75001 +315061,Lightning Charging Cable,1,14.95,2019-12-08 13:57:00,442 Lake St, Atlanta,GA,30301 +315062,34in Ultrawide Monitor,1,379.99,2019-12-21 17:17:00,182 Cherry St, Los Angeles,CA,90001 +315063,AAA Batteries (4-pack),1,2.99,2019-12-02 08:31:00,262 4th St, Los Angeles,CA,90001 +315064,iPhone,1,700.0,2019-12-25 23:03:00,572 Center St, Austin,TX,73301 +315065,Google Phone,1,600.0,2019-12-23 19:27:00,700 Lakeview St, Atlanta,GA,30301 +315066,Lightning Charging Cable,1,14.95,2019-12-04 13:36:00,494 Ridge St, San Francisco,CA,94016 +315067,Apple Airpods Headphones,1,150.0,2019-12-24 21:33:00,986 Park St, Boston,MA,02215 +315068,Bose SoundSport Headphones,1,99.99,2019-12-14 11:14:00,841 Forest St, New York City,NY,10001 +315069,USB-C Charging Cable,1,11.95,2019-12-12 09:20:00,273 Forest St, Atlanta,GA,30301 +315070,USB-C Charging Cable,1,11.95,2019-12-13 18:03:00,316 Jefferson St, Boston,MA,02215 +315071,iPhone,1,700.0,2019-12-01 11:16:00,85 13th St, Los Angeles,CA,90001 +315072,27in 4K Gaming Monitor,1,389.99,2019-12-17 16:23:00,547 5th St, Atlanta,GA,30301 +315073,Apple Airpods Headphones,1,150.0,2019-12-20 12:35:00,204 Elm St, New York City,NY,10001 +315074,Wired Headphones,1,11.99,2019-12-18 08:38:00,628 Spruce St, San Francisco,CA,94016 +315075,AA Batteries (4-pack),1,3.84,2019-12-13 20:28:00,421 Sunset St, San Francisco,CA,94016 +315076,ThinkPad Laptop,1,999.99,2019-12-22 10:18:00,270 Highland St, San Francisco,CA,94016 +315077,Lightning Charging Cable,1,14.95,2019-12-07 22:16:00,450 South St, San Francisco,CA,94016 +315078,20in Monitor,1,109.99,2019-12-17 22:20:00,237 Main St, San Francisco,CA,94016 +315079,AA Batteries (4-pack),1,3.84,2019-12-15 19:05:00,344 2nd St, New York City,NY,10001 +315080,AAA Batteries (4-pack),1,2.99,2019-12-08 14:13:00,128 Wilson St, New York City,NY,10001 +315081,Google Phone,1,600.0,2019-12-24 11:22:00,154 Hickory St, Atlanta,GA,30301 +315082,20in Monitor,1,109.99,2019-12-05 13:21:00,532 Elm St, San Francisco,CA,94016 +315083,Wired Headphones,1,11.99,2019-12-22 23:41:00,46 Washington St, New York City,NY,10001 +315084,Vareebadd Phone,1,400.0,2019-12-17 20:42:00,267 Meadow St, San Francisco,CA,94016 +315085,ThinkPad Laptop,1,999.99,2019-12-29 15:24:00,127 Forest St, Seattle,WA,98101 +315086,34in Ultrawide Monitor,1,379.99,2019-12-26 17:26:00,748 Elm St, San Francisco,CA,94016 +315087,USB-C Charging Cable,1,11.95,2019-12-22 12:38:00,549 Park St, San Francisco,CA,94016 +315088,Macbook Pro Laptop,1,1700.0,2019-12-18 20:17:00,379 Maple St, San Francisco,CA,94016 +315089,Lightning Charging Cable,1,14.95,2019-12-19 19:06:00,211 8th St, Boston,MA,02215 +315090,27in FHD Monitor,1,149.99,2019-12-28 14:40:00,565 South St, San Francisco,CA,94016 +315091,Wired Headphones,1,11.99,2019-12-14 17:31:00,224 Highland St, San Francisco,CA,94016 +315092,27in FHD Monitor,1,149.99,2019-12-07 15:29:00,790 8th St, New York City,NY,10001 +315093,AAA Batteries (4-pack),2,2.99,2019-12-15 20:36:00,71 Jackson St, Los Angeles,CA,90001 +315094,AAA Batteries (4-pack),2,2.99,2019-12-29 19:49:00,349 Cherry St, Los Angeles,CA,90001 +315095,LG Washing Machine,1,600.0,2019-12-11 08:39:00,522 12th St, Portland,OR,97035 +315096,AAA Batteries (4-pack),1,2.99,2019-12-23 19:21:00,883 Center St, New York City,NY,10001 +315097,Wired Headphones,1,11.99,2019-12-09 12:06:00,449 6th St, Dallas,TX,75001 +315098,Wired Headphones,1,11.99,2019-12-03 19:22:00,534 Adams St, Seattle,WA,98101 +315099,Bose SoundSport Headphones,1,99.99,2019-12-23 13:48:00,865 Jackson St, Los Angeles,CA,90001 +315100,Lightning Charging Cable,1,14.95,2019-12-04 11:33:00,119 Madison St, Boston,MA,02215 +315100,Flatscreen TV,1,300.0,2019-12-04 11:33:00,119 Madison St, Boston,MA,02215 +315101,ThinkPad Laptop,1,999.99,2019-12-22 08:58:00,956 Lake St, San Francisco,CA,94016 +315102,Lightning Charging Cable,1,14.95,2019-12-11 23:04:00,388 Highland St, Los Angeles,CA,90001 +315103,Wired Headphones,1,11.99,2019-12-23 17:56:00,340 11th St, Dallas,TX,75001 +315104,Apple Airpods Headphones,1,150.0,2019-12-07 09:32:00,212 Willow St, Los Angeles,CA,90001 +315105,Google Phone,1,600.0,2019-12-14 12:24:00,41 Highland St, Atlanta,GA,30301 +315106,Apple Airpods Headphones,1,150.0,2019-12-20 10:48:00,25 12th St, Austin,TX,73301 +315107,USB-C Charging Cable,2,11.95,2019-12-10 08:32:00,846 Hickory St, Los Angeles,CA,90001 +315108,USB-C Charging Cable,1,11.95,2019-12-23 20:45:00,351 Cherry St, New York City,NY,10001 +315109,USB-C Charging Cable,2,11.95,2019-12-31 23:16:00,601 South St, New York City,NY,10001 +315110,AA Batteries (4-pack),1,3.84,2019-12-09 16:43:00,624 13th St, Portland,OR,97035 +315111,Macbook Pro Laptop,1,1700.0,2019-12-30 17:37:00,84 Washington St, Seattle,WA,98101 +315112,27in FHD Monitor,1,149.99,2019-12-27 18:37:00,414 6th St, Boston,MA,02215 +315113,Wired Headphones,1,11.99,2019-12-09 18:25:00,628 Spruce St, Seattle,WA,98101 +315114,Lightning Charging Cable,1,14.95,2019-12-20 21:44:00,822 River St, Atlanta,GA,30301 +315115,Bose SoundSport Headphones,1,99.99,2019-12-10 12:38:00,543 12th St, Los Angeles,CA,90001 +315116,Wired Headphones,3,11.99,2019-12-20 11:56:00,78 Johnson St, Los Angeles,CA,90001 +315117,AAA Batteries (4-pack),1,2.99,2019-12-31 00:13:00,424 Cedar St, San Francisco,CA,94016 +315118,Flatscreen TV,1,300.0,2019-12-31 19:49:00,273 River St, Dallas,TX,75001 +315119,Google Phone,1,600.0,2019-12-17 23:52:00,179 2nd St, Boston,MA,02215 +315119,Bose SoundSport Headphones,1,99.99,2019-12-17 23:52:00,179 2nd St, Boston,MA,02215 +315120,AA Batteries (4-pack),1,3.84,2019-12-19 19:37:00,674 11th St, Seattle,WA,98101 +315121,Flatscreen TV,1,300.0,2019-12-10 04:49:00,387 Hill St, Seattle,WA,98101 +315122,AA Batteries (4-pack),1,3.84,2019-12-06 12:09:00,807 Sunset St, Los Angeles,CA,90001 +315123,Apple Airpods Headphones,1,150.0,2019-12-17 17:21:00,960 Spruce St, Atlanta,GA,30301 +315124,AAA Batteries (4-pack),3,2.99,2019-12-20 21:03:00,326 Walnut St, Dallas,TX,75001 +315125,Lightning Charging Cable,1,14.95,2019-12-08 20:44:00,302 Maple St, Seattle,WA,98101 +315126,USB-C Charging Cable,1,11.95,2019-12-07 12:15:00,507 6th St, Los Angeles,CA,90001 +315127,34in Ultrawide Monitor,1,379.99,2019-12-07 18:53:00,865 Pine St, Atlanta,GA,30301 +315128,Wired Headphones,1,11.99,2019-12-02 20:10:00,110 6th St, Los Angeles,CA,90001 +315129,34in Ultrawide Monitor,1,379.99,2019-12-31 21:42:00,675 Dogwood St, San Francisco,CA,94016 +315130,ThinkPad Laptop,1,999.99,2019-12-31 22:57:00,948 Madison St, Atlanta,GA,30301 +315131,Lightning Charging Cable,1,14.95,2019-12-15 22:30:00,509 Washington St, Seattle,WA,98101 +315132,AA Batteries (4-pack),3,3.84,2019-12-25 21:18:00,569 7th St, New York City,NY,10001 +315133,iPhone,1,700.0,2019-12-11 11:51:00,805 Lake St, Atlanta,GA,30301 +315134,AAA Batteries (4-pack),1,2.99,2019-12-12 11:33:00,761 River St, San Francisco,CA,94016 +315135,Wired Headphones,1,11.99,2019-12-12 16:22:00,245 Sunset St, Los Angeles,CA,90001 +315136,Macbook Pro Laptop,1,1700.0,2019-12-13 12:55:00,457 Highland St, Boston,MA,02215 +315137,Macbook Pro Laptop,1,1700.0,2019-12-29 20:35:00,131 11th St, New York City,NY,10001 +315138,AAA Batteries (4-pack),3,2.99,2020-01-01 00:51:00,257 Adams St, New York City,NY,10001 +315139,Lightning Charging Cable,1,14.95,2019-12-02 13:45:00,335 Park St, Atlanta,GA,30301 +315140,Macbook Pro Laptop,1,1700.0,2019-12-03 22:00:00,340 Jackson St, Atlanta,GA,30301 +315141,Wired Headphones,1,11.99,2019-12-13 19:41:00,421 7th St, Boston,MA,02215 +315142,AAA Batteries (4-pack),1,2.99,2019-12-11 17:46:00,599 Jefferson St, San Francisco,CA,94016 +315143,34in Ultrawide Monitor,1,379.99,2019-12-17 21:59:00,305 Washington St, San Francisco,CA,94016 +315144,Lightning Charging Cable,1,14.95,2019-12-25 07:42:00,236 Forest St, Seattle,WA,98101 +315145,USB-C Charging Cable,1,11.95,2019-12-18 13:25:00,388 14th St, San Francisco,CA,94016 +315146,27in 4K Gaming Monitor,1,389.99,2019-12-16 22:38:00,936 Chestnut St, San Francisco,CA,94016 +315147,Lightning Charging Cable,1,14.95,2019-12-06 23:14:00,820 Hill St, Seattle,WA,98101 +315148,AA Batteries (4-pack),1,3.84,2019-12-30 20:06:00,431 Meadow St, Seattle,WA,98101 +315149,Lightning Charging Cable,1,14.95,2019-12-19 17:43:00,800 Washington St, New York City,NY,10001 +315150,Lightning Charging Cable,1,14.95,2019-12-20 23:36:00,760 Washington St, Austin,TX,73301 +315151,34in Ultrawide Monitor,1,379.99,2019-12-11 14:18:00,971 Washington St, San Francisco,CA,94016 +315152,Lightning Charging Cable,1,14.95,2019-12-16 19:57:00,127 6th St, Los Angeles,CA,90001 +315153,Apple Airpods Headphones,1,150.0,2019-12-11 18:31:00,639 4th St, Boston,MA,02215 +315154,20in Monitor,1,109.99,2019-12-09 12:42:00,372 8th St, San Francisco,CA,94016 +315155,Flatscreen TV,1,300.0,2019-12-01 19:55:00,403 Ridge St, Seattle,WA,98101 +315156,Flatscreen TV,1,300.0,2019-12-12 06:58:00,262 Dogwood St, San Francisco,CA,94016 +315157,Wired Headphones,1,11.99,2019-12-04 20:00:00,350 4th St, Los Angeles,CA,90001 +315158,Bose SoundSport Headphones,1,99.99,2019-12-18 16:00:00,374 Willow St, Portland,OR,97035 +315159,iPhone,1,700.0,2019-12-03 18:02:00,215 Jackson St, Los Angeles,CA,90001 +315160,USB-C Charging Cable,1,11.95,2019-12-09 07:06:00,654 13th St, New York City,NY,10001 +315161,AAA Batteries (4-pack),1,2.99,2019-12-13 10:45:00,769 Walnut St, New York City,NY,10001 +315162,Apple Airpods Headphones,1,150.0,2019-12-15 19:02:00,207 South St, San Francisco,CA,94016 +315163,AAA Batteries (4-pack),1,2.99,2019-12-01 23:32:00,172 Lakeview St, Dallas,TX,75001 +315164,Vareebadd Phone,1,400.0,2019-12-20 14:28:00,567 12th St, Portland,OR,97035 +315165,Bose SoundSport Headphones,1,99.99,2019-12-03 09:15:00,288 Elm St, Los Angeles,CA,90001 +315166,AAA Batteries (4-pack),2,2.99,2019-12-13 16:43:00,882 11th St, San Francisco,CA,94016 +315167,Google Phone,1,600.0,2019-12-15 20:16:00,926 Adams St, Boston,MA,02215 +315167,Wired Headphones,1,11.99,2019-12-15 20:16:00,926 Adams St, Boston,MA,02215 +315168,USB-C Charging Cable,1,11.95,2019-12-10 08:21:00,332 Lincoln St, Portland,OR,97035 +315169,Apple Airpods Headphones,1,150.0,2019-12-29 16:28:00,726 Walnut St, Boston,MA,02215 +315170,Apple Airpods Headphones,1,150.0,2019-12-02 13:25:00,374 10th St, Boston,MA,02215 +315171,Macbook Pro Laptop,1,1700.0,2019-12-24 17:31:00,309 Main St, Austin,TX,73301 +315172,USB-C Charging Cable,1,11.95,2019-12-30 15:17:00,210 Ridge St, Los Angeles,CA,90001 +315173,Wired Headphones,1,11.99,2019-12-17 10:32:00,360 Sunset St, San Francisco,CA,94016 +315174,27in FHD Monitor,1,149.99,2019-12-22 19:27:00,941 Park St, Dallas,TX,75001 +315175,USB-C Charging Cable,1,11.95,2019-12-12 21:36:00,534 12th St, Los Angeles,CA,90001 +315176,iPhone,1,700.0,2019-12-12 15:45:00,450 2nd St, Austin,TX,73301 +315176,Lightning Charging Cable,1,14.95,2019-12-12 15:45:00,450 2nd St, Austin,TX,73301 +315177,AAA Batteries (4-pack),1,2.99,2019-12-14 23:19:00,339 Hickory St, Dallas,TX,75001 +315178,Macbook Pro Laptop,1,1700.0,2019-12-05 21:45:00,529 Ridge St, San Francisco,CA,94016 +315179,34in Ultrawide Monitor,1,379.99,2019-12-12 22:13:00,344 Main St, New York City,NY,10001 +315180,Apple Airpods Headphones,1,150.0,2019-12-16 21:02:00,371 Dogwood St, Atlanta,GA,30301 +315181,Wired Headphones,1,11.99,2019-12-20 20:16:00,305 Jackson St, Austin,TX,73301 +315182,20in Monitor,1,109.99,2019-12-01 13:33:00,291 Pine St, San Francisco,CA,94016 +315183,USB-C Charging Cable,1,11.95,2019-12-12 21:35:00,179 Cedar St, Atlanta,GA,30301 +315184,LG Dryer,1,600.0,2019-12-18 00:07:00,184 Lincoln St, Seattle,WA,98101 +315185,20in Monitor,1,109.99,2019-12-26 09:04:00,258 Dogwood St, Atlanta,GA,30301 +315186,USB-C Charging Cable,1,11.95,2019-12-05 21:52:00,593 Adams St, Austin,TX,73301 +315187,iPhone,1,700.0,2019-12-12 14:40:00,727 Elm St, San Francisco,CA,94016 +315188,USB-C Charging Cable,1,11.95,2019-12-13 18:45:00,551 West St, Los Angeles,CA,90001 +315189,USB-C Charging Cable,1,11.95,2019-12-21 20:11:00,541 South St, Austin,TX,73301 +315190,iPhone,1,700.0,2019-12-13 23:05:00,972 Pine St, Portland,OR,97035 +315190,Apple Airpods Headphones,1,150.0,2019-12-13 23:05:00,972 Pine St, Portland,OR,97035 +315191,AAA Batteries (4-pack),3,2.99,2019-12-17 00:41:00,486 North St, San Francisco,CA,94016 +315192,AA Batteries (4-pack),1,3.84,2019-12-12 23:14:00,23 Walnut St, Los Angeles,CA,90001 +315192,27in 4K Gaming Monitor,1,389.99,2019-12-12 23:14:00,23 Walnut St, Los Angeles,CA,90001 +315193,Bose SoundSport Headphones,1,99.99,2019-12-01 21:40:00,535 West St, Austin,TX,73301 +315194,Lightning Charging Cable,1,14.95,2019-12-21 10:47:00,549 Park St, Boston,MA,02215 +315195,Bose SoundSport Headphones,1,99.99,2019-12-27 17:19:00,345 Sunset St, San Francisco,CA,94016 +315196,Wired Headphones,1,11.99,2019-12-06 14:24:00,213 10th St, Portland,OR,97035 +315197,Lightning Charging Cable,1,14.95,2019-12-30 21:55:00,715 14th St, Los Angeles,CA,90001 +315198,27in FHD Monitor,1,149.99,2019-12-10 11:36:00,969 South St, Portland,OR,97035 +315199,Wired Headphones,1,11.99,2019-12-16 10:50:00,987 5th St, Dallas,TX,75001 +315200,USB-C Charging Cable,1,11.95,2019-12-30 09:34:00,326 Adams St, Atlanta,GA,30301 +315201,Flatscreen TV,1,300.0,2019-12-04 13:42:00,309 Washington St, Boston,MA,02215 +315202,Google Phone,1,600.0,2019-12-15 16:19:00,93 6th St, Dallas,TX,75001 +315203,iPhone,1,700.0,2019-12-30 13:40:00,390 Main St, New York City,NY,10001 +315204,Wired Headphones,1,11.99,2019-12-12 12:41:00,680 6th St, San Francisco,CA,94016 +315205,AAA Batteries (4-pack),1,2.99,2019-12-20 20:14:00,604 Lake St, New York City,NY,10001 +315206,USB-C Charging Cable,1,11.95,2019-12-27 09:34:00,367 Ridge St, Seattle,WA,98101 +315207,USB-C Charging Cable,1,11.95,2019-12-20 14:34:00,508 Meadow St, Los Angeles,CA,90001 +315208,Lightning Charging Cable,1,14.95,2019-12-24 16:40:00,970 Hickory St, San Francisco,CA,94016 +315209,27in 4K Gaming Monitor,1,389.99,2019-12-06 19:37:00,970 Dogwood St, San Francisco,CA,94016 +315210,Lightning Charging Cable,1,14.95,2019-12-02 15:19:00,14 West St, New York City,NY,10001 +315211,AAA Batteries (4-pack),1,2.99,2019-12-29 10:59:00,484 Johnson St, San Francisco,CA,94016 +315212,AAA Batteries (4-pack),1,2.99,2019-12-31 18:20:00,336 Dogwood St, Dallas,TX,75001 +315213,Lightning Charging Cable,1,14.95,2019-12-29 15:27:00,777 Center St, Austin,TX,73301 +315214,ThinkPad Laptop,1,999.99,2019-12-01 21:41:00,921 14th St, Atlanta,GA,30301 +315215,20in Monitor,1,109.99,2019-12-28 22:34:00,891 Walnut St, San Francisco,CA,94016 +315216,Apple Airpods Headphones,1,150.0,2019-12-06 15:10:00,627 6th St, New York City,NY,10001 +315217,Bose SoundSport Headphones,1,99.99,2019-12-09 09:13:00,232 Adams St, San Francisco,CA,94016 +315218,Bose SoundSport Headphones,1,99.99,2019-12-20 11:57:00,553 10th St, Seattle,WA,98101 +315219,AAA Batteries (4-pack),1,2.99,2019-12-20 08:52:00,126 Dogwood St, Los Angeles,CA,90001 +315220,20in Monitor,1,109.99,2019-12-20 00:10:00,289 Chestnut St, Atlanta,GA,30301 +315221,AAA Batteries (4-pack),1,2.99,2019-12-15 01:04:00,363 8th St, Atlanta,GA,30301 +315222,iPhone,1,700.0,2019-12-14 10:01:00,902 5th St, Portland,OR,97035 +315223,Lightning Charging Cable,1,14.95,2019-12-05 11:10:00,444 7th St, San Francisco,CA,94016 +315224,27in FHD Monitor,1,149.99,2019-12-04 13:23:00,381 7th St, San Francisco,CA,94016 +315225,Bose SoundSport Headphones,1,99.99,2019-12-13 14:39:00,299 Adams St, Dallas,TX,75001 +315226,USB-C Charging Cable,1,11.95,2019-12-27 10:25:00,203 Hill St, Austin,TX,73301 +315227,Wired Headphones,1,11.99,2019-12-30 12:19:00,892 1st St, San Francisco,CA,94016 +315228,AAA Batteries (4-pack),1,2.99,2019-12-05 11:22:00,553 Cherry St, New York City,NY,10001 +315229,AA Batteries (4-pack),1,3.84,2019-12-03 14:25:00,688 8th St, Boston,MA,02215 +315230,AA Batteries (4-pack),1,3.84,2019-12-26 07:08:00,872 Cedar St, Los Angeles,CA,90001 +315231,AAA Batteries (4-pack),1,2.99,2019-12-20 21:37:00,275 Elm St, Boston,MA,02215 +315232,AA Batteries (4-pack),2,3.84,2019-12-12 20:09:00,825 4th St, Los Angeles,CA,90001 +315233,AAA Batteries (4-pack),2,2.99,2019-12-04 08:48:00,469 Hill St, Austin,TX,73301 +315234,Lightning Charging Cable,1,14.95,2019-12-08 09:08:00,93 Chestnut St, Atlanta,GA,30301 +315235,Bose SoundSport Headphones,1,99.99,2019-12-19 16:28:00,171 Lakeview St, New York City,NY,10001 +315236,AAA Batteries (4-pack),1,2.99,2019-12-21 17:40:00,292 Ridge St, Boston,MA,02215 +315237,Macbook Pro Laptop,1,1700.0,2019-12-21 09:32:00,803 4th St, San Francisco,CA,94016 +315238,27in 4K Gaming Monitor,1,389.99,2019-12-28 18:09:00,695 Washington St, Los Angeles,CA,90001 +315239,27in FHD Monitor,1,149.99,2019-12-07 12:11:00,293 River St, San Francisco,CA,94016 +315240,Bose SoundSport Headphones,1,99.99,2019-12-22 19:28:00,70 Dogwood St, Boston,MA,02215 +315241,27in FHD Monitor,1,149.99,2019-12-24 18:20:00,128 Dogwood St, San Francisco,CA,94016 +315242,Wired Headphones,1,11.99,2019-12-29 18:20:00,907 5th St, New York City,NY,10001 +315243,34in Ultrawide Monitor,1,379.99,2019-12-22 06:59:00,615 Center St, New York City,NY,10001 +315244,iPhone,1,700.0,2019-12-19 16:08:00,443 South St, New York City,NY,10001 +315245,Apple Airpods Headphones,1,150.0,2019-12-01 21:09:00,513 13th St, Seattle,WA,98101 +315246,Apple Airpods Headphones,1,150.0,2019-12-24 10:57:00,521 Ridge St, Boston,MA,02215 +315247,USB-C Charging Cable,1,11.95,2019-12-13 14:35:00,178 Willow St, Atlanta,GA,30301 +315248,27in FHD Monitor,1,149.99,2019-12-28 22:42:00,564 13th St, San Francisco,CA,94016 +315249,Wired Headphones,1,11.99,2019-12-27 13:12:00,943 Adams St, San Francisco,CA,94016 +315250,AAA Batteries (4-pack),1,2.99,2019-12-21 05:35:00,254 Johnson St, Portland,OR,97035 +315251,Wired Headphones,1,11.99,2019-12-27 19:51:00,357 Cedar St, Los Angeles,CA,90001 +315252,Apple Airpods Headphones,1,150.0,2019-12-14 00:02:00,269 Meadow St, San Francisco,CA,94016 +315253,Lightning Charging Cable,1,14.95,2019-12-27 17:53:00,859 Sunset St, Los Angeles,CA,90001 +315254,iPhone,1,700.0,2019-12-25 18:02:00,707 8th St, Portland,OR,97035 +315255,USB-C Charging Cable,1,11.95,2019-12-24 01:41:00,501 Dogwood St, Los Angeles,CA,90001 +315256,Google Phone,1,600.0,2019-12-23 14:50:00,159 5th St, Los Angeles,CA,90001 +315257,AA Batteries (4-pack),1,3.84,2019-12-23 08:01:00,381 Willow St, Portland,OR,97035 +315258,Wired Headphones,1,11.99,2019-12-09 10:11:00,916 7th St, Los Angeles,CA,90001 +315259,Apple Airpods Headphones,1,150.0,2019-12-15 17:45:00,727 Spruce St, Dallas,TX,75001 +315260,USB-C Charging Cable,2,11.95,2019-12-06 17:08:00,880 Washington St, San Francisco,CA,94016 +315261,AA Batteries (4-pack),2,3.84,2019-12-18 10:51:00,272 Hickory St, New York City,NY,10001 +315262,LG Dryer,1,600.0,2019-12-29 14:34:00,267 10th St, Atlanta,GA,30301 +315263,AA Batteries (4-pack),1,3.84,2019-12-02 21:55:00,286 Sunset St, New York City,NY,10001 +315264,27in FHD Monitor,1,149.99,2019-12-26 18:57:00,228 North St, San Francisco,CA,94016 +315265,ThinkPad Laptop,1,999.99,2019-12-02 13:24:00,92 Ridge St, Portland,OR,97035 +315266,Macbook Pro Laptop,1,1700.0,2019-12-03 09:49:00,806 Washington St, Portland,OR,97035 +315267,27in FHD Monitor,1,149.99,2019-12-05 17:32:00,886 Willow St, New York City,NY,10001 +315268,Lightning Charging Cable,1,14.95,2019-12-28 23:12:00,430 Dogwood St, Portland,OR,97035 +315268,Google Phone,1,600.0,2019-12-28 23:12:00,430 Dogwood St, Portland,OR,97035 +315269,USB-C Charging Cable,1,11.95,2019-12-04 21:42:00,36 Lake St, Dallas,TX,75001 +315270,27in FHD Monitor,1,149.99,2019-12-17 18:25:00,579 Highland St, San Francisco,CA,94016 +315271,Lightning Charging Cable,2,14.95,2019-12-20 00:37:00,217 Highland St, Portland,OR,97035 +315272,27in 4K Gaming Monitor,1,389.99,2019-12-23 13:19:00,511 Madison St, San Francisco,CA,94016 +315273,Bose SoundSport Headphones,1,99.99,2019-12-16 12:41:00,861 Cherry St, San Francisco,CA,94016 +315274,Flatscreen TV,1,300.0,2019-12-20 14:34:00,945 14th St, Atlanta,GA,30301 +315275,Wired Headphones,1,11.99,2019-12-24 10:31:00,112 5th St, San Francisco,CA,94016 +315276,AAA Batteries (4-pack),1,2.99,2019-12-08 11:45:00,364 Elm St, San Francisco,CA,94016 +315277,Apple Airpods Headphones,1,150.0,2019-12-11 18:54:00,34 Maple St, San Francisco,CA,94016 +315278,Google Phone,1,600.0,2019-12-24 14:26:00,960 Hickory St, Los Angeles,CA,90001 +315279,Lightning Charging Cable,1,14.95,2019-12-17 21:14:00,384 Lincoln St, Dallas,TX,75001 +315280,Wired Headphones,1,11.99,2019-12-01 10:29:00,13 Ridge St, Los Angeles,CA,90001 +315281,Wired Headphones,2,11.99,2019-12-15 20:46:00,350 10th St, Boston,MA,02215 +315282,Wired Headphones,1,11.99,2019-12-13 21:33:00,954 2nd St, New York City,NY,10001 +315283,Bose SoundSport Headphones,1,99.99,2019-12-21 10:30:00,838 8th St, San Francisco,CA,94016 +315284,Lightning Charging Cable,1,14.95,2019-12-26 13:54:00,220 River St, Los Angeles,CA,90001 +315285,Apple Airpods Headphones,1,150.0,2019-12-27 09:18:00,395 Cedar St, New York City,NY,10001 +315286,Lightning Charging Cable,1,14.95,2019-12-22 07:46:00,909 Highland St, Seattle,WA,98101 +315287,USB-C Charging Cable,1,11.95,2019-12-16 09:32:00,250 North St, New York City,NY,10001 +315288,Wired Headphones,1,11.99,2019-12-06 20:39:00,232 Forest St, San Francisco,CA,94016 +315289,Apple Airpods Headphones,1,150.0,2019-12-26 11:15:00,67 Walnut St, Los Angeles,CA,90001 +315290,34in Ultrawide Monitor,1,379.99,2019-12-01 07:59:00,353 West St, Boston,MA,02215 +315291,27in 4K Gaming Monitor,1,389.99,2019-12-19 12:36:00,454 Ridge St, Atlanta,GA,30301 +315292,Apple Airpods Headphones,1,150.0,2019-12-29 20:35:00,990 Chestnut St, New York City,NY,10001 +315293,Lightning Charging Cable,1,14.95,2019-12-09 19:38:00,806 Lincoln St, San Francisco,CA,94016 +315294,ThinkPad Laptop,1,999.99,2019-12-19 12:00:00,108 Park St, Los Angeles,CA,90001 +315295,Apple Airpods Headphones,1,150.0,2019-12-23 11:05:00,78 South St, Los Angeles,CA,90001 +315296,AAA Batteries (4-pack),2,2.99,2019-12-17 18:24:00,526 Forest St, Dallas,TX,75001 +315297,Lightning Charging Cable,1,14.95,2019-12-22 08:57:00,291 Cedar St, Seattle,WA,98101 +315298,iPhone,1,700.0,2019-12-23 10:40:00,712 13th St, Austin,TX,73301 +315299,USB-C Charging Cable,1,11.95,2019-12-26 09:14:00,171 Adams St, Los Angeles,CA,90001 +315300,34in Ultrawide Monitor,1,379.99,2019-12-25 10:14:00,423 Willow St, Seattle,WA,98101 +315301,ThinkPad Laptop,1,999.99,2019-12-21 16:57:00,582 Adams St, Los Angeles,CA,90001 +315302,Wired Headphones,1,11.99,2019-12-10 08:43:00,826 Spruce St, Austin,TX,73301 +315303,Lightning Charging Cable,1,14.95,2019-12-08 20:03:00,384 1st St, Dallas,TX,75001 +315304,Bose SoundSport Headphones,1,99.99,2019-12-29 12:20:00,158 Madison St, Portland,OR,97035 +315305,iPhone,1,700.0,2019-12-13 14:16:00,366 1st St, Los Angeles,CA,90001 +315306,USB-C Charging Cable,1,11.95,2019-12-21 16:51:00,315 Jefferson St, Dallas,TX,75001 +315307,Apple Airpods Headphones,1,150.0,2019-12-06 20:03:00,691 Washington St, Atlanta,GA,30301 +315308,AA Batteries (4-pack),1,3.84,2019-12-21 01:52:00,170 4th St, Boston,MA,02215 +315309,Bose SoundSport Headphones,1,99.99,2019-12-11 21:08:00,845 5th St, San Francisco,CA,94016 +315310,AAA Batteries (4-pack),2,2.99,2019-12-17 21:59:00,993 11th St, Portland,ME,04101 +315311,20in Monitor,1,109.99,2019-12-10 19:53:00,334 Lake St, New York City,NY,10001 +315312,Wired Headphones,1,11.99,2019-12-18 12:55:00,958 Willow St, Austin,TX,73301 +315313,AAA Batteries (4-pack),1,2.99,2019-12-07 18:21:00,804 Lakeview St, Los Angeles,CA,90001 +315314,USB-C Charging Cable,1,11.95,2019-12-12 00:58:00,930 Ridge St, Los Angeles,CA,90001 +315315,27in 4K Gaming Monitor,1,389.99,2020-01-01 01:22:00,552 North St, Austin,TX,73301 +315316,20in Monitor,1,109.99,2019-12-05 12:08:00,364 6th St, Dallas,TX,75001 +315317,AAA Batteries (4-pack),2,2.99,2019-12-03 10:12:00,19 South St, Dallas,TX,75001 +315318,27in FHD Monitor,1,149.99,2019-12-07 10:05:00,444 13th St, New York City,NY,10001 +315319,Apple Airpods Headphones,1,150.0,2019-12-07 23:02:00,560 North St, Austin,TX,73301 +315320,34in Ultrawide Monitor,1,379.99,2019-12-30 10:06:00,76 Jefferson St, Los Angeles,CA,90001 +315321,AAA Batteries (4-pack),2,2.99,2019-12-22 20:34:00,170 12th St, Atlanta,GA,30301 +315322,Google Phone,1,600.0,2019-12-23 08:46:00,741 Wilson St, San Francisco,CA,94016 +315322,USB-C Charging Cable,2,11.95,2019-12-23 08:46:00,741 Wilson St, San Francisco,CA,94016 +315323,AA Batteries (4-pack),1,3.84,2019-12-03 07:25:00,568 9th St, Boston,MA,02215 +315324,34in Ultrawide Monitor,1,379.99,2019-12-22 13:00:00,998 Dogwood St, Austin,TX,73301 +315325,AAA Batteries (4-pack),2,2.99,2019-12-30 22:22:00,70 Highland St, Los Angeles,CA,90001 +315326,AAA Batteries (4-pack),2,2.99,2019-12-03 12:07:00,213 Wilson St, Los Angeles,CA,90001 +315327,USB-C Charging Cable,1,11.95,2019-12-22 06:45:00,641 Chestnut St, San Francisco,CA,94016 +315328,Bose SoundSport Headphones,1,99.99,2019-12-22 09:13:00,217 Walnut St, Seattle,WA,98101 +315329,AAA Batteries (4-pack),2,2.99,2019-12-07 22:08:00,474 Hickory St, Dallas,TX,75001 +315330,AAA Batteries (4-pack),1,2.99,2019-12-27 18:36:00,823 Jackson St, Atlanta,GA,30301 +315331,Vareebadd Phone,1,400.0,2019-12-30 22:27:00,567 Jackson St, Seattle,WA,98101 +315332,Google Phone,1,600.0,2019-12-29 19:16:00,639 Pine St, Dallas,TX,75001 +315332,Wired Headphones,1,11.99,2019-12-29 19:16:00,639 Pine St, Dallas,TX,75001 +315333,Vareebadd Phone,1,400.0,2019-12-25 17:12:00,980 Maple St, Portland,ME,04101 +315334,Macbook Pro Laptop,1,1700.0,2019-12-06 07:10:00,295 North St, Seattle,WA,98101 +315335,Apple Airpods Headphones,1,150.0,2019-12-05 10:10:00,607 6th St, Portland,OR,97035 +315336,Lightning Charging Cable,1,14.95,2019-12-04 11:33:00,456 14th St, New York City,NY,10001 +315337,20in Monitor,1,109.99,2019-12-11 13:29:00,37 Jefferson St, San Francisco,CA,94016 +315338,27in 4K Gaming Monitor,1,389.99,2019-12-08 22:39:00,346 Jefferson St, San Francisco,CA,94016 +315339,AAA Batteries (4-pack),1,2.99,2019-12-23 17:29:00,952 Cherry St, San Francisco,CA,94016 +315340,AAA Batteries (4-pack),1,2.99,2019-12-14 21:23:00,229 Lincoln St, Boston,MA,02215 +315341,20in Monitor,1,109.99,2019-12-16 15:22:00,567 8th St, Portland,ME,04101 +315342,Lightning Charging Cable,1,14.95,2019-12-14 16:41:00,13 River St, San Francisco,CA,94016 +315343,Bose SoundSport Headphones,1,99.99,2019-12-21 21:10:00,257 Pine St, Dallas,TX,75001 +315344,USB-C Charging Cable,1,11.95,2019-12-20 00:38:00,742 7th St, Boston,MA,02215 +315345,Bose SoundSport Headphones,1,99.99,2019-12-26 08:00:00,921 12th St, Seattle,WA,98101 +315346,Lightning Charging Cable,1,14.95,2019-12-12 16:44:00,826 5th St, Portland,OR,97035 +315347,Google Phone,1,600.0,2019-12-19 12:37:00,445 10th St, San Francisco,CA,94016 +315348,Apple Airpods Headphones,1,150.0,2019-12-06 14:25:00,945 11th St, Atlanta,GA,30301 +315349,Lightning Charging Cable,1,14.95,2019-12-10 22:30:00,524 Meadow St, Atlanta,GA,30301 +315350,Lightning Charging Cable,1,14.95,2019-12-16 21:58:00,853 Lakeview St, Boston,MA,02215 +315351,LG Washing Machine,1,600.0,2019-12-24 18:25:00,729 5th St, Boston,MA,02215 +315352,Lightning Charging Cable,1,14.95,2019-12-23 11:23:00,545 Spruce St, San Francisco,CA,94016 +315353,27in 4K Gaming Monitor,1,389.99,2019-12-18 17:16:00,35 Main St, Seattle,WA,98101 +315354,Lightning Charging Cable,1,14.95,2019-12-11 19:28:00,311 Cherry St, Boston,MA,02215 +315354,AA Batteries (4-pack),1,3.84,2019-12-11 19:28:00,311 Cherry St, Boston,MA,02215 +315355,AAA Batteries (4-pack),2,2.99,2019-12-13 19:00:00,888 Elm St, New York City,NY,10001 +315356,AA Batteries (4-pack),3,3.84,2019-12-25 20:35:00,268 Meadow St, San Francisco,CA,94016 +315357,iPhone,1,700.0,2019-12-24 08:02:00,162 Chestnut St, Portland,OR,97035 +315358,Wired Headphones,1,11.99,2019-12-12 21:16:00,535 Johnson St, Seattle,WA,98101 +315358,Bose SoundSport Headphones,1,99.99,2019-12-12 21:16:00,535 Johnson St, Seattle,WA,98101 +315359,AA Batteries (4-pack),1,3.84,2019-12-26 13:28:00,396 Walnut St, New York City,NY,10001 +315360,AAA Batteries (4-pack),2,2.99,2019-12-28 16:45:00,370 Adams St, San Francisco,CA,94016 +315361,Lightning Charging Cable,2,14.95,2019-12-16 16:15:00,316 Hickory St, New York City,NY,10001 +315362,AAA Batteries (4-pack),1,2.99,2019-12-02 11:07:00,247 Maple St, New York City,NY,10001 +315363,AAA Batteries (4-pack),1,2.99,2019-12-20 10:45:00,456 Adams St, San Francisco,CA,94016 +315364,AA Batteries (4-pack),2,3.84,2019-12-04 15:34:00,328 Wilson St, Dallas,TX,75001 +315365,Flatscreen TV,1,300.0,2019-12-11 19:25:00,765 Dogwood St, San Francisco,CA,94016 +315366,Apple Airpods Headphones,1,150.0,2019-12-02 22:29:00,243 Madison St, San Francisco,CA,94016 +315367,USB-C Charging Cable,1,11.95,2019-12-21 14:42:00,398 Dogwood St, Los Angeles,CA,90001 +315368,34in Ultrawide Monitor,1,379.99,2019-12-22 14:38:00,409 Johnson St, Dallas,TX,75001 +315369,AAA Batteries (4-pack),3,2.99,2019-12-13 21:19:00,564 Hill St, New York City,NY,10001 +315370,AAA Batteries (4-pack),2,2.99,2019-12-20 23:47:00,789 9th St, Boston,MA,02215 +315371,Vareebadd Phone,1,400.0,2019-12-27 10:17:00,715 Center St, Los Angeles,CA,90001 +315372,Bose SoundSport Headphones,1,99.99,2019-12-20 19:40:00,658 Johnson St, Dallas,TX,75001 +315373,AAA Batteries (4-pack),1,2.99,2019-12-20 18:42:00,485 11th St, San Francisco,CA,94016 +315374,Wired Headphones,1,11.99,2019-12-08 17:19:00,265 South St, Austin,TX,73301 +315375,Lightning Charging Cable,1,14.95,2019-12-25 07:59:00,814 Hill St, San Francisco,CA,94016 +315376,AA Batteries (4-pack),2,3.84,2019-12-17 09:35:00,898 West St, Portland,OR,97035 +315377,Wired Headphones,1,11.99,2019-12-15 22:09:00,398 13th St, Atlanta,GA,30301 +315378,AA Batteries (4-pack),1,3.84,2019-12-19 07:34:00,549 Elm St, Austin,TX,73301 +315379,Wired Headphones,1,11.99,2019-12-06 16:12:00,168 2nd St, San Francisco,CA,94016 +315380,27in FHD Monitor,1,149.99,2019-12-29 18:57:00,943 Sunset St, Atlanta,GA,30301 +315381,Apple Airpods Headphones,1,150.0,2019-12-28 20:30:00,447 Lake St, New York City,NY,10001 +315382,USB-C Charging Cable,1,11.95,2019-12-19 19:13:00,378 Dogwood St, Dallas,TX,75001 +315383,Flatscreen TV,1,300.0,2019-12-31 17:57:00,44 Walnut St, Atlanta,GA,30301 +315384,AAA Batteries (4-pack),1,2.99,2019-12-10 18:49:00,132 6th St, Dallas,TX,75001 +315385,20in Monitor,1,109.99,2019-12-11 11:00:00,290 Jackson St, New York City,NY,10001 +315386,Macbook Pro Laptop,1,1700.0,2019-12-30 20:36:00,81 Jefferson St, San Francisco,CA,94016 +315386,Apple Airpods Headphones,1,150.0,2019-12-30 20:36:00,81 Jefferson St, San Francisco,CA,94016 +315387,Wired Headphones,1,11.99,2019-12-16 12:24:00,114 4th St, Seattle,WA,98101 +315388,USB-C Charging Cable,1,11.95,2019-12-14 06:59:00,159 Ridge St, Boston,MA,02215 +315389,Apple Airpods Headphones,1,150.0,2019-12-03 08:21:00,607 Washington St, Portland,OR,97035 +315390,Google Phone,1,600.0,2019-12-08 23:05:00,780 7th St, New York City,NY,10001 +315390,Bose SoundSport Headphones,1,99.99,2019-12-08 23:05:00,780 7th St, New York City,NY,10001 +315390,Wired Headphones,1,11.99,2019-12-08 23:05:00,780 7th St, New York City,NY,10001 +315391,Apple Airpods Headphones,1,150.0,2019-12-01 18:43:00,558 7th St, Dallas,TX,75001 +315392,Apple Airpods Headphones,1,150.0,2019-12-22 21:56:00,838 9th St, Portland,OR,97035 +315393,ThinkPad Laptop,1,999.99,2019-12-27 12:26:00,895 6th St, Boston,MA,02215 +315394,Wired Headphones,1,11.99,2019-12-21 16:34:00,68 7th St, San Francisco,CA,94016 +315395,27in 4K Gaming Monitor,1,389.99,2019-12-22 12:26:00,105 North St, Los Angeles,CA,90001 +315396,Bose SoundSport Headphones,1,99.99,2019-12-28 11:50:00,284 Johnson St, Boston,MA,02215 +315397,Flatscreen TV,1,300.0,2019-12-29 19:37:00,902 12th St, New York City,NY,10001 +315398,Apple Airpods Headphones,1,150.0,2019-12-06 12:27:00,977 Church St, Atlanta,GA,30301 +315399,Bose SoundSport Headphones,1,99.99,2019-12-21 10:35:00,102 Madison St, San Francisco,CA,94016 +315400,AA Batteries (4-pack),2,3.84,2019-12-31 08:09:00,660 Walnut St, Austin,TX,73301 +315401,Bose SoundSport Headphones,1,99.99,2019-12-31 13:48:00,995 7th St, New York City,NY,10001 +315402,27in 4K Gaming Monitor,1,389.99,2019-12-15 11:05:00,790 Dogwood St, New York City,NY,10001 +315403,AAA Batteries (4-pack),2,2.99,2019-12-15 06:37:00,393 Meadow St, Boston,MA,02215 +315404,iPhone,1,700.0,2019-12-08 19:22:00,200 Elm St, New York City,NY,10001 +315405,Vareebadd Phone,1,400.0,2019-12-30 21:54:00,865 13th St, Los Angeles,CA,90001 +315405,USB-C Charging Cable,1,11.95,2019-12-30 21:54:00,865 13th St, Los Angeles,CA,90001 +315406,USB-C Charging Cable,1,11.95,2019-12-14 13:46:00,329 Wilson St, Los Angeles,CA,90001 +315407,Bose SoundSport Headphones,1,99.99,2019-12-01 05:36:00,637 Church St, New York City,NY,10001 +315408,AA Batteries (4-pack),2,3.84,2019-12-20 11:43:00,56 14th St, Seattle,WA,98101 +315409,Lightning Charging Cable,1,14.95,2019-12-30 13:21:00,550 7th St, Austin,TX,73301 +315410,USB-C Charging Cable,1,11.95,2019-12-26 17:52:00,445 10th St, Boston,MA,02215 +315411,USB-C Charging Cable,1,11.95,2019-12-05 17:28:00,227 Adams St, Atlanta,GA,30301 +315412,AA Batteries (4-pack),1,3.84,2019-12-13 12:36:00,415 North St, Boston,MA,02215 +315413,AAA Batteries (4-pack),2,2.99,2019-12-30 09:21:00,569 12th St, Seattle,WA,98101 +315414,Vareebadd Phone,1,400.0,2019-12-09 23:48:00,141 1st St, Seattle,WA,98101 +315415,Flatscreen TV,1,300.0,2019-12-03 12:35:00,409 North St, Los Angeles,CA,90001 +315416,USB-C Charging Cable,1,11.95,2019-12-29 19:21:00,276 Forest St, New York City,NY,10001 +315417,AA Batteries (4-pack),1,3.84,2019-12-23 20:45:00,121 2nd St, Dallas,TX,75001 +315418,Bose SoundSport Headphones,1,99.99,2019-12-20 17:38:00,204 9th St, San Francisco,CA,94016 +315419,Google Phone,1,600.0,2019-12-30 09:21:00,371 South St, Los Angeles,CA,90001 +315419,USB-C Charging Cable,1,11.95,2019-12-30 09:21:00,371 South St, Los Angeles,CA,90001 +315420,AAA Batteries (4-pack),1,2.99,2019-12-03 20:36:00,558 Wilson St, New York City,NY,10001 +315421,iPhone,1,700.0,2019-12-08 16:47:00,305 Jackson St, Los Angeles,CA,90001 +315422,Wired Headphones,1,11.99,2019-12-17 10:20:00,954 Highland St, Dallas,TX,75001 +315423,USB-C Charging Cable,1,11.95,2019-12-26 19:01:00,3 Wilson St, San Francisco,CA,94016 +315424,Flatscreen TV,1,300.0,2019-12-20 15:21:00,696 Jackson St, New York City,NY,10001 +315425,Lightning Charging Cable,1,14.95,2019-12-02 23:24:00,995 River St, Los Angeles,CA,90001 +315426,USB-C Charging Cable,1,11.95,2019-12-09 13:02:00,745 Chestnut St, San Francisco,CA,94016 +315427,Lightning Charging Cable,1,14.95,2019-12-21 19:58:00,162 Willow St, San Francisco,CA,94016 +315428,Lightning Charging Cable,1,14.95,2019-12-16 15:42:00,485 14th St, Dallas,TX,75001 +315429,Lightning Charging Cable,1,14.95,2019-12-30 11:23:00,230 Cedar St, Dallas,TX,75001 +315430,Apple Airpods Headphones,1,150.0,2019-12-03 11:11:00,195 10th St, Austin,TX,73301 +315431,27in 4K Gaming Monitor,1,389.99,2019-12-18 22:47:00,950 7th St, Boston,MA,02215 +315432,27in FHD Monitor,1,149.99,2019-12-19 15:47:00,915 Maple St, Portland,OR,97035 +315433,27in FHD Monitor,1,149.99,2019-12-28 21:52:00,721 Pine St, Boston,MA,02215 +315434,Google Phone,1,600.0,2019-12-20 19:05:00,526 10th St, Atlanta,GA,30301 +315435,Macbook Pro Laptop,1,1700.0,2019-12-05 20:09:00,703 13th St, Seattle,WA,98101 +315436,27in FHD Monitor,1,149.99,2019-12-19 20:57:00,449 Washington St, Portland,OR,97035 +315437,USB-C Charging Cable,1,11.95,2019-12-17 20:26:00,119 Lake St, Atlanta,GA,30301 +315438,20in Monitor,1,109.99,2019-12-02 13:56:00,394 13th St, New York City,NY,10001 +315439,AAA Batteries (4-pack),3,2.99,2019-12-06 07:52:00,436 Highland St, San Francisco,CA,94016 +315440,AA Batteries (4-pack),1,3.84,2019-12-05 13:14:00,811 Wilson St, Seattle,WA,98101 +315441,Google Phone,1,600.0,2019-12-05 12:22:00,305 Lakeview St, Portland,OR,97035 +315442,20in Monitor,1,109.99,2019-12-26 10:50:00,711 Park St, San Francisco,CA,94016 +315443,USB-C Charging Cable,1,11.95,2019-12-15 15:41:00,198 Chestnut St, Los Angeles,CA,90001 +315444,20in Monitor,1,109.99,2019-12-24 10:09:00,311 Ridge St, San Francisco,CA,94016 +315445,Lightning Charging Cable,1,14.95,2019-12-22 11:12:00,562 10th St, San Francisco,CA,94016 +315446,20in Monitor,1,109.99,2019-12-25 18:53:00,855 Ridge St, Austin,TX,73301 +315447,Lightning Charging Cable,2,14.95,2019-12-03 15:16:00,583 1st St, Dallas,TX,75001 +315448,27in FHD Monitor,1,149.99,2019-12-08 07:12:00,17 Dogwood St, Portland,OR,97035 +315449,Lightning Charging Cable,1,14.95,2019-12-31 14:47:00,832 Willow St, San Francisco,CA,94016 +315450,ThinkPad Laptop,1,999.99,2019-12-10 19:30:00,468 Lakeview St, Boston,MA,02215 +315451,Apple Airpods Headphones,1,150.0,2019-12-11 22:52:00,721 Center St, New York City,NY,10001 +315452,Lightning Charging Cable,1,14.95,2019-12-21 18:57:00,529 Meadow St, Boston,MA,02215 +315453,USB-C Charging Cable,1,11.95,2019-12-25 10:45:00,874 9th St, Boston,MA,02215 +315454,20in Monitor,1,109.99,2019-12-27 09:53:00,120 Lakeview St, New York City,NY,10001 +315455,20in Monitor,1,109.99,2019-12-22 14:15:00,469 10th St, San Francisco,CA,94016 +315456,AA Batteries (4-pack),1,3.84,2019-12-10 21:03:00,528 Chestnut St, Boston,MA,02215 +315457,Wired Headphones,1,11.99,2019-12-01 12:21:00,65 River St, San Francisco,CA,94016 +315458,Google Phone,1,600.0,2019-12-25 12:53:00,592 Wilson St, Atlanta,GA,30301 +315458,USB-C Charging Cable,1,11.95,2019-12-25 12:53:00,592 Wilson St, Atlanta,GA,30301 +315459,34in Ultrawide Monitor,1,379.99,2019-12-15 06:46:00,22 Meadow St, San Francisco,CA,94016 +315460,Vareebadd Phone,1,400.0,2019-12-16 17:19:00,696 North St, Los Angeles,CA,90001 +315460,USB-C Charging Cable,1,11.95,2019-12-16 17:19:00,696 North St, Los Angeles,CA,90001 +315461,Vareebadd Phone,1,400.0,2019-12-24 15:07:00,147 Cedar St, New York City,NY,10001 +315462,Flatscreen TV,1,300.0,2019-12-03 16:47:00,514 Church St, Austin,TX,73301 +315463,AAA Batteries (4-pack),1,2.99,2019-12-20 12:25:00,13 Madison St, San Francisco,CA,94016 +315464,27in FHD Monitor,1,149.99,2019-12-07 00:11:00,670 13th St, Atlanta,GA,30301 +315465,Vareebadd Phone,1,400.0,2019-12-22 10:45:00,294 Cedar St, San Francisco,CA,94016 +315466,USB-C Charging Cable,1,11.95,2019-12-02 17:13:00,562 Church St, Los Angeles,CA,90001 +315467,AAA Batteries (4-pack),1,2.99,2019-12-01 18:15:00,697 6th St, Seattle,WA,98101 +315468,AA Batteries (4-pack),2,3.84,2019-12-02 18:33:00,347 14th St, San Francisco,CA,94016 +315469,ThinkPad Laptop,1,999.99,2019-12-10 22:17:00,244 Lincoln St, New York City,NY,10001 +315470,Bose SoundSport Headphones,1,99.99,2019-12-06 09:15:00,419 Chestnut St, Dallas,TX,75001 +315471,USB-C Charging Cable,1,11.95,2019-12-04 13:55:00,751 Cherry St, New York City,NY,10001 +315472,Wired Headphones,1,11.99,2019-12-17 13:21:00,724 Walnut St, San Francisco,CA,94016 +315473,27in 4K Gaming Monitor,1,389.99,2019-12-21 08:21:00,243 Wilson St, Austin,TX,73301 +315474,USB-C Charging Cable,1,11.95,2019-12-29 12:34:00,845 Sunset St, Seattle,WA,98101 +315475,AA Batteries (4-pack),2,3.84,2019-12-11 13:24:00,564 River St, Boston,MA,02215 +315476,Flatscreen TV,1,300.0,2019-12-19 11:25:00,663 4th St, San Francisco,CA,94016 +315477,Google Phone,1,600.0,2019-12-26 14:14:00,705 Maple St, Seattle,WA,98101 +315477,Bose SoundSport Headphones,1,99.99,2019-12-26 14:14:00,705 Maple St, Seattle,WA,98101 +315478,Apple Airpods Headphones,1,150.0,2019-12-22 21:26:00,477 2nd St, Seattle,WA,98101 +315479,AAA Batteries (4-pack),1,2.99,2019-12-17 20:48:00,100 Dogwood St, San Francisco,CA,94016 +315480,AA Batteries (4-pack),1,3.84,2019-12-28 10:48:00,36 Jefferson St, Atlanta,GA,30301 +315481,Lightning Charging Cable,1,14.95,2019-12-05 10:13:00,724 Forest St, Los Angeles,CA,90001 +315482,Wired Headphones,1,11.99,2019-12-02 18:46:00,693 Chestnut St, San Francisco,CA,94016 +315483,Vareebadd Phone,1,400.0,2019-12-29 20:00:00,631 12th St, San Francisco,CA,94016 +315484,Bose SoundSport Headphones,1,99.99,2019-12-24 22:02:00,896 Elm St, Los Angeles,CA,90001 +315484,Lightning Charging Cable,1,14.95,2019-12-24 22:02:00,896 Elm St, Los Angeles,CA,90001 +315485,AA Batteries (4-pack),1,3.84,2019-12-18 15:24:00,783 Willow St, San Francisco,CA,94016 +315485,Lightning Charging Cable,1,14.95,2019-12-18 15:24:00,783 Willow St, San Francisco,CA,94016 +315486,AAA Batteries (4-pack),1,2.99,2019-12-20 10:17:00,780 South St, New York City,NY,10001 +315487,AA Batteries (4-pack),1,3.84,2019-12-07 11:01:00,599 Lakeview St, New York City,NY,10001 +315488,AA Batteries (4-pack),1,3.84,2019-12-30 19:38:00,891 Willow St, Seattle,WA,98101 +315489,Apple Airpods Headphones,1,150.0,2019-12-19 15:21:00,91 Highland St, Los Angeles,CA,90001 +315490,Macbook Pro Laptop,1,1700.0,2019-12-16 12:42:00,425 Cedar St, San Francisco,CA,94016 +315491,34in Ultrawide Monitor,1,379.99,2019-12-10 12:33:00,664 Lincoln St, San Francisco,CA,94016 +315492,34in Ultrawide Monitor,1,379.99,2019-12-08 23:03:00,990 Jackson St, New York City,NY,10001 +315493,Lightning Charging Cable,1,14.95,2019-12-05 18:52:00,156 Hill St, New York City,NY,10001 +315494,USB-C Charging Cable,1,11.95,2019-12-25 01:04:00,70 Hill St, Portland,OR,97035 +315495,Bose SoundSport Headphones,1,99.99,2019-12-05 22:10:00,799 South St, San Francisco,CA,94016 +315496,Wired Headphones,1,11.99,2019-12-23 09:38:00,636 Park St, Dallas,TX,75001 +315497,Wired Headphones,1,11.99,2019-12-02 14:55:00,145 Johnson St, San Francisco,CA,94016 +315498,27in 4K Gaming Monitor,1,389.99,2019-12-21 01:55:00,106 Madison St, San Francisco,CA,94016 +315499,Lightning Charging Cable,1,14.95,2019-12-21 11:06:00,285 1st St, Seattle,WA,98101 +315500,Wired Headphones,1,11.99,2019-12-23 17:45:00,5 North St, Seattle,WA,98101 +315501,Wired Headphones,1,11.99,2019-12-01 04:10:00,588 Lincoln St, Boston,MA,02215 +315502,Lightning Charging Cable,1,14.95,2019-12-09 12:18:00,57 Meadow St, Los Angeles,CA,90001 +315503,Bose SoundSport Headphones,1,99.99,2019-12-23 14:43:00,621 Lincoln St, Boston,MA,02215 +315504,USB-C Charging Cable,1,11.95,2019-12-27 18:35:00,431 Wilson St, Los Angeles,CA,90001 +315505,Lightning Charging Cable,1,14.95,2019-12-23 16:59:00,579 Center St, San Francisco,CA,94016 +315506,Flatscreen TV,1,300.0,2019-12-28 12:48:00,62 11th St, San Francisco,CA,94016 +315507,20in Monitor,1,109.99,2019-12-05 15:10:00,213 Lake St, Dallas,TX,75001 +315508,34in Ultrawide Monitor,1,379.99,2019-12-19 18:23:00,977 1st St, New York City,NY,10001 +315509,iPhone,1,700.0,2019-12-02 08:47:00,941 12th St, New York City,NY,10001 +315510,USB-C Charging Cable,1,11.95,2019-12-05 12:17:00,368 Cedar St, New York City,NY,10001 +315511,20in Monitor,1,109.99,2019-12-17 14:07:00,560 Jefferson St, New York City,NY,10001 +315512,27in 4K Gaming Monitor,1,389.99,2019-12-20 09:17:00,290 Walnut St, Dallas,TX,75001 +315513,AAA Batteries (4-pack),1,2.99,2019-12-25 12:45:00,129 1st St, Seattle,WA,98101 +315514,USB-C Charging Cable,1,11.95,2019-12-20 20:22:00,17 West St, Los Angeles,CA,90001 +315515,Apple Airpods Headphones,1,150.0,2019-12-23 16:05:00,637 11th St, New York City,NY,10001 +315516,Lightning Charging Cable,2,14.95,2019-12-12 10:04:00,84 Cedar St, Boston,MA,02215 +315517,Apple Airpods Headphones,1,150.0,2019-12-07 14:29:00,300 Johnson St, Seattle,WA,98101 +315518,Lightning Charging Cable,1,14.95,2019-12-19 09:02:00,314 Dogwood St, San Francisco,CA,94016 +315519,Wired Headphones,1,11.99,2019-12-13 22:39:00,436 Forest St, San Francisco,CA,94016 +315520,LG Dryer,1,600.0,2019-12-31 09:06:00,705 2nd St, Austin,TX,73301 +315521,Bose SoundSport Headphones,1,99.99,2019-12-13 07:06:00,967 9th St, Austin,TX,73301 +315522,AA Batteries (4-pack),2,3.84,2019-12-27 10:28:00,918 Walnut St, Los Angeles,CA,90001 +315523,AA Batteries (4-pack),1,3.84,2019-12-06 13:41:00,573 West St, San Francisco,CA,94016 +315524,Flatscreen TV,1,300.0,2019-12-03 09:57:00,489 Madison St, Seattle,WA,98101 +315525,USB-C Charging Cable,1,11.95,2019-12-25 10:56:00,796 Washington St, Atlanta,GA,30301 +315526,AA Batteries (4-pack),2,3.84,2019-12-15 21:04:00,845 Jackson St, Austin,TX,73301 +315527,27in FHD Monitor,1,149.99,2019-12-02 11:26:00,451 South St, Portland,OR,97035 +315528,USB-C Charging Cable,1,11.95,2019-12-19 20:32:00,9 Willow St, Atlanta,GA,30301 +315529,Google Phone,1,600.0,2019-12-04 09:09:00,396 West St, San Francisco,CA,94016 +315529,USB-C Charging Cable,1,11.95,2019-12-04 09:09:00,396 West St, San Francisco,CA,94016 +315530,USB-C Charging Cable,1,11.95,2019-12-28 23:16:00,980 5th St, Atlanta,GA,30301 +315531,27in FHD Monitor,1,149.99,2019-12-14 22:29:00,440 12th St, Boston,MA,02215 +315532,Lightning Charging Cable,1,14.95,2019-12-20 08:50:00,786 10th St, Los Angeles,CA,90001 +315533,AA Batteries (4-pack),1,3.84,2019-12-15 19:22:00,640 Madison St, San Francisco,CA,94016 +315534,AAA Batteries (4-pack),3,2.99,2019-12-25 20:12:00,327 7th St, Los Angeles,CA,90001 +315535,34in Ultrawide Monitor,1,379.99,2019-12-07 14:48:00,141 Cedar St, Dallas,TX,75001 +315536,Bose SoundSport Headphones,1,99.99,2019-12-05 18:11:00,330 Main St, Portland,OR,97035 +315537,Lightning Charging Cable,1,14.95,2019-12-10 18:40:00,576 6th St, San Francisco,CA,94016 +315538,Macbook Pro Laptop,1,1700.0,2019-12-18 23:56:00,633 North St, Dallas,TX,75001 +315539,AAA Batteries (4-pack),2,2.99,2019-12-11 09:10:00,826 Willow St, San Francisco,CA,94016 +315540,AA Batteries (4-pack),5,3.84,2019-12-14 18:35:00,35 Lake St, San Francisco,CA,94016 +315541,USB-C Charging Cable,1,11.95,2019-12-08 22:35:00,610 14th St, New York City,NY,10001 +315542,Google Phone,1,600.0,2019-12-31 11:17:00,910 West St, Boston,MA,02215 +315543,AAA Batteries (4-pack),1,2.99,2019-12-01 20:04:00,655 River St, Atlanta,GA,30301 +315544,USB-C Charging Cable,2,11.95,2019-12-16 13:43:00,104 12th St, Los Angeles,CA,90001 +315545,Bose SoundSport Headphones,1,99.99,2019-12-27 18:17:00,553 14th St, New York City,NY,10001 +315546,Wired Headphones,1,11.99,2019-12-11 01:13:00,615 West St, New York City,NY,10001 +315547,27in 4K Gaming Monitor,1,389.99,2019-12-25 23:54:00,113 Cedar St, San Francisco,CA,94016 +315548,USB-C Charging Cable,1,11.95,2019-12-22 10:20:00,558 Lake St, Austin,TX,73301 +315549,Bose SoundSport Headphones,1,99.99,2019-12-24 19:03:00,294 Chestnut St, Seattle,WA,98101 +315550,Apple Airpods Headphones,1,150.0,2019-12-26 12:37:00,707 Lakeview St, Los Angeles,CA,90001 +315551,Bose SoundSport Headphones,1,99.99,2019-12-23 09:39:00,515 Cedar St, Boston,MA,02215 +315552,USB-C Charging Cable,1,11.95,2019-12-10 08:56:00,375 6th St, Dallas,TX,75001 +315553,27in FHD Monitor,1,149.99,2019-12-01 10:36:00,411 Church St, Los Angeles,CA,90001 +315554,ThinkPad Laptop,1,999.99,2019-12-31 10:17:00,905 Center St, Los Angeles,CA,90001 +315555,34in Ultrawide Monitor,1,379.99,2019-12-09 16:00:00,679 Park St, Los Angeles,CA,90001 +315556,Macbook Pro Laptop,1,1700.0,2019-12-21 17:57:00,145 11th St, New York City,NY,10001 +315557,ThinkPad Laptop,1,999.99,2019-12-18 19:17:00,689 7th St, Los Angeles,CA,90001 +315558,AA Batteries (4-pack),1,3.84,2019-12-07 13:04:00,819 Willow St, San Francisco,CA,94016 +315559,USB-C Charging Cable,1,11.95,2019-12-10 00:07:00,572 South St, New York City,NY,10001 +315560,Apple Airpods Headphones,1,150.0,2019-12-29 22:18:00,416 Madison St, New York City,NY,10001 +315561,AA Batteries (4-pack),1,3.84,2019-12-21 18:21:00,90 Park St, San Francisco,CA,94016 +315562,AAA Batteries (4-pack),2,2.99,2019-12-02 19:02:00,104 10th St, Austin,TX,73301 +315563,Flatscreen TV,1,300.0,2019-12-01 13:44:00,880 Cedar St, Atlanta,GA,30301 +315564,AA Batteries (4-pack),1,3.84,2019-12-03 17:47:00,945 Spruce St, Boston,MA,02215 +315565,AAA Batteries (4-pack),2,2.99,2019-12-06 21:29:00,744 13th St, San Francisco,CA,94016 +315566,AAA Batteries (4-pack),1,2.99,2019-12-12 17:12:00,532 10th St, San Francisco,CA,94016 +315567,AAA Batteries (4-pack),1,2.99,2019-12-02 14:06:00,304 2nd St, Los Angeles,CA,90001 +315568,34in Ultrawide Monitor,1,379.99,2019-12-30 21:11:00,100 5th St, Boston,MA,02215 +315569,USB-C Charging Cable,1,11.95,2019-12-21 21:49:00,482 4th St, Boston,MA,02215 +315570,Wired Headphones,1,11.99,2019-12-25 15:23:00,340 Cherry St, Boston,MA,02215 +315571,Apple Airpods Headphones,1,150.0,2019-12-04 22:49:00,74 8th St, Portland,OR,97035 +315572,Wired Headphones,1,11.99,2019-12-19 18:40:00,135 Chestnut St, Los Angeles,CA,90001 +315573,Apple Airpods Headphones,1,150.0,2019-12-29 19:56:00,496 8th St, Seattle,WA,98101 +315574,Lightning Charging Cable,1,14.95,2019-12-20 05:47:00,187 Spruce St, San Francisco,CA,94016 +315575,Lightning Charging Cable,1,14.95,2019-12-28 18:28:00,763 Forest St, Atlanta,GA,30301 +315576,Wired Headphones,1,11.99,2019-12-13 18:06:00,619 Main St, Boston,MA,02215 +315577,Bose SoundSport Headphones,1,99.99,2019-12-09 19:50:00,602 Ridge St, New York City,NY,10001 +315578,27in FHD Monitor,1,149.99,2019-12-26 11:06:00,352 6th St, Los Angeles,CA,90001 +315579,Lightning Charging Cable,1,14.95,2019-12-24 11:31:00,367 11th St, San Francisco,CA,94016 +315580,iPhone,1,700.0,2019-12-27 17:46:00,432 Willow St, Los Angeles,CA,90001 +315581,AA Batteries (4-pack),1,3.84,2019-12-13 15:27:00,118 Walnut St, Boston,MA,02215 +315582,Lightning Charging Cable,1,14.95,2019-12-28 10:12:00,397 Cedar St, Austin,TX,73301 +315583,20in Monitor,1,109.99,2019-12-20 12:37:00,885 12th St, Los Angeles,CA,90001 +315584,AA Batteries (4-pack),1,3.84,2019-12-26 16:50:00,181 Pine St, New York City,NY,10001 +315585,AAA Batteries (4-pack),1,2.99,2019-12-13 18:42:00,646 1st St, San Francisco,CA,94016 +315586,Wired Headphones,1,11.99,2019-12-09 13:52:00,947 Jefferson St, Los Angeles,CA,90001 +315587,USB-C Charging Cable,3,11.95,2019-12-13 15:45:00,662 Spruce St, Atlanta,GA,30301 +315588,Apple Airpods Headphones,1,150.0,2019-12-19 13:23:00,326 Hickory St, Dallas,TX,75001 +315589,Lightning Charging Cable,1,14.95,2019-12-09 22:34:00,334 Church St, Atlanta,GA,30301 +315590,AAA Batteries (4-pack),2,2.99,2019-12-09 04:24:00,443 Hill St, San Francisco,CA,94016 +315591,Wired Headphones,1,11.99,2019-12-30 10:25:00,456 6th St, Los Angeles,CA,90001 +315592,AAA Batteries (4-pack),1,2.99,2019-12-08 00:09:00,245 Walnut St, San Francisco,CA,94016 +315593,Flatscreen TV,1,300.0,2019-12-12 21:10:00,447 Cedar St, San Francisco,CA,94016 +315594,Bose SoundSport Headphones,1,99.99,2019-12-16 16:57:00,829 River St, Boston,MA,02215 +315595,Apple Airpods Headphones,1,150.0,2019-12-26 22:46:00,564 South St, San Francisco,CA,94016 +315596,Google Phone,1,600.0,2019-12-14 13:42:00,82 13th St, Dallas,TX,75001 +315597,Apple Airpods Headphones,1,150.0,2019-12-05 20:11:00,703 10th St, Boston,MA,02215 +315598,27in FHD Monitor,1,149.99,2019-12-26 06:45:00,609 1st St, San Francisco,CA,94016 +315599,AA Batteries (4-pack),1,3.84,2019-12-11 16:08:00,837 11th St, Austin,TX,73301 +315600,Lightning Charging Cable,1,14.95,2019-12-28 17:22:00,163 Sunset St, Los Angeles,CA,90001 +315601,Lightning Charging Cable,1,14.95,2019-12-23 17:22:00,179 Hill St, Austin,TX,73301 +315602,Lightning Charging Cable,1,14.95,2019-12-29 12:44:00,835 1st St, Los Angeles,CA,90001 +315603,Lightning Charging Cable,1,14.95,2019-12-30 19:05:00,781 8th St, Austin,TX,73301 +315604,Macbook Pro Laptop,1,1700.0,2019-12-23 22:26:00,12 4th St, Los Angeles,CA,90001 +315605,Lightning Charging Cable,1,14.95,2019-12-11 22:33:00,664 West St, Boston,MA,02215 +315606,iPhone,1,700.0,2019-12-17 22:14:00,796 10th St, San Francisco,CA,94016 +315607,ThinkPad Laptop,1,999.99,2019-12-17 14:18:00,472 Elm St, New York City,NY,10001 +315608,Wired Headphones,1,11.99,2019-12-12 19:54:00,65 North St, San Francisco,CA,94016 +315609,AA Batteries (4-pack),1,3.84,2019-12-07 13:53:00,540 Lincoln St, San Francisco,CA,94016 +315610,Macbook Pro Laptop,1,1700.0,2019-12-18 20:36:00,178 Adams St, Seattle,WA,98101 +315611,USB-C Charging Cable,1,11.95,2019-12-21 21:03:00,924 North St, Austin,TX,73301 +315612,Lightning Charging Cable,1,14.95,2019-12-29 07:30:00,541 Elm St, New York City,NY,10001 +315613,ThinkPad Laptop,1,999.99,2019-12-06 12:54:00,454 7th St, Portland,OR,97035 +315614,Bose SoundSport Headphones,1,99.99,2019-12-14 02:39:00,726 Lincoln St, San Francisco,CA,94016 +315615,AAA Batteries (4-pack),2,2.99,2019-12-06 15:36:00,920 Ridge St, Seattle,WA,98101 +315616,Apple Airpods Headphones,1,150.0,2019-12-07 22:30:00,78 8th St, Los Angeles,CA,90001 +315617,Apple Airpods Headphones,1,150.0,2019-12-20 12:13:00,486 Adams St, Boston,MA,02215 +315618,Apple Airpods Headphones,1,150.0,2019-12-05 13:59:00,390 Elm St, Los Angeles,CA,90001 +315619,USB-C Charging Cable,2,11.95,2019-12-07 15:40:00,404 4th St, New York City,NY,10001 +315620,AA Batteries (4-pack),1,3.84,2019-12-31 15:29:00,483 Hickory St, San Francisco,CA,94016 +315621,AA Batteries (4-pack),1,3.84,2019-12-19 02:16:00,164 14th St, San Francisco,CA,94016 +315622,USB-C Charging Cable,1,11.95,2019-12-02 22:40:00,210 Hill St, Los Angeles,CA,90001 +315623,AA Batteries (4-pack),1,3.84,2019-12-12 14:10:00,910 Park St, Portland,OR,97035 +315624,AAA Batteries (4-pack),1,2.99,2019-12-05 17:02:00,72 West St, Los Angeles,CA,90001 +315625,AA Batteries (4-pack),1,3.84,2019-12-22 16:54:00,935 10th St, Portland,OR,97035 +315626,27in 4K Gaming Monitor,1,389.99,2019-12-04 23:27:00,885 Ridge St, San Francisco,CA,94016 +315627,AAA Batteries (4-pack),4,2.99,2019-12-02 23:40:00,29 8th St, Los Angeles,CA,90001 +315628,Apple Airpods Headphones,1,150.0,2019-12-11 08:00:00,705 Meadow St, Boston,MA,02215 +315629,Bose SoundSport Headphones,1,99.99,2019-12-28 13:35:00,46 Ridge St, Los Angeles,CA,90001 +315630,AAA Batteries (4-pack),1,2.99,2019-12-12 22:43:00,604 Jefferson St, Seattle,WA,98101 +315631,iPhone,1,700.0,2019-12-12 12:19:00,46 Maple St, Austin,TX,73301 +315632,Lightning Charging Cable,1,14.95,2019-12-05 20:19:00,796 Ridge St, Dallas,TX,75001 +315633,USB-C Charging Cable,1,11.95,2019-12-22 13:10:00,184 Center St, Seattle,WA,98101 +315634,Bose SoundSport Headphones,1,99.99,2019-12-12 22:23:00,625 River St, Seattle,WA,98101 +315635,27in 4K Gaming Monitor,1,389.99,2019-12-27 17:00:00,435 Cherry St, New York City,NY,10001 +315636,Apple Airpods Headphones,1,150.0,2019-12-25 15:44:00,718 2nd St, San Francisco,CA,94016 +315637,Flatscreen TV,1,300.0,2019-12-08 22:30:00,19 5th St, San Francisco,CA,94016 +315638,20in Monitor,1,109.99,2019-12-25 00:53:00,235 Chestnut St, Portland,OR,97035 +315639,27in 4K Gaming Monitor,1,389.99,2019-12-21 14:11:00,849 Meadow St, New York City,NY,10001 +315639,Lightning Charging Cable,1,14.95,2019-12-21 14:11:00,849 Meadow St, New York City,NY,10001 +315640,Bose SoundSport Headphones,1,99.99,2019-12-21 12:35:00,158 Forest St, Seattle,WA,98101 +315641,Wired Headphones,1,11.99,2019-12-05 18:35:00,177 Adams St, San Francisco,CA,94016 +315642,AA Batteries (4-pack),2,3.84,2019-12-10 14:08:00,48 Jefferson St, San Francisco,CA,94016 +315643,iPhone,1,700.0,2019-12-21 23:51:00,611 Lakeview St, Dallas,TX,75001 +315644,AAA Batteries (4-pack),2,2.99,2019-12-04 05:04:00,79 Madison St, San Francisco,CA,94016 +315645,USB-C Charging Cable,1,11.95,2019-12-23 10:25:00,211 4th St, San Francisco,CA,94016 +315646,AA Batteries (4-pack),1,3.84,2019-12-20 21:01:00,720 North St, Seattle,WA,98101 +315647,20in Monitor,1,109.99,2019-12-16 19:40:00,714 Johnson St, San Francisco,CA,94016 +315648,Lightning Charging Cable,1,14.95,2019-12-12 18:08:00,404 12th St, Portland,OR,97035 +315649,AA Batteries (4-pack),1,3.84,2019-12-04 21:12:00,651 Spruce St, San Francisco,CA,94016 +315650,Lightning Charging Cable,1,14.95,2019-12-22 12:36:00,131 Center St, San Francisco,CA,94016 +315651,Lightning Charging Cable,1,14.95,2019-12-13 07:09:00,508 Chestnut St, Atlanta,GA,30301 +315652,Flatscreen TV,1,300.0,2019-12-26 12:49:00,880 Church St, Austin,TX,73301 +315653,27in FHD Monitor,1,149.99,2019-12-10 19:25:00,521 Main St, Portland,ME,04101 +315654,Apple Airpods Headphones,1,150.0,2019-12-25 21:40:00,995 8th St, Portland,OR,97035 +315655,20in Monitor,1,109.99,2019-12-04 17:29:00,444 Johnson St, New York City,NY,10001 +315656,Lightning Charging Cable,1,14.95,2019-12-09 18:23:00,822 Adams St, Boston,MA,02215 +315657,27in FHD Monitor,1,149.99,2019-12-01 17:53:00,890 Jefferson St, San Francisco,CA,94016 +315658,Apple Airpods Headphones,1,150.0,2019-12-22 22:07:00,825 14th St, New York City,NY,10001 +315659,Apple Airpods Headphones,1,150.0,2019-12-16 11:04:00,825 11th St, Dallas,TX,75001 +315660,AA Batteries (4-pack),2,3.84,2019-12-09 19:31:00,926 South St, Seattle,WA,98101 +315661,Apple Airpods Headphones,1,150.0,2019-12-25 22:33:00,805 Hickory St, San Francisco,CA,94016 +315662,AAA Batteries (4-pack),1,2.99,2019-12-01 12:44:00,832 West St, New York City,NY,10001 +315663,27in FHD Monitor,1,149.99,2019-12-27 16:59:00,455 7th St, San Francisco,CA,94016 +315664,Flatscreen TV,1,300.0,2019-12-31 22:44:00,837 Meadow St, Seattle,WA,98101 +315665,USB-C Charging Cable,1,11.95,2019-12-08 11:23:00,552 Forest St, Los Angeles,CA,90001 +315666,Lightning Charging Cable,1,14.95,2019-12-22 18:02:00,506 Sunset St, San Francisco,CA,94016 +315667,USB-C Charging Cable,1,11.95,2019-12-20 09:59:00,238 Center St, Boston,MA,02215 +315668,AAA Batteries (4-pack),1,2.99,2019-12-09 15:40:00,345 12th St, New York City,NY,10001 +315669,Bose SoundSport Headphones,1,99.99,2019-12-11 13:07:00,777 Dogwood St, Seattle,WA,98101 +315670,ThinkPad Laptop,1,999.99,2019-12-08 21:38:00,599 Chestnut St, Boston,MA,02215 +315671,iPhone,1,700.0,2019-12-05 16:56:00,480 Main St, Portland,OR,97035 +315672,Bose SoundSport Headphones,1,99.99,2019-12-17 16:34:00,652 11th St, Los Angeles,CA,90001 +315673,Apple Airpods Headphones,1,150.0,2019-12-29 20:53:00,186 Spruce St, Boston,MA,02215 +315674,AA Batteries (4-pack),2,3.84,2019-12-24 18:38:00,495 Main St, Los Angeles,CA,90001 +315675,Bose SoundSport Headphones,1,99.99,2019-12-02 17:47:00,95 9th St, New York City,NY,10001 +315676,Google Phone,1,600.0,2019-12-24 16:17:00,986 Lakeview St, Dallas,TX,75001 +315677,AAA Batteries (4-pack),2,2.99,2019-12-14 15:13:00,549 Sunset St, San Francisco,CA,94016 +315678,Wired Headphones,1,11.99,2019-12-21 18:54:00,427 2nd St, Dallas,TX,75001 +315679,34in Ultrawide Monitor,1,379.99,2019-12-22 20:22:00,245 6th St, Los Angeles,CA,90001 +315680,Macbook Pro Laptop,1,1700.0,2019-12-28 14:11:00,13 Lakeview St, San Francisco,CA,94016 +315681,AAA Batteries (4-pack),1,2.99,2019-12-12 18:38:00,981 West St, San Francisco,CA,94016 +315682,Wired Headphones,2,11.99,2019-12-26 22:39:00,710 10th St, New York City,NY,10001 +315683,ThinkPad Laptop,1,999.99,2019-12-02 13:16:00,890 4th St, Boston,MA,02215 +315684,Google Phone,1,600.0,2019-12-15 17:25:00,236 Willow St, San Francisco,CA,94016 +315685,AAA Batteries (4-pack),1,2.99,2019-12-19 22:50:00,86 Lake St, Boston,MA,02215 +315686,Wired Headphones,2,11.99,2019-12-03 14:51:00,868 Adams St, San Francisco,CA,94016 +315687,Wired Headphones,1,11.99,2019-12-12 18:08:00,990 Meadow St, Boston,MA,02215 +315688,iPhone,1,700.0,2019-12-05 19:59:00,126 Cedar St, Dallas,TX,75001 +315689,Bose SoundSport Headphones,1,99.99,2019-12-19 15:48:00,870 14th St, San Francisco,CA,94016 +315690,Google Phone,1,600.0,2019-12-07 20:41:00,923 River St, New York City,NY,10001 +315691,Wired Headphones,1,11.99,2019-12-13 16:22:00,115 Meadow St, San Francisco,CA,94016 +315692,AAA Batteries (4-pack),1,2.99,2019-12-23 19:55:00,806 Lake St, Atlanta,GA,30301 +315693,Apple Airpods Headphones,1,150.0,2019-12-15 10:35:00,171 South St, Los Angeles,CA,90001 +315694,Bose SoundSport Headphones,1,99.99,2019-12-03 14:07:00,391 Highland St, San Francisco,CA,94016 +315695,Bose SoundSport Headphones,1,99.99,2019-12-06 10:09:00,654 West St, Seattle,WA,98101 +315696,27in FHD Monitor,1,149.99,2019-12-16 20:22:00,732 Highland St, San Francisco,CA,94016 +315697,iPhone,1,700.0,2019-12-01 10:09:00,521 Forest St, San Francisco,CA,94016 +315698,Apple Airpods Headphones,1,150.0,2019-12-16 17:54:00,392 Highland St, New York City,NY,10001 +315699,AAA Batteries (4-pack),1,2.99,2019-12-28 07:19:00,874 South St, Atlanta,GA,30301 +315700,27in 4K Gaming Monitor,1,389.99,2019-12-16 18:06:00,756 Highland St, San Francisco,CA,94016 +315701,20in Monitor,1,109.99,2019-12-16 23:47:00,902 9th St, San Francisco,CA,94016 +315702,Vareebadd Phone,1,400.0,2019-12-09 14:11:00,728 Park St, Los Angeles,CA,90001 +315703,20in Monitor,1,109.99,2019-12-28 13:20:00,934 Lake St, Boston,MA,02215 +315704,AA Batteries (4-pack),1,3.84,2019-12-27 12:36:00,370 Elm St, Los Angeles,CA,90001 +315705,USB-C Charging Cable,1,11.95,2019-12-08 17:11:00,609 North St, Atlanta,GA,30301 +315706,USB-C Charging Cable,1,11.95,2019-12-09 13:08:00,33 Elm St, Portland,OR,97035 +315707,AA Batteries (4-pack),2,3.84,2019-12-15 17:35:00,288 Meadow St, San Francisco,CA,94016 +315708,Lightning Charging Cable,2,14.95,2019-12-28 12:57:00,617 5th St, New York City,NY,10001 +315709,AA Batteries (4-pack),1,3.84,2019-12-18 18:31:00,138 11th St, San Francisco,CA,94016 +315710,AA Batteries (4-pack),1,3.84,2019-12-21 20:34:00,165 4th St, San Francisco,CA,94016 +315711,Lightning Charging Cable,1,14.95,2019-12-13 14:44:00,382 Ridge St, Los Angeles,CA,90001 +315712,27in 4K Gaming Monitor,1,389.99,2019-12-26 22:03:00,942 Lakeview St, Atlanta,GA,30301 +315713,Wired Headphones,1,11.99,2019-12-09 14:02:00,556 11th St, Atlanta,GA,30301 +315714,USB-C Charging Cable,1,11.95,2019-12-03 08:30:00,342 Hill St, Atlanta,GA,30301 +315715,Wired Headphones,1,11.99,2019-12-10 14:51:00,719 Ridge St, New York City,NY,10001 +315716,AAA Batteries (4-pack),1,2.99,2019-12-14 06:17:00,152 1st St, San Francisco,CA,94016 +315717,Lightning Charging Cable,1,14.95,2019-12-04 17:26:00,726 Jackson St, New York City,NY,10001 +315718,34in Ultrawide Monitor,1,379.99,2019-12-13 19:35:00,571 9th St, Dallas,TX,75001 +315719,Apple Airpods Headphones,1,150.0,2019-12-13 08:58:00,142 Spruce St, Atlanta,GA,30301 +315720,Apple Airpods Headphones,1,150.0,2019-12-26 11:39:00,397 Madison St, Seattle,WA,98101 +315721,USB-C Charging Cable,2,11.95,2019-12-28 11:49:00,284 South St, Dallas,TX,75001 +315722,27in FHD Monitor,1,149.99,2019-12-05 21:41:00,720 Pine St, Boston,MA,02215 +315723,Wired Headphones,1,11.99,2019-12-26 12:59:00,927 Maple St, Portland,OR,97035 +315724,USB-C Charging Cable,1,11.95,2019-12-06 15:16:00,553 Pine St, New York City,NY,10001 +315725,Lightning Charging Cable,1,14.95,2019-12-12 10:24:00,380 West St, Portland,OR,97035 +315726,Lightning Charging Cable,1,14.95,2019-12-08 09:33:00,294 West St, Portland,OR,97035 +315727,Bose SoundSport Headphones,1,99.99,2019-12-09 14:47:00,33 Willow St, Los Angeles,CA,90001 +315728,Lightning Charging Cable,2,14.95,2019-12-16 17:26:00,826 Maple St, Portland,OR,97035 +315729,Wired Headphones,1,11.99,2019-12-17 19:14:00,271 12th St, Portland,OR,97035 +315730,Bose SoundSport Headphones,1,99.99,2019-12-09 23:11:00,615 Lincoln St, San Francisco,CA,94016 +315731,iPhone,1,700.0,2019-12-24 19:49:00,93 Church St, Los Angeles,CA,90001 +315732,USB-C Charging Cable,1,11.95,2019-12-09 11:11:00,225 Park St, San Francisco,CA,94016 +315733,Wired Headphones,1,11.99,2019-12-16 20:05:00,166 West St, San Francisco,CA,94016 +315734,Lightning Charging Cable,1,14.95,2019-12-28 21:36:00,731 Hickory St, New York City,NY,10001 +315735,Bose SoundSport Headphones,1,99.99,2019-12-08 10:41:00,417 Madison St, Boston,MA,02215 +315736,AA Batteries (4-pack),2,3.84,2019-12-05 11:23:00,359 8th St, San Francisco,CA,94016 +315737,USB-C Charging Cable,1,11.95,2019-12-09 14:13:00,198 11th St, Los Angeles,CA,90001 +315738,AAA Batteries (4-pack),1,2.99,2019-12-28 17:17:00,526 North St, New York City,NY,10001 +315739,USB-C Charging Cable,1,11.95,2019-12-11 16:35:00,790 7th St, Boston,MA,02215 +315740,Bose SoundSport Headphones,1,99.99,2019-12-15 23:15:00,487 Park St, Los Angeles,CA,90001 +315741,20in Monitor,1,109.99,2019-12-23 17:46:00,149 Sunset St, Atlanta,GA,30301 +315742,USB-C Charging Cable,1,11.95,2019-12-01 22:06:00,312 Ridge St, Austin,TX,73301 +315743,Bose SoundSport Headphones,1,99.99,2019-12-16 02:35:00,577 Sunset St, Boston,MA,02215 +315744,Macbook Pro Laptop,1,1700.0,2019-12-22 17:40:00,738 Dogwood St, Boston,MA,02215 +315745,USB-C Charging Cable,1,11.95,2019-12-20 07:07:00,491 Sunset St, San Francisco,CA,94016 +315746,AA Batteries (4-pack),2,3.84,2019-12-15 20:15:00,709 5th St, Boston,MA,02215 +315747,USB-C Charging Cable,1,11.95,2019-12-23 11:48:00,529 Cedar St, Los Angeles,CA,90001 +315748,AA Batteries (4-pack),2,3.84,2019-12-24 13:38:00,314 2nd St, Portland,OR,97035 +315749,AAA Batteries (4-pack),1,2.99,2019-12-07 13:38:00,777 Jackson St, New York City,NY,10001 +315750,USB-C Charging Cable,1,11.95,2019-12-02 09:04:00,623 Madison St, Boston,MA,02215 +315751,AA Batteries (4-pack),1,3.84,2019-12-18 07:45:00,99 Maple St, Dallas,TX,75001 +315752,USB-C Charging Cable,1,11.95,2019-12-22 23:49:00,691 Dogwood St, San Francisco,CA,94016 +315753,AAA Batteries (4-pack),1,2.99,2019-12-05 13:35:00,138 Chestnut St, Austin,TX,73301 +315754,AAA Batteries (4-pack),1,2.99,2019-12-09 16:25:00,556 South St, San Francisco,CA,94016 +315755,AA Batteries (4-pack),3,3.84,2019-12-30 17:17:00,267 Highland St, San Francisco,CA,94016 +315756,27in 4K Gaming Monitor,1,389.99,2019-12-19 15:24:00,564 Johnson St, New York City,NY,10001 +315757,Wired Headphones,1,11.99,2019-12-30 11:28:00,373 Lincoln St, Los Angeles,CA,90001 +315758,20in Monitor,1,109.99,2019-12-19 12:43:00,916 5th St, San Francisco,CA,94016 +315759,Wired Headphones,1,11.99,2019-12-21 10:14:00,492 North St, Los Angeles,CA,90001 +315760,34in Ultrawide Monitor,1,379.99,2019-12-21 11:56:00,22 Jackson St, Dallas,TX,75001 +315761,Lightning Charging Cable,1,14.95,2019-12-11 08:01:00,13 Forest St, New York City,NY,10001 +315762,USB-C Charging Cable,1,11.95,2019-12-27 06:51:00,116 Ridge St, Portland,OR,97035 +315763,27in FHD Monitor,1,149.99,2019-12-24 19:12:00,970 Jefferson St, Atlanta,GA,30301 +315764,Wired Headphones,1,11.99,2019-12-31 14:01:00,523 Walnut St, Seattle,WA,98101 +315765,34in Ultrawide Monitor,1,379.99,2019-12-25 11:06:00,648 12th St, Los Angeles,CA,90001 +315766,Vareebadd Phone,1,400.0,2019-12-21 18:13:00,431 Hill St, Boston,MA,02215 +315766,USB-C Charging Cable,1,11.95,2019-12-21 18:13:00,431 Hill St, Boston,MA,02215 +315767,27in FHD Monitor,1,149.99,2019-12-17 21:54:00,781 1st St, Austin,TX,73301 +315768,ThinkPad Laptop,1,999.99,2019-12-20 21:28:00,879 4th St, New York City,NY,10001 +315769,Wired Headphones,1,11.99,2019-12-09 12:21:00,638 Hickory St, San Francisco,CA,94016 +315770,Wired Headphones,1,11.99,2019-12-14 22:52:00,809 Jefferson St, San Francisco,CA,94016 +315771,Lightning Charging Cable,1,14.95,2019-12-21 18:13:00,246 Ridge St, San Francisco,CA,94016 +315772,Bose SoundSport Headphones,1,99.99,2019-12-19 12:22:00,778 Dogwood St, Portland,OR,97035 +315773,AA Batteries (4-pack),1,3.84,2019-12-07 11:52:00,492 10th St, San Francisco,CA,94016 +315774,USB-C Charging Cable,2,11.95,2019-12-19 23:38:00,134 Ridge St, San Francisco,CA,94016 +315775,AA Batteries (4-pack),1,3.84,2019-12-23 13:58:00,252 Willow St, San Francisco,CA,94016 +315776,Apple Airpods Headphones,1,150.0,2019-12-07 18:49:00,86 Willow St, Austin,TX,73301 +315777,Lightning Charging Cable,1,14.95,2019-12-17 02:12:00,742 Center St, Seattle,WA,98101 +315778,USB-C Charging Cable,1,11.95,2019-12-18 05:09:00,847 5th St, Portland,OR,97035 +315779,Wired Headphones,1,11.99,2019-12-23 10:58:00,70 Cedar St, Boston,MA,02215 +315780,AA Batteries (4-pack),2,3.84,2019-12-30 10:33:00,585 Elm St, New York City,NY,10001 +315781,Lightning Charging Cable,2,14.95,2019-12-08 17:57:00,642 14th St, Seattle,WA,98101 +315782,Apple Airpods Headphones,1,150.0,2019-12-21 20:00:00,148 Ridge St, San Francisco,CA,94016 +315783,Bose SoundSport Headphones,1,99.99,2019-12-29 21:15:00,801 Cherry St, New York City,NY,10001 +315784,Lightning Charging Cable,1,14.95,2019-12-25 13:31:00,650 1st St, Austin,TX,73301 +315785,Lightning Charging Cable,1,14.95,2019-12-13 15:38:00,701 Adams St, San Francisco,CA,94016 +315786,Lightning Charging Cable,1,14.95,2019-12-24 15:53:00,93 Main St, Austin,TX,73301 +315787,AA Batteries (4-pack),2,3.84,2019-12-28 11:06:00,598 North St, San Francisco,CA,94016 +315788,Apple Airpods Headphones,1,150.0,2019-12-03 09:42:00,472 West St, San Francisco,CA,94016 +315789,20in Monitor,1,109.99,2019-12-07 08:08:00,125 Lakeview St, Boston,MA,02215 +315790,Google Phone,1,600.0,2019-12-21 01:18:00,789 Madison St, San Francisco,CA,94016 +315791,AAA Batteries (4-pack),1,2.99,2019-12-10 09:14:00,99 Walnut St, San Francisco,CA,94016 +315792,Apple Airpods Headphones,1,150.0,2019-12-23 22:30:00,752 Madison St, Dallas,TX,75001 +315793,AA Batteries (4-pack),1,3.84,2019-12-30 08:51:00,480 11th St, Seattle,WA,98101 +315794,USB-C Charging Cable,1,11.95,2019-12-20 21:25:00,230 Pine St, Boston,MA,02215 +315795,Lightning Charging Cable,1,14.95,2019-12-10 00:38:00,472 Chestnut St, New York City,NY,10001 +315796,Wired Headphones,1,11.99,2019-12-17 19:20:00,287 Dogwood St, San Francisco,CA,94016 +315797,USB-C Charging Cable,1,11.95,2019-12-17 23:15:00,173 5th St, Seattle,WA,98101 +315798,Lightning Charging Cable,1,14.95,2019-12-26 12:25:00,405 Lake St, Atlanta,GA,30301 +315799,Lightning Charging Cable,1,14.95,2019-12-08 17:17:00,287 Jackson St, San Francisco,CA,94016 +315800,Bose SoundSport Headphones,1,99.99,2019-12-08 12:44:00,349 West St, Austin,TX,73301 +315801,Vareebadd Phone,1,400.0,2019-12-29 16:51:00,878 10th St, San Francisco,CA,94016 +315801,USB-C Charging Cable,1,11.95,2019-12-29 16:51:00,878 10th St, San Francisco,CA,94016 +315801,Wired Headphones,1,11.99,2019-12-29 16:51:00,878 10th St, San Francisco,CA,94016 +315802,Wired Headphones,1,11.99,2019-12-20 08:53:00,16 Church St, Los Angeles,CA,90001 +315803,Lightning Charging Cable,2,14.95,2019-12-01 16:47:00,520 Church St, Los Angeles,CA,90001 +315804,Macbook Pro Laptop,1,1700.0,2019-12-01 21:07:00,954 Wilson St, Dallas,TX,75001 +315805,34in Ultrawide Monitor,1,379.99,2019-12-07 00:18:00,646 North St, Los Angeles,CA,90001 +315806,27in FHD Monitor,1,149.99,2019-12-28 14:36:00,848 12th St, Boston,MA,02215 +315807,Lightning Charging Cable,1,14.95,2019-12-02 16:56:00,889 Jefferson St, Los Angeles,CA,90001 +315808,Wired Headphones,1,11.99,2019-12-28 14:56:00,212 Washington St, Seattle,WA,98101 +315809,Bose SoundSport Headphones,1,99.99,2019-12-22 09:38:00,189 North St, San Francisco,CA,94016 +315810,USB-C Charging Cable,2,11.95,2019-12-01 10:40:00,570 Dogwood St, New York City,NY,10001 +315811,Bose SoundSport Headphones,1,99.99,2019-12-25 12:44:00,956 Wilson St, Atlanta,GA,30301 +315812,Flatscreen TV,1,300.0,2019-12-11 11:46:00,714 West St, Los Angeles,CA,90001 +315812,USB-C Charging Cable,1,11.95,2019-12-11 11:46:00,714 West St, Los Angeles,CA,90001 +315813,LG Washing Machine,1,600.0,2019-12-01 17:38:00,947 Lincoln St, Dallas,TX,75001 +315814,AAA Batteries (4-pack),1,2.99,2019-12-25 15:56:00,5 2nd St, San Francisco,CA,94016 +315815,Lightning Charging Cable,1,14.95,2019-12-14 21:40:00,326 Spruce St, Seattle,WA,98101 +315816,Bose SoundSport Headphones,1,99.99,2019-12-09 13:51:00,135 Jackson St, San Francisco,CA,94016 +315817,Google Phone,1,600.0,2019-12-07 13:47:00,507 Hill St, New York City,NY,10001 +315818,Lightning Charging Cable,1,14.95,2019-12-19 08:47:00,528 Washington St, Boston,MA,02215 +315819,Apple Airpods Headphones,1,150.0,2019-12-03 14:21:00,444 11th St, Atlanta,GA,30301 +315820,Lightning Charging Cable,1,14.95,2019-12-21 12:24:00,784 Lincoln St, New York City,NY,10001 +315821,Lightning Charging Cable,1,14.95,2019-12-03 08:17:00,963 Lincoln St, Austin,TX,73301 +315822,27in FHD Monitor,1,149.99,2019-12-25 22:52:00,662 13th St, San Francisco,CA,94016 +315823,Bose SoundSport Headphones,1,99.99,2019-12-30 00:17:00,686 Wilson St, New York City,NY,10001 +315824,Apple Airpods Headphones,1,150.0,2019-12-29 22:49:00,859 Hickory St, San Francisco,CA,94016 +315825,AAA Batteries (4-pack),1,2.99,2019-12-26 16:26:00,126 Elm St, New York City,NY,10001 +315826,Google Phone,1,600.0,2019-12-25 13:36:00,513 4th St, Dallas,TX,75001 +315827,Apple Airpods Headphones,1,150.0,2019-12-30 12:59:00,435 Forest St, San Francisco,CA,94016 +315828,Apple Airpods Headphones,1,150.0,2019-12-07 09:54:00,58 River St, New York City,NY,10001 +315829,iPhone,1,700.0,2019-12-18 15:12:00,904 Lincoln St, Seattle,WA,98101 +315829,Lightning Charging Cable,1,14.95,2019-12-18 15:12:00,904 Lincoln St, Seattle,WA,98101 +315830,Google Phone,1,600.0,2019-12-04 17:48:00,360 Highland St, Dallas,TX,75001 +315831,Google Phone,1,600.0,2019-12-24 20:24:00,848 Maple St, Los Angeles,CA,90001 +315832,27in 4K Gaming Monitor,1,389.99,2019-12-11 19:30:00,495 Dogwood St, San Francisco,CA,94016 +315833,27in 4K Gaming Monitor,1,389.99,2019-12-06 20:48:00,599 5th St, Atlanta,GA,30301 +315834,AA Batteries (4-pack),1,3.84,2019-12-07 14:29:00,464 Wilson St, Dallas,TX,75001 +315835,Wired Headphones,1,11.99,2019-12-26 15:40:00,92 Jefferson St, New York City,NY,10001 +315836,AA Batteries (4-pack),2,3.84,2019-12-09 18:14:00,410 Cherry St, San Francisco,CA,94016 +315837,Wired Headphones,1,11.99,2019-12-19 08:25:00,739 Center St, San Francisco,CA,94016 +315838,AAA Batteries (4-pack),3,2.99,2019-12-11 06:39:00,121 7th St, Seattle,WA,98101 +315839,Wired Headphones,1,11.99,2019-12-29 14:13:00,721 Church St, New York City,NY,10001 +315840,AA Batteries (4-pack),1,3.84,2019-12-26 10:39:00,303 8th St, San Francisco,CA,94016 +315841,iPhone,1,700.0,2019-12-31 07:05:00,719 Lake St, Dallas,TX,75001 +315841,Apple Airpods Headphones,1,150.0,2019-12-31 07:05:00,719 Lake St, Dallas,TX,75001 +315841,Wired Headphones,1,11.99,2019-12-31 07:05:00,719 Lake St, Dallas,TX,75001 +315842,iPhone,1,700.0,2019-12-07 22:01:00,212 Forest St, Los Angeles,CA,90001 +315843,Lightning Charging Cable,1,14.95,2019-12-30 13:06:00,335 South St, Los Angeles,CA,90001 +315844,iPhone,1,700.0,2019-12-18 11:40:00,287 9th St, Dallas,TX,75001 +315845,Lightning Charging Cable,1,14.95,2019-12-24 12:45:00,155 Spruce St, New York City,NY,10001 +315846,20in Monitor,1,109.99,2019-12-11 00:06:00,755 9th St, Boston,MA,02215 +315847,Wired Headphones,1,11.99,2019-12-03 18:50:00,763 Hill St, Boston,MA,02215 +315848,27in FHD Monitor,1,149.99,2019-12-01 21:04:00,764 9th St, New York City,NY,10001 +315849,34in Ultrawide Monitor,1,379.99,2019-12-14 14:43:00,872 12th St, New York City,NY,10001 +315850,AA Batteries (4-pack),2,3.84,2019-12-09 12:33:00,452 4th St, Los Angeles,CA,90001 +315851,Lightning Charging Cable,1,14.95,2019-12-15 06:43:00,978 Church St, San Francisco,CA,94016 +315852,Wired Headphones,1,11.99,2019-12-27 19:42:00,659 South St, New York City,NY,10001 +315853,USB-C Charging Cable,1,11.95,2019-12-11 14:54:00,999 Dogwood St, San Francisco,CA,94016 +315854,Wired Headphones,1,11.99,2019-12-27 00:27:00,912 Park St, San Francisco,CA,94016 +315855,27in 4K Gaming Monitor,1,389.99,2019-12-05 13:05:00,59 Jackson St, New York City,NY,10001 +315856,Macbook Pro Laptop,1,1700.0,2019-12-27 12:40:00,992 Wilson St, San Francisco,CA,94016 +315857,iPhone,1,700.0,2019-12-29 16:25:00,221 7th St, San Francisco,CA,94016 +315858,34in Ultrawide Monitor,1,379.99,2019-12-05 11:53:00,687 Jefferson St, Atlanta,GA,30301 +315859,Lightning Charging Cable,1,14.95,2019-12-14 22:38:00,365 Chestnut St, Seattle,WA,98101 +315860,Macbook Pro Laptop,1,1700.0,2019-12-15 17:45:00,792 Lakeview St, New York City,NY,10001 +315861,USB-C Charging Cable,1,11.95,2019-12-29 17:48:00,704 Lincoln St, Atlanta,GA,30301 +315862,USB-C Charging Cable,1,11.95,2019-12-21 22:56:00,209 River St, Boston,MA,02215 +315863,Macbook Pro Laptop,1,1700.0,2019-12-09 23:34:00,900 14th St, Seattle,WA,98101 +315864,iPhone,1,700.0,2019-12-09 20:30:00,573 Chestnut St, New York City,NY,10001 +315865,iPhone,1,700.0,2019-12-01 13:11:00,843 Walnut St, Los Angeles,CA,90001 +315866,Lightning Charging Cable,1,14.95,2019-12-19 11:47:00,623 7th St, Los Angeles,CA,90001 +315867,27in FHD Monitor,1,149.99,2019-12-06 23:16:00,560 Ridge St, New York City,NY,10001 +315868,Lightning Charging Cable,1,14.95,2019-12-23 18:30:00,295 Center St, Atlanta,GA,30301 +315868,USB-C Charging Cable,1,11.95,2019-12-23 18:30:00,295 Center St, Atlanta,GA,30301 +315869,Macbook Pro Laptop,1,1700.0,2019-12-22 15:32:00,474 Main St, Los Angeles,CA,90001 +315870,Bose SoundSport Headphones,1,99.99,2019-12-12 19:31:00,848 Maple St, Boston,MA,02215 +315871,Apple Airpods Headphones,1,150.0,2019-12-17 14:34:00,332 Lakeview St, Portland,OR,97035 +315872,27in 4K Gaming Monitor,1,389.99,2019-12-24 12:22:00,666 Lake St, San Francisco,CA,94016 +315873,AA Batteries (4-pack),1,3.84,2019-12-28 11:24:00,941 Park St, New York City,NY,10001 +315874,Wired Headphones,2,11.99,2019-12-31 20:37:00,686 Meadow St, San Francisco,CA,94016 +315875,27in FHD Monitor,1,149.99,2019-12-01 17:07:00,777 14th St, Atlanta,GA,30301 +315876,Apple Airpods Headphones,1,150.0,2019-12-09 12:17:00,525 Cherry St, New York City,NY,10001 +315877,USB-C Charging Cable,1,11.95,2019-12-19 09:04:00,83 Lake St, Atlanta,GA,30301 +315878,Wired Headphones,1,11.99,2019-12-20 22:10:00,305 Lincoln St, San Francisco,CA,94016 +315879,34in Ultrawide Monitor,1,379.99,2019-12-01 18:03:00,650 2nd St, Los Angeles,CA,90001 +315880,Bose SoundSport Headphones,1,99.99,2019-12-17 21:50:00,217 West St, Boston,MA,02215 +315881,USB-C Charging Cable,1,11.95,2019-12-25 14:31:00,302 Pine St, Boston,MA,02215 +315882,Bose SoundSport Headphones,1,99.99,2019-12-21 01:16:00,922 9th St, Los Angeles,CA,90001 +315883,USB-C Charging Cable,1,11.95,2019-12-06 16:42:00,215 Wilson St, New York City,NY,10001 +315884,USB-C Charging Cable,1,11.95,2019-12-16 16:22:00,216 Willow St, Seattle,WA,98101 +315885,Lightning Charging Cable,1,14.95,2019-12-06 22:26:00,548 11th St, San Francisco,CA,94016 +315886,AA Batteries (4-pack),1,3.84,2019-12-11 17:20:00,605 Center St, Boston,MA,02215 +315887,Lightning Charging Cable,2,14.95,2019-12-05 16:16:00,650 Dogwood St, Dallas,TX,75001 +315887,USB-C Charging Cable,1,11.95,2019-12-05 16:16:00,650 Dogwood St, Dallas,TX,75001 +315888,20in Monitor,1,109.99,2019-12-21 14:30:00,425 Lakeview St, Boston,MA,02215 +315889,Wired Headphones,1,11.99,2019-12-26 18:12:00,864 Sunset St, San Francisco,CA,94016 +315890,AAA Batteries (4-pack),2,2.99,2019-12-24 17:58:00,22 River St, Boston,MA,02215 +315891,34in Ultrawide Monitor,1,379.99,2019-12-07 18:47:00,953 Sunset St, San Francisco,CA,94016 +315892,20in Monitor,1,109.99,2019-12-23 17:15:00,897 Pine St, New York City,NY,10001 +315893,AA Batteries (4-pack),5,3.84,2019-12-25 11:34:00,154 Forest St, Los Angeles,CA,90001 +315894,Wired Headphones,1,11.99,2019-12-01 19:04:00,160 Walnut St, Dallas,TX,75001 +315895,Wired Headphones,1,11.99,2019-12-09 13:48:00,562 Pine St, Austin,TX,73301 +315896,Apple Airpods Headphones,1,150.0,2019-12-10 20:33:00,760 Madison St, Atlanta,GA,30301 +315897,Bose SoundSport Headphones,1,99.99,2019-12-09 20:21:00,487 South St, Los Angeles,CA,90001 +315898,20in Monitor,1,109.99,2019-12-17 10:28:00,103 Sunset St, Dallas,TX,75001 +315899,ThinkPad Laptop,1,999.99,2019-12-21 15:21:00,561 South St, Austin,TX,73301 +315900,iPhone,1,700.0,2019-12-27 20:01:00,13 Madison St, San Francisco,CA,94016 +315901,Lightning Charging Cable,1,14.95,2019-12-10 12:56:00,278 Meadow St, Austin,TX,73301 +315902,USB-C Charging Cable,1,11.95,2019-12-11 11:16:00,36 Pine St, San Francisco,CA,94016 +315903,AA Batteries (4-pack),1,3.84,2019-12-08 18:59:00,171 Wilson St, Austin,TX,73301 +315903,Bose SoundSport Headphones,1,99.99,2019-12-08 18:59:00,171 Wilson St, Austin,TX,73301 +315904,27in FHD Monitor,1,149.99,2019-12-13 18:39:00,405 Church St, Seattle,WA,98101 +315905,USB-C Charging Cable,1,11.95,2019-12-13 22:45:00,972 Lake St, Los Angeles,CA,90001 +315906,AA Batteries (4-pack),1,3.84,2019-12-16 14:58:00,669 North St, Los Angeles,CA,90001 +315907,AA Batteries (4-pack),2,3.84,2019-12-21 13:44:00,696 Spruce St, San Francisco,CA,94016 +315908,20in Monitor,1,109.99,2019-12-23 18:07:00,921 Jefferson St, Atlanta,GA,30301 +315909,Lightning Charging Cable,1,14.95,2019-12-18 01:05:00,917 South St, San Francisco,CA,94016 +315910,USB-C Charging Cable,1,11.95,2019-12-21 19:07:00,853 6th St, San Francisco,CA,94016 +315911,Vareebadd Phone,1,400.0,2019-12-21 20:30:00,465 Highland St, Boston,MA,02215 +315912,Bose SoundSport Headphones,1,99.99,2019-12-23 18:31:00,924 Meadow St, New York City,NY,10001 +315913,Apple Airpods Headphones,1,150.0,2019-12-13 17:35:00,502 Maple St, Los Angeles,CA,90001 +315914,Lightning Charging Cable,1,14.95,2019-12-08 22:27:00,557 Walnut St, Seattle,WA,98101 +315915,iPhone,1,700.0,2019-12-17 20:16:00,222 4th St, Dallas,TX,75001 +315916,Bose SoundSport Headphones,1,99.99,2019-12-20 09:50:00,583 6th St, San Francisco,CA,94016 +315917,Bose SoundSport Headphones,1,99.99,2019-12-17 15:33:00,137 12th St, Los Angeles,CA,90001 +315918,AAA Batteries (4-pack),1,2.99,2019-12-22 13:17:00,292 10th St, Los Angeles,CA,90001 +315919,Apple Airpods Headphones,1,150.0,2019-12-10 22:24:00,574 2nd St, San Francisco,CA,94016 +315920,27in FHD Monitor,1,149.99,2019-12-04 01:06:00,676 Jackson St, Austin,TX,73301 +315921,Apple Airpods Headphones,1,150.0,2019-12-03 09:49:00,474 Highland St, Los Angeles,CA,90001 +315922,AA Batteries (4-pack),1,3.84,2019-12-29 01:23:00,453 Johnson St, San Francisco,CA,94016 +315923,AAA Batteries (4-pack),2,2.99,2019-12-17 12:43:00,239 Sunset St, Portland,OR,97035 +315924,iPhone,1,700.0,2019-12-23 21:33:00,830 2nd St, Los Angeles,CA,90001 +315925,Apple Airpods Headphones,1,150.0,2019-12-30 21:38:00,252 Cedar St, Seattle,WA,98101 +315926,Apple Airpods Headphones,2,150.0,2019-12-12 18:18:00,623 North St, New York City,NY,10001 +315927,AAA Batteries (4-pack),2,2.99,2019-12-12 14:01:00,539 4th St, Portland,OR,97035 +315928,Bose SoundSport Headphones,1,99.99,2019-12-11 23:10:00,829 1st St, Dallas,TX,75001 +315929,Macbook Pro Laptop,1,1700.0,2019-12-15 18:12:00,756 Highland St, Seattle,WA,98101 +315930,Bose SoundSport Headphones,1,99.99,2019-12-27 16:20:00,487 Spruce St, Austin,TX,73301 +315930,AAA Batteries (4-pack),1,2.99,2019-12-27 16:20:00,487 Spruce St, Austin,TX,73301 +315931,AA Batteries (4-pack),1,3.84,2019-12-02 02:57:00,370 Walnut St, Dallas,TX,75001 +315932,USB-C Charging Cable,1,11.95,2019-12-30 21:13:00,863 Center St, Austin,TX,73301 +315933,27in FHD Monitor,1,149.99,2019-12-15 16:57:00,435 6th St, Dallas,TX,75001 +315934,AA Batteries (4-pack),2,3.84,2019-12-02 16:35:00,556 6th St, New York City,NY,10001 +315935,27in FHD Monitor,1,149.99,2019-12-24 11:15:00,709 South St, Seattle,WA,98101 +315936,AAA Batteries (4-pack),1,2.99,2019-12-06 23:52:00,733 Park St, Atlanta,GA,30301 +315937,Flatscreen TV,2,300.0,2019-12-23 16:31:00,47 1st St, Los Angeles,CA,90001 +315938,AAA Batteries (4-pack),1,2.99,2019-12-08 14:46:00,912 Chestnut St, Seattle,WA,98101 +315939,34in Ultrawide Monitor,1,379.99,2019-12-05 20:58:00,314 11th St, Boston,MA,02215 +315940,iPhone,1,700.0,2019-12-28 10:04:00,364 Elm St, Los Angeles,CA,90001 +315941,Lightning Charging Cable,1,14.95,2019-12-19 16:22:00,186 Center St, Los Angeles,CA,90001 +315942,AA Batteries (4-pack),1,3.84,2019-12-09 15:52:00,381 1st St, Boston,MA,02215 +315943,Lightning Charging Cable,1,14.95,2019-12-18 19:59:00,956 Dogwood St, Dallas,TX,75001 +315944,AA Batteries (4-pack),2,3.84,2019-12-06 23:51:00,948 Hickory St, San Francisco,CA,94016 +315945,Wired Headphones,1,11.99,2019-12-25 18:06:00,131 Wilson St, Los Angeles,CA,90001 +315946,Apple Airpods Headphones,1,150.0,2019-12-12 15:54:00,428 Main St, Los Angeles,CA,90001 +315947,Bose SoundSport Headphones,1,99.99,2019-12-25 16:27:00,528 Johnson St, Boston,MA,02215 +315948,Lightning Charging Cable,1,14.95,2019-12-20 23:20:00,900 Washington St, Boston,MA,02215 +315949,Apple Airpods Headphones,1,150.0,2019-12-10 18:18:00,122 6th St, Boston,MA,02215 +315950,iPhone,1,700.0,2019-12-24 13:02:00,542 Adams St, Atlanta,GA,30301 +315950,Wired Headphones,1,11.99,2019-12-24 13:02:00,542 Adams St, Atlanta,GA,30301 +315951,AAA Batteries (4-pack),1,2.99,2019-12-20 11:52:00,598 Wilson St, San Francisco,CA,94016 +315952,Vareebadd Phone,1,400.0,2019-12-12 05:30:00,743 Maple St, Dallas,TX,75001 +315953,Apple Airpods Headphones,1,150.0,2019-12-25 11:54:00,976 6th St, Los Angeles,CA,90001 +315954,ThinkPad Laptop,1,999.99,2019-12-19 18:04:00,646 Walnut St, Boston,MA,02215 +315955,ThinkPad Laptop,1,999.99,2019-12-26 17:28:00,588 Chestnut St, Seattle,WA,98101 +315956,iPhone,1,700.0,2019-12-04 19:54:00,799 Wilson St, Los Angeles,CA,90001 +315957,AA Batteries (4-pack),1,3.84,2019-12-06 20:20:00,496 5th St, New York City,NY,10001 +315958,Bose SoundSport Headphones,1,99.99,2019-12-22 15:39:00,428 Center St, San Francisco,CA,94016 +315959,34in Ultrawide Monitor,1,379.99,2019-12-28 10:24:00,623 Dogwood St, New York City,NY,10001 +315960,Lightning Charging Cable,1,14.95,2019-12-18 15:07:00,28 Forest St, San Francisco,CA,94016 +315961,27in FHD Monitor,1,149.99,2019-12-16 13:14:00,512 Adams St, Los Angeles,CA,90001 +315962,Wired Headphones,1,11.99,2019-12-08 10:01:00,293 Church St, Seattle,WA,98101 +315962,27in FHD Monitor,1,149.99,2019-12-08 10:01:00,293 Church St, Seattle,WA,98101 +315963,Bose SoundSport Headphones,1,99.99,2019-12-03 08:22:00,253 Church St, Seattle,WA,98101 +315964,Bose SoundSport Headphones,1,99.99,2019-12-11 12:32:00,242 14th St, Los Angeles,CA,90001 +315965,AA Batteries (4-pack),1,3.84,2019-12-20 14:12:00,578 13th St, San Francisco,CA,94016 +315966,Lightning Charging Cable,1,14.95,2019-12-21 12:05:00,437 4th St, San Francisco,CA,94016 +315967,Vareebadd Phone,1,400.0,2019-12-15 18:07:00,417 Maple St, Los Angeles,CA,90001 +315968,AA Batteries (4-pack),3,3.84,2019-12-31 11:46:00,887 Dogwood St, San Francisco,CA,94016 +315969,AA Batteries (4-pack),2,3.84,2019-12-26 22:10:00,879 Lakeview St, San Francisco,CA,94016 +315970,Lightning Charging Cable,1,14.95,2019-12-25 12:05:00,549 Madison St, San Francisco,CA,94016 +315971,AAA Batteries (4-pack),2,2.99,2019-12-01 10:31:00,387 2nd St, Los Angeles,CA,90001 +315972,Wired Headphones,1,11.99,2019-12-26 18:33:00,561 Madison St, Dallas,TX,75001 +315973,AA Batteries (4-pack),2,3.84,2019-12-26 20:06:00,175 Lake St, Boston,MA,02215 +315974,Flatscreen TV,1,300.0,2019-12-02 11:30:00,459 Johnson St, San Francisco,CA,94016 +315975,Google Phone,1,600.0,2019-12-21 12:16:00,371 Chestnut St, New York City,NY,10001 +315975,USB-C Charging Cable,1,11.95,2019-12-21 12:16:00,371 Chestnut St, New York City,NY,10001 +315976,27in FHD Monitor,1,149.99,2019-12-06 16:37:00,313 6th St, Los Angeles,CA,90001 +315977,27in FHD Monitor,1,149.99,2019-12-31 14:48:00,291 12th St, Atlanta,GA,30301 +315978,20in Monitor,1,109.99,2019-12-10 17:41:00,198 2nd St, Atlanta,GA,30301 +315979,34in Ultrawide Monitor,1,379.99,2019-12-21 14:17:00,623 Ridge St, Boston,MA,02215 +315980,Lightning Charging Cable,1,14.95,2019-12-06 18:04:00,294 5th St, Seattle,WA,98101 +315981,USB-C Charging Cable,1,11.95,2019-12-06 17:35:00,591 Hickory St, Austin,TX,73301 +315982,Lightning Charging Cable,1,14.95,2019-12-07 12:05:00,697 Johnson St, Boston,MA,02215 +315983,Wired Headphones,4,11.99,2019-12-12 12:59:00,520 Wilson St, San Francisco,CA,94016 +315984,Wired Headphones,1,11.99,2019-12-18 15:09:00,708 Sunset St, Los Angeles,CA,90001 +315985,20in Monitor,1,109.99,2019-12-06 10:08:00,904 Pine St, Atlanta,GA,30301 +315986,20in Monitor,1,109.99,2019-12-22 15:44:00,17 2nd St, Los Angeles,CA,90001 +315987,USB-C Charging Cable,1,11.95,2019-12-15 19:09:00,668 Spruce St, New York City,NY,10001 +315988,27in 4K Gaming Monitor,1,389.99,2019-12-03 10:15:00,52 Chestnut St, Atlanta,GA,30301 +315989,34in Ultrawide Monitor,1,379.99,2019-12-17 11:42:00,818 South St, Atlanta,GA,30301 +315990,Apple Airpods Headphones,1,150.0,2019-12-14 16:18:00,794 Jefferson St, Austin,TX,73301 +315991,USB-C Charging Cable,1,11.95,2019-12-24 14:37:00,939 River St, Seattle,WA,98101 +315992,AA Batteries (4-pack),1,3.84,2019-12-11 14:14:00,16 Madison St, Boston,MA,02215 +315993,Apple Airpods Headphones,1,150.0,2019-12-28 00:41:00,684 Lake St, Boston,MA,02215 +315994,Apple Airpods Headphones,1,150.0,2019-12-28 18:49:00,860 Cedar St, Seattle,WA,98101 +315995,AAA Batteries (4-pack),2,2.99,2019-12-31 20:05:00,283 13th St, New York City,NY,10001 +315996,AAA Batteries (4-pack),1,2.99,2019-12-06 17:46:00,785 Dogwood St, New York City,NY,10001 +315997,Flatscreen TV,1,300.0,2019-12-04 21:34:00,981 1st St, Seattle,WA,98101 +315998,Wired Headphones,1,11.99,2019-12-15 22:31:00,885 Elm St, New York City,NY,10001 +315999,USB-C Charging Cable,1,11.95,2019-12-05 10:09:00,593 Walnut St, San Francisco,CA,94016 +316000,Flatscreen TV,1,300.0,2019-12-05 14:12:00,323 8th St, New York City,NY,10001 +316001,Bose SoundSport Headphones,1,99.99,2019-12-16 23:04:00,838 Park St, Seattle,WA,98101 +316002,Apple Airpods Headphones,1,150.0,2019-12-18 19:50:00,617 Cedar St, Boston,MA,02215 +316003,AAA Batteries (4-pack),1,2.99,2019-12-06 12:22:00,731 9th St, Los Angeles,CA,90001 +316004,Macbook Pro Laptop,1,1700.0,2019-12-15 15:39:00,269 13th St, San Francisco,CA,94016 +316005,AAA Batteries (4-pack),1,2.99,2019-12-23 10:12:00,948 Highland St, Los Angeles,CA,90001 +316006,AA Batteries (4-pack),1,3.84,2019-12-29 19:43:00,680 Forest St, Boston,MA,02215 +316007,AA Batteries (4-pack),1,3.84,2019-12-15 18:49:00,304 Johnson St, Los Angeles,CA,90001 +316008,Lightning Charging Cable,1,14.95,2019-12-06 00:39:00,865 11th St, Boston,MA,02215 +316009,AA Batteries (4-pack),1,3.84,2019-12-04 21:27:00,916 Hill St, San Francisco,CA,94016 +316010,Wired Headphones,1,11.99,2019-12-31 12:33:00,102 Walnut St, San Francisco,CA,94016 +316011,Apple Airpods Headphones,1,150.0,2019-12-14 10:27:00,199 Church St, San Francisco,CA,94016 +316012,Wired Headphones,1,11.99,2019-12-16 00:13:00,471 Dogwood St, Boston,MA,02215 +316012,34in Ultrawide Monitor,1,379.99,2019-12-16 00:13:00,471 Dogwood St, Boston,MA,02215 +316013,27in FHD Monitor,1,149.99,2019-12-16 21:36:00,332 Washington St, Boston,MA,02215 +316014,Lightning Charging Cable,1,14.95,2019-12-25 07:34:00,391 Dogwood St, Boston,MA,02215 +316015,34in Ultrawide Monitor,1,379.99,2019-12-15 21:23:00,945 Center St, Dallas,TX,75001 +316016,Flatscreen TV,1,300.0,2019-12-26 11:08:00,29 River St, New York City,NY,10001 +316017,AAA Batteries (4-pack),1,2.99,2019-12-23 19:30:00,288 Cedar St, Los Angeles,CA,90001 +316017,27in FHD Monitor,1,149.99,2019-12-23 19:30:00,288 Cedar St, Los Angeles,CA,90001 +316018,Apple Airpods Headphones,1,150.0,2019-12-23 11:51:00,404 11th St, San Francisco,CA,94016 +316019,Wired Headphones,1,11.99,2019-12-04 19:28:00,889 Elm St, Atlanta,GA,30301 +316020,Lightning Charging Cable,1,14.95,2019-12-27 17:00:00,166 Lincoln St, San Francisco,CA,94016 +316021,27in FHD Monitor,1,149.99,2019-12-25 21:00:00,195 5th St, New York City,NY,10001 +316022,AAA Batteries (4-pack),1,2.99,2019-12-04 03:38:00,849 River St, Atlanta,GA,30301 +316023,ThinkPad Laptop,1,999.99,2019-12-08 12:17:00,838 Lincoln St, Boston,MA,02215 +316024,Wired Headphones,1,11.99,2019-12-08 09:26:00,376 Center St, San Francisco,CA,94016 +316025,USB-C Charging Cable,1,11.95,2019-12-20 21:11:00,792 Jefferson St, San Francisco,CA,94016 +316026,Wired Headphones,1,11.99,2019-12-26 10:47:00,144 Forest St, Boston,MA,02215 +316027,27in 4K Gaming Monitor,1,389.99,2019-12-14 10:51:00,803 Jackson St, Los Angeles,CA,90001 +316028,34in Ultrawide Monitor,1,379.99,2019-12-15 17:59:00,127 9th St, Boston,MA,02215 +316029,USB-C Charging Cable,1,11.95,2019-12-01 14:59:00,240 Church St, San Francisco,CA,94016 +316030,34in Ultrawide Monitor,1,379.99,2019-12-10 19:46:00,695 Jefferson St, San Francisco,CA,94016 +316031,AA Batteries (4-pack),1,3.84,2019-12-18 11:57:00,758 Maple St, Atlanta,GA,30301 +316032,USB-C Charging Cable,1,11.95,2019-12-13 12:54:00,574 Adams St, Los Angeles,CA,90001 +316033,Flatscreen TV,1,300.0,2019-12-29 21:34:00,430 West St, Boston,MA,02215 +316034,Lightning Charging Cable,1,14.95,2019-12-09 16:39:00,765 Sunset St, Boston,MA,02215 +316035,Lightning Charging Cable,1,14.95,2019-12-14 21:24:00,724 Lakeview St, San Francisco,CA,94016 +316036,20in Monitor,1,109.99,2019-12-25 20:00:00,114 Johnson St, Portland,OR,97035 +316037,Lightning Charging Cable,1,14.95,2019-12-17 11:12:00,624 14th St, New York City,NY,10001 +316038,ThinkPad Laptop,1,999.99,2019-12-18 14:09:00,744 Dogwood St, Atlanta,GA,30301 +316039,AA Batteries (4-pack),1,3.84,2019-12-02 17:20:00,567 Cedar St, Los Angeles,CA,90001 +316040,Lightning Charging Cable,1,14.95,2019-12-29 10:35:00,566 7th St, Los Angeles,CA,90001 +316041,Bose SoundSport Headphones,1,99.99,2019-12-16 23:43:00,206 5th St, San Francisco,CA,94016 +316042,iPhone,1,700.0,2019-12-26 22:57:00,135 Elm St, Seattle,WA,98101 +316043,Bose SoundSport Headphones,1,99.99,2019-12-15 17:47:00,261 Church St, Portland,OR,97035 +316044,AA Batteries (4-pack),1,3.84,2019-12-02 10:48:00,389 Walnut St, San Francisco,CA,94016 +316045,Vareebadd Phone,1,400.0,2019-12-28 20:07:00,810 Highland St, Los Angeles,CA,90001 +316046,AAA Batteries (4-pack),1,2.99,2019-12-14 13:43:00,718 Madison St, Portland,OR,97035 +316047,AAA Batteries (4-pack),1,2.99,2019-12-24 21:27:00,197 Park St, Portland,OR,97035 +316048,27in 4K Gaming Monitor,1,389.99,2019-12-05 01:40:00,44 Center St, Atlanta,GA,30301 +316049,ThinkPad Laptop,1,999.99,2019-12-31 06:28:00,213 Madison St, San Francisco,CA,94016 +316050,Vareebadd Phone,1,400.0,2019-12-30 22:38:00,760 6th St, Atlanta,GA,30301 +316051,ThinkPad Laptop,1,999.99,2019-12-04 08:15:00,995 Lakeview St, Los Angeles,CA,90001 +316052,AA Batteries (4-pack),1,3.84,2019-12-10 19:12:00,880 Washington St, San Francisco,CA,94016 +316053,34in Ultrawide Monitor,1,379.99,2019-12-10 00:17:00,758 11th St, Atlanta,GA,30301 +316054,Apple Airpods Headphones,1,150.0,2019-12-14 11:25:00,99 Johnson St, Los Angeles,CA,90001 +316055,Wired Headphones,1,11.99,2019-12-10 20:53:00,365 Madison St, Dallas,TX,75001 +316056,Apple Airpods Headphones,1,150.0,2019-12-10 09:57:00,370 Hill St, Seattle,WA,98101 +316057,Apple Airpods Headphones,1,150.0,2019-12-22 22:48:00,108 9th St, New York City,NY,10001 +316058,Wired Headphones,1,11.99,2019-12-22 23:47:00,221 Spruce St, San Francisco,CA,94016 +316059,ThinkPad Laptop,1,999.99,2019-12-20 19:21:00,934 1st St, New York City,NY,10001 +316060,Lightning Charging Cable,1,14.95,2019-12-01 11:59:00,5 Meadow St, Austin,TX,73301 +316061,Lightning Charging Cable,1,14.95,2019-12-09 18:17:00,150 Sunset St, Seattle,WA,98101 +316062,Macbook Pro Laptop,1,1700.0,2019-12-09 16:53:00,573 North St, San Francisco,CA,94016 +316063,20in Monitor,1,109.99,2019-12-22 01:25:00,203 Spruce St, Portland,OR,97035 +316064,USB-C Charging Cable,2,11.95,2019-12-12 14:12:00,211 8th St, Los Angeles,CA,90001 +316065,Macbook Pro Laptop,1,1700.0,2019-12-09 22:28:00,984 Lincoln St, San Francisco,CA,94016 +316066,Lightning Charging Cable,1,14.95,2019-12-14 19:53:00,606 Hickory St, San Francisco,CA,94016 +316067,AA Batteries (4-pack),1,3.84,2019-12-26 20:34:00,662 11th St, Boston,MA,02215 +316068,USB-C Charging Cable,1,11.95,2019-12-14 12:37:00,600 Ridge St, Los Angeles,CA,90001 +316069,Apple Airpods Headphones,1,150.0,2019-12-08 10:57:00,182 West St, San Francisco,CA,94016 +316070,Bose SoundSport Headphones,1,99.99,2019-12-20 19:02:00,890 Johnson St, Seattle,WA,98101 +316071,Bose SoundSport Headphones,1,99.99,2019-12-24 16:01:00,638 8th St, San Francisco,CA,94016 +316072,AA Batteries (4-pack),1,3.84,2019-12-11 06:22:00,779 Elm St, New York City,NY,10001 +316073,AA Batteries (4-pack),3,3.84,2019-12-08 11:57:00,776 Forest St, Atlanta,GA,30301 +316073,USB-C Charging Cable,1,11.95,2019-12-08 11:57:00,776 Forest St, Atlanta,GA,30301 +316074,Wired Headphones,1,11.99,2019-12-20 20:06:00,314 Spruce St, Atlanta,GA,30301 +316075,USB-C Charging Cable,1,11.95,2019-12-15 01:00:00,102 Johnson St, Atlanta,GA,30301 +316076,AA Batteries (4-pack),1,3.84,2019-12-03 14:12:00,630 Lakeview St, Seattle,WA,98101 +316077,Google Phone,1,600.0,2019-12-08 00:41:00,562 North St, San Francisco,CA,94016 +316077,USB-C Charging Cable,1,11.95,2019-12-08 00:41:00,562 North St, San Francisco,CA,94016 +316078,USB-C Charging Cable,1,11.95,2019-12-12 15:01:00,944 Park St, Los Angeles,CA,90001 +316079,AAA Batteries (4-pack),1,2.99,2019-12-31 20:51:00,901 Walnut St, Seattle,WA,98101 +316080,Apple Airpods Headphones,1,150.0,2019-12-06 18:33:00,24 South St, Los Angeles,CA,90001 +316081,Lightning Charging Cable,1,14.95,2019-12-14 21:36:00,345 1st St, Austin,TX,73301 +316082,27in FHD Monitor,1,149.99,2019-12-15 19:01:00,936 Maple St, San Francisco,CA,94016 +316083,Apple Airpods Headphones,1,150.0,2019-12-13 18:24:00,122 Spruce St, San Francisco,CA,94016 +316084,Lightning Charging Cable,1,14.95,2019-12-09 19:18:00,967 Walnut St, San Francisco,CA,94016 +316085,34in Ultrawide Monitor,1,379.99,2019-12-07 06:57:00,738 Forest St, Austin,TX,73301 +316086,AA Batteries (4-pack),4,3.84,2019-12-18 20:13:00,8 12th St, Seattle,WA,98101 +316087,Flatscreen TV,1,300.0,2019-12-15 21:28:00,108 West St, San Francisco,CA,94016 +316088,Wired Headphones,1,11.99,2019-12-23 23:43:00,675 Hill St, San Francisco,CA,94016 +316089,AAA Batteries (4-pack),3,2.99,2019-12-03 17:33:00,339 1st St, Boston,MA,02215 +316090,Lightning Charging Cable,1,14.95,2019-12-20 15:18:00,616 5th St, Seattle,WA,98101 +316091,ThinkPad Laptop,1,999.99,2019-12-23 15:07:00,873 Sunset St, San Francisco,CA,94016 +316092,Bose SoundSport Headphones,1,99.99,2019-12-30 05:18:00,734 Jackson St, Atlanta,GA,30301 +316093,Lightning Charging Cable,1,14.95,2019-12-09 15:19:00,921 Forest St, Los Angeles,CA,90001 +316094,USB-C Charging Cable,1,11.95,2019-12-25 23:05:00,944 South St, Seattle,WA,98101 +316095,Lightning Charging Cable,1,14.95,2019-12-21 18:07:00,170 Pine St, New York City,NY,10001 +316096,Lightning Charging Cable,1,14.95,2019-12-23 08:29:00,135 River St, Dallas,TX,75001 +316097,USB-C Charging Cable,1,11.95,2019-12-30 23:24:00,657 10th St, Los Angeles,CA,90001 +316098,ThinkPad Laptop,1,999.99,2019-12-25 23:38:00,790 Dogwood St, New York City,NY,10001 +316099,Wired Headphones,1,11.99,2019-12-17 15:01:00,389 Forest St, Los Angeles,CA,90001 +316100,34in Ultrawide Monitor,1,379.99,2019-12-11 16:11:00,72 West St, New York City,NY,10001 +316101,AA Batteries (4-pack),1,3.84,2019-12-25 18:40:00,279 12th St, Los Angeles,CA,90001 +316102,Lightning Charging Cable,1,14.95,2019-12-23 11:11:00,357 9th St, Los Angeles,CA,90001 +316103,USB-C Charging Cable,1,11.95,2019-12-10 09:06:00,600 South St, Los Angeles,CA,90001 +316104,Flatscreen TV,1,300.0,2019-12-05 17:44:00,777 2nd St, New York City,NY,10001 +316105,USB-C Charging Cable,1,11.95,2019-12-07 13:50:00,432 Sunset St, New York City,NY,10001 +316106,Wired Headphones,1,11.99,2019-12-19 21:02:00,438 8th St, New York City,NY,10001 +316106,Apple Airpods Headphones,1,150.0,2019-12-19 21:02:00,438 8th St, New York City,NY,10001 +316107,AAA Batteries (4-pack),1,2.99,2019-12-12 13:44:00,234 Highland St, Seattle,WA,98101 +316108,AA Batteries (4-pack),1,3.84,2019-12-28 08:42:00,848 Adams St, New York City,NY,10001 +316109,USB-C Charging Cable,1,11.95,2019-12-22 18:45:00,811 2nd St, New York City,NY,10001 +316110,AA Batteries (4-pack),1,3.84,2019-12-09 14:38:00,811 Meadow St, Portland,OR,97035 +316111,USB-C Charging Cable,2,11.95,2019-12-07 20:30:00,677 Lake St, Seattle,WA,98101 +316112,Vareebadd Phone,1,400.0,2019-12-15 14:21:00,192 9th St, New York City,NY,10001 +316113,iPhone,1,700.0,2019-12-13 18:26:00,518 Madison St, San Francisco,CA,94016 +316114,Bose SoundSport Headphones,1,99.99,2019-12-05 08:20:00,589 Jackson St, Seattle,WA,98101 +316115,Apple Airpods Headphones,1,150.0,2019-12-05 12:31:00,38 Elm St, Boston,MA,02215 +316116,USB-C Charging Cable,1,11.95,2019-12-30 01:11:00,327 Elm St, Austin,TX,73301 +316117,Wired Headphones,1,11.99,2019-12-23 18:35:00,304 Madison St, Atlanta,GA,30301 +316118,Flatscreen TV,1,300.0,2019-12-24 10:04:00,223 Highland St, Austin,TX,73301 +316119,34in Ultrawide Monitor,1,379.99,2019-12-01 07:05:00,121 Cedar St, Dallas,TX,75001 +316120,AA Batteries (4-pack),2,3.84,2019-12-09 18:03:00,618 Madison St, Boston,MA,02215 +316121,AAA Batteries (4-pack),4,2.99,2019-12-16 14:25:00,371 Jackson St, Boston,MA,02215 +316122,AAA Batteries (4-pack),1,2.99,2019-12-03 13:35:00,470 Sunset St, Los Angeles,CA,90001 +316123,Wired Headphones,1,11.99,2019-12-29 23:30:00,884 Lincoln St, Atlanta,GA,30301 +316124,AA Batteries (4-pack),1,3.84,2019-12-19 13:38:00,122 Lakeview St, Boston,MA,02215 +316125,iPhone,1,700.0,2019-12-12 10:00:00,445 6th St, Seattle,WA,98101 +316126,USB-C Charging Cable,1,11.95,2019-12-31 03:18:00,49 2nd St, San Francisco,CA,94016 +316127,Google Phone,1,600.0,2019-12-26 09:50:00,839 South St, San Francisco,CA,94016 +316128,Google Phone,1,600.0,2019-12-06 12:13:00,8 Church St, Portland,OR,97035 +316129,AAA Batteries (4-pack),2,2.99,2019-12-16 10:06:00,284 Wilson St, New York City,NY,10001 +316130,Lightning Charging Cable,1,14.95,2019-12-09 16:57:00,492 Jefferson St, Portland,ME,04101 +316131,AAA Batteries (4-pack),2,2.99,2019-12-15 15:15:00,819 Forest St, Atlanta,GA,30301 +316132,USB-C Charging Cable,1,11.95,2019-12-13 12:52:00,269 Dogwood St, Atlanta,GA,30301 +316133,27in 4K Gaming Monitor,1,389.99,2019-12-25 19:43:00,7 6th St, Portland,OR,97035 +316133,ThinkPad Laptop,1,999.99,2019-12-25 19:43:00,7 6th St, Portland,OR,97035 +316134,Flatscreen TV,1,300.0,2019-12-06 14:37:00,768 Lincoln St, San Francisco,CA,94016 +316135,Wired Headphones,1,11.99,2019-12-09 11:19:00,646 South St, San Francisco,CA,94016 +316136,Lightning Charging Cable,1,14.95,2019-12-01 22:47:00,485 12th St, Boston,MA,02215 +316137,27in 4K Gaming Monitor,1,389.99,2019-12-20 22:14:00,819 Hickory St, Boston,MA,02215 +316138,USB-C Charging Cable,2,11.95,2019-12-13 19:38:00,726 Pine St, Dallas,TX,75001 +316139,Apple Airpods Headphones,1,150.0,2019-12-28 22:46:00,896 Cherry St, Boston,MA,02215 +316140,Lightning Charging Cable,1,14.95,2019-12-02 09:41:00,51 West St, Atlanta,GA,30301 +316141,USB-C Charging Cable,1,11.95,2019-12-25 11:40:00,455 Hickory St, San Francisco,CA,94016 +316142,Bose SoundSport Headphones,1,99.99,2019-12-17 19:02:00,824 Dogwood St, Portland,OR,97035 +316143,Wired Headphones,1,11.99,2019-12-30 22:33:00,157 Washington St, San Francisco,CA,94016 +316144,AA Batteries (4-pack),1,3.84,2019-12-31 20:52:00,311 5th St, New York City,NY,10001 +316145,Google Phone,1,600.0,2019-12-01 07:14:00,945 North St, San Francisco,CA,94016 +316146,iPhone,1,700.0,2019-12-24 01:09:00,702 Sunset St, Dallas,TX,75001 +316147,Wired Headphones,1,11.99,2019-12-14 16:23:00,102 Spruce St, Austin,TX,73301 +316148,ThinkPad Laptop,1,999.99,2019-12-04 21:29:00,223 Church St, Austin,TX,73301 +316149,AA Batteries (4-pack),1,3.84,2019-12-27 00:25:00,307 Main St, New York City,NY,10001 +316150,Apple Airpods Headphones,1,150.0,2019-12-19 08:56:00,73 Meadow St, San Francisco,CA,94016 +316151,Macbook Pro Laptop,1,1700.0,2019-12-03 20:46:00,302 Chestnut St, Dallas,TX,75001 +316152,AA Batteries (4-pack),1,3.84,2019-12-30 13:23:00,605 Willow St, New York City,NY,10001 +316153,Wired Headphones,2,11.99,2019-12-02 12:41:00,689 River St, Atlanta,GA,30301 +316154,AAA Batteries (4-pack),1,2.99,2019-12-29 11:40:00,109 Wilson St, New York City,NY,10001 +316155,ThinkPad Laptop,1,999.99,2019-12-19 22:55:00,247 14th St, Los Angeles,CA,90001 +316156,AA Batteries (4-pack),1,3.84,2019-12-11 13:38:00,151 Hill St, San Francisco,CA,94016 +316157,20in Monitor,1,109.99,2019-12-30 16:11:00,886 9th St, Los Angeles,CA,90001 +316158,USB-C Charging Cable,1,11.95,2019-12-23 18:55:00,509 South St, Dallas,TX,75001 +316159,USB-C Charging Cable,1,11.95,2019-12-17 13:01:00,728 7th St, San Francisco,CA,94016 +316160,AA Batteries (4-pack),2,3.84,2019-12-25 18:37:00,70 Adams St, San Francisco,CA,94016 +316161,27in 4K Gaming Monitor,1,389.99,2019-12-13 21:39:00,451 Walnut St, Portland,OR,97035 +316162,AA Batteries (4-pack),2,3.84,2019-12-14 19:27:00,598 Chestnut St, New York City,NY,10001 +316163,Bose SoundSport Headphones,1,99.99,2019-12-27 21:48:00,182 12th St, Los Angeles,CA,90001 +316164,AAA Batteries (4-pack),2,2.99,2019-12-05 16:55:00,825 12th St, San Francisco,CA,94016 +316165,Vareebadd Phone,1,400.0,2019-12-20 10:17:00,210 Chestnut St, Portland,OR,97035 +316166,AA Batteries (4-pack),1,3.84,2019-12-08 12:45:00,190 Spruce St, New York City,NY,10001 +316167,Lightning Charging Cable,1,14.95,2019-12-12 22:39:00,612 Center St, New York City,NY,10001 +316168,Macbook Pro Laptop,1,1700.0,2019-12-20 19:09:00,266 North St, San Francisco,CA,94016 +316169,AAA Batteries (4-pack),2,2.99,2019-12-21 11:10:00,657 7th St, Atlanta,GA,30301 +316170,USB-C Charging Cable,1,11.95,2019-12-27 11:23:00,886 Washington St, San Francisco,CA,94016 +316171,Wired Headphones,1,11.99,2019-12-27 13:38:00,199 4th St, New York City,NY,10001 +316172,27in 4K Gaming Monitor,1,389.99,2019-12-19 17:08:00,593 Maple St, Atlanta,GA,30301 +316173,AAA Batteries (4-pack),1,2.99,2019-12-22 22:44:00,907 Sunset St, Portland,OR,97035 +316174,Bose SoundSport Headphones,1,99.99,2019-12-20 12:01:00,364 Hickory St, Los Angeles,CA,90001 +316175,Lightning Charging Cable,1,14.95,2019-12-21 17:40:00,43 Meadow St, New York City,NY,10001 +316176,AAA Batteries (4-pack),2,2.99,2019-12-24 12:45:00,410 8th St, Los Angeles,CA,90001 +316177,Bose SoundSport Headphones,1,99.99,2019-12-07 13:45:00,143 Sunset St, New York City,NY,10001 +316178,Bose SoundSport Headphones,1,99.99,2019-12-08 11:22:00,18 9th St, Dallas,TX,75001 +316179,USB-C Charging Cable,1,11.95,2019-12-13 21:12:00,392 North St, Austin,TX,73301 +316180,AA Batteries (4-pack),1,3.84,2019-12-14 10:22:00,694 Dogwood St, Portland,OR,97035 +316181,USB-C Charging Cable,1,11.95,2019-12-06 16:46:00,373 9th St, Los Angeles,CA,90001 +316182,Bose SoundSport Headphones,1,99.99,2019-12-04 18:43:00,42 Adams St, San Francisco,CA,94016 +316183,27in FHD Monitor,1,149.99,2019-12-08 08:52:00,773 Center St, Los Angeles,CA,90001 +316184,AA Batteries (4-pack),2,3.84,2019-12-22 17:01:00,863 2nd St, San Francisco,CA,94016 +316185,Lightning Charging Cable,1,14.95,2019-12-14 07:44:00,104 11th St, New York City,NY,10001 +316186,27in 4K Gaming Monitor,1,389.99,2019-12-29 16:48:00,785 4th St, Atlanta,GA,30301 +316187,Wired Headphones,1,11.99,2019-12-24 20:32:00,901 Maple St, Dallas,TX,75001 +316188,Lightning Charging Cable,1,14.95,2019-12-25 09:25:00,229 Jefferson St, Boston,MA,02215 +316189,AAA Batteries (4-pack),1,2.99,2019-12-16 14:12:00,295 Lake St, Austin,TX,73301 +316190,27in 4K Gaming Monitor,1,389.99,2019-12-07 21:14:00,317 Park St, San Francisco,CA,94016 +316191,Wired Headphones,1,11.99,2019-12-26 17:53:00,824 Madison St, Portland,OR,97035 +316192,Wired Headphones,1,11.99,2019-12-27 19:54:00,355 Sunset St, San Francisco,CA,94016 +316193,USB-C Charging Cable,1,11.95,2019-12-30 15:36:00,982 Lakeview St, New York City,NY,10001 +316194,27in 4K Gaming Monitor,1,389.99,2019-12-17 10:55:00,577 12th St, Portland,OR,97035 +316195,Bose SoundSport Headphones,1,99.99,2019-12-31 12:45:00,631 Highland St, New York City,NY,10001 +316196,Google Phone,1,600.0,2019-12-18 22:52:00,685 Lake St, San Francisco,CA,94016 +316197,AAA Batteries (4-pack),1,2.99,2019-12-06 13:15:00,408 Dogwood St, Seattle,WA,98101 +316198,Lightning Charging Cable,1,14.95,2019-12-05 10:11:00,442 West St, Seattle,WA,98101 +316199,34in Ultrawide Monitor,1,379.99,2019-12-13 11:24:00,27 Forest St, New York City,NY,10001 +316200,iPhone,1,700.0,2019-12-23 19:24:00,934 Maple St, San Francisco,CA,94016 +316200,Apple Airpods Headphones,1,150.0,2019-12-23 19:24:00,934 Maple St, San Francisco,CA,94016 +316201,Macbook Pro Laptop,1,1700.0,2019-12-07 14:10:00,126 Adams St, Dallas,TX,75001 +316202,USB-C Charging Cable,1,11.95,2019-12-02 19:45:00,544 Dogwood St, Dallas,TX,75001 +316203,Wired Headphones,1,11.99,2019-12-21 21:41:00,525 Washington St, San Francisco,CA,94016 +316204,USB-C Charging Cable,1,11.95,2019-12-05 21:18:00,633 Forest St, San Francisco,CA,94016 +316205,iPhone,1,700.0,2019-12-18 21:29:00,253 Center St, Boston,MA,02215 +316205,Wired Headphones,1,11.99,2019-12-18 21:29:00,253 Center St, Boston,MA,02215 +316206,27in FHD Monitor,1,149.99,2019-12-22 09:43:00,363 11th St, San Francisco,CA,94016 +316207,AA Batteries (4-pack),1,3.84,2019-12-01 19:56:00,666 9th St, Portland,OR,97035 +316208,Macbook Pro Laptop,1,1700.0,2019-12-02 22:03:00,617 Park St, Boston,MA,02215 +316209,Bose SoundSport Headphones,1,99.99,2019-12-18 13:04:00,282 Washington St, Austin,TX,73301 +316210,Lightning Charging Cable,1,14.95,2019-12-27 01:56:00,634 5th St, San Francisco,CA,94016 +316211,Bose SoundSport Headphones,1,99.99,2019-12-31 14:56:00,17 Meadow St, Dallas,TX,75001 +316212,Macbook Pro Laptop,1,1700.0,2019-12-24 14:42:00,992 South St, Boston,MA,02215 +316213,AAA Batteries (4-pack),3,2.99,2019-12-06 13:07:00,586 Main St, Austin,TX,73301 +316214,Flatscreen TV,1,300.0,2019-12-09 15:40:00,452 13th St, Dallas,TX,75001 +316215,Bose SoundSport Headphones,1,99.99,2019-12-27 03:58:00,292 Sunset St, San Francisco,CA,94016 +316216,AAA Batteries (4-pack),1,2.99,2019-12-15 21:36:00,132 Highland St, San Francisco,CA,94016 +316217,AAA Batteries (4-pack),1,2.99,2019-12-11 14:51:00,500 Hill St, Atlanta,GA,30301 +316218,AAA Batteries (4-pack),2,2.99,2019-12-23 11:24:00,464 Johnson St, Boston,MA,02215 +316219,AA Batteries (4-pack),1,3.84,2019-12-25 11:22:00,757 Spruce St, San Francisco,CA,94016 +316220,AAA Batteries (4-pack),1,2.99,2019-12-31 07:39:00,935 6th St, Boston,MA,02215 +316221,iPhone,1,700.0,2019-12-19 15:23:00,361 North St, San Francisco,CA,94016 +316221,Apple Airpods Headphones,1,150.0,2019-12-19 15:23:00,361 North St, San Francisco,CA,94016 +316221,Wired Headphones,1,11.99,2019-12-19 15:23:00,361 North St, San Francisco,CA,94016 +316222,AAA Batteries (4-pack),1,2.99,2019-12-18 09:23:00,124 Willow St, Seattle,WA,98101 +316223,AA Batteries (4-pack),1,3.84,2019-12-27 09:45:00,248 Hickory St, San Francisco,CA,94016 +316224,AA Batteries (4-pack),1,3.84,2019-12-22 10:31:00,304 Hill St, New York City,NY,10001 +316225,Lightning Charging Cable,1,14.95,2019-12-04 19:38:00,129 8th St, New York City,NY,10001 +316226,27in FHD Monitor,1,149.99,2019-12-30 12:23:00,87 Hill St, Seattle,WA,98101 +316227,27in FHD Monitor,1,149.99,2019-12-18 11:18:00,657 Elm St, Seattle,WA,98101 +316228,AA Batteries (4-pack),1,3.84,2019-12-17 17:41:00,321 6th St, New York City,NY,10001 +316229,Bose SoundSport Headphones,1,99.99,2019-12-25 06:39:00,266 2nd St, Boston,MA,02215 +316230,Macbook Pro Laptop,1,1700.0,2019-12-17 00:36:00,452 6th St, San Francisco,CA,94016 +316231,Lightning Charging Cable,1,14.95,2019-12-31 09:18:00,598 North St, Boston,MA,02215 +316232,Wired Headphones,1,11.99,2019-12-07 20:00:00,518 North St, Boston,MA,02215 +316233,Wired Headphones,1,11.99,2019-12-12 15:59:00,344 North St, Portland,OR,97035 +316234,27in 4K Gaming Monitor,1,389.99,2019-12-04 10:39:00,520 12th St, Los Angeles,CA,90001 +316235,20in Monitor,1,109.99,2019-12-27 17:52:00,339 Jackson St, San Francisco,CA,94016 +316236,AAA Batteries (4-pack),2,2.99,2019-12-14 20:52:00,439 Johnson St, Atlanta,GA,30301 +316237,USB-C Charging Cable,1,11.95,2019-12-12 12:50:00,249 12th St, San Francisco,CA,94016 +316238,USB-C Charging Cable,1,11.95,2019-12-05 19:54:00,772 River St, Dallas,TX,75001 +316239,Wired Headphones,1,11.99,2019-12-22 09:30:00,394 Lake St, New York City,NY,10001 +316240,AA Batteries (4-pack),1,3.84,2019-12-22 13:15:00,355 Adams St, New York City,NY,10001 +316241,27in FHD Monitor,1,149.99,2019-12-11 20:04:00,595 1st St, San Francisco,CA,94016 +316242,AAA Batteries (4-pack),2,2.99,2019-12-07 10:55:00,146 Lakeview St, Dallas,TX,75001 +316243,Wired Headphones,1,11.99,2019-12-18 14:13:00,814 12th St, Boston,MA,02215 +316244,34in Ultrawide Monitor,1,379.99,2019-12-27 09:53:00,904 Center St, San Francisco,CA,94016 +316245,Apple Airpods Headphones,1,150.0,2019-12-17 22:26:00,557 Hickory St, Portland,OR,97035 +316246,iPhone,1,700.0,2019-12-20 12:59:00,213 Hill St, New York City,NY,10001 +316247,Lightning Charging Cable,2,14.95,2019-12-22 15:15:00,782 5th St, San Francisco,CA,94016 +316248,AA Batteries (4-pack),1,3.84,2019-12-06 19:55:00,980 Chestnut St, Los Angeles,CA,90001 +316249,Lightning Charging Cable,1,14.95,2019-12-02 19:26:00,291 11th St, Dallas,TX,75001 +316250,Wired Headphones,1,11.99,2019-12-21 23:50:00,714 Maple St, Dallas,TX,75001 +316251,iPhone,1,700.0,2019-12-06 08:41:00,639 Cedar St, New York City,NY,10001 +316252,AA Batteries (4-pack),1,3.84,2019-12-29 13:01:00,195 Meadow St, Atlanta,GA,30301 +316253,27in FHD Monitor,1,149.99,2019-12-28 17:11:00,811 Cherry St, Dallas,TX,75001 +316254,LG Washing Machine,1,600.0,2019-12-24 23:41:00,614 Johnson St, Boston,MA,02215 +316255,Lightning Charging Cable,1,14.95,2019-12-05 18:35:00,372 Church St, Los Angeles,CA,90001 +316256,27in FHD Monitor,1,149.99,2019-12-25 15:28:00,647 Pine St, San Francisco,CA,94016 +316257,USB-C Charging Cable,1,11.95,2019-12-24 11:49:00,2 Dogwood St, Boston,MA,02215 +316258,Google Phone,1,600.0,2019-12-04 09:51:00,496 River St, New York City,NY,10001 +316259,Wired Headphones,1,11.99,2019-12-22 12:17:00,370 Jackson St, San Francisco,CA,94016 +316260,AA Batteries (4-pack),1,3.84,2019-12-08 12:57:00,53 Madison St, Boston,MA,02215 +316261,27in FHD Monitor,1,149.99,2019-12-22 21:37:00,769 2nd St, San Francisco,CA,94016 +316262,AA Batteries (4-pack),2,3.84,2019-12-02 19:46:00,168 Johnson St, Dallas,TX,75001 +316263,USB-C Charging Cable,1,11.95,2019-12-18 21:01:00,725 Washington St, Los Angeles,CA,90001 +316264,USB-C Charging Cable,1,11.95,2019-12-24 09:13:00,13 Lakeview St, Los Angeles,CA,90001 +316265,AAA Batteries (4-pack),1,2.99,2019-12-13 22:16:00,504 Willow St, Boston,MA,02215 +316266,ThinkPad Laptop,1,999.99,2019-12-04 07:09:00,233 10th St, San Francisco,CA,94016 +316267,Wired Headphones,1,11.99,2019-12-18 08:20:00,908 Ridge St, Los Angeles,CA,90001 +316268,USB-C Charging Cable,1,11.95,2019-12-03 13:47:00,722 Meadow St, San Francisco,CA,94016 +316269,Google Phone,1,600.0,2019-12-15 20:06:00,538 5th St, Austin,TX,73301 +316270,34in Ultrawide Monitor,1,379.99,2019-12-07 19:34:00,830 Lincoln St, Los Angeles,CA,90001 +316271,USB-C Charging Cable,1,11.95,2019-12-25 17:18:00,944 Johnson St, Atlanta,GA,30301 +316272,AAA Batteries (4-pack),1,2.99,2019-12-22 19:50:00,382 Lakeview St, Los Angeles,CA,90001 +316273,Lightning Charging Cable,1,14.95,2019-12-06 18:42:00,901 Cedar St, Los Angeles,CA,90001 +316274,Bose SoundSport Headphones,1,99.99,2019-12-22 02:44:00,752 Lake St, Portland,OR,97035 +316275,iPhone,1,700.0,2019-12-12 04:45:00,900 Ridge St, Boston,MA,02215 +316276,27in FHD Monitor,1,149.99,2019-12-03 23:40:00,679 Highland St, Los Angeles,CA,90001 +316277,34in Ultrawide Monitor,1,379.99,2019-12-28 13:23:00,256 6th St, New York City,NY,10001 +316278,27in 4K Gaming Monitor,1,389.99,2019-12-07 23:42:00,758 Cherry St, New York City,NY,10001 +316279,AAA Batteries (4-pack),3,2.99,2019-12-27 08:57:00,325 Meadow St, New York City,NY,10001 +316280,Bose SoundSport Headphones,1,99.99,2019-12-11 10:30:00,208 Chestnut St, New York City,NY,10001 +316281,AA Batteries (4-pack),1,3.84,2019-12-18 00:19:00,561 Chestnut St, Los Angeles,CA,90001 +316282,20in Monitor,1,109.99,2019-12-22 21:02:00,498 Lake St, Dallas,TX,75001 +316283,Flatscreen TV,1,300.0,2019-12-11 21:23:00,227 Willow St, New York City,NY,10001 +316284,Flatscreen TV,1,300.0,2019-12-29 15:24:00,895 Willow St, New York City,NY,10001 +316285,USB-C Charging Cable,1,11.95,2019-12-05 18:28:00,797 Ridge St, New York City,NY,10001 +316286,20in Monitor,1,109.99,2019-12-21 08:36:00,712 West St, Los Angeles,CA,90001 +316287,27in FHD Monitor,1,149.99,2019-12-08 20:24:00,903 9th St, San Francisco,CA,94016 +316288,AAA Batteries (4-pack),2,2.99,2019-12-06 01:29:00,216 Cherry St, Seattle,WA,98101 +316289,Wired Headphones,1,11.99,2019-12-05 00:03:00,963 Jackson St, San Francisco,CA,94016 +316290,Bose SoundSport Headphones,1,99.99,2019-12-04 20:54:00,519 Jefferson St, Boston,MA,02215 +316291,Flatscreen TV,1,300.0,2019-12-21 22:19:00,338 Chestnut St, New York City,NY,10001 +316292,20in Monitor,1,109.99,2019-12-10 16:22:00,898 13th St, San Francisco,CA,94016 +316293,Vareebadd Phone,1,400.0,2019-12-15 20:20:00,268 Ridge St, Los Angeles,CA,90001 +316294,AA Batteries (4-pack),1,3.84,2019-12-08 14:34:00,799 Church St, New York City,NY,10001 +316295,AAA Batteries (4-pack),1,2.99,2019-12-23 03:06:00,40 Park St, New York City,NY,10001 +316296,AAA Batteries (4-pack),1,2.99,2019-12-14 13:17:00,316 Church St, San Francisco,CA,94016 +316297,AAA Batteries (4-pack),1,2.99,2019-12-16 13:36:00,430 9th St, Boston,MA,02215 +316298,Wired Headphones,1,11.99,2019-12-28 15:56:00,17 Washington St, San Francisco,CA,94016 +316298,AA Batteries (4-pack),1,3.84,2019-12-28 15:56:00,17 Washington St, San Francisco,CA,94016 +316299,AA Batteries (4-pack),1,3.84,2019-12-09 05:45:00,6 Washington St, Los Angeles,CA,90001 +316300,USB-C Charging Cable,1,11.95,2019-12-04 14:23:00,771 12th St, New York City,NY,10001 +316301,Vareebadd Phone,1,400.0,2019-12-30 19:13:00,585 9th St, San Francisco,CA,94016 +316301,USB-C Charging Cable,1,11.95,2019-12-30 19:13:00,585 9th St, San Francisco,CA,94016 +316302,AA Batteries (4-pack),1,3.84,2019-12-30 16:24:00,755 Wilson St, San Francisco,CA,94016 +316303,Wired Headphones,1,11.99,2019-12-27 19:31:00,313 9th St, New York City,NY,10001 +316304,USB-C Charging Cable,2,11.95,2019-12-14 20:28:00,18 Main St, Los Angeles,CA,90001 +316305,Macbook Pro Laptop,1,1700.0,2019-12-17 17:39:00,240 Wilson St, Dallas,TX,75001 +316306,USB-C Charging Cable,1,11.95,2019-12-10 17:05:00,312 Adams St, Seattle,WA,98101 +316307,AAA Batteries (4-pack),1,2.99,2019-12-09 02:25:00,438 Cherry St, Atlanta,GA,30301 +316308,Bose SoundSport Headphones,1,99.99,2019-12-16 17:05:00,720 12th St, Los Angeles,CA,90001 +316309,Apple Airpods Headphones,1,150.0,2019-12-17 13:26:00,315 Jackson St, Los Angeles,CA,90001 +316310,Wired Headphones,1,11.99,2019-12-18 11:47:00,237 North St, Portland,OR,97035 +316311,LG Washing Machine,1,600.0,2019-12-16 12:44:00,477 Cedar St, New York City,NY,10001 +316312,Bose SoundSport Headphones,1,99.99,2019-12-01 20:03:00,85 Ridge St, San Francisco,CA,94016 +316313,USB-C Charging Cable,1,11.95,2019-12-15 13:23:00,499 Church St, Portland,ME,04101 +316314,AA Batteries (4-pack),3,3.84,2019-12-23 11:04:00,980 Cedar St, Los Angeles,CA,90001 +316315,Lightning Charging Cable,1,14.95,2019-12-19 20:21:00,549 Johnson St, New York City,NY,10001 +316316,Apple Airpods Headphones,1,150.0,2019-12-07 18:38:00,452 North St, San Francisco,CA,94016 +316317,Apple Airpods Headphones,1,150.0,2019-12-25 18:05:00,369 Maple St, San Francisco,CA,94016 +316318,Wired Headphones,1,11.99,2019-12-06 12:45:00,100 South St, Los Angeles,CA,90001 +316319,Wired Headphones,1,11.99,2019-12-28 10:14:00,79 River St, Los Angeles,CA,90001 +316320,Bose SoundSport Headphones,1,99.99,2019-12-06 14:19:00,613 10th St, Los Angeles,CA,90001 +316321,Apple Airpods Headphones,1,150.0,2019-12-18 22:35:00,81 Lakeview St, Boston,MA,02215 +316322,27in 4K Gaming Monitor,1,389.99,2019-12-09 15:50:00,188 Cherry St, Portland,OR,97035 +316323,Bose SoundSport Headphones,1,99.99,2019-12-20 17:29:00,474 Johnson St, New York City,NY,10001 +316324,AAA Batteries (4-pack),2,2.99,2019-12-22 01:25:00,62 6th St, Seattle,WA,98101 +316325,27in FHD Monitor,1,149.99,2019-12-07 10:15:00,855 Willow St, Seattle,WA,98101 +316326,Bose SoundSport Headphones,1,99.99,2019-12-20 19:18:00,812 Church St, Seattle,WA,98101 +316327,Apple Airpods Headphones,1,150.0,2019-12-16 02:00:00,640 Jefferson St, Portland,OR,97035 +316328,USB-C Charging Cable,1,11.95,2019-12-27 20:25:00,900 Willow St, Seattle,WA,98101 +316329,Wired Headphones,1,11.99,2019-12-28 15:13:00,723 Hickory St, San Francisco,CA,94016 +316330,Bose SoundSport Headphones,1,99.99,2019-12-11 14:50:00,352 Washington St, New York City,NY,10001 +316331,AAA Batteries (4-pack),1,2.99,2019-12-21 20:57:00,377 4th St, San Francisco,CA,94016 +316332,AA Batteries (4-pack),1,3.84,2019-12-02 13:46:00,577 Cherry St, Los Angeles,CA,90001 +316333,iPhone,1,700.0,2019-12-16 04:20:00,604 Sunset St, San Francisco,CA,94016 +316334,Wired Headphones,1,11.99,2019-12-04 23:42:00,621 Cherry St, New York City,NY,10001 +316334,Apple Airpods Headphones,1,150.0,2019-12-04 23:42:00,621 Cherry St, New York City,NY,10001 +316335,Macbook Pro Laptop,1,1700.0,2019-12-04 20:13:00,534 Jackson St, New York City,NY,10001 +316336,USB-C Charging Cable,1,11.95,2019-12-31 12:42:00,644 Willow St, San Francisco,CA,94016 +316337,27in 4K Gaming Monitor,1,389.99,2019-12-01 17:21:00,394 9th St, New York City,NY,10001 +316338,USB-C Charging Cable,1,11.95,2019-12-19 20:50:00,772 Hickory St, San Francisco,CA,94016 +316339,Lightning Charging Cable,1,14.95,2019-12-07 17:44:00,59 13th St, Portland,OR,97035 +316340,ThinkPad Laptop,1,999.99,2019-12-24 19:53:00,664 Meadow St, Dallas,TX,75001 +316341,AAA Batteries (4-pack),1,2.99,2019-12-22 09:35:00,603 Johnson St, Dallas,TX,75001 +316342,Macbook Pro Laptop,1,1700.0,2019-12-29 19:21:00,690 Jefferson St, Dallas,TX,75001 +316343,20in Monitor,1,109.99,2019-12-07 23:35:00,401 South St, San Francisco,CA,94016 +316344,Wired Headphones,1,11.99,2019-12-09 23:23:00,295 Wilson St, San Francisco,CA,94016 +316345,Lightning Charging Cable,1,14.95,2019-12-15 12:15:00,597 14th St, Los Angeles,CA,90001 +316346,34in Ultrawide Monitor,1,379.99,2019-12-02 11:01:00,319 Adams St, Portland,OR,97035 +316347,Lightning Charging Cable,1,14.95,2019-12-24 13:52:00,28 10th St, New York City,NY,10001 +316348,Lightning Charging Cable,1,14.95,2019-12-25 09:24:00,285 10th St, San Francisco,CA,94016 +316349,Lightning Charging Cable,1,14.95,2019-12-07 13:02:00,177 2nd St, Portland,OR,97035 +316350,Wired Headphones,1,11.99,2019-12-02 22:32:00,280 Sunset St, Dallas,TX,75001 +316351,Wired Headphones,1,11.99,2019-12-14 14:18:00,142 Cedar St, New York City,NY,10001 +316352,34in Ultrawide Monitor,1,379.99,2019-12-30 10:05:00,907 Center St, Dallas,TX,75001 +316353,Flatscreen TV,1,300.0,2019-12-08 07:37:00,665 Washington St, San Francisco,CA,94016 +316354,Macbook Pro Laptop,1,1700.0,2019-12-14 08:44:00,999 Main St, Seattle,WA,98101 +316355,AA Batteries (4-pack),1,3.84,2019-12-12 23:36:00,895 Lake St, San Francisco,CA,94016 +316356,AA Batteries (4-pack),1,3.84,2019-12-02 08:13:00,554 West St, New York City,NY,10001 +316357,Wired Headphones,1,11.99,2019-12-25 20:42:00,49 Highland St, San Francisco,CA,94016 +316358,USB-C Charging Cable,1,11.95,2019-12-04 15:43:00,276 12th St, San Francisco,CA,94016 +316359,AA Batteries (4-pack),3,3.84,2019-12-09 13:15:00,870 Lakeview St, Los Angeles,CA,90001 +316360,AA Batteries (4-pack),1,3.84,2019-12-04 11:48:00,51 Maple St, Austin,TX,73301 +316361,Apple Airpods Headphones,1,150.0,2019-12-21 09:58:00,578 Madison St, Austin,TX,73301 +316362,AA Batteries (4-pack),1,3.84,2019-12-17 01:32:00,483 Hill St, Austin,TX,73301 +316363,AA Batteries (4-pack),1,3.84,2019-12-15 23:08:00,264 7th St, Dallas,TX,75001 +316364,Flatscreen TV,1,300.0,2019-12-01 18:40:00,614 Hickory St, Atlanta,GA,30301 +316365,USB-C Charging Cable,1,11.95,2019-12-26 22:00:00,959 Cedar St, Austin,TX,73301 +316366,USB-C Charging Cable,1,11.95,2019-12-06 16:47:00,757 Park St, Dallas,TX,75001 +316367,AAA Batteries (4-pack),1,2.99,2019-12-10 01:11:00,307 Madison St, Los Angeles,CA,90001 +316368,iPhone,1,700.0,2019-12-05 13:53:00,81 Jackson St, San Francisco,CA,94016 +316369,AAA Batteries (4-pack),3,2.99,2019-12-14 21:41:00,263 Ridge St, San Francisco,CA,94016 +316370,27in 4K Gaming Monitor,1,389.99,2019-12-24 17:47:00,575 Park St, San Francisco,CA,94016 +316371,Lightning Charging Cable,1,14.95,2019-12-26 11:04:00,147 12th St, Seattle,WA,98101 +316372,AAA Batteries (4-pack),1,2.99,2019-12-15 23:08:00,39 6th St, Boston,MA,02215 +316373,Flatscreen TV,1,300.0,2019-12-08 12:10:00,477 Hickory St, Los Angeles,CA,90001 +316374,Apple Airpods Headphones,1,150.0,2019-12-17 19:34:00,329 Dogwood St, Portland,ME,04101 +316375,USB-C Charging Cable,1,11.95,2019-12-19 23:28:00,463 Hickory St, Portland,OR,97035 +316376,27in 4K Gaming Monitor,1,389.99,2019-12-22 09:38:00,349 Maple St, Atlanta,GA,30301 +316377,AAA Batteries (4-pack),1,2.99,2019-12-20 13:37:00,858 Hill St, Los Angeles,CA,90001 +316378,Macbook Pro Laptop,1,1700.0,2019-12-28 20:06:00,572 10th St, Dallas,TX,75001 +316379,Apple Airpods Headphones,1,150.0,2019-12-18 19:04:00,839 Lakeview St, New York City,NY,10001 +316380,AAA Batteries (4-pack),1,2.99,2019-12-11 20:22:00,324 Meadow St, Los Angeles,CA,90001 +316381,AA Batteries (4-pack),1,3.84,2019-12-28 16:31:00,236 Washington St, Seattle,WA,98101 +316382,Bose SoundSport Headphones,1,99.99,2019-12-01 11:19:00,243 Walnut St, Los Angeles,CA,90001 +316383,Macbook Pro Laptop,1,1700.0,2019-12-04 09:59:00,422 Park St, San Francisco,CA,94016 +316384,Lightning Charging Cable,1,14.95,2019-12-21 23:43:00,431 Walnut St, Atlanta,GA,30301 +316385,iPhone,1,700.0,2019-12-24 05:58:00,353 2nd St, Austin,TX,73301 +316386,USB-C Charging Cable,1,11.95,2019-12-31 11:00:00,108 Wilson St, Los Angeles,CA,90001 +316387,AAA Batteries (4-pack),1,2.99,2019-12-31 01:14:00,762 Dogwood St, San Francisco,CA,94016 +316388,AA Batteries (4-pack),2,3.84,2019-12-28 12:15:00,397 Elm St, San Francisco,CA,94016 +316389,Apple Airpods Headphones,1,150.0,2019-12-11 14:17:00,189 Adams St, San Francisco,CA,94016 +316390,Apple Airpods Headphones,1,150.0,2019-12-27 08:26:00,171 Maple St, San Francisco,CA,94016 +316391,Bose SoundSport Headphones,1,99.99,2019-12-03 22:05:00,744 Chestnut St, Seattle,WA,98101 +316392,Apple Airpods Headphones,1,150.0,2019-12-27 22:28:00,547 Madison St, Los Angeles,CA,90001 +316393,Wired Headphones,1,11.99,2019-12-02 15:12:00,518 Sunset St, San Francisco,CA,94016 +316394,USB-C Charging Cable,1,11.95,2019-12-08 18:47:00,384 11th St, Atlanta,GA,30301 +316395,AA Batteries (4-pack),1,3.84,2019-12-22 21:30:00,567 6th St, Portland,OR,97035 +316396,Wired Headphones,1,11.99,2019-12-02 22:25:00,165 North St, Dallas,TX,75001 +316397,Apple Airpods Headphones,1,150.0,2019-12-30 12:48:00,48 Hill St, Boston,MA,02215 +316398,USB-C Charging Cable,1,11.95,2019-12-28 14:44:00,819 Lake St, New York City,NY,10001 +316399,Bose SoundSport Headphones,1,99.99,2019-12-28 12:02:00,645 Lincoln St, Los Angeles,CA,90001 +316400,AAA Batteries (4-pack),1,2.99,2019-12-01 19:57:00,411 Adams St, San Francisco,CA,94016 +316401,USB-C Charging Cable,1,11.95,2019-12-27 17:29:00,785 West St, Dallas,TX,75001 +316402,Flatscreen TV,1,300.0,2019-12-28 23:04:00,417 10th St, Dallas,TX,75001 +316403,AAA Batteries (4-pack),2,2.99,2019-12-23 21:32:00,807 Elm St, Dallas,TX,75001 +316404,Lightning Charging Cable,1,14.95,2019-12-23 13:00:00,395 Hill St, Los Angeles,CA,90001 +316405,AAA Batteries (4-pack),1,2.99,2019-12-25 16:15:00,680 West St, San Francisco,CA,94016 +316406,AAA Batteries (4-pack),3,2.99,2019-12-17 01:38:00,113 14th St, San Francisco,CA,94016 +316407,AAA Batteries (4-pack),2,2.99,2019-12-02 19:29:00,153 River St, San Francisco,CA,94016 +316408,USB-C Charging Cable,1,11.95,2019-12-22 11:40:00,358 14th St, San Francisco,CA,94016 +316409,Bose SoundSport Headphones,1,99.99,2019-12-05 16:24:00,635 5th St, San Francisco,CA,94016 +316410,AA Batteries (4-pack),1,3.84,2019-12-28 12:58:00,287 Chestnut St, Portland,OR,97035 +316411,Lightning Charging Cable,1,14.95,2019-12-15 15:19:00,182 11th St, New York City,NY,10001 +316411,27in FHD Monitor,1,149.99,2019-12-15 15:19:00,182 11th St, New York City,NY,10001 +316412,iPhone,1,700.0,2019-12-06 12:12:00,140 River St, Los Angeles,CA,90001 +316412,Lightning Charging Cable,1,14.95,2019-12-06 12:12:00,140 River St, Los Angeles,CA,90001 +316412,Apple Airpods Headphones,1,150.0,2019-12-06 12:12:00,140 River St, Los Angeles,CA,90001 +316413,AA Batteries (4-pack),2,3.84,2019-12-27 15:19:00,806 5th St, Los Angeles,CA,90001 +316414,Lightning Charging Cable,1,14.95,2019-12-06 12:56:00,892 Main St, Los Angeles,CA,90001 +316415,Google Phone,1,600.0,2019-12-06 13:44:00,684 5th St, Boston,MA,02215 +316416,AA Batteries (4-pack),1,3.84,2019-12-07 16:47:00,177 North St, San Francisco,CA,94016 +316416,Lightning Charging Cable,2,14.95,2019-12-07 16:47:00,177 North St, San Francisco,CA,94016 +316417,Macbook Pro Laptop,1,1700.0,2019-12-05 16:36:00,785 Elm St, Portland,OR,97035 +316418,Lightning Charging Cable,1,14.95,2019-12-14 12:56:00,204 14th St, Dallas,TX,75001 +316419,USB-C Charging Cable,1,11.95,2019-12-04 05:44:00,524 Spruce St, San Francisco,CA,94016 +316419,AA Batteries (4-pack),1,3.84,2019-12-04 05:44:00,524 Spruce St, San Francisco,CA,94016 +316420,Macbook Pro Laptop,1,1700.0,2019-12-30 19:24:00,866 Hill St, Atlanta,GA,30301 +316421,Lightning Charging Cable,1,14.95,2019-12-06 17:06:00,693 Lincoln St, New York City,NY,10001 +316422,AAA Batteries (4-pack),2,2.99,2019-12-24 11:16:00,3 10th St, San Francisco,CA,94016 +316423,iPhone,1,700.0,2019-12-30 23:22:00,965 Lake St, New York City,NY,10001 +316423,AAA Batteries (4-pack),1,2.99,2019-12-30 23:22:00,965 Lake St, New York City,NY,10001 +316424,Lightning Charging Cable,1,14.95,2019-12-03 19:06:00,916 Lincoln St, Boston,MA,02215 +316425,USB-C Charging Cable,2,11.95,2019-12-04 14:27:00,113 13th St, Seattle,WA,98101 +316426,AA Batteries (4-pack),1,3.84,2019-12-18 16:13:00,734 10th St, Seattle,WA,98101 +316427,Apple Airpods Headphones,1,150.0,2019-12-23 18:23:00,190 10th St, Dallas,TX,75001 +316428,USB-C Charging Cable,1,11.95,2019-12-12 19:38:00,439 Lakeview St, Austin,TX,73301 +316429,AA Batteries (4-pack),1,3.84,2019-12-22 17:28:00,4 West St, New York City,NY,10001 +316430,AAA Batteries (4-pack),2,2.99,2019-12-12 16:58:00,516 Adams St, Portland,OR,97035 +316431,Vareebadd Phone,1,400.0,2019-12-18 11:36:00,674 Ridge St, Portland,ME,04101 +316431,USB-C Charging Cable,1,11.95,2019-12-18 11:36:00,674 Ridge St, Portland,ME,04101 +316432,Flatscreen TV,1,300.0,2019-12-19 17:53:00,571 Center St, Dallas,TX,75001 +316433,27in FHD Monitor,1,149.99,2019-12-08 15:21:00,121 12th St, Portland,OR,97035 +316434,AA Batteries (4-pack),1,3.84,2019-12-05 11:26:00,759 Highland St, San Francisco,CA,94016 +316435,Apple Airpods Headphones,1,150.0,2019-12-07 14:44:00,73 Cedar St, San Francisco,CA,94016 +316436,AA Batteries (4-pack),1,3.84,2019-12-03 05:20:00,781 Jefferson St, Dallas,TX,75001 +316437,AA Batteries (4-pack),1,3.84,2019-12-09 14:04:00,700 Dogwood St, San Francisco,CA,94016 +316438,AA Batteries (4-pack),1,3.84,2019-12-22 10:09:00,763 Lake St, New York City,NY,10001 +316439,Bose SoundSport Headphones,1,99.99,2019-12-24 14:20:00,876 14th St, Los Angeles,CA,90001 +316440,USB-C Charging Cable,1,11.95,2019-12-28 16:42:00,430 Pine St, San Francisco,CA,94016 +316441,Bose SoundSport Headphones,1,99.99,2019-12-27 15:58:00,342 Lakeview St, Boston,MA,02215 +316442,Wired Headphones,1,11.99,2019-12-28 09:55:00,76 Washington St, Los Angeles,CA,90001 +316443,27in FHD Monitor,1,149.99,2019-12-09 22:13:00,864 Lakeview St, Los Angeles,CA,90001 +316444,Wired Headphones,1,11.99,2019-12-17 22:06:00,784 Church St, New York City,NY,10001 +316445,iPhone,1,700.0,2019-12-29 13:58:00,252 Hill St, San Francisco,CA,94016 +316445,Lightning Charging Cable,1,14.95,2019-12-29 13:58:00,252 Hill St, San Francisco,CA,94016 +316446,AAA Batteries (4-pack),1,2.99,2019-12-05 11:26:00,903 11th St, Los Angeles,CA,90001 +316447,34in Ultrawide Monitor,1,379.99,2019-12-01 09:17:00,797 2nd St, San Francisco,CA,94016 +316448,Macbook Pro Laptop,1,1700.0,2019-12-05 10:32:00,882 13th St, Atlanta,GA,30301 +316449,Lightning Charging Cable,1,14.95,2019-12-15 21:22:00,895 8th St, Los Angeles,CA,90001 +316450,AAA Batteries (4-pack),1,2.99,2019-12-28 01:54:00,387 Elm St, Austin,TX,73301 +316451,USB-C Charging Cable,1,11.95,2019-12-13 21:06:00,231 Adams St, Atlanta,GA,30301 +316452,Lightning Charging Cable,1,14.95,2019-12-12 17:16:00,120 Johnson St, San Francisco,CA,94016 +316453,27in FHD Monitor,1,149.99,2019-12-04 13:19:00,243 Elm St, Dallas,TX,75001 +316454,Lightning Charging Cable,1,14.95,2019-12-22 01:26:00,631 13th St, Seattle,WA,98101 +316455,Bose SoundSport Headphones,1,99.99,2019-12-03 17:09:00,716 12th St, Boston,MA,02215 +316456,27in 4K Gaming Monitor,1,389.99,2019-12-10 17:29:00,667 Cherry St, San Francisco,CA,94016 +316457,USB-C Charging Cable,1,11.95,2019-12-14 18:19:00,779 Highland St, Los Angeles,CA,90001 +316458,27in FHD Monitor,1,149.99,2019-12-30 12:49:00,187 Dogwood St, San Francisco,CA,94016 +316459,Google Phone,1,600.0,2019-12-06 09:48:00,393 Cedar St, Boston,MA,02215 +316460,Google Phone,1,600.0,2019-12-29 18:55:00,589 Johnson St, New York City,NY,10001 +316461,27in FHD Monitor,1,149.99,2019-12-06 12:15:00,570 Meadow St, Austin,TX,73301 +316462,AA Batteries (4-pack),2,3.84,2019-12-19 20:23:00,255 4th St, Portland,ME,04101 +316463,Flatscreen TV,1,300.0,2019-12-14 19:23:00,756 Adams St, Portland,OR,97035 +316464,AA Batteries (4-pack),1,3.84,2019-12-14 10:01:00,118 Walnut St, Los Angeles,CA,90001 +316465,Vareebadd Phone,1,400.0,2019-12-28 15:28:00,18 2nd St, Dallas,TX,75001 +316466,Lightning Charging Cable,1,14.95,2019-12-06 07:25:00,850 Hickory St, Portland,OR,97035 +316467,27in FHD Monitor,1,149.99,2019-12-04 16:23:00,322 6th St, New York City,NY,10001 +316468,Lightning Charging Cable,1,14.95,2019-12-18 13:04:00,514 10th St, San Francisco,CA,94016 +316469,Google Phone,1,600.0,2019-12-04 15:09:00,954 South St, San Francisco,CA,94016 +316470,USB-C Charging Cable,1,11.95,2019-12-14 10:03:00,883 Forest St, Los Angeles,CA,90001 +316471,USB-C Charging Cable,1,11.95,2019-12-24 23:37:00,93 Cherry St, Boston,MA,02215 +316472,AA Batteries (4-pack),2,3.84,2019-12-29 19:59:00,425 Wilson St, Los Angeles,CA,90001 +316473,USB-C Charging Cable,1,11.95,2019-12-09 15:19:00,232 Jackson St, Atlanta,GA,30301 +316474,27in FHD Monitor,1,149.99,2019-12-21 19:48:00,362 Chestnut St, Los Angeles,CA,90001 +316475,AAA Batteries (4-pack),2,2.99,2019-12-19 20:30:00,399 River St, New York City,NY,10001 +316476,iPhone,1,700.0,2019-12-21 11:17:00,316 Walnut St, Portland,OR,97035 +316476,Lightning Charging Cable,1,14.95,2019-12-21 11:17:00,316 Walnut St, Portland,OR,97035 +316477,iPhone,1,700.0,2019-12-20 10:01:00,616 Walnut St, Austin,TX,73301 +316477,Lightning Charging Cable,1,14.95,2019-12-20 10:01:00,616 Walnut St, Austin,TX,73301 +316478,34in Ultrawide Monitor,1,379.99,2019-12-27 21:33:00,924 South St, Los Angeles,CA,90001 +316479,AA Batteries (4-pack),1,3.84,2019-12-06 16:19:00,970 Cedar St, Seattle,WA,98101 +316480,27in FHD Monitor,1,149.99,2019-12-07 19:57:00,761 Lakeview St, San Francisco,CA,94016 +316481,Wired Headphones,1,11.99,2019-12-26 00:26:00,26 2nd St, Dallas,TX,75001 +316482,AA Batteries (4-pack),1,3.84,2019-12-13 17:11:00,701 Madison St, Boston,MA,02215 +316483,Bose SoundSport Headphones,1,99.99,2019-12-28 14:37:00,211 Lincoln St, Boston,MA,02215 +316484,34in Ultrawide Monitor,1,379.99,2019-12-13 18:02:00,581 Forest St, San Francisco,CA,94016 +316485,AA Batteries (4-pack),1,3.84,2019-12-30 15:49:00,46 Elm St, Portland,OR,97035 +316486,USB-C Charging Cable,1,11.95,2019-12-23 12:44:00,210 Ridge St, Dallas,TX,75001 +316487,Lightning Charging Cable,1,14.95,2019-12-13 19:16:00,402 13th St, Los Angeles,CA,90001 +316488,Lightning Charging Cable,1,14.95,2019-12-10 19:15:00,933 Spruce St, Seattle,WA,98101 +316489,Lightning Charging Cable,1,14.95,2019-12-03 17:16:00,948 Washington St, New York City,NY,10001 +316490,Lightning Charging Cable,2,14.95,2019-12-27 15:36:00,831 Dogwood St, New York City,NY,10001 +316491,Wired Headphones,1,11.99,2019-12-03 02:23:00,202 Cedar St, Boston,MA,02215 +316492,AAA Batteries (4-pack),1,2.99,2019-12-17 19:11:00,527 Elm St, Seattle,WA,98101 +316493,27in FHD Monitor,1,149.99,2019-12-19 22:52:00,624 Washington St, New York City,NY,10001 +316494,AAA Batteries (4-pack),1,2.99,2019-12-21 12:34:00,899 Hickory St, San Francisco,CA,94016 +316495,Wired Headphones,1,11.99,2019-12-27 22:08:00,676 North St, San Francisco,CA,94016 +316496,USB-C Charging Cable,1,11.95,2019-12-10 12:08:00,877 Maple St, Los Angeles,CA,90001 +316497,AA Batteries (4-pack),1,3.84,2019-12-14 13:25:00,54 Center St, Atlanta,GA,30301 +316498,AA Batteries (4-pack),1,3.84,2019-12-31 17:19:00,319 Jackson St, New York City,NY,10001 +316499,Bose SoundSport Headphones,1,99.99,2019-12-08 10:47:00,248 Johnson St, New York City,NY,10001 +316500,27in FHD Monitor,1,149.99,2019-12-04 13:08:00,272 Lake St, Los Angeles,CA,90001 +316501,Bose SoundSport Headphones,1,99.99,2019-12-21 13:43:00,7 Ridge St, Seattle,WA,98101 +316502,Wired Headphones,1,11.99,2019-12-11 19:02:00,77 Forest St, San Francisco,CA,94016 +316503,USB-C Charging Cable,1,11.95,2019-12-08 09:06:00,775 Pine St, Los Angeles,CA,90001 +316504,AA Batteries (4-pack),3,3.84,2019-12-10 22:12:00,591 Meadow St, New York City,NY,10001 +316505,Lightning Charging Cable,1,14.95,2019-12-07 20:35:00,610 Church St, Portland,OR,97035 +316506,Macbook Pro Laptop,1,1700.0,2019-12-22 19:25:00,747 6th St, Portland,OR,97035 +316507,34in Ultrawide Monitor,1,379.99,2019-12-03 12:46:00,751 7th St, Boston,MA,02215 +316508,AA Batteries (4-pack),2,3.84,2019-12-23 13:11:00,348 Center St, San Francisco,CA,94016 +316509,AAA Batteries (4-pack),1,2.99,2019-12-05 10:05:00,91 Sunset St, New York City,NY,10001 +316510,27in 4K Gaming Monitor,1,389.99,2019-12-31 08:24:00,943 Madison St, New York City,NY,10001 +316511,iPhone,1,700.0,2019-12-06 14:24:00,56 Hickory St, Dallas,TX,75001 +316512,iPhone,1,700.0,2019-12-15 23:32:00,510 Center St, Austin,TX,73301 +316513,AA Batteries (4-pack),1,3.84,2019-12-01 12:27:00,529 6th St, Los Angeles,CA,90001 +316514,AAA Batteries (4-pack),2,2.99,2019-12-13 11:29:00,959 12th St, New York City,NY,10001 +316515,AA Batteries (4-pack),1,3.84,2019-12-28 20:37:00,460 Washington St, New York City,NY,10001 +316516,AAA Batteries (4-pack),1,2.99,2019-12-14 14:33:00,524 Madison St, Dallas,TX,75001 +316517,Google Phone,1,600.0,2019-12-16 17:51:00,484 Spruce St, San Francisco,CA,94016 +316518,AAA Batteries (4-pack),1,2.99,2019-12-23 13:04:00,277 Adams St, San Francisco,CA,94016 +316519,AAA Batteries (4-pack),1,2.99,2019-12-13 15:42:00,12 Forest St, Los Angeles,CA,90001 +316520,ThinkPad Laptop,1,999.99,2019-12-12 20:21:00,60 West St, San Francisco,CA,94016 +316521,Wired Headphones,1,11.99,2019-12-04 17:22:00,13 13th St, Los Angeles,CA,90001 +316522,Wired Headphones,1,11.99,2019-12-08 00:30:00,206 10th St, Portland,OR,97035 +316523,AA Batteries (4-pack),1,3.84,2019-12-12 08:42:00,264 Madison St, Los Angeles,CA,90001 +316524,AA Batteries (4-pack),1,3.84,2019-12-29 18:32:00,742 2nd St, San Francisco,CA,94016 +316525,AA Batteries (4-pack),2,3.84,2019-12-22 11:06:00,271 Meadow St, New York City,NY,10001 +316526,Bose SoundSport Headphones,1,99.99,2019-12-16 12:51:00,159 Pine St, Portland,OR,97035 +316527,ThinkPad Laptop,1,999.99,2019-12-12 21:47:00,31 Park St, San Francisco,CA,94016 +316528,Apple Airpods Headphones,2,150.0,2019-12-05 09:39:00,585 Center St, Austin,TX,73301 +316529,ThinkPad Laptop,1,999.99,2019-12-17 15:32:00,451 Cedar St, New York City,NY,10001 +316530,Wired Headphones,1,11.99,2019-12-28 03:17:00,234 Hill St, Atlanta,GA,30301 +316531,Bose SoundSport Headphones,1,99.99,2019-12-22 14:04:00,403 Johnson St, Los Angeles,CA,90001 +316532,USB-C Charging Cable,1,11.95,2019-12-24 17:36:00,812 Cedar St, San Francisco,CA,94016 +316533,Bose SoundSport Headphones,1,99.99,2019-12-04 16:11:00,962 11th St, Atlanta,GA,30301 +316534,Lightning Charging Cable,1,14.95,2019-12-17 17:04:00,890 1st St, Dallas,TX,75001 +316535,ThinkPad Laptop,1,999.99,2019-12-19 13:22:00,954 South St, San Francisco,CA,94016 +316536,27in FHD Monitor,1,149.99,2019-12-29 15:36:00,89 Chestnut St, San Francisco,CA,94016 +316536,AAA Batteries (4-pack),1,2.99,2019-12-29 15:36:00,89 Chestnut St, San Francisco,CA,94016 +316537,Flatscreen TV,1,300.0,2019-12-22 02:48:00,375 12th St, San Francisco,CA,94016 +316538,Lightning Charging Cable,1,14.95,2019-12-01 11:15:00,182 12th St, Los Angeles,CA,90001 +316539,Apple Airpods Headphones,1,150.0,2019-12-22 16:31:00,744 11th St, Dallas,TX,75001 +316540,USB-C Charging Cable,1,11.95,2019-12-12 02:25:00,915 2nd St, Los Angeles,CA,90001 +316541,USB-C Charging Cable,1,11.95,2019-12-02 15:14:00,915 Lincoln St, Seattle,WA,98101 +316542,Lightning Charging Cable,1,14.95,2019-12-29 11:00:00,107 8th St, Austin,TX,73301 +316543,Bose SoundSport Headphones,1,99.99,2019-12-15 21:52:00,278 Meadow St, Seattle,WA,98101 +316544,AAA Batteries (4-pack),1,2.99,2019-12-12 10:56:00,541 Willow St, New York City,NY,10001 +316545,AAA Batteries (4-pack),1,2.99,2019-12-08 10:47:00,578 Highland St, Dallas,TX,75001 +316546,iPhone,1,700.0,2019-12-22 14:41:00,843 Lake St, San Francisco,CA,94016 +316547,Vareebadd Phone,1,400.0,2019-12-26 13:26:00,586 Madison St, Austin,TX,73301 +316548,Apple Airpods Headphones,1,150.0,2019-12-21 14:25:00,389 9th St, Boston,MA,02215 +316549,Bose SoundSport Headphones,1,99.99,2019-12-30 19:53:00,261 Highland St, Boston,MA,02215 +316550,Google Phone,1,600.0,2019-12-04 22:08:00,293 Park St, Boston,MA,02215 +316550,USB-C Charging Cable,1,11.95,2019-12-04 22:08:00,293 Park St, Boston,MA,02215 +316551,Lightning Charging Cable,1,14.95,2019-12-16 03:53:00,921 South St, Seattle,WA,98101 +316552,AA Batteries (4-pack),1,3.84,2019-12-19 13:25:00,290 Lakeview St, New York City,NY,10001 +316553,iPhone,1,700.0,2019-12-04 21:08:00,572 Dogwood St, Portland,OR,97035 +316554,Apple Airpods Headphones,1,150.0,2019-12-07 21:01:00,479 Church St, San Francisco,CA,94016 +316555,Wired Headphones,1,11.99,2019-12-26 22:31:00,128 Church St, San Francisco,CA,94016 +316556,Bose SoundSport Headphones,1,99.99,2019-12-02 22:29:00,211 Main St, San Francisco,CA,94016 +316557,USB-C Charging Cable,1,11.95,2019-12-08 15:24:00,630 5th St, Dallas,TX,75001 +316558,Apple Airpods Headphones,1,150.0,2019-12-22 10:29:00,867 13th St, San Francisco,CA,94016 +316559,27in 4K Gaming Monitor,1,389.99,2019-12-11 19:21:00,390 Washington St, Boston,MA,02215 +316560,AAA Batteries (4-pack),2,2.99,2019-12-17 10:53:00,488 Hill St, Dallas,TX,75001 +316561,AAA Batteries (4-pack),1,2.99,2019-12-14 17:53:00,254 Wilson St, Austin,TX,73301 +316562,AA Batteries (4-pack),2,3.84,2019-12-13 08:34:00,383 Ridge St, New York City,NY,10001 +316563,USB-C Charging Cable,1,11.95,2019-12-24 19:17:00,556 Cherry St, Los Angeles,CA,90001 +316564,AAA Batteries (4-pack),1,2.99,2019-12-24 06:55:00,934 Wilson St, San Francisco,CA,94016 +316565,Wired Headphones,1,11.99,2019-12-08 23:28:00,731 Cherry St, New York City,NY,10001 +316566,AAA Batteries (4-pack),1,2.99,2019-12-17 21:01:00,6 Highland St, Atlanta,GA,30301 +316567,AA Batteries (4-pack),2,3.84,2019-12-22 10:43:00,600 Hickory St, San Francisco,CA,94016 +316568,USB-C Charging Cable,1,11.95,2019-12-26 22:14:00,522 4th St, Los Angeles,CA,90001 +316569,27in 4K Gaming Monitor,1,389.99,2019-12-14 19:02:00,153 Lakeview St, Seattle,WA,98101 +316570,Wired Headphones,1,11.99,2019-12-10 16:41:00,932 Main St, New York City,NY,10001 +316571,Apple Airpods Headphones,1,150.0,2019-12-15 14:15:00,595 2nd St, Los Angeles,CA,90001 +316572,iPhone,1,700.0,2019-12-27 16:12:00,147 12th St, New York City,NY,10001 +316573,AAA Batteries (4-pack),1,2.99,2019-12-20 13:57:00,89 Chestnut St, New York City,NY,10001 +316574,AAA Batteries (4-pack),2,2.99,2019-12-17 21:49:00,155 Spruce St, San Francisco,CA,94016 +316575,Wired Headphones,1,11.99,2019-12-18 11:26:00,521 6th St, Dallas,TX,75001 +316576,Lightning Charging Cable,1,14.95,2019-12-26 19:25:00,81 Maple St, San Francisco,CA,94016 +316577,AAA Batteries (4-pack),1,2.99,2019-12-07 11:03:00,373 10th St, Atlanta,GA,30301 +316578,27in 4K Gaming Monitor,1,389.99,2019-12-01 18:14:00,340 Hickory St, Los Angeles,CA,90001 +316579,USB-C Charging Cable,1,11.95,2019-12-28 13:04:00,452 Willow St, San Francisco,CA,94016 +316580,USB-C Charging Cable,1,11.95,2019-12-22 12:36:00,398 10th St, Los Angeles,CA,90001 +316581,Google Phone,1,600.0,2019-12-14 14:49:00,849 Forest St, Seattle,WA,98101 +316582,AAA Batteries (4-pack),1,2.99,2019-12-25 00:09:00,473 Ridge St, Los Angeles,CA,90001 +316583,Lightning Charging Cable,1,14.95,2019-12-16 16:20:00,998 10th St, New York City,NY,10001 +316584,Google Phone,1,600.0,2019-12-17 21:45:00,512 11th St, New York City,NY,10001 +316584,Wired Headphones,1,11.99,2019-12-17 21:45:00,512 11th St, New York City,NY,10001 +316585,AA Batteries (4-pack),1,3.84,2019-12-03 23:14:00,753 Cherry St, Portland,OR,97035 +316586,Bose SoundSport Headphones,1,99.99,2019-12-09 20:51:00,836 West St, Seattle,WA,98101 +316587,Lightning Charging Cable,1,14.95,2019-12-11 09:34:00,165 Walnut St, San Francisco,CA,94016 +316588,Wired Headphones,1,11.99,2019-12-18 22:46:00,288 Jackson St, New York City,NY,10001 +316589,Lightning Charging Cable,1,14.95,2019-12-26 16:27:00,451 Lakeview St, Dallas,TX,75001 +316590,Lightning Charging Cable,1,14.95,2019-12-14 21:54:00,533 Park St, San Francisco,CA,94016 +316591,Bose SoundSport Headphones,1,99.99,2019-12-05 15:55:00,45 Washington St, San Francisco,CA,94016 +316592,ThinkPad Laptop,1,999.99,2019-12-08 20:17:00,597 13th St, Portland,OR,97035 +316593,20in Monitor,1,109.99,2019-12-06 15:42:00,683 8th St, San Francisco,CA,94016 +316594,27in FHD Monitor,1,149.99,2019-12-27 06:44:00,740 Lake St, New York City,NY,10001 +316595,Apple Airpods Headphones,1,150.0,2019-12-26 11:07:00,209 River St, San Francisco,CA,94016 +316596,27in 4K Gaming Monitor,1,389.99,2019-12-01 09:58:00,255 Washington St, San Francisco,CA,94016 +316597,Lightning Charging Cable,1,14.95,2019-12-23 09:16:00,131 Sunset St, San Francisco,CA,94016 +316598,Wired Headphones,1,11.99,2019-12-27 20:47:00,751 Spruce St, Austin,TX,73301 +316599,20in Monitor,1,109.99,2019-12-15 22:02:00,345 7th St, San Francisco,CA,94016 +316600,AAA Batteries (4-pack),2,2.99,2019-12-02 19:36:00,170 Jackson St, San Francisco,CA,94016 +316601,AA Batteries (4-pack),2,3.84,2019-12-05 11:34:00,332 Maple St, Portland,OR,97035 +316602,Bose SoundSport Headphones,1,99.99,2019-12-25 17:11:00,454 Chestnut St, Boston,MA,02215 +316603,Wired Headphones,1,11.99,2019-12-13 15:54:00,944 Forest St, San Francisco,CA,94016 +316604,Wired Headphones,1,11.99,2019-12-13 23:40:00,527 Meadow St, Austin,TX,73301 +316605,Bose SoundSport Headphones,1,99.99,2019-12-08 18:45:00,926 Sunset St, Seattle,WA,98101 +316606,34in Ultrawide Monitor,1,379.99,2019-12-19 16:46:00,590 12th St, Atlanta,GA,30301 +316607,AA Batteries (4-pack),1,3.84,2019-12-23 20:10:00,486 North St, Seattle,WA,98101 +316608,ThinkPad Laptop,1,999.99,2019-12-03 12:35:00,683 Elm St, San Francisco,CA,94016 +316609,34in Ultrawide Monitor,1,379.99,2019-12-10 19:34:00,656 Park St, New York City,NY,10001 +316610,Vareebadd Phone,1,400.0,2019-12-06 18:12:00,642 2nd St, Los Angeles,CA,90001 +316610,USB-C Charging Cable,1,11.95,2019-12-06 18:12:00,642 2nd St, Los Angeles,CA,90001 +316610,Wired Headphones,1,11.99,2019-12-06 18:12:00,642 2nd St, Los Angeles,CA,90001 +316611,AAA Batteries (4-pack),2,2.99,2019-12-13 17:31:00,551 5th St, San Francisco,CA,94016 +316612,Wired Headphones,1,11.99,2019-12-20 09:49:00,326 Cherry St, Los Angeles,CA,90001 +316613,ThinkPad Laptop,1,999.99,2019-12-26 00:37:00,334 Jackson St, San Francisco,CA,94016 +316614,Wired Headphones,1,11.99,2019-12-02 17:43:00,589 Jefferson St, New York City,NY,10001 +316615,Google Phone,1,600.0,2019-12-04 00:09:00,690 6th St, Atlanta,GA,30301 +316615,USB-C Charging Cable,1,11.95,2019-12-04 00:09:00,690 6th St, Atlanta,GA,30301 +316616,iPhone,1,700.0,2019-12-21 08:55:00,379 Lake St, San Francisco,CA,94016 +316616,Apple Airpods Headphones,1,150.0,2019-12-21 08:55:00,379 Lake St, San Francisco,CA,94016 +316617,AA Batteries (4-pack),2,3.84,2019-12-02 13:16:00,102 Maple St, Seattle,WA,98101 +316618,27in FHD Monitor,1,149.99,2019-12-14 10:24:00,990 Johnson St, New York City,NY,10001 +316619,Lightning Charging Cable,1,14.95,2019-12-15 11:02:00,768 14th St, Los Angeles,CA,90001 +316620,Macbook Pro Laptop,1,1700.0,2019-12-01 18:05:00,745 Center St, Austin,TX,73301 +316621,27in 4K Gaming Monitor,1,389.99,2019-12-24 19:35:00,681 Cedar St, Seattle,WA,98101 +316622,USB-C Charging Cable,1,11.95,2019-12-22 15:26:00,43 Cherry St, Portland,OR,97035 +316623,27in FHD Monitor,1,149.99,2019-12-23 00:09:00,547 5th St, New York City,NY,10001 +316624,Lightning Charging Cable,2,14.95,2019-12-29 15:18:00,550 13th St, San Francisco,CA,94016 +316625,USB-C Charging Cable,1,11.95,2019-12-18 09:11:00,772 Lincoln St, New York City,NY,10001 +316626,Google Phone,1,600.0,2019-12-21 10:03:00,400 Forest St, Los Angeles,CA,90001 +316627,USB-C Charging Cable,2,11.95,2019-12-01 11:03:00,246 10th St, Dallas,TX,75001 +316628,USB-C Charging Cable,1,11.95,2019-12-08 17:32:00,850 7th St, New York City,NY,10001 +316629,Apple Airpods Headphones,1,150.0,2019-12-06 11:43:00,906 Johnson St, Boston,MA,02215 +316630,USB-C Charging Cable,1,11.95,2019-12-04 13:01:00,225 Cedar St, New York City,NY,10001 +316631,Apple Airpods Headphones,1,150.0,2019-12-25 11:37:00,229 South St, Atlanta,GA,30301 +316632,Lightning Charging Cable,1,14.95,2019-12-11 15:35:00,966 Sunset St, San Francisco,CA,94016 +316633,Flatscreen TV,1,300.0,2019-12-25 06:39:00,368 Lake St, Portland,ME,04101 +316634,USB-C Charging Cable,1,11.95,2019-12-22 18:34:00,397 Spruce St, Los Angeles,CA,90001 +316635,Bose SoundSport Headphones,1,99.99,2019-12-04 13:17:00,210 Walnut St, San Francisco,CA,94016 +316636,Wired Headphones,1,11.99,2019-12-18 15:22:00,666 Center St, Los Angeles,CA,90001 +316637,iPhone,1,700.0,2019-12-17 13:14:00,746 7th St, San Francisco,CA,94016 +316638,27in FHD Monitor,1,149.99,2019-12-20 15:06:00,620 9th St, San Francisco,CA,94016 +316639,AAA Batteries (4-pack),1,2.99,2019-12-21 12:40:00,668 West St, Boston,MA,02215 +316640,Lightning Charging Cable,1,14.95,2019-12-11 18:04:00,264 Spruce St, New York City,NY,10001 +316641,Wired Headphones,1,11.99,2019-12-09 02:46:00,935 11th St, Los Angeles,CA,90001 +316642,AA Batteries (4-pack),1,3.84,2019-12-12 16:27:00,160 Hill St, Seattle,WA,98101 +316643,USB-C Charging Cable,1,11.95,2019-12-28 19:44:00,841 6th St, Dallas,TX,75001 +316644,USB-C Charging Cable,1,11.95,2019-12-13 09:39:00,10 Cedar St, Portland,OR,97035 +316645,Lightning Charging Cable,1,14.95,2019-12-14 11:56:00,801 Center St, Los Angeles,CA,90001 +316646,27in 4K Gaming Monitor,1,389.99,2019-12-16 21:52:00,240 River St, Los Angeles,CA,90001 +316647,AAA Batteries (4-pack),1,2.99,2019-12-11 21:06:00,120 9th St, San Francisco,CA,94016 +316648,Apple Airpods Headphones,1,150.0,2019-12-07 10:11:00,682 Forest St, Boston,MA,02215 +316649,Lightning Charging Cable,1,14.95,2019-12-17 17:19:00,81 Maple St, Seattle,WA,98101 +316650,AA Batteries (4-pack),3,3.84,2019-12-10 22:26:00,855 5th St, New York City,NY,10001 +316651,USB-C Charging Cable,1,11.95,2019-12-10 09:30:00,475 Main St, Boston,MA,02215 +316652,AA Batteries (4-pack),1,3.84,2019-12-24 09:12:00,849 Meadow St, San Francisco,CA,94016 +316653,Lightning Charging Cable,1,14.95,2019-12-15 17:56:00,808 Sunset St, Boston,MA,02215 +316654,Wired Headphones,2,11.99,2019-12-24 11:39:00,490 Highland St, Los Angeles,CA,90001 +316655,USB-C Charging Cable,1,11.95,2019-12-01 19:43:00,951 River St, New York City,NY,10001 +316656,Apple Airpods Headphones,1,150.0,2019-12-08 10:12:00,564 5th St, San Francisco,CA,94016 +316657,AAA Batteries (4-pack),1,2.99,2019-12-15 12:22:00,865 2nd St, Atlanta,GA,30301 +316658,Bose SoundSport Headphones,1,99.99,2019-12-08 22:09:00,405 2nd St, New York City,NY,10001 +316659,Wired Headphones,1,11.99,2019-12-28 19:22:00,859 Johnson St, San Francisco,CA,94016 +316660,LG Washing Machine,1,600.0,2019-12-11 12:41:00,797 6th St, Portland,OR,97035 +316661,AA Batteries (4-pack),2,3.84,2019-12-06 21:36:00,768 Hickory St, New York City,NY,10001 +316662,USB-C Charging Cable,1,11.95,2019-12-14 15:44:00,40 Church St, San Francisco,CA,94016 +316663,Bose SoundSport Headphones,1,99.99,2019-12-20 21:18:00,243 7th St, Portland,OR,97035 +316664,Lightning Charging Cable,1,14.95,2019-12-27 12:58:00,674 Johnson St, San Francisco,CA,94016 +316665,Wired Headphones,1,11.99,2019-12-07 18:09:00,58 Sunset St, San Francisco,CA,94016 +316666,34in Ultrawide Monitor,1,379.99,2019-12-17 14:07:00,977 River St, San Francisco,CA,94016 +316667,Lightning Charging Cable,1,14.95,2019-12-15 20:48:00,95 Spruce St, Austin,TX,73301 +316668,AAA Batteries (4-pack),3,2.99,2019-12-06 22:26:00,745 14th St, Dallas,TX,75001 +316669,Lightning Charging Cable,1,14.95,2019-12-30 21:37:00,236 9th St, Atlanta,GA,30301 +316670,27in FHD Monitor,1,149.99,2019-12-12 10:08:00,783 Pine St, Seattle,WA,98101 +316671,20in Monitor,1,109.99,2019-12-12 09:58:00,872 Spruce St, Los Angeles,CA,90001 +316672,Bose SoundSport Headphones,1,99.99,2019-12-10 17:29:00,6 Sunset St, San Francisco,CA,94016 +316673,Lightning Charging Cable,1,14.95,2019-12-24 18:33:00,734 South St, Portland,OR,97035 +316674,AA Batteries (4-pack),1,3.84,2019-12-01 16:45:00,870 North St, Los Angeles,CA,90001 +316675,Wired Headphones,1,11.99,2019-12-26 18:56:00,708 Jefferson St, Dallas,TX,75001 +316676,Lightning Charging Cable,1,14.95,2019-12-22 02:20:00,918 1st St, San Francisco,CA,94016 +316677,Apple Airpods Headphones,1,150.0,2019-12-18 09:42:00,202 South St, Austin,TX,73301 +316678,Bose SoundSport Headphones,1,99.99,2019-12-26 12:17:00,212 Elm St, Austin,TX,73301 +316679,USB-C Charging Cable,1,11.95,2019-12-25 18:09:00,192 Cedar St, Seattle,WA,98101 +316680,27in FHD Monitor,1,149.99,2019-12-29 07:30:00,473 13th St, Los Angeles,CA,90001 +316681,Macbook Pro Laptop,1,1700.0,2019-12-17 12:15:00,926 Jefferson St, San Francisco,CA,94016 +316682,USB-C Charging Cable,1,11.95,2019-12-25 18:02:00,505 5th St, Atlanta,GA,30301 +316682,Google Phone,1,600.0,2019-12-25 18:02:00,505 5th St, Atlanta,GA,30301 +316683,AA Batteries (4-pack),1,3.84,2019-12-29 15:21:00,214 South St, San Francisco,CA,94016 +316684,AAA Batteries (4-pack),1,2.99,2019-12-18 07:10:00,804 Lakeview St, New York City,NY,10001 +316685,Flatscreen TV,1,300.0,2019-12-16 01:54:00,941 12th St, Los Angeles,CA,90001 +316686,Bose SoundSport Headphones,1,99.99,2019-12-30 19:02:00,187 Jackson St, Los Angeles,CA,90001 +316687,Bose SoundSport Headphones,1,99.99,2019-12-25 21:07:00,543 Center St, Los Angeles,CA,90001 +316688,AA Batteries (4-pack),2,3.84,2019-12-19 08:53:00,198 6th St, New York City,NY,10001 +316689,AAA Batteries (4-pack),1,2.99,2019-12-26 23:35:00,911 Elm St, Atlanta,GA,30301 +316690,Macbook Pro Laptop,1,1700.0,2019-12-13 20:36:00,364 Jackson St, San Francisco,CA,94016 +316691,Apple Airpods Headphones,1,150.0,2019-12-27 00:07:00,467 Sunset St, Boston,MA,02215 +316692,Bose SoundSport Headphones,1,99.99,2019-12-05 19:07:00,49 Main St, Los Angeles,CA,90001 +316693,Macbook Pro Laptop,1,1700.0,2019-12-14 15:21:00,136 8th St, New York City,NY,10001 +316694,AAA Batteries (4-pack),1,2.99,2019-12-01 10:25:00,827 7th St, Atlanta,GA,30301 +316695,AA Batteries (4-pack),1,3.84,2019-12-05 10:51:00,823 Lake St, Austin,TX,73301 +316696,Lightning Charging Cable,1,14.95,2019-12-13 21:03:00,671 Highland St, Dallas,TX,75001 +316697,USB-C Charging Cable,1,11.95,2019-12-29 23:09:00,32 River St, Atlanta,GA,30301 +316698,USB-C Charging Cable,1,11.95,2019-12-26 17:56:00,611 1st St, Dallas,TX,75001 +316699,USB-C Charging Cable,1,11.95,2019-12-09 11:06:00,192 Lake St, Austin,TX,73301 +316700,iPhone,1,700.0,2019-12-13 13:33:00,796 North St, Austin,TX,73301 +316701,USB-C Charging Cable,1,11.95,2019-12-25 20:36:00,137 North St, Portland,OR,97035 +316702,iPhone,1,700.0,2019-12-23 14:20:00,178 Center St, San Francisco,CA,94016 +316703,27in FHD Monitor,1,149.99,2019-12-07 09:14:00,386 Spruce St, San Francisco,CA,94016 +316704,USB-C Charging Cable,1,11.95,2019-12-13 17:49:00,789 Hill St, San Francisco,CA,94016 +316705,Macbook Pro Laptop,1,1700.0,2019-12-06 12:00:00,945 7th St, San Francisco,CA,94016 +316706,AA Batteries (4-pack),1,3.84,2019-12-05 20:32:00,851 Jefferson St, Boston,MA,02215 +316706,Flatscreen TV,1,300.0,2019-12-05 20:32:00,851 Jefferson St, Boston,MA,02215 +316707,Apple Airpods Headphones,1,150.0,2019-12-16 07:25:00,75 12th St, Austin,TX,73301 +316708,Macbook Pro Laptop,1,1700.0,2019-12-31 13:15:00,779 River St, Los Angeles,CA,90001 +316709,AAA Batteries (4-pack),1,2.99,2019-12-08 11:33:00,460 13th St, Los Angeles,CA,90001 +316710,Apple Airpods Headphones,1,150.0,2019-12-27 08:52:00,411 Adams St, Los Angeles,CA,90001 +316711,AA Batteries (4-pack),1,3.84,2019-12-19 07:43:00,164 Chestnut St, Los Angeles,CA,90001 +316712,Apple Airpods Headphones,1,150.0,2019-12-18 13:50:00,916 2nd St, Boston,MA,02215 +316713,iPhone,1,700.0,2019-12-30 18:32:00,587 Chestnut St, Seattle,WA,98101 +316714,34in Ultrawide Monitor,1,379.99,2019-12-19 20:14:00,507 West St, Los Angeles,CA,90001 +316715,Lightning Charging Cable,1,14.95,2019-12-29 21:18:00,329 Main St, San Francisco,CA,94016 +316716,Apple Airpods Headphones,1,150.0,2019-12-14 20:19:00,819 12th St, Atlanta,GA,30301 +316717,AA Batteries (4-pack),1,3.84,2019-12-07 21:38:00,868 Jackson St, Los Angeles,CA,90001 +316718,Apple Airpods Headphones,1,150.0,2019-12-17 13:27:00,900 Washington St, Boston,MA,02215 +316719,27in FHD Monitor,1,149.99,2019-12-11 14:30:00,85 Church St, Portland,ME,04101 +316720,20in Monitor,1,109.99,2019-12-15 23:01:00,402 Center St, Dallas,TX,75001 +316721,Lightning Charging Cable,1,14.95,2019-12-14 20:36:00,329 Dogwood St, New York City,NY,10001 +316722,AA Batteries (4-pack),1,3.84,2019-12-10 13:34:00,982 West St, Portland,OR,97035 +316723,iPhone,1,700.0,2019-12-25 12:16:00,120 Lakeview St, Boston,MA,02215 +316724,Apple Airpods Headphones,1,150.0,2019-12-03 20:51:00,74 7th St, San Francisco,CA,94016 +316725,AA Batteries (4-pack),1,3.84,2019-12-16 18:00:00,674 South St, New York City,NY,10001 +316726,Lightning Charging Cable,1,14.95,2019-12-23 19:07:00,635 1st St, Boston,MA,02215 +316727,AAA Batteries (4-pack),2,2.99,2019-12-17 11:56:00,468 Walnut St, Boston,MA,02215 +316728,AAA Batteries (4-pack),1,2.99,2019-12-09 12:07:00,957 Jefferson St, Dallas,TX,75001 +316729,27in 4K Gaming Monitor,1,389.99,2019-12-24 17:43:00,254 Sunset St, San Francisco,CA,94016 +316730,Wired Headphones,1,11.99,2019-12-07 09:49:00,377 Madison St, Los Angeles,CA,90001 +316731,Bose SoundSport Headphones,1,99.99,2019-12-27 02:27:00,980 12th St, Los Angeles,CA,90001 +316732,Apple Airpods Headphones,1,150.0,2019-12-23 18:21:00,248 Willow St, New York City,NY,10001 +316733,Wired Headphones,1,11.99,2019-12-14 13:41:00,284 Adams St, San Francisco,CA,94016 +316734,Lightning Charging Cable,1,14.95,2019-12-22 16:43:00,599 Lake St, Boston,MA,02215 +316735,Lightning Charging Cable,1,14.95,2019-12-11 19:27:00,217 4th St, Los Angeles,CA,90001 +316736,Bose SoundSport Headphones,1,99.99,2019-12-28 18:09:00,703 Walnut St, San Francisco,CA,94016 +316737,Apple Airpods Headphones,1,150.0,2019-12-10 14:56:00,350 8th St, San Francisco,CA,94016 +316738,Wired Headphones,1,11.99,2019-12-03 11:52:00,450 Jefferson St, Los Angeles,CA,90001 +316739,34in Ultrawide Monitor,1,379.99,2019-12-20 13:28:00,846 Park St, Dallas,TX,75001 +316740,27in 4K Gaming Monitor,1,389.99,2019-12-12 15:08:00,57 Maple St, Dallas,TX,75001 +316741,Google Phone,1,600.0,2019-12-14 20:51:00,572 Jefferson St, Atlanta,GA,30301 +316742,20in Monitor,1,109.99,2019-12-20 10:35:00,79 6th St, Austin,TX,73301 +316743,Apple Airpods Headphones,1,150.0,2019-12-27 08:19:00,251 Adams St, San Francisco,CA,94016 +316744,iPhone,1,700.0,2019-12-10 18:18:00,477 Hill St, Seattle,WA,98101 +316745,AA Batteries (4-pack),1,3.84,2019-12-07 07:22:00,403 Lake St, San Francisco,CA,94016 +316746,27in FHD Monitor,1,149.99,2019-12-02 16:22:00,180 Dogwood St, San Francisco,CA,94016 +316747,AA Batteries (4-pack),1,3.84,2019-12-31 19:33:00,964 7th St, San Francisco,CA,94016 +316748,AA Batteries (4-pack),1,3.84,2019-12-08 10:49:00,909 Cedar St, Austin,TX,73301 +316749,USB-C Charging Cable,1,11.95,2019-12-16 18:04:00,919 Chestnut St, San Francisco,CA,94016 +316750,Vareebadd Phone,1,400.0,2019-12-05 17:39:00,582 12th St, Dallas,TX,75001 +316751,Macbook Pro Laptop,1,1700.0,2019-12-20 01:58:00,731 Highland St, Atlanta,GA,30301 +316752,Flatscreen TV,1,300.0,2019-12-06 19:23:00,667 Cedar St, Los Angeles,CA,90001 +316753,Wired Headphones,1,11.99,2019-12-16 08:31:00,533 Jackson St, Atlanta,GA,30301 +316754,USB-C Charging Cable,1,11.95,2019-12-23 10:54:00,54 Cedar St, New York City,NY,10001 +316755,Wired Headphones,1,11.99,2019-12-25 20:35:00,892 Ridge St, San Francisco,CA,94016 +316755,27in 4K Gaming Monitor,1,389.99,2019-12-25 20:35:00,892 Ridge St, San Francisco,CA,94016 +316756,AAA Batteries (4-pack),1,2.99,2019-12-09 11:47:00,949 10th St, Dallas,TX,75001 +316757,AAA Batteries (4-pack),4,2.99,2019-12-03 07:11:00,644 North St, Dallas,TX,75001 +316758,Bose SoundSport Headphones,1,99.99,2019-12-30 21:22:00,840 Lakeview St, Los Angeles,CA,90001 +316759,27in FHD Monitor,1,149.99,2019-12-08 06:48:00,854 Wilson St, Boston,MA,02215 +316760,AA Batteries (4-pack),1,3.84,2019-12-16 13:43:00,624 10th St, Dallas,TX,75001 +316761,27in 4K Gaming Monitor,1,389.99,2019-12-06 11:22:00,994 Cedar St, Los Angeles,CA,90001 +316762,USB-C Charging Cable,1,11.95,2019-12-06 22:15:00,663 4th St, San Francisco,CA,94016 +316763,Bose SoundSport Headphones,1,99.99,2019-12-12 13:18:00,782 4th St, New York City,NY,10001 +316764,Lightning Charging Cable,1,14.95,2019-12-23 20:50:00,656 Sunset St, San Francisco,CA,94016 +316765,Lightning Charging Cable,1,14.95,2019-12-16 17:06:00,549 10th St, New York City,NY,10001 +316766,Apple Airpods Headphones,1,150.0,2019-12-06 15:01:00,306 Main St, Boston,MA,02215 +316767,USB-C Charging Cable,1,11.95,2019-12-24 12:19:00,547 Church St, San Francisco,CA,94016 +316768,27in 4K Gaming Monitor,1,389.99,2019-12-03 02:37:00,792 Meadow St, New York City,NY,10001 +316769,iPhone,1,700.0,2019-12-18 09:35:00,786 South St, New York City,NY,10001 +316770,Flatscreen TV,1,300.0,2019-12-11 07:46:00,331 14th St, Los Angeles,CA,90001 +316771,Lightning Charging Cable,1,14.95,2019-12-09 18:13:00,841 Meadow St, Atlanta,GA,30301 +316772,Apple Airpods Headphones,1,150.0,2019-12-15 06:23:00,681 Johnson St, San Francisco,CA,94016 +316773,Vareebadd Phone,1,400.0,2019-12-30 12:51:00,695 4th St, Los Angeles,CA,90001 +316774,iPhone,1,700.0,2019-12-26 16:07:00,931 West St, Los Angeles,CA,90001 +316774,Lightning Charging Cable,1,14.95,2019-12-26 16:07:00,931 West St, Los Angeles,CA,90001 +316775,iPhone,1,700.0,2019-12-20 11:38:00,397 Meadow St, Boston,MA,02215 +316776,Lightning Charging Cable,1,14.95,2019-12-01 12:44:00,768 9th St, Los Angeles,CA,90001 +316777,Lightning Charging Cable,1,14.95,2019-12-03 16:50:00,848 Willow St, Seattle,WA,98101 +316778,27in FHD Monitor,1,149.99,2019-12-15 11:36:00,938 11th St, Portland,OR,97035 +316779,AA Batteries (4-pack),3,3.84,2019-12-28 00:24:00,207 Meadow St, Boston,MA,02215 +316780,AA Batteries (4-pack),1,3.84,2019-12-01 18:22:00,927 Hill St, Los Angeles,CA,90001 +316781,USB-C Charging Cable,1,11.95,2019-12-19 15:30:00,806 7th St, Boston,MA,02215 +316782,AAA Batteries (4-pack),1,2.99,2019-12-13 21:12:00,266 Hill St, Boston,MA,02215 +316783,AAA Batteries (4-pack),4,2.99,2019-12-05 00:50:00,376 Center St, Dallas,TX,75001 +316783,USB-C Charging Cable,1,11.95,2019-12-05 00:50:00,376 Center St, Dallas,TX,75001 +316784,Lightning Charging Cable,1,14.95,2019-12-14 18:30:00,672 Chestnut St, San Francisco,CA,94016 +316785,Bose SoundSport Headphones,1,99.99,2019-12-19 12:50:00,280 Forest St, San Francisco,CA,94016 +316785,iPhone,1,700.0,2019-12-19 12:50:00,280 Forest St, San Francisco,CA,94016 +316786,AAA Batteries (4-pack),1,2.99,2019-12-06 01:51:00,202 Adams St, Los Angeles,CA,90001 +316787,20in Monitor,1,109.99,2019-12-18 08:07:00,957 2nd St, San Francisco,CA,94016 +316788,Wired Headphones,1,11.99,2019-12-19 20:47:00,32 Ridge St, San Francisco,CA,94016 +316789,AA Batteries (4-pack),1,3.84,2019-12-20 18:19:00,33 Forest St, Austin,TX,73301 +316790,Apple Airpods Headphones,1,150.0,2019-12-23 09:58:00,369 7th St, Los Angeles,CA,90001 +316791,ThinkPad Laptop,1,999.99,2019-12-12 15:18:00,638 Highland St, San Francisco,CA,94016 +316792,ThinkPad Laptop,1,999.99,2019-12-14 19:52:00,750 Dogwood St, Dallas,TX,75001 +316793,USB-C Charging Cable,1,11.95,2019-12-05 14:51:00,282 10th St, Dallas,TX,75001 +316794,Wired Headphones,1,11.99,2019-12-08 10:46:00,887 Madison St, New York City,NY,10001 +316795,20in Monitor,1,109.99,2019-12-23 13:36:00,850 Maple St, Portland,OR,97035 +316796,AAA Batteries (4-pack),1,2.99,2019-12-21 10:02:00,509 11th St, Los Angeles,CA,90001 +316797,Lightning Charging Cable,1,14.95,2019-12-17 16:16:00,469 Willow St, Los Angeles,CA,90001 +316798,Flatscreen TV,1,300.0,2019-12-08 10:28:00,231 Center St, Seattle,WA,98101 +316799,iPhone,1,700.0,2019-12-20 11:52:00,430 Main St, San Francisco,CA,94016 +316800,AA Batteries (4-pack),1,3.84,2019-12-26 15:23:00,264 Jefferson St, Los Angeles,CA,90001 +316801,Apple Airpods Headphones,1,150.0,2019-12-26 23:56:00,156 Cedar St, Austin,TX,73301 +316802,Flatscreen TV,1,300.0,2019-12-09 12:02:00,382 Adams St, Austin,TX,73301 +316803,AA Batteries (4-pack),1,3.84,2019-12-19 15:58:00,551 North St, Austin,TX,73301 +316804,Apple Airpods Headphones,1,150.0,2019-12-11 20:54:00,635 Ridge St, San Francisco,CA,94016 +316805,Bose SoundSport Headphones,1,99.99,2019-12-06 16:06:00,712 Chestnut St, Los Angeles,CA,90001 +316806,34in Ultrawide Monitor,1,379.99,2019-12-11 12:25:00,534 Wilson St, Seattle,WA,98101 +316807,USB-C Charging Cable,1,11.95,2019-12-12 19:26:00,882 Jefferson St, Atlanta,GA,30301 +316808,AAA Batteries (4-pack),1,2.99,2019-12-18 20:26:00,34 North St, San Francisco,CA,94016 +316809,AAA Batteries (4-pack),1,2.99,2019-12-28 09:35:00,319 14th St, Atlanta,GA,30301 +316810,USB-C Charging Cable,1,11.95,2019-12-07 13:43:00,947 10th St, Boston,MA,02215 +316811,Lightning Charging Cable,1,14.95,2019-12-20 09:09:00,168 West St, Dallas,TX,75001 +316812,USB-C Charging Cable,1,11.95,2019-12-13 18:57:00,819 Cherry St, San Francisco,CA,94016 +316813,AAA Batteries (4-pack),1,2.99,2019-12-24 09:46:00,973 Chestnut St, Atlanta,GA,30301 +316814,Google Phone,1,600.0,2019-12-03 11:49:00,684 Adams St, San Francisco,CA,94016 +316815,34in Ultrawide Monitor,1,379.99,2019-12-14 00:29:00,782 1st St, San Francisco,CA,94016 +316816,Lightning Charging Cable,1,14.95,2019-12-28 15:49:00,657 6th St, Portland,OR,97035 +316817,USB-C Charging Cable,1,11.95,2019-12-06 16:10:00,341 6th St, Dallas,TX,75001 +316818,Lightning Charging Cable,1,14.95,2019-12-18 17:31:00,594 Wilson St, Seattle,WA,98101 +316819,USB-C Charging Cable,1,11.95,2019-12-16 21:39:00,414 Elm St, Portland,OR,97035 +316820,AA Batteries (4-pack),2,3.84,2019-12-29 13:12:00,223 10th St, San Francisco,CA,94016 +316821,Lightning Charging Cable,1,14.95,2019-12-11 14:36:00,586 Pine St, Atlanta,GA,30301 +316821,ThinkPad Laptop,1,999.99,2019-12-11 14:36:00,586 Pine St, Atlanta,GA,30301 +316822,27in FHD Monitor,1,149.99,2019-12-11 21:10:00,182 Cherry St, San Francisco,CA,94016 +316823,USB-C Charging Cable,1,11.95,2019-12-14 19:29:00,58 Meadow St, New York City,NY,10001 +316824,AA Batteries (4-pack),2,3.84,2019-12-02 14:52:00,895 Walnut St, San Francisco,CA,94016 +316825,Macbook Pro Laptop,1,1700.0,2019-12-06 12:03:00,984 14th St, San Francisco,CA,94016 +316826,Bose SoundSport Headphones,1,99.99,2019-12-25 20:05:00,956 Highland St, Los Angeles,CA,90001 +316827,27in FHD Monitor,1,149.99,2019-12-25 15:19:00,866 Cedar St, New York City,NY,10001 +316828,Lightning Charging Cable,1,14.95,2019-12-29 22:52:00,154 2nd St, Boston,MA,02215 +316829,Bose SoundSport Headphones,1,99.99,2019-12-26 18:18:00,136 Dogwood St, New York City,NY,10001 +316830,AAA Batteries (4-pack),2,2.99,2019-12-09 17:45:00,993 Spruce St, Los Angeles,CA,90001 +316831,27in FHD Monitor,1,149.99,2019-12-01 18:10:00,655 Cedar St, Seattle,WA,98101 +316832,27in FHD Monitor,1,149.99,2019-12-30 15:47:00,625 10th St, Boston,MA,02215 +316833,Vareebadd Phone,1,400.0,2020-01-01 02:58:00,378 Elm St, New York City,NY,10001 +316834,27in 4K Gaming Monitor,1,389.99,2019-12-08 12:09:00,272 Wilson St, Dallas,TX,75001 +316835,Lightning Charging Cable,1,14.95,2019-12-30 15:43:00,645 Maple St, Portland,OR,97035 +316836,27in 4K Gaming Monitor,1,389.99,2019-12-30 21:11:00,941 2nd St, Boston,MA,02215 +316837,Apple Airpods Headphones,1,150.0,2019-12-14 00:55:00,518 Meadow St, New York City,NY,10001 +316838,Apple Airpods Headphones,1,150.0,2019-12-29 18:41:00,812 Maple St, Los Angeles,CA,90001 +316839,Lightning Charging Cable,1,14.95,2019-12-24 19:27:00,957 Hill St, San Francisco,CA,94016 +316840,Lightning Charging Cable,1,14.95,2019-12-23 10:13:00,252 Jefferson St, Dallas,TX,75001 +316841,AAA Batteries (4-pack),1,2.99,2019-12-08 13:06:00,875 9th St, San Francisco,CA,94016 +316842,20in Monitor,1,109.99,2019-12-23 10:21:00,321 Johnson St, San Francisco,CA,94016 +316843,USB-C Charging Cable,1,11.95,2019-12-18 12:20:00,132 Park St, New York City,NY,10001 +316844,USB-C Charging Cable,1,11.95,2019-12-27 17:02:00,369 Chestnut St, Seattle,WA,98101 +316845,20in Monitor,1,109.99,2019-12-28 19:07:00,643 Madison St, Dallas,TX,75001 +316846,Wired Headphones,1,11.99,2019-12-06 17:38:00,568 7th St, Seattle,WA,98101 +316847,ThinkPad Laptop,1,999.99,2019-12-26 16:21:00,939 Hill St, San Francisco,CA,94016 +316848,34in Ultrawide Monitor,1,379.99,2019-12-02 19:03:00,871 Madison St, Austin,TX,73301 +316849,Bose SoundSport Headphones,1,99.99,2019-12-04 22:13:00,778 Maple St, Seattle,WA,98101 +316850,Apple Airpods Headphones,1,150.0,2019-12-18 13:24:00,639 Maple St, San Francisco,CA,94016 +316851,AA Batteries (4-pack),1,3.84,2019-12-06 18:58:00,973 South St, San Francisco,CA,94016 +316852,USB-C Charging Cable,1,11.95,2019-12-02 21:00:00,965 10th St, New York City,NY,10001 +316853,AA Batteries (4-pack),1,3.84,2019-12-19 08:04:00,582 Cherry St, Los Angeles,CA,90001 +316854,AAA Batteries (4-pack),2,2.99,2019-12-30 11:58:00,606 11th St, Atlanta,GA,30301 +316855,Lightning Charging Cable,1,14.95,2019-12-20 11:08:00,894 11th St, Los Angeles,CA,90001 +316856,Lightning Charging Cable,1,14.95,2019-12-13 23:12:00,866 Pine St, Seattle,WA,98101 +316857,Apple Airpods Headphones,1,150.0,2019-12-18 12:07:00,46 Washington St, Boston,MA,02215 +316858,AA Batteries (4-pack),1,3.84,2019-12-02 20:20:00,418 12th St, Portland,OR,97035 +316859,Google Phone,1,600.0,2019-12-29 10:05:00,751 6th St, Los Angeles,CA,90001 +316860,Wired Headphones,1,11.99,2019-12-17 11:31:00,188 14th St, Boston,MA,02215 +316861,iPhone,1,700.0,2019-12-04 21:33:00,638 Highland St, San Francisco,CA,94016 +316861,Apple Airpods Headphones,1,150.0,2019-12-04 21:33:00,638 Highland St, San Francisco,CA,94016 +316862,USB-C Charging Cable,1,11.95,2019-12-14 16:59:00,241 Adams St, Seattle,WA,98101 +316863,Flatscreen TV,1,300.0,2019-12-13 10:42:00,329 Lakeview St, New York City,NY,10001 +316864,USB-C Charging Cable,1,11.95,2019-12-01 10:58:00,502 Main St, Boston,MA,02215 +316865,iPhone,1,700.0,2019-12-03 15:01:00,520 Cedar St, Boston,MA,02215 +316866,Lightning Charging Cable,1,14.95,2019-12-07 18:23:00,794 North St, San Francisco,CA,94016 +316867,27in FHD Monitor,1,149.99,2020-01-01 01:05:00,137 Madison St, Seattle,WA,98101 +316868,USB-C Charging Cable,1,11.95,2019-12-15 17:56:00,881 North St, Boston,MA,02215 +316869,Apple Airpods Headphones,1,150.0,2019-12-02 13:41:00,78 Cherry St, Boston,MA,02215 +316870,Lightning Charging Cable,1,14.95,2019-12-03 22:06:00,922 Highland St, Los Angeles,CA,90001 +316871,AA Batteries (4-pack),1,3.84,2019-12-07 23:15:00,523 Church St, Los Angeles,CA,90001 +316872,Lightning Charging Cable,1,14.95,2019-12-04 23:45:00,325 Cedar St, Boston,MA,02215 +316873,34in Ultrawide Monitor,1,379.99,2019-12-19 08:13:00,213 6th St, Los Angeles,CA,90001 +316874,Vareebadd Phone,1,400.0,2019-12-29 00:02:00,613 Walnut St, Portland,OR,97035 +316874,Wired Headphones,1,11.99,2019-12-29 00:02:00,613 Walnut St, Portland,OR,97035 +316875,USB-C Charging Cable,1,11.95,2019-12-10 22:51:00,940 Hickory St, Boston,MA,02215 +316876,AA Batteries (4-pack),2,3.84,2019-12-31 23:11:00,144 Washington St, Los Angeles,CA,90001 +316877,Vareebadd Phone,1,400.0,2019-12-09 14:58:00,231 4th St, Atlanta,GA,30301 +316878,Google Phone,1,600.0,2019-12-03 12:51:00,378 Madison St, Dallas,TX,75001 +316878,USB-C Charging Cable,1,11.95,2019-12-03 12:51:00,378 Madison St, Dallas,TX,75001 +316879,AA Batteries (4-pack),2,3.84,2019-12-07 23:30:00,813 Elm St, Los Angeles,CA,90001 +316880,USB-C Charging Cable,1,11.95,2019-12-04 21:37:00,941 Jackson St, Los Angeles,CA,90001 +316881,USB-C Charging Cable,1,11.95,2019-12-10 20:09:00,117 Adams St, San Francisco,CA,94016 +316882,iPhone,1,700.0,2019-12-04 12:45:00,555 14th St, New York City,NY,10001 +316883,AAA Batteries (4-pack),1,2.99,2019-12-13 18:38:00,180 Main St, New York City,NY,10001 +316884,USB-C Charging Cable,1,11.95,2019-12-06 20:57:00,753 Johnson St, Atlanta,GA,30301 +316885,Apple Airpods Headphones,1,150.0,2019-12-27 22:08:00,109 Dogwood St, Seattle,WA,98101 +316886,Google Phone,1,600.0,2019-12-22 19:38:00,785 South St, San Francisco,CA,94016 +316886,USB-C Charging Cable,1,11.95,2019-12-22 19:38:00,785 South St, San Francisco,CA,94016 +316887,Bose SoundSport Headphones,1,99.99,2019-12-12 10:53:00,981 6th St, San Francisco,CA,94016 +316888,Lightning Charging Cable,1,14.95,2019-12-17 12:35:00,813 Hill St, San Francisco,CA,94016 +316889,AAA Batteries (4-pack),1,2.99,2019-12-18 18:02:00,344 Lakeview St, Dallas,TX,75001 +316890,27in FHD Monitor,1,149.99,2019-12-04 22:52:00,14 Lakeview St, Los Angeles,CA,90001 +316891,Wired Headphones,1,11.99,2019-12-20 21:37:00,500 Jefferson St, Seattle,WA,98101 +316892,Vareebadd Phone,1,400.0,2019-12-26 01:58:00,340 Washington St, San Francisco,CA,94016 +316893,AA Batteries (4-pack),1,3.84,2019-12-28 17:19:00,697 Lake St, San Francisco,CA,94016 +316894,27in 4K Gaming Monitor,1,389.99,2019-12-16 13:56:00,310 9th St, Los Angeles,CA,90001 +316895,34in Ultrawide Monitor,1,379.99,2019-12-19 23:43:00,707 Adams St, Boston,MA,02215 +316896,AAA Batteries (4-pack),1,2.99,2019-12-10 07:12:00,491 Sunset St, Austin,TX,73301 +316897,Bose SoundSport Headphones,1,99.99,2019-12-14 19:31:00,971 4th St, Atlanta,GA,30301 +316898,AA Batteries (4-pack),1,3.84,2019-12-17 01:33:00,23 Hill St, New York City,NY,10001 +316899,Bose SoundSport Headphones,1,99.99,2019-12-08 19:57:00,708 Willow St, San Francisco,CA,94016 +316899,27in 4K Gaming Monitor,1,389.99,2019-12-08 19:57:00,708 Willow St, San Francisco,CA,94016 +316900,Bose SoundSport Headphones,1,99.99,2019-12-15 15:43:00,833 1st St, Boston,MA,02215 +316901,iPhone,1,700.0,2019-12-05 15:47:00,321 4th St, San Francisco,CA,94016 +316902,Vareebadd Phone,1,400.0,2019-12-18 11:39:00,645 Ridge St, San Francisco,CA,94016 +316903,20in Monitor,1,109.99,2019-12-10 23:09:00,966 Johnson St, Portland,OR,97035 +316904,Lightning Charging Cable,1,14.95,2019-12-14 19:11:00,939 Pine St, New York City,NY,10001 +316905,ThinkPad Laptop,1,999.99,2019-12-13 09:49:00,324 Chestnut St, New York City,NY,10001 +316906,Macbook Pro Laptop,1,1700.0,2019-12-02 13:07:00,535 5th St, New York City,NY,10001 +316907,AA Batteries (4-pack),1,3.84,2019-12-24 08:16:00,662 West St, New York City,NY,10001 +316908,Apple Airpods Headphones,1,150.0,2019-12-16 12:29:00,265 Main St, New York City,NY,10001 +316909,Lightning Charging Cable,1,14.95,2019-12-16 23:06:00,304 Ridge St, San Francisco,CA,94016 +316910,Google Phone,1,600.0,2019-12-24 18:15:00,162 Elm St, Atlanta,GA,30301 +316911,27in 4K Gaming Monitor,1,389.99,2019-12-17 21:56:00,890 11th St, Atlanta,GA,30301 +316912,Wired Headphones,1,11.99,2019-12-17 12:05:00,975 Chestnut St, San Francisco,CA,94016 +316913,Macbook Pro Laptop,1,1700.0,2019-12-08 23:58:00,594 6th St, San Francisco,CA,94016 +316914,AA Batteries (4-pack),1,3.84,2019-12-10 19:17:00,801 6th St, New York City,NY,10001 +316915,Wired Headphones,1,11.99,2019-12-31 19:25:00,66 Washington St, San Francisco,CA,94016 +316916,Apple Airpods Headphones,1,150.0,2019-12-10 21:56:00,768 8th St, New York City,NY,10001 +316917,AAA Batteries (4-pack),1,2.99,2019-12-09 20:12:00,3 Elm St, San Francisco,CA,94016 +316918,Google Phone,1,600.0,2019-12-07 21:47:00,949 4th St, San Francisco,CA,94016 +316919,USB-C Charging Cable,1,11.95,2019-12-01 15:52:00,275 Lake St, San Francisco,CA,94016 +316920,27in 4K Gaming Monitor,1,389.99,2019-12-07 12:46:00,402 13th St, Los Angeles,CA,90001 +316921,Google Phone,1,600.0,2019-12-12 13:04:00,671 Lake St, Seattle,WA,98101 +316922,Macbook Pro Laptop,1,1700.0,2019-12-16 14:59:00,441 10th St, Los Angeles,CA,90001 +316923,Lightning Charging Cable,3,14.95,2019-12-29 15:01:00,419 13th St, San Francisco,CA,94016 +316924,AA Batteries (4-pack),1,3.84,2019-12-24 18:40:00,748 5th St, Los Angeles,CA,90001 +316925,Flatscreen TV,1,300.0,2019-12-17 09:01:00,51 Adams St, Seattle,WA,98101 +316926,AA Batteries (4-pack),1,3.84,2019-12-10 16:00:00,547 Jefferson St, Los Angeles,CA,90001 +316927,USB-C Charging Cable,1,11.95,2019-12-19 13:27:00,860 Madison St, Boston,MA,02215 +316928,Flatscreen TV,1,300.0,2019-12-21 12:07:00,722 Jefferson St, San Francisco,CA,94016 +316929,USB-C Charging Cable,1,11.95,2019-12-23 08:52:00,607 1st St, San Francisco,CA,94016 +316930,Bose SoundSport Headphones,1,99.99,2019-12-20 00:10:00,794 North St, Austin,TX,73301 +316931,Flatscreen TV,1,300.0,2019-12-05 08:37:00,494 8th St, New York City,NY,10001 +316932,34in Ultrawide Monitor,1,379.99,2019-12-13 20:16:00,72 7th St, San Francisco,CA,94016 +316933,AAA Batteries (4-pack),1,2.99,2019-12-11 17:31:00,26 Cedar St, San Francisco,CA,94016 +316934,27in 4K Gaming Monitor,1,389.99,2019-12-17 07:58:00,517 Main St, Seattle,WA,98101 +316935,Google Phone,1,600.0,2019-12-27 11:42:00,550 Washington St, San Francisco,CA,94016 +316935,USB-C Charging Cable,2,11.95,2019-12-27 11:42:00,550 Washington St, San Francisco,CA,94016 +316936,Lightning Charging Cable,1,14.95,2019-12-17 18:23:00,921 2nd St, Seattle,WA,98101 +316937,ThinkPad Laptop,1,999.99,2019-12-17 00:47:00,368 Madison St, Atlanta,GA,30301 +316938,Apple Airpods Headphones,1,150.0,2019-12-09 11:17:00,711 Adams St, New York City,NY,10001 +316939,Vareebadd Phone,1,400.0,2019-12-20 17:53:00,875 Maple St, San Francisco,CA,94016 +316940,USB-C Charging Cable,1,11.95,2019-12-08 12:30:00,467 Lincoln St, San Francisco,CA,94016 +316941,USB-C Charging Cable,1,11.95,2019-12-11 19:46:00,272 14th St, New York City,NY,10001 +316942,Lightning Charging Cable,1,14.95,2019-12-22 20:08:00,594 Jefferson St, New York City,NY,10001 +316943,Bose SoundSport Headphones,1,99.99,2019-12-12 15:24:00,905 Meadow St, Seattle,WA,98101 +316944,AA Batteries (4-pack),1,3.84,2019-12-11 14:59:00,709 2nd St, San Francisco,CA,94016 +316945,ThinkPad Laptop,1,999.99,2019-12-29 15:43:00,528 Washington St, New York City,NY,10001 +316946,USB-C Charging Cable,1,11.95,2019-12-24 18:54:00,476 River St, Los Angeles,CA,90001 +316947,Lightning Charging Cable,1,14.95,2019-12-02 22:51:00,111 Walnut St, San Francisco,CA,94016 +316948,AA Batteries (4-pack),1,3.84,2019-12-01 08:19:00,764 Hickory St, Atlanta,GA,30301 +316949,AA Batteries (4-pack),3,3.84,2019-12-11 13:21:00,198 2nd St, Dallas,TX,75001 +316950,Bose SoundSport Headphones,1,99.99,2019-12-10 22:52:00,264 10th St, Los Angeles,CA,90001 +316951,27in FHD Monitor,1,149.99,2019-12-06 19:11:00,87 Willow St, Austin,TX,73301 +316952,Flatscreen TV,1,300.0,2019-12-28 21:32:00,459 1st St, Boston,MA,02215 +316953,Wired Headphones,1,11.99,2019-12-27 17:46:00,251 14th St, Boston,MA,02215 +316954,USB-C Charging Cable,1,11.95,2019-12-13 08:38:00,192 Sunset St, San Francisco,CA,94016 +316955,AA Batteries (4-pack),1,3.84,2019-12-14 21:32:00,913 Hickory St, Seattle,WA,98101 +316956,ThinkPad Laptop,1,999.99,2019-12-11 15:03:00,266 West St, Seattle,WA,98101 +316957,Lightning Charging Cable,2,14.95,2019-12-02 23:46:00,448 Sunset St, Seattle,WA,98101 +316958,Flatscreen TV,1,300.0,2019-12-25 09:31:00,777 Dogwood St, New York City,NY,10001 +316959,Bose SoundSport Headphones,1,99.99,2019-12-19 20:17:00,729 4th St, San Francisco,CA,94016 +316960,Flatscreen TV,1,300.0,2019-12-04 20:22:00,68 Pine St, Seattle,WA,98101 +316961,ThinkPad Laptop,1,999.99,2019-12-08 17:05:00,875 West St, Dallas,TX,75001 +316962,Apple Airpods Headphones,1,150.0,2019-12-04 22:52:00,323 Johnson St, Portland,OR,97035 +316963,AAA Batteries (4-pack),2,2.99,2019-12-10 08:26:00,292 Cherry St, Portland,OR,97035 +316964,20in Monitor,1,109.99,2019-12-23 19:17:00,190 Jackson St, Portland,OR,97035 +316965,34in Ultrawide Monitor,1,379.99,2019-12-27 12:41:00,93 Church St, San Francisco,CA,94016 +316966,USB-C Charging Cable,2,11.95,2019-12-31 11:37:00,480 Willow St, Los Angeles,CA,90001 +316967,Wired Headphones,2,11.99,2019-12-03 12:03:00,179 Walnut St, Portland,OR,97035 +316968,Bose SoundSport Headphones,1,99.99,2019-12-22 12:56:00,445 Adams St, Los Angeles,CA,90001 +316969,AA Batteries (4-pack),1,3.84,2019-12-23 19:23:00,184 River St, San Francisco,CA,94016 +316970,Apple Airpods Headphones,1,150.0,2019-12-16 10:42:00,214 Lake St, Los Angeles,CA,90001 +316971,Apple Airpods Headphones,1,150.0,2019-12-10 20:32:00,815 Park St, Portland,ME,04101 +316972,Wired Headphones,1,11.99,2019-12-15 11:19:00,823 11th St, Boston,MA,02215 +316973,Wired Headphones,1,11.99,2019-12-22 23:09:00,86 South St, Atlanta,GA,30301 +316974,34in Ultrawide Monitor,1,379.99,2019-12-06 20:10:00,633 Elm St, Atlanta,GA,30301 +316975,Apple Airpods Headphones,1,150.0,2019-12-30 14:43:00,693 West St, Atlanta,GA,30301 +316976,LG Washing Machine,1,600.0,2019-12-09 14:45:00,687 1st St, Boston,MA,02215 +316977,ThinkPad Laptop,1,999.99,2019-12-15 09:10:00,210 4th St, Los Angeles,CA,90001 +316978,USB-C Charging Cable,1,11.95,2019-12-31 21:46:00,727 Washington St, Seattle,WA,98101 +316979,AAA Batteries (4-pack),1,2.99,2019-12-19 19:55:00,542 9th St, Los Angeles,CA,90001 +316980,Flatscreen TV,1,300.0,2019-12-31 11:20:00,107 10th St, Los Angeles,CA,90001 +316981,AAA Batteries (4-pack),1,2.99,2019-12-04 15:51:00,360 Willow St, Dallas,TX,75001 +316982,Macbook Pro Laptop,1,1700.0,2019-12-11 16:25:00,152 Hill St, Los Angeles,CA,90001 +316983,Wired Headphones,1,11.99,2019-12-18 22:19:00,553 Park St, New York City,NY,10001 +316984,LG Dryer,1,600.0,2019-12-06 21:01:00,127 Highland St, Atlanta,GA,30301 +316985,AA Batteries (4-pack),1,3.84,2019-12-06 16:51:00,367 Highland St, Boston,MA,02215 +316986,Lightning Charging Cable,1,14.95,2019-12-19 18:51:00,9 South St, Portland,OR,97035 +316987,Wired Headphones,1,11.99,2019-12-08 23:15:00,747 Center St, Los Angeles,CA,90001 +316988,34in Ultrawide Monitor,1,379.99,2019-12-22 20:07:00,407 Lincoln St, New York City,NY,10001 +316989,USB-C Charging Cable,1,11.95,2019-12-26 14:33:00,929 Cedar St, Seattle,WA,98101 +316990,AAA Batteries (4-pack),1,2.99,2019-12-11 21:32:00,381 Highland St, Dallas,TX,75001 +316991,AAA Batteries (4-pack),3,2.99,2019-12-31 04:18:00,1 4th St, Dallas,TX,75001 +316992,Google Phone,1,600.0,2019-12-16 07:44:00,206 River St, Seattle,WA,98101 +316992,AA Batteries (4-pack),1,3.84,2019-12-16 07:44:00,206 River St, Seattle,WA,98101 +316993,Lightning Charging Cable,1,14.95,2019-12-13 08:16:00,821 Johnson St, Dallas,TX,75001 +316994,Google Phone,1,600.0,2019-12-07 07:59:00,561 Lakeview St, San Francisco,CA,94016 +316995,USB-C Charging Cable,1,11.95,2019-12-12 14:19:00,761 Walnut St, Boston,MA,02215 +316996,Apple Airpods Headphones,1,150.0,2019-12-10 22:17:00,585 West St, Portland,ME,04101 +316997,AA Batteries (4-pack),1,3.84,2019-12-16 22:28:00,779 10th St, Dallas,TX,75001 +316998,Wired Headphones,1,11.99,2019-12-02 02:42:00,231 Elm St, Los Angeles,CA,90001 +316999,Bose SoundSport Headphones,1,99.99,2019-12-16 17:36:00,435 8th St, San Francisco,CA,94016 +317000,27in FHD Monitor,1,149.99,2019-12-30 08:23:00,953 Cherry St, Dallas,TX,75001 +317001,34in Ultrawide Monitor,1,379.99,2019-12-16 21:11:00,675 Walnut St, Atlanta,GA,30301 +317002,AAA Batteries (4-pack),4,2.99,2019-12-31 16:15:00,480 Spruce St, Portland,OR,97035 +317003,Lightning Charging Cable,1,14.95,2019-12-30 12:01:00,310 4th St, Boston,MA,02215 +317004,iPhone,1,700.0,2019-12-16 18:14:00,748 Chestnut St, Dallas,TX,75001 +317004,Lightning Charging Cable,1,14.95,2019-12-16 18:14:00,748 Chestnut St, Dallas,TX,75001 +317005,Apple Airpods Headphones,1,150.0,2019-12-14 22:08:00,367 Meadow St, New York City,NY,10001 +317006,AA Batteries (4-pack),2,3.84,2019-12-11 15:48:00,843 Cedar St, Portland,OR,97035 +317007,27in FHD Monitor,1,149.99,2019-12-01 23:15:00,568 Lake St, San Francisco,CA,94016 +317008,27in 4K Gaming Monitor,1,389.99,2019-12-17 10:49:00,951 7th St, Seattle,WA,98101 +317009,27in FHD Monitor,1,149.99,2019-12-20 00:01:00,612 Jackson St, San Francisco,CA,94016 +317010,AAA Batteries (4-pack),1,2.99,2019-12-30 09:32:00,505 South St, Atlanta,GA,30301 +317011,Flatscreen TV,1,300.0,2019-12-10 11:55:00,491 Meadow St, San Francisco,CA,94016 +317012,USB-C Charging Cable,1,11.95,2019-12-03 12:20:00,401 Church St, New York City,NY,10001 +317013,20in Monitor,1,109.99,2019-12-08 13:16:00,837 Hill St, Dallas,TX,75001 +317014,Bose SoundSport Headphones,1,99.99,2019-12-27 13:41:00,346 Washington St, Austin,TX,73301 +317015,Wired Headphones,1,11.99,2019-12-31 09:08:00,879 8th St, Dallas,TX,75001 +317016,USB-C Charging Cable,1,11.95,2019-12-23 21:23:00,553 Forest St, San Francisco,CA,94016 +317017,Macbook Pro Laptop,1,1700.0,2019-12-30 04:04:00,759 Spruce St, Dallas,TX,75001 +317018,Flatscreen TV,1,300.0,2019-12-22 11:13:00,43 Sunset St, Austin,TX,73301 +317019,Lightning Charging Cable,1,14.95,2019-12-24 14:17:00,544 Center St, Atlanta,GA,30301 +317020,Bose SoundSport Headphones,1,99.99,2019-12-23 18:34:00,77 Madison St, San Francisco,CA,94016 +317021,Bose SoundSport Headphones,1,99.99,2019-12-05 07:38:00,854 Maple St, Austin,TX,73301 +317022,Apple Airpods Headphones,1,150.0,2019-12-02 11:16:00,992 Elm St, San Francisco,CA,94016 +317023,USB-C Charging Cable,1,11.95,2019-12-19 14:33:00,231 West St, Seattle,WA,98101 +317024,Wired Headphones,1,11.99,2019-12-16 11:02:00,673 6th St, Atlanta,GA,30301 +317025,Apple Airpods Headphones,1,150.0,2019-12-14 05:25:00,601 Wilson St, Boston,MA,02215 +317025,Wired Headphones,1,11.99,2019-12-14 05:25:00,601 Wilson St, Boston,MA,02215 +317026,AA Batteries (4-pack),1,3.84,2019-12-01 13:48:00,294 Maple St, Los Angeles,CA,90001 +317027,AAA Batteries (4-pack),3,2.99,2019-12-29 17:32:00,11 West St, Boston,MA,02215 +317028,AA Batteries (4-pack),2,3.84,2019-12-16 01:00:00,728 Cherry St, Austin,TX,73301 +317029,USB-C Charging Cable,1,11.95,2019-12-08 22:18:00,538 Ridge St, Boston,MA,02215 +317030,Lightning Charging Cable,1,14.95,2019-12-06 16:58:00,673 Adams St, Portland,ME,04101 +317031,Wired Headphones,1,11.99,2019-12-04 11:41:00,976 West St, San Francisco,CA,94016 +317032,AAA Batteries (4-pack),1,2.99,2019-12-27 11:14:00,130 9th St, New York City,NY,10001 +317033,AA Batteries (4-pack),2,3.84,2019-12-30 11:50:00,86 11th St, San Francisco,CA,94016 +317034,Bose SoundSport Headphones,1,99.99,2019-12-13 04:05:00,693 8th St, San Francisco,CA,94016 +317035,USB-C Charging Cable,1,11.95,2019-12-21 22:38:00,345 Madison St, New York City,NY,10001 +317036,Lightning Charging Cable,1,14.95,2019-12-16 15:48:00,192 Ridge St, San Francisco,CA,94016 +317037,34in Ultrawide Monitor,1,379.99,2019-12-02 20:16:00,729 2nd St, New York City,NY,10001 +317038,USB-C Charging Cable,1,11.95,2019-12-23 17:07:00,906 Church St, Portland,OR,97035 +317039,AA Batteries (4-pack),2,3.84,2019-12-08 10:48:00,525 Hickory St, Portland,ME,04101 +317040,Wired Headphones,1,11.99,2019-12-17 18:22:00,6 8th St, Los Angeles,CA,90001 +317041,ThinkPad Laptop,1,999.99,2019-12-22 15:42:00,873 Washington St, Atlanta,GA,30301 +317042,Apple Airpods Headphones,1,150.0,2019-12-03 12:16:00,711 Adams St, Los Angeles,CA,90001 +317043,Bose SoundSport Headphones,1,99.99,2019-12-21 10:20:00,231 Main St, Boston,MA,02215 +317044,Apple Airpods Headphones,1,150.0,2019-12-07 16:50:00,466 Johnson St, Los Angeles,CA,90001 +317045,Bose SoundSport Headphones,1,99.99,2019-12-11 12:23:00,154 11th St, New York City,NY,10001 +317046,Apple Airpods Headphones,1,150.0,2019-12-22 10:22:00,342 Pine St, Atlanta,GA,30301 +317047,AAA Batteries (4-pack),1,2.99,2019-12-19 22:30:00,421 Spruce St, Los Angeles,CA,90001 +317048,AAA Batteries (4-pack),2,2.99,2019-12-31 23:45:00,743 Adams St, San Francisco,CA,94016 +317049,AA Batteries (4-pack),1,3.84,2019-12-19 08:56:00,621 Hill St, Atlanta,GA,30301 +317050,AA Batteries (4-pack),1,3.84,2019-12-13 19:19:00,415 Church St, Seattle,WA,98101 +317051,ThinkPad Laptop,1,999.99,2019-12-02 13:35:00,517 Meadow St, Portland,ME,04101 +317052,Apple Airpods Headphones,1,150.0,2019-12-07 13:46:00,760 11th St, San Francisco,CA,94016 +317053,Bose SoundSport Headphones,1,99.99,2019-12-11 19:24:00,840 Elm St, Austin,TX,73301 +317054,Macbook Pro Laptop,1,1700.0,2019-12-21 11:13:00,214 West St, Los Angeles,CA,90001 +317055,27in FHD Monitor,1,149.99,2019-12-25 08:29:00,496 4th St, Dallas,TX,75001 +317056,Google Phone,1,600.0,2019-12-19 18:40:00,536 4th St, San Francisco,CA,94016 +317057,Lightning Charging Cable,1,14.95,2019-12-05 20:08:00,301 Lincoln St, San Francisco,CA,94016 +317058,Wired Headphones,1,11.99,2019-12-11 18:54:00,191 Ridge St, Seattle,WA,98101 +317059,AAA Batteries (4-pack),1,2.99,2019-12-30 16:55:00,148 Walnut St, Portland,OR,97035 +317059,Wired Headphones,1,11.99,2019-12-30 16:55:00,148 Walnut St, Portland,OR,97035 +317060,34in Ultrawide Monitor,1,379.99,2019-12-09 12:12:00,624 Dogwood St, Dallas,TX,75001 +317061,ThinkPad Laptop,1,999.99,2019-12-30 14:16:00,959 Lakeview St, Boston,MA,02215 +317062,AAA Batteries (4-pack),4,2.99,2019-12-22 10:48:00,10 10th St, Dallas,TX,75001 +317063,34in Ultrawide Monitor,1,379.99,2019-12-05 21:02:00,509 14th St, Los Angeles,CA,90001 +317064,Lightning Charging Cable,1,14.95,2019-12-29 21:57:00,849 Cedar St, Los Angeles,CA,90001 +317065,27in 4K Gaming Monitor,1,389.99,2019-12-14 10:50:00,689 Maple St, Los Angeles,CA,90001 +317066,Bose SoundSport Headphones,1,99.99,2019-12-29 09:37:00,745 5th St, San Francisco,CA,94016 +317067,iPhone,1,700.0,2019-12-23 20:00:00,909 Madison St, Boston,MA,02215 +317068,Vareebadd Phone,1,400.0,2019-12-20 23:09:00,388 Lake St, New York City,NY,10001 +317069,Lightning Charging Cable,1,14.95,2019-12-06 18:09:00,136 8th St, Boston,MA,02215 +317070,Lightning Charging Cable,2,14.95,2019-12-15 10:36:00,222 Washington St, Dallas,TX,75001 +317071,Apple Airpods Headphones,1,150.0,2019-12-24 11:04:00,663 Church St, Atlanta,GA,30301 +317072,Bose SoundSport Headphones,1,99.99,2019-12-18 10:19:00,97 2nd St, San Francisco,CA,94016 +317073,iPhone,1,700.0,2019-12-11 15:04:00,456 Adams St, San Francisco,CA,94016 +317074,AA Batteries (4-pack),1,3.84,2019-12-02 10:57:00,796 9th St, Los Angeles,CA,90001 +317075,USB-C Charging Cable,1,11.95,2019-12-07 17:00:00,891 Maple St, Boston,MA,02215 +317076,AA Batteries (4-pack),1,3.84,2019-12-09 10:12:00,936 Jackson St, Seattle,WA,98101 +317076,Apple Airpods Headphones,1,150.0,2019-12-09 10:12:00,936 Jackson St, Seattle,WA,98101 +317077,34in Ultrawide Monitor,1,379.99,2019-12-12 07:17:00,383 Hickory St, Los Angeles,CA,90001 +317077,USB-C Charging Cable,1,11.95,2019-12-12 07:17:00,383 Hickory St, Los Angeles,CA,90001 +317078,AAA Batteries (4-pack),2,2.99,2019-12-12 18:43:00,628 2nd St, Boston,MA,02215 +317079,AA Batteries (4-pack),1,3.84,2019-12-29 09:08:00,852 Lake St, Portland,OR,97035 +317080,Lightning Charging Cable,1,14.95,2019-12-19 19:06:00,684 13th St, Los Angeles,CA,90001 +317081,34in Ultrawide Monitor,1,379.99,2019-12-22 16:22:00,902 South St, San Francisco,CA,94016 +317082,USB-C Charging Cable,1,11.95,2019-12-19 14:59:00,629 6th St, Seattle,WA,98101 +317083,27in FHD Monitor,1,149.99,2019-12-15 14:12:00,566 11th St, San Francisco,CA,94016 +317084,Flatscreen TV,1,300.0,2019-12-13 11:51:00,819 North St, Dallas,TX,75001 +317085,20in Monitor,1,109.99,2019-12-07 11:11:00,622 Maple St, New York City,NY,10001 +317086,USB-C Charging Cable,1,11.95,2019-12-07 12:35:00,213 12th St, New York City,NY,10001 +317087,AA Batteries (4-pack),1,3.84,2019-12-17 16:45:00,227 Church St, Los Angeles,CA,90001 +317088,USB-C Charging Cable,1,11.95,2019-12-03 15:11:00,962 Dogwood St, Boston,MA,02215 +317089,27in FHD Monitor,1,149.99,2019-12-05 13:39:00,498 Park St, Los Angeles,CA,90001 +317090,20in Monitor,1,109.99,2019-12-17 16:19:00,41 Johnson St, San Francisco,CA,94016 +317091,AA Batteries (4-pack),2,3.84,2019-12-25 10:34:00,9 Walnut St, New York City,NY,10001 +317092,Wired Headphones,1,11.99,2019-12-13 10:32:00,638 North St, New York City,NY,10001 +317093,AA Batteries (4-pack),2,3.84,2019-12-31 01:33:00,357 Jefferson St, Boston,MA,02215 +317094,Bose SoundSport Headphones,1,99.99,2019-12-17 23:17:00,429 Lincoln St, Seattle,WA,98101 +317095,AAA Batteries (4-pack),5,2.99,2019-12-22 20:12:00,4 Adams St, Boston,MA,02215 +317096,AA Batteries (4-pack),2,3.84,2019-12-01 22:52:00,72 Chestnut St, Los Angeles,CA,90001 +317097,AAA Batteries (4-pack),1,2.99,2019-12-25 08:41:00,648 14th St, San Francisco,CA,94016 +317098,USB-C Charging Cable,1,11.95,2019-12-05 01:23:00,316 Elm St, San Francisco,CA,94016 +317099,Apple Airpods Headphones,1,150.0,2019-12-06 19:28:00,866 Jefferson St, Portland,OR,97035 +317100,27in FHD Monitor,1,149.99,2019-12-19 10:13:00,533 Ridge St, San Francisco,CA,94016 +317101,AA Batteries (4-pack),3,3.84,2019-12-09 22:16:00,355 14th St, Los Angeles,CA,90001 +317102,AAA Batteries (4-pack),1,2.99,2019-12-18 19:34:00,71 West St, Portland,OR,97035 +317103,USB-C Charging Cable,1,11.95,2019-12-07 12:26:00,730 4th St, San Francisco,CA,94016 +317104,20in Monitor,1,109.99,2019-12-31 22:15:00,172 2nd St, San Francisco,CA,94016 +317105,Bose SoundSport Headphones,1,99.99,2019-12-07 11:09:00,91 2nd St, San Francisco,CA,94016 +317106,34in Ultrawide Monitor,1,379.99,2019-12-24 10:22:00,639 Park St, Boston,MA,02215 +317107,ThinkPad Laptop,1,999.99,2019-12-18 05:04:00,466 Hill St, Atlanta,GA,30301 +317108,AAA Batteries (4-pack),1,2.99,2019-12-06 23:54:00,493 Maple St, Los Angeles,CA,90001 +317109,Apple Airpods Headphones,1,150.0,2019-12-05 01:29:00,175 Hill St, Austin,TX,73301 +317110,AA Batteries (4-pack),2,3.84,2019-12-04 16:25:00,988 9th St, Dallas,TX,75001 +317111,AAA Batteries (4-pack),2,2.99,2019-12-30 10:36:00,401 Adams St, Los Angeles,CA,90001 +317112,AAA Batteries (4-pack),1,2.99,2019-12-07 21:12:00,499 14th St, Boston,MA,02215 +317113,Bose SoundSport Headphones,2,99.99,2019-12-05 17:43:00,497 8th St, New York City,NY,10001 +317114,AAA Batteries (4-pack),2,2.99,2019-12-17 21:23:00,457 Pine St, New York City,NY,10001 +317115,Google Phone,1,600.0,2019-12-30 22:04:00,247 Meadow St, Dallas,TX,75001 +317116,27in 4K Gaming Monitor,1,389.99,2019-12-21 21:20:00,781 10th St, San Francisco,CA,94016 +317117,Lightning Charging Cable,1,14.95,2019-12-04 12:43:00,793 1st St, Seattle,WA,98101 +317118,AA Batteries (4-pack),1,3.84,2019-12-30 19:39:00,371 Maple St, San Francisco,CA,94016 +317119,AA Batteries (4-pack),4,3.84,2019-12-24 17:46:00,526 Cedar St, Los Angeles,CA,90001 +317120,AAA Batteries (4-pack),1,2.99,2019-12-15 17:16:00,796 13th St, Boston,MA,02215 +317121,USB-C Charging Cable,1,11.95,2019-12-12 18:26:00,531 West St, San Francisco,CA,94016 +317122,Lightning Charging Cable,1,14.95,2019-12-26 22:41:00,122 Sunset St, New York City,NY,10001 +317123,AA Batteries (4-pack),2,3.84,2019-12-06 16:38:00,758 Pine St, Atlanta,GA,30301 +317124,AAA Batteries (4-pack),1,2.99,2019-12-22 11:05:00,772 Center St, Dallas,TX,75001 +317125,USB-C Charging Cable,1,11.95,2019-12-12 22:44:00,501 8th St, Dallas,TX,75001 +317126,27in 4K Gaming Monitor,1,389.99,2019-12-19 11:12:00,234 Forest St, Seattle,WA,98101 +317127,Bose SoundSport Headphones,1,99.99,2019-12-21 08:44:00,585 Dogwood St, Boston,MA,02215 +317128,Wired Headphones,1,11.99,2019-12-15 17:01:00,735 Dogwood St, Seattle,WA,98101 +317129,Lightning Charging Cable,1,14.95,2019-12-04 03:38:00,535 Maple St, Los Angeles,CA,90001 +317130,Wired Headphones,1,11.99,2019-12-16 13:44:00,633 Spruce St, Dallas,TX,75001 +317131,Google Phone,1,600.0,2019-12-12 19:30:00,682 Main St, San Francisco,CA,94016 +317132,Bose SoundSport Headphones,1,99.99,2019-12-30 20:20:00,991 Chestnut St, San Francisco,CA,94016 +317133,Apple Airpods Headphones,1,150.0,2019-12-25 09:29:00,554 8th St, Atlanta,GA,30301 +317134,LG Dryer,1,600.0,2019-12-26 10:56:00,275 9th St, Atlanta,GA,30301 +317135,Lightning Charging Cable,1,14.95,2019-12-21 10:03:00,594 Madison St, Los Angeles,CA,90001 +317136,AAA Batteries (4-pack),2,2.99,2019-12-04 21:09:00,797 Lake St, Los Angeles,CA,90001 +317137,USB-C Charging Cable,1,11.95,2019-12-26 19:12:00,374 Cherry St, San Francisco,CA,94016 +317138,Google Phone,1,600.0,2019-12-03 19:45:00,494 Pine St, San Francisco,CA,94016 +317139,Apple Airpods Headphones,1,150.0,2019-12-27 10:29:00,599 Maple St, New York City,NY,10001 +317140,Bose SoundSport Headphones,1,99.99,2019-12-16 23:01:00,225 Meadow St, Portland,OR,97035 +317141,AAA Batteries (4-pack),1,2.99,2019-12-03 05:46:00,604 Chestnut St, San Francisco,CA,94016 +317142,Vareebadd Phone,1,400.0,2019-12-07 18:53:00,708 Cherry St, Dallas,TX,75001 +317143,Lightning Charging Cable,1,14.95,2019-12-13 11:15:00,899 Jackson St, San Francisco,CA,94016 +317144,AAA Batteries (4-pack),1,2.99,2019-12-14 21:42:00,261 Center St, Portland,OR,97035 +317145,LG Washing Machine,1,600.0,2019-12-31 20:02:00,22 Lincoln St, San Francisco,CA,94016 +317146,iPhone,1,700.0,2019-12-25 17:59:00,261 West St, Portland,OR,97035 +317147,Macbook Pro Laptop,1,1700.0,2019-12-27 07:02:00,571 Washington St, Boston,MA,02215 +317148,Macbook Pro Laptop,1,1700.0,2019-12-28 21:59:00,57 Meadow St, San Francisco,CA,94016 +317149,AAA Batteries (4-pack),1,2.99,2019-12-14 20:26:00,952 Elm St, Boston,MA,02215 +317150,Macbook Pro Laptop,1,1700.0,2019-12-14 11:48:00,777 Jackson St, Boston,MA,02215 +317151,AA Batteries (4-pack),3,3.84,2019-12-31 20:04:00,475 Center St, Los Angeles,CA,90001 +317152,AAA Batteries (4-pack),5,2.99,2019-12-14 16:45:00,11 1st St, Atlanta,GA,30301 +317153,Apple Airpods Headphones,1,150.0,2019-12-29 16:38:00,624 Lincoln St, New York City,NY,10001 +317154,Google Phone,1,600.0,2019-12-07 14:11:00,223 10th St, Dallas,TX,75001 +317155,AAA Batteries (4-pack),1,2.99,2019-12-19 22:18:00,143 Lincoln St, Los Angeles,CA,90001 +317156,Lightning Charging Cable,1,14.95,2019-12-01 09:13:00,141 North St, Atlanta,GA,30301 +317157,Bose SoundSport Headphones,1,99.99,2019-12-09 17:14:00,949 Spruce St, Dallas,TX,75001 +317158,Wired Headphones,1,11.99,2019-12-08 11:50:00,66 Washington St, San Francisco,CA,94016 +317159,USB-C Charging Cable,1,11.95,2019-12-24 10:37:00,63 North St, Austin,TX,73301 +317160,AA Batteries (4-pack),4,3.84,2019-12-12 20:03:00,669 Johnson St, Atlanta,GA,30301 +317161,Apple Airpods Headphones,1,150.0,2019-12-18 11:21:00,714 North St, San Francisco,CA,94016 +317162,Lightning Charging Cable,1,14.95,2019-12-12 15:06:00,424 Church St, Seattle,WA,98101 +317163,USB-C Charging Cable,1,11.95,2019-12-23 08:56:00,568 Spruce St, Atlanta,GA,30301 +317164,AAA Batteries (4-pack),2,2.99,2019-12-18 00:33:00,739 Johnson St, Dallas,TX,75001 +317165,20in Monitor,1,109.99,2019-12-10 11:44:00,899 Center St, Seattle,WA,98101 +317166,AA Batteries (4-pack),2,3.84,2019-12-02 16:11:00,58 Washington St, New York City,NY,10001 +317167,AAA Batteries (4-pack),1,2.99,2019-12-09 12:27:00,176 North St, Boston,MA,02215 +317168,Apple Airpods Headphones,1,150.0,2019-12-16 20:31:00,792 Elm St, Los Angeles,CA,90001 +317169,Lightning Charging Cable,1,14.95,2019-12-02 17:10:00,339 Hill St, San Francisco,CA,94016 +317170,Google Phone,1,600.0,2019-12-01 12:04:00,944 7th St, San Francisco,CA,94016 +317170,USB-C Charging Cable,1,11.95,2019-12-01 12:04:00,944 7th St, San Francisco,CA,94016 +317171,Apple Airpods Headphones,1,150.0,2019-12-20 13:04:00,8 Pine St, Atlanta,GA,30301 +317172,Lightning Charging Cable,1,14.95,2019-12-07 11:37:00,104 West St, San Francisco,CA,94016 +317173,Bose SoundSport Headphones,1,99.99,2019-12-28 15:05:00,486 Lincoln St, Los Angeles,CA,90001 +317174,Apple Airpods Headphones,1,150.0,2019-12-09 07:19:00,706 Main St, Seattle,WA,98101 +317175,USB-C Charging Cable,1,11.95,2019-12-10 20:28:00,343 8th St, San Francisco,CA,94016 +317176,Bose SoundSport Headphones,1,99.99,2019-12-11 22:12:00,45 River St, Dallas,TX,75001 +317177,Wired Headphones,1,11.99,2019-12-02 18:20:00,939 Center St, San Francisco,CA,94016 +317178,Bose SoundSport Headphones,1,99.99,2019-12-25 18:50:00,943 Highland St, New York City,NY,10001 +317179,Wired Headphones,1,11.99,2019-12-29 08:15:00,773 Maple St, San Francisco,CA,94016 +317179,Macbook Pro Laptop,1,1700.0,2019-12-29 08:15:00,773 Maple St, San Francisco,CA,94016 +317180,Lightning Charging Cable,1,14.95,2019-12-08 09:08:00,9 9th St, Dallas,TX,75001 +317181,Apple Airpods Headphones,1,150.0,2019-12-10 20:28:00,398 West St, San Francisco,CA,94016 +317182,LG Dryer,1,600.0,2019-12-07 20:09:00,709 Highland St, Los Angeles,CA,90001 +317183,AAA Batteries (4-pack),1,2.99,2019-12-12 14:20:00,703 1st St, Dallas,TX,75001 +317184,AAA Batteries (4-pack),2,2.99,2019-12-06 07:00:00,67 Lakeview St, Seattle,WA,98101 +317185,Macbook Pro Laptop,1,1700.0,2019-12-23 21:43:00,420 Church St, San Francisco,CA,94016 +317186,USB-C Charging Cable,1,11.95,2019-12-02 10:07:00,684 South St, Dallas,TX,75001 +317187,Apple Airpods Headphones,1,150.0,2019-12-04 17:34:00,243 South St, San Francisco,CA,94016 +317188,27in FHD Monitor,1,149.99,2019-12-06 11:55:00,164 Wilson St, Dallas,TX,75001 +317189,USB-C Charging Cable,1,11.95,2019-12-23 13:38:00,617 1st St, New York City,NY,10001 +317190,Apple Airpods Headphones,1,150.0,2019-12-25 22:16:00,847 Chestnut St, San Francisco,CA,94016 +317191,Macbook Pro Laptop,1,1700.0,2019-12-01 21:42:00,110 Lake St, Atlanta,GA,30301 +317191,Lightning Charging Cable,1,14.95,2019-12-01 21:42:00,110 Lake St, Atlanta,GA,30301 +317192,Wired Headphones,1,11.99,2019-12-10 19:01:00,693 Spruce St, San Francisco,CA,94016 +317193,Wired Headphones,1,11.99,2019-12-04 06:24:00,161 6th St, Atlanta,GA,30301 +317194,Wired Headphones,1,11.99,2019-12-19 18:43:00,261 Washington St, Atlanta,GA,30301 +317195,Bose SoundSport Headphones,1,99.99,2019-12-26 06:06:00,391 Johnson St, San Francisco,CA,94016 +317196,AA Batteries (4-pack),1,3.84,2019-12-10 09:25:00,417 Lincoln St, New York City,NY,10001 +317197,USB-C Charging Cable,1,11.95,2019-12-05 12:54:00,992 10th St, New York City,NY,10001 +317198,Google Phone,1,600.0,2019-12-23 23:43:00,977 Sunset St, San Francisco,CA,94016 +317199,AAA Batteries (4-pack),3,2.99,2019-12-30 20:12:00,616 Lake St, Seattle,WA,98101 +317200,iPhone,1,700.0,2019-12-16 23:39:00,66 Main St, Dallas,TX,75001 +317201,Wired Headphones,1,11.99,2019-12-09 20:23:00,429 8th St, Boston,MA,02215 +317202,AA Batteries (4-pack),1,3.84,2019-12-06 11:44:00,921 Center St, San Francisco,CA,94016 +317203,AA Batteries (4-pack),1,3.84,2019-12-13 20:47:00,437 Chestnut St, Seattle,WA,98101 +317204,USB-C Charging Cable,1,11.95,2019-12-13 10:12:00,775 Walnut St, San Francisco,CA,94016 +317205,AA Batteries (4-pack),1,3.84,2019-12-26 16:41:00,195 Johnson St, Atlanta,GA,30301 +317206,34in Ultrawide Monitor,1,379.99,2019-12-03 14:13:00,947 Park St, San Francisco,CA,94016 +317207,AA Batteries (4-pack),1,3.84,2019-12-31 19:40:00,800 Willow St, Portland,OR,97035 +317208,Apple Airpods Headphones,1,150.0,2019-12-05 18:23:00,727 Lake St, Seattle,WA,98101 +317209,Bose SoundSport Headphones,1,99.99,2019-12-01 12:46:00,875 6th St, San Francisco,CA,94016 +317210,USB-C Charging Cable,1,11.95,2019-12-20 22:01:00,499 Cedar St, Austin,TX,73301 +317211,USB-C Charging Cable,1,11.95,2019-12-13 21:34:00,807 Walnut St, San Francisco,CA,94016 +317212,Apple Airpods Headphones,1,150.0,2019-12-18 16:41:00,30 Church St, Los Angeles,CA,90001 +317213,Bose SoundSport Headphones,1,99.99,2019-12-09 18:58:00,841 Highland St, New York City,NY,10001 +317214,USB-C Charging Cable,1,11.95,2019-12-24 04:14:00,231 9th St, San Francisco,CA,94016 +317215,USB-C Charging Cable,1,11.95,2019-12-15 21:40:00,677 Hill St, Portland,OR,97035 +317216,Lightning Charging Cable,1,14.95,2019-12-18 10:50:00,533 Meadow St, San Francisco,CA,94016 +317217,Vareebadd Phone,1,400.0,2019-12-19 20:39:00,225 Spruce St, San Francisco,CA,94016 +317218,USB-C Charging Cable,1,11.95,2019-12-06 06:42:00,684 Meadow St, Portland,ME,04101 +317219,USB-C Charging Cable,1,11.95,2019-12-30 17:36:00,318 2nd St, San Francisco,CA,94016 +317220,27in 4K Gaming Monitor,1,389.99,2019-12-23 12:04:00,935 Chestnut St, Austin,TX,73301 +317221,Wired Headphones,1,11.99,2019-12-18 10:25:00,497 Park St, Seattle,WA,98101 +317222,Lightning Charging Cable,1,14.95,2019-12-07 17:53:00,689 Forest St, Dallas,TX,75001 +317223,AA Batteries (4-pack),2,3.84,2019-12-28 00:26:00,577 Jackson St, San Francisco,CA,94016 +317224,USB-C Charging Cable,1,11.95,2019-12-16 21:51:00,586 2nd St, New York City,NY,10001 +317225,Apple Airpods Headphones,1,150.0,2019-12-07 06:44:00,336 Highland St, Boston,MA,02215 +317226,Wired Headphones,1,11.99,2019-12-09 13:59:00,482 Pine St, Los Angeles,CA,90001 +317227,AA Batteries (4-pack),2,3.84,2019-12-21 15:33:00,750 Maple St, Los Angeles,CA,90001 +317228,USB-C Charging Cable,1,11.95,2019-12-16 20:31:00,91 Willow St, Seattle,WA,98101 +317229,AAA Batteries (4-pack),3,2.99,2019-12-10 15:43:00,995 14th St, San Francisco,CA,94016 +317230,Wired Headphones,1,11.99,2019-12-11 16:55:00,698 South St, San Francisco,CA,94016 +317231,27in FHD Monitor,1,149.99,2019-12-21 10:25:00,490 Lincoln St, San Francisco,CA,94016 +317232,AA Batteries (4-pack),4,3.84,2019-12-19 18:42:00,331 Cherry St, Portland,OR,97035 +317233,USB-C Charging Cable,1,11.95,2019-12-20 22:04:00,602 Ridge St, Los Angeles,CA,90001 +317234,Google Phone,1,600.0,2019-12-22 22:24:00,21 Park St, San Francisco,CA,94016 +317234,Bose SoundSport Headphones,1,99.99,2019-12-22 22:24:00,21 Park St, San Francisco,CA,94016 +317235,USB-C Charging Cable,1,11.95,2019-12-27 11:46:00,12 Jefferson St, Los Angeles,CA,90001 +317236,Flatscreen TV,1,300.0,2019-12-02 21:19:00,515 6th St, Seattle,WA,98101 +317237,AAA Batteries (4-pack),1,2.99,2019-12-31 12:45:00,885 Forest St, Boston,MA,02215 +317238,AA Batteries (4-pack),1,3.84,2019-12-19 14:44:00,36 14th St, Boston,MA,02215 +317239,34in Ultrawide Monitor,1,379.99,2019-12-09 09:15:00,204 Johnson St, Boston,MA,02215 +317240,AA Batteries (4-pack),4,3.84,2019-12-10 07:28:00,80 Meadow St, Dallas,TX,75001 +317241,Wired Headphones,1,11.99,2019-12-12 01:14:00,399 8th St, Los Angeles,CA,90001 +317242,27in FHD Monitor,1,149.99,2019-12-11 14:15:00,508 Johnson St, New York City,NY,10001 +317243,Apple Airpods Headphones,1,150.0,2019-12-13 13:56:00,267 12th St, Portland,OR,97035 +317244,Lightning Charging Cable,2,14.95,2019-12-29 23:51:00,123 Madison St, New York City,NY,10001 +317245,iPhone,1,700.0,2019-12-08 17:56:00,909 Church St, San Francisco,CA,94016 +317246,iPhone,1,700.0,2019-12-07 09:33:00,663 Maple St, Dallas,TX,75001 +317247,Lightning Charging Cable,1,14.95,2019-12-29 13:28:00,631 Church St, Austin,TX,73301 +317248,Google Phone,1,600.0,2019-12-18 08:30:00,751 12th St, San Francisco,CA,94016 +317248,Bose SoundSport Headphones,1,99.99,2019-12-18 08:30:00,751 12th St, San Francisco,CA,94016 +317249,34in Ultrawide Monitor,1,379.99,2019-12-20 17:35:00,894 8th St, New York City,NY,10001 +317250,AAA Batteries (4-pack),1,2.99,2019-12-18 02:48:00,729 4th St, Portland,OR,97035 +317251,AAA Batteries (4-pack),1,2.99,2019-12-22 08:52:00,269 North St, Portland,ME,04101 +317252,27in FHD Monitor,1,149.99,2019-12-28 14:48:00,356 Highland St, Seattle,WA,98101 +317253,Wired Headphones,1,11.99,2019-12-17 22:49:00,902 1st St, Portland,OR,97035 +317254,ThinkPad Laptop,1,999.99,2019-12-28 23:09:00,208 Cherry St, Los Angeles,CA,90001 +317255,AA Batteries (4-pack),1,3.84,2019-12-04 17:43:00,186 Lake St, Los Angeles,CA,90001 +317256,iPhone,1,700.0,2019-12-13 15:11:00,900 Pine St, San Francisco,CA,94016 +317257,34in Ultrawide Monitor,1,379.99,2019-12-04 13:12:00,463 6th St, Austin,TX,73301 +317258,iPhone,1,700.0,2019-12-11 16:10:00,573 Madison St, New York City,NY,10001 +317258,Apple Airpods Headphones,1,150.0,2019-12-11 16:10:00,573 Madison St, New York City,NY,10001 +317259,Apple Airpods Headphones,1,150.0,2019-12-28 15:19:00,667 Lake St, San Francisco,CA,94016 +317260,Lightning Charging Cable,1,14.95,2019-12-19 16:07:00,778 Cherry St, Dallas,TX,75001 +317261,Apple Airpods Headphones,1,150.0,2019-12-25 20:42:00,414 Park St, Seattle,WA,98101 +317262,AAA Batteries (4-pack),3,2.99,2019-12-23 11:28:00,960 5th St, New York City,NY,10001 +317263,USB-C Charging Cable,1,11.95,2019-12-25 10:51:00,77 Jefferson St, New York City,NY,10001 +317264,27in FHD Monitor,1,149.99,2019-12-08 06:52:00,514 12th St, Portland,OR,97035 +317265,AA Batteries (4-pack),1,3.84,2019-12-26 19:06:00,24 Church St, San Francisco,CA,94016 +317266,Lightning Charging Cable,1,14.95,2019-12-04 18:25:00,682 1st St, Boston,MA,02215 +317267,Apple Airpods Headphones,1,150.0,2019-12-05 23:58:00,836 10th St, Austin,TX,73301 +317268,AAA Batteries (4-pack),1,2.99,2019-12-08 23:07:00,946 10th St, San Francisco,CA,94016 +317269,Bose SoundSport Headphones,1,99.99,2019-12-15 13:06:00,825 Ridge St, New York City,NY,10001 +317270,AAA Batteries (4-pack),2,2.99,2019-12-29 18:24:00,19 Maple St, Los Angeles,CA,90001 +317271,Apple Airpods Headphones,1,150.0,2019-12-25 00:27:00,65 Willow St, Los Angeles,CA,90001 +317272,USB-C Charging Cable,1,11.95,2019-12-28 12:39:00,487 Cherry St, Boston,MA,02215 +317273,iPhone,1,700.0,2019-12-06 19:52:00,33 Johnson St, Portland,OR,97035 +317274,34in Ultrawide Monitor,1,379.99,2019-12-26 01:26:00,487 Walnut St, New York City,NY,10001 +317275,Apple Airpods Headphones,1,150.0,2019-12-03 09:29:00,304 Elm St, Los Angeles,CA,90001 +317276,AAA Batteries (4-pack),1,2.99,2019-12-09 22:24:00,738 River St, Los Angeles,CA,90001 +317277,AA Batteries (4-pack),1,3.84,2019-12-05 22:15:00,868 7th St, Seattle,WA,98101 +317278,Wired Headphones,1,11.99,2019-12-29 18:40:00,957 11th St, San Francisco,CA,94016 +317279,USB-C Charging Cable,1,11.95,2019-12-27 18:44:00,487 Lincoln St, Boston,MA,02215 +317280,AAA Batteries (4-pack),2,2.99,2019-12-17 19:10:00,56 Highland St, San Francisco,CA,94016 +317280,USB-C Charging Cable,1,11.95,2019-12-17 19:10:00,56 Highland St, San Francisco,CA,94016 +317281,Vareebadd Phone,1,400.0,2019-12-19 18:20:00,880 11th St, New York City,NY,10001 +317282,Lightning Charging Cable,1,14.95,2019-12-03 09:01:00,139 South St, Seattle,WA,98101 +317283,Google Phone,1,600.0,2019-12-16 18:57:00,708 Park St, San Francisco,CA,94016 +317284,Lightning Charging Cable,1,14.95,2019-12-28 16:12:00,169 Center St, Los Angeles,CA,90001 +317285,AAA Batteries (4-pack),1,2.99,2019-12-05 21:59:00,313 Adams St, San Francisco,CA,94016 +317286,Lightning Charging Cable,1,14.95,2019-12-11 21:56:00,40 Main St, Los Angeles,CA,90001 +317287,AA Batteries (4-pack),2,3.84,2019-12-27 11:24:00,192 7th St, New York City,NY,10001 +317288,Lightning Charging Cable,1,14.95,2019-12-06 14:42:00,193 Hill St, San Francisco,CA,94016 +317289,27in FHD Monitor,1,149.99,2019-12-16 17:21:00,788 9th St, San Francisco,CA,94016 +317290,34in Ultrawide Monitor,1,379.99,2019-12-03 13:52:00,743 Sunset St, San Francisco,CA,94016 +317291,AAA Batteries (4-pack),1,2.99,2019-12-02 14:57:00,442 Center St, New York City,NY,10001 +317292,Apple Airpods Headphones,1,150.0,2019-12-27 11:10:00,551 Wilson St, New York City,NY,10001 +317293,34in Ultrawide Monitor,1,379.99,2019-12-22 22:05:00,421 Madison St, San Francisco,CA,94016 +317294,USB-C Charging Cable,1,11.95,2019-12-04 16:26:00,113 Forest St, Portland,OR,97035 +317295,AAA Batteries (4-pack),1,2.99,2019-12-12 12:47:00,695 7th St, Atlanta,GA,30301 +317296,AA Batteries (4-pack),1,3.84,2019-12-23 19:10:00,27 Hill St, Los Angeles,CA,90001 +317297,27in 4K Gaming Monitor,1,389.99,2019-12-05 08:26:00,517 Cherry St, San Francisco,CA,94016 +317298,Apple Airpods Headphones,1,150.0,2019-12-10 10:50:00,682 Wilson St, Seattle,WA,98101 +317299,Lightning Charging Cable,1,14.95,2019-12-06 13:54:00,597 North St, Portland,OR,97035 +317300,AAA Batteries (4-pack),2,2.99,2019-12-19 11:22:00,814 12th St, Austin,TX,73301 +317301,USB-C Charging Cable,1,11.95,2019-12-01 21:17:00,340 11th St, Seattle,WA,98101 +317302,Google Phone,1,600.0,2019-12-23 19:12:00,713 Park St, Austin,TX,73301 +317302,USB-C Charging Cable,2,11.95,2019-12-23 19:12:00,713 Park St, Austin,TX,73301 +317303,USB-C Charging Cable,2,11.95,2019-12-04 21:17:00,395 Maple St, Boston,MA,02215 +317304,AA Batteries (4-pack),1,3.84,2019-12-30 21:09:00,568 Meadow St, Atlanta,GA,30301 +317305,Bose SoundSport Headphones,1,99.99,2019-12-31 22:50:00,775 1st St, Seattle,WA,98101 +317306,USB-C Charging Cable,1,11.95,2019-12-20 22:11:00,921 1st St, San Francisco,CA,94016 +317307,USB-C Charging Cable,1,11.95,2019-12-30 22:26:00,803 Center St, Portland,OR,97035 +317308,Wired Headphones,1,11.99,2019-12-09 10:29:00,360 Forest St, San Francisco,CA,94016 +317309,Macbook Pro Laptop,1,1700.0,2019-12-11 05:51:00,451 Spruce St, Austin,TX,73301 +317310,AAA Batteries (4-pack),1,2.99,2019-12-19 22:02:00,677 Jefferson St, Atlanta,GA,30301 +317311,AAA Batteries (4-pack),1,2.99,2019-12-05 16:52:00,151 Madison St, New York City,NY,10001 +317312,USB-C Charging Cable,1,11.95,2019-12-17 01:34:00,891 Spruce St, San Francisco,CA,94016 +317313,Macbook Pro Laptop,1,1700.0,2019-12-21 02:21:00,809 Pine St, Seattle,WA,98101 +317314,Lightning Charging Cable,1,14.95,2019-12-01 17:56:00,848 Spruce St, San Francisco,CA,94016 +317315,Apple Airpods Headphones,1,150.0,2019-12-12 18:23:00,758 8th St, Boston,MA,02215 +317316,Wired Headphones,1,11.99,2019-12-09 16:51:00,840 West St, San Francisco,CA,94016 +317317,Lightning Charging Cable,1,14.95,2019-12-16 17:00:00,668 Cedar St, Seattle,WA,98101 +317318,Apple Airpods Headphones,1,150.0,2019-12-14 20:35:00,600 Hickory St, San Francisco,CA,94016 +317319,20in Monitor,1,109.99,2019-12-25 12:28:00,575 Jackson St, Seattle,WA,98101 +317320,iPhone,1,700.0,2019-12-06 21:02:00,495 Lincoln St, Los Angeles,CA,90001 +317320,Wired Headphones,1,11.99,2019-12-06 21:02:00,495 Lincoln St, Los Angeles,CA,90001 +317321,Lightning Charging Cable,1,14.95,2019-12-02 12:44:00,699 Park St, Portland,OR,97035 +317322,Lightning Charging Cable,1,14.95,2019-12-31 01:12:00,39 Ridge St, San Francisco,CA,94016 +317323,Google Phone,1,600.0,2019-12-10 14:31:00,41 Madison St, Portland,OR,97035 +317324,Bose SoundSport Headphones,1,99.99,2019-12-02 22:44:00,87 Meadow St, San Francisco,CA,94016 +317325,34in Ultrawide Monitor,1,379.99,2019-12-24 11:54:00,880 Lakeview St, Atlanta,GA,30301 +317326,Bose SoundSport Headphones,1,99.99,2019-12-17 12:24:00,787 Main St, New York City,NY,10001 +317327,USB-C Charging Cable,1,11.95,2019-12-17 17:28:00,699 Spruce St, San Francisco,CA,94016 +317328,Vareebadd Phone,1,400.0,2019-12-03 15:43:00,559 River St, San Francisco,CA,94016 +317328,USB-C Charging Cable,1,11.95,2019-12-03 15:43:00,559 River St, San Francisco,CA,94016 +317329,Apple Airpods Headphones,1,150.0,2019-12-12 19:22:00,997 6th St, Seattle,WA,98101 +317330,AA Batteries (4-pack),1,3.84,2019-12-16 19:12:00,347 Madison St, Boston,MA,02215 +317331,20in Monitor,1,109.99,2019-12-25 16:35:00,578 Hill St, Dallas,TX,75001 +317332,AA Batteries (4-pack),1,3.84,2019-12-03 18:17:00,80 Pine St, Dallas,TX,75001 +317333,Lightning Charging Cable,1,14.95,2019-12-04 19:01:00,686 Elm St, New York City,NY,10001 +317334,USB-C Charging Cable,1,11.95,2019-12-16 00:49:00,305 Center St, San Francisco,CA,94016 +317335,27in 4K Gaming Monitor,1,389.99,2019-12-31 22:26:00,715 Spruce St, Seattle,WA,98101 +317336,USB-C Charging Cable,1,11.95,2019-12-06 17:56:00,540 8th St, Dallas,TX,75001 +317337,AAA Batteries (4-pack),1,2.99,2019-12-31 19:49:00,271 Pine St, San Francisco,CA,94016 +317338,Wired Headphones,1,11.99,2019-12-01 12:02:00,92 North St, New York City,NY,10001 +317339,Google Phone,1,600.0,2019-12-12 19:20:00,192 Hill St, Atlanta,GA,30301 +317340,20in Monitor,1,109.99,2019-12-05 09:24:00,752 2nd St, Los Angeles,CA,90001 +317341,Bose SoundSport Headphones,1,99.99,2019-12-11 01:43:00,919 9th St, San Francisco,CA,94016 +317342,USB-C Charging Cable,1,11.95,2019-12-11 07:40:00,950 North St, San Francisco,CA,94016 +317343,USB-C Charging Cable,1,11.95,2019-12-08 09:18:00,273 West St, New York City,NY,10001 +317344,Lightning Charging Cable,1,14.95,2019-12-04 22:50:00,840 River St, Boston,MA,02215 +317345,LG Dryer,1,600.0,2019-12-07 00:58:00,829 River St, Boston,MA,02215 +317346,Vareebadd Phone,1,400.0,2019-12-02 12:06:00,457 Chestnut St, San Francisco,CA,94016 +317347,AAA Batteries (4-pack),2,2.99,2019-12-26 19:21:00,649 West St, New York City,NY,10001 +317348,Google Phone,1,600.0,2019-12-17 15:54:00,779 Cherry St, Los Angeles,CA,90001 +317349,AAA Batteries (4-pack),1,2.99,2019-12-24 09:53:00,448 Dogwood St, San Francisco,CA,94016 +317350,Google Phone,1,600.0,2019-12-22 22:29:00,396 Dogwood St, Boston,MA,02215 +317350,USB-C Charging Cable,1,11.95,2019-12-22 22:29:00,396 Dogwood St, Boston,MA,02215 +317351,Lightning Charging Cable,1,14.95,2019-12-28 16:34:00,293 Lake St, Los Angeles,CA,90001 +317352,Macbook Pro Laptop,1,1700.0,2019-12-10 21:44:00,731 Church St, San Francisco,CA,94016 +317353,AA Batteries (4-pack),1,3.84,2019-12-13 15:36:00,786 5th St, San Francisco,CA,94016 +317354,Lightning Charging Cable,2,14.95,2019-12-11 09:42:00,186 Lakeview St, New York City,NY,10001 +317355,Lightning Charging Cable,1,14.95,2019-12-05 11:04:00,516 Cherry St, Atlanta,GA,30301 +317356,iPhone,1,700.0,2019-12-08 18:54:00,336 Church St, Dallas,TX,75001 +317357,27in FHD Monitor,1,149.99,2019-12-25 08:39:00,70 Dogwood St, Seattle,WA,98101 +317358,Google Phone,1,600.0,2019-12-24 13:05:00,533 Johnson St, Boston,MA,02215 +317359,Bose SoundSport Headphones,1,99.99,2019-12-16 02:34:00,705 Hill St, San Francisco,CA,94016 +317360,AA Batteries (4-pack),1,3.84,2019-12-07 11:18:00,674 Jackson St, Atlanta,GA,30301 +317361,Wired Headphones,1,11.99,2019-12-31 11:56:00,879 7th St, San Francisco,CA,94016 +317362,Google Phone,1,600.0,2019-12-17 08:09:00,603 Meadow St, San Francisco,CA,94016 +317363,AAA Batteries (4-pack),1,2.99,2019-12-23 18:19:00,839 West St, Seattle,WA,98101 +317364,USB-C Charging Cable,1,11.95,2019-12-09 15:18:00,580 Pine St, Portland,ME,04101 +317365,AA Batteries (4-pack),1,3.84,2019-12-25 13:18:00,712 13th St, New York City,NY,10001 +317366,Bose SoundSport Headphones,1,99.99,2019-12-24 14:51:00,636 12th St, Los Angeles,CA,90001 +317367,Apple Airpods Headphones,1,150.0,2019-12-09 12:25:00,933 7th St, New York City,NY,10001 +317368,27in 4K Gaming Monitor,1,389.99,2019-12-06 19:44:00,583 9th St, Los Angeles,CA,90001 +317369,AA Batteries (4-pack),1,3.84,2019-12-11 11:06:00,753 13th St, Los Angeles,CA,90001 +317370,Lightning Charging Cable,1,14.95,2019-12-03 19:52:00,292 Hill St, San Francisco,CA,94016 +317371,AAA Batteries (4-pack),1,2.99,2019-12-15 18:48:00,675 6th St, San Francisco,CA,94016 +317372,USB-C Charging Cable,1,11.95,2019-12-15 15:53:00,131 Chestnut St, Boston,MA,02215 +317373,iPhone,1,700.0,2019-12-13 21:48:00,639 Spruce St, Los Angeles,CA,90001 +317374,AA Batteries (4-pack),1,3.84,2019-12-20 18:50:00,976 Johnson St, New York City,NY,10001 +317375,Lightning Charging Cable,1,14.95,2019-12-06 00:19:00,324 Spruce St, San Francisco,CA,94016 +317376,ThinkPad Laptop,1,999.99,2019-12-22 08:01:00,305 6th St, Atlanta,GA,30301 +317377,Macbook Pro Laptop,1,1700.0,2019-12-29 21:49:00,584 West St, Los Angeles,CA,90001 +317378,Lightning Charging Cable,1,14.95,2019-12-18 13:40:00,694 Maple St, Los Angeles,CA,90001 +317379,27in 4K Gaming Monitor,1,389.99,2019-12-03 16:47:00,676 Madison St, San Francisco,CA,94016 +317380,USB-C Charging Cable,1,11.95,2019-12-25 06:21:00,787 Ridge St, Austin,TX,73301 +317381,Apple Airpods Headphones,1,150.0,2019-12-29 18:42:00,855 Hickory St, San Francisco,CA,94016 +317382,Wired Headphones,1,11.99,2019-12-13 11:24:00,837 10th St, San Francisco,CA,94016 +317383,AA Batteries (4-pack),2,3.84,2019-12-23 14:51:00,568 Willow St, Los Angeles,CA,90001 +317384,AA Batteries (4-pack),1,3.84,2019-12-22 13:28:00,391 River St, Dallas,TX,75001 +317385,AAA Batteries (4-pack),1,2.99,2019-12-28 16:58:00,270 1st St, Boston,MA,02215 +317386,Macbook Pro Laptop,1,1700.0,2019-12-29 11:10:00,776 5th St, Austin,TX,73301 +317387,Wired Headphones,1,11.99,2019-12-20 19:40:00,351 Lincoln St, Los Angeles,CA,90001 +317388,Flatscreen TV,1,300.0,2019-12-30 12:09:00,55 Meadow St, San Francisco,CA,94016 +317389,AAA Batteries (4-pack),3,2.99,2019-12-08 13:08:00,698 Willow St, Seattle,WA,98101 +317390,iPhone,1,700.0,2019-12-20 18:41:00,668 Spruce St, Portland,OR,97035 +317390,Wired Headphones,1,11.99,2019-12-20 18:41:00,668 Spruce St, Portland,OR,97035 +317391,AAA Batteries (4-pack),3,2.99,2019-12-18 23:24:00,149 Cedar St, Boston,MA,02215 +317392,Wired Headphones,1,11.99,2019-12-15 18:49:00,361 14th St, Dallas,TX,75001 +317393,27in FHD Monitor,1,149.99,2019-12-19 17:28:00,490 Hill St, Los Angeles,CA,90001 +317394,Bose SoundSport Headphones,1,99.99,2019-12-27 10:58:00,812 Cedar St, San Francisco,CA,94016 +317395,Wired Headphones,1,11.99,2019-12-28 19:44:00,162 West St, Los Angeles,CA,90001 +317396,USB-C Charging Cable,1,11.95,2019-12-13 21:37:00,950 11th St, San Francisco,CA,94016 +317397,AAA Batteries (4-pack),2,2.99,2019-12-29 13:39:00,245 1st St, Portland,OR,97035 +317398,AAA Batteries (4-pack),1,2.99,2019-12-05 19:17:00,825 Walnut St, New York City,NY,10001 +317399,20in Monitor,1,109.99,2019-12-29 16:48:00,215 Ridge St, Portland,OR,97035 +317400,Wired Headphones,2,11.99,2019-12-17 08:05:00,714 Willow St, Los Angeles,CA,90001 +317401,iPhone,1,700.0,2019-12-01 15:19:00,912 5th St, Seattle,WA,98101 +317402,34in Ultrawide Monitor,1,379.99,2019-12-26 01:17:00,384 Main St, Los Angeles,CA,90001 +317403,Google Phone,1,600.0,2019-12-10 21:55:00,103 5th St, Austin,TX,73301 +317404,Apple Airpods Headphones,1,150.0,2019-12-26 07:15:00,747 Spruce St, Seattle,WA,98101 +317405,USB-C Charging Cable,1,11.95,2019-12-10 21:48:00,304 Meadow St, Boston,MA,02215 +317406,AAA Batteries (4-pack),1,2.99,2019-12-18 15:50:00,522 Hickory St, Boston,MA,02215 +317407,Apple Airpods Headphones,1,150.0,2019-12-11 13:00:00,795 Park St, San Francisco,CA,94016 +317408,Bose SoundSport Headphones,1,99.99,2019-12-24 19:06:00,154 Highland St, Boston,MA,02215 +317409,AA Batteries (4-pack),1,3.84,2019-12-11 09:19:00,721 2nd St, Atlanta,GA,30301 +317410,Macbook Pro Laptop,1,1700.0,2019-12-08 20:58:00,41 Spruce St, Los Angeles,CA,90001 +317411,AA Batteries (4-pack),1,3.84,2019-12-15 11:44:00,764 Cherry St, Boston,MA,02215 +317412,27in FHD Monitor,1,149.99,2019-12-08 18:46:00,257 Meadow St, Boston,MA,02215 +317413,Flatscreen TV,1,300.0,2019-12-07 18:00:00,601 Madison St, Dallas,TX,75001 +317414,27in FHD Monitor,1,149.99,2019-12-25 17:49:00,233 Jefferson St, Portland,OR,97035 +317415,Wired Headphones,1,11.99,2019-12-09 13:30:00,817 8th St, San Francisco,CA,94016 +317416,20in Monitor,1,109.99,2019-12-19 18:40:00,385 Adams St, Dallas,TX,75001 +317417,27in FHD Monitor,1,149.99,2019-12-12 12:11:00,657 14th St, Seattle,WA,98101 +317418,USB-C Charging Cable,1,11.95,2019-12-16 06:48:00,974 Lincoln St, New York City,NY,10001 +317419,27in 4K Gaming Monitor,1,389.99,2019-12-25 13:21:00,141 Adams St, Dallas,TX,75001 +317420,Apple Airpods Headphones,1,150.0,2019-12-11 19:57:00,414 Highland St, San Francisco,CA,94016 +317421,AAA Batteries (4-pack),1,2.99,2019-12-11 09:33:00,28 Church St, Atlanta,GA,30301 +317422,Wired Headphones,1,11.99,2019-12-26 19:23:00,176 2nd St, Dallas,TX,75001 +317423,Wired Headphones,1,11.99,2019-12-19 13:51:00,579 Center St, Los Angeles,CA,90001 +317424,Lightning Charging Cable,1,14.95,2019-12-10 11:10:00,4 Ridge St, Atlanta,GA,30301 +317425,27in FHD Monitor,1,149.99,2019-12-01 22:03:00,498 6th St, Boston,MA,02215 +317426,Flatscreen TV,1,300.0,2019-12-19 18:35:00,949 7th St, Dallas,TX,75001 +317427,iPhone,1,700.0,2019-12-12 21:07:00,435 Willow St, San Francisco,CA,94016 +317427,Apple Airpods Headphones,1,150.0,2019-12-12 21:07:00,435 Willow St, San Francisco,CA,94016 +317428,Bose SoundSport Headphones,1,99.99,2019-12-25 11:35:00,435 Elm St, New York City,NY,10001 +317429,Lightning Charging Cable,1,14.95,2019-12-25 03:59:00,487 Jackson St, San Francisco,CA,94016 +317430,Bose SoundSport Headphones,1,99.99,2019-12-02 12:00:00,127 Lake St, San Francisco,CA,94016 +317431,AAA Batteries (4-pack),1,2.99,2019-12-14 18:39:00,785 Church St, San Francisco,CA,94016 +317432,Flatscreen TV,1,300.0,2019-12-05 17:59:00,983 Lake St, Los Angeles,CA,90001 +317433,Apple Airpods Headphones,1,150.0,2019-12-25 17:16:00,874 Main St, New York City,NY,10001 +317434,27in FHD Monitor,1,149.99,2019-12-28 19:04:00,424 Highland St, New York City,NY,10001 +317435,AAA Batteries (4-pack),1,2.99,2019-12-13 17:38:00,356 Jefferson St, San Francisco,CA,94016 +317436,Wired Headphones,1,11.99,2019-12-05 23:21:00,181 North St, Los Angeles,CA,90001 +317437,27in FHD Monitor,1,149.99,2019-12-01 20:18:00,31 Cedar St, San Francisco,CA,94016 +317438,AAA Batteries (4-pack),1,2.99,2019-12-02 17:29:00,598 Maple St, Los Angeles,CA,90001 +317439,Vareebadd Phone,1,400.0,2019-12-30 17:42:00,739 7th St, Boston,MA,02215 +317440,Wired Headphones,1,11.99,2019-12-08 08:23:00,96 Hill St, New York City,NY,10001 +317441,Vareebadd Phone,1,400.0,2019-12-03 10:42:00,513 Elm St, Boston,MA,02215 +317441,USB-C Charging Cable,1,11.95,2019-12-03 10:42:00,513 Elm St, Boston,MA,02215 +317441,Wired Headphones,1,11.99,2019-12-03 10:42:00,513 Elm St, Boston,MA,02215 +317442,USB-C Charging Cable,1,11.95,2019-12-04 15:53:00,419 6th St, San Francisco,CA,94016 +317443,27in 4K Gaming Monitor,1,389.99,2019-12-16 17:34:00,278 11th St, Atlanta,GA,30301 +317444,Lightning Charging Cable,1,14.95,2019-12-01 20:53:00,969 14th St, Los Angeles,CA,90001 +317445,Bose SoundSport Headphones,1,99.99,2019-12-13 23:43:00,171 Highland St, Dallas,TX,75001 +317446,34in Ultrawide Monitor,1,379.99,2019-12-06 11:32:00,773 Madison St, Dallas,TX,75001 +317447,AA Batteries (4-pack),2,3.84,2019-12-13 17:59:00,515 2nd St, Los Angeles,CA,90001 +317448,20in Monitor,1,109.99,2019-12-28 23:56:00,144 Adams St, San Francisco,CA,94016 +317449,Apple Airpods Headphones,1,150.0,2019-12-20 06:02:00,958 Jefferson St, Los Angeles,CA,90001 +317450,Lightning Charging Cable,1,14.95,2019-12-22 12:59:00,48 West St, San Francisco,CA,94016 +317451,Google Phone,1,600.0,2019-12-14 13:51:00,500 Lake St, New York City,NY,10001 +317452,Apple Airpods Headphones,1,150.0,2019-12-11 08:02:00,945 Center St, San Francisco,CA,94016 +317453,Lightning Charging Cable,1,14.95,2019-12-18 15:04:00,442 Jefferson St, Los Angeles,CA,90001 +317454,iPhone,1,700.0,2019-12-28 05:26:00,564 Dogwood St, Austin,TX,73301 +317454,Lightning Charging Cable,1,14.95,2019-12-28 05:26:00,564 Dogwood St, Austin,TX,73301 +317455,20in Monitor,1,109.99,2019-12-13 06:26:00,971 Sunset St, New York City,NY,10001 +317456,USB-C Charging Cable,1,11.95,2019-12-10 15:38:00,77 12th St, San Francisco,CA,94016 +317457,USB-C Charging Cable,1,11.95,2019-12-15 16:44:00,872 Chestnut St, Boston,MA,02215 +317458,ThinkPad Laptop,1,999.99,2019-12-09 11:08:00,93 Elm St, Boston,MA,02215 +317459,Bose SoundSport Headphones,1,99.99,2019-12-26 22:52:00,616 12th St, San Francisco,CA,94016 +317460,Flatscreen TV,1,300.0,2019-12-18 01:14:00,701 Willow St, New York City,NY,10001 +317461,USB-C Charging Cable,1,11.95,2019-12-22 18:00:00,631 Church St, San Francisco,CA,94016 +317462,USB-C Charging Cable,1,11.95,2019-12-27 14:55:00,260 River St, Dallas,TX,75001 +317463,Vareebadd Phone,1,400.0,2019-12-16 16:38:00,8 Main St, Los Angeles,CA,90001 +317464,AA Batteries (4-pack),2,3.84,2019-12-04 12:30:00,136 Pine St, Portland,OR,97035 +317465,iPhone,1,700.0,2019-12-09 19:56:00,709 Park St, Boston,MA,02215 +317466,Apple Airpods Headphones,1,150.0,2019-12-21 17:35:00,270 Maple St, San Francisco,CA,94016 +317467,27in FHD Monitor,1,149.99,2019-12-26 22:10:00,446 5th St, Boston,MA,02215 +317468,34in Ultrawide Monitor,1,379.99,2019-12-14 19:15:00,481 Cherry St, Dallas,TX,75001 +317469,iPhone,1,700.0,2019-12-20 17:48:00,421 Wilson St, San Francisco,CA,94016 +317470,34in Ultrawide Monitor,1,379.99,2019-12-26 10:26:00,894 Lake St, San Francisco,CA,94016 +317471,AA Batteries (4-pack),1,3.84,2019-12-23 00:18:00,998 Jefferson St, Los Angeles,CA,90001 +317472,USB-C Charging Cable,1,11.95,2019-12-28 22:54:00,428 13th St, Boston,MA,02215 +317473,AAA Batteries (4-pack),1,2.99,2019-12-24 16:44:00,870 2nd St, San Francisco,CA,94016 +317474,20in Monitor,1,109.99,2019-12-27 15:29:00,231 2nd St, Boston,MA,02215 +317475,Apple Airpods Headphones,1,150.0,2019-12-06 20:38:00,245 Chestnut St, Atlanta,GA,30301 +317476,Google Phone,1,600.0,2019-12-30 17:26:00,974 Park St, San Francisco,CA,94016 +317477,Wired Headphones,1,11.99,2019-12-15 16:19:00,268 11th St, Boston,MA,02215 +317478,Wired Headphones,2,11.99,2019-12-23 18:51:00,879 Walnut St, Los Angeles,CA,90001 +317479,34in Ultrawide Monitor,1,379.99,2019-12-26 08:20:00,66 South St, Boston,MA,02215 +317480,AAA Batteries (4-pack),1,2.99,2019-12-09 19:58:00,798 Hill St, New York City,NY,10001 +317481,Lightning Charging Cable,1,14.95,2019-12-22 19:24:00,336 West St, Los Angeles,CA,90001 +317482,Wired Headphones,1,11.99,2019-12-02 23:00:00,491 Washington St, New York City,NY,10001 +317483,AA Batteries (4-pack),1,3.84,2019-12-15 07:47:00,514 Madison St, Los Angeles,CA,90001 +317484,Macbook Pro Laptop,1,1700.0,2019-12-05 17:58:00,875 Church St, Dallas,TX,75001 +317485,AAA Batteries (4-pack),1,2.99,2019-12-30 12:19:00,890 13th St, San Francisco,CA,94016 +317486,LG Washing Machine,1,600.0,2019-12-31 21:06:00,127 14th St, Seattle,WA,98101 +317487,Lightning Charging Cable,1,14.95,2019-12-01 14:49:00,446 4th St, San Francisco,CA,94016 +317488,Wired Headphones,1,11.99,2019-12-14 10:19:00,667 9th St, New York City,NY,10001 +317489,Macbook Pro Laptop,1,1700.0,2019-12-28 13:59:00,936 Hill St, San Francisco,CA,94016 +317490,AAA Batteries (4-pack),1,2.99,2019-12-25 15:39:00,497 Hickory St, Dallas,TX,75001 +317491,Bose SoundSport Headphones,1,99.99,2019-12-09 00:24:00,20 Hill St, New York City,NY,10001 +317492,USB-C Charging Cable,1,11.95,2019-12-18 12:16:00,250 Lincoln St, San Francisco,CA,94016 +317493,AA Batteries (4-pack),1,3.84,2019-12-02 00:13:00,794 Hickory St, Atlanta,GA,30301 +317494,AA Batteries (4-pack),2,3.84,2019-12-26 10:54:00,441 Park St, Atlanta,GA,30301 +317495,USB-C Charging Cable,1,11.95,2019-12-02 18:13:00,465 Main St, Atlanta,GA,30301 +317496,Apple Airpods Headphones,1,150.0,2019-12-31 09:48:00,750 Washington St, New York City,NY,10001 +317497,AA Batteries (4-pack),1,3.84,2019-12-20 18:06:00,332 Elm St, San Francisco,CA,94016 +317498,Lightning Charging Cable,1,14.95,2019-12-22 20:42:00,803 Meadow St, New York City,NY,10001 +317499,27in FHD Monitor,1,149.99,2019-12-21 12:02:00,435 Wilson St, New York City,NY,10001 +317500,AAA Batteries (4-pack),2,2.99,2019-12-31 00:52:00,491 Wilson St, New York City,NY,10001 +317501,LG Washing Machine,1,600.0,2019-12-28 18:15:00,844 Church St, Austin,TX,73301 +317502,Apple Airpods Headphones,1,150.0,2019-12-23 13:56:00,271 West St, Dallas,TX,75001 +317503,Wired Headphones,1,11.99,2019-12-22 18:17:00,860 Spruce St, San Francisco,CA,94016 +317504,Apple Airpods Headphones,1,150.0,2019-12-15 13:56:00,19 Lake St, Austin,TX,73301 +317505,Vareebadd Phone,1,400.0,2019-12-28 19:03:00,329 Hill St, Boston,MA,02215 +317505,USB-C Charging Cable,1,11.95,2019-12-28 19:03:00,329 Hill St, Boston,MA,02215 +317506,Apple Airpods Headphones,1,150.0,2019-12-03 12:40:00,194 Lake St, San Francisco,CA,94016 +317507,Wired Headphones,2,11.99,2019-12-21 23:08:00,117 Lakeview St, Boston,MA,02215 +317508,Lightning Charging Cable,1,14.95,2019-12-28 18:55:00,948 Elm St, Boston,MA,02215 +317509,Lightning Charging Cable,1,14.95,2019-12-30 16:06:00,149 Elm St, Portland,OR,97035 +317510,AAA Batteries (4-pack),1,2.99,2019-12-24 01:20:00,483 Pine St, Dallas,TX,75001 +317511,USB-C Charging Cable,1,11.95,2019-12-17 01:38:00,127 Jackson St, Los Angeles,CA,90001 +317512,AAA Batteries (4-pack),3,2.99,2019-12-09 15:50:00,207 Dogwood St, New York City,NY,10001 +317513,AAA Batteries (4-pack),2,2.99,2019-12-04 23:25:00,28 North St, Boston,MA,02215 +317514,AA Batteries (4-pack),2,3.84,2019-12-03 18:13:00,91 Cedar St, New York City,NY,10001 +317515,iPhone,1,700.0,2019-12-05 18:46:00,252 Ridge St, Los Angeles,CA,90001 +317515,Wired Headphones,1,11.99,2019-12-05 18:46:00,252 Ridge St, Los Angeles,CA,90001 +317516,Lightning Charging Cable,1,14.95,2019-12-23 19:41:00,937 Cedar St, New York City,NY,10001 +317517,Flatscreen TV,1,300.0,2019-12-31 17:49:00,270 Lincoln St, Los Angeles,CA,90001 +317518,ThinkPad Laptop,1,999.99,2019-12-16 11:29:00,223 Elm St, Dallas,TX,75001 +317519,iPhone,1,700.0,2019-12-10 14:08:00,261 10th St, Atlanta,GA,30301 +317520,ThinkPad Laptop,1,999.99,2019-12-19 13:05:00,513 Lake St, San Francisco,CA,94016 +317521,Apple Airpods Headphones,1,150.0,2019-12-03 14:43:00,582 Highland St, Austin,TX,73301 +317522,27in 4K Gaming Monitor,1,389.99,2019-12-23 00:34:00,986 Wilson St, Los Angeles,CA,90001 +317523,Flatscreen TV,1,300.0,2019-12-02 17:32:00,354 Madison St, Atlanta,GA,30301 +317524,Wired Headphones,1,11.99,2019-12-20 18:59:00,67 7th St, Los Angeles,CA,90001 +317525,Apple Airpods Headphones,1,150.0,2019-12-15 14:59:00,863 12th St, Seattle,WA,98101 +317526,Macbook Pro Laptop,1,1700.0,2019-12-07 06:47:00,855 Meadow St, New York City,NY,10001 +317527,USB-C Charging Cable,1,11.95,2019-12-16 17:47:00,374 1st St, Austin,TX,73301 +317528,AA Batteries (4-pack),1,3.84,2019-12-12 20:15:00,1 Hill St, San Francisco,CA,94016 +317529,Bose SoundSport Headphones,1,99.99,2019-12-22 15:11:00,160 11th St, New York City,NY,10001 +317530,iPhone,1,700.0,2019-12-13 11:57:00,731 Walnut St, San Francisco,CA,94016 +317530,Wired Headphones,1,11.99,2019-12-13 11:57:00,731 Walnut St, San Francisco,CA,94016 +317531,Macbook Pro Laptop,1,1700.0,2019-12-16 14:44:00,918 11th St, Los Angeles,CA,90001 +317532,Apple Airpods Headphones,1,150.0,2019-12-23 17:40:00,112 12th St, Los Angeles,CA,90001 +317533,Apple Airpods Headphones,1,150.0,2019-12-07 07:21:00,653 9th St, Boston,MA,02215 +317534,Wired Headphones,1,11.99,2019-12-08 18:34:00,921 Meadow St, Seattle,WA,98101 +317535,USB-C Charging Cable,1,11.95,2019-12-28 06:01:00,866 Park St, Portland,OR,97035 +317536,USB-C Charging Cable,1,11.95,2019-12-30 11:28:00,366 4th St, Boston,MA,02215 +317537,Bose SoundSport Headphones,1,99.99,2019-12-22 11:23:00,313 2nd St, Boston,MA,02215 +317538,Lightning Charging Cable,1,14.95,2019-12-15 11:02:00,622 13th St, Los Angeles,CA,90001 +317539,Lightning Charging Cable,1,14.95,2019-12-16 12:44:00,925 Adams St, Portland,OR,97035 +317540,Lightning Charging Cable,1,14.95,2019-12-02 08:26:00,178 Forest St, San Francisco,CA,94016 +317541,Lightning Charging Cable,1,14.95,2019-12-19 16:46:00,776 Cedar St, Seattle,WA,98101 +317542,Apple Airpods Headphones,1,150.0,2019-12-11 18:18:00,76 13th St, Los Angeles,CA,90001 +317543,ThinkPad Laptop,1,999.99,2019-12-08 22:29:00,986 8th St, Los Angeles,CA,90001 +317544,Apple Airpods Headphones,1,150.0,2019-12-30 13:29:00,919 11th St, Atlanta,GA,30301 +317545,27in FHD Monitor,1,149.99,2019-12-25 12:01:00,511 Lakeview St, Atlanta,GA,30301 +317546,Apple Airpods Headphones,1,150.0,2019-12-16 10:19:00,618 Church St, Dallas,TX,75001 +317547,AAA Batteries (4-pack),1,2.99,2019-12-07 17:08:00,462 Lake St, Atlanta,GA,30301 +317548,Wired Headphones,1,11.99,2019-12-29 13:30:00,988 Dogwood St, Boston,MA,02215 +317549,Bose SoundSport Headphones,1,99.99,2019-12-25 15:01:00,716 10th St, San Francisco,CA,94016 +317550,ThinkPad Laptop,1,999.99,2019-12-27 19:50:00,740 5th St, New York City,NY,10001 +317551,LG Dryer,1,600.0,2019-12-31 19:50:00,252 Highland St, Portland,OR,97035 +317552,Lightning Charging Cable,1,14.95,2019-12-27 00:44:00,747 Adams St, Atlanta,GA,30301 +317553,AAA Batteries (4-pack),1,2.99,2019-12-14 02:52:00,285 Hickory St, New York City,NY,10001 +317554,Google Phone,1,600.0,2019-12-16 15:15:00,136 Main St, Austin,TX,73301 +317554,Bose SoundSport Headphones,1,99.99,2019-12-16 15:15:00,136 Main St, Austin,TX,73301 +317555,USB-C Charging Cable,1,11.95,2019-12-29 12:26:00,914 8th St, Los Angeles,CA,90001 +317556,Wired Headphones,1,11.99,2019-12-19 20:30:00,900 Wilson St, San Francisco,CA,94016 +317557,AA Batteries (4-pack),1,3.84,2019-12-30 10:23:00,99 Madison St, New York City,NY,10001 +317558,AAA Batteries (4-pack),1,2.99,2019-12-22 15:50:00,882 Park St, Los Angeles,CA,90001 +317559,27in FHD Monitor,1,149.99,2019-12-20 09:16:00,301 9th St, New York City,NY,10001 +317560,Apple Airpods Headphones,1,150.0,2019-12-29 10:28:00,1 Willow St, Dallas,TX,75001 +317561,AAA Batteries (4-pack),1,2.99,2019-12-02 16:26:00,686 10th St, Boston,MA,02215 +317562,27in FHD Monitor,1,149.99,2019-12-16 10:21:00,458 Dogwood St, Atlanta,GA,30301 +317563,AAA Batteries (4-pack),1,2.99,2019-12-31 13:39:00,24 Washington St, San Francisco,CA,94016 +317564,20in Monitor,1,109.99,2019-12-13 19:05:00,755 Forest St, Portland,OR,97035 +317565,27in FHD Monitor,1,149.99,2019-12-15 22:31:00,616 Chestnut St, Los Angeles,CA,90001 +317566,Lightning Charging Cable,1,14.95,2019-12-15 14:36:00,582 10th St, San Francisco,CA,94016 +317567,Lightning Charging Cable,1,14.95,2019-12-01 08:34:00,423 Maple St, Seattle,WA,98101 +317568,20in Monitor,1,109.99,2019-12-24 19:53:00,211 Johnson St, Boston,MA,02215 +317569,Flatscreen TV,1,300.0,2019-12-17 10:34:00,731 North St, Seattle,WA,98101 +317570,Flatscreen TV,1,300.0,2019-12-15 10:21:00,730 South St, San Francisco,CA,94016 +317571,AA Batteries (4-pack),1,3.84,2019-12-20 00:47:00,110 Pine St, Boston,MA,02215 +317572,Apple Airpods Headphones,1,150.0,2019-12-27 07:53:00,950 7th St, New York City,NY,10001 +317573,AAA Batteries (4-pack),1,2.99,2019-12-06 16:17:00,542 Johnson St, Los Angeles,CA,90001 +317574,Apple Airpods Headphones,1,150.0,2019-12-26 05:31:00,138 Hickory St, New York City,NY,10001 +317575,USB-C Charging Cable,1,11.95,2019-12-21 15:29:00,652 Cherry St, Los Angeles,CA,90001 +317576,20in Monitor,1,109.99,2019-12-21 21:45:00,640 Lake St, Los Angeles,CA,90001 +317577,AAA Batteries (4-pack),1,2.99,2019-12-14 10:22:00,56 Lakeview St, San Francisco,CA,94016 +317578,Bose SoundSport Headphones,1,99.99,2019-12-07 10:25:00,669 13th St, Austin,TX,73301 +317579,Vareebadd Phone,1,400.0,2019-12-01 21:23:00,751 Highland St, Dallas,TX,75001 +317580,Macbook Pro Laptop,1,1700.0,2019-12-04 14:21:00,675 Lincoln St, New York City,NY,10001 +317581,34in Ultrawide Monitor,1,379.99,2019-12-23 19:59:00,604 Cedar St, New York City,NY,10001 +317582,Bose SoundSport Headphones,1,99.99,2019-12-21 12:02:00,728 Willow St, Seattle,WA,98101 +317583,Wired Headphones,1,11.99,2019-12-16 00:04:00,557 Spruce St, Portland,OR,97035 +317584,USB-C Charging Cable,1,11.95,2019-12-19 09:14:00,887 Washington St, Los Angeles,CA,90001 +317585,Lightning Charging Cable,1,14.95,2019-12-29 14:46:00,110 10th St, Los Angeles,CA,90001 +317586,AA Batteries (4-pack),1,3.84,2019-12-07 19:10:00,121 Cedar St, Dallas,TX,75001 +317587,Apple Airpods Headphones,1,150.0,2019-12-10 22:15:00,277 Elm St, New York City,NY,10001 +317588,Bose SoundSport Headphones,1,99.99,2019-12-11 15:48:00,316 13th St, Portland,OR,97035 +317589,AAA Batteries (4-pack),1,2.99,2019-12-18 18:44:00,773 Highland St, San Francisco,CA,94016 +317590,27in 4K Gaming Monitor,1,389.99,2019-12-10 21:20:00,583 14th St, San Francisco,CA,94016 +317591,Apple Airpods Headphones,1,150.0,2019-12-14 22:22:00,403 Hill St, Atlanta,GA,30301 +317592,USB-C Charging Cable,1,11.95,2019-12-15 21:14:00,570 Maple St, Austin,TX,73301 +317593,Wired Headphones,1,11.99,2019-12-25 17:25:00,673 8th St, Atlanta,GA,30301 +317594,USB-C Charging Cable,1,11.95,2019-12-02 19:50:00,662 4th St, Seattle,WA,98101 +317595,AA Batteries (4-pack),1,3.84,2019-12-03 21:31:00,875 Cherry St, Boston,MA,02215 +317596,Apple Airpods Headphones,1,150.0,2019-12-20 13:41:00,220 4th St, New York City,NY,10001 +317597,27in FHD Monitor,1,149.99,2019-12-17 18:55:00,180 Elm St, Boston,MA,02215 +317598,Lightning Charging Cable,2,14.95,2019-12-17 23:14:00,963 5th St, Los Angeles,CA,90001 +317599,Bose SoundSport Headphones,1,99.99,2019-12-04 09:56:00,162 Cedar St, Atlanta,GA,30301 +317600,Google Phone,1,600.0,2019-12-11 10:34:00,991 7th St, San Francisco,CA,94016 +317601,Wired Headphones,1,11.99,2019-12-04 22:13:00,855 Madison St, Portland,ME,04101 +317602,AAA Batteries (4-pack),1,2.99,2019-12-14 09:09:00,676 7th St, Dallas,TX,75001 +317603,AAA Batteries (4-pack),1,2.99,2019-12-28 13:36:00,258 10th St, New York City,NY,10001 +317604,Flatscreen TV,1,300.0,2019-12-18 08:41:00,262 Highland St, Los Angeles,CA,90001 +317605,AAA Batteries (4-pack),2,2.99,2019-12-21 17:08:00,40 4th St, San Francisco,CA,94016 +317606,Vareebadd Phone,1,400.0,2019-12-01 07:32:00,909 Walnut St, Atlanta,GA,30301 +317607,Bose SoundSport Headphones,1,99.99,2019-12-17 18:38:00,391 Lakeview St, Boston,MA,02215 +317608,27in FHD Monitor,1,149.99,2019-12-19 10:30:00,210 9th St, Los Angeles,CA,90001 +317609,Bose SoundSport Headphones,1,99.99,2019-12-03 01:24:00,551 Madison St, Seattle,WA,98101 +317610,Lightning Charging Cable,1,14.95,2019-12-03 17:32:00,488 6th St, Seattle,WA,98101 +317611,USB-C Charging Cable,1,11.95,2019-12-05 11:32:00,696 9th St, San Francisco,CA,94016 +317612,Lightning Charging Cable,1,14.95,2019-12-10 12:40:00,734 Main St, Los Angeles,CA,90001 +317613,Lightning Charging Cable,1,14.95,2019-12-28 06:57:00,308 Park St, Los Angeles,CA,90001 +317614,Bose SoundSport Headphones,1,99.99,2019-12-15 15:26:00,483 Johnson St, Los Angeles,CA,90001 +317615,Bose SoundSport Headphones,1,99.99,2019-12-05 09:15:00,823 Lincoln St, San Francisco,CA,94016 +317616,Bose SoundSport Headphones,1,99.99,2019-12-11 20:42:00,13 5th St, San Francisco,CA,94016 +317617,Lightning Charging Cable,1,14.95,2019-12-23 09:39:00,574 13th St, San Francisco,CA,94016 +317618,Apple Airpods Headphones,1,150.0,2019-12-13 17:33:00,8 Washington St, Los Angeles,CA,90001 +317619,USB-C Charging Cable,1,11.95,2019-12-04 10:52:00,150 Wilson St, San Francisco,CA,94016 +317620,Wired Headphones,1,11.99,2019-12-13 13:47:00,721 Jackson St, Atlanta,GA,30301 +317621,Lightning Charging Cable,1,14.95,2019-12-20 11:30:00,506 6th St, Boston,MA,02215 +317622,27in FHD Monitor,1,149.99,2019-12-22 22:26:00,183 13th St, San Francisco,CA,94016 +317623,27in 4K Gaming Monitor,1,389.99,2019-12-17 12:55:00,873 Lincoln St, New York City,NY,10001 +317624,Flatscreen TV,1,300.0,2019-12-24 09:55:00,275 Dogwood St, Austin,TX,73301 +317625,iPhone,1,700.0,2019-12-13 10:00:00,488 Madison St, Seattle,WA,98101 +317626,USB-C Charging Cable,1,11.95,2019-12-27 15:24:00,302 8th St, San Francisco,CA,94016 +317627,AAA Batteries (4-pack),1,2.99,2019-12-22 09:37:00,202 Wilson St, Boston,MA,02215 +317628,AA Batteries (4-pack),1,3.84,2019-12-27 19:36:00,904 West St, Los Angeles,CA,90001 +317629,AAA Batteries (4-pack),1,2.99,2019-12-18 15:39:00,969 8th St, Los Angeles,CA,90001 +317630,USB-C Charging Cable,1,11.95,2019-12-22 12:47:00,117 Walnut St, Seattle,WA,98101 +317631,USB-C Charging Cable,1,11.95,2019-12-03 13:42:00,690 Chestnut St, San Francisco,CA,94016 +317632,USB-C Charging Cable,1,11.95,2019-12-01 14:12:00,855 Jefferson St, San Francisco,CA,94016 +317633,AA Batteries (4-pack),1,3.84,2019-12-11 22:37:00,922 Madison St, Seattle,WA,98101 +317634,Bose SoundSport Headphones,1,99.99,2019-12-26 22:08:00,218 Jefferson St, Seattle,WA,98101 +317635,AA Batteries (4-pack),1,3.84,2019-12-10 16:02:00,864 Main St, San Francisco,CA,94016 +317636,Apple Airpods Headphones,1,150.0,2019-12-22 11:40:00,190 6th St, San Francisco,CA,94016 +317637,Vareebadd Phone,1,400.0,2019-12-30 23:50:00,777 6th St, Atlanta,GA,30301 +317638,Wired Headphones,1,11.99,2019-12-18 15:48:00,752 Highland St, Los Angeles,CA,90001 +317639,Wired Headphones,1,11.99,2019-12-26 11:32:00,290 8th St, Austin,TX,73301 +317640,USB-C Charging Cable,1,11.95,2019-12-01 13:37:00,462 Willow St, San Francisco,CA,94016 +317641,Bose SoundSport Headphones,1,99.99,2019-12-31 15:48:00,131 5th St, Austin,TX,73301 +317642,Wired Headphones,1,11.99,2019-12-24 00:19:00,628 7th St, San Francisco,CA,94016 +317643,Wired Headphones,1,11.99,2019-12-19 04:48:00,351 Pine St, Los Angeles,CA,90001 +317644,AA Batteries (4-pack),1,3.84,2019-12-28 07:15:00,467 Lincoln St, Boston,MA,02215 +317645,Bose SoundSport Headphones,1,99.99,2019-12-13 15:57:00,740 Walnut St, New York City,NY,10001 +317646,AA Batteries (4-pack),1,3.84,2019-12-13 10:56:00,94 7th St, San Francisco,CA,94016 +317647,27in FHD Monitor,1,149.99,2019-12-30 13:11:00,448 Cherry St, Dallas,TX,75001 +317648,27in FHD Monitor,1,149.99,2019-12-01 20:28:00,472 Lakeview St, San Francisco,CA,94016 +317649,34in Ultrawide Monitor,1,379.99,2019-12-03 11:33:00,326 Ridge St, Los Angeles,CA,90001 +317650,Wired Headphones,1,11.99,2019-12-18 21:20:00,791 2nd St, Portland,OR,97035 +317651,ThinkPad Laptop,1,999.99,2019-12-15 01:07:00,41 Washington St, Atlanta,GA,30301 +317652,Vareebadd Phone,1,400.0,2019-12-20 08:19:00,196 Forest St, New York City,NY,10001 +317653,Apple Airpods Headphones,1,150.0,2019-12-19 20:53:00,129 Spruce St, New York City,NY,10001 +317654,ThinkPad Laptop,1,999.99,2019-12-17 00:18:00,404 Walnut St, New York City,NY,10001 +317655,AA Batteries (4-pack),1,3.84,2019-12-30 13:10:00,468 Dogwood St, San Francisco,CA,94016 +317656,Bose SoundSport Headphones,1,99.99,2019-12-18 20:34:00,449 Madison St, New York City,NY,10001 +317657,27in 4K Gaming Monitor,1,389.99,2019-12-08 08:15:00,363 Center St, Seattle,WA,98101 +317658,Lightning Charging Cable,1,14.95,2019-12-26 10:16:00,678 14th St, Los Angeles,CA,90001 +317659,USB-C Charging Cable,1,11.95,2019-12-21 21:10:00,808 Park St, Los Angeles,CA,90001 +317660,Apple Airpods Headphones,1,150.0,2019-12-18 23:16:00,447 7th St, New York City,NY,10001 +317661,34in Ultrawide Monitor,1,379.99,2019-12-31 16:44:00,403 Chestnut St, Boston,MA,02215 +317662,USB-C Charging Cable,1,11.95,2019-12-05 19:56:00,302 12th St, Austin,TX,73301 +317663,USB-C Charging Cable,1,11.95,2019-12-28 10:37:00,485 South St, Los Angeles,CA,90001 +317664,Apple Airpods Headphones,1,150.0,2019-12-22 18:45:00,535 Walnut St, San Francisco,CA,94016 +317665,USB-C Charging Cable,1,11.95,2019-12-05 14:17:00,826 Maple St, San Francisco,CA,94016 +317666,Lightning Charging Cable,1,14.95,2019-12-21 15:04:00,590 South St, Portland,OR,97035 +317667,Vareebadd Phone,1,400.0,2019-12-13 22:45:00,274 Spruce St, New York City,NY,10001 +317667,Wired Headphones,1,11.99,2019-12-13 22:45:00,274 Spruce St, New York City,NY,10001 +317668,ThinkPad Laptop,1,999.99,2019-12-19 20:40:00,302 South St, Seattle,WA,98101 +317669,USB-C Charging Cable,1,11.95,2019-12-23 14:43:00,169 Washington St, San Francisco,CA,94016 +317670,USB-C Charging Cable,2,11.95,2019-12-22 10:35:00,130 Jefferson St, Dallas,TX,75001 +317671,USB-C Charging Cable,1,11.95,2019-12-31 17:16:00,14 Wilson St, Seattle,WA,98101 +317672,AA Batteries (4-pack),1,3.84,2019-12-25 16:57:00,954 Lincoln St, San Francisco,CA,94016 +317673,USB-C Charging Cable,2,11.95,2019-12-13 18:48:00,12 Jefferson St, Atlanta,GA,30301 +317674,AAA Batteries (4-pack),1,2.99,2019-12-12 11:34:00,91 Adams St, Portland,OR,97035 +317675,Apple Airpods Headphones,1,150.0,2019-12-11 20:22:00,837 West St, San Francisco,CA,94016 +317676,Wired Headphones,1,11.99,2019-12-30 10:37:00,622 Hill St, Portland,OR,97035 +317677,AAA Batteries (4-pack),1,2.99,2019-12-22 07:46:00,337 Lakeview St, Los Angeles,CA,90001 +317678,Google Phone,1,600.0,2019-12-01 14:32:00,494 Lakeview St, New York City,NY,10001 +317678,USB-C Charging Cable,1,11.95,2019-12-01 14:32:00,494 Lakeview St, New York City,NY,10001 +317679,iPhone,1,700.0,2019-12-23 11:21:00,676 Cedar St, Dallas,TX,75001 +317679,Wired Headphones,1,11.99,2019-12-23 11:21:00,676 Cedar St, Dallas,TX,75001 +317680,Bose SoundSport Headphones,1,99.99,2019-12-07 15:25:00,809 5th St, Los Angeles,CA,90001 +317681,Bose SoundSport Headphones,1,99.99,2019-12-13 10:14:00,204 Main St, Portland,OR,97035 +317682,AA Batteries (4-pack),1,3.84,2019-12-14 22:02:00,968 Church St, Los Angeles,CA,90001 +317683,USB-C Charging Cable,1,11.95,2019-12-26 17:45:00,207 Madison St, New York City,NY,10001 +317684,USB-C Charging Cable,1,11.95,2019-12-18 06:25:00,713 Adams St, San Francisco,CA,94016 +317685,Bose SoundSport Headphones,1,99.99,2019-12-20 11:08:00,390 Ridge St, Austin,TX,73301 +317686,AAA Batteries (4-pack),1,2.99,2019-12-29 20:20:00,115 7th St, Austin,TX,73301 +317687,27in FHD Monitor,1,149.99,2019-12-25 22:04:00,285 Spruce St, New York City,NY,10001 +317688,27in FHD Monitor,1,149.99,2019-12-26 02:55:00,918 Meadow St, New York City,NY,10001 +317689,Vareebadd Phone,1,400.0,2019-12-20 04:57:00,564 Madison St, New York City,NY,10001 +317690,Lightning Charging Cable,1,14.95,2019-12-19 16:13:00,349 West St, Los Angeles,CA,90001 +317691,27in 4K Gaming Monitor,1,389.99,2019-12-25 20:34:00,592 River St, Los Angeles,CA,90001 +317692,AAA Batteries (4-pack),2,2.99,2019-12-29 09:34:00,814 Cherry St, Seattle,WA,98101 +317693,Flatscreen TV,1,300.0,2019-12-29 17:50:00,243 Lincoln St, Boston,MA,02215 +317694,USB-C Charging Cable,1,11.95,2019-12-29 18:42:00,751 Adams St, Seattle,WA,98101 +317694,AAA Batteries (4-pack),1,2.99,2019-12-29 18:42:00,751 Adams St, Seattle,WA,98101 +317695,Apple Airpods Headphones,1,150.0,2019-12-29 16:30:00,283 Johnson St, San Francisco,CA,94016 +317696,Bose SoundSport Headphones,1,99.99,2019-12-20 18:57:00,931 6th St, Seattle,WA,98101 +317697,Apple Airpods Headphones,1,150.0,2019-12-18 18:57:00,238 13th St, Los Angeles,CA,90001 +317698,Lightning Charging Cable,1,14.95,2019-12-29 22:50:00,563 6th St, Los Angeles,CA,90001 +317699,AAA Batteries (4-pack),1,2.99,2019-12-26 10:32:00,515 South St, San Francisco,CA,94016 +317700,Wired Headphones,1,11.99,2019-12-24 13:55:00,821 Cherry St, Dallas,TX,75001 +317701,iPhone,1,700.0,2019-12-16 19:07:00,428 North St, Austin,TX,73301 +317702,AAA Batteries (4-pack),1,2.99,2019-12-25 20:13:00,225 South St, Boston,MA,02215 +317703,AA Batteries (4-pack),2,3.84,2019-12-26 19:10:00,724 Hickory St, Boston,MA,02215 +317704,USB-C Charging Cable,1,11.95,2019-12-18 17:18:00,500 4th St, Los Angeles,CA,90001 +317705,27in FHD Monitor,1,149.99,2019-12-10 09:17:00,216 Elm St, New York City,NY,10001 +317705,Apple Airpods Headphones,1,150.0,2019-12-10 09:17:00,216 Elm St, New York City,NY,10001 +317706,Flatscreen TV,1,300.0,2019-12-17 19:40:00,301 Chestnut St, Los Angeles,CA,90001 +317707,Wired Headphones,1,11.99,2019-12-14 20:19:00,473 14th St, San Francisco,CA,94016 +317708,Flatscreen TV,1,300.0,2019-12-31 21:31:00,762 Jefferson St, Austin,TX,73301 +317709,iPhone,1,700.0,2019-12-18 16:06:00,642 13th St, Seattle,WA,98101 +317710,Bose SoundSport Headphones,1,99.99,2019-12-21 20:07:00,395 12th St, New York City,NY,10001 +317711,34in Ultrawide Monitor,1,379.99,2019-12-12 17:49:00,151 South St, Los Angeles,CA,90001 +317712,Apple Airpods Headphones,1,150.0,2019-12-29 19:07:00,301 Madison St, Atlanta,GA,30301 +317713,Lightning Charging Cable,1,14.95,2019-12-17 11:20:00,763 Jefferson St, Austin,TX,73301 +317714,Lightning Charging Cable,1,14.95,2019-12-17 18:06:00,173 Cherry St, Dallas,TX,75001 +317715,Vareebadd Phone,1,400.0,2019-12-13 16:20:00,270 Lake St, Austin,TX,73301 +317716,Google Phone,1,600.0,2019-12-02 19:28:00,80 Lake St, San Francisco,CA,94016 +317716,Bose SoundSport Headphones,1,99.99,2019-12-02 19:28:00,80 Lake St, San Francisco,CA,94016 +317717,AA Batteries (4-pack),1,3.84,2019-12-20 19:42:00,596 Hill St, Atlanta,GA,30301 +317718,AAA Batteries (4-pack),1,2.99,2019-12-28 18:39:00,983 1st St, New York City,NY,10001 +317719,AA Batteries (4-pack),1,3.84,2019-12-23 22:41:00,637 Center St, San Francisco,CA,94016 +317720,iPhone,1,700.0,2019-12-17 08:04:00,251 South St, Seattle,WA,98101 +317721,USB-C Charging Cable,1,11.95,2019-12-11 08:32:00,395 Lakeview St, Dallas,TX,75001 +317722,Lightning Charging Cable,1,14.95,2019-12-22 11:11:00,833 7th St, Austin,TX,73301 +317723,AA Batteries (4-pack),1,3.84,2019-12-28 09:35:00,150 14th St, Austin,TX,73301 +317724,Lightning Charging Cable,1,14.95,2019-12-22 09:30:00,508 Elm St, San Francisco,CA,94016 +317725,Google Phone,1,600.0,2019-12-28 21:13:00,228 Johnson St, Seattle,WA,98101 +317726,Apple Airpods Headphones,1,150.0,2019-12-05 08:45:00,986 5th St, Los Angeles,CA,90001 +317727,USB-C Charging Cable,1,11.95,2019-12-03 12:53:00,533 8th St, Atlanta,GA,30301 +317728,AAA Batteries (4-pack),1,2.99,2019-12-13 21:29:00,467 Madison St, Los Angeles,CA,90001 +317729,AAA Batteries (4-pack),1,2.99,2019-12-09 08:27:00,374 Dogwood St, New York City,NY,10001 +317730,AA Batteries (4-pack),2,3.84,2019-12-28 17:42:00,830 Church St, Seattle,WA,98101 +317731,Lightning Charging Cable,1,14.95,2019-12-02 21:26:00,971 Washington St, Seattle,WA,98101 +317732,Lightning Charging Cable,1,14.95,2019-12-12 15:20:00,712 Hickory St, Atlanta,GA,30301 +317733,Flatscreen TV,1,300.0,2019-12-11 14:39:00,7 Walnut St, Los Angeles,CA,90001 +317734,Apple Airpods Headphones,1,150.0,2019-12-22 10:13:00,883 Jackson St, New York City,NY,10001 +317735,Wired Headphones,1,11.99,2019-12-13 05:22:00,823 Cherry St, Boston,MA,02215 +317736,USB-C Charging Cable,1,11.95,2019-12-07 15:15:00,427 14th St, Boston,MA,02215 +317737,20in Monitor,1,109.99,2019-12-30 16:18:00,488 13th St, Portland,OR,97035 +317738,27in FHD Monitor,1,149.99,2019-12-11 20:16:00,877 Sunset St, Atlanta,GA,30301 +317739,AAA Batteries (4-pack),1,2.99,2019-12-27 11:45:00,966 Park St, Boston,MA,02215 +317740,USB-C Charging Cable,1,11.95,2019-12-10 20:17:00,292 Elm St, Portland,ME,04101 +317741,Flatscreen TV,1,300.0,2019-12-20 22:39:00,19 Wilson St, San Francisco,CA,94016 +317742,Lightning Charging Cable,1,14.95,2019-12-14 17:43:00,912 Ridge St, Dallas,TX,75001 +317743,USB-C Charging Cable,1,11.95,2019-12-25 10:57:00,270 Center St, New York City,NY,10001 +317744,AAA Batteries (4-pack),2,2.99,2019-12-11 18:39:00,111 5th St, New York City,NY,10001 +317745,ThinkPad Laptop,1,999.99,2019-12-01 11:28:00,747 Jefferson St, Seattle,WA,98101 +317746,iPhone,1,700.0,2019-12-28 13:27:00,522 12th St, Los Angeles,CA,90001 +317746,Apple Airpods Headphones,1,150.0,2019-12-28 13:27:00,522 12th St, Los Angeles,CA,90001 +317747,Apple Airpods Headphones,1,150.0,2019-12-19 16:49:00,126 5th St, San Francisco,CA,94016 +317748,USB-C Charging Cable,1,11.95,2019-12-12 15:01:00,773 13th St, Los Angeles,CA,90001 +317749,Macbook Pro Laptop,1,1700.0,2019-12-16 08:32:00,320 North St, Seattle,WA,98101 +317750,Lightning Charging Cable,1,14.95,2019-12-28 14:39:00,423 Forest St, New York City,NY,10001 +317751,Wired Headphones,1,11.99,2019-12-11 15:50:00,157 Dogwood St, San Francisco,CA,94016 +317752,AA Batteries (4-pack),1,3.84,2019-12-19 18:14:00,902 Cherry St, Austin,TX,73301 +317753,AA Batteries (4-pack),1,3.84,2019-12-20 10:04:00,477 North St, New York City,NY,10001 +317754,Bose SoundSport Headphones,1,99.99,2019-12-25 10:14:00,537 Park St, New York City,NY,10001 +317755,Wired Headphones,1,11.99,2019-12-18 18:16:00,768 Cedar St, Los Angeles,CA,90001 +317756,Lightning Charging Cable,1,14.95,2019-12-08 14:55:00,283 Adams St, Austin,TX,73301 +317757,iPhone,1,700.0,2019-12-28 13:32:00,163 Chestnut St, San Francisco,CA,94016 +317757,Wired Headphones,1,11.99,2019-12-28 13:32:00,163 Chestnut St, San Francisco,CA,94016 +317758,34in Ultrawide Monitor,1,379.99,2019-12-24 14:47:00,977 12th St, Atlanta,GA,30301 +317759,AAA Batteries (4-pack),2,2.99,2019-12-31 22:40:00,412 Ridge St, Los Angeles,CA,90001 +317760,AA Batteries (4-pack),1,3.84,2019-12-16 13:33:00,516 Meadow St, Los Angeles,CA,90001 +317761,20in Monitor,1,109.99,2019-12-18 14:13:00,341 Hill St, San Francisco,CA,94016 +317762,20in Monitor,1,109.99,2019-12-15 10:05:00,80 Park St, San Francisco,CA,94016 +317763,Macbook Pro Laptop,1,1700.0,2019-12-05 17:20:00,264 Chestnut St, New York City,NY,10001 +317764,AA Batteries (4-pack),2,3.84,2019-12-19 22:10:00,826 Church St, New York City,NY,10001 +317765,Bose SoundSport Headphones,1,99.99,2019-12-19 22:55:00,812 Pine St, Dallas,TX,75001 +317766,AA Batteries (4-pack),1,3.84,2019-12-16 18:31:00,974 12th St, Los Angeles,CA,90001 +317767,Apple Airpods Headphones,1,150.0,2019-12-28 21:16:00,886 2nd St, San Francisco,CA,94016 +317768,Lightning Charging Cable,1,14.95,2019-12-17 12:18:00,989 Park St, Seattle,WA,98101 +317769,iPhone,1,700.0,2019-12-18 12:05:00,721 Hickory St, Seattle,WA,98101 +317770,Apple Airpods Headphones,1,150.0,2019-12-29 15:55:00,429 Jackson St, Los Angeles,CA,90001 +317771,Bose SoundSport Headphones,1,99.99,2019-12-14 10:13:00,174 Wilson St, Dallas,TX,75001 +317772,Bose SoundSport Headphones,1,99.99,2019-12-24 01:10:00,316 4th St, Portland,OR,97035 +317773,Lightning Charging Cable,3,14.95,2019-12-26 21:11:00,270 Johnson St, Dallas,TX,75001 +317774,27in 4K Gaming Monitor,1,389.99,2019-12-07 15:55:00,47 12th St, Boston,MA,02215 +317775,AA Batteries (4-pack),1,3.84,2019-12-17 22:18:00,465 Spruce St, San Francisco,CA,94016 +317776,Bose SoundSport Headphones,1,99.99,2019-12-03 19:30:00,118 Highland St, Los Angeles,CA,90001 +317777,27in 4K Gaming Monitor,1,389.99,2019-12-02 10:55:00,743 5th St, Dallas,TX,75001 +317778,AA Batteries (4-pack),1,3.84,2019-12-01 08:32:00,685 River St, Los Angeles,CA,90001 +317779,Flatscreen TV,1,300.0,2019-12-11 22:35:00,454 Jefferson St, Seattle,WA,98101 +317780,AAA Batteries (4-pack),5,2.99,2019-12-25 21:28:00,205 Willow St, Portland,OR,97035 +317781,AAA Batteries (4-pack),1,2.99,2019-12-15 15:43:00,745 Jackson St, Seattle,WA,98101 +317782,USB-C Charging Cable,1,11.95,2019-12-26 09:42:00,454 Church St, Los Angeles,CA,90001 +317783,Wired Headphones,1,11.99,2019-12-06 19:23:00,222 8th St, San Francisco,CA,94016 +317784,AAA Batteries (4-pack),1,2.99,2019-12-23 19:05:00,168 Forest St, New York City,NY,10001 +317785,Bose SoundSport Headphones,1,99.99,2019-12-27 20:21:00,133 Willow St, Dallas,TX,75001 +317786,AAA Batteries (4-pack),3,2.99,2019-12-28 20:42:00,128 Elm St, New York City,NY,10001 +317787,Wired Headphones,1,11.99,2019-12-07 16:09:00,113 Jackson St, San Francisco,CA,94016 +317788,Lightning Charging Cable,1,14.95,2019-12-30 09:12:00,152 River St, San Francisco,CA,94016 +317789,iPhone,1,700.0,2019-12-22 12:33:00,343 5th St, New York City,NY,10001 +317789,Lightning Charging Cable,1,14.95,2019-12-22 12:33:00,343 5th St, New York City,NY,10001 +317790,Apple Airpods Headphones,1,150.0,2019-12-26 15:58:00,385 Pine St, Boston,MA,02215 +317791,34in Ultrawide Monitor,1,379.99,2019-12-06 22:51:00,428 Chestnut St, San Francisco,CA,94016 +317792,ThinkPad Laptop,1,999.99,2019-12-11 23:56:00,532 13th St, San Francisco,CA,94016 +317793,27in FHD Monitor,1,149.99,2019-12-09 18:13:00,357 11th St, Los Angeles,CA,90001 +317794,Bose SoundSport Headphones,1,99.99,2019-12-20 20:04:00,514 8th St, San Francisco,CA,94016 +317795,Flatscreen TV,1,300.0,2019-12-14 11:17:00,537 Park St, San Francisco,CA,94016 +317796,AAA Batteries (4-pack),1,2.99,2019-12-02 17:16:00,482 Lake St, San Francisco,CA,94016 +317797,Flatscreen TV,1,300.0,2019-12-21 10:11:00,444 River St, San Francisco,CA,94016 +317798,Lightning Charging Cable,1,14.95,2019-12-21 12:54:00,63 Cedar St, Dallas,TX,75001 +317799,Vareebadd Phone,1,400.0,2019-12-18 09:33:00,282 Forest St, Seattle,WA,98101 +317800,Wired Headphones,1,11.99,2019-12-27 07:58:00,286 Chestnut St, San Francisco,CA,94016 +317801,Apple Airpods Headphones,1,150.0,2019-12-21 19:39:00,133 7th St, Los Angeles,CA,90001 +317802,USB-C Charging Cable,1,11.95,2019-12-26 09:40:00,383 1st St, San Francisco,CA,94016 +317803,Bose SoundSport Headphones,1,99.99,2019-12-16 14:31:00,640 Highland St, San Francisco,CA,94016 +317804,Bose SoundSport Headphones,1,99.99,2019-12-18 15:43:00,136 1st St, Atlanta,GA,30301 +317805,27in 4K Gaming Monitor,1,389.99,2019-12-25 20:31:00,95 Maple St, New York City,NY,10001 +317806,Bose SoundSport Headphones,1,99.99,2019-12-14 19:30:00,447 Lincoln St, Los Angeles,CA,90001 +317807,AAA Batteries (4-pack),1,2.99,2019-12-21 12:34:00,624 West St, Portland,OR,97035 +317808,AAA Batteries (4-pack),1,2.99,2019-12-28 12:12:00,296 Hickory St, New York City,NY,10001 +317809,AA Batteries (4-pack),3,3.84,2019-12-13 20:35:00,416 Willow St, Dallas,TX,75001 +317810,AA Batteries (4-pack),2,3.84,2019-12-07 19:56:00,180 Washington St, Portland,OR,97035 +317811,Lightning Charging Cable,1,14.95,2019-12-02 11:29:00,649 Dogwood St, Atlanta,GA,30301 +317812,27in FHD Monitor,1,149.99,2019-12-29 18:42:00,329 River St, San Francisco,CA,94016 +317813,AAA Batteries (4-pack),2,2.99,2019-12-07 15:15:00,259 Highland St, New York City,NY,10001 +317814,USB-C Charging Cable,2,11.95,2019-12-26 21:57:00,748 Dogwood St, Dallas,TX,75001 +317814,27in 4K Gaming Monitor,1,389.99,2019-12-26 21:57:00,748 Dogwood St, Dallas,TX,75001 +317815,34in Ultrawide Monitor,1,379.99,2019-12-04 10:15:00,490 Park St, Atlanta,GA,30301 +317816,Flatscreen TV,1,300.0,2019-12-06 15:30:00,132 Church St, New York City,NY,10001 +317817,Apple Airpods Headphones,1,150.0,2019-12-24 19:14:00,10 7th St, Portland,OR,97035 +317818,AAA Batteries (4-pack),2,2.99,2019-12-13 08:27:00,75 Hickory St, San Francisco,CA,94016 +317819,Lightning Charging Cable,1,14.95,2019-12-09 13:32:00,166 West St, Los Angeles,CA,90001 +317820,34in Ultrawide Monitor,1,379.99,2019-12-30 17:25:00,120 14th St, Los Angeles,CA,90001 +317821,Lightning Charging Cable,1,14.95,2019-12-19 17:54:00,940 Lake St, Austin,TX,73301 +317822,USB-C Charging Cable,2,11.95,2019-12-29 10:33:00,710 Jackson St, Austin,TX,73301 +317823,Wired Headphones,1,11.99,2019-12-18 15:49:00,817 Maple St, Dallas,TX,75001 +317824,20in Monitor,1,109.99,2019-12-08 14:58:00,43 Church St, San Francisco,CA,94016 +317825,Wired Headphones,1,11.99,2019-12-27 17:55:00,866 Jefferson St, Boston,MA,02215 +317826,27in 4K Gaming Monitor,1,389.99,2019-12-11 13:52:00,591 10th St, Los Angeles,CA,90001 +317827,Bose SoundSport Headphones,1,99.99,2019-12-04 20:10:00,949 Highland St, Dallas,TX,75001 +317828,Google Phone,1,600.0,2019-12-14 15:43:00,867 Maple St, San Francisco,CA,94016 +317829,AAA Batteries (4-pack),2,2.99,2019-12-08 17:57:00,207 7th St, Austin,TX,73301 +317830,ThinkPad Laptop,1,999.99,2019-12-03 16:52:00,198 14th St, Portland,OR,97035 +317831,Bose SoundSport Headphones,1,99.99,2019-12-15 15:34:00,517 Cherry St, Atlanta,GA,30301 +317832,27in 4K Gaming Monitor,1,389.99,2019-12-31 16:01:00,63 Hickory St, Los Angeles,CA,90001 +317833,iPhone,1,700.0,2019-12-22 22:41:00,866 Center St, Los Angeles,CA,90001 +317834,Lightning Charging Cable,1,14.95,2019-12-09 16:04:00,393 Main St, New York City,NY,10001 +317835,Lightning Charging Cable,1,14.95,2019-12-17 20:38:00,876 Willow St, San Francisco,CA,94016 +317836,AAA Batteries (4-pack),2,2.99,2019-12-27 11:35:00,372 Maple St, Boston,MA,02215 +317837,Wired Headphones,1,11.99,2019-12-23 16:41:00,217 North St, Dallas,TX,75001 +317838,AAA Batteries (4-pack),1,2.99,2019-12-03 06:59:00,853 1st St, San Francisco,CA,94016 +317839,Lightning Charging Cable,1,14.95,2019-12-05 08:25:00,162 Hill St, Boston,MA,02215 +317840,Wired Headphones,1,11.99,2019-12-06 17:36:00,618 Ridge St, Los Angeles,CA,90001 +317841,AAA Batteries (4-pack),1,2.99,2019-12-29 18:29:00,466 8th St, San Francisco,CA,94016 +317842,Google Phone,1,600.0,2019-12-08 08:19:00,348 Main St, Seattle,WA,98101 +317843,Apple Airpods Headphones,1,150.0,2019-12-19 08:22:00,735 Center St, New York City,NY,10001 +317844,USB-C Charging Cable,1,11.95,2019-12-09 19:34:00,760 1st St, Los Angeles,CA,90001 +317845,Wired Headphones,1,11.99,2019-12-03 20:47:00,706 Jefferson St, New York City,NY,10001 +317846,AA Batteries (4-pack),1,3.84,2019-12-26 18:57:00,178 West St, Los Angeles,CA,90001 +317847,20in Monitor,1,109.99,2019-12-07 17:08:00,995 Lake St, Boston,MA,02215 +317848,AAA Batteries (4-pack),1,2.99,2019-12-05 10:13:00,920 West St, New York City,NY,10001 +317849,Lightning Charging Cable,1,14.95,2019-12-22 21:11:00,573 Jefferson St, San Francisco,CA,94016 +317850,USB-C Charging Cable,1,11.95,2019-12-13 11:46:00,600 8th St, Los Angeles,CA,90001 +317851,USB-C Charging Cable,1,11.95,2019-12-02 14:30:00,40 6th St, Los Angeles,CA,90001 +317852,AA Batteries (4-pack),1,3.84,2019-12-06 22:05:00,656 Church St, Atlanta,GA,30301 +317853,Bose SoundSport Headphones,1,99.99,2019-12-29 21:28:00,380 Washington St, Los Angeles,CA,90001 +317854,Apple Airpods Headphones,1,150.0,2019-12-11 06:07:00,110 Meadow St, San Francisco,CA,94016 +317855,USB-C Charging Cable,1,11.95,2019-12-27 13:33:00,775 7th St, Seattle,WA,98101 +317856,27in FHD Monitor,1,149.99,2019-12-11 00:48:00,188 River St, San Francisco,CA,94016 +317857,Google Phone,1,600.0,2019-12-29 13:17:00,676 Lakeview St, Boston,MA,02215 +317858,AAA Batteries (4-pack),1,2.99,2019-12-14 14:36:00,662 Adams St, New York City,NY,10001 +317859,Wired Headphones,1,11.99,2019-12-29 11:45:00,215 Adams St, Dallas,TX,75001 +317860,Lightning Charging Cable,1,14.95,2019-12-23 09:06:00,533 6th St, Dallas,TX,75001 +317861,AAA Batteries (4-pack),1,2.99,2019-12-25 08:11:00,839 Johnson St, Los Angeles,CA,90001 +317862,27in 4K Gaming Monitor,1,389.99,2019-12-15 07:25:00,789 Washington St, Dallas,TX,75001 +317863,AA Batteries (4-pack),1,3.84,2019-12-20 19:17:00,290 9th St, Los Angeles,CA,90001 +317864,Wired Headphones,1,11.99,2019-12-21 21:17:00,931 South St, San Francisco,CA,94016 +317865,Vareebadd Phone,1,400.0,2019-12-08 21:02:00,236 Cherry St, New York City,NY,10001 +317866,ThinkPad Laptop,1,999.99,2019-12-14 20:13:00,566 Lake St, San Francisco,CA,94016 +317867,AA Batteries (4-pack),1,3.84,2019-12-07 15:00:00,27 11th St, Los Angeles,CA,90001 +317868,AA Batteries (4-pack),1,3.84,2019-12-28 21:23:00,463 Madison St, New York City,NY,10001 +317869,USB-C Charging Cable,1,11.95,2019-12-04 00:26:00,871 Highland St, Boston,MA,02215 +317870,LG Dryer,1,600.0,2019-12-14 18:10:00,857 14th St, San Francisco,CA,94016 +317871,AA Batteries (4-pack),1,3.84,2019-12-27 14:20:00,830 14th St, New York City,NY,10001 +317872,Wired Headphones,1,11.99,2019-12-12 07:05:00,636 South St, Boston,MA,02215 +317873,34in Ultrawide Monitor,1,379.99,2019-12-16 20:34:00,289 River St, Boston,MA,02215 +317874,27in FHD Monitor,1,149.99,2019-12-08 19:21:00,878 Jefferson St, New York City,NY,10001 +317875,Wired Headphones,1,11.99,2019-12-10 00:13:00,235 Lakeview St, Boston,MA,02215 +317876,Lightning Charging Cable,1,14.95,2019-12-09 17:23:00,172 Meadow St, Austin,TX,73301 +317877,AAA Batteries (4-pack),1,2.99,2019-12-04 20:37:00,329 9th St, San Francisco,CA,94016 +317878,USB-C Charging Cable,1,11.95,2019-12-16 13:12:00,147 Forest St, Seattle,WA,98101 +317879,Bose SoundSport Headphones,1,99.99,2019-12-22 18:15:00,505 Lincoln St, Austin,TX,73301 +317880,ThinkPad Laptop,1,999.99,2019-12-29 15:14:00,953 Dogwood St, Seattle,WA,98101 +317881,AA Batteries (4-pack),2,3.84,2019-12-01 17:01:00,417 Sunset St, San Francisco,CA,94016 +317882,Google Phone,1,600.0,2019-12-11 11:05:00,57 Ridge St, San Francisco,CA,94016 +317883,AAA Batteries (4-pack),2,2.99,2019-12-29 18:54:00,185 Forest St, San Francisco,CA,94016 +317884,USB-C Charging Cable,1,11.95,2019-12-07 06:53:00,73 11th St, Atlanta,GA,30301 +317885,34in Ultrawide Monitor,1,379.99,2019-12-11 22:56:00,813 7th St, Atlanta,GA,30301 +317886,USB-C Charging Cable,1,11.95,2019-12-23 12:59:00,571 Jefferson St, New York City,NY,10001 +317887,USB-C Charging Cable,1,11.95,2019-12-15 08:15:00,623 North St, Seattle,WA,98101 +317888,Apple Airpods Headphones,1,150.0,2019-12-31 20:23:00,897 Cherry St, Los Angeles,CA,90001 +317889,AA Batteries (4-pack),1,3.84,2019-12-14 19:49:00,916 Hickory St, Atlanta,GA,30301 +317890,ThinkPad Laptop,1,999.99,2019-12-04 13:28:00,948 Chestnut St, Dallas,TX,75001 +317891,Bose SoundSport Headphones,1,99.99,2019-12-23 09:45:00,127 Main St, New York City,NY,10001 +317892,AAA Batteries (4-pack),2,2.99,2019-12-01 13:04:00,18 2nd St, San Francisco,CA,94016 +317893,Lightning Charging Cable,1,14.95,2019-12-09 16:19:00,834 Wilson St, San Francisco,CA,94016 +317894,AA Batteries (4-pack),2,3.84,2019-12-20 18:37:00,941 West St, Los Angeles,CA,90001 +317895,AAA Batteries (4-pack),1,2.99,2019-12-14 08:41:00,76 Pine St, Atlanta,GA,30301 +317896,Lightning Charging Cable,1,14.95,2019-12-13 16:51:00,242 Elm St, Los Angeles,CA,90001 +317897,Wired Headphones,1,11.99,2019-12-12 22:51:00,740 Center St, Los Angeles,CA,90001 +317898,Apple Airpods Headphones,1,150.0,2019-12-01 16:50:00,392 Hill St, Los Angeles,CA,90001 +317899,Flatscreen TV,1,300.0,2019-12-09 22:57:00,612 Madison St, Dallas,TX,75001 +317900,Lightning Charging Cable,2,14.95,2019-12-23 17:23:00,475 13th St, Dallas,TX,75001 +317901,USB-C Charging Cable,2,11.95,2019-12-30 22:13:00,851 11th St, Seattle,WA,98101 +317902,Bose SoundSport Headphones,1,99.99,2019-12-31 12:45:00,347 Dogwood St, San Francisco,CA,94016 +317903,AAA Batteries (4-pack),1,2.99,2019-12-15 10:29:00,541 Wilson St, Dallas,TX,75001 +317904,Wired Headphones,1,11.99,2019-12-02 23:29:00,441 Jackson St, Los Angeles,CA,90001 +317905,USB-C Charging Cable,1,11.95,2019-12-15 11:07:00,973 12th St, San Francisco,CA,94016 +317906,Wired Headphones,1,11.99,2019-12-02 12:43:00,593 North St, San Francisco,CA,94016 +317907,27in 4K Gaming Monitor,1,389.99,2019-12-13 19:19:00,664 5th St, Atlanta,GA,30301 +317908,AAA Batteries (4-pack),1,2.99,2019-12-08 13:00:00,29 Jackson St, Atlanta,GA,30301 +317909,Bose SoundSport Headphones,1,99.99,2019-12-01 14:27:00,433 Meadow St, Seattle,WA,98101 +317910,USB-C Charging Cable,1,11.95,2019-12-12 11:37:00,513 Church St, San Francisco,CA,94016 +317911,ThinkPad Laptop,1,999.99,2019-12-21 13:46:00,836 Chestnut St, Portland,OR,97035 +317912,AA Batteries (4-pack),1,3.84,2019-12-10 12:54:00,489 Madison St, Boston,MA,02215 +317913,Lightning Charging Cable,1,14.95,2019-12-30 13:32:00,239 11th St, San Francisco,CA,94016 +317914,Wired Headphones,2,11.99,2019-12-15 20:39:00,239 Walnut St, Portland,OR,97035 +317915,Wired Headphones,1,11.99,2019-12-04 19:22:00,601 Johnson St, Boston,MA,02215 +317916,Wired Headphones,1,11.99,2019-12-02 06:43:00,769 Washington St, Atlanta,GA,30301 +317917,Wired Headphones,1,11.99,2019-12-01 23:10:00,732 Jackson St, Portland,ME,04101 +317918,iPhone,1,700.0,2019-12-24 15:30:00,409 Madison St, Los Angeles,CA,90001 +317918,Lightning Charging Cable,1,14.95,2019-12-24 15:30:00,409 Madison St, Los Angeles,CA,90001 +317919,AA Batteries (4-pack),1,3.84,2019-12-02 14:29:00,272 7th St, Los Angeles,CA,90001 +317920,Flatscreen TV,1,300.0,2019-12-05 13:16:00,893 Hickory St, San Francisco,CA,94016 +317921,20in Monitor,1,109.99,2019-12-21 05:03:00,309 Center St, New York City,NY,10001 +317922,Apple Airpods Headphones,1,150.0,2019-12-28 10:42:00,47 Meadow St, Dallas,TX,75001 +317923,Vareebadd Phone,1,400.0,2019-12-29 20:05:00,662 Maple St, Portland,OR,97035 +317924,20in Monitor,1,109.99,2019-12-20 18:29:00,173 9th St, Dallas,TX,75001 +317925,Lightning Charging Cable,1,14.95,2019-12-29 07:37:00,564 South St, Atlanta,GA,30301 +317926,AAA Batteries (4-pack),1,2.99,2019-12-30 07:37:00,565 West St, Los Angeles,CA,90001 +317927,Macbook Pro Laptop,1,1700.0,2019-12-13 12:05:00,17 Lakeview St, Dallas,TX,75001 +317928,Wired Headphones,1,11.99,2019-12-25 13:25:00,813 Hill St, San Francisco,CA,94016 +317929,34in Ultrawide Monitor,1,379.99,2019-12-08 00:49:00,120 Ridge St, Los Angeles,CA,90001 +317930,Wired Headphones,1,11.99,2019-12-31 08:49:00,619 10th St, San Francisco,CA,94016 +317931,Lightning Charging Cable,1,14.95,2019-12-31 12:05:00,567 Main St, Boston,MA,02215 +317932,iPhone,1,700.0,2019-12-02 08:42:00,944 Walnut St, Austin,TX,73301 +317933,Apple Airpods Headphones,1,150.0,2019-12-17 06:22:00,654 Dogwood St, New York City,NY,10001 +317934,ThinkPad Laptop,1,999.99,2019-12-24 06:52:00,317 Dogwood St, Atlanta,GA,30301 +317934,AA Batteries (4-pack),1,3.84,2019-12-24 06:52:00,317 Dogwood St, Atlanta,GA,30301 +317935,Apple Airpods Headphones,1,150.0,2019-12-04 19:57:00,201 Park St, Dallas,TX,75001 +317936,USB-C Charging Cable,1,11.95,2019-12-09 12:22:00,937 Johnson St, Dallas,TX,75001 +317937,Wired Headphones,1,11.99,2019-12-15 12:18:00,491 Elm St, Atlanta,GA,30301 +317938,20in Monitor,1,109.99,2019-12-06 14:21:00,483 Hickory St, Portland,OR,97035 +317939,20in Monitor,1,109.99,2019-12-29 02:30:00,538 8th St, San Francisco,CA,94016 +317940,Google Phone,1,600.0,2019-12-23 16:48:00,446 Spruce St, Boston,MA,02215 +317941,Bose SoundSport Headphones,1,99.99,2019-12-01 11:02:00,142 Lake St, San Francisco,CA,94016 +317942,Apple Airpods Headphones,1,150.0,2019-12-07 14:15:00,476 2nd St, San Francisco,CA,94016 +317943,iPhone,1,700.0,2019-12-12 17:44:00,207 11th St, New York City,NY,10001 +317944,AA Batteries (4-pack),1,3.84,2019-12-13 14:20:00,195 2nd St, Dallas,TX,75001 +317945,Wired Headphones,1,11.99,2019-12-21 01:49:00,234 Lake St, San Francisco,CA,94016 +317946,AA Batteries (4-pack),1,3.84,2019-12-06 23:51:00,896 9th St, San Francisco,CA,94016 +317947,AA Batteries (4-pack),2,3.84,2019-12-29 22:11:00,574 West St, Seattle,WA,98101 +317948,Wired Headphones,1,11.99,2019-12-07 14:43:00,587 Lincoln St, Boston,MA,02215 +317949,27in FHD Monitor,1,149.99,2019-12-26 17:36:00,252 Maple St, Seattle,WA,98101 +317950,34in Ultrawide Monitor,1,379.99,2019-12-28 18:59:00,849 14th St, San Francisco,CA,94016 +317951,Apple Airpods Headphones,1,150.0,2019-12-19 12:21:00,864 9th St, New York City,NY,10001 +317952,Vareebadd Phone,1,400.0,2019-12-18 20:17:00,993 Park St, Dallas,TX,75001 +317953,Lightning Charging Cable,1,14.95,2019-12-28 11:20:00,581 8th St, San Francisco,CA,94016 +317954,Apple Airpods Headphones,1,150.0,2019-12-16 08:11:00,598 11th St, San Francisco,CA,94016 +317955,AAA Batteries (4-pack),2,2.99,2019-12-02 13:10:00,886 8th St, New York City,NY,10001 +317956,USB-C Charging Cable,1,11.95,2019-12-29 16:28:00,280 Cherry St, Dallas,TX,75001 +317957,AA Batteries (4-pack),1,3.84,2019-12-21 16:28:00,104 13th St, Boston,MA,02215 +317958,Bose SoundSport Headphones,1,99.99,2019-12-09 15:26:00,505 Sunset St, San Francisco,CA,94016 +317959,USB-C Charging Cable,1,11.95,2019-12-23 17:47:00,333 Dogwood St, Los Angeles,CA,90001 +317960,27in FHD Monitor,1,149.99,2019-12-06 22:45:00,893 Church St, San Francisco,CA,94016 +317961,AA Batteries (4-pack),3,3.84,2019-12-18 13:54:00,974 Dogwood St, Boston,MA,02215 +317962,AA Batteries (4-pack),1,3.84,2019-12-11 17:33:00,839 5th St, Boston,MA,02215 +317963,AA Batteries (4-pack),1,3.84,2019-12-20 01:23:00,25 Walnut St, New York City,NY,10001 +317964,Lightning Charging Cable,1,14.95,2019-12-21 16:29:00,803 Johnson St, Seattle,WA,98101 +317965,Apple Airpods Headphones,1,150.0,2019-12-15 20:00:00,383 Cedar St, Los Angeles,CA,90001 +317966,USB-C Charging Cable,1,11.95,2019-12-09 11:09:00,60 1st St, Seattle,WA,98101 +317967,Lightning Charging Cable,1,14.95,2019-12-22 10:08:00,815 Wilson St, New York City,NY,10001 +317968,Wired Headphones,1,11.99,2019-12-26 02:27:00,177 West St, Atlanta,GA,30301 +317969,AAA Batteries (4-pack),2,2.99,2019-12-26 10:40:00,125 Park St, San Francisco,CA,94016 +317970,Apple Airpods Headphones,1,150.0,2019-12-02 14:22:00,570 6th St, San Francisco,CA,94016 +317971,AA Batteries (4-pack),1,3.84,2019-12-17 18:39:00,250 Chestnut St, San Francisco,CA,94016 +317972,27in 4K Gaming Monitor,1,389.99,2019-12-23 09:00:00,478 1st St, Los Angeles,CA,90001 +317973,USB-C Charging Cable,1,11.95,2019-12-22 13:28:00,958 Lake St, Los Angeles,CA,90001 +317974,Apple Airpods Headphones,1,150.0,2019-12-08 12:11:00,562 North St, New York City,NY,10001 +317975,Lightning Charging Cable,1,14.95,2019-12-14 20:05:00,438 Spruce St, Los Angeles,CA,90001 +317976,iPhone,1,700.0,2019-12-05 14:23:00,697 2nd St, Austin,TX,73301 +317977,AAA Batteries (4-pack),1,2.99,2019-12-26 18:37:00,694 South St, Los Angeles,CA,90001 +317978,Lightning Charging Cable,1,14.95,2019-12-01 19:31:00,80 9th St, Dallas,TX,75001 +317979,Lightning Charging Cable,1,14.95,2019-12-21 11:00:00,416 Willow St, San Francisco,CA,94016 +317980,Google Phone,1,600.0,2019-12-22 17:17:00,287 12th St, San Francisco,CA,94016 +317981,Apple Airpods Headphones,1,150.0,2019-12-04 09:57:00,185 Chestnut St, New York City,NY,10001 +317982,USB-C Charging Cable,1,11.95,2019-12-12 19:06:00,229 Sunset St, San Francisco,CA,94016 +317983,USB-C Charging Cable,1,11.95,2019-12-15 11:34:00,584 6th St, San Francisco,CA,94016 +317984,27in FHD Monitor,1,149.99,2019-12-31 17:27:00,755 Madison St, Boston,MA,02215 +317985,USB-C Charging Cable,1,11.95,2019-12-02 14:42:00,13 Ridge St, New York City,NY,10001 +317986,20in Monitor,1,109.99,2019-12-03 13:48:00,920 7th St, Portland,ME,04101 +317987,USB-C Charging Cable,1,11.95,2019-12-25 11:29:00,208 4th St, New York City,NY,10001 +317988,Lightning Charging Cable,2,14.95,2019-12-23 21:26:00,856 Adams St, New York City,NY,10001 +317989,AAA Batteries (4-pack),3,2.99,2019-12-29 18:26:00,398 Center St, Los Angeles,CA,90001 +317990,Wired Headphones,1,11.99,2019-12-20 19:04:00,738 2nd St, Atlanta,GA,30301 +317991,Lightning Charging Cable,1,14.95,2019-12-23 21:03:00,309 Walnut St, Los Angeles,CA,90001 +317992,AA Batteries (4-pack),1,3.84,2019-12-31 12:09:00,474 Main St, Austin,TX,73301 +317993,Wired Headphones,1,11.99,2019-12-09 21:14:00,10 13th St, New York City,NY,10001 +317994,AA Batteries (4-pack),1,3.84,2019-12-09 13:14:00,522 Chestnut St, Atlanta,GA,30301 +317995,Lightning Charging Cable,1,14.95,2019-12-25 00:08:00,363 Jackson St, Seattle,WA,98101 +317996,Macbook Pro Laptop,1,1700.0,2019-12-23 02:10:00,560 Lake St, Seattle,WA,98101 +317997,Lightning Charging Cable,1,14.95,2019-12-05 23:42:00,222 5th St, Atlanta,GA,30301 +317998,34in Ultrawide Monitor,1,379.99,2019-12-03 17:41:00,138 12th St, San Francisco,CA,94016 +317999,27in 4K Gaming Monitor,1,389.99,2019-12-10 13:09:00,245 Ridge St, Austin,TX,73301 +318000,Lightning Charging Cable,2,14.95,2019-12-15 09:34:00,297 2nd St, San Francisco,CA,94016 +318001,Flatscreen TV,1,300.0,2019-12-30 11:04:00,434 13th St, Dallas,TX,75001 +318002,USB-C Charging Cable,1,11.95,2019-12-18 14:28:00,670 Ridge St, San Francisco,CA,94016 +318003,34in Ultrawide Monitor,1,379.99,2019-12-27 23:53:00,881 Forest St, Los Angeles,CA,90001 +318004,Bose SoundSport Headphones,1,99.99,2019-12-15 21:38:00,205 Cherry St, San Francisco,CA,94016 +318005,Wired Headphones,1,11.99,2019-12-19 20:50:00,394 South St, Boston,MA,02215 +318006,AA Batteries (4-pack),3,3.84,2019-12-10 14:29:00,402 2nd St, Seattle,WA,98101 +318007,USB-C Charging Cable,1,11.95,2019-12-18 11:32:00,55 Forest St, Los Angeles,CA,90001 +318008,27in FHD Monitor,1,149.99,2019-12-16 09:50:00,50 12th St, San Francisco,CA,94016 +318009,Lightning Charging Cable,1,14.95,2019-12-31 21:24:00,648 Meadow St, San Francisco,CA,94016 +318010,Macbook Pro Laptop,1,1700.0,2019-12-12 09:50:00,468 Ridge St, Seattle,WA,98101 +318011,Wired Headphones,1,11.99,2019-12-06 08:01:00,855 River St, New York City,NY,10001 +318012,Flatscreen TV,1,300.0,2019-12-10 14:42:00,116 Forest St, Dallas,TX,75001 +318013,AA Batteries (4-pack),2,3.84,2019-12-27 13:16:00,675 Jackson St, Seattle,WA,98101 +318014,Wired Headphones,1,11.99,2019-12-12 13:42:00,374 Meadow St, Atlanta,GA,30301 +318015,AAA Batteries (4-pack),2,2.99,2019-12-14 20:53:00,872 North St, Atlanta,GA,30301 +318016,20in Monitor,1,109.99,2019-12-16 16:24:00,20 Wilson St, Dallas,TX,75001 +318017,34in Ultrawide Monitor,1,379.99,2019-12-04 15:16:00,45 4th St, Boston,MA,02215 +318018,AA Batteries (4-pack),2,3.84,2019-12-14 14:28:00,157 Johnson St, Atlanta,GA,30301 +318019,Flatscreen TV,1,300.0,2019-12-21 21:08:00,639 Wilson St, Los Angeles,CA,90001 +318020,Macbook Pro Laptop,1,1700.0,2019-12-06 11:29:00,248 Highland St, Portland,OR,97035 +318021,Lightning Charging Cable,1,14.95,2019-12-18 20:37:00,90 Hickory St, Los Angeles,CA,90001 +318022,34in Ultrawide Monitor,1,379.99,2019-12-22 12:00:00,567 Main St, San Francisco,CA,94016 +318023,USB-C Charging Cable,1,11.95,2019-12-31 20:57:00,620 6th St, San Francisco,CA,94016 +318024,Bose SoundSport Headphones,1,99.99,2019-12-29 22:45:00,429 1st St, Seattle,WA,98101 +318025,AAA Batteries (4-pack),3,2.99,2019-12-18 22:47:00,744 6th St, Los Angeles,CA,90001 +318026,iPhone,1,700.0,2019-12-29 22:04:00,698 Wilson St, Atlanta,GA,30301 +318027,AA Batteries (4-pack),1,3.84,2019-12-05 09:06:00,764 Maple St, Atlanta,GA,30301 +318028,Google Phone,1,600.0,2019-12-18 05:06:00,462 2nd St, San Francisco,CA,94016 +318029,iPhone,1,700.0,2019-12-29 21:27:00,835 6th St, Los Angeles,CA,90001 +318030,USB-C Charging Cable,1,11.95,2019-12-14 21:28:00,252 13th St, Dallas,TX,75001 +318031,Bose SoundSport Headphones,1,99.99,2019-12-03 18:04:00,721 Park St, San Francisco,CA,94016 +318032,34in Ultrawide Monitor,1,379.99,2019-12-21 20:38:00,682 4th St, New York City,NY,10001 +318033,20in Monitor,1,109.99,2019-12-31 13:27:00,890 Willow St, San Francisco,CA,94016 +318034,27in FHD Monitor,1,149.99,2019-12-18 19:53:00,811 North St, San Francisco,CA,94016 +318035,Lightning Charging Cable,1,14.95,2019-12-17 13:27:00,508 Wilson St, New York City,NY,10001 +318036,USB-C Charging Cable,1,11.95,2019-12-20 09:11:00,160 Chestnut St, New York City,NY,10001 +318037,Flatscreen TV,1,300.0,2019-12-31 02:28:00,204 Meadow St, Dallas,TX,75001 +318038,AAA Batteries (4-pack),4,2.99,2019-12-19 19:23:00,286 Washington St, San Francisco,CA,94016 +318039,AAA Batteries (4-pack),1,2.99,2019-12-11 18:56:00,820 10th St, New York City,NY,10001 +318040,USB-C Charging Cable,1,11.95,2019-12-30 15:55:00,717 2nd St, Seattle,WA,98101 +318041,AA Batteries (4-pack),1,3.84,2019-12-14 13:16:00,132 1st St, Boston,MA,02215 +318042,Lightning Charging Cable,1,14.95,2019-12-25 14:03:00,806 1st St, New York City,NY,10001 +318043,Macbook Pro Laptop,1,1700.0,2019-12-20 23:14:00,751 Elm St, San Francisco,CA,94016 +318044,34in Ultrawide Monitor,1,379.99,2019-12-26 22:58:00,641 Center St, New York City,NY,10001 +318045,AA Batteries (4-pack),1,3.84,2019-12-06 17:12:00,374 Lake St, San Francisco,CA,94016 +318046,USB-C Charging Cable,1,11.95,2019-12-17 15:47:00,294 11th St, Seattle,WA,98101 +318047,AAA Batteries (4-pack),1,2.99,2019-12-11 01:15:00,620 Meadow St, Seattle,WA,98101 +318048,iPhone,1,700.0,2019-12-17 20:54:00,361 Lincoln St, New York City,NY,10001 +318049,Flatscreen TV,1,300.0,2019-12-02 23:17:00,52 Washington St, Boston,MA,02215 +318050,Bose SoundSport Headphones,1,99.99,2019-12-09 10:10:00,111 Cedar St, Seattle,WA,98101 +318051,AA Batteries (4-pack),2,3.84,2019-12-29 14:38:00,702 5th St, San Francisco,CA,94016 +318052,Apple Airpods Headphones,1,150.0,2019-12-30 19:18:00,313 Johnson St, San Francisco,CA,94016 +318053,AAA Batteries (4-pack),2,2.99,2019-12-15 18:46:00,989 Madison St, Atlanta,GA,30301 +318054,34in Ultrawide Monitor,1,379.99,2019-12-24 19:40:00,411 Hill St, Atlanta,GA,30301 +318055,AAA Batteries (4-pack),1,2.99,2019-12-29 15:52:00,174 7th St, Seattle,WA,98101 +318056,Apple Airpods Headphones,1,150.0,2019-12-03 13:43:00,442 8th St, New York City,NY,10001 +318057,Bose SoundSport Headphones,1,99.99,2019-12-28 14:29:00,418 8th St, New York City,NY,10001 +318058,Lightning Charging Cable,1,14.95,2019-12-05 18:24:00,700 Forest St, Dallas,TX,75001 +318059,Wired Headphones,1,11.99,2019-12-20 17:41:00,57 Willow St, Austin,TX,73301 +318060,27in FHD Monitor,1,149.99,2019-12-31 01:09:00,690 4th St, Los Angeles,CA,90001 +318061,Lightning Charging Cable,1,14.95,2019-12-25 12:25:00,491 River St, Los Angeles,CA,90001 +318062,USB-C Charging Cable,1,11.95,2019-12-14 10:42:00,15 9th St, Los Angeles,CA,90001 +318063,USB-C Charging Cable,1,11.95,2019-12-13 13:56:00,2 Hickory St, Seattle,WA,98101 +318064,USB-C Charging Cable,1,11.95,2019-12-27 19:55:00,160 12th St, Boston,MA,02215 +318065,Apple Airpods Headphones,1,150.0,2019-12-02 19:20:00,367 2nd St, San Francisco,CA,94016 +318066,Flatscreen TV,1,300.0,2019-12-02 09:31:00,799 Pine St, New York City,NY,10001 +318067,Flatscreen TV,1,300.0,2019-12-05 21:19:00,743 Pine St, Dallas,TX,75001 +318068,AAA Batteries (4-pack),1,2.99,2019-12-17 07:04:00,590 13th St, Dallas,TX,75001 +318069,USB-C Charging Cable,1,11.95,2019-12-08 11:37:00,131 Maple St, Los Angeles,CA,90001 +318070,AA Batteries (4-pack),1,3.84,2019-12-15 19:10:00,6 6th St, New York City,NY,10001 +318071,27in 4K Gaming Monitor,1,389.99,2019-12-15 09:18:00,237 Pine St, New York City,NY,10001 +318072,AA Batteries (4-pack),1,3.84,2019-12-05 10:07:00,717 11th St, Boston,MA,02215 +318073,Apple Airpods Headphones,1,150.0,2019-12-26 19:39:00,101 6th St, Boston,MA,02215 +318074,LG Washing Machine,1,600.0,2019-12-05 03:10:00,823 Hill St, San Francisco,CA,94016 +318075,AAA Batteries (4-pack),2,2.99,2019-12-27 21:40:00,690 Jackson St, Portland,OR,97035 +318075,ThinkPad Laptop,1,999.99,2019-12-27 21:40:00,690 Jackson St, Portland,OR,97035 +318076,Apple Airpods Headphones,1,150.0,2019-12-17 08:23:00,316 Elm St, Dallas,TX,75001 +318077,AAA Batteries (4-pack),1,2.99,2019-12-04 18:07:00,382 14th St, Boston,MA,02215 +318078,Lightning Charging Cable,1,14.95,2019-12-09 17:06:00,568 Madison St, New York City,NY,10001 +318079,Lightning Charging Cable,1,14.95,2019-12-20 17:00:00,599 River St, Atlanta,GA,30301 +318080,Wired Headphones,1,11.99,2019-12-11 11:52:00,706 2nd St, New York City,NY,10001 +318081,AA Batteries (4-pack),2,3.84,2019-12-17 19:52:00,258 Willow St, Boston,MA,02215 +318082,USB-C Charging Cable,1,11.95,2019-12-23 12:46:00,66 Park St, Atlanta,GA,30301 +318083,USB-C Charging Cable,2,11.95,2019-12-02 15:20:00,131 Cherry St, Los Angeles,CA,90001 +318084,34in Ultrawide Monitor,1,379.99,2019-12-27 20:23:00,909 13th St, Dallas,TX,75001 +318085,USB-C Charging Cable,1,11.95,2019-12-07 19:04:00,759 12th St, New York City,NY,10001 +318086,27in 4K Gaming Monitor,1,389.99,2019-12-06 11:10:00,187 Washington St, Los Angeles,CA,90001 +318087,Wired Headphones,1,11.99,2019-12-12 04:44:00,377 West St, Los Angeles,CA,90001 +318088,Macbook Pro Laptop,1,1700.0,2019-12-16 11:34:00,129 Cedar St, San Francisco,CA,94016 +318089,Flatscreen TV,1,300.0,2019-12-01 11:52:00,512 11th St, Dallas,TX,75001 +318090,AA Batteries (4-pack),1,3.84,2019-12-30 12:25:00,477 South St, San Francisco,CA,94016 +318091,USB-C Charging Cable,1,11.95,2019-12-20 02:13:00,766 Hill St, Boston,MA,02215 +318092,Macbook Pro Laptop,1,1700.0,2019-12-25 17:41:00,79 Forest St, Boston,MA,02215 +318093,Bose SoundSport Headphones,1,99.99,2019-12-27 22:07:00,509 Sunset St, Seattle,WA,98101 +318094,USB-C Charging Cable,1,11.95,2019-12-23 00:54:00,945 5th St, San Francisco,CA,94016 +318095,AAA Batteries (4-pack),2,2.99,2019-12-30 14:48:00,504 Main St, Portland,ME,04101 +318096,Apple Airpods Headphones,1,150.0,2019-12-14 16:46:00,756 Cedar St, San Francisco,CA,94016 +318097,Bose SoundSport Headphones,1,99.99,2019-12-22 18:26:00,501 Hickory St, Dallas,TX,75001 +318098,Apple Airpods Headphones,1,150.0,2019-12-27 19:35:00,874 Madison St, New York City,NY,10001 +318099,iPhone,1,700.0,2019-12-19 09:39:00,766 Lakeview St, Austin,TX,73301 +318099,Lightning Charging Cable,1,14.95,2019-12-19 09:39:00,766 Lakeview St, Austin,TX,73301 +318100,Wired Headphones,1,11.99,2019-12-22 12:29:00,966 5th St, San Francisco,CA,94016 +318101,27in FHD Monitor,1,149.99,2019-12-25 20:37:00,291 2nd St, Los Angeles,CA,90001 +318102,Lightning Charging Cable,1,14.95,2019-12-31 14:32:00,503 Madison St, Los Angeles,CA,90001 +318103,AAA Batteries (4-pack),2,2.99,2019-12-16 17:55:00,549 Cedar St, Los Angeles,CA,90001 +318104,AA Batteries (4-pack),1,3.84,2019-12-01 11:05:00,969 Hill St, Los Angeles,CA,90001 +318105,Lightning Charging Cable,1,14.95,2019-12-02 15:56:00,76 Park St, San Francisco,CA,94016 +318106,USB-C Charging Cable,1,11.95,2019-12-15 14:15:00,486 Elm St, Austin,TX,73301 +318107,USB-C Charging Cable,1,11.95,2019-12-11 16:56:00,229 Adams St, Los Angeles,CA,90001 +318108,USB-C Charging Cable,1,11.95,2019-12-12 16:49:00,459 Washington St, San Francisco,CA,94016 +318109,20in Monitor,1,109.99,2019-12-31 19:51:00,698 Forest St, Dallas,TX,75001 +318110,AA Batteries (4-pack),2,3.84,2019-12-02 10:43:00,130 South St, Portland,OR,97035 +318111,Flatscreen TV,1,300.0,2019-12-20 04:45:00,354 Park St, San Francisco,CA,94016 +318112,Apple Airpods Headphones,1,150.0,2019-12-04 12:14:00,447 Forest St, Portland,ME,04101 +318113,Bose SoundSport Headphones,1,99.99,2019-12-06 15:44:00,378 Cedar St, New York City,NY,10001 +318114,Bose SoundSport Headphones,1,99.99,2019-12-18 12:52:00,421 2nd St, Los Angeles,CA,90001 +318115,AAA Batteries (4-pack),1,2.99,2019-12-17 14:19:00,72 Jackson St, San Francisco,CA,94016 +318116,AAA Batteries (4-pack),1,2.99,2019-12-31 19:00:00,119 Maple St, New York City,NY,10001 +318117,27in FHD Monitor,1,149.99,2019-12-19 13:37:00,716 Lincoln St, New York City,NY,10001 +318118,Lightning Charging Cable,1,14.95,2019-12-11 07:02:00,610 Forest St, San Francisco,CA,94016 +318119,AA Batteries (4-pack),1,3.84,2019-12-24 18:09:00,258 9th St, Atlanta,GA,30301 +318120,AAA Batteries (4-pack),1,2.99,2019-12-12 20:48:00,563 Dogwood St, New York City,NY,10001 +318121,Flatscreen TV,1,300.0,2019-12-29 14:36:00,120 Sunset St, Atlanta,GA,30301 +318122,Apple Airpods Headphones,1,150.0,2019-12-11 18:54:00,59 Park St, Dallas,TX,75001 +318123,Lightning Charging Cable,1,14.95,2019-12-22 19:34:00,420 Church St, Dallas,TX,75001 +318124,Flatscreen TV,1,300.0,2019-12-05 17:35:00,608 Pine St, Portland,ME,04101 +318125,AA Batteries (4-pack),1,3.84,2019-12-02 17:23:00,848 14th St, New York City,NY,10001 +318126,Lightning Charging Cable,1,14.95,2019-12-12 18:32:00,405 Sunset St, Boston,MA,02215 +318127,AAA Batteries (4-pack),2,2.99,2019-12-28 12:38:00,127 11th St, Portland,OR,97035 +318128,Wired Headphones,1,11.99,2019-12-30 11:03:00,158 Willow St, New York City,NY,10001 +318129,USB-C Charging Cable,1,11.95,2019-12-23 12:56:00,871 Highland St, Los Angeles,CA,90001 +318130,Bose SoundSport Headphones,1,99.99,2019-12-25 14:31:00,150 Madison St, Boston,MA,02215 +318131,Bose SoundSport Headphones,1,99.99,2019-12-30 22:48:00,998 Hickory St, Dallas,TX,75001 +318132,Lightning Charging Cable,1,14.95,2019-12-26 15:14:00,243 Elm St, Boston,MA,02215 +318133,Wired Headphones,1,11.99,2019-12-04 16:24:00,750 Dogwood St, Los Angeles,CA,90001 +318134,Wired Headphones,1,11.99,2019-12-30 21:42:00,607 River St, Portland,OR,97035 +318135,27in FHD Monitor,1,149.99,2019-12-28 15:24:00,351 Forest St, Austin,TX,73301 +318136,Bose SoundSport Headphones,1,99.99,2019-12-17 22:42:00,164 Lincoln St, Los Angeles,CA,90001 +318137,USB-C Charging Cable,1,11.95,2019-12-17 15:26:00,511 Willow St, Seattle,WA,98101 +318138,Lightning Charging Cable,1,14.95,2019-12-16 10:57:00,508 12th St, Dallas,TX,75001 +318139,Google Phone,1,600.0,2019-12-02 23:53:00,343 Ridge St, Austin,TX,73301 +318140,USB-C Charging Cable,1,11.95,2019-12-27 08:53:00,855 Lakeview St, San Francisco,CA,94016 +318141,27in FHD Monitor,1,149.99,2019-12-19 12:11:00,205 Hill St, New York City,NY,10001 +318142,AAA Batteries (4-pack),2,2.99,2019-12-01 14:29:00,851 8th St, San Francisco,CA,94016 +318143,AAA Batteries (4-pack),1,2.99,2019-12-06 02:28:00,10 8th St, Los Angeles,CA,90001 +318144,Google Phone,1,600.0,2019-12-11 17:21:00,31 7th St, Los Angeles,CA,90001 +318144,USB-C Charging Cable,1,11.95,2019-12-11 17:21:00,31 7th St, Los Angeles,CA,90001 +318145,Wired Headphones,1,11.99,2019-12-16 22:13:00,309 Main St, Boston,MA,02215 +318146,Bose SoundSport Headphones,1,99.99,2019-12-18 13:20:00,963 Walnut St, San Francisco,CA,94016 +318147,20in Monitor,1,109.99,2019-12-12 10:17:00,271 Elm St, San Francisco,CA,94016 +318148,Wired Headphones,1,11.99,2019-12-23 16:41:00,20 Sunset St, San Francisco,CA,94016 +318149,AAA Batteries (4-pack),1,2.99,2019-12-15 20:19:00,290 Sunset St, Austin,TX,73301 +318150,AAA Batteries (4-pack),1,2.99,2019-12-29 22:21:00,165 Willow St, Boston,MA,02215 +318151,AA Batteries (4-pack),1,3.84,2019-12-06 19:18:00,677 4th St, Dallas,TX,75001 +318152,Apple Airpods Headphones,1,150.0,2019-12-28 21:12:00,378 Spruce St, Portland,OR,97035 +318153,iPhone,1,700.0,2019-12-30 10:05:00,539 Johnson St, Los Angeles,CA,90001 +318153,Apple Airpods Headphones,1,150.0,2019-12-30 10:05:00,539 Johnson St, Los Angeles,CA,90001 +318154,Macbook Pro Laptop,1,1700.0,2019-12-06 16:10:00,993 Johnson St, Los Angeles,CA,90001 +318155,Flatscreen TV,1,300.0,2019-12-05 16:23:00,299 Ridge St, Atlanta,GA,30301 +318156,Flatscreen TV,1,300.0,2019-12-21 13:52:00,175 12th St, New York City,NY,10001 +318157,Wired Headphones,1,11.99,2019-12-12 11:43:00,506 Spruce St, New York City,NY,10001 +318158,AAA Batteries (4-pack),1,2.99,2019-12-30 22:03:00,671 13th St, San Francisco,CA,94016 +318159,USB-C Charging Cable,1,11.95,2019-12-27 14:57:00,843 Dogwood St, San Francisco,CA,94016 +318160,Wired Headphones,1,11.99,2019-12-15 11:07:00,4 13th St, Los Angeles,CA,90001 +318161,AA Batteries (4-pack),2,3.84,2019-12-15 20:27:00,407 Cedar St, San Francisco,CA,94016 +318162,Macbook Pro Laptop,1,1700.0,2019-12-23 18:48:00,595 8th St, Seattle,WA,98101 +318163,Wired Headphones,1,11.99,2019-12-20 21:38:00,75 Cherry St, Austin,TX,73301 +318164,AA Batteries (4-pack),3,3.84,2019-12-25 12:48:00,368 Park St, Portland,OR,97035 +318165,iPhone,1,700.0,2019-12-25 21:53:00,359 Lakeview St, New York City,NY,10001 +318166,Wired Headphones,1,11.99,2019-12-01 11:22:00,979 Center St, Boston,MA,02215 +318167,AA Batteries (4-pack),1,3.84,2019-12-26 16:49:00,748 Lincoln St, San Francisco,CA,94016 +318168,USB-C Charging Cable,1,11.95,2019-12-02 14:50:00,983 Hickory St, Portland,OR,97035 +318169,iPhone,1,700.0,2019-12-30 19:10:00,246 Ridge St, San Francisco,CA,94016 +318170,AA Batteries (4-pack),1,3.84,2019-12-31 19:24:00,672 Washington St, San Francisco,CA,94016 +318171,AA Batteries (4-pack),3,3.84,2019-12-26 13:35:00,813 14th St, San Francisco,CA,94016 +318172,34in Ultrawide Monitor,1,379.99,2019-12-25 16:12:00,81 6th St, Austin,TX,73301 +318173,Apple Airpods Headphones,1,150.0,2019-12-29 12:38:00,634 Chestnut St, Boston,MA,02215 +318174,Apple Airpods Headphones,1,150.0,2019-12-15 21:54:00,311 Hill St, Austin,TX,73301 +318175,AA Batteries (4-pack),2,3.84,2019-12-14 18:19:00,960 Maple St, San Francisco,CA,94016 +318176,Bose SoundSport Headphones,1,99.99,2019-12-06 12:39:00,470 6th St, Austin,TX,73301 +318177,USB-C Charging Cable,1,11.95,2019-12-02 21:02:00,46 North St, Los Angeles,CA,90001 +318178,Wired Headphones,2,11.99,2019-12-30 11:25:00,325 7th St, San Francisco,CA,94016 +318179,USB-C Charging Cable,1,11.95,2019-12-31 17:52:00,98 13th St, Boston,MA,02215 +318180,Bose SoundSport Headphones,1,99.99,2019-12-19 17:37:00,683 11th St, New York City,NY,10001 +318181,Flatscreen TV,1,300.0,2019-12-04 21:01:00,428 1st St, San Francisco,CA,94016 +318182,Wired Headphones,1,11.99,2019-12-29 15:24:00,820 Adams St, Boston,MA,02215 +318183,AA Batteries (4-pack),1,3.84,2019-12-22 21:07:00,782 South St, Seattle,WA,98101 +318184,AA Batteries (4-pack),1,3.84,2019-12-16 20:46:00,761 Walnut St, Seattle,WA,98101 +318185,Lightning Charging Cable,1,14.95,2019-12-27 17:53:00,28 Hickory St, San Francisco,CA,94016 +318186,Wired Headphones,1,11.99,2019-12-11 12:35:00,233 Hickory St, Boston,MA,02215 +318187,Bose SoundSport Headphones,1,99.99,2019-12-25 19:53:00,169 4th St, Boston,MA,02215 +318188,Lightning Charging Cable,1,14.95,2019-12-03 16:37:00,991 Adams St, San Francisco,CA,94016 +318189,Wired Headphones,1,11.99,2019-12-04 11:16:00,143 Walnut St, Portland,OR,97035 +318190,Wired Headphones,1,11.99,2019-12-23 09:03:00,692 11th St, Portland,ME,04101 +318191,Wired Headphones,2,11.99,2019-12-22 15:46:00,482 Forest St, San Francisco,CA,94016 +318192,AAA Batteries (4-pack),1,2.99,2019-12-19 15:55:00,491 Hickory St, Los Angeles,CA,90001 +318193,Google Phone,1,600.0,2019-12-05 11:33:00,360 South St, San Francisco,CA,94016 +318194,Wired Headphones,2,11.99,2019-12-23 08:13:00,185 12th St, Portland,ME,04101 +318195,ThinkPad Laptop,1,999.99,2019-12-16 13:41:00,909 Lincoln St, Seattle,WA,98101 +318196,Apple Airpods Headphones,1,150.0,2019-12-31 18:56:00,675 Johnson St, Atlanta,GA,30301 +318197,AA Batteries (4-pack),1,3.84,2019-12-15 21:50:00,28 Adams St, Portland,ME,04101 +318198,AAA Batteries (4-pack),2,2.99,2019-12-15 08:18:00,8 Madison St, Boston,MA,02215 +318199,AAA Batteries (4-pack),1,2.99,2019-12-05 16:50:00,576 Dogwood St, Los Angeles,CA,90001 +318200,Apple Airpods Headphones,1,150.0,2019-12-07 06:18:00,648 Church St, Los Angeles,CA,90001 +318201,Apple Airpods Headphones,1,150.0,2019-12-18 16:54:00,411 Madison St, San Francisco,CA,94016 +318202,AAA Batteries (4-pack),2,2.99,2019-12-31 16:35:00,896 Washington St, New York City,NY,10001 +318203,iPhone,1,700.0,2019-12-05 17:59:00,488 Center St, San Francisco,CA,94016 +318204,Lightning Charging Cable,1,14.95,2019-12-01 12:13:00,558 Church St, San Francisco,CA,94016 +318205,Wired Headphones,1,11.99,2019-12-06 14:16:00,524 5th St, Los Angeles,CA,90001 +318206,Google Phone,1,600.0,2019-12-04 21:38:00,974 Johnson St, Los Angeles,CA,90001 +318206,Wired Headphones,1,11.99,2019-12-04 21:38:00,974 Johnson St, Los Angeles,CA,90001 +318207,Wired Headphones,2,11.99,2019-12-08 23:49:00,810 7th St, San Francisco,CA,94016 +318208,LG Washing Machine,1,600.0,2019-12-05 12:43:00,399 Wilson St, San Francisco,CA,94016 +318209,AAA Batteries (4-pack),2,2.99,2019-12-26 11:32:00,191 2nd St, Los Angeles,CA,90001 +318210,34in Ultrawide Monitor,1,379.99,2019-12-04 07:06:00,202 Church St, Los Angeles,CA,90001 +318211,27in 4K Gaming Monitor,1,389.99,2019-12-23 11:49:00,5 5th St, Boston,MA,02215 +318212,USB-C Charging Cable,1,11.95,2019-12-23 09:03:00,351 Highland St, Dallas,TX,75001 +318213,Lightning Charging Cable,1,14.95,2019-12-29 20:52:00,948 Spruce St, Atlanta,GA,30301 +318214,AA Batteries (4-pack),1,3.84,2019-12-31 13:19:00,862 Spruce St, Dallas,TX,75001 +318215,Lightning Charging Cable,1,14.95,2019-12-12 13:55:00,3 Adams St, New York City,NY,10001 +318216,iPhone,1,700.0,2019-12-12 12:56:00,545 Jefferson St, San Francisco,CA,94016 +318216,Lightning Charging Cable,1,14.95,2019-12-12 12:56:00,545 Jefferson St, San Francisco,CA,94016 +318217,Lightning Charging Cable,1,14.95,2019-12-27 23:24:00,307 Sunset St, Los Angeles,CA,90001 +318218,Flatscreen TV,1,300.0,2019-12-14 18:00:00,735 Lake St, Dallas,TX,75001 +318219,Bose SoundSport Headphones,1,99.99,2019-12-18 19:49:00,332 Dogwood St, New York City,NY,10001 +318219,Flatscreen TV,1,300.0,2019-12-18 19:49:00,332 Dogwood St, New York City,NY,10001 +318220,Apple Airpods Headphones,1,150.0,2019-12-23 10:31:00,920 Adams St, Austin,TX,73301 +318221,20in Monitor,1,109.99,2019-12-05 18:33:00,981 Elm St, Los Angeles,CA,90001 +318222,AAA Batteries (4-pack),1,2.99,2019-12-03 14:00:00,143 Elm St, Atlanta,GA,30301 +318223,AA Batteries (4-pack),1,3.84,2019-12-10 22:58:00,916 2nd St, San Francisco,CA,94016 +318224,Apple Airpods Headphones,1,150.0,2019-12-25 12:36:00,239 Meadow St, Los Angeles,CA,90001 +318225,iPhone,1,700.0,2019-12-24 08:21:00,987 12th St, Atlanta,GA,30301 +318226,AA Batteries (4-pack),1,3.84,2019-12-28 12:54:00,921 Main St, Dallas,TX,75001 +318227,USB-C Charging Cable,2,11.95,2019-12-17 05:55:00,106 Center St, San Francisco,CA,94016 +318228,USB-C Charging Cable,1,11.95,2019-12-10 13:58:00,642 Lincoln St, Austin,TX,73301 +318229,iPhone,1,700.0,2019-12-13 06:39:00,529 Hickory St, Dallas,TX,75001 +318229,Lightning Charging Cable,1,14.95,2019-12-13 06:39:00,529 Hickory St, Dallas,TX,75001 +318230,Wired Headphones,1,11.99,2019-12-18 13:02:00,842 Sunset St, Los Angeles,CA,90001 +318231,Apple Airpods Headphones,1,150.0,2019-12-29 18:15:00,673 West St, Los Angeles,CA,90001 +318232,Bose SoundSport Headphones,1,99.99,2019-12-21 20:42:00,113 Lakeview St, Boston,MA,02215 +318233,Wired Headphones,2,11.99,2019-12-03 21:48:00,835 South St, Los Angeles,CA,90001 +318234,Lightning Charging Cable,1,14.95,2019-12-31 18:51:00,433 Hill St, Seattle,WA,98101 +318235,USB-C Charging Cable,2,11.95,2019-12-10 15:22:00,663 Johnson St, New York City,NY,10001 +318236,34in Ultrawide Monitor,1,379.99,2019-12-17 18:56:00,212 Hill St, Boston,MA,02215 +318237,34in Ultrawide Monitor,1,379.99,2019-12-26 18:36:00,864 9th St, San Francisco,CA,94016 +318238,34in Ultrawide Monitor,1,379.99,2019-12-26 11:41:00,219 Church St, Los Angeles,CA,90001 +318238,iPhone,1,700.0,2019-12-26 11:41:00,219 Church St, Los Angeles,CA,90001 +318239,ThinkPad Laptop,1,999.99,2019-12-20 18:57:00,327 11th St, Boston,MA,02215 +318240,Wired Headphones,1,11.99,2019-12-01 22:39:00,596 5th St, Los Angeles,CA,90001 +318241,USB-C Charging Cable,1,11.95,2019-12-06 08:16:00,145 Lakeview St, New York City,NY,10001 +318242,Google Phone,1,600.0,2019-12-14 14:06:00,331 West St, New York City,NY,10001 +318242,USB-C Charging Cable,1,11.95,2019-12-14 14:06:00,331 West St, New York City,NY,10001 +318243,Flatscreen TV,1,300.0,2019-12-04 14:31:00,427 Hill St, Los Angeles,CA,90001 +318244,34in Ultrawide Monitor,1,379.99,2019-12-25 23:37:00,273 Johnson St, Los Angeles,CA,90001 +318245,AAA Batteries (4-pack),1,2.99,2019-12-06 14:25:00,760 Spruce St, New York City,NY,10001 +318246,AAA Batteries (4-pack),1,2.99,2019-12-20 18:15:00,625 Lake St, Portland,OR,97035 +318247,34in Ultrawide Monitor,1,379.99,2019-12-22 21:17:00,388 1st St, Atlanta,GA,30301 +318248,LG Washing Machine,1,600.0,2019-12-26 13:51:00,721 Hickory St, Atlanta,GA,30301 +318249,Bose SoundSport Headphones,1,99.99,2019-12-18 13:56:00,28 Cedar St, Seattle,WA,98101 +318250,USB-C Charging Cable,1,11.95,2019-12-28 17:18:00,226 4th St, Los Angeles,CA,90001 +318251,Lightning Charging Cable,1,14.95,2019-12-30 23:12:00,474 1st St, Portland,OR,97035 +318252,USB-C Charging Cable,1,11.95,2019-12-02 09:53:00,966 Highland St, Portland,OR,97035 +318253,USB-C Charging Cable,1,11.95,2019-12-12 21:50:00,800 Lake St, Atlanta,GA,30301 +318254,AAA Batteries (4-pack),1,2.99,2019-12-28 08:39:00,840 Maple St, San Francisco,CA,94016 +318255,Wired Headphones,1,11.99,2019-12-13 20:31:00,37 Washington St, San Francisco,CA,94016 +318256,Wired Headphones,1,11.99,2019-12-07 13:02:00,384 Sunset St, Atlanta,GA,30301 +318257,27in 4K Gaming Monitor,1,389.99,2019-12-12 14:30:00,812 Madison St, San Francisco,CA,94016 +318258,ThinkPad Laptop,1,999.99,2019-12-30 21:49:00,666 Jefferson St, New York City,NY,10001 +318259,Vareebadd Phone,1,400.0,2019-12-22 21:20:00,156 9th St, San Francisco,CA,94016 +318259,Wired Headphones,1,11.99,2019-12-22 21:20:00,156 9th St, San Francisco,CA,94016 +318260,Flatscreen TV,1,300.0,2019-12-25 13:04:00,281 Cedar St, Los Angeles,CA,90001 +318261,USB-C Charging Cable,1,11.95,2019-12-25 20:12:00,712 Forest St, Portland,OR,97035 +318262,AA Batteries (4-pack),1,3.84,2019-12-23 11:56:00,303 Church St, San Francisco,CA,94016 +318263,27in FHD Monitor,1,149.99,2019-12-03 13:08:00,606 Hill St, Portland,ME,04101 +318264,USB-C Charging Cable,1,11.95,2019-12-11 12:49:00,692 5th St, Seattle,WA,98101 +318265,AAA Batteries (4-pack),3,2.99,2019-12-06 18:02:00,248 Dogwood St, San Francisco,CA,94016 +318266,Flatscreen TV,1,300.0,2019-12-07 23:23:00,510 Wilson St, Dallas,TX,75001 +318267,AAA Batteries (4-pack),4,2.99,2019-12-20 12:50:00,72 Washington St, Los Angeles,CA,90001 +318268,USB-C Charging Cable,1,11.95,2019-12-16 17:23:00,398 4th St, San Francisco,CA,94016 +318269,AAA Batteries (4-pack),1,2.99,2019-12-02 11:51:00,860 North St, San Francisco,CA,94016 +318270,Bose SoundSport Headphones,1,99.99,2019-12-27 22:15:00,321 Jackson St, Seattle,WA,98101 +318271,AA Batteries (4-pack),1,3.84,2019-12-28 11:19:00,995 6th St, Portland,OR,97035 +318272,27in FHD Monitor,1,149.99,2019-12-13 13:15:00,131 Lakeview St, Dallas,TX,75001 +318273,Wired Headphones,1,11.99,2019-12-25 11:07:00,496 11th St, Portland,ME,04101 +318274,Bose SoundSport Headphones,1,99.99,2019-12-24 16:40:00,342 Forest St, San Francisco,CA,94016 +318275,27in 4K Gaming Monitor,1,389.99,2019-12-02 11:36:00,267 12th St, Los Angeles,CA,90001 +318276,USB-C Charging Cable,2,11.95,2019-12-26 16:32:00,975 Wilson St, Los Angeles,CA,90001 +318277,Apple Airpods Headphones,1,150.0,2019-12-12 13:24:00,586 6th St, New York City,NY,10001 +318278,USB-C Charging Cable,1,11.95,2019-12-26 00:29:00,565 Willow St, San Francisco,CA,94016 +318279,AAA Batteries (4-pack),1,2.99,2019-12-09 09:49:00,160 Center St, San Francisco,CA,94016 +318280,AA Batteries (4-pack),1,3.84,2019-12-11 15:59:00,591 10th St, San Francisco,CA,94016 +318281,AAA Batteries (4-pack),1,2.99,2019-12-18 21:56:00,668 7th St, Los Angeles,CA,90001 +318282,Wired Headphones,1,11.99,2019-12-12 20:10:00,923 Highland St, Boston,MA,02215 +318283,ThinkPad Laptop,1,999.99,2019-12-09 13:03:00,595 North St, San Francisco,CA,94016 +318284,USB-C Charging Cable,1,11.95,2019-12-17 13:54:00,916 Hickory St, Portland,OR,97035 +318285,Lightning Charging Cable,1,14.95,2019-12-28 11:08:00,527 9th St, Seattle,WA,98101 +318286,Flatscreen TV,1,300.0,2019-12-27 18:35:00,965 Walnut St, Los Angeles,CA,90001 +318287,Bose SoundSport Headphones,1,99.99,2019-12-24 07:47:00,902 Walnut St, Atlanta,GA,30301 +318288,AAA Batteries (4-pack),1,2.99,2019-12-22 17:43:00,533 Hill St, San Francisco,CA,94016 +318289,USB-C Charging Cable,1,11.95,2019-12-13 18:17:00,702 Willow St, Seattle,WA,98101 +318290,AA Batteries (4-pack),1,3.84,2019-12-16 18:34:00,224 Highland St, Atlanta,GA,30301 +318291,Wired Headphones,1,11.99,2019-12-28 19:59:00,967 River St, New York City,NY,10001 +318292,Wired Headphones,1,11.99,2019-12-23 18:53:00,718 Jefferson St, Boston,MA,02215 +318293,Google Phone,1,600.0,2019-12-18 08:43:00,192 Lakeview St, New York City,NY,10001 +318294,Apple Airpods Headphones,1,150.0,2019-12-28 22:57:00,932 12th St, San Francisco,CA,94016 +318295,LG Washing Machine,1,600.0,2019-12-24 19:11:00,226 Johnson St, Los Angeles,CA,90001 +318296,Wired Headphones,1,11.99,2019-12-22 08:32:00,641 7th St, Dallas,TX,75001 +318296,AAA Batteries (4-pack),2,2.99,2019-12-22 08:32:00,641 7th St, Dallas,TX,75001 +318297,Lightning Charging Cable,1,14.95,2019-12-02 14:30:00,116 Cedar St, San Francisco,CA,94016 +318298,20in Monitor,1,109.99,2019-12-11 07:25:00,947 Willow St, San Francisco,CA,94016 +318299,Wired Headphones,1,11.99,2019-12-09 09:01:00,527 2nd St, Austin,TX,73301 +318300,USB-C Charging Cable,1,11.95,2019-12-16 23:10:00,101 Wilson St, Dallas,TX,75001 +318301,USB-C Charging Cable,1,11.95,2019-12-06 07:56:00,564 4th St, San Francisco,CA,94016 +318302,Bose SoundSport Headphones,1,99.99,2019-12-14 10:53:00,248 Johnson St, Los Angeles,CA,90001 +318303,AAA Batteries (4-pack),1,2.99,2019-12-22 19:43:00,63 Forest St, Boston,MA,02215 +318304,27in 4K Gaming Monitor,1,389.99,2019-12-01 20:18:00,960 Jefferson St, Seattle,WA,98101 +318305,Wired Headphones,1,11.99,2019-12-05 11:06:00,970 Madison St, Dallas,TX,75001 +318306,AA Batteries (4-pack),1,3.84,2019-12-30 19:23:00,249 9th St, San Francisco,CA,94016 +318307,Flatscreen TV,1,300.0,2019-12-24 07:40:00,15 Jackson St, San Francisco,CA,94016 +318308,Apple Airpods Headphones,1,150.0,2019-12-28 21:13:00,591 Johnson St, Los Angeles,CA,90001 +318309,AA Batteries (4-pack),2,3.84,2019-12-05 16:58:00,813 11th St, San Francisco,CA,94016 +318310,AA Batteries (4-pack),1,3.84,2019-12-30 21:02:00,391 Highland St, Los Angeles,CA,90001 +318311,Wired Headphones,1,11.99,2019-12-06 20:30:00,251 5th St, Dallas,TX,75001 +318312,USB-C Charging Cable,1,11.95,2019-12-07 12:25:00,473 North St, San Francisco,CA,94016 +318313,AAA Batteries (4-pack),1,2.99,2019-12-27 15:46:00,29 West St, Boston,MA,02215 +318314,34in Ultrawide Monitor,1,379.99,2019-12-12 22:53:00,753 Willow St, Los Angeles,CA,90001 +318315,20in Monitor,1,109.99,2019-12-03 13:32:00,759 6th St, New York City,NY,10001 +318316,Flatscreen TV,1,300.0,2019-12-29 16:54:00,455 1st St, Dallas,TX,75001 +318317,ThinkPad Laptop,1,999.99,2019-12-26 18:52:00,835 Park St, New York City,NY,10001 +318318,Wired Headphones,1,11.99,2019-12-10 07:23:00,997 Cherry St, New York City,NY,10001 +318319,AA Batteries (4-pack),1,3.84,2019-12-23 18:10:00,748 Chestnut St, New York City,NY,10001 +318320,Wired Headphones,1,11.99,2019-12-30 15:26:00,225 Highland St, Los Angeles,CA,90001 +318321,USB-C Charging Cable,1,11.95,2019-12-19 22:53:00,130 1st St, Los Angeles,CA,90001 +318322,AA Batteries (4-pack),2,3.84,2019-12-06 16:15:00,767 Madison St, Portland,OR,97035 +318323,Apple Airpods Headphones,1,150.0,2019-12-11 11:35:00,631 4th St, Boston,MA,02215 +318324,AA Batteries (4-pack),2,3.84,2019-12-26 15:25:00,774 Adams St, San Francisco,CA,94016 +318325,USB-C Charging Cable,1,11.95,2019-12-20 14:14:00,502 Meadow St, Atlanta,GA,30301 +318326,34in Ultrawide Monitor,1,379.99,2019-12-02 23:30:00,787 Spruce St, Portland,ME,04101 +318327,USB-C Charging Cable,1,11.95,2019-12-22 13:27:00,447 Wilson St, San Francisco,CA,94016 +318328,USB-C Charging Cable,2,11.95,2019-12-19 18:10:00,435 11th St, San Francisco,CA,94016 +318329,AA Batteries (4-pack),1,3.84,2019-12-04 00:30:00,817 Lincoln St, San Francisco,CA,94016 +318330,Lightning Charging Cable,1,14.95,2019-12-08 19:01:00,230 Meadow St, Seattle,WA,98101 +318331,USB-C Charging Cable,1,11.95,2019-12-02 13:41:00,338 Pine St, Atlanta,GA,30301 +318332,LG Washing Machine,1,600.0,2019-12-20 14:52:00,807 14th St, San Francisco,CA,94016 +318333,AA Batteries (4-pack),1,3.84,2019-12-20 16:21:00,984 Center St, Los Angeles,CA,90001 +318334,AA Batteries (4-pack),1,3.84,2019-12-02 16:24:00,787 Lakeview St, Dallas,TX,75001 +318335,USB-C Charging Cable,1,11.95,2019-12-26 19:00:00,54 Jefferson St, Los Angeles,CA,90001 +318336,Lightning Charging Cable,1,14.95,2019-12-26 15:10:00,115 9th St, San Francisco,CA,94016 +318337,Macbook Pro Laptop,1,1700.0,2019-12-27 10:50:00,211 1st St, Dallas,TX,75001 +318338,Wired Headphones,1,11.99,2019-12-18 09:56:00,422 Adams St, San Francisco,CA,94016 +318339,Vareebadd Phone,1,400.0,2019-12-23 18:49:00,751 Center St, Los Angeles,CA,90001 +318340,27in 4K Gaming Monitor,1,389.99,2019-12-19 19:44:00,554 Jefferson St, San Francisco,CA,94016 +318341,ThinkPad Laptop,1,999.99,2019-12-20 16:48:00,359 11th St, Los Angeles,CA,90001 +318342,Lightning Charging Cable,1,14.95,2019-12-23 23:47:00,73 Pine St, Seattle,WA,98101 +318343,ThinkPad Laptop,1,999.99,2019-12-20 07:55:00,168 Jackson St, Portland,OR,97035 +318344,27in 4K Gaming Monitor,1,389.99,2019-12-08 13:25:00,439 9th St, San Francisco,CA,94016 +318345,27in 4K Gaming Monitor,1,389.99,2019-12-16 23:01:00,512 5th St, Boston,MA,02215 +318346,AA Batteries (4-pack),2,3.84,2019-12-25 01:58:00,49 Walnut St, San Francisco,CA,94016 +318347,Wired Headphones,1,11.99,2019-12-09 10:47:00,669 Madison St, San Francisco,CA,94016 +318348,AA Batteries (4-pack),1,3.84,2019-12-27 13:13:00,801 Main St, San Francisco,CA,94016 +318349,Apple Airpods Headphones,1,150.0,2019-12-13 21:44:00,935 Pine St, Austin,TX,73301 +318350,Wired Headphones,1,11.99,2019-12-26 05:47:00,682 2nd St, San Francisco,CA,94016 +318351,Apple Airpods Headphones,1,150.0,2019-12-25 17:33:00,437 Church St, New York City,NY,10001 +318352,Lightning Charging Cable,1,14.95,2019-12-07 17:55:00,443 South St, Atlanta,GA,30301 +318353,AA Batteries (4-pack),1,3.84,2019-12-16 12:24:00,884 Jackson St, Portland,OR,97035 +318354,Apple Airpods Headphones,1,150.0,2019-12-26 07:32:00,958 Spruce St, Portland,OR,97035 +318355,AA Batteries (4-pack),3,3.84,2019-12-26 10:59:00,938 Willow St, Seattle,WA,98101 +318356,AA Batteries (4-pack),4,3.84,2019-12-20 12:05:00,775 Elm St, San Francisco,CA,94016 +318357,Wired Headphones,1,11.99,2019-12-10 22:19:00,352 Lakeview St, San Francisco,CA,94016 +318358,Bose SoundSport Headphones,1,99.99,2019-12-25 16:47:00,970 Willow St, Dallas,TX,75001 +318359,Wired Headphones,1,11.99,2019-12-17 11:32:00,716 2nd St, Atlanta,GA,30301 +318360,27in 4K Gaming Monitor,1,389.99,2019-12-13 23:15:00,456 14th St, San Francisco,CA,94016 +318361,Apple Airpods Headphones,1,150.0,2019-12-27 16:22:00,747 Meadow St, New York City,NY,10001 +318362,USB-C Charging Cable,1,11.95,2019-12-24 06:23:00,529 Center St, San Francisco,CA,94016 +318363,AA Batteries (4-pack),1,3.84,2019-12-18 12:30:00,170 Center St, New York City,NY,10001 +318364,Lightning Charging Cable,1,14.95,2019-12-09 20:32:00,950 Jefferson St, Los Angeles,CA,90001 +318365,AA Batteries (4-pack),1,3.84,2019-12-06 21:13:00,160 Johnson St, Los Angeles,CA,90001 +318366,Wired Headphones,1,11.99,2019-12-03 14:57:00,565 Lincoln St, Los Angeles,CA,90001 +318367,AAA Batteries (4-pack),1,2.99,2019-12-04 14:19:00,994 9th St, Seattle,WA,98101 +318368,USB-C Charging Cable,1,11.95,2019-12-05 15:49:00,591 Center St, San Francisco,CA,94016 +318369,Wired Headphones,1,11.99,2019-12-28 08:25:00,130 Madison St, San Francisco,CA,94016 +318370,USB-C Charging Cable,1,11.95,2019-12-24 18:11:00,577 7th St, Los Angeles,CA,90001 +318371,USB-C Charging Cable,1,11.95,2019-12-28 10:07:00,396 7th St, Los Angeles,CA,90001 +318372,Wired Headphones,1,11.99,2019-12-23 23:45:00,964 Cherry St, Los Angeles,CA,90001 +318373,AA Batteries (4-pack),1,3.84,2019-12-08 07:43:00,747 Willow St, Seattle,WA,98101 +318374,Wired Headphones,1,11.99,2019-12-28 22:00:00,574 Lakeview St, Boston,MA,02215 +318375,USB-C Charging Cable,1,11.95,2019-12-20 20:08:00,896 Adams St, Boston,MA,02215 +318376,ThinkPad Laptop,1,999.99,2019-12-13 19:34:00,37 Highland St, Portland,OR,97035 +318377,27in FHD Monitor,1,149.99,2019-12-19 11:34:00,81 2nd St, San Francisco,CA,94016 +318378,34in Ultrawide Monitor,1,379.99,2019-12-09 13:33:00,118 Forest St, Boston,MA,02215 +318379,AAA Batteries (4-pack),1,2.99,2019-12-25 13:56:00,149 Cherry St, Boston,MA,02215 +318380,AA Batteries (4-pack),1,3.84,2019-12-19 20:34:00,653 Elm St, New York City,NY,10001 +318381,34in Ultrawide Monitor,1,379.99,2019-12-30 13:38:00,235 North St, Los Angeles,CA,90001 +318382,AA Batteries (4-pack),1,3.84,2019-12-30 00:54:00,721 Spruce St, San Francisco,CA,94016 +318383,ThinkPad Laptop,1,999.99,2019-12-14 20:06:00,696 Church St, Portland,OR,97035 +318384,Wired Headphones,1,11.99,2019-12-29 16:49:00,187 13th St, San Francisco,CA,94016 +318385,Lightning Charging Cable,1,14.95,2019-12-01 14:19:00,847 Meadow St, Dallas,TX,75001 +318386,Bose SoundSport Headphones,1,99.99,2019-12-13 14:09:00,965 Jackson St, Portland,OR,97035 +318387,ThinkPad Laptop,1,999.99,2019-12-07 14:01:00,535 Center St, Los Angeles,CA,90001 +318388,Apple Airpods Headphones,1,150.0,2019-12-23 11:24:00,517 4th St, New York City,NY,10001 +318389,Apple Airpods Headphones,1,150.0,2019-12-06 17:10:00,525 Chestnut St, Los Angeles,CA,90001 +318390,USB-C Charging Cable,2,11.95,2019-12-20 15:29:00,655 13th St, Los Angeles,CA,90001 +318391,AAA Batteries (4-pack),1,2.99,2019-12-22 13:40:00,600 4th St, New York City,NY,10001 +318392,Apple Airpods Headphones,1,150.0,2019-12-16 16:10:00,567 Maple St, San Francisco,CA,94016 +318393,Apple Airpods Headphones,1,150.0,2019-12-05 19:01:00,401 2nd St, Boston,MA,02215 +318394,Apple Airpods Headphones,1,150.0,2019-12-07 12:03:00,199 1st St, Boston,MA,02215 +318395,Apple Airpods Headphones,1,150.0,2019-12-21 18:21:00,614 Cherry St, New York City,NY,10001 +318396,Lightning Charging Cable,1,14.95,2019-12-09 15:12:00,928 2nd St, San Francisco,CA,94016 +318397,Wired Headphones,1,11.99,2019-12-16 11:31:00,771 Center St, Los Angeles,CA,90001 +318398,Wired Headphones,1,11.99,2019-12-28 08:01:00,430 14th St, New York City,NY,10001 +318399,Lightning Charging Cable,1,14.95,2019-12-17 20:53:00,387 11th St, San Francisco,CA,94016 +318400,Lightning Charging Cable,1,14.95,2019-12-16 09:56:00,576 8th St, Boston,MA,02215 +318401,LG Dryer,1,600.0,2019-12-02 11:23:00,31 Dogwood St, Atlanta,GA,30301 +318402,Wired Headphones,1,11.99,2019-12-13 20:21:00,237 Main St, San Francisco,CA,94016 +318403,USB-C Charging Cable,1,11.95,2019-12-02 10:12:00,450 South St, Boston,MA,02215 +318404,AAA Batteries (4-pack),1,2.99,2019-12-27 19:11:00,959 Wilson St, New York City,NY,10001 +318405,20in Monitor,1,109.99,2019-12-21 19:25:00,662 Ridge St, Atlanta,GA,30301 +318406,27in 4K Gaming Monitor,1,389.99,2019-12-12 07:51:00,926 Johnson St, Atlanta,GA,30301 +318407,Lightning Charging Cable,1,14.95,2019-12-17 07:09:00,240 Johnson St, San Francisco,CA,94016 +318408,Vareebadd Phone,1,400.0,2019-12-24 12:40:00,305 1st St, Boston,MA,02215 +318408,USB-C Charging Cable,1,11.95,2019-12-24 12:40:00,305 1st St, Boston,MA,02215 +318409,Bose SoundSport Headphones,2,99.99,2019-12-17 14:36:00,856 Church St, San Francisco,CA,94016 +318410,AAA Batteries (4-pack),2,2.99,2019-12-18 14:03:00,736 11th St, Dallas,TX,75001 +318411,Bose SoundSport Headphones,1,99.99,2019-12-19 13:13:00,799 Park St, San Francisco,CA,94016 +318412,AA Batteries (4-pack),2,3.84,2019-12-28 13:47:00,127 4th St, Atlanta,GA,30301 +318413,AA Batteries (4-pack),3,3.84,2019-12-04 12:18:00,125 Maple St, Austin,TX,73301 +318414,iPhone,1,700.0,2019-12-24 18:47:00,464 Lincoln St, Los Angeles,CA,90001 +318415,Apple Airpods Headphones,1,150.0,2019-12-20 16:53:00,689 10th St, Los Angeles,CA,90001 +318416,AA Batteries (4-pack),1,3.84,2019-12-19 22:28:00,313 Center St, New York City,NY,10001 +318417,34in Ultrawide Monitor,1,379.99,2019-12-29 20:22:00,894 Forest St, San Francisco,CA,94016 +318418,ThinkPad Laptop,1,999.99,2019-12-10 21:44:00,913 12th St, Los Angeles,CA,90001 +318419,USB-C Charging Cable,2,11.95,2019-12-01 22:50:00,274 Main St, Los Angeles,CA,90001 +318420,AA Batteries (4-pack),1,3.84,2019-12-19 11:21:00,463 River St, Dallas,TX,75001 +318421,USB-C Charging Cable,1,11.95,2019-12-23 20:58:00,126 8th St, New York City,NY,10001 +318421,Macbook Pro Laptop,1,1700.0,2019-12-23 20:58:00,126 8th St, New York City,NY,10001 +318422,USB-C Charging Cable,1,11.95,2019-12-16 16:20:00,690 Hickory St, Austin,TX,73301 +318423,AA Batteries (4-pack),1,3.84,2019-12-24 12:16:00,927 Pine St, Dallas,TX,75001 +318424,Lightning Charging Cable,1,14.95,2019-12-12 16:02:00,418 6th St, Atlanta,GA,30301 +318425,34in Ultrawide Monitor,1,379.99,2019-12-30 12:16:00,389 4th St, New York City,NY,10001 +318426,Bose SoundSport Headphones,1,99.99,2019-12-04 13:57:00,942 North St, San Francisco,CA,94016 +318427,Lightning Charging Cable,1,14.95,2019-12-24 18:54:00,949 Spruce St, Los Angeles,CA,90001 +318428,USB-C Charging Cable,1,11.95,2019-12-18 12:08:00,463 Dogwood St, Los Angeles,CA,90001 +318429,AAA Batteries (4-pack),1,2.99,2019-12-06 11:14:00,645 Johnson St, New York City,NY,10001 +318430,AA Batteries (4-pack),1,3.84,2019-12-18 10:59:00,747 13th St, Portland,OR,97035 +318431,27in FHD Monitor,1,149.99,2019-12-12 09:01:00,159 10th St, Los Angeles,CA,90001 +318432,Lightning Charging Cable,1,14.95,2019-12-11 13:08:00,847 Pine St, Austin,TX,73301 +318433,AA Batteries (4-pack),2,3.84,2019-12-31 09:53:00,485 Ridge St, Los Angeles,CA,90001 +318434,Lightning Charging Cable,2,14.95,2019-12-17 21:14:00,506 10th St, Los Angeles,CA,90001 +318435,AAA Batteries (4-pack),1,2.99,2019-12-23 19:44:00,305 North St, San Francisco,CA,94016 +318436,AA Batteries (4-pack),1,3.84,2019-12-22 12:12:00,252 Madison St, Boston,MA,02215 +318437,AAA Batteries (4-pack),1,2.99,2019-12-09 23:29:00,958 Washington St, Seattle,WA,98101 +318438,Wired Headphones,1,11.99,2019-12-07 12:40:00,452 9th St, Dallas,TX,75001 +318438,USB-C Charging Cable,1,11.95,2019-12-07 12:40:00,452 9th St, Dallas,TX,75001 +318439,27in 4K Gaming Monitor,1,389.99,2019-12-03 20:50:00,183 Washington St, Austin,TX,73301 +318440,20in Monitor,1,109.99,2019-12-27 13:13:00,363 North St, Boston,MA,02215 +318441,27in FHD Monitor,1,149.99,2019-12-08 16:21:00,209 10th St, Boston,MA,02215 +318442,Lightning Charging Cable,1,14.95,2019-12-02 21:54:00,599 Adams St, Boston,MA,02215 +318443,Google Phone,1,600.0,2019-12-11 07:34:00,607 Chestnut St, San Francisco,CA,94016 +318443,USB-C Charging Cable,1,11.95,2019-12-11 07:34:00,607 Chestnut St, San Francisco,CA,94016 +318444,34in Ultrawide Monitor,1,379.99,2019-12-24 11:50:00,49 Dogwood St, San Francisco,CA,94016 +318445,Google Phone,1,600.0,2019-12-22 10:52:00,780 Ridge St, Boston,MA,02215 +318445,AA Batteries (4-pack),1,3.84,2019-12-22 10:52:00,780 Ridge St, Boston,MA,02215 +318446,Bose SoundSport Headphones,1,99.99,2019-12-30 14:24:00,10 Jackson St, San Francisco,CA,94016 +318447,AA Batteries (4-pack),1,3.84,2019-12-10 21:58:00,709 Ridge St, Dallas,TX,75001 +318448,20in Monitor,1,109.99,2019-12-24 23:59:00,632 Park St, Portland,OR,97035 +318449,AA Batteries (4-pack),1,3.84,2019-12-27 22:58:00,24 9th St, Dallas,TX,75001 +318450,Wired Headphones,1,11.99,2019-12-21 12:58:00,477 Walnut St, New York City,NY,10001 +318451,Bose SoundSport Headphones,1,99.99,2019-12-10 08:08:00,939 Elm St, Los Angeles,CA,90001 +318452,34in Ultrawide Monitor,1,379.99,2019-12-06 22:10:00,524 River St, New York City,NY,10001 +318453,iPhone,1,700.0,2019-12-18 12:07:00,462 Wilson St, Austin,TX,73301 +318453,Lightning Charging Cable,1,14.95,2019-12-18 12:07:00,462 Wilson St, Austin,TX,73301 +318454,Apple Airpods Headphones,1,150.0,2019-12-18 11:32:00,151 Spruce St, New York City,NY,10001 +318455,Apple Airpods Headphones,1,150.0,2019-12-31 21:06:00,158 Pine St, Austin,TX,73301 +318456,USB-C Charging Cable,1,11.95,2019-12-29 19:40:00,825 6th St, San Francisco,CA,94016 +318457,USB-C Charging Cable,2,11.95,2019-12-26 21:08:00,650 14th St, Boston,MA,02215 +318458,iPhone,1,700.0,2019-12-31 20:33:00,693 4th St, New York City,NY,10001 +318458,Apple Airpods Headphones,1,150.0,2019-12-31 20:33:00,693 4th St, New York City,NY,10001 +318459,USB-C Charging Cable,1,11.95,2019-12-05 08:48:00,506 7th St, New York City,NY,10001 +318460,27in 4K Gaming Monitor,1,389.99,2019-12-30 08:07:00,754 13th St, San Francisco,CA,94016 +318461,USB-C Charging Cable,1,11.95,2019-12-23 14:43:00,250 Maple St, Boston,MA,02215 +318462,27in FHD Monitor,1,149.99,2019-12-23 23:27:00,692 Church St, Los Angeles,CA,90001 +318463,AA Batteries (4-pack),1,3.84,2019-12-28 10:29:00,795 Lincoln St, Los Angeles,CA,90001 +318464,AAA Batteries (4-pack),1,2.99,2019-12-24 21:22:00,177 Cherry St, Atlanta,GA,30301 +318465,AA Batteries (4-pack),1,3.84,2019-12-08 17:47:00,972 Cherry St, Seattle,WA,98101 +318466,USB-C Charging Cable,1,11.95,2019-12-19 12:21:00,581 Cherry St, San Francisco,CA,94016 +318467,Wired Headphones,1,11.99,2019-12-10 16:52:00,808 14th St, Boston,MA,02215 +318468,Lightning Charging Cable,1,14.95,2019-12-03 20:11:00,606 Washington St, San Francisco,CA,94016 +318469,Wired Headphones,1,11.99,2019-12-13 16:22:00,448 Hickory St, San Francisco,CA,94016 +318470,AA Batteries (4-pack),1,3.84,2019-12-18 20:07:00,516 1st St, Los Angeles,CA,90001 +318471,AAA Batteries (4-pack),1,2.99,2019-12-07 14:52:00,128 Highland St, Atlanta,GA,30301 +318472,USB-C Charging Cable,1,11.95,2019-12-29 11:15:00,58 Lincoln St, New York City,NY,10001 +318473,Wired Headphones,1,11.99,2019-12-04 11:36:00,823 1st St, Austin,TX,73301 +318474,Apple Airpods Headphones,1,150.0,2019-12-11 14:50:00,639 Cherry St, New York City,NY,10001 +318475,Wired Headphones,1,11.99,2019-12-27 20:47:00,569 8th St, Portland,OR,97035 +318476,USB-C Charging Cable,1,11.95,2019-12-11 22:28:00,172 Center St, Portland,OR,97035 +318477,AA Batteries (4-pack),1,3.84,2019-12-09 21:51:00,374 Adams St, San Francisco,CA,94016 +318478,Lightning Charging Cable,2,14.95,2019-12-01 14:08:00,40 Maple St, New York City,NY,10001 +318479,Lightning Charging Cable,1,14.95,2019-12-14 14:18:00,516 Lake St, Portland,OR,97035 +318480,Flatscreen TV,1,300.0,2019-12-31 13:12:00,335 2nd St, San Francisco,CA,94016 +318481,Bose SoundSport Headphones,1,99.99,2019-12-08 15:58:00,562 Adams St, Boston,MA,02215 +318482,AA Batteries (4-pack),1,3.84,2019-12-10 20:14:00,536 6th St, New York City,NY,10001 +318483,Lightning Charging Cable,1,14.95,2019-12-03 13:17:00,644 Adams St, Boston,MA,02215 +318484,Vareebadd Phone,1,400.0,2019-12-06 17:28:00,635 Madison St, Los Angeles,CA,90001 +318485,Apple Airpods Headphones,1,150.0,2019-12-01 13:22:00,81 Ridge St, San Francisco,CA,94016 +318486,Bose SoundSport Headphones,1,99.99,2019-12-18 19:17:00,65 7th St, San Francisco,CA,94016 +318487,iPhone,1,700.0,2019-12-25 21:51:00,196 Ridge St, San Francisco,CA,94016 +318488,AAA Batteries (4-pack),1,2.99,2019-12-20 11:03:00,519 Hickory St, Austin,TX,73301 +318489,USB-C Charging Cable,1,11.95,2019-12-12 22:14:00,406 West St, San Francisco,CA,94016 +318490,Bose SoundSport Headphones,1,99.99,2019-12-28 01:21:00,773 Main St, Atlanta,GA,30301 +318491,AAA Batteries (4-pack),1,2.99,2019-12-13 20:31:00,72 Maple St, Atlanta,GA,30301 +318492,Bose SoundSport Headphones,1,99.99,2019-12-07 15:15:00,84 12th St, San Francisco,CA,94016 +318493,USB-C Charging Cable,2,11.95,2019-12-04 17:01:00,935 Lake St, Dallas,TX,75001 +318494,Macbook Pro Laptop,1,1700.0,2019-12-19 11:46:00,873 1st St, New York City,NY,10001 +318495,Wired Headphones,1,11.99,2019-12-21 11:24:00,38 Wilson St, Los Angeles,CA,90001 +318496,USB-C Charging Cable,1,11.95,2019-12-07 17:08:00,348 Church St, Seattle,WA,98101 +318497,Bose SoundSport Headphones,1,99.99,2019-12-16 00:31:00,518 13th St, Boston,MA,02215 +318498,AA Batteries (4-pack),1,3.84,2019-12-29 11:39:00,709 Church St, San Francisco,CA,94016 +318499,27in FHD Monitor,1,149.99,2019-12-26 17:30:00,386 Ridge St, San Francisco,CA,94016 +318500,AAA Batteries (4-pack),1,2.99,2019-12-25 18:25:00,794 14th St, New York City,NY,10001 +318501,AAA Batteries (4-pack),1,2.99,2019-12-21 22:27:00,770 Dogwood St, Dallas,TX,75001 +318502,Wired Headphones,1,11.99,2019-12-08 12:34:00,140 Dogwood St, Portland,OR,97035 +318503,AAA Batteries (4-pack),2,2.99,2019-12-05 13:11:00,134 8th St, Dallas,TX,75001 +318504,Apple Airpods Headphones,1,150.0,2019-12-27 00:31:00,837 Spruce St, Seattle,WA,98101 +318505,Wired Headphones,1,11.99,2019-12-22 11:51:00,547 Adams St, San Francisco,CA,94016 +318506,AA Batteries (4-pack),2,3.84,2019-12-08 10:48:00,553 7th St, Los Angeles,CA,90001 +318507,27in FHD Monitor,1,149.99,2019-12-19 08:20:00,224 Forest St, Los Angeles,CA,90001 +318508,20in Monitor,1,109.99,2019-12-09 11:31:00,886 7th St, Boston,MA,02215 +318509,27in 4K Gaming Monitor,1,389.99,2019-12-09 02:42:00,169 Cedar St, Los Angeles,CA,90001 +318510,Macbook Pro Laptop,1,1700.0,2019-12-27 15:27:00,911 Lake St, San Francisco,CA,94016 +318511,Bose SoundSport Headphones,1,99.99,2019-12-29 21:10:00,558 Elm St, San Francisco,CA,94016 +318512,AAA Batteries (4-pack),1,2.99,2019-12-14 20:08:00,732 Maple St, Los Angeles,CA,90001 +318512,AA Batteries (4-pack),1,3.84,2019-12-14 20:08:00,732 Maple St, Los Angeles,CA,90001 +318513,Wired Headphones,1,11.99,2019-12-03 13:01:00,392 Johnson St, Los Angeles,CA,90001 +318514,Wired Headphones,1,11.99,2019-12-02 17:03:00,165 4th St, Atlanta,GA,30301 +318515,Wired Headphones,1,11.99,2019-12-30 09:42:00,937 Madison St, Seattle,WA,98101 +318516,ThinkPad Laptop,1,999.99,2019-12-02 14:36:00,819 Meadow St, San Francisco,CA,94016 +318517,USB-C Charging Cable,1,11.95,2019-12-05 06:26:00,730 Jackson St, San Francisco,CA,94016 +318518,Wired Headphones,1,11.99,2019-12-16 06:08:00,859 Forest St, Boston,MA,02215 +318519,Flatscreen TV,1,300.0,2019-12-14 10:53:00,141 Dogwood St, New York City,NY,10001 +318520,AA Batteries (4-pack),3,3.84,2019-12-15 15:00:00,227 West St, Austin,TX,73301 +318521,AAA Batteries (4-pack),1,2.99,2019-12-28 20:14:00,585 Sunset St, Austin,TX,73301 +318522,Lightning Charging Cable,1,14.95,2019-12-25 19:00:00,859 Hickory St, San Francisco,CA,94016 +318523,AAA Batteries (4-pack),1,2.99,2019-12-09 19:51:00,928 Johnson St, Dallas,TX,75001 +318524,Wired Headphones,1,11.99,2019-12-20 21:20:00,86 14th St, San Francisco,CA,94016 +318525,27in FHD Monitor,1,149.99,2019-12-30 22:01:00,206 Washington St, San Francisco,CA,94016 +318526,Google Phone,1,600.0,2019-12-11 10:35:00,358 14th St, New York City,NY,10001 +318527,Lightning Charging Cable,1,14.95,2019-12-25 09:34:00,358 9th St, Austin,TX,73301 +318528,AAA Batteries (4-pack),1,2.99,2019-12-01 12:25:00,89 4th St, Atlanta,GA,30301 +318529,Apple Airpods Headphones,1,150.0,2019-12-13 15:35:00,946 12th St, Portland,ME,04101 +318530,Wired Headphones,1,11.99,2019-12-25 06:42:00,578 Johnson St, San Francisco,CA,94016 +318531,Apple Airpods Headphones,1,150.0,2019-12-21 01:04:00,579 Elm St, Los Angeles,CA,90001 +318532,Apple Airpods Headphones,1,150.0,2019-12-27 18:48:00,873 Highland St, Los Angeles,CA,90001 +318533,Lightning Charging Cable,1,14.95,2019-12-30 14:46:00,98 River St, Boston,MA,02215 +318534,Macbook Pro Laptop,1,1700.0,2019-12-29 17:16:00,971 7th St, San Francisco,CA,94016 +318535,AAA Batteries (4-pack),1,2.99,2019-12-16 13:40:00,288 Spruce St, San Francisco,CA,94016 +318536,AAA Batteries (4-pack),2,2.99,2019-12-15 11:43:00,638 South St, Boston,MA,02215 +318537,USB-C Charging Cable,1,11.95,2019-12-15 09:12:00,32 Spruce St, San Francisco,CA,94016 +318538,AA Batteries (4-pack),1,3.84,2019-12-10 18:41:00,116 Spruce St, San Francisco,CA,94016 +318539,27in FHD Monitor,1,149.99,2019-12-09 15:09:00,768 Lake St, San Francisco,CA,94016 +318540,Wired Headphones,1,11.99,2019-12-26 11:34:00,650 6th St, New York City,NY,10001 +318541,Bose SoundSport Headphones,1,99.99,2019-12-08 21:19:00,206 7th St, San Francisco,CA,94016 +318542,iPhone,1,700.0,2019-12-10 13:31:00,937 Lake St, Atlanta,GA,30301 +318542,Wired Headphones,1,11.99,2019-12-10 13:31:00,937 Lake St, Atlanta,GA,30301 +318543,AAA Batteries (4-pack),1,2.99,2019-12-06 19:30:00,544 7th St, San Francisco,CA,94016 +318544,AAA Batteries (4-pack),1,2.99,2019-12-02 20:46:00,258 1st St, San Francisco,CA,94016 +318545,Apple Airpods Headphones,1,150.0,2019-12-29 09:12:00,197 11th St, Austin,TX,73301 +318546,Flatscreen TV,1,300.0,2019-12-15 16:29:00,232 Washington St, Los Angeles,CA,90001 +318547,AA Batteries (4-pack),1,3.84,2019-12-29 19:43:00,877 Sunset St, Austin,TX,73301 +318548,Wired Headphones,1,11.99,2019-12-15 18:49:00,653 Madison St, Boston,MA,02215 +318549,27in 4K Gaming Monitor,1,389.99,2019-12-10 11:27:00,22 14th St, Boston,MA,02215 +318550,Google Phone,1,600.0,2019-12-04 19:47:00,572 Washington St, Portland,OR,97035 +318551,Macbook Pro Laptop,1,1700.0,2019-12-02 15:35:00,898 Spruce St, Portland,ME,04101 +318552,Apple Airpods Headphones,1,150.0,2019-12-16 11:51:00,541 Jefferson St, New York City,NY,10001 +318553,AA Batteries (4-pack),1,3.84,2019-12-13 17:04:00,842 Cedar St, Atlanta,GA,30301 +318554,Lightning Charging Cable,1,14.95,2019-12-16 19:51:00,806 North St, San Francisco,CA,94016 +318555,Apple Airpods Headphones,1,150.0,2019-12-29 23:57:00,160 Madison St, Dallas,TX,75001 +318556,Lightning Charging Cable,1,14.95,2019-12-23 21:50:00,293 North St, Boston,MA,02215 +318557,Apple Airpods Headphones,1,150.0,2019-12-28 19:07:00,455 6th St, Portland,OR,97035 +318558,AA Batteries (4-pack),1,3.84,2019-12-30 09:04:00,11 4th St, Atlanta,GA,30301 +318559,AAA Batteries (4-pack),1,2.99,2019-12-24 21:49:00,393 Willow St, San Francisco,CA,94016 +318560,AA Batteries (4-pack),1,3.84,2019-12-07 15:49:00,761 West St, Portland,OR,97035 +318561,AAA Batteries (4-pack),1,2.99,2019-12-13 21:02:00,491 9th St, New York City,NY,10001 +318562,USB-C Charging Cable,1,11.95,2019-12-18 20:55:00,280 Lake St, New York City,NY,10001 +318563,Flatscreen TV,1,300.0,2019-12-28 15:36:00,547 Sunset St, Los Angeles,CA,90001 +318564,Vareebadd Phone,1,400.0,2019-12-04 18:13:00,754 Cherry St, Atlanta,GA,30301 +318564,Bose SoundSport Headphones,1,99.99,2019-12-04 18:13:00,754 Cherry St, Atlanta,GA,30301 +318565,AA Batteries (4-pack),1,3.84,2019-12-27 18:13:00,358 Hill St, San Francisco,CA,94016 +318566,Lightning Charging Cable,1,14.95,2019-12-08 10:35:00,245 Hill St, Los Angeles,CA,90001 +318567,Google Phone,1,600.0,2019-12-05 01:32:00,564 Adams St, Los Angeles,CA,90001 +318568,AA Batteries (4-pack),4,3.84,2019-12-22 22:58:00,742 Hickory St, Austin,TX,73301 +318569,Vareebadd Phone,1,400.0,2019-12-19 12:24:00,144 Chestnut St, Seattle,WA,98101 +318570,Apple Airpods Headphones,1,150.0,2019-12-03 12:44:00,637 River St, New York City,NY,10001 +318571,AAA Batteries (4-pack),6,2.99,2019-12-15 13:37:00,309 Highland St, Portland,OR,97035 +318572,AAA Batteries (4-pack),2,2.99,2019-12-25 16:18:00,928 5th St, San Francisco,CA,94016 +318573,Lightning Charging Cable,1,14.95,2019-12-23 16:34:00,449 Pine St, New York City,NY,10001 +318574,Bose SoundSport Headphones,1,99.99,2019-12-30 13:22:00,616 Hickory St, Dallas,TX,75001 +318575,USB-C Charging Cable,1,11.95,2019-12-23 12:18:00,867 Maple St, Portland,ME,04101 +318576,AA Batteries (4-pack),3,3.84,2019-12-10 07:48:00,134 Ridge St, Austin,TX,73301 +318577,Lightning Charging Cable,1,14.95,2019-12-30 11:22:00,661 Cherry St, Boston,MA,02215 +318578,AAA Batteries (4-pack),1,2.99,2019-12-27 13:26:00,639 Spruce St, New York City,NY,10001 +318579,Bose SoundSport Headphones,1,99.99,2019-12-16 18:57:00,146 4th St, Austin,TX,73301 +318580,AA Batteries (4-pack),1,3.84,2019-12-21 15:30:00,672 10th St, Boston,MA,02215 +318581,iPhone,1,700.0,2019-12-16 10:36:00,959 Lakeview St, San Francisco,CA,94016 +318582,Bose SoundSport Headphones,1,99.99,2019-12-10 08:33:00,635 River St, Portland,ME,04101 +318583,Apple Airpods Headphones,1,150.0,2019-12-04 11:06:00,769 River St, Atlanta,GA,30301 +318584,AA Batteries (4-pack),1,3.84,2019-12-05 20:54:00,770 6th St, Austin,TX,73301 +318584,iPhone,1,700.0,2019-12-05 20:54:00,770 6th St, Austin,TX,73301 +318585,ThinkPad Laptop,1,999.99,2019-12-03 23:31:00,515 Wilson St, Seattle,WA,98101 +318586,27in 4K Gaming Monitor,1,389.99,2019-12-03 15:50:00,7 Jefferson St, Boston,MA,02215 +318587,Lightning Charging Cable,1,14.95,2019-12-03 20:27:00,686 Lincoln St, Seattle,WA,98101 +318588,AAA Batteries (4-pack),1,2.99,2019-12-23 20:01:00,357 8th St, Los Angeles,CA,90001 +318589,Lightning Charging Cable,1,14.95,2019-12-22 16:02:00,574 Cedar St, New York City,NY,10001 +318590,USB-C Charging Cable,1,11.95,2019-12-01 07:03:00,12 Wilson St, New York City,NY,10001 +318591,27in 4K Gaming Monitor,1,389.99,2019-12-22 07:45:00,597 North St, New York City,NY,10001 +318592,Wired Headphones,1,11.99,2019-12-04 17:00:00,890 11th St, San Francisco,CA,94016 +318593,Wired Headphones,1,11.99,2019-12-12 21:06:00,63 Lake St, San Francisco,CA,94016 +318594,AA Batteries (4-pack),1,3.84,2019-12-28 22:01:00,187 Cherry St, Los Angeles,CA,90001 +318595,Lightning Charging Cable,1,14.95,2019-12-26 14:01:00,815 Sunset St, New York City,NY,10001 +318596,Apple Airpods Headphones,1,150.0,2019-12-05 09:00:00,593 1st St, New York City,NY,10001 +318597,27in FHD Monitor,1,149.99,2019-12-31 16:00:00,314 Chestnut St, Seattle,WA,98101 +318598,27in 4K Gaming Monitor,1,389.99,2019-12-02 18:43:00,323 Johnson St, San Francisco,CA,94016 +318599,ThinkPad Laptop,1,999.99,2019-12-28 20:45:00,823 Hickory St, Los Angeles,CA,90001 +318600,Bose SoundSport Headphones,1,99.99,2019-12-11 11:47:00,389 Hickory St, New York City,NY,10001 +318601,Lightning Charging Cable,1,14.95,2019-12-24 16:32:00,579 Chestnut St, Seattle,WA,98101 +318602,Lightning Charging Cable,1,14.95,2019-12-08 05:55:00,881 Meadow St, Dallas,TX,75001 +318603,Wired Headphones,1,11.99,2019-12-02 22:48:00,843 1st St, Los Angeles,CA,90001 +318604,USB-C Charging Cable,1,11.95,2019-12-13 19:25:00,377 Washington St, Seattle,WA,98101 +318605,Flatscreen TV,1,300.0,2019-12-25 12:11:00,943 Maple St, Atlanta,GA,30301 +318606,AAA Batteries (4-pack),1,2.99,2019-12-11 12:29:00,426 5th St, Boston,MA,02215 +318607,AAA Batteries (4-pack),3,2.99,2019-12-13 11:45:00,142 Washington St, Portland,OR,97035 +318608,Macbook Pro Laptop,1,1700.0,2019-12-05 20:33:00,208 Cherry St, Atlanta,GA,30301 +318609,Lightning Charging Cable,1,14.95,2019-12-04 21:43:00,782 11th St, Austin,TX,73301 +318610,34in Ultrawide Monitor,1,379.99,2019-12-12 17:57:00,134 6th St, San Francisco,CA,94016 +318611,Wired Headphones,1,11.99,2019-12-17 14:13:00,220 Pine St, San Francisco,CA,94016 +318612,Lightning Charging Cable,1,14.95,2019-12-23 11:09:00,704 Spruce St, San Francisco,CA,94016 +318613,USB-C Charging Cable,1,11.95,2019-12-22 08:11:00,703 Church St, Los Angeles,CA,90001 +318614,Wired Headphones,1,11.99,2019-12-31 14:05:00,838 Forest St, New York City,NY,10001 +318615,Apple Airpods Headphones,1,150.0,2019-12-24 20:53:00,381 Johnson St, Boston,MA,02215 +318616,Lightning Charging Cable,1,14.95,2019-12-25 11:46:00,412 Washington St, New York City,NY,10001 +318617,iPhone,1,700.0,2019-12-26 00:04:00,763 11th St, San Francisco,CA,94016 +318618,27in FHD Monitor,1,149.99,2019-12-19 13:09:00,810 Hill St, New York City,NY,10001 +318619,AAA Batteries (4-pack),1,2.99,2019-12-21 15:21:00,30 Pine St, Boston,MA,02215 +318620,Flatscreen TV,1,300.0,2019-12-13 13:12:00,916 Adams St, Dallas,TX,75001 +318621,Bose SoundSport Headphones,1,99.99,2019-12-19 21:51:00,123 4th St, San Francisco,CA,94016 +318622,AA Batteries (4-pack),1,3.84,2019-12-28 12:27:00,796 Main St, Seattle,WA,98101 +318623,AA Batteries (4-pack),1,3.84,2019-12-23 21:39:00,427 Hill St, San Francisco,CA,94016 +318624,Lightning Charging Cable,1,14.95,2019-12-13 19:03:00,568 5th St, Dallas,TX,75001 +318625,Google Phone,1,600.0,2019-12-11 13:10:00,632 13th St, Atlanta,GA,30301 +318626,Bose SoundSport Headphones,1,99.99,2019-12-20 10:49:00,622 7th St, Seattle,WA,98101 +318627,27in FHD Monitor,1,149.99,2019-12-06 08:21:00,949 Chestnut St, Boston,MA,02215 +318628,Lightning Charging Cable,1,14.95,2019-12-02 19:08:00,870 7th St, San Francisco,CA,94016 +318629,34in Ultrawide Monitor,1,379.99,2019-12-16 13:33:00,398 Chestnut St, Boston,MA,02215 +318630,27in FHD Monitor,1,149.99,2019-12-25 17:50:00,999 Cedar St, San Francisco,CA,94016 +318631,Bose SoundSport Headphones,1,99.99,2019-12-27 13:16:00,271 River St, San Francisco,CA,94016 +318632,20in Monitor,1,109.99,2019-12-30 21:14:00,651 North St, Los Angeles,CA,90001 +318633,USB-C Charging Cable,1,11.95,2019-12-29 06:46:00,332 North St, Atlanta,GA,30301 +318634,Macbook Pro Laptop,1,1700.0,2019-12-25 19:24:00,603 Spruce St, New York City,NY,10001 +318635,USB-C Charging Cable,1,11.95,2019-12-07 21:20:00,966 14th St, Seattle,WA,98101 +318636,AAA Batteries (4-pack),1,2.99,2019-12-24 11:56:00,156 Madison St, Los Angeles,CA,90001 +318636,Google Phone,1,600.0,2019-12-24 11:56:00,156 Madison St, Los Angeles,CA,90001 +318637,Wired Headphones,1,11.99,2019-12-19 11:10:00,350 Spruce St, Austin,TX,73301 +318638,AA Batteries (4-pack),1,3.84,2019-12-19 14:32:00,446 Center St, Dallas,TX,75001 +318639,Lightning Charging Cable,1,14.95,2019-12-13 21:13:00,227 12th St, Los Angeles,CA,90001 +318640,AAA Batteries (4-pack),2,2.99,2019-12-06 16:38:00,143 Lake St, San Francisco,CA,94016 +318641,Bose SoundSport Headphones,1,99.99,2019-12-10 01:03:00,513 Elm St, Seattle,WA,98101 +318642,Apple Airpods Headphones,1,150.0,2019-12-25 14:31:00,529 Adams St, San Francisco,CA,94016 +318643,Apple Airpods Headphones,1,150.0,2019-12-13 09:39:00,394 1st St, San Francisco,CA,94016 +318644,AAA Batteries (4-pack),1,2.99,2019-12-17 18:43:00,558 South St, Boston,MA,02215 +318645,Google Phone,1,600.0,2019-12-10 11:19:00,111 Lincoln St, Seattle,WA,98101 +318646,AAA Batteries (4-pack),1,2.99,2019-12-26 20:07:00,180 Adams St, Los Angeles,CA,90001 +318647,Apple Airpods Headphones,1,150.0,2019-12-02 11:19:00,199 Madison St, Los Angeles,CA,90001 +318648,27in 4K Gaming Monitor,1,389.99,2019-12-20 14:52:00,133 5th St, Portland,OR,97035 +318649,AAA Batteries (4-pack),2,2.99,2019-12-02 11:15:00,855 Lincoln St, San Francisco,CA,94016 +318650,27in FHD Monitor,1,149.99,2019-12-01 12:32:00,620 2nd St, San Francisco,CA,94016 +318651,Lightning Charging Cable,1,14.95,2019-12-28 17:03:00,931 Park St, New York City,NY,10001 +318652,Bose SoundSport Headphones,1,99.99,2019-12-29 18:45:00,862 Elm St, Boston,MA,02215 +318653,AA Batteries (4-pack),2,3.84,2019-12-08 12:10:00,309 Church St, San Francisco,CA,94016 +318654,Apple Airpods Headphones,1,150.0,2019-12-02 14:21:00,895 Walnut St, San Francisco,CA,94016 +318655,Wired Headphones,1,11.99,2019-12-28 15:43:00,234 12th St, San Francisco,CA,94016 +318655,ThinkPad Laptop,1,999.99,2019-12-28 15:43:00,234 12th St, San Francisco,CA,94016 +318656,Bose SoundSport Headphones,1,99.99,2019-12-21 23:20:00,296 2nd St, Seattle,WA,98101 +318657,Apple Airpods Headphones,1,150.0,2019-12-19 16:36:00,304 11th St, Los Angeles,CA,90001 +318658,Google Phone,1,600.0,2019-12-09 11:47:00,464 Lincoln St, San Francisco,CA,94016 +318659,Macbook Pro Laptop,1,1700.0,2019-12-20 08:01:00,492 Meadow St, Dallas,TX,75001 +318660,AAA Batteries (4-pack),2,2.99,2019-12-22 21:43:00,812 Hill St, Atlanta,GA,30301 +318661,AA Batteries (4-pack),1,3.84,2019-12-08 13:20:00,396 South St, Los Angeles,CA,90001 +318662,Wired Headphones,1,11.99,2019-12-01 20:42:00,902 Lake St, San Francisco,CA,94016 +318663,Flatscreen TV,1,300.0,2019-12-06 05:09:00,111 Hill St, San Francisco,CA,94016 +318664,Lightning Charging Cable,1,14.95,2019-12-22 10:46:00,575 10th St, San Francisco,CA,94016 +318665,iPhone,1,700.0,2019-12-10 18:04:00,864 Johnson St, San Francisco,CA,94016 +318666,AAA Batteries (4-pack),1,2.99,2019-12-11 16:00:00,12 Forest St, New York City,NY,10001 +318667,27in FHD Monitor,1,149.99,2019-12-26 11:34:00,158 10th St, Boston,MA,02215 +318668,Macbook Pro Laptop,1,1700.0,2019-12-07 19:23:00,925 Center St, Atlanta,GA,30301 +318669,34in Ultrawide Monitor,1,379.99,2019-12-17 17:16:00,797 Walnut St, Portland,OR,97035 +318670,Lightning Charging Cable,1,14.95,2019-12-19 00:40:00,324 Johnson St, Los Angeles,CA,90001 +318671,AAA Batteries (4-pack),1,2.99,2019-12-16 13:25:00,523 2nd St, Boston,MA,02215 +318672,Wired Headphones,1,11.99,2019-12-02 13:03:00,953 Washington St, San Francisco,CA,94016 +318673,Apple Airpods Headphones,1,150.0,2019-12-11 16:26:00,19 14th St, Dallas,TX,75001 +318674,AAA Batteries (4-pack),1,2.99,2019-12-21 19:50:00,29 Forest St, Dallas,TX,75001 +318674,AA Batteries (4-pack),1,3.84,2019-12-21 19:50:00,29 Forest St, Dallas,TX,75001 +318675,AA Batteries (4-pack),1,3.84,2019-12-07 06:11:00,675 Highland St, Seattle,WA,98101 +318676,AA Batteries (4-pack),3,3.84,2019-12-06 05:47:00,516 Forest St, San Francisco,CA,94016 +318677,Apple Airpods Headphones,1,150.0,2019-12-15 19:34:00,58 Ridge St, Seattle,WA,98101 +318678,AA Batteries (4-pack),1,3.84,2019-12-23 13:17:00,394 West St, San Francisco,CA,94016 +318679,AAA Batteries (4-pack),2,2.99,2019-12-10 03:39:00,352 14th St, Atlanta,GA,30301 +318680,Lightning Charging Cable,1,14.95,2019-12-30 09:32:00,440 Jefferson St, Atlanta,GA,30301 +318681,Apple Airpods Headphones,1,150.0,2019-12-13 14:55:00,155 9th St, San Francisco,CA,94016 +318682,Vareebadd Phone,1,400.0,2019-12-18 17:23:00,266 Cedar St, Los Angeles,CA,90001 +318682,Bose SoundSport Headphones,2,99.99,2019-12-18 17:23:00,266 Cedar St, Los Angeles,CA,90001 +318683,iPhone,1,700.0,2019-12-23 15:48:00,611 4th St, Seattle,WA,98101 +318684,AAA Batteries (4-pack),1,2.99,2019-12-21 19:10:00,95 Hill St, Los Angeles,CA,90001 +318685,AAA Batteries (4-pack),2,2.99,2019-12-23 04:41:00,561 Spruce St, Austin,TX,73301 +318685,Wired Headphones,1,11.99,2019-12-23 04:41:00,561 Spruce St, Austin,TX,73301 +318686,Macbook Pro Laptop,1,1700.0,2019-12-05 15:33:00,54 7th St, New York City,NY,10001 +318687,Apple Airpods Headphones,1,150.0,2019-12-25 16:33:00,582 12th St, San Francisco,CA,94016 +318688,27in 4K Gaming Monitor,1,389.99,2019-12-13 17:10:00,834 Jackson St, Boston,MA,02215 +318689,AA Batteries (4-pack),1,3.84,2019-12-21 12:43:00,234 Center St, Boston,MA,02215 +318690,20in Monitor,1,109.99,2019-12-20 19:43:00,899 Meadow St, San Francisco,CA,94016 +318691,27in 4K Gaming Monitor,1,389.99,2019-12-26 20:17:00,978 4th St, Portland,ME,04101 +318692,USB-C Charging Cable,3,11.95,2019-12-21 10:11:00,384 8th St, New York City,NY,10001 +318693,AAA Batteries (4-pack),1,2.99,2019-12-20 20:06:00,674 12th St, Los Angeles,CA,90001 +318694,Lightning Charging Cable,1,14.95,2019-12-13 18:45:00,652 6th St, Portland,OR,97035 +318695,27in FHD Monitor,1,149.99,2019-12-25 22:21:00,171 Main St, Los Angeles,CA,90001 +318696,iPhone,1,700.0,2019-12-21 12:16:00,482 Hickory St, San Francisco,CA,94016 +318697,Macbook Pro Laptop,1,1700.0,2019-12-22 19:37:00,930 Cherry St, Los Angeles,CA,90001 +318698,iPhone,1,700.0,2019-12-04 14:06:00,240 South St, Dallas,TX,75001 +318699,Bose SoundSport Headphones,1,99.99,2019-12-11 09:46:00,626 2nd St, Portland,OR,97035 +318700,Apple Airpods Headphones,1,150.0,2019-12-13 05:49:00,148 8th St, New York City,NY,10001 +318701,AA Batteries (4-pack),1,3.84,2019-12-30 14:47:00,30 Lake St, Boston,MA,02215 +318702,27in FHD Monitor,1,149.99,2019-12-12 12:53:00,222 Wilson St, Dallas,TX,75001 +318703,Lightning Charging Cable,1,14.95,2019-12-08 15:02:00,990 11th St, Atlanta,GA,30301 +318704,iPhone,1,700.0,2019-12-16 20:41:00,96 1st St, San Francisco,CA,94016 +318704,Lightning Charging Cable,1,14.95,2019-12-16 20:41:00,96 1st St, San Francisco,CA,94016 +318705,AAA Batteries (4-pack),1,2.99,2019-12-02 11:24:00,27 10th St, Boston,MA,02215 +318706,USB-C Charging Cable,1,11.95,2019-12-18 23:02:00,859 Center St, San Francisco,CA,94016 +318707,Vareebadd Phone,1,400.0,2019-12-17 16:26:00,380 Center St, Seattle,WA,98101 +318708,Apple Airpods Headphones,1,150.0,2019-12-10 11:40:00,533 Lake St, Austin,TX,73301 +318709,ThinkPad Laptop,1,999.99,2019-12-29 01:44:00,494 North St, Seattle,WA,98101 +318710,AA Batteries (4-pack),1,3.84,2019-12-11 10:49:00,100 2nd St, Dallas,TX,75001 +318711,ThinkPad Laptop,1,999.99,2019-12-19 13:43:00,444 Main St, Atlanta,GA,30301 +318712,Flatscreen TV,1,300.0,2019-12-11 08:38:00,583 Dogwood St, San Francisco,CA,94016 +318713,AA Batteries (4-pack),1,3.84,2019-12-27 23:00:00,663 4th St, New York City,NY,10001 +318714,27in 4K Gaming Monitor,1,389.99,2019-12-26 10:55:00,829 6th St, Los Angeles,CA,90001 +318715,AA Batteries (4-pack),2,3.84,2019-12-09 02:13:00,200 Highland St, Dallas,TX,75001 +318716,Macbook Pro Laptop,1,1700.0,2019-12-06 19:06:00,920 Sunset St, San Francisco,CA,94016 +318717,USB-C Charging Cable,1,11.95,2019-12-01 15:16:00,954 Maple St, Dallas,TX,75001 +318718,Lightning Charging Cable,1,14.95,2019-12-11 22:43:00,776 Chestnut St, San Francisco,CA,94016 +318719,AA Batteries (4-pack),1,3.84,2019-12-21 11:37:00,992 10th St, San Francisco,CA,94016 +318720,Apple Airpods Headphones,1,150.0,2019-12-04 16:05:00,189 Pine St, San Francisco,CA,94016 +318721,AA Batteries (4-pack),1,3.84,2019-12-01 10:27:00,315 Lake St, Atlanta,GA,30301 +318722,Flatscreen TV,1,300.0,2019-12-14 11:33:00,512 Jackson St, Dallas,TX,75001 +318723,AAA Batteries (4-pack),1,2.99,2019-12-22 11:27:00,983 Maple St, Boston,MA,02215 +318724,USB-C Charging Cable,1,11.95,2019-12-22 11:46:00,832 Dogwood St, Boston,MA,02215 +318725,USB-C Charging Cable,1,11.95,2019-12-13 15:43:00,334 Maple St, New York City,NY,10001 +318726,Wired Headphones,1,11.99,2019-12-27 17:28:00,793 9th St, New York City,NY,10001 +318727,Lightning Charging Cable,1,14.95,2019-12-07 09:26:00,6 River St, San Francisco,CA,94016 +318728,Flatscreen TV,1,300.0,2019-12-31 23:11:00,894 Adams St, Atlanta,GA,30301 +318729,Lightning Charging Cable,1,14.95,2019-12-23 12:34:00,176 7th St, Seattle,WA,98101 +318730,iPhone,1,700.0,2019-12-26 17:31:00,308 Johnson St, Seattle,WA,98101 +318731,Macbook Pro Laptop,1,1700.0,2019-12-21 17:55:00,539 5th St, Dallas,TX,75001 +318732,AA Batteries (4-pack),1,3.84,2019-12-30 19:37:00,323 Elm St, New York City,NY,10001 +318733,Wired Headphones,1,11.99,2019-12-30 10:45:00,634 Wilson St, Los Angeles,CA,90001 +318734,27in 4K Gaming Monitor,1,389.99,2019-12-21 18:07:00,458 7th St, Atlanta,GA,30301 +318735,USB-C Charging Cable,2,11.95,2019-12-16 12:47:00,822 West St, San Francisco,CA,94016 +318736,Apple Airpods Headphones,1,150.0,2019-12-04 12:25:00,992 Elm St, Portland,OR,97035 +318737,USB-C Charging Cable,1,11.95,2019-12-08 15:14:00,468 10th St, Los Angeles,CA,90001 +318738,AA Batteries (4-pack),1,3.84,2019-12-27 15:06:00,766 Adams St, Los Angeles,CA,90001 +318739,Bose SoundSport Headphones,1,99.99,2019-12-13 14:12:00,220 South St, Boston,MA,02215 +318740,USB-C Charging Cable,1,11.95,2019-12-16 21:54:00,148 10th St, Los Angeles,CA,90001 +318741,Flatscreen TV,1,300.0,2019-12-21 12:18:00,640 4th St, Los Angeles,CA,90001 +318742,USB-C Charging Cable,1,11.95,2019-12-03 02:02:00,645 Cherry St, Los Angeles,CA,90001 +318743,Lightning Charging Cable,1,14.95,2019-12-07 08:57:00,5 4th St, San Francisco,CA,94016 +318744,AA Batteries (4-pack),2,3.84,2019-12-06 10:32:00,813 Maple St, Dallas,TX,75001 +318745,USB-C Charging Cable,1,11.95,2019-12-06 21:06:00,628 South St, Atlanta,GA,30301 +318746,Apple Airpods Headphones,1,150.0,2019-12-09 15:37:00,898 Lake St, New York City,NY,10001 +318747,USB-C Charging Cable,1,11.95,2019-12-27 10:29:00,219 Church St, Los Angeles,CA,90001 +318748,Bose SoundSport Headphones,1,99.99,2019-12-20 17:07:00,320 Adams St, New York City,NY,10001 +318749,Lightning Charging Cable,1,14.95,2019-12-30 17:22:00,372 1st St, Austin,TX,73301 +318750,Google Phone,1,600.0,2019-12-24 23:17:00,49 Wilson St, Austin,TX,73301 +318751,AAA Batteries (4-pack),1,2.99,2019-12-09 13:32:00,704 6th St, Seattle,WA,98101 +318751,ThinkPad Laptop,1,999.99,2019-12-09 13:32:00,704 6th St, Seattle,WA,98101 +318752,Apple Airpods Headphones,1,150.0,2019-12-12 17:13:00,931 7th St, Austin,TX,73301 +318753,Lightning Charging Cable,1,14.95,2019-12-19 05:58:00,153 Lincoln St, Los Angeles,CA,90001 +318754,Apple Airpods Headphones,1,150.0,2019-12-23 20:09:00,117 13th St, Portland,OR,97035 +318755,Flatscreen TV,1,300.0,2019-12-07 14:37:00,917 Church St, New York City,NY,10001 +318756,20in Monitor,1,109.99,2019-12-21 10:59:00,450 Adams St, Los Angeles,CA,90001 +318757,20in Monitor,1,109.99,2019-12-30 21:13:00,230 Maple St, Los Angeles,CA,90001 +318758,Flatscreen TV,1,300.0,2019-12-23 10:05:00,323 Jefferson St, Boston,MA,02215 +318759,USB-C Charging Cable,1,11.95,2019-12-30 20:51:00,895 10th St, Portland,ME,04101 +318760,Apple Airpods Headphones,1,150.0,2019-12-14 17:02:00,579 9th St, Atlanta,GA,30301 +318761,AA Batteries (4-pack),1,3.84,2019-12-17 09:43:00,847 Washington St, Boston,MA,02215 +318762,AA Batteries (4-pack),1,3.84,2019-12-15 22:48:00,760 Highland St, Atlanta,GA,30301 +318763,Wired Headphones,2,11.99,2019-12-25 12:58:00,818 Hickory St, San Francisco,CA,94016 +318764,Wired Headphones,1,11.99,2019-12-14 18:47:00,315 8th St, Los Angeles,CA,90001 +318765,27in 4K Gaming Monitor,1,389.99,2019-12-07 09:26:00,918 South St, San Francisco,CA,94016 +318766,Macbook Pro Laptop,1,1700.0,2019-12-12 14:55:00,128 Dogwood St, Dallas,TX,75001 +318767,USB-C Charging Cable,1,11.95,2019-12-20 15:38:00,178 12th St, Atlanta,GA,30301 +318768,Google Phone,1,600.0,2019-12-24 21:34:00,284 River St, New York City,NY,10001 +318769,Google Phone,1,600.0,2019-12-25 13:01:00,689 Ridge St, San Francisco,CA,94016 +318770,Apple Airpods Headphones,1,150.0,2019-12-30 23:41:00,29 Church St, San Francisco,CA,94016 +318771,Google Phone,1,600.0,2019-12-30 09:17:00,937 Park St, San Francisco,CA,94016 +318772,27in 4K Gaming Monitor,1,389.99,2019-12-29 09:17:00,393 4th St, New York City,NY,10001 +318773,34in Ultrawide Monitor,1,379.99,2019-12-23 21:11:00,106 2nd St, New York City,NY,10001 +318774,Macbook Pro Laptop,1,1700.0,2019-12-11 20:03:00,483 Ridge St, Dallas,TX,75001 +318775,Wired Headphones,1,11.99,2019-12-03 15:59:00,676 West St, Los Angeles,CA,90001 +318776,Lightning Charging Cable,1,14.95,2019-12-24 21:58:00,23 Sunset St, Portland,ME,04101 +318777,34in Ultrawide Monitor,1,379.99,2019-12-08 13:09:00,347 Hill St, New York City,NY,10001 +318778,Lightning Charging Cable,1,14.95,2019-12-15 20:13:00,946 Meadow St, New York City,NY,10001 +318779,27in FHD Monitor,1,149.99,2019-12-25 09:21:00,312 Johnson St, New York City,NY,10001 +318780,Wired Headphones,1,11.99,2019-12-26 11:04:00,362 6th St, Atlanta,GA,30301 +318781,Bose SoundSport Headphones,1,99.99,2019-12-27 10:52:00,181 Church St, Boston,MA,02215 +318782,Apple Airpods Headphones,1,150.0,2019-12-17 18:28:00,127 Elm St, Los Angeles,CA,90001 +318783,Lightning Charging Cable,1,14.95,2019-12-07 15:30:00,241 12th St, San Francisco,CA,94016 +318784,Apple Airpods Headphones,1,150.0,2019-12-13 13:22:00,124 Dogwood St, Dallas,TX,75001 +318785,USB-C Charging Cable,1,11.95,2019-12-27 06:14:00,339 Hickory St, San Francisco,CA,94016 +318786,AAA Batteries (4-pack),1,2.99,2019-12-28 23:22:00,597 8th St, Los Angeles,CA,90001 +318787,AAA Batteries (4-pack),2,2.99,2019-12-10 17:57:00,213 14th St, Boston,MA,02215 +318788,Flatscreen TV,1,300.0,2019-12-05 14:42:00,572 9th St, Austin,TX,73301 +318789,Bose SoundSport Headphones,1,99.99,2019-12-07 14:52:00,186 5th St, Dallas,TX,75001 +318790,Apple Airpods Headphones,1,150.0,2019-12-19 11:23:00,407 Cherry St, Portland,OR,97035 +318790,Bose SoundSport Headphones,1,99.99,2019-12-19 11:23:00,407 Cherry St, Portland,OR,97035 +318791,Apple Airpods Headphones,1,150.0,2019-12-13 23:38:00,727 Cedar St, New York City,NY,10001 +318792,AA Batteries (4-pack),2,3.84,2019-12-10 06:29:00,708 Willow St, New York City,NY,10001 +318793,USB-C Charging Cable,1,11.95,2019-12-07 11:16:00,351 Spruce St, New York City,NY,10001 +318794,Bose SoundSport Headphones,1,99.99,2019-12-13 09:46:00,146 12th St, San Francisco,CA,94016 +318794,AA Batteries (4-pack),1,3.84,2019-12-13 09:46:00,146 12th St, San Francisco,CA,94016 +318795,Apple Airpods Headphones,1,150.0,2019-12-15 15:43:00,985 Hill St, San Francisco,CA,94016 +318796,Wired Headphones,1,11.99,2019-12-23 13:19:00,67 Ridge St, San Francisco,CA,94016 +318797,Apple Airpods Headphones,1,150.0,2019-12-18 13:17:00,846 Highland St, Los Angeles,CA,90001 +318798,Bose SoundSport Headphones,1,99.99,2019-12-11 20:38:00,261 South St, Boston,MA,02215 +318799,ThinkPad Laptop,1,999.99,2019-12-27 21:51:00,310 Elm St, Los Angeles,CA,90001 +318800,27in 4K Gaming Monitor,1,389.99,2019-12-03 14:11:00,953 10th St, Dallas,TX,75001 +318801,Flatscreen TV,1,300.0,2019-12-28 19:46:00,880 Elm St, New York City,NY,10001 +318802,iPhone,1,700.0,2019-12-20 01:49:00,600 Sunset St, San Francisco,CA,94016 +318803,Macbook Pro Laptop,1,1700.0,2019-12-21 09:08:00,739 Dogwood St, Seattle,WA,98101 +318804,Wired Headphones,1,11.99,2019-12-27 19:46:00,61 Cherry St, Dallas,TX,75001 +318805,ThinkPad Laptop,1,999.99,2019-12-05 14:28:00,819 14th St, San Francisco,CA,94016 +318806,AAA Batteries (4-pack),1,2.99,2019-12-09 12:37:00,243 Sunset St, San Francisco,CA,94016 +318807,AAA Batteries (4-pack),1,2.99,2019-12-26 19:37:00,513 Walnut St, Los Angeles,CA,90001 +318808,Wired Headphones,1,11.99,2019-12-08 15:28:00,266 Lakeview St, San Francisco,CA,94016 +318809,iPhone,1,700.0,2019-12-29 14:23:00,25 Cherry St, Dallas,TX,75001 +318810,AAA Batteries (4-pack),1,2.99,2019-12-21 13:01:00,881 Church St, New York City,NY,10001 +318811,Apple Airpods Headphones,1,150.0,2019-12-23 16:24:00,415 13th St, Austin,TX,73301 +318812,USB-C Charging Cable,2,11.95,2019-12-17 18:15:00,699 12th St, Los Angeles,CA,90001 +318813,27in 4K Gaming Monitor,1,389.99,2019-12-07 21:26:00,162 Pine St, New York City,NY,10001 +318814,Vareebadd Phone,1,400.0,2019-12-06 17:31:00,934 Sunset St, Atlanta,GA,30301 +318815,USB-C Charging Cable,1,11.95,2019-12-01 19:22:00,366 Meadow St, San Francisco,CA,94016 +318816,27in FHD Monitor,1,149.99,2019-12-05 08:24:00,533 Elm St, Portland,OR,97035 +318817,Bose SoundSport Headphones,1,99.99,2019-12-02 18:52:00,487 Johnson St, Dallas,TX,75001 +318818,USB-C Charging Cable,1,11.95,2019-12-02 14:54:00,900 South St, San Francisco,CA,94016 +318819,Bose SoundSport Headphones,1,99.99,2019-12-03 12:56:00,829 10th St, Portland,OR,97035 +318820,AA Batteries (4-pack),1,3.84,2019-12-26 19:12:00,830 North St, Boston,MA,02215 +318821,27in 4K Gaming Monitor,1,389.99,2019-12-07 11:43:00,591 9th St, San Francisco,CA,94016 +318822,Wired Headphones,1,11.99,2019-12-08 21:35:00,930 10th St, Austin,TX,73301 +318823,USB-C Charging Cable,2,11.95,2019-12-30 12:24:00,374 1st St, New York City,NY,10001 +318824,Bose SoundSport Headphones,1,99.99,2019-12-29 16:53:00,378 Park St, San Francisco,CA,94016 +318825,Apple Airpods Headphones,1,150.0,2019-12-08 07:32:00,407 Park St, Atlanta,GA,30301 +318826,AA Batteries (4-pack),2,3.84,2019-12-23 14:20:00,848 2nd St, San Francisco,CA,94016 +318827,34in Ultrawide Monitor,1,379.99,2019-12-05 18:38:00,345 Spruce St, Seattle,WA,98101 +318828,Wired Headphones,1,11.99,2019-12-15 09:53:00,446 Sunset St, Atlanta,GA,30301 +318829,USB-C Charging Cable,1,11.95,2019-12-07 17:09:00,702 Hickory St, Los Angeles,CA,90001 +318830,USB-C Charging Cable,2,11.95,2019-12-22 15:19:00,90 Willow St, Portland,ME,04101 +318831,AAA Batteries (4-pack),1,2.99,2019-12-21 19:36:00,640 North St, Seattle,WA,98101 +318832,AAA Batteries (4-pack),3,2.99,2019-12-21 11:17:00,791 Hickory St, Atlanta,GA,30301 +318833,34in Ultrawide Monitor,1,379.99,2019-12-13 22:03:00,796 1st St, New York City,NY,10001 +318834,Apple Airpods Headphones,1,150.0,2019-12-05 18:29:00,967 Chestnut St, San Francisco,CA,94016 +318835,Flatscreen TV,1,300.0,2019-12-30 19:53:00,644 West St, San Francisco,CA,94016 +318836,27in 4K Gaming Monitor,1,389.99,2019-12-22 10:51:00,344 Washington St, Los Angeles,CA,90001 +318837,Macbook Pro Laptop,1,1700.0,2019-12-30 01:31:00,294 Highland St, San Francisco,CA,94016 +318838,USB-C Charging Cable,1,11.95,2019-12-29 16:16:00,700 6th St, San Francisco,CA,94016 +318839,Lightning Charging Cable,1,14.95,2019-12-26 06:35:00,173 9th St, Boston,MA,02215 +318840,34in Ultrawide Monitor,1,379.99,2019-12-18 18:29:00,448 Adams St, Los Angeles,CA,90001 +318841,Lightning Charging Cable,1,14.95,2019-12-15 17:16:00,602 Main St, New York City,NY,10001 +318842,Apple Airpods Headphones,1,150.0,2019-12-12 13:52:00,959 13th St, Portland,OR,97035 +318843,27in 4K Gaming Monitor,1,389.99,2019-12-24 23:27:00,80 Ridge St, Atlanta,GA,30301 +318844,27in FHD Monitor,1,149.99,2019-12-11 13:21:00,829 7th St, San Francisco,CA,94016 +318845,Apple Airpods Headphones,1,150.0,2019-12-31 19:27:00,205 Cedar St, New York City,NY,10001 +318846,AA Batteries (4-pack),1,3.84,2019-12-14 11:34:00,41 Maple St, Austin,TX,73301 +318847,USB-C Charging Cable,1,11.95,2019-12-25 09:20:00,501 Forest St, San Francisco,CA,94016 +318848,27in 4K Gaming Monitor,1,389.99,2019-12-31 18:46:00,258 Hickory St, Los Angeles,CA,90001 +318849,AAA Batteries (4-pack),3,2.99,2019-12-07 18:23:00,445 Lake St, Los Angeles,CA,90001 +318850,Wired Headphones,1,11.99,2019-12-02 20:16:00,49 Wilson St, Los Angeles,CA,90001 +318851,Google Phone,1,600.0,2019-12-02 20:02:00,929 5th St, Boston,MA,02215 +318852,Flatscreen TV,1,300.0,2019-12-09 14:41:00,777 Spruce St, San Francisco,CA,94016 +318853,iPhone,1,700.0,2019-12-09 20:00:00,349 Chestnut St, Austin,TX,73301 +318854,Lightning Charging Cable,2,14.95,2019-12-08 14:07:00,744 Willow St, Los Angeles,CA,90001 +318854,AA Batteries (4-pack),1,3.84,2019-12-08 14:07:00,744 Willow St, Los Angeles,CA,90001 +318855,Wired Headphones,1,11.99,2019-12-27 23:41:00,458 Hill St, New York City,NY,10001 +318856,ThinkPad Laptop,1,999.99,2019-12-25 10:40:00,904 Lakeview St, New York City,NY,10001 +318857,Apple Airpods Headphones,1,150.0,2019-12-01 17:01:00,454 Lake St, Boston,MA,02215 +318858,Apple Airpods Headphones,1,150.0,2019-12-24 16:35:00,816 11th St, Austin,TX,73301 +318859,Wired Headphones,1,11.99,2019-12-02 06:45:00,122 13th St, Boston,MA,02215 +318860,AA Batteries (4-pack),1,3.84,2019-12-08 14:49:00,43 Chestnut St, Seattle,WA,98101 +318861,Wired Headphones,1,11.99,2019-12-11 21:39:00,39 Wilson St, San Francisco,CA,94016 +318862,Apple Airpods Headphones,1,150.0,2019-12-09 13:59:00,598 10th St, Los Angeles,CA,90001 +318863,AA Batteries (4-pack),1,3.84,2019-12-21 10:20:00,368 Johnson St, Atlanta,GA,30301 +318864,USB-C Charging Cable,1,11.95,2019-12-17 07:43:00,425 8th St, New York City,NY,10001 +318865,AA Batteries (4-pack),1,3.84,2019-12-07 12:34:00,812 Madison St, San Francisco,CA,94016 +318866,Apple Airpods Headphones,1,150.0,2019-12-01 19:09:00,172 North St, Los Angeles,CA,90001 +318867,ThinkPad Laptop,1,999.99,2019-12-09 13:17:00,551 4th St, Los Angeles,CA,90001 +318868,USB-C Charging Cable,1,11.95,2019-12-22 06:33:00,58 7th St, Boston,MA,02215 +318869,USB-C Charging Cable,1,11.95,2019-12-31 18:00:00,172 10th St, Atlanta,GA,30301 +318870,27in 4K Gaming Monitor,1,389.99,2019-12-08 08:29:00,420 West St, San Francisco,CA,94016 +318871,USB-C Charging Cable,1,11.95,2019-12-08 17:24:00,855 Chestnut St, San Francisco,CA,94016 +318872,AA Batteries (4-pack),1,3.84,2019-12-28 00:14:00,22 Ridge St, Boston,MA,02215 +318872,iPhone,1,700.0,2019-12-28 00:14:00,22 Ridge St, Boston,MA,02215 +318873,Apple Airpods Headphones,1,150.0,2019-12-14 22:16:00,565 Wilson St, San Francisco,CA,94016 +318874,Google Phone,1,600.0,2019-12-21 06:00:00,67 River St, Atlanta,GA,30301 +318875,AAA Batteries (4-pack),1,2.99,2019-12-20 20:08:00,632 Hickory St, Seattle,WA,98101 +318876,iPhone,1,700.0,2019-12-11 20:24:00,150 Elm St, San Francisco,CA,94016 +318877,Macbook Pro Laptop,1,1700.0,2019-12-21 07:29:00,850 Maple St, Austin,TX,73301 +318878,Lightning Charging Cable,1,14.95,2019-12-10 12:48:00,782 Washington St, San Francisco,CA,94016 +318879,AA Batteries (4-pack),1,3.84,2019-12-26 14:04:00,127 Hill St, Portland,OR,97035 +318880,27in FHD Monitor,1,149.99,2019-12-13 21:18:00,397 Madison St, New York City,NY,10001 +318881,iPhone,1,700.0,2019-12-05 11:14:00,400 13th St, Los Angeles,CA,90001 +318882,AAA Batteries (4-pack),1,2.99,2019-12-12 19:54:00,404 Sunset St, Los Angeles,CA,90001 +318883,AAA Batteries (4-pack),4,2.99,2019-12-14 07:40:00,93 Jackson St, Los Angeles,CA,90001 +318884,Wired Headphones,1,11.99,2019-12-28 12:08:00,971 River St, New York City,NY,10001 +318885,Wired Headphones,1,11.99,2019-12-06 00:08:00,545 North St, Dallas,TX,75001 +318886,USB-C Charging Cable,1,11.95,2019-12-13 05:46:00,802 Meadow St, Dallas,TX,75001 +318887,Google Phone,1,600.0,2019-12-11 13:16:00,850 Jackson St, New York City,NY,10001 +318888,USB-C Charging Cable,1,11.95,2019-12-22 18:10:00,573 Park St, San Francisco,CA,94016 +318889,AAA Batteries (4-pack),1,2.99,2019-12-08 22:16:00,931 Lincoln St, Atlanta,GA,30301 +318890,Wired Headphones,1,11.99,2019-12-17 15:00:00,928 Highland St, Portland,ME,04101 +318891,AA Batteries (4-pack),1,3.84,2019-12-19 19:41:00,996 Jackson St, San Francisco,CA,94016 +318892,AAA Batteries (4-pack),1,2.99,2019-12-12 19:49:00,57 6th St, Austin,TX,73301 +318893,Bose SoundSport Headphones,1,99.99,2019-12-13 20:02:00,646 Highland St, Atlanta,GA,30301 +318894,USB-C Charging Cable,1,11.95,2019-12-16 10:45:00,867 Ridge St, Austin,TX,73301 +318895,AA Batteries (4-pack),1,3.84,2019-12-13 16:11:00,808 Chestnut St, Los Angeles,CA,90001 +318896,USB-C Charging Cable,1,11.95,2019-12-24 11:28:00,547 West St, Portland,ME,04101 +318897,Bose SoundSport Headphones,1,99.99,2019-12-24 18:14:00,182 Maple St, Seattle,WA,98101 +318898,AA Batteries (4-pack),1,3.84,2019-12-14 16:52:00,758 Highland St, New York City,NY,10001 +318899,Flatscreen TV,1,300.0,2019-12-17 15:09:00,134 7th St, Boston,MA,02215 +318900,Wired Headphones,1,11.99,2019-12-31 10:51:00,649 Madison St, Dallas,TX,75001 +318901,Lightning Charging Cable,1,14.95,2019-12-01 08:11:00,447 Madison St, Dallas,TX,75001 +318902,Google Phone,1,600.0,2019-12-14 12:16:00,837 5th St, San Francisco,CA,94016 +318902,Wired Headphones,1,11.99,2019-12-14 12:16:00,837 5th St, San Francisco,CA,94016 +318903,AAA Batteries (4-pack),1,2.99,2019-12-12 19:37:00,779 10th St, Austin,TX,73301 +318904,Flatscreen TV,1,300.0,2019-12-09 15:07:00,604 Park St, San Francisco,CA,94016 +318905,Lightning Charging Cable,1,14.95,2019-12-20 10:21:00,46 Jackson St, Austin,TX,73301 +318906,AA Batteries (4-pack),1,3.84,2019-12-14 12:34:00,406 Chestnut St, San Francisco,CA,94016 +318907,AAA Batteries (4-pack),1,2.99,2019-12-21 18:12:00,11 Jackson St, Austin,TX,73301 +318908,AAA Batteries (4-pack),1,2.99,2019-12-15 08:40:00,40 Pine St, Austin,TX,73301 +318909,Lightning Charging Cable,1,14.95,2019-12-19 12:07:00,408 Lakeview St, Portland,OR,97035 +318910,Wired Headphones,1,11.99,2019-12-16 16:44:00,360 Sunset St, New York City,NY,10001 +318911,Bose SoundSport Headphones,1,99.99,2019-12-01 10:00:00,208 9th St, Dallas,TX,75001 +318912,Lightning Charging Cable,1,14.95,2019-12-11 12:00:00,998 8th St, Portland,OR,97035 +318913,27in 4K Gaming Monitor,1,389.99,2019-12-24 22:33:00,699 Maple St, Seattle,WA,98101 +318914,Lightning Charging Cable,1,14.95,2019-12-15 13:24:00,417 Adams St, Boston,MA,02215 +318915,Apple Airpods Headphones,1,150.0,2019-12-11 14:25:00,659 4th St, Los Angeles,CA,90001 +318916,Bose SoundSport Headphones,1,99.99,2019-12-02 20:51:00,831 Lake St, New York City,NY,10001 +318917,AAA Batteries (4-pack),1,2.99,2019-12-22 08:18:00,152 2nd St, Dallas,TX,75001 +318918,34in Ultrawide Monitor,1,379.99,2019-12-10 16:03:00,351 South St, San Francisco,CA,94016 +318919,Macbook Pro Laptop,1,1700.0,2019-12-27 15:36:00,629 Adams St, Portland,OR,97035 +318919,27in 4K Gaming Monitor,1,389.99,2019-12-27 15:36:00,629 Adams St, Portland,OR,97035 +318920,AAA Batteries (4-pack),1,2.99,2019-12-17 17:19:00,356 Walnut St, Dallas,TX,75001 +318921,27in FHD Monitor,1,149.99,2019-12-17 00:26:00,534 Jackson St, Dallas,TX,75001 +318922,AAA Batteries (4-pack),1,2.99,2019-12-04 13:44:00,416 Jefferson St, Los Angeles,CA,90001 +318923,USB-C Charging Cable,1,11.95,2019-12-07 21:39:00,463 8th St, San Francisco,CA,94016 +318924,Apple Airpods Headphones,1,150.0,2019-12-12 19:31:00,542 Spruce St, Los Angeles,CA,90001 +318925,Wired Headphones,1,11.99,2019-12-24 11:33:00,502 11th St, Seattle,WA,98101 +318926,AA Batteries (4-pack),1,3.84,2019-12-15 06:36:00,124 Ridge St, New York City,NY,10001 +318927,Vareebadd Phone,1,400.0,2019-12-14 17:33:00,232 1st St, San Francisco,CA,94016 +318928,20in Monitor,1,109.99,2019-12-09 12:50:00,398 Willow St, Boston,MA,02215 +318929,Bose SoundSport Headphones,1,99.99,2019-12-08 12:01:00,148 13th St, Los Angeles,CA,90001 +318930,27in 4K Gaming Monitor,1,389.99,2019-12-24 16:39:00,447 Chestnut St, Los Angeles,CA,90001 +318931,USB-C Charging Cable,1,11.95,2019-12-26 20:40:00,987 8th St, Boston,MA,02215 +318932,USB-C Charging Cable,1,11.95,2019-12-26 15:24:00,297 Chestnut St, Boston,MA,02215 +318933,iPhone,1,700.0,2019-12-19 20:55:00,325 5th St, Seattle,WA,98101 +318934,AAA Batteries (4-pack),3,2.99,2019-12-29 16:36:00,361 Lincoln St, Seattle,WA,98101 +318935,Apple Airpods Headphones,1,150.0,2019-12-04 09:28:00,213 Jackson St, Boston,MA,02215 +318936,20in Monitor,1,109.99,2019-12-19 10:31:00,774 Spruce St, Portland,ME,04101 +318937,20in Monitor,1,109.99,2019-12-04 20:59:00,907 Wilson St, Seattle,WA,98101 +318938,Google Phone,1,600.0,2019-12-13 08:42:00,2 Cherry St, San Francisco,CA,94016 +318939,AAA Batteries (4-pack),2,2.99,2019-12-02 07:39:00,583 Forest St, San Francisco,CA,94016 +318940,Lightning Charging Cable,1,14.95,2019-12-24 20:54:00,325 West St, Seattle,WA,98101 +318941,27in FHD Monitor,1,149.99,2019-12-16 13:02:00,723 Highland St, New York City,NY,10001 +318942,Bose SoundSport Headphones,1,99.99,2019-12-05 09:28:00,579 Johnson St, Atlanta,GA,30301 +318943,Wired Headphones,1,11.99,2019-12-28 08:50:00,186 6th St, San Francisco,CA,94016 +318944,Flatscreen TV,1,300.0,2019-12-20 15:09:00,611 2nd St, San Francisco,CA,94016 +318945,Lightning Charging Cable,1,14.95,2019-12-09 12:06:00,354 4th St, San Francisco,CA,94016 +318946,Wired Headphones,1,11.99,2019-12-08 12:51:00,58 Park St, New York City,NY,10001 +318947,USB-C Charging Cable,1,11.95,2019-12-30 17:50:00,767 South St, Boston,MA,02215 +318948,Flatscreen TV,1,300.0,2019-12-28 22:13:00,643 12th St, Los Angeles,CA,90001 +318949,Bose SoundSport Headphones,1,99.99,2019-12-31 00:20:00,329 Hill St, Atlanta,GA,30301 +318950,AAA Batteries (4-pack),2,2.99,2019-12-12 14:25:00,372 Lincoln St, San Francisco,CA,94016 +318951,AAA Batteries (4-pack),1,2.99,2019-12-15 14:52:00,618 Hickory St, Seattle,WA,98101 +318952,AAA Batteries (4-pack),1,2.99,2019-12-05 11:32:00,118 North St, Portland,OR,97035 +318953,USB-C Charging Cable,1,11.95,2019-12-20 18:54:00,702 Cedar St, San Francisco,CA,94016 +318954,AAA Batteries (4-pack),2,2.99,2019-12-04 12:28:00,780 South St, Seattle,WA,98101 +318955,27in FHD Monitor,1,149.99,2019-12-26 10:59:00,966 South St, San Francisco,CA,94016 +318956,Flatscreen TV,1,300.0,2019-12-19 13:27:00,468 Cedar St, Boston,MA,02215 +318957,USB-C Charging Cable,1,11.95,2019-12-15 09:41:00,709 Hickory St, San Francisco,CA,94016 +318958,27in 4K Gaming Monitor,1,389.99,2019-12-21 02:06:00,969 Jackson St, New York City,NY,10001 +318959,Wired Headphones,1,11.99,2019-12-28 00:17:00,380 Pine St, Boston,MA,02215 +318960,USB-C Charging Cable,1,11.95,2019-12-17 18:24:00,399 Center St, San Francisco,CA,94016 +318961,USB-C Charging Cable,1,11.95,2019-12-27 09:37:00,489 7th St, Atlanta,GA,30301 +318962,Wired Headphones,1,11.99,2019-12-25 23:05:00,115 South St, New York City,NY,10001 +318963,Lightning Charging Cable,1,14.95,2019-12-26 22:34:00,927 North St, San Francisco,CA,94016 +318964,Bose SoundSport Headphones,1,99.99,2019-12-09 08:38:00,933 Washington St, Portland,ME,04101 +318964,USB-C Charging Cable,1,11.95,2019-12-09 08:38:00,933 Washington St, Portland,ME,04101 +318965,iPhone,1,700.0,2019-12-27 21:29:00,734 5th St, Boston,MA,02215 +318965,Lightning Charging Cable,1,14.95,2019-12-27 21:29:00,734 5th St, Boston,MA,02215 +318966,Apple Airpods Headphones,1,150.0,2019-12-06 04:01:00,742 Ridge St, San Francisco,CA,94016 +318967,Wired Headphones,1,11.99,2019-12-22 16:54:00,594 6th St, Los Angeles,CA,90001 +318968,AA Batteries (4-pack),1,3.84,2019-12-16 07:34:00,932 5th St, Los Angeles,CA,90001 +318969,Wired Headphones,1,11.99,2019-12-24 09:50:00,99 Pine St, New York City,NY,10001 +318970,iPhone,1,700.0,2019-12-16 22:54:00,599 Walnut St, New York City,NY,10001 +318971,AA Batteries (4-pack),1,3.84,2019-12-26 23:12:00,851 Chestnut St, New York City,NY,10001 +318972,ThinkPad Laptop,1,999.99,2019-12-27 18:10:00,865 Lake St, New York City,NY,10001 +318973,iPhone,1,700.0,2019-12-01 18:35:00,526 Chestnut St, Portland,OR,97035 +318974,USB-C Charging Cable,1,11.95,2019-12-22 22:07:00,25 Forest St, San Francisco,CA,94016 +318975,Bose SoundSport Headphones,1,99.99,2019-12-14 17:53:00,473 South St, San Francisco,CA,94016 +318976,27in FHD Monitor,1,149.99,2019-12-19 13:26:00,159 10th St, Seattle,WA,98101 +318977,Wired Headphones,1,11.99,2019-12-29 07:39:00,426 6th St, New York City,NY,10001 +318978,Bose SoundSport Headphones,1,99.99,2019-12-30 20:12:00,87 Chestnut St, San Francisco,CA,94016 +318979,Apple Airpods Headphones,1,150.0,2019-12-30 10:21:00,246 Meadow St, San Francisco,CA,94016 +318980,Vareebadd Phone,1,400.0,2019-12-07 20:16:00,554 8th St, Los Angeles,CA,90001 +318981,AA Batteries (4-pack),1,3.84,2019-12-28 06:47:00,386 Lakeview St, Seattle,WA,98101 +318982,Apple Airpods Headphones,1,150.0,2019-12-24 18:22:00,737 Church St, Seattle,WA,98101 +318983,Macbook Pro Laptop,1,1700.0,2019-12-05 20:58:00,637 11th St, Los Angeles,CA,90001 +318984,AA Batteries (4-pack),1,3.84,2019-12-01 20:24:00,875 West St, Seattle,WA,98101 +318985,AA Batteries (4-pack),1,3.84,2019-12-08 09:51:00,165 Dogwood St, San Francisco,CA,94016 +318986,27in FHD Monitor,1,149.99,2019-12-05 09:39:00,886 7th St, New York City,NY,10001 +318987,AAA Batteries (4-pack),2,2.99,2019-12-19 20:27:00,634 Walnut St, New York City,NY,10001 +318988,Flatscreen TV,1,300.0,2019-12-20 08:55:00,379 West St, Boston,MA,02215 +318989,AA Batteries (4-pack),1,3.84,2019-12-23 14:48:00,36 4th St, Seattle,WA,98101 +318990,LG Washing Machine,1,600.0,2019-12-19 19:20:00,671 10th St, Austin,TX,73301 +318991,Google Phone,1,600.0,2019-12-23 07:17:00,505 10th St, San Francisco,CA,94016 +318992,AAA Batteries (4-pack),1,2.99,2019-12-30 20:56:00,699 Center St, Boston,MA,02215 +318993,AA Batteries (4-pack),2,3.84,2019-12-07 17:05:00,529 Johnson St, San Francisco,CA,94016 +318994,iPhone,1,700.0,2019-12-03 15:59:00,808 Park St, Boston,MA,02215 +318995,20in Monitor,1,109.99,2019-12-12 17:23:00,590 Meadow St, Los Angeles,CA,90001 +318996,Lightning Charging Cable,1,14.95,2019-12-17 06:45:00,555 Forest St, San Francisco,CA,94016 +318997,Wired Headphones,1,11.99,2019-12-08 14:33:00,245 Dogwood St, San Francisco,CA,94016 +318998,Wired Headphones,1,11.99,2019-12-31 13:18:00,378 Washington St, San Francisco,CA,94016 +318999,Flatscreen TV,1,300.0,2019-12-11 18:06:00,80 10th St, San Francisco,CA,94016 +319000,AA Batteries (4-pack),2,3.84,2019-12-11 21:38:00,402 Maple St, San Francisco,CA,94016 +319001,Lightning Charging Cable,1,14.95,2019-12-20 08:56:00,882 11th St, Dallas,TX,75001 +319002,ThinkPad Laptop,1,999.99,2019-12-30 15:31:00,850 River St, San Francisco,CA,94016 +319003,Vareebadd Phone,1,400.0,2019-12-20 09:14:00,228 Elm St, Portland,OR,97035 +319004,AA Batteries (4-pack),1,3.84,2019-12-13 10:42:00,210 Cedar St, Los Angeles,CA,90001 +319005,AAA Batteries (4-pack),2,2.99,2019-12-23 16:49:00,796 Lake St, Portland,OR,97035 +319006,Vareebadd Phone,1,400.0,2019-12-12 19:46:00,32 Chestnut St, New York City,NY,10001 +319007,Bose SoundSport Headphones,1,99.99,2019-12-14 17:30:00,474 Center St, New York City,NY,10001 +319008,Apple Airpods Headphones,1,150.0,2019-12-23 13:15:00,406 10th St, San Francisco,CA,94016 +319009,Lightning Charging Cable,1,14.95,2019-12-16 20:02:00,151 Adams St, San Francisco,CA,94016 +319010,USB-C Charging Cable,1,11.95,2019-12-18 11:32:00,290 7th St, Los Angeles,CA,90001 +319011,Lightning Charging Cable,1,14.95,2019-12-05 18:05:00,821 North St, Austin,TX,73301 +319012,Bose SoundSport Headphones,1,99.99,2019-12-17 10:37:00,532 North St, Boston,MA,02215 +319013,27in FHD Monitor,1,149.99,2019-12-16 12:17:00,392 Cherry St, Atlanta,GA,30301 +319014,Macbook Pro Laptop,1,1700.0,2019-12-08 14:12:00,209 Jefferson St, Boston,MA,02215 +319015,ThinkPad Laptop,1,999.99,2019-12-19 10:43:00,493 Elm St, Atlanta,GA,30301 +319016,Flatscreen TV,1,300.0,2019-12-03 12:47:00,564 13th St, Portland,OR,97035 +319017,34in Ultrawide Monitor,1,379.99,2019-12-06 12:11:00,659 1st St, San Francisco,CA,94016 +319018,Apple Airpods Headphones,1,150.0,2019-12-04 20:18:00,944 Jackson St, Boston,MA,02215 +319019,Flatscreen TV,1,300.0,2019-12-03 13:45:00,745 1st St, Dallas,TX,75001 +319020,Lightning Charging Cable,2,14.95,2019-12-23 13:20:00,834 Park St, Portland,OR,97035 +319021,Lightning Charging Cable,1,14.95,2019-12-17 20:24:00,43 North St, San Francisco,CA,94016 +319022,Bose SoundSport Headphones,1,99.99,2019-12-22 16:09:00,790 Madison St, Dallas,TX,75001 +319023,LG Dryer,1,600.0,2019-12-24 17:38:00,671 Walnut St, San Francisco,CA,94016 +319024,Lightning Charging Cable,1,14.95,2019-12-25 11:06:00,224 Pine St, Austin,TX,73301 +319025,Bose SoundSport Headphones,1,99.99,2019-12-15 11:04:00,432 2nd St, Boston,MA,02215 +319026,AA Batteries (4-pack),1,3.84,2019-12-22 09:11:00,970 Meadow St, Portland,OR,97035 +319027,USB-C Charging Cable,1,11.95,2019-12-27 14:07:00,976 6th St, Dallas,TX,75001 +319028,AAA Batteries (4-pack),3,2.99,2019-12-02 01:56:00,855 10th St, San Francisco,CA,94016 +319029,AAA Batteries (4-pack),1,2.99,2019-12-27 08:47:00,297 4th St, Atlanta,GA,30301 +319030,Bose SoundSport Headphones,2,99.99,2019-12-17 19:41:00,837 Spruce St, Dallas,TX,75001 +319031,Bose SoundSport Headphones,1,99.99,2019-12-09 21:39:00,223 Maple St, San Francisco,CA,94016 +319032,iPhone,1,700.0,2019-12-05 18:19:00,751 Meadow St, Dallas,TX,75001 +319032,Wired Headphones,1,11.99,2019-12-05 18:19:00,751 Meadow St, Dallas,TX,75001 +319033,iPhone,1,700.0,2019-12-31 21:07:00,523 Pine St, Boston,MA,02215 +319034,ThinkPad Laptop,1,999.99,2019-12-24 13:40:00,271 Walnut St, New York City,NY,10001 +319035,LG Dryer,1,600.0,2019-12-17 23:55:00,540 Madison St, Portland,OR,97035 +319036,AA Batteries (4-pack),1,3.84,2019-12-29 09:17:00,529 10th St, San Francisco,CA,94016 +319037,Lightning Charging Cable,1,14.95,2019-12-29 14:04:00,299 7th St, Dallas,TX,75001 +319038,Lightning Charging Cable,1,14.95,2019-12-19 14:56:00,617 Jackson St, San Francisco,CA,94016 +319039,AA Batteries (4-pack),1,3.84,2019-12-05 13:48:00,555 4th St, Los Angeles,CA,90001 +319040,Macbook Pro Laptop,1,1700.0,2019-12-08 09:52:00,972 Park St, San Francisco,CA,94016 +319041,27in 4K Gaming Monitor,1,389.99,2019-12-07 13:19:00,95 River St, Los Angeles,CA,90001 +319042,Wired Headphones,1,11.99,2019-12-12 07:50:00,137 Lincoln St, San Francisco,CA,94016 +319043,AA Batteries (4-pack),1,3.84,2019-12-07 16:21:00,250 9th St, New York City,NY,10001 +319044,27in FHD Monitor,1,149.99,2019-12-06 06:29:00,683 Jefferson St, Los Angeles,CA,90001 +319045,Flatscreen TV,1,300.0,2019-12-22 21:52:00,317 Park St, San Francisco,CA,94016 +319045,AAA Batteries (4-pack),1,2.99,2019-12-22 21:52:00,317 Park St, San Francisco,CA,94016 +319046,AA Batteries (4-pack),1,3.84,2019-12-13 18:15:00,294 9th St, Boston,MA,02215 +319047,AA Batteries (4-pack),1,3.84,2019-12-06 09:01:00,676 Main St, Boston,MA,02215 +319048,Wired Headphones,1,11.99,2019-12-01 14:56:00,709 Washington St, Boston,MA,02215 +319049,Macbook Pro Laptop,1,1700.0,2019-12-23 18:23:00,239 Adams St, San Francisco,CA,94016 +319050,USB-C Charging Cable,1,11.95,2019-12-06 16:24:00,190 8th St, San Francisco,CA,94016 +319051,Lightning Charging Cable,1,14.95,2019-12-20 22:41:00,217 Willow St, Dallas,TX,75001 +319052,AA Batteries (4-pack),1,3.84,2019-12-12 13:40:00,860 1st St, Atlanta,GA,30301 +319053,USB-C Charging Cable,1,11.95,2019-12-27 20:55:00,575 9th St, San Francisco,CA,94016 +319054,USB-C Charging Cable,1,11.95,2019-12-18 20:34:00,875 Maple St, Portland,ME,04101 +319055,AA Batteries (4-pack),2,3.84,2019-12-27 10:51:00,463 Spruce St, New York City,NY,10001 +319056,Flatscreen TV,1,300.0,2019-12-07 12:31:00,599 10th St, San Francisco,CA,94016 +319057,27in FHD Monitor,1,149.99,2019-12-24 22:29:00,395 North St, Los Angeles,CA,90001 +319058,iPhone,1,700.0,2019-12-10 10:02:00,556 Spruce St, San Francisco,CA,94016 +319059,Bose SoundSport Headphones,1,99.99,2019-12-13 20:22:00,812 Spruce St, Dallas,TX,75001 +319060,USB-C Charging Cable,1,11.95,2019-12-25 17:26:00,873 Hickory St, New York City,NY,10001 +319061,Bose SoundSport Headphones,1,99.99,2019-12-13 06:00:00,63 6th St, New York City,NY,10001 +319062,AA Batteries (4-pack),2,3.84,2019-12-25 14:20:00,541 11th St, New York City,NY,10001 +319063,USB-C Charging Cable,1,11.95,2019-12-16 10:51:00,308 Center St, San Francisco,CA,94016 +319064,AAA Batteries (4-pack),1,2.99,2019-12-09 12:56:00,305 Ridge St, Boston,MA,02215 +319065,Google Phone,1,600.0,2019-12-08 22:10:00,160 Hill St, New York City,NY,10001 +319066,AAA Batteries (4-pack),2,2.99,2019-12-29 18:52:00,307 Lake St, Boston,MA,02215 +319067,USB-C Charging Cable,1,11.95,2019-12-02 09:44:00,994 10th St, New York City,NY,10001 +319068,ThinkPad Laptop,1,999.99,2019-12-02 13:54:00,144 Main St, San Francisco,CA,94016 +319069,AA Batteries (4-pack),1,3.84,2019-12-24 21:03:00,620 14th St, New York City,NY,10001 +319070,USB-C Charging Cable,1,11.95,2019-12-26 11:12:00,104 Lake St, New York City,NY,10001 +319071,Lightning Charging Cable,1,14.95,2019-12-29 21:23:00,980 West St, Seattle,WA,98101 +319072,Lightning Charging Cable,1,14.95,2019-12-28 21:25:00,410 13th St, San Francisco,CA,94016 +319073,Google Phone,1,600.0,2019-12-10 13:59:00,121 Hill St, Seattle,WA,98101 +319074,AAA Batteries (4-pack),1,2.99,2019-12-07 10:07:00,676 Dogwood St, Los Angeles,CA,90001 +319075,USB-C Charging Cable,1,11.95,2019-12-15 09:47:00,422 Chestnut St, New York City,NY,10001 +319076,Apple Airpods Headphones,1,150.0,2019-12-29 21:00:00,67 1st St, Boston,MA,02215 +319077,USB-C Charging Cable,2,11.95,2019-12-30 07:30:00,190 Highland St, New York City,NY,10001 +319078,iPhone,1,700.0,2019-12-09 21:45:00,265 11th St, Portland,OR,97035 +319079,Macbook Pro Laptop,1,1700.0,2019-12-14 22:05:00,70 Hickory St, Portland,OR,97035 +319080,Lightning Charging Cable,1,14.95,2019-12-23 16:57:00,439 Spruce St, New York City,NY,10001 +319081,Wired Headphones,1,11.99,2019-12-27 15:25:00,43 North St, Austin,TX,73301 +319082,AAA Batteries (4-pack),2,2.99,2019-12-03 17:45:00,444 Maple St, Portland,OR,97035 +319083,Wired Headphones,1,11.99,2019-12-30 19:56:00,450 Park St, New York City,NY,10001 +319084,Wired Headphones,1,11.99,2019-12-23 14:47:00,76 12th St, Seattle,WA,98101 +319085,Flatscreen TV,1,300.0,2019-12-10 13:19:00,870 Sunset St, San Francisco,CA,94016 +319086,Lightning Charging Cable,2,14.95,2019-12-23 03:01:00,139 7th St, San Francisco,CA,94016 +319087,Wired Headphones,1,11.99,2019-12-15 18:20:00,326 Spruce St, Austin,TX,73301 +319088,Flatscreen TV,1,300.0,2019-12-20 11:09:00,289 Walnut St, Dallas,TX,75001 +319089,USB-C Charging Cable,1,11.95,2019-12-17 19:44:00,494 Cherry St, Atlanta,GA,30301 +319090,27in 4K Gaming Monitor,1,389.99,2019-12-14 09:36:00,68 9th St, New York City,NY,10001 +319091,Google Phone,1,600.0,2019-12-29 14:59:00,754 Pine St, Portland,OR,97035 +319092,20in Monitor,1,109.99,2019-12-20 22:47:00,853 South St, Atlanta,GA,30301 +319093,Bose SoundSport Headphones,1,99.99,2019-12-26 11:35:00,678 Wilson St, Seattle,WA,98101 +319094,iPhone,1,700.0,2019-12-15 12:10:00,612 4th St, New York City,NY,10001 +319095,Google Phone,1,600.0,2019-12-20 14:07:00,116 Adams St, Atlanta,GA,30301 +319095,USB-C Charging Cable,1,11.95,2019-12-20 14:07:00,116 Adams St, Atlanta,GA,30301 +319096,Wired Headphones,1,11.99,2019-12-27 05:35:00,830 Spruce St, New York City,NY,10001 +319097,Lightning Charging Cable,1,14.95,2019-12-12 07:46:00,265 Forest St, Boston,MA,02215 +319098,Lightning Charging Cable,1,14.95,2019-12-19 12:12:00,691 10th St, Boston,MA,02215 +319099,USB-C Charging Cable,1,11.95,2019-12-29 19:16:00,374 8th St, Atlanta,GA,30301 +319100,Lightning Charging Cable,1,14.95,2019-12-28 08:56:00,138 2nd St, Atlanta,GA,30301 +319101,Bose SoundSport Headphones,1,99.99,2019-12-30 13:31:00,549 Main St, New York City,NY,10001 +319102,Macbook Pro Laptop,1,1700.0,2019-12-30 08:58:00,78 Lakeview St, Seattle,WA,98101 +319103,Lightning Charging Cable,1,14.95,2019-12-26 21:07:00,313 Forest St, Atlanta,GA,30301 +319104,AAA Batteries (4-pack),1,2.99,2019-12-05 18:34:00,512 Lake St, Los Angeles,CA,90001 +319105,AAA Batteries (4-pack),2,2.99,2019-12-05 17:16:00,34 10th St, New York City,NY,10001 +319106,AAA Batteries (4-pack),2,2.99,2019-12-14 10:18:00,67 Jefferson St, Portland,OR,97035 +319107,AA Batteries (4-pack),1,3.84,2019-12-16 11:03:00,220 Park St, Los Angeles,CA,90001 +319108,27in 4K Gaming Monitor,1,389.99,2019-12-14 21:33:00,962 2nd St, San Francisco,CA,94016 +319109,ThinkPad Laptop,1,999.99,2019-12-12 08:03:00,928 Sunset St, Dallas,TX,75001 +319110,Flatscreen TV,1,300.0,2019-12-22 21:09:00,162 Chestnut St, Los Angeles,CA,90001 +319111,Lightning Charging Cable,1,14.95,2019-12-30 13:56:00,334 8th St, Dallas,TX,75001 +319112,Bose SoundSport Headphones,1,99.99,2019-12-08 20:30:00,164 Walnut St, San Francisco,CA,94016 +319113,Apple Airpods Headphones,1,150.0,2019-12-24 08:51:00,283 Church St, San Francisco,CA,94016 +319114,USB-C Charging Cable,1,11.95,2019-12-15 15:29:00,566 Forest St, Boston,MA,02215 +319115,Wired Headphones,1,11.99,2019-12-24 16:43:00,26 Adams St, San Francisco,CA,94016 +319116,AA Batteries (4-pack),2,3.84,2019-12-31 16:08:00,270 North St, Boston,MA,02215 +319117,AAA Batteries (4-pack),4,2.99,2019-12-05 20:30:00,322 Hill St, Los Angeles,CA,90001 +319118,ThinkPad Laptop,1,999.99,2019-12-31 14:10:00,499 Meadow St, Boston,MA,02215 +319119,AAA Batteries (4-pack),1,2.99,2019-12-18 15:19:00,969 Washington St, New York City,NY,10001 +319120,Apple Airpods Headphones,1,150.0,2019-12-03 06:39:00,728 Ridge St, Seattle,WA,98101 +319121,iPhone,1,700.0,2019-12-28 22:19:00,174 North St, New York City,NY,10001 +319122,Macbook Pro Laptop,1,1700.0,2019-12-03 15:42:00,773 Ridge St, Boston,MA,02215 +319123,USB-C Charging Cable,1,11.95,2019-12-17 19:55:00,830 1st St, San Francisco,CA,94016 +319124,Macbook Pro Laptop,1,1700.0,2019-12-20 17:46:00,641 Main St, Portland,OR,97035 +319125,Apple Airpods Headphones,1,150.0,2019-12-26 12:34:00,20 Highland St, Portland,ME,04101 +319126,34in Ultrawide Monitor,1,379.99,2019-12-14 14:48:00,950 Adams St, Austin,TX,73301 +319127,Lightning Charging Cable,1,14.95,2019-12-04 19:08:00,203 7th St, San Francisco,CA,94016 +319128,27in 4K Gaming Monitor,1,389.99,2019-12-14 19:10:00,889 West St, Portland,OR,97035 +319129,Lightning Charging Cable,1,14.95,2019-12-29 17:26:00,686 13th St, San Francisco,CA,94016 +319130,Lightning Charging Cable,1,14.95,2019-12-29 12:59:00,19 Washington St, Dallas,TX,75001 +319131,AAA Batteries (4-pack),2,2.99,2019-12-17 18:36:00,988 Spruce St, Seattle,WA,98101 +319132,Macbook Pro Laptop,1,1700.0,2019-12-06 21:10:00,301 2nd St, San Francisco,CA,94016 +319133,Apple Airpods Headphones,1,150.0,2019-12-24 20:09:00,939 7th St, Los Angeles,CA,90001 +319134,AA Batteries (4-pack),1,3.84,2019-12-06 12:17:00,320 7th St, San Francisco,CA,94016 +319135,Wired Headphones,1,11.99,2019-12-13 07:41:00,965 Meadow St, New York City,NY,10001 +319136,Bose SoundSport Headphones,1,99.99,2019-12-16 12:13:00,558 11th St, Los Angeles,CA,90001 +319137,Apple Airpods Headphones,1,150.0,2019-12-15 14:35:00,630 5th St, Dallas,TX,75001 +319138,Wired Headphones,1,11.99,2019-12-26 12:21:00,762 Jefferson St, Portland,OR,97035 +319139,27in FHD Monitor,1,149.99,2019-12-13 23:24:00,300 Hickory St, San Francisco,CA,94016 +319140,Wired Headphones,1,11.99,2019-12-20 09:56:00,529 4th St, New York City,NY,10001 +319141,iPhone,1,700.0,2019-12-26 18:18:00,905 Lakeview St, San Francisco,CA,94016 +319142,Google Phone,1,600.0,2019-12-19 00:49:00,531 Church St, Austin,TX,73301 +319143,USB-C Charging Cable,1,11.95,2019-12-26 15:09:00,706 5th St, Austin,TX,73301 +319144,Vareebadd Phone,1,400.0,2019-12-16 18:49:00,131 Main St, New York City,NY,10001 +319145,AAA Batteries (4-pack),1,2.99,2019-12-25 12:22:00,356 Johnson St, Los Angeles,CA,90001 +319146,Bose SoundSport Headphones,1,99.99,2019-12-30 14:33:00,633 Pine St, San Francisco,CA,94016 +319147,AAA Batteries (4-pack),1,2.99,2019-12-09 17:12:00,601 West St, Dallas,TX,75001 +319148,Wired Headphones,1,11.99,2019-12-14 14:30:00,677 North St, New York City,NY,10001 +319149,USB-C Charging Cable,1,11.95,2019-12-02 12:46:00,990 North St, Atlanta,GA,30301 +319150,34in Ultrawide Monitor,1,379.99,2019-12-08 21:18:00,654 Adams St, Boston,MA,02215 +319151,Bose SoundSport Headphones,1,99.99,2019-12-30 11:48:00,557 Cedar St, New York City,NY,10001 +319152,Wired Headphones,1,11.99,2019-12-15 16:48:00,93 Jefferson St, New York City,NY,10001 +319153,USB-C Charging Cable,1,11.95,2019-12-15 11:39:00,217 Jefferson St, Dallas,TX,75001 +319154,Bose SoundSport Headphones,1,99.99,2019-12-24 18:49:00,204 12th St, Dallas,TX,75001 +319155,Wired Headphones,1,11.99,2019-12-21 16:37:00,561 Hickory St, San Francisco,CA,94016 +319156,Wired Headphones,1,11.99,2019-12-01 21:27:00,130 West St, Atlanta,GA,30301 +319157,Wired Headphones,1,11.99,2019-12-08 11:37:00,873 1st St, Boston,MA,02215 +319158,Wired Headphones,1,11.99,2019-12-09 08:10:00,744 14th St, San Francisco,CA,94016 +319159,Lightning Charging Cable,1,14.95,2019-12-18 19:48:00,783 Washington St, Seattle,WA,98101 +319160,Wired Headphones,1,11.99,2019-12-17 22:01:00,237 Washington St, New York City,NY,10001 +319161,USB-C Charging Cable,1,11.95,2019-12-04 17:26:00,838 Hickory St, Los Angeles,CA,90001 +319162,iPhone,1,700.0,2019-12-29 13:06:00,914 West St, Seattle,WA,98101 +319163,AAA Batteries (4-pack),2,2.99,2019-12-22 15:11:00,410 13th St, Atlanta,GA,30301 +319164,Lightning Charging Cable,1,14.95,2019-12-19 12:16:00,666 Lakeview St, New York City,NY,10001 +319165,AAA Batteries (4-pack),2,2.99,2019-12-16 19:11:00,330 Pine St, Dallas,TX,75001 +319166,20in Monitor,1,109.99,2019-12-27 07:29:00,448 Spruce St, New York City,NY,10001 +319167,Wired Headphones,1,11.99,2019-12-02 15:58:00,480 West St, Los Angeles,CA,90001 +319168,20in Monitor,1,109.99,2019-12-18 15:25:00,472 Lincoln St, Los Angeles,CA,90001 +319169,Bose SoundSport Headphones,1,99.99,2019-12-08 01:32:00,112 Main St, Dallas,TX,75001 +319170,AAA Batteries (4-pack),2,2.99,2019-12-07 17:47:00,671 Wilson St, San Francisco,CA,94016 +319171,USB-C Charging Cable,1,11.95,2019-12-20 21:52:00,870 Jackson St, New York City,NY,10001 +319172,Macbook Pro Laptop,1,1700.0,2019-12-02 16:52:00,854 Hill St, Los Angeles,CA,90001 +319173,AAA Batteries (4-pack),2,2.99,2019-12-15 00:36:00,511 Elm St, Los Angeles,CA,90001 +319174,Wired Headphones,1,11.99,2019-12-27 19:30:00,310 Park St, Atlanta,GA,30301 +319175,AA Batteries (4-pack),1,3.84,2019-12-04 19:17:00,370 Cedar St, San Francisco,CA,94016 +319176,Lightning Charging Cable,1,14.95,2019-12-15 22:02:00,675 South St, Portland,OR,97035 +319177,Wired Headphones,1,11.99,2019-12-20 15:49:00,827 13th St, Boston,MA,02215 +319178,ThinkPad Laptop,1,999.99,2019-12-13 16:59:00,264 Cherry St, New York City,NY,10001 +319179,AAA Batteries (4-pack),1,2.99,2019-12-25 12:27:00,241 Chestnut St, Portland,ME,04101 +319180,Wired Headphones,1,11.99,2019-12-12 21:51:00,515 Highland St, Los Angeles,CA,90001 +319181,Apple Airpods Headphones,1,150.0,2019-12-09 14:27:00,292 10th St, Los Angeles,CA,90001 +319182,Wired Headphones,1,11.99,2019-12-24 19:09:00,518 Chestnut St, New York City,NY,10001 +319183,Macbook Pro Laptop,1,1700.0,2019-12-01 12:34:00,405 North St, New York City,NY,10001 +319184,Lightning Charging Cable,1,14.95,2019-12-04 18:54:00,113 8th St, New York City,NY,10001 +319185,Wired Headphones,1,11.99,2019-12-08 08:21:00,796 North St, Boston,MA,02215 +319186,27in 4K Gaming Monitor,1,389.99,2019-12-23 22:41:00,751 Johnson St, Seattle,WA,98101 +319187,AAA Batteries (4-pack),2,2.99,2019-12-04 20:14:00,830 Ridge St, New York City,NY,10001 +319188,20in Monitor,1,109.99,2019-12-08 13:16:00,884 Cherry St, San Francisco,CA,94016 +319189,Macbook Pro Laptop,1,1700.0,2019-12-24 12:04:00,417 Pine St, San Francisco,CA,94016 +319190,AA Batteries (4-pack),1,3.84,2019-12-31 21:29:00,480 Chestnut St, San Francisco,CA,94016 +319191,Macbook Pro Laptop,1,1700.0,2019-12-02 15:39:00,917 Lincoln St, San Francisco,CA,94016 +319192,Lightning Charging Cable,1,14.95,2019-12-30 21:57:00,402 Forest St, San Francisco,CA,94016 +319193,Wired Headphones,1,11.99,2019-12-14 12:23:00,796 Elm St, Los Angeles,CA,90001 +319194,USB-C Charging Cable,1,11.95,2019-12-24 17:10:00,664 Chestnut St, San Francisco,CA,94016 +319195,USB-C Charging Cable,1,11.95,2019-12-02 18:20:00,712 Hickory St, Seattle,WA,98101 +319196,USB-C Charging Cable,1,11.95,2019-12-26 18:48:00,427 14th St, New York City,NY,10001 +319197,Lightning Charging Cable,1,14.95,2019-12-14 18:48:00,160 Sunset St, San Francisco,CA,94016 +319198,AA Batteries (4-pack),1,3.84,2019-12-10 08:55:00,361 River St, Los Angeles,CA,90001 +319199,AAA Batteries (4-pack),1,2.99,2019-12-26 11:52:00,765 Washington St, Dallas,TX,75001 +319200,USB-C Charging Cable,1,11.95,2019-12-24 12:21:00,447 Lakeview St, Boston,MA,02215 +319201,Bose SoundSport Headphones,1,99.99,2019-12-26 19:57:00,134 9th St, Dallas,TX,75001 +319202,Lightning Charging Cable,1,14.95,2019-12-18 17:39:00,197 Jefferson St, San Francisco,CA,94016 +319203,Lightning Charging Cable,1,14.95,2019-12-04 09:04:00,760 7th St, Austin,TX,73301 +319204,27in FHD Monitor,1,149.99,2019-12-29 20:00:00,641 Willow St, San Francisco,CA,94016 +319205,USB-C Charging Cable,1,11.95,2019-12-09 21:02:00,797 Center St, Los Angeles,CA,90001 +319206,USB-C Charging Cable,1,11.95,2019-12-21 11:52:00,235 Jefferson St, San Francisco,CA,94016 +319207,Lightning Charging Cable,1,14.95,2019-12-07 10:36:00,202 14th St, Boston,MA,02215 +319208,AA Batteries (4-pack),1,3.84,2019-12-03 13:53:00,281 Adams St, Los Angeles,CA,90001 +319209,Wired Headphones,1,11.99,2019-12-28 18:34:00,468 14th St, Portland,OR,97035 +319210,20in Monitor,1,109.99,2019-12-28 12:35:00,767 2nd St, New York City,NY,10001 +319211,Flatscreen TV,1,300.0,2019-12-17 19:51:00,784 Elm St, Boston,MA,02215 +319212,Macbook Pro Laptop,1,1700.0,2019-12-12 15:51:00,531 14th St, Los Angeles,CA,90001 +319213,Lightning Charging Cable,1,14.95,2019-12-17 17:56:00,120 13th St, Seattle,WA,98101 +319214,AAA Batteries (4-pack),1,2.99,2019-12-19 19:13:00,220 Adams St, Seattle,WA,98101 +319215,Bose SoundSport Headphones,1,99.99,2019-12-31 05:35:00,26 Church St, Seattle,WA,98101 +319216,Lightning Charging Cable,1,14.95,2019-12-26 12:39:00,738 11th St, San Francisco,CA,94016 +319217,ThinkPad Laptop,1,999.99,2019-12-30 23:42:00,180 2nd St, Atlanta,GA,30301 +319218,Apple Airpods Headphones,1,150.0,2019-12-16 19:31:00,592 Elm St, Austin,TX,73301 +319219,AAA Batteries (4-pack),1,2.99,2019-12-10 07:49:00,963 Cedar St, Boston,MA,02215 +319220,Lightning Charging Cable,1,14.95,2019-12-11 19:01:00,896 Washington St, Portland,OR,97035 +319221,Wired Headphones,1,11.99,2019-12-22 11:35:00,270 12th St, New York City,NY,10001 +319222,27in FHD Monitor,1,149.99,2019-12-08 17:01:00,133 Dogwood St, Portland,OR,97035 +319223,Lightning Charging Cable,1,14.95,2019-12-29 13:11:00,993 Highland St, Portland,OR,97035 +319224,27in FHD Monitor,1,149.99,2019-12-08 15:23:00,787 Forest St, New York City,NY,10001 +319225,AAA Batteries (4-pack),3,2.99,2019-12-16 14:42:00,367 Chestnut St, San Francisco,CA,94016 +319226,Vareebadd Phone,1,400.0,2019-12-08 18:57:00,337 Wilson St, Dallas,TX,75001 +319227,Wired Headphones,1,11.99,2019-12-16 20:40:00,372 Wilson St, Dallas,TX,75001 +319228,AA Batteries (4-pack),2,3.84,2019-12-25 17:48:00,292 Meadow St, Portland,ME,04101 +319229,USB-C Charging Cable,1,11.95,2019-12-08 12:21:00,106 South St, New York City,NY,10001 +319230,Google Phone,1,600.0,2019-12-02 16:38:00,421 10th St, San Francisco,CA,94016 +319231,Wired Headphones,1,11.99,2019-12-09 19:50:00,264 2nd St, New York City,NY,10001 +319232,AA Batteries (4-pack),1,3.84,2019-12-17 13:32:00,563 Main St, Austin,TX,73301 +319233,AAA Batteries (4-pack),1,2.99,2019-12-15 23:23:00,184 Cedar St, Los Angeles,CA,90001 +319234,AA Batteries (4-pack),1,3.84,2019-12-10 15:25:00,58 Jefferson St, Atlanta,GA,30301 +319235,Lightning Charging Cable,1,14.95,2019-12-09 12:19:00,720 14th St, San Francisco,CA,94016 +319236,iPhone,1,700.0,2019-12-10 08:51:00,597 Madison St, New York City,NY,10001 +319237,27in 4K Gaming Monitor,1,389.99,2019-12-18 14:00:00,126 Hickory St, New York City,NY,10001 +319238,Wired Headphones,1,11.99,2019-12-23 14:47:00,979 Maple St, Dallas,TX,75001 +319239,iPhone,1,700.0,2019-12-23 13:59:00,42 Hill St, Los Angeles,CA,90001 +319239,Wired Headphones,1,11.99,2019-12-23 13:59:00,42 Hill St, Los Angeles,CA,90001 +319240,27in 4K Gaming Monitor,1,389.99,2019-12-18 23:07:00,130 Lakeview St, Atlanta,GA,30301 +319241,Apple Airpods Headphones,1,150.0,2019-12-21 10:46:00,595 Walnut St, New York City,NY,10001 +319242,iPhone,1,700.0,2019-12-06 15:22:00,453 1st St, San Francisco,CA,94016 +319243,USB-C Charging Cable,1,11.95,2019-12-05 21:39:00,534 Johnson St, Dallas,TX,75001 +319244,27in 4K Gaming Monitor,1,389.99,2019-12-25 07:43:00,439 South St, New York City,NY,10001 +319245,AA Batteries (4-pack),2,3.84,2019-12-05 15:09:00,325 Sunset St, Los Angeles,CA,90001 +319246,AAA Batteries (4-pack),2,2.99,2019-12-01 22:35:00,202 Center St, Seattle,WA,98101 +319247,27in FHD Monitor,1,149.99,2019-12-02 20:37:00,992 12th St, San Francisco,CA,94016 +319248,USB-C Charging Cable,2,11.95,2019-12-08 14:32:00,71 Meadow St, Los Angeles,CA,90001 +319249,USB-C Charging Cable,1,11.95,2019-12-31 19:06:00,546 Hickory St, Dallas,TX,75001 +319250,27in FHD Monitor,1,149.99,2019-12-17 13:21:00,437 Johnson St, Los Angeles,CA,90001 +319251,AA Batteries (4-pack),1,3.84,2019-12-27 23:40:00,623 Jefferson St, Boston,MA,02215 +319252,ThinkPad Laptop,1,999.99,2019-12-02 16:28:00,303 2nd St, Los Angeles,CA,90001 +319253,27in 4K Gaming Monitor,1,389.99,2019-12-26 17:06:00,619 Lincoln St, New York City,NY,10001 +319254,27in 4K Gaming Monitor,1,389.99,2019-12-17 19:23:00,17 11th St, Seattle,WA,98101 +319255,AAA Batteries (4-pack),1,2.99,2019-12-17 15:33:00,282 Forest St, New York City,NY,10001 +319256,20in Monitor,1,109.99,2019-12-30 17:17:00,97 Willow St, Portland,ME,04101 +319257,Lightning Charging Cable,1,14.95,2019-12-24 12:12:00,100 Washington St, Portland,ME,04101 +319258,AAA Batteries (4-pack),1,2.99,2019-12-05 13:05:00,126 Highland St, San Francisco,CA,94016 +319259,AA Batteries (4-pack),1,3.84,2019-12-18 10:45:00,755 2nd St, Atlanta,GA,30301 +319260,Wired Headphones,1,11.99,2019-12-01 16:29:00,547 Lincoln St, San Francisco,CA,94016 +319261,Google Phone,1,600.0,2019-12-31 08:48:00,845 Lincoln St, Los Angeles,CA,90001 +319261,Bose SoundSport Headphones,1,99.99,2019-12-31 08:48:00,845 Lincoln St, Los Angeles,CA,90001 +319262,Wired Headphones,1,11.99,2019-12-20 07:30:00,234 Spruce St, San Francisco,CA,94016 +319263,Lightning Charging Cable,1,14.95,2019-12-15 15:43:00,916 Willow St, Dallas,TX,75001 +319264,Lightning Charging Cable,1,14.95,2019-12-07 12:38:00,273 6th St, Dallas,TX,75001 +319265,Lightning Charging Cable,1,14.95,2019-12-11 20:35:00,624 Wilson St, San Francisco,CA,94016 +319266,iPhone,1,700.0,2019-12-04 15:36:00,661 Meadow St, Seattle,WA,98101 +319266,Lightning Charging Cable,1,14.95,2019-12-04 15:36:00,661 Meadow St, Seattle,WA,98101 +319267,Wired Headphones,1,11.99,2019-12-10 13:01:00,182 Cedar St, Austin,TX,73301 +319268,Apple Airpods Headphones,1,150.0,2019-12-18 22:31:00,416 North St, Austin,TX,73301 +319269,Wired Headphones,1,11.99,2019-12-23 08:54:00,348 7th St, Dallas,TX,75001 +319270,Flatscreen TV,1,300.0,2019-12-10 17:59:00,269 Lincoln St, New York City,NY,10001 +319271,27in FHD Monitor,1,149.99,2019-12-22 14:30:00,859 Ridge St, Austin,TX,73301 +319272,Wired Headphones,1,11.99,2019-12-27 12:53:00,885 River St, New York City,NY,10001 +319273,Wired Headphones,1,11.99,2019-12-14 21:25:00,52 West St, Portland,ME,04101 +319274,ThinkPad Laptop,1,999.99,2019-12-21 12:39:00,980 Hill St, San Francisco,CA,94016 +319275,USB-C Charging Cable,1,11.95,2019-12-13 17:15:00,750 Lake St, Austin,TX,73301 +319276,USB-C Charging Cable,1,11.95,2019-12-12 07:13:00,385 West St, Atlanta,GA,30301 +319276,Bose SoundSport Headphones,1,99.99,2019-12-12 07:13:00,385 West St, Atlanta,GA,30301 +319277,USB-C Charging Cable,1,11.95,2019-12-29 16:24:00,646 Forest St, Los Angeles,CA,90001 +319277,Lightning Charging Cable,1,14.95,2019-12-29 16:24:00,646 Forest St, Los Angeles,CA,90001 +319278,Lightning Charging Cable,1,14.95,2019-12-25 19:17:00,37 Johnson St, New York City,NY,10001 +319279,Apple Airpods Headphones,1,150.0,2019-12-16 09:46:00,171 11th St, New York City,NY,10001 +319280,Bose SoundSport Headphones,1,99.99,2019-12-08 15:21:00,75 12th St, Boston,MA,02215 +319281,USB-C Charging Cable,1,11.95,2019-12-06 08:07:00,899 Madison St, Boston,MA,02215 +319282,27in 4K Gaming Monitor,1,389.99,2019-12-05 13:59:00,767 Jackson St, Portland,ME,04101 +319282,Bose SoundSport Headphones,1,99.99,2019-12-05 13:59:00,767 Jackson St, Portland,ME,04101 +319283,AAA Batteries (4-pack),2,2.99,2019-12-02 14:18:00,942 South St, Boston,MA,02215 +319284,27in FHD Monitor,1,149.99,2019-12-11 12:04:00,817 Madison St, Dallas,TX,75001 +319285,Lightning Charging Cable,1,14.95,2019-12-10 15:51:00,697 1st St, New York City,NY,10001 +319286,Bose SoundSport Headphones,1,99.99,2019-12-23 16:14:00,655 12th St, San Francisco,CA,94016 +319287,AA Batteries (4-pack),3,3.84,2019-12-29 07:30:00,608 Ridge St, Dallas,TX,75001 +319288,AA Batteries (4-pack),1,3.84,2019-12-09 12:21:00,693 Madison St, Atlanta,GA,30301 +319289,AAA Batteries (4-pack),2,2.99,2019-12-05 05:51:00,411 River St, San Francisco,CA,94016 +319290,AA Batteries (4-pack),1,3.84,2019-12-20 10:43:00,996 Elm St, Los Angeles,CA,90001 +319291,AA Batteries (4-pack),1,3.84,2019-12-05 05:49:00,280 Chestnut St, Boston,MA,02215 +319292,Lightning Charging Cable,1,14.95,2019-12-11 21:08:00,702 5th St, Dallas,TX,75001 +319293,27in FHD Monitor,1,149.99,2019-12-29 21:19:00,726 8th St, San Francisco,CA,94016 +319294,Google Phone,1,600.0,2019-12-17 17:15:00,550 Jefferson St, Portland,ME,04101 +319295,Bose SoundSport Headphones,1,99.99,2019-12-20 19:58:00,125 West St, San Francisco,CA,94016 +319296,Lightning Charging Cable,1,14.95,2019-12-05 12:49:00,144 Main St, Boston,MA,02215 +319297,34in Ultrawide Monitor,1,379.99,2019-12-27 16:06:00,366 Center St, Dallas,TX,75001 +319298,Lightning Charging Cable,1,14.95,2019-12-16 18:53:00,865 Pine St, Atlanta,GA,30301 +319299,AA Batteries (4-pack),3,3.84,2019-12-02 11:51:00,523 Cherry St, San Francisco,CA,94016 +319300,Lightning Charging Cable,1,14.95,2019-12-31 10:26:00,773 Spruce St, San Francisco,CA,94016 +319301,Vareebadd Phone,1,400.0,2019-12-12 09:48:00,129 South St, Boston,MA,02215 +319301,USB-C Charging Cable,1,11.95,2019-12-12 09:48:00,129 South St, Boston,MA,02215 +319302,AA Batteries (4-pack),1,3.84,2019-12-19 17:02:00,592 10th St, Austin,TX,73301 +319303,Bose SoundSport Headphones,1,99.99,2019-12-08 12:54:00,303 Walnut St, Seattle,WA,98101 +319304,AAA Batteries (4-pack),2,2.99,2019-12-25 17:26:00,114 Washington St, Los Angeles,CA,90001 +319305,27in FHD Monitor,1,149.99,2019-12-01 12:14:00,871 Lakeview St, Seattle,WA,98101 +319306,27in 4K Gaming Monitor,1,389.99,2019-12-04 19:51:00,777 Madison St, San Francisco,CA,94016 +319307,Vareebadd Phone,1,400.0,2019-12-18 11:32:00,658 9th St, Los Angeles,CA,90001 +319308,USB-C Charging Cable,1,11.95,2020-01-01 03:13:00,135 8th St, Boston,MA,02215 +319309,AAA Batteries (4-pack),2,2.99,2019-12-22 14:43:00,800 South St, San Francisco,CA,94016 +319310,AAA Batteries (4-pack),2,2.99,2019-12-19 23:10:00,822 Madison St, Los Angeles,CA,90001 +319311,AA Batteries (4-pack),2,3.84,2019-12-21 07:33:00,431 Meadow St, San Francisco,CA,94016 +319312,AA Batteries (4-pack),1,3.84,2019-12-27 09:54:00,908 Cedar St, San Francisco,CA,94016 +319313,Google Phone,1,600.0,2019-12-01 19:46:00,683 Spruce St, Portland,ME,04101 +319313,USB-C Charging Cable,1,11.95,2019-12-01 19:46:00,683 Spruce St, Portland,ME,04101 +319314,27in FHD Monitor,1,149.99,2019-12-01 10:08:00,201 Johnson St, Los Angeles,CA,90001 +319315,Bose SoundSport Headphones,1,99.99,2019-12-18 14:18:00,737 Adams St, New York City,NY,10001 +319316,Apple Airpods Headphones,1,150.0,2019-12-25 16:53:00,535 Madison St, Dallas,TX,75001 +319316,AAA Batteries (4-pack),1,2.99,2019-12-25 16:53:00,535 Madison St, Dallas,TX,75001 +319317,Apple Airpods Headphones,1,150.0,2019-12-12 00:13:00,685 Elm St, Los Angeles,CA,90001 +319318,AAA Batteries (4-pack),2,2.99,2019-12-01 12:24:00,268 12th St, Seattle,WA,98101 +319319,Lightning Charging Cable,1,14.95,2019-12-05 09:30:00,698 5th St, San Francisco,CA,94016 +319320,Lightning Charging Cable,1,14.95,2019-12-06 10:27:00,824 Washington St, Boston,MA,02215 +319321,AAA Batteries (4-pack),1,2.99,2019-12-20 20:02:00,866 2nd St, Dallas,TX,75001 +319322,AA Batteries (4-pack),1,3.84,2019-12-12 16:08:00,403 Wilson St, Los Angeles,CA,90001 +319323,Google Phone,1,600.0,2019-12-03 00:30:00,601 Cedar St, Los Angeles,CA,90001 +319324,USB-C Charging Cable,1,11.95,2019-12-27 01:32:00,274 10th St, Los Angeles,CA,90001 +319325,USB-C Charging Cable,1,11.95,2019-12-17 20:15:00,711 Highland St, New York City,NY,10001 +319326,USB-C Charging Cable,1,11.95,2019-12-09 10:56:00,484 Madison St, San Francisco,CA,94016 +319327,AA Batteries (4-pack),2,3.84,2019-12-23 17:25:00,253 Dogwood St, San Francisco,CA,94016 +319328,Bose SoundSport Headphones,1,99.99,2019-12-14 19:24:00,914 Sunset St, Seattle,WA,98101 +319329,AAA Batteries (4-pack),2,2.99,2019-12-05 18:43:00,496 Jackson St, San Francisco,CA,94016 +319330,AA Batteries (4-pack),1,3.84,2019-12-13 08:48:00,443 Park St, Boston,MA,02215 +319331,AA Batteries (4-pack),1,3.84,2019-12-16 21:13:00,567 7th St, San Francisco,CA,94016 +319332,Wired Headphones,1,11.99,2019-12-07 18:17:00,574 Church St, Seattle,WA,98101 +319333,Lightning Charging Cable,1,14.95,2019-12-20 16:31:00,657 Johnson St, Boston,MA,02215 +319334,USB-C Charging Cable,1,11.95,2019-12-23 15:22:00,686 13th St, Dallas,TX,75001 +319335,Lightning Charging Cable,1,14.95,2019-12-21 17:29:00,209 Maple St, Austin,TX,73301 +319336,Apple Airpods Headphones,1,150.0,2019-12-26 17:53:00,95 Cherry St, Austin,TX,73301 +319337,Vareebadd Phone,1,400.0,2019-12-29 15:12:00,835 Main St, San Francisco,CA,94016 +319337,USB-C Charging Cable,1,11.95,2019-12-29 15:12:00,835 Main St, San Francisco,CA,94016 +319338,Wired Headphones,1,11.99,2019-12-05 16:57:00,51 Lincoln St, Los Angeles,CA,90001 +319339,Lightning Charging Cable,1,14.95,2019-12-05 14:09:00,983 Willow St, Los Angeles,CA,90001 +319340,Wired Headphones,1,11.99,2019-12-24 09:15:00,767 7th St, Atlanta,GA,30301 +319341,USB-C Charging Cable,1,11.95,2019-12-07 10:31:00,178 Meadow St, New York City,NY,10001 +319342,20in Monitor,1,109.99,2019-12-24 16:36:00,419 River St, Dallas,TX,75001 +319343,USB-C Charging Cable,1,11.95,2019-12-11 22:57:00,837 14th St, San Francisco,CA,94016 +319344,AA Batteries (4-pack),2,3.84,2019-12-09 07:25:00,664 Hill St, San Francisco,CA,94016 +319345,34in Ultrawide Monitor,1,379.99,2019-12-08 18:35:00,265 Dogwood St, San Francisco,CA,94016 +319346,Flatscreen TV,1,300.0,2019-12-20 19:50:00,264 Hickory St, San Francisco,CA,94016 +319347,34in Ultrawide Monitor,1,379.99,2019-12-28 20:02:00,81 Lake St, Atlanta,GA,30301 +319348,Bose SoundSport Headphones,1,99.99,2019-12-08 15:28:00,601 Dogwood St, Austin,TX,73301 +319349,AA Batteries (4-pack),2,3.84,2019-12-18 18:13:00,708 Willow St, San Francisco,CA,94016 +319350,USB-C Charging Cable,1,11.95,2019-12-14 12:05:00,805 West St, New York City,NY,10001 +319351,Lightning Charging Cable,1,14.95,2019-12-15 21:51:00,498 Highland St, New York City,NY,10001 +319352,Apple Airpods Headphones,1,150.0,2019-12-23 12:38:00,778 Jackson St, Los Angeles,CA,90001 +319353,USB-C Charging Cable,1,11.95,2019-12-17 10:23:00,177 9th St, San Francisco,CA,94016 +319354,Apple Airpods Headphones,1,150.0,2019-12-29 13:26:00,249 1st St, Los Angeles,CA,90001 +319355,USB-C Charging Cable,1,11.95,2019-12-20 07:40:00,249 Church St, Boston,MA,02215 +319356,Bose SoundSport Headphones,1,99.99,2019-12-24 14:08:00,182 Spruce St, Austin,TX,73301 +319357,AAA Batteries (4-pack),1,2.99,2019-12-30 19:54:00,62 8th St, Boston,MA,02215 +319358,USB-C Charging Cable,1,11.95,2019-12-26 22:20:00,540 Sunset St, San Francisco,CA,94016 +319359,Google Phone,1,600.0,2019-12-08 11:48:00,988 14th St, Los Angeles,CA,90001 +319359,Wired Headphones,1,11.99,2019-12-08 11:48:00,988 14th St, Los Angeles,CA,90001 +319360,Lightning Charging Cable,1,14.95,2019-12-07 22:02:00,22 Cherry St, Atlanta,GA,30301 +319361,Apple Airpods Headphones,1,150.0,2019-12-25 18:45:00,95 North St, New York City,NY,10001 +319362,Wired Headphones,1,11.99,2019-12-08 10:40:00,517 Jefferson St, Boston,MA,02215 +319363,Lightning Charging Cable,1,14.95,2019-12-23 18:36:00,158 Cherry St, Seattle,WA,98101 +319364,LG Washing Machine,1,600.0,2019-12-03 19:35:00,695 Pine St, Seattle,WA,98101 +319365,USB-C Charging Cable,1,11.95,2019-12-15 01:41:00,783 Washington St, San Francisco,CA,94016 +319366,20in Monitor,2,109.99,2020-01-01 00:45:00,746 South St, San Francisco,CA,94016 +319367,20in Monitor,1,109.99,2019-12-09 21:38:00,995 North St, Austin,TX,73301 +319368,AA Batteries (4-pack),1,3.84,2019-12-22 17:14:00,699 Highland St, San Francisco,CA,94016 +319369,Wired Headphones,1,11.99,2019-12-07 17:58:00,997 Wilson St, Boston,MA,02215 +319370,ThinkPad Laptop,1,999.99,2019-12-24 12:16:00,763 11th St, New York City,NY,10001 +319371,Apple Airpods Headphones,1,150.0,2019-12-28 20:16:00,858 North St, Portland,OR,97035 +319372,Wired Headphones,1,11.99,2019-12-15 19:50:00,346 Adams St, Seattle,WA,98101 +319373,Bose SoundSport Headphones,1,99.99,2019-12-11 13:09:00,492 Johnson St, Atlanta,GA,30301 +319374,27in FHD Monitor,1,149.99,2019-12-12 12:29:00,775 7th St, Seattle,WA,98101 +319375,Lightning Charging Cable,1,14.95,2019-12-08 19:35:00,184 Lake St, Portland,OR,97035 +319376,AAA Batteries (4-pack),4,2.99,2019-12-06 21:39:00,890 Church St, Dallas,TX,75001 +319377,AAA Batteries (4-pack),1,2.99,2019-12-05 21:46:00,495 Center St, Los Angeles,CA,90001 +319378,AA Batteries (4-pack),1,3.84,2019-12-02 20:45:00,132 Park St, Boston,MA,02215 +319379,Apple Airpods Headphones,1,150.0,2019-12-07 19:21:00,459 13th St, New York City,NY,10001 +319380,Apple Airpods Headphones,1,150.0,2019-12-30 11:28:00,364 13th St, Los Angeles,CA,90001 +319381,Lightning Charging Cable,1,14.95,2019-12-26 17:49:00,18 Lincoln St, Seattle,WA,98101 +319382,AAA Batteries (4-pack),4,2.99,2019-12-30 06:51:00,406 Walnut St, Los Angeles,CA,90001 +319383,Lightning Charging Cable,1,14.95,2019-12-18 10:04:00,527 10th St, San Francisco,CA,94016 +319384,20in Monitor,1,109.99,2019-12-26 15:06:00,349 12th St, San Francisco,CA,94016 +319385,27in FHD Monitor,1,149.99,2019-12-02 23:06:00,283 Center St, Los Angeles,CA,90001 +319386,34in Ultrawide Monitor,1,379.99,2019-12-28 09:48:00,110 Washington St, Seattle,WA,98101 +319387,27in FHD Monitor,1,149.99,2019-12-13 09:26:00,484 6th St, Los Angeles,CA,90001 +319388,34in Ultrawide Monitor,1,379.99,2019-12-13 17:55:00,329 Chestnut St, Los Angeles,CA,90001 +319389,USB-C Charging Cable,1,11.95,2019-12-22 09:52:00,280 Maple St, San Francisco,CA,94016 +319390,USB-C Charging Cable,1,11.95,2019-12-19 11:30:00,721 Hill St, San Francisco,CA,94016 +319391,Google Phone,1,600.0,2019-12-08 12:44:00,931 Jackson St, Boston,MA,02215 +319392,Apple Airpods Headphones,1,150.0,2019-12-24 21:13:00,826 Sunset St, Portland,OR,97035 +319393,20in Monitor,1,109.99,2019-12-02 19:03:00,832 Main St, Los Angeles,CA,90001 +319394,Wired Headphones,1,11.99,2019-12-27 18:06:00,335 Chestnut St, San Francisco,CA,94016 +319395,Flatscreen TV,1,300.0,2019-12-14 10:36:00,181 Pine St, Boston,MA,02215 +319396,Wired Headphones,1,11.99,2019-12-19 07:48:00,379 Walnut St, Atlanta,GA,30301 +319397,Lightning Charging Cable,1,14.95,2019-12-15 14:50:00,200 Ridge St, San Francisco,CA,94016 +319398,AA Batteries (4-pack),1,3.84,2019-12-22 08:26:00,216 1st St, Dallas,TX,75001 +319399,USB-C Charging Cable,1,11.95,2019-12-24 19:23:00,648 Jefferson St, Boston,MA,02215 +319400,Lightning Charging Cable,1,14.95,2019-12-18 23:08:00,518 Maple St, San Francisco,CA,94016 +319401,AAA Batteries (4-pack),3,2.99,2019-12-19 00:18:00,540 6th St, San Francisco,CA,94016 +319402,AAA Batteries (4-pack),2,2.99,2019-12-05 14:13:00,467 Elm St, Los Angeles,CA,90001 +319403,Flatscreen TV,1,300.0,2019-12-09 17:04:00,831 11th St, San Francisco,CA,94016 +319404,AAA Batteries (4-pack),3,2.99,2019-12-02 20:03:00,821 Meadow St, Los Angeles,CA,90001 +319405,USB-C Charging Cable,1,11.95,2019-12-25 13:48:00,78 6th St, Los Angeles,CA,90001 +319406,Google Phone,1,600.0,2019-12-17 05:49:00,380 Lake St, New York City,NY,10001 +319407,USB-C Charging Cable,1,11.95,2019-12-06 14:22:00,260 Elm St, Dallas,TX,75001 +319408,Bose SoundSport Headphones,1,99.99,2019-12-05 15:18:00,780 Jackson St, Los Angeles,CA,90001 +319409,Lightning Charging Cable,1,14.95,2019-12-28 17:39:00,611 4th St, Los Angeles,CA,90001 +319410,AA Batteries (4-pack),1,3.84,2019-12-13 09:57:00,956 14th St, Los Angeles,CA,90001 +319411,Wired Headphones,1,11.99,2019-12-25 18:05:00,732 Maple St, San Francisco,CA,94016 +319412,Bose SoundSport Headphones,1,99.99,2019-12-06 09:18:00,827 1st St, San Francisco,CA,94016 +319413,AA Batteries (4-pack),1,3.84,2019-12-18 15:36:00,976 Forest St, Dallas,TX,75001 +319414,20in Monitor,1,109.99,2019-12-12 20:17:00,285 Lake St, Los Angeles,CA,90001 +319415,Wired Headphones,1,11.99,2019-12-06 19:05:00,124 Adams St, San Francisco,CA,94016 +319416,Lightning Charging Cable,1,14.95,2019-12-01 16:54:00,61 Hill St, New York City,NY,10001 +319417,iPhone,1,700.0,2019-12-14 09:40:00,708 Hickory St, New York City,NY,10001 +319418,Apple Airpods Headphones,1,150.0,2019-12-21 15:58:00,341 2nd St, Portland,OR,97035 +319419,Wired Headphones,1,11.99,2019-12-08 16:35:00,399 Hickory St, Dallas,TX,75001 +319420,Apple Airpods Headphones,1,150.0,2019-12-24 09:26:00,455 14th St, Portland,OR,97035 +319421,Lightning Charging Cable,1,14.95,2019-12-06 16:34:00,61 5th St, Los Angeles,CA,90001 +319422,Bose SoundSport Headphones,1,99.99,2019-12-04 17:33:00,900 North St, San Francisco,CA,94016 +319423,Flatscreen TV,1,300.0,2019-12-30 17:55:00,971 Wilson St, Seattle,WA,98101 +319424,AA Batteries (4-pack),1,3.84,2019-12-24 18:05:00,316 Meadow St, Austin,TX,73301 +319425,AAA Batteries (4-pack),1,2.99,2019-12-08 21:46:00,710 Dogwood St, San Francisco,CA,94016 +319426,Wired Headphones,2,11.99,2019-12-05 15:02:00,444 Center St, Boston,MA,02215 +319427,Google Phone,1,600.0,2019-12-08 10:48:00,57 Sunset St, Dallas,TX,75001 +319428,20in Monitor,1,109.99,2019-12-05 02:03:00,373 Hill St, Los Angeles,CA,90001 +319429,20in Monitor,1,109.99,2019-12-29 13:42:00,271 Forest St, Seattle,WA,98101 +319430,Wired Headphones,1,11.99,2019-12-01 17:45:00,37 Forest St, Atlanta,GA,30301 +319431,Lightning Charging Cable,1,14.95,2019-12-16 10:37:00,725 Park St, New York City,NY,10001 +319432,34in Ultrawide Monitor,1,379.99,2019-12-12 22:17:00,493 Lakeview St, Seattle,WA,98101 +319433,27in 4K Gaming Monitor,1,389.99,2019-12-26 22:38:00,946 Maple St, Portland,OR,97035 +319434,Apple Airpods Headphones,1,150.0,2019-12-02 20:08:00,702 Cedar St, San Francisco,CA,94016 +319435,Bose SoundSport Headphones,1,99.99,2019-12-11 15:48:00,646 13th St, Seattle,WA,98101 +319436,Bose SoundSport Headphones,1,99.99,2019-12-25 20:08:00,522 14th St, San Francisco,CA,94016 +319437,Lightning Charging Cable,1,14.95,2019-12-28 17:33:00,297 Main St, Los Angeles,CA,90001 +319438,27in 4K Gaming Monitor,1,389.99,2019-12-20 11:46:00,139 Lakeview St, Austin,TX,73301 +319439,Lightning Charging Cable,1,14.95,2019-12-07 15:17:00,217 11th St, San Francisco,CA,94016 +319440,20in Monitor,1,109.99,2019-12-20 10:53:00,417 Lakeview St, San Francisco,CA,94016 +319441,27in FHD Monitor,1,149.99,2019-12-17 13:33:00,187 11th St, Atlanta,GA,30301 +319442,USB-C Charging Cable,1,11.95,2019-12-24 10:20:00,510 River St, New York City,NY,10001 +319443,AAA Batteries (4-pack),1,2.99,2019-12-07 20:45:00,557 Lincoln St, Dallas,TX,75001 +319444,USB-C Charging Cable,1,11.95,2019-12-31 21:27:00,603 Meadow St, New York City,NY,10001 +319445,Vareebadd Phone,1,400.0,2019-12-08 21:03:00,183 North St, Atlanta,GA,30301 +319446,iPhone,1,700.0,2019-12-06 17:44:00,258 Elm St, Seattle,WA,98101 +319447,Google Phone,1,600.0,2019-12-29 20:18:00,114 Lincoln St, San Francisco,CA,94016 +319447,Wired Headphones,1,11.99,2019-12-29 20:18:00,114 Lincoln St, San Francisco,CA,94016 +319448,Lightning Charging Cable,1,14.95,2019-12-28 20:19:00,478 Madison St, Portland,OR,97035 +319449,Wired Headphones,1,11.99,2019-12-03 08:53:00,728 12th St, Portland,ME,04101 +319450,Wired Headphones,1,11.99,2019-12-12 17:56:00,319 Hill St, Seattle,WA,98101 +319451,USB-C Charging Cable,1,11.95,2019-12-08 07:48:00,679 Meadow St, Atlanta,GA,30301 +319452,AA Batteries (4-pack),1,3.84,2019-12-17 18:55:00,441 Pine St, Seattle,WA,98101 +319453,Lightning Charging Cable,1,14.95,2019-12-27 12:53:00,561 Johnson St, San Francisco,CA,94016 +319454,Bose SoundSport Headphones,1,99.99,2019-12-15 17:32:00,248 Meadow St, Dallas,TX,75001 +319455,USB-C Charging Cable,1,11.95,2019-12-28 21:39:00,911 Church St, Atlanta,GA,30301 +319456,Lightning Charging Cable,1,14.95,2019-12-03 20:14:00,58 2nd St, Austin,TX,73301 +319457,AAA Batteries (4-pack),1,2.99,2019-12-10 10:25:00,401 Jefferson St, San Francisco,CA,94016 +319458,Lightning Charging Cable,1,14.95,2019-12-09 21:54:00,993 Johnson St, San Francisco,CA,94016 +319459,AA Batteries (4-pack),1,3.84,2019-12-06 08:44:00,39 Dogwood St, San Francisco,CA,94016 +319460,Bose SoundSport Headphones,1,99.99,2019-12-19 19:31:00,50 Lake St, Boston,MA,02215 +319461,Lightning Charging Cable,1,14.95,2019-12-28 09:21:00,441 Sunset St, New York City,NY,10001 +319462,AAA Batteries (4-pack),1,2.99,2019-12-20 20:45:00,716 Lake St, New York City,NY,10001 +319463,ThinkPad Laptop,1,999.99,2019-12-30 20:38:00,513 Spruce St, New York City,NY,10001 +319464,AA Batteries (4-pack),1,3.84,2019-12-27 15:22:00,563 Wilson St, Atlanta,GA,30301 +319465,USB-C Charging Cable,1,11.95,2019-12-03 15:26:00,833 Adams St, Los Angeles,CA,90001 +319466,Bose SoundSport Headphones,1,99.99,2019-12-12 07:32:00,833 Johnson St, New York City,NY,10001 +319467,20in Monitor,1,109.99,2019-12-16 13:23:00,904 Ridge St, New York City,NY,10001 +319468,Wired Headphones,1,11.99,2019-12-19 10:35:00,245 Wilson St, Los Angeles,CA,90001 +319469,USB-C Charging Cable,1,11.95,2019-12-09 18:31:00,113 Elm St, San Francisco,CA,94016 +319470,27in 4K Gaming Monitor,1,389.99,2019-12-10 11:23:00,698 Madison St, New York City,NY,10001 +319471,AAA Batteries (4-pack),1,2.99,2019-12-08 21:20:00,237 Main St, Atlanta,GA,30301 +319472,iPhone,1,700.0,2019-12-29 20:24:00,779 10th St, Atlanta,GA,30301 +319473,Lightning Charging Cable,1,14.95,2019-12-20 10:03:00,556 4th St, Boston,MA,02215 +319474,Lightning Charging Cable,1,14.95,2019-12-05 12:30:00,403 Hill St, Seattle,WA,98101 +319475,Vareebadd Phone,1,400.0,2019-12-16 23:01:00,910 Spruce St, Seattle,WA,98101 +319476,Flatscreen TV,1,300.0,2019-12-08 15:34:00,683 Johnson St, New York City,NY,10001 +319477,USB-C Charging Cable,1,11.95,2019-12-14 19:38:00,266 Madison St, New York City,NY,10001 +319478,Apple Airpods Headphones,1,150.0,2019-12-29 00:33:00,376 Dogwood St, Seattle,WA,98101 +319479,AAA Batteries (4-pack),1,2.99,2019-12-09 12:48:00,130 Lakeview St, Dallas,TX,75001 +319480,20in Monitor,1,109.99,2019-12-13 19:05:00,965 7th St, Austin,TX,73301 +319481,Bose SoundSport Headphones,1,99.99,2019-12-28 22:25:00,424 Lakeview St, Austin,TX,73301 +319482,Flatscreen TV,1,300.0,2019-12-27 13:28:00,838 Highland St, Dallas,TX,75001 +319483,34in Ultrawide Monitor,1,379.99,2019-12-12 14:51:00,793 Wilson St, Los Angeles,CA,90001 +319484,AA Batteries (4-pack),1,3.84,2019-12-27 08:54:00,861 Ridge St, Los Angeles,CA,90001 +319485,iPhone,1,700.0,2019-12-10 15:08:00,794 11th St, Dallas,TX,75001 +319486,AA Batteries (4-pack),1,3.84,2019-12-11 03:15:00,606 Johnson St, Los Angeles,CA,90001 +319487,AA Batteries (4-pack),2,3.84,2019-12-16 23:12:00,682 Meadow St, Atlanta,GA,30301 +319488,34in Ultrawide Monitor,1,379.99,2019-12-12 19:18:00,798 Forest St, Austin,TX,73301 +319489,USB-C Charging Cable,1,11.95,2019-12-25 22:11:00,660 Hickory St, Portland,OR,97035 +319490,AA Batteries (4-pack),1,3.84,2019-12-15 12:08:00,41 Jackson St, Portland,OR,97035 +319491,Wired Headphones,1,11.99,2019-12-29 22:43:00,306 Ridge St, New York City,NY,10001 +319492,Bose SoundSport Headphones,1,99.99,2019-12-26 20:07:00,217 7th St, San Francisco,CA,94016 +319493,27in 4K Gaming Monitor,1,389.99,2019-12-20 21:07:00,300 Lincoln St, Los Angeles,CA,90001 +319494,Apple Airpods Headphones,1,150.0,2019-12-12 19:01:00,230 Chestnut St, Dallas,TX,75001 +319495,Wired Headphones,1,11.99,2019-12-01 11:10:00,995 13th St, Dallas,TX,75001 +319496,Wired Headphones,1,11.99,2019-12-11 11:57:00,133 Hickory St, San Francisco,CA,94016 +319497,Bose SoundSport Headphones,1,99.99,2019-12-28 22:10:00,9 Hill St, Los Angeles,CA,90001 +319498,Lightning Charging Cable,2,14.95,2019-12-27 08:19:00,388 8th St, San Francisco,CA,94016 +319499,AAA Batteries (4-pack),1,2.99,2019-12-07 17:28:00,860 Cherry St, New York City,NY,10001 +319500,USB-C Charging Cable,1,11.95,2019-12-09 09:30:00,841 Madison St, Los Angeles,CA,90001 +319501,USB-C Charging Cable,2,11.95,2019-12-24 08:49:00,79 South St, Los Angeles,CA,90001 +319502,Wired Headphones,1,11.99,2019-12-04 16:02:00,866 5th St, Dallas,TX,75001 +319503,ThinkPad Laptop,1,999.99,2019-12-28 00:49:00,148 Pine St, San Francisco,CA,94016 +319504,AAA Batteries (4-pack),2,2.99,2019-12-13 06:40:00,81 Meadow St, San Francisco,CA,94016 +319505,AA Batteries (4-pack),3,3.84,2019-12-29 20:32:00,649 Elm St, Boston,MA,02215 +319506,USB-C Charging Cable,1,11.95,2019-12-14 13:30:00,21 Walnut St, San Francisco,CA,94016 +319507,USB-C Charging Cable,1,11.95,2019-12-22 13:35:00,613 1st St, New York City,NY,10001 +319508,Lightning Charging Cable,1,14.95,2019-12-15 09:29:00,75 Lake St, Austin,TX,73301 +319509,AAA Batteries (4-pack),1,2.99,2019-12-10 20:43:00,141 Ridge St, New York City,NY,10001 +319510,Wired Headphones,1,11.99,2019-12-04 14:09:00,123 Adams St, San Francisco,CA,94016 +319511,Lightning Charging Cable,1,14.95,2019-12-01 19:11:00,291 11th St, Los Angeles,CA,90001 +319512,AAA Batteries (4-pack),1,2.99,2019-12-11 09:36:00,370 Main St, Boston,MA,02215 +319513,20in Monitor,1,109.99,2019-12-29 21:16:00,305 Ridge St, Atlanta,GA,30301 +319514,AAA Batteries (4-pack),1,2.99,2019-12-22 16:22:00,588 Spruce St, Atlanta,GA,30301 +319514,Wired Headphones,1,11.99,2019-12-22 16:22:00,588 Spruce St, Atlanta,GA,30301 +319515,Bose SoundSport Headphones,1,99.99,2019-12-16 12:08:00,621 Lincoln St, Austin,TX,73301 +319516,USB-C Charging Cable,1,11.95,2019-12-24 20:35:00,621 Elm St, Atlanta,GA,30301 +319517,AA Batteries (4-pack),5,3.84,2019-12-28 13:05:00,361 Meadow St, Atlanta,GA,30301 +319518,USB-C Charging Cable,1,11.95,2019-12-15 09:27:00,468 Johnson St, Boston,MA,02215 +319519,27in FHD Monitor,1,149.99,2019-12-08 00:13:00,657 8th St, San Francisco,CA,94016 +319520,Apple Airpods Headphones,1,150.0,2019-12-09 16:47:00,744 South St, Boston,MA,02215 +319521,Wired Headphones,1,11.99,2019-12-17 10:24:00,753 Cedar St, San Francisco,CA,94016 +319522,Apple Airpods Headphones,1,150.0,2019-12-01 06:41:00,873 Spruce St, Portland,OR,97035 +319523,Bose SoundSport Headphones,1,99.99,2019-12-27 19:37:00,616 2nd St, Atlanta,GA,30301 +319524,Lightning Charging Cable,1,14.95,2019-12-10 10:23:00,665 Jefferson St, Atlanta,GA,30301 +319525,Lightning Charging Cable,1,14.95,2019-12-24 17:16:00,567 Main St, New York City,NY,10001 +319526,AA Batteries (4-pack),1,3.84,2019-12-02 08:36:00,807 Dogwood St, Seattle,WA,98101 +319527,Wired Headphones,2,11.99,2019-12-22 00:10:00,894 Park St, New York City,NY,10001 +319528,AAA Batteries (4-pack),4,2.99,2019-12-27 08:44:00,78 Dogwood St, Atlanta,GA,30301 +319529,iPhone,1,700.0,2019-12-17 23:35:00,553 Jefferson St, Seattle,WA,98101 +319530,27in FHD Monitor,1,149.99,2019-12-15 13:14:00,301 Willow St, New York City,NY,10001 +319531,Macbook Pro Laptop,1,1700.0,2019-12-30 21:15:00,721 Ridge St, San Francisco,CA,94016 +319532,AAA Batteries (4-pack),1,2.99,2019-12-05 20:16:00,604 11th St, Atlanta,GA,30301 +319533,27in FHD Monitor,1,149.99,2019-12-20 22:46:00,851 5th St, Seattle,WA,98101 +319533,AAA Batteries (4-pack),3,2.99,2019-12-20 22:46:00,851 5th St, Seattle,WA,98101 +319534,Lightning Charging Cable,1,14.95,2019-12-25 16:59:00,775 1st St, Portland,OR,97035 +319535,Lightning Charging Cable,1,14.95,2019-12-12 21:27:00,294 Spruce St, San Francisco,CA,94016 +319536,Macbook Pro Laptop,1,1700.0,2019-12-16 09:59:00,346 Elm St, Seattle,WA,98101 +319536,Wired Headphones,1,11.99,2019-12-16 09:59:00,346 Elm St, Seattle,WA,98101 +319537,Bose SoundSport Headphones,1,99.99,2019-12-27 14:10:00,674 12th St, San Francisco,CA,94016 +319538,Lightning Charging Cable,1,14.95,2019-12-17 14:42:00,757 Lakeview St, New York City,NY,10001 +319539,27in FHD Monitor,1,149.99,2019-12-30 18:51:00,220 Hill St, New York City,NY,10001 +319540,USB-C Charging Cable,1,11.95,2019-12-11 17:49:00,535 Park St, Boston,MA,02215 +319541,AA Batteries (4-pack),1,3.84,2019-12-22 18:08:00,3 Adams St, San Francisco,CA,94016 +319542,AA Batteries (4-pack),3,3.84,2019-12-14 20:49:00,217 Spruce St, Austin,TX,73301 +319543,AAA Batteries (4-pack),2,2.99,2019-12-06 12:31:00,871 5th St, Los Angeles,CA,90001 +319544,AAA Batteries (4-pack),1,2.99,2019-12-05 11:05:00,851 Main St, Austin,TX,73301 +319545,Lightning Charging Cable,1,14.95,2019-12-25 18:23:00,133 Spruce St, Seattle,WA,98101 +319546,Wired Headphones,1,11.99,2019-12-24 08:26:00,887 7th St, Los Angeles,CA,90001 +319547,AA Batteries (4-pack),2,3.84,2019-12-24 11:46:00,13 13th St, Los Angeles,CA,90001 +319548,20in Monitor,1,109.99,2019-12-21 22:21:00,476 Park St, San Francisco,CA,94016 +319549,Wired Headphones,1,11.99,2019-12-12 01:37:00,520 Lake St, Austin,TX,73301 +319550,Lightning Charging Cable,1,14.95,2019-12-23 15:37:00,387 11th St, Atlanta,GA,30301 +319551,27in FHD Monitor,1,149.99,2019-12-01 08:07:00,5 Lake St, Austin,TX,73301 +319552,USB-C Charging Cable,1,11.95,2019-12-13 10:24:00,626 Maple St, Boston,MA,02215 +319553,USB-C Charging Cable,1,11.95,2019-12-08 01:12:00,478 Lake St, Seattle,WA,98101 +319554,27in 4K Gaming Monitor,1,389.99,2019-12-06 10:55:00,146 Jefferson St, New York City,NY,10001 +319555,Wired Headphones,1,11.99,2019-12-13 21:34:00,10 Highland St, San Francisco,CA,94016 +319556,Google Phone,1,600.0,2019-12-22 08:23:00,848 7th St, Austin,TX,73301 +319556,Wired Headphones,1,11.99,2019-12-22 08:23:00,848 7th St, Austin,TX,73301 +319557,27in FHD Monitor,1,149.99,2019-12-11 21:17:00,827 River St, New York City,NY,10001 +319558,Wired Headphones,1,11.99,2019-12-20 14:42:00,207 Adams St, Atlanta,GA,30301 +319559,AA Batteries (4-pack),1,3.84,2019-12-11 13:21:00,804 1st St, Austin,TX,73301 +319560,AA Batteries (4-pack),1,3.84,2019-12-18 11:02:00,267 11th St, Seattle,WA,98101 +319561,Wired Headphones,1,11.99,2019-12-01 11:32:00,189 Pine St, New York City,NY,10001 +319562,Apple Airpods Headphones,1,150.0,2019-12-11 11:54:00,684 Willow St, San Francisco,CA,94016 +319563,27in FHD Monitor,1,149.99,2019-12-27 19:46:00,620 Wilson St, Dallas,TX,75001 +319564,Bose SoundSport Headphones,1,99.99,2019-12-23 14:32:00,955 13th St, San Francisco,CA,94016 +319565,AA Batteries (4-pack),1,3.84,2019-12-15 09:56:00,81 Sunset St, Los Angeles,CA,90001 +319566,iPhone,1,700.0,2019-12-28 00:41:00,260 West St, Dallas,TX,75001 +319567,Bose SoundSport Headphones,1,99.99,2019-12-10 09:39:00,726 Main St, San Francisco,CA,94016 +319568,20in Monitor,1,109.99,2019-12-29 18:25:00,128 Pine St, Atlanta,GA,30301 +319569,Bose SoundSport Headphones,1,99.99,2019-12-15 12:13:00,521 Ridge St, New York City,NY,10001 +319570,Macbook Pro Laptop,1,1700.0,2019-12-09 17:40:00,57 13th St, Boston,MA,02215 +319571,Lightning Charging Cable,1,14.95,2019-12-12 23:48:00,171 Main St, San Francisco,CA,94016 +319572,Bose SoundSport Headphones,1,99.99,2019-12-18 10:20:00,10 Jefferson St, Los Angeles,CA,90001 +319573,Wired Headphones,1,11.99,2019-12-13 09:40:00,212 Walnut St, San Francisco,CA,94016 +319574,USB-C Charging Cable,1,11.95,2019-12-26 00:18:00,259 7th St, Los Angeles,CA,90001 +319575,AA Batteries (4-pack),1,3.84,2019-12-16 18:44:00,412 River St, New York City,NY,10001 +319576,Apple Airpods Headphones,1,150.0,2019-12-04 20:39:00,733 Walnut St, Los Angeles,CA,90001 +319577,AA Batteries (4-pack),1,3.84,2019-12-02 21:55:00,656 Lake St, San Francisco,CA,94016 +319578,34in Ultrawide Monitor,1,379.99,2019-12-13 11:39:00,458 Center St, Austin,TX,73301 +319579,Lightning Charging Cable,1,14.95,2019-12-19 19:28:00,285 4th St, Los Angeles,CA,90001 +319580,Lightning Charging Cable,1,14.95,2019-12-03 18:58:00,133 Johnson St, Boston,MA,02215 +319581,27in 4K Gaming Monitor,1,389.99,2019-12-04 19:36:00,17 Hill St, Boston,MA,02215 +319582,Bose SoundSport Headphones,1,99.99,2019-12-06 21:01:00,509 Dogwood St, San Francisco,CA,94016 +319583,AAA Batteries (4-pack),1,2.99,2019-12-30 14:46:00,261 4th St, Boston,MA,02215 +319584,iPhone,1,700.0,2019-12-11 00:30:00,537 Sunset St, Portland,OR,97035 +319584,Wired Headphones,1,11.99,2019-12-11 00:30:00,537 Sunset St, Portland,OR,97035 +319585,27in 4K Gaming Monitor,1,389.99,2019-12-27 14:01:00,987 11th St, Atlanta,GA,30301 +319586,AAA Batteries (4-pack),2,2.99,2019-12-23 01:11:00,920 Center St, Austin,TX,73301 +319587,27in 4K Gaming Monitor,1,389.99,2019-12-03 18:24:00,622 Center St, San Francisco,CA,94016 +319588,LG Dryer,1,600.0,2019-12-21 12:49:00,205 Hickory St, New York City,NY,10001 +319589,USB-C Charging Cable,1,11.95,2019-12-01 12:09:00,387 5th St, New York City,NY,10001 +319590,AA Batteries (4-pack),1,3.84,2019-12-14 15:37:00,607 Lake St, San Francisco,CA,94016 +319591,27in 4K Gaming Monitor,1,389.99,2019-12-28 00:09:00,900 6th St, Los Angeles,CA,90001 +319592,AAA Batteries (4-pack),1,2.99,2019-12-03 14:29:00,803 North St, San Francisco,CA,94016 +319593,Lightning Charging Cable,1,14.95,2019-12-06 12:35:00,451 2nd St, Dallas,TX,75001 +319594,AA Batteries (4-pack),1,3.84,2019-12-09 19:38:00,48 Main St, Los Angeles,CA,90001 +319595,ThinkPad Laptop,1,999.99,2019-12-31 22:38:00,788 6th St, San Francisco,CA,94016 +319596,iPhone,1,700.0,2019-12-01 08:44:00,436 14th St, New York City,NY,10001 +319596,Lightning Charging Cable,1,14.95,2019-12-01 08:44:00,436 14th St, New York City,NY,10001 +319597,USB-C Charging Cable,1,11.95,2019-12-30 20:01:00,380 Church St, Portland,OR,97035 +319598,Bose SoundSport Headphones,1,99.99,2019-12-07 12:51:00,337 Center St, Los Angeles,CA,90001 +319599,Lightning Charging Cable,2,14.95,2019-12-16 13:20:00,448 Lincoln St, Austin,TX,73301 +319600,Lightning Charging Cable,1,14.95,2019-12-05 14:19:00,846 13th St, Boston,MA,02215 +319601,Wired Headphones,1,11.99,2019-12-12 19:11:00,127 Pine St, Seattle,WA,98101 +319602,AAA Batteries (4-pack),3,2.99,2019-12-05 23:12:00,580 11th St, San Francisco,CA,94016 +319603,iPhone,1,700.0,2019-12-26 19:06:00,102 9th St, Boston,MA,02215 +319604,ThinkPad Laptop,1,999.99,2019-12-13 01:30:00,474 12th St, San Francisco,CA,94016 +319605,Lightning Charging Cable,1,14.95,2019-12-30 01:17:00,355 Jackson St, Austin,TX,73301 +319606,Wired Headphones,1,11.99,2019-12-24 15:03:00,806 11th St, Seattle,WA,98101 +319607,Macbook Pro Laptop,1,1700.0,2019-12-25 20:07:00,620 Church St, Atlanta,GA,30301 +319608,Bose SoundSport Headphones,2,99.99,2019-12-13 11:32:00,28 Pine St, San Francisco,CA,94016 +319609,AAA Batteries (4-pack),2,2.99,2019-12-31 22:56:00,513 Pine St, New York City,NY,10001 +319610,AA Batteries (4-pack),1,3.84,2019-12-30 18:10:00,525 8th St, Portland,OR,97035 +319611,AAA Batteries (4-pack),1,2.99,2019-12-17 10:37:00,99 10th St, Seattle,WA,98101 +319612,AA Batteries (4-pack),1,3.84,2019-12-15 13:13:00,841 Lake St, Los Angeles,CA,90001 +319613,AA Batteries (4-pack),2,3.84,2019-12-22 11:59:00,527 Pine St, San Francisco,CA,94016 +319614,Flatscreen TV,1,300.0,2019-12-14 20:57:00,177 River St, Dallas,TX,75001 +319615,Wired Headphones,1,11.99,2019-12-21 07:15:00,348 Cedar St, San Francisco,CA,94016 +319616,Apple Airpods Headphones,1,150.0,2019-12-22 15:44:00,723 8th St, Seattle,WA,98101 +319617,AAA Batteries (4-pack),2,2.99,2019-12-16 05:15:00,89 Johnson St, New York City,NY,10001 +319618,Wired Headphones,1,11.99,2019-12-16 15:18:00,773 5th St, Boston,MA,02215 +319619,AAA Batteries (4-pack),1,2.99,2019-12-19 21:09:00,908 2nd St, Los Angeles,CA,90001 +319620,AA Batteries (4-pack),1,3.84,2019-12-03 21:56:00,941 Jefferson St, San Francisco,CA,94016 +319621,Bose SoundSport Headphones,1,99.99,2019-12-08 12:54:00,852 7th St, Atlanta,GA,30301 +319622,Macbook Pro Laptop,1,1700.0,2019-12-15 07:11:00,180 Ridge St, Boston,MA,02215 +319623,Wired Headphones,1,11.99,2019-12-11 19:11:00,164 Meadow St, Los Angeles,CA,90001 +319624,AA Batteries (4-pack),2,3.84,2019-12-30 12:15:00,837 Jefferson St, Atlanta,GA,30301 +319625,AA Batteries (4-pack),1,3.84,2019-12-01 13:40:00,325 Forest St, Portland,OR,97035 +319626,27in 4K Gaming Monitor,1,389.99,2019-12-06 17:21:00,763 West St, San Francisco,CA,94016 +319627,Lightning Charging Cable,1,14.95,2019-12-29 12:29:00,752 11th St, Boston,MA,02215 +319628,Apple Airpods Headphones,1,150.0,2019-12-26 13:46:00,421 Maple St, Boston,MA,02215 +319629,iPhone,1,700.0,2019-12-18 15:41:00,941 Willow St, Dallas,TX,75001 +319630,27in 4K Gaming Monitor,1,389.99,2019-12-16 12:18:00,375 13th St, San Francisco,CA,94016 +319631,34in Ultrawide Monitor,1,379.99,2019-12-17 22:35:00,363 Highland St, Austin,TX,73301 +319631,Lightning Charging Cable,1,14.95,2019-12-17 22:35:00,363 Highland St, Austin,TX,73301 +319632,Google Phone,1,600.0,2019-12-29 17:25:00,59 Cherry St, Boston,MA,02215 +319633,USB-C Charging Cable,1,11.95,2019-12-07 07:12:00,568 Walnut St, Atlanta,GA,30301 +319634,iPhone,1,700.0,2019-12-11 16:29:00,817 Center St, Boston,MA,02215 +319635,Bose SoundSport Headphones,1,99.99,2019-12-30 18:25:00,515 North St, New York City,NY,10001 +319636,34in Ultrawide Monitor,1,379.99,2019-12-19 18:21:00,829 6th St, Boston,MA,02215 +319637,Wired Headphones,1,11.99,2019-12-31 22:14:00,641 Adams St, Portland,OR,97035 +319638,USB-C Charging Cable,1,11.95,2019-12-22 19:08:00,235 Spruce St, Portland,OR,97035 +319639,Macbook Pro Laptop,1,1700.0,2019-12-20 10:56:00,616 Highland St, Seattle,WA,98101 +319640,Apple Airpods Headphones,1,150.0,2019-12-10 08:51:00,116 Hickory St, Los Angeles,CA,90001 +319641,Macbook Pro Laptop,1,1700.0,2019-12-04 23:11:00,232 Meadow St, Portland,OR,97035 +319642,Lightning Charging Cable,1,14.95,2019-12-22 19:23:00,928 Chestnut St, Austin,TX,73301 +319643,AA Batteries (4-pack),2,3.84,2019-12-25 12:38:00,811 Hill St, San Francisco,CA,94016 +319644,AA Batteries (4-pack),1,3.84,2019-12-30 18:09:00,420 Madison St, New York City,NY,10001 +319645,Vareebadd Phone,1,400.0,2019-12-06 23:20:00,149 Cedar St, Dallas,TX,75001 +319646,34in Ultrawide Monitor,1,379.99,2019-12-20 09:38:00,52 Dogwood St, Atlanta,GA,30301 +319647,AA Batteries (4-pack),2,3.84,2019-12-28 17:43:00,119 Spruce St, San Francisco,CA,94016 +319648,20in Monitor,1,109.99,2019-12-25 11:31:00,839 Chestnut St, San Francisco,CA,94016 +319649,Google Phone,1,600.0,2019-12-23 18:46:00,24 Wilson St, San Francisco,CA,94016 +319650,Apple Airpods Headphones,1,150.0,2019-12-18 08:29:00,574 Wilson St, New York City,NY,10001 +319651,Lightning Charging Cable,1,14.95,2019-12-14 22:36:00,763 Washington St, Boston,MA,02215 +319652,AAA Batteries (4-pack),1,2.99,2019-12-14 23:30:00,151 Hickory St, Los Angeles,CA,90001 +319653,AAA Batteries (4-pack),1,2.99,2019-12-03 05:50:00,542 Elm St, New York City,NY,10001 +319654,AA Batteries (4-pack),1,3.84,2019-12-23 14:08:00,245 Dogwood St, Atlanta,GA,30301 +319655,Wired Headphones,1,11.99,2019-12-28 19:38:00,614 Cherry St, Austin,TX,73301 +319656,Apple Airpods Headphones,1,150.0,2019-12-26 23:17:00,700 5th St, Dallas,TX,75001 +319657,LG Dryer,1,600.0,2019-12-05 13:22:00,159 Lake St, Portland,OR,97035 +319658,AAA Batteries (4-pack),2,2.99,2019-12-24 20:46:00,574 Dogwood St, San Francisco,CA,94016 +319659,Lightning Charging Cable,1,14.95,2019-12-13 07:25:00,764 1st St, San Francisco,CA,94016 +319660,Apple Airpods Headphones,1,150.0,2019-12-16 17:41:00,247 5th St, Los Angeles,CA,90001 +319661,AAA Batteries (4-pack),1,2.99,2019-12-11 21:24:00,691 West St, Portland,ME,04101 +319662,Bose SoundSport Headphones,1,99.99,2019-12-31 19:07:00,939 8th St, San Francisco,CA,94016 +319663,Flatscreen TV,1,300.0,2019-12-07 08:25:00,334 12th St, Atlanta,GA,30301 +319664,ThinkPad Laptop,1,999.99,2019-12-30 01:06:00,767 2nd St, San Francisco,CA,94016 +319665,iPhone,1,700.0,2019-12-15 11:13:00,377 1st St, Atlanta,GA,30301 +319666,Lightning Charging Cable,1,14.95,2019-12-11 20:58:00,14 Madison St, San Francisco,CA,94016 +319667,AA Batteries (4-pack),2,3.84,2019-12-01 12:01:00,549 Willow St, Los Angeles,CA,90001 +319668,Vareebadd Phone,1,400.0,2019-12-09 06:43:00,273 Wilson St, Seattle,WA,98101 +319669,Wired Headphones,1,11.99,2019-12-03 10:39:00,778 River St, Dallas,TX,75001 +319670,Bose SoundSport Headphones,1,99.99,2019-12-21 21:45:00,747 Chestnut St, Los Angeles,CA,90001 +150502,iPhone,1,700.0,2019-02-18 01:35:00,866 Spruce St, Portland,ME,04101 +150503,AA Batteries (4-pack),1,3.84,2019-02-13 07:24:00,18 13th St, San Francisco,CA,94016 +150504,27in 4K Gaming Monitor,1,389.99,2019-02-18 09:46:00,52 6th St, New York City,NY,10001 +150505,Lightning Charging Cable,1,14.95,2019-02-02 16:47:00,129 Cherry St, Atlanta,GA,30301 +150506,AA Batteries (4-pack),2,3.84,2019-02-28 20:32:00,548 Lincoln St, Seattle,WA,98101 +150507,Lightning Charging Cable,1,14.95,2019-02-24 18:50:00,387 12th St, Austin,TX,73301 +150508,AA Batteries (4-pack),1,3.84,2019-02-21 19:26:00,622 Center St, San Francisco,CA,94016 +150509,Apple Airpods Headphones,1,150.0,2019-02-26 19:53:00,921 6th St, Seattle,WA,98101 +150510,USB-C Charging Cable,1,11.95,2019-02-17 21:48:00,451 2nd St, Los Angeles,CA,90001 +150511,USB-C Charging Cable,1,11.95,2019-02-22 07:36:00,689 River St, San Francisco,CA,94016 +150512,Bose SoundSport Headphones,1,99.99,2019-02-17 18:29:00,198 Center St, Los Angeles,CA,90001 +150513,Bose SoundSport Headphones,1,99.99,2019-02-25 20:49:00,777 Spruce St, Los Angeles,CA,90001 +150514,27in FHD Monitor,1,149.99,2019-02-03 00:21:00,723 Wilson St, Los Angeles,CA,90001 +150515,Apple Airpods Headphones,1,150.0,2019-02-18 14:53:00,101 13th St, New York City,NY,10001 +150516,Lightning Charging Cable,1,14.95,2019-02-20 12:29:00,303 Sunset St, Atlanta,GA,30301 +150517,Wired Headphones,1,11.99,2019-02-08 12:57:00,471 13th St, San Francisco,CA,94016 +150518,Macbook Pro Laptop,1,1700.0,2019-02-26 12:38:00,847 10th St, San Francisco,CA,94016 +150518,iPhone,1,700.0,2019-02-26 12:38:00,847 10th St, San Francisco,CA,94016 +150519,Wired Headphones,1,11.99,2019-02-23 13:25:00,111 Hill St, Dallas,TX,75001 +150520,AA Batteries (4-pack),2,3.84,2019-02-27 14:39:00,512 Church St, Dallas,TX,75001 +150521,Flatscreen TV,1,300.0,2019-02-27 20:07:00,588 1st St, Los Angeles,CA,90001 +150522,20in Monitor,1,109.99,2019-02-12 00:00:00,633 Cherry St, Boston,MA,02215 +150523,LG Dryer,1,600.0,2019-02-27 20:24:00,452 8th St, San Francisco,CA,94016 +150524,Wired Headphones,1,11.99,2019-02-28 13:47:00,311 8th St, Austin,TX,73301 +150525,20in Monitor,1,109.99,2019-02-25 09:38:00,874 Jefferson St, San Francisco,CA,94016 +150526,AAA Batteries (4-pack),1,2.99,2019-02-15 11:31:00,85 Park St, Boston,MA,02215 +150527,USB-C Charging Cable,1,11.95,2019-02-07 14:33:00,165 Jefferson St, Los Angeles,CA,90001 +150528,AAA Batteries (4-pack),2,2.99,2019-02-26 23:17:00,426 Lake St, Los Angeles,CA,90001 +150529,AA Batteries (4-pack),4,3.84,2019-02-11 13:10:00,116 Elm St, Seattle,WA,98101 +150530,ThinkPad Laptop,1,999.99,2019-02-05 14:19:00,752 Park St, Los Angeles,CA,90001 +150531,USB-C Charging Cable,1,11.95,2019-02-28 18:16:00,457 Maple St, Los Angeles,CA,90001 +150532,USB-C Charging Cable,1,11.95,2019-02-04 22:57:00,645 Walnut St, San Francisco,CA,94016 +150533,AAA Batteries (4-pack),1,2.99,2019-03-01 03:06:00,270 Dogwood St, San Francisco,CA,94016 +150534,AAA Batteries (4-pack),2,2.99,2019-02-12 22:02:00,246 9th St, Los Angeles,CA,90001 +150535,AAA Batteries (4-pack),1,2.99,2019-02-21 11:46:00,961 2nd St, San Francisco,CA,94016 +150536,Wired Headphones,1,11.99,2019-02-13 22:43:00,134 8th St, Los Angeles,CA,90001 +150537,Wired Headphones,1,11.99,2019-02-23 13:31:00,437 12th St, San Francisco,CA,94016 +150538,Apple Airpods Headphones,1,150.0,2019-02-22 17:28:00,553 12th St, Atlanta,GA,30301 +150539,AA Batteries (4-pack),2,3.84,2019-02-18 16:46:00,103 14th St, San Francisco,CA,94016 +150540,Apple Airpods Headphones,1,150.0,2019-02-18 15:23:00,218 Ridge St, Atlanta,GA,30301 +150541,AAA Batteries (4-pack),1,2.99,2019-03-01 01:03:00,683 Adams St, Portland,OR,97035 +150542,AA Batteries (4-pack),1,3.84,2019-02-02 19:46:00,517 10th St, Austin,TX,73301 +150543,Wired Headphones,1,11.99,2019-02-08 09:21:00,268 Sunset St, Boston,MA,02215 +150544,Lightning Charging Cable,1,14.95,2019-02-10 17:19:00,723 Elm St, Los Angeles,CA,90001 +150545,Macbook Pro Laptop,1,1700.0,2019-02-25 20:35:00,905 Meadow St, Atlanta,GA,30301 +150546,AAA Batteries (4-pack),1,2.99,2019-02-07 14:01:00,43 1st St, Atlanta,GA,30301 +150547,AAA Batteries (4-pack),1,2.99,2019-02-06 17:51:00,511 Washington St, San Francisco,CA,94016 +150548,Macbook Pro Laptop,1,1700.0,2019-02-18 22:56:00,750 Forest St, Boston,MA,02215 +150549,iPhone,1,700.0,2019-02-05 20:33:00,522 West St, Boston,MA,02215 +150550,ThinkPad Laptop,1,999.99,2019-02-17 14:45:00,261 Washington St, Los Angeles,CA,90001 +150551,27in 4K Gaming Monitor,1,389.99,2019-02-02 08:25:00,726 West St, Seattle,WA,98101 +150552,Wired Headphones,1,11.99,2019-02-21 19:06:00,954 13th St, Boston,MA,02215 +150553,34in Ultrawide Monitor,1,379.99,2019-02-20 21:42:00,700 1st St, Dallas,TX,75001 +150554,AA Batteries (4-pack),1,3.84,2019-02-12 06:49:00,33 Johnson St, New York City,NY,10001 +150555,27in FHD Monitor,1,149.99,2019-02-18 11:27:00,714 Adams St, Portland,OR,97035 +150556,Lightning Charging Cable,1,14.95,2019-02-10 13:25:00,419 Hill St, Los Angeles,CA,90001 +150557,AA Batteries (4-pack),2,3.84,2019-02-22 21:41:00,372 5th St, Seattle,WA,98101 +150558,Wired Headphones,1,11.99,2019-02-04 16:09:00,864 Hickory St, Boston,MA,02215 +150559,Apple Airpods Headphones,1,150.0,2019-02-07 23:41:00,506 Willow St, Boston,MA,02215 +150560,Apple Airpods Headphones,1,150.0,2019-02-05 14:29:00,178 14th St, San Francisco,CA,94016 +150561,Wired Headphones,1,11.99,2019-02-22 17:55:00,888 Jefferson St, New York City,NY,10001 +150562,27in 4K Gaming Monitor,1,389.99,2019-02-16 20:07:00,663 1st St, Atlanta,GA,30301 +150563,iPhone,1,700.0,2019-02-20 02:09:00,631 Pine St, San Francisco,CA,94016 +150564,USB-C Charging Cable,1,11.95,2019-02-28 13:55:00,579 9th St, Atlanta,GA,30301 +150565,Wired Headphones,1,11.99,2019-02-24 19:08:00,406 Lincoln St, Seattle,WA,98101 +150566,27in FHD Monitor,1,149.99,2019-02-21 18:30:00,230 Pine St, Los Angeles,CA,90001 +150567,Apple Airpods Headphones,1,150.0,2019-02-26 16:12:00,466 South St, Dallas,TX,75001 +150568,Wired Headphones,1,11.99,2019-02-15 22:49:00,651 Johnson St, New York City,NY,10001 +150569,AA Batteries (4-pack),3,3.84,2019-02-04 13:11:00,981 Lake St, Seattle,WA,98101 +150570,Wired Headphones,1,11.99,2019-02-18 18:12:00,786 Meadow St, San Francisco,CA,94016 +150571,Lightning Charging Cable,1,14.95,2019-02-23 22:41:00,571 Hickory St, San Francisco,CA,94016 +150572,27in FHD Monitor,1,149.99,2019-02-06 07:38:00,523 Spruce St, Atlanta,GA,30301 +150573,Apple Airpods Headphones,1,150.0,2019-02-25 11:32:00,455 Highland St, Los Angeles,CA,90001 +150574,Lightning Charging Cable,1,14.95,2019-02-17 19:51:00,25 7th St, Portland,OR,97035 +150575,AA Batteries (4-pack),1,3.84,2019-02-10 11:44:00,776 Elm St, Los Angeles,CA,90001 +150576,Bose SoundSport Headphones,1,99.99,2019-02-02 01:33:00,43 South St, San Francisco,CA,94016 +150577,AA Batteries (4-pack),1,3.84,2019-02-25 13:27:00,122 Spruce St, Seattle,WA,98101 +150578,USB-C Charging Cable,1,11.95,2019-02-06 19:05:00,193 Pine St, San Francisco,CA,94016 +150579,USB-C Charging Cable,1,11.95,2019-02-27 20:11:00,320 North St, Los Angeles,CA,90001 +150580,AA Batteries (4-pack),1,3.84,2019-02-11 22:06:00,399 5th St, New York City,NY,10001 +150581,AA Batteries (4-pack),1,3.84,2019-02-21 19:51:00,144 Washington St, Seattle,WA,98101 +150582,iPhone,1,700.0,2019-02-16 23:38:00,678 Maple St, Seattle,WA,98101 +150582,Lightning Charging Cable,1,14.95,2019-02-16 23:38:00,678 Maple St, Seattle,WA,98101 +150583,27in FHD Monitor,1,149.99,2019-02-01 20:56:00,159 Maple St, Seattle,WA,98101 +150584,AAA Batteries (4-pack),1,2.99,2019-02-24 21:41:00,971 Park St, Boston,MA,02215 +150585,USB-C Charging Cable,1,11.95,2019-02-16 14:04:00,55 Walnut St, Seattle,WA,98101 +150586,Apple Airpods Headphones,1,150.0,2019-02-12 19:25:00,671 12th St, San Francisco,CA,94016 +150587,Lightning Charging Cable,1,14.95,2019-02-11 17:43:00,290 Meadow St, Seattle,WA,98101 +150588,AAA Batteries (4-pack),2,2.99,2019-02-09 09:33:00,823 Cedar St, Los Angeles,CA,90001 +150589,Flatscreen TV,1,300.0,2019-02-24 12:02:00,123 Washington St, San Francisco,CA,94016 +150590,Apple Airpods Headphones,1,150.0,2019-02-08 09:35:00,196 River St, San Francisco,CA,94016 +150590,AAA Batteries (4-pack),1,2.99,2019-02-08 09:35:00,196 River St, San Francisco,CA,94016 +150591,AAA Batteries (4-pack),1,2.99,2019-02-12 15:29:00,362 Main St, Portland,OR,97035 +150592,USB-C Charging Cable,1,11.95,2019-02-02 09:27:00,756 6th St, Los Angeles,CA,90001 +150593,Bose SoundSport Headphones,1,99.99,2019-02-15 16:58:00,441 Park St, New York City,NY,10001 +150594,USB-C Charging Cable,1,11.95,2019-02-19 18:54:00,286 8th St, San Francisco,CA,94016 +150595,USB-C Charging Cable,1,11.95,2019-02-12 06:12:00,734 Cherry St, San Francisco,CA,94016 +150596,AAA Batteries (4-pack),1,2.99,2019-02-07 14:38:00,724 Ridge St, Dallas,TX,75001 +150597,USB-C Charging Cable,1,11.95,2019-02-18 16:08:00,758 Lincoln St, Boston,MA,02215 +150598,Wired Headphones,1,11.99,2019-02-21 15:25:00,841 12th St, Boston,MA,02215 +150599,20in Monitor,1,109.99,2019-02-19 12:08:00,677 South St, Atlanta,GA,30301 +150600,AA Batteries (4-pack),1,3.84,2019-02-11 00:57:00,353 11th St, San Francisco,CA,94016 +150601,AAA Batteries (4-pack),2,2.99,2019-02-16 13:24:00,24 Highland St, Atlanta,GA,30301 +150602,Apple Airpods Headphones,1,150.0,2019-02-11 09:44:00,207 Wilson St, Los Angeles,CA,90001 +150603,USB-C Charging Cable,1,11.95,2019-02-18 14:44:00,772 Johnson St, Seattle,WA,98101 +150604,AA Batteries (4-pack),1,3.84,2019-02-26 17:09:00,125 Hickory St, Atlanta,GA,30301 +150605,USB-C Charging Cable,1,11.95,2019-02-06 14:27:00,443 Park St, San Francisco,CA,94016 +150606,AA Batteries (4-pack),1,3.84,2019-02-28 10:17:00,810 Madison St, Atlanta,GA,30301 +150607,Lightning Charging Cable,1,14.95,2019-02-27 19:36:00,469 Church St, San Francisco,CA,94016 +150608,ThinkPad Laptop,1,999.99,2019-02-20 11:53:00,383 10th St, San Francisco,CA,94016 +150609,USB-C Charging Cable,1,11.95,2019-02-09 20:23:00,403 North St, New York City,NY,10001 +150610,27in FHD Monitor,1,149.99,2019-02-19 10:42:00,409 Church St, Boston,MA,02215 +150611,AAA Batteries (4-pack),1,2.99,2019-02-04 16:49:00,961 5th St, Portland,OR,97035 +150612,USB-C Charging Cable,1,11.95,2019-02-28 20:14:00,321 7th St, Los Angeles,CA,90001 +150613,AA Batteries (4-pack),1,3.84,2019-02-08 13:05:00,198 Walnut St, Los Angeles,CA,90001 +150614,AA Batteries (4-pack),2,3.84,2019-02-05 17:18:00,709 Cedar St, Boston,MA,02215 +150615,27in FHD Monitor,1,149.99,2019-02-27 13:34:00,814 Highland St, New York City,NY,10001 +150616,27in 4K Gaming Monitor,1,389.99,2019-02-05 20:35:00,985 Jackson St, Portland,OR,97035 +150617,Google Phone,1,600.0,2019-02-25 00:02:00,551 Sunset St, New York City,NY,10001 +150617,USB-C Charging Cable,1,11.95,2019-02-25 00:02:00,551 Sunset St, New York City,NY,10001 +150618,USB-C Charging Cable,1,11.95,2019-02-24 12:20:00,659 8th St, Portland,OR,97035 +150619,USB-C Charging Cable,1,11.95,2019-02-17 17:23:00,529 Madison St, Los Angeles,CA,90001 +150620,Apple Airpods Headphones,1,150.0,2019-02-07 15:12:00,808 1st St, Los Angeles,CA,90001 +150621,AA Batteries (4-pack),1,3.84,2019-02-05 13:01:00,173 Dogwood St, Boston,MA,02215 +150622,34in Ultrawide Monitor,1,379.99,2019-02-12 16:05:00,230 Washington St, Boston,MA,02215 +150623,iPhone,1,700.0,2019-02-05 22:46:00,96 7th St, Seattle,WA,98101 +150624,34in Ultrawide Monitor,1,379.99,2019-02-16 09:59:00,582 Wilson St, Los Angeles,CA,90001 +150625,AAA Batteries (4-pack),1,2.99,2019-02-21 14:54:00,19 5th St, New York City,NY,10001 +150626,AA Batteries (4-pack),2,3.84,2019-02-26 23:55:00,464 Center St, Dallas,TX,75001 +150627,USB-C Charging Cable,1,11.95,2019-02-17 07:01:00,106 10th St, Portland,OR,97035 +150628,Lightning Charging Cable,2,14.95,2019-02-25 17:22:00,206 Spruce St, San Francisco,CA,94016 +150629,AA Batteries (4-pack),1,3.84,2019-02-28 18:17:00,686 2nd St, Los Angeles,CA,90001 +150630,Apple Airpods Headphones,1,150.0,2019-02-14 09:15:00,274 Sunset St, Dallas,TX,75001 +150631,20in Monitor,1,109.99,2019-02-26 14:12:00,483 14th St, Atlanta,GA,30301 +150632,Wired Headphones,1,11.99,2019-02-18 21:48:00,108 Adams St, New York City,NY,10001 +150633,Wired Headphones,1,11.99,2019-02-09 14:21:00,566 Lake St, Los Angeles,CA,90001 +150634,USB-C Charging Cable,1,11.95,2019-02-11 17:17:00,463 Hickory St, New York City,NY,10001 +150635,iPhone,1,700.0,2019-02-10 17:43:00,129 Center St, Seattle,WA,98101 +150636,USB-C Charging Cable,1,11.95,2019-02-15 11:59:00,589 Walnut St, Portland,OR,97035 +150637,Apple Airpods Headphones,1,150.0,2019-02-02 17:37:00,23 Church St, Austin,TX,73301 +150638,AA Batteries (4-pack),1,3.84,2019-02-19 11:04:00,466 Lakeview St, New York City,NY,10001 +150639,Lightning Charging Cable,2,14.95,2019-02-19 14:28:00,408 Park St, Atlanta,GA,30301 +150640,Vareebadd Phone,1,400.0,2019-02-26 00:07:00,769 Willow St, New York City,NY,10001 +150641,AAA Batteries (4-pack),1,2.99,2019-02-10 14:57:00,72 12th St, Portland,OR,97035 +150642,Lightning Charging Cable,1,14.95,2019-02-27 20:18:00,938 Pine St, New York City,NY,10001 +150643,Apple Airpods Headphones,1,150.0,2019-02-23 22:12:00,304 North St, Seattle,WA,98101 +150644,Bose SoundSport Headphones,1,99.99,2019-02-17 18:07:00,879 Sunset St, Dallas,TX,75001 +150645,27in 4K Gaming Monitor,1,389.99,2019-02-02 07:06:00,153 South St, Seattle,WA,98101 +150646,27in FHD Monitor,1,149.99,2019-02-10 11:22:00,312 Spruce St, San Francisco,CA,94016 +150647,20in Monitor,1,109.99,2019-02-20 16:34:00,102 Dogwood St, New York City,NY,10001 +150648,27in 4K Gaming Monitor,1,389.99,2019-02-07 10:52:00,217 11th St, Los Angeles,CA,90001 +150649,27in FHD Monitor,1,149.99,2019-02-15 20:14:00,834 Main St, San Francisco,CA,94016 +150650,Bose SoundSport Headphones,1,99.99,2019-02-21 16:43:00,982 11th St, San Francisco,CA,94016 +150651,Google Phone,1,600.0,2019-02-02 11:49:00,525 10th St, New York City,NY,10001 +150651,USB-C Charging Cable,1,11.95,2019-02-02 11:49:00,525 10th St, New York City,NY,10001 +150652,AAA Batteries (4-pack),1,2.99,2019-02-12 10:28:00,933 Jackson St, Boston,MA,02215 +150653,27in FHD Monitor,1,149.99,2019-02-04 11:42:00,955 Jackson St, Los Angeles,CA,90001 +150654,Wired Headphones,1,11.99,2019-02-14 19:10:00,263 Cherry St, Los Angeles,CA,90001 +150655,AAA Batteries (4-pack),1,2.99,2019-02-12 16:15:00,154 Main St, Los Angeles,CA,90001 +150656,27in FHD Monitor,1,149.99,2019-02-13 11:59:00,643 Jackson St, Atlanta,GA,30301 +150657,AAA Batteries (4-pack),1,2.99,2019-02-10 16:25:00,406 Maple St, Los Angeles,CA,90001 +150658,USB-C Charging Cable,1,11.95,2019-02-25 05:30:00,82 Park St, Austin,TX,73301 +150659,27in 4K Gaming Monitor,1,389.99,2019-02-11 10:57:00,117 Johnson St, San Francisco,CA,94016 +150660,27in FHD Monitor,1,149.99,2019-02-03 22:41:00,719 11th St, New York City,NY,10001 +150661,Wired Headphones,1,11.99,2019-02-21 16:48:00,835 Spruce St, Atlanta,GA,30301 +150662,Wired Headphones,1,11.99,2019-02-01 15:57:00,403 North St, Dallas,TX,75001 +150663,AAA Batteries (4-pack),1,2.99,2019-02-14 03:13:00,205 Spruce St, Los Angeles,CA,90001 +150664,ThinkPad Laptop,1,999.99,2019-02-06 15:58:00,928 14th St, Dallas,TX,75001 +150665,AAA Batteries (4-pack),2,2.99,2019-02-10 09:12:00,964 7th St, San Francisco,CA,94016 +150666,Wired Headphones,1,11.99,2019-02-05 11:39:00,188 Spruce St, San Francisco,CA,94016 +150667,USB-C Charging Cable,1,11.95,2019-02-27 23:58:00,662 Chestnut St, Dallas,TX,75001 +150668,Wired Headphones,1,11.99,2019-02-14 18:09:00,419 7th St, Atlanta,GA,30301 +150669,iPhone,1,700.0,2019-02-10 03:20:00,585 6th St, Atlanta,GA,30301 +150670,AA Batteries (4-pack),1,3.84,2019-02-28 16:17:00,368 Hickory St, Portland,ME,04101 +150671,Bose SoundSport Headphones,1,99.99,2019-02-09 07:58:00,690 14th St, Boston,MA,02215 +150672,USB-C Charging Cable,1,11.95,2019-02-24 14:03:00,869 Spruce St, Dallas,TX,75001 +150673,Bose SoundSport Headphones,1,99.99,2019-02-02 13:50:00,688 Spruce St, San Francisco,CA,94016 +150674,Google Phone,1,600.0,2019-02-21 11:44:00,690 Park St, San Francisco,CA,94016 +150674,USB-C Charging Cable,1,11.95,2019-02-21 11:44:00,690 Park St, San Francisco,CA,94016 +150674,Wired Headphones,1,11.99,2019-02-21 11:44:00,690 Park St, San Francisco,CA,94016 +150675,Lightning Charging Cable,1,14.95,2019-02-24 12:57:00,395 Spruce St, San Francisco,CA,94016 +150676,27in FHD Monitor,1,149.99,2019-02-17 20:37:00,401 Cedar St, Dallas,TX,75001 +150677,ThinkPad Laptop,1,999.99,2019-02-08 18:26:00,221 Elm St, New York City,NY,10001 +150678,AA Batteries (4-pack),1,3.84,2019-02-17 13:00:00,399 Center St, Los Angeles,CA,90001 +150679,Bose SoundSport Headphones,1,99.99,2019-02-17 14:38:00,885 Elm St, Seattle,WA,98101 +150680,iPhone,1,700.0,2019-02-03 12:49:00,29 Lakeview St, Austin,TX,73301 +150681,USB-C Charging Cable,2,11.95,2019-02-17 22:20:00,348 9th St, Seattle,WA,98101 +150682,Apple Airpods Headphones,1,150.0,2019-02-15 21:55:00,833 Lake St, San Francisco,CA,94016 +150683,27in FHD Monitor,1,149.99,2019-02-23 22:28:00,632 Ridge St, San Francisco,CA,94016 +150684,34in Ultrawide Monitor,1,379.99,2019-02-23 18:41:00,615 Jefferson St, San Francisco,CA,94016 +150685,Lightning Charging Cable,2,14.95,2019-02-05 13:36:00,658 Forest St, Portland,OR,97035 +150686,iPhone,1,700.0,2019-02-28 17:39:00,389 Pine St, Los Angeles,CA,90001 +150687,Wired Headphones,1,11.99,2019-02-27 15:36:00,292 Highland St, Los Angeles,CA,90001 +150688,Google Phone,1,600.0,2019-02-07 09:30:00,719 Maple St, New York City,NY,10001 +150688,Wired Headphones,1,11.99,2019-02-07 09:30:00,719 Maple St, New York City,NY,10001 +150689,AAA Batteries (4-pack),1,2.99,2019-02-24 18:42:00,623 10th St, Los Angeles,CA,90001 +150690,AA Batteries (4-pack),1,3.84,2019-02-28 22:41:00,167 Highland St, Atlanta,GA,30301 +150691,20in Monitor,1,109.99,2019-02-26 00:43:00,902 Adams St, New York City,NY,10001 +150692,Bose SoundSport Headphones,1,99.99,2019-02-23 19:59:00,868 11th St, Boston,MA,02215 +150693,Wired Headphones,1,11.99,2019-02-23 13:45:00,403 West St, Boston,MA,02215 +150694,Apple Airpods Headphones,1,150.0,2019-02-26 20:58:00,813 Church St, Los Angeles,CA,90001 +150695,AA Batteries (4-pack),1,3.84,2019-02-07 20:34:00,272 4th St, Atlanta,GA,30301 +150696,AA Batteries (4-pack),1,3.84,2019-02-02 13:55:00,417 Dogwood St, Boston,MA,02215 +150697,Bose SoundSport Headphones,1,99.99,2019-02-19 09:30:00,966 7th St, Seattle,WA,98101 +150698,34in Ultrawide Monitor,1,379.99,2019-02-08 13:19:00,375 Maple St, Los Angeles,CA,90001 +150699,USB-C Charging Cable,1,11.95,2019-02-06 15:39:00,253 Cherry St, San Francisco,CA,94016 +150700,USB-C Charging Cable,1,11.95,2019-02-03 02:10:00,551 2nd St, New York City,NY,10001 +150701,ThinkPad Laptop,1,999.99,2019-02-07 20:21:00,822 Highland St, Dallas,TX,75001 +150702,34in Ultrawide Monitor,1,379.99,2019-02-23 20:58:00,27 Wilson St, Los Angeles,CA,90001 +150703,27in 4K Gaming Monitor,1,389.99,2019-02-03 11:37:00,998 Jefferson St, Boston,MA,02215 +150704,27in 4K Gaming Monitor,1,389.99,2019-02-11 17:50:00,508 Walnut St, Austin,TX,73301 +150705,Bose SoundSport Headphones,1,99.99,2019-02-15 19:37:00,189 Elm St, New York City,NY,10001 +150706,Lightning Charging Cable,1,14.95,2019-02-19 12:11:00,815 Willow St, San Francisco,CA,94016 +150707,Lightning Charging Cable,1,14.95,2019-02-15 20:50:00,128 Elm St, San Francisco,CA,94016 +150708,Bose SoundSport Headphones,1,99.99,2019-02-05 14:25:00,36 Ridge St, Dallas,TX,75001 +150709,USB-C Charging Cable,1,11.95,2019-02-16 18:54:00,507 Washington St, Boston,MA,02215 +150710,27in 4K Gaming Monitor,1,389.99,2019-02-01 10:27:00,581 Jackson St, San Francisco,CA,94016 +150711,Flatscreen TV,1,300.0,2019-02-16 19:16:00,320 11th St, San Francisco,CA,94016 +150712,AA Batteries (4-pack),3,3.84,2019-02-19 14:49:00,109 Willow St, New York City,NY,10001 +150713,AAA Batteries (4-pack),2,2.99,2019-02-01 09:54:00,362 10th St, Dallas,TX,75001 +150714,Bose SoundSport Headphones,1,99.99,2019-02-14 20:46:00,539 5th St, Los Angeles,CA,90001 +150715,Apple Airpods Headphones,1,150.0,2019-02-28 16:23:00,626 Lakeview St, San Francisco,CA,94016 +150716,Bose SoundSport Headphones,1,99.99,2019-02-05 12:53:00,396 Elm St, Dallas,TX,75001 +150717,USB-C Charging Cable,1,11.95,2019-02-03 19:43:00,202 Maple St, Austin,TX,73301 +150718,AA Batteries (4-pack),1,3.84,2019-02-20 00:06:00,211 Willow St, Atlanta,GA,30301 +150719,AAA Batteries (4-pack),1,2.99,2019-02-01 14:44:00,281 Lake St, Portland,OR,97035 +150720,27in FHD Monitor,1,149.99,2019-02-10 20:23:00,326 10th St, San Francisco,CA,94016 +150721,Apple Airpods Headphones,1,150.0,2019-02-14 23:24:00,115 Cedar St, San Francisco,CA,94016 +150722,AA Batteries (4-pack),2,3.84,2019-02-09 17:56:00,859 Cedar St, Seattle,WA,98101 +150723,Lightning Charging Cable,1,14.95,2019-02-20 20:08:00,793 Forest St, Los Angeles,CA,90001 +150724,34in Ultrawide Monitor,1,379.99,2019-02-14 18:37:00,168 Forest St, Seattle,WA,98101 +150725,AA Batteries (4-pack),2,3.84,2019-02-27 09:19:00,148 Park St, San Francisco,CA,94016 +150726,USB-C Charging Cable,1,11.95,2019-02-09 15:27:00,984 Hickory St, San Francisco,CA,94016 +150727,Apple Airpods Headphones,1,150.0,2019-02-21 13:23:00,406 4th St, San Francisco,CA,94016 +150728,Wired Headphones,1,11.99,2019-02-03 12:04:00,7 Highland St, New York City,NY,10001 +150729,Google Phone,1,600.0,2019-02-08 11:53:00,705 7th St, Boston,MA,02215 +150730,USB-C Charging Cable,2,11.95,2019-02-16 11:39:00,357 Lakeview St, San Francisco,CA,94016 +150731,Lightning Charging Cable,1,14.95,2019-02-24 04:22:00,907 South St, Seattle,WA,98101 +150732,AA Batteries (4-pack),1,3.84,2019-02-11 13:04:00,417 Ridge St, San Francisco,CA,94016 +150733,27in 4K Gaming Monitor,1,389.99,2019-02-15 00:53:00,982 Washington St, Los Angeles,CA,90001 +150734,Google Phone,1,600.0,2019-02-13 09:47:00,119 Madison St, New York City,NY,10001 +150734,USB-C Charging Cable,1,11.95,2019-02-13 09:47:00,119 Madison St, New York City,NY,10001 +150735,AA Batteries (4-pack),1,3.84,2019-02-13 11:49:00,450 6th St, Boston,MA,02215 +150736,Wired Headphones,1,11.99,2019-02-21 19:14:00,785 Lakeview St, Los Angeles,CA,90001 +150737,AAA Batteries (4-pack),1,2.99,2019-02-14 13:41:00,727 Pine St, Los Angeles,CA,90001 +150738,Bose SoundSport Headphones,1,99.99,2019-02-08 21:06:00,374 Main St, Atlanta,GA,30301 +150739,Lightning Charging Cable,1,14.95,2019-02-15 12:08:00,21 11th St, Atlanta,GA,30301 +150740,34in Ultrawide Monitor,1,379.99,2019-02-08 19:30:00,838 11th St, Portland,OR,97035 +150741,Bose SoundSport Headphones,1,99.99,2019-02-11 08:16:00,755 Maple St, New York City,NY,10001 +150742,Wired Headphones,1,11.99,2019-02-09 23:19:00,589 Maple St, San Francisco,CA,94016 +150743,AAA Batteries (4-pack),1,2.99,2019-02-17 05:23:00,203 Main St, Los Angeles,CA,90001 +150744,34in Ultrawide Monitor,1,379.99,2019-02-07 13:45:00,682 5th St, Atlanta,GA,30301 +150745,AA Batteries (4-pack),3,3.84,2019-02-26 10:42:00,489 Center St, San Francisco,CA,94016 +150746,AAA Batteries (4-pack),1,2.99,2019-02-01 12:15:00,195 North St, Los Angeles,CA,90001 +150747,USB-C Charging Cable,1,11.95,2019-02-03 11:18:00,275 2nd St, San Francisco,CA,94016 +150748,AAA Batteries (4-pack),1,2.99,2019-02-27 12:39:00,931 11th St, New York City,NY,10001 +150749,Vareebadd Phone,1,400.0,2019-02-19 09:25:00,55 6th St, San Francisco,CA,94016 +150750,iPhone,1,700.0,2019-02-05 17:18:00,753 Washington St, New York City,NY,10001 +150751,USB-C Charging Cable,2,11.95,2019-02-11 18:06:00,153 Washington St, Los Angeles,CA,90001 +150752,Wired Headphones,1,11.99,2019-02-08 00:08:00,23 4th St, Portland,OR,97035 +150753,Lightning Charging Cable,1,14.95,2019-02-28 11:30:00,599 7th St, New York City,NY,10001 +150754,AAA Batteries (4-pack),1,2.99,2019-02-27 13:34:00,423 Park St, Austin,TX,73301 +150755,AA Batteries (4-pack),1,3.84,2019-02-20 10:25:00,355 Lake St, Austin,TX,73301 +150756,Bose SoundSport Headphones,1,99.99,2019-02-03 08:16:00,114 West St, Seattle,WA,98101 +150757,USB-C Charging Cable,1,11.95,2019-02-18 18:55:00,141 Highland St, San Francisco,CA,94016 +150758,iPhone,1,700.0,2019-02-19 09:38:00,360 Madison St, Austin,TX,73301 +150758,Wired Headphones,1,11.99,2019-02-19 09:38:00,360 Madison St, Austin,TX,73301 +150759,Lightning Charging Cable,1,14.95,2019-02-03 05:10:00,999 9th St, Boston,MA,02215 +150760,AA Batteries (4-pack),2,3.84,2019-02-17 20:04:00,638 4th St, Los Angeles,CA,90001 +150761,AAA Batteries (4-pack),1,2.99,2019-02-19 21:47:00,358 Maple St, Austin,TX,73301 +150762,USB-C Charging Cable,1,11.95,2019-02-15 23:07:00,927 Lake St, San Francisco,CA,94016 +150763,AA Batteries (4-pack),3,3.84,2019-02-11 22:09:00,276 2nd St, New York City,NY,10001 +150764,AAA Batteries (4-pack),1,2.99,2019-02-26 11:27:00,671 10th St, New York City,NY,10001 +150765,AA Batteries (4-pack),1,3.84,2019-02-13 20:53:00,750 Madison St, Seattle,WA,98101 +150766,Bose SoundSport Headphones,1,99.99,2019-02-25 12:50:00,969 10th St, San Francisco,CA,94016 +150767,Bose SoundSport Headphones,1,99.99,2019-02-01 17:13:00,38 Wilson St, San Francisco,CA,94016 +150768,Lightning Charging Cable,1,14.95,2019-02-26 17:05:00,482 Madison St, Los Angeles,CA,90001 +150769,Apple Airpods Headphones,1,150.0,2019-02-03 12:41:00,470 Madison St, Los Angeles,CA,90001 +150770,34in Ultrawide Monitor,1,379.99,2019-02-06 10:02:00,721 Dogwood St, Seattle,WA,98101 +150771,AA Batteries (4-pack),1,3.84,2019-02-26 11:16:00,619 9th St, New York City,NY,10001 +150772,Bose SoundSport Headphones,1,99.99,2019-02-25 13:19:00,238 8th St, Los Angeles,CA,90001 +150773,AA Batteries (4-pack),1,3.84,2019-02-08 11:25:00,632 Highland St, New York City,NY,10001 +150774,AA Batteries (4-pack),1,3.84,2019-02-21 18:25:00,579 Adams St, San Francisco,CA,94016 +150775,Lightning Charging Cable,1,14.95,2019-02-16 21:07:00,596 9th St, Seattle,WA,98101 +150776,Bose SoundSport Headphones,1,99.99,2019-02-04 16:57:00,480 1st St, Seattle,WA,98101 +150777,Lightning Charging Cable,2,14.95,2019-02-14 18:05:00,879 Pine St, Los Angeles,CA,90001 +150778,Apple Airpods Headphones,1,150.0,2019-02-04 12:18:00,49 Hill St, San Francisco,CA,94016 +150779,27in FHD Monitor,1,149.99,2019-02-28 15:40:00,819 Adams St, San Francisco,CA,94016 +150780,Google Phone,1,600.0,2019-02-15 20:54:00,123 Maple St, Austin,TX,73301 +150781,Bose SoundSport Headphones,1,99.99,2019-02-08 20:23:00,219 1st St, Atlanta,GA,30301 +150782,Lightning Charging Cable,1,14.95,2019-02-18 12:26:00,12 Highland St, San Francisco,CA,94016 +150783,AAA Batteries (4-pack),1,2.99,2019-02-27 23:25:00,13 Hill St, San Francisco,CA,94016 +150784,AA Batteries (4-pack),1,3.84,2019-02-22 09:55:00,73 Sunset St, New York City,NY,10001 +150785,Apple Airpods Headphones,1,150.0,2019-02-21 18:26:00,474 Pine St, Los Angeles,CA,90001 +150786,AA Batteries (4-pack),2,3.84,2019-02-06 21:28:00,856 Highland St, Atlanta,GA,30301 +150787,USB-C Charging Cable,1,11.95,2019-02-19 18:20:00,110 Washington St, New York City,NY,10001 +150788,Wired Headphones,1,11.99,2019-02-14 16:41:00,65 Pine St, New York City,NY,10001 +150789,Lightning Charging Cable,1,14.95,2019-02-22 03:03:00,156 West St, New York City,NY,10001 +150790,USB-C Charging Cable,1,11.95,2019-02-11 13:38:00,869 Lincoln St, Seattle,WA,98101 +150791,Apple Airpods Headphones,1,150.0,2019-02-19 02:12:00,663 Madison St, San Francisco,CA,94016 +150792,Wired Headphones,1,11.99,2019-02-19 20:45:00,343 13th St, Boston,MA,02215 +150793,ThinkPad Laptop,1,999.99,2019-02-01 13:15:00,210 1st St, Boston,MA,02215 +150794,AAA Batteries (4-pack),1,2.99,2019-02-27 18:34:00,195 Jackson St, Boston,MA,02215 +150795,27in 4K Gaming Monitor,1,389.99,2019-02-26 20:05:00,959 4th St, Seattle,WA,98101 +150796,AAA Batteries (4-pack),2,2.99,2019-02-23 18:25:00,129 Washington St, Atlanta,GA,30301 +150797,USB-C Charging Cable,3,11.95,2019-02-18 12:55:00,995 Ridge St, Atlanta,GA,30301 +150798,Macbook Pro Laptop,1,1700.0,2019-02-08 11:56:00,931 Dogwood St, New York City,NY,10001 +150799,Bose SoundSport Headphones,1,99.99,2019-02-21 09:55:00,445 14th St, Dallas,TX,75001 +150800,USB-C Charging Cable,1,11.95,2019-02-23 20:11:00,37 North St, Boston,MA,02215 +150801,AAA Batteries (4-pack),1,2.99,2019-02-10 12:32:00,212 Center St, Seattle,WA,98101 +150802,Google Phone,1,600.0,2019-02-01 11:11:00,817 Willow St, Dallas,TX,75001 +150803,Bose SoundSport Headphones,1,99.99,2019-02-14 17:22:00,532 Hill St, San Francisco,CA,94016 +150804,AAA Batteries (4-pack),1,2.99,2019-02-21 14:47:00,849 Jackson St, New York City,NY,10001 +150805,AA Batteries (4-pack),1,3.84,2019-02-27 16:07:00,820 Washington St, New York City,NY,10001 +150806,USB-C Charging Cable,1,11.95,2019-02-28 10:45:00,995 6th St, Los Angeles,CA,90001 +150807,27in 4K Gaming Monitor,1,389.99,2019-02-18 10:42:00,278 Dogwood St, Boston,MA,02215 +150808,AA Batteries (4-pack),1,3.84,2019-02-08 09:37:00,566 West St, San Francisco,CA,94016 +150809,USB-C Charging Cable,1,11.95,2019-02-24 09:53:00,605 Hill St, Los Angeles,CA,90001 +150810,USB-C Charging Cable,1,11.95,2019-02-10 13:04:00,275 2nd St, Los Angeles,CA,90001 +150811,Google Phone,1,600.0,2019-02-14 14:23:00,969 Pine St, Seattle,WA,98101 +150812,Wired Headphones,1,11.99,2019-03-01 02:18:00,915 Maple St, San Francisco,CA,94016 +150813,Apple Airpods Headphones,1,150.0,2019-02-19 20:40:00,575 Cherry St, San Francisco,CA,94016 +150814,USB-C Charging Cable,1,11.95,2019-02-18 20:53:00,922 7th St, Seattle,WA,98101 +150815,Wired Headphones,1,11.99,2019-02-12 21:37:00,770 6th St, Atlanta,GA,30301 +150816,Flatscreen TV,1,300.0,2019-02-15 09:51:00,769 Johnson St, San Francisco,CA,94016 +150817,AA Batteries (4-pack),1,3.84,2019-02-26 14:44:00,377 Church St, New York City,NY,10001 +150818,AA Batteries (4-pack),1,3.84,2019-02-26 18:01:00,919 Adams St, Seattle,WA,98101 +150819,27in FHD Monitor,1,149.99,2019-02-14 11:05:00,547 Willow St, Los Angeles,CA,90001 +150820,AA Batteries (4-pack),1,3.84,2019-02-05 21:20:00,920 11th St, Portland,OR,97035 +150821,Bose SoundSport Headphones,1,99.99,2019-02-25 20:48:00,316 Center St, Los Angeles,CA,90001 +150822,AA Batteries (4-pack),1,3.84,2019-02-23 20:02:00,932 Forest St, San Francisco,CA,94016 +150823,USB-C Charging Cable,1,11.95,2019-02-24 10:12:00,848 Cedar St, San Francisco,CA,94016 +150824,Wired Headphones,1,11.99,2019-02-04 20:24:00,513 Wilson St, Boston,MA,02215 +150825,27in FHD Monitor,1,149.99,2019-02-22 19:16:00,289 Hickory St, New York City,NY,10001 +150826,Bose SoundSport Headphones,1,99.99,2019-02-16 11:13:00,543 6th St, Seattle,WA,98101 +150827,USB-C Charging Cable,1,11.95,2019-02-08 10:29:00,529 West St, New York City,NY,10001 +150828,Macbook Pro Laptop,1,1700.0,2019-02-18 21:13:00,380 13th St, Dallas,TX,75001 +150829,27in 4K Gaming Monitor,1,389.99,2019-02-08 02:33:00,606 Highland St, Los Angeles,CA,90001 +150830,USB-C Charging Cable,2,11.95,2019-02-28 20:49:00,121 Cedar St, Seattle,WA,98101 +150831,AAA Batteries (4-pack),1,2.99,2019-02-15 16:13:00,346 Center St, New York City,NY,10001 +150832,USB-C Charging Cable,1,11.95,2019-02-16 06:56:00,107 4th St, San Francisco,CA,94016 +150833,USB-C Charging Cable,1,11.95,2019-02-15 11:18:00,365 Center St, New York City,NY,10001 +150834,Bose SoundSport Headphones,1,99.99,2019-02-22 19:14:00,795 Jefferson St, Dallas,TX,75001 +150835,Apple Airpods Headphones,1,150.0,2019-02-12 13:15:00,279 10th St, New York City,NY,10001 +150836,Wired Headphones,1,11.99,2019-02-06 12:42:00,820 Walnut St, Dallas,TX,75001 +150837,Lightning Charging Cable,1,14.95,2019-02-14 12:18:00,725 Adams St, Atlanta,GA,30301 +150838,USB-C Charging Cable,1,11.95,2019-02-25 03:46:00,478 Adams St, New York City,NY,10001 +150839,Google Phone,1,600.0,2019-02-24 14:02:00,625 Washington St, New York City,NY,10001 +150840,AAA Batteries (4-pack),1,2.99,2019-02-18 11:25:00,14 6th St, Austin,TX,73301 +150841,AA Batteries (4-pack),1,3.84,2019-02-06 19:56:00,738 Meadow St, San Francisco,CA,94016 +150842,Lightning Charging Cable,1,14.95,2019-02-09 08:11:00,130 Spruce St, Los Angeles,CA,90001 +150843,Lightning Charging Cable,1,14.95,2019-02-18 18:40:00,409 4th St, Dallas,TX,75001 +150844,Macbook Pro Laptop,1,1700.0,2019-02-06 22:01:00,680 Church St, San Francisco,CA,94016 +150845,USB-C Charging Cable,1,11.95,2019-02-17 10:47:00,663 Lake St, Portland,OR,97035 +150846,AAA Batteries (4-pack),3,2.99,2019-02-09 10:44:00,223 South St, Dallas,TX,75001 +150847,Google Phone,1,600.0,2019-02-10 14:08:00,138 Chestnut St, New York City,NY,10001 +150848,27in 4K Gaming Monitor,1,389.99,2019-02-07 10:41:00,358 Willow St, Seattle,WA,98101 +150849,AAA Batteries (4-pack),1,2.99,2019-02-08 02:31:00,14 Meadow St, Austin,TX,73301 +150850,AAA Batteries (4-pack),1,2.99,2019-02-14 15:23:00,331 West St, Seattle,WA,98101 +150851,AA Batteries (4-pack),1,3.84,2019-02-13 19:55:00,490 South St, Portland,OR,97035 +150852,AAA Batteries (4-pack),1,2.99,2019-02-26 06:52:00,361 Park St, Portland,OR,97035 +150853,AAA Batteries (4-pack),1,2.99,2019-02-27 16:10:00,953 Jefferson St, New York City,NY,10001 +150853,27in 4K Gaming Monitor,1,389.99,2019-02-27 16:10:00,953 Jefferson St, New York City,NY,10001 +150854,27in 4K Gaming Monitor,1,389.99,2019-02-14 06:38:00,937 Cedar St, New York City,NY,10001 +150855,34in Ultrawide Monitor,1,379.99,2019-02-11 14:38:00,418 North St, Dallas,TX,75001 +150856,Flatscreen TV,1,300.0,2019-02-07 13:42:00,571 Meadow St, San Francisco,CA,94016 +150857,USB-C Charging Cable,1,11.95,2019-02-05 12:55:00,540 6th St, San Francisco,CA,94016 +150858,USB-C Charging Cable,1,11.95,2019-02-13 19:54:00,376 Sunset St, Austin,TX,73301 +150859,Lightning Charging Cable,1,14.95,2019-02-24 12:42:00,817 Lake St, Los Angeles,CA,90001 +150860,AAA Batteries (4-pack),3,2.99,2019-02-21 18:45:00,90 Sunset St, New York City,NY,10001 +150861,34in Ultrawide Monitor,1,379.99,2019-02-23 14:42:00,794 Washington St, Los Angeles,CA,90001 +150862,20in Monitor,1,109.99,2019-02-05 07:56:00,196 5th St, San Francisco,CA,94016 +150863,USB-C Charging Cable,1,11.95,2019-02-16 15:08:00,570 West St, San Francisco,CA,94016 +150864,AA Batteries (4-pack),1,3.84,2019-02-24 11:28:00,17 Park St, San Francisco,CA,94016 +150865,Bose SoundSport Headphones,1,99.99,2019-02-12 00:14:00,107 Lakeview St, Los Angeles,CA,90001 +150866,27in FHD Monitor,1,149.99,2019-02-05 18:42:00,248 Adams St, San Francisco,CA,94016 +150867,USB-C Charging Cable,1,11.95,2019-02-21 10:35:00,907 West St, Los Angeles,CA,90001 +150868,Lightning Charging Cable,1,14.95,2019-02-10 22:36:00,447 Park St, Atlanta,GA,30301 +150869,AA Batteries (4-pack),1,3.84,2019-02-23 14:05:00,35 6th St, San Francisco,CA,94016 +150870,Wired Headphones,1,11.99,2019-02-13 15:03:00,805 1st St, Dallas,TX,75001 +150871,AAA Batteries (4-pack),5,2.99,2019-02-03 18:24:00,659 Highland St, San Francisco,CA,94016 +150872,Lightning Charging Cable,1,14.95,2019-02-28 17:33:00,436 6th St, Seattle,WA,98101 +150873,Lightning Charging Cable,1,14.95,2019-02-08 18:28:00,65 10th St, Atlanta,GA,30301 +150874,Lightning Charging Cable,2,14.95,2019-02-25 16:02:00,851 Forest St, Portland,OR,97035 +150875,Lightning Charging Cable,1,14.95,2019-02-17 16:42:00,383 Wilson St, San Francisco,CA,94016 +150876,LG Dryer,1,600.0,2019-02-03 18:48:00,367 Meadow St, San Francisco,CA,94016 +150877,USB-C Charging Cable,1,11.95,2019-02-12 20:34:00,665 Ridge St, Austin,TX,73301 +150878,Apple Airpods Headphones,1,150.0,2019-02-24 15:30:00,441 Washington St, Portland,OR,97035 +150879,USB-C Charging Cable,1,11.95,2019-02-22 21:16:00,899 14th St, San Francisco,CA,94016 +150880,34in Ultrawide Monitor,1,379.99,2019-02-03 19:18:00,548 Pine St, San Francisco,CA,94016 +150881,Wired Headphones,1,11.99,2019-02-18 10:43:00,34 2nd St, Los Angeles,CA,90001 +150882,Wired Headphones,1,11.99,2019-02-14 00:25:00,402 10th St, Boston,MA,02215 +150883,Wired Headphones,1,11.99,2019-02-04 23:50:00,457 Willow St, San Francisco,CA,94016 +150884,Wired Headphones,1,11.99,2019-02-17 23:57:00,632 Center St, San Francisco,CA,94016 +150885,ThinkPad Laptop,1,999.99,2019-02-20 10:04:00,88 Main St, San Francisco,CA,94016 +150886,Wired Headphones,1,11.99,2019-02-13 18:38:00,432 1st St, Boston,MA,02215 +150887,34in Ultrawide Monitor,1,379.99,2019-02-08 08:05:00,186 Elm St, Seattle,WA,98101 +150888,Wired Headphones,1,11.99,2019-02-23 10:38:00,92 Willow St, Boston,MA,02215 +150889,USB-C Charging Cable,1,11.95,2019-02-09 11:46:00,800 5th St, Atlanta,GA,30301 +150890,Apple Airpods Headphones,1,150.0,2019-02-11 16:21:00,449 9th St, Dallas,TX,75001 +150891,Lightning Charging Cable,1,14.95,2019-02-27 20:13:00,241 Dogwood St, San Francisco,CA,94016 +150892,Wired Headphones,1,11.99,2019-02-18 14:15:00,248 Johnson St, San Francisco,CA,94016 +150892,Apple Airpods Headphones,1,150.0,2019-02-18 14:15:00,248 Johnson St, San Francisco,CA,94016 +150893,ThinkPad Laptop,1,999.99,2019-02-10 07:33:00,774 5th St, Portland,OR,97035 +150894,Google Phone,1,600.0,2019-02-19 16:42:00,580 South St, San Francisco,CA,94016 +150895,LG Washing Machine,1,600.0,2019-02-18 21:37:00,405 11th St, Dallas,TX,75001 +150896,Lightning Charging Cable,1,14.95,2019-02-05 20:13:00,472 13th St, New York City,NY,10001 +150897,USB-C Charging Cable,1,11.95,2019-02-15 11:07:00,127 Chestnut St, Boston,MA,02215 +150898,AA Batteries (4-pack),1,3.84,2019-02-15 10:39:00,2 14th St, Seattle,WA,98101 +150899,USB-C Charging Cable,1,11.95,2019-02-20 23:40:00,23 Park St, Portland,ME,04101 +150900,AAA Batteries (4-pack),2,2.99,2019-02-18 16:50:00,767 4th St, San Francisco,CA,94016 +150901,AAA Batteries (4-pack),1,2.99,2019-02-21 17:31:00,79 Sunset St, Dallas,TX,75001 +150902,LG Washing Machine,1,600.0,2019-02-22 14:15:00,863 Hickory St, San Francisco,CA,94016 +150903,AA Batteries (4-pack),1,3.84,2019-02-11 21:07:00,480 River St, Seattle,WA,98101 +150904,34in Ultrawide Monitor,1,379.99,2019-02-08 08:17:00,593 13th St, Seattle,WA,98101 +150905,USB-C Charging Cable,1,11.95,2019-02-12 12:09:00,536 Forest St, Los Angeles,CA,90001 +150906,AAA Batteries (4-pack),1,2.99,2019-02-05 21:59:00,884 Ridge St, Los Angeles,CA,90001 +150907,Apple Airpods Headphones,1,150.0,2019-02-25 17:38:00,491 River St, Dallas,TX,75001 +150907,Wired Headphones,1,11.99,2019-02-25 17:38:00,491 River St, Dallas,TX,75001 +150908,Lightning Charging Cable,1,14.95,2019-02-18 21:58:00,280 11th St, Austin,TX,73301 +150909,27in FHD Monitor,1,149.99,2019-02-13 20:02:00,195 9th St, San Francisco,CA,94016 +150910,AAA Batteries (4-pack),1,2.99,2019-02-13 19:14:00,275 11th St, Los Angeles,CA,90001 +150911,Apple Airpods Headphones,1,150.0,2019-02-17 12:29:00,73 Chestnut St, Portland,OR,97035 +150912,AA Batteries (4-pack),1,3.84,2019-02-28 12:54:00,318 Highland St, Dallas,TX,75001 +150913,27in 4K Gaming Monitor,1,389.99,2019-02-21 20:52:00,566 Spruce St, New York City,NY,10001 +150914,AAA Batteries (4-pack),1,2.99,2019-02-08 10:15:00,344 Dogwood St, Boston,MA,02215 +150915,AAA Batteries (4-pack),1,2.99,2019-02-13 20:18:00,225 Washington St, Austin,TX,73301 +150916,34in Ultrawide Monitor,1,379.99,2019-02-08 22:15:00,844 5th St, Dallas,TX,75001 +150917,Lightning Charging Cable,1,14.95,2019-02-06 16:07:00,111 10th St, Austin,TX,73301 +150918,Lightning Charging Cable,1,14.95,2019-02-28 12:11:00,419 12th St, San Francisco,CA,94016 +150919,27in FHD Monitor,1,149.99,2019-02-22 05:21:00,9 Hickory St, Portland,OR,97035 +150920,Macbook Pro Laptop,1,1700.0,2019-02-26 17:19:00,511 12th St, Austin,TX,73301 +150921,Lightning Charging Cable,1,14.95,2019-02-08 22:06:00,701 12th St, San Francisco,CA,94016 +150922,Bose SoundSport Headphones,1,99.99,2019-02-06 16:42:00,562 Hill St, Boston,MA,02215 +150923,AAA Batteries (4-pack),2,2.99,2019-02-16 17:26:00,410 Lakeview St, Los Angeles,CA,90001 +150924,ThinkPad Laptop,1,999.99,2019-02-21 09:35:00,228 5th St, Austin,TX,73301 +150925,iPhone,1,700.0,2019-02-07 17:43:00,784 Elm St, Boston,MA,02215 +150925,Lightning Charging Cable,1,14.95,2019-02-07 17:43:00,784 Elm St, Boston,MA,02215 +150926,Wired Headphones,2,11.99,2019-02-16 06:31:00,80 14th St, New York City,NY,10001 +150927,USB-C Charging Cable,2,11.95,2019-02-26 18:10:00,701 Spruce St, New York City,NY,10001 +150928,Apple Airpods Headphones,1,150.0,2019-02-14 14:31:00,837 6th St, San Francisco,CA,94016 +150929,AA Batteries (4-pack),1,3.84,2019-02-10 08:26:00,373 13th St, Los Angeles,CA,90001 +150930,20in Monitor,1,109.99,2019-02-11 22:42:00,916 2nd St, Los Angeles,CA,90001 +150931,Macbook Pro Laptop,1,1700.0,2019-02-15 11:17:00,825 Adams St, Portland,ME,04101 +150932,AA Batteries (4-pack),1,3.84,2019-02-10 11:08:00,925 North St, Los Angeles,CA,90001 +150933,Bose SoundSport Headphones,1,99.99,2019-02-24 10:28:00,588 Lincoln St, Seattle,WA,98101 +150934,Lightning Charging Cable,1,14.95,2019-02-11 17:08:00,841 6th St, New York City,NY,10001 +150935,Bose SoundSport Headphones,1,99.99,2019-02-22 10:31:00,402 1st St, San Francisco,CA,94016 +150936,Lightning Charging Cable,1,14.95,2019-02-09 03:54:00,507 River St, Dallas,TX,75001 +150937,LG Washing Machine,1,600.0,2019-02-25 19:21:00,245 Chestnut St, San Francisco,CA,94016 +150938,Bose SoundSport Headphones,1,99.99,2019-02-25 01:35:00,464 Elm St, New York City,NY,10001 +150939,ThinkPad Laptop,1,999.99,2019-02-01 20:20:00,89 Jackson St, New York City,NY,10001 +150940,Lightning Charging Cable,1,14.95,2019-02-14 15:51:00,623 6th St, Los Angeles,CA,90001 +150941,Bose SoundSport Headphones,2,99.99,2019-02-16 16:08:00,114 14th St, Los Angeles,CA,90001 +150942,Apple Airpods Headphones,1,150.0,2019-02-21 00:52:00,286 Lakeview St, Dallas,TX,75001 +150943,USB-C Charging Cable,1,11.95,2019-02-06 19:13:00,759 1st St, Austin,TX,73301 +150944,Bose SoundSport Headphones,1,99.99,2019-02-14 15:26:00,479 Lake St, Portland,OR,97035 +150945,iPhone,1,700.0,2019-02-06 22:23:00,877 Dogwood St, San Francisco,CA,94016 +150945,Wired Headphones,1,11.99,2019-02-06 22:23:00,877 Dogwood St, San Francisco,CA,94016 +150946,USB-C Charging Cable,1,11.95,2019-02-12 18:21:00,732 2nd St, Dallas,TX,75001 +150947,Lightning Charging Cable,1,14.95,2019-02-02 17:53:00,914 Church St, Seattle,WA,98101 +150948,USB-C Charging Cable,1,11.95,2019-02-11 18:15:00,872 Dogwood St, Dallas,TX,75001 +150949,Lightning Charging Cable,1,14.95,2019-02-05 10:57:00,303 Pine St, Dallas,TX,75001 +150950,LG Dryer,1,600.0,2019-02-27 13:13:00,52 Cedar St, New York City,NY,10001 +150951,iPhone,1,700.0,2019-02-04 10:24:00,40 8th St, New York City,NY,10001 +150951,Lightning Charging Cable,1,14.95,2019-02-04 10:24:00,40 8th St, New York City,NY,10001 +150951,Apple Airpods Headphones,1,150.0,2019-02-04 10:24:00,40 8th St, New York City,NY,10001 +150952,USB-C Charging Cable,1,11.95,2019-02-13 16:39:00,465 Cedar St, San Francisco,CA,94016 +150953,AA Batteries (4-pack),1,3.84,2019-02-28 22:26:00,412 Wilson St, Seattle,WA,98101 +150954,Wired Headphones,1,11.99,2019-02-19 23:33:00,522 Center St, Boston,MA,02215 +150955,Wired Headphones,1,11.99,2019-02-13 11:34:00,65 Wilson St, Los Angeles,CA,90001 +150956,Macbook Pro Laptop,1,1700.0,2019-02-12 01:32:00,915 Meadow St, Portland,OR,97035 +150957,Apple Airpods Headphones,1,150.0,2019-02-18 09:14:00,480 Walnut St, New York City,NY,10001 +150958,iPhone,1,700.0,2019-02-26 11:44:00,58 Hickory St, San Francisco,CA,94016 +150959,Apple Airpods Headphones,1,150.0,2019-02-23 09:32:00,364 Ridge St, Atlanta,GA,30301 +150960,AA Batteries (4-pack),2,3.84,2019-02-08 11:11:00,849 Elm St, Seattle,WA,98101 +150961,Vareebadd Phone,1,400.0,2019-02-18 21:52:00,251 West St, New York City,NY,10001 +150961,Wired Headphones,1,11.99,2019-02-18 21:52:00,251 West St, New York City,NY,10001 +150962,27in FHD Monitor,1,149.99,2019-02-07 17:51:00,232 4th St, Boston,MA,02215 +150963,Google Phone,1,600.0,2019-02-08 20:48:00,184 Meadow St, Boston,MA,02215 +150964,Wired Headphones,1,11.99,2019-02-18 00:57:00,735 Hickory St, New York City,NY,10001 +150965,Lightning Charging Cable,1,14.95,2019-02-03 21:29:00,650 Chestnut St, San Francisco,CA,94016 +150966,Bose SoundSport Headphones,1,99.99,2019-02-27 07:57:00,540 Forest St, San Francisco,CA,94016 +150967,AA Batteries (4-pack),3,3.84,2019-02-20 22:17:00,717 Willow St, New York City,NY,10001 +150968,AA Batteries (4-pack),2,3.84,2019-02-12 11:20:00,60 13th St, San Francisco,CA,94016 +150969,Wired Headphones,1,11.99,2019-02-05 16:32:00,591 10th St, Seattle,WA,98101 +150970,AAA Batteries (4-pack),3,2.99,2019-02-12 13:30:00,943 Lake St, Seattle,WA,98101 +150971,AAA Batteries (4-pack),2,2.99,2019-02-02 03:53:00,670 11th St, Dallas,TX,75001 +150972,Google Phone,1,600.0,2019-02-11 12:14:00,138 Wilson St, Los Angeles,CA,90001 +150972,USB-C Charging Cable,1,11.95,2019-02-11 12:14:00,138 Wilson St, Los Angeles,CA,90001 +150973,Google Phone,1,600.0,2019-02-05 11:04:00,401 5th St, San Francisco,CA,94016 +150974,Bose SoundSport Headphones,1,99.99,2019-02-27 16:01:00,179 14th St, Boston,MA,02215 +150975,Bose SoundSport Headphones,1,99.99,2019-02-17 18:39:00,530 11th St, Seattle,WA,98101 +150976,Lightning Charging Cable,1,14.95,2019-02-02 01:21:00,352 9th St, New York City,NY,10001 +150977,Bose SoundSport Headphones,1,99.99,2019-02-07 20:09:00,304 West St, Boston,MA,02215 +150978,AA Batteries (4-pack),1,3.84,2019-02-20 19:07:00,341 Cherry St, New York City,NY,10001 +150979,Lightning Charging Cable,1,14.95,2019-02-03 18:41:00,254 Forest St, San Francisco,CA,94016 +150980,20in Monitor,1,109.99,2019-02-13 20:21:00,704 West St, Seattle,WA,98101 +150981,Bose SoundSport Headphones,1,99.99,2019-02-24 17:52:00,188 Washington St, Los Angeles,CA,90001 +150982,Lightning Charging Cable,1,14.95,2019-02-22 17:18:00,301 West St, Atlanta,GA,30301 +150983,Flatscreen TV,1,300.0,2019-02-13 15:43:00,502 4th St, Boston,MA,02215 +150984,Wired Headphones,1,11.99,2019-02-03 15:24:00,922 Elm St, Austin,TX,73301 +150985,Flatscreen TV,1,300.0,2019-02-20 12:27:00,221 Hickory St, Los Angeles,CA,90001 +150986,AAA Batteries (4-pack),1,2.99,2019-02-19 19:37:00,188 7th St, Atlanta,GA,30301 +150987,AAA Batteries (4-pack),2,2.99,2019-02-10 20:28:00,179 1st St, Boston,MA,02215 +150988,AAA Batteries (4-pack),1,2.99,2019-02-04 12:08:00,363 Johnson St, San Francisco,CA,94016 +150989,AA Batteries (4-pack),2,3.84,2019-02-05 20:31:00,912 Church St, Portland,OR,97035 +150990,34in Ultrawide Monitor,1,379.99,2019-02-16 18:05:00,420 9th St, Dallas,TX,75001 +150991,Flatscreen TV,1,300.0,2019-02-21 15:00:00,780 Spruce St, San Francisco,CA,94016 +150992,Wired Headphones,1,11.99,2019-02-19 14:15:00,525 Cedar St, Dallas,TX,75001 +150993,AA Batteries (4-pack),1,3.84,2019-02-02 19:36:00,719 Lake St, Dallas,TX,75001 +150994,34in Ultrawide Monitor,1,379.99,2019-02-22 16:02:00,892 Ridge St, Austin,TX,73301 +150995,USB-C Charging Cable,1,11.95,2019-02-16 14:54:00,8 12th St, Seattle,WA,98101 +150996,AAA Batteries (4-pack),1,2.99,2019-02-19 14:21:00,179 Pine St, New York City,NY,10001 +150997,Apple Airpods Headphones,1,150.0,2019-02-01 15:04:00,584 7th St, Dallas,TX,75001 +150998,Lightning Charging Cable,1,14.95,2019-02-22 09:50:00,645 Church St, San Francisco,CA,94016 +150999,AA Batteries (4-pack),1,3.84,2019-02-04 11:32:00,358 Dogwood St, Boston,MA,02215 +151000,AA Batteries (4-pack),1,3.84,2019-02-17 08:25:00,12 Dogwood St, Austin,TX,73301 +151001,34in Ultrawide Monitor,1,379.99,2019-02-08 13:15:00,46 Elm St, New York City,NY,10001 +151002,AAA Batteries (4-pack),1,2.99,2019-02-01 09:26:00,194 North St, Boston,MA,02215 +151003,AA Batteries (4-pack),2,3.84,2019-02-20 03:19:00,500 13th St, Seattle,WA,98101 +151004,USB-C Charging Cable,1,11.95,2019-02-23 09:25:00,501 Adams St, Austin,TX,73301 +151005,USB-C Charging Cable,1,11.95,2019-02-08 09:37:00,280 Chestnut St, Boston,MA,02215 +151006,Lightning Charging Cable,1,14.95,2019-02-05 20:59:00,502 Elm St, San Francisco,CA,94016 +151007,USB-C Charging Cable,2,11.95,2019-02-11 19:48:00,119 Lakeview St, Boston,MA,02215 +151008,AA Batteries (4-pack),2,3.84,2019-02-11 11:33:00,206 8th St, New York City,NY,10001 +151009,USB-C Charging Cable,1,11.95,2019-02-13 01:55:00,961 14th St, San Francisco,CA,94016 +151010,Apple Airpods Headphones,1,150.0,2019-02-09 10:28:00,653 5th St, San Francisco,CA,94016 +151011,iPhone,1,700.0,2019-02-06 10:05:00,74 14th St, San Francisco,CA,94016 +151012,USB-C Charging Cable,1,11.95,2019-02-16 14:38:00,397 Church St, Portland,OR,97035 +151013,27in FHD Monitor,1,149.99,2019-02-11 10:43:00,468 West St, Dallas,TX,75001 +151014,ThinkPad Laptop,1,999.99,2019-02-21 17:24:00,693 4th St, Atlanta,GA,30301 +151015,Bose SoundSport Headphones,1,99.99,2019-02-27 18:59:00,813 Adams St, Los Angeles,CA,90001 +151016,Bose SoundSport Headphones,1,99.99,2019-02-21 10:12:00,756 Pine St, Dallas,TX,75001 +151017,USB-C Charging Cable,1,11.95,2019-02-27 08:26:00,888 8th St, Seattle,WA,98101 +151018,34in Ultrawide Monitor,1,379.99,2019-02-05 09:18:00,896 Chestnut St, Los Angeles,CA,90001 +151019,Lightning Charging Cable,1,14.95,2019-02-04 17:11:00,398 Church St, Boston,MA,02215 +151020,Wired Headphones,1,11.99,2019-02-05 20:18:00,437 Lincoln St, Boston,MA,02215 +151021,AAA Batteries (4-pack),3,2.99,2019-02-02 09:49:00,92 13th St, San Francisco,CA,94016 +151022,AAA Batteries (4-pack),1,2.99,2019-02-24 17:34:00,11 Wilson St, Los Angeles,CA,90001 +151023,Wired Headphones,1,11.99,2019-02-25 11:47:00,407 Spruce St, Dallas,TX,75001 +151024,Wired Headphones,1,11.99,2019-02-19 08:39:00,35 Pine St, Portland,OR,97035 +151025,AA Batteries (4-pack),2,3.84,2019-02-21 20:44:00,994 Church St, San Francisco,CA,94016 +151026,Flatscreen TV,1,300.0,2019-02-12 18:25:00,730 Cedar St, Portland,OR,97035 +151027,34in Ultrawide Monitor,1,379.99,2019-02-24 16:26:00,151 Hill St, San Francisco,CA,94016 +151028,AAA Batteries (4-pack),1,2.99,2019-02-07 16:13:00,216 Lakeview St, Boston,MA,02215 +151029,USB-C Charging Cable,2,11.95,2019-02-17 17:38:00,84 Highland St, Dallas,TX,75001 +151030,Bose SoundSport Headphones,1,99.99,2019-02-16 00:22:00,951 10th St, San Francisco,CA,94016 +151031,AAA Batteries (4-pack),1,2.99,2019-02-07 12:37:00,671 5th St, Los Angeles,CA,90001 +151032,34in Ultrawide Monitor,1,379.99,2019-02-09 22:49:00,799 Park St, Dallas,TX,75001 +151033,Wired Headphones,1,11.99,2019-02-18 19:47:00,193 Walnut St, Seattle,WA,98101 +151034,Lightning Charging Cable,1,14.95,2019-02-15 18:20:00,780 Hickory St, Portland,OR,97035 +151035,27in FHD Monitor,1,149.99,2019-02-26 01:05:00,826 Elm St, Boston,MA,02215 +151036,Wired Headphones,1,11.99,2019-02-28 06:24:00,138 Ridge St, New York City,NY,10001 +151037,Apple Airpods Headphones,1,150.0,2019-02-12 21:13:00,53 Lakeview St, New York City,NY,10001 +151038,Bose SoundSport Headphones,1,99.99,2019-02-07 11:42:00,403 North St, San Francisco,CA,94016 +151039,Wired Headphones,1,11.99,2019-02-09 15:59:00,921 6th St, Dallas,TX,75001 +151040,AAA Batteries (4-pack),1,2.99,2019-02-05 23:17:00,233 North St, Boston,MA,02215 +151041,Lightning Charging Cable,1,14.95,2019-02-06 12:37:00,588 14th St, Atlanta,GA,30301 +151042,Wired Headphones,1,11.99,2019-02-06 10:44:00,657 Washington St, Los Angeles,CA,90001 +151043,AAA Batteries (4-pack),1,2.99,2019-02-16 21:05:00,120 Highland St, San Francisco,CA,94016 +151044,Lightning Charging Cable,1,14.95,2019-02-19 18:04:00,183 Meadow St, Los Angeles,CA,90001 +151045,Macbook Pro Laptop,1,1700.0,2019-02-26 15:55:00,393 Maple St, Dallas,TX,75001 +151046,AA Batteries (4-pack),2,3.84,2019-02-19 07:35:00,567 4th St, New York City,NY,10001 +151047,iPhone,1,700.0,2019-02-03 21:13:00,593 Forest St, New York City,NY,10001 +151047,Lightning Charging Cable,1,14.95,2019-02-03 21:13:00,593 Forest St, New York City,NY,10001 +151048,Lightning Charging Cable,1,14.95,2019-02-11 16:31:00,467 Sunset St, Los Angeles,CA,90001 +151049,AAA Batteries (4-pack),1,2.99,2019-02-27 16:41:00,296 5th St, Atlanta,GA,30301 +151050,AA Batteries (4-pack),2,3.84,2019-02-02 10:32:00,341 Lake St, Austin,TX,73301 +151051,iPhone,1,700.0,2019-02-06 17:01:00,374 Park St, Austin,TX,73301 +151052,AAA Batteries (4-pack),1,2.99,2019-02-10 03:38:00,19 Ridge St, New York City,NY,10001 +151053,iPhone,1,700.0,2019-02-14 21:13:00,964 Maple St, Dallas,TX,75001 +151053,Wired Headphones,1,11.99,2019-02-14 21:13:00,964 Maple St, Dallas,TX,75001 +151054,AA Batteries (4-pack),3,3.84,2019-02-11 00:21:00,758 Lake St, New York City,NY,10001 +151055,Wired Headphones,1,11.99,2019-02-02 18:42:00,630 2nd St, Austin,TX,73301 +151056,USB-C Charging Cable,1,11.95,2019-02-18 17:12:00,993 Spruce St, San Francisco,CA,94016 +151057,AA Batteries (4-pack),1,3.84,2019-02-01 19:21:00,975 Spruce St, San Francisco,CA,94016 +151058,AA Batteries (4-pack),1,3.84,2019-02-08 13:23:00,584 12th St, Los Angeles,CA,90001 +151059,Macbook Pro Laptop,1,1700.0,2019-02-21 10:29:00,203 6th St, San Francisco,CA,94016 +151060,Lightning Charging Cable,1,14.95,2019-02-15 21:49:00,15 Adams St, San Francisco,CA,94016 +151061,27in 4K Gaming Monitor,1,389.99,2019-02-01 23:05:00,57 Adams St, Atlanta,GA,30301 +151062,USB-C Charging Cable,1,11.95,2019-02-07 03:34:00,155 Madison St, Los Angeles,CA,90001 +151063,Wired Headphones,1,11.99,2019-02-16 12:59:00,340 Adams St, Portland,OR,97035 +151064,27in 4K Gaming Monitor,1,389.99,2019-02-26 07:47:00,315 Ridge St, Portland,OR,97035 +151065,AAA Batteries (4-pack),2,2.99,2019-02-12 11:59:00,471 Highland St, San Francisco,CA,94016 +151066,AA Batteries (4-pack),2,3.84,2019-02-05 20:46:00,650 2nd St, New York City,NY,10001 +151067,Google Phone,1,600.0,2019-02-28 19:20:00,429 Lake St, San Francisco,CA,94016 +151068,Wired Headphones,1,11.99,2019-02-17 16:36:00,598 Hill St, Atlanta,GA,30301 +151069,Apple Airpods Headphones,1,150.0,2019-02-06 10:11:00,265 Lake St, Los Angeles,CA,90001 +151070,Lightning Charging Cable,1,14.95,2019-02-26 07:23:00,64 Madison St, New York City,NY,10001 +151071,27in FHD Monitor,1,149.99,2019-02-14 12:37:00,461 13th St, Los Angeles,CA,90001 +151072,27in FHD Monitor,1,149.99,2019-02-09 15:16:00,475 Maple St, Atlanta,GA,30301 +151073,Lightning Charging Cable,1,14.95,2019-02-01 10:53:00,119 Washington St, Boston,MA,02215 +151074,USB-C Charging Cable,1,11.95,2019-02-24 19:13:00,718 River St, Portland,OR,97035 +151075,AA Batteries (4-pack),1,3.84,2019-02-19 16:20:00,296 5th St, Boston,MA,02215 +151076,Bose SoundSport Headphones,1,99.99,2019-02-18 13:10:00,76 9th St, Los Angeles,CA,90001 +151077,27in 4K Gaming Monitor,1,389.99,2019-02-24 11:10:00,792 Washington St, Los Angeles,CA,90001 +151078,USB-C Charging Cable,1,11.95,2019-02-11 16:14:00,205 North St, San Francisco,CA,94016 +151079,Flatscreen TV,1,300.0,2019-02-12 22:18:00,910 11th St, Seattle,WA,98101 +151080,iPhone,1,700.0,2019-02-17 20:17:00,369 Adams St, San Francisco,CA,94016 +151081,AAA Batteries (4-pack),1,2.99,2019-02-07 12:22:00,532 Willow St, Los Angeles,CA,90001 +151082,ThinkPad Laptop,1,999.99,2019-02-19 19:17:00,617 Highland St, New York City,NY,10001 +151083,34in Ultrawide Monitor,1,379.99,2019-02-15 21:03:00,401 Spruce St, Boston,MA,02215 +151084,USB-C Charging Cable,1,11.95,2019-02-19 17:15:00,705 Main St, Portland,OR,97035 +151085,Apple Airpods Headphones,1,150.0,2019-02-05 17:20:00,201 Meadow St, Seattle,WA,98101 +151086,AA Batteries (4-pack),1,3.84,2019-02-24 15:16:00,807 8th St, Austin,TX,73301 +151087,USB-C Charging Cable,1,11.95,2019-02-08 14:16:00,514 9th St, Atlanta,GA,30301 +151088,AAA Batteries (4-pack),3,2.99,2019-02-03 20:02:00,846 Elm St, Los Angeles,CA,90001 +151089,USB-C Charging Cable,2,11.95,2019-02-24 09:09:00,575 Jefferson St, Atlanta,GA,30301 +151090,LG Dryer,1,600.0,2019-02-08 09:57:00,884 Lincoln St, Boston,MA,02215 +151091,Lightning Charging Cable,1,14.95,2019-02-25 15:29:00,482 8th St, Austin,TX,73301 +151092,AA Batteries (4-pack),1,3.84,2019-02-07 19:51:00,419 Ridge St, Seattle,WA,98101 +151093,Flatscreen TV,1,300.0,2019-02-09 22:20:00,744 River St, Portland,OR,97035 +151094,Lightning Charging Cable,1,14.95,2019-02-09 13:26:00,821 West St, Austin,TX,73301 +151095,Wired Headphones,2,11.99,2019-02-02 08:41:00,607 Washington St, Boston,MA,02215 +151096,Wired Headphones,1,11.99,2019-02-16 19:04:00,33 6th St, Los Angeles,CA,90001 +151097,Apple Airpods Headphones,1,150.0,2019-02-09 11:02:00,636 South St, Portland,OR,97035 +151098,AA Batteries (4-pack),1,3.84,2019-02-11 13:13:00,718 Washington St, Boston,MA,02215 +151099,AAA Batteries (4-pack),3,2.99,2019-02-13 19:05:00,819 10th St, New York City,NY,10001 +151100,AAA Batteries (4-pack),2,2.99,2019-02-07 19:34:00,124 Elm St, Boston,MA,02215 +151101,Macbook Pro Laptop,1,1700.0,2019-02-25 21:46:00,580 11th St, Seattle,WA,98101 +151102,USB-C Charging Cable,1,11.95,2019-02-17 16:34:00,690 4th St, Dallas,TX,75001 +151103,Bose SoundSport Headphones,1,99.99,2019-02-18 21:24:00,216 Johnson St, San Francisco,CA,94016 +151104,Wired Headphones,1,11.99,2019-02-28 13:29:00,203 Main St, Atlanta,GA,30301 +151105,Apple Airpods Headphones,1,150.0,2019-02-10 09:51:00,218 9th St, San Francisco,CA,94016 +151106,AA Batteries (4-pack),1,3.84,2019-02-15 11:02:00,204 Elm St, Atlanta,GA,30301 +151107,Lightning Charging Cable,1,14.95,2019-02-12 09:29:00,382 5th St, San Francisco,CA,94016 +151108,27in 4K Gaming Monitor,1,389.99,2019-02-05 16:05:00,513 11th St, Los Angeles,CA,90001 +151109,iPhone,1,700.0,2019-02-14 18:56:00,933 Dogwood St, Atlanta,GA,30301 +151110,AAA Batteries (4-pack),1,2.99,2019-02-28 16:13:00,402 South St, San Francisco,CA,94016 +151110,Lightning Charging Cable,1,14.95,2019-02-28 16:13:00,402 South St, San Francisco,CA,94016 +151111,AA Batteries (4-pack),1,3.84,2019-02-23 18:42:00,681 12th St, San Francisco,CA,94016 +151112,Wired Headphones,1,11.99,2019-02-24 14:15:00,133 4th St, Boston,MA,02215 +151113,AAA Batteries (4-pack),2,2.99,2019-02-14 23:02:00,557 Jackson St, Los Angeles,CA,90001 +151114,USB-C Charging Cable,1,11.95,2019-02-01 15:18:00,530 Meadow St, Dallas,TX,75001 +151115,Apple Airpods Headphones,1,150.0,2019-02-13 17:55:00,91 North St, Boston,MA,02215 +151116,Bose SoundSport Headphones,1,99.99,2019-02-07 14:26:00,56 Lincoln St, San Francisco,CA,94016 +151117,AA Batteries (4-pack),4,3.84,2019-02-07 18:39:00,218 West St, Seattle,WA,98101 +151118,Apple Airpods Headphones,1,150.0,2019-02-08 14:19:00,710 Elm St, San Francisco,CA,94016 +151119,USB-C Charging Cable,1,11.95,2019-02-03 19:44:00,842 Park St, Boston,MA,02215 +151120,USB-C Charging Cable,1,11.95,2019-02-09 19:37:00,52 South St, San Francisco,CA,94016 +151121,LG Dryer,1,600.0,2019-02-28 20:14:00,550 North St, New York City,NY,10001 +151122,AAA Batteries (4-pack),1,2.99,2019-02-12 17:51:00,357 Wilson St, Atlanta,GA,30301 +151123,27in FHD Monitor,1,149.99,2019-02-24 23:32:00,103 Forest St, Los Angeles,CA,90001 +151124,Lightning Charging Cable,1,14.95,2019-02-14 16:51:00,102 1st St, San Francisco,CA,94016 +151125,AA Batteries (4-pack),1,3.84,2019-02-12 12:32:00,12 11th St, Atlanta,GA,30301 +151126,Wired Headphones,1,11.99,2019-02-22 12:12:00,760 River St, Atlanta,GA,30301 +151127,AAA Batteries (4-pack),1,2.99,2019-02-27 21:26:00,594 Jackson St, Seattle,WA,98101 +151128,Apple Airpods Headphones,1,150.0,2019-02-09 22:39:00,985 8th St, Portland,OR,97035 +151129,ThinkPad Laptop,1,999.99,2019-02-26 20:12:00,476 Lakeview St, Portland,OR,97035 +151130,Wired Headphones,1,11.99,2019-02-23 11:35:00,950 Chestnut St, Boston,MA,02215 +151131,Bose SoundSport Headphones,1,99.99,2019-02-10 20:09:00,496 Lakeview St, Atlanta,GA,30301 +151132,27in 4K Gaming Monitor,1,389.99,2019-02-26 15:00:00,111 North St, New York City,NY,10001 +151133,Lightning Charging Cable,1,14.95,2019-02-26 09:49:00,214 Ridge St, Atlanta,GA,30301 +151134,Wired Headphones,1,11.99,2019-02-16 14:11:00,413 Washington St, Dallas,TX,75001 +151135,USB-C Charging Cable,1,11.95,2019-02-18 10:22:00,866 Maple St, Los Angeles,CA,90001 +151136,AAA Batteries (4-pack),1,2.99,2019-02-07 22:11:00,198 Church St, Boston,MA,02215 +151137,27in 4K Gaming Monitor,1,389.99,2019-02-16 12:51:00,135 Wilson St, Boston,MA,02215 +151138,27in FHD Monitor,2,149.99,2019-02-13 17:14:00,579 Maple St, Dallas,TX,75001 +151139,Apple Airpods Headphones,1,150.0,2019-02-16 23:21:00,552 Washington St, Atlanta,GA,30301 +151140,USB-C Charging Cable,1,11.95,2019-02-22 14:45:00,679 Jefferson St, Los Angeles,CA,90001 +151141,USB-C Charging Cable,1,11.95,2019-02-16 15:35:00,745 Hill St, Seattle,WA,98101 +151142,iPhone,1,700.0,2019-02-02 10:11:00,116 Wilson St, Los Angeles,CA,90001 +151143,27in FHD Monitor,1,149.99,2019-02-06 10:54:00,120 Walnut St, San Francisco,CA,94016 +151144,USB-C Charging Cable,3,11.95,2019-02-25 13:29:00,565 South St, New York City,NY,10001 +151145,Google Phone,1,600.0,2019-02-28 10:55:00,296 Adams St, New York City,NY,10001 +151145,Wired Headphones,1,11.99,2019-02-28 10:55:00,296 Adams St, New York City,NY,10001 +151146,Wired Headphones,1,11.99,2019-02-28 20:40:00,45 River St, New York City,NY,10001 +151147,Vareebadd Phone,1,400.0,2019-02-01 11:04:00,141 Maple St, Los Angeles,CA,90001 +151148,Wired Headphones,1,11.99,2019-02-07 19:53:00,882 5th St, Dallas,TX,75001 +151149,Bose SoundSport Headphones,1,99.99,2019-02-15 19:46:00,261 Washington St, Boston,MA,02215 +151150,34in Ultrawide Monitor,1,379.99,2019-02-17 20:29:00,566 4th St, San Francisco,CA,94016 +151151,AAA Batteries (4-pack),1,2.99,2019-02-09 13:26:00,490 Cedar St, Seattle,WA,98101 +151152,20in Monitor,1,109.99,2019-02-07 22:41:00,278 Johnson St, Boston,MA,02215 +151153,AAA Batteries (4-pack),1,2.99,2019-02-14 16:09:00,803 Walnut St, Atlanta,GA,30301 +151154,Apple Airpods Headphones,1,150.0,2019-02-17 18:25:00,64 Dogwood St, Dallas,TX,75001 +151155,Bose SoundSport Headphones,1,99.99,2019-02-03 16:53:00,778 Washington St, New York City,NY,10001 +151156,Lightning Charging Cable,1,14.95,2019-02-04 15:14:00,600 Jackson St, San Francisco,CA,94016 +151157,Flatscreen TV,1,300.0,2019-02-16 11:44:00,769 13th St, Los Angeles,CA,90001 +151158,Wired Headphones,1,11.99,2019-02-26 11:33:00,454 Center St, Portland,OR,97035 +151159,USB-C Charging Cable,1,11.95,2019-02-08 12:26:00,599 South St, New York City,NY,10001 +151160,AA Batteries (4-pack),1,3.84,2019-02-12 22:40:00,187 Park St, Austin,TX,73301 +151161,Lightning Charging Cable,1,14.95,2019-02-09 22:27:00,950 14th St, San Francisco,CA,94016 +151162,Macbook Pro Laptop,1,1700.0,2019-02-12 20:36:00,365 14th St, New York City,NY,10001 +151163,AAA Batteries (4-pack),1,2.99,2019-02-20 01:15:00,424 Chestnut St, Portland,OR,97035 +151164,34in Ultrawide Monitor,1,379.99,2019-02-21 12:14:00,310 Cedar St, Boston,MA,02215 +151165,iPhone,1,700.0,2019-02-08 15:32:00,103 Park St, Atlanta,GA,30301 +151166,Wired Headphones,1,11.99,2019-02-02 17:02:00,775 Center St, Dallas,TX,75001 +151167,Lightning Charging Cable,2,14.95,2019-02-06 17:14:00,647 2nd St, Los Angeles,CA,90001 +151168,AAA Batteries (4-pack),1,2.99,2019-02-24 15:36:00,111 8th St, Seattle,WA,98101 +151169,AAA Batteries (4-pack),1,2.99,2019-02-18 23:46:00,106 Cedar St, San Francisco,CA,94016 +151170,34in Ultrawide Monitor,1,379.99,2019-02-01 17:29:00,625 Park St, Boston,MA,02215 +151171,AA Batteries (4-pack),2,3.84,2019-02-03 06:19:00,332 North St, Dallas,TX,75001 +151172,iPhone,1,700.0,2019-02-25 12:07:00,618 Walnut St, Austin,TX,73301 +151172,Wired Headphones,1,11.99,2019-02-25 12:07:00,618 Walnut St, Austin,TX,73301 +151173,AA Batteries (4-pack),2,3.84,2019-02-27 23:39:00,97 Wilson St, Portland,OR,97035 +151174,20in Monitor,1,109.99,2019-02-20 13:29:00,784 13th St, Seattle,WA,98101 +151175,Vareebadd Phone,1,400.0,2019-02-15 16:53:00,530 Cherry St, Austin,TX,73301 +151176,AAA Batteries (4-pack),1,2.99,2019-02-12 12:02:00,259 Spruce St, San Francisco,CA,94016 +151177,AAA Batteries (4-pack),2,2.99,2019-02-20 23:45:00,590 Walnut St, San Francisco,CA,94016 +151178,Google Phone,1,600.0,2019-02-15 21:02:00,540 Adams St, Dallas,TX,75001 +151179,Lightning Charging Cable,1,14.95,2019-02-02 15:47:00,152 Chestnut St, Atlanta,GA,30301 +151180,34in Ultrawide Monitor,1,379.99,2019-02-09 23:01:00,157 7th St, San Francisco,CA,94016 +151181,USB-C Charging Cable,1,11.95,2019-02-17 07:53:00,903 14th St, Los Angeles,CA,90001 +151182,Lightning Charging Cable,1,14.95,2019-02-27 23:29:00,800 8th St, Atlanta,GA,30301 +151182,34in Ultrawide Monitor,1,379.99,2019-02-27 23:29:00,800 8th St, Atlanta,GA,30301 +151183,Macbook Pro Laptop,1,1700.0,2019-02-02 14:15:00,729 Elm St, Dallas,TX,75001 +151184,AAA Batteries (4-pack),1,2.99,2019-02-17 18:23:00,34 7th St, Los Angeles,CA,90001 +151185,AAA Batteries (4-pack),1,2.99,2019-02-04 22:22:00,994 Meadow St, San Francisco,CA,94016 +151186,Wired Headphones,1,11.99,2019-02-14 00:22:00,644 Willow St, Los Angeles,CA,90001 +151187,AAA Batteries (4-pack),2,2.99,2019-02-25 11:50:00,126 Sunset St, Dallas,TX,75001 +151188,Lightning Charging Cable,1,14.95,2019-02-02 22:20:00,49 Washington St, New York City,NY,10001 +151189,USB-C Charging Cable,1,11.95,2019-02-17 11:23:00,30 7th St, San Francisco,CA,94016 +151190,Flatscreen TV,1,300.0,2019-02-16 18:43:00,640 West St, Boston,MA,02215 +151191,Lightning Charging Cable,1,14.95,2019-02-26 19:38:00,811 Meadow St, Austin,TX,73301 +151192,iPhone,1,700.0,2019-02-07 11:41:00,554 Jackson St, New York City,NY,10001 +151193,Lightning Charging Cable,1,14.95,2019-02-17 21:55:00,609 West St, New York City,NY,10001 +151194,iPhone,1,700.0,2019-02-27 13:21:00,627 Chestnut St, Los Angeles,CA,90001 +151195,USB-C Charging Cable,1,11.95,2019-02-02 16:28:00,977 Main St, San Francisco,CA,94016 +151196,USB-C Charging Cable,1,11.95,2019-02-17 12:20:00,756 Hickory St, San Francisco,CA,94016 +151197,Vareebadd Phone,1,400.0,2019-02-04 10:33:00,492 Dogwood St, Dallas,TX,75001 +151198,27in 4K Gaming Monitor,1,389.99,2019-02-20 10:49:00,511 Johnson St, Seattle,WA,98101 +151199,Google Phone,1,600.0,2019-02-10 19:35:00,740 Center St, Boston,MA,02215 +151200,Google Phone,1,600.0,2019-02-18 17:50:00,696 Maple St, San Francisco,CA,94016 +151201,AAA Batteries (4-pack),2,2.99,2019-02-24 01:19:00,135 Jackson St, Portland,OR,97035 +151202,Apple Airpods Headphones,1,150.0,2019-02-03 13:37:00,908 Sunset St, San Francisco,CA,94016 +151203,27in 4K Gaming Monitor,1,389.99,2019-02-12 18:18:00,542 Ridge St, Boston,MA,02215 +151204,Bose SoundSport Headphones,1,99.99,2019-02-07 21:01:00,263 West St, New York City,NY,10001 +151205,AA Batteries (4-pack),1,3.84,2019-02-19 16:40:00,267 Wilson St, Los Angeles,CA,90001 +151206,Apple Airpods Headphones,1,150.0,2019-02-23 12:19:00,536 5th St, San Francisco,CA,94016 +151207,USB-C Charging Cable,1,11.95,2019-02-03 16:37:00,364 South St, Los Angeles,CA,90001 +151208,Apple Airpods Headphones,1,150.0,2019-02-13 06:06:00,347 Washington St, Atlanta,GA,30301 +151209,USB-C Charging Cable,1,11.95,2019-02-17 15:37:00,983 Church St, Seattle,WA,98101 +151210,Macbook Pro Laptop,1,1700.0,2019-02-11 11:58:00,974 River St, Dallas,TX,75001 +151211,Wired Headphones,1,11.99,2019-02-09 10:31:00,405 1st St, Los Angeles,CA,90001 +151212,AA Batteries (4-pack),1,3.84,2019-02-24 07:08:00,783 11th St, Dallas,TX,75001 +151213,Lightning Charging Cable,1,14.95,2019-02-22 13:21:00,653 10th St, New York City,NY,10001 +151214,USB-C Charging Cable,1,11.95,2019-02-03 09:33:00,940 Chestnut St, San Francisco,CA,94016 +151215,AA Batteries (4-pack),2,3.84,2019-02-24 16:40:00,712 Forest St, Portland,OR,97035 +151216,iPhone,1,700.0,2019-02-08 10:09:00,179 Dogwood St, Dallas,TX,75001 +151216,Lightning Charging Cable,2,14.95,2019-02-08 10:09:00,179 Dogwood St, Dallas,TX,75001 +151217,34in Ultrawide Monitor,1,379.99,2019-02-13 18:43:00,960 Walnut St, Los Angeles,CA,90001 +151218,USB-C Charging Cable,1,11.95,2019-02-28 22:27:00,512 Madison St, Portland,OR,97035 +151219,Lightning Charging Cable,1,14.95,2019-02-14 19:38:00,348 Washington St, Portland,OR,97035 +151220,AA Batteries (4-pack),2,3.84,2019-02-01 17:36:00,100 Park St, New York City,NY,10001 +151221,Lightning Charging Cable,1,14.95,2019-02-26 17:08:00,912 5th St, Los Angeles,CA,90001 +151222,iPhone,1,700.0,2019-02-07 21:48:00,339 4th St, Portland,OR,97035 +151222,Apple Airpods Headphones,1,150.0,2019-02-07 21:48:00,339 4th St, Portland,OR,97035 +151223,Apple Airpods Headphones,1,150.0,2019-02-05 16:22:00,263 Meadow St, Austin,TX,73301 +151224,27in 4K Gaming Monitor,1,389.99,2019-02-26 11:01:00,703 1st St, Austin,TX,73301 +151225,Lightning Charging Cable,1,14.95,2019-02-01 16:10:00,915 River St, Dallas,TX,75001 +151226,Macbook Pro Laptop,1,1700.0,2019-02-18 12:37:00,698 7th St, Los Angeles,CA,90001 +151227,Lightning Charging Cable,1,14.95,2019-02-13 18:11:00,538 Meadow St, Austin,TX,73301 +151228,Wired Headphones,1,11.99,2019-02-25 15:02:00,305 Spruce St, Los Angeles,CA,90001 +151229,ThinkPad Laptop,1,999.99,2019-02-09 08:47:00,166 Maple St, Boston,MA,02215 +151230,Google Phone,1,600.0,2019-02-11 22:07:00,386 Willow St, New York City,NY,10001 +151231,Flatscreen TV,1,300.0,2019-02-15 14:52:00,432 Jefferson St, Dallas,TX,75001 +151232,USB-C Charging Cable,1,11.95,2019-02-02 18:53:00,810 Willow St, New York City,NY,10001 +151233,Apple Airpods Headphones,1,150.0,2019-02-12 08:46:00,773 Spruce St, San Francisco,CA,94016 +151234,AA Batteries (4-pack),1,3.84,2019-02-17 12:11:00,223 Meadow St, Atlanta,GA,30301 +151235,Apple Airpods Headphones,1,150.0,2019-02-25 14:43:00,585 2nd St, San Francisco,CA,94016 +151236,Macbook Pro Laptop,1,1700.0,2019-02-02 10:04:00,433 Dogwood St, Portland,OR,97035 +151237,Apple Airpods Headphones,1,150.0,2019-02-06 18:49:00,681 Adams St, San Francisco,CA,94016 +151238,Wired Headphones,1,11.99,2019-02-09 22:44:00,443 Maple St, San Francisco,CA,94016 +151239,AAA Batteries (4-pack),1,2.99,2019-02-25 17:40:00,894 1st St, Atlanta,GA,30301 +151240,Apple Airpods Headphones,1,150.0,2019-02-20 12:17:00,821 Lake St, New York City,NY,10001 +151241,iPhone,1,700.0,2019-02-08 12:10:00,626 Washington St, San Francisco,CA,94016 +151242,USB-C Charging Cable,1,11.95,2019-02-04 09:05:00,852 Forest St, New York City,NY,10001 +151243,USB-C Charging Cable,1,11.95,2019-02-25 07:20:00,610 Cherry St, Los Angeles,CA,90001 +151244,USB-C Charging Cable,1,11.95,2019-02-20 12:19:00,129 Lake St, Los Angeles,CA,90001 +151245,USB-C Charging Cable,1,11.95,2019-02-03 16:57:00,3 Main St, New York City,NY,10001 +151246,Wired Headphones,1,11.99,2019-02-05 16:00:00,436 8th St, New York City,NY,10001 +151247,Bose SoundSport Headphones,1,99.99,2019-02-22 18:35:00,730 Jefferson St, Dallas,TX,75001 +151248,Wired Headphones,1,11.99,2019-02-18 14:30:00,108 Jefferson St, Boston,MA,02215 +151249,AA Batteries (4-pack),1,3.84,2019-02-12 15:04:00,604 Ridge St, Dallas,TX,75001 +151250,Lightning Charging Cable,1,14.95,2019-02-10 21:17:00,912 Church St, Austin,TX,73301 +151251,Wired Headphones,1,11.99,2019-02-14 15:14:00,118 Adams St, San Francisco,CA,94016 +151252,USB-C Charging Cable,1,11.95,2019-02-12 21:45:00,867 Willow St, Los Angeles,CA,90001 +151253,Google Phone,1,600.0,2019-02-03 13:30:00,42 Highland St, Los Angeles,CA,90001 +151254,Apple Airpods Headphones,1,150.0,2019-02-05 21:38:00,649 Lake St, Dallas,TX,75001 +151255,34in Ultrawide Monitor,1,379.99,2019-02-14 23:30:00,72 Lake St, New York City,NY,10001 +151256,27in 4K Gaming Monitor,1,389.99,2019-02-04 11:53:00,93 Walnut St, New York City,NY,10001 +151257,27in FHD Monitor,1,149.99,2019-02-23 10:19:00,933 Lincoln St, San Francisco,CA,94016 +151258,Vareebadd Phone,1,400.0,2019-02-06 21:15:00,736 Jefferson St, New York City,NY,10001 +151258,USB-C Charging Cable,1,11.95,2019-02-06 21:15:00,736 Jefferson St, New York City,NY,10001 +151259,AAA Batteries (4-pack),1,2.99,2019-02-04 18:22:00,479 South St, Seattle,WA,98101 +151260,AAA Batteries (4-pack),1,2.99,2019-02-09 00:49:00,957 Meadow St, Los Angeles,CA,90001 +151261,USB-C Charging Cable,1,11.95,2019-02-26 14:15:00,946 14th St, Austin,TX,73301 +151262,iPhone,1,700.0,2019-02-10 10:07:00,840 Wilson St, Seattle,WA,98101 +151262,Lightning Charging Cable,2,14.95,2019-02-10 10:07:00,840 Wilson St, Seattle,WA,98101 +151263,AAA Batteries (4-pack),2,2.99,2019-02-02 21:02:00,39 13th St, Los Angeles,CA,90001 +151264,Bose SoundSport Headphones,1,99.99,2019-02-25 11:24:00,960 Madison St, Boston,MA,02215 +151265,Bose SoundSport Headphones,1,99.99,2019-02-27 04:34:00,979 Elm St, Atlanta,GA,30301 +151266,AAA Batteries (4-pack),1,2.99,2019-02-27 01:30:00,371 Cherry St, Los Angeles,CA,90001 +151267,Lightning Charging Cable,1,14.95,2019-02-28 13:52:00,861 4th St, Los Angeles,CA,90001 +151268,Flatscreen TV,1,300.0,2019-02-15 08:18:00,454 West St, Portland,OR,97035 +151269,Apple Airpods Headphones,1,150.0,2019-02-21 16:18:00,999 2nd St, Seattle,WA,98101 +151270,LG Washing Machine,1,600.0,2019-02-20 15:29:00,634 Walnut St, Dallas,TX,75001 +151270,Google Phone,1,600.0,2019-02-20 15:29:00,634 Walnut St, Dallas,TX,75001 +151271,AAA Batteries (4-pack),1,2.99,2019-02-25 18:53:00,577 13th St, San Francisco,CA,94016 +151272,Wired Headphones,1,11.99,2019-02-01 15:32:00,34 Dogwood St, San Francisco,CA,94016 +151273,AAA Batteries (4-pack),1,2.99,2019-02-10 16:27:00,715 5th St, San Francisco,CA,94016 +151274,Bose SoundSport Headphones,1,99.99,2019-02-05 00:58:00,83 Highland St, New York City,NY,10001 +151275,Apple Airpods Headphones,1,150.0,2019-02-15 11:44:00,542 Ridge St, Atlanta,GA,30301 +151276,USB-C Charging Cable,1,11.95,2019-02-05 19:56:00,446 13th St, Dallas,TX,75001 +151277,iPhone,1,700.0,2019-02-02 19:27:00,921 Pine St, San Francisco,CA,94016 +151277,Wired Headphones,1,11.99,2019-02-02 19:27:00,921 Pine St, San Francisco,CA,94016 +151278,Apple Airpods Headphones,1,150.0,2019-02-05 17:03:00,515 1st St, Boston,MA,02215 +151279,AA Batteries (4-pack),2,3.84,2019-02-21 10:10:00,218 Madison St, Dallas,TX,75001 +151280,27in 4K Gaming Monitor,1,389.99,2019-02-27 11:05:00,880 Lakeview St, Dallas,TX,75001 +151281,USB-C Charging Cable,1,11.95,2019-02-10 22:18:00,58 Jefferson St, Los Angeles,CA,90001 +151282,USB-C Charging Cable,1,11.95,2019-02-20 20:05:00,907 Lakeview St, San Francisco,CA,94016 +151283,Google Phone,1,600.0,2019-02-02 17:57:00,718 Elm St, Los Angeles,CA,90001 +151283,USB-C Charging Cable,1,11.95,2019-02-02 17:57:00,718 Elm St, Los Angeles,CA,90001 +151284,ThinkPad Laptop,1,999.99,2019-02-17 22:12:00,167 Lake St, San Francisco,CA,94016 +151285,27in 4K Gaming Monitor,1,389.99,2019-02-18 11:01:00,299 Madison St, New York City,NY,10001 +151286,Flatscreen TV,1,300.0,2019-02-03 15:08:00,590 South St, Atlanta,GA,30301 +151287,iPhone,1,700.0,2019-02-26 22:48:00,108 10th St, Dallas,TX,75001 +151287,USB-C Charging Cable,1,11.95,2019-02-26 22:48:00,108 10th St, Dallas,TX,75001 +151288,USB-C Charging Cable,1,11.95,2019-02-23 09:50:00,319 Spruce St, Boston,MA,02215 +151289,AA Batteries (4-pack),2,3.84,2019-02-24 14:45:00,671 Sunset St, Los Angeles,CA,90001 +151290,Lightning Charging Cable,1,14.95,2019-02-01 09:18:00,485 River St, San Francisco,CA,94016 +151291,Lightning Charging Cable,1,14.95,2019-02-25 14:37:00,178 Sunset St, Los Angeles,CA,90001 +151292,iPhone,1,700.0,2019-02-05 20:29:00,592 7th St, San Francisco,CA,94016 +151293,Lightning Charging Cable,1,14.95,2019-02-01 15:09:00,72 Lincoln St, Los Angeles,CA,90001 +151294,27in FHD Monitor,1,149.99,2019-02-21 17:36:00,533 Walnut St, San Francisco,CA,94016 +151295,iPhone,1,700.0,2019-02-22 16:39:00,212 Dogwood St, San Francisco,CA,94016 +151296,Apple Airpods Headphones,1,150.0,2019-02-27 19:02:00,165 Highland St, Dallas,TX,75001 +151297,AAA Batteries (4-pack),1,2.99,2019-02-20 19:57:00,458 Ridge St, Boston,MA,02215 +151298,Google Phone,1,600.0,2019-02-18 10:43:00,638 Maple St, San Francisco,CA,94016 +151299,LG Washing Machine,1,600.0,2019-02-21 16:24:00,532 Park St, Los Angeles,CA,90001 +151299,Wired Headphones,2,11.99,2019-02-21 16:24:00,532 Park St, Los Angeles,CA,90001 +151300,Bose SoundSport Headphones,1,99.99,2019-02-27 09:05:00,862 Hill St, Los Angeles,CA,90001 +151301,27in 4K Gaming Monitor,1,389.99,2019-02-06 12:53:00,147 Spruce St, Los Angeles,CA,90001 +151302,27in FHD Monitor,1,149.99,2019-02-19 14:09:00,589 Spruce St, Portland,OR,97035 +151303,iPhone,1,700.0,2019-02-01 08:30:00,48 Ridge St, Los Angeles,CA,90001 +151304,Apple Airpods Headphones,1,150.0,2019-02-20 13:49:00,869 South St, San Francisco,CA,94016 +151305,USB-C Charging Cable,1,11.95,2019-02-25 16:34:00,867 Church St, San Francisco,CA,94016 +151306,Bose SoundSport Headphones,1,99.99,2019-02-26 17:10:00,15 Walnut St, Boston,MA,02215 +151307,20in Monitor,1,109.99,2019-02-01 22:27:00,957 Johnson St, San Francisco,CA,94016 +151308,iPhone,1,700.0,2019-02-08 13:26:00,408 Madison St, Los Angeles,CA,90001 +151308,Wired Headphones,1,11.99,2019-02-08 13:26:00,408 Madison St, Los Angeles,CA,90001 +151309,USB-C Charging Cable,1,11.95,2019-02-10 07:12:00,9 Lincoln St, Portland,OR,97035 +151310,Bose SoundSport Headphones,1,99.99,2019-02-03 20:55:00,414 Adams St, New York City,NY,10001 +151311,AAA Batteries (4-pack),1,2.99,2019-02-06 20:06:00,348 Pine St, Austin,TX,73301 +151312,AA Batteries (4-pack),1,3.84,2019-02-27 19:10:00,213 Willow St, Los Angeles,CA,90001 +151313,AAA Batteries (4-pack),1,2.99,2019-02-10 20:39:00,21 1st St, New York City,NY,10001 +151313,USB-C Charging Cable,1,11.95,2019-02-10 20:39:00,21 1st St, New York City,NY,10001 +151314,27in 4K Gaming Monitor,1,389.99,2019-02-11 10:37:00,574 West St, Boston,MA,02215 +151315,Wired Headphones,1,11.99,2019-02-06 15:21:00,631 Madison St, San Francisco,CA,94016 +151316,USB-C Charging Cable,1,11.95,2019-02-21 12:42:00,628 14th St, San Francisco,CA,94016 +151317,Lightning Charging Cable,1,14.95,2019-02-01 08:25:00,240 Highland St, San Francisco,CA,94016 +151318,Apple Airpods Headphones,1,150.0,2019-02-24 21:36:00,609 Main St, San Francisco,CA,94016 +151319,Lightning Charging Cable,1,14.95,2019-02-22 13:23:00,372 10th St, San Francisco,CA,94016 +151320,20in Monitor,1,109.99,2019-02-09 15:27:00,449 Wilson St, Dallas,TX,75001 +151321,USB-C Charging Cable,1,11.95,2019-02-20 11:12:00,336 11th St, Boston,MA,02215 +151322,20in Monitor,1,109.99,2019-02-24 11:22:00,232 Sunset St, New York City,NY,10001 +151323,Bose SoundSport Headphones,1,99.99,2019-02-01 17:39:00,948 13th St, Portland,OR,97035 +151324,Lightning Charging Cable,1,14.95,2019-02-21 00:04:00,668 Lincoln St, Seattle,WA,98101 +151325,34in Ultrawide Monitor,1,379.99,2019-02-23 09:23:00,217 West St, San Francisco,CA,94016 +151326,27in FHD Monitor,1,149.99,2019-02-04 18:54:00,837 Meadow St, Atlanta,GA,30301 +151327,34in Ultrawide Monitor,1,379.99,2019-02-09 16:20:00,214 4th St, Austin,TX,73301 +151328,27in 4K Gaming Monitor,1,389.99,2019-02-23 23:29:00,454 Forest St, Seattle,WA,98101 +151329,USB-C Charging Cable,1,11.95,2019-02-10 11:34:00,314 Elm St, San Francisco,CA,94016 +151330,USB-C Charging Cable,1,11.95,2019-02-21 08:17:00,648 Chestnut St, Austin,TX,73301 +151331,AAA Batteries (4-pack),1,2.99,2019-02-10 11:13:00,668 Pine St, Los Angeles,CA,90001 +151332,27in 4K Gaming Monitor,1,389.99,2019-02-20 14:11:00,230 Willow St, Austin,TX,73301 +151333,Apple Airpods Headphones,1,150.0,2019-02-20 14:14:00,684 Highland St, Los Angeles,CA,90001 +151334,Wired Headphones,1,11.99,2019-02-13 19:34:00,691 Walnut St, Austin,TX,73301 +151335,Wired Headphones,1,11.99,2019-02-11 22:25:00,260 Pine St, Los Angeles,CA,90001 +151336,Bose SoundSport Headphones,1,99.99,2019-02-08 08:07:00,860 Highland St, New York City,NY,10001 +151337,Lightning Charging Cable,1,14.95,2019-02-19 12:33:00,859 Lake St, Los Angeles,CA,90001 +151338,ThinkPad Laptop,1,999.99,2019-02-22 09:50:00,318 Sunset St, Seattle,WA,98101 +151339,USB-C Charging Cable,1,11.95,2019-02-01 21:17:00,87 Washington St, New York City,NY,10001 +151340,Wired Headphones,1,11.99,2019-02-07 21:58:00,226 Washington St, Los Angeles,CA,90001 +151341,Lightning Charging Cable,1,14.95,2019-02-09 15:20:00,97 4th St, New York City,NY,10001 +151342,Apple Airpods Headphones,1,150.0,2019-02-23 09:28:00,625 Madison St, Los Angeles,CA,90001 +151343,27in 4K Gaming Monitor,1,389.99,2019-02-28 10:39:00,938 Walnut St, San Francisco,CA,94016 +151344,Macbook Pro Laptop,1,1700.0,2019-02-27 12:29:00,512 Adams St, Seattle,WA,98101 +151345,Macbook Pro Laptop,1,1700.0,2019-02-23 16:21:00,958 8th St, Austin,TX,73301 +151346,27in FHD Monitor,1,149.99,2019-02-04 13:07:00,430 Ridge St, Boston,MA,02215 +151347,Lightning Charging Cable,2,14.95,2019-02-28 06:44:00,367 Spruce St, Boston,MA,02215 +151348,27in FHD Monitor,1,149.99,2019-02-14 21:49:00,761 Cedar St, Los Angeles,CA,90001 +151349,Wired Headphones,1,11.99,2019-02-04 10:09:00,829 West St, Austin,TX,73301 +151350,Apple Airpods Headphones,1,150.0,2019-02-02 22:03:00,427 7th St, Seattle,WA,98101 +151351,USB-C Charging Cable,1,11.95,2019-02-07 12:16:00,1 Sunset St, New York City,NY,10001 +151352,Google Phone,1,600.0,2019-02-13 18:23:00,430 Cherry St, San Francisco,CA,94016 +151353,Wired Headphones,2,11.99,2019-02-23 08:45:00,429 12th St, San Francisco,CA,94016 +151354,Bose SoundSport Headphones,1,99.99,2019-02-20 15:53:00,13 Johnson St, Los Angeles,CA,90001 +151355,AA Batteries (4-pack),1,3.84,2019-02-05 11:36:00,988 Willow St, San Francisco,CA,94016 +151356,Lightning Charging Cable,1,14.95,2019-02-12 00:37:00,676 7th St, Los Angeles,CA,90001 +151357,AA Batteries (4-pack),1,3.84,2019-02-04 21:52:00,122 13th St, San Francisco,CA,94016 +151358,AA Batteries (4-pack),1,3.84,2019-02-19 10:14:00,334 Lincoln St, San Francisco,CA,94016 +151359,Google Phone,1,600.0,2019-02-10 09:06:00,386 Main St, New York City,NY,10001 +151360,27in FHD Monitor,1,149.99,2019-02-02 23:17:00,120 14th St, San Francisco,CA,94016 +151361,34in Ultrawide Monitor,1,379.99,2019-02-14 14:52:00,53 6th St, Boston,MA,02215 +151362,Apple Airpods Headphones,1,150.0,2019-02-25 12:58:00,692 1st St, San Francisco,CA,94016 +151363,AA Batteries (4-pack),2,3.84,2019-02-08 13:48:00,86 Sunset St, New York City,NY,10001 +151364,Apple Airpods Headphones,1,150.0,2019-02-10 13:43:00,52 1st St, Los Angeles,CA,90001 +151365,Wired Headphones,1,11.99,2019-02-26 18:50:00,108 Jackson St, San Francisco,CA,94016 +151366,ThinkPad Laptop,1,999.99,2019-02-19 14:51:00,144 North St, Seattle,WA,98101 +151367,ThinkPad Laptop,1,999.99,2019-02-13 22:38:00,557 Cherry St, Boston,MA,02215 +151368,iPhone,1,700.0,2019-02-07 20:39:00,994 Jackson St, Los Angeles,CA,90001 +151369,Apple Airpods Headphones,1,150.0,2019-02-17 19:51:00,878 Meadow St, New York City,NY,10001 +151370,ThinkPad Laptop,1,999.99,2019-02-05 13:45:00,353 Hickory St, New York City,NY,10001 +151371,USB-C Charging Cable,1,11.95,2019-02-28 20:01:00,514 14th St, New York City,NY,10001 +151372,USB-C Charging Cable,1,11.95,2019-02-21 13:37:00,194 South St, San Francisco,CA,94016 +151373,27in 4K Gaming Monitor,1,389.99,2019-02-06 20:20:00,658 River St, Los Angeles,CA,90001 +151374,AA Batteries (4-pack),1,3.84,2019-02-18 09:13:00,998 Dogwood St, San Francisco,CA,94016 +151375,ThinkPad Laptop,1,999.99,2019-02-25 11:01:00,398 Washington St, New York City,NY,10001 +151376,20in Monitor,1,109.99,2019-02-18 08:43:00,265 Lakeview St, Dallas,TX,75001 +151377,Wired Headphones,1,11.99,2019-02-20 19:43:00,35 North St, New York City,NY,10001 +151378,AA Batteries (4-pack),1,3.84,2019-02-04 08:29:00,160 Jefferson St, Los Angeles,CA,90001 +151379,AA Batteries (4-pack),2,3.84,2019-02-10 16:29:00,669 Adams St, Portland,OR,97035 +151380,Wired Headphones,1,11.99,2019-02-18 01:03:00,678 12th St, Los Angeles,CA,90001 +151381,20in Monitor,1,109.99,2019-02-20 15:26:00,122 Johnson St, Los Angeles,CA,90001 +151382,Wired Headphones,1,11.99,2019-02-21 09:31:00,135 Maple St, San Francisco,CA,94016 +151383,AA Batteries (4-pack),1,3.84,2019-02-26 12:10:00,262 Jackson St, San Francisco,CA,94016 +151384,Wired Headphones,1,11.99,2019-02-06 13:38:00,596 Elm St, Austin,TX,73301 +151385,Wired Headphones,2,11.99,2019-02-01 21:39:00,126 14th St, San Francisco,CA,94016 +151386,34in Ultrawide Monitor,1,379.99,2019-02-18 15:25:00,78 4th St, Seattle,WA,98101 +151387,USB-C Charging Cable,1,11.95,2019-02-19 10:34:00,725 North St, Seattle,WA,98101 +151388,Wired Headphones,1,11.99,2019-02-03 20:09:00,288 Meadow St, San Francisco,CA,94016 +151389,AA Batteries (4-pack),1,3.84,2019-02-06 12:19:00,483 Cherry St, Portland,OR,97035 +151390,Bose SoundSport Headphones,1,99.99,2019-02-17 12:09:00,211 11th St, Boston,MA,02215 +151391,34in Ultrawide Monitor,1,379.99,2019-02-23 10:30:00,448 12th St, Seattle,WA,98101 +151392,USB-C Charging Cable,1,11.95,2019-02-16 06:47:00,26 West St, New York City,NY,10001 +151393,Lightning Charging Cable,1,14.95,2019-02-08 19:06:00,192 Walnut St, Los Angeles,CA,90001 +151394,Lightning Charging Cable,1,14.95,2019-02-16 10:25:00,498 Adams St, Seattle,WA,98101 +151395,AA Batteries (4-pack),1,3.84,2019-02-19 15:15:00,5 Cherry St, San Francisco,CA,94016 +151396,Wired Headphones,2,11.99,2019-02-26 13:11:00,992 Lake St, San Francisco,CA,94016 +151397,Macbook Pro Laptop,1,1700.0,2019-02-21 18:22:00,802 Chestnut St, Atlanta,GA,30301 +151397,27in FHD Monitor,1,149.99,2019-02-21 18:22:00,802 Chestnut St, Atlanta,GA,30301 +151398,AAA Batteries (4-pack),1,2.99,2019-02-26 23:17:00,150 Center St, Boston,MA,02215 +151399,27in 4K Gaming Monitor,1,389.99,2019-02-02 07:08:00,978 Walnut St, San Francisco,CA,94016 +151400,27in FHD Monitor,1,149.99,2019-02-07 21:08:00,452 Main St, San Francisco,CA,94016 +151401,Wired Headphones,1,11.99,2019-02-07 14:43:00,857 West St, San Francisco,CA,94016 +151402,Lightning Charging Cable,1,14.95,2019-02-25 08:50:00,557 11th St, Los Angeles,CA,90001 +151403,Google Phone,1,600.0,2019-02-04 09:48:00,638 9th St, Dallas,TX,75001 +151403,USB-C Charging Cable,1,11.95,2019-02-04 09:48:00,638 9th St, Dallas,TX,75001 +151404,Bose SoundSport Headphones,1,99.99,2019-02-12 21:45:00,132 River St, Los Angeles,CA,90001 +151405,AAA Batteries (4-pack),1,2.99,2019-02-22 17:15:00,723 Ridge St, Portland,OR,97035 +151406,AA Batteries (4-pack),4,3.84,2019-02-24 14:32:00,537 Lake St, Seattle,WA,98101 +151407,AAA Batteries (4-pack),3,2.99,2019-02-13 12:56:00,940 Adams St, San Francisco,CA,94016 +151408,USB-C Charging Cable,1,11.95,2019-02-12 23:24:00,813 9th St, San Francisco,CA,94016 +151409,Bose SoundSport Headphones,1,99.99,2019-02-25 08:52:00,121 Walnut St, Austin,TX,73301 +151410,Wired Headphones,1,11.99,2019-02-26 09:02:00,79 Church St, Boston,MA,02215 +151411,Apple Airpods Headphones,1,150.0,2019-02-11 18:29:00,918 1st St, San Francisco,CA,94016 +151412,iPhone,1,700.0,2019-02-16 10:20:00,225 5th St, New York City,NY,10001 +151413,USB-C Charging Cable,1,11.95,2019-02-04 11:44:00,517 2nd St, Portland,OR,97035 +151414,Lightning Charging Cable,1,14.95,2019-02-17 19:03:00,242 13th St, New York City,NY,10001 +151414,34in Ultrawide Monitor,1,379.99,2019-02-17 19:03:00,242 13th St, New York City,NY,10001 +151415,Bose SoundSport Headphones,1,99.99,2019-02-25 15:11:00,454 12th St, New York City,NY,10001 +151416,Bose SoundSport Headphones,1,99.99,2019-02-11 11:04:00,329 Meadow St, Seattle,WA,98101 +151417,Wired Headphones,1,11.99,2019-02-24 22:50:00,571 Spruce St, San Francisco,CA,94016 +151418,AAA Batteries (4-pack),1,2.99,2019-02-18 16:43:00,264 Sunset St, Atlanta,GA,30301 +151419,Wired Headphones,1,11.99,2019-02-19 15:42:00,535 9th St, New York City,NY,10001 +151420,Bose SoundSport Headphones,1,99.99,2019-02-06 00:29:00,303 Sunset St, New York City,NY,10001 +151421,Apple Airpods Headphones,1,150.0,2019-02-21 20:18:00,164 8th St, Boston,MA,02215 +151422,iPhone,1,700.0,2019-02-21 21:19:00,865 4th St, San Francisco,CA,94016 +151423,27in FHD Monitor,1,149.99,2019-02-14 16:54:00,286 Maple St, San Francisco,CA,94016 +151424,20in Monitor,1,109.99,2019-02-13 14:10:00,850 Meadow St, Dallas,TX,75001 +151425,Google Phone,1,600.0,2019-02-18 10:08:00,559 Meadow St, San Francisco,CA,94016 +151426,Flatscreen TV,1,300.0,2019-02-19 19:21:00,851 River St, Los Angeles,CA,90001 +151427,Apple Airpods Headphones,1,150.0,2019-02-03 13:42:00,86 South St, Portland,OR,97035 +151428,AA Batteries (4-pack),1,3.84,2019-02-17 07:18:00,851 Park St, Los Angeles,CA,90001 +151429,Wired Headphones,1,11.99,2019-02-27 21:15:00,902 Washington St, San Francisco,CA,94016 +151430,USB-C Charging Cable,1,11.95,2019-02-14 11:04:00,14 2nd St, Los Angeles,CA,90001 +151431,Flatscreen TV,1,300.0,2019-02-01 11:57:00,693 11th St, San Francisco,CA,94016 +151432,AA Batteries (4-pack),2,3.84,2019-02-15 19:38:00,183 5th St, Boston,MA,02215 +151433,AAA Batteries (4-pack),1,2.99,2019-02-12 02:35:00,593 Pine St, San Francisco,CA,94016 +151434,Apple Airpods Headphones,1,150.0,2019-02-21 12:39:00,588 8th St, Seattle,WA,98101 +151435,USB-C Charging Cable,1,11.95,2019-02-11 19:09:00,731 Hickory St, San Francisco,CA,94016 +151436,Lightning Charging Cable,1,14.95,2019-02-20 10:11:00,991 Madison St, Los Angeles,CA,90001 +151436,Apple Airpods Headphones,1,150.0,2019-02-20 10:11:00,991 Madison St, Los Angeles,CA,90001 +151437,iPhone,1,700.0,2019-02-03 14:09:00,126 11th St, Boston,MA,02215 +151438,27in FHD Monitor,1,149.99,2019-02-11 18:59:00,417 Adams St, Dallas,TX,75001 +151439,Wired Headphones,1,11.99,2019-02-17 13:20:00,838 13th St, Austin,TX,73301 +151440,Lightning Charging Cable,1,14.95,2019-02-23 18:22:00,361 Madison St, Los Angeles,CA,90001 +151441,AA Batteries (4-pack),3,3.84,2019-02-17 20:55:00,699 6th St, New York City,NY,10001 +151442,27in FHD Monitor,1,149.99,2019-02-14 03:30:00,174 Church St, Dallas,TX,75001 +151443,AAA Batteries (4-pack),2,2.99,2019-02-01 20:27:00,9 Ridge St, Portland,OR,97035 +151444,Wired Headphones,2,11.99,2019-02-25 14:04:00,519 Cedar St, San Francisco,CA,94016 +151445,AAA Batteries (4-pack),1,2.99,2019-02-24 12:46:00,723 12th St, Atlanta,GA,30301 +151446,34in Ultrawide Monitor,1,379.99,2019-02-13 12:28:00,654 South St, Los Angeles,CA,90001 +151447,USB-C Charging Cable,1,11.95,2019-02-07 09:52:00,75 Lincoln St, Boston,MA,02215 +151448,Lightning Charging Cable,1,14.95,2019-02-22 22:16:00,161 Lake St, San Francisco,CA,94016 +151449,Bose SoundSport Headphones,1,99.99,2019-02-10 10:30:00,570 Spruce St, Los Angeles,CA,90001 +151450,34in Ultrawide Monitor,1,379.99,2019-02-19 18:28:00,390 Hickory St, San Francisco,CA,94016 +151451,Apple Airpods Headphones,1,150.0,2019-02-02 21:21:00,327 6th St, Los Angeles,CA,90001 +151452,iPhone,1,700.0,2019-02-05 21:20:00,826 River St, Atlanta,GA,30301 +151453,Lightning Charging Cable,1,14.95,2019-02-05 20:21:00,182 Pine St, Dallas,TX,75001 +151454,Google Phone,1,600.0,2019-02-15 22:02:00,799 13th St, Los Angeles,CA,90001 +151455,Apple Airpods Headphones,1,150.0,2019-02-22 21:00:00,155 Spruce St, Atlanta,GA,30301 +151456,AAA Batteries (4-pack),1,2.99,2019-02-19 07:02:00,879 Forest St, San Francisco,CA,94016 +151457,AAA Batteries (4-pack),2,2.99,2019-02-08 11:30:00,424 11th St, Portland,ME,04101 +151458,USB-C Charging Cable,1,11.95,2019-02-03 14:46:00,217 Forest St, New York City,NY,10001 +151459,Bose SoundSport Headphones,1,99.99,2019-02-12 09:11:00,96 West St, Seattle,WA,98101 +151460,Lightning Charging Cable,1,14.95,2019-02-21 12:27:00,104 Park St, Atlanta,GA,30301 +151461,Wired Headphones,2,11.99,2019-02-10 20:57:00,926 Lincoln St, New York City,NY,10001 +151462,AA Batteries (4-pack),3,3.84,2019-02-13 20:06:00,915 Johnson St, San Francisco,CA,94016 +151463,Lightning Charging Cable,1,14.95,2019-02-27 12:04:00,924 Wilson St, Dallas,TX,75001 +151464,AA Batteries (4-pack),1,3.84,2019-02-11 14:11:00,338 8th St, Los Angeles,CA,90001 +151465,20in Monitor,1,109.99,2019-02-21 21:38:00,288 8th St, San Francisco,CA,94016 +151466,20in Monitor,1,109.99,2019-02-18 22:40:00,132 Wilson St, Austin,TX,73301 +151467,Google Phone,1,600.0,2019-02-17 13:20:00,43 Highland St, Atlanta,GA,30301 +151468,Google Phone,1,600.0,2019-02-13 11:33:00,988 Washington St, San Francisco,CA,94016 +151469,Google Phone,1,600.0,2019-02-16 13:51:00,632 11th St, San Francisco,CA,94016 +151470,27in FHD Monitor,1,149.99,2019-02-18 14:17:00,188 14th St, Boston,MA,02215 +151471,Flatscreen TV,1,300.0,2019-02-09 13:34:00,602 13th St, Atlanta,GA,30301 +151472,Lightning Charging Cable,1,14.95,2019-02-27 19:25:00,968 5th St, New York City,NY,10001 +151473,AAA Batteries (4-pack),1,2.99,2019-02-07 11:48:00,108 Elm St, San Francisco,CA,94016 +151474,Bose SoundSport Headphones,1,99.99,2019-02-23 17:55:00,954 Johnson St, Dallas,TX,75001 +151475,AA Batteries (4-pack),2,3.84,2019-02-11 23:13:00,983 Johnson St, San Francisco,CA,94016 +151476,AAA Batteries (4-pack),1,2.99,2019-02-18 12:09:00,519 1st St, Los Angeles,CA,90001 +151477,Macbook Pro Laptop,1,1700.0,2019-02-16 20:59:00,190 Pine St, New York City,NY,10001 +151478,AAA Batteries (4-pack),1,2.99,2019-02-01 18:18:00,405 Ridge St, Boston,MA,02215 +151479,ThinkPad Laptop,1,999.99,2019-02-06 13:40:00,956 Meadow St, Dallas,TX,75001 +151480,34in Ultrawide Monitor,1,379.99,2019-02-03 19:00:00,583 Center St, Boston,MA,02215 +151481,Wired Headphones,1,11.99,2019-02-18 23:29:00,881 12th St, Seattle,WA,98101 +151482,34in Ultrawide Monitor,1,379.99,2019-02-08 15:57:00,397 Park St, Dallas,TX,75001 +151483,USB-C Charging Cable,1,11.95,2019-02-19 08:47:00,16 Lincoln St, Los Angeles,CA,90001 +151484,AA Batteries (4-pack),1,3.84,2019-02-26 23:08:00,10 West St, Portland,OR,97035 +151485,Apple Airpods Headphones,1,150.0,2019-02-19 21:16:00,921 Washington St, Los Angeles,CA,90001 +151486,Wired Headphones,1,11.99,2019-02-04 08:03:00,515 North St, Dallas,TX,75001 +151487,AA Batteries (4-pack),1,3.84,2019-02-27 12:10:00,499 Jackson St, Los Angeles,CA,90001 +151488,Apple Airpods Headphones,1,150.0,2019-02-26 16:55:00,801 Lake St, Atlanta,GA,30301 +151489,AAA Batteries (4-pack),1,2.99,2019-02-07 10:53:00,160 Washington St, New York City,NY,10001 +151490,27in FHD Monitor,1,149.99,2019-02-13 15:10:00,668 Willow St, New York City,NY,10001 +151491,Apple Airpods Headphones,1,150.0,2019-02-10 21:20:00,767 Church St, Dallas,TX,75001 +151492,USB-C Charging Cable,1,11.95,2019-02-12 15:43:00,484 Park St, Los Angeles,CA,90001 +151493,AA Batteries (4-pack),1,3.84,2019-02-27 14:27:00,273 Adams St, Portland,ME,04101 +151494,Apple Airpods Headphones,1,150.0,2019-02-21 21:06:00,758 12th St, San Francisco,CA,94016 +151495,USB-C Charging Cable,1,11.95,2019-02-14 22:53:00,268 Center St, San Francisco,CA,94016 +151496,Apple Airpods Headphones,1,150.0,2019-02-11 16:56:00,344 Highland St, San Francisco,CA,94016 +151497,Apple Airpods Headphones,1,150.0,2019-02-15 17:53:00,363 13th St, Dallas,TX,75001 +151498,Bose SoundSport Headphones,1,99.99,2019-02-24 14:27:00,201 5th St, Boston,MA,02215 +151499,Google Phone,1,600.0,2019-02-27 17:01:00,645 Lincoln St, San Francisco,CA,94016 +151500,Google Phone,1,600.0,2019-02-08 12:26:00,693 North St, San Francisco,CA,94016 +151501,AAA Batteries (4-pack),1,2.99,2019-02-04 18:20:00,853 Lakeview St, San Francisco,CA,94016 +151502,34in Ultrawide Monitor,1,379.99,2019-02-20 23:25:00,216 12th St, Los Angeles,CA,90001 +151503,Wired Headphones,1,11.99,2019-02-01 13:06:00,542 14th St, San Francisco,CA,94016 +151504,AAA Batteries (4-pack),1,2.99,2019-02-13 06:44:00,916 7th St, New York City,NY,10001 +151505,Macbook Pro Laptop,1,1700.0,2019-02-22 12:48:00,923 Maple St, Atlanta,GA,30301 +151506,27in FHD Monitor,1,149.99,2019-02-12 11:48:00,386 Meadow St, Boston,MA,02215 +151507,AAA Batteries (4-pack),4,2.99,2019-02-16 19:23:00,843 Hill St, Los Angeles,CA,90001 +151508,AA Batteries (4-pack),1,3.84,2019-02-17 11:22:00,453 Lakeview St, Seattle,WA,98101 +151509,Apple Airpods Headphones,1,150.0,2019-02-25 21:48:00,512 2nd St, San Francisco,CA,94016 +151510,Bose SoundSport Headphones,1,99.99,2019-02-13 13:13:00,369 14th St, San Francisco,CA,94016 +151511,Lightning Charging Cable,1,14.95,2019-02-02 22:13:00,849 Chestnut St, Dallas,TX,75001 +151512,iPhone,1,700.0,2019-02-06 10:23:00,279 Sunset St, San Francisco,CA,94016 +151513,Wired Headphones,1,11.99,2019-02-13 19:07:00,458 Walnut St, Dallas,TX,75001 +151514,Wired Headphones,1,11.99,2019-02-02 13:02:00,814 Madison St, San Francisco,CA,94016 +151515,Apple Airpods Headphones,1,150.0,2019-02-23 19:27:00,467 9th St, Dallas,TX,75001 +151516,iPhone,1,700.0,2019-02-03 07:43:00,351 13th St, Los Angeles,CA,90001 +151517,Apple Airpods Headphones,1,150.0,2019-02-05 09:44:00,154 Walnut St, Los Angeles,CA,90001 +151518,Lightning Charging Cable,1,14.95,2019-02-01 13:12:00,254 Highland St, Dallas,TX,75001 +151519,AA Batteries (4-pack),1,3.84,2019-02-21 19:54:00,731 Hickory St, San Francisco,CA,94016 +151520,USB-C Charging Cable,1,11.95,2019-02-06 08:34:00,507 Cherry St, Boston,MA,02215 +151521,Lightning Charging Cable,1,14.95,2019-02-26 17:11:00,667 Cherry St, Dallas,TX,75001 +151522,AAA Batteries (4-pack),1,2.99,2019-02-13 14:53:00,736 Lincoln St, San Francisco,CA,94016 +151523,AAA Batteries (4-pack),1,2.99,2019-02-26 15:28:00,444 Hill St, Atlanta,GA,30301 +151524,34in Ultrawide Monitor,1,379.99,2019-02-21 15:28:00,688 South St, Los Angeles,CA,90001 +151525,34in Ultrawide Monitor,1,379.99,2019-02-10 16:26:00,964 Ridge St, New York City,NY,10001 +151526,34in Ultrawide Monitor,1,379.99,2019-02-09 08:20:00,17 Dogwood St, Atlanta,GA,30301 +151527,Wired Headphones,1,11.99,2019-02-26 16:23:00,988 2nd St, Los Angeles,CA,90001 +151528,AAA Batteries (4-pack),1,2.99,2019-02-11 16:05:00,813 8th St, Austin,TX,73301 +151529,Lightning Charging Cable,1,14.95,2019-02-21 21:51:00,672 West St, Seattle,WA,98101 +151530,Lightning Charging Cable,1,14.95,2019-02-17 13:15:00,453 Hickory St, Atlanta,GA,30301 +151531,Apple Airpods Headphones,1,150.0,2019-02-08 18:56:00,40 Center St, Atlanta,GA,30301 +151532,USB-C Charging Cable,1,11.95,2019-02-22 10:58:00,147 Highland St, Seattle,WA,98101 +151533,Lightning Charging Cable,2,14.95,2019-02-23 17:04:00,274 Chestnut St, Los Angeles,CA,90001 +151534,Lightning Charging Cable,1,14.95,2019-02-03 12:49:00,303 Spruce St, San Francisco,CA,94016 +151535,AAA Batteries (4-pack),1,2.99,2019-02-09 23:20:00,349 Meadow St, San Francisco,CA,94016 +151536,Flatscreen TV,1,300.0,2019-02-22 10:11:00,222 Lincoln St, Boston,MA,02215 +151537,USB-C Charging Cable,1,11.95,2019-02-19 16:33:00,325 Maple St, San Francisco,CA,94016 +151538,AA Batteries (4-pack),1,3.84,2019-02-28 13:20:00,434 Church St, Dallas,TX,75001 +151539,USB-C Charging Cable,1,11.95,2019-02-06 13:22:00,165 Washington St, Dallas,TX,75001 +151540,Lightning Charging Cable,1,14.95,2019-02-16 09:57:00,659 Lincoln St, San Francisco,CA,94016 +151541,AA Batteries (4-pack),2,3.84,2019-02-06 22:02:00,917 Ridge St, San Francisco,CA,94016 +151542,USB-C Charging Cable,1,11.95,2019-02-09 21:08:00,852 Walnut St, New York City,NY,10001 +151543,Apple Airpods Headphones,1,150.0,2019-02-16 13:58:00,408 Sunset St, Seattle,WA,98101 +151544,Lightning Charging Cable,1,14.95,2019-02-13 16:37:00,794 Johnson St, Los Angeles,CA,90001 +151545,Lightning Charging Cable,1,14.95,2019-02-09 16:10:00,620 Madison St, Dallas,TX,75001 +151546,USB-C Charging Cable,2,11.95,2019-02-26 22:20:00,767 Elm St, Los Angeles,CA,90001 +151547,Lightning Charging Cable,1,14.95,2019-02-23 21:25:00,358 Jackson St, San Francisco,CA,94016 +151548,20in Monitor,1,109.99,2019-02-12 13:57:00,990 Willow St, Seattle,WA,98101 +151549,27in 4K Gaming Monitor,1,389.99,2019-02-16 16:40:00,364 1st St, San Francisco,CA,94016 +151550,Wired Headphones,1,11.99,2019-02-17 21:12:00,807 North St, New York City,NY,10001 +151551,iPhone,1,700.0,2019-02-17 10:11:00,318 River St, New York City,NY,10001 +151552,ThinkPad Laptop,1,999.99,2019-02-21 14:52:00,808 Dogwood St, Atlanta,GA,30301 +151553,AA Batteries (4-pack),2,3.84,2019-02-11 14:02:00,938 2nd St, San Francisco,CA,94016 +151554,Lightning Charging Cable,1,14.95,2019-02-03 22:56:00,476 7th St, San Francisco,CA,94016 +151555,Macbook Pro Laptop,1,1700.0,2019-02-05 00:50:00,323 4th St, New York City,NY,10001 +151556,iPhone,1,700.0,2019-02-07 10:15:00,240 Lake St, Portland,OR,97035 +151557,Lightning Charging Cable,1,14.95,2019-02-11 12:45:00,296 Lincoln St, San Francisco,CA,94016 +151558,Google Phone,1,600.0,2019-02-11 00:17:00,789 Walnut St, Boston,MA,02215 +151559,Lightning Charging Cable,1,14.95,2019-02-16 00:50:00,387 Lake St, Dallas,TX,75001 +151560,AAA Batteries (4-pack),1,2.99,2019-02-21 15:26:00,119 Cedar St, Portland,OR,97035 +151561,Apple Airpods Headphones,1,150.0,2019-02-28 22:33:00,443 1st St, Boston,MA,02215 +151562,20in Monitor,1,109.99,2019-02-28 15:29:00,576 6th St, Seattle,WA,98101 +151563,AA Batteries (4-pack),2,3.84,2019-02-19 12:34:00,635 9th St, Portland,OR,97035 +151564,AAA Batteries (4-pack),1,2.99,2019-02-13 22:58:00,879 Main St, San Francisco,CA,94016 +151565,AAA Batteries (4-pack),1,2.99,2019-02-09 21:16:00,843 1st St, San Francisco,CA,94016 +151566,Lightning Charging Cable,1,14.95,2019-02-14 12:27:00,323 Forest St, Austin,TX,73301 +151567,AA Batteries (4-pack),1,3.84,2019-02-21 13:19:00,110 Cherry St, Atlanta,GA,30301 +151568,Google Phone,2,600.0,2019-02-17 15:41:00,463 Highland St, Los Angeles,CA,90001 +151568,Wired Headphones,2,11.99,2019-02-17 15:41:00,463 Highland St, Los Angeles,CA,90001 +151568,USB-C Charging Cable,1,11.95,2019-02-17 15:41:00,463 Highland St, Los Angeles,CA,90001 +151569,AAA Batteries (4-pack),1,2.99,2019-02-25 10:15:00,380 Maple St, San Francisco,CA,94016 +151570,Wired Headphones,1,11.99,2019-02-07 06:49:00,966 Ridge St, Seattle,WA,98101 +151571,20in Monitor,1,109.99,2019-02-26 21:12:00,322 Wilson St, Portland,OR,97035 +151572,AAA Batteries (4-pack),1,2.99,2019-02-10 11:17:00,465 Walnut St, Boston,MA,02215 +151573,Lightning Charging Cable,1,14.95,2019-02-01 21:08:00,807 South St, San Francisco,CA,94016 +151574,AA Batteries (4-pack),1,3.84,2019-02-02 16:24:00,471 Dogwood St, New York City,NY,10001 +151575,Wired Headphones,1,11.99,2019-02-18 09:27:00,819 Pine St, Dallas,TX,75001 +151576,AA Batteries (4-pack),1,3.84,2019-02-27 09:19:00,578 Main St, San Francisco,CA,94016 +151577,LG Washing Machine,1,600.0,2019-02-27 12:23:00,731 Jackson St, Dallas,TX,75001 +151578,AA Batteries (4-pack),1,3.84,2019-02-28 10:30:00,523 Jefferson St, San Francisco,CA,94016 +151579,AA Batteries (4-pack),1,3.84,2019-02-09 14:19:00,752 South St, Boston,MA,02215 +151580,Wired Headphones,1,11.99,2019-02-05 03:46:00,932 10th St, Los Angeles,CA,90001 +151581,AAA Batteries (4-pack),2,2.99,2019-02-20 01:10:00,218 Dogwood St, Dallas,TX,75001 +151582,AA Batteries (4-pack),1,3.84,2019-02-26 20:23:00,348 Highland St, San Francisco,CA,94016 +151583,Macbook Pro Laptop,1,1700.0,2019-02-09 22:50:00,510 Maple St, San Francisco,CA,94016 +151584,Macbook Pro Laptop,1,1700.0,2019-02-28 17:21:00,254 5th St, Austin,TX,73301 +151585,AA Batteries (4-pack),1,3.84,2019-02-07 18:23:00,660 Washington St, New York City,NY,10001 +151586,Macbook Pro Laptop,1,1700.0,2019-02-26 19:45:00,10 13th St, San Francisco,CA,94016 +151587,AAA Batteries (4-pack),2,2.99,2019-02-11 20:40:00,290 Hickory St, New York City,NY,10001 +151588,iPhone,1,700.0,2019-02-21 20:07:00,425 1st St, Boston,MA,02215 +151589,USB-C Charging Cable,1,11.95,2019-02-27 14:16:00,276 Elm St, San Francisco,CA,94016 +151590,AA Batteries (4-pack),1,3.84,2019-02-14 17:57:00,675 Cherry St, Los Angeles,CA,90001 +151591,Lightning Charging Cable,1,14.95,2019-02-14 09:10:00,209 Cherry St, Portland,ME,04101 +151592,Lightning Charging Cable,2,14.95,2019-02-20 16:45:00,13 11th St, Atlanta,GA,30301 +151593,Google Phone,1,600.0,2019-02-20 09:38:00,99 Park St, Los Angeles,CA,90001 +151594,20in Monitor,1,109.99,2019-02-02 22:07:00,612 Meadow St, Portland,OR,97035 +151595,Vareebadd Phone,1,400.0,2019-02-26 12:50:00,384 North St, Seattle,WA,98101 +151596,34in Ultrawide Monitor,1,379.99,2019-02-27 19:44:00,683 Meadow St, Boston,MA,02215 +151597,Macbook Pro Laptop,1,1700.0,2019-02-19 19:40:00,530 Dogwood St, Boston,MA,02215 +151598,AA Batteries (4-pack),1,3.84,2019-02-04 13:18:00,908 West St, New York City,NY,10001 +151599,ThinkPad Laptop,1,999.99,2019-02-15 22:12:00,29 9th St, Dallas,TX,75001 +151600,AA Batteries (4-pack),1,3.84,2019-02-07 11:21:00,729 Maple St, Dallas,TX,75001 +151601,Flatscreen TV,1,300.0,2019-02-24 15:38:00,464 Cherry St, Atlanta,GA,30301 +151602,Macbook Pro Laptop,1,1700.0,2019-02-04 17:48:00,592 4th St, Seattle,WA,98101 +151603,27in FHD Monitor,1,149.99,2019-02-23 21:27:00,106 Jackson St, Los Angeles,CA,90001 +151604,Lightning Charging Cable,1,14.95,2019-02-14 17:14:00,425 Washington St, San Francisco,CA,94016 +151605,iPhone,1,700.0,2019-02-01 19:19:00,500 Adams St, San Francisco,CA,94016 +151606,Macbook Pro Laptop,1,1700.0,2019-02-22 00:18:00,856 13th St, Dallas,TX,75001 +151607,Google Phone,1,600.0,2019-02-02 18:48:00,136 14th St, San Francisco,CA,94016 +151608,ThinkPad Laptop,1,999.99,2019-02-18 16:38:00,776 Meadow St, Dallas,TX,75001 +151609,USB-C Charging Cable,1,11.95,2019-02-21 19:56:00,885 12th St, Los Angeles,CA,90001 +151610,Bose SoundSport Headphones,1,99.99,2019-02-14 18:49:00,504 9th St, San Francisco,CA,94016 +151611,ThinkPad Laptop,1,999.99,2019-02-26 16:10:00,129 1st St, Boston,MA,02215 +151612,AA Batteries (4-pack),1,3.84,2019-02-13 19:35:00,820 River St, Austin,TX,73301 +151613,AA Batteries (4-pack),1,3.84,2019-02-13 20:28:00,413 Jefferson St, Portland,OR,97035 +151614,USB-C Charging Cable,1,11.95,2019-02-26 19:56:00,907 Highland St, Dallas,TX,75001 +151615,Apple Airpods Headphones,1,150.0,2019-02-26 09:22:00,721 Main St, San Francisco,CA,94016 +151616,USB-C Charging Cable,1,11.95,2019-02-25 19:29:00,666 Meadow St, Boston,MA,02215 +151617,iPhone,1,700.0,2019-02-12 12:02:00,285 Meadow St, Portland,ME,04101 +151618,Lightning Charging Cable,1,14.95,2019-02-27 10:44:00,278 6th St, Boston,MA,02215 +151619,AAA Batteries (4-pack),1,2.99,2019-02-19 13:39:00,25 12th St, Boston,MA,02215 +151620,27in 4K Gaming Monitor,1,389.99,2019-02-24 00:50:00,665 11th St, San Francisco,CA,94016 +151621,USB-C Charging Cable,1,11.95,2019-02-11 15:36:00,654 Main St, San Francisco,CA,94016 +151622,USB-C Charging Cable,1,11.95,2019-02-25 19:27:00,409 Jackson St, Atlanta,GA,30301 +151623,Wired Headphones,1,11.99,2019-02-07 22:31:00,494 Pine St, Seattle,WA,98101 +151624,Wired Headphones,1,11.99,2019-02-12 00:13:00,378 Hickory St, Seattle,WA,98101 +151625,Lightning Charging Cable,1,14.95,2019-02-27 12:47:00,118 Hickory St, Boston,MA,02215 +151626,AAA Batteries (4-pack),2,2.99,2019-02-05 19:40:00,245 Center St, Portland,OR,97035 +151627,USB-C Charging Cable,2,11.95,2019-02-09 20:00:00,907 Dogwood St, Seattle,WA,98101 +151628,AA Batteries (4-pack),1,3.84,2019-02-28 12:41:00,347 12th St, Los Angeles,CA,90001 +151629,Macbook Pro Laptop,1,1700.0,2019-02-26 17:12:00,613 West St, Los Angeles,CA,90001 +151630,Vareebadd Phone,1,400.0,2019-02-23 09:29:00,695 Maple St, Dallas,TX,75001 +151631,27in FHD Monitor,1,149.99,2019-02-23 21:02:00,552 Meadow St, Atlanta,GA,30301 +151632,Macbook Pro Laptop,1,1700.0,2019-02-14 09:13:00,703 7th St, New York City,NY,10001 +151633,Apple Airpods Headphones,1,150.0,2019-02-24 11:41:00,158 4th St, Austin,TX,73301 +151634,Macbook Pro Laptop,1,1700.0,2019-02-12 19:58:00,798 6th St, San Francisco,CA,94016 +151635,Flatscreen TV,1,300.0,2019-02-24 09:13:00,793 Hill St, Atlanta,GA,30301 +151636,AAA Batteries (4-pack),1,2.99,2019-02-14 16:06:00,360 West St, Dallas,TX,75001 +151637,AA Batteries (4-pack),1,3.84,2019-02-17 01:17:00,761 Johnson St, New York City,NY,10001 +151638,27in 4K Gaming Monitor,1,389.99,2019-02-07 14:28:00,912 Sunset St, San Francisco,CA,94016 +151639,iPhone,1,700.0,2019-02-24 16:22:00,170 Park St, Boston,MA,02215 +151639,Lightning Charging Cable,1,14.95,2019-02-24 16:22:00,170 Park St, Boston,MA,02215 +151640,Google Phone,1,600.0,2019-02-21 03:43:00,16 9th St, Los Angeles,CA,90001 +151641,Lightning Charging Cable,1,14.95,2019-02-23 11:22:00,409 Elm St, Dallas,TX,75001 +151642,AAA Batteries (4-pack),2,2.99,2019-02-10 15:52:00,965 10th St, San Francisco,CA,94016 +151643,iPhone,1,700.0,2019-02-08 15:26:00,795 Forest St, Atlanta,GA,30301 +151644,27in 4K Gaming Monitor,1,389.99,2019-02-09 22:43:00,79 Lake St, San Francisco,CA,94016 +151645,Wired Headphones,1,11.99,2019-02-20 20:38:00,836 River St, Los Angeles,CA,90001 +151646,USB-C Charging Cable,1,11.95,2019-02-18 13:46:00,425 Lake St, Dallas,TX,75001 +151647,20in Monitor,1,109.99,2019-02-08 00:34:00,743 Main St, Los Angeles,CA,90001 +151648,Apple Airpods Headphones,1,150.0,2019-02-24 19:16:00,773 Jefferson St, Portland,ME,04101 +151649,AA Batteries (4-pack),1,3.84,2019-02-15 20:04:00,977 Chestnut St, Dallas,TX,75001 +151650,USB-C Charging Cable,1,11.95,2019-02-18 09:27:00,604 Park St, Austin,TX,73301 +151651,iPhone,1,700.0,2019-02-09 13:17:00,147 Jackson St, Portland,OR,97035 +151652,Apple Airpods Headphones,1,150.0,2019-02-02 09:52:00,800 6th St, Los Angeles,CA,90001 +151653,USB-C Charging Cable,1,11.95,2019-02-18 11:42:00,248 Lincoln St, Seattle,WA,98101 +151654,AAA Batteries (4-pack),1,2.99,2019-02-04 14:27:00,446 Sunset St, New York City,NY,10001 +151655,Lightning Charging Cable,1,14.95,2019-02-18 14:34:00,924 Maple St, Atlanta,GA,30301 +151656,Google Phone,1,600.0,2019-02-02 20:58:00,820 Walnut St, Los Angeles,CA,90001 +151657,34in Ultrawide Monitor,1,379.99,2019-02-10 09:36:00,431 Johnson St, Dallas,TX,75001 +151658,34in Ultrawide Monitor,2,379.99,2019-02-22 09:22:00,473 Walnut St, Boston,MA,02215 +151659,Wired Headphones,2,11.99,2019-02-27 12:43:00,540 Cedar St, New York City,NY,10001 +151660,AAA Batteries (4-pack),1,2.99,2019-02-09 12:50:00,614 Washington St, New York City,NY,10001 +151661,AA Batteries (4-pack),2,3.84,2019-02-24 17:36:00,209 Adams St, San Francisco,CA,94016 +151662,Lightning Charging Cable,1,14.95,2019-02-24 20:20:00,433 Willow St, Seattle,WA,98101 +151663,Lightning Charging Cable,1,14.95,2019-02-24 18:22:00,510 Pine St, San Francisco,CA,94016 +151664,Macbook Pro Laptop,1,1700.0,2019-02-09 23:37:00,651 Main St, San Francisco,CA,94016 +151665,LG Washing Machine,1,600.0,2019-02-10 09:04:00,240 13th St, Portland,OR,97035 +151666,Bose SoundSport Headphones,1,99.99,2019-02-08 20:31:00,203 1st St, Dallas,TX,75001 +151667,Apple Airpods Headphones,1,150.0,2019-02-02 07:48:00,321 7th St, Austin,TX,73301 +151667,Bose SoundSport Headphones,1,99.99,2019-02-02 07:48:00,321 7th St, Austin,TX,73301 +151668,Apple Airpods Headphones,1,150.0,2019-02-02 14:50:00,823 Johnson St, Los Angeles,CA,90001 +151669,Lightning Charging Cable,1,14.95,2019-02-12 11:50:00,135 Lake St, Dallas,TX,75001 +151670,Apple Airpods Headphones,1,150.0,2019-02-10 20:28:00,156 5th St, San Francisco,CA,94016 +151671,USB-C Charging Cable,1,11.95,2019-02-24 22:32:00,398 Dogwood St, New York City,NY,10001 +151672,Flatscreen TV,1,300.0,2019-02-03 22:35:00,71 Madison St, New York City,NY,10001 +151673,Wired Headphones,1,11.99,2019-02-10 21:52:00,504 Center St, Dallas,TX,75001 +151674,AAA Batteries (4-pack),7,2.99,2019-02-08 01:02:00,273 Main St, Austin,TX,73301 +151675,Google Phone,1,600.0,2019-02-19 19:52:00,493 4th St, Los Angeles,CA,90001 +151675,USB-C Charging Cable,1,11.95,2019-02-19 19:52:00,493 4th St, Los Angeles,CA,90001 +151676,27in FHD Monitor,1,149.99,2019-02-16 10:11:00,176 Park St, San Francisco,CA,94016 +151677,USB-C Charging Cable,1,11.95,2019-02-07 16:19:00,627 7th St, Los Angeles,CA,90001 +151678,AAA Batteries (4-pack),1,2.99,2019-02-28 12:49:00,488 Willow St, Atlanta,GA,30301 +151679,Apple Airpods Headphones,1,150.0,2019-02-21 10:49:00,6 Willow St, Dallas,TX,75001 +151680,20in Monitor,1,109.99,2019-02-08 17:45:00,183 1st St, Atlanta,GA,30301 +151681,Bose SoundSport Headphones,1,99.99,2019-02-27 01:05:00,572 13th St, Boston,MA,02215 +151682,AAA Batteries (4-pack),1,2.99,2019-02-21 16:10:00,707 Spruce St, San Francisco,CA,94016 +151683,Lightning Charging Cable,1,14.95,2019-02-21 12:20:00,217 Hill St, Los Angeles,CA,90001 +151684,Flatscreen TV,1,300.0,2019-02-22 21:58:00,112 Ridge St, Los Angeles,CA,90001 +151685,27in FHD Monitor,1,149.99,2019-02-15 17:20:00,652 Elm St, San Francisco,CA,94016 +151686,AA Batteries (4-pack),2,3.84,2019-02-03 14:49:00,536 Elm St, San Francisco,CA,94016 +151687,AAA Batteries (4-pack),1,2.99,2019-02-24 21:50:00,841 Center St, Los Angeles,CA,90001 +151688,AA Batteries (4-pack),2,3.84,2019-02-02 08:38:00,992 Jackson St, San Francisco,CA,94016 +151689,AA Batteries (4-pack),1,3.84,2019-02-23 13:12:00,421 Madison St, Los Angeles,CA,90001 +151690,Macbook Pro Laptop,1,1700.0,2019-02-03 16:19:00,723 Spruce St, Atlanta,GA,30301 +151690,Bose SoundSport Headphones,1,99.99,2019-02-03 16:19:00,723 Spruce St, Atlanta,GA,30301 +151691,iPhone,1,700.0,2019-02-26 15:26:00,275 Washington St, Los Angeles,CA,90001 +151692,AAA Batteries (4-pack),3,2.99,2019-02-27 16:35:00,57 4th St, San Francisco,CA,94016 +151693,AAA Batteries (4-pack),1,2.99,2019-02-13 08:41:00,241 Walnut St, San Francisco,CA,94016 +151694,Lightning Charging Cable,1,14.95,2019-02-10 10:23:00,578 Hickory St, Boston,MA,02215 +151695,AAA Batteries (4-pack),1,2.99,2019-02-27 07:34:00,16 11th St, Los Angeles,CA,90001 +151696,AAA Batteries (4-pack),2,2.99,2019-02-20 22:48:00,999 Cherry St, San Francisco,CA,94016 +151697,Wired Headphones,1,11.99,2019-02-09 16:53:00,460 Hickory St, Dallas,TX,75001 +151698,AAA Batteries (4-pack),1,2.99,2019-02-10 12:56:00,991 Dogwood St, Los Angeles,CA,90001 +151699,Lightning Charging Cable,1,14.95,2019-02-15 10:34:00,402 7th St, San Francisco,CA,94016 +151700,Wired Headphones,1,11.99,2019-02-15 01:20:00,401 Johnson St, Boston,MA,02215 +151700,USB-C Charging Cable,1,11.95,2019-02-15 01:20:00,401 Johnson St, Boston,MA,02215 +151701,AA Batteries (4-pack),1,3.84,2019-02-19 20:51:00,116 Chestnut St, Boston,MA,02215 +151702,USB-C Charging Cable,1,11.95,2019-02-15 08:15:00,803 Meadow St, Dallas,TX,75001 +151703,Apple Airpods Headphones,1,150.0,2019-02-19 22:04:00,532 Meadow St, Boston,MA,02215 +151704,27in 4K Gaming Monitor,1,389.99,2019-02-07 20:16:00,308 9th St, Seattle,WA,98101 +151705,ThinkPad Laptop,1,999.99,2019-02-13 18:39:00,992 North St, San Francisco,CA,94016 +151706,USB-C Charging Cable,1,11.95,2019-02-18 20:58:00,775 1st St, San Francisco,CA,94016 +151707,Wired Headphones,1,11.99,2019-02-14 01:43:00,430 Lakeview St, San Francisco,CA,94016 +151708,USB-C Charging Cable,1,11.95,2019-02-11 10:59:00,698 6th St, Portland,OR,97035 +151709,Bose SoundSport Headphones,1,99.99,2019-02-07 20:00:00,970 Cherry St, San Francisco,CA,94016 +151710,AA Batteries (4-pack),2,3.84,2019-02-17 22:59:00,349 Wilson St, San Francisco,CA,94016 +151711,iPhone,1,700.0,2019-02-04 20:19:00,743 Maple St, Los Angeles,CA,90001 +151712,Lightning Charging Cable,1,14.95,2019-02-09 01:00:00,6 Forest St, Los Angeles,CA,90001 +151712,AA Batteries (4-pack),1,3.84,2019-02-09 01:00:00,6 Forest St, Los Angeles,CA,90001 +151713,Wired Headphones,1,11.99,2019-02-09 09:42:00,120 Johnson St, Los Angeles,CA,90001 +151714,Vareebadd Phone,1,400.0,2019-02-28 10:36:00,626 Lakeview St, Boston,MA,02215 +151715,Lightning Charging Cable,1,14.95,2019-02-14 12:44:00,957 14th St, Atlanta,GA,30301 +151716,Bose SoundSport Headphones,1,99.99,2019-02-26 18:54:00,988 West St, Los Angeles,CA,90001 +151717,USB-C Charging Cable,1,11.95,2019-02-13 14:33:00,142 Jefferson St, San Francisco,CA,94016 +151718,Macbook Pro Laptop,1,1700.0,2019-02-13 22:01:00,360 Forest St, New York City,NY,10001 +151719,USB-C Charging Cable,1,11.95,2019-02-23 00:31:00,464 12th St, Portland,OR,97035 +151720,USB-C Charging Cable,1,11.95,2019-02-02 17:36:00,921 2nd St, Atlanta,GA,30301 +151721,USB-C Charging Cable,1,11.95,2019-02-10 11:08:00,37 Maple St, Austin,TX,73301 +151722,USB-C Charging Cable,1,11.95,2019-02-22 14:23:00,903 5th St, Los Angeles,CA,90001 +151723,27in 4K Gaming Monitor,1,389.99,2019-02-08 08:33:00,938 Forest St, Portland,ME,04101 +151724,Apple Airpods Headphones,1,150.0,2019-02-04 23:51:00,385 Church St, San Francisco,CA,94016 +151725,Vareebadd Phone,1,400.0,2019-02-04 13:42:00,802 Maple St, Seattle,WA,98101 +151726,AAA Batteries (4-pack),1,2.99,2019-02-19 09:08:00,13 Hill St, Atlanta,GA,30301 +151727,iPhone,1,700.0,2019-02-27 18:02:00,264 Cherry St, Boston,MA,02215 +151728,Apple Airpods Headphones,1,150.0,2019-02-27 00:14:00,260 4th St, Boston,MA,02215 +151729,Macbook Pro Laptop,1,1700.0,2019-02-23 19:32:00,669 12th St, Los Angeles,CA,90001 +151730,Lightning Charging Cable,1,14.95,2019-02-05 08:34:00,683 Cherry St, San Francisco,CA,94016 +151731,USB-C Charging Cable,1,11.95,2019-02-13 10:30:00,913 Hill St, Portland,OR,97035 +151732,34in Ultrawide Monitor,1,379.99,2019-02-17 19:24:00,814 Meadow St, San Francisco,CA,94016 +151733,Lightning Charging Cable,2,14.95,2019-02-23 09:54:00,521 Walnut St, New York City,NY,10001 +151734,Wired Headphones,1,11.99,2019-02-28 10:19:00,49 Cherry St, Dallas,TX,75001 +151734,iPhone,1,700.0,2019-02-28 10:19:00,49 Cherry St, Dallas,TX,75001 +151735,Lightning Charging Cable,1,14.95,2019-02-01 18:16:00,415 North St, New York City,NY,10001 +151736,Macbook Pro Laptop,1,1700.0,2019-02-22 14:58:00,692 Johnson St, San Francisco,CA,94016 +151737,27in FHD Monitor,1,149.99,2019-02-20 07:34:00,669 Lincoln St, Boston,MA,02215 +151738,Apple Airpods Headphones,1,150.0,2019-02-15 18:55:00,692 Main St, San Francisco,CA,94016 +151739,AA Batteries (4-pack),1,3.84,2019-02-25 13:14:00,349 Ridge St, Los Angeles,CA,90001 +151740,Bose SoundSport Headphones,1,99.99,2019-02-28 21:12:00,393 Johnson St, Boston,MA,02215 +151741,AAA Batteries (4-pack),2,2.99,2019-02-08 11:19:00,832 Lincoln St, Atlanta,GA,30301 +151742,iPhone,1,700.0,2019-02-23 02:44:00,718 North St, New York City,NY,10001 +151743,Apple Airpods Headphones,1,150.0,2019-02-05 17:14:00,798 6th St, Seattle,WA,98101 +151744,USB-C Charging Cable,1,11.95,2019-02-17 11:19:00,209 Pine St, New York City,NY,10001 +151745,Lightning Charging Cable,1,14.95,2019-02-04 05:41:00,398 Park St, Los Angeles,CA,90001 +151746,Lightning Charging Cable,3,14.95,2019-02-12 02:54:00,103 13th St, Seattle,WA,98101 +151747,Lightning Charging Cable,1,14.95,2019-02-25 13:56:00,866 Meadow St, San Francisco,CA,94016 +151748,iPhone,1,700.0,2019-02-09 09:17:00,259 Highland St, San Francisco,CA,94016 +151748,Apple Airpods Headphones,1,150.0,2019-02-09 09:17:00,259 Highland St, San Francisco,CA,94016 +151749,Bose SoundSport Headphones,1,99.99,2019-03-01 01:54:00,993 Washington St, San Francisco,CA,94016 +151750,Flatscreen TV,1,300.0,2019-02-16 12:42:00,218 8th St, Atlanta,GA,30301 +151751,20in Monitor,1,109.99,2019-02-01 18:39:00,467 Chestnut St, Portland,OR,97035 +151752,27in 4K Gaming Monitor,1,389.99,2019-02-06 12:57:00,632 Elm St, San Francisco,CA,94016 +151753,Wired Headphones,1,11.99,2019-02-17 16:36:00,782 Park St, Los Angeles,CA,90001 +151754,AA Batteries (4-pack),4,3.84,2019-02-22 21:35:00,656 Church St, San Francisco,CA,94016 +151755,27in FHD Monitor,1,149.99,2019-02-21 17:59:00,909 Madison St, Austin,TX,73301 +151756,Wired Headphones,1,11.99,2019-02-16 17:44:00,706 7th St, Portland,OR,97035 +151757,Apple Airpods Headphones,1,150.0,2019-02-18 21:47:00,459 North St, San Francisco,CA,94016 +151758,Lightning Charging Cable,1,14.95,2019-02-16 16:13:00,592 Meadow St, San Francisco,CA,94016 +151759,iPhone,1,700.0,2019-02-06 23:22:00,602 Wilson St, Dallas,TX,75001 +151760,AAA Batteries (4-pack),1,2.99,2019-02-17 11:20:00,25 11th St, New York City,NY,10001 +151761,AA Batteries (4-pack),2,3.84,2019-02-18 20:29:00,135 Willow St, Atlanta,GA,30301 +151762,iPhone,1,700.0,2019-02-18 00:33:00,575 2nd St, Boston,MA,02215 +151763,27in FHD Monitor,1,149.99,2019-02-04 11:18:00,714 Pine St, San Francisco,CA,94016 +151764,Vareebadd Phone,1,400.0,2019-02-02 19:20:00,820 River St, New York City,NY,10001 +151765,AAA Batteries (4-pack),1,2.99,2019-02-23 13:42:00,401 Lakeview St, San Francisco,CA,94016 +151766,USB-C Charging Cable,1,11.95,2019-02-22 13:24:00,723 Hickory St, Atlanta,GA,30301 +151767,iPhone,1,700.0,2019-02-28 01:03:00,487 Main St, San Francisco,CA,94016 +151768,AAA Batteries (4-pack),1,2.99,2019-02-07 12:38:00,764 Center St, San Francisco,CA,94016 +151769,34in Ultrawide Monitor,1,379.99,2019-02-13 22:03:00,27 Washington St, Portland,OR,97035 +151770,34in Ultrawide Monitor,1,379.99,2019-02-06 16:40:00,489 2nd St, Seattle,WA,98101 +151771,Bose SoundSport Headphones,1,99.99,2019-02-22 15:30:00,220 Sunset St, Dallas,TX,75001 +151772,Lightning Charging Cable,1,14.95,2019-02-19 11:39:00,521 11th St, San Francisco,CA,94016 +151773,AAA Batteries (4-pack),2,2.99,2019-02-04 07:37:00,592 Lincoln St, Seattle,WA,98101 +151774,Lightning Charging Cable,1,14.95,2019-02-12 22:34:00,942 11th St, Portland,OR,97035 +151775,Apple Airpods Headphones,1,150.0,2019-02-20 21:35:00,618 Church St, San Francisco,CA,94016 +151776,USB-C Charging Cable,1,11.95,2019-02-04 21:24:00,517 Main St, New York City,NY,10001 +151776,20in Monitor,1,109.99,2019-02-04 21:24:00,517 Main St, New York City,NY,10001 +151777,iPhone,1,700.0,2019-02-26 13:06:00,314 Wilson St, San Francisco,CA,94016 +151778,Bose SoundSport Headphones,1,99.99,2019-02-07 19:34:00,16 Highland St, Boston,MA,02215 +151779,AA Batteries (4-pack),1,3.84,2019-02-17 21:07:00,954 Willow St, Atlanta,GA,30301 +151780,USB-C Charging Cable,1,11.95,2019-02-25 10:22:00,158 Washington St, Portland,ME,04101 +151781,34in Ultrawide Monitor,1,379.99,2019-02-21 12:39:00,202 Pine St, Boston,MA,02215 +151782,Apple Airpods Headphones,1,150.0,2019-02-27 21:54:00,808 4th St, Atlanta,GA,30301 +151783,AA Batteries (4-pack),1,3.84,2019-02-26 10:03:00,193 West St, San Francisco,CA,94016 +151784,Lightning Charging Cable,1,14.95,2019-02-16 07:28:00,83 Willow St, San Francisco,CA,94016 +151785,AAA Batteries (4-pack),3,2.99,2019-02-25 14:58:00,708 6th St, Los Angeles,CA,90001 +151786,Lightning Charging Cable,1,14.95,2019-02-09 15:18:00,257 Jackson St, Boston,MA,02215 +151787,AA Batteries (4-pack),1,3.84,2019-02-09 12:14:00,88 Jefferson St, San Francisco,CA,94016 +151788,AAA Batteries (4-pack),3,2.99,2019-02-18 20:24:00,871 2nd St, New York City,NY,10001 +151789,Flatscreen TV,1,300.0,2019-02-25 14:30:00,552 Lake St, Seattle,WA,98101 +151790,27in 4K Gaming Monitor,1,389.99,2019-02-27 10:17:00,272 Center St, Portland,ME,04101 +151791,AAA Batteries (4-pack),2,2.99,2019-02-21 10:57:00,73 10th St, Los Angeles,CA,90001 +151792,Wired Headphones,1,11.99,2019-02-20 14:57:00,962 4th St, San Francisco,CA,94016 +151793,ThinkPad Laptop,1,999.99,2019-02-10 12:23:00,28 Jackson St, Los Angeles,CA,90001 +151794,AA Batteries (4-pack),1,3.84,2019-02-09 11:45:00,545 14th St, New York City,NY,10001 +151795,USB-C Charging Cable,1,11.95,2019-02-20 19:59:00,795 Hill St, Austin,TX,73301 +151796,AAA Batteries (4-pack),1,2.99,2019-02-25 18:35:00,582 11th St, San Francisco,CA,94016 +151797,AAA Batteries (4-pack),3,2.99,2019-02-21 22:38:00,341 Lincoln St, New York City,NY,10001 +151798,AAA Batteries (4-pack),1,2.99,2019-02-16 13:14:00,797 4th St, Los Angeles,CA,90001 +151799,USB-C Charging Cable,2,11.95,2019-02-13 11:21:00,2 Lakeview St, New York City,NY,10001 +151800,USB-C Charging Cable,1,11.95,2019-02-21 09:31:00,675 Johnson St, San Francisco,CA,94016 +151801,Lightning Charging Cable,1,14.95,2019-02-06 00:16:00,238 6th St, New York City,NY,10001 +151802,27in FHD Monitor,1,149.99,2019-02-06 04:35:00,510 Jefferson St, San Francisco,CA,94016 +151803,AA Batteries (4-pack),3,3.84,2019-02-03 21:22:00,115 7th St, San Francisco,CA,94016 +151804,AAA Batteries (4-pack),2,2.99,2019-02-07 23:51:00,81 Elm St, Seattle,WA,98101 +151805,AAA Batteries (4-pack),1,2.99,2019-02-03 21:18:00,618 River St, Boston,MA,02215 +151806,USB-C Charging Cable,1,11.95,2019-02-14 11:37:00,278 Johnson St, New York City,NY,10001 +151807,Apple Airpods Headphones,1,150.0,2019-02-07 03:46:00,161 1st St, Portland,OR,97035 +151808,USB-C Charging Cable,1,11.95,2019-02-20 15:17:00,897 1st St, San Francisco,CA,94016 +151809,USB-C Charging Cable,1,11.95,2019-02-26 18:00:00,804 Washington St, Portland,ME,04101 +151810,AA Batteries (4-pack),1,3.84,2019-02-24 16:47:00,416 Lake St, Portland,OR,97035 +151811,USB-C Charging Cable,1,11.95,2019-02-06 18:46:00,663 6th St, San Francisco,CA,94016 +151812,Lightning Charging Cable,1,14.95,2019-02-28 17:02:00,189 2nd St, Dallas,TX,75001 +151813,Google Phone,1,600.0,2019-02-19 22:36:00,802 Sunset St, Dallas,TX,75001 +151814,AAA Batteries (4-pack),1,2.99,2019-02-16 23:10:00,833 River St, Boston,MA,02215 +151815,Lightning Charging Cable,1,14.95,2019-02-07 00:44:00,624 Park St, New York City,NY,10001 +151816,AA Batteries (4-pack),2,3.84,2019-02-18 08:27:00,809 Park St, Austin,TX,73301 +151817,USB-C Charging Cable,2,11.95,2019-02-28 09:30:00,780 Highland St, Portland,ME,04101 +151818,27in FHD Monitor,1,149.99,2019-02-23 20:31:00,72 Chestnut St, New York City,NY,10001 +151819,AA Batteries (4-pack),1,3.84,2019-02-02 13:17:00,421 Willow St, San Francisco,CA,94016 +151820,Apple Airpods Headphones,1,150.0,2019-02-15 13:15:00,648 Wilson St, San Francisco,CA,94016 +151821,Lightning Charging Cable,1,14.95,2019-02-09 06:40:00,200 Meadow St, Portland,OR,97035 +151822,AAA Batteries (4-pack),1,2.99,2019-02-14 09:42:00,496 Spruce St, Dallas,TX,75001 +151823,AA Batteries (4-pack),3,3.84,2019-02-09 22:49:00,303 Maple St, New York City,NY,10001 +151824,34in Ultrawide Monitor,1,379.99,2019-02-13 13:21:00,883 14th St, San Francisco,CA,94016 +151825,USB-C Charging Cable,1,11.95,2019-02-04 16:47:00,384 Lincoln St, San Francisco,CA,94016 +151826,27in 4K Gaming Monitor,1,389.99,2019-02-17 12:11:00,906 Cherry St, Portland,OR,97035 +151827,Lightning Charging Cable,1,14.95,2019-02-17 23:13:00,906 6th St, San Francisco,CA,94016 +151828,AA Batteries (4-pack),1,3.84,2019-02-17 10:19:00,138 Lincoln St, San Francisco,CA,94016 +151829,AAA Batteries (4-pack),2,2.99,2019-02-03 10:09:00,843 Spruce St, New York City,NY,10001 +151830,27in FHD Monitor,1,149.99,2019-02-28 09:09:00,124 13th St, San Francisco,CA,94016 +151831,AA Batteries (4-pack),1,3.84,2019-02-18 23:09:00,95 11th St, San Francisco,CA,94016 +151832,AAA Batteries (4-pack),2,2.99,2019-02-10 21:58:00,124 Lake St, New York City,NY,10001 +151833,Lightning Charging Cable,1,14.95,2019-02-28 22:29:00,452 North St, Boston,MA,02215 +151834,iPhone,1,700.0,2019-02-04 18:17:00,10 Ridge St, New York City,NY,10001 +151835,USB-C Charging Cable,1,11.95,2019-02-21 20:12:00,23 Jackson St, San Francisco,CA,94016 +151836,AA Batteries (4-pack),1,3.84,2019-02-11 21:29:00,270 Sunset St, Los Angeles,CA,90001 +151837,USB-C Charging Cable,3,11.95,2019-02-09 19:02:00,297 4th St, San Francisco,CA,94016 +151838,Lightning Charging Cable,1,14.95,2019-02-17 10:25:00,195 Lincoln St, Los Angeles,CA,90001 +151839,USB-C Charging Cable,1,11.95,2019-02-02 22:19:00,385 9th St, Atlanta,GA,30301 +151840,34in Ultrawide Monitor,1,379.99,2019-02-14 11:29:00,544 11th St, Los Angeles,CA,90001 +151841,LG Dryer,1,600.0,2019-02-24 04:31:00,76 South St, Seattle,WA,98101 +151842,27in 4K Gaming Monitor,1,389.99,2019-02-21 11:01:00,479 North St, San Francisco,CA,94016 +151843,Vareebadd Phone,1,400.0,2019-02-15 17:56:00,887 Sunset St, Atlanta,GA,30301 +151843,Bose SoundSport Headphones,1,99.99,2019-02-15 17:56:00,887 Sunset St, Atlanta,GA,30301 +151844,iPhone,1,700.0,2019-02-18 16:29:00,997 12th St, Los Angeles,CA,90001 +151845,Apple Airpods Headphones,1,150.0,2019-02-26 12:58:00,500 North St, New York City,NY,10001 +151846,AAA Batteries (4-pack),2,2.99,2019-02-13 07:16:00,224 Lincoln St, Atlanta,GA,30301 +151847,iPhone,1,700.0,2019-02-20 15:37:00,214 7th St, New York City,NY,10001 +151848,20in Monitor,1,109.99,2019-02-14 14:20:00,974 West St, New York City,NY,10001 +151849,Lightning Charging Cable,1,14.95,2019-02-04 14:52:00,838 11th St, Boston,MA,02215 +151850,Bose SoundSport Headphones,2,99.99,2019-02-08 15:18:00,598 Pine St, San Francisco,CA,94016 +151851,Google Phone,1,600.0,2019-02-23 19:52:00,874 9th St, Dallas,TX,75001 +151851,Bose SoundSport Headphones,1,99.99,2019-02-23 19:52:00,874 9th St, Dallas,TX,75001 +151852,Lightning Charging Cable,1,14.95,2019-02-12 13:25:00,346 Park St, Los Angeles,CA,90001 +151853,Flatscreen TV,1,300.0,2019-02-27 05:16:00,520 Hill St, Atlanta,GA,30301 +151854,Bose SoundSport Headphones,1,99.99,2019-02-08 13:04:00,344 Spruce St, San Francisco,CA,94016 +151855,Bose SoundSport Headphones,1,99.99,2019-02-02 13:29:00,947 Jefferson St, San Francisco,CA,94016 +151856,USB-C Charging Cable,1,11.95,2019-02-06 12:11:00,475 Jackson St, San Francisco,CA,94016 +151857,Google Phone,1,600.0,2019-02-01 19:49:00,959 Spruce St, Boston,MA,02215 +151858,Google Phone,1,600.0,2019-02-01 22:43:00,605 Wilson St, Seattle,WA,98101 +151858,USB-C Charging Cable,1,11.95,2019-02-01 22:43:00,605 Wilson St, Seattle,WA,98101 +151859,ThinkPad Laptop,1,999.99,2019-02-06 17:39:00,528 Meadow St, New York City,NY,10001 +151860,Bose SoundSport Headphones,1,99.99,2019-02-27 02:13:00,656 North St, Atlanta,GA,30301 +151861,Wired Headphones,1,11.99,2019-02-03 14:32:00,18 Johnson St, Portland,OR,97035 +151862,Bose SoundSport Headphones,1,99.99,2019-02-28 11:28:00,853 Walnut St, Portland,ME,04101 +151863,Flatscreen TV,1,300.0,2019-02-16 08:20:00,760 11th St, Atlanta,GA,30301 +151864,Bose SoundSport Headphones,1,99.99,2019-02-11 20:07:00,945 North St, New York City,NY,10001 +151865,27in FHD Monitor,1,149.99,2019-02-25 19:13:00,111 11th St, San Francisco,CA,94016 +151866,Macbook Pro Laptop,1,1700.0,2019-02-12 08:18:00,76 5th St, Atlanta,GA,30301 +151867,Lightning Charging Cable,1,14.95,2019-02-03 23:39:00,541 Willow St, Los Angeles,CA,90001 +151868,AAA Batteries (4-pack),1,2.99,2019-02-07 18:31:00,500 Center St, Boston,MA,02215 +151869,Apple Airpods Headphones,1,150.0,2019-02-24 19:53:00,402 Madison St, San Francisco,CA,94016 +151870,AAA Batteries (4-pack),3,2.99,2019-02-02 22:48:00,539 Johnson St, San Francisco,CA,94016 +151871,AA Batteries (4-pack),2,3.84,2019-02-22 20:46:00,836 8th St, Seattle,WA,98101 +151872,Lightning Charging Cable,1,14.95,2019-02-02 19:58:00,909 Maple St, New York City,NY,10001 +151873,Macbook Pro Laptop,1,1700.0,2019-02-18 10:01:00,967 Meadow St, San Francisco,CA,94016 +151874,AA Batteries (4-pack),1,3.84,2019-02-25 10:21:00,867 Willow St, Atlanta,GA,30301 +151875,AAA Batteries (4-pack),1,2.99,2019-02-14 17:42:00,545 Jackson St, Boston,MA,02215 +151876,AAA Batteries (4-pack),1,2.99,2019-02-13 12:33:00,491 5th St, New York City,NY,10001 +151877,AA Batteries (4-pack),1,3.84,2019-02-18 13:52:00,774 13th St, Portland,OR,97035 +151878,Wired Headphones,1,11.99,2019-02-17 11:21:00,644 Hickory St, Boston,MA,02215 +151879,Google Phone,1,600.0,2019-02-07 01:21:00,869 Cherry St, Boston,MA,02215 +151880,USB-C Charging Cable,1,11.95,2019-02-09 16:22:00,767 Center St, Los Angeles,CA,90001 +151881,Bose SoundSport Headphones,1,99.99,2019-02-01 18:29:00,676 North St, Los Angeles,CA,90001 +151882,Wired Headphones,1,11.99,2019-02-19 08:56:00,665 Cedar St, Seattle,WA,98101 +151883,27in 4K Gaming Monitor,1,389.99,2019-02-09 20:40:00,196 River St, Portland,ME,04101 +151884,Macbook Pro Laptop,1,1700.0,2019-02-07 22:01:00,975 Forest St, San Francisco,CA,94016 +151885,27in FHD Monitor,1,149.99,2019-02-16 22:43:00,981 Lake St, Seattle,WA,98101 +151886,Apple Airpods Headphones,1,150.0,2019-02-13 18:59:00,3 Lincoln St, Boston,MA,02215 +151887,iPhone,1,700.0,2019-02-13 21:43:00,262 River St, Dallas,TX,75001 +151888,Apple Airpods Headphones,1,150.0,2019-02-18 01:36:00,870 River St, San Francisco,CA,94016 +151889,27in 4K Gaming Monitor,1,389.99,2019-02-05 18:53:00,675 Walnut St, San Francisco,CA,94016 +151890,Lightning Charging Cable,1,14.95,2019-02-10 14:06:00,42 Spruce St, Boston,MA,02215 +151891,AAA Batteries (4-pack),2,2.99,2019-02-08 19:29:00,285 Pine St, San Francisco,CA,94016 +151892,27in 4K Gaming Monitor,1,389.99,2019-02-08 22:34:00,300 Spruce St, San Francisco,CA,94016 +151893,iPhone,1,700.0,2019-02-26 22:30:00,146 Hickory St, San Francisco,CA,94016 +151894,Wired Headphones,1,11.99,2019-02-20 18:51:00,261 Jefferson St, San Francisco,CA,94016 +151895,27in FHD Monitor,1,149.99,2019-02-18 18:04:00,41 Adams St, San Francisco,CA,94016 +151896,Apple Airpods Headphones,1,150.0,2019-02-04 14:41:00,980 Ridge St, San Francisco,CA,94016 +151897,Flatscreen TV,1,300.0,2019-02-28 17:02:00,56 Lake St, New York City,NY,10001 +151898,Wired Headphones,1,11.99,2019-02-06 08:05:00,811 Chestnut St, Seattle,WA,98101 +151899,USB-C Charging Cable,1,11.95,2019-02-06 17:47:00,867 1st St, New York City,NY,10001 +151900,34in Ultrawide Monitor,1,379.99,2019-02-10 06:51:00,100 Ridge St, Austin,TX,73301 +151901,Bose SoundSport Headphones,1,99.99,2019-02-27 14:32:00,356 Church St, Seattle,WA,98101 +151902,Google Phone,1,600.0,2019-02-05 19:30:00,937 Ridge St, Seattle,WA,98101 +151902,iPhone,1,700.0,2019-02-05 19:30:00,937 Ridge St, Seattle,WA,98101 +151903,iPhone,1,700.0,2019-02-23 15:37:00,843 South St, San Francisco,CA,94016 +151904,AAA Batteries (4-pack),1,2.99,2019-02-25 14:18:00,440 Willow St, San Francisco,CA,94016 +151905,Wired Headphones,1,11.99,2019-02-13 18:32:00,187 Church St, Portland,OR,97035 +151906,USB-C Charging Cable,1,11.95,2019-02-22 16:57:00,516 9th St, New York City,NY,10001 +151907,AAA Batteries (4-pack),1,2.99,2019-02-20 12:54:00,302 Cherry St, San Francisco,CA,94016 +151908,Flatscreen TV,1,300.0,2019-02-27 13:04:00,52 10th St, Portland,ME,04101 +151909,USB-C Charging Cable,1,11.95,2019-02-22 19:46:00,409 Main St, Los Angeles,CA,90001 +151910,Bose SoundSport Headphones,1,99.99,2019-02-25 08:46:00,54 Jackson St, New York City,NY,10001 +151911,Wired Headphones,1,11.99,2019-02-12 18:39:00,374 Johnson St, Austin,TX,73301 +151912,USB-C Charging Cable,1,11.95,2019-02-22 18:58:00,285 6th St, San Francisco,CA,94016 +151913,Wired Headphones,1,11.99,2019-02-12 22:13:00,333 Spruce St, San Francisco,CA,94016 +151914,AAA Batteries (4-pack),1,2.99,2019-02-22 17:57:00,413 North St, New York City,NY,10001 +151915,Google Phone,1,600.0,2019-02-06 17:14:00,566 Lincoln St, San Francisco,CA,94016 +151916,Wired Headphones,1,11.99,2019-02-27 13:04:00,195 Lincoln St, Atlanta,GA,30301 +151917,AAA Batteries (4-pack),4,2.99,2019-02-15 09:56:00,469 Meadow St, Seattle,WA,98101 +151918,iPhone,1,700.0,2019-02-12 13:17:00,495 Cedar St, Dallas,TX,75001 +151919,27in 4K Gaming Monitor,1,389.99,2019-02-21 11:11:00,670 Lakeview St, San Francisco,CA,94016 +151920,Wired Headphones,1,11.99,2019-02-24 14:50:00,656 Elm St, San Francisco,CA,94016 +151921,ThinkPad Laptop,1,999.99,2019-02-06 15:07:00,109 Jefferson St, Boston,MA,02215 +151922,Apple Airpods Headphones,1,150.0,2019-02-07 10:29:00,143 Johnson St, Los Angeles,CA,90001 +151923,Wired Headphones,1,11.99,2019-02-14 13:15:00,190 2nd St, San Francisco,CA,94016 +151924,Apple Airpods Headphones,1,150.0,2019-02-05 13:58:00,144 12th St, San Francisco,CA,94016 +151925,USB-C Charging Cable,1,11.95,2019-02-07 22:51:00,28 Jefferson St, Boston,MA,02215 +151926,AAA Batteries (4-pack),2,2.99,2019-02-06 03:57:00,486 Main St, San Francisco,CA,94016 +151927,Bose SoundSport Headphones,1,99.99,2019-02-19 17:16:00,791 2nd St, San Francisco,CA,94016 +151928,USB-C Charging Cable,1,11.95,2019-02-10 20:28:00,692 Willow St, Boston,MA,02215 +151929,Apple Airpods Headphones,1,150.0,2019-02-25 11:21:00,922 13th St, San Francisco,CA,94016 +151930,AA Batteries (4-pack),2,3.84,2019-02-22 12:15:00,702 Lincoln St, Los Angeles,CA,90001 +151931,Bose SoundSport Headphones,1,99.99,2019-02-19 06:53:00,501 Sunset St, San Francisco,CA,94016 +151932,AA Batteries (4-pack),1,3.84,2019-02-26 12:07:00,563 6th St, San Francisco,CA,94016 +151933,AA Batteries (4-pack),1,3.84,2019-02-06 14:43:00,639 Main St, San Francisco,CA,94016 +151934,AAA Batteries (4-pack),1,2.99,2019-02-10 23:54:00,366 Park St, Atlanta,GA,30301 +151935,Bose SoundSport Headphones,1,99.99,2019-02-14 02:51:00,552 Wilson St, San Francisco,CA,94016 +151936,27in FHD Monitor,1,149.99,2019-02-23 12:27:00,406 Lakeview St, Dallas,TX,75001 +151937,Bose SoundSport Headphones,1,99.99,2019-02-16 20:22:00,68 12th St, Boston,MA,02215 +151938,USB-C Charging Cable,1,11.95,2019-02-23 23:41:00,614 Lake St, New York City,NY,10001 +151939,Wired Headphones,1,11.99,2019-02-26 18:32:00,318 Johnson St, Boston,MA,02215 +151940,27in 4K Gaming Monitor,1,389.99,2019-02-12 21:31:00,136 Chestnut St, Seattle,WA,98101 +151941,Wired Headphones,1,11.99,2019-02-14 19:27:00,947 Dogwood St, New York City,NY,10001 +151942,Apple Airpods Headphones,1,150.0,2019-02-03 07:50:00,228 West St, Los Angeles,CA,90001 +151943,AAA Batteries (4-pack),1,2.99,2019-02-07 14:07:00,102 Lake St, Seattle,WA,98101 +151944,Bose SoundSport Headphones,1,99.99,2019-02-16 12:56:00,757 West St, New York City,NY,10001 +151945,Flatscreen TV,1,300.0,2019-02-28 12:28:00,400 South St, Boston,MA,02215 +151946,AAA Batteries (4-pack),1,2.99,2019-02-16 06:50:00,782 Madison St, Seattle,WA,98101 +151947,AAA Batteries (4-pack),1,2.99,2019-02-01 19:25:00,903 5th St, Portland,OR,97035 +151948,AA Batteries (4-pack),1,3.84,2019-02-16 00:13:00,758 11th St, Los Angeles,CA,90001 +151949,Lightning Charging Cable,1,14.95,2019-02-05 17:25:00,524 10th St, Dallas,TX,75001 +151950,27in 4K Gaming Monitor,1,389.99,2019-02-17 19:35:00,859 14th St, Austin,TX,73301 +151951,AA Batteries (4-pack),2,3.84,2019-02-28 14:58:00,222 Hickory St, Los Angeles,CA,90001 +151952,USB-C Charging Cable,1,11.95,2019-02-28 21:10:00,773 Hickory St, Boston,MA,02215 +151953,27in FHD Monitor,1,149.99,2019-02-07 17:59:00,191 Spruce St, New York City,NY,10001 +151954,ThinkPad Laptop,1,999.99,2019-02-04 17:13:00,284 Church St, San Francisco,CA,94016 +151955,Bose SoundSport Headphones,1,99.99,2019-02-13 11:32:00,65 2nd St, Boston,MA,02215 +151956,Wired Headphones,1,11.99,2019-02-12 18:56:00,763 Dogwood St, New York City,NY,10001 +151957,USB-C Charging Cable,1,11.95,2019-02-19 12:15:00,700 Cedar St, New York City,NY,10001 +151958,Google Phone,1,600.0,2019-02-25 20:04:00,37 Highland St, San Francisco,CA,94016 +151958,Wired Headphones,1,11.99,2019-02-25 20:04:00,37 Highland St, San Francisco,CA,94016 +151959,Google Phone,1,600.0,2019-02-11 12:31:00,126 Johnson St, San Francisco,CA,94016 +151959,USB-C Charging Cable,1,11.95,2019-02-11 12:31:00,126 Johnson St, San Francisco,CA,94016 +151960,Apple Airpods Headphones,1,150.0,2019-02-14 10:32:00,146 Forest St, Dallas,TX,75001 +151961,Vareebadd Phone,1,400.0,2019-02-14 11:35:00,256 6th St, Boston,MA,02215 +151961,USB-C Charging Cable,1,11.95,2019-02-14 11:35:00,256 6th St, Boston,MA,02215 +151961,Bose SoundSport Headphones,1,99.99,2019-02-14 11:35:00,256 6th St, Boston,MA,02215 +151962,AAA Batteries (4-pack),2,2.99,2019-02-11 17:54:00,433 Elm St, Los Angeles,CA,90001 +151963,27in FHD Monitor,1,149.99,2019-02-17 17:39:00,95 Pine St, Portland,OR,97035 +151964,USB-C Charging Cable,1,11.95,2019-02-09 18:07:00,70 Highland St, Los Angeles,CA,90001 +151965,AA Batteries (4-pack),1,3.84,2019-02-12 20:02:00,266 Center St, New York City,NY,10001 +151966,Lightning Charging Cable,1,14.95,2019-02-26 18:35:00,939 South St, Dallas,TX,75001 +151967,Macbook Pro Laptop,1,1700.0,2019-02-09 17:33:00,497 Forest St, New York City,NY,10001 +151968,Lightning Charging Cable,1,14.95,2019-02-24 16:18:00,526 Park St, Seattle,WA,98101 +151969,iPhone,1,700.0,2019-02-22 19:58:00,900 13th St, Los Angeles,CA,90001 +151970,34in Ultrawide Monitor,1,379.99,2019-02-01 10:06:00,966 Jefferson St, New York City,NY,10001 +151971,Apple Airpods Headphones,1,150.0,2019-02-02 09:50:00,383 Lincoln St, San Francisco,CA,94016 +151972,Bose SoundSport Headphones,1,99.99,2019-02-27 12:40:00,469 Hill St, Seattle,WA,98101 +151973,Bose SoundSport Headphones,1,99.99,2019-02-03 21:25:00,744 Hickory St, Atlanta,GA,30301 +151974,AA Batteries (4-pack),1,3.84,2019-02-07 16:51:00,297 Forest St, Portland,OR,97035 +151975,AA Batteries (4-pack),1,3.84,2019-02-24 08:46:00,654 12th St, New York City,NY,10001 +151976,AAA Batteries (4-pack),1,2.99,2019-02-20 21:13:00,750 Sunset St, Los Angeles,CA,90001 +151976,Bose SoundSport Headphones,1,99.99,2019-02-20 21:13:00,750 Sunset St, Los Angeles,CA,90001 +151977,AAA Batteries (4-pack),2,2.99,2019-02-02 09:12:00,272 Hickory St, San Francisco,CA,94016 +151978,USB-C Charging Cable,1,11.95,2019-02-05 15:43:00,148 Main St, San Francisco,CA,94016 +151979,AAA Batteries (4-pack),1,2.99,2019-02-17 10:51:00,329 Lincoln St, Los Angeles,CA,90001 +151980,AA Batteries (4-pack),2,3.84,2019-02-11 21:34:00,326 Washington St, Los Angeles,CA,90001 +151981,Bose SoundSport Headphones,1,99.99,2019-02-16 22:45:00,473 Johnson St, Atlanta,GA,30301 +151982,USB-C Charging Cable,2,11.95,2019-02-07 00:08:00,259 Wilson St, Los Angeles,CA,90001 +151983,27in 4K Gaming Monitor,1,389.99,2019-02-05 11:16:00,289 11th St, New York City,NY,10001 +151984,USB-C Charging Cable,1,11.95,2019-02-02 18:44:00,598 Pine St, San Francisco,CA,94016 +151985,AAA Batteries (4-pack),1,2.99,2019-02-12 09:14:00,802 Johnson St, San Francisco,CA,94016 +151986,27in 4K Gaming Monitor,1,389.99,2019-02-16 16:01:00,553 7th St, San Francisco,CA,94016 +151987,Bose SoundSport Headphones,1,99.99,2019-02-28 21:46:00,798 Highland St, Dallas,TX,75001 +151988,27in FHD Monitor,1,149.99,2019-02-05 22:53:00,833 Highland St, Atlanta,GA,30301 +151989,AA Batteries (4-pack),2,3.84,2019-02-25 00:53:00,55 Ridge St, San Francisco,CA,94016 +151990,Google Phone,1,600.0,2019-02-14 16:18:00,173 Lakeview St, San Francisco,CA,94016 +151991,Bose SoundSport Headphones,1,99.99,2019-02-20 03:38:00,545 Adams St, Portland,OR,97035 +151992,USB-C Charging Cable,2,11.95,2019-02-26 23:49:00,631 Johnson St, New York City,NY,10001 +151992,Apple Airpods Headphones,1,150.0,2019-02-26 23:49:00,631 Johnson St, New York City,NY,10001 +151993,27in 4K Gaming Monitor,1,389.99,2019-02-02 11:35:00,187 Cedar St, Boston,MA,02215 +151994,Apple Airpods Headphones,1,150.0,2019-02-06 18:09:00,267 9th St, Portland,OR,97035 +151995,Apple Airpods Headphones,1,150.0,2019-02-09 20:53:00,802 South St, New York City,NY,10001 +151996,Lightning Charging Cable,1,14.95,2019-02-05 17:21:00,846 4th St, Dallas,TX,75001 +151997,USB-C Charging Cable,1,11.95,2019-02-16 08:37:00,151 Walnut St, Atlanta,GA,30301 +151998,Lightning Charging Cable,2,14.95,2019-02-06 13:10:00,835 Maple St, San Francisco,CA,94016 +151999,Macbook Pro Laptop,1,1700.0,2019-02-03 11:17:00,157 Forest St, San Francisco,CA,94016 +152000,Wired Headphones,1,11.99,2019-02-28 17:04:00,666 Forest St, Los Angeles,CA,90001 +152001,AA Batteries (4-pack),2,3.84,2019-02-22 02:09:00,115 Jackson St, San Francisco,CA,94016 +152002,34in Ultrawide Monitor,1,379.99,2019-02-14 12:11:00,992 Adams St, Atlanta,GA,30301 +152002,AAA Batteries (4-pack),2,2.99,2019-02-14 12:11:00,992 Adams St, Atlanta,GA,30301 +152003,USB-C Charging Cable,1,11.95,2019-02-25 21:39:00,21 Madison St, New York City,NY,10001 +152004,Lightning Charging Cable,1,14.95,2019-02-10 19:43:00,878 Jefferson St, New York City,NY,10001 +152005,Lightning Charging Cable,1,14.95,2019-02-02 20:45:00,970 North St, San Francisco,CA,94016 +152006,USB-C Charging Cable,1,11.95,2019-02-03 11:17:00,314 Elm St, Portland,OR,97035 +152007,Bose SoundSport Headphones,1,99.99,2019-02-18 15:06:00,143 Washington St, Boston,MA,02215 +152008,AA Batteries (4-pack),1,3.84,2019-02-21 18:29:00,161 Washington St, Portland,OR,97035 +152009,Bose SoundSport Headphones,1,99.99,2019-02-13 17:12:00,716 Forest St, San Francisco,CA,94016 +152010,Wired Headphones,1,11.99,2019-02-04 09:28:00,190 Adams St, San Francisco,CA,94016 +152011,USB-C Charging Cable,1,11.95,2019-02-09 11:25:00,970 13th St, Austin,TX,73301 +152012,USB-C Charging Cable,1,11.95,2019-02-13 18:58:00,533 Lakeview St, San Francisco,CA,94016 +152013,USB-C Charging Cable,1,11.95,2019-02-15 17:45:00,640 6th St, Portland,OR,97035 +152014,AAA Batteries (4-pack),1,2.99,2019-02-23 20:03:00,510 12th St, New York City,NY,10001 +152015,Lightning Charging Cable,1,14.95,2019-02-19 17:10:00,393 1st St, New York City,NY,10001 +152016,ThinkPad Laptop,1,999.99,2019-02-24 08:20:00,233 8th St, Portland,OR,97035 +152017,AAA Batteries (4-pack),1,2.99,2019-02-06 16:49:00,784 Dogwood St, Dallas,TX,75001 +152018,Google Phone,1,600.0,2019-02-12 08:56:00,897 8th St, Portland,OR,97035 +152019,34in Ultrawide Monitor,1,379.99,2019-02-15 08:27:00,459 Sunset St, Boston,MA,02215 +152020,Wired Headphones,1,11.99,2019-02-11 15:20:00,604 13th St, New York City,NY,10001 +152021,34in Ultrawide Monitor,1,379.99,2019-02-10 20:59:00,879 Hickory St, New York City,NY,10001 +152022,USB-C Charging Cable,1,11.95,2019-02-06 22:08:00,359 Park St, Dallas,TX,75001 +152023,Wired Headphones,1,11.99,2019-02-25 22:57:00,657 West St, Atlanta,GA,30301 +152024,iPhone,1,700.0,2019-02-04 20:40:00,938 Highland St, Dallas,TX,75001 +152025,iPhone,1,700.0,2019-02-27 12:21:00,910 5th St, San Francisco,CA,94016 +152026,Wired Headphones,1,11.99,2019-02-12 20:07:00,106 Maple St, Portland,ME,04101 +152027,iPhone,1,700.0,2019-02-27 23:36:00,972 9th St, Portland,OR,97035 +152028,USB-C Charging Cable,1,11.95,2019-02-17 10:07:00,95 9th St, Atlanta,GA,30301 +152029,USB-C Charging Cable,1,11.95,2019-02-18 12:14:00,873 Elm St, Atlanta,GA,30301 +152030,27in FHD Monitor,1,149.99,2019-02-01 13:43:00,846 8th St, Dallas,TX,75001 +152031,AA Batteries (4-pack),1,3.84,2019-02-02 21:36:00,774 14th St, San Francisco,CA,94016 +152032,USB-C Charging Cable,1,11.95,2019-02-23 10:40:00,807 Chestnut St, Portland,ME,04101 +152033,Lightning Charging Cable,1,14.95,2019-02-14 12:30:00,653 Park St, Los Angeles,CA,90001 +152034,27in FHD Monitor,2,149.99,2019-02-18 09:30:00,910 Chestnut St, New York City,NY,10001 +152035,USB-C Charging Cable,1,11.95,2019-02-27 18:43:00,387 Maple St, Seattle,WA,98101 +152036,ThinkPad Laptop,1,999.99,2019-03-01 05:56:00,477 Washington St, San Francisco,CA,94016 +152037,Lightning Charging Cable,1,14.95,2019-02-24 00:04:00,223 South St, Dallas,TX,75001 +152038,34in Ultrawide Monitor,1,379.99,2019-02-02 15:53:00,642 Jackson St, Los Angeles,CA,90001 +152039,Lightning Charging Cable,1,14.95,2019-02-02 18:49:00,862 Dogwood St, Boston,MA,02215 +152040,USB-C Charging Cable,1,11.95,2019-02-05 19:36:00,750 Ridge St, San Francisco,CA,94016 +152041,ThinkPad Laptop,1,999.99,2019-02-28 10:47:00,59 Pine St, New York City,NY,10001 +152042,AAA Batteries (4-pack),1,2.99,2019-02-11 13:26:00,236 South St, New York City,NY,10001 +152043,Apple Airpods Headphones,1,150.0,2019-02-12 12:46:00,15 Adams St, Los Angeles,CA,90001 +152043,AAA Batteries (4-pack),3,2.99,2019-02-12 12:46:00,15 Adams St, Los Angeles,CA,90001 +152044,AAA Batteries (4-pack),1,2.99,2019-02-12 08:17:00,989 Madison St, Austin,TX,73301 +152045,AA Batteries (4-pack),1,3.84,2019-02-18 03:03:00,351 Spruce St, Boston,MA,02215 +152046,Wired Headphones,1,11.99,2019-02-21 08:19:00,76 Park St, Boston,MA,02215 +152047,USB-C Charging Cable,1,11.95,2019-02-16 10:07:00,696 Washington St, San Francisco,CA,94016 +152048,USB-C Charging Cable,1,11.95,2019-02-23 13:19:00,349 Dogwood St, Austin,TX,73301 +152049,USB-C Charging Cable,2,11.95,2019-02-25 20:11:00,668 Maple St, Portland,OR,97035 +152050,USB-C Charging Cable,1,11.95,2019-02-20 23:05:00,469 Park St, Dallas,TX,75001 +152051,Wired Headphones,1,11.99,2019-02-07 03:28:00,281 West St, Seattle,WA,98101 +152052,Lightning Charging Cable,1,14.95,2019-02-08 16:53:00,663 Elm St, New York City,NY,10001 +152053,iPhone,1,700.0,2019-02-17 13:38:00,16 South St, Seattle,WA,98101 +152054,Wired Headphones,1,11.99,2019-02-02 13:35:00,633 Forest St, Boston,MA,02215 +152055,USB-C Charging Cable,1,11.95,2019-02-25 12:39:00,971 Adams St, Austin,TX,73301 +152056,AA Batteries (4-pack),1,3.84,2019-02-03 09:58:00,539 1st St, New York City,NY,10001 +152057,Vareebadd Phone,1,400.0,2019-02-22 16:32:00,836 Spruce St, Los Angeles,CA,90001 +152058,USB-C Charging Cable,1,11.95,2019-02-27 11:06:00,253 Madison St, Los Angeles,CA,90001 +152059,Macbook Pro Laptop,1,1700.0,2019-02-09 09:29:00,544 Lincoln St, Austin,TX,73301 +152060,AAA Batteries (4-pack),1,2.99,2019-02-08 11:59:00,137 Spruce St, Boston,MA,02215 +152061,AA Batteries (4-pack),1,3.84,2019-02-22 17:57:00,160 Willow St, San Francisco,CA,94016 +152062,27in 4K Gaming Monitor,1,389.99,2019-02-02 20:20:00,660 Center St, Atlanta,GA,30301 +152063,USB-C Charging Cable,1,11.95,2019-02-17 20:15:00,93 Jefferson St, Dallas,TX,75001 +152064,ThinkPad Laptop,1,999.99,2019-02-22 19:41:00,289 Highland St, Portland,OR,97035 +152064,AAA Batteries (4-pack),4,2.99,2019-02-22 19:41:00,289 Highland St, Portland,OR,97035 +152065,AA Batteries (4-pack),1,3.84,2019-02-16 10:14:00,128 Willow St, Los Angeles,CA,90001 +152066,ThinkPad Laptop,1,999.99,2019-02-13 23:07:00,241 8th St, New York City,NY,10001 +152067,AA Batteries (4-pack),2,3.84,2019-02-18 21:39:00,860 Lakeview St, Atlanta,GA,30301 +152068,AA Batteries (4-pack),2,3.84,2019-02-11 18:59:00,775 Maple St, New York City,NY,10001 +152069,Bose SoundSport Headphones,1,99.99,2019-02-04 02:18:00,545 Hickory St, Portland,OR,97035 +152070,iPhone,1,700.0,2019-02-07 20:46:00,346 8th St, Atlanta,GA,30301 +152071,20in Monitor,1,109.99,2019-02-11 22:33:00,611 Meadow St, San Francisco,CA,94016 +152072,iPhone,1,700.0,2019-02-19 16:01:00,978 Willow St, Los Angeles,CA,90001 +152072,Apple Airpods Headphones,1,150.0,2019-02-19 16:01:00,978 Willow St, Los Angeles,CA,90001 +152073,AA Batteries (4-pack),1,3.84,2019-02-28 20:18:00,528 Main St, New York City,NY,10001 +152074,AAA Batteries (4-pack),1,2.99,2019-02-07 08:36:00,787 West St, Seattle,WA,98101 +152075,Lightning Charging Cable,1,14.95,2019-02-25 15:50:00,68 Spruce St, Boston,MA,02215 +152076,Lightning Charging Cable,1,14.95,2019-02-03 11:53:00,294 Highland St, New York City,NY,10001 +152077,Vareebadd Phone,1,400.0,2019-02-18 16:14:00,192 Highland St, Los Angeles,CA,90001 +152078,27in FHD Monitor,1,149.99,2019-02-21 17:32:00,304 Maple St, San Francisco,CA,94016 +152079,AA Batteries (4-pack),1,3.84,2019-02-18 22:30:00,913 Willow St, Los Angeles,CA,90001 +152080,27in 4K Gaming Monitor,1,389.99,2019-02-11 13:38:00,682 9th St, Portland,OR,97035 +152081,iPhone,1,700.0,2019-02-18 20:59:00,916 Dogwood St, Portland,OR,97035 +152081,Lightning Charging Cable,1,14.95,2019-02-18 20:59:00,916 Dogwood St, Portland,OR,97035 +152082,AAA Batteries (4-pack),1,2.99,2019-02-27 19:10:00,831 6th St, Atlanta,GA,30301 +152083,AA Batteries (4-pack),1,3.84,2019-02-22 13:29:00,559 Dogwood St, Seattle,WA,98101 +152084,Apple Airpods Headphones,1,150.0,2019-02-02 14:28:00,917 Lake St, New York City,NY,10001 +152085,Wired Headphones,1,11.99,2019-02-20 02:44:00,994 Spruce St, Boston,MA,02215 +152086,27in FHD Monitor,1,149.99,2019-02-02 19:25:00,882 River St, Los Angeles,CA,90001 +152087,Macbook Pro Laptop,1,1700.0,2019-02-10 15:38:00,542 Church St, Seattle,WA,98101 +152088,Lightning Charging Cable,1,14.95,2019-02-13 13:39:00,224 North St, San Francisco,CA,94016 +152089,Vareebadd Phone,1,400.0,2019-02-13 19:15:00,638 Spruce St, San Francisco,CA,94016 +152090,iPhone,1,700.0,2019-02-16 15:35:00,62 Lincoln St, San Francisco,CA,94016 +152091,Flatscreen TV,1,300.0,2019-02-11 19:44:00,338 Park St, Dallas,TX,75001 +152092,AA Batteries (4-pack),1,3.84,2019-02-08 21:41:00,700 Walnut St, Los Angeles,CA,90001 +152093,AAA Batteries (4-pack),1,2.99,2019-02-02 20:19:00,5 Johnson St, San Francisco,CA,94016 +152094,AA Batteries (4-pack),1,3.84,2019-02-28 21:56:00,394 2nd St, Los Angeles,CA,90001 +152095,Vareebadd Phone,1,400.0,2019-02-27 13:29:00,907 Jefferson St, New York City,NY,10001 +152096,ThinkPad Laptop,1,999.99,2019-02-27 12:18:00,659 Jefferson St, New York City,NY,10001 +152097,27in FHD Monitor,1,149.99,2019-02-26 22:03:00,923 1st St, San Francisco,CA,94016 +152098,AA Batteries (4-pack),1,3.84,2019-02-28 23:45:00,588 Adams St, San Francisco,CA,94016 +152099,Bose SoundSport Headphones,1,99.99,2019-02-08 00:35:00,837 Dogwood St, Los Angeles,CA,90001 +152100,iPhone,1,700.0,2019-02-09 10:26:00,445 Walnut St, Dallas,TX,75001 +152101,AAA Batteries (4-pack),2,2.99,2019-02-21 10:28:00,668 Hickory St, Atlanta,GA,30301 +152102,Apple Airpods Headphones,1,150.0,2019-02-24 18:58:00,681 6th St, San Francisco,CA,94016 +152103,Flatscreen TV,1,300.0,2019-02-17 12:03:00,1 Hill St, Boston,MA,02215 +152104,AA Batteries (4-pack),2,3.84,2019-02-19 22:40:00,170 Center St, New York City,NY,10001 +152105,Lightning Charging Cable,1,14.95,2019-02-01 14:15:00,604 Hill St, Austin,TX,73301 +152106,20in Monitor,1,109.99,2019-02-15 13:00:00,483 Lake St, Los Angeles,CA,90001 +152107,USB-C Charging Cable,1,11.95,2019-02-24 12:25:00,461 Sunset St, Seattle,WA,98101 +152108,Bose SoundSport Headphones,1,99.99,2019-02-15 17:24:00,702 1st St, New York City,NY,10001 +152109,Bose SoundSport Headphones,1,99.99,2019-02-19 10:35:00,2 Dogwood St, Atlanta,GA,30301 +152110,Bose SoundSport Headphones,1,99.99,2019-02-25 17:52:00,244 Lakeview St, Los Angeles,CA,90001 +152111,Wired Headphones,1,11.99,2019-02-19 22:35:00,950 Wilson St, Los Angeles,CA,90001 +152112,Apple Airpods Headphones,1,150.0,2019-02-02 13:25:00,779 Meadow St, San Francisco,CA,94016 +152113,Apple Airpods Headphones,1,150.0,2019-02-10 22:07:00,365 Elm St, New York City,NY,10001 +152114,USB-C Charging Cable,1,11.95,2019-02-18 12:31:00,378 Center St, San Francisco,CA,94016 +152115,Flatscreen TV,1,300.0,2019-02-06 14:44:00,161 11th St, New York City,NY,10001 +152116,Bose SoundSport Headphones,1,99.99,2019-02-17 11:01:00,243 13th St, Los Angeles,CA,90001 +152117,AAA Batteries (4-pack),3,2.99,2019-02-20 11:59:00,260 Lake St, Los Angeles,CA,90001 +152118,Google Phone,1,600.0,2019-02-25 08:03:00,189 Hickory St, Los Angeles,CA,90001 +152119,Apple Airpods Headphones,1,150.0,2019-02-17 19:46:00,702 River St, New York City,NY,10001 +152120,Wired Headphones,1,11.99,2019-02-06 22:13:00,926 4th St, San Francisco,CA,94016 +152121,Wired Headphones,2,11.99,2019-02-19 12:53:00,667 Walnut St, Dallas,TX,75001 +152122,Flatscreen TV,1,300.0,2019-02-07 17:17:00,860 Jefferson St, San Francisco,CA,94016 +152123,Bose SoundSport Headphones,1,99.99,2019-02-10 02:44:00,164 Sunset St, Atlanta,GA,30301 +152124,Google Phone,1,600.0,2019-02-26 20:55:00,30 Walnut St, San Francisco,CA,94016 +152124,USB-C Charging Cable,1,11.95,2019-02-26 20:55:00,30 Walnut St, San Francisco,CA,94016 +152125,Apple Airpods Headphones,1,150.0,2019-02-12 23:46:00,511 1st St, Portland,OR,97035 +152126,Lightning Charging Cable,1,14.95,2019-02-13 16:29:00,96 Hickory St, Austin,TX,73301 +152127,AA Batteries (4-pack),1,3.84,2019-02-02 20:40:00,212 Lakeview St, Boston,MA,02215 +152128,27in FHD Monitor,1,149.99,2019-02-23 15:15:00,855 1st St, New York City,NY,10001 +152129,34in Ultrawide Monitor,1,379.99,2019-02-25 10:20:00,830 Lake St, San Francisco,CA,94016 +152130,Lightning Charging Cable,1,14.95,2019-02-21 07:42:00,32 2nd St, San Francisco,CA,94016 +152131,34in Ultrawide Monitor,1,379.99,2019-02-12 23:33:00,975 Sunset St, New York City,NY,10001 +152132,USB-C Charging Cable,1,11.95,2019-02-08 20:36:00,274 Park St, Dallas,TX,75001 +152133,34in Ultrawide Monitor,1,379.99,2019-02-09 09:53:00,148 Spruce St, San Francisco,CA,94016 +152134,Macbook Pro Laptop,1,1700.0,2019-02-15 12:16:00,191 Highland St, New York City,NY,10001 +152135,iPhone,1,700.0,2019-02-16 21:16:00,946 14th St, Austin,TX,73301 +152135,Wired Headphones,1,11.99,2019-02-16 21:16:00,946 14th St, Austin,TX,73301 +152136,Lightning Charging Cable,1,14.95,2019-02-27 17:20:00,847 Hill St, Dallas,TX,75001 +152137,AAA Batteries (4-pack),1,2.99,2019-02-09 10:25:00,552 Church St, Austin,TX,73301 +152138,Wired Headphones,1,11.99,2019-02-09 19:44:00,841 4th St, San Francisco,CA,94016 +152139,Wired Headphones,1,11.99,2019-02-15 13:23:00,110 Chestnut St, Dallas,TX,75001 +152140,27in FHD Monitor,1,149.99,2019-02-27 18:15:00,708 Elm St, Boston,MA,02215 +152141,AA Batteries (4-pack),1,3.84,2019-02-23 16:06:00,655 10th St, Portland,OR,97035 +152142,AA Batteries (4-pack),1,3.84,2019-02-14 17:34:00,177 Jefferson St, San Francisco,CA,94016 +152143,AA Batteries (4-pack),1,3.84,2019-02-07 16:22:00,508 Elm St, Los Angeles,CA,90001 +152144,Lightning Charging Cable,1,14.95,2019-02-15 14:30:00,944 Ridge St, Austin,TX,73301 +152145,AAA Batteries (4-pack),3,2.99,2019-02-13 16:27:00,992 Meadow St, New York City,NY,10001 +152146,USB-C Charging Cable,1,11.95,2019-02-18 13:43:00,272 1st St, Los Angeles,CA,90001 +152147,LG Dryer,1,600.0,2019-02-24 07:59:00,952 8th St, Atlanta,GA,30301 +152148,Wired Headphones,1,11.99,2019-02-12 18:42:00,528 Dogwood St, Los Angeles,CA,90001 +152149,Wired Headphones,1,11.99,2019-02-20 16:53:00,125 5th St, Dallas,TX,75001 +152150,Bose SoundSport Headphones,1,99.99,2019-02-21 11:03:00,514 South St, Los Angeles,CA,90001 +152151,27in FHD Monitor,1,149.99,2019-02-09 12:07:00,494 Forest St, Boston,MA,02215 +152152,AAA Batteries (4-pack),1,2.99,2019-02-06 11:24:00,615 14th St, Los Angeles,CA,90001 +152153,27in FHD Monitor,1,149.99,2019-02-03 19:30:00,202 Cherry St, Los Angeles,CA,90001 +152154,Flatscreen TV,1,300.0,2019-02-09 20:37:00,580 11th St, New York City,NY,10001 +152155,27in FHD Monitor,1,149.99,2019-02-22 13:01:00,778 Hickory St, Atlanta,GA,30301 +152156,Flatscreen TV,1,300.0,2019-02-05 10:36:00,999 Adams St, Dallas,TX,75001 +152157,AAA Batteries (4-pack),1,2.99,2019-02-21 21:40:00,485 Lincoln St, Dallas,TX,75001 +152158,27in 4K Gaming Monitor,1,389.99,2019-02-23 18:47:00,839 6th St, Seattle,WA,98101 +152159,ThinkPad Laptop,1,999.99,2019-02-10 17:01:00,573 Adams St, Seattle,WA,98101 +152160,Apple Airpods Headphones,1,150.0,2019-02-20 11:35:00,822 Jefferson St, Dallas,TX,75001 +152161,Wired Headphones,1,11.99,2019-02-06 18:04:00,246 Sunset St, San Francisco,CA,94016 +152162,Lightning Charging Cable,1,14.95,2019-02-04 22:25:00,25 Wilson St, Atlanta,GA,30301 +152163,Wired Headphones,1,11.99,2019-02-17 10:18:00,672 5th St, San Francisco,CA,94016 +152164,Flatscreen TV,1,300.0,2019-02-15 13:46:00,264 Cedar St, San Francisco,CA,94016 +152165,AA Batteries (4-pack),3,3.84,2019-02-10 18:49:00,362 Chestnut St, Boston,MA,02215 +152166,Wired Headphones,1,11.99,2019-02-23 15:10:00,198 Meadow St, Austin,TX,73301 +152167,34in Ultrawide Monitor,1,379.99,2019-02-20 19:31:00,593 West St, San Francisco,CA,94016 +152168,Lightning Charging Cable,1,14.95,2019-02-04 12:42:00,741 Center St, Atlanta,GA,30301 +152169,20in Monitor,1,109.99,2019-02-16 17:39:00,480 Chestnut St, New York City,NY,10001 +152170,USB-C Charging Cable,1,11.95,2019-02-10 13:04:00,559 Main St, Boston,MA,02215 +152171,27in FHD Monitor,1,149.99,2019-02-24 20:22:00,707 Hill St, Austin,TX,73301 +152172,Macbook Pro Laptop,1,1700.0,2019-02-28 19:07:00,988 South St, Austin,TX,73301 +152173,AAA Batteries (4-pack),1,2.99,2019-02-25 10:55:00,962 7th St, Atlanta,GA,30301 +152174,34in Ultrawide Monitor,1,379.99,2019-02-06 12:05:00,493 Sunset St, Austin,TX,73301 +152175,AAA Batteries (4-pack),1,2.99,2019-02-11 15:42:00,642 8th St, New York City,NY,10001 +152176,ThinkPad Laptop,1,999.99,2019-02-15 08:32:00,654 Center St, Los Angeles,CA,90001 +152177,34in Ultrawide Monitor,1,379.99,2019-02-03 13:50:00,613 11th St, New York City,NY,10001 +152178,AA Batteries (4-pack),1,3.84,2019-02-26 20:19:00,896 Cedar St, Los Angeles,CA,90001 +152179,Lightning Charging Cable,1,14.95,2019-02-04 11:42:00,780 Willow St, Los Angeles,CA,90001 +152180,AA Batteries (4-pack),2,3.84,2019-02-04 10:53:00,295 8th St, Los Angeles,CA,90001 +152181,AAA Batteries (4-pack),1,2.99,2019-02-10 09:57:00,636 Center St, New York City,NY,10001 +152182,Apple Airpods Headphones,1,150.0,2019-02-01 19:54:00,868 6th St, Los Angeles,CA,90001 +152183,34in Ultrawide Monitor,1,379.99,2019-02-17 10:06:00,194 Center St, San Francisco,CA,94016 +152184,AAA Batteries (4-pack),4,2.99,2019-02-03 17:04:00,172 4th St, Seattle,WA,98101 +152185,Google Phone,1,600.0,2019-02-27 11:32:00,577 Elm St, Los Angeles,CA,90001 +152186,Wired Headphones,1,11.99,2019-02-04 19:30:00,573 Cedar St, New York City,NY,10001 +152187,Macbook Pro Laptop,1,1700.0,2019-02-19 13:43:00,415 Hickory St, New York City,NY,10001 +152188,Bose SoundSport Headphones,1,99.99,2019-02-03 17:50:00,164 12th St, Boston,MA,02215 +152189,USB-C Charging Cable,1,11.95,2019-02-13 07:17:00,784 South St, New York City,NY,10001 +152190,Apple Airpods Headphones,1,150.0,2019-02-05 20:15:00,443 14th St, New York City,NY,10001 +152191,Lightning Charging Cable,1,14.95,2019-02-20 21:04:00,319 Madison St, San Francisco,CA,94016 +152192,Lightning Charging Cable,2,14.95,2019-02-26 20:34:00,519 10th St, San Francisco,CA,94016 +152193,Lightning Charging Cable,1,14.95,2019-02-28 09:34:00,692 Maple St, Seattle,WA,98101 +152194,Wired Headphones,1,11.99,2019-02-06 11:02:00,994 Hickory St, New York City,NY,10001 +152195,Lightning Charging Cable,1,14.95,2019-02-24 16:27:00,454 South St, San Francisco,CA,94016 +152196,USB-C Charging Cable,1,11.95,2019-02-17 17:18:00,530 Jackson St, Los Angeles,CA,90001 +152196,Apple Airpods Headphones,1,150.0,2019-02-17 17:18:00,530 Jackson St, Los Angeles,CA,90001 +152197,Wired Headphones,1,11.99,2019-02-25 12:55:00,70 Park St, Los Angeles,CA,90001 +152198,AAA Batteries (4-pack),1,2.99,2019-02-28 19:07:00,740 Forest St, New York City,NY,10001 +152199,20in Monitor,1,109.99,2019-02-04 09:47:00,613 Hickory St, Atlanta,GA,30301 +152200,Flatscreen TV,1,300.0,2019-02-15 19:10:00,290 Wilson St, Atlanta,GA,30301 +152201,Google Phone,1,600.0,2019-02-24 15:05:00,551 Lake St, San Francisco,CA,94016 +152202,USB-C Charging Cable,1,11.95,2019-02-10 14:15:00,864 7th St, Los Angeles,CA,90001 +152203,USB-C Charging Cable,1,11.95,2019-02-17 02:19:00,98 River St, Los Angeles,CA,90001 +152204,27in FHD Monitor,1,149.99,2019-02-18 19:20:00,787 Center St, Los Angeles,CA,90001 +152205,Lightning Charging Cable,1,14.95,2019-02-12 22:14:00,46 Ridge St, Austin,TX,73301 +152206,Apple Airpods Headphones,1,150.0,2019-02-11 10:42:00,240 1st St, San Francisco,CA,94016 +152206,AAA Batteries (4-pack),1,2.99,2019-02-11 10:42:00,240 1st St, San Francisco,CA,94016 +152207,AAA Batteries (4-pack),1,2.99,2019-02-21 18:57:00,20 Johnson St, Atlanta,GA,30301 +152208,34in Ultrawide Monitor,1,379.99,2019-02-09 22:57:00,672 Lincoln St, Dallas,TX,75001 +152209,AA Batteries (4-pack),1,3.84,2019-02-05 11:59:00,118 Cherry St, Los Angeles,CA,90001 +152210,Google Phone,1,600.0,2019-02-27 19:22:00,784 4th St, San Francisco,CA,94016 +152211,USB-C Charging Cable,1,11.95,2019-02-22 22:25:00,802 Center St, New York City,NY,10001 +152212,AA Batteries (4-pack),2,3.84,2019-02-23 11:27:00,668 10th St, San Francisco,CA,94016 +152213,LG Washing Machine,1,600.0,2019-02-20 18:15:00,286 Cedar St, New York City,NY,10001 +152214,Bose SoundSport Headphones,1,99.99,2019-02-06 17:53:00,847 River St, Boston,MA,02215 +152215,USB-C Charging Cable,1,11.95,2019-02-09 22:46:00,974 6th St, Seattle,WA,98101 +152216,Wired Headphones,1,11.99,2019-02-24 12:34:00,534 9th St, Austin,TX,73301 +152217,AAA Batteries (4-pack),1,2.99,2019-02-14 19:57:00,778 Lincoln St, Los Angeles,CA,90001 +152218,AA Batteries (4-pack),1,3.84,2019-02-27 15:54:00,378 Chestnut St, Seattle,WA,98101 +152219,USB-C Charging Cable,2,11.95,2019-02-24 13:37:00,446 Center St, Boston,MA,02215 +152220,Lightning Charging Cable,1,14.95,2019-02-08 09:08:00,243 Church St, New York City,NY,10001 +152221,AAA Batteries (4-pack),1,2.99,2019-02-26 23:02:00,905 12th St, San Francisco,CA,94016 +152222,34in Ultrawide Monitor,1,379.99,2019-02-18 11:00:00,677 Lake St, Los Angeles,CA,90001 +152223,AA Batteries (4-pack),1,3.84,2019-02-05 23:53:00,594 Cherry St, San Francisco,CA,94016 +152224,ThinkPad Laptop,1,999.99,2019-02-01 15:34:00,837 1st St, Los Angeles,CA,90001 +152225,AAA Batteries (4-pack),1,2.99,2019-02-15 17:19:00,910 7th St, Seattle,WA,98101 +152225,27in 4K Gaming Monitor,1,389.99,2019-02-15 17:19:00,910 7th St, Seattle,WA,98101 +152226,27in FHD Monitor,1,149.99,2019-02-24 11:54:00,781 Main St, Los Angeles,CA,90001 +152227,Bose SoundSport Headphones,1,99.99,2019-02-14 22:58:00,147 Hill St, San Francisco,CA,94016 +152228,34in Ultrawide Monitor,1,379.99,2019-02-10 13:22:00,785 Center St, Los Angeles,CA,90001 +152229,AA Batteries (4-pack),1,3.84,2019-02-21 15:07:00,201 Lake St, New York City,NY,10001 +152230,USB-C Charging Cable,1,11.95,2019-02-21 17:46:00,341 Maple St, Seattle,WA,98101 +152231,AAA Batteries (4-pack),1,2.99,2019-02-25 06:36:00,560 11th St, Atlanta,GA,30301 +152232,Bose SoundSport Headphones,1,99.99,2019-02-26 14:48:00,37 7th St, Los Angeles,CA,90001 +152233,USB-C Charging Cable,1,11.95,2019-02-25 23:07:00,229 Church St, Atlanta,GA,30301 +152234,Apple Airpods Headphones,1,150.0,2019-02-28 12:54:00,193 Walnut St, Atlanta,GA,30301 +152235,Wired Headphones,1,11.99,2019-02-01 14:38:00,587 Jackson St, San Francisco,CA,94016 +152236,Bose SoundSport Headphones,2,99.99,2019-02-24 09:38:00,999 Spruce St, Austin,TX,73301 +152237,USB-C Charging Cable,1,11.95,2019-02-07 16:12:00,243 1st St, New York City,NY,10001 +152238,USB-C Charging Cable,1,11.95,2019-02-19 19:23:00,304 Madison St, San Francisco,CA,94016 +152239,ThinkPad Laptop,1,999.99,2019-02-14 21:49:00,741 11th St, New York City,NY,10001 +152240,Lightning Charging Cable,1,14.95,2019-02-02 13:27:00,16 Elm St, San Francisco,CA,94016 +152241,AA Batteries (4-pack),1,3.84,2019-02-16 13:03:00,291 Cherry St, Austin,TX,73301 +152242,AAA Batteries (4-pack),1,2.99,2019-02-22 19:15:00,720 Walnut St, Seattle,WA,98101 +152242,Lightning Charging Cable,1,14.95,2019-02-22 19:15:00,720 Walnut St, Seattle,WA,98101 +152243,Apple Airpods Headphones,1,150.0,2019-02-19 08:42:00,403 Main St, Boston,MA,02215 +152244,Flatscreen TV,1,300.0,2019-02-02 09:26:00,191 Spruce St, San Francisco,CA,94016 +152245,LG Washing Machine,1,600.0,2019-02-05 09:42:00,790 Adams St, Portland,ME,04101 +152246,Flatscreen TV,1,300.0,2019-02-14 19:07:00,28 Hill St, Dallas,TX,75001 +152247,27in 4K Gaming Monitor,1,389.99,2019-02-08 10:34:00,586 Park St, Portland,OR,97035 +152248,Lightning Charging Cable,1,14.95,2019-02-26 11:14:00,362 1st St, Boston,MA,02215 +152249,34in Ultrawide Monitor,1,379.99,2019-02-11 12:01:00,324 Main St, Los Angeles,CA,90001 +152250,Flatscreen TV,1,300.0,2019-02-25 10:33:00,584 1st St, San Francisco,CA,94016 +152251,AAA Batteries (4-pack),2,2.99,2019-02-24 23:37:00,682 North St, Los Angeles,CA,90001 +152252,Google Phone,1,600.0,2019-02-08 10:56:00,895 13th St, San Francisco,CA,94016 +152253,Wired Headphones,1,11.99,2019-02-24 16:08:00,678 10th St, New York City,NY,10001 +152254,AA Batteries (4-pack),2,3.84,2019-02-04 12:09:00,885 10th St, Atlanta,GA,30301 +152255,AAA Batteries (4-pack),2,2.99,2019-02-14 21:23:00,840 Jefferson St, Boston,MA,02215 +152256,Apple Airpods Headphones,1,150.0,2019-02-26 21:19:00,501 Forest St, San Francisco,CA,94016 +152257,AAA Batteries (4-pack),1,2.99,2019-02-15 22:26:00,268 Jefferson St, Austin,TX,73301 +152258,Wired Headphones,1,11.99,2019-02-21 09:56:00,494 Highland St, New York City,NY,10001 +152259,USB-C Charging Cable,1,11.95,2019-02-26 20:39:00,171 2nd St, San Francisco,CA,94016 +152260,AAA Batteries (4-pack),2,2.99,2019-02-16 11:45:00,503 Willow St, New York City,NY,10001 +152261,AAA Batteries (4-pack),3,2.99,2019-02-02 13:12:00,31 Walnut St, Los Angeles,CA,90001 +152262,Flatscreen TV,1,300.0,2019-02-01 10:06:00,113 13th St, Austin,TX,73301 +152263,AA Batteries (4-pack),1,3.84,2019-02-05 15:32:00,885 Church St, Austin,TX,73301 +152264,27in FHD Monitor,1,149.99,2019-02-03 08:25:00,15 Meadow St, Los Angeles,CA,90001 +152265,Wired Headphones,1,11.99,2019-02-03 18:28:00,307 Dogwood St, Los Angeles,CA,90001 +152266,AA Batteries (4-pack),1,3.84,2019-02-17 19:06:00,152 Church St, New York City,NY,10001 +152267,AAA Batteries (4-pack),1,2.99,2019-02-23 14:55:00,123 Lincoln St, Los Angeles,CA,90001 +152268,34in Ultrawide Monitor,1,379.99,2019-02-25 19:29:00,83 14th St, Los Angeles,CA,90001 +152269,Flatscreen TV,1,300.0,2019-02-26 22:40:00,75 North St, San Francisco,CA,94016 +152270,USB-C Charging Cable,1,11.95,2019-02-14 10:39:00,810 Maple St, Seattle,WA,98101 +152271,iPhone,1,700.0,2019-02-04 06:28:00,217 Lakeview St, Atlanta,GA,30301 +152272,Bose SoundSport Headphones,1,99.99,2019-02-06 18:30:00,892 Adams St, San Francisco,CA,94016 +152273,ThinkPad Laptop,1,999.99,2019-02-08 09:44:00,716 Cedar St, San Francisco,CA,94016 +152274,Apple Airpods Headphones,1,150.0,2019-02-20 14:32:00,253 Willow St, Atlanta,GA,30301 +152275,Lightning Charging Cable,1,14.95,2019-02-21 16:13:00,985 Hickory St, Portland,OR,97035 +152276,USB-C Charging Cable,1,11.95,2019-02-05 20:56:00,430 Maple St, Seattle,WA,98101 +152277,27in FHD Monitor,1,149.99,2019-02-23 00:55:00,804 5th St, San Francisco,CA,94016 +152278,34in Ultrawide Monitor,1,379.99,2019-02-12 15:31:00,2 Pine St, Boston,MA,02215 +152279,Apple Airpods Headphones,1,150.0,2019-02-18 13:37:00,953 Chestnut St, Boston,MA,02215 +152280,Wired Headphones,1,11.99,2019-02-06 20:23:00,851 River St, Los Angeles,CA,90001 +152281,Wired Headphones,1,11.99,2019-02-07 23:10:00,631 13th St, New York City,NY,10001 +152282,Wired Headphones,1,11.99,2019-02-17 20:36:00,131 Meadow St, Boston,MA,02215 +152283,Wired Headphones,1,11.99,2019-02-23 09:14:00,367 Willow St, Boston,MA,02215 +152284,USB-C Charging Cable,1,11.95,2019-02-19 22:21:00,894 Cedar St, New York City,NY,10001 +152285,AA Batteries (4-pack),1,3.84,2019-02-02 23:36:00,208 14th St, Los Angeles,CA,90001 +152286,AAA Batteries (4-pack),1,2.99,2019-02-27 19:44:00,731 West St, Portland,ME,04101 +152287,iPhone,1,700.0,2019-02-24 16:42:00,845 Lake St, Dallas,TX,75001 +152288,AA Batteries (4-pack),1,3.84,2019-02-15 16:22:00,660 Willow St, Atlanta,GA,30301 +152289,AAA Batteries (4-pack),1,2.99,2019-02-17 23:06:00,984 4th St, San Francisco,CA,94016 +152290,20in Monitor,1,109.99,2019-02-18 11:57:00,824 Hickory St, San Francisco,CA,94016 +152291,Apple Airpods Headphones,1,150.0,2019-02-09 15:56:00,923 Adams St, Portland,OR,97035 +152292,Lightning Charging Cable,1,14.95,2019-02-23 13:50:00,466 1st St, Dallas,TX,75001 +152293,iPhone,1,700.0,2019-02-01 14:34:00,596 West St, San Francisco,CA,94016 +152293,Lightning Charging Cable,1,14.95,2019-02-01 14:34:00,596 West St, San Francisco,CA,94016 +152293,Apple Airpods Headphones,1,150.0,2019-02-01 14:34:00,596 West St, San Francisco,CA,94016 +152294,Lightning Charging Cable,1,14.95,2019-02-01 20:28:00,342 Walnut St, San Francisco,CA,94016 +152295,Bose SoundSport Headphones,1,99.99,2019-02-01 10:23:00,305 14th St, San Francisco,CA,94016 +152296,AA Batteries (4-pack),1,3.84,2019-02-27 15:44:00,890 Chestnut St, Portland,OR,97035 +152297,Flatscreen TV,1,300.0,2019-02-15 10:36:00,619 Lincoln St, Los Angeles,CA,90001 +152298,20in Monitor,1,109.99,2019-02-06 12:30:00,79 2nd St, Portland,ME,04101 +152299,AA Batteries (4-pack),1,3.84,2019-02-02 13:15:00,454 6th St, New York City,NY,10001 +152300,Wired Headphones,1,11.99,2019-02-08 13:18:00,3 11th St, San Francisco,CA,94016 +152301,Macbook Pro Laptop,1,1700.0,2019-02-12 10:01:00,705 Spruce St, Los Angeles,CA,90001 +152302,27in FHD Monitor,1,149.99,2019-02-09 10:28:00,40 Cherry St, Boston,MA,02215 +152303,USB-C Charging Cable,1,11.95,2019-02-03 18:48:00,684 2nd St, New York City,NY,10001 +152304,AA Batteries (4-pack),1,3.84,2019-02-13 22:28:00,579 Cherry St, Boston,MA,02215 +152305,Lightning Charging Cable,1,14.95,2019-02-10 00:26:00,671 Wilson St, Portland,OR,97035 +152306,27in FHD Monitor,1,149.99,2019-02-11 20:57:00,140 8th St, Los Angeles,CA,90001 +152307,Flatscreen TV,1,300.0,2019-02-03 11:14:00,595 9th St, Boston,MA,02215 +152308,34in Ultrawide Monitor,1,379.99,2019-02-20 12:30:00,641 Jackson St, Los Angeles,CA,90001 +152309,Lightning Charging Cable,1,14.95,2019-02-18 14:47:00,134 Adams St, Los Angeles,CA,90001 +152310,AA Batteries (4-pack),1,3.84,2019-02-21 22:35:00,688 9th St, New York City,NY,10001 +152311,Bose SoundSport Headphones,1,99.99,2019-02-01 23:26:00,265 4th St, Dallas,TX,75001 +152312,Wired Headphones,2,11.99,2019-02-24 07:23:00,280 Cedar St, San Francisco,CA,94016 +152313,USB-C Charging Cable,1,11.95,2019-02-10 11:51:00,400 West St, Los Angeles,CA,90001 +152314,27in FHD Monitor,1,149.99,2019-02-25 14:20:00,200 North St, San Francisco,CA,94016 +152315,AA Batteries (4-pack),1,3.84,2019-02-08 15:15:00,935 Forest St, Atlanta,GA,30301 +152316,27in 4K Gaming Monitor,1,389.99,2019-02-13 09:06:00,412 Chestnut St, Atlanta,GA,30301 +152317,USB-C Charging Cable,1,11.95,2019-02-26 10:22:00,164 Hickory St, New York City,NY,10001 +152318,AA Batteries (4-pack),1,3.84,2019-02-04 13:50:00,701 5th St, Los Angeles,CA,90001 +152319,Bose SoundSport Headphones,1,99.99,2019-02-17 16:06:00,707 Church St, Los Angeles,CA,90001 +152320,Wired Headphones,1,11.99,2019-02-22 16:35:00,272 Ridge St, Portland,OR,97035 +152321,AA Batteries (4-pack),2,3.84,2019-02-05 18:25:00,385 Adams St, San Francisco,CA,94016 +152322,Bose SoundSport Headphones,1,99.99,2019-02-02 15:35:00,499 11th St, Portland,OR,97035 +152323,Google Phone,1,600.0,2019-02-24 08:09:00,927 Ridge St, Dallas,TX,75001 +152324,Lightning Charging Cable,1,14.95,2019-02-02 08:08:00,452 Walnut St, Los Angeles,CA,90001 +152325,Lightning Charging Cable,1,14.95,2019-02-07 01:02:00,613 5th St, Los Angeles,CA,90001 +152326,USB-C Charging Cable,1,11.95,2019-02-22 11:51:00,136 South St, San Francisco,CA,94016 +152327,Lightning Charging Cable,1,14.95,2019-02-03 19:58:00,523 Johnson St, Portland,OR,97035 +152328,Macbook Pro Laptop,1,1700.0,2019-02-10 11:26:00,579 Sunset St, San Francisco,CA,94016 +152329,Lightning Charging Cable,1,14.95,2019-02-12 07:44:00,731 Spruce St, Atlanta,GA,30301 +152330,Bose SoundSport Headphones,1,99.99,2019-02-25 18:53:00,827 Dogwood St, Los Angeles,CA,90001 +152331,AAA Batteries (4-pack),1,2.99,2019-02-07 18:22:00,370 Sunset St, Boston,MA,02215 +152332,AAA Batteries (4-pack),2,2.99,2019-02-07 07:25:00,178 Adams St, Boston,MA,02215 +152333,Wired Headphones,1,11.99,2019-02-20 11:06:00,936 6th St, San Francisco,CA,94016 +152334,Bose SoundSport Headphones,1,99.99,2019-02-17 18:42:00,451 River St, New York City,NY,10001 +152335,AA Batteries (4-pack),1,3.84,2019-02-24 21:57:00,122 8th St, Dallas,TX,75001 +152336,Lightning Charging Cable,1,14.95,2019-02-13 20:01:00,245 Main St, Los Angeles,CA,90001 +152337,Apple Airpods Headphones,1,150.0,2019-02-22 07:55:00,483 Lincoln St, New York City,NY,10001 +152338,AA Batteries (4-pack),1,3.84,2019-02-27 11:00:00,111 Jackson St, San Francisco,CA,94016 +152339,AA Batteries (4-pack),1,3.84,2019-02-10 09:29:00,852 Pine St, Seattle,WA,98101 +152340,Apple Airpods Headphones,1,150.0,2019-02-23 01:09:00,370 8th St, Boston,MA,02215 +152341,Bose SoundSport Headphones,1,99.99,2019-02-20 06:58:00,795 Washington St, Portland,ME,04101 +152342,Lightning Charging Cable,1,14.95,2019-02-20 14:40:00,299 Adams St, Los Angeles,CA,90001 +152343,AAA Batteries (4-pack),1,2.99,2019-02-05 14:51:00,224 Spruce St, New York City,NY,10001 +152344,AAA Batteries (4-pack),1,2.99,2019-02-06 01:58:00,152 Cedar St, San Francisco,CA,94016 +152345,AAA Batteries (4-pack),1,2.99,2019-02-27 12:29:00,138 11th St, Boston,MA,02215 +152346,Wired Headphones,1,11.99,2019-02-13 19:02:00,497 Main St, San Francisco,CA,94016 +152347,Wired Headphones,1,11.99,2019-02-05 14:35:00,899 9th St, Portland,OR,97035 +152348,AAA Batteries (4-pack),1,2.99,2019-02-13 17:51:00,770 Walnut St, San Francisco,CA,94016 +152349,AA Batteries (4-pack),1,3.84,2019-02-13 23:23:00,997 Cherry St, Los Angeles,CA,90001 +152350,27in 4K Gaming Monitor,1,389.99,2019-02-02 11:34:00,378 Church St, Austin,TX,73301 +152351,AAA Batteries (4-pack),1,2.99,2019-02-02 17:17:00,338 Park St, Seattle,WA,98101 +152352,iPhone,1,700.0,2019-02-20 10:00:00,825 13th St, New York City,NY,10001 +152353,AAA Batteries (4-pack),2,2.99,2019-02-18 20:44:00,712 Church St, San Francisco,CA,94016 +152354,AAA Batteries (4-pack),2,2.99,2019-02-16 08:56:00,321 Lincoln St, Atlanta,GA,30301 +152355,Apple Airpods Headphones,1,150.0,2019-02-14 20:26:00,546 Cherry St, Seattle,WA,98101 +152356,Lightning Charging Cable,1,14.95,2019-02-06 06:42:00,178 Jackson St, Portland,ME,04101 +152357,27in 4K Gaming Monitor,1,389.99,2019-02-20 15:39:00,213 Johnson St, San Francisco,CA,94016 +152358,Lightning Charging Cable,1,14.95,2019-02-05 09:37:00,864 Lake St, Portland,OR,97035 +152358,Apple Airpods Headphones,1,150.0,2019-02-05 09:37:00,864 Lake St, Portland,OR,97035 +152359,27in FHD Monitor,1,149.99,2019-02-16 14:58:00,616 Sunset St, Austin,TX,73301 +152360,Macbook Pro Laptop,1,1700.0,2019-02-14 13:35:00,634 6th St, Los Angeles,CA,90001 +152361,Flatscreen TV,1,300.0,2019-02-13 15:37:00,994 12th St, Austin,TX,73301 +152362,ThinkPad Laptop,1,999.99,2019-02-03 22:04:00,48 South St, New York City,NY,10001 +152363,Macbook Pro Laptop,1,1700.0,2019-02-27 09:46:00,307 Lake St, Seattle,WA,98101 +152364,iPhone,1,700.0,2019-02-05 11:24:00,669 West St, Austin,TX,73301 +152365,27in 4K Gaming Monitor,1,389.99,2019-02-06 11:07:00,339 7th St, Los Angeles,CA,90001 +152366,AAA Batteries (4-pack),1,2.99,2019-02-07 10:20:00,70 Church St, Dallas,TX,75001 +152367,Wired Headphones,1,11.99,2019-02-06 11:53:00,961 10th St, Los Angeles,CA,90001 +152368,Wired Headphones,2,11.99,2019-02-26 12:54:00,89 Forest St, New York City,NY,10001 +152369,USB-C Charging Cable,1,11.95,2019-02-25 07:15:00,966 Dogwood St, San Francisco,CA,94016 +152370,Apple Airpods Headphones,1,150.0,2019-02-27 18:00:00,648 10th St, Los Angeles,CA,90001 +152371,Macbook Pro Laptop,1,1700.0,2019-02-10 21:42:00,24 Highland St, Portland,OR,97035 +152372,USB-C Charging Cable,2,11.95,2019-02-26 11:09:00,594 7th St, San Francisco,CA,94016 +152373,Lightning Charging Cable,1,14.95,2019-02-03 10:46:00,66 South St, Seattle,WA,98101 +152374,Wired Headphones,1,11.99,2019-02-06 16:11:00,45 Elm St, Dallas,TX,75001 +152375,USB-C Charging Cable,1,11.95,2019-02-23 21:31:00,846 Church St, New York City,NY,10001 +152376,27in FHD Monitor,1,149.99,2019-02-17 15:47:00,907 4th St, New York City,NY,10001 +152377,Bose SoundSport Headphones,1,99.99,2019-02-13 10:42:00,358 Sunset St, San Francisco,CA,94016 +152378,AA Batteries (4-pack),4,3.84,2019-02-05 09:21:00,847 Center St, Portland,OR,97035 +152379,Lightning Charging Cable,1,14.95,2019-02-12 22:38:00,564 Jackson St, San Francisco,CA,94016 +152380,USB-C Charging Cable,1,11.95,2019-02-07 00:34:00,296 8th St, Portland,OR,97035 +152381,AAA Batteries (4-pack),1,2.99,2019-02-25 20:04:00,257 14th St, Los Angeles,CA,90001 +152382,AA Batteries (4-pack),2,3.84,2019-02-16 11:20:00,6 Park St, New York City,NY,10001 +152383,Apple Airpods Headphones,1,150.0,2019-02-11 09:37:00,552 Center St, New York City,NY,10001 +152384,Bose SoundSport Headphones,1,99.99,2019-02-18 08:03:00,390 1st St, Atlanta,GA,30301 +152385,AAA Batteries (4-pack),3,2.99,2019-02-17 08:03:00,690 Lincoln St, Seattle,WA,98101 +152386,27in 4K Gaming Monitor,1,389.99,2019-02-26 21:09:00,107 Lake St, New York City,NY,10001 +152387,AA Batteries (4-pack),1,3.84,2019-02-06 08:33:00,863 6th St, Austin,TX,73301 +152388,Flatscreen TV,1,300.0,2019-02-18 20:07:00,763 6th St, Boston,MA,02215 +152389,USB-C Charging Cable,2,11.95,2019-02-04 21:26:00,327 9th St, Portland,ME,04101 +152390,USB-C Charging Cable,1,11.95,2019-02-20 11:59:00,221 Sunset St, San Francisco,CA,94016 +152391,AA Batteries (4-pack),1,3.84,2019-02-13 15:41:00,973 South St, San Francisco,CA,94016 +152392,ThinkPad Laptop,1,999.99,2019-02-08 21:17:00,530 9th St, San Francisco,CA,94016 +152393,Wired Headphones,1,11.99,2019-02-10 01:53:00,579 7th St, Seattle,WA,98101 +152394,USB-C Charging Cable,1,11.95,2019-02-12 08:45:00,503 Willow St, Seattle,WA,98101 +152395,USB-C Charging Cable,1,11.95,2019-02-17 23:53:00,38 8th St, Austin,TX,73301 +152396,USB-C Charging Cable,1,11.95,2019-02-07 11:22:00,668 6th St, Dallas,TX,75001 +152397,USB-C Charging Cable,1,11.95,2019-02-17 14:48:00,328 Meadow St, San Francisco,CA,94016 +152398,Lightning Charging Cable,2,14.95,2019-02-11 01:20:00,244 Madison St, San Francisco,CA,94016 +152399,USB-C Charging Cable,1,11.95,2019-02-16 15:09:00,370 Hill St, Boston,MA,02215 +152400,Macbook Pro Laptop,1,1700.0,2019-02-10 15:17:00,971 Wilson St, Los Angeles,CA,90001 +152401,Google Phone,1,600.0,2019-02-08 20:39:00,203 Highland St, Austin,TX,73301 +152402,AA Batteries (4-pack),1,3.84,2019-02-19 09:58:00,201 10th St, Atlanta,GA,30301 +152403,AAA Batteries (4-pack),1,2.99,2019-02-26 22:16:00,662 Hill St, Los Angeles,CA,90001 +152404,27in FHD Monitor,1,149.99,2019-02-19 17:58:00,150 Highland St, New York City,NY,10001 +152405,Bose SoundSport Headphones,1,99.99,2019-02-09 13:03:00,85 Meadow St, Boston,MA,02215 +152406,USB-C Charging Cable,1,11.95,2019-02-06 13:12:00,835 Center St, San Francisco,CA,94016 +152407,USB-C Charging Cable,1,11.95,2019-02-03 21:47:00,582 Chestnut St, New York City,NY,10001 +152408,AAA Batteries (4-pack),1,2.99,2019-02-24 12:28:00,32 Ridge St, Los Angeles,CA,90001 +152409,AAA Batteries (4-pack),2,2.99,2019-02-15 17:48:00,962 Ridge St, San Francisco,CA,94016 +152410,27in 4K Gaming Monitor,1,389.99,2019-02-06 23:36:00,345 Meadow St, Seattle,WA,98101 +152411,AAA Batteries (4-pack),2,2.99,2019-02-20 19:05:00,970 Spruce St, New York City,NY,10001 +152412,Bose SoundSport Headphones,1,99.99,2019-02-22 16:29:00,286 6th St, Dallas,TX,75001 +152413,Wired Headphones,1,11.99,2019-02-26 02:54:00,524 Cedar St, San Francisco,CA,94016 +152414,AAA Batteries (4-pack),1,2.99,2019-02-12 06:26:00,408 River St, Dallas,TX,75001 +152415,AA Batteries (4-pack),1,3.84,2019-02-04 11:08:00,294 Cherry St, Dallas,TX,75001 +152416,AA Batteries (4-pack),1,3.84,2019-02-10 19:51:00,643 Main St, New York City,NY,10001 +152417,Wired Headphones,1,11.99,2019-02-05 08:45:00,661 Sunset St, Los Angeles,CA,90001 +152418,34in Ultrawide Monitor,1,379.99,2019-02-01 10:24:00,835 Johnson St, San Francisco,CA,94016 +152419,27in FHD Monitor,1,149.99,2019-02-20 13:17:00,66 Washington St, San Francisco,CA,94016 +152420,Flatscreen TV,1,300.0,2019-02-09 14:01:00,237 Sunset St, Seattle,WA,98101 +152421,AAA Batteries (4-pack),2,2.99,2019-02-06 13:15:00,700 Sunset St, Boston,MA,02215 +152422,USB-C Charging Cable,1,11.95,2019-02-02 19:23:00,725 1st St, Seattle,WA,98101 +152423,Wired Headphones,1,11.99,2019-02-17 11:59:00,367 9th St, Los Angeles,CA,90001 +152424,Apple Airpods Headphones,1,150.0,2019-02-08 08:35:00,892 Chestnut St, Boston,MA,02215 +152424,AA Batteries (4-pack),1,3.84,2019-02-08 08:35:00,892 Chestnut St, Boston,MA,02215 +152425,20in Monitor,1,109.99,2019-02-26 20:40:00,222 Hickory St, San Francisco,CA,94016 +152426,AAA Batteries (4-pack),4,2.99,2019-02-16 08:15:00,83 11th St, Atlanta,GA,30301 +152427,USB-C Charging Cable,1,11.95,2019-02-26 20:29:00,284 Park St, New York City,NY,10001 +152428,Google Phone,1,600.0,2019-02-09 08:49:00,998 Forest St, Atlanta,GA,30301 +152429,AA Batteries (4-pack),3,3.84,2019-02-22 14:41:00,494 Cherry St, Seattle,WA,98101 +152430,Flatscreen TV,1,300.0,2019-02-08 04:12:00,518 Spruce St, New York City,NY,10001 +152431,Apple Airpods Headphones,1,150.0,2019-02-18 19:35:00,669 Pine St, San Francisco,CA,94016 +152432,Wired Headphones,1,11.99,2019-02-16 02:24:00,563 Chestnut St, Boston,MA,02215 +152433,20in Monitor,1,109.99,2019-02-16 12:13:00,71 Maple St, Los Angeles,CA,90001 +152434,AA Batteries (4-pack),2,3.84,2019-02-01 17:31:00,501 Park St, Seattle,WA,98101 +152435,27in FHD Monitor,1,149.99,2019-02-18 09:39:00,387 Hill St, Seattle,WA,98101 +152436,USB-C Charging Cable,1,11.95,2019-02-15 16:12:00,18 West St, San Francisco,CA,94016 +152437,ThinkPad Laptop,1,999.99,2019-02-18 01:48:00,444 Park St, Dallas,TX,75001 +152438,Wired Headphones,1,11.99,2019-02-12 18:52:00,647 Cherry St, New York City,NY,10001 +152439,Lightning Charging Cable,1,14.95,2019-02-26 10:00:00,509 Dogwood St, San Francisco,CA,94016 +152440,USB-C Charging Cable,1,11.95,2019-02-14 10:24:00,608 Main St, New York City,NY,10001 +152441,AA Batteries (4-pack),2,3.84,2019-02-17 15:01:00,180 Meadow St, San Francisco,CA,94016 +152442,34in Ultrawide Monitor,1,379.99,2019-02-19 17:57:00,881 Pine St, Los Angeles,CA,90001 +152443,AAA Batteries (4-pack),1,2.99,2019-02-13 18:02:00,341 7th St, New York City,NY,10001 +152444,34in Ultrawide Monitor,1,379.99,2019-02-17 15:18:00,639 Wilson St, Seattle,WA,98101 +152445,AA Batteries (4-pack),2,3.84,2019-02-04 20:54:00,595 South St, Los Angeles,CA,90001 +152446,AAA Batteries (4-pack),1,2.99,2019-02-17 20:38:00,519 13th St, Boston,MA,02215 +152447,Apple Airpods Headphones,1,150.0,2019-02-12 13:47:00,895 4th St, Atlanta,GA,30301 +152448,Wired Headphones,1,11.99,2019-02-25 12:53:00,24 1st St, Los Angeles,CA,90001 +152449,AA Batteries (4-pack),1,3.84,2019-02-25 15:33:00,78 Elm St, San Francisco,CA,94016 +152450,Lightning Charging Cable,2,14.95,2019-02-10 03:41:00,406 9th St, New York City,NY,10001 +152451,AAA Batteries (4-pack),1,2.99,2019-02-26 14:17:00,704 1st St, Dallas,TX,75001 +152452,USB-C Charging Cable,1,11.95,2019-02-14 10:01:00,711 Hill St, San Francisco,CA,94016 +152453,AA Batteries (4-pack),1,3.84,2019-02-01 21:43:00,180 Hickory St, Boston,MA,02215 +152454,Bose SoundSport Headphones,1,99.99,2019-02-05 13:42:00,497 Maple St, Atlanta,GA,30301 +152455,AAA Batteries (4-pack),2,2.99,2019-02-28 16:32:00,530 Lakeview St, San Francisco,CA,94016 +152456,Bose SoundSport Headphones,1,99.99,2019-02-21 22:51:00,357 Wilson St, Portland,OR,97035 +152457,Apple Airpods Headphones,1,150.0,2019-02-12 14:49:00,594 Hickory St, Portland,ME,04101 +152458,Flatscreen TV,1,300.0,2019-02-17 20:33:00,233 Elm St, Los Angeles,CA,90001 +152459,Lightning Charging Cable,1,14.95,2019-02-15 10:22:00,768 Walnut St, Boston,MA,02215 +152460,Vareebadd Phone,1,400.0,2019-02-04 21:54:00,363 Madison St, Atlanta,GA,30301 +152460,USB-C Charging Cable,1,11.95,2019-02-04 21:54:00,363 Madison St, Atlanta,GA,30301 +152461,Macbook Pro Laptop,1,1700.0,2019-02-09 15:14:00,313 Hickory St, Portland,OR,97035 +152462,20in Monitor,1,109.99,2019-02-25 12:27:00,562 Jackson St, San Francisco,CA,94016 +152463,Apple Airpods Headphones,1,150.0,2019-02-13 21:14:00,190 Lincoln St, Portland,OR,97035 +152464,AA Batteries (4-pack),1,3.84,2019-02-25 16:54:00,254 13th St, San Francisco,CA,94016 +152465,USB-C Charging Cable,1,11.95,2019-02-26 21:34:00,409 Lakeview St, San Francisco,CA,94016 +152466,AAA Batteries (4-pack),3,2.99,2019-02-07 10:28:00,936 Hickory St, Dallas,TX,75001 +152467,Apple Airpods Headphones,1,150.0,2019-02-26 17:18:00,669 13th St, Boston,MA,02215 +152468,USB-C Charging Cable,1,11.95,2019-02-23 21:03:00,987 Adams St, Atlanta,GA,30301 +152469,Apple Airpods Headphones,1,150.0,2019-02-27 15:01:00,934 Park St, Portland,OR,97035 +152470,AA Batteries (4-pack),1,3.84,2019-02-05 13:06:00,687 Sunset St, San Francisco,CA,94016 +152471,Flatscreen TV,1,300.0,2019-02-08 00:59:00,923 Chestnut St, Los Angeles,CA,90001 +152472,Wired Headphones,1,11.99,2019-02-26 18:38:00,891 13th St, Atlanta,GA,30301 +152472,AA Batteries (4-pack),1,3.84,2019-02-26 18:38:00,891 13th St, Atlanta,GA,30301 +152473,AA Batteries (4-pack),1,3.84,2019-02-20 11:59:00,118 Walnut St, Atlanta,GA,30301 +152474,Wired Headphones,2,11.99,2019-02-11 21:02:00,304 2nd St, San Francisco,CA,94016 +152475,USB-C Charging Cable,1,11.95,2019-02-11 07:09:00,957 Madison St, San Francisco,CA,94016 +152476,USB-C Charging Cable,1,11.95,2019-02-10 18:55:00,183 Hill St, Dallas,TX,75001 +152477,AAA Batteries (4-pack),1,2.99,2019-02-25 10:14:00,390 Forest St, San Francisco,CA,94016 +152478,Wired Headphones,1,11.99,2019-02-10 09:39:00,165 Ridge St, Boston,MA,02215 +152479,AA Batteries (4-pack),2,3.84,2019-02-15 13:45:00,83 12th St, Austin,TX,73301 +152480,27in FHD Monitor,1,149.99,2019-02-05 17:34:00,90 Lincoln St, Los Angeles,CA,90001 +152481,Apple Airpods Headphones,1,150.0,2019-02-16 01:56:00,411 9th St, Dallas,TX,75001 +152482,AA Batteries (4-pack),1,3.84,2019-02-04 23:19:00,585 Lincoln St, Seattle,WA,98101 +152483,AAA Batteries (4-pack),2,2.99,2019-02-05 09:04:00,387 13th St, San Francisco,CA,94016 +152484,AA Batteries (4-pack),1,3.84,2019-02-28 12:31:00,909 Lincoln St, Los Angeles,CA,90001 +152485,Lightning Charging Cable,1,14.95,2019-02-17 18:28:00,438 13th St, Austin,TX,73301 +152486,Apple Airpods Headphones,1,150.0,2019-02-22 19:51:00,118 Park St, Portland,OR,97035 +152487,Wired Headphones,1,11.99,2019-02-20 13:32:00,876 14th St, Boston,MA,02215 +152488,USB-C Charging Cable,1,11.95,2019-02-15 06:31:00,286 Meadow St, San Francisco,CA,94016 +152489,Bose SoundSport Headphones,1,99.99,2019-02-15 23:12:00,655 11th St, Dallas,TX,75001 +152490,Bose SoundSport Headphones,1,99.99,2019-02-25 08:05:00,701 South St, New York City,NY,10001 +152491,Macbook Pro Laptop,1,1700.0,2019-02-01 19:15:00,328 Park St, Seattle,WA,98101 +152492,AA Batteries (4-pack),1,3.84,2019-02-08 09:45:00,854 11th St, San Francisco,CA,94016 +152493,Apple Airpods Headphones,1,150.0,2019-02-25 00:04:00,818 7th St, Los Angeles,CA,90001 +152494,AA Batteries (4-pack),3,3.84,2019-02-20 21:31:00,223 West St, San Francisco,CA,94016 +152495,Vareebadd Phone,1,400.0,2019-02-26 14:41:00,302 Hickory St, San Francisco,CA,94016 +152496,Flatscreen TV,1,300.0,2019-02-25 09:40:00,151 West St, Boston,MA,02215 +152497,27in 4K Gaming Monitor,1,389.99,2019-02-22 12:03:00,123 1st St, San Francisco,CA,94016 +152498,USB-C Charging Cable,1,11.95,2019-02-07 20:40:00,780 12th St, San Francisco,CA,94016 +152499,AAA Batteries (4-pack),1,2.99,2019-02-10 01:45:00,243 6th St, San Francisco,CA,94016 +152500,ThinkPad Laptop,1,999.99,2019-02-09 13:11:00,668 Forest St, San Francisco,CA,94016 +152501,Vareebadd Phone,1,400.0,2019-02-20 06:41:00,260 Pine St, Atlanta,GA,30301 +152502,Google Phone,1,600.0,2019-02-12 21:51:00,690 Jackson St, Boston,MA,02215 +152503,Flatscreen TV,1,300.0,2019-02-14 16:08:00,310 Meadow St, Seattle,WA,98101 +152504,Apple Airpods Headphones,1,150.0,2019-02-22 08:49:00,570 Madison St, New York City,NY,10001 +152505,20in Monitor,1,109.99,2019-02-07 23:24:00,508 8th St, Seattle,WA,98101 +152506,20in Monitor,1,109.99,2019-02-22 15:08:00,247 9th St, Los Angeles,CA,90001 +152507,USB-C Charging Cable,1,11.95,2019-02-09 08:57:00,718 Hickory St, San Francisco,CA,94016 +152508,Lightning Charging Cable,1,14.95,2019-02-12 14:17:00,513 Wilson St, Los Angeles,CA,90001 +152509,Flatscreen TV,1,300.0,2019-02-19 14:17:00,295 Jackson St, Atlanta,GA,30301 +152510,Bose SoundSport Headphones,1,99.99,2019-02-20 21:39:00,913 Wilson St, New York City,NY,10001 +152511,USB-C Charging Cable,1,11.95,2019-02-25 16:46:00,132 5th St, New York City,NY,10001 +152512,Apple Airpods Headphones,1,150.0,2019-02-04 21:05:00,746 Forest St, Boston,MA,02215 +152513,34in Ultrawide Monitor,1,379.99,2019-02-18 19:40:00,40 Sunset St, Austin,TX,73301 +152514,USB-C Charging Cable,1,11.95,2019-02-09 16:12:00,247 Meadow St, Los Angeles,CA,90001 +152515,AAA Batteries (4-pack),1,2.99,2019-02-06 20:54:00,641 5th St, Boston,MA,02215 +152516,27in FHD Monitor,1,149.99,2019-02-23 12:28:00,146 Lakeview St, New York City,NY,10001 +152517,Macbook Pro Laptop,1,1700.0,2019-02-14 16:53:00,6 6th St, New York City,NY,10001 +152518,iPhone,1,700.0,2019-02-19 15:32:00,441 Walnut St, Seattle,WA,98101 +152519,AAA Batteries (4-pack),2,2.99,2019-02-07 16:04:00,679 1st St, San Francisco,CA,94016 +152520,Lightning Charging Cable,1,14.95,2019-02-10 18:25:00,579 Sunset St, Atlanta,GA,30301 +152521,Apple Airpods Headphones,1,150.0,2019-02-21 12:21:00,608 Forest St, San Francisco,CA,94016 +152522,Bose SoundSport Headphones,1,99.99,2019-02-17 09:08:00,598 Hill St, Austin,TX,73301 +152523,Lightning Charging Cable,1,14.95,2019-02-09 18:59:00,662 Highland St, San Francisco,CA,94016 +152524,Wired Headphones,1,11.99,2019-02-22 09:57:00,576 12th St, New York City,NY,10001 +152525,Lightning Charging Cable,1,14.95,2019-02-23 23:08:00,679 Willow St, San Francisco,CA,94016 +152526,USB-C Charging Cable,1,11.95,2019-02-17 13:44:00,402 Chestnut St, Boston,MA,02215 +152527,ThinkPad Laptop,1,999.99,2019-02-06 19:17:00,716 Hill St, San Francisco,CA,94016 +152528,Lightning Charging Cable,1,14.95,2019-02-14 05:28:00,722 Cherry St, Austin,TX,73301 +152529,Wired Headphones,1,11.99,2019-02-27 23:32:00,960 Spruce St, San Francisco,CA,94016 +152530,27in FHD Monitor,1,149.99,2019-02-04 13:55:00,952 North St, San Francisco,CA,94016 +152531,20in Monitor,1,109.99,2019-02-01 20:37:00,665 13th St, Los Angeles,CA,90001 +152532,USB-C Charging Cable,1,11.95,2019-02-17 13:03:00,783 Walnut St, San Francisco,CA,94016 +152533,AA Batteries (4-pack),4,3.84,2019-02-05 09:23:00,631 12th St, New York City,NY,10001 +152534,AA Batteries (4-pack),1,3.84,2019-02-28 09:11:00,758 Chestnut St, Dallas,TX,75001 +152535,Wired Headphones,1,11.99,2019-02-13 01:48:00,461 Hill St, New York City,NY,10001 +152536,Google Phone,1,600.0,2019-02-02 11:50:00,972 Spruce St, Boston,MA,02215 +152537,AA Batteries (4-pack),1,3.84,2019-02-21 21:13:00,80 Wilson St, Dallas,TX,75001 +152538,Lightning Charging Cable,1,14.95,2019-02-08 20:45:00,672 Elm St, San Francisco,CA,94016 +152539,Wired Headphones,1,11.99,2019-02-22 16:43:00,450 Main St, New York City,NY,10001 +152540,AA Batteries (4-pack),1,3.84,2019-02-10 17:18:00,763 2nd St, Los Angeles,CA,90001 +152541,34in Ultrawide Monitor,1,379.99,2019-02-06 13:31:00,40 North St, San Francisco,CA,94016 +152542,Wired Headphones,1,11.99,2019-02-23 11:10:00,228 10th St, Los Angeles,CA,90001 +152543,Wired Headphones,1,11.99,2019-02-14 17:52:00,831 Lakeview St, New York City,NY,10001 +152544,Wired Headphones,1,11.99,2019-02-04 19:35:00,727 North St, Atlanta,GA,30301 +152545,AA Batteries (4-pack),2,3.84,2019-02-19 17:00:00,685 Hill St, Austin,TX,73301 +152546,Lightning Charging Cable,1,14.95,2019-02-13 21:09:00,584 Maple St, Atlanta,GA,30301 +152547,Wired Headphones,1,11.99,2019-02-16 18:57:00,76 4th St, Boston,MA,02215 +152548,Apple Airpods Headphones,1,150.0,2019-02-22 16:36:00,432 Meadow St, Los Angeles,CA,90001 +152549,Apple Airpods Headphones,1,150.0,2019-02-13 13:08:00,636 Hickory St, San Francisco,CA,94016 +152550,AA Batteries (4-pack),1,3.84,2019-02-02 23:30:00,285 River St, Seattle,WA,98101 +152551,AA Batteries (4-pack),1,3.84,2019-02-14 21:56:00,256 Wilson St, New York City,NY,10001 +152552,USB-C Charging Cable,1,11.95,2019-02-07 14:48:00,999 13th St, San Francisco,CA,94016 +152553,Wired Headphones,1,11.99,2019-02-19 13:41:00,180 Elm St, San Francisco,CA,94016 +152554,Flatscreen TV,1,300.0,2019-02-25 18:06:00,885 Cedar St, San Francisco,CA,94016 +152555,Lightning Charging Cable,2,14.95,2019-02-08 14:21:00,50 Center St, San Francisco,CA,94016 +152556,USB-C Charging Cable,1,11.95,2019-02-18 01:00:00,90 Lincoln St, New York City,NY,10001 +152557,LG Dryer,1,600.0,2019-02-13 15:40:00,303 Lake St, Los Angeles,CA,90001 +152558,20in Monitor,1,109.99,2019-02-02 12:19:00,594 Johnson St, Los Angeles,CA,90001 +152559,AAA Batteries (4-pack),1,2.99,2019-02-08 11:54:00,934 9th St, San Francisco,CA,94016 +152560,AA Batteries (4-pack),2,3.84,2019-02-04 16:31:00,254 Highland St, San Francisco,CA,94016 +152561,27in FHD Monitor,1,149.99,2019-02-18 21:21:00,681 Hill St, Los Angeles,CA,90001 +152562,27in 4K Gaming Monitor,1,389.99,2019-02-15 13:28:00,67 12th St, San Francisco,CA,94016 +152563,USB-C Charging Cable,1,11.95,2019-02-11 06:39:00,43 7th St, Boston,MA,02215 +152564,20in Monitor,1,109.99,2019-02-13 22:43:00,959 7th St, Austin,TX,73301 +152565,Bose SoundSport Headphones,1,99.99,2019-02-19 09:03:00,721 Chestnut St, Los Angeles,CA,90001 +152566,Google Phone,1,600.0,2019-02-08 22:17:00,816 13th St, Dallas,TX,75001 +152567,Apple Airpods Headphones,1,150.0,2019-02-18 19:23:00,282 Lakeview St, Boston,MA,02215 +152568,ThinkPad Laptop,1,999.99,2019-02-15 12:18:00,413 Ridge St, New York City,NY,10001 +152569,Lightning Charging Cable,1,14.95,2019-02-09 12:29:00,134 Pine St, Los Angeles,CA,90001 +152570,Wired Headphones,1,11.99,2019-02-06 11:32:00,963 River St, San Francisco,CA,94016 +152571,Flatscreen TV,1,300.0,2019-02-11 16:32:00,314 Cherry St, New York City,NY,10001 +152572,AAA Batteries (4-pack),1,2.99,2019-02-08 16:15:00,954 Church St, Boston,MA,02215 +152573,Wired Headphones,1,11.99,2019-02-01 21:36:00,739 Jefferson St, Atlanta,GA,30301 +152574,USB-C Charging Cable,1,11.95,2019-02-28 14:04:00,12 West St, Portland,OR,97035 +152575,AA Batteries (4-pack),1,3.84,2019-02-16 20:15:00,132 Highland St, New York City,NY,10001 +152576,Lightning Charging Cable,1,14.95,2019-02-03 09:33:00,40 1st St, San Francisco,CA,94016 +152577,34in Ultrawide Monitor,1,379.99,2019-02-15 10:36:00,884 Walnut St, New York City,NY,10001 +152578,34in Ultrawide Monitor,1,379.99,2019-02-22 15:06:00,397 Lincoln St, Boston,MA,02215 +152579,Lightning Charging Cable,1,14.95,2019-02-09 18:07:00,51 Lake St, Dallas,TX,75001 +152580,AA Batteries (4-pack),1,3.84,2019-02-16 00:32:00,959 South St, Boston,MA,02215 +152581,Bose SoundSport Headphones,1,99.99,2019-02-08 09:18:00,218 4th St, Boston,MA,02215 +152582,Lightning Charging Cable,1,14.95,2019-02-07 13:48:00,356 Center St, Boston,MA,02215 +152583,ThinkPad Laptop,1,999.99,2019-02-19 15:38:00,707 West St, Los Angeles,CA,90001 +152584,Apple Airpods Headphones,1,150.0,2019-02-01 21:47:00,85 6th St, San Francisco,CA,94016 +152585,AA Batteries (4-pack),1,3.84,2019-02-18 01:23:00,770 South St, New York City,NY,10001 +152586,Google Phone,1,600.0,2019-02-18 08:32:00,531 Church St, Los Angeles,CA,90001 +152587,Google Phone,1,600.0,2019-02-09 19:04:00,115 14th St, Portland,OR,97035 +152588,Apple Airpods Headphones,1,150.0,2019-02-14 03:50:00,982 South St, Dallas,TX,75001 +152589,iPhone,1,700.0,2019-02-26 14:28:00,222 West St, San Francisco,CA,94016 +152590,Apple Airpods Headphones,1,150.0,2019-02-08 23:06:00,428 Willow St, San Francisco,CA,94016 +152591,27in FHD Monitor,1,149.99,2019-02-23 16:37:00,589 South St, Seattle,WA,98101 +152592,AA Batteries (4-pack),1,3.84,2019-02-02 19:05:00,625 6th St, Boston,MA,02215 +152593,AAA Batteries (4-pack),1,2.99,2019-02-16 21:46:00,862 Washington St, Boston,MA,02215 +152593,iPhone,1,700.0,2019-02-16 21:46:00,862 Washington St, Boston,MA,02215 +152594,Macbook Pro Laptop,1,1700.0,2019-02-25 09:49:00,26 Madison St, Portland,OR,97035 +152595,Lightning Charging Cable,1,14.95,2019-02-18 23:00:00,998 Washington St, San Francisco,CA,94016 +152596,Lightning Charging Cable,1,14.95,2019-02-02 16:19:00,842 Meadow St, San Francisco,CA,94016 +152597,Wired Headphones,1,11.99,2019-02-01 17:08:00,478 Church St, San Francisco,CA,94016 +152598,27in 4K Gaming Monitor,1,389.99,2019-02-11 09:43:00,921 9th St, Boston,MA,02215 +152599,AAA Batteries (4-pack),1,2.99,2019-02-08 22:26:00,283 West St, Portland,OR,97035 +152600,USB-C Charging Cable,1,11.95,2019-02-26 14:14:00,275 1st St, San Francisco,CA,94016 +152601,Bose SoundSport Headphones,1,99.99,2019-02-04 16:57:00,574 Sunset St, New York City,NY,10001 +152602,Lightning Charging Cable,1,14.95,2019-02-12 17:23:00,243 13th St, San Francisco,CA,94016 +152603,USB-C Charging Cable,1,11.95,2019-02-06 11:25:00,942 Lake St, Los Angeles,CA,90001 +152604,USB-C Charging Cable,1,11.95,2019-02-09 09:50:00,857 Chestnut St, Dallas,TX,75001 +152605,AA Batteries (4-pack),1,3.84,2019-02-27 19:58:00,536 5th St, Portland,OR,97035 +152606,AAA Batteries (4-pack),1,2.99,2019-02-24 20:38:00,44 Adams St, San Francisco,CA,94016 +152607,Flatscreen TV,1,300.0,2019-02-14 14:16:00,475 Highland St, Boston,MA,02215 +152608,34in Ultrawide Monitor,1,379.99,2019-02-15 18:05:00,264 Chestnut St, Austin,TX,73301 +152609,iPhone,1,700.0,2019-02-24 19:57:00,274 Forest St, Seattle,WA,98101 +152610,Google Phone,1,600.0,2019-02-24 12:37:00,559 Cherry St, San Francisco,CA,94016 +152611,AAA Batteries (4-pack),5,2.99,2019-02-25 05:54:00,15 Chestnut St, Boston,MA,02215 +152612,Apple Airpods Headphones,1,150.0,2019-02-11 00:08:00,449 West St, Seattle,WA,98101 +152613,Google Phone,1,600.0,2019-02-13 14:50:00,283 Hickory St, Portland,OR,97035 +152613,Bose SoundSport Headphones,1,99.99,2019-02-13 14:50:00,283 Hickory St, Portland,OR,97035 +152614,27in 4K Gaming Monitor,1,389.99,2019-02-08 12:01:00,642 Pine St, Portland,OR,97035 +152615,20in Monitor,1,109.99,2019-02-02 15:26:00,184 Center St, Dallas,TX,75001 +152616,Wired Headphones,1,11.99,2019-02-20 09:28:00,604 Maple St, San Francisco,CA,94016 +152617,Apple Airpods Headphones,1,150.0,2019-02-23 02:49:00,636 Pine St, San Francisco,CA,94016 +152618,Apple Airpods Headphones,1,150.0,2019-02-19 15:14:00,544 Lincoln St, Los Angeles,CA,90001 +152619,Lightning Charging Cable,1,14.95,2019-02-26 12:16:00,597 8th St, Portland,OR,97035 +152620,Apple Airpods Headphones,1,150.0,2019-02-22 22:42:00,240 Center St, Dallas,TX,75001 +152621,AA Batteries (4-pack),1,3.84,2019-02-12 08:51:00,342 10th St, Portland,OR,97035 +152622,34in Ultrawide Monitor,1,379.99,2019-02-10 21:41:00,920 Cherry St, Portland,OR,97035 +152623,USB-C Charging Cable,1,11.95,2019-02-01 07:47:00,425 Park St, Los Angeles,CA,90001 +152624,AAA Batteries (4-pack),1,2.99,2019-02-03 20:23:00,281 Willow St, San Francisco,CA,94016 +152625,AAA Batteries (4-pack),1,2.99,2019-02-18 19:57:00,693 Maple St, Los Angeles,CA,90001 +152626,USB-C Charging Cable,1,11.95,2019-02-12 20:08:00,411 Cedar St, San Francisco,CA,94016 +152627,Apple Airpods Headphones,1,150.0,2019-02-26 20:29:00,914 Johnson St, Los Angeles,CA,90001 +152628,AAA Batteries (4-pack),2,2.99,2019-02-02 12:22:00,847 Church St, Dallas,TX,75001 +152629,Apple Airpods Headphones,1,150.0,2019-02-02 16:42:00,582 1st St, New York City,NY,10001 +152630,iPhone,1,700.0,2019-02-04 09:45:00,816 Center St, Atlanta,GA,30301 +152630,Apple Airpods Headphones,1,150.0,2019-02-04 09:45:00,816 Center St, Atlanta,GA,30301 +152631,Apple Airpods Headphones,1,150.0,2019-02-20 09:21:00,289 Hickory St, Boston,MA,02215 +152632,Wired Headphones,1,11.99,2019-02-22 22:42:00,934 Dogwood St, Los Angeles,CA,90001 +152633,20in Monitor,1,109.99,2019-02-24 18:58:00,479 11th St, Atlanta,GA,30301 +152634,Google Phone,1,600.0,2019-02-01 08:57:00,317 4th St, Boston,MA,02215 +152635,USB-C Charging Cable,1,11.95,2019-02-01 16:49:00,14 Elm St, New York City,NY,10001 +152636,Google Phone,1,600.0,2019-02-25 12:08:00,784 Spruce St, Portland,OR,97035 +152637,Flatscreen TV,1,300.0,2019-02-03 20:00:00,317 Elm St, Los Angeles,CA,90001 +152638,Vareebadd Phone,1,400.0,2019-02-14 13:58:00,647 Highland St, Boston,MA,02215 +152639,Flatscreen TV,1,300.0,2019-02-13 14:05:00,874 2nd St, San Francisco,CA,94016 +152640,AA Batteries (4-pack),1,3.84,2019-02-26 16:31:00,157 Main St, Los Angeles,CA,90001 +152641,Bose SoundSport Headphones,1,99.99,2019-02-13 21:34:00,255 Johnson St, Dallas,TX,75001 +152642,Wired Headphones,1,11.99,2019-02-24 11:32:00,672 North St, Seattle,WA,98101 +152643,Bose SoundSport Headphones,1,99.99,2019-02-01 16:37:00,896 North St, San Francisco,CA,94016 +152644,Bose SoundSport Headphones,1,99.99,2019-02-14 21:16:00,751 South St, San Francisco,CA,94016 +152644,27in FHD Monitor,1,149.99,2019-02-14 21:16:00,751 South St, San Francisco,CA,94016 +152645,AAA Batteries (4-pack),2,2.99,2019-02-22 09:53:00,479 Madison St, Austin,TX,73301 +152646,Wired Headphones,1,11.99,2019-02-21 18:42:00,881 Willow St, San Francisco,CA,94016 +152647,27in FHD Monitor,1,149.99,2019-02-17 23:04:00,994 13th St, Dallas,TX,75001 +152648,Wired Headphones,1,11.99,2019-02-20 18:26:00,923 2nd St, Seattle,WA,98101 +152649,AA Batteries (4-pack),1,3.84,2019-02-24 20:05:00,121 Park St, Boston,MA,02215 +152650,AA Batteries (4-pack),1,3.84,2019-02-22 07:06:00,45 Forest St, New York City,NY,10001 +152651,AAA Batteries (4-pack),1,2.99,2019-02-25 09:12:00,678 Willow St, San Francisco,CA,94016 +152652,20in Monitor,1,109.99,2019-02-04 00:52:00,526 14th St, New York City,NY,10001 +152653,AAA Batteries (4-pack),2,2.99,2019-02-02 12:08:00,394 Chestnut St, Portland,OR,97035 +152654,Apple Airpods Headphones,1,150.0,2019-02-03 13:45:00,897 Jefferson St, Los Angeles,CA,90001 +152655,Bose SoundSport Headphones,1,99.99,2019-02-06 11:34:00,413 11th St, San Francisco,CA,94016 +152656,AA Batteries (4-pack),1,3.84,2019-02-23 13:13:00,431 8th St, San Francisco,CA,94016 +152657,Bose SoundSport Headphones,1,99.99,2019-02-08 10:54:00,278 Dogwood St, San Francisco,CA,94016 +152658,Apple Airpods Headphones,1,150.0,2019-02-10 18:53:00,105 Pine St, Portland,ME,04101 +152659,27in FHD Monitor,1,149.99,2019-02-28 11:29:00,397 Maple St, Los Angeles,CA,90001 +152660,Lightning Charging Cable,1,14.95,2019-02-24 16:33:00,264 Maple St, Los Angeles,CA,90001 +152661,Bose SoundSport Headphones,1,99.99,2019-02-02 08:11:00,802 Hill St, Los Angeles,CA,90001 +152662,27in FHD Monitor,1,149.99,2019-02-16 12:29:00,967 Forest St, Atlanta,GA,30301 +152663,AAA Batteries (4-pack),1,2.99,2019-02-17 09:54:00,839 Cedar St, Los Angeles,CA,90001 +152664,Apple Airpods Headphones,1,150.0,2019-02-02 17:15:00,477 9th St, New York City,NY,10001 +152665,ThinkPad Laptop,1,999.99,2019-02-27 12:10:00,833 Washington St, Portland,OR,97035 +152666,Google Phone,2,600.0,2019-02-18 17:11:00,662 10th St, San Francisco,CA,94016 +152666,Bose SoundSport Headphones,1,99.99,2019-02-18 17:11:00,662 10th St, San Francisco,CA,94016 +152667,34in Ultrawide Monitor,1,379.99,2019-02-20 15:55:00,573 9th St, Atlanta,GA,30301 +152668,Lightning Charging Cable,1,14.95,2019-02-13 16:45:00,329 Madison St, Los Angeles,CA,90001 +152669,USB-C Charging Cable,1,11.95,2019-02-22 23:12:00,488 11th St, New York City,NY,10001 +152670,ThinkPad Laptop,1,999.99,2019-02-01 12:29:00,283 13th St, Los Angeles,CA,90001 +152671,Macbook Pro Laptop,1,1700.0,2019-02-15 22:37:00,676 Hill St, Austin,TX,73301 +152672,Lightning Charging Cable,1,14.95,2019-02-13 19:37:00,899 12th St, San Francisco,CA,94016 +152673,20in Monitor,1,109.99,2019-02-22 16:17:00,522 Cedar St, New York City,NY,10001 +152674,USB-C Charging Cable,1,11.95,2019-02-16 21:08:00,218 Maple St, Portland,OR,97035 +152675,Wired Headphones,2,11.99,2019-02-12 15:24:00,170 Dogwood St, San Francisco,CA,94016 +152676,AAA Batteries (4-pack),1,2.99,2019-02-04 11:09:00,499 Cedar St, San Francisco,CA,94016 +152677,AAA Batteries (4-pack),1,2.99,2019-02-22 11:05:00,134 11th St, Boston,MA,02215 +152678,Bose SoundSport Headphones,1,99.99,2019-02-06 20:02:00,834 10th St, New York City,NY,10001 +152679,USB-C Charging Cable,1,11.95,2019-02-07 14:29:00,883 12th St, Los Angeles,CA,90001 +152680,USB-C Charging Cable,1,11.95,2019-02-19 02:02:00,981 Lake St, Dallas,TX,75001 +152681,Bose SoundSport Headphones,1,99.99,2019-02-14 12:39:00,223 Walnut St, San Francisco,CA,94016 +152682,Bose SoundSport Headphones,1,99.99,2019-02-27 12:12:00,865 South St, Los Angeles,CA,90001 +152683,Google Phone,1,600.0,2019-02-04 18:36:00,544 Jefferson St, San Francisco,CA,94016 +152684,Wired Headphones,1,11.99,2019-02-03 12:48:00,817 Pine St, San Francisco,CA,94016 +152685,AA Batteries (4-pack),1,3.84,2019-02-14 19:19:00,591 Highland St, Dallas,TX,75001 +152686,USB-C Charging Cable,1,11.95,2019-02-14 18:59:00,225 Main St, Los Angeles,CA,90001 +152687,USB-C Charging Cable,1,11.95,2019-02-13 11:40:00,206 Willow St, San Francisco,CA,94016 +152688,Lightning Charging Cable,1,14.95,2019-02-11 18:28:00,229 Wilson St, San Francisco,CA,94016 +152689,27in FHD Monitor,1,149.99,2019-02-06 13:01:00,132 Park St, Los Angeles,CA,90001 +152690,Wired Headphones,1,11.99,2019-02-01 21:40:00,604 5th St, New York City,NY,10001 +152691,AA Batteries (4-pack),1,3.84,2019-02-25 15:04:00,647 Elm St, Los Angeles,CA,90001 +152692,AA Batteries (4-pack),1,3.84,2019-02-25 09:15:00,102 Forest St, Los Angeles,CA,90001 +152693,Wired Headphones,1,11.99,2019-02-02 08:04:00,551 Sunset St, Atlanta,GA,30301 +152694,Wired Headphones,2,11.99,2019-02-01 22:21:00,621 Chestnut St, Los Angeles,CA,90001 +152695,AA Batteries (4-pack),1,3.84,2019-02-06 15:23:00,781 Washington St, Boston,MA,02215 +152696,AAA Batteries (4-pack),1,2.99,2019-02-16 19:28:00,558 Elm St, Dallas,TX,75001 +152697,AAA Batteries (4-pack),1,2.99,2019-02-15 20:34:00,576 Church St, San Francisco,CA,94016 +152698,Wired Headphones,2,11.99,2019-02-27 22:57:00,392 Park St, Atlanta,GA,30301 +152699,ThinkPad Laptop,1,999.99,2019-02-06 09:45:00,910 Elm St, Dallas,TX,75001 +152700,27in 4K Gaming Monitor,1,389.99,2019-02-16 20:22:00,453 South St, Boston,MA,02215 +152701,34in Ultrawide Monitor,1,379.99,2019-02-10 16:34:00,774 Maple St, Boston,MA,02215 +152702,Flatscreen TV,1,300.0,2019-02-06 20:21:00,111 13th St, New York City,NY,10001 +152703,Lightning Charging Cable,1,14.95,2019-02-19 05:47:00,944 Elm St, Dallas,TX,75001 +152704,Lightning Charging Cable,1,14.95,2019-02-04 20:06:00,948 Hickory St, Boston,MA,02215 +152705,AA Batteries (4-pack),1,3.84,2019-02-15 15:58:00,851 Johnson St, New York City,NY,10001 +152706,AAA Batteries (4-pack),1,2.99,2019-02-14 19:42:00,213 Lincoln St, Atlanta,GA,30301 +152707,Macbook Pro Laptop,1,1700.0,2019-02-03 12:24:00,540 Washington St, Los Angeles,CA,90001 +152708,34in Ultrawide Monitor,1,379.99,2019-02-20 14:45:00,274 Highland St, Atlanta,GA,30301 +152709,Apple Airpods Headphones,1,150.0,2019-02-21 06:09:00,656 Park St, Los Angeles,CA,90001 +152710,USB-C Charging Cable,1,11.95,2019-02-12 10:54:00,439 13th St, Dallas,TX,75001 +152711,USB-C Charging Cable,1,11.95,2019-02-26 17:15:00,695 River St, Los Angeles,CA,90001 +152712,27in FHD Monitor,1,149.99,2019-02-14 21:43:00,725 10th St, Dallas,TX,75001 +152713,USB-C Charging Cable,1,11.95,2019-02-05 10:54:00,264 Park St, Seattle,WA,98101 +152714,Wired Headphones,1,11.99,2019-02-17 14:03:00,103 12th St, Dallas,TX,75001 +152715,27in FHD Monitor,1,149.99,2019-02-13 13:18:00,549 River St, Boston,MA,02215 +152716,Google Phone,1,600.0,2019-02-22 22:37:00,559 Pine St, Boston,MA,02215 +152717,34in Ultrawide Monitor,1,379.99,2019-02-20 11:47:00,473 Adams St, Portland,OR,97035 +152718,Wired Headphones,1,11.99,2019-02-16 17:14:00,82 Spruce St, Los Angeles,CA,90001 +152719,USB-C Charging Cable,1,11.95,2019-02-17 16:49:00,798 Spruce St, San Francisco,CA,94016 +152720,Apple Airpods Headphones,1,150.0,2019-02-02 21:59:00,705 Chestnut St, San Francisco,CA,94016 +152721,AA Batteries (4-pack),1,3.84,2019-02-08 17:45:00,311 Cedar St, New York City,NY,10001 +152722,ThinkPad Laptop,1,999.99,2019-02-01 20:39:00,856 Maple St, San Francisco,CA,94016 +152723,AAA Batteries (4-pack),2,2.99,2019-02-05 15:57:00,797 Cedar St, San Francisco,CA,94016 +152724,iPhone,1,700.0,2019-02-12 16:53:00,80 6th St, Los Angeles,CA,90001 +152725,Apple Airpods Headphones,1,150.0,2019-02-26 15:18:00,734 6th St, New York City,NY,10001 +152726,AAA Batteries (4-pack),2,2.99,2019-02-23 15:15:00,89 5th St, San Francisco,CA,94016 +152727,AAA Batteries (4-pack),1,2.99,2019-02-13 18:59:00,92 Park St, Atlanta,GA,30301 +152727,Macbook Pro Laptop,1,1700.0,2019-02-13 18:59:00,92 Park St, Atlanta,GA,30301 +152728,34in Ultrawide Monitor,1,379.99,2019-02-07 01:28:00,216 Washington St, Austin,TX,73301 +152729,USB-C Charging Cable,1,11.95,2019-02-08 20:57:00,612 Center St, Atlanta,GA,30301 +152730,Macbook Pro Laptop,1,1700.0,2019-02-28 13:59:00,429 Elm St, Los Angeles,CA,90001 +152731,Flatscreen TV,1,300.0,2019-02-07 11:51:00,674 7th St, Atlanta,GA,30301 +152731,Bose SoundSport Headphones,1,99.99,2019-02-07 11:51:00,674 7th St, Atlanta,GA,30301 +152732,Apple Airpods Headphones,1,150.0,2019-02-27 12:51:00,880 Elm St, New York City,NY,10001 +152733,AA Batteries (4-pack),1,3.84,2019-02-10 13:41:00,65 7th St, New York City,NY,10001 +152734,34in Ultrawide Monitor,1,379.99,2019-02-08 14:19:00,412 Maple St, San Francisco,CA,94016 +152735,Lightning Charging Cable,2,14.95,2019-02-24 19:12:00,6 Hill St, San Francisco,CA,94016 +152736,Bose SoundSport Headphones,1,99.99,2019-02-26 17:42:00,489 Lincoln St, Los Angeles,CA,90001 +152737,Wired Headphones,1,11.99,2019-02-21 22:38:00,291 Wilson St, Los Angeles,CA,90001 +152738,20in Monitor,1,109.99,2019-02-27 20:15:00,975 1st St, Boston,MA,02215 +152739,34in Ultrawide Monitor,1,379.99,2019-02-20 13:29:00,51 Spruce St, Boston,MA,02215 +152740,USB-C Charging Cable,1,11.95,2019-02-20 18:11:00,43 Adams St, Portland,OR,97035 +152741,AAA Batteries (4-pack),1,2.99,2019-02-22 14:54:00,630 South St, San Francisco,CA,94016 +152742,ThinkPad Laptop,1,999.99,2019-02-13 08:00:00,641 13th St, Atlanta,GA,30301 +152743,AA Batteries (4-pack),1,3.84,2019-02-01 19:00:00,645 North St, Boston,MA,02215 +152744,Wired Headphones,1,11.99,2019-02-21 08:53:00,989 Elm St, Austin,TX,73301 +152745,Bose SoundSport Headphones,1,99.99,2019-02-20 19:16:00,745 Maple St, San Francisco,CA,94016 +152746,Macbook Pro Laptop,1,1700.0,2019-02-16 13:00:00,349 4th St, Atlanta,GA,30301 +152747,27in FHD Monitor,1,149.99,2019-02-28 15:28:00,617 Sunset St, Atlanta,GA,30301 +152748,iPhone,1,700.0,2019-02-05 17:04:00,641 Lakeview St, Dallas,TX,75001 +152748,Wired Headphones,1,11.99,2019-02-05 17:04:00,641 Lakeview St, Dallas,TX,75001 +152749,AAA Batteries (4-pack),1,2.99,2019-02-15 19:46:00,333 South St, New York City,NY,10001 +152750,AA Batteries (4-pack),1,3.84,2019-02-05 19:54:00,733 Spruce St, San Francisco,CA,94016 +152751,27in 4K Gaming Monitor,1,389.99,2019-02-11 19:00:00,894 Cedar St, Austin,TX,73301 +152752,Lightning Charging Cable,1,14.95,2019-02-13 17:26:00,498 10th St, Dallas,TX,75001 +152753,Bose SoundSport Headphones,1,99.99,2019-02-11 18:23:00,648 South St, Los Angeles,CA,90001 +152754,Bose SoundSport Headphones,1,99.99,2019-02-13 21:10:00,199 Pine St, Seattle,WA,98101 +152755,Lightning Charging Cable,1,14.95,2019-02-11 12:50:00,610 Elm St, New York City,NY,10001 +152756,ThinkPad Laptop,1,999.99,2019-02-21 06:29:00,496 Adams St, Boston,MA,02215 +152757,Apple Airpods Headphones,1,150.0,2019-02-10 20:17:00,997 Highland St, New York City,NY,10001 +152758,AA Batteries (4-pack),1,3.84,2019-02-15 14:48:00,912 Cedar St, Dallas,TX,75001 +152759,Wired Headphones,1,11.99,2019-02-06 07:45:00,484 Chestnut St, New York City,NY,10001 +152760,Wired Headphones,1,11.99,2019-02-22 12:34:00,708 Elm St, New York City,NY,10001 +152761,AAA Batteries (4-pack),1,2.99,2019-02-21 14:53:00,414 Elm St, Los Angeles,CA,90001 +152762,AA Batteries (4-pack),1,3.84,2019-02-02 15:10:00,670 Cedar St, Boston,MA,02215 +152762,27in 4K Gaming Monitor,1,389.99,2019-02-02 15:10:00,670 Cedar St, Boston,MA,02215 +152763,Wired Headphones,1,11.99,2019-02-14 19:19:00,361 2nd St, Boston,MA,02215 +152764,AA Batteries (4-pack),1,3.84,2019-02-25 00:54:00,404 10th St, Los Angeles,CA,90001 +152765,AAA Batteries (4-pack),1,2.99,2019-02-21 14:38:00,555 Lincoln St, Portland,OR,97035 +152766,Wired Headphones,1,11.99,2019-02-24 15:14:00,62 Main St, Los Angeles,CA,90001 +152767,Lightning Charging Cable,1,14.95,2019-02-20 10:47:00,735 Jefferson St, Atlanta,GA,30301 +152768,AA Batteries (4-pack),2,3.84,2019-02-27 22:48:00,640 Hickory St, Dallas,TX,75001 +152769,ThinkPad Laptop,1,999.99,2019-02-09 17:31:00,376 Meadow St, Austin,TX,73301 +152770,AAA Batteries (4-pack),4,2.99,2019-02-24 23:58:00,833 Meadow St, San Francisco,CA,94016 +152771,AA Batteries (4-pack),1,3.84,2019-02-20 10:17:00,897 Elm St, Los Angeles,CA,90001 +152772,Wired Headphones,1,11.99,2019-02-02 22:37:00,637 Hickory St, Portland,OR,97035 +152773,AAA Batteries (4-pack),1,2.99,2019-02-14 13:43:00,511 Walnut St, San Francisco,CA,94016 +152774,AAA Batteries (4-pack),1,2.99,2019-02-19 19:10:00,663 13th St, Seattle,WA,98101 +152775,AAA Batteries (4-pack),1,2.99,2019-02-13 11:40:00,933 Lake St, San Francisco,CA,94016 +152776,27in 4K Gaming Monitor,1,389.99,2019-02-06 08:12:00,80 Lakeview St, San Francisco,CA,94016 +152777,34in Ultrawide Monitor,1,379.99,2019-02-11 17:01:00,396 14th St, Portland,OR,97035 +152778,iPhone,1,700.0,2019-02-19 20:13:00,415 Willow St, San Francisco,CA,94016 +152779,AAA Batteries (4-pack),1,2.99,2019-02-17 16:55:00,254 South St, Portland,ME,04101 +152780,iPhone,1,700.0,2019-02-17 15:04:00,879 Lincoln St, Boston,MA,02215 +152781,Apple Airpods Headphones,1,150.0,2019-02-16 06:35:00,656 Elm St, Seattle,WA,98101 +152782,Lightning Charging Cable,1,14.95,2019-02-04 08:35:00,526 Madison St, Portland,ME,04101 +152783,Lightning Charging Cable,1,14.95,2019-02-09 15:12:00,481 Washington St, Atlanta,GA,30301 +152784,AAA Batteries (4-pack),3,2.99,2019-02-13 08:39:00,203 Hill St, Dallas,TX,75001 +152785,27in 4K Gaming Monitor,1,389.99,2019-02-16 22:40:00,685 Chestnut St, Seattle,WA,98101 +152786,iPhone,1,700.0,2019-02-21 11:27:00,79 Highland St, Austin,TX,73301 +152786,Lightning Charging Cable,1,14.95,2019-02-21 11:27:00,79 Highland St, Austin,TX,73301 +152787,Wired Headphones,1,11.99,2019-02-04 14:30:00,60 Wilson St, Dallas,TX,75001 +152788,Apple Airpods Headphones,1,150.0,2019-02-08 09:08:00,194 13th St, Dallas,TX,75001 +152789,Lightning Charging Cable,1,14.95,2019-02-12 12:34:00,955 5th St, San Francisco,CA,94016 +152790,Lightning Charging Cable,1,14.95,2019-02-21 23:41:00,56 North St, Dallas,TX,75001 +152791,Wired Headphones,1,11.99,2019-02-27 22:09:00,11 13th St, New York City,NY,10001 +152792,34in Ultrawide Monitor,1,379.99,2019-02-21 09:13:00,134 Chestnut St, Seattle,WA,98101 +152793,AA Batteries (4-pack),2,3.84,2019-02-12 12:25:00,435 Meadow St, San Francisco,CA,94016 +152794,Macbook Pro Laptop,1,1700.0,2019-02-10 09:58:00,638 Lake St, Atlanta,GA,30301 +152794,27in 4K Gaming Monitor,1,389.99,2019-02-10 09:58:00,638 Lake St, Atlanta,GA,30301 +152795,AAA Batteries (4-pack),3,2.99,2019-02-20 19:09:00,396 Hickory St, Atlanta,GA,30301 +152796,Apple Airpods Headphones,1,150.0,2019-02-24 19:26:00,359 Walnut St, New York City,NY,10001 +152797,AA Batteries (4-pack),2,3.84,2019-02-04 18:15:00,461 Highland St, Seattle,WA,98101 +152798,AA Batteries (4-pack),1,3.84,2019-02-01 17:27:00,673 Ridge St, San Francisco,CA,94016 +152799,Apple Airpods Headphones,1,150.0,2019-02-21 14:46:00,827 5th St, San Francisco,CA,94016 +152800,34in Ultrawide Monitor,1,379.99,2019-02-01 10:33:00,789 West St, Atlanta,GA,30301 +152801,Apple Airpods Headphones,1,150.0,2019-02-05 17:47:00,294 Main St, San Francisco,CA,94016 +152801,27in FHD Monitor,1,149.99,2019-02-05 17:47:00,294 Main St, San Francisco,CA,94016 +152802,Flatscreen TV,1,300.0,2019-02-15 04:27:00,568 9th St, Boston,MA,02215 +152803,Google Phone,1,600.0,2019-02-27 22:21:00,407 2nd St, Los Angeles,CA,90001 +152804,Apple Airpods Headphones,1,150.0,2019-02-28 10:42:00,348 Cedar St, Los Angeles,CA,90001 +152805,USB-C Charging Cable,1,11.95,2019-02-20 14:07:00,196 River St, San Francisco,CA,94016 +152806,Apple Airpods Headphones,1,150.0,2019-02-10 06:10:00,707 Walnut St, Dallas,TX,75001 +152807,AA Batteries (4-pack),1,3.84,2019-02-08 17:00:00,803 5th St, San Francisco,CA,94016 +152808,AA Batteries (4-pack),2,3.84,2019-02-28 22:12:00,857 Chestnut St, Seattle,WA,98101 +152809,Lightning Charging Cable,1,14.95,2019-02-05 20:31:00,325 Walnut St, Dallas,TX,75001 +152810,Wired Headphones,1,11.99,2019-02-05 15:02:00,440 Elm St, Los Angeles,CA,90001 +152811,USB-C Charging Cable,1,11.95,2019-02-10 18:55:00,554 North St, San Francisco,CA,94016 +152812,AA Batteries (4-pack),1,3.84,2019-02-09 10:56:00,277 River St, San Francisco,CA,94016 +152813,Apple Airpods Headphones,1,150.0,2019-02-15 21:02:00,786 Lakeview St, New York City,NY,10001 +152814,USB-C Charging Cable,1,11.95,2019-02-27 20:17:00,512 Willow St, Portland,OR,97035 +152815,Vareebadd Phone,1,400.0,2019-02-07 17:43:00,221 5th St, Dallas,TX,75001 +152816,AAA Batteries (4-pack),1,2.99,2019-02-27 18:11:00,956 South St, San Francisco,CA,94016 +152817,USB-C Charging Cable,1,11.95,2019-02-28 19:21:00,531 1st St, San Francisco,CA,94016 +152818,USB-C Charging Cable,1,11.95,2019-02-27 09:46:00,318 Lake St, Los Angeles,CA,90001 +152819,20in Monitor,1,109.99,2019-02-15 13:14:00,215 11th St, San Francisco,CA,94016 +152820,AA Batteries (4-pack),1,3.84,2019-02-27 10:00:00,41 Washington St, San Francisco,CA,94016 +152821,20in Monitor,1,109.99,2019-02-24 18:55:00,295 Cherry St, Boston,MA,02215 +152822,Lightning Charging Cable,1,14.95,2019-02-18 19:42:00,50 14th St, Portland,OR,97035 +152823,AAA Batteries (4-pack),1,2.99,2019-02-13 12:37:00,769 Ridge St, Austin,TX,73301 +152824,USB-C Charging Cable,1,11.95,2019-02-06 13:02:00,411 West St, New York City,NY,10001 +152825,AA Batteries (4-pack),1,3.84,2019-02-07 17:18:00,371 Meadow St, Seattle,WA,98101 +152826,USB-C Charging Cable,2,11.95,2019-02-04 12:08:00,268 Elm St, Los Angeles,CA,90001 +152827,AAA Batteries (4-pack),1,2.99,2019-02-09 20:11:00,620 Jefferson St, San Francisco,CA,94016 +152828,Wired Headphones,1,11.99,2019-02-27 11:17:00,59 Jefferson St, Los Angeles,CA,90001 +152829,Apple Airpods Headphones,1,150.0,2019-02-15 10:53:00,645 Lakeview St, Boston,MA,02215 +152830,AAA Batteries (4-pack),1,2.99,2019-02-13 00:13:00,657 14th St, New York City,NY,10001 +152831,Lightning Charging Cable,2,14.95,2019-02-17 15:26:00,769 Pine St, Los Angeles,CA,90001 +152832,AAA Batteries (4-pack),3,2.99,2019-02-20 13:51:00,383 1st St, San Francisco,CA,94016 +152833,Apple Airpods Headphones,1,150.0,2019-02-16 11:56:00,662 4th St, New York City,NY,10001 +152834,AA Batteries (4-pack),2,3.84,2019-02-20 13:59:00,369 Adams St, San Francisco,CA,94016 +152835,AAA Batteries (4-pack),3,2.99,2019-02-19 19:18:00,710 Hill St, New York City,NY,10001 +152836,AA Batteries (4-pack),1,3.84,2019-02-26 18:03:00,203 West St, San Francisco,CA,94016 +152837,Lightning Charging Cable,1,14.95,2019-02-09 06:38:00,302 Lake St, New York City,NY,10001 +152838,Apple Airpods Headphones,1,150.0,2019-02-04 16:21:00,901 Madison St, Los Angeles,CA,90001 +152839,27in 4K Gaming Monitor,1,389.99,2019-02-20 20:46:00,793 6th St, New York City,NY,10001 +152840,iPhone,1,700.0,2019-02-26 23:47:00,683 Pine St, Atlanta,GA,30301 +152840,Lightning Charging Cable,1,14.95,2019-02-26 23:47:00,683 Pine St, Atlanta,GA,30301 +152841,ThinkPad Laptop,1,999.99,2019-02-06 10:00:00,762 14th St, San Francisco,CA,94016 +152842,USB-C Charging Cable,1,11.95,2019-02-23 18:51:00,256 Lincoln St, San Francisco,CA,94016 +152843,Wired Headphones,1,11.99,2019-02-12 15:34:00,802 Walnut St, Portland,OR,97035 +152844,AA Batteries (4-pack),1,3.84,2019-02-27 16:54:00,515 Lakeview St, San Francisco,CA,94016 +152845,AA Batteries (4-pack),1,3.84,2019-02-23 16:51:00,679 Walnut St, Portland,OR,97035 +152846,AAA Batteries (4-pack),1,2.99,2019-02-22 17:35:00,669 Dogwood St, San Francisco,CA,94016 +152847,Wired Headphones,1,11.99,2019-02-28 11:34:00,430 West St, San Francisco,CA,94016 +152848,AAA Batteries (4-pack),1,2.99,2019-02-01 09:01:00,606 Willow St, New York City,NY,10001 +152849,AAA Batteries (4-pack),1,2.99,2019-02-24 13:24:00,570 Ridge St, Dallas,TX,75001 +152850,iPhone,1,700.0,2019-02-18 21:01:00,983 West St, Atlanta,GA,30301 +152851,Lightning Charging Cable,1,14.95,2019-02-01 09:47:00,45 Willow St, San Francisco,CA,94016 +152852,iPhone,1,700.0,2019-02-28 08:47:00,748 8th St, Seattle,WA,98101 +152853,ThinkPad Laptop,1,999.99,2019-02-21 00:13:00,494 Walnut St, Dallas,TX,75001 +152854,Wired Headphones,1,11.99,2019-02-20 18:45:00,143 Wilson St, Boston,MA,02215 +152855,AA Batteries (4-pack),1,3.84,2019-02-24 19:10:00,749 Hill St, New York City,NY,10001 +152856,Lightning Charging Cable,1,14.95,2019-02-18 16:00:00,764 Highland St, San Francisco,CA,94016 +152857,Bose SoundSport Headphones,1,99.99,2019-02-05 15:32:00,616 Cedar St, San Francisco,CA,94016 +152858,Bose SoundSport Headphones,1,99.99,2019-02-27 15:29:00,766 Hickory St, Los Angeles,CA,90001 +152859,27in FHD Monitor,1,149.99,2019-02-24 12:28:00,745 11th St, New York City,NY,10001 +152860,Google Phone,1,600.0,2019-02-26 17:07:00,145 2nd St, Austin,TX,73301 +152861,AAA Batteries (4-pack),2,2.99,2019-02-17 10:51:00,211 Elm St, Seattle,WA,98101 +152862,Bose SoundSport Headphones,1,99.99,2019-02-13 10:31:00,680 River St, Seattle,WA,98101 +152863,AAA Batteries (4-pack),1,2.99,2019-02-17 14:47:00,433 Meadow St, San Francisco,CA,94016 +152864,27in FHD Monitor,1,149.99,2019-02-11 12:48:00,483 Dogwood St, Boston,MA,02215 +152865,AAA Batteries (4-pack),1,2.99,2019-02-10 19:08:00,571 4th St, Boston,MA,02215 +152866,Apple Airpods Headphones,1,150.0,2019-02-28 11:46:00,947 Willow St, San Francisco,CA,94016 +152867,iPhone,1,700.0,2019-02-14 17:48:00,998 Cedar St, San Francisco,CA,94016 +152867,Apple Airpods Headphones,1,150.0,2019-02-14 17:48:00,998 Cedar St, San Francisco,CA,94016 +152868,AAA Batteries (4-pack),1,2.99,2019-02-18 14:26:00,182 5th St, Los Angeles,CA,90001 +152869,Lightning Charging Cable,2,14.95,2019-02-09 10:50:00,147 Lincoln St, Seattle,WA,98101 +152870,ThinkPad Laptop,1,999.99,2019-02-01 08:37:00,841 14th St, Dallas,TX,75001 +152871,Bose SoundSport Headphones,1,99.99,2019-02-26 13:45:00,116 Pine St, San Francisco,CA,94016 +152872,Flatscreen TV,1,300.0,2019-02-28 14:58:00,185 Ridge St, Los Angeles,CA,90001 +152873,AAA Batteries (4-pack),1,2.99,2019-02-16 15:24:00,733 Wilson St, New York City,NY,10001 +152874,USB-C Charging Cable,1,11.95,2019-02-20 10:13:00,297 Dogwood St, San Francisco,CA,94016 +152875,Lightning Charging Cable,1,14.95,2019-02-28 21:11:00,353 Spruce St, San Francisco,CA,94016 +152875,34in Ultrawide Monitor,1,379.99,2019-02-28 21:11:00,353 Spruce St, San Francisco,CA,94016 +152876,AAA Batteries (4-pack),1,2.99,2019-02-13 11:13:00,951 Main St, Atlanta,GA,30301 +152877,USB-C Charging Cable,1,11.95,2019-02-02 09:35:00,619 Chestnut St, Seattle,WA,98101 +152878,USB-C Charging Cable,2,11.95,2019-02-27 06:38:00,436 Forest St, Seattle,WA,98101 +152879,AA Batteries (4-pack),1,3.84,2019-02-06 19:46:00,849 Madison St, San Francisco,CA,94016 +152880,USB-C Charging Cable,1,11.95,2019-02-08 17:22:00,153 Washington St, San Francisco,CA,94016 +152881,Vareebadd Phone,1,400.0,2019-02-01 16:32:00,400 Cedar St, New York City,NY,10001 +152882,iPhone,1,700.0,2019-02-25 07:55:00,785 Hickory St, Dallas,TX,75001 +152882,Wired Headphones,1,11.99,2019-02-25 07:55:00,785 Hickory St, Dallas,TX,75001 +152883,27in FHD Monitor,1,149.99,2019-02-09 13:48:00,151 14th St, Atlanta,GA,30301 +152884,34in Ultrawide Monitor,1,379.99,2019-02-24 22:46:00,893 Spruce St, San Francisco,CA,94016 +152885,AAA Batteries (4-pack),1,2.99,2019-02-17 20:53:00,192 Jefferson St, Atlanta,GA,30301 +152886,Apple Airpods Headphones,1,150.0,2019-02-26 09:16:00,797 Elm St, San Francisco,CA,94016 +152887,Apple Airpods Headphones,1,150.0,2019-02-18 15:08:00,119 14th St, San Francisco,CA,94016 +152888,AA Batteries (4-pack),1,3.84,2019-02-21 16:42:00,712 Hill St, Los Angeles,CA,90001 +152889,27in FHD Monitor,1,149.99,2019-02-16 09:00:00,448 12th St, Los Angeles,CA,90001 +152890,AAA Batteries (4-pack),1,2.99,2019-02-22 16:41:00,568 13th St, San Francisco,CA,94016 +152891,Bose SoundSport Headphones,1,99.99,2019-02-07 11:36:00,578 Dogwood St, Los Angeles,CA,90001 +152892,USB-C Charging Cable,1,11.95,2019-02-26 16:39:00,60 Lincoln St, Boston,MA,02215 +152893,AAA Batteries (4-pack),1,2.99,2019-02-04 16:42:00,861 Lincoln St, Seattle,WA,98101 +152894,Apple Airpods Headphones,1,150.0,2019-02-18 15:03:00,176 1st St, San Francisco,CA,94016 +152895,AA Batteries (4-pack),1,3.84,2019-02-10 18:09:00,788 Willow St, Atlanta,GA,30301 +152896,Vareebadd Phone,1,400.0,2019-02-13 16:04:00,37 Hickory St, New York City,NY,10001 +152896,Google Phone,1,600.0,2019-02-13 16:04:00,37 Hickory St, New York City,NY,10001 +152897,Bose SoundSport Headphones,1,99.99,2019-02-06 12:37:00,327 11th St, San Francisco,CA,94016 +152898,AAA Batteries (4-pack),3,2.99,2019-02-01 12:32:00,609 1st St, Los Angeles,CA,90001 +152899,AAA Batteries (4-pack),1,2.99,2019-02-01 19:40:00,210 Jefferson St, San Francisco,CA,94016 +152900,USB-C Charging Cable,1,11.95,2019-02-20 18:25:00,163 4th St, New York City,NY,10001 +152901,27in FHD Monitor,1,149.99,2019-02-11 11:17:00,114 Madison St, San Francisco,CA,94016 +152902,USB-C Charging Cable,1,11.95,2019-02-06 19:17:00,465 Pine St, Atlanta,GA,30301 +152903,USB-C Charging Cable,1,11.95,2019-02-18 09:10:00,989 Highland St, New York City,NY,10001 +152904,Flatscreen TV,1,300.0,2019-02-15 21:58:00,480 Maple St, Atlanta,GA,30301 +152905,27in 4K Gaming Monitor,1,389.99,2019-02-04 14:06:00,481 1st St, Boston,MA,02215 +152906,AA Batteries (4-pack),1,3.84,2019-02-16 01:32:00,561 Elm St, Boston,MA,02215 +152907,AAA Batteries (4-pack),1,2.99,2019-02-14 13:24:00,518 Hill St, Boston,MA,02215 +152908,AA Batteries (4-pack),1,3.84,2019-02-07 16:53:00,996 River St, Austin,TX,73301 +152909,Lightning Charging Cable,1,14.95,2019-02-17 20:03:00,224 7th St, Los Angeles,CA,90001 +152910,27in 4K Gaming Monitor,1,389.99,2019-02-22 19:00:00,930 6th St, San Francisco,CA,94016 +152911,AA Batteries (4-pack),1,3.84,2019-02-17 22:36:00,378 Jefferson St, Seattle,WA,98101 +152912,AA Batteries (4-pack),1,3.84,2019-02-15 13:59:00,215 South St, New York City,NY,10001 +152913,ThinkPad Laptop,1,999.99,2019-02-04 22:04:00,404 Jackson St, Boston,MA,02215 +152914,27in FHD Monitor,1,149.99,2019-02-19 18:19:00,841 Adams St, Boston,MA,02215 +152915,iPhone,1,700.0,2019-02-20 13:24:00,847 Johnson St, Portland,OR,97035 +152915,Wired Headphones,1,11.99,2019-02-20 13:24:00,847 Johnson St, Portland,OR,97035 +152916,USB-C Charging Cable,1,11.95,2019-02-23 12:46:00,854 Jackson St, Dallas,TX,75001 +152917,AA Batteries (4-pack),1,3.84,2019-02-26 22:09:00,64 Spruce St, Seattle,WA,98101 +152918,AA Batteries (4-pack),1,3.84,2019-02-09 17:45:00,939 8th St, Boston,MA,02215 +152919,USB-C Charging Cable,1,11.95,2019-02-28 00:45:00,595 Walnut St, Los Angeles,CA,90001 +152920,Wired Headphones,1,11.99,2019-02-19 18:46:00,784 Cedar St, Austin,TX,73301 +152921,AA Batteries (4-pack),1,3.84,2019-02-12 18:06:00,726 Elm St, New York City,NY,10001 +152922,AAA Batteries (4-pack),1,2.99,2019-02-09 21:02:00,507 Ridge St, Seattle,WA,98101 +152923,USB-C Charging Cable,1,11.95,2019-02-13 09:12:00,646 Jackson St, Los Angeles,CA,90001 +152924,Wired Headphones,1,11.99,2019-02-01 13:29:00,517 4th St, Seattle,WA,98101 +152925,Lightning Charging Cable,1,14.95,2019-02-10 03:50:00,241 7th St, San Francisco,CA,94016 +152925,Google Phone,1,600.0,2019-02-10 03:50:00,241 7th St, San Francisco,CA,94016 +152926,Apple Airpods Headphones,1,150.0,2019-02-18 07:38:00,305 West St, Dallas,TX,75001 +152927,USB-C Charging Cable,1,11.95,2019-02-11 16:15:00,400 Highland St, Los Angeles,CA,90001 +152928,AAA Batteries (4-pack),1,2.99,2019-02-19 18:20:00,802 11th St, Seattle,WA,98101 +152929,USB-C Charging Cable,1,11.95,2019-02-22 19:11:00,849 Johnson St, Boston,MA,02215 +152930,27in 4K Gaming Monitor,1,389.99,2019-02-13 01:04:00,411 Maple St, Los Angeles,CA,90001 +152931,Apple Airpods Headphones,1,150.0,2019-02-22 20:02:00,826 14th St, New York City,NY,10001 +152932,34in Ultrawide Monitor,1,379.99,2019-02-15 13:59:00,726 14th St, Seattle,WA,98101 +152933,Macbook Pro Laptop,1,1700.0,2019-02-08 21:37:00,701 5th St, New York City,NY,10001 +152934,AA Batteries (4-pack),1,3.84,2019-02-15 11:19:00,72 4th St, San Francisco,CA,94016 +152935,AA Batteries (4-pack),1,3.84,2019-02-09 15:18:00,736 Jackson St, Los Angeles,CA,90001 +152936,Google Phone,1,600.0,2019-02-19 14:26:00,689 13th St, New York City,NY,10001 +152936,USB-C Charging Cable,1,11.95,2019-02-19 14:26:00,689 13th St, New York City,NY,10001 +152937,Wired Headphones,1,11.99,2019-02-20 22:55:00,980 7th St, Dallas,TX,75001 +152938,AAA Batteries (4-pack),1,2.99,2019-02-18 18:21:00,318 Hickory St, Austin,TX,73301 +152939,AAA Batteries (4-pack),4,2.99,2019-02-16 13:19:00,129 West St, Dallas,TX,75001 +152940,27in FHD Monitor,1,149.99,2019-02-09 15:04:00,11 10th St, Portland,OR,97035 +152941,34in Ultrawide Monitor,1,379.99,2019-02-13 13:08:00,975 Main St, Boston,MA,02215 +152942,Apple Airpods Headphones,1,150.0,2019-02-02 22:01:00,521 12th St, San Francisco,CA,94016 +152943,27in FHD Monitor,1,149.99,2019-02-14 16:12:00,839 4th St, Los Angeles,CA,90001 +152944,Google Phone,1,600.0,2019-02-09 06:46:00,211 Jefferson St, San Francisco,CA,94016 +152945,27in FHD Monitor,1,149.99,2019-02-11 23:19:00,833 5th St, San Francisco,CA,94016 +152946,Wired Headphones,1,11.99,2019-02-14 13:04:00,651 Willow St, Boston,MA,02215 +152947,Apple Airpods Headphones,1,150.0,2019-02-18 10:53:00,57 Park St, Los Angeles,CA,90001 +152948,Lightning Charging Cable,1,14.95,2019-02-04 12:14:00,233 Sunset St, New York City,NY,10001 +152949,AA Batteries (4-pack),1,3.84,2019-02-02 19:11:00,786 Jefferson St, Portland,OR,97035 +152950,34in Ultrawide Monitor,1,379.99,2019-02-21 20:43:00,28 Cedar St, New York City,NY,10001 +152951,ThinkPad Laptop,1,999.99,2019-02-06 21:21:00,426 Washington St, San Francisco,CA,94016 +152952,USB-C Charging Cable,1,11.95,2019-02-02 23:24:00,236 Church St, Austin,TX,73301 +152952,Bose SoundSport Headphones,1,99.99,2019-02-02 23:24:00,236 Church St, Austin,TX,73301 +152953,ThinkPad Laptop,1,999.99,2019-02-02 16:54:00,903 Adams St, Austin,TX,73301 +152954,Lightning Charging Cable,1,14.95,2019-02-26 08:32:00,228 South St, New York City,NY,10001 +152955,27in FHD Monitor,1,149.99,2019-02-18 10:39:00,834 West St, Los Angeles,CA,90001 +152956,AA Batteries (4-pack),2,3.84,2019-02-20 12:39:00,836 14th St, Boston,MA,02215 +152957,34in Ultrawide Monitor,1,379.99,2019-02-22 16:02:00,863 2nd St, New York City,NY,10001 +152958,27in 4K Gaming Monitor,1,389.99,2019-02-08 22:07:00,102 Ridge St, San Francisco,CA,94016 +152959,Lightning Charging Cable,1,14.95,2019-02-18 01:19:00,609 Highland St, San Francisco,CA,94016 +152960,Wired Headphones,1,11.99,2019-02-02 11:35:00,512 Park St, Dallas,TX,75001 +152961,iPhone,1,700.0,2019-02-07 09:48:00,979 Adams St, Austin,TX,73301 +152962,AAA Batteries (4-pack),1,2.99,2019-02-11 16:53:00,74 Walnut St, New York City,NY,10001 +152963,Wired Headphones,2,11.99,2019-02-03 19:06:00,547 4th St, Portland,OR,97035 +152964,Bose SoundSport Headphones,1,99.99,2019-02-16 14:57:00,77 Main St, Portland,ME,04101 +152965,Lightning Charging Cable,1,14.95,2019-02-11 19:56:00,326 Church St, San Francisco,CA,94016 +152966,Wired Headphones,1,11.99,2019-02-11 10:05:00,358 Ridge St, San Francisco,CA,94016 +152967,34in Ultrawide Monitor,1,379.99,2019-02-13 21:46:00,85 Ridge St, Boston,MA,02215 +152968,ThinkPad Laptop,1,999.99,2019-02-01 22:30:00,651 Johnson St, San Francisco,CA,94016 +152969,Bose SoundSport Headphones,1,99.99,2019-02-27 20:22:00,383 14th St, Seattle,WA,98101 +152970,USB-C Charging Cable,1,11.95,2019-02-15 19:27:00,898 Center St, San Francisco,CA,94016 +152971,USB-C Charging Cable,1,11.95,2019-02-01 14:13:00,184 Hickory St, Portland,OR,97035 +152972,Lightning Charging Cable,1,14.95,2019-02-20 22:24:00,972 10th St, Atlanta,GA,30301 +152973,Wired Headphones,1,11.99,2019-02-13 19:49:00,262 Lakeview St, Los Angeles,CA,90001 +152974,Lightning Charging Cable,1,14.95,2019-02-25 19:42:00,438 Willow St, San Francisco,CA,94016 +152975,Apple Airpods Headphones,1,150.0,2019-02-23 06:52:00,584 8th St, San Francisco,CA,94016 +152976,Bose SoundSport Headphones,1,99.99,2019-02-20 01:50:00,848 Walnut St, Los Angeles,CA,90001 +152977,Wired Headphones,1,11.99,2019-02-26 12:07:00,505 1st St, Seattle,WA,98101 +152978,Macbook Pro Laptop,1,1700.0,2019-02-07 12:53:00,813 9th St, Los Angeles,CA,90001 +152979,Wired Headphones,1,11.99,2019-02-16 17:01:00,149 Ridge St, Seattle,WA,98101 +152980,USB-C Charging Cable,1,11.95,2019-02-26 19:48:00,196 2nd St, Los Angeles,CA,90001 +152981,Bose SoundSport Headphones,1,99.99,2019-02-01 16:27:00,889 Lakeview St, Portland,OR,97035 +152982,Bose SoundSport Headphones,1,99.99,2019-02-05 17:01:00,187 West St, San Francisco,CA,94016 +152983,AAA Batteries (4-pack),1,2.99,2019-02-09 10:12:00,474 Dogwood St, Boston,MA,02215 +152984,USB-C Charging Cable,1,11.95,2019-02-22 18:41:00,847 Center St, San Francisco,CA,94016 +152985,USB-C Charging Cable,1,11.95,2019-02-26 10:15:00,266 Church St, Dallas,TX,75001 +152986,USB-C Charging Cable,1,11.95,2019-02-10 08:48:00,455 Maple St, New York City,NY,10001 +152987,Flatscreen TV,1,300.0,2019-02-05 17:20:00,623 Lake St, Atlanta,GA,30301 +152988,iPhone,1,700.0,2019-02-08 13:35:00,896 8th St, New York City,NY,10001 +152989,Apple Airpods Headphones,1,150.0,2019-02-18 18:53:00,258 Johnson St, Seattle,WA,98101 +152990,Flatscreen TV,1,300.0,2019-02-07 12:18:00,121 11th St, San Francisco,CA,94016 +152991,Google Phone,1,600.0,2019-02-13 12:59:00,956 West St, Seattle,WA,98101 +152991,Wired Headphones,1,11.99,2019-02-13 12:59:00,956 West St, Seattle,WA,98101 +152992,20in Monitor,1,109.99,2019-02-02 14:13:00,46 7th St, Seattle,WA,98101 +152993,AAA Batteries (4-pack),1,2.99,2019-02-12 01:41:00,609 Lakeview St, Austin,TX,73301 +152994,27in 4K Gaming Monitor,1,389.99,2019-02-20 09:04:00,762 Willow St, Austin,TX,73301 +152995,ThinkPad Laptop,1,999.99,2019-02-04 20:43:00,31 Cherry St, San Francisco,CA,94016 +152996,ThinkPad Laptop,1,999.99,2019-02-02 21:05:00,471 5th St, New York City,NY,10001 +152997,Wired Headphones,1,11.99,2019-02-24 15:09:00,409 Meadow St, San Francisco,CA,94016 +152998,USB-C Charging Cable,1,11.95,2019-02-25 15:47:00,494 Chestnut St, San Francisco,CA,94016 +152999,AAA Batteries (4-pack),1,2.99,2019-02-13 19:39:00,729 Lincoln St, Los Angeles,CA,90001 +153000,AAA Batteries (4-pack),1,2.99,2019-02-20 10:24:00,192 Wilson St, Los Angeles,CA,90001 +153001,AA Batteries (4-pack),1,3.84,2019-02-16 19:34:00,770 Pine St, Dallas,TX,75001 +153002,Vareebadd Phone,1,400.0,2019-02-06 15:23:00,9 Walnut St, Dallas,TX,75001 +153003,Apple Airpods Headphones,1,150.0,2019-02-04 14:11:00,625 Chestnut St, New York City,NY,10001 +153004,Lightning Charging Cable,1,14.95,2019-02-24 18:40:00,215 Church St, Seattle,WA,98101 +153005,AAA Batteries (4-pack),1,2.99,2019-02-09 08:02:00,927 1st St, New York City,NY,10001 +153006,AA Batteries (4-pack),1,3.84,2019-02-04 19:14:00,390 Forest St, Los Angeles,CA,90001 +153007,USB-C Charging Cable,1,11.95,2019-02-11 15:29:00,51 Walnut St, New York City,NY,10001 +153008,Lightning Charging Cable,1,14.95,2019-02-22 17:34:00,908 Hill St, San Francisco,CA,94016 +153009,AA Batteries (4-pack),1,3.84,2019-02-15 17:08:00,198 Lincoln St, Dallas,TX,75001 +153010,Lightning Charging Cable,1,14.95,2019-02-07 13:57:00,803 13th St, New York City,NY,10001 +153011,AA Batteries (4-pack),3,3.84,2019-02-25 20:13:00,237 Chestnut St, Atlanta,GA,30301 +153012,Bose SoundSport Headphones,1,99.99,2019-02-11 09:07:00,577 Johnson St, Boston,MA,02215 +153013,20in Monitor,1,109.99,2019-02-25 20:48:00,222 Meadow St, Dallas,TX,75001 +153014,Bose SoundSport Headphones,1,99.99,2019-02-06 19:39:00,949 9th St, Seattle,WA,98101 +153014,ThinkPad Laptop,1,999.99,2019-02-06 19:39:00,949 9th St, Seattle,WA,98101 +153015,USB-C Charging Cable,2,11.95,2019-02-08 21:21:00,969 Walnut St, Dallas,TX,75001 +153016,Lightning Charging Cable,1,14.95,2019-02-18 17:50:00,60 South St, San Francisco,CA,94016 +153017,Google Phone,1,600.0,2019-02-19 15:15:00,692 Jefferson St, New York City,NY,10001 +153018,27in FHD Monitor,1,149.99,2019-02-16 15:36:00,970 Jackson St, Los Angeles,CA,90001 +153019,Apple Airpods Headphones,1,150.0,2019-02-18 20:41:00,211 Main St, San Francisco,CA,94016 +153020,Apple Airpods Headphones,1,150.0,2019-02-26 16:10:00,312 4th St, Portland,OR,97035 +153021,Apple Airpods Headphones,1,150.0,2019-02-03 22:16:00,322 5th St, New York City,NY,10001 +153022,Apple Airpods Headphones,1,150.0,2019-02-15 17:01:00,697 North St, San Francisco,CA,94016 +153023,AAA Batteries (4-pack),2,2.99,2019-02-13 22:04:00,422 Sunset St, San Francisco,CA,94016 +153024,AAA Batteries (4-pack),1,2.99,2019-02-14 18:49:00,912 14th St, Dallas,TX,75001 +153025,Lightning Charging Cable,1,14.95,2019-02-22 10:00:00,757 Spruce St, Seattle,WA,98101 +153026,27in FHD Monitor,1,149.99,2019-02-16 18:38:00,435 Meadow St, Dallas,TX,75001 +153027,Lightning Charging Cable,1,14.95,2019-02-07 19:43:00,930 Cedar St, San Francisco,CA,94016 +153028,AAA Batteries (4-pack),1,2.99,2019-02-18 11:19:00,296 Elm St, Portland,OR,97035 +153029,34in Ultrawide Monitor,1,379.99,2019-02-28 20:11:00,779 Main St, Los Angeles,CA,90001 +153030,Wired Headphones,1,11.99,2019-02-23 20:21:00,122 Jackson St, Los Angeles,CA,90001 +153031,AAA Batteries (4-pack),1,2.99,2019-02-22 19:23:00,842 Lakeview St, Portland,OR,97035 +153032,Wired Headphones,1,11.99,2019-02-21 22:19:00,2 11th St, San Francisco,CA,94016 +153033,Google Phone,1,600.0,2019-02-21 11:16:00,448 Lincoln St, San Francisco,CA,94016 +153033,Wired Headphones,1,11.99,2019-02-21 11:16:00,448 Lincoln St, San Francisco,CA,94016 +153034,34in Ultrawide Monitor,1,379.99,2019-02-26 17:05:00,814 River St, Los Angeles,CA,90001 +153035,Lightning Charging Cable,1,14.95,2019-02-23 16:41:00,437 Cedar St, Portland,ME,04101 +153036,27in FHD Monitor,1,149.99,2019-02-22 20:22:00,60 Jackson St, Los Angeles,CA,90001 +153037,Wired Headphones,1,11.99,2019-02-18 09:52:00,86 River St, New York City,NY,10001 +153038,Wired Headphones,1,11.99,2019-02-11 21:44:00,334 Church St, San Francisco,CA,94016 +153039,AA Batteries (4-pack),2,3.84,2019-02-17 19:56:00,456 Pine St, Los Angeles,CA,90001 +153040,Bose SoundSport Headphones,1,99.99,2019-02-06 15:23:00,79 Walnut St, Los Angeles,CA,90001 +153041,27in FHD Monitor,1,149.99,2019-02-02 16:29:00,951 Adams St, Dallas,TX,75001 +153042,Wired Headphones,1,11.99,2019-02-11 12:26:00,239 Lincoln St, New York City,NY,10001 +153043,20in Monitor,1,109.99,2019-02-14 19:21:00,72 Hickory St, Los Angeles,CA,90001 +153044,Lightning Charging Cable,1,14.95,2019-02-15 20:02:00,518 Adams St, San Francisco,CA,94016 +153045,USB-C Charging Cable,1,11.95,2019-02-15 10:44:00,576 Cedar St, Los Angeles,CA,90001 +153046,AAA Batteries (4-pack),1,2.99,2019-02-26 11:49:00,345 Hickory St, Los Angeles,CA,90001 +153047,AA Batteries (4-pack),1,3.84,2019-02-11 10:50:00,443 Maple St, Atlanta,GA,30301 +153048,USB-C Charging Cable,1,11.95,2019-02-17 12:14:00,695 Cherry St, Atlanta,GA,30301 +153049,Lightning Charging Cable,1,14.95,2019-02-18 23:46:00,739 North St, Seattle,WA,98101 +153050,Flatscreen TV,1,300.0,2019-02-13 16:25:00,579 14th St, San Francisco,CA,94016 +153051,Flatscreen TV,1,300.0,2019-02-10 18:25:00,474 Church St, New York City,NY,10001 +153052,27in FHD Monitor,1,149.99,2019-02-10 19:33:00,345 8th St, Seattle,WA,98101 +153053,27in 4K Gaming Monitor,1,389.99,2019-02-10 13:49:00,194 Forest St, Seattle,WA,98101 +153054,Apple Airpods Headphones,1,150.0,2019-02-02 02:00:00,419 Spruce St, Los Angeles,CA,90001 +153055,Lightning Charging Cable,1,14.95,2019-02-04 12:35:00,375 Hickory St, Portland,OR,97035 +153056,20in Monitor,1,109.99,2019-02-13 16:31:00,97 Madison St, Atlanta,GA,30301 +153057,AAA Batteries (4-pack),2,2.99,2019-02-22 21:13:00,757 Spruce St, Seattle,WA,98101 +153058,Wired Headphones,1,11.99,2019-02-17 22:00:00,719 Elm St, Dallas,TX,75001 +153059,iPhone,1,700.0,2019-02-12 18:38:00,644 Willow St, Dallas,TX,75001 +153060,Apple Airpods Headphones,1,150.0,2019-02-19 01:28:00,800 Maple St, San Francisco,CA,94016 +153061,Lightning Charging Cable,1,14.95,2019-02-24 16:53:00,465 9th St, San Francisco,CA,94016 +153062,Lightning Charging Cable,1,14.95,2019-02-26 19:04:00,121 Madison St, Los Angeles,CA,90001 +153063,Lightning Charging Cable,1,14.95,2019-02-16 08:15:00,740 12th St, Boston,MA,02215 +153064,Lightning Charging Cable,1,14.95,2019-02-18 19:04:00,935 Jefferson St, San Francisco,CA,94016 +153065,AAA Batteries (4-pack),1,2.99,2019-02-16 14:38:00,395 Spruce St, Dallas,TX,75001 +153066,Wired Headphones,1,11.99,2019-02-27 12:23:00,589 Jackson St, Dallas,TX,75001 +153067,Wired Headphones,1,11.99,2019-02-14 12:50:00,313 Forest St, Boston,MA,02215 +153068,27in FHD Monitor,1,149.99,2019-02-21 11:10:00,693 Chestnut St, San Francisco,CA,94016 +153069,Flatscreen TV,2,300.0,2019-02-17 20:41:00,320 Lake St, New York City,NY,10001 +153070,Lightning Charging Cable,1,14.95,2019-02-12 12:06:00,352 West St, Los Angeles,CA,90001 +153071,AA Batteries (4-pack),1,3.84,2019-02-20 16:10:00,958 Hickory St, Seattle,WA,98101 +153072,Wired Headphones,1,11.99,2019-02-27 08:40:00,38 Pine St, San Francisco,CA,94016 +153073,ThinkPad Laptop,1,999.99,2019-02-08 15:13:00,102 Cherry St, Austin,TX,73301 +153074,Apple Airpods Headphones,1,150.0,2019-02-10 00:31:00,587 West St, San Francisco,CA,94016 +153075,Lightning Charging Cable,1,14.95,2019-02-05 21:21:00,315 14th St, Seattle,WA,98101 +153076,iPhone,1,700.0,2019-02-07 11:16:00,498 Washington St, San Francisco,CA,94016 +153077,USB-C Charging Cable,1,11.95,2019-02-22 16:45:00,432 1st St, Austin,TX,73301 +153078,Flatscreen TV,1,300.0,2019-02-03 12:37:00,905 Forest St, New York City,NY,10001 +153079,AAA Batteries (4-pack),1,2.99,2019-02-13 18:52:00,985 9th St, Seattle,WA,98101 +153080,Google Phone,1,600.0,2019-02-18 08:52:00,353 Johnson St, Atlanta,GA,30301 +153081,Google Phone,1,600.0,2019-02-20 19:41:00,50 Pine St, Los Angeles,CA,90001 +153082,Flatscreen TV,1,300.0,2019-02-16 02:03:00,736 Park St, San Francisco,CA,94016 +153083,AAA Batteries (4-pack),4,2.99,2019-02-13 17:53:00,144 Sunset St, New York City,NY,10001 +153084,USB-C Charging Cable,1,11.95,2019-02-27 22:59:00,860 Wilson St, Los Angeles,CA,90001 +153085,AA Batteries (4-pack),1,3.84,2019-02-15 17:20:00,873 Main St, Los Angeles,CA,90001 +153086,34in Ultrawide Monitor,1,379.99,2019-02-16 15:41:00,591 7th St, Austin,TX,73301 +153087,Bose SoundSport Headphones,1,99.99,2019-02-24 06:07:00,37 6th St, Atlanta,GA,30301 +153088,USB-C Charging Cable,1,11.95,2019-02-19 16:01:00,210 River St, New York City,NY,10001 +153089,34in Ultrawide Monitor,1,379.99,2019-02-15 19:11:00,75 Maple St, Boston,MA,02215 +153090,AAA Batteries (4-pack),2,2.99,2019-02-22 07:01:00,317 Sunset St, Atlanta,GA,30301 +153091,Google Phone,1,600.0,2019-02-03 19:06:00,531 Sunset St, Los Angeles,CA,90001 +153091,USB-C Charging Cable,1,11.95,2019-02-03 19:06:00,531 Sunset St, Los Angeles,CA,90001 +153092,Bose SoundSport Headphones,1,99.99,2019-02-11 07:11:00,862 Madison St, San Francisco,CA,94016 +153093,AAA Batteries (4-pack),2,2.99,2019-02-25 18:09:00,357 Johnson St, San Francisco,CA,94016 +153094,AA Batteries (4-pack),1,3.84,2019-02-20 15:58:00,301 Dogwood St, San Francisco,CA,94016 +153095,AAA Batteries (4-pack),2,2.99,2019-02-12 17:05:00,394 14th St, Portland,ME,04101 +153096,AAA Batteries (4-pack),1,2.99,2019-02-13 06:18:00,972 Johnson St, Dallas,TX,75001 +153097,Lightning Charging Cable,2,14.95,2019-02-18 12:30:00,212 Cherry St, Boston,MA,02215 +153098,AA Batteries (4-pack),1,3.84,2019-02-03 20:41:00,469 Jackson St, New York City,NY,10001 +153099,USB-C Charging Cable,1,11.95,2019-02-04 10:54:00,521 5th St, Seattle,WA,98101 +153100,Macbook Pro Laptop,1,1700.0,2019-02-27 18:52:00,959 Jefferson St, Dallas,TX,75001 +153101,Lightning Charging Cable,1,14.95,2019-02-10 20:36:00,225 Church St, Los Angeles,CA,90001 +153102,Wired Headphones,1,11.99,2019-02-01 20:04:00,412 Main St, New York City,NY,10001 +153103,LG Washing Machine,1,600.0,2019-02-08 13:11:00,937 Wilson St, Los Angeles,CA,90001 +153104,Lightning Charging Cable,1,14.95,2019-02-27 06:53:00,535 Chestnut St, Portland,OR,97035 +153105,Apple Airpods Headphones,1,150.0,2019-02-28 15:40:00,272 Madison St, Seattle,WA,98101 +153106,Bose SoundSport Headphones,1,99.99,2019-02-04 11:35:00,861 6th St, Boston,MA,02215 +153107,USB-C Charging Cable,1,11.95,2019-02-19 16:34:00,305 11th St, Boston,MA,02215 +153108,Wired Headphones,1,11.99,2019-02-26 23:33:00,773 Hill St, Portland,OR,97035 +153109,Wired Headphones,1,11.99,2019-02-14 21:23:00,494 Dogwood St, San Francisco,CA,94016 +153110,Google Phone,1,600.0,2019-02-23 15:41:00,477 Jefferson St, San Francisco,CA,94016 +153111,Wired Headphones,1,11.99,2019-02-19 12:49:00,394 Highland St, Los Angeles,CA,90001 +153112,Apple Airpods Headphones,1,150.0,2019-02-14 17:50:00,375 Center St, Austin,TX,73301 +153113,Bose SoundSport Headphones,1,99.99,2019-02-12 09:20:00,361 Lake St, New York City,NY,10001 +153114,Wired Headphones,1,11.99,2019-02-14 18:05:00,971 12th St, Boston,MA,02215 +153115,AA Batteries (4-pack),1,3.84,2019-02-17 13:09:00,585 River St, Atlanta,GA,30301 +153116,AA Batteries (4-pack),1,3.84,2019-02-10 09:10:00,21 Chestnut St, San Francisco,CA,94016 +153117,Google Phone,1,600.0,2019-02-06 16:31:00,116 River St, Seattle,WA,98101 +153118,AAA Batteries (4-pack),2,2.99,2019-02-01 11:36:00,239 Spruce St, Austin,TX,73301 +153119,Apple Airpods Headphones,1,150.0,2019-02-22 13:06:00,738 West St, San Francisco,CA,94016 +153120,AAA Batteries (4-pack),2,2.99,2019-02-20 10:51:00,457 Center St, Los Angeles,CA,90001 +153121,Macbook Pro Laptop,1,1700.0,2019-02-22 23:49:00,344 Highland St, Los Angeles,CA,90001 +153122,ThinkPad Laptop,1,999.99,2019-02-28 13:41:00,250 River St, New York City,NY,10001 +153123,AAA Batteries (4-pack),3,2.99,2019-02-18 19:41:00,241 Hickory St, Atlanta,GA,30301 +153124,Google Phone,1,600.0,2019-02-27 08:25:00,918 10th St, Los Angeles,CA,90001 +153125,Vareebadd Phone,1,400.0,2019-02-20 16:49:00,804 Lincoln St, New York City,NY,10001 +153126,Flatscreen TV,1,300.0,2019-02-13 07:58:00,468 Sunset St, Dallas,TX,75001 +153127,USB-C Charging Cable,2,11.95,2019-02-15 13:29:00,524 Lakeview St, Los Angeles,CA,90001 +153128,AAA Batteries (4-pack),1,2.99,2019-02-23 11:55:00,689 Dogwood St, San Francisco,CA,94016 +153129,Bose SoundSport Headphones,1,99.99,2019-02-22 18:27:00,749 Elm St, Atlanta,GA,30301 +153130,USB-C Charging Cable,1,11.95,2019-02-09 09:08:00,847 Maple St, New York City,NY,10001 +153131,AAA Batteries (4-pack),1,2.99,2019-02-11 15:46:00,104 6th St, San Francisco,CA,94016 +153132,27in FHD Monitor,1,149.99,2019-02-07 12:54:00,116 Dogwood St, Dallas,TX,75001 +153133,AAA Batteries (4-pack),2,2.99,2019-02-18 12:05:00,604 14th St, Los Angeles,CA,90001 +153134,AA Batteries (4-pack),1,3.84,2019-02-12 19:34:00,500 North St, New York City,NY,10001 +153135,Google Phone,1,600.0,2019-02-22 12:48:00,626 12th St, Seattle,WA,98101 +153135,USB-C Charging Cable,1,11.95,2019-02-22 12:48:00,626 12th St, Seattle,WA,98101 +153135,Bose SoundSport Headphones,1,99.99,2019-02-22 12:48:00,626 12th St, Seattle,WA,98101 +153136,Wired Headphones,1,11.99,2019-02-19 18:19:00,394 Lake St, Los Angeles,CA,90001 +153137,USB-C Charging Cable,1,11.95,2019-02-21 12:45:00,453 Dogwood St, Atlanta,GA,30301 +153138,Bose SoundSport Headphones,1,99.99,2019-02-18 01:01:00,445 14th St, Austin,TX,73301 +153139,Apple Airpods Headphones,1,150.0,2019-02-25 23:14:00,79 Cedar St, San Francisco,CA,94016 +153140,AAA Batteries (4-pack),2,2.99,2019-02-16 10:55:00,291 Elm St, New York City,NY,10001 +153141,AA Batteries (4-pack),1,3.84,2019-02-24 08:44:00,717 Hickory St, Austin,TX,73301 +153142,USB-C Charging Cable,1,11.95,2019-02-21 14:59:00,563 6th St, Seattle,WA,98101 +153143,Apple Airpods Headphones,1,150.0,2019-02-03 12:29:00,764 Cedar St, Los Angeles,CA,90001 +153144,Wired Headphones,1,11.99,2019-02-19 11:41:00,821 Jackson St, San Francisco,CA,94016 +153145,Lightning Charging Cable,1,14.95,2019-02-10 23:10:00,630 Cedar St, New York City,NY,10001 +153146,Vareebadd Phone,1,400.0,2019-02-25 09:38:00,929 West St, Seattle,WA,98101 +153147,Lightning Charging Cable,1,14.95,2019-02-26 14:19:00,644 Forest St, Atlanta,GA,30301 +153148,USB-C Charging Cable,1,11.95,2019-02-05 18:45:00,571 Lakeview St, Austin,TX,73301 +153149,Lightning Charging Cable,3,14.95,2019-02-24 15:44:00,97 1st St, Seattle,WA,98101 +153150,27in FHD Monitor,1,149.99,2019-02-20 10:07:00,107 5th St, Austin,TX,73301 +153151,USB-C Charging Cable,1,11.95,2019-02-28 10:31:00,200 North St, Atlanta,GA,30301 +153152,AA Batteries (4-pack),1,3.84,2019-02-26 12:18:00,576 14th St, Dallas,TX,75001 +153153,27in FHD Monitor,1,149.99,2019-02-02 01:09:00,746 13th St, San Francisco,CA,94016 +153154,Macbook Pro Laptop,1,1700.0,2019-02-27 23:12:00,986 1st St, New York City,NY,10001 +153155,Flatscreen TV,1,300.0,2019-02-20 21:45:00,273 Adams St, San Francisco,CA,94016 +153156,USB-C Charging Cable,1,11.95,2019-02-14 21:24:00,187 Cherry St, San Francisco,CA,94016 +153157,USB-C Charging Cable,1,11.95,2019-02-19 16:26:00,898 Jackson St, Dallas,TX,75001 +153158,34in Ultrawide Monitor,1,379.99,2019-02-14 08:24:00,130 Jefferson St, Dallas,TX,75001 +153158,Apple Airpods Headphones,1,150.0,2019-02-14 08:24:00,130 Jefferson St, Dallas,TX,75001 +153159,Lightning Charging Cable,1,14.95,2019-02-22 11:45:00,376 Johnson St, Los Angeles,CA,90001 +153160,34in Ultrawide Monitor,1,379.99,2019-02-01 15:46:00,256 Forest St, Seattle,WA,98101 +153161,Apple Airpods Headphones,1,150.0,2019-02-20 13:58:00,431 14th St, Atlanta,GA,30301 +153162,Bose SoundSport Headphones,1,99.99,2019-02-12 08:29:00,369 2nd St, New York City,NY,10001 +153163,Apple Airpods Headphones,1,150.0,2019-02-23 14:31:00,881 Ridge St, San Francisco,CA,94016 +153164,Apple Airpods Headphones,1,150.0,2019-02-15 16:42:00,29 7th St, Boston,MA,02215 +153165,Apple Airpods Headphones,1,150.0,2019-02-13 17:55:00,963 Spruce St, Los Angeles,CA,90001 +153166,USB-C Charging Cable,1,11.95,2019-02-11 17:28:00,254 North St, San Francisco,CA,94016 +153167,Bose SoundSport Headphones,1,99.99,2019-02-10 16:31:00,880 5th St, Atlanta,GA,30301 +153168,USB-C Charging Cable,1,11.95,2019-02-27 13:16:00,919 13th St, San Francisco,CA,94016 +153169,Lightning Charging Cable,1,14.95,2019-02-17 11:16:00,736 Lincoln St, Portland,OR,97035 +153170,Lightning Charging Cable,1,14.95,2019-02-20 20:21:00,600 Elm St, Los Angeles,CA,90001 +153171,Wired Headphones,1,11.99,2019-02-03 21:39:00,542 11th St, San Francisco,CA,94016 +153172,AA Batteries (4-pack),1,3.84,2019-02-10 22:23:00,325 Hickory St, San Francisco,CA,94016 +153173,AAA Batteries (4-pack),1,2.99,2019-02-01 15:40:00,202 1st St, Los Angeles,CA,90001 +153174,Flatscreen TV,1,300.0,2019-02-05 10:01:00,968 10th St, Austin,TX,73301 +153175,AAA Batteries (4-pack),1,2.99,2019-02-26 18:07:00,225 14th St, Atlanta,GA,30301 +153176,AAA Batteries (4-pack),2,2.99,2019-02-02 11:06:00,831 Hill St, Los Angeles,CA,90001 +153177,Lightning Charging Cable,1,14.95,2019-02-12 21:11:00,708 Park St, Atlanta,GA,30301 +153178,USB-C Charging Cable,1,11.95,2019-02-24 17:01:00,423 Spruce St, New York City,NY,10001 +153179,Apple Airpods Headphones,1,150.0,2019-02-14 08:00:00,767 Main St, San Francisco,CA,94016 +153180,USB-C Charging Cable,1,11.95,2019-02-21 18:26:00,735 7th St, San Francisco,CA,94016 +153181,AA Batteries (4-pack),1,3.84,2019-02-20 10:22:00,827 Jackson St, Los Angeles,CA,90001 +153182,AA Batteries (4-pack),3,3.84,2019-02-12 09:04:00,442 Dogwood St, Boston,MA,02215 +153183,AA Batteries (4-pack),1,3.84,2019-02-03 21:32:00,514 Madison St, Atlanta,GA,30301 +153184,AA Batteries (4-pack),1,3.84,2019-02-13 14:17:00,270 Lake St, Dallas,TX,75001 +153185,Flatscreen TV,1,300.0,2019-02-04 10:58:00,673 Church St, Boston,MA,02215 +153186,Bose SoundSport Headphones,1,99.99,2019-02-28 10:30:00,347 Adams St, Dallas,TX,75001 +153187,Lightning Charging Cable,1,14.95,2019-02-13 10:42:00,153 10th St, Dallas,TX,75001 +153188,USB-C Charging Cable,1,11.95,2019-02-08 10:27:00,117 Maple St, Atlanta,GA,30301 +153189,AA Batteries (4-pack),2,3.84,2019-02-04 06:28:00,894 Forest St, Los Angeles,CA,90001 +153190,27in FHD Monitor,1,149.99,2019-02-11 17:14:00,272 Dogwood St, Boston,MA,02215 +153191,Apple Airpods Headphones,1,150.0,2019-02-20 10:36:00,354 Lake St, Boston,MA,02215 +153192,USB-C Charging Cable,1,11.95,2019-02-08 15:58:00,578 Chestnut St, Los Angeles,CA,90001 +153193,Macbook Pro Laptop,1,1700.0,2019-02-04 19:06:00,724 9th St, Los Angeles,CA,90001 +153194,27in 4K Gaming Monitor,1,389.99,2019-02-21 22:15:00,534 Willow St, Seattle,WA,98101 +153195,iPhone,1,700.0,2019-02-08 14:35:00,495 14th St, Seattle,WA,98101 +153196,Bose SoundSport Headphones,1,99.99,2019-02-26 19:54:00,611 North St, Dallas,TX,75001 +153197,AAA Batteries (4-pack),1,2.99,2019-02-18 13:14:00,781 Cherry St, Seattle,WA,98101 +153198,Lightning Charging Cable,1,14.95,2019-02-20 21:40:00,116 Cherry St, San Francisco,CA,94016 +153199,Bose SoundSport Headphones,1,99.99,2019-02-15 23:05:00,422 Dogwood St, New York City,NY,10001 +153200,Lightning Charging Cable,1,14.95,2019-02-18 14:56:00,342 7th St, Los Angeles,CA,90001 +153201,Bose SoundSport Headphones,1,99.99,2019-02-23 14:04:00,447 1st St, San Francisco,CA,94016 +153202,Apple Airpods Headphones,1,150.0,2019-02-03 18:40:00,435 8th St, Los Angeles,CA,90001 +153203,Apple Airpods Headphones,1,150.0,2019-02-01 15:59:00,83 Lincoln St, Boston,MA,02215 +153204,Vareebadd Phone,1,400.0,2019-02-24 17:09:00,339 Lincoln St, Boston,MA,02215 +153205,AA Batteries (4-pack),1,3.84,2019-02-01 17:48:00,878 4th St, Seattle,WA,98101 +153206,ThinkPad Laptop,1,999.99,2019-02-28 11:14:00,960 Meadow St, Los Angeles,CA,90001 +153207,AA Batteries (4-pack),2,3.84,2019-02-14 16:17:00,736 Hill St, San Francisco,CA,94016 +153208,Apple Airpods Headphones,1,150.0,2019-02-11 13:27:00,112 Center St, Boston,MA,02215 +153209,Lightning Charging Cable,1,14.95,2019-02-13 18:35:00,3 1st St, San Francisco,CA,94016 +153210,Lightning Charging Cable,1,14.95,2019-02-21 16:12:00,827 Elm St, Los Angeles,CA,90001 +153211,Lightning Charging Cable,1,14.95,2019-02-19 15:14:00,363 Dogwood St, Boston,MA,02215 +153212,AAA Batteries (4-pack),1,2.99,2019-02-13 21:37:00,959 12th St, Boston,MA,02215 +153213,iPhone,1,700.0,2019-02-05 10:13:00,389 Chestnut St, San Francisco,CA,94016 +153214,LG Dryer,1,600.0,2019-02-12 18:26:00,132 Adams St, Dallas,TX,75001 +153215,USB-C Charging Cable,1,11.95,2019-02-23 11:28:00,156 Jefferson St, San Francisco,CA,94016 +153216,Wired Headphones,1,11.99,2019-02-24 03:12:00,132 Spruce St, Boston,MA,02215 +153217,27in FHD Monitor,1,149.99,2019-02-24 11:48:00,67 Church St, San Francisco,CA,94016 +153218,Lightning Charging Cable,1,14.95,2019-02-21 07:34:00,564 North St, San Francisco,CA,94016 +153219,Lightning Charging Cable,1,14.95,2019-02-19 21:39:00,164 Cedar St, Los Angeles,CA,90001 +153220,Apple Airpods Headphones,1,150.0,2019-02-06 04:01:00,173 Willow St, Los Angeles,CA,90001 +153221,Lightning Charging Cable,1,14.95,2019-02-21 11:31:00,187 Highland St, New York City,NY,10001 +153222,AA Batteries (4-pack),1,3.84,2019-02-15 19:59:00,651 Meadow St, San Francisco,CA,94016 +153223,Bose SoundSport Headphones,1,99.99,2019-02-07 13:28:00,51 Forest St, Dallas,TX,75001 +153224,Lightning Charging Cable,1,14.95,2019-02-27 17:18:00,381 Park St, New York City,NY,10001 +153225,20in Monitor,1,109.99,2019-02-19 07:24:00,321 North St, San Francisco,CA,94016 +153226,Flatscreen TV,1,300.0,2019-02-21 19:13:00,268 Jackson St, San Francisco,CA,94016 +153227,AAA Batteries (4-pack),1,2.99,2019-02-05 16:46:00,112 Cedar St, San Francisco,CA,94016 +153228,iPhone,1,700.0,2019-02-07 19:48:00,753 2nd St, Portland,OR,97035 +153229,AA Batteries (4-pack),1,3.84,2019-02-14 19:20:00,120 Pine St, Los Angeles,CA,90001 +153229,Vareebadd Phone,1,400.0,2019-02-14 19:20:00,120 Pine St, Los Angeles,CA,90001 +153230,Macbook Pro Laptop,1,1700.0,2019-02-28 20:05:00,658 Hill St, Dallas,TX,75001 +153231,Wired Headphones,1,11.99,2019-02-23 21:16:00,942 6th St, Austin,TX,73301 +153232,Apple Airpods Headphones,1,150.0,2019-02-10 17:14:00,768 Chestnut St, Boston,MA,02215 +153233,AAA Batteries (4-pack),1,2.99,2019-02-08 11:48:00,149 Jefferson St, Los Angeles,CA,90001 +153234,20in Monitor,1,109.99,2019-02-01 11:31:00,80 2nd St, Los Angeles,CA,90001 +153235,Wired Headphones,1,11.99,2019-02-06 09:42:00,411 Church St, Boston,MA,02215 +153236,USB-C Charging Cable,2,11.95,2019-02-02 11:55:00,500 12th St, San Francisco,CA,94016 +153237,iPhone,1,700.0,2019-02-02 13:35:00,56 Jefferson St, San Francisco,CA,94016 +153238,Apple Airpods Headphones,1,150.0,2019-02-11 13:05:00,971 Ridge St, Atlanta,GA,30301 +153239,27in FHD Monitor,1,149.99,2019-02-07 11:30:00,738 Main St, Seattle,WA,98101 +153240,27in FHD Monitor,1,149.99,2019-02-09 20:20:00,173 Elm St, Boston,MA,02215 +153241,Lightning Charging Cable,1,14.95,2019-02-07 14:51:00,959 Hickory St, Portland,OR,97035 +153242,USB-C Charging Cable,1,11.95,2019-02-10 09:18:00,900 Cherry St, Los Angeles,CA,90001 +153243,Lightning Charging Cable,1,14.95,2019-02-11 21:59:00,401 Madison St, Boston,MA,02215 +153244,AA Batteries (4-pack),2,3.84,2019-02-15 22:55:00,484 Main St, Dallas,TX,75001 +153245,Wired Headphones,1,11.99,2019-02-16 22:36:00,937 4th St, New York City,NY,10001 +153246,Apple Airpods Headphones,1,150.0,2019-02-25 17:59:00,9 11th St, Seattle,WA,98101 +153247,USB-C Charging Cable,1,11.95,2019-02-13 14:53:00,750 South St, San Francisco,CA,94016 +153248,Lightning Charging Cable,1,14.95,2019-02-06 12:25:00,406 11th St, New York City,NY,10001 +153249,Lightning Charging Cable,1,14.95,2019-02-25 14:07:00,828 Pine St, Austin,TX,73301 +153250,Apple Airpods Headphones,1,150.0,2019-02-05 11:43:00,145 Jackson St, San Francisco,CA,94016 +153251,USB-C Charging Cable,1,11.95,2019-02-23 06:05:00,424 10th St, New York City,NY,10001 +153252,AA Batteries (4-pack),1,3.84,2019-02-28 13:51:00,739 4th St, New York City,NY,10001 +153253,Bose SoundSport Headphones,1,99.99,2019-02-05 15:00:00,486 Adams St, Boston,MA,02215 +153254,Bose SoundSport Headphones,1,99.99,2019-02-24 21:21:00,167 Elm St, San Francisco,CA,94016 +153254,Lightning Charging Cable,1,14.95,2019-02-24 21:21:00,167 Elm St, San Francisco,CA,94016 +153255,USB-C Charging Cable,1,11.95,2019-02-17 22:24:00,411 Dogwood St, Portland,OR,97035 +153256,USB-C Charging Cable,1,11.95,2019-02-11 23:57:00,889 Park St, Los Angeles,CA,90001 +153257,Lightning Charging Cable,1,14.95,2019-02-19 13:43:00,869 Lincoln St, Atlanta,GA,30301 +153258,AA Batteries (4-pack),2,3.84,2019-02-11 22:00:00,714 Lincoln St, San Francisco,CA,94016 +153259,AA Batteries (4-pack),1,3.84,2019-02-16 05:24:00,305 Lakeview St, New York City,NY,10001 +153260,Lightning Charging Cable,1,14.95,2019-02-14 09:06:00,236 Walnut St, Boston,MA,02215 +153261,Apple Airpods Headphones,1,150.0,2019-02-10 16:59:00,63 11th St, San Francisco,CA,94016 +153262,20in Monitor,1,109.99,2019-02-15 16:01:00,746 5th St, Dallas,TX,75001 +153263,iPhone,1,700.0,2019-02-07 22:51:00,271 Park St, Los Angeles,CA,90001 +153263,Lightning Charging Cable,1,14.95,2019-02-07 22:51:00,271 Park St, Los Angeles,CA,90001 +153263,Apple Airpods Headphones,1,150.0,2019-02-07 22:51:00,271 Park St, Los Angeles,CA,90001 +153264,Bose SoundSport Headphones,1,99.99,2019-02-25 08:47:00,240 Adams St, New York City,NY,10001 +153265,Lightning Charging Cable,1,14.95,2019-02-03 15:52:00,917 Park St, Los Angeles,CA,90001 +153266,USB-C Charging Cable,2,11.95,2019-02-18 19:49:00,998 Spruce St, Dallas,TX,75001 +153267,AAA Batteries (4-pack),1,2.99,2019-02-27 22:01:00,267 2nd St, Atlanta,GA,30301 +153268,USB-C Charging Cable,1,11.95,2019-02-08 09:35:00,580 North St, Los Angeles,CA,90001 +153269,AA Batteries (4-pack),1,3.84,2019-02-03 15:48:00,236 Lincoln St, New York City,NY,10001 +153270,Apple Airpods Headphones,1,150.0,2019-02-07 22:42:00,467 Lakeview St, San Francisco,CA,94016 +153271,AA Batteries (4-pack),2,3.84,2019-02-13 18:04:00,94 4th St, San Francisco,CA,94016 +153272,AAA Batteries (4-pack),1,2.99,2019-02-26 09:34:00,408 2nd St, San Francisco,CA,94016 +153273,Flatscreen TV,1,300.0,2019-02-18 20:34:00,807 Lake St, San Francisco,CA,94016 +153274,USB-C Charging Cable,1,11.95,2019-02-07 10:41:00,166 Lake St, Los Angeles,CA,90001 +153275,USB-C Charging Cable,1,11.95,2019-02-15 19:26:00,146 Lincoln St, New York City,NY,10001 +153276,Vareebadd Phone,1,400.0,2019-02-28 10:38:00,262 South St, Austin,TX,73301 +153277,AA Batteries (4-pack),2,3.84,2019-02-12 11:55:00,610 Ridge St, Los Angeles,CA,90001 +153278,USB-C Charging Cable,1,11.95,2019-02-08 11:23:00,594 12th St, Los Angeles,CA,90001 +153279,Bose SoundSport Headphones,1,99.99,2019-02-13 03:03:00,461 14th St, Atlanta,GA,30301 +153280,27in 4K Gaming Monitor,1,389.99,2019-02-08 05:25:00,968 River St, Los Angeles,CA,90001 +153281,Wired Headphones,1,11.99,2019-02-24 22:00:00,542 Elm St, San Francisco,CA,94016 +153282,Lightning Charging Cable,1,14.95,2019-02-17 10:34:00,2 Lake St, Atlanta,GA,30301 +153283,AAA Batteries (4-pack),1,2.99,2019-02-02 10:21:00,919 Walnut St, Dallas,TX,75001 +153284,Wired Headphones,1,11.99,2019-03-01 03:47:00,38 Church St, Los Angeles,CA,90001 +153285,Lightning Charging Cable,2,14.95,2019-02-17 21:46:00,404 Walnut St, Dallas,TX,75001 +153286,Lightning Charging Cable,1,14.95,2019-02-15 22:53:00,221 Lincoln St, San Francisco,CA,94016 +153287,USB-C Charging Cable,2,11.95,2019-02-20 22:33:00,624 Hill St, Los Angeles,CA,90001 +153288,USB-C Charging Cable,1,11.95,2019-02-09 15:33:00,2 10th St, San Francisco,CA,94016 +153289,Bose SoundSport Headphones,1,99.99,2019-02-19 16:19:00,629 Main St, Boston,MA,02215 +153290,AAA Batteries (4-pack),2,2.99,2019-02-09 08:32:00,173 2nd St, Portland,OR,97035 +153291,USB-C Charging Cable,1,11.95,2019-02-24 11:28:00,861 2nd St, Dallas,TX,75001 +153292,Lightning Charging Cable,1,14.95,2019-02-07 08:10:00,213 Highland St, Boston,MA,02215 +153293,AA Batteries (4-pack),2,3.84,2019-02-17 19:08:00,157 12th St, New York City,NY,10001 +153294,Wired Headphones,1,11.99,2019-02-23 12:28:00,899 Washington St, Los Angeles,CA,90001 +153294,Macbook Pro Laptop,1,1700.0,2019-02-23 12:28:00,899 Washington St, Los Angeles,CA,90001 +153295,Wired Headphones,1,11.99,2019-02-28 01:13:00,62 Madison St, New York City,NY,10001 +153296,Wired Headphones,1,11.99,2019-02-21 15:36:00,677 Center St, Portland,OR,97035 +153297,Bose SoundSport Headphones,1,99.99,2019-02-23 15:04:00,828 Sunset St, San Francisco,CA,94016 +153298,AA Batteries (4-pack),2,3.84,2019-02-10 11:57:00,204 Maple St, Seattle,WA,98101 +153299,Flatscreen TV,1,300.0,2019-02-18 12:33:00,249 Walnut St, Los Angeles,CA,90001 +153300,Lightning Charging Cable,1,14.95,2019-02-08 09:34:00,648 10th St, Portland,OR,97035 +153301,Apple Airpods Headphones,1,150.0,2019-02-23 16:03:00,343 9th St, San Francisco,CA,94016 +153302,Google Phone,1,600.0,2019-02-06 15:03:00,895 4th St, San Francisco,CA,94016 +153303,Wired Headphones,1,11.99,2019-02-24 18:30:00,888 14th St, San Francisco,CA,94016 +153304,Wired Headphones,1,11.99,2019-02-12 20:08:00,74 Meadow St, Austin,TX,73301 +153305,Google Phone,1,600.0,2019-02-19 02:15:00,181 Willow St, Los Angeles,CA,90001 +153306,Lightning Charging Cable,1,14.95,2019-02-19 18:33:00,691 13th St, New York City,NY,10001 +153307,Lightning Charging Cable,1,14.95,2019-02-05 13:51:00,858 8th St, Los Angeles,CA,90001 +153308,AAA Batteries (4-pack),1,2.99,2019-02-09 18:05:00,763 6th St, Dallas,TX,75001 +153309,Apple Airpods Headphones,1,150.0,2019-02-12 19:53:00,632 Hickory St, Atlanta,GA,30301 +153310,AA Batteries (4-pack),1,3.84,2019-02-26 20:40:00,876 Highland St, Seattle,WA,98101 +153311,USB-C Charging Cable,1,11.95,2019-02-01 22:42:00,44 7th St, Atlanta,GA,30301 +153312,USB-C Charging Cable,1,11.95,2019-02-09 21:17:00,86 14th St, New York City,NY,10001 +153313,USB-C Charging Cable,1,11.95,2019-02-09 23:55:00,926 Chestnut St, Portland,OR,97035 +153314,Wired Headphones,2,11.99,2019-02-25 12:00:00,756 Willow St, Dallas,TX,75001 +153315,Wired Headphones,1,11.99,2019-02-13 14:47:00,953 Jefferson St, Atlanta,GA,30301 +153316,ThinkPad Laptop,1,999.99,2019-02-06 16:46:00,553 Lakeview St, Dallas,TX,75001 +153317,27in 4K Gaming Monitor,1,389.99,2019-02-27 18:50:00,116 7th St, Los Angeles,CA,90001 +153318,Apple Airpods Headphones,1,150.0,2019-02-10 17:19:00,924 13th St, Los Angeles,CA,90001 +153319,27in 4K Gaming Monitor,1,389.99,2019-02-09 20:02:00,491 6th St, Los Angeles,CA,90001 +153320,27in 4K Gaming Monitor,1,389.99,2019-02-20 09:59:00,295 Spruce St, Austin,TX,73301 +153321,Bose SoundSport Headphones,1,99.99,2019-02-01 20:15:00,438 Church St, Austin,TX,73301 +153322,Lightning Charging Cable,2,14.95,2019-02-10 21:58:00,804 Dogwood St, Los Angeles,CA,90001 +153323,Google Phone,1,600.0,2019-02-21 08:14:00,343 Wilson St, Dallas,TX,75001 +153323,Bose SoundSport Headphones,1,99.99,2019-02-21 08:14:00,343 Wilson St, Dallas,TX,75001 +153324,USB-C Charging Cable,1,11.95,2019-02-26 12:04:00,431 14th St, New York City,NY,10001 +153325,Macbook Pro Laptop,1,1700.0,2019-02-27 13:58:00,73 Ridge St, Boston,MA,02215 +153326,USB-C Charging Cable,2,11.95,2019-02-27 20:38:00,799 Chestnut St, Seattle,WA,98101 +153327,27in FHD Monitor,1,149.99,2019-02-12 20:21:00,210 Lincoln St, Seattle,WA,98101 +153328,AAA Batteries (4-pack),1,2.99,2019-02-18 12:21:00,201 5th St, Boston,MA,02215 +153329,Bose SoundSport Headphones,1,99.99,2019-02-06 16:30:00,113 Pine St, Los Angeles,CA,90001 +153330,Lightning Charging Cable,1,14.95,2019-02-24 13:25:00,991 Pine St, Dallas,TX,75001 +153331,Apple Airpods Headphones,1,150.0,2019-02-08 15:03:00,25 Highland St, Los Angeles,CA,90001 +153332,USB-C Charging Cable,1,11.95,2019-02-28 09:27:00,62 Cherry St, Austin,TX,73301 +153333,AAA Batteries (4-pack),2,2.99,2019-02-22 17:42:00,97 Elm St, New York City,NY,10001 +153334,Wired Headphones,1,11.99,2019-02-05 20:19:00,174 Chestnut St, Los Angeles,CA,90001 +153335,Bose SoundSport Headphones,1,99.99,2019-02-15 20:46:00,803 Pine St, Los Angeles,CA,90001 +153336,Lightning Charging Cable,1,14.95,2019-02-19 10:19:00,581 Meadow St, Boston,MA,02215 +153337,ThinkPad Laptop,1,999.99,2019-02-15 20:19:00,439 Hill St, Dallas,TX,75001 +153338,Lightning Charging Cable,1,14.95,2019-02-26 13:05:00,299 South St, Dallas,TX,75001 +153339,Wired Headphones,1,11.99,2019-02-27 23:24:00,91 Highland St, Los Angeles,CA,90001 +153340,AAA Batteries (4-pack),1,2.99,2019-02-07 10:17:00,140 Lincoln St, New York City,NY,10001 +153341,Flatscreen TV,1,300.0,2019-02-15 13:21:00,116 Willow St, Austin,TX,73301 +153341,Apple Airpods Headphones,1,150.0,2019-02-15 13:21:00,116 Willow St, Austin,TX,73301 +153342,Apple Airpods Headphones,1,150.0,2019-02-03 11:32:00,563 West St, New York City,NY,10001 +153343,Wired Headphones,1,11.99,2019-02-15 19:59:00,906 Johnson St, San Francisco,CA,94016 +153344,Bose SoundSport Headphones,1,99.99,2019-02-01 13:50:00,445 4th St, Austin,TX,73301 +153345,27in 4K Gaming Monitor,1,389.99,2019-02-13 19:12:00,221 Chestnut St, Seattle,WA,98101 +153346,USB-C Charging Cable,1,11.95,2019-02-03 13:28:00,868 Maple St, Los Angeles,CA,90001 +153347,Apple Airpods Headphones,1,150.0,2019-02-04 14:56:00,827 Main St, Boston,MA,02215 +153348,USB-C Charging Cable,2,11.95,2019-02-19 08:48:00,483 12th St, New York City,NY,10001 +153349,AAA Batteries (4-pack),3,2.99,2019-02-17 15:34:00,195 South St, San Francisco,CA,94016 +153350,Wired Headphones,1,11.99,2019-02-05 21:39:00,252 Willow St, New York City,NY,10001 +153351,Lightning Charging Cable,1,14.95,2019-02-16 21:55:00,69 Hickory St, New York City,NY,10001 +153352,AAA Batteries (4-pack),1,2.99,2019-02-05 10:51:00,584 Meadow St, Los Angeles,CA,90001 +153353,USB-C Charging Cable,2,11.95,2019-02-16 18:26:00,829 Lakeview St, Seattle,WA,98101 +153354,Wired Headphones,1,11.99,2019-02-11 13:34:00,461 Walnut St, Dallas,TX,75001 +153355,Bose SoundSport Headphones,1,99.99,2019-02-03 23:15:00,418 7th St, Seattle,WA,98101 +153356,Macbook Pro Laptop,1,1700.0,2019-02-22 21:06:00,914 Spruce St, Atlanta,GA,30301 +153357,USB-C Charging Cable,1,11.95,2019-02-24 02:28:00,512 1st St, New York City,NY,10001 +153358,Apple Airpods Headphones,1,150.0,2019-02-27 21:22:00,358 Hill St, San Francisco,CA,94016 +153359,USB-C Charging Cable,3,11.95,2019-02-08 19:05:00,248 Hill St, Seattle,WA,98101 +153360,AAA Batteries (4-pack),1,2.99,2019-02-10 09:30:00,960 River St, New York City,NY,10001 +153361,USB-C Charging Cable,1,11.95,2019-02-12 12:22:00,185 Maple St, San Francisco,CA,94016 +153362,Bose SoundSport Headphones,1,99.99,2019-02-11 22:52:00,209 Forest St, Dallas,TX,75001 +153363,USB-C Charging Cable,1,11.95,2019-02-15 09:48:00,813 West St, Los Angeles,CA,90001 +153364,Wired Headphones,1,11.99,2019-02-11 20:42:00,146 Cedar St, Seattle,WA,98101 +153365,Vareebadd Phone,1,400.0,2019-02-25 20:51:00,554 Main St, Boston,MA,02215 +153366,AAA Batteries (4-pack),1,2.99,2019-02-06 14:16:00,866 Jackson St, Seattle,WA,98101 +153366,Wired Headphones,1,11.99,2019-02-06 14:16:00,866 Jackson St, Seattle,WA,98101 +153367,Wired Headphones,1,11.99,2019-02-06 13:43:00,94 Lake St, Los Angeles,CA,90001 +153368,27in 4K Gaming Monitor,1,389.99,2019-02-22 06:22:00,635 8th St, Boston,MA,02215 +153369,20in Monitor,1,109.99,2019-02-12 09:21:00,724 Jackson St, San Francisco,CA,94016 +153370,USB-C Charging Cable,3,11.95,2019-02-04 23:15:00,194 Elm St, Dallas,TX,75001 +153371,AA Batteries (4-pack),2,3.84,2019-02-11 12:22:00,158 Lakeview St, San Francisco,CA,94016 +153372,iPhone,1,700.0,2019-02-26 20:42:00,351 Willow St, Austin,TX,73301 +153373,Apple Airpods Headphones,1,150.0,2019-02-11 08:58:00,601 12th St, New York City,NY,10001 +153374,Lightning Charging Cable,1,14.95,2019-02-27 11:23:00,366 Jefferson St, Los Angeles,CA,90001 +153375,Apple Airpods Headphones,1,150.0,2019-02-10 19:42:00,563 Pine St, San Francisco,CA,94016 +153376,Wired Headphones,1,11.99,2019-02-19 09:00:00,317 Spruce St, Portland,OR,97035 +153377,Lightning Charging Cable,1,14.95,2019-02-16 12:39:00,155 Wilson St, San Francisco,CA,94016 +153378,USB-C Charging Cable,1,11.95,2019-02-09 19:31:00,527 Sunset St, Los Angeles,CA,90001 +153379,AA Batteries (4-pack),2,3.84,2019-02-25 21:10:00,853 6th St, San Francisco,CA,94016 +153380,Apple Airpods Headphones,1,150.0,2019-02-24 12:37:00,790 Jefferson St, Austin,TX,73301 +153381,USB-C Charging Cable,1,11.95,2019-02-15 11:26:00,470 Madison St, New York City,NY,10001 +153382,AAA Batteries (4-pack),3,2.99,2019-02-11 20:31:00,939 Adams St, New York City,NY,10001 +153383,Google Phone,1,600.0,2019-02-17 14:54:00,826 Church St, Los Angeles,CA,90001 +153384,ThinkPad Laptop,1,999.99,2019-02-23 17:57:00,187 Ridge St, San Francisco,CA,94016 +153385,Lightning Charging Cable,1,14.95,2019-02-18 07:54:00,860 Pine St, Boston,MA,02215 +153386,Flatscreen TV,1,300.0,2019-02-22 16:22:00,340 2nd St, San Francisco,CA,94016 +153387,AAA Batteries (4-pack),1,2.99,2019-02-01 18:25:00,762 Lake St, Portland,OR,97035 +153388,Wired Headphones,1,11.99,2019-02-01 16:15:00,718 Church St, Seattle,WA,98101 +153389,AAA Batteries (4-pack),1,2.99,2019-02-28 23:48:00,615 Elm St, Los Angeles,CA,90001 +153390,Lightning Charging Cable,1,14.95,2019-02-13 10:20:00,195 South St, Los Angeles,CA,90001 +153391,27in 4K Gaming Monitor,1,389.99,2019-02-27 12:07:00,119 Willow St, Boston,MA,02215 +153392,Bose SoundSport Headphones,1,99.99,2019-02-10 10:55:00,51 Washington St, Los Angeles,CA,90001 +153393,27in FHD Monitor,1,149.99,2019-02-13 17:59:00,564 Maple St, Dallas,TX,75001 +153394,AAA Batteries (4-pack),2,2.99,2019-02-25 01:14:00,593 North St, San Francisco,CA,94016 +153395,27in 4K Gaming Monitor,1,389.99,2019-02-16 12:22:00,835 Chestnut St, Dallas,TX,75001 +153396,AA Batteries (4-pack),2,3.84,2019-02-12 12:35:00,932 Main St, Portland,ME,04101 +153397,USB-C Charging Cable,2,11.95,2019-02-17 11:42:00,639 Hickory St, Los Angeles,CA,90001 +153398,AA Batteries (4-pack),1,3.84,2019-02-17 16:47:00,485 12th St, Boston,MA,02215 +153399,iPhone,1,700.0,2019-02-16 06:36:00,723 4th St, New York City,NY,10001 +153399,Lightning Charging Cable,1,14.95,2019-02-16 06:36:00,723 4th St, New York City,NY,10001 +153400,AAA Batteries (4-pack),2,2.99,2019-02-06 17:06:00,848 Walnut St, Austin,TX,73301 +153401,Lightning Charging Cable,1,14.95,2019-02-07 17:15:00,78 Pine St, Portland,OR,97035 +153402,USB-C Charging Cable,1,11.95,2019-02-18 17:17:00,436 Willow St, San Francisco,CA,94016 +153403,Bose SoundSport Headphones,1,99.99,2019-02-09 16:12:00,844 Johnson St, Seattle,WA,98101 +153404,Lightning Charging Cable,1,14.95,2019-02-18 19:57:00,691 Madison St, Dallas,TX,75001 +153405,USB-C Charging Cable,1,11.95,2019-02-03 11:26:00,527 Madison St, New York City,NY,10001 +153406,ThinkPad Laptop,1,999.99,2019-02-14 10:53:00,432 14th St, San Francisco,CA,94016 +153407,27in FHD Monitor,1,149.99,2019-02-25 16:59:00,592 Jackson St, Portland,OR,97035 +153408,Bose SoundSport Headphones,1,99.99,2019-02-01 18:29:00,84 Lakeview St, San Francisco,CA,94016 +153409,USB-C Charging Cable,1,11.95,2019-02-28 13:09:00,968 10th St, San Francisco,CA,94016 +153410,Wired Headphones,1,11.99,2019-02-15 20:27:00,779 Spruce St, San Francisco,CA,94016 +153411,AAA Batteries (4-pack),5,2.99,2019-02-23 09:21:00,246 7th St, Boston,MA,02215 +153412,USB-C Charging Cable,1,11.95,2019-02-21 19:20:00,835 Jackson St, Los Angeles,CA,90001 +153413,AA Batteries (4-pack),2,3.84,2019-02-22 22:23:00,676 Church St, Los Angeles,CA,90001 +153414,AAA Batteries (4-pack),2,2.99,2019-02-06 10:40:00,879 Highland St, San Francisco,CA,94016 +153415,Wired Headphones,1,11.99,2019-02-04 07:20:00,59 7th St, Los Angeles,CA,90001 +153416,AA Batteries (4-pack),3,3.84,2019-02-21 10:06:00,98 12th St, Los Angeles,CA,90001 +153417,34in Ultrawide Monitor,1,379.99,2019-02-11 03:44:00,803 Maple St, New York City,NY,10001 +153418,Wired Headphones,1,11.99,2019-02-01 09:34:00,514 2nd St, Atlanta,GA,30301 +153419,Lightning Charging Cable,1,14.95,2019-02-25 23:56:00,336 South St, Dallas,TX,75001 +153420,USB-C Charging Cable,1,11.95,2019-02-10 13:53:00,217 Cherry St, Atlanta,GA,30301 +153421,Bose SoundSport Headphones,1,99.99,2019-02-06 18:54:00,27 Maple St, Los Angeles,CA,90001 +153422,AAA Batteries (4-pack),1,2.99,2019-02-14 22:59:00,841 6th St, Portland,OR,97035 +153423,AA Batteries (4-pack),2,3.84,2019-02-10 17:05:00,246 Johnson St, Dallas,TX,75001 +153424,AAA Batteries (4-pack),2,2.99,2019-02-22 22:16:00,424 Elm St, New York City,NY,10001 +153425,Lightning Charging Cable,1,14.95,2019-02-02 07:04:00,279 Highland St, San Francisco,CA,94016 +153426,iPhone,1,700.0,2019-02-10 18:28:00,577 Lakeview St, Austin,TX,73301 +153426,Lightning Charging Cable,1,14.95,2019-02-10 18:28:00,577 Lakeview St, Austin,TX,73301 +153427,USB-C Charging Cable,1,11.95,2019-02-18 22:04:00,385 12th St, Boston,MA,02215 +153428,27in 4K Gaming Monitor,1,389.99,2019-02-28 17:24:00,85 13th St, Portland,OR,97035 +153429,USB-C Charging Cable,1,11.95,2019-02-13 14:46:00,39 9th St, New York City,NY,10001 +153430,iPhone,1,700.0,2019-02-11 11:57:00,492 Maple St, Dallas,TX,75001 +153431,27in 4K Gaming Monitor,1,389.99,2019-02-13 12:24:00,35 7th St, Seattle,WA,98101 +153432,iPhone,1,700.0,2019-02-15 18:29:00,116 7th St, Portland,OR,97035 +153432,Wired Headphones,2,11.99,2019-02-15 18:29:00,116 7th St, Portland,OR,97035 +153433,Lightning Charging Cable,1,14.95,2019-02-06 09:44:00,999 River St, Los Angeles,CA,90001 +153434,Lightning Charging Cable,1,14.95,2019-02-06 16:24:00,320 10th St, New York City,NY,10001 +153435,34in Ultrawide Monitor,1,379.99,2019-02-10 12:22:00,25 North St, Los Angeles,CA,90001 +153436,Bose SoundSport Headphones,1,99.99,2019-02-21 19:52:00,228 Maple St, Los Angeles,CA,90001 +153437,USB-C Charging Cable,1,11.95,2019-02-26 11:49:00,329 Main St, San Francisco,CA,94016 +153438,AAA Batteries (4-pack),1,2.99,2019-02-19 09:00:00,461 Cherry St, New York City,NY,10001 +153439,USB-C Charging Cable,1,11.95,2019-02-08 19:14:00,952 10th St, Portland,OR,97035 +153440,Apple Airpods Headphones,1,150.0,2019-02-27 12:58:00,446 Hill St, Los Angeles,CA,90001 +153441,34in Ultrawide Monitor,1,379.99,2019-02-17 18:30:00,954 Cedar St, Los Angeles,CA,90001 +153442,20in Monitor,1,109.99,2019-02-26 14:47:00,625 Lincoln St, Los Angeles,CA,90001 +153443,AA Batteries (4-pack),1,3.84,2019-02-17 10:15:00,882 Main St, Los Angeles,CA,90001 +153444,34in Ultrawide Monitor,1,379.99,2019-02-05 20:48:00,724 Lakeview St, New York City,NY,10001 +153445,Bose SoundSport Headphones,1,99.99,2019-02-20 18:43:00,315 West St, Boston,MA,02215 +153446,AA Batteries (4-pack),1,3.84,2019-02-23 11:39:00,735 14th St, Los Angeles,CA,90001 +153447,Lightning Charging Cable,1,14.95,2019-02-06 12:48:00,532 Park St, Austin,TX,73301 +153448,Bose SoundSport Headphones,1,99.99,2019-02-18 18:17:00,161 Cedar St, Portland,ME,04101 +153449,27in FHD Monitor,1,149.99,2019-02-05 12:12:00,216 Spruce St, Boston,MA,02215 +153450,AAA Batteries (4-pack),1,2.99,2019-02-12 11:21:00,286 Forest St, Boston,MA,02215 +153451,27in 4K Gaming Monitor,1,389.99,2019-02-11 19:21:00,168 Johnson St, Los Angeles,CA,90001 +153452,Bose SoundSport Headphones,1,99.99,2019-02-14 17:01:00,84 North St, Boston,MA,02215 +153453,AAA Batteries (4-pack),2,2.99,2019-02-14 09:22:00,271 Maple St, Atlanta,GA,30301 +153454,27in FHD Monitor,1,149.99,2019-02-14 22:06:00,824 6th St, San Francisco,CA,94016 +153455,ThinkPad Laptop,1,999.99,2019-02-22 23:15:00,780 Elm St, New York City,NY,10001 +153456,AAA Batteries (4-pack),1,2.99,2019-02-17 13:35:00,518 Park St, Seattle,WA,98101 +153457,AAA Batteries (4-pack),1,2.99,2019-02-07 20:46:00,719 8th St, Seattle,WA,98101 +153458,USB-C Charging Cable,1,11.95,2019-02-16 10:13:00,174 Willow St, Los Angeles,CA,90001 +153459,Bose SoundSport Headphones,1,99.99,2019-02-24 22:38:00,196 Adams St, Boston,MA,02215 +153460,AA Batteries (4-pack),1,3.84,2019-02-08 19:30:00,622 Washington St, Seattle,WA,98101 +153461,AAA Batteries (4-pack),1,2.99,2019-02-22 18:14:00,841 Elm St, Los Angeles,CA,90001 +153462,Wired Headphones,1,11.99,2019-02-25 06:44:00,239 Lake St, San Francisco,CA,94016 +153463,34in Ultrawide Monitor,1,379.99,2019-02-19 15:31:00,783 1st St, Los Angeles,CA,90001 +153464,USB-C Charging Cable,1,11.95,2019-02-01 21:40:00,254 Dogwood St, Boston,MA,02215 +153465,34in Ultrawide Monitor,1,379.99,2019-02-13 13:24:00,16 Center St, San Francisco,CA,94016 +153466,USB-C Charging Cable,1,11.95,2019-02-23 18:09:00,970 Willow St, Austin,TX,73301 +153467,AA Batteries (4-pack),1,3.84,2019-02-07 08:48:00,729 2nd St, Seattle,WA,98101 +153468,AAA Batteries (4-pack),3,2.99,2019-02-02 17:22:00,230 Elm St, Seattle,WA,98101 +153469,AAA Batteries (4-pack),2,2.99,2019-02-16 15:53:00,613 Jackson St, New York City,NY,10001 +153470,Macbook Pro Laptop,1,1700.0,2019-02-12 18:25:00,812 9th St, San Francisco,CA,94016 +153471,USB-C Charging Cable,1,11.95,2019-02-02 12:43:00,317 River St, Atlanta,GA,30301 +153472,Lightning Charging Cable,1,14.95,2019-02-05 01:17:00,11 West St, Portland,OR,97035 +153473,Google Phone,1,600.0,2019-02-12 09:10:00,322 Willow St, New York City,NY,10001 +153473,USB-C Charging Cable,1,11.95,2019-02-12 09:10:00,322 Willow St, New York City,NY,10001 +153474,USB-C Charging Cable,1,11.95,2019-02-26 15:53:00,2 Willow St, San Francisco,CA,94016 +153475,Apple Airpods Headphones,1,150.0,2019-02-01 12:31:00,547 Cedar St, Austin,TX,73301 +153476,Wired Headphones,1,11.99,2019-02-19 17:59:00,369 Lake St, Los Angeles,CA,90001 +153477,USB-C Charging Cable,1,11.95,2019-02-01 13:53:00,302 Elm St, Portland,ME,04101 +153478,Google Phone,1,600.0,2019-02-09 10:11:00,472 Center St, Portland,OR,97035 +153479,AAA Batteries (4-pack),1,2.99,2019-02-20 13:28:00,920 14th St, Atlanta,GA,30301 +153480,AA Batteries (4-pack),1,3.84,2019-02-13 11:48:00,326 Cherry St, San Francisco,CA,94016 +153481,Lightning Charging Cable,1,14.95,2019-02-23 21:01:00,480 8th St, Dallas,TX,75001 +153482,AA Batteries (4-pack),1,3.84,2019-02-23 19:50:00,186 Lakeview St, Dallas,TX,75001 +153483,AA Batteries (4-pack),2,3.84,2019-02-25 15:20:00,548 Willow St, New York City,NY,10001 +153484,27in 4K Gaming Monitor,1,389.99,2019-02-17 10:47:00,359 Washington St, Los Angeles,CA,90001 +153485,USB-C Charging Cable,2,11.95,2019-02-27 18:24:00,45 Walnut St, San Francisco,CA,94016 +153486,USB-C Charging Cable,1,11.95,2019-02-13 20:48:00,237 Sunset St, New York City,NY,10001 +153487,iPhone,1,700.0,2019-02-05 15:15:00,721 Jackson St, San Francisco,CA,94016 +153487,Lightning Charging Cable,1,14.95,2019-02-05 15:15:00,721 Jackson St, San Francisco,CA,94016 +153488,Apple Airpods Headphones,1,150.0,2019-02-16 17:26:00,699 1st St, Atlanta,GA,30301 +153489,Macbook Pro Laptop,1,1700.0,2019-02-16 08:35:00,237 Madison St, New York City,NY,10001 +153490,Wired Headphones,1,11.99,2019-02-09 17:39:00,631 Lincoln St, Los Angeles,CA,90001 +153491,27in FHD Monitor,1,149.99,2019-02-09 15:49:00,353 River St, San Francisco,CA,94016 +153492,USB-C Charging Cable,1,11.95,2019-02-01 08:13:00,779 Lakeview St, Los Angeles,CA,90001 +153493,Vareebadd Phone,1,400.0,2019-02-13 21:19:00,479 Sunset St, Dallas,TX,75001 +153494,AA Batteries (4-pack),1,3.84,2019-02-07 14:29:00,350 Willow St, San Francisco,CA,94016 +153495,Lightning Charging Cable,1,14.95,2019-02-25 08:53:00,767 Cherry St, San Francisco,CA,94016 +153496,Apple Airpods Headphones,1,150.0,2019-02-02 09:01:00,849 Park St, San Francisco,CA,94016 +153497,AAA Batteries (4-pack),1,2.99,2019-02-07 21:30:00,657 Lincoln St, Los Angeles,CA,90001 +153498,Lightning Charging Cable,1,14.95,2019-02-17 14:34:00,680 Cedar St, Boston,MA,02215 +153499,AA Batteries (4-pack),1,3.84,2019-02-13 08:16:00,870 6th St, Dallas,TX,75001 +153500,iPhone,1,700.0,2019-02-18 16:03:00,932 Main St, San Francisco,CA,94016 +153501,AA Batteries (4-pack),1,3.84,2019-02-02 18:15:00,7 10th St, Atlanta,GA,30301 +153502,27in FHD Monitor,1,149.99,2019-02-05 14:30:00,397 4th St, Los Angeles,CA,90001 +153503,AAA Batteries (4-pack),1,2.99,2019-02-20 11:39:00,39 8th St, Atlanta,GA,30301 +153504,Google Phone,1,600.0,2019-02-26 20:34:00,673 Meadow St, San Francisco,CA,94016 +153504,USB-C Charging Cable,1,11.95,2019-02-26 20:34:00,673 Meadow St, San Francisco,CA,94016 +153505,AA Batteries (4-pack),6,3.84,2019-02-04 11:22:00,710 Ridge St, Los Angeles,CA,90001 +153506,27in 4K Gaming Monitor,1,389.99,2019-02-18 13:14:00,664 Elm St, New York City,NY,10001 +153507,AAA Batteries (4-pack),1,2.99,2019-02-03 08:09:00,833 Spruce St, Atlanta,GA,30301 +153508,AA Batteries (4-pack),1,3.84,2019-02-06 15:56:00,139 Highland St, Los Angeles,CA,90001 +153509,Lightning Charging Cable,1,14.95,2019-02-13 21:34:00,928 Lakeview St, San Francisco,CA,94016 +153510,34in Ultrawide Monitor,1,379.99,2019-02-09 17:28:00,250 Lake St, Boston,MA,02215 +153511,27in FHD Monitor,1,149.99,2019-02-15 03:11:00,431 Elm St, San Francisco,CA,94016 +153512,AAA Batteries (4-pack),2,2.99,2019-02-28 10:40:00,483 Maple St, Boston,MA,02215 +153513,Apple Airpods Headphones,1,150.0,2019-02-16 14:22:00,85 Cherry St, San Francisco,CA,94016 +153514,34in Ultrawide Monitor,1,379.99,2019-02-17 19:28:00,389 North St, Los Angeles,CA,90001 +153515,AA Batteries (4-pack),1,3.84,2019-02-13 21:40:00,930 North St, Boston,MA,02215 +153516,Lightning Charging Cable,1,14.95,2019-02-25 10:10:00,800 Church St, San Francisco,CA,94016 +153517,USB-C Charging Cable,1,11.95,2019-02-09 20:24:00,763 9th St, Boston,MA,02215 +153518,Wired Headphones,1,11.99,2019-02-27 17:09:00,654 River St, New York City,NY,10001 +153519,Google Phone,1,600.0,2019-02-24 13:30:00,721 Hickory St, San Francisco,CA,94016 +153519,USB-C Charging Cable,1,11.95,2019-02-24 13:30:00,721 Hickory St, San Francisco,CA,94016 +153520,Flatscreen TV,1,300.0,2019-02-17 22:05:00,487 South St, San Francisco,CA,94016 +153521,Apple Airpods Headphones,1,150.0,2019-02-15 01:29:00,633 Sunset St, Atlanta,GA,30301 +153522,ThinkPad Laptop,1,999.99,2019-02-16 10:33:00,932 Dogwood St, Boston,MA,02215 +153523,iPhone,1,700.0,2019-02-20 13:48:00,571 Lakeview St, San Francisco,CA,94016 +153524,Bose SoundSport Headphones,1,99.99,2019-02-08 10:50:00,533 12th St, Los Angeles,CA,90001 +153525,ThinkPad Laptop,1,999.99,2019-02-14 11:58:00,751 Forest St, San Francisco,CA,94016 +153526,iPhone,1,700.0,2019-02-08 22:00:00,13 Cedar St, Portland,OR,97035 +153527,20in Monitor,1,109.99,2019-02-21 17:24:00,463 Meadow St, Boston,MA,02215 +153528,Bose SoundSport Headphones,1,99.99,2019-02-10 09:25:00,90 Washington St, Dallas,TX,75001 +153529,Lightning Charging Cable,1,14.95,2019-02-03 20:48:00,192 River St, New York City,NY,10001 +153530,Wired Headphones,1,11.99,2019-02-23 04:24:00,753 Lakeview St, Boston,MA,02215 +153531,34in Ultrawide Monitor,1,379.99,2019-02-15 08:28:00,678 2nd St, Los Angeles,CA,90001 +153532,USB-C Charging Cable,2,11.95,2019-02-06 09:22:00,457 4th St, Seattle,WA,98101 +153533,Lightning Charging Cable,1,14.95,2019-02-21 20:44:00,110 Hickory St, Boston,MA,02215 +153534,Lightning Charging Cable,1,14.95,2019-02-06 11:55:00,853 Lakeview St, San Francisco,CA,94016 +153535,Bose SoundSport Headphones,1,99.99,2019-02-14 08:59:00,597 Cedar St, San Francisco,CA,94016 +153536,AA Batteries (4-pack),1,3.84,2019-02-24 00:29:00,369 Sunset St, Austin,TX,73301 +153537,27in FHD Monitor,1,149.99,2019-02-01 08:54:00,800 Sunset St, Boston,MA,02215 +153538,27in FHD Monitor,1,149.99,2019-02-22 16:53:00,398 14th St, Los Angeles,CA,90001 +153539,Wired Headphones,1,11.99,2019-02-26 14:46:00,337 Adams St, Los Angeles,CA,90001 +153540,27in FHD Monitor,1,149.99,2019-02-23 00:47:00,278 Cedar St, Boston,MA,02215 +153541,27in 4K Gaming Monitor,1,389.99,2019-02-28 13:03:00,771 Highland St, San Francisco,CA,94016 +153542,iPhone,1,700.0,2019-02-19 17:42:00,317 Madison St, Los Angeles,CA,90001 +153543,Wired Headphones,1,11.99,2019-02-15 19:22:00,839 4th St, New York City,NY,10001 +153544,Bose SoundSport Headphones,1,99.99,2019-03-01 02:03:00,92 Spruce St, Los Angeles,CA,90001 +153545,Macbook Pro Laptop,1,1700.0,2019-02-23 22:53:00,515 1st St, Los Angeles,CA,90001 +153546,20in Monitor,1,109.99,2019-02-05 16:04:00,230 Meadow St, Los Angeles,CA,90001 +153547,27in 4K Gaming Monitor,1,389.99,2019-02-18 01:46:00,494 13th St, Portland,ME,04101 +153548,AAA Batteries (4-pack),1,2.99,2019-02-11 13:25:00,612 13th St, Portland,OR,97035 +153549,USB-C Charging Cable,1,11.95,2019-02-16 15:35:00,923 10th St, Boston,MA,02215 +153550,AA Batteries (4-pack),2,3.84,2019-02-10 19:54:00,767 Dogwood St, San Francisco,CA,94016 +153551,Bose SoundSport Headphones,1,99.99,2019-02-07 19:47:00,641 Wilson St, Austin,TX,73301 +153552,AAA Batteries (4-pack),1,2.99,2019-02-14 22:13:00,907 Center St, Austin,TX,73301 +153553,Apple Airpods Headphones,1,150.0,2019-02-05 16:40:00,195 Lake St, New York City,NY,10001 +153554,27in FHD Monitor,1,149.99,2019-02-19 22:50:00,323 10th St, San Francisco,CA,94016 +153555,Flatscreen TV,1,300.0,2019-02-17 02:17:00,987 Wilson St, Seattle,WA,98101 +153556,AA Batteries (4-pack),1,3.84,2019-02-21 13:13:00,316 Hickory St, Seattle,WA,98101 +153557,Flatscreen TV,1,300.0,2019-02-12 08:46:00,897 Madison St, Austin,TX,73301 +153558,Apple Airpods Headphones,1,150.0,2019-02-01 19:30:00,291 Hickory St, New York City,NY,10001 +153559,Wired Headphones,1,11.99,2019-02-16 12:16:00,176 11th St, San Francisco,CA,94016 +153560,USB-C Charging Cable,1,11.95,2019-02-14 23:39:00,376 13th St, New York City,NY,10001 +153561,Apple Airpods Headphones,1,150.0,2019-02-18 21:49:00,806 Meadow St, Atlanta,GA,30301 +153562,AAA Batteries (4-pack),1,2.99,2019-02-25 12:45:00,212 5th St, Dallas,TX,75001 +153563,AAA Batteries (4-pack),1,2.99,2019-02-16 19:25:00,223 Main St, Boston,MA,02215 +153564,27in 4K Gaming Monitor,1,389.99,2019-02-23 10:20:00,9 South St, San Francisco,CA,94016 +153565,27in 4K Gaming Monitor,1,389.99,2019-02-12 22:07:00,542 Forest St, Austin,TX,73301 +153565,Lightning Charging Cable,1,14.95,2019-02-12 22:07:00,542 Forest St, Austin,TX,73301 +153566,34in Ultrawide Monitor,1,379.99,2019-02-27 08:37:00,140 7th St, Boston,MA,02215 +153567,AA Batteries (4-pack),1,3.84,2019-02-09 15:17:00,157 Chestnut St, Seattle,WA,98101 +153568,27in 4K Gaming Monitor,1,389.99,2019-02-20 21:56:00,717 9th St, Atlanta,GA,30301 +153569,AAA Batteries (4-pack),1,2.99,2019-02-01 21:05:00,524 Park St, Los Angeles,CA,90001 +153570,USB-C Charging Cable,1,11.95,2019-02-04 08:36:00,642 4th St, Portland,ME,04101 +153571,Apple Airpods Headphones,1,150.0,2019-02-11 14:36:00,194 7th St, San Francisco,CA,94016 +153572,Wired Headphones,1,11.99,2019-02-03 11:37:00,652 Ridge St, San Francisco,CA,94016 +153573,AAA Batteries (4-pack),2,2.99,2019-02-10 17:10:00,446 Meadow St, Seattle,WA,98101 +153574,AAA Batteries (4-pack),1,2.99,2019-02-27 17:56:00,833 Walnut St, San Francisco,CA,94016 +153575,Macbook Pro Laptop,1,1700.0,2019-02-13 21:47:00,74 Willow St, Austin,TX,73301 +153576,Lightning Charging Cable,2,14.95,2019-02-21 10:40:00,706 5th St, Portland,OR,97035 +153577,34in Ultrawide Monitor,1,379.99,2019-02-21 10:51:00,425 Spruce St, Dallas,TX,75001 +153578,Lightning Charging Cable,1,14.95,2019-02-06 13:53:00,555 North St, Boston,MA,02215 +153579,AAA Batteries (4-pack),1,2.99,2019-02-12 10:10:00,310 Willow St, Boston,MA,02215 +153580,USB-C Charging Cable,1,11.95,2019-02-03 16:53:00,149 Forest St, Atlanta,GA,30301 +153581,AAA Batteries (4-pack),1,2.99,2019-02-19 10:53:00,882 Lakeview St, Los Angeles,CA,90001 +153582,27in FHD Monitor,1,149.99,2019-02-07 12:14:00,156 2nd St, Austin,TX,73301 +153582,Wired Headphones,2,11.99,2019-02-07 12:14:00,156 2nd St, Austin,TX,73301 +153583,Apple Airpods Headphones,1,150.0,2019-02-24 21:46:00,800 Dogwood St, San Francisco,CA,94016 +153584,Bose SoundSport Headphones,1,99.99,2019-02-09 14:20:00,45 Sunset St, Portland,OR,97035 +153585,Lightning Charging Cable,1,14.95,2019-02-06 15:24:00,970 River St, Los Angeles,CA,90001 +153586,AA Batteries (4-pack),1,3.84,2019-02-16 19:14:00,305 Pine St, Los Angeles,CA,90001 +153587,USB-C Charging Cable,1,11.95,2019-02-17 03:22:00,472 North St, Portland,OR,97035 +153588,Bose SoundSport Headphones,1,99.99,2019-02-04 17:57:00,341 Church St, Los Angeles,CA,90001 +153589,Apple Airpods Headphones,1,150.0,2019-02-09 19:41:00,695 Jackson St, Seattle,WA,98101 +153590,AA Batteries (4-pack),2,3.84,2019-02-08 19:30:00,805 Ridge St, Boston,MA,02215 +153591,Bose SoundSport Headphones,1,99.99,2019-02-01 09:37:00,714 Adams St, New York City,NY,10001 +153592,USB-C Charging Cable,1,11.95,2019-02-15 13:29:00,655 Church St, New York City,NY,10001 +153593,AAA Batteries (4-pack),1,2.99,2019-02-06 10:16:00,979 Hickory St, Atlanta,GA,30301 +153594,Lightning Charging Cable,1,14.95,2019-02-02 11:29:00,31 Hickory St, San Francisco,CA,94016 +153595,iPhone,1,700.0,2019-02-13 19:36:00,318 Lakeview St, Atlanta,GA,30301 +153596,Lightning Charging Cable,1,14.95,2019-02-02 17:53:00,519 Johnson St, San Francisco,CA,94016 +153597,Apple Airpods Headphones,1,150.0,2019-02-07 22:01:00,134 2nd St, Seattle,WA,98101 +153598,AA Batteries (4-pack),3,3.84,2019-02-02 23:12:00,600 Dogwood St, New York City,NY,10001 +153599,Macbook Pro Laptop,1,1700.0,2019-02-04 09:03:00,25 West St, Portland,OR,97035 +153600,27in FHD Monitor,1,149.99,2019-02-02 10:36:00,730 5th St, Boston,MA,02215 +153601,Bose SoundSport Headphones,2,99.99,2019-02-04 20:55:00,868 North St, New York City,NY,10001 +153602,Flatscreen TV,1,300.0,2019-02-13 07:29:00,975 9th St, New York City,NY,10001 +153603,USB-C Charging Cable,1,11.95,2019-02-10 18:34:00,861 11th St, Los Angeles,CA,90001 +153604,Lightning Charging Cable,1,14.95,2019-02-26 10:28:00,168 Wilson St, Austin,TX,73301 +153605,iPhone,1,700.0,2019-02-09 20:27:00,195 8th St, Boston,MA,02215 +153606,iPhone,1,700.0,2019-02-12 16:42:00,861 11th St, San Francisco,CA,94016 +153607,ThinkPad Laptop,1,999.99,2019-02-07 23:07:00,881 Adams St, San Francisco,CA,94016 +153608,Macbook Pro Laptop,1,1700.0,2019-02-25 11:25:00,396 12th St, Seattle,WA,98101 +153609,AA Batteries (4-pack),1,3.84,2019-02-05 23:25:00,845 14th St, San Francisco,CA,94016 +153610,AAA Batteries (4-pack),1,2.99,2019-02-19 20:18:00,754 10th St, Dallas,TX,75001 +153611,Lightning Charging Cable,1,14.95,2019-02-04 11:49:00,389 Wilson St, San Francisco,CA,94016 +153612,AAA Batteries (4-pack),1,2.99,2019-02-12 23:12:00,963 Lincoln St, Portland,OR,97035 +153613,Google Phone,1,600.0,2019-02-20 17:31:00,29 Forest St, Los Angeles,CA,90001 +153613,USB-C Charging Cable,1,11.95,2019-02-20 17:31:00,29 Forest St, Los Angeles,CA,90001 +153614,AAA Batteries (4-pack),1,2.99,2019-02-10 19:42:00,315 9th St, New York City,NY,10001 +153615,Lightning Charging Cable,1,14.95,2019-02-12 18:27:00,251 Main St, San Francisco,CA,94016 +153616,20in Monitor,1,109.99,2019-02-09 19:36:00,801 Madison St, Seattle,WA,98101 +153617,USB-C Charging Cable,1,11.95,2019-02-21 09:26:00,541 Ridge St, New York City,NY,10001 +153618,Bose SoundSport Headphones,1,99.99,2019-02-24 13:10:00,578 Hill St, San Francisco,CA,94016 +153619,USB-C Charging Cable,1,11.95,2019-02-05 21:26:00,454 Spruce St, New York City,NY,10001 +153620,Wired Headphones,1,11.99,2019-02-17 17:23:00,498 1st St, Austin,TX,73301 +153621,Lightning Charging Cable,1,14.95,2019-02-24 11:26:00,248 10th St, New York City,NY,10001 +153622,AA Batteries (4-pack),1,3.84,2019-02-24 14:39:00,526 Lake St, Portland,OR,97035 +153623,Apple Airpods Headphones,1,150.0,2019-02-25 13:44:00,677 Center St, Dallas,TX,75001 +153624,Flatscreen TV,1,300.0,2019-02-13 13:22:00,346 Lincoln St, Dallas,TX,75001 +153625,AA Batteries (4-pack),1,3.84,2019-02-26 16:13:00,987 Meadow St, San Francisco,CA,94016 +153626,Wired Headphones,1,11.99,2019-02-01 14:52:00,567 Pine St, Seattle,WA,98101 +153627,Bose SoundSport Headphones,1,99.99,2019-02-09 14:16:00,955 Willow St, Los Angeles,CA,90001 +153628,USB-C Charging Cable,2,11.95,2019-02-13 14:02:00,431 Wilson St, Seattle,WA,98101 +153629,Apple Airpods Headphones,1,150.0,2019-02-03 08:40:00,856 Ridge St, Seattle,WA,98101 +153630,USB-C Charging Cable,2,11.95,2019-02-03 13:48:00,434 Highland St, Boston,MA,02215 +153631,AAA Batteries (4-pack),3,2.99,2019-02-17 23:17:00,520 Ridge St, San Francisco,CA,94016 +153632,iPhone,1,700.0,2019-02-17 18:42:00,170 Cedar St, Atlanta,GA,30301 +153633,Google Phone,1,600.0,2019-02-16 02:18:00,750 Center St, Boston,MA,02215 +153634,34in Ultrawide Monitor,1,379.99,2019-02-13 08:40:00,250 Jackson St, Seattle,WA,98101 +153635,Wired Headphones,1,11.99,2019-02-26 20:01:00,930 8th St, San Francisco,CA,94016 +153636,USB-C Charging Cable,1,11.95,2019-02-07 13:44:00,330 Meadow St, New York City,NY,10001 +153637,27in 4K Gaming Monitor,1,389.99,2019-02-11 11:50:00,263 Elm St, Seattle,WA,98101 +153638,Lightning Charging Cable,1,14.95,2019-02-03 22:36:00,393 Hill St, Los Angeles,CA,90001 +153639,AA Batteries (4-pack),1,3.84,2019-02-13 20:51:00,882 2nd St, Atlanta,GA,30301 +153640,AAA Batteries (4-pack),3,2.99,2019-02-26 08:53:00,673 Johnson St, Dallas,TX,75001 +153641,Google Phone,1,600.0,2019-02-05 08:35:00,282 Jefferson St, San Francisco,CA,94016 +153642,Lightning Charging Cable,1,14.95,2019-02-07 12:12:00,878 Pine St, Boston,MA,02215 +153643,Apple Airpods Headphones,1,150.0,2019-02-20 20:09:00,244 Cherry St, Los Angeles,CA,90001 +153643,Wired Headphones,1,11.99,2019-02-20 20:09:00,244 Cherry St, Los Angeles,CA,90001 +153644,Lightning Charging Cable,1,14.95,2019-02-03 17:46:00,636 Walnut St, Atlanta,GA,30301 +153645,27in FHD Monitor,1,149.99,2019-02-26 00:07:00,730 Walnut St, Los Angeles,CA,90001 +153646,USB-C Charging Cable,1,11.95,2019-02-10 12:50:00,921 Highland St, Boston,MA,02215 +153647,USB-C Charging Cable,1,11.95,2019-02-06 15:20:00,432 Willow St, Dallas,TX,75001 +153648,USB-C Charging Cable,1,11.95,2019-02-09 16:03:00,805 Jackson St, San Francisco,CA,94016 +153649,Apple Airpods Headphones,1,150.0,2019-02-01 12:48:00,108 12th St, Los Angeles,CA,90001 +153650,Google Phone,1,600.0,2019-02-06 13:06:00,969 Washington St, Seattle,WA,98101 +153650,USB-C Charging Cable,1,11.95,2019-02-06 13:06:00,969 Washington St, Seattle,WA,98101 +153651,27in FHD Monitor,1,149.99,2019-02-22 18:11:00,740 Lake St, Portland,OR,97035 +153652,LG Dryer,1,600.0,2019-02-15 19:53:00,362 Elm St, New York City,NY,10001 +153653,Lightning Charging Cable,1,14.95,2019-02-27 11:22:00,298 North St, Boston,MA,02215 +153654,Wired Headphones,1,11.99,2019-02-17 14:57:00,181 1st St, Los Angeles,CA,90001 +153655,USB-C Charging Cable,1,11.95,2019-02-08 11:58:00,788 9th St, Los Angeles,CA,90001 +153656,USB-C Charging Cable,1,11.95,2019-02-12 20:54:00,68 Elm St, New York City,NY,10001 +153657,ThinkPad Laptop,1,999.99,2019-02-11 19:41:00,451 Elm St, San Francisco,CA,94016 +153658,34in Ultrawide Monitor,1,379.99,2019-02-03 18:30:00,610 Highland St, New York City,NY,10001 +153659,34in Ultrawide Monitor,1,379.99,2019-02-19 15:18:00,284 4th St, Los Angeles,CA,90001 +153660,Bose SoundSport Headphones,1,99.99,2019-02-21 22:24:00,948 Hickory St, Dallas,TX,75001 +153661,20in Monitor,1,109.99,2019-02-17 23:56:00,34 Hickory St, Los Angeles,CA,90001 +153662,Lightning Charging Cable,1,14.95,2019-02-05 22:00:00,387 Church St, Boston,MA,02215 +153663,AA Batteries (4-pack),1,3.84,2019-02-25 16:01:00,186 Cedar St, Los Angeles,CA,90001 +153664,Flatscreen TV,1,300.0,2019-02-28 22:07:00,114 4th St, San Francisco,CA,94016 +153665,Bose SoundSport Headphones,1,99.99,2019-02-08 21:31:00,560 14th St, New York City,NY,10001 +153666,AAA Batteries (4-pack),1,2.99,2019-02-16 21:03:00,588 Church St, Portland,OR,97035 +153667,Macbook Pro Laptop,1,1700.0,2019-02-11 20:44:00,677 Spruce St, Austin,TX,73301 +153668,Lightning Charging Cable,1,14.95,2019-02-27 07:59:00,262 13th St, Boston,MA,02215 +153669,Wired Headphones,1,11.99,2019-02-27 14:22:00,731 13th St, San Francisco,CA,94016 +153670,AA Batteries (4-pack),2,3.84,2019-02-12 22:25:00,939 Lakeview St, San Francisco,CA,94016 +153671,AAA Batteries (4-pack),1,2.99,2019-02-05 05:31:00,437 Meadow St, San Francisco,CA,94016 +153672,AA Batteries (4-pack),1,3.84,2019-02-09 20:15:00,132 8th St, Los Angeles,CA,90001 +153673,AAA Batteries (4-pack),1,2.99,2019-02-09 20:52:00,874 7th St, Seattle,WA,98101 +153674,USB-C Charging Cable,1,11.95,2019-02-08 12:42:00,83 13th St, Atlanta,GA,30301 +153675,AA Batteries (4-pack),1,3.84,2019-02-20 20:03:00,706 Highland St, Portland,OR,97035 +153676,Apple Airpods Headphones,1,150.0,2019-02-03 22:00:00,882 Maple St, Los Angeles,CA,90001 +153677,34in Ultrawide Monitor,1,379.99,2019-02-21 09:00:00,962 Elm St, Los Angeles,CA,90001 +153678,AA Batteries (4-pack),1,3.84,2019-02-02 15:09:00,442 Washington St, San Francisco,CA,94016 +153679,Lightning Charging Cable,2,14.95,2019-02-27 14:06:00,420 Johnson St, Austin,TX,73301 +153680,Wired Headphones,1,11.99,2019-02-13 20:03:00,374 Cherry St, Boston,MA,02215 +153681,Lightning Charging Cable,1,14.95,2019-02-19 13:04:00,204 Lake St, Dallas,TX,75001 +153682,27in FHD Monitor,1,149.99,2019-02-28 08:10:00,471 Meadow St, Dallas,TX,75001 +153683,Apple Airpods Headphones,1,150.0,2019-02-12 20:55:00,582 11th St, Portland,OR,97035 +153684,AA Batteries (4-pack),2,3.84,2019-02-07 22:52:00,788 Willow St, Los Angeles,CA,90001 +153685,AA Batteries (4-pack),1,3.84,2019-02-10 00:12:00,148 7th St, Los Angeles,CA,90001 +153686,AA Batteries (4-pack),1,3.84,2019-02-10 05:26:00,78 Walnut St, Los Angeles,CA,90001 +153687,Bose SoundSport Headphones,1,99.99,2019-02-27 22:50:00,756 1st St, Seattle,WA,98101 +153688,Apple Airpods Headphones,1,150.0,2019-02-13 14:29:00,356 Meadow St, Portland,OR,97035 +153689,Lightning Charging Cable,1,14.95,2019-02-05 21:34:00,745 Maple St, San Francisco,CA,94016 +153690,Bose SoundSport Headphones,1,99.99,2019-02-06 13:25:00,862 Park St, San Francisco,CA,94016 +153691,USB-C Charging Cable,1,11.95,2019-02-06 22:25:00,211 11th St, San Francisco,CA,94016 +153692,iPhone,1,700.0,2019-02-17 19:00:00,708 Highland St, Dallas,TX,75001 +153692,Apple Airpods Headphones,1,150.0,2019-02-17 19:00:00,708 Highland St, Dallas,TX,75001 +153693,AAA Batteries (4-pack),1,2.99,2019-02-11 21:45:00,940 14th St, Los Angeles,CA,90001 +153694,USB-C Charging Cable,1,11.95,2019-02-14 09:26:00,231 10th St, Atlanta,GA,30301 +153695,Apple Airpods Headphones,1,150.0,2019-02-23 14:09:00,622 Chestnut St, Dallas,TX,75001 +153696,20in Monitor,1,109.99,2019-02-09 20:42:00,524 Forest St, Portland,OR,97035 +153697,AAA Batteries (4-pack),1,2.99,2019-02-04 16:02:00,622 Jackson St, Portland,OR,97035 +153698,Flatscreen TV,1,300.0,2019-02-10 17:52:00,69 Cedar St, Seattle,WA,98101 +153699,ThinkPad Laptop,1,999.99,2019-02-17 20:34:00,672 Sunset St, San Francisco,CA,94016 +153700,34in Ultrawide Monitor,1,379.99,2019-02-04 10:37:00,490 Hickory St, San Francisco,CA,94016 +153701,USB-C Charging Cable,1,11.95,2019-02-13 20:15:00,269 River St, New York City,NY,10001 +153702,ThinkPad Laptop,1,999.99,2019-02-23 09:22:00,133 Washington St, Atlanta,GA,30301 +153703,Lightning Charging Cable,1,14.95,2019-02-20 11:58:00,717 Walnut St, Portland,ME,04101 +153704,20in Monitor,1,109.99,2019-02-24 17:37:00,747 2nd St, San Francisco,CA,94016 +153705,AAA Batteries (4-pack),1,2.99,2019-02-17 17:31:00,512 Chestnut St, Los Angeles,CA,90001 +153706,Bose SoundSport Headphones,1,99.99,2019-02-10 18:30:00,857 Johnson St, Austin,TX,73301 +153707,AA Batteries (4-pack),1,3.84,2019-02-15 09:49:00,568 Madison St, Los Angeles,CA,90001 +153708,iPhone,1,700.0,2019-02-26 17:23:00,440 13th St, Atlanta,GA,30301 +153709,Lightning Charging Cable,1,14.95,2019-02-05 19:19:00,172 Madison St, Seattle,WA,98101 +153710,AA Batteries (4-pack),2,3.84,2019-02-13 15:10:00,979 Johnson St, Dallas,TX,75001 +153711,USB-C Charging Cable,1,11.95,2019-02-03 08:58:00,910 10th St, Atlanta,GA,30301 +153712,Apple Airpods Headphones,1,150.0,2019-02-28 17:48:00,895 Cherry St, San Francisco,CA,94016 +153713,Flatscreen TV,1,300.0,2019-02-24 23:31:00,463 Cherry St, Dallas,TX,75001 +153714,USB-C Charging Cable,1,11.95,2019-02-26 23:04:00,550 2nd St, San Francisco,CA,94016 +153715,34in Ultrawide Monitor,1,379.99,2019-02-24 12:12:00,285 Maple St, New York City,NY,10001 +153716,AA Batteries (4-pack),1,3.84,2019-02-22 15:54:00,477 Pine St, Los Angeles,CA,90001 +153717,Lightning Charging Cable,1,14.95,2019-02-19 13:36:00,360 Spruce St, Austin,TX,73301 +153718,Google Phone,1,600.0,2019-02-11 21:32:00,195 12th St, Dallas,TX,75001 +153719,34in Ultrawide Monitor,1,379.99,2019-02-07 01:11:00,640 Pine St, San Francisco,CA,94016 +153720,Apple Airpods Headphones,1,150.0,2019-02-23 19:16:00,937 Pine St, Los Angeles,CA,90001 +153721,Bose SoundSport Headphones,1,99.99,2019-02-10 20:32:00,675 10th St, Portland,OR,97035 +153722,AAA Batteries (4-pack),1,2.99,2019-02-07 18:55:00,641 Willow St, San Francisco,CA,94016 +153723,AAA Batteries (4-pack),1,2.99,2019-02-09 08:06:00,242 North St, San Francisco,CA,94016 +153724,Lightning Charging Cable,1,14.95,2019-02-26 10:49:00,658 8th St, Dallas,TX,75001 +153725,27in 4K Gaming Monitor,1,389.99,2019-02-17 15:21:00,376 1st St, Atlanta,GA,30301 +153726,Bose SoundSport Headphones,1,99.99,2019-02-03 13:45:00,759 North St, Austin,TX,73301 +153727,Wired Headphones,1,11.99,2019-02-05 16:42:00,110 Ridge St, Austin,TX,73301 +153728,Lightning Charging Cable,1,14.95,2019-02-20 19:10:00,828 Forest St, Los Angeles,CA,90001 +153729,USB-C Charging Cable,2,11.95,2019-02-16 11:58:00,633 11th St, San Francisco,CA,94016 +153730,Wired Headphones,1,11.99,2019-02-23 16:27:00,642 Ridge St, Atlanta,GA,30301 +153731,Apple Airpods Headphones,1,150.0,2019-02-18 11:20:00,975 Church St, Los Angeles,CA,90001 +153732,Wired Headphones,1,11.99,2019-02-14 11:21:00,356 8th St, San Francisco,CA,94016 +153733,Apple Airpods Headphones,1,150.0,2019-02-11 16:01:00,378 7th St, Portland,OR,97035 +153734,Macbook Pro Laptop,1,1700.0,2019-02-08 19:36:00,755 6th St, Portland,OR,97035 +153735,USB-C Charging Cable,1,11.95,2019-02-11 05:00:00,349 Dogwood St, Los Angeles,CA,90001 +153736,27in 4K Gaming Monitor,1,389.99,2019-02-07 17:42:00,846 Church St, Los Angeles,CA,90001 +153737,Apple Airpods Headphones,1,150.0,2019-02-20 16:28:00,951 Washington St, San Francisco,CA,94016 +153738,USB-C Charging Cable,1,11.95,2019-02-01 09:44:00,891 Wilson St, Los Angeles,CA,90001 +153739,AA Batteries (4-pack),1,3.84,2019-02-03 14:37:00,276 Hickory St, Seattle,WA,98101 +153740,USB-C Charging Cable,1,11.95,2019-02-13 22:57:00,782 9th St, Dallas,TX,75001 +153741,USB-C Charging Cable,1,11.95,2019-02-19 13:22:00,616 Park St, Los Angeles,CA,90001 +153742,iPhone,1,700.0,2019-02-02 20:10:00,964 Forest St, Atlanta,GA,30301 +153743,Wired Headphones,1,11.99,2019-02-22 09:37:00,709 Main St, Atlanta,GA,30301 +153744,Apple Airpods Headphones,1,150.0,2019-02-16 21:16:00,495 Hill St, Austin,TX,73301 +153745,Wired Headphones,1,11.99,2019-02-16 12:04:00,436 Jackson St, Austin,TX,73301 +153746,AA Batteries (4-pack),2,3.84,2019-02-12 13:16:00,936 9th St, San Francisco,CA,94016 +153747,AAA Batteries (4-pack),1,2.99,2019-02-06 05:53:00,8 11th St, Atlanta,GA,30301 +153748,Bose SoundSport Headphones,1,99.99,2019-02-15 06:44:00,684 Pine St, Austin,TX,73301 +153748,USB-C Charging Cable,1,11.95,2019-02-15 06:44:00,684 Pine St, Austin,TX,73301 +153749,AA Batteries (4-pack),4,3.84,2019-02-03 17:48:00,222 Hill St, San Francisco,CA,94016 +153750,USB-C Charging Cable,1,11.95,2019-02-24 19:21:00,841 5th St, Atlanta,GA,30301 +153751,AAA Batteries (4-pack),2,2.99,2019-02-20 13:29:00,662 Lincoln St, Dallas,TX,75001 +153752,AA Batteries (4-pack),1,3.84,2019-02-08 16:12:00,20 1st St, Los Angeles,CA,90001 +153753,AAA Batteries (4-pack),2,2.99,2019-02-20 18:16:00,789 Church St, Portland,OR,97035 +153754,AA Batteries (4-pack),1,3.84,2019-02-26 23:03:00,346 Center St, Portland,ME,04101 +153755,AAA Batteries (4-pack),1,2.99,2019-02-20 09:41:00,51 11th St, Boston,MA,02215 +153756,27in FHD Monitor,1,149.99,2019-02-20 13:11:00,25 13th St, San Francisco,CA,94016 +153757,27in 4K Gaming Monitor,1,389.99,2019-02-06 01:34:00,433 1st St, San Francisco,CA,94016 +153758,AA Batteries (4-pack),1,3.84,2019-02-08 21:45:00,792 Johnson St, San Francisco,CA,94016 +153759,Flatscreen TV,1,300.0,2019-02-08 23:43:00,893 11th St, New York City,NY,10001 +153760,iPhone,1,700.0,2019-02-28 03:03:00,958 River St, Dallas,TX,75001 +153760,Wired Headphones,1,11.99,2019-02-28 03:03:00,958 River St, Dallas,TX,75001 +153761,34in Ultrawide Monitor,1,379.99,2019-02-09 02:13:00,492 West St, Atlanta,GA,30301 +153762,AA Batteries (4-pack),1,3.84,2019-02-25 15:29:00,556 Willow St, San Francisco,CA,94016 +153763,Wired Headphones,1,11.99,2019-02-20 18:59:00,403 River St, Boston,MA,02215 +153764,Lightning Charging Cable,1,14.95,2019-02-09 11:03:00,215 9th St, San Francisco,CA,94016 +153765,27in FHD Monitor,1,149.99,2019-02-13 12:13:00,78 1st St, Los Angeles,CA,90001 +153766,Google Phone,1,600.0,2019-02-13 23:05:00,681 13th St, San Francisco,CA,94016 +153767,USB-C Charging Cable,1,11.95,2019-02-09 17:31:00,157 9th St, San Francisco,CA,94016 +153768,AA Batteries (4-pack),1,3.84,2019-02-24 21:22:00,682 Maple St, Atlanta,GA,30301 +153769,27in 4K Gaming Monitor,1,389.99,2019-02-15 21:40:00,748 8th St, New York City,NY,10001 +153770,AAA Batteries (4-pack),1,2.99,2019-02-19 08:32:00,438 Hill St, San Francisco,CA,94016 +153771,Apple Airpods Headphones,1,150.0,2019-02-25 18:24:00,831 Spruce St, Boston,MA,02215 +153772,Macbook Pro Laptop,1,1700.0,2019-02-06 00:03:00,104 Meadow St, San Francisco,CA,94016 +153773,27in 4K Gaming Monitor,1,389.99,2019-02-28 10:09:00,568 11th St, San Francisco,CA,94016 +153774,Lightning Charging Cable,1,14.95,2019-02-09 11:08:00,976 1st St, Los Angeles,CA,90001 +153775,AA Batteries (4-pack),1,3.84,2019-02-13 03:35:00,30 Adams St, San Francisco,CA,94016 +153776,Vareebadd Phone,1,400.0,2019-02-08 22:58:00,102 South St, Los Angeles,CA,90001 +153777,Lightning Charging Cable,1,14.95,2019-02-19 12:21:00,167 Hill St, Los Angeles,CA,90001 +153778,Apple Airpods Headphones,1,150.0,2019-02-03 15:05:00,752 Elm St, San Francisco,CA,94016 +153779,Apple Airpods Headphones,1,150.0,2019-02-06 21:41:00,4 Church St, Los Angeles,CA,90001 +153780,ThinkPad Laptop,1,999.99,2019-02-13 14:50:00,600 Highland St, San Francisco,CA,94016 +153781,Wired Headphones,2,11.99,2019-02-12 09:41:00,576 Adams St, San Francisco,CA,94016 +153782,Wired Headphones,1,11.99,2019-02-20 20:51:00,392 Center St, Los Angeles,CA,90001 +153783,Vareebadd Phone,1,400.0,2019-02-01 20:53:00,929 Wilson St, San Francisco,CA,94016 +153784,USB-C Charging Cable,1,11.95,2019-02-01 12:13:00,367 Jackson St, New York City,NY,10001 +153785,20in Monitor,1,109.99,2019-02-13 18:37:00,271 Lake St, Portland,ME,04101 +153786,AA Batteries (4-pack),1,3.84,2019-02-02 13:47:00,658 North St, San Francisco,CA,94016 +153787,USB-C Charging Cable,1,11.95,2019-02-23 19:49:00,160 Lakeview St, Los Angeles,CA,90001 +153788,Lightning Charging Cable,1,14.95,2019-02-08 21:16:00,558 2nd St, Portland,OR,97035 +153789,Lightning Charging Cable,2,14.95,2019-02-27 13:38:00,303 Lakeview St, Dallas,TX,75001 +153790,27in 4K Gaming Monitor,1,389.99,2019-02-21 15:52:00,157 Jefferson St, San Francisco,CA,94016 +153791,AAA Batteries (4-pack),1,2.99,2019-02-12 20:19:00,163 Ridge St, San Francisco,CA,94016 +153792,Bose SoundSport Headphones,1,99.99,2019-02-11 22:22:00,493 9th St, San Francisco,CA,94016 +153793,USB-C Charging Cable,1,11.95,2019-02-06 07:43:00,417 Lake St, New York City,NY,10001 +153794,AAA Batteries (4-pack),3,2.99,2019-02-25 02:58:00,677 Highland St, San Francisco,CA,94016 +153795,Lightning Charging Cable,1,14.95,2019-02-20 21:52:00,628 Pine St, Atlanta,GA,30301 +153796,ThinkPad Laptop,1,999.99,2019-02-12 15:10:00,140 Meadow St, Portland,OR,97035 +153797,AAA Batteries (4-pack),1,2.99,2019-02-22 15:33:00,217 Hill St, Atlanta,GA,30301 +153798,Macbook Pro Laptop,1,1700.0,2019-02-28 08:55:00,256 8th St, San Francisco,CA,94016 +153799,USB-C Charging Cable,1,11.95,2019-02-12 20:46:00,589 Park St, Austin,TX,73301 +153800,AA Batteries (4-pack),1,3.84,2019-02-23 19:04:00,947 Sunset St, Los Angeles,CA,90001 +153801,AAA Batteries (4-pack),1,2.99,2019-02-27 16:16:00,766 Meadow St, Boston,MA,02215 +153802,Lightning Charging Cable,1,14.95,2019-02-08 18:07:00,748 Lakeview St, New York City,NY,10001 +153803,34in Ultrawide Monitor,1,379.99,2019-02-21 21:47:00,195 12th St, Dallas,TX,75001 +153804,34in Ultrawide Monitor,1,379.99,2019-02-25 23:13:00,268 Hill St, San Francisco,CA,94016 +153805,34in Ultrawide Monitor,1,379.99,2019-02-26 14:24:00,943 Washington St, Seattle,WA,98101 +153806,AA Batteries (4-pack),1,3.84,2019-02-20 11:33:00,199 5th St, Atlanta,GA,30301 +153807,27in 4K Gaming Monitor,1,389.99,2019-02-21 20:45:00,729 14th St, San Francisco,CA,94016 +153808,Bose SoundSport Headphones,1,99.99,2019-02-17 15:59:00,280 12th St, Austin,TX,73301 +153809,Lightning Charging Cable,1,14.95,2019-02-14 15:15:00,678 13th St, Boston,MA,02215 +153810,Apple Airpods Headphones,1,150.0,2019-02-06 20:06:00,475 Walnut St, Boston,MA,02215 +153811,USB-C Charging Cable,1,11.95,2019-02-24 17:39:00,524 Cedar St, Atlanta,GA,30301 +153812,ThinkPad Laptop,1,999.99,2019-02-08 19:11:00,653 Johnson St, San Francisco,CA,94016 +153813,USB-C Charging Cable,1,11.95,2019-02-11 18:43:00,534 Walnut St, San Francisco,CA,94016 +153814,Apple Airpods Headphones,1,150.0,2019-02-04 00:15:00,242 Cedar St, New York City,NY,10001 +153814,AAA Batteries (4-pack),1,2.99,2019-02-04 00:15:00,242 Cedar St, New York City,NY,10001 +153815,Apple Airpods Headphones,1,150.0,2019-02-14 20:05:00,662 14th St, Boston,MA,02215 +153816,AA Batteries (4-pack),1,3.84,2019-02-12 13:47:00,961 Dogwood St, New York City,NY,10001 +153817,AA Batteries (4-pack),1,3.84,2019-02-12 16:41:00,872 Chestnut St, San Francisco,CA,94016 +153818,Wired Headphones,1,11.99,2019-02-11 14:46:00,38 South St, San Francisco,CA,94016 +153819,AAA Batteries (4-pack),1,2.99,2019-02-15 13:26:00,601 West St, San Francisco,CA,94016 +153820,AA Batteries (4-pack),2,3.84,2019-02-08 10:34:00,759 Lincoln St, Dallas,TX,75001 +153821,Lightning Charging Cable,1,14.95,2019-02-18 11:53:00,449 Spruce St, New York City,NY,10001 +153822,AA Batteries (4-pack),1,3.84,2019-02-10 14:09:00,348 Forest St, San Francisco,CA,94016 +153823,AA Batteries (4-pack),2,3.84,2019-02-16 15:33:00,289 4th St, New York City,NY,10001 +153824,Lightning Charging Cable,1,14.95,2019-02-21 15:44:00,306 Maple St, Austin,TX,73301 +153825,20in Monitor,1,109.99,2019-02-12 14:41:00,405 Adams St, New York City,NY,10001 +153826,Apple Airpods Headphones,1,150.0,2019-02-09 10:52:00,917 Dogwood St, Los Angeles,CA,90001 +153827,USB-C Charging Cable,1,11.95,2019-02-02 12:56:00,23 10th St, New York City,NY,10001 +153828,AA Batteries (4-pack),1,3.84,2019-02-22 07:54:00,693 Highland St, New York City,NY,10001 +153829,Bose SoundSport Headphones,1,99.99,2019-02-26 11:30:00,463 Adams St, Los Angeles,CA,90001 +153830,iPhone,1,700.0,2019-02-08 20:21:00,713 6th St, San Francisco,CA,94016 +153831,Lightning Charging Cable,1,14.95,2019-02-19 09:39:00,819 11th St, Los Angeles,CA,90001 +153832,iPhone,1,700.0,2019-02-03 13:19:00,229 Pine St, Boston,MA,02215 +153833,27in FHD Monitor,1,149.99,2019-02-23 19:34:00,296 Main St, Boston,MA,02215 +153834,Lightning Charging Cable,1,14.95,2019-02-08 05:36:00,366 Forest St, San Francisco,CA,94016 +153835,AA Batteries (4-pack),1,3.84,2019-02-20 20:23:00,1 West St, Portland,OR,97035 +153836,AA Batteries (4-pack),2,3.84,2019-02-25 17:38:00,166 Center St, San Francisco,CA,94016 +153837,AA Batteries (4-pack),1,3.84,2019-02-15 13:17:00,59 Dogwood St, Los Angeles,CA,90001 +153838,27in FHD Monitor,1,149.99,2019-02-18 17:00:00,550 Sunset St, New York City,NY,10001 +153839,USB-C Charging Cable,1,11.95,2019-02-19 18:44:00,882 10th St, Seattle,WA,98101 +153840,20in Monitor,1,109.99,2019-02-21 07:40:00,535 12th St, New York City,NY,10001 +153841,Bose SoundSport Headphones,1,99.99,2019-02-22 13:09:00,99 Willow St, Portland,OR,97035 +153842,AAA Batteries (4-pack),1,2.99,2019-02-05 22:29:00,339 Hill St, New York City,NY,10001 +153843,Lightning Charging Cable,1,14.95,2019-02-15 19:41:00,805 Center St, Atlanta,GA,30301 +153844,AAA Batteries (4-pack),1,2.99,2019-02-18 19:03:00,329 Adams St, Dallas,TX,75001 +153845,27in 4K Gaming Monitor,1,389.99,2019-02-23 12:52:00,933 6th St, New York City,NY,10001 +153846,Wired Headphones,1,11.99,2019-02-02 21:23:00,444 Johnson St, Los Angeles,CA,90001 +153846,Lightning Charging Cable,1,14.95,2019-02-02 21:23:00,444 Johnson St, Los Angeles,CA,90001 +153847,Lightning Charging Cable,1,14.95,2019-02-20 21:26:00,860 Sunset St, Dallas,TX,75001 +153848,AA Batteries (4-pack),1,3.84,2019-02-16 19:20:00,693 Park St, Atlanta,GA,30301 +153849,Apple Airpods Headphones,1,150.0,2019-02-22 11:05:00,823 1st St, San Francisco,CA,94016 +153850,Apple Airpods Headphones,1,150.0,2019-02-10 13:22:00,403 11th St, Los Angeles,CA,90001 +153850,Lightning Charging Cable,1,14.95,2019-02-10 13:22:00,403 11th St, Los Angeles,CA,90001 +153851,Lightning Charging Cable,1,14.95,2019-02-03 12:30:00,680 Lincoln St, San Francisco,CA,94016 +153852,27in FHD Monitor,1,149.99,2019-02-07 19:01:00,177 Jackson St, New York City,NY,10001 +153853,27in 4K Gaming Monitor,1,389.99,2019-02-03 21:47:00,840 Main St, Atlanta,GA,30301 +153854,USB-C Charging Cable,1,11.95,2019-02-24 19:54:00,739 Lake St, Boston,MA,02215 +153855,34in Ultrawide Monitor,1,379.99,2019-02-12 17:12:00,852 Dogwood St, Boston,MA,02215 +153856,27in FHD Monitor,1,149.99,2019-02-18 10:58:00,192 Park St, New York City,NY,10001 +153857,Bose SoundSport Headphones,1,99.99,2019-02-21 12:30:00,523 14th St, Los Angeles,CA,90001 +153858,Lightning Charging Cable,1,14.95,2019-02-04 23:07:00,417 9th St, Dallas,TX,75001 +153859,27in FHD Monitor,1,149.99,2019-02-13 17:32:00,785 5th St, Portland,OR,97035 +153860,Bose SoundSport Headphones,1,99.99,2019-02-27 22:56:00,632 South St, Austin,TX,73301 +153861,iPhone,1,700.0,2019-02-13 22:09:00,342 Elm St, Boston,MA,02215 +153862,AAA Batteries (4-pack),2,2.99,2019-02-16 22:12:00,416 Lakeview St, Austin,TX,73301 +153863,AA Batteries (4-pack),1,3.84,2019-02-11 16:55:00,685 Park St, Seattle,WA,98101 +153864,Lightning Charging Cable,1,14.95,2019-02-06 22:03:00,321 Willow St, Atlanta,GA,30301 +153865,AAA Batteries (4-pack),2,2.99,2019-02-22 20:23:00,724 Hickory St, Los Angeles,CA,90001 +153866,Bose SoundSport Headphones,1,99.99,2019-02-28 21:31:00,379 Johnson St, New York City,NY,10001 +153867,AAA Batteries (4-pack),1,2.99,2019-02-25 12:20:00,262 North St, Seattle,WA,98101 +153868,Flatscreen TV,1,300.0,2019-02-07 21:21:00,73 Highland St, Boston,MA,02215 +153869,ThinkPad Laptop,1,999.99,2019-03-01 01:28:00,901 Johnson St, Boston,MA,02215 +153870,iPhone,1,700.0,2019-02-01 06:56:00,713 Sunset St, San Francisco,CA,94016 +153871,AAA Batteries (4-pack),2,2.99,2019-02-17 06:56:00,606 Cherry St, Los Angeles,CA,90001 +153872,Wired Headphones,1,11.99,2019-02-24 13:48:00,60 South St, New York City,NY,10001 +153873,USB-C Charging Cable,1,11.95,2019-02-21 15:53:00,295 Johnson St, Seattle,WA,98101 +153874,Lightning Charging Cable,1,14.95,2019-02-19 18:59:00,872 Church St, San Francisco,CA,94016 +153875,USB-C Charging Cable,1,11.95,2019-02-10 18:25:00,922 1st St, Atlanta,GA,30301 +153876,Apple Airpods Headphones,1,150.0,2019-02-11 12:37:00,610 6th St, Los Angeles,CA,90001 +153877,Apple Airpods Headphones,1,150.0,2019-02-08 21:37:00,301 Hill St, San Francisco,CA,94016 +153878,Bose SoundSport Headphones,1,99.99,2019-02-08 12:22:00,581 Lakeview St, Portland,ME,04101 +153879,27in 4K Gaming Monitor,1,389.99,2019-02-26 15:44:00,282 Chestnut St, San Francisco,CA,94016 +153880,Lightning Charging Cable,1,14.95,2019-02-25 19:21:00,334 North St, San Francisco,CA,94016 +153881,AA Batteries (4-pack),1,3.84,2019-02-16 23:39:00,422 5th St, Boston,MA,02215 +153882,Wired Headphones,1,11.99,2019-02-08 02:08:00,953 Hill St, San Francisco,CA,94016 +153883,Apple Airpods Headphones,1,150.0,2019-02-13 11:46:00,571 Hill St, Atlanta,GA,30301 +153884,27in 4K Gaming Monitor,1,389.99,2019-02-11 14:09:00,973 1st St, Atlanta,GA,30301 +153885,AAA Batteries (4-pack),1,2.99,2019-02-03 17:41:00,170 Adams St, San Francisco,CA,94016 +153886,AA Batteries (4-pack),1,3.84,2019-02-01 21:11:00,267 Madison St, Boston,MA,02215 +153887,AAA Batteries (4-pack),1,2.99,2019-02-23 21:57:00,767 1st St, Dallas,TX,75001 +153888,ThinkPad Laptop,1,999.99,2019-02-09 18:12:00,216 Park St, San Francisco,CA,94016 +153889,20in Monitor,1,109.99,2019-02-05 14:48:00,152 Jackson St, New York City,NY,10001 +153890,AAA Batteries (4-pack),2,2.99,2019-02-09 11:53:00,863 Lakeview St, Seattle,WA,98101 +153891,iPhone,1,700.0,2019-02-02 12:21:00,934 6th St, San Francisco,CA,94016 +153892,AA Batteries (4-pack),1,3.84,2019-02-26 18:48:00,61 9th St, Dallas,TX,75001 +153893,Wired Headphones,1,11.99,2019-02-16 22:26:00,359 Willow St, Los Angeles,CA,90001 +153894,USB-C Charging Cable,1,11.95,2019-02-07 14:51:00,107 Center St, San Francisco,CA,94016 +153895,AAA Batteries (4-pack),1,2.99,2019-02-15 11:26:00,307 Cherry St, Los Angeles,CA,90001 +153896,Lightning Charging Cable,1,14.95,2019-02-05 15:44:00,267 Forest St, Seattle,WA,98101 +153897,Bose SoundSport Headphones,1,99.99,2019-02-16 07:48:00,869 Sunset St, Boston,MA,02215 +153898,Flatscreen TV,1,300.0,2019-02-12 09:39:00,609 Hickory St, San Francisco,CA,94016 +153899,AA Batteries (4-pack),1,3.84,2019-02-01 10:00:00,768 South St, Boston,MA,02215 +153900,iPhone,1,700.0,2019-02-21 20:36:00,388 2nd St, San Francisco,CA,94016 +153901,AA Batteries (4-pack),1,3.84,2019-02-14 14:02:00,179 Park St, Portland,OR,97035 +153902,USB-C Charging Cable,2,11.95,2019-02-14 17:30:00,288 Meadow St, San Francisco,CA,94016 +153903,Wired Headphones,1,11.99,2019-02-28 01:04:00,487 Lincoln St, New York City,NY,10001 +153904,AA Batteries (4-pack),2,3.84,2019-02-10 17:10:00,649 Highland St, New York City,NY,10001 +153905,Lightning Charging Cable,1,14.95,2019-02-25 01:01:00,475 Hickory St, Boston,MA,02215 +153906,AAA Batteries (4-pack),1,2.99,2019-02-03 13:43:00,877 Wilson St, Boston,MA,02215 +153907,Lightning Charging Cable,1,14.95,2019-02-15 18:50:00,529 Jefferson St, San Francisco,CA,94016 +153908,AAA Batteries (4-pack),1,2.99,2019-02-22 20:07:00,915 11th St, Austin,TX,73301 +153909,USB-C Charging Cable,1,11.95,2019-02-27 14:28:00,775 Hill St, Portland,OR,97035 +153910,Apple Airpods Headphones,1,150.0,2019-02-23 18:35:00,405 7th St, Atlanta,GA,30301 +153911,Lightning Charging Cable,1,14.95,2019-02-28 10:39:00,498 2nd St, Boston,MA,02215 +153912,34in Ultrawide Monitor,1,379.99,2019-02-09 20:45:00,531 2nd St, Dallas,TX,75001 +153913,Apple Airpods Headphones,1,150.0,2019-02-20 08:17:00,416 Adams St, Dallas,TX,75001 +153914,AA Batteries (4-pack),1,3.84,2019-02-07 19:17:00,359 Elm St, Portland,OR,97035 +153915,27in FHD Monitor,1,149.99,2019-02-01 22:03:00,124 Jefferson St, New York City,NY,10001 +153916,AA Batteries (4-pack),1,3.84,2019-02-03 12:28:00,191 12th St, San Francisco,CA,94016 +153917,AAA Batteries (4-pack),1,2.99,2019-02-07 13:47:00,259 Lakeview St, San Francisco,CA,94016 +153918,USB-C Charging Cable,1,11.95,2019-02-21 06:56:00,19 Spruce St, San Francisco,CA,94016 +153919,27in FHD Monitor,1,149.99,2019-02-28 21:25:00,126 6th St, Seattle,WA,98101 +153920,USB-C Charging Cable,1,11.95,2019-02-08 11:42:00,194 Adams St, Austin,TX,73301 +153921,Apple Airpods Headphones,1,150.0,2019-02-08 23:07:00,670 North St, Los Angeles,CA,90001 +153922,Lightning Charging Cable,1,14.95,2019-02-26 12:41:00,831 Forest St, Atlanta,GA,30301 +153923,Bose SoundSport Headphones,1,99.99,2019-02-10 21:43:00,862 Adams St, San Francisco,CA,94016 +153924,USB-C Charging Cable,1,11.95,2019-02-09 07:01:00,879 Walnut St, San Francisco,CA,94016 +153925,AAA Batteries (4-pack),1,2.99,2019-02-09 10:28:00,848 4th St, Atlanta,GA,30301 +153926,34in Ultrawide Monitor,1,379.99,2019-02-06 18:13:00,587 13th St, Dallas,TX,75001 +153927,Google Phone,1,600.0,2019-02-10 09:02:00,309 Jefferson St, Portland,ME,04101 +153928,27in 4K Gaming Monitor,1,389.99,2019-02-22 18:48:00,70 Washington St, New York City,NY,10001 +153929,AAA Batteries (4-pack),1,2.99,2019-02-26 21:49:00,951 Willow St, Los Angeles,CA,90001 +153930,Apple Airpods Headphones,1,150.0,2019-02-24 21:25:00,582 Pine St, Boston,MA,02215 +153931,USB-C Charging Cable,1,11.95,2019-02-28 13:25:00,334 Lakeview St, Portland,OR,97035 +153932,Vareebadd Phone,1,400.0,2019-02-01 12:35:00,839 13th St, Boston,MA,02215 +153933,27in 4K Gaming Monitor,1,389.99,2019-02-09 07:27:00,388 Forest St, Portland,OR,97035 +153934,Wired Headphones,1,11.99,2019-02-11 16:49:00,497 7th St, San Francisco,CA,94016 +153935,AAA Batteries (4-pack),4,2.99,2019-02-09 06:39:00,152 Lincoln St, Los Angeles,CA,90001 +153936,Google Phone,1,600.0,2019-02-14 16:35:00,765 Cherry St, San Francisco,CA,94016 +153936,USB-C Charging Cable,1,11.95,2019-02-14 16:35:00,765 Cherry St, San Francisco,CA,94016 +153937,Vareebadd Phone,1,400.0,2019-02-11 08:04:00,12 Sunset St, San Francisco,CA,94016 +153938,Wired Headphones,1,11.99,2019-02-16 19:21:00,371 Cedar St, Los Angeles,CA,90001 +153939,Wired Headphones,1,11.99,2019-02-05 19:05:00,881 West St, New York City,NY,10001 +153940,USB-C Charging Cable,1,11.95,2019-02-04 00:24:00,423 South St, New York City,NY,10001 +153941,AA Batteries (4-pack),2,3.84,2019-02-01 16:56:00,951 Lakeview St, Dallas,TX,75001 +153942,USB-C Charging Cable,1,11.95,2019-02-28 10:07:00,290 9th St, Portland,OR,97035 +153943,Macbook Pro Laptop,1,1700.0,2019-02-07 06:50:00,84 Wilson St, Los Angeles,CA,90001 +153944,Flatscreen TV,1,300.0,2019-02-13 02:06:00,621 Main St, Los Angeles,CA,90001 +153945,AA Batteries (4-pack),1,3.84,2019-02-05 17:27:00,691 6th St, Los Angeles,CA,90001 +153946,Apple Airpods Headphones,1,150.0,2019-02-02 12:54:00,803 Lakeview St, Los Angeles,CA,90001 +153947,27in 4K Gaming Monitor,1,389.99,2019-02-20 22:46:00,836 Chestnut St, Portland,OR,97035 +153948,27in FHD Monitor,1,149.99,2019-02-28 10:22:00,87 Highland St, Portland,OR,97035 +153949,Macbook Pro Laptop,1,1700.0,2019-02-14 01:09:00,588 8th St, New York City,NY,10001 +153950,iPhone,1,700.0,2019-02-17 11:54:00,857 11th St, Dallas,TX,75001 +153951,Bose SoundSport Headphones,2,99.99,2019-02-02 19:26:00,419 Wilson St, Los Angeles,CA,90001 +153952,AAA Batteries (4-pack),3,2.99,2019-02-13 11:06:00,534 Willow St, New York City,NY,10001 +153953,Apple Airpods Headphones,1,150.0,2019-02-23 20:47:00,230 12th St, Austin,TX,73301 +153954,27in FHD Monitor,1,149.99,2019-02-13 10:18:00,738 Chestnut St, Dallas,TX,75001 +153955,Lightning Charging Cable,1,14.95,2019-02-23 05:01:00,730 7th St, Boston,MA,02215 +153956,Google Phone,1,600.0,2019-02-23 08:11:00,916 Lakeview St, Boston,MA,02215 +153956,USB-C Charging Cable,1,11.95,2019-02-23 08:11:00,916 Lakeview St, Boston,MA,02215 +153956,Wired Headphones,1,11.99,2019-02-23 08:11:00,916 Lakeview St, Boston,MA,02215 +153957,Lightning Charging Cable,2,14.95,2019-02-19 16:28:00,556 Park St, San Francisco,CA,94016 +153958,Wired Headphones,1,11.99,2019-02-16 09:53:00,641 Willow St, Boston,MA,02215 +153959,Lightning Charging Cable,1,14.95,2019-02-26 15:29:00,750 Jackson St, San Francisco,CA,94016 +153960,AAA Batteries (4-pack),1,2.99,2019-02-16 04:15:00,609 Madison St, San Francisco,CA,94016 +153961,Lightning Charging Cable,1,14.95,2019-02-07 02:53:00,128 River St, Dallas,TX,75001 +153962,USB-C Charging Cable,2,11.95,2019-02-14 22:25:00,524 Johnson St, Atlanta,GA,30301 +153963,Bose SoundSport Headphones,1,99.99,2019-02-15 23:32:00,713 Adams St, Boston,MA,02215 +153964,Lightning Charging Cable,1,14.95,2019-02-19 17:35:00,814 14th St, San Francisco,CA,94016 +153965,Apple Airpods Headphones,1,150.0,2019-02-10 19:33:00,963 Highland St, Austin,TX,73301 +153966,iPhone,1,700.0,2019-02-14 01:24:00,826 9th St, San Francisco,CA,94016 +153966,Wired Headphones,1,11.99,2019-02-14 01:24:00,826 9th St, San Francisco,CA,94016 +153967,iPhone,1,700.0,2019-02-05 21:59:00,148 11th St, Boston,MA,02215 +153968,AAA Batteries (4-pack),1,2.99,2019-02-11 13:41:00,926 5th St, Seattle,WA,98101 +153969,Lightning Charging Cable,1,14.95,2019-02-24 09:53:00,646 Johnson St, Los Angeles,CA,90001 +153970,AAA Batteries (4-pack),1,2.99,2019-02-16 07:40:00,443 Pine St, San Francisco,CA,94016 +153971,USB-C Charging Cable,1,11.95,2019-02-14 11:09:00,386 Maple St, New York City,NY,10001 +153972,Vareebadd Phone,1,400.0,2019-02-18 16:47:00,866 Main St, Boston,MA,02215 +153973,Apple Airpods Headphones,1,150.0,2019-02-18 20:14:00,176 7th St, Boston,MA,02215 +153974,Wired Headphones,1,11.99,2019-02-12 20:54:00,21 Willow St, San Francisco,CA,94016 +153975,AAA Batteries (4-pack),1,2.99,2019-02-20 12:21:00,215 Meadow St, Los Angeles,CA,90001 +153976,Macbook Pro Laptop,1,1700.0,2019-02-15 14:29:00,592 Hill St, Los Angeles,CA,90001 +153977,Apple Airpods Headphones,1,150.0,2019-02-17 08:08:00,149 River St, Seattle,WA,98101 +153978,AAA Batteries (4-pack),1,2.99,2019-02-11 16:56:00,615 Wilson St, New York City,NY,10001 +153979,AA Batteries (4-pack),2,3.84,2019-02-11 08:54:00,634 Washington St, Dallas,TX,75001 +153980,27in 4K Gaming Monitor,1,389.99,2019-02-28 09:13:00,797 Highland St, New York City,NY,10001 +153981,Bose SoundSport Headphones,1,99.99,2019-02-09 14:38:00,991 Lincoln St, Austin,TX,73301 +153982,iPhone,1,700.0,2019-02-23 14:46:00,837 Church St, Boston,MA,02215 +153983,AA Batteries (4-pack),1,3.84,2019-02-20 01:07:00,614 9th St, Boston,MA,02215 +153984,AA Batteries (4-pack),1,3.84,2019-02-20 08:04:00,864 Center St, New York City,NY,10001 +153985,Google Phone,1,600.0,2019-02-22 20:11:00,840 13th St, Los Angeles,CA,90001 +153986,USB-C Charging Cable,1,11.95,2019-02-11 19:27:00,432 Lincoln St, Portland,ME,04101 +153987,Apple Airpods Headphones,1,150.0,2019-02-04 16:51:00,178 Adams St, Seattle,WA,98101 +153988,Lightning Charging Cable,1,14.95,2019-02-08 12:57:00,434 Willow St, Portland,OR,97035 +153989,AA Batteries (4-pack),3,3.84,2019-02-23 23:09:00,213 Maple St, Boston,MA,02215 +153990,27in 4K Gaming Monitor,1,389.99,2019-02-20 22:41:00,471 Hickory St, Boston,MA,02215 +153991,Macbook Pro Laptop,1,1700.0,2019-02-09 16:36:00,127 Adams St, San Francisco,CA,94016 +153992,Bose SoundSport Headphones,1,99.99,2019-02-12 23:33:00,854 Wilson St, Boston,MA,02215 +153993,20in Monitor,1,109.99,2019-02-01 13:39:00,649 2nd St, San Francisco,CA,94016 +153994,Lightning Charging Cable,1,14.95,2019-02-03 16:12:00,536 Meadow St, New York City,NY,10001 +153995,USB-C Charging Cable,1,11.95,2019-02-12 11:18:00,453 Hickory St, Boston,MA,02215 +153996,Apple Airpods Headphones,1,150.0,2019-02-13 00:14:00,737 13th St, Los Angeles,CA,90001 +153997,Apple Airpods Headphones,1,150.0,2019-02-17 18:18:00,53 North St, New York City,NY,10001 +153998,27in FHD Monitor,1,149.99,2019-02-18 18:47:00,840 Meadow St, San Francisco,CA,94016 +153999,AA Batteries (4-pack),1,3.84,2019-02-24 18:59:00,783 Adams St, San Francisco,CA,94016 +154000,34in Ultrawide Monitor,1,379.99,2019-02-24 10:15:00,143 13th St, Dallas,TX,75001 +154001,USB-C Charging Cable,1,11.95,2019-02-06 13:19:00,418 South St, San Francisco,CA,94016 +154002,USB-C Charging Cable,1,11.95,2019-02-18 20:10:00,202 Elm St, Seattle,WA,98101 +154003,AA Batteries (4-pack),1,3.84,2019-02-25 17:02:00,514 4th St, Austin,TX,73301 +154004,34in Ultrawide Monitor,1,379.99,2019-02-05 04:19:00,182 Adams St, Boston,MA,02215 +154005,34in Ultrawide Monitor,1,379.99,2019-02-21 15:14:00,13 12th St, San Francisco,CA,94016 +154006,Apple Airpods Headphones,1,150.0,2019-02-12 12:02:00,793 Jefferson St, New York City,NY,10001 +154007,Lightning Charging Cable,1,14.95,2019-02-23 11:52:00,116 Cherry St, Boston,MA,02215 +154007,Google Phone,1,600.0,2019-02-23 11:52:00,116 Cherry St, Boston,MA,02215 +154008,LG Dryer,1,600.0,2019-02-04 14:46:00,635 Madison St, San Francisco,CA,94016 +154009,Wired Headphones,1,11.99,2019-02-15 07:28:00,666 South St, San Francisco,CA,94016 +154010,Apple Airpods Headphones,1,150.0,2019-02-14 17:08:00,642 Sunset St, Seattle,WA,98101 +154011,Vareebadd Phone,1,400.0,2019-02-18 16:53:00,426 West St, Boston,MA,02215 +154012,27in 4K Gaming Monitor,1,389.99,2019-02-28 09:36:00,172 Johnson St, Dallas,TX,75001 +154012,Google Phone,1,600.0,2019-02-28 09:36:00,172 Johnson St, Dallas,TX,75001 +154013,USB-C Charging Cable,1,11.95,2019-02-22 05:51:00,699 13th St, San Francisco,CA,94016 +154014,AA Batteries (4-pack),2,3.84,2019-02-07 18:30:00,721 14th St, Los Angeles,CA,90001 +154015,AA Batteries (4-pack),1,3.84,2019-02-27 11:52:00,122 5th St, Atlanta,GA,30301 +154016,ThinkPad Laptop,1,999.99,2019-02-21 17:24:00,475 Cedar St, Atlanta,GA,30301 +154017,27in 4K Gaming Monitor,1,389.99,2019-02-05 18:46:00,213 7th St, San Francisco,CA,94016 +154018,Apple Airpods Headphones,1,150.0,2019-02-21 17:54:00,768 Willow St, Austin,TX,73301 +154019,Google Phone,1,600.0,2019-02-02 18:10:00,675 1st St, Austin,TX,73301 +154019,USB-C Charging Cable,1,11.95,2019-02-02 18:10:00,675 1st St, Austin,TX,73301 +154019,Wired Headphones,1,11.99,2019-02-02 18:10:00,675 1st St, Austin,TX,73301 +154020,AA Batteries (4-pack),1,3.84,2019-02-08 00:36:00,448 9th St, Dallas,TX,75001 +154021,27in 4K Gaming Monitor,1,389.99,2019-02-15 12:31:00,330 6th St, Los Angeles,CA,90001 +154022,iPhone,1,700.0,2019-02-20 23:11:00,918 11th St, Seattle,WA,98101 +154022,Lightning Charging Cable,1,14.95,2019-02-20 23:11:00,918 11th St, Seattle,WA,98101 +154023,Apple Airpods Headphones,1,150.0,2019-02-16 10:55:00,674 Jackson St, Portland,ME,04101 +154024,AAA Batteries (4-pack),2,2.99,2019-02-25 08:49:00,215 12th St, Austin,TX,73301 +154025,27in 4K Gaming Monitor,1,389.99,2019-02-02 05:36:00,204 4th St, San Francisco,CA,94016 +154026,USB-C Charging Cable,1,11.95,2019-02-15 07:29:00,788 Lincoln St, San Francisco,CA,94016 +154027,Bose SoundSport Headphones,1,99.99,2019-02-19 16:15:00,320 Dogwood St, Boston,MA,02215 +154028,27in 4K Gaming Monitor,1,389.99,2019-02-11 18:11:00,227 1st St, San Francisco,CA,94016 +154028,Macbook Pro Laptop,1,1700.0,2019-02-11 18:11:00,227 1st St, San Francisco,CA,94016 +154029,AA Batteries (4-pack),1,3.84,2019-02-01 21:54:00,44 Hickory St, San Francisco,CA,94016 +154030,USB-C Charging Cable,1,11.95,2019-02-13 16:56:00,220 Lakeview St, Boston,MA,02215 +154031,27in 4K Gaming Monitor,1,389.99,2019-02-04 13:48:00,692 Ridge St, Portland,OR,97035 +154032,20in Monitor,1,109.99,2019-02-18 19:17:00,532 Park St, New York City,NY,10001 +154033,27in FHD Monitor,1,149.99,2019-02-05 12:58:00,945 12th St, San Francisco,CA,94016 +154034,Lightning Charging Cable,1,14.95,2019-02-20 21:06:00,131 Pine St, New York City,NY,10001 +154035,AAA Batteries (4-pack),1,2.99,2019-02-20 22:46:00,112 8th St, Boston,MA,02215 +154036,Lightning Charging Cable,1,14.95,2019-02-23 17:51:00,359 Pine St, San Francisco,CA,94016 +154037,Macbook Pro Laptop,1,1700.0,2019-02-25 12:39:00,975 Adams St, Los Angeles,CA,90001 +154038,USB-C Charging Cable,1,11.95,2019-02-07 11:18:00,267 8th St, San Francisco,CA,94016 +154039,AA Batteries (4-pack),2,3.84,2019-02-22 16:16:00,357 Sunset St, Austin,TX,73301 +154040,AAA Batteries (4-pack),1,2.99,2019-02-12 19:16:00,967 Walnut St, San Francisco,CA,94016 +154041,Apple Airpods Headphones,1,150.0,2019-02-22 01:01:00,68 South St, Portland,OR,97035 +154042,AA Batteries (4-pack),1,3.84,2019-02-13 08:25:00,567 Washington St, San Francisco,CA,94016 +154043,Lightning Charging Cable,2,14.95,2019-02-04 16:12:00,29 Sunset St, Atlanta,GA,30301 +154044,Apple Airpods Headphones,1,150.0,2019-02-21 20:06:00,835 10th St, Austin,TX,73301 +154045,27in 4K Gaming Monitor,1,389.99,2019-02-15 09:37:00,138 Hill St, Dallas,TX,75001 +154046,USB-C Charging Cable,1,11.95,2019-02-18 06:18:00,965 Elm St, Austin,TX,73301 +154047,Apple Airpods Headphones,1,150.0,2019-02-14 22:39:00,756 12th St, San Francisco,CA,94016 +154048,Apple Airpods Headphones,1,150.0,2019-02-19 15:36:00,2 Church St, Boston,MA,02215 +154049,Wired Headphones,1,11.99,2019-02-23 05:15:00,398 Madison St, Dallas,TX,75001 +154050,Macbook Pro Laptop,1,1700.0,2019-02-17 18:21:00,616 11th St, Dallas,TX,75001 +154051,AAA Batteries (4-pack),3,2.99,2019-02-05 18:49:00,160 Walnut St, Austin,TX,73301 +154052,AA Batteries (4-pack),1,3.84,2019-02-04 12:27:00,127 Center St, Dallas,TX,75001 +154053,USB-C Charging Cable,1,11.95,2019-02-03 20:19:00,401 7th St, Boston,MA,02215 +154054,ThinkPad Laptop,1,999.99,2019-02-16 21:04:00,384 North St, Los Angeles,CA,90001 +154055,Apple Airpods Headphones,1,150.0,2019-02-02 13:21:00,823 14th St, Dallas,TX,75001 +154056,Lightning Charging Cable,1,14.95,2019-02-28 19:11:00,7 Hill St, Boston,MA,02215 +154057,Lightning Charging Cable,1,14.95,2019-02-13 12:17:00,609 5th St, Dallas,TX,75001 +154058,USB-C Charging Cable,1,11.95,2019-02-05 22:18:00,732 7th St, Portland,OR,97035 +154059,Lightning Charging Cable,1,14.95,2019-02-16 17:07:00,546 6th St, Portland,OR,97035 +154060,Lightning Charging Cable,1,14.95,2019-02-12 18:32:00,750 Meadow St, Boston,MA,02215 +154061,AA Batteries (4-pack),1,3.84,2019-02-07 12:50:00,758 Meadow St, Portland,OR,97035 +154062,Google Phone,1,600.0,2019-02-06 17:24:00,793 7th St, Dallas,TX,75001 +154062,USB-C Charging Cable,1,11.95,2019-02-06 17:24:00,793 7th St, Dallas,TX,75001 +154063,27in FHD Monitor,1,149.99,2019-02-11 08:51:00,360 1st St, Boston,MA,02215 +154063,Lightning Charging Cable,1,14.95,2019-02-11 08:51:00,360 1st St, Boston,MA,02215 +154064,Apple Airpods Headphones,1,150.0,2019-02-10 22:04:00,282 Jefferson St, Dallas,TX,75001 +154065,USB-C Charging Cable,1,11.95,2019-02-15 15:03:00,632 5th St, Los Angeles,CA,90001 +154066,Lightning Charging Cable,1,14.95,2019-02-27 22:50:00,779 River St, Los Angeles,CA,90001 +154067,AA Batteries (4-pack),1,3.84,2019-02-22 18:12:00,505 4th St, Dallas,TX,75001 +154068,AA Batteries (4-pack),1,3.84,2019-02-08 13:25:00,189 West St, Boston,MA,02215 +154069,Wired Headphones,1,11.99,2019-02-20 11:11:00,6 Lincoln St, Los Angeles,CA,90001 +154070,USB-C Charging Cable,1,11.95,2019-02-08 11:19:00,137 Dogwood St, San Francisco,CA,94016 +154071,27in FHD Monitor,1,149.99,2019-02-15 12:01:00,892 Ridge St, Portland,OR,97035 +154072,Bose SoundSport Headphones,1,99.99,2019-02-15 13:46:00,934 Cherry St, Portland,OR,97035 +154073,20in Monitor,1,109.99,2019-02-09 09:53:00,521 Chestnut St, Atlanta,GA,30301 +154074,AAA Batteries (4-pack),2,2.99,2019-02-21 21:31:00,818 9th St, Los Angeles,CA,90001 +154075,Flatscreen TV,1,300.0,2019-02-28 03:54:00,523 Jackson St, Austin,TX,73301 +154076,AA Batteries (4-pack),1,3.84,2019-02-03 18:04:00,193 North St, Dallas,TX,75001 +154077,Wired Headphones,1,11.99,2019-02-22 18:18:00,786 6th St, New York City,NY,10001 +154078,Wired Headphones,1,11.99,2019-02-28 06:46:00,559 Walnut St, Los Angeles,CA,90001 +154079,Google Phone,1,600.0,2019-02-11 19:34:00,378 Lake St, San Francisco,CA,94016 +154079,USB-C Charging Cable,1,11.95,2019-02-11 19:34:00,378 Lake St, San Francisco,CA,94016 +154080,AAA Batteries (4-pack),1,2.99,2019-02-18 23:03:00,681 7th St, Los Angeles,CA,90001 +154081,AAA Batteries (4-pack),2,2.99,2019-02-03 21:21:00,534 7th St, San Francisco,CA,94016 +154082,27in 4K Gaming Monitor,1,389.99,2019-02-18 14:00:00,344 Cherry St, Austin,TX,73301 +154083,Flatscreen TV,1,300.0,2019-02-16 18:40:00,194 Dogwood St, Seattle,WA,98101 +154084,Apple Airpods Headphones,1,150.0,2019-02-01 08:42:00,389 Adams St, Dallas,TX,75001 +154085,AAA Batteries (4-pack),1,2.99,2019-02-05 11:19:00,426 Pine St, San Francisco,CA,94016 +154086,LG Dryer,1,600.0,2019-02-04 09:57:00,855 Chestnut St, Seattle,WA,98101 +154087,Apple Airpods Headphones,1,150.0,2019-02-07 13:33:00,682 10th St, Austin,TX,73301 +154088,27in 4K Gaming Monitor,1,389.99,2019-02-25 19:11:00,97 Highland St, San Francisco,CA,94016 +154089,iPhone,1,700.0,2019-02-02 22:06:00,863 Jefferson St, New York City,NY,10001 +154089,Lightning Charging Cable,1,14.95,2019-02-02 22:06:00,863 Jefferson St, New York City,NY,10001 +154090,Vareebadd Phone,1,400.0,2019-02-27 13:55:00,926 South St, Atlanta,GA,30301 +154091,27in FHD Monitor,1,149.99,2019-02-10 14:23:00,145 Washington St, Atlanta,GA,30301 +154092,27in 4K Gaming Monitor,1,389.99,2019-02-11 20:02:00,175 Lincoln St, Seattle,WA,98101 +154093,Lightning Charging Cable,1,14.95,2019-02-05 18:39:00,398 Lakeview St, Seattle,WA,98101 +154094,Google Phone,1,600.0,2019-02-28 21:59:00,851 Maple St, New York City,NY,10001 +154095,Flatscreen TV,1,300.0,2019-02-23 11:01:00,81 1st St, Boston,MA,02215 +154096,AA Batteries (4-pack),1,3.84,2019-02-27 06:33:00,287 Meadow St, Portland,OR,97035 +154097,20in Monitor,1,109.99,2019-02-17 15:29:00,277 Chestnut St, Dallas,TX,75001 +154098,Lightning Charging Cable,1,14.95,2019-02-26 14:54:00,809 Park St, Portland,ME,04101 +154099,USB-C Charging Cable,1,11.95,2019-02-04 22:55:00,907 Park St, San Francisco,CA,94016 +154100,AA Batteries (4-pack),1,3.84,2019-02-18 21:41:00,825 Wilson St, San Francisco,CA,94016 +154101,iPhone,1,700.0,2019-02-11 21:06:00,250 Madison St, San Francisco,CA,94016 +154101,Lightning Charging Cable,1,14.95,2019-02-11 21:06:00,250 Madison St, San Francisco,CA,94016 +154102,AA Batteries (4-pack),2,3.84,2019-02-10 17:14:00,37 Lincoln St, Atlanta,GA,30301 +154103,Wired Headphones,2,11.99,2019-02-09 17:42:00,551 Jefferson St, San Francisco,CA,94016 +154104,AA Batteries (4-pack),1,3.84,2019-02-18 20:49:00,935 Ridge St, Austin,TX,73301 +154105,USB-C Charging Cable,1,11.95,2019-02-11 12:22:00,793 Willow St, San Francisco,CA,94016 +154106,Lightning Charging Cable,1,14.95,2019-02-16 15:43:00,496 Walnut St, San Francisco,CA,94016 +154107,Flatscreen TV,1,300.0,2019-02-01 08:44:00,4 Madison St, Dallas,TX,75001 +154108,AAA Batteries (4-pack),1,2.99,2019-02-24 23:05:00,626 9th St, Seattle,WA,98101 +154109,Wired Headphones,2,11.99,2019-02-15 13:51:00,937 Meadow St, New York City,NY,10001 +154110,USB-C Charging Cable,1,11.95,2019-02-08 15:13:00,348 South St, Austin,TX,73301 +154111,iPhone,1,700.0,2019-02-06 16:29:00,551 West St, San Francisco,CA,94016 +154112,USB-C Charging Cable,1,11.95,2019-02-18 03:34:00,968 Cherry St, Boston,MA,02215 +154113,Google Phone,1,600.0,2019-02-03 10:31:00,64 Wilson St, Dallas,TX,75001 +154114,USB-C Charging Cable,1,11.95,2019-02-10 12:44:00,142 Sunset St, San Francisco,CA,94016 +154115,Bose SoundSport Headphones,1,99.99,2019-02-26 11:46:00,490 12th St, Los Angeles,CA,90001 +154116,USB-C Charging Cable,1,11.95,2019-02-16 16:46:00,710 Park St, San Francisco,CA,94016 +154117,Wired Headphones,1,11.99,2019-02-28 16:47:00,456 14th St, San Francisco,CA,94016 +154118,AAA Batteries (4-pack),2,2.99,2019-02-02 08:57:00,288 Meadow St, Portland,OR,97035 +154119,Lightning Charging Cable,1,14.95,2019-02-17 12:46:00,674 Highland St, San Francisco,CA,94016 +154120,AAA Batteries (4-pack),2,2.99,2019-02-05 07:36:00,283 Wilson St, Dallas,TX,75001 +154121,Bose SoundSport Headphones,1,99.99,2019-02-26 21:51:00,927 Park St, Seattle,WA,98101 +154122,Lightning Charging Cable,1,14.95,2019-02-10 18:44:00,381 Highland St, San Francisco,CA,94016 +154123,Bose SoundSport Headphones,1,99.99,2019-02-24 22:38:00,700 5th St, Dallas,TX,75001 +154124,Lightning Charging Cable,1,14.95,2019-02-20 15:55:00,608 Park St, Portland,OR,97035 +154125,ThinkPad Laptop,1,999.99,2019-02-15 23:19:00,228 Sunset St, Seattle,WA,98101 +154126,iPhone,1,700.0,2019-02-17 15:05:00,84 Ridge St, Boston,MA,02215 +154126,Lightning Charging Cable,1,14.95,2019-02-17 15:05:00,84 Ridge St, Boston,MA,02215 +154127,AAA Batteries (4-pack),3,2.99,2019-02-23 15:08:00,981 Maple St, San Francisco,CA,94016 +154128,Wired Headphones,1,11.99,2019-02-01 12:55:00,233 4th St, New York City,NY,10001 +154129,34in Ultrawide Monitor,1,379.99,2019-02-18 16:51:00,969 Highland St, Atlanta,GA,30301 +154130,Flatscreen TV,1,300.0,2019-02-23 13:14:00,16 Adams St, Boston,MA,02215 +154131,AAA Batteries (4-pack),3,2.99,2019-02-11 22:02:00,632 12th St, San Francisco,CA,94016 +154132,AAA Batteries (4-pack),1,2.99,2019-02-07 22:14:00,340 Sunset St, Los Angeles,CA,90001 +154133,AAA Batteries (4-pack),1,2.99,2019-02-17 18:16:00,253 Sunset St, Austin,TX,73301 +154134,Google Phone,1,600.0,2019-02-14 16:15:00,244 8th St, New York City,NY,10001 +154134,Wired Headphones,1,11.99,2019-02-14 16:15:00,244 8th St, New York City,NY,10001 +154135,Bose SoundSport Headphones,1,99.99,2019-02-17 22:52:00,162 Cedar St, San Francisco,CA,94016 +154136,AA Batteries (4-pack),2,3.84,2019-02-17 18:20:00,693 Washington St, Atlanta,GA,30301 +154137,Lightning Charging Cable,1,14.95,2019-02-18 09:12:00,436 South St, Portland,OR,97035 +154138,AAA Batteries (4-pack),1,2.99,2019-02-16 08:55:00,571 Johnson St, Portland,OR,97035 +154139,iPhone,1,700.0,2019-02-06 18:26:00,52 North St, Seattle,WA,98101 +154140,AAA Batteries (4-pack),1,2.99,2019-02-24 09:37:00,403 Hickory St, San Francisco,CA,94016 +154141,Lightning Charging Cable,1,14.95,2019-02-09 22:59:00,185 Pine St, New York City,NY,10001 +154142,USB-C Charging Cable,1,11.95,2019-02-22 20:21:00,254 Lake St, Dallas,TX,75001 +154143,iPhone,1,700.0,2019-02-07 05:35:00,21 River St, Seattle,WA,98101 +154144,AA Batteries (4-pack),1,3.84,2019-02-12 22:21:00,942 9th St, San Francisco,CA,94016 +154145,Wired Headphones,1,11.99,2019-02-21 21:51:00,934 8th St, San Francisco,CA,94016 +154146,AAA Batteries (4-pack),1,2.99,2019-02-27 19:24:00,469 Johnson St, Portland,ME,04101 +154147,Apple Airpods Headphones,1,150.0,2019-02-11 08:50:00,985 Lake St, Seattle,WA,98101 +154148,27in FHD Monitor,1,149.99,2019-02-28 18:21:00,229 4th St, San Francisco,CA,94016 +154149,Lightning Charging Cable,1,14.95,2019-02-08 15:15:00,39 Dogwood St, San Francisco,CA,94016 +154150,Bose SoundSport Headphones,1,99.99,2019-02-07 16:52:00,110 2nd St, New York City,NY,10001 +154151,Bose SoundSport Headphones,1,99.99,2019-02-22 06:05:00,343 1st St, New York City,NY,10001 +154152,USB-C Charging Cable,1,11.95,2019-02-07 12:05:00,782 5th St, San Francisco,CA,94016 +154153,Lightning Charging Cable,1,14.95,2019-02-26 19:53:00,226 Lincoln St, San Francisco,CA,94016 +154154,AAA Batteries (4-pack),2,2.99,2019-02-23 19:23:00,297 9th St, Boston,MA,02215 +154155,USB-C Charging Cable,1,11.95,2019-02-27 12:14:00,456 Lakeview St, Los Angeles,CA,90001 +154156,27in FHD Monitor,1,149.99,2019-02-16 12:13:00,595 Lincoln St, San Francisco,CA,94016 +154157,Lightning Charging Cable,1,14.95,2019-02-09 15:06:00,185 14th St, Los Angeles,CA,90001 +154158,Bose SoundSport Headphones,1,99.99,2019-02-16 11:53:00,105 Cherry St, Los Angeles,CA,90001 +154159,Lightning Charging Cable,1,14.95,2019-02-01 22:07:00,274 Cedar St, Dallas,TX,75001 +154160,Lightning Charging Cable,1,14.95,2019-02-18 11:19:00,507 South St, New York City,NY,10001 +154161,AAA Batteries (4-pack),1,2.99,2019-02-06 17:28:00,410 13th St, Dallas,TX,75001 +154162,USB-C Charging Cable,1,11.95,2019-02-23 18:37:00,903 Chestnut St, Dallas,TX,75001 +154163,27in FHD Monitor,1,149.99,2019-02-14 09:38:00,937 Ridge St, Los Angeles,CA,90001 +154164,27in FHD Monitor,1,149.99,2019-02-24 17:23:00,958 Adams St, San Francisco,CA,94016 +154165,20in Monitor,1,109.99,2019-02-19 03:31:00,960 Maple St, New York City,NY,10001 +154166,USB-C Charging Cable,1,11.95,2019-02-04 12:43:00,373 Johnson St, Dallas,TX,75001 +154167,Lightning Charging Cable,1,14.95,2019-02-11 13:26:00,714 Maple St, Atlanta,GA,30301 +154168,Lightning Charging Cable,2,14.95,2019-02-24 15:00:00,265 Jefferson St, New York City,NY,10001 +154169,AAA Batteries (4-pack),2,2.99,2019-02-21 09:23:00,472 West St, Portland,ME,04101 +154170,ThinkPad Laptop,1,999.99,2019-02-03 18:30:00,294 1st St, New York City,NY,10001 +154171,Lightning Charging Cable,1,14.95,2019-02-18 10:17:00,562 Adams St, Austin,TX,73301 +154172,AA Batteries (4-pack),1,3.84,2019-02-21 19:28:00,734 Sunset St, Austin,TX,73301 +154173,20in Monitor,1,109.99,2019-02-12 21:43:00,427 Meadow St, San Francisco,CA,94016 +154174,USB-C Charging Cable,1,11.95,2019-02-01 16:05:00,992 Church St, Los Angeles,CA,90001 +154175,Lightning Charging Cable,1,14.95,2019-02-17 06:08:00,376 Jefferson St, New York City,NY,10001 +154176,Wired Headphones,2,11.99,2019-02-27 08:51:00,825 Ridge St, San Francisco,CA,94016 +154177,Wired Headphones,1,11.99,2019-02-07 20:43:00,972 River St, Los Angeles,CA,90001 +154178,Lightning Charging Cable,1,14.95,2019-02-10 00:28:00,430 Willow St, Los Angeles,CA,90001 +154179,27in FHD Monitor,1,149.99,2019-02-18 08:02:00,147 10th St, New York City,NY,10001 +154180,Wired Headphones,1,11.99,2019-02-06 10:34:00,647 Madison St, Boston,MA,02215 +154181,Wired Headphones,2,11.99,2019-02-22 07:39:00,484 7th St, Seattle,WA,98101 +154181,Bose SoundSport Headphones,1,99.99,2019-02-22 07:39:00,484 7th St, Seattle,WA,98101 +154182,AA Batteries (4-pack),1,3.84,2019-02-28 13:52:00,708 Highland St, Atlanta,GA,30301 +154183,AA Batteries (4-pack),1,3.84,2019-02-09 21:45:00,26 Center St, Seattle,WA,98101 +154184,Lightning Charging Cable,1,14.95,2019-02-10 13:12:00,390 Church St, Los Angeles,CA,90001 +154185,Flatscreen TV,1,300.0,2019-02-13 05:10:00,953 Meadow St, San Francisco,CA,94016 +154186,iPhone,1,700.0,2019-02-09 17:33:00,647 South St, New York City,NY,10001 +154187,34in Ultrawide Monitor,1,379.99,2019-02-21 08:22:00,428 2nd St, Seattle,WA,98101 +154188,20in Monitor,1,109.99,2019-02-21 20:08:00,111 Spruce St, Los Angeles,CA,90001 +154189,Google Phone,1,600.0,2019-02-01 12:31:00,679 Sunset St, San Francisco,CA,94016 +154190,Vareebadd Phone,1,400.0,2019-02-12 10:02:00,232 Jackson St, Seattle,WA,98101 +154191,20in Monitor,1,109.99,2019-02-21 11:04:00,12 Lakeview St, Dallas,TX,75001 +154192,iPhone,1,700.0,2019-02-21 17:02:00,387 River St, San Francisco,CA,94016 +154193,Wired Headphones,1,11.99,2019-02-06 12:08:00,747 North St, Los Angeles,CA,90001 +154194,Apple Airpods Headphones,1,150.0,2019-02-03 20:10:00,410 5th St, Portland,OR,97035 +154195,Bose SoundSport Headphones,1,99.99,2019-02-13 14:13:00,331 Walnut St, San Francisco,CA,94016 +154196,AAA Batteries (4-pack),1,2.99,2019-02-10 09:54:00,905 South St, New York City,NY,10001 +154197,34in Ultrawide Monitor,1,379.99,2019-02-07 09:10:00,375 Willow St, San Francisco,CA,94016 +154198,AAA Batteries (4-pack),1,2.99,2019-02-27 13:40:00,727 Madison St, Los Angeles,CA,90001 +154199,AA Batteries (4-pack),1,3.84,2019-02-28 02:09:00,306 Forest St, San Francisco,CA,94016 +154200,Apple Airpods Headphones,1,150.0,2019-02-22 18:06:00,119 10th St, Atlanta,GA,30301 +154201,AA Batteries (4-pack),2,3.84,2019-02-02 09:30:00,826 Willow St, San Francisco,CA,94016 +154202,AA Batteries (4-pack),1,3.84,2019-02-20 22:12:00,952 11th St, Boston,MA,02215 +154203,AA Batteries (4-pack),3,3.84,2019-02-01 20:10:00,319 8th St, Dallas,TX,75001 +154204,Apple Airpods Headphones,1,150.0,2019-02-01 15:07:00,736 Meadow St, Boston,MA,02215 +154205,Apple Airpods Headphones,1,150.0,2019-02-18 13:51:00,59 Johnson St, Los Angeles,CA,90001 +154206,Wired Headphones,1,11.99,2019-02-23 08:19:00,554 Hill St, San Francisco,CA,94016 +154207,USB-C Charging Cable,1,11.95,2019-02-28 12:13:00,188 Forest St, San Francisco,CA,94016 +154208,Apple Airpods Headphones,1,150.0,2019-02-07 21:33:00,996 South St, New York City,NY,10001 +154209,Flatscreen TV,1,300.0,2019-02-18 20:49:00,76 North St, Atlanta,GA,30301 +154210,Flatscreen TV,1,300.0,2019-02-25 22:08:00,252 Madison St, Atlanta,GA,30301 +154211,Bose SoundSport Headphones,1,99.99,2019-02-04 19:23:00,704 South St, San Francisco,CA,94016 +154212,LG Dryer,1,600.0,2019-02-11 20:16:00,642 Lake St, San Francisco,CA,94016 +154213,27in 4K Gaming Monitor,1,389.99,2019-02-22 17:44:00,839 1st St, Boston,MA,02215 +154214,AAA Batteries (4-pack),1,2.99,2019-02-06 18:59:00,78 Elm St, New York City,NY,10001 +154215,AAA Batteries (4-pack),3,2.99,2019-02-15 14:55:00,600 South St, San Francisco,CA,94016 +154215,AAA Batteries (4-pack),1,2.99,2019-02-15 14:55:00,600 South St, San Francisco,CA,94016 +154216,AA Batteries (4-pack),3,3.84,2019-02-11 12:37:00,902 North St, Boston,MA,02215 +154217,ThinkPad Laptop,1,999.99,2019-02-26 19:24:00,203 Madison St, Boston,MA,02215 +154218,Wired Headphones,1,11.99,2019-02-06 10:34:00,997 Cedar St, Atlanta,GA,30301 +154219,Wired Headphones,1,11.99,2019-02-16 00:22:00,338 14th St, Boston,MA,02215 +154220,ThinkPad Laptop,1,999.99,2019-02-05 13:16:00,574 Washington St, San Francisco,CA,94016 +154221,34in Ultrawide Monitor,1,379.99,2019-02-08 12:12:00,910 Highland St, Atlanta,GA,30301 +154222,Wired Headphones,1,11.99,2019-02-24 17:07:00,376 5th St, Seattle,WA,98101 +154223,AA Batteries (4-pack),1,3.84,2019-02-07 19:50:00,761 12th St, Los Angeles,CA,90001 +154224,Google Phone,1,600.0,2019-02-13 20:59:00,726 11th St, San Francisco,CA,94016 +154225,27in FHD Monitor,1,149.99,2019-02-13 17:12:00,753 Madison St, Dallas,TX,75001 +154226,Wired Headphones,1,11.99,2019-02-17 03:50:00,499 Cedar St, Los Angeles,CA,90001 +154227,AA Batteries (4-pack),1,3.84,2019-02-03 10:43:00,893 Jefferson St, Los Angeles,CA,90001 +154228,Apple Airpods Headphones,1,150.0,2019-02-03 11:13:00,567 Park St, Atlanta,GA,30301 +154229,AAA Batteries (4-pack),2,2.99,2019-02-22 00:35:00,744 Cherry St, Atlanta,GA,30301 +154230,34in Ultrawide Monitor,1,379.99,2019-02-21 22:41:00,939 Church St, Boston,MA,02215 +154231,Wired Headphones,1,11.99,2019-02-04 17:13:00,672 South St, San Francisco,CA,94016 +154232,Macbook Pro Laptop,1,1700.0,2019-02-25 22:39:00,994 5th St, Boston,MA,02215 +154233,Wired Headphones,1,11.99,2019-02-27 16:38:00,349 Center St, Boston,MA,02215 +154234,USB-C Charging Cable,1,11.95,2019-02-15 13:39:00,541 6th St, San Francisco,CA,94016 +154235,AA Batteries (4-pack),1,3.84,2019-02-07 18:16:00,761 Elm St, Boston,MA,02215 +154236,20in Monitor,1,109.99,2019-02-15 09:58:00,772 South St, San Francisco,CA,94016 +154237,AA Batteries (4-pack),1,3.84,2019-02-26 00:41:00,415 Pine St, Austin,TX,73301 +154238,AAA Batteries (4-pack),1,2.99,2019-02-15 12:33:00,516 14th St, San Francisco,CA,94016 +154239,iPhone,1,700.0,2019-02-20 08:30:00,314 Elm St, San Francisco,CA,94016 +154240,34in Ultrawide Monitor,1,379.99,2019-02-13 09:02:00,441 Hickory St, Los Angeles,CA,90001 +154241,Wired Headphones,1,11.99,2019-02-13 14:02:00,596 14th St, Seattle,WA,98101 +154242,USB-C Charging Cable,2,11.95,2019-02-13 00:19:00,330 Highland St, Los Angeles,CA,90001 +154243,Flatscreen TV,1,300.0,2019-02-20 12:24:00,75 2nd St, Boston,MA,02215 +154244,USB-C Charging Cable,1,11.95,2019-02-04 22:21:00,635 Lincoln St, New York City,NY,10001 +154245,USB-C Charging Cable,1,11.95,2019-02-21 11:16:00,954 6th St, Portland,ME,04101 +154246,Bose SoundSport Headphones,1,99.99,2019-02-10 13:37:00,471 Highland St, Los Angeles,CA,90001 +154247,Wired Headphones,1,11.99,2019-02-24 10:17:00,676 Elm St, Los Angeles,CA,90001 +154248,ThinkPad Laptop,1,999.99,2019-02-05 20:57:00,788 Church St, Atlanta,GA,30301 +154249,AAA Batteries (4-pack),3,2.99,2019-02-17 16:24:00,815 South St, Boston,MA,02215 +154250,Lightning Charging Cable,1,14.95,2019-02-02 16:14:00,671 11th St, Portland,ME,04101 +154251,AAA Batteries (4-pack),2,2.99,2019-02-26 15:36:00,704 Jefferson St, Dallas,TX,75001 +154252,USB-C Charging Cable,1,11.95,2019-02-08 16:20:00,335 Elm St, Los Angeles,CA,90001 +154253,AA Batteries (4-pack),2,3.84,2019-02-04 23:11:00,572 Johnson St, Los Angeles,CA,90001 +154254,Apple Airpods Headphones,1,150.0,2019-02-17 19:47:00,2 Wilson St, Boston,MA,02215 +154255,USB-C Charging Cable,1,11.95,2019-02-17 19:07:00,495 Main St, Dallas,TX,75001 +154256,Wired Headphones,1,11.99,2019-02-28 12:17:00,951 Walnut St, Los Angeles,CA,90001 +154257,USB-C Charging Cable,1,11.95,2019-02-03 10:49:00,755 5th St, Los Angeles,CA,90001 +154258,Lightning Charging Cable,1,14.95,2019-02-01 13:29:00,777 Hill St, San Francisco,CA,94016 +154259,Wired Headphones,1,11.99,2019-02-18 12:53:00,557 Lake St, Dallas,TX,75001 +154260,USB-C Charging Cable,1,11.95,2019-02-04 17:38:00,433 13th St, Seattle,WA,98101 +154261,Wired Headphones,1,11.99,2019-02-07 13:07:00,49 Highland St, Seattle,WA,98101 +154262,AAA Batteries (4-pack),2,2.99,2019-02-18 15:09:00,674 West St, Atlanta,GA,30301 +154263,Apple Airpods Headphones,1,150.0,2019-02-03 19:20:00,153 Park St, Los Angeles,CA,90001 +154264,AAA Batteries (4-pack),2,2.99,2019-02-24 16:47:00,978 North St, San Francisco,CA,94016 +154265,AA Batteries (4-pack),1,3.84,2019-02-15 18:27:00,790 Madison St, Portland,OR,97035 +154266,ThinkPad Laptop,1,999.99,2019-02-11 10:23:00,279 8th St, Atlanta,GA,30301 +154267,Bose SoundSport Headphones,1,99.99,2019-02-05 12:21:00,244 Main St, New York City,NY,10001 +154268,Lightning Charging Cable,1,14.95,2019-02-25 15:54:00,242 Madison St, Seattle,WA,98101 +154269,ThinkPad Laptop,1,999.99,2019-02-19 19:30:00,883 Ridge St, San Francisco,CA,94016 +154270,27in FHD Monitor,1,149.99,2019-02-06 12:20:00,867 6th St, New York City,NY,10001 +154271,20in Monitor,1,109.99,2019-02-26 12:26:00,557 Church St, New York City,NY,10001 +154272,Apple Airpods Headphones,1,150.0,2019-02-15 16:42:00,915 Lakeview St, Portland,OR,97035 +154273,USB-C Charging Cable,1,11.95,2019-02-22 21:59:00,664 Highland St, San Francisco,CA,94016 +154274,Wired Headphones,1,11.99,2019-02-24 18:35:00,136 Hickory St, Boston,MA,02215 +154275,USB-C Charging Cable,1,11.95,2019-02-12 20:50:00,632 River St, San Francisco,CA,94016 +154276,USB-C Charging Cable,1,11.95,2019-02-02 21:41:00,278 Walnut St, Los Angeles,CA,90001 +154277,USB-C Charging Cable,1,11.95,2019-02-07 10:07:00,406 9th St, Boston,MA,02215 +154278,USB-C Charging Cable,1,11.95,2019-02-28 21:55:00,834 Forest St, Boston,MA,02215 +154279,34in Ultrawide Monitor,1,379.99,2019-02-19 01:44:00,514 10th St, Los Angeles,CA,90001 +154280,27in 4K Gaming Monitor,1,389.99,2019-02-08 19:30:00,411 Lincoln St, Los Angeles,CA,90001 +154281,27in FHD Monitor,1,149.99,2019-02-09 16:05:00,314 Center St, San Francisco,CA,94016 +154282,Wired Headphones,1,11.99,2019-02-02 00:19:00,668 13th St, Los Angeles,CA,90001 +154283,Macbook Pro Laptop,1,1700.0,2019-02-21 18:55:00,753 8th St, San Francisco,CA,94016 +154284,Bose SoundSport Headphones,1,99.99,2019-02-02 20:04:00,142 Washington St, San Francisco,CA,94016 +154284,Apple Airpods Headphones,1,150.0,2019-02-02 20:04:00,142 Washington St, San Francisco,CA,94016 +154285,Flatscreen TV,1,300.0,2019-02-16 17:50:00,773 Washington St, San Francisco,CA,94016 +154286,AAA Batteries (4-pack),1,2.99,2019-02-22 12:39:00,916 9th St, Austin,TX,73301 +154287,Vareebadd Phone,1,400.0,2019-02-04 11:00:00,671 Park St, New York City,NY,10001 +154288,Bose SoundSport Headphones,1,99.99,2019-02-14 08:29:00,804 Adams St, Los Angeles,CA,90001 +154289,USB-C Charging Cable,1,11.95,2019-02-13 20:33:00,524 5th St, New York City,NY,10001 +154290,AAA Batteries (4-pack),1,2.99,2019-02-12 20:04:00,869 Lake St, Los Angeles,CA,90001 +154291,27in FHD Monitor,1,149.99,2019-02-14 21:50:00,521 Spruce St, Boston,MA,02215 +154292,Lightning Charging Cable,1,14.95,2019-02-12 09:43:00,674 10th St, San Francisco,CA,94016 +154293,Bose SoundSport Headphones,1,99.99,2019-02-22 10:25:00,49 Elm St, Los Angeles,CA,90001 +154293,ThinkPad Laptop,1,999.99,2019-02-22 10:25:00,49 Elm St, Los Angeles,CA,90001 +154294,AAA Batteries (4-pack),3,2.99,2019-02-04 13:02:00,691 Madison St, San Francisco,CA,94016 +154295,34in Ultrawide Monitor,1,379.99,2019-02-28 05:18:00,244 Madison St, Los Angeles,CA,90001 +154296,Flatscreen TV,1,300.0,2019-02-26 16:01:00,481 Jefferson St, San Francisco,CA,94016 +154297,34in Ultrawide Monitor,1,379.99,2019-02-28 13:57:00,670 Cherry St, Portland,OR,97035 +154298,27in 4K Gaming Monitor,1,389.99,2019-02-05 07:54:00,495 Hickory St, Austin,TX,73301 +154299,Bose SoundSport Headphones,1,99.99,2019-02-13 11:05:00,776 Hickory St, Atlanta,GA,30301 +154300,AA Batteries (4-pack),1,3.84,2019-02-13 13:12:00,751 Highland St, Portland,OR,97035 +154301,34in Ultrawide Monitor,1,379.99,2019-02-20 13:26:00,799 North St, Los Angeles,CA,90001 +154302,34in Ultrawide Monitor,1,379.99,2019-02-10 15:59:00,421 Dogwood St, Los Angeles,CA,90001 +154303,Google Phone,1,600.0,2019-02-19 13:05:00,38 Forest St, Dallas,TX,75001 +154303,Wired Headphones,1,11.99,2019-02-19 13:05:00,38 Forest St, Dallas,TX,75001 +154304,Google Phone,1,600.0,2019-02-02 11:28:00,141 5th St, Boston,MA,02215 +154305,USB-C Charging Cable,1,11.95,2019-02-21 12:00:00,477 Main St, Los Angeles,CA,90001 +154306,USB-C Charging Cable,1,11.95,2019-02-18 08:38:00,904 Pine St, San Francisco,CA,94016 +154307,Bose SoundSport Headphones,1,99.99,2019-02-25 19:46:00,583 8th St, Austin,TX,73301 +154308,ThinkPad Laptop,1,999.99,2019-02-11 12:56:00,255 1st St, Atlanta,GA,30301 +154309,Apple Airpods Headphones,1,150.0,2019-02-25 19:20:00,71 River St, Boston,MA,02215 +154310,Lightning Charging Cable,1,14.95,2019-02-12 20:14:00,610 Pine St, Los Angeles,CA,90001 +154311,AAA Batteries (4-pack),1,2.99,2019-02-13 00:22:00,370 11th St, Seattle,WA,98101 +154312,Lightning Charging Cable,1,14.95,2019-02-02 17:44:00,375 2nd St, San Francisco,CA,94016 +154313,Google Phone,1,600.0,2019-02-08 00:08:00,536 Hickory St, San Francisco,CA,94016 +154314,Apple Airpods Headphones,1,150.0,2019-02-16 10:01:00,581 Cherry St, New York City,NY,10001 +154315,Bose SoundSport Headphones,1,99.99,2019-02-18 19:26:00,173 Willow St, San Francisco,CA,94016 +154316,27in 4K Gaming Monitor,1,389.99,2019-02-05 13:11:00,939 Hill St, Atlanta,GA,30301 +154317,AA Batteries (4-pack),3,3.84,2019-02-14 12:02:00,974 Johnson St, San Francisco,CA,94016 +154318,USB-C Charging Cable,1,11.95,2019-02-09 08:59:00,350 11th St, San Francisco,CA,94016 +154319,Lightning Charging Cable,1,14.95,2019-02-28 15:15:00,855 Johnson St, New York City,NY,10001 +154320,USB-C Charging Cable,1,11.95,2019-02-16 09:52:00,93 Johnson St, Los Angeles,CA,90001 +154321,USB-C Charging Cable,2,11.95,2019-02-22 12:45:00,426 4th St, New York City,NY,10001 +154322,Apple Airpods Headphones,1,150.0,2019-02-16 14:05:00,401 9th St, Atlanta,GA,30301 +154323,Lightning Charging Cable,1,14.95,2019-02-07 21:56:00,502 11th St, Boston,MA,02215 +154324,Wired Headphones,2,11.99,2019-02-13 13:20:00,573 4th St, San Francisco,CA,94016 +154325,Wired Headphones,1,11.99,2019-02-18 16:48:00,712 Dogwood St, Austin,TX,73301 +154326,Wired Headphones,1,11.99,2019-02-28 14:50:00,108 10th St, Seattle,WA,98101 +154327,Macbook Pro Laptop,1,1700.0,2019-02-08 13:39:00,555 Wilson St, New York City,NY,10001 +154328,Wired Headphones,1,11.99,2019-02-20 22:33:00,812 2nd St, Los Angeles,CA,90001 +154329,Lightning Charging Cable,1,14.95,2019-02-27 09:19:00,943 Dogwood St, San Francisco,CA,94016 +154330,Lightning Charging Cable,1,14.95,2019-02-24 00:11:00,601 Willow St, New York City,NY,10001 +154331,USB-C Charging Cable,1,11.95,2019-02-28 15:50:00,722 9th St, Boston,MA,02215 +154332,34in Ultrawide Monitor,1,379.99,2019-02-27 11:15:00,642 10th St, Los Angeles,CA,90001 +154333,USB-C Charging Cable,1,11.95,2019-02-08 14:29:00,338 West St, Atlanta,GA,30301 +154334,AAA Batteries (4-pack),2,2.99,2019-02-12 21:19:00,369 West St, Atlanta,GA,30301 +154335,Flatscreen TV,1,300.0,2019-02-22 18:54:00,78 Lakeview St, San Francisco,CA,94016 +154336,iPhone,1,700.0,2019-02-03 22:57:00,238 West St, Atlanta,GA,30301 +154336,Lightning Charging Cable,1,14.95,2019-02-03 22:57:00,238 West St, Atlanta,GA,30301 +154337,AA Batteries (4-pack),1,3.84,2019-02-21 00:06:00,135 Jefferson St, Boston,MA,02215 +154338,USB-C Charging Cable,1,11.95,2019-02-03 07:38:00,5 Cedar St, Portland,ME,04101 +154339,iPhone,1,700.0,2019-02-12 15:04:00,604 Johnson St, Portland,OR,97035 +154340,27in 4K Gaming Monitor,1,389.99,2019-02-25 21:17:00,243 Lincoln St, San Francisco,CA,94016 +154341,AA Batteries (4-pack),1,3.84,2019-02-05 20:59:00,162 Sunset St, New York City,NY,10001 +154342,USB-C Charging Cable,1,11.95,2019-02-03 12:20:00,282 8th St, San Francisco,CA,94016 +154343,USB-C Charging Cable,1,11.95,2019-02-10 07:47:00,946 Sunset St, Dallas,TX,75001 +154344,34in Ultrawide Monitor,1,379.99,2019-02-13 11:38:00,968 Lakeview St, San Francisco,CA,94016 +154345,ThinkPad Laptop,1,999.99,2019-02-21 23:28:00,731 12th St, Los Angeles,CA,90001 +154346,Apple Airpods Headphones,1,150.0,2019-02-01 22:10:00,573 Hill St, Austin,TX,73301 +154347,Bose SoundSport Headphones,1,99.99,2019-02-15 13:17:00,961 Spruce St, Dallas,TX,75001 +154348,Wired Headphones,1,11.99,2019-02-24 23:43:00,578 Cedar St, Dallas,TX,75001 +154349,34in Ultrawide Monitor,1,379.99,2019-02-04 21:14:00,627 13th St, Los Angeles,CA,90001 +154350,Lightning Charging Cable,1,14.95,2019-02-03 13:30:00,255 North St, New York City,NY,10001 +154351,Wired Headphones,1,11.99,2019-02-10 12:47:00,326 Wilson St, Austin,TX,73301 +154352,27in 4K Gaming Monitor,1,389.99,2019-02-24 10:10:00,550 Meadow St, Seattle,WA,98101 +154353,Lightning Charging Cable,1,14.95,2019-02-19 08:37:00,58 Madison St, Los Angeles,CA,90001 +154354,AAA Batteries (4-pack),1,2.99,2019-02-17 14:09:00,361 Meadow St, San Francisco,CA,94016 +154355,Wired Headphones,1,11.99,2019-02-20 09:01:00,187 10th St, Seattle,WA,98101 +154356,Bose SoundSport Headphones,1,99.99,2019-02-02 14:32:00,541 Madison St, San Francisco,CA,94016 +154357,AAA Batteries (4-pack),1,2.99,2019-02-25 22:29:00,538 7th St, Los Angeles,CA,90001 +154358,Bose SoundSport Headphones,1,99.99,2019-02-28 19:42:00,219 Maple St, San Francisco,CA,94016 +154359,Lightning Charging Cable,1,14.95,2019-02-20 15:05:00,280 Walnut St, Austin,TX,73301 +154360,USB-C Charging Cable,1,11.95,2019-02-06 19:41:00,243 Church St, San Francisco,CA,94016 +154361,27in FHD Monitor,1,149.99,2019-02-07 17:40:00,322 Pine St, San Francisco,CA,94016 +154362,iPhone,1,700.0,2019-02-06 20:22:00,617 Center St, Los Angeles,CA,90001 +154363,Apple Airpods Headphones,1,150.0,2019-02-26 22:44:00,308 Lincoln St, San Francisco,CA,94016 +154364,27in 4K Gaming Monitor,1,389.99,2019-02-09 00:33:00,354 Hickory St, New York City,NY,10001 +154365,AAA Batteries (4-pack),1,2.99,2019-02-07 09:53:00,914 Johnson St, Dallas,TX,75001 +154366,USB-C Charging Cable,1,11.95,2019-02-08 21:29:00,180 14th St, Portland,OR,97035 +154367,Macbook Pro Laptop,1,1700.0,2019-02-12 10:04:00,74 Highland St, San Francisco,CA,94016 +154368,34in Ultrawide Monitor,1,379.99,2019-02-19 21:51:00,791 Chestnut St, New York City,NY,10001 +154369,ThinkPad Laptop,1,999.99,2019-02-07 13:57:00,447 8th St, Boston,MA,02215 +154370,AA Batteries (4-pack),1,3.84,2019-02-14 19:17:00,357 South St, Los Angeles,CA,90001 +154371,Lightning Charging Cable,1,14.95,2019-02-12 18:17:00,749 Maple St, San Francisco,CA,94016 +154372,AAA Batteries (4-pack),1,2.99,2019-02-18 14:30:00,448 6th St, Portland,OR,97035 +154373,Google Phone,1,600.0,2019-02-16 20:07:00,809 Sunset St, Atlanta,GA,30301 +154374,iPhone,1,700.0,2019-02-11 23:57:00,816 North St, Portland,OR,97035 +154374,Wired Headphones,1,11.99,2019-02-11 23:57:00,816 North St, Portland,OR,97035 +154375,iPhone,1,700.0,2019-02-22 22:30:00,733 Willow St, San Francisco,CA,94016 +154375,Apple Airpods Headphones,1,150.0,2019-02-22 22:30:00,733 Willow St, San Francisco,CA,94016 +154376,Wired Headphones,1,11.99,2019-02-11 00:09:00,139 Lake St, Boston,MA,02215 +154377,Google Phone,1,600.0,2019-02-05 14:43:00,433 North St, New York City,NY,10001 +154378,AA Batteries (4-pack),2,3.84,2019-02-03 15:05:00,270 Hickory St, Atlanta,GA,30301 +154379,27in FHD Monitor,1,149.99,2019-02-06 10:11:00,392 Elm St, Austin,TX,73301 +154380,Bose SoundSport Headphones,1,99.99,2019-02-06 19:25:00,570 5th St, Boston,MA,02215 +154381,USB-C Charging Cable,1,11.95,2019-02-16 10:31:00,802 Jefferson St, San Francisco,CA,94016 +154382,Apple Airpods Headphones,1,150.0,2019-02-22 15:58:00,594 12th St, Boston,MA,02215 +154383,Lightning Charging Cable,1,14.95,2019-02-08 15:40:00,868 Washington St, Boston,MA,02215 +154384,AA Batteries (4-pack),1,3.84,2019-02-14 12:01:00,180 Wilson St, San Francisco,CA,94016 +154385,Apple Airpods Headphones,1,150.0,2019-02-18 15:45:00,422 Lakeview St, Portland,OR,97035 +154386,USB-C Charging Cable,1,11.95,2019-02-28 17:00:00,535 Walnut St, Atlanta,GA,30301 +154387,USB-C Charging Cable,1,11.95,2019-02-09 16:33:00,541 West St, San Francisco,CA,94016 +154388,Lightning Charging Cable,1,14.95,2019-02-24 22:38:00,197 Hickory St, New York City,NY,10001 +154389,Lightning Charging Cable,2,14.95,2019-02-28 11:45:00,190 8th St, Los Angeles,CA,90001 +154390,AAA Batteries (4-pack),1,2.99,2019-02-24 10:11:00,381 Highland St, New York City,NY,10001 +154391,Flatscreen TV,1,300.0,2019-02-12 12:40:00,718 Johnson St, New York City,NY,10001 +154392,Wired Headphones,1,11.99,2019-02-11 14:16:00,756 Dogwood St, Los Angeles,CA,90001 +154393,Macbook Pro Laptop,1,1700.0,2019-02-17 16:00:00,643 Sunset St, San Francisco,CA,94016 +154394,USB-C Charging Cable,1,11.95,2019-02-09 18:38:00,175 13th St, Portland,OR,97035 +154395,Apple Airpods Headphones,1,150.0,2019-02-27 22:36:00,30 Forest St, Boston,MA,02215 +154396,Apple Airpods Headphones,1,150.0,2019-02-09 02:26:00,353 North St, San Francisco,CA,94016 +154397,Apple Airpods Headphones,1,150.0,2019-02-24 18:44:00,260 Chestnut St, New York City,NY,10001 +154398,27in FHD Monitor,1,149.99,2019-02-25 12:24:00,784 Adams St, Atlanta,GA,30301 +154399,AA Batteries (4-pack),1,3.84,2019-02-19 12:11:00,805 7th St, Atlanta,GA,30301 +154400,Lightning Charging Cable,1,14.95,2019-02-17 04:02:00,12 West St, Los Angeles,CA,90001 +154401,Apple Airpods Headphones,1,150.0,2019-02-26 18:44:00,211 Lakeview St, Dallas,TX,75001 +154402,Apple Airpods Headphones,1,150.0,2019-02-03 11:54:00,50 Lake St, Dallas,TX,75001 +154403,Apple Airpods Headphones,1,150.0,2019-02-24 11:56:00,791 Chestnut St, San Francisco,CA,94016 +154404,Wired Headphones,1,11.99,2019-02-28 22:19:00,559 Wilson St, Austin,TX,73301 +154405,Wired Headphones,1,11.99,2019-02-16 11:52:00,541 Cedar St, New York City,NY,10001 +154406,USB-C Charging Cable,1,11.95,2019-02-12 06:28:00,964 Willow St, Austin,TX,73301 +154407,AA Batteries (4-pack),1,3.84,2019-02-24 13:20:00,485 Willow St, San Francisco,CA,94016 +154408,Lightning Charging Cable,1,14.95,2019-02-14 18:30:00,4 Wilson St, Boston,MA,02215 +154409,Lightning Charging Cable,1,14.95,2019-02-21 10:20:00,475 Forest St, San Francisco,CA,94016 +154410,Google Phone,1,600.0,2019-02-28 23:06:00,73 12th St, Atlanta,GA,30301 +154411,AA Batteries (4-pack),1,3.84,2019-02-19 11:36:00,642 South St, New York City,NY,10001 +154412,USB-C Charging Cable,1,11.95,2019-02-03 20:47:00,287 9th St, Portland,ME,04101 +154413,Flatscreen TV,1,300.0,2019-02-16 19:29:00,905 Lincoln St, Los Angeles,CA,90001 +154414,AAA Batteries (4-pack),2,2.99,2019-02-10 17:02:00,670 5th St, Los Angeles,CA,90001 +154415,20in Monitor,1,109.99,2019-02-05 07:54:00,323 North St, San Francisco,CA,94016 +154416,Google Phone,1,600.0,2019-02-06 12:05:00,111 Jackson St, New York City,NY,10001 +154417,iPhone,1,700.0,2019-02-08 17:32:00,640 Main St, New York City,NY,10001 +154417,Lightning Charging Cable,1,14.95,2019-02-08 17:32:00,640 Main St, New York City,NY,10001 +154418,Google Phone,1,600.0,2019-02-02 05:48:00,237 Cherry St, San Francisco,CA,94016 +154419,USB-C Charging Cable,1,11.95,2019-02-27 18:11:00,849 Spruce St, Boston,MA,02215 +154420,AA Batteries (4-pack),2,3.84,2019-02-27 21:25:00,554 11th St, Los Angeles,CA,90001 +154421,ThinkPad Laptop,1,999.99,2019-02-11 21:15:00,922 11th St, New York City,NY,10001 +154422,Apple Airpods Headphones,1,150.0,2019-02-05 18:20:00,726 West St, Los Angeles,CA,90001 +154423,USB-C Charging Cable,1,11.95,2019-02-13 18:01:00,691 Jefferson St, Los Angeles,CA,90001 +154424,AA Batteries (4-pack),2,3.84,2019-02-01 20:39:00,398 Park St, Seattle,WA,98101 +154425,Apple Airpods Headphones,1,150.0,2019-02-10 11:45:00,575 West St, San Francisco,CA,94016 +154426,AAA Batteries (4-pack),2,2.99,2019-02-08 02:12:00,603 13th St, Boston,MA,02215 +154427,Lightning Charging Cable,1,14.95,2019-02-07 14:28:00,836 Willow St, New York City,NY,10001 +154428,Bose SoundSport Headphones,1,99.99,2019-02-15 22:23:00,304 Lincoln St, Seattle,WA,98101 +154429,AAA Batteries (4-pack),1,2.99,2019-02-28 22:02:00,596 6th St, Boston,MA,02215 +154430,AAA Batteries (4-pack),3,2.99,2019-02-15 15:42:00,562 8th St, Los Angeles,CA,90001 +154431,AA Batteries (4-pack),1,3.84,2019-02-05 13:27:00,660 River St, Dallas,TX,75001 +154432,27in FHD Monitor,1,149.99,2019-02-10 00:32:00,653 Johnson St, San Francisco,CA,94016 +154433,AAA Batteries (4-pack),1,2.99,2019-02-28 14:21:00,113 Adams St, Dallas,TX,75001 +154434,AA Batteries (4-pack),1,3.84,2019-02-26 19:24:00,269 11th St, Dallas,TX,75001 +154435,20in Monitor,1,109.99,2019-02-11 09:53:00,769 Meadow St, New York City,NY,10001 +154436,Bose SoundSport Headphones,1,99.99,2019-02-16 10:36:00,567 North St, San Francisco,CA,94016 +154437,Lightning Charging Cable,1,14.95,2019-02-15 13:17:00,493 Dogwood St, Dallas,TX,75001 +154438,USB-C Charging Cable,1,11.95,2019-02-14 19:15:00,159 Chestnut St, Seattle,WA,98101 +154439,Wired Headphones,1,11.99,2019-02-10 19:56:00,112 Jackson St, Boston,MA,02215 +154440,AAA Batteries (4-pack),1,2.99,2019-02-18 20:29:00,467 Cherry St, Boston,MA,02215 +154441,Wired Headphones,1,11.99,2019-02-25 19:06:00,409 River St, San Francisco,CA,94016 +154442,USB-C Charging Cable,1,11.95,2019-02-04 13:56:00,89 Church St, San Francisco,CA,94016 +154443,Bose SoundSport Headphones,1,99.99,2019-02-12 19:03:00,364 Johnson St, Seattle,WA,98101 +154444,Wired Headphones,1,11.99,2019-02-09 09:43:00,95 Lakeview St, San Francisco,CA,94016 +154445,27in 4K Gaming Monitor,1,389.99,2019-02-16 19:45:00,688 Madison St, Los Angeles,CA,90001 +154446,Apple Airpods Headphones,1,150.0,2019-02-09 15:04:00,725 Hickory St, Atlanta,GA,30301 +154447,Apple Airpods Headphones,1,150.0,2019-02-22 19:40:00,30 Washington St, Seattle,WA,98101 +154448,AAA Batteries (4-pack),1,2.99,2019-02-12 21:56:00,902 Spruce St, Atlanta,GA,30301 +154449,Lightning Charging Cable,1,14.95,2019-02-01 20:30:00,2 Maple St, Los Angeles,CA,90001 +154450,AAA Batteries (4-pack),1,2.99,2019-02-07 19:10:00,69 Cherry St, Boston,MA,02215 +154451,Bose SoundSport Headphones,1,99.99,2019-02-03 15:11:00,337 Lakeview St, New York City,NY,10001 +154452,Google Phone,1,600.0,2019-02-11 11:01:00,624 4th St, New York City,NY,10001 +154453,Lightning Charging Cable,1,14.95,2019-02-12 18:13:00,214 2nd St, Seattle,WA,98101 +154454,AAA Batteries (4-pack),1,2.99,2019-02-05 07:49:00,127 5th St, San Francisco,CA,94016 +154455,AA Batteries (4-pack),2,3.84,2019-02-18 12:14:00,524 7th St, New York City,NY,10001 +154456,Wired Headphones,1,11.99,2019-02-08 09:43:00,34 10th St, New York City,NY,10001 +154457,AAA Batteries (4-pack),2,2.99,2019-02-20 21:37:00,585 South St, San Francisco,CA,94016 +154458,Apple Airpods Headphones,1,150.0,2019-02-27 16:03:00,880 Wilson St, Atlanta,GA,30301 +154459,Flatscreen TV,1,300.0,2019-02-16 23:54:00,872 8th St, Seattle,WA,98101 +154460,Wired Headphones,1,11.99,2019-02-26 09:57:00,83 Lincoln St, Dallas,TX,75001 +154461,AAA Batteries (4-pack),1,2.99,2019-02-14 12:38:00,102 Lincoln St, Boston,MA,02215 +154462,Macbook Pro Laptop,1,1700.0,2019-02-20 09:01:00,876 Hickory St, Atlanta,GA,30301 +154463,USB-C Charging Cable,1,11.95,2019-02-06 07:53:00,114 Ridge St, New York City,NY,10001 +154464,AA Batteries (4-pack),1,3.84,2019-02-06 12:34:00,775 River St, Atlanta,GA,30301 +154465,AA Batteries (4-pack),1,3.84,2019-02-04 23:01:00,438 Elm St, Los Angeles,CA,90001 +154466,Lightning Charging Cable,1,14.95,2019-02-23 10:14:00,849 Jackson St, San Francisco,CA,94016 +154467,AAA Batteries (4-pack),1,2.99,2019-02-03 00:17:00,316 Johnson St, New York City,NY,10001 +154468,Apple Airpods Headphones,1,150.0,2019-02-26 17:17:00,656 Adams St, San Francisco,CA,94016 +154469,AA Batteries (4-pack),1,3.84,2019-02-26 08:52:00,974 14th St, San Francisco,CA,94016 +154470,27in FHD Monitor,1,149.99,2019-02-25 16:32:00,706 Jefferson St, Atlanta,GA,30301 +154471,Google Phone,1,600.0,2019-02-10 14:59:00,906 6th St, Los Angeles,CA,90001 +154471,Wired Headphones,1,11.99,2019-02-10 14:59:00,906 6th St, Los Angeles,CA,90001 +154472,27in FHD Monitor,1,149.99,2019-02-22 15:51:00,461 11th St, Atlanta,GA,30301 +154473,Wired Headphones,1,11.99,2019-02-17 11:49:00,59 Johnson St, San Francisco,CA,94016 +154474,Wired Headphones,1,11.99,2019-02-23 10:18:00,557 Johnson St, Boston,MA,02215 +154475,20in Monitor,1,109.99,2019-02-22 12:49:00,347 4th St, San Francisco,CA,94016 +154476,34in Ultrawide Monitor,1,379.99,2019-02-01 10:39:00,598 North St, Los Angeles,CA,90001 +154477,Apple Airpods Headphones,1,150.0,2019-02-08 12:29:00,486 Willow St, Portland,ME,04101 +154478,27in 4K Gaming Monitor,1,389.99,2019-02-16 14:11:00,443 Highland St, Boston,MA,02215 +154479,Lightning Charging Cable,1,14.95,2019-02-14 11:48:00,901 Center St, Atlanta,GA,30301 +154480,Bose SoundSport Headphones,1,99.99,2019-02-07 11:53:00,506 Lakeview St, Atlanta,GA,30301 +154481,Lightning Charging Cable,1,14.95,2019-02-15 20:04:00,482 Lincoln St, Boston,MA,02215 +154482,Wired Headphones,1,11.99,2019-02-28 09:50:00,972 7th St, New York City,NY,10001 +154483,Macbook Pro Laptop,1,1700.0,2019-02-01 12:44:00,334 Adams St, New York City,NY,10001 +154484,Lightning Charging Cable,1,14.95,2019-02-23 16:57:00,285 Main St, Atlanta,GA,30301 +154485,USB-C Charging Cable,1,11.95,2019-02-20 09:29:00,534 West St, Los Angeles,CA,90001 +154486,27in 4K Gaming Monitor,1,389.99,2019-02-07 15:42:00,375 Church St, New York City,NY,10001 +154487,LG Washing Machine,1,600.0,2019-02-02 15:33:00,781 4th St, Los Angeles,CA,90001 +154488,Wired Headphones,1,11.99,2019-02-07 08:44:00,606 Jefferson St, Boston,MA,02215 +154489,USB-C Charging Cable,1,11.95,2019-02-15 14:18:00,608 Chestnut St, San Francisco,CA,94016 +154490,Wired Headphones,1,11.99,2019-02-17 17:02:00,509 River St, Los Angeles,CA,90001 +154491,Wired Headphones,1,11.99,2019-02-17 20:24:00,498 Ridge St, Los Angeles,CA,90001 +154492,Apple Airpods Headphones,1,150.0,2019-02-18 13:40:00,670 Pine St, Los Angeles,CA,90001 +154493,ThinkPad Laptop,1,999.99,2019-02-09 18:24:00,469 8th St, Los Angeles,CA,90001 +154494,AAA Batteries (4-pack),1,2.99,2019-02-18 16:47:00,793 Church St, San Francisco,CA,94016 +154495,USB-C Charging Cable,1,11.95,2019-02-07 09:48:00,163 Washington St, San Francisco,CA,94016 +154496,AAA Batteries (4-pack),3,2.99,2019-02-03 15:43:00,81 Church St, Seattle,WA,98101 +154497,LG Dryer,1,600.0,2019-02-23 16:03:00,307 10th St, Seattle,WA,98101 +154498,Wired Headphones,1,11.99,2019-02-09 11:05:00,434 6th St, Austin,TX,73301 +154499,Wired Headphones,1,11.99,2019-02-23 06:27:00,791 Wilson St, San Francisco,CA,94016 +154500,USB-C Charging Cable,1,11.95,2019-02-20 21:56:00,579 Dogwood St, Los Angeles,CA,90001 +154501,Wired Headphones,1,11.99,2019-02-20 06:24:00,866 Jefferson St, Portland,OR,97035 +154502,Lightning Charging Cable,1,14.95,2019-02-22 10:50:00,677 Center St, Dallas,TX,75001 +154503,Lightning Charging Cable,1,14.95,2019-02-10 19:20:00,303 Pine St, Los Angeles,CA,90001 +154504,Bose SoundSport Headphones,1,99.99,2019-02-19 07:02:00,984 Chestnut St, New York City,NY,10001 +154505,AAA Batteries (4-pack),1,2.99,2019-02-03 22:54:00,53 Lakeview St, San Francisco,CA,94016 +154506,Bose SoundSport Headphones,1,99.99,2019-02-26 10:59:00,878 7th St, Portland,OR,97035 +154507,Wired Headphones,1,11.99,2019-02-25 14:17:00,861 Madison St, Los Angeles,CA,90001 +154508,AAA Batteries (4-pack),1,2.99,2019-02-09 20:36:00,778 14th St, Portland,OR,97035 +154509,iPhone,1,700.0,2019-02-02 14:49:00,885 14th St, Los Angeles,CA,90001 +154510,Lightning Charging Cable,1,14.95,2019-02-16 16:18:00,296 Cherry St, Portland,OR,97035 +154511,Bose SoundSport Headphones,1,99.99,2019-02-17 23:52:00,85 Walnut St, New York City,NY,10001 +154511,27in FHD Monitor,1,149.99,2019-02-17 23:52:00,85 Walnut St, New York City,NY,10001 +154512,Macbook Pro Laptop,1,1700.0,2019-02-02 23:21:00,90 Park St, San Francisco,CA,94016 +154513,Google Phone,1,600.0,2019-02-02 20:35:00,636 1st St, Dallas,TX,75001 +154514,Google Phone,1,600.0,2019-02-17 18:47:00,172 Meadow St, San Francisco,CA,94016 +154515,20in Monitor,1,109.99,2019-02-05 10:54:00,524 Lakeview St, Atlanta,GA,30301 +154516,USB-C Charging Cable,1,11.95,2019-02-17 21:23:00,3 12th St, Dallas,TX,75001 +154517,AA Batteries (4-pack),1,3.84,2019-02-15 18:27:00,129 Ridge St, New York City,NY,10001 +154518,Google Phone,1,600.0,2019-02-20 14:53:00,499 Highland St, Boston,MA,02215 +154519,AA Batteries (4-pack),1,3.84,2019-02-14 06:13:00,879 Jackson St, Austin,TX,73301 +154520,AA Batteries (4-pack),2,3.84,2019-02-16 15:22:00,476 Elm St, Seattle,WA,98101 +154521,USB-C Charging Cable,1,11.95,2019-02-02 22:09:00,132 Dogwood St, Boston,MA,02215 +154522,Bose SoundSport Headphones,1,99.99,2019-02-20 21:07:00,447 Meadow St, Los Angeles,CA,90001 +154523,Lightning Charging Cable,1,14.95,2019-02-21 12:30:00,666 5th St, San Francisco,CA,94016 +154524,iPhone,1,700.0,2019-02-14 15:40:00,796 Lake St, Seattle,WA,98101 +154524,Apple Airpods Headphones,1,150.0,2019-02-14 15:40:00,796 Lake St, Seattle,WA,98101 +154525,34in Ultrawide Monitor,1,379.99,2019-02-19 14:25:00,972 Lakeview St, Atlanta,GA,30301 +154526,Google Phone,1,600.0,2019-02-23 17:11:00,952 7th St, Dallas,TX,75001 +154527,Lightning Charging Cable,1,14.95,2019-02-18 18:24:00,614 Cedar St, Boston,MA,02215 +154528,AA Batteries (4-pack),3,3.84,2019-02-03 19:30:00,8 9th St, Boston,MA,02215 +154529,Lightning Charging Cable,1,14.95,2019-02-21 16:12:00,843 Lincoln St, Los Angeles,CA,90001 +154530,20in Monitor,1,109.99,2019-02-21 16:04:00,503 Spruce St, Dallas,TX,75001 +154531,Bose SoundSport Headphones,1,99.99,2019-02-15 21:22:00,969 Chestnut St, Portland,OR,97035 +154532,Apple Airpods Headphones,1,150.0,2019-02-08 23:26:00,543 2nd St, Boston,MA,02215 +154533,Wired Headphones,1,11.99,2019-02-11 11:01:00,955 Highland St, Portland,ME,04101 +154534,27in FHD Monitor,1,149.99,2019-02-28 11:01:00,792 12th St, Boston,MA,02215 +154535,Apple Airpods Headphones,1,150.0,2019-02-03 13:06:00,253 Wilson St, New York City,NY,10001 +154536,Bose SoundSport Headphones,1,99.99,2019-02-03 09:28:00,777 Spruce St, San Francisco,CA,94016 +154537,Bose SoundSport Headphones,1,99.99,2019-02-23 14:45:00,712 Hill St, San Francisco,CA,94016 +154538,ThinkPad Laptop,1,999.99,2019-02-16 13:58:00,525 Adams St, Los Angeles,CA,90001 +154539,Wired Headphones,1,11.99,2019-02-06 20:31:00,972 5th St, New York City,NY,10001 +154540,AAA Batteries (4-pack),1,2.99,2019-02-14 14:35:00,548 Park St, San Francisco,CA,94016 +154541,AAA Batteries (4-pack),2,2.99,2019-02-18 20:31:00,513 Willow St, Los Angeles,CA,90001 +154542,AAA Batteries (4-pack),1,2.99,2019-02-17 11:02:00,720 4th St, Atlanta,GA,30301 +154543,USB-C Charging Cable,1,11.95,2019-02-05 12:58:00,601 14th St, Boston,MA,02215 +154544,Wired Headphones,2,11.99,2019-02-07 12:57:00,70 2nd St, Dallas,TX,75001 +154545,Bose SoundSport Headphones,1,99.99,2019-02-08 19:25:00,729 South St, Boston,MA,02215 +154546,Apple Airpods Headphones,1,150.0,2019-02-22 00:17:00,737 Meadow St, Austin,TX,73301 +154547,Flatscreen TV,1,300.0,2019-02-12 18:57:00,635 Jackson St, New York City,NY,10001 +154548,USB-C Charging Cable,1,11.95,2019-02-05 10:13:00,956 River St, Seattle,WA,98101 +154549,iPhone,1,700.0,2019-02-24 13:04:00,16 Madison St, Los Angeles,CA,90001 +154550,USB-C Charging Cable,1,11.95,2019-02-11 19:26:00,324 7th St, New York City,NY,10001 +154551,iPhone,1,700.0,2019-02-05 11:19:00,185 11th St, Los Angeles,CA,90001 +154552,USB-C Charging Cable,1,11.95,2019-02-05 16:54:00,363 Forest St, Seattle,WA,98101 +154553,34in Ultrawide Monitor,1,379.99,2019-02-27 19:16:00,340 Highland St, Dallas,TX,75001 +154554,AAA Batteries (4-pack),2,2.99,2019-02-18 08:34:00,889 Madison St, San Francisco,CA,94016 +154555,27in FHD Monitor,1,149.99,2019-02-27 13:19:00,412 West St, Atlanta,GA,30301 +154556,Wired Headphones,1,11.99,2019-02-22 04:17:00,534 Sunset St, Atlanta,GA,30301 +154557,Wired Headphones,1,11.99,2019-02-22 16:36:00,19 Park St, San Francisco,CA,94016 +154558,Flatscreen TV,1,300.0,2019-02-14 13:31:00,391 North St, Atlanta,GA,30301 +154559,AAA Batteries (4-pack),1,2.99,2019-02-01 20:35:00,929 8th St, Seattle,WA,98101 +154560,Lightning Charging Cable,1,14.95,2019-02-17 13:51:00,41 North St, San Francisco,CA,94016 +154561,Bose SoundSport Headphones,1,99.99,2019-02-22 11:58:00,154 Maple St, Dallas,TX,75001 +154562,AAA Batteries (4-pack),1,2.99,2019-02-23 10:03:00,139 Lincoln St, San Francisco,CA,94016 +154563,Apple Airpods Headphones,1,150.0,2019-02-07 20:13:00,88 Chestnut St, New York City,NY,10001 +154564,Google Phone,1,600.0,2019-02-28 18:36:00,948 Dogwood St, New York City,NY,10001 +154565,Wired Headphones,2,11.99,2019-02-05 10:05:00,884 Wilson St, San Francisco,CA,94016 +154566,Bose SoundSport Headphones,1,99.99,2019-02-24 12:03:00,970 Main St, Los Angeles,CA,90001 +154567,Apple Airpods Headphones,1,150.0,2019-02-15 07:42:00,600 Forest St, San Francisco,CA,94016 +154568,USB-C Charging Cable,1,11.95,2019-02-02 15:56:00,674 Hill St, Seattle,WA,98101 +154569,AA Batteries (4-pack),2,3.84,2019-02-25 18:19:00,732 Cedar St, Boston,MA,02215 +154570,Lightning Charging Cable,2,14.95,2019-02-10 09:26:00,127 5th St, Austin,TX,73301 +154571,USB-C Charging Cable,1,11.95,2019-02-26 13:57:00,111 10th St, New York City,NY,10001 +154572,Apple Airpods Headphones,1,150.0,2019-02-16 09:56:00,104 Lincoln St, Boston,MA,02215 +154573,AAA Batteries (4-pack),1,2.99,2019-02-21 14:56:00,332 6th St, San Francisco,CA,94016 +154574,AAA Batteries (4-pack),2,2.99,2019-02-08 13:11:00,257 Hill St, San Francisco,CA,94016 +154575,Google Phone,1,600.0,2019-02-22 17:39:00,321 Spruce St, Seattle,WA,98101 +154576,Google Phone,1,600.0,2019-02-22 10:40:00,331 Madison St, San Francisco,CA,94016 +154576,USB-C Charging Cable,1,11.95,2019-02-22 10:40:00,331 Madison St, San Francisco,CA,94016 +154577,AA Batteries (4-pack),3,3.84,2019-02-20 17:03:00,531 Park St, New York City,NY,10001 +154578,AAA Batteries (4-pack),2,2.99,2019-02-04 20:14:00,155 Forest St, Dallas,TX,75001 +154579,AA Batteries (4-pack),1,3.84,2019-02-13 19:09:00,771 Center St, Seattle,WA,98101 +154580,Google Phone,1,600.0,2019-02-09 17:59:00,849 Church St, Boston,MA,02215 +154580,USB-C Charging Cable,1,11.95,2019-02-09 17:59:00,849 Church St, Boston,MA,02215 +154581,27in 4K Gaming Monitor,1,389.99,2019-02-13 17:31:00,294 11th St, Atlanta,GA,30301 +154582,Bose SoundSport Headphones,1,99.99,2019-02-07 14:05:00,503 Elm St, New York City,NY,10001 +154583,27in FHD Monitor,1,149.99,2019-02-17 19:37:00,364 Park St, Portland,OR,97035 +154584,Apple Airpods Headphones,1,150.0,2019-02-19 15:44:00,959 Highland St, San Francisco,CA,94016 +154585,Wired Headphones,1,11.99,2019-02-03 15:48:00,772 4th St, Atlanta,GA,30301 +154586,Bose SoundSport Headphones,1,99.99,2019-02-21 10:32:00,963 Maple St, Los Angeles,CA,90001 +154587,27in 4K Gaming Monitor,1,389.99,2019-02-11 16:14:00,743 1st St, San Francisco,CA,94016 +154588,34in Ultrawide Monitor,1,379.99,2019-02-12 09:53:00,315 Washington St, San Francisco,CA,94016 +154589,Apple Airpods Headphones,1,150.0,2019-02-08 16:08:00,265 Park St, Los Angeles,CA,90001 +154590,AAA Batteries (4-pack),1,2.99,2019-02-01 17:12:00,109 Meadow St, Portland,ME,04101 +154591,Apple Airpods Headphones,1,150.0,2019-02-08 14:55:00,198 1st St, Atlanta,GA,30301 +154592,AAA Batteries (4-pack),1,2.99,2019-02-05 09:39:00,60 Lakeview St, Los Angeles,CA,90001 +154593,USB-C Charging Cable,1,11.95,2019-02-08 21:28:00,84 Lake St, San Francisco,CA,94016 +154594,Apple Airpods Headphones,1,150.0,2019-02-15 15:57:00,344 Elm St, San Francisco,CA,94016 +154595,Bose SoundSport Headphones,1,99.99,2019-02-21 11:31:00,629 Walnut St, Boston,MA,02215 +154596,Apple Airpods Headphones,1,150.0,2019-02-27 21:29:00,17 Maple St, Los Angeles,CA,90001 +154597,USB-C Charging Cable,1,11.95,2019-02-18 21:28:00,638 Johnson St, San Francisco,CA,94016 +154598,Bose SoundSport Headphones,1,99.99,2019-02-12 18:02:00,551 2nd St, Portland,ME,04101 +154599,AAA Batteries (4-pack),1,2.99,2019-02-17 08:42:00,490 12th St, Boston,MA,02215 +154600,AA Batteries (4-pack),2,3.84,2019-02-12 18:23:00,566 9th St, Austin,TX,73301 +154601,27in FHD Monitor,1,149.99,2019-02-21 12:46:00,923 Cherry St, Dallas,TX,75001 +154602,Apple Airpods Headphones,1,150.0,2019-02-12 04:18:00,109 Center St, Boston,MA,02215 +154603,AAA Batteries (4-pack),1,2.99,2019-02-03 21:41:00,217 Ridge St, Austin,TX,73301 +154604,Apple Airpods Headphones,1,150.0,2019-02-10 09:05:00,386 West St, Portland,OR,97035 +154605,iPhone,1,700.0,2019-02-02 12:42:00,844 Wilson St, Austin,TX,73301 +154606,27in 4K Gaming Monitor,1,389.99,2019-02-06 14:33:00,450 Pine St, Dallas,TX,75001 +154607,Lightning Charging Cable,1,14.95,2019-02-15 10:44:00,876 Adams St, Boston,MA,02215 +154608,Vareebadd Phone,1,400.0,2019-02-11 16:59:00,285 Washington St, San Francisco,CA,94016 +154609,AAA Batteries (4-pack),1,2.99,2019-02-04 11:26:00,999 12th St, Dallas,TX,75001 +154610,Wired Headphones,1,11.99,2019-02-11 16:20:00,30 4th St, San Francisco,CA,94016 +154611,Wired Headphones,1,11.99,2019-02-04 08:57:00,975 Wilson St, Los Angeles,CA,90001 +154611,27in 4K Gaming Monitor,1,389.99,2019-02-04 08:57:00,975 Wilson St, Los Angeles,CA,90001 +154612,USB-C Charging Cable,1,11.95,2019-02-13 02:03:00,817 12th St, New York City,NY,10001 +154613,Apple Airpods Headphones,1,150.0,2019-02-17 09:29:00,770 Jackson St, San Francisco,CA,94016 +154614,Bose SoundSport Headphones,1,99.99,2019-02-10 09:56:00,18 Ridge St, San Francisco,CA,94016 +154615,27in FHD Monitor,1,149.99,2019-02-09 11:31:00,990 5th St, Seattle,WA,98101 +154616,Wired Headphones,3,11.99,2019-02-24 23:02:00,906 6th St, San Francisco,CA,94016 +154617,Wired Headphones,1,11.99,2019-02-19 14:33:00,96 Elm St, Boston,MA,02215 +154618,ThinkPad Laptop,1,999.99,2019-02-13 20:19:00,313 4th St, New York City,NY,10001 +154619,20in Monitor,1,109.99,2019-02-21 19:00:00,415 Cherry St, Los Angeles,CA,90001 +154620,ThinkPad Laptop,1,999.99,2019-02-04 17:21:00,950 7th St, Seattle,WA,98101 +154621,USB-C Charging Cable,1,11.95,2019-02-14 14:54:00,58 Sunset St, Austin,TX,73301 +154622,AA Batteries (4-pack),1,3.84,2019-02-23 06:36:00,911 2nd St, Portland,ME,04101 +154623,27in 4K Gaming Monitor,1,389.99,2019-02-08 13:22:00,355 Chestnut St, Los Angeles,CA,90001 +154624,Bose SoundSport Headphones,1,99.99,2019-02-27 22:10:00,498 Sunset St, Austin,TX,73301 +154625,Apple Airpods Headphones,1,150.0,2019-02-02 16:22:00,851 Park St, Atlanta,GA,30301 +154626,AAA Batteries (4-pack),1,2.99,2019-02-26 00:42:00,145 Center St, Los Angeles,CA,90001 +154627,Apple Airpods Headphones,1,150.0,2019-02-21 08:54:00,437 7th St, Seattle,WA,98101 +154628,Google Phone,1,600.0,2019-02-06 11:14:00,330 Maple St, Atlanta,GA,30301 +154628,USB-C Charging Cable,1,11.95,2019-02-06 11:14:00,330 Maple St, Atlanta,GA,30301 +154629,Lightning Charging Cable,1,14.95,2019-02-01 14:05:00,904 Pine St, Dallas,TX,75001 +154630,USB-C Charging Cable,1,11.95,2019-02-02 23:47:00,542 Cherry St, Atlanta,GA,30301 +154631,Apple Airpods Headphones,1,150.0,2019-02-16 12:30:00,898 Lake St, San Francisco,CA,94016 +154632,AA Batteries (4-pack),1,3.84,2019-02-20 12:13:00,445 5th St, New York City,NY,10001 +154633,Flatscreen TV,1,300.0,2019-02-08 17:51:00,405 Jefferson St, Atlanta,GA,30301 +154634,Apple Airpods Headphones,1,150.0,2019-02-17 21:43:00,1 Pine St, New York City,NY,10001 +154635,Wired Headphones,1,11.99,2019-02-13 14:04:00,826 5th St, Austin,TX,73301 +154636,Wired Headphones,1,11.99,2019-02-19 12:59:00,866 Jefferson St, Los Angeles,CA,90001 +154637,Apple Airpods Headphones,1,150.0,2019-02-08 02:07:00,169 Main St, Dallas,TX,75001 +154638,27in FHD Monitor,1,149.99,2019-02-24 20:23:00,69 9th St, Seattle,WA,98101 +154639,27in FHD Monitor,1,149.99,2019-02-01 21:17:00,311 Forest St, New York City,NY,10001 +154640,USB-C Charging Cable,1,11.95,2019-02-25 01:36:00,457 Willow St, Los Angeles,CA,90001 +154641,AAA Batteries (4-pack),1,2.99,2019-02-14 18:30:00,399 Johnson St, New York City,NY,10001 +154642,Lightning Charging Cable,1,14.95,2019-02-17 12:16:00,708 Maple St, Los Angeles,CA,90001 +154643,AAA Batteries (4-pack),1,2.99,2019-02-15 09:32:00,666 14th St, New York City,NY,10001 +154644,Apple Airpods Headphones,1,150.0,2019-02-12 08:08:00,807 12th St, New York City,NY,10001 +154644,Lightning Charging Cable,1,14.95,2019-02-12 08:08:00,807 12th St, New York City,NY,10001 +154645,Wired Headphones,1,11.99,2019-02-02 18:25:00,477 Forest St, Los Angeles,CA,90001 +154646,Flatscreen TV,1,300.0,2019-02-06 19:08:00,470 Elm St, Austin,TX,73301 +154647,USB-C Charging Cable,1,11.95,2019-02-03 18:19:00,701 Sunset St, Atlanta,GA,30301 +154648,USB-C Charging Cable,1,11.95,2019-02-09 18:31:00,868 Adams St, San Francisco,CA,94016 +154649,USB-C Charging Cable,1,11.95,2019-02-18 17:36:00,385 Chestnut St, Boston,MA,02215 +154650,iPhone,1,700.0,2019-02-13 20:14:00,753 11th St, Boston,MA,02215 +154651,Wired Headphones,2,11.99,2019-02-05 10:26:00,77 Cherry St, Atlanta,GA,30301 +154652,AAA Batteries (4-pack),2,2.99,2019-02-08 13:50:00,105 Church St, San Francisco,CA,94016 +154653,AAA Batteries (4-pack),1,2.99,2019-02-28 22:48:00,143 North St, San Francisco,CA,94016 +154654,AAA Batteries (4-pack),1,2.99,2019-02-10 17:09:00,237 Willow St, Dallas,TX,75001 +154655,Google Phone,1,600.0,2019-02-08 06:39:00,644 10th St, Atlanta,GA,30301 +154655,USB-C Charging Cable,1,11.95,2019-02-08 06:39:00,644 10th St, Atlanta,GA,30301 +154656,ThinkPad Laptop,1,999.99,2019-02-13 18:51:00,896 13th St, Dallas,TX,75001 +154657,USB-C Charging Cable,1,11.95,2019-02-19 15:10:00,215 Walnut St, Dallas,TX,75001 +154658,Google Phone,1,600.0,2019-02-07 14:27:00,280 Wilson St, Dallas,TX,75001 +154658,USB-C Charging Cable,1,11.95,2019-02-07 14:27:00,280 Wilson St, Dallas,TX,75001 +154659,Lightning Charging Cable,1,14.95,2019-02-09 07:29:00,735 Cedar St, New York City,NY,10001 +154660,Bose SoundSport Headphones,1,99.99,2019-02-03 15:32:00,179 Park St, Portland,ME,04101 +154661,34in Ultrawide Monitor,1,379.99,2019-02-13 19:38:00,155 Church St, New York City,NY,10001 +154662,27in 4K Gaming Monitor,1,389.99,2019-02-25 08:45:00,557 Jackson St, Los Angeles,CA,90001 +154663,AA Batteries (4-pack),1,3.84,2019-02-14 13:03:00,586 Cedar St, San Francisco,CA,94016 +154664,AAA Batteries (4-pack),2,2.99,2019-02-11 10:20:00,636 Adams St, Portland,ME,04101 +154665,AA Batteries (4-pack),1,3.84,2019-02-22 07:47:00,914 Willow St, San Francisco,CA,94016 +154666,AAA Batteries (4-pack),1,2.99,2019-02-09 10:51:00,971 River St, Boston,MA,02215 +154667,Apple Airpods Headphones,1,150.0,2019-02-03 14:31:00,501 8th St, Dallas,TX,75001 +154668,AA Batteries (4-pack),4,3.84,2019-02-13 22:16:00,305 14th St, San Francisco,CA,94016 +154669,Wired Headphones,1,11.99,2019-02-08 18:54:00,986 Madison St, San Francisco,CA,94016 +154670,Lightning Charging Cable,1,14.95,2019-02-23 12:53:00,585 Adams St, San Francisco,CA,94016 +154671,AAA Batteries (4-pack),2,2.99,2019-02-09 20:47:00,940 Dogwood St, Los Angeles,CA,90001 +154672,34in Ultrawide Monitor,1,379.99,2019-02-20 19:54:00,123 Johnson St, San Francisco,CA,94016 +154673,AA Batteries (4-pack),1,3.84,2019-02-14 20:45:00,997 Chestnut St, Dallas,TX,75001 +154674,Wired Headphones,1,11.99,2019-02-11 15:31:00,880 Church St, New York City,NY,10001 +154675,AA Batteries (4-pack),1,3.84,2019-02-19 16:33:00,386 8th St, New York City,NY,10001 +154676,Flatscreen TV,1,300.0,2019-02-10 21:31:00,498 Dogwood St, San Francisco,CA,94016 +154677,Bose SoundSport Headphones,1,99.99,2019-02-23 17:32:00,581 Wilson St, Los Angeles,CA,90001 +154678,Google Phone,1,600.0,2019-02-09 14:19:00,147 Chestnut St, Boston,MA,02215 +154679,AAA Batteries (4-pack),1,2.99,2019-02-13 07:23:00,351 Madison St, San Francisco,CA,94016 +154679,34in Ultrawide Monitor,1,379.99,2019-02-13 07:23:00,351 Madison St, San Francisco,CA,94016 +154680,Apple Airpods Headphones,1,150.0,2019-02-24 09:01:00,104 Jefferson St, Atlanta,GA,30301 +154681,Wired Headphones,1,11.99,2019-02-07 13:57:00,84 Meadow St, Atlanta,GA,30301 +154682,AA Batteries (4-pack),1,3.84,2019-02-05 21:59:00,616 Maple St, San Francisco,CA,94016 +154683,Wired Headphones,1,11.99,2019-02-25 20:55:00,335 8th St, Seattle,WA,98101 +154684,Apple Airpods Headphones,1,150.0,2019-02-23 05:23:00,447 7th St, Atlanta,GA,30301 +154685,27in 4K Gaming Monitor,1,389.99,2019-02-17 07:42:00,34 Maple St, Los Angeles,CA,90001 +154686,34in Ultrawide Monitor,1,379.99,2019-02-08 15:52:00,281 1st St, San Francisco,CA,94016 +154687,Macbook Pro Laptop,1,1700.0,2019-02-08 11:34:00,362 Walnut St, Portland,ME,04101 +154688,Apple Airpods Headphones,1,150.0,2019-02-08 21:33:00,707 Lake St, Austin,TX,73301 +154689,27in FHD Monitor,1,149.99,2019-02-16 00:44:00,517 12th St, New York City,NY,10001 +154690,Apple Airpods Headphones,1,150.0,2019-02-24 12:51:00,119 Chestnut St, Dallas,TX,75001 +154691,Wired Headphones,1,11.99,2019-02-24 14:20:00,757 2nd St, Portland,ME,04101 +154692,Bose SoundSport Headphones,1,99.99,2019-02-15 14:11:00,84 Wilson St, Boston,MA,02215 +154693,Wired Headphones,1,11.99,2019-02-26 20:45:00,250 Wilson St, New York City,NY,10001 +154694,Bose SoundSport Headphones,1,99.99,2019-02-02 20:24:00,305 1st St, Atlanta,GA,30301 +154694,Lightning Charging Cable,1,14.95,2019-02-02 20:24:00,305 1st St, Atlanta,GA,30301 +154695,Lightning Charging Cable,1,14.95,2019-02-21 11:33:00,149 River St, Los Angeles,CA,90001 +154696,Lightning Charging Cable,1,14.95,2019-02-03 10:24:00,499 West St, Boston,MA,02215 +154697,AA Batteries (4-pack),1,3.84,2019-02-23 19:19:00,266 Main St, Los Angeles,CA,90001 +154698,Lightning Charging Cable,1,14.95,2019-02-01 15:05:00,269 Spruce St, San Francisco,CA,94016 +154699,Macbook Pro Laptop,1,1700.0,2019-02-13 10:52:00,412 Forest St, San Francisco,CA,94016 +154700,USB-C Charging Cable,1,11.95,2019-02-04 15:22:00,988 Madison St, Portland,ME,04101 +154701,AA Batteries (4-pack),1,3.84,2019-02-25 16:50:00,555 6th St, New York City,NY,10001 +154702,Macbook Pro Laptop,1,1700.0,2019-02-27 15:53:00,690 6th St, San Francisco,CA,94016 +154703,AA Batteries (4-pack),3,3.84,2019-02-11 16:53:00,251 Madison St, New York City,NY,10001 +154704,AA Batteries (4-pack),1,3.84,2019-02-09 13:26:00,262 River St, Portland,OR,97035 +154705,Wired Headphones,1,11.99,2019-02-22 13:17:00,246 7th St, San Francisco,CA,94016 +154706,20in Monitor,1,109.99,2019-02-19 02:48:00,140 Church St, Austin,TX,73301 +154707,Google Phone,1,600.0,2019-02-20 12:58:00,673 Main St, Atlanta,GA,30301 +154707,USB-C Charging Cable,1,11.95,2019-02-20 12:58:00,673 Main St, Atlanta,GA,30301 +154707,Wired Headphones,1,11.99,2019-02-20 12:58:00,673 Main St, Atlanta,GA,30301 +154708,AA Batteries (4-pack),3,3.84,2019-02-20 18:22:00,353 Lakeview St, San Francisco,CA,94016 +154709,Lightning Charging Cable,1,14.95,2019-02-28 19:05:00,370 Lakeview St, Atlanta,GA,30301 +154710,Apple Airpods Headphones,1,150.0,2019-02-07 11:25:00,601 5th St, Boston,MA,02215 +154711,Bose SoundSport Headphones,1,99.99,2019-02-18 10:52:00,855 1st St, Seattle,WA,98101 +154712,AA Batteries (4-pack),1,3.84,2019-02-04 23:37:00,826 Meadow St, San Francisco,CA,94016 +154713,Wired Headphones,2,11.99,2019-02-20 18:18:00,137 Wilson St, Boston,MA,02215 +154714,Lightning Charging Cable,2,14.95,2019-02-14 14:56:00,867 Lincoln St, Dallas,TX,75001 +154715,Apple Airpods Headphones,1,150.0,2019-02-21 19:22:00,217 Elm St, Austin,TX,73301 +154716,AA Batteries (4-pack),2,3.84,2019-02-22 23:08:00,320 Pine St, San Francisco,CA,94016 +154717,AA Batteries (4-pack),2,3.84,2019-02-20 11:56:00,883 Cherry St, Boston,MA,02215 +154718,Google Phone,1,600.0,2019-02-04 18:58:00,325 12th St, Seattle,WA,98101 +154719,Bose SoundSport Headphones,1,99.99,2019-02-18 18:51:00,819 Meadow St, Austin,TX,73301 +154720,USB-C Charging Cable,1,11.95,2019-02-12 15:04:00,66 Willow St, Los Angeles,CA,90001 +154721,AA Batteries (4-pack),1,3.84,2019-02-01 10:29:00,739 Willow St, Seattle,WA,98101 +154722,34in Ultrawide Monitor,1,379.99,2019-02-07 11:45:00,579 Walnut St, Los Angeles,CA,90001 +154723,AA Batteries (4-pack),1,3.84,2019-02-20 12:54:00,664 11th St, San Francisco,CA,94016 +154724,34in Ultrawide Monitor,1,379.99,2019-02-20 14:03:00,525 Cedar St, New York City,NY,10001 +154725,Wired Headphones,2,11.99,2019-02-17 12:41:00,408 9th St, Los Angeles,CA,90001 +154726,USB-C Charging Cable,1,11.95,2019-02-07 16:01:00,536 Highland St, San Francisco,CA,94016 +154727,AA Batteries (4-pack),5,3.84,2019-02-23 09:07:00,627 Walnut St, New York City,NY,10001 +154728,Wired Headphones,1,11.99,2019-02-09 23:15:00,355 Highland St, San Francisco,CA,94016 +154729,34in Ultrawide Monitor,1,379.99,2019-02-27 08:52:00,728 Hickory St, San Francisco,CA,94016 +154730,USB-C Charging Cable,1,11.95,2019-02-27 16:32:00,489 Ridge St, New York City,NY,10001 +154731,AA Batteries (4-pack),1,3.84,2019-02-20 13:48:00,699 12th St, Seattle,WA,98101 +154732,AAA Batteries (4-pack),1,2.99,2019-02-24 21:36:00,407 9th St, Atlanta,GA,30301 +154733,USB-C Charging Cable,1,11.95,2019-02-04 11:23:00,461 Spruce St, Austin,TX,73301 +154734,AAA Batteries (4-pack),2,2.99,2019-02-18 13:27:00,482 Cherry St, Los Angeles,CA,90001 +154735,Apple Airpods Headphones,1,150.0,2019-02-11 00:33:00,922 11th St, San Francisco,CA,94016 +154736,27in FHD Monitor,1,149.99,2019-02-07 12:22:00,787 Lake St, Dallas,TX,75001 +154737,Lightning Charging Cable,1,14.95,2019-02-01 17:59:00,513 10th St, San Francisco,CA,94016 +154738,Lightning Charging Cable,1,14.95,2019-02-27 07:51:00,845 2nd St, New York City,NY,10001 +154739,34in Ultrawide Monitor,1,379.99,2019-02-09 21:38:00,460 Dogwood St, San Francisco,CA,94016 +154740,USB-C Charging Cable,1,11.95,2019-02-08 14:31:00,667 Main St, Seattle,WA,98101 +154741,27in 4K Gaming Monitor,1,389.99,2019-02-13 00:55:00,831 Willow St, San Francisco,CA,94016 +154742,Lightning Charging Cable,1,14.95,2019-02-18 08:58:00,661 Maple St, Boston,MA,02215 +154743,Lightning Charging Cable,1,14.95,2019-02-05 14:09:00,986 4th St, Atlanta,GA,30301 +154744,USB-C Charging Cable,1,11.95,2019-02-24 11:10:00,218 Willow St, Portland,OR,97035 +154745,Apple Airpods Headphones,1,150.0,2019-02-24 08:29:00,374 Adams St, San Francisco,CA,94016 +154746,AAA Batteries (4-pack),1,2.99,2019-02-02 21:13:00,558 Sunset St, Dallas,TX,75001 +154747,27in 4K Gaming Monitor,1,389.99,2019-02-01 22:46:00,367 Cedar St, Austin,TX,73301 +154748,AA Batteries (4-pack),1,3.84,2019-02-24 10:31:00,454 Park St, Los Angeles,CA,90001 +154749,Wired Headphones,1,11.99,2019-02-16 16:35:00,76 Dogwood St, New York City,NY,10001 +154750,iPhone,1,700.0,2019-02-26 20:14:00,842 10th St, Austin,TX,73301 +154751,AA Batteries (4-pack),1,3.84,2019-02-09 18:13:00,422 West St, New York City,NY,10001 +154752,Apple Airpods Headphones,1,150.0,2019-02-23 12:59:00,994 Johnson St, Los Angeles,CA,90001 +154753,Lightning Charging Cable,1,14.95,2019-02-15 14:08:00,897 Hill St, San Francisco,CA,94016 +154754,Lightning Charging Cable,1,14.95,2019-02-08 15:01:00,219 10th St, Atlanta,GA,30301 +154755,USB-C Charging Cable,1,11.95,2019-02-03 17:54:00,348 River St, Portland,OR,97035 +154756,Lightning Charging Cable,1,14.95,2019-02-12 11:36:00,857 10th St, San Francisco,CA,94016 +154757,Wired Headphones,1,11.99,2019-02-07 09:42:00,561 Center St, Los Angeles,CA,90001 +154758,AA Batteries (4-pack),1,3.84,2019-02-03 12:09:00,799 4th St, Atlanta,GA,30301 +154759,Flatscreen TV,1,300.0,2019-02-16 11:53:00,778 14th St, San Francisco,CA,94016 +154760,27in FHD Monitor,1,149.99,2019-02-13 08:27:00,813 Pine St, Seattle,WA,98101 +154761,AA Batteries (4-pack),1,3.84,2019-02-11 09:28:00,733 River St, Los Angeles,CA,90001 +154762,Apple Airpods Headphones,1,150.0,2019-02-08 16:59:00,66 Lincoln St, Los Angeles,CA,90001 +154763,USB-C Charging Cable,1,11.95,2019-02-06 08:57:00,815 9th St, New York City,NY,10001 +154764,Wired Headphones,1,11.99,2019-02-05 19:48:00,394 Lincoln St, Austin,TX,73301 +154765,ThinkPad Laptop,1,999.99,2019-02-27 22:22:00,732 Jackson St, Austin,TX,73301 +154766,USB-C Charging Cable,1,11.95,2019-02-09 09:11:00,891 Spruce St, San Francisco,CA,94016 +154767,AAA Batteries (4-pack),2,2.99,2019-02-22 12:21:00,996 Forest St, Boston,MA,02215 +154768,AA Batteries (4-pack),1,3.84,2019-02-11 16:02:00,908 Hill St, Boston,MA,02215 +154769,Wired Headphones,2,11.99,2019-02-02 18:12:00,839 Main St, New York City,NY,10001 +154770,USB-C Charging Cable,1,11.95,2019-02-02 16:05:00,875 Sunset St, San Francisco,CA,94016 +154771,iPhone,1,700.0,2019-02-12 07:32:00,575 Cherry St, San Francisco,CA,94016 +154772,AAA Batteries (4-pack),1,2.99,2019-02-18 22:35:00,326 Wilson St, San Francisco,CA,94016 +154773,USB-C Charging Cable,1,11.95,2019-02-03 16:03:00,839 Lincoln St, Boston,MA,02215 +154774,Macbook Pro Laptop,1,1700.0,2019-02-24 07:44:00,583 Chestnut St, Los Angeles,CA,90001 +154775,iPhone,1,700.0,2019-02-27 00:10:00,856 Center St, Boston,MA,02215 +154776,AA Batteries (4-pack),1,3.84,2019-02-25 23:54:00,265 Lake St, Los Angeles,CA,90001 +154777,Apple Airpods Headphones,1,150.0,2019-02-27 20:17:00,184 4th St, Portland,ME,04101 +154778,Bose SoundSport Headphones,1,99.99,2019-02-18 17:40:00,798 Pine St, Los Angeles,CA,90001 +154779,Bose SoundSport Headphones,1,99.99,2019-02-20 15:17:00,226 Elm St, Portland,ME,04101 +154780,Bose SoundSport Headphones,1,99.99,2019-02-16 20:45:00,183 13th St, Portland,OR,97035 +154781,Bose SoundSport Headphones,1,99.99,2019-02-13 10:13:00,156 West St, Atlanta,GA,30301 +154782,27in FHD Monitor,1,149.99,2019-02-04 09:30:00,950 West St, New York City,NY,10001 +154783,Apple Airpods Headphones,1,150.0,2019-02-17 06:46:00,969 Walnut St, Los Angeles,CA,90001 +154784,27in 4K Gaming Monitor,1,389.99,2019-02-12 20:45:00,69 Ridge St, New York City,NY,10001 +154785,USB-C Charging Cable,1,11.95,2019-02-09 11:09:00,997 11th St, Dallas,TX,75001 +154786,Wired Headphones,1,11.99,2019-02-11 20:39:00,107 Walnut St, San Francisco,CA,94016 +154787,USB-C Charging Cable,1,11.95,2019-02-22 14:41:00,567 Park St, New York City,NY,10001 +154788,27in 4K Gaming Monitor,1,389.99,2019-02-21 18:09:00,77 7th St, Seattle,WA,98101 +154789,27in FHD Monitor,1,149.99,2019-02-28 23:04:00,201 Park St, San Francisco,CA,94016 +154790,AA Batteries (4-pack),1,3.84,2019-02-03 16:51:00,484 Park St, Seattle,WA,98101 +154791,Lightning Charging Cable,1,14.95,2019-02-18 09:30:00,183 9th St, Seattle,WA,98101 +154792,Wired Headphones,1,11.99,2019-02-25 20:31:00,701 Hickory St, San Francisco,CA,94016 +154793,AAA Batteries (4-pack),1,2.99,2019-02-14 15:24:00,710 5th St, New York City,NY,10001 +154794,20in Monitor,1,109.99,2019-02-07 17:26:00,93 4th St, New York City,NY,10001 +154795,Apple Airpods Headphones,1,150.0,2019-02-24 23:55:00,459 Sunset St, San Francisco,CA,94016 +154796,20in Monitor,1,109.99,2019-02-05 19:19:00,839 Washington St, Los Angeles,CA,90001 +154797,AAA Batteries (4-pack),1,2.99,2019-02-22 10:10:00,388 Dogwood St, Los Angeles,CA,90001 +154798,Wired Headphones,1,11.99,2019-02-22 14:04:00,156 Maple St, San Francisco,CA,94016 +154799,ThinkPad Laptop,1,999.99,2019-02-16 21:45:00,429 West St, Portland,OR,97035 +154800,Wired Headphones,1,11.99,2019-02-28 18:57:00,720 Johnson St, Boston,MA,02215 +154801,USB-C Charging Cable,1,11.95,2019-02-18 20:22:00,185 Wilson St, Atlanta,GA,30301 +154802,Bose SoundSport Headphones,1,99.99,2019-02-24 14:37:00,181 Adams St, Portland,OR,97035 +154803,AA Batteries (4-pack),1,3.84,2019-02-04 19:04:00,141 River St, New York City,NY,10001 +154804,USB-C Charging Cable,1,11.95,2019-02-21 18:41:00,513 Johnson St, Los Angeles,CA,90001 +154805,Apple Airpods Headphones,1,150.0,2019-02-04 13:30:00,567 11th St, Austin,TX,73301 +154806,Apple Airpods Headphones,1,150.0,2019-02-17 06:22:00,773 Highland St, Atlanta,GA,30301 +154807,AA Batteries (4-pack),2,3.84,2019-02-24 19:35:00,337 Hickory St, Dallas,TX,75001 +154808,Bose SoundSport Headphones,1,99.99,2019-02-02 20:01:00,475 Church St, Dallas,TX,75001 +154809,USB-C Charging Cable,2,11.95,2019-02-07 11:07:00,749 Cedar St, San Francisco,CA,94016 +154810,AAA Batteries (4-pack),1,2.99,2019-02-22 19:51:00,876 6th St, San Francisco,CA,94016 +154811,Wired Headphones,1,11.99,2019-02-25 22:10:00,637 Jefferson St, Seattle,WA,98101 +154812,Macbook Pro Laptop,1,1700.0,2019-02-14 14:49:00,443 9th St, Los Angeles,CA,90001 +154813,Wired Headphones,1,11.99,2019-02-08 20:27:00,297 Center St, San Francisco,CA,94016 +154814,AAA Batteries (4-pack),1,2.99,2019-02-02 10:09:00,80 Hickory St, Los Angeles,CA,90001 +154815,27in 4K Gaming Monitor,1,389.99,2019-02-02 23:14:00,725 Spruce St, New York City,NY,10001 +154816,Lightning Charging Cable,1,14.95,2019-02-24 10:06:00,663 Park St, New York City,NY,10001 +154817,USB-C Charging Cable,2,11.95,2019-02-12 08:31:00,720 6th St, San Francisco,CA,94016 +154818,Lightning Charging Cable,1,14.95,2019-02-04 23:39:00,521 Sunset St, Atlanta,GA,30301 +154819,USB-C Charging Cable,1,11.95,2019-02-27 23:43:00,436 Dogwood St, Los Angeles,CA,90001 +154820,Apple Airpods Headphones,1,150.0,2019-02-18 21:06:00,955 1st St, Dallas,TX,75001 +154821,Lightning Charging Cable,1,14.95,2019-02-18 10:56:00,662 Main St, New York City,NY,10001 +154822,USB-C Charging Cable,1,11.95,2019-02-02 12:34:00,32 Sunset St, Seattle,WA,98101 +154823,Macbook Pro Laptop,1,1700.0,2019-02-05 23:56:00,914 Dogwood St, Los Angeles,CA,90001 +154824,Apple Airpods Headphones,1,150.0,2019-02-14 16:31:00,501 River St, Boston,MA,02215 +154825,Bose SoundSport Headphones,1,99.99,2019-02-06 13:14:00,800 Adams St, Portland,OR,97035 +154826,iPhone,1,700.0,2019-02-11 11:57:00,799 Madison St, Atlanta,GA,30301 +154827,AA Batteries (4-pack),1,3.84,2019-02-14 14:27:00,121 11th St, Dallas,TX,75001 +154827,Apple Airpods Headphones,1,150.0,2019-02-14 14:27:00,121 11th St, Dallas,TX,75001 +154828,AA Batteries (4-pack),2,3.84,2019-02-04 06:01:00,841 Willow St, San Francisco,CA,94016 +154829,Google Phone,1,600.0,2019-02-27 15:26:00,955 5th St, Portland,ME,04101 +154830,AA Batteries (4-pack),1,3.84,2019-02-03 13:44:00,101 14th St, San Francisco,CA,94016 +154831,34in Ultrawide Monitor,1,379.99,2019-02-13 15:08:00,981 Elm St, San Francisco,CA,94016 +154832,Apple Airpods Headphones,1,150.0,2019-02-09 14:14:00,729 Hill St, New York City,NY,10001 +154833,AA Batteries (4-pack),1,3.84,2019-02-06 11:12:00,36 Spruce St, Boston,MA,02215 +154834,ThinkPad Laptop,1,999.99,2019-02-15 13:50:00,607 Hickory St, San Francisco,CA,94016 +154835,AAA Batteries (4-pack),2,2.99,2019-02-17 07:53:00,808 Meadow St, Los Angeles,CA,90001 +154836,Lightning Charging Cable,1,14.95,2019-02-01 18:37:00,191 11th St, Los Angeles,CA,90001 +154837,27in 4K Gaming Monitor,1,389.99,2019-02-12 23:23:00,777 Chestnut St, New York City,NY,10001 +154838,Google Phone,1,600.0,2019-02-20 12:34:00,972 North St, New York City,NY,10001 +154838,Bose SoundSport Headphones,1,99.99,2019-02-20 12:34:00,972 North St, New York City,NY,10001 +154839,AA Batteries (4-pack),1,3.84,2019-02-11 17:49:00,835 Ridge St, Portland,OR,97035 +154840,AAA Batteries (4-pack),1,2.99,2019-02-10 18:58:00,543 8th St, Seattle,WA,98101 +154841,Macbook Pro Laptop,1,1700.0,2019-02-28 21:16:00,538 6th St, New York City,NY,10001 +154842,USB-C Charging Cable,1,11.95,2019-02-10 10:34:00,245 11th St, San Francisco,CA,94016 +154843,Bose SoundSport Headphones,1,99.99,2019-02-10 13:34:00,22 8th St, New York City,NY,10001 +154844,Wired Headphones,1,11.99,2019-02-16 21:42:00,518 Park St, Atlanta,GA,30301 +154845,Lightning Charging Cable,1,14.95,2019-02-09 10:00:00,486 Highland St, Boston,MA,02215 +154846,34in Ultrawide Monitor,1,379.99,2019-02-24 00:51:00,254 Meadow St, Boston,MA,02215 +154847,AA Batteries (4-pack),1,3.84,2019-02-03 13:24:00,200 Main St, Dallas,TX,75001 +154848,Wired Headphones,2,11.99,2019-02-16 12:05:00,576 Hickory St, New York City,NY,10001 +154849,Wired Headphones,1,11.99,2019-02-10 17:39:00,743 Maple St, San Francisco,CA,94016 +154850,Lightning Charging Cable,1,14.95,2019-02-22 15:17:00,553 River St, San Francisco,CA,94016 +154851,AAA Batteries (4-pack),1,2.99,2019-02-13 08:55:00,370 4th St, Dallas,TX,75001 +154852,Lightning Charging Cable,1,14.95,2019-02-16 17:48:00,86 Highland St, Los Angeles,CA,90001 +154853,Bose SoundSport Headphones,1,99.99,2019-02-20 16:24:00,171 Jackson St, San Francisco,CA,94016 +154854,AAA Batteries (4-pack),2,2.99,2019-02-23 10:13:00,97 4th St, New York City,NY,10001 +154855,Wired Headphones,1,11.99,2019-02-05 14:30:00,473 Pine St, Dallas,TX,75001 +154856,USB-C Charging Cable,1,11.95,2019-02-17 20:54:00,196 Forest St, Los Angeles,CA,90001 +154857,AAA Batteries (4-pack),1,2.99,2019-02-24 10:22:00,414 Jackson St, Seattle,WA,98101 +154858,Lightning Charging Cable,1,14.95,2019-02-13 14:49:00,193 Maple St, San Francisco,CA,94016 +154859,AAA Batteries (4-pack),1,2.99,2019-02-19 15:09:00,326 Washington St, Seattle,WA,98101 +154860,27in FHD Monitor,1,149.99,2019-02-21 05:31:00,764 Ridge St, Portland,OR,97035 +154861,Wired Headphones,1,11.99,2019-02-28 21:21:00,225 4th St, Austin,TX,73301 +154862,Google Phone,1,600.0,2019-02-06 20:00:00,16 9th St, New York City,NY,10001 +154862,USB-C Charging Cable,1,11.95,2019-02-06 20:00:00,16 9th St, New York City,NY,10001 +154863,ThinkPad Laptop,1,999.99,2019-02-15 17:55:00,594 Cherry St, San Francisco,CA,94016 +154864,Wired Headphones,1,11.99,2019-02-01 19:07:00,158 West St, Boston,MA,02215 +154865,34in Ultrawide Monitor,1,379.99,2019-02-19 16:20:00,678 Lake St, Seattle,WA,98101 +154866,Wired Headphones,1,11.99,2019-02-03 20:11:00,13 South St, Atlanta,GA,30301 +154867,AA Batteries (4-pack),1,3.84,2019-02-17 07:03:00,950 South St, San Francisco,CA,94016 +154868,AAA Batteries (4-pack),1,2.99,2019-02-15 21:45:00,162 Pine St, Boston,MA,02215 +154869,AA Batteries (4-pack),1,3.84,2019-02-04 16:38:00,193 4th St, Boston,MA,02215 +154870,Lightning Charging Cable,1,14.95,2019-02-04 19:06:00,723 Church St, New York City,NY,10001 +154871,AA Batteries (4-pack),1,3.84,2019-02-01 15:43:00,927 14th St, Austin,TX,73301 +154872,Wired Headphones,1,11.99,2019-02-04 20:46:00,231 2nd St, Los Angeles,CA,90001 +154873,Bose SoundSport Headphones,1,99.99,2019-02-28 23:23:00,908 Highland St, Seattle,WA,98101 +154874,Lightning Charging Cable,1,14.95,2019-02-08 19:09:00,938 Cedar St, San Francisco,CA,94016 +154875,AAA Batteries (4-pack),1,2.99,2019-02-25 00:01:00,28 10th St, Atlanta,GA,30301 +154876,iPhone,1,700.0,2019-02-24 15:03:00,290 Cedar St, San Francisco,CA,94016 +154877,Wired Headphones,1,11.99,2019-02-18 12:48:00,602 12th St, Portland,OR,97035 +154878,Wired Headphones,1,11.99,2019-02-26 21:15:00,600 Johnson St, San Francisco,CA,94016 +154879,USB-C Charging Cable,2,11.95,2019-02-18 12:20:00,217 Lake St, Seattle,WA,98101 +154880,20in Monitor,1,109.99,2019-02-22 17:13:00,727 Willow St, Los Angeles,CA,90001 +154881,USB-C Charging Cable,1,11.95,2019-02-20 18:23:00,879 8th St, Atlanta,GA,30301 +154882,Flatscreen TV,1,300.0,2019-02-02 17:42:00,571 Adams St, Atlanta,GA,30301 +154883,Lightning Charging Cable,1,14.95,2019-02-12 08:59:00,439 Washington St, Dallas,TX,75001 +154884,AA Batteries (4-pack),1,3.84,2019-02-21 08:15:00,293 Chestnut St, San Francisco,CA,94016 +154885,Macbook Pro Laptop,1,1700.0,2019-02-20 20:49:00,57 Jackson St, Boston,MA,02215 +154886,ThinkPad Laptop,1,999.99,2019-02-20 18:05:00,413 Main St, San Francisco,CA,94016 +154887,AA Batteries (4-pack),1,3.84,2019-02-08 09:32:00,954 Spruce St, San Francisco,CA,94016 +154888,27in 4K Gaming Monitor,1,389.99,2019-02-16 18:52:00,156 Main St, Boston,MA,02215 +154889,Vareebadd Phone,1,400.0,2019-02-13 14:44:00,238 River St, Dallas,TX,75001 +154890,27in FHD Monitor,1,149.99,2019-02-13 12:35:00,259 Adams St, New York City,NY,10001 +154891,Lightning Charging Cable,1,14.95,2019-02-24 16:24:00,113 4th St, Boston,MA,02215 +154892,Wired Headphones,1,11.99,2019-02-18 13:22:00,169 5th St, Austin,TX,73301 +154893,Lightning Charging Cable,1,14.95,2019-02-28 13:59:00,756 Adams St, Boston,MA,02215 +154894,Apple Airpods Headphones,1,150.0,2019-02-16 09:30:00,931 2nd St, San Francisco,CA,94016 +154895,Flatscreen TV,1,300.0,2019-02-14 10:16:00,520 Lincoln St, Boston,MA,02215 +154896,27in 4K Gaming Monitor,1,389.99,2019-02-27 16:58:00,629 South St, Los Angeles,CA,90001 +154897,34in Ultrawide Monitor,1,379.99,2019-02-07 16:48:00,904 Pine St, Austin,TX,73301 +154898,Bose SoundSport Headphones,1,99.99,2019-02-14 21:50:00,855 Jackson St, Atlanta,GA,30301 +154899,AA Batteries (4-pack),2,3.84,2019-02-06 17:52:00,277 12th St, Dallas,TX,75001 +154900,Bose SoundSport Headphones,1,99.99,2019-02-14 20:15:00,380 Lincoln St, Atlanta,GA,30301 +154901,Apple Airpods Headphones,1,150.0,2019-02-19 10:45:00,42 Spruce St, Atlanta,GA,30301 +154902,Apple Airpods Headphones,1,150.0,2019-02-28 22:52:00,289 West St, Atlanta,GA,30301 +154903,USB-C Charging Cable,1,11.95,2019-02-27 18:44:00,640 10th St, Dallas,TX,75001 +154904,Apple Airpods Headphones,1,150.0,2019-02-05 19:23:00,939 Dogwood St, Portland,OR,97035 +154905,34in Ultrawide Monitor,1,379.99,2019-02-25 13:14:00,113 10th St, Boston,MA,02215 +154906,iPhone,1,700.0,2019-02-14 14:01:00,220 Hickory St, New York City,NY,10001 +154907,Wired Headphones,1,11.99,2019-02-13 15:25:00,373 Maple St, New York City,NY,10001 +154908,27in FHD Monitor,1,149.99,2019-02-24 21:59:00,639 Hill St, New York City,NY,10001 +154909,Lightning Charging Cable,1,14.95,2019-02-24 02:54:00,821 2nd St, Portland,OR,97035 +154910,USB-C Charging Cable,2,11.95,2019-02-17 12:50:00,595 9th St, Atlanta,GA,30301 +154911,Bose SoundSport Headphones,1,99.99,2019-02-24 01:27:00,230 Lake St, Los Angeles,CA,90001 +154912,Wired Headphones,1,11.99,2019-02-02 13:44:00,843 Cedar St, San Francisco,CA,94016 +154913,AA Batteries (4-pack),1,3.84,2019-02-01 10:16:00,582 Maple St, San Francisco,CA,94016 +154914,20in Monitor,1,109.99,2019-02-08 12:27:00,902 Center St, Los Angeles,CA,90001 +154915,AA Batteries (4-pack),2,3.84,2019-02-25 21:33:00,945 Washington St, Atlanta,GA,30301 +154916,AAA Batteries (4-pack),2,2.99,2019-02-07 08:20:00,948 West St, San Francisco,CA,94016 +154917,Lightning Charging Cable,1,14.95,2019-02-16 18:26:00,484 Dogwood St, Los Angeles,CA,90001 +154918,Apple Airpods Headphones,1,150.0,2019-02-21 20:45:00,106 River St, San Francisco,CA,94016 +154919,LG Washing Machine,1,600.0,2019-02-01 21:26:00,588 Lincoln St, New York City,NY,10001 +154920,USB-C Charging Cable,1,11.95,2019-02-04 11:25:00,648 North St, New York City,NY,10001 +154921,Wired Headphones,1,11.99,2019-02-20 06:44:00,87 West St, Dallas,TX,75001 +154922,AAA Batteries (4-pack),1,2.99,2019-02-25 22:52:00,672 Cherry St, Boston,MA,02215 +154923,USB-C Charging Cable,1,11.95,2019-02-08 14:51:00,694 Spruce St, New York City,NY,10001 +154924,USB-C Charging Cable,1,11.95,2019-02-16 10:57:00,33 Jackson St, Portland,OR,97035 +154925,iPhone,1,700.0,2019-02-07 21:29:00,695 Jackson St, Los Angeles,CA,90001 +154925,Wired Headphones,1,11.99,2019-02-07 21:29:00,695 Jackson St, Los Angeles,CA,90001 +154926,Apple Airpods Headphones,1,150.0,2019-02-10 14:24:00,737 Sunset St, Los Angeles,CA,90001 +154927,Apple Airpods Headphones,1,150.0,2019-02-16 07:57:00,549 North St, San Francisco,CA,94016 +154928,Lightning Charging Cable,2,14.95,2019-02-05 10:00:00,405 Johnson St, Seattle,WA,98101 +154929,Flatscreen TV,1,300.0,2019-02-10 16:51:00,722 South St, San Francisco,CA,94016 +154930,27in FHD Monitor,1,149.99,2019-02-10 14:44:00,708 13th St, Seattle,WA,98101 +154931,AAA Batteries (4-pack),1,2.99,2019-02-07 10:28:00,301 Center St, Portland,OR,97035 +154932,Bose SoundSport Headphones,1,99.99,2019-02-18 16:36:00,449 Park St, Portland,OR,97035 +154933,Bose SoundSport Headphones,1,99.99,2019-02-06 21:09:00,850 Park St, San Francisco,CA,94016 +154934,Wired Headphones,1,11.99,2019-02-01 11:49:00,166 14th St, San Francisco,CA,94016 +154935,Bose SoundSport Headphones,1,99.99,2019-02-11 21:28:00,731 Johnson St, Portland,OR,97035 +154936,Flatscreen TV,1,300.0,2019-02-28 22:58:00,446 Center St, Boston,MA,02215 +154937,USB-C Charging Cable,1,11.95,2019-02-11 07:42:00,603 6th St, Boston,MA,02215 +154938,Bose SoundSport Headphones,1,99.99,2019-02-25 19:50:00,875 Spruce St, New York City,NY,10001 +154939,20in Monitor,1,109.99,2019-02-15 13:07:00,470 Adams St, Los Angeles,CA,90001 +154940,Lightning Charging Cable,1,14.95,2019-02-10 19:17:00,590 Walnut St, Dallas,TX,75001 +154941,Wired Headphones,1,11.99,2019-02-03 12:45:00,284 11th St, San Francisco,CA,94016 +154942,USB-C Charging Cable,1,11.95,2019-02-17 15:47:00,767 12th St, San Francisco,CA,94016 +154943,AA Batteries (4-pack),1,3.84,2019-02-08 17:22:00,306 Church St, Dallas,TX,75001 +154943,34in Ultrawide Monitor,1,379.99,2019-02-08 17:22:00,306 Church St, Dallas,TX,75001 +154944,Wired Headphones,1,11.99,2019-02-17 09:30:00,837 Forest St, New York City,NY,10001 +154945,Bose SoundSport Headphones,1,99.99,2019-02-28 10:04:00,920 Jackson St, Boston,MA,02215 +154946,34in Ultrawide Monitor,1,379.99,2019-02-08 15:10:00,930 Washington St, Austin,TX,73301 +154947,34in Ultrawide Monitor,1,379.99,2019-02-05 17:51:00,757 4th St, San Francisco,CA,94016 +154948,Apple Airpods Headphones,1,150.0,2019-02-04 15:46:00,229 Sunset St, Seattle,WA,98101 +154949,LG Dryer,1,600.0,2019-02-15 23:03:00,508 9th St, New York City,NY,10001 +154950,AA Batteries (4-pack),1,3.84,2019-02-20 17:07:00,9 Forest St, Dallas,TX,75001 +154951,Wired Headphones,1,11.99,2019-02-26 22:15:00,859 Maple St, Austin,TX,73301 +154952,AAA Batteries (4-pack),1,2.99,2019-02-23 10:33:00,102 Johnson St, Portland,OR,97035 +154953,USB-C Charging Cable,1,11.95,2019-02-19 02:14:00,772 6th St, Boston,MA,02215 +154954,Lightning Charging Cable,1,14.95,2019-02-15 20:30:00,818 Elm St, Los Angeles,CA,90001 +154955,Lightning Charging Cable,1,14.95,2019-02-04 11:31:00,664 5th St, Los Angeles,CA,90001 +154956,Google Phone,1,600.0,2019-02-02 17:34:00,412 1st St, Atlanta,GA,30301 +154957,AAA Batteries (4-pack),1,2.99,2019-02-06 10:49:00,850 South St, Atlanta,GA,30301 +154958,Wired Headphones,1,11.99,2019-02-07 19:31:00,594 1st St, Boston,MA,02215 +154959,Apple Airpods Headphones,1,150.0,2019-02-19 12:08:00,141 Highland St, Atlanta,GA,30301 +154960,iPhone,1,700.0,2019-02-26 14:50:00,223 Church St, Austin,TX,73301 +154961,20in Monitor,1,109.99,2019-02-17 21:55:00,665 Willow St, San Francisco,CA,94016 +154962,27in 4K Gaming Monitor,1,389.99,2019-02-03 19:54:00,520 8th St, San Francisco,CA,94016 +154963,Wired Headphones,1,11.99,2019-02-10 22:47:00,821 Spruce St, Atlanta,GA,30301 +154964,AA Batteries (4-pack),1,3.84,2019-02-25 20:59:00,463 14th St, Boston,MA,02215 +154965,AA Batteries (4-pack),1,3.84,2019-02-01 19:03:00,656 Sunset St, Atlanta,GA,30301 +154966,34in Ultrawide Monitor,1,379.99,2019-02-05 09:52:00,395 Sunset St, Dallas,TX,75001 +154967,Bose SoundSport Headphones,1,99.99,2019-02-03 23:49:00,644 Main St, Los Angeles,CA,90001 +154968,Wired Headphones,1,11.99,2019-02-03 11:51:00,350 Ridge St, Austin,TX,73301 +154969,27in 4K Gaming Monitor,1,389.99,2019-02-11 19:38:00,983 13th St, Boston,MA,02215 +154970,USB-C Charging Cable,1,11.95,2019-02-09 13:05:00,906 Johnson St, Portland,OR,97035 +154971,Bose SoundSport Headphones,1,99.99,2019-02-22 20:26:00,435 Johnson St, Los Angeles,CA,90001 +154972,Google Phone,1,600.0,2019-02-18 20:16:00,178 Cedar St, Austin,TX,73301 +154973,AAA Batteries (4-pack),1,2.99,2019-02-20 15:05:00,736 Adams St, Atlanta,GA,30301 +154974,27in 4K Gaming Monitor,1,389.99,2019-02-08 10:07:00,767 Walnut St, San Francisco,CA,94016 +154975,Lightning Charging Cable,1,14.95,2019-02-23 03:55:00,887 Jefferson St, Dallas,TX,75001 +154976,Apple Airpods Headphones,1,150.0,2019-02-28 07:54:00,473 Johnson St, Atlanta,GA,30301 +154977,USB-C Charging Cable,1,11.95,2019-02-25 13:20:00,658 6th St, Seattle,WA,98101 +154978,Apple Airpods Headphones,1,150.0,2019-02-23 20:07:00,383 Johnson St, Austin,TX,73301 +154979,Lightning Charging Cable,1,14.95,2019-02-19 09:31:00,224 Wilson St, San Francisco,CA,94016 +154980,Lightning Charging Cable,1,14.95,2019-02-13 16:21:00,12 10th St, Atlanta,GA,30301 +154981,27in 4K Gaming Monitor,1,389.99,2019-02-16 13:38:00,421 6th St, Seattle,WA,98101 +154982,Wired Headphones,1,11.99,2019-02-04 21:39:00,202 Church St, Boston,MA,02215 +154983,Macbook Pro Laptop,1,1700.0,2019-02-27 21:14:00,634 11th St, New York City,NY,10001 +154984,iPhone,1,700.0,2019-02-05 16:45:00,573 Lake St, Seattle,WA,98101 +154985,Apple Airpods Headphones,1,150.0,2019-02-10 19:04:00,267 Pine St, Los Angeles,CA,90001 +154986,Lightning Charging Cable,1,14.95,2019-02-17 15:05:00,492 Pine St, New York City,NY,10001 +154987,AAA Batteries (4-pack),1,2.99,2019-02-24 20:30:00,270 Main St, Portland,OR,97035 +154988,USB-C Charging Cable,1,11.95,2019-02-03 19:38:00,300 Hill St, Seattle,WA,98101 +154989,Google Phone,1,600.0,2019-02-09 14:24:00,961 Jefferson St, San Francisco,CA,94016 +154989,USB-C Charging Cable,1,11.95,2019-02-09 14:24:00,961 Jefferson St, San Francisco,CA,94016 +154989,Bose SoundSport Headphones,1,99.99,2019-02-09 14:24:00,961 Jefferson St, San Francisco,CA,94016 +154990,Lightning Charging Cable,1,14.95,2019-02-24 15:25:00,769 Pine St, San Francisco,CA,94016 +154991,iPhone,1,700.0,2019-02-01 15:36:00,160 Center St, Los Angeles,CA,90001 +154992,AA Batteries (4-pack),2,3.84,2019-02-02 21:38:00,238 Lincoln St, Portland,OR,97035 +154993,AAA Batteries (4-pack),4,2.99,2019-02-06 19:52:00,104 Pine St, Boston,MA,02215 +154994,Bose SoundSport Headphones,1,99.99,2019-02-20 17:53:00,500 Jackson St, Los Angeles,CA,90001 +154995,Macbook Pro Laptop,1,1700.0,2019-02-22 17:58:00,285 4th St, San Francisco,CA,94016 +154996,Apple Airpods Headphones,1,150.0,2019-02-17 09:00:00,271 7th St, San Francisco,CA,94016 +154997,USB-C Charging Cable,1,11.95,2019-02-27 06:17:00,527 Hill St, Boston,MA,02215 +154998,AA Batteries (4-pack),1,3.84,2019-02-06 01:05:00,121 10th St, Los Angeles,CA,90001 +154999,Lightning Charging Cable,1,14.95,2019-02-10 19:37:00,574 Maple St, Atlanta,GA,30301 +155000,27in FHD Monitor,1,149.99,2019-02-03 09:12:00,747 1st St, Boston,MA,02215 +155001,AAA Batteries (4-pack),1,2.99,2019-02-04 20:06:00,704 Park St, San Francisco,CA,94016 +155002,AAA Batteries (4-pack),1,2.99,2019-02-14 17:39:00,779 Pine St, Dallas,TX,75001 +155003,ThinkPad Laptop,1,999.99,2019-02-25 13:26:00,753 Meadow St, New York City,NY,10001 +155004,Flatscreen TV,1,300.0,2019-02-06 13:54:00,244 Madison St, Boston,MA,02215 +155005,Apple Airpods Headphones,1,150.0,2019-02-25 12:27:00,118 Walnut St, San Francisco,CA,94016 +155006,Apple Airpods Headphones,1,150.0,2019-02-25 18:21:00,792 5th St, New York City,NY,10001 +155007,Wired Headphones,1,11.99,2019-02-02 08:48:00,157 Lake St, Boston,MA,02215 +155008,Lightning Charging Cable,2,14.95,2019-02-17 11:08:00,209 14th St, Atlanta,GA,30301 +155009,34in Ultrawide Monitor,1,379.99,2019-02-04 21:34:00,780 4th St, Seattle,WA,98101 +155010,AAA Batteries (4-pack),1,2.99,2019-02-08 09:05:00,561 10th St, San Francisco,CA,94016 +155011,Wired Headphones,2,11.99,2019-02-22 11:39:00,458 Adams St, Portland,OR,97035 +155012,34in Ultrawide Monitor,1,379.99,2019-02-01 20:11:00,697 Church St, Dallas,TX,75001 +155013,AAA Batteries (4-pack),2,2.99,2019-02-02 13:29:00,884 Hill St, New York City,NY,10001 +155014,iPhone,1,700.0,2019-02-03 12:13:00,755 9th St, Los Angeles,CA,90001 +155015,Lightning Charging Cable,2,14.95,2019-02-13 10:55:00,868 Maple St, San Francisco,CA,94016 +155016,Bose SoundSport Headphones,1,99.99,2019-02-02 14:09:00,444 North St, New York City,NY,10001 +155017,Wired Headphones,1,11.99,2019-02-21 13:01:00,768 Meadow St, San Francisco,CA,94016 +155018,AAA Batteries (4-pack),2,2.99,2019-02-28 07:02:00,393 7th St, San Francisco,CA,94016 +155019,Apple Airpods Headphones,1,150.0,2019-02-03 09:57:00,530 Maple St, Los Angeles,CA,90001 +155020,Wired Headphones,1,11.99,2019-02-24 16:29:00,731 Adams St, Austin,TX,73301 +155021,Bose SoundSport Headphones,1,99.99,2019-02-08 16:04:00,707 Willow St, Dallas,TX,75001 +155022,Bose SoundSport Headphones,1,99.99,2019-02-14 21:39:00,614 14th St, New York City,NY,10001 +155023,Lightning Charging Cable,1,14.95,2019-02-24 22:31:00,327 14th St, San Francisco,CA,94016 +155024,Lightning Charging Cable,1,14.95,2019-02-03 14:29:00,68 West St, Austin,TX,73301 +155025,Wired Headphones,1,11.99,2019-02-27 14:38:00,624 Lincoln St, Boston,MA,02215 +155026,AAA Batteries (4-pack),3,2.99,2019-02-23 12:02:00,436 Jefferson St, San Francisco,CA,94016 +155027,AAA Batteries (4-pack),1,2.99,2019-02-25 21:26:00,280 Lake St, Boston,MA,02215 +155028,Lightning Charging Cable,1,14.95,2019-02-16 21:46:00,814 2nd St, Dallas,TX,75001 +155029,27in 4K Gaming Monitor,1,389.99,2019-02-11 20:47:00,591 Madison St, New York City,NY,10001 +155030,AAA Batteries (4-pack),1,2.99,2019-02-24 19:21:00,194 6th St, New York City,NY,10001 +155031,Lightning Charging Cable,1,14.95,2019-02-15 06:52:00,805 Ridge St, Austin,TX,73301 +155031,Lightning Charging Cable,2,14.95,2019-02-15 06:52:00,805 Ridge St, Austin,TX,73301 +155032,34in Ultrawide Monitor,1,379.99,2019-02-18 18:31:00,355 Main St, Los Angeles,CA,90001 +155033,Macbook Pro Laptop,1,1700.0,2019-02-23 11:57:00,765 Forest St, Austin,TX,73301 +155034,USB-C Charging Cable,2,11.95,2019-02-18 16:48:00,979 Main St, Boston,MA,02215 +155035,Wired Headphones,1,11.99,2019-02-20 15:29:00,407 Sunset St, Seattle,WA,98101 +155036,iPhone,1,700.0,2019-02-14 21:35:00,180 North St, Los Angeles,CA,90001 +155037,Wired Headphones,1,11.99,2019-02-02 22:09:00,798 6th St, San Francisco,CA,94016 +155038,Macbook Pro Laptop,1,1700.0,2019-02-04 14:11:00,701 Sunset St, Seattle,WA,98101 +155039,Flatscreen TV,1,300.0,2019-02-09 21:26:00,84 Adams St, Dallas,TX,75001 +155040,Wired Headphones,1,11.99,2019-02-02 21:32:00,612 Chestnut St, Portland,OR,97035 +155041,Google Phone,1,600.0,2019-02-28 04:49:00,844 Jefferson St, Seattle,WA,98101 +155041,Bose SoundSport Headphones,1,99.99,2019-02-28 04:49:00,844 Jefferson St, Seattle,WA,98101 +155042,Flatscreen TV,1,300.0,2019-02-25 20:28:00,452 Meadow St, San Francisco,CA,94016 +155043,USB-C Charging Cable,1,11.95,2019-02-09 15:53:00,49 Cherry St, Dallas,TX,75001 +155044,USB-C Charging Cable,1,11.95,2019-02-06 14:55:00,858 Ridge St, San Francisco,CA,94016 +155045,AA Batteries (4-pack),1,3.84,2019-02-06 19:09:00,825 Adams St, Portland,OR,97035 +155046,Macbook Pro Laptop,1,1700.0,2019-02-06 21:28:00,417 14th St, Seattle,WA,98101 +155047,AAA Batteries (4-pack),1,2.99,2019-02-15 19:31:00,291 1st St, Los Angeles,CA,90001 +155048,34in Ultrawide Monitor,1,379.99,2019-02-09 12:12:00,257 Sunset St, Boston,MA,02215 +155049,Apple Airpods Headphones,1,150.0,2019-02-21 09:42:00,803 Jackson St, Los Angeles,CA,90001 +155050,27in 4K Gaming Monitor,1,389.99,2019-02-14 11:42:00,400 10th St, New York City,NY,10001 +155051,Bose SoundSport Headphones,1,99.99,2019-02-28 14:22:00,271 13th St, Portland,ME,04101 +155052,Flatscreen TV,1,300.0,2019-02-24 09:52:00,997 Elm St, Boston,MA,02215 +155053,Google Phone,1,600.0,2019-02-16 08:12:00,105 Spruce St, New York City,NY,10001 +155053,Bose SoundSport Headphones,1,99.99,2019-02-16 08:12:00,105 Spruce St, New York City,NY,10001 +155053,Wired Headphones,1,11.99,2019-02-16 08:12:00,105 Spruce St, New York City,NY,10001 +155054,USB-C Charging Cable,1,11.95,2019-02-05 13:44:00,485 7th St, Dallas,TX,75001 +155055,Bose SoundSport Headphones,1,99.99,2019-02-20 21:29:00,17 Maple St, New York City,NY,10001 +155056,Lightning Charging Cable,1,14.95,2019-02-01 18:03:00,522 Wilson St, Boston,MA,02215 +155057,Vareebadd Phone,1,400.0,2019-02-12 20:58:00,88 Lake St, New York City,NY,10001 +155057,USB-C Charging Cable,1,11.95,2019-02-12 20:58:00,88 Lake St, New York City,NY,10001 +155058,AA Batteries (4-pack),1,3.84,2019-02-26 13:59:00,125 West St, New York City,NY,10001 +155059,Lightning Charging Cable,1,14.95,2019-02-25 16:19:00,654 Sunset St, Atlanta,GA,30301 +155060,AAA Batteries (4-pack),1,2.99,2019-02-25 14:02:00,575 Johnson St, San Francisco,CA,94016 +155061,Flatscreen TV,1,300.0,2019-02-14 12:25:00,49 13th St, San Francisco,CA,94016 +155062,Lightning Charging Cable,1,14.95,2019-02-13 14:17:00,260 9th St, Portland,OR,97035 +155063,Apple Airpods Headphones,1,150.0,2019-02-24 14:44:00,922 Wilson St, New York City,NY,10001 +155064,AAA Batteries (4-pack),3,2.99,2019-02-12 20:24:00,681 Willow St, Boston,MA,02215 +155065,Google Phone,1,600.0,2019-02-09 21:18:00,875 11th St, Seattle,WA,98101 +155066,AAA Batteries (4-pack),2,2.99,2019-02-22 18:52:00,715 Jackson St, Los Angeles,CA,90001 +155067,34in Ultrawide Monitor,1,379.99,2019-02-22 11:14:00,764 Willow St, San Francisco,CA,94016 +155068,AA Batteries (4-pack),1,3.84,2019-02-18 11:19:00,40 Hickory St, New York City,NY,10001 +155069,27in 4K Gaming Monitor,1,389.99,2019-02-19 21:24:00,259 South St, Boston,MA,02215 +155070,ThinkPad Laptop,1,999.99,2019-02-23 10:06:00,732 Lincoln St, Seattle,WA,98101 +155071,Vareebadd Phone,1,400.0,2019-02-10 17:05:00,842 Adams St, San Francisco,CA,94016 +155071,USB-C Charging Cable,1,11.95,2019-02-10 17:05:00,842 Adams St, San Francisco,CA,94016 +155072,Apple Airpods Headphones,1,150.0,2019-02-18 13:22:00,866 5th St, New York City,NY,10001 +155073,34in Ultrawide Monitor,1,379.99,2019-02-04 12:34:00,450 Cherry St, New York City,NY,10001 +155074,Lightning Charging Cable,1,14.95,2019-02-07 20:30:00,405 6th St, Austin,TX,73301 +155075,Apple Airpods Headphones,1,150.0,2019-02-16 14:43:00,598 Jefferson St, Boston,MA,02215 +155076,Wired Headphones,1,11.99,2019-02-22 22:39:00,609 Park St, Dallas,TX,75001 +155077,Lightning Charging Cable,1,14.95,2019-02-19 07:10:00,79 Jefferson St, New York City,NY,10001 +155078,27in 4K Gaming Monitor,1,389.99,2019-02-11 23:03:00,78 Jefferson St, Boston,MA,02215 +155079,Macbook Pro Laptop,1,1700.0,2019-02-16 22:05:00,648 North St, Atlanta,GA,30301 +155080,Wired Headphones,1,11.99,2019-02-07 10:40:00,19 7th St, Los Angeles,CA,90001 +155081,Lightning Charging Cable,1,14.95,2019-02-02 19:41:00,141 Madison St, Austin,TX,73301 +155082,Lightning Charging Cable,1,14.95,2019-02-09 17:59:00,853 6th St, New York City,NY,10001 +155083,34in Ultrawide Monitor,1,379.99,2019-02-07 00:06:00,849 Sunset St, San Francisco,CA,94016 +155084,ThinkPad Laptop,1,999.99,2019-02-13 19:29:00,729 Ridge St, New York City,NY,10001 +155085,AAA Batteries (4-pack),1,2.99,2019-02-13 14:47:00,671 Madison St, Austin,TX,73301 +155086,34in Ultrawide Monitor,1,379.99,2019-02-04 11:37:00,594 Cherry St, Boston,MA,02215 +155087,AAA Batteries (4-pack),1,2.99,2019-02-11 00:22:00,124 13th St, Los Angeles,CA,90001 +155088,Wired Headphones,1,11.99,2019-02-09 08:06:00,638 Cedar St, Dallas,TX,75001 +155089,34in Ultrawide Monitor,1,379.99,2019-02-23 20:23:00,856 Sunset St, Dallas,TX,75001 +155090,AA Batteries (4-pack),2,3.84,2019-02-08 07:09:00,213 5th St, Seattle,WA,98101 +155091,AA Batteries (4-pack),1,3.84,2019-02-11 08:25:00,686 Lake St, Los Angeles,CA,90001 +155092,Wired Headphones,1,11.99,2019-02-04 10:20:00,180 Cherry St, New York City,NY,10001 +155093,Bose SoundSport Headphones,1,99.99,2019-02-26 18:46:00,779 9th St, Austin,TX,73301 +155094,AAA Batteries (4-pack),2,2.99,2019-02-17 12:05:00,290 Park St, San Francisco,CA,94016 +155095,Bose SoundSport Headphones,1,99.99,2019-02-28 06:59:00,694 North St, New York City,NY,10001 +155096,Wired Headphones,1,11.99,2019-02-28 21:28:00,753 Church St, Seattle,WA,98101 +155097,20in Monitor,1,109.99,2019-02-07 10:32:00,943 Wilson St, Portland,OR,97035 +155098,AAA Batteries (4-pack),1,2.99,2019-02-13 11:27:00,747 Lincoln St, Los Angeles,CA,90001 +155099,AA Batteries (4-pack),3,3.84,2019-02-21 09:51:00,156 Cedar St, Los Angeles,CA,90001 +155100,AA Batteries (4-pack),1,3.84,2019-02-08 23:28:00,894 11th St, San Francisco,CA,94016 +155101,USB-C Charging Cable,1,11.95,2019-02-16 22:11:00,521 5th St, Austin,TX,73301 +155102,Macbook Pro Laptop,1,1700.0,2019-02-05 06:08:00,880 Jackson St, San Francisco,CA,94016 +155103,AAA Batteries (4-pack),2,2.99,2019-02-18 12:11:00,619 Church St, San Francisco,CA,94016 +155104,Lightning Charging Cable,2,14.95,2019-02-21 18:53:00,422 7th St, New York City,NY,10001 +155105,USB-C Charging Cable,1,11.95,2019-02-18 20:13:00,768 Cherry St, Seattle,WA,98101 +155106,Bose SoundSport Headphones,1,99.99,2019-02-18 17:58:00,761 12th St, San Francisco,CA,94016 +155107,27in FHD Monitor,1,149.99,2019-02-07 21:47:00,824 Adams St, Los Angeles,CA,90001 +155108,ThinkPad Laptop,1,999.99,2019-02-22 17:22:00,145 Hill St, Seattle,WA,98101 +155109,27in 4K Gaming Monitor,1,389.99,2019-02-17 10:26:00,734 Ridge St, Seattle,WA,98101 +155110,ThinkPad Laptop,1,999.99,2019-02-15 12:05:00,520 Adams St, New York City,NY,10001 +155111,Apple Airpods Headphones,1,150.0,2019-02-07 12:07:00,447 Hill St, San Francisco,CA,94016 +155112,AAA Batteries (4-pack),4,2.99,2019-02-08 12:18:00,525 14th St, New York City,NY,10001 +155113,Wired Headphones,1,11.99,2019-02-09 11:57:00,478 6th St, San Francisco,CA,94016 +155114,Wired Headphones,1,11.99,2019-02-08 16:27:00,606 2nd St, Boston,MA,02215 +155115,34in Ultrawide Monitor,1,379.99,2019-02-05 12:53:00,625 Lake St, Los Angeles,CA,90001 +155116,34in Ultrawide Monitor,1,379.99,2019-02-20 21:29:00,658 Cedar St, Austin,TX,73301 +155117,Wired Headphones,1,11.99,2019-02-20 10:49:00,773 Washington St, San Francisco,CA,94016 +155117,Lightning Charging Cable,1,14.95,2019-02-20 10:49:00,773 Washington St, San Francisco,CA,94016 +155118,Flatscreen TV,1,300.0,2019-02-02 15:05:00,816 Chestnut St, Los Angeles,CA,90001 +155119,AAA Batteries (4-pack),1,2.99,2019-02-27 11:44:00,92 Adams St, Boston,MA,02215 +155120,ThinkPad Laptop,1,999.99,2019-02-04 14:03:00,833 Madison St, Los Angeles,CA,90001 +155121,Flatscreen TV,1,300.0,2019-02-21 16:49:00,450 Forest St, Boston,MA,02215 +155122,USB-C Charging Cable,1,11.95,2019-02-12 14:03:00,639 5th St, Portland,OR,97035 +155123,AA Batteries (4-pack),1,3.84,2019-02-11 17:49:00,742 Lakeview St, San Francisco,CA,94016 +155124,AA Batteries (4-pack),1,3.84,2019-02-10 09:51:00,947 West St, Seattle,WA,98101 +155125,27in FHD Monitor,1,149.99,2019-02-14 22:31:00,239 South St, New York City,NY,10001 +155126,Vareebadd Phone,1,400.0,2019-02-15 19:39:00,522 Walnut St, Portland,OR,97035 +155127,ThinkPad Laptop,1,999.99,2019-02-13 17:21:00,505 1st St, Boston,MA,02215 +155128,iPhone,1,700.0,2019-02-04 15:15:00,274 Chestnut St, Los Angeles,CA,90001 +155129,ThinkPad Laptop,1,999.99,2019-02-18 23:28:00,911 Sunset St, San Francisco,CA,94016 +155130,AAA Batteries (4-pack),3,2.99,2019-02-21 19:49:00,246 Maple St, New York City,NY,10001 +155130,AA Batteries (4-pack),1,3.84,2019-02-21 19:49:00,246 Maple St, New York City,NY,10001 +155131,Wired Headphones,1,11.99,2019-02-27 15:22:00,132 River St, Austin,TX,73301 +155132,AAA Batteries (4-pack),1,2.99,2019-02-04 10:41:00,760 Willow St, Los Angeles,CA,90001 +155133,Google Phone,1,600.0,2019-02-06 12:47:00,213 Spruce St, Dallas,TX,75001 +155134,27in FHD Monitor,1,149.99,2019-02-27 16:37:00,683 West St, San Francisco,CA,94016 +155135,Bose SoundSport Headphones,1,99.99,2019-02-12 00:25:00,473 River St, Austin,TX,73301 +155136,Wired Headphones,1,11.99,2019-02-02 19:40:00,619 Sunset St, Dallas,TX,75001 +155137,Lightning Charging Cable,1,14.95,2019-02-25 23:32:00,136 Sunset St, Boston,MA,02215 +155138,Apple Airpods Headphones,1,150.0,2019-02-07 07:21:00,418 Cherry St, Boston,MA,02215 +155139,AA Batteries (4-pack),1,3.84,2019-02-06 10:03:00,334 12th St, San Francisco,CA,94016 +155140,Apple Airpods Headphones,1,150.0,2019-02-05 05:18:00,471 Forest St, New York City,NY,10001 +155141,Wired Headphones,1,11.99,2019-02-17 22:10:00,758 Maple St, Atlanta,GA,30301 +155142,AA Batteries (4-pack),3,3.84,2019-02-28 15:42:00,789 Sunset St, Dallas,TX,75001 +155143,Wired Headphones,1,11.99,2019-02-22 08:16:00,60 North St, Los Angeles,CA,90001 +155144,AAA Batteries (4-pack),2,2.99,2019-02-27 18:38:00,681 North St, New York City,NY,10001 +155145,AAA Batteries (4-pack),3,2.99,2019-02-08 19:39:00,413 1st St, Austin,TX,73301 +155146,27in 4K Gaming Monitor,1,389.99,2019-02-24 21:38:00,898 Johnson St, Dallas,TX,75001 +155147,Flatscreen TV,1,300.0,2019-02-27 10:44:00,651 Forest St, San Francisco,CA,94016 +155148,Apple Airpods Headphones,1,150.0,2019-02-06 06:33:00,692 2nd St, Boston,MA,02215 +155149,Apple Airpods Headphones,1,150.0,2019-02-09 20:01:00,471 11th St, San Francisco,CA,94016 +155150,Apple Airpods Headphones,1,150.0,2019-02-01 07:57:00,738 Walnut St, San Francisco,CA,94016 +155151,34in Ultrawide Monitor,1,379.99,2019-02-12 13:32:00,22 Lakeview St, Austin,TX,73301 +155152,34in Ultrawide Monitor,1,379.99,2019-02-24 04:51:00,684 Lincoln St, Atlanta,GA,30301 +155153,USB-C Charging Cable,1,11.95,2019-02-20 00:33:00,997 Wilson St, New York City,NY,10001 +155154,AA Batteries (4-pack),1,3.84,2019-02-04 13:17:00,930 Walnut St, Boston,MA,02215 +155155,Lightning Charging Cable,1,14.95,2019-02-19 10:08:00,729 Washington St, Austin,TX,73301 +155156,Lightning Charging Cable,1,14.95,2019-02-24 07:50:00,721 2nd St, Los Angeles,CA,90001 +155157,Flatscreen TV,1,300.0,2019-02-22 21:32:00,902 8th St, Seattle,WA,98101 +155158,ThinkPad Laptop,1,999.99,2019-02-20 16:19:00,27 Lincoln St, Boston,MA,02215 +155159,USB-C Charging Cable,1,11.95,2019-02-06 22:10:00,34 Hill St, San Francisco,CA,94016 +155160,34in Ultrawide Monitor,1,379.99,2019-02-11 00:59:00,191 Walnut St, Dallas,TX,75001 +155161,27in 4K Gaming Monitor,1,389.99,2019-02-17 14:58:00,477 Adams St, San Francisco,CA,94016 +155162,34in Ultrawide Monitor,1,379.99,2019-02-24 13:53:00,418 Highland St, Los Angeles,CA,90001 +155163,Google Phone,1,600.0,2019-02-26 14:32:00,361 13th St, New York City,NY,10001 +155164,Vareebadd Phone,1,400.0,2019-02-06 17:27:00,828 11th St, Los Angeles,CA,90001 +155165,AAA Batteries (4-pack),1,2.99,2019-02-16 14:09:00,668 Pine St, San Francisco,CA,94016 +155166,Flatscreen TV,1,300.0,2019-02-14 20:33:00,110 Church St, Atlanta,GA,30301 +155167,27in 4K Gaming Monitor,1,389.99,2019-02-09 13:30:00,861 1st St, Atlanta,GA,30301 +155168,AA Batteries (4-pack),1,3.84,2019-02-21 17:01:00,642 Hickory St, New York City,NY,10001 +155169,Apple Airpods Headphones,1,150.0,2019-02-10 13:38:00,508 2nd St, Los Angeles,CA,90001 +155170,USB-C Charging Cable,1,11.95,2019-02-01 22:50:00,317 Cedar St, San Francisco,CA,94016 +155171,iPhone,1,700.0,2019-02-21 19:12:00,798 4th St, Dallas,TX,75001 +155172,AAA Batteries (4-pack),1,2.99,2019-02-12 19:58:00,53 Spruce St, Portland,OR,97035 +155173,AA Batteries (4-pack),2,3.84,2019-02-07 10:16:00,283 Spruce St, New York City,NY,10001 +155174,34in Ultrawide Monitor,1,379.99,2019-02-27 09:30:00,63 Jefferson St, San Francisco,CA,94016 +155175,Apple Airpods Headphones,1,150.0,2019-02-13 16:28:00,733 Hickory St, New York City,NY,10001 +155176,34in Ultrawide Monitor,1,379.99,2019-02-28 01:03:00,858 8th St, San Francisco,CA,94016 +155177,34in Ultrawide Monitor,1,379.99,2019-02-26 18:18:00,851 2nd St, Seattle,WA,98101 +155178,Flatscreen TV,1,300.0,2019-02-08 20:21:00,541 South St, Los Angeles,CA,90001 +155179,Apple Airpods Headphones,1,150.0,2019-02-02 22:39:00,337 14th St, New York City,NY,10001 +155180,LG Washing Machine,1,600.0,2019-02-24 15:48:00,3 6th St, New York City,NY,10001 +155181,Lightning Charging Cable,1,14.95,2019-02-06 18:30:00,80 Jackson St, Dallas,TX,75001 +155182,34in Ultrawide Monitor,1,379.99,2019-02-06 23:40:00,701 Walnut St, Los Angeles,CA,90001 +155183,USB-C Charging Cable,1,11.95,2019-02-27 10:23:00,738 Center St, New York City,NY,10001 +155184,USB-C Charging Cable,1,11.95,2019-02-17 16:51:00,303 6th St, Boston,MA,02215 +155185,27in FHD Monitor,1,149.99,2019-02-20 22:21:00,779 Church St, San Francisco,CA,94016 +155185,Macbook Pro Laptop,1,1700.0,2019-02-20 22:21:00,779 Church St, San Francisco,CA,94016 +155186,Flatscreen TV,1,300.0,2019-02-07 17:42:00,778 10th St, San Francisco,CA,94016 +155187,Apple Airpods Headphones,1,150.0,2019-02-08 17:28:00,337 Maple St, New York City,NY,10001 +155188,Macbook Pro Laptop,1,1700.0,2019-02-25 11:26:00,566 Dogwood St, Los Angeles,CA,90001 +155189,ThinkPad Laptop,1,999.99,2019-02-20 22:15:00,295 Elm St, New York City,NY,10001 +155190,Lightning Charging Cable,1,14.95,2019-02-07 11:20:00,500 13th St, San Francisco,CA,94016 +155191,Google Phone,1,600.0,2019-02-09 11:33:00,462 River St, Dallas,TX,75001 +155192,Macbook Pro Laptop,1,1700.0,2019-02-16 16:06:00,473 Sunset St, Dallas,TX,75001 +155193,AAA Batteries (4-pack),1,2.99,2019-02-27 13:25:00,550 8th St, Dallas,TX,75001 +155194,Wired Headphones,1,11.99,2019-02-12 14:08:00,585 8th St, San Francisco,CA,94016 +155195,AA Batteries (4-pack),1,3.84,2019-02-11 18:58:00,581 Adams St, San Francisco,CA,94016 +155196,AAA Batteries (4-pack),1,2.99,2019-02-02 10:17:00,194 Lincoln St, Austin,TX,73301 +155197,Apple Airpods Headphones,1,150.0,2019-02-09 11:26:00,469 Center St, Seattle,WA,98101 +155198,AAA Batteries (4-pack),1,2.99,2019-02-26 07:17:00,170 13th St, San Francisco,CA,94016 +155199,Apple Airpods Headphones,1,150.0,2019-02-21 06:43:00,638 West St, San Francisco,CA,94016 +155200,Lightning Charging Cable,1,14.95,2019-02-23 21:18:00,24 14th St, Los Angeles,CA,90001 +155201,34in Ultrawide Monitor,1,379.99,2019-02-07 20:47:00,375 Johnson St, Los Angeles,CA,90001 +155202,AA Batteries (4-pack),1,3.84,2019-02-01 20:33:00,405 Spruce St, New York City,NY,10001 +155203,Lightning Charging Cable,1,14.95,2019-02-09 23:59:00,351 Ridge St, Los Angeles,CA,90001 +155204,Lightning Charging Cable,1,14.95,2019-02-11 06:37:00,495 Adams St, San Francisco,CA,94016 +155205,iPhone,1,700.0,2019-02-25 09:03:00,693 Hill St, New York City,NY,10001 +155205,Lightning Charging Cable,1,14.95,2019-02-25 09:03:00,693 Hill St, New York City,NY,10001 +155206,Lightning Charging Cable,1,14.95,2019-02-25 18:51:00,755 8th St, Portland,OR,97035 +155207,34in Ultrawide Monitor,1,379.99,2019-02-27 13:35:00,769 10th St, San Francisco,CA,94016 +155208,USB-C Charging Cable,1,11.95,2019-02-25 17:04:00,826 2nd St, New York City,NY,10001 +155209,27in 4K Gaming Monitor,1,389.99,2019-02-18 21:52:00,288 River St, Boston,MA,02215 +155209,USB-C Charging Cable,2,11.95,2019-02-18 21:52:00,288 River St, Boston,MA,02215 +155210,Apple Airpods Headphones,1,150.0,2019-02-08 09:11:00,506 River St, Boston,MA,02215 +155211,Lightning Charging Cable,1,14.95,2019-02-24 19:56:00,715 7th St, San Francisco,CA,94016 +155212,Wired Headphones,1,11.99,2019-02-28 05:40:00,220 Jackson St, Portland,OR,97035 +155213,AA Batteries (4-pack),1,3.84,2019-02-12 12:22:00,890 14th St, San Francisco,CA,94016 +155214,34in Ultrawide Monitor,1,379.99,2019-02-05 14:29:00,966 Spruce St, Austin,TX,73301 +155215,USB-C Charging Cable,1,11.95,2019-02-19 19:23:00,992 Cedar St, San Francisco,CA,94016 +155216,USB-C Charging Cable,3,11.95,2019-02-24 12:53:00,967 Main St, Los Angeles,CA,90001 +155217,AAA Batteries (4-pack),1,2.99,2019-02-20 09:46:00,148 Johnson St, Los Angeles,CA,90001 +155218,Wired Headphones,1,11.99,2019-02-01 11:00:00,459 Johnson St, Seattle,WA,98101 +155219,Apple Airpods Headphones,1,150.0,2019-02-07 17:54:00,377 2nd St, Atlanta,GA,30301 +155220,Bose SoundSport Headphones,1,99.99,2019-02-24 19:33:00,633 Walnut St, New York City,NY,10001 +155221,USB-C Charging Cable,1,11.95,2019-02-02 02:17:00,634 Spruce St, Los Angeles,CA,90001 +155222,Lightning Charging Cable,1,14.95,2019-02-16 10:19:00,199 Spruce St, San Francisco,CA,94016 +155223,AA Batteries (4-pack),2,3.84,2019-02-07 20:26:00,772 Lake St, Atlanta,GA,30301 +155224,AA Batteries (4-pack),2,3.84,2019-02-21 23:52:00,104 6th St, San Francisco,CA,94016 +155225,Lightning Charging Cable,1,14.95,2019-02-18 18:18:00,569 Lakeview St, New York City,NY,10001 +155226,27in FHD Monitor,1,149.99,2019-02-11 19:41:00,620 Forest St, San Francisco,CA,94016 +155227,Vareebadd Phone,1,400.0,2019-02-28 17:40:00,887 Washington St, Dallas,TX,75001 +155228,Google Phone,1,600.0,2019-02-28 12:11:00,575 Johnson St, Los Angeles,CA,90001 +155229,Flatscreen TV,1,300.0,2019-02-17 15:00:00,902 Sunset St, Boston,MA,02215 +155230,Lightning Charging Cable,1,14.95,2019-02-28 20:13:00,918 11th St, Portland,OR,97035 +155231,AAA Batteries (4-pack),2,2.99,2019-02-14 12:53:00,236 5th St, Boston,MA,02215 +155232,Apple Airpods Headphones,1,150.0,2019-02-09 09:52:00,475 Spruce St, Atlanta,GA,30301 +155233,AA Batteries (4-pack),1,3.84,2019-02-10 16:53:00,13 5th St, Los Angeles,CA,90001 +155234,USB-C Charging Cable,1,11.95,2019-02-09 05:50:00,127 12th St, New York City,NY,10001 +155235,Wired Headphones,1,11.99,2019-02-21 10:10:00,202 Lakeview St, New York City,NY,10001 +155236,AA Batteries (4-pack),1,3.84,2019-02-12 21:04:00,417 Lincoln St, New York City,NY,10001 +155237,iPhone,1,700.0,2019-02-04 22:15:00,337 10th St, San Francisco,CA,94016 +155237,Wired Headphones,1,11.99,2019-02-04 22:15:00,337 10th St, San Francisco,CA,94016 +155238,AA Batteries (4-pack),1,3.84,2019-02-19 15:55:00,79 Adams St, New York City,NY,10001 +155239,Google Phone,1,600.0,2019-02-08 18:19:00,33 Center St, San Francisco,CA,94016 +155239,USB-C Charging Cable,1,11.95,2019-02-08 18:19:00,33 Center St, San Francisco,CA,94016 +155240,Macbook Pro Laptop,1,1700.0,2019-02-08 11:58:00,405 Sunset St, San Francisco,CA,94016 +155241,27in FHD Monitor,1,149.99,2019-02-20 10:25:00,271 Washington St, Boston,MA,02215 +155242,iPhone,1,700.0,2019-02-20 13:28:00,603 Spruce St, Boston,MA,02215 +155242,Lightning Charging Cable,1,14.95,2019-02-20 13:28:00,603 Spruce St, Boston,MA,02215 +155243,AAA Batteries (4-pack),1,2.99,2019-02-21 21:34:00,693 Ridge St, San Francisco,CA,94016 +155244,USB-C Charging Cable,1,11.95,2019-02-25 12:44:00,47 Elm St, New York City,NY,10001 +155245,AAA Batteries (4-pack),2,2.99,2019-02-22 19:04:00,375 Dogwood St, Seattle,WA,98101 +155246,AA Batteries (4-pack),1,3.84,2019-02-17 10:47:00,394 9th St, Boston,MA,02215 +155247,Wired Headphones,1,11.99,2019-02-02 19:09:00,46 Forest St, Dallas,TX,75001 +155248,Lightning Charging Cable,1,14.95,2019-02-24 12:05:00,538 Johnson St, San Francisco,CA,94016 +155249,ThinkPad Laptop,1,999.99,2019-02-27 11:58:00,321 2nd St, New York City,NY,10001 +155250,AAA Batteries (4-pack),1,2.99,2019-02-10 06:34:00,182 Park St, San Francisco,CA,94016 +155251,Lightning Charging Cable,1,14.95,2019-02-05 08:31:00,875 Dogwood St, New York City,NY,10001 +155252,Google Phone,1,600.0,2019-02-17 00:19:00,210 Chestnut St, San Francisco,CA,94016 +155253,AAA Batteries (4-pack),1,2.99,2019-02-13 14:31:00,456 Chestnut St, Portland,OR,97035 +155254,USB-C Charging Cable,1,11.95,2019-02-27 18:28:00,183 Meadow St, San Francisco,CA,94016 +155255,Apple Airpods Headphones,1,150.0,2019-02-22 17:24:00,240 14th St, San Francisco,CA,94016 +155256,Lightning Charging Cable,1,14.95,2019-02-24 21:29:00,201 Cherry St, San Francisco,CA,94016 +155257,Apple Airpods Headphones,1,150.0,2019-02-02 12:31:00,423 South St, San Francisco,CA,94016 +155258,USB-C Charging Cable,1,11.95,2019-02-09 08:42:00,598 14th St, San Francisco,CA,94016 +155259,AAA Batteries (4-pack),1,2.99,2019-02-27 12:47:00,850 14th St, San Francisco,CA,94016 +155260,27in 4K Gaming Monitor,1,389.99,2019-02-26 09:15:00,196 14th St, New York City,NY,10001 +155261,AAA Batteries (4-pack),2,2.99,2019-02-11 08:14:00,45 1st St, Portland,OR,97035 +155262,AA Batteries (4-pack),1,3.84,2019-02-26 01:09:00,98 Hickory St, Los Angeles,CA,90001 +155263,USB-C Charging Cable,2,11.95,2019-02-22 12:23:00,287 12th St, Boston,MA,02215 +155264,USB-C Charging Cable,1,11.95,2019-02-07 14:52:00,74 5th St, San Francisco,CA,94016 +155265,USB-C Charging Cable,1,11.95,2019-02-26 07:10:00,756 River St, Boston,MA,02215 +155266,20in Monitor,1,109.99,2019-02-18 12:28:00,24 South St, Atlanta,GA,30301 +155267,Lightning Charging Cable,2,14.95,2019-02-21 16:26:00,249 West St, Los Angeles,CA,90001 +155268,Apple Airpods Headphones,1,150.0,2019-02-10 08:16:00,365 5th St, Austin,TX,73301 +155269,USB-C Charging Cable,1,11.95,2019-02-11 08:07:00,548 Main St, Portland,OR,97035 +155270,Apple Airpods Headphones,1,150.0,2019-02-01 14:57:00,37 Hill St, San Francisco,CA,94016 +155271,AA Batteries (4-pack),3,3.84,2019-02-26 18:23:00,207 Adams St, Boston,MA,02215 +155272,Macbook Pro Laptop,1,1700.0,2019-02-11 20:08:00,582 2nd St, Dallas,TX,75001 +155273,AA Batteries (4-pack),1,3.84,2019-02-28 10:26:00,587 12th St, Boston,MA,02215 +155274,AAA Batteries (4-pack),1,2.99,2019-02-04 20:25:00,61 Center St, Seattle,WA,98101 +155275,AA Batteries (4-pack),1,3.84,2019-02-02 13:13:00,537 South St, Portland,OR,97035 +155275,Wired Headphones,1,11.99,2019-02-02 13:13:00,537 South St, Portland,OR,97035 +155276,AAA Batteries (4-pack),3,2.99,2019-02-23 08:48:00,98 Church St, San Francisco,CA,94016 +155277,27in FHD Monitor,1,149.99,2019-02-18 21:11:00,853 Hickory St, Los Angeles,CA,90001 +155278,Google Phone,1,600.0,2019-02-20 20:26:00,31 Jefferson St, Seattle,WA,98101 +155279,Wired Headphones,1,11.99,2019-02-22 01:51:00,131 Park St, Portland,OR,97035 +155280,Wired Headphones,1,11.99,2019-02-14 20:22:00,829 Lake St, San Francisco,CA,94016 +155281,Macbook Pro Laptop,1,1700.0,2019-02-08 16:08:00,265 Dogwood St, San Francisco,CA,94016 +155282,Bose SoundSport Headphones,1,99.99,2019-02-27 22:02:00,817 South St, Los Angeles,CA,90001 +155283,Bose SoundSport Headphones,1,99.99,2019-02-03 21:39:00,661 9th St, New York City,NY,10001 +155284,USB-C Charging Cable,1,11.95,2019-02-28 22:59:00,24 Highland St, New York City,NY,10001 +155285,AA Batteries (4-pack),1,3.84,2019-02-11 19:24:00,231 7th St, Boston,MA,02215 +155286,27in FHD Monitor,1,149.99,2019-02-12 20:32:00,234 Sunset St, Los Angeles,CA,90001 +155287,USB-C Charging Cable,1,11.95,2019-02-19 23:46:00,280 1st St, Los Angeles,CA,90001 +155288,Google Phone,1,600.0,2019-02-25 10:39:00,637 7th St, Seattle,WA,98101 +155289,Macbook Pro Laptop,1,1700.0,2019-02-06 15:24:00,221 Jefferson St, New York City,NY,10001 +155290,Bose SoundSport Headphones,1,99.99,2019-02-19 20:37:00,218 Jackson St, San Francisco,CA,94016 +155291,Lightning Charging Cable,1,14.95,2019-02-14 01:02:00,542 Dogwood St, Seattle,WA,98101 +155292,Apple Airpods Headphones,1,150.0,2019-02-14 09:01:00,993 12th St, Portland,OR,97035 +155293,Google Phone,1,600.0,2019-02-13 12:57:00,242 Madison St, New York City,NY,10001 +155294,Apple Airpods Headphones,1,150.0,2019-02-13 12:23:00,820 6th St, Los Angeles,CA,90001 +155295,Wired Headphones,2,11.99,2019-02-26 15:19:00,337 Dogwood St, Los Angeles,CA,90001 +155296,AAA Batteries (4-pack),3,2.99,2019-02-18 23:34:00,141 4th St, Los Angeles,CA,90001 +155297,AA Batteries (4-pack),1,3.84,2019-02-03 23:36:00,855 Walnut St, San Francisco,CA,94016 +155298,Apple Airpods Headphones,1,150.0,2019-02-24 21:03:00,423 Sunset St, San Francisco,CA,94016 +155299,Flatscreen TV,1,300.0,2019-02-08 21:04:00,6 Dogwood St, Dallas,TX,75001 +155300,Apple Airpods Headphones,1,150.0,2019-02-21 13:53:00,878 11th St, Boston,MA,02215 +155301,iPhone,1,700.0,2019-02-19 09:34:00,654 5th St, Boston,MA,02215 +155302,AA Batteries (4-pack),1,3.84,2019-02-19 12:28:00,720 Jackson St, San Francisco,CA,94016 +155303,Google Phone,1,600.0,2019-02-04 18:48:00,295 Cherry St, Portland,ME,04101 +155303,Bose SoundSport Headphones,1,99.99,2019-02-04 18:48:00,295 Cherry St, Portland,ME,04101 +155304,Lightning Charging Cable,1,14.95,2019-02-27 15:23:00,375 Wilson St, Seattle,WA,98101 +155305,34in Ultrawide Monitor,1,379.99,2019-02-01 21:22:00,826 14th St, San Francisco,CA,94016 +155306,AA Batteries (4-pack),3,3.84,2019-02-15 19:11:00,711 Jefferson St, Boston,MA,02215 +155307,20in Monitor,1,109.99,2019-02-01 20:08:00,774 6th St, Los Angeles,CA,90001 +155308,Bose SoundSport Headphones,1,99.99,2019-02-17 16:00:00,59 13th St, Atlanta,GA,30301 +155309,USB-C Charging Cable,1,11.95,2019-02-03 14:22:00,662 Highland St, Los Angeles,CA,90001 +155310,USB-C Charging Cable,1,11.95,2019-02-27 15:55:00,93 Lake St, New York City,NY,10001 +155311,Wired Headphones,1,11.99,2019-02-13 23:59:00,9 Madison St, San Francisco,CA,94016 +155312,AAA Batteries (4-pack),1,2.99,2019-02-23 19:48:00,994 Washington St, San Francisco,CA,94016 +155313,34in Ultrawide Monitor,1,379.99,2019-02-13 15:57:00,591 Hill St, Seattle,WA,98101 +155314,USB-C Charging Cable,1,11.95,2019-02-21 10:24:00,209 Walnut St, San Francisco,CA,94016 +155315,AAA Batteries (4-pack),3,2.99,2019-02-17 12:18:00,458 Wilson St, Atlanta,GA,30301 +155315,Google Phone,1,600.0,2019-02-17 12:18:00,458 Wilson St, Atlanta,GA,30301 +155316,AAA Batteries (4-pack),1,2.99,2019-02-06 17:55:00,312 Cherry St, Los Angeles,CA,90001 +155317,34in Ultrawide Monitor,1,379.99,2019-02-22 01:16:00,826 Center St, Atlanta,GA,30301 +155318,AAA Batteries (4-pack),1,2.99,2019-02-14 20:20:00,810 Madison St, Portland,OR,97035 +155319,Lightning Charging Cable,1,14.95,2019-02-02 11:18:00,551 Hill St, San Francisco,CA,94016 +155320,27in 4K Gaming Monitor,1,389.99,2019-02-01 07:57:00,444 Lincoln St, New York City,NY,10001 +155321,20in Monitor,1,109.99,2019-02-01 14:35:00,852 Jefferson St, San Francisco,CA,94016 +155322,USB-C Charging Cable,1,11.95,2019-02-17 12:07:00,792 2nd St, Portland,OR,97035 +155323,Wired Headphones,1,11.99,2019-02-12 11:25:00,951 Madison St, San Francisco,CA,94016 +155324,AAA Batteries (4-pack),1,2.99,2019-02-18 16:29:00,482 2nd St, Los Angeles,CA,90001 +155325,Bose SoundSport Headphones,1,99.99,2019-02-09 13:04:00,706 Hickory St, Boston,MA,02215 +155326,Lightning Charging Cable,1,14.95,2019-02-08 16:31:00,644 4th St, New York City,NY,10001 +155327,iPhone,1,700.0,2019-02-14 20:13:00,112 Dogwood St, San Francisco,CA,94016 +155328,AAA Batteries (4-pack),1,2.99,2019-02-17 09:30:00,903 Johnson St, San Francisco,CA,94016 +155329,Wired Headphones,1,11.99,2019-02-04 11:41:00,844 Ridge St, San Francisco,CA,94016 +155330,USB-C Charging Cable,1,11.95,2019-02-12 12:46:00,692 Maple St, San Francisco,CA,94016 +155331,USB-C Charging Cable,1,11.95,2019-02-25 08:25:00,920 5th St, Dallas,TX,75001 +155332,Lightning Charging Cable,1,14.95,2019-02-09 14:32:00,955 Willow St, Atlanta,GA,30301 +155333,Flatscreen TV,1,300.0,2019-02-25 00:55:00,638 10th St, San Francisco,CA,94016 +155334,Lightning Charging Cable,1,14.95,2019-02-27 08:18:00,621 12th St, Los Angeles,CA,90001 +155335,27in FHD Monitor,1,149.99,2019-02-23 18:50:00,205 Walnut St, Dallas,TX,75001 +155336,27in FHD Monitor,1,149.99,2019-02-27 19:06:00,979 Hickory St, Los Angeles,CA,90001 +155337,LG Dryer,1,600.0,2019-02-19 12:34:00,607 2nd St, San Francisco,CA,94016 +155338,USB-C Charging Cable,1,11.95,2019-02-01 08:42:00,716 Church St, Austin,TX,73301 +155339,27in 4K Gaming Monitor,1,389.99,2019-02-07 07:39:00,65 Lake St, Dallas,TX,75001 +155340,USB-C Charging Cable,1,11.95,2019-02-26 15:32:00,631 Chestnut St, New York City,NY,10001 +155341,USB-C Charging Cable,2,11.95,2019-02-15 16:04:00,526 Maple St, San Francisco,CA,94016 +155342,Lightning Charging Cable,1,14.95,2019-02-16 09:25:00,8 2nd St, Dallas,TX,75001 +155343,AA Batteries (4-pack),2,3.84,2019-02-28 14:45:00,53 Church St, New York City,NY,10001 +155344,Bose SoundSport Headphones,1,99.99,2019-02-15 17:40:00,679 Hill St, New York City,NY,10001 +155345,AA Batteries (4-pack),2,3.84,2019-02-26 17:42:00,745 Lakeview St, Portland,OR,97035 +155346,AA Batteries (4-pack),2,3.84,2019-02-09 07:36:00,16 1st St, San Francisco,CA,94016 +155347,AAA Batteries (4-pack),1,2.99,2019-02-23 23:01:00,142 Jefferson St, Boston,MA,02215 +155348,iPhone,1,700.0,2019-02-23 17:38:00,868 Wilson St, Los Angeles,CA,90001 +155349,Bose SoundSport Headphones,1,99.99,2019-02-20 16:27:00,833 Church St, San Francisco,CA,94016 +155350,Apple Airpods Headphones,1,150.0,2019-02-01 19:37:00,823 Cedar St, Boston,MA,02215 +155351,Apple Airpods Headphones,1,150.0,2019-02-23 10:25:00,582 Meadow St, Seattle,WA,98101 +155352,Lightning Charging Cable,2,14.95,2019-02-13 23:23:00,586 13th St, San Francisco,CA,94016 +155353,Lightning Charging Cable,1,14.95,2019-02-07 10:12:00,581 West St, New York City,NY,10001 +155354,Wired Headphones,1,11.99,2019-02-28 10:59:00,571 West St, Atlanta,GA,30301 +155355,Bose SoundSport Headphones,1,99.99,2019-02-14 20:12:00,916 Cedar St, New York City,NY,10001 +155356,20in Monitor,1,109.99,2019-02-07 16:59:00,66 Forest St, San Francisco,CA,94016 +155357,AAA Batteries (4-pack),1,2.99,2019-02-25 07:09:00,297 Ridge St, San Francisco,CA,94016 +155358,USB-C Charging Cable,1,11.95,2019-02-04 13:49:00,958 Jackson St, Boston,MA,02215 +155359,Bose SoundSport Headphones,1,99.99,2019-02-27 10:00:00,39 11th St, Atlanta,GA,30301 +155360,AA Batteries (4-pack),2,3.84,2019-02-02 13:11:00,723 Chestnut St, Atlanta,GA,30301 +155361,AAA Batteries (4-pack),1,2.99,2019-02-13 00:17:00,215 Cherry St, San Francisco,CA,94016 +155362,USB-C Charging Cable,1,11.95,2019-02-16 20:41:00,749 Lakeview St, Boston,MA,02215 +155363,AA Batteries (4-pack),1,3.84,2019-02-07 20:28:00,760 Willow St, Dallas,TX,75001 +155364,ThinkPad Laptop,1,999.99,2019-02-07 15:13:00,940 Adams St, Los Angeles,CA,90001 +155365,iPhone,1,700.0,2019-02-25 11:30:00,751 Lincoln St, Seattle,WA,98101 +155366,USB-C Charging Cable,1,11.95,2019-02-05 00:07:00,46 Jackson St, Atlanta,GA,30301 +155367,Bose SoundSport Headphones,1,99.99,2019-02-11 11:20:00,967 Willow St, Seattle,WA,98101 +155368,Lightning Charging Cable,1,14.95,2019-02-19 23:56:00,445 13th St, Seattle,WA,98101 +155369,20in Monitor,1,109.99,2019-02-21 11:28:00,406 Walnut St, New York City,NY,10001 +155370,Apple Airpods Headphones,1,150.0,2019-02-19 10:40:00,394 Jefferson St, San Francisco,CA,94016 +155371,USB-C Charging Cable,1,11.95,2019-02-23 18:16:00,439 14th St, Los Angeles,CA,90001 +155372,Apple Airpods Headphones,1,150.0,2019-02-17 08:27:00,933 14th St, Dallas,TX,75001 +155373,27in 4K Gaming Monitor,1,389.99,2019-02-27 17:19:00,549 River St, New York City,NY,10001 +155374,AA Batteries (4-pack),1,3.84,2019-02-03 21:57:00,577 Wilson St, San Francisco,CA,94016 +155375,Wired Headphones,1,11.99,2019-02-17 09:41:00,437 8th St, New York City,NY,10001 +155376,AA Batteries (4-pack),1,3.84,2019-02-04 19:50:00,968 Pine St, Los Angeles,CA,90001 +155377,AAA Batteries (4-pack),1,2.99,2019-02-25 07:57:00,222 12th St, New York City,NY,10001 +155378,AAA Batteries (4-pack),1,2.99,2019-02-16 21:53:00,569 Lincoln St, Los Angeles,CA,90001 +155379,Apple Airpods Headphones,1,150.0,2019-02-06 13:35:00,699 Madison St, Los Angeles,CA,90001 +155380,Google Phone,1,600.0,2019-02-18 06:34:00,966 Main St, Portland,ME,04101 +155381,Lightning Charging Cable,1,14.95,2019-02-24 03:10:00,15 2nd St, Boston,MA,02215 +155382,Bose SoundSport Headphones,1,99.99,2019-02-20 22:52:00,328 Washington St, San Francisco,CA,94016 +155383,Lightning Charging Cable,1,14.95,2019-02-18 15:59:00,273 4th St, Dallas,TX,75001 +155384,Lightning Charging Cable,1,14.95,2019-02-12 13:16:00,541 Lincoln St, Los Angeles,CA,90001 +155385,AAA Batteries (4-pack),1,2.99,2019-02-11 18:25:00,544 8th St, Boston,MA,02215 +155385,27in 4K Gaming Monitor,1,389.99,2019-02-11 18:25:00,544 8th St, Boston,MA,02215 +155386,Apple Airpods Headphones,1,150.0,2019-02-24 21:56:00,326 9th St, San Francisco,CA,94016 +155387,USB-C Charging Cable,1,11.95,2019-02-04 14:42:00,949 Chestnut St, Seattle,WA,98101 +155388,Apple Airpods Headphones,1,150.0,2019-02-02 20:04:00,269 6th St, Los Angeles,CA,90001 +155389,AAA Batteries (4-pack),2,2.99,2019-02-02 16:33:00,806 Hickory St, Austin,TX,73301 +155390,AA Batteries (4-pack),1,3.84,2019-02-24 16:52:00,372 Highland St, Seattle,WA,98101 +155391,Wired Headphones,2,11.99,2019-02-11 15:29:00,151 Highland St, San Francisco,CA,94016 +155392,Bose SoundSport Headphones,1,99.99,2019-02-15 23:47:00,185 Forest St, Boston,MA,02215 +155393,USB-C Charging Cable,1,11.95,2019-02-14 14:41:00,792 Lincoln St, New York City,NY,10001 +155394,USB-C Charging Cable,1,11.95,2019-02-24 22:49:00,609 9th St, New York City,NY,10001 +155395,Lightning Charging Cable,1,14.95,2019-02-06 19:16:00,873 7th St, San Francisco,CA,94016 +155396,Wired Headphones,1,11.99,2019-02-16 18:23:00,911 Cherry St, New York City,NY,10001 +155397,27in 4K Gaming Monitor,1,389.99,2019-02-08 20:06:00,489 West St, San Francisco,CA,94016 +155398,Lightning Charging Cable,1,14.95,2019-02-28 10:03:00,509 Hill St, Los Angeles,CA,90001 +155399,Apple Airpods Headphones,1,150.0,2019-02-10 21:54:00,954 14th St, Austin,TX,73301 +155400,AAA Batteries (4-pack),1,2.99,2019-02-23 20:40:00,605 Hill St, Boston,MA,02215 +155401,Bose SoundSport Headphones,1,99.99,2019-02-10 10:44:00,982 Main St, Portland,ME,04101 +155402,USB-C Charging Cable,1,11.95,2019-02-24 00:35:00,510 Meadow St, Portland,OR,97035 +155403,Macbook Pro Laptop,1,1700.0,2019-02-15 23:11:00,74 Park St, Los Angeles,CA,90001 +155404,20in Monitor,1,109.99,2019-02-14 00:30:00,744 Walnut St, Boston,MA,02215 +155405,Lightning Charging Cable,1,14.95,2019-02-14 21:06:00,169 Cedar St, San Francisco,CA,94016 +155406,Lightning Charging Cable,1,14.95,2019-02-22 09:54:00,89 6th St, Austin,TX,73301 +155407,Bose SoundSport Headphones,1,99.99,2019-02-15 12:06:00,694 Dogwood St, New York City,NY,10001 +155408,AAA Batteries (4-pack),2,2.99,2019-02-10 19:08:00,623 2nd St, Austin,TX,73301 +155409,AA Batteries (4-pack),1,3.84,2019-02-26 19:39:00,326 Lincoln St, Dallas,TX,75001 +155410,Bose SoundSport Headphones,1,99.99,2019-02-26 19:26:00,875 Walnut St, San Francisco,CA,94016 +155411,27in 4K Gaming Monitor,1,389.99,2019-02-21 18:01:00,839 2nd St, New York City,NY,10001 +155412,27in FHD Monitor,1,149.99,2019-02-27 23:38:00,979 11th St, San Francisco,CA,94016 +155413,Wired Headphones,1,11.99,2019-02-15 10:48:00,721 12th St, Los Angeles,CA,90001 +155414,Wired Headphones,1,11.99,2019-02-15 17:49:00,539 Maple St, San Francisco,CA,94016 +155415,Google Phone,1,600.0,2019-02-06 12:31:00,940 13th St, San Francisco,CA,94016 +155415,USB-C Charging Cable,1,11.95,2019-02-06 12:31:00,940 13th St, San Francisco,CA,94016 +155415,Bose SoundSport Headphones,1,99.99,2019-02-06 12:31:00,940 13th St, San Francisco,CA,94016 +155416,USB-C Charging Cable,1,11.95,2019-02-01 18:41:00,155 Meadow St, San Francisco,CA,94016 +155417,AA Batteries (4-pack),1,3.84,2019-02-01 16:41:00,474 Dogwood St, Seattle,WA,98101 +155418,USB-C Charging Cable,1,11.95,2019-02-14 13:17:00,125 Highland St, Boston,MA,02215 +155419,Wired Headphones,1,11.99,2019-02-17 18:47:00,494 Washington St, Austin,TX,73301 +155420,AAA Batteries (4-pack),2,2.99,2019-02-11 17:41:00,292 Elm St, San Francisco,CA,94016 +155421,AA Batteries (4-pack),1,3.84,2019-02-07 16:05:00,995 Washington St, Dallas,TX,75001 +155422,Wired Headphones,1,11.99,2019-02-10 11:27:00,726 Madison St, Atlanta,GA,30301 +155423,USB-C Charging Cable,1,11.95,2019-02-18 11:38:00,90 9th St, Atlanta,GA,30301 +155424,Apple Airpods Headphones,1,150.0,2019-02-27 12:22:00,827 Lincoln St, San Francisco,CA,94016 +155425,AA Batteries (4-pack),2,3.84,2019-02-10 16:57:00,261 Meadow St, Dallas,TX,75001 +155426,AAA Batteries (4-pack),1,2.99,2019-02-08 16:17:00,242 Madison St, New York City,NY,10001 +155427,27in 4K Gaming Monitor,1,389.99,2019-02-25 21:02:00,65 Cedar St, Seattle,WA,98101 +155428,iPhone,1,700.0,2019-02-05 13:53:00,498 Jackson St, Portland,OR,97035 +155428,Lightning Charging Cable,1,14.95,2019-02-05 13:53:00,498 Jackson St, Portland,OR,97035 +155429,AA Batteries (4-pack),1,3.84,2019-02-03 14:52:00,491 Wilson St, San Francisco,CA,94016 +155430,Apple Airpods Headphones,1,150.0,2019-02-18 16:55:00,569 8th St, Seattle,WA,98101 +155431,Apple Airpods Headphones,1,150.0,2019-02-08 17:05:00,700 Forest St, New York City,NY,10001 +155432,Bose SoundSport Headphones,1,99.99,2019-02-10 21:38:00,866 Spruce St, New York City,NY,10001 +155433,Wired Headphones,2,11.99,2019-02-02 08:43:00,304 12th St, San Francisco,CA,94016 +155434,AAA Batteries (4-pack),1,2.99,2019-02-25 22:41:00,378 Jackson St, San Francisco,CA,94016 +155435,USB-C Charging Cable,1,11.95,2019-02-25 07:10:00,367 River St, San Francisco,CA,94016 +155436,AA Batteries (4-pack),2,3.84,2019-02-13 13:12:00,367 Pine St, Atlanta,GA,30301 +155437,Wired Headphones,1,11.99,2019-02-05 10:45:00,980 River St, San Francisco,CA,94016 +155438,Vareebadd Phone,1,400.0,2019-02-26 19:43:00,901 12th St, Los Angeles,CA,90001 +155438,Wired Headphones,1,11.99,2019-02-26 19:43:00,901 12th St, Los Angeles,CA,90001 +155439,Wired Headphones,1,11.99,2019-02-08 10:12:00,438 6th St, New York City,NY,10001 +155440,Apple Airpods Headphones,1,150.0,2019-02-15 13:12:00,839 North St, Portland,OR,97035 +155441,20in Monitor,1,109.99,2019-02-06 12:46:00,545 6th St, Seattle,WA,98101 +155442,USB-C Charging Cable,1,11.95,2019-02-16 19:25:00,10 River St, New York City,NY,10001 +155443,27in FHD Monitor,1,149.99,2019-02-19 08:09:00,63 Jefferson St, Seattle,WA,98101 +155444,USB-C Charging Cable,1,11.95,2019-02-18 17:04:00,870 Willow St, Boston,MA,02215 +155445,Wired Headphones,1,11.99,2019-02-19 20:22:00,965 Jefferson St, Portland,OR,97035 +155446,Lightning Charging Cable,1,14.95,2019-02-09 13:07:00,924 Maple St, Seattle,WA,98101 +155447,AA Batteries (4-pack),2,3.84,2019-02-07 21:10:00,882 Ridge St, New York City,NY,10001 +155448,Google Phone,1,600.0,2019-02-21 10:54:00,386 Church St, San Francisco,CA,94016 +155448,Wired Headphones,1,11.99,2019-02-21 10:54:00,386 Church St, San Francisco,CA,94016 +155449,USB-C Charging Cable,1,11.95,2019-02-25 20:25:00,792 Wilson St, New York City,NY,10001 +155450,USB-C Charging Cable,1,11.95,2019-02-10 11:18:00,950 Chestnut St, Los Angeles,CA,90001 +155451,Bose SoundSport Headphones,1,99.99,2019-02-10 12:48:00,615 Park St, Austin,TX,73301 +155452,Lightning Charging Cable,1,14.95,2019-02-06 08:42:00,68 10th St, New York City,NY,10001 +155453,Lightning Charging Cable,1,14.95,2019-02-16 14:34:00,41 9th St, Atlanta,GA,30301 +155454,AAA Batteries (4-pack),2,2.99,2019-02-20 04:25:00,440 Elm St, San Francisco,CA,94016 +155455,AAA Batteries (4-pack),1,2.99,2019-02-12 22:11:00,687 Lakeview St, New York City,NY,10001 +155456,Wired Headphones,1,11.99,2019-02-14 21:24:00,639 Hickory St, San Francisco,CA,94016 +155457,USB-C Charging Cable,2,11.95,2019-02-27 13:12:00,223 Church St, San Francisco,CA,94016 +155458,ThinkPad Laptop,1,999.99,2019-02-08 12:16:00,53 14th St, Seattle,WA,98101 +155459,Lightning Charging Cable,1,14.95,2019-02-17 15:19:00,341 Chestnut St, Portland,OR,97035 +155460,AA Batteries (4-pack),1,3.84,2019-02-18 21:26:00,95 Hill St, New York City,NY,10001 +155461,Google Phone,1,600.0,2019-02-17 05:56:00,292 Adams St, San Francisco,CA,94016 +155461,Wired Headphones,1,11.99,2019-02-17 05:56:00,292 Adams St, San Francisco,CA,94016 +155462,AA Batteries (4-pack),2,3.84,2019-02-24 01:50:00,246 Walnut St, Los Angeles,CA,90001 +155463,Wired Headphones,1,11.99,2019-02-15 18:28:00,645 Ridge St, San Francisco,CA,94016 +155464,iPhone,1,700.0,2019-02-09 18:30:00,221 Church St, San Francisco,CA,94016 +155465,AAA Batteries (4-pack),2,2.99,2019-02-20 18:06:00,316 Jefferson St, San Francisco,CA,94016 +155466,Bose SoundSport Headphones,1,99.99,2019-02-22 11:32:00,636 South St, San Francisco,CA,94016 +155467,LG Dryer,1,600.0,2019-02-08 14:20:00,766 Adams St, New York City,NY,10001 +155468,Lightning Charging Cable,2,14.95,2019-02-24 10:12:00,856 Jefferson St, Seattle,WA,98101 +155469,AAA Batteries (4-pack),1,2.99,2019-02-13 21:00:00,457 Madison St, San Francisco,CA,94016 +155470,USB-C Charging Cable,1,11.95,2019-02-28 11:32:00,36 Lakeview St, Seattle,WA,98101 +155471,Apple Airpods Headphones,1,150.0,2019-02-27 17:53:00,200 South St, San Francisco,CA,94016 +155472,Lightning Charging Cable,1,14.95,2019-02-19 10:31:00,981 Meadow St, San Francisco,CA,94016 +155473,Flatscreen TV,1,300.0,2019-02-14 02:52:00,37 8th St, Los Angeles,CA,90001 +155474,ThinkPad Laptop,1,999.99,2019-02-13 14:54:00,347 7th St, Los Angeles,CA,90001 +155474,Wired Headphones,1,11.99,2019-02-13 14:54:00,347 7th St, Los Angeles,CA,90001 +155475,AA Batteries (4-pack),1,3.84,2019-02-01 23:38:00,186 Hickory St, Atlanta,GA,30301 +155476,Apple Airpods Headphones,1,150.0,2019-02-20 20:55:00,315 7th St, San Francisco,CA,94016 +155477,Bose SoundSport Headphones,1,99.99,2019-02-28 12:59:00,838 7th St, Boston,MA,02215 +155478,USB-C Charging Cable,1,11.95,2019-02-06 20:22:00,422 Elm St, San Francisco,CA,94016 +155479,AA Batteries (4-pack),1,3.84,2019-02-04 19:37:00,37 4th St, Atlanta,GA,30301 +155480,AA Batteries (4-pack),1,3.84,2019-02-07 10:37:00,512 Cherry St, San Francisco,CA,94016 +155481,AAA Batteries (4-pack),2,2.99,2019-02-06 10:28:00,504 Madison St, New York City,NY,10001 +155482,Bose SoundSport Headphones,1,99.99,2019-02-14 12:31:00,213 Spruce St, San Francisco,CA,94016 +155483,AA Batteries (4-pack),1,3.84,2019-02-04 09:43:00,821 Walnut St, Austin,TX,73301 +155484,Bose SoundSport Headphones,1,99.99,2019-02-04 11:49:00,716 Lakeview St, New York City,NY,10001 +155485,Apple Airpods Headphones,1,150.0,2019-02-19 17:30:00,53 Ridge St, Dallas,TX,75001 +155486,AAA Batteries (4-pack),1,2.99,2019-02-18 19:24:00,549 7th St, New York City,NY,10001 +155487,Wired Headphones,2,11.99,2019-02-12 14:00:00,410 Meadow St, Dallas,TX,75001 +155488,iPhone,1,700.0,2019-02-03 07:43:00,456 Willow St, San Francisco,CA,94016 +155489,27in 4K Gaming Monitor,1,389.99,2019-02-11 20:07:00,797 Forest St, Los Angeles,CA,90001 +155490,Google Phone,1,600.0,2019-02-17 21:04:00,392 Lake St, Los Angeles,CA,90001 +155491,USB-C Charging Cable,1,11.95,2019-02-01 21:34:00,30 Chestnut St, New York City,NY,10001 +155492,Bose SoundSport Headphones,1,99.99,2019-02-28 13:51:00,336 Cherry St, Los Angeles,CA,90001 +155493,Lightning Charging Cable,1,14.95,2019-02-02 02:17:00,977 Dogwood St, Portland,ME,04101 +155494,USB-C Charging Cable,1,11.95,2019-02-21 14:19:00,648 11th St, Seattle,WA,98101 +155495,USB-C Charging Cable,1,11.95,2019-02-03 10:46:00,498 Dogwood St, Los Angeles,CA,90001 +155496,USB-C Charging Cable,1,11.95,2019-02-26 17:23:00,573 Willow St, Atlanta,GA,30301 +155497,AA Batteries (4-pack),1,3.84,2019-02-11 10:13:00,119 Jefferson St, San Francisco,CA,94016 +155498,Wired Headphones,1,11.99,2019-02-03 22:00:00,727 Center St, Seattle,WA,98101 +155499,27in FHD Monitor,1,149.99,2019-02-16 20:57:00,189 North St, Boston,MA,02215 +155500,Lightning Charging Cable,1,14.95,2019-02-08 20:09:00,180 Park St, New York City,NY,10001 +155501,Wired Headphones,1,11.99,2019-02-14 17:13:00,25 Willow St, Boston,MA,02215 +155502,Wired Headphones,1,11.99,2019-02-06 10:05:00,694 Adams St, Los Angeles,CA,90001 +155503,Apple Airpods Headphones,1,150.0,2019-02-15 02:42:00,73 Lakeview St, New York City,NY,10001 +155504,AAA Batteries (4-pack),1,2.99,2019-02-26 18:24:00,617 Cedar St, Los Angeles,CA,90001 +155505,Wired Headphones,1,11.99,2019-02-01 09:55:00,400 13th St, Dallas,TX,75001 +155506,27in 4K Gaming Monitor,1,389.99,2019-02-03 18:46:00,495 Dogwood St, Los Angeles,CA,90001 +155507,AA Batteries (4-pack),1,3.84,2019-02-25 17:53:00,471 Lincoln St, New York City,NY,10001 +155508,Google Phone,1,600.0,2019-02-24 22:00:00,966 Ridge St, Seattle,WA,98101 +155509,27in 4K Gaming Monitor,1,389.99,2019-02-07 14:26:00,17 Cedar St, New York City,NY,10001 +155510,Wired Headphones,1,11.99,2019-02-20 14:13:00,535 10th St, New York City,NY,10001 +155511,AA Batteries (4-pack),1,3.84,2019-02-17 15:32:00,855 8th St, Atlanta,GA,30301 +155512,AA Batteries (4-pack),1,3.84,2019-02-20 23:59:00,710 Lakeview St, San Francisco,CA,94016 +155513,Wired Headphones,1,11.99,2019-02-15 22:22:00,852 Meadow St, Los Angeles,CA,90001 +155514,34in Ultrawide Monitor,1,379.99,2019-02-12 08:55:00,305 Highland St, New York City,NY,10001 +155515,USB-C Charging Cable,2,11.95,2019-02-06 16:19:00,99 Willow St, Los Angeles,CA,90001 +155516,AA Batteries (4-pack),1,3.84,2019-02-17 09:32:00,500 Dogwood St, New York City,NY,10001 +155517,Apple Airpods Headphones,1,150.0,2019-02-23 23:22:00,148 4th St, Austin,TX,73301 +155518,Apple Airpods Headphones,1,150.0,2019-02-13 19:56:00,366 Wilson St, San Francisco,CA,94016 +155519,USB-C Charging Cable,1,11.95,2019-02-15 20:24:00,457 Highland St, Los Angeles,CA,90001 +155520,Wired Headphones,2,11.99,2019-02-07 08:51:00,121 Jefferson St, Dallas,TX,75001 +155521,AA Batteries (4-pack),1,3.84,2019-02-08 14:10:00,336 1st St, Austin,TX,73301 +155522,Lightning Charging Cable,1,14.95,2019-02-08 11:12:00,138 Elm St, New York City,NY,10001 +155523,AAA Batteries (4-pack),1,2.99,2019-02-24 17:31:00,920 Highland St, New York City,NY,10001 +155524,USB-C Charging Cable,2,11.95,2019-02-13 13:12:00,135 Jackson St, Portland,OR,97035 +155525,USB-C Charging Cable,1,11.95,2019-02-08 19:07:00,752 Lakeview St, Boston,MA,02215 +155526,Lightning Charging Cable,1,14.95,2019-02-22 14:20:00,109 South St, Boston,MA,02215 +155527,Bose SoundSport Headphones,1,99.99,2019-02-26 17:16:00,443 West St, Dallas,TX,75001 +155528,USB-C Charging Cable,1,11.95,2019-02-18 18:17:00,15 5th St, New York City,NY,10001 +155529,AA Batteries (4-pack),3,3.84,2019-02-22 21:13:00,706 11th St, San Francisco,CA,94016 +155530,USB-C Charging Cable,1,11.95,2019-02-07 13:08:00,786 Ridge St, Atlanta,GA,30301 +155531,ThinkPad Laptop,1,999.99,2019-02-26 21:12:00,629 Jefferson St, San Francisco,CA,94016 +155532,Bose SoundSport Headphones,1,99.99,2019-02-24 08:43:00,521 12th St, Los Angeles,CA,90001 +155533,AA Batteries (4-pack),1,3.84,2019-02-22 11:10:00,895 Cedar St, Dallas,TX,75001 +155534,AA Batteries (4-pack),2,3.84,2019-02-23 14:32:00,228 Adams St, Boston,MA,02215 +155535,Lightning Charging Cable,1,14.95,2019-02-16 07:05:00,815 12th St, Dallas,TX,75001 +155536,iPhone,1,700.0,2019-02-26 23:06:00,223 North St, Portland,OR,97035 +155537,Lightning Charging Cable,1,14.95,2019-02-02 08:58:00,875 Cedar St, Dallas,TX,75001 +155538,AAA Batteries (4-pack),3,2.99,2019-02-09 18:21:00,676 Walnut St, New York City,NY,10001 +155539,AA Batteries (4-pack),1,3.84,2019-02-14 14:21:00,152 Church St, Boston,MA,02215 +155540,iPhone,1,700.0,2019-02-27 12:56:00,52 Jefferson St, Portland,OR,97035 +155541,AA Batteries (4-pack),1,3.84,2019-02-27 17:11:00,944 4th St, Dallas,TX,75001 +155542,USB-C Charging Cable,1,11.95,2019-02-04 01:48:00,933 Spruce St, Boston,MA,02215 +155543,AA Batteries (4-pack),2,3.84,2019-02-18 19:52:00,761 Willow St, Austin,TX,73301 +155544,AAA Batteries (4-pack),2,2.99,2019-02-19 11:56:00,531 Lincoln St, Dallas,TX,75001 +155545,Apple Airpods Headphones,1,150.0,2019-02-02 23:10:00,48 Meadow St, Los Angeles,CA,90001 +155546,Wired Headphones,1,11.99,2019-02-10 09:35:00,450 West St, Los Angeles,CA,90001 +155547,Lightning Charging Cable,1,14.95,2019-02-05 20:40:00,601 12th St, Atlanta,GA,30301 +155548,ThinkPad Laptop,1,999.99,2019-02-26 19:28:00,27 South St, Dallas,TX,75001 +155549,Apple Airpods Headphones,1,150.0,2019-02-17 10:59:00,245 Church St, Austin,TX,73301 +155550,Google Phone,1,600.0,2019-02-19 21:04:00,784 River St, San Francisco,CA,94016 +155550,AA Batteries (4-pack),2,3.84,2019-02-19 21:04:00,784 River St, San Francisco,CA,94016 +155551,Lightning Charging Cable,1,14.95,2019-02-05 17:14:00,322 6th St, New York City,NY,10001 +155552,AAA Batteries (4-pack),1,2.99,2019-02-15 12:13:00,188 Jefferson St, Dallas,TX,75001 +155553,iPhone,1,700.0,2019-02-22 11:04:00,126 Sunset St, Boston,MA,02215 +155554,USB-C Charging Cable,1,11.95,2019-02-01 16:34:00,783 6th St, Portland,OR,97035 +155555,27in 4K Gaming Monitor,1,389.99,2019-02-05 13:07:00,589 Johnson St, Atlanta,GA,30301 +155556,AAA Batteries (4-pack),1,2.99,2019-02-09 10:05:00,798 Washington St, San Francisco,CA,94016 +155557,USB-C Charging Cable,1,11.95,2019-02-19 09:08:00,712 North St, Boston,MA,02215 +155558,Lightning Charging Cable,1,14.95,2019-02-08 11:38:00,181 Sunset St, Los Angeles,CA,90001 +155559,27in FHD Monitor,1,149.99,2019-02-15 18:34:00,705 South St, New York City,NY,10001 +155560,iPhone,1,700.0,2019-02-03 08:56:00,989 8th St, Los Angeles,CA,90001 +155561,USB-C Charging Cable,1,11.95,2019-02-25 23:59:00,338 Jefferson St, New York City,NY,10001 +155562,Lightning Charging Cable,1,14.95,2019-02-12 11:28:00,499 10th St, New York City,NY,10001 +155563,Apple Airpods Headphones,1,150.0,2019-02-18 10:37:00,401 Adams St, Atlanta,GA,30301 +155564,Bose SoundSport Headphones,1,99.99,2019-02-24 21:41:00,706 Elm St, Atlanta,GA,30301 +155565,Wired Headphones,1,11.99,2019-02-04 21:04:00,780 West St, San Francisco,CA,94016 +155566,ThinkPad Laptop,1,999.99,2019-02-10 13:22:00,64 8th St, New York City,NY,10001 +155566,Lightning Charging Cable,1,14.95,2019-02-10 13:22:00,64 8th St, New York City,NY,10001 +155567,Vareebadd Phone,1,400.0,2019-02-12 19:32:00,180 2nd St, Dallas,TX,75001 +155567,USB-C Charging Cable,2,11.95,2019-02-12 19:32:00,180 2nd St, Dallas,TX,75001 +155568,Flatscreen TV,1,300.0,2019-02-27 14:14:00,28 South St, Seattle,WA,98101 +155569,Bose SoundSport Headphones,1,99.99,2019-02-05 20:35:00,74 Dogwood St, Dallas,TX,75001 +155570,iPhone,1,700.0,2019-02-21 14:23:00,801 1st St, Los Angeles,CA,90001 +155571,Lightning Charging Cable,1,14.95,2019-02-25 08:34:00,257 Lincoln St, Boston,MA,02215 +155572,Macbook Pro Laptop,1,1700.0,2019-02-22 09:42:00,433 Sunset St, Los Angeles,CA,90001 +155573,AA Batteries (4-pack),1,3.84,2019-02-14 16:16:00,455 Pine St, Dallas,TX,75001 +155574,Wired Headphones,3,11.99,2019-02-16 23:26:00,227 Lincoln St, Atlanta,GA,30301 +155575,ThinkPad Laptop,1,999.99,2019-02-16 15:24:00,968 4th St, Dallas,TX,75001 +155576,Wired Headphones,1,11.99,2019-02-12 16:14:00,482 Main St, New York City,NY,10001 +155577,Bose SoundSport Headphones,1,99.99,2019-02-13 11:11:00,15 Jefferson St, Los Angeles,CA,90001 +155578,Lightning Charging Cable,1,14.95,2019-02-17 10:26:00,879 Forest St, San Francisco,CA,94016 +155579,AAA Batteries (4-pack),1,2.99,2019-02-20 15:12:00,64 12th St, Seattle,WA,98101 +155580,AAA Batteries (4-pack),4,2.99,2019-02-12 18:59:00,115 Lincoln St, San Francisco,CA,94016 +155581,Apple Airpods Headphones,1,150.0,2019-02-05 16:44:00,978 Wilson St, New York City,NY,10001 +155582,AA Batteries (4-pack),3,3.84,2019-02-15 14:11:00,681 Elm St, Los Angeles,CA,90001 +155583,Apple Airpods Headphones,1,150.0,2019-02-27 10:11:00,439 5th St, Austin,TX,73301 +155584,USB-C Charging Cable,1,11.95,2019-02-19 11:23:00,242 Ridge St, New York City,NY,10001 +155585,Bose SoundSport Headphones,1,99.99,2019-02-22 14:28:00,643 Johnson St, Atlanta,GA,30301 +155586,Wired Headphones,1,11.99,2019-02-25 21:29:00,807 Jefferson St, New York City,NY,10001 +155587,Flatscreen TV,1,300.0,2019-02-26 22:49:00,172 West St, Atlanta,GA,30301 +155588,Lightning Charging Cable,1,14.95,2019-02-11 00:40:00,896 Lakeview St, New York City,NY,10001 +155589,USB-C Charging Cable,1,11.95,2019-02-15 13:07:00,173 9th St, San Francisco,CA,94016 +155590,Bose SoundSport Headphones,1,99.99,2019-02-15 13:02:00,695 Park St, Boston,MA,02215 +155591,Wired Headphones,1,11.99,2019-02-25 19:51:00,150 Hill St, San Francisco,CA,94016 +155592,USB-C Charging Cable,1,11.95,2019-02-02 19:44:00,275 4th St, Seattle,WA,98101 +155593,Lightning Charging Cable,1,14.95,2019-02-25 20:50:00,626 Cedar St, Los Angeles,CA,90001 +155594,AA Batteries (4-pack),3,3.84,2019-02-23 22:18:00,437 West St, Atlanta,GA,30301 +155595,AAA Batteries (4-pack),1,2.99,2019-02-27 09:44:00,660 13th St, Dallas,TX,75001 +155596,Apple Airpods Headphones,1,150.0,2019-02-23 22:58:00,344 Washington St, San Francisco,CA,94016 +155597,Lightning Charging Cable,1,14.95,2019-02-02 20:26:00,574 Center St, Dallas,TX,75001 +155598,27in FHD Monitor,1,149.99,2019-02-10 11:59:00,22 Center St, New York City,NY,10001 +155599,AAA Batteries (4-pack),1,2.99,2019-02-02 13:53:00,437 Maple St, Los Angeles,CA,90001 +155600,Lightning Charging Cable,1,14.95,2019-02-23 23:24:00,734 Meadow St, Los Angeles,CA,90001 +155601,27in FHD Monitor,1,149.99,2019-02-21 12:41:00,394 Meadow St, Dallas,TX,75001 +155602,Bose SoundSport Headphones,1,99.99,2019-02-26 10:01:00,186 Cedar St, New York City,NY,10001 +155603,Wired Headphones,1,11.99,2019-02-09 08:45:00,45 8th St, Los Angeles,CA,90001 +155604,AAA Batteries (4-pack),2,2.99,2019-02-13 23:18:00,470 River St, New York City,NY,10001 +155605,Apple Airpods Headphones,1,150.0,2019-02-16 07:34:00,791 Ridge St, Atlanta,GA,30301 +155606,Lightning Charging Cable,1,14.95,2019-02-28 15:30:00,229 6th St, San Francisco,CA,94016 +155607,Wired Headphones,1,11.99,2019-02-12 09:58:00,913 7th St, San Francisco,CA,94016 +155608,USB-C Charging Cable,2,11.95,2019-02-08 21:53:00,207 Washington St, Boston,MA,02215 +155609,Wired Headphones,1,11.99,2019-02-20 13:09:00,885 Church St, New York City,NY,10001 +155610,Lightning Charging Cable,1,14.95,2019-02-18 20:34:00,829 Chestnut St, New York City,NY,10001 +155611,AA Batteries (4-pack),1,3.84,2019-02-23 19:39:00,444 Spruce St, Dallas,TX,75001 +155612,USB-C Charging Cable,1,11.95,2019-02-06 11:08:00,329 Wilson St, Los Angeles,CA,90001 +155613,Macbook Pro Laptop,1,1700.0,2019-02-20 16:08:00,912 14th St, Los Angeles,CA,90001 +155614,34in Ultrawide Monitor,1,379.99,2019-02-17 20:17:00,378 1st St, San Francisco,CA,94016 +155615,iPhone,1,700.0,2019-02-10 21:30:00,802 Hickory St, San Francisco,CA,94016 +155616,Wired Headphones,1,11.99,2019-02-23 15:58:00,819 Cherry St, Boston,MA,02215 +155617,Flatscreen TV,1,300.0,2019-02-26 17:46:00,674 8th St, Austin,TX,73301 +155618,iPhone,1,700.0,2019-02-13 18:06:00,363 Wilson St, Seattle,WA,98101 +155618,Lightning Charging Cable,1,14.95,2019-02-13 18:06:00,363 Wilson St, Seattle,WA,98101 +155619,Bose SoundSport Headphones,1,99.99,2019-02-11 23:17:00,508 Main St, San Francisco,CA,94016 +155620,AAA Batteries (4-pack),2,2.99,2019-02-28 20:06:00,661 Jefferson St, San Francisco,CA,94016 +155621,27in 4K Gaming Monitor,1,389.99,2019-02-23 14:14:00,143 West St, San Francisco,CA,94016 +155622,USB-C Charging Cable,1,11.95,2019-02-23 09:17:00,603 Highland St, New York City,NY,10001 +155623,LG Dryer,1,600.0,2019-02-13 15:00:00,929 Washington St, San Francisco,CA,94016 +155624,Apple Airpods Headphones,1,150.0,2019-02-05 23:44:00,854 West St, San Francisco,CA,94016 +155625,Apple Airpods Headphones,1,150.0,2019-02-24 15:11:00,360 10th St, Portland,OR,97035 +155626,iPhone,1,700.0,2019-02-24 01:02:00,288 12th St, Seattle,WA,98101 +155627,Flatscreen TV,1,300.0,2019-02-08 18:31:00,608 1st St, Boston,MA,02215 +155628,iPhone,1,700.0,2019-02-10 18:52:00,160 River St, San Francisco,CA,94016 +155628,Lightning Charging Cable,1,14.95,2019-02-10 18:52:00,160 River St, San Francisco,CA,94016 +155629,USB-C Charging Cable,1,11.95,2019-02-22 07:22:00,123 14th St, San Francisco,CA,94016 +155630,LG Washing Machine,1,600.0,2019-02-05 20:58:00,827 Center St, San Francisco,CA,94016 +155631,Lightning Charging Cable,1,14.95,2019-02-03 10:05:00,592 Elm St, New York City,NY,10001 +155632,Google Phone,1,600.0,2019-02-25 15:33:00,628 Hickory St, Atlanta,GA,30301 +155633,20in Monitor,1,109.99,2019-02-18 23:30:00,698 Cherry St, Los Angeles,CA,90001 +155634,Flatscreen TV,1,300.0,2019-02-24 09:31:00,952 South St, Boston,MA,02215 +155635,Lightning Charging Cable,1,14.95,2019-02-11 15:27:00,280 5th St, San Francisco,CA,94016 +155636,ThinkPad Laptop,1,999.99,2019-02-21 14:39:00,438 Church St, Los Angeles,CA,90001 +155637,Apple Airpods Headphones,1,150.0,2019-02-07 18:21:00,284 Forest St, Seattle,WA,98101 +155638,USB-C Charging Cable,2,11.95,2019-02-09 22:53:00,608 Madison St, San Francisco,CA,94016 +155639,34in Ultrawide Monitor,1,379.99,2019-02-05 08:03:00,995 Main St, Atlanta,GA,30301 +155640,Apple Airpods Headphones,1,150.0,2019-02-12 11:42:00,543 Meadow St, Atlanta,GA,30301 +155641,USB-C Charging Cable,1,11.95,2019-02-14 21:01:00,371 13th St, Los Angeles,CA,90001 +155642,USB-C Charging Cable,1,11.95,2019-02-14 23:25:00,687 12th St, Atlanta,GA,30301 +155643,Google Phone,1,600.0,2019-02-18 22:47:00,336 Jackson St, San Francisco,CA,94016 +155644,USB-C Charging Cable,1,11.95,2019-02-18 11:00:00,405 Wilson St, Atlanta,GA,30301 +155645,20in Monitor,1,109.99,2019-02-02 05:47:00,233 Lakeview St, Seattle,WA,98101 +155646,USB-C Charging Cable,1,11.95,2019-02-21 10:19:00,690 Pine St, Los Angeles,CA,90001 +155647,Apple Airpods Headphones,1,150.0,2019-02-13 19:24:00,11 Willow St, Boston,MA,02215 +155648,20in Monitor,1,109.99,2019-02-22 20:50:00,725 10th St, Los Angeles,CA,90001 +155649,27in FHD Monitor,1,149.99,2019-02-24 12:18:00,449 Forest St, Los Angeles,CA,90001 +155650,AAA Batteries (4-pack),1,2.99,2019-02-19 10:28:00,763 10th St, Austin,TX,73301 +155651,Apple Airpods Headphones,1,150.0,2019-02-10 02:12:00,766 Hickory St, Atlanta,GA,30301 +155652,Macbook Pro Laptop,1,1700.0,2019-02-18 16:52:00,999 Highland St, San Francisco,CA,94016 +155653,Lightning Charging Cable,1,14.95,2019-02-15 04:06:00,260 6th St, San Francisco,CA,94016 +155654,AA Batteries (4-pack),1,3.84,2019-02-24 16:52:00,457 Elm St, Portland,OR,97035 +155655,USB-C Charging Cable,1,11.95,2019-02-15 18:40:00,701 Sunset St, Atlanta,GA,30301 +155656,AAA Batteries (4-pack),1,2.99,2019-02-10 00:47:00,403 7th St, San Francisco,CA,94016 +155657,AAA Batteries (4-pack),1,2.99,2019-02-13 20:43:00,708 Hill St, New York City,NY,10001 +155658,AAA Batteries (4-pack),2,2.99,2019-02-08 08:26:00,819 Pine St, Portland,OR,97035 +155659,Macbook Pro Laptop,1,1700.0,2019-02-05 17:10:00,368 Pine St, Portland,OR,97035 +155660,Bose SoundSport Headphones,1,99.99,2019-02-23 16:41:00,133 Ridge St, Boston,MA,02215 +155661,AA Batteries (4-pack),1,3.84,2019-02-27 18:32:00,514 North St, San Francisco,CA,94016 +155662,34in Ultrawide Monitor,1,379.99,2019-02-07 20:36:00,90 Park St, New York City,NY,10001 +155663,Flatscreen TV,1,300.0,2019-02-20 17:48:00,982 1st St, Dallas,TX,75001 +155664,Bose SoundSport Headphones,1,99.99,2019-02-13 16:03:00,267 1st St, San Francisco,CA,94016 +155664,27in 4K Gaming Monitor,1,389.99,2019-02-13 16:03:00,267 1st St, San Francisco,CA,94016 +155665,Lightning Charging Cable,1,14.95,2019-02-12 16:24:00,166 Lakeview St, Dallas,TX,75001 +155666,USB-C Charging Cable,1,11.95,2019-02-19 09:32:00,298 Jackson St, New York City,NY,10001 +155667,Wired Headphones,1,11.99,2019-02-19 10:21:00,656 Pine St, San Francisco,CA,94016 +155668,34in Ultrawide Monitor,1,379.99,2019-02-16 08:15:00,570 Sunset St, San Francisco,CA,94016 +155669,Bose SoundSport Headphones,1,99.99,2019-02-21 10:52:00,712 7th St, San Francisco,CA,94016 +155670,USB-C Charging Cable,1,11.95,2019-02-22 20:31:00,150 Cedar St, Seattle,WA,98101 +155671,27in FHD Monitor,1,149.99,2019-02-14 20:29:00,975 Highland St, Dallas,TX,75001 +155672,Bose SoundSport Headphones,1,99.99,2019-02-21 08:44:00,976 Chestnut St, Austin,TX,73301 +155673,27in FHD Monitor,1,149.99,2019-02-09 17:41:00,687 5th St, Seattle,WA,98101 +155674,27in FHD Monitor,1,149.99,2019-02-19 19:56:00,312 Spruce St, Boston,MA,02215 +155674,AAA Batteries (4-pack),1,2.99,2019-02-19 19:56:00,312 Spruce St, Boston,MA,02215 +155675,AAA Batteries (4-pack),1,2.99,2019-02-23 19:59:00,492 Dogwood St, Portland,OR,97035 +155676,Wired Headphones,1,11.99,2019-02-06 18:05:00,805 12th St, Austin,TX,73301 +155677,Lightning Charging Cable,1,14.95,2019-02-24 22:43:00,898 Chestnut St, Seattle,WA,98101 +155678,Bose SoundSport Headphones,1,99.99,2019-02-24 18:35:00,156 River St, Seattle,WA,98101 +155679,27in FHD Monitor,1,149.99,2019-02-07 00:16:00,443 North St, Atlanta,GA,30301 +155680,20in Monitor,1,109.99,2019-02-18 23:22:00,582 Meadow St, New York City,NY,10001 +155681,Apple Airpods Headphones,1,150.0,2019-02-02 19:01:00,27 South St, San Francisco,CA,94016 +155682,USB-C Charging Cable,1,11.95,2019-02-08 20:44:00,914 Highland St, New York City,NY,10001 +155683,Bose SoundSport Headphones,1,99.99,2019-02-19 21:07:00,859 Jefferson St, San Francisco,CA,94016 +155684,AAA Batteries (4-pack),1,2.99,2019-02-05 06:58:00,275 Cedar St, Atlanta,GA,30301 +155685,AA Batteries (4-pack),3,3.84,2019-02-22 12:04:00,420 Sunset St, San Francisco,CA,94016 +155686,Wired Headphones,1,11.99,2019-02-02 14:11:00,838 Johnson St, Atlanta,GA,30301 +155687,Wired Headphones,1,11.99,2019-02-10 18:56:00,152 South St, Los Angeles,CA,90001 +155688,AA Batteries (4-pack),1,3.84,2019-02-21 23:14:00,993 Hill St, Austin,TX,73301 +155689,Apple Airpods Headphones,1,150.0,2019-02-12 12:20:00,802 River St, San Francisco,CA,94016 +155690,AA Batteries (4-pack),1,3.84,2019-02-10 11:27:00,982 Church St, San Francisco,CA,94016 +155691,Macbook Pro Laptop,1,1700.0,2019-02-24 01:30:00,666 Jefferson St, New York City,NY,10001 +155692,AAA Batteries (4-pack),2,2.99,2019-02-19 21:17:00,114 7th St, Portland,ME,04101 +155693,Apple Airpods Headphones,1,150.0,2019-02-11 12:55:00,163 Cedar St, San Francisco,CA,94016 +155694,27in FHD Monitor,1,149.99,2019-02-03 18:34:00,449 Madison St, New York City,NY,10001 +155695,ThinkPad Laptop,1,999.99,2019-02-10 21:23:00,432 West St, Atlanta,GA,30301 +155696,iPhone,1,700.0,2019-02-28 11:48:00,340 1st St, Seattle,WA,98101 +155697,AA Batteries (4-pack),1,3.84,2019-02-13 15:17:00,961 Spruce St, Boston,MA,02215 +155698,iPhone,1,700.0,2019-02-15 07:12:00,683 Adams St, Los Angeles,CA,90001 +155699,27in 4K Gaming Monitor,1,389.99,2019-02-28 00:39:00,880 Cherry St, Boston,MA,02215 +155700,USB-C Charging Cable,2,11.95,2019-02-01 15:43:00,696 Sunset St, San Francisco,CA,94016 +155701,27in 4K Gaming Monitor,1,389.99,2019-02-22 11:38:00,304 Sunset St, New York City,NY,10001 +155702,Wired Headphones,1,11.99,2019-02-13 14:45:00,946 12th St, Dallas,TX,75001 +155703,Macbook Pro Laptop,1,1700.0,2019-02-17 16:05:00,381 2nd St, Atlanta,GA,30301 +155704,Wired Headphones,1,11.99,2019-02-17 12:46:00,422 Adams St, San Francisco,CA,94016 +155705,27in 4K Gaming Monitor,1,389.99,2019-02-17 22:27:00,838 7th St, San Francisco,CA,94016 +155706,iPhone,1,700.0,2019-02-13 10:40:00,953 River St, New York City,NY,10001 +155706,Wired Headphones,1,11.99,2019-02-13 10:40:00,953 River St, New York City,NY,10001 +155707,AA Batteries (4-pack),1,3.84,2019-02-15 23:00:00,717 Adams St, New York City,NY,10001 +155708,iPhone,1,700.0,2019-02-11 18:51:00,157 1st St, San Francisco,CA,94016 +155709,Apple Airpods Headphones,1,150.0,2019-02-21 22:20:00,768 Willow St, Seattle,WA,98101 +155710,AA Batteries (4-pack),1,3.84,2019-02-18 09:00:00,45 Jefferson St, San Francisco,CA,94016 +155711,Vareebadd Phone,1,400.0,2019-02-11 18:33:00,372 Willow St, Los Angeles,CA,90001 +155711,USB-C Charging Cable,1,11.95,2019-02-11 18:33:00,372 Willow St, Los Angeles,CA,90001 +155712,27in 4K Gaming Monitor,1,389.99,2019-02-04 21:09:00,467 Jackson St, Portland,OR,97035 +155713,iPhone,1,700.0,2019-02-18 08:14:00,826 Wilson St, San Francisco,CA,94016 +155714,Wired Headphones,1,11.99,2019-02-17 06:10:00,106 14th St, San Francisco,CA,94016 +155715,Lightning Charging Cable,1,14.95,2019-02-15 10:34:00,163 Sunset St, New York City,NY,10001 +155716,Lightning Charging Cable,1,14.95,2019-02-17 00:02:00,628 Hickory St, Seattle,WA,98101 +155717,AA Batteries (4-pack),2,3.84,2019-02-28 00:21:00,134 North St, San Francisco,CA,94016 +155718,AAA Batteries (4-pack),1,2.99,2019-02-04 14:06:00,836 Hickory St, Seattle,WA,98101 +155719,34in Ultrawide Monitor,1,379.99,2019-02-19 17:09:00,338 5th St, New York City,NY,10001 +155720,Apple Airpods Headphones,1,150.0,2019-02-22 16:57:00,678 Johnson St, Atlanta,GA,30301 +155721,Google Phone,1,600.0,2019-02-13 23:45:00,820 Adams St, San Francisco,CA,94016 +155722,Apple Airpods Headphones,1,150.0,2019-02-25 09:00:00,520 Wilson St, San Francisco,CA,94016 +155723,Lightning Charging Cable,1,14.95,2019-02-03 18:09:00,585 6th St, Boston,MA,02215 +155724,AAA Batteries (4-pack),2,2.99,2019-02-14 14:55:00,34 Lincoln St, Portland,OR,97035 +155725,Apple Airpods Headphones,1,150.0,2019-02-18 10:05:00,982 Hickory St, San Francisco,CA,94016 +155726,Apple Airpods Headphones,1,150.0,2019-02-18 20:24:00,621 1st St, New York City,NY,10001 +155727,AA Batteries (4-pack),1,3.84,2019-02-11 14:16:00,776 10th St, New York City,NY,10001 +155728,iPhone,1,700.0,2019-02-13 15:17:00,206 Adams St, New York City,NY,10001 +155729,ThinkPad Laptop,1,999.99,2019-02-16 20:13:00,629 Adams St, New York City,NY,10001 +155730,Apple Airpods Headphones,1,150.0,2019-02-17 14:16:00,348 Pine St, Boston,MA,02215 +155731,AAA Batteries (4-pack),2,2.99,2019-02-16 13:29:00,992 13th St, New York City,NY,10001 +155732,USB-C Charging Cable,1,11.95,2019-02-06 11:58:00,145 7th St, Seattle,WA,98101 +155733,27in FHD Monitor,1,149.99,2019-02-23 15:29:00,2 Hill St, San Francisco,CA,94016 +155734,Macbook Pro Laptop,1,1700.0,2019-02-16 19:25:00,400 Hill St, Dallas,TX,75001 +155735,AA Batteries (4-pack),2,3.84,2019-02-28 13:04:00,969 9th St, Los Angeles,CA,90001 +155736,Lightning Charging Cable,1,14.95,2019-02-10 06:28:00,475 5th St, San Francisco,CA,94016 +155737,Apple Airpods Headphones,1,150.0,2019-02-03 18:15:00,555 Park St, San Francisco,CA,94016 +155738,AAA Batteries (4-pack),1,2.99,2019-02-05 18:40:00,320 14th St, Portland,OR,97035 +155739,Wired Headphones,1,11.99,2019-02-09 11:18:00,888 Madison St, Boston,MA,02215 +155740,27in 4K Gaming Monitor,1,389.99,2019-02-15 22:17:00,189 Walnut St, Portland,OR,97035 +155741,AA Batteries (4-pack),2,3.84,2019-02-05 11:19:00,218 12th St, Los Angeles,CA,90001 +155742,Macbook Pro Laptop,1,1700.0,2019-02-27 08:16:00,687 Highland St, Seattle,WA,98101 +155743,Lightning Charging Cable,1,14.95,2019-02-16 21:09:00,40 Johnson St, Austin,TX,73301 +155744,Wired Headphones,1,11.99,2019-02-24 09:27:00,316 Hickory St, Los Angeles,CA,90001 +155745,Flatscreen TV,1,300.0,2019-02-23 20:58:00,738 Dogwood St, San Francisco,CA,94016 +155746,USB-C Charging Cable,1,11.95,2019-02-27 20:27:00,999 Willow St, Los Angeles,CA,90001 +155747,ThinkPad Laptop,1,999.99,2019-02-27 16:09:00,198 West St, Los Angeles,CA,90001 +155748,AA Batteries (4-pack),1,3.84,2019-02-16 14:52:00,832 Adams St, Los Angeles,CA,90001 +155749,AA Batteries (4-pack),1,3.84,2019-02-05 12:09:00,970 Washington St, Portland,OR,97035 +155750,Wired Headphones,1,11.99,2019-02-28 15:35:00,714 Washington St, San Francisco,CA,94016 +155751,Wired Headphones,1,11.99,2019-02-06 13:47:00,887 North St, San Francisco,CA,94016 +155752,Lightning Charging Cable,1,14.95,2019-02-02 15:15:00,682 Ridge St, Portland,OR,97035 +155753,AAA Batteries (4-pack),3,2.99,2019-02-09 19:34:00,908 9th St, Seattle,WA,98101 +155754,Lightning Charging Cable,1,14.95,2019-02-20 14:36:00,29 1st St, Portland,OR,97035 +155755,Apple Airpods Headphones,1,150.0,2019-02-20 10:44:00,417 Dogwood St, Los Angeles,CA,90001 +155756,Apple Airpods Headphones,1,150.0,2019-02-24 16:57:00,500 Walnut St, Boston,MA,02215 +155757,USB-C Charging Cable,1,11.95,2019-02-17 18:59:00,474 11th St, New York City,NY,10001 +155758,Lightning Charging Cable,1,14.95,2019-02-15 12:53:00,560 Lakeview St, San Francisco,CA,94016 +155759,AA Batteries (4-pack),1,3.84,2019-02-16 23:10:00,939 1st St, Los Angeles,CA,90001 +155760,Lightning Charging Cable,1,14.95,2019-02-06 11:17:00,903 Main St, San Francisco,CA,94016 +155761,Wired Headphones,1,11.99,2019-02-13 18:40:00,746 13th St, New York City,NY,10001 +155762,Vareebadd Phone,1,400.0,2019-02-04 18:55:00,121 Ridge St, New York City,NY,10001 +155762,USB-C Charging Cable,1,11.95,2019-02-04 18:55:00,121 Ridge St, New York City,NY,10001 +155763,27in 4K Gaming Monitor,1,389.99,2019-02-17 00:44:00,881 Walnut St, Los Angeles,CA,90001 +155764,USB-C Charging Cable,1,11.95,2019-02-07 14:40:00,587 Washington St, New York City,NY,10001 +155765,USB-C Charging Cable,1,11.95,2019-02-18 09:50:00,546 Lakeview St, New York City,NY,10001 +155766,Vareebadd Phone,1,400.0,2019-02-24 19:38:00,512 Cherry St, Boston,MA,02215 +155766,Wired Headphones,1,11.99,2019-02-24 19:38:00,512 Cherry St, Boston,MA,02215 +155767,Bose SoundSport Headphones,1,99.99,2019-02-27 23:57:00,800 West St, Seattle,WA,98101 +155767,27in 4K Gaming Monitor,1,389.99,2019-02-27 23:57:00,800 West St, Seattle,WA,98101 +155768,Apple Airpods Headphones,1,150.0,2019-02-28 14:00:00,701 8th St, Atlanta,GA,30301 +155769,AA Batteries (4-pack),1,3.84,2019-02-13 23:19:00,822 8th St, San Francisco,CA,94016 +155770,iPhone,1,700.0,2019-02-14 20:02:00,621 Pine St, San Francisco,CA,94016 +155771,USB-C Charging Cable,1,11.95,2019-02-06 20:00:00,698 Willow St, Los Angeles,CA,90001 +155772,Wired Headphones,1,11.99,2019-02-14 20:24:00,974 South St, Seattle,WA,98101 +155773,AA Batteries (4-pack),1,3.84,2019-02-25 21:21:00,296 5th St, Portland,OR,97035 +155774,USB-C Charging Cable,1,11.95,2019-02-04 16:57:00,367 6th St, Austin,TX,73301 +155775,AA Batteries (4-pack),1,3.84,2019-02-18 11:35:00,596 Park St, Los Angeles,CA,90001 +155776,Wired Headphones,1,11.99,2019-02-15 18:59:00,807 12th St, San Francisco,CA,94016 +155777,27in 4K Gaming Monitor,1,389.99,2019-02-20 21:14:00,495 Dogwood St, Portland,OR,97035 +155778,AA Batteries (4-pack),1,3.84,2019-02-24 15:21:00,98 Walnut St, San Francisco,CA,94016 +155779,27in 4K Gaming Monitor,1,389.99,2019-02-28 21:49:00,937 Park St, Los Angeles,CA,90001 +155780,Vareebadd Phone,1,400.0,2019-02-04 12:37:00,326 Cherry St, Los Angeles,CA,90001 +155781,Apple Airpods Headphones,1,150.0,2019-02-03 01:08:00,123 Cherry St, Dallas,TX,75001 +155782,Wired Headphones,1,11.99,2019-02-12 08:58:00,205 Maple St, Dallas,TX,75001 +155783,Lightning Charging Cable,1,14.95,2019-02-05 21:33:00,131 Jackson St, San Francisco,CA,94016 +155784,Bose SoundSport Headphones,1,99.99,2019-02-28 18:41:00,293 8th St, Los Angeles,CA,90001 +155785,AA Batteries (4-pack),1,3.84,2019-02-14 11:03:00,633 6th St, New York City,NY,10001 +155786,USB-C Charging Cable,1,11.95,2019-02-27 10:18:00,166 Maple St, Dallas,TX,75001 +155787,Lightning Charging Cable,1,14.95,2019-02-02 04:18:00,771 Cherry St, Portland,OR,97035 +155788,Macbook Pro Laptop,1,1700.0,2019-02-22 21:06:00,714 10th St, San Francisco,CA,94016 +155789,AA Batteries (4-pack),2,3.84,2019-02-14 10:02:00,464 2nd St, Los Angeles,CA,90001 +155790,Macbook Pro Laptop,1,1700.0,2019-02-15 17:17:00,9 Jefferson St, Boston,MA,02215 +155791,27in 4K Gaming Monitor,1,389.99,2019-02-08 06:50:00,630 Lakeview St, Dallas,TX,75001 +155792,AAA Batteries (4-pack),1,2.99,2019-02-26 11:29:00,587 Cedar St, Los Angeles,CA,90001 +155793,AA Batteries (4-pack),1,3.84,2019-02-05 09:56:00,89 Madison St, Boston,MA,02215 +155794,AAA Batteries (4-pack),1,2.99,2019-02-04 15:10:00,545 Lakeview St, New York City,NY,10001 +155795,Wired Headphones,1,11.99,2019-02-27 06:45:00,519 Highland St, San Francisco,CA,94016 +155796,Google Phone,1,600.0,2019-02-18 13:53:00,394 10th St, San Francisco,CA,94016 +155797,20in Monitor,1,109.99,2019-02-09 14:42:00,756 Spruce St, Atlanta,GA,30301 +155798,AA Batteries (4-pack),1,3.84,2019-02-13 12:53:00,101 Lincoln St, Los Angeles,CA,90001 +155799,AAA Batteries (4-pack),1,2.99,2019-02-05 21:24:00,608 Church St, San Francisco,CA,94016 +155800,Lightning Charging Cable,1,14.95,2019-02-10 17:33:00,444 Ridge St, Los Angeles,CA,90001 +155801,34in Ultrawide Monitor,1,379.99,2019-02-23 16:43:00,318 6th St, San Francisco,CA,94016 +155802,Apple Airpods Headphones,1,150.0,2019-02-27 01:26:00,538 River St, Los Angeles,CA,90001 +155803,AA Batteries (4-pack),1,3.84,2019-02-21 18:57:00,76 Pine St, Atlanta,GA,30301 +155804,AA Batteries (4-pack),1,3.84,2019-02-25 22:40:00,894 Hill St, Seattle,WA,98101 +155805,Google Phone,1,600.0,2019-02-01 21:52:00,729 Johnson St, New York City,NY,10001 +155805,USB-C Charging Cable,1,11.95,2019-02-01 21:52:00,729 Johnson St, New York City,NY,10001 +155806,Bose SoundSport Headphones,1,99.99,2019-02-21 22:49:00,538 4th St, Boston,MA,02215 +155807,Lightning Charging Cable,1,14.95,2019-02-10 04:41:00,994 6th St, Atlanta,GA,30301 +155808,20in Monitor,1,109.99,2019-02-28 12:56:00,920 Cedar St, Portland,OR,97035 +155809,USB-C Charging Cable,1,11.95,2019-02-05 21:20:00,968 Jefferson St, San Francisco,CA,94016 +155810,34in Ultrawide Monitor,1,379.99,2019-02-19 11:04:00,491 Lakeview St, Seattle,WA,98101 +155811,Flatscreen TV,1,300.0,2019-02-15 18:24:00,503 Pine St, New York City,NY,10001 +155812,Flatscreen TV,1,300.0,2019-02-06 07:49:00,824 Meadow St, San Francisco,CA,94016 +155813,Wired Headphones,1,11.99,2019-02-14 18:59:00,742 Washington St, San Francisco,CA,94016 +155814,Lightning Charging Cable,1,14.95,2019-02-03 22:31:00,383 Madison St, San Francisco,CA,94016 +155815,ThinkPad Laptop,1,999.99,2019-02-28 16:53:00,468 North St, San Francisco,CA,94016 +155816,27in FHD Monitor,1,149.99,2019-02-06 17:37:00,747 Dogwood St, Austin,TX,73301 +155817,USB-C Charging Cable,1,11.95,2019-02-08 16:54:00,917 Elm St, San Francisco,CA,94016 +155818,AA Batteries (4-pack),1,3.84,2019-02-18 23:09:00,955 6th St, Portland,ME,04101 +155819,Flatscreen TV,1,300.0,2019-02-20 05:01:00,339 Walnut St, San Francisco,CA,94016 +155820,AAA Batteries (4-pack),4,2.99,2019-02-13 06:47:00,536 Sunset St, San Francisco,CA,94016 +155821,Bose SoundSport Headphones,1,99.99,2019-02-03 17:47:00,524 Hickory St, Boston,MA,02215 +155822,Lightning Charging Cable,1,14.95,2019-02-12 09:14:00,286 Lincoln St, Los Angeles,CA,90001 +155823,USB-C Charging Cable,1,11.95,2019-02-13 12:08:00,440 Park St, Los Angeles,CA,90001 +155824,27in 4K Gaming Monitor,1,389.99,2019-02-13 13:13:00,933 Park St, San Francisco,CA,94016 +155825,AAA Batteries (4-pack),1,2.99,2019-02-17 15:50:00,633 7th St, New York City,NY,10001 +155826,USB-C Charging Cable,1,11.95,2019-02-07 11:50:00,506 9th St, New York City,NY,10001 +155827,AA Batteries (4-pack),1,3.84,2019-02-22 17:23:00,786 Chestnut St, Dallas,TX,75001 +155828,Google Phone,1,600.0,2019-02-15 13:03:00,662 Cherry St, New York City,NY,10001 +155828,Wired Headphones,1,11.99,2019-02-15 13:03:00,662 Cherry St, New York City,NY,10001 +155829,AAA Batteries (4-pack),1,2.99,2019-02-10 07:06:00,622 Spruce St, Los Angeles,CA,90001 +155830,Apple Airpods Headphones,1,150.0,2019-02-26 11:33:00,455 Jefferson St, New York City,NY,10001 +155831,Apple Airpods Headphones,1,150.0,2019-02-18 14:05:00,60 Hickory St, San Francisco,CA,94016 +155832,Apple Airpods Headphones,1,150.0,2019-02-08 11:35:00,700 Walnut St, Los Angeles,CA,90001 +155833,AAA Batteries (4-pack),2,2.99,2019-02-06 07:34:00,211 5th St, San Francisco,CA,94016 +155834,Apple Airpods Headphones,1,150.0,2019-02-09 21:17:00,981 Ridge St, San Francisco,CA,94016 +155835,Lightning Charging Cable,1,14.95,2019-02-04 12:16:00,780 14th St, New York City,NY,10001 +155836,Lightning Charging Cable,1,14.95,2019-02-26 18:16:00,943 Madison St, Dallas,TX,75001 +155837,AA Batteries (4-pack),1,3.84,2019-02-06 19:19:00,655 Johnson St, Dallas,TX,75001 +155838,USB-C Charging Cable,1,11.95,2019-02-15 16:17:00,97 Park St, Portland,OR,97035 +155839,AAA Batteries (4-pack),1,2.99,2019-02-05 14:58:00,629 1st St, New York City,NY,10001 +155840,AAA Batteries (4-pack),1,2.99,2019-02-23 19:53:00,791 10th St, San Francisco,CA,94016 +155841,Lightning Charging Cable,1,14.95,2019-02-23 10:44:00,240 13th St, Atlanta,GA,30301 +155842,27in FHD Monitor,1,149.99,2019-02-25 14:57:00,729 Hickory St, Portland,OR,97035 +155843,USB-C Charging Cable,2,11.95,2019-02-26 07:24:00,667 Dogwood St, Dallas,TX,75001 +155844,Apple Airpods Headphones,1,150.0,2019-02-05 18:47:00,262 12th St, Atlanta,GA,30301 +155845,USB-C Charging Cable,1,11.95,2019-02-24 19:06:00,646 5th St, Seattle,WA,98101 +155846,Wired Headphones,1,11.99,2019-02-05 05:47:00,509 Jackson St, Seattle,WA,98101 +155847,AAA Batteries (4-pack),1,2.99,2019-02-14 19:40:00,440 9th St, Austin,TX,73301 +155848,Google Phone,1,600.0,2019-02-12 17:14:00,466 1st St, New York City,NY,10001 +155849,27in 4K Gaming Monitor,1,389.99,2019-02-17 19:36:00,166 Madison St, San Francisco,CA,94016 +155850,AA Batteries (4-pack),1,3.84,2019-02-27 16:40:00,240 Forest St, Seattle,WA,98101 +155851,AAA Batteries (4-pack),1,2.99,2019-02-09 09:37:00,67 5th St, Portland,OR,97035 +155852,Flatscreen TV,1,300.0,2019-02-22 12:30:00,475 Highland St, Atlanta,GA,30301 +155853,AA Batteries (4-pack),1,3.84,2019-02-07 21:37:00,70 2nd St, Boston,MA,02215 +155854,27in FHD Monitor,1,149.99,2019-02-02 20:13:00,551 Maple St, New York City,NY,10001 +155855,AAA Batteries (4-pack),2,2.99,2019-02-01 16:23:00,554 Lincoln St, Los Angeles,CA,90001 +155856,Apple Airpods Headphones,1,150.0,2019-02-12 12:26:00,588 9th St, Boston,MA,02215 +155857,USB-C Charging Cable,2,11.95,2019-02-28 16:32:00,563 Lakeview St, New York City,NY,10001 +155858,AAA Batteries (4-pack),1,2.99,2019-02-23 13:14:00,854 South St, Boston,MA,02215 +155859,USB-C Charging Cable,1,11.95,2019-02-06 11:55:00,512 4th St, Los Angeles,CA,90001 +155860,27in 4K Gaming Monitor,1,389.99,2019-02-24 14:32:00,832 South St, San Francisco,CA,94016 +155861,Flatscreen TV,1,300.0,2019-02-04 07:54:00,266 Sunset St, Seattle,WA,98101 +155862,Lightning Charging Cable,1,14.95,2019-02-09 12:11:00,5 Highland St, New York City,NY,10001 +155863,Apple Airpods Headphones,1,150.0,2019-02-25 15:29:00,823 2nd St, San Francisco,CA,94016 +155864,27in FHD Monitor,1,149.99,2019-02-11 18:17:00,860 Church St, Boston,MA,02215 +155865,Bose SoundSport Headphones,1,99.99,2019-02-14 20:27:00,905 Jefferson St, San Francisco,CA,94016 +155866,USB-C Charging Cable,1,11.95,2019-02-12 22:01:00,48 Park St, Austin,TX,73301 +155867,Wired Headphones,2,11.99,2019-02-23 14:50:00,759 Jackson St, Portland,OR,97035 +155868,USB-C Charging Cable,1,11.95,2019-02-17 19:56:00,363 Park St, New York City,NY,10001 +155869,27in FHD Monitor,1,149.99,2019-02-17 14:14:00,590 Lincoln St, Boston,MA,02215 +155870,ThinkPad Laptop,1,999.99,2019-02-11 08:09:00,21 8th St, Portland,ME,04101 +155871,AA Batteries (4-pack),2,3.84,2019-02-09 22:46:00,989 Maple St, Atlanta,GA,30301 +155872,Lightning Charging Cable,1,14.95,2019-02-02 11:00:00,31 7th St, San Francisco,CA,94016 +155873,27in FHD Monitor,1,149.99,2019-02-10 20:33:00,268 Dogwood St, Portland,ME,04101 +155874,20in Monitor,1,109.99,2019-02-09 14:55:00,337 West St, Austin,TX,73301 +155875,AA Batteries (4-pack),1,3.84,2019-02-24 18:20:00,958 Park St, Portland,OR,97035 +155876,AAA Batteries (4-pack),1,2.99,2019-02-21 16:41:00,337 13th St, San Francisco,CA,94016 +155877,AA Batteries (4-pack),1,3.84,2019-02-11 16:28:00,953 Dogwood St, Los Angeles,CA,90001 +155878,Apple Airpods Headphones,1,150.0,2019-02-04 01:21:00,204 7th St, San Francisco,CA,94016 +155879,27in FHD Monitor,1,149.99,2019-02-20 16:25:00,810 Jackson St, Boston,MA,02215 +155880,AAA Batteries (4-pack),2,2.99,2019-02-04 17:26:00,643 South St, Seattle,WA,98101 +155881,Bose SoundSport Headphones,1,99.99,2019-02-02 21:53:00,714 South St, New York City,NY,10001 +155882,ThinkPad Laptop,1,999.99,2019-02-18 16:47:00,740 Sunset St, Atlanta,GA,30301 +155883,AA Batteries (4-pack),2,3.84,2019-02-07 10:48:00,152 13th St, Boston,MA,02215 +155884,Lightning Charging Cable,1,14.95,2019-02-05 19:58:00,759 Lincoln St, Seattle,WA,98101 +155885,AAA Batteries (4-pack),1,2.99,2019-02-05 08:34:00,626 Elm St, New York City,NY,10001 +155886,AAA Batteries (4-pack),1,2.99,2019-02-23 13:15:00,23 Chestnut St, San Francisco,CA,94016 +155887,27in FHD Monitor,1,149.99,2019-02-11 16:16:00,787 6th St, Austin,TX,73301 +155888,AA Batteries (4-pack),1,3.84,2019-02-16 18:02:00,512 Meadow St, San Francisco,CA,94016 +155889,AAA Batteries (4-pack),1,2.99,2019-02-13 12:08:00,372 Adams St, Boston,MA,02215 +155890,Lightning Charging Cable,1,14.95,2019-02-12 16:38:00,711 Lakeview St, Atlanta,GA,30301 +155891,20in Monitor,2,109.99,2019-02-21 23:24:00,471 West St, Portland,OR,97035 +155892,Apple Airpods Headphones,1,150.0,2019-02-24 15:31:00,968 12th St, Portland,ME,04101 +155893,Apple Airpods Headphones,1,150.0,2019-02-25 19:36:00,659 Highland St, San Francisco,CA,94016 +155894,AA Batteries (4-pack),1,3.84,2019-02-22 11:11:00,686 12th St, San Francisco,CA,94016 +155895,iPhone,1,700.0,2019-02-01 21:33:00,566 Cherry St, Portland,OR,97035 +155896,Macbook Pro Laptop,1,1700.0,2019-02-11 23:33:00,389 Maple St, Portland,OR,97035 +155897,Apple Airpods Headphones,1,150.0,2019-02-07 19:32:00,957 9th St, Boston,MA,02215 +155898,AA Batteries (4-pack),1,3.84,2019-02-06 22:49:00,565 8th St, New York City,NY,10001 +155899,Wired Headphones,2,11.99,2019-02-08 10:09:00,875 Ridge St, Dallas,TX,75001 +155900,Lightning Charging Cable,2,14.95,2019-02-10 20:43:00,658 Lincoln St, Seattle,WA,98101 +155901,AA Batteries (4-pack),1,3.84,2019-02-23 20:26:00,659 8th St, New York City,NY,10001 +155902,34in Ultrawide Monitor,1,379.99,2019-02-01 12:56:00,233 Walnut St, New York City,NY,10001 +155903,27in FHD Monitor,1,149.99,2019-02-15 19:19:00,335 Church St, Seattle,WA,98101 +155904,USB-C Charging Cable,1,11.95,2019-02-23 14:00:00,377 6th St, San Francisco,CA,94016 +155905,Apple Airpods Headphones,1,150.0,2019-02-05 18:58:00,572 Dogwood St, Seattle,WA,98101 +155906,Bose SoundSport Headphones,1,99.99,2019-02-12 10:37:00,273 1st St, San Francisco,CA,94016 +155907,USB-C Charging Cable,1,11.95,2019-02-16 10:51:00,944 Spruce St, San Francisco,CA,94016 +155908,20in Monitor,1,109.99,2019-02-25 16:16:00,205 4th St, Portland,ME,04101 +155909,Lightning Charging Cable,1,14.95,2019-02-19 01:52:00,390 River St, Austin,TX,73301 +155910,iPhone,1,700.0,2019-02-08 19:23:00,663 Hickory St, San Francisco,CA,94016 +155910,Apple Airpods Headphones,1,150.0,2019-02-08 19:23:00,663 Hickory St, San Francisco,CA,94016 +155911,Flatscreen TV,1,300.0,2019-02-10 13:09:00,81 Highland St, San Francisco,CA,94016 +155912,Macbook Pro Laptop,1,1700.0,2019-02-09 23:10:00,111 12th St, San Francisco,CA,94016 +155913,Wired Headphones,1,11.99,2019-02-25 07:36:00,322 14th St, San Francisco,CA,94016 +155914,ThinkPad Laptop,1,999.99,2019-02-04 13:07:00,600 Ridge St, Atlanta,GA,30301 +155915,iPhone,1,700.0,2019-02-12 08:40:00,991 Center St, Atlanta,GA,30301 +155915,Lightning Charging Cable,1,14.95,2019-02-12 08:40:00,991 Center St, Atlanta,GA,30301 +155916,Wired Headphones,1,11.99,2019-02-22 06:27:00,642 Lincoln St, San Francisco,CA,94016 +155917,Lightning Charging Cable,1,14.95,2019-02-20 13:46:00,834 10th St, New York City,NY,10001 +155918,Bose SoundSport Headphones,1,99.99,2019-02-09 09:26:00,161 Lakeview St, New York City,NY,10001 +155919,ThinkPad Laptop,1,999.99,2019-02-21 00:35:00,573 Highland St, Atlanta,GA,30301 +155920,Wired Headphones,1,11.99,2019-02-19 01:07:00,908 Walnut St, Los Angeles,CA,90001 +155921,Lightning Charging Cable,1,14.95,2019-02-19 13:30:00,845 Hickory St, Atlanta,GA,30301 +155922,Bose SoundSport Headphones,1,99.99,2019-02-09 05:30:00,968 Dogwood St, Portland,OR,97035 +155923,Lightning Charging Cable,1,14.95,2019-02-16 09:19:00,4 Sunset St, San Francisco,CA,94016 +155924,Lightning Charging Cable,1,14.95,2019-02-12 18:44:00,635 11th St, Atlanta,GA,30301 +155925,AAA Batteries (4-pack),1,2.99,2019-02-06 11:35:00,733 14th St, San Francisco,CA,94016 +155926,iPhone,1,700.0,2019-02-20 23:01:00,763 Adams St, San Francisco,CA,94016 +155927,Lightning Charging Cable,1,14.95,2019-02-11 20:36:00,916 Highland St, Seattle,WA,98101 +155928,AA Batteries (4-pack),1,3.84,2019-02-28 15:37:00,96 River St, Dallas,TX,75001 +155929,USB-C Charging Cable,1,11.95,2019-02-25 16:47:00,939 Walnut St, New York City,NY,10001 +155930,AAA Batteries (4-pack),1,2.99,2019-02-13 03:17:00,527 Elm St, Seattle,WA,98101 +155931,USB-C Charging Cable,1,11.95,2019-02-11 13:31:00,805 Jefferson St, Los Angeles,CA,90001 +155932,Wired Headphones,1,11.99,2019-02-22 14:55:00,776 Cherry St, San Francisco,CA,94016 +155933,Wired Headphones,1,11.99,2019-02-02 12:25:00,63 Lincoln St, Austin,TX,73301 +155934,USB-C Charging Cable,1,11.95,2019-02-27 16:21:00,36 11th St, Atlanta,GA,30301 +155935,Google Phone,1,600.0,2019-02-05 14:49:00,37 Hill St, Portland,OR,97035 +155935,USB-C Charging Cable,2,11.95,2019-02-05 14:49:00,37 Hill St, Portland,OR,97035 +155936,iPhone,1,700.0,2019-02-08 00:29:00,435 Meadow St, Portland,OR,97035 +155937,Bose SoundSport Headphones,1,99.99,2019-02-18 04:38:00,746 Sunset St, Los Angeles,CA,90001 +155938,AA Batteries (4-pack),1,3.84,2019-02-09 11:52:00,223 14th St, San Francisco,CA,94016 +155939,Lightning Charging Cable,1,14.95,2019-02-09 09:42:00,633 1st St, San Francisco,CA,94016 +155940,34in Ultrawide Monitor,1,379.99,2019-02-11 18:30:00,778 Hill St, Portland,ME,04101 +155941,USB-C Charging Cable,2,11.95,2019-02-03 22:26:00,190 River St, Boston,MA,02215 +155942,Apple Airpods Headphones,1,150.0,2019-02-18 16:26:00,107 Main St, Boston,MA,02215 +155943,Wired Headphones,1,11.99,2019-02-27 12:42:00,598 Wilson St, New York City,NY,10001 +155944,iPhone,1,700.0,2019-02-18 10:32:00,92 Madison St, San Francisco,CA,94016 +155945,Lightning Charging Cable,1,14.95,2019-02-10 04:12:00,272 Chestnut St, Seattle,WA,98101 +155946,Wired Headphones,1,11.99,2019-02-20 22:48:00,906 10th St, San Francisco,CA,94016 +155947,20in Monitor,1,109.99,2019-02-04 21:24:00,615 Lake St, San Francisco,CA,94016 +155948,AA Batteries (4-pack),2,3.84,2019-02-23 11:41:00,823 11th St, Portland,OR,97035 +155949,Lightning Charging Cable,1,14.95,2019-02-15 08:55:00,327 Cherry St, Austin,TX,73301 +155950,ThinkPad Laptop,1,999.99,2019-02-03 10:57:00,220 4th St, Los Angeles,CA,90001 +155951,Lightning Charging Cable,1,14.95,2019-02-17 18:42:00,829 Johnson St, San Francisco,CA,94016 +155952,AA Batteries (4-pack),2,3.84,2019-02-19 07:53:00,355 Park St, Seattle,WA,98101 +155953,iPhone,1,700.0,2019-02-28 10:31:00,829 Elm St, Los Angeles,CA,90001 +155954,Flatscreen TV,1,300.0,2019-02-11 15:41:00,528 Washington St, Portland,OR,97035 +155955,Lightning Charging Cable,1,14.95,2019-02-16 01:23:00,701 Forest St, San Francisco,CA,94016 +155956,Wired Headphones,1,11.99,2019-02-02 23:49:00,619 Church St, New York City,NY,10001 +155957,27in FHD Monitor,1,149.99,2019-02-11 09:11:00,452 Cedar St, Los Angeles,CA,90001 +155958,Apple Airpods Headphones,1,150.0,2019-02-02 13:01:00,617 Spruce St, Boston,MA,02215 +155959,ThinkPad Laptop,1,999.99,2019-02-19 16:42:00,288 Willow St, Seattle,WA,98101 +155960,USB-C Charging Cable,1,11.95,2019-02-10 04:55:00,311 River St, San Francisco,CA,94016 +155961,34in Ultrawide Monitor,1,379.99,2019-02-28 10:44:00,832 12th St, Portland,OR,97035 +155962,Apple Airpods Headphones,1,150.0,2019-02-06 21:00:00,491 Park St, Boston,MA,02215 +155963,Macbook Pro Laptop,1,1700.0,2019-02-23 07:18:00,512 Park St, Los Angeles,CA,90001 +155964,Wired Headphones,1,11.99,2019-02-13 20:15:00,461 8th St, San Francisco,CA,94016 +155965,Wired Headphones,1,11.99,2019-02-24 10:51:00,751 Madison St, San Francisco,CA,94016 +155966,USB-C Charging Cable,1,11.95,2019-02-19 15:04:00,505 Hill St, San Francisco,CA,94016 +155967,AAA Batteries (4-pack),1,2.99,2019-02-13 09:19:00,598 9th St, New York City,NY,10001 +155968,Vareebadd Phone,1,400.0,2019-02-16 17:35:00,145 13th St, Boston,MA,02215 +155969,27in FHD Monitor,1,149.99,2019-02-22 09:12:00,833 Johnson St, Boston,MA,02215 +155970,USB-C Charging Cable,1,11.95,2019-02-21 20:58:00,520 Washington St, Los Angeles,CA,90001 +155971,Lightning Charging Cable,1,14.95,2019-02-11 14:19:00,853 Sunset St, Los Angeles,CA,90001 +155972,Bose SoundSport Headphones,1,99.99,2019-02-20 18:54:00,869 Park St, Portland,OR,97035 +155973,USB-C Charging Cable,1,11.95,2019-02-18 23:17:00,306 6th St, San Francisco,CA,94016 +155974,Wired Headphones,1,11.99,2019-02-11 13:48:00,659 Cherry St, San Francisco,CA,94016 +155975,20in Monitor,1,109.99,2019-02-27 17:12:00,499 8th St, Seattle,WA,98101 +155976,Wired Headphones,1,11.99,2019-02-09 09:53:00,849 Walnut St, Los Angeles,CA,90001 +155977,20in Monitor,1,109.99,2019-02-28 21:29:00,642 Meadow St, Boston,MA,02215 +155978,Lightning Charging Cable,1,14.95,2019-02-18 11:46:00,900 Madison St, Seattle,WA,98101 +155979,Bose SoundSport Headphones,1,99.99,2019-02-11 20:42:00,748 9th St, San Francisco,CA,94016 +155980,Wired Headphones,1,11.99,2019-02-05 20:11:00,580 Pine St, San Francisco,CA,94016 +155981,Flatscreen TV,1,300.0,2019-02-26 19:27:00,782 Lincoln St, Los Angeles,CA,90001 +155982,ThinkPad Laptop,1,999.99,2019-02-25 09:33:00,228 Ridge St, Atlanta,GA,30301 +155983,Apple Airpods Headphones,1,150.0,2019-02-25 10:36:00,876 5th St, San Francisco,CA,94016 +155984,iPhone,1,700.0,2019-02-22 20:13:00,570 Center St, San Francisco,CA,94016 +155985,20in Monitor,1,109.99,2019-02-27 15:40:00,955 Wilson St, San Francisco,CA,94016 +155986,iPhone,1,700.0,2019-02-07 13:56:00,706 2nd St, Boston,MA,02215 +155987,AA Batteries (4-pack),1,3.84,2019-02-25 12:22:00,840 8th St, San Francisco,CA,94016 +155988,AAA Batteries (4-pack),1,2.99,2019-02-15 12:31:00,7 Highland St, Los Angeles,CA,90001 +155989,Google Phone,1,600.0,2019-02-26 16:11:00,747 Center St, San Francisco,CA,94016 +155990,Wired Headphones,1,11.99,2019-02-03 08:56:00,188 1st St, San Francisco,CA,94016 +155991,Bose SoundSport Headphones,1,99.99,2019-02-13 13:12:00,444 10th St, San Francisco,CA,94016 +155992,USB-C Charging Cable,1,11.95,2019-02-12 17:46:00,744 Park St, San Francisco,CA,94016 +155992,Macbook Pro Laptop,1,1700.0,2019-02-12 17:46:00,744 Park St, San Francisco,CA,94016 +155993,27in FHD Monitor,1,149.99,2019-02-14 10:39:00,200 4th St, Boston,MA,02215 +155994,Macbook Pro Laptop,1,1700.0,2019-02-28 21:08:00,419 Johnson St, Boston,MA,02215 +155995,iPhone,1,700.0,2019-02-26 15:09:00,641 Center St, Los Angeles,CA,90001 +155996,Apple Airpods Headphones,1,150.0,2019-02-01 18:06:00,528 Meadow St, Portland,ME,04101 +155997,ThinkPad Laptop,1,999.99,2019-02-24 09:26:00,16 Church St, Atlanta,GA,30301 +155998,Lightning Charging Cable,1,14.95,2019-02-05 21:14:00,80 Ridge St, Dallas,TX,75001 +155999,AAA Batteries (4-pack),1,2.99,2019-02-10 12:43:00,24 Meadow St, Austin,TX,73301 +156000,Apple Airpods Headphones,1,150.0,2019-02-27 17:03:00,944 Johnson St, Atlanta,GA,30301 +156001,Lightning Charging Cable,1,14.95,2019-02-28 19:15:00,427 Dogwood St, Austin,TX,73301 +156002,iPhone,1,700.0,2019-02-16 16:16:00,393 Lakeview St, Seattle,WA,98101 +156003,Flatscreen TV,1,300.0,2019-02-26 13:50:00,716 Lake St, New York City,NY,10001 +156004,USB-C Charging Cable,1,11.95,2019-02-13 13:02:00,737 Spruce St, Boston,MA,02215 +156005,AAA Batteries (4-pack),1,2.99,2019-02-03 09:08:00,493 Johnson St, Atlanta,GA,30301 +156006,27in FHD Monitor,1,149.99,2019-02-22 13:09:00,128 Johnson St, San Francisco,CA,94016 +156007,AA Batteries (4-pack),1,3.84,2019-02-11 13:35:00,84 14th St, San Francisco,CA,94016 +156008,USB-C Charging Cable,1,11.95,2019-02-10 10:27:00,647 Church St, Austin,TX,73301 +156009,Wired Headphones,1,11.99,2019-02-16 09:25:00,593 Jefferson St, Atlanta,GA,30301 +156010,AAA Batteries (4-pack),1,2.99,2019-02-11 22:21:00,201 Johnson St, Boston,MA,02215 +156011,Lightning Charging Cable,1,14.95,2019-02-27 12:59:00,862 6th St, Atlanta,GA,30301 +156012,Wired Headphones,1,11.99,2019-02-25 12:03:00,823 Maple St, New York City,NY,10001 +156013,iPhone,1,700.0,2019-02-17 18:08:00,893 Madison St, Austin,TX,73301 +156014,Lightning Charging Cable,1,14.95,2019-02-07 09:58:00,815 1st St, San Francisco,CA,94016 +156015,AAA Batteries (4-pack),1,2.99,2019-02-03 08:48:00,240 Ridge St, Dallas,TX,75001 +156016,AA Batteries (4-pack),1,3.84,2019-02-22 14:41:00,648 West St, Los Angeles,CA,90001 +156017,USB-C Charging Cable,1,11.95,2019-02-03 12:08:00,392 Main St, Boston,MA,02215 +156018,USB-C Charging Cable,1,11.95,2019-02-16 19:02:00,859 Hickory St, New York City,NY,10001 +156019,iPhone,1,700.0,2019-02-01 11:48:00,782 13th St, Atlanta,GA,30301 +156020,Wired Headphones,1,11.99,2019-02-28 18:55:00,969 Maple St, New York City,NY,10001 +156021,Wired Headphones,1,11.99,2019-02-02 15:24:00,381 Adams St, Seattle,WA,98101 +156022,Apple Airpods Headphones,1,150.0,2019-02-10 18:56:00,621 North St, Los Angeles,CA,90001 +156023,AAA Batteries (4-pack),1,2.99,2019-02-23 09:29:00,928 1st St, Seattle,WA,98101 +156024,AAA Batteries (4-pack),1,2.99,2019-02-23 19:50:00,397 Elm St, San Francisco,CA,94016 +156025,AA Batteries (4-pack),2,3.84,2019-02-26 22:26:00,519 Church St, Los Angeles,CA,90001 +156026,Bose SoundSport Headphones,1,99.99,2019-02-21 12:05:00,748 Adams St, Atlanta,GA,30301 +156027,AA Batteries (4-pack),1,3.84,2019-02-14 09:44:00,807 4th St, Seattle,WA,98101 +156028,Lightning Charging Cable,1,14.95,2019-02-12 17:07:00,409 Washington St, San Francisco,CA,94016 +156029,AAA Batteries (4-pack),2,2.99,2019-02-18 11:04:00,965 14th St, Dallas,TX,75001 +156030,34in Ultrawide Monitor,1,379.99,2019-02-16 20:54:00,241 West St, Los Angeles,CA,90001 +156031,Wired Headphones,1,11.99,2019-02-17 06:15:00,853 10th St, New York City,NY,10001 +156032,ThinkPad Laptop,1,999.99,2019-02-06 01:48:00,141 Jefferson St, Dallas,TX,75001 +156033,Macbook Pro Laptop,1,1700.0,2019-02-07 17:37:00,217 Highland St, Los Angeles,CA,90001 +156034,Apple Airpods Headphones,1,150.0,2019-02-08 03:48:00,426 Elm St, San Francisco,CA,94016 +156035,Wired Headphones,1,11.99,2019-02-10 11:04:00,614 9th St, San Francisco,CA,94016 +156036,Lightning Charging Cable,1,14.95,2019-02-08 23:48:00,585 9th St, Boston,MA,02215 +156037,iPhone,1,700.0,2019-02-24 21:28:00,897 5th St, Atlanta,GA,30301 +156038,USB-C Charging Cable,1,11.95,2019-02-25 10:38:00,606 Dogwood St, Atlanta,GA,30301 +156039,AA Batteries (4-pack),1,3.84,2019-02-02 17:29:00,185 Elm St, San Francisco,CA,94016 +156040,34in Ultrawide Monitor,1,379.99,2019-02-05 17:21:00,614 South St, Los Angeles,CA,90001 +156040,Apple Airpods Headphones,1,150.0,2019-02-05 17:21:00,614 South St, Los Angeles,CA,90001 +156041,AAA Batteries (4-pack),1,2.99,2019-02-23 19:14:00,603 Main St, New York City,NY,10001 +156042,Bose SoundSport Headphones,1,99.99,2019-02-04 15:21:00,79 Lake St, New York City,NY,10001 +156043,Apple Airpods Headphones,1,150.0,2019-02-03 19:52:00,292 Willow St, Boston,MA,02215 +156044,AA Batteries (4-pack),1,3.84,2019-02-19 14:03:00,465 West St, Boston,MA,02215 +156045,Lightning Charging Cable,1,14.95,2019-02-02 10:28:00,269 Cedar St, Boston,MA,02215 +156046,AAA Batteries (4-pack),1,2.99,2019-02-13 10:47:00,449 8th St, Boston,MA,02215 +156047,Lightning Charging Cable,1,14.95,2019-02-05 20:30:00,807 Elm St, Los Angeles,CA,90001 +156048,AAA Batteries (4-pack),2,2.99,2019-02-23 11:05:00,558 1st St, Dallas,TX,75001 +156049,AA Batteries (4-pack),1,3.84,2019-02-15 09:53:00,485 Dogwood St, San Francisco,CA,94016 +156050,AAA Batteries (4-pack),1,2.99,2019-02-22 17:29:00,256 Hickory St, Dallas,TX,75001 +156051,27in FHD Monitor,1,149.99,2019-02-22 13:58:00,63 11th St, Dallas,TX,75001 +156052,USB-C Charging Cable,1,11.95,2019-02-08 19:43:00,547 5th St, Seattle,WA,98101 +156053,Lightning Charging Cable,1,14.95,2019-02-14 10:05:00,128 Maple St, San Francisco,CA,94016 +156054,USB-C Charging Cable,1,11.95,2019-02-09 15:13:00,997 Church St, San Francisco,CA,94016 +156055,ThinkPad Laptop,1,999.99,2019-02-21 12:57:00,144 Park St, San Francisco,CA,94016 +156056,Wired Headphones,1,11.99,2019-02-02 13:29:00,78 Meadow St, New York City,NY,10001 +156056,AA Batteries (4-pack),3,3.84,2019-02-02 13:29:00,78 Meadow St, New York City,NY,10001 +156057,ThinkPad Laptop,1,999.99,2019-02-10 09:06:00,225 Lakeview St, San Francisco,CA,94016 +156058,Vareebadd Phone,1,400.0,2019-02-19 09:15:00,148 1st St, Dallas,TX,75001 +156058,USB-C Charging Cable,1,11.95,2019-02-19 09:15:00,148 1st St, Dallas,TX,75001 +156059,Lightning Charging Cable,1,14.95,2019-02-23 19:06:00,930 Park St, Los Angeles,CA,90001 +156060,AAA Batteries (4-pack),3,2.99,2019-02-25 10:03:00,465 Wilson St, San Francisco,CA,94016 +156061,USB-C Charging Cable,1,11.95,2019-02-19 00:31:00,927 Lake St, Seattle,WA,98101 +156062,Wired Headphones,1,11.99,2019-02-01 15:27:00,614 Cedar St, San Francisco,CA,94016 +156063,34in Ultrawide Monitor,1,379.99,2019-02-06 13:45:00,585 1st St, New York City,NY,10001 +156064,20in Monitor,1,109.99,2019-02-18 21:14:00,517 11th St, Los Angeles,CA,90001 +156065,iPhone,1,700.0,2019-02-06 15:14:00,208 Main St, Los Angeles,CA,90001 +156066,Bose SoundSport Headphones,1,99.99,2019-02-12 18:12:00,597 Hickory St, Atlanta,GA,30301 +156067,AA Batteries (4-pack),2,3.84,2019-02-25 17:17:00,392 Dogwood St, Boston,MA,02215 +156068,27in 4K Gaming Monitor,1,389.99,2019-02-14 08:04:00,452 Meadow St, Austin,TX,73301 +156069,AAA Batteries (4-pack),1,2.99,2019-02-12 13:01:00,507 2nd St, Los Angeles,CA,90001 +156070,AAA Batteries (4-pack),1,2.99,2019-02-06 10:34:00,233 Cedar St, Seattle,WA,98101 +156071,Bose SoundSport Headphones,1,99.99,2019-02-18 09:36:00,778 Ridge St, Portland,OR,97035 +156072,AA Batteries (4-pack),1,3.84,2019-02-25 17:41:00,679 Johnson St, Boston,MA,02215 +156073,Lightning Charging Cable,1,14.95,2019-02-27 21:22:00,136 Hill St, Los Angeles,CA,90001 +156074,AA Batteries (4-pack),2,3.84,2019-02-24 22:19:00,844 Lake St, New York City,NY,10001 +156075,Wired Headphones,1,11.99,2019-02-24 11:23:00,188 Meadow St, San Francisco,CA,94016 +156076,iPhone,1,700.0,2019-02-11 19:33:00,889 Cherry St, Boston,MA,02215 +156077,AA Batteries (4-pack),1,3.84,2019-02-13 20:55:00,742 13th St, Seattle,WA,98101 +156078,Bose SoundSport Headphones,1,99.99,2019-02-06 08:50:00,818 2nd St, San Francisco,CA,94016 +156079,Wired Headphones,1,11.99,2019-02-21 15:44:00,345 Center St, San Francisco,CA,94016 +156080,USB-C Charging Cable,1,11.95,2019-02-07 19:43:00,329 5th St, Los Angeles,CA,90001 +156081,Wired Headphones,1,11.99,2019-02-03 13:53:00,976 Lincoln St, Los Angeles,CA,90001 +156082,Wired Headphones,1,11.99,2019-02-19 10:34:00,306 Chestnut St, Los Angeles,CA,90001 +156083,LG Dryer,1,600.0,2019-02-06 20:47:00,667 12th St, Boston,MA,02215 +156084,AA Batteries (4-pack),4,3.84,2019-02-07 06:54:00,933 Wilson St, Seattle,WA,98101 +156085,Flatscreen TV,1,300.0,2019-02-15 20:05:00,95 7th St, New York City,NY,10001 +156086,Bose SoundSport Headphones,1,99.99,2019-02-16 21:47:00,837 Center St, Seattle,WA,98101 +156087,27in FHD Monitor,1,149.99,2019-02-23 10:43:00,5 Sunset St, Atlanta,GA,30301 +156088,iPhone,1,700.0,2019-02-22 13:35:00,585 Walnut St, New York City,NY,10001 +156089,AAA Batteries (4-pack),1,2.99,2019-02-17 18:37:00,741 North St, San Francisco,CA,94016 +156090,AA Batteries (4-pack),1,3.84,2019-02-10 13:36:00,963 Washington St, Atlanta,GA,30301 +156091,USB-C Charging Cable,3,11.95,2019-02-23 21:07:00,953 Cedar St, Los Angeles,CA,90001 +156092,Bose SoundSport Headphones,1,99.99,2019-02-27 19:17:00,695 Spruce St, Boston,MA,02215 +156093,Wired Headphones,1,11.99,2019-02-13 17:13:00,671 Cedar St, Portland,OR,97035 +156094,AAA Batteries (4-pack),1,2.99,2019-02-05 19:18:00,371 Main St, San Francisco,CA,94016 +156095,27in 4K Gaming Monitor,1,389.99,2019-02-15 18:37:00,326 Chestnut St, Seattle,WA,98101 +156095,AA Batteries (4-pack),1,3.84,2019-02-15 18:37:00,326 Chestnut St, Seattle,WA,98101 +156096,Google Phone,1,600.0,2019-02-22 08:19:00,643 Highland St, Seattle,WA,98101 +156097,27in 4K Gaming Monitor,1,389.99,2019-02-06 22:23:00,697 Jackson St, Dallas,TX,75001 +156098,AAA Batteries (4-pack),4,2.99,2019-02-26 19:03:00,61 Ridge St, Portland,ME,04101 +156099,AAA Batteries (4-pack),3,2.99,2019-02-07 12:08:00,787 Pine St, New York City,NY,10001 +156100,Vareebadd Phone,1,400.0,2019-02-16 11:18:00,25 9th St, San Francisco,CA,94016 +156101,Wired Headphones,1,11.99,2019-02-24 05:53:00,11 Forest St, Dallas,TX,75001 +156102,AAA Batteries (4-pack),1,2.99,2019-02-15 11:45:00,62 Adams St, Los Angeles,CA,90001 +156103,Lightning Charging Cable,1,14.95,2019-02-07 00:10:00,763 Sunset St, San Francisco,CA,94016 +156104,Wired Headphones,1,11.99,2019-02-06 18:39:00,497 Walnut St, New York City,NY,10001 +156105,USB-C Charging Cable,1,11.95,2019-02-07 15:16:00,892 Johnson St, San Francisco,CA,94016 +156106,Google Phone,1,600.0,2019-02-12 23:18:00,881 Church St, New York City,NY,10001 +156107,AAA Batteries (4-pack),2,2.99,2019-02-03 13:58:00,337 6th St, San Francisco,CA,94016 +156108,Bose SoundSport Headphones,1,99.99,2019-02-06 18:48:00,364 Willow St, San Francisco,CA,94016 +156109,Bose SoundSport Headphones,1,99.99,2019-02-18 09:18:00,450 Jackson St, Boston,MA,02215 +156110,Bose SoundSport Headphones,1,99.99,2019-02-17 16:09:00,807 12th St, Boston,MA,02215 +156111,Lightning Charging Cable,1,14.95,2019-02-12 17:30:00,584 4th St, Los Angeles,CA,90001 +156112,Lightning Charging Cable,1,14.95,2019-02-28 17:14:00,634 West St, Portland,OR,97035 +156113,AA Batteries (4-pack),1,3.84,2019-02-20 15:54:00,924 Sunset St, Seattle,WA,98101 +156114,Bose SoundSport Headphones,1,99.99,2019-02-08 20:11:00,629 Center St, Seattle,WA,98101 +156115,Lightning Charging Cable,4,14.95,2019-02-05 15:26:00,498 Elm St, Austin,TX,73301 +156116,Apple Airpods Headphones,1,150.0,2019-02-24 18:50:00,755 Cherry St, Los Angeles,CA,90001 +156117,Bose SoundSport Headphones,1,99.99,2019-02-12 23:31:00,123 Elm St, New York City,NY,10001 +156118,USB-C Charging Cable,1,11.95,2019-02-22 21:00:00,420 Johnson St, Los Angeles,CA,90001 +156119,34in Ultrawide Monitor,1,379.99,2019-02-27 17:05:00,602 Pine St, Seattle,WA,98101 +156120,Apple Airpods Headphones,1,150.0,2019-02-27 00:26:00,115 Forest St, Atlanta,GA,30301 +156121,Wired Headphones,1,11.99,2019-02-20 15:40:00,244 Hill St, San Francisco,CA,94016 +156122,AA Batteries (4-pack),1,3.84,2019-02-25 11:02:00,689 11th St, Los Angeles,CA,90001 +156123,27in 4K Gaming Monitor,1,389.99,2019-02-23 20:01:00,646 Spruce St, Boston,MA,02215 +156124,Lightning Charging Cable,1,14.95,2019-02-18 12:33:00,225 Forest St, San Francisco,CA,94016 +156125,34in Ultrawide Monitor,1,379.99,2019-02-03 13:42:00,23 Adams St, Austin,TX,73301 +156126,AA Batteries (4-pack),1,3.84,2019-02-02 14:10:00,350 North St, San Francisco,CA,94016 +156127,USB-C Charging Cable,1,11.95,2019-02-18 03:30:00,148 6th St, Boston,MA,02215 +156128,AA Batteries (4-pack),1,3.84,2019-02-09 16:34:00,436 10th St, Seattle,WA,98101 +156129,AAA Batteries (4-pack),1,2.99,2019-02-17 17:31:00,700 Jefferson St, New York City,NY,10001 +156130,Flatscreen TV,1,300.0,2019-02-08 19:57:00,269 Chestnut St, San Francisco,CA,94016 +156131,Apple Airpods Headphones,1,150.0,2019-02-11 22:56:00,720 Maple St, San Francisco,CA,94016 +156132,AA Batteries (4-pack),1,3.84,2019-02-12 09:28:00,341 4th St, Atlanta,GA,30301 +156133,Apple Airpods Headphones,1,150.0,2019-02-25 20:33:00,864 Meadow St, Seattle,WA,98101 +156134,Lightning Charging Cable,1,14.95,2019-02-14 17:30:00,656 Jefferson St, New York City,NY,10001 +156135,Google Phone,1,600.0,2019-02-04 15:29:00,96 Elm St, San Francisco,CA,94016 +156135,Wired Headphones,1,11.99,2019-02-04 15:29:00,96 Elm St, San Francisco,CA,94016 +156136,Apple Airpods Headphones,1,150.0,2019-02-21 14:00:00,103 Lake St, Boston,MA,02215 +156137,Wired Headphones,1,11.99,2019-02-10 21:52:00,219 Jefferson St, San Francisco,CA,94016 +156138,USB-C Charging Cable,1,11.95,2019-02-18 11:25:00,285 Maple St, Portland,OR,97035 +156139,Google Phone,1,600.0,2019-02-13 16:39:00,79 Maple St, Los Angeles,CA,90001 +156140,Wired Headphones,1,11.99,2019-02-14 08:26:00,699 8th St, San Francisco,CA,94016 +156141,AA Batteries (4-pack),1,3.84,2019-02-11 20:25:00,923 Cedar St, New York City,NY,10001 +156142,Wired Headphones,1,11.99,2019-02-15 14:56:00,953 Pine St, New York City,NY,10001 +156143,AA Batteries (4-pack),1,3.84,2019-02-10 12:18:00,83 Cedar St, Los Angeles,CA,90001 +156144,Google Phone,1,600.0,2019-02-25 14:43:00,469 Park St, San Francisco,CA,94016 +156145,27in 4K Gaming Monitor,1,389.99,2019-02-27 09:07:00,766 River St, Los Angeles,CA,90001 +156146,Wired Headphones,1,11.99,2019-02-26 19:27:00,770 7th St, Portland,OR,97035 +156147,Google Phone,1,600.0,2019-02-07 16:53:00,72 5th St, Los Angeles,CA,90001 +156148,Bose SoundSport Headphones,1,99.99,2019-02-07 19:26:00,375 Lake St, Dallas,TX,75001 +156149,AA Batteries (4-pack),1,3.84,2019-02-14 11:40:00,935 Main St, Boston,MA,02215 +156150,Google Phone,1,600.0,2019-02-02 14:18:00,627 Maple St, Portland,OR,97035 +156151,AA Batteries (4-pack),1,3.84,2019-02-03 13:17:00,311 6th St, Portland,OR,97035 +156152,Macbook Pro Laptop,1,1700.0,2019-02-26 17:12:00,980 Ridge St, San Francisco,CA,94016 +156153,20in Monitor,1,109.99,2019-02-14 19:53:00,97 10th St, Boston,MA,02215 +156154,Flatscreen TV,1,300.0,2019-02-25 14:22:00,160 8th St, Los Angeles,CA,90001 +156155,Wired Headphones,1,11.99,2019-02-07 10:54:00,43 2nd St, San Francisco,CA,94016 +156156,Bose SoundSport Headphones,1,99.99,2019-02-01 15:33:00,545 6th St, Los Angeles,CA,90001 +156157,Lightning Charging Cable,1,14.95,2019-02-16 21:26:00,247 8th St, Los Angeles,CA,90001 +156158,USB-C Charging Cable,1,11.95,2019-02-22 15:26:00,880 Chestnut St, San Francisco,CA,94016 +156159,AA Batteries (4-pack),1,3.84,2019-02-19 17:55:00,53 8th St, Atlanta,GA,30301 +156160,Lightning Charging Cable,1,14.95,2019-02-14 11:18:00,383 Johnson St, Los Angeles,CA,90001 +156161,Macbook Pro Laptop,1,1700.0,2019-02-13 21:31:00,494 4th St, Los Angeles,CA,90001 +156162,Apple Airpods Headphones,1,150.0,2019-02-27 02:28:00,648 North St, Atlanta,GA,30301 +156163,Lightning Charging Cable,1,14.95,2019-02-03 20:51:00,922 Lincoln St, San Francisco,CA,94016 +156164,Wired Headphones,1,11.99,2019-02-10 20:25:00,946 Pine St, Los Angeles,CA,90001 +156165,Bose SoundSport Headphones,1,99.99,2019-02-22 09:08:00,310 Adams St, San Francisco,CA,94016 +156166,Wired Headphones,2,11.99,2019-02-11 09:59:00,223 10th St, Los Angeles,CA,90001 +156167,Lightning Charging Cable,1,14.95,2019-02-12 20:08:00,168 6th St, Austin,TX,73301 +156168,Bose SoundSport Headphones,1,99.99,2019-02-26 02:27:00,229 Walnut St, San Francisco,CA,94016 +156169,Apple Airpods Headphones,1,150.0,2019-02-23 23:17:00,71 Maple St, Atlanta,GA,30301 +156170,Macbook Pro Laptop,1,1700.0,2019-02-05 13:51:00,206 Wilson St, Los Angeles,CA,90001 +156171,ThinkPad Laptop,1,999.99,2019-02-23 18:56:00,446 Pine St, Seattle,WA,98101 +156172,Wired Headphones,1,11.99,2019-02-12 13:29:00,569 Walnut St, San Francisco,CA,94016 +156173,Flatscreen TV,1,300.0,2019-02-28 09:55:00,102 11th St, San Francisco,CA,94016 +156174,AA Batteries (4-pack),1,3.84,2019-02-08 09:06:00,185 Hickory St, Atlanta,GA,30301 +156175,AAA Batteries (4-pack),3,2.99,2019-02-17 09:18:00,656 9th St, Boston,MA,02215 +156176,27in 4K Gaming Monitor,1,389.99,2019-02-20 10:44:00,176 Adams St, Los Angeles,CA,90001 +156177,27in FHD Monitor,1,149.99,2019-02-19 22:42:00,636 Madison St, Los Angeles,CA,90001 +156178,ThinkPad Laptop,1,999.99,2019-02-27 19:32:00,902 Main St, Dallas,TX,75001 +156179,Flatscreen TV,1,300.0,2019-02-26 18:34:00,894 Highland St, San Francisco,CA,94016 +156180,Macbook Pro Laptop,1,1700.0,2019-02-17 21:21:00,49 1st St, Boston,MA,02215 +156181,USB-C Charging Cable,2,11.95,2019-02-23 22:46:00,559 Wilson St, Los Angeles,CA,90001 +156182,AA Batteries (4-pack),1,3.84,2019-02-16 18:53:00,306 Highland St, Boston,MA,02215 +156183,Lightning Charging Cable,1,14.95,2019-02-03 12:59:00,843 Adams St, Seattle,WA,98101 +156184,Lightning Charging Cable,4,14.95,2019-02-06 21:49:00,262 2nd St, Los Angeles,CA,90001 +156185,AA Batteries (4-pack),1,3.84,2019-02-17 23:28:00,974 Hill St, Boston,MA,02215 +156186,Lightning Charging Cable,1,14.95,2019-02-01 13:04:00,81 Center St, Los Angeles,CA,90001 +156187,Lightning Charging Cable,1,14.95,2019-02-11 10:01:00,140 Maple St, San Francisco,CA,94016 +156188,Bose SoundSport Headphones,1,99.99,2019-02-23 07:06:00,341 12th St, Seattle,WA,98101 +156188,Lightning Charging Cable,2,14.95,2019-02-23 07:06:00,341 12th St, Seattle,WA,98101 +156189,AAA Batteries (4-pack),2,2.99,2019-02-03 11:47:00,322 Dogwood St, Los Angeles,CA,90001 +156190,Lightning Charging Cable,1,14.95,2019-02-16 10:58:00,322 Adams St, Dallas,TX,75001 +156191,USB-C Charging Cable,1,11.95,2019-02-09 16:18:00,576 Main St, Portland,OR,97035 +156192,Lightning Charging Cable,1,14.95,2019-02-21 21:18:00,418 Lake St, Los Angeles,CA,90001 +156193,Lightning Charging Cable,1,14.95,2019-02-16 19:58:00,276 Hickory St, Boston,MA,02215 +156194,Lightning Charging Cable,1,14.95,2019-02-25 20:13:00,366 Forest St, Seattle,WA,98101 +156195,20in Monitor,1,109.99,2019-02-05 10:43:00,339 9th St, New York City,NY,10001 +156196,Macbook Pro Laptop,1,1700.0,2019-02-02 22:25:00,579 Lakeview St, San Francisco,CA,94016 +156197,USB-C Charging Cable,1,11.95,2019-02-28 16:45:00,596 Jackson St, Atlanta,GA,30301 +156198,Bose SoundSport Headphones,1,99.99,2019-02-24 10:52:00,254 Jackson St, Dallas,TX,75001 +156199,27in 4K Gaming Monitor,1,389.99,2019-02-27 13:15:00,636 2nd St, Boston,MA,02215 +156200,27in FHD Monitor,1,149.99,2019-02-23 16:18:00,397 South St, San Francisco,CA,94016 +156201,Lightning Charging Cable,1,14.95,2019-02-08 11:49:00,810 10th St, San Francisco,CA,94016 +156202,iPhone,1,700.0,2019-02-20 15:33:00,296 5th St, New York City,NY,10001 +156202,Wired Headphones,1,11.99,2019-02-20 15:33:00,296 5th St, New York City,NY,10001 +156203,AA Batteries (4-pack),1,3.84,2019-02-02 20:14:00,86 Jefferson St, Dallas,TX,75001 +156204,Bose SoundSport Headphones,1,99.99,2019-02-19 18:36:00,854 Walnut St, Boston,MA,02215 +156205,iPhone,1,700.0,2019-02-22 09:03:00,928 8th St, Portland,ME,04101 +156206,Wired Headphones,1,11.99,2019-02-16 15:35:00,861 8th St, Portland,OR,97035 +156207,Lightning Charging Cable,1,14.95,2019-02-25 13:04:00,36 11th St, Los Angeles,CA,90001 +156208,27in FHD Monitor,1,149.99,2019-02-08 20:18:00,371 Sunset St, San Francisco,CA,94016 +156209,Apple Airpods Headphones,1,150.0,2019-02-13 18:05:00,158 5th St, Los Angeles,CA,90001 +156210,AA Batteries (4-pack),2,3.84,2019-02-12 02:09:00,613 West St, Los Angeles,CA,90001 +156211,Flatscreen TV,1,300.0,2019-02-19 11:58:00,350 Johnson St, San Francisco,CA,94016 +156212,AAA Batteries (4-pack),2,2.99,2019-02-19 16:05:00,982 Park St, Atlanta,GA,30301 +156213,USB-C Charging Cable,1,11.95,2019-02-20 13:58:00,729 Sunset St, Los Angeles,CA,90001 +156213,AA Batteries (4-pack),1,3.84,2019-02-20 13:58:00,729 Sunset St, Los Angeles,CA,90001 +156214,Vareebadd Phone,1,400.0,2019-02-23 18:08:00,451 Spruce St, Seattle,WA,98101 +156215,AA Batteries (4-pack),1,3.84,2019-02-23 12:01:00,911 8th St, Los Angeles,CA,90001 +156216,Wired Headphones,1,11.99,2019-02-13 21:14:00,119 7th St, Los Angeles,CA,90001 +156217,Vareebadd Phone,1,400.0,2019-02-09 16:42:00,642 Lakeview St, Portland,OR,97035 +156217,Bose SoundSport Headphones,1,99.99,2019-02-09 16:42:00,642 Lakeview St, Portland,OR,97035 +156218,27in 4K Gaming Monitor,1,389.99,2019-02-06 17:23:00,986 Main St, New York City,NY,10001 +156219,ThinkPad Laptop,1,999.99,2019-02-03 02:10:00,994 Elm St, Portland,OR,97035 +156220,Apple Airpods Headphones,1,150.0,2019-02-13 12:20:00,828 Dogwood St, Los Angeles,CA,90001 +156221,AAA Batteries (4-pack),1,2.99,2019-02-22 12:41:00,502 Chestnut St, Portland,ME,04101 +156222,AAA Batteries (4-pack),1,2.99,2019-02-26 10:19:00,9 Washington St, San Francisco,CA,94016 +156223,Bose SoundSport Headphones,1,99.99,2019-02-27 07:21:00,816 West St, San Francisco,CA,94016 +156224,Lightning Charging Cable,1,14.95,2019-02-14 10:40:00,288 Jackson St, San Francisco,CA,94016 +156225,Bose SoundSport Headphones,1,99.99,2019-02-06 17:01:00,626 Lake St, Boston,MA,02215 +156226,USB-C Charging Cable,1,11.95,2019-02-14 21:41:00,438 Church St, Atlanta,GA,30301 +156227,Apple Airpods Headphones,1,150.0,2019-02-22 15:17:00,703 Lakeview St, Boston,MA,02215 +156228,USB-C Charging Cable,1,11.95,2019-02-09 11:03:00,797 13th St, Portland,ME,04101 +156229,Lightning Charging Cable,1,14.95,2019-02-08 14:55:00,439 South St, Los Angeles,CA,90001 +156230,34in Ultrawide Monitor,1,379.99,2019-02-18 22:21:00,811 Johnson St, Atlanta,GA,30301 +156231,USB-C Charging Cable,2,11.95,2019-02-01 21:31:00,684 14th St, Los Angeles,CA,90001 +156232,Apple Airpods Headphones,1,150.0,2019-02-12 20:02:00,544 4th St, Seattle,WA,98101 +156233,27in 4K Gaming Monitor,1,389.99,2019-02-17 22:05:00,856 6th St, New York City,NY,10001 +156234,USB-C Charging Cable,1,11.95,2019-02-03 19:31:00,752 Lakeview St, New York City,NY,10001 +156235,ThinkPad Laptop,1,999.99,2019-02-09 04:32:00,651 6th St, Atlanta,GA,30301 +156236,AAA Batteries (4-pack),2,2.99,2019-02-04 22:50:00,682 6th St, Los Angeles,CA,90001 +156237,AAA Batteries (4-pack),1,2.99,2019-02-23 23:15:00,210 Jefferson St, Dallas,TX,75001 +156238,Vareebadd Phone,1,400.0,2019-02-02 00:20:00,743 Lake St, Boston,MA,02215 +156239,Vareebadd Phone,1,400.0,2019-02-19 15:46:00,385 8th St, Los Angeles,CA,90001 +156239,USB-C Charging Cable,2,11.95,2019-02-19 15:46:00,385 8th St, Los Angeles,CA,90001 +156240,27in 4K Gaming Monitor,1,389.99,2019-02-22 17:06:00,482 Spruce St, Los Angeles,CA,90001 +156241,34in Ultrawide Monitor,1,379.99,2019-02-15 09:23:00,619 6th St, Boston,MA,02215 +156242,Lightning Charging Cable,1,14.95,2019-02-18 11:24:00,269 West St, Los Angeles,CA,90001 +156243,AAA Batteries (4-pack),1,2.99,2019-02-21 20:57:00,422 Jefferson St, San Francisco,CA,94016 +156244,27in 4K Gaming Monitor,1,389.99,2019-02-06 09:41:00,138 10th St, Los Angeles,CA,90001 +156245,Lightning Charging Cable,1,14.95,2019-02-16 00:10:00,967 Hill St, San Francisco,CA,94016 +156246,27in 4K Gaming Monitor,1,389.99,2019-02-04 02:48:00,326 West St, Los Angeles,CA,90001 +156247,AAA Batteries (4-pack),1,2.99,2019-02-09 07:29:00,511 Dogwood St, Los Angeles,CA,90001 +156248,34in Ultrawide Monitor,1,379.99,2019-02-03 16:18:00,959 Main St, Atlanta,GA,30301 +156249,Lightning Charging Cable,1,14.95,2019-02-03 09:09:00,691 Walnut St, Atlanta,GA,30301 +156250,AA Batteries (4-pack),1,3.84,2019-02-28 09:59:00,515 Jackson St, San Francisco,CA,94016 +156251,Wired Headphones,1,11.99,2019-02-24 17:39:00,383 Meadow St, San Francisco,CA,94016 +156252,Wired Headphones,1,11.99,2019-02-09 21:37:00,121 Lakeview St, New York City,NY,10001 +156253,Google Phone,1,600.0,2019-02-19 19:35:00,575 Highland St, San Francisco,CA,94016 +156254,Bose SoundSport Headphones,1,99.99,2019-02-21 14:51:00,256 9th St, Boston,MA,02215 +156255,Bose SoundSport Headphones,1,99.99,2019-02-14 17:36:00,758 Hickory St, Austin,TX,73301 +156255,AAA Batteries (4-pack),1,2.99,2019-02-14 17:36:00,758 Hickory St, Austin,TX,73301 +156256,Lightning Charging Cable,1,14.95,2019-02-18 20:17:00,476 Cedar St, San Francisco,CA,94016 +156257,iPhone,1,700.0,2019-02-17 11:07:00,301 Dogwood St, Seattle,WA,98101 +156258,34in Ultrawide Monitor,1,379.99,2019-02-03 18:20:00,340 Sunset St, New York City,NY,10001 +156259,AA Batteries (4-pack),1,3.84,2019-02-17 12:08:00,463 Dogwood St, San Francisco,CA,94016 +156260,AAA Batteries (4-pack),1,2.99,2019-02-25 02:01:00,878 5th St, San Francisco,CA,94016 +156261,Google Phone,1,600.0,2019-02-20 19:09:00,478 Chestnut St, Seattle,WA,98101 +156261,Wired Headphones,1,11.99,2019-02-20 19:09:00,478 Chestnut St, Seattle,WA,98101 +156262,USB-C Charging Cable,1,11.95,2019-02-04 18:07:00,251 5th St, New York City,NY,10001 +156263,Apple Airpods Headphones,1,150.0,2019-02-21 19:45:00,916 North St, San Francisco,CA,94016 +156264,Lightning Charging Cable,1,14.95,2019-02-28 14:02:00,532 14th St, Los Angeles,CA,90001 +156265,USB-C Charging Cable,1,11.95,2019-02-07 21:10:00,529 Washington St, Portland,ME,04101 +156266,Lightning Charging Cable,1,14.95,2019-02-22 01:51:00,726 Spruce St, Seattle,WA,98101 +156267,Bose SoundSport Headphones,1,99.99,2019-02-10 20:03:00,70 Madison St, Los Angeles,CA,90001 +156268,AAA Batteries (4-pack),1,2.99,2019-02-12 18:47:00,705 Jefferson St, San Francisco,CA,94016 +156269,Wired Headphones,1,11.99,2019-02-08 11:40:00,436 Hickory St, Los Angeles,CA,90001 +156270,Lightning Charging Cable,1,14.95,2019-02-14 16:02:00,861 Pine St, Boston,MA,02215 +156271,Apple Airpods Headphones,1,150.0,2019-02-13 20:12:00,247 Adams St, Portland,ME,04101 +156271,Bose SoundSport Headphones,1,99.99,2019-02-13 20:12:00,247 Adams St, Portland,ME,04101 +156272,ThinkPad Laptop,1,999.99,2019-02-01 18:33:00,77 Lincoln St, Boston,MA,02215 +156273,AA Batteries (4-pack),2,3.84,2019-02-07 13:55:00,804 1st St, San Francisco,CA,94016 +156274,Lightning Charging Cable,1,14.95,2019-02-27 10:24:00,437 Highland St, New York City,NY,10001 +156275,Google Phone,1,600.0,2019-02-22 11:30:00,717 Lake St, Los Angeles,CA,90001 +156275,Bose SoundSport Headphones,1,99.99,2019-02-22 11:30:00,717 Lake St, Los Angeles,CA,90001 +156276,AA Batteries (4-pack),1,3.84,2019-02-05 20:56:00,496 Jackson St, New York City,NY,10001 +156277,Apple Airpods Headphones,1,150.0,2019-02-15 19:25:00,586 River St, Los Angeles,CA,90001 +156278,iPhone,1,700.0,2019-02-01 22:28:00,767 10th St, Boston,MA,02215 +156279,AAA Batteries (4-pack),1,2.99,2019-02-01 07:21:00,553 Lincoln St, Boston,MA,02215 +156280,Bose SoundSport Headphones,1,99.99,2019-02-11 14:40:00,671 Lakeview St, Seattle,WA,98101 +156281,USB-C Charging Cable,1,11.95,2019-02-24 00:50:00,833 Center St, Los Angeles,CA,90001 +156282,Bose SoundSport Headphones,1,99.99,2019-02-01 20:52:00,895 14th St, Seattle,WA,98101 +156282,AA Batteries (4-pack),1,3.84,2019-02-01 20:52:00,895 14th St, Seattle,WA,98101 +156283,USB-C Charging Cable,1,11.95,2019-02-26 10:20:00,237 6th St, Portland,OR,97035 +156284,Lightning Charging Cable,1,14.95,2019-02-01 18:04:00,756 Hill St, Dallas,TX,75001 +156285,Bose SoundSport Headphones,1,99.99,2019-02-14 11:54:00,928 Maple St, San Francisco,CA,94016 +156286,Macbook Pro Laptop,1,1700.0,2019-02-21 11:47:00,592 Main St, New York City,NY,10001 +156287,USB-C Charging Cable,1,11.95,2019-02-16 06:28:00,174 14th St, New York City,NY,10001 +156288,AAA Batteries (4-pack),1,2.99,2019-02-11 11:04:00,804 Highland St, Boston,MA,02215 +156289,Bose SoundSport Headphones,1,99.99,2019-02-09 21:33:00,947 Highland St, New York City,NY,10001 +156290,Bose SoundSport Headphones,1,99.99,2019-02-28 12:02:00,224 Center St, San Francisco,CA,94016 +156291,Wired Headphones,1,11.99,2019-02-16 08:19:00,697 Park St, San Francisco,CA,94016 +156292,Macbook Pro Laptop,1,1700.0,2019-02-27 23:40:00,109 Church St, Atlanta,GA,30301 +156293,AAA Batteries (4-pack),2,2.99,2019-02-18 10:20:00,229 4th St, Dallas,TX,75001 +156294,USB-C Charging Cable,2,11.95,2019-02-22 18:49:00,597 Chestnut St, Los Angeles,CA,90001 +156295,Vareebadd Phone,1,400.0,2019-02-02 08:51:00,351 7th St, New York City,NY,10001 +156296,AA Batteries (4-pack),1,3.84,2019-02-08 21:17:00,202 9th St, Boston,MA,02215 +156297,Apple Airpods Headphones,1,150.0,2019-02-11 09:50:00,666 North St, Boston,MA,02215 +156298,Macbook Pro Laptop,1,1700.0,2019-02-19 15:40:00,761 Highland St, San Francisco,CA,94016 +156299,Bose SoundSport Headphones,1,99.99,2019-02-05 22:36:00,586 2nd St, Boston,MA,02215 +156300,iPhone,1,700.0,2019-02-23 16:09:00,435 14th St, Dallas,TX,75001 +156301,iPhone,1,700.0,2019-02-06 18:13:00,967 Lakeview St, Atlanta,GA,30301 +156301,Flatscreen TV,1,300.0,2019-02-06 18:13:00,967 Lakeview St, Atlanta,GA,30301 +156302,iPhone,1,700.0,2019-02-08 14:27:00,707 Chestnut St, San Francisco,CA,94016 +156303,Lightning Charging Cable,1,14.95,2019-02-23 09:49:00,256 5th St, Dallas,TX,75001 +156304,AA Batteries (4-pack),2,3.84,2019-02-23 20:59:00,33 Washington St, Los Angeles,CA,90001 +156305,Apple Airpods Headphones,1,150.0,2019-02-19 11:59:00,759 Madison St, San Francisco,CA,94016 +156306,Wired Headphones,2,11.99,2019-02-17 20:24:00,688 Cherry St, Portland,ME,04101 +156307,USB-C Charging Cable,1,11.95,2019-02-24 20:17:00,778 13th St, Austin,TX,73301 +156308,USB-C Charging Cable,1,11.95,2019-02-28 17:10:00,178 Highland St, New York City,NY,10001 +156309,AA Batteries (4-pack),2,3.84,2019-02-27 18:48:00,738 2nd St, New York City,NY,10001 +156310,iPhone,1,700.0,2019-02-21 11:22:00,227 Park St, New York City,NY,10001 +156311,Bose SoundSport Headphones,1,99.99,2019-02-07 16:50:00,411 West St, San Francisco,CA,94016 +156312,Apple Airpods Headphones,1,150.0,2019-02-15 07:52:00,322 Dogwood St, Los Angeles,CA,90001 +156313,iPhone,1,700.0,2019-02-06 11:09:00,460 Madison St, Dallas,TX,75001 +156314,27in FHD Monitor,1,149.99,2019-02-21 10:13:00,979 Washington St, Seattle,WA,98101 +156315,Wired Headphones,1,11.99,2019-02-06 06:39:00,764 14th St, Portland,OR,97035 +156316,20in Monitor,1,109.99,2019-02-01 11:46:00,420 Washington St, Boston,MA,02215 +156317,AAA Batteries (4-pack),1,2.99,2019-02-12 20:21:00,219 12th St, Boston,MA,02215 +156318,27in 4K Gaming Monitor,1,389.99,2019-02-23 19:06:00,745 Wilson St, San Francisco,CA,94016 +156319,34in Ultrawide Monitor,1,379.99,2019-02-23 06:55:00,826 Adams St, New York City,NY,10001 +156320,Flatscreen TV,1,300.0,2019-02-11 22:21:00,116 Lakeview St, Seattle,WA,98101 +156321,Flatscreen TV,1,300.0,2019-02-02 19:09:00,843 Park St, San Francisco,CA,94016 +156322,AAA Batteries (4-pack),2,2.99,2019-02-28 17:53:00,811 7th St, Los Angeles,CA,90001 +156323,Lightning Charging Cable,1,14.95,2019-02-26 10:29:00,942 4th St, San Francisco,CA,94016 +156324,iPhone,1,700.0,2019-02-25 10:53:00,893 Center St, San Francisco,CA,94016 +156325,Bose SoundSport Headphones,1,99.99,2019-02-10 02:12:00,895 Hickory St, Boston,MA,02215 +156326,USB-C Charging Cable,1,11.95,2019-02-25 10:06:00,396 Johnson St, San Francisco,CA,94016 +156327,Apple Airpods Headphones,1,150.0,2019-02-22 21:00:00,551 10th St, Boston,MA,02215 +156328,27in 4K Gaming Monitor,1,389.99,2019-02-12 21:43:00,402 West St, San Francisco,CA,94016 +156329,AAA Batteries (4-pack),1,2.99,2019-02-19 19:18:00,901 Wilson St, San Francisco,CA,94016 +156330,Wired Headphones,1,11.99,2019-02-27 22:41:00,423 Church St, Atlanta,GA,30301 +156331,Lightning Charging Cable,1,14.95,2019-02-21 12:13:00,337 Main St, New York City,NY,10001 +156332,AA Batteries (4-pack),1,3.84,2019-02-20 15:33:00,122 Pine St, Boston,MA,02215 +156333,Lightning Charging Cable,1,14.95,2019-02-20 16:56:00,32 Washington St, Portland,OR,97035 +156334,AA Batteries (4-pack),1,3.84,2019-02-21 10:43:00,551 Spruce St, San Francisco,CA,94016 +156335,Lightning Charging Cable,1,14.95,2019-02-12 09:45:00,64 Sunset St, New York City,NY,10001 +156336,Flatscreen TV,1,300.0,2019-02-15 04:14:00,551 2nd St, New York City,NY,10001 +156337,USB-C Charging Cable,1,11.95,2019-02-18 09:33:00,436 West St, Atlanta,GA,30301 +156338,Wired Headphones,1,11.99,2019-02-27 08:08:00,687 Lakeview St, Los Angeles,CA,90001 +156339,34in Ultrawide Monitor,1,379.99,2019-02-27 19:09:00,603 Walnut St, San Francisco,CA,94016 +156340,AAA Batteries (4-pack),1,2.99,2019-02-10 18:22:00,16 Johnson St, New York City,NY,10001 +156341,Google Phone,1,600.0,2019-02-10 18:46:00,895 12th St, San Francisco,CA,94016 +156342,USB-C Charging Cable,1,11.95,2019-02-01 05:39:00,556 Cherry St, San Francisco,CA,94016 +156343,iPhone,1,700.0,2019-02-02 06:43:00,480 Walnut St, New York City,NY,10001 +156343,Lightning Charging Cable,1,14.95,2019-02-02 06:43:00,480 Walnut St, New York City,NY,10001 +156344,ThinkPad Laptop,1,999.99,2019-02-03 13:03:00,375 Hill St, Atlanta,GA,30301 +156345,27in 4K Gaming Monitor,1,389.99,2019-02-05 15:12:00,139 1st St, San Francisco,CA,94016 +156346,USB-C Charging Cable,1,11.95,2019-02-04 20:01:00,158 Center St, Los Angeles,CA,90001 +156347,20in Monitor,1,109.99,2019-02-25 16:15:00,405 Pine St, Los Angeles,CA,90001 +156348,iPhone,1,700.0,2019-02-24 01:17:00,284 14th St, San Francisco,CA,94016 +156349,Apple Airpods Headphones,1,150.0,2019-02-05 18:31:00,636 Hill St, Los Angeles,CA,90001 +156350,AAA Batteries (4-pack),1,2.99,2019-02-09 18:48:00,982 Church St, Seattle,WA,98101 +156351,ThinkPad Laptop,1,999.99,2019-02-12 11:56:00,767 12th St, Boston,MA,02215 +156352,AA Batteries (4-pack),1,3.84,2019-02-19 21:30:00,451 Cherry St, New York City,NY,10001 +156352,27in FHD Monitor,1,149.99,2019-02-19 21:30:00,451 Cherry St, New York City,NY,10001 +156353,Bose SoundSport Headphones,1,99.99,2019-02-16 19:35:00,381 West St, New York City,NY,10001 +156354,34in Ultrawide Monitor,1,379.99,2019-02-27 22:22:00,762 Adams St, New York City,NY,10001 +156355,USB-C Charging Cable,1,11.95,2019-02-16 21:12:00,121 Lakeview St, Seattle,WA,98101 +156356,Bose SoundSport Headphones,1,99.99,2019-02-05 19:03:00,113 Cherry St, San Francisco,CA,94016 +156357,20in Monitor,1,109.99,2019-02-07 12:39:00,959 Lakeview St, New York City,NY,10001 +156358,Bose SoundSport Headphones,1,99.99,2019-02-12 22:55:00,873 6th St, Portland,OR,97035 +156359,AA Batteries (4-pack),2,3.84,2019-02-05 21:15:00,967 Wilson St, Dallas,TX,75001 +156360,34in Ultrawide Monitor,1,379.99,2019-02-01 06:51:00,215 Cedar St, New York City,NY,10001 +156361,Wired Headphones,1,11.99,2019-02-21 04:42:00,591 River St, New York City,NY,10001 +156362,27in 4K Gaming Monitor,1,389.99,2019-02-17 06:57:00,90 8th St, New York City,NY,10001 +156363,iPhone,1,700.0,2019-02-02 20:58:00,570 Highland St, Los Angeles,CA,90001 +156364,Lightning Charging Cable,1,14.95,2019-02-11 01:44:00,589 Willow St, Los Angeles,CA,90001 +156365,Vareebadd Phone,1,400.0,2019-02-09 20:30:00,730 Elm St, Portland,OR,97035 +156365,Wired Headphones,1,11.99,2019-02-09 20:30:00,730 Elm St, Portland,OR,97035 +156365,iPhone,1,700.0,2019-02-09 20:30:00,730 Elm St, Portland,OR,97035 +156366,Bose SoundSport Headphones,1,99.99,2019-02-22 16:52:00,546 Cherry St, Los Angeles,CA,90001 +156367,AAA Batteries (4-pack),2,2.99,2019-02-12 05:15:00,694 Lake St, San Francisco,CA,94016 +156368,AA Batteries (4-pack),2,3.84,2019-02-13 13:48:00,673 Lakeview St, New York City,NY,10001 +156369,Google Phone,1,600.0,2019-02-14 18:47:00,452 Sunset St, Dallas,TX,75001 +156370,AA Batteries (4-pack),1,3.84,2019-02-21 12:56:00,471 Sunset St, Atlanta,GA,30301 +156371,USB-C Charging Cable,1,11.95,2019-02-27 11:19:00,185 West St, Atlanta,GA,30301 +156372,AA Batteries (4-pack),3,3.84,2019-02-26 08:54:00,604 Hill St, Los Angeles,CA,90001 +156372,Apple Airpods Headphones,1,150.0,2019-02-26 08:54:00,604 Hill St, Los Angeles,CA,90001 +156373,AAA Batteries (4-pack),1,2.99,2019-02-04 21:04:00,957 Park St, San Francisco,CA,94016 +156374,USB-C Charging Cable,1,11.95,2019-02-07 17:07:00,577 South St, Seattle,WA,98101 +156375,Apple Airpods Headphones,1,150.0,2019-02-23 05:13:00,875 14th St, Boston,MA,02215 +156376,USB-C Charging Cable,2,11.95,2019-02-23 11:38:00,783 Cedar St, Los Angeles,CA,90001 +156377,Lightning Charging Cable,1,14.95,2019-02-16 16:39:00,791 Park St, San Francisco,CA,94016 +156378,Wired Headphones,1,11.99,2019-02-09 19:28:00,133 Pine St, Boston,MA,02215 +156379,AAA Batteries (4-pack),1,2.99,2019-02-20 08:23:00,994 Willow St, Atlanta,GA,30301 +156380,iPhone,1,700.0,2019-02-23 13:40:00,5 Lake St, Boston,MA,02215 +156381,USB-C Charging Cable,1,11.95,2019-02-17 21:14:00,400 Lakeview St, Dallas,TX,75001 +156382,AAA Batteries (4-pack),1,2.99,2019-02-21 20:00:00,944 Jackson St, Los Angeles,CA,90001 +156383,Lightning Charging Cable,1,14.95,2019-02-23 09:34:00,869 Chestnut St, Boston,MA,02215 +156384,Apple Airpods Headphones,1,150.0,2019-02-02 10:41:00,701 Maple St, Boston,MA,02215 +156385,AAA Batteries (4-pack),1,2.99,2019-02-02 22:33:00,961 6th St, Los Angeles,CA,90001 +156386,20in Monitor,1,109.99,2019-02-07 07:24:00,200 Madison St, New York City,NY,10001 +156387,AAA Batteries (4-pack),1,2.99,2019-02-16 16:17:00,950 Pine St, Dallas,TX,75001 +156388,Apple Airpods Headphones,1,150.0,2019-02-04 14:24:00,579 South St, Boston,MA,02215 +156389,Lightning Charging Cable,1,14.95,2019-02-01 09:02:00,80 Pine St, New York City,NY,10001 +156390,AA Batteries (4-pack),2,3.84,2019-02-15 23:52:00,592 Dogwood St, San Francisco,CA,94016 +156391,ThinkPad Laptop,1,999.99,2019-02-08 21:37:00,275 13th St, San Francisco,CA,94016 +156392,Wired Headphones,1,11.99,2019-02-08 02:06:00,313 13th St, San Francisco,CA,94016 +156393,USB-C Charging Cable,1,11.95,2019-02-26 16:46:00,18 Madison St, Portland,OR,97035 +156394,Lightning Charging Cable,1,14.95,2019-02-10 00:31:00,550 13th St, Dallas,TX,75001 +156395,AA Batteries (4-pack),2,3.84,2019-02-17 19:36:00,904 Jackson St, Boston,MA,02215 +156396,Lightning Charging Cable,1,14.95,2019-02-12 15:36:00,750 5th St, San Francisco,CA,94016 +156397,34in Ultrawide Monitor,1,379.99,2019-02-25 19:29:00,879 Cherry St, San Francisco,CA,94016 +156398,Wired Headphones,1,11.99,2019-02-22 10:02:00,568 4th St, Los Angeles,CA,90001 +156399,AAA Batteries (4-pack),1,2.99,2019-02-01 11:11:00,251 Wilson St, Portland,OR,97035 +156399,Lightning Charging Cable,1,14.95,2019-02-01 11:11:00,251 Wilson St, Portland,OR,97035 +156400,AAA Batteries (4-pack),1,2.99,2019-02-25 13:18:00,902 Elm St, Dallas,TX,75001 +156401,AA Batteries (4-pack),3,3.84,2019-02-03 23:35:00,250 12th St, New York City,NY,10001 +156402,Bose SoundSport Headphones,1,99.99,2019-02-02 15:57:00,218 Wilson St, Austin,TX,73301 +156403,AAA Batteries (4-pack),1,2.99,2019-02-24 18:52:00,743 6th St, San Francisco,CA,94016 +156404,USB-C Charging Cable,1,11.95,2019-02-03 13:44:00,151 14th St, New York City,NY,10001 +156405,AA Batteries (4-pack),1,3.84,2019-02-09 23:22:00,60 7th St, Boston,MA,02215 +156406,AAA Batteries (4-pack),2,2.99,2019-02-13 12:39:00,931 6th St, Atlanta,GA,30301 +156407,Wired Headphones,1,11.99,2019-02-04 20:54:00,277 Willow St, Dallas,TX,75001 +156408,Apple Airpods Headphones,1,150.0,2019-02-18 23:06:00,423 Hill St, San Francisco,CA,94016 +156409,Lightning Charging Cable,1,14.95,2019-02-21 21:22:00,293 Walnut St, San Francisco,CA,94016 +156410,USB-C Charging Cable,1,11.95,2019-02-10 16:52:00,208 Ridge St, San Francisco,CA,94016 +156411,iPhone,1,700.0,2019-02-07 15:30:00,626 Lincoln St, Dallas,TX,75001 +156412,Lightning Charging Cable,2,14.95,2019-02-08 18:32:00,967 Meadow St, Austin,TX,73301 +156413,34in Ultrawide Monitor,1,379.99,2019-02-01 17:25:00,578 Hickory St, Atlanta,GA,30301 +156414,iPhone,1,700.0,2019-02-25 10:49:00,779 Spruce St, Los Angeles,CA,90001 +156415,Bose SoundSport Headphones,1,99.99,2019-02-24 12:21:00,121 Jackson St, New York City,NY,10001 +156416,USB-C Charging Cable,1,11.95,2019-02-13 18:33:00,4 Center St, Seattle,WA,98101 +156417,iPhone,1,700.0,2019-02-11 15:32:00,604 Lakeview St, New York City,NY,10001 +156418,27in 4K Gaming Monitor,1,389.99,2019-02-25 19:03:00,361 4th St, San Francisco,CA,94016 +156419,27in 4K Gaming Monitor,1,389.99,2019-02-18 13:31:00,827 8th St, New York City,NY,10001 +156420,Macbook Pro Laptop,1,1700.0,2019-02-16 09:24:00,488 Lake St, San Francisco,CA,94016 +156421,AAA Batteries (4-pack),1,2.99,2019-02-18 22:01:00,174 8th St, Atlanta,GA,30301 +156422,iPhone,1,700.0,2019-02-02 14:28:00,746 South St, Austin,TX,73301 +156423,AAA Batteries (4-pack),1,2.99,2019-02-20 21:24:00,702 Madison St, Portland,OR,97035 +156424,Apple Airpods Headphones,1,150.0,2019-02-12 15:26:00,904 14th St, San Francisco,CA,94016 +156425,iPhone,1,700.0,2019-02-11 21:02:00,813 Spruce St, Boston,MA,02215 +156426,AAA Batteries (4-pack),1,2.99,2019-02-03 17:41:00,763 Hickory St, Boston,MA,02215 +156427,Wired Headphones,1,11.99,2019-02-01 12:55:00,69 Spruce St, Seattle,WA,98101 +156428,Vareebadd Phone,1,400.0,2019-02-20 02:45:00,624 Spruce St, Portland,ME,04101 +156429,USB-C Charging Cable,1,11.95,2019-03-01 02:29:00,171 Elm St, New York City,NY,10001 +156430,AAA Batteries (4-pack),1,2.99,2019-02-19 04:34:00,217 Adams St, New York City,NY,10001 +156431,27in 4K Gaming Monitor,1,389.99,2019-02-22 15:51:00,842 Walnut St, Los Angeles,CA,90001 +156432,Lightning Charging Cable,1,14.95,2019-02-17 13:39:00,804 Hickory St, Los Angeles,CA,90001 +156433,Bose SoundSport Headphones,1,99.99,2019-02-09 09:48:00,721 12th St, Austin,TX,73301 +156434,AA Batteries (4-pack),1,3.84,2019-02-07 18:42:00,102 Wilson St, Los Angeles,CA,90001 +156435,AAA Batteries (4-pack),1,2.99,2019-02-11 21:50:00,38 River St, Atlanta,GA,30301 +156436,Google Phone,1,600.0,2019-02-04 13:35:00,892 Hickory St, Los Angeles,CA,90001 +156437,AAA Batteries (4-pack),4,2.99,2019-02-04 10:15:00,762 South St, Los Angeles,CA,90001 +156438,Lightning Charging Cable,1,14.95,2019-02-12 16:20:00,360 West St, Boston,MA,02215 +156439,USB-C Charging Cable,1,11.95,2019-02-14 10:38:00,261 Jefferson St, Portland,ME,04101 +156440,Vareebadd Phone,1,400.0,2019-02-02 14:04:00,662 Lakeview St, Boston,MA,02215 +156440,USB-C Charging Cable,1,11.95,2019-02-02 14:04:00,662 Lakeview St, Boston,MA,02215 +156441,Lightning Charging Cable,1,14.95,2019-02-20 14:59:00,803 Spruce St, San Francisco,CA,94016 +156442,USB-C Charging Cable,1,11.95,2019-02-18 19:37:00,541 Cherry St, Seattle,WA,98101 +156443,Vareebadd Phone,1,400.0,2019-02-12 11:56:00,504 Sunset St, Boston,MA,02215 +156444,AAA Batteries (4-pack),2,2.99,2019-02-21 15:58:00,941 1st St, Los Angeles,CA,90001 +156445,Lightning Charging Cable,1,14.95,2019-02-15 10:01:00,285 Jackson St, Atlanta,GA,30301 +156446,20in Monitor,1,109.99,2019-02-17 18:25:00,874 Jefferson St, Dallas,TX,75001 +156447,27in 4K Gaming Monitor,1,389.99,2019-02-09 17:40:00,695 Pine St, New York City,NY,10001 +156448,AAA Batteries (4-pack),1,2.99,2019-02-23 15:48:00,666 Jefferson St, New York City,NY,10001 +156449,iPhone,1,700.0,2019-02-13 14:08:00,142 Elm St, Seattle,WA,98101 +156449,Lightning Charging Cable,1,14.95,2019-02-13 14:08:00,142 Elm St, Seattle,WA,98101 +156450,Google Phone,1,600.0,2019-02-28 17:41:00,253 West St, Dallas,TX,75001 +156451,Apple Airpods Headphones,1,150.0,2019-02-20 22:08:00,84 Wilson St, San Francisco,CA,94016 +156452,20in Monitor,1,109.99,2019-02-19 10:15:00,533 Chestnut St, Seattle,WA,98101 +156453,Lightning Charging Cable,1,14.95,2019-02-16 14:21:00,386 6th St, Seattle,WA,98101 +156454,Lightning Charging Cable,1,14.95,2019-02-06 20:37:00,517 Meadow St, Austin,TX,73301 +156455,AAA Batteries (4-pack),4,2.99,2019-02-23 11:55:00,127 Wilson St, San Francisco,CA,94016 +156456,Google Phone,1,600.0,2019-02-22 08:44:00,825 Main St, Austin,TX,73301 +156457,Lightning Charging Cable,1,14.95,2019-02-03 10:17:00,658 Maple St, San Francisco,CA,94016 +156458,Lightning Charging Cable,1,14.95,2019-02-02 21:07:00,42 10th St, Dallas,TX,75001 +156459,LG Washing Machine,1,600.0,2019-02-27 09:56:00,875 Spruce St, San Francisco,CA,94016 +156460,AAA Batteries (4-pack),2,2.99,2019-02-14 17:52:00,566 Willow St, San Francisco,CA,94016 +156461,Wired Headphones,1,11.99,2019-02-11 10:44:00,73 Washington St, Austin,TX,73301 +156462,34in Ultrawide Monitor,1,379.99,2019-02-19 05:28:00,645 12th St, Boston,MA,02215 +156463,AA Batteries (4-pack),1,3.84,2019-02-11 22:33:00,331 7th St, Dallas,TX,75001 +156463,27in 4K Gaming Monitor,1,389.99,2019-02-11 22:33:00,331 7th St, Dallas,TX,75001 +156464,34in Ultrawide Monitor,1,379.99,2019-02-19 13:13:00,699 Madison St, New York City,NY,10001 +156465,Apple Airpods Headphones,1,150.0,2019-02-08 10:04:00,729 Center St, Los Angeles,CA,90001 +156466,Macbook Pro Laptop,1,1700.0,2019-02-16 20:29:00,877 Elm St, Austin,TX,73301 +156467,Wired Headphones,1,11.99,2019-02-18 10:01:00,78 Lincoln St, New York City,NY,10001 +156468,AAA Batteries (4-pack),6,2.99,2019-02-14 12:28:00,227 10th St, San Francisco,CA,94016 +156469,Bose SoundSport Headphones,1,99.99,2019-02-27 21:17:00,431 Forest St, Atlanta,GA,30301 +156470,USB-C Charging Cable,1,11.95,2019-02-07 21:18:00,531 6th St, Los Angeles,CA,90001 +156471,Wired Headphones,1,11.99,2019-02-02 14:11:00,823 Johnson St, Portland,OR,97035 +156472,USB-C Charging Cable,2,11.95,2019-02-26 19:13:00,473 River St, Los Angeles,CA,90001 +156473,AAA Batteries (4-pack),2,2.99,2019-02-10 15:15:00,675 Dogwood St, San Francisco,CA,94016 +156474,27in FHD Monitor,1,149.99,2019-02-09 15:08:00,962 Lincoln St, San Francisco,CA,94016 +156475,Google Phone,1,600.0,2019-02-06 01:40:00,759 12th St, San Francisco,CA,94016 +156476,Wired Headphones,1,11.99,2019-02-22 11:30:00,475 14th St, Portland,OR,97035 +156477,Apple Airpods Headphones,1,150.0,2019-02-07 12:31:00,205 14th St, San Francisco,CA,94016 +156478,AA Batteries (4-pack),1,3.84,2019-02-10 18:37:00,369 14th St, San Francisco,CA,94016 +156479,Bose SoundSport Headphones,1,99.99,2019-02-12 15:32:00,328 5th St, Boston,MA,02215 +156480,USB-C Charging Cable,1,11.95,2019-02-04 10:40:00,810 Jefferson St, Los Angeles,CA,90001 +156481,Wired Headphones,1,11.99,2019-02-09 10:00:00,236 Chestnut St, Portland,OR,97035 +156482,20in Monitor,1,109.99,2019-02-15 09:31:00,955 South St, Los Angeles,CA,90001 +156483,Lightning Charging Cable,1,14.95,2019-02-19 21:05:00,293 Willow St, Portland,ME,04101 +156484,Apple Airpods Headphones,1,150.0,2019-02-23 21:41:00,837 9th St, Austin,TX,73301 +156485,27in 4K Gaming Monitor,1,389.99,2019-02-06 12:15:00,836 Cedar St, Los Angeles,CA,90001 +156486,Bose SoundSport Headphones,1,99.99,2019-02-13 12:16:00,312 Jackson St, Atlanta,GA,30301 +156487,USB-C Charging Cable,1,11.95,2019-02-08 10:50:00,84 Elm St, Los Angeles,CA,90001 +156488,Apple Airpods Headphones,1,150.0,2019-02-03 12:22:00,669 8th St, New York City,NY,10001 +156489,AAA Batteries (4-pack),1,2.99,2019-02-05 20:01:00,507 5th St, Portland,OR,97035 +156490,USB-C Charging Cable,1,11.95,2019-02-16 18:41:00,242 12th St, Portland,OR,97035 +156491,Wired Headphones,1,11.99,2019-02-18 16:34:00,428 Wilson St, Los Angeles,CA,90001 +156492,Macbook Pro Laptop,1,1700.0,2019-02-17 16:32:00,952 Johnson St, San Francisco,CA,94016 +156493,27in FHD Monitor,1,149.99,2019-02-23 20:05:00,194 South St, New York City,NY,10001 +156494,20in Monitor,1,109.99,2019-02-04 19:56:00,335 Forest St, Boston,MA,02215 +156495,Google Phone,1,600.0,2019-02-04 11:44:00,465 Madison St, New York City,NY,10001 +156496,Wired Headphones,2,11.99,2019-02-02 17:28:00,523 Jackson St, San Francisco,CA,94016 +156497,USB-C Charging Cable,1,11.95,2019-02-06 20:13:00,736 6th St, Dallas,TX,75001 +156498,Apple Airpods Headphones,1,150.0,2019-02-12 13:12:00,736 2nd St, New York City,NY,10001 +156499,Lightning Charging Cable,1,14.95,2019-02-18 09:37:00,376 Pine St, New York City,NY,10001 +156500,USB-C Charging Cable,1,11.95,2019-02-23 12:32:00,935 Hill St, Seattle,WA,98101 +156501,AA Batteries (4-pack),1,3.84,2019-02-09 08:49:00,393 Forest St, Portland,OR,97035 +156502,Wired Headphones,1,11.99,2019-02-17 16:15:00,436 6th St, Dallas,TX,75001 +156503,USB-C Charging Cable,1,11.95,2019-02-10 01:15:00,792 Sunset St, San Francisco,CA,94016 +156504,Macbook Pro Laptop,1,1700.0,2019-02-12 21:28:00,869 Dogwood St, Atlanta,GA,30301 +156505,Bose SoundSport Headphones,1,99.99,2019-02-24 15:03:00,657 Dogwood St, Austin,TX,73301 +156506,USB-C Charging Cable,1,11.95,2019-02-23 15:13:00,157 Spruce St, Boston,MA,02215 +156507,27in FHD Monitor,1,149.99,2019-02-27 18:03:00,982 4th St, Portland,OR,97035 +156508,Lightning Charging Cable,1,14.95,2019-02-13 10:40:00,635 Cherry St, Los Angeles,CA,90001 +156509,AAA Batteries (4-pack),1,2.99,2019-02-28 23:01:00,442 7th St, Los Angeles,CA,90001 +156510,Flatscreen TV,1,300.0,2019-02-21 16:47:00,337 Adams St, Seattle,WA,98101 +156511,AAA Batteries (4-pack),4,2.99,2019-02-08 17:45:00,848 Maple St, Los Angeles,CA,90001 +156512,USB-C Charging Cable,1,11.95,2019-02-04 21:39:00,667 Johnson St, Dallas,TX,75001 +156513,34in Ultrawide Monitor,1,379.99,2019-02-19 17:36:00,296 Cherry St, Portland,OR,97035 +156514,Wired Headphones,1,11.99,2019-02-02 16:32:00,526 Cherry St, Austin,TX,73301 +156515,AAA Batteries (4-pack),2,2.99,2019-02-09 07:45:00,912 4th St, San Francisco,CA,94016 +156516,Lightning Charging Cable,1,14.95,2019-02-02 22:04:00,929 Meadow St, San Francisco,CA,94016 +156517,Apple Airpods Headphones,1,150.0,2019-02-15 20:49:00,688 14th St, San Francisco,CA,94016 +156518,Google Phone,1,600.0,2019-02-07 21:35:00,792 9th St, Seattle,WA,98101 +156519,34in Ultrawide Monitor,1,379.99,2019-02-21 14:46:00,822 Highland St, Dallas,TX,75001 +156520,27in FHD Monitor,1,149.99,2019-02-03 13:47:00,323 Main St, Los Angeles,CA,90001 +156521,AA Batteries (4-pack),1,3.84,2019-02-17 07:30:00,517 Madison St, Portland,ME,04101 +156522,AA Batteries (4-pack),1,3.84,2019-02-26 15:12:00,920 Willow St, San Francisco,CA,94016 +156523,Flatscreen TV,1,300.0,2019-02-26 21:58:00,223 Highland St, New York City,NY,10001 +156524,Google Phone,1,600.0,2019-02-26 20:29:00,212 13th St, Boston,MA,02215 +156524,USB-C Charging Cable,1,11.95,2019-02-26 20:29:00,212 13th St, Boston,MA,02215 +156525,iPhone,1,700.0,2019-02-21 18:44:00,387 Walnut St, Los Angeles,CA,90001 +156526,Google Phone,1,600.0,2019-02-28 20:39:00,304 4th St, Boston,MA,02215 +156527,AAA Batteries (4-pack),1,2.99,2019-02-03 14:09:00,791 West St, San Francisco,CA,94016 +156528,USB-C Charging Cable,2,11.95,2019-02-22 12:15:00,727 Dogwood St, San Francisco,CA,94016 +156529,Lightning Charging Cable,1,14.95,2019-02-19 11:48:00,181 Forest St, Austin,TX,73301 +156530,AAA Batteries (4-pack),1,2.99,2019-02-11 18:00:00,233 Maple St, Los Angeles,CA,90001 +156531,Apple Airpods Headphones,1,150.0,2019-02-12 12:06:00,121 Willow St, New York City,NY,10001 +156532,Apple Airpods Headphones,1,150.0,2019-02-10 12:18:00,556 Washington St, Boston,MA,02215 +156533,ThinkPad Laptop,1,999.99,2019-02-02 10:58:00,657 11th St, Atlanta,GA,30301 +156534,34in Ultrawide Monitor,1,379.99,2019-02-12 21:54:00,291 5th St, San Francisco,CA,94016 +156535,AAA Batteries (4-pack),1,2.99,2019-02-01 14:09:00,291 Cherry St, Atlanta,GA,30301 +156536,Wired Headphones,2,11.99,2019-02-28 21:32:00,211 12th St, Los Angeles,CA,90001 +156537,Wired Headphones,1,11.99,2019-02-14 11:26:00,820 Adams St, Atlanta,GA,30301 +156538,AA Batteries (4-pack),1,3.84,2019-02-25 17:37:00,318 Main St, Austin,TX,73301 +156539,AA Batteries (4-pack),1,3.84,2019-02-18 13:46:00,577 Walnut St, San Francisco,CA,94016 +156540,27in 4K Gaming Monitor,1,389.99,2019-02-24 21:47:00,33 Jackson St, Atlanta,GA,30301 +156541,Vareebadd Phone,1,400.0,2019-02-12 18:52:00,104 Hickory St, Seattle,WA,98101 +156542,Lightning Charging Cable,1,14.95,2019-02-09 15:43:00,135 Pine St, Portland,OR,97035 +156543,Apple Airpods Headphones,1,150.0,2019-02-13 07:05:00,621 Johnson St, Los Angeles,CA,90001 +156544,Bose SoundSport Headphones,1,99.99,2019-02-18 07:49:00,561 North St, San Francisco,CA,94016 +156545,27in FHD Monitor,1,149.99,2019-02-14 11:16:00,686 Forest St, New York City,NY,10001 +156546,Apple Airpods Headphones,1,150.0,2019-02-04 14:02:00,822 Main St, Los Angeles,CA,90001 +156547,Wired Headphones,1,11.99,2019-02-02 18:28:00,113 Spruce St, Portland,OR,97035 +156548,USB-C Charging Cable,1,11.95,2019-02-22 10:13:00,581 Lakeview St, Boston,MA,02215 +156549,AA Batteries (4-pack),1,3.84,2019-02-05 18:27:00,256 Dogwood St, San Francisco,CA,94016 +156550,Flatscreen TV,1,300.0,2019-02-25 16:54:00,715 4th St, Los Angeles,CA,90001 +156551,Wired Headphones,1,11.99,2019-02-01 23:42:00,966 River St, Dallas,TX,75001 +156552,Lightning Charging Cable,1,14.95,2019-02-12 12:16:00,885 South St, San Francisco,CA,94016 +156553,AA Batteries (4-pack),1,3.84,2019-02-21 16:41:00,291 7th St, Los Angeles,CA,90001 +156554,34in Ultrawide Monitor,1,379.99,2019-02-16 18:56:00,380 Cedar St, San Francisco,CA,94016 +156555,ThinkPad Laptop,1,999.99,2019-02-11 19:36:00,892 Willow St, San Francisco,CA,94016 +156556,Bose SoundSport Headphones,1,99.99,2019-02-12 00:56:00,719 Highland St, Los Angeles,CA,90001 +156557,Wired Headphones,1,11.99,2019-02-23 14:34:00,167 Lincoln St, Atlanta,GA,30301 +156558,AAA Batteries (4-pack),2,2.99,2019-02-19 10:41:00,671 Pine St, Los Angeles,CA,90001 +156559,Lightning Charging Cable,1,14.95,2019-02-13 15:32:00,660 Dogwood St, Seattle,WA,98101 +156560,Apple Airpods Headphones,1,150.0,2019-02-18 13:52:00,831 Spruce St, Atlanta,GA,30301 +156561,USB-C Charging Cable,2,11.95,2019-02-08 17:37:00,622 Chestnut St, New York City,NY,10001 +156562,ThinkPad Laptop,1,999.99,2019-02-27 17:18:00,111 Dogwood St, Atlanta,GA,30301 +156563,Flatscreen TV,1,300.0,2019-02-22 12:53:00,788 Chestnut St, New York City,NY,10001 +156564,27in FHD Monitor,1,149.99,2019-02-12 10:49:00,103 Walnut St, Atlanta,GA,30301 +156565,Wired Headphones,1,11.99,2019-02-20 09:23:00,976 Wilson St, San Francisco,CA,94016 +156566,Wired Headphones,1,11.99,2019-02-26 15:40:00,201 Dogwood St, New York City,NY,10001 +156567,USB-C Charging Cable,1,11.95,2019-02-14 12:24:00,870 Ridge St, San Francisco,CA,94016 +156568,Google Phone,1,600.0,2019-02-07 23:08:00,856 Center St, Seattle,WA,98101 +156569,AA Batteries (4-pack),1,3.84,2019-02-21 15:55:00,422 Lake St, Dallas,TX,75001 +156570,Google Phone,1,600.0,2019-02-03 19:59:00,614 Lake St, Los Angeles,CA,90001 +156571,USB-C Charging Cable,2,11.95,2019-02-02 12:35:00,588 Cedar St, Atlanta,GA,30301 +156572,Bose SoundSport Headphones,1,99.99,2019-02-07 21:54:00,953 Meadow St, New York City,NY,10001 +156573,AA Batteries (4-pack),1,3.84,2019-02-17 12:46:00,237 2nd St, Boston,MA,02215 +156574,USB-C Charging Cable,1,11.95,2019-02-26 18:54:00,887 Adams St, Los Angeles,CA,90001 +156575,USB-C Charging Cable,1,11.95,2019-02-12 16:12:00,20 West St, Portland,OR,97035 +156576,Lightning Charging Cable,2,14.95,2019-02-04 13:47:00,309 Chestnut St, New York City,NY,10001 +156577,AAA Batteries (4-pack),1,2.99,2019-02-01 16:30:00,911 Hickory St, Dallas,TX,75001 +156578,Apple Airpods Headphones,1,150.0,2019-02-07 17:00:00,12 Chestnut St, Boston,MA,02215 +156579,Lightning Charging Cable,1,14.95,2019-02-16 06:56:00,412 River St, Los Angeles,CA,90001 +156580,AA Batteries (4-pack),1,3.84,2019-02-07 14:04:00,473 South St, Dallas,TX,75001 +156581,USB-C Charging Cable,1,11.95,2019-02-09 12:47:00,828 1st St, Boston,MA,02215 +156582,Bose SoundSport Headphones,1,99.99,2019-02-08 16:49:00,689 Ridge St, San Francisco,CA,94016 +156583,USB-C Charging Cable,1,11.95,2019-02-07 20:28:00,951 1st St, Boston,MA,02215 +156584,AAA Batteries (4-pack),4,2.99,2019-02-18 10:13:00,205 Lakeview St, Dallas,TX,75001 +156585,Wired Headphones,1,11.99,2019-02-12 23:43:00,645 Hickory St, Los Angeles,CA,90001 +156586,AAA Batteries (4-pack),1,2.99,2019-02-22 00:53:00,99 Lake St, Atlanta,GA,30301 +156587,Flatscreen TV,1,300.0,2019-02-24 11:41:00,972 Jackson St, Dallas,TX,75001 +156588,AA Batteries (4-pack),1,3.84,2019-02-27 11:09:00,611 10th St, Dallas,TX,75001 +156589,AA Batteries (4-pack),2,3.84,2019-02-28 10:59:00,69 Lake St, San Francisco,CA,94016 +156590,AA Batteries (4-pack),1,3.84,2019-02-21 10:24:00,644 Jefferson St, Boston,MA,02215 +156591,Bose SoundSport Headphones,1,99.99,2019-02-01 11:13:00,721 7th St, San Francisco,CA,94016 +156592,USB-C Charging Cable,1,11.95,2019-02-02 10:37:00,758 Elm St, Los Angeles,CA,90001 +156593,USB-C Charging Cable,1,11.95,2019-02-28 20:36:00,697 9th St, Boston,MA,02215 +156594,Apple Airpods Headphones,1,150.0,2019-02-21 13:14:00,177 North St, Dallas,TX,75001 +156595,Lightning Charging Cable,1,14.95,2019-02-06 11:56:00,415 West St, Boston,MA,02215 +156596,Apple Airpods Headphones,1,150.0,2019-02-20 16:26:00,968 Elm St, New York City,NY,10001 +156597,USB-C Charging Cable,1,11.95,2019-02-23 09:43:00,939 Willow St, San Francisco,CA,94016 +156598,ThinkPad Laptop,1,999.99,2019-02-12 09:15:00,71 10th St, Los Angeles,CA,90001 +156599,20in Monitor,1,109.99,2019-02-25 22:14:00,223 1st St, Seattle,WA,98101 +156600,ThinkPad Laptop,1,999.99,2019-02-27 22:53:00,969 Cedar St, Austin,TX,73301 +156601,Google Phone,1,600.0,2019-02-23 20:36:00,133 Cedar St, Boston,MA,02215 +156602,Wired Headphones,1,11.99,2019-02-05 18:00:00,199 River St, New York City,NY,10001 +156603,AA Batteries (4-pack),1,3.84,2019-02-28 13:06:00,159 Jackson St, Los Angeles,CA,90001 +156604,27in 4K Gaming Monitor,1,389.99,2019-02-02 01:00:00,457 Main St, San Francisco,CA,94016 +156605,34in Ultrawide Monitor,1,379.99,2019-02-11 10:44:00,974 10th St, Los Angeles,CA,90001 +156606,AA Batteries (4-pack),3,3.84,2019-02-14 02:30:00,740 Main St, Seattle,WA,98101 +156607,AA Batteries (4-pack),1,3.84,2019-02-04 11:38:00,274 Jefferson St, Los Angeles,CA,90001 +156608,27in 4K Gaming Monitor,1,389.99,2019-02-24 08:40:00,907 14th St, Seattle,WA,98101 +156609,Apple Airpods Headphones,1,150.0,2019-02-06 23:42:00,42 River St, Boston,MA,02215 +156610,USB-C Charging Cable,1,11.95,2019-02-26 13:08:00,836 South St, Austin,TX,73301 +156611,Lightning Charging Cable,1,14.95,2019-02-19 01:27:00,639 5th St, San Francisco,CA,94016 +156612,USB-C Charging Cable,1,11.95,2019-02-10 22:14:00,783 South St, Dallas,TX,75001 +156613,Wired Headphones,1,11.99,2019-02-27 17:42:00,296 Forest St, Portland,OR,97035 +156614,Bose SoundSport Headphones,1,99.99,2019-02-28 00:17:00,151 Jefferson St, Atlanta,GA,30301 +156615,Wired Headphones,1,11.99,2019-02-26 13:38:00,292 Hill St, San Francisco,CA,94016 +156616,iPhone,1,700.0,2019-02-04 20:53:00,650 12th St, Atlanta,GA,30301 +156617,Lightning Charging Cable,1,14.95,2019-02-09 17:08:00,639 Hickory St, Seattle,WA,98101 +156618,iPhone,1,700.0,2019-02-19 13:59:00,131 Main St, Atlanta,GA,30301 +156619,Google Phone,1,600.0,2019-02-08 14:32:00,568 Walnut St, Seattle,WA,98101 +156620,Wired Headphones,1,11.99,2019-02-24 01:32:00,716 Lakeview St, San Francisco,CA,94016 +156621,Google Phone,1,600.0,2019-02-10 18:35:00,508 Walnut St, Dallas,TX,75001 +156621,USB-C Charging Cable,1,11.95,2019-02-10 18:35:00,508 Walnut St, Dallas,TX,75001 +156622,Apple Airpods Headphones,1,150.0,2019-02-17 12:56:00,110 8th St, Los Angeles,CA,90001 +156623,Lightning Charging Cable,1,14.95,2019-02-07 12:41:00,15 North St, Portland,OR,97035 +156624,34in Ultrawide Monitor,1,379.99,2019-02-06 22:03:00,179 13th St, New York City,NY,10001 +156625,Lightning Charging Cable,1,14.95,2019-02-15 16:40:00,625 Walnut St, Boston,MA,02215 +156626,Bose SoundSport Headphones,1,99.99,2019-02-04 23:39:00,334 Hickory St, Seattle,WA,98101 +156627,Google Phone,1,600.0,2019-02-04 10:29:00,29 1st St, Portland,OR,97035 +156628,Lightning Charging Cable,1,14.95,2019-02-22 07:54:00,435 Elm St, New York City,NY,10001 +156629,AAA Batteries (4-pack),1,2.99,2019-02-25 00:13:00,475 12th St, San Francisco,CA,94016 +156630,Google Phone,1,600.0,2019-02-15 10:32:00,859 Pine St, San Francisco,CA,94016 +156631,34in Ultrawide Monitor,1,379.99,2019-02-21 20:49:00,21 Center St, Los Angeles,CA,90001 +156632,USB-C Charging Cable,1,11.95,2019-02-13 19:17:00,570 South St, Boston,MA,02215 +156633,34in Ultrawide Monitor,1,379.99,2019-02-12 01:42:00,558 Jackson St, Dallas,TX,75001 +156634,USB-C Charging Cable,1,11.95,2019-02-27 19:42:00,832 11th St, New York City,NY,10001 +156635,Wired Headphones,1,11.99,2019-02-15 15:17:00,709 Main St, San Francisco,CA,94016 +156636,34in Ultrawide Monitor,1,379.99,2019-02-10 12:45:00,545 Main St, Dallas,TX,75001 +156637,Lightning Charging Cable,1,14.95,2019-02-24 19:52:00,383 Madison St, New York City,NY,10001 +156638,AA Batteries (4-pack),5,3.84,2019-02-22 09:30:00,168 14th St, Los Angeles,CA,90001 +156638,Flatscreen TV,1,300.0,2019-02-22 09:30:00,168 14th St, Los Angeles,CA,90001 +156639,Lightning Charging Cable,1,14.95,2019-02-22 00:37:00,257 Dogwood St, San Francisco,CA,94016 +156640,Lightning Charging Cable,1,14.95,2019-02-11 10:32:00,818 1st St, San Francisco,CA,94016 +156641,Lightning Charging Cable,1,14.95,2019-02-27 14:09:00,83 13th St, San Francisco,CA,94016 +156642,Google Phone,1,600.0,2019-02-13 15:28:00,574 Ridge St, Dallas,TX,75001 +156643,Apple Airpods Headphones,1,150.0,2019-02-28 00:00:00,520 Maple St, New York City,NY,10001 +156644,USB-C Charging Cable,1,11.95,2019-02-19 13:26:00,647 14th St, Los Angeles,CA,90001 +156645,iPhone,1,700.0,2019-02-27 14:24:00,679 Madison St, Dallas,TX,75001 +156646,Bose SoundSport Headphones,1,99.99,2019-02-22 21:34:00,282 6th St, San Francisco,CA,94016 +156647,USB-C Charging Cable,1,11.95,2019-02-19 11:47:00,670 Maple St, San Francisco,CA,94016 +156648,USB-C Charging Cable,1,11.95,2019-02-09 11:55:00,604 Madison St, San Francisco,CA,94016 +156649,Lightning Charging Cable,1,14.95,2019-02-20 00:13:00,795 Lake St, San Francisco,CA,94016 +156650,Apple Airpods Headphones,1,150.0,2019-02-03 21:55:00,125 Johnson St, Austin,TX,73301 +156651,27in 4K Gaming Monitor,1,389.99,2019-02-02 16:32:00,846 Hill St, Atlanta,GA,30301 +156652,AA Batteries (4-pack),1,3.84,2019-02-10 09:55:00,519 Hickory St, Atlanta,GA,30301 +156653,Wired Headphones,1,11.99,2019-02-11 15:07:00,466 Sunset St, Boston,MA,02215 +156654,ThinkPad Laptop,1,999.99,2019-02-12 08:19:00,603 Wilson St, San Francisco,CA,94016 +156655,USB-C Charging Cable,1,11.95,2019-02-06 19:48:00,684 Sunset St, New York City,NY,10001 +156656,AAA Batteries (4-pack),1,2.99,2019-02-16 18:25:00,256 Dogwood St, San Francisco,CA,94016 +156657,34in Ultrawide Monitor,1,379.99,2019-02-20 22:31:00,230 Chestnut St, New York City,NY,10001 +156658,USB-C Charging Cable,1,11.95,2019-02-09 00:18:00,629 Forest St, Portland,OR,97035 +156659,AA Batteries (4-pack),1,3.84,2019-02-12 08:36:00,44 Spruce St, San Francisco,CA,94016 +156660,AA Batteries (4-pack),1,3.84,2019-02-12 13:15:00,439 Ridge St, Los Angeles,CA,90001 +156661,Lightning Charging Cable,1,14.95,2019-02-19 11:29:00,436 Hickory St, San Francisco,CA,94016 +156662,Lightning Charging Cable,1,14.95,2019-02-09 14:21:00,524 Adams St, Dallas,TX,75001 +156663,Lightning Charging Cable,1,14.95,2019-02-11 21:09:00,290 Highland St, San Francisco,CA,94016 +156664,USB-C Charging Cable,1,11.95,2019-02-06 14:59:00,665 River St, Austin,TX,73301 +156665,34in Ultrawide Monitor,1,379.99,2019-02-09 22:53:00,315 5th St, Portland,OR,97035 +156666,Bose SoundSport Headphones,1,99.99,2019-02-14 09:40:00,571 13th St, Atlanta,GA,30301 +156667,Apple Airpods Headphones,1,150.0,2019-02-28 10:12:00,619 14th St, Dallas,TX,75001 +156668,AAA Batteries (4-pack),2,2.99,2019-02-14 17:44:00,888 10th St, San Francisco,CA,94016 +156669,Apple Airpods Headphones,1,150.0,2019-02-16 20:54:00,355 12th St, Atlanta,GA,30301 +156670,USB-C Charging Cable,1,11.95,2019-02-19 12:37:00,750 Pine St, Portland,OR,97035 +156671,AAA Batteries (4-pack),2,2.99,2019-02-28 12:17:00,588 River St, San Francisco,CA,94016 +156672,34in Ultrawide Monitor,1,379.99,2019-02-16 19:34:00,983 Madison St, San Francisco,CA,94016 +156673,Flatscreen TV,1,300.0,2019-02-07 14:23:00,414 Lakeview St, New York City,NY,10001 +156674,Lightning Charging Cable,1,14.95,2019-02-25 15:26:00,586 Lincoln St, Austin,TX,73301 +156675,Lightning Charging Cable,1,14.95,2019-02-06 12:36:00,720 Highland St, Boston,MA,02215 +156676,Wired Headphones,1,11.99,2019-02-22 22:53:00,106 Jefferson St, Atlanta,GA,30301 +156677,ThinkPad Laptop,1,999.99,2019-02-10 17:44:00,253 11th St, Los Angeles,CA,90001 +156678,Bose SoundSport Headphones,1,99.99,2019-02-12 17:36:00,602 Chestnut St, Seattle,WA,98101 +156679,AAA Batteries (4-pack),1,2.99,2019-02-28 22:42:00,622 Maple St, Atlanta,GA,30301 +156680,Bose SoundSport Headphones,1,99.99,2019-02-05 09:37:00,598 Walnut St, Boston,MA,02215 +156681,Vareebadd Phone,1,400.0,2019-02-22 18:54:00,302 Main St, Seattle,WA,98101 +156682,iPhone,1,700.0,2019-02-16 10:07:00,938 Forest St, Boston,MA,02215 +156682,Wired Headphones,1,11.99,2019-02-16 10:07:00,938 Forest St, Boston,MA,02215 +156683,Lightning Charging Cable,1,14.95,2019-02-02 13:03:00,774 Pine St, Boston,MA,02215 +156684,USB-C Charging Cable,1,11.95,2019-02-15 19:25:00,204 4th St, Los Angeles,CA,90001 +156685,Lightning Charging Cable,1,14.95,2019-02-24 17:53:00,529 Wilson St, Boston,MA,02215 +156686,AAA Batteries (4-pack),1,2.99,2019-02-07 11:47:00,487 Lakeview St, New York City,NY,10001 +156687,AAA Batteries (4-pack),2,2.99,2019-02-10 12:27:00,889 Johnson St, Austin,TX,73301 +156688,27in 4K Gaming Monitor,1,389.99,2019-02-21 11:44:00,212 Maple St, New York City,NY,10001 +156689,Wired Headphones,1,11.99,2019-02-18 13:03:00,915 Jefferson St, Portland,OR,97035 +156690,Wired Headphones,1,11.99,2019-02-02 20:57:00,456 Maple St, Boston,MA,02215 +156691,AA Batteries (4-pack),1,3.84,2019-02-26 22:04:00,260 5th St, Atlanta,GA,30301 +156692,AAA Batteries (4-pack),1,2.99,2019-02-11 18:57:00,155 Washington St, Los Angeles,CA,90001 +156693,Google Phone,1,600.0,2019-02-26 19:31:00,642 Center St, Seattle,WA,98101 +156694,27in 4K Gaming Monitor,1,389.99,2019-02-28 19:46:00,670 14th St, Atlanta,GA,30301 +156695,Vareebadd Phone,1,400.0,2019-02-02 10:06:00,340 4th St, San Francisco,CA,94016 +156696,Wired Headphones,1,11.99,2019-02-28 17:36:00,855 1st St, Seattle,WA,98101 +156697,Lightning Charging Cable,1,14.95,2019-02-19 00:44:00,343 Lakeview St, Los Angeles,CA,90001 +156698,ThinkPad Laptop,1,999.99,2019-02-23 13:01:00,817 Elm St, Los Angeles,CA,90001 +156699,AA Batteries (4-pack),1,3.84,2019-02-07 21:51:00,45 Madison St, Atlanta,GA,30301 +156700,27in FHD Monitor,1,149.99,2019-02-09 21:26:00,912 6th St, San Francisco,CA,94016 +156701,Macbook Pro Laptop,1,1700.0,2019-02-27 10:29:00,751 Willow St, Dallas,TX,75001 +156702,27in FHD Monitor,1,149.99,2019-02-11 07:37:00,982 Center St, Los Angeles,CA,90001 +156703,USB-C Charging Cable,1,11.95,2019-02-06 07:49:00,972 Adams St, Los Angeles,CA,90001 +156704,Apple Airpods Headphones,1,150.0,2019-02-16 12:19:00,899 Sunset St, San Francisco,CA,94016 +156705,AAA Batteries (4-pack),1,2.99,2019-02-13 18:36:00,386 Pine St, Portland,OR,97035 +156706,27in 4K Gaming Monitor,1,389.99,2019-02-13 21:12:00,540 Chestnut St, Portland,OR,97035 +156707,Lightning Charging Cable,1,14.95,2019-02-18 11:35:00,168 Sunset St, Portland,OR,97035 +156708,AAA Batteries (4-pack),2,2.99,2019-02-01 23:52:00,436 West St, Portland,OR,97035 +156709,Wired Headphones,2,11.99,2019-02-14 09:03:00,248 Sunset St, Austin,TX,73301 +156710,iPhone,1,700.0,2019-02-13 10:16:00,156 Jackson St, Dallas,TX,75001 +156711,ThinkPad Laptop,1,999.99,2019-02-04 19:29:00,159 10th St, Atlanta,GA,30301 +156712,USB-C Charging Cable,1,11.95,2019-02-08 12:21:00,992 Elm St, Los Angeles,CA,90001 +156713,USB-C Charging Cable,1,11.95,2019-02-27 15:23:00,590 Sunset St, Boston,MA,02215 +156714,iPhone,1,700.0,2019-02-20 22:17:00,420 Adams St, Seattle,WA,98101 +156715,Bose SoundSport Headphones,1,99.99,2019-02-01 21:32:00,620 Dogwood St, San Francisco,CA,94016 +156716,USB-C Charging Cable,1,11.95,2019-02-04 11:33:00,845 Hickory St, Los Angeles,CA,90001 +156717,AA Batteries (4-pack),1,3.84,2019-02-11 20:10:00,237 2nd St, Boston,MA,02215 +156718,Lightning Charging Cable,1,14.95,2019-02-17 05:56:00,426 Madison St, Los Angeles,CA,90001 +156719,Flatscreen TV,1,300.0,2019-02-28 18:25:00,498 8th St, San Francisco,CA,94016 +156720,Bose SoundSport Headphones,1,99.99,2019-02-23 23:27:00,989 Forest St, Seattle,WA,98101 +156721,AA Batteries (4-pack),2,3.84,2019-02-27 10:50:00,961 Forest St, Portland,OR,97035 +156722,27in FHD Monitor,1,149.99,2019-02-06 11:52:00,948 Lakeview St, Portland,OR,97035 +156722,Lightning Charging Cable,1,14.95,2019-02-06 11:52:00,948 Lakeview St, Portland,OR,97035 +156723,Wired Headphones,1,11.99,2019-02-01 16:40:00,829 Willow St, Boston,MA,02215 +156724,Lightning Charging Cable,1,14.95,2019-02-24 07:26:00,840 6th St, San Francisco,CA,94016 +156725,ThinkPad Laptop,1,999.99,2019-02-08 22:52:00,533 2nd St, Dallas,TX,75001 +156726,AAA Batteries (4-pack),2,2.99,2019-02-15 12:50:00,349 Cherry St, Portland,OR,97035 +156727,Wired Headphones,1,11.99,2019-02-17 22:35:00,182 Sunset St, San Francisco,CA,94016 +156728,Macbook Pro Laptop,1,1700.0,2019-02-24 20:40:00,73 Walnut St, Los Angeles,CA,90001 +156729,AAA Batteries (4-pack),2,2.99,2019-02-15 20:18:00,901 North St, Los Angeles,CA,90001 +156730,Lightning Charging Cable,1,14.95,2019-02-01 16:22:00,174 5th St, Portland,OR,97035 +156731,Lightning Charging Cable,1,14.95,2019-02-23 13:26:00,1 Spruce St, Los Angeles,CA,90001 +156732,AA Batteries (4-pack),1,3.84,2019-02-09 13:50:00,969 Church St, Dallas,TX,75001 +156733,AAA Batteries (4-pack),1,2.99,2019-02-17 15:29:00,557 Dogwood St, San Francisco,CA,94016 +156734,AA Batteries (4-pack),1,3.84,2019-02-12 13:18:00,217 Lincoln St, Los Angeles,CA,90001 +156735,Wired Headphones,1,11.99,2019-02-03 07:12:00,749 Lincoln St, Los Angeles,CA,90001 +156736,Wired Headphones,1,11.99,2019-02-21 20:12:00,920 12th St, San Francisco,CA,94016 +156737,Apple Airpods Headphones,1,150.0,2019-02-07 06:17:00,386 9th St, Dallas,TX,75001 +156738,27in FHD Monitor,1,149.99,2019-02-09 22:01:00,686 Jefferson St, Portland,OR,97035 +156739,USB-C Charging Cable,1,11.95,2019-02-12 22:10:00,372 Center St, Boston,MA,02215 +156740,Apple Airpods Headphones,1,150.0,2019-02-16 12:09:00,285 Chestnut St, Dallas,TX,75001 +156741,USB-C Charging Cable,1,11.95,2019-02-27 03:52:00,508 Jackson St, Austin,TX,73301 +156742,Apple Airpods Headphones,1,150.0,2019-02-19 13:05:00,113 North St, Portland,OR,97035 +156743,iPhone,1,700.0,2019-02-18 01:42:00,76 Highland St, New York City,NY,10001 +156744,USB-C Charging Cable,1,11.95,2019-02-18 17:38:00,928 Jackson St, New York City,NY,10001 +156745,ThinkPad Laptop,1,999.99,2019-02-18 13:32:00,509 8th St, Los Angeles,CA,90001 +156746,AA Batteries (4-pack),1,3.84,2019-02-12 21:27:00,313 Hill St, Seattle,WA,98101 +156747,Lightning Charging Cable,1,14.95,2019-02-27 01:09:00,505 Lake St, New York City,NY,10001 +156748,Bose SoundSport Headphones,1,99.99,2019-02-26 18:39:00,847 Highland St, Los Angeles,CA,90001 +156749,34in Ultrawide Monitor,1,379.99,2019-02-07 09:25:00,38 North St, New York City,NY,10001 +156750,Google Phone,1,600.0,2019-02-25 13:31:00,139 Elm St, Seattle,WA,98101 +156751,Apple Airpods Headphones,1,150.0,2019-02-26 23:35:00,745 Church St, San Francisco,CA,94016 +156752,USB-C Charging Cable,2,11.95,2019-02-14 11:53:00,155 Main St, New York City,NY,10001 +156753,Lightning Charging Cable,1,14.95,2019-02-11 12:12:00,978 Center St, Atlanta,GA,30301 +156754,AAA Batteries (4-pack),2,2.99,2019-02-24 09:54:00,337 12th St, Seattle,WA,98101 +156755,Macbook Pro Laptop,1,1700.0,2019-02-02 19:43:00,554 4th St, Seattle,WA,98101 +156756,USB-C Charging Cable,2,11.95,2019-02-02 13:00:00,498 2nd St, Los Angeles,CA,90001 +156757,USB-C Charging Cable,1,11.95,2019-02-21 16:53:00,25 Lakeview St, Dallas,TX,75001 +156758,27in FHD Monitor,1,149.99,2019-02-15 12:39:00,382 Lakeview St, Atlanta,GA,30301 +156759,Wired Headphones,2,11.99,2019-02-04 12:45:00,902 Jefferson St, Boston,MA,02215 +156760,Apple Airpods Headphones,1,150.0,2019-02-14 10:09:00,526 Maple St, San Francisco,CA,94016 +156761,iPhone,1,700.0,2019-02-24 11:58:00,430 Center St, Atlanta,GA,30301 +156762,Lightning Charging Cable,1,14.95,2019-02-01 16:29:00,350 Lakeview St, Seattle,WA,98101 +156763,Lightning Charging Cable,1,14.95,2019-02-18 19:05:00,599 Hill St, Los Angeles,CA,90001 +156764,USB-C Charging Cable,1,11.95,2019-02-08 12:33:00,819 Cherry St, Austin,TX,73301 +156765,LG Washing Machine,1,600.0,2019-02-11 20:49:00,626 Pine St, New York City,NY,10001 +156766,ThinkPad Laptop,1,999.99,2019-02-09 20:14:00,983 Willow St, Portland,OR,97035 +156767,27in FHD Monitor,1,149.99,2019-02-23 15:41:00,19 1st St, San Francisco,CA,94016 +156768,Lightning Charging Cable,1,14.95,2019-02-23 10:01:00,316 Hill St, Los Angeles,CA,90001 +156769,Lightning Charging Cable,1,14.95,2019-02-10 15:01:00,350 Hickory St, New York City,NY,10001 +156770,Wired Headphones,1,11.99,2019-02-20 11:32:00,962 Cherry St, San Francisco,CA,94016 +156771,Apple Airpods Headphones,1,150.0,2019-02-09 20:32:00,869 Highland St, San Francisco,CA,94016 +156772,27in 4K Gaming Monitor,1,389.99,2019-02-28 09:43:00,31 Cedar St, Los Angeles,CA,90001 +156773,Flatscreen TV,1,300.0,2019-02-26 20:43:00,291 Chestnut St, New York City,NY,10001 +156774,AAA Batteries (4-pack),1,2.99,2019-02-26 00:32:00,560 Ridge St, San Francisco,CA,94016 +156775,iPhone,1,700.0,2019-02-04 11:53:00,278 Main St, Atlanta,GA,30301 +156776,Wired Headphones,1,11.99,2019-02-04 16:01:00,72 Chestnut St, Seattle,WA,98101 +156777,AAA Batteries (4-pack),1,2.99,2019-02-04 14:11:00,252 South St, Seattle,WA,98101 +156778,AA Batteries (4-pack),2,3.84,2019-02-22 15:00:00,785 10th St, New York City,NY,10001 +156779,USB-C Charging Cable,1,11.95,2019-02-06 18:27:00,127 Hill St, Seattle,WA,98101 +156780,20in Monitor,1,109.99,2019-02-04 12:33:00,553 Jackson St, San Francisco,CA,94016 +156781,Apple Airpods Headphones,1,150.0,2019-02-14 07:41:00,98 Willow St, Seattle,WA,98101 +156782,27in FHD Monitor,1,149.99,2019-02-23 15:55:00,833 Lincoln St, San Francisco,CA,94016 +156783,AA Batteries (4-pack),1,3.84,2019-02-23 13:36:00,669 5th St, Seattle,WA,98101 +156784,27in 4K Gaming Monitor,1,389.99,2019-02-17 20:56:00,349 4th St, Boston,MA,02215 +156785,AA Batteries (4-pack),1,3.84,2019-02-15 11:27:00,78 Hickory St, Seattle,WA,98101 +156786,AAA Batteries (4-pack),2,2.99,2019-02-02 21:40:00,387 Hickory St, Austin,TX,73301 +156787,Wired Headphones,1,11.99,2019-02-24 09:31:00,343 Park St, Portland,OR,97035 +156788,AA Batteries (4-pack),3,3.84,2019-02-19 13:15:00,672 North St, Dallas,TX,75001 +156789,iPhone,1,700.0,2019-02-26 19:50:00,857 4th St, San Francisco,CA,94016 +156790,Bose SoundSport Headphones,1,99.99,2019-02-07 20:50:00,645 Cedar St, New York City,NY,10001 +156791,Wired Headphones,1,11.99,2019-02-27 13:57:00,234 Highland St, San Francisco,CA,94016 +156792,Wired Headphones,1,11.99,2019-02-23 19:31:00,368 North St, New York City,NY,10001 +156793,34in Ultrawide Monitor,1,379.99,2019-02-11 19:01:00,676 14th St, Seattle,WA,98101 +156794,27in FHD Monitor,1,149.99,2019-02-17 10:05:00,494 Lake St, New York City,NY,10001 +156795,Lightning Charging Cable,1,14.95,2019-02-16 21:53:00,102 Spruce St, San Francisco,CA,94016 +156796,AA Batteries (4-pack),1,3.84,2019-02-26 19:22:00,277 Madison St, San Francisco,CA,94016 +156797,27in 4K Gaming Monitor,1,389.99,2019-02-19 11:02:00,691 Hill St, San Francisco,CA,94016 +156798,Apple Airpods Headphones,1,150.0,2019-02-24 18:50:00,647 Forest St, Dallas,TX,75001 +156799,AAA Batteries (4-pack),2,2.99,2019-02-16 03:08:00,900 River St, New York City,NY,10001 +156800,AA Batteries (4-pack),2,3.84,2019-02-16 21:28:00,249 Jackson St, Atlanta,GA,30301 +156801,34in Ultrawide Monitor,1,379.99,2019-02-10 18:20:00,361 Johnson St, Los Angeles,CA,90001 +156802,AA Batteries (4-pack),1,3.84,2019-02-01 22:20:00,648 2nd St, New York City,NY,10001 +156803,34in Ultrawide Monitor,1,379.99,2019-02-01 20:15:00,989 10th St, San Francisco,CA,94016 +156804,Google Phone,1,600.0,2019-02-28 11:47:00,341 Church St, New York City,NY,10001 +156805,Wired Headphones,1,11.99,2019-02-22 06:39:00,559 Meadow St, San Francisco,CA,94016 +156806,USB-C Charging Cable,1,11.95,2019-02-13 17:11:00,810 Hickory St, Atlanta,GA,30301 +156807,Apple Airpods Headphones,1,150.0,2019-02-03 12:35:00,557 Walnut St, San Francisco,CA,94016 +156808,ThinkPad Laptop,1,999.99,2019-02-06 09:44:00,482 Dogwood St, San Francisco,CA,94016 +156809,Lightning Charging Cable,1,14.95,2019-02-14 09:29:00,96 2nd St, San Francisco,CA,94016 +156810,USB-C Charging Cable,1,11.95,2019-02-03 13:17:00,197 South St, San Francisco,CA,94016 +156811,Bose SoundSport Headphones,1,99.99,2019-02-19 19:36:00,898 Main St, San Francisco,CA,94016 +156812,LG Washing Machine,1,600.0,2019-02-13 20:59:00,709 Cherry St, Atlanta,GA,30301 +156813,USB-C Charging Cable,1,11.95,2019-02-21 08:08:00,404 Ridge St, San Francisco,CA,94016 +156814,27in FHD Monitor,1,149.99,2019-02-08 09:54:00,350 Washington St, New York City,NY,10001 +156815,AA Batteries (4-pack),1,3.84,2019-02-01 14:46:00,222 Pine St, New York City,NY,10001 +156816,Bose SoundSport Headphones,1,99.99,2019-02-24 09:14:00,382 Lincoln St, Los Angeles,CA,90001 +156817,Apple Airpods Headphones,1,150.0,2019-02-25 20:48:00,874 Chestnut St, Los Angeles,CA,90001 +156818,Lightning Charging Cable,1,14.95,2019-02-24 21:15:00,286 Cedar St, Boston,MA,02215 +156819,Bose SoundSport Headphones,1,99.99,2019-02-14 17:25:00,616 West St, San Francisco,CA,94016 +156820,Wired Headphones,1,11.99,2019-02-15 13:11:00,461 Adams St, San Francisco,CA,94016 +156821,Wired Headphones,1,11.99,2019-02-13 22:47:00,661 River St, San Francisco,CA,94016 +156822,ThinkPad Laptop,1,999.99,2019-02-24 08:29:00,617 11th St, Portland,OR,97035 +156823,Apple Airpods Headphones,1,150.0,2019-02-15 10:30:00,872 Meadow St, Portland,OR,97035 +156824,Apple Airpods Headphones,1,150.0,2019-02-22 16:11:00,903 Ridge St, Portland,ME,04101 +156825,AA Batteries (4-pack),1,3.84,2019-02-15 09:01:00,98 Lake St, Boston,MA,02215 +156826,27in FHD Monitor,1,149.99,2019-02-14 20:14:00,837 Main St, Los Angeles,CA,90001 +156827,27in 4K Gaming Monitor,1,389.99,2019-02-03 08:21:00,347 Wilson St, San Francisco,CA,94016 +156828,AA Batteries (4-pack),1,3.84,2019-02-22 08:11:00,515 Ridge St, Los Angeles,CA,90001 +156829,AAA Batteries (4-pack),2,2.99,2019-02-28 11:53:00,252 Maple St, Atlanta,GA,30301 +156830,ThinkPad Laptop,1,999.99,2019-02-06 12:56:00,808 Sunset St, Boston,MA,02215 +156831,Bose SoundSport Headphones,1,99.99,2019-02-11 13:45:00,785 Sunset St, Atlanta,GA,30301 +156832,Wired Headphones,1,11.99,2019-02-09 07:32:00,131 11th St, Dallas,TX,75001 +156833,Apple Airpods Headphones,1,150.0,2019-02-01 07:59:00,918 North St, San Francisco,CA,94016 +156834,27in FHD Monitor,1,149.99,2019-02-01 07:40:00,399 Park St, San Francisco,CA,94016 +156835,27in 4K Gaming Monitor,1,389.99,2019-02-19 16:28:00,410 Elm St, New York City,NY,10001 +156836,AAA Batteries (4-pack),1,2.99,2019-02-14 23:15:00,18 4th St, Seattle,WA,98101 +156837,AA Batteries (4-pack),1,3.84,2019-02-10 16:27:00,927 Hickory St, San Francisco,CA,94016 +156838,USB-C Charging Cable,1,11.95,2019-02-06 12:50:00,368 Lincoln St, Los Angeles,CA,90001 +156839,AAA Batteries (4-pack),1,2.99,2019-02-13 00:40:00,161 Lake St, Los Angeles,CA,90001 +156840,Wired Headphones,1,11.99,2019-02-14 18:09:00,667 Johnson St, Boston,MA,02215 +156841,Wired Headphones,1,11.99,2019-02-18 12:11:00,878 Lakeview St, Los Angeles,CA,90001 +156842,Apple Airpods Headphones,1,150.0,2019-02-14 16:54:00,348 Hickory St, New York City,NY,10001 +156843,USB-C Charging Cable,1,11.95,2019-02-01 12:05:00,784 Cedar St, Boston,MA,02215 +156844,Bose SoundSport Headphones,1,99.99,2019-02-27 05:34:00,360 Wilson St, New York City,NY,10001 +156845,AAA Batteries (4-pack),1,2.99,2019-02-18 21:17:00,192 8th St, Atlanta,GA,30301 +156846,Lightning Charging Cable,1,14.95,2019-02-11 07:20:00,558 Lake St, Los Angeles,CA,90001 +156847,27in 4K Gaming Monitor,1,389.99,2019-02-21 06:38:00,986 Cedar St, Los Angeles,CA,90001 +156848,Apple Airpods Headphones,1,150.0,2019-02-01 21:56:00,760 Sunset St, Los Angeles,CA,90001 +156849,Bose SoundSport Headphones,1,99.99,2019-02-01 16:19:00,217 Forest St, San Francisco,CA,94016 +156850,ThinkPad Laptop,1,999.99,2019-02-05 18:17:00,497 Madison St, New York City,NY,10001 +156851,Lightning Charging Cable,1,14.95,2019-02-21 20:25:00,851 Main St, Los Angeles,CA,90001 +156852,AA Batteries (4-pack),2,3.84,2019-02-14 13:37:00,96 Elm St, San Francisco,CA,94016 +156853,34in Ultrawide Monitor,1,379.99,2019-02-14 22:06:00,953 Forest St, Atlanta,GA,30301 +156854,34in Ultrawide Monitor,1,379.99,2019-02-03 15:45:00,177 6th St, Portland,OR,97035 +156855,AAA Batteries (4-pack),2,2.99,2019-02-23 14:02:00,248 5th St, Dallas,TX,75001 +156856,AAA Batteries (4-pack),2,2.99,2019-02-25 12:03:00,242 2nd St, Los Angeles,CA,90001 +156857,AAA Batteries (4-pack),2,2.99,2019-02-26 01:33:00,161 Jefferson St, San Francisco,CA,94016 +156858,Lightning Charging Cable,1,14.95,2019-02-17 09:54:00,442 5th St, New York City,NY,10001 +156859,USB-C Charging Cable,1,11.95,2019-02-11 13:43:00,499 South St, Austin,TX,73301 +156860,ThinkPad Laptop,1,999.99,2019-02-08 01:50:00,662 Elm St, Dallas,TX,75001 +156861,AA Batteries (4-pack),1,3.84,2019-02-04 19:03:00,852 13th St, San Francisco,CA,94016 +156862,AAA Batteries (4-pack),1,2.99,2019-02-20 16:04:00,96 Jackson St, San Francisco,CA,94016 +156863,Vareebadd Phone,1,400.0,2019-02-14 00:41:00,350 1st St, Los Angeles,CA,90001 +156863,Wired Headphones,1,11.99,2019-02-14 00:41:00,350 1st St, Los Angeles,CA,90001 +156864,AA Batteries (4-pack),1,3.84,2019-02-27 13:02:00,670 10th St, San Francisco,CA,94016 +156865,AA Batteries (4-pack),1,3.84,2019-02-02 19:49:00,657 River St, San Francisco,CA,94016 +156866,Apple Airpods Headphones,1,150.0,2019-02-21 22:58:00,700 14th St, Austin,TX,73301 +156867,Lightning Charging Cable,1,14.95,2019-02-22 10:04:00,906 Lakeview St, New York City,NY,10001 +156868,AA Batteries (4-pack),3,3.84,2019-02-25 20:02:00,923 Hickory St, San Francisco,CA,94016 +156869,Apple Airpods Headphones,1,150.0,2019-02-19 20:58:00,599 Willow St, Seattle,WA,98101 +156870,Apple Airpods Headphones,1,150.0,2019-02-09 13:16:00,526 2nd St, Boston,MA,02215 +156871,USB-C Charging Cable,1,11.95,2019-02-16 13:38:00,844 Park St, New York City,NY,10001 +156872,Apple Airpods Headphones,1,150.0,2019-02-15 00:04:00,828 Main St, San Francisco,CA,94016 +156873,USB-C Charging Cable,1,11.95,2019-02-23 19:34:00,540 1st St, Boston,MA,02215 +156874,Bose SoundSport Headphones,1,99.99,2019-02-24 17:01:00,459 4th St, Dallas,TX,75001 +156875,AA Batteries (4-pack),2,3.84,2019-02-06 13:58:00,41 Maple St, Atlanta,GA,30301 +156876,27in FHD Monitor,1,149.99,2019-02-23 18:04:00,742 Willow St, San Francisco,CA,94016 +156877,AA Batteries (4-pack),3,3.84,2019-02-10 16:27:00,136 6th St, Seattle,WA,98101 +156878,34in Ultrawide Monitor,1,379.99,2019-02-23 20:29:00,506 Ridge St, Atlanta,GA,30301 +156879,USB-C Charging Cable,1,11.95,2019-02-24 21:06:00,146 2nd St, Austin,TX,73301 +156880,Bose SoundSport Headphones,1,99.99,2019-02-18 19:17:00,920 Dogwood St, Boston,MA,02215 +156881,iPhone,1,700.0,2019-02-10 23:38:00,98 Ridge St, Austin,TX,73301 +156881,Lightning Charging Cable,1,14.95,2019-02-10 23:38:00,98 Ridge St, Austin,TX,73301 +156882,Lightning Charging Cable,1,14.95,2019-02-14 09:38:00,612 Main St, Portland,OR,97035 +156883,Lightning Charging Cable,1,14.95,2019-02-03 07:52:00,949 11th St, Atlanta,GA,30301 +156884,Lightning Charging Cable,1,14.95,2019-02-12 07:13:00,314 Lakeview St, San Francisco,CA,94016 +156885,USB-C Charging Cable,1,11.95,2019-02-07 17:48:00,277 Elm St, New York City,NY,10001 +156886,LG Washing Machine,1,600.0,2019-02-02 16:36:00,599 Lakeview St, Dallas,TX,75001 +156887,Lightning Charging Cable,1,14.95,2019-02-06 10:46:00,372 Willow St, Atlanta,GA,30301 +156888,USB-C Charging Cable,1,11.95,2019-02-13 08:55:00,117 Jefferson St, New York City,NY,10001 +156889,USB-C Charging Cable,1,11.95,2019-02-01 04:25:00,703 9th St, Los Angeles,CA,90001 +156890,Apple Airpods Headphones,1,150.0,2019-02-08 09:52:00,229 Lake St, Portland,OR,97035 +156891,USB-C Charging Cable,1,11.95,2019-02-07 08:16:00,182 Hill St, Atlanta,GA,30301 +156892,34in Ultrawide Monitor,1,379.99,2019-02-20 18:09:00,405 Wilson St, Los Angeles,CA,90001 +156893,Apple Airpods Headphones,1,150.0,2019-02-21 21:12:00,97 Johnson St, Boston,MA,02215 +156894,Apple Airpods Headphones,1,150.0,2019-02-26 14:19:00,749 Main St, New York City,NY,10001 +156895,Wired Headphones,1,11.99,2019-02-12 14:59:00,108 Sunset St, San Francisco,CA,94016 +156896,Bose SoundSport Headphones,1,99.99,2019-02-16 17:05:00,127 Pine St, Boston,MA,02215 +156897,AAA Batteries (4-pack),1,2.99,2019-02-07 09:21:00,389 Jackson St, Boston,MA,02215 +156897,Lightning Charging Cable,1,14.95,2019-02-07 09:21:00,389 Jackson St, Boston,MA,02215 +156898,Wired Headphones,1,11.99,2019-02-14 15:39:00,290 Wilson St, Dallas,TX,75001 +156898,Lightning Charging Cable,1,14.95,2019-02-14 15:39:00,290 Wilson St, Dallas,TX,75001 +156899,Flatscreen TV,1,300.0,2019-02-23 22:54:00,939 5th St, San Francisco,CA,94016 +156900,Wired Headphones,1,11.99,2019-02-28 22:06:00,926 Cherry St, San Francisco,CA,94016 +156901,20in Monitor,1,109.99,2019-02-02 16:34:00,270 Adams St, New York City,NY,10001 +156902,AA Batteries (4-pack),1,3.84,2019-02-28 14:35:00,601 West St, New York City,NY,10001 +156903,USB-C Charging Cable,1,11.95,2019-02-10 10:59:00,462 Madison St, Atlanta,GA,30301 +156904,iPhone,1,700.0,2019-02-13 20:43:00,264 Park St, Boston,MA,02215 +156904,Apple Airpods Headphones,1,150.0,2019-02-13 20:43:00,264 Park St, Boston,MA,02215 +156905,Wired Headphones,1,11.99,2019-02-05 11:18:00,622 Cedar St, San Francisco,CA,94016 +156906,Wired Headphones,1,11.99,2019-02-04 09:08:00,577 Cherry St, San Francisco,CA,94016 +156907,ThinkPad Laptop,1,999.99,2019-02-22 22:48:00,398 Chestnut St, Atlanta,GA,30301 +156908,34in Ultrawide Monitor,1,379.99,2019-02-28 10:41:00,418 Meadow St, Los Angeles,CA,90001 +156909,AAA Batteries (4-pack),1,2.99,2019-02-10 13:24:00,464 Wilson St, Los Angeles,CA,90001 +156909,Wired Headphones,1,11.99,2019-02-10 13:24:00,464 Wilson St, Los Angeles,CA,90001 +156910,34in Ultrawide Monitor,1,379.99,2019-02-10 14:45:00,249 11th St, Portland,OR,97035 +156911,Apple Airpods Headphones,1,150.0,2019-02-19 09:06:00,60 5th St, Portland,OR,97035 +156912,27in FHD Monitor,1,149.99,2019-02-09 00:01:00,495 5th St, Seattle,WA,98101 +156913,34in Ultrawide Monitor,1,379.99,2019-02-27 16:54:00,333 Maple St, Portland,OR,97035 +156914,AA Batteries (4-pack),1,3.84,2019-02-21 20:29:00,224 Jackson St, San Francisco,CA,94016 +156914,USB-C Charging Cable,1,11.95,2019-02-21 20:29:00,224 Jackson St, San Francisco,CA,94016 +156915,ThinkPad Laptop,1,999.99,2019-02-21 17:29:00,734 Church St, San Francisco,CA,94016 +156916,Lightning Charging Cable,1,14.95,2019-02-08 12:14:00,145 Madison St, San Francisco,CA,94016 +156917,27in FHD Monitor,1,149.99,2019-02-11 21:16:00,197 Wilson St, San Francisco,CA,94016 +156918,Wired Headphones,1,11.99,2019-02-11 19:00:00,882 Elm St, Portland,OR,97035 +156919,AAA Batteries (4-pack),1,2.99,2019-02-19 17:03:00,924 Willow St, New York City,NY,10001 +156920,USB-C Charging Cable,1,11.95,2019-02-26 16:37:00,632 West St, Los Angeles,CA,90001 +156921,Lightning Charging Cable,1,14.95,2019-02-22 13:12:00,410 2nd St, Austin,TX,73301 +156922,USB-C Charging Cable,1,11.95,2019-02-14 20:36:00,450 Highland St, New York City,NY,10001 +156923,Wired Headphones,1,11.99,2019-02-11 10:11:00,408 Hill St, Dallas,TX,75001 +156924,Apple Airpods Headphones,1,150.0,2019-02-04 01:37:00,473 Elm St, San Francisco,CA,94016 +156925,Wired Headphones,1,11.99,2019-02-25 17:18:00,119 9th St, Los Angeles,CA,90001 +156926,AA Batteries (4-pack),1,3.84,2019-02-13 10:11:00,448 6th St, San Francisco,CA,94016 +156927,AAA Batteries (4-pack),2,2.99,2019-02-06 12:23:00,934 Hickory St, Dallas,TX,75001 +156928,Lightning Charging Cable,1,14.95,2019-02-21 10:19:00,760 2nd St, Austin,TX,73301 +156929,Apple Airpods Headphones,1,150.0,2019-02-20 21:55:00,343 9th St, Boston,MA,02215 +156930,USB-C Charging Cable,1,11.95,2019-02-13 09:10:00,14 10th St, Dallas,TX,75001 +156931,AAA Batteries (4-pack),1,2.99,2019-02-10 14:28:00,873 12th St, Los Angeles,CA,90001 +156932,Google Phone,1,600.0,2019-02-26 05:45:00,143 Park St, San Francisco,CA,94016 +156932,USB-C Charging Cable,1,11.95,2019-02-26 05:45:00,143 Park St, San Francisco,CA,94016 +156933,iPhone,1,700.0,2019-02-26 20:56:00,2 12th St, Austin,TX,73301 +156934,Wired Headphones,1,11.99,2019-02-21 20:32:00,636 14th St, Los Angeles,CA,90001 +156935,AA Batteries (4-pack),1,3.84,2019-02-04 19:48:00,593 6th St, San Francisco,CA,94016 +156936,USB-C Charging Cable,1,11.95,2019-02-12 19:12:00,990 Hill St, San Francisco,CA,94016 +156937,AA Batteries (4-pack),1,3.84,2019-02-25 16:18:00,597 Jackson St, Los Angeles,CA,90001 +156938,Google Phone,1,600.0,2019-02-05 16:59:00,880 Dogwood St, San Francisco,CA,94016 +156939,Bose SoundSport Headphones,1,99.99,2019-02-13 16:48:00,898 Church St, Seattle,WA,98101 +156940,20in Monitor,1,109.99,2019-02-09 21:03:00,617 11th St, New York City,NY,10001 +156941,USB-C Charging Cable,1,11.95,2019-02-06 11:12:00,258 1st St, Seattle,WA,98101 +156942,AA Batteries (4-pack),1,3.84,2019-02-21 08:03:00,869 Ridge St, Los Angeles,CA,90001 +156943,Wired Headphones,1,11.99,2019-02-16 20:54:00,446 Main St, Seattle,WA,98101 +156944,AAA Batteries (4-pack),3,2.99,2019-02-10 14:53:00,182 Church St, Boston,MA,02215 +156945,Apple Airpods Headphones,1,150.0,2019-02-22 12:19:00,349 14th St, Portland,OR,97035 +156946,Google Phone,1,600.0,2019-02-11 17:15:00,183 Jefferson St, New York City,NY,10001 +156947,Lightning Charging Cable,1,14.95,2019-02-28 13:22:00,845 14th St, Portland,OR,97035 +156948,Apple Airpods Headphones,1,150.0,2019-02-03 15:45:00,217 South St, Los Angeles,CA,90001 +156949,Wired Headphones,1,11.99,2019-02-06 10:41:00,580 Pine St, Atlanta,GA,30301 +156950,Google Phone,1,600.0,2019-02-04 08:33:00,549 Main St, San Francisco,CA,94016 +156950,Wired Headphones,1,11.99,2019-02-04 08:33:00,549 Main St, San Francisco,CA,94016 +156951,USB-C Charging Cable,2,11.95,2019-02-15 18:58:00,748 Main St, Boston,MA,02215 +156952,Wired Headphones,1,11.99,2019-02-14 16:27:00,542 2nd St, San Francisco,CA,94016 +156953,iPhone,1,700.0,2019-02-15 02:36:00,409 Maple St, San Francisco,CA,94016 +156954,AAA Batteries (4-pack),1,2.99,2019-02-13 13:13:00,719 Main St, New York City,NY,10001 +156955,AAA Batteries (4-pack),1,2.99,2019-02-25 21:30:00,554 11th St, Atlanta,GA,30301 +156956,iPhone,1,700.0,2019-02-12 09:52:00,155 Lakeview St, San Francisco,CA,94016 +156956,Apple Airpods Headphones,1,150.0,2019-02-12 09:52:00,155 Lakeview St, San Francisco,CA,94016 +156957,Lightning Charging Cable,1,14.95,2019-02-11 17:07:00,804 Cedar St, San Francisco,CA,94016 +156958,Google Phone,1,600.0,2019-02-19 18:56:00,472 Walnut St, Portland,OR,97035 +156959,USB-C Charging Cable,1,11.95,2019-02-27 17:49:00,755 12th St, Dallas,TX,75001 +156960,Macbook Pro Laptop,1,1700.0,2019-02-02 08:19:00,527 Lincoln St, New York City,NY,10001 +156961,Lightning Charging Cable,1,14.95,2019-02-15 11:12:00,951 8th St, San Francisco,CA,94016 +156962,AA Batteries (4-pack),1,3.84,2019-02-04 11:29:00,190 Wilson St, Portland,OR,97035 +156963,iPhone,1,700.0,2019-02-01 14:32:00,57 Cherry St, Portland,OR,97035 +156964,Wired Headphones,1,11.99,2019-02-07 00:46:00,213 Main St, Los Angeles,CA,90001 +156965,Bose SoundSport Headphones,1,99.99,2019-02-24 21:09:00,967 6th St, New York City,NY,10001 +156966,iPhone,1,700.0,2019-02-16 22:47:00,562 10th St, Boston,MA,02215 +156967,Lightning Charging Cable,1,14.95,2019-02-24 22:46:00,947 Cedar St, New York City,NY,10001 +156968,USB-C Charging Cable,1,11.95,2019-02-08 17:38:00,385 Dogwood St, San Francisco,CA,94016 +156969,Bose SoundSport Headphones,1,99.99,2019-02-04 18:42:00,565 Adams St, San Francisco,CA,94016 +156970,AAA Batteries (4-pack),1,2.99,2019-02-27 18:49:00,839 North St, Boston,MA,02215 +156971,AA Batteries (4-pack),1,3.84,2019-02-11 16:46:00,157 Meadow St, Dallas,TX,75001 +156972,Lightning Charging Cable,1,14.95,2019-02-01 20:04:00,769 Spruce St, San Francisco,CA,94016 +156973,LG Dryer,1,600.0,2019-02-25 14:18:00,538 Jackson St, San Francisco,CA,94016 +156974,AAA Batteries (4-pack),1,2.99,2019-02-28 19:26:00,52 Dogwood St, Los Angeles,CA,90001 +156975,27in 4K Gaming Monitor,1,389.99,2019-02-18 16:14:00,315 Lincoln St, Los Angeles,CA,90001 +156976,AA Batteries (4-pack),1,3.84,2019-02-08 00:52:00,551 Wilson St, San Francisco,CA,94016 +156977,AA Batteries (4-pack),2,3.84,2019-02-14 16:50:00,902 Hickory St, Portland,ME,04101 +156978,USB-C Charging Cable,1,11.95,2019-02-11 16:15:00,988 South St, Los Angeles,CA,90001 +156979,Apple Airpods Headphones,1,150.0,2019-02-07 19:10:00,547 Chestnut St, New York City,NY,10001 +156980,Apple Airpods Headphones,1,150.0,2019-02-15 17:31:00,76 Walnut St, San Francisco,CA,94016 +156981,iPhone,1,700.0,2019-02-19 12:07:00,430 Cherry St, New York City,NY,10001 +156981,Lightning Charging Cable,1,14.95,2019-02-19 12:07:00,430 Cherry St, New York City,NY,10001 +156982,Apple Airpods Headphones,1,150.0,2019-02-11 14:33:00,838 4th St, New York City,NY,10001 +156983,USB-C Charging Cable,1,11.95,2019-02-13 19:35:00,667 Johnson St, New York City,NY,10001 +156984,Wired Headphones,1,11.99,2019-02-25 04:38:00,397 9th St, San Francisco,CA,94016 +156985,USB-C Charging Cable,2,11.95,2019-02-10 17:51:00,523 Maple St, New York City,NY,10001 +156986,Wired Headphones,1,11.99,2019-02-24 18:49:00,479 Jackson St, San Francisco,CA,94016 +156987,Google Phone,1,600.0,2019-02-11 19:05:00,626 4th St, Atlanta,GA,30301 +156988,AA Batteries (4-pack),1,3.84,2019-02-17 20:28:00,902 Ridge St, New York City,NY,10001 +156989,AAA Batteries (4-pack),2,2.99,2019-02-25 18:03:00,330 South St, Atlanta,GA,30301 +156990,Wired Headphones,1,11.99,2019-02-08 15:31:00,154 Madison St, Austin,TX,73301 +156991,Lightning Charging Cable,1,14.95,2019-02-12 22:55:00,274 Hill St, New York City,NY,10001 +156992,Google Phone,1,600.0,2019-02-27 13:01:00,257 West St, San Francisco,CA,94016 +156992,Bose SoundSport Headphones,1,99.99,2019-02-27 13:01:00,257 West St, San Francisco,CA,94016 +156993,Apple Airpods Headphones,1,150.0,2019-02-16 13:35:00,147 Adams St, New York City,NY,10001 +156994,Lightning Charging Cable,2,14.95,2019-02-21 20:39:00,954 Meadow St, San Francisco,CA,94016 +156995,LG Washing Machine,1,600.0,2019-02-20 19:47:00,553 Willow St, Austin,TX,73301 +156996,27in FHD Monitor,1,149.99,2019-02-21 10:10:00,266 Pine St, San Francisco,CA,94016 +156997,Apple Airpods Headphones,1,150.0,2019-02-21 10:32:00,283 Meadow St, Boston,MA,02215 +156998,Google Phone,1,600.0,2019-02-12 15:23:00,225 8th St, Los Angeles,CA,90001 +156998,Wired Headphones,1,11.99,2019-02-12 15:23:00,225 8th St, Los Angeles,CA,90001 +156999,USB-C Charging Cable,1,11.95,2019-02-22 20:18:00,203 South St, Los Angeles,CA,90001 +157000,ThinkPad Laptop,1,999.99,2019-02-21 12:35:00,269 Forest St, Dallas,TX,75001 +157001,AAA Batteries (4-pack),1,2.99,2019-02-04 08:16:00,534 5th St, San Francisco,CA,94016 +157002,Bose SoundSport Headphones,1,99.99,2019-02-08 19:08:00,508 Jefferson St, Atlanta,GA,30301 +157002,USB-C Charging Cable,1,11.95,2019-02-08 19:08:00,508 Jefferson St, Atlanta,GA,30301 +157003,34in Ultrawide Monitor,1,379.99,2019-02-22 17:49:00,239 Main St, Boston,MA,02215 +157004,AAA Batteries (4-pack),1,2.99,2019-02-14 20:26:00,517 4th St, Austin,TX,73301 +157005,Lightning Charging Cable,1,14.95,2019-02-12 19:39:00,146 Jackson St, New York City,NY,10001 +157006,iPhone,1,700.0,2019-02-03 00:10:00,953 12th St, New York City,NY,10001 +157007,Bose SoundSport Headphones,1,99.99,2019-02-03 16:51:00,826 Washington St, San Francisco,CA,94016 +157008,iPhone,1,700.0,2019-02-19 11:19:00,79 Church St, San Francisco,CA,94016 +157008,USB-C Charging Cable,1,11.95,2019-02-19 11:19:00,79 Church St, San Francisco,CA,94016 +157009,AA Batteries (4-pack),2,3.84,2019-02-07 16:48:00,652 Jackson St, Los Angeles,CA,90001 +157010,AA Batteries (4-pack),1,3.84,2019-02-08 22:21:00,862 8th St, San Francisco,CA,94016 +157011,Vareebadd Phone,1,400.0,2019-02-18 11:32:00,290 6th St, Portland,ME,04101 +157012,USB-C Charging Cable,1,11.95,2019-02-22 18:09:00,59 Cedar St, San Francisco,CA,94016 +157013,USB-C Charging Cable,1,11.95,2019-02-13 12:07:00,243 West St, Boston,MA,02215 +157014,Flatscreen TV,1,300.0,2019-02-05 19:08:00,435 Chestnut St, New York City,NY,10001 +157015,AAA Batteries (4-pack),1,2.99,2019-02-05 09:51:00,437 Highland St, New York City,NY,10001 +157016,Bose SoundSport Headphones,1,99.99,2019-02-15 12:09:00,939 Lincoln St, Boston,MA,02215 +157017,Bose SoundSport Headphones,1,99.99,2019-02-09 07:51:00,768 Spruce St, Los Angeles,CA,90001 +157018,Lightning Charging Cable,1,14.95,2019-02-22 03:31:00,278 10th St, Portland,OR,97035 +157019,USB-C Charging Cable,1,11.95,2019-02-07 20:38:00,263 4th St, Portland,ME,04101 +157020,AAA Batteries (4-pack),3,2.99,2019-02-19 09:26:00,179 Main St, Dallas,TX,75001 +157021,Google Phone,1,600.0,2019-02-14 15:52:00,483 11th St, New York City,NY,10001 +157022,USB-C Charging Cable,1,11.95,2019-02-20 17:05:00,718 Jackson St, Los Angeles,CA,90001 +157023,27in FHD Monitor,1,149.99,2019-02-17 19:39:00,960 Ridge St, New York City,NY,10001 +157024,Lightning Charging Cable,1,14.95,2019-02-07 19:50:00,116 7th St, New York City,NY,10001 +157025,AA Batteries (4-pack),2,3.84,2019-02-23 19:51:00,73 11th St, San Francisco,CA,94016 +157026,Bose SoundSport Headphones,1,99.99,2019-02-05 08:58:00,781 11th St, Seattle,WA,98101 +157027,AAA Batteries (4-pack),1,2.99,2019-02-22 11:01:00,576 Park St, Dallas,TX,75001 +157028,AAA Batteries (4-pack),1,2.99,2019-02-05 19:43:00,862 7th St, Los Angeles,CA,90001 +157029,Wired Headphones,2,11.99,2019-02-20 22:40:00,459 Sunset St, Los Angeles,CA,90001 +157030,Bose SoundSport Headphones,1,99.99,2019-02-10 08:16:00,50 Pine St, Boston,MA,02215 +157031,Wired Headphones,1,11.99,2019-02-10 10:40:00,648 Jackson St, Los Angeles,CA,90001 +157032,Bose SoundSport Headphones,1,99.99,2019-02-03 17:49:00,652 11th St, Los Angeles,CA,90001 +157033,LG Washing Machine,1,600.0,2019-02-17 14:08:00,620 North St, Austin,TX,73301 +157034,Bose SoundSport Headphones,1,99.99,2019-02-24 05:27:00,683 Jefferson St, Atlanta,GA,30301 +157035,27in FHD Monitor,1,149.99,2019-02-22 13:56:00,647 7th St, Portland,OR,97035 +157036,34in Ultrawide Monitor,1,379.99,2019-02-17 20:07:00,767 Willow St, Atlanta,GA,30301 +157037,AAA Batteries (4-pack),1,2.99,2019-02-28 18:27:00,73 8th St, Boston,MA,02215 +157038,USB-C Charging Cable,1,11.95,2019-02-02 19:29:00,975 13th St, Boston,MA,02215 +157039,27in 4K Gaming Monitor,1,389.99,2019-02-07 17:23:00,313 4th St, Los Angeles,CA,90001 +157040,USB-C Charging Cable,1,11.95,2019-02-19 13:10:00,241 11th St, Dallas,TX,75001 +157041,27in FHD Monitor,1,149.99,2019-02-16 09:07:00,99 Sunset St, Dallas,TX,75001 +157042,Lightning Charging Cable,1,14.95,2019-02-01 12:40:00,762 Lakeview St, Seattle,WA,98101 +157043,USB-C Charging Cable,1,11.95,2019-02-23 19:26:00,474 Adams St, New York City,NY,10001 +157044,Bose SoundSport Headphones,1,99.99,2019-02-21 18:43:00,986 Adams St, Boston,MA,02215 +157045,27in FHD Monitor,1,149.99,2019-02-27 14:37:00,392 Willow St, Dallas,TX,75001 +157046,27in FHD Monitor,1,149.99,2019-02-26 23:30:00,643 13th St, New York City,NY,10001 +157047,Lightning Charging Cable,1,14.95,2019-02-15 04:11:00,265 Pine St, Los Angeles,CA,90001 +157048,Wired Headphones,1,11.99,2019-02-02 20:15:00,425 Highland St, San Francisco,CA,94016 +157049,Bose SoundSport Headphones,1,99.99,2019-02-21 04:26:00,47 Hickory St, Los Angeles,CA,90001 +157050,Bose SoundSport Headphones,1,99.99,2019-02-13 17:19:00,405 11th St, New York City,NY,10001 +157051,Apple Airpods Headphones,1,150.0,2019-02-09 16:08:00,549 10th St, Los Angeles,CA,90001 +157052,Lightning Charging Cable,1,14.95,2019-02-18 06:47:00,797 Center St, New York City,NY,10001 +157053,AAA Batteries (4-pack),2,2.99,2019-02-05 15:42:00,937 Center St, Atlanta,GA,30301 +157054,AA Batteries (4-pack),2,3.84,2019-02-18 10:17:00,851 North St, Boston,MA,02215 +157055,27in FHD Monitor,1,149.99,2019-02-28 13:03:00,517 9th St, Seattle,WA,98101 +157056,Lightning Charging Cable,1,14.95,2019-02-17 11:05:00,943 10th St, Boston,MA,02215 +157057,AAA Batteries (4-pack),1,2.99,2019-02-19 07:26:00,120 Dogwood St, Boston,MA,02215 +157058,Macbook Pro Laptop,1,1700.0,2019-02-18 10:44:00,921 6th St, San Francisco,CA,94016 +157059,Bose SoundSport Headphones,1,99.99,2019-02-24 05:35:00,652 7th St, San Francisco,CA,94016 +157060,AAA Batteries (4-pack),2,2.99,2019-02-28 13:25:00,509 6th St, San Francisco,CA,94016 +157061,AAA Batteries (4-pack),1,2.99,2019-02-14 08:12:00,42 Forest St, Los Angeles,CA,90001 +157062,USB-C Charging Cable,1,11.95,2019-02-23 18:47:00,770 North St, Portland,OR,97035 +157063,Macbook Pro Laptop,1,1700.0,2019-02-15 17:21:00,964 Elm St, Seattle,WA,98101 +157064,Bose SoundSport Headphones,1,99.99,2019-02-08 17:44:00,646 Washington St, Los Angeles,CA,90001 +157065,AA Batteries (4-pack),1,3.84,2019-02-20 12:41:00,119 2nd St, San Francisco,CA,94016 +157066,27in FHD Monitor,1,149.99,2019-02-01 09:43:00,535 Adams St, San Francisco,CA,94016 +157067,Flatscreen TV,1,300.0,2019-02-01 17:19:00,938 8th St, Portland,ME,04101 +157068,Lightning Charging Cable,1,14.95,2019-02-18 12:27:00,518 West St, Austin,TX,73301 +157069,USB-C Charging Cable,1,11.95,2019-02-11 08:16:00,428 Maple St, Atlanta,GA,30301 +157070,20in Monitor,1,109.99,2019-02-17 11:35:00,105 Lakeview St, Seattle,WA,98101 +157071,20in Monitor,1,109.99,2019-02-27 11:09:00,527 10th St, San Francisco,CA,94016 +157072,Vareebadd Phone,1,400.0,2019-02-07 14:54:00,542 Hill St, San Francisco,CA,94016 +157072,USB-C Charging Cable,1,11.95,2019-02-07 14:54:00,542 Hill St, San Francisco,CA,94016 +157072,Wired Headphones,1,11.99,2019-02-07 14:54:00,542 Hill St, San Francisco,CA,94016 +157073,Bose SoundSport Headphones,1,99.99,2019-02-07 22:12:00,130 Jefferson St, Dallas,TX,75001 +157074,Wired Headphones,1,11.99,2019-02-13 16:33:00,375 Spruce St, Austin,TX,73301 +157075,Flatscreen TV,1,300.0,2019-02-17 11:05:00,862 Park St, Atlanta,GA,30301 +157076,Apple Airpods Headphones,1,150.0,2019-02-17 14:00:00,328 Meadow St, New York City,NY,10001 +157077,20in Monitor,1,109.99,2019-02-11 07:33:00,268 River St, Boston,MA,02215 +157078,iPhone,1,700.0,2019-02-21 05:33:00,452 Pine St, Los Angeles,CA,90001 +157079,AAA Batteries (4-pack),4,2.99,2019-02-11 13:21:00,689 7th St, New York City,NY,10001 +157080,Bose SoundSport Headphones,1,99.99,2019-02-13 18:12:00,154 Adams St, Seattle,WA,98101 +157081,27in FHD Monitor,1,149.99,2019-02-19 22:34:00,408 Wilson St, San Francisco,CA,94016 +157082,USB-C Charging Cable,1,11.95,2019-02-27 21:12:00,148 Hickory St, Atlanta,GA,30301 +157083,iPhone,1,700.0,2019-02-25 18:24:00,824 Jefferson St, Portland,ME,04101 +157084,AAA Batteries (4-pack),3,2.99,2019-02-25 13:30:00,124 Chestnut St, Seattle,WA,98101 +157085,Apple Airpods Headphones,1,150.0,2019-02-27 12:43:00,292 Hickory St, Austin,TX,73301 +157086,Apple Airpods Headphones,1,150.0,2019-02-23 05:49:00,513 Main St, Seattle,WA,98101 +157087,Wired Headphones,1,11.99,2019-02-26 16:06:00,285 Lake St, Portland,OR,97035 +157088,USB-C Charging Cable,2,11.95,2019-02-20 01:40:00,521 Walnut St, San Francisco,CA,94016 +157089,27in FHD Monitor,1,149.99,2019-02-26 18:29:00,522 Ridge St, Los Angeles,CA,90001 +157090,AAA Batteries (4-pack),2,2.99,2019-02-20 18:35:00,552 Maple St, San Francisco,CA,94016 +157091,Apple Airpods Headphones,1,150.0,2019-02-27 07:22:00,226 Dogwood St, San Francisco,CA,94016 +157092,Apple Airpods Headphones,1,150.0,2019-02-26 20:59:00,505 Washington St, Portland,OR,97035 +157093,27in FHD Monitor,1,149.99,2019-02-16 22:47:00,268 Lincoln St, New York City,NY,10001 +157094,Lightning Charging Cable,1,14.95,2019-02-05 16:38:00,117 Johnson St, New York City,NY,10001 +157095,Lightning Charging Cable,1,14.95,2019-02-02 18:06:00,227 2nd St, Boston,MA,02215 +157096,USB-C Charging Cable,1,11.95,2019-02-12 21:50:00,416 11th St, San Francisco,CA,94016 +157097,Lightning Charging Cable,1,14.95,2019-02-17 10:30:00,441 Cherry St, Boston,MA,02215 +157098,Macbook Pro Laptop,1,1700.0,2019-02-02 23:20:00,514 Cherry St, Austin,TX,73301 +157099,Google Phone,1,600.0,2019-02-01 16:27:00,605 1st St, New York City,NY,10001 +157099,USB-C Charging Cable,1,11.95,2019-02-01 16:27:00,605 1st St, New York City,NY,10001 +157100,Macbook Pro Laptop,1,1700.0,2019-02-06 21:37:00,230 Adams St, San Francisco,CA,94016 +157101,27in FHD Monitor,1,149.99,2019-02-03 15:48:00,542 2nd St, San Francisco,CA,94016 +157102,Google Phone,1,600.0,2019-02-12 23:14:00,258 Dogwood St, Dallas,TX,75001 +157102,USB-C Charging Cable,1,11.95,2019-02-12 23:14:00,258 Dogwood St, Dallas,TX,75001 +157103,AAA Batteries (4-pack),1,2.99,2019-02-18 07:28:00,600 9th St, New York City,NY,10001 +157104,ThinkPad Laptop,1,999.99,2019-02-09 22:06:00,160 10th St, San Francisco,CA,94016 +157105,Lightning Charging Cable,1,14.95,2019-02-23 14:12:00,527 River St, Atlanta,GA,30301 +157106,Wired Headphones,1,11.99,2019-02-16 17:13:00,943 Johnson St, Portland,OR,97035 +157107,USB-C Charging Cable,1,11.95,2019-02-14 08:46:00,677 Walnut St, New York City,NY,10001 +157108,Wired Headphones,2,11.99,2019-02-02 09:32:00,787 Jackson St, Atlanta,GA,30301 +157109,Wired Headphones,1,11.99,2019-02-06 12:20:00,53 River St, San Francisco,CA,94016 +157110,Lightning Charging Cable,1,14.95,2019-02-02 13:37:00,334 West St, Los Angeles,CA,90001 +157111,Apple Airpods Headphones,1,150.0,2019-02-06 16:30:00,237 Jackson St, Boston,MA,02215 +157112,Bose SoundSport Headphones,1,99.99,2019-02-17 17:23:00,631 Jefferson St, Boston,MA,02215 +157113,AA Batteries (4-pack),1,3.84,2019-02-14 21:24:00,325 Park St, Los Angeles,CA,90001 +157114,Lightning Charging Cable,1,14.95,2019-02-27 18:27:00,851 Jefferson St, Boston,MA,02215 +157115,iPhone,1,700.0,2019-02-14 18:46:00,148 Jackson St, San Francisco,CA,94016 +157115,Lightning Charging Cable,1,14.95,2019-02-14 18:46:00,148 Jackson St, San Francisco,CA,94016 +157115,Apple Airpods Headphones,1,150.0,2019-02-14 18:46:00,148 Jackson St, San Francisco,CA,94016 +157116,AA Batteries (4-pack),3,3.84,2019-02-22 14:16:00,246 Wilson St, San Francisco,CA,94016 +157117,Apple Airpods Headphones,1,150.0,2019-02-22 21:55:00,116 Johnson St, Boston,MA,02215 +157118,AAA Batteries (4-pack),1,2.99,2019-02-18 13:52:00,613 Johnson St, Dallas,TX,75001 +157119,Bose SoundSport Headphones,1,99.99,2019-02-02 11:06:00,938 14th St, Boston,MA,02215 +157120,Bose SoundSport Headphones,1,99.99,2019-02-09 16:03:00,16 13th St, Seattle,WA,98101 +157121,AAA Batteries (4-pack),1,2.99,2019-02-06 19:52:00,15 Cherry St, Los Angeles,CA,90001 +157122,Bose SoundSport Headphones,2,99.99,2019-02-18 19:28:00,826 Elm St, New York City,NY,10001 +157123,Wired Headphones,1,11.99,2019-02-08 13:53:00,856 Hickory St, Boston,MA,02215 +157124,AAA Batteries (4-pack),2,2.99,2019-02-10 13:04:00,966 Hickory St, Los Angeles,CA,90001 +157125,Lightning Charging Cable,1,14.95,2019-02-02 19:43:00,452 14th St, Portland,OR,97035 +157126,Lightning Charging Cable,1,14.95,2019-02-17 21:39:00,488 Wilson St, Seattle,WA,98101 +157127,Flatscreen TV,1,300.0,2019-02-01 11:35:00,326 North St, Los Angeles,CA,90001 +157128,iPhone,1,700.0,2019-02-15 07:25:00,758 Meadow St, New York City,NY,10001 +157129,Wired Headphones,1,11.99,2019-02-03 08:04:00,49 Center St, Boston,MA,02215 +157130,AA Batteries (4-pack),1,3.84,2019-02-27 17:55:00,710 Hickory St, Boston,MA,02215 +157131,AA Batteries (4-pack),4,3.84,2019-02-09 12:32:00,493 Church St, Dallas,TX,75001 +157132,Lightning Charging Cable,1,14.95,2019-02-14 14:29:00,243 Jackson St, San Francisco,CA,94016 +157133,USB-C Charging Cable,1,11.95,2019-02-27 15:31:00,237 6th St, Atlanta,GA,30301 +157134,Lightning Charging Cable,1,14.95,2019-02-10 23:06:00,235 Lakeview St, San Francisco,CA,94016 +157135,AAA Batteries (4-pack),1,2.99,2019-02-12 09:38:00,171 1st St, Los Angeles,CA,90001 +157136,AAA Batteries (4-pack),2,2.99,2019-02-27 14:51:00,334 Center St, San Francisco,CA,94016 +157137,USB-C Charging Cable,1,11.95,2019-02-25 15:20:00,910 4th St, San Francisco,CA,94016 +157138,Apple Airpods Headphones,2,150.0,2019-02-18 11:53:00,206 Wilson St, San Francisco,CA,94016 +157139,Vareebadd Phone,1,400.0,2019-02-20 13:18:00,756 Center St, Seattle,WA,98101 +157140,Wired Headphones,1,11.99,2019-02-16 20:16:00,382 West St, New York City,NY,10001 +157141,AAA Batteries (4-pack),1,2.99,2019-02-13 16:30:00,544 Pine St, Los Angeles,CA,90001 +157142,20in Monitor,1,109.99,2019-02-22 14:26:00,447 Johnson St, Atlanta,GA,30301 +157143,27in 4K Gaming Monitor,1,389.99,2019-02-12 09:27:00,824 Pine St, New York City,NY,10001 +157144,ThinkPad Laptop,1,999.99,2019-02-27 13:39:00,847 Lakeview St, Atlanta,GA,30301 +157145,AAA Batteries (4-pack),2,2.99,2019-02-08 11:11:00,94 West St, San Francisco,CA,94016 +157146,AA Batteries (4-pack),1,3.84,2019-02-03 13:04:00,576 Cherry St, Los Angeles,CA,90001 +157147,Bose SoundSport Headphones,1,99.99,2019-02-21 16:11:00,637 Jefferson St, San Francisco,CA,94016 +157148,AAA Batteries (4-pack),1,2.99,2019-02-10 10:01:00,641 Adams St, New York City,NY,10001 +157149,iPhone,1,700.0,2019-02-26 18:41:00,537 Jefferson St, Los Angeles,CA,90001 +157150,Apple Airpods Headphones,1,150.0,2019-02-20 13:48:00,800 13th St, Atlanta,GA,30301 +157151,AAA Batteries (4-pack),1,2.99,2019-02-10 13:08:00,298 Hill St, New York City,NY,10001 +157152,USB-C Charging Cable,1,11.95,2019-02-28 15:30:00,73 Jackson St, Los Angeles,CA,90001 +157153,ThinkPad Laptop,1,999.99,2019-02-27 12:46:00,571 Johnson St, Portland,OR,97035 +157154,27in 4K Gaming Monitor,1,389.99,2019-02-25 11:53:00,131 Jackson St, San Francisco,CA,94016 +157155,AA Batteries (4-pack),3,3.84,2019-02-23 11:53:00,745 9th St, Dallas,TX,75001 +157156,Lightning Charging Cable,1,14.95,2019-02-12 17:53:00,201 Main St, Atlanta,GA,30301 +157157,Flatscreen TV,1,300.0,2019-02-15 22:03:00,296 Johnson St, New York City,NY,10001 +157158,Wired Headphones,1,11.99,2019-02-09 12:21:00,577 2nd St, New York City,NY,10001 +157159,AA Batteries (4-pack),1,3.84,2019-02-10 12:40:00,177 10th St, San Francisco,CA,94016 +157160,Macbook Pro Laptop,1,1700.0,2019-02-22 11:42:00,663 River St, New York City,NY,10001 +157161,AA Batteries (4-pack),1,3.84,2019-02-24 20:07:00,986 Jackson St, Atlanta,GA,30301 +157162,AA Batteries (4-pack),1,3.84,2019-02-05 12:47:00,516 North St, Dallas,TX,75001 +157163,AAA Batteries (4-pack),1,2.99,2019-02-07 19:23:00,161 Highland St, Los Angeles,CA,90001 +157164,Wired Headphones,1,11.99,2019-02-09 11:00:00,401 South St, San Francisco,CA,94016 +157165,Wired Headphones,1,11.99,2019-02-05 11:21:00,696 2nd St, Los Angeles,CA,90001 +157166,AA Batteries (4-pack),3,3.84,2019-02-19 09:48:00,151 11th St, Los Angeles,CA,90001 +157167,Lightning Charging Cable,1,14.95,2019-02-06 12:29:00,501 Elm St, Los Angeles,CA,90001 +157168,AAA Batteries (4-pack),3,2.99,2019-02-14 00:34:00,54 Sunset St, Atlanta,GA,30301 +157169,27in 4K Gaming Monitor,1,389.99,2019-02-18 04:48:00,893 Washington St, Los Angeles,CA,90001 +157170,AAA Batteries (4-pack),1,2.99,2019-02-02 13:09:00,847 Cedar St, Atlanta,GA,30301 +157171,AA Batteries (4-pack),1,3.84,2019-02-05 11:20:00,909 Cedar St, San Francisco,CA,94016 +157172,Lightning Charging Cable,1,14.95,2019-02-24 20:18:00,174 West St, Seattle,WA,98101 +157173,Google Phone,1,600.0,2019-02-12 19:20:00,105 7th St, San Francisco,CA,94016 +157174,Wired Headphones,1,11.99,2019-02-19 17:05:00,319 Dogwood St, San Francisco,CA,94016 +157175,AA Batteries (4-pack),1,3.84,2019-02-24 13:12:00,643 4th St, Seattle,WA,98101 +157176,AAA Batteries (4-pack),1,2.99,2019-02-11 16:30:00,238 Chestnut St, San Francisco,CA,94016 +157177,LG Dryer,1,600.0,2019-02-12 11:06:00,274 Lake St, Boston,MA,02215 +157178,Bose SoundSport Headphones,1,99.99,2019-02-15 12:48:00,526 Washington St, Austin,TX,73301 +157179,Apple Airpods Headphones,1,150.0,2019-02-10 08:57:00,681 7th St, San Francisco,CA,94016 +157180,iPhone,1,700.0,2019-02-23 18:54:00,770 Spruce St, Los Angeles,CA,90001 +157181,27in 4K Gaming Monitor,1,389.99,2019-02-04 21:09:00,724 Chestnut St, Austin,TX,73301 +157182,27in 4K Gaming Monitor,1,389.99,2019-02-24 10:40:00,362 Pine St, Boston,MA,02215 +157183,Lightning Charging Cable,1,14.95,2019-02-16 19:31:00,106 Willow St, New York City,NY,10001 +157184,AA Batteries (4-pack),1,3.84,2019-02-09 15:57:00,591 Meadow St, San Francisco,CA,94016 +157185,AAA Batteries (4-pack),1,2.99,2019-02-28 17:55:00,311 Cherry St, San Francisco,CA,94016 +157186,Wired Headphones,1,11.99,2019-02-24 20:35:00,489 Elm St, San Francisco,CA,94016 +157187,AA Batteries (4-pack),1,3.84,2019-02-24 15:11:00,666 Spruce St, Seattle,WA,98101 +157188,USB-C Charging Cable,1,11.95,2019-02-01 12:35:00,357 Lake St, Boston,MA,02215 +157189,Flatscreen TV,1,300.0,2019-02-23 18:44:00,299 11th St, New York City,NY,10001 +157190,Wired Headphones,1,11.99,2019-02-05 13:31:00,492 Church St, Atlanta,GA,30301 +157190,27in 4K Gaming Monitor,1,389.99,2019-02-05 13:31:00,492 Church St, Atlanta,GA,30301 +157191,AAA Batteries (4-pack),1,2.99,2019-02-01 10:28:00,389 Lakeview St, Portland,OR,97035 +157192,20in Monitor,1,109.99,2019-02-02 08:02:00,892 Cedar St, Portland,OR,97035 +157193,AAA Batteries (4-pack),4,2.99,2019-02-02 20:37:00,49 Hickory St, New York City,NY,10001 +157194,Bose SoundSport Headphones,1,99.99,2019-02-18 18:00:00,968 11th St, San Francisco,CA,94016 +157195,20in Monitor,1,109.99,2019-02-25 12:46:00,682 Church St, Portland,OR,97035 +157196,Wired Headphones,1,11.99,2019-02-17 07:03:00,251 Hickory St, Austin,TX,73301 +157197,Apple Airpods Headphones,1,150.0,2019-02-08 10:23:00,752 14th St, San Francisco,CA,94016 +157198,Apple Airpods Headphones,1,150.0,2019-02-14 18:44:00,584 Adams St, San Francisco,CA,94016 +157199,AA Batteries (4-pack),1,3.84,2019-02-12 17:16:00,350 Washington St, San Francisco,CA,94016 +157200,Lightning Charging Cable,1,14.95,2019-02-23 20:12:00,775 Washington St, Atlanta,GA,30301 +157201,Vareebadd Phone,1,400.0,2019-02-20 11:36:00,51 River St, Dallas,TX,75001 +157202,AAA Batteries (4-pack),3,2.99,2019-02-19 20:27:00,418 8th St, Seattle,WA,98101 +157203,AAA Batteries (4-pack),2,2.99,2019-02-22 17:29:00,422 Cedar St, Los Angeles,CA,90001 +157204,AAA Batteries (4-pack),2,2.99,2019-02-21 13:19:00,213 9th St, San Francisco,CA,94016 +157204,Macbook Pro Laptop,1,1700.0,2019-02-21 13:19:00,213 9th St, San Francisco,CA,94016 +157205,Wired Headphones,1,11.99,2019-02-28 21:48:00,170 Pine St, Austin,TX,73301 +157206,AA Batteries (4-pack),1,3.84,2019-02-19 11:34:00,27 4th St, Los Angeles,CA,90001 +157207,Macbook Pro Laptop,1,1700.0,2019-02-17 19:01:00,822 Hill St, New York City,NY,10001 +157208,iPhone,1,700.0,2019-02-15 19:52:00,723 Cedar St, Dallas,TX,75001 +157208,Wired Headphones,1,11.99,2019-02-15 19:52:00,723 Cedar St, Dallas,TX,75001 +157209,Lightning Charging Cable,1,14.95,2019-02-23 10:14:00,513 River St, Portland,ME,04101 +157210,20in Monitor,1,109.99,2019-02-23 17:04:00,565 Meadow St, Dallas,TX,75001 +157211,Bose SoundSport Headphones,1,99.99,2019-02-22 11:40:00,931 1st St, New York City,NY,10001 +157212,Flatscreen TV,1,300.0,2019-02-28 21:42:00,988 River St, San Francisco,CA,94016 +157213,27in 4K Gaming Monitor,1,389.99,2019-02-12 23:42:00,404 Willow St, Boston,MA,02215 +157214,USB-C Charging Cable,1,11.95,2019-02-28 20:13:00,217 Johnson St, New York City,NY,10001 +157215,34in Ultrawide Monitor,1,379.99,2019-02-03 21:55:00,456 8th St, San Francisco,CA,94016 +157216,AA Batteries (4-pack),1,3.84,2019-02-17 18:27:00,654 South St, Seattle,WA,98101 +157217,Lightning Charging Cable,1,14.95,2019-02-23 22:17:00,934 Jefferson St, Boston,MA,02215 +157218,34in Ultrawide Monitor,1,379.99,2019-02-07 13:42:00,102 Center St, Atlanta,GA,30301 +157219,AAA Batteries (4-pack),1,2.99,2019-02-07 12:32:00,530 6th St, Portland,OR,97035 +157220,27in 4K Gaming Monitor,1,389.99,2019-02-06 12:37:00,915 Highland St, Dallas,TX,75001 +157221,AA Batteries (4-pack),1,3.84,2019-02-14 10:18:00,625 Willow St, San Francisco,CA,94016 +157222,Google Phone,1,600.0,2019-02-09 18:41:00,286 13th St, San Francisco,CA,94016 +157223,USB-C Charging Cable,1,11.95,2019-02-08 13:24:00,488 Jefferson St, Portland,OR,97035 +157224,USB-C Charging Cable,1,11.95,2019-02-19 20:50:00,654 Church St, San Francisco,CA,94016 +157225,USB-C Charging Cable,1,11.95,2019-02-15 14:20:00,819 12th St, Portland,OR,97035 +157226,Bose SoundSport Headphones,1,99.99,2019-02-17 11:15:00,867 Main St, Boston,MA,02215 +157227,Macbook Pro Laptop,1,1700.0,2019-02-25 15:34:00,815 North St, Austin,TX,73301 +157228,Lightning Charging Cable,1,14.95,2019-02-05 11:24:00,689 6th St, Portland,OR,97035 +157229,27in 4K Gaming Monitor,1,389.99,2019-02-07 20:38:00,911 Hickory St, Seattle,WA,98101 +157230,Bose SoundSport Headphones,1,99.99,2019-02-19 20:56:00,929 Adams St, Los Angeles,CA,90001 +157231,iPhone,1,700.0,2019-02-18 11:50:00,207 Lakeview St, San Francisco,CA,94016 +157232,Apple Airpods Headphones,1,150.0,2019-02-12 08:18:00,287 Wilson St, Los Angeles,CA,90001 +157233,USB-C Charging Cable,1,11.95,2019-02-28 11:25:00,677 Meadow St, San Francisco,CA,94016 +157234,AAA Batteries (4-pack),1,2.99,2019-02-19 16:16:00,494 North St, San Francisco,CA,94016 +157235,Bose SoundSport Headphones,1,99.99,2019-02-20 16:27:00,807 Lake St, New York City,NY,10001 +157236,27in 4K Gaming Monitor,1,389.99,2019-02-19 12:18:00,716 Willow St, San Francisco,CA,94016 +157237,AA Batteries (4-pack),1,3.84,2019-02-07 16:29:00,752 Lakeview St, Austin,TX,73301 +157238,Macbook Pro Laptop,1,1700.0,2019-02-10 19:59:00,730 Cedar St, Los Angeles,CA,90001 +157238,Wired Headphones,1,11.99,2019-02-10 19:59:00,730 Cedar St, Los Angeles,CA,90001 +157239,AA Batteries (4-pack),1,3.84,2019-02-05 18:54:00,364 Sunset St, San Francisco,CA,94016 +157240,Wired Headphones,1,11.99,2019-02-16 10:42:00,87 1st St, San Francisco,CA,94016 +157241,AAA Batteries (4-pack),1,2.99,2019-02-18 19:50:00,706 Church St, Los Angeles,CA,90001 +157242,AAA Batteries (4-pack),2,2.99,2019-02-04 14:19:00,185 Elm St, Los Angeles,CA,90001 +157243,34in Ultrawide Monitor,1,379.99,2019-02-26 23:42:00,802 North St, Atlanta,GA,30301 +157244,20in Monitor,1,109.99,2019-02-07 21:09:00,341 Chestnut St, Atlanta,GA,30301 +157245,Flatscreen TV,1,300.0,2019-02-18 13:50:00,560 Adams St, New York City,NY,10001 +157246,Bose SoundSport Headphones,1,99.99,2019-02-10 16:46:00,579 2nd St, Atlanta,GA,30301 +157247,AA Batteries (4-pack),1,3.84,2019-02-14 09:06:00,197 Pine St, Dallas,TX,75001 +157248,Bose SoundSport Headphones,1,99.99,2019-02-01 17:23:00,978 Lakeview St, Los Angeles,CA,90001 +157249,USB-C Charging Cable,2,11.95,2019-02-16 06:19:00,13 North St, Atlanta,GA,30301 +157250,Apple Airpods Headphones,1,150.0,2019-02-17 14:12:00,115 Cedar St, Seattle,WA,98101 +157251,Vareebadd Phone,1,400.0,2019-02-14 14:20:00,139 9th St, Dallas,TX,75001 +157251,Wired Headphones,1,11.99,2019-02-14 14:20:00,139 9th St, Dallas,TX,75001 +157252,Lightning Charging Cable,1,14.95,2019-02-09 19:36:00,604 9th St, Austin,TX,73301 +157253,AAA Batteries (4-pack),2,2.99,2019-02-15 11:51:00,718 Ridge St, Austin,TX,73301 +157254,ThinkPad Laptop,1,999.99,2019-02-15 17:11:00,265 Hickory St, Los Angeles,CA,90001 +157255,Lightning Charging Cable,1,14.95,2019-02-28 13:22:00,119 Main St, Boston,MA,02215 +157255,USB-C Charging Cable,1,11.95,2019-02-28 13:22:00,119 Main St, Boston,MA,02215 +157256,AAA Batteries (4-pack),1,2.99,2019-02-15 07:44:00,541 1st St, Seattle,WA,98101 +157257,AA Batteries (4-pack),1,3.84,2019-02-07 21:56:00,44 Lakeview St, San Francisco,CA,94016 +157258,Wired Headphones,1,11.99,2019-02-16 16:50:00,407 North St, San Francisco,CA,94016 +157259,Lightning Charging Cable,1,14.95,2019-02-02 17:05:00,140 Walnut St, New York City,NY,10001 +157260,Lightning Charging Cable,1,14.95,2019-02-08 13:25:00,841 Dogwood St, Los Angeles,CA,90001 +157261,Apple Airpods Headphones,1,150.0,2019-02-27 17:00:00,689 2nd St, New York City,NY,10001 +157262,Google Phone,1,600.0,2019-02-20 20:08:00,55 Madison St, San Francisco,CA,94016 +157263,Flatscreen TV,1,300.0,2019-02-20 18:11:00,927 Main St, Los Angeles,CA,90001 +157264,AAA Batteries (4-pack),2,2.99,2019-02-19 17:15:00,520 2nd St, Boston,MA,02215 +157265,AA Batteries (4-pack),1,3.84,2019-02-05 18:23:00,126 14th St, San Francisco,CA,94016 +157266,Wired Headphones,1,11.99,2019-02-07 14:16:00,522 Ridge St, San Francisco,CA,94016 +157267,Flatscreen TV,1,300.0,2019-02-06 00:17:00,401 Pine St, Seattle,WA,98101 +157268,USB-C Charging Cable,1,11.95,2019-02-08 14:52:00,546 14th St, Atlanta,GA,30301 +157269,Lightning Charging Cable,1,14.95,2019-02-02 10:13:00,437 Cherry St, New York City,NY,10001 +157270,Bose SoundSport Headphones,1,99.99,2019-02-04 10:43:00,740 10th St, Boston,MA,02215 +157271,34in Ultrawide Monitor,1,379.99,2019-02-01 14:08:00,183 Highland St, Portland,OR,97035 +157272,iPhone,1,700.0,2019-02-22 14:38:00,398 2nd St, San Francisco,CA,94016 +157273,Lightning Charging Cable,1,14.95,2019-02-18 18:35:00,572 Wilson St, New York City,NY,10001 +157274,Apple Airpods Headphones,1,150.0,2019-02-13 08:34:00,778 Walnut St, Portland,OR,97035 +157275,34in Ultrawide Monitor,1,379.99,2019-02-27 19:00:00,430 Lake St, New York City,NY,10001 +157276,ThinkPad Laptop,1,999.99,2019-02-21 06:31:00,322 Cherry St, New York City,NY,10001 +157277,Wired Headphones,1,11.99,2019-02-04 14:10:00,287 Church St, San Francisco,CA,94016 +157278,Lightning Charging Cable,1,14.95,2019-02-14 21:43:00,588 West St, San Francisco,CA,94016 +157279,AA Batteries (4-pack),2,3.84,2019-02-09 19:29:00,330 Washington St, Boston,MA,02215 +157280,Lightning Charging Cable,1,14.95,2019-02-04 10:11:00,6 West St, San Francisco,CA,94016 +157281,Google Phone,1,600.0,2019-02-12 18:59:00,60 Jefferson St, Portland,ME,04101 +157281,USB-C Charging Cable,1,11.95,2019-02-12 18:59:00,60 Jefferson St, Portland,ME,04101 +157282,27in FHD Monitor,1,149.99,2019-02-03 16:11:00,791 Lake St, San Francisco,CA,94016 +157283,iPhone,1,700.0,2019-02-24 00:52:00,851 Chestnut St, San Francisco,CA,94016 +157284,Apple Airpods Headphones,1,150.0,2019-02-12 20:26:00,291 Lake St, San Francisco,CA,94016 +157285,Wired Headphones,1,11.99,2019-02-12 13:34:00,701 Jackson St, New York City,NY,10001 +157286,iPhone,1,700.0,2019-02-11 15:10:00,263 Adams St, New York City,NY,10001 +157286,Apple Airpods Headphones,1,150.0,2019-02-11 15:10:00,263 Adams St, New York City,NY,10001 +157287,Wired Headphones,1,11.99,2019-02-15 13:33:00,893 Elm St, Los Angeles,CA,90001 +157288,Wired Headphones,1,11.99,2019-02-05 21:25:00,996 Meadow St, San Francisco,CA,94016 +157289,27in FHD Monitor,1,149.99,2019-02-19 13:14:00,382 Church St, San Francisco,CA,94016 +157290,27in FHD Monitor,1,149.99,2019-02-16 21:37:00,50 Elm St, New York City,NY,10001 +157291,Wired Headphones,2,11.99,2019-02-17 08:53:00,917 Lincoln St, New York City,NY,10001 +157292,USB-C Charging Cable,1,11.95,2019-02-16 15:04:00,96 Sunset St, New York City,NY,10001 +157293,Wired Headphones,1,11.99,2019-02-16 00:49:00,136 9th St, Seattle,WA,98101 +157294,Google Phone,1,600.0,2019-02-28 13:01:00,606 Washington St, Los Angeles,CA,90001 +157295,AA Batteries (4-pack),3,3.84,2019-02-08 16:27:00,584 Johnson St, Los Angeles,CA,90001 +157296,USB-C Charging Cable,1,11.95,2019-02-23 22:46:00,558 Hill St, New York City,NY,10001 +157297,Flatscreen TV,1,300.0,2019-02-23 15:33:00,15 Jackson St, Portland,OR,97035 +157298,27in 4K Gaming Monitor,1,389.99,2019-02-20 14:18:00,167 Forest St, Los Angeles,CA,90001 +157299,Wired Headphones,1,11.99,2019-02-24 22:41:00,185 Lincoln St, Dallas,TX,75001 +157300,34in Ultrawide Monitor,1,379.99,2019-02-19 18:45:00,969 Madison St, New York City,NY,10001 +157300,Lightning Charging Cable,1,14.95,2019-02-19 18:45:00,969 Madison St, New York City,NY,10001 +157301,USB-C Charging Cable,1,11.95,2019-02-09 21:49:00,729 Jefferson St, Los Angeles,CA,90001 +157302,Flatscreen TV,1,300.0,2019-02-05 22:12:00,297 Jefferson St, Portland,OR,97035 +157303,AAA Batteries (4-pack),1,2.99,2019-02-19 20:45:00,346 Walnut St, New York City,NY,10001 +157304,Lightning Charging Cable,1,14.95,2019-02-10 21:44:00,60 Willow St, San Francisco,CA,94016 +157305,AA Batteries (4-pack),1,3.84,2019-02-17 18:50:00,264 Lakeview St, Los Angeles,CA,90001 +157306,Lightning Charging Cable,1,14.95,2019-02-16 22:34:00,114 South St, San Francisco,CA,94016 +157307,USB-C Charging Cable,1,11.95,2019-02-25 21:21:00,966 Cedar St, San Francisco,CA,94016 +157308,AAA Batteries (4-pack),2,2.99,2019-02-20 18:48:00,814 Cedar St, Portland,OR,97035 +157309,AA Batteries (4-pack),1,3.84,2019-02-01 17:57:00,373 Pine St, San Francisco,CA,94016 +157310,USB-C Charging Cable,1,11.95,2019-02-22 19:25:00,604 River St, Los Angeles,CA,90001 +157311,34in Ultrawide Monitor,1,379.99,2019-02-13 10:20:00,130 Lakeview St, Seattle,WA,98101 +157312,Google Phone,1,600.0,2019-02-21 21:42:00,255 4th St, New York City,NY,10001 +157313,iPhone,1,700.0,2019-02-21 17:41:00,806 13th St, Austin,TX,73301 +157314,USB-C Charging Cable,1,11.95,2019-02-09 19:43:00,669 Spruce St, San Francisco,CA,94016 +157315,AAA Batteries (4-pack),3,2.99,2019-02-03 23:41:00,976 Center St, Los Angeles,CA,90001 +157316,Google Phone,1,600.0,2019-02-26 17:45:00,711 9th St, Atlanta,GA,30301 +157316,USB-C Charging Cable,1,11.95,2019-02-26 17:45:00,711 9th St, Atlanta,GA,30301 +157317,iPhone,1,700.0,2019-02-16 18:57:00,298 Meadow St, Boston,MA,02215 +157318,AA Batteries (4-pack),1,3.84,2019-02-04 18:04:00,13 13th St, Seattle,WA,98101 +157319,AA Batteries (4-pack),1,3.84,2019-02-11 22:55:00,990 14th St, San Francisco,CA,94016 +157320,34in Ultrawide Monitor,1,379.99,2019-02-12 18:18:00,92 Elm St, Los Angeles,CA,90001 +157321,27in FHD Monitor,1,149.99,2019-02-12 16:18:00,285 12th St, New York City,NY,10001 +157322,Bose SoundSport Headphones,1,99.99,2019-02-22 10:51:00,983 Wilson St, San Francisco,CA,94016 +157323,Vareebadd Phone,1,400.0,2019-02-08 17:59:00,232 Washington St, Atlanta,GA,30301 +157324,Lightning Charging Cable,1,14.95,2019-02-24 09:38:00,27 Forest St, San Francisco,CA,94016 +157325,USB-C Charging Cable,1,11.95,2019-02-09 20:28:00,393 Cherry St, San Francisco,CA,94016 +157326,AAA Batteries (4-pack),2,2.99,2019-02-13 20:10:00,988 Adams St, San Francisco,CA,94016 +157327,USB-C Charging Cable,1,11.95,2019-02-02 15:48:00,477 Main St, Boston,MA,02215 +157328,Google Phone,1,600.0,2019-02-25 19:01:00,174 9th St, Dallas,TX,75001 +157329,AA Batteries (4-pack),1,3.84,2019-02-20 14:12:00,9 Johnson St, Atlanta,GA,30301 +157330,Bose SoundSport Headphones,1,99.99,2019-02-26 18:56:00,738 Pine St, Portland,OR,97035 +157331,AA Batteries (4-pack),1,3.84,2019-02-11 14:26:00,214 11th St, New York City,NY,10001 +157332,Lightning Charging Cable,1,14.95,2019-02-23 00:51:00,701 14th St, Los Angeles,CA,90001 +157333,AAA Batteries (4-pack),2,2.99,2019-02-28 15:07:00,13 2nd St, Boston,MA,02215 +157334,Google Phone,1,600.0,2019-02-27 12:52:00,773 Dogwood St, San Francisco,CA,94016 +157334,Wired Headphones,1,11.99,2019-02-27 12:52:00,773 Dogwood St, San Francisco,CA,94016 +157335,AAA Batteries (4-pack),3,2.99,2019-02-04 16:38:00,266 2nd St, Seattle,WA,98101 +157336,27in FHD Monitor,1,149.99,2019-02-13 15:11:00,584 Spruce St, Portland,OR,97035 +157337,USB-C Charging Cable,2,11.95,2019-02-23 08:01:00,238 Ridge St, New York City,NY,10001 +157338,ThinkPad Laptop,1,999.99,2019-02-08 10:29:00,815 6th St, New York City,NY,10001 +157339,Apple Airpods Headphones,1,150.0,2019-02-10 20:02:00,818 13th St, Los Angeles,CA,90001 +157340,Wired Headphones,3,11.99,2019-02-28 16:52:00,118 Adams St, New York City,NY,10001 +157341,Lightning Charging Cable,2,14.95,2019-02-24 11:05:00,178 Highland St, Boston,MA,02215 +157342,Vareebadd Phone,1,400.0,2019-02-18 19:43:00,595 Lincoln St, Portland,ME,04101 +157342,USB-C Charging Cable,1,11.95,2019-02-18 19:43:00,595 Lincoln St, Portland,ME,04101 +157343,AAA Batteries (4-pack),1,2.99,2019-02-27 16:53:00,902 Lake St, Boston,MA,02215 +157344,Vareebadd Phone,1,400.0,2019-02-20 17:14:00,867 Chestnut St, New York City,NY,10001 +157344,USB-C Charging Cable,1,11.95,2019-02-20 17:14:00,867 Chestnut St, New York City,NY,10001 +157344,Wired Headphones,1,11.99,2019-02-20 17:14:00,867 Chestnut St, New York City,NY,10001 +157345,Google Phone,1,600.0,2019-02-08 17:38:00,937 North St, Boston,MA,02215 +157346,Bose SoundSport Headphones,1,99.99,2019-02-07 16:43:00,531 Dogwood St, New York City,NY,10001 +157347,27in FHD Monitor,1,149.99,2019-02-18 12:43:00,82 Jefferson St, Austin,TX,73301 +157348,Apple Airpods Headphones,1,150.0,2019-02-25 20:06:00,32 2nd St, San Francisco,CA,94016 +157349,AA Batteries (4-pack),1,3.84,2019-02-19 14:19:00,1 South St, New York City,NY,10001 +157350,27in 4K Gaming Monitor,1,389.99,2019-02-03 09:08:00,667 Walnut St, San Francisco,CA,94016 +157351,AA Batteries (4-pack),1,3.84,2019-02-06 15:35:00,958 Willow St, San Francisco,CA,94016 +157352,AA Batteries (4-pack),1,3.84,2019-02-22 21:36:00,559 Pine St, Seattle,WA,98101 +157353,Bose SoundSport Headphones,1,99.99,2019-02-12 14:02:00,907 Cherry St, Los Angeles,CA,90001 +157354,AA Batteries (4-pack),1,3.84,2019-02-06 14:52:00,561 River St, Los Angeles,CA,90001 +157355,iPhone,1,700.0,2019-02-25 10:20:00,128 Highland St, Los Angeles,CA,90001 +157356,USB-C Charging Cable,1,11.95,2019-02-21 19:49:00,417 Hill St, New York City,NY,10001 +157357,AA Batteries (4-pack),1,3.84,2019-02-01 10:12:00,533 2nd St, Dallas,TX,75001 +157358,USB-C Charging Cable,1,11.95,2019-02-10 17:04:00,724 Walnut St, Seattle,WA,98101 +157359,27in FHD Monitor,1,149.99,2019-02-23 22:38:00,741 Willow St, San Francisco,CA,94016 +157360,20in Monitor,1,109.99,2019-02-14 12:34:00,273 10th St, Austin,TX,73301 +157361,Bose SoundSport Headphones,1,99.99,2019-02-19 16:27:00,79 South St, New York City,NY,10001 +157362,Apple Airpods Headphones,1,150.0,2019-02-06 17:32:00,55 14th St, Boston,MA,02215 +157363,27in FHD Monitor,1,149.99,2019-02-24 06:55:00,413 1st St, Los Angeles,CA,90001 +157364,Apple Airpods Headphones,1,150.0,2019-02-03 17:25:00,809 Meadow St, San Francisco,CA,94016 +157365,LG Dryer,1,600.0,2019-02-08 19:27:00,863 Main St, Austin,TX,73301 +157366,27in FHD Monitor,1,149.99,2019-02-15 16:45:00,344 Highland St, Los Angeles,CA,90001 +157367,USB-C Charging Cable,1,11.95,2019-02-01 21:58:00,773 Hill St, Atlanta,GA,30301 +157368,Lightning Charging Cable,1,14.95,2019-02-27 21:57:00,503 Johnson St, Los Angeles,CA,90001 +157368,USB-C Charging Cable,1,11.95,2019-02-27 21:57:00,503 Johnson St, Los Angeles,CA,90001 +157369,USB-C Charging Cable,1,11.95,2019-02-03 20:15:00,483 Center St, San Francisco,CA,94016 +157370,Lightning Charging Cable,2,14.95,2019-02-17 13:32:00,503 7th St, Boston,MA,02215 +157370,Wired Headphones,1,11.99,2019-02-17 13:32:00,503 7th St, Boston,MA,02215 +157371,27in 4K Gaming Monitor,1,389.99,2019-02-11 18:49:00,376 Main St, New York City,NY,10001 +157372,AAA Batteries (4-pack),1,2.99,2019-02-12 18:58:00,942 Highland St, New York City,NY,10001 +157373,27in FHD Monitor,1,149.99,2019-02-04 20:39:00,548 Chestnut St, New York City,NY,10001 +157374,Google Phone,1,600.0,2019-02-10 14:17:00,635 Lakeview St, Boston,MA,02215 +157375,USB-C Charging Cable,1,11.95,2019-02-07 21:36:00,809 13th St, San Francisco,CA,94016 +157376,Bose SoundSport Headphones,1,99.99,2019-02-03 18:59:00,871 Jefferson St, Dallas,TX,75001 +157377,Bose SoundSport Headphones,1,99.99,2019-02-09 21:28:00,734 Dogwood St, Atlanta,GA,30301 +157378,AAA Batteries (4-pack),1,2.99,2019-02-04 16:44:00,609 Center St, New York City,NY,10001 +157379,Wired Headphones,1,11.99,2019-02-11 16:46:00,451 Jefferson St, San Francisco,CA,94016 +157380,Bose SoundSport Headphones,1,99.99,2019-02-05 09:55:00,876 Pine St, Portland,OR,97035 +157381,USB-C Charging Cable,1,11.95,2019-02-05 21:24:00,897 Lake St, Boston,MA,02215 +157382,AAA Batteries (4-pack),1,2.99,2019-02-02 20:19:00,316 Center St, Los Angeles,CA,90001 +157383,Wired Headphones,2,11.99,2019-02-26 20:02:00,225 Pine St, Portland,ME,04101 +157384,34in Ultrawide Monitor,1,379.99,2019-02-20 19:13:00,903 Adams St, Boston,MA,02215 +157385,Lightning Charging Cable,1,14.95,2019-02-13 14:00:00,727 Cedar St, San Francisco,CA,94016 +157386,Macbook Pro Laptop,1,1700.0,2019-02-08 19:15:00,170 Jackson St, San Francisco,CA,94016 +157387,AAA Batteries (4-pack),1,2.99,2019-02-24 22:29:00,567 Forest St, Atlanta,GA,30301 +157388,USB-C Charging Cable,1,11.95,2019-02-10 23:55:00,664 Sunset St, Boston,MA,02215 +157389,Flatscreen TV,1,300.0,2019-02-01 16:32:00,30 4th St, Austin,TX,73301 +157390,Wired Headphones,2,11.99,2019-02-26 19:20:00,729 Wilson St, Boston,MA,02215 +157391,iPhone,1,700.0,2019-02-17 06:10:00,560 8th St, Portland,OR,97035 +157392,LG Washing Machine,1,600.0,2019-02-28 18:14:00,113 Maple St, Atlanta,GA,30301 +157393,Wired Headphones,1,11.99,2019-02-16 22:50:00,680 9th St, San Francisco,CA,94016 +157394,27in 4K Gaming Monitor,1,389.99,2019-02-13 12:27:00,746 8th St, Los Angeles,CA,90001 +157395,AA Batteries (4-pack),1,3.84,2019-02-19 15:06:00,544 Main St, Portland,OR,97035 +157396,Google Phone,1,600.0,2019-02-17 16:33:00,792 Washington St, New York City,NY,10001 +157396,USB-C Charging Cable,1,11.95,2019-02-17 16:33:00,792 Washington St, New York City,NY,10001 +157397,iPhone,1,700.0,2019-02-16 10:59:00,789 Hill St, New York City,NY,10001 +157398,AAA Batteries (4-pack),2,2.99,2019-02-24 15:29:00,168 9th St, Los Angeles,CA,90001 +157399,iPhone,1,700.0,2019-02-12 09:58:00,585 Walnut St, Seattle,WA,98101 +157399,Wired Headphones,2,11.99,2019-02-12 09:58:00,585 Walnut St, Seattle,WA,98101 +157400,Apple Airpods Headphones,1,150.0,2019-02-02 16:02:00,636 Pine St, Dallas,TX,75001 +157401,Wired Headphones,1,11.99,2019-02-01 10:17:00,184 Park St, Los Angeles,CA,90001 +157402,Lightning Charging Cable,1,14.95,2019-02-02 11:55:00,332 Jackson St, Los Angeles,CA,90001 +157403,AAA Batteries (4-pack),1,2.99,2019-02-25 19:29:00,278 14th St, Boston,MA,02215 +157404,AAA Batteries (4-pack),4,2.99,2019-02-24 11:35:00,706 Madison St, Atlanta,GA,30301 +157405,iPhone,1,700.0,2019-02-02 10:21:00,270 Elm St, Los Angeles,CA,90001 +157406,Lightning Charging Cable,1,14.95,2019-02-08 12:43:00,652 Adams St, Portland,OR,97035 +157407,Wired Headphones,1,11.99,2019-02-06 09:52:00,353 West St, Austin,TX,73301 +157408,34in Ultrawide Monitor,1,379.99,2019-02-02 12:48:00,904 2nd St, Los Angeles,CA,90001 +157409,AAA Batteries (4-pack),1,2.99,2019-02-10 16:06:00,462 12th St, Boston,MA,02215 +157410,AAA Batteries (4-pack),4,2.99,2019-02-07 20:32:00,355 Pine St, Boston,MA,02215 +157411,AA Batteries (4-pack),1,3.84,2019-02-19 18:47:00,654 5th St, Los Angeles,CA,90001 +157412,AAA Batteries (4-pack),1,2.99,2019-02-03 13:25:00,327 9th St, Boston,MA,02215 +157413,AAA Batteries (4-pack),3,2.99,2019-02-27 10:16:00,147 9th St, San Francisco,CA,94016 +157414,USB-C Charging Cable,1,11.95,2019-02-05 20:52:00,477 4th St, San Francisco,CA,94016 +157415,Apple Airpods Headphones,1,150.0,2019-02-19 20:10:00,732 11th St, San Francisco,CA,94016 +157416,USB-C Charging Cable,1,11.95,2019-02-04 19:54:00,286 Adams St, Atlanta,GA,30301 +157417,AAA Batteries (4-pack),5,2.99,2019-02-13 12:34:00,746 Lake St, San Francisco,CA,94016 +157418,AA Batteries (4-pack),1,3.84,2019-02-05 16:58:00,101 8th St, New York City,NY,10001 +157418,Apple Airpods Headphones,1,150.0,2019-02-05 16:58:00,101 8th St, New York City,NY,10001 +157419,iPhone,1,700.0,2019-02-22 17:43:00,288 4th St, Portland,OR,97035 +157420,Lightning Charging Cable,1,14.95,2019-02-20 21:25:00,515 14th St, Dallas,TX,75001 +157421,Lightning Charging Cable,2,14.95,2019-02-07 19:36:00,909 14th St, San Francisco,CA,94016 +157422,Lightning Charging Cable,1,14.95,2019-02-09 14:39:00,91 5th St, New York City,NY,10001 +157423,Flatscreen TV,1,300.0,2019-02-22 14:30:00,777 8th St, Los Angeles,CA,90001 +157424,Lightning Charging Cable,2,14.95,2019-02-11 14:15:00,716 Lincoln St, Portland,OR,97035 +157425,iPhone,1,700.0,2019-02-05 13:25:00,562 Johnson St, New York City,NY,10001 +157425,Wired Headphones,1,11.99,2019-02-05 13:25:00,562 Johnson St, New York City,NY,10001 +157426,20in Monitor,1,109.99,2019-02-27 12:19:00,999 Willow St, Seattle,WA,98101 +157427,iPhone,1,700.0,2019-02-13 12:28:00,463 1st St, Portland,OR,97035 +157427,Wired Headphones,1,11.99,2019-02-13 12:28:00,463 1st St, Portland,OR,97035 +157428,Lightning Charging Cable,1,14.95,2019-02-10 23:40:00,996 Highland St, Atlanta,GA,30301 +157429,Lightning Charging Cable,1,14.95,2019-02-12 15:43:00,8 10th St, San Francisco,CA,94016 +157430,Bose SoundSport Headphones,1,99.99,2019-02-11 18:15:00,499 Johnson St, Dallas,TX,75001 +157431,27in FHD Monitor,1,149.99,2019-02-12 08:41:00,578 Washington St, Boston,MA,02215 +157432,USB-C Charging Cable,1,11.95,2019-02-16 15:10:00,197 5th St, Boston,MA,02215 +157433,AAA Batteries (4-pack),1,2.99,2019-02-10 18:27:00,219 Forest St, San Francisco,CA,94016 +157433,Apple Airpods Headphones,1,150.0,2019-02-10 18:27:00,219 Forest St, San Francisco,CA,94016 +157434,AA Batteries (4-pack),1,3.84,2019-02-04 19:35:00,770 Jefferson St, Dallas,TX,75001 +157435,27in 4K Gaming Monitor,1,389.99,2019-02-03 12:16:00,172 Hickory St, New York City,NY,10001 +157436,AA Batteries (4-pack),2,3.84,2019-02-26 21:44:00,713 1st St, Boston,MA,02215 +157437,ThinkPad Laptop,1,999.99,2019-02-23 14:39:00,381 9th St, Dallas,TX,75001 +157438,Apple Airpods Headphones,1,150.0,2019-02-03 14:30:00,715 Pine St, Atlanta,GA,30301 +157439,USB-C Charging Cable,1,11.95,2019-02-04 11:38:00,108 Chestnut St, Los Angeles,CA,90001 +157440,Google Phone,1,600.0,2019-02-27 17:13:00,729 Walnut St, Dallas,TX,75001 +157440,USB-C Charging Cable,1,11.95,2019-02-27 17:13:00,729 Walnut St, Dallas,TX,75001 +157441,iPhone,1,700.0,2019-02-16 13:38:00,971 Meadow St, Boston,MA,02215 +157441,Apple Airpods Headphones,1,150.0,2019-02-16 13:38:00,971 Meadow St, Boston,MA,02215 +157442,Lightning Charging Cable,1,14.95,2019-02-25 13:34:00,380 Spruce St, Boston,MA,02215 +157443,Bose SoundSport Headphones,1,99.99,2019-02-19 00:15:00,659 7th St, Los Angeles,CA,90001 +157444,27in FHD Monitor,1,149.99,2019-02-04 03:15:00,979 Highland St, San Francisco,CA,94016 +157445,AA Batteries (4-pack),1,3.84,2019-02-23 16:04:00,598 14th St, San Francisco,CA,94016 +157446,Wired Headphones,2,11.99,2019-02-25 10:18:00,460 Walnut St, Seattle,WA,98101 +157447,Wired Headphones,1,11.99,2019-02-02 23:03:00,778 11th St, New York City,NY,10001 +157448,Wired Headphones,1,11.99,2019-02-18 20:12:00,394 Ridge St, Los Angeles,CA,90001 +157449,34in Ultrawide Monitor,1,379.99,2019-02-04 19:18:00,761 Lakeview St, San Francisco,CA,94016 +157450,Google Phone,1,600.0,2019-02-09 18:42:00,964 Church St, San Francisco,CA,94016 +157450,USB-C Charging Cable,1,11.95,2019-02-09 18:42:00,964 Church St, San Francisco,CA,94016 +157451,27in 4K Gaming Monitor,1,389.99,2019-02-14 12:39:00,897 Lake St, San Francisco,CA,94016 +157452,Lightning Charging Cable,1,14.95,2019-02-12 21:12:00,359 Spruce St, San Francisco,CA,94016 +157453,Wired Headphones,1,11.99,2019-02-26 17:18:00,538 6th St, San Francisco,CA,94016 +157454,Lightning Charging Cable,1,14.95,2019-02-05 16:43:00,325 Madison St, Los Angeles,CA,90001 +157455,27in 4K Gaming Monitor,1,389.99,2019-02-10 15:41:00,766 Lakeview St, Portland,ME,04101 +157455,USB-C Charging Cable,1,11.95,2019-02-10 15:41:00,766 Lakeview St, Portland,ME,04101 +157456,Lightning Charging Cable,1,14.95,2019-02-22 00:10:00,82 Forest St, San Francisco,CA,94016 +157457,27in 4K Gaming Monitor,1,389.99,2019-02-08 19:49:00,222 Main St, New York City,NY,10001 +157458,AAA Batteries (4-pack),2,2.99,2019-02-10 18:04:00,527 Hickory St, Atlanta,GA,30301 +157459,AA Batteries (4-pack),1,3.84,2019-02-05 17:47:00,449 Willow St, San Francisco,CA,94016 +157460,AA Batteries (4-pack),1,3.84,2019-02-02 22:47:00,542 11th St, Dallas,TX,75001 +157461,Wired Headphones,1,11.99,2019-02-05 16:19:00,58 14th St, New York City,NY,10001 +157462,20in Monitor,1,109.99,2019-02-07 18:55:00,20 River St, Los Angeles,CA,90001 +157463,27in 4K Gaming Monitor,1,389.99,2019-02-04 11:35:00,437 Lincoln St, Boston,MA,02215 +157464,27in FHD Monitor,1,149.99,2019-02-17 17:44:00,836 Walnut St, Los Angeles,CA,90001 +157465,Lightning Charging Cable,1,14.95,2019-02-19 17:10:00,601 Forest St, New York City,NY,10001 +157466,USB-C Charging Cable,1,11.95,2019-02-17 19:39:00,594 North St, New York City,NY,10001 +157467,Apple Airpods Headphones,1,150.0,2019-02-20 20:52:00,59 2nd St, Los Angeles,CA,90001 +157468,Lightning Charging Cable,1,14.95,2019-02-08 18:44:00,694 Spruce St, Boston,MA,02215 +157469,iPhone,1,700.0,2019-02-11 10:27:00,570 South St, Atlanta,GA,30301 +157470,34in Ultrawide Monitor,1,379.99,2019-02-13 14:22:00,329 Dogwood St, New York City,NY,10001 +157471,AAA Batteries (4-pack),1,2.99,2019-02-04 15:39:00,456 Church St, Los Angeles,CA,90001 +157472,Lightning Charging Cable,1,14.95,2019-02-04 11:23:00,985 West St, Dallas,TX,75001 +157473,34in Ultrawide Monitor,1,379.99,2019-02-12 21:16:00,899 Cherry St, Dallas,TX,75001 +157474,Apple Airpods Headphones,1,150.0,2019-02-12 16:32:00,384 Dogwood St, San Francisco,CA,94016 +157475,Apple Airpods Headphones,1,150.0,2019-02-14 06:03:00,5 Park St, San Francisco,CA,94016 +157476,Lightning Charging Cable,1,14.95,2019-02-20 21:58:00,173 8th St, New York City,NY,10001 +157477,USB-C Charging Cable,1,11.95,2019-02-20 13:10:00,626 Dogwood St, Portland,ME,04101 +157478,USB-C Charging Cable,1,11.95,2019-02-23 17:56:00,796 Willow St, New York City,NY,10001 +157479,Apple Airpods Headphones,1,150.0,2019-02-11 19:37:00,331 2nd St, Austin,TX,73301 +157480,AAA Batteries (4-pack),1,2.99,2019-02-20 13:30:00,768 Chestnut St, Los Angeles,CA,90001 +157481,Lightning Charging Cable,1,14.95,2019-02-07 12:07:00,35 Sunset St, New York City,NY,10001 +157482,iPhone,1,700.0,2019-02-02 14:31:00,469 Johnson St, Seattle,WA,98101 +157483,27in FHD Monitor,1,149.99,2019-02-25 13:35:00,171 Highland St, San Francisco,CA,94016 +157484,Wired Headphones,1,11.99,2019-02-19 09:10:00,369 Lincoln St, Atlanta,GA,30301 +157485,Lightning Charging Cable,3,14.95,2019-02-10 21:02:00,292 12th St, Austin,TX,73301 +157486,Flatscreen TV,1,300.0,2019-02-10 13:06:00,545 Adams St, Dallas,TX,75001 +157487,Flatscreen TV,1,300.0,2019-02-21 22:44:00,405 North St, Boston,MA,02215 +157488,Wired Headphones,1,11.99,2019-02-28 19:18:00,607 Willow St, Boston,MA,02215 +157489,Wired Headphones,1,11.99,2019-02-23 21:31:00,28 Wilson St, Portland,OR,97035 +157490,Wired Headphones,1,11.99,2019-02-26 06:32:00,354 1st St, Los Angeles,CA,90001 +157491,Wired Headphones,1,11.99,2019-02-16 15:34:00,571 Walnut St, Los Angeles,CA,90001 +157492,AAA Batteries (4-pack),1,2.99,2019-02-21 09:23:00,36 Pine St, Los Angeles,CA,90001 +157493,Flatscreen TV,1,300.0,2019-02-13 14:57:00,286 Johnson St, Dallas,TX,75001 +157494,AA Batteries (4-pack),1,3.84,2019-02-25 19:30:00,728 Walnut St, Los Angeles,CA,90001 +157495,AAA Batteries (4-pack),1,2.99,2019-02-12 23:06:00,635 Madison St, New York City,NY,10001 +157496,ThinkPad Laptop,1,999.99,2019-02-08 09:51:00,580 Main St, New York City,NY,10001 +157497,AAA Batteries (4-pack),1,2.99,2019-02-17 19:58:00,444 Cherry St, Boston,MA,02215 +157498,Lightning Charging Cable,1,14.95,2019-02-26 10:56:00,799 River St, Seattle,WA,98101 +157499,Wired Headphones,1,11.99,2019-02-15 09:16:00,857 13th St, San Francisco,CA,94016 +157500,20in Monitor,1,109.99,2019-02-10 18:17:00,898 Johnson St, Austin,TX,73301 +157501,Flatscreen TV,1,300.0,2019-02-23 23:52:00,201 North St, Atlanta,GA,30301 +157502,27in 4K Gaming Monitor,1,389.99,2019-02-23 09:33:00,36 Walnut St, Atlanta,GA,30301 +157503,Bose SoundSport Headphones,1,99.99,2019-02-04 21:42:00,285 14th St, San Francisco,CA,94016 +157504,AAA Batteries (4-pack),1,2.99,2019-02-10 11:03:00,318 Jefferson St, New York City,NY,10001 +157505,AA Batteries (4-pack),1,3.84,2019-02-25 01:23:00,384 2nd St, San Francisco,CA,94016 +157506,Lightning Charging Cable,1,14.95,2019-02-20 14:49:00,694 Maple St, Los Angeles,CA,90001 +157507,AA Batteries (4-pack),1,3.84,2019-02-10 12:33:00,34 Park St, Atlanta,GA,30301 +157508,USB-C Charging Cable,1,11.95,2019-02-21 06:30:00,389 West St, San Francisco,CA,94016 +157509,iPhone,1,700.0,2019-02-18 13:08:00,462 Lincoln St, Los Angeles,CA,90001 +157510,USB-C Charging Cable,1,11.95,2019-02-28 15:16:00,747 River St, San Francisco,CA,94016 +157511,AA Batteries (4-pack),1,3.84,2019-02-11 20:01:00,402 4th St, San Francisco,CA,94016 +157512,Wired Headphones,1,11.99,2019-02-03 00:33:00,348 Sunset St, Atlanta,GA,30301 +157513,Apple Airpods Headphones,1,150.0,2019-02-18 10:10:00,109 Lincoln St, Portland,OR,97035 +157514,Google Phone,1,600.0,2019-02-16 15:25:00,383 Meadow St, Dallas,TX,75001 +157515,AA Batteries (4-pack),1,3.84,2019-02-24 14:36:00,888 13th St, New York City,NY,10001 +157516,Bose SoundSport Headphones,1,99.99,2019-02-02 15:58:00,420 Cedar St, Boston,MA,02215 +157517,27in FHD Monitor,1,149.99,2019-02-10 01:54:00,885 14th St, Austin,TX,73301 +157518,AA Batteries (4-pack),1,3.84,2019-02-16 19:57:00,812 Park St, Boston,MA,02215 +157519,Apple Airpods Headphones,1,150.0,2019-02-21 14:03:00,55 Hill St, Austin,TX,73301 +157520,Apple Airpods Headphones,1,150.0,2019-02-06 09:21:00,312 Johnson St, San Francisco,CA,94016 +157521,Apple Airpods Headphones,1,150.0,2019-02-05 11:10:00,132 6th St, Los Angeles,CA,90001 +157522,Macbook Pro Laptop,1,1700.0,2019-02-24 19:01:00,825 7th St, Boston,MA,02215 +157523,Bose SoundSport Headphones,1,99.99,2019-02-10 15:24:00,507 Lakeview St, Dallas,TX,75001 +157524,ThinkPad Laptop,1,999.99,2019-02-15 19:19:00,776 Washington St, Austin,TX,73301 +157525,34in Ultrawide Monitor,1,379.99,2019-02-11 15:43:00,444 Highland St, San Francisco,CA,94016 +157526,AA Batteries (4-pack),2,3.84,2019-02-10 12:06:00,985 Dogwood St, San Francisco,CA,94016 +157527,Flatscreen TV,1,300.0,2019-02-27 10:36:00,964 Madison St, Dallas,TX,75001 +157528,Wired Headphones,1,11.99,2019-02-14 16:31:00,892 Sunset St, Portland,OR,97035 +157529,Google Phone,1,600.0,2019-02-10 12:39:00,116 Dogwood St, Portland,OR,97035 +157529,USB-C Charging Cable,1,11.95,2019-02-10 12:39:00,116 Dogwood St, Portland,OR,97035 +157530,AAA Batteries (4-pack),3,2.99,2019-02-25 12:47:00,298 8th St, Los Angeles,CA,90001 +157531,AA Batteries (4-pack),1,3.84,2019-02-16 18:46:00,505 Ridge St, Los Angeles,CA,90001 +157532,Bose SoundSport Headphones,1,99.99,2019-02-25 13:12:00,34 Center St, Atlanta,GA,30301 +157533,AAA Batteries (4-pack),1,2.99,2019-02-04 16:11:00,722 Center St, San Francisco,CA,94016 +157534,Apple Airpods Headphones,1,150.0,2019-02-26 16:24:00,874 6th St, Seattle,WA,98101 +157535,USB-C Charging Cable,1,11.95,2019-02-04 12:48:00,58 5th St, Portland,OR,97035 +157536,34in Ultrawide Monitor,1,379.99,2019-02-26 18:42:00,306 6th St, San Francisco,CA,94016 +157537,AA Batteries (4-pack),3,3.84,2019-02-05 11:23:00,952 Spruce St, Dallas,TX,75001 +157538,iPhone,1,700.0,2019-02-03 08:29:00,251 Forest St, San Francisco,CA,94016 +157539,USB-C Charging Cable,1,11.95,2019-02-13 17:55:00,211 Lake St, San Francisco,CA,94016 +157540,34in Ultrawide Monitor,1,379.99,2019-02-12 08:14:00,748 6th St, Dallas,TX,75001 +157541,Bose SoundSport Headphones,1,99.99,2019-02-07 11:28:00,152 2nd St, Los Angeles,CA,90001 +157542,USB-C Charging Cable,1,11.95,2019-02-25 17:24:00,628 Highland St, Los Angeles,CA,90001 +157543,ThinkPad Laptop,1,999.99,2019-02-28 21:28:00,224 Adams St, Atlanta,GA,30301 +157544,AAA Batteries (4-pack),1,2.99,2019-02-21 13:13:00,149 Ridge St, San Francisco,CA,94016 +157545,AAA Batteries (4-pack),1,2.99,2019-02-23 15:27:00,137 12th St, New York City,NY,10001 +157546,USB-C Charging Cable,1,11.95,2019-02-12 09:46:00,663 Cherry St, San Francisco,CA,94016 +157547,20in Monitor,1,109.99,2019-02-27 12:30:00,867 Cherry St, San Francisco,CA,94016 +157548,Apple Airpods Headphones,1,150.0,2019-02-26 17:18:00,503 Main St, Atlanta,GA,30301 +157549,Bose SoundSport Headphones,1,99.99,2019-02-27 09:58:00,845 11th St, San Francisco,CA,94016 +157550,AAA Batteries (4-pack),1,2.99,2019-02-14 19:03:00,638 14th St, New York City,NY,10001 +157551,Lightning Charging Cable,1,14.95,2019-02-14 01:40:00,87 Chestnut St, New York City,NY,10001 +157552,USB-C Charging Cable,1,11.95,2019-02-05 17:05:00,496 12th St, Seattle,WA,98101 +157553,Wired Headphones,1,11.99,2019-02-03 21:39:00,317 Dogwood St, Dallas,TX,75001 +157554,AA Batteries (4-pack),1,3.84,2019-02-14 16:37:00,341 Church St, Dallas,TX,75001 +157555,iPhone,1,700.0,2019-02-17 20:17:00,350 Lakeview St, New York City,NY,10001 +157556,27in FHD Monitor,1,149.99,2019-02-09 09:33:00,667 Lakeview St, New York City,NY,10001 +157557,Wired Headphones,1,11.99,2019-02-14 15:09:00,967 Spruce St, Boston,MA,02215 +157558,USB-C Charging Cable,1,11.95,2019-02-02 10:07:00,898 Lakeview St, New York City,NY,10001 +157559,ThinkPad Laptop,1,999.99,2019-02-15 12:59:00,247 Maple St, Dallas,TX,75001 +157560,AAA Batteries (4-pack),1,2.99,2019-02-19 13:31:00,550 Lakeview St, Portland,ME,04101 +157561,Apple Airpods Headphones,1,150.0,2019-02-25 19:15:00,554 Madison St, Los Angeles,CA,90001 +157562,Bose SoundSport Headphones,1,99.99,2019-02-16 00:05:00,280 North St, Dallas,TX,75001 +157563,iPhone,1,700.0,2019-02-22 12:01:00,512 7th St, San Francisco,CA,94016 +157564,27in FHD Monitor,1,149.99,2019-02-07 11:28:00,885 Lake St, Dallas,TX,75001 +157565,34in Ultrawide Monitor,1,379.99,2019-02-18 21:11:00,501 4th St, New York City,NY,10001 +157566,USB-C Charging Cable,1,11.95,2019-02-20 18:32:00,554 5th St, San Francisco,CA,94016 +157567,USB-C Charging Cable,2,11.95,2019-02-09 16:54:00,163 Johnson St, San Francisco,CA,94016 +157568,USB-C Charging Cable,1,11.95,2019-02-12 23:59:00,556 2nd St, Atlanta,GA,30301 +157569,Lightning Charging Cable,2,14.95,2019-02-19 22:03:00,547 South St, Los Angeles,CA,90001 +157570,Apple Airpods Headphones,1,150.0,2019-02-17 20:06:00,827 Chestnut St, San Francisco,CA,94016 +157571,Apple Airpods Headphones,1,150.0,2019-02-21 20:19:00,11 North St, San Francisco,CA,94016 +157572,AAA Batteries (4-pack),1,2.99,2019-02-23 05:33:00,50 Elm St, San Francisco,CA,94016 +157573,Wired Headphones,1,11.99,2019-02-07 13:47:00,364 Cherry St, Dallas,TX,75001 +157574,AAA Batteries (4-pack),1,2.99,2019-02-20 22:16:00,941 Willow St, San Francisco,CA,94016 +157575,USB-C Charging Cable,1,11.95,2019-02-24 05:38:00,679 Lake St, Boston,MA,02215 +157576,Lightning Charging Cable,1,14.95,2019-02-06 18:17:00,523 Jefferson St, Los Angeles,CA,90001 +157577,AAA Batteries (4-pack),1,2.99,2019-02-11 10:48:00,620 10th St, Atlanta,GA,30301 +157578,Flatscreen TV,1,300.0,2019-02-27 19:24:00,580 Cedar St, Los Angeles,CA,90001 +157579,27in FHD Monitor,1,149.99,2019-02-07 21:52:00,156 8th St, Seattle,WA,98101 +157580,USB-C Charging Cable,1,11.95,2019-02-15 15:37:00,906 Cherry St, San Francisco,CA,94016 +157581,Bose SoundSport Headphones,1,99.99,2019-02-12 14:07:00,238 Dogwood St, Atlanta,GA,30301 +157582,AAA Batteries (4-pack),1,2.99,2019-02-12 18:32:00,51 12th St, Austin,TX,73301 +157583,20in Monitor,1,109.99,2019-02-10 15:53:00,153 Park St, Dallas,TX,75001 +157584,USB-C Charging Cable,1,11.95,2019-02-07 12:10:00,636 Spruce St, San Francisco,CA,94016 +157585,AAA Batteries (4-pack),1,2.99,2019-02-09 17:26:00,239 Meadow St, New York City,NY,10001 +157586,AAA Batteries (4-pack),3,2.99,2019-02-16 17:59:00,610 Dogwood St, San Francisco,CA,94016 +157587,27in FHD Monitor,1,149.99,2019-02-08 17:54:00,298 Maple St, New York City,NY,10001 +157588,Wired Headphones,1,11.99,2019-02-28 12:24:00,848 9th St, San Francisco,CA,94016 +157589,Apple Airpods Headphones,1,150.0,2019-02-20 23:30:00,429 Johnson St, San Francisco,CA,94016 +157590,AAA Batteries (4-pack),1,2.99,2019-02-08 02:39:00,232 West St, San Francisco,CA,94016 +157591,USB-C Charging Cable,1,11.95,2019-02-03 11:24:00,860 13th St, San Francisco,CA,94016 +157592,Flatscreen TV,1,300.0,2019-02-04 19:58:00,647 Pine St, Portland,ME,04101 +157593,USB-C Charging Cable,1,11.95,2019-02-03 23:47:00,911 Church St, San Francisco,CA,94016 +157594,AAA Batteries (4-pack),1,2.99,2019-02-24 20:49:00,2 Church St, Los Angeles,CA,90001 +157595,USB-C Charging Cable,1,11.95,2019-02-14 10:46:00,556 Jefferson St, Los Angeles,CA,90001 +157596,USB-C Charging Cable,1,11.95,2019-02-15 04:01:00,838 Washington St, Seattle,WA,98101 +157597,Google Phone,1,600.0,2019-02-12 10:08:00,582 Pine St, Boston,MA,02215 +157598,Wired Headphones,1,11.99,2019-02-20 14:48:00,912 8th St, New York City,NY,10001 +157599,Lightning Charging Cable,1,14.95,2019-02-21 11:23:00,491 Jefferson St, San Francisco,CA,94016 +157600,Apple Airpods Headphones,1,150.0,2019-02-28 14:40:00,421 Park St, Boston,MA,02215 +157601,USB-C Charging Cable,1,11.95,2019-02-06 19:12:00,633 Main St, Seattle,WA,98101 +157602,Vareebadd Phone,1,400.0,2019-02-25 13:33:00,557 Meadow St, San Francisco,CA,94016 +157603,Bose SoundSport Headphones,2,99.99,2019-02-22 20:43:00,957 Highland St, San Francisco,CA,94016 +157604,AAA Batteries (4-pack),2,2.99,2019-02-20 12:49:00,998 Chestnut St, New York City,NY,10001 +157605,USB-C Charging Cable,2,11.95,2019-02-13 00:29:00,253 South St, San Francisco,CA,94016 +157606,Lightning Charging Cable,1,14.95,2019-02-22 16:17:00,909 Main St, Los Angeles,CA,90001 +157607,27in FHD Monitor,1,149.99,2019-02-22 16:43:00,631 Park St, Los Angeles,CA,90001 +157608,Apple Airpods Headphones,1,150.0,2019-02-11 17:59:00,82 Forest St, Austin,TX,73301 +157609,Bose SoundSport Headphones,1,99.99,2019-02-18 15:58:00,117 Church St, Atlanta,GA,30301 +157610,Lightning Charging Cable,1,14.95,2019-02-18 15:25:00,31 Center St, San Francisco,CA,94016 +157611,Bose SoundSport Headphones,1,99.99,2019-02-22 17:45:00,8 11th St, Dallas,TX,75001 +157612,Bose SoundSport Headphones,1,99.99,2019-02-28 11:30:00,159 Ridge St, Atlanta,GA,30301 +157613,AAA Batteries (4-pack),1,2.99,2019-02-26 09:59:00,76 6th St, Boston,MA,02215 +157614,AAA Batteries (4-pack),1,2.99,2019-02-06 16:32:00,232 Washington St, Dallas,TX,75001 +157615,ThinkPad Laptop,1,999.99,2019-02-19 16:29:00,413 Meadow St, Boston,MA,02215 +157616,AAA Batteries (4-pack),1,2.99,2019-02-07 01:31:00,622 Forest St, San Francisco,CA,94016 +157617,Google Phone,1,600.0,2019-02-24 19:57:00,144 Maple St, Los Angeles,CA,90001 +157618,20in Monitor,1,109.99,2019-02-03 05:56:00,137 Highland St, Austin,TX,73301 +157619,AAA Batteries (4-pack),2,2.99,2019-02-01 18:43:00,462 Cherry St, New York City,NY,10001 +157620,iPhone,1,700.0,2019-02-05 17:12:00,332 1st St, Atlanta,GA,30301 +157620,AA Batteries (4-pack),1,3.84,2019-02-05 17:12:00,332 1st St, Atlanta,GA,30301 +157621,Bose SoundSport Headphones,1,99.99,2019-02-22 22:57:00,264 Chestnut St, Austin,TX,73301 +157622,Bose SoundSport Headphones,1,99.99,2019-02-10 21:38:00,537 South St, Dallas,TX,75001 +157623,Apple Airpods Headphones,1,150.0,2019-02-18 19:33:00,746 14th St, Boston,MA,02215 +157624,USB-C Charging Cable,1,11.95,2019-02-19 07:33:00,287 West St, Los Angeles,CA,90001 +157625,Bose SoundSport Headphones,1,99.99,2019-02-21 19:44:00,76 Jefferson St, Los Angeles,CA,90001 +157626,Apple Airpods Headphones,1,150.0,2019-02-11 12:08:00,429 Johnson St, San Francisco,CA,94016 +157627,iPhone,1,700.0,2019-02-07 19:12:00,758 Maple St, Austin,TX,73301 +157628,Wired Headphones,1,11.99,2019-02-18 10:27:00,111 2nd St, San Francisco,CA,94016 +157629,Flatscreen TV,1,300.0,2019-02-03 06:32:00,204 Cedar St, New York City,NY,10001 +157630,Apple Airpods Headphones,1,150.0,2019-02-18 14:15:00,883 13th St, Los Angeles,CA,90001 +157631,34in Ultrawide Monitor,1,379.99,2019-02-21 12:25:00,459 Walnut St, Los Angeles,CA,90001 +157632,Bose SoundSport Headphones,1,99.99,2019-02-26 19:45:00,110 Chestnut St, Portland,OR,97035 +157633,AAA Batteries (4-pack),1,2.99,2019-02-24 09:36:00,822 Meadow St, Los Angeles,CA,90001 +157634,Macbook Pro Laptop,1,1700.0,2019-02-19 19:12:00,424 Highland St, New York City,NY,10001 +157635,AA Batteries (4-pack),2,3.84,2019-02-28 17:25:00,971 Pine St, Los Angeles,CA,90001 +157636,iPhone,1,700.0,2019-02-08 18:14:00,461 Washington St, Atlanta,GA,30301 +157637,Lightning Charging Cable,1,14.95,2019-02-28 19:59:00,453 Wilson St, Seattle,WA,98101 +157638,iPhone,1,700.0,2019-02-17 09:35:00,684 Maple St, Los Angeles,CA,90001 +157639,USB-C Charging Cable,1,11.95,2019-02-08 17:45:00,516 13th St, San Francisco,CA,94016 +157640,Lightning Charging Cable,1,14.95,2019-02-23 06:31:00,308 Lincoln St, Dallas,TX,75001 +157641,AAA Batteries (4-pack),2,2.99,2019-02-14 11:51:00,620 Hickory St, San Francisco,CA,94016 +157642,27in FHD Monitor,1,149.99,2019-02-04 16:45:00,992 Cedar St, New York City,NY,10001 +157643,27in 4K Gaming Monitor,1,389.99,2019-02-18 14:48:00,857 Hill St, San Francisco,CA,94016 +157644,27in 4K Gaming Monitor,1,389.99,2019-02-03 18:50:00,703 Forest St, Los Angeles,CA,90001 +157645,27in FHD Monitor,1,149.99,2019-02-24 20:29:00,753 13th St, San Francisco,CA,94016 +157646,Apple Airpods Headphones,1,150.0,2019-02-23 00:35:00,147 South St, Atlanta,GA,30301 +157647,USB-C Charging Cable,1,11.95,2019-02-28 07:56:00,1 Lakeview St, San Francisco,CA,94016 +157648,AA Batteries (4-pack),1,3.84,2019-02-25 12:24:00,369 Dogwood St, Atlanta,GA,30301 +157649,Apple Airpods Headphones,1,150.0,2019-02-07 21:32:00,515 Adams St, San Francisco,CA,94016 +157650,Bose SoundSport Headphones,1,99.99,2019-02-10 11:30:00,756 Johnson St, Los Angeles,CA,90001 +157651,Apple Airpods Headphones,1,150.0,2019-02-13 09:10:00,46 North St, San Francisco,CA,94016 +157652,Wired Headphones,1,11.99,2019-02-26 11:52:00,178 11th St, Atlanta,GA,30301 +157653,Bose SoundSport Headphones,1,99.99,2019-02-03 19:44:00,326 Ridge St, New York City,NY,10001 +157654,AA Batteries (4-pack),1,3.84,2019-02-12 22:35:00,639 Elm St, San Francisco,CA,94016 +157655,AAA Batteries (4-pack),2,2.99,2019-02-14 22:22:00,185 Main St, Boston,MA,02215 +157656,AA Batteries (4-pack),2,3.84,2019-02-25 11:10:00,694 Chestnut St, Austin,TX,73301 +157657,Bose SoundSport Headphones,1,99.99,2019-02-11 08:19:00,303 Ridge St, San Francisco,CA,94016 +157658,Apple Airpods Headphones,1,150.0,2019-02-01 22:52:00,365 Forest St, Boston,MA,02215 +157659,Wired Headphones,1,11.99,2019-02-20 11:33:00,739 Madison St, Boston,MA,02215 +157660,Wired Headphones,1,11.99,2019-02-13 12:42:00,185 5th St, San Francisco,CA,94016 +157661,27in 4K Gaming Monitor,1,389.99,2019-02-28 19:55:00,158 Elm St, San Francisco,CA,94016 +157662,AA Batteries (4-pack),3,3.84,2019-02-09 00:24:00,791 Jackson St, Austin,TX,73301 +157663,Apple Airpods Headphones,1,150.0,2019-02-09 16:59:00,679 Main St, Boston,MA,02215 +157664,Bose SoundSport Headphones,1,99.99,2019-02-24 11:53:00,457 7th St, Los Angeles,CA,90001 +157665,USB-C Charging Cable,1,11.95,2019-02-28 13:38:00,946 Pine St, Los Angeles,CA,90001 +157666,AAA Batteries (4-pack),2,2.99,2019-02-17 17:29:00,196 Walnut St, Boston,MA,02215 +157667,USB-C Charging Cable,1,11.95,2019-02-17 10:24:00,723 Washington St, Los Angeles,CA,90001 +157667,AAA Batteries (4-pack),1,2.99,2019-02-17 10:24:00,723 Washington St, Los Angeles,CA,90001 +157668,Flatscreen TV,1,300.0,2019-02-26 09:47:00,294 Lakeview St, New York City,NY,10001 +157669,Macbook Pro Laptop,1,1700.0,2019-02-19 09:42:00,83 12th St, Seattle,WA,98101 +157670,Bose SoundSport Headphones,1,99.99,2019-02-12 20:33:00,196 Ridge St, New York City,NY,10001 +157671,iPhone,1,700.0,2019-02-22 19:55:00,282 Jefferson St, New York City,NY,10001 +157672,Apple Airpods Headphones,1,150.0,2019-02-26 20:45:00,834 Hickory St, San Francisco,CA,94016 +157673,iPhone,1,700.0,2019-02-03 22:19:00,807 Center St, Los Angeles,CA,90001 +157674,AAA Batteries (4-pack),2,2.99,2019-02-14 16:50:00,471 2nd St, Seattle,WA,98101 +157675,Lightning Charging Cable,1,14.95,2019-02-17 13:00:00,725 North St, San Francisco,CA,94016 +157676,Lightning Charging Cable,1,14.95,2019-02-24 16:44:00,865 North St, Atlanta,GA,30301 +157677,AAA Batteries (4-pack),1,2.99,2019-02-03 21:19:00,998 Madison St, Boston,MA,02215 +157678,Lightning Charging Cable,1,14.95,2019-02-05 19:15:00,343 Center St, New York City,NY,10001 +157679,Wired Headphones,1,11.99,2019-02-26 19:52:00,300 Dogwood St, Portland,OR,97035 +157680,Lightning Charging Cable,2,14.95,2019-02-06 17:39:00,617 Cedar St, San Francisco,CA,94016 +157681,Lightning Charging Cable,1,14.95,2019-02-23 16:26:00,486 Forest St, Los Angeles,CA,90001 +157682,27in 4K Gaming Monitor,1,389.99,2019-02-16 20:41:00,177 Center St, Los Angeles,CA,90001 +157683,Wired Headphones,1,11.99,2019-02-26 13:31:00,249 Forest St, Dallas,TX,75001 +157684,Wired Headphones,1,11.99,2019-02-02 13:19:00,317 Jackson St, Seattle,WA,98101 +157685,USB-C Charging Cable,1,11.95,2019-02-28 13:28:00,5 Forest St, San Francisco,CA,94016 +157686,Bose SoundSport Headphones,1,99.99,2019-02-26 14:56:00,741 10th St, Austin,TX,73301 +157687,AA Batteries (4-pack),3,3.84,2019-02-24 20:50:00,759 Spruce St, San Francisco,CA,94016 +157688,iPhone,1,700.0,2019-02-04 12:29:00,269 Willow St, Seattle,WA,98101 +157688,Apple Airpods Headphones,1,150.0,2019-02-04 12:29:00,269 Willow St, Seattle,WA,98101 +157689,20in Monitor,1,109.99,2019-02-24 11:41:00,106 Meadow St, San Francisco,CA,94016 +157690,Lightning Charging Cable,1,14.95,2019-02-27 15:19:00,586 Wilson St, Atlanta,GA,30301 +157691,27in 4K Gaming Monitor,1,389.99,2019-02-15 13:48:00,966 Maple St, San Francisco,CA,94016 +157692,AA Batteries (4-pack),3,3.84,2019-02-12 20:41:00,440 Washington St, Boston,MA,02215 +157693,Vareebadd Phone,1,400.0,2019-02-05 10:12:00,90 North St, Atlanta,GA,30301 +157694,AAA Batteries (4-pack),3,2.99,2019-02-21 17:29:00,288 River St, Los Angeles,CA,90001 +157695,Wired Headphones,1,11.99,2019-02-17 21:02:00,711 Pine St, Atlanta,GA,30301 +157696,Apple Airpods Headphones,1,150.0,2019-02-21 20:39:00,507 Park St, Austin,TX,73301 +157697,AA Batteries (4-pack),1,3.84,2019-02-05 12:38:00,806 8th St, Los Angeles,CA,90001 +157698,AA Batteries (4-pack),1,3.84,2019-02-01 17:56:00,694 Madison St, Portland,OR,97035 +157699,Lightning Charging Cable,1,14.95,2019-02-14 02:43:00,610 Wilson St, Los Angeles,CA,90001 +157700,USB-C Charging Cable,1,11.95,2019-02-02 01:15:00,42 Spruce St, Los Angeles,CA,90001 +157701,27in FHD Monitor,1,149.99,2019-02-08 18:25:00,483 West St, Portland,OR,97035 +157702,AA Batteries (4-pack),1,3.84,2019-02-15 21:11:00,508 Jefferson St, New York City,NY,10001 +157703,Apple Airpods Headphones,1,150.0,2019-02-25 21:34:00,475 7th St, Boston,MA,02215 +157704,Apple Airpods Headphones,1,150.0,2019-02-06 21:37:00,943 Sunset St, San Francisco,CA,94016 +157705,Lightning Charging Cable,1,14.95,2019-02-16 06:02:00,778 Center St, San Francisco,CA,94016 +157706,AAA Batteries (4-pack),1,2.99,2019-02-25 18:06:00,555 7th St, Boston,MA,02215 +157707,Flatscreen TV,1,300.0,2019-02-16 11:38:00,925 Forest St, Atlanta,GA,30301 +157708,Bose SoundSport Headphones,1,99.99,2019-02-09 17:25:00,146 Washington St, Boston,MA,02215 +157709,Bose SoundSport Headphones,1,99.99,2019-02-06 06:50:00,540 Maple St, Austin,TX,73301 +157710,Wired Headphones,1,11.99,2019-02-11 13:05:00,397 4th St, Portland,ME,04101 +157711,Google Phone,1,600.0,2019-02-06 05:15:00,94 Cherry St, San Francisco,CA,94016 +157712,Apple Airpods Headphones,1,150.0,2019-02-14 06:12:00,332 8th St, New York City,NY,10001 +157713,Wired Headphones,1,11.99,2019-02-27 05:55:00,426 Cherry St, San Francisco,CA,94016 +157714,USB-C Charging Cable,1,11.95,2019-02-16 14:07:00,567 Highland St, Atlanta,GA,30301 +157715,AA Batteries (4-pack),1,3.84,2019-02-19 13:41:00,901 7th St, Boston,MA,02215 +157716,Wired Headphones,1,11.99,2019-02-15 04:24:00,13 Forest St, Seattle,WA,98101 +157717,Google Phone,1,600.0,2019-02-18 14:01:00,15 8th St, Boston,MA,02215 +157718,Wired Headphones,1,11.99,2019-02-09 14:04:00,526 Ridge St, New York City,NY,10001 +157719,Apple Airpods Headphones,1,150.0,2019-02-21 13:46:00,580 Hickory St, New York City,NY,10001 +157720,Wired Headphones,1,11.99,2019-02-08 21:28:00,348 Forest St, San Francisco,CA,94016 +157721,Macbook Pro Laptop,1,1700.0,2019-02-27 18:29:00,113 Dogwood St, San Francisco,CA,94016 +157722,Macbook Pro Laptop,1,1700.0,2019-02-19 15:14:00,549 North St, San Francisco,CA,94016 +157723,AA Batteries (4-pack),1,3.84,2019-02-04 21:13:00,346 11th St, San Francisco,CA,94016 +157724,iPhone,1,700.0,2019-02-12 10:48:00,483 Hill St, Los Angeles,CA,90001 +157724,Lightning Charging Cable,1,14.95,2019-02-12 10:48:00,483 Hill St, Los Angeles,CA,90001 +157725,Macbook Pro Laptop,1,1700.0,2019-02-19 14:45:00,125 West St, San Francisco,CA,94016 +157726,Wired Headphones,1,11.99,2019-02-14 15:29:00,806 Spruce St, New York City,NY,10001 +157727,AA Batteries (4-pack),1,3.84,2019-02-27 20:04:00,347 Jackson St, Los Angeles,CA,90001 +157728,Lightning Charging Cable,1,14.95,2019-02-12 02:25:00,52 Church St, Austin,TX,73301 +157729,USB-C Charging Cable,1,11.95,2019-02-03 22:59:00,77 Sunset St, New York City,NY,10001 +157730,USB-C Charging Cable,1,11.95,2019-02-12 13:47:00,553 11th St, Boston,MA,02215 +157731,20in Monitor,1,109.99,2019-02-16 09:55:00,116 6th St, Austin,TX,73301 +157732,27in FHD Monitor,1,149.99,2019-02-28 15:04:00,127 Hickory St, New York City,NY,10001 +157733,AAA Batteries (4-pack),1,2.99,2019-02-20 09:23:00,614 North St, Portland,OR,97035 +157734,AAA Batteries (4-pack),2,2.99,2019-02-15 19:50:00,572 8th St, Boston,MA,02215 +157735,USB-C Charging Cable,1,11.95,2019-02-26 21:11:00,618 Lincoln St, Portland,OR,97035 +157735,Apple Airpods Headphones,1,150.0,2019-02-26 21:11:00,618 Lincoln St, Portland,OR,97035 +157736,USB-C Charging Cable,1,11.95,2019-02-15 20:06:00,679 Hickory St, Los Angeles,CA,90001 +157737,Apple Airpods Headphones,1,150.0,2019-02-06 12:57:00,192 Park St, Los Angeles,CA,90001 +157738,34in Ultrawide Monitor,1,379.99,2019-02-22 14:46:00,156 14th St, Boston,MA,02215 +157739,Wired Headphones,1,11.99,2019-02-17 19:37:00,599 8th St, San Francisco,CA,94016 +157740,Bose SoundSport Headphones,1,99.99,2019-02-18 22:28:00,588 Meadow St, San Francisco,CA,94016 +157741,iPhone,1,700.0,2019-02-26 00:05:00,150 South St, San Francisco,CA,94016 +157742,USB-C Charging Cable,1,11.95,2019-02-14 18:56:00,815 14th St, San Francisco,CA,94016 +157743,Lightning Charging Cable,1,14.95,2019-02-26 12:35:00,787 Highland St, New York City,NY,10001 +157744,USB-C Charging Cable,2,11.95,2019-02-04 17:06:00,690 9th St, Austin,TX,73301 +157745,Lightning Charging Cable,1,14.95,2019-02-06 10:08:00,639 12th St, Portland,ME,04101 +157746,AA Batteries (4-pack),1,3.84,2019-02-03 11:10:00,257 11th St, New York City,NY,10001 +157747,Flatscreen TV,1,300.0,2019-02-28 22:16:00,885 Jackson St, Dallas,TX,75001 +157748,Macbook Pro Laptop,1,1700.0,2019-02-17 21:19:00,995 9th St, Seattle,WA,98101 +157749,AAA Batteries (4-pack),3,2.99,2019-02-10 18:42:00,794 Walnut St, San Francisco,CA,94016 +157750,27in FHD Monitor,1,149.99,2019-02-12 18:44:00,341 Sunset St, New York City,NY,10001 +157751,USB-C Charging Cable,1,11.95,2019-02-02 06:57:00,558 2nd St, San Francisco,CA,94016 +157752,Apple Airpods Headphones,1,150.0,2019-02-16 10:37:00,18 Dogwood St, San Francisco,CA,94016 +157753,USB-C Charging Cable,1,11.95,2019-02-18 22:29:00,865 14th St, Los Angeles,CA,90001 +157754,27in 4K Gaming Monitor,1,389.99,2019-02-10 12:14:00,837 Center St, Los Angeles,CA,90001 +157755,Lightning Charging Cable,1,14.95,2019-02-22 15:17:00,616 Lakeview St, New York City,NY,10001 +157756,Bose SoundSport Headphones,1,99.99,2019-02-23 11:59:00,432 9th St, Los Angeles,CA,90001 +157757,Wired Headphones,2,11.99,2019-02-25 23:05:00,957 Main St, Dallas,TX,75001 +157758,Flatscreen TV,1,300.0,2019-02-15 09:18:00,411 Sunset St, San Francisco,CA,94016 +157759,27in FHD Monitor,1,149.99,2019-02-02 21:51:00,426 Sunset St, Portland,OR,97035 +157760,27in FHD Monitor,1,149.99,2019-02-02 14:12:00,143 Willow St, New York City,NY,10001 +157761,USB-C Charging Cable,1,11.95,2019-02-22 11:21:00,406 North St, Boston,MA,02215 +157762,AAA Batteries (4-pack),1,2.99,2019-02-01 11:39:00,189 Lincoln St, Boston,MA,02215 +157763,Wired Headphones,1,11.99,2019-02-27 17:41:00,693 Ridge St, New York City,NY,10001 +157764,20in Monitor,1,109.99,2019-02-05 01:49:00,332 Elm St, San Francisco,CA,94016 +157765,Apple Airpods Headphones,1,150.0,2019-02-12 18:59:00,421 Sunset St, Boston,MA,02215 +157766,USB-C Charging Cable,1,11.95,2019-02-07 17:12:00,726 Maple St, Austin,TX,73301 +157767,Wired Headphones,1,11.99,2019-02-08 12:56:00,401 13th St, Boston,MA,02215 +157768,AA Batteries (4-pack),1,3.84,2019-02-03 14:19:00,419 Cedar St, San Francisco,CA,94016 +157769,AAA Batteries (4-pack),2,2.99,2019-02-10 09:38:00,518 9th St, Seattle,WA,98101 +157770,AAA Batteries (4-pack),4,2.99,2019-02-02 17:01:00,929 Dogwood St, Seattle,WA,98101 +157771,27in 4K Gaming Monitor,1,389.99,2019-02-06 17:46:00,790 Jefferson St, New York City,NY,10001 +157772,AA Batteries (4-pack),1,3.84,2019-02-22 13:18:00,805 11th St, New York City,NY,10001 +157773,Wired Headphones,1,11.99,2019-02-16 19:34:00,772 Maple St, San Francisco,CA,94016 +157774,Wired Headphones,1,11.99,2019-02-12 15:17:00,649 Meadow St, San Francisco,CA,94016 +157775,AA Batteries (4-pack),2,3.84,2019-02-14 15:18:00,634 River St, San Francisco,CA,94016 +157776,AA Batteries (4-pack),2,3.84,2019-02-25 21:11:00,155 Main St, Seattle,WA,98101 +157777,34in Ultrawide Monitor,1,379.99,2019-02-17 16:15:00,704 Hickory St, San Francisco,CA,94016 +157778,Wired Headphones,1,11.99,2019-02-15 07:29:00,856 Chestnut St, Boston,MA,02215 +157779,Bose SoundSport Headphones,1,99.99,2019-02-17 18:09:00,18 9th St, Dallas,TX,75001 +157780,Google Phone,1,600.0,2019-02-14 09:12:00,161 12th St, San Francisco,CA,94016 +157781,Bose SoundSport Headphones,1,99.99,2019-02-03 20:36:00,620 Ridge St, San Francisco,CA,94016 +157782,Apple Airpods Headphones,1,150.0,2019-02-19 12:55:00,248 11th St, San Francisco,CA,94016 +157783,USB-C Charging Cable,1,11.95,2019-02-04 17:09:00,475 Elm St, Boston,MA,02215 +157784,Apple Airpods Headphones,1,150.0,2019-02-17 08:03:00,575 Park St, Seattle,WA,98101 +157785,AA Batteries (4-pack),1,3.84,2019-02-07 10:35:00,358 6th St, Los Angeles,CA,90001 +157786,Apple Airpods Headphones,1,150.0,2019-02-13 00:30:00,65 14th St, Boston,MA,02215 +157787,Lightning Charging Cable,1,14.95,2019-02-22 15:58:00,227 Sunset St, Portland,OR,97035 +157788,AA Batteries (4-pack),2,3.84,2019-02-13 21:02:00,261 North St, Portland,OR,97035 +157789,iPhone,1,700.0,2019-02-17 20:08:00,984 Forest St, San Francisco,CA,94016 +157790,AAA Batteries (4-pack),2,2.99,2019-02-19 10:34:00,497 Park St, Boston,MA,02215 +157791,Apple Airpods Headphones,1,150.0,2019-02-07 17:38:00,75 7th St, Boston,MA,02215 +157792,Vareebadd Phone,1,400.0,2019-02-09 19:31:00,291 10th St, Los Angeles,CA,90001 +157793,Wired Headphones,1,11.99,2019-02-13 22:49:00,718 Center St, Seattle,WA,98101 +157794,Lightning Charging Cable,1,14.95,2019-02-25 12:04:00,287 Highland St, San Francisco,CA,94016 +157794,ThinkPad Laptop,1,999.99,2019-02-25 12:04:00,287 Highland St, San Francisco,CA,94016 +157795,Lightning Charging Cable,1,14.95,2019-02-02 22:09:00,33 8th St, Atlanta,GA,30301 +157796,Lightning Charging Cable,1,14.95,2019-02-27 23:00:00,308 13th St, San Francisco,CA,94016 +157797,27in FHD Monitor,1,149.99,2019-02-12 07:53:00,617 North St, San Francisco,CA,94016 +157798,AAA Batteries (4-pack),2,2.99,2019-02-10 14:24:00,392 Washington St, Los Angeles,CA,90001 +157799,AAA Batteries (4-pack),1,2.99,2019-02-21 14:51:00,318 Walnut St, Dallas,TX,75001 +157800,iPhone,1,700.0,2019-02-13 01:17:00,536 Washington St, Seattle,WA,98101 +157801,AAA Batteries (4-pack),2,2.99,2019-02-12 11:37:00,656 Sunset St, San Francisco,CA,94016 +157802,Flatscreen TV,1,300.0,2019-02-12 07:48:00,546 1st St, Dallas,TX,75001 +157803,Lightning Charging Cable,1,14.95,2019-02-12 17:32:00,315 Adams St, San Francisco,CA,94016 +157804,USB-C Charging Cable,1,11.95,2019-02-20 01:09:00,318 Madison St, Boston,MA,02215 +157805,AA Batteries (4-pack),1,3.84,2019-02-03 16:04:00,566 South St, Boston,MA,02215 +157806,Macbook Pro Laptop,1,1700.0,2019-02-05 06:04:00,484 Pine St, Dallas,TX,75001 +157807,AAA Batteries (4-pack),3,2.99,2019-02-06 15:19:00,602 Sunset St, San Francisco,CA,94016 +157808,Bose SoundSport Headphones,1,99.99,2019-02-16 00:45:00,701 Hill St, Dallas,TX,75001 +157809,Apple Airpods Headphones,1,150.0,2019-02-25 14:35:00,999 Wilson St, New York City,NY,10001 +157810,Bose SoundSport Headphones,1,99.99,2019-02-27 04:06:00,236 9th St, San Francisco,CA,94016 +157811,USB-C Charging Cable,1,11.95,2019-02-15 12:27:00,815 4th St, Atlanta,GA,30301 +157812,Lightning Charging Cable,1,14.95,2019-02-23 14:50:00,822 Center St, San Francisco,CA,94016 +157813,Bose SoundSport Headphones,1,99.99,2019-02-05 19:20:00,737 Maple St, San Francisco,CA,94016 +157814,AA Batteries (4-pack),2,3.84,2019-02-07 15:55:00,417 Main St, Los Angeles,CA,90001 +157815,USB-C Charging Cable,1,11.95,2019-02-13 14:47:00,564 Dogwood St, New York City,NY,10001 +157816,27in FHD Monitor,1,149.99,2019-02-10 20:28:00,742 Sunset St, Los Angeles,CA,90001 +157817,AAA Batteries (4-pack),1,2.99,2019-02-01 23:55:00,520 Center St, Austin,TX,73301 +157818,Macbook Pro Laptop,1,1700.0,2019-02-16 13:17:00,442 West St, Atlanta,GA,30301 +157819,27in FHD Monitor,1,149.99,2019-02-26 08:27:00,521 13th St, Seattle,WA,98101 +157820,27in 4K Gaming Monitor,1,389.99,2019-02-21 15:10:00,503 Meadow St, Los Angeles,CA,90001 +157821,Apple Airpods Headphones,1,150.0,2019-02-26 16:19:00,882 2nd St, Atlanta,GA,30301 +157822,20in Monitor,1,109.99,2019-02-12 14:04:00,215 North St, Boston,MA,02215 +157823,Apple Airpods Headphones,1,150.0,2019-02-26 13:46:00,727 Main St, New York City,NY,10001 +157824,AAA Batteries (4-pack),1,2.99,2019-02-10 21:56:00,381 9th St, Los Angeles,CA,90001 +157825,Wired Headphones,1,11.99,2019-02-13 13:33:00,481 2nd St, New York City,NY,10001 +157826,AAA Batteries (4-pack),2,2.99,2019-02-01 21:11:00,455 Dogwood St, Austin,TX,73301 +157827,27in FHD Monitor,1,149.99,2019-02-09 23:05:00,545 Washington St, New York City,NY,10001 +157827,LG Dryer,1,600.0,2019-02-09 23:05:00,545 Washington St, New York City,NY,10001 +157828,Google Phone,1,600.0,2019-02-09 19:57:00,676 11th St, San Francisco,CA,94016 +157829,Apple Airpods Headphones,1,150.0,2019-02-27 23:57:00,251 Lincoln St, San Francisco,CA,94016 +157830,iPhone,1,700.0,2019-02-12 10:32:00,770 Johnson St, Los Angeles,CA,90001 +157831,Bose SoundSport Headphones,1,99.99,2019-02-18 16:17:00,389 Pine St, Portland,OR,97035 +157832,Wired Headphones,1,11.99,2019-02-08 19:40:00,922 11th St, Seattle,WA,98101 +157833,Wired Headphones,1,11.99,2019-02-01 17:12:00,786 8th St, Atlanta,GA,30301 +157834,AAA Batteries (4-pack),2,2.99,2019-02-24 18:16:00,762 Maple St, Boston,MA,02215 +157835,27in 4K Gaming Monitor,1,389.99,2019-02-23 21:39:00,471 12th St, Los Angeles,CA,90001 +157836,AAA Batteries (4-pack),2,2.99,2019-02-16 12:20:00,422 Cedar St, New York City,NY,10001 +157837,27in FHD Monitor,1,149.99,2019-02-14 20:07:00,820 Willow St, New York City,NY,10001 +157838,USB-C Charging Cable,2,11.95,2019-02-03 12:32:00,15 10th St, San Francisco,CA,94016 +157839,AA Batteries (4-pack),1,3.84,2019-02-01 13:35:00,143 Sunset St, Boston,MA,02215 +157840,iPhone,1,700.0,2019-02-17 18:31:00,858 9th St, San Francisco,CA,94016 +157841,USB-C Charging Cable,1,11.95,2019-02-23 18:15:00,461 Ridge St, San Francisco,CA,94016 +157842,AA Batteries (4-pack),1,3.84,2019-02-26 12:11:00,85 Sunset St, San Francisco,CA,94016 +157843,Lightning Charging Cable,1,14.95,2019-02-02 18:57:00,119 11th St, New York City,NY,10001 +157844,AAA Batteries (4-pack),1,2.99,2019-02-05 11:56:00,754 4th St, Boston,MA,02215 +157845,iPhone,1,700.0,2019-02-01 06:28:00,708 Highland St, Boston,MA,02215 +157845,Lightning Charging Cable,1,14.95,2019-02-01 06:28:00,708 Highland St, Boston,MA,02215 +157846,Apple Airpods Headphones,1,150.0,2019-02-19 15:46:00,140 Spruce St, Atlanta,GA,30301 +157847,Google Phone,1,600.0,2019-02-25 18:56:00,42 Highland St, San Francisco,CA,94016 +157848,AAA Batteries (4-pack),1,2.99,2019-02-04 22:22:00,893 Meadow St, Dallas,TX,75001 +157849,AAA Batteries (4-pack),1,2.99,2019-02-10 20:04:00,441 Elm St, Los Angeles,CA,90001 +157850,AAA Batteries (4-pack),5,2.99,2019-02-21 13:51:00,568 4th St, Dallas,TX,75001 +157851,USB-C Charging Cable,1,11.95,2019-02-25 20:46:00,278 8th St, Atlanta,GA,30301 +157852,Flatscreen TV,1,300.0,2019-02-17 23:38:00,988 Sunset St, Dallas,TX,75001 +157853,Lightning Charging Cable,1,14.95,2019-02-03 18:32:00,349 11th St, Dallas,TX,75001 +157854,AAA Batteries (4-pack),1,2.99,2019-02-24 12:27:00,7 Chestnut St, Boston,MA,02215 +157855,Apple Airpods Headphones,1,150.0,2019-02-05 00:40:00,496 Main St, San Francisco,CA,94016 +157856,Bose SoundSport Headphones,1,99.99,2019-02-04 18:08:00,210 Center St, Los Angeles,CA,90001 +157857,Wired Headphones,1,11.99,2019-02-19 10:41:00,611 West St, Portland,OR,97035 +157858,USB-C Charging Cable,2,11.95,2019-02-04 22:11:00,423 9th St, Dallas,TX,75001 +157859,Wired Headphones,1,11.99,2019-02-11 10:46:00,713 8th St, Boston,MA,02215 +157860,Apple Airpods Headphones,1,150.0,2019-02-08 12:36:00,363 Cherry St, Boston,MA,02215 +157861,27in FHD Monitor,1,149.99,2019-02-11 19:29:00,151 6th St, Atlanta,GA,30301 +157862,Apple Airpods Headphones,1,150.0,2019-02-11 22:57:00,287 Main St, Boston,MA,02215 +157863,Wired Headphones,1,11.99,2019-02-07 18:21:00,917 River St, Boston,MA,02215 +157864,Lightning Charging Cable,1,14.95,2019-02-13 13:24:00,348 Jefferson St, Boston,MA,02215 +157865,Apple Airpods Headphones,1,150.0,2019-02-27 18:00:00,975 Cedar St, Boston,MA,02215 +157866,USB-C Charging Cable,1,11.95,2019-02-04 12:34:00,868 6th St, Dallas,TX,75001 +157867,AA Batteries (4-pack),4,3.84,2019-02-24 15:00:00,601 North St, San Francisco,CA,94016 +157868,Flatscreen TV,1,300.0,2019-02-05 20:42:00,464 Church St, Portland,OR,97035 +157869,Wired Headphones,1,11.99,2019-02-01 17:20:00,474 2nd St, Atlanta,GA,30301 +157870,AA Batteries (4-pack),1,3.84,2019-02-24 22:29:00,117 Adams St, New York City,NY,10001 +157871,USB-C Charging Cable,2,11.95,2019-02-20 17:12:00,780 Lake St, New York City,NY,10001 +157872,iPhone,1,700.0,2019-02-12 13:04:00,814 Pine St, Seattle,WA,98101 +157873,USB-C Charging Cable,1,11.95,2019-02-12 20:38:00,7 Pine St, San Francisco,CA,94016 +157874,USB-C Charging Cable,1,11.95,2019-02-28 14:14:00,968 Dogwood St, New York City,NY,10001 +157875,Apple Airpods Headphones,1,150.0,2019-02-10 15:10:00,174 Washington St, Austin,TX,73301 +157876,Apple Airpods Headphones,1,150.0,2019-02-20 14:46:00,253 Jackson St, San Francisco,CA,94016 +157877,27in FHD Monitor,1,149.99,2019-02-17 17:52:00,196 Adams St, Portland,ME,04101 +157878,Lightning Charging Cable,1,14.95,2019-02-16 15:10:00,762 Pine St, Austin,TX,73301 +157879,Wired Headphones,1,11.99,2019-02-01 23:58:00,80 Pine St, Dallas,TX,75001 +157880,Bose SoundSport Headphones,1,99.99,2019-02-05 15:58:00,405 Elm St, Atlanta,GA,30301 +157881,Bose SoundSport Headphones,1,99.99,2019-02-01 13:56:00,339 Adams St, Portland,OR,97035 +157882,Wired Headphones,1,11.99,2019-02-26 22:41:00,896 Dogwood St, Seattle,WA,98101 +157883,Apple Airpods Headphones,1,150.0,2019-02-06 00:02:00,229 Madison St, Dallas,TX,75001 +157884,27in 4K Gaming Monitor,1,389.99,2019-02-14 15:47:00,274 Cherry St, Boston,MA,02215 +157885,Wired Headphones,1,11.99,2019-02-16 09:18:00,982 Johnson St, San Francisco,CA,94016 +157886,USB-C Charging Cable,1,11.95,2019-02-26 07:20:00,713 13th St, San Francisco,CA,94016 +157887,AA Batteries (4-pack),1,3.84,2019-02-11 11:53:00,245 4th St, Atlanta,GA,30301 +157888,20in Monitor,1,109.99,2019-02-17 13:19:00,506 Main St, Atlanta,GA,30301 +157889,Flatscreen TV,1,300.0,2019-02-20 17:31:00,433 Adams St, San Francisco,CA,94016 +157890,USB-C Charging Cable,1,11.95,2019-02-28 11:58:00,923 Walnut St, Los Angeles,CA,90001 +157891,Apple Airpods Headphones,1,150.0,2019-02-04 10:16:00,364 7th St, San Francisco,CA,94016 +157892,USB-C Charging Cable,1,11.95,2019-02-24 10:44:00,599 West St, San Francisco,CA,94016 +157893,27in FHD Monitor,1,149.99,2019-02-13 20:40:00,470 12th St, Boston,MA,02215 +157894,Flatscreen TV,1,300.0,2019-02-02 15:21:00,380 Hickory St, New York City,NY,10001 +157895,Google Phone,1,600.0,2019-02-20 12:07:00,689 Willow St, Atlanta,GA,30301 +157896,Wired Headphones,2,11.99,2019-02-18 14:47:00,583 14th St, San Francisco,CA,94016 +157897,Wired Headphones,1,11.99,2019-02-15 13:52:00,590 Elm St, Portland,OR,97035 +157898,ThinkPad Laptop,1,999.99,2019-02-26 22:44:00,724 8th St, Los Angeles,CA,90001 +157899,Flatscreen TV,1,300.0,2019-03-01 01:41:00,506 North St, San Francisco,CA,94016 +157900,Apple Airpods Headphones,1,150.0,2019-02-15 16:32:00,563 Walnut St, Boston,MA,02215 +157901,AA Batteries (4-pack),1,3.84,2019-02-14 18:24:00,51 12th St, Dallas,TX,75001 +157902,Bose SoundSport Headphones,1,99.99,2019-02-19 06:50:00,919 Jackson St, New York City,NY,10001 +157903,Wired Headphones,1,11.99,2019-02-09 06:26:00,323 West St, Portland,OR,97035 +157904,ThinkPad Laptop,1,999.99,2019-02-08 22:11:00,391 4th St, Dallas,TX,75001 +157905,AAA Batteries (4-pack),1,2.99,2019-02-28 17:28:00,850 5th St, San Francisco,CA,94016 +157906,27in FHD Monitor,1,149.99,2019-02-25 13:25:00,888 Jefferson St, Austin,TX,73301 +157907,Lightning Charging Cable,1,14.95,2019-02-24 12:52:00,172 Jackson St, Atlanta,GA,30301 +157908,Lightning Charging Cable,1,14.95,2019-02-06 19:22:00,508 Forest St, Los Angeles,CA,90001 +157909,27in FHD Monitor,1,149.99,2019-02-12 12:40:00,684 Dogwood St, San Francisco,CA,94016 +157909,20in Monitor,1,109.99,2019-02-12 12:40:00,684 Dogwood St, San Francisco,CA,94016 +157910,AA Batteries (4-pack),1,3.84,2019-02-24 11:57:00,983 South St, Portland,ME,04101 +157911,Apple Airpods Headphones,1,150.0,2019-02-17 09:06:00,175 Pine St, Boston,MA,02215 +157912,Flatscreen TV,1,300.0,2019-02-17 21:15:00,522 Pine St, Los Angeles,CA,90001 +157913,34in Ultrawide Monitor,1,379.99,2019-02-12 22:24:00,229 Church St, Los Angeles,CA,90001 +157914,USB-C Charging Cable,1,11.95,2019-02-10 21:00:00,852 Forest St, Boston,MA,02215 +157915,Apple Airpods Headphones,1,150.0,2019-02-27 19:42:00,463 River St, Dallas,TX,75001 +157916,Bose SoundSport Headphones,1,99.99,2019-02-21 18:13:00,757 4th St, Los Angeles,CA,90001 +157917,iPhone,1,700.0,2019-02-04 23:46:00,637 Chestnut St, San Francisco,CA,94016 +157918,34in Ultrawide Monitor,1,379.99,2019-02-25 09:35:00,644 5th St, San Francisco,CA,94016 +157919,Apple Airpods Headphones,1,150.0,2019-02-28 18:28:00,315 Hickory St, San Francisco,CA,94016 +157920,USB-C Charging Cable,1,11.95,2019-02-18 13:09:00,843 Highland St, San Francisco,CA,94016 +157921,Apple Airpods Headphones,1,150.0,2019-02-04 07:13:00,330 West St, Boston,MA,02215 +157922,iPhone,1,700.0,2019-02-17 19:01:00,72 Adams St, Dallas,TX,75001 +157923,Google Phone,1,600.0,2019-02-24 07:20:00,445 8th St, Boston,MA,02215 +157924,AAA Batteries (4-pack),1,2.99,2019-02-15 17:54:00,587 11th St, Los Angeles,CA,90001 +157925,Google Phone,1,600.0,2019-02-11 05:25:00,63 Highland St, Los Angeles,CA,90001 +157926,Vareebadd Phone,1,400.0,2019-02-06 20:35:00,491 Cherry St, Los Angeles,CA,90001 +157927,Bose SoundSport Headphones,1,99.99,2019-02-03 09:47:00,25 North St, San Francisco,CA,94016 +157928,AA Batteries (4-pack),1,3.84,2019-02-12 20:05:00,137 6th St, Los Angeles,CA,90001 +157929,Flatscreen TV,1,300.0,2019-02-26 13:35:00,256 Center St, Seattle,WA,98101 +157930,USB-C Charging Cable,1,11.95,2019-02-08 17:42:00,672 Chestnut St, Atlanta,GA,30301 +157931,Wired Headphones,1,11.99,2019-02-09 10:19:00,372 Adams St, Austin,TX,73301 +157932,AA Batteries (4-pack),1,3.84,2019-02-03 18:44:00,128 Meadow St, Atlanta,GA,30301 +157933,USB-C Charging Cable,1,11.95,2019-02-20 15:41:00,645 Pine St, New York City,NY,10001 +157934,34in Ultrawide Monitor,1,379.99,2019-02-26 19:04:00,292 Park St, Dallas,TX,75001 +157935,Wired Headphones,1,11.99,2019-02-13 14:32:00,149 Cedar St, Austin,TX,73301 +157936,AAA Batteries (4-pack),1,2.99,2019-02-24 15:04:00,749 12th St, San Francisco,CA,94016 +157937,USB-C Charging Cable,1,11.95,2019-02-04 18:35:00,737 Cherry St, San Francisco,CA,94016 +157938,27in FHD Monitor,1,149.99,2019-02-06 10:29:00,102 Sunset St, Dallas,TX,75001 +157939,iPhone,1,700.0,2019-02-23 20:39:00,617 Ridge St, Austin,TX,73301 +157940,Wired Headphones,1,11.99,2019-02-18 11:46:00,27 South St, San Francisco,CA,94016 +157941,AAA Batteries (4-pack),2,2.99,2019-02-01 19:04:00,372 Church St, Portland,OR,97035 +157942,Lightning Charging Cable,2,14.95,2019-02-27 08:33:00,977 Johnson St, San Francisco,CA,94016 +157943,27in FHD Monitor,1,149.99,2019-02-18 18:53:00,731 Washington St, Seattle,WA,98101 +157944,USB-C Charging Cable,1,11.95,2019-02-17 08:36:00,821 River St, New York City,NY,10001 +157945,Lightning Charging Cable,1,14.95,2019-02-23 12:11:00,630 4th St, Austin,TX,73301 +157946,Lightning Charging Cable,1,14.95,2019-02-23 12:09:00,519 Jefferson St, Boston,MA,02215 +157947,20in Monitor,1,109.99,2019-02-19 15:57:00,960 10th St, Los Angeles,CA,90001 +157948,Lightning Charging Cable,1,14.95,2019-02-12 14:44:00,793 Lakeview St, San Francisco,CA,94016 +157949,USB-C Charging Cable,1,11.95,2019-02-27 13:52:00,938 South St, Atlanta,GA,30301 +157950,Apple Airpods Headphones,1,150.0,2019-02-27 21:30:00,777 Elm St, Boston,MA,02215 +157951,27in 4K Gaming Monitor,1,389.99,2019-02-21 14:50:00,165 Ridge St, Los Angeles,CA,90001 +157952,AAA Batteries (4-pack),2,2.99,2019-02-21 10:48:00,785 Ridge St, Dallas,TX,75001 +157953,34in Ultrawide Monitor,1,379.99,2019-02-22 08:11:00,867 1st St, San Francisco,CA,94016 +157954,Flatscreen TV,1,300.0,2019-02-28 21:49:00,42 Willow St, New York City,NY,10001 +157955,USB-C Charging Cable,1,11.95,2019-02-06 23:05:00,192 10th St, San Francisco,CA,94016 +157956,Wired Headphones,1,11.99,2019-02-02 22:01:00,429 Hickory St, New York City,NY,10001 +157957,ThinkPad Laptop,1,999.99,2019-02-07 08:37:00,61 5th St, Boston,MA,02215 +157958,AAA Batteries (4-pack),1,2.99,2019-02-16 21:39:00,426 Adams St, Boston,MA,02215 +157959,AAA Batteries (4-pack),2,2.99,2019-02-22 15:06:00,184 8th St, Boston,MA,02215 +157960,Lightning Charging Cable,1,14.95,2019-02-22 22:49:00,125 Hill St, San Francisco,CA,94016 +157960,Google Phone,1,600.0,2019-02-22 22:49:00,125 Hill St, San Francisco,CA,94016 +157961,AAA Batteries (4-pack),1,2.99,2019-02-14 08:30:00,848 Park St, Seattle,WA,98101 +157962,Apple Airpods Headphones,1,150.0,2019-02-19 09:32:00,590 Wilson St, Boston,MA,02215 +157963,27in 4K Gaming Monitor,1,389.99,2019-02-18 19:26:00,591 Hickory St, Austin,TX,73301 +157964,Lightning Charging Cable,1,14.95,2019-02-27 17:09:00,627 11th St, Boston,MA,02215 +157965,iPhone,1,700.0,2019-02-15 21:58:00,739 10th St, Boston,MA,02215 +157966,AA Batteries (4-pack),1,3.84,2019-02-24 14:17:00,935 12th St, Boston,MA,02215 +157967,USB-C Charging Cable,1,11.95,2019-02-17 13:54:00,444 Ridge St, Atlanta,GA,30301 +157968,AAA Batteries (4-pack),3,2.99,2019-02-07 15:41:00,625 Ridge St, Seattle,WA,98101 +157969,Bose SoundSport Headphones,1,99.99,2019-02-08 18:07:00,644 Wilson St, San Francisco,CA,94016 +157970,Bose SoundSport Headphones,1,99.99,2019-02-26 21:27:00,504 4th St, Boston,MA,02215 +157971,iPhone,1,700.0,2019-02-10 17:11:00,349 Hill St, New York City,NY,10001 +157972,Lightning Charging Cable,1,14.95,2019-02-06 10:08:00,234 North St, San Francisco,CA,94016 +157973,Lightning Charging Cable,1,14.95,2019-02-16 18:37:00,459 Park St, Los Angeles,CA,90001 +157974,Bose SoundSport Headphones,1,99.99,2019-02-06 10:09:00,317 Willow St, Dallas,TX,75001 +157975,ThinkPad Laptop,1,999.99,2019-02-16 05:29:00,61 Lakeview St, Los Angeles,CA,90001 +157976,Lightning Charging Cable,1,14.95,2019-02-04 10:20:00,416 North St, Boston,MA,02215 +157977,AA Batteries (4-pack),2,3.84,2019-02-02 23:48:00,293 Jefferson St, Seattle,WA,98101 +157978,USB-C Charging Cable,1,11.95,2019-02-04 22:52:00,80 11th St, Los Angeles,CA,90001 +157979,Wired Headphones,1,11.99,2019-02-09 17:58:00,393 Sunset St, San Francisco,CA,94016 +157980,Apple Airpods Headphones,1,150.0,2019-02-11 18:38:00,916 North St, Dallas,TX,75001 +157981,Wired Headphones,1,11.99,2019-02-05 14:29:00,661 Maple St, Boston,MA,02215 +157982,Macbook Pro Laptop,1,1700.0,2019-02-24 18:09:00,123 Lakeview St, San Francisco,CA,94016 +157983,20in Monitor,1,109.99,2019-02-27 08:22:00,358 Highland St, Dallas,TX,75001 +157984,USB-C Charging Cable,1,11.95,2019-02-03 00:33:00,295 10th St, Dallas,TX,75001 +157985,USB-C Charging Cable,1,11.95,2019-02-13 13:21:00,950 10th St, San Francisco,CA,94016 +157986,USB-C Charging Cable,1,11.95,2019-02-10 11:10:00,226 Sunset St, Boston,MA,02215 +157987,Lightning Charging Cable,1,14.95,2019-02-22 18:57:00,839 Center St, Boston,MA,02215 +157988,Lightning Charging Cable,2,14.95,2019-02-14 11:55:00,421 Church St, Los Angeles,CA,90001 +157989,Apple Airpods Headphones,1,150.0,2019-02-26 00:27:00,165 Washington St, Dallas,TX,75001 +157990,Lightning Charging Cable,1,14.95,2019-02-28 17:48:00,412 Maple St, Boston,MA,02215 +157991,Apple Airpods Headphones,1,150.0,2019-02-28 09:40:00,712 Hickory St, Los Angeles,CA,90001 +157992,USB-C Charging Cable,1,11.95,2019-02-08 00:22:00,130 Cedar St, Atlanta,GA,30301 +157993,AA Batteries (4-pack),1,3.84,2019-02-16 11:07:00,300 Jefferson St, San Francisco,CA,94016 +157994,Flatscreen TV,1,300.0,2019-02-11 20:35:00,173 Adams St, San Francisco,CA,94016 +157995,AAA Batteries (4-pack),1,2.99,2019-02-19 12:17:00,682 North St, Dallas,TX,75001 +157996,ThinkPad Laptop,1,999.99,2019-02-13 19:15:00,69 Sunset St, Los Angeles,CA,90001 +157997,iPhone,1,700.0,2019-02-09 20:12:00,432 Cherry St, Portland,ME,04101 +157998,iPhone,1,700.0,2019-02-04 17:34:00,569 Maple St, San Francisco,CA,94016 +157999,20in Monitor,1,109.99,2019-02-14 20:59:00,690 Johnson St, Los Angeles,CA,90001 +158000,Lightning Charging Cable,1,14.95,2019-02-13 21:58:00,301 Hickory St, San Francisco,CA,94016 +158001,Bose SoundSport Headphones,1,99.99,2019-02-09 18:02:00,396 Dogwood St, San Francisco,CA,94016 +158002,AAA Batteries (4-pack),1,2.99,2019-02-16 22:15:00,860 Maple St, New York City,NY,10001 +158003,AAA Batteries (4-pack),3,2.99,2019-02-12 07:06:00,464 Lake St, Austin,TX,73301 +158004,Vareebadd Phone,1,400.0,2019-02-04 17:47:00,62 2nd St, Los Angeles,CA,90001 +158005,Bose SoundSport Headphones,1,99.99,2019-02-28 00:12:00,64 2nd St, San Francisco,CA,94016 +158006,Macbook Pro Laptop,1,1700.0,2019-02-06 13:44:00,326 Spruce St, Seattle,WA,98101 +158007,Wired Headphones,1,11.99,2019-02-28 20:06:00,696 6th St, Los Angeles,CA,90001 +158008,34in Ultrawide Monitor,1,379.99,2019-02-05 11:33:00,501 Sunset St, New York City,NY,10001 +158009,Wired Headphones,1,11.99,2019-02-09 00:04:00,424 Willow St, Atlanta,GA,30301 +158010,AAA Batteries (4-pack),1,2.99,2019-02-01 13:46:00,977 2nd St, Los Angeles,CA,90001 +158011,Bose SoundSport Headphones,1,99.99,2019-02-13 08:56:00,717 Chestnut St, Atlanta,GA,30301 +158012,USB-C Charging Cable,1,11.95,2019-02-01 19:30:00,591 Wilson St, Atlanta,GA,30301 +158013,AA Batteries (4-pack),1,3.84,2019-02-01 14:06:00,10 Spruce St, Los Angeles,CA,90001 +158014,USB-C Charging Cable,1,11.95,2019-02-23 15:14:00,223 Park St, San Francisco,CA,94016 +158015,AAA Batteries (4-pack),2,2.99,2019-02-22 18:56:00,148 Madison St, Los Angeles,CA,90001 +158016,USB-C Charging Cable,1,11.95,2019-02-09 18:00:00,124 6th St, San Francisco,CA,94016 +158017,USB-C Charging Cable,1,11.95,2019-02-01 12:10:00,382 Spruce St, New York City,NY,10001 +158018,Apple Airpods Headphones,1,150.0,2019-02-12 18:11:00,237 Elm St, San Francisco,CA,94016 +158019,AA Batteries (4-pack),2,3.84,2019-02-10 17:53:00,842 Madison St, San Francisco,CA,94016 +158020,Wired Headphones,1,11.99,2019-02-16 09:01:00,668 Maple St, Seattle,WA,98101 +158021,AA Batteries (4-pack),1,3.84,2019-02-20 11:25:00,862 Main St, Boston,MA,02215 +158022,Lightning Charging Cable,1,14.95,2019-02-09 00:20:00,4 North St, Boston,MA,02215 +158022,Wired Headphones,2,11.99,2019-02-09 00:20:00,4 North St, Boston,MA,02215 +158023,ThinkPad Laptop,1,999.99,2019-02-09 07:43:00,604 West St, Los Angeles,CA,90001 +158024,AA Batteries (4-pack),1,3.84,2019-02-05 07:26:00,860 10th St, Los Angeles,CA,90001 +158025,Google Phone,1,600.0,2019-02-04 01:22:00,304 West St, Atlanta,GA,30301 +158026,AAA Batteries (4-pack),2,2.99,2019-02-18 16:45:00,201 Walnut St, Seattle,WA,98101 +158027,Lightning Charging Cable,1,14.95,2019-02-06 21:08:00,547 Main St, San Francisco,CA,94016 +158028,Apple Airpods Headphones,1,150.0,2019-02-06 21:19:00,636 Main St, San Francisco,CA,94016 +158029,USB-C Charging Cable,1,11.95,2019-02-08 19:39:00,896 Hill St, Austin,TX,73301 +158030,27in FHD Monitor,1,149.99,2019-02-27 08:43:00,873 Jefferson St, Austin,TX,73301 +158031,27in FHD Monitor,1,149.99,2019-02-15 10:38:00,326 13th St, San Francisco,CA,94016 +158032,Apple Airpods Headphones,1,150.0,2019-02-23 22:14:00,792 Jackson St, San Francisco,CA,94016 +158033,USB-C Charging Cable,1,11.95,2019-02-12 15:58:00,421 Lakeview St, Los Angeles,CA,90001 +158034,AAA Batteries (4-pack),1,2.99,2019-02-06 19:31:00,790 Wilson St, San Francisco,CA,94016 +158035,Lightning Charging Cable,1,14.95,2019-02-14 20:05:00,948 Highland St, Los Angeles,CA,90001 +158036,Lightning Charging Cable,2,14.95,2019-02-22 14:12:00,35 Walnut St, Seattle,WA,98101 +158037,Lightning Charging Cable,1,14.95,2019-02-24 17:14:00,262 River St, Los Angeles,CA,90001 +158038,USB-C Charging Cable,1,11.95,2019-02-20 18:05:00,697 South St, San Francisco,CA,94016 +158039,AAA Batteries (4-pack),1,2.99,2019-02-10 13:43:00,943 Willow St, San Francisco,CA,94016 +158040,Lightning Charging Cable,1,14.95,2019-02-10 19:41:00,426 5th St, Seattle,WA,98101 +158041,Lightning Charging Cable,1,14.95,2019-02-04 11:03:00,421 West St, Los Angeles,CA,90001 +158042,Lightning Charging Cable,1,14.95,2019-02-23 16:50:00,206 Sunset St, Portland,OR,97035 +158043,Bose SoundSport Headphones,1,99.99,2019-02-04 12:50:00,591 North St, San Francisco,CA,94016 +158044,Bose SoundSport Headphones,1,99.99,2019-02-25 21:06:00,780 Meadow St, Los Angeles,CA,90001 +158045,USB-C Charging Cable,1,11.95,2019-02-04 01:40:00,750 Wilson St, Atlanta,GA,30301 +158046,Vareebadd Phone,1,400.0,2019-02-13 15:34:00,27 Walnut St, Los Angeles,CA,90001 +158047,Apple Airpods Headphones,1,150.0,2019-02-14 19:51:00,969 Wilson St, Seattle,WA,98101 +158048,AAA Batteries (4-pack),1,2.99,2019-02-05 18:04:00,988 12th St, New York City,NY,10001 +158049,Google Phone,1,600.0,2019-02-16 08:07:00,392 13th St, San Francisco,CA,94016 +158050,34in Ultrawide Monitor,1,379.99,2019-02-15 17:34:00,328 Main St, San Francisco,CA,94016 +158051,Lightning Charging Cable,1,14.95,2019-02-01 14:12:00,735 7th St, San Francisco,CA,94016 +158052,Wired Headphones,1,11.99,2019-02-23 13:06:00,239 Johnson St, Seattle,WA,98101 +158053,Apple Airpods Headphones,1,150.0,2019-02-03 11:15:00,399 5th St, San Francisco,CA,94016 +158054,34in Ultrawide Monitor,1,379.99,2019-02-10 20:39:00,176 12th St, Boston,MA,02215 +158055,AAA Batteries (4-pack),1,2.99,2019-02-15 16:53:00,921 6th St, Austin,TX,73301 +158056,27in 4K Gaming Monitor,1,389.99,2019-02-06 14:32:00,473 Johnson St, Atlanta,GA,30301 +158057,Lightning Charging Cable,2,14.95,2019-02-09 01:18:00,637 8th St, Atlanta,GA,30301 +158058,Lightning Charging Cable,1,14.95,2019-02-24 07:24:00,601 Jefferson St, New York City,NY,10001 +158059,USB-C Charging Cable,1,11.95,2019-02-03 13:25:00,283 Walnut St, New York City,NY,10001 +158060,34in Ultrawide Monitor,1,379.99,2019-02-10 13:25:00,118 1st St, San Francisco,CA,94016 +158061,27in 4K Gaming Monitor,1,389.99,2019-02-28 23:55:00,554 North St, Boston,MA,02215 +158062,Lightning Charging Cable,1,14.95,2019-02-10 12:45:00,113 Meadow St, Boston,MA,02215 +158063,AA Batteries (4-pack),2,3.84,2019-02-18 19:59:00,766 Center St, Austin,TX,73301 +158064,Wired Headphones,1,11.99,2019-02-09 17:00:00,91 Sunset St, Atlanta,GA,30301 +158065,27in FHD Monitor,1,149.99,2019-02-04 10:52:00,812 Hickory St, San Francisco,CA,94016 +158066,ThinkPad Laptop,1,999.99,2019-02-17 09:44:00,349 Maple St, Boston,MA,02215 +158067,Vareebadd Phone,1,400.0,2019-02-02 20:18:00,202 8th St, Boston,MA,02215 +158068,Lightning Charging Cable,1,14.95,2019-02-09 16:46:00,482 Dogwood St, San Francisco,CA,94016 +158069,Wired Headphones,1,11.99,2019-02-14 21:06:00,665 Hill St, New York City,NY,10001 +158070,AA Batteries (4-pack),2,3.84,2019-02-27 19:56:00,58 Adams St, New York City,NY,10001 +158071,20in Monitor,1,109.99,2019-02-10 11:45:00,729 Lake St, New York City,NY,10001 +158072,USB-C Charging Cable,1,11.95,2019-02-24 13:36:00,341 Dogwood St, New York City,NY,10001 +158073,20in Monitor,1,109.99,2019-02-28 21:31:00,815 Center St, Boston,MA,02215 +158074,AA Batteries (4-pack),1,3.84,2019-02-23 02:34:00,315 Washington St, San Francisco,CA,94016 +158075,27in FHD Monitor,1,149.99,2019-02-26 08:10:00,302 Washington St, San Francisco,CA,94016 +158076,27in FHD Monitor,1,149.99,2019-02-04 12:37:00,418 Ridge St, Atlanta,GA,30301 +158077,Bose SoundSport Headphones,1,99.99,2019-02-13 14:48:00,760 Washington St, Austin,TX,73301 +158078,AA Batteries (4-pack),1,3.84,2019-02-20 18:05:00,422 Chestnut St, Los Angeles,CA,90001 +158079,Wired Headphones,1,11.99,2019-02-27 19:41:00,973 Jefferson St, Boston,MA,02215 +158080,Lightning Charging Cable,2,14.95,2019-02-18 10:09:00,35 Hickory St, Austin,TX,73301 +158081,Lightning Charging Cable,1,14.95,2019-02-13 16:52:00,375 Madison St, New York City,NY,10001 +158082,AA Batteries (4-pack),1,3.84,2019-02-03 16:42:00,733 7th St, Boston,MA,02215 +158083,Wired Headphones,1,11.99,2019-02-16 13:55:00,386 North St, Seattle,WA,98101 +158084,Wired Headphones,1,11.99,2019-02-12 11:36:00,364 13th St, Boston,MA,02215 +158085,Macbook Pro Laptop,1,1700.0,2019-02-05 16:50:00,773 Chestnut St, Los Angeles,CA,90001 +158086,AAA Batteries (4-pack),1,2.99,2019-02-12 13:59:00,796 12th St, Atlanta,GA,30301 +158086,Wired Headphones,1,11.99,2019-02-12 13:59:00,796 12th St, Atlanta,GA,30301 +158087,AA Batteries (4-pack),1,3.84,2019-02-22 16:32:00,735 13th St, Los Angeles,CA,90001 +158088,AA Batteries (4-pack),2,3.84,2019-02-22 21:08:00,204 2nd St, San Francisco,CA,94016 +158089,Wired Headphones,1,11.99,2019-02-18 18:15:00,889 9th St, Boston,MA,02215 +158090,Flatscreen TV,1,300.0,2019-02-16 01:59:00,492 Jefferson St, Boston,MA,02215 +158091,Lightning Charging Cable,1,14.95,2019-02-27 22:41:00,479 11th St, San Francisco,CA,94016 +158092,Wired Headphones,2,11.99,2019-02-05 11:31:00,843 Madison St, Los Angeles,CA,90001 +158093,34in Ultrawide Monitor,1,379.99,2019-02-13 19:20:00,612 Church St, Dallas,TX,75001 +158094,Lightning Charging Cable,1,14.95,2019-02-26 22:11:00,490 River St, New York City,NY,10001 +158095,iPhone,1,700.0,2019-02-08 23:53:00,142 Hickory St, Dallas,TX,75001 +158096,Lightning Charging Cable,1,14.95,2019-02-28 09:51:00,493 5th St, Austin,TX,73301 +158097,Vareebadd Phone,1,400.0,2019-02-21 12:13:00,554 8th St, Atlanta,GA,30301 +158098,Macbook Pro Laptop,1,1700.0,2019-02-17 14:50:00,592 South St, Seattle,WA,98101 +158099,Google Phone,1,600.0,2019-02-11 16:46:00,450 Center St, New York City,NY,10001 +158100,Apple Airpods Headphones,1,150.0,2019-02-09 10:14:00,704 Main St, Los Angeles,CA,90001 +158101,AA Batteries (4-pack),1,3.84,2019-02-28 21:27:00,334 South St, Boston,MA,02215 +158102,20in Monitor,1,109.99,2019-02-07 23:37:00,338 7th St, New York City,NY,10001 +158102,AA Batteries (4-pack),1,3.84,2019-02-07 23:37:00,338 7th St, New York City,NY,10001 +158103,Lightning Charging Cable,2,14.95,2019-02-22 00:26:00,235 5th St, Portland,OR,97035 +158104,27in 4K Gaming Monitor,1,389.99,2019-02-21 22:08:00,239 Forest St, San Francisco,CA,94016 +158105,Bose SoundSport Headphones,1,99.99,2019-02-07 13:31:00,304 Willow St, Boston,MA,02215 +158106,USB-C Charging Cable,1,11.95,2019-02-12 18:19:00,243 Willow St, Austin,TX,73301 +158107,Google Phone,1,600.0,2019-02-07 18:12:00,336 4th St, Los Angeles,CA,90001 +158107,USB-C Charging Cable,1,11.95,2019-02-07 18:12:00,336 4th St, Los Angeles,CA,90001 +158107,Bose SoundSport Headphones,1,99.99,2019-02-07 18:12:00,336 4th St, Los Angeles,CA,90001 +158108,27in 4K Gaming Monitor,1,389.99,2019-02-03 19:07:00,636 2nd St, San Francisco,CA,94016 +158109,27in FHD Monitor,1,149.99,2019-02-08 23:19:00,995 Lake St, Dallas,TX,75001 +158110,Lightning Charging Cable,1,14.95,2019-02-22 01:51:00,702 Cherry St, San Francisco,CA,94016 +158111,ThinkPad Laptop,1,999.99,2019-02-14 08:01:00,756 10th St, San Francisco,CA,94016 +158112,Bose SoundSport Headphones,1,99.99,2019-02-02 17:46:00,273 Pine St, New York City,NY,10001 +158113,Lightning Charging Cable,1,14.95,2019-02-24 18:32:00,495 Dogwood St, San Francisco,CA,94016 +158114,AA Batteries (4-pack),1,3.84,2019-02-11 13:19:00,256 Ridge St, Boston,MA,02215 +158115,27in FHD Monitor,1,149.99,2019-02-03 18:17:00,324 Washington St, Portland,OR,97035 +158116,34in Ultrawide Monitor,1,379.99,2019-02-13 17:07:00,496 Cedar St, Dallas,TX,75001 +158117,Wired Headphones,1,11.99,2019-02-04 11:16:00,627 8th St, Atlanta,GA,30301 +158118,Bose SoundSport Headphones,1,99.99,2019-02-15 10:30:00,42 Walnut St, San Francisco,CA,94016 +158119,Wired Headphones,1,11.99,2019-02-20 10:58:00,128 4th St, San Francisco,CA,94016 +158120,34in Ultrawide Monitor,1,379.99,2019-02-20 23:29:00,422 2nd St, San Francisco,CA,94016 +158121,Wired Headphones,1,11.99,2019-02-06 06:37:00,623 Lakeview St, Los Angeles,CA,90001 +158122,27in 4K Gaming Monitor,1,389.99,2019-02-25 11:01:00,2 8th St, San Francisco,CA,94016 +158123,AAA Batteries (4-pack),3,2.99,2019-02-23 12:10:00,450 Spruce St, New York City,NY,10001 +158124,USB-C Charging Cable,1,11.95,2019-02-08 17:32:00,639 2nd St, New York City,NY,10001 +158125,27in FHD Monitor,1,149.99,2019-02-02 11:24:00,308 Pine St, New York City,NY,10001 +158126,USB-C Charging Cable,1,11.95,2019-02-28 11:06:00,332 Lakeview St, Dallas,TX,75001 +158127,USB-C Charging Cable,1,11.95,2019-02-01 15:37:00,290 Washington St, Atlanta,GA,30301 +158128,AAA Batteries (4-pack),1,2.99,2019-02-15 10:16:00,590 Lakeview St, Seattle,WA,98101 +158129,Flatscreen TV,1,300.0,2019-02-12 06:12:00,730 Chestnut St, Boston,MA,02215 +158130,27in 4K Gaming Monitor,1,389.99,2019-02-19 18:46:00,110 Main St, Portland,OR,97035 +158131,ThinkPad Laptop,1,999.99,2019-02-17 17:01:00,199 13th St, Dallas,TX,75001 +158132,Macbook Pro Laptop,1,1700.0,2019-02-03 19:04:00,729 Center St, New York City,NY,10001 +158133,27in 4K Gaming Monitor,1,389.99,2019-02-10 23:24:00,592 Jackson St, San Francisco,CA,94016 +158134,USB-C Charging Cable,1,11.95,2019-02-10 15:14:00,913 Sunset St, Austin,TX,73301 +158135,27in FHD Monitor,1,149.99,2019-02-17 15:19:00,263 Park St, New York City,NY,10001 +158136,USB-C Charging Cable,1,11.95,2019-02-18 16:16:00,789 Meadow St, Seattle,WA,98101 +158137,Wired Headphones,1,11.99,2019-02-18 12:15:00,202 Washington St, San Francisco,CA,94016 +158138,AA Batteries (4-pack),1,3.84,2019-02-04 12:36:00,922 Lakeview St, Atlanta,GA,30301 +158139,27in FHD Monitor,1,149.99,2019-02-08 14:52:00,613 Lakeview St, Los Angeles,CA,90001 +158140,USB-C Charging Cable,1,11.95,2019-02-20 14:55:00,57 Lincoln St, Dallas,TX,75001 +158141,Apple Airpods Headphones,1,150.0,2019-02-17 07:38:00,75 6th St, Portland,OR,97035 +158142,iPhone,1,700.0,2019-02-03 09:51:00,179 Hickory St, San Francisco,CA,94016 +158142,Apple Airpods Headphones,1,150.0,2019-02-03 09:51:00,179 Hickory St, San Francisco,CA,94016 +158143,20in Monitor,1,109.99,2019-02-06 13:51:00,426 Wilson St, Dallas,TX,75001 +158144,Bose SoundSport Headphones,1,99.99,2019-02-07 10:35:00,203 8th St, Los Angeles,CA,90001 +158145,Bose SoundSport Headphones,1,99.99,2019-02-03 15:41:00,672 5th St, San Francisco,CA,94016 +158146,AA Batteries (4-pack),1,3.84,2019-02-17 12:34:00,601 9th St, Los Angeles,CA,90001 +158147,USB-C Charging Cable,1,11.95,2019-02-10 09:08:00,605 Spruce St, New York City,NY,10001 +158148,iPhone,1,700.0,2019-02-26 14:07:00,833 Sunset St, Dallas,TX,75001 +158149,Wired Headphones,1,11.99,2019-02-27 19:19:00,855 Walnut St, New York City,NY,10001 +158150,USB-C Charging Cable,1,11.95,2019-02-02 14:49:00,44 Elm St, New York City,NY,10001 +158151,Apple Airpods Headphones,1,150.0,2019-02-07 00:16:00,299 10th St, San Francisco,CA,94016 +158152,AAA Batteries (4-pack),2,2.99,2019-02-25 17:37:00,37 2nd St, Atlanta,GA,30301 +158153,AA Batteries (4-pack),2,3.84,2019-02-09 18:40:00,64 Hill St, Los Angeles,CA,90001 +158154,20in Monitor,1,109.99,2019-02-06 15:14:00,428 12th St, Portland,OR,97035 +158155,Apple Airpods Headphones,1,150.0,2019-02-10 12:41:00,817 1st St, New York City,NY,10001 +158156,Lightning Charging Cable,1,14.95,2019-02-13 18:27:00,854 14th St, Los Angeles,CA,90001 +158157,Lightning Charging Cable,2,14.95,2019-02-12 08:40:00,909 Jefferson St, San Francisco,CA,94016 +158158,Bose SoundSport Headphones,1,99.99,2019-02-22 13:01:00,146 8th St, Dallas,TX,75001 +158159,AAA Batteries (4-pack),2,2.99,2019-02-10 11:16:00,851 Spruce St, Portland,OR,97035 +158160,AAA Batteries (4-pack),2,2.99,2019-02-04 11:05:00,690 2nd St, Los Angeles,CA,90001 +158161,Bose SoundSport Headphones,1,99.99,2019-02-27 15:28:00,958 Park St, San Francisco,CA,94016 +158162,AAA Batteries (4-pack),1,2.99,2019-02-19 20:12:00,514 Washington St, Boston,MA,02215 +158163,Wired Headphones,1,11.99,2019-02-07 01:14:00,530 Highland St, Los Angeles,CA,90001 +158164,Apple Airpods Headphones,1,150.0,2019-02-11 16:12:00,464 Jefferson St, New York City,NY,10001 +158165,AAA Batteries (4-pack),1,2.99,2019-02-16 11:26:00,310 Meadow St, Los Angeles,CA,90001 +158166,USB-C Charging Cable,1,11.95,2019-02-19 10:14:00,468 8th St, San Francisco,CA,94016 +158167,AAA Batteries (4-pack),2,2.99,2019-02-04 20:57:00,599 Hickory St, Dallas,TX,75001 +158168,Wired Headphones,1,11.99,2019-02-01 07:32:00,209 Jackson St, San Francisco,CA,94016 +158169,AAA Batteries (4-pack),1,2.99,2019-02-04 20:33:00,962 13th St, San Francisco,CA,94016 +158170,AAA Batteries (4-pack),1,2.99,2019-02-26 08:40:00,286 Willow St, New York City,NY,10001 +158171,USB-C Charging Cable,1,11.95,2019-02-12 20:46:00,163 7th St, San Francisco,CA,94016 +158172,Bose SoundSport Headphones,1,99.99,2019-02-09 22:38:00,800 7th St, New York City,NY,10001 +158173,USB-C Charging Cable,1,11.95,2019-02-06 11:00:00,90 6th St, San Francisco,CA,94016 +158174,AAA Batteries (4-pack),2,2.99,2019-02-20 19:06:00,343 Hickory St, Boston,MA,02215 +158175,AA Batteries (4-pack),1,3.84,2019-02-12 22:47:00,826 Spruce St, San Francisco,CA,94016 +158176,USB-C Charging Cable,1,11.95,2019-02-18 18:49:00,821 Spruce St, Austin,TX,73301 +158177,Google Phone,1,600.0,2019-02-06 18:50:00,510 Madison St, San Francisco,CA,94016 +158178,Lightning Charging Cable,1,14.95,2019-02-11 14:21:00,798 Forest St, New York City,NY,10001 +158179,27in FHD Monitor,1,149.99,2019-02-19 17:00:00,167 Madison St, Los Angeles,CA,90001 +158180,AAA Batteries (4-pack),1,2.99,2019-02-22 08:38:00,744 9th St, San Francisco,CA,94016 +158181,AAA Batteries (4-pack),1,2.99,2019-02-02 21:43:00,832 Cedar St, Los Angeles,CA,90001 +158182,LG Dryer,1,600.0,2019-02-17 10:24:00,878 Jefferson St, Austin,TX,73301 +158182,AA Batteries (4-pack),1,3.84,2019-02-17 10:24:00,878 Jefferson St, Austin,TX,73301 +158183,AAA Batteries (4-pack),1,2.99,2019-02-23 19:56:00,62 Johnson St, Dallas,TX,75001 +158184,AA Batteries (4-pack),1,3.84,2019-02-05 16:42:00,294 8th St, San Francisco,CA,94016 +158185,AA Batteries (4-pack),1,3.84,2019-02-22 10:09:00,671 13th St, Seattle,WA,98101 +158186,AAA Batteries (4-pack),1,2.99,2019-02-19 16:59:00,641 Highland St, San Francisco,CA,94016 +158187,AA Batteries (4-pack),2,3.84,2019-02-15 06:55:00,541 Ridge St, Seattle,WA,98101 +158188,Apple Airpods Headphones,1,150.0,2019-02-14 11:35:00,511 Maple St, New York City,NY,10001 +158189,AA Batteries (4-pack),2,3.84,2019-02-28 10:59:00,921 Lake St, New York City,NY,10001 +158190,Wired Headphones,1,11.99,2019-02-08 14:42:00,848 11th St, Boston,MA,02215 +158191,AAA Batteries (4-pack),1,2.99,2019-02-04 22:48:00,613 13th St, Seattle,WA,98101 +158192,iPhone,1,700.0,2019-02-09 14:46:00,585 13th St, San Francisco,CA,94016 +158193,Apple Airpods Headphones,1,150.0,2019-02-27 19:40:00,294 River St, San Francisco,CA,94016 +158194,34in Ultrawide Monitor,1,379.99,2019-02-14 06:13:00,786 10th St, San Francisco,CA,94016 +158195,Bose SoundSport Headphones,1,99.99,2019-02-19 07:58:00,438 Highland St, Boston,MA,02215 +158196,Bose SoundSport Headphones,1,99.99,2019-02-19 18:29:00,973 8th St, Dallas,TX,75001 +158197,Wired Headphones,1,11.99,2019-02-25 17:17:00,585 10th St, San Francisco,CA,94016 +158198,27in 4K Gaming Monitor,1,389.99,2019-02-27 10:38:00,893 9th St, Los Angeles,CA,90001 +158199,AA Batteries (4-pack),1,3.84,2019-02-15 21:31:00,856 10th St, Portland,ME,04101 +158200,Google Phone,1,600.0,2019-02-06 20:43:00,205 10th St, New York City,NY,10001 +158201,Macbook Pro Laptop,1,1700.0,2019-02-21 08:10:00,130 9th St, Dallas,TX,75001 +158202,ThinkPad Laptop,1,999.99,2019-02-10 15:04:00,248 Jefferson St, Los Angeles,CA,90001 +158203,27in 4K Gaming Monitor,1,389.99,2019-02-09 09:59:00,674 13th St, San Francisco,CA,94016 +158204,USB-C Charging Cable,1,11.95,2019-02-07 20:30:00,383 Willow St, Los Angeles,CA,90001 +158205,Google Phone,1,600.0,2019-02-08 22:18:00,732 Elm St, Austin,TX,73301 +158205,USB-C Charging Cable,1,11.95,2019-02-08 22:18:00,732 Elm St, Austin,TX,73301 +158206,AAA Batteries (4-pack),1,2.99,2019-02-05 23:08:00,506 Chestnut St, Dallas,TX,75001 +158207,ThinkPad Laptop,1,999.99,2019-02-16 17:00:00,906 Maple St, Boston,MA,02215 +158208,Wired Headphones,1,11.99,2019-02-20 07:13:00,619 1st St, Dallas,TX,75001 +158209,AA Batteries (4-pack),3,3.84,2019-02-12 22:46:00,500 1st St, Atlanta,GA,30301 +158210,iPhone,1,700.0,2019-02-15 16:05:00,23 Lake St, Atlanta,GA,30301 +158210,Lightning Charging Cable,1,14.95,2019-02-15 16:05:00,23 Lake St, Atlanta,GA,30301 +158211,Lightning Charging Cable,1,14.95,2019-02-11 15:08:00,210 Highland St, Los Angeles,CA,90001 +158212,Lightning Charging Cable,1,14.95,2019-02-21 11:00:00,661 Park St, Los Angeles,CA,90001 +158213,Lightning Charging Cable,1,14.95,2019-02-24 16:05:00,222 Cedar St, Austin,TX,73301 +158214,Apple Airpods Headphones,1,150.0,2019-02-06 12:52:00,683 River St, Seattle,WA,98101 +158215,AA Batteries (4-pack),1,3.84,2019-02-05 00:18:00,251 Chestnut St, Portland,OR,97035 +158216,Lightning Charging Cable,1,14.95,2019-02-04 12:25:00,8 Meadow St, New York City,NY,10001 +158217,Apple Airpods Headphones,1,150.0,2019-02-27 17:45:00,27 Lakeview St, Los Angeles,CA,90001 +158218,Wired Headphones,2,11.99,2019-02-28 16:01:00,819 Meadow St, Boston,MA,02215 +158219,USB-C Charging Cable,2,11.95,2019-02-06 00:14:00,213 11th St, Atlanta,GA,30301 +158220,Wired Headphones,1,11.99,2019-02-05 12:16:00,267 6th St, San Francisco,CA,94016 +158221,AAA Batteries (4-pack),1,2.99,2019-02-22 13:14:00,211 Main St, New York City,NY,10001 +158222,Lightning Charging Cable,2,14.95,2019-02-17 16:49:00,29 Center St, Atlanta,GA,30301 +158223,AAA Batteries (4-pack),1,2.99,2019-02-22 11:25:00,476 Church St, San Francisco,CA,94016 +158224,27in FHD Monitor,1,149.99,2019-02-13 20:35:00,465 Willow St, Los Angeles,CA,90001 +158225,Bose SoundSport Headphones,1,99.99,2019-02-05 16:57:00,55 8th St, New York City,NY,10001 +158226,Macbook Pro Laptop,1,1700.0,2019-02-03 14:52:00,685 Forest St, Los Angeles,CA,90001 +158227,34in Ultrawide Monitor,1,379.99,2019-02-11 10:02:00,730 Hill St, San Francisco,CA,94016 +158228,Bose SoundSport Headphones,1,99.99,2019-02-03 12:40:00,714 Hickory St, New York City,NY,10001 +158229,USB-C Charging Cable,1,11.95,2019-02-12 13:58:00,987 Cedar St, Los Angeles,CA,90001 +158230,Lightning Charging Cable,1,14.95,2019-02-11 18:22:00,156 Forest St, San Francisco,CA,94016 +158231,USB-C Charging Cable,1,11.95,2019-02-09 19:42:00,933 1st St, Dallas,TX,75001 +158232,AA Batteries (4-pack),1,3.84,2019-02-13 22:45:00,866 Jackson St, San Francisco,CA,94016 +158233,AA Batteries (4-pack),1,3.84,2019-02-20 10:33:00,828 Chestnut St, New York City,NY,10001 +158234,Flatscreen TV,1,300.0,2019-02-12 11:52:00,59 Willow St, Dallas,TX,75001 +158235,USB-C Charging Cable,1,11.95,2019-02-18 06:26:00,886 Maple St, Dallas,TX,75001 +158236,AA Batteries (4-pack),1,3.84,2019-02-19 09:49:00,319 West St, San Francisco,CA,94016 +158237,27in 4K Gaming Monitor,1,389.99,2019-02-01 10:44:00,152 Pine St, New York City,NY,10001 +158238,AAA Batteries (4-pack),1,2.99,2019-02-02 14:50:00,84 Cedar St, San Francisco,CA,94016 +158239,Wired Headphones,1,11.99,2019-02-20 20:04:00,611 River St, New York City,NY,10001 +158240,Lightning Charging Cable,1,14.95,2019-02-08 12:12:00,361 Cherry St, San Francisco,CA,94016 +158241,LG Dryer,1,600.0,2019-02-15 16:08:00,547 5th St, San Francisco,CA,94016 +158242,ThinkPad Laptop,1,999.99,2019-02-14 15:04:00,547 11th St, Boston,MA,02215 +158243,Bose SoundSport Headphones,1,99.99,2019-02-21 14:20:00,591 14th St, Boston,MA,02215 +158244,Lightning Charging Cable,1,14.95,2019-02-23 18:11:00,937 Elm St, Seattle,WA,98101 +158245,Google Phone,1,600.0,2019-02-01 17:28:00,725 11th St, Los Angeles,CA,90001 +158246,AAA Batteries (4-pack),1,2.99,2019-02-14 17:58:00,469 Willow St, San Francisco,CA,94016 +158247,34in Ultrawide Monitor,1,379.99,2019-02-07 17:14:00,347 Forest St, Boston,MA,02215 +158248,AAA Batteries (4-pack),2,2.99,2019-02-02 15:24:00,483 2nd St, Portland,OR,97035 +158249,Apple Airpods Headphones,1,150.0,2019-02-26 14:16:00,45 West St, New York City,NY,10001 +158250,AA Batteries (4-pack),2,3.84,2019-02-01 20:08:00,197 Sunset St, Dallas,TX,75001 +158251,Apple Airpods Headphones,1,150.0,2019-02-27 12:59:00,125 Maple St, San Francisco,CA,94016 +158252,Wired Headphones,2,11.99,2019-02-20 14:44:00,296 South St, New York City,NY,10001 +158253,Lightning Charging Cable,1,14.95,2019-02-27 17:53:00,234 Spruce St, San Francisco,CA,94016 +158254,Lightning Charging Cable,1,14.95,2019-02-17 15:39:00,266 1st St, San Francisco,CA,94016 +158255,USB-C Charging Cable,1,11.95,2019-02-25 00:50:00,271 14th St, Dallas,TX,75001 +158256,Apple Airpods Headphones,1,150.0,2019-02-04 10:12:00,994 6th St, San Francisco,CA,94016 +158257,Bose SoundSport Headphones,1,99.99,2019-02-04 13:39:00,285 Dogwood St, Seattle,WA,98101 +158258,AAA Batteries (4-pack),1,2.99,2019-02-23 14:01:00,726 Park St, Dallas,TX,75001 +158259,USB-C Charging Cable,1,11.95,2019-02-03 19:14:00,674 4th St, Los Angeles,CA,90001 +158260,Lightning Charging Cable,1,14.95,2019-02-09 11:33:00,983 Walnut St, Los Angeles,CA,90001 +158261,AAA Batteries (4-pack),2,2.99,2019-02-19 01:08:00,780 Spruce St, New York City,NY,10001 +158262,Wired Headphones,1,11.99,2019-03-01 03:49:00,902 Adams St, New York City,NY,10001 +158263,34in Ultrawide Monitor,2,379.99,2019-02-20 13:24:00,820 Hill St, Dallas,TX,75001 +158264,Macbook Pro Laptop,1,1700.0,2019-02-13 18:52:00,231 North St, San Francisco,CA,94016 +158265,Lightning Charging Cable,1,14.95,2019-02-09 16:48:00,424 Sunset St, San Francisco,CA,94016 +158266,Bose SoundSport Headphones,1,99.99,2019-02-17 17:54:00,509 South St, Los Angeles,CA,90001 +158267,20in Monitor,1,109.99,2019-02-25 23:51:00,866 Sunset St, Austin,TX,73301 +158268,USB-C Charging Cable,1,11.95,2019-02-10 09:41:00,363 Lake St, San Francisco,CA,94016 +158269,Bose SoundSport Headphones,1,99.99,2019-02-05 12:35:00,341 6th St, San Francisco,CA,94016 +158270,iPhone,1,700.0,2019-02-05 13:08:00,807 South St, Austin,TX,73301 +158271,27in FHD Monitor,1,149.99,2019-02-20 11:35:00,821 Hickory St, New York City,NY,10001 +158272,Lightning Charging Cable,1,14.95,2019-02-11 17:54:00,541 West St, Dallas,TX,75001 +158273,20in Monitor,1,109.99,2019-02-11 23:56:00,401 Forest St, Atlanta,GA,30301 +158274,Apple Airpods Headphones,1,150.0,2019-02-20 12:54:00,473 Jackson St, Boston,MA,02215 +158275,34in Ultrawide Monitor,1,379.99,2019-02-07 16:13:00,505 Adams St, Portland,OR,97035 +158276,Apple Airpods Headphones,1,150.0,2019-02-26 17:01:00,514 10th St, Dallas,TX,75001 +158277,AA Batteries (4-pack),1,3.84,2019-02-27 23:31:00,63 Wilson St, New York City,NY,10001 +158278,USB-C Charging Cable,1,11.95,2019-02-03 13:27:00,9 Walnut St, Boston,MA,02215 +158279,USB-C Charging Cable,1,11.95,2019-02-10 14:29:00,305 Sunset St, Los Angeles,CA,90001 +158280,Wired Headphones,1,11.99,2019-02-02 10:42:00,238 6th St, San Francisco,CA,94016 +158281,AA Batteries (4-pack),1,3.84,2019-02-20 22:22:00,703 Meadow St, New York City,NY,10001 +158282,Wired Headphones,1,11.99,2019-02-18 12:42:00,37 Jackson St, Seattle,WA,98101 +158283,USB-C Charging Cable,2,11.95,2019-02-08 19:41:00,850 Hill St, New York City,NY,10001 +158284,USB-C Charging Cable,1,11.95,2019-02-09 10:37:00,645 Cedar St, San Francisco,CA,94016 +158285,Wired Headphones,1,11.99,2019-02-14 13:10:00,777 Johnson St, New York City,NY,10001 +158286,Apple Airpods Headphones,1,150.0,2019-02-04 16:47:00,248 12th St, Portland,OR,97035 +158287,Apple Airpods Headphones,1,150.0,2019-02-25 17:47:00,877 Park St, Austin,TX,73301 +158288,Lightning Charging Cable,1,14.95,2019-02-04 02:05:00,888 Adams St, Los Angeles,CA,90001 +158289,AAA Batteries (4-pack),1,2.99,2019-02-15 19:20:00,254 Lakeview St, Los Angeles,CA,90001 +158290,Apple Airpods Headphones,1,150.0,2019-02-06 00:35:00,533 10th St, Seattle,WA,98101 +158291,20in Monitor,1,109.99,2019-02-12 22:03:00,743 Lake St, Boston,MA,02215 +158292,AA Batteries (4-pack),1,3.84,2019-02-26 23:13:00,966 Elm St, San Francisco,CA,94016 +158293,Lightning Charging Cable,1,14.95,2019-02-08 16:53:00,843 Dogwood St, Dallas,TX,75001 +158294,Apple Airpods Headphones,1,150.0,2019-02-23 23:21:00,222 Adams St, New York City,NY,10001 +158295,Wired Headphones,1,11.99,2019-02-26 23:06:00,286 Forest St, New York City,NY,10001 +158296,iPhone,1,700.0,2019-02-10 10:35:00,501 12th St, Los Angeles,CA,90001 +158297,Lightning Charging Cable,1,14.95,2019-02-13 19:23:00,759 Cherry St, San Francisco,CA,94016 +158298,iPhone,1,700.0,2019-02-08 07:50:00,131 Lincoln St, Boston,MA,02215 +158299,Macbook Pro Laptop,1,1700.0,2019-02-24 16:02:00,512 Ridge St, San Francisco,CA,94016 +158300,AAA Batteries (4-pack),1,2.99,2019-02-23 13:38:00,896 13th St, Boston,MA,02215 +158301,AA Batteries (4-pack),2,3.84,2019-02-06 22:26:00,22 7th St, Portland,OR,97035 +158302,20in Monitor,1,109.99,2019-02-27 22:31:00,110 Madison St, New York City,NY,10001 +158303,USB-C Charging Cable,1,11.95,2019-02-26 18:37:00,395 9th St, Dallas,TX,75001 +158304,Macbook Pro Laptop,1,1700.0,2019-02-19 13:18:00,532 Lake St, Dallas,TX,75001 +158305,Google Phone,1,600.0,2019-02-27 14:13:00,5 Dogwood St, Los Angeles,CA,90001 +158306,Wired Headphones,1,11.99,2019-02-13 11:38:00,220 14th St, Austin,TX,73301 +158307,ThinkPad Laptop,1,999.99,2019-02-19 19:20:00,316 Maple St, Atlanta,GA,30301 +158308,AAA Batteries (4-pack),1,2.99,2019-02-22 11:07:00,465 Walnut St, Atlanta,GA,30301 +158309,AA Batteries (4-pack),1,3.84,2019-02-14 22:41:00,919 2nd St, Boston,MA,02215 +158310,Lightning Charging Cable,1,14.95,2019-02-19 07:59:00,451 Madison St, New York City,NY,10001 +158310,USB-C Charging Cable,1,11.95,2019-02-19 07:59:00,451 Madison St, New York City,NY,10001 +158311,Lightning Charging Cable,1,14.95,2019-02-13 08:58:00,942 West St, Seattle,WA,98101 +158312,AAA Batteries (4-pack),1,2.99,2019-02-14 11:28:00,683 9th St, Los Angeles,CA,90001 +158313,27in 4K Gaming Monitor,1,389.99,2019-02-14 18:27:00,559 Center St, San Francisco,CA,94016 +158314,Bose SoundSport Headphones,1,99.99,2019-02-11 13:30:00,774 Maple St, Portland,OR,97035 +158315,USB-C Charging Cable,1,11.95,2019-02-23 16:16:00,70 Main St, New York City,NY,10001 +158316,Lightning Charging Cable,1,14.95,2019-02-17 18:12:00,244 Lakeview St, San Francisco,CA,94016 +158317,Wired Headphones,1,11.99,2019-02-18 19:35:00,725 4th St, Portland,ME,04101 +158318,USB-C Charging Cable,1,11.95,2019-02-10 14:47:00,851 Jackson St, Seattle,WA,98101 +158319,AAA Batteries (4-pack),1,2.99,2019-02-22 00:54:00,444 Highland St, New York City,NY,10001 +158320,Wired Headphones,1,11.99,2019-02-02 15:32:00,786 8th St, Boston,MA,02215 +158321,Wired Headphones,1,11.99,2019-02-17 00:19:00,717 River St, Los Angeles,CA,90001 +158322,AAA Batteries (4-pack),2,2.99,2019-02-24 22:26:00,676 9th St, Los Angeles,CA,90001 +158323,27in 4K Gaming Monitor,1,389.99,2019-02-26 20:57:00,190 Hill St, Atlanta,GA,30301 +158324,AAA Batteries (4-pack),1,2.99,2019-02-08 10:25:00,346 Washington St, Los Angeles,CA,90001 +158325,Apple Airpods Headphones,1,150.0,2019-02-07 19:19:00,430 Center St, Austin,TX,73301 +158326,AAA Batteries (4-pack),1,2.99,2019-02-24 12:36:00,752 11th St, Dallas,TX,75001 +158327,iPhone,1,700.0,2019-02-23 12:03:00,685 2nd St, Portland,OR,97035 +158328,Lightning Charging Cable,1,14.95,2019-02-08 12:09:00,977 Pine St, Austin,TX,73301 +158329,Flatscreen TV,1,300.0,2019-02-25 11:18:00,398 Adams St, New York City,NY,10001 +158330,Google Phone,1,600.0,2019-02-18 23:19:00,568 Ridge St, Los Angeles,CA,90001 +158331,Lightning Charging Cable,1,14.95,2019-02-12 17:04:00,564 South St, Seattle,WA,98101 +158332,Apple Airpods Headphones,1,150.0,2019-02-14 16:48:00,852 Sunset St, Portland,OR,97035 +158332,20in Monitor,1,109.99,2019-02-14 16:48:00,852 Sunset St, Portland,OR,97035 +158333,Apple Airpods Headphones,1,150.0,2019-02-18 19:35:00,308 1st St, Boston,MA,02215 +158334,AA Batteries (4-pack),2,3.84,2019-02-26 11:18:00,266 Church St, Boston,MA,02215 +158335,27in 4K Gaming Monitor,1,389.99,2019-03-01 02:01:00,9 Hill St, Portland,OR,97035 +158336,Apple Airpods Headphones,1,150.0,2019-02-26 12:34:00,160 11th St, San Francisco,CA,94016 +158337,Vareebadd Phone,1,400.0,2019-02-12 19:22:00,23 Jackson St, Los Angeles,CA,90001 +158337,USB-C Charging Cable,2,11.95,2019-02-12 19:22:00,23 Jackson St, Los Angeles,CA,90001 +158338,34in Ultrawide Monitor,1,379.99,2019-02-05 21:05:00,513 1st St, Los Angeles,CA,90001 +158339,Wired Headphones,1,11.99,2019-02-05 11:45:00,647 7th St, San Francisco,CA,94016 +158340,ThinkPad Laptop,1,999.99,2019-02-13 19:46:00,127 Adams St, New York City,NY,10001 +158341,Macbook Pro Laptop,1,1700.0,2019-02-15 22:30:00,265 7th St, Boston,MA,02215 +158342,Google Phone,1,600.0,2019-02-03 22:20:00,807 Church St, San Francisco,CA,94016 +158342,USB-C Charging Cable,1,11.95,2019-02-03 22:20:00,807 Church St, San Francisco,CA,94016 +158343,Bose SoundSport Headphones,1,99.99,2019-02-10 12:42:00,399 Willow St, Austin,TX,73301 +158344,LG Dryer,1,600.0,2019-02-17 10:21:00,421 Lincoln St, San Francisco,CA,94016 +158345,USB-C Charging Cable,1,11.95,2019-02-01 13:08:00,712 12th St, Dallas,TX,75001 +158346,USB-C Charging Cable,1,11.95,2019-02-26 20:35:00,345 Cherry St, Dallas,TX,75001 +158347,Macbook Pro Laptop,1,1700.0,2019-02-23 16:20:00,667 Jackson St, San Francisco,CA,94016 +158348,USB-C Charging Cable,1,11.95,2019-02-23 21:03:00,469 Pine St, Seattle,WA,98101 +158348,27in FHD Monitor,1,149.99,2019-02-23 21:03:00,469 Pine St, Seattle,WA,98101 +158349,Flatscreen TV,1,300.0,2019-02-25 19:12:00,918 Jefferson St, New York City,NY,10001 +158350,AAA Batteries (4-pack),1,2.99,2019-02-22 14:47:00,600 14th St, New York City,NY,10001 +158351,Wired Headphones,1,11.99,2019-02-03 15:19:00,982 Willow St, New York City,NY,10001 +158352,USB-C Charging Cable,1,11.95,2019-02-20 08:58:00,286 Maple St, Los Angeles,CA,90001 +158353,27in 4K Gaming Monitor,1,389.99,2019-02-09 16:11:00,849 Dogwood St, Atlanta,GA,30301 +158354,AAA Batteries (4-pack),3,2.99,2019-02-12 22:55:00,539 Maple St, San Francisco,CA,94016 +158355,Bose SoundSport Headphones,1,99.99,2019-02-16 21:39:00,808 1st St, New York City,NY,10001 +158356,AA Batteries (4-pack),1,3.84,2019-02-17 22:22:00,270 Jackson St, Los Angeles,CA,90001 +158357,Apple Airpods Headphones,1,150.0,2019-02-20 15:30:00,638 Adams St, Austin,TX,73301 +158357,USB-C Charging Cable,1,11.95,2019-02-20 15:30:00,638 Adams St, Austin,TX,73301 +158358,Bose SoundSport Headphones,1,99.99,2019-02-28 08:43:00,614 4th St, New York City,NY,10001 +158359,AAA Batteries (4-pack),1,2.99,2019-02-06 09:25:00,523 Sunset St, Austin,TX,73301 +158360,Lightning Charging Cable,1,14.95,2019-02-28 12:27:00,853 Maple St, Dallas,TX,75001 +158361,USB-C Charging Cable,1,11.95,2019-02-10 21:46:00,340 River St, Los Angeles,CA,90001 +158362,Wired Headphones,1,11.99,2019-02-03 15:53:00,586 Wilson St, Boston,MA,02215 +158363,AAA Batteries (4-pack),1,2.99,2019-02-23 18:20:00,990 Willow St, Los Angeles,CA,90001 +158364,Bose SoundSport Headphones,1,99.99,2019-02-19 10:37:00,40 Highland St, Atlanta,GA,30301 +158365,AAA Batteries (4-pack),3,2.99,2019-02-01 07:32:00,530 Jackson St, Dallas,TX,75001 +158366,Apple Airpods Headphones,1,150.0,2019-02-15 21:28:00,90 Cedar St, Portland,ME,04101 +158367,AA Batteries (4-pack),1,3.84,2019-02-18 22:22:00,482 Park St, Dallas,TX,75001 +158368,USB-C Charging Cable,1,11.95,2019-02-28 19:27:00,974 Willow St, Atlanta,GA,30301 +158369,Lightning Charging Cable,1,14.95,2019-02-10 14:10:00,780 10th St, Dallas,TX,75001 +158370,AA Batteries (4-pack),2,3.84,2019-02-02 17:15:00,684 Cedar St, Boston,MA,02215 +158371,AA Batteries (4-pack),1,3.84,2019-02-27 13:29:00,612 Forest St, San Francisco,CA,94016 +158372,Bose SoundSport Headphones,1,99.99,2019-02-23 11:34:00,146 10th St, Los Angeles,CA,90001 +158373,Apple Airpods Headphones,1,150.0,2019-02-02 06:30:00,181 Lincoln St, San Francisco,CA,94016 +158374,AAA Batteries (4-pack),1,2.99,2019-02-28 04:47:00,352 Elm St, Atlanta,GA,30301 +158375,Apple Airpods Headphones,1,150.0,2019-02-12 11:12:00,267 Lakeview St, Dallas,TX,75001 +158376,AA Batteries (4-pack),1,3.84,2019-02-05 14:01:00,277 4th St, San Francisco,CA,94016 +158377,AA Batteries (4-pack),1,3.84,2019-02-23 22:33:00,986 5th St, Boston,MA,02215 +158378,AA Batteries (4-pack),1,3.84,2019-02-20 12:55:00,528 Willow St, Los Angeles,CA,90001 +158379,USB-C Charging Cable,1,11.95,2019-02-05 20:23:00,966 Ridge St, San Francisco,CA,94016 +158380,34in Ultrawide Monitor,1,379.99,2019-02-11 09:24:00,906 Johnson St, Portland,ME,04101 +158381,Lightning Charging Cable,1,14.95,2019-02-13 13:30:00,87 Maple St, New York City,NY,10001 +158382,Wired Headphones,1,11.99,2019-02-04 15:49:00,898 Chestnut St, San Francisco,CA,94016 +158383,USB-C Charging Cable,1,11.95,2019-02-08 22:16:00,958 14th St, Seattle,WA,98101 +158384,Apple Airpods Headphones,1,150.0,2019-02-27 16:23:00,839 12th St, New York City,NY,10001 +158385,Google Phone,1,600.0,2019-02-26 18:43:00,278 Main St, Boston,MA,02215 +158385,USB-C Charging Cable,1,11.95,2019-02-26 18:43:00,278 Main St, Boston,MA,02215 +158386,USB-C Charging Cable,1,11.95,2019-02-19 12:00:00,235 Adams St, New York City,NY,10001 +158387,34in Ultrawide Monitor,1,379.99,2019-02-24 20:37:00,918 Spruce St, Atlanta,GA,30301 +158388,USB-C Charging Cable,1,11.95,2019-02-19 18:44:00,943 Pine St, New York City,NY,10001 +158389,AAA Batteries (4-pack),1,2.99,2019-02-12 19:25:00,652 13th St, Boston,MA,02215 +158390,27in FHD Monitor,1,149.99,2019-02-10 10:34:00,404 13th St, Seattle,WA,98101 +158391,Apple Airpods Headphones,1,150.0,2019-02-08 11:12:00,405 13th St, Dallas,TX,75001 +158391,iPhone,1,700.0,2019-02-08 11:12:00,405 13th St, Dallas,TX,75001 +158392,34in Ultrawide Monitor,1,379.99,2019-02-11 17:46:00,495 Hickory St, Atlanta,GA,30301 +158393,USB-C Charging Cable,1,11.95,2019-02-03 07:59:00,475 Pine St, Los Angeles,CA,90001 +158394,AA Batteries (4-pack),2,3.84,2019-02-23 12:11:00,919 2nd St, New York City,NY,10001 +158395,27in 4K Gaming Monitor,1,389.99,2019-02-05 17:01:00,961 Adams St, New York City,NY,10001 +158396,Bose SoundSport Headphones,1,99.99,2019-02-19 12:44:00,409 Lincoln St, Portland,OR,97035 +158397,AAA Batteries (4-pack),1,2.99,2019-02-04 16:01:00,544 Sunset St, San Francisco,CA,94016 +158398,iPhone,1,700.0,2019-02-24 12:28:00,788 Lakeview St, Los Angeles,CA,90001 +158399,AA Batteries (4-pack),1,3.84,2019-02-01 16:27:00,531 Jefferson St, San Francisco,CA,94016 +158400,AA Batteries (4-pack),1,3.84,2019-02-13 21:46:00,896 Lincoln St, Los Angeles,CA,90001 +158401,AAA Batteries (4-pack),2,2.99,2019-02-16 14:49:00,206 Sunset St, Atlanta,GA,30301 +158402,AA Batteries (4-pack),1,3.84,2019-02-26 09:36:00,923 Wilson St, San Francisco,CA,94016 +158403,Apple Airpods Headphones,1,150.0,2019-02-04 13:34:00,442 Forest St, San Francisco,CA,94016 +158404,Wired Headphones,1,11.99,2019-02-16 13:14:00,241 Lake St, Boston,MA,02215 +158405,Apple Airpods Headphones,1,150.0,2019-02-28 23:51:00,209 Hickory St, Boston,MA,02215 +158406,Wired Headphones,1,11.99,2019-02-19 21:02:00,799 Willow St, Dallas,TX,75001 +158407,AA Batteries (4-pack),1,3.84,2019-02-11 22:44:00,682 2nd St, Dallas,TX,75001 +158408,Wired Headphones,2,11.99,2019-02-24 15:43:00,681 11th St, Boston,MA,02215 +158408,27in 4K Gaming Monitor,1,389.99,2019-02-24 15:43:00,681 11th St, Boston,MA,02215 +158409,Lightning Charging Cable,1,14.95,2019-02-12 07:53:00,660 Jackson St, New York City,NY,10001 +158410,AAA Batteries (4-pack),1,2.99,2019-02-03 13:23:00,402 Meadow St, New York City,NY,10001 +158411,USB-C Charging Cable,1,11.95,2019-02-11 19:44:00,245 Willow St, Boston,MA,02215 +158412,Wired Headphones,1,11.99,2019-02-21 13:55:00,470 Maple St, Portland,OR,97035 +158413,Lightning Charging Cable,1,14.95,2019-02-06 20:42:00,117 7th St, Los Angeles,CA,90001 +158414,AAA Batteries (4-pack),3,2.99,2019-02-27 00:35:00,345 Wilson St, New York City,NY,10001 +158415,Macbook Pro Laptop,1,1700.0,2019-02-10 23:41:00,903 Lincoln St, San Francisco,CA,94016 +158416,USB-C Charging Cable,1,11.95,2019-02-20 10:04:00,904 Park St, Dallas,TX,75001 +158417,Macbook Pro Laptop,1,1700.0,2019-02-26 00:55:00,696 9th St, Portland,OR,97035 +158418,27in FHD Monitor,1,149.99,2019-02-19 08:32:00,356 14th St, Los Angeles,CA,90001 +158419,AAA Batteries (4-pack),1,2.99,2019-02-08 23:17:00,4 Johnson St, San Francisco,CA,94016 +158420,USB-C Charging Cable,1,11.95,2019-02-06 23:53:00,564 North St, San Francisco,CA,94016 +158421,Bose SoundSport Headphones,1,99.99,2019-02-03 08:47:00,255 Cedar St, New York City,NY,10001 +158422,Google Phone,1,600.0,2019-02-09 16:45:00,403 Hickory St, San Francisco,CA,94016 +158423,27in 4K Gaming Monitor,1,389.99,2019-02-07 14:04:00,155 Wilson St, Atlanta,GA,30301 +158424,ThinkPad Laptop,1,999.99,2019-02-18 19:33:00,462 5th St, Portland,OR,97035 +158425,AAA Batteries (4-pack),1,2.99,2019-02-10 22:18:00,698 10th St, San Francisco,CA,94016 +158426,AAA Batteries (4-pack),1,2.99,2019-02-14 21:38:00,791 Willow St, San Francisco,CA,94016 +158427,AA Batteries (4-pack),1,3.84,2019-02-18 07:30:00,154 9th St, San Francisco,CA,94016 +158428,Apple Airpods Headphones,1,150.0,2019-02-26 14:52:00,868 Johnson St, New York City,NY,10001 +158429,AA Batteries (4-pack),1,3.84,2019-02-28 18:13:00,506 Adams St, Boston,MA,02215 +158430,Wired Headphones,1,11.99,2019-02-09 14:42:00,68 6th St, San Francisco,CA,94016 +158431,34in Ultrawide Monitor,1,379.99,2019-02-25 12:42:00,915 Forest St, Seattle,WA,98101 +158432,USB-C Charging Cable,1,11.95,2019-02-27 09:41:00,133 Cedar St, San Francisco,CA,94016 +158433,AAA Batteries (4-pack),1,2.99,2019-02-15 20:08:00,242 12th St, Dallas,TX,75001 +158434,Apple Airpods Headphones,1,150.0,2019-02-17 19:32:00,336 10th St, Portland,OR,97035 +158435,Apple Airpods Headphones,1,150.0,2019-02-18 11:23:00,204 Sunset St, Dallas,TX,75001 +158436,AA Batteries (4-pack),2,3.84,2019-02-08 15:24:00,858 8th St, New York City,NY,10001 +158437,AAA Batteries (4-pack),1,2.99,2019-02-05 17:31:00,218 14th St, Portland,ME,04101 +158438,AA Batteries (4-pack),1,3.84,2019-02-11 22:55:00,636 Jackson St, Austin,TX,73301 +158439,USB-C Charging Cable,1,11.95,2019-02-25 12:04:00,41 Madison St, Boston,MA,02215 +158440,Wired Headphones,1,11.99,2019-02-09 09:57:00,92 Maple St, Boston,MA,02215 +158441,USB-C Charging Cable,1,11.95,2019-02-16 09:02:00,376 Main St, Austin,TX,73301 +158442,34in Ultrawide Monitor,1,379.99,2019-02-14 03:33:00,925 5th St, San Francisco,CA,94016 +158443,27in FHD Monitor,1,149.99,2019-02-22 17:48:00,380 West St, San Francisco,CA,94016 +158444,Flatscreen TV,1,300.0,2019-02-24 13:18:00,277 Willow St, Seattle,WA,98101 +158445,USB-C Charging Cable,1,11.95,2019-02-08 19:10:00,769 9th St, Dallas,TX,75001 +158446,27in 4K Gaming Monitor,1,389.99,2019-02-06 11:54:00,695 Lakeview St, Seattle,WA,98101 +158447,USB-C Charging Cable,1,11.95,2019-02-09 14:01:00,710 Maple St, San Francisco,CA,94016 +158448,Wired Headphones,1,11.99,2019-02-23 15:39:00,260 North St, Los Angeles,CA,90001 +158449,Lightning Charging Cable,1,14.95,2019-02-01 12:33:00,129 Willow St, Seattle,WA,98101 +158450,ThinkPad Laptop,1,999.99,2019-02-18 14:59:00,87 Highland St, Los Angeles,CA,90001 +158451,Wired Headphones,1,11.99,2019-02-01 19:49:00,924 5th St, Los Angeles,CA,90001 +158452,USB-C Charging Cable,1,11.95,2019-02-15 20:50:00,234 10th St, San Francisco,CA,94016 +158453,20in Monitor,1,109.99,2019-02-24 05:58:00,767 2nd St, Boston,MA,02215 +158454,AAA Batteries (4-pack),2,2.99,2019-02-22 22:14:00,486 River St, Boston,MA,02215 +158455,Wired Headphones,2,11.99,2019-02-06 18:11:00,395 Lake St, Portland,OR,97035 +158456,AA Batteries (4-pack),1,3.84,2019-02-05 19:12:00,59 Walnut St, New York City,NY,10001 +158457,AA Batteries (4-pack),1,3.84,2019-02-18 22:03:00,526 Jackson St, Austin,TX,73301 +158458,AAA Batteries (4-pack),1,2.99,2019-02-06 13:21:00,731 Lincoln St, Seattle,WA,98101 +158459,Apple Airpods Headphones,1,150.0,2019-02-22 00:41:00,646 Adams St, Boston,MA,02215 +158460,AAA Batteries (4-pack),1,2.99,2019-02-04 09:10:00,268 10th St, Los Angeles,CA,90001 +158461,USB-C Charging Cable,1,11.95,2019-02-07 22:31:00,156 Hill St, San Francisco,CA,94016 +158462,Bose SoundSport Headphones,1,99.99,2019-02-16 15:49:00,579 Lakeview St, Boston,MA,02215 +158463,AAA Batteries (4-pack),1,2.99,2019-02-19 17:23:00,221 7th St, New York City,NY,10001 +158464,ThinkPad Laptop,1,999.99,2019-02-10 09:22:00,266 North St, San Francisco,CA,94016 +158465,Flatscreen TV,1,300.0,2019-02-16 10:36:00,216 Center St, San Francisco,CA,94016 +158466,Bose SoundSport Headphones,1,99.99,2019-02-08 11:39:00,694 Center St, Atlanta,GA,30301 +158467,Apple Airpods Headphones,1,150.0,2019-02-06 14:53:00,676 Pine St, Los Angeles,CA,90001 +158468,Lightning Charging Cable,1,14.95,2019-02-20 18:08:00,729 7th St, Portland,OR,97035 +158469,Flatscreen TV,1,300.0,2019-02-22 14:54:00,805 8th St, Los Angeles,CA,90001 +158470,Macbook Pro Laptop,1,1700.0,2019-02-04 21:11:00,51 Highland St, San Francisco,CA,94016 +158471,Bose SoundSport Headphones,1,99.99,2019-02-16 18:27:00,663 Pine St, Los Angeles,CA,90001 +158472,Google Phone,1,600.0,2019-02-23 21:00:00,905 Ridge St, Atlanta,GA,30301 +158473,AAA Batteries (4-pack),3,2.99,2019-02-20 13:27:00,508 Lakeview St, Portland,ME,04101 +158474,iPhone,1,700.0,2019-02-19 22:57:00,98 Walnut St, Atlanta,GA,30301 +158475,USB-C Charging Cable,1,11.95,2019-02-12 23:57:00,803 11th St, Austin,TX,73301 +158476,27in FHD Monitor,1,149.99,2019-02-03 22:52:00,976 Highland St, Los Angeles,CA,90001 +158477,27in 4K Gaming Monitor,1,389.99,2019-02-08 13:11:00,653 Hickory St, Dallas,TX,75001 +158478,Wired Headphones,1,11.99,2019-02-26 10:57:00,138 Cherry St, Portland,OR,97035 +158479,34in Ultrawide Monitor,1,379.99,2019-02-12 00:03:00,498 Maple St, Portland,OR,97035 +158480,AA Batteries (4-pack),1,3.84,2019-02-27 00:13:00,25 Jefferson St, Dallas,TX,75001 +158481,AA Batteries (4-pack),1,3.84,2019-02-17 12:35:00,334 14th St, Los Angeles,CA,90001 +158482,AA Batteries (4-pack),1,3.84,2019-02-11 17:08:00,982 2nd St, Seattle,WA,98101 +158483,Apple Airpods Headphones,1,150.0,2019-02-14 13:26:00,704 11th St, Boston,MA,02215 +158484,AAA Batteries (4-pack),1,2.99,2019-02-13 07:37:00,64 Lake St, Seattle,WA,98101 +158485,iPhone,1,700.0,2019-02-17 11:01:00,891 9th St, San Francisco,CA,94016 +158485,Apple Airpods Headphones,1,150.0,2019-02-17 11:01:00,891 9th St, San Francisco,CA,94016 +158486,Wired Headphones,1,11.99,2019-02-25 13:46:00,417 2nd St, New York City,NY,10001 +158487,Lightning Charging Cable,2,14.95,2019-02-27 11:30:00,517 Center St, San Francisco,CA,94016 +158488,Bose SoundSport Headphones,1,99.99,2019-02-10 21:18:00,862 Walnut St, Los Angeles,CA,90001 +158489,AA Batteries (4-pack),1,3.84,2019-02-25 18:00:00,941 Forest St, San Francisco,CA,94016 +158490,20in Monitor,1,109.99,2019-02-15 15:07:00,775 Wilson St, Los Angeles,CA,90001 +158491,Wired Headphones,1,11.99,2019-02-28 08:43:00,135 Johnson St, Dallas,TX,75001 +158492,USB-C Charging Cable,1,11.95,2019-02-26 16:21:00,839 4th St, New York City,NY,10001 +158493,Bose SoundSport Headphones,1,99.99,2019-02-07 21:47:00,686 1st St, Dallas,TX,75001 +158494,Bose SoundSport Headphones,1,99.99,2019-02-10 18:58:00,902 Cherry St, San Francisco,CA,94016 +158495,34in Ultrawide Monitor,1,379.99,2019-02-02 15:21:00,334 Maple St, New York City,NY,10001 +158496,AA Batteries (4-pack),2,3.84,2019-02-18 16:43:00,408 Adams St, Los Angeles,CA,90001 +158497,Wired Headphones,1,11.99,2019-02-13 23:25:00,547 Walnut St, Boston,MA,02215 +158498,Apple Airpods Headphones,1,150.0,2019-02-16 19:51:00,199 Main St, San Francisco,CA,94016 +158499,Wired Headphones,1,11.99,2019-02-16 23:03:00,324 Cherry St, Seattle,WA,98101 +158500,AAA Batteries (4-pack),1,2.99,2019-02-12 17:21:00,399 Highland St, San Francisco,CA,94016 +158501,27in FHD Monitor,1,149.99,2019-02-09 15:31:00,27 13th St, Boston,MA,02215 +158502,Wired Headphones,1,11.99,2019-02-10 22:59:00,422 Jackson St, Los Angeles,CA,90001 +158503,Apple Airpods Headphones,1,150.0,2019-02-27 18:23:00,254 1st St, Los Angeles,CA,90001 +158504,USB-C Charging Cable,1,11.95,2019-02-06 08:35:00,328 12th St, Atlanta,GA,30301 +158505,Apple Airpods Headphones,1,150.0,2019-02-16 23:40:00,333 River St, Austin,TX,73301 +158506,USB-C Charging Cable,1,11.95,2019-02-20 09:58:00,544 Maple St, San Francisco,CA,94016 +158507,AAA Batteries (4-pack),4,2.99,2019-02-24 08:49:00,657 Walnut St, Dallas,TX,75001 +158508,Lightning Charging Cable,1,14.95,2019-02-20 03:21:00,911 Center St, Boston,MA,02215 +158509,Apple Airpods Headphones,1,150.0,2019-02-24 16:57:00,664 West St, Dallas,TX,75001 +158510,AA Batteries (4-pack),1,3.84,2019-02-02 14:24:00,65 Cherry St, New York City,NY,10001 +158511,AA Batteries (4-pack),1,3.84,2019-02-04 22:52:00,203 Johnson St, Dallas,TX,75001 +158512,Lightning Charging Cable,1,14.95,2019-02-28 20:35:00,431 Ridge St, San Francisco,CA,94016 +158512,AAA Batteries (4-pack),1,2.99,2019-02-28 20:35:00,431 Ridge St, San Francisco,CA,94016 +158513,AAA Batteries (4-pack),3,2.99,2019-02-20 09:11:00,125 Lakeview St, San Francisco,CA,94016 +158514,Wired Headphones,1,11.99,2019-02-27 17:04:00,848 Madison St, Boston,MA,02215 +158515,34in Ultrawide Monitor,1,379.99,2019-02-25 11:35:00,430 Hill St, New York City,NY,10001 +158516,USB-C Charging Cable,1,11.95,2019-02-20 10:51:00,719 Spruce St, San Francisco,CA,94016 +158517,Wired Headphones,1,11.99,2019-02-09 13:04:00,253 Willow St, Atlanta,GA,30301 +158518,34in Ultrawide Monitor,1,379.99,2019-02-15 09:59:00,497 Highland St, Austin,TX,73301 +158519,USB-C Charging Cable,1,11.95,2019-02-10 16:00:00,298 Sunset St, Boston,MA,02215 +158520,USB-C Charging Cable,1,11.95,2019-02-01 12:19:00,897 12th St, San Francisco,CA,94016 +158521,Wired Headphones,1,11.99,2019-02-10 15:46:00,85 Forest St, Austin,TX,73301 +158522,Macbook Pro Laptop,1,1700.0,2019-02-06 21:48:00,847 Jefferson St, Seattle,WA,98101 +158523,Apple Airpods Headphones,1,150.0,2019-02-21 15:25:00,662 Spruce St, San Francisco,CA,94016 +158524,AAA Batteries (4-pack),1,2.99,2019-02-25 13:17:00,803 Wilson St, New York City,NY,10001 +158525,Bose SoundSport Headphones,1,99.99,2019-02-05 12:21:00,44 Forest St, Boston,MA,02215 +158526,Lightning Charging Cable,1,14.95,2019-02-12 05:10:00,109 Lakeview St, San Francisco,CA,94016 +158527,AAA Batteries (4-pack),1,2.99,2019-02-01 10:21:00,742 West St, Seattle,WA,98101 +158528,Lightning Charging Cable,1,14.95,2019-02-11 08:29:00,749 Hickory St, San Francisco,CA,94016 +158529,iPhone,1,700.0,2019-02-25 21:15:00,191 Highland St, Atlanta,GA,30301 +158530,Bose SoundSport Headphones,1,99.99,2019-02-09 07:01:00,76 South St, Boston,MA,02215 +158531,USB-C Charging Cable,1,11.95,2019-02-04 18:52:00,363 Washington St, Atlanta,GA,30301 +158532,Google Phone,1,600.0,2019-02-13 08:36:00,650 Maple St, New York City,NY,10001 +158533,20in Monitor,1,109.99,2019-02-16 19:54:00,29 Adams St, San Francisco,CA,94016 +158534,USB-C Charging Cable,1,11.95,2019-02-19 04:53:00,500 4th St, Portland,OR,97035 +158535,Apple Airpods Headphones,1,150.0,2019-02-10 17:48:00,5 Maple St, San Francisco,CA,94016 +158536,USB-C Charging Cable,1,11.95,2019-02-20 01:04:00,506 Lincoln St, San Francisco,CA,94016 +158537,Bose SoundSport Headphones,1,99.99,2019-02-18 19:15:00,774 Forest St, San Francisco,CA,94016 +158538,Lightning Charging Cable,1,14.95,2019-02-01 12:59:00,458 Adams St, Dallas,TX,75001 +158539,Macbook Pro Laptop,1,1700.0,2019-02-16 17:12:00,838 Chestnut St, Dallas,TX,75001 +158540,Google Phone,1,600.0,2019-02-26 09:22:00,377 Adams St, San Francisco,CA,94016 +158541,27in 4K Gaming Monitor,1,389.99,2019-02-08 15:07:00,563 8th St, San Francisco,CA,94016 +158542,AAA Batteries (4-pack),1,2.99,2019-02-04 21:30:00,144 Washington St, New York City,NY,10001 +158543,Lightning Charging Cable,1,14.95,2019-02-07 10:28:00,750 Main St, Seattle,WA,98101 +158544,34in Ultrawide Monitor,1,379.99,2019-02-19 00:06:00,290 7th St, Boston,MA,02215 +158545,Wired Headphones,1,11.99,2019-02-07 15:28:00,412 Hickory St, Austin,TX,73301 +158546,USB-C Charging Cable,1,11.95,2019-02-21 09:24:00,664 Hickory St, Los Angeles,CA,90001 +158547,AAA Batteries (4-pack),1,2.99,2019-02-03 18:05:00,107 Wilson St, Boston,MA,02215 +158548,Lightning Charging Cable,1,14.95,2019-02-25 23:22:00,691 Park St, San Francisco,CA,94016 +158549,Wired Headphones,1,11.99,2019-02-16 10:11:00,457 Elm St, Seattle,WA,98101 +158550,27in FHD Monitor,1,149.99,2019-02-18 08:32:00,392 11th St, Dallas,TX,75001 +158551,LG Dryer,1,600.0,2019-02-07 23:50:00,244 Church St, Boston,MA,02215 +158552,Apple Airpods Headphones,1,150.0,2019-02-07 13:48:00,959 8th St, Portland,OR,97035 +158553,Bose SoundSport Headphones,1,99.99,2019-02-20 11:34:00,904 6th St, Seattle,WA,98101 +158554,AA Batteries (4-pack),1,3.84,2019-02-24 14:46:00,847 Jefferson St, Boston,MA,02215 +158555,Bose SoundSport Headphones,1,99.99,2019-02-11 21:27:00,844 North St, Portland,OR,97035 +158556,Macbook Pro Laptop,1,1700.0,2019-02-19 18:19:00,454 9th St, Dallas,TX,75001 +158557,34in Ultrawide Monitor,1,379.99,2019-02-16 14:24:00,762 6th St, San Francisco,CA,94016 +158558,Wired Headphones,1,11.99,2019-02-13 11:12:00,532 South St, San Francisco,CA,94016 +158559,Wired Headphones,1,11.99,2019-02-09 22:05:00,626 Center St, New York City,NY,10001 +158560,Lightning Charging Cable,1,14.95,2019-02-14 13:12:00,12 Chestnut St, New York City,NY,10001 +158561,Bose SoundSport Headphones,1,99.99,2019-02-09 17:27:00,420 Center St, San Francisco,CA,94016 +158562,27in 4K Gaming Monitor,1,389.99,2019-02-27 18:11:00,517 Willow St, San Francisco,CA,94016 +158563,USB-C Charging Cable,1,11.95,2019-02-01 23:45:00,17 Meadow St, Los Angeles,CA,90001 +158564,Lightning Charging Cable,1,14.95,2019-02-20 18:46:00,660 Sunset St, Los Angeles,CA,90001 +158565,Lightning Charging Cable,1,14.95,2019-02-01 16:03:00,881 5th St, Dallas,TX,75001 +158566,Lightning Charging Cable,1,14.95,2019-02-17 13:43:00,24 Chestnut St, Boston,MA,02215 +158567,Google Phone,1,600.0,2019-02-15 22:11:00,885 Lake St, Boston,MA,02215 +158568,Macbook Pro Laptop,1,1700.0,2019-02-24 21:55:00,440 Willow St, Boston,MA,02215 +158569,USB-C Charging Cable,1,11.95,2019-02-19 01:27:00,316 14th St, Atlanta,GA,30301 +158570,Flatscreen TV,1,300.0,2019-02-17 13:01:00,238 Forest St, San Francisco,CA,94016 +158571,Bose SoundSport Headphones,1,99.99,2019-02-05 14:55:00,579 Church St, Los Angeles,CA,90001 +158572,Apple Airpods Headphones,1,150.0,2019-02-18 00:11:00,303 Park St, Seattle,WA,98101 +158573,iPhone,1,700.0,2019-02-20 11:41:00,73 9th St, Los Angeles,CA,90001 +158574,Wired Headphones,1,11.99,2019-02-24 10:58:00,736 Ridge St, New York City,NY,10001 +158574,Flatscreen TV,1,300.0,2019-02-24 10:58:00,736 Ridge St, New York City,NY,10001 +158575,27in 4K Gaming Monitor,1,389.99,2019-02-23 15:11:00,907 Elm St, Portland,OR,97035 +158576,LG Washing Machine,1,600.0,2019-02-16 16:42:00,208 4th St, Atlanta,GA,30301 +158577,Wired Headphones,1,11.99,2019-02-13 21:40:00,136 Sunset St, San Francisco,CA,94016 +158578,Wired Headphones,1,11.99,2019-02-02 10:43:00,799 Walnut St, San Francisco,CA,94016 +158579,AA Batteries (4-pack),1,3.84,2019-02-28 19:52:00,349 Washington St, San Francisco,CA,94016 +158580,AA Batteries (4-pack),1,3.84,2019-02-09 18:21:00,206 Cedar St, San Francisco,CA,94016 +158581,ThinkPad Laptop,1,999.99,2019-02-17 18:13:00,770 Park St, New York City,NY,10001 +158582,AA Batteries (4-pack),1,3.84,2019-02-16 19:55:00,908 Adams St, San Francisco,CA,94016 +158583,Apple Airpods Headphones,1,150.0,2019-02-17 13:31:00,475 Forest St, Los Angeles,CA,90001 +158584,Vareebadd Phone,1,400.0,2019-02-25 10:50:00,985 4th St, Los Angeles,CA,90001 +158585,Apple Airpods Headphones,1,150.0,2019-02-22 01:34:00,817 Cedar St, San Francisco,CA,94016 +158586,ThinkPad Laptop,1,999.99,2019-02-09 20:07:00,847 Jefferson St, Atlanta,GA,30301 +158587,Lightning Charging Cable,1,14.95,2019-02-18 00:33:00,731 Church St, Los Angeles,CA,90001 +158588,AAA Batteries (4-pack),1,2.99,2019-02-24 19:34:00,245 5th St, Boston,MA,02215 +158589,Vareebadd Phone,1,400.0,2019-02-27 18:34:00,223 Chestnut St, New York City,NY,10001 +158589,USB-C Charging Cable,3,11.95,2019-02-27 18:34:00,223 Chestnut St, New York City,NY,10001 +158590,Lightning Charging Cable,1,14.95,2019-02-04 12:28:00,578 Walnut St, Los Angeles,CA,90001 +158591,27in FHD Monitor,1,149.99,2019-02-06 07:55:00,209 Hickory St, San Francisco,CA,94016 +158592,20in Monitor,1,109.99,2019-02-02 18:31:00,374 6th St, New York City,NY,10001 +158593,AA Batteries (4-pack),1,3.84,2019-02-18 19:25:00,943 North St, San Francisco,CA,94016 +158594,AAA Batteries (4-pack),1,2.99,2019-02-26 08:42:00,303 1st St, San Francisco,CA,94016 +158595,Google Phone,1,600.0,2019-02-19 06:30:00,345 North St, San Francisco,CA,94016 +158596,Vareebadd Phone,1,400.0,2019-02-06 13:00:00,548 Park St, Dallas,TX,75001 +158596,Apple Airpods Headphones,1,150.0,2019-02-06 13:00:00,548 Park St, Dallas,TX,75001 +158597,Lightning Charging Cable,1,14.95,2019-02-05 11:45:00,175 Cherry St, Boston,MA,02215 +158598,Bose SoundSport Headphones,1,99.99,2019-02-02 12:28:00,337 Lake St, New York City,NY,10001 +158599,iPhone,1,700.0,2019-02-09 11:19:00,918 Sunset St, Boston,MA,02215 +158600,USB-C Charging Cable,1,11.95,2019-02-28 12:23:00,815 Main St, Seattle,WA,98101 +158601,Bose SoundSport Headphones,1,99.99,2019-02-02 07:20:00,485 Meadow St, Atlanta,GA,30301 +158602,Apple Airpods Headphones,1,150.0,2019-02-27 00:04:00,894 Forest St, San Francisco,CA,94016 +158603,USB-C Charging Cable,1,11.95,2019-02-23 20:33:00,16 Park St, Atlanta,GA,30301 +158604,Apple Airpods Headphones,1,150.0,2019-02-17 22:55:00,802 14th St, San Francisco,CA,94016 +158605,AAA Batteries (4-pack),3,2.99,2019-02-19 13:00:00,650 5th St, New York City,NY,10001 +158606,Apple Airpods Headphones,1,150.0,2019-02-17 11:58:00,998 6th St, San Francisco,CA,94016 +158607,Apple Airpods Headphones,1,150.0,2019-02-08 04:24:00,794 2nd St, Dallas,TX,75001 +158608,LG Washing Machine,1,600.0,2019-02-11 09:29:00,131 Highland St, Boston,MA,02215 +158609,Bose SoundSport Headphones,1,99.99,2019-02-25 23:34:00,276 Cedar St, Boston,MA,02215 +158610,AA Batteries (4-pack),1,3.84,2019-02-15 12:38:00,524 Center St, Boston,MA,02215 +158611,AA Batteries (4-pack),1,3.84,2019-02-10 11:46:00,850 2nd St, Austin,TX,73301 +158612,Wired Headphones,1,11.99,2019-02-24 18:30:00,366 1st St, San Francisco,CA,94016 +158613,27in 4K Gaming Monitor,1,389.99,2019-02-27 11:03:00,430 Wilson St, Boston,MA,02215 +158614,USB-C Charging Cable,1,11.95,2019-02-07 06:20:00,232 Maple St, San Francisco,CA,94016 +158615,Lightning Charging Cable,1,14.95,2019-02-26 22:04:00,134 Lincoln St, Los Angeles,CA,90001 +158616,27in FHD Monitor,1,149.99,2019-02-09 11:16:00,942 Jefferson St, New York City,NY,10001 +158617,USB-C Charging Cable,1,11.95,2019-02-08 12:48:00,835 Lake St, Austin,TX,73301 +158618,34in Ultrawide Monitor,1,379.99,2019-02-09 13:52:00,415 12th St, New York City,NY,10001 +158619,AAA Batteries (4-pack),1,2.99,2019-02-11 23:59:00,963 Chestnut St, Dallas,TX,75001 +158620,Apple Airpods Headphones,1,150.0,2019-02-27 00:00:00,712 Ridge St, Atlanta,GA,30301 +158621,AA Batteries (4-pack),2,3.84,2019-02-03 10:14:00,265 Sunset St, Portland,OR,97035 +158622,Lightning Charging Cable,1,14.95,2019-02-16 09:08:00,598 12th St, Los Angeles,CA,90001 +158623,Flatscreen TV,1,300.0,2019-02-14 21:00:00,392 10th St, Portland,OR,97035 +158624,Wired Headphones,1,11.99,2019-02-01 15:29:00,127 Johnson St, San Francisco,CA,94016 +158625,Wired Headphones,1,11.99,2019-02-07 15:13:00,130 Madison St, Dallas,TX,75001 +158626,Lightning Charging Cable,2,14.95,2019-02-09 13:32:00,54 Lake St, Los Angeles,CA,90001 +158627,AAA Batteries (4-pack),1,2.99,2019-02-10 18:32:00,821 Chestnut St, Dallas,TX,75001 +158628,USB-C Charging Cable,1,11.95,2019-02-06 17:12:00,522 Forest St, Los Angeles,CA,90001 +158629,Bose SoundSport Headphones,1,99.99,2019-02-12 10:56:00,282 River St, Austin,TX,73301 +158630,ThinkPad Laptop,1,999.99,2019-02-19 15:50:00,874 Main St, Austin,TX,73301 +158631,Wired Headphones,1,11.99,2019-02-08 22:26:00,451 Highland St, San Francisco,CA,94016 +158631,Bose SoundSport Headphones,1,99.99,2019-02-08 22:26:00,451 Highland St, San Francisco,CA,94016 +158632,AA Batteries (4-pack),1,3.84,2019-02-09 12:58:00,989 Elm St, Atlanta,GA,30301 +158633,AAA Batteries (4-pack),5,2.99,2019-02-04 18:45:00,16 Washington St, Atlanta,GA,30301 +158634,AA Batteries (4-pack),1,3.84,2019-02-17 23:22:00,623 7th St, Seattle,WA,98101 +158635,Lightning Charging Cable,1,14.95,2019-02-22 18:48:00,157 11th St, San Francisco,CA,94016 +158636,27in FHD Monitor,1,149.99,2019-02-20 19:38:00,490 South St, Boston,MA,02215 +158637,Lightning Charging Cable,1,14.95,2019-02-27 12:41:00,619 9th St, Atlanta,GA,30301 +158638,27in 4K Gaming Monitor,1,389.99,2019-02-26 16:02:00,417 1st St, Boston,MA,02215 +158639,27in 4K Gaming Monitor,1,389.99,2019-02-12 18:38:00,41 7th St, Seattle,WA,98101 +158640,Macbook Pro Laptop,1,1700.0,2019-02-18 13:30:00,519 River St, San Francisco,CA,94016 +158641,Flatscreen TV,1,300.0,2019-02-21 17:01:00,9 Lakeview St, Seattle,WA,98101 +158642,Vareebadd Phone,1,400.0,2019-02-08 00:00:00,356 Ridge St, Dallas,TX,75001 +158642,USB-C Charging Cable,1,11.95,2019-02-08 00:00:00,356 Ridge St, Dallas,TX,75001 +158643,AA Batteries (4-pack),1,3.84,2019-02-23 16:34:00,64 8th St, San Francisco,CA,94016 +158644,Lightning Charging Cable,1,14.95,2019-02-18 14:53:00,768 Wilson St, Atlanta,GA,30301 +158645,AA Batteries (4-pack),2,3.84,2019-02-22 17:42:00,63 9th St, Seattle,WA,98101 +158646,Lightning Charging Cable,1,14.95,2019-02-23 03:12:00,206 Elm St, Portland,OR,97035 +158647,AA Batteries (4-pack),2,3.84,2019-02-12 19:52:00,317 12th St, Atlanta,GA,30301 +158648,27in FHD Monitor,1,149.99,2019-02-05 12:12:00,822 1st St, New York City,NY,10001 +158649,USB-C Charging Cable,1,11.95,2019-02-02 20:26:00,307 7th St, San Francisco,CA,94016 +158650,AA Batteries (4-pack),2,3.84,2019-02-15 17:42:00,752 Willow St, San Francisco,CA,94016 +158651,Apple Airpods Headphones,1,150.0,2019-02-27 22:59:00,406 Maple St, New York City,NY,10001 +158652,Flatscreen TV,1,300.0,2019-02-15 14:56:00,54 Spruce St, Los Angeles,CA,90001 +158653,34in Ultrawide Monitor,1,379.99,2019-02-07 21:50:00,516 1st St, Atlanta,GA,30301 +158654,USB-C Charging Cable,1,11.95,2019-02-27 12:07:00,235 Madison St, San Francisco,CA,94016 +158655,27in 4K Gaming Monitor,1,389.99,2019-02-09 20:56:00,20 14th St, Boston,MA,02215 +158656,27in 4K Gaming Monitor,1,389.99,2019-02-21 13:24:00,475 Jackson St, Boston,MA,02215 +158657,Apple Airpods Headphones,1,150.0,2019-02-07 12:11:00,223 Church St, San Francisco,CA,94016 +158658,Bose SoundSport Headphones,1,99.99,2019-02-06 13:12:00,984 Sunset St, Los Angeles,CA,90001 +158659,AAA Batteries (4-pack),1,2.99,2019-02-20 11:27:00,476 Highland St, Boston,MA,02215 +158660,27in FHD Monitor,1,149.99,2019-02-21 09:48:00,411 2nd St, Seattle,WA,98101 +158661,AAA Batteries (4-pack),2,2.99,2019-02-13 17:29:00,896 14th St, New York City,NY,10001 +158662,AA Batteries (4-pack),1,3.84,2019-02-10 12:30:00,443 Park St, Boston,MA,02215 +158663,AA Batteries (4-pack),1,3.84,2019-02-05 18:02:00,757 Main St, New York City,NY,10001 +158664,AAA Batteries (4-pack),2,2.99,2019-02-20 10:15:00,421 Lake St, Portland,OR,97035 +158665,Apple Airpods Headphones,1,150.0,2019-02-19 13:56:00,598 Ridge St, New York City,NY,10001 +158666,AAA Batteries (4-pack),1,2.99,2019-02-13 19:06:00,223 North St, Portland,OR,97035 +158667,USB-C Charging Cable,1,11.95,2019-02-13 15:48:00,265 Jefferson St, Los Angeles,CA,90001 +158668,Bose SoundSport Headphones,1,99.99,2019-02-14 06:56:00,26 7th St, Portland,OR,97035 +158669,USB-C Charging Cable,1,11.95,2019-02-04 10:36:00,549 Park St, New York City,NY,10001 +158670,AA Batteries (4-pack),1,3.84,2019-02-05 20:40:00,376 Chestnut St, Atlanta,GA,30301 +158671,Flatscreen TV,1,300.0,2019-02-17 17:19:00,221 Walnut St, Atlanta,GA,30301 +158672,LG Washing Machine,1,600.0,2019-02-18 18:03:00,362 Washington St, Los Angeles,CA,90001 +158673,Flatscreen TV,1,300.0,2019-02-01 13:06:00,391 Lake St, San Francisco,CA,94016 +158674,AAA Batteries (4-pack),2,2.99,2019-02-16 14:22:00,208 Johnson St, Los Angeles,CA,90001 +158675,AAA Batteries (4-pack),1,2.99,2019-02-21 14:11:00,954 Main St, Los Angeles,CA,90001 +158676,34in Ultrawide Monitor,1,379.99,2019-02-02 21:23:00,150 5th St, Seattle,WA,98101 +158677,AAA Batteries (4-pack),2,2.99,2019-02-24 12:42:00,77 1st St, San Francisco,CA,94016 +158678,AAA Batteries (4-pack),1,2.99,2019-02-01 12:28:00,128 Spruce St, Atlanta,GA,30301 +158679,USB-C Charging Cable,1,11.95,2019-02-07 20:49:00,106 13th St, San Francisco,CA,94016 +158680,27in FHD Monitor,1,149.99,2019-02-24 22:07:00,889 Chestnut St, Seattle,WA,98101 +158681,AAA Batteries (4-pack),2,2.99,2019-02-11 18:54:00,252 Chestnut St, Los Angeles,CA,90001 +158682,ThinkPad Laptop,1,999.99,2019-02-16 11:26:00,430 11th St, Seattle,WA,98101 +158683,Wired Headphones,2,11.99,2019-02-27 16:43:00,749 Main St, New York City,NY,10001 +158684,Bose SoundSport Headphones,1,99.99,2019-02-07 18:20:00,451 Cedar St, Atlanta,GA,30301 +158685,AA Batteries (4-pack),1,3.84,2019-02-05 12:53:00,959 Forest St, Boston,MA,02215 +158686,20in Monitor,1,109.99,2019-02-25 14:11:00,533 4th St, Los Angeles,CA,90001 +158687,Macbook Pro Laptop,1,1700.0,2019-02-10 13:46:00,298 South St, Atlanta,GA,30301 +158688,AA Batteries (4-pack),1,3.84,2019-02-13 11:53:00,353 River St, Boston,MA,02215 +158689,AA Batteries (4-pack),1,3.84,2019-02-21 22:18:00,560 Sunset St, Boston,MA,02215 +158690,27in 4K Gaming Monitor,1,389.99,2019-02-17 09:03:00,572 Chestnut St, San Francisco,CA,94016 +158691,Wired Headphones,2,11.99,2019-02-17 16:38:00,231 14th St, Atlanta,GA,30301 +158692,27in FHD Monitor,1,149.99,2019-02-14 06:33:00,211 5th St, New York City,NY,10001 +158693,USB-C Charging Cable,1,11.95,2019-02-09 09:48:00,810 North St, Dallas,TX,75001 +158694,AAA Batteries (4-pack),3,2.99,2019-02-23 20:35:00,70 10th St, Boston,MA,02215 +158695,Apple Airpods Headphones,1,150.0,2019-02-18 17:05:00,535 Hickory St, Dallas,TX,75001 +158695,Lightning Charging Cable,1,14.95,2019-02-18 17:05:00,535 Hickory St, Dallas,TX,75001 +158696,Google Phone,1,600.0,2019-02-23 08:29:00,276 Sunset St, San Francisco,CA,94016 +158697,AA Batteries (4-pack),3,3.84,2019-02-26 09:30:00,436 Sunset St, Boston,MA,02215 +158698,27in 4K Gaming Monitor,1,389.99,2019-02-04 19:33:00,791 Dogwood St, San Francisco,CA,94016 +158699,USB-C Charging Cable,1,11.95,2019-02-11 12:11:00,765 12th St, Austin,TX,73301 +158700,Lightning Charging Cable,2,14.95,2019-02-27 09:41:00,768 Church St, Atlanta,GA,30301 +158701,AA Batteries (4-pack),1,3.84,2019-02-07 10:42:00,798 Pine St, Los Angeles,CA,90001 +158702,27in 4K Gaming Monitor,1,389.99,2019-02-11 12:23:00,699 2nd St, San Francisco,CA,94016 +158703,LG Washing Machine,1,600.0,2019-02-01 06:50:00,937 Adams St, Boston,MA,02215 +158704,Flatscreen TV,1,300.0,2019-02-07 14:57:00,81 2nd St, New York City,NY,10001 +158705,AAA Batteries (4-pack),1,2.99,2019-02-14 19:50:00,839 Elm St, Seattle,WA,98101 +158706,USB-C Charging Cable,1,11.95,2019-02-07 09:09:00,712 Willow St, Los Angeles,CA,90001 +158707,Bose SoundSport Headphones,1,99.99,2019-02-19 13:35:00,948 Pine St, San Francisco,CA,94016 +158708,Lightning Charging Cable,1,14.95,2019-02-27 16:03:00,766 7th St, New York City,NY,10001 +158709,Wired Headphones,3,11.99,2019-02-05 11:49:00,651 13th St, Austin,TX,73301 +158710,Lightning Charging Cable,1,14.95,2019-02-16 21:59:00,708 Meadow St, Atlanta,GA,30301 +158711,Wired Headphones,1,11.99,2019-02-06 01:13:00,969 Adams St, Austin,TX,73301 +158712,AAA Batteries (4-pack),1,2.99,2019-02-15 12:01:00,205 Hill St, Boston,MA,02215 +158713,Lightning Charging Cable,1,14.95,2019-02-14 10:34:00,899 6th St, Seattle,WA,98101 +158714,Lightning Charging Cable,1,14.95,2019-02-22 10:49:00,201 Lincoln St, Portland,ME,04101 +158715,USB-C Charging Cable,1,11.95,2019-02-22 15:38:00,226 Ridge St, Los Angeles,CA,90001 +158716,USB-C Charging Cable,1,11.95,2019-02-06 13:22:00,315 North St, Seattle,WA,98101 +158717,Flatscreen TV,1,300.0,2019-02-01 17:18:00,403 Willow St, Los Angeles,CA,90001 +158718,Bose SoundSport Headphones,1,99.99,2019-02-06 21:36:00,57 Cherry St, Los Angeles,CA,90001 +158719,Bose SoundSport Headphones,1,99.99,2019-02-09 12:31:00,63 Cedar St, Los Angeles,CA,90001 +158720,Lightning Charging Cable,1,14.95,2019-02-12 21:54:00,802 Walnut St, Seattle,WA,98101 +158721,Wired Headphones,1,11.99,2019-02-27 11:32:00,579 9th St, Seattle,WA,98101 +158722,USB-C Charging Cable,1,11.95,2019-02-23 10:03:00,970 Church St, Dallas,TX,75001 +158723,Lightning Charging Cable,1,14.95,2019-02-14 08:10:00,932 Madison St, Atlanta,GA,30301 +158724,Wired Headphones,1,11.99,2019-02-26 22:22:00,527 Church St, Seattle,WA,98101 +158725,Bose SoundSport Headphones,1,99.99,2019-02-28 20:00:00,431 8th St, Portland,ME,04101 +158726,Vareebadd Phone,1,400.0,2019-02-06 10:53:00,873 4th St, Boston,MA,02215 +158727,Lightning Charging Cable,1,14.95,2019-02-04 19:17:00,891 Chestnut St, New York City,NY,10001 +158728,USB-C Charging Cable,1,11.95,2019-02-15 10:58:00,568 2nd St, New York City,NY,10001 +158729,USB-C Charging Cable,1,11.95,2019-02-27 22:27:00,87 Madison St, San Francisco,CA,94016 +158730,Wired Headphones,1,11.99,2019-02-02 09:48:00,489 Spruce St, Los Angeles,CA,90001 +158731,Lightning Charging Cable,1,14.95,2019-02-18 09:10:00,610 9th St, Dallas,TX,75001 +158732,AAA Batteries (4-pack),1,2.99,2019-02-17 17:02:00,502 Forest St, San Francisco,CA,94016 +158733,27in 4K Gaming Monitor,1,389.99,2019-02-27 20:25:00,458 Lakeview St, Austin,TX,73301 +158734,Macbook Pro Laptop,1,1700.0,2019-02-27 21:36:00,314 2nd St, New York City,NY,10001 +158735,Wired Headphones,1,11.99,2019-02-23 17:34:00,68 Park St, New York City,NY,10001 +158736,Lightning Charging Cable,1,14.95,2019-02-16 21:40:00,488 Adams St, Los Angeles,CA,90001 +158737,USB-C Charging Cable,1,11.95,2019-02-13 21:32:00,196 Adams St, Atlanta,GA,30301 +158738,USB-C Charging Cable,1,11.95,2019-02-23 13:10:00,792 Meadow St, San Francisco,CA,94016 +158739,AAA Batteries (4-pack),1,2.99,2019-02-05 20:34:00,418 Main St, Dallas,TX,75001 +158740,AAA Batteries (4-pack),1,2.99,2019-02-04 17:30:00,110 13th St, Seattle,WA,98101 +158741,USB-C Charging Cable,1,11.95,2019-02-24 14:23:00,93 1st St, Boston,MA,02215 +158742,ThinkPad Laptop,1,999.99,2019-02-28 23:04:00,529 Jefferson St, San Francisco,CA,94016 +158743,Apple Airpods Headphones,1,150.0,2019-02-03 11:34:00,204 Center St, San Francisco,CA,94016 +158744,27in 4K Gaming Monitor,1,389.99,2019-02-27 15:19:00,769 Church St, Boston,MA,02215 +158745,Apple Airpods Headphones,1,150.0,2019-02-03 19:26:00,492 Church St, New York City,NY,10001 +158746,USB-C Charging Cable,1,11.95,2019-02-28 00:32:00,788 Lake St, Los Angeles,CA,90001 +158747,USB-C Charging Cable,1,11.95,2019-02-07 19:45:00,241 Cherry St, San Francisco,CA,94016 +158748,Vareebadd Phone,1,400.0,2019-02-02 17:11:00,610 Jackson St, Boston,MA,02215 +158749,Macbook Pro Laptop,1,1700.0,2019-02-14 21:54:00,150 Wilson St, Los Angeles,CA,90001 +158750,27in FHD Monitor,1,149.99,2019-02-09 10:35:00,194 Meadow St, Los Angeles,CA,90001 +158751,Flatscreen TV,1,300.0,2019-02-21 23:22:00,374 Lincoln St, New York City,NY,10001 +158752,Google Phone,1,600.0,2019-02-17 16:11:00,538 Pine St, Los Angeles,CA,90001 +158753,Lightning Charging Cable,1,14.95,2019-02-11 10:58:00,998 Lake St, New York City,NY,10001 +158754,20in Monitor,1,109.99,2019-02-18 08:25:00,662 Willow St, San Francisco,CA,94016 +158755,Apple Airpods Headphones,1,150.0,2019-02-10 14:18:00,686 Chestnut St, New York City,NY,10001 +158756,Flatscreen TV,1,300.0,2019-02-01 23:27:00,234 4th St, Los Angeles,CA,90001 +158757,Lightning Charging Cable,1,14.95,2019-02-25 22:41:00,307 Center St, Atlanta,GA,30301 +158758,Wired Headphones,1,11.99,2019-02-26 22:01:00,58 Madison St, New York City,NY,10001 +158759,AAA Batteries (4-pack),2,2.99,2019-02-10 09:39:00,915 Ridge St, Portland,OR,97035 +158760,Apple Airpods Headphones,1,150.0,2019-02-07 19:39:00,508 Jackson St, San Francisco,CA,94016 +158761,Bose SoundSport Headphones,1,99.99,2019-02-26 09:12:00,709 Cherry St, Dallas,TX,75001 +158762,ThinkPad Laptop,1,999.99,2019-02-20 00:27:00,711 5th St, Atlanta,GA,30301 +158763,AAA Batteries (4-pack),2,2.99,2019-02-21 19:47:00,578 8th St, San Francisco,CA,94016 +158764,Wired Headphones,1,11.99,2019-02-15 18:38:00,251 6th St, San Francisco,CA,94016 +158765,AAA Batteries (4-pack),1,2.99,2019-02-02 17:55:00,873 South St, New York City,NY,10001 +158766,AA Batteries (4-pack),1,3.84,2019-02-05 21:52:00,855 9th St, New York City,NY,10001 +158767,Lightning Charging Cable,1,14.95,2019-02-07 18:20:00,653 Hickory St, Los Angeles,CA,90001 +158768,USB-C Charging Cable,1,11.95,2019-02-03 08:15:00,592 14th St, New York City,NY,10001 +158769,USB-C Charging Cable,1,11.95,2019-02-07 14:19:00,651 13th St, Los Angeles,CA,90001 +158770,Lightning Charging Cable,1,14.95,2019-02-15 14:30:00,857 Park St, Portland,ME,04101 +158771,Lightning Charging Cable,1,14.95,2019-02-20 17:46:00,279 Lincoln St, San Francisco,CA,94016 +158772,iPhone,1,700.0,2019-02-17 22:42:00,973 Madison St, San Francisco,CA,94016 +158773,20in Monitor,1,109.99,2019-02-11 19:05:00,578 Forest St, New York City,NY,10001 +158774,Wired Headphones,1,11.99,2019-02-25 11:13:00,739 Lincoln St, Portland,OR,97035 +158775,27in FHD Monitor,1,149.99,2019-02-22 09:09:00,169 Meadow St, Los Angeles,CA,90001 +158776,Google Phone,1,600.0,2019-02-22 20:10:00,521 10th St, San Francisco,CA,94016 +158777,USB-C Charging Cable,1,11.95,2019-02-17 23:19:00,827 Willow St, Seattle,WA,98101 +158778,AAA Batteries (4-pack),1,2.99,2019-02-13 15:57:00,24 Walnut St, Los Angeles,CA,90001 +158779,Apple Airpods Headphones,1,150.0,2019-02-15 11:35:00,601 8th St, New York City,NY,10001 +158780,Wired Headphones,1,11.99,2019-02-11 21:45:00,977 6th St, New York City,NY,10001 +158781,Lightning Charging Cable,1,14.95,2019-02-28 07:30:00,241 14th St, Seattle,WA,98101 +158782,Google Phone,1,600.0,2019-02-16 12:27:00,37 6th St, Boston,MA,02215 +158783,AAA Batteries (4-pack),2,2.99,2019-02-18 14:53:00,989 Lake St, Portland,ME,04101 +158784,USB-C Charging Cable,1,11.95,2019-02-01 18:35:00,5 4th St, Los Angeles,CA,90001 +158785,AAA Batteries (4-pack),1,2.99,2019-02-23 18:28:00,101 Jefferson St, Dallas,TX,75001 +158786,USB-C Charging Cable,1,11.95,2019-02-24 19:26:00,680 4th St, New York City,NY,10001 +158787,USB-C Charging Cable,1,11.95,2019-02-02 16:23:00,991 North St, Austin,TX,73301 +158788,AA Batteries (4-pack),1,3.84,2019-02-08 20:01:00,965 Dogwood St, Los Angeles,CA,90001 +158789,AA Batteries (4-pack),1,3.84,2019-02-23 09:54:00,529 Lincoln St, San Francisco,CA,94016 +158790,27in FHD Monitor,1,149.99,2019-02-13 19:37:00,850 Pine St, San Francisco,CA,94016 +158791,Lightning Charging Cable,1,14.95,2019-02-09 09:11:00,945 1st St, Boston,MA,02215 +158792,LG Dryer,1,600.0,2019-02-01 20:12:00,998 Wilson St, Los Angeles,CA,90001 +158793,AA Batteries (4-pack),1,3.84,2019-02-22 16:58:00,468 Willow St, New York City,NY,10001 +158794,USB-C Charging Cable,1,11.95,2019-02-01 12:55:00,942 10th St, New York City,NY,10001 +158795,AAA Batteries (4-pack),1,2.99,2019-02-26 07:48:00,803 Highland St, San Francisco,CA,94016 +158796,USB-C Charging Cable,1,11.95,2019-02-23 19:11:00,968 11th St, San Francisco,CA,94016 +158797,Lightning Charging Cable,1,14.95,2019-02-24 21:19:00,45 Lakeview St, Los Angeles,CA,90001 +158798,iPhone,1,700.0,2019-02-23 03:11:00,301 Ridge St, Dallas,TX,75001 +158799,Wired Headphones,1,11.99,2019-02-19 15:17:00,628 Center St, San Francisco,CA,94016 +158800,Apple Airpods Headphones,1,150.0,2019-02-21 12:39:00,968 Jackson St, Los Angeles,CA,90001 +158801,Wired Headphones,1,11.99,2019-02-27 19:50:00,445 Willow St, New York City,NY,10001 +158802,27in FHD Monitor,1,149.99,2019-02-18 13:47:00,728 Cherry St, Boston,MA,02215 +158803,USB-C Charging Cable,2,11.95,2019-02-05 20:20:00,425 Church St, Los Angeles,CA,90001 +158804,AAA Batteries (4-pack),1,2.99,2019-02-22 15:32:00,857 Jefferson St, Boston,MA,02215 +158805,34in Ultrawide Monitor,1,379.99,2019-02-16 10:44:00,345 Lakeview St, Los Angeles,CA,90001 +158806,ThinkPad Laptop,1,999.99,2019-02-21 09:55:00,350 Pine St, New York City,NY,10001 +158807,Bose SoundSport Headphones,1,99.99,2019-02-07 21:13:00,46 Walnut St, Boston,MA,02215 +158808,20in Monitor,1,109.99,2019-02-27 22:53:00,413 Ridge St, Los Angeles,CA,90001 +158809,USB-C Charging Cable,1,11.95,2019-02-28 18:01:00,380 4th St, Portland,ME,04101 +158810,AA Batteries (4-pack),1,3.84,2019-02-19 09:10:00,407 Spruce St, Seattle,WA,98101 +158811,Apple Airpods Headphones,1,150.0,2019-02-06 15:33:00,764 Hill St, New York City,NY,10001 +158812,Wired Headphones,1,11.99,2019-02-19 06:50:00,302 West St, New York City,NY,10001 +158813,Bose SoundSport Headphones,1,99.99,2019-02-13 17:08:00,152 Hill St, Boston,MA,02215 +158814,USB-C Charging Cable,1,11.95,2019-02-16 12:12:00,73 Madison St, San Francisco,CA,94016 +158815,Vareebadd Phone,1,400.0,2019-02-14 22:13:00,436 Chestnut St, Los Angeles,CA,90001 +158816,USB-C Charging Cable,1,11.95,2019-02-14 20:35:00,316 Maple St, Austin,TX,73301 +158817,27in 4K Gaming Monitor,2,389.99,2019-02-08 10:56:00,732 Park St, New York City,NY,10001 +158818,Flatscreen TV,1,300.0,2019-02-19 13:25:00,356 10th St, Seattle,WA,98101 +158819,27in 4K Gaming Monitor,1,389.99,2019-02-21 23:17:00,420 Maple St, Boston,MA,02215 +158820,Lightning Charging Cable,1,14.95,2019-02-09 07:29:00,721 5th St, San Francisco,CA,94016 +158821,Vareebadd Phone,1,400.0,2019-02-07 02:23:00,837 Church St, San Francisco,CA,94016 +158822,USB-C Charging Cable,1,11.95,2019-02-24 15:23:00,53 Church St, New York City,NY,10001 +158823,ThinkPad Laptop,1,999.99,2019-02-18 15:44:00,609 4th St, San Francisco,CA,94016 +158824,Lightning Charging Cable,1,14.95,2019-02-22 00:07:00,517 Church St, Boston,MA,02215 +158825,AAA Batteries (4-pack),1,2.99,2019-02-11 21:52:00,251 7th St, San Francisco,CA,94016 +158826,AA Batteries (4-pack),1,3.84,2019-02-20 16:49:00,554 Ridge St, New York City,NY,10001 +158827,34in Ultrawide Monitor,1,379.99,2019-02-07 17:57:00,632 Madison St, New York City,NY,10001 +158828,Apple Airpods Headphones,1,150.0,2019-02-09 15:25:00,554 13th St, Los Angeles,CA,90001 +158829,USB-C Charging Cable,1,11.95,2019-02-27 19:12:00,68 4th St, Austin,TX,73301 +158830,Lightning Charging Cable,1,14.95,2019-02-19 14:17:00,660 14th St, New York City,NY,10001 +158831,Macbook Pro Laptop,1,1700.0,2019-02-10 13:18:00,39 Washington St, Portland,ME,04101 +158832,Apple Airpods Headphones,1,150.0,2019-02-14 00:35:00,940 River St, San Francisco,CA,94016 +158833,AAA Batteries (4-pack),4,2.99,2019-02-23 10:22:00,992 14th St, Dallas,TX,75001 +158834,27in 4K Gaming Monitor,1,389.99,2019-02-12 19:29:00,178 Chestnut St, Portland,OR,97035 +158835,Google Phone,1,600.0,2019-02-21 17:25:00,389 Main St, San Francisco,CA,94016 +158836,AAA Batteries (4-pack),1,2.99,2019-02-15 00:26:00,508 6th St, Atlanta,GA,30301 +158837,Macbook Pro Laptop,1,1700.0,2019-02-19 13:16:00,545 4th St, Los Angeles,CA,90001 +158838,Wired Headphones,1,11.99,2019-02-14 20:06:00,134 Pine St, Los Angeles,CA,90001 +158839,AAA Batteries (4-pack),1,2.99,2019-02-23 09:51:00,836 6th St, New York City,NY,10001 +158840,Lightning Charging Cable,1,14.95,2019-02-20 21:32:00,91 Chestnut St, New York City,NY,10001 +158841,34in Ultrawide Monitor,1,379.99,2019-02-01 23:16:00,786 Willow St, Boston,MA,02215 +158842,USB-C Charging Cable,1,11.95,2019-02-08 13:29:00,58 Church St, San Francisco,CA,94016 +158843,34in Ultrawide Monitor,1,379.99,2019-02-11 22:29:00,462 6th St, Seattle,WA,98101 +158844,Lightning Charging Cable,1,14.95,2019-02-08 10:05:00,342 13th St, New York City,NY,10001 +158845,Wired Headphones,1,11.99,2019-02-07 15:33:00,156 Walnut St, San Francisco,CA,94016 +158846,USB-C Charging Cable,1,11.95,2019-02-05 15:43:00,111 Jackson St, San Francisco,CA,94016 +158847,27in FHD Monitor,1,149.99,2019-02-15 18:13:00,501 Church St, New York City,NY,10001 +158848,iPhone,1,700.0,2019-02-08 12:41:00,902 Willow St, Los Angeles,CA,90001 +158849,Lightning Charging Cable,1,14.95,2019-02-13 16:55:00,497 Chestnut St, Los Angeles,CA,90001 +158850,Google Phone,1,600.0,2019-02-15 22:37:00,529 1st St, Los Angeles,CA,90001 +158850,USB-C Charging Cable,1,11.95,2019-02-15 22:37:00,529 1st St, Los Angeles,CA,90001 +158851,Lightning Charging Cable,1,14.95,2019-02-07 19:04:00,843 Washington St, Austin,TX,73301 +158852,Vareebadd Phone,1,400.0,2019-02-12 17:53:00,798 Main St, San Francisco,CA,94016 +158852,Wired Headphones,1,11.99,2019-02-12 17:53:00,798 Main St, San Francisco,CA,94016 +158853,AA Batteries (4-pack),1,3.84,2019-02-12 20:35:00,955 Chestnut St, San Francisco,CA,94016 +158854,AAA Batteries (4-pack),1,2.99,2019-02-23 10:39:00,308 Hickory St, Atlanta,GA,30301 +158855,Lightning Charging Cable,1,14.95,2019-02-03 20:21:00,671 Johnson St, Dallas,TX,75001 +158856,AA Batteries (4-pack),1,3.84,2019-02-12 09:05:00,130 Hickory St, Portland,OR,97035 +158857,ThinkPad Laptop,1,999.99,2019-02-03 12:22:00,973 14th St, New York City,NY,10001 +158858,USB-C Charging Cable,1,11.95,2019-02-26 19:29:00,769 12th St, Austin,TX,73301 +158859,AAA Batteries (4-pack),2,2.99,2019-02-08 21:55:00,219 6th St, San Francisco,CA,94016 +158860,Apple Airpods Headphones,1,150.0,2019-02-08 07:38:00,91 Center St, Los Angeles,CA,90001 +158861,Vareebadd Phone,1,400.0,2019-02-24 15:39:00,764 Park St, Austin,TX,73301 +158862,Lightning Charging Cable,2,14.95,2019-02-26 16:18:00,60 Elm St, Atlanta,GA,30301 +158863,ThinkPad Laptop,1,999.99,2019-02-21 15:01:00,282 River St, Boston,MA,02215 +158864,Lightning Charging Cable,1,14.95,2019-02-12 22:14:00,467 Meadow St, New York City,NY,10001 +158865,ThinkPad Laptop,1,999.99,2019-02-27 17:32:00,829 Lake St, Los Angeles,CA,90001 +158866,Google Phone,1,600.0,2019-02-13 16:20:00,960 Sunset St, San Francisco,CA,94016 +158866,USB-C Charging Cable,1,11.95,2019-02-13 16:20:00,960 Sunset St, San Francisco,CA,94016 +158867,Lightning Charging Cable,1,14.95,2019-02-20 08:47:00,768 Walnut St, New York City,NY,10001 +158868,Bose SoundSport Headphones,1,99.99,2019-02-24 19:46:00,33 Adams St, Portland,OR,97035 +158869,27in FHD Monitor,1,149.99,2019-02-12 17:49:00,301 Elm St, Atlanta,GA,30301 +158870,AA Batteries (4-pack),2,3.84,2019-02-21 15:17:00,784 Ridge St, Los Angeles,CA,90001 +158871,27in FHD Monitor,1,149.99,2019-02-24 22:27:00,11 Lincoln St, San Francisco,CA,94016 +158872,Lightning Charging Cable,1,14.95,2019-02-25 00:38:00,947 8th St, Boston,MA,02215 +158873,Lightning Charging Cable,1,14.95,2019-02-24 01:53:00,995 6th St, San Francisco,CA,94016 +158874,27in FHD Monitor,1,149.99,2019-02-25 11:53:00,516 Spruce St, New York City,NY,10001 +158875,AA Batteries (4-pack),1,3.84,2019-02-08 19:26:00,353 Jackson St, Los Angeles,CA,90001 +158876,AA Batteries (4-pack),1,3.84,2019-02-14 12:55:00,284 Jackson St, Seattle,WA,98101 +158877,27in FHD Monitor,1,149.99,2019-02-06 13:42:00,667 Johnson St, Austin,TX,73301 +158878,27in 4K Gaming Monitor,1,389.99,2019-02-01 07:54:00,802 South St, San Francisco,CA,94016 +158879,USB-C Charging Cable,1,11.95,2019-02-25 05:41:00,178 Elm St, New York City,NY,10001 +158880,Wired Headphones,1,11.99,2019-02-20 22:06:00,192 Pine St, Atlanta,GA,30301 +158881,AA Batteries (4-pack),1,3.84,2019-02-17 17:01:00,130 Willow St, Los Angeles,CA,90001 +158882,AA Batteries (4-pack),2,3.84,2019-02-22 20:22:00,837 Lincoln St, Dallas,TX,75001 +158883,Bose SoundSport Headphones,1,99.99,2019-02-27 14:29:00,584 11th St, San Francisco,CA,94016 +158884,Google Phone,1,600.0,2019-02-23 22:47:00,96 Church St, Portland,ME,04101 +158884,USB-C Charging Cable,1,11.95,2019-02-23 22:47:00,96 Church St, Portland,ME,04101 +158885,AAA Batteries (4-pack),1,2.99,2019-02-18 14:13:00,643 10th St, Boston,MA,02215 +158886,Google Phone,1,600.0,2019-02-24 17:46:00,902 Elm St, Atlanta,GA,30301 +158887,20in Monitor,1,109.99,2019-02-15 13:59:00,477 Park St, San Francisco,CA,94016 +158888,ThinkPad Laptop,1,999.99,2019-02-24 12:09:00,86 West St, New York City,NY,10001 +158889,Google Phone,1,600.0,2019-02-10 09:23:00,561 Lake St, Portland,OR,97035 +158890,Apple Airpods Headphones,1,150.0,2019-02-07 13:10:00,118 North St, Seattle,WA,98101 +158891,Lightning Charging Cable,1,14.95,2019-02-05 07:19:00,113 North St, San Francisco,CA,94016 +158892,Apple Airpods Headphones,1,150.0,2019-02-10 17:32:00,748 Madison St, Los Angeles,CA,90001 +158893,USB-C Charging Cable,1,11.95,2019-02-08 15:32:00,522 Hickory St, Dallas,TX,75001 +158894,Apple Airpods Headphones,1,150.0,2019-02-05 17:10:00,722 Dogwood St, Portland,ME,04101 +158895,AA Batteries (4-pack),2,3.84,2019-02-17 08:39:00,152 South St, New York City,NY,10001 +158896,Lightning Charging Cable,1,14.95,2019-02-13 13:29:00,456 South St, Los Angeles,CA,90001 +158897,Wired Headphones,1,11.99,2019-02-13 22:59:00,326 West St, San Francisco,CA,94016 +158898,AAA Batteries (4-pack),1,2.99,2019-02-13 17:55:00,330 Walnut St, Atlanta,GA,30301 +158899,USB-C Charging Cable,1,11.95,2019-02-11 15:24:00,884 Lincoln St, Austin,TX,73301 +158899,34in Ultrawide Monitor,1,379.99,2019-02-11 15:24:00,884 Lincoln St, Austin,TX,73301 +158900,USB-C Charging Cable,1,11.95,2019-02-02 20:52:00,556 Church St, New York City,NY,10001 +158901,27in 4K Gaming Monitor,1,389.99,2019-02-08 21:53:00,518 Cedar St, San Francisco,CA,94016 +158902,Vareebadd Phone,1,400.0,2019-02-16 08:05:00,701 Meadow St, Boston,MA,02215 +158903,Wired Headphones,1,11.99,2019-02-17 18:10:00,353 Hill St, Seattle,WA,98101 +158904,iPhone,1,700.0,2019-02-01 16:47:00,990 Main St, Atlanta,GA,30301 +158905,27in FHD Monitor,1,149.99,2019-02-09 20:13:00,515 Hickory St, Austin,TX,73301 +158906,Lightning Charging Cable,1,14.95,2019-02-05 02:11:00,110 Washington St, Los Angeles,CA,90001 +158907,Lightning Charging Cable,1,14.95,2019-02-13 10:42:00,180 Adams St, San Francisco,CA,94016 +158908,Lightning Charging Cable,1,14.95,2019-02-06 16:41:00,122 Elm St, New York City,NY,10001 +158909,Lightning Charging Cable,1,14.95,2019-02-02 18:39:00,981 Cherry St, San Francisco,CA,94016 +158910,USB-C Charging Cable,1,11.95,2019-02-16 21:13:00,691 10th St, San Francisco,CA,94016 +158911,Wired Headphones,1,11.99,2019-02-02 22:35:00,776 River St, San Francisco,CA,94016 +158912,Wired Headphones,1,11.99,2019-02-26 23:07:00,213 Jefferson St, Boston,MA,02215 +158913,Apple Airpods Headphones,1,150.0,2019-02-19 21:10:00,180 Johnson St, Austin,TX,73301 +158914,Google Phone,1,600.0,2019-02-22 08:06:00,637 Forest St, San Francisco,CA,94016 +158915,27in 4K Gaming Monitor,1,389.99,2019-02-12 17:04:00,408 Jefferson St, Los Angeles,CA,90001 +158916,20in Monitor,1,109.99,2019-02-03 01:25:00,733 1st St, San Francisco,CA,94016 +158917,USB-C Charging Cable,1,11.95,2019-02-09 21:01:00,464 Madison St, San Francisco,CA,94016 +158918,AAA Batteries (4-pack),3,2.99,2019-02-08 22:03:00,290 Meadow St, New York City,NY,10001 +158919,AAA Batteries (4-pack),2,2.99,2019-02-01 13:59:00,831 10th St, San Francisco,CA,94016 +158920,Apple Airpods Headphones,1,150.0,2019-02-09 12:23:00,102 Lakeview St, San Francisco,CA,94016 +158921,20in Monitor,1,109.99,2019-02-09 20:02:00,2 11th St, New York City,NY,10001 +158922,Wired Headphones,1,11.99,2019-02-06 18:56:00,790 Jackson St, Atlanta,GA,30301 +158923,Bose SoundSport Headphones,1,99.99,2019-02-05 10:39:00,429 Cherry St, Austin,TX,73301 +158924,34in Ultrawide Monitor,1,379.99,2019-02-20 06:35:00,849 1st St, Portland,OR,97035 +158925,Bose SoundSport Headphones,1,99.99,2019-02-04 16:29:00,422 9th St, New York City,NY,10001 +158926,iPhone,1,700.0,2019-02-15 12:58:00,227 Park St, Portland,OR,97035 +158927,Wired Headphones,1,11.99,2019-02-26 13:21:00,542 Jackson St, New York City,NY,10001 +158928,AAA Batteries (4-pack),1,2.99,2019-02-24 14:52:00,208 Hill St, New York City,NY,10001 +158929,AAA Batteries (4-pack),1,2.99,2019-02-02 08:18:00,983 14th St, New York City,NY,10001 +158930,Lightning Charging Cable,1,14.95,2019-02-07 20:06:00,859 10th St, Los Angeles,CA,90001 +158931,Bose SoundSport Headphones,1,99.99,2019-02-10 09:42:00,246 13th St, Portland,OR,97035 +158932,AAA Batteries (4-pack),1,2.99,2019-02-26 16:35:00,200 Forest St, Boston,MA,02215 +158933,AA Batteries (4-pack),1,3.84,2019-02-12 23:01:00,58 South St, Los Angeles,CA,90001 +158934,AAA Batteries (4-pack),1,2.99,2019-02-16 16:24:00,481 Dogwood St, Los Angeles,CA,90001 +158935,USB-C Charging Cable,1,11.95,2019-02-12 14:26:00,527 Church St, Los Angeles,CA,90001 +158936,Macbook Pro Laptop,1,1700.0,2019-02-02 17:39:00,206 12th St, New York City,NY,10001 +158937,20in Monitor,1,109.99,2019-02-11 12:39:00,385 West St, San Francisco,CA,94016 +158938,LG Washing Machine,1,600.0,2019-02-04 00:23:00,481 Adams St, Los Angeles,CA,90001 +158939,Lightning Charging Cable,1,14.95,2019-02-02 20:20:00,400 Chestnut St, San Francisco,CA,94016 +158940,Lightning Charging Cable,1,14.95,2019-02-19 17:06:00,70 Pine St, Portland,ME,04101 +158941,AA Batteries (4-pack),1,3.84,2019-02-13 15:20:00,460 8th St, Seattle,WA,98101 +158942,Bose SoundSport Headphones,1,99.99,2019-02-18 08:55:00,210 Pine St, Portland,OR,97035 +158943,20in Monitor,1,109.99,2019-02-25 11:57:00,6 Lakeview St, Portland,OR,97035 +158944,iPhone,1,700.0,2019-02-20 16:12:00,703 Pine St, Dallas,TX,75001 +158945,AA Batteries (4-pack),2,3.84,2019-02-21 21:57:00,993 7th St, Boston,MA,02215 +158946,Apple Airpods Headphones,1,150.0,2019-02-05 18:04:00,103 13th St, Boston,MA,02215 +158947,ThinkPad Laptop,1,999.99,2019-02-13 07:25:00,844 Main St, Austin,TX,73301 +158948,USB-C Charging Cable,1,11.95,2019-02-26 15:28:00,702 12th St, Seattle,WA,98101 +158949,AA Batteries (4-pack),1,3.84,2019-02-20 18:49:00,908 Dogwood St, Austin,TX,73301 +158950,Bose SoundSport Headphones,1,99.99,2019-02-02 16:09:00,376 Spruce St, Los Angeles,CA,90001 +158951,27in FHD Monitor,1,149.99,2019-02-09 23:33:00,307 Adams St, Seattle,WA,98101 +158952,Wired Headphones,1,11.99,2019-02-22 17:46:00,84 South St, San Francisco,CA,94016 +158953,AA Batteries (4-pack),1,3.84,2019-02-17 15:50:00,256 River St, Los Angeles,CA,90001 +158954,Apple Airpods Headphones,1,150.0,2019-02-16 16:36:00,287 River St, Boston,MA,02215 +158955,Vareebadd Phone,1,400.0,2019-02-19 02:26:00,930 Walnut St, San Francisco,CA,94016 +158955,USB-C Charging Cable,1,11.95,2019-02-19 02:26:00,930 Walnut St, San Francisco,CA,94016 +158956,Wired Headphones,1,11.99,2019-02-09 09:56:00,177 14th St, San Francisco,CA,94016 +158957,Lightning Charging Cable,1,14.95,2019-02-18 16:37:00,89 Church St, Seattle,WA,98101 +158958,AA Batteries (4-pack),1,3.84,2019-02-26 09:22:00,422 Cherry St, Austin,TX,73301 +158959,USB-C Charging Cable,1,11.95,2019-02-22 18:31:00,99 Johnson St, San Francisco,CA,94016 +158960,ThinkPad Laptop,1,999.99,2019-02-01 14:19:00,386 6th St, New York City,NY,10001 +158961,Bose SoundSport Headphones,1,99.99,2019-02-22 17:33:00,311 Jackson St, San Francisco,CA,94016 +158962,AAA Batteries (4-pack),2,2.99,2019-02-12 11:29:00,664 Willow St, Boston,MA,02215 +158963,Bose SoundSport Headphones,1,99.99,2019-02-14 18:26:00,589 14th St, Los Angeles,CA,90001 +158964,AAA Batteries (4-pack),1,2.99,2019-02-24 10:12:00,679 2nd St, Portland,ME,04101 +158965,Wired Headphones,1,11.99,2019-02-06 17:36:00,621 Park St, Seattle,WA,98101 +158966,AA Batteries (4-pack),2,3.84,2019-02-03 19:22:00,406 Wilson St, Austin,TX,73301 +158967,Google Phone,1,600.0,2019-02-04 19:41:00,12 Maple St, Boston,MA,02215 +158968,Apple Airpods Headphones,1,150.0,2019-02-13 18:05:00,516 7th St, Atlanta,GA,30301 +158969,Apple Airpods Headphones,1,150.0,2019-02-18 23:41:00,440 West St, Seattle,WA,98101 +158970,LG Washing Machine,1,600.0,2019-02-03 13:16:00,510 Forest St, San Francisco,CA,94016 +158971,AAA Batteries (4-pack),1,2.99,2019-02-10 12:32:00,466 Jefferson St, San Francisco,CA,94016 +158972,AA Batteries (4-pack),1,3.84,2019-02-20 21:16:00,405 Meadow St, Seattle,WA,98101 +158973,34in Ultrawide Monitor,1,379.99,2019-02-10 20:19:00,602 Cherry St, San Francisco,CA,94016 +158973,AA Batteries (4-pack),3,3.84,2019-02-10 20:19:00,602 Cherry St, San Francisco,CA,94016 +158974,LG Washing Machine,1,600.0,2019-02-05 11:52:00,864 Jackson St, New York City,NY,10001 +158975,Lightning Charging Cable,1,14.95,2019-02-14 23:49:00,775 Wilson St, San Francisco,CA,94016 +158976,20in Monitor,1,109.99,2019-02-27 20:54:00,267 4th St, San Francisco,CA,94016 +158977,AAA Batteries (4-pack),1,2.99,2019-02-10 15:26:00,357 Pine St, New York City,NY,10001 +158978,Apple Airpods Headphones,1,150.0,2019-02-12 14:57:00,678 Hickory St, Los Angeles,CA,90001 +158979,Wired Headphones,1,11.99,2019-02-10 14:45:00,439 Main St, Los Angeles,CA,90001 +158980,Google Phone,1,600.0,2019-02-26 22:31:00,785 Park St, San Francisco,CA,94016 +158981,Google Phone,1,600.0,2019-02-22 11:44:00,954 2nd St, San Francisco,CA,94016 +158982,27in FHD Monitor,1,149.99,2019-02-05 21:18:00,279 7th St, Portland,OR,97035 +158983,Apple Airpods Headphones,1,150.0,2019-02-26 13:40:00,547 1st St, Austin,TX,73301 +158984,USB-C Charging Cable,1,11.95,2019-02-25 21:07:00,440 Spruce St, San Francisco,CA,94016 +158985,AA Batteries (4-pack),3,3.84,2019-02-24 16:58:00,205 5th St, Boston,MA,02215 +158986,AA Batteries (4-pack),3,3.84,2019-02-16 20:33:00,331 Walnut St, Los Angeles,CA,90001 +158987,USB-C Charging Cable,1,11.95,2019-02-19 21:40:00,95 Sunset St, Boston,MA,02215 +158988,Wired Headphones,1,11.99,2019-02-24 22:56:00,480 Elm St, Los Angeles,CA,90001 +158989,AAA Batteries (4-pack),1,2.99,2019-02-26 16:43:00,485 13th St, San Francisco,CA,94016 +158990,Google Phone,1,600.0,2019-02-09 08:23:00,842 Maple St, Boston,MA,02215 +158991,27in 4K Gaming Monitor,1,389.99,2019-02-26 21:37:00,110 South St, Atlanta,GA,30301 +158992,27in FHD Monitor,1,149.99,2019-02-06 14:10:00,254 Willow St, San Francisco,CA,94016 +158993,AAA Batteries (4-pack),1,2.99,2019-02-13 10:04:00,907 West St, Boston,MA,02215 +158994,AAA Batteries (4-pack),2,2.99,2019-02-20 13:01:00,589 14th St, Austin,TX,73301 +158995,Lightning Charging Cable,1,14.95,2019-02-12 23:06:00,740 5th St, Atlanta,GA,30301 +158996,Bose SoundSport Headphones,1,99.99,2019-02-05 12:02:00,951 10th St, San Francisco,CA,94016 +158997,USB-C Charging Cable,1,11.95,2019-02-14 23:35:00,455 Cedar St, Seattle,WA,98101 +158998,27in FHD Monitor,1,149.99,2019-02-04 17:33:00,814 7th St, San Francisco,CA,94016 +158999,AAA Batteries (4-pack),3,2.99,2019-02-21 12:28:00,684 Maple St, Seattle,WA,98101 +159000,iPhone,1,700.0,2019-02-04 10:40:00,238 Pine St, New York City,NY,10001 +159000,Lightning Charging Cable,1,14.95,2019-02-04 10:40:00,238 Pine St, New York City,NY,10001 +159000,Wired Headphones,1,11.99,2019-02-04 10:40:00,238 Pine St, New York City,NY,10001 +159001,USB-C Charging Cable,1,11.95,2019-02-15 09:41:00,27 5th St, San Francisco,CA,94016 +159002,Wired Headphones,1,11.99,2019-02-03 15:05:00,776 5th St, Boston,MA,02215 +159003,AAA Batteries (4-pack),2,2.99,2019-02-07 11:03:00,204 9th St, Los Angeles,CA,90001 +159004,Bose SoundSport Headphones,1,99.99,2019-02-23 18:54:00,436 5th St, Atlanta,GA,30301 +159005,Lightning Charging Cable,1,14.95,2019-02-02 17:29:00,840 Chestnut St, New York City,NY,10001 +159006,Lightning Charging Cable,1,14.95,2019-02-04 11:45:00,74 South St, Atlanta,GA,30301 +159007,Lightning Charging Cable,1,14.95,2019-02-09 20:50:00,812 Maple St, San Francisco,CA,94016 +159008,34in Ultrawide Monitor,1,379.99,2019-02-04 07:19:00,442 Church St, Seattle,WA,98101 +159009,AAA Batteries (4-pack),1,2.99,2019-02-16 12:05:00,233 Maple St, San Francisco,CA,94016 +159010,iPhone,1,700.0,2019-02-27 17:23:00,459 Lakeview St, Austin,TX,73301 +159011,AAA Batteries (4-pack),2,2.99,2019-02-28 18:50:00,471 11th St, New York City,NY,10001 +159012,AA Batteries (4-pack),2,3.84,2019-02-15 20:27:00,311 5th St, San Francisco,CA,94016 +159013,AAA Batteries (4-pack),1,2.99,2019-02-15 13:07:00,747 Lincoln St, Los Angeles,CA,90001 +159014,USB-C Charging Cable,1,11.95,2019-02-11 19:12:00,310 Ridge St, Seattle,WA,98101 +159015,Macbook Pro Laptop,1,1700.0,2019-02-21 18:21:00,845 8th St, Atlanta,GA,30301 +159016,27in 4K Gaming Monitor,1,389.99,2019-02-24 17:25:00,891 Willow St, Seattle,WA,98101 +159017,Bose SoundSport Headphones,1,99.99,2019-02-19 22:01:00,559 Church St, San Francisco,CA,94016 +159018,Lightning Charging Cable,1,14.95,2019-02-09 21:32:00,565 6th St, Los Angeles,CA,90001 +159019,Wired Headphones,1,11.99,2019-02-12 10:49:00,892 Forest St, San Francisco,CA,94016 +159020,Apple Airpods Headphones,1,150.0,2019-02-26 13:19:00,327 Johnson St, Portland,OR,97035 +159021,AAA Batteries (4-pack),1,2.99,2019-02-17 16:26:00,700 West St, Los Angeles,CA,90001 +159022,34in Ultrawide Monitor,1,379.99,2019-02-15 14:22:00,15 11th St, Dallas,TX,75001 +159023,USB-C Charging Cable,1,11.95,2019-02-27 14:56:00,983 8th St, San Francisco,CA,94016 +159024,ThinkPad Laptop,1,999.99,2019-02-13 19:11:00,728 Ridge St, San Francisco,CA,94016 +159025,AAA Batteries (4-pack),1,2.99,2019-02-24 15:11:00,76 Walnut St, Boston,MA,02215 +159026,iPhone,1,700.0,2019-02-01 17:02:00,494 13th St, Boston,MA,02215 +159026,Wired Headphones,2,11.99,2019-02-01 17:02:00,494 13th St, Boston,MA,02215 +159027,Wired Headphones,1,11.99,2019-02-10 11:56:00,738 Forest St, Atlanta,GA,30301 +159028,Macbook Pro Laptop,1,1700.0,2019-02-17 14:04:00,191 Wilson St, Austin,TX,73301 +159029,Google Phone,1,600.0,2019-02-17 22:29:00,866 7th St, Atlanta,GA,30301 +159030,USB-C Charging Cable,1,11.95,2019-02-10 17:18:00,560 1st St, Portland,OR,97035 +159031,USB-C Charging Cable,1,11.95,2019-02-22 11:03:00,303 West St, Atlanta,GA,30301 +159032,Lightning Charging Cable,1,14.95,2019-02-19 14:21:00,110 Elm St, Portland,OR,97035 +159033,Wired Headphones,2,11.99,2019-02-17 18:39:00,227 River St, Atlanta,GA,30301 +159034,ThinkPad Laptop,1,999.99,2019-02-15 15:19:00,722 1st St, Portland,OR,97035 +159035,USB-C Charging Cable,1,11.95,2019-02-05 09:38:00,620 8th St, San Francisco,CA,94016 +159036,AAA Batteries (4-pack),1,2.99,2019-02-06 18:57:00,853 Cedar St, Dallas,TX,75001 +159037,20in Monitor,1,109.99,2019-02-08 10:44:00,189 Church St, San Francisco,CA,94016 +159038,Lightning Charging Cable,1,14.95,2019-02-03 18:24:00,109 North St, Los Angeles,CA,90001 +159039,27in 4K Gaming Monitor,1,389.99,2019-02-26 15:11:00,609 River St, San Francisco,CA,94016 +159040,34in Ultrawide Monitor,1,379.99,2019-02-14 12:06:00,528 Madison St, San Francisco,CA,94016 +159041,Bose SoundSport Headphones,1,99.99,2019-02-22 19:36:00,22 Church St, Boston,MA,02215 +159041,USB-C Charging Cable,1,11.95,2019-02-22 19:36:00,22 Church St, Boston,MA,02215 +159042,Bose SoundSport Headphones,1,99.99,2019-02-26 22:15:00,483 7th St, San Francisco,CA,94016 +159043,Lightning Charging Cable,1,14.95,2019-02-09 20:58:00,577 6th St, Portland,OR,97035 +159044,Bose SoundSport Headphones,1,99.99,2019-02-07 10:12:00,944 5th St, Boston,MA,02215 +159045,Google Phone,1,600.0,2019-02-25 10:19:00,709 Maple St, Los Angeles,CA,90001 +159045,Lightning Charging Cable,1,14.95,2019-02-25 10:19:00,709 Maple St, Los Angeles,CA,90001 +159046,USB-C Charging Cable,2,11.95,2019-02-13 23:39:00,509 Hill St, Dallas,TX,75001 +159047,AA Batteries (4-pack),1,3.84,2019-02-18 08:17:00,893 10th St, Seattle,WA,98101 +159048,USB-C Charging Cable,1,11.95,2019-02-23 10:31:00,225 Hill St, Los Angeles,CA,90001 +159049,AAA Batteries (4-pack),1,2.99,2019-02-04 13:10:00,936 14th St, Seattle,WA,98101 +159050,iPhone,1,700.0,2019-02-09 21:30:00,993 South St, Atlanta,GA,30301 +159051,AA Batteries (4-pack),1,3.84,2019-02-09 17:05:00,593 2nd St, Los Angeles,CA,90001 +159052,USB-C Charging Cable,2,11.95,2019-02-01 14:46:00,438 14th St, San Francisco,CA,94016 +159053,Lightning Charging Cable,2,14.95,2019-02-16 18:31:00,31 South St, New York City,NY,10001 +159054,AAA Batteries (4-pack),1,2.99,2019-02-13 18:51:00,945 8th St, Dallas,TX,75001 +159055,AA Batteries (4-pack),1,3.84,2019-02-01 14:38:00,33 10th St, New York City,NY,10001 +159056,27in FHD Monitor,1,149.99,2019-02-26 19:21:00,889 Chestnut St, Boston,MA,02215 +159057,Lightning Charging Cable,1,14.95,2019-02-10 14:03:00,837 13th St, Austin,TX,73301 +159058,20in Monitor,1,109.99,2019-02-02 19:47:00,282 North St, Boston,MA,02215 +159059,Macbook Pro Laptop,1,1700.0,2019-02-08 17:24:00,235 Cedar St, Portland,OR,97035 +159060,Bose SoundSport Headphones,1,99.99,2019-02-24 15:42:00,94 Willow St, San Francisco,CA,94016 +159061,USB-C Charging Cable,1,11.95,2019-02-15 22:09:00,46 Madison St, Austin,TX,73301 +159062,Wired Headphones,1,11.99,2019-02-12 14:07:00,325 Forest St, San Francisco,CA,94016 +159063,Flatscreen TV,1,300.0,2019-02-07 20:24:00,518 4th St, San Francisco,CA,94016 +159064,AAA Batteries (4-pack),1,2.99,2019-02-19 17:09:00,522 Elm St, Los Angeles,CA,90001 +159065,Macbook Pro Laptop,1,1700.0,2019-02-12 22:53:00,515 Lakeview St, Boston,MA,02215 +159066,AA Batteries (4-pack),1,3.84,2019-02-09 11:20:00,516 Pine St, New York City,NY,10001 +159067,27in 4K Gaming Monitor,1,389.99,2019-02-20 17:21:00,625 Washington St, Los Angeles,CA,90001 +159068,Lightning Charging Cable,2,14.95,2019-02-21 10:10:00,163 Hill St, Portland,OR,97035 +159069,Wired Headphones,2,11.99,2019-02-26 18:52:00,351 Washington St, San Francisco,CA,94016 +159070,Lightning Charging Cable,1,14.95,2019-02-26 21:24:00,815 Willow St, Atlanta,GA,30301 +159071,Apple Airpods Headphones,1,150.0,2019-02-27 13:51:00,901 Meadow St, Atlanta,GA,30301 +159072,Apple Airpods Headphones,1,150.0,2019-02-06 19:18:00,790 7th St, Atlanta,GA,30301 +159073,USB-C Charging Cable,1,11.95,2019-02-27 16:57:00,392 Washington St, New York City,NY,10001 +159073,Flatscreen TV,1,300.0,2019-02-27 16:57:00,392 Washington St, New York City,NY,10001 +159074,27in 4K Gaming Monitor,1,389.99,2019-02-23 14:16:00,683 Washington St, Los Angeles,CA,90001 +159075,Bose SoundSport Headphones,1,99.99,2019-02-01 22:04:00,123 14th St, Seattle,WA,98101 +159076,Bose SoundSport Headphones,1,99.99,2019-02-23 16:19:00,796 6th St, Dallas,TX,75001 +159077,34in Ultrawide Monitor,1,379.99,2019-02-17 08:32:00,291 Maple St, Seattle,WA,98101 +159078,Lightning Charging Cable,1,14.95,2019-02-26 22:49:00,390 Maple St, Boston,MA,02215 +159079,20in Monitor,1,109.99,2019-02-11 15:53:00,834 Hickory St, San Francisco,CA,94016 +159080,Wired Headphones,1,11.99,2019-02-20 21:00:00,254 10th St, San Francisco,CA,94016 +159081,AAA Batteries (4-pack),1,2.99,2019-02-16 10:23:00,913 Dogwood St, New York City,NY,10001 +159082,Apple Airpods Headphones,1,150.0,2019-02-21 11:47:00,547 West St, Los Angeles,CA,90001 +159083,USB-C Charging Cable,1,11.95,2019-02-23 12:38:00,528 Dogwood St, San Francisco,CA,94016 +159084,Google Phone,1,600.0,2019-02-24 20:43:00,641 Main St, Atlanta,GA,30301 +159084,USB-C Charging Cable,1,11.95,2019-02-24 20:43:00,641 Main St, Atlanta,GA,30301 +159085,iPhone,1,700.0,2019-02-02 18:56:00,950 10th St, San Francisco,CA,94016 +159086,AA Batteries (4-pack),1,3.84,2019-02-03 17:19:00,599 Lakeview St, Portland,OR,97035 +159087,Wired Headphones,1,11.99,2019-02-20 15:52:00,852 Hill St, Boston,MA,02215 +159088,Vareebadd Phone,1,400.0,2019-02-14 07:18:00,106 Elm St, San Francisco,CA,94016 +159089,27in FHD Monitor,1,149.99,2019-02-16 13:37:00,185 Center St, Portland,ME,04101 +159090,Flatscreen TV,1,300.0,2019-02-07 06:27:00,505 4th St, Seattle,WA,98101 +159091,USB-C Charging Cable,1,11.95,2019-02-07 16:34:00,823 Lincoln St, Los Angeles,CA,90001 +159092,34in Ultrawide Monitor,1,379.99,2019-02-28 09:48:00,381 7th St, Atlanta,GA,30301 +159093,Vareebadd Phone,1,400.0,2019-02-28 19:20:00,239 Hill St, New York City,NY,10001 +159094,Flatscreen TV,1,300.0,2019-02-09 20:34:00,55 Chestnut St, Austin,TX,73301 +159095,AAA Batteries (4-pack),1,2.99,2019-02-07 10:24:00,241 Madison St, San Francisco,CA,94016 +159096,ThinkPad Laptop,1,999.99,2019-02-02 09:03:00,305 Sunset St, New York City,NY,10001 +159097,USB-C Charging Cable,1,11.95,2019-02-02 21:19:00,349 Hickory St, San Francisco,CA,94016 +159098,USB-C Charging Cable,1,11.95,2019-02-08 13:09:00,453 Center St, Portland,ME,04101 +159099,Wired Headphones,1,11.99,2019-02-17 18:26:00,41 Church St, Dallas,TX,75001 +159100,AA Batteries (4-pack),1,3.84,2019-02-14 18:04:00,284 Maple St, San Francisco,CA,94016 +159101,USB-C Charging Cable,1,11.95,2019-02-17 13:22:00,457 Dogwood St, New York City,NY,10001 +159102,USB-C Charging Cable,1,11.95,2019-02-21 06:53:00,618 Willow St, San Francisco,CA,94016 +159103,27in FHD Monitor,1,149.99,2019-02-03 22:16:00,371 Meadow St, Dallas,TX,75001 +159104,USB-C Charging Cable,1,11.95,2019-02-27 20:47:00,629 Lake St, Portland,OR,97035 +159105,Bose SoundSport Headphones,1,99.99,2019-02-13 06:50:00,401 5th St, Portland,OR,97035 +159106,Apple Airpods Headphones,1,150.0,2019-02-21 00:20:00,410 Sunset St, New York City,NY,10001 +159107,Apple Airpods Headphones,1,150.0,2019-02-26 14:53:00,627 Washington St, Seattle,WA,98101 +159108,Macbook Pro Laptop,1,1700.0,2019-02-02 00:17:00,642 Elm St, San Francisco,CA,94016 +159109,Bose SoundSport Headphones,1,99.99,2019-02-13 17:15:00,963 Pine St, San Francisco,CA,94016 +159110,27in 4K Gaming Monitor,1,389.99,2019-02-16 08:46:00,714 Walnut St, New York City,NY,10001 +159111,USB-C Charging Cable,2,11.95,2019-02-18 10:16:00,878 Forest St, San Francisco,CA,94016 +159112,Lightning Charging Cable,1,14.95,2019-02-05 20:17:00,82 Walnut St, New York City,NY,10001 +159113,Lightning Charging Cable,1,14.95,2019-02-27 06:34:00,516 Willow St, Atlanta,GA,30301 +159114,USB-C Charging Cable,1,11.95,2019-02-18 19:30:00,98 North St, Dallas,TX,75001 +159115,Wired Headphones,1,11.99,2019-02-10 18:27:00,615 10th St, Austin,TX,73301 +159116,USB-C Charging Cable,1,11.95,2019-02-13 16:37:00,508 10th St, Boston,MA,02215 +159117,Lightning Charging Cable,1,14.95,2019-02-13 22:46:00,323 Lincoln St, San Francisco,CA,94016 +159118,27in 4K Gaming Monitor,1,389.99,2019-02-07 01:44:00,321 Willow St, Portland,OR,97035 +159119,Apple Airpods Headphones,1,150.0,2019-02-10 21:56:00,151 6th St, San Francisco,CA,94016 +159120,USB-C Charging Cable,1,11.95,2019-02-03 14:14:00,15 River St, Atlanta,GA,30301 +159121,AA Batteries (4-pack),1,3.84,2019-02-12 15:25:00,232 Dogwood St, New York City,NY,10001 +159122,AA Batteries (4-pack),1,3.84,2019-02-25 10:25:00,982 Lakeview St, San Francisco,CA,94016 +159123,Bose SoundSport Headphones,1,99.99,2019-02-12 09:47:00,833 1st St, New York City,NY,10001 +159124,AAA Batteries (4-pack),1,2.99,2019-02-09 17:49:00,456 North St, Seattle,WA,98101 +159125,20in Monitor,1,109.99,2019-02-23 09:13:00,161 Lake St, San Francisco,CA,94016 +159126,27in FHD Monitor,1,149.99,2019-02-14 05:52:00,951 Forest St, Atlanta,GA,30301 +159127,Apple Airpods Headphones,1,150.0,2019-02-03 14:15:00,56 Jefferson St, Atlanta,GA,30301 +159128,AA Batteries (4-pack),1,3.84,2019-02-20 13:12:00,166 Lakeview St, Atlanta,GA,30301 +159129,AA Batteries (4-pack),2,3.84,2019-02-27 22:17:00,949 Hill St, Dallas,TX,75001 +159130,iPhone,1,700.0,2019-02-07 13:17:00,38 Lakeview St, Dallas,TX,75001 +159131,27in FHD Monitor,1,149.99,2019-02-14 14:25:00,993 North St, New York City,NY,10001 +159132,27in FHD Monitor,1,149.99,2019-02-26 13:40:00,32 7th St, Portland,OR,97035 +159133,Lightning Charging Cable,1,14.95,2019-02-22 20:21:00,616 Spruce St, Seattle,WA,98101 +159134,34in Ultrawide Monitor,1,379.99,2019-02-11 09:52:00,2 Lake St, Boston,MA,02215 +159135,AAA Batteries (4-pack),1,2.99,2019-02-25 21:16:00,89 Spruce St, San Francisco,CA,94016 +159136,AAA Batteries (4-pack),2,2.99,2019-02-01 21:03:00,922 Madison St, Boston,MA,02215 +159137,27in 4K Gaming Monitor,1,389.99,2019-02-25 19:31:00,600 Willow St, Dallas,TX,75001 +159138,34in Ultrawide Monitor,1,379.99,2019-02-02 12:15:00,57 8th St, Los Angeles,CA,90001 +159139,USB-C Charging Cable,1,11.95,2019-02-07 14:00:00,404 Jefferson St, Los Angeles,CA,90001 +159140,Google Phone,1,600.0,2019-02-23 17:00:00,717 Spruce St, Portland,OR,97035 +159140,USB-C Charging Cable,1,11.95,2019-02-23 17:00:00,717 Spruce St, Portland,OR,97035 +159141,Wired Headphones,1,11.99,2019-02-22 10:21:00,363 Church St, San Francisco,CA,94016 +159142,USB-C Charging Cable,1,11.95,2019-02-01 21:17:00,718 Pine St, San Francisco,CA,94016 +159143,USB-C Charging Cable,1,11.95,2019-02-25 00:29:00,931 West St, Los Angeles,CA,90001 +159144,27in FHD Monitor,1,149.99,2019-02-17 15:21:00,770 Hickory St, Los Angeles,CA,90001 +159145,Lightning Charging Cable,1,14.95,2019-02-08 19:05:00,435 Lakeview St, Los Angeles,CA,90001 +159146,27in FHD Monitor,1,149.99,2019-02-08 20:20:00,501 Ridge St, Boston,MA,02215 +159147,AA Batteries (4-pack),3,3.84,2019-02-18 23:30:00,437 Highland St, New York City,NY,10001 +159148,USB-C Charging Cable,1,11.95,2019-02-01 11:47:00,374 2nd St, Boston,MA,02215 +159149,AA Batteries (4-pack),1,3.84,2019-02-26 15:55:00,714 Chestnut St, New York City,NY,10001 +159150,27in 4K Gaming Monitor,1,389.99,2019-02-17 10:59:00,917 4th St, Seattle,WA,98101 +159151,Wired Headphones,1,11.99,2019-02-02 15:13:00,631 South St, Boston,MA,02215 +159152,USB-C Charging Cable,1,11.95,2019-02-13 14:56:00,302 Adams St, New York City,NY,10001 +159153,AA Batteries (4-pack),1,3.84,2019-02-24 07:41:00,242 12th St, Dallas,TX,75001 +159154,USB-C Charging Cable,1,11.95,2019-02-08 07:49:00,624 Ridge St, Dallas,TX,75001 +159155,USB-C Charging Cable,1,11.95,2019-02-17 17:36:00,501 Main St, Atlanta,GA,30301 +159156,Apple Airpods Headphones,1,150.0,2019-02-16 00:09:00,368 11th St, Los Angeles,CA,90001 +159157,Lightning Charging Cable,1,14.95,2019-02-24 12:34:00,585 Lakeview St, Seattle,WA,98101 +159158,Bose SoundSport Headphones,1,99.99,2019-02-01 07:00:00,570 Madison St, Atlanta,GA,30301 +159159,Bose SoundSport Headphones,1,99.99,2019-02-07 10:25:00,959 6th St, Los Angeles,CA,90001 +159160,USB-C Charging Cable,1,11.95,2019-02-02 05:31:00,603 Main St, New York City,NY,10001 +159161,Bose SoundSport Headphones,1,99.99,2019-02-03 22:31:00,772 5th St, Los Angeles,CA,90001 +159162,AAA Batteries (4-pack),1,2.99,2019-02-24 17:59:00,40 Lake St, Austin,TX,73301 +159163,AAA Batteries (4-pack),2,2.99,2019-02-05 15:39:00,192 1st St, Austin,TX,73301 +159164,LG Washing Machine,1,600.0,2019-02-27 18:01:00,692 Meadow St, New York City,NY,10001 +159165,27in 4K Gaming Monitor,1,389.99,2019-02-01 19:34:00,638 Church St, Boston,MA,02215 +159166,20in Monitor,1,109.99,2019-02-26 10:02:00,189 Main St, Seattle,WA,98101 +159167,Apple Airpods Headphones,1,150.0,2019-02-10 14:04:00,562 Jackson St, Boston,MA,02215 +159168,AA Batteries (4-pack),1,3.84,2019-02-25 19:46:00,827 Adams St, Atlanta,GA,30301 +159169,Bose SoundSport Headphones,1,99.99,2019-02-03 17:23:00,345 Main St, Los Angeles,CA,90001 +159170,AAA Batteries (4-pack),2,2.99,2019-02-16 21:34:00,560 Walnut St, San Francisco,CA,94016 +159171,Google Phone,1,600.0,2019-02-15 22:24:00,319 Wilson St, Portland,OR,97035 +159172,AAA Batteries (4-pack),1,2.99,2019-02-17 02:55:00,891 Forest St, Los Angeles,CA,90001 +159173,Macbook Pro Laptop,1,1700.0,2019-02-23 09:02:00,43 11th St, San Francisco,CA,94016 +159174,AA Batteries (4-pack),1,3.84,2019-02-01 20:25:00,282 Sunset St, Los Angeles,CA,90001 +159175,34in Ultrawide Monitor,1,379.99,2019-02-28 18:01:00,231 Pine St, New York City,NY,10001 +159176,Bose SoundSport Headphones,1,99.99,2019-02-09 09:49:00,440 Forest St, San Francisco,CA,94016 +159177,Lightning Charging Cable,1,14.95,2019-02-07 22:20:00,684 Main St, Boston,MA,02215 +159178,AAA Batteries (4-pack),1,2.99,2019-02-24 12:13:00,41 Adams St, San Francisco,CA,94016 +159179,iPhone,1,700.0,2019-02-03 15:50:00,977 8th St, Los Angeles,CA,90001 +159180,Bose SoundSport Headphones,1,99.99,2019-02-26 18:57:00,48 Forest St, Boston,MA,02215 +159181,iPhone,1,700.0,2019-02-19 07:16:00,984 Highland St, Austin,TX,73301 +159182,Bose SoundSport Headphones,1,99.99,2019-02-20 16:20:00,741 7th St, Seattle,WA,98101 +159183,Wired Headphones,1,11.99,2019-02-10 10:43:00,960 West St, Austin,TX,73301 +159183,AAA Batteries (4-pack),1,2.99,2019-02-10 10:43:00,960 West St, Austin,TX,73301 +159184,Apple Airpods Headphones,1,150.0,2019-02-28 14:30:00,359 10th St, Atlanta,GA,30301 +159185,Lightning Charging Cable,1,14.95,2019-02-20 17:10:00,508 Cedar St, Austin,TX,73301 +159186,Google Phone,1,600.0,2019-02-02 09:21:00,114 West St, San Francisco,CA,94016 +159187,Lightning Charging Cable,1,14.95,2019-02-14 22:11:00,843 South St, Atlanta,GA,30301 +159188,AAA Batteries (4-pack),2,2.99,2019-02-03 20:42:00,53 Dogwood St, Dallas,TX,75001 +159189,AAA Batteries (4-pack),1,2.99,2019-02-20 22:39:00,660 8th St, Dallas,TX,75001 +159190,Bose SoundSport Headphones,1,99.99,2019-02-27 17:56:00,665 9th St, San Francisco,CA,94016 +159191,27in FHD Monitor,1,149.99,2019-02-22 18:08:00,145 Highland St, Dallas,TX,75001 +159192,Lightning Charging Cable,1,14.95,2019-02-12 17:03:00,273 Willow St, Dallas,TX,75001 +159193,USB-C Charging Cable,1,11.95,2019-02-01 05:50:00,937 Jackson St, Dallas,TX,75001 +159194,Flatscreen TV,1,300.0,2019-02-09 17:36:00,204 5th St, Dallas,TX,75001 +159195,iPhone,1,700.0,2019-02-25 19:04:00,193 Walnut St, Los Angeles,CA,90001 +159196,Apple Airpods Headphones,1,150.0,2019-02-22 11:42:00,424 Madison St, Atlanta,GA,30301 +159197,Vareebadd Phone,1,400.0,2019-02-06 11:14:00,594 6th St, Austin,TX,73301 +159197,Wired Headphones,1,11.99,2019-02-06 11:14:00,594 6th St, Austin,TX,73301 +159197,Apple Airpods Headphones,1,150.0,2019-02-06 11:14:00,594 6th St, Austin,TX,73301 +159198,AA Batteries (4-pack),1,3.84,2019-02-24 21:17:00,272 Jefferson St, Dallas,TX,75001 +159199,USB-C Charging Cable,1,11.95,2019-02-21 11:06:00,352 Washington St, Seattle,WA,98101 +159200,USB-C Charging Cable,1,11.95,2019-02-14 08:02:00,323 Lakeview St, San Francisco,CA,94016 +159201,27in 4K Gaming Monitor,1,389.99,2019-02-25 08:24:00,168 Washington St, Austin,TX,73301 +159202,Wired Headphones,1,11.99,2019-02-26 16:26:00,691 Ridge St, San Francisco,CA,94016 +159203,AA Batteries (4-pack),1,3.84,2019-02-03 21:18:00,510 Jackson St, Los Angeles,CA,90001 +159204,Google Phone,1,600.0,2019-02-13 21:52:00,187 Elm St, Los Angeles,CA,90001 +159204,Wired Headphones,2,11.99,2019-02-13 21:52:00,187 Elm St, Los Angeles,CA,90001 +159205,USB-C Charging Cable,1,11.95,2019-02-11 20:44:00,502 Lake St, Seattle,WA,98101 +159206,Lightning Charging Cable,1,14.95,2019-02-23 22:10:00,50 Lincoln St, Los Angeles,CA,90001 +159207,Vareebadd Phone,1,400.0,2019-02-28 18:14:00,492 Lakeview St, Los Angeles,CA,90001 +159208,Bose SoundSport Headphones,1,99.99,2019-02-16 19:40:00,688 Washington St, New York City,NY,10001 +159209,Bose SoundSport Headphones,1,99.99,2019-02-04 15:20:00,75 Maple St, Boston,MA,02215 +159210,Lightning Charging Cable,1,14.95,2019-02-21 07:52:00,774 Cedar St, Boston,MA,02215 +159211,Wired Headphones,2,11.99,2019-02-27 13:59:00,360 Madison St, Seattle,WA,98101 +159212,Wired Headphones,1,11.99,2019-02-19 16:01:00,99 Main St, San Francisco,CA,94016 +159213,Google Phone,1,600.0,2019-02-12 14:12:00,105 River St, San Francisco,CA,94016 +159214,AA Batteries (4-pack),2,3.84,2019-02-01 20:32:00,150 Ridge St, Los Angeles,CA,90001 +159215,34in Ultrawide Monitor,1,379.99,2019-02-05 13:02:00,538 4th St, Atlanta,GA,30301 +159216,Bose SoundSport Headphones,1,99.99,2019-02-27 23:53:00,287 West St, Los Angeles,CA,90001 +159217,AA Batteries (4-pack),1,3.84,2019-02-08 15:06:00,491 Adams St, San Francisco,CA,94016 +159218,Macbook Pro Laptop,1,1700.0,2019-02-11 13:59:00,358 9th St, Los Angeles,CA,90001 +159219,Google Phone,1,600.0,2019-02-04 22:33:00,265 9th St, Portland,ME,04101 +159219,USB-C Charging Cable,1,11.95,2019-02-04 22:33:00,265 9th St, Portland,ME,04101 +159219,Wired Headphones,1,11.99,2019-02-04 22:33:00,265 9th St, Portland,ME,04101 +159220,Bose SoundSport Headphones,1,99.99,2019-02-05 20:26:00,369 Meadow St, San Francisco,CA,94016 +159221,AA Batteries (4-pack),4,3.84,2019-02-08 17:58:00,636 Park St, Boston,MA,02215 +159222,Apple Airpods Headphones,1,150.0,2019-02-27 13:39:00,769 13th St, San Francisco,CA,94016 +159223,Lightning Charging Cable,1,14.95,2019-02-13 18:22:00,312 1st St, Austin,TX,73301 +159224,Lightning Charging Cable,1,14.95,2019-02-08 15:38:00,85 4th St, New York City,NY,10001 +159225,AAA Batteries (4-pack),1,2.99,2019-02-10 18:48:00,793 5th St, Boston,MA,02215 +159226,ThinkPad Laptop,1,999.99,2019-02-04 23:46:00,571 Lakeview St, Los Angeles,CA,90001 +159227,AAA Batteries (4-pack),2,2.99,2019-02-14 17:39:00,91 Maple St, San Francisco,CA,94016 +159228,34in Ultrawide Monitor,1,379.99,2019-02-18 13:29:00,534 Park St, Seattle,WA,98101 +159229,Bose SoundSport Headphones,1,99.99,2019-02-17 12:55:00,195 Highland St, New York City,NY,10001 +159230,AAA Batteries (4-pack),1,2.99,2019-02-24 09:18:00,859 Hickory St, Boston,MA,02215 +159231,USB-C Charging Cable,1,11.95,2019-02-17 10:49:00,335 12th St, San Francisco,CA,94016 +159232,Apple Airpods Headphones,1,150.0,2019-02-09 14:16:00,522 8th St, Portland,OR,97035 +159233,Bose SoundSport Headphones,1,99.99,2019-02-04 16:04:00,289 Lake St, Dallas,TX,75001 +159234,iPhone,1,700.0,2019-02-07 12:33:00,943 Hill St, Boston,MA,02215 +159235,Bose SoundSport Headphones,1,99.99,2019-02-22 10:01:00,196 North St, Atlanta,GA,30301 +159236,AA Batteries (4-pack),1,3.84,2019-02-03 19:44:00,865 Park St, Los Angeles,CA,90001 +159237,34in Ultrawide Monitor,1,379.99,2019-02-06 16:32:00,25 Center St, San Francisco,CA,94016 +159238,AA Batteries (4-pack),2,3.84,2019-02-09 10:24:00,215 North St, Los Angeles,CA,90001 +159239,USB-C Charging Cable,1,11.95,2019-02-10 21:35:00,820 River St, Boston,MA,02215 +159240,Flatscreen TV,1,300.0,2019-02-12 19:38:00,29 Elm St, Boston,MA,02215 +159240,Apple Airpods Headphones,1,150.0,2019-02-12 19:38:00,29 Elm St, Boston,MA,02215 +159241,USB-C Charging Cable,1,11.95,2019-02-20 00:05:00,997 4th St, Atlanta,GA,30301 +159242,AA Batteries (4-pack),1,3.84,2019-02-11 19:41:00,315 North St, San Francisco,CA,94016 +159243,Lightning Charging Cable,1,14.95,2019-02-17 17:54:00,60 12th St, San Francisco,CA,94016 +159244,Macbook Pro Laptop,1,1700.0,2019-02-08 11:28:00,216 Hill St, San Francisco,CA,94016 +159245,Lightning Charging Cable,1,14.95,2019-02-24 17:53:00,738 Lincoln St, Los Angeles,CA,90001 +159246,Lightning Charging Cable,1,14.95,2019-02-28 11:47:00,577 Ridge St, Boston,MA,02215 +159247,USB-C Charging Cable,1,11.95,2019-02-19 22:29:00,685 Center St, Dallas,TX,75001 +159248,AAA Batteries (4-pack),2,2.99,2019-02-28 01:38:00,762 1st St, San Francisco,CA,94016 +159249,Google Phone,1,600.0,2019-02-28 18:45:00,983 11th St, New York City,NY,10001 +159249,USB-C Charging Cable,1,11.95,2019-02-28 18:45:00,983 11th St, New York City,NY,10001 +159250,Apple Airpods Headphones,1,150.0,2019-02-17 11:18:00,287 7th St, Seattle,WA,98101 +159251,Apple Airpods Headphones,1,150.0,2019-02-02 10:27:00,733 Elm St, San Francisco,CA,94016 +159252,AA Batteries (4-pack),1,3.84,2019-02-03 15:21:00,616 Center St, San Francisco,CA,94016 +159253,27in 4K Gaming Monitor,1,389.99,2019-02-05 14:30:00,28 Jackson St, San Francisco,CA,94016 +159254,USB-C Charging Cable,1,11.95,2019-02-15 13:27:00,364 1st St, Portland,ME,04101 +159255,Lightning Charging Cable,1,14.95,2019-02-11 16:39:00,961 Washington St, New York City,NY,10001 +159256,27in FHD Monitor,1,149.99,2019-02-22 16:22:00,941 South St, San Francisco,CA,94016 +159257,USB-C Charging Cable,1,11.95,2019-02-26 14:33:00,75 Lakeview St, New York City,NY,10001 +159258,27in FHD Monitor,1,149.99,2019-02-22 22:55:00,882 South St, Boston,MA,02215 +159259,AAA Batteries (4-pack),2,2.99,2019-02-16 13:15:00,730 Cedar St, Los Angeles,CA,90001 +159260,Lightning Charging Cable,1,14.95,2019-02-01 19:54:00,693 Johnson St, San Francisco,CA,94016 +159261,AA Batteries (4-pack),1,3.84,2019-02-01 19:28:00,969 2nd St, San Francisco,CA,94016 +159262,Vareebadd Phone,1,400.0,2019-02-25 00:32:00,631 Cedar St, Portland,OR,97035 +159262,USB-C Charging Cable,1,11.95,2019-02-25 00:32:00,631 Cedar St, Portland,OR,97035 +159263,Vareebadd Phone,1,400.0,2019-02-16 17:43:00,168 2nd St, Los Angeles,CA,90001 +159264,AA Batteries (4-pack),1,3.84,2019-02-04 23:21:00,737 Church St, Austin,TX,73301 +159265,Apple Airpods Headphones,1,150.0,2019-02-05 16:00:00,590 Lakeview St, Los Angeles,CA,90001 +159266,AAA Batteries (4-pack),1,2.99,2019-02-08 16:19:00,662 Lincoln St, Atlanta,GA,30301 +159267,AA Batteries (4-pack),1,3.84,2019-02-14 11:14:00,493 4th St, Portland,OR,97035 +159268,Lightning Charging Cable,1,14.95,2019-02-10 13:22:00,826 14th St, San Francisco,CA,94016 +159269,iPhone,1,700.0,2019-02-08 18:05:00,446 Lake St, San Francisco,CA,94016 +159270,AAA Batteries (4-pack),1,2.99,2019-02-17 21:20:00,967 14th St, Los Angeles,CA,90001 +159271,Wired Headphones,2,11.99,2019-02-26 16:38:00,608 Johnson St, Seattle,WA,98101 +159272,Lightning Charging Cable,2,14.95,2019-02-28 00:30:00,556 Hickory St, Boston,MA,02215 +159273,AA Batteries (4-pack),2,3.84,2019-02-02 16:48:00,630 12th St, San Francisco,CA,94016 +159274,AAA Batteries (4-pack),1,2.99,2019-02-28 12:43:00,555 8th St, Austin,TX,73301 +159275,27in FHD Monitor,1,149.99,2019-02-18 18:50:00,175 14th St, Los Angeles,CA,90001 +159276,USB-C Charging Cable,1,11.95,2019-02-03 10:17:00,109 River St, New York City,NY,10001 +159277,27in 4K Gaming Monitor,1,389.99,2019-02-23 22:25:00,395 12th St, Dallas,TX,75001 +159278,Lightning Charging Cable,1,14.95,2019-02-08 19:51:00,768 Sunset St, Seattle,WA,98101 +159279,Macbook Pro Laptop,1,1700.0,2019-02-24 20:18:00,122 Lincoln St, Boston,MA,02215 +159280,Apple Airpods Headphones,1,150.0,2019-02-16 12:55:00,561 West St, Dallas,TX,75001 +159281,AA Batteries (4-pack),1,3.84,2019-02-22 18:30:00,780 Johnson St, Los Angeles,CA,90001 +159282,USB-C Charging Cable,1,11.95,2019-02-26 16:59:00,819 2nd St, San Francisco,CA,94016 +159283,AAA Batteries (4-pack),2,2.99,2019-02-28 16:00:00,687 Jackson St, Los Angeles,CA,90001 +159284,Lightning Charging Cable,1,14.95,2019-02-25 14:45:00,57 Lakeview St, Boston,MA,02215 +159285,AAA Batteries (4-pack),2,2.99,2019-02-28 09:22:00,893 Walnut St, Los Angeles,CA,90001 +159286,Bose SoundSport Headphones,1,99.99,2019-02-22 16:29:00,281 Lake St, Boston,MA,02215 +159287,AAA Batteries (4-pack),1,2.99,2019-02-07 10:32:00,552 Dogwood St, Boston,MA,02215 +159288,Macbook Pro Laptop,1,1700.0,2019-02-05 06:37:00,862 River St, Los Angeles,CA,90001 +159289,Bose SoundSport Headphones,1,99.99,2019-02-20 19:27:00,51 9th St, Austin,TX,73301 +159290,27in FHD Monitor,1,149.99,2019-02-17 15:08:00,332 12th St, Los Angeles,CA,90001 +159291,Macbook Pro Laptop,1,1700.0,2019-02-28 18:17:00,23 Park St, San Francisco,CA,94016 +159292,20in Monitor,1,109.99,2019-02-04 00:38:00,112 Walnut St, Boston,MA,02215 +159293,AAA Batteries (4-pack),1,2.99,2019-02-08 17:28:00,42 Church St, Boston,MA,02215 +159294,USB-C Charging Cable,1,11.95,2019-02-24 10:23:00,924 Lakeview St, New York City,NY,10001 +159295,USB-C Charging Cable,1,11.95,2019-02-02 17:03:00,689 Cherry St, San Francisco,CA,94016 +159296,Macbook Pro Laptop,1,1700.0,2019-02-07 16:18:00,614 1st St, Atlanta,GA,30301 +159297,Bose SoundSport Headphones,1,99.99,2019-02-18 18:42:00,389 2nd St, San Francisco,CA,94016 +159298,34in Ultrawide Monitor,1,379.99,2019-02-04 11:22:00,942 10th St, San Francisco,CA,94016 +159299,Bose SoundSport Headphones,1,99.99,2019-02-02 18:35:00,302 Pine St, Austin,TX,73301 +159300,Bose SoundSport Headphones,1,99.99,2019-02-15 08:02:00,338 2nd St, San Francisco,CA,94016 +159301,Apple Airpods Headphones,1,150.0,2019-02-24 15:59:00,412 Center St, San Francisco,CA,94016 +159302,34in Ultrawide Monitor,1,379.99,2019-02-10 11:43:00,929 10th St, San Francisco,CA,94016 +159303,Apple Airpods Headphones,1,150.0,2019-02-20 14:31:00,630 North St, Portland,OR,97035 +159304,AA Batteries (4-pack),3,3.84,2019-02-26 20:58:00,30 Madison St, Atlanta,GA,30301 +159305,Lightning Charging Cable,1,14.95,2019-02-20 20:19:00,309 Chestnut St, Seattle,WA,98101 +159306,27in 4K Gaming Monitor,1,389.99,2019-02-09 12:55:00,545 Meadow St, Los Angeles,CA,90001 +159307,AAA Batteries (4-pack),1,2.99,2019-02-14 10:33:00,599 Lincoln St, Atlanta,GA,30301 +159308,Apple Airpods Headphones,1,150.0,2019-02-25 06:53:00,174 2nd St, Los Angeles,CA,90001 +159309,iPhone,1,700.0,2019-02-02 16:50:00,942 Lakeview St, Portland,OR,97035 +159310,Bose SoundSport Headphones,1,99.99,2019-02-08 22:31:00,722 Elm St, Austin,TX,73301 +159311,AA Batteries (4-pack),2,3.84,2019-02-22 20:35:00,858 11th St, Atlanta,GA,30301 +159312,AAA Batteries (4-pack),1,2.99,2019-02-27 07:43:00,857 Wilson St, Los Angeles,CA,90001 +159313,Apple Airpods Headphones,1,150.0,2019-02-16 16:35:00,852 Main St, New York City,NY,10001 +159314,Wired Headphones,1,11.99,2019-02-21 16:39:00,510 Dogwood St, Austin,TX,73301 +159315,Apple Airpods Headphones,1,150.0,2019-02-09 21:06:00,367 10th St, Austin,TX,73301 +159316,Lightning Charging Cable,1,14.95,2019-02-12 11:47:00,131 8th St, San Francisco,CA,94016 +159317,Google Phone,1,600.0,2019-02-19 01:35:00,188 Wilson St, New York City,NY,10001 +159317,USB-C Charging Cable,1,11.95,2019-02-19 01:35:00,188 Wilson St, New York City,NY,10001 +159318,Apple Airpods Headphones,1,150.0,2019-02-04 11:30:00,272 Hickory St, New York City,NY,10001 +159319,AA Batteries (4-pack),2,3.84,2019-02-10 13:01:00,215 Hickory St, New York City,NY,10001 +159320,34in Ultrawide Monitor,1,379.99,2019-02-27 11:58:00,601 Spruce St, Dallas,TX,75001 +159321,Wired Headphones,1,11.99,2019-02-20 23:51:00,921 Lakeview St, San Francisco,CA,94016 +159322,20in Monitor,1,109.99,2019-02-15 10:28:00,899 Jackson St, Seattle,WA,98101 +159322,Macbook Pro Laptop,1,1700.0,2019-02-15 10:28:00,899 Jackson St, Seattle,WA,98101 +159323,ThinkPad Laptop,1,999.99,2019-02-05 19:46:00,914 South St, Austin,TX,73301 +159324,Apple Airpods Headphones,1,150.0,2019-02-02 17:24:00,184 1st St, San Francisco,CA,94016 +159325,Lightning Charging Cable,1,14.95,2019-02-03 09:40:00,45 Lake St, Dallas,TX,75001 +159326,Wired Headphones,1,11.99,2019-02-25 11:40:00,652 2nd St, Boston,MA,02215 +159327,AAA Batteries (4-pack),1,2.99,2019-02-01 06:14:00,733 Chestnut St, Austin,TX,73301 +159328,Apple Airpods Headphones,1,150.0,2019-02-02 23:21:00,183 South St, New York City,NY,10001 +159329,Lightning Charging Cable,2,14.95,2019-02-03 16:37:00,998 Elm St, Dallas,TX,75001 +159330,Wired Headphones,1,11.99,2019-02-09 10:10:00,728 Dogwood St, Dallas,TX,75001 +159331,Wired Headphones,1,11.99,2019-02-13 20:02:00,50 Meadow St, San Francisco,CA,94016 +159332,Bose SoundSport Headphones,1,99.99,2019-02-24 15:52:00,906 12th St, San Francisco,CA,94016 +159333,AAA Batteries (4-pack),2,2.99,2019-02-21 21:08:00,68 6th St, Los Angeles,CA,90001 +159334,Bose SoundSport Headphones,1,99.99,2019-02-16 09:59:00,215 Johnson St, San Francisco,CA,94016 +159335,Lightning Charging Cable,1,14.95,2019-02-10 22:27:00,224 Johnson St, Boston,MA,02215 +159336,34in Ultrawide Monitor,1,379.99,2019-02-18 00:35:00,195 Pine St, San Francisco,CA,94016 +159337,AAA Batteries (4-pack),1,2.99,2019-02-22 19:23:00,681 Hickory St, Atlanta,GA,30301 +159338,Apple Airpods Headphones,1,150.0,2019-02-04 13:29:00,778 West St, Atlanta,GA,30301 +159339,AAA Batteries (4-pack),2,2.99,2019-02-06 10:19:00,457 Highland St, Los Angeles,CA,90001 +159340,AAA Batteries (4-pack),1,2.99,2019-02-08 14:28:00,98 7th St, New York City,NY,10001 +159341,27in 4K Gaming Monitor,1,389.99,2019-02-18 11:20:00,402 6th St, San Francisco,CA,94016 +159342,Lightning Charging Cable,1,14.95,2019-02-16 14:29:00,88 Highland St, Los Angeles,CA,90001 +159343,Apple Airpods Headphones,1,150.0,2019-02-01 16:31:00,704 Meadow St, San Francisco,CA,94016 +159344,AAA Batteries (4-pack),3,2.99,2019-02-17 19:54:00,161 11th St, Los Angeles,CA,90001 +159345,Bose SoundSport Headphones,1,99.99,2019-02-20 11:57:00,277 Chestnut St, Austin,TX,73301 +159346,AAA Batteries (4-pack),1,2.99,2019-02-18 10:14:00,118 10th St, Austin,TX,73301 +159347,AAA Batteries (4-pack),1,2.99,2019-03-01 03:10:00,297 8th St, Austin,TX,73301 +159348,Apple Airpods Headphones,1,150.0,2019-02-09 09:58:00,346 8th St, Los Angeles,CA,90001 +159349,34in Ultrawide Monitor,1,379.99,2019-02-15 11:45:00,838 Lake St, New York City,NY,10001 +159350,AA Batteries (4-pack),1,3.84,2019-02-04 17:02:00,331 11th St, San Francisco,CA,94016 +159351,27in FHD Monitor,1,149.99,2019-02-14 23:28:00,886 Wilson St, Los Angeles,CA,90001 +159352,AA Batteries (4-pack),1,3.84,2019-02-10 11:54:00,335 Forest St, Dallas,TX,75001 +159353,AA Batteries (4-pack),1,3.84,2019-02-03 15:14:00,968 Madison St, San Francisco,CA,94016 +159354,Bose SoundSport Headphones,1,99.99,2019-02-27 18:29:00,922 Lake St, New York City,NY,10001 +159355,20in Monitor,1,109.99,2019-02-07 20:41:00,810 10th St, San Francisco,CA,94016 +159356,AAA Batteries (4-pack),1,2.99,2019-02-06 13:54:00,472 Highland St, New York City,NY,10001 +159357,AAA Batteries (4-pack),2,2.99,2019-02-22 17:06:00,479 Walnut St, Boston,MA,02215 +159358,Google Phone,1,600.0,2019-02-19 08:03:00,646 Walnut St, San Francisco,CA,94016 +159359,Macbook Pro Laptop,1,1700.0,2019-02-13 22:21:00,67 Forest St, Los Angeles,CA,90001 +159360,Wired Headphones,2,11.99,2019-02-24 18:23:00,349 Lakeview St, Seattle,WA,98101 +159361,iPhone,1,700.0,2019-02-09 13:00:00,66 Spruce St, Dallas,TX,75001 +159362,Lightning Charging Cable,1,14.95,2019-02-01 17:19:00,794 Main St, San Francisco,CA,94016 +159363,Apple Airpods Headphones,1,150.0,2019-02-15 11:42:00,329 Adams St, San Francisco,CA,94016 +159364,USB-C Charging Cable,1,11.95,2019-02-14 10:51:00,100 Lincoln St, Dallas,TX,75001 +159365,Apple Airpods Headphones,1,150.0,2019-02-08 14:32:00,663 13th St, Seattle,WA,98101 +159366,AA Batteries (4-pack),2,3.84,2019-02-06 16:48:00,17 Lakeview St, Los Angeles,CA,90001 +159367,Apple Airpods Headphones,1,150.0,2019-02-02 15:43:00,632 Chestnut St, New York City,NY,10001 +159368,USB-C Charging Cable,1,11.95,2019-02-11 22:52:00,843 2nd St, New York City,NY,10001 +159369,27in 4K Gaming Monitor,1,389.99,2019-02-18 11:38:00,930 Highland St, Boston,MA,02215 +159370,USB-C Charging Cable,1,11.95,2019-02-04 23:42:00,319 11th St, New York City,NY,10001 +159371,iPhone,1,700.0,2019-02-26 13:18:00,623 Wilson St, Los Angeles,CA,90001 +159372,AAA Batteries (4-pack),1,2.99,2019-02-08 18:49:00,801 Madison St, Portland,OR,97035 +159373,ThinkPad Laptop,1,999.99,2019-02-13 18:00:00,506 9th St, San Francisco,CA,94016 +159374,USB-C Charging Cable,1,11.95,2019-02-11 10:39:00,602 Church St, San Francisco,CA,94016 +159375,USB-C Charging Cable,1,11.95,2019-02-06 05:06:00,857 6th St, San Francisco,CA,94016 +159376,Wired Headphones,1,11.99,2019-02-09 06:11:00,420 Sunset St, San Francisco,CA,94016 +159377,USB-C Charging Cable,1,11.95,2019-02-26 21:27:00,565 Dogwood St, San Francisco,CA,94016 +159378,Flatscreen TV,1,300.0,2019-02-09 21:26:00,256 Madison St, San Francisco,CA,94016 +159379,Google Phone,1,600.0,2019-02-24 17:52:00,148 Jefferson St, San Francisco,CA,94016 +159379,Wired Headphones,1,11.99,2019-02-24 17:52:00,148 Jefferson St, San Francisco,CA,94016 +159380,27in 4K Gaming Monitor,1,389.99,2019-02-24 17:09:00,501 Lincoln St, Portland,OR,97035 +159381,Wired Headphones,1,11.99,2019-02-28 21:29:00,828 Cedar St, Los Angeles,CA,90001 +159382,USB-C Charging Cable,1,11.95,2019-02-23 12:46:00,767 River St, Los Angeles,CA,90001 +159383,Lightning Charging Cable,1,14.95,2019-02-27 19:40:00,58 Madison St, Boston,MA,02215 +159384,USB-C Charging Cable,1,11.95,2019-02-25 19:19:00,278 13th St, San Francisco,CA,94016 +159385,Bose SoundSport Headphones,1,99.99,2019-02-15 16:41:00,700 Main St, Dallas,TX,75001 +159386,Lightning Charging Cable,1,14.95,2019-02-16 11:45:00,766 12th St, Austin,TX,73301 +159387,USB-C Charging Cable,1,11.95,2019-02-16 17:15:00,382 Center St, Los Angeles,CA,90001 +159388,USB-C Charging Cable,1,11.95,2019-02-24 10:52:00,137 1st St, San Francisco,CA,94016 +159389,ThinkPad Laptop,1,999.99,2019-02-07 23:46:00,136 South St, Austin,TX,73301 +159390,Lightning Charging Cable,1,14.95,2019-02-26 11:38:00,246 4th St, Austin,TX,73301 +159391,Lightning Charging Cable,1,14.95,2019-02-28 11:28:00,647 Ridge St, San Francisco,CA,94016 +159392,34in Ultrawide Monitor,1,379.99,2019-02-28 11:39:00,527 Jefferson St, San Francisco,CA,94016 +159393,AAA Batteries (4-pack),1,2.99,2019-02-11 07:10:00,488 11th St, Los Angeles,CA,90001 +159394,Apple Airpods Headphones,1,150.0,2019-02-02 19:38:00,661 9th St, Atlanta,GA,30301 +159395,Wired Headphones,1,11.99,2019-02-08 20:54:00,242 West St, New York City,NY,10001 +159396,Google Phone,1,600.0,2019-02-27 14:40:00,180 Center St, San Francisco,CA,94016 +159396,USB-C Charging Cable,1,11.95,2019-02-27 14:40:00,180 Center St, San Francisco,CA,94016 +159397,AA Batteries (4-pack),1,3.84,2019-02-23 16:16:00,912 Johnson St, Los Angeles,CA,90001 +159398,Lightning Charging Cable,1,14.95,2019-02-26 17:21:00,91 5th St, Austin,TX,73301 +159399,AAA Batteries (4-pack),1,2.99,2019-02-28 18:57:00,473 Jackson St, Atlanta,GA,30301 +159400,27in 4K Gaming Monitor,1,389.99,2019-02-11 13:38:00,657 Dogwood St, Atlanta,GA,30301 +159401,AAA Batteries (4-pack),1,2.99,2019-02-10 16:55:00,123 8th St, Portland,OR,97035 +159402,Flatscreen TV,1,300.0,2019-02-21 19:23:00,597 Meadow St, Dallas,TX,75001 +159403,USB-C Charging Cable,1,11.95,2019-02-03 11:18:00,51 4th St, New York City,NY,10001 +159404,USB-C Charging Cable,1,11.95,2019-02-23 08:41:00,838 Lakeview St, Dallas,TX,75001 +159405,Wired Headphones,1,11.99,2019-02-27 18:40:00,717 Hickory St, Los Angeles,CA,90001 +159406,Google Phone,1,600.0,2019-02-09 18:48:00,810 Lincoln St, Atlanta,GA,30301 +159407,AA Batteries (4-pack),1,3.84,2019-02-01 22:02:00,531 West St, Seattle,WA,98101 +159408,Wired Headphones,1,11.99,2019-02-08 20:28:00,731 Madison St, Austin,TX,73301 +159409,iPhone,1,700.0,2019-02-13 16:36:00,756 Lake St, San Francisco,CA,94016 +159410,Lightning Charging Cable,1,14.95,2019-02-20 08:27:00,489 Hill St, Los Angeles,CA,90001 +159411,AAA Batteries (4-pack),1,2.99,2019-02-20 10:45:00,125 Hill St, San Francisco,CA,94016 +159412,AA Batteries (4-pack),1,3.84,2019-02-10 22:48:00,205 South St, Boston,MA,02215 +159413,Lightning Charging Cable,1,14.95,2019-02-28 17:10:00,222 Forest St, Seattle,WA,98101 +159414,iPhone,1,700.0,2019-02-23 09:02:00,791 4th St, San Francisco,CA,94016 +159415,27in FHD Monitor,1,149.99,2019-02-09 22:03:00,380 13th St, San Francisco,CA,94016 +159416,AA Batteries (4-pack),1,3.84,2019-02-08 18:51:00,765 Hill St, Portland,OR,97035 +159417,Lightning Charging Cable,1,14.95,2019-02-04 17:20:00,624 North St, Los Angeles,CA,90001 +159418,27in FHD Monitor,1,149.99,2019-02-03 22:00:00,631 5th St, Boston,MA,02215 +159419,Flatscreen TV,1,300.0,2019-02-08 11:45:00,670 Adams St, San Francisco,CA,94016 +159420,AAA Batteries (4-pack),2,2.99,2019-02-10 08:43:00,897 Center St, New York City,NY,10001 +159421,USB-C Charging Cable,1,11.95,2019-02-25 14:15:00,564 Spruce St, Atlanta,GA,30301 +159422,USB-C Charging Cable,1,11.95,2019-02-16 11:41:00,293 1st St, Boston,MA,02215 +159423,27in FHD Monitor,1,149.99,2019-02-28 15:34:00,864 Washington St, New York City,NY,10001 +159424,iPhone,1,700.0,2019-02-07 20:17:00,485 Lakeview St, Los Angeles,CA,90001 +159425,Lightning Charging Cable,1,14.95,2019-02-26 22:26:00,150 Highland St, Dallas,TX,75001 +159426,Apple Airpods Headphones,1,150.0,2019-02-21 12:15:00,624 Meadow St, San Francisco,CA,94016 +159427,27in FHD Monitor,1,149.99,2019-02-28 17:59:00,278 Center St, Los Angeles,CA,90001 +159428,Apple Airpods Headphones,1,150.0,2019-02-24 18:23:00,223 Elm St, Dallas,TX,75001 +159429,AA Batteries (4-pack),2,3.84,2019-02-04 15:55:00,723 Jefferson St, Boston,MA,02215 +159430,Wired Headphones,1,11.99,2019-02-01 16:51:00,671 Willow St, San Francisco,CA,94016 +159431,Lightning Charging Cable,1,14.95,2019-02-03 19:51:00,926 Lake St, Boston,MA,02215 +159432,Wired Headphones,1,11.99,2019-02-06 08:32:00,851 Main St, Boston,MA,02215 +159433,27in 4K Gaming Monitor,1,389.99,2019-02-11 17:17:00,882 5th St, San Francisco,CA,94016 +159434,Macbook Pro Laptop,1,1700.0,2019-02-21 17:49:00,824 River St, Los Angeles,CA,90001 +159435,Lightning Charging Cable,1,14.95,2019-02-04 20:12:00,997 Lake St, Austin,TX,73301 +159436,Bose SoundSport Headphones,1,99.99,2019-02-08 08:43:00,727 Washington St, Los Angeles,CA,90001 +159437,USB-C Charging Cable,1,11.95,2019-02-25 06:22:00,220 Pine St, San Francisco,CA,94016 +159438,Wired Headphones,1,11.99,2019-02-27 21:05:00,117 Jefferson St, Los Angeles,CA,90001 +159439,Bose SoundSport Headphones,1,99.99,2019-02-28 23:59:00,40 4th St, New York City,NY,10001 +159440,USB-C Charging Cable,1,11.95,2019-02-15 00:12:00,603 4th St, Portland,ME,04101 +159441,AA Batteries (4-pack),1,3.84,2019-02-08 23:58:00,123 1st St, Dallas,TX,75001 +159442,Macbook Pro Laptop,1,1700.0,2019-02-17 20:45:00,390 Lincoln St, New York City,NY,10001 +159443,USB-C Charging Cable,1,11.95,2019-02-18 20:55:00,312 Meadow St, Los Angeles,CA,90001 +159444,Bose SoundSport Headphones,1,99.99,2019-02-04 19:45:00,311 14th St, Los Angeles,CA,90001 +159445,AAA Batteries (4-pack),1,2.99,2019-02-24 12:59:00,73 6th St, Dallas,TX,75001 +159446,AAA Batteries (4-pack),1,2.99,2019-02-14 01:02:00,497 Adams St, Atlanta,GA,30301 +159447,27in 4K Gaming Monitor,1,389.99,2019-02-23 20:13:00,532 North St, San Francisco,CA,94016 +159448,Apple Airpods Headphones,1,150.0,2019-02-12 11:55:00,277 Maple St, Atlanta,GA,30301 +159449,Bose SoundSport Headphones,1,99.99,2019-02-16 02:02:00,304 Washington St, Boston,MA,02215 +159450,Apple Airpods Headphones,1,150.0,2019-02-08 09:02:00,345 Meadow St, San Francisco,CA,94016 +159451,Apple Airpods Headphones,1,150.0,2019-02-20 01:56:00,146 Center St, San Francisco,CA,94016 +159452,34in Ultrawide Monitor,1,379.99,2019-02-01 08:32:00,107 Walnut St, Atlanta,GA,30301 +159453,AA Batteries (4-pack),3,3.84,2019-02-13 13:35:00,453 1st St, Seattle,WA,98101 +159454,Wired Headphones,1,11.99,2019-02-12 04:55:00,128 Lake St, Portland,ME,04101 +159455,27in FHD Monitor,1,149.99,2019-02-22 12:40:00,628 Sunset St, San Francisco,CA,94016 +159456,Wired Headphones,1,11.99,2019-02-01 19:54:00,746 Cherry St, Boston,MA,02215 +159457,USB-C Charging Cable,1,11.95,2019-02-19 20:13:00,36 12th St, Portland,OR,97035 +159458,Wired Headphones,1,11.99,2019-02-23 13:59:00,669 Maple St, Portland,ME,04101 +159459,USB-C Charging Cable,1,11.95,2019-02-17 08:11:00,46 7th St, Austin,TX,73301 +159460,USB-C Charging Cable,1,11.95,2019-02-27 19:36:00,651 14th St, Los Angeles,CA,90001 +159461,34in Ultrawide Monitor,1,379.99,2019-02-16 22:25:00,839 11th St, New York City,NY,10001 +159462,Apple Airpods Headphones,1,150.0,2019-02-01 16:43:00,582 Jefferson St, San Francisco,CA,94016 +159463,AAA Batteries (4-pack),1,2.99,2019-02-23 22:51:00,781 Hill St, Dallas,TX,75001 +159464,AAA Batteries (4-pack),1,2.99,2019-02-07 23:29:00,732 14th St, San Francisco,CA,94016 +159465,Flatscreen TV,1,300.0,2019-02-16 02:32:00,723 Willow St, Dallas,TX,75001 +159466,USB-C Charging Cable,1,11.95,2019-02-19 21:22:00,981 North St, New York City,NY,10001 +159466,27in FHD Monitor,1,149.99,2019-02-19 21:22:00,981 North St, New York City,NY,10001 +159467,27in 4K Gaming Monitor,1,389.99,2019-02-10 18:36:00,26 Meadow St, Austin,TX,73301 +159468,USB-C Charging Cable,1,11.95,2019-02-02 23:38:00,28 Lake St, New York City,NY,10001 +159469,Apple Airpods Headphones,1,150.0,2019-02-13 19:50:00,168 Wilson St, Dallas,TX,75001 +159470,Macbook Pro Laptop,1,1700.0,2019-02-13 16:51:00,475 Madison St, San Francisco,CA,94016 +159471,Apple Airpods Headphones,1,150.0,2019-02-06 18:11:00,721 7th St, San Francisco,CA,94016 +159472,USB-C Charging Cable,1,11.95,2019-02-24 20:46:00,388 Park St, San Francisco,CA,94016 +159473,AA Batteries (4-pack),1,3.84,2019-02-06 00:35:00,321 Johnson St, New York City,NY,10001 +159474,iPhone,1,700.0,2019-02-13 20:30:00,221 9th St, Los Angeles,CA,90001 +159475,34in Ultrawide Monitor,1,379.99,2019-02-24 16:15:00,837 10th St, Atlanta,GA,30301 +159476,Apple Airpods Headphones,1,150.0,2019-02-18 19:23:00,372 11th St, Seattle,WA,98101 +159477,Google Phone,1,600.0,2019-02-01 15:04:00,734 Cedar St, New York City,NY,10001 +159478,34in Ultrawide Monitor,1,379.99,2019-02-12 22:16:00,863 Cherry St, San Francisco,CA,94016 +159479,AA Batteries (4-pack),1,3.84,2019-02-25 16:58:00,99 11th St, New York City,NY,10001 +159480,Lightning Charging Cable,1,14.95,2019-02-25 12:13:00,979 Cherry St, Dallas,TX,75001 +159481,AAA Batteries (4-pack),2,2.99,2019-02-15 21:16:00,989 Jackson St, San Francisco,CA,94016 +159482,27in 4K Gaming Monitor,1,389.99,2019-02-14 19:12:00,974 8th St, San Francisco,CA,94016 +159483,Apple Airpods Headphones,1,150.0,2019-02-21 23:09:00,9 8th St, Dallas,TX,75001 +159484,AA Batteries (4-pack),1,3.84,2019-02-11 23:37:00,983 Johnson St, Los Angeles,CA,90001 +159485,USB-C Charging Cable,1,11.95,2019-02-24 19:51:00,694 Sunset St, New York City,NY,10001 +159486,Wired Headphones,1,11.99,2019-02-06 06:15:00,400 5th St, Austin,TX,73301 +159487,Lightning Charging Cable,1,14.95,2019-02-21 11:20:00,568 Madison St, New York City,NY,10001 +159488,Wired Headphones,1,11.99,2019-02-02 18:50:00,174 7th St, Atlanta,GA,30301 +159489,Google Phone,1,600.0,2019-02-10 21:26:00,588 Elm St, Seattle,WA,98101 +159490,AAA Batteries (4-pack),2,2.99,2019-02-07 16:51:00,806 Sunset St, Los Angeles,CA,90001 +159491,Lightning Charging Cable,1,14.95,2019-02-26 06:40:00,829 Church St, Seattle,WA,98101 +159492,Bose SoundSport Headphones,1,99.99,2019-02-26 07:45:00,270 Madison St, San Francisco,CA,94016 +159493,20in Monitor,1,109.99,2019-02-19 22:50:00,380 Meadow St, Dallas,TX,75001 +159494,Flatscreen TV,1,300.0,2019-02-20 11:30:00,598 11th St, Portland,OR,97035 +159495,27in FHD Monitor,1,149.99,2019-02-10 12:55:00,400 6th St, San Francisco,CA,94016 +159496,USB-C Charging Cable,1,11.95,2019-02-03 16:21:00,295 6th St, Los Angeles,CA,90001 +159497,AA Batteries (4-pack),1,3.84,2019-02-06 10:03:00,754 Washington St, Boston,MA,02215 +159498,AAA Batteries (4-pack),1,2.99,2019-02-20 13:31:00,641 Chestnut St, Atlanta,GA,30301 +159499,Wired Headphones,1,11.99,2019-02-25 15:58:00,907 North St, San Francisco,CA,94016 +159500,Apple Airpods Headphones,1,150.0,2019-02-23 07:17:00,351 Jefferson St, Atlanta,GA,30301 +159501,AA Batteries (4-pack),2,3.84,2019-02-07 15:35:00,132 Center St, New York City,NY,10001 +159502,Apple Airpods Headphones,1,150.0,2019-02-14 15:28:00,289 12th St, New York City,NY,10001 +159503,Macbook Pro Laptop,1,1700.0,2019-02-09 14:32:00,844 12th St, Seattle,WA,98101 +159504,AAA Batteries (4-pack),2,2.99,2019-02-10 21:28:00,818 Lake St, Portland,OR,97035 +159505,Bose SoundSport Headphones,1,99.99,2019-02-04 13:28:00,64 10th St, San Francisco,CA,94016 +159506,Macbook Pro Laptop,1,1700.0,2019-02-03 23:23:00,87 1st St, San Francisco,CA,94016 +159507,USB-C Charging Cable,1,11.95,2019-02-17 12:49:00,404 Dogwood St, Los Angeles,CA,90001 +159508,AA Batteries (4-pack),1,3.84,2019-02-18 14:50:00,50 11th St, San Francisco,CA,94016 +159509,Lightning Charging Cable,1,14.95,2019-02-05 18:07:00,135 9th St, Dallas,TX,75001 +159510,Apple Airpods Headphones,1,150.0,2019-02-01 21:36:00,742 10th St, New York City,NY,10001 +159511,USB-C Charging Cable,1,11.95,2019-02-19 17:17:00,576 Ridge St, Los Angeles,CA,90001 +159512,USB-C Charging Cable,2,11.95,2019-02-08 14:48:00,198 2nd St, Seattle,WA,98101 +159513,Bose SoundSport Headphones,1,99.99,2019-02-13 14:12:00,915 Meadow St, New York City,NY,10001 +159514,27in 4K Gaming Monitor,1,389.99,2019-02-05 17:26:00,818 Cherry St, San Francisco,CA,94016 +159515,Bose SoundSport Headphones,1,99.99,2019-02-13 13:02:00,619 Lincoln St, Portland,OR,97035 +159516,Flatscreen TV,1,300.0,2019-02-10 20:39:00,925 8th St, San Francisco,CA,94016 +159517,iPhone,1,700.0,2019-02-28 09:59:00,231 11th St, Portland,OR,97035 +159517,Apple Airpods Headphones,1,150.0,2019-02-28 09:59:00,231 11th St, Portland,OR,97035 +159518,Lightning Charging Cable,1,14.95,2019-02-02 13:09:00,68 2nd St, Dallas,TX,75001 +159519,USB-C Charging Cable,1,11.95,2019-02-06 06:58:00,846 North St, Austin,TX,73301 +159520,AAA Batteries (4-pack),1,2.99,2019-02-05 00:44:00,452 Hill St, Los Angeles,CA,90001 +159521,Apple Airpods Headphones,1,150.0,2019-02-01 08:35:00,932 West St, Seattle,WA,98101 +159522,USB-C Charging Cable,1,11.95,2019-02-07 15:28:00,284 Church St, Atlanta,GA,30301 +159523,Apple Airpods Headphones,1,150.0,2019-02-21 12:41:00,763 Madison St, Los Angeles,CA,90001 +159524,Wired Headphones,1,11.99,2019-02-13 14:51:00,916 1st St, Boston,MA,02215 +159525,Lightning Charging Cable,1,14.95,2019-02-08 17:08:00,877 Forest St, San Francisco,CA,94016 +159526,AA Batteries (4-pack),1,3.84,2019-02-17 08:56:00,672 Spruce St, Austin,TX,73301 +159527,AA Batteries (4-pack),2,3.84,2019-02-27 18:02:00,242 Wilson St, San Francisco,CA,94016 +159528,iPhone,1,700.0,2019-02-27 15:05:00,20 Cherry St, Dallas,TX,75001 +159529,AA Batteries (4-pack),1,3.84,2019-02-08 22:41:00,814 Main St, Boston,MA,02215 +159530,Lightning Charging Cable,1,14.95,2019-02-27 06:30:00,368 Washington St, Boston,MA,02215 +159531,Bose SoundSport Headphones,1,99.99,2019-02-19 15:30:00,881 River St, New York City,NY,10001 +159532,LG Dryer,1,600.0,2019-02-12 10:14:00,53 Elm St, New York City,NY,10001 +159533,Apple Airpods Headphones,1,150.0,2019-02-02 08:06:00,439 Walnut St, Austin,TX,73301 +159534,Macbook Pro Laptop,1,1700.0,2019-02-01 15:20:00,358 7th St, Austin,TX,73301 +159535,Lightning Charging Cable,1,14.95,2019-02-05 17:48:00,571 Jefferson St, Dallas,TX,75001 +159536,USB-C Charging Cable,1,11.95,2019-02-02 17:15:00,892 Main St, San Francisco,CA,94016 +159537,20in Monitor,1,109.99,2019-02-28 00:53:00,151 Lincoln St, Dallas,TX,75001 +159538,27in 4K Gaming Monitor,1,389.99,2019-02-09 19:16:00,238 Lincoln St, Portland,OR,97035 +159539,27in FHD Monitor,1,149.99,2019-02-13 11:00:00,697 Dogwood St, Los Angeles,CA,90001 +159540,USB-C Charging Cable,1,11.95,2019-02-21 13:27:00,798 Park St, Dallas,TX,75001 +159541,27in FHD Monitor,1,149.99,2019-02-23 10:03:00,885 Washington St, Los Angeles,CA,90001 +159542,AAA Batteries (4-pack),4,2.99,2019-02-13 23:52:00,752 Spruce St, Dallas,TX,75001 +159543,USB-C Charging Cable,1,11.95,2019-02-19 17:25:00,720 1st St, New York City,NY,10001 +159543,Lightning Charging Cable,3,14.95,2019-02-19 17:25:00,720 1st St, New York City,NY,10001 +159544,Lightning Charging Cable,2,14.95,2019-02-16 12:54:00,646 West St, San Francisco,CA,94016 +159545,USB-C Charging Cable,1,11.95,2019-02-14 13:02:00,305 Ridge St, Los Angeles,CA,90001 +159546,27in FHD Monitor,1,149.99,2019-02-21 16:23:00,550 7th St, Portland,OR,97035 +159547,AAA Batteries (4-pack),1,2.99,2019-02-15 09:58:00,734 Wilson St, New York City,NY,10001 +159548,Bose SoundSport Headphones,1,99.99,2019-02-23 20:47:00,509 Main St, Seattle,WA,98101 +159549,Apple Airpods Headphones,1,150.0,2019-02-20 13:51:00,362 Spruce St, Austin,TX,73301 +159550,AA Batteries (4-pack),2,3.84,2019-02-15 09:05:00,561 Lakeview St, San Francisco,CA,94016 +159551,Apple Airpods Headphones,1,150.0,2019-02-26 13:37:00,449 Washington St, Austin,TX,73301 +159552,USB-C Charging Cable,1,11.95,2019-02-04 16:52:00,336 Lake St, New York City,NY,10001 +159553,Macbook Pro Laptop,1,1700.0,2019-02-25 23:56:00,939 Pine St, Los Angeles,CA,90001 +159554,Wired Headphones,1,11.99,2019-02-10 17:00:00,65 11th St, New York City,NY,10001 +159555,27in FHD Monitor,1,149.99,2019-02-08 13:41:00,235 Church St, San Francisco,CA,94016 +159556,Wired Headphones,1,11.99,2019-02-04 07:41:00,504 Jackson St, Seattle,WA,98101 +159557,USB-C Charging Cable,1,11.95,2019-02-09 11:47:00,916 Washington St, San Francisco,CA,94016 +159558,27in 4K Gaming Monitor,1,389.99,2019-02-10 14:54:00,66 12th St, San Francisco,CA,94016 +159559,27in 4K Gaming Monitor,1,389.99,2019-02-19 18:53:00,867 Park St, San Francisco,CA,94016 +159560,Flatscreen TV,1,300.0,2019-02-21 12:25:00,439 14th St, San Francisco,CA,94016 +159561,Apple Airpods Headphones,1,150.0,2019-02-23 23:00:00,891 North St, Seattle,WA,98101 +159562,Bose SoundSport Headphones,1,99.99,2019-02-24 14:06:00,416 10th St, Austin,TX,73301 +159563,Wired Headphones,2,11.99,2019-02-24 09:26:00,45 Walnut St, Dallas,TX,75001 +159564,Wired Headphones,1,11.99,2019-02-07 18:20:00,974 Forest St, San Francisco,CA,94016 +159565,USB-C Charging Cable,1,11.95,2019-02-24 18:41:00,895 Johnson St, Los Angeles,CA,90001 +159566,Wired Headphones,1,11.99,2019-02-06 19:15:00,891 11th St, San Francisco,CA,94016 +159567,Apple Airpods Headphones,1,150.0,2019-02-06 18:02:00,434 7th St, Atlanta,GA,30301 +159568,Google Phone,1,600.0,2019-02-27 18:53:00,86 Pine St, Los Angeles,CA,90001 +159568,USB-C Charging Cable,1,11.95,2019-02-27 18:53:00,86 Pine St, Los Angeles,CA,90001 +159569,USB-C Charging Cable,2,11.95,2019-02-21 17:49:00,603 Washington St, Los Angeles,CA,90001 +159570,27in FHD Monitor,1,149.99,2019-02-23 13:59:00,309 6th St, Los Angeles,CA,90001 +159571,AAA Batteries (4-pack),1,2.99,2019-02-01 18:19:00,539 9th St, Seattle,WA,98101 +159572,iPhone,1,700.0,2019-02-27 00:44:00,62 North St, New York City,NY,10001 +159573,Google Phone,1,600.0,2019-02-18 22:05:00,439 6th St, Seattle,WA,98101 +159574,AA Batteries (4-pack),1,3.84,2019-02-23 00:58:00,926 14th St, Los Angeles,CA,90001 +159575,Apple Airpods Headphones,1,150.0,2019-02-19 15:46:00,956 Chestnut St, Los Angeles,CA,90001 +159576,Apple Airpods Headphones,1,150.0,2019-02-23 16:00:00,668 Wilson St, San Francisco,CA,94016 +159577,27in 4K Gaming Monitor,2,389.99,2019-02-01 15:22:00,511 Johnson St, Seattle,WA,98101 +159578,AAA Batteries (4-pack),4,2.99,2019-02-02 17:08:00,598 Madison St, New York City,NY,10001 +159579,LG Dryer,1,600.0,2019-02-02 12:55:00,825 12th St, Los Angeles,CA,90001 +159580,Wired Headphones,1,11.99,2019-02-10 17:44:00,553 9th St, New York City,NY,10001 +159581,USB-C Charging Cable,1,11.95,2019-02-18 21:19:00,519 14th St, Los Angeles,CA,90001 +159582,AA Batteries (4-pack),3,3.84,2019-02-13 21:37:00,767 11th St, New York City,NY,10001 +159583,Flatscreen TV,1,300.0,2019-02-19 21:38:00,194 Hickory St, Dallas,TX,75001 +159584,27in 4K Gaming Monitor,1,389.99,2019-02-11 12:12:00,799 Center St, Los Angeles,CA,90001 +159585,Lightning Charging Cable,1,14.95,2019-02-04 08:08:00,490 Johnson St, Portland,ME,04101 +159586,AA Batteries (4-pack),2,3.84,2019-02-07 22:54:00,199 Maple St, Dallas,TX,75001 +159587,AAA Batteries (4-pack),1,2.99,2019-02-24 06:08:00,340 Jefferson St, Boston,MA,02215 +159588,AA Batteries (4-pack),1,3.84,2019-02-17 10:57:00,983 Cedar St, New York City,NY,10001 +159589,AAA Batteries (4-pack),2,2.99,2019-02-05 18:25:00,728 12th St, Los Angeles,CA,90001 +159590,34in Ultrawide Monitor,1,379.99,2019-02-04 21:39:00,836 Pine St, Atlanta,GA,30301 +159591,Bose SoundSport Headphones,1,99.99,2019-02-09 18:38:00,400 Church St, Austin,TX,73301 +159592,USB-C Charging Cable,1,11.95,2019-02-07 19:07:00,724 Lake St, New York City,NY,10001 +159593,ThinkPad Laptop,1,999.99,2019-02-27 23:03:00,660 Main St, San Francisco,CA,94016 +159594,Wired Headphones,1,11.99,2019-02-16 11:08:00,994 West St, San Francisco,CA,94016 +159595,USB-C Charging Cable,1,11.95,2019-02-17 16:29:00,229 Dogwood St, San Francisco,CA,94016 +159596,Flatscreen TV,1,300.0,2019-02-07 13:48:00,955 1st St, Dallas,TX,75001 +159597,Apple Airpods Headphones,1,150.0,2019-02-22 14:31:00,63 Church St, Atlanta,GA,30301 +159598,Lightning Charging Cable,1,14.95,2019-02-16 19:52:00,928 Highland St, San Francisco,CA,94016 +159599,AA Batteries (4-pack),1,3.84,2019-02-21 17:45:00,713 Cedar St, Seattle,WA,98101 +159600,Flatscreen TV,1,300.0,2019-02-10 17:51:00,387 Dogwood St, Boston,MA,02215 +159601,AAA Batteries (4-pack),1,2.99,2019-02-11 19:34:00,438 Cedar St, Boston,MA,02215 +159602,AAA Batteries (4-pack),1,2.99,2019-02-12 08:44:00,924 1st St, Seattle,WA,98101 +159603,Lightning Charging Cable,1,14.95,2019-02-09 09:34:00,852 14th St, Seattle,WA,98101 +159604,Lightning Charging Cable,1,14.95,2019-02-16 12:48:00,860 Jackson St, San Francisco,CA,94016 +159605,USB-C Charging Cable,1,11.95,2019-02-25 21:06:00,699 Spruce St, Atlanta,GA,30301 +159606,Wired Headphones,1,11.99,2019-02-04 19:37:00,350 Ridge St, Portland,OR,97035 +159607,Apple Airpods Headphones,1,150.0,2019-02-22 21:40:00,258 10th St, Los Angeles,CA,90001 +159608,Wired Headphones,1,11.99,2019-02-04 12:41:00,380 10th St, New York City,NY,10001 +159609,Lightning Charging Cable,1,14.95,2019-02-21 21:40:00,521 Forest St, Portland,OR,97035 +159610,Bose SoundSport Headphones,1,99.99,2019-02-22 19:48:00,334 South St, Atlanta,GA,30301 +159611,Lightning Charging Cable,1,14.95,2019-02-06 08:03:00,640 Chestnut St, Boston,MA,02215 +159611,Macbook Pro Laptop,1,1700.0,2019-02-06 08:03:00,640 Chestnut St, Boston,MA,02215 +159612,AA Batteries (4-pack),1,3.84,2019-02-04 12:29:00,453 Church St, Boston,MA,02215 +159613,20in Monitor,1,109.99,2019-02-28 06:28:00,403 Main St, New York City,NY,10001 +159614,ThinkPad Laptop,1,999.99,2019-02-03 14:53:00,471 Chestnut St, Boston,MA,02215 +159615,Bose SoundSport Headphones,1,99.99,2019-02-06 19:27:00,590 Elm St, San Francisco,CA,94016 +159616,Wired Headphones,1,11.99,2019-02-23 13:01:00,442 Walnut St, Seattle,WA,98101 +159617,Google Phone,1,600.0,2019-02-02 10:56:00,230 Wilson St, San Francisco,CA,94016 +159618,Bose SoundSport Headphones,1,99.99,2019-02-19 11:47:00,390 5th St, New York City,NY,10001 +159619,AA Batteries (4-pack),1,3.84,2019-02-28 11:07:00,542 12th St, Atlanta,GA,30301 +159620,Macbook Pro Laptop,1,1700.0,2019-02-06 04:55:00,786 Washington St, Atlanta,GA,30301 +159621,LG Washing Machine,1,600.0,2019-02-25 13:05:00,371 Chestnut St, San Francisco,CA,94016 +159622,Wired Headphones,2,11.99,2019-02-23 08:04:00,38 Lincoln St, Boston,MA,02215 +159623,Bose SoundSport Headphones,1,99.99,2019-02-18 11:37:00,763 7th St, San Francisco,CA,94016 +159624,Apple Airpods Headphones,1,150.0,2019-02-06 17:18:00,423 Forest St, Los Angeles,CA,90001 +159625,Google Phone,1,600.0,2019-02-27 12:36:00,686 Hickory St, Dallas,TX,75001 +159626,Apple Airpods Headphones,1,150.0,2019-02-12 17:27:00,117 Sunset St, San Francisco,CA,94016 +159627,Bose SoundSport Headphones,1,99.99,2019-02-19 00:11:00,377 River St, San Francisco,CA,94016 +159628,Wired Headphones,1,11.99,2019-02-01 14:15:00,914 Pine St, Seattle,WA,98101 +159629,Google Phone,1,600.0,2019-02-07 14:15:00,653 River St, San Francisco,CA,94016 +159630,USB-C Charging Cable,2,11.95,2019-02-01 10:04:00,339 Madison St, San Francisco,CA,94016 +159631,34in Ultrawide Monitor,1,379.99,2019-02-16 18:46:00,235 7th St, San Francisco,CA,94016 +159632,AAA Batteries (4-pack),2,2.99,2019-02-17 08:00:00,741 Main St, New York City,NY,10001 +159633,AAA Batteries (4-pack),2,2.99,2019-02-10 23:54:00,738 13th St, San Francisco,CA,94016 +159634,Lightning Charging Cable,1,14.95,2019-02-24 11:00:00,214 River St, Dallas,TX,75001 +159635,Flatscreen TV,1,300.0,2019-02-28 05:51:00,292 14th St, New York City,NY,10001 +159636,Bose SoundSport Headphones,1,99.99,2019-02-04 12:39:00,555 River St, San Francisco,CA,94016 +159637,Bose SoundSport Headphones,1,99.99,2019-02-02 09:54:00,80 Meadow St, Austin,TX,73301 +159638,AAA Batteries (4-pack),1,2.99,2019-02-17 08:48:00,883 Main St, Boston,MA,02215 +159639,Apple Airpods Headphones,1,150.0,2019-02-21 20:07:00,775 Park St, Dallas,TX,75001 +159640,20in Monitor,1,109.99,2019-02-19 13:59:00,501 Chestnut St, Portland,OR,97035 +159641,USB-C Charging Cable,1,11.95,2019-02-21 13:48:00,179 Highland St, Atlanta,GA,30301 +159642,Bose SoundSport Headphones,1,99.99,2019-02-23 22:50:00,259 14th St, Seattle,WA,98101 +159643,Wired Headphones,1,11.99,2019-02-16 21:47:00,806 Center St, Portland,ME,04101 +159644,Wired Headphones,1,11.99,2019-02-28 12:08:00,12 Meadow St, Boston,MA,02215 +159645,USB-C Charging Cable,1,11.95,2019-02-12 18:27:00,537 Highland St, San Francisco,CA,94016 +159646,AA Batteries (4-pack),1,3.84,2019-02-14 09:09:00,436 Washington St, Seattle,WA,98101 +159647,Apple Airpods Headphones,1,150.0,2019-02-25 20:13:00,343 Madison St, New York City,NY,10001 +159648,Google Phone,1,600.0,2019-02-16 10:40:00,375 Church St, New York City,NY,10001 +159649,27in 4K Gaming Monitor,1,389.99,2019-02-04 21:09:00,443 Maple St, New York City,NY,10001 +159650,27in FHD Monitor,1,149.99,2019-02-27 23:45:00,208 Cherry St, San Francisco,CA,94016 +159651,USB-C Charging Cable,1,11.95,2019-02-04 09:05:00,942 Willow St, Boston,MA,02215 +159652,34in Ultrawide Monitor,1,379.99,2019-02-20 12:30:00,561 5th St, Portland,OR,97035 +159653,27in 4K Gaming Monitor,1,389.99,2019-02-11 23:49:00,603 Ridge St, San Francisco,CA,94016 +159654,USB-C Charging Cable,1,11.95,2019-02-23 20:51:00,766 River St, Atlanta,GA,30301 +159655,Apple Airpods Headphones,1,150.0,2019-02-22 19:13:00,499 Maple St, Seattle,WA,98101 +159656,AAA Batteries (4-pack),1,2.99,2019-02-25 15:56:00,451 12th St, Los Angeles,CA,90001 +159657,Lightning Charging Cable,1,14.95,2019-02-20 16:29:00,831 13th St, San Francisco,CA,94016 +159658,Bose SoundSport Headphones,1,99.99,2019-02-13 13:50:00,991 Center St, Boston,MA,02215 +159659,27in 4K Gaming Monitor,1,389.99,2019-02-27 21:45:00,479 Maple St, San Francisco,CA,94016 +159660,Lightning Charging Cable,1,14.95,2019-02-24 20:38:00,844 Wilson St, Boston,MA,02215 +159661,20in Monitor,1,109.99,2019-02-19 10:27:00,531 Hill St, New York City,NY,10001 +159662,27in FHD Monitor,1,149.99,2019-02-11 13:50:00,866 9th St, Los Angeles,CA,90001 +159663,34in Ultrawide Monitor,1,379.99,2019-02-13 13:41:00,71 7th St, Los Angeles,CA,90001 +159664,Lightning Charging Cable,1,14.95,2019-02-19 19:35:00,698 6th St, Portland,OR,97035 +159665,34in Ultrawide Monitor,1,379.99,2019-02-15 17:09:00,415 Lake St, New York City,NY,10001 +159666,USB-C Charging Cable,1,11.95,2019-02-25 14:33:00,858 River St, Los Angeles,CA,90001 +159667,AA Batteries (4-pack),1,3.84,2019-02-27 16:21:00,287 Cherry St, Dallas,TX,75001 +159668,Wired Headphones,1,11.99,2019-02-20 23:13:00,322 14th St, San Francisco,CA,94016 +159669,Apple Airpods Headphones,1,150.0,2019-02-08 20:20:00,558 Washington St, Seattle,WA,98101 +159670,Apple Airpods Headphones,1,150.0,2019-02-05 10:16:00,149 Forest St, Seattle,WA,98101 +159671,USB-C Charging Cable,1,11.95,2019-02-06 09:20:00,951 Spruce St, San Francisco,CA,94016 +159671,AA Batteries (4-pack),1,3.84,2019-02-06 09:20:00,951 Spruce St, San Francisco,CA,94016 +159672,Apple Airpods Headphones,1,150.0,2019-02-21 19:39:00,491 Johnson St, San Francisco,CA,94016 +159673,USB-C Charging Cable,1,11.95,2019-02-22 22:13:00,476 5th St, Los Angeles,CA,90001 +159674,AAA Batteries (4-pack),1,2.99,2019-02-13 15:53:00,676 Church St, San Francisco,CA,94016 +159675,Wired Headphones,2,11.99,2019-02-27 13:21:00,272 Cherry St, San Francisco,CA,94016 +159676,AAA Batteries (4-pack),2,2.99,2019-02-22 19:38:00,263 13th St, Seattle,WA,98101 +159677,27in 4K Gaming Monitor,1,389.99,2019-02-25 18:50:00,706 Dogwood St, Austin,TX,73301 +159678,Lightning Charging Cable,1,14.95,2019-02-10 08:36:00,583 11th St, Los Angeles,CA,90001 +159679,Lightning Charging Cable,1,14.95,2019-02-25 01:53:00,869 13th St, Boston,MA,02215 +159680,iPhone,1,700.0,2019-02-08 11:34:00,38 Cedar St, Atlanta,GA,30301 +159680,Lightning Charging Cable,1,14.95,2019-02-08 11:34:00,38 Cedar St, Atlanta,GA,30301 +159681,AAA Batteries (4-pack),1,2.99,2019-02-25 08:38:00,418 13th St, San Francisco,CA,94016 +159682,AA Batteries (4-pack),1,3.84,2019-02-20 20:47:00,236 Lake St, Los Angeles,CA,90001 +159683,Wired Headphones,1,11.99,2019-02-03 21:10:00,590 South St, Los Angeles,CA,90001 +159684,USB-C Charging Cable,1,11.95,2019-02-17 11:42:00,913 Jackson St, Seattle,WA,98101 +159685,Wired Headphones,1,11.99,2019-02-04 17:15:00,10 North St, Portland,OR,97035 +159686,AAA Batteries (4-pack),1,2.99,2019-02-26 16:25:00,691 River St, San Francisco,CA,94016 +159687,Bose SoundSport Headphones,1,99.99,2019-02-05 10:19:00,77 Main St, Portland,ME,04101 +159688,34in Ultrawide Monitor,1,379.99,2019-02-05 22:33:00,388 Chestnut St, Austin,TX,73301 +159689,USB-C Charging Cable,1,11.95,2019-02-08 07:58:00,152 South St, New York City,NY,10001 +159690,AA Batteries (4-pack),2,3.84,2019-02-05 17:35:00,22 5th St, Los Angeles,CA,90001 +159691,Lightning Charging Cable,1,14.95,2019-02-17 14:18:00,111 Wilson St, San Francisco,CA,94016 +159692,Apple Airpods Headphones,1,150.0,2019-02-16 13:58:00,925 Park St, San Francisco,CA,94016 +159693,Wired Headphones,1,11.99,2019-02-06 12:18:00,433 Hill St, Seattle,WA,98101 +159694,Wired Headphones,1,11.99,2019-02-24 22:01:00,719 13th St, Boston,MA,02215 +159695,iPhone,1,700.0,2019-02-18 00:50:00,698 Forest St, Portland,OR,97035 +159695,Lightning Charging Cable,1,14.95,2019-02-18 00:50:00,698 Forest St, Portland,OR,97035 +159696,Apple Airpods Headphones,1,150.0,2019-02-13 09:34:00,606 11th St, San Francisco,CA,94016 +159697,Lightning Charging Cable,1,14.95,2019-02-02 23:21:00,408 Wilson St, New York City,NY,10001 +159698,AAA Batteries (4-pack),1,2.99,2019-02-17 17:08:00,207 13th St, Austin,TX,73301 +159699,Bose SoundSport Headphones,1,99.99,2019-02-21 18:50:00,713 West St, San Francisco,CA,94016 +159700,AAA Batteries (4-pack),1,2.99,2019-02-20 10:52:00,465 Pine St, Atlanta,GA,30301 +159701,Wired Headphones,2,11.99,2019-02-08 18:41:00,778 Spruce St, Los Angeles,CA,90001 +159702,Google Phone,1,600.0,2019-02-02 20:48:00,443 Pine St, Los Angeles,CA,90001 +159703,Wired Headphones,1,11.99,2019-02-19 10:50:00,599 2nd St, Seattle,WA,98101 +159704,Lightning Charging Cable,1,14.95,2019-02-22 01:02:00,561 4th St, Los Angeles,CA,90001 +159705,USB-C Charging Cable,1,11.95,2019-02-15 14:18:00,637 14th St, San Francisco,CA,94016 +159706,Bose SoundSport Headphones,1,99.99,2019-02-20 21:29:00,335 Jefferson St, Portland,ME,04101 +159707,34in Ultrawide Monitor,1,379.99,2019-02-15 15:13:00,990 Ridge St, Seattle,WA,98101 +159708,Lightning Charging Cable,2,14.95,2019-02-18 18:24:00,836 Maple St, Dallas,TX,75001 +159709,AA Batteries (4-pack),1,3.84,2019-02-26 16:42:00,787 Spruce St, Los Angeles,CA,90001 +159710,Lightning Charging Cable,1,14.95,2019-02-16 09:14:00,180 Ridge St, New York City,NY,10001 +159710,Apple Airpods Headphones,1,150.0,2019-02-16 09:14:00,180 Ridge St, New York City,NY,10001 +159711,ThinkPad Laptop,1,999.99,2019-02-14 00:27:00,526 Maple St, New York City,NY,10001 +159712,27in FHD Monitor,1,149.99,2019-02-27 03:28:00,293 Jefferson St, San Francisco,CA,94016 +159713,AAA Batteries (4-pack),1,2.99,2019-02-08 12:33:00,367 Lake St, Dallas,TX,75001 +159714,Lightning Charging Cable,1,14.95,2019-02-26 17:02:00,759 4th St, Seattle,WA,98101 +159715,Wired Headphones,1,11.99,2019-02-27 21:04:00,361 Wilson St, Boston,MA,02215 +159716,iPhone,1,700.0,2019-02-22 13:00:00,477 Ridge St, San Francisco,CA,94016 +159717,Bose SoundSport Headphones,1,99.99,2019-02-22 15:27:00,973 Washington St, Seattle,WA,98101 +159718,Lightning Charging Cable,2,14.95,2019-02-01 11:47:00,310 4th St, Dallas,TX,75001 +159719,iPhone,1,700.0,2019-02-08 15:03:00,958 Cherry St, Los Angeles,CA,90001 +159719,Lightning Charging Cable,1,14.95,2019-02-08 15:03:00,958 Cherry St, Los Angeles,CA,90001 +159720,Wired Headphones,1,11.99,2019-02-10 18:18:00,891 7th St, Los Angeles,CA,90001 +159721,USB-C Charging Cable,3,11.95,2019-02-27 19:04:00,405 4th St, New York City,NY,10001 +159722,Wired Headphones,1,11.99,2019-02-12 12:57:00,256 2nd St, New York City,NY,10001 +159723,AAA Batteries (4-pack),1,2.99,2019-02-03 15:45:00,287 Chestnut St, Atlanta,GA,30301 +159724,Wired Headphones,1,11.99,2019-02-27 17:31:00,331 Highland St, Los Angeles,CA,90001 +159725,Lightning Charging Cable,1,14.95,2019-02-19 10:15:00,476 South St, Dallas,TX,75001 +159726,Macbook Pro Laptop,1,1700.0,2019-02-13 09:54:00,238 Willow St, San Francisco,CA,94016 +159727,Macbook Pro Laptop,1,1700.0,2019-02-17 12:55:00,379 Willow St, New York City,NY,10001 +159728,AA Batteries (4-pack),1,3.84,2019-02-13 16:16:00,351 8th St, San Francisco,CA,94016 +159729,20in Monitor,1,109.99,2019-02-14 12:28:00,162 Pine St, San Francisco,CA,94016 +159730,AA Batteries (4-pack),1,3.84,2019-02-23 22:42:00,287 Willow St, Seattle,WA,98101 +159731,Apple Airpods Headphones,1,150.0,2019-02-06 12:21:00,492 Cedar St, Seattle,WA,98101 +159732,27in 4K Gaming Monitor,1,389.99,2019-02-02 08:38:00,900 Willow St, New York City,NY,10001 +159733,USB-C Charging Cable,1,11.95,2019-02-08 22:05:00,77 Walnut St, San Francisco,CA,94016 +159734,ThinkPad Laptop,1,999.99,2019-02-07 16:12:00,771 Elm St, Seattle,WA,98101 +159735,USB-C Charging Cable,2,11.95,2019-02-11 10:41:00,816 Elm St, Atlanta,GA,30301 +159736,Google Phone,1,600.0,2019-02-07 11:02:00,151 Cherry St, Dallas,TX,75001 +159737,Lightning Charging Cable,1,14.95,2019-02-22 10:31:00,494 5th St, Austin,TX,73301 +159738,Flatscreen TV,1,300.0,2019-02-14 14:21:00,113 14th St, Dallas,TX,75001 +159739,Bose SoundSport Headphones,1,99.99,2019-02-16 11:25:00,724 Jefferson St, New York City,NY,10001 +159740,Google Phone,1,600.0,2019-02-03 16:38:00,708 Lakeview St, Dallas,TX,75001 +159741,Bose SoundSport Headphones,1,99.99,2019-02-03 21:23:00,654 River St, San Francisco,CA,94016 +159742,AA Batteries (4-pack),3,3.84,2019-02-15 20:09:00,726 Chestnut St, Boston,MA,02215 +159743,AA Batteries (4-pack),1,3.84,2019-02-13 08:08:00,483 Lake St, San Francisco,CA,94016 +159744,Google Phone,1,600.0,2019-02-10 00:13:00,791 South St, San Francisco,CA,94016 +159745,Apple Airpods Headphones,1,150.0,2019-02-25 13:34:00,420 Adams St, Austin,TX,73301 +159746,AA Batteries (4-pack),1,3.84,2019-02-19 17:06:00,328 Pine St, San Francisco,CA,94016 +159747,Flatscreen TV,1,300.0,2019-02-18 13:15:00,23 North St, New York City,NY,10001 +159748,Wired Headphones,1,11.99,2019-02-20 14:18:00,866 Johnson St, New York City,NY,10001 +159749,Lightning Charging Cable,1,14.95,2019-02-09 21:30:00,784 13th St, Boston,MA,02215 +159750,20in Monitor,1,109.99,2019-02-03 17:11:00,154 11th St, Portland,OR,97035 +159751,AAA Batteries (4-pack),1,2.99,2019-02-11 15:13:00,627 Meadow St, San Francisco,CA,94016 +159752,USB-C Charging Cable,2,11.95,2019-02-20 01:28:00,952 Adams St, San Francisco,CA,94016 +159753,Flatscreen TV,1,300.0,2019-02-17 11:42:00,491 Elm St, Dallas,TX,75001 +159754,Lightning Charging Cable,1,14.95,2019-02-04 18:42:00,871 1st St, San Francisco,CA,94016 +159755,34in Ultrawide Monitor,1,379.99,2019-02-01 09:37:00,760 14th St, Dallas,TX,75001 +159756,iPhone,1,700.0,2019-02-05 18:04:00,100 Maple St, Portland,OR,97035 +159757,AA Batteries (4-pack),1,3.84,2019-02-28 22:55:00,552 14th St, Los Angeles,CA,90001 +159758,27in FHD Monitor,2,149.99,2019-02-07 12:52:00,792 5th St, Portland,OR,97035 +159759,AAA Batteries (4-pack),1,2.99,2019-02-23 21:36:00,195 4th St, Los Angeles,CA,90001 +159760,Lightning Charging Cable,1,14.95,2019-02-17 10:38:00,105 Dogwood St, Seattle,WA,98101 +159761,Wired Headphones,1,11.99,2019-02-09 12:56:00,391 5th St, Austin,TX,73301 +159762,iPhone,1,700.0,2019-02-13 09:16:00,419 4th St, Los Angeles,CA,90001 +159763,USB-C Charging Cable,1,11.95,2019-02-03 20:36:00,769 Highland St, Boston,MA,02215 +159764,Wired Headphones,1,11.99,2019-02-25 11:22:00,67 Jefferson St, New York City,NY,10001 +159765,Lightning Charging Cable,1,14.95,2019-02-26 14:25:00,421 Pine St, Seattle,WA,98101 +159766,34in Ultrawide Monitor,1,379.99,2019-02-23 18:01:00,782 12th St, New York City,NY,10001 +159767,Wired Headphones,1,11.99,2019-02-22 15:53:00,480 Adams St, San Francisco,CA,94016 +159768,Google Phone,1,600.0,2019-02-24 18:05:00,400 Hill St, Portland,ME,04101 +159769,AA Batteries (4-pack),1,3.84,2019-02-26 13:08:00,794 Willow St, New York City,NY,10001 +159770,Apple Airpods Headphones,1,150.0,2019-02-25 17:33:00,786 Chestnut St, Austin,TX,73301 +159771,27in FHD Monitor,1,149.99,2019-02-05 23:30:00,311 Johnson St, Los Angeles,CA,90001 +159772,Macbook Pro Laptop,1,1700.0,2019-02-14 12:41:00,40 Ridge St, Atlanta,GA,30301 +159773,Google Phone,1,600.0,2019-02-24 15:54:00,496 Chestnut St, San Francisco,CA,94016 +159774,Vareebadd Phone,1,400.0,2019-02-26 13:52:00,217 Jackson St, San Francisco,CA,94016 +159774,Wired Headphones,1,11.99,2019-02-26 13:52:00,217 Jackson St, San Francisco,CA,94016 +159775,AA Batteries (4-pack),1,3.84,2019-02-02 17:05:00,695 Lakeview St, Atlanta,GA,30301 +159776,AA Batteries (4-pack),1,3.84,2019-02-10 22:15:00,222 4th St, Atlanta,GA,30301 +159777,ThinkPad Laptop,1,999.99,2019-02-21 23:21:00,903 4th St, Los Angeles,CA,90001 +159778,Lightning Charging Cable,1,14.95,2019-02-28 21:22:00,554 Walnut St, Los Angeles,CA,90001 +159779,Wired Headphones,1,11.99,2019-02-17 09:52:00,905 Lincoln St, Dallas,TX,75001 +159780,Lightning Charging Cable,1,14.95,2019-02-11 10:34:00,274 Park St, Los Angeles,CA,90001 +159781,27in FHD Monitor,1,149.99,2019-02-26 15:22:00,628 Adams St, Austin,TX,73301 +159782,AAA Batteries (4-pack),4,2.99,2019-02-18 16:10:00,22 Ridge St, San Francisco,CA,94016 +159783,USB-C Charging Cable,1,11.95,2019-02-22 21:55:00,252 Cherry St, San Francisco,CA,94016 +159784,AA Batteries (4-pack),2,3.84,2019-02-09 07:40:00,946 River St, Los Angeles,CA,90001 +159785,AA Batteries (4-pack),1,3.84,2019-02-14 11:38:00,917 West St, Austin,TX,73301 +159786,AAA Batteries (4-pack),1,2.99,2019-02-02 10:35:00,579 12th St, Seattle,WA,98101 +159787,AAA Batteries (4-pack),1,2.99,2019-02-11 15:38:00,580 Spruce St, Portland,OR,97035 +159788,USB-C Charging Cable,1,11.95,2019-02-10 21:13:00,673 12th St, Austin,TX,73301 +159789,AAA Batteries (4-pack),3,2.99,2019-02-17 19:06:00,964 Pine St, Los Angeles,CA,90001 +159790,Apple Airpods Headphones,1,150.0,2019-02-06 18:40:00,331 Sunset St, Austin,TX,73301 +159791,27in 4K Gaming Monitor,1,389.99,2019-02-22 14:23:00,267 Center St, Seattle,WA,98101 +159792,Bose SoundSport Headphones,1,99.99,2019-02-11 19:06:00,560 Cedar St, New York City,NY,10001 +159793,27in FHD Monitor,1,149.99,2019-02-05 20:28:00,519 1st St, Atlanta,GA,30301 +159794,34in Ultrawide Monitor,1,379.99,2019-02-21 22:23:00,212 Chestnut St, Los Angeles,CA,90001 +159795,Lightning Charging Cable,1,14.95,2019-02-07 12:35:00,524 Maple St, Atlanta,GA,30301 +159796,34in Ultrawide Monitor,1,379.99,2019-02-10 13:14:00,270 Church St, Dallas,TX,75001 +159797,27in FHD Monitor,1,149.99,2019-02-10 18:46:00,812 River St, Seattle,WA,98101 +159798,USB-C Charging Cable,1,11.95,2019-02-17 20:59:00,498 Adams St, Atlanta,GA,30301 +159799,ThinkPad Laptop,1,999.99,2019-02-06 09:25:00,690 14th St, Atlanta,GA,30301 +159800,Macbook Pro Laptop,1,1700.0,2019-02-26 16:09:00,895 9th St, San Francisco,CA,94016 +159801,AAA Batteries (4-pack),1,2.99,2019-02-25 22:06:00,332 South St, Dallas,TX,75001 +159802,Flatscreen TV,1,300.0,2019-02-18 11:18:00,222 Center St, Boston,MA,02215 +159803,Wired Headphones,1,11.99,2019-02-14 07:23:00,884 8th St, San Francisco,CA,94016 +159804,Lightning Charging Cable,1,14.95,2019-02-20 21:09:00,674 14th St, New York City,NY,10001 +159804,Lightning Charging Cable,2,14.95,2019-02-20 21:09:00,674 14th St, New York City,NY,10001 +159805,AAA Batteries (4-pack),1,2.99,2019-02-23 22:59:00,832 Forest St, New York City,NY,10001 +159806,Lightning Charging Cable,1,14.95,2019-02-16 13:44:00,205 10th St, San Francisco,CA,94016 +159807,Lightning Charging Cable,1,14.95,2019-02-19 18:48:00,641 Sunset St, Boston,MA,02215 +159808,AAA Batteries (4-pack),1,2.99,2019-02-25 07:27:00,983 2nd St, San Francisco,CA,94016 +159809,Bose SoundSport Headphones,1,99.99,2019-02-11 01:00:00,630 Sunset St, San Francisco,CA,94016 +159810,27in 4K Gaming Monitor,1,389.99,2019-02-13 21:28:00,367 Cherry St, San Francisco,CA,94016 +159811,AA Batteries (4-pack),1,3.84,2019-02-22 13:23:00,215 River St, Boston,MA,02215 +159812,AA Batteries (4-pack),3,3.84,2019-02-24 21:07:00,543 2nd St, Boston,MA,02215 +159812,AAA Batteries (4-pack),1,2.99,2019-02-24 21:07:00,543 2nd St, Boston,MA,02215 +159813,Vareebadd Phone,1,400.0,2019-02-08 00:15:00,540 4th St, Los Angeles,CA,90001 +159814,Lightning Charging Cable,1,14.95,2019-02-07 20:49:00,660 6th St, Los Angeles,CA,90001 +159815,AA Batteries (4-pack),1,3.84,2019-02-07 19:28:00,788 Dogwood St, Dallas,TX,75001 +159816,Macbook Pro Laptop,1,1700.0,2019-02-23 05:20:00,560 Lincoln St, New York City,NY,10001 +159817,27in FHD Monitor,1,149.99,2019-02-20 11:51:00,983 7th St, San Francisco,CA,94016 +159818,Macbook Pro Laptop,1,1700.0,2019-02-25 08:56:00,747 Washington St, New York City,NY,10001 +159819,Apple Airpods Headphones,1,150.0,2019-02-23 14:16:00,634 Cherry St, Dallas,TX,75001 +159820,AA Batteries (4-pack),2,3.84,2019-02-10 22:25:00,397 5th St, Portland,OR,97035 +159821,AAA Batteries (4-pack),2,2.99,2019-02-27 22:21:00,715 6th St, San Francisco,CA,94016 +159822,20in Monitor,1,109.99,2019-02-06 12:09:00,368 6th St, Los Angeles,CA,90001 +159823,Lightning Charging Cable,1,14.95,2019-02-07 13:02:00,59 Sunset St, Los Angeles,CA,90001 +159824,ThinkPad Laptop,1,999.99,2019-02-01 20:28:00,578 9th St, Seattle,WA,98101 +159825,Bose SoundSport Headphones,1,99.99,2019-02-20 21:31:00,911 5th St, New York City,NY,10001 +159826,AA Batteries (4-pack),2,3.84,2019-02-16 09:30:00,959 Johnson St, Dallas,TX,75001 +159827,Apple Airpods Headphones,1,150.0,2019-02-16 15:19:00,988 Walnut St, Los Angeles,CA,90001 +159828,USB-C Charging Cable,1,11.95,2019-02-27 12:05:00,81 Maple St, San Francisco,CA,94016 +159829,Wired Headphones,1,11.99,2019-02-22 20:17:00,68 2nd St, New York City,NY,10001 +159830,LG Dryer,1,600.0,2019-02-25 13:28:00,824 Church St, New York City,NY,10001 +159831,USB-C Charging Cable,1,11.95,2019-02-16 18:50:00,752 Walnut St, Portland,OR,97035 +159832,Bose SoundSport Headphones,1,99.99,2019-02-28 09:47:00,202 12th St, Seattle,WA,98101 +159833,USB-C Charging Cable,1,11.95,2019-02-25 12:34:00,436 5th St, San Francisco,CA,94016 +159834,Vareebadd Phone,1,400.0,2019-02-24 13:01:00,794 Madison St, Los Angeles,CA,90001 +159835,USB-C Charging Cable,1,11.95,2019-02-22 20:41:00,688 13th St, Dallas,TX,75001 +159835,AA Batteries (4-pack),1,3.84,2019-02-22 20:41:00,688 13th St, Dallas,TX,75001 +159836,Lightning Charging Cable,1,14.95,2019-02-01 20:13:00,98 Ridge St, Los Angeles,CA,90001 +159837,Macbook Pro Laptop,1,1700.0,2019-02-13 16:26:00,207 Jefferson St, Los Angeles,CA,90001 +159838,Wired Headphones,1,11.99,2019-02-18 05:21:00,688 Wilson St, San Francisco,CA,94016 +159839,27in 4K Gaming Monitor,1,389.99,2019-02-06 08:52:00,584 Highland St, San Francisco,CA,94016 +159840,USB-C Charging Cable,1,11.95,2019-02-26 13:49:00,223 Forest St, New York City,NY,10001 +159841,Lightning Charging Cable,1,14.95,2019-02-14 14:30:00,64 Cherry St, New York City,NY,10001 +159842,Bose SoundSport Headphones,1,99.99,2019-02-03 21:23:00,757 Washington St, Atlanta,GA,30301 +159843,Lightning Charging Cable,1,14.95,2019-02-18 10:59:00,246 Elm St, Atlanta,GA,30301 +159844,Macbook Pro Laptop,1,1700.0,2019-02-22 13:25:00,244 Adams St, San Francisco,CA,94016 +159845,AA Batteries (4-pack),1,3.84,2019-02-24 18:40:00,4 Lincoln St, San Francisco,CA,94016 +159846,27in FHD Monitor,1,149.99,2019-02-23 20:31:00,979 5th St, Seattle,WA,98101 +159847,Bose SoundSport Headphones,1,99.99,2019-02-21 09:59:00,392 Cherry St, San Francisco,CA,94016 +159848,ThinkPad Laptop,1,999.99,2019-02-11 20:01:00,671 Lakeview St, Los Angeles,CA,90001 +159849,USB-C Charging Cable,1,11.95,2019-02-26 11:15:00,634 North St, Portland,OR,97035 +159850,Google Phone,1,600.0,2019-02-17 12:53:00,910 1st St, San Francisco,CA,94016 +159850,USB-C Charging Cable,1,11.95,2019-02-17 12:53:00,910 1st St, San Francisco,CA,94016 +159851,AAA Batteries (4-pack),1,2.99,2019-02-18 15:10:00,448 Willow St, Los Angeles,CA,90001 +159852,AA Batteries (4-pack),1,3.84,2019-02-14 17:29:00,890 7th St, New York City,NY,10001 +159853,AA Batteries (4-pack),1,3.84,2019-02-14 21:07:00,463 Jefferson St, San Francisco,CA,94016 +159854,ThinkPad Laptop,1,999.99,2019-02-06 15:27:00,267 Johnson St, Seattle,WA,98101 +159855,LG Dryer,1,600.0,2019-02-04 12:44:00,229 Lakeview St, Boston,MA,02215 +159856,Wired Headphones,1,11.99,2019-02-16 01:27:00,910 4th St, Atlanta,GA,30301 +159857,Bose SoundSport Headphones,1,99.99,2019-02-01 13:16:00,627 12th St, San Francisco,CA,94016 +159858,Vareebadd Phone,1,400.0,2019-02-27 12:33:00,248 Church St, Boston,MA,02215 +159859,AA Batteries (4-pack),1,3.84,2019-02-01 17:52:00,908 Meadow St, San Francisco,CA,94016 +159860,Apple Airpods Headphones,1,150.0,2019-02-09 17:21:00,458 Main St, New York City,NY,10001 +159861,Apple Airpods Headphones,1,150.0,2019-02-11 04:39:00,768 Hickory St, Los Angeles,CA,90001 +159862,Vareebadd Phone,1,400.0,2019-02-14 14:55:00,34 Maple St, Portland,OR,97035 +159863,AA Batteries (4-pack),1,3.84,2019-02-28 14:28:00,294 Madison St, Boston,MA,02215 +159864,Wired Headphones,1,11.99,2019-02-16 20:48:00,410 North St, Los Angeles,CA,90001 +159865,27in FHD Monitor,1,149.99,2019-02-04 09:31:00,720 9th St, San Francisco,CA,94016 +159866,27in FHD Monitor,1,149.99,2019-02-15 11:17:00,337 Forest St, Atlanta,GA,30301 +159867,Bose SoundSport Headphones,1,99.99,2019-02-04 14:17:00,454 Center St, Dallas,TX,75001 +159868,Wired Headphones,1,11.99,2019-02-10 13:50:00,710 Maple St, Austin,TX,73301 +159869,Bose SoundSport Headphones,1,99.99,2019-02-13 21:47:00,154 13th St, Seattle,WA,98101 +159870,AAA Batteries (4-pack),1,2.99,2019-02-21 15:15:00,625 Johnson St, Los Angeles,CA,90001 +159871,Apple Airpods Headphones,1,150.0,2019-02-04 10:14:00,980 West St, Los Angeles,CA,90001 +159872,USB-C Charging Cable,1,11.95,2019-02-23 19:57:00,537 Walnut St, San Francisco,CA,94016 +159873,Apple Airpods Headphones,1,150.0,2019-02-18 01:02:00,992 12th St, New York City,NY,10001 +159874,AAA Batteries (4-pack),1,2.99,2019-02-24 10:42:00,935 Johnson St, Los Angeles,CA,90001 +159875,Macbook Pro Laptop,1,1700.0,2019-02-22 18:33:00,637 Lake St, New York City,NY,10001 +159876,AA Batteries (4-pack),1,3.84,2019-02-05 19:43:00,681 Pine St, New York City,NY,10001 +159877,27in 4K Gaming Monitor,1,389.99,2019-02-26 08:40:00,870 Chestnut St, New York City,NY,10001 +159878,Apple Airpods Headphones,1,150.0,2019-02-20 23:26:00,158 Highland St, San Francisco,CA,94016 +159879,34in Ultrawide Monitor,1,379.99,2019-02-09 11:14:00,185 Washington St, New York City,NY,10001 +159880,Wired Headphones,1,11.99,2019-02-10 22:19:00,44 Hickory St, Austin,TX,73301 +159881,Wired Headphones,1,11.99,2019-02-06 11:46:00,270 North St, Los Angeles,CA,90001 +159882,AA Batteries (4-pack),1,3.84,2019-02-25 02:01:00,683 Meadow St, Boston,MA,02215 +159883,Google Phone,1,600.0,2019-02-10 13:12:00,657 Sunset St, Los Angeles,CA,90001 +159884,AAA Batteries (4-pack),1,2.99,2019-02-26 20:34:00,525 7th St, Atlanta,GA,30301 +159885,27in 4K Gaming Monitor,1,389.99,2019-02-18 16:22:00,507 Jackson St, Portland,OR,97035 +159886,AAA Batteries (4-pack),5,2.99,2019-02-27 19:00:00,441 Jackson St, Los Angeles,CA,90001 +159887,20in Monitor,1,109.99,2019-02-17 21:36:00,880 North St, Portland,OR,97035 +159888,LG Washing Machine,1,600.0,2019-02-16 18:39:00,614 Sunset St, San Francisco,CA,94016 +159889,AAA Batteries (4-pack),3,2.99,2019-02-02 21:33:00,147 Lake St, Portland,OR,97035 +159890,Lightning Charging Cable,1,14.95,2019-02-23 09:24:00,228 Elm St, San Francisco,CA,94016 +159891,34in Ultrawide Monitor,1,379.99,2019-02-18 13:40:00,689 10th St, New York City,NY,10001 +159892,27in FHD Monitor,1,149.99,2019-02-02 19:59:00,433 Hickory St, Dallas,TX,75001 +159893,Bose SoundSport Headphones,1,99.99,2019-02-25 22:24:00,590 Jefferson St, New York City,NY,10001 +159894,USB-C Charging Cable,1,11.95,2019-02-03 17:28:00,270 Highland St, San Francisco,CA,94016 +159895,Bose SoundSport Headphones,1,99.99,2019-02-26 09:39:00,979 11th St, Seattle,WA,98101 +159896,USB-C Charging Cable,2,11.95,2019-02-27 04:48:00,317 Center St, New York City,NY,10001 +159897,34in Ultrawide Monitor,1,379.99,2019-02-09 13:25:00,704 Sunset St, Austin,TX,73301 +159898,Google Phone,1,600.0,2019-02-25 11:04:00,952 Highland St, Los Angeles,CA,90001 +159899,Lightning Charging Cable,1,14.95,2019-02-16 22:40:00,711 5th St, Seattle,WA,98101 +159900,Bose SoundSport Headphones,1,99.99,2019-02-02 14:49:00,380 11th St, Austin,TX,73301 +159901,27in 4K Gaming Monitor,1,389.99,2019-02-03 11:30:00,22 Johnson St, Dallas,TX,75001 +159902,20in Monitor,1,109.99,2019-02-15 13:44:00,196 Lakeview St, Portland,OR,97035 +159903,USB-C Charging Cable,1,11.95,2019-02-03 22:43:00,301 Cedar St, San Francisco,CA,94016 +159904,Bose SoundSport Headphones,1,99.99,2019-02-19 12:33:00,385 Pine St, Seattle,WA,98101 +159905,AA Batteries (4-pack),3,3.84,2019-02-28 16:10:00,148 Lakeview St, San Francisco,CA,94016 +159906,Lightning Charging Cable,1,14.95,2019-02-01 19:01:00,838 Cedar St, San Francisco,CA,94016 +159907,Macbook Pro Laptop,1,1700.0,2019-02-05 10:54:00,761 Jefferson St, Dallas,TX,75001 +159908,Apple Airpods Headphones,1,150.0,2019-02-17 11:31:00,431 Hickory St, Los Angeles,CA,90001 +159909,Apple Airpods Headphones,1,150.0,2019-02-24 18:05:00,202 Forest St, Atlanta,GA,30301 +159910,AA Batteries (4-pack),1,3.84,2019-02-16 00:17:00,916 Madison St, Los Angeles,CA,90001 +159911,Lightning Charging Cable,1,14.95,2019-02-01 22:20:00,620 10th St, San Francisco,CA,94016 +159912,27in FHD Monitor,1,149.99,2019-02-07 01:24:00,210 Lakeview St, San Francisco,CA,94016 +159913,Flatscreen TV,1,300.0,2019-02-03 17:03:00,156 14th St, Los Angeles,CA,90001 +159914,iPhone,1,700.0,2019-02-01 20:09:00,440 Maple St, Atlanta,GA,30301 +159915,20in Monitor,1,109.99,2019-02-11 19:30:00,459 Washington St, San Francisco,CA,94016 +159916,USB-C Charging Cable,1,11.95,2019-02-22 10:57:00,898 Madison St, Atlanta,GA,30301 +159917,Google Phone,1,600.0,2019-02-19 19:23:00,531 Forest St, Seattle,WA,98101 +159918,Lightning Charging Cable,1,14.95,2019-02-10 17:36:00,25 Main St, Los Angeles,CA,90001 +159919,USB-C Charging Cable,1,11.95,2019-02-14 14:22:00,680 Hill St, Portland,ME,04101 +159920,Apple Airpods Headphones,1,150.0,2019-02-20 10:20:00,589 6th St, New York City,NY,10001 +159921,ThinkPad Laptop,1,999.99,2019-02-03 03:01:00,794 Lake St, Los Angeles,CA,90001 +159922,Apple Airpods Headphones,1,150.0,2019-02-10 18:20:00,253 Forest St, Austin,TX,73301 +159923,AA Batteries (4-pack),1,3.84,2019-02-20 18:48:00,421 Chestnut St, San Francisco,CA,94016 +159924,AAA Batteries (4-pack),1,2.99,2019-02-24 09:46:00,779 Spruce St, Los Angeles,CA,90001 +159925,Bose SoundSport Headphones,1,99.99,2019-02-01 16:13:00,968 14th St, Atlanta,GA,30301 +159926,27in FHD Monitor,1,149.99,2019-02-04 09:49:00,311 Ridge St, Seattle,WA,98101 +159927,USB-C Charging Cable,1,11.95,2019-02-27 21:40:00,244 Meadow St, San Francisco,CA,94016 +159928,Lightning Charging Cable,1,14.95,2019-02-09 06:42:00,376 Church St, Los Angeles,CA,90001 +159929,AAA Batteries (4-pack),1,2.99,2019-02-13 20:08:00,320 Highland St, Portland,OR,97035 +159930,AA Batteries (4-pack),4,3.84,2019-02-13 20:43:00,72 Jackson St, Boston,MA,02215 +159931,Macbook Pro Laptop,1,1700.0,2019-02-20 09:35:00,346 Lake St, Dallas,TX,75001 +159932,Macbook Pro Laptop,1,1700.0,2019-02-03 15:50:00,375 Lincoln St, Portland,OR,97035 +159933,20in Monitor,1,109.99,2019-02-14 17:57:00,975 Chestnut St, Seattle,WA,98101 +159934,ThinkPad Laptop,1,999.99,2019-02-19 23:13:00,860 Hill St, San Francisco,CA,94016 +159935,AA Batteries (4-pack),1,3.84,2019-02-25 22:31:00,328 Cherry St, Los Angeles,CA,90001 +159936,Apple Airpods Headphones,1,150.0,2019-02-07 16:12:00,724 Main St, San Francisco,CA,94016 +159937,ThinkPad Laptop,1,999.99,2019-02-03 17:59:00,209 Cherry St, Los Angeles,CA,90001 +159938,AAA Batteries (4-pack),1,2.99,2019-02-16 18:26:00,839 Lakeview St, San Francisco,CA,94016 +159939,Wired Headphones,1,11.99,2019-02-02 08:00:00,568 Wilson St, San Francisco,CA,94016 +159940,Wired Headphones,1,11.99,2019-02-18 13:51:00,554 Willow St, San Francisco,CA,94016 +159941,AA Batteries (4-pack),1,3.84,2019-02-20 10:11:00,828 River St, Dallas,TX,75001 +159942,Apple Airpods Headphones,1,150.0,2019-02-17 13:00:00,90 5th St, Dallas,TX,75001 +159943,Apple Airpods Headphones,1,150.0,2019-02-09 06:40:00,497 Lakeview St, San Francisco,CA,94016 +159944,Lightning Charging Cable,1,14.95,2019-02-26 23:40:00,395 West St, San Francisco,CA,94016 +159945,AAA Batteries (4-pack),4,2.99,2019-02-08 14:14:00,535 Main St, New York City,NY,10001 +159946,Lightning Charging Cable,3,14.95,2019-02-02 10:06:00,585 Lincoln St, Los Angeles,CA,90001 +159947,AAA Batteries (4-pack),2,2.99,2019-02-20 09:13:00,99 8th St, Seattle,WA,98101 +159948,AAA Batteries (4-pack),2,2.99,2019-02-04 20:48:00,217 8th St, Boston,MA,02215 +159949,Google Phone,1,600.0,2019-02-24 12:21:00,851 West St, Atlanta,GA,30301 +159950,Lightning Charging Cable,1,14.95,2019-02-28 19:11:00,414 Meadow St, Seattle,WA,98101 +159951,Lightning Charging Cable,1,14.95,2019-02-15 13:09:00,715 Dogwood St, Atlanta,GA,30301 +159952,Google Phone,1,600.0,2019-02-02 14:11:00,18 10th St, San Francisco,CA,94016 +159952,USB-C Charging Cable,2,11.95,2019-02-02 14:11:00,18 10th St, San Francisco,CA,94016 +159953,USB-C Charging Cable,1,11.95,2019-02-17 08:33:00,245 6th St, Dallas,TX,75001 +159954,ThinkPad Laptop,1,999.99,2019-02-04 13:46:00,614 Lake St, Seattle,WA,98101 +159955,27in 4K Gaming Monitor,1,389.99,2019-02-12 06:48:00,777 Lake St, Los Angeles,CA,90001 +159956,AA Batteries (4-pack),1,3.84,2019-02-16 20:29:00,246 Lakeview St, Seattle,WA,98101 +159957,Apple Airpods Headphones,1,150.0,2019-02-27 10:25:00,868 Forest St, Dallas,TX,75001 +159958,Apple Airpods Headphones,1,150.0,2019-02-05 23:30:00,352 Meadow St, San Francisco,CA,94016 +159959,Lightning Charging Cable,1,14.95,2019-02-02 12:50:00,441 Jackson St, Austin,TX,73301 +159960,Vareebadd Phone,1,400.0,2019-02-11 12:42:00,783 4th St, San Francisco,CA,94016 +159961,34in Ultrawide Monitor,1,379.99,2019-02-25 23:44:00,555 Highland St, San Francisco,CA,94016 +159962,AA Batteries (4-pack),1,3.84,2019-02-02 21:45:00,974 Sunset St, San Francisco,CA,94016 +159963,AA Batteries (4-pack),1,3.84,2019-02-20 11:34:00,915 Lincoln St, San Francisco,CA,94016 +159964,20in Monitor,1,109.99,2019-02-21 21:31:00,265 Lakeview St, Austin,TX,73301 +159965,USB-C Charging Cable,2,11.95,2019-02-16 08:06:00,542 2nd St, Los Angeles,CA,90001 +159966,Wired Headphones,1,11.99,2019-02-10 11:17:00,191 Adams St, Los Angeles,CA,90001 +159967,34in Ultrawide Monitor,1,379.99,2019-02-22 19:32:00,942 Cherry St, Seattle,WA,98101 +159968,AA Batteries (4-pack),5,3.84,2019-02-24 21:34:00,666 12th St, San Francisco,CA,94016 +159969,Bose SoundSport Headphones,1,99.99,2019-02-28 09:33:00,137 Elm St, New York City,NY,10001 +159970,ThinkPad Laptop,1,999.99,2019-02-07 18:40:00,485 Washington St, Los Angeles,CA,90001 +159971,27in 4K Gaming Monitor,1,389.99,2019-02-11 22:47:00,520 Lake St, New York City,NY,10001 +159972,20in Monitor,1,109.99,2019-02-17 12:24:00,827 Ridge St, Los Angeles,CA,90001 +159973,AA Batteries (4-pack),1,3.84,2019-02-27 02:12:00,310 Lake St, Los Angeles,CA,90001 +159974,LG Dryer,1,600.0,2019-02-16 17:34:00,713 Center St, Portland,ME,04101 +159975,27in FHD Monitor,1,149.99,2019-02-09 23:53:00,59 5th St, San Francisco,CA,94016 +159976,27in 4K Gaming Monitor,1,389.99,2019-02-10 19:03:00,921 Elm St, San Francisco,CA,94016 +159977,Wired Headphones,1,11.99,2019-02-04 14:21:00,600 6th St, Seattle,WA,98101 +159978,Lightning Charging Cable,1,14.95,2019-02-07 12:08:00,374 Washington St, Austin,TX,73301 +159979,AAA Batteries (4-pack),1,2.99,2019-02-12 12:32:00,309 5th St, New York City,NY,10001 +159979,AA Batteries (4-pack),1,3.84,2019-02-12 12:32:00,309 5th St, New York City,NY,10001 +159980,Apple Airpods Headphones,1,150.0,2019-02-07 12:18:00,491 12th St, San Francisco,CA,94016 +159981,Lightning Charging Cable,1,14.95,2019-02-02 19:41:00,703 Lincoln St, Atlanta,GA,30301 +159982,Lightning Charging Cable,1,14.95,2019-02-27 10:59:00,831 Madison St, Los Angeles,CA,90001 +159983,Apple Airpods Headphones,1,150.0,2019-02-09 20:55:00,813 Jefferson St, San Francisco,CA,94016 +159984,Apple Airpods Headphones,1,150.0,2019-02-06 13:13:00,670 11th St, Portland,OR,97035 +159985,USB-C Charging Cable,1,11.95,2019-02-12 10:36:00,59 Walnut St, New York City,NY,10001 +159986,27in FHD Monitor,1,149.99,2019-02-21 17:15:00,398 Meadow St, Los Angeles,CA,90001 +159987,USB-C Charging Cable,1,11.95,2019-02-20 15:11:00,224 1st St, Portland,OR,97035 +159988,AAA Batteries (4-pack),1,2.99,2019-02-20 19:25:00,811 Madison St, Austin,TX,73301 +159989,Flatscreen TV,1,300.0,2019-02-10 09:47:00,239 Adams St, Boston,MA,02215 +159990,Lightning Charging Cable,1,14.95,2019-02-16 05:23:00,111 Elm St, Atlanta,GA,30301 +159991,AAA Batteries (4-pack),1,2.99,2019-02-06 20:04:00,298 10th St, Los Angeles,CA,90001 +159992,Apple Airpods Headphones,1,150.0,2019-02-18 04:49:00,814 Wilson St, New York City,NY,10001 +159993,AAA Batteries (4-pack),1,2.99,2019-02-23 23:24:00,903 Forest St, Seattle,WA,98101 +159994,iPhone,1,700.0,2019-02-06 21:27:00,624 Lake St, Austin,TX,73301 +159995,Bose SoundSport Headphones,1,99.99,2019-02-11 18:17:00,195 Jefferson St, Los Angeles,CA,90001 +159996,Wired Headphones,1,11.99,2019-02-10 15:47:00,315 2nd St, Los Angeles,CA,90001 +159997,Bose SoundSport Headphones,1,99.99,2019-02-11 21:51:00,941 Jefferson St, Seattle,WA,98101 +159998,Lightning Charging Cable,1,14.95,2019-02-08 08:05:00,757 Maple St, Portland,OR,97035 +159999,27in FHD Monitor,1,149.99,2019-02-28 11:27:00,377 Maple St, New York City,NY,10001 +160000,Wired Headphones,1,11.99,2019-02-03 23:13:00,870 6th St, Los Angeles,CA,90001 +160001,AAA Batteries (4-pack),1,2.99,2019-02-03 07:27:00,967 Hill St, Los Angeles,CA,90001 +160002,AAA Batteries (4-pack),1,2.99,2019-02-16 07:11:00,291 Maple St, Atlanta,GA,30301 +160003,AAA Batteries (4-pack),1,2.99,2019-02-28 22:55:00,352 7th St, Portland,OR,97035 +160004,Bose SoundSport Headphones,1,99.99,2019-02-27 22:52:00,543 Sunset St, San Francisco,CA,94016 +160005,Lightning Charging Cable,1,14.95,2019-02-03 12:23:00,985 West St, Austin,TX,73301 +160006,34in Ultrawide Monitor,1,379.99,2019-02-05 20:54:00,974 Lakeview St, Los Angeles,CA,90001 +160007,AA Batteries (4-pack),1,3.84,2019-02-20 13:42:00,635 Highland St, Atlanta,GA,30301 +160008,USB-C Charging Cable,2,11.95,2019-02-10 00:09:00,70 Center St, Atlanta,GA,30301 +160009,USB-C Charging Cable,1,11.95,2019-02-05 09:51:00,507 Washington St, Portland,ME,04101 +160010,AA Batteries (4-pack),1,3.84,2019-02-15 10:23:00,358 Dogwood St, San Francisco,CA,94016 +160011,USB-C Charging Cable,2,11.95,2019-02-12 22:02:00,578 6th St, Los Angeles,CA,90001 +160012,Lightning Charging Cable,1,14.95,2019-02-07 15:50:00,975 Johnson St, Dallas,TX,75001 +160013,27in 4K Gaming Monitor,1,389.99,2019-02-13 14:41:00,914 Walnut St, Los Angeles,CA,90001 +160014,USB-C Charging Cable,1,11.95,2019-02-11 09:27:00,953 1st St, Boston,MA,02215 +160015,Flatscreen TV,1,300.0,2019-02-11 20:24:00,47 7th St, Atlanta,GA,30301 +160016,34in Ultrawide Monitor,1,379.99,2019-02-06 16:16:00,925 4th St, Dallas,TX,75001 +160017,34in Ultrawide Monitor,1,379.99,2019-02-25 15:43:00,356 Spruce St, Boston,MA,02215 +160018,AAA Batteries (4-pack),2,2.99,2019-02-22 01:23:00,516 9th St, San Francisco,CA,94016 +160019,ThinkPad Laptop,1,999.99,2019-02-11 11:24:00,117 Chestnut St, Portland,OR,97035 +160020,AAA Batteries (4-pack),2,2.99,2019-02-25 02:03:00,604 Center St, New York City,NY,10001 +160021,iPhone,1,700.0,2019-02-19 18:36:00,722 Center St, Seattle,WA,98101 +160021,Wired Headphones,1,11.99,2019-02-19 18:36:00,722 Center St, Seattle,WA,98101 +160022,AAA Batteries (4-pack),2,2.99,2019-02-06 18:03:00,994 Madison St, Los Angeles,CA,90001 +160023,AAA Batteries (4-pack),1,2.99,2019-02-15 12:01:00,163 Main St, Los Angeles,CA,90001 +160024,USB-C Charging Cable,1,11.95,2019-02-15 22:44:00,124 10th St, Atlanta,GA,30301 +160025,Lightning Charging Cable,1,14.95,2019-02-10 08:00:00,596 Elm St, New York City,NY,10001 +160026,Apple Airpods Headphones,1,150.0,2019-02-16 12:13:00,786 Adams St, New York City,NY,10001 +160027,LG Dryer,1,600.0,2019-02-22 13:32:00,885 North St, Dallas,TX,75001 +160028,Wired Headphones,1,11.99,2019-02-24 21:49:00,511 10th St, Seattle,WA,98101 +160029,Google Phone,1,600.0,2019-02-02 12:36:00,60 Washington St, New York City,NY,10001 +160030,27in FHD Monitor,1,149.99,2019-02-19 19:36:00,38 Madison St, Dallas,TX,75001 +160031,20in Monitor,1,109.99,2019-02-17 11:58:00,994 Willow St, Atlanta,GA,30301 +160032,Apple Airpods Headphones,1,150.0,2019-02-02 11:50:00,8 6th St, Austin,TX,73301 +160033,Flatscreen TV,1,300.0,2019-02-09 14:57:00,332 6th St, San Francisco,CA,94016 +160034,Wired Headphones,1,11.99,2019-02-23 15:34:00,584 Maple St, New York City,NY,10001 +160035,USB-C Charging Cable,1,11.95,2019-02-26 15:33:00,478 Center St, San Francisco,CA,94016 +160036,Flatscreen TV,1,300.0,2019-02-06 17:25:00,960 Jackson St, Los Angeles,CA,90001 +160037,AAA Batteries (4-pack),1,2.99,2019-02-01 10:26:00,360 Jackson St, Dallas,TX,75001 +160038,Wired Headphones,1,11.99,2019-02-09 08:40:00,732 Highland St, San Francisco,CA,94016 +160039,Lightning Charging Cable,1,14.95,2019-02-21 03:00:00,930 9th St, Atlanta,GA,30301 +160040,Vareebadd Phone,1,400.0,2019-02-10 11:39:00,893 Ridge St, Los Angeles,CA,90001 +160041,USB-C Charging Cable,2,11.95,2019-02-21 22:58:00,616 Hill St, San Francisco,CA,94016 +160042,Google Phone,1,600.0,2019-02-20 10:38:00,704 Lakeview St, Boston,MA,02215 +160043,34in Ultrawide Monitor,1,379.99,2019-02-13 19:26:00,102 14th St, Boston,MA,02215 +160044,27in FHD Monitor,1,149.99,2019-02-07 15:03:00,894 4th St, San Francisco,CA,94016 +160045,Wired Headphones,1,11.99,2019-02-28 08:16:00,776 Adams St, San Francisco,CA,94016 +160046,27in 4K Gaming Monitor,1,389.99,2019-02-17 09:36:00,210 South St, San Francisco,CA,94016 +160047,USB-C Charging Cable,1,11.95,2019-02-03 11:26:00,460 9th St, New York City,NY,10001 +160048,Bose SoundSport Headphones,1,99.99,2019-02-08 17:40:00,895 Maple St, Austin,TX,73301 +160049,AAA Batteries (4-pack),1,2.99,2019-02-25 16:33:00,60 South St, San Francisco,CA,94016 +160050,Flatscreen TV,1,300.0,2019-02-22 14:43:00,700 Wilson St, San Francisco,CA,94016 +160051,27in FHD Monitor,1,149.99,2019-02-05 15:55:00,536 South St, San Francisco,CA,94016 +160052,AA Batteries (4-pack),1,3.84,2019-02-02 08:31:00,114 6th St, Austin,TX,73301 +160053,Bose SoundSport Headphones,1,99.99,2019-02-22 20:37:00,785 1st St, Los Angeles,CA,90001 +160054,34in Ultrawide Monitor,1,379.99,2019-02-04 13:18:00,825 Meadow St, Portland,OR,97035 +160055,Google Phone,1,600.0,2019-02-08 16:27:00,93 11th St, San Francisco,CA,94016 +160055,USB-C Charging Cable,1,11.95,2019-02-08 16:27:00,93 11th St, San Francisco,CA,94016 +160055,Wired Headphones,1,11.99,2019-02-08 16:27:00,93 11th St, San Francisco,CA,94016 +160056,USB-C Charging Cable,1,11.95,2019-02-28 15:55:00,743 Hickory St, Seattle,WA,98101 +160057,AA Batteries (4-pack),3,3.84,2019-02-13 20:24:00,430 12th St, San Francisco,CA,94016 +160058,AAA Batteries (4-pack),1,2.99,2019-02-19 14:56:00,301 Walnut St, Austin,TX,73301 +160059,Wired Headphones,1,11.99,2019-02-07 16:10:00,593 Cherry St, Los Angeles,CA,90001 +160060,Apple Airpods Headphones,1,150.0,2019-02-06 17:11:00,99 North St, San Francisco,CA,94016 +160061,AA Batteries (4-pack),1,3.84,2019-02-02 11:44:00,143 Hickory St, San Francisco,CA,94016 +160062,Lightning Charging Cable,1,14.95,2019-02-01 13:26:00,488 Main St, Boston,MA,02215 +160063,Apple Airpods Headphones,1,150.0,2019-02-12 09:12:00,233 Church St, San Francisco,CA,94016 +160064,Lightning Charging Cable,1,14.95,2019-02-02 23:35:00,989 Wilson St, Seattle,WA,98101 +160065,Wired Headphones,1,11.99,2019-02-19 14:21:00,466 Hill St, Los Angeles,CA,90001 +160066,Lightning Charging Cable,1,14.95,2019-02-28 10:05:00,750 Spruce St, Los Angeles,CA,90001 +160067,AAA Batteries (4-pack),2,2.99,2019-02-22 02:01:00,477 14th St, Los Angeles,CA,90001 +160068,AAA Batteries (4-pack),1,2.99,2019-02-06 19:58:00,592 Lake St, San Francisco,CA,94016 +160069,AA Batteries (4-pack),1,3.84,2019-02-05 09:19:00,713 Walnut St, Austin,TX,73301 +160070,27in FHD Monitor,2,149.99,2019-02-05 23:02:00,941 Dogwood St, Los Angeles,CA,90001 +160071,Wired Headphones,1,11.99,2019-02-20 20:25:00,358 Chestnut St, San Francisco,CA,94016 +160072,27in 4K Gaming Monitor,1,389.99,2019-02-15 14:19:00,687 Lakeview St, Los Angeles,CA,90001 +160073,34in Ultrawide Monitor,1,379.99,2019-02-08 22:21:00,486 Dogwood St, New York City,NY,10001 +160074,Bose SoundSport Headphones,1,99.99,2019-02-27 16:08:00,588 Adams St, Los Angeles,CA,90001 +160075,Bose SoundSport Headphones,1,99.99,2019-02-09 00:50:00,922 8th St, San Francisco,CA,94016 +160076,Apple Airpods Headphones,1,150.0,2019-02-12 01:10:00,534 Wilson St, Atlanta,GA,30301 +160077,AA Batteries (4-pack),1,3.84,2019-02-11 16:46:00,469 Lake St, San Francisco,CA,94016 +160078,USB-C Charging Cable,1,11.95,2019-02-21 19:36:00,51 13th St, Atlanta,GA,30301 +160079,Lightning Charging Cable,1,14.95,2019-02-15 22:18:00,411 Dogwood St, Los Angeles,CA,90001 +160080,Bose SoundSport Headphones,1,99.99,2019-02-02 15:55:00,209 7th St, San Francisco,CA,94016 +160081,USB-C Charging Cable,1,11.95,2019-02-18 12:47:00,600 13th St, San Francisco,CA,94016 +160082,Wired Headphones,1,11.99,2019-02-16 11:15:00,328 Dogwood St, Atlanta,GA,30301 +160083,27in FHD Monitor,1,149.99,2019-02-14 12:30:00,850 Cedar St, Los Angeles,CA,90001 +160084,Flatscreen TV,1,300.0,2019-02-09 16:41:00,374 Cherry St, Boston,MA,02215 +160085,AAA Batteries (4-pack),2,2.99,2019-02-22 18:29:00,889 12th St, Los Angeles,CA,90001 +160086,Wired Headphones,1,11.99,2019-02-03 18:09:00,694 West St, Boston,MA,02215 +160087,Wired Headphones,1,11.99,2019-02-12 21:34:00,403 Sunset St, Austin,TX,73301 +160088,USB-C Charging Cable,1,11.95,2019-02-18 14:43:00,506 Hill St, Dallas,TX,75001 +160089,Apple Airpods Headphones,1,150.0,2019-02-03 22:38:00,595 9th St, Dallas,TX,75001 +160090,USB-C Charging Cable,1,11.95,2019-02-02 07:28:00,982 Pine St, San Francisco,CA,94016 +160091,USB-C Charging Cable,2,11.95,2019-02-15 14:53:00,629 Sunset St, Boston,MA,02215 +160092,USB-C Charging Cable,1,11.95,2019-02-14 18:22:00,678 Lincoln St, San Francisco,CA,94016 +160093,iPhone,1,700.0,2019-02-01 16:51:00,563 Lincoln St, Los Angeles,CA,90001 +160094,27in 4K Gaming Monitor,1,389.99,2019-02-12 14:50:00,626 Madison St, Dallas,TX,75001 +160095,Lightning Charging Cable,1,14.95,2019-02-15 09:49:00,103 Spruce St, Boston,MA,02215 +160096,Apple Airpods Headphones,1,150.0,2019-02-12 11:44:00,825 13th St, Los Angeles,CA,90001 +160097,20in Monitor,1,109.99,2019-02-09 11:05:00,964 Lakeview St, Los Angeles,CA,90001 +160098,AAA Batteries (4-pack),1,2.99,2019-02-01 17:42:00,284 Sunset St, San Francisco,CA,94016 +160099,USB-C Charging Cable,1,11.95,2019-02-18 21:34:00,163 12th St, Portland,ME,04101 +160100,Lightning Charging Cable,1,14.95,2019-02-11 09:14:00,94 Church St, Austin,TX,73301 +160101,AA Batteries (4-pack),1,3.84,2019-02-17 21:20:00,743 Lakeview St, Dallas,TX,75001 +160102,Flatscreen TV,1,300.0,2019-02-02 10:16:00,948 5th St, New York City,NY,10001 +160103,Apple Airpods Headphones,1,150.0,2019-02-10 14:54:00,839 9th St, San Francisco,CA,94016 +160104,Wired Headphones,1,11.99,2019-02-03 17:36:00,870 North St, New York City,NY,10001 +160105,Apple Airpods Headphones,1,150.0,2019-02-20 13:22:00,281 Lake St, Seattle,WA,98101 +160106,Bose SoundSport Headphones,1,99.99,2019-02-11 18:48:00,217 10th St, San Francisco,CA,94016 +160107,34in Ultrawide Monitor,1,379.99,2019-02-06 11:12:00,860 Chestnut St, San Francisco,CA,94016 +160108,27in FHD Monitor,1,149.99,2019-02-01 18:25:00,786 Adams St, Seattle,WA,98101 +160109,Macbook Pro Laptop,1,1700.0,2019-02-16 13:31:00,151 Hill St, New York City,NY,10001 +160110,Flatscreen TV,1,300.0,2019-02-03 15:41:00,531 Jackson St, Boston,MA,02215 +160111,USB-C Charging Cable,1,11.95,2019-02-08 19:46:00,138 11th St, Portland,OR,97035 +160112,AA Batteries (4-pack),2,3.84,2019-02-24 23:08:00,621 Cedar St, Los Angeles,CA,90001 +160113,Apple Airpods Headphones,1,150.0,2019-02-18 16:56:00,643 4th St, Dallas,TX,75001 +160114,USB-C Charging Cable,1,11.95,2019-02-17 15:13:00,867 2nd St, Portland,OR,97035 +160115,Lightning Charging Cable,1,14.95,2019-02-24 11:08:00,199 Wilson St, Los Angeles,CA,90001 +160116,AA Batteries (4-pack),1,3.84,2019-02-25 17:38:00,653 6th St, Portland,OR,97035 +160117,Wired Headphones,1,11.99,2019-02-23 14:11:00,993 Pine St, Los Angeles,CA,90001 +160118,Lightning Charging Cable,1,14.95,2019-02-10 08:49:00,541 Hickory St, Seattle,WA,98101 +160119,27in 4K Gaming Monitor,1,389.99,2019-02-09 17:43:00,566 Sunset St, Boston,MA,02215 +160120,Bose SoundSport Headphones,1,99.99,2019-02-05 11:50:00,871 10th St, San Francisco,CA,94016 +160121,Wired Headphones,1,11.99,2019-02-13 07:14:00,815 Chestnut St, San Francisco,CA,94016 +160122,Lightning Charging Cable,1,14.95,2019-02-21 10:59:00,42 4th St, San Francisco,CA,94016 +160123,Wired Headphones,1,11.99,2019-02-01 13:50:00,901 Walnut St, New York City,NY,10001 +160124,AAA Batteries (4-pack),1,2.99,2019-02-11 18:25:00,716 Willow St, San Francisco,CA,94016 +160125,Lightning Charging Cable,1,14.95,2019-02-04 19:24:00,168 13th St, Los Angeles,CA,90001 +160126,AA Batteries (4-pack),1,3.84,2019-02-28 10:12:00,256 Highland St, Austin,TX,73301 +160127,27in FHD Monitor,1,149.99,2019-02-17 22:30:00,112 Church St, Atlanta,GA,30301 +160128,iPhone,1,700.0,2019-02-24 12:14:00,33 Willow St, Boston,MA,02215 +160129,34in Ultrawide Monitor,1,379.99,2019-02-15 13:03:00,47 11th St, Seattle,WA,98101 +160130,AAA Batteries (4-pack),1,2.99,2019-02-28 17:13:00,654 14th St, Los Angeles,CA,90001 +160131,Lightning Charging Cable,1,14.95,2019-02-27 22:28:00,498 Wilson St, New York City,NY,10001 +160132,Macbook Pro Laptop,1,1700.0,2019-02-11 09:35:00,289 7th St, San Francisco,CA,94016 +160133,Lightning Charging Cable,1,14.95,2019-02-08 20:54:00,917 Lincoln St, Los Angeles,CA,90001 +160134,Bose SoundSport Headphones,1,99.99,2019-02-02 08:25:00,6 12th St, New York City,NY,10001 +160135,AA Batteries (4-pack),1,3.84,2019-02-13 08:53:00,633 4th St, Atlanta,GA,30301 +160136,Wired Headphones,1,11.99,2019-02-24 14:28:00,212 Highland St, Seattle,WA,98101 +160137,Bose SoundSport Headphones,1,99.99,2019-02-16 21:29:00,840 Hickory St, San Francisco,CA,94016 +160138,AA Batteries (4-pack),1,3.84,2019-02-24 09:27:00,333 Lincoln St, New York City,NY,10001 +160139,AA Batteries (4-pack),1,3.84,2019-02-22 16:46:00,36 2nd St, Seattle,WA,98101 +160140,27in 4K Gaming Monitor,1,389.99,2019-02-08 09:25:00,60 Walnut St, Seattle,WA,98101 +160141,Flatscreen TV,1,300.0,2019-02-17 20:05:00,373 1st St, San Francisco,CA,94016 +160142,USB-C Charging Cable,2,11.95,2019-02-26 18:40:00,447 12th St, Boston,MA,02215 +160143,Apple Airpods Headphones,1,150.0,2019-02-24 18:52:00,885 Walnut St, New York City,NY,10001 +160144,34in Ultrawide Monitor,1,379.99,2019-02-24 18:16:00,150 4th St, Dallas,TX,75001 +160145,AAA Batteries (4-pack),1,2.99,2019-02-09 18:20:00,497 8th St, New York City,NY,10001 +160146,AA Batteries (4-pack),1,3.84,2019-02-28 08:34:00,875 Dogwood St, Los Angeles,CA,90001 +160147,Lightning Charging Cable,1,14.95,2019-02-15 17:39:00,467 11th St, Portland,ME,04101 +160148,27in 4K Gaming Monitor,1,389.99,2019-02-04 01:09:00,356 Spruce St, Austin,TX,73301 +160149,USB-C Charging Cable,3,11.95,2019-02-01 22:02:00,319 14th St, San Francisco,CA,94016 +160150,AA Batteries (4-pack),1,3.84,2019-02-05 13:33:00,857 Hill St, Atlanta,GA,30301 +160151,AAA Batteries (4-pack),1,2.99,2019-02-22 14:09:00,569 Center St, Seattle,WA,98101 +160152,AAA Batteries (4-pack),1,2.99,2019-02-20 21:12:00,917 Chestnut St, San Francisco,CA,94016 +160153,Wired Headphones,1,11.99,2019-02-03 09:38:00,72 2nd St, San Francisco,CA,94016 +160154,iPhone,1,700.0,2019-02-05 20:45:00,970 10th St, Los Angeles,CA,90001 +160155,USB-C Charging Cable,1,11.95,2019-02-15 17:55:00,882 10th St, Los Angeles,CA,90001 +160156,AAA Batteries (4-pack),2,2.99,2019-02-14 21:40:00,296 Cedar St, San Francisco,CA,94016 +160157,Bose SoundSport Headphones,1,99.99,2019-02-21 21:15:00,832 12th St, Seattle,WA,98101 +160158,Apple Airpods Headphones,1,150.0,2019-02-07 20:40:00,278 8th St, New York City,NY,10001 +160159,Apple Airpods Headphones,1,150.0,2019-02-11 17:37:00,285 4th St, Austin,TX,73301 +160160,27in 4K Gaming Monitor,1,389.99,2019-02-01 21:17:00,809 Park St, Los Angeles,CA,90001 +160161,AAA Batteries (4-pack),1,2.99,2019-02-06 13:27:00,108 4th St, Los Angeles,CA,90001 +160162,AA Batteries (4-pack),2,3.84,2019-02-10 16:55:00,814 7th St, Portland,OR,97035 +160163,ThinkPad Laptop,1,999.99,2019-02-12 14:35:00,273 Cedar St, San Francisco,CA,94016 +160164,27in 4K Gaming Monitor,1,389.99,2019-02-04 07:12:00,192 Madison St, Seattle,WA,98101 +160165,USB-C Charging Cable,1,11.95,2019-02-17 15:38:00,213 Church St, Los Angeles,CA,90001 +160166,USB-C Charging Cable,1,11.95,2019-02-16 07:44:00,534 1st St, New York City,NY,10001 +160167,AA Batteries (4-pack),1,3.84,2019-02-06 12:18:00,807 9th St, San Francisco,CA,94016 +160168,Wired Headphones,1,11.99,2019-02-23 14:55:00,109 Johnson St, Boston,MA,02215 +160169,Lightning Charging Cable,1,14.95,2019-02-21 17:58:00,291 West St, New York City,NY,10001 +160170,AA Batteries (4-pack),1,3.84,2019-02-25 20:42:00,915 Lake St, Atlanta,GA,30301 +160171,AAA Batteries (4-pack),2,2.99,2019-02-13 16:55:00,186 Cherry St, Boston,MA,02215 +160172,Bose SoundSport Headphones,1,99.99,2019-02-03 09:46:00,966 Lake St, Los Angeles,CA,90001 +160173,27in FHD Monitor,1,149.99,2019-02-14 12:52:00,443 10th St, Boston,MA,02215 +160174,Wired Headphones,1,11.99,2019-02-08 21:15:00,998 13th St, Portland,OR,97035 +160175,Bose SoundSport Headphones,1,99.99,2019-02-16 19:13:00,81 1st St, Atlanta,GA,30301 +160176,27in FHD Monitor,1,149.99,2019-02-04 00:25:00,481 4th St, San Francisco,CA,94016 +160177,27in 4K Gaming Monitor,1,389.99,2019-02-28 21:10:00,912 Sunset St, Austin,TX,73301 +160178,20in Monitor,1,109.99,2019-02-17 19:43:00,773 Jefferson St, Los Angeles,CA,90001 +160179,Google Phone,1,600.0,2019-02-26 08:44:00,156 11th St, Boston,MA,02215 +160179,USB-C Charging Cable,1,11.95,2019-02-26 08:44:00,156 11th St, Boston,MA,02215 +160180,Wired Headphones,1,11.99,2019-02-15 15:36:00,670 Lincoln St, San Francisco,CA,94016 +160181,Flatscreen TV,1,300.0,2019-02-23 20:07:00,36 Jefferson St, Seattle,WA,98101 +160182,USB-C Charging Cable,1,11.95,2019-02-08 18:08:00,532 2nd St, Austin,TX,73301 +160183,Wired Headphones,1,11.99,2019-02-01 19:50:00,875 Adams St, Los Angeles,CA,90001 +160184,iPhone,1,700.0,2019-02-08 20:36:00,20 Lincoln St, Atlanta,GA,30301 +160185,Bose SoundSport Headphones,1,99.99,2019-02-25 17:53:00,383 7th St, New York City,NY,10001 +160186,AA Batteries (4-pack),1,3.84,2019-02-10 15:26:00,414 10th St, Seattle,WA,98101 +160187,AAA Batteries (4-pack),1,2.99,2019-02-13 09:11:00,261 Main St, Portland,OR,97035 +160188,Bose SoundSport Headphones,1,99.99,2019-02-13 00:49:00,395 9th St, Los Angeles,CA,90001 +160189,Lightning Charging Cable,1,14.95,2019-02-05 22:29:00,572 Maple St, Dallas,TX,75001 +160190,USB-C Charging Cable,1,11.95,2019-02-25 21:42:00,478 River St, San Francisco,CA,94016 +160191,Lightning Charging Cable,1,14.95,2019-02-01 10:36:00,123 Dogwood St, Portland,OR,97035 +160192,Apple Airpods Headphones,1,150.0,2019-02-18 21:26:00,19 7th St, Dallas,TX,75001 +160193,20in Monitor,1,109.99,2019-02-27 19:01:00,259 North St, San Francisco,CA,94016 +160194,Bose SoundSport Headphones,1,99.99,2019-02-20 10:54:00,617 Dogwood St, San Francisco,CA,94016 +160195,Google Phone,1,600.0,2019-02-09 18:28:00,109 1st St, Portland,OR,97035 +160196,USB-C Charging Cable,1,11.95,2019-02-18 21:52:00,57 Center St, San Francisco,CA,94016 +160197,27in 4K Gaming Monitor,1,389.99,2019-02-26 18:12:00,297 Cherry St, San Francisco,CA,94016 +160198,Apple Airpods Headphones,1,150.0,2019-03-01 00:29:00,894 Cedar St, San Francisco,CA,94016 +160199,34in Ultrawide Monitor,1,379.99,2019-02-20 10:07:00,813 4th St, New York City,NY,10001 +160200,Bose SoundSport Headphones,1,99.99,2019-02-28 13:11:00,862 Church St, New York City,NY,10001 +160201,AA Batteries (4-pack),1,3.84,2019-02-07 21:18:00,422 Main St, San Francisco,CA,94016 +160202,Wired Headphones,1,11.99,2019-02-09 18:34:00,832 1st St, Boston,MA,02215 +160203,AAA Batteries (4-pack),4,2.99,2019-02-11 09:15:00,436 West St, Seattle,WA,98101 +160204,Bose SoundSport Headphones,1,99.99,2019-03-01 01:04:00,889 2nd St, Atlanta,GA,30301 +160205,AA Batteries (4-pack),1,3.84,2019-02-02 20:39:00,178 Ridge St, Los Angeles,CA,90001 +160206,34in Ultrawide Monitor,1,379.99,2019-02-13 11:04:00,62 Elm St, New York City,NY,10001 +160207,AAA Batteries (4-pack),1,2.99,2019-02-27 10:40:00,382 Meadow St, San Francisco,CA,94016 +160208,Lightning Charging Cable,1,14.95,2019-02-28 07:18:00,845 Hill St, San Francisco,CA,94016 +160209,USB-C Charging Cable,1,11.95,2019-02-10 14:16:00,791 Park St, Boston,MA,02215 +160210,Apple Airpods Headphones,1,150.0,2019-02-14 19:02:00,266 Cherry St, Los Angeles,CA,90001 +160211,Apple Airpods Headphones,1,150.0,2019-02-05 18:41:00,678 Ridge St, New York City,NY,10001 +160212,Lightning Charging Cable,1,14.95,2019-02-15 22:57:00,757 Walnut St, New York City,NY,10001 +160213,iPhone,1,700.0,2019-02-24 20:50:00,857 2nd St, Dallas,TX,75001 +160214,20in Monitor,1,109.99,2019-02-22 17:31:00,615 4th St, San Francisco,CA,94016 +160215,USB-C Charging Cable,1,11.95,2019-02-02 21:29:00,106 River St, San Francisco,CA,94016 +160216,27in FHD Monitor,1,149.99,2019-02-20 01:33:00,524 1st St, Seattle,WA,98101 +160217,Apple Airpods Headphones,1,150.0,2019-02-10 14:30:00,614 Ridge St, New York City,NY,10001 +160218,Apple Airpods Headphones,1,150.0,2019-02-15 21:11:00,757 Chestnut St, Dallas,TX,75001 +160219,Lightning Charging Cable,1,14.95,2019-02-24 19:24:00,739 Lake St, Austin,TX,73301 +160220,Wired Headphones,1,11.99,2019-02-28 19:54:00,535 West St, Atlanta,GA,30301 +160221,Google Phone,1,600.0,2019-02-12 21:51:00,758 River St, New York City,NY,10001 +160222,Lightning Charging Cable,1,14.95,2019-02-04 22:20:00,844 Johnson St, Dallas,TX,75001 +160223,27in FHD Monitor,1,149.99,2019-02-02 14:09:00,894 Cedar St, San Francisco,CA,94016 +160224,Google Phone,1,600.0,2019-02-21 13:11:00,168 Walnut St, Dallas,TX,75001 +160225,iPhone,1,700.0,2019-02-09 21:00:00,716 7th St, Boston,MA,02215 +160226,ThinkPad Laptop,1,999.99,2019-02-02 13:30:00,700 River St, San Francisco,CA,94016 +160227,USB-C Charging Cable,1,11.95,2019-02-19 15:25:00,326 4th St, Los Angeles,CA,90001 +160228,USB-C Charging Cable,1,11.95,2019-02-04 16:06:00,854 Lake St, San Francisco,CA,94016 +160229,Lightning Charging Cable,1,14.95,2019-02-27 21:04:00,260 14th St, Los Angeles,CA,90001 +160230,Bose SoundSport Headphones,1,99.99,2019-02-04 17:43:00,708 Lake St, San Francisco,CA,94016 +160231,ThinkPad Laptop,1,999.99,2019-02-24 11:16:00,679 6th St, San Francisco,CA,94016 +160232,20in Monitor,1,109.99,2019-02-04 13:41:00,786 Church St, San Francisco,CA,94016 +160233,Apple Airpods Headphones,1,150.0,2019-02-28 00:30:00,300 13th St, Los Angeles,CA,90001 +160234,27in FHD Monitor,1,149.99,2019-02-26 17:36:00,861 Spruce St, New York City,NY,10001 +160235,Lightning Charging Cable,1,14.95,2019-02-13 17:26:00,142 Washington St, San Francisco,CA,94016 +160236,AA Batteries (4-pack),1,3.84,2019-02-14 14:52:00,838 Meadow St, New York City,NY,10001 +160237,Google Phone,1,600.0,2019-02-10 09:23:00,610 Washington St, Los Angeles,CA,90001 +160238,AAA Batteries (4-pack),1,2.99,2019-03-01 02:08:00,147 Main St, Boston,MA,02215 +160239,Wired Headphones,1,11.99,2019-02-20 12:33:00,518 Adams St, Atlanta,GA,30301 +160240,34in Ultrawide Monitor,1,379.99,2019-02-16 10:36:00,414 River St, San Francisco,CA,94016 +160241,AAA Batteries (4-pack),1,2.99,2019-02-13 15:44:00,781 Washington St, San Francisco,CA,94016 +160242,Wired Headphones,1,11.99,2019-02-25 15:47:00,264 Willow St, Boston,MA,02215 +160243,AA Batteries (4-pack),1,3.84,2019-02-07 12:20:00,747 Chestnut St, Dallas,TX,75001 +160244,Lightning Charging Cable,1,14.95,2019-02-14 17:41:00,403 Jackson St, Seattle,WA,98101 +160245,Apple Airpods Headphones,1,150.0,2019-02-13 22:07:00,827 North St, Boston,MA,02215 +160246,Lightning Charging Cable,1,14.95,2019-02-22 11:01:00,374 River St, Dallas,TX,75001 +160247,ThinkPad Laptop,1,999.99,2019-02-26 16:03:00,610 North St, Dallas,TX,75001 +160248,20in Monitor,1,109.99,2019-02-05 11:32:00,954 Walnut St, New York City,NY,10001 +160249,Google Phone,1,600.0,2019-02-20 14:05:00,371 Lakeview St, Boston,MA,02215 +160250,Google Phone,1,600.0,2019-02-01 14:40:00,556 9th St, Seattle,WA,98101 +160251,Bose SoundSport Headphones,1,99.99,2019-02-22 21:23:00,728 Washington St, San Francisco,CA,94016 +160252,Bose SoundSport Headphones,1,99.99,2019-02-09 22:39:00,861 Park St, Los Angeles,CA,90001 +160253,USB-C Charging Cable,2,11.95,2019-02-26 09:32:00,99 Walnut St, Los Angeles,CA,90001 +160254,Bose SoundSport Headphones,1,99.99,2019-02-28 19:50:00,342 10th St, New York City,NY,10001 +160255,Apple Airpods Headphones,1,150.0,2019-02-11 16:01:00,176 9th St, Austin,TX,73301 +160256,27in FHD Monitor,1,149.99,2019-02-01 22:51:00,779 14th St, San Francisco,CA,94016 +160257,27in 4K Gaming Monitor,1,389.99,2019-02-16 23:59:00,639 Walnut St, Los Angeles,CA,90001 +160258,Flatscreen TV,1,300.0,2019-02-28 09:45:00,857 Meadow St, New York City,NY,10001 +160259,Wired Headphones,1,11.99,2019-02-28 18:43:00,846 Hill St, Seattle,WA,98101 +160260,Google Phone,1,600.0,2019-02-13 18:58:00,738 Jefferson St, Los Angeles,CA,90001 +160261,Flatscreen TV,1,300.0,2019-02-10 17:09:00,333 Hill St, Boston,MA,02215 +160262,USB-C Charging Cable,1,11.95,2019-02-23 13:06:00,808 Church St, San Francisco,CA,94016 +160263,20in Monitor,1,109.99,2019-02-07 13:00:00,154 Johnson St, Boston,MA,02215 +160264,Vareebadd Phone,1,400.0,2019-02-26 17:09:00,675 14th St, Austin,TX,73301 +160264,USB-C Charging Cable,1,11.95,2019-02-26 17:09:00,675 14th St, Austin,TX,73301 +160265,USB-C Charging Cable,1,11.95,2019-02-27 21:09:00,454 Hill St, San Francisco,CA,94016 +160266,Wired Headphones,1,11.99,2019-02-01 18:58:00,363 Center St, Los Angeles,CA,90001 +160267,USB-C Charging Cable,1,11.95,2019-02-17 14:32:00,123 Church St, Los Angeles,CA,90001 +160268,Bose SoundSport Headphones,1,99.99,2019-02-11 10:21:00,751 Cherry St, New York City,NY,10001 +160269,AAA Batteries (4-pack),2,2.99,2019-02-25 11:16:00,391 Walnut St, Portland,OR,97035 +160270,iPhone,1,700.0,2019-02-12 00:04:00,420 4th St, Los Angeles,CA,90001 +160271,AA Batteries (4-pack),1,3.84,2019-02-21 09:17:00,585 Spruce St, Atlanta,GA,30301 +160272,27in 4K Gaming Monitor,1,389.99,2019-02-10 15:50:00,662 Adams St, Los Angeles,CA,90001 +160273,AA Batteries (4-pack),1,3.84,2019-02-06 14:52:00,335 Sunset St, Seattle,WA,98101 +160274,Bose SoundSport Headphones,1,99.99,2019-02-22 08:59:00,409 Maple St, New York City,NY,10001 +160275,Flatscreen TV,1,300.0,2019-02-07 22:33:00,459 Spruce St, Dallas,TX,75001 +160276,20in Monitor,1,109.99,2019-02-27 15:02:00,227 Jefferson St, Portland,OR,97035 +160277,27in FHD Monitor,1,149.99,2019-02-16 12:34:00,790 Johnson St, San Francisco,CA,94016 +160278,Apple Airpods Headphones,1,150.0,2019-02-03 17:03:00,300 Willow St, Boston,MA,02215 +160279,AA Batteries (4-pack),1,3.84,2019-02-26 14:43:00,122 Jackson St, San Francisco,CA,94016 +160280,Lightning Charging Cable,2,14.95,2019-02-26 13:20:00,150 Meadow St, Boston,MA,02215 +160281,Apple Airpods Headphones,1,150.0,2019-02-05 07:23:00,371 Cherry St, Boston,MA,02215 +160282,Lightning Charging Cable,1,14.95,2019-02-12 00:56:00,863 6th St, San Francisco,CA,94016 +160283,USB-C Charging Cable,1,11.95,2019-02-13 16:15:00,527 Lincoln St, San Francisco,CA,94016 +160284,Lightning Charging Cable,1,14.95,2019-02-28 10:49:00,875 12th St, Atlanta,GA,30301 +160285,Wired Headphones,1,11.99,2019-02-19 15:48:00,868 Forest St, Dallas,TX,75001 +160286,Lightning Charging Cable,1,14.95,2019-02-18 10:57:00,989 Cherry St, Dallas,TX,75001 +160287,AAA Batteries (4-pack),1,2.99,2019-02-08 20:43:00,371 Johnson St, San Francisco,CA,94016 +160288,USB-C Charging Cable,1,11.95,2019-02-06 20:34:00,234 River St, Boston,MA,02215 +160289,AA Batteries (4-pack),2,3.84,2019-02-23 17:54:00,830 5th St, Los Angeles,CA,90001 +160290,iPhone,1,700.0,2019-02-01 11:36:00,710 Jackson St, San Francisco,CA,94016 +160291,Lightning Charging Cable,1,14.95,2019-02-11 10:05:00,19 Dogwood St, Boston,MA,02215 +160292,Flatscreen TV,1,300.0,2019-02-19 11:23:00,866 Highland St, Atlanta,GA,30301 +160293,ThinkPad Laptop,1,999.99,2019-02-08 23:25:00,202 River St, San Francisco,CA,94016 +160294,AAA Batteries (4-pack),3,2.99,2019-02-13 12:43:00,145 14th St, San Francisco,CA,94016 +160295,AAA Batteries (4-pack),1,2.99,2019-02-08 21:16:00,257 Church St, Dallas,TX,75001 +160296,Lightning Charging Cable,1,14.95,2019-02-12 18:50:00,521 Spruce St, Los Angeles,CA,90001 +160297,AA Batteries (4-pack),1,3.84,2019-02-08 19:29:00,722 River St, Boston,MA,02215 +160298,USB-C Charging Cable,1,11.95,2019-02-04 18:01:00,63 1st St, New York City,NY,10001 +160298,Apple Airpods Headphones,1,150.0,2019-02-04 18:01:00,63 1st St, New York City,NY,10001 +160299,AAA Batteries (4-pack),1,2.99,2019-02-03 07:58:00,547 Cedar St, Los Angeles,CA,90001 +160300,Wired Headphones,2,11.99,2019-02-22 21:02:00,323 7th St, Boston,MA,02215 +160301,27in FHD Monitor,1,149.99,2019-02-02 14:59:00,359 2nd St, Austin,TX,73301 +160302,USB-C Charging Cable,1,11.95,2019-02-21 16:09:00,249 Church St, Dallas,TX,75001 +160303,34in Ultrawide Monitor,1,379.99,2019-02-17 21:30:00,61 13th St, San Francisco,CA,94016 +160304,Apple Airpods Headphones,1,150.0,2019-02-01 12:49:00,837 Cedar St, Portland,ME,04101 +160305,AAA Batteries (4-pack),2,2.99,2019-02-16 07:40:00,744 Park St, Seattle,WA,98101 +160306,USB-C Charging Cable,1,11.95,2019-02-14 21:58:00,86 Ridge St, Los Angeles,CA,90001 +160307,Bose SoundSport Headphones,1,99.99,2019-02-19 19:09:00,758 Hickory St, New York City,NY,10001 +160308,Apple Airpods Headphones,1,150.0,2019-02-24 14:46:00,529 8th St, Portland,OR,97035 +160309,Bose SoundSport Headphones,1,99.99,2019-02-23 23:43:00,315 Lake St, San Francisco,CA,94016 +160310,27in FHD Monitor,1,149.99,2019-02-24 17:31:00,395 Hill St, Dallas,TX,75001 +160311,AAA Batteries (4-pack),3,2.99,2019-02-06 13:44:00,92 4th St, Atlanta,GA,30301 +160312,27in 4K Gaming Monitor,1,389.99,2019-02-09 09:14:00,308 Hickory St, New York City,NY,10001 +160313,USB-C Charging Cable,1,11.95,2019-02-21 12:50:00,234 Park St, Atlanta,GA,30301 +160314,Lightning Charging Cable,1,14.95,2019-02-28 13:17:00,285 Madison St, Seattle,WA,98101 +160315,Apple Airpods Headphones,1,150.0,2019-02-21 08:45:00,688 2nd St, Austin,TX,73301 +160316,USB-C Charging Cable,1,11.95,2019-02-08 21:15:00,661 11th St, Boston,MA,02215 +160317,AAA Batteries (4-pack),1,2.99,2019-02-28 22:35:00,84 Lincoln St, Dallas,TX,75001 +160318,USB-C Charging Cable,1,11.95,2019-02-15 09:26:00,171 River St, San Francisco,CA,94016 +160319,Flatscreen TV,1,300.0,2019-02-10 08:19:00,468 4th St, Boston,MA,02215 +160320,AA Batteries (4-pack),1,3.84,2019-02-23 08:59:00,497 Park St, Atlanta,GA,30301 +160321,AAA Batteries (4-pack),2,2.99,2019-02-15 08:49:00,623 North St, Boston,MA,02215 +160322,AA Batteries (4-pack),1,3.84,2019-02-25 18:07:00,233 South St, Los Angeles,CA,90001 +160323,Bose SoundSport Headphones,1,99.99,2019-02-15 09:19:00,2 Park St, Los Angeles,CA,90001 +160324,AAA Batteries (4-pack),2,2.99,2019-02-11 21:27:00,241 14th St, Atlanta,GA,30301 +160325,AAA Batteries (4-pack),1,2.99,2019-02-08 22:21:00,832 10th St, San Francisco,CA,94016 +160326,27in 4K Gaming Monitor,1,389.99,2019-02-14 11:42:00,772 8th St, San Francisco,CA,94016 +160327,AAA Batteries (4-pack),1,2.99,2019-02-27 11:30:00,313 11th St, Portland,OR,97035 +160328,Wired Headphones,1,11.99,2019-02-10 09:45:00,497 Hickory St, Boston,MA,02215 +160329,AAA Batteries (4-pack),3,2.99,2019-02-28 10:12:00,166 Hill St, Seattle,WA,98101 +160329,AAA Batteries (4-pack),1,2.99,2019-02-28 10:12:00,166 Hill St, Seattle,WA,98101 +160330,34in Ultrawide Monitor,1,379.99,2019-02-25 13:33:00,999 Lakeview St, Boston,MA,02215 +160331,34in Ultrawide Monitor,1,379.99,2019-02-07 19:42:00,428 Washington St, Dallas,TX,75001 +160332,Apple Airpods Headphones,1,150.0,2019-02-03 13:48:00,310 10th St, San Francisco,CA,94016 +160333,iPhone,1,700.0,2019-02-06 22:28:00,527 Jackson St, Portland,ME,04101 +160333,Lightning Charging Cable,1,14.95,2019-02-06 22:28:00,527 Jackson St, Portland,ME,04101 +160334,Wired Headphones,1,11.99,2019-02-06 09:56:00,741 6th St, New York City,NY,10001 +160335,Lightning Charging Cable,1,14.95,2019-02-09 18:25:00,259 Hickory St, Los Angeles,CA,90001 +160336,Apple Airpods Headphones,1,150.0,2019-02-03 17:07:00,662 Main St, San Francisco,CA,94016 +160337,Flatscreen TV,1,300.0,2019-02-21 23:23:00,790 Ridge St, San Francisco,CA,94016 +160338,Wired Headphones,1,11.99,2019-02-12 16:57:00,435 Hill St, New York City,NY,10001 +160339,Wired Headphones,1,11.99,2019-02-21 22:57:00,907 Lake St, San Francisco,CA,94016 +160340,iPhone,1,700.0,2019-02-07 17:47:00,187 Jackson St, Boston,MA,02215 +160341,34in Ultrawide Monitor,1,379.99,2019-02-17 18:13:00,371 11th St, Los Angeles,CA,90001 +160342,AA Batteries (4-pack),1,3.84,2019-02-15 15:28:00,32 Lake St, New York City,NY,10001 +160343,AA Batteries (4-pack),2,3.84,2019-02-12 10:05:00,239 Washington St, Los Angeles,CA,90001 +160344,AA Batteries (4-pack),1,3.84,2019-02-17 20:47:00,371 Ridge St, Los Angeles,CA,90001 +160345,AAA Batteries (4-pack),2,2.99,2019-02-11 18:59:00,428 Church St, San Francisco,CA,94016 +160346,Bose SoundSport Headphones,1,99.99,2019-02-05 12:16:00,224 Maple St, Dallas,TX,75001 +160347,Wired Headphones,2,11.99,2019-02-15 00:31:00,528 2nd St, Dallas,TX,75001 +160348,Wired Headphones,1,11.99,2019-02-20 14:01:00,119 Main St, Dallas,TX,75001 +160349,Flatscreen TV,1,300.0,2019-02-14 10:46:00,477 Madison St, Atlanta,GA,30301 +160350,AA Batteries (4-pack),1,3.84,2019-02-21 19:17:00,792 Jackson St, Los Angeles,CA,90001 +160351,Lightning Charging Cable,1,14.95,2019-02-16 20:36:00,193 Hickory St, Dallas,TX,75001 +160352,Lightning Charging Cable,1,14.95,2019-02-26 18:36:00,840 Chestnut St, New York City,NY,10001 +160353,Flatscreen TV,1,300.0,2019-02-14 10:11:00,539 6th St, New York City,NY,10001 +160354,Lightning Charging Cable,1,14.95,2019-02-25 15:28:00,57 South St, Los Angeles,CA,90001 +160355,AA Batteries (4-pack),1,3.84,2019-02-24 19:11:00,650 Madison St, Dallas,TX,75001 +160356,27in 4K Gaming Monitor,1,389.99,2019-02-26 11:07:00,991 Park St, San Francisco,CA,94016 +160357,AA Batteries (4-pack),1,3.84,2019-02-14 11:22:00,979 River St, Los Angeles,CA,90001 +160358,USB-C Charging Cable,1,11.95,2019-02-22 09:51:00,756 Lakeview St, San Francisco,CA,94016 +160359,27in FHD Monitor,1,149.99,2019-02-27 14:39:00,609 Church St, Dallas,TX,75001 +160360,Lightning Charging Cable,1,14.95,2019-02-09 21:32:00,462 11th St, Austin,TX,73301 +160361,AAA Batteries (4-pack),2,2.99,2019-02-24 20:13:00,929 Wilson St, San Francisco,CA,94016 +160362,Wired Headphones,1,11.99,2019-02-17 10:34:00,318 Adams St, Atlanta,GA,30301 +160363,AA Batteries (4-pack),1,3.84,2019-02-03 16:09:00,88 7th St, Portland,OR,97035 +160364,AA Batteries (4-pack),1,3.84,2019-02-13 13:23:00,415 10th St, Dallas,TX,75001 +160365,Bose SoundSport Headphones,1,99.99,2019-02-28 02:23:00,774 Washington St, Boston,MA,02215 +160366,AAA Batteries (4-pack),1,2.99,2019-02-24 09:32:00,17 Washington St, Boston,MA,02215 +160367,Macbook Pro Laptop,1,1700.0,2019-02-08 15:05:00,927 Lincoln St, Dallas,TX,75001 +160368,AAA Batteries (4-pack),1,2.99,2019-02-11 16:11:00,644 Forest St, San Francisco,CA,94016 +160369,USB-C Charging Cable,2,11.95,2019-02-18 12:32:00,665 Pine St, Los Angeles,CA,90001 +160370,Apple Airpods Headphones,1,150.0,2019-02-25 01:05:00,851 North St, San Francisco,CA,94016 +160371,Google Phone,1,600.0,2019-02-13 11:31:00,636 6th St, Dallas,TX,75001 +160371,USB-C Charging Cable,1,11.95,2019-02-13 11:31:00,636 6th St, Dallas,TX,75001 +160372,Lightning Charging Cable,1,14.95,2019-02-17 02:44:00,654 5th St, Boston,MA,02215 +160373,Bose SoundSport Headphones,1,99.99,2019-02-04 11:19:00,946 Forest St, Boston,MA,02215 +160374,34in Ultrawide Monitor,1,379.99,2019-02-01 18:35:00,979 West St, Los Angeles,CA,90001 +160375,Wired Headphones,1,11.99,2019-02-22 11:17:00,32 North St, New York City,NY,10001 +160376,Wired Headphones,1,11.99,2019-02-19 04:39:00,821 5th St, San Francisco,CA,94016 +160377,AA Batteries (4-pack),1,3.84,2019-02-11 08:52:00,840 1st St, Portland,OR,97035 +160378,USB-C Charging Cable,1,11.95,2019-02-16 23:07:00,529 14th St, Boston,MA,02215 +160379,Lightning Charging Cable,1,14.95,2019-02-22 01:07:00,591 Lake St, New York City,NY,10001 +160380,Bose SoundSport Headphones,1,99.99,2019-02-16 12:00:00,267 Walnut St, San Francisco,CA,94016 +160381,Flatscreen TV,1,300.0,2019-02-14 21:46:00,997 5th St, San Francisco,CA,94016 +160382,USB-C Charging Cable,1,11.95,2019-02-25 10:07:00,661 South St, San Francisco,CA,94016 +160383,USB-C Charging Cable,1,11.95,2019-02-26 10:24:00,876 Chestnut St, Portland,ME,04101 +160384,ThinkPad Laptop,1,999.99,2019-02-10 11:55:00,853 Meadow St, San Francisco,CA,94016 +160385,ThinkPad Laptop,1,999.99,2019-02-16 01:52:00,346 Lincoln St, San Francisco,CA,94016 +160386,Wired Headphones,1,11.99,2019-02-16 21:06:00,86 Forest St, Boston,MA,02215 +160387,34in Ultrawide Monitor,1,379.99,2019-02-23 20:34:00,437 6th St, Dallas,TX,75001 +160388,USB-C Charging Cable,1,11.95,2019-02-24 11:54:00,510 Cedar St, Atlanta,GA,30301 +160389,Apple Airpods Headphones,1,150.0,2019-02-10 09:45:00,720 14th St, Seattle,WA,98101 +160390,34in Ultrawide Monitor,1,379.99,2019-02-14 10:44:00,525 Wilson St, San Francisco,CA,94016 +160391,20in Monitor,1,109.99,2019-02-01 09:32:00,606 Pine St, San Francisco,CA,94016 +160392,Wired Headphones,1,11.99,2019-02-06 11:52:00,245 13th St, San Francisco,CA,94016 +160393,AA Batteries (4-pack),1,3.84,2019-02-06 21:25:00,122 Spruce St, Seattle,WA,98101 +160394,USB-C Charging Cable,1,11.95,2019-02-21 13:00:00,121 Pine St, New York City,NY,10001 +160395,Apple Airpods Headphones,1,150.0,2019-02-07 13:10:00,169 Washington St, Dallas,TX,75001 +160396,20in Monitor,1,109.99,2019-02-16 10:23:00,665 Madison St, New York City,NY,10001 +160397,AAA Batteries (4-pack),1,2.99,2019-02-07 20:38:00,217 Jefferson St, San Francisco,CA,94016 +160398,Lightning Charging Cable,1,14.95,2019-02-03 16:04:00,233 Highland St, Seattle,WA,98101 +160399,Lightning Charging Cable,1,14.95,2019-02-09 06:49:00,820 2nd St, Los Angeles,CA,90001 +160400,LG Washing Machine,1,600.0,2019-02-03 10:21:00,609 Church St, Boston,MA,02215 +160401,Apple Airpods Headphones,1,150.0,2019-02-02 10:45:00,571 Cherry St, Boston,MA,02215 +160402,Bose SoundSport Headphones,1,99.99,2019-02-04 11:15:00,847 Main St, San Francisco,CA,94016 +160403,AAA Batteries (4-pack),1,2.99,2019-02-10 12:50:00,919 Forest St, Boston,MA,02215 +160404,Google Phone,1,600.0,2019-02-01 09:03:00,450 South St, Portland,OR,97035 +160405,Lightning Charging Cable,1,14.95,2019-02-04 10:58:00,936 11th St, San Francisco,CA,94016 +160406,Apple Airpods Headphones,1,150.0,2019-02-20 22:10:00,66 10th St, San Francisco,CA,94016 +160407,AA Batteries (4-pack),1,3.84,2019-02-13 15:33:00,629 Lakeview St, San Francisco,CA,94016 +160408,Wired Headphones,2,11.99,2019-02-05 17:01:00,742 Ridge St, Atlanta,GA,30301 +160409,iPhone,1,700.0,2019-02-28 16:54:00,997 Cedar St, Austin,TX,73301 +160410,ThinkPad Laptop,1,999.99,2019-02-19 08:31:00,980 Center St, San Francisco,CA,94016 +160411,Wired Headphones,1,11.99,2019-02-08 09:21:00,733 Ridge St, Dallas,TX,75001 +160412,AAA Batteries (4-pack),2,2.99,2019-02-28 03:44:00,336 Cherry St, Portland,OR,97035 +160413,USB-C Charging Cable,1,11.95,2019-02-12 15:32:00,37 River St, San Francisco,CA,94016 +160414,USB-C Charging Cable,1,11.95,2019-02-07 19:31:00,580 6th St, Seattle,WA,98101 +160415,Wired Headphones,1,11.99,2019-02-07 17:30:00,880 Elm St, Seattle,WA,98101 +160416,Google Phone,1,600.0,2019-02-07 22:23:00,566 Church St, Boston,MA,02215 +160417,Bose SoundSport Headphones,1,99.99,2019-02-18 15:14:00,9 12th St, San Francisco,CA,94016 +160418,Wired Headphones,1,11.99,2019-02-11 06:48:00,193 Cedar St, Seattle,WA,98101 +160419,USB-C Charging Cable,1,11.95,2019-02-03 09:52:00,334 Forest St, Seattle,WA,98101 +160420,Wired Headphones,1,11.99,2019-02-19 09:04:00,850 Forest St, Boston,MA,02215 +160421,Apple Airpods Headphones,1,150.0,2019-02-25 20:40:00,654 West St, New York City,NY,10001 +160422,AA Batteries (4-pack),2,3.84,2019-02-22 00:38:00,848 Park St, Boston,MA,02215 +160423,ThinkPad Laptop,1,999.99,2019-02-12 12:51:00,354 10th St, San Francisco,CA,94016 +160424,iPhone,1,700.0,2019-02-04 04:42:00,402 4th St, Boston,MA,02215 +160425,AA Batteries (4-pack),1,3.84,2019-02-12 19:04:00,823 Walnut St, San Francisco,CA,94016 +160426,ThinkPad Laptop,1,999.99,2019-02-04 16:49:00,339 Hickory St, Atlanta,GA,30301 +160427,Wired Headphones,1,11.99,2019-02-16 12:04:00,344 Madison St, Dallas,TX,75001 +160428,27in 4K Gaming Monitor,1,389.99,2019-02-21 20:40:00,249 6th St, Boston,MA,02215 +160429,27in FHD Monitor,1,149.99,2019-02-04 00:17:00,571 Hill St, San Francisco,CA,94016 +160430,AA Batteries (4-pack),1,3.84,2019-02-08 14:02:00,391 Lake St, San Francisco,CA,94016 +160431,AAA Batteries (4-pack),1,2.99,2019-02-24 16:17:00,58 14th St, Los Angeles,CA,90001 +160432,Lightning Charging Cable,1,14.95,2019-02-18 14:48:00,644 Hill St, Dallas,TX,75001 +160433,Wired Headphones,1,11.99,2019-02-01 13:07:00,833 13th St, Dallas,TX,75001 +160434,Wired Headphones,1,11.99,2019-02-18 18:27:00,13 Madison St, Los Angeles,CA,90001 +160435,ThinkPad Laptop,1,999.99,2019-02-21 16:54:00,990 Willow St, Seattle,WA,98101 +160436,Lightning Charging Cable,1,14.95,2019-02-24 10:38:00,682 North St, San Francisco,CA,94016 +160437,27in FHD Monitor,1,149.99,2019-02-24 16:09:00,788 Willow St, Boston,MA,02215 +160438,27in 4K Gaming Monitor,1,389.99,2019-02-13 16:42:00,956 Highland St, Boston,MA,02215 +160439,AAA Batteries (4-pack),1,2.99,2019-02-01 17:17:00,97 7th St, Atlanta,GA,30301 +160440,AA Batteries (4-pack),1,3.84,2019-02-11 11:39:00,417 Wilson St, Boston,MA,02215 +160441,Bose SoundSport Headphones,1,99.99,2019-02-14 13:02:00,111 Elm St, Los Angeles,CA,90001 +160442,Flatscreen TV,1,300.0,2019-02-12 15:16:00,135 South St, Atlanta,GA,30301 +160443,AA Batteries (4-pack),3,3.84,2019-02-25 22:30:00,498 Spruce St, Portland,OR,97035 +160444,Vareebadd Phone,1,400.0,2019-02-23 21:04:00,269 Cherry St, Los Angeles,CA,90001 +160445,20in Monitor,1,109.99,2019-02-14 19:23:00,762 Walnut St, Boston,MA,02215 +160446,USB-C Charging Cable,1,11.95,2019-02-02 20:54:00,300 Main St, San Francisco,CA,94016 +160447,27in 4K Gaming Monitor,1,389.99,2019-02-01 12:08:00,482 Hill St, Portland,OR,97035 +160448,AAA Batteries (4-pack),1,2.99,2019-02-04 16:21:00,130 Jackson St, San Francisco,CA,94016 +160449,USB-C Charging Cable,1,11.95,2019-02-23 01:07:00,385 8th St, Atlanta,GA,30301 +160450,AAA Batteries (4-pack),3,2.99,2019-02-27 16:24:00,441 14th St, Boston,MA,02215 +160451,iPhone,1,700.0,2019-02-12 21:19:00,369 Jefferson St, Los Angeles,CA,90001 +160452,Wired Headphones,1,11.99,2019-02-08 10:45:00,870 Willow St, New York City,NY,10001 +160453,Wired Headphones,1,11.99,2019-02-01 19:18:00,856 Highland St, San Francisco,CA,94016 +160454,USB-C Charging Cable,1,11.95,2019-02-20 00:46:00,14 5th St, San Francisco,CA,94016 +160455,Wired Headphones,1,11.99,2019-02-24 00:15:00,721 Hill St, Atlanta,GA,30301 +160456,iPhone,1,700.0,2019-02-07 17:02:00,306 North St, Los Angeles,CA,90001 +160457,AAA Batteries (4-pack),1,2.99,2019-02-15 11:07:00,201 Maple St, Boston,MA,02215 +160458,Google Phone,1,600.0,2019-02-16 17:19:00,521 14th St, New York City,NY,10001 +160459,27in FHD Monitor,1,149.99,2019-02-17 21:09:00,978 11th St, New York City,NY,10001 +160460,AAA Batteries (4-pack),2,2.99,2019-02-22 17:31:00,812 Highland St, Dallas,TX,75001 +160461,Wired Headphones,1,11.99,2019-02-03 10:54:00,313 Dogwood St, San Francisco,CA,94016 +160462,34in Ultrawide Monitor,1,379.99,2019-02-17 19:47:00,331 Church St, Austin,TX,73301 +160463,27in 4K Gaming Monitor,1,389.99,2019-02-13 15:41:00,660 9th St, San Francisco,CA,94016 +160464,Bose SoundSport Headphones,1,99.99,2019-02-22 13:17:00,514 12th St, Portland,OR,97035 +160465,AAA Batteries (4-pack),4,2.99,2019-02-21 19:48:00,160 Washington St, Portland,ME,04101 +160466,Bose SoundSport Headphones,1,99.99,2019-02-25 12:42:00,174 Hill St, Seattle,WA,98101 +160467,Google Phone,1,600.0,2019-02-21 18:06:00,71 Dogwood St, San Francisco,CA,94016 +160468,USB-C Charging Cable,2,11.95,2019-02-01 09:42:00,138 5th St, San Francisco,CA,94016 +160469,iPhone,1,700.0,2019-02-25 20:41:00,985 Center St, Boston,MA,02215 +160470,34in Ultrawide Monitor,1,379.99,2019-02-05 17:33:00,175 Lake St, Seattle,WA,98101 +160471,Apple Airpods Headphones,1,150.0,2019-02-09 15:29:00,526 Jefferson St, San Francisco,CA,94016 +160472,Macbook Pro Laptop,1,1700.0,2019-02-18 19:02:00,931 Adams St, Los Angeles,CA,90001 +160473,AAA Batteries (4-pack),1,2.99,2019-02-20 08:11:00,377 South St, Dallas,TX,75001 +160474,27in FHD Monitor,1,149.99,2019-02-06 21:19:00,892 Park St, Los Angeles,CA,90001 +160475,Apple Airpods Headphones,1,150.0,2019-02-02 16:45:00,679 Wilson St, Dallas,TX,75001 +160476,USB-C Charging Cable,1,11.95,2019-02-01 13:26:00,864 Adams St, Los Angeles,CA,90001 +160477,Bose SoundSport Headphones,1,99.99,2019-02-12 18:14:00,229 Johnson St, Seattle,WA,98101 +160478,Lightning Charging Cable,1,14.95,2019-02-21 11:01:00,143 1st St, Atlanta,GA,30301 +160479,AA Batteries (4-pack),1,3.84,2019-02-27 19:38:00,390 Church St, Los Angeles,CA,90001 +160480,Bose SoundSport Headphones,1,99.99,2019-02-10 13:13:00,371 Park St, Boston,MA,02215 +160481,27in 4K Gaming Monitor,1,389.99,2019-02-12 08:06:00,795 Jackson St, Los Angeles,CA,90001 +160481,AA Batteries (4-pack),2,3.84,2019-02-12 08:06:00,795 Jackson St, Los Angeles,CA,90001 +160482,AAA Batteries (4-pack),1,2.99,2019-02-10 07:50:00,699 7th St, Boston,MA,02215 +160483,Bose SoundSport Headphones,1,99.99,2019-02-11 11:05:00,680 Sunset St, San Francisco,CA,94016 +160484,AAA Batteries (4-pack),1,2.99,2019-02-25 12:53:00,870 Jackson St, San Francisco,CA,94016 +160485,USB-C Charging Cable,1,11.95,2019-02-18 13:56:00,998 Hill St, Boston,MA,02215 +160486,Wired Headphones,1,11.99,2019-02-19 16:48:00,873 5th St, Los Angeles,CA,90001 +160487,27in FHD Monitor,1,149.99,2019-02-09 17:44:00,161 8th St, New York City,NY,10001 +160488,Apple Airpods Headphones,1,150.0,2019-02-16 08:32:00,214 Walnut St, Portland,OR,97035 +160489,Lightning Charging Cable,1,14.95,2019-02-07 11:08:00,268 9th St, Austin,TX,73301 +160490,USB-C Charging Cable,1,11.95,2019-02-19 04:39:00,282 Jefferson St, New York City,NY,10001 +160491,Wired Headphones,2,11.99,2019-02-21 16:11:00,724 Hill St, New York City,NY,10001 +160492,Lightning Charging Cable,1,14.95,2019-02-24 10:41:00,356 10th St, San Francisco,CA,94016 +160493,Bose SoundSport Headphones,1,99.99,2019-02-08 00:18:00,987 10th St, San Francisco,CA,94016 +160494,Google Phone,1,600.0,2019-02-15 17:09:00,220 Church St, New York City,NY,10001 +160495,Lightning Charging Cable,1,14.95,2019-02-10 13:30:00,593 Dogwood St, San Francisco,CA,94016 +160496,Lightning Charging Cable,1,14.95,2019-02-19 16:52:00,642 2nd St, Portland,ME,04101 +160497,Apple Airpods Headphones,1,150.0,2019-02-07 15:20:00,608 10th St, Austin,TX,73301 +160498,Wired Headphones,1,11.99,2019-02-05 23:44:00,46 Sunset St, Seattle,WA,98101 +160499,Lightning Charging Cable,1,14.95,2019-02-26 22:57:00,800 5th St, Atlanta,GA,30301 +160500,Bose SoundSport Headphones,1,99.99,2019-02-28 16:49:00,105 Willow St, New York City,NY,10001 +160501,Wired Headphones,1,11.99,2019-02-07 13:17:00,282 Johnson St, Los Angeles,CA,90001 +160502,AAA Batteries (4-pack),2,2.99,2019-02-20 10:45:00,931 10th St, Los Angeles,CA,90001 +160503,Bose SoundSport Headphones,1,99.99,2019-02-11 12:57:00,695 South St, Seattle,WA,98101 +160504,USB-C Charging Cable,1,11.95,2019-02-08 16:03:00,933 Elm St, San Francisco,CA,94016 +160505,Bose SoundSport Headphones,1,99.99,2019-02-10 22:05:00,844 Center St, Boston,MA,02215 +160506,Bose SoundSport Headphones,1,99.99,2019-02-14 21:18:00,262 12th St, Austin,TX,73301 +160507,AAA Batteries (4-pack),1,2.99,2019-02-25 19:38:00,698 Lake St, Austin,TX,73301 +160508,iPhone,1,700.0,2019-02-01 09:59:00,489 Church St, Seattle,WA,98101 +160509,AAA Batteries (4-pack),2,2.99,2019-02-01 01:51:00,597 Chestnut St, Austin,TX,73301 +160510,Google Phone,1,600.0,2019-02-06 11:04:00,92 Lake St, Dallas,TX,75001 +160511,Apple Airpods Headphones,1,150.0,2019-02-04 10:07:00,54 Washington St, Seattle,WA,98101 +160512,USB-C Charging Cable,2,11.95,2019-02-11 12:53:00,643 Elm St, San Francisco,CA,94016 +160513,USB-C Charging Cable,1,11.95,2019-02-23 12:05:00,87 11th St, Portland,OR,97035 +160514,Lightning Charging Cable,1,14.95,2019-02-23 12:04:00,811 South St, New York City,NY,10001 +160515,Bose SoundSport Headphones,1,99.99,2019-02-26 13:09:00,361 8th St, Los Angeles,CA,90001 +160516,20in Monitor,1,109.99,2019-02-21 17:14:00,921 Cherry St, Los Angeles,CA,90001 +160517,AA Batteries (4-pack),1,3.84,2019-02-10 17:01:00,713 Church St, New York City,NY,10001 +160518,USB-C Charging Cable,1,11.95,2019-02-07 06:58:00,166 9th St, Dallas,TX,75001 +160519,Wired Headphones,1,11.99,2019-02-15 21:06:00,802 Dogwood St, Atlanta,GA,30301 +160520,USB-C Charging Cable,1,11.95,2019-02-05 20:57:00,893 Wilson St, New York City,NY,10001 +160521,USB-C Charging Cable,1,11.95,2019-02-19 20:27:00,38 Cherry St, Austin,TX,73301 +160522,Lightning Charging Cable,1,14.95,2019-02-25 19:16:00,744 1st St, San Francisco,CA,94016 +160523,AA Batteries (4-pack),1,3.84,2019-02-21 15:27:00,866 Park St, Atlanta,GA,30301 +160524,Flatscreen TV,1,300.0,2019-02-05 13:43:00,262 Walnut St, Boston,MA,02215 +160525,USB-C Charging Cable,1,11.95,2019-02-11 13:41:00,329 West St, San Francisco,CA,94016 +160526,Lightning Charging Cable,1,14.95,2019-02-18 16:36:00,559 9th St, Boston,MA,02215 +160527,AA Batteries (4-pack),2,3.84,2019-02-25 19:10:00,389 12th St, New York City,NY,10001 +160528,Macbook Pro Laptop,1,1700.0,2019-02-07 06:21:00,661 Madison St, Seattle,WA,98101 +160529,34in Ultrawide Monitor,1,379.99,2019-02-11 11:05:00,156 Lakeview St, Seattle,WA,98101 +160530,AA Batteries (4-pack),1,3.84,2019-02-04 20:12:00,524 Adams St, Atlanta,GA,30301 +160531,Macbook Pro Laptop,1,1700.0,2019-02-01 17:46:00,630 11th St, San Francisco,CA,94016 +160532,Wired Headphones,1,11.99,2019-02-27 21:50:00,860 Lincoln St, Seattle,WA,98101 +160533,20in Monitor,1,109.99,2019-02-27 21:12:00,839 Lakeview St, San Francisco,CA,94016 +160534,Apple Airpods Headphones,1,150.0,2019-02-14 18:07:00,674 Dogwood St, Austin,TX,73301 +160535,AAA Batteries (4-pack),1,2.99,2019-02-09 22:38:00,297 Cherry St, Dallas,TX,75001 +160536,iPhone,1,700.0,2019-02-24 17:07:00,91 Pine St, Portland,OR,97035 +160537,AA Batteries (4-pack),5,3.84,2019-02-13 10:45:00,766 Main St, Seattle,WA,98101 +160538,ThinkPad Laptop,1,999.99,2019-02-27 12:50:00,950 Adams St, San Francisco,CA,94016 +160538,AA Batteries (4-pack),3,3.84,2019-02-27 12:50:00,950 Adams St, San Francisco,CA,94016 +160539,AA Batteries (4-pack),1,3.84,2019-02-11 21:57:00,365 Dogwood St, San Francisco,CA,94016 +160540,AA Batteries (4-pack),1,3.84,2019-02-14 11:40:00,403 Cedar St, Los Angeles,CA,90001 +160541,AA Batteries (4-pack),4,3.84,2019-02-24 21:05:00,472 West St, Boston,MA,02215 +160542,Flatscreen TV,1,300.0,2019-02-25 15:57:00,126 12th St, San Francisco,CA,94016 +160543,Lightning Charging Cable,1,14.95,2019-02-21 14:24:00,682 Sunset St, Austin,TX,73301 +160544,Macbook Pro Laptop,1,1700.0,2019-02-09 10:45:00,741 Sunset St, San Francisco,CA,94016 +160545,27in FHD Monitor,1,149.99,2019-02-21 10:39:00,273 Dogwood St, New York City,NY,10001 +160546,Vareebadd Phone,1,400.0,2019-02-17 22:19:00,11 Cedar St, New York City,NY,10001 +160547,Lightning Charging Cable,1,14.95,2019-02-28 15:11:00,466 Lake St, Seattle,WA,98101 +160548,AA Batteries (4-pack),1,3.84,2019-02-17 21:33:00,128 South St, San Francisco,CA,94016 +160549,27in 4K Gaming Monitor,1,389.99,2019-02-01 21:26:00,399 12th St, Los Angeles,CA,90001 +160550,Lightning Charging Cable,1,14.95,2019-02-02 09:58:00,852 Madison St, Seattle,WA,98101 +160551,USB-C Charging Cable,1,11.95,2019-02-24 09:00:00,541 1st St, San Francisco,CA,94016 +160552,Wired Headphones,1,11.99,2019-02-06 14:20:00,558 Madison St, San Francisco,CA,94016 +160553,Apple Airpods Headphones,1,150.0,2019-02-24 11:24:00,915 13th St, New York City,NY,10001 +160554,Wired Headphones,1,11.99,2019-02-18 16:45:00,740 Center St, Dallas,TX,75001 +160555,USB-C Charging Cable,1,11.95,2019-02-27 20:47:00,391 River St, Atlanta,GA,30301 +160556,Apple Airpods Headphones,1,150.0,2019-02-26 21:31:00,70 Walnut St, Boston,MA,02215 +160557,Apple Airpods Headphones,1,150.0,2019-02-13 20:31:00,411 Madison St, San Francisco,CA,94016 +160558,27in 4K Gaming Monitor,1,389.99,2019-02-05 14:08:00,843 Cherry St, Portland,OR,97035 +160559,27in FHD Monitor,1,149.99,2019-02-02 14:35:00,445 8th St, Boston,MA,02215 +160560,AA Batteries (4-pack),2,3.84,2019-02-19 19:24:00,319 1st St, Portland,OR,97035 +160561,Apple Airpods Headphones,1,150.0,2019-02-15 21:19:00,839 Chestnut St, New York City,NY,10001 +160562,AAA Batteries (4-pack),2,2.99,2019-02-23 21:25:00,462 Jackson St, San Francisco,CA,94016 +160563,USB-C Charging Cable,2,11.95,2019-02-09 09:58:00,667 River St, San Francisco,CA,94016 +160564,AA Batteries (4-pack),1,3.84,2019-02-25 11:26:00,958 7th St, Los Angeles,CA,90001 +160565,Lightning Charging Cable,1,14.95,2019-02-01 14:40:00,629 Hickory St, Dallas,TX,75001 +160566,USB-C Charging Cable,1,11.95,2019-02-25 12:50:00,573 Cedar St, San Francisco,CA,94016 +160567,Apple Airpods Headphones,1,150.0,2019-02-17 08:12:00,885 Chestnut St, Seattle,WA,98101 +160568,Apple Airpods Headphones,1,150.0,2019-02-18 20:49:00,412 12th St, New York City,NY,10001 +160569,Google Phone,1,600.0,2019-02-08 20:36:00,998 2nd St, Seattle,WA,98101 +160570,AAA Batteries (4-pack),1,2.99,2019-02-06 19:06:00,733 Church St, San Francisco,CA,94016 +160571,Lightning Charging Cable,1,14.95,2019-02-11 16:14:00,281 Dogwood St, Los Angeles,CA,90001 +160572,27in 4K Gaming Monitor,1,389.99,2019-02-20 15:12:00,637 Johnson St, Los Angeles,CA,90001 +160573,Google Phone,1,600.0,2019-02-16 08:55:00,389 Cherry St, New York City,NY,10001 +160574,27in FHD Monitor,1,149.99,2019-02-25 14:51:00,282 2nd St, Los Angeles,CA,90001 +160575,Lightning Charging Cable,1,14.95,2019-02-12 22:58:00,897 1st St, Los Angeles,CA,90001 +160576,AA Batteries (4-pack),1,3.84,2019-02-06 20:01:00,74 Jackson St, Seattle,WA,98101 +160577,27in FHD Monitor,1,149.99,2019-02-26 11:18:00,427 Pine St, San Francisco,CA,94016 +160578,AA Batteries (4-pack),1,3.84,2019-02-05 19:21:00,322 8th St, Seattle,WA,98101 +160579,USB-C Charging Cable,1,11.95,2019-02-01 15:26:00,966 Elm St, Seattle,WA,98101 +160580,Apple Airpods Headphones,1,150.0,2019-02-06 09:47:00,284 Main St, San Francisco,CA,94016 +160581,AA Batteries (4-pack),1,3.84,2019-02-24 19:46:00,924 Cedar St, San Francisco,CA,94016 +160582,Wired Headphones,1,11.99,2019-02-23 18:07:00,42 Main St, Los Angeles,CA,90001 +160583,Apple Airpods Headphones,1,150.0,2019-02-21 15:08:00,312 Main St, San Francisco,CA,94016 +160584,AA Batteries (4-pack),1,3.84,2019-02-21 20:43:00,4 West St, Atlanta,GA,30301 +160585,Lightning Charging Cable,1,14.95,2019-02-18 09:42:00,6 Dogwood St, Dallas,TX,75001 +160586,USB-C Charging Cable,1,11.95,2019-02-14 11:07:00,525 Forest St, Austin,TX,73301 +160587,USB-C Charging Cable,1,11.95,2019-02-11 10:54:00,294 West St, Los Angeles,CA,90001 +160588,Lightning Charging Cable,2,14.95,2019-02-14 17:44:00,813 Forest St, San Francisco,CA,94016 +160589,Bose SoundSport Headphones,1,99.99,2019-02-16 12:00:00,816 7th St, Portland,ME,04101 +160590,AA Batteries (4-pack),2,3.84,2019-02-22 09:18:00,505 Church St, Portland,ME,04101 +160591,27in 4K Gaming Monitor,1,389.99,2019-02-16 09:20:00,130 4th St, San Francisco,CA,94016 +160592,iPhone,1,700.0,2019-02-18 16:12:00,557 River St, Seattle,WA,98101 +160593,Google Phone,1,600.0,2019-02-05 20:46:00,61 Maple St, Seattle,WA,98101 +160593,USB-C Charging Cable,1,11.95,2019-02-05 20:46:00,61 Maple St, Seattle,WA,98101 +160594,Bose SoundSport Headphones,1,99.99,2019-02-24 07:36:00,774 Sunset St, Los Angeles,CA,90001 +160595,USB-C Charging Cable,1,11.95,2019-02-21 20:03:00,399 West St, San Francisco,CA,94016 +160596,AA Batteries (4-pack),1,3.84,2019-02-10 19:47:00,986 Wilson St, Seattle,WA,98101 +160597,USB-C Charging Cable,1,11.95,2019-02-04 21:35:00,382 6th St, San Francisco,CA,94016 +160598,AAA Batteries (4-pack),1,2.99,2019-02-13 18:28:00,685 West St, New York City,NY,10001 +160599,Wired Headphones,1,11.99,2019-02-11 10:52:00,687 Dogwood St, New York City,NY,10001 +160600,Flatscreen TV,1,300.0,2019-02-22 20:21:00,694 Center St, New York City,NY,10001 +160601,Flatscreen TV,1,300.0,2019-02-02 09:24:00,909 Center St, Los Angeles,CA,90001 +160602,AAA Batteries (4-pack),1,2.99,2019-02-11 11:50:00,959 River St, Los Angeles,CA,90001 +160603,Wired Headphones,1,11.99,2019-02-02 11:22:00,682 4th St, Seattle,WA,98101 +160604,AAA Batteries (4-pack),4,2.99,2019-02-02 18:19:00,424 Johnson St, Los Angeles,CA,90001 +160605,USB-C Charging Cable,1,11.95,2019-02-07 22:08:00,680 Walnut St, Los Angeles,CA,90001 +160606,Lightning Charging Cable,1,14.95,2019-02-10 19:36:00,541 Meadow St, New York City,NY,10001 +160607,Wired Headphones,1,11.99,2019-02-09 16:40:00,773 1st St, New York City,NY,10001 +160608,Apple Airpods Headphones,1,150.0,2019-02-04 06:41:00,216 Hill St, New York City,NY,10001 +160609,USB-C Charging Cable,1,11.95,2019-02-13 20:52:00,261 West St, San Francisco,CA,94016 +160610,Lightning Charging Cable,1,14.95,2019-02-11 15:01:00,903 Washington St, Atlanta,GA,30301 +160611,Apple Airpods Headphones,1,150.0,2019-02-03 06:29:00,957 1st St, New York City,NY,10001 +160612,AA Batteries (4-pack),1,3.84,2019-02-05 22:07:00,85 Hill St, Dallas,TX,75001 +160613,AAA Batteries (4-pack),2,2.99,2019-02-01 22:55:00,979 Cherry St, Atlanta,GA,30301 +160614,Lightning Charging Cable,1,14.95,2019-02-11 22:00:00,717 Walnut St, Los Angeles,CA,90001 +160615,Bose SoundSport Headphones,1,99.99,2019-02-11 19:40:00,995 Ridge St, Seattle,WA,98101 +160616,iPhone,1,700.0,2019-02-13 12:12:00,712 Lakeview St, San Francisco,CA,94016 +160617,Lightning Charging Cable,1,14.95,2019-02-12 11:40:00,929 Meadow St, Austin,TX,73301 +160618,20in Monitor,1,109.99,2019-02-17 11:49:00,980 8th St, New York City,NY,10001 +160619,Lightning Charging Cable,1,14.95,2019-02-15 15:26:00,578 Jackson St, New York City,NY,10001 +160620,AAA Batteries (4-pack),1,2.99,2019-02-24 17:11:00,675 Church St, San Francisco,CA,94016 +160621,Bose SoundSport Headphones,1,99.99,2019-02-21 18:57:00,350 Willow St, Seattle,WA,98101 +160622,Bose SoundSport Headphones,1,99.99,2019-02-10 21:46:00,497 North St, Dallas,TX,75001 +160623,Apple Airpods Headphones,1,150.0,2019-02-26 15:28:00,899 Main St, Boston,MA,02215 +160624,20in Monitor,1,109.99,2019-02-14 22:04:00,458 Chestnut St, New York City,NY,10001 +160625,Lightning Charging Cable,1,14.95,2019-02-18 16:01:00,85 Willow St, Seattle,WA,98101 +160626,Lightning Charging Cable,1,14.95,2019-02-08 11:04:00,135 Hickory St, Portland,OR,97035 +160627,AA Batteries (4-pack),1,3.84,2019-02-03 18:14:00,651 River St, San Francisco,CA,94016 +160627,27in 4K Gaming Monitor,1,389.99,2019-02-03 18:14:00,651 River St, San Francisco,CA,94016 +160628,Lightning Charging Cable,1,14.95,2019-02-22 08:38:00,279 12th St, Atlanta,GA,30301 +160629,USB-C Charging Cable,1,11.95,2019-02-24 11:51:00,279 Washington St, Portland,OR,97035 +160630,Lightning Charging Cable,1,14.95,2019-02-24 17:43:00,586 Lakeview St, Portland,ME,04101 +160631,AA Batteries (4-pack),1,3.84,2019-02-28 09:01:00,694 Forest St, San Francisco,CA,94016 +160632,iPhone,1,700.0,2019-02-18 17:55:00,592 10th St, Seattle,WA,98101 +160633,Lightning Charging Cable,1,14.95,2019-02-26 13:31:00,373 10th St, New York City,NY,10001 +160634,Flatscreen TV,1,300.0,2019-02-21 04:29:00,687 Walnut St, San Francisco,CA,94016 +160635,34in Ultrawide Monitor,1,379.99,2019-02-15 16:25:00,585 Jefferson St, Boston,MA,02215 +160636,USB-C Charging Cable,1,11.95,2019-02-22 12:38:00,233 Lakeview St, Los Angeles,CA,90001 +160637,Wired Headphones,1,11.99,2019-02-02 08:41:00,499 7th St, New York City,NY,10001 +160638,Lightning Charging Cable,1,14.95,2019-02-14 21:46:00,849 Main St, Austin,TX,73301 +160639,USB-C Charging Cable,1,11.95,2019-02-11 10:48:00,209 Ridge St, Los Angeles,CA,90001 +160640,AA Batteries (4-pack),1,3.84,2019-02-09 16:03:00,681 10th St, San Francisco,CA,94016 +160641,Bose SoundSport Headphones,1,99.99,2019-02-10 16:18:00,680 6th St, Portland,OR,97035 +160642,USB-C Charging Cable,1,11.95,2019-02-26 22:19:00,377 Lake St, Seattle,WA,98101 +160643,34in Ultrawide Monitor,1,379.99,2019-02-03 06:57:00,993 9th St, Seattle,WA,98101 +160644,27in FHD Monitor,1,149.99,2019-02-22 07:46:00,465 10th St, Seattle,WA,98101 +160645,Apple Airpods Headphones,1,150.0,2019-02-20 19:24:00,450 14th St, Portland,ME,04101 +160646,Bose SoundSport Headphones,1,99.99,2019-02-01 23:12:00,583 Wilson St, New York City,NY,10001 +160647,Wired Headphones,1,11.99,2019-02-06 09:36:00,290 2nd St, New York City,NY,10001 +160648,AAA Batteries (4-pack),1,2.99,2019-02-10 11:01:00,236 Dogwood St, Atlanta,GA,30301 +160649,Bose SoundSport Headphones,1,99.99,2019-02-17 00:03:00,59 West St, Boston,MA,02215 +160650,iPhone,1,700.0,2019-02-11 13:13:00,337 14th St, San Francisco,CA,94016 +160651,AAA Batteries (4-pack),1,2.99,2019-02-20 12:24:00,423 Willow St, Boston,MA,02215 +160652,USB-C Charging Cable,1,11.95,2019-02-03 11:59:00,721 Sunset St, San Francisco,CA,94016 +160653,AAA Batteries (4-pack),1,2.99,2019-02-04 08:06:00,443 Washington St, Portland,OR,97035 +160654,USB-C Charging Cable,1,11.95,2019-02-01 13:04:00,190 Madison St, Boston,MA,02215 +160655,AA Batteries (4-pack),1,3.84,2019-02-28 14:21:00,986 Madison St, Dallas,TX,75001 +160656,Bose SoundSport Headphones,1,99.99,2019-02-14 07:34:00,526 Lincoln St, New York City,NY,10001 +160656,AA Batteries (4-pack),2,3.84,2019-02-14 07:34:00,526 Lincoln St, New York City,NY,10001 +160657,Lightning Charging Cable,1,14.95,2019-02-11 21:09:00,808 Hickory St, New York City,NY,10001 +160658,AA Batteries (4-pack),3,3.84,2019-02-02 07:55:00,652 Madison St, Dallas,TX,75001 +160659,20in Monitor,1,109.99,2019-02-05 07:34:00,48 Spruce St, Los Angeles,CA,90001 +160660,Lightning Charging Cable,1,14.95,2019-02-27 17:02:00,977 West St, Boston,MA,02215 +160661,Macbook Pro Laptop,1,1700.0,2019-02-05 21:14:00,562 Meadow St, Atlanta,GA,30301 +160662,Apple Airpods Headphones,1,150.0,2019-02-14 17:23:00,576 Elm St, Atlanta,GA,30301 +160663,USB-C Charging Cable,1,11.95,2019-02-25 10:43:00,478 Walnut St, Seattle,WA,98101 +160664,34in Ultrawide Monitor,1,379.99,2019-02-22 21:13:00,163 Hill St, New York City,NY,10001 +160665,USB-C Charging Cable,1,11.95,2019-02-22 18:18:00,622 14th St, Dallas,TX,75001 +160666,USB-C Charging Cable,1,11.95,2019-02-06 13:58:00,505 Adams St, Atlanta,GA,30301 +160667,20in Monitor,1,109.99,2019-02-24 18:41:00,122 Lake St, Atlanta,GA,30301 +160668,Wired Headphones,1,11.99,2019-02-06 10:18:00,356 8th St, Austin,TX,73301 +160669,AA Batteries (4-pack),1,3.84,2019-02-26 12:08:00,264 11th St, Boston,MA,02215 +160670,Flatscreen TV,1,300.0,2019-02-03 15:18:00,652 Spruce St, Portland,OR,97035 +160671,Apple Airpods Headphones,1,150.0,2019-02-02 12:45:00,699 Cedar St, New York City,NY,10001 +160672,Lightning Charging Cable,1,14.95,2019-02-05 11:42:00,980 11th St, Los Angeles,CA,90001 +160673,LG Dryer,1,600.0,2019-02-22 18:31:00,144 Madison St, Los Angeles,CA,90001 +160674,Bose SoundSport Headphones,1,99.99,2019-02-17 08:24:00,743 14th St, San Francisco,CA,94016 +160675,Wired Headphones,1,11.99,2019-02-05 16:25:00,987 Adams St, San Francisco,CA,94016 +160676,Wired Headphones,1,11.99,2019-02-18 19:14:00,874 6th St, Los Angeles,CA,90001 +160677,AAA Batteries (4-pack),1,2.99,2019-02-02 15:40:00,333 2nd St, Austin,TX,73301 +160678,Bose SoundSport Headphones,1,99.99,2019-02-15 15:51:00,874 Chestnut St, San Francisco,CA,94016 +160679,Apple Airpods Headphones,1,150.0,2019-02-26 08:29:00,191 Washington St, San Francisco,CA,94016 +160680,Bose SoundSport Headphones,1,99.99,2019-02-20 08:54:00,390 Dogwood St, San Francisco,CA,94016 +160681,Wired Headphones,1,11.99,2019-02-12 02:27:00,498 Madison St, New York City,NY,10001 +160682,Google Phone,1,600.0,2019-02-22 13:35:00,205 Cedar St, Los Angeles,CA,90001 +160683,USB-C Charging Cable,1,11.95,2019-02-04 18:51:00,522 5th St, Austin,TX,73301 +160684,Apple Airpods Headphones,1,150.0,2019-02-25 18:48:00,424 Pine St, Boston,MA,02215 +160685,AA Batteries (4-pack),2,3.84,2019-02-19 20:08:00,213 Jackson St, Boston,MA,02215 +160686,USB-C Charging Cable,1,11.95,2019-02-01 15:48:00,421 8th St, Boston,MA,02215 +160687,Lightning Charging Cable,1,14.95,2019-02-20 03:07:00,822 7th St, San Francisco,CA,94016 +160688,Lightning Charging Cable,1,14.95,2019-02-20 23:09:00,490 North St, Atlanta,GA,30301 +160689,Lightning Charging Cable,1,14.95,2019-02-08 21:19:00,350 Madison St, San Francisco,CA,94016 +160690,AAA Batteries (4-pack),1,2.99,2019-02-03 14:28:00,298 6th St, Atlanta,GA,30301 +160691,ThinkPad Laptop,1,999.99,2019-02-22 15:49:00,564 Meadow St, San Francisco,CA,94016 +160692,Wired Headphones,1,11.99,2019-02-11 09:07:00,899 Sunset St, San Francisco,CA,94016 +160693,Lightning Charging Cable,1,14.95,2019-02-18 10:53:00,602 Dogwood St, Atlanta,GA,30301 +160694,Wired Headphones,1,11.99,2019-02-08 08:01:00,844 Lakeview St, Seattle,WA,98101 +160695,AAA Batteries (4-pack),1,2.99,2019-02-12 15:57:00,546 Cherry St, Dallas,TX,75001 +160696,34in Ultrawide Monitor,1,379.99,2019-02-10 12:18:00,804 Wilson St, San Francisco,CA,94016 +160697,Bose SoundSport Headphones,1,99.99,2019-02-04 11:44:00,806 Pine St, San Francisco,CA,94016 +160698,iPhone,1,700.0,2019-02-28 10:38:00,520 Willow St, San Francisco,CA,94016 +160698,Wired Headphones,1,11.99,2019-02-28 10:38:00,520 Willow St, San Francisco,CA,94016 +160699,USB-C Charging Cable,3,11.95,2019-02-17 10:00:00,44 Park St, Atlanta,GA,30301 +160700,20in Monitor,1,109.99,2019-02-01 08:26:00,703 9th St, Los Angeles,CA,90001 +160701,Google Phone,1,600.0,2019-02-09 13:51:00,687 Sunset St, Atlanta,GA,30301 +160702,Bose SoundSport Headphones,1,99.99,2019-02-02 18:40:00,664 6th St, Austin,TX,73301 +160703,USB-C Charging Cable,1,11.95,2019-02-16 18:11:00,980 Chestnut St, Dallas,TX,75001 +160704,Apple Airpods Headphones,1,150.0,2019-02-13 09:56:00,73 Highland St, San Francisco,CA,94016 +160705,Lightning Charging Cable,1,14.95,2019-02-13 00:21:00,847 9th St, Austin,TX,73301 +160706,USB-C Charging Cable,1,11.95,2019-02-07 06:09:00,378 Main St, Los Angeles,CA,90001 +160707,iPhone,1,700.0,2019-02-08 19:19:00,916 1st St, Austin,TX,73301 +160707,Wired Headphones,1,11.99,2019-02-08 19:19:00,916 1st St, Austin,TX,73301 +160708,Wired Headphones,1,11.99,2019-02-24 01:17:00,940 6th St, Seattle,WA,98101 +160709,iPhone,1,700.0,2019-02-03 18:44:00,19 Willow St, Los Angeles,CA,90001 +160710,Wired Headphones,1,11.99,2019-02-02 10:07:00,457 Main St, San Francisco,CA,94016 +160711,AA Batteries (4-pack),1,3.84,2019-02-23 21:41:00,405 Highland St, San Francisco,CA,94016 +160712,20in Monitor,1,109.99,2019-02-12 12:08:00,993 Lincoln St, San Francisco,CA,94016 +160713,USB-C Charging Cable,1,11.95,2019-02-28 23:49:00,436 Meadow St, Dallas,TX,75001 +160714,AAA Batteries (4-pack),1,2.99,2019-02-22 11:53:00,112 Willow St, Boston,MA,02215 +160715,Lightning Charging Cable,1,14.95,2019-02-22 12:15:00,802 7th St, Boston,MA,02215 +160716,Bose SoundSport Headphones,1,99.99,2019-02-11 16:59:00,800 11th St, Seattle,WA,98101 +160717,27in 4K Gaming Monitor,1,389.99,2019-02-24 12:05:00,928 Highland St, Los Angeles,CA,90001 +160718,AAA Batteries (4-pack),1,2.99,2019-02-02 11:50:00,501 Walnut St, Dallas,TX,75001 +160719,ThinkPad Laptop,1,999.99,2019-02-27 16:55:00,697 Ridge St, Boston,MA,02215 +160720,USB-C Charging Cable,1,11.95,2019-02-17 02:07:00,422 Hill St, New York City,NY,10001 +160721,Macbook Pro Laptop,1,1700.0,2019-02-20 18:23:00,97 Washington St, San Francisco,CA,94016 +160722,Wired Headphones,1,11.99,2019-02-15 19:14:00,778 4th St, New York City,NY,10001 +160723,Lightning Charging Cable,1,14.95,2019-02-15 10:50:00,873 Maple St, Los Angeles,CA,90001 +160724,iPhone,1,700.0,2019-02-13 11:06:00,665 River St, Seattle,WA,98101 +160725,Apple Airpods Headphones,1,150.0,2019-02-21 08:04:00,882 8th St, Boston,MA,02215 +160726,27in FHD Monitor,1,149.99,2019-02-13 17:22:00,908 12th St, San Francisco,CA,94016 +160727,Lightning Charging Cable,2,14.95,2019-02-15 20:04:00,780 Sunset St, Boston,MA,02215 +160728,AA Batteries (4-pack),2,3.84,2019-02-23 11:48:00,187 South St, Seattle,WA,98101 +160729,27in FHD Monitor,1,149.99,2019-02-09 14:38:00,723 9th St, San Francisco,CA,94016 +160730,ThinkPad Laptop,1,999.99,2019-02-24 19:05:00,962 Maple St, Los Angeles,CA,90001 +160731,Apple Airpods Headphones,1,150.0,2019-02-12 15:25:00,85 5th St, San Francisco,CA,94016 +160732,AAA Batteries (4-pack),3,2.99,2019-02-27 19:44:00,99 Wilson St, Dallas,TX,75001 +160733,Apple Airpods Headphones,1,150.0,2019-02-27 16:49:00,887 11th St, Los Angeles,CA,90001 +160734,27in 4K Gaming Monitor,1,389.99,2019-02-07 15:41:00,667 Highland St, San Francisco,CA,94016 +160735,20in Monitor,1,109.99,2019-02-17 17:19:00,447 6th St, San Francisco,CA,94016 +160736,AAA Batteries (4-pack),2,2.99,2019-02-14 18:26:00,65 Chestnut St, San Francisco,CA,94016 +160737,AAA Batteries (4-pack),2,2.99,2019-02-04 15:39:00,560 Adams St, Atlanta,GA,30301 +160738,Apple Airpods Headphones,1,150.0,2019-02-15 21:05:00,444 Sunset St, Portland,OR,97035 +160739,34in Ultrawide Monitor,1,379.99,2019-02-12 23:23:00,37 Ridge St, Los Angeles,CA,90001 +160740,AA Batteries (4-pack),3,3.84,2019-02-24 20:05:00,35 1st St, Dallas,TX,75001 +160741,Bose SoundSport Headphones,1,99.99,2019-02-15 11:18:00,550 Lincoln St, Portland,ME,04101 +160742,34in Ultrawide Monitor,1,379.99,2019-02-16 08:50:00,98 Park St, San Francisco,CA,94016 +160743,Flatscreen TV,1,300.0,2019-02-11 19:45:00,200 Hickory St, San Francisco,CA,94016 +160744,Bose SoundSport Headphones,1,99.99,2019-02-27 19:05:00,3 Wilson St, Los Angeles,CA,90001 +160745,AA Batteries (4-pack),1,3.84,2019-02-20 12:30:00,639 Johnson St, New York City,NY,10001 +160746,USB-C Charging Cable,1,11.95,2019-02-13 22:24:00,427 4th St, Boston,MA,02215 +160747,USB-C Charging Cable,1,11.95,2019-02-21 05:10:00,393 10th St, San Francisco,CA,94016 +160748,AAA Batteries (4-pack),1,2.99,2019-02-03 15:53:00,50 Park St, Los Angeles,CA,90001 +160749,Lightning Charging Cable,2,14.95,2019-02-23 11:02:00,205 River St, Dallas,TX,75001 +160750,Bose SoundSport Headphones,1,99.99,2019-02-09 09:55:00,235 Center St, Dallas,TX,75001 +160751,Lightning Charging Cable,1,14.95,2019-02-23 16:31:00,295 Meadow St, New York City,NY,10001 +160752,iPhone,1,700.0,2019-02-22 20:00:00,737 Cherry St, Atlanta,GA,30301 +160753,AA Batteries (4-pack),1,3.84,2019-02-24 20:44:00,160 5th St, Seattle,WA,98101 +160754,USB-C Charging Cable,1,11.95,2019-02-20 13:03:00,682 9th St, Atlanta,GA,30301 +160755,Lightning Charging Cable,1,14.95,2019-02-21 00:34:00,98 Church St, Atlanta,GA,30301 +160756,AA Batteries (4-pack),2,3.84,2019-02-02 21:08:00,894 Highland St, Dallas,TX,75001 +160757,34in Ultrawide Monitor,1,379.99,2019-02-04 18:08:00,310 Meadow St, Los Angeles,CA,90001 +160758,AAA Batteries (4-pack),1,2.99,2019-02-01 14:19:00,729 Cherry St, Atlanta,GA,30301 +160759,AAA Batteries (4-pack),2,2.99,2019-02-18 13:50:00,553 Walnut St, Seattle,WA,98101 +160760,AAA Batteries (4-pack),2,2.99,2019-02-21 10:18:00,92 11th St, Los Angeles,CA,90001 +160761,USB-C Charging Cable,1,11.95,2019-02-02 09:50:00,572 Chestnut St, Austin,TX,73301 +160762,27in FHD Monitor,1,149.99,2019-02-25 06:24:00,103 Main St, Portland,OR,97035 +160763,Macbook Pro Laptop,1,1700.0,2019-02-24 18:32:00,874 4th St, San Francisco,CA,94016 +160764,Lightning Charging Cable,1,14.95,2019-02-20 14:50:00,130 8th St, Austin,TX,73301 +160765,34in Ultrawide Monitor,1,379.99,2019-02-23 09:42:00,744 River St, Austin,TX,73301 +160766,USB-C Charging Cable,1,11.95,2019-02-20 19:40:00,397 Center St, Boston,MA,02215 +160767,Bose SoundSport Headphones,1,99.99,2019-02-07 10:26:00,121 Dogwood St, Seattle,WA,98101 +160768,Macbook Pro Laptop,1,1700.0,2019-02-15 07:51:00,639 Ridge St, New York City,NY,10001 +160769,Macbook Pro Laptop,1,1700.0,2019-02-20 14:24:00,957 Hickory St, Seattle,WA,98101 +160770,AAA Batteries (4-pack),2,2.99,2019-02-02 08:32:00,27 Chestnut St, Seattle,WA,98101 +160771,Lightning Charging Cable,1,14.95,2019-02-24 21:06:00,412 Jefferson St, Los Angeles,CA,90001 +160772,Lightning Charging Cable,1,14.95,2019-02-05 19:37:00,792 13th St, Dallas,TX,75001 +160773,Macbook Pro Laptop,1,1700.0,2019-02-18 19:06:00,808 Forest St, Boston,MA,02215 +160774,Macbook Pro Laptop,1,1700.0,2019-02-17 18:11:00,219 Jackson St, Los Angeles,CA,90001 +160775,iPhone,1,700.0,2019-02-17 15:28:00,67 1st St, San Francisco,CA,94016 +160775,Lightning Charging Cable,1,14.95,2019-02-17 15:28:00,67 1st St, San Francisco,CA,94016 +160776,20in Monitor,1,109.99,2019-02-17 23:10:00,303 Spruce St, Los Angeles,CA,90001 +160777,Apple Airpods Headphones,1,150.0,2019-02-27 12:51:00,761 Park St, Dallas,TX,75001 +160778,Flatscreen TV,1,300.0,2019-02-21 11:14:00,870 5th St, New York City,NY,10001 +160779,Apple Airpods Headphones,1,150.0,2019-02-24 13:36:00,907 River St, Los Angeles,CA,90001 +160780,Lightning Charging Cable,1,14.95,2019-02-21 00:52:00,307 8th St, Dallas,TX,75001 +160781,AA Batteries (4-pack),2,3.84,2019-02-20 21:42:00,696 13th St, Los Angeles,CA,90001 +160782,Lightning Charging Cable,1,14.95,2019-02-08 11:52:00,971 Dogwood St, New York City,NY,10001 +160783,27in FHD Monitor,1,149.99,2019-02-08 20:32:00,294 Park St, San Francisco,CA,94016 +160784,Wired Headphones,1,11.99,2019-02-22 18:32:00,582 Lake St, Atlanta,GA,30301 +160785,Bose SoundSport Headphones,1,99.99,2019-02-01 13:32:00,976 Cherry St, San Francisco,CA,94016 +160786,Lightning Charging Cable,2,14.95,2019-02-24 08:03:00,563 1st St, Los Angeles,CA,90001 +160787,Bose SoundSport Headphones,1,99.99,2019-02-03 14:17:00,384 11th St, San Francisco,CA,94016 +160787,USB-C Charging Cable,2,11.95,2019-02-03 14:17:00,384 11th St, San Francisco,CA,94016 +160788,Bose SoundSport Headphones,1,99.99,2019-02-25 22:22:00,173 West St, New York City,NY,10001 +160789,Bose SoundSport Headphones,1,99.99,2019-02-08 18:29:00,621 Cherry St, Atlanta,GA,30301 +160790,Wired Headphones,1,11.99,2019-02-03 10:40:00,391 Dogwood St, New York City,NY,10001 +160791,27in 4K Gaming Monitor,1,389.99,2019-02-27 14:25:00,589 Hickory St, San Francisco,CA,94016 +160792,Apple Airpods Headphones,1,150.0,2019-02-02 09:56:00,613 Willow St, Boston,MA,02215 +160793,Lightning Charging Cable,1,14.95,2019-02-15 15:35:00,503 Johnson St, Seattle,WA,98101 +160794,Lightning Charging Cable,2,14.95,2019-02-17 07:16:00,71 11th St, Portland,ME,04101 +160795,Apple Airpods Headphones,1,150.0,2019-02-27 17:14:00,808 Chestnut St, San Francisco,CA,94016 +160796,Lightning Charging Cable,1,14.95,2019-02-01 15:10:00,762 Adams St, Boston,MA,02215 +160797,USB-C Charging Cable,1,11.95,2019-02-28 21:05:00,235 Cedar St, Dallas,TX,75001 +160798,iPhone,1,700.0,2019-02-08 21:49:00,291 Jackson St, Portland,OR,97035 +160799,Macbook Pro Laptop,1,1700.0,2019-02-22 21:51:00,561 Center St, Atlanta,GA,30301 +160800,Lightning Charging Cable,1,14.95,2019-02-08 12:25:00,637 Lakeview St, San Francisco,CA,94016 +160801,Wired Headphones,1,11.99,2019-02-12 00:21:00,544 Center St, Atlanta,GA,30301 +160802,Lightning Charging Cable,1,14.95,2019-02-26 12:23:00,593 Madison St, Atlanta,GA,30301 +160803,Lightning Charging Cable,1,14.95,2019-02-13 17:09:00,185 Center St, Dallas,TX,75001 +160803,Bose SoundSport Headphones,1,99.99,2019-02-13 17:09:00,185 Center St, Dallas,TX,75001 +160804,Apple Airpods Headphones,1,150.0,2019-02-26 13:51:00,31 West St, Boston,MA,02215 +160805,27in 4K Gaming Monitor,1,389.99,2019-02-18 14:23:00,208 Park St, New York City,NY,10001 +160806,AA Batteries (4-pack),1,3.84,2019-02-14 22:07:00,30 7th St, New York City,NY,10001 +160807,Flatscreen TV,1,300.0,2019-02-28 20:36:00,178 Pine St, San Francisco,CA,94016 +160808,34in Ultrawide Monitor,1,379.99,2019-02-06 21:03:00,989 Lake St, San Francisco,CA,94016 +160809,ThinkPad Laptop,1,999.99,2019-02-23 22:23:00,170 Lincoln St, Los Angeles,CA,90001 +160810,USB-C Charging Cable,1,11.95,2019-02-28 00:13:00,734 Willow St, Boston,MA,02215 +160811,Bose SoundSport Headphones,1,99.99,2019-02-18 08:45:00,438 Main St, Seattle,WA,98101 +160812,Bose SoundSport Headphones,1,99.99,2019-02-13 09:57:00,802 Spruce St, Los Angeles,CA,90001 +160813,ThinkPad Laptop,1,999.99,2019-02-03 19:37:00,550 Main St, Portland,OR,97035 +160814,ThinkPad Laptop,1,999.99,2019-02-26 12:48:00,777 Wilson St, Boston,MA,02215 +160815,AA Batteries (4-pack),2,3.84,2019-02-25 00:45:00,215 Church St, San Francisco,CA,94016 +160816,Google Phone,1,600.0,2019-02-05 12:15:00,553 6th St, San Francisco,CA,94016 +160817,Wired Headphones,1,11.99,2019-02-07 18:18:00,684 Pine St, Dallas,TX,75001 +160818,Bose SoundSport Headphones,1,99.99,2019-02-07 12:49:00,369 Jefferson St, San Francisco,CA,94016 +160819,Lightning Charging Cable,1,14.95,2019-02-05 17:41:00,458 Lakeview St, New York City,NY,10001 +160820,AA Batteries (4-pack),1,3.84,2019-02-18 12:24:00,511 Cedar St, Atlanta,GA,30301 +160821,20in Monitor,1,109.99,2019-02-26 11:59:00,991 Ridge St, Los Angeles,CA,90001 +160822,Flatscreen TV,1,300.0,2019-02-26 20:09:00,315 7th St, Dallas,TX,75001 +160823,AAA Batteries (4-pack),1,2.99,2019-02-21 12:56:00,575 Cherry St, New York City,NY,10001 +160824,27in FHD Monitor,1,149.99,2019-02-03 12:42:00,187 Hickory St, Los Angeles,CA,90001 +160825,Bose SoundSport Headphones,1,99.99,2019-02-27 10:55:00,139 6th St, Los Angeles,CA,90001 +160826,Macbook Pro Laptop,1,1700.0,2019-02-27 12:51:00,632 West St, New York City,NY,10001 +160827,AAA Batteries (4-pack),1,2.99,2019-02-26 17:20:00,952 8th St, Portland,OR,97035 +160828,27in 4K Gaming Monitor,1,389.99,2019-02-22 19:54:00,205 10th St, Dallas,TX,75001 +160829,Apple Airpods Headphones,1,150.0,2019-02-24 19:38:00,612 Hickory St, Seattle,WA,98101 +160830,AA Batteries (4-pack),2,3.84,2019-02-16 13:14:00,286 Willow St, Dallas,TX,75001 +160831,AAA Batteries (4-pack),1,2.99,2019-02-02 14:41:00,875 Adams St, Boston,MA,02215 +160832,Macbook Pro Laptop,1,1700.0,2019-02-09 13:36:00,41 Chestnut St, Atlanta,GA,30301 +160833,Lightning Charging Cable,2,14.95,2019-02-08 00:21:00,820 River St, Boston,MA,02215 +160834,ThinkPad Laptop,1,999.99,2019-02-02 15:16:00,8 Dogwood St, Austin,TX,73301 +160835,AA Batteries (4-pack),2,3.84,2019-02-22 22:25:00,301 Walnut St, Dallas,TX,75001 +160836,34in Ultrawide Monitor,1,379.99,2019-02-22 20:05:00,910 North St, Dallas,TX,75001 +160837,Lightning Charging Cable,1,14.95,2019-02-10 14:06:00,636 Johnson St, Austin,TX,73301 +160838,Google Phone,1,600.0,2019-02-05 08:15:00,453 Dogwood St, Los Angeles,CA,90001 +160839,USB-C Charging Cable,1,11.95,2019-02-05 08:23:00,502 Lake St, Seattle,WA,98101 +160840,USB-C Charging Cable,1,11.95,2019-02-01 12:11:00,694 7th St, San Francisco,CA,94016 +160841,Lightning Charging Cable,1,14.95,2019-02-11 13:04:00,176 River St, New York City,NY,10001 +160842,iPhone,1,700.0,2019-02-16 11:02:00,620 Park St, Los Angeles,CA,90001 +160843,Wired Headphones,1,11.99,2019-02-28 05:35:00,126 Lakeview St, Boston,MA,02215 +160844,iPhone,1,700.0,2019-02-03 11:43:00,163 Sunset St, Boston,MA,02215 +160845,Lightning Charging Cable,1,14.95,2019-02-14 09:01:00,123 Church St, Portland,ME,04101 +160846,iPhone,1,700.0,2019-02-09 12:30:00,566 Forest St, Los Angeles,CA,90001 +160847,Lightning Charging Cable,1,14.95,2019-02-02 08:58:00,216 Meadow St, San Francisco,CA,94016 +160848,Apple Airpods Headphones,1,150.0,2019-02-19 13:08:00,344 Pine St, Portland,OR,97035 +160849,Lightning Charging Cable,1,14.95,2019-02-28 19:07:00,869 Cedar St, San Francisco,CA,94016 +160850,Wired Headphones,1,11.99,2019-02-05 23:46:00,222 7th St, Los Angeles,CA,90001 +160850,AA Batteries (4-pack),1,3.84,2019-02-05 23:46:00,222 7th St, Los Angeles,CA,90001 +160851,Lightning Charging Cable,1,14.95,2019-02-07 18:02:00,115 Lake St, Seattle,WA,98101 +160851,27in 4K Gaming Monitor,1,389.99,2019-02-07 18:02:00,115 Lake St, Seattle,WA,98101 +160852,AA Batteries (4-pack),1,3.84,2019-02-04 13:54:00,537 Johnson St, Los Angeles,CA,90001 +160853,Lightning Charging Cable,1,14.95,2019-02-27 10:17:00,99 Jefferson St, Los Angeles,CA,90001 +160854,Flatscreen TV,1,300.0,2019-02-09 17:25:00,471 12th St, Boston,MA,02215 +160855,AAA Batteries (4-pack),2,2.99,2019-02-20 18:13:00,858 11th St, New York City,NY,10001 +160856,20in Monitor,1,109.99,2019-02-03 16:25:00,767 12th St, San Francisco,CA,94016 +160857,USB-C Charging Cable,2,11.95,2019-02-27 19:52:00,898 Dogwood St, New York City,NY,10001 +160858,Google Phone,1,600.0,2019-02-05 00:43:00,702 Meadow St, New York City,NY,10001 +160859,34in Ultrawide Monitor,1,379.99,2019-02-22 13:08:00,533 7th St, San Francisco,CA,94016 +160860,AA Batteries (4-pack),2,3.84,2019-02-16 17:19:00,253 Chestnut St, Atlanta,GA,30301 +160861,27in FHD Monitor,1,149.99,2019-02-15 05:40:00,560 River St, San Francisco,CA,94016 +160862,USB-C Charging Cable,1,11.95,2019-02-17 08:31:00,606 West St, Atlanta,GA,30301 +160863,Google Phone,1,600.0,2019-02-22 10:00:00,199 Johnson St, Dallas,TX,75001 +160863,Wired Headphones,1,11.99,2019-02-22 10:00:00,199 Johnson St, Dallas,TX,75001 +160864,AA Batteries (4-pack),3,3.84,2019-02-25 22:50:00,159 5th St, Austin,TX,73301 +160865,USB-C Charging Cable,1,11.95,2019-02-25 19:56:00,468 Wilson St, Portland,OR,97035 +160866,USB-C Charging Cable,1,11.95,2019-02-07 17:28:00,320 Johnson St, New York City,NY,10001 +160867,Lightning Charging Cable,1,14.95,2019-02-15 11:41:00,16 Willow St, San Francisco,CA,94016 +160868,AAA Batteries (4-pack),3,2.99,2019-02-15 19:51:00,104 Lincoln St, Seattle,WA,98101 +160869,AA Batteries (4-pack),1,3.84,2019-02-15 22:12:00,882 4th St, Los Angeles,CA,90001 +160870,AA Batteries (4-pack),1,3.84,2019-02-26 12:37:00,691 Cedar St, Dallas,TX,75001 +160871,Wired Headphones,1,11.99,2019-02-17 19:31:00,271 Main St, New York City,NY,10001 +160872,ThinkPad Laptop,1,999.99,2019-02-14 19:16:00,191 Meadow St, Boston,MA,02215 +160873,iPhone,1,700.0,2019-02-10 10:24:00,702 River St, San Francisco,CA,94016 +160873,Lightning Charging Cable,1,14.95,2019-02-10 10:24:00,702 River St, San Francisco,CA,94016 +160873,Apple Airpods Headphones,1,150.0,2019-02-10 10:24:00,702 River St, San Francisco,CA,94016 +160873,Wired Headphones,1,11.99,2019-02-10 10:24:00,702 River St, San Francisco,CA,94016 +160873,Google Phone,1,600.0,2019-02-10 10:24:00,702 River St, San Francisco,CA,94016 +160874,27in 4K Gaming Monitor,1,389.99,2019-02-01 21:56:00,841 Maple St, Los Angeles,CA,90001 +160875,Flatscreen TV,1,300.0,2019-02-04 14:00:00,386 Maple St, Boston,MA,02215 +160876,Lightning Charging Cable,1,14.95,2019-02-07 19:56:00,932 13th St, Boston,MA,02215 +160877,AA Batteries (4-pack),3,3.84,2019-02-06 17:56:00,973 Jefferson St, Portland,ME,04101 +160878,AAA Batteries (4-pack),1,2.99,2019-02-23 18:59:00,281 West St, Boston,MA,02215 +160879,27in FHD Monitor,1,149.99,2019-02-12 08:06:00,812 Wilson St, Dallas,TX,75001 +160880,AA Batteries (4-pack),1,3.84,2019-02-20 11:36:00,157 Chestnut St, Los Angeles,CA,90001 +160881,AA Batteries (4-pack),1,3.84,2019-02-26 21:16:00,759 Wilson St, San Francisco,CA,94016 +160882,Apple Airpods Headphones,1,150.0,2019-02-21 12:23:00,144 Pine St, New York City,NY,10001 +160883,Google Phone,1,600.0,2019-02-20 21:01:00,398 11th St, San Francisco,CA,94016 +160883,USB-C Charging Cable,1,11.95,2019-02-20 21:01:00,398 11th St, San Francisco,CA,94016 +160884,USB-C Charging Cable,1,11.95,2019-02-16 22:32:00,451 9th St, Portland,OR,97035 +160885,iPhone,1,700.0,2019-02-16 11:03:00,934 Chestnut St, Los Angeles,CA,90001 +160885,Lightning Charging Cable,1,14.95,2019-02-16 11:03:00,934 Chestnut St, Los Angeles,CA,90001 +160886,Lightning Charging Cable,1,14.95,2019-02-24 12:25:00,560 Walnut St, Boston,MA,02215 +160887,AA Batteries (4-pack),1,3.84,2019-02-10 13:00:00,539 Center St, Dallas,TX,75001 +160888,AA Batteries (4-pack),1,3.84,2019-02-10 11:13:00,540 Dogwood St, Seattle,WA,98101 +160889,AA Batteries (4-pack),3,3.84,2019-02-28 09:20:00,242 Washington St, Los Angeles,CA,90001 +160890,AA Batteries (4-pack),1,3.84,2019-02-16 09:25:00,910 Sunset St, New York City,NY,10001 +160891,Wired Headphones,1,11.99,2019-02-18 11:51:00,39 14th St, Seattle,WA,98101 +160892,Wired Headphones,1,11.99,2019-02-27 12:37:00,514 12th St, Atlanta,GA,30301 +160893,AAA Batteries (4-pack),1,2.99,2019-02-19 22:23:00,540 11th St, New York City,NY,10001 +160894,AAA Batteries (4-pack),1,2.99,2019-02-24 03:52:00,634 West St, Portland,OR,97035 +160894,Apple Airpods Headphones,1,150.0,2019-02-24 03:52:00,634 West St, Portland,OR,97035 +160895,Apple Airpods Headphones,1,150.0,2019-02-03 14:49:00,30 Elm St, Austin,TX,73301 +160896,Lightning Charging Cable,1,14.95,2019-02-26 17:15:00,625 9th St, San Francisco,CA,94016 +160897,Lightning Charging Cable,1,14.95,2019-02-09 00:20:00,772 Washington St, Dallas,TX,75001 +160898,Wired Headphones,1,11.99,2019-02-10 23:26:00,638 North St, Atlanta,GA,30301 +160899,AA Batteries (4-pack),2,3.84,2019-02-20 07:16:00,665 Church St, Los Angeles,CA,90001 +160900,AA Batteries (4-pack),1,3.84,2019-02-01 11:36:00,162 Hill St, New York City,NY,10001 +160901,AAA Batteries (4-pack),1,2.99,2019-02-02 18:36:00,4 Hickory St, Seattle,WA,98101 +160902,Apple Airpods Headphones,1,150.0,2019-02-28 09:29:00,291 2nd St, San Francisco,CA,94016 +160903,USB-C Charging Cable,1,11.95,2019-02-19 00:01:00,706 7th St, New York City,NY,10001 +160904,27in FHD Monitor,1,149.99,2019-02-21 08:04:00,512 Pine St, Boston,MA,02215 +160905,Wired Headphones,1,11.99,2019-02-28 08:26:00,186 Cherry St, Dallas,TX,75001 +160906,AAA Batteries (4-pack),3,2.99,2019-02-17 06:56:00,474 Lincoln St, Dallas,TX,75001 +160906,iPhone,1,700.0,2019-02-17 06:56:00,474 Lincoln St, Dallas,TX,75001 +160907,USB-C Charging Cable,1,11.95,2019-02-27 12:30:00,974 13th St, San Francisco,CA,94016 +160908,AAA Batteries (4-pack),1,2.99,2019-02-15 08:35:00,299 12th St, San Francisco,CA,94016 +160909,AA Batteries (4-pack),1,3.84,2019-02-21 09:28:00,220 13th St, Dallas,TX,75001 +160910,AAA Batteries (4-pack),1,2.99,2019-02-11 14:00:00,727 Maple St, Portland,OR,97035 +160911,Bose SoundSport Headphones,1,99.99,2019-02-06 07:44:00,278 Hickory St, Portland,OR,97035 +160912,27in 4K Gaming Monitor,1,389.99,2019-02-09 23:04:00,439 River St, Portland,ME,04101 +160912,USB-C Charging Cable,1,11.95,2019-02-09 23:04:00,439 River St, Portland,ME,04101 +160913,Lightning Charging Cable,1,14.95,2019-02-01 20:45:00,989 South St, New York City,NY,10001 +160914,AA Batteries (4-pack),1,3.84,2019-02-04 10:52:00,456 12th St, Dallas,TX,75001 +160915,Apple Airpods Headphones,1,150.0,2019-02-12 22:28:00,43 Washington St, San Francisco,CA,94016 +160916,Lightning Charging Cable,1,14.95,2019-02-28 19:37:00,135 Hill St, Seattle,WA,98101 +160917,USB-C Charging Cable,1,11.95,2019-02-25 11:54:00,120 Willow St, San Francisco,CA,94016 +160918,Lightning Charging Cable,1,14.95,2019-02-10 17:26:00,191 Hickory St, San Francisco,CA,94016 +160919,Lightning Charging Cable,1,14.95,2019-02-14 10:57:00,181 Ridge St, Atlanta,GA,30301 +160920,USB-C Charging Cable,1,11.95,2019-02-15 11:35:00,408 1st St, Boston,MA,02215 +160921,AAA Batteries (4-pack),1,2.99,2019-02-06 15:13:00,387 Wilson St, Los Angeles,CA,90001 +160922,Lightning Charging Cable,1,14.95,2019-02-03 20:59:00,658 Wilson St, Atlanta,GA,30301 +160923,27in FHD Monitor,1,149.99,2019-02-03 11:31:00,574 Willow St, New York City,NY,10001 +160924,Flatscreen TV,1,300.0,2019-02-04 12:21:00,522 West St, Seattle,WA,98101 +160925,Lightning Charging Cable,1,14.95,2019-02-14 15:24:00,535 Johnson St, Dallas,TX,75001 +160926,Apple Airpods Headphones,1,150.0,2019-02-23 14:09:00,637 Washington St, Los Angeles,CA,90001 +160927,Lightning Charging Cable,1,14.95,2019-02-07 23:02:00,38 Adams St, Atlanta,GA,30301 +160928,Vareebadd Phone,1,400.0,2019-02-13 15:59:00,242 Walnut St, Los Angeles,CA,90001 +160928,Wired Headphones,1,11.99,2019-02-13 15:59:00,242 Walnut St, Los Angeles,CA,90001 +160928,27in 4K Gaming Monitor,1,389.99,2019-02-13 15:59:00,242 Walnut St, Los Angeles,CA,90001 +160929,34in Ultrawide Monitor,1,379.99,2019-02-17 10:00:00,276 River St, Dallas,TX,75001 +160930,AAA Batteries (4-pack),1,2.99,2019-02-09 14:42:00,658 Lakeview St, Atlanta,GA,30301 +160931,Bose SoundSport Headphones,1,99.99,2019-02-14 03:37:00,157 North St, Seattle,WA,98101 +160932,Bose SoundSport Headphones,1,99.99,2019-02-02 17:48:00,628 Ridge St, Los Angeles,CA,90001 +160933,USB-C Charging Cable,2,11.95,2019-02-17 10:25:00,434 8th St, Los Angeles,CA,90001 +160934,27in 4K Gaming Monitor,1,389.99,2019-02-19 19:45:00,757 North St, Seattle,WA,98101 +160935,AA Batteries (4-pack),2,3.84,2019-02-03 09:00:00,514 Sunset St, San Francisco,CA,94016 +160936,Lightning Charging Cable,1,14.95,2019-02-17 07:51:00,552 Adams St, Portland,OR,97035 +160937,Lightning Charging Cable,1,14.95,2019-02-09 11:34:00,791 River St, New York City,NY,10001 +160938,Lightning Charging Cable,1,14.95,2019-02-03 14:11:00,603 Wilson St, Dallas,TX,75001 +160939,20in Monitor,1,109.99,2019-02-08 09:59:00,493 Meadow St, Los Angeles,CA,90001 +160940,USB-C Charging Cable,1,11.95,2019-02-06 11:11:00,330 South St, Atlanta,GA,30301 +160941,Apple Airpods Headphones,1,150.0,2019-02-20 19:41:00,120 West St, Los Angeles,CA,90001 +160942,34in Ultrawide Monitor,1,379.99,2019-02-18 18:23:00,862 Jackson St, Dallas,TX,75001 +160943,27in FHD Monitor,1,149.99,2019-02-03 22:23:00,56 Pine St, Seattle,WA,98101 +160944,Lightning Charging Cable,1,14.95,2019-02-03 14:09:00,11 8th St, Boston,MA,02215 +160945,Apple Airpods Headphones,1,150.0,2019-02-22 12:28:00,389 2nd St, Atlanta,GA,30301 +160946,iPhone,1,700.0,2019-02-16 11:43:00,284 Willow St, Seattle,WA,98101 +160947,Wired Headphones,1,11.99,2019-02-23 09:21:00,383 Adams St, New York City,NY,10001 +160948,AA Batteries (4-pack),3,3.84,2019-02-09 18:44:00,507 Cherry St, Boston,MA,02215 +160949,34in Ultrawide Monitor,1,379.99,2019-02-26 23:42:00,163 Elm St, Atlanta,GA,30301 +160950,AAA Batteries (4-pack),2,2.99,2019-02-27 15:15:00,589 Meadow St, San Francisco,CA,94016 +160951,AAA Batteries (4-pack),2,2.99,2019-02-25 13:47:00,182 Lakeview St, Los Angeles,CA,90001 +160952,USB-C Charging Cable,1,11.95,2019-02-28 18:10:00,431 Lincoln St, San Francisco,CA,94016 +160953,USB-C Charging Cable,1,11.95,2019-02-11 09:25:00,497 Meadow St, Atlanta,GA,30301 +160954,20in Monitor,1,109.99,2019-02-14 17:54:00,536 13th St, Los Angeles,CA,90001 +160955,AAA Batteries (4-pack),2,2.99,2019-02-02 04:34:00,497 5th St, Seattle,WA,98101 +160956,Apple Airpods Headphones,1,150.0,2019-02-14 21:21:00,357 Sunset St, Austin,TX,73301 +160957,Wired Headphones,1,11.99,2019-02-06 13:32:00,677 South St, Dallas,TX,75001 +160958,Apple Airpods Headphones,1,150.0,2019-02-21 01:33:00,287 Lincoln St, San Francisco,CA,94016 +160959,20in Monitor,1,109.99,2019-02-14 19:43:00,121 Church St, Seattle,WA,98101 +160960,AA Batteries (4-pack),1,3.84,2019-02-14 07:59:00,406 Dogwood St, Los Angeles,CA,90001 +160961,Google Phone,1,600.0,2019-02-01 19:22:00,380 Park St, New York City,NY,10001 +160961,USB-C Charging Cable,1,11.95,2019-02-01 19:22:00,380 Park St, New York City,NY,10001 +160962,AAA Batteries (4-pack),4,2.99,2019-02-03 10:53:00,317 Cedar St, Portland,OR,97035 +160963,Bose SoundSport Headphones,1,99.99,2019-02-07 15:05:00,132 Pine St, San Francisco,CA,94016 +160964,AAA Batteries (4-pack),1,2.99,2019-02-25 10:28:00,54 Jefferson St, Los Angeles,CA,90001 +160965,AA Batteries (4-pack),2,3.84,2019-03-01 01:25:00,98 Johnson St, San Francisco,CA,94016 +160966,27in 4K Gaming Monitor,1,389.99,2019-02-04 02:31:00,707 West St, Atlanta,GA,30301 +160967,Lightning Charging Cable,1,14.95,2019-02-10 22:25:00,214 Adams St, Los Angeles,CA,90001 +160968,27in 4K Gaming Monitor,1,389.99,2019-02-25 12:18:00,642 Walnut St, Seattle,WA,98101 +160969,iPhone,1,700.0,2019-02-19 15:17:00,824 Jackson St, Boston,MA,02215 +160970,Macbook Pro Laptop,1,1700.0,2019-02-04 08:14:00,450 Lincoln St, New York City,NY,10001 +160970,27in 4K Gaming Monitor,1,389.99,2019-02-04 08:14:00,450 Lincoln St, New York City,NY,10001 +160971,Wired Headphones,1,11.99,2019-02-25 18:52:00,126 Adams St, San Francisco,CA,94016 +160972,Lightning Charging Cable,1,14.95,2019-02-27 11:40:00,209 Lincoln St, Los Angeles,CA,90001 +160973,Flatscreen TV,1,300.0,2019-02-12 07:38:00,939 12th St, Los Angeles,CA,90001 +160974,AAA Batteries (4-pack),3,2.99,2019-02-13 21:21:00,756 Church St, Los Angeles,CA,90001 +160975,Flatscreen TV,1,300.0,2019-02-22 17:31:00,909 West St, New York City,NY,10001 +160976,Apple Airpods Headphones,1,150.0,2019-02-24 14:06:00,829 Center St, Boston,MA,02215 +160977,27in 4K Gaming Monitor,1,389.99,2019-02-14 16:59:00,734 Jackson St, Dallas,TX,75001 +160978,Wired Headphones,1,11.99,2019-02-09 21:47:00,907 Walnut St, Portland,OR,97035 +160979,Wired Headphones,1,11.99,2019-02-16 15:09:00,945 9th St, Atlanta,GA,30301 +160980,Wired Headphones,1,11.99,2019-02-25 18:39:00,666 10th St, New York City,NY,10001 +160981,27in 4K Gaming Monitor,1,389.99,2019-02-08 13:11:00,313 Adams St, Dallas,TX,75001 +160982,AAA Batteries (4-pack),1,2.99,2019-02-17 21:27:00,562 Hill St, Los Angeles,CA,90001 +160983,Apple Airpods Headphones,1,150.0,2019-02-04 13:58:00,194 Washington St, Seattle,WA,98101 +160984,27in FHD Monitor,1,149.99,2019-02-28 15:00:00,245 Lincoln St, San Francisco,CA,94016 +160985,Bose SoundSport Headphones,1,99.99,2019-02-03 10:47:00,249 Highland St, San Francisco,CA,94016 +160986,Bose SoundSport Headphones,1,99.99,2019-02-14 15:27:00,403 Pine St, Atlanta,GA,30301 +160987,Apple Airpods Headphones,1,150.0,2019-02-11 18:09:00,348 10th St, San Francisco,CA,94016 +160988,Apple Airpods Headphones,1,150.0,2019-02-11 12:46:00,186 Johnson St, Portland,OR,97035 +160989,Flatscreen TV,1,300.0,2019-02-28 11:07:00,593 Main St, Atlanta,GA,30301 +160990,Wired Headphones,1,11.99,2019-02-06 13:43:00,577 13th St, Austin,TX,73301 +160991,USB-C Charging Cable,1,11.95,2019-02-24 16:17:00,519 Wilson St, San Francisco,CA,94016 +160992,USB-C Charging Cable,1,11.95,2019-02-02 21:36:00,676 Maple St, Los Angeles,CA,90001 +160993,AA Batteries (4-pack),2,3.84,2019-02-27 19:27:00,4 River St, New York City,NY,10001 +160994,Apple Airpods Headphones,2,150.0,2019-02-08 00:32:00,207 11th St, New York City,NY,10001 +160995,Lightning Charging Cable,1,14.95,2019-02-11 10:49:00,492 Center St, Los Angeles,CA,90001 +160996,AA Batteries (4-pack),1,3.84,2019-02-06 02:37:00,484 Chestnut St, Los Angeles,CA,90001 +160997,AA Batteries (4-pack),1,3.84,2019-02-02 10:35:00,369 4th St, San Francisco,CA,94016 +160998,Bose SoundSport Headphones,1,99.99,2019-02-03 20:55:00,680 Ridge St, Seattle,WA,98101 +160999,AAA Batteries (4-pack),2,2.99,2019-02-11 13:55:00,252 7th St, Los Angeles,CA,90001 +161000,AA Batteries (4-pack),2,3.84,2019-02-11 17:00:00,946 Cherry St, Seattle,WA,98101 +161001,Bose SoundSport Headphones,1,99.99,2019-02-15 09:40:00,339 13th St, San Francisco,CA,94016 +161002,AAA Batteries (4-pack),1,2.99,2019-02-22 20:23:00,575 Walnut St, San Francisco,CA,94016 +161003,Bose SoundSport Headphones,1,99.99,2019-02-13 08:50:00,196 Meadow St, Boston,MA,02215 +161004,Google Phone,1,600.0,2019-02-10 16:13:00,563 Forest St, San Francisco,CA,94016 +161005,Lightning Charging Cable,1,14.95,2019-02-20 08:17:00,813 Hill St, Seattle,WA,98101 +161006,Bose SoundSport Headphones,1,99.99,2019-02-11 13:48:00,832 Washington St, Austin,TX,73301 +161007,iPhone,1,700.0,2019-02-11 10:27:00,709 13th St, Dallas,TX,75001 +161008,34in Ultrawide Monitor,1,379.99,2019-02-17 12:41:00,252 Forest St, Boston,MA,02215 +161009,iPhone,1,700.0,2019-02-06 18:32:00,551 13th St, Los Angeles,CA,90001 +161010,AAA Batteries (4-pack),3,2.99,2019-02-10 17:44:00,989 Cherry St, Portland,OR,97035 +161011,AA Batteries (4-pack),1,3.84,2019-02-24 13:26:00,513 12th St, Los Angeles,CA,90001 +161012,Macbook Pro Laptop,1,1700.0,2019-02-16 18:57:00,99 South St, Los Angeles,CA,90001 +161013,Bose SoundSport Headphones,1,99.99,2019-02-24 19:44:00,682 7th St, Austin,TX,73301 +161014,AAA Batteries (4-pack),2,2.99,2019-02-25 14:15:00,107 Walnut St, Boston,MA,02215 +161015,Google Phone,1,600.0,2019-02-04 22:51:00,634 Cedar St, Boston,MA,02215 +161015,USB-C Charging Cable,1,11.95,2019-02-04 22:51:00,634 Cedar St, Boston,MA,02215 +161016,Vareebadd Phone,1,400.0,2019-02-07 07:43:00,226 12th St, New York City,NY,10001 +161017,Lightning Charging Cable,1,14.95,2019-02-07 11:51:00,42 10th St, San Francisco,CA,94016 +161018,Google Phone,1,600.0,2019-02-18 17:41:00,598 4th St, Seattle,WA,98101 +161019,Wired Headphones,1,11.99,2019-02-20 21:47:00,279 Hickory St, Dallas,TX,75001 +161020,34in Ultrawide Monitor,1,379.99,2019-02-06 11:14:00,385 8th St, San Francisco,CA,94016 +161021,Bose SoundSport Headphones,1,99.99,2019-02-03 10:55:00,477 Willow St, Seattle,WA,98101 +161022,USB-C Charging Cable,1,11.95,2019-02-17 21:14:00,818 Elm St, San Francisco,CA,94016 +161023,34in Ultrawide Monitor,1,379.99,2019-02-27 11:53:00,96 River St, Seattle,WA,98101 +161024,Wired Headphones,1,11.99,2019-02-04 18:07:00,245 Sunset St, Boston,MA,02215 +161025,Lightning Charging Cable,1,14.95,2019-02-11 14:59:00,577 6th St, San Francisco,CA,94016 +161026,Lightning Charging Cable,1,14.95,2019-02-18 15:27:00,863 Sunset St, Austin,TX,73301 +161027,34in Ultrawide Monitor,1,379.99,2019-02-16 10:16:00,375 Washington St, San Francisco,CA,94016 +161028,USB-C Charging Cable,1,11.95,2019-02-07 13:13:00,470 Johnson St, San Francisco,CA,94016 +161029,34in Ultrawide Monitor,1,379.99,2019-02-11 22:41:00,235 West St, Austin,TX,73301 +161030,Lightning Charging Cable,1,14.95,2019-02-23 18:07:00,133 Forest St, Dallas,TX,75001 +161031,iPhone,1,700.0,2019-02-11 07:46:00,604 Center St, Boston,MA,02215 +161032,27in 4K Gaming Monitor,1,389.99,2019-02-11 09:01:00,225 1st St, San Francisco,CA,94016 +161033,Apple Airpods Headphones,1,150.0,2019-02-14 07:06:00,904 Lake St, Atlanta,GA,30301 +161034,ThinkPad Laptop,1,999.99,2019-02-26 14:38:00,964 Walnut St, New York City,NY,10001 +161035,USB-C Charging Cable,1,11.95,2019-02-26 20:59:00,477 Walnut St, Seattle,WA,98101 +161036,27in FHD Monitor,1,149.99,2019-02-28 21:50:00,445 Main St, Portland,OR,97035 +161037,Wired Headphones,1,11.99,2019-02-27 14:50:00,689 Elm St, Los Angeles,CA,90001 +161038,AA Batteries (4-pack),1,3.84,2019-02-15 09:21:00,611 River St, Los Angeles,CA,90001 +161039,27in FHD Monitor,1,149.99,2019-02-22 15:04:00,427 7th St, Portland,OR,97035 +161040,AAA Batteries (4-pack),3,2.99,2019-02-20 18:35:00,580 Maple St, New York City,NY,10001 +161041,34in Ultrawide Monitor,1,379.99,2019-02-22 10:29:00,383 Hill St, San Francisco,CA,94016 +161042,20in Monitor,1,109.99,2019-02-14 08:25:00,697 Lake St, New York City,NY,10001 +161043,Lightning Charging Cable,1,14.95,2019-02-15 10:51:00,234 13th St, New York City,NY,10001 +161044,AA Batteries (4-pack),1,3.84,2019-02-24 23:04:00,527 Park St, San Francisco,CA,94016 +161045,ThinkPad Laptop,1,999.99,2019-02-09 23:10:00,555 Chestnut St, San Francisco,CA,94016 +161046,AA Batteries (4-pack),1,3.84,2019-02-18 16:59:00,871 Cherry St, San Francisco,CA,94016 +161047,Lightning Charging Cable,1,14.95,2019-02-13 07:09:00,492 Jackson St, San Francisco,CA,94016 +161048,Google Phone,1,600.0,2019-02-12 16:35:00,675 8th St, New York City,NY,10001 +161049,Wired Headphones,1,11.99,2019-02-11 10:49:00,172 Johnson St, San Francisco,CA,94016 +161050,AA Batteries (4-pack),1,3.84,2019-02-21 08:34:00,731 Hickory St, New York City,NY,10001 +161051,AA Batteries (4-pack),2,3.84,2019-02-10 19:34:00,463 Elm St, Los Angeles,CA,90001 +161052,Bose SoundSport Headphones,1,99.99,2019-02-10 08:14:00,441 Jefferson St, Los Angeles,CA,90001 +161053,27in 4K Gaming Monitor,1,389.99,2019-02-09 20:50:00,523 Meadow St, San Francisco,CA,94016 +161054,AAA Batteries (4-pack),3,2.99,2019-02-11 14:45:00,395 4th St, New York City,NY,10001 +161055,Macbook Pro Laptop,1,1700.0,2019-02-05 15:42:00,235 River St, San Francisco,CA,94016 +161056,Macbook Pro Laptop,1,1700.0,2019-02-14 09:32:00,251 Forest St, San Francisco,CA,94016 +161057,ThinkPad Laptop,1,999.99,2019-02-12 05:03:00,477 Jackson St, New York City,NY,10001 +161058,Google Phone,1,600.0,2019-02-03 21:06:00,2 Ridge St, San Francisco,CA,94016 +161059,USB-C Charging Cable,1,11.95,2019-02-16 16:57:00,298 9th St, Seattle,WA,98101 +161060,Lightning Charging Cable,1,14.95,2019-02-13 14:19:00,207 Jefferson St, Austin,TX,73301 +161061,Apple Airpods Headphones,1,150.0,2019-02-17 21:50:00,225 Maple St, Seattle,WA,98101 +161062,27in 4K Gaming Monitor,1,389.99,2019-02-09 17:37:00,725 Adams St, San Francisco,CA,94016 +161063,AA Batteries (4-pack),2,3.84,2019-02-22 07:58:00,212 Meadow St, San Francisco,CA,94016 +161064,Lightning Charging Cable,1,14.95,2019-02-18 18:22:00,607 Ridge St, San Francisco,CA,94016 +161065,Apple Airpods Headphones,1,150.0,2019-02-28 01:47:00,618 Cedar St, Los Angeles,CA,90001 +161066,Bose SoundSport Headphones,1,99.99,2019-02-20 18:52:00,140 Hickory St, New York City,NY,10001 +161067,Flatscreen TV,1,300.0,2019-02-27 05:11:00,655 Center St, Dallas,TX,75001 +161068,USB-C Charging Cable,1,11.95,2019-02-26 17:34:00,870 Ridge St, Seattle,WA,98101 +161069,Wired Headphones,1,11.99,2019-02-09 19:12:00,42 Center St, San Francisco,CA,94016 +161070,27in 4K Gaming Monitor,1,389.99,2019-02-05 10:37:00,392 Lincoln St, New York City,NY,10001 +161071,AA Batteries (4-pack),1,3.84,2019-02-01 12:24:00,945 6th St, Seattle,WA,98101 +161072,Wired Headphones,1,11.99,2019-02-09 09:06:00,79 13th St, Atlanta,GA,30301 +161073,AAA Batteries (4-pack),1,2.99,2019-02-17 14:13:00,278 Hill St, San Francisco,CA,94016 +161074,27in FHD Monitor,1,149.99,2019-02-12 13:15:00,991 River St, New York City,NY,10001 +161075,27in 4K Gaming Monitor,1,389.99,2019-02-03 13:06:00,995 Ridge St, San Francisco,CA,94016 +161076,ThinkPad Laptop,1,999.99,2019-02-23 11:39:00,629 Lincoln St, New York City,NY,10001 +161077,iPhone,1,700.0,2019-02-06 18:08:00,571 Lakeview St, New York City,NY,10001 +161078,Bose SoundSport Headphones,2,99.99,2019-02-23 09:52:00,514 Cherry St, New York City,NY,10001 +161079,Wired Headphones,1,11.99,2019-02-20 14:31:00,788 Meadow St, Los Angeles,CA,90001 +161080,Lightning Charging Cable,1,14.95,2019-02-02 11:04:00,83 Center St, Boston,MA,02215 +161081,USB-C Charging Cable,1,11.95,2019-02-21 14:47:00,714 Adams St, New York City,NY,10001 +161082,Wired Headphones,1,11.99,2019-02-20 16:10:00,802 Willow St, New York City,NY,10001 +161083,Lightning Charging Cable,1,14.95,2019-02-14 14:56:00,487 Jefferson St, Los Angeles,CA,90001 +161084,AA Batteries (4-pack),1,3.84,2019-02-27 14:09:00,920 Maple St, New York City,NY,10001 +161085,USB-C Charging Cable,1,11.95,2019-02-18 13:21:00,325 Johnson St, Dallas,TX,75001 +161086,AA Batteries (4-pack),1,3.84,2019-02-05 19:50:00,997 Walnut St, New York City,NY,10001 +161087,Wired Headphones,2,11.99,2019-02-18 12:11:00,581 5th St, Los Angeles,CA,90001 +161088,USB-C Charging Cable,1,11.95,2019-02-24 15:23:00,841 South St, Atlanta,GA,30301 +161089,Bose SoundSport Headphones,1,99.99,2019-02-18 12:52:00,330 Hickory St, Dallas,TX,75001 +161090,iPhone,1,700.0,2019-02-01 13:21:00,680 Maple St, San Francisco,CA,94016 +161090,Wired Headphones,1,11.99,2019-02-01 13:21:00,680 Maple St, San Francisco,CA,94016 +161091,USB-C Charging Cable,1,11.95,2019-02-03 10:55:00,111 Cedar St, New York City,NY,10001 +161092,USB-C Charging Cable,1,11.95,2019-02-23 13:54:00,935 12th St, Austin,TX,73301 +161093,27in 4K Gaming Monitor,1,389.99,2019-02-23 09:42:00,236 Washington St, San Francisco,CA,94016 +161094,Lightning Charging Cable,1,14.95,2019-02-20 08:36:00,180 Maple St, San Francisco,CA,94016 +161095,27in 4K Gaming Monitor,1,389.99,2019-02-15 12:59:00,513 9th St, New York City,NY,10001 +161096,34in Ultrawide Monitor,1,379.99,2019-02-07 18:34:00,459 Sunset St, Atlanta,GA,30301 +161097,Apple Airpods Headphones,1,150.0,2019-02-27 21:16:00,129 North St, New York City,NY,10001 +161098,27in 4K Gaming Monitor,1,389.99,2019-02-14 13:31:00,482 Johnson St, New York City,NY,10001 +161099,Apple Airpods Headphones,1,150.0,2019-02-07 11:08:00,927 West St, Portland,ME,04101 +161100,Google Phone,1,600.0,2019-02-14 12:40:00,248 6th St, San Francisco,CA,94016 +161100,Bose SoundSport Headphones,1,99.99,2019-02-14 12:40:00,248 6th St, San Francisco,CA,94016 +161101,27in 4K Gaming Monitor,1,389.99,2019-02-02 08:23:00,933 Center St, Los Angeles,CA,90001 +161102,Wired Headphones,1,11.99,2019-02-26 19:13:00,23 Lake St, San Francisco,CA,94016 +161103,Wired Headphones,1,11.99,2019-02-22 15:52:00,314 Cedar St, Boston,MA,02215 +161104,27in 4K Gaming Monitor,1,389.99,2019-02-28 23:12:00,441 6th St, Dallas,TX,75001 +161105,27in 4K Gaming Monitor,1,389.99,2019-02-14 21:16:00,360 Center St, Boston,MA,02215 +161106,Wired Headphones,1,11.99,2019-02-02 15:01:00,387 Lake St, Seattle,WA,98101 +161107,USB-C Charging Cable,1,11.95,2019-02-02 08:57:00,377 8th St, San Francisco,CA,94016 +161108,Apple Airpods Headphones,1,150.0,2019-02-11 08:29:00,831 Church St, Los Angeles,CA,90001 +161109,AAA Batteries (4-pack),3,2.99,2019-02-24 17:11:00,42 4th St, Seattle,WA,98101 +161110,27in FHD Monitor,1,149.99,2019-02-20 21:19:00,978 Washington St, Portland,OR,97035 +161111,27in FHD Monitor,1,149.99,2019-02-10 18:47:00,926 Lincoln St, Boston,MA,02215 +161111,34in Ultrawide Monitor,1,379.99,2019-02-10 18:47:00,926 Lincoln St, Boston,MA,02215 +161112,Vareebadd Phone,1,400.0,2019-02-20 10:34:00,953 2nd St, Dallas,TX,75001 +161113,Apple Airpods Headphones,1,150.0,2019-02-01 17:46:00,280 12th St, Boston,MA,02215 +161114,AA Batteries (4-pack),1,3.84,2019-02-17 15:57:00,783 9th St, San Francisco,CA,94016 +161115,Flatscreen TV,1,300.0,2019-02-19 10:01:00,586 Church St, Seattle,WA,98101 +161116,Lightning Charging Cable,1,14.95,2019-02-19 19:12:00,347 7th St, Boston,MA,02215 +161117,AA Batteries (4-pack),1,3.84,2019-02-11 18:01:00,313 Chestnut St, Los Angeles,CA,90001 +161118,27in 4K Gaming Monitor,1,389.99,2019-02-04 17:56:00,94 West St, Portland,OR,97035 +161119,USB-C Charging Cable,1,11.95,2019-02-16 19:38:00,142 Wilson St, Atlanta,GA,30301 +161120,Lightning Charging Cable,1,14.95,2019-02-18 08:01:00,198 7th St, San Francisco,CA,94016 +161121,AAA Batteries (4-pack),6,2.99,2019-02-16 09:35:00,225 11th St, Portland,ME,04101 +161122,27in 4K Gaming Monitor,1,389.99,2019-02-09 12:18:00,807 Sunset St, Los Angeles,CA,90001 +161123,Apple Airpods Headphones,1,150.0,2019-02-08 20:34:00,301 2nd St, Boston,MA,02215 +161124,Bose SoundSport Headphones,1,99.99,2019-02-25 02:20:00,498 Hickory St, Los Angeles,CA,90001 +161125,AA Batteries (4-pack),1,3.84,2019-02-03 05:52:00,711 Lake St, San Francisco,CA,94016 +161126,Wired Headphones,1,11.99,2019-02-23 20:03:00,787 Park St, Atlanta,GA,30301 +161127,AA Batteries (4-pack),1,3.84,2019-02-09 17:31:00,472 13th St, New York City,NY,10001 +161128,Lightning Charging Cable,1,14.95,2019-02-13 20:22:00,935 Lincoln St, San Francisco,CA,94016 +161129,AA Batteries (4-pack),1,3.84,2019-02-22 18:16:00,479 Elm St, Atlanta,GA,30301 +161130,Wired Headphones,1,11.99,2019-02-20 15:17:00,962 Jackson St, Boston,MA,02215 +161131,AAA Batteries (4-pack),1,2.99,2019-02-16 15:23:00,302 11th St, New York City,NY,10001 +161132,AA Batteries (4-pack),1,3.84,2019-02-21 14:50:00,379 Wilson St, Austin,TX,73301 +161133,USB-C Charging Cable,1,11.95,2019-02-25 10:45:00,44 Wilson St, Los Angeles,CA,90001 +161134,27in FHD Monitor,1,149.99,2019-02-22 21:05:00,41 Lakeview St, San Francisco,CA,94016 +161135,Apple Airpods Headphones,1,150.0,2019-02-12 12:19:00,774 West St, Austin,TX,73301 +161136,USB-C Charging Cable,1,11.95,2019-02-12 09:04:00,333 Main St, San Francisco,CA,94016 +161137,USB-C Charging Cable,1,11.95,2019-02-28 23:39:00,140 1st St, Austin,TX,73301 +161138,Apple Airpods Headphones,1,150.0,2019-02-03 18:08:00,853 Maple St, Los Angeles,CA,90001 +161139,AA Batteries (4-pack),2,3.84,2019-02-01 22:24:00,644 4th St, Seattle,WA,98101 +161140,AAA Batteries (4-pack),1,2.99,2019-02-23 18:56:00,381 Walnut St, Seattle,WA,98101 +161141,USB-C Charging Cable,1,11.95,2019-02-07 19:54:00,3 1st St, Los Angeles,CA,90001 +161142,Flatscreen TV,1,300.0,2019-02-22 14:34:00,222 5th St, Portland,OR,97035 +161143,iPhone,1,700.0,2019-02-03 22:33:00,326 Center St, San Francisco,CA,94016 +161144,AA Batteries (4-pack),1,3.84,2019-02-19 17:20:00,320 14th St, Los Angeles,CA,90001 +161145,Lightning Charging Cable,2,14.95,2019-02-11 20:10:00,81 7th St, Portland,OR,97035 +161146,27in 4K Gaming Monitor,1,389.99,2019-02-15 13:09:00,549 Johnson St, Portland,OR,97035 +161147,Wired Headphones,1,11.99,2019-02-10 21:40:00,230 Chestnut St, San Francisco,CA,94016 +161148,Bose SoundSport Headphones,1,99.99,2019-02-02 09:46:00,226 Hill St, Portland,OR,97035 +161149,iPhone,1,700.0,2019-02-19 17:50:00,228 Highland St, San Francisco,CA,94016 +161149,Lightning Charging Cable,1,14.95,2019-02-19 17:50:00,228 Highland St, San Francisco,CA,94016 +161150,USB-C Charging Cable,1,11.95,2019-02-11 20:25:00,329 Jefferson St, Los Angeles,CA,90001 +161151,AAA Batteries (4-pack),1,2.99,2019-02-01 18:00:00,206 1st St, Seattle,WA,98101 +161152,USB-C Charging Cable,2,11.95,2019-02-20 10:10:00,529 Spruce St, Seattle,WA,98101 +161153,34in Ultrawide Monitor,1,379.99,2019-02-08 20:46:00,904 Forest St, Atlanta,GA,30301 +161154,Apple Airpods Headphones,1,150.0,2019-02-17 23:30:00,63 8th St, Boston,MA,02215 +161155,AAA Batteries (4-pack),1,2.99,2019-02-18 14:55:00,452 Cedar St, Austin,TX,73301 +161156,AA Batteries (4-pack),1,3.84,2019-02-21 21:45:00,965 Ridge St, Austin,TX,73301 +161157,AA Batteries (4-pack),1,3.84,2019-02-10 11:32:00,204 Lakeview St, Atlanta,GA,30301 +161158,Wired Headphones,1,11.99,2019-02-26 07:30:00,269 Park St, Los Angeles,CA,90001 +161159,USB-C Charging Cable,2,11.95,2019-02-21 01:43:00,289 Chestnut St, Los Angeles,CA,90001 +161159,Bose SoundSport Headphones,1,99.99,2019-02-21 01:43:00,289 Chestnut St, Los Angeles,CA,90001 +161160,20in Monitor,1,109.99,2019-02-18 09:24:00,997 Adams St, Portland,OR,97035 +161161,AA Batteries (4-pack),1,3.84,2019-02-23 18:57:00,819 Spruce St, Seattle,WA,98101 +161162,iPhone,1,700.0,2019-02-06 11:47:00,640 Cedar St, San Francisco,CA,94016 +161163,iPhone,1,700.0,2019-02-27 09:21:00,410 10th St, Los Angeles,CA,90001 +161164,Lightning Charging Cable,1,14.95,2019-02-28 12:30:00,355 12th St, Atlanta,GA,30301 +161165,AA Batteries (4-pack),1,3.84,2019-02-18 09:45:00,231 South St, Boston,MA,02215 +161166,Bose SoundSport Headphones,1,99.99,2019-02-14 14:49:00,786 North St, San Francisco,CA,94016 +161167,AA Batteries (4-pack),2,3.84,2019-02-03 17:17:00,957 Ridge St, Atlanta,GA,30301 +161168,27in FHD Monitor,1,149.99,2019-02-22 15:47:00,460 Pine St, San Francisco,CA,94016 +161169,AAA Batteries (4-pack),3,2.99,2019-02-04 10:16:00,529 Dogwood St, San Francisco,CA,94016 +161170,AAA Batteries (4-pack),1,2.99,2019-02-03 09:54:00,32 Maple St, Austin,TX,73301 +161171,AAA Batteries (4-pack),1,2.99,2019-02-22 11:09:00,915 Walnut St, Los Angeles,CA,90001 +161172,iPhone,1,700.0,2019-02-02 12:59:00,379 13th St, New York City,NY,10001 +161172,Lightning Charging Cable,1,14.95,2019-02-02 12:59:00,379 13th St, New York City,NY,10001 +161173,Lightning Charging Cable,1,14.95,2019-02-15 07:39:00,184 2nd St, Atlanta,GA,30301 +161174,27in 4K Gaming Monitor,1,389.99,2019-02-02 12:46:00,866 Walnut St, Boston,MA,02215 +161175,Lightning Charging Cable,1,14.95,2019-02-27 23:42:00,625 7th St, Los Angeles,CA,90001 +161176,Flatscreen TV,1,300.0,2019-02-26 07:13:00,932 Park St, New York City,NY,10001 +161177,Bose SoundSport Headphones,2,99.99,2019-02-01 17:45:00,47 Cherry St, San Francisco,CA,94016 +161178,AA Batteries (4-pack),1,3.84,2019-02-16 22:43:00,262 Hickory St, New York City,NY,10001 +161179,Apple Airpods Headphones,1,150.0,2019-02-25 09:52:00,287 7th St, Seattle,WA,98101 +161180,27in 4K Gaming Monitor,1,389.99,2019-02-12 07:07:00,142 Madison St, Portland,ME,04101 +161181,AA Batteries (4-pack),1,3.84,2019-02-25 18:21:00,765 Elm St, San Francisco,CA,94016 +161182,Bose SoundSport Headphones,1,99.99,2019-02-24 20:13:00,44 Washington St, Atlanta,GA,30301 +161183,iPhone,1,700.0,2019-02-14 15:08:00,139 Dogwood St, San Francisco,CA,94016 +161183,ThinkPad Laptop,1,999.99,2019-02-14 15:08:00,139 Dogwood St, San Francisco,CA,94016 +161184,Bose SoundSport Headphones,1,99.99,2019-02-04 15:09:00,144 Adams St, San Francisco,CA,94016 +161185,Apple Airpods Headphones,1,150.0,2019-02-12 17:57:00,318 1st St, Boston,MA,02215 +161186,Google Phone,1,600.0,2019-02-16 16:29:00,94 Church St, San Francisco,CA,94016 +161187,AAA Batteries (4-pack),1,2.99,2019-02-16 11:37:00,586 Elm St, San Francisco,CA,94016 +161188,iPhone,1,700.0,2019-02-14 20:30:00,808 1st St, New York City,NY,10001 +161189,USB-C Charging Cable,1,11.95,2019-02-27 16:30:00,923 13th St, Los Angeles,CA,90001 +161190,USB-C Charging Cable,1,11.95,2019-02-18 20:24:00,688 Highland St, Boston,MA,02215 +161191,Wired Headphones,1,11.99,2019-02-05 11:50:00,807 Maple St, Atlanta,GA,30301 +161192,iPhone,1,700.0,2019-02-22 21:45:00,51 Adams St, Los Angeles,CA,90001 +161193,Wired Headphones,1,11.99,2019-02-21 02:24:00,703 6th St, San Francisco,CA,94016 +161194,Wired Headphones,1,11.99,2019-02-12 19:44:00,937 4th St, Atlanta,GA,30301 +161195,Apple Airpods Headphones,1,150.0,2019-02-13 09:43:00,946 Highland St, Seattle,WA,98101 +161196,AA Batteries (4-pack),1,3.84,2019-02-07 15:31:00,225 2nd St, Boston,MA,02215 +161197,AAA Batteries (4-pack),3,2.99,2019-02-07 10:40:00,104 Church St, San Francisco,CA,94016 +161198,Wired Headphones,1,11.99,2019-02-08 10:11:00,773 8th St, Los Angeles,CA,90001 +161199,Wired Headphones,1,11.99,2019-02-15 11:04:00,753 Church St, San Francisco,CA,94016 +161200,Bose SoundSport Headphones,1,99.99,2019-02-28 18:24:00,46 Cherry St, Atlanta,GA,30301 +161201,34in Ultrawide Monitor,1,379.99,2019-02-04 19:28:00,12 Madison St, San Francisco,CA,94016 +161202,Macbook Pro Laptop,1,1700.0,2019-02-08 05:40:00,464 Spruce St, New York City,NY,10001 +161203,Lightning Charging Cable,1,14.95,2019-02-01 17:50:00,41 Jackson St, San Francisco,CA,94016 +161204,USB-C Charging Cable,1,11.95,2019-02-28 12:47:00,775 10th St, Seattle,WA,98101 +161205,Apple Airpods Headphones,1,150.0,2019-02-18 20:51:00,542 River St, San Francisco,CA,94016 +161206,Apple Airpods Headphones,1,150.0,2019-02-06 20:31:00,756 6th St, Los Angeles,CA,90001 +161207,27in FHD Monitor,1,149.99,2019-02-13 18:21:00,209 13th St, Dallas,TX,75001 +161208,Lightning Charging Cable,1,14.95,2019-02-25 16:43:00,474 1st St, Dallas,TX,75001 +161209,USB-C Charging Cable,1,11.95,2019-02-22 15:48:00,388 Jefferson St, San Francisco,CA,94016 +161210,AA Batteries (4-pack),1,3.84,2019-02-13 11:26:00,210 Center St, Boston,MA,02215 +161211,iPhone,1,700.0,2019-02-27 21:18:00,703 Highland St, Dallas,TX,75001 +161212,iPhone,1,700.0,2019-02-09 17:49:00,60 Walnut St, Seattle,WA,98101 +161212,Lightning Charging Cable,1,14.95,2019-02-09 17:49:00,60 Walnut St, Seattle,WA,98101 +161213,Apple Airpods Headphones,1,150.0,2019-02-10 15:39:00,562 12th St, San Francisco,CA,94016 +161214,AAA Batteries (4-pack),1,2.99,2019-02-06 13:50:00,359 Meadow St, New York City,NY,10001 +161215,iPhone,1,700.0,2019-02-02 19:13:00,191 Wilson St, Atlanta,GA,30301 +161216,Macbook Pro Laptop,1,1700.0,2019-02-28 20:02:00,414 Sunset St, Los Angeles,CA,90001 +161217,Flatscreen TV,1,300.0,2019-02-14 21:11:00,665 Cedar St, San Francisco,CA,94016 +161218,Lightning Charging Cable,1,14.95,2019-02-24 20:53:00,181 Main St, Dallas,TX,75001 +161219,Flatscreen TV,1,300.0,2019-02-17 18:15:00,500 Center St, Boston,MA,02215 +161220,Google Phone,1,600.0,2019-02-12 23:21:00,560 1st St, Dallas,TX,75001 +161220,USB-C Charging Cable,1,11.95,2019-02-12 23:21:00,560 1st St, Dallas,TX,75001 +161221,AA Batteries (4-pack),2,3.84,2019-02-26 09:38:00,300 Washington St, Los Angeles,CA,90001 +161222,Bose SoundSport Headphones,1,99.99,2019-02-20 12:55:00,469 Elm St, Los Angeles,CA,90001 +161223,Apple Airpods Headphones,1,150.0,2019-02-06 19:28:00,225 Lake St, Boston,MA,02215 +161224,USB-C Charging Cable,3,11.95,2019-02-22 12:15:00,824 8th St, Los Angeles,CA,90001 +161225,Vareebadd Phone,1,400.0,2019-02-16 21:13:00,285 Lakeview St, San Francisco,CA,94016 +161226,Bose SoundSport Headphones,1,99.99,2019-02-03 10:40:00,571 Cedar St, Austin,TX,73301 +161227,Bose SoundSport Headphones,1,99.99,2019-02-02 00:12:00,731 Spruce St, Austin,TX,73301 +161228,AA Batteries (4-pack),1,3.84,2019-02-28 19:27:00,279 Forest St, New York City,NY,10001 +161229,Lightning Charging Cable,1,14.95,2019-02-28 03:09:00,623 Park St, San Francisco,CA,94016 +161230,Vareebadd Phone,1,400.0,2019-02-11 22:08:00,693 Adams St, New York City,NY,10001 +161231,Lightning Charging Cable,1,14.95,2019-02-10 11:12:00,3 Wilson St, San Francisco,CA,94016 +161232,USB-C Charging Cable,1,11.95,2019-02-20 13:10:00,110 Park St, Atlanta,GA,30301 +161233,Wired Headphones,1,11.99,2019-02-12 15:53:00,530 Jackson St, Atlanta,GA,30301 +161234,USB-C Charging Cable,1,11.95,2019-02-04 00:02:00,418 Spruce St, New York City,NY,10001 +161235,USB-C Charging Cable,1,11.95,2019-02-15 05:01:00,759 West St, Atlanta,GA,30301 +161236,Flatscreen TV,1,300.0,2019-02-19 13:10:00,492 12th St, Atlanta,GA,30301 +161237,Wired Headphones,1,11.99,2019-02-01 14:09:00,121 2nd St, Boston,MA,02215 +161238,USB-C Charging Cable,1,11.95,2019-02-25 17:13:00,420 Spruce St, Seattle,WA,98101 +161239,ThinkPad Laptop,1,999.99,2019-02-03 15:32:00,797 Washington St, San Francisco,CA,94016 +161240,Lightning Charging Cable,1,14.95,2019-02-14 23:56:00,173 7th St, New York City,NY,10001 +161241,Lightning Charging Cable,2,14.95,2019-02-18 12:11:00,409 Center St, Los Angeles,CA,90001 +161242,Wired Headphones,1,11.99,2019-02-17 08:06:00,56 12th St, New York City,NY,10001 +161243,USB-C Charging Cable,1,11.95,2019-02-08 12:50:00,79 Cedar St, Los Angeles,CA,90001 +161244,Bose SoundSport Headphones,1,99.99,2019-02-13 12:43:00,893 2nd St, New York City,NY,10001 +161244,USB-C Charging Cable,1,11.95,2019-02-13 12:43:00,893 2nd St, New York City,NY,10001 +161245,AAA Batteries (4-pack),1,2.99,2019-02-06 09:01:00,404 North St, San Francisco,CA,94016 +161246,Lightning Charging Cable,1,14.95,2019-02-27 21:21:00,610 West St, Portland,OR,97035 +161247,34in Ultrawide Monitor,1,379.99,2019-02-18 09:43:00,669 11th St, Boston,MA,02215 +161248,AA Batteries (4-pack),1,3.84,2019-02-25 21:04:00,380 8th St, Atlanta,GA,30301 +161249,Bose SoundSport Headphones,1,99.99,2019-02-25 16:43:00,525 Meadow St, Los Angeles,CA,90001 +161250,Lightning Charging Cable,1,14.95,2019-02-28 13:04:00,676 Highland St, San Francisco,CA,94016 +161251,LG Washing Machine,1,600.0,2019-02-08 14:38:00,282 Cedar St, San Francisco,CA,94016 +161252,USB-C Charging Cable,1,11.95,2019-02-15 21:16:00,813 1st St, Atlanta,GA,30301 +161253,AAA Batteries (4-pack),3,2.99,2019-02-14 21:09:00,409 Lincoln St, Los Angeles,CA,90001 +161254,Google Phone,1,600.0,2019-02-25 18:56:00,790 14th St, Seattle,WA,98101 +161255,USB-C Charging Cable,1,11.95,2019-02-16 12:40:00,85 Sunset St, Atlanta,GA,30301 +161256,Macbook Pro Laptop,1,1700.0,2019-02-06 18:46:00,516 Walnut St, Los Angeles,CA,90001 +161257,Lightning Charging Cable,1,14.95,2019-02-21 12:45:00,208 11th St, Dallas,TX,75001 +161258,AAA Batteries (4-pack),1,2.99,2019-02-06 00:54:00,640 Chestnut St, Austin,TX,73301 +161259,AA Batteries (4-pack),1,3.84,2019-02-22 18:01:00,365 Pine St, Portland,OR,97035 +161260,AAA Batteries (4-pack),1,2.99,2019-02-15 19:48:00,916 12th St, Atlanta,GA,30301 +161261,Macbook Pro Laptop,1,1700.0,2019-02-25 14:24:00,976 Lake St, Los Angeles,CA,90001 +161262,Google Phone,1,600.0,2019-02-09 15:05:00,471 7th St, Boston,MA,02215 +161263,Bose SoundSport Headphones,1,99.99,2019-02-01 19:20:00,819 Main St, Atlanta,GA,30301 +161263,AAA Batteries (4-pack),2,2.99,2019-02-01 19:20:00,819 Main St, Atlanta,GA,30301 +161264,USB-C Charging Cable,1,11.95,2019-02-25 18:21:00,395 Jefferson St, San Francisco,CA,94016 +161265,Apple Airpods Headphones,1,150.0,2019-02-08 15:16:00,629 10th St, Boston,MA,02215 +161266,Lightning Charging Cable,1,14.95,2019-02-11 18:57:00,411 Dogwood St, Los Angeles,CA,90001 +161267,34in Ultrawide Monitor,1,379.99,2019-02-18 18:40:00,155 Willow St, Dallas,TX,75001 +161268,Wired Headphones,1,11.99,2019-02-05 20:02:00,497 Pine St, New York City,NY,10001 +161269,Wired Headphones,2,11.99,2019-02-27 12:43:00,650 Hill St, San Francisco,CA,94016 +161270,Flatscreen TV,1,300.0,2019-02-05 20:51:00,590 9th St, Portland,OR,97035 +161271,Apple Airpods Headphones,1,150.0,2019-02-16 06:06:00,85 Walnut St, Atlanta,GA,30301 +161272,Wired Headphones,2,11.99,2019-02-14 10:02:00,579 Lakeview St, Seattle,WA,98101 +161273,AA Batteries (4-pack),1,3.84,2019-02-24 23:14:00,538 Johnson St, Seattle,WA,98101 +161274,AA Batteries (4-pack),1,3.84,2019-02-27 22:57:00,125 Forest St, San Francisco,CA,94016 +161275,Lightning Charging Cable,1,14.95,2019-02-28 13:02:00,784 River St, New York City,NY,10001 +161276,AAA Batteries (4-pack),2,2.99,2019-02-04 17:20:00,230 Johnson St, Los Angeles,CA,90001 +161277,USB-C Charging Cable,2,11.95,2019-02-26 20:13:00,374 Forest St, Los Angeles,CA,90001 +161278,LG Washing Machine,1,600.0,2019-02-26 19:11:00,950 2nd St, Los Angeles,CA,90001 +161279,Apple Airpods Headphones,1,150.0,2019-02-19 17:00:00,167 Ridge St, New York City,NY,10001 +161280,Lightning Charging Cable,1,14.95,2019-02-22 11:58:00,638 Cedar St, New York City,NY,10001 +161281,Lightning Charging Cable,2,14.95,2019-02-22 19:36:00,821 Walnut St, Los Angeles,CA,90001 +161282,iPhone,1,700.0,2019-02-16 19:47:00,811 Willow St, San Francisco,CA,94016 +161282,Wired Headphones,1,11.99,2019-02-16 19:47:00,811 Willow St, San Francisco,CA,94016 +161283,27in FHD Monitor,1,149.99,2019-02-24 00:25:00,404 Center St, Los Angeles,CA,90001 +161284,AAA Batteries (4-pack),1,2.99,2019-02-18 12:05:00,866 North St, San Francisco,CA,94016 +161285,Macbook Pro Laptop,1,1700.0,2019-02-20 17:33:00,110 Spruce St, San Francisco,CA,94016 +161286,27in 4K Gaming Monitor,1,389.99,2019-02-01 15:42:00,594 9th St, Dallas,TX,75001 +161287,AAA Batteries (4-pack),3,2.99,2019-02-28 08:10:00,11 10th St, Portland,OR,97035 +161288,Apple Airpods Headphones,1,150.0,2019-02-18 20:05:00,177 North St, Los Angeles,CA,90001 +161289,USB-C Charging Cable,1,11.95,2019-02-08 22:19:00,760 Jackson St, San Francisco,CA,94016 +161290,Lightning Charging Cable,1,14.95,2019-02-27 02:50:00,940 Cherry St, San Francisco,CA,94016 +161291,Bose SoundSport Headphones,1,99.99,2019-02-04 16:56:00,392 Sunset St, Dallas,TX,75001 +161292,Flatscreen TV,1,300.0,2019-02-24 21:10:00,149 4th St, New York City,NY,10001 +161293,Apple Airpods Headphones,1,150.0,2019-02-27 14:01:00,730 Lakeview St, San Francisco,CA,94016 +161294,AAA Batteries (4-pack),1,2.99,2019-02-14 12:16:00,225 2nd St, Boston,MA,02215 +161295,27in FHD Monitor,1,149.99,2019-02-07 09:57:00,482 Maple St, New York City,NY,10001 +161296,Lightning Charging Cable,1,14.95,2019-02-11 15:48:00,270 Highland St, Seattle,WA,98101 +161297,USB-C Charging Cable,1,11.95,2019-02-26 01:57:00,694 Cherry St, Seattle,WA,98101 +161298,AA Batteries (4-pack),2,3.84,2019-02-05 07:07:00,300 Cherry St, San Francisco,CA,94016 +161299,AA Batteries (4-pack),1,3.84,2019-02-23 14:41:00,256 Church St, San Francisco,CA,94016 +161300,AAA Batteries (4-pack),2,2.99,2019-02-19 10:39:00,887 Hill St, Los Angeles,CA,90001 +161301,Apple Airpods Headphones,1,150.0,2019-02-01 13:36:00,276 Forest St, San Francisco,CA,94016 +161302,USB-C Charging Cable,1,11.95,2019-02-24 22:42:00,581 Dogwood St, Los Angeles,CA,90001 +161303,AA Batteries (4-pack),1,3.84,2019-02-12 13:57:00,970 14th St, Dallas,TX,75001 +161304,Lightning Charging Cable,1,14.95,2019-02-22 10:15:00,556 Sunset St, Los Angeles,CA,90001 +161305,Apple Airpods Headphones,1,150.0,2019-02-03 19:00:00,589 9th St, San Francisco,CA,94016 +161306,USB-C Charging Cable,1,11.95,2019-02-25 21:49:00,592 Lakeview St, Portland,OR,97035 +161307,Lightning Charging Cable,1,14.95,2019-02-15 08:38:00,196 13th St, Los Angeles,CA,90001 +161308,USB-C Charging Cable,1,11.95,2019-02-15 01:10:00,666 Chestnut St, Dallas,TX,75001 +161309,Wired Headphones,1,11.99,2019-02-25 10:49:00,331 Jackson St, Portland,OR,97035 +161310,USB-C Charging Cable,1,11.95,2019-02-15 18:47:00,316 Elm St, New York City,NY,10001 +161311,27in 4K Gaming Monitor,1,389.99,2019-02-14 15:44:00,770 Maple St, Boston,MA,02215 +161312,AA Batteries (4-pack),1,3.84,2019-02-28 13:17:00,645 Highland St, Portland,OR,97035 +161313,AAA Batteries (4-pack),1,2.99,2019-02-19 11:02:00,145 Madison St, San Francisco,CA,94016 +161313,Apple Airpods Headphones,1,150.0,2019-02-19 11:02:00,145 Madison St, San Francisco,CA,94016 +161314,Wired Headphones,1,11.99,2019-02-08 10:26:00,794 8th St, Austin,TX,73301 +161314,Lightning Charging Cable,1,14.95,2019-02-08 10:26:00,794 8th St, Austin,TX,73301 +161315,iPhone,1,700.0,2019-02-02 11:56:00,614 9th St, Seattle,WA,98101 +161316,27in FHD Monitor,1,149.99,2019-02-06 10:11:00,990 14th St, New York City,NY,10001 +161317,Wired Headphones,1,11.99,2019-02-23 13:32:00,185 Highland St, Atlanta,GA,30301 +161318,USB-C Charging Cable,1,11.95,2019-02-20 08:02:00,819 Willow St, New York City,NY,10001 +161319,Macbook Pro Laptop,1,1700.0,2019-02-22 11:48:00,962 Ridge St, San Francisco,CA,94016 +161320,AA Batteries (4-pack),1,3.84,2019-02-14 19:44:00,424 Sunset St, Los Angeles,CA,90001 +161321,27in FHD Monitor,1,149.99,2019-02-02 07:24:00,812 Madison St, Los Angeles,CA,90001 +161322,Wired Headphones,2,11.99,2019-02-03 09:48:00,322 14th St, Dallas,TX,75001 +161323,AA Batteries (4-pack),1,3.84,2019-02-21 17:20:00,131 Adams St, Atlanta,GA,30301 +161324,27in FHD Monitor,1,149.99,2019-02-26 16:16:00,10 Chestnut St, Los Angeles,CA,90001 +161325,27in 4K Gaming Monitor,1,389.99,2019-02-20 16:58:00,456 Lincoln St, Boston,MA,02215 +161325,20in Monitor,1,109.99,2019-02-20 16:58:00,456 Lincoln St, Boston,MA,02215 +161326,Apple Airpods Headphones,1,150.0,2019-02-05 16:36:00,37 West St, Los Angeles,CA,90001 +161327,USB-C Charging Cable,1,11.95,2019-02-11 11:04:00,60 Cherry St, Dallas,TX,75001 +161328,iPhone,1,700.0,2019-02-22 14:51:00,775 8th St, San Francisco,CA,94016 +161329,AAA Batteries (4-pack),1,2.99,2019-02-17 08:31:00,309 Center St, Seattle,WA,98101 +161330,iPhone,1,700.0,2019-02-18 18:37:00,264 Ridge St, San Francisco,CA,94016 +161331,AA Batteries (4-pack),1,3.84,2019-02-01 08:57:00,358 Lakeview St, Dallas,TX,75001 +161332,Lightning Charging Cable,1,14.95,2019-02-05 21:11:00,123 Willow St, San Francisco,CA,94016 +161333,AAA Batteries (4-pack),1,2.99,2019-02-11 17:12:00,958 Dogwood St, San Francisco,CA,94016 +161334,ThinkPad Laptop,1,999.99,2019-02-07 15:21:00,670 Johnson St, Los Angeles,CA,90001 +161335,AAA Batteries (4-pack),1,2.99,2019-02-19 14:40:00,442 Lake St, Boston,MA,02215 +161336,Apple Airpods Headphones,1,150.0,2019-02-02 11:05:00,979 Cedar St, New York City,NY,10001 +161337,20in Monitor,1,109.99,2019-02-27 22:33:00,127 Johnson St, New York City,NY,10001 +161337,Lightning Charging Cable,1,14.95,2019-02-27 22:33:00,127 Johnson St, New York City,NY,10001 +161338,Apple Airpods Headphones,1,150.0,2019-02-09 19:36:00,946 10th St, Atlanta,GA,30301 +161339,Wired Headphones,1,11.99,2019-02-15 16:19:00,165 Forest St, Boston,MA,02215 +161340,AAA Batteries (4-pack),1,2.99,2019-02-08 21:38:00,367 9th St, Los Angeles,CA,90001 +161341,ThinkPad Laptop,1,999.99,2019-02-21 00:04:00,949 Washington St, Boston,MA,02215 +161342,Lightning Charging Cable,1,14.95,2019-02-05 15:01:00,632 Park St, Portland,OR,97035 +161343,AA Batteries (4-pack),2,3.84,2019-02-22 22:59:00,644 Adams St, San Francisco,CA,94016 +161344,27in FHD Monitor,1,149.99,2019-02-20 13:14:00,389 South St, Atlanta,GA,30301 +161345,USB-C Charging Cable,1,11.95,2019-02-02 18:44:00,689 Jefferson St, Dallas,TX,75001 +161346,AAA Batteries (4-pack),1,2.99,2019-02-15 13:22:00,610 Walnut St, Los Angeles,CA,90001 +161347,AAA Batteries (4-pack),2,2.99,2019-02-10 09:38:00,765 10th St, Seattle,WA,98101 +161348,AAA Batteries (4-pack),2,2.99,2019-02-19 16:56:00,448 Ridge St, San Francisco,CA,94016 +161349,AAA Batteries (4-pack),1,2.99,2019-02-07 17:11:00,952 Maple St, Austin,TX,73301 +161350,Apple Airpods Headphones,1,150.0,2019-02-15 20:19:00,405 Jackson St, Portland,OR,97035 +161351,Flatscreen TV,1,300.0,2019-02-19 15:10:00,103 Park St, Los Angeles,CA,90001 +161352,Apple Airpods Headphones,1,150.0,2019-02-12 20:12:00,217 Johnson St, Dallas,TX,75001 +161353,USB-C Charging Cable,2,11.95,2019-02-07 11:12:00,220 Hickory St, Austin,TX,73301 +161354,USB-C Charging Cable,1,11.95,2019-02-28 10:21:00,955 Meadow St, Seattle,WA,98101 +161355,20in Monitor,1,109.99,2019-02-13 15:24:00,195 Cherry St, San Francisco,CA,94016 +161356,Lightning Charging Cable,1,14.95,2019-02-23 13:57:00,351 Spruce St, Seattle,WA,98101 +161357,Google Phone,1,600.0,2019-02-14 10:16:00,819 Sunset St, Austin,TX,73301 +161358,Apple Airpods Headphones,1,150.0,2019-02-21 07:59:00,20 Hill St, Portland,OR,97035 +161359,USB-C Charging Cable,1,11.95,2019-02-17 09:18:00,7 Madison St, San Francisco,CA,94016 +161360,Bose SoundSport Headphones,1,99.99,2019-02-05 19:16:00,632 Hickory St, Boston,MA,02215 +161361,Wired Headphones,1,11.99,2019-02-18 20:12:00,756 11th St, Boston,MA,02215 +161362,iPhone,1,700.0,2019-02-16 12:57:00,235 River St, San Francisco,CA,94016 +161363,27in 4K Gaming Monitor,1,389.99,2019-02-24 10:57:00,357 River St, San Francisco,CA,94016 +161364,Wired Headphones,1,11.99,2019-02-11 23:42:00,182 Hickory St, Dallas,TX,75001 +161365,Lightning Charging Cable,1,14.95,2019-02-18 13:00:00,279 6th St, Atlanta,GA,30301 +161366,USB-C Charging Cable,1,11.95,2019-02-20 23:04:00,958 Pine St, San Francisco,CA,94016 +161367,Bose SoundSport Headphones,1,99.99,2019-02-12 18:02:00,238 Meadow St, Atlanta,GA,30301 +161368,Macbook Pro Laptop,1,1700.0,2019-02-14 21:27:00,443 Center St, Portland,OR,97035 +161369,USB-C Charging Cable,1,11.95,2019-02-12 18:19:00,226 Main St, Dallas,TX,75001 +161370,34in Ultrawide Monitor,1,379.99,2019-02-26 11:11:00,365 Adams St, San Francisco,CA,94016 +161371,Lightning Charging Cable,1,14.95,2019-02-13 17:39:00,841 Johnson St, San Francisco,CA,94016 +161372,USB-C Charging Cable,1,11.95,2019-02-28 15:56:00,944 Cedar St, New York City,NY,10001 +161373,USB-C Charging Cable,1,11.95,2019-02-10 08:23:00,236 Dogwood St, Boston,MA,02215 +161374,USB-C Charging Cable,1,11.95,2019-02-23 08:58:00,782 Walnut St, Seattle,WA,98101 +161375,ThinkPad Laptop,1,999.99,2019-02-13 10:46:00,925 Cedar St, San Francisco,CA,94016 +161376,27in 4K Gaming Monitor,1,389.99,2019-02-08 16:44:00,780 2nd St, Boston,MA,02215 +161377,Apple Airpods Headphones,1,150.0,2019-02-09 08:49:00,532 1st St, New York City,NY,10001 +161378,iPhone,1,700.0,2019-02-01 13:09:00,740 13th St, New York City,NY,10001 +161379,Bose SoundSport Headphones,1,99.99,2019-02-03 17:56:00,642 Hickory St, Austin,TX,73301 +161380,USB-C Charging Cable,1,11.95,2019-02-11 23:37:00,697 4th St, Austin,TX,73301 +161381,AA Batteries (4-pack),2,3.84,2019-02-01 21:58:00,141 1st St, Atlanta,GA,30301 +161382,AAA Batteries (4-pack),1,2.99,2019-02-18 11:56:00,421 Cedar St, San Francisco,CA,94016 +161383,AA Batteries (4-pack),2,3.84,2019-02-24 12:49:00,77 2nd St, Los Angeles,CA,90001 +161384,Bose SoundSport Headphones,1,99.99,2019-02-05 18:52:00,79 2nd St, Atlanta,GA,30301 +161385,Wired Headphones,1,11.99,2019-02-11 14:32:00,991 13th St, Los Angeles,CA,90001 +161386,USB-C Charging Cable,1,11.95,2019-02-09 22:06:00,930 7th St, Seattle,WA,98101 +161387,Wired Headphones,1,11.99,2019-02-22 22:53:00,363 Cherry St, San Francisco,CA,94016 +161388,Google Phone,1,600.0,2019-02-05 11:37:00,382 Chestnut St, Austin,TX,73301 +161389,Flatscreen TV,1,300.0,2019-02-06 18:40:00,765 14th St, Dallas,TX,75001 +161390,34in Ultrawide Monitor,1,379.99,2019-02-08 22:04:00,894 9th St, New York City,NY,10001 +161391,Lightning Charging Cable,1,14.95,2019-02-01 18:21:00,91 Sunset St, Austin,TX,73301 +161392,AA Batteries (4-pack),2,3.84,2019-02-13 21:08:00,448 9th St, Los Angeles,CA,90001 +161393,27in FHD Monitor,1,149.99,2019-02-22 20:43:00,339 Meadow St, New York City,NY,10001 +161394,LG Dryer,1,600.0,2019-02-11 10:07:00,238 Lakeview St, Los Angeles,CA,90001 +161395,27in FHD Monitor,1,149.99,2019-02-22 15:47:00,403 Forest St, New York City,NY,10001 +161396,34in Ultrawide Monitor,1,379.99,2019-02-19 05:43:00,828 Spruce St, Seattle,WA,98101 +161396,Wired Headphones,1,11.99,2019-02-19 05:43:00,828 Spruce St, Seattle,WA,98101 +161397,Lightning Charging Cable,1,14.95,2019-02-24 10:30:00,319 12th St, San Francisco,CA,94016 +161398,Wired Headphones,1,11.99,2019-02-09 12:04:00,963 Center St, New York City,NY,10001 +161399,27in FHD Monitor,1,149.99,2019-02-18 11:33:00,207 Jackson St, San Francisco,CA,94016 +161400,AAA Batteries (4-pack),2,2.99,2019-02-17 13:51:00,170 6th St, Boston,MA,02215 +161401,USB-C Charging Cable,1,11.95,2019-02-09 15:13:00,337 Cherry St, Boston,MA,02215 +161402,Macbook Pro Laptop,1,1700.0,2019-02-21 03:38:00,607 8th St, San Francisco,CA,94016 +161403,Lightning Charging Cable,1,14.95,2019-02-12 10:18:00,294 Madison St, Los Angeles,CA,90001 +161404,27in FHD Monitor,1,149.99,2019-02-26 18:15:00,846 5th St, Los Angeles,CA,90001 +161405,Vareebadd Phone,1,400.0,2019-02-13 13:59:00,994 Cherry St, Dallas,TX,75001 +161405,Bose SoundSport Headphones,1,99.99,2019-02-13 13:59:00,994 Cherry St, Dallas,TX,75001 +161406,27in FHD Monitor,1,149.99,2019-02-09 14:35:00,53 Johnson St, Los Angeles,CA,90001 +161407,AA Batteries (4-pack),1,3.84,2019-02-14 21:57:00,883 Elm St, San Francisco,CA,94016 +161408,AAA Batteries (4-pack),1,2.99,2019-02-24 17:36:00,930 Hickory St, Dallas,TX,75001 +161409,Wired Headphones,1,11.99,2019-02-17 14:14:00,943 Johnson St, San Francisco,CA,94016 +161410,USB-C Charging Cable,1,11.95,2019-02-24 18:24:00,691 Jackson St, Atlanta,GA,30301 +161411,20in Monitor,1,109.99,2019-02-10 17:38:00,452 Cherry St, Atlanta,GA,30301 +161412,Google Phone,1,600.0,2019-02-01 16:52:00,743 7th St, Dallas,TX,75001 +161412,USB-C Charging Cable,1,11.95,2019-02-01 16:52:00,743 7th St, Dallas,TX,75001 +161413,Wired Headphones,1,11.99,2019-02-26 21:15:00,748 Hill St, Seattle,WA,98101 +161414,Lightning Charging Cable,1,14.95,2019-02-07 10:39:00,972 Church St, San Francisco,CA,94016 +161415,Lightning Charging Cable,1,14.95,2019-02-13 10:50:00,812 Lakeview St, Dallas,TX,75001 +161416,AA Batteries (4-pack),1,3.84,2019-02-04 21:43:00,231 Ridge St, Boston,MA,02215 +161417,USB-C Charging Cable,1,11.95,2019-02-24 22:51:00,190 Center St, New York City,NY,10001 +161418,AA Batteries (4-pack),2,3.84,2019-02-26 21:51:00,751 Maple St, Boston,MA,02215 +161419,Flatscreen TV,1,300.0,2019-02-07 21:53:00,994 Chestnut St, Dallas,TX,75001 +161420,Flatscreen TV,1,300.0,2019-02-26 19:04:00,308 2nd St, Boston,MA,02215 +161421,AA Batteries (4-pack),1,3.84,2019-02-09 08:47:00,10 14th St, Seattle,WA,98101 +161422,Wired Headphones,1,11.99,2019-02-26 13:08:00,32 Main St, San Francisco,CA,94016 +161423,34in Ultrawide Monitor,1,379.99,2019-02-22 11:04:00,393 Johnson St, San Francisco,CA,94016 +161424,ThinkPad Laptop,1,999.99,2019-02-26 22:27:00,538 Highland St, Los Angeles,CA,90001 +161425,Flatscreen TV,1,300.0,2019-02-06 15:01:00,511 Jackson St, Austin,TX,73301 +161426,Wired Headphones,1,11.99,2019-02-21 06:40:00,389 Willow St, San Francisco,CA,94016 +161427,Lightning Charging Cable,1,14.95,2019-02-23 19:53:00,55 9th St, Seattle,WA,98101 +161428,Lightning Charging Cable,2,14.95,2019-02-15 10:17:00,884 Spruce St, Los Angeles,CA,90001 +161429,USB-C Charging Cable,1,11.95,2019-02-15 10:40:00,530 West St, Los Angeles,CA,90001 +161430,Wired Headphones,1,11.99,2019-02-24 11:22:00,103 Sunset St, Atlanta,GA,30301 +161431,AA Batteries (4-pack),2,3.84,2019-02-28 08:28:00,240 Walnut St, Los Angeles,CA,90001 +161432,Flatscreen TV,1,300.0,2019-02-24 15:24:00,130 Walnut St, San Francisco,CA,94016 +161433,AAA Batteries (4-pack),1,2.99,2019-02-08 15:20:00,914 Lake St, Austin,TX,73301 +161434,Wired Headphones,1,11.99,2019-02-16 21:17:00,42 Park St, Dallas,TX,75001 +161435,34in Ultrawide Monitor,1,379.99,2019-02-01 18:42:00,729 South St, Boston,MA,02215 +161436,Lightning Charging Cable,1,14.95,2019-02-16 19:41:00,563 Jackson St, Los Angeles,CA,90001 +161437,AA Batteries (4-pack),1,3.84,2019-02-06 23:06:00,741 Pine St, San Francisco,CA,94016 +161438,AAA Batteries (4-pack),1,2.99,2019-02-25 18:01:00,673 Dogwood St, Dallas,TX,75001 +161439,Lightning Charging Cable,1,14.95,2019-02-02 17:19:00,953 5th St, San Francisco,CA,94016 +161440,AAA Batteries (4-pack),1,2.99,2019-02-12 16:25:00,832 Highland St, Portland,OR,97035 +161441,Google Phone,1,600.0,2019-02-17 15:42:00,962 Hickory St, New York City,NY,10001 +161441,Wired Headphones,1,11.99,2019-02-17 15:42:00,962 Hickory St, New York City,NY,10001 +161442,27in FHD Monitor,1,149.99,2019-02-26 15:14:00,960 North St, San Francisco,CA,94016 +161443,34in Ultrawide Monitor,1,379.99,2019-02-17 09:31:00,409 Pine St, New York City,NY,10001 +161444,Macbook Pro Laptop,1,1700.0,2019-02-16 17:23:00,95 West St, New York City,NY,10001 +161445,AAA Batteries (4-pack),1,2.99,2019-02-08 19:57:00,677 Willow St, San Francisco,CA,94016 +161446,Lightning Charging Cable,1,14.95,2019-02-06 14:58:00,191 10th St, Dallas,TX,75001 +161447,Apple Airpods Headphones,1,150.0,2019-02-28 19:27:00,961 12th St, San Francisco,CA,94016 +161448,Bose SoundSport Headphones,1,99.99,2019-02-02 10:36:00,794 Sunset St, Portland,ME,04101 +161449,34in Ultrawide Monitor,1,379.99,2019-02-18 17:36:00,596 Lake St, Dallas,TX,75001 +161450,Flatscreen TV,1,300.0,2019-02-28 15:54:00,423 Church St, San Francisco,CA,94016 +161451,AA Batteries (4-pack),1,3.84,2019-02-12 17:47:00,750 4th St, Portland,OR,97035 +161452,Wired Headphones,1,11.99,2019-02-10 09:42:00,870 11th St, Dallas,TX,75001 +161453,Apple Airpods Headphones,1,150.0,2019-02-26 20:26:00,281 5th St, Boston,MA,02215 +161453,Wired Headphones,1,11.99,2019-02-26 20:26:00,281 5th St, Boston,MA,02215 +161454,USB-C Charging Cable,1,11.95,2019-02-21 10:35:00,796 West St, San Francisco,CA,94016 +161455,Wired Headphones,1,11.99,2019-02-28 00:32:00,562 1st St, San Francisco,CA,94016 +161456,AAA Batteries (4-pack),1,2.99,2019-02-18 15:15:00,7 Jefferson St, Seattle,WA,98101 +161457,Wired Headphones,1,11.99,2019-02-19 10:52:00,275 5th St, Boston,MA,02215 +161458,27in 4K Gaming Monitor,1,389.99,2019-02-15 18:48:00,805 Spruce St, New York City,NY,10001 +161459,USB-C Charging Cable,1,11.95,2019-02-13 17:52:00,968 River St, Dallas,TX,75001 +161460,Vareebadd Phone,1,400.0,2019-02-28 00:06:00,780 Jackson St, San Francisco,CA,94016 +161461,Wired Headphones,1,11.99,2019-02-15 16:19:00,243 Hickory St, San Francisco,CA,94016 +161462,USB-C Charging Cable,1,11.95,2019-02-06 10:35:00,950 Church St, Seattle,WA,98101 +161463,Wired Headphones,1,11.99,2019-02-24 13:05:00,390 River St, Los Angeles,CA,90001 +161464,Wired Headphones,1,11.99,2019-02-06 11:04:00,175 11th St, Portland,OR,97035 +161465,Lightning Charging Cable,1,14.95,2019-02-21 08:05:00,101 Park St, San Francisco,CA,94016 +161466,34in Ultrawide Monitor,1,379.99,2019-02-16 11:55:00,930 Chestnut St, Boston,MA,02215 +161467,Google Phone,1,600.0,2019-02-06 14:31:00,613 7th St, Portland,OR,97035 +161468,Apple Airpods Headphones,1,150.0,2019-02-20 05:57:00,521 Willow St, Seattle,WA,98101 +161469,AAA Batteries (4-pack),3,2.99,2019-02-01 18:05:00,356 Pine St, San Francisco,CA,94016 +161470,Google Phone,1,600.0,2019-02-18 13:35:00,568 Center St, San Francisco,CA,94016 +161471,LG Washing Machine,1,600.0,2019-02-09 09:35:00,592 Madison St, Dallas,TX,75001 +161472,AAA Batteries (4-pack),1,2.99,2019-02-25 05:38:00,750 Ridge St, Los Angeles,CA,90001 +161473,AA Batteries (4-pack),1,3.84,2019-02-22 14:32:00,394 Ridge St, Atlanta,GA,30301 +161474,Wired Headphones,1,11.99,2019-02-27 15:00:00,925 5th St, San Francisco,CA,94016 +161475,AAA Batteries (4-pack),2,2.99,2019-02-17 00:07:00,36 Wilson St, San Francisco,CA,94016 +161476,AA Batteries (4-pack),1,3.84,2019-02-12 00:11:00,389 Adams St, Portland,OR,97035 +161477,Wired Headphones,1,11.99,2019-02-22 11:19:00,50 Washington St, San Francisco,CA,94016 +161477,Lightning Charging Cable,1,14.95,2019-02-22 11:19:00,50 Washington St, San Francisco,CA,94016 +161478,AA Batteries (4-pack),1,3.84,2019-02-15 09:12:00,44 Main St, Dallas,TX,75001 +161479,Apple Airpods Headphones,1,150.0,2019-02-17 17:59:00,436 Hill St, San Francisco,CA,94016 +161480,iPhone,1,700.0,2019-02-14 18:49:00,426 Hickory St, Boston,MA,02215 +161480,Lightning Charging Cable,1,14.95,2019-02-14 18:49:00,426 Hickory St, Boston,MA,02215 +161481,AAA Batteries (4-pack),1,2.99,2019-02-28 13:17:00,787 Jefferson St, Los Angeles,CA,90001 +161482,Bose SoundSport Headphones,1,99.99,2019-02-01 17:00:00,987 Walnut St, Boston,MA,02215 +161483,iPhone,1,700.0,2019-02-19 09:07:00,283 1st St, Los Angeles,CA,90001 +161484,27in FHD Monitor,1,149.99,2019-02-09 02:37:00,827 Lakeview St, San Francisco,CA,94016 +161485,Bose SoundSport Headphones,1,99.99,2019-02-21 14:33:00,897 River St, New York City,NY,10001 +161486,AA Batteries (4-pack),1,3.84,2019-02-03 21:16:00,847 2nd St, Los Angeles,CA,90001 +161487,AAA Batteries (4-pack),1,2.99,2019-02-07 22:24:00,615 5th St, Dallas,TX,75001 +161488,AAA Batteries (4-pack),2,2.99,2019-02-15 19:11:00,754 5th St, Los Angeles,CA,90001 +161489,USB-C Charging Cable,1,11.95,2019-02-18 23:29:00,433 West St, Boston,MA,02215 +161490,Flatscreen TV,1,300.0,2019-02-28 08:32:00,184 Maple St, Atlanta,GA,30301 +161491,Wired Headphones,1,11.99,2019-02-15 08:36:00,640 Dogwood St, New York City,NY,10001 +161492,AAA Batteries (4-pack),1,2.99,2019-02-07 05:50:00,627 8th St, Austin,TX,73301 +161493,Lightning Charging Cable,1,14.95,2019-02-09 08:48:00,803 13th St, Seattle,WA,98101 +161494,Wired Headphones,1,11.99,2019-02-07 12:37:00,962 Pine St, New York City,NY,10001 +161495,27in FHD Monitor,1,149.99,2019-02-21 10:45:00,293 2nd St, Los Angeles,CA,90001 +161496,Lightning Charging Cable,1,14.95,2019-02-19 16:43:00,828 Hill St, Portland,OR,97035 +161497,Apple Airpods Headphones,1,150.0,2019-02-26 19:51:00,567 6th St, Los Angeles,CA,90001 +161498,USB-C Charging Cable,1,11.95,2019-02-16 10:50:00,748 6th St, Portland,OR,97035 +161499,USB-C Charging Cable,1,11.95,2019-02-24 20:20:00,157 8th St, San Francisco,CA,94016 +161500,Bose SoundSport Headphones,1,99.99,2019-02-05 19:23:00,375 11th St, Portland,OR,97035 +161501,AAA Batteries (4-pack),1,2.99,2019-02-12 21:00:00,530 4th St, Dallas,TX,75001 +161502,Google Phone,1,600.0,2019-02-22 14:27:00,679 Chestnut St, Dallas,TX,75001 +161503,Apple Airpods Headphones,1,150.0,2019-02-11 23:39:00,270 River St, Los Angeles,CA,90001 +161504,AAA Batteries (4-pack),3,2.99,2019-02-02 19:57:00,674 Hickory St, Portland,ME,04101 +161505,Google Phone,1,600.0,2019-02-03 15:32:00,791 Spruce St, Atlanta,GA,30301 +161505,Bose SoundSport Headphones,1,99.99,2019-02-03 15:32:00,791 Spruce St, Atlanta,GA,30301 +161506,Wired Headphones,1,11.99,2019-02-06 12:47:00,800 Cedar St, Los Angeles,CA,90001 +161507,Bose SoundSport Headphones,1,99.99,2019-02-11 22:42:00,5 2nd St, San Francisco,CA,94016 +161508,Lightning Charging Cable,1,14.95,2019-02-06 10:24:00,882 9th St, Atlanta,GA,30301 +161509,USB-C Charging Cable,1,11.95,2019-02-28 14:49:00,266 Johnson St, Austin,TX,73301 +161510,Apple Airpods Headphones,1,150.0,2019-02-18 11:58:00,986 Park St, San Francisco,CA,94016 +161511,Apple Airpods Headphones,1,150.0,2019-02-24 15:49:00,768 Main St, San Francisco,CA,94016 +161512,Macbook Pro Laptop,1,1700.0,2019-02-20 20:24:00,457 Church St, New York City,NY,10001 +161513,27in FHD Monitor,1,149.99,2019-02-20 12:55:00,251 Pine St, Atlanta,GA,30301 +161514,Wired Headphones,1,11.99,2019-02-23 20:14:00,928 11th St, San Francisco,CA,94016 +161515,USB-C Charging Cable,1,11.95,2019-02-09 09:28:00,564 11th St, San Francisco,CA,94016 +161516,Lightning Charging Cable,1,14.95,2019-02-15 12:14:00,497 10th St, Boston,MA,02215 +161517,AAA Batteries (4-pack),2,2.99,2019-02-05 08:15:00,874 Hickory St, Los Angeles,CA,90001 +161518,Lightning Charging Cable,1,14.95,2019-02-28 13:13:00,182 Lincoln St, Dallas,TX,75001 +161519,27in 4K Gaming Monitor,1,389.99,2019-02-07 10:15:00,773 Maple St, Portland,ME,04101 +161520,iPhone,1,700.0,2019-02-27 16:56:00,911 1st St, Los Angeles,CA,90001 +161521,USB-C Charging Cable,1,11.95,2019-02-07 13:56:00,426 Center St, New York City,NY,10001 +161522,Lightning Charging Cable,1,14.95,2019-02-26 22:36:00,441 9th St, Boston,MA,02215 +161523,Wired Headphones,1,11.99,2019-02-12 20:31:00,828 Lakeview St, Los Angeles,CA,90001 +161524,AA Batteries (4-pack),1,3.84,2019-02-22 08:17:00,87 Jefferson St, New York City,NY,10001 +161525,20in Monitor,1,109.99,2019-02-15 17:59:00,986 9th St, Portland,OR,97035 +161526,USB-C Charging Cable,1,11.95,2019-02-14 11:29:00,577 Pine St, Austin,TX,73301 +161527,USB-C Charging Cable,1,11.95,2019-02-13 20:15:00,407 Hill St, Los Angeles,CA,90001 +161528,Wired Headphones,1,11.99,2019-02-26 15:01:00,962 Lincoln St, Boston,MA,02215 +161529,Lightning Charging Cable,1,14.95,2019-02-24 19:41:00,130 Hill St, Seattle,WA,98101 +161530,AA Batteries (4-pack),1,3.84,2019-02-23 23:39:00,637 Park St, Austin,TX,73301 +161531,AA Batteries (4-pack),1,3.84,2019-02-16 13:48:00,849 Jackson St, Los Angeles,CA,90001 +161532,USB-C Charging Cable,1,11.95,2019-02-15 00:39:00,49 Jefferson St, Austin,TX,73301 +161533,USB-C Charging Cable,1,11.95,2019-02-14 10:36:00,416 West St, San Francisco,CA,94016 +161534,AAA Batteries (4-pack),1,2.99,2019-02-03 20:39:00,906 Maple St, San Francisco,CA,94016 +161535,Wired Headphones,1,11.99,2019-02-28 16:53:00,379 Pine St, Los Angeles,CA,90001 +161536,Lightning Charging Cable,2,14.95,2019-02-12 16:39:00,916 Park St, San Francisco,CA,94016 +161537,Lightning Charging Cable,1,14.95,2019-02-12 17:27:00,720 South St, New York City,NY,10001 +161538,Lightning Charging Cable,1,14.95,2019-02-20 19:11:00,48 11th St, Atlanta,GA,30301 +161539,USB-C Charging Cable,2,11.95,2019-02-28 19:34:00,64 Pine St, Boston,MA,02215 +161540,20in Monitor,1,109.99,2019-02-26 00:33:00,465 Lake St, Portland,OR,97035 +161541,USB-C Charging Cable,1,11.95,2019-02-14 12:04:00,361 Cherry St, Boston,MA,02215 +161542,34in Ultrawide Monitor,1,379.99,2019-02-19 18:05:00,690 Church St, New York City,NY,10001 +161543,AA Batteries (4-pack),1,3.84,2019-02-23 12:45:00,929 6th St, New York City,NY,10001 +161544,Google Phone,1,600.0,2019-02-12 15:35:00,323 Cherry St, Austin,TX,73301 +161545,Apple Airpods Headphones,1,150.0,2019-02-13 15:23:00,114 Pine St, Boston,MA,02215 +161546,Lightning Charging Cable,1,14.95,2019-02-16 05:52:00,53 Madison St, New York City,NY,10001 +161547,USB-C Charging Cable,1,11.95,2019-02-02 19:13:00,25 13th St, Seattle,WA,98101 +161548,34in Ultrawide Monitor,1,379.99,2019-02-22 21:41:00,806 8th St, Seattle,WA,98101 +161549,Wired Headphones,2,11.99,2019-02-18 14:41:00,691 Elm St, San Francisco,CA,94016 +161550,34in Ultrawide Monitor,1,379.99,2019-02-19 18:15:00,718 14th St, San Francisco,CA,94016 +161551,20in Monitor,1,109.99,2019-02-11 20:23:00,912 Jackson St, Los Angeles,CA,90001 +161552,Bose SoundSport Headphones,1,99.99,2019-02-13 13:46:00,414 Lincoln St, Dallas,TX,75001 +161553,AA Batteries (4-pack),1,3.84,2019-02-18 19:23:00,386 5th St, Seattle,WA,98101 +161554,Wired Headphones,1,11.99,2019-02-17 00:31:00,761 12th St, Dallas,TX,75001 +161555,Google Phone,1,600.0,2019-02-13 20:07:00,745 9th St, New York City,NY,10001 +161556,27in 4K Gaming Monitor,1,389.99,2019-02-26 19:42:00,492 1st St, Portland,OR,97035 +161557,Wired Headphones,1,11.99,2019-02-18 16:29:00,851 1st St, Boston,MA,02215 +161558,Lightning Charging Cable,1,14.95,2019-02-02 06:27:00,362 Cherry St, Dallas,TX,75001 +161559,Lightning Charging Cable,1,14.95,2019-02-17 15:39:00,802 North St, San Francisco,CA,94016 +161560,USB-C Charging Cable,2,11.95,2019-02-05 06:50:00,976 Highland St, San Francisco,CA,94016 +161561,AA Batteries (4-pack),1,3.84,2019-02-17 17:37:00,181 Highland St, Seattle,WA,98101 +161562,USB-C Charging Cable,1,11.95,2019-02-15 13:03:00,785 Walnut St, Seattle,WA,98101 +161563,AA Batteries (4-pack),1,3.84,2019-02-27 18:10:00,67 11th St, Los Angeles,CA,90001 +161564,Google Phone,1,600.0,2019-02-06 17:55:00,778 4th St, New York City,NY,10001 +161565,Wired Headphones,1,11.99,2019-02-09 16:35:00,916 Highland St, San Francisco,CA,94016 +161565,Lightning Charging Cable,1,14.95,2019-02-09 16:35:00,916 Highland St, San Francisco,CA,94016 +161566,Bose SoundSport Headphones,1,99.99,2019-02-18 13:18:00,890 Adams St, Los Angeles,CA,90001 +161567,Apple Airpods Headphones,1,150.0,2019-02-10 11:42:00,413 Walnut St, San Francisco,CA,94016 +161568,AA Batteries (4-pack),1,3.84,2019-02-10 21:17:00,638 Pine St, Seattle,WA,98101 +161569,AAA Batteries (4-pack),2,2.99,2019-02-26 21:26:00,76 Madison St, Dallas,TX,75001 +161570,27in 4K Gaming Monitor,1,389.99,2019-02-12 11:12:00,352 14th St, Seattle,WA,98101 +161571,USB-C Charging Cable,1,11.95,2019-02-04 10:56:00,289 South St, Seattle,WA,98101 +161572,27in FHD Monitor,1,149.99,2019-02-23 16:04:00,682 7th St, Los Angeles,CA,90001 +161573,AA Batteries (4-pack),1,3.84,2019-02-08 19:07:00,817 Johnson St, Los Angeles,CA,90001 +161574,AA Batteries (4-pack),1,3.84,2019-02-03 20:06:00,592 14th St, New York City,NY,10001 +161575,27in 4K Gaming Monitor,1,389.99,2019-02-03 22:02:00,897 Willow St, Los Angeles,CA,90001 +161576,AAA Batteries (4-pack),2,2.99,2019-02-07 19:01:00,427 Willow St, Los Angeles,CA,90001 +161577,27in FHD Monitor,1,149.99,2019-02-27 19:45:00,786 Center St, San Francisco,CA,94016 +161578,AAA Batteries (4-pack),1,2.99,2019-02-21 07:24:00,827 Church St, Seattle,WA,98101 +161579,Bose SoundSport Headphones,1,99.99,2019-02-09 16:07:00,68 Walnut St, Atlanta,GA,30301 +161580,27in FHD Monitor,1,149.99,2019-02-12 07:45:00,18 Park St, San Francisco,CA,94016 +161581,Apple Airpods Headphones,1,150.0,2019-02-23 21:47:00,942 Park St, New York City,NY,10001 +161582,iPhone,1,700.0,2019-02-11 13:01:00,491 11th St, San Francisco,CA,94016 +161583,Lightning Charging Cable,1,14.95,2019-02-16 20:31:00,699 Willow St, Portland,OR,97035 +161584,Wired Headphones,1,11.99,2019-02-08 13:04:00,286 Meadow St, San Francisco,CA,94016 +161585,Wired Headphones,1,11.99,2019-02-12 09:23:00,677 River St, Seattle,WA,98101 +161586,iPhone,1,700.0,2019-02-01 13:48:00,515 11th St, Austin,TX,73301 +161586,Lightning Charging Cable,1,14.95,2019-02-01 13:48:00,515 11th St, Austin,TX,73301 +161587,AAA Batteries (4-pack),2,2.99,2019-02-19 10:09:00,398 South St, Atlanta,GA,30301 +161588,Bose SoundSport Headphones,1,99.99,2019-02-11 21:59:00,673 Hickory St, Atlanta,GA,30301 +161589,Apple Airpods Headphones,1,150.0,2019-02-28 10:48:00,125 Main St, New York City,NY,10001 +161590,USB-C Charging Cable,1,11.95,2019-02-18 10:36:00,134 Maple St, Atlanta,GA,30301 +161591,ThinkPad Laptop,1,999.99,2019-02-09 18:30:00,417 Washington St, New York City,NY,10001 +161592,Lightning Charging Cable,1,14.95,2019-02-12 19:36:00,8 5th St, Dallas,TX,75001 +161593,USB-C Charging Cable,1,11.95,2019-02-03 19:50:00,416 6th St, Dallas,TX,75001 +161594,USB-C Charging Cable,1,11.95,2019-02-24 18:28:00,204 Hickory St, Dallas,TX,75001 +161595,27in 4K Gaming Monitor,1,389.99,2019-02-03 17:10:00,231 Church St, Atlanta,GA,30301 +161596,Flatscreen TV,1,300.0,2019-02-20 15:10:00,47 West St, San Francisco,CA,94016 +161597,AAA Batteries (4-pack),4,2.99,2019-02-11 18:52:00,458 Cedar St, San Francisco,CA,94016 +161598,iPhone,1,700.0,2019-02-09 21:33:00,89 12th St, Seattle,WA,98101 +161598,Wired Headphones,1,11.99,2019-02-09 21:33:00,89 12th St, Seattle,WA,98101 +161599,AA Batteries (4-pack),1,3.84,2019-02-19 18:06:00,193 Center St, San Francisco,CA,94016 +161600,AA Batteries (4-pack),3,3.84,2019-02-13 19:46:00,704 Washington St, Los Angeles,CA,90001 +161601,Lightning Charging Cable,2,14.95,2019-02-20 16:31:00,963 Main St, San Francisco,CA,94016 +161602,Wired Headphones,1,11.99,2019-02-01 07:28:00,631 River St, San Francisco,CA,94016 +161603,iPhone,1,700.0,2019-02-24 21:40:00,217 Spruce St, New York City,NY,10001 +161603,Lightning Charging Cable,2,14.95,2019-02-24 21:40:00,217 Spruce St, New York City,NY,10001 +161604,Lightning Charging Cable,1,14.95,2019-02-22 01:18:00,32 7th St, New York City,NY,10001 +161605,ThinkPad Laptop,1,999.99,2019-02-20 14:47:00,499 2nd St, San Francisco,CA,94016 +161605,Lightning Charging Cable,1,14.95,2019-02-20 14:47:00,499 2nd St, San Francisco,CA,94016 +161606,AA Batteries (4-pack),1,3.84,2019-02-25 11:26:00,651 Adams St, Los Angeles,CA,90001 +161607,34in Ultrawide Monitor,1,379.99,2019-02-17 16:16:00,612 Chestnut St, Atlanta,GA,30301 +161608,27in FHD Monitor,1,149.99,2019-02-21 10:45:00,907 Spruce St, New York City,NY,10001 +161609,Macbook Pro Laptop,1,1700.0,2019-02-02 20:17:00,760 South St, San Francisco,CA,94016 +161610,USB-C Charging Cable,1,11.95,2019-02-20 20:15:00,490 Adams St, San Francisco,CA,94016 +161611,20in Monitor,1,109.99,2019-02-05 12:36:00,11 Walnut St, Los Angeles,CA,90001 +161612,ThinkPad Laptop,1,999.99,2019-02-17 19:32:00,486 North St, Seattle,WA,98101 +161613,Lightning Charging Cable,1,14.95,2019-02-15 21:51:00,324 10th St, Portland,OR,97035 +161614,Google Phone,1,600.0,2019-02-21 21:03:00,598 5th St, Boston,MA,02215 +161614,Bose SoundSport Headphones,1,99.99,2019-02-21 21:03:00,598 5th St, Boston,MA,02215 +161615,AA Batteries (4-pack),2,3.84,2019-02-18 20:22:00,489 Adams St, Los Angeles,CA,90001 +161616,Wired Headphones,1,11.99,2019-02-19 23:47:00,915 Madison St, Los Angeles,CA,90001 +161617,Bose SoundSport Headphones,1,99.99,2019-02-25 12:29:00,907 7th St, Boston,MA,02215 +161618,20in Monitor,1,109.99,2019-02-12 21:13:00,277 Wilson St, San Francisco,CA,94016 +161619,AA Batteries (4-pack),1,3.84,2019-02-12 04:06:00,388 Church St, Portland,OR,97035 +161620,USB-C Charging Cable,1,11.95,2019-02-11 15:12:00,987 Wilson St, New York City,NY,10001 +161621,USB-C Charging Cable,1,11.95,2019-02-11 13:20:00,953 4th St, Los Angeles,CA,90001 +161622,Macbook Pro Laptop,1,1700.0,2019-02-10 23:38:00,646 Cedar St, New York City,NY,10001 +161623,27in 4K Gaming Monitor,1,389.99,2019-02-10 18:31:00,137 Ridge St, New York City,NY,10001 +161624,Apple Airpods Headphones,1,150.0,2019-02-19 15:37:00,634 6th St, San Francisco,CA,94016 +161625,20in Monitor,1,109.99,2019-02-02 16:45:00,881 Ridge St, New York City,NY,10001 +161626,Lightning Charging Cable,1,14.95,2019-02-21 17:13:00,825 11th St, Seattle,WA,98101 +161627,Flatscreen TV,1,300.0,2019-02-16 14:55:00,905 Lincoln St, San Francisco,CA,94016 +161628,Wired Headphones,1,11.99,2019-02-16 07:33:00,240 6th St, Los Angeles,CA,90001 +161629,34in Ultrawide Monitor,1,379.99,2019-02-15 18:51:00,19 Church St, San Francisco,CA,94016 +161630,iPhone,1,700.0,2019-02-02 22:01:00,973 Madison St, Los Angeles,CA,90001 +161630,Lightning Charging Cable,1,14.95,2019-02-02 22:01:00,973 Madison St, Los Angeles,CA,90001 +161631,USB-C Charging Cable,1,11.95,2019-02-25 15:06:00,73 Forest St, Boston,MA,02215 +161632,Lightning Charging Cable,1,14.95,2019-02-26 14:40:00,891 Jefferson St, Los Angeles,CA,90001 +161633,Lightning Charging Cable,1,14.95,2019-02-09 15:13:00,12 7th St, Boston,MA,02215 +161634,LG Dryer,1,600.0,2019-02-04 18:22:00,516 8th St, Seattle,WA,98101 +161635,Lightning Charging Cable,1,14.95,2019-02-01 22:49:00,381 Elm St, Seattle,WA,98101 +161636,Lightning Charging Cable,1,14.95,2019-02-27 10:04:00,247 5th St, San Francisco,CA,94016 +161637,AA Batteries (4-pack),2,3.84,2019-02-01 16:12:00,195 9th St, Atlanta,GA,30301 +161638,Wired Headphones,1,11.99,2019-02-21 13:07:00,382 13th St, Dallas,TX,75001 +161639,Wired Headphones,1,11.99,2019-02-10 09:20:00,426 Park St, Seattle,WA,98101 +161640,27in FHD Monitor,1,149.99,2019-02-20 19:40:00,694 South St, Seattle,WA,98101 +161641,Wired Headphones,2,11.99,2019-02-15 14:55:00,218 13th St, Boston,MA,02215 +161642,USB-C Charging Cable,1,11.95,2019-02-12 19:52:00,424 Jackson St, Dallas,TX,75001 +161643,20in Monitor,1,109.99,2019-02-04 17:18:00,467 12th St, New York City,NY,10001 +161644,27in FHD Monitor,1,149.99,2019-02-13 23:18:00,355 1st St, Los Angeles,CA,90001 +161645,Lightning Charging Cable,1,14.95,2019-02-02 19:59:00,173 Maple St, Atlanta,GA,30301 +161646,Lightning Charging Cable,1,14.95,2019-02-08 09:48:00,28 Spruce St, Boston,MA,02215 +161647,Wired Headphones,1,11.99,2019-02-20 10:31:00,740 Center St, Boston,MA,02215 +161648,AA Batteries (4-pack),2,3.84,2019-02-17 08:36:00,792 Lakeview St, Dallas,TX,75001 +161649,Apple Airpods Headphones,1,150.0,2019-02-24 11:26:00,691 Cedar St, Los Angeles,CA,90001 +161650,Wired Headphones,1,11.99,2019-02-28 15:09:00,983 Highland St, New York City,NY,10001 +161651,27in 4K Gaming Monitor,1,389.99,2019-02-06 09:43:00,714 Lincoln St, Seattle,WA,98101 +161652,USB-C Charging Cable,1,11.95,2019-02-22 05:20:00,944 Lincoln St, Los Angeles,CA,90001 +161653,AA Batteries (4-pack),1,3.84,2019-02-03 20:11:00,631 8th St, Austin,TX,73301 +161654,AA Batteries (4-pack),1,3.84,2019-02-01 17:14:00,615 5th St, Seattle,WA,98101 +161655,Bose SoundSport Headphones,1,99.99,2019-02-12 19:09:00,58 1st St, Austin,TX,73301 +161656,Lightning Charging Cable,1,14.95,2019-02-26 19:17:00,626 Lake St, New York City,NY,10001 +161657,USB-C Charging Cable,1,11.95,2019-02-13 21:36:00,907 10th St, Los Angeles,CA,90001 +161658,AAA Batteries (4-pack),1,2.99,2019-02-05 02:24:00,462 9th St, San Francisco,CA,94016 +161659,Bose SoundSport Headphones,1,99.99,2019-02-25 06:59:00,689 Spruce St, Los Angeles,CA,90001 +161660,Wired Headphones,1,11.99,2019-02-05 00:58:00,345 Jackson St, New York City,NY,10001 +161661,27in FHD Monitor,1,149.99,2019-02-27 08:19:00,475 8th St, Los Angeles,CA,90001 +161662,27in 4K Gaming Monitor,1,389.99,2019-02-10 01:45:00,150 Lakeview St, Los Angeles,CA,90001 +161663,Wired Headphones,1,11.99,2019-02-04 14:18:00,542 9th St, San Francisco,CA,94016 +161664,Bose SoundSport Headphones,1,99.99,2019-02-15 12:13:00,747 13th St, Dallas,TX,75001 +161665,AAA Batteries (4-pack),1,2.99,2019-02-08 15:17:00,278 Church St, Los Angeles,CA,90001 +161666,USB-C Charging Cable,1,11.95,2019-02-01 16:38:00,37 12th St, Seattle,WA,98101 +161667,USB-C Charging Cable,1,11.95,2019-02-08 19:14:00,862 2nd St, Los Angeles,CA,90001 +161668,Bose SoundSport Headphones,1,99.99,2019-02-26 16:56:00,314 Lincoln St, San Francisco,CA,94016 +161669,AA Batteries (4-pack),2,3.84,2019-02-10 13:29:00,943 6th St, San Francisco,CA,94016 +161670,Wired Headphones,2,11.99,2019-02-21 13:51:00,466 12th St, San Francisco,CA,94016 +161671,Macbook Pro Laptop,1,1700.0,2019-02-15 20:47:00,425 Hill St, Dallas,TX,75001 +161672,34in Ultrawide Monitor,1,379.99,2019-02-07 16:18:00,863 Meadow St, Los Angeles,CA,90001 +161673,AA Batteries (4-pack),1,3.84,2019-02-03 11:39:00,404 Ridge St, San Francisco,CA,94016 +161674,20in Monitor,1,109.99,2019-02-06 10:20:00,820 West St, Boston,MA,02215 +161675,27in FHD Monitor,1,149.99,2019-02-28 22:56:00,683 4th St, Portland,OR,97035 +161676,AAA Batteries (4-pack),1,2.99,2019-02-14 09:05:00,953 Cedar St, Dallas,TX,75001 +161677,AAA Batteries (4-pack),3,2.99,2019-02-19 09:04:00,627 Wilson St, Atlanta,GA,30301 +161678,34in Ultrawide Monitor,1,379.99,2019-02-16 21:49:00,235 Spruce St, Los Angeles,CA,90001 +161678,USB-C Charging Cable,1,11.95,2019-02-16 21:49:00,235 Spruce St, Los Angeles,CA,90001 +161679,20in Monitor,1,109.99,2019-02-15 12:47:00,780 Chestnut St, New York City,NY,10001 +161680,Lightning Charging Cable,1,14.95,2019-02-18 11:57:00,580 Jefferson St, Portland,ME,04101 +161681,USB-C Charging Cable,1,11.95,2019-02-15 17:35:00,207 1st St, Seattle,WA,98101 +161682,Flatscreen TV,1,300.0,2019-02-13 08:15:00,48 Sunset St, Austin,TX,73301 +161683,Bose SoundSport Headphones,1,99.99,2019-02-07 23:40:00,865 Church St, Portland,OR,97035 +161684,ThinkPad Laptop,1,999.99,2019-02-25 12:40:00,393 Lakeview St, Portland,OR,97035 +161684,Apple Airpods Headphones,1,150.0,2019-02-25 12:40:00,393 Lakeview St, Portland,OR,97035 +161685,AA Batteries (4-pack),1,3.84,2019-02-13 13:41:00,504 Meadow St, Los Angeles,CA,90001 +161686,Wired Headphones,1,11.99,2019-02-22 08:44:00,790 Willow St, Los Angeles,CA,90001 +161687,34in Ultrawide Monitor,1,379.99,2019-02-26 20:47:00,387 Hickory St, Dallas,TX,75001 +161688,AAA Batteries (4-pack),4,2.99,2019-02-07 20:04:00,820 11th St, Los Angeles,CA,90001 +161689,AAA Batteries (4-pack),1,2.99,2019-02-24 14:51:00,59 1st St, San Francisco,CA,94016 +161690,Wired Headphones,1,11.99,2019-02-06 12:00:00,137 Willow St, Los Angeles,CA,90001 +161691,Lightning Charging Cable,1,14.95,2019-02-12 21:46:00,120 Maple St, New York City,NY,10001 +161692,Flatscreen TV,1,300.0,2019-02-09 20:03:00,12 Adams St, Atlanta,GA,30301 +161693,27in FHD Monitor,1,149.99,2019-02-17 14:17:00,258 Lakeview St, San Francisco,CA,94016 +161694,USB-C Charging Cable,2,11.95,2019-02-22 13:38:00,542 10th St, Seattle,WA,98101 +161695,AAA Batteries (4-pack),1,2.99,2019-02-05 18:08:00,824 Madison St, Portland,ME,04101 +161696,Bose SoundSport Headphones,1,99.99,2019-02-01 23:35:00,918 Lakeview St, San Francisco,CA,94016 +161697,Apple Airpods Headphones,1,150.0,2019-02-28 22:57:00,595 2nd St, Los Angeles,CA,90001 +161698,AA Batteries (4-pack),1,3.84,2019-02-15 17:12:00,39 8th St, San Francisco,CA,94016 +161699,Apple Airpods Headphones,1,150.0,2019-02-14 15:45:00,436 Park St, Austin,TX,73301 +161700,Lightning Charging Cable,1,14.95,2019-02-06 13:06:00,729 Cherry St, New York City,NY,10001 +161701,USB-C Charging Cable,1,11.95,2019-02-26 17:55:00,679 Center St, Boston,MA,02215 +161702,27in 4K Gaming Monitor,1,389.99,2019-02-22 22:52:00,865 Park St, Boston,MA,02215 +161703,27in FHD Monitor,1,149.99,2019-02-17 11:59:00,964 10th St, New York City,NY,10001 +161704,AA Batteries (4-pack),2,3.84,2019-02-27 20:51:00,48 Elm St, San Francisco,CA,94016 +161705,AA Batteries (4-pack),1,3.84,2019-02-07 18:42:00,719 1st St, San Francisco,CA,94016 +161706,Bose SoundSport Headphones,1,99.99,2019-02-16 22:47:00,850 Elm St, Atlanta,GA,30301 +161707,Apple Airpods Headphones,1,150.0,2019-02-03 13:27:00,899 Adams St, San Francisco,CA,94016 +161708,Wired Headphones,1,11.99,2019-02-03 16:47:00,151 Chestnut St, Austin,TX,73301 +161709,ThinkPad Laptop,1,999.99,2019-02-10 14:35:00,390 Highland St, Seattle,WA,98101 +161710,AA Batteries (4-pack),1,3.84,2019-02-02 11:56:00,680 8th St, Portland,OR,97035 +161711,iPhone,1,700.0,2019-02-27 07:08:00,487 6th St, Austin,TX,73301 +161712,Lightning Charging Cable,1,14.95,2019-02-10 09:58:00,10 7th St, San Francisco,CA,94016 +161713,AAA Batteries (4-pack),1,2.99,2019-02-03 12:38:00,74 7th St, Seattle,WA,98101 +161714,Wired Headphones,1,11.99,2019-02-16 14:19:00,123 2nd St, San Francisco,CA,94016 +161715,USB-C Charging Cable,1,11.95,2019-02-25 06:11:00,553 Ridge St, Atlanta,GA,30301 +161716,AAA Batteries (4-pack),1,2.99,2019-02-11 17:44:00,788 Pine St, Boston,MA,02215 +161717,Lightning Charging Cable,1,14.95,2019-02-15 15:23:00,524 Wilson St, Austin,TX,73301 +161718,Bose SoundSport Headphones,1,99.99,2019-02-01 19:43:00,446 Madison St, New York City,NY,10001 +161719,Google Phone,1,600.0,2019-02-12 12:41:00,857 Chestnut St, Los Angeles,CA,90001 +161720,Apple Airpods Headphones,1,150.0,2019-02-28 13:56:00,525 Wilson St, Seattle,WA,98101 +161721,Lightning Charging Cable,1,14.95,2019-02-12 13:33:00,472 9th St, Seattle,WA,98101 +161722,Lightning Charging Cable,1,14.95,2019-02-22 18:48:00,435 Jefferson St, Seattle,WA,98101 +161723,AA Batteries (4-pack),1,3.84,2019-02-04 15:30:00,624 South St, San Francisco,CA,94016 +161724,Wired Headphones,1,11.99,2019-02-06 22:09:00,782 8th St, San Francisco,CA,94016 +161725,Lightning Charging Cable,1,14.95,2019-02-08 11:59:00,719 13th St, San Francisco,CA,94016 +161726,AA Batteries (4-pack),1,3.84,2019-02-27 16:46:00,32 River St, San Francisco,CA,94016 +161727,USB-C Charging Cable,1,11.95,2019-02-25 14:15:00,542 Park St, Los Angeles,CA,90001 +161728,27in 4K Gaming Monitor,1,389.99,2019-02-18 17:59:00,62 Hill St, Dallas,TX,75001 +161729,Bose SoundSport Headphones,1,99.99,2019-02-21 06:51:00,964 6th St, San Francisco,CA,94016 +161730,20in Monitor,1,109.99,2019-02-04 19:22:00,309 Cedar St, Dallas,TX,75001 +161731,Wired Headphones,1,11.99,2019-02-07 09:36:00,255 12th St, Dallas,TX,75001 +161732,Wired Headphones,1,11.99,2019-02-11 17:11:00,524 2nd St, Seattle,WA,98101 +161733,AAA Batteries (4-pack),1,2.99,2019-02-20 21:13:00,743 Johnson St, San Francisco,CA,94016 +161733,Lightning Charging Cable,1,14.95,2019-02-20 21:13:00,743 Johnson St, San Francisco,CA,94016 +161734,Flatscreen TV,1,300.0,2019-02-10 10:58:00,249 2nd St, San Francisco,CA,94016 +161735,AAA Batteries (4-pack),1,2.99,2019-02-13 11:21:00,810 Forest St, San Francisco,CA,94016 +161736,AAA Batteries (4-pack),1,2.99,2019-02-11 20:09:00,868 Willow St, Los Angeles,CA,90001 +161737,AA Batteries (4-pack),1,3.84,2019-02-09 10:51:00,430 Church St, San Francisco,CA,94016 +161738,Bose SoundSport Headphones,1,99.99,2019-02-03 09:33:00,743 Madison St, Los Angeles,CA,90001 +161739,Vareebadd Phone,1,400.0,2019-02-02 14:26:00,765 13th St, Boston,MA,02215 +161740,Wired Headphones,1,11.99,2019-02-03 14:56:00,28 11th St, Seattle,WA,98101 +161741,AA Batteries (4-pack),1,3.84,2019-02-06 14:25:00,961 Washington St, Seattle,WA,98101 +161742,iPhone,1,700.0,2019-02-07 22:56:00,983 6th St, San Francisco,CA,94016 +161743,AA Batteries (4-pack),2,3.84,2019-02-27 01:19:00,100 North St, Los Angeles,CA,90001 +161744,Bose SoundSport Headphones,1,99.99,2019-02-26 11:16:00,562 Jackson St, Portland,OR,97035 +161745,Apple Airpods Headphones,1,150.0,2019-02-15 20:28:00,722 Center St, Atlanta,GA,30301 +161746,Vareebadd Phone,1,400.0,2019-02-22 12:13:00,885 10th St, San Francisco,CA,94016 +161747,LG Washing Machine,1,600.0,2019-02-22 22:59:00,609 Madison St, San Francisco,CA,94016 +161748,27in 4K Gaming Monitor,1,389.99,2019-02-05 23:06:00,828 River St, Austin,TX,73301 +161749,Apple Airpods Headphones,1,150.0,2019-02-13 17:38:00,672 11th St, Austin,TX,73301 +161750,AA Batteries (4-pack),1,3.84,2019-02-22 13:35:00,814 13th St, Atlanta,GA,30301 +161751,AAA Batteries (4-pack),2,2.99,2019-02-20 14:05:00,107 6th St, San Francisco,CA,94016 +161752,20in Monitor,1,109.99,2019-02-24 16:31:00,255 Spruce St, San Francisco,CA,94016 +161753,Apple Airpods Headphones,1,150.0,2019-02-08 00:13:00,861 Jackson St, Portland,OR,97035 +161754,Apple Airpods Headphones,1,150.0,2019-02-07 23:04:00,788 Adams St, Dallas,TX,75001 +161755,Macbook Pro Laptop,1,1700.0,2019-02-19 12:14:00,752 6th St, Portland,OR,97035 +161756,Flatscreen TV,1,300.0,2019-02-13 19:14:00,891 4th St, San Francisco,CA,94016 +161757,Vareebadd Phone,1,400.0,2019-02-02 19:03:00,138 Walnut St, Boston,MA,02215 +161758,LG Washing Machine,1,600.0,2019-02-06 17:02:00,986 6th St, San Francisco,CA,94016 +161759,27in 4K Gaming Monitor,1,389.99,2019-02-03 18:25:00,258 Dogwood St, New York City,NY,10001 +161760,Lightning Charging Cable,1,14.95,2019-02-16 16:14:00,443 Main St, Boston,MA,02215 +161761,USB-C Charging Cable,1,11.95,2019-02-20 13:27:00,824 Walnut St, Los Angeles,CA,90001 +161762,Apple Airpods Headphones,1,150.0,2019-02-28 08:14:00,27 Hickory St, Los Angeles,CA,90001 +161763,USB-C Charging Cable,1,11.95,2019-02-24 21:47:00,513 Spruce St, San Francisco,CA,94016 +161764,Wired Headphones,1,11.99,2019-02-27 14:21:00,587 River St, San Francisco,CA,94016 +161765,USB-C Charging Cable,1,11.95,2019-02-03 18:52:00,35 14th St, Portland,OR,97035 +161766,USB-C Charging Cable,2,11.95,2019-02-05 19:49:00,786 13th St, Boston,MA,02215 +161767,Flatscreen TV,1,300.0,2019-02-05 15:27:00,317 8th St, New York City,NY,10001 +161768,Lightning Charging Cable,2,14.95,2019-02-05 23:49:00,77 7th St, Dallas,TX,75001 +161769,Google Phone,1,600.0,2019-02-03 12:11:00,807 Meadow St, New York City,NY,10001 +161770,Apple Airpods Headphones,1,150.0,2019-02-13 22:32:00,636 8th St, Austin,TX,73301 +161771,AA Batteries (4-pack),2,3.84,2019-02-05 15:47:00,383 Wilson St, Los Angeles,CA,90001 +161772,USB-C Charging Cable,1,11.95,2019-02-01 11:17:00,337 14th St, Atlanta,GA,30301 +161773,LG Washing Machine,1,600.0,2019-02-14 16:56:00,178 River St, San Francisco,CA,94016 +161774,27in FHD Monitor,1,149.99,2019-02-08 00:36:00,929 Cedar St, New York City,NY,10001 +161775,Bose SoundSport Headphones,1,99.99,2019-02-13 17:39:00,578 Adams St, New York City,NY,10001 +161776,27in FHD Monitor,1,149.99,2019-02-08 21:25:00,32 Forest St, Los Angeles,CA,90001 +161777,AAA Batteries (4-pack),3,2.99,2019-02-02 20:56:00,501 Highland St, Los Angeles,CA,90001 +161778,27in 4K Gaming Monitor,1,389.99,2019-02-23 10:35:00,214 Wilson St, Seattle,WA,98101 +161779,Wired Headphones,1,11.99,2019-02-12 10:10:00,531 1st St, Dallas,TX,75001 +161780,Bose SoundSport Headphones,1,99.99,2019-02-21 08:51:00,838 6th St, Boston,MA,02215 +161781,Bose SoundSport Headphones,1,99.99,2019-02-27 22:18:00,31 Meadow St, Boston,MA,02215 +161782,Wired Headphones,1,11.99,2019-02-25 21:43:00,271 Main St, Boston,MA,02215 +161783,AAA Batteries (4-pack),2,2.99,2019-02-27 19:21:00,427 Johnson St, Austin,TX,73301 +161784,AAA Batteries (4-pack),3,2.99,2019-02-13 18:46:00,920 Lincoln St, Austin,TX,73301 +161785,Wired Headphones,1,11.99,2019-02-19 08:55:00,615 Maple St, Los Angeles,CA,90001 +161786,Wired Headphones,1,11.99,2019-02-04 11:54:00,518 Forest St, Austin,TX,73301 +161787,Lightning Charging Cable,1,14.95,2019-02-06 18:14:00,91 North St, Seattle,WA,98101 +161788,Lightning Charging Cable,1,14.95,2019-02-04 21:39:00,84 Maple St, Dallas,TX,75001 +161789,27in 4K Gaming Monitor,1,389.99,2019-02-28 20:51:00,40 4th St, San Francisco,CA,94016 +161790,27in FHD Monitor,1,149.99,2019-02-24 21:32:00,210 7th St, Atlanta,GA,30301 +161791,AAA Batteries (4-pack),1,2.99,2019-02-03 14:07:00,599 13th St, Los Angeles,CA,90001 +161792,Wired Headphones,1,11.99,2019-02-04 09:44:00,702 8th St, Dallas,TX,75001 +161793,Wired Headphones,1,11.99,2019-02-03 12:03:00,612 Maple St, Los Angeles,CA,90001 +161794,Bose SoundSport Headphones,1,99.99,2019-02-27 12:25:00,719 Johnson St, San Francisco,CA,94016 +161795,Bose SoundSport Headphones,1,99.99,2019-02-04 12:31:00,42 Walnut St, Portland,ME,04101 +161796,Lightning Charging Cable,1,14.95,2019-02-14 01:35:00,522 Church St, Portland,OR,97035 +161797,Bose SoundSport Headphones,1,99.99,2019-02-15 12:46:00,670 Meadow St, San Francisco,CA,94016 +161798,Wired Headphones,1,11.99,2019-02-09 22:02:00,950 River St, Austin,TX,73301 +161799,Lightning Charging Cable,1,14.95,2019-02-01 11:10:00,828 Hickory St, Seattle,WA,98101 +161800,20in Monitor,1,109.99,2019-02-28 09:21:00,572 12th St, New York City,NY,10001 +161801,Lightning Charging Cable,1,14.95,2019-02-25 15:10:00,658 4th St, San Francisco,CA,94016 +161802,27in FHD Monitor,1,149.99,2019-02-22 18:31:00,39 Meadow St, Los Angeles,CA,90001 +161803,USB-C Charging Cable,1,11.95,2019-02-28 12:26:00,103 Ridge St, Los Angeles,CA,90001 +161804,Lightning Charging Cable,1,14.95,2019-02-22 21:24:00,533 Washington St, Atlanta,GA,30301 +161805,AA Batteries (4-pack),1,3.84,2019-02-17 23:21:00,311 Washington St, New York City,NY,10001 +161806,iPhone,1,700.0,2019-02-16 07:55:00,861 Ridge St, Seattle,WA,98101 +161806,Apple Airpods Headphones,1,150.0,2019-02-16 07:55:00,861 Ridge St, Seattle,WA,98101 +161807,Lightning Charging Cable,1,14.95,2019-02-23 18:14:00,805 Lakeview St, New York City,NY,10001 +161808,Lightning Charging Cable,1,14.95,2019-02-13 19:25:00,595 Wilson St, New York City,NY,10001 +161809,Google Phone,1,600.0,2019-02-05 11:37:00,596 Hill St, San Francisco,CA,94016 +161810,Apple Airpods Headphones,1,150.0,2019-02-23 09:40:00,524 9th St, Dallas,TX,75001 +161811,Wired Headphones,1,11.99,2019-02-08 13:06:00,293 Jackson St, San Francisco,CA,94016 +161812,Wired Headphones,1,11.99,2019-02-13 11:18:00,649 Main St, San Francisco,CA,94016 +161813,Google Phone,1,600.0,2019-02-23 17:48:00,581 10th St, Portland,OR,97035 +161814,27in 4K Gaming Monitor,1,389.99,2019-02-20 16:22:00,137 10th St, Boston,MA,02215 +161815,USB-C Charging Cable,1,11.95,2019-02-20 16:24:00,574 10th St, San Francisco,CA,94016 +161816,iPhone,1,700.0,2019-02-18 16:04:00,881 Pine St, Boston,MA,02215 +161817,Lightning Charging Cable,1,14.95,2019-02-16 16:38:00,534 10th St, New York City,NY,10001 +161818,Apple Airpods Headphones,1,150.0,2019-02-25 21:44:00,65 Johnson St, Boston,MA,02215 +161819,Apple Airpods Headphones,1,150.0,2019-02-18 13:26:00,95 12th St, Atlanta,GA,30301 +161820,Apple Airpods Headphones,1,150.0,2019-02-17 14:14:00,220 Jackson St, San Francisco,CA,94016 +161821,20in Monitor,1,109.99,2019-02-24 00:39:00,517 Highland St, Atlanta,GA,30301 +161822,AA Batteries (4-pack),1,3.84,2019-02-19 11:07:00,126 Elm St, Los Angeles,CA,90001 +161823,AA Batteries (4-pack),2,3.84,2019-02-27 02:29:00,651 Dogwood St, Seattle,WA,98101 +161824,AA Batteries (4-pack),3,3.84,2019-02-21 07:24:00,635 1st St, Boston,MA,02215 +161825,Lightning Charging Cable,1,14.95,2019-02-25 12:05:00,864 13th St, Seattle,WA,98101 +161826,LG Dryer,1,600.0,2019-02-24 21:06:00,411 2nd St, Dallas,TX,75001 +161827,Flatscreen TV,1,300.0,2019-02-03 00:09:00,4 2nd St, Boston,MA,02215 +161828,USB-C Charging Cable,1,11.95,2019-02-23 14:33:00,701 Dogwood St, New York City,NY,10001 +161829,USB-C Charging Cable,1,11.95,2019-02-05 21:21:00,661 1st St, San Francisco,CA,94016 +161830,AA Batteries (4-pack),1,3.84,2019-02-08 11:07:00,127 Chestnut St, Atlanta,GA,30301 +161831,Apple Airpods Headphones,1,150.0,2019-02-26 20:19:00,953 Elm St, Boston,MA,02215 +161832,AAA Batteries (4-pack),2,2.99,2019-02-10 16:28:00,734 North St, Seattle,WA,98101 +161833,ThinkPad Laptop,1,999.99,2019-02-03 11:59:00,342 Church St, San Francisco,CA,94016 +161834,AAA Batteries (4-pack),1,2.99,2019-02-21 01:12:00,300 Meadow St, San Francisco,CA,94016 +161835,Wired Headphones,1,11.99,2019-02-21 07:39:00,504 14th St, Los Angeles,CA,90001 +161836,27in FHD Monitor,1,149.99,2019-02-22 10:49:00,322 Willow St, Dallas,TX,75001 +161837,AA Batteries (4-pack),1,3.84,2019-02-14 00:33:00,429 Sunset St, San Francisco,CA,94016 +161838,USB-C Charging Cable,1,11.95,2019-02-13 23:50:00,434 6th St, San Francisco,CA,94016 +161839,AA Batteries (4-pack),1,3.84,2019-02-27 18:17:00,835 Ridge St, Los Angeles,CA,90001 +161840,Lightning Charging Cable,1,14.95,2019-02-18 20:54:00,208 South St, Portland,OR,97035 +161841,Wired Headphones,1,11.99,2019-02-15 18:31:00,950 West St, Dallas,TX,75001 +161842,iPhone,1,700.0,2019-02-03 17:31:00,727 Pine St, New York City,NY,10001 +161843,27in 4K Gaming Monitor,1,389.99,2019-02-17 19:24:00,426 Chestnut St, Los Angeles,CA,90001 +161844,Macbook Pro Laptop,1,1700.0,2019-02-24 20:41:00,432 14th St, New York City,NY,10001 +161845,Macbook Pro Laptop,1,1700.0,2019-02-26 20:57:00,674 Spruce St, Los Angeles,CA,90001 +161846,ThinkPad Laptop,1,999.99,2019-02-08 12:59:00,102 Sunset St, San Francisco,CA,94016 +161847,Lightning Charging Cable,1,14.95,2019-02-28 13:30:00,38 Elm St, San Francisco,CA,94016 +161848,Flatscreen TV,1,300.0,2019-02-12 19:34:00,229 West St, Los Angeles,CA,90001 +161849,Lightning Charging Cable,1,14.95,2019-02-03 10:03:00,194 6th St, San Francisco,CA,94016 +161850,AA Batteries (4-pack),1,3.84,2019-02-17 20:38:00,317 2nd St, Los Angeles,CA,90001 +161850,AAA Batteries (4-pack),1,2.99,2019-02-17 20:38:00,317 2nd St, Los Angeles,CA,90001 +161851,Flatscreen TV,1,300.0,2019-02-19 22:57:00,988 Forest St, Seattle,WA,98101 +161852,Lightning Charging Cable,1,14.95,2019-02-26 22:53:00,393 Washington St, Austin,TX,73301 +161853,Wired Headphones,1,11.99,2019-02-01 18:05:00,93 Spruce St, Dallas,TX,75001 +161854,Google Phone,1,600.0,2019-02-08 12:02:00,131 Center St, Los Angeles,CA,90001 +161855,Wired Headphones,1,11.99,2019-02-27 12:51:00,715 10th St, Boston,MA,02215 +161856,Flatscreen TV,1,300.0,2019-02-14 17:00:00,68 River St, Los Angeles,CA,90001 +161857,27in FHD Monitor,1,149.99,2019-02-02 14:26:00,508 Cherry St, San Francisco,CA,94016 +161858,USB-C Charging Cable,1,11.95,2019-02-08 20:05:00,991 6th St, Dallas,TX,75001 +161859,AA Batteries (4-pack),2,3.84,2019-02-24 22:58:00,286 West St, New York City,NY,10001 +161860,AAA Batteries (4-pack),1,2.99,2019-02-13 19:13:00,417 Church St, New York City,NY,10001 +161861,Lightning Charging Cable,1,14.95,2019-02-17 08:29:00,784 Hill St, Portland,OR,97035 +161861,Wired Headphones,1,11.99,2019-02-17 08:29:00,784 Hill St, Portland,OR,97035 +161862,Apple Airpods Headphones,1,150.0,2019-02-09 22:14:00,454 Cherry St, Atlanta,GA,30301 +161863,Google Phone,1,600.0,2019-02-14 11:45:00,941 Main St, San Francisco,CA,94016 +161864,Wired Headphones,1,11.99,2019-02-07 21:02:00,691 Park St, Portland,ME,04101 +161865,iPhone,1,700.0,2019-02-11 18:49:00,865 Spruce St, Portland,OR,97035 +161866,AAA Batteries (4-pack),1,2.99,2019-02-08 10:24:00,475 Lincoln St, New York City,NY,10001 +161867,ThinkPad Laptop,1,999.99,2019-02-11 20:15:00,791 Park St, Los Angeles,CA,90001 +161868,AA Batteries (4-pack),1,3.84,2019-02-04 11:06:00,860 Pine St, Los Angeles,CA,90001 +161869,USB-C Charging Cable,1,11.95,2019-02-09 11:15:00,79 Forest St, Los Angeles,CA,90001 +161870,AAA Batteries (4-pack),1,2.99,2019-02-26 14:00:00,583 Lakeview St, San Francisco,CA,94016 +161871,AA Batteries (4-pack),1,3.84,2019-02-25 17:52:00,53 5th St, Boston,MA,02215 +161872,Lightning Charging Cable,3,14.95,2019-02-15 22:26:00,833 Jefferson St, Los Angeles,CA,90001 +161873,Lightning Charging Cable,1,14.95,2019-02-26 14:58:00,216 Sunset St, San Francisco,CA,94016 +161874,27in FHD Monitor,1,149.99,2019-02-03 12:25:00,415 Lincoln St, Seattle,WA,98101 +161875,USB-C Charging Cable,1,11.95,2019-02-25 15:08:00,788 5th St, Boston,MA,02215 +161876,Wired Headphones,1,11.99,2019-02-25 14:38:00,242 6th St, Dallas,TX,75001 +161877,AAA Batteries (4-pack),4,2.99,2019-02-16 19:17:00,712 5th St, San Francisco,CA,94016 +161878,Google Phone,1,600.0,2019-02-26 01:05:00,877 North St, Los Angeles,CA,90001 +161879,AA Batteries (4-pack),2,3.84,2019-02-14 19:52:00,115 South St, New York City,NY,10001 +161880,USB-C Charging Cable,1,11.95,2019-02-11 08:58:00,492 Lake St, San Francisco,CA,94016 +161881,USB-C Charging Cable,1,11.95,2019-02-01 08:22:00,17 Park St, Austin,TX,73301 +161882,Apple Airpods Headphones,1,150.0,2019-02-06 18:26:00,86 Lakeview St, San Francisco,CA,94016 +161883,Bose SoundSport Headphones,1,99.99,2019-02-08 10:26:00,861 Lakeview St, Portland,OR,97035 +161884,USB-C Charging Cable,1,11.95,2019-02-27 11:03:00,328 8th St, San Francisco,CA,94016 +161885,Google Phone,1,600.0,2019-02-25 13:30:00,647 Wilson St, Portland,OR,97035 +161886,AAA Batteries (4-pack),1,2.99,2019-02-21 13:09:00,977 9th St, Portland,OR,97035 +161887,Apple Airpods Headphones,1,150.0,2019-02-18 19:48:00,770 Chestnut St, Dallas,TX,75001 +161888,20in Monitor,1,109.99,2019-02-09 12:43:00,545 North St, Atlanta,GA,30301 +161889,Vareebadd Phone,1,400.0,2019-02-10 20:21:00,264 Pine St, Atlanta,GA,30301 +161890,Wired Headphones,1,11.99,2019-02-01 21:51:00,126 Johnson St, Dallas,TX,75001 +161891,LG Washing Machine,1,600.0,2019-02-03 14:16:00,397 Jackson St, San Francisco,CA,94016 +161891,Lightning Charging Cable,1,14.95,2019-02-03 14:16:00,397 Jackson St, San Francisco,CA,94016 +161892,AAA Batteries (4-pack),4,2.99,2019-02-22 11:52:00,936 Center St, New York City,NY,10001 +161893,USB-C Charging Cable,1,11.95,2019-02-09 21:06:00,309 Sunset St, Dallas,TX,75001 +161894,AAA Batteries (4-pack),1,2.99,2019-02-15 00:43:00,416 Highland St, San Francisco,CA,94016 +161895,AAA Batteries (4-pack),1,2.99,2019-02-08 05:12:00,43 Madison St, San Francisco,CA,94016 +161896,ThinkPad Laptop,1,999.99,2019-02-21 17:15:00,580 Cedar St, Boston,MA,02215 +161897,AAA Batteries (4-pack),1,2.99,2019-02-06 18:45:00,359 Dogwood St, San Francisco,CA,94016 +161898,Wired Headphones,1,11.99,2019-02-27 21:18:00,252 Hill St, Austin,TX,73301 +161899,AA Batteries (4-pack),1,3.84,2019-02-26 13:02:00,620 Cedar St, San Francisco,CA,94016 +161900,iPhone,1,700.0,2019-02-02 00:24:00,768 Meadow St, Atlanta,GA,30301 +161901,USB-C Charging Cable,1,11.95,2019-02-24 18:48:00,759 Hickory St, Los Angeles,CA,90001 +161902,27in FHD Monitor,1,149.99,2019-02-01 08:08:00,951 Cedar St, Portland,ME,04101 +161903,USB-C Charging Cable,1,11.95,2019-02-08 22:13:00,286 Meadow St, Atlanta,GA,30301 +161904,27in FHD Monitor,1,149.99,2019-02-01 11:29:00,107 North St, San Francisco,CA,94016 +161905,Bose SoundSport Headphones,1,99.99,2019-02-03 19:46:00,390 Jackson St, Portland,OR,97035 +161906,AAA Batteries (4-pack),3,2.99,2019-02-24 08:51:00,733 Walnut St, Los Angeles,CA,90001 +161907,AAA Batteries (4-pack),2,2.99,2019-02-05 14:59:00,343 Meadow St, Los Angeles,CA,90001 +161908,Apple Airpods Headphones,1,150.0,2019-02-21 14:30:00,249 Willow St, San Francisco,CA,94016 +161909,Google Phone,1,600.0,2019-02-02 15:31:00,795 Hickory St, San Francisco,CA,94016 +161910,Lightning Charging Cable,1,14.95,2019-02-02 20:55:00,704 Dogwood St, Los Angeles,CA,90001 +161911,Lightning Charging Cable,1,14.95,2019-02-22 21:54:00,190 Chestnut St, Los Angeles,CA,90001 +161912,LG Washing Machine,1,600.0,2019-02-04 19:21:00,141 South St, Atlanta,GA,30301 +161913,USB-C Charging Cable,1,11.95,2019-02-18 01:45:00,668 Hill St, Boston,MA,02215 +161914,Bose SoundSport Headphones,2,99.99,2019-02-01 17:50:00,766 5th St, Portland,OR,97035 +161915,AA Batteries (4-pack),1,3.84,2019-02-20 08:39:00,114 Jefferson St, San Francisco,CA,94016 +161916,34in Ultrawide Monitor,1,379.99,2019-02-05 22:02:00,212 Cedar St, New York City,NY,10001 +161917,Wired Headphones,1,11.99,2019-02-19 11:04:00,434 Church St, Boston,MA,02215 +161918,Lightning Charging Cable,1,14.95,2019-02-15 13:54:00,980 Hill St, Boston,MA,02215 +161919,Lightning Charging Cable,1,14.95,2019-02-25 21:36:00,414 Church St, New York City,NY,10001 +161920,Google Phone,1,600.0,2019-02-24 20:34:00,284 Walnut St, San Francisco,CA,94016 +161920,USB-C Charging Cable,1,11.95,2019-02-24 20:34:00,284 Walnut St, San Francisco,CA,94016 +161920,AAA Batteries (4-pack),1,2.99,2019-02-24 20:34:00,284 Walnut St, San Francisco,CA,94016 +161921,Lightning Charging Cable,1,14.95,2019-02-25 10:19:00,601 10th St, Boston,MA,02215 +161922,34in Ultrawide Monitor,1,379.99,2019-02-09 10:08:00,783 Elm St, Portland,ME,04101 +161923,AAA Batteries (4-pack),2,2.99,2019-02-11 17:56:00,260 Washington St, San Francisco,CA,94016 +161924,AA Batteries (4-pack),1,3.84,2019-02-26 18:38:00,134 Forest St, Atlanta,GA,30301 +161925,Wired Headphones,1,11.99,2019-02-04 15:00:00,662 14th St, Los Angeles,CA,90001 +161926,Wired Headphones,1,11.99,2019-02-06 11:08:00,545 Meadow St, San Francisco,CA,94016 +161927,Apple Airpods Headphones,1,150.0,2019-02-14 16:50:00,809 Jefferson St, San Francisco,CA,94016 +161928,AA Batteries (4-pack),1,3.84,2019-02-19 10:10:00,70 6th St, Atlanta,GA,30301 +161929,Lightning Charging Cable,1,14.95,2019-02-19 14:54:00,722 South St, Dallas,TX,75001 +161930,AA Batteries (4-pack),1,3.84,2019-02-02 15:54:00,986 Johnson St, Seattle,WA,98101 +161931,iPhone,1,700.0,2019-02-18 21:01:00,588 12th St, Boston,MA,02215 +161932,USB-C Charging Cable,1,11.95,2019-02-12 16:54:00,439 Elm St, Portland,OR,97035 +161933,34in Ultrawide Monitor,1,379.99,2019-02-20 16:51:00,851 4th St, San Francisco,CA,94016 +161934,34in Ultrawide Monitor,1,379.99,2019-02-09 01:51:00,111 Walnut St, Portland,OR,97035 +161935,AAA Batteries (4-pack),1,2.99,2019-02-15 12:58:00,832 Jackson St, Boston,MA,02215 +161936,Flatscreen TV,1,300.0,2019-02-21 01:41:00,266 Jackson St, Seattle,WA,98101 +161937,Lightning Charging Cable,1,14.95,2019-02-18 14:47:00,487 Ridge St, Austin,TX,73301 +161938,USB-C Charging Cable,1,11.95,2019-02-12 14:41:00,210 1st St, Austin,TX,73301 +161939,34in Ultrawide Monitor,1,379.99,2019-02-05 20:24:00,109 Madison St, San Francisco,CA,94016 +161940,USB-C Charging Cable,1,11.95,2019-02-22 10:52:00,285 Highland St, Los Angeles,CA,90001 +161941,Lightning Charging Cable,1,14.95,2019-02-05 20:38:00,587 Madison St, San Francisco,CA,94016 +161942,Bose SoundSport Headphones,1,99.99,2019-02-03 07:11:00,143 Main St, Dallas,TX,75001 +161943,AAA Batteries (4-pack),1,2.99,2019-02-16 17:43:00,530 1st St, Seattle,WA,98101 +161944,Apple Airpods Headphones,1,150.0,2019-02-24 09:34:00,631 North St, New York City,NY,10001 +161945,USB-C Charging Cable,1,11.95,2019-02-19 09:44:00,814 Highland St, Dallas,TX,75001 +161945,34in Ultrawide Monitor,1,379.99,2019-02-19 09:44:00,814 Highland St, Dallas,TX,75001 +161946,Wired Headphones,2,11.99,2019-02-15 16:51:00,981 Cherry St, Dallas,TX,75001 +161947,Apple Airpods Headphones,1,150.0,2019-02-11 18:39:00,244 Jackson St, Dallas,TX,75001 +161948,iPhone,1,700.0,2019-02-03 21:08:00,207 Dogwood St, San Francisco,CA,94016 +161949,AAA Batteries (4-pack),1,2.99,2019-02-19 11:08:00,843 Chestnut St, Los Angeles,CA,90001 +161950,Bose SoundSport Headphones,1,99.99,2019-02-27 18:26:00,461 Church St, New York City,NY,10001 +161951,AA Batteries (4-pack),2,3.84,2019-02-22 18:48:00,634 Walnut St, San Francisco,CA,94016 +161952,27in FHD Monitor,1,149.99,2019-02-13 01:52:00,534 1st St, New York City,NY,10001 +161953,AAA Batteries (4-pack),1,2.99,2019-02-14 09:52:00,313 11th St, San Francisco,CA,94016 +161954,ThinkPad Laptop,1,999.99,2019-02-06 13:32:00,972 9th St, Portland,ME,04101 +161955,USB-C Charging Cable,1,11.95,2019-02-08 11:16:00,476 Walnut St, Austin,TX,73301 +161956,Lightning Charging Cable,1,14.95,2019-02-12 18:57:00,74 10th St, Los Angeles,CA,90001 +161957,Wired Headphones,1,11.99,2019-02-25 07:28:00,408 7th St, Boston,MA,02215 +161958,USB-C Charging Cable,1,11.95,2019-02-20 18:28:00,5 Lake St, San Francisco,CA,94016 +161959,Bose SoundSport Headphones,1,99.99,2019-02-12 06:18:00,396 Main St, New York City,NY,10001 +161960,Vareebadd Phone,1,400.0,2019-02-01 11:32:00,867 Cherry St, Boston,MA,02215 +161960,USB-C Charging Cable,2,11.95,2019-02-01 11:32:00,867 Cherry St, Boston,MA,02215 +161961,27in 4K Gaming Monitor,1,389.99,2019-02-28 16:13:00,200 Chestnut St, San Francisco,CA,94016 +161962,Macbook Pro Laptop,1,1700.0,2019-02-12 17:28:00,953 Maple St, San Francisco,CA,94016 +161963,USB-C Charging Cable,1,11.95,2019-02-15 17:13:00,277 2nd St, New York City,NY,10001 +161964,Vareebadd Phone,1,400.0,2019-02-24 14:09:00,82 Jefferson St, Dallas,TX,75001 +161965,Lightning Charging Cable,1,14.95,2019-02-16 11:08:00,702 2nd St, Seattle,WA,98101 +161966,Bose SoundSport Headphones,1,99.99,2019-02-19 18:58:00,540 Dogwood St, Atlanta,GA,30301 +161967,20in Monitor,1,109.99,2019-02-20 12:27:00,586 Ridge St, Austin,TX,73301 +161968,AA Batteries (4-pack),1,3.84,2019-02-15 17:58:00,180 2nd St, Seattle,WA,98101 +161969,Lightning Charging Cable,1,14.95,2019-02-17 10:17:00,593 Church St, San Francisco,CA,94016 +161970,Wired Headphones,1,11.99,2019-02-09 13:23:00,802 Washington St, San Francisco,CA,94016 +161971,Macbook Pro Laptop,1,1700.0,2019-02-09 18:19:00,367 13th St, San Francisco,CA,94016 +161972,Google Phone,1,600.0,2019-02-02 21:01:00,59 Lincoln St, Austin,TX,73301 +161972,USB-C Charging Cable,1,11.95,2019-02-02 21:01:00,59 Lincoln St, Austin,TX,73301 +161973,Lightning Charging Cable,1,14.95,2019-02-09 17:11:00,537 9th St, Los Angeles,CA,90001 +161974,34in Ultrawide Monitor,1,379.99,2019-02-24 10:12:00,812 Forest St, Boston,MA,02215 +161975,iPhone,1,700.0,2019-02-27 21:31:00,608 14th St, Los Angeles,CA,90001 +161976,27in FHD Monitor,1,149.99,2019-02-23 17:49:00,118 Hickory St, Los Angeles,CA,90001 +161977,USB-C Charging Cable,1,11.95,2019-02-08 01:36:00,541 Walnut St, San Francisco,CA,94016 +161978,AA Batteries (4-pack),4,3.84,2019-02-09 08:25:00,43 Church St, Atlanta,GA,30301 +161979,27in FHD Monitor,1,149.99,2019-02-14 20:50:00,251 Maple St, San Francisco,CA,94016 +161980,AA Batteries (4-pack),1,3.84,2019-02-07 15:58:00,940 6th St, Austin,TX,73301 +161981,34in Ultrawide Monitor,1,379.99,2019-02-26 11:47:00,901 12th St, Portland,OR,97035 +161982,AAA Batteries (4-pack),1,2.99,2019-02-01 19:47:00,805 1st St, San Francisco,CA,94016 +161983,Macbook Pro Laptop,1,1700.0,2019-02-25 00:27:00,502 Chestnut St, San Francisco,CA,94016 +161984,AAA Batteries (4-pack),1,2.99,2019-02-04 10:49:00,697 6th St, Los Angeles,CA,90001 +161985,Apple Airpods Headphones,1,150.0,2019-02-26 14:39:00,16 South St, Portland,OR,97035 +161986,Apple Airpods Headphones,1,150.0,2019-02-12 08:21:00,642 Pine St, San Francisco,CA,94016 +161987,Wired Headphones,1,11.99,2019-02-15 20:18:00,269 13th St, Los Angeles,CA,90001 +161988,Bose SoundSport Headphones,1,99.99,2019-02-28 07:49:00,970 5th St, San Francisco,CA,94016 +161989,USB-C Charging Cable,1,11.95,2019-02-21 18:41:00,68 West St, San Francisco,CA,94016 +161990,AA Batteries (4-pack),1,3.84,2019-02-17 20:05:00,309 4th St, Los Angeles,CA,90001 +161991,AAA Batteries (4-pack),1,2.99,2019-02-01 19:24:00,815 14th St, Dallas,TX,75001 +161992,34in Ultrawide Monitor,1,379.99,2019-02-01 23:27:00,101 Walnut St, Boston,MA,02215 +161993,AAA Batteries (4-pack),1,2.99,2019-02-10 12:09:00,848 9th St, Seattle,WA,98101 +161994,AA Batteries (4-pack),2,3.84,2019-02-09 12:04:00,396 Willow St, Dallas,TX,75001 +161995,Lightning Charging Cable,1,14.95,2019-02-23 10:33:00,761 14th St, Los Angeles,CA,90001 +161996,27in FHD Monitor,1,149.99,2019-02-22 20:09:00,979 Willow St, New York City,NY,10001 +161997,Google Phone,1,600.0,2019-02-28 22:15:00,845 8th St, San Francisco,CA,94016 +161997,USB-C Charging Cable,1,11.95,2019-02-28 22:15:00,845 8th St, San Francisco,CA,94016 +161998,Apple Airpods Headphones,1,150.0,2019-02-09 18:31:00,838 14th St, San Francisco,CA,94016 +161999,27in 4K Gaming Monitor,1,389.99,2019-02-16 19:08:00,169 Willow St, New York City,NY,10001 +162000,Macbook Pro Laptop,1,1700.0,2019-02-16 16:44:00,315 Lincoln St, San Francisco,CA,94016 +162001,USB-C Charging Cable,1,11.95,2019-02-06 15:32:00,380 Ridge St, San Francisco,CA,94016 +162002,USB-C Charging Cable,1,11.95,2019-02-25 14:30:00,859 West St, San Francisco,CA,94016 +162003,Macbook Pro Laptop,1,1700.0,2019-02-15 18:31:00,115 Spruce St, New York City,NY,10001 +162004,Apple Airpods Headphones,1,150.0,2019-02-12 22:02:00,227 Church St, San Francisco,CA,94016 +162005,AAA Batteries (4-pack),2,2.99,2019-02-04 20:44:00,417 Jefferson St, Los Angeles,CA,90001 +162006,USB-C Charging Cable,1,11.95,2019-02-24 06:31:00,498 8th St, Atlanta,GA,30301 +162007,USB-C Charging Cable,1,11.95,2019-02-24 19:09:00,715 7th St, Dallas,TX,75001 +162008,27in FHD Monitor,1,149.99,2019-02-26 17:15:00,677 West St, Los Angeles,CA,90001 +141234,iPhone,1,700.0,2019-01-22 21:25:00,944 Walnut St, Boston,MA,02215 +141235,Lightning Charging Cable,1,14.95,2019-01-28 14:15:00,185 Maple St, Portland,OR,97035 +141236,Wired Headphones,2,11.99,2019-01-17 13:33:00,538 Adams St, San Francisco,CA,94016 +141237,27in FHD Monitor,1,149.99,2019-01-05 20:33:00,738 10th St, Los Angeles,CA,90001 +141238,Wired Headphones,1,11.99,2019-01-25 11:59:00,387 10th St, Austin,TX,73301 +141239,AAA Batteries (4-pack),1,2.99,2019-01-29 20:22:00,775 Willow St, San Francisco,CA,94016 +141240,27in 4K Gaming Monitor,1,389.99,2019-01-26 12:16:00,979 Park St, Los Angeles,CA,90001 +141241,USB-C Charging Cable,1,11.95,2019-01-05 12:04:00,181 6th St, San Francisco,CA,94016 +141242,Bose SoundSport Headphones,1,99.99,2019-01-01 10:30:00,867 Willow St, Los Angeles,CA,90001 +141243,Apple Airpods Headphones,1,150.0,2019-01-22 21:20:00,657 Johnson St, San Francisco,CA,94016 +141244,Apple Airpods Headphones,1,150.0,2019-01-07 11:29:00,492 Walnut St, San Francisco,CA,94016 +141245,Macbook Pro Laptop,1,1700.0,2019-01-31 10:12:00,322 6th St, San Francisco,CA,94016 +141246,AAA Batteries (4-pack),3,2.99,2019-01-09 18:57:00,618 7th St, Los Angeles,CA,90001 +141247,27in FHD Monitor,1,149.99,2019-01-25 19:19:00,512 Wilson St, San Francisco,CA,94016 +141248,Flatscreen TV,1,300.0,2019-01-03 21:54:00,363 Spruce St, Austin,TX,73301 +141249,27in FHD Monitor,1,149.99,2019-01-05 17:20:00,440 Cedar St, Portland,OR,97035 +141250,Vareebadd Phone,1,400.0,2019-01-10 11:20:00,471 Center St, Los Angeles,CA,90001 +141251,Apple Airpods Headphones,1,150.0,2019-01-24 08:13:00,414 Walnut St, Boston,MA,02215 +141252,USB-C Charging Cable,1,11.95,2019-01-30 09:28:00,220 9th St, Los Angeles,CA,90001 +141253,AA Batteries (4-pack),1,3.84,2019-01-17 00:09:00,385 11th St, Atlanta,GA,30301 +141254,AAA Batteries (4-pack),1,2.99,2019-01-08 11:51:00,238 Sunset St, Seattle,WA,98101 +141255,USB-C Charging Cable,1,11.95,2019-01-09 20:55:00,764 11th St, Los Angeles,CA,90001 +141256,Google Phone,1,600.0,2019-01-29 10:40:00,675 Washington St, Portland,OR,97035 +141257,Apple Airpods Headphones,1,150.0,2019-01-12 18:51:00,338 Highland St, San Francisco,CA,94016 +141258,AA Batteries (4-pack),1,3.84,2019-01-19 21:47:00,820 1st St, San Francisco,CA,94016 +141259,AAA Batteries (4-pack),2,2.99,2019-01-20 17:26:00,920 Adams St, San Francisco,CA,94016 +141260,AAA Batteries (4-pack),1,2.99,2019-01-01 22:00:00,293 Hill St, San Francisco,CA,94016 +141261,USB-C Charging Cable,1,11.95,2019-01-09 18:14:00,840 Lincoln St, Atlanta,GA,30301 +141262,AAA Batteries (4-pack),1,2.99,2019-01-16 12:35:00,291 Lincoln St, San Francisco,CA,94016 +141263,Bose SoundSport Headphones,1,99.99,2019-01-11 23:33:00,640 Spruce St, Boston,MA,02215 +141264,Apple Airpods Headphones,1,150.0,2019-01-03 09:46:00,937 Highland St, New York City,NY,10001 +141265,Apple Airpods Headphones,1,150.0,2019-01-01 16:52:00,853 Ridge St, Boston,MA,02215 +141266,27in 4K Gaming Monitor,1,389.99,2019-01-02 22:21:00,834 4th St, Dallas,TX,75001 +141267,Apple Airpods Headphones,1,150.0,2019-01-09 08:28:00,649 Sunset St, Los Angeles,CA,90001 +141268,AA Batteries (4-pack),1,3.84,2019-01-14 10:13:00,611 Elm St, New York City,NY,10001 +141269,27in 4K Gaming Monitor,1,389.99,2019-01-03 20:05:00,812 Jefferson St, Los Angeles,CA,90001 +141270,Wired Headphones,1,11.99,2019-01-27 23:10:00,469 Hill St, San Francisco,CA,94016 +141271,USB-C Charging Cable,1,11.95,2019-01-30 10:51:00,90 13th St, Boston,MA,02215 +141272,AAA Batteries (4-pack),1,2.99,2019-01-12 13:09:00,818 Lincoln St, New York City,NY,10001 +141273,Wired Headphones,2,11.99,2019-01-29 12:04:00,994 13th St, Boston,MA,02215 +141274,USB-C Charging Cable,1,11.95,2019-01-17 11:30:00,8 Jackson St, Los Angeles,CA,90001 +141275,USB-C Charging Cable,1,11.95,2019-01-07 16:06:00,610 Walnut St, Austin,TX,73301 +141275,Wired Headphones,1,11.99,2019-01-07 16:06:00,610 Walnut St, Austin,TX,73301 +141276,Lightning Charging Cable,1,14.95,2019-01-21 22:23:00,63 Cherry St, Los Angeles,CA,90001 +141277,Bose SoundSport Headphones,1,99.99,2019-01-13 19:07:00,370 Lakeview St, Austin,TX,73301 +141278,Lightning Charging Cable,1,14.95,2019-01-26 12:14:00,100 Cherry St, New York City,NY,10001 +141279,Lightning Charging Cable,1,14.95,2019-01-03 19:10:00,938 14th St, Boston,MA,02215 +141280,AAA Batteries (4-pack),1,2.99,2019-01-20 16:10:00,530 7th St, Los Angeles,CA,90001 +141281,Lightning Charging Cable,1,14.95,2019-01-05 16:51:00,274 2nd St, Atlanta,GA,30301 +141282,Vareebadd Phone,1,400.0,2019-01-11 18:10:00,125 Center St, New York City,NY,10001 +141283,Flatscreen TV,1,300.0,2019-01-02 16:16:00,68 Hickory St, Seattle,WA,98101 +141284,Wired Headphones,1,11.99,2019-01-29 18:30:00,462 1st St, Los Angeles,CA,90001 +141285,AAA Batteries (4-pack),3,2.99,2019-01-14 14:13:00,447 Cedar St, Seattle,WA,98101 +141286,27in 4K Gaming Monitor,1,389.99,2019-01-02 20:33:00,505 Hickory St, Dallas,TX,75001 +141287,Bose SoundSport Headphones,1,99.99,2019-01-31 08:38:00,386 Elm St, San Francisco,CA,94016 +141288,Macbook Pro Laptop,1,1700.0,2019-01-19 08:17:00,789 Washington St, Los Angeles,CA,90001 +141289,20in Monitor,1,109.99,2019-01-28 11:17:00,534 Elm St, Atlanta,GA,30301 +141290,Apple Airpods Headphones,1,150.0,2019-01-02 08:25:00,4 1st St, Los Angeles,CA,90001 +141290,AA Batteries (4-pack),3,3.84,2019-01-02 08:25:00,4 1st St, Los Angeles,CA,90001 +141291,AA Batteries (4-pack),1,3.84,2019-01-26 18:11:00,632 13th St, Los Angeles,CA,90001 +141292,AAA Batteries (4-pack),1,2.99,2019-01-21 08:46:00,847 Ridge St, Los Angeles,CA,90001 +141293,USB-C Charging Cable,1,11.95,2019-01-18 12:21:00,880 Washington St, Boston,MA,02215 +141294,Bose SoundSport Headphones,1,99.99,2019-01-25 08:12:00,907 Highland St, San Francisco,CA,94016 +141295,AA Batteries (4-pack),1,3.84,2019-01-06 20:06:00,898 Lakeview St, Austin,TX,73301 +141296,USB-C Charging Cable,1,11.95,2019-01-20 00:21:00,889 Cedar St, Atlanta,GA,30301 +141297,Lightning Charging Cable,1,14.95,2019-01-04 11:09:00,566 Highland St, San Francisco,CA,94016 +141298,Lightning Charging Cable,1,14.95,2019-01-21 13:24:00,81 10th St, Dallas,TX,75001 +141299,AAA Batteries (4-pack),1,2.99,2019-01-31 23:23:00,836 Hill St, Dallas,TX,75001 +141300,Apple Airpods Headphones,1,150.0,2019-01-23 10:21:00,121 Cherry St, Boston,MA,02215 +141301,Apple Airpods Headphones,1,150.0,2019-01-27 11:58:00,867 Hill St, New York City,NY,10001 +141302,AAA Batteries (4-pack),2,2.99,2019-01-18 20:12:00,90 14th St, Portland,OR,97035 +141303,AA Batteries (4-pack),1,3.84,2019-01-19 09:23:00,313 14th St, Seattle,WA,98101 +141304,USB-C Charging Cable,1,11.95,2019-01-28 13:10:00,363 Willow St, Los Angeles,CA,90001 +141305,AAA Batteries (4-pack),3,2.99,2019-01-27 16:51:00,756 Wilson St, Austin,TX,73301 +141306,Wired Headphones,1,11.99,2019-01-19 10:25:00,458 Forest St, San Francisco,CA,94016 +141307,AAA Batteries (4-pack),1,2.99,2019-01-11 11:18:00,895 Johnson St, Boston,MA,02215 +141308,27in FHD Monitor,1,149.99,2019-01-12 12:00:00,926 Cedar St, Portland,OR,97035 +141309,AAA Batteries (4-pack),2,2.99,2019-01-20 07:02:00,423 Elm St, San Francisco,CA,94016 +141310,AAA Batteries (4-pack),1,2.99,2019-01-07 13:32:00,679 8th St, San Francisco,CA,94016 +141311,34in Ultrawide Monitor,1,379.99,2019-01-28 12:45:00,223 North St, Atlanta,GA,30301 +141312,Apple Airpods Headphones,1,150.0,2019-01-08 23:20:00,741 11th St, San Francisco,CA,94016 +141313,Lightning Charging Cable,1,14.95,2019-01-09 15:03:00,38 Johnson St, Los Angeles,CA,90001 +141314,Macbook Pro Laptop,1,1700.0,2019-01-13 23:51:00,700 Jefferson St, New York City,NY,10001 +141315,USB-C Charging Cable,1,11.95,2019-01-10 01:32:00,842 8th St, Seattle,WA,98101 +141316,AAA Batteries (4-pack),3,2.99,2019-01-01 07:26:00,235 South St, Seattle,WA,98101 +141317,27in FHD Monitor,1,149.99,2019-01-21 11:18:00,875 Meadow St, New York City,NY,10001 +141318,Bose SoundSport Headphones,1,99.99,2019-01-09 15:21:00,789 Lakeview St, Boston,MA,02215 +141319,Bose SoundSport Headphones,1,99.99,2019-01-01 10:43:00,548 Maple St, Boston,MA,02215 +141320,AA Batteries (4-pack),1,3.84,2019-01-24 13:37:00,326 12th St, Los Angeles,CA,90001 +141321,Bose SoundSport Headphones,1,99.99,2019-01-10 09:07:00,207 8th St, Los Angeles,CA,90001 +141322,AAA Batteries (4-pack),2,2.99,2019-01-12 21:56:00,816 Lake St, Boston,MA,02215 +141323,USB-C Charging Cable,1,11.95,2019-01-17 21:54:00,240 River St, New York City,NY,10001 +141324,USB-C Charging Cable,1,11.95,2019-01-04 23:36:00,851 Maple St, San Francisco,CA,94016 +141325,Bose SoundSport Headphones,1,99.99,2019-01-23 15:17:00,880 Lake St, Austin,TX,73301 +141326,Google Phone,1,600.0,2019-01-05 13:49:00,131 Center St, San Francisco,CA,94016 +141327,USB-C Charging Cable,1,11.95,2019-01-31 01:38:00,238 Washington St, Los Angeles,CA,90001 +141328,ThinkPad Laptop,1,999.99,2019-01-06 23:18:00,736 5th St, Seattle,WA,98101 +141329,USB-C Charging Cable,1,11.95,2019-01-01 16:01:00,122 5th St, Portland,ME,04101 +141330,Wired Headphones,1,11.99,2019-01-21 13:04:00,391 5th St, Portland,OR,97035 +141331,Flatscreen TV,1,300.0,2019-01-09 18:32:00,299 Park St, San Francisco,CA,94016 +141332,USB-C Charging Cable,1,11.95,2019-01-19 18:52:00,207 7th St, Los Angeles,CA,90001 +141333,27in FHD Monitor,1,149.99,2019-01-01 13:58:00,554 10th St, Los Angeles,CA,90001 +141334,USB-C Charging Cable,1,11.95,2019-01-15 02:05:00,459 4th St, San Francisco,CA,94016 +141335,AAA Batteries (4-pack),5,2.99,2019-01-12 18:16:00,174 4th St, Los Angeles,CA,90001 +141336,iPhone,1,700.0,2019-01-09 18:23:00,811 Hickory St, Portland,OR,97035 +141337,Bose SoundSport Headphones,1,99.99,2019-01-09 09:22:00,947 Church St, San Francisco,CA,94016 +141338,AAA Batteries (4-pack),1,2.99,2019-01-29 16:19:00,542 4th St, Dallas,TX,75001 +141339,AAA Batteries (4-pack),1,2.99,2019-01-28 12:52:00,539 Lakeview St, Dallas,TX,75001 +141340,Lightning Charging Cable,1,14.95,2019-01-27 14:30:00,710 Johnson St, Boston,MA,02215 +141341,LG Dryer,1,600.0,2019-01-13 10:09:00,844 Walnut St, Austin,TX,73301 +141342,Wired Headphones,1,11.99,2019-01-26 21:13:00,119 9th St, Seattle,WA,98101 +141343,Bose SoundSport Headphones,1,99.99,2019-01-24 13:36:00,157 1st St, New York City,NY,10001 +141344,Apple Airpods Headphones,1,150.0,2019-01-20 12:38:00,443 Washington St, Portland,OR,97035 +141345,USB-C Charging Cable,1,11.95,2019-01-09 13:55:00,398 5th St, San Francisco,CA,94016 +141346,Apple Airpods Headphones,1,150.0,2019-01-14 13:59:00,285 Cherry St, Boston,MA,02215 +141347,AA Batteries (4-pack),1,3.84,2019-01-27 17:46:00,885 Walnut St, Atlanta,GA,30301 +141348,USB-C Charging Cable,2,11.95,2019-01-26 18:56:00,493 5th St, Portland,OR,97035 +141349,Lightning Charging Cable,1,14.95,2019-01-03 20:51:00,886 10th St, New York City,NY,10001 +141350,Lightning Charging Cable,1,14.95,2019-01-01 11:17:00,804 River St, San Francisco,CA,94016 +141351,USB-C Charging Cable,2,11.95,2019-01-24 17:02:00,865 Church St, San Francisco,CA,94016 +141352,Lightning Charging Cable,1,14.95,2019-01-11 19:07:00,800 4th St, Los Angeles,CA,90001 +141353,USB-C Charging Cable,1,11.95,2019-01-26 10:35:00,870 Cherry St, New York City,NY,10001 +141354,Bose SoundSport Headphones,1,99.99,2019-01-03 11:12:00,869 Hill St, Atlanta,GA,30301 +141355,27in 4K Gaming Monitor,1,389.99,2019-01-18 15:24:00,674 Main St, Dallas,TX,75001 +141356,Lightning Charging Cable,1,14.95,2019-01-09 17:32:00,336 1st St, Boston,MA,02215 +141357,Lightning Charging Cable,1,14.95,2019-01-23 05:30:00,850 River St, Atlanta,GA,30301 +141358,Lightning Charging Cable,1,14.95,2019-01-05 15:31:00,911 Madison St, San Francisco,CA,94016 +141359,AAA Batteries (4-pack),2,2.99,2019-01-09 22:21:00,383 11th St, Seattle,WA,98101 +141360,Macbook Pro Laptop,1,1700.0,2019-01-17 21:00:00,263 Meadow St, Los Angeles,CA,90001 +141361,Apple Airpods Headphones,2,150.0,2019-01-23 15:39:00,181 Lakeview St, Portland,OR,97035 +141362,Lightning Charging Cable,1,14.95,2019-01-02 22:17:00,392 Cherry St, Atlanta,GA,30301 +141363,Wired Headphones,1,11.99,2019-01-08 06:24:00,921 Highland St, Dallas,TX,75001 +141364,AA Batteries (4-pack),1,3.84,2019-01-01 07:46:00,657 Lincoln St, Dallas,TX,75001 +141365,Vareebadd Phone,1,400.0,2019-01-10 11:19:00,20 Dogwood St, New York City,NY,10001 +141365,Wired Headphones,1,11.99,2019-01-10 11:19:00,20 Dogwood St, New York City,NY,10001 +141366,Flatscreen TV,1,300.0,2019-01-17 22:34:00,803 Church St, Seattle,WA,98101 +141367,27in 4K Gaming Monitor,1,389.99,2019-01-09 10:06:00,23 13th St, San Francisco,CA,94016 +141368,USB-C Charging Cable,1,11.95,2019-01-10 21:39:00,387 Hill St, Los Angeles,CA,90001 +141369,Lightning Charging Cable,1,14.95,2019-01-21 21:03:00,785 9th St, San Francisco,CA,94016 +141370,AAA Batteries (4-pack),2,2.99,2019-01-24 20:53:00,375 Center St, Seattle,WA,98101 +141371,Lightning Charging Cable,1,14.95,2019-01-23 18:34:00,685 West St, Atlanta,GA,30301 +141372,AAA Batteries (4-pack),1,2.99,2019-01-26 10:07:00,134 Hickory St, Portland,ME,04101 +141373,27in FHD Monitor,1,149.99,2019-01-20 13:08:00,82 Hickory St, San Francisco,CA,94016 +141374,Wired Headphones,1,11.99,2019-01-14 10:12:00,386 12th St, Boston,MA,02215 +141375,27in 4K Gaming Monitor,1,389.99,2019-01-10 13:51:00,49 Center St, Los Angeles,CA,90001 +141376,Wired Headphones,1,11.99,2019-01-20 14:57:00,32 West St, Los Angeles,CA,90001 +141377,Wired Headphones,1,11.99,2019-01-20 15:12:00,711 11th St, San Francisco,CA,94016 +141378,USB-C Charging Cable,1,11.95,2019-01-22 10:25:00,777 North St, Boston,MA,02215 +141379,AA Batteries (4-pack),1,3.84,2019-01-25 18:00:00,378 Center St, San Francisco,CA,94016 +141380,USB-C Charging Cable,1,11.95,2019-01-17 18:45:00,868 14th St, Los Angeles,CA,90001 +141381,Bose SoundSport Headphones,1,99.99,2019-01-03 18:22:00,336 Jackson St, Los Angeles,CA,90001 +141382,AAA Batteries (4-pack),1,2.99,2019-01-16 13:50:00,613 Ridge St, Dallas,TX,75001 +141383,AAA Batteries (4-pack),1,2.99,2019-01-08 10:01:00,418 11th St, Boston,MA,02215 +141384,Google Phone,1,600.0,2019-01-03 00:14:00,223 Jackson St, Boston,MA,02215 +141384,USB-C Charging Cable,1,11.95,2019-01-03 00:14:00,223 Jackson St, Boston,MA,02215 +141385,Macbook Pro Laptop,1,1700.0,2019-01-10 12:59:00,502 Walnut St, Atlanta,GA,30301 +141386,Lightning Charging Cable,1,14.95,2019-01-08 19:27:00,692 13th St, New York City,NY,10001 +141387,AAA Batteries (4-pack),1,2.99,2019-01-17 11:12:00,807 Jackson St, San Francisco,CA,94016 +141388,Lightning Charging Cable,1,14.95,2019-01-22 10:53:00,24 Park St, Dallas,TX,75001 +141389,AA Batteries (4-pack),1,3.84,2019-01-26 11:07:00,176 Church St, Los Angeles,CA,90001 +141390,Wired Headphones,1,11.99,2019-01-26 11:22:00,667 Park St, New York City,NY,10001 +141391,Bose SoundSport Headphones,1,99.99,2019-01-31 10:02:00,375 Johnson St, New York City,NY,10001 +141392,Apple Airpods Headphones,1,150.0,2019-01-25 13:51:00,755 Cherry St, Seattle,WA,98101 +141393,USB-C Charging Cable,1,11.95,2019-01-18 17:57:00,240 Meadow St, Boston,MA,02215 +141394,iPhone,1,700.0,2019-01-06 16:54:00,534 12th St, San Francisco,CA,94016 +141395,AAA Batteries (4-pack),1,2.99,2019-01-29 16:20:00,790 Hickory St, Portland,ME,04101 +141396,USB-C Charging Cable,1,11.95,2019-01-26 14:10:00,141 Elm St, San Francisco,CA,94016 +141397,Lightning Charging Cable,1,14.95,2019-01-13 12:59:00,940 8th St, New York City,NY,10001 +141398,AAA Batteries (4-pack),1,2.99,2019-01-04 16:31:00,33 Jackson St, Dallas,TX,75001 +141399,ThinkPad Laptop,1,999.99,2019-01-17 09:57:00,830 Walnut St, Atlanta,GA,30301 +141400,Lightning Charging Cable,1,14.95,2019-01-18 18:09:00,215 Park St, New York City,NY,10001 +141401,Apple Airpods Headphones,1,150.0,2019-01-23 12:50:00,34 Cedar St, Portland,OR,97035 +141402,AAA Batteries (4-pack),1,2.99,2019-01-07 12:56:00,939 Lakeview St, Atlanta,GA,30301 +141403,Lightning Charging Cable,1,14.95,2019-01-26 16:41:00,216 Meadow St, Boston,MA,02215 +141404,AA Batteries (4-pack),1,3.84,2019-01-29 20:06:00,200 14th St, San Francisco,CA,94016 +141405,Wired Headphones,1,11.99,2019-01-29 11:00:00,247 Forest St, Los Angeles,CA,90001 +141406,USB-C Charging Cable,1,11.95,2019-01-28 12:02:00,110 13th St, Seattle,WA,98101 +141407,Apple Airpods Headphones,1,150.0,2019-01-01 16:06:00,946 12th St, Portland,ME,04101 +141408,Apple Airpods Headphones,1,150.0,2019-01-07 13:25:00,103 14th St, San Francisco,CA,94016 +141409,Bose SoundSport Headphones,1,99.99,2019-01-01 21:49:00,36 Highland St, Portland,ME,04101 +141410,27in FHD Monitor,1,149.99,2019-01-03 22:02:00,890 6th St, Dallas,TX,75001 +141411,Wired Headphones,1,11.99,2019-01-15 05:35:00,350 Main St, New York City,NY,10001 +141412,AA Batteries (4-pack),2,3.84,2019-01-14 17:16:00,397 Dogwood St, Atlanta,GA,30301 +141413,AA Batteries (4-pack),1,3.84,2019-01-24 17:54:00,793 5th St, San Francisco,CA,94016 +141414,Google Phone,1,600.0,2019-01-26 03:38:00,609 14th St, New York City,NY,10001 +141415,Wired Headphones,1,11.99,2019-01-12 19:02:00,81 Madison St, San Francisco,CA,94016 +141416,AAA Batteries (4-pack),1,2.99,2019-01-02 13:37:00,209 North St, Atlanta,GA,30301 +141417,Bose SoundSport Headphones,1,99.99,2019-01-03 08:21:00,207 1st St, San Francisco,CA,94016 +141418,Apple Airpods Headphones,1,150.0,2019-01-10 12:48:00,145 Lakeview St, New York City,NY,10001 +141419,Wired Headphones,1,11.99,2019-01-22 11:53:00,910 Meadow St, San Francisco,CA,94016 +141420,Lightning Charging Cable,2,14.95,2019-01-09 12:19:00,74 7th St, San Francisco,CA,94016 +141421,Flatscreen TV,1,300.0,2019-01-24 13:18:00,154 7th St, Dallas,TX,75001 +141422,Apple Airpods Headphones,1,150.0,2019-01-16 22:23:00,970 Lakeview St, Boston,MA,02215 +141423,Lightning Charging Cable,2,14.95,2019-01-06 13:41:00,440 South St, New York City,NY,10001 +141424,Apple Airpods Headphones,1,150.0,2019-01-13 19:49:00,971 Walnut St, Atlanta,GA,30301 +141425,Wired Headphones,1,11.99,2019-01-19 14:59:00,347 Hill St, Atlanta,GA,30301 +141426,Google Phone,1,600.0,2019-01-12 12:57:00,824 Madison St, Dallas,TX,75001 +141427,USB-C Charging Cable,1,11.95,2019-01-16 14:44:00,355 13th St, Los Angeles,CA,90001 +141428,AA Batteries (4-pack),1,3.84,2019-01-22 10:06:00,295 West St, New York City,NY,10001 +141429,Apple Airpods Headphones,1,150.0,2019-01-21 06:04:00,273 Hill St, Atlanta,GA,30301 +141430,34in Ultrawide Monitor,1,379.99,2019-01-23 21:37:00,428 Cedar St, Los Angeles,CA,90001 +141431,USB-C Charging Cable,1,11.95,2019-01-04 07:16:00,728 Lakeview St, Los Angeles,CA,90001 +141432,USB-C Charging Cable,1,11.95,2019-01-18 22:38:00,574 Johnson St, San Francisco,CA,94016 +141433,Google Phone,1,600.0,2019-01-15 20:08:00,179 West St, San Francisco,CA,94016 +141434,27in 4K Gaming Monitor,1,389.99,2019-01-13 19:03:00,480 Lakeview St, San Francisco,CA,94016 +141435,USB-C Charging Cable,1,11.95,2019-01-15 10:55:00,445 4th St, Atlanta,GA,30301 +141436,Bose SoundSport Headphones,1,99.99,2019-01-03 07:59:00,792 Lakeview St, San Francisco,CA,94016 +141437,iPhone,1,700.0,2019-01-10 15:40:00,377 Meadow St, New York City,NY,10001 +141438,Wired Headphones,2,11.99,2019-01-29 17:36:00,331 Center St, Seattle,WA,98101 +141439,Flatscreen TV,1,300.0,2019-01-09 20:49:00,536 Walnut St, Boston,MA,02215 +141440,Google Phone,1,600.0,2019-01-31 23:10:00,222 Lakeview St, San Francisco,CA,94016 +141441,AA Batteries (4-pack),1,3.84,2019-01-20 19:08:00,631 Elm St, Los Angeles,CA,90001 +141442,Google Phone,1,600.0,2019-01-06 10:27:00,186 Meadow St, New York City,NY,10001 +141443,Lightning Charging Cable,1,14.95,2019-01-15 19:22:00,485 Elm St, Los Angeles,CA,90001 +141444,AAA Batteries (4-pack),1,2.99,2019-01-22 22:56:00,776 5th St, San Francisco,CA,94016 +141445,USB-C Charging Cable,1,11.95,2019-01-23 21:37:00,112 Madison St, Los Angeles,CA,90001 +141446,Bose SoundSport Headphones,1,99.99,2019-01-16 20:03:00,150 14th St, Seattle,WA,98101 +141447,AAA Batteries (4-pack),1,2.99,2019-01-15 21:14:00,51 10th St, Boston,MA,02215 +141448,Bose SoundSport Headphones,1,99.99,2019-01-07 15:50:00,895 Forest St, San Francisco,CA,94016 +141449,USB-C Charging Cable,1,11.95,2019-01-25 15:41:00,450 Dogwood St, Boston,MA,02215 +141450,Google Phone,1,600.0,2019-01-12 11:16:00,521 Park St, San Francisco,CA,94016 +141450,Bose SoundSport Headphones,1,99.99,2019-01-12 11:16:00,521 Park St, San Francisco,CA,94016 +141451,AA Batteries (4-pack),1,3.84,2019-01-18 18:01:00,678 Elm St, Portland,OR,97035 +141452,Bose SoundSport Headphones,1,99.99,2019-01-16 13:37:00,593 14th St, Austin,TX,73301 +141453,Macbook Pro Laptop,1,1700.0,2019-01-06 13:09:00,469 4th St, Atlanta,GA,30301 +141454,Bose SoundSport Headphones,1,99.99,2019-01-12 21:43:00,87 North St, New York City,NY,10001 +141455,Apple Airpods Headphones,1,150.0,2019-01-06 09:26:00,588 Main St, Los Angeles,CA,90001 +141456,AAA Batteries (4-pack),1,2.99,2019-01-05 13:28:00,676 Cedar St, Boston,MA,02215 +141457,iPhone,1,700.0,2019-01-09 22:11:00,820 Jackson St, Seattle,WA,98101 +141457,Apple Airpods Headphones,1,150.0,2019-01-09 22:11:00,820 Jackson St, Seattle,WA,98101 +141458,iPhone,1,700.0,2019-01-29 01:12:00,497 Park St, San Francisco,CA,94016 +141459,AAA Batteries (4-pack),1,2.99,2019-01-07 13:20:00,344 Lakeview St, New York City,NY,10001 +141460,iPhone,1,700.0,2019-01-26 17:29:00,855 2nd St, New York City,NY,10001 +141461,Lightning Charging Cable,1,14.95,2019-01-02 10:34:00,233 Cherry St, Dallas,TX,75001 +141462,Wired Headphones,1,11.99,2019-01-30 23:34:00,542 Wilson St, Atlanta,GA,30301 +141463,Apple Airpods Headphones,1,150.0,2019-01-22 18:14:00,147 Center St, Boston,MA,02215 +141464,AA Batteries (4-pack),2,3.84,2019-01-31 01:03:00,795 13th St, New York City,NY,10001 +141465,Lightning Charging Cable,1,14.95,2019-01-30 11:24:00,340 10th St, Atlanta,GA,30301 +141466,AAA Batteries (4-pack),2,2.99,2019-01-24 16:09:00,269 4th St, Seattle,WA,98101 +141467,Bose SoundSport Headphones,1,99.99,2019-01-22 19:48:00,154 Jackson St, Boston,MA,02215 +141468,Flatscreen TV,1,300.0,2019-01-07 15:21:00,268 8th St, Austin,TX,73301 +141469,Flatscreen TV,1,300.0,2019-01-02 07:44:00,163 8th St, San Francisco,CA,94016 +141470,AAA Batteries (4-pack),1,2.99,2019-01-09 17:29:00,571 Jefferson St, Boston,MA,02215 +141471,Apple Airpods Headphones,1,150.0,2019-01-17 14:21:00,81 11th St, Los Angeles,CA,90001 +141472,iPhone,1,700.0,2019-01-27 07:05:00,853 9th St, San Francisco,CA,94016 +141473,iPhone,1,700.0,2019-01-11 16:48:00,768 Maple St, San Francisco,CA,94016 +141474,Apple Airpods Headphones,1,150.0,2019-01-17 22:58:00,580 Johnson St, Boston,MA,02215 +141475,Lightning Charging Cable,1,14.95,2019-01-07 08:41:00,548 10th St, Boston,MA,02215 +141476,iPhone,1,700.0,2019-01-06 15:38:00,295 Hickory St, New York City,NY,10001 +141477,AA Batteries (4-pack),1,3.84,2019-01-20 09:24:00,371 South St, San Francisco,CA,94016 +141478,Google Phone,1,600.0,2019-01-26 13:32:00,303 North St, Atlanta,GA,30301 +141478,Apple Airpods Headphones,1,150.0,2019-01-26 13:32:00,303 North St, Atlanta,GA,30301 +141479,Bose SoundSport Headphones,1,99.99,2019-01-12 19:24:00,613 Main St, Atlanta,GA,30301 +141480,AA Batteries (4-pack),2,3.84,2019-01-20 12:32:00,451 River St, Portland,OR,97035 +141481,AA Batteries (4-pack),1,3.84,2019-01-26 22:19:00,118 Church St, New York City,NY,10001 +141482,USB-C Charging Cable,1,11.95,2019-01-28 13:10:00,333 7th St, Portland,OR,97035 +141483,Flatscreen TV,1,300.0,2019-01-21 15:57:00,216 Willow St, Austin,TX,73301 +141484,USB-C Charging Cable,1,11.95,2019-01-29 21:06:00,127 Madison St, Los Angeles,CA,90001 +141485,27in 4K Gaming Monitor,1,389.99,2019-01-07 21:06:00,566 Park St, New York City,NY,10001 +141486,USB-C Charging Cable,1,11.95,2019-01-14 13:29:00,940 West St, Los Angeles,CA,90001 +141487,Bose SoundSport Headphones,1,99.99,2019-01-19 18:28:00,831 Sunset St, San Francisco,CA,94016 +141488,Bose SoundSport Headphones,1,99.99,2019-01-13 14:33:00,133 1st St, Los Angeles,CA,90001 +141489,AAA Batteries (4-pack),2,2.99,2019-01-04 11:21:00,941 Lincoln St, Los Angeles,CA,90001 +141490,27in FHD Monitor,1,149.99,2019-01-24 09:54:00,201 Center St, New York City,NY,10001 +141491,Bose SoundSport Headphones,1,99.99,2019-01-25 11:10:00,529 Park St, Portland,OR,97035 +141492,20in Monitor,1,109.99,2019-01-18 09:23:00,331 Chestnut St, Dallas,TX,75001 +141493,34in Ultrawide Monitor,1,379.99,2019-01-02 11:26:00,922 2nd St, Los Angeles,CA,90001 +141494,AA Batteries (4-pack),2,3.84,2019-01-07 00:40:00,237 Forest St, Austin,TX,73301 +141495,Macbook Pro Laptop,1,1700.0,2019-01-19 18:02:00,442 South St, Dallas,TX,75001 +141496,Wired Headphones,1,11.99,2019-01-31 16:21:00,310 8th St, Los Angeles,CA,90001 +141497,Wired Headphones,1,11.99,2019-01-29 18:07:00,139 Church St, Atlanta,GA,30301 +141498,AA Batteries (4-pack),1,3.84,2019-01-08 07:31:00,337 North St, Austin,TX,73301 +141499,Google Phone,1,600.0,2019-01-19 15:17:00,90 1st St, San Francisco,CA,94016 +141500,Google Phone,1,600.0,2019-01-12 11:56:00,235 Walnut St, New York City,NY,10001 +141501,AA Batteries (4-pack),1,3.84,2019-01-25 12:38:00,738 Dogwood St, Los Angeles,CA,90001 +141502,AA Batteries (4-pack),2,3.84,2019-01-08 20:07:00,920 Center St, San Francisco,CA,94016 +141503,27in 4K Gaming Monitor,1,389.99,2019-01-03 19:54:00,304 Park St, Dallas,TX,75001 +141504,iPhone,1,700.0,2019-01-13 13:37:00,855 11th St, Seattle,WA,98101 +141505,27in 4K Gaming Monitor,1,389.99,2019-01-05 06:59:00,33 Dogwood St, New York City,NY,10001 +141506,Google Phone,1,600.0,2019-01-24 19:03:00,463 10th St, Atlanta,GA,30301 +141507,Apple Airpods Headphones,1,150.0,2019-01-19 20:07:00,961 1st St, Los Angeles,CA,90001 +141508,USB-C Charging Cable,1,11.95,2019-01-18 19:11:00,190 South St, Austin,TX,73301 +141509,Lightning Charging Cable,1,14.95,2019-01-16 11:11:00,195 Chestnut St, San Francisco,CA,94016 +141510,Wired Headphones,2,11.99,2019-01-16 14:32:00,610 South St, Los Angeles,CA,90001 +141511,27in 4K Gaming Monitor,1,389.99,2019-01-14 16:57:00,608 13th St, New York City,NY,10001 +141512,Lightning Charging Cable,1,14.95,2019-01-08 20:12:00,789 4th St, Los Angeles,CA,90001 +141513,Apple Airpods Headphones,1,150.0,2019-01-18 22:22:00,795 Hickory St, Atlanta,GA,30301 +141514,Google Phone,1,600.0,2019-01-27 21:26:00,947 10th St, Boston,MA,02215 +141515,34in Ultrawide Monitor,1,379.99,2019-01-12 16:34:00,179 Highland St, Seattle,WA,98101 +141516,LG Washing Machine,1,600.0,2019-01-17 19:53:00,382 Main St, Seattle,WA,98101 +141517,iPhone,1,700.0,2019-01-13 14:14:00,326 Maple St, Los Angeles,CA,90001 +141518,Lightning Charging Cable,1,14.95,2019-01-01 11:41:00,991 Adams St, Los Angeles,CA,90001 +141519,Lightning Charging Cable,1,14.95,2019-01-18 17:16:00,511 Maple St, San Francisco,CA,94016 +141520,iPhone,1,700.0,2019-01-15 11:24:00,23 Cherry St, Atlanta,GA,30301 +141521,Wired Headphones,1,11.99,2019-01-06 11:19:00,724 Hickory St, Los Angeles,CA,90001 +141522,27in FHD Monitor,1,149.99,2019-01-02 23:35:00,240 Maple St, Dallas,TX,75001 +141523,Google Phone,1,600.0,2019-01-02 13:17:00,17 Dogwood St, San Francisco,CA,94016 +141524,USB-C Charging Cable,1,11.95,2019-01-11 13:18:00,853 Walnut St, Boston,MA,02215 +141525,AAA Batteries (4-pack),2,2.99,2019-01-07 04:31:00,590 Jackson St, Los Angeles,CA,90001 +141526,AA Batteries (4-pack),2,3.84,2019-01-21 22:12:00,212 Lincoln St, New York City,NY,10001 +141527,Apple Airpods Headphones,1,150.0,2019-01-25 18:52:00,401 Chestnut St, Los Angeles,CA,90001 +141528,AAA Batteries (4-pack),3,2.99,2019-01-11 02:13:00,57 11th St, Austin,TX,73301 +141529,Bose SoundSport Headphones,1,99.99,2019-01-13 12:55:00,264 River St, Austin,TX,73301 +141530,AAA Batteries (4-pack),1,2.99,2019-01-19 18:13:00,324 7th St, Austin,TX,73301 +141531,Flatscreen TV,1,300.0,2019-01-15 18:03:00,252 Sunset St, New York City,NY,10001 +141532,Lightning Charging Cable,1,14.95,2019-01-12 08:44:00,718 Walnut St, San Francisco,CA,94016 +141533,34in Ultrawide Monitor,1,379.99,2019-01-01 13:34:00,400 Lakeview St, Seattle,WA,98101 +141534,Bose SoundSport Headphones,1,99.99,2019-01-05 10:02:00,439 Washington St, San Francisco,CA,94016 +141535,Wired Headphones,1,11.99,2019-01-03 10:59:00,139 Wilson St, Portland,OR,97035 +141536,AAA Batteries (4-pack),1,2.99,2019-01-30 16:35:00,127 6th St, Portland,OR,97035 +141537,Lightning Charging Cable,1,14.95,2019-01-06 09:37:00,654 West St, Portland,OR,97035 +141538,27in FHD Monitor,1,149.99,2019-01-12 15:38:00,765 River St, New York City,NY,10001 +141539,27in FHD Monitor,1,149.99,2019-01-16 15:22:00,167 West St, San Francisco,CA,94016 +141540,Apple Airpods Headphones,1,150.0,2019-01-10 14:07:00,703 Maple St, Los Angeles,CA,90001 +141541,AAA Batteries (4-pack),1,2.99,2019-01-27 22:39:00,296 Lakeview St, Boston,MA,02215 +141542,AA Batteries (4-pack),1,3.84,2019-01-20 18:33:00,431 Dogwood St, San Francisco,CA,94016 +141543,Lightning Charging Cable,1,14.95,2019-01-25 10:48:00,684 5th St, Atlanta,GA,30301 +141544,Lightning Charging Cable,1,14.95,2019-01-03 18:32:00,905 Ridge St, San Francisco,CA,94016 +141545,Google Phone,1,600.0,2019-01-16 20:17:00,988 Adams St, Dallas,TX,75001 +141546,20in Monitor,1,109.99,2019-01-22 02:39:00,390 Ridge St, Atlanta,GA,30301 +141547,USB-C Charging Cable,2,11.95,2019-01-12 10:26:00,164 Willow St, San Francisco,CA,94016 +141548,Lightning Charging Cable,1,14.95,2019-01-11 23:00:00,964 Forest St, Los Angeles,CA,90001 +141549,27in FHD Monitor,1,149.99,2019-01-15 10:53:00,240 Cherry St, Atlanta,GA,30301 +141550,iPhone,1,700.0,2019-01-31 10:58:00,399 Church St, Boston,MA,02215 +141550,Apple Airpods Headphones,2,150.0,2019-01-31 10:58:00,399 Church St, Boston,MA,02215 +141550,Wired Headphones,1,11.99,2019-01-31 10:58:00,399 Church St, Boston,MA,02215 +141551,Lightning Charging Cable,2,14.95,2019-01-19 16:39:00,88 7th St, Los Angeles,CA,90001 +141552,Bose SoundSport Headphones,1,99.99,2019-01-10 10:40:00,533 Jackson St, New York City,NY,10001 +141553,Bose SoundSport Headphones,1,99.99,2019-01-27 00:07:00,16 Forest St, San Francisco,CA,94016 +141554,USB-C Charging Cable,1,11.95,2019-01-04 12:57:00,498 Dogwood St, Austin,TX,73301 +141555,AAA Batteries (4-pack),3,2.99,2019-01-15 10:18:00,47 Pine St, Dallas,TX,75001 +141556,USB-C Charging Cable,1,11.95,2019-01-29 10:07:00,164 Lincoln St, New York City,NY,10001 +141557,Lightning Charging Cable,1,14.95,2019-01-23 22:54:00,406 8th St, San Francisco,CA,94016 +141558,27in 4K Gaming Monitor,1,389.99,2019-01-01 12:14:00,345 Chestnut St, Dallas,TX,75001 +141559,Wired Headphones,1,11.99,2019-01-26 22:08:00,932 River St, Boston,MA,02215 +141560,34in Ultrawide Monitor,1,379.99,2019-01-09 13:34:00,559 Adams St, Seattle,WA,98101 +141561,Wired Headphones,1,11.99,2019-01-09 17:19:00,897 River St, San Francisco,CA,94016 +141562,Bose SoundSport Headphones,1,99.99,2019-01-29 12:47:00,334 12th St, Los Angeles,CA,90001 +141563,USB-C Charging Cable,1,11.95,2019-01-15 15:52:00,98 13th St, San Francisco,CA,94016 +141564,Apple Airpods Headphones,1,150.0,2019-01-29 11:03:00,780 Walnut St, New York City,NY,10001 +141565,Wired Headphones,1,11.99,2019-01-13 06:05:00,884 11th St, San Francisco,CA,94016 +141566,27in FHD Monitor,1,149.99,2019-01-13 18:41:00,693 Wilson St, San Francisco,CA,94016 +141567,Lightning Charging Cable,1,14.95,2019-01-09 20:37:00,55 Highland St, Los Angeles,CA,90001 +141568,ThinkPad Laptop,1,999.99,2019-01-26 20:30:00,158 9th St, San Francisco,CA,94016 +141569,Macbook Pro Laptop,1,1700.0,2019-01-11 11:15:00,235 Ridge St, Los Angeles,CA,90001 +141570,USB-C Charging Cable,1,11.95,2019-01-11 16:49:00,112 13th St, Dallas,TX,75001 +141571,Lightning Charging Cable,1,14.95,2019-01-21 23:01:00,809 Dogwood St, San Francisco,CA,94016 +141572,AAA Batteries (4-pack),1,2.99,2019-01-13 23:51:00,187 Dogwood St, Austin,TX,73301 +141573,Lightning Charging Cable,1,14.95,2019-01-04 17:39:00,850 2nd St, Atlanta,GA,30301 +141574,Lightning Charging Cable,1,14.95,2019-01-19 16:56:00,989 Jefferson St, Los Angeles,CA,90001 +141575,USB-C Charging Cable,1,11.95,2019-01-07 10:42:00,787 Highland St, Seattle,WA,98101 +141576,Apple Airpods Headphones,1,150.0,2019-01-05 20:21:00,908 Lincoln St, Atlanta,GA,30301 +141577,Flatscreen TV,1,300.0,2019-01-30 20:19:00,662 Lincoln St, Seattle,WA,98101 +141578,Bose SoundSport Headphones,1,99.99,2019-01-24 05:51:00,61 Sunset St, Portland,OR,97035 +141579,Lightning Charging Cable,1,14.95,2019-01-23 16:11:00,871 Willow St, Los Angeles,CA,90001 +141580,AA Batteries (4-pack),1,3.84,2019-01-28 11:02:00,295 Chestnut St, Boston,MA,02215 +141581,Apple Airpods Headphones,1,150.0,2019-01-28 20:50:00,64 Elm St, San Francisco,CA,94016 +141582,iPhone,1,700.0,2019-01-15 01:45:00,416 9th St, San Francisco,CA,94016 +141583,USB-C Charging Cable,1,11.95,2019-01-30 12:48:00,717 Cedar St, Dallas,TX,75001 +141584,Macbook Pro Laptop,1,1700.0,2019-01-14 16:51:00,395 Lake St, New York City,NY,10001 +141585,AA Batteries (4-pack),2,3.84,2019-01-11 10:04:00,406 Highland St, San Francisco,CA,94016 +141586,Lightning Charging Cable,1,14.95,2019-01-26 20:16:00,411 Jackson St, San Francisco,CA,94016 +141587,USB-C Charging Cable,1,11.95,2019-01-29 15:14:00,504 14th St, Dallas,TX,75001 +141587,Apple Airpods Headphones,1,150.0,2019-01-29 15:14:00,504 14th St, Dallas,TX,75001 +141588,AA Batteries (4-pack),1,3.84,2019-01-03 01:43:00,582 Madison St, Dallas,TX,75001 +141589,Wired Headphones,1,11.99,2019-01-10 13:56:00,118 12th St, Seattle,WA,98101 +141590,Bose SoundSport Headphones,1,99.99,2019-01-05 16:40:00,350 5th St, Boston,MA,02215 +141591,ThinkPad Laptop,1,999.99,2019-01-27 23:59:00,503 Maple St, Seattle,WA,98101 +141592,AA Batteries (4-pack),2,3.84,2019-01-05 11:30:00,644 13th St, San Francisco,CA,94016 +141593,Bose SoundSport Headphones,1,99.99,2019-01-09 14:26:00,406 Washington St, Los Angeles,CA,90001 +141594,AAA Batteries (4-pack),1,2.99,2019-01-30 12:09:00,821 14th St, Atlanta,GA,30301 +141595,ThinkPad Laptop,1,999.99,2019-01-27 14:36:00,146 2nd St, Boston,MA,02215 +141596,Lightning Charging Cable,1,14.95,2019-01-01 17:30:00,582 Jackson St, Boston,MA,02215 +141597,AAA Batteries (4-pack),2,2.99,2019-01-28 12:38:00,919 Elm St, San Francisco,CA,94016 +141598,20in Monitor,1,109.99,2019-01-12 13:28:00,164 Pine St, Seattle,WA,98101 +141599,AAA Batteries (4-pack),1,2.99,2019-01-17 11:59:00,814 Sunset St, Portland,OR,97035 +141600,AAA Batteries (4-pack),2,2.99,2019-01-27 09:08:00,445 Lake St, San Francisco,CA,94016 +141601,Lightning Charging Cable,1,14.95,2019-01-07 19:45:00,745 2nd St, Atlanta,GA,30301 +141602,27in FHD Monitor,1,149.99,2019-01-13 20:17:00,170 6th St, Atlanta,GA,30301 +141603,Wired Headphones,1,11.99,2019-01-24 10:54:00,214 14th St, Seattle,WA,98101 +141604,27in FHD Monitor,1,149.99,2019-01-01 23:58:00,135 Washington St, San Francisco,CA,94016 +141605,Wired Headphones,1,11.99,2019-01-10 19:52:00,189 Maple St, San Francisco,CA,94016 +141606,Lightning Charging Cable,1,14.95,2019-01-02 01:26:00,449 Maple St, Austin,TX,73301 +141607,AA Batteries (4-pack),2,3.84,2019-01-27 20:18:00,861 Cedar St, Dallas,TX,75001 +141608,Lightning Charging Cable,1,14.95,2019-01-14 17:47:00,852 Cherry St, San Francisco,CA,94016 +141609,Apple Airpods Headphones,1,150.0,2019-01-04 14:05:00,287 Chestnut St, San Francisco,CA,94016 +141610,Lightning Charging Cable,1,14.95,2019-01-29 16:55:00,846 Cherry St, San Francisco,CA,94016 +141611,Apple Airpods Headphones,1,150.0,2019-01-27 18:29:00,877 Lincoln St, Atlanta,GA,30301 +141612,Apple Airpods Headphones,1,150.0,2019-01-24 10:33:00,892 12th St, Los Angeles,CA,90001 +141613,AAA Batteries (4-pack),1,2.99,2019-01-01 10:21:00,644 Pine St, Atlanta,GA,30301 +141614,AA Batteries (4-pack),1,3.84,2019-01-09 13:03:00,821 Spruce St, San Francisco,CA,94016 +141615,Wired Headphones,1,11.99,2019-01-24 18:39:00,944 Chestnut St, Los Angeles,CA,90001 +141616,AA Batteries (4-pack),1,3.84,2019-01-24 00:56:00,440 Elm St, Boston,MA,02215 +141617,Wired Headphones,1,11.99,2019-01-26 02:00:00,84 Hickory St, Los Angeles,CA,90001 +141618,Bose SoundSport Headphones,1,99.99,2019-01-09 11:07:00,573 Lake St, Dallas,TX,75001 +141619,27in FHD Monitor,1,149.99,2019-01-12 20:15:00,108 River St, San Francisco,CA,94016 +141620,AAA Batteries (4-pack),3,2.99,2019-01-09 10:56:00,211 Meadow St, New York City,NY,10001 +141621,AAA Batteries (4-pack),1,2.99,2019-01-12 09:49:00,917 Spruce St, Atlanta,GA,30301 +141622,USB-C Charging Cable,1,11.95,2019-01-27 12:46:00,171 Ridge St, Portland,OR,97035 +141623,Google Phone,1,600.0,2019-01-06 14:21:00,770 Center St, San Francisco,CA,94016 +141624,USB-C Charging Cable,1,11.95,2019-01-18 21:07:00,76 8th St, San Francisco,CA,94016 +141625,AAA Batteries (4-pack),4,2.99,2019-01-29 08:48:00,476 8th St, Boston,MA,02215 +141626,Apple Airpods Headphones,1,150.0,2019-01-24 08:19:00,97 Highland St, Los Angeles,CA,90001 +141627,Flatscreen TV,1,300.0,2019-01-16 10:02:00,374 Meadow St, Austin,TX,73301 +141628,AA Batteries (4-pack),1,3.84,2019-01-20 13:03:00,427 Lakeview St, Los Angeles,CA,90001 +141629,27in FHD Monitor,1,149.99,2019-01-27 12:22:00,434 Church St, San Francisco,CA,94016 +141630,USB-C Charging Cable,1,11.95,2019-01-20 17:28:00,147 5th St, Dallas,TX,75001 +141631,Lightning Charging Cable,1,14.95,2019-01-15 07:54:00,81 Main St, San Francisco,CA,94016 +141632,iPhone,1,700.0,2019-01-21 05:00:00,964 Hill St, Seattle,WA,98101 +141633,AA Batteries (4-pack),1,3.84,2019-01-12 20:41:00,880 Lakeview St, San Francisco,CA,94016 +141634,AAA Batteries (4-pack),1,2.99,2019-01-20 18:23:00,414 8th St, Los Angeles,CA,90001 +141635,Wired Headphones,1,11.99,2019-01-13 07:20:00,31 6th St, New York City,NY,10001 +141636,Apple Airpods Headphones,1,150.0,2019-01-09 10:24:00,790 Wilson St, Austin,TX,73301 +141637,AA Batteries (4-pack),2,3.84,2019-01-04 17:48:00,676 Willow St, New York City,NY,10001 +141638,AAA Batteries (4-pack),2,2.99,2019-01-05 08:07:00,625 Church St, Austin,TX,73301 +141639,ThinkPad Laptop,1,999.99,2019-01-23 16:39:00,284 12th St, San Francisco,CA,94016 +141640,Macbook Pro Laptop,1,1700.0,2019-01-02 01:27:00,768 Forest St, San Francisco,CA,94016 +141641,20in Monitor,1,109.99,2019-01-30 11:12:00,368 Forest St, San Francisco,CA,94016 +141642,AAA Batteries (4-pack),1,2.99,2019-01-04 19:21:00,719 Adams St, New York City,NY,10001 +141643,Bose SoundSport Headphones,1,99.99,2019-01-29 21:41:00,52 Hill St, Portland,OR,97035 +141644,AAA Batteries (4-pack),1,2.99,2019-01-01 14:21:00,454 Main St, Seattle,WA,98101 +141645,Lightning Charging Cable,1,14.95,2019-01-30 15:30:00,98 Forest St, New York City,NY,10001 +141645,Wired Headphones,1,11.99,2019-01-30 15:30:00,98 Forest St, New York City,NY,10001 +141646,Lightning Charging Cable,1,14.95,2019-01-01 20:59:00,678 Adams St, Dallas,TX,75001 +141647,20in Monitor,1,109.99,2019-01-01 14:36:00,434 Sunset St, Atlanta,GA,30301 +141648,Google Phone,1,600.0,2019-01-03 16:55:00,657 10th St, Austin,TX,73301 +141649,Lightning Charging Cable,1,14.95,2019-01-30 15:16:00,916 Maple St, Seattle,WA,98101 +141650,AAA Batteries (4-pack),2,2.99,2019-01-22 12:28:00,166 South St, San Francisco,CA,94016 +141651,AA Batteries (4-pack),1,3.84,2019-01-24 08:33:00,449 Main St, Los Angeles,CA,90001 +141652,Lightning Charging Cable,1,14.95,2019-01-05 21:58:00,576 Pine St, Boston,MA,02215 +141653,AA Batteries (4-pack),1,3.84,2019-01-28 23:47:00,63 Cherry St, Portland,ME,04101 +141654,AA Batteries (4-pack),1,3.84,2019-01-23 14:48:00,857 4th St, San Francisco,CA,94016 +141655,Wired Headphones,1,11.99,2019-01-16 13:38:00,592 Cedar St, Los Angeles,CA,90001 +141656,Apple Airpods Headphones,1,150.0,2019-01-02 10:40:00,476 Center St, Atlanta,GA,30301 +141657,AAA Batteries (4-pack),1,2.99,2019-01-13 20:36:00,990 Park St, Los Angeles,CA,90001 +141658,AA Batteries (4-pack),1,3.84,2019-01-26 23:47:00,26 Adams St, San Francisco,CA,94016 +141659,Macbook Pro Laptop,1,1700.0,2019-01-28 15:52:00,214 Jackson St, San Francisco,CA,94016 +141660,USB-C Charging Cable,1,11.95,2019-01-11 13:57:00,106 Sunset St, Boston,MA,02215 +141661,USB-C Charging Cable,1,11.95,2019-01-05 01:25:00,221 14th St, San Francisco,CA,94016 +141662,AAA Batteries (4-pack),1,2.99,2019-01-16 13:06:00,106 Jefferson St, Boston,MA,02215 +141663,iPhone,1,700.0,2019-01-01 11:01:00,738 8th St, San Francisco,CA,94016 +141664,Google Phone,1,600.0,2019-01-08 16:40:00,621 Dogwood St, San Francisco,CA,94016 +141665,27in 4K Gaming Monitor,1,389.99,2019-01-23 18:55:00,499 7th St, Boston,MA,02215 +141666,AA Batteries (4-pack),2,3.84,2019-01-16 16:22:00,956 Adams St, Boston,MA,02215 +141667,Lightning Charging Cable,3,14.95,2019-01-23 15:14:00,965 Johnson St, San Francisco,CA,94016 +141668,Lightning Charging Cable,1,14.95,2019-01-15 14:18:00,124 Jackson St, San Francisco,CA,94016 +141669,27in 4K Gaming Monitor,1,389.99,2019-01-29 15:43:00,813 Forest St, New York City,NY,10001 +141670,iPhone,1,700.0,2019-01-31 12:52:00,166 10th St, Atlanta,GA,30301 +141671,AAA Batteries (4-pack),2,2.99,2019-01-29 12:25:00,496 4th St, Boston,MA,02215 +141672,Wired Headphones,1,11.99,2019-01-27 23:05:00,608 North St, Dallas,TX,75001 +141673,USB-C Charging Cable,1,11.95,2019-01-27 19:23:00,152 1st St, Austin,TX,73301 +141674,AAA Batteries (4-pack),1,2.99,2019-01-28 06:28:00,477 Highland St, Los Angeles,CA,90001 +141675,USB-C Charging Cable,3,11.95,2019-01-04 10:09:00,964 Main St, Seattle,WA,98101 +141676,Vareebadd Phone,1,400.0,2019-01-13 11:41:00,35 13th St, Portland,OR,97035 +141677,27in FHD Monitor,1,149.99,2019-01-03 18:50:00,345 Hill St, New York City,NY,10001 +141678,Apple Airpods Headphones,1,150.0,2019-01-08 20:27:00,524 Ridge St, Boston,MA,02215 +141679,34in Ultrawide Monitor,1,379.99,2019-01-03 19:55:00,621 13th St, San Francisco,CA,94016 +141680,USB-C Charging Cable,2,11.95,2019-01-14 14:03:00,980 Washington St, Portland,OR,97035 +141681,AA Batteries (4-pack),1,3.84,2019-01-03 21:53:00,543 Forest St, Atlanta,GA,30301 +141682,34in Ultrawide Monitor,1,379.99,2019-01-24 07:03:00,672 Ridge St, Los Angeles,CA,90001 +141683,AAA Batteries (4-pack),1,2.99,2019-01-27 16:18:00,982 Cedar St, New York City,NY,10001 +141684,27in 4K Gaming Monitor,1,389.99,2019-01-29 09:43:00,666 Jefferson St, Seattle,WA,98101 +141685,Wired Headphones,1,11.99,2019-01-14 00:38:00,347 12th St, Austin,TX,73301 +141686,Apple Airpods Headphones,1,150.0,2019-01-22 13:25:00,788 6th St, San Francisco,CA,94016 +141687,AA Batteries (4-pack),1,3.84,2019-01-17 19:12:00,838 2nd St, New York City,NY,10001 +141688,AA Batteries (4-pack),1,3.84,2019-01-20 11:32:00,122 Jackson St, New York City,NY,10001 +141689,34in Ultrawide Monitor,1,379.99,2019-01-09 13:56:00,348 River St, San Francisco,CA,94016 +141690,Macbook Pro Laptop,1,1700.0,2019-01-14 23:02:00,27 Jefferson St, Boston,MA,02215 +141691,34in Ultrawide Monitor,1,379.99,2019-01-18 18:34:00,640 Lake St, New York City,NY,10001 +141692,Bose SoundSport Headphones,1,99.99,2019-01-27 19:46:00,798 Hill St, Portland,OR,97035 +141693,Wired Headphones,1,11.99,2019-01-07 22:01:00,733 Meadow St, New York City,NY,10001 +141694,Wired Headphones,1,11.99,2019-01-12 15:43:00,806 Maple St, Atlanta,GA,30301 +141695,AAA Batteries (4-pack),1,2.99,2019-01-29 21:20:00,893 Jefferson St, Boston,MA,02215 +141696,Vareebadd Phone,1,400.0,2019-01-15 22:33:00,709 North St, Seattle,WA,98101 +141697,Lightning Charging Cable,1,14.95,2019-01-16 05:50:00,1 Jefferson St, New York City,NY,10001 +141698,27in 4K Gaming Monitor,1,389.99,2019-01-06 19:56:00,156 Jackson St, Los Angeles,CA,90001 +141699,USB-C Charging Cable,1,11.95,2019-01-28 08:13:00,667 Spruce St, Atlanta,GA,30301 +141700,Apple Airpods Headphones,1,150.0,2019-01-02 12:00:00,220 Lakeview St, Dallas,TX,75001 +141701,Macbook Pro Laptop,1,1700.0,2019-01-18 19:33:00,174 Lincoln St, San Francisco,CA,94016 +141702,iPhone,1,700.0,2019-01-27 18:33:00,776 10th St, Boston,MA,02215 +141703,iPhone,1,700.0,2019-01-29 11:04:00,371 11th St, Portland,OR,97035 +141704,27in 4K Gaming Monitor,1,389.99,2019-01-31 19:56:00,823 Hill St, Seattle,WA,98101 +141705,Apple Airpods Headphones,1,150.0,2019-01-01 14:15:00,478 8th St, Boston,MA,02215 +141706,USB-C Charging Cable,1,11.95,2019-01-19 13:38:00,234 Cherry St, Austin,TX,73301 +141707,AA Batteries (4-pack),1,3.84,2019-01-13 00:53:00,593 Main St, Los Angeles,CA,90001 +141708,Wired Headphones,1,11.99,2019-01-22 09:31:00,492 Forest St, Seattle,WA,98101 +141709,Google Phone,1,600.0,2019-01-24 23:45:00,411 Ridge St, Dallas,TX,75001 +141710,USB-C Charging Cable,1,11.95,2019-01-23 00:00:00,57 Hill St, New York City,NY,10001 +141711,USB-C Charging Cable,1,11.95,2019-01-18 13:11:00,65 Pine St, New York City,NY,10001 +141712,AA Batteries (4-pack),1,3.84,2019-01-07 12:12:00,164 Walnut St, Los Angeles,CA,90001 +141713,USB-C Charging Cable,1,11.95,2019-01-25 13:49:00,169 Washington St, San Francisco,CA,94016 +141714,USB-C Charging Cable,1,11.95,2019-01-27 20:27:00,986 11th St, New York City,NY,10001 +141715,Bose SoundSport Headphones,1,99.99,2019-01-22 00:30:00,492 Lakeview St, Boston,MA,02215 +141716,Bose SoundSport Headphones,1,99.99,2019-01-17 09:58:00,169 Lakeview St, Seattle,WA,98101 +141717,AAA Batteries (4-pack),1,2.99,2019-01-31 17:15:00,463 5th St, New York City,NY,10001 +141718,Google Phone,1,600.0,2019-01-16 15:02:00,756 Lake St, Dallas,TX,75001 +141719,27in 4K Gaming Monitor,1,389.99,2019-01-10 13:34:00,152 Cherry St, Seattle,WA,98101 +141720,USB-C Charging Cable,1,11.95,2019-01-25 19:58:00,317 Center St, New York City,NY,10001 +141721,AA Batteries (4-pack),1,3.84,2019-01-11 12:03:00,416 Forest St, Atlanta,GA,30301 +141722,Macbook Pro Laptop,1,1700.0,2019-01-06 14:06:00,331 Pine St, Boston,MA,02215 +141723,Wired Headphones,1,11.99,2019-01-14 22:05:00,340 11th St, Boston,MA,02215 +141724,Lightning Charging Cable,1,14.95,2019-01-06 18:43:00,494 11th St, Austin,TX,73301 +141725,Wired Headphones,1,11.99,2019-01-09 18:16:00,370 7th St, Los Angeles,CA,90001 +141726,USB-C Charging Cable,1,11.95,2019-01-20 07:13:00,697 Center St, San Francisco,CA,94016 +141727,Lightning Charging Cable,2,14.95,2019-01-31 13:38:00,331 Meadow St, Atlanta,GA,30301 +141728,AAA Batteries (4-pack),1,2.99,2019-01-14 00:00:00,431 7th St, New York City,NY,10001 +141729,Wired Headphones,1,11.99,2019-01-09 11:01:00,426 Walnut St, Los Angeles,CA,90001 +141730,Lightning Charging Cable,1,14.95,2019-01-23 16:23:00,733 Lincoln St, Boston,MA,02215 +141731,Macbook Pro Laptop,1,1700.0,2019-01-29 19:24:00,916 Forest St, San Francisco,CA,94016 +141732,iPhone,1,700.0,2019-01-01 06:13:00,446 Pine St, Atlanta,GA,30301 +141733,27in 4K Gaming Monitor,1,389.99,2019-01-24 12:38:00,987 Maple St, Austin,TX,73301 +141734,Bose SoundSport Headphones,1,99.99,2019-01-29 15:48:00,485 North St, Los Angeles,CA,90001 +141735,34in Ultrawide Monitor,1,379.99,2019-01-25 12:34:00,997 Jefferson St, New York City,NY,10001 +141736,USB-C Charging Cable,1,11.95,2019-01-18 12:47:00,920 Meadow St, Seattle,WA,98101 +141737,ThinkPad Laptop,1,999.99,2019-01-02 08:37:00,903 Forest St, San Francisco,CA,94016 +141738,iPhone,1,700.0,2019-01-14 20:53:00,183 Cherry St, Atlanta,GA,30301 +141738,Lightning Charging Cable,1,14.95,2019-01-14 20:53:00,183 Cherry St, Atlanta,GA,30301 +141739,AA Batteries (4-pack),1,3.84,2019-01-27 10:55:00,383 Jackson St, Atlanta,GA,30301 +141740,AA Batteries (4-pack),1,3.84,2019-01-12 22:42:00,927 Forest St, Atlanta,GA,30301 +141741,Bose SoundSport Headphones,1,99.99,2019-01-19 18:56:00,93 Cherry St, Boston,MA,02215 +141742,USB-C Charging Cable,1,11.95,2019-01-20 10:29:00,156 Church St, San Francisco,CA,94016 +141743,USB-C Charging Cable,1,11.95,2019-01-18 10:44:00,607 6th St, San Francisco,CA,94016 +141744,Apple Airpods Headphones,1,150.0,2019-01-10 15:55:00,961 7th St, Portland,OR,97035 +141745,AAA Batteries (4-pack),2,2.99,2019-01-19 00:24:00,389 Hill St, Atlanta,GA,30301 +141746,Lightning Charging Cable,2,14.95,2019-01-14 21:39:00,218 8th St, Dallas,TX,75001 +141747,27in FHD Monitor,1,149.99,2019-01-12 05:12:00,160 Ridge St, Los Angeles,CA,90001 +141748,Apple Airpods Headphones,1,150.0,2019-01-09 09:46:00,60 Cedar St, Boston,MA,02215 +141749,Flatscreen TV,1,300.0,2019-01-24 15:16:00,974 10th St, Atlanta,GA,30301 +141750,27in FHD Monitor,1,149.99,2019-01-23 16:46:00,341 Elm St, Seattle,WA,98101 +141751,27in 4K Gaming Monitor,1,389.99,2019-01-08 13:27:00,396 River St, Los Angeles,CA,90001 +141752,Lightning Charging Cable,1,14.95,2019-01-18 23:13:00,100 Johnson St, Los Angeles,CA,90001 +141753,USB-C Charging Cable,2,11.95,2019-01-15 19:30:00,67 Center St, San Francisco,CA,94016 +141754,Apple Airpods Headphones,2,150.0,2019-01-02 23:09:00,999 Spruce St, Seattle,WA,98101 +141755,AA Batteries (4-pack),3,3.84,2019-01-02 20:12:00,884 Spruce St, Los Angeles,CA,90001 +141756,Bose SoundSport Headphones,1,99.99,2019-01-19 21:53:00,485 Highland St, Atlanta,GA,30301 +141757,27in FHD Monitor,1,149.99,2019-01-13 14:47:00,116 Walnut St, Portland,OR,97035 +141758,Wired Headphones,1,11.99,2019-01-21 15:21:00,610 Spruce St, Dallas,TX,75001 +141759,AAA Batteries (4-pack),1,2.99,2019-01-02 19:18:00,765 Lake St, Portland,OR,97035 +141760,Vareebadd Phone,1,400.0,2019-01-21 11:09:00,289 Walnut St, Atlanta,GA,30301 +141761,Lightning Charging Cable,1,14.95,2019-01-11 19:02:00,75 Ridge St, San Francisco,CA,94016 +141762,Bose SoundSport Headphones,1,99.99,2019-01-28 17:52:00,160 Hickory St, Austin,TX,73301 +141763,27in FHD Monitor,2,149.99,2019-01-05 02:51:00,351 Adams St, Austin,TX,73301 +141764,USB-C Charging Cable,1,11.95,2019-01-04 17:43:00,909 2nd St, Seattle,WA,98101 +141765,Lightning Charging Cable,1,14.95,2019-01-24 12:23:00,78 Sunset St, New York City,NY,10001 +141766,LG Washing Machine,1,600.0,2019-01-16 21:08:00,530 Jackson St, Dallas,TX,75001 +141767,20in Monitor,1,109.99,2019-01-23 22:30:00,752 Walnut St, Austin,TX,73301 +141768,USB-C Charging Cable,1,11.95,2019-01-14 11:50:00,780 Cherry St, Portland,ME,04101 +141769,AA Batteries (4-pack),2,3.84,2019-01-21 10:53:00,824 West St, Dallas,TX,75001 +141770,Wired Headphones,1,11.99,2019-01-04 19:50:00,50 Willow St, San Francisco,CA,94016 +141771,Lightning Charging Cable,1,14.95,2019-01-11 19:00:00,564 13th St, San Francisco,CA,94016 +141772,Apple Airpods Headphones,1,150.0,2019-01-30 08:16:00,409 Center St, San Francisco,CA,94016 +141773,USB-C Charging Cable,1,11.95,2019-01-30 16:09:00,693 Chestnut St, New York City,NY,10001 +141774,Bose SoundSport Headphones,1,99.99,2019-01-02 22:11:00,961 Chestnut St, Los Angeles,CA,90001 +141775,USB-C Charging Cable,1,11.95,2019-01-07 17:15:00,348 Pine St, Atlanta,GA,30301 +141776,Lightning Charging Cable,1,14.95,2019-01-21 19:20:00,443 Ridge St, Dallas,TX,75001 +141777,USB-C Charging Cable,1,11.95,2019-01-14 19:43:00,538 Wilson St, San Francisco,CA,94016 +141778,Lightning Charging Cable,1,14.95,2019-01-27 05:25:00,432 11th St, Dallas,TX,75001 +141779,Lightning Charging Cable,1,14.95,2019-01-02 11:23:00,929 Lake St, New York City,NY,10001 +141780,Wired Headphones,1,11.99,2019-01-20 20:15:00,443 11th St, San Francisco,CA,94016 +141781,Apple Airpods Headphones,1,150.0,2019-01-20 07:07:00,605 West St, Austin,TX,73301 +141782,27in FHD Monitor,1,149.99,2019-01-11 21:13:00,353 4th St, San Francisco,CA,94016 +141782,Bose SoundSport Headphones,1,99.99,2019-01-11 21:13:00,353 4th St, San Francisco,CA,94016 +141783,Bose SoundSport Headphones,1,99.99,2019-01-27 17:48:00,581 Willow St, Boston,MA,02215 +141784,27in 4K Gaming Monitor,1,389.99,2019-01-07 11:54:00,301 River St, New York City,NY,10001 +141785,Apple Airpods Headphones,1,150.0,2019-01-20 18:27:00,110 Main St, Portland,OR,97035 +141786,Macbook Pro Laptop,1,1700.0,2019-01-27 12:58:00,728 River St, Boston,MA,02215 +141787,Apple Airpods Headphones,1,150.0,2019-01-15 21:11:00,865 7th St, San Francisco,CA,94016 +141788,AA Batteries (4-pack),2,3.84,2019-01-23 14:39:00,921 Center St, Los Angeles,CA,90001 +141789,Google Phone,1,600.0,2019-01-01 20:13:00,903 Lake St, Seattle,WA,98101 +141789,USB-C Charging Cable,2,11.95,2019-01-01 20:13:00,903 Lake St, Seattle,WA,98101 +141790,AAA Batteries (4-pack),1,2.99,2019-01-09 15:27:00,135 Hickory St, Los Angeles,CA,90001 +141791,USB-C Charging Cable,1,11.95,2019-01-16 10:36:00,266 Forest St, Los Angeles,CA,90001 +141792,USB-C Charging Cable,1,11.95,2019-01-08 22:13:00,779 Ridge St, Dallas,TX,75001 +141793,AA Batteries (4-pack),1,3.84,2019-01-19 11:01:00,830 Dogwood St, Dallas,TX,75001 +141794,Bose SoundSport Headphones,1,99.99,2019-01-24 10:49:00,147 Maple St, Los Angeles,CA,90001 +141795,iPhone,1,700.0,2019-01-19 20:31:00,383 Jefferson St, San Francisco,CA,94016 +141795,Wired Headphones,1,11.99,2019-01-19 20:31:00,383 Jefferson St, San Francisco,CA,94016 +141796,AAA Batteries (4-pack),1,2.99,2019-01-23 20:28:00,594 West St, San Francisco,CA,94016 +141797,27in FHD Monitor,1,149.99,2019-01-02 10:29:00,393 Johnson St, San Francisco,CA,94016 +141798,20in Monitor,1,109.99,2019-01-18 07:48:00,482 Washington St, Boston,MA,02215 +141799,AA Batteries (4-pack),1,3.84,2019-01-02 20:10:00,270 2nd St, San Francisco,CA,94016 +141800,27in FHD Monitor,1,149.99,2019-01-26 12:11:00,775 West St, Seattle,WA,98101 +141801,USB-C Charging Cable,1,11.95,2019-01-21 17:24:00,173 Center St, Portland,OR,97035 +141802,Flatscreen TV,1,300.0,2019-01-09 06:09:00,978 7th St, San Francisco,CA,94016 +141803,27in 4K Gaming Monitor,1,389.99,2019-01-02 09:53:00,452 South St, San Francisco,CA,94016 +141804,Bose SoundSport Headphones,1,99.99,2019-01-23 19:52:00,350 West St, New York City,NY,10001 +141805,Bose SoundSport Headphones,1,99.99,2019-01-18 08:36:00,418 Washington St, New York City,NY,10001 +141806,27in 4K Gaming Monitor,1,389.99,2019-01-26 23:02:00,523 9th St, Austin,TX,73301 +141807,Vareebadd Phone,1,400.0,2019-01-11 20:23:00,402 Maple St, Los Angeles,CA,90001 +141808,Lightning Charging Cable,1,14.95,2019-01-10 18:36:00,373 Cedar St, Seattle,WA,98101 +141809,Google Phone,1,600.0,2019-01-08 15:38:00,457 Adams St, Los Angeles,CA,90001 +141809,USB-C Charging Cable,1,11.95,2019-01-08 15:38:00,457 Adams St, Los Angeles,CA,90001 +141810,Lightning Charging Cable,1,14.95,2019-01-16 12:23:00,449 14th St, Austin,TX,73301 +141811,AAA Batteries (4-pack),1,2.99,2019-01-03 20:47:00,77 Lakeview St, Seattle,WA,98101 +141812,AA Batteries (4-pack),1,3.84,2019-01-19 22:03:00,976 Main St, Atlanta,GA,30301 +141813,USB-C Charging Cable,1,11.95,2019-01-10 10:03:00,836 Jefferson St, Seattle,WA,98101 +141814,20in Monitor,1,109.99,2019-01-08 15:32:00,583 North St, Los Angeles,CA,90001 +141815,AAA Batteries (4-pack),2,2.99,2019-01-22 10:50:00,280 5th St, San Francisco,CA,94016 +141816,34in Ultrawide Monitor,1,379.99,2019-01-09 09:22:00,730 Adams St, Boston,MA,02215 +141817,LG Dryer,1,600.0,2019-01-04 09:03:00,404 Lakeview St, San Francisco,CA,94016 +141818,AA Batteries (4-pack),1,3.84,2019-01-06 06:53:00,91 Hill St, Atlanta,GA,30301 +141819,AAA Batteries (4-pack),2,2.99,2019-01-26 22:06:00,318 2nd St, New York City,NY,10001 +141820,Lightning Charging Cable,1,14.95,2019-01-21 17:53:00,215 Lincoln St, Austin,TX,73301 +141821,USB-C Charging Cable,1,11.95,2019-01-21 12:24:00,337 Wilson St, New York City,NY,10001 +141822,Lightning Charging Cable,1,14.95,2019-01-09 18:53:00,775 2nd St, Boston,MA,02215 +141823,USB-C Charging Cable,1,11.95,2019-01-27 17:30:00,952 4th St, Atlanta,GA,30301 +141824,Wired Headphones,1,11.99,2019-01-14 12:34:00,846 13th St, Atlanta,GA,30301 +141825,Lightning Charging Cable,1,14.95,2019-01-16 13:02:00,660 Park St, Atlanta,GA,30301 +141826,Lightning Charging Cable,1,14.95,2019-01-25 21:34:00,336 Center St, San Francisco,CA,94016 +141827,20in Monitor,1,109.99,2019-01-18 21:33:00,497 Washington St, San Francisco,CA,94016 +141828,AA Batteries (4-pack),1,3.84,2019-01-13 11:05:00,611 West St, Atlanta,GA,30301 +141829,Flatscreen TV,1,300.0,2019-01-15 12:41:00,214 9th St, San Francisco,CA,94016 +141830,USB-C Charging Cable,1,11.95,2019-01-24 08:24:00,873 Lakeview St, Seattle,WA,98101 +141831,Bose SoundSport Headphones,1,99.99,2019-01-23 02:42:00,153 Lakeview St, Dallas,TX,75001 +141832,34in Ultrawide Monitor,1,379.99,2019-01-03 19:01:00,254 Cedar St, New York City,NY,10001 +141833,34in Ultrawide Monitor,1,379.99,2019-01-11 21:16:00,689 6th St, San Francisco,CA,94016 +141834,27in FHD Monitor,1,149.99,2019-01-05 12:07:00,704 10th St, San Francisco,CA,94016 +141835,Flatscreen TV,1,300.0,2019-01-23 20:33:00,100 Spruce St, Los Angeles,CA,90001 +141836,AAA Batteries (4-pack),2,2.99,2019-01-10 22:46:00,906 West St, Seattle,WA,98101 +141837,Bose SoundSport Headphones,1,99.99,2019-01-11 08:57:00,858 Wilson St, Boston,MA,02215 +141838,Wired Headphones,1,11.99,2019-01-15 15:07:00,4 Main St, San Francisco,CA,94016 +141839,USB-C Charging Cable,1,11.95,2019-01-05 10:47:00,448 River St, Boston,MA,02215 +141840,USB-C Charging Cable,1,11.95,2019-01-24 23:40:00,739 11th St, Boston,MA,02215 +141841,Bose SoundSport Headphones,1,99.99,2019-01-10 20:43:00,309 11th St, San Francisco,CA,94016 +141842,Bose SoundSport Headphones,1,99.99,2019-01-19 14:11:00,471 Maple St, San Francisco,CA,94016 +141843,AA Batteries (4-pack),1,3.84,2019-01-10 09:59:00,400 9th St, San Francisco,CA,94016 +141843,AAA Batteries (4-pack),1,2.99,2019-01-10 09:59:00,400 9th St, San Francisco,CA,94016 +141844,Lightning Charging Cable,1,14.95,2019-01-21 20:45:00,368 11th St, Seattle,WA,98101 +141845,AAA Batteries (4-pack),1,2.99,2019-01-24 23:20:00,45 Lincoln St, Seattle,WA,98101 +141846,AA Batteries (4-pack),1,3.84,2019-01-10 09:03:00,826 Meadow St, Los Angeles,CA,90001 +141847,Bose SoundSport Headphones,1,99.99,2019-01-08 15:52:00,946 Lake St, Seattle,WA,98101 +141848,USB-C Charging Cable,1,11.95,2019-01-12 16:47:00,1 8th St, Atlanta,GA,30301 +141849,Bose SoundSport Headphones,1,99.99,2019-01-15 06:28:00,622 Lake St, Portland,ME,04101 +141850,AAA Batteries (4-pack),1,2.99,2019-01-28 18:44:00,676 1st St, Los Angeles,CA,90001 +141851,27in FHD Monitor,1,149.99,2019-01-20 10:43:00,325 Chestnut St, New York City,NY,10001 +141852,USB-C Charging Cable,1,11.95,2019-01-09 20:04:00,446 Maple St, Los Angeles,CA,90001 +141853,Apple Airpods Headphones,1,150.0,2019-01-11 12:32:00,364 Pine St, New York City,NY,10001 +141854,20in Monitor,1,109.99,2019-01-03 12:55:00,238 Forest St, Dallas,TX,75001 +141855,ThinkPad Laptop,1,999.99,2019-01-01 15:01:00,549 Lincoln St, San Francisco,CA,94016 +141856,Lightning Charging Cable,1,14.95,2019-01-10 12:38:00,165 Jefferson St, New York City,NY,10001 +141857,Bose SoundSport Headphones,1,99.99,2019-01-10 00:35:00,140 Main St, San Francisco,CA,94016 +141858,USB-C Charging Cable,1,11.95,2019-01-10 19:57:00,339 Cedar St, San Francisco,CA,94016 +141859,AA Batteries (4-pack),1,3.84,2019-01-24 06:38:00,348 Jackson St, Seattle,WA,98101 +141860,ThinkPad Laptop,1,999.99,2019-01-08 15:17:00,760 Jackson St, Los Angeles,CA,90001 +141861,27in FHD Monitor,1,149.99,2019-01-15 20:15:00,361 Main St, Los Angeles,CA,90001 +141862,Wired Headphones,1,11.99,2019-01-12 11:02:00,754 Pine St, San Francisco,CA,94016 +141863,AAA Batteries (4-pack),1,2.99,2019-01-26 16:21:00,373 Chestnut St, Seattle,WA,98101 +141864,27in 4K Gaming Monitor,1,389.99,2019-01-18 22:08:00,797 Forest St, Portland,OR,97035 +141865,Wired Headphones,2,11.99,2019-01-25 22:16:00,816 South St, San Francisco,CA,94016 +141866,Bose SoundSport Headphones,1,99.99,2019-01-27 13:57:00,32 Wilson St, Boston,MA,02215 +141867,Apple Airpods Headphones,1,150.0,2019-01-29 13:58:00,763 River St, Los Angeles,CA,90001 +141868,Wired Headphones,1,11.99,2019-01-31 20:56:00,166 Pine St, Los Angeles,CA,90001 +141869,20in Monitor,1,109.99,2019-01-25 11:13:00,528 Maple St, Los Angeles,CA,90001 +141870,AA Batteries (4-pack),2,3.84,2019-01-25 22:23:00,269 Main St, Dallas,TX,75001 +141871,Lightning Charging Cable,1,14.95,2019-01-05 06:28:00,782 Jefferson St, San Francisco,CA,94016 +141872,34in Ultrawide Monitor,1,379.99,2019-01-19 12:46:00,428 Madison St, Seattle,WA,98101 +141873,34in Ultrawide Monitor,1,379.99,2019-01-19 19:12:00,521 Ridge St, San Francisco,CA,94016 +141874,Lightning Charging Cable,1,14.95,2019-01-29 20:04:00,960 North St, San Francisco,CA,94016 +141875,AA Batteries (4-pack),1,3.84,2019-01-26 14:00:00,896 Dogwood St, San Francisco,CA,94016 +141876,Apple Airpods Headphones,1,150.0,2019-01-13 11:16:00,81 Maple St, San Francisco,CA,94016 +141877,USB-C Charging Cable,1,11.95,2019-01-01 15:49:00,441 South St, San Francisco,CA,94016 +141878,Apple Airpods Headphones,1,150.0,2019-01-17 16:06:00,652 Chestnut St, Atlanta,GA,30301 +141879,AA Batteries (4-pack),1,3.84,2019-01-20 20:03:00,595 South St, San Francisco,CA,94016 +141880,AAA Batteries (4-pack),2,2.99,2019-01-31 01:21:00,623 9th St, Dallas,TX,75001 +141881,AAA Batteries (4-pack),7,2.99,2019-01-19 16:36:00,563 Wilson St, Seattle,WA,98101 +141882,AA Batteries (4-pack),1,3.84,2019-01-08 22:08:00,55 Lakeview St, Los Angeles,CA,90001 +141883,AA Batteries (4-pack),1,3.84,2019-01-15 21:42:00,320 River St, Dallas,TX,75001 +141884,Google Phone,1,600.0,2019-01-08 10:18:00,74 1st St, Los Angeles,CA,90001 +141885,Wired Headphones,1,11.99,2019-01-02 13:18:00,544 West St, Portland,OR,97035 +141886,iPhone,1,700.0,2019-01-10 06:37:00,94 7th St, New York City,NY,10001 +141887,AAA Batteries (4-pack),2,2.99,2019-01-13 13:41:00,374 10th St, San Francisco,CA,94016 +141888,iPhone,1,700.0,2019-01-09 11:01:00,17 Spruce St, Los Angeles,CA,90001 +141889,34in Ultrawide Monitor,1,379.99,2019-01-12 13:03:00,12 Cedar St, Boston,MA,02215 +141890,Lightning Charging Cable,1,14.95,2019-01-21 08:05:00,962 Washington St, New York City,NY,10001 +141891,USB-C Charging Cable,1,11.95,2019-01-31 22:14:00,800 Lincoln St, Atlanta,GA,30301 +141892,AA Batteries (4-pack),2,3.84,2019-01-06 10:07:00,888 Walnut St, San Francisco,CA,94016 +141893,AA Batteries (4-pack),1,3.84,2019-01-23 16:19:00,527 Lakeview St, New York City,NY,10001 +141894,Apple Airpods Headphones,1,150.0,2019-01-12 14:20:00,40 Wilson St, New York City,NY,10001 +141895,AA Batteries (4-pack),3,3.84,2019-01-18 17:37:00,469 Lake St, Dallas,TX,75001 +141896,AA Batteries (4-pack),1,3.84,2019-01-20 21:38:00,455 14th St, San Francisco,CA,94016 +141897,Google Phone,1,600.0,2019-01-06 20:16:00,658 10th St, Dallas,TX,75001 +141898,Flatscreen TV,1,300.0,2019-01-15 13:17:00,986 South St, New York City,NY,10001 +141899,AAA Batteries (4-pack),2,2.99,2019-01-12 22:33:00,649 Pine St, Portland,OR,97035 +141900,Vareebadd Phone,1,400.0,2019-01-18 09:53:00,239 13th St, Seattle,WA,98101 +141900,USB-C Charging Cable,1,11.95,2019-01-18 09:53:00,239 13th St, Seattle,WA,98101 +141900,Wired Headphones,1,11.99,2019-01-18 09:53:00,239 13th St, Seattle,WA,98101 +141901,Google Phone,1,600.0,2019-01-26 22:12:00,942 Maple St, Boston,MA,02215 +141901,USB-C Charging Cable,1,11.95,2019-01-26 22:12:00,942 Maple St, Boston,MA,02215 +141902,Wired Headphones,1,11.99,2019-01-06 13:43:00,706 Johnson St, New York City,NY,10001 +141903,ThinkPad Laptop,1,999.99,2019-01-30 20:01:00,550 Willow St, San Francisco,CA,94016 +141904,Apple Airpods Headphones,1,150.0,2019-01-09 18:03:00,945 Chestnut St, New York City,NY,10001 +141905,USB-C Charging Cable,1,11.95,2019-01-02 07:10:00,140 Cherry St, Los Angeles,CA,90001 +141906,AAA Batteries (4-pack),2,2.99,2019-01-26 14:27:00,59 Adams St, Seattle,WA,98101 +141907,USB-C Charging Cable,1,11.95,2019-01-13 17:46:00,812 13th St, Seattle,WA,98101 +141908,Apple Airpods Headphones,1,150.0,2019-01-27 23:33:00,613 8th St, Portland,OR,97035 +141909,AA Batteries (4-pack),2,3.84,2019-01-17 16:29:00,314 Center St, Portland,OR,97035 +141910,Vareebadd Phone,1,400.0,2019-01-19 10:52:00,831 9th St, New York City,NY,10001 +141910,Wired Headphones,1,11.99,2019-01-19 10:52:00,831 9th St, New York City,NY,10001 +141911,Lightning Charging Cable,1,14.95,2019-01-20 14:35:00,902 Elm St, Boston,MA,02215 +141912,Apple Airpods Headphones,1,150.0,2019-01-23 19:41:00,742 Adams St, San Francisco,CA,94016 +141913,AAA Batteries (4-pack),1,2.99,2019-01-27 11:35:00,380 Pine St, San Francisco,CA,94016 +141914,Bose SoundSport Headphones,1,99.99,2019-01-05 15:01:00,420 5th St, San Francisco,CA,94016 +141915,AAA Batteries (4-pack),2,2.99,2019-01-28 16:51:00,576 Park St, Portland,OR,97035 +141916,Wired Headphones,1,11.99,2019-01-26 14:03:00,217 South St, Boston,MA,02215 +141917,AAA Batteries (4-pack),1,2.99,2019-01-16 19:54:00,415 1st St, Dallas,TX,75001 +141918,Bose SoundSport Headphones,1,99.99,2019-01-21 17:04:00,916 7th St, Atlanta,GA,30301 +141919,Wired Headphones,1,11.99,2019-01-02 12:55:00,197 Ridge St, Boston,MA,02215 +141920,Wired Headphones,1,11.99,2019-01-23 18:39:00,741 Lakeview St, Boston,MA,02215 +141921,Lightning Charging Cable,1,14.95,2019-01-07 02:22:00,164 Elm St, San Francisco,CA,94016 +141922,AA Batteries (4-pack),1,3.84,2019-01-10 11:05:00,985 Lakeview St, Atlanta,GA,30301 +141923,Lightning Charging Cable,1,14.95,2019-01-20 21:26:00,556 South St, Austin,TX,73301 +141924,USB-C Charging Cable,1,11.95,2019-01-09 10:47:00,497 4th St, Seattle,WA,98101 +141925,Lightning Charging Cable,1,14.95,2019-01-17 10:24:00,572 Hickory St, New York City,NY,10001 +141926,20in Monitor,2,109.99,2019-01-23 22:09:00,177 12th St, Los Angeles,CA,90001 +141927,27in FHD Monitor,1,149.99,2019-01-31 21:37:00,163 11th St, San Francisco,CA,94016 +141928,Apple Airpods Headphones,1,150.0,2019-01-06 14:01:00,294 South St, Dallas,TX,75001 +141929,AA Batteries (4-pack),2,3.84,2019-01-02 14:42:00,285 6th St, Boston,MA,02215 +141930,20in Monitor,1,109.99,2019-01-18 14:21:00,173 Church St, Los Angeles,CA,90001 +141931,USB-C Charging Cable,1,11.95,2019-01-02 13:31:00,834 Wilson St, Boston,MA,02215 +141932,Lightning Charging Cable,1,14.95,2019-01-24 18:49:00,943 4th St, Atlanta,GA,30301 +141933,Wired Headphones,1,11.99,2019-01-17 16:31:00,307 Walnut St, Los Angeles,CA,90001 +141934,Flatscreen TV,1,300.0,2019-01-19 15:56:00,546 Johnson St, Portland,OR,97035 +141935,34in Ultrawide Monitor,1,379.99,2019-01-17 20:12:00,365 Dogwood St, New York City,NY,10001 +141936,Lightning Charging Cable,1,14.95,2019-01-27 17:04:00,339 Washington St, San Francisco,CA,94016 +141937,USB-C Charging Cable,1,11.95,2019-01-02 08:31:00,131 South St, New York City,NY,10001 +141938,Macbook Pro Laptop,1,1700.0,2019-01-16 16:34:00,852 13th St, Los Angeles,CA,90001 +141939,34in Ultrawide Monitor,1,379.99,2019-01-11 14:36:00,119 Walnut St, Dallas,TX,75001 +141939,Lightning Charging Cable,1,14.95,2019-01-11 14:36:00,119 Walnut St, Dallas,TX,75001 +141940,Bose SoundSport Headphones,1,99.99,2019-01-14 16:19:00,548 River St, Los Angeles,CA,90001 +141941,20in Monitor,1,109.99,2019-01-27 10:50:00,469 Johnson St, Los Angeles,CA,90001 +141942,AAA Batteries (4-pack),1,2.99,2019-01-06 12:24:00,968 Cedar St, San Francisco,CA,94016 +141943,Lightning Charging Cable,1,14.95,2019-01-10 23:06:00,233 5th St, San Francisco,CA,94016 +141944,20in Monitor,1,109.99,2019-01-31 18:04:00,618 8th St, New York City,NY,10001 +141945,USB-C Charging Cable,1,11.95,2019-01-26 14:12:00,324 Wilson St, San Francisco,CA,94016 +141946,USB-C Charging Cable,1,11.95,2019-01-11 17:24:00,731 Lake St, San Francisco,CA,94016 +141946,Wired Headphones,1,11.99,2019-01-11 17:24:00,731 Lake St, San Francisco,CA,94016 +141947,Lightning Charging Cable,1,14.95,2019-01-17 11:05:00,770 5th St, San Francisco,CA,94016 +141947,Bose SoundSport Headphones,1,99.99,2019-01-17 11:05:00,770 5th St, San Francisco,CA,94016 +141948,27in FHD Monitor,1,149.99,2019-01-24 14:04:00,456 Meadow St, Los Angeles,CA,90001 +141949,USB-C Charging Cable,1,11.95,2019-01-07 06:43:00,11 14th St, New York City,NY,10001 +141950,AAA Batteries (4-pack),1,2.99,2019-01-01 19:54:00,374 8th St, Seattle,WA,98101 +141951,ThinkPad Laptop,1,999.99,2019-01-16 06:54:00,489 12th St, Boston,MA,02215 +141952,Lightning Charging Cable,1,14.95,2019-01-04 21:13:00,551 Ridge St, Portland,OR,97035 +141953,Macbook Pro Laptop,1,1700.0,2019-01-11 10:03:00,112 Maple St, Atlanta,GA,30301 +141954,Google Phone,1,600.0,2019-01-28 17:05:00,349 Wilson St, San Francisco,CA,94016 +141955,Lightning Charging Cable,1,14.95,2019-01-26 15:04:00,340 Washington St, Seattle,WA,98101 +141956,Flatscreen TV,1,300.0,2019-01-18 17:55:00,5 Jefferson St, Dallas,TX,75001 +141957,USB-C Charging Cable,2,11.95,2019-01-25 20:06:00,229 Hickory St, San Francisco,CA,94016 +141958,Lightning Charging Cable,1,14.95,2019-01-16 15:23:00,24 Lakeview St, Atlanta,GA,30301 +141959,Wired Headphones,1,11.99,2019-01-26 20:31:00,895 Cedar St, San Francisco,CA,94016 +141960,AA Batteries (4-pack),3,3.84,2019-01-12 18:02:00,548 9th St, Boston,MA,02215 +141961,iPhone,1,700.0,2019-01-12 17:39:00,512 Hickory St, Los Angeles,CA,90001 +141962,AA Batteries (4-pack),1,3.84,2019-01-30 11:47:00,915 Hill St, Boston,MA,02215 +141963,Bose SoundSport Headphones,1,99.99,2019-01-24 11:13:00,227 Wilson St, Dallas,TX,75001 +141964,AA Batteries (4-pack),1,3.84,2019-01-21 12:36:00,277 Washington St, Dallas,TX,75001 +141965,Google Phone,1,600.0,2019-01-09 13:55:00,303 10th St, Boston,MA,02215 +141965,Wired Headphones,1,11.99,2019-01-09 13:55:00,303 10th St, Boston,MA,02215 +141966,Lightning Charging Cable,1,14.95,2019-01-15 17:43:00,819 Jefferson St, Atlanta,GA,30301 +141967,iPhone,1,700.0,2019-01-25 12:02:00,397 Meadow St, Los Angeles,CA,90001 +141967,Wired Headphones,1,11.99,2019-01-25 12:02:00,397 Meadow St, Los Angeles,CA,90001 +141968,Flatscreen TV,1,300.0,2019-01-15 19:50:00,772 Madison St, Portland,ME,04101 +141969,27in FHD Monitor,1,149.99,2019-01-15 22:50:00,127 North St, Los Angeles,CA,90001 +141970,Apple Airpods Headphones,1,150.0,2019-01-05 13:06:00,136 11th St, Boston,MA,02215 +141970,Lightning Charging Cable,1,14.95,2019-01-05 13:06:00,136 11th St, Boston,MA,02215 +141971,34in Ultrawide Monitor,1,379.99,2019-01-19 07:00:00,219 Elm St, New York City,NY,10001 +141972,Google Phone,1,600.0,2019-01-24 15:25:00,52 Main St, San Francisco,CA,94016 +141972,iPhone,1,700.0,2019-01-24 15:25:00,52 Main St, San Francisco,CA,94016 +141973,AAA Batteries (4-pack),1,2.99,2019-01-23 07:37:00,612 Elm St, Atlanta,GA,30301 +141974,AAA Batteries (4-pack),1,2.99,2019-01-23 20:54:00,115 Main St, Los Angeles,CA,90001 +141975,AA Batteries (4-pack),1,3.84,2019-01-18 21:53:00,879 5th St, Boston,MA,02215 +141976,USB-C Charging Cable,1,11.95,2019-01-15 09:41:00,365 Forest St, San Francisco,CA,94016 +141977,27in FHD Monitor,1,149.99,2019-01-09 04:01:00,353 Sunset St, Los Angeles,CA,90001 +141978,Wired Headphones,1,11.99,2019-01-26 13:02:00,181 Park St, Seattle,WA,98101 +141979,Flatscreen TV,1,300.0,2019-01-08 20:21:00,761 South St, Portland,ME,04101 +141980,Bose SoundSport Headphones,1,99.99,2019-01-05 21:57:00,294 Walnut St, San Francisco,CA,94016 +141981,20in Monitor,1,109.99,2019-01-02 22:10:00,859 12th St, San Francisco,CA,94016 +141982,27in FHD Monitor,1,149.99,2019-01-11 15:57:00,624 Highland St, Atlanta,GA,30301 +141983,27in 4K Gaming Monitor,1,389.99,2019-01-05 17:27:00,350 South St, Portland,OR,97035 +141984,Vareebadd Phone,1,400.0,2019-01-23 16:48:00,451 11th St, Atlanta,GA,30301 +141985,Apple Airpods Headphones,1,150.0,2019-01-26 19:48:00,971 Center St, New York City,NY,10001 +141986,Lightning Charging Cable,1,14.95,2019-01-31 14:21:00,516 Pine St, San Francisco,CA,94016 +141987,Google Phone,1,600.0,2019-01-29 16:56:00,917 Adams St, San Francisco,CA,94016 +141988,Bose SoundSport Headphones,1,99.99,2019-01-17 11:28:00,833 11th St, Portland,OR,97035 +141989,Bose SoundSport Headphones,1,99.99,2019-01-15 11:36:00,756 Spruce St, New York City,NY,10001 +141990,USB-C Charging Cable,1,11.95,2019-01-18 00:39:00,581 14th St, Atlanta,GA,30301 +141991,AAA Batteries (4-pack),2,2.99,2019-01-01 19:51:00,614 Wilson St, Boston,MA,02215 +141992,Bose SoundSport Headphones,1,99.99,2019-01-02 22:27:00,882 Hickory St, Los Angeles,CA,90001 +141993,iPhone,1,700.0,2019-01-06 09:19:00,422 Jackson St, Seattle,WA,98101 +141993,Wired Headphones,1,11.99,2019-01-06 09:19:00,422 Jackson St, Seattle,WA,98101 +141994,Lightning Charging Cable,1,14.95,2019-01-02 08:47:00,665 Church St, Dallas,TX,75001 +141995,AA Batteries (4-pack),1,3.84,2019-01-11 10:49:00,152 South St, Austin,TX,73301 +141996,Lightning Charging Cable,1,14.95,2019-01-20 20:53:00,113 Center St, San Francisco,CA,94016 +141997,27in FHD Monitor,1,149.99,2019-01-26 12:55:00,191 Pine St, Portland,OR,97035 +141998,AAA Batteries (4-pack),3,2.99,2019-01-26 19:19:00,561 Madison St, San Francisco,CA,94016 +141999,27in FHD Monitor,1,149.99,2019-01-24 08:21:00,423 Church St, New York City,NY,10001 +142000,27in 4K Gaming Monitor,1,389.99,2019-01-23 10:54:00,957 Cherry St, Atlanta,GA,30301 +142001,AAA Batteries (4-pack),1,2.99,2019-01-29 16:58:00,566 Walnut St, Portland,ME,04101 +142002,27in FHD Monitor,1,149.99,2019-01-20 21:45:00,264 Pine St, San Francisco,CA,94016 +142003,Lightning Charging Cable,1,14.95,2019-01-19 17:52:00,334 9th St, San Francisco,CA,94016 +142004,Bose SoundSport Headphones,1,99.99,2019-01-04 09:04:00,473 Johnson St, San Francisco,CA,94016 +142005,USB-C Charging Cable,1,11.95,2019-01-06 23:13:00,713 Jackson St, Los Angeles,CA,90001 +142006,Bose SoundSport Headphones,1,99.99,2019-01-23 13:46:00,577 4th St, Boston,MA,02215 +142007,27in FHD Monitor,1,149.99,2019-01-03 12:54:00,419 North St, Seattle,WA,98101 +142008,Wired Headphones,1,11.99,2019-01-21 15:57:00,160 Church St, San Francisco,CA,94016 +142009,iPhone,1,700.0,2019-01-15 13:59:00,411 11th St, San Francisco,CA,94016 +142010,iPhone,1,700.0,2019-01-04 06:28:00,511 2nd St, Portland,OR,97035 +142010,Lightning Charging Cable,1,14.95,2019-01-04 06:28:00,511 2nd St, Portland,OR,97035 +142011,Apple Airpods Headphones,1,150.0,2019-01-18 09:36:00,345 Walnut St, San Francisco,CA,94016 +142012,AAA Batteries (4-pack),2,2.99,2019-01-27 13:42:00,707 Ridge St, San Francisco,CA,94016 +142013,Bose SoundSport Headphones,1,99.99,2019-01-08 18:02:00,662 10th St, Boston,MA,02215 +142014,Macbook Pro Laptop,1,1700.0,2019-01-02 20:41:00,332 River St, Boston,MA,02215 +142015,Apple Airpods Headphones,1,150.0,2019-01-01 13:26:00,205 1st St, Los Angeles,CA,90001 +142016,AAA Batteries (4-pack),2,2.99,2019-01-13 21:47:00,294 North St, San Francisco,CA,94016 +142017,27in 4K Gaming Monitor,1,389.99,2019-01-22 14:17:00,879 5th St, San Francisco,CA,94016 +142018,USB-C Charging Cable,1,11.95,2019-01-09 16:38:00,378 Jefferson St, New York City,NY,10001 +142019,Lightning Charging Cable,1,14.95,2019-01-03 19:58:00,811 2nd St, Dallas,TX,75001 +142020,USB-C Charging Cable,1,11.95,2019-01-10 08:33:00,194 River St, Atlanta,GA,30301 +142021,Lightning Charging Cable,1,14.95,2019-01-07 09:39:00,330 Lincoln St, San Francisco,CA,94016 +142022,AA Batteries (4-pack),1,3.84,2019-01-27 09:14:00,463 11th St, Atlanta,GA,30301 +142023,20in Monitor,1,109.99,2019-01-29 20:02:00,766 Maple St, San Francisco,CA,94016 +142023,Wired Headphones,1,11.99,2019-01-29 20:02:00,766 Maple St, San Francisco,CA,94016 +142024,AAA Batteries (4-pack),1,2.99,2019-01-26 13:22:00,779 Sunset St, San Francisco,CA,94016 +142025,Flatscreen TV,1,300.0,2019-01-15 00:06:00,688 9th St, Los Angeles,CA,90001 +142026,Google Phone,1,600.0,2019-01-18 17:41:00,470 Washington St, San Francisco,CA,94016 +142027,Wired Headphones,1,11.99,2019-01-28 17:32:00,941 Sunset St, Portland,ME,04101 +142028,AA Batteries (4-pack),1,3.84,2019-01-09 12:44:00,48 South St, Los Angeles,CA,90001 +142029,20in Monitor,1,109.99,2019-01-08 12:39:00,431 Cedar St, Los Angeles,CA,90001 +142030,AAA Batteries (4-pack),1,2.99,2019-01-02 13:45:00,827 Lincoln St, Los Angeles,CA,90001 +142031,AA Batteries (4-pack),1,3.84,2019-01-09 23:38:00,319 Hill St, Seattle,WA,98101 +142032,Flatscreen TV,1,300.0,2019-01-14 09:14:00,173 Jackson St, San Francisco,CA,94016 +142033,Apple Airpods Headphones,1,150.0,2019-01-26 19:25:00,758 Highland St, Los Angeles,CA,90001 +142034,Apple Airpods Headphones,1,150.0,2019-01-16 10:27:00,335 North St, San Francisco,CA,94016 +142035,iPhone,1,700.0,2019-01-17 11:06:00,890 North St, Atlanta,GA,30301 +142036,ThinkPad Laptop,1,999.99,2019-01-26 19:20:00,425 Willow St, Atlanta,GA,30301 +142037,iPhone,1,700.0,2019-01-11 21:48:00,230 North St, Austin,TX,73301 +142037,Apple Airpods Headphones,1,150.0,2019-01-11 21:48:00,230 North St, Austin,TX,73301 +142038,AAA Batteries (4-pack),3,2.99,2019-01-07 08:07:00,975 Church St, Atlanta,GA,30301 +142039,Google Phone,1,600.0,2019-01-31 16:13:00,549 Cherry St, New York City,NY,10001 +142039,USB-C Charging Cable,3,11.95,2019-01-31 16:13:00,549 Cherry St, New York City,NY,10001 +142040,Lightning Charging Cable,1,14.95,2019-01-30 20:38:00,874 Church St, San Francisco,CA,94016 +142041,Lightning Charging Cable,1,14.95,2019-01-09 12:09:00,166 5th St, Dallas,TX,75001 +142042,Lightning Charging Cable,2,14.95,2019-01-07 21:48:00,461 Hill St, Boston,MA,02215 +142043,Flatscreen TV,1,300.0,2019-01-22 12:55:00,22 Washington St, Seattle,WA,98101 +142044,USB-C Charging Cable,1,11.95,2019-01-19 12:50:00,510 Madison St, Los Angeles,CA,90001 +142045,ThinkPad Laptop,1,999.99,2019-01-07 12:34:00,902 Cherry St, San Francisco,CA,94016 +142046,Wired Headphones,2,11.99,2019-01-20 19:40:00,775 14th St, New York City,NY,10001 +142047,AA Batteries (4-pack),1,3.84,2019-01-26 17:17:00,896 Church St, San Francisco,CA,94016 +142048,Google Phone,1,600.0,2019-01-04 15:30:00,628 11th St, Portland,OR,97035 +142048,Wired Headphones,1,11.99,2019-01-04 15:30:00,628 11th St, Portland,OR,97035 +142049,AAA Batteries (4-pack),1,2.99,2019-01-11 12:56:00,184 Sunset St, Portland,OR,97035 +142050,27in FHD Monitor,1,149.99,2019-01-22 17:00:00,581 West St, Portland,OR,97035 +142051,USB-C Charging Cable,1,11.95,2019-01-04 16:40:00,269 Johnson St, Austin,TX,73301 +142052,Macbook Pro Laptop,1,1700.0,2019-01-02 17:26:00,731 10th St, San Francisco,CA,94016 +142053,Apple Airpods Headphones,1,150.0,2019-01-30 10:53:00,424 South St, Seattle,WA,98101 +142054,Bose SoundSport Headphones,1,99.99,2019-01-11 19:29:00,524 Spruce St, San Francisco,CA,94016 +142055,Bose SoundSport Headphones,1,99.99,2019-01-05 02:03:00,781 Lakeview St, Austin,TX,73301 +142056,USB-C Charging Cable,1,11.95,2019-01-08 09:16:00,342 Wilson St, Seattle,WA,98101 +142057,Google Phone,1,600.0,2019-01-04 11:15:00,42 Madison St, New York City,NY,10001 +142058,iPhone,1,700.0,2019-01-24 21:33:00,621 12th St, Los Angeles,CA,90001 +142059,Macbook Pro Laptop,1,1700.0,2019-01-08 20:49:00,486 South St, Los Angeles,CA,90001 +142060,Lightning Charging Cable,1,14.95,2019-01-14 11:36:00,754 13th St, New York City,NY,10001 +142061,AA Batteries (4-pack),1,3.84,2019-01-18 19:56:00,776 Center St, San Francisco,CA,94016 +142062,Wired Headphones,1,11.99,2019-01-24 12:31:00,930 Church St, San Francisco,CA,94016 +142063,AAA Batteries (4-pack),1,2.99,2019-01-01 17:45:00,153 Willow St, Dallas,TX,75001 +142064,AA Batteries (4-pack),2,3.84,2019-01-08 19:52:00,710 Cherry St, New York City,NY,10001 +142065,AAA Batteries (4-pack),2,2.99,2019-01-24 01:17:00,820 West St, San Francisco,CA,94016 +142066,27in 4K Gaming Monitor,1,389.99,2019-01-01 22:02:00,110 Dogwood St, Seattle,WA,98101 +142067,27in FHD Monitor,1,149.99,2019-01-30 09:23:00,149 Ridge St, Los Angeles,CA,90001 +142068,27in 4K Gaming Monitor,1,389.99,2019-01-28 23:09:00,469 Elm St, Los Angeles,CA,90001 +142069,AAA Batteries (4-pack),2,2.99,2019-01-22 11:42:00,541 Maple St, Los Angeles,CA,90001 +142070,USB-C Charging Cable,1,11.95,2019-01-13 16:12:00,356 14th St, Portland,ME,04101 +142071,AA Batteries (4-pack),1,3.84,2019-01-17 23:02:00,131 2nd St, Boston,MA,02215 +142072,ThinkPad Laptop,1,999.99,2019-01-16 19:57:00,961 Church St, Dallas,TX,75001 +142073,Wired Headphones,1,11.99,2019-01-05 16:22:00,237 Chestnut St, Portland,OR,97035 +142074,Bose SoundSport Headphones,1,99.99,2019-01-25 20:51:00,643 Elm St, Boston,MA,02215 +142075,Wired Headphones,1,11.99,2019-01-19 16:20:00,668 Maple St, San Francisco,CA,94016 +142076,Wired Headphones,1,11.99,2019-01-29 16:11:00,927 Johnson St, San Francisco,CA,94016 +142077,Apple Airpods Headphones,1,150.0,2019-01-17 17:18:00,912 9th St, Portland,OR,97035 +142078,AA Batteries (4-pack),1,3.84,2019-01-09 12:03:00,37 Meadow St, Dallas,TX,75001 +142079,AA Batteries (4-pack),1,3.84,2019-01-02 17:17:00,183 Park St, Dallas,TX,75001 +142080,USB-C Charging Cable,1,11.95,2019-01-12 22:52:00,541 13th St, Portland,OR,97035 +142081,AAA Batteries (4-pack),1,2.99,2019-01-29 17:13:00,758 Forest St, San Francisco,CA,94016 +142082,AAA Batteries (4-pack),1,2.99,2019-01-16 22:04:00,396 Hill St, New York City,NY,10001 +142083,Macbook Pro Laptop,1,1700.0,2019-01-20 17:46:00,977 Jackson St, Portland,OR,97035 +142084,USB-C Charging Cable,3,11.95,2019-01-14 13:57:00,442 Washington St, Seattle,WA,98101 +142085,iPhone,1,700.0,2019-01-26 18:52:00,577 13th St, Los Angeles,CA,90001 +142085,Lightning Charging Cable,1,14.95,2019-01-26 18:52:00,577 13th St, Los Angeles,CA,90001 +142086,Lightning Charging Cable,1,14.95,2019-01-05 12:11:00,440 Spruce St, Atlanta,GA,30301 +142087,27in 4K Gaming Monitor,1,389.99,2019-01-24 14:52:00,119 Dogwood St, San Francisco,CA,94016 +142088,Google Phone,1,600.0,2019-01-12 12:11:00,43 Sunset St, Seattle,WA,98101 +142089,USB-C Charging Cable,1,11.95,2019-01-15 10:36:00,529 13th St, Seattle,WA,98101 +142090,Wired Headphones,1,11.99,2019-01-06 05:43:00,940 Pine St, Portland,ME,04101 +142091,AAA Batteries (4-pack),1,2.99,2019-01-21 10:13:00,337 West St, San Francisco,CA,94016 +142092,Bose SoundSport Headphones,1,99.99,2019-01-24 11:32:00,473 Lincoln St, Los Angeles,CA,90001 +142093,Lightning Charging Cable,1,14.95,2019-01-17 15:48:00,342 Lake St, San Francisco,CA,94016 +142094,Wired Headphones,1,11.99,2019-01-19 18:24:00,396 South St, Boston,MA,02215 +142095,Apple Airpods Headphones,1,150.0,2019-01-13 00:41:00,528 Center St, Los Angeles,CA,90001 +142096,USB-C Charging Cable,1,11.95,2019-01-22 18:00:00,354 Hill St, Los Angeles,CA,90001 +142097,Lightning Charging Cable,1,14.95,2019-01-17 20:58:00,608 South St, Los Angeles,CA,90001 +142098,AA Batteries (4-pack),3,3.84,2019-01-26 01:58:00,295 Hickory St, Los Angeles,CA,90001 +142099,AA Batteries (4-pack),2,3.84,2019-01-23 14:13:00,389 South St, Dallas,TX,75001 +142100,Bose SoundSport Headphones,1,99.99,2019-01-05 11:53:00,791 2nd St, New York City,NY,10001 +142101,iPhone,1,700.0,2019-01-22 21:24:00,608 8th St, Atlanta,GA,30301 +142102,AAA Batteries (4-pack),1,2.99,2019-01-25 12:15:00,427 Chestnut St, New York City,NY,10001 +142103,iPhone,1,700.0,2019-01-28 19:12:00,600 Center St, Boston,MA,02215 +142104,Apple Airpods Headphones,1,150.0,2019-01-19 20:50:00,184 Madison St, San Francisco,CA,94016 +142105,ThinkPad Laptop,1,999.99,2019-01-31 13:34:00,306 14th St, Portland,OR,97035 +142106,27in 4K Gaming Monitor,1,389.99,2019-01-04 18:51:00,841 Walnut St, Dallas,TX,75001 +142107,Lightning Charging Cable,1,14.95,2019-01-06 17:22:00,653 Lincoln St, Portland,ME,04101 +142108,LG Dryer,1,600.0,2019-01-31 16:01:00,183 Elm St, New York City,NY,10001 +142109,Macbook Pro Laptop,1,1700.0,2019-01-08 15:29:00,551 13th St, Portland,ME,04101 +142110,USB-C Charging Cable,1,11.95,2019-01-24 14:20:00,277 Highland St, San Francisco,CA,94016 +142111,Lightning Charging Cable,1,14.95,2019-01-23 22:49:00,104 Cedar St, New York City,NY,10001 +142112,20in Monitor,1,109.99,2019-01-01 13:51:00,625 Elm St, Boston,MA,02215 +142112,Bose SoundSport Headphones,1,99.99,2019-01-01 13:51:00,625 Elm St, Boston,MA,02215 +142113,AAA Batteries (4-pack),3,2.99,2019-01-10 10:12:00,198 Lakeview St, San Francisco,CA,94016 +142114,Bose SoundSport Headphones,1,99.99,2019-01-09 16:21:00,838 Johnson St, San Francisco,CA,94016 +142115,Apple Airpods Headphones,1,150.0,2019-01-11 19:26:00,547 2nd St, Austin,TX,73301 +142116,AA Batteries (4-pack),1,3.84,2019-01-09 18:54:00,568 5th St, San Francisco,CA,94016 +142117,Macbook Pro Laptop,1,1700.0,2019-01-08 10:58:00,305 Jefferson St, Boston,MA,02215 +142118,Bose SoundSport Headphones,1,99.99,2019-01-12 15:34:00,818 West St, Seattle,WA,98101 +142119,USB-C Charging Cable,1,11.95,2019-01-11 09:13:00,37 7th St, Atlanta,GA,30301 +142120,27in 4K Gaming Monitor,1,389.99,2019-01-04 04:20:00,649 Spruce St, Atlanta,GA,30301 +142121,Wired Headphones,1,11.99,2019-01-14 00:25:00,37 South St, Atlanta,GA,30301 +142122,Apple Airpods Headphones,1,150.0,2019-01-11 23:06:00,331 7th St, Portland,OR,97035 +142123,Lightning Charging Cable,1,14.95,2019-01-02 20:45:00,253 14th St, San Francisco,CA,94016 +142124,AA Batteries (4-pack),2,3.84,2019-01-28 13:11:00,291 Lincoln St, San Francisco,CA,94016 +142125,Lightning Charging Cable,1,14.95,2019-01-26 03:16:00,841 7th St, Boston,MA,02215 +142126,AAA Batteries (4-pack),2,2.99,2019-01-26 12:05:00,41 7th St, San Francisco,CA,94016 +142127,Wired Headphones,1,11.99,2019-01-14 09:20:00,678 9th St, New York City,NY,10001 +142128,Google Phone,1,600.0,2019-01-20 02:57:00,752 2nd St, Austin,TX,73301 +142128,Bose SoundSport Headphones,1,99.99,2019-01-20 02:57:00,752 2nd St, Austin,TX,73301 +142128,Wired Headphones,2,11.99,2019-01-20 02:57:00,752 2nd St, Austin,TX,73301 +142129,Apple Airpods Headphones,1,150.0,2019-01-31 18:09:00,685 10th St, Atlanta,GA,30301 +142130,Google Phone,1,600.0,2019-01-31 16:48:00,640 11th St, Portland,OR,97035 +142131,AAA Batteries (4-pack),1,2.99,2019-01-20 12:49:00,250 12th St, Boston,MA,02215 +142132,USB-C Charging Cable,2,11.95,2019-01-06 22:35:00,664 Maple St, Boston,MA,02215 +142133,USB-C Charging Cable,1,11.95,2019-01-30 20:04:00,164 5th St, Boston,MA,02215 +142134,Google Phone,1,600.0,2019-01-01 09:23:00,734 River St, New York City,NY,10001 +142135,USB-C Charging Cable,1,11.95,2019-01-06 10:29:00,358 Hill St, San Francisco,CA,94016 +142136,AA Batteries (4-pack),1,3.84,2019-01-07 09:58:00,944 Ridge St, Seattle,WA,98101 +142137,AAA Batteries (4-pack),1,2.99,2019-01-24 06:01:00,789 13th St, Los Angeles,CA,90001 +142138,AA Batteries (4-pack),1,3.84,2019-01-07 09:03:00,531 West St, Boston,MA,02215 +142139,AA Batteries (4-pack),2,3.84,2019-01-17 08:09:00,846 11th St, San Francisco,CA,94016 +142140,Lightning Charging Cable,1,14.95,2019-01-24 19:29:00,293 Hill St, Austin,TX,73301 +142141,Wired Headphones,1,11.99,2019-01-29 17:15:00,799 Hickory St, Atlanta,GA,30301 +142142,Wired Headphones,1,11.99,2019-01-22 13:00:00,804 Willow St, Seattle,WA,98101 +142143,USB-C Charging Cable,1,11.95,2019-01-03 11:44:00,706 Elm St, San Francisco,CA,94016 +142144,Vareebadd Phone,1,400.0,2019-01-04 04:31:00,399 Lincoln St, New York City,NY,10001 +142144,USB-C Charging Cable,1,11.95,2019-01-04 04:31:00,399 Lincoln St, New York City,NY,10001 +142145,Apple Airpods Headphones,1,150.0,2019-01-18 20:30:00,899 6th St, San Francisco,CA,94016 +142145,USB-C Charging Cable,1,11.95,2019-01-18 20:30:00,899 6th St, San Francisco,CA,94016 +142146,AAA Batteries (4-pack),4,2.99,2019-01-02 17:39:00,628 North St, New York City,NY,10001 +142147,27in 4K Gaming Monitor,1,389.99,2019-01-09 18:39:00,799 Forest St, San Francisco,CA,94016 +142148,34in Ultrawide Monitor,1,379.99,2019-01-24 02:46:00,104 4th St, Los Angeles,CA,90001 +142149,AA Batteries (4-pack),3,3.84,2019-01-15 11:45:00,935 Main St, New York City,NY,10001 +142150,AA Batteries (4-pack),2,3.84,2019-01-26 11:26:00,728 Main St, Seattle,WA,98101 +142151,AA Batteries (4-pack),3,3.84,2019-01-26 17:59:00,384 4th St, San Francisco,CA,94016 +142152,Macbook Pro Laptop,1,1700.0,2019-01-11 17:31:00,231 Washington St, San Francisco,CA,94016 +142153,Wired Headphones,1,11.99,2019-01-23 12:53:00,831 Dogwood St, Los Angeles,CA,90001 +142154,USB-C Charging Cable,1,11.95,2019-01-13 09:51:00,579 4th St, Atlanta,GA,30301 +142155,Apple Airpods Headphones,1,150.0,2019-01-31 15:55:00,423 Main St, Atlanta,GA,30301 +142156,34in Ultrawide Monitor,1,379.99,2019-01-01 08:16:00,540 2nd St, San Francisco,CA,94016 +142157,Macbook Pro Laptop,1,1700.0,2019-01-08 09:02:00,638 5th St, Portland,OR,97035 +142158,Wired Headphones,1,11.99,2019-01-15 17:32:00,797 Lincoln St, Boston,MA,02215 +142159,Wired Headphones,1,11.99,2019-01-26 02:11:00,429 Lake St, Boston,MA,02215 +142160,Wired Headphones,1,11.99,2019-01-01 11:57:00,636 14th St, Los Angeles,CA,90001 +142161,Bose SoundSport Headphones,1,99.99,2019-01-21 22:43:00,330 Lake St, Dallas,TX,75001 +142162,27in FHD Monitor,1,149.99,2019-01-06 10:04:00,671 Highland St, San Francisco,CA,94016 +142163,Apple Airpods Headphones,1,150.0,2019-01-04 21:54:00,703 Walnut St, Dallas,TX,75001 +142164,USB-C Charging Cable,1,11.95,2019-01-22 18:21:00,509 11th St, Dallas,TX,75001 +142165,AA Batteries (4-pack),2,3.84,2019-01-17 23:49:00,749 Jackson St, Seattle,WA,98101 +142166,USB-C Charging Cable,1,11.95,2019-01-24 15:27:00,616 Johnson St, Boston,MA,02215 +142167,USB-C Charging Cable,1,11.95,2019-01-24 20:06:00,471 14th St, New York City,NY,10001 +142168,Lightning Charging Cable,1,14.95,2019-01-21 11:49:00,745 Jefferson St, Atlanta,GA,30301 +142169,AAA Batteries (4-pack),4,2.99,2019-01-15 21:39:00,398 Lakeview St, New York City,NY,10001 +142170,Wired Headphones,1,11.99,2019-01-20 08:31:00,663 12th St, Atlanta,GA,30301 +142171,Wired Headphones,1,11.99,2019-01-16 10:11:00,610 Sunset St, New York City,NY,10001 +142172,Apple Airpods Headphones,1,150.0,2019-01-24 23:25:00,491 Johnson St, Atlanta,GA,30301 +142173,iPhone,1,700.0,2019-01-10 13:29:00,674 Lake St, Los Angeles,CA,90001 +142174,Lightning Charging Cable,1,14.95,2019-01-10 23:17:00,338 Lake St, Boston,MA,02215 +142175,AAA Batteries (4-pack),1,2.99,2019-01-12 19:45:00,221 Lake St, San Francisco,CA,94016 +142176,Apple Airpods Headphones,1,150.0,2019-01-12 13:08:00,782 Highland St, San Francisco,CA,94016 +142177,Macbook Pro Laptop,1,1700.0,2019-01-13 14:39:00,754 1st St, Portland,ME,04101 +142178,AAA Batteries (4-pack),1,2.99,2019-01-01 12:59:00,877 10th St, Seattle,WA,98101 +142179,ThinkPad Laptop,1,999.99,2019-01-19 01:41:00,585 Meadow St, San Francisco,CA,94016 +142180,USB-C Charging Cable,1,11.95,2019-01-30 19:11:00,455 Sunset St, Austin,TX,73301 +142181,27in FHD Monitor,1,149.99,2019-01-17 18:30:00,419 8th St, Boston,MA,02215 +142182,Wired Headphones,1,11.99,2019-01-05 15:56:00,92 Highland St, New York City,NY,10001 +142183,34in Ultrawide Monitor,1,379.99,2019-01-09 12:13:00,406 Johnson St, Boston,MA,02215 +142184,AAA Batteries (4-pack),2,2.99,2019-01-23 13:15:00,342 13th St, Los Angeles,CA,90001 +142185,Bose SoundSport Headphones,1,99.99,2019-01-16 14:02:00,208 West St, Boston,MA,02215 +142186,34in Ultrawide Monitor,1,379.99,2019-01-30 18:42:00,505 Wilson St, Los Angeles,CA,90001 +142187,20in Monitor,1,109.99,2019-01-30 20:39:00,903 Maple St, Portland,OR,97035 +142188,USB-C Charging Cable,1,11.95,2019-01-25 13:49:00,347 11th St, Los Angeles,CA,90001 +142189,USB-C Charging Cable,1,11.95,2019-01-08 11:46:00,215 Jefferson St, Austin,TX,73301 +142190,34in Ultrawide Monitor,1,379.99,2019-01-13 14:58:00,356 Walnut St, San Francisco,CA,94016 +142191,20in Monitor,1,109.99,2019-01-08 15:41:00,246 Chestnut St, San Francisco,CA,94016 +142192,Google Phone,1,600.0,2019-01-28 12:39:00,68 11th St, Boston,MA,02215 +142192,USB-C Charging Cable,1,11.95,2019-01-28 12:39:00,68 11th St, Boston,MA,02215 +142193,27in FHD Monitor,1,149.99,2019-01-01 09:08:00,912 Cherry St, Boston,MA,02215 +142194,ThinkPad Laptop,1,999.99,2019-01-26 17:21:00,2 River St, Los Angeles,CA,90001 +142195,Apple Airpods Headphones,1,150.0,2019-01-02 12:38:00,468 Jefferson St, Boston,MA,02215 +142196,AA Batteries (4-pack),1,3.84,2019-01-27 17:45:00,692 8th St, Portland,ME,04101 +142197,AA Batteries (4-pack),1,3.84,2019-01-16 14:59:00,642 Center St, San Francisco,CA,94016 +142198,AA Batteries (4-pack),2,3.84,2019-01-24 11:54:00,833 Walnut St, San Francisco,CA,94016 +142199,20in Monitor,1,109.99,2019-01-05 10:33:00,568 Willow St, Dallas,TX,75001 +142200,Flatscreen TV,1,300.0,2019-01-14 07:58:00,381 Elm St, Seattle,WA,98101 +142201,AAA Batteries (4-pack),1,2.99,2019-01-18 10:22:00,996 Dogwood St, San Francisco,CA,94016 +142202,27in FHD Monitor,1,149.99,2019-01-23 05:53:00,581 Lakeview St, Dallas,TX,75001 +142203,Bose SoundSport Headphones,1,99.99,2019-01-06 08:31:00,272 Johnson St, Seattle,WA,98101 +142204,Bose SoundSport Headphones,1,99.99,2019-01-06 11:29:00,585 2nd St, Los Angeles,CA,90001 +142205,Bose SoundSport Headphones,1,99.99,2019-01-14 13:13:00,263 West St, New York City,NY,10001 +142206,Macbook Pro Laptop,1,1700.0,2019-01-02 09:41:00,673 13th St, San Francisco,CA,94016 +142207,Bose SoundSport Headphones,1,99.99,2019-01-09 20:59:00,358 Wilson St, Seattle,WA,98101 +142208,Bose SoundSport Headphones,1,99.99,2019-01-13 08:49:00,218 West St, New York City,NY,10001 +142209,34in Ultrawide Monitor,1,379.99,2019-01-09 14:23:00,536 River St, Austin,TX,73301 +142210,AA Batteries (4-pack),1,3.84,2019-01-16 19:33:00,322 13th St, San Francisco,CA,94016 +142211,Wired Headphones,1,11.99,2019-01-03 16:01:00,663 River St, New York City,NY,10001 +142212,AA Batteries (4-pack),3,3.84,2019-01-18 15:22:00,172 10th St, Los Angeles,CA,90001 +142213,Apple Airpods Headphones,1,150.0,2019-01-29 23:04:00,641 13th St, New York City,NY,10001 +142214,AAA Batteries (4-pack),3,2.99,2019-01-23 07:54:00,945 4th St, Los Angeles,CA,90001 +142215,Flatscreen TV,1,300.0,2019-01-13 06:09:00,555 Jefferson St, Dallas,TX,75001 +142216,AAA Batteries (4-pack),1,2.99,2019-01-14 02:44:00,63 2nd St, San Francisco,CA,94016 +142217,Bose SoundSport Headphones,1,99.99,2019-01-19 14:18:00,520 Madison St, Los Angeles,CA,90001 +142218,Wired Headphones,1,11.99,2019-01-30 20:01:00,246 Sunset St, San Francisco,CA,94016 +142219,27in FHD Monitor,1,149.99,2019-01-04 20:31:00,882 Pine St, Los Angeles,CA,90001 +142220,Flatscreen TV,1,300.0,2019-01-03 16:03:00,516 Lake St, Dallas,TX,75001 +142221,Flatscreen TV,1,300.0,2019-01-12 02:33:00,503 Adams St, Portland,OR,97035 +142222,AA Batteries (4-pack),1,3.84,2019-01-19 19:18:00,23 5th St, Los Angeles,CA,90001 +142223,Wired Headphones,1,11.99,2019-01-28 16:49:00,882 11th St, San Francisco,CA,94016 +142224,USB-C Charging Cable,1,11.95,2019-01-11 20:56:00,740 Washington St, Los Angeles,CA,90001 +142225,Lightning Charging Cable,1,14.95,2019-01-19 09:47:00,869 Madison St, New York City,NY,10001 +142226,AAA Batteries (4-pack),3,2.99,2019-01-22 21:55:00,103 Willow St, Austin,TX,73301 +142227,Wired Headphones,1,11.99,2019-01-31 20:22:00,954 North St, Austin,TX,73301 +142228,Macbook Pro Laptop,1,1700.0,2019-01-22 11:37:00,639 Lakeview St, San Francisco,CA,94016 +142229,27in FHD Monitor,1,149.99,2019-01-04 10:29:00,45 Lincoln St, Seattle,WA,98101 +142230,Google Phone,1,600.0,2019-01-29 12:05:00,867 Cedar St, San Francisco,CA,94016 +142230,USB-C Charging Cable,1,11.95,2019-01-29 12:05:00,867 Cedar St, San Francisco,CA,94016 +142231,Wired Headphones,2,11.99,2019-01-18 05:53:00,142 Sunset St, Portland,OR,97035 +142232,Wired Headphones,2,11.99,2019-01-04 23:52:00,776 12th St, Los Angeles,CA,90001 +142233,Lightning Charging Cable,1,14.95,2019-01-14 13:41:00,389 Highland St, Los Angeles,CA,90001 +142234,Lightning Charging Cable,1,14.95,2019-01-13 10:37:00,124 Church St, Los Angeles,CA,90001 +142235,AA Batteries (4-pack),1,3.84,2019-01-15 21:15:00,417 Washington St, Los Angeles,CA,90001 +142236,AAA Batteries (4-pack),1,2.99,2019-01-14 10:48:00,61 12th St, Los Angeles,CA,90001 +142237,AAA Batteries (4-pack),1,2.99,2019-01-08 08:42:00,419 10th St, Los Angeles,CA,90001 +142238,AA Batteries (4-pack),2,3.84,2019-01-21 19:23:00,82 Johnson St, Los Angeles,CA,90001 +142239,AA Batteries (4-pack),2,3.84,2019-01-29 20:42:00,344 12th St, Boston,MA,02215 +142240,34in Ultrawide Monitor,1,379.99,2019-01-04 19:20:00,966 Jefferson St, Dallas,TX,75001 +142241,USB-C Charging Cable,1,11.95,2019-01-26 19:14:00,303 Pine St, Dallas,TX,75001 +142242,USB-C Charging Cable,1,11.95,2019-01-15 18:26:00,503 Forest St, Portland,OR,97035 +142243,USB-C Charging Cable,1,11.95,2019-01-04 09:47:00,567 Church St, San Francisco,CA,94016 +142244,AA Batteries (4-pack),1,3.84,2019-01-13 10:39:00,944 Pine St, Austin,TX,73301 +142245,Macbook Pro Laptop,1,1700.0,2019-01-15 18:07:00,245 Sunset St, San Francisco,CA,94016 +142246,Lightning Charging Cable,1,14.95,2019-01-29 10:10:00,265 River St, Portland,OR,97035 +142247,Bose SoundSport Headphones,1,99.99,2019-01-15 11:15:00,229 14th St, Atlanta,GA,30301 +142248,Wired Headphones,1,11.99,2019-01-02 09:32:00,676 Forest St, New York City,NY,10001 +142249,Lightning Charging Cable,1,14.95,2019-01-20 00:07:00,819 6th St, Boston,MA,02215 +142250,Lightning Charging Cable,1,14.95,2019-01-24 09:32:00,996 North St, Austin,TX,73301 +142251,ThinkPad Laptop,1,999.99,2019-01-11 18:42:00,600 Johnson St, San Francisco,CA,94016 +142252,USB-C Charging Cable,1,11.95,2019-01-16 06:49:00,16 9th St, New York City,NY,10001 +142253,27in FHD Monitor,1,149.99,2019-01-07 19:07:00,295 Jefferson St, Los Angeles,CA,90001 +142254,Wired Headphones,1,11.99,2019-01-05 14:35:00,944 Dogwood St, Seattle,WA,98101 +142255,Flatscreen TV,1,300.0,2019-01-29 19:57:00,568 Walnut St, San Francisco,CA,94016 +142256,AAA Batteries (4-pack),1,2.99,2019-01-25 13:37:00,226 Jefferson St, San Francisco,CA,94016 +142257,iPhone,1,700.0,2019-01-01 12:16:00,774 2nd St, Atlanta,GA,30301 +142258,Lightning Charging Cable,1,14.95,2019-01-05 23:40:00,251 Lakeview St, Atlanta,GA,30301 +142259,LG Dryer,1,600.0,2019-01-20 08:03:00,413 Sunset St, New York City,NY,10001 +142260,AAA Batteries (4-pack),2,2.99,2019-01-19 19:15:00,653 Willow St, San Francisco,CA,94016 +142261,iPhone,1,700.0,2019-01-23 08:47:00,5 5th St, Dallas,TX,75001 +142261,Wired Headphones,1,11.99,2019-01-23 08:47:00,5 5th St, Dallas,TX,75001 +142262,USB-C Charging Cable,1,11.95,2019-01-09 18:56:00,892 14th St, New York City,NY,10001 +142263,Wired Headphones,1,11.99,2019-01-06 23:07:00,777 5th St, Seattle,WA,98101 +142264,LG Dryer,1,600.0,2019-01-01 10:27:00,338 Main St, Boston,MA,02215 +142265,Wired Headphones,2,11.99,2019-01-22 22:17:00,913 Adams St, Los Angeles,CA,90001 +142266,AA Batteries (4-pack),4,3.84,2019-01-16 09:04:00,677 West St, Atlanta,GA,30301 +142267,AA Batteries (4-pack),1,3.84,2019-01-02 22:43:00,96 Johnson St, Boston,MA,02215 +142268,AA Batteries (4-pack),1,3.84,2019-01-14 12:13:00,201 Lake St, Los Angeles,CA,90001 +142269,Wired Headphones,1,11.99,2019-01-15 22:46:00,121 Cherry St, Portland,OR,97035 +142270,34in Ultrawide Monitor,1,379.99,2019-01-08 12:32:00,36 Madison St, Dallas,TX,75001 +142271,Google Phone,1,600.0,2019-01-05 12:40:00,685 Lincoln St, Seattle,WA,98101 +142272,Google Phone,1,600.0,2019-01-20 16:07:00,756 Jefferson St, San Francisco,CA,94016 +142273,34in Ultrawide Monitor,1,379.99,2019-01-20 12:08:00,636 Elm St, Los Angeles,CA,90001 +142274,Flatscreen TV,1,300.0,2019-01-30 10:39:00,944 8th St, Los Angeles,CA,90001 +142275,Lightning Charging Cable,2,14.95,2019-01-19 13:25:00,964 Spruce St, Los Angeles,CA,90001 +142276,Bose SoundSport Headphones,1,99.99,2019-01-10 16:46:00,869 10th St, Seattle,WA,98101 +142277,AAA Batteries (4-pack),1,2.99,2019-01-27 17:05:00,542 12th St, San Francisco,CA,94016 +142278,USB-C Charging Cable,1,11.95,2019-01-12 15:43:00,655 Elm St, Los Angeles,CA,90001 +142279,AAA Batteries (4-pack),1,2.99,2019-01-28 04:44:00,605 12th St, Atlanta,GA,30301 +142280,Apple Airpods Headphones,1,150.0,2019-01-28 18:22:00,495 Cherry St, Boston,MA,02215 +142281,Google Phone,1,600.0,2019-01-06 19:37:00,67 Madison St, Los Angeles,CA,90001 +142282,AA Batteries (4-pack),1,3.84,2019-01-06 10:50:00,828 Chestnut St, Austin,TX,73301 +142283,Lightning Charging Cable,1,14.95,2019-01-06 18:54:00,528 Lakeview St, Los Angeles,CA,90001 +142284,AA Batteries (4-pack),1,3.84,2019-01-07 13:52:00,195 River St, New York City,NY,10001 +142285,Apple Airpods Headphones,1,150.0,2019-01-26 13:42:00,194 1st St, New York City,NY,10001 +142286,ThinkPad Laptop,1,999.99,2019-01-05 16:01:00,512 13th St, San Francisco,CA,94016 +142287,Google Phone,1,600.0,2019-01-24 19:41:00,898 Spruce St, Dallas,TX,75001 +142287,USB-C Charging Cable,1,11.95,2019-01-24 19:41:00,898 Spruce St, Dallas,TX,75001 +142287,Wired Headphones,1,11.99,2019-01-24 19:41:00,898 Spruce St, Dallas,TX,75001 +142288,AAA Batteries (4-pack),1,2.99,2019-01-14 14:50:00,441 Main St, Los Angeles,CA,90001 +142289,27in FHD Monitor,1,149.99,2019-01-31 19:21:00,84 5th St, San Francisco,CA,94016 +142290,Apple Airpods Headphones,1,150.0,2019-01-01 20:54:00,392 Sunset St, Atlanta,GA,30301 +142291,27in 4K Gaming Monitor,1,389.99,2019-01-03 12:21:00,148 6th St, Boston,MA,02215 +142292,AA Batteries (4-pack),2,3.84,2019-01-13 22:48:00,768 Dogwood St, New York City,NY,10001 +142293,Wired Headphones,1,11.99,2019-01-27 14:05:00,108 Hickory St, San Francisco,CA,94016 +142294,34in Ultrawide Monitor,1,379.99,2019-01-01 12:17:00,116 Maple St, Seattle,WA,98101 +142295,27in 4K Gaming Monitor,1,389.99,2019-01-28 18:29:00,513 Cedar St, San Francisco,CA,94016 +142296,Apple Airpods Headphones,1,150.0,2019-01-27 18:18:00,915 River St, Atlanta,GA,30301 +142297,USB-C Charging Cable,1,11.95,2019-01-25 12:58:00,539 Willow St, Los Angeles,CA,90001 +142298,Lightning Charging Cable,1,14.95,2019-01-08 18:42:00,913 1st St, Boston,MA,02215 +142299,iPhone,1,700.0,2019-01-11 12:21:00,251 Ridge St, Austin,TX,73301 +142299,Wired Headphones,1,11.99,2019-01-11 12:21:00,251 Ridge St, Austin,TX,73301 +142300,USB-C Charging Cable,1,11.95,2019-01-18 22:24:00,521 River St, Atlanta,GA,30301 +142301,Bose SoundSport Headphones,1,99.99,2019-01-23 22:19:00,972 Spruce St, Los Angeles,CA,90001 +142302,Apple Airpods Headphones,1,150.0,2019-01-06 12:54:00,651 8th St, New York City,NY,10001 +142303,USB-C Charging Cable,1,11.95,2019-01-01 16:23:00,893 Main St, Portland,OR,97035 +142304,Lightning Charging Cable,1,14.95,2019-01-30 17:10:00,852 Jefferson St, Seattle,WA,98101 +142305,AAA Batteries (4-pack),2,2.99,2019-01-23 19:39:00,423 Sunset St, San Francisco,CA,94016 +142306,Lightning Charging Cable,1,14.95,2019-01-27 17:38:00,182 Elm St, Seattle,WA,98101 +142307,27in 4K Gaming Monitor,1,389.99,2019-01-09 13:44:00,904 7th St, New York City,NY,10001 +142308,Google Phone,1,600.0,2019-01-13 14:41:00,767 Sunset St, San Francisco,CA,94016 +142308,Wired Headphones,1,11.99,2019-01-13 14:41:00,767 Sunset St, San Francisco,CA,94016 +142309,Wired Headphones,1,11.99,2019-01-31 10:36:00,586 Maple St, San Francisco,CA,94016 +142310,AAA Batteries (4-pack),2,2.99,2019-01-17 23:49:00,198 10th St, Atlanta,GA,30301 +142311,Lightning Charging Cable,1,14.95,2019-01-14 20:24:00,178 Maple St, San Francisco,CA,94016 +142312,AAA Batteries (4-pack),1,2.99,2019-01-18 09:11:00,797 Highland St, San Francisco,CA,94016 +142313,Wired Headphones,1,11.99,2019-01-15 12:31:00,965 Lincoln St, Dallas,TX,75001 +142314,Macbook Pro Laptop,1,1700.0,2019-01-20 12:29:00,345 8th St, Dallas,TX,75001 +142315,Wired Headphones,1,11.99,2019-01-21 19:04:00,869 Main St, San Francisco,CA,94016 +142316,Lightning Charging Cable,1,14.95,2019-01-17 08:55:00,122 Maple St, New York City,NY,10001 +142317,Flatscreen TV,1,300.0,2019-01-16 11:01:00,885 9th St, Boston,MA,02215 +142318,AA Batteries (4-pack),2,3.84,2019-01-19 11:13:00,617 8th St, Boston,MA,02215 +142319,Bose SoundSport Headphones,1,99.99,2019-01-31 10:40:00,844 Ridge St, San Francisco,CA,94016 +142319,Google Phone,1,600.0,2019-01-31 10:40:00,844 Ridge St, San Francisco,CA,94016 +142320,Google Phone,1,600.0,2019-01-11 22:44:00,531 West St, New York City,NY,10001 +142320,iPhone,1,700.0,2019-01-11 22:44:00,531 West St, New York City,NY,10001 +142321,USB-C Charging Cable,1,11.95,2019-01-01 23:08:00,621 13th St, Austin,TX,73301 +142322,27in 4K Gaming Monitor,1,389.99,2019-01-22 15:47:00,512 7th St, Seattle,WA,98101 +142323,Bose SoundSport Headphones,1,99.99,2019-01-15 10:13:00,952 Jackson St, San Francisco,CA,94016 +142324,AAA Batteries (4-pack),1,2.99,2019-01-19 18:11:00,846 11th St, Boston,MA,02215 +142325,27in FHD Monitor,1,149.99,2019-01-26 20:32:00,210 1st St, Seattle,WA,98101 +142326,AA Batteries (4-pack),3,3.84,2019-01-04 17:56:00,349 Meadow St, Portland,ME,04101 +142327,AA Batteries (4-pack),1,3.84,2019-01-03 16:48:00,997 Dogwood St, San Francisco,CA,94016 +142328,Lightning Charging Cable,1,14.95,2019-01-15 21:10:00,159 7th St, Atlanta,GA,30301 +142329,AAA Batteries (4-pack),1,2.99,2019-01-08 18:58:00,685 1st St, Los Angeles,CA,90001 +142330,USB-C Charging Cable,3,11.95,2019-01-17 06:12:00,189 Meadow St, San Francisco,CA,94016 +142331,USB-C Charging Cable,1,11.95,2019-01-13 18:13:00,523 11th St, Austin,TX,73301 +142332,Google Phone,1,600.0,2019-01-09 13:59:00,715 Center St, San Francisco,CA,94016 +142333,AAA Batteries (4-pack),1,2.99,2019-01-07 11:03:00,778 1st St, Dallas,TX,75001 +142334,USB-C Charging Cable,1,11.95,2019-01-27 19:46:00,612 12th St, Dallas,TX,75001 +142335,Lightning Charging Cable,1,14.95,2019-01-01 22:37:00,755 14th St, New York City,NY,10001 +142336,20in Monitor,1,109.99,2019-01-28 14:32:00,571 Hill St, Portland,OR,97035 +142337,AA Batteries (4-pack),1,3.84,2019-01-17 13:18:00,892 13th St, Portland,ME,04101 +142338,20in Monitor,1,109.99,2019-01-24 16:48:00,115 Sunset St, Portland,OR,97035 +142339,Wired Headphones,2,11.99,2019-01-10 17:12:00,115 7th St, Portland,OR,97035 +142340,Wired Headphones,1,11.99,2019-01-07 00:08:00,99 4th St, Boston,MA,02215 +142341,Bose SoundSport Headphones,1,99.99,2019-01-19 05:19:00,346 7th St, San Francisco,CA,94016 +142342,27in 4K Gaming Monitor,1,389.99,2019-01-12 10:44:00,368 Cherry St, Los Angeles,CA,90001 +142343,AA Batteries (4-pack),1,3.84,2019-01-16 21:05:00,306 Hickory St, San Francisco,CA,94016 +142344,27in 4K Gaming Monitor,1,389.99,2019-01-02 11:01:00,336 2nd St, Los Angeles,CA,90001 +142345,AAA Batteries (4-pack),2,2.99,2019-01-01 18:11:00,983 North St, Los Angeles,CA,90001 +142346,Wired Headphones,1,11.99,2019-01-26 20:17:00,668 River St, San Francisco,CA,94016 +142347,Google Phone,1,600.0,2019-01-10 20:06:00,518 Lake St, San Francisco,CA,94016 +142348,Bose SoundSport Headphones,1,99.99,2019-01-27 18:15:00,597 9th St, Atlanta,GA,30301 +142349,AA Batteries (4-pack),1,3.84,2019-01-02 16:18:00,534 Dogwood St, San Francisco,CA,94016 +142350,iPhone,1,700.0,2019-01-01 14:33:00,956 Walnut St, Seattle,WA,98101 +142350,Wired Headphones,1,11.99,2019-01-01 14:33:00,956 Walnut St, Seattle,WA,98101 +142351,Bose SoundSport Headphones,1,99.99,2019-01-03 22:16:00,691 11th St, Boston,MA,02215 +142352,Wired Headphones,1,11.99,2019-01-19 14:52:00,408 Spruce St, San Francisco,CA,94016 +142353,iPhone,1,700.0,2019-01-31 20:29:00,317 Johnson St, Los Angeles,CA,90001 +142354,Macbook Pro Laptop,1,1700.0,2019-01-27 11:09:00,3 Chestnut St, San Francisco,CA,94016 +142355,iPhone,1,700.0,2019-01-15 19:07:00,478 11th St, Austin,TX,73301 +142356,Macbook Pro Laptop,1,1700.0,2019-01-23 12:54:00,763 Hill St, Dallas,TX,75001 +142357,iPhone,1,700.0,2019-01-28 10:54:00,495 Walnut St, Los Angeles,CA,90001 +142358,Apple Airpods Headphones,1,150.0,2019-01-14 09:10:00,14 Hill St, San Francisco,CA,94016 +142359,Wired Headphones,1,11.99,2019-01-31 12:47:00,786 Lincoln St, Atlanta,GA,30301 +142360,USB-C Charging Cable,1,11.95,2019-01-07 00:31:00,572 2nd St, Seattle,WA,98101 +142361,iPhone,1,700.0,2019-01-26 18:14:00,460 Sunset St, New York City,NY,10001 +142362,AAA Batteries (4-pack),1,2.99,2019-01-31 20:08:00,6 Adams St, Dallas,TX,75001 +142363,Apple Airpods Headphones,1,150.0,2019-01-28 10:06:00,167 Ridge St, Atlanta,GA,30301 +142364,iPhone,1,700.0,2019-01-10 15:33:00,856 11th St, Portland,OR,97035 +142365,Bose SoundSport Headphones,1,99.99,2019-01-15 11:36:00,596 13th St, San Francisco,CA,94016 +142366,20in Monitor,1,109.99,2019-01-13 16:07:00,92 West St, San Francisco,CA,94016 +142367,Google Phone,1,600.0,2019-01-05 21:40:00,639 Lake St, Dallas,TX,75001 +142368,AAA Batteries (4-pack),1,2.99,2019-01-12 19:51:00,94 Center St, Austin,TX,73301 +142369,27in FHD Monitor,1,149.99,2019-01-10 19:22:00,913 14th St, Los Angeles,CA,90001 +142370,Wired Headphones,1,11.99,2019-01-28 14:06:00,385 7th St, San Francisco,CA,94016 +142371,USB-C Charging Cable,1,11.95,2019-01-31 17:01:00,39 Adams St, San Francisco,CA,94016 +142372,AAA Batteries (4-pack),1,2.99,2019-01-03 08:01:00,85 Maple St, San Francisco,CA,94016 +142373,Google Phone,1,600.0,2019-01-22 17:45:00,549 Main St, Los Angeles,CA,90001 +142374,AAA Batteries (4-pack),1,2.99,2019-01-08 20:21:00,606 Johnson St, Dallas,TX,75001 +142375,Flatscreen TV,1,300.0,2019-01-24 11:27:00,138 Madison St, Los Angeles,CA,90001 +142376,27in 4K Gaming Monitor,1,389.99,2019-01-03 09:25:00,30 Jackson St, Portland,OR,97035 +142377,USB-C Charging Cable,1,11.95,2019-01-04 15:53:00,997 Wilson St, Los Angeles,CA,90001 +142378,Lightning Charging Cable,1,14.95,2019-01-10 15:34:00,699 Maple St, San Francisco,CA,94016 +142379,Google Phone,1,600.0,2019-01-30 21:02:00,231 Hill St, Seattle,WA,98101 +142379,USB-C Charging Cable,1,11.95,2019-01-30 21:02:00,231 Hill St, Seattle,WA,98101 +142380,AA Batteries (4-pack),2,3.84,2019-01-21 23:22:00,832 Chestnut St, Boston,MA,02215 +142381,AAA Batteries (4-pack),2,2.99,2019-01-14 22:33:00,983 12th St, Los Angeles,CA,90001 +142382,27in FHD Monitor,1,149.99,2019-01-07 17:40:00,856 2nd St, Dallas,TX,75001 +142383,Bose SoundSport Headphones,1,99.99,2019-01-18 11:06:00,570 14th St, New York City,NY,10001 +142384,AAA Batteries (4-pack),1,2.99,2019-01-30 19:22:00,733 Pine St, Dallas,TX,75001 +142385,Lightning Charging Cable,1,14.95,2019-01-17 20:14:00,887 5th St, San Francisco,CA,94016 +142386,AAA Batteries (4-pack),1,2.99,2019-01-18 07:48:00,499 Maple St, Los Angeles,CA,90001 +142387,34in Ultrawide Monitor,1,379.99,2019-01-25 23:50:00,239 Lakeview St, Boston,MA,02215 +142388,27in FHD Monitor,1,149.99,2019-01-26 23:41:00,753 South St, San Francisco,CA,94016 +142389,iPhone,1,700.0,2019-01-16 20:42:00,956 Hill St, New York City,NY,10001 +142389,Lightning Charging Cable,1,14.95,2019-01-16 20:42:00,956 Hill St, New York City,NY,10001 +142390,USB-C Charging Cable,1,11.95,2019-01-19 15:58:00,634 14th St, Los Angeles,CA,90001 +142391,AA Batteries (4-pack),1,3.84,2019-01-17 02:34:00,759 North St, San Francisco,CA,94016 +142392,27in 4K Gaming Monitor,1,389.99,2019-01-14 16:55:00,345 Hickory St, Atlanta,GA,30301 +142393,Wired Headphones,1,11.99,2019-01-21 16:31:00,47 Willow St, San Francisco,CA,94016 +142394,AAA Batteries (4-pack),1,2.99,2019-01-14 12:52:00,453 13th St, San Francisco,CA,94016 +142395,Wired Headphones,1,11.99,2019-01-27 09:27:00,2 13th St, Atlanta,GA,30301 +142396,Vareebadd Phone,1,400.0,2019-01-09 09:56:00,343 Jackson St, San Francisco,CA,94016 +142396,USB-C Charging Cable,1,11.95,2019-01-09 09:56:00,343 Jackson St, San Francisco,CA,94016 +142397,AA Batteries (4-pack),1,3.84,2019-01-07 09:43:00,902 9th St, Portland,OR,97035 +142398,Wired Headphones,1,11.99,2019-01-18 21:31:00,181 Maple St, Boston,MA,02215 +142399,Bose SoundSport Headphones,1,99.99,2019-01-11 06:38:00,17 South St, Seattle,WA,98101 +142400,Vareebadd Phone,1,400.0,2019-01-26 07:00:00,61 2nd St, Seattle,WA,98101 +142401,USB-C Charging Cable,1,11.95,2019-01-25 18:59:00,435 Church St, San Francisco,CA,94016 +142402,AAA Batteries (4-pack),1,2.99,2019-01-29 15:08:00,948 Forest St, San Francisco,CA,94016 +142403,AA Batteries (4-pack),1,3.84,2019-01-03 17:57:00,552 14th St, San Francisco,CA,94016 +142404,Lightning Charging Cable,1,14.95,2019-01-03 23:01:00,973 Forest St, San Francisco,CA,94016 +142405,AA Batteries (4-pack),1,3.84,2019-01-09 20:02:00,466 West St, Boston,MA,02215 +142406,Google Phone,1,600.0,2019-01-30 15:08:00,407 Willow St, Los Angeles,CA,90001 +142407,USB-C Charging Cable,1,11.95,2019-01-14 14:41:00,323 7th St, Los Angeles,CA,90001 +142408,34in Ultrawide Monitor,1,379.99,2019-01-17 14:21:00,34 Park St, Seattle,WA,98101 +142409,Lightning Charging Cable,1,14.95,2019-01-29 14:48:00,1 4th St, Los Angeles,CA,90001 +142410,USB-C Charging Cable,1,11.95,2019-01-19 19:12:00,718 6th St, San Francisco,CA,94016 +142411,Google Phone,1,600.0,2019-01-15 12:45:00,495 2nd St, Los Angeles,CA,90001 +142412,20in Monitor,1,109.99,2019-01-25 09:40:00,503 Meadow St, Portland,OR,97035 +142413,27in 4K Gaming Monitor,1,389.99,2019-01-30 23:01:00,451 West St, Dallas,TX,75001 +142414,AA Batteries (4-pack),2,3.84,2019-01-21 13:10:00,835 5th St, Portland,OR,97035 +142415,Lightning Charging Cable,2,14.95,2019-01-02 12:43:00,395 Dogwood St, New York City,NY,10001 +142416,Apple Airpods Headphones,1,150.0,2019-01-09 06:10:00,427 Hill St, Austin,TX,73301 +142417,AA Batteries (4-pack),1,3.84,2019-01-05 18:55:00,907 River St, Atlanta,GA,30301 +142418,ThinkPad Laptop,1,999.99,2019-01-24 18:07:00,781 6th St, San Francisco,CA,94016 +142419,Google Phone,1,600.0,2019-01-17 10:20:00,947 2nd St, New York City,NY,10001 +142419,Wired Headphones,2,11.99,2019-01-17 10:20:00,947 2nd St, New York City,NY,10001 +142420,34in Ultrawide Monitor,1,379.99,2019-01-30 15:43:00,243 14th St, Los Angeles,CA,90001 +142421,iPhone,1,700.0,2019-01-06 14:23:00,242 5th St, San Francisco,CA,94016 +142422,AA Batteries (4-pack),2,3.84,2019-01-15 11:56:00,535 Church St, Dallas,TX,75001 +142423,USB-C Charging Cable,1,11.95,2019-01-29 19:17:00,497 Jackson St, San Francisco,CA,94016 +142424,Lightning Charging Cable,1,14.95,2019-01-16 08:28:00,12 10th St, Los Angeles,CA,90001 +142425,USB-C Charging Cable,1,11.95,2019-01-13 03:29:00,466 Forest St, New York City,NY,10001 +142426,AAA Batteries (4-pack),1,2.99,2019-01-09 11:22:00,710 Jefferson St, San Francisco,CA,94016 +142427,27in FHD Monitor,1,149.99,2019-01-14 22:33:00,542 South St, San Francisco,CA,94016 +142428,USB-C Charging Cable,1,11.95,2019-01-24 16:41:00,355 Main St, Austin,TX,73301 +142429,Apple Airpods Headphones,1,150.0,2019-01-10 16:37:00,199 11th St, Los Angeles,CA,90001 +142430,Macbook Pro Laptop,1,1700.0,2019-01-11 16:52:00,345 Hill St, Boston,MA,02215 +142431,Vareebadd Phone,1,400.0,2019-01-10 06:30:00,488 Park St, Atlanta,GA,30301 +142432,34in Ultrawide Monitor,1,379.99,2019-01-05 23:33:00,777 12th St, Portland,ME,04101 +142433,Wired Headphones,1,11.99,2019-01-12 18:41:00,287 Johnson St, Austin,TX,73301 +142434,Wired Headphones,1,11.99,2019-01-11 16:06:00,124 South St, Seattle,WA,98101 +142435,Macbook Pro Laptop,1,1700.0,2019-01-05 20:59:00,738 Lakeview St, Boston,MA,02215 +142436,AA Batteries (4-pack),1,3.84,2019-01-09 13:51:00,305 Lake St, Seattle,WA,98101 +142437,20in Monitor,1,109.99,2019-01-21 20:39:00,699 9th St, Portland,OR,97035 +142438,Lightning Charging Cable,1,14.95,2019-01-27 20:33:00,67 Cherry St, New York City,NY,10001 +142439,Flatscreen TV,1,300.0,2019-01-01 09:58:00,635 Adams St, New York City,NY,10001 +142440,iPhone,1,700.0,2019-01-20 23:55:00,143 Meadow St, Los Angeles,CA,90001 +142441,AAA Batteries (4-pack),1,2.99,2019-01-17 19:56:00,409 Washington St, Boston,MA,02215 +142442,34in Ultrawide Monitor,1,379.99,2019-01-14 14:40:00,307 10th St, New York City,NY,10001 +142443,Bose SoundSport Headphones,1,99.99,2019-01-31 12:24:00,726 Johnson St, San Francisco,CA,94016 +142444,Wired Headphones,1,11.99,2019-01-07 12:19:00,877 West St, San Francisco,CA,94016 +142445,34in Ultrawide Monitor,1,379.99,2019-01-09 06:41:00,753 Lincoln St, Atlanta,GA,30301 +142446,Apple Airpods Headphones,1,150.0,2019-01-24 20:00:00,174 Willow St, Atlanta,GA,30301 +142447,Wired Headphones,1,11.99,2019-01-26 13:42:00,518 Main St, Dallas,TX,75001 +142448,27in FHD Monitor,1,149.99,2019-01-08 13:30:00,621 West St, Austin,TX,73301 +142449,iPhone,1,700.0,2019-01-26 14:27:00,579 River St, Seattle,WA,98101 +142450,34in Ultrawide Monitor,1,379.99,2019-01-12 18:55:00,930 Wilson St, Dallas,TX,75001 +142451,AAA Batteries (4-pack),1,2.99,2019-01-01 06:41:00,232 12th St, Boston,MA,02215 +142452,AAA Batteries (4-pack),1,2.99,2019-01-28 14:57:00,463 Lakeview St, Portland,OR,97035 +142453,Vareebadd Phone,1,400.0,2019-01-14 07:41:00,869 Spruce St, Seattle,WA,98101 +142453,Bose SoundSport Headphones,1,99.99,2019-01-14 07:41:00,869 Spruce St, Seattle,WA,98101 +142454,AA Batteries (4-pack),1,3.84,2019-01-23 12:17:00,116 Center St, Boston,MA,02215 +142455,USB-C Charging Cable,1,11.95,2019-01-05 17:22:00,377 Cherry St, San Francisco,CA,94016 +142456,Flatscreen TV,1,300.0,2019-01-28 21:00:00,876 Maple St, San Francisco,CA,94016 +142457,Lightning Charging Cable,1,14.95,2019-01-10 12:03:00,902 Forest St, New York City,NY,10001 +142458,Apple Airpods Headphones,1,150.0,2019-01-16 14:02:00,14 Park St, San Francisco,CA,94016 +142459,USB-C Charging Cable,1,11.95,2019-01-07 06:56:00,638 Forest St, Austin,TX,73301 +142460,27in 4K Gaming Monitor,1,389.99,2019-01-06 21:03:00,861 Adams St, Boston,MA,02215 +142461,Bose SoundSport Headphones,1,99.99,2019-01-18 13:29:00,514 5th St, Los Angeles,CA,90001 +142462,Wired Headphones,1,11.99,2019-01-29 06:01:00,294 11th St, Austin,TX,73301 +142463,Lightning Charging Cable,1,14.95,2019-01-06 02:23:00,10 Spruce St, Boston,MA,02215 +142464,Macbook Pro Laptop,1,1700.0,2019-01-11 20:59:00,896 Madison St, New York City,NY,10001 +142465,Lightning Charging Cable,1,14.95,2019-01-28 09:32:00,358 Maple St, Los Angeles,CA,90001 +142466,Lightning Charging Cable,1,14.95,2019-01-08 18:09:00,279 4th St, Boston,MA,02215 +142467,AAA Batteries (4-pack),3,2.99,2019-01-30 07:12:00,214 Park St, Atlanta,GA,30301 +142468,Apple Airpods Headphones,1,150.0,2019-01-25 07:35:00,209 South St, Seattle,WA,98101 +142469,Wired Headphones,1,11.99,2019-01-03 09:52:00,428 Wilson St, Boston,MA,02215 +142470,34in Ultrawide Monitor,1,379.99,2019-01-15 18:55:00,835 12th St, Dallas,TX,75001 +142471,Bose SoundSport Headphones,1,99.99,2019-01-19 19:07:00,938 8th St, Dallas,TX,75001 +142472,AAA Batteries (4-pack),2,2.99,2019-01-19 10:03:00,410 6th St, Boston,MA,02215 +142473,AA Batteries (4-pack),3,3.84,2019-01-29 12:11:00,80 Highland St, Dallas,TX,75001 +142474,USB-C Charging Cable,1,11.95,2019-01-02 10:18:00,947 9th St, San Francisco,CA,94016 +142475,AA Batteries (4-pack),1,3.84,2019-01-11 14:39:00,533 Church St, Dallas,TX,75001 +142476,AA Batteries (4-pack),2,3.84,2019-01-31 14:10:00,694 Lake St, Dallas,TX,75001 +142477,AA Batteries (4-pack),1,3.84,2019-01-29 16:30:00,320 14th St, Seattle,WA,98101 +142478,Lightning Charging Cable,1,14.95,2019-01-06 19:11:00,392 Main St, New York City,NY,10001 +142479,ThinkPad Laptop,1,999.99,2019-01-21 23:06:00,192 2nd St, Los Angeles,CA,90001 +142480,AAA Batteries (4-pack),1,2.99,2019-01-14 10:54:00,708 Center St, Austin,TX,73301 +142481,27in 4K Gaming Monitor,1,389.99,2019-01-20 16:11:00,986 13th St, San Francisco,CA,94016 +142482,27in FHD Monitor,1,149.99,2019-01-29 12:35:00,451 Hill St, New York City,NY,10001 +142483,AA Batteries (4-pack),1,3.84,2019-01-05 18:54:00,826 South St, Boston,MA,02215 +142484,Wired Headphones,1,11.99,2019-01-31 23:29:00,604 2nd St, San Francisco,CA,94016 +142485,Bose SoundSport Headphones,1,99.99,2019-01-06 06:43:00,372 Ridge St, New York City,NY,10001 +142486,USB-C Charging Cable,1,11.95,2019-01-03 11:59:00,211 Adams St, Boston,MA,02215 +142487,Lightning Charging Cable,1,14.95,2019-01-04 13:24:00,999 North St, Los Angeles,CA,90001 +142488,ThinkPad Laptop,1,999.99,2019-01-27 18:07:00,62 7th St, Dallas,TX,75001 +142489,AA Batteries (4-pack),1,3.84,2019-01-22 16:53:00,333 Hickory St, San Francisco,CA,94016 +142490,Wired Headphones,1,11.99,2019-01-02 14:24:00,43 10th St, San Francisco,CA,94016 +142491,Lightning Charging Cable,1,14.95,2019-01-09 18:23:00,917 9th St, San Francisco,CA,94016 +142492,USB-C Charging Cable,1,11.95,2019-01-16 17:55:00,926 West St, San Francisco,CA,94016 +142493,Wired Headphones,1,11.99,2019-01-12 10:42:00,442 Willow St, San Francisco,CA,94016 +142494,Bose SoundSport Headphones,1,99.99,2019-01-16 09:35:00,721 Elm St, San Francisco,CA,94016 +142495,AAA Batteries (4-pack),1,2.99,2019-01-17 14:10:00,432 Main St, San Francisco,CA,94016 +142496,USB-C Charging Cable,1,11.95,2019-01-04 19:01:00,734 5th St, Portland,OR,97035 +142497,AA Batteries (4-pack),1,3.84,2019-01-16 14:22:00,94 14th St, Dallas,TX,75001 +142498,AA Batteries (4-pack),1,3.84,2019-01-15 12:45:00,623 7th St, Seattle,WA,98101 +142499,Lightning Charging Cable,1,14.95,2019-01-29 10:21:00,707 Madison St, San Francisco,CA,94016 +142500,AAA Batteries (4-pack),1,2.99,2019-01-11 18:03:00,305 Sunset St, Dallas,TX,75001 +142501,AA Batteries (4-pack),1,3.84,2019-01-21 11:09:00,44 9th St, Los Angeles,CA,90001 +142502,USB-C Charging Cable,1,11.95,2019-01-28 11:14:00,844 Chestnut St, San Francisco,CA,94016 +142503,Apple Airpods Headphones,1,150.0,2019-01-22 15:25:00,910 10th St, Portland,OR,97035 +142504,Google Phone,1,600.0,2019-01-02 15:45:00,570 Jackson St, Boston,MA,02215 +142504,USB-C Charging Cable,2,11.95,2019-01-02 15:45:00,570 Jackson St, Boston,MA,02215 +142505,USB-C Charging Cable,1,11.95,2019-01-01 14:41:00,196 Cedar St, New York City,NY,10001 +142506,Bose SoundSport Headphones,1,99.99,2019-01-23 17:44:00,2 Highland St, Boston,MA,02215 +142507,AAA Batteries (4-pack),1,2.99,2019-01-11 09:01:00,656 Hill St, New York City,NY,10001 +142508,Google Phone,1,600.0,2019-01-10 20:25:00,831 Madison St, Dallas,TX,75001 +142509,USB-C Charging Cable,1,11.95,2019-01-11 20:49:00,64 Park St, Seattle,WA,98101 +142510,27in 4K Gaming Monitor,1,389.99,2019-01-03 11:19:00,540 Hill St, Los Angeles,CA,90001 +142511,Bose SoundSport Headphones,1,99.99,2019-01-04 15:09:00,958 Willow St, Dallas,TX,75001 +142512,27in FHD Monitor,1,149.99,2019-01-15 10:35:00,760 Elm St, New York City,NY,10001 +142513,AAA Batteries (4-pack),1,2.99,2019-01-19 18:17:00,859 13th St, New York City,NY,10001 +142514,Macbook Pro Laptop,1,1700.0,2019-01-20 21:55:00,621 8th St, Portland,OR,97035 +142515,Flatscreen TV,1,300.0,2019-01-03 02:56:00,522 Elm St, San Francisco,CA,94016 +142516,34in Ultrawide Monitor,1,379.99,2019-01-03 17:34:00,640 Main St, Los Angeles,CA,90001 +142517,Lightning Charging Cable,1,14.95,2019-01-20 23:36:00,91 West St, Seattle,WA,98101 +142518,Apple Airpods Headphones,1,150.0,2019-01-10 20:18:00,968 7th St, Austin,TX,73301 +142519,AAA Batteries (4-pack),1,2.99,2019-01-13 23:01:00,429 14th St, Austin,TX,73301 +142520,AAA Batteries (4-pack),1,2.99,2019-01-22 17:39:00,444 13th St, San Francisco,CA,94016 +142521,20in Monitor,1,109.99,2019-01-25 11:58:00,153 Center St, Los Angeles,CA,90001 +142522,Wired Headphones,1,11.99,2019-01-10 20:06:00,722 13th St, San Francisco,CA,94016 +142523,USB-C Charging Cable,1,11.95,2019-01-18 12:22:00,765 Hickory St, Los Angeles,CA,90001 +142524,20in Monitor,1,109.99,2019-01-12 20:05:00,949 Main St, Boston,MA,02215 +142525,AAA Batteries (4-pack),2,2.99,2019-01-01 19:47:00,569 5th St, Seattle,WA,98101 +142526,Vareebadd Phone,1,400.0,2019-01-26 11:11:00,171 Lincoln St, Dallas,TX,75001 +142527,27in 4K Gaming Monitor,1,389.99,2019-01-28 17:07:00,967 Church St, Seattle,WA,98101 +142528,34in Ultrawide Monitor,1,379.99,2019-01-25 19:33:00,140 Johnson St, Los Angeles,CA,90001 +142529,27in 4K Gaming Monitor,1,389.99,2019-01-06 19:22:00,617 Wilson St, Dallas,TX,75001 +142530,ThinkPad Laptop,1,999.99,2019-01-25 15:54:00,745 Maple St, Boston,MA,02215 +142531,Wired Headphones,1,11.99,2019-01-05 16:13:00,970 9th St, Portland,OR,97035 +142532,Bose SoundSport Headphones,1,99.99,2019-01-19 18:38:00,807 Lakeview St, Seattle,WA,98101 +142533,AA Batteries (4-pack),1,3.84,2019-01-15 13:45:00,549 Washington St, Los Angeles,CA,90001 +142534,AA Batteries (4-pack),3,3.84,2019-01-01 10:11:00,306 Pine St, New York City,NY,10001 +142535,Wired Headphones,1,11.99,2019-01-02 23:01:00,251 Dogwood St, Austin,TX,73301 +142536,AA Batteries (4-pack),3,3.84,2019-01-22 09:58:00,181 13th St, Los Angeles,CA,90001 +142537,USB-C Charging Cable,1,11.95,2019-01-28 12:13:00,593 6th St, San Francisco,CA,94016 +142538,USB-C Charging Cable,2,11.95,2019-01-04 10:48:00,330 Cedar St, New York City,NY,10001 +142539,Apple Airpods Headphones,1,150.0,2019-01-19 14:35:00,766 Adams St, Dallas,TX,75001 +142540,AAA Batteries (4-pack),1,2.99,2019-01-21 16:19:00,758 Pine St, Los Angeles,CA,90001 +142541,20in Monitor,1,109.99,2019-01-29 06:25:00,681 Willow St, Los Angeles,CA,90001 +142542,Vareebadd Phone,1,400.0,2019-01-16 13:02:00,255 13th St, New York City,NY,10001 +142543,Wired Headphones,1,11.99,2019-01-03 17:20:00,841 13th St, Dallas,TX,75001 +142544,USB-C Charging Cable,1,11.95,2019-01-03 20:55:00,967 6th St, San Francisco,CA,94016 +142545,Bose SoundSport Headphones,1,99.99,2019-01-04 10:19:00,694 Washington St, San Francisco,CA,94016 +142546,27in FHD Monitor,1,149.99,2019-01-15 12:25:00,919 Cherry St, San Francisco,CA,94016 +142547,AA Batteries (4-pack),1,3.84,2019-01-20 18:21:00,640 Jackson St, Boston,MA,02215 +142548,AA Batteries (4-pack),2,3.84,2019-01-03 18:45:00,718 5th St, Dallas,TX,75001 +142549,Flatscreen TV,1,300.0,2019-01-11 10:19:00,267 West St, Austin,TX,73301 +142550,USB-C Charging Cable,1,11.95,2019-01-13 23:09:00,272 Ridge St, San Francisco,CA,94016 +142551,27in 4K Gaming Monitor,1,389.99,2019-01-14 16:40:00,312 Lincoln St, Austin,TX,73301 +142552,USB-C Charging Cable,1,11.95,2019-01-12 19:42:00,501 Lincoln St, Los Angeles,CA,90001 +142553,Wired Headphones,1,11.99,2019-01-28 17:26:00,613 Park St, Atlanta,GA,30301 +142554,iPhone,1,700.0,2019-01-27 15:27:00,42 Main St, Portland,OR,97035 +142555,USB-C Charging Cable,1,11.95,2019-01-11 14:00:00,894 Meadow St, Boston,MA,02215 +142556,Apple Airpods Headphones,1,150.0,2019-01-06 00:52:00,225 Willow St, Dallas,TX,75001 +142557,USB-C Charging Cable,1,11.95,2019-01-02 19:33:00,750 Madison St, Boston,MA,02215 +142558,Vareebadd Phone,1,400.0,2019-01-25 18:00:00,961 13th St, Portland,OR,97035 +142559,AAA Batteries (4-pack),3,2.99,2019-01-14 08:55:00,94 10th St, San Francisco,CA,94016 +142560,LG Washing Machine,1,600.0,2019-01-26 12:27:00,433 Main St, Dallas,TX,75001 +142561,34in Ultrawide Monitor,1,379.99,2019-01-16 18:16:00,679 Ridge St, New York City,NY,10001 +142562,Macbook Pro Laptop,1,1700.0,2019-01-29 21:45:00,448 11th St, New York City,NY,10001 +142563,Macbook Pro Laptop,1,1700.0,2019-01-25 19:32:00,360 Dogwood St, Seattle,WA,98101 +142564,AA Batteries (4-pack),1,3.84,2019-01-18 19:56:00,718 Cedar St, New York City,NY,10001 +142565,27in FHD Monitor,1,149.99,2019-01-02 22:09:00,496 Park St, Los Angeles,CA,90001 +142566,Wired Headphones,1,11.99,2019-01-18 07:47:00,67 2nd St, San Francisco,CA,94016 +142567,USB-C Charging Cable,1,11.95,2019-01-21 22:38:00,587 Highland St, San Francisco,CA,94016 +142568,27in FHD Monitor,1,149.99,2019-01-25 18:32:00,179 11th St, Boston,MA,02215 +142569,iPhone,1,700.0,2019-01-18 19:58:00,490 North St, Los Angeles,CA,90001 +142569,Lightning Charging Cable,1,14.95,2019-01-18 19:58:00,490 North St, Los Angeles,CA,90001 +142570,AAA Batteries (4-pack),2,2.99,2019-01-10 18:43:00,628 North St, Seattle,WA,98101 +142570,AA Batteries (4-pack),2,3.84,2019-01-10 18:43:00,628 North St, Seattle,WA,98101 +142571,Lightning Charging Cable,1,14.95,2019-01-29 12:12:00,620 10th St, New York City,NY,10001 +142572,AA Batteries (4-pack),1,3.84,2019-01-02 16:19:00,547 Spruce St, Atlanta,GA,30301 +142573,27in FHD Monitor,1,149.99,2019-01-03 12:48:00,206 Ridge St, Portland,OR,97035 +142574,USB-C Charging Cable,1,11.95,2019-01-01 18:17:00,983 Dogwood St, Los Angeles,CA,90001 +142575,Google Phone,1,600.0,2019-01-07 22:25:00,113 13th St, Dallas,TX,75001 +142576,AAA Batteries (4-pack),2,2.99,2019-01-04 23:46:00,676 Park St, San Francisco,CA,94016 +142577,USB-C Charging Cable,1,11.95,2019-01-26 12:26:00,398 4th St, New York City,NY,10001 +142578,Bose SoundSport Headphones,1,99.99,2019-01-11 02:42:00,745 6th St, San Francisco,CA,94016 +142579,Bose SoundSport Headphones,1,99.99,2019-01-06 12:53:00,373 Maple St, Portland,OR,97035 +142580,ThinkPad Laptop,1,999.99,2019-01-14 19:57:00,928 Willow St, New York City,NY,10001 +142581,USB-C Charging Cable,1,11.95,2019-01-07 15:23:00,779 14th St, Boston,MA,02215 +142582,Flatscreen TV,1,300.0,2019-01-10 15:55:00,287 Elm St, Atlanta,GA,30301 +142583,Lightning Charging Cable,2,14.95,2019-01-03 01:24:00,455 Wilson St, Dallas,TX,75001 +142584,20in Monitor,1,109.99,2019-01-02 23:16:00,775 River St, Boston,MA,02215 +142585,Lightning Charging Cable,1,14.95,2019-01-13 17:34:00,712 1st St, Dallas,TX,75001 +142586,Wired Headphones,1,11.99,2019-01-09 11:52:00,759 Johnson St, San Francisco,CA,94016 +142587,iPhone,1,700.0,2019-01-25 18:59:00,824 Park St, Boston,MA,02215 +142587,Lightning Charging Cable,1,14.95,2019-01-25 18:59:00,824 Park St, Boston,MA,02215 +142588,AA Batteries (4-pack),1,3.84,2019-01-31 16:27:00,916 5th St, San Francisco,CA,94016 +142589,Apple Airpods Headphones,1,150.0,2019-01-20 18:40:00,664 Church St, Los Angeles,CA,90001 +142590,Wired Headphones,1,11.99,2019-01-25 15:14:00,839 Elm St, Austin,TX,73301 +142591,USB-C Charging Cable,1,11.95,2019-01-07 12:47:00,214 Maple St, San Francisco,CA,94016 +142592,USB-C Charging Cable,3,11.95,2019-01-04 19:22:00,361 5th St, Seattle,WA,98101 +142593,AAA Batteries (4-pack),2,2.99,2019-01-06 15:40:00,139 West St, San Francisco,CA,94016 +142594,USB-C Charging Cable,1,11.95,2019-01-25 17:25:00,370 Park St, Atlanta,GA,30301 +142595,USB-C Charging Cable,1,11.95,2019-01-22 17:48:00,72 8th St, San Francisco,CA,94016 +142596,Google Phone,1,600.0,2019-01-28 22:30:00,993 Cherry St, Dallas,TX,75001 +142597,AA Batteries (4-pack),1,3.84,2019-01-15 19:51:00,21 Jackson St, Los Angeles,CA,90001 +142598,Flatscreen TV,1,300.0,2019-01-15 19:55:00,525 Cedar St, Austin,TX,73301 +142599,27in 4K Gaming Monitor,1,389.99,2019-01-21 18:48:00,267 1st St, San Francisco,CA,94016 +142600,iPhone,1,700.0,2019-01-17 17:22:00,901 13th St, Boston,MA,02215 +142601,Wired Headphones,1,11.99,2019-01-07 10:15:00,34 Jackson St, New York City,NY,10001 +142602,27in 4K Gaming Monitor,1,389.99,2019-01-04 19:20:00,363 River St, San Francisco,CA,94016 +142603,27in FHD Monitor,1,149.99,2019-01-11 12:31:00,321 Forest St, Boston,MA,02215 +142604,Apple Airpods Headphones,1,150.0,2019-01-04 09:10:00,163 Park St, Atlanta,GA,30301 +142604,AAA Batteries (4-pack),1,2.99,2019-01-04 09:10:00,163 Park St, Atlanta,GA,30301 +142605,AA Batteries (4-pack),1,3.84,2019-01-17 15:59:00,131 Cherry St, Dallas,TX,75001 +142606,Apple Airpods Headphones,1,150.0,2019-01-24 17:38:00,488 Ridge St, San Francisco,CA,94016 +142607,27in 4K Gaming Monitor,1,389.99,2019-01-10 13:44:00,704 Pine St, San Francisco,CA,94016 +142608,Apple Airpods Headphones,1,150.0,2019-01-07 09:46:00,724 11th St, San Francisco,CA,94016 +142609,Bose SoundSport Headphones,1,99.99,2019-01-26 21:47:00,181 Washington St, Dallas,TX,75001 +142610,Apple Airpods Headphones,1,150.0,2019-01-26 19:48:00,184 Hill St, Los Angeles,CA,90001 +142610,iPhone,1,700.0,2019-01-26 19:48:00,184 Hill St, Los Angeles,CA,90001 +142611,AAA Batteries (4-pack),1,2.99,2019-01-27 19:16:00,565 Highland St, Boston,MA,02215 +142612,Google Phone,1,600.0,2019-01-13 09:55:00,883 Washington St, San Francisco,CA,94016 +142613,AAA Batteries (4-pack),2,2.99,2019-01-06 16:29:00,711 Sunset St, Los Angeles,CA,90001 +142614,AAA Batteries (4-pack),1,2.99,2019-01-02 07:53:00,570 Lake St, Atlanta,GA,30301 +142615,iPhone,1,700.0,2019-01-23 13:06:00,489 Hill St, Boston,MA,02215 +142616,Macbook Pro Laptop,1,1700.0,2019-01-20 00:15:00,3 2nd St, New York City,NY,10001 +142617,Macbook Pro Laptop,1,1700.0,2019-01-15 16:38:00,706 River St, Los Angeles,CA,90001 +142618,USB-C Charging Cable,1,11.95,2019-01-03 19:20:00,907 Maple St, Seattle,WA,98101 +142619,34in Ultrawide Monitor,1,379.99,2019-01-12 14:09:00,389 Adams St, San Francisco,CA,94016 +142620,Lightning Charging Cable,1,14.95,2019-01-26 14:13:00,968 7th St, San Francisco,CA,94016 +142621,Bose SoundSport Headphones,1,99.99,2019-01-03 11:48:00,478 River St, San Francisco,CA,94016 +142622,Wired Headphones,1,11.99,2019-01-27 16:49:00,933 Dogwood St, San Francisco,CA,94016 +142623,Apple Airpods Headphones,1,150.0,2019-01-20 00:24:00,46 Adams St, San Francisco,CA,94016 +142624,AA Batteries (4-pack),1,3.84,2019-01-08 18:10:00,102 Park St, Atlanta,GA,30301 +142625,Lightning Charging Cable,1,14.95,2019-01-26 20:05:00,966 Hickory St, Atlanta,GA,30301 +142626,AAA Batteries (4-pack),1,2.99,2019-01-22 13:22:00,986 5th St, San Francisco,CA,94016 +142627,iPhone,1,700.0,2019-01-18 17:57:00,383 1st St, San Francisco,CA,94016 +142628,AAA Batteries (4-pack),2,2.99,2019-01-25 14:56:00,595 Jefferson St, Portland,ME,04101 +142629,Apple Airpods Headphones,1,150.0,2019-01-15 15:28:00,891 Lake St, San Francisco,CA,94016 +142630,Wired Headphones,1,11.99,2019-01-14 20:50:00,947 North St, San Francisco,CA,94016 +142631,Bose SoundSport Headphones,1,99.99,2019-01-09 12:15:00,620 Wilson St, Seattle,WA,98101 +142632,Lightning Charging Cable,1,14.95,2019-01-21 00:07:00,779 4th St, Los Angeles,CA,90001 +142633,AAA Batteries (4-pack),1,2.99,2019-01-17 07:58:00,222 9th St, Los Angeles,CA,90001 +142634,Google Phone,1,600.0,2019-01-04 09:03:00,745 Highland St, Dallas,TX,75001 +142634,USB-C Charging Cable,1,11.95,2019-01-04 09:03:00,745 Highland St, Dallas,TX,75001 +142635,ThinkPad Laptop,1,999.99,2019-01-17 12:35:00,799 Main St, New York City,NY,10001 +142636,Bose SoundSport Headphones,1,99.99,2019-01-10 20:09:00,95 Jackson St, Dallas,TX,75001 +142637,Wired Headphones,1,11.99,2019-01-02 16:43:00,207 13th St, Seattle,WA,98101 +142638,USB-C Charging Cable,1,11.95,2019-01-29 18:23:00,916 Maple St, Boston,MA,02215 +142639,AAA Batteries (4-pack),1,2.99,2019-01-13 13:09:00,345 South St, Seattle,WA,98101 +142639,27in 4K Gaming Monitor,1,389.99,2019-01-13 13:09:00,345 South St, Seattle,WA,98101 +142640,Lightning Charging Cable,1,14.95,2019-01-23 08:05:00,561 Center St, Seattle,WA,98101 +142641,27in FHD Monitor,1,149.99,2019-01-24 16:33:00,237 Park St, Atlanta,GA,30301 +142642,Wired Headphones,1,11.99,2019-01-02 13:17:00,320 2nd St, Austin,TX,73301 +142643,AA Batteries (4-pack),1,3.84,2019-01-24 10:07:00,939 Ridge St, Portland,OR,97035 +142644,Wired Headphones,1,11.99,2019-01-12 15:06:00,499 Hill St, San Francisco,CA,94016 +142645,Lightning Charging Cable,1,14.95,2019-01-24 17:21:00,745 Hickory St, San Francisco,CA,94016 +142646,Lightning Charging Cable,1,14.95,2019-01-27 17:36:00,908 Jackson St, Atlanta,GA,30301 +142647,AA Batteries (4-pack),1,3.84,2019-01-29 16:21:00,311 Main St, Portland,ME,04101 +142648,Bose SoundSport Headphones,1,99.99,2019-01-18 13:53:00,767 Wilson St, Atlanta,GA,30301 +142649,AA Batteries (4-pack),1,3.84,2019-01-19 23:22:00,631 Cedar St, San Francisco,CA,94016 +142650,34in Ultrawide Monitor,1,379.99,2019-01-11 19:16:00,642 Hickory St, Los Angeles,CA,90001 +142651,USB-C Charging Cable,1,11.95,2019-01-11 22:12:00,24 Park St, New York City,NY,10001 +142651,AA Batteries (4-pack),1,3.84,2019-01-11 22:12:00,24 Park St, New York City,NY,10001 +142652,USB-C Charging Cable,1,11.95,2019-01-24 17:36:00,50 4th St, San Francisco,CA,94016 +142652,Lightning Charging Cable,1,14.95,2019-01-24 17:36:00,50 4th St, San Francisco,CA,94016 +142653,Wired Headphones,1,11.99,2019-01-28 00:04:00,556 Main St, San Francisco,CA,94016 +142654,Wired Headphones,1,11.99,2019-01-28 15:06:00,501 14th St, Los Angeles,CA,90001 +142655,20in Monitor,1,109.99,2019-01-16 20:09:00,492 2nd St, New York City,NY,10001 +142656,USB-C Charging Cable,1,11.95,2019-01-30 16:40:00,448 Jackson St, Atlanta,GA,30301 +142657,Bose SoundSport Headphones,1,99.99,2019-01-25 14:13:00,538 North St, San Francisco,CA,94016 +142658,20in Monitor,1,109.99,2019-01-26 23:09:00,629 Lakeview St, Portland,OR,97035 +142659,Apple Airpods Headphones,1,150.0,2019-01-11 22:39:00,733 Adams St, Austin,TX,73301 +142660,27in 4K Gaming Monitor,1,389.99,2019-01-30 18:01:00,336 Pine St, San Francisco,CA,94016 +142661,USB-C Charging Cable,2,11.95,2019-01-25 01:49:00,956 Center St, New York City,NY,10001 +142662,Wired Headphones,1,11.99,2019-01-24 18:55:00,412 Chestnut St, Seattle,WA,98101 +142663,Lightning Charging Cable,1,14.95,2019-01-13 17:50:00,810 Hill St, New York City,NY,10001 +142664,Apple Airpods Headphones,1,150.0,2019-01-07 11:08:00,227 Jackson St, San Francisco,CA,94016 +142665,Bose SoundSport Headphones,1,99.99,2019-01-25 19:58:00,997 10th St, Los Angeles,CA,90001 +142666,Macbook Pro Laptop,1,1700.0,2019-01-14 10:42:00,650 Johnson St, Los Angeles,CA,90001 +142667,USB-C Charging Cable,1,11.95,2019-01-03 12:30:00,575 Maple St, Austin,TX,73301 +142668,AAA Batteries (4-pack),1,2.99,2019-01-12 10:11:00,415 Washington St, San Francisco,CA,94016 +142669,27in 4K Gaming Monitor,1,389.99,2019-01-02 15:16:00,793 11th St, San Francisco,CA,94016 +142670,27in FHD Monitor,1,149.99,2019-01-11 12:20:00,771 Lincoln St, Austin,TX,73301 +142671,27in FHD Monitor,1,149.99,2019-01-18 17:08:00,698 Meadow St, Boston,MA,02215 +142672,iPhone,1,700.0,2019-01-13 13:49:00,391 Hickory St, Los Angeles,CA,90001 +142673,Macbook Pro Laptop,1,1700.0,2019-01-25 07:38:00,985 Jefferson St, San Francisco,CA,94016 +142674,ThinkPad Laptop,1,999.99,2019-01-09 09:21:00,497 4th St, Los Angeles,CA,90001 +142675,Wired Headphones,1,11.99,2019-01-25 20:37:00,455 Forest St, Portland,OR,97035 +142676,AA Batteries (4-pack),1,3.84,2019-01-25 08:24:00,449 Main St, Portland,OR,97035 +142677,Google Phone,1,600.0,2019-01-27 17:38:00,240 4th St, Dallas,TX,75001 +142678,USB-C Charging Cable,1,11.95,2019-01-29 00:15:00,134 Adams St, Los Angeles,CA,90001 +142679,Macbook Pro Laptop,1,1700.0,2019-01-14 01:07:00,440 Church St, Los Angeles,CA,90001 +142680,Apple Airpods Headphones,1,150.0,2019-01-26 09:46:00,251 Center St, Dallas,TX,75001 +142681,Wired Headphones,1,11.99,2019-01-20 18:56:00,802 Meadow St, Portland,OR,97035 +142682,34in Ultrawide Monitor,1,379.99,2019-01-22 20:16:00,99 River St, Los Angeles,CA,90001 +142683,USB-C Charging Cable,1,11.95,2019-01-09 08:46:00,648 Sunset St, Atlanta,GA,30301 +142683,Wired Headphones,1,11.99,2019-01-09 08:46:00,648 Sunset St, Atlanta,GA,30301 +142684,AA Batteries (4-pack),1,3.84,2019-01-10 11:31:00,441 9th St, San Francisco,CA,94016 +142685,27in FHD Monitor,1,149.99,2019-01-15 09:47:00,296 Jefferson St, Austin,TX,73301 +142686,AAA Batteries (4-pack),2,2.99,2019-01-26 21:48:00,110 Lincoln St, New York City,NY,10001 +142687,USB-C Charging Cable,1,11.95,2019-01-15 20:09:00,734 Cherry St, San Francisco,CA,94016 +142688,USB-C Charging Cable,1,11.95,2019-01-03 06:56:00,202 Lake St, Seattle,WA,98101 +142689,USB-C Charging Cable,1,11.95,2019-01-15 11:24:00,506 Park St, Austin,TX,73301 +142690,AAA Batteries (4-pack),1,2.99,2019-01-10 17:22:00,64 Madison St, Atlanta,GA,30301 +142691,27in FHD Monitor,1,149.99,2019-01-16 20:08:00,915 River St, New York City,NY,10001 +142692,20in Monitor,1,109.99,2019-01-11 01:49:00,441 2nd St, New York City,NY,10001 +142693,Bose SoundSport Headphones,1,99.99,2019-01-29 10:47:00,975 2nd St, Los Angeles,CA,90001 +142694,Apple Airpods Headphones,1,150.0,2019-01-02 09:05:00,879 Center St, Portland,OR,97035 +142695,Lightning Charging Cable,1,14.95,2019-01-24 15:45:00,865 Cedar St, Austin,TX,73301 +142696,Apple Airpods Headphones,1,150.0,2019-01-26 00:09:00,445 Walnut St, San Francisco,CA,94016 +142697,AAA Batteries (4-pack),1,2.99,2019-01-20 17:14:00,517 Chestnut St, San Francisco,CA,94016 +142698,Wired Headphones,1,11.99,2019-01-19 15:51:00,24 South St, San Francisco,CA,94016 +142699,Wired Headphones,1,11.99,2019-01-21 18:04:00,703 Lincoln St, New York City,NY,10001 +142700,USB-C Charging Cable,1,11.95,2019-01-20 07:52:00,881 Spruce St, Boston,MA,02215 +142701,LG Dryer,1,600.0,2019-01-02 21:32:00,116 Main St, San Francisco,CA,94016 +142702,AA Batteries (4-pack),1,3.84,2019-01-21 04:43:00,356 Pine St, Austin,TX,73301 +142703,Lightning Charging Cable,1,14.95,2019-01-31 23:10:00,265 12th St, Austin,TX,73301 +142704,Lightning Charging Cable,1,14.95,2019-01-07 09:15:00,331 Wilson St, New York City,NY,10001 +142705,Lightning Charging Cable,1,14.95,2019-01-25 19:24:00,980 Johnson St, Dallas,TX,75001 +142706,27in FHD Monitor,1,149.99,2019-01-28 15:25:00,802 Ridge St, New York City,NY,10001 +142707,27in 4K Gaming Monitor,1,389.99,2019-01-03 13:31:00,822 Wilson St, San Francisco,CA,94016 +142708,Lightning Charging Cable,1,14.95,2019-01-26 13:07:00,62 Dogwood St, New York City,NY,10001 +142709,Macbook Pro Laptop,1,1700.0,2019-01-20 03:37:00,335 Cherry St, Dallas,TX,75001 +142710,Wired Headphones,1,11.99,2019-01-11 15:00:00,424 Pine St, Boston,MA,02215 +142711,Apple Airpods Headphones,1,150.0,2019-01-25 22:55:00,79 7th St, Boston,MA,02215 +142712,27in FHD Monitor,1,149.99,2019-01-22 15:55:00,705 Lakeview St, Boston,MA,02215 +142713,USB-C Charging Cable,1,11.95,2019-01-06 06:59:00,917 1st St, Atlanta,GA,30301 +142714,LG Washing Machine,1,600.0,2019-01-01 13:15:00,972 12th St, San Francisco,CA,94016 +142715,Wired Headphones,1,11.99,2019-01-16 16:29:00,685 Elm St, Los Angeles,CA,90001 +142716,34in Ultrawide Monitor,1,379.99,2019-01-28 10:28:00,228 Forest St, San Francisco,CA,94016 +142717,Vareebadd Phone,1,400.0,2019-01-20 20:24:00,822 9th St, Portland,ME,04101 +142718,Wired Headphones,1,11.99,2019-01-27 09:44:00,361 Forest St, Seattle,WA,98101 +142719,Bose SoundSport Headphones,1,99.99,2019-01-27 23:21:00,592 Hickory St, Los Angeles,CA,90001 +142720,Bose SoundSport Headphones,1,99.99,2019-01-15 08:27:00,175 Lakeview St, Atlanta,GA,30301 +142721,27in FHD Monitor,1,149.99,2019-01-11 22:53:00,123 Johnson St, San Francisco,CA,94016 +142722,AA Batteries (4-pack),1,3.84,2019-01-08 16:06:00,419 Center St, New York City,NY,10001 +142723,27in 4K Gaming Monitor,1,389.99,2019-01-31 13:40:00,264 Cedar St, San Francisco,CA,94016 +142724,Apple Airpods Headphones,1,150.0,2019-01-19 22:54:00,230 12th St, Seattle,WA,98101 +142725,Lightning Charging Cable,1,14.95,2019-01-06 05:06:00,962 Spruce St, Dallas,TX,75001 +142726,AA Batteries (4-pack),1,3.84,2019-01-10 07:28:00,122 Park St, San Francisco,CA,94016 +142727,Macbook Pro Laptop,1,1700.0,2019-01-12 19:01:00,194 Lake St, San Francisco,CA,94016 +142727,AA Batteries (4-pack),2,3.84,2019-01-12 19:01:00,194 Lake St, San Francisco,CA,94016 +142728,Lightning Charging Cable,1,14.95,2019-01-23 08:44:00,21 Church St, San Francisco,CA,94016 +142729,Wired Headphones,1,11.99,2019-01-14 13:36:00,119 Cedar St, Atlanta,GA,30301 +142730,Google Phone,1,600.0,2019-01-11 06:16:00,219 Chestnut St, New York City,NY,10001 +142730,USB-C Charging Cable,1,11.95,2019-01-11 06:16:00,219 Chestnut St, New York City,NY,10001 +142731,Lightning Charging Cable,1,14.95,2019-01-05 14:50:00,92 4th St, Dallas,TX,75001 +142732,AA Batteries (4-pack),1,3.84,2019-01-21 17:17:00,207 5th St, San Francisco,CA,94016 +142733,AAA Batteries (4-pack),3,2.99,2019-01-24 00:44:00,766 Pine St, New York City,NY,10001 +142734,AA Batteries (4-pack),1,3.84,2019-01-10 22:38:00,533 12th St, Austin,TX,73301 +142735,USB-C Charging Cable,1,11.95,2019-01-02 14:35:00,30 Jefferson St, Los Angeles,CA,90001 +142736,Bose SoundSport Headphones,1,99.99,2019-01-02 13:11:00,264 Adams St, Boston,MA,02215 +142737,USB-C Charging Cable,1,11.95,2019-01-14 17:05:00,603 2nd St, Los Angeles,CA,90001 +142738,Macbook Pro Laptop,1,1700.0,2019-01-06 17:42:00,171 Highland St, Seattle,WA,98101 +142739,AA Batteries (4-pack),1,3.84,2019-01-16 23:16:00,436 6th St, Seattle,WA,98101 +142740,Vareebadd Phone,1,400.0,2019-01-26 13:09:00,249 Main St, Austin,TX,73301 +142741,Lightning Charging Cable,1,14.95,2019-01-11 09:44:00,668 Lincoln St, Portland,OR,97035 +142742,USB-C Charging Cable,1,11.95,2019-01-19 20:35:00,729 13th St, San Francisco,CA,94016 +142743,Flatscreen TV,1,300.0,2019-01-04 05:20:00,842 North St, San Francisco,CA,94016 +142744,Flatscreen TV,1,300.0,2019-01-30 08:46:00,46 Jackson St, San Francisco,CA,94016 +142745,Bose SoundSport Headphones,1,99.99,2019-01-16 16:43:00,21 Walnut St, Atlanta,GA,30301 +142746,Lightning Charging Cable,2,14.95,2019-01-07 05:49:00,632 Elm St, Atlanta,GA,30301 +142747,AA Batteries (4-pack),2,3.84,2019-01-07 13:15:00,350 Spruce St, San Francisco,CA,94016 +142748,ThinkPad Laptop,1,999.99,2019-01-04 12:39:00,219 Spruce St, San Francisco,CA,94016 +142749,Wired Headphones,1,11.99,2019-01-12 02:07:00,299 Cherry St, Boston,MA,02215 +142750,AAA Batteries (4-pack),1,2.99,2019-01-30 13:04:00,438 Ridge St, Los Angeles,CA,90001 +142751,Wired Headphones,1,11.99,2019-01-05 21:51:00,860 Cedar St, Los Angeles,CA,90001 +142752,AA Batteries (4-pack),1,3.84,2019-01-09 21:19:00,163 4th St, Boston,MA,02215 +142753,Bose SoundSport Headphones,1,99.99,2019-01-12 23:41:00,83 Lakeview St, New York City,NY,10001 +142754,USB-C Charging Cable,1,11.95,2019-01-07 10:24:00,10 West St, Dallas,TX,75001 +142755,iPhone,1,700.0,2019-01-21 14:28:00,434 5th St, Atlanta,GA,30301 +142756,AA Batteries (4-pack),1,3.84,2019-01-11 09:37:00,786 2nd St, Dallas,TX,75001 +142757,34in Ultrawide Monitor,1,379.99,2019-01-07 10:26:00,614 Cedar St, Atlanta,GA,30301 +142758,27in 4K Gaming Monitor,1,389.99,2019-01-24 18:56:00,425 Walnut St, Los Angeles,CA,90001 +142759,Bose SoundSport Headphones,1,99.99,2019-01-21 12:15:00,832 Lincoln St, New York City,NY,10001 +142760,Wired Headphones,2,11.99,2019-01-28 22:08:00,630 Chestnut St, San Francisco,CA,94016 +142761,AA Batteries (4-pack),1,3.84,2019-01-12 09:05:00,325 10th St, Boston,MA,02215 +142762,iPhone,1,700.0,2019-01-20 08:00:00,613 Jackson St, Boston,MA,02215 +142763,AAA Batteries (4-pack),1,2.99,2019-01-23 11:24:00,74 Church St, New York City,NY,10001 +142764,AA Batteries (4-pack),3,3.84,2019-01-20 20:31:00,691 Center St, San Francisco,CA,94016 +142765,Wired Headphones,1,11.99,2019-01-13 15:38:00,786 Adams St, Boston,MA,02215 +142766,USB-C Charging Cable,1,11.95,2019-01-30 22:33:00,351 River St, San Francisco,CA,94016 +142767,34in Ultrawide Monitor,1,379.99,2019-01-25 20:12:00,128 Center St, Atlanta,GA,30301 +142768,Flatscreen TV,1,300.0,2019-01-27 13:03:00,60 Walnut St, Dallas,TX,75001 +142769,USB-C Charging Cable,1,11.95,2019-01-28 13:32:00,448 Park St, Portland,OR,97035 +142770,USB-C Charging Cable,1,11.95,2019-01-29 01:11:00,375 12th St, San Francisco,CA,94016 +142771,Google Phone,1,600.0,2019-01-16 11:16:00,714 13th St, Austin,TX,73301 +142772,Vareebadd Phone,1,400.0,2019-01-13 16:37:00,670 Chestnut St, New York City,NY,10001 +142773,AAA Batteries (4-pack),2,2.99,2019-01-20 14:02:00,783 14th St, San Francisco,CA,94016 +142774,iPhone,1,700.0,2019-01-20 22:53:00,175 Church St, San Francisco,CA,94016 +142775,27in FHD Monitor,1,149.99,2019-01-07 07:00:00,258 Lincoln St, Dallas,TX,75001 +142776,Wired Headphones,1,11.99,2019-01-01 19:15:00,538 Willow St, Seattle,WA,98101 +142777,Wired Headphones,1,11.99,2019-01-31 09:22:00,492 13th St, San Francisco,CA,94016 +142778,Macbook Pro Laptop,1,1700.0,2019-01-04 11:15:00,83 Forest St, Boston,MA,02215 +142779,AAA Batteries (4-pack),1,2.99,2019-01-06 18:02:00,19 Lakeview St, Los Angeles,CA,90001 +142780,Wired Headphones,1,11.99,2019-01-22 10:29:00,253 Cherry St, New York City,NY,10001 +142781,27in 4K Gaming Monitor,1,389.99,2019-01-20 23:38:00,295 1st St, Los Angeles,CA,90001 +142782,Lightning Charging Cable,1,14.95,2019-01-11 17:31:00,782 Church St, Boston,MA,02215 +142783,Flatscreen TV,1,300.0,2019-01-11 16:12:00,960 Ridge St, San Francisco,CA,94016 +142784,AAA Batteries (4-pack),4,2.99,2019-01-25 11:27:00,301 Park St, New York City,NY,10001 +142785,Bose SoundSport Headphones,1,99.99,2019-01-05 14:03:00,676 14th St, Portland,OR,97035 +142786,27in FHD Monitor,1,149.99,2019-01-07 11:16:00,756 7th St, Atlanta,GA,30301 +142787,Lightning Charging Cable,1,14.95,2019-01-16 14:34:00,701 12th St, New York City,NY,10001 +142788,Lightning Charging Cable,1,14.95,2019-01-11 16:30:00,488 Hill St, Seattle,WA,98101 +142789,AAA Batteries (4-pack),1,2.99,2019-01-01 07:35:00,336 Spruce St, Boston,MA,02215 +142790,Bose SoundSport Headphones,1,99.99,2019-01-26 18:50:00,225 7th St, Los Angeles,CA,90001 +142790,Macbook Pro Laptop,1,1700.0,2019-01-26 18:50:00,225 7th St, Los Angeles,CA,90001 +142791,Bose SoundSport Headphones,1,99.99,2019-01-06 21:55:00,913 Hill St, Los Angeles,CA,90001 +142792,34in Ultrawide Monitor,1,379.99,2019-01-16 08:31:00,387 Maple St, Boston,MA,02215 +142793,AAA Batteries (4-pack),2,2.99,2019-01-26 18:11:00,824 Jackson St, San Francisco,CA,94016 +142794,Wired Headphones,1,11.99,2019-01-19 23:04:00,882 7th St, San Francisco,CA,94016 +142795,Wired Headphones,1,11.99,2019-01-02 22:06:00,192 Maple St, San Francisco,CA,94016 +142796,Macbook Pro Laptop,1,1700.0,2019-01-14 21:06:00,39 Hill St, Boston,MA,02215 +142797,AAA Batteries (4-pack),1,2.99,2019-01-06 16:19:00,557 13th St, Seattle,WA,98101 +142798,Wired Headphones,1,11.99,2019-01-08 07:27:00,156 Elm St, San Francisco,CA,94016 +142799,AAA Batteries (4-pack),1,2.99,2019-01-13 09:58:00,273 North St, Austin,TX,73301 +142800,Wired Headphones,1,11.99,2019-01-21 00:36:00,668 Willow St, Dallas,TX,75001 +142801,AA Batteries (4-pack),1,3.84,2019-01-08 23:01:00,132 Jefferson St, San Francisco,CA,94016 +142802,Wired Headphones,1,11.99,2019-01-29 15:33:00,223 Highland St, Dallas,TX,75001 +142803,Wired Headphones,1,11.99,2019-01-09 20:21:00,904 Maple St, Boston,MA,02215 +142804,Vareebadd Phone,1,400.0,2019-01-31 21:37:00,950 Meadow St, Los Angeles,CA,90001 +142805,Bose SoundSport Headphones,1,99.99,2019-01-30 11:49:00,445 Church St, San Francisco,CA,94016 +142806,AA Batteries (4-pack),1,3.84,2019-01-16 04:19:00,367 7th St, Seattle,WA,98101 +142807,27in 4K Gaming Monitor,1,389.99,2019-01-25 17:44:00,485 Sunset St, Los Angeles,CA,90001 +142808,27in FHD Monitor,1,149.99,2019-01-11 19:05:00,38 Center St, Dallas,TX,75001 +142809,Flatscreen TV,1,300.0,2019-01-04 13:41:00,420 Chestnut St, Boston,MA,02215 +142810,AA Batteries (4-pack),1,3.84,2019-01-24 17:38:00,486 Adams St, Boston,MA,02215 +142811,Lightning Charging Cable,1,14.95,2019-01-05 23:11:00,149 Johnson St, Portland,OR,97035 +142812,iPhone,1,700.0,2019-01-19 10:43:00,373 Park St, San Francisco,CA,94016 +142812,Lightning Charging Cable,1,14.95,2019-01-19 10:43:00,373 Park St, San Francisco,CA,94016 +142813,AAA Batteries (4-pack),2,2.99,2019-01-23 22:20:00,733 West St, New York City,NY,10001 +142814,AA Batteries (4-pack),1,3.84,2019-01-18 19:20:00,764 2nd St, San Francisco,CA,94016 +142815,AA Batteries (4-pack),3,3.84,2019-01-20 16:45:00,506 13th St, New York City,NY,10001 +142816,ThinkPad Laptop,1,999.99,2019-01-27 11:15:00,827 Elm St, Dallas,TX,75001 +142817,ThinkPad Laptop,1,999.99,2019-01-30 19:53:00,355 Walnut St, Los Angeles,CA,90001 +142818,AAA Batteries (4-pack),2,2.99,2019-01-13 17:16:00,295 Church St, San Francisco,CA,94016 +142819,Wired Headphones,1,11.99,2019-01-10 16:31:00,992 7th St, Los Angeles,CA,90001 +142820,Apple Airpods Headphones,1,150.0,2019-01-08 18:42:00,302 5th St, Austin,TX,73301 +142821,USB-C Charging Cable,2,11.95,2019-01-16 20:53:00,37 West St, Boston,MA,02215 +142822,Lightning Charging Cable,1,14.95,2019-01-01 13:51:00,487 2nd St, New York City,NY,10001 +142823,Macbook Pro Laptop,1,1700.0,2019-01-02 15:05:00,487 14th St, New York City,NY,10001 +142824,Google Phone,1,600.0,2019-01-06 08:45:00,850 13th St, Seattle,WA,98101 +142824,Wired Headphones,1,11.99,2019-01-06 08:45:00,850 13th St, Seattle,WA,98101 +142825,AAA Batteries (4-pack),3,2.99,2019-01-27 00:59:00,232 Meadow St, New York City,NY,10001 +142826,Apple Airpods Headphones,1,150.0,2019-01-28 18:55:00,472 7th St, San Francisco,CA,94016 +142827,Apple Airpods Headphones,1,150.0,2019-01-09 22:55:00,461 2nd St, San Francisco,CA,94016 +142828,AA Batteries (4-pack),1,3.84,2019-01-21 00:14:00,853 Lincoln St, Atlanta,GA,30301 +142829,AA Batteries (4-pack),1,3.84,2019-01-24 12:32:00,106 Cherry St, San Francisco,CA,94016 +142830,ThinkPad Laptop,1,999.99,2019-01-22 07:40:00,896 13th St, Dallas,TX,75001 +142831,27in FHD Monitor,1,149.99,2019-01-26 19:07:00,270 Jackson St, New York City,NY,10001 +142832,AA Batteries (4-pack),1,3.84,2019-01-21 09:01:00,199 8th St, Boston,MA,02215 +142833,AAA Batteries (4-pack),1,2.99,2019-01-19 19:40:00,934 Park St, Dallas,TX,75001 +142834,Apple Airpods Headphones,1,150.0,2019-01-07 23:48:00,697 13th St, San Francisco,CA,94016 +142835,iPhone,1,700.0,2019-01-11 09:00:00,327 Spruce St, Dallas,TX,75001 +142835,Wired Headphones,1,11.99,2019-01-11 09:00:00,327 Spruce St, Dallas,TX,75001 +142836,Google Phone,1,600.0,2019-01-30 09:10:00,204 West St, Austin,TX,73301 +142837,iPhone,1,700.0,2019-01-19 16:32:00,260 9th St, Dallas,TX,75001 +142837,Wired Headphones,1,11.99,2019-01-19 16:32:00,260 9th St, Dallas,TX,75001 +142838,AAA Batteries (4-pack),2,2.99,2019-01-02 12:28:00,503 Washington St, New York City,NY,10001 +142839,27in FHD Monitor,1,149.99,2019-01-18 09:38:00,164 5th St, San Francisco,CA,94016 +142840,27in 4K Gaming Monitor,1,389.99,2019-01-31 10:58:00,263 13th St, Los Angeles,CA,90001 +142841,Lightning Charging Cable,1,14.95,2019-01-29 09:18:00,120 7th St, San Francisco,CA,94016 +142842,USB-C Charging Cable,1,11.95,2019-01-19 19:56:00,304 Willow St, Atlanta,GA,30301 +142843,Bose SoundSport Headphones,1,99.99,2019-01-14 10:16:00,937 9th St, Los Angeles,CA,90001 +142844,27in FHD Monitor,1,149.99,2019-01-07 12:29:00,78 Elm St, San Francisco,CA,94016 +142845,34in Ultrawide Monitor,1,379.99,2019-01-03 17:53:00,67 2nd St, Seattle,WA,98101 +142846,iPhone,1,700.0,2019-01-19 21:30:00,474 12th St, San Francisco,CA,94016 +142847,Apple Airpods Headphones,1,150.0,2019-01-27 19:58:00,822 Highland St, Boston,MA,02215 +142848,Lightning Charging Cable,1,14.95,2019-01-08 12:05:00,670 Adams St, Los Angeles,CA,90001 +142849,Apple Airpods Headphones,1,150.0,2019-01-30 15:41:00,828 Meadow St, Portland,ME,04101 +142850,Bose SoundSport Headphones,1,99.99,2019-01-09 17:00:00,295 Maple St, New York City,NY,10001 +142851,Vareebadd Phone,1,400.0,2019-01-08 16:38:00,258 Elm St, San Francisco,CA,94016 +142852,AAA Batteries (4-pack),1,2.99,2019-01-13 21:19:00,190 Washington St, Los Angeles,CA,90001 +142853,34in Ultrawide Monitor,1,379.99,2019-01-20 11:47:00,885 Elm St, Atlanta,GA,30301 +142854,USB-C Charging Cable,1,11.95,2019-01-16 13:27:00,328 Lakeview St, Boston,MA,02215 +142855,Wired Headphones,1,11.99,2019-01-14 20:39:00,414 Lincoln St, San Francisco,CA,94016 +142856,Vareebadd Phone,1,400.0,2019-01-20 10:56:00,777 Adams St, New York City,NY,10001 +142857,iPhone,1,700.0,2019-01-31 10:39:00,251 Washington St, Los Angeles,CA,90001 +142858,AAA Batteries (4-pack),1,2.99,2019-01-19 09:21:00,17 South St, Portland,OR,97035 +142859,AA Batteries (4-pack),1,3.84,2019-01-09 22:25:00,434 Madison St, San Francisco,CA,94016 +142860,AAA Batteries (4-pack),1,2.99,2019-01-08 14:44:00,75 5th St, Los Angeles,CA,90001 +142861,Wired Headphones,1,11.99,2019-01-04 23:37:00,828 Pine St, Austin,TX,73301 +142862,iPhone,1,700.0,2019-01-30 09:51:00,757 Church St, Austin,TX,73301 +142863,Lightning Charging Cable,1,14.95,2019-01-31 21:12:00,414 Johnson St, San Francisco,CA,94016 +142864,27in FHD Monitor,1,149.99,2019-01-17 18:01:00,392 Park St, Dallas,TX,75001 +142865,Apple Airpods Headphones,1,150.0,2019-01-05 17:37:00,370 Main St, Atlanta,GA,30301 +142866,USB-C Charging Cable,1,11.95,2019-01-13 20:05:00,210 1st St, Austin,TX,73301 +142867,Apple Airpods Headphones,1,150.0,2019-01-27 16:07:00,233 Cherry St, New York City,NY,10001 +142868,27in FHD Monitor,1,149.99,2019-01-27 08:01:00,8 River St, Austin,TX,73301 +142869,Macbook Pro Laptop,1,1700.0,2019-01-19 15:40:00,751 Willow St, New York City,NY,10001 +142870,Bose SoundSport Headphones,1,99.99,2019-01-23 08:07:00,70 Spruce St, New York City,NY,10001 +142871,Wired Headphones,2,11.99,2019-01-26 15:44:00,723 Washington St, Los Angeles,CA,90001 +142872,Wired Headphones,1,11.99,2019-01-06 16:19:00,986 Sunset St, Boston,MA,02215 +142873,34in Ultrawide Monitor,1,379.99,2019-01-29 15:55:00,936 River St, Dallas,TX,75001 +142873,Wired Headphones,1,11.99,2019-01-29 15:55:00,936 River St, Dallas,TX,75001 +142874,AAA Batteries (4-pack),2,2.99,2019-01-14 11:37:00,325 Church St, San Francisco,CA,94016 +142875,Apple Airpods Headphones,1,150.0,2019-01-09 03:27:00,610 Elm St, New York City,NY,10001 +142876,LG Dryer,1,600.0,2019-01-26 17:11:00,823 Jefferson St, Boston,MA,02215 +142877,ThinkPad Laptop,1,999.99,2019-01-22 21:30:00,758 Adams St, Atlanta,GA,30301 +142878,Apple Airpods Headphones,1,150.0,2019-01-17 10:17:00,654 Cedar St, Dallas,TX,75001 +142879,Lightning Charging Cable,1,14.95,2019-01-07 12:16:00,300 Dogwood St, New York City,NY,10001 +142880,Lightning Charging Cable,1,14.95,2019-01-29 20:54:00,896 2nd St, San Francisco,CA,94016 +142881,20in Monitor,1,109.99,2019-01-24 06:20:00,324 Park St, Boston,MA,02215 +142882,Bose SoundSport Headphones,1,99.99,2019-01-09 11:03:00,357 Lakeview St, New York City,NY,10001 +142883,27in 4K Gaming Monitor,1,389.99,2019-01-05 12:22:00,201 10th St, Boston,MA,02215 +142884,USB-C Charging Cable,3,11.95,2019-01-04 22:52:00,700 Jackson St, San Francisco,CA,94016 +142885,AA Batteries (4-pack),1,3.84,2019-01-24 13:13:00,582 Hickory St, Los Angeles,CA,90001 +142886,Google Phone,1,600.0,2019-01-24 10:12:00,755 6th St, Los Angeles,CA,90001 +142887,Wired Headphones,1,11.99,2019-01-25 12:14:00,507 Willow St, San Francisco,CA,94016 +142888,USB-C Charging Cable,2,11.95,2019-01-31 15:45:00,929 Pine St, Dallas,TX,75001 +142889,Apple Airpods Headphones,1,150.0,2019-01-06 01:43:00,601 South St, Atlanta,GA,30301 +142890,Lightning Charging Cable,1,14.95,2019-01-19 15:33:00,221 Park St, New York City,NY,10001 +142891,34in Ultrawide Monitor,1,379.99,2019-01-30 14:58:00,597 Lakeview St, Los Angeles,CA,90001 +142892,34in Ultrawide Monitor,1,379.99,2019-01-10 10:22:00,846 Lincoln St, Portland,OR,97035 +142893,Lightning Charging Cable,1,14.95,2019-01-05 20:07:00,41 Spruce St, San Francisco,CA,94016 +142894,Flatscreen TV,1,300.0,2019-01-31 10:19:00,744 8th St, Atlanta,GA,30301 +142895,Bose SoundSport Headphones,1,99.99,2019-01-15 10:57:00,710 Church St, Portland,OR,97035 +142896,Lightning Charging Cable,1,14.95,2019-01-16 14:20:00,142 Jackson St, San Francisco,CA,94016 +142897,USB-C Charging Cable,1,11.95,2019-01-22 08:09:00,633 2nd St, Portland,OR,97035 +142898,USB-C Charging Cable,1,11.95,2019-01-16 23:52:00,150 Forest St, New York City,NY,10001 +142899,AAA Batteries (4-pack),1,2.99,2019-01-09 15:59:00,597 Center St, Portland,OR,97035 +142900,AA Batteries (4-pack),2,3.84,2019-01-15 23:43:00,459 Pine St, San Francisco,CA,94016 +142901,Bose SoundSport Headphones,1,99.99,2019-01-13 11:11:00,535 7th St, Boston,MA,02215 +142902,ThinkPad Laptop,1,999.99,2019-01-20 11:15:00,362 Main St, Atlanta,GA,30301 +142903,AA Batteries (4-pack),1,3.84,2019-01-22 04:34:00,719 6th St, San Francisco,CA,94016 +142904,Wired Headphones,1,11.99,2019-01-02 18:22:00,8 Madison St, Dallas,TX,75001 +142905,USB-C Charging Cable,1,11.95,2019-01-17 09:46:00,674 Center St, Atlanta,GA,30301 +142906,Bose SoundSport Headphones,1,99.99,2019-01-24 13:18:00,78 Ridge St, San Francisco,CA,94016 +142907,27in 4K Gaming Monitor,1,389.99,2019-01-28 14:06:00,399 Maple St, San Francisco,CA,94016 +142908,Apple Airpods Headphones,1,150.0,2019-01-08 12:08:00,751 Jackson St, San Francisco,CA,94016 +142909,AAA Batteries (4-pack),1,2.99,2019-01-13 11:21:00,13 Adams St, Seattle,WA,98101 +142910,AAA Batteries (4-pack),1,2.99,2019-01-01 19:00:00,409 10th St, New York City,NY,10001 +142911,USB-C Charging Cable,1,11.95,2019-01-22 16:58:00,252 6th St, New York City,NY,10001 +142912,20in Monitor,1,109.99,2019-01-30 21:27:00,7 Meadow St, New York City,NY,10001 +142913,AA Batteries (4-pack),2,3.84,2019-01-12 20:08:00,657 Madison St, New York City,NY,10001 +142914,iPhone,1,700.0,2019-01-01 12:35:00,279 9th St, San Francisco,CA,94016 +142915,Bose SoundSport Headphones,1,99.99,2019-01-31 17:42:00,375 Jefferson St, San Francisco,CA,94016 +142916,Wired Headphones,2,11.99,2019-01-25 15:32:00,661 Main St, Seattle,WA,98101 +142917,Lightning Charging Cable,2,14.95,2019-01-01 14:45:00,225 West St, Los Angeles,CA,90001 +142918,Macbook Pro Laptop,1,1700.0,2019-01-08 23:38:00,405 Lakeview St, New York City,NY,10001 +142919,AA Batteries (4-pack),1,3.84,2019-01-11 17:43:00,57 2nd St, San Francisco,CA,94016 +142920,Lightning Charging Cable,1,14.95,2019-01-20 16:04:00,805 9th St, Dallas,TX,75001 +142921,AAA Batteries (4-pack),1,2.99,2019-01-24 15:19:00,295 North St, New York City,NY,10001 +142922,27in FHD Monitor,1,149.99,2019-01-27 12:48:00,641 Lincoln St, Dallas,TX,75001 +142923,Lightning Charging Cable,1,14.95,2019-01-04 23:17:00,949 2nd St, San Francisco,CA,94016 +142924,Macbook Pro Laptop,1,1700.0,2019-01-31 11:14:00,903 Lakeview St, Los Angeles,CA,90001 +142925,iPhone,1,700.0,2019-01-26 13:06:00,146 Washington St, New York City,NY,10001 +142925,Lightning Charging Cable,1,14.95,2019-01-26 13:06:00,146 Washington St, New York City,NY,10001 +142926,Apple Airpods Headphones,1,150.0,2019-01-09 11:50:00,809 Washington St, New York City,NY,10001 +142927,Apple Airpods Headphones,1,150.0,2019-01-19 03:08:00,863 12th St, San Francisco,CA,94016 +142928,Wired Headphones,1,11.99,2019-01-31 14:35:00,946 Adams St, San Francisco,CA,94016 +142929,Lightning Charging Cable,1,14.95,2019-01-09 17:04:00,644 Ridge St, San Francisco,CA,94016 +142930,Bose SoundSport Headphones,1,99.99,2019-01-14 12:00:00,258 Walnut St, Portland,ME,04101 +142931,USB-C Charging Cable,1,11.95,2019-01-26 00:58:00,129 Johnson St, Dallas,TX,75001 +142932,Vareebadd Phone,1,400.0,2019-01-11 10:24:00,97 Jefferson St, New York City,NY,10001 +142933,ThinkPad Laptop,1,999.99,2019-01-30 17:54:00,918 5th St, Dallas,TX,75001 +142934,Lightning Charging Cable,1,14.95,2019-01-31 20:50:00,253 South St, Boston,MA,02215 +142935,AAA Batteries (4-pack),2,2.99,2019-01-14 12:57:00,817 Hickory St, Boston,MA,02215 +142936,Bose SoundSport Headphones,1,99.99,2019-01-10 18:14:00,677 Sunset St, Seattle,WA,98101 +142937,USB-C Charging Cable,1,11.95,2019-01-31 21:24:00,494 Dogwood St, Portland,OR,97035 +142938,20in Monitor,1,109.99,2019-01-31 11:44:00,697 North St, Boston,MA,02215 +142939,LG Washing Machine,1,600.0,2019-01-25 12:35:00,5 Spruce St, San Francisco,CA,94016 +142940,20in Monitor,2,109.99,2019-01-12 08:40:00,315 Park St, Atlanta,GA,30301 +142941,AA Batteries (4-pack),1,3.84,2019-01-08 22:00:00,700 Highland St, Dallas,TX,75001 +142942,27in FHD Monitor,1,149.99,2019-01-25 00:53:00,584 Ridge St, Austin,TX,73301 +142943,Wired Headphones,1,11.99,2019-01-16 11:01:00,845 Elm St, New York City,NY,10001 +142944,Lightning Charging Cable,1,14.95,2019-01-10 21:59:00,329 12th St, San Francisco,CA,94016 +142945,Bose SoundSport Headphones,1,99.99,2019-01-04 11:16:00,441 Hickory St, Atlanta,GA,30301 +142946,AAA Batteries (4-pack),1,2.99,2019-01-31 12:45:00,474 Center St, Austin,TX,73301 +142947,AA Batteries (4-pack),1,3.84,2019-01-01 13:31:00,899 Main St, New York City,NY,10001 +142948,AAA Batteries (4-pack),1,2.99,2019-01-31 15:43:00,43 5th St, Dallas,TX,75001 +142949,27in FHD Monitor,1,149.99,2019-01-04 14:25:00,249 4th St, New York City,NY,10001 +142950,AA Batteries (4-pack),1,3.84,2019-01-27 10:09:00,589 Cedar St, Portland,ME,04101 +142951,Flatscreen TV,1,300.0,2019-01-27 15:20:00,751 Chestnut St, Dallas,TX,75001 +142952,27in 4K Gaming Monitor,1,389.99,2019-01-04 12:20:00,777 North St, Seattle,WA,98101 +142953,AAA Batteries (4-pack),1,2.99,2019-01-04 14:08:00,222 Lake St, Dallas,TX,75001 +142954,Apple Airpods Headphones,1,150.0,2019-01-22 12:48:00,741 6th St, Atlanta,GA,30301 +142955,AA Batteries (4-pack),2,3.84,2019-01-06 21:32:00,399 13th St, Austin,TX,73301 +142956,Apple Airpods Headphones,1,150.0,2019-01-03 08:21:00,189 Cedar St, Los Angeles,CA,90001 +142957,Apple Airpods Headphones,1,150.0,2019-01-26 17:26:00,126 Meadow St, San Francisco,CA,94016 +142958,27in 4K Gaming Monitor,1,389.99,2019-01-05 23:46:00,420 4th St, Seattle,WA,98101 +142959,Apple Airpods Headphones,1,150.0,2019-01-17 07:47:00,46 7th St, Portland,ME,04101 +142960,AAA Batteries (4-pack),1,2.99,2019-01-20 09:52:00,358 7th St, San Francisco,CA,94016 +142961,Apple Airpods Headphones,1,150.0,2019-01-27 08:19:00,325 South St, Los Angeles,CA,90001 +142962,USB-C Charging Cable,1,11.95,2019-01-11 23:04:00,795 Church St, Seattle,WA,98101 +142963,Wired Headphones,1,11.99,2019-01-14 17:12:00,70 12th St, New York City,NY,10001 +142964,20in Monitor,1,109.99,2019-01-22 19:19:00,28 Chestnut St, Portland,OR,97035 +142965,Google Phone,1,600.0,2019-01-05 18:22:00,878 Johnson St, Portland,OR,97035 +142965,USB-C Charging Cable,1,11.95,2019-01-05 18:22:00,878 Johnson St, Portland,OR,97035 +142966,Apple Airpods Headphones,1,150.0,2019-01-06 12:57:00,371 Ridge St, Dallas,TX,75001 +142967,27in 4K Gaming Monitor,1,389.99,2019-01-20 19:16:00,362 Sunset St, San Francisco,CA,94016 +142968,Flatscreen TV,1,300.0,2019-01-11 19:10:00,879 12th St, Portland,OR,97035 +142969,Apple Airpods Headphones,1,150.0,2019-01-13 16:47:00,769 Washington St, Portland,OR,97035 +142970,USB-C Charging Cable,1,11.95,2019-01-20 08:20:00,493 Dogwood St, Boston,MA,02215 +142971,Lightning Charging Cable,1,14.95,2019-01-27 09:53:00,32 Elm St, San Francisco,CA,94016 +142972,Google Phone,1,600.0,2019-01-06 18:30:00,521 Church St, Dallas,TX,75001 +142973,iPhone,1,700.0,2019-01-04 15:21:00,371 Church St, San Francisco,CA,94016 +142974,AA Batteries (4-pack),1,3.84,2019-01-25 21:55:00,920 Willow St, San Francisco,CA,94016 +142975,Lightning Charging Cable,2,14.95,2019-01-16 22:39:00,391 Pine St, Atlanta,GA,30301 +142976,Bose SoundSport Headphones,1,99.99,2019-01-04 09:26:00,921 Lake St, Austin,TX,73301 +142977,AAA Batteries (4-pack),1,2.99,2019-01-13 09:36:00,132 4th St, San Francisco,CA,94016 +142978,Wired Headphones,1,11.99,2019-01-18 19:10:00,726 Spruce St, San Francisco,CA,94016 +142979,Apple Airpods Headphones,1,150.0,2019-01-23 14:24:00,379 Center St, Boston,MA,02215 +142980,USB-C Charging Cable,1,11.95,2019-01-07 12:07:00,257 10th St, Austin,TX,73301 +142981,Apple Airpods Headphones,1,150.0,2019-01-24 23:26:00,39 Maple St, San Francisco,CA,94016 +142982,Lightning Charging Cable,1,14.95,2019-01-30 16:23:00,625 Meadow St, Seattle,WA,98101 +142983,Bose SoundSport Headphones,1,99.99,2019-01-29 18:41:00,955 Church St, Atlanta,GA,30301 +142984,AAA Batteries (4-pack),2,2.99,2019-01-07 21:04:00,590 Chestnut St, Atlanta,GA,30301 +142985,Wired Headphones,1,11.99,2019-01-19 09:37:00,220 North St, Seattle,WA,98101 +142986,AA Batteries (4-pack),2,3.84,2019-01-28 20:17:00,717 Lakeview St, Los Angeles,CA,90001 +142987,Lightning Charging Cable,1,14.95,2019-01-12 17:05:00,909 South St, Austin,TX,73301 +142988,Wired Headphones,1,11.99,2019-01-20 16:03:00,894 Jefferson St, New York City,NY,10001 +142989,Vareebadd Phone,1,400.0,2019-01-10 00:21:00,175 South St, Austin,TX,73301 +142989,USB-C Charging Cable,1,11.95,2019-01-10 00:21:00,175 South St, Austin,TX,73301 +142990,USB-C Charging Cable,1,11.95,2019-01-30 05:27:00,280 Walnut St, Dallas,TX,75001 +142991,AA Batteries (4-pack),2,3.84,2019-01-14 15:05:00,742 Jackson St, San Francisco,CA,94016 +142992,27in 4K Gaming Monitor,1,389.99,2019-01-13 19:53:00,808 Lakeview St, Los Angeles,CA,90001 +142993,USB-C Charging Cable,1,11.95,2019-01-08 05:14:00,372 6th St, San Francisco,CA,94016 +142994,Lightning Charging Cable,1,14.95,2019-01-01 19:00:00,971 8th St, San Francisco,CA,94016 +142995,Apple Airpods Headphones,1,150.0,2019-01-20 19:16:00,820 Cherry St, Boston,MA,02215 +142996,AAA Batteries (4-pack),1,2.99,2019-01-01 21:01:00,402 Chestnut St, Boston,MA,02215 +142997,iPhone,1,700.0,2019-01-26 01:52:00,22 Main St, New York City,NY,10001 +142997,Wired Headphones,1,11.99,2019-01-26 01:52:00,22 Main St, New York City,NY,10001 +142998,27in FHD Monitor,1,149.99,2019-01-07 15:17:00,386 Wilson St, San Francisco,CA,94016 +142999,AAA Batteries (4-pack),1,2.99,2019-01-27 04:22:00,685 Spruce St, San Francisco,CA,94016 +143000,USB-C Charging Cable,1,11.95,2019-01-27 20:47:00,97 Lake St, San Francisco,CA,94016 +143001,AAA Batteries (4-pack),5,2.99,2019-01-30 10:26:00,215 Walnut St, Los Angeles,CA,90001 +143002,Lightning Charging Cable,1,14.95,2019-01-24 11:27:00,292 Pine St, Portland,OR,97035 +143003,Lightning Charging Cable,1,14.95,2019-01-17 10:58:00,265 Lakeview St, Los Angeles,CA,90001 +143004,27in 4K Gaming Monitor,1,389.99,2019-01-18 17:56:00,294 Ridge St, Boston,MA,02215 +143005,27in 4K Gaming Monitor,1,389.99,2019-01-27 17:24:00,581 Spruce St, San Francisco,CA,94016 +143006,Google Phone,1,600.0,2019-01-29 14:17:00,785 Cedar St, Boston,MA,02215 +143006,Bose SoundSport Headphones,1,99.99,2019-01-29 14:17:00,785 Cedar St, Boston,MA,02215 +143006,Wired Headphones,1,11.99,2019-01-29 14:17:00,785 Cedar St, Boston,MA,02215 +143007,34in Ultrawide Monitor,1,379.99,2019-01-03 20:20:00,355 Pine St, Dallas,TX,75001 +143008,Bose SoundSport Headphones,1,99.99,2019-01-13 08:27:00,113 River St, Boston,MA,02215 +143009,Wired Headphones,1,11.99,2019-01-10 21:34:00,856 7th St, Dallas,TX,75001 +143010,Wired Headphones,1,11.99,2019-01-13 10:41:00,510 Maple St, Los Angeles,CA,90001 +143011,Bose SoundSport Headphones,1,99.99,2019-01-13 09:09:00,601 5th St, San Francisco,CA,94016 +143012,AAA Batteries (4-pack),1,2.99,2019-01-30 18:38:00,701 Highland St, New York City,NY,10001 +143013,Google Phone,1,600.0,2019-01-17 22:18:00,801 Lincoln St, Seattle,WA,98101 +143014,Bose SoundSport Headphones,1,99.99,2019-01-13 20:52:00,742 Meadow St, San Francisco,CA,94016 +143015,AA Batteries (4-pack),1,3.84,2019-01-22 15:17:00,150 7th St, New York City,NY,10001 +143016,AA Batteries (4-pack),1,3.84,2019-01-11 07:55:00,752 1st St, Seattle,WA,98101 +143017,AA Batteries (4-pack),1,3.84,2019-01-20 02:53:00,174 Maple St, Los Angeles,CA,90001 +143018,Lightning Charging Cable,1,14.95,2019-01-03 10:02:00,358 North St, Seattle,WA,98101 +143019,Macbook Pro Laptop,1,1700.0,2019-01-18 12:41:00,195 South St, Atlanta,GA,30301 +143020,ThinkPad Laptop,1,999.99,2019-01-31 17:12:00,628 Maple St, New York City,NY,10001 +143021,iPhone,1,700.0,2019-01-26 09:32:00,181 Wilson St, San Francisco,CA,94016 +143021,Lightning Charging Cable,1,14.95,2019-01-26 09:32:00,181 Wilson St, San Francisco,CA,94016 +143021,Apple Airpods Headphones,1,150.0,2019-01-26 09:32:00,181 Wilson St, San Francisco,CA,94016 +143022,Google Phone,1,600.0,2019-01-27 19:02:00,435 Hickory St, Dallas,TX,75001 +143023,USB-C Charging Cable,1,11.95,2019-01-21 12:33:00,75 Elm St, Atlanta,GA,30301 +143024,Macbook Pro Laptop,1,1700.0,2019-01-27 12:48:00,412 Cherry St, Portland,ME,04101 +143025,27in FHD Monitor,1,149.99,2019-01-20 13:37:00,47 Walnut St, San Francisco,CA,94016 +143026,USB-C Charging Cable,1,11.95,2019-01-08 21:22:00,125 Wilson St, New York City,NY,10001 +143027,27in FHD Monitor,1,149.99,2019-01-24 20:27:00,77 Sunset St, Atlanta,GA,30301 +143028,AAA Batteries (4-pack),2,2.99,2019-01-08 14:35:00,478 Lake St, Boston,MA,02215 +143029,Lightning Charging Cable,1,14.95,2019-01-21 19:37:00,933 8th St, Atlanta,GA,30301 +143030,Lightning Charging Cable,1,14.95,2019-01-09 15:23:00,877 Chestnut St, Boston,MA,02215 +143031,Wired Headphones,1,11.99,2019-01-18 16:23:00,640 Wilson St, Los Angeles,CA,90001 +143032,Bose SoundSport Headphones,1,99.99,2019-01-08 20:25:00,398 9th St, Austin,TX,73301 +143033,AAA Batteries (4-pack),1,2.99,2019-01-14 16:50:00,464 Lincoln St, Austin,TX,73301 +143034,LG Dryer,1,600.0,2019-01-31 09:26:00,714 Washington St, San Francisco,CA,94016 +143035,Apple Airpods Headphones,1,150.0,2019-01-08 14:47:00,560 Washington St, San Francisco,CA,94016 +143036,20in Monitor,1,109.99,2019-01-29 09:20:00,752 Adams St, San Francisco,CA,94016 +143037,AAA Batteries (4-pack),1,2.99,2019-01-18 22:40:00,626 Maple St, San Francisco,CA,94016 +143038,Wired Headphones,1,11.99,2019-01-04 12:53:00,992 Lake St, Seattle,WA,98101 +143039,USB-C Charging Cable,1,11.95,2019-01-28 07:11:00,920 11th St, Austin,TX,73301 +143040,iPhone,1,700.0,2019-01-24 21:05:00,381 Maple St, New York City,NY,10001 +143040,Lightning Charging Cable,1,14.95,2019-01-24 21:05:00,381 Maple St, New York City,NY,10001 +143041,Wired Headphones,1,11.99,2019-01-22 14:48:00,937 4th St, San Francisco,CA,94016 +143042,20in Monitor,1,109.99,2019-01-07 07:42:00,612 10th St, New York City,NY,10001 +143043,AAA Batteries (4-pack),1,2.99,2019-01-26 15:07:00,550 1st St, New York City,NY,10001 +143044,USB-C Charging Cable,1,11.95,2019-01-03 19:19:00,654 Meadow St, San Francisco,CA,94016 +143045,Lightning Charging Cable,1,14.95,2019-01-15 09:25:00,4 Main St, San Francisco,CA,94016 +143046,USB-C Charging Cable,1,11.95,2019-01-14 14:42:00,808 South St, Los Angeles,CA,90001 +143047,Wired Headphones,2,11.99,2019-01-23 08:08:00,223 Cedar St, Los Angeles,CA,90001 +143048,AAA Batteries (4-pack),1,2.99,2019-01-17 16:36:00,679 Spruce St, San Francisco,CA,94016 +143049,Apple Airpods Headphones,1,150.0,2019-01-22 17:39:00,837 10th St, Dallas,TX,75001 +143050,AAA Batteries (4-pack),1,2.99,2019-01-03 16:49:00,8 14th St, Seattle,WA,98101 +143051,iPhone,1,700.0,2019-01-25 19:53:00,500 Dogwood St, Boston,MA,02215 +143052,34in Ultrawide Monitor,1,379.99,2019-01-19 18:53:00,421 5th St, New York City,NY,10001 +143053,AAA Batteries (4-pack),2,2.99,2019-01-18 13:24:00,926 11th St, Seattle,WA,98101 +143054,Bose SoundSport Headphones,1,99.99,2019-01-27 14:53:00,701 14th St, Atlanta,GA,30301 +143055,Apple Airpods Headphones,1,150.0,2019-01-31 21:53:00,303 Chestnut St, Boston,MA,02215 +143056,27in FHD Monitor,1,149.99,2019-01-29 22:15:00,335 1st St, Boston,MA,02215 +143057,Flatscreen TV,1,300.0,2019-01-21 12:35:00,330 Willow St, San Francisco,CA,94016 +143058,Google Phone,1,600.0,2019-01-17 11:01:00,130 Walnut St, Boston,MA,02215 +143059,USB-C Charging Cable,1,11.95,2019-01-15 08:48:00,726 Johnson St, Los Angeles,CA,90001 +143060,Wired Headphones,1,11.99,2019-01-21 16:20:00,994 12th St, Boston,MA,02215 +143060,AA Batteries (4-pack),3,3.84,2019-01-21 16:20:00,994 12th St, Boston,MA,02215 +143061,iPhone,1,700.0,2019-01-13 20:25:00,265 Ridge St, Los Angeles,CA,90001 +143062,20in Monitor,1,109.99,2019-01-26 14:14:00,615 Main St, Los Angeles,CA,90001 +143062,USB-C Charging Cable,2,11.95,2019-01-26 14:14:00,615 Main St, Los Angeles,CA,90001 +143063,USB-C Charging Cable,1,11.95,2019-01-17 14:27:00,603 West St, San Francisco,CA,94016 +143064,USB-C Charging Cable,1,11.95,2019-01-15 14:26:00,137 14th St, New York City,NY,10001 +143065,Lightning Charging Cable,1,14.95,2019-01-19 10:16:00,322 6th St, San Francisco,CA,94016 +143065,Apple Airpods Headphones,1,150.0,2019-01-19 10:16:00,322 6th St, San Francisco,CA,94016 +143066,USB-C Charging Cable,1,11.95,2019-01-16 23:13:00,855 2nd St, Boston,MA,02215 +143067,iPhone,1,700.0,2019-01-20 09:23:00,785 6th St, San Francisco,CA,94016 +143067,Wired Headphones,1,11.99,2019-01-20 09:23:00,785 6th St, San Francisco,CA,94016 +143068,Bose SoundSport Headphones,1,99.99,2019-01-25 11:49:00,587 North St, San Francisco,CA,94016 +143068,Apple Airpods Headphones,1,150.0,2019-01-25 11:49:00,587 North St, San Francisco,CA,94016 +143069,Wired Headphones,1,11.99,2019-01-26 21:00:00,256 7th St, Los Angeles,CA,90001 +143070,27in FHD Monitor,1,149.99,2019-01-22 17:11:00,151 Pine St, Dallas,TX,75001 +143071,AAA Batteries (4-pack),1,2.99,2019-01-20 15:41:00,518 Adams St, San Francisco,CA,94016 +143072,Lightning Charging Cable,1,14.95,2019-01-10 19:15:00,8 Jackson St, Los Angeles,CA,90001 +143073,AAA Batteries (4-pack),1,2.99,2019-01-20 14:10:00,489 Ridge St, San Francisco,CA,94016 +143074,Google Phone,1,600.0,2019-01-22 13:49:00,855 Walnut St, Los Angeles,CA,90001 +143074,USB-C Charging Cable,1,11.95,2019-01-22 13:49:00,855 Walnut St, Los Angeles,CA,90001 +143075,27in 4K Gaming Monitor,1,389.99,2019-01-14 10:25:00,301 Church St, Portland,OR,97035 +143076,27in 4K Gaming Monitor,1,389.99,2019-01-04 14:04:00,892 Cedar St, San Francisco,CA,94016 +143077,Wired Headphones,1,11.99,2019-01-27 00:40:00,552 Hickory St, San Francisco,CA,94016 +143078,Lightning Charging Cable,1,14.95,2019-01-22 15:49:00,163 Wilson St, San Francisco,CA,94016 +143079,20in Monitor,1,109.99,2019-01-11 12:54:00,641 Lincoln St, Atlanta,GA,30301 +143080,Apple Airpods Headphones,1,150.0,2019-01-24 23:06:00,389 Cherry St, Dallas,TX,75001 +143081,Wired Headphones,1,11.99,2019-01-19 15:42:00,997 12th St, Atlanta,GA,30301 +143082,Lightning Charging Cable,1,14.95,2019-01-14 13:04:00,885 Church St, Austin,TX,73301 +143083,Lightning Charging Cable,1,14.95,2019-01-31 11:26:00,525 5th St, Boston,MA,02215 +143084,USB-C Charging Cable,1,11.95,2019-01-04 08:07:00,408 Jefferson St, San Francisco,CA,94016 +143085,Flatscreen TV,1,300.0,2019-01-24 18:38:00,364 13th St, Los Angeles,CA,90001 +143086,AAA Batteries (4-pack),1,2.99,2019-01-22 13:08:00,112 Cherry St, Boston,MA,02215 +143087,ThinkPad Laptop,1,999.99,2019-01-08 00:04:00,930 Cedar St, Seattle,WA,98101 +143088,20in Monitor,1,109.99,2019-01-26 08:50:00,367 1st St, Los Angeles,CA,90001 +143089,Lightning Charging Cable,1,14.95,2019-01-09 11:14:00,646 4th St, San Francisco,CA,94016 +143090,Wired Headphones,1,11.99,2019-01-22 01:39:00,696 Hill St, San Francisco,CA,94016 +143091,Apple Airpods Headphones,1,150.0,2019-01-27 11:40:00,55 Walnut St, Portland,OR,97035 +143092,34in Ultrawide Monitor,1,379.99,2019-01-02 09:03:00,43 14th St, San Francisco,CA,94016 +143093,LG Dryer,1,600.0,2019-01-10 13:50:00,606 5th St, Austin,TX,73301 +143094,27in FHD Monitor,1,149.99,2019-01-20 10:04:00,514 Main St, Austin,TX,73301 +143095,Lightning Charging Cable,1,14.95,2019-01-22 12:09:00,848 Cedar St, Los Angeles,CA,90001 +143095,Apple Airpods Headphones,1,150.0,2019-01-22 12:09:00,848 Cedar St, Los Angeles,CA,90001 +143096,LG Washing Machine,1,600.0,2019-01-19 18:33:00,89 Center St, Seattle,WA,98101 +143097,Wired Headphones,2,11.99,2019-01-03 08:16:00,102 11th St, San Francisco,CA,94016 +143098,AA Batteries (4-pack),2,3.84,2019-01-04 17:29:00,305 Center St, New York City,NY,10001 +143099,Wired Headphones,1,11.99,2019-01-01 18:34:00,51 Main St, Los Angeles,CA,90001 +143100,Apple Airpods Headphones,1,150.0,2019-01-13 06:30:00,139 10th St, San Francisco,CA,94016 +143101,USB-C Charging Cable,1,11.95,2019-01-22 15:49:00,808 Wilson St, Austin,TX,73301 +143102,27in FHD Monitor,1,149.99,2019-01-30 12:10:00,798 5th St, Los Angeles,CA,90001 +143103,AA Batteries (4-pack),1,3.84,2019-01-07 12:14:00,808 North St, Dallas,TX,75001 +143104,Lightning Charging Cable,1,14.95,2019-01-23 18:31:00,794 Walnut St, Los Angeles,CA,90001 +143105,Google Phone,1,600.0,2019-01-17 13:01:00,990 Adams St, Seattle,WA,98101 +143106,Bose SoundSport Headphones,1,99.99,2019-01-16 23:07:00,731 Willow St, San Francisco,CA,94016 +143107,Wired Headphones,1,11.99,2019-01-16 23:55:00,500 6th St, Portland,OR,97035 +143108,20in Monitor,1,109.99,2019-01-04 11:37:00,64 Maple St, Portland,OR,97035 +143109,iPhone,1,700.0,2019-01-10 16:46:00,118 Adams St, New York City,NY,10001 +143110,AAA Batteries (4-pack),2,2.99,2019-01-20 09:49:00,771 South St, San Francisco,CA,94016 +143111,iPhone,1,700.0,2019-01-21 20:44:00,641 Washington St, Seattle,WA,98101 +143111,Lightning Charging Cable,1,14.95,2019-01-21 20:44:00,641 Washington St, Seattle,WA,98101 +143111,Wired Headphones,1,11.99,2019-01-21 20:44:00,641 Washington St, Seattle,WA,98101 +143112,AAA Batteries (4-pack),1,2.99,2019-01-10 00:04:00,472 Willow St, Los Angeles,CA,90001 +143113,Vareebadd Phone,1,400.0,2019-01-30 16:46:00,941 Lincoln St, Boston,MA,02215 +143114,Bose SoundSport Headphones,1,99.99,2019-01-22 17:23:00,926 14th St, Portland,OR,97035 +143115,USB-C Charging Cable,1,11.95,2019-01-02 00:24:00,200 8th St, Boston,MA,02215 +143116,Lightning Charging Cable,1,14.95,2019-01-09 21:33:00,843 River St, Boston,MA,02215 +143117,USB-C Charging Cable,1,11.95,2019-01-15 10:09:00,135 Jefferson St, Los Angeles,CA,90001 +143118,Bose SoundSport Headphones,1,99.99,2019-01-21 08:33:00,415 Church St, San Francisco,CA,94016 +143119,AAA Batteries (4-pack),2,2.99,2019-01-23 18:37:00,133 Hickory St, Austin,TX,73301 +143120,AAA Batteries (4-pack),1,2.99,2019-01-16 12:20:00,365 West St, San Francisco,CA,94016 +143121,Wired Headphones,1,11.99,2019-01-04 20:04:00,171 Willow St, San Francisco,CA,94016 +143122,34in Ultrawide Monitor,1,379.99,2019-01-17 16:43:00,845 4th St, Portland,OR,97035 +143123,Flatscreen TV,1,300.0,2019-01-16 08:03:00,323 North St, Austin,TX,73301 +143124,Wired Headphones,1,11.99,2019-01-09 08:08:00,601 Forest St, San Francisco,CA,94016 +143125,AAA Batteries (4-pack),1,2.99,2019-01-15 21:42:00,184 4th St, Atlanta,GA,30301 +143126,AAA Batteries (4-pack),1,2.99,2019-01-04 15:11:00,133 Main St, Dallas,TX,75001 +143127,LG Dryer,1,600.0,2019-01-06 23:06:00,748 Walnut St, San Francisco,CA,94016 +143128,Bose SoundSport Headphones,1,99.99,2019-01-29 15:58:00,149 River St, Atlanta,GA,30301 +143129,27in FHD Monitor,1,149.99,2019-01-14 18:54:00,311 6th St, San Francisco,CA,94016 +143130,27in FHD Monitor,1,149.99,2019-01-01 14:24:00,140 8th St, Seattle,WA,98101 +143131,Apple Airpods Headphones,1,150.0,2019-01-01 18:07:00,997 Jefferson St, Portland,OR,97035 +143132,27in FHD Monitor,1,149.99,2019-01-02 22:23:00,107 Pine St, New York City,NY,10001 +143133,AA Batteries (4-pack),1,3.84,2019-01-23 08:00:00,871 Jackson St, Boston,MA,02215 +143134,USB-C Charging Cable,1,11.95,2019-01-08 09:59:00,22 Madison St, Los Angeles,CA,90001 +143135,Wired Headphones,1,11.99,2019-01-22 01:21:00,203 Hickory St, Boston,MA,02215 +143136,27in 4K Gaming Monitor,1,389.99,2019-01-11 16:00:00,546 Maple St, Seattle,WA,98101 +143137,Lightning Charging Cable,1,14.95,2019-01-17 19:57:00,252 14th St, Atlanta,GA,30301 +143138,AA Batteries (4-pack),1,3.84,2019-01-29 14:07:00,358 Cedar St, Los Angeles,CA,90001 +143139,AAA Batteries (4-pack),1,2.99,2019-01-05 23:13:00,871 Center St, San Francisco,CA,94016 +143140,iPhone,1,700.0,2019-01-23 05:46:00,227 Hill St, Atlanta,GA,30301 +143141,Apple Airpods Headphones,1,150.0,2019-01-27 13:35:00,178 Sunset St, Los Angeles,CA,90001 +143142,Wired Headphones,1,11.99,2019-01-13 10:27:00,436 Lincoln St, Dallas,TX,75001 +143142,ThinkPad Laptop,1,999.99,2019-01-13 10:27:00,436 Lincoln St, Dallas,TX,75001 +143143,LG Dryer,1,600.0,2019-01-19 13:44:00,501 Center St, New York City,NY,10001 +143143,Flatscreen TV,1,300.0,2019-01-19 13:44:00,501 Center St, New York City,NY,10001 +143144,27in 4K Gaming Monitor,1,389.99,2019-01-04 17:10:00,337 Madison St, New York City,NY,10001 +143145,AA Batteries (4-pack),1,3.84,2019-01-11 23:17:00,223 Wilson St, Dallas,TX,75001 +143146,Google Phone,1,600.0,2019-01-09 17:01:00,385 Meadow St, New York City,NY,10001 +143146,USB-C Charging Cable,1,11.95,2019-01-09 17:01:00,385 Meadow St, New York City,NY,10001 +143147,ThinkPad Laptop,1,999.99,2019-01-01 21:28:00,331 Sunset St, Los Angeles,CA,90001 +143148,27in FHD Monitor,1,149.99,2019-01-28 16:59:00,277 Jackson St, San Francisco,CA,94016 +143149,27in FHD Monitor,1,149.99,2019-01-25 18:27:00,207 13th St, Atlanta,GA,30301 +143150,Apple Airpods Headphones,1,150.0,2019-01-20 12:39:00,533 Main St, Seattle,WA,98101 +143151,AAA Batteries (4-pack),1,2.99,2019-01-25 05:31:00,405 Cherry St, Los Angeles,CA,90001 +143152,27in FHD Monitor,1,149.99,2019-01-30 00:32:00,13 Spruce St, Los Angeles,CA,90001 +143153,AA Batteries (4-pack),1,3.84,2019-01-28 18:56:00,69 Dogwood St, Dallas,TX,75001 +143154,Lightning Charging Cable,1,14.95,2019-01-19 22:10:00,362 Sunset St, New York City,NY,10001 +143155,27in FHD Monitor,1,149.99,2019-01-11 19:31:00,855 Maple St, San Francisco,CA,94016 +143156,27in FHD Monitor,1,149.99,2019-01-27 22:52:00,92 4th St, Los Angeles,CA,90001 +143157,27in FHD Monitor,1,149.99,2019-01-29 15:15:00,725 Cedar St, New York City,NY,10001 +143158,USB-C Charging Cable,1,11.95,2019-01-20 03:28:00,453 Ridge St, Boston,MA,02215 +143159,AAA Batteries (4-pack),3,2.99,2019-01-20 19:15:00,409 13th St, New York City,NY,10001 +143160,ThinkPad Laptop,1,999.99,2019-01-28 09:07:00,887 Pine St, Boston,MA,02215 +143161,AA Batteries (4-pack),1,3.84,2019-01-02 08:47:00,938 11th St, San Francisco,CA,94016 +143162,Bose SoundSport Headphones,1,99.99,2019-01-24 20:33:00,807 Meadow St, San Francisco,CA,94016 +143163,Bose SoundSport Headphones,1,99.99,2019-01-27 14:13:00,798 Main St, Boston,MA,02215 +143164,Lightning Charging Cable,1,14.95,2019-01-11 00:28:00,462 Highland St, New York City,NY,10001 +143165,Lightning Charging Cable,1,14.95,2019-01-29 17:12:00,327 Cherry St, Austin,TX,73301 +143166,34in Ultrawide Monitor,1,379.99,2019-01-08 14:32:00,939 10th St, Los Angeles,CA,90001 +143167,34in Ultrawide Monitor,1,379.99,2019-01-27 22:19:00,640 Dogwood St, San Francisco,CA,94016 +143168,AAA Batteries (4-pack),1,2.99,2019-01-08 18:22:00,141 Jackson St, Boston,MA,02215 +143169,20in Monitor,1,109.99,2019-01-28 16:41:00,980 13th St, Los Angeles,CA,90001 +143170,Apple Airpods Headphones,1,150.0,2019-01-19 17:27:00,425 River St, San Francisco,CA,94016 +143171,34in Ultrawide Monitor,1,379.99,2019-01-16 19:37:00,109 Forest St, Portland,OR,97035 +143172,USB-C Charging Cable,1,11.95,2019-01-02 23:32:00,544 Cherry St, San Francisco,CA,94016 +143173,27in FHD Monitor,1,149.99,2019-01-30 18:51:00,432 Madison St, Dallas,TX,75001 +143174,USB-C Charging Cable,1,11.95,2019-01-05 13:15:00,400 Willow St, New York City,NY,10001 +143175,ThinkPad Laptop,1,999.99,2019-01-30 12:38:00,741 Sunset St, Los Angeles,CA,90001 +143176,Wired Headphones,1,11.99,2019-01-17 08:52:00,885 10th St, Los Angeles,CA,90001 +143177,Wired Headphones,1,11.99,2019-01-12 22:01:00,983 12th St, San Francisco,CA,94016 +143178,Wired Headphones,1,11.99,2019-01-10 13:13:00,662 8th St, Los Angeles,CA,90001 +143179,Wired Headphones,1,11.99,2019-01-02 10:25:00,919 12th St, San Francisco,CA,94016 +143180,USB-C Charging Cable,1,11.95,2019-01-25 06:26:00,866 Chestnut St, San Francisco,CA,94016 +143181,27in FHD Monitor,1,149.99,2019-01-02 23:06:00,600 Cherry St, Boston,MA,02215 +143182,27in FHD Monitor,1,149.99,2019-01-03 20:21:00,548 Johnson St, Seattle,WA,98101 +143183,Lightning Charging Cable,2,14.95,2019-01-03 13:10:00,484 West St, New York City,NY,10001 +143184,Lightning Charging Cable,1,14.95,2019-01-03 11:07:00,296 Ridge St, Los Angeles,CA,90001 +143185,Apple Airpods Headphones,1,150.0,2019-01-05 18:58:00,791 Pine St, Boston,MA,02215 +143186,27in 4K Gaming Monitor,1,389.99,2019-01-07 00:15:00,432 Highland St, Dallas,TX,75001 +143187,Google Phone,1,600.0,2019-01-24 10:44:00,304 Hickory St, San Francisco,CA,94016 +143188,27in 4K Gaming Monitor,1,389.99,2019-01-19 21:41:00,964 9th St, New York City,NY,10001 +143189,27in FHD Monitor,1,149.99,2019-01-15 16:18:00,210 Jackson St, Austin,TX,73301 +143190,Wired Headphones,1,11.99,2019-01-09 21:11:00,37 Meadow St, San Francisco,CA,94016 +143191,AAA Batteries (4-pack),2,2.99,2019-01-17 12:01:00,396 14th St, Dallas,TX,75001 +143192,AAA Batteries (4-pack),1,2.99,2019-01-16 12:37:00,257 12th St, San Francisco,CA,94016 +143193,20in Monitor,1,109.99,2019-01-24 07:33:00,737 Lincoln St, San Francisco,CA,94016 +143194,Lightning Charging Cable,1,14.95,2019-01-21 21:11:00,556 Park St, New York City,NY,10001 +143195,AAA Batteries (4-pack),1,2.99,2019-01-19 10:03:00,147 River St, San Francisco,CA,94016 +143196,Vareebadd Phone,1,400.0,2019-01-20 18:45:00,670 Wilson St, New York City,NY,10001 +143197,Bose SoundSport Headphones,1,99.99,2019-01-07 10:07:00,15 4th St, Boston,MA,02215 +143198,AA Batteries (4-pack),1,3.84,2019-01-05 16:40:00,820 Walnut St, Atlanta,GA,30301 +143199,Bose SoundSport Headphones,1,99.99,2019-01-30 07:49:00,321 5th St, San Francisco,CA,94016 +143200,Macbook Pro Laptop,1,1700.0,2019-01-24 18:55:00,170 5th St, Dallas,TX,75001 +143201,Google Phone,1,600.0,2019-01-09 13:22:00,166 7th St, Portland,OR,97035 +143202,ThinkPad Laptop,1,999.99,2019-01-01 18:39:00,129 Walnut St, Los Angeles,CA,90001 +143203,Wired Headphones,1,11.99,2019-01-19 16:51:00,148 2nd St, Dallas,TX,75001 +143204,AA Batteries (4-pack),2,3.84,2019-01-15 15:16:00,465 River St, San Francisco,CA,94016 +143205,AAA Batteries (4-pack),4,2.99,2019-01-24 21:40:00,111 Main St, Atlanta,GA,30301 +143206,AA Batteries (4-pack),1,3.84,2019-01-05 07:57:00,525 11th St, New York City,NY,10001 +143207,AA Batteries (4-pack),1,3.84,2019-01-15 23:54:00,254 Chestnut St, Dallas,TX,75001 +143208,Wired Headphones,1,11.99,2019-01-28 12:10:00,987 Spruce St, Los Angeles,CA,90001 +143209,20in Monitor,1,109.99,2019-01-25 22:21:00,373 Chestnut St, San Francisco,CA,94016 +143210,Wired Headphones,1,11.99,2019-01-04 10:42:00,245 Washington St, Los Angeles,CA,90001 +143211,AAA Batteries (4-pack),1,2.99,2019-01-05 11:08:00,608 Church St, Atlanta,GA,30301 +143211,Apple Airpods Headphones,1,150.0,2019-01-05 11:08:00,608 Church St, Atlanta,GA,30301 +143212,Lightning Charging Cable,1,14.95,2019-01-22 19:40:00,889 Pine St, Boston,MA,02215 +143213,Lightning Charging Cable,1,14.95,2019-01-29 05:33:00,345 Lincoln St, Boston,MA,02215 +143214,AAA Batteries (4-pack),2,2.99,2019-01-03 20:52:00,776 Forest St, Boston,MA,02215 +143215,AAA Batteries (4-pack),1,2.99,2019-01-26 15:32:00,280 Lakeview St, Seattle,WA,98101 +143216,AAA Batteries (4-pack),1,2.99,2019-01-13 07:00:00,166 River St, Seattle,WA,98101 +143217,27in 4K Gaming Monitor,1,389.99,2019-01-06 17:05:00,331 North St, Atlanta,GA,30301 +143218,Lightning Charging Cable,1,14.95,2019-01-07 12:15:00,192 Hickory St, Atlanta,GA,30301 +143219,Apple Airpods Headphones,1,150.0,2019-01-26 17:31:00,693 Dogwood St, Los Angeles,CA,90001 +143220,Bose SoundSport Headphones,1,99.99,2019-01-24 22:40:00,387 Church St, San Francisco,CA,94016 +143221,AAA Batteries (4-pack),1,2.99,2019-01-25 17:32:00,106 Sunset St, New York City,NY,10001 +143222,AA Batteries (4-pack),1,3.84,2019-01-22 09:16:00,975 Elm St, San Francisco,CA,94016 +143223,Bose SoundSport Headphones,1,99.99,2019-01-16 10:05:00,757 Elm St, Dallas,TX,75001 +143224,AA Batteries (4-pack),1,3.84,2019-01-08 17:04:00,731 Lake St, Portland,OR,97035 +143225,AAA Batteries (4-pack),2,2.99,2019-01-27 11:28:00,229 North St, New York City,NY,10001 +143226,iPhone,1,700.0,2019-01-05 22:46:00,612 5th St, Los Angeles,CA,90001 +143227,USB-C Charging Cable,1,11.95,2019-01-08 10:53:00,326 Maple St, San Francisco,CA,94016 +143228,USB-C Charging Cable,1,11.95,2019-01-04 09:08:00,389 Hickory St, San Francisco,CA,94016 +143229,USB-C Charging Cable,2,11.95,2019-01-19 12:16:00,147 1st St, Seattle,WA,98101 +143230,USB-C Charging Cable,1,11.95,2019-01-28 06:38:00,288 10th St, Los Angeles,CA,90001 +143231,USB-C Charging Cable,1,11.95,2019-01-19 00:26:00,372 4th St, Los Angeles,CA,90001 +143232,USB-C Charging Cable,1,11.95,2019-01-23 20:53:00,910 6th St, Seattle,WA,98101 +143233,27in FHD Monitor,1,149.99,2019-01-17 17:16:00,692 Main St, Los Angeles,CA,90001 +143234,AAA Batteries (4-pack),1,2.99,2019-01-25 13:50:00,135 Church St, Austin,TX,73301 +143235,Wired Headphones,1,11.99,2019-01-06 04:24:00,647 4th St, San Francisco,CA,94016 +143236,Apple Airpods Headphones,1,150.0,2019-01-22 11:13:00,787 5th St, San Francisco,CA,94016 +143237,27in FHD Monitor,1,149.99,2019-01-12 13:23:00,261 Wilson St, New York City,NY,10001 +143238,AA Batteries (4-pack),1,3.84,2019-01-21 08:56:00,630 Madison St, Atlanta,GA,30301 +143239,USB-C Charging Cable,1,11.95,2019-01-03 13:02:00,263 Elm St, Dallas,TX,75001 +143240,iPhone,1,700.0,2019-01-08 21:04:00,131 River St, Dallas,TX,75001 +143241,Wired Headphones,1,11.99,2019-01-11 11:39:00,234 Church St, Austin,TX,73301 +143242,Bose SoundSport Headphones,1,99.99,2019-01-18 10:00:00,449 South St, San Francisco,CA,94016 +143243,iPhone,1,700.0,2019-01-10 19:02:00,550 Cherry St, San Francisco,CA,94016 +143243,Lightning Charging Cable,1,14.95,2019-01-10 19:02:00,550 Cherry St, San Francisco,CA,94016 +143243,Wired Headphones,1,11.99,2019-01-10 19:02:00,550 Cherry St, San Francisco,CA,94016 +143244,27in 4K Gaming Monitor,1,389.99,2019-01-16 11:48:00,137 Dogwood St, New York City,NY,10001 +143245,Bose SoundSport Headphones,1,99.99,2019-01-30 18:11:00,559 North St, Los Angeles,CA,90001 +143246,Bose SoundSport Headphones,1,99.99,2019-01-15 08:48:00,932 Maple St, Portland,OR,97035 +143247,Bose SoundSport Headphones,1,99.99,2019-01-23 18:50:00,391 Adams St, New York City,NY,10001 +143248,Bose SoundSport Headphones,1,99.99,2019-01-20 13:20:00,90 Highland St, New York City,NY,10001 +143249,ThinkPad Laptop,1,999.99,2019-01-28 22:04:00,839 Ridge St, San Francisco,CA,94016 +143250,AAA Batteries (4-pack),1,2.99,2019-01-05 14:29:00,725 12th St, Los Angeles,CA,90001 +143251,Bose SoundSport Headphones,1,99.99,2019-01-08 19:34:00,531 9th St, Seattle,WA,98101 +143252,Lightning Charging Cable,1,14.95,2019-01-03 17:27:00,811 Forest St, San Francisco,CA,94016 +143253,USB-C Charging Cable,1,11.95,2019-01-26 13:19:00,378 Willow St, Dallas,TX,75001 +143254,Bose SoundSport Headphones,1,99.99,2019-01-05 06:04:00,598 4th St, Boston,MA,02215 +143255,USB-C Charging Cable,1,11.95,2019-01-28 23:04:00,133 2nd St, Portland,OR,97035 +143256,Bose SoundSport Headphones,1,99.99,2019-01-04 12:23:00,722 10th St, San Francisco,CA,94016 +143257,Apple Airpods Headphones,1,150.0,2019-01-16 11:29:00,292 Maple St, Los Angeles,CA,90001 +143258,USB-C Charging Cable,1,11.95,2019-01-29 21:20:00,636 7th St, Boston,MA,02215 +143259,Google Phone,1,600.0,2019-01-19 13:39:00,704 Jackson St, Seattle,WA,98101 +143259,USB-C Charging Cable,1,11.95,2019-01-19 13:39:00,704 Jackson St, Seattle,WA,98101 +143260,Bose SoundSport Headphones,1,99.99,2019-01-24 18:00:00,635 Madison St, Seattle,WA,98101 +143261,27in FHD Monitor,1,149.99,2019-01-19 11:39:00,62 Sunset St, San Francisco,CA,94016 +143262,Bose SoundSport Headphones,1,99.99,2019-01-07 19:53:00,780 13th St, New York City,NY,10001 +143263,Wired Headphones,2,11.99,2019-01-06 18:19:00,672 Lakeview St, San Francisco,CA,94016 +143264,AAA Batteries (4-pack),1,2.99,2019-01-20 17:34:00,381 Wilson St, San Francisco,CA,94016 +143265,Lightning Charging Cable,1,14.95,2019-01-12 16:57:00,820 River St, Boston,MA,02215 +143266,Lightning Charging Cable,1,14.95,2019-01-09 09:08:00,806 West St, New York City,NY,10001 +143267,27in 4K Gaming Monitor,1,389.99,2019-01-17 17:41:00,660 6th St, Boston,MA,02215 +143268,27in 4K Gaming Monitor,1,389.99,2019-01-07 10:28:00,744 10th St, Atlanta,GA,30301 +143269,20in Monitor,1,109.99,2019-01-21 10:35:00,108 Adams St, Boston,MA,02215 +143270,AAA Batteries (4-pack),2,2.99,2019-01-29 11:18:00,815 7th St, Dallas,TX,75001 +143271,Google Phone,1,600.0,2019-01-20 19:00:00,832 Willow St, San Francisco,CA,94016 +143271,Wired Headphones,1,11.99,2019-01-20 19:00:00,832 Willow St, San Francisco,CA,94016 +143272,Macbook Pro Laptop,1,1700.0,2019-01-14 12:58:00,526 Spruce St, San Francisco,CA,94016 +143273,USB-C Charging Cable,1,11.95,2019-01-03 16:36:00,303 9th St, Seattle,WA,98101 +143274,iPhone,1,700.0,2019-01-21 19:08:00,667 Forest St, San Francisco,CA,94016 +143275,Google Phone,1,600.0,2019-01-17 00:39:00,985 Elm St, New York City,NY,10001 +143275,USB-C Charging Cable,2,11.95,2019-01-17 00:39:00,985 Elm St, New York City,NY,10001 +143276,USB-C Charging Cable,1,11.95,2019-01-15 23:17:00,898 4th St, Atlanta,GA,30301 +143277,AA Batteries (4-pack),3,3.84,2019-01-30 08:33:00,990 Johnson St, Seattle,WA,98101 +143278,Wired Headphones,1,11.99,2019-01-20 15:08:00,228 Meadow St, Portland,ME,04101 +143279,iPhone,1,700.0,2019-01-06 05:37:00,488 Ridge St, Atlanta,GA,30301 +143280,Lightning Charging Cable,1,14.95,2019-01-12 09:48:00,20 Madison St, Seattle,WA,98101 +143281,ThinkPad Laptop,1,999.99,2019-01-21 20:15:00,262 2nd St, New York City,NY,10001 +143282,Apple Airpods Headphones,1,150.0,2019-01-26 12:07:00,121 Jefferson St, New York City,NY,10001 +143283,AAA Batteries (4-pack),1,2.99,2019-01-22 22:58:00,757 Lincoln St, Austin,TX,73301 +143284,AAA Batteries (4-pack),1,2.99,2019-01-08 15:30:00,579 Ridge St, Dallas,TX,75001 +143285,AAA Batteries (4-pack),1,2.99,2019-01-11 10:57:00,515 Dogwood St, San Francisco,CA,94016 +143286,Apple Airpods Headphones,1,150.0,2019-01-11 01:00:00,283 Main St, Austin,TX,73301 +143287,AAA Batteries (4-pack),1,2.99,2019-01-12 17:20:00,378 14th St, San Francisco,CA,94016 +143288,Vareebadd Phone,1,400.0,2019-01-16 19:06:00,587 Main St, San Francisco,CA,94016 +143289,AA Batteries (4-pack),2,3.84,2019-01-03 19:24:00,992 Main St, Los Angeles,CA,90001 +143290,Wired Headphones,1,11.99,2019-01-11 09:57:00,94 12th St, Los Angeles,CA,90001 +143291,Lightning Charging Cable,1,14.95,2019-01-27 17:28:00,559 Elm St, Los Angeles,CA,90001 +143292,Apple Airpods Headphones,1,150.0,2019-01-06 23:39:00,673 Wilson St, Los Angeles,CA,90001 +143293,Apple Airpods Headphones,1,150.0,2019-01-26 13:47:00,981 South St, Boston,MA,02215 +143294,Wired Headphones,1,11.99,2019-01-24 10:16:00,616 North St, San Francisco,CA,94016 +143295,Google Phone,1,600.0,2019-01-12 18:07:00,382 Hickory St, San Francisco,CA,94016 +143295,USB-C Charging Cable,1,11.95,2019-01-12 18:07:00,382 Hickory St, San Francisco,CA,94016 +143296,Bose SoundSport Headphones,1,99.99,2019-01-19 21:40:00,401 Cedar St, Dallas,TX,75001 +143297,Flatscreen TV,1,300.0,2019-01-27 13:51:00,260 South St, Los Angeles,CA,90001 +143298,USB-C Charging Cable,1,11.95,2019-01-05 11:46:00,5 Chestnut St, Portland,OR,97035 +143299,27in 4K Gaming Monitor,1,389.99,2019-01-08 11:46:00,297 Willow St, New York City,NY,10001 +143300,Wired Headphones,1,11.99,2019-01-22 13:49:00,950 Main St, Atlanta,GA,30301 +143301,USB-C Charging Cable,1,11.95,2019-01-16 13:47:00,645 Highland St, New York City,NY,10001 +143302,AA Batteries (4-pack),2,3.84,2019-01-27 13:08:00,934 Wilson St, San Francisco,CA,94016 +143303,AA Batteries (4-pack),1,3.84,2019-01-19 06:33:00,377 Washington St, San Francisco,CA,94016 +143304,USB-C Charging Cable,1,11.95,2019-01-19 00:39:00,231 Cedar St, Los Angeles,CA,90001 +143305,34in Ultrawide Monitor,1,379.99,2019-01-22 15:14:00,127 Lake St, Los Angeles,CA,90001 +143306,Bose SoundSport Headphones,1,99.99,2019-01-18 14:24:00,470 Willow St, Los Angeles,CA,90001 +143307,AA Batteries (4-pack),1,3.84,2019-01-31 23:18:00,509 Jackson St, San Francisco,CA,94016 +143308,USB-C Charging Cable,1,11.95,2019-01-05 05:54:00,567 West St, Los Angeles,CA,90001 +143309,Bose SoundSport Headphones,2,99.99,2019-01-08 19:13:00,703 14th St, New York City,NY,10001 +143310,USB-C Charging Cable,1,11.95,2019-01-13 22:22:00,295 Forest St, Seattle,WA,98101 +143311,USB-C Charging Cable,1,11.95,2019-01-18 09:27:00,969 Dogwood St, Boston,MA,02215 +143312,AA Batteries (4-pack),1,3.84,2019-01-09 21:28:00,579 10th St, San Francisco,CA,94016 +143313,Apple Airpods Headphones,1,150.0,2019-01-09 00:39:00,215 Forest St, Austin,TX,73301 +143314,USB-C Charging Cable,1,11.95,2019-01-18 10:13:00,201 Cherry St, San Francisco,CA,94016 +143315,USB-C Charging Cable,1,11.95,2019-01-31 18:30:00,399 Ridge St, Dallas,TX,75001 +143316,27in 4K Gaming Monitor,1,389.99,2019-01-30 00:34:00,351 Adams St, Seattle,WA,98101 +143317,USB-C Charging Cable,1,11.95,2019-01-06 14:11:00,850 5th St, Boston,MA,02215 +143318,20in Monitor,1,109.99,2019-01-16 13:29:00,887 Main St, San Francisco,CA,94016 +143319,AA Batteries (4-pack),1,3.84,2019-01-14 08:23:00,694 Lake St, San Francisco,CA,94016 +143320,Wired Headphones,1,11.99,2019-01-28 18:51:00,150 Church St, New York City,NY,10001 +143321,Apple Airpods Headphones,1,150.0,2019-01-12 14:39:00,94 Jefferson St, Portland,OR,97035 +143322,Flatscreen TV,1,300.0,2019-01-20 22:18:00,80 6th St, San Francisco,CA,94016 +143323,AAA Batteries (4-pack),1,2.99,2019-01-23 09:48:00,609 Church St, San Francisco,CA,94016 +143324,AAA Batteries (4-pack),1,2.99,2019-01-18 16:09:00,211 North St, Seattle,WA,98101 +143325,Apple Airpods Headphones,1,150.0,2019-01-26 23:26:00,463 Lakeview St, San Francisco,CA,94016 +143326,Vareebadd Phone,1,400.0,2019-01-23 19:37:00,258 Madison St, Los Angeles,CA,90001 +143326,USB-C Charging Cable,1,11.95,2019-01-23 19:37:00,258 Madison St, Los Angeles,CA,90001 +143327,Lightning Charging Cable,1,14.95,2019-01-10 20:29:00,379 Center St, Los Angeles,CA,90001 +143328,Wired Headphones,1,11.99,2019-01-20 15:12:00,370 Madison St, Seattle,WA,98101 +143329,Google Phone,1,600.0,2019-01-16 19:50:00,220 Meadow St, Los Angeles,CA,90001 +143330,Lightning Charging Cable,1,14.95,2019-01-24 19:35:00,557 Chestnut St, Boston,MA,02215 +143331,Wired Headphones,1,11.99,2019-01-25 10:47:00,966 West St, Seattle,WA,98101 +143332,Wired Headphones,1,11.99,2019-01-19 01:21:00,287 South St, Los Angeles,CA,90001 +143333,USB-C Charging Cable,1,11.95,2019-01-21 10:15:00,170 Center St, San Francisco,CA,94016 +143334,USB-C Charging Cable,1,11.95,2019-01-23 20:11:00,217 Chestnut St, Atlanta,GA,30301 +143335,Apple Airpods Headphones,1,150.0,2019-01-15 09:20:00,477 Meadow St, New York City,NY,10001 +143336,Wired Headphones,1,11.99,2019-01-29 09:45:00,540 Walnut St, San Francisco,CA,94016 +143337,AA Batteries (4-pack),1,3.84,2019-01-06 17:25:00,408 Washington St, Austin,TX,73301 +143338,27in FHD Monitor,1,149.99,2019-01-29 11:16:00,721 Dogwood St, Portland,OR,97035 +143339,AA Batteries (4-pack),1,3.84,2019-01-25 09:15:00,385 10th St, San Francisco,CA,94016 +143340,Lightning Charging Cable,1,14.95,2019-01-01 16:46:00,886 Cherry St, San Francisco,CA,94016 +143341,ThinkPad Laptop,1,999.99,2019-01-16 10:35:00,635 Hickory St, Los Angeles,CA,90001 +143342,USB-C Charging Cable,1,11.95,2019-01-01 10:06:00,524 Meadow St, Portland,OR,97035 +143343,AAA Batteries (4-pack),1,2.99,2019-01-15 12:06:00,419 Church St, San Francisco,CA,94016 +143344,AAA Batteries (4-pack),1,2.99,2019-01-17 09:59:00,470 Center St, Seattle,WA,98101 +143345,Macbook Pro Laptop,1,1700.0,2019-01-21 00:36:00,214 Willow St, San Francisco,CA,94016 +143346,27in FHD Monitor,1,149.99,2019-01-03 20:11:00,523 9th St, San Francisco,CA,94016 +143347,Apple Airpods Headphones,1,150.0,2019-01-15 12:04:00,637 7th St, Atlanta,GA,30301 +143348,Bose SoundSport Headphones,1,99.99,2019-01-24 10:02:00,871 14th St, Boston,MA,02215 +143349,AAA Batteries (4-pack),1,2.99,2019-01-18 17:53:00,688 1st St, Portland,OR,97035 +143350,Lightning Charging Cable,1,14.95,2019-01-04 10:14:00,795 Elm St, Austin,TX,73301 +143351,AA Batteries (4-pack),1,3.84,2019-01-17 19:05:00,892 Washington St, Seattle,WA,98101 +143352,27in FHD Monitor,1,149.99,2019-01-18 13:14:00,769 Chestnut St, Seattle,WA,98101 +143353,Wired Headphones,1,11.99,2019-01-09 11:36:00,867 Forest St, Dallas,TX,75001 +143354,Lightning Charging Cable,1,14.95,2019-01-17 11:07:00,319 Lakeview St, New York City,NY,10001 +143355,27in 4K Gaming Monitor,1,389.99,2019-01-25 17:02:00,195 4th St, Los Angeles,CA,90001 +143356,ThinkPad Laptop,1,999.99,2019-01-04 22:38:00,245 Center St, Dallas,TX,75001 +143357,AAA Batteries (4-pack),1,2.99,2019-01-15 15:52:00,538 9th St, Atlanta,GA,30301 +143357,27in 4K Gaming Monitor,1,389.99,2019-01-15 15:52:00,538 9th St, Atlanta,GA,30301 +143358,Apple Airpods Headphones,1,150.0,2019-01-15 21:27:00,640 Lake St, Los Angeles,CA,90001 +143359,AA Batteries (4-pack),1,3.84,2019-01-22 21:12:00,394 Johnson St, Austin,TX,73301 +143360,Bose SoundSport Headphones,1,99.99,2019-01-31 22:36:00,889 Park St, Los Angeles,CA,90001 +143361,AA Batteries (4-pack),2,3.84,2019-01-26 20:10:00,781 4th St, Boston,MA,02215 +143362,Bose SoundSport Headphones,1,99.99,2019-01-13 10:48:00,540 Hickory St, Boston,MA,02215 +143363,34in Ultrawide Monitor,1,379.99,2019-01-22 11:13:00,16 Washington St, Boston,MA,02215 +143364,USB-C Charging Cable,1,11.95,2019-01-07 19:30:00,935 1st St, San Francisco,CA,94016 +143365,Wired Headphones,1,11.99,2019-01-02 11:47:00,912 6th St, Portland,OR,97035 +143366,Flatscreen TV,1,300.0,2019-01-02 19:10:00,515 Park St, Seattle,WA,98101 +143367,Wired Headphones,1,11.99,2019-01-23 09:49:00,975 Washington St, San Francisco,CA,94016 +143368,Apple Airpods Headphones,1,150.0,2019-01-11 22:01:00,921 Meadow St, Austin,TX,73301 +143369,20in Monitor,1,109.99,2019-01-20 20:18:00,226 Chestnut St, New York City,NY,10001 +143370,ThinkPad Laptop,1,999.99,2019-01-15 23:39:00,341 Main St, New York City,NY,10001 +143371,20in Monitor,1,109.99,2019-01-05 12:20:00,607 7th St, Seattle,WA,98101 +143372,Apple Airpods Headphones,1,150.0,2019-01-18 12:10:00,865 Main St, San Francisco,CA,94016 +143373,iPhone,1,700.0,2019-01-14 12:12:00,6 Ridge St, San Francisco,CA,94016 +143374,AA Batteries (4-pack),1,3.84,2019-01-19 21:26:00,61 Main St, Boston,MA,02215 +143375,Flatscreen TV,1,300.0,2019-01-21 15:21:00,892 Highland St, Boston,MA,02215 +143376,Bose SoundSport Headphones,1,99.99,2019-01-02 18:33:00,619 Cedar St, San Francisco,CA,94016 +143377,AAA Batteries (4-pack),1,2.99,2019-01-23 19:15:00,840 1st St, Dallas,TX,75001 +143378,Bose SoundSport Headphones,1,99.99,2019-01-02 14:04:00,639 9th St, Boston,MA,02215 +143378,AA Batteries (4-pack),1,3.84,2019-01-02 14:04:00,639 9th St, Boston,MA,02215 +143379,34in Ultrawide Monitor,1,379.99,2019-01-12 19:01:00,651 Lake St, San Francisco,CA,94016 +143379,Lightning Charging Cable,1,14.95,2019-01-12 19:01:00,651 Lake St, San Francisco,CA,94016 +143380,Lightning Charging Cable,1,14.95,2019-01-05 08:36:00,824 4th St, San Francisco,CA,94016 +143381,Lightning Charging Cable,1,14.95,2019-01-09 03:38:00,458 Spruce St, Los Angeles,CA,90001 +143382,Lightning Charging Cable,1,14.95,2019-01-22 13:37:00,414 4th St, Austin,TX,73301 +143383,iPhone,1,700.0,2019-01-27 21:23:00,767 Johnson St, Dallas,TX,75001 +143384,Lightning Charging Cable,1,14.95,2019-01-01 17:13:00,4 13th St, Dallas,TX,75001 +143385,Wired Headphones,1,11.99,2019-01-12 13:43:00,817 Hill St, Boston,MA,02215 +143386,AAA Batteries (4-pack),2,2.99,2019-01-05 17:49:00,741 River St, Atlanta,GA,30301 +143387,Wired Headphones,1,11.99,2019-01-08 20:55:00,420 Jackson St, San Francisco,CA,94016 +143388,Wired Headphones,1,11.99,2019-01-14 10:53:00,90 2nd St, New York City,NY,10001 +143389,Apple Airpods Headphones,1,150.0,2019-01-04 11:04:00,616 Cedar St, Dallas,TX,75001 +143390,Lightning Charging Cable,2,14.95,2019-01-02 15:58:00,656 Madison St, San Francisco,CA,94016 +143391,Flatscreen TV,1,300.0,2019-01-31 13:34:00,240 Lakeview St, Portland,OR,97035 +143392,USB-C Charging Cable,1,11.95,2019-01-16 22:57:00,507 Cedar St, Austin,TX,73301 +143393,Apple Airpods Headphones,1,150.0,2019-01-14 03:24:00,197 Cedar St, Seattle,WA,98101 +143393,USB-C Charging Cable,1,11.95,2019-01-14 03:24:00,197 Cedar St, Seattle,WA,98101 +143394,Wired Headphones,1,11.99,2019-01-01 14:32:00,758 Elm St, Portland,OR,97035 +143395,27in FHD Monitor,1,149.99,2019-01-19 14:28:00,909 13th St, Atlanta,GA,30301 +143396,USB-C Charging Cable,1,11.95,2019-01-03 11:54:00,177 West St, Atlanta,GA,30301 +143397,USB-C Charging Cable,1,11.95,2019-01-06 12:47:00,580 Forest St, Boston,MA,02215 +143398,USB-C Charging Cable,1,11.95,2019-01-12 11:30:00,668 Walnut St, Portland,OR,97035 +143399,Vareebadd Phone,1,400.0,2019-01-21 13:01:00,924 Dogwood St, Los Angeles,CA,90001 +143400,AAA Batteries (4-pack),1,2.99,2019-01-16 12:05:00,841 Spruce St, San Francisco,CA,94016 +143401,USB-C Charging Cable,1,11.95,2019-01-06 10:25:00,389 Jefferson St, San Francisco,CA,94016 +143402,USB-C Charging Cable,1,11.95,2019-01-08 10:58:00,996 Spruce St, Los Angeles,CA,90001 +143403,LG Washing Machine,1,600.0,2019-01-18 14:10:00,133 12th St, Seattle,WA,98101 +143404,Apple Airpods Headphones,1,150.0,2019-01-21 12:15:00,869 South St, Dallas,TX,75001 +143405,Lightning Charging Cable,2,14.95,2019-01-02 13:50:00,359 Cherry St, Boston,MA,02215 +143406,Lightning Charging Cable,1,14.95,2019-01-11 18:01:00,725 Hill St, Portland,ME,04101 +143407,Apple Airpods Headphones,1,150.0,2019-01-09 20:50:00,945 8th St, Los Angeles,CA,90001 +143408,Wired Headphones,1,11.99,2019-01-02 14:19:00,788 12th St, Los Angeles,CA,90001 +143409,Lightning Charging Cable,1,14.95,2019-01-15 22:10:00,665 Center St, Los Angeles,CA,90001 +143410,iPhone,1,700.0,2019-01-02 11:13:00,245 8th St, Portland,OR,97035 +143411,iPhone,1,700.0,2019-01-23 16:15:00,889 Maple St, New York City,NY,10001 +143412,USB-C Charging Cable,1,11.95,2019-01-01 16:23:00,662 4th St, New York City,NY,10001 +143413,Lightning Charging Cable,1,14.95,2019-01-03 18:34:00,997 Forest St, Portland,ME,04101 +143414,Lightning Charging Cable,1,14.95,2019-01-04 06:45:00,283 Johnson St, San Francisco,CA,94016 +143415,AAA Batteries (4-pack),1,2.99,2019-01-01 20:28:00,907 2nd St, Portland,OR,97035 +143416,AAA Batteries (4-pack),7,2.99,2019-01-24 19:58:00,927 Jefferson St, New York City,NY,10001 +143417,AAA Batteries (4-pack),2,2.99,2019-01-31 15:54:00,340 Wilson St, Austin,TX,73301 +143418,Bose SoundSport Headphones,1,99.99,2019-01-17 11:24:00,480 West St, Dallas,TX,75001 +143419,Lightning Charging Cable,1,14.95,2019-01-07 08:56:00,29 Hickory St, Los Angeles,CA,90001 +143420,27in 4K Gaming Monitor,1,389.99,2019-01-09 03:54:00,797 Maple St, Boston,MA,02215 +143421,iPhone,1,700.0,2019-01-26 08:37:00,815 Forest St, Austin,TX,73301 +143422,Wired Headphones,1,11.99,2019-01-05 21:52:00,782 Dogwood St, Atlanta,GA,30301 +143423,Apple Airpods Headphones,1,150.0,2019-01-19 20:36:00,946 Washington St, Boston,MA,02215 +143424,Lightning Charging Cable,1,14.95,2019-01-19 20:03:00,947 12th St, Austin,TX,73301 +143425,Vareebadd Phone,1,400.0,2019-01-22 20:10:00,204 Adams St, Seattle,WA,98101 +143426,USB-C Charging Cable,2,11.95,2019-01-25 19:04:00,610 2nd St, New York City,NY,10001 +143427,Apple Airpods Headphones,1,150.0,2019-01-14 16:06:00,460 Wilson St, Atlanta,GA,30301 +143427,ThinkPad Laptop,1,999.99,2019-01-14 16:06:00,460 Wilson St, Atlanta,GA,30301 +143428,AA Batteries (4-pack),3,3.84,2019-01-27 14:32:00,536 10th St, Boston,MA,02215 +143429,27in FHD Monitor,1,149.99,2019-01-12 16:46:00,489 Ridge St, Portland,OR,97035 +143430,34in Ultrawide Monitor,1,379.99,2019-01-16 14:24:00,756 1st St, Dallas,TX,75001 +143431,AA Batteries (4-pack),1,3.84,2019-01-25 21:32:00,815 13th St, San Francisco,CA,94016 +143432,iPhone,1,700.0,2019-01-06 00:44:00,794 South St, New York City,NY,10001 +143433,Bose SoundSport Headphones,1,99.99,2019-01-05 14:40:00,750 8th St, Boston,MA,02215 +143434,iPhone,1,700.0,2019-01-17 21:00:00,118 11th St, Seattle,WA,98101 +143435,27in 4K Gaming Monitor,1,389.99,2019-01-18 02:05:00,971 Lake St, Seattle,WA,98101 +143436,Google Phone,1,600.0,2019-01-21 14:34:00,405 Spruce St, New York City,NY,10001 +143436,USB-C Charging Cable,2,11.95,2019-01-21 14:34:00,405 Spruce St, New York City,NY,10001 +143437,27in FHD Monitor,1,149.99,2019-01-16 06:43:00,525 5th St, Atlanta,GA,30301 +143438,Apple Airpods Headphones,1,150.0,2019-01-21 22:17:00,794 8th St, Boston,MA,02215 +143439,Google Phone,1,600.0,2019-01-18 13:55:00,173 Dogwood St, San Francisco,CA,94016 +143439,Wired Headphones,1,11.99,2019-01-18 13:55:00,173 Dogwood St, San Francisco,CA,94016 +143440,Wired Headphones,1,11.99,2019-01-20 17:24:00,226 1st St, Los Angeles,CA,90001 +143441,34in Ultrawide Monitor,1,379.99,2019-01-08 15:39:00,462 Washington St, Portland,OR,97035 +143442,Flatscreen TV,1,300.0,2019-01-05 13:26:00,145 2nd St, Portland,OR,97035 +143443,AAA Batteries (4-pack),1,2.99,2019-01-29 22:04:00,492 2nd St, Los Angeles,CA,90001 +143444,Lightning Charging Cable,1,14.95,2019-01-11 19:11:00,512 2nd St, Boston,MA,02215 +143445,AA Batteries (4-pack),1,3.84,2019-01-02 17:58:00,112 Washington St, Dallas,TX,75001 +143446,Lightning Charging Cable,1,14.95,2019-01-28 08:06:00,868 Walnut St, Los Angeles,CA,90001 +143447,USB-C Charging Cable,1,11.95,2019-01-06 21:04:00,77 Maple St, New York City,NY,10001 +143448,20in Monitor,1,109.99,2019-01-09 13:32:00,802 Main St, San Francisco,CA,94016 +143449,ThinkPad Laptop,1,999.99,2019-01-27 11:55:00,117 West St, Seattle,WA,98101 +143450,Bose SoundSport Headphones,1,99.99,2019-01-31 16:16:00,424 Walnut St, San Francisco,CA,94016 +143451,ThinkPad Laptop,1,999.99,2019-01-08 16:27:00,1 Center St, San Francisco,CA,94016 +143452,Lightning Charging Cable,1,14.95,2019-01-03 18:27:00,676 Spruce St, San Francisco,CA,94016 +143453,USB-C Charging Cable,1,11.95,2019-01-22 05:54:00,473 Willow St, New York City,NY,10001 +143454,27in 4K Gaming Monitor,1,389.99,2019-01-12 14:24:00,454 5th St, Boston,MA,02215 +143455,AAA Batteries (4-pack),1,2.99,2019-01-22 21:07:00,823 14th St, San Francisco,CA,94016 +143455,Flatscreen TV,1,300.0,2019-01-22 21:07:00,823 14th St, San Francisco,CA,94016 +143456,USB-C Charging Cable,1,11.95,2019-01-16 11:15:00,54 Washington St, Portland,OR,97035 +143457,USB-C Charging Cable,1,11.95,2019-01-20 21:31:00,185 Church St, Los Angeles,CA,90001 +143458,Wired Headphones,1,11.99,2019-01-05 09:27:00,359 Highland St, Dallas,TX,75001 +143459,20in Monitor,1,109.99,2019-01-06 21:48:00,209 Lakeview St, Dallas,TX,75001 +143460,20in Monitor,1,109.99,2019-01-21 00:14:00,493 6th St, Portland,OR,97035 +143461,ThinkPad Laptop,1,999.99,2019-01-20 23:02:00,311 Jackson St, Los Angeles,CA,90001 +143462,Lightning Charging Cable,1,14.95,2019-01-19 23:54:00,341 Jefferson St, Los Angeles,CA,90001 +143463,USB-C Charging Cable,1,11.95,2019-01-13 14:58:00,79 13th St, Dallas,TX,75001 +143464,USB-C Charging Cable,1,11.95,2019-01-07 14:41:00,521 Spruce St, Seattle,WA,98101 +143465,AA Batteries (4-pack),1,3.84,2019-01-14 19:42:00,194 6th St, San Francisco,CA,94016 +143466,ThinkPad Laptop,1,999.99,2019-01-12 20:27:00,140 Chestnut St, San Francisco,CA,94016 +143467,27in FHD Monitor,1,149.99,2019-01-11 18:41:00,916 North St, Seattle,WA,98101 +143468,27in FHD Monitor,1,149.99,2019-01-10 21:26:00,434 Main St, New York City,NY,10001 +143469,Wired Headphones,1,11.99,2019-01-05 08:57:00,552 Walnut St, New York City,NY,10001 +143470,Wired Headphones,1,11.99,2019-01-25 19:01:00,119 Sunset St, Los Angeles,CA,90001 +143471,AA Batteries (4-pack),1,3.84,2019-01-11 21:52:00,179 Spruce St, San Francisco,CA,94016 +143472,27in FHD Monitor,1,149.99,2019-01-02 10:15:00,759 Walnut St, Los Angeles,CA,90001 +143473,Wired Headphones,1,11.99,2019-01-12 05:38:00,388 Meadow St, Seattle,WA,98101 +143474,27in 4K Gaming Monitor,1,389.99,2019-01-26 08:33:00,801 Jefferson St, Atlanta,GA,30301 +143475,iPhone,1,700.0,2019-01-17 14:39:00,501 Center St, Portland,ME,04101 +143476,Apple Airpods Headphones,1,150.0,2019-01-19 19:23:00,145 11th St, Los Angeles,CA,90001 +143477,27in 4K Gaming Monitor,1,389.99,2019-01-04 11:55:00,187 1st St, Los Angeles,CA,90001 +143478,AAA Batteries (4-pack),2,2.99,2019-01-13 14:05:00,91 Maple St, Dallas,TX,75001 +143479,27in FHD Monitor,1,149.99,2019-01-07 17:42:00,800 Madison St, New York City,NY,10001 +143480,Macbook Pro Laptop,1,1700.0,2019-01-07 11:25:00,252 Adams St, Boston,MA,02215 +143481,AA Batteries (4-pack),1,3.84,2019-01-27 22:34:00,104 Madison St, Los Angeles,CA,90001 +143482,USB-C Charging Cable,1,11.95,2019-01-24 08:07:00,238 Cedar St, New York City,NY,10001 +143483,Vareebadd Phone,1,400.0,2019-01-23 17:32:00,727 11th St, San Francisco,CA,94016 +143484,Lightning Charging Cable,1,14.95,2019-01-01 23:07:00,630 Adams St, New York City,NY,10001 +143485,USB-C Charging Cable,1,11.95,2019-01-27 20:26:00,611 11th St, San Francisco,CA,94016 +143486,Lightning Charging Cable,1,14.95,2019-01-22 18:39:00,476 Madison St, New York City,NY,10001 +143487,Wired Headphones,1,11.99,2019-01-16 18:03:00,632 Main St, Seattle,WA,98101 +143488,Google Phone,1,600.0,2019-01-10 18:34:00,32 Johnson St, San Francisco,CA,94016 +143489,Wired Headphones,1,11.99,2019-01-24 19:12:00,622 Forest St, San Francisco,CA,94016 +143490,Flatscreen TV,1,300.0,2019-01-04 08:04:00,509 River St, Boston,MA,02215 +143491,AA Batteries (4-pack),1,3.84,2019-01-10 21:48:00,80 River St, Dallas,TX,75001 +143492,Apple Airpods Headphones,1,150.0,2019-01-07 09:00:00,588 1st St, San Francisco,CA,94016 +143493,USB-C Charging Cable,1,11.95,2019-01-30 06:47:00,978 Sunset St, Seattle,WA,98101 +143494,AAA Batteries (4-pack),2,2.99,2019-01-18 23:24:00,372 9th St, Dallas,TX,75001 +143495,Apple Airpods Headphones,1,150.0,2019-01-14 17:10:00,166 Walnut St, San Francisco,CA,94016 +143496,Wired Headphones,2,11.99,2019-01-03 19:19:00,895 Park St, Seattle,WA,98101 +143497,Bose SoundSport Headphones,1,99.99,2019-01-01 15:39:00,661 Jefferson St, Austin,TX,73301 +143498,AA Batteries (4-pack),3,3.84,2019-01-01 07:26:00,428 Highland St, New York City,NY,10001 +143499,AAA Batteries (4-pack),2,2.99,2019-01-15 13:30:00,115 6th St, Los Angeles,CA,90001 +143500,34in Ultrawide Monitor,1,379.99,2019-01-10 17:58:00,158 Jefferson St, Boston,MA,02215 +143501,AA Batteries (4-pack),2,3.84,2019-01-10 21:16:00,654 West St, New York City,NY,10001 +143502,Apple Airpods Headphones,1,150.0,2019-01-06 11:14:00,266 11th St, Los Angeles,CA,90001 +143503,27in 4K Gaming Monitor,1,389.99,2019-01-15 10:56:00,496 Sunset St, Los Angeles,CA,90001 +143504,USB-C Charging Cable,1,11.95,2019-01-10 16:06:00,73 Church St, Seattle,WA,98101 +143505,AAA Batteries (4-pack),3,2.99,2019-01-16 16:45:00,153 Cedar St, New York City,NY,10001 +143506,AA Batteries (4-pack),1,3.84,2019-01-01 16:50:00,417 Park St, Los Angeles,CA,90001 +143507,Wired Headphones,1,11.99,2019-01-02 01:06:00,770 Walnut St, Atlanta,GA,30301 +143508,USB-C Charging Cable,2,11.95,2019-01-02 20:17:00,591 7th St, San Francisco,CA,94016 +143509,USB-C Charging Cable,1,11.95,2019-01-11 19:39:00,383 Johnson St, San Francisco,CA,94016 +143510,Wired Headphones,1,11.99,2019-01-24 15:34:00,176 Dogwood St, Dallas,TX,75001 +143511,USB-C Charging Cable,2,11.95,2019-01-02 13:25:00,789 Washington St, San Francisco,CA,94016 +143512,27in FHD Monitor,1,149.99,2019-01-29 13:05:00,90 Chestnut St, Seattle,WA,98101 +143513,Wired Headphones,1,11.99,2019-01-09 23:02:00,152 River St, Los Angeles,CA,90001 +143514,Flatscreen TV,1,300.0,2019-01-11 01:51:00,586 Forest St, Boston,MA,02215 +143515,AA Batteries (4-pack),1,3.84,2019-01-28 15:42:00,796 4th St, Portland,OR,97035 +143516,Bose SoundSport Headphones,1,99.99,2019-01-11 21:03:00,678 Main St, Atlanta,GA,30301 +143517,AA Batteries (4-pack),2,3.84,2019-01-12 18:59:00,69 Jefferson St, Portland,OR,97035 +143518,27in FHD Monitor,1,149.99,2019-01-15 09:51:00,780 5th St, Los Angeles,CA,90001 +143519,AAA Batteries (4-pack),1,2.99,2019-01-25 12:27:00,821 West St, Los Angeles,CA,90001 +143520,AAA Batteries (4-pack),1,2.99,2019-01-03 18:35:00,858 13th St, New York City,NY,10001 +143521,ThinkPad Laptop,1,999.99,2019-01-17 19:16:00,162 2nd St, Los Angeles,CA,90001 +143522,Bose SoundSport Headphones,1,99.99,2019-01-04 12:03:00,331 7th St, Atlanta,GA,30301 +143523,AA Batteries (4-pack),1,3.84,2019-01-14 05:43:00,561 Elm St, Los Angeles,CA,90001 +143524,USB-C Charging Cable,1,11.95,2019-01-04 07:31:00,914 Jefferson St, Atlanta,GA,30301 +143525,AA Batteries (4-pack),3,3.84,2019-01-25 16:22:00,822 12th St, San Francisco,CA,94016 +143526,iPhone,1,700.0,2019-01-22 14:04:00,395 1st St, Austin,TX,73301 +143526,Wired Headphones,1,11.99,2019-01-22 14:04:00,395 1st St, Austin,TX,73301 +143527,USB-C Charging Cable,1,11.95,2019-01-19 11:47:00,267 Elm St, New York City,NY,10001 +143528,Lightning Charging Cable,1,14.95,2019-01-18 22:12:00,935 West St, Los Angeles,CA,90001 +143529,AA Batteries (4-pack),1,3.84,2019-01-17 11:27:00,384 Park St, Boston,MA,02215 +143530,USB-C Charging Cable,1,11.95,2019-01-17 14:01:00,45 5th St, Los Angeles,CA,90001 +143531,Bose SoundSport Headphones,1,99.99,2019-01-22 21:09:00,677 7th St, New York City,NY,10001 +143532,USB-C Charging Cable,1,11.95,2019-01-07 13:16:00,607 Walnut St, Atlanta,GA,30301 +143533,USB-C Charging Cable,1,11.95,2019-01-04 18:15:00,117 4th St, Dallas,TX,75001 +143534,Apple Airpods Headphones,1,150.0,2019-01-21 16:22:00,486 Lakeview St, New York City,NY,10001 +143535,Lightning Charging Cable,1,14.95,2019-01-12 18:32:00,810 Highland St, Boston,MA,02215 +143536,27in 4K Gaming Monitor,1,389.99,2019-01-13 16:15:00,521 Hill St, Dallas,TX,75001 +143537,Bose SoundSport Headphones,1,99.99,2019-01-03 11:19:00,469 13th St, Dallas,TX,75001 +143538,Apple Airpods Headphones,1,150.0,2019-01-30 19:19:00,597 5th St, Los Angeles,CA,90001 +143539,Google Phone,1,600.0,2019-01-08 00:26:00,486 Park St, New York City,NY,10001 +143540,Apple Airpods Headphones,1,150.0,2019-01-01 10:49:00,463 Main St, Los Angeles,CA,90001 +143541,AA Batteries (4-pack),1,3.84,2019-01-19 19:25:00,365 Willow St, Boston,MA,02215 +143542,AAA Batteries (4-pack),1,2.99,2019-01-09 18:44:00,451 Dogwood St, Atlanta,GA,30301 +143543,USB-C Charging Cable,1,11.95,2019-01-03 11:57:00,341 Ridge St, Atlanta,GA,30301 +143544,Bose SoundSport Headphones,1,99.99,2019-01-17 14:52:00,171 Hickory St, Los Angeles,CA,90001 +143545,Vareebadd Phone,1,400.0,2019-01-24 20:36:00,597 2nd St, Los Angeles,CA,90001 +143545,Wired Headphones,1,11.99,2019-01-24 20:36:00,597 2nd St, Los Angeles,CA,90001 +143546,AAA Batteries (4-pack),1,2.99,2019-01-26 10:19:00,789 1st St, Los Angeles,CA,90001 +143547,iPhone,1,700.0,2019-01-01 13:36:00,817 Lincoln St, Seattle,WA,98101 +143548,AA Batteries (4-pack),2,3.84,2019-01-09 13:06:00,348 Wilson St, Boston,MA,02215 +143549,AA Batteries (4-pack),1,3.84,2019-01-29 20:09:00,563 Pine St, Seattle,WA,98101 +143550,USB-C Charging Cable,1,11.95,2019-01-19 17:20:00,751 Hickory St, Atlanta,GA,30301 +143551,AAA Batteries (4-pack),2,2.99,2019-01-16 16:04:00,810 Hickory St, Los Angeles,CA,90001 +143552,34in Ultrawide Monitor,1,379.99,2019-01-05 19:14:00,656 Lakeview St, New York City,NY,10001 +143553,27in 4K Gaming Monitor,1,389.99,2019-01-11 20:33:00,210 South St, San Francisco,CA,94016 +143554,USB-C Charging Cable,1,11.95,2019-01-18 22:31:00,700 10th St, Boston,MA,02215 +143555,Lightning Charging Cable,1,14.95,2019-01-29 19:58:00,531 Sunset St, New York City,NY,10001 +143556,Vareebadd Phone,1,400.0,2019-01-19 14:30:00,847 Meadow St, Dallas,TX,75001 +143557,AA Batteries (4-pack),1,3.84,2019-01-15 20:33:00,83 Chestnut St, Los Angeles,CA,90001 +143558,20in Monitor,1,109.99,2019-01-30 20:00:00,787 Walnut St, Dallas,TX,75001 +143559,AA Batteries (4-pack),1,3.84,2019-01-08 23:52:00,741 9th St, Los Angeles,CA,90001 +143560,AA Batteries (4-pack),1,3.84,2019-01-24 17:29:00,150 Lakeview St, Los Angeles,CA,90001 +143561,Wired Headphones,1,11.99,2019-01-13 11:51:00,607 Highland St, San Francisco,CA,94016 +143562,AAA Batteries (4-pack),2,2.99,2019-01-05 12:21:00,695 Spruce St, San Francisco,CA,94016 +143563,Lightning Charging Cable,1,14.95,2019-01-10 13:06:00,12 Maple St, San Francisco,CA,94016 +143564,Apple Airpods Headphones,1,150.0,2019-01-04 19:57:00,142 Dogwood St, San Francisco,CA,94016 +143565,Lightning Charging Cable,1,14.95,2019-01-24 09:05:00,122 9th St, Los Angeles,CA,90001 +143566,34in Ultrawide Monitor,1,379.99,2019-01-26 09:08:00,508 7th St, Boston,MA,02215 +143567,27in 4K Gaming Monitor,1,389.99,2019-01-30 09:22:00,371 Jackson St, San Francisco,CA,94016 +143568,Apple Airpods Headphones,1,150.0,2019-01-27 06:37:00,727 Elm St, Dallas,TX,75001 +143569,Google Phone,1,600.0,2019-01-23 00:48:00,64 Washington St, San Francisco,CA,94016 +143570,AA Batteries (4-pack),1,3.84,2019-01-16 23:46:00,9 South St, Austin,TX,73301 +143571,Google Phone,1,600.0,2019-01-12 09:31:00,975 Meadow St, Boston,MA,02215 +143572,AAA Batteries (4-pack),4,2.99,2019-01-05 08:52:00,151 10th St, Austin,TX,73301 +143572,USB-C Charging Cable,1,11.95,2019-01-05 08:52:00,151 10th St, Austin,TX,73301 +143573,Bose SoundSport Headphones,1,99.99,2019-01-12 15:08:00,845 Church St, Austin,TX,73301 +143574,AAA Batteries (4-pack),1,2.99,2019-01-13 02:14:00,766 4th St, Atlanta,GA,30301 +143575,USB-C Charging Cable,1,11.95,2019-01-29 02:15:00,961 14th St, San Francisco,CA,94016 +143576,Lightning Charging Cable,1,14.95,2019-01-09 17:06:00,814 Cherry St, San Francisco,CA,94016 +143577,Lightning Charging Cable,1,14.95,2019-01-03 16:04:00,546 Cherry St, San Francisco,CA,94016 +143578,Bose SoundSport Headphones,1,99.99,2019-01-18 16:59:00,776 5th St, San Francisco,CA,94016 +143579,Apple Airpods Headphones,1,150.0,2019-01-15 13:30:00,492 Willow St, San Francisco,CA,94016 +143580,27in 4K Gaming Monitor,1,389.99,2019-01-15 15:34:00,406 Chestnut St, Los Angeles,CA,90001 +143581,Wired Headphones,1,11.99,2019-01-09 17:10:00,854 South St, New York City,NY,10001 +143582,34in Ultrawide Monitor,1,379.99,2019-01-30 12:22:00,8 South St, Los Angeles,CA,90001 +143583,Wired Headphones,1,11.99,2019-01-25 15:28:00,487 6th St, San Francisco,CA,94016 +143584,Wired Headphones,1,11.99,2019-01-24 11:54:00,162 Meadow St, Atlanta,GA,30301 +143585,Wired Headphones,1,11.99,2019-01-08 23:41:00,398 Park St, Atlanta,GA,30301 +143586,27in FHD Monitor,1,149.99,2019-01-31 15:21:00,169 Lincoln St, Seattle,WA,98101 +143587,iPhone,1,700.0,2019-01-15 17:48:00,21 West St, Seattle,WA,98101 +143588,Lightning Charging Cable,1,14.95,2019-01-26 19:24:00,359 Highland St, Dallas,TX,75001 +143589,USB-C Charging Cable,1,11.95,2019-01-01 20:13:00,610 6th St, San Francisco,CA,94016 +143590,iPhone,1,700.0,2019-01-09 15:18:00,123 Cherry St, Dallas,TX,75001 +143590,Lightning Charging Cable,1,14.95,2019-01-09 15:18:00,123 Cherry St, Dallas,TX,75001 +143591,Wired Headphones,1,11.99,2019-01-26 23:06:00,383 Elm St, New York City,NY,10001 +143592,Flatscreen TV,1,300.0,2019-01-02 16:06:00,411 Madison St, Los Angeles,CA,90001 +143593,AAA Batteries (4-pack),1,2.99,2019-01-01 16:52:00,488 11th St, New York City,NY,10001 +143594,LG Washing Machine,1,600.0,2019-01-08 21:25:00,113 West St, Boston,MA,02215 +143595,Bose SoundSport Headphones,1,99.99,2019-01-14 09:25:00,889 Pine St, Boston,MA,02215 +143596,Apple Airpods Headphones,1,150.0,2019-01-15 06:18:00,47 North St, San Francisco,CA,94016 +143597,Apple Airpods Headphones,1,150.0,2019-01-02 12:10:00,935 Spruce St, San Francisco,CA,94016 +143598,Lightning Charging Cable,1,14.95,2019-01-19 12:01:00,11 Johnson St, Los Angeles,CA,90001 +143599,27in 4K Gaming Monitor,1,389.99,2019-01-26 10:38:00,441 Hill St, Austin,TX,73301 +143600,iPhone,1,700.0,2019-01-01 14:38:00,171 Madison St, Los Angeles,CA,90001 +143601,iPhone,1,700.0,2019-01-29 19:59:00,689 Dogwood St, Los Angeles,CA,90001 +143602,Bose SoundSport Headphones,1,99.99,2019-01-16 18:30:00,356 Willow St, Los Angeles,CA,90001 +143603,Macbook Pro Laptop,1,1700.0,2019-01-17 12:20:00,580 5th St, Austin,TX,73301 +143604,USB-C Charging Cable,1,11.95,2019-01-20 17:09:00,485 Lincoln St, Seattle,WA,98101 +143605,LG Washing Machine,1,600.0,2019-01-22 14:37:00,48 Lake St, Los Angeles,CA,90001 +143606,AAA Batteries (4-pack),1,2.99,2019-01-09 14:48:00,357 7th St, San Francisco,CA,94016 +143607,AAA Batteries (4-pack),2,2.99,2019-01-03 08:34:00,962 River St, San Francisco,CA,94016 +143608,34in Ultrawide Monitor,1,379.99,2019-01-06 22:14:00,846 Johnson St, Los Angeles,CA,90001 +143609,Apple Airpods Headphones,1,150.0,2019-01-25 23:34:00,827 4th St, New York City,NY,10001 +143610,27in FHD Monitor,1,149.99,2019-01-01 13:58:00,3 South St, Portland,OR,97035 +143611,Macbook Pro Laptop,1,1700.0,2019-01-20 12:54:00,624 Johnson St, Boston,MA,02215 +143612,LG Washing Machine,1,600.0,2019-01-07 17:53:00,35 Elm St, Austin,TX,73301 +143613,Google Phone,1,600.0,2019-01-06 14:47:00,530 Forest St, Austin,TX,73301 +143614,27in FHD Monitor,1,149.99,2019-01-14 19:51:00,335 7th St, Dallas,TX,75001 +143615,Google Phone,1,600.0,2019-01-12 16:25:00,221 1st St, Los Angeles,CA,90001 +143616,Flatscreen TV,1,300.0,2019-01-14 09:39:00,214 Jefferson St, Atlanta,GA,30301 +143617,Lightning Charging Cable,1,14.95,2019-01-08 23:17:00,679 12th St, Los Angeles,CA,90001 +143618,AA Batteries (4-pack),1,3.84,2019-01-13 12:20:00,936 Church St, San Francisco,CA,94016 +143619,USB-C Charging Cable,2,11.95,2019-01-16 12:58:00,791 Park St, New York City,NY,10001 +143620,Google Phone,1,600.0,2019-01-03 18:55:00,79 14th St, Dallas,TX,75001 +143621,USB-C Charging Cable,1,11.95,2019-01-10 09:39:00,878 Center St, Los Angeles,CA,90001 +143622,AA Batteries (4-pack),1,3.84,2019-01-25 19:05:00,686 9th St, Dallas,TX,75001 +143623,USB-C Charging Cable,1,11.95,2019-01-19 21:19:00,751 Lakeview St, San Francisco,CA,94016 +143623,27in FHD Monitor,1,149.99,2019-01-19 21:19:00,751 Lakeview St, San Francisco,CA,94016 +143624,USB-C Charging Cable,1,11.95,2019-01-04 06:17:00,285 Pine St, Boston,MA,02215 +143625,USB-C Charging Cable,1,11.95,2019-01-31 11:34:00,828 Cedar St, Los Angeles,CA,90001 +143626,Apple Airpods Headphones,1,150.0,2019-01-10 12:27:00,60 West St, Los Angeles,CA,90001 +143627,AAA Batteries (4-pack),2,2.99,2019-01-21 20:48:00,113 River St, Atlanta,GA,30301 +143628,AA Batteries (4-pack),1,3.84,2019-01-20 02:07:00,944 West St, Los Angeles,CA,90001 +143628,27in 4K Gaming Monitor,1,389.99,2019-01-20 02:07:00,944 West St, Los Angeles,CA,90001 +143629,Apple Airpods Headphones,1,150.0,2019-01-05 18:44:00,263 1st St, Atlanta,GA,30301 +143630,iPhone,1,700.0,2019-01-25 22:00:00,890 Sunset St, San Francisco,CA,94016 +143630,Wired Headphones,1,11.99,2019-01-25 22:00:00,890 Sunset St, San Francisco,CA,94016 +143631,20in Monitor,1,109.99,2019-01-22 14:57:00,416 Dogwood St, Los Angeles,CA,90001 +143632,Google Phone,1,600.0,2019-01-08 08:26:00,759 Elm St, Los Angeles,CA,90001 +143632,USB-C Charging Cable,1,11.95,2019-01-08 08:26:00,759 Elm St, Los Angeles,CA,90001 +143632,Wired Headphones,1,11.99,2019-01-08 08:26:00,759 Elm St, Los Angeles,CA,90001 +143633,Wired Headphones,1,11.99,2019-01-16 15:28:00,697 Hickory St, Portland,OR,97035 +143634,USB-C Charging Cable,1,11.95,2019-01-11 00:31:00,370 Forest St, Austin,TX,73301 +143635,Wired Headphones,1,11.99,2019-01-29 11:21:00,747 Jackson St, Boston,MA,02215 +143636,Macbook Pro Laptop,1,1700.0,2019-01-17 23:30:00,509 Washington St, New York City,NY,10001 +143637,USB-C Charging Cable,1,11.95,2019-01-31 08:57:00,551 Maple St, Boston,MA,02215 +143638,ThinkPad Laptop,1,999.99,2019-01-04 23:51:00,305 Ridge St, New York City,NY,10001 +143639,USB-C Charging Cable,1,11.95,2019-01-23 12:39:00,114 Hill St, Los Angeles,CA,90001 +143640,AA Batteries (4-pack),1,3.84,2019-01-31 09:29:00,914 Willow St, San Francisco,CA,94016 +143641,USB-C Charging Cable,1,11.95,2019-01-18 00:01:00,485 Lake St, San Francisco,CA,94016 +143641,20in Monitor,1,109.99,2019-01-18 00:01:00,485 Lake St, San Francisco,CA,94016 +143642,Wired Headphones,1,11.99,2019-01-22 21:48:00,999 10th St, Los Angeles,CA,90001 +143643,Lightning Charging Cable,1,14.95,2019-01-12 22:44:00,663 5th St, Dallas,TX,75001 +143644,Bose SoundSport Headphones,1,99.99,2019-01-13 11:16:00,390 Lake St, Austin,TX,73301 +143645,Wired Headphones,1,11.99,2019-01-25 18:31:00,715 Jefferson St, San Francisco,CA,94016 +143646,AAA Batteries (4-pack),1,2.99,2019-01-06 09:11:00,873 6th St, Boston,MA,02215 +143647,Wired Headphones,1,11.99,2019-01-23 12:53:00,464 Jackson St, Portland,OR,97035 +143648,AA Batteries (4-pack),1,3.84,2019-01-22 19:45:00,316 Meadow St, Dallas,TX,75001 +143649,27in FHD Monitor,1,149.99,2019-01-04 21:14:00,773 Jackson St, Los Angeles,CA,90001 +143650,Lightning Charging Cable,1,14.95,2019-01-31 22:06:00,859 Highland St, Dallas,TX,75001 +143651,ThinkPad Laptop,1,999.99,2019-01-07 16:15:00,631 8th St, Atlanta,GA,30301 +143652,AAA Batteries (4-pack),1,2.99,2019-01-17 06:22:00,891 5th St, San Francisco,CA,94016 +143653,USB-C Charging Cable,1,11.95,2019-01-24 18:39:00,116 5th St, Seattle,WA,98101 +143654,AA Batteries (4-pack),1,3.84,2019-01-25 17:36:00,762 8th St, Los Angeles,CA,90001 +143655,20in Monitor,1,109.99,2019-01-22 16:39:00,102 2nd St, New York City,NY,10001 +143656,Lightning Charging Cable,1,14.95,2019-01-22 11:39:00,865 11th St, Boston,MA,02215 +143657,27in FHD Monitor,1,149.99,2019-01-05 14:40:00,693 7th St, San Francisco,CA,94016 +143658,Google Phone,1,600.0,2019-01-05 13:46:00,411 Walnut St, Seattle,WA,98101 +143658,USB-C Charging Cable,1,11.95,2019-01-05 13:46:00,411 Walnut St, Seattle,WA,98101 +143659,27in FHD Monitor,1,149.99,2019-01-10 18:22:00,63 Wilson St, Los Angeles,CA,90001 +143660,Wired Headphones,2,11.99,2019-01-28 20:07:00,454 Spruce St, Atlanta,GA,30301 +143661,Bose SoundSport Headphones,1,99.99,2019-01-04 16:52:00,775 Jackson St, Boston,MA,02215 +143662,Bose SoundSport Headphones,1,99.99,2019-01-31 22:55:00,776 Meadow St, Dallas,TX,75001 +143663,Bose SoundSport Headphones,1,99.99,2019-01-28 10:40:00,461 Dogwood St, San Francisco,CA,94016 +143664,ThinkPad Laptop,1,999.99,2019-01-19 15:44:00,927 4th St, Portland,OR,97035 +143665,27in 4K Gaming Monitor,1,389.99,2019-01-15 00:28:00,585 Forest St, Los Angeles,CA,90001 +143666,Apple Airpods Headphones,1,150.0,2019-01-20 09:22:00,689 9th St, Atlanta,GA,30301 +143666,iPhone,1,700.0,2019-01-20 09:22:00,689 9th St, Atlanta,GA,30301 +143667,Bose SoundSport Headphones,1,99.99,2019-01-23 12:00:00,538 Chestnut St, Los Angeles,CA,90001 +143668,Macbook Pro Laptop,1,1700.0,2019-01-07 09:50:00,150 Church St, San Francisco,CA,94016 +143669,AA Batteries (4-pack),1,3.84,2019-01-24 21:32:00,409 Elm St, Portland,ME,04101 +143670,Wired Headphones,1,11.99,2019-01-19 08:01:00,908 Chestnut St, San Francisco,CA,94016 +143671,AAA Batteries (4-pack),1,2.99,2019-01-04 13:01:00,233 Ridge St, New York City,NY,10001 +143672,Wired Headphones,1,11.99,2019-01-30 16:13:00,608 Main St, Boston,MA,02215 +143673,27in FHD Monitor,1,149.99,2019-01-21 10:14:00,785 Adams St, Austin,TX,73301 +143674,Wired Headphones,2,11.99,2019-01-01 12:06:00,300 Adams St, Portland,OR,97035 +143675,Flatscreen TV,1,300.0,2019-01-04 01:32:00,708 Hickory St, Los Angeles,CA,90001 +143676,AA Batteries (4-pack),1,3.84,2019-01-24 03:31:00,739 Church St, Dallas,TX,75001 +143677,Wired Headphones,1,11.99,2019-01-14 19:02:00,959 13th St, Los Angeles,CA,90001 +143678,Lightning Charging Cable,1,14.95,2019-01-28 01:06:00,498 1st St, Boston,MA,02215 +143679,iPhone,1,700.0,2019-01-10 19:46:00,292 Church St, Los Angeles,CA,90001 +143680,34in Ultrawide Monitor,2,379.99,2019-01-10 12:35:00,337 Highland St, Seattle,WA,98101 +143681,AA Batteries (4-pack),3,3.84,2019-01-03 14:54:00,663 River St, San Francisco,CA,94016 +143682,AAA Batteries (4-pack),1,2.99,2019-01-17 10:40:00,249 Center St, Los Angeles,CA,90001 +143683,Vareebadd Phone,1,400.0,2019-01-11 12:02:00,410 Wilson St, Portland,OR,97035 +143684,USB-C Charging Cable,1,11.95,2019-01-23 05:29:00,893 Pine St, Portland,OR,97035 +143685,34in Ultrawide Monitor,1,379.99,2019-01-04 16:55:00,206 North St, Los Angeles,CA,90001 +143686,Lightning Charging Cable,1,14.95,2019-01-23 00:05:00,410 Highland St, Portland,OR,97035 +143687,Wired Headphones,1,11.99,2019-01-07 23:51:00,842 Washington St, Atlanta,GA,30301 +143688,USB-C Charging Cable,1,11.95,2019-01-18 10:39:00,969 Sunset St, New York City,NY,10001 +143689,Apple Airpods Headphones,1,150.0,2019-01-06 15:28:00,858 2nd St, Portland,OR,97035 +143690,iPhone,1,700.0,2019-01-16 12:44:00,993 Madison St, Los Angeles,CA,90001 +143691,LG Washing Machine,1,600.0,2019-01-29 09:30:00,24 Lakeview St, Los Angeles,CA,90001 +143692,AAA Batteries (4-pack),1,2.99,2019-01-15 10:50:00,867 Dogwood St, New York City,NY,10001 +143693,AAA Batteries (4-pack),5,2.99,2019-01-07 13:20:00,304 2nd St, New York City,NY,10001 +143694,iPhone,1,700.0,2019-01-03 19:20:00,265 6th St, New York City,NY,10001 +143694,Lightning Charging Cable,1,14.95,2019-01-03 19:20:00,265 6th St, New York City,NY,10001 +143695,Google Phone,1,600.0,2019-01-19 23:29:00,633 Maple St, San Francisco,CA,94016 +143696,iPhone,1,700.0,2019-01-21 21:46:00,499 Maple St, New York City,NY,10001 +143696,Lightning Charging Cable,1,14.95,2019-01-21 21:46:00,499 Maple St, New York City,NY,10001 +143697,AA Batteries (4-pack),1,3.84,2019-01-16 10:12:00,220 8th St, San Francisco,CA,94016 +143698,AAA Batteries (4-pack),2,2.99,2019-01-06 21:20:00,565 Walnut St, Atlanta,GA,30301 +143699,27in 4K Gaming Monitor,1,389.99,2019-01-01 10:08:00,409 Center St, San Francisco,CA,94016 +143700,AAA Batteries (4-pack),1,2.99,2019-01-27 17:38:00,864 14th St, New York City,NY,10001 +143701,27in FHD Monitor,1,149.99,2019-01-03 22:54:00,670 Washington St, Los Angeles,CA,90001 +143702,Wired Headphones,1,11.99,2019-01-19 18:18:00,909 Lakeview St, Austin,TX,73301 +143703,AAA Batteries (4-pack),2,2.99,2019-01-03 19:01:00,335 Center St, Boston,MA,02215 +143704,Apple Airpods Headphones,1,150.0,2019-01-14 19:30:00,247 North St, Los Angeles,CA,90001 +143705,AA Batteries (4-pack),2,3.84,2019-01-25 16:06:00,954 10th St, Atlanta,GA,30301 +143706,Vareebadd Phone,1,400.0,2019-01-24 13:00:00,925 Walnut St, San Francisco,CA,94016 +143707,Flatscreen TV,1,300.0,2019-01-31 17:48:00,750 Main St, Seattle,WA,98101 +143708,Bose SoundSport Headphones,1,99.99,2019-01-05 15:24:00,987 Willow St, San Francisco,CA,94016 +143709,Lightning Charging Cable,1,14.95,2019-01-06 07:39:00,187 5th St, Dallas,TX,75001 +143710,AA Batteries (4-pack),1,3.84,2019-01-30 19:50:00,801 11th St, Seattle,WA,98101 +143710,Wired Headphones,1,11.99,2019-01-30 19:50:00,801 11th St, Seattle,WA,98101 +143711,USB-C Charging Cable,1,11.95,2019-01-13 10:40:00,903 Hill St, Boston,MA,02215 +143712,Apple Airpods Headphones,1,150.0,2019-01-11 19:59:00,934 Maple St, New York City,NY,10001 +143713,27in FHD Monitor,1,149.99,2019-01-12 12:06:00,548 Meadow St, San Francisco,CA,94016 +143714,Bose SoundSport Headphones,1,99.99,2019-01-16 20:32:00,693 4th St, Los Angeles,CA,90001 +143715,USB-C Charging Cable,1,11.95,2019-01-01 11:16:00,959 2nd St, Atlanta,GA,30301 +143716,27in 4K Gaming Monitor,1,389.99,2019-01-16 17:07:00,203 Chestnut St, Atlanta,GA,30301 +143717,Wired Headphones,1,11.99,2019-01-20 13:53:00,248 Pine St, Los Angeles,CA,90001 +143718,27in FHD Monitor,1,149.99,2019-01-26 13:59:00,740 Lake St, Los Angeles,CA,90001 +143719,AAA Batteries (4-pack),1,2.99,2019-01-24 21:54:00,50 Johnson St, Los Angeles,CA,90001 +143720,ThinkPad Laptop,1,999.99,2019-01-23 14:57:00,779 2nd St, New York City,NY,10001 +143721,27in 4K Gaming Monitor,1,389.99,2019-01-28 17:21:00,73 Maple St, San Francisco,CA,94016 +143722,Lightning Charging Cable,1,14.95,2019-01-28 05:07:00,504 Madison St, Portland,OR,97035 +143723,Lightning Charging Cable,1,14.95,2019-01-10 13:09:00,987 Forest St, Atlanta,GA,30301 +143724,USB-C Charging Cable,1,11.95,2019-01-05 19:10:00,998 5th St, San Francisco,CA,94016 +143725,Apple Airpods Headphones,1,150.0,2019-01-12 16:49:00,618 Lakeview St, San Francisco,CA,94016 +143726,AAA Batteries (4-pack),3,2.99,2019-01-08 20:44:00,186 11th St, San Francisco,CA,94016 +143727,27in FHD Monitor,1,149.99,2019-01-27 11:38:00,804 5th St, Atlanta,GA,30301 +143728,AAA Batteries (4-pack),1,2.99,2019-01-17 19:23:00,987 Walnut St, New York City,NY,10001 +143729,AAA Batteries (4-pack),1,2.99,2019-01-24 01:26:00,385 Hill St, New York City,NY,10001 +143730,27in 4K Gaming Monitor,1,389.99,2019-01-12 22:01:00,453 Willow St, Portland,OR,97035 +143731,Apple Airpods Headphones,1,150.0,2019-01-22 15:56:00,390 Maple St, Dallas,TX,75001 +143732,Macbook Pro Laptop,1,1700.0,2019-01-01 20:04:00,362 Maple St, Boston,MA,02215 +143733,AA Batteries (4-pack),1,3.84,2019-01-11 16:35:00,52 13th St, Austin,TX,73301 +143734,AAA Batteries (4-pack),2,2.99,2019-01-08 17:51:00,764 14th St, Los Angeles,CA,90001 +143735,Wired Headphones,1,11.99,2019-01-02 18:25:00,57 Cedar St, Los Angeles,CA,90001 +143736,USB-C Charging Cable,1,11.95,2019-01-10 17:56:00,638 Willow St, Los Angeles,CA,90001 +143737,Wired Headphones,1,11.99,2019-01-20 15:10:00,139 2nd St, Los Angeles,CA,90001 +143738,iPhone,1,700.0,2019-01-01 13:29:00,462 Cedar St, Boston,MA,02215 +143738,Lightning Charging Cable,1,14.95,2019-01-01 13:29:00,462 Cedar St, Boston,MA,02215 +143739,20in Monitor,1,109.99,2019-01-21 09:19:00,401 11th St, Los Angeles,CA,90001 +143740,34in Ultrawide Monitor,1,379.99,2019-01-11 23:47:00,703 Main St, Los Angeles,CA,90001 +143741,Flatscreen TV,1,300.0,2019-01-18 19:56:00,488 Cherry St, Los Angeles,CA,90001 +143742,Wired Headphones,2,11.99,2019-01-21 20:00:00,167 Lake St, Atlanta,GA,30301 +143743,Lightning Charging Cable,1,14.95,2019-01-14 20:18:00,377 Hickory St, Atlanta,GA,30301 +143744,USB-C Charging Cable,2,11.95,2019-01-16 11:38:00,1 South St, Boston,MA,02215 +143745,Wired Headphones,1,11.99,2019-01-19 21:28:00,672 10th St, Los Angeles,CA,90001 +143746,27in 4K Gaming Monitor,1,389.99,2019-01-27 18:41:00,486 Maple St, New York City,NY,10001 +143747,Lightning Charging Cable,1,14.95,2019-01-30 17:35:00,927 Dogwood St, Boston,MA,02215 +143748,Bose SoundSport Headphones,1,99.99,2019-01-20 21:05:00,32 6th St, San Francisco,CA,94016 +143749,Bose SoundSport Headphones,1,99.99,2019-01-29 19:51:00,62 13th St, Los Angeles,CA,90001 +143750,Wired Headphones,1,11.99,2019-01-03 21:00:00,103 Spruce St, San Francisco,CA,94016 +143751,AAA Batteries (4-pack),1,2.99,2019-01-21 09:39:00,371 Johnson St, Dallas,TX,75001 +143752,iPhone,1,700.0,2019-01-30 12:18:00,438 10th St, San Francisco,CA,94016 +143752,Wired Headphones,1,11.99,2019-01-30 12:18:00,438 10th St, San Francisco,CA,94016 +143753,Macbook Pro Laptop,1,1700.0,2019-01-16 23:13:00,192 Church St, New York City,NY,10001 +143754,Apple Airpods Headphones,1,150.0,2019-01-10 13:20:00,955 Center St, Austin,TX,73301 +143755,Wired Headphones,1,11.99,2019-01-01 21:59:00,150 Lincoln St, Los Angeles,CA,90001 +143756,Wired Headphones,1,11.99,2019-01-28 13:59:00,86 Lakeview St, San Francisco,CA,94016 +143757,USB-C Charging Cable,1,11.95,2019-01-10 17:02:00,709 Church St, New York City,NY,10001 +143758,Lightning Charging Cable,1,14.95,2019-01-04 04:28:00,103 5th St, Atlanta,GA,30301 +143759,ThinkPad Laptop,1,999.99,2019-01-12 14:41:00,119 Jefferson St, Seattle,WA,98101 +143760,USB-C Charging Cable,1,11.95,2019-01-19 20:14:00,665 12th St, New York City,NY,10001 +143761,USB-C Charging Cable,1,11.95,2019-01-26 11:07:00,173 Wilson St, Atlanta,GA,30301 +143762,LG Washing Machine,1,600.0,2019-01-05 23:04:00,331 14th St, San Francisco,CA,94016 +143763,Apple Airpods Headphones,1,150.0,2019-01-01 08:44:00,142 Lakeview St, Atlanta,GA,30301 +143764,Bose SoundSport Headphones,1,99.99,2019-01-18 13:07:00,348 Hickory St, San Francisco,CA,94016 +143765,USB-C Charging Cable,1,11.95,2019-01-07 14:24:00,938 13th St, San Francisco,CA,94016 +143766,AA Batteries (4-pack),1,3.84,2019-01-04 19:02:00,869 Walnut St, San Francisco,CA,94016 +143767,20in Monitor,1,109.99,2019-01-09 20:55:00,593 14th St, Los Angeles,CA,90001 +143768,Lightning Charging Cable,1,14.95,2019-01-14 10:15:00,790 Pine St, Los Angeles,CA,90001 +143769,27in FHD Monitor,1,149.99,2019-01-15 13:29:00,598 Meadow St, Los Angeles,CA,90001 +143770,AAA Batteries (4-pack),3,2.99,2019-01-20 22:24:00,256 Spruce St, Atlanta,GA,30301 +143771,Bose SoundSport Headphones,1,99.99,2019-01-15 12:00:00,360 Hickory St, Austin,TX,73301 +143772,AA Batteries (4-pack),1,3.84,2019-01-10 23:10:00,578 West St, Austin,TX,73301 +143773,Lightning Charging Cable,1,14.95,2019-01-04 06:20:00,23 South St, San Francisco,CA,94016 +143774,AAA Batteries (4-pack),1,2.99,2019-01-19 16:03:00,998 Main St, New York City,NY,10001 +143775,27in FHD Monitor,1,149.99,2019-01-20 12:10:00,72 5th St, San Francisco,CA,94016 +143776,Macbook Pro Laptop,1,1700.0,2019-01-08 09:24:00,224 Park St, Dallas,TX,75001 +143777,ThinkPad Laptop,1,999.99,2019-01-13 20:55:00,716 Walnut St, San Francisco,CA,94016 +143778,Apple Airpods Headphones,1,150.0,2019-01-07 13:42:00,695 Park St, Los Angeles,CA,90001 +143779,Wired Headphones,1,11.99,2019-01-24 10:46:00,207 6th St, San Francisco,CA,94016 +143780,Flatscreen TV,1,300.0,2019-01-05 15:24:00,742 North St, Atlanta,GA,30301 +143781,iPhone,1,700.0,2019-01-02 01:13:00,792 Jefferson St, Portland,OR,97035 +143782,Wired Headphones,1,11.99,2019-01-23 15:27:00,802 Main St, Seattle,WA,98101 +143783,Apple Airpods Headphones,1,150.0,2019-01-31 17:36:00,667 Spruce St, Austin,TX,73301 +143784,AA Batteries (4-pack),1,3.84,2019-01-04 16:32:00,169 Johnson St, Portland,OR,97035 +143785,iPhone,1,700.0,2019-01-09 21:14:00,732 Center St, Dallas,TX,75001 +143786,Apple Airpods Headphones,1,150.0,2019-01-20 16:31:00,917 6th St, Boston,MA,02215 +143787,Wired Headphones,1,11.99,2019-01-27 11:18:00,159 Highland St, Boston,MA,02215 +143788,USB-C Charging Cable,1,11.95,2019-01-21 09:49:00,591 11th St, Dallas,TX,75001 +143789,AAA Batteries (4-pack),1,2.99,2019-01-27 10:45:00,211 Madison St, Atlanta,GA,30301 +143790,Macbook Pro Laptop,1,1700.0,2019-01-08 23:16:00,823 13th St, Dallas,TX,75001 +143791,AA Batteries (4-pack),2,3.84,2019-01-11 09:37:00,600 6th St, Dallas,TX,75001 +143792,Lightning Charging Cable,1,14.95,2019-01-18 19:47:00,24 4th St, New York City,NY,10001 +143793,27in FHD Monitor,1,149.99,2019-01-28 11:33:00,740 Meadow St, Dallas,TX,75001 +143794,Apple Airpods Headphones,1,150.0,2019-01-18 09:09:00,882 Dogwood St, Portland,OR,97035 +143795,AAA Batteries (4-pack),2,2.99,2019-01-08 17:47:00,119 Jackson St, Los Angeles,CA,90001 +143796,Apple Airpods Headphones,1,150.0,2019-01-03 12:48:00,693 10th St, New York City,NY,10001 +143797,Wired Headphones,1,11.99,2019-01-10 21:05:00,42 Highland St, San Francisco,CA,94016 +143798,Lightning Charging Cable,1,14.95,2019-01-08 23:57:00,941 Adams St, San Francisco,CA,94016 +143799,USB-C Charging Cable,1,11.95,2019-01-04 11:35:00,186 Maple St, Dallas,TX,75001 +143800,Bose SoundSport Headphones,1,99.99,2019-01-02 11:00:00,540 7th St, Boston,MA,02215 +143801,Lightning Charging Cable,1,14.95,2019-01-05 22:14:00,163 Meadow St, Los Angeles,CA,90001 +143802,27in 4K Gaming Monitor,1,389.99,2019-01-08 12:43:00,304 Lakeview St, San Francisco,CA,94016 +143802,iPhone,1,700.0,2019-01-08 12:43:00,304 Lakeview St, San Francisco,CA,94016 +143803,Bose SoundSport Headphones,1,99.99,2019-01-02 09:04:00,807 Cedar St, San Francisco,CA,94016 +143804,AAA Batteries (4-pack),1,2.99,2019-01-20 22:23:00,636 Dogwood St, Austin,TX,73301 +143805,Flatscreen TV,1,300.0,2019-01-30 06:56:00,891 Elm St, Los Angeles,CA,90001 +143806,34in Ultrawide Monitor,1,379.99,2019-01-14 12:58:00,114 South St, Boston,MA,02215 +143807,27in 4K Gaming Monitor,1,389.99,2019-01-15 00:30:00,609 Forest St, Dallas,TX,75001 +143808,AA Batteries (4-pack),3,3.84,2019-01-08 15:13:00,561 Wilson St, San Francisco,CA,94016 +143809,Apple Airpods Headphones,1,150.0,2019-01-27 00:57:00,659 Maple St, Austin,TX,73301 +143810,AA Batteries (4-pack),2,3.84,2019-01-07 18:48:00,93 Cedar St, Seattle,WA,98101 +143811,27in 4K Gaming Monitor,1,389.99,2019-01-08 16:29:00,39 1st St, San Francisco,CA,94016 +143812,Bose SoundSport Headphones,1,99.99,2019-01-25 08:14:00,194 Cedar St, Boston,MA,02215 +143813,AAA Batteries (4-pack),1,2.99,2019-01-25 22:36:00,274 Spruce St, Los Angeles,CA,90001 +143814,Apple Airpods Headphones,1,150.0,2019-01-08 15:53:00,785 8th St, Portland,OR,97035 +143815,Macbook Pro Laptop,1,1700.0,2019-01-29 15:08:00,391 10th St, Seattle,WA,98101 +143816,Bose SoundSport Headphones,1,99.99,2019-01-16 11:12:00,578 Cedar St, Austin,TX,73301 +143817,USB-C Charging Cable,1,11.95,2019-01-09 11:03:00,295 2nd St, Los Angeles,CA,90001 +143818,USB-C Charging Cable,1,11.95,2019-01-24 18:04:00,616 12th St, New York City,NY,10001 +143819,USB-C Charging Cable,1,11.95,2019-01-22 00:26:00,317 Madison St, Los Angeles,CA,90001 +143820,Flatscreen TV,1,300.0,2019-01-30 10:34:00,720 Forest St, Los Angeles,CA,90001 +143821,Lightning Charging Cable,1,14.95,2019-01-24 07:48:00,310 11th St, Boston,MA,02215 +143822,Apple Airpods Headphones,1,150.0,2019-01-19 11:17:00,409 Park St, Portland,OR,97035 +143823,27in 4K Gaming Monitor,1,389.99,2019-01-25 13:23:00,891 8th St, Atlanta,GA,30301 +143824,20in Monitor,1,109.99,2019-01-20 18:39:00,20 Hill St, Los Angeles,CA,90001 +143825,USB-C Charging Cable,1,11.95,2019-01-25 18:11:00,803 13th St, San Francisco,CA,94016 +143826,AAA Batteries (4-pack),1,2.99,2019-01-09 10:15:00,180 Pine St, San Francisco,CA,94016 +143827,ThinkPad Laptop,1,999.99,2019-01-20 16:43:00,268 2nd St, San Francisco,CA,94016 +143828,Wired Headphones,1,11.99,2019-01-19 22:08:00,778 Pine St, Austin,TX,73301 +143829,27in 4K Gaming Monitor,1,389.99,2019-01-18 13:53:00,230 Spruce St, New York City,NY,10001 +143830,Flatscreen TV,1,300.0,2019-01-25 14:41:00,125 Washington St, Seattle,WA,98101 +143831,Wired Headphones,1,11.99,2019-01-22 12:36:00,351 Maple St, San Francisco,CA,94016 +143831,Bose SoundSport Headphones,1,99.99,2019-01-22 12:36:00,351 Maple St, San Francisco,CA,94016 +143832,ThinkPad Laptop,1,999.99,2019-01-11 20:09:00,621 Elm St, Los Angeles,CA,90001 +143833,USB-C Charging Cable,1,11.95,2019-01-25 13:48:00,951 1st St, San Francisco,CA,94016 +143834,Bose SoundSport Headphones,1,99.99,2019-01-14 20:01:00,457 Cherry St, Dallas,TX,75001 +143835,Lightning Charging Cable,1,14.95,2019-01-05 19:13:00,659 Meadow St, Seattle,WA,98101 +143836,AAA Batteries (4-pack),1,2.99,2019-01-02 10:09:00,355 Highland St, Portland,OR,97035 +143837,Flatscreen TV,1,300.0,2019-01-26 23:14:00,735 Chestnut St, New York City,NY,10001 +143838,Bose SoundSport Headphones,1,99.99,2019-01-24 20:09:00,68 Pine St, Los Angeles,CA,90001 +143839,AA Batteries (4-pack),1,3.84,2019-01-08 14:24:00,127 4th St, Boston,MA,02215 +143840,AA Batteries (4-pack),1,3.84,2019-01-10 19:59:00,528 West St, Seattle,WA,98101 +143841,27in 4K Gaming Monitor,1,389.99,2019-01-18 20:16:00,685 11th St, Seattle,WA,98101 +143842,AAA Batteries (4-pack),1,2.99,2019-01-17 09:05:00,711 Church St, Los Angeles,CA,90001 +143843,iPhone,1,700.0,2019-01-10 11:04:00,777 Willow St, New York City,NY,10001 +143844,Bose SoundSport Headphones,1,99.99,2019-01-05 14:13:00,758 Maple St, Los Angeles,CA,90001 +143845,Bose SoundSport Headphones,1,99.99,2019-01-14 12:42:00,27 Willow St, Austin,TX,73301 +143846,Lightning Charging Cable,1,14.95,2019-01-29 11:44:00,786 Park St, San Francisco,CA,94016 +143847,ThinkPad Laptop,1,999.99,2019-01-17 12:23:00,994 Adams St, Los Angeles,CA,90001 +143848,Lightning Charging Cable,1,14.95,2019-01-16 17:01:00,990 10th St, Austin,TX,73301 +143849,iPhone,1,700.0,2019-01-08 09:50:00,752 Dogwood St, New York City,NY,10001 +143850,AAA Batteries (4-pack),1,2.99,2019-01-17 08:31:00,360 14th St, Los Angeles,CA,90001 +143851,AA Batteries (4-pack),1,3.84,2019-01-09 01:01:00,78 Lakeview St, Dallas,TX,75001 +143852,AA Batteries (4-pack),1,3.84,2019-01-26 16:48:00,477 Walnut St, Boston,MA,02215 +143853,AAA Batteries (4-pack),1,2.99,2019-01-15 08:35:00,44 5th St, Los Angeles,CA,90001 +143854,USB-C Charging Cable,1,11.95,2019-01-27 19:51:00,786 Cherry St, San Francisco,CA,94016 +143855,ThinkPad Laptop,1,999.99,2019-01-05 00:05:00,222 Church St, San Francisco,CA,94016 +143856,27in FHD Monitor,1,149.99,2019-01-26 19:14:00,781 7th St, New York City,NY,10001 +143857,Lightning Charging Cable,1,14.95,2019-01-20 21:11:00,144 4th St, New York City,NY,10001 +143857,AAA Batteries (4-pack),1,2.99,2019-01-20 21:11:00,144 4th St, New York City,NY,10001 +143858,AA Batteries (4-pack),1,3.84,2019-01-09 10:20:00,110 Park St, Seattle,WA,98101 +143859,Apple Airpods Headphones,1,150.0,2019-01-03 23:25:00,837 2nd St, Los Angeles,CA,90001 +143860,Lightning Charging Cable,1,14.95,2019-01-14 13:46:00,533 Jackson St, Boston,MA,02215 +143861,Vareebadd Phone,1,400.0,2019-01-12 09:18:00,902 Jefferson St, Austin,TX,73301 +143862,Apple Airpods Headphones,1,150.0,2019-01-05 19:12:00,752 Walnut St, New York City,NY,10001 +143863,Lightning Charging Cable,1,14.95,2019-01-01 21:08:00,884 Cherry St, Los Angeles,CA,90001 +143864,Lightning Charging Cable,1,14.95,2019-01-06 11:06:00,671 Madison St, Los Angeles,CA,90001 +143865,iPhone,1,700.0,2019-01-26 20:53:00,620 Johnson St, Seattle,WA,98101 +143865,Wired Headphones,1,11.99,2019-01-26 20:53:00,620 Johnson St, Seattle,WA,98101 +143866,27in 4K Gaming Monitor,1,389.99,2019-01-08 12:33:00,371 Church St, Portland,OR,97035 +143867,USB-C Charging Cable,1,11.95,2019-01-07 14:04:00,713 4th St, New York City,NY,10001 +143868,Apple Airpods Headphones,1,150.0,2019-01-14 12:27:00,206 Church St, Portland,OR,97035 +143869,iPhone,1,700.0,2019-01-11 16:17:00,481 Center St, San Francisco,CA,94016 +143869,Wired Headphones,1,11.99,2019-01-11 16:17:00,481 Center St, San Francisco,CA,94016 +143870,27in FHD Monitor,1,149.99,2019-01-22 07:12:00,473 Park St, New York City,NY,10001 +143871,AAA Batteries (4-pack),1,2.99,2019-01-21 14:36:00,88 South St, New York City,NY,10001 +143872,Lightning Charging Cable,2,14.95,2019-01-10 06:47:00,558 River St, San Francisco,CA,94016 +143873,Flatscreen TV,1,300.0,2019-01-23 06:40:00,14 Sunset St, Los Angeles,CA,90001 +143874,Lightning Charging Cable,1,14.95,2019-01-30 12:14:00,392 Chestnut St, San Francisco,CA,94016 +143875,USB-C Charging Cable,3,11.95,2019-01-22 10:00:00,907 Cherry St, Los Angeles,CA,90001 +143876,Apple Airpods Headphones,1,150.0,2019-01-28 22:09:00,265 Ridge St, San Francisco,CA,94016 +143877,ThinkPad Laptop,1,999.99,2019-01-04 20:16:00,792 6th St, Boston,MA,02215 +143878,AAA Batteries (4-pack),1,2.99,2019-01-08 20:38:00,108 South St, Seattle,WA,98101 +143879,USB-C Charging Cable,1,11.95,2019-01-28 12:11:00,665 Adams St, San Francisco,CA,94016 +143880,ThinkPad Laptop,1,999.99,2019-01-02 15:45:00,973 Willow St, Atlanta,GA,30301 +143881,Wired Headphones,1,11.99,2019-01-25 14:47:00,399 Johnson St, Los Angeles,CA,90001 +143882,27in FHD Monitor,1,149.99,2019-01-17 10:26:00,176 13th St, Dallas,TX,75001 +143883,AA Batteries (4-pack),1,3.84,2019-01-07 15:41:00,482 1st St, Los Angeles,CA,90001 +143884,AAA Batteries (4-pack),2,2.99,2019-01-13 17:27:00,297 Ridge St, Los Angeles,CA,90001 +143885,Bose SoundSport Headphones,1,99.99,2019-01-23 20:54:00,341 Lincoln St, San Francisco,CA,94016 +143886,USB-C Charging Cable,1,11.95,2019-01-09 17:53:00,900 South St, Austin,TX,73301 +143887,AA Batteries (4-pack),1,3.84,2019-01-19 19:58:00,728 4th St, San Francisco,CA,94016 +143888,Macbook Pro Laptop,1,1700.0,2019-01-17 00:31:00,368 Jackson St, Seattle,WA,98101 +143889,27in 4K Gaming Monitor,1,389.99,2019-01-25 20:43:00,637 Adams St, Seattle,WA,98101 +143890,USB-C Charging Cable,1,11.95,2019-01-28 05:46:00,232 Elm St, Atlanta,GA,30301 +143891,Bose SoundSport Headphones,1,99.99,2019-01-22 10:27:00,517 Wilson St, Los Angeles,CA,90001 +143892,Wired Headphones,1,11.99,2019-01-19 00:55:00,340 5th St, Los Angeles,CA,90001 +143893,34in Ultrawide Monitor,1,379.99,2019-01-15 05:49:00,163 9th St, San Francisco,CA,94016 +143894,ThinkPad Laptop,1,999.99,2019-01-26 18:51:00,264 Hill St, Los Angeles,CA,90001 +143895,ThinkPad Laptop,1,999.99,2019-01-22 12:17:00,51 Meadow St, Los Angeles,CA,90001 +143896,Google Phone,1,600.0,2019-01-13 23:00:00,753 River St, Austin,TX,73301 +143897,Google Phone,1,600.0,2019-01-01 13:15:00,979 9th St, Portland,OR,97035 +143898,34in Ultrawide Monitor,1,379.99,2019-01-18 07:51:00,11 4th St, New York City,NY,10001 +143899,Lightning Charging Cable,1,14.95,2019-01-14 10:52:00,159 7th St, Boston,MA,02215 +143900,Apple Airpods Headphones,1,150.0,2019-01-22 15:23:00,178 Willow St, San Francisco,CA,94016 +143901,Flatscreen TV,1,300.0,2019-01-08 17:36:00,436 Elm St, New York City,NY,10001 +143902,AA Batteries (4-pack),1,3.84,2019-01-11 20:54:00,357 Church St, New York City,NY,10001 +143903,USB-C Charging Cable,1,11.95,2019-01-26 19:37:00,817 Hickory St, Los Angeles,CA,90001 +143904,Macbook Pro Laptop,1,1700.0,2019-01-14 12:42:00,507 Cherry St, Dallas,TX,75001 +143905,Bose SoundSport Headphones,1,99.99,2019-01-02 13:46:00,237 8th St, Los Angeles,CA,90001 +143906,Google Phone,1,600.0,2019-01-30 18:41:00,602 Dogwood St, Dallas,TX,75001 +143907,AA Batteries (4-pack),1,3.84,2019-01-05 14:36:00,885 12th St, San Francisco,CA,94016 +143908,Lightning Charging Cable,1,14.95,2019-01-04 00:41:00,859 11th St, New York City,NY,10001 +143909,Wired Headphones,1,11.99,2019-01-25 11:30:00,189 5th St, Dallas,TX,75001 +143910,AA Batteries (4-pack),1,3.84,2019-01-04 18:21:00,21 8th St, New York City,NY,10001 +143911,Apple Airpods Headphones,1,150.0,2019-01-29 18:57:00,868 Wilson St, Dallas,TX,75001 +143912,AA Batteries (4-pack),2,3.84,2019-01-02 16:17:00,209 Center St, Boston,MA,02215 +143913,27in 4K Gaming Monitor,1,389.99,2019-01-17 11:39:00,240 Willow St, Los Angeles,CA,90001 +143914,USB-C Charging Cable,1,11.95,2019-01-18 00:35:00,766 Center St, San Francisco,CA,94016 +143915,Wired Headphones,1,11.99,2019-01-05 11:09:00,43 Jackson St, Austin,TX,73301 +143916,27in FHD Monitor,1,149.99,2019-01-15 13:01:00,822 Cherry St, Los Angeles,CA,90001 +143917,Lightning Charging Cable,1,14.95,2019-01-17 11:53:00,537 10th St, San Francisco,CA,94016 +143918,AAA Batteries (4-pack),1,2.99,2019-01-16 10:49:00,950 Main St, San Francisco,CA,94016 +143919,Wired Headphones,2,11.99,2019-01-02 12:50:00,195 Forest St, Seattle,WA,98101 +143920,Flatscreen TV,1,300.0,2019-01-11 19:05:00,679 Maple St, Los Angeles,CA,90001 +143921,Macbook Pro Laptop,1,1700.0,2019-01-04 13:43:00,241 Maple St, San Francisco,CA,94016 +143922,Lightning Charging Cable,1,14.95,2019-01-04 13:24:00,95 Madison St, Atlanta,GA,30301 +143923,Wired Headphones,1,11.99,2019-01-08 22:28:00,79 Elm St, Portland,OR,97035 +143924,Wired Headphones,1,11.99,2019-01-12 00:32:00,847 River St, Los Angeles,CA,90001 +143925,27in FHD Monitor,1,149.99,2019-01-07 21:19:00,564 2nd St, Los Angeles,CA,90001 +143926,Wired Headphones,1,11.99,2019-01-24 14:46:00,657 6th St, Atlanta,GA,30301 +143927,Apple Airpods Headphones,1,150.0,2019-01-09 17:51:00,542 5th St, San Francisco,CA,94016 +143928,27in FHD Monitor,1,149.99,2019-01-28 21:03:00,125 Spruce St, Portland,OR,97035 +143929,34in Ultrawide Monitor,1,379.99,2019-01-29 23:20:00,765 Sunset St, Los Angeles,CA,90001 +143930,AAA Batteries (4-pack),1,2.99,2019-01-18 18:24:00,216 Lake St, Seattle,WA,98101 +143931,USB-C Charging Cable,1,11.95,2019-01-21 12:02:00,317 West St, San Francisco,CA,94016 +143932,USB-C Charging Cable,1,11.95,2019-01-16 20:54:00,741 8th St, San Francisco,CA,94016 +143933,Bose SoundSport Headphones,1,99.99,2019-01-06 10:06:00,341 4th St, Atlanta,GA,30301 +143934,iPhone,1,700.0,2019-01-12 08:26:00,100 2nd St, Seattle,WA,98101 +143935,Lightning Charging Cable,1,14.95,2019-01-07 12:06:00,910 Wilson St, Portland,ME,04101 +143936,Bose SoundSport Headphones,1,99.99,2019-01-20 09:28:00,805 Pine St, Dallas,TX,75001 +143937,27in 4K Gaming Monitor,1,389.99,2019-01-09 14:52:00,872 7th St, Los Angeles,CA,90001 +143938,20in Monitor,1,109.99,2019-01-04 22:05:00,302 8th St, Seattle,WA,98101 +143939,Lightning Charging Cable,1,14.95,2019-01-28 13:07:00,361 Lincoln St, Los Angeles,CA,90001 +143940,ThinkPad Laptop,1,999.99,2019-01-14 18:43:00,553 12th St, Austin,TX,73301 +143941,Wired Headphones,1,11.99,2019-01-20 20:24:00,487 9th St, Dallas,TX,75001 +143942,AA Batteries (4-pack),1,3.84,2019-01-30 09:42:00,552 Hickory St, Boston,MA,02215 +143943,20in Monitor,1,109.99,2019-01-16 18:41:00,43 Pine St, New York City,NY,10001 +143944,Lightning Charging Cable,1,14.95,2019-01-06 18:05:00,958 2nd St, San Francisco,CA,94016 +143945,AA Batteries (4-pack),1,3.84,2019-01-10 09:26:00,221 6th St, New York City,NY,10001 +143946,Wired Headphones,2,11.99,2019-01-18 18:15:00,420 Cedar St, Dallas,TX,75001 +143947,Flatscreen TV,1,300.0,2019-01-17 13:14:00,899 Lakeview St, Dallas,TX,75001 +143948,Wired Headphones,1,11.99,2019-01-06 14:27:00,615 1st St, San Francisco,CA,94016 +143949,USB-C Charging Cable,1,11.95,2019-01-18 22:02:00,564 4th St, Dallas,TX,75001 +143950,AA Batteries (4-pack),1,3.84,2019-01-20 12:44:00,544 South St, Austin,TX,73301 +143951,Apple Airpods Headphones,1,150.0,2019-01-15 21:45:00,685 14th St, Los Angeles,CA,90001 +143952,Wired Headphones,1,11.99,2019-01-13 14:11:00,840 Adams St, San Francisco,CA,94016 +143953,AA Batteries (4-pack),1,3.84,2019-01-26 11:24:00,205 Walnut St, Atlanta,GA,30301 +143954,Wired Headphones,1,11.99,2019-01-05 15:44:00,615 Jackson St, Seattle,WA,98101 +143955,AA Batteries (4-pack),1,3.84,2019-01-18 10:20:00,855 River St, Atlanta,GA,30301 +143956,27in 4K Gaming Monitor,1,389.99,2019-01-12 12:10:00,510 North St, New York City,NY,10001 +143957,27in FHD Monitor,1,149.99,2019-01-14 10:35:00,321 Washington St, Atlanta,GA,30301 +143958,AAA Batteries (4-pack),4,2.99,2019-01-21 11:56:00,275 Maple St, Los Angeles,CA,90001 +143959,Google Phone,1,600.0,2019-01-19 18:49:00,468 Elm St, Atlanta,GA,30301 +143959,USB-C Charging Cable,1,11.95,2019-01-19 18:49:00,468 Elm St, Atlanta,GA,30301 +143960,AA Batteries (4-pack),1,3.84,2019-01-14 00:34:00,379 Park St, San Francisco,CA,94016 +143961,Bose SoundSport Headphones,1,99.99,2019-01-17 12:43:00,153 Hickory St, Atlanta,GA,30301 +143962,27in 4K Gaming Monitor,1,389.99,2019-01-19 10:24:00,712 Hickory St, Los Angeles,CA,90001 +143963,34in Ultrawide Monitor,1,379.99,2019-01-28 01:06:00,915 6th St, Austin,TX,73301 +143964,USB-C Charging Cable,1,11.95,2019-01-06 23:33:00,565 South St, New York City,NY,10001 +143965,Apple Airpods Headphones,1,150.0,2019-01-21 20:43:00,160 11th St, New York City,NY,10001 +143966,iPhone,1,700.0,2019-01-18 22:26:00,653 Main St, Seattle,WA,98101 +143967,USB-C Charging Cable,1,11.95,2019-01-11 10:57:00,554 Wilson St, Los Angeles,CA,90001 +143968,iPhone,1,700.0,2019-01-29 11:21:00,481 Adams St, New York City,NY,10001 +143969,27in FHD Monitor,1,149.99,2019-01-27 12:23:00,807 Maple St, San Francisco,CA,94016 +143970,Apple Airpods Headphones,1,150.0,2019-01-07 11:00:00,180 North St, San Francisco,CA,94016 +143971,Lightning Charging Cable,1,14.95,2019-01-10 23:03:00,972 Hill St, Boston,MA,02215 +143972,USB-C Charging Cable,1,11.95,2019-01-31 07:41:00,819 12th St, New York City,NY,10001 +143973,AAA Batteries (4-pack),2,2.99,2019-01-23 20:21:00,414 Cedar St, Los Angeles,CA,90001 +143974,Lightning Charging Cable,1,14.95,2019-01-05 16:46:00,82 10th St, Atlanta,GA,30301 +143975,Google Phone,1,600.0,2019-01-21 22:53:00,227 Lincoln St, Los Angeles,CA,90001 +143976,Bose SoundSport Headphones,1,99.99,2019-01-03 22:53:00,899 Lake St, Los Angeles,CA,90001 +143977,34in Ultrawide Monitor,1,379.99,2019-01-13 14:27:00,934 Maple St, Dallas,TX,75001 +143978,Wired Headphones,1,11.99,2019-01-21 23:08:00,302 Lakeview St, Los Angeles,CA,90001 +143979,Lightning Charging Cable,2,14.95,2019-01-12 12:10:00,683 Chestnut St, San Francisco,CA,94016 +143980,Lightning Charging Cable,1,14.95,2019-01-15 22:04:00,595 Sunset St, New York City,NY,10001 +143981,Lightning Charging Cable,1,14.95,2019-01-17 19:56:00,436 Walnut St, San Francisco,CA,94016 +143982,Apple Airpods Headphones,1,150.0,2019-01-06 20:01:00,417 Madison St, San Francisco,CA,94016 +143983,Bose SoundSport Headphones,1,99.99,2019-01-27 22:47:00,474 Highland St, Seattle,WA,98101 +143984,Wired Headphones,1,11.99,2019-01-22 14:54:00,459 Hickory St, Boston,MA,02215 +143985,Lightning Charging Cable,1,14.95,2019-01-08 16:35:00,417 West St, Dallas,TX,75001 +143986,Google Phone,1,600.0,2019-01-29 22:06:00,595 2nd St, San Francisco,CA,94016 +143986,USB-C Charging Cable,1,11.95,2019-01-29 22:06:00,595 2nd St, San Francisco,CA,94016 +143987,27in FHD Monitor,1,149.99,2019-01-23 20:04:00,915 11th St, New York City,NY,10001 +143988,27in 4K Gaming Monitor,1,389.99,2019-01-13 19:24:00,806 4th St, Atlanta,GA,30301 +143989,34in Ultrawide Monitor,1,379.99,2019-01-13 07:44:00,217 9th St, Los Angeles,CA,90001 +143990,Apple Airpods Headphones,1,150.0,2019-01-23 20:11:00,752 10th St, Dallas,TX,75001 +143991,USB-C Charging Cable,1,11.95,2019-01-17 21:55:00,646 Cedar St, Dallas,TX,75001 +143992,AAA Batteries (4-pack),1,2.99,2019-01-13 12:58:00,117 River St, San Francisco,CA,94016 +143993,27in 4K Gaming Monitor,1,389.99,2019-01-25 12:04:00,46 Spruce St, San Francisco,CA,94016 +143994,ThinkPad Laptop,1,999.99,2019-01-19 09:37:00,95 Lakeview St, Dallas,TX,75001 +143995,USB-C Charging Cable,1,11.95,2019-01-16 17:51:00,949 14th St, Austin,TX,73301 +143996,Flatscreen TV,1,300.0,2019-01-19 15:53:00,451 Meadow St, Boston,MA,02215 +143997,AAA Batteries (4-pack),2,2.99,2019-01-08 20:39:00,119 Main St, New York City,NY,10001 +143998,iPhone,1,700.0,2019-01-24 11:12:00,232 Cherry St, Atlanta,GA,30301 +143998,Wired Headphones,1,11.99,2019-01-24 11:12:00,232 Cherry St, Atlanta,GA,30301 +143999,AAA Batteries (4-pack),1,2.99,2019-01-19 14:19:00,251 Johnson St, Dallas,TX,75001 +144000,ThinkPad Laptop,1,999.99,2019-01-07 22:08:00,155 9th St, San Francisco,CA,94016 +144001,20in Monitor,1,109.99,2019-01-11 11:35:00,646 Johnson St, Los Angeles,CA,90001 +144002,Flatscreen TV,1,300.0,2019-01-11 10:24:00,644 Lakeview St, Boston,MA,02215 +144003,AAA Batteries (4-pack),1,2.99,2019-01-22 06:33:00,140 Ridge St, Los Angeles,CA,90001 +144004,20in Monitor,1,109.99,2019-01-19 21:37:00,736 Cedar St, Portland,OR,97035 +144005,AAA Batteries (4-pack),1,2.99,2019-01-10 11:02:00,195 Lincoln St, San Francisco,CA,94016 +144006,AA Batteries (4-pack),3,3.84,2019-01-17 20:04:00,21 Dogwood St, Los Angeles,CA,90001 +144007,Wired Headphones,1,11.99,2019-01-22 16:45:00,922 Forest St, San Francisco,CA,94016 +144008,AAA Batteries (4-pack),3,2.99,2019-01-12 15:58:00,692 Pine St, Boston,MA,02215 +144009,Apple Airpods Headphones,1,150.0,2019-01-27 20:56:00,12 Adams St, New York City,NY,10001 +144010,27in FHD Monitor,1,149.99,2019-01-24 15:31:00,86 1st St, Seattle,WA,98101 +144011,34in Ultrawide Monitor,1,379.99,2019-01-04 09:05:00,438 North St, Los Angeles,CA,90001 +144012,Flatscreen TV,1,300.0,2019-01-31 14:59:00,299 13th St, New York City,NY,10001 +144013,USB-C Charging Cable,1,11.95,2019-01-13 23:05:00,815 Ridge St, New York City,NY,10001 +144014,AA Batteries (4-pack),2,3.84,2019-01-11 23:53:00,116 Pine St, Austin,TX,73301 +144015,27in 4K Gaming Monitor,1,389.99,2019-01-03 09:55:00,165 Hill St, Boston,MA,02215 +144016,AAA Batteries (4-pack),2,2.99,2019-01-01 23:12:00,42 1st St, San Francisco,CA,94016 +144017,Lightning Charging Cable,1,14.95,2019-01-14 11:28:00,583 South St, New York City,NY,10001 +144018,Apple Airpods Headphones,1,150.0,2019-01-09 09:58:00,53 11th St, Seattle,WA,98101 +144019,20in Monitor,1,109.99,2019-01-29 12:26:00,889 Maple St, Boston,MA,02215 +144020,iPhone,1,700.0,2019-01-10 22:35:00,893 South St, New York City,NY,10001 +144021,AAA Batteries (4-pack),1,2.99,2019-01-06 06:05:00,290 Maple St, Atlanta,GA,30301 +144022,Google Phone,1,600.0,2019-01-28 08:33:00,799 Jackson St, Boston,MA,02215 +144023,Wired Headphones,1,11.99,2019-01-29 12:10:00,610 Highland St, Seattle,WA,98101 +144024,USB-C Charging Cable,1,11.95,2019-01-21 10:52:00,601 Madison St, San Francisco,CA,94016 +144025,AA Batteries (4-pack),1,3.84,2019-01-21 13:57:00,727 10th St, Los Angeles,CA,90001 +144026,AA Batteries (4-pack),1,3.84,2019-01-18 18:35:00,686 Jackson St, San Francisco,CA,94016 +144027,AA Batteries (4-pack),1,3.84,2019-01-16 10:20:00,321 Walnut St, Austin,TX,73301 +144028,AA Batteries (4-pack),1,3.84,2019-01-18 15:41:00,537 Chestnut St, Boston,MA,02215 +144029,Wired Headphones,1,11.99,2019-01-15 08:23:00,582 Maple St, Seattle,WA,98101 +144030,iPhone,1,700.0,2019-01-17 11:40:00,492 Johnson St, New York City,NY,10001 +144031,Lightning Charging Cable,1,14.95,2019-01-03 11:00:00,938 Church St, Portland,OR,97035 +144032,Wired Headphones,1,11.99,2019-01-17 20:03:00,920 Wilson St, New York City,NY,10001 +144033,AA Batteries (4-pack),1,3.84,2019-01-07 19:09:00,562 7th St, Los Angeles,CA,90001 +144034,AAA Batteries (4-pack),2,2.99,2019-01-12 11:58:00,771 11th St, Los Angeles,CA,90001 +144035,Apple Airpods Headphones,1,150.0,2019-01-07 23:17:00,681 Jackson St, San Francisco,CA,94016 +144036,Vareebadd Phone,1,400.0,2019-01-24 20:08:00,569 Jackson St, San Francisco,CA,94016 +144036,USB-C Charging Cable,1,11.95,2019-01-24 20:08:00,569 Jackson St, San Francisco,CA,94016 +144037,iPhone,1,700.0,2019-01-03 15:50:00,745 12th St, San Francisco,CA,94016 +144038,iPhone,1,700.0,2019-01-23 18:55:00,751 Wilson St, Austin,TX,73301 +144039,AAA Batteries (4-pack),2,2.99,2019-01-11 19:41:00,547 Center St, Atlanta,GA,30301 +144040,Macbook Pro Laptop,1,1700.0,2019-01-23 00:11:00,714 4th St, Boston,MA,02215 +144041,AA Batteries (4-pack),1,3.84,2019-01-28 05:10:00,577 Highland St, New York City,NY,10001 +144042,AA Batteries (4-pack),1,3.84,2019-01-12 12:16:00,43 8th St, Seattle,WA,98101 +144043,AAA Batteries (4-pack),1,2.99,2019-01-15 12:14:00,760 Walnut St, Los Angeles,CA,90001 +144044,iPhone,1,700.0,2019-01-30 21:04:00,760 South St, Los Angeles,CA,90001 +144045,Wired Headphones,1,11.99,2019-01-19 07:33:00,505 2nd St, Seattle,WA,98101 +144046,USB-C Charging Cable,1,11.95,2019-01-12 10:15:00,532 1st St, San Francisco,CA,94016 +144047,Google Phone,1,600.0,2019-01-18 15:21:00,417 4th St, San Francisco,CA,94016 +144047,Bose SoundSport Headphones,1,99.99,2019-01-18 15:21:00,417 4th St, San Francisco,CA,94016 +144048,Apple Airpods Headphones,1,150.0,2019-01-29 15:03:00,899 Wilson St, New York City,NY,10001 +144049,AA Batteries (4-pack),1,3.84,2019-01-20 14:11:00,947 Madison St, San Francisco,CA,94016 +144050,Lightning Charging Cable,1,14.95,2019-01-10 23:46:00,647 4th St, Portland,OR,97035 +144051,Apple Airpods Headphones,1,150.0,2019-01-28 23:45:00,802 Pine St, Boston,MA,02215 +144052,LG Washing Machine,1,600.0,2019-01-23 16:08:00,748 North St, San Francisco,CA,94016 +144053,USB-C Charging Cable,1,11.95,2019-01-30 10:30:00,914 Sunset St, Austin,TX,73301 +144054,iPhone,1,700.0,2019-01-27 21:27:00,541 Adams St, Los Angeles,CA,90001 +144055,Lightning Charging Cable,1,14.95,2019-01-28 20:17:00,302 Dogwood St, San Francisco,CA,94016 +144055,USB-C Charging Cable,1,11.95,2019-01-28 20:17:00,302 Dogwood St, San Francisco,CA,94016 +144056,Lightning Charging Cable,1,14.95,2019-01-12 09:57:00,39 Meadow St, Boston,MA,02215 +144057,Apple Airpods Headphones,1,150.0,2019-01-20 23:21:00,123 Lincoln St, Boston,MA,02215 +144058,27in FHD Monitor,1,149.99,2019-01-07 22:33:00,845 11th St, New York City,NY,10001 +144058,Lightning Charging Cable,1,14.95,2019-01-07 22:33:00,845 11th St, New York City,NY,10001 +144059,Lightning Charging Cable,1,14.95,2019-01-10 21:58:00,231 Adams St, New York City,NY,10001 +144060,Wired Headphones,1,11.99,2019-01-23 19:05:00,974 Elm St, San Francisco,CA,94016 +144061,27in 4K Gaming Monitor,1,389.99,2019-01-07 15:41:00,839 Adams St, San Francisco,CA,94016 +144062,Apple Airpods Headphones,1,150.0,2019-01-02 09:40:00,79 Lincoln St, New York City,NY,10001 +144063,iPhone,1,700.0,2019-01-02 13:53:00,755 Forest St, Dallas,TX,75001 +144063,Apple Airpods Headphones,1,150.0,2019-01-02 13:53:00,755 Forest St, Dallas,TX,75001 +144064,Bose SoundSport Headphones,1,99.99,2019-01-17 17:56:00,376 Chestnut St, Atlanta,GA,30301 +144065,Apple Airpods Headphones,1,150.0,2019-01-23 09:22:00,227 Spruce St, New York City,NY,10001 +144066,Flatscreen TV,1,300.0,2019-01-06 10:36:00,341 1st St, Atlanta,GA,30301 +144066,USB-C Charging Cable,1,11.95,2019-01-06 10:36:00,341 1st St, Atlanta,GA,30301 +144067,Lightning Charging Cable,1,14.95,2019-01-21 10:26:00,323 Cedar St, Dallas,TX,75001 +144068,USB-C Charging Cable,1,11.95,2019-01-30 04:39:00,767 Madison St, Seattle,WA,98101 +144069,LG Washing Machine,1,600.0,2019-01-24 20:23:00,992 North St, New York City,NY,10001 +144069,Bose SoundSport Headphones,1,99.99,2019-01-24 20:23:00,992 North St, New York City,NY,10001 +144070,Wired Headphones,1,11.99,2019-01-04 19:43:00,274 Chestnut St, Portland,OR,97035 +144071,ThinkPad Laptop,1,999.99,2019-01-25 19:17:00,312 Washington St, San Francisco,CA,94016 +144072,ThinkPad Laptop,1,999.99,2019-01-25 23:43:00,769 Lakeview St, Seattle,WA,98101 +144073,AA Batteries (4-pack),1,3.84,2019-01-17 12:15:00,490 12th St, Boston,MA,02215 +144074,Wired Headphones,1,11.99,2019-01-20 12:34:00,969 Main St, Dallas,TX,75001 +144075,AA Batteries (4-pack),2,3.84,2019-01-28 18:19:00,208 8th St, Atlanta,GA,30301 +144076,27in 4K Gaming Monitor,1,389.99,2019-01-31 19:38:00,97 Chestnut St, Portland,OR,97035 +144077,Google Phone,1,600.0,2019-01-05 18:11:00,732 Highland St, New York City,NY,10001 +144078,USB-C Charging Cable,1,11.95,2019-01-21 09:46:00,235 11th St, Los Angeles,CA,90001 +144079,Lightning Charging Cable,1,14.95,2019-01-31 22:33:00,750 West St, Boston,MA,02215 +144080,USB-C Charging Cable,1,11.95,2019-01-30 20:45:00,740 Willow St, Los Angeles,CA,90001 +144081,USB-C Charging Cable,1,11.95,2019-01-21 19:22:00,371 Highland St, Portland,OR,97035 +144082,AA Batteries (4-pack),1,3.84,2019-01-15 20:33:00,921 Church St, New York City,NY,10001 +144083,Wired Headphones,1,11.99,2019-01-08 20:23:00,81 5th St, Austin,TX,73301 +144084,AAA Batteries (4-pack),1,2.99,2019-01-22 16:13:00,92 11th St, Los Angeles,CA,90001 +144085,AAA Batteries (4-pack),2,2.99,2019-01-28 08:39:00,109 5th St, Los Angeles,CA,90001 +144086,AAA Batteries (4-pack),1,2.99,2019-01-12 19:07:00,670 Main St, Los Angeles,CA,90001 +144087,USB-C Charging Cable,1,11.95,2019-01-27 12:09:00,676 Cherry St, New York City,NY,10001 +144088,USB-C Charging Cable,1,11.95,2019-01-15 12:26:00,911 Madison St, Seattle,WA,98101 +144089,27in FHD Monitor,1,149.99,2019-01-31 18:51:00,504 Park St, Los Angeles,CA,90001 +144090,Bose SoundSport Headphones,1,99.99,2019-01-21 13:05:00,989 4th St, San Francisco,CA,94016 +144091,AA Batteries (4-pack),1,3.84,2019-01-18 13:29:00,951 7th St, San Francisco,CA,94016 +144092,iPhone,1,700.0,2019-01-19 21:07:00,627 Meadow St, Atlanta,GA,30301 +144093,AAA Batteries (4-pack),1,2.99,2019-01-03 16:25:00,782 Lincoln St, New York City,NY,10001 +144094,AA Batteries (4-pack),1,3.84,2019-01-26 13:24:00,280 Madison St, New York City,NY,10001 +144095,Flatscreen TV,1,300.0,2019-01-25 17:43:00,779 Walnut St, Boston,MA,02215 +144096,Bose SoundSport Headphones,1,99.99,2019-01-29 10:16:00,588 Johnson St, Seattle,WA,98101 +144097,AA Batteries (4-pack),3,3.84,2019-01-14 12:09:00,29 2nd St, San Francisco,CA,94016 +144098,Lightning Charging Cable,1,14.95,2019-01-11 20:32:00,642 9th St, Dallas,TX,75001 +144099,27in FHD Monitor,1,149.99,2019-01-05 21:20:00,799 12th St, Dallas,TX,75001 +144100,34in Ultrawide Monitor,1,379.99,2019-01-31 15:40:00,780 Center St, Dallas,TX,75001 +144101,USB-C Charging Cable,1,11.95,2019-01-26 17:56:00,432 2nd St, Dallas,TX,75001 +144102,34in Ultrawide Monitor,1,379.99,2019-01-16 23:03:00,794 Church St, Austin,TX,73301 +144103,LG Washing Machine,1,600.0,2019-01-30 16:15:00,766 Dogwood St, Atlanta,GA,30301 +144104,AAA Batteries (4-pack),1,2.99,2019-01-21 19:33:00,731 Willow St, New York City,NY,10001 +144105,AA Batteries (4-pack),1,3.84,2019-01-13 13:00:00,845 14th St, Seattle,WA,98101 +144106,AA Batteries (4-pack),1,3.84,2019-01-05 19:36:00,229 Walnut St, San Francisco,CA,94016 +144107,34in Ultrawide Monitor,1,379.99,2019-01-30 01:46:00,9 Chestnut St, San Francisco,CA,94016 +144108,USB-C Charging Cable,2,11.95,2019-01-15 10:30:00,749 Maple St, New York City,NY,10001 +144109,AAA Batteries (4-pack),1,2.99,2019-01-13 15:53:00,509 Hill St, Dallas,TX,75001 +144110,Vareebadd Phone,1,400.0,2019-01-25 22:48:00,929 Jefferson St, Seattle,WA,98101 +144111,27in FHD Monitor,1,149.99,2019-01-23 22:38:00,725 Sunset St, Los Angeles,CA,90001 +144112,Apple Airpods Headphones,1,150.0,2019-01-25 21:28:00,245 River St, Portland,OR,97035 +144113,Flatscreen TV,1,300.0,2019-01-07 06:30:00,996 Pine St, Los Angeles,CA,90001 +144114,iPhone,1,700.0,2019-01-02 19:19:00,426 14th St, San Francisco,CA,94016 +144115,Wired Headphones,1,11.99,2019-01-18 09:40:00,332 13th St, Atlanta,GA,30301 +144116,Lightning Charging Cable,1,14.95,2019-01-18 23:53:00,514 Willow St, New York City,NY,10001 +144117,Lightning Charging Cable,1,14.95,2019-01-13 10:31:00,189 Washington St, San Francisco,CA,94016 +144118,27in FHD Monitor,1,149.99,2019-01-27 16:14:00,816 River St, San Francisco,CA,94016 +144119,AA Batteries (4-pack),1,3.84,2019-01-02 12:48:00,932 7th St, San Francisco,CA,94016 +144120,AA Batteries (4-pack),2,3.84,2019-01-02 08:29:00,794 8th St, San Francisco,CA,94016 +144121,USB-C Charging Cable,1,11.95,2019-01-03 10:46:00,320 Sunset St, Los Angeles,CA,90001 +144122,Apple Airpods Headphones,1,150.0,2019-01-31 17:14:00,862 9th St, New York City,NY,10001 +144123,27in FHD Monitor,1,149.99,2019-01-12 15:56:00,581 14th St, Los Angeles,CA,90001 +144124,USB-C Charging Cable,2,11.95,2019-01-07 09:25:00,106 River St, New York City,NY,10001 +144125,Lightning Charging Cable,1,14.95,2019-01-04 12:44:00,305 Walnut St, New York City,NY,10001 +144126,Wired Headphones,1,11.99,2019-01-19 19:04:00,766 12th St, Boston,MA,02215 +144127,Google Phone,1,600.0,2019-01-02 22:08:00,101 1st St, San Francisco,CA,94016 +144128,AA Batteries (4-pack),1,3.84,2019-01-27 13:21:00,388 Cedar St, Dallas,TX,75001 +144129,Lightning Charging Cable,1,14.95,2019-01-16 21:15:00,350 Church St, New York City,NY,10001 +144130,Bose SoundSport Headphones,1,99.99,2019-01-27 16:44:00,14 Meadow St, Atlanta,GA,30301 +144131,AAA Batteries (4-pack),1,2.99,2019-01-08 08:51:00,787 11th St, Boston,MA,02215 +144132,Wired Headphones,1,11.99,2019-01-13 07:22:00,321 Church St, Los Angeles,CA,90001 +144133,Lightning Charging Cable,1,14.95,2019-01-18 10:09:00,181 12th St, Boston,MA,02215 +144134,AA Batteries (4-pack),2,3.84,2019-01-27 16:15:00,301 9th St, Los Angeles,CA,90001 +144135,27in FHD Monitor,1,149.99,2019-01-29 06:22:00,827 Main St, San Francisco,CA,94016 +144136,AA Batteries (4-pack),2,3.84,2019-01-26 22:27:00,454 Ridge St, San Francisco,CA,94016 +144137,Wired Headphones,1,11.99,2019-01-05 11:30:00,495 Ridge St, San Francisco,CA,94016 +144138,Bose SoundSport Headphones,1,99.99,2019-01-17 09:57:00,568 Main St, Los Angeles,CA,90001 +144139,Flatscreen TV,1,300.0,2019-01-20 22:02:00,346 8th St, Los Angeles,CA,90001 +144140,Lightning Charging Cable,1,14.95,2019-01-20 05:20:00,773 Johnson St, San Francisco,CA,94016 +144141,Lightning Charging Cable,1,14.95,2019-01-15 13:14:00,13 Jackson St, Dallas,TX,75001 +144142,Wired Headphones,1,11.99,2019-01-23 12:23:00,634 Elm St, Dallas,TX,75001 +144143,Lightning Charging Cable,1,14.95,2019-01-01 16:16:00,975 Dogwood St, San Francisco,CA,94016 +144144,Lightning Charging Cable,1,14.95,2019-01-12 23:28:00,468 Hill St, Boston,MA,02215 +144145,AA Batteries (4-pack),1,3.84,2019-01-12 21:43:00,485 Church St, Austin,TX,73301 +144146,AA Batteries (4-pack),2,3.84,2019-01-21 13:14:00,4 6th St, San Francisco,CA,94016 +144147,AAA Batteries (4-pack),1,2.99,2019-01-24 13:20:00,853 Wilson St, New York City,NY,10001 +144148,27in FHD Monitor,1,149.99,2019-01-24 11:06:00,982 Jefferson St, San Francisco,CA,94016 +144149,Wired Headphones,1,11.99,2019-01-02 21:14:00,981 4th St, San Francisco,CA,94016 +144150,Apple Airpods Headphones,1,150.0,2019-01-17 16:56:00,398 Church St, Boston,MA,02215 +144151,LG Dryer,1,600.0,2019-01-15 14:15:00,773 Church St, New York City,NY,10001 +144152,AA Batteries (4-pack),1,3.84,2019-01-27 11:52:00,459 14th St, Boston,MA,02215 +144153,Apple Airpods Headphones,1,150.0,2019-01-03 15:29:00,230 Madison St, Los Angeles,CA,90001 +144154,Wired Headphones,1,11.99,2019-01-16 02:36:00,366 Maple St, San Francisco,CA,94016 +144155,AAA Batteries (4-pack),6,2.99,2019-01-08 11:26:00,42 Lakeview St, Atlanta,GA,30301 +144156,Lightning Charging Cable,1,14.95,2019-01-28 09:18:00,148 Dogwood St, Los Angeles,CA,90001 +144157,Apple Airpods Headphones,1,150.0,2019-01-27 15:07:00,746 Jackson St, New York City,NY,10001 +144158,Vareebadd Phone,1,400.0,2019-01-01 18:04:00,661 Cedar St, San Francisco,CA,94016 +144159,AA Batteries (4-pack),1,3.84,2019-01-01 21:46:00,269 Main St, Atlanta,GA,30301 +144160,AA Batteries (4-pack),3,3.84,2019-01-04 22:24:00,565 5th St, San Francisco,CA,94016 +144161,Wired Headphones,1,11.99,2019-01-12 09:31:00,652 5th St, New York City,NY,10001 +144162,Flatscreen TV,1,300.0,2019-01-02 12:05:00,14 South St, Boston,MA,02215 +144163,Lightning Charging Cable,1,14.95,2019-01-06 19:02:00,878 Lake St, Seattle,WA,98101 +144164,Bose SoundSport Headphones,1,99.99,2019-01-22 11:46:00,632 Wilson St, San Francisco,CA,94016 +144165,USB-C Charging Cable,1,11.95,2019-01-18 08:30:00,519 Hill St, New York City,NY,10001 +144166,AAA Batteries (4-pack),1,2.99,2019-01-09 11:50:00,186 Pine St, Atlanta,GA,30301 +144167,USB-C Charging Cable,1,11.95,2019-01-14 15:51:00,524 Washington St, Seattle,WA,98101 +144168,Bose SoundSport Headphones,1,99.99,2019-01-07 15:27:00,569 12th St, Atlanta,GA,30301 +144169,Lightning Charging Cable,1,14.95,2019-01-24 15:48:00,517 River St, San Francisco,CA,94016 +144170,ThinkPad Laptop,1,999.99,2019-01-24 21:33:00,524 South St, Boston,MA,02215 +144171,Lightning Charging Cable,1,14.95,2019-01-22 19:52:00,702 Forest St, Austin,TX,73301 +144172,Lightning Charging Cable,1,14.95,2019-01-28 17:40:00,67 Sunset St, New York City,NY,10001 +144173,Wired Headphones,1,11.99,2019-01-14 07:33:00,237 Spruce St, Los Angeles,CA,90001 +144174,27in 4K Gaming Monitor,1,389.99,2019-01-25 19:12:00,447 Main St, Boston,MA,02215 +144175,LG Dryer,1,600.0,2019-01-10 09:23:00,252 Forest St, New York City,NY,10001 +144176,AAA Batteries (4-pack),1,2.99,2019-01-14 13:20:00,748 10th St, San Francisco,CA,94016 +144177,27in FHD Monitor,1,149.99,2019-01-17 20:20:00,769 West St, San Francisco,CA,94016 +144178,Apple Airpods Headphones,1,150.0,2019-01-16 12:09:00,572 Church St, San Francisco,CA,94016 +144179,34in Ultrawide Monitor,1,379.99,2019-01-21 22:12:00,408 Cedar St, Los Angeles,CA,90001 +144180,Apple Airpods Headphones,1,150.0,2019-01-21 20:32:00,898 Hill St, Los Angeles,CA,90001 +144181,USB-C Charging Cable,1,11.95,2019-01-22 07:06:00,200 12th St, Atlanta,GA,30301 +144182,AA Batteries (4-pack),1,3.84,2019-01-18 19:09:00,856 Jefferson St, Austin,TX,73301 +144183,Bose SoundSport Headphones,1,99.99,2019-01-16 17:33:00,288 Jefferson St, New York City,NY,10001 +144184,Wired Headphones,1,11.99,2019-01-12 12:25:00,739 Cherry St, New York City,NY,10001 +144185,AA Batteries (4-pack),1,3.84,2019-01-14 22:33:00,961 Main St, San Francisco,CA,94016 +144186,Bose SoundSport Headphones,1,99.99,2019-01-25 11:36:00,688 North St, Los Angeles,CA,90001 +144187,Bose SoundSport Headphones,1,99.99,2019-01-27 10:36:00,296 Johnson St, Austin,TX,73301 +144188,Bose SoundSport Headphones,1,99.99,2019-01-15 01:18:00,676 Park St, Los Angeles,CA,90001 +144189,Wired Headphones,1,11.99,2019-01-13 19:05:00,686 7th St, San Francisco,CA,94016 +144190,USB-C Charging Cable,1,11.95,2019-01-29 18:50:00,275 Center St, San Francisco,CA,94016 +144191,Bose SoundSport Headphones,1,99.99,2019-01-31 11:33:00,805 River St, San Francisco,CA,94016 +144192,USB-C Charging Cable,1,11.95,2019-01-28 12:40:00,759 Main St, San Francisco,CA,94016 +144193,Lightning Charging Cable,1,14.95,2019-01-15 11:18:00,200 Lake St, New York City,NY,10001 +144194,USB-C Charging Cable,1,11.95,2019-01-02 20:36:00,315 12th St, New York City,NY,10001 +144195,Bose SoundSport Headphones,1,99.99,2019-01-15 15:14:00,613 Cedar St, Boston,MA,02215 +144196,27in FHD Monitor,1,149.99,2019-01-03 10:50:00,785 Church St, New York City,NY,10001 +144197,34in Ultrawide Monitor,1,379.99,2019-01-01 18:22:00,332 Wilson St, Boston,MA,02215 +144198,Wired Headphones,2,11.99,2019-01-13 20:17:00,178 14th St, Austin,TX,73301 +144199,USB-C Charging Cable,1,11.95,2019-01-15 11:09:00,495 10th St, Los Angeles,CA,90001 +144200,AA Batteries (4-pack),3,3.84,2019-01-28 17:17:00,792 Highland St, Boston,MA,02215 +144201,Wired Headphones,2,11.99,2019-01-13 09:53:00,361 Main St, Atlanta,GA,30301 +144202,Lightning Charging Cable,1,14.95,2019-01-24 18:22:00,575 Jackson St, Los Angeles,CA,90001 +144203,AA Batteries (4-pack),1,3.84,2019-01-23 18:46:00,55 Jackson St, Boston,MA,02215 +144204,Apple Airpods Headphones,1,150.0,2019-01-06 11:55:00,352 Chestnut St, San Francisco,CA,94016 +144205,AA Batteries (4-pack),1,3.84,2019-01-24 14:32:00,213 10th St, Los Angeles,CA,90001 +144206,USB-C Charging Cable,1,11.95,2019-01-04 02:43:00,173 Walnut St, Seattle,WA,98101 +144207,AA Batteries (4-pack),1,3.84,2019-01-14 18:54:00,358 6th St, Los Angeles,CA,90001 +144208,AA Batteries (4-pack),1,3.84,2019-01-09 20:19:00,661 Spruce St, Atlanta,GA,30301 +144209,AA Batteries (4-pack),1,3.84,2019-01-13 03:04:00,18 Chestnut St, Dallas,TX,75001 +144210,USB-C Charging Cable,1,11.95,2019-01-22 13:30:00,929 1st St, New York City,NY,10001 +144211,34in Ultrawide Monitor,1,379.99,2019-01-09 21:29:00,943 13th St, Austin,TX,73301 +144212,Google Phone,2,600.0,2019-01-15 19:48:00,545 Washington St, Los Angeles,CA,90001 +144213,Wired Headphones,1,11.99,2019-01-19 12:22:00,83 7th St, Boston,MA,02215 +144214,AAA Batteries (4-pack),2,2.99,2019-01-02 13:02:00,928 Dogwood St, Boston,MA,02215 +144215,Lightning Charging Cable,1,14.95,2019-01-04 22:03:00,517 South St, Austin,TX,73301 +144216,USB-C Charging Cable,1,11.95,2019-01-13 17:06:00,143 River St, Portland,OR,97035 +144217,AA Batteries (4-pack),1,3.84,2019-01-31 13:50:00,766 Hill St, San Francisco,CA,94016 +144218,AA Batteries (4-pack),2,3.84,2019-01-18 23:17:00,605 Sunset St, Los Angeles,CA,90001 +144219,27in 4K Gaming Monitor,1,389.99,2019-01-26 22:53:00,923 5th St, San Francisco,CA,94016 +144220,34in Ultrawide Monitor,1,379.99,2019-01-07 21:20:00,354 1st St, Austin,TX,73301 +144221,Apple Airpods Headphones,1,150.0,2019-01-08 23:24:00,444 13th St, New York City,NY,10001 +144222,Apple Airpods Headphones,1,150.0,2019-01-24 23:04:00,102 Pine St, San Francisco,CA,94016 +144223,Bose SoundSport Headphones,1,99.99,2019-01-07 15:56:00,837 Chestnut St, Austin,TX,73301 +144224,USB-C Charging Cable,1,11.95,2019-01-15 11:18:00,397 West St, Seattle,WA,98101 +144225,Flatscreen TV,1,300.0,2019-01-27 07:55:00,562 Jackson St, Dallas,TX,75001 +144226,AA Batteries (4-pack),1,3.84,2019-01-06 00:19:00,176 Maple St, Portland,OR,97035 +144227,Macbook Pro Laptop,1,1700.0,2019-01-01 21:42:00,774 Main St, San Francisco,CA,94016 +144228,AA Batteries (4-pack),1,3.84,2019-01-05 22:05:00,822 Dogwood St, San Francisco,CA,94016 +144229,LG Washing Machine,1,600.0,2019-01-28 18:32:00,505 8th St, Atlanta,GA,30301 +144230,USB-C Charging Cable,1,11.95,2019-01-29 00:29:00,106 Dogwood St, Dallas,TX,75001 +144231,Wired Headphones,1,11.99,2019-01-01 11:48:00,493 Main St, Los Angeles,CA,90001 +144232,Macbook Pro Laptop,1,1700.0,2019-01-09 14:34:00,439 Forest St, San Francisco,CA,94016 +144233,27in 4K Gaming Monitor,1,389.99,2019-01-30 10:31:00,23 Highland St, Portland,OR,97035 +144234,27in FHD Monitor,1,149.99,2019-01-23 21:04:00,569 Chestnut St, San Francisco,CA,94016 +144235,Bose SoundSport Headphones,1,99.99,2019-01-26 09:29:00,387 Pine St, San Francisco,CA,94016 +144236,27in FHD Monitor,1,149.99,2019-01-15 21:27:00,748 Hickory St, Portland,OR,97035 +144237,Wired Headphones,1,11.99,2019-01-20 05:19:00,289 Maple St, San Francisco,CA,94016 +144238,34in Ultrawide Monitor,1,379.99,2019-01-26 07:45:00,460 Church St, Portland,OR,97035 +144239,34in Ultrawide Monitor,1,379.99,2019-01-08 19:38:00,601 Johnson St, San Francisco,CA,94016 +144240,Apple Airpods Headphones,1,150.0,2019-01-02 06:10:00,707 Ridge St, Atlanta,GA,30301 +144241,Lightning Charging Cable,1,14.95,2019-01-09 13:20:00,321 Lakeview St, Atlanta,GA,30301 +144242,AA Batteries (4-pack),1,3.84,2019-01-24 23:35:00,221 Madison St, San Francisco,CA,94016 +144243,Wired Headphones,1,11.99,2019-01-05 07:22:00,943 10th St, San Francisco,CA,94016 +144244,27in FHD Monitor,1,149.99,2019-01-16 16:58:00,165 Walnut St, Los Angeles,CA,90001 +144245,34in Ultrawide Monitor,1,379.99,2019-01-12 21:46:00,42 Main St, San Francisco,CA,94016 +144246,AA Batteries (4-pack),1,3.84,2019-01-06 10:00:00,907 2nd St, New York City,NY,10001 +144247,iPhone,1,700.0,2019-01-21 14:03:00,359 12th St, Los Angeles,CA,90001 +144248,AA Batteries (4-pack),2,3.84,2019-01-30 05:09:00,29 Adams St, Atlanta,GA,30301 +144249,AA Batteries (4-pack),1,3.84,2019-01-14 09:41:00,565 Center St, Los Angeles,CA,90001 +144250,Wired Headphones,1,11.99,2019-01-27 21:19:00,522 6th St, New York City,NY,10001 +144251,20in Monitor,1,109.99,2019-01-11 16:10:00,837 Highland St, Dallas,TX,75001 +144252,Wired Headphones,1,11.99,2019-01-01 17:56:00,164 Park St, Atlanta,GA,30301 +144253,AAA Batteries (4-pack),1,2.99,2019-01-25 00:06:00,207 Walnut St, Seattle,WA,98101 +144254,Wired Headphones,1,11.99,2019-01-30 12:24:00,479 7th St, San Francisco,CA,94016 +144255,Bose SoundSport Headphones,1,99.99,2019-01-22 22:02:00,970 Spruce St, Boston,MA,02215 +144256,AAA Batteries (4-pack),1,2.99,2019-01-11 17:33:00,752 2nd St, Atlanta,GA,30301 +144257,Lightning Charging Cable,1,14.95,2019-01-26 10:46:00,380 12th St, Austin,TX,73301 +144258,Macbook Pro Laptop,1,1700.0,2019-01-25 21:36:00,650 13th St, New York City,NY,10001 +144259,USB-C Charging Cable,1,11.95,2019-01-11 18:37:00,132 Center St, Dallas,TX,75001 +144260,Google Phone,1,600.0,2019-01-15 20:20:00,418 Park St, Atlanta,GA,30301 +144261,20in Monitor,1,109.99,2019-01-30 16:17:00,130 Walnut St, Austin,TX,73301 +144262,ThinkPad Laptop,1,999.99,2019-01-10 15:23:00,563 Lake St, New York City,NY,10001 +144263,Lightning Charging Cable,1,14.95,2019-01-09 20:49:00,878 Sunset St, Boston,MA,02215 +144264,34in Ultrawide Monitor,1,379.99,2019-01-16 10:52:00,416 South St, New York City,NY,10001 +144265,20in Monitor,1,109.99,2019-01-23 09:55:00,980 2nd St, Seattle,WA,98101 +144266,ThinkPad Laptop,1,999.99,2019-01-25 21:39:00,279 Wilson St, Boston,MA,02215 +144267,USB-C Charging Cable,1,11.95,2019-01-27 11:33:00,998 11th St, Boston,MA,02215 +144268,AAA Batteries (4-pack),1,2.99,2019-01-17 09:51:00,191 South St, Los Angeles,CA,90001 +144269,Apple Airpods Headphones,1,150.0,2019-01-04 10:42:00,661 Chestnut St, Portland,OR,97035 +144270,AA Batteries (4-pack),1,3.84,2019-01-20 22:41:00,292 2nd St, Dallas,TX,75001 +144271,iPhone,1,700.0,2019-01-28 23:02:00,2 Cherry St, San Francisco,CA,94016 +144271,Lightning Charging Cable,1,14.95,2019-01-28 23:02:00,2 Cherry St, San Francisco,CA,94016 +144272,AAA Batteries (4-pack),1,2.99,2019-01-21 21:42:00,413 Jefferson St, Los Angeles,CA,90001 +144273,Lightning Charging Cable,1,14.95,2019-01-22 10:01:00,300 Ridge St, Atlanta,GA,30301 +144274,USB-C Charging Cable,1,11.95,2019-01-22 11:04:00,642 Hill St, New York City,NY,10001 +144275,AAA Batteries (4-pack),3,2.99,2019-01-09 00:09:00,384 Lakeview St, Boston,MA,02215 +144276,AAA Batteries (4-pack),1,2.99,2019-01-06 00:17:00,826 Maple St, Atlanta,GA,30301 +144277,27in FHD Monitor,1,149.99,2019-01-02 20:50:00,241 West St, New York City,NY,10001 +144278,AAA Batteries (4-pack),3,2.99,2019-01-13 20:28:00,699 1st St, San Francisco,CA,94016 +144279,20in Monitor,1,109.99,2019-01-07 19:13:00,423 2nd St, Portland,OR,97035 +144280,20in Monitor,1,109.99,2019-01-09 10:10:00,509 Adams St, Los Angeles,CA,90001 +144281,Flatscreen TV,1,300.0,2019-01-28 14:50:00,664 Willow St, Seattle,WA,98101 +144282,Macbook Pro Laptop,1,1700.0,2019-01-31 16:59:00,721 Spruce St, Atlanta,GA,30301 +144283,Bose SoundSport Headphones,1,99.99,2019-01-10 16:20:00,833 Spruce St, Atlanta,GA,30301 +144284,AAA Batteries (4-pack),2,2.99,2019-01-01 11:09:00,126 13th St, Seattle,WA,98101 +144285,Wired Headphones,1,11.99,2019-01-12 23:06:00,447 Madison St, Boston,MA,02215 +144286,Lightning Charging Cable,1,14.95,2019-01-24 07:09:00,606 10th St, New York City,NY,10001 +144287,Wired Headphones,1,11.99,2019-01-16 09:45:00,951 Adams St, Boston,MA,02215 +144288,AAA Batteries (4-pack),2,2.99,2019-01-26 21:57:00,987 South St, Los Angeles,CA,90001 +144289,34in Ultrawide Monitor,1,379.99,2019-01-21 22:49:00,449 Pine St, Boston,MA,02215 +144290,34in Ultrawide Monitor,1,379.99,2019-01-08 08:59:00,631 13th St, Seattle,WA,98101 +144291,Apple Airpods Headphones,1,150.0,2019-01-04 18:00:00,738 4th St, Dallas,TX,75001 +144292,Wired Headphones,1,11.99,2019-01-11 21:44:00,313 13th St, Los Angeles,CA,90001 +144293,AAA Batteries (4-pack),2,2.99,2019-01-16 11:41:00,698 Jackson St, Austin,TX,73301 +144294,Google Phone,1,600.0,2019-01-13 09:56:00,306 14th St, Los Angeles,CA,90001 +144295,USB-C Charging Cable,1,11.95,2019-01-15 14:39:00,340 Madison St, San Francisco,CA,94016 +144296,Lightning Charging Cable,1,14.95,2019-01-16 12:03:00,946 Maple St, New York City,NY,10001 +144297,Flatscreen TV,1,300.0,2019-01-21 14:37:00,437 Madison St, Atlanta,GA,30301 +144298,Lightning Charging Cable,1,14.95,2019-01-13 12:00:00,709 North St, Los Angeles,CA,90001 +144299,27in 4K Gaming Monitor,1,389.99,2019-01-31 19:57:00,942 North St, San Francisco,CA,94016 +144300,Apple Airpods Headphones,1,150.0,2019-01-11 14:22:00,532 River St, San Francisco,CA,94016 +144301,Flatscreen TV,1,300.0,2019-01-01 15:27:00,75 Lake St, Los Angeles,CA,90001 +144302,USB-C Charging Cable,1,11.95,2019-01-13 11:43:00,82 2nd St, San Francisco,CA,94016 +144303,iPhone,1,700.0,2019-01-26 09:03:00,419 Meadow St, San Francisco,CA,94016 +144304,USB-C Charging Cable,1,11.95,2019-01-22 16:53:00,451 Elm St, Atlanta,GA,30301 +144305,USB-C Charging Cable,1,11.95,2019-01-01 20:13:00,664 Wilson St, Los Angeles,CA,90001 +144306,Lightning Charging Cable,1,14.95,2019-01-15 13:02:00,829 Lakeview St, Los Angeles,CA,90001 +144307,USB-C Charging Cable,1,11.95,2019-01-09 18:50:00,459 Center St, Austin,TX,73301 +144308,Wired Headphones,1,11.99,2019-01-28 21:14:00,439 West St, Los Angeles,CA,90001 +144309,27in FHD Monitor,1,149.99,2019-01-21 00:56:00,999 Adams St, Austin,TX,73301 +144310,Wired Headphones,1,11.99,2019-01-17 13:53:00,984 Lincoln St, New York City,NY,10001 +144311,USB-C Charging Cable,1,11.95,2019-01-26 07:40:00,500 South St, Dallas,TX,75001 +144312,27in FHD Monitor,1,149.99,2019-01-03 20:43:00,563 Wilson St, Los Angeles,CA,90001 +144313,27in 4K Gaming Monitor,1,389.99,2019-01-11 08:11:00,918 Madison St, San Francisco,CA,94016 +144314,Lightning Charging Cable,1,14.95,2019-01-20 11:39:00,88 Ridge St, Seattle,WA,98101 +144315,Flatscreen TV,1,300.0,2019-01-28 18:33:00,9 Johnson St, Atlanta,GA,30301 +144316,Lightning Charging Cable,1,14.95,2019-01-29 16:05:00,909 Cedar St, San Francisco,CA,94016 +144317,Wired Headphones,1,11.99,2019-01-18 17:08:00,335 6th St, San Francisco,CA,94016 +144318,USB-C Charging Cable,1,11.95,2019-01-20 16:46:00,490 Chestnut St, Atlanta,GA,30301 +144319,Wired Headphones,1,11.99,2019-01-18 12:40:00,517 Wilson St, Dallas,TX,75001 +144320,34in Ultrawide Monitor,1,379.99,2019-01-21 14:49:00,118 South St, San Francisco,CA,94016 +144321,Apple Airpods Headphones,1,150.0,2019-01-19 22:49:00,552 North St, New York City,NY,10001 +144322,Wired Headphones,2,11.99,2019-01-23 19:09:00,578 Highland St, Boston,MA,02215 +144323,Flatscreen TV,1,300.0,2019-01-31 12:09:00,929 Park St, Portland,ME,04101 +144324,Bose SoundSport Headphones,1,99.99,2019-01-14 12:02:00,864 7th St, Los Angeles,CA,90001 +144325,AA Batteries (4-pack),1,3.84,2019-01-10 18:47:00,777 10th St, Los Angeles,CA,90001 +144326,USB-C Charging Cable,1,11.95,2019-01-25 12:22:00,63 Center St, New York City,NY,10001 +144327,20in Monitor,1,109.99,2019-01-15 20:42:00,85 Elm St, Los Angeles,CA,90001 +144328,Wired Headphones,1,11.99,2019-01-23 12:47:00,332 River St, New York City,NY,10001 +144329,27in FHD Monitor,1,149.99,2019-01-03 12:07:00,760 West St, San Francisco,CA,94016 +144330,AA Batteries (4-pack),1,3.84,2019-01-11 14:37:00,112 13th St, San Francisco,CA,94016 +144331,Apple Airpods Headphones,1,150.0,2019-01-26 14:08:00,389 Hill St, Los Angeles,CA,90001 +144332,iPhone,1,700.0,2019-01-28 18:17:00,880 11th St, New York City,NY,10001 +144333,Apple Airpods Headphones,1,150.0,2019-01-11 16:39:00,939 7th St, San Francisco,CA,94016 +144334,Lightning Charging Cable,1,14.95,2019-01-29 19:09:00,11 North St, New York City,NY,10001 +144335,Apple Airpods Headphones,1,150.0,2019-01-10 09:43:00,339 Elm St, Austin,TX,73301 +144336,Lightning Charging Cable,1,14.95,2019-01-20 17:11:00,538 Main St, San Francisco,CA,94016 +144337,Wired Headphones,1,11.99,2019-01-03 20:37:00,49 8th St, Boston,MA,02215 +144338,Lightning Charging Cable,1,14.95,2019-01-20 12:37:00,725 Center St, Los Angeles,CA,90001 +144339,iPhone,1,700.0,2019-01-21 14:33:00,953 Hickory St, Los Angeles,CA,90001 +144339,Wired Headphones,1,11.99,2019-01-21 14:33:00,953 Hickory St, Los Angeles,CA,90001 +144340,Apple Airpods Headphones,1,150.0,2019-01-30 21:22:00,397 Wilson St, New York City,NY,10001 +144341,USB-C Charging Cable,1,11.95,2019-01-17 09:21:00,161 Main St, New York City,NY,10001 +144342,Bose SoundSport Headphones,1,99.99,2019-01-27 13:43:00,66 Washington St, Los Angeles,CA,90001 +144343,Bose SoundSport Headphones,1,99.99,2019-01-03 02:29:00,285 5th St, New York City,NY,10001 +144344,Google Phone,1,600.0,2019-01-25 22:26:00,188 14th St, Boston,MA,02215 +144344,USB-C Charging Cable,1,11.95,2019-01-25 22:26:00,188 14th St, Boston,MA,02215 +144345,Bose SoundSport Headphones,1,99.99,2019-01-22 14:50:00,740 4th St, Atlanta,GA,30301 +144346,AA Batteries (4-pack),1,3.84,2019-01-01 19:56:00,162 Jefferson St, Los Angeles,CA,90001 +144347,Apple Airpods Headphones,1,150.0,2019-01-21 12:11:00,594 6th St, Portland,OR,97035 +144348,AA Batteries (4-pack),1,3.84,2019-01-08 14:54:00,655 Forest St, New York City,NY,10001 +144349,iPhone,1,700.0,2019-01-05 23:48:00,398 Adams St, Atlanta,GA,30301 +144350,USB-C Charging Cable,2,11.95,2019-01-31 12:15:00,364 Center St, Los Angeles,CA,90001 +144351,Apple Airpods Headphones,1,150.0,2019-01-19 17:23:00,448 Johnson St, Atlanta,GA,30301 +144352,AA Batteries (4-pack),1,3.84,2019-01-23 17:26:00,161 Forest St, Boston,MA,02215 +144353,iPhone,1,700.0,2019-01-05 04:52:00,151 Main St, Dallas,TX,75001 +144354,Wired Headphones,1,11.99,2019-01-08 13:09:00,96 Meadow St, Seattle,WA,98101 +144355,USB-C Charging Cable,1,11.95,2019-01-19 06:35:00,368 Church St, New York City,NY,10001 +144356,Bose SoundSport Headphones,1,99.99,2019-01-19 17:28:00,938 4th St, Dallas,TX,75001 +144357,27in FHD Monitor,1,149.99,2019-01-04 12:55:00,858 14th St, Los Angeles,CA,90001 +144358,AAA Batteries (4-pack),1,2.99,2019-01-11 11:41:00,212 Park St, Dallas,TX,75001 +144359,AAA Batteries (4-pack),1,2.99,2019-01-19 18:18:00,489 Adams St, San Francisco,CA,94016 +144360,27in FHD Monitor,1,149.99,2019-01-20 16:58:00,380 Meadow St, Boston,MA,02215 +144361,Bose SoundSport Headphones,1,99.99,2019-01-04 06:40:00,249 River St, Austin,TX,73301 +144362,Lightning Charging Cable,1,14.95,2019-01-23 00:38:00,195 Johnson St, San Francisco,CA,94016 +144363,ThinkPad Laptop,1,999.99,2019-01-26 12:51:00,881 Adams St, New York City,NY,10001 +144364,Macbook Pro Laptop,1,1700.0,2019-01-20 08:31:00,190 10th St, San Francisco,CA,94016 +144365,20in Monitor,1,109.99,2019-01-18 10:34:00,146 Lake St, San Francisco,CA,94016 +144366,AA Batteries (4-pack),1,3.84,2019-01-25 11:25:00,932 8th St, Boston,MA,02215 +144367,Wired Headphones,1,11.99,2019-01-09 08:15:00,105 South St, New York City,NY,10001 +144368,Apple Airpods Headphones,1,150.0,2019-01-01 17:17:00,249 8th St, San Francisco,CA,94016 +144369,Apple Airpods Headphones,1,150.0,2019-01-30 11:39:00,10 Sunset St, San Francisco,CA,94016 +144370,Lightning Charging Cable,2,14.95,2019-01-19 19:26:00,910 5th St, New York City,NY,10001 +144371,AAA Batteries (4-pack),1,2.99,2019-01-12 19:37:00,217 Chestnut St, Dallas,TX,75001 +144372,USB-C Charging Cable,1,11.95,2019-01-13 20:27:00,787 Washington St, Dallas,TX,75001 +144373,AA Batteries (4-pack),1,3.84,2019-01-21 12:48:00,13 Hickory St, Dallas,TX,75001 +144374,Wired Headphones,1,11.99,2019-01-03 08:43:00,407 Washington St, Los Angeles,CA,90001 +144375,USB-C Charging Cable,1,11.95,2019-01-18 01:04:00,517 River St, New York City,NY,10001 +144376,Lightning Charging Cable,1,14.95,2019-01-03 13:40:00,915 Willow St, San Francisco,CA,94016 +144377,34in Ultrawide Monitor,1,379.99,2019-01-30 14:33:00,877 1st St, Atlanta,GA,30301 +144378,Wired Headphones,1,11.99,2019-01-29 10:34:00,927 Church St, Los Angeles,CA,90001 +144379,Bose SoundSport Headphones,1,99.99,2019-01-22 07:05:00,357 9th St, San Francisco,CA,94016 +144380,Bose SoundSport Headphones,1,99.99,2019-01-27 20:16:00,696 14th St, San Francisco,CA,94016 +144381,AAA Batteries (4-pack),1,2.99,2019-01-04 19:39:00,754 Hickory St, Portland,ME,04101 +144382,27in 4K Gaming Monitor,1,389.99,2019-01-19 21:58:00,501 Park St, Seattle,WA,98101 +144383,AA Batteries (4-pack),1,3.84,2019-01-03 07:53:00,434 Johnson St, San Francisco,CA,94016 +144384,Macbook Pro Laptop,1,1700.0,2019-01-27 09:25:00,765 4th St, Boston,MA,02215 +144385,AA Batteries (4-pack),1,3.84,2019-01-14 13:11:00,197 Wilson St, San Francisco,CA,94016 +144386,Wired Headphones,1,11.99,2019-01-30 14:56:00,117 Lake St, San Francisco,CA,94016 +144387,Macbook Pro Laptop,1,1700.0,2019-01-31 19:37:00,430 Park St, San Francisco,CA,94016 +144388,27in FHD Monitor,1,149.99,2019-01-24 13:19:00,338 2nd St, Seattle,WA,98101 +144389,AAA Batteries (4-pack),1,2.99,2019-01-19 14:39:00,256 North St, Los Angeles,CA,90001 +144390,Wired Headphones,1,11.99,2019-01-28 14:51:00,525 Spruce St, Los Angeles,CA,90001 +144391,20in Monitor,1,109.99,2019-01-17 07:10:00,378 Washington St, Portland,ME,04101 +144392,20in Monitor,1,109.99,2019-01-23 15:57:00,353 Lake St, San Francisco,CA,94016 +144393,Macbook Pro Laptop,1,1700.0,2019-01-09 22:50:00,38 Lakeview St, San Francisco,CA,94016 +144394,Google Phone,1,600.0,2019-01-04 08:49:00,621 Church St, Atlanta,GA,30301 +144394,Wired Headphones,1,11.99,2019-01-04 08:49:00,621 Church St, Atlanta,GA,30301 +144395,AA Batteries (4-pack),1,3.84,2019-01-09 20:20:00,609 11th St, San Francisco,CA,94016 +144396,AA Batteries (4-pack),1,3.84,2019-01-07 22:36:00,406 West St, San Francisco,CA,94016 +144397,Bose SoundSport Headphones,1,99.99,2019-01-20 13:31:00,653 Ridge St, Austin,TX,73301 +144398,34in Ultrawide Monitor,1,379.99,2019-01-16 08:32:00,824 Forest St, Boston,MA,02215 +144399,USB-C Charging Cable,1,11.95,2019-01-30 15:46:00,912 Elm St, New York City,NY,10001 +144400,Apple Airpods Headphones,1,150.0,2019-01-24 09:17:00,176 13th St, Los Angeles,CA,90001 +144401,AAA Batteries (4-pack),1,2.99,2019-01-20 19:09:00,493 12th St, New York City,NY,10001 +144402,Wired Headphones,1,11.99,2019-01-08 10:56:00,733 4th St, San Francisco,CA,94016 +144403,Lightning Charging Cable,1,14.95,2019-01-06 19:56:00,604 Walnut St, Los Angeles,CA,90001 +144404,27in FHD Monitor,1,149.99,2019-01-26 19:47:00,324 13th St, Portland,OR,97035 +144405,AAA Batteries (4-pack),1,2.99,2019-01-28 14:30:00,595 Walnut St, Portland,OR,97035 +144406,Bose SoundSport Headphones,1,99.99,2019-01-20 12:04:00,218 Madison St, Dallas,TX,75001 +144407,Wired Headphones,1,11.99,2019-01-11 16:05:00,932 Lake St, Boston,MA,02215 +144408,Lightning Charging Cable,1,14.95,2019-01-24 21:03:00,728 Lake St, New York City,NY,10001 +144409,AA Batteries (4-pack),2,3.84,2019-01-07 10:32:00,271 Washington St, Austin,TX,73301 +144410,Apple Airpods Headphones,1,150.0,2019-01-15 08:06:00,364 Center St, San Francisco,CA,94016 +144411,iPhone,1,700.0,2019-01-28 08:53:00,425 1st St, Boston,MA,02215 +144412,AA Batteries (4-pack),1,3.84,2019-01-22 09:12:00,229 Center St, Dallas,TX,75001 +144413,Vareebadd Phone,1,400.0,2019-01-22 15:41:00,417 8th St, Los Angeles,CA,90001 +144414,iPhone,1,700.0,2019-01-26 22:22:00,174 5th St, San Francisco,CA,94016 +144414,Lightning Charging Cable,1,14.95,2019-01-26 22:22:00,174 5th St, San Francisco,CA,94016 +144415,USB-C Charging Cable,1,11.95,2019-01-23 13:30:00,346 8th St, Los Angeles,CA,90001 +144416,LG Dryer,1,600.0,2019-01-21 22:53:00,68 Lincoln St, New York City,NY,10001 +144417,Lightning Charging Cable,1,14.95,2019-01-31 20:45:00,2 Hickory St, San Francisco,CA,94016 +144418,iPhone,1,700.0,2019-01-10 23:14:00,471 Hickory St, San Francisco,CA,94016 +144419,USB-C Charging Cable,1,11.95,2019-01-19 19:18:00,77 River St, San Francisco,CA,94016 +144420,AAA Batteries (4-pack),2,2.99,2019-01-06 13:12:00,888 14th St, Los Angeles,CA,90001 +144421,LG Dryer,1,600.0,2019-01-06 16:45:00,262 Chestnut St, San Francisco,CA,94016 +144422,Apple Airpods Headphones,1,150.0,2019-01-20 07:02:00,366 Lincoln St, Los Angeles,CA,90001 +144423,USB-C Charging Cable,1,11.95,2019-01-11 10:28:00,876 Spruce St, Dallas,TX,75001 +144424,Lightning Charging Cable,1,14.95,2019-01-23 14:19:00,864 South St, Atlanta,GA,30301 +144425,Lightning Charging Cable,1,14.95,2019-01-24 13:20:00,308 6th St, Atlanta,GA,30301 +144426,Bose SoundSport Headphones,1,99.99,2019-01-27 20:04:00,894 Cherry St, Atlanta,GA,30301 +144427,Bose SoundSport Headphones,1,99.99,2019-01-08 17:17:00,778 14th St, Atlanta,GA,30301 +144428,Macbook Pro Laptop,1,1700.0,2019-01-13 02:00:00,938 8th St, Dallas,TX,75001 +144429,Wired Headphones,1,11.99,2019-01-15 11:08:00,136 Dogwood St, San Francisco,CA,94016 +144430,AA Batteries (4-pack),1,3.84,2019-01-27 21:08:00,241 Madison St, New York City,NY,10001 +144431,Google Phone,1,600.0,2019-01-17 18:07:00,798 4th St, Los Angeles,CA,90001 +144431,Wired Headphones,1,11.99,2019-01-17 18:07:00,798 4th St, Los Angeles,CA,90001 +144432,Bose SoundSport Headphones,1,99.99,2019-01-16 19:47:00,469 Ridge St, San Francisco,CA,94016 +144433,USB-C Charging Cable,2,11.95,2019-01-19 11:19:00,713 1st St, New York City,NY,10001 +144434,AA Batteries (4-pack),1,3.84,2019-01-08 02:03:00,311 14th St, Portland,ME,04101 +144435,Apple Airpods Headphones,1,150.0,2019-01-31 11:35:00,342 Lakeview St, Seattle,WA,98101 +144436,20in Monitor,1,109.99,2019-01-10 17:16:00,788 Dogwood St, Seattle,WA,98101 +144437,Lightning Charging Cable,1,14.95,2019-01-21 14:20:00,86 Johnson St, Boston,MA,02215 +144438,Wired Headphones,1,11.99,2019-01-02 18:55:00,110 Adams St, Seattle,WA,98101 +144439,AA Batteries (4-pack),2,3.84,2019-01-22 10:06:00,973 Madison St, Seattle,WA,98101 +144440,ThinkPad Laptop,1,999.99,2019-01-12 23:06:00,770 Willow St, Los Angeles,CA,90001 +144441,20in Monitor,1,109.99,2019-01-23 17:16:00,430 5th St, Los Angeles,CA,90001 +144442,Bose SoundSport Headphones,1,99.99,2019-01-31 18:02:00,467 Walnut St, San Francisco,CA,94016 +144443,USB-C Charging Cable,1,11.95,2019-01-14 13:39:00,168 10th St, Los Angeles,CA,90001 +144444,Apple Airpods Headphones,1,150.0,2019-01-02 19:45:00,441 Willow St, San Francisco,CA,94016 +144445,Bose SoundSport Headphones,1,99.99,2019-01-09 21:25:00,703 Maple St, Boston,MA,02215 +144446,Apple Airpods Headphones,1,150.0,2019-01-01 15:33:00,403 North St, San Francisco,CA,94016 +144447,Lightning Charging Cable,1,14.95,2019-01-07 00:04:00,4 14th St, San Francisco,CA,94016 +144448,AA Batteries (4-pack),2,3.84,2019-01-18 17:59:00,277 South St, San Francisco,CA,94016 +144449,AA Batteries (4-pack),1,3.84,2019-01-28 22:37:00,99 Hill St, San Francisco,CA,94016 +144450,Lightning Charging Cable,1,14.95,2019-01-18 10:03:00,105 13th St, Los Angeles,CA,90001 +144450,Macbook Pro Laptop,1,1700.0,2019-01-18 10:03:00,105 13th St, Los Angeles,CA,90001 +144451,Macbook Pro Laptop,1,1700.0,2019-01-15 11:59:00,608 Hickory St, New York City,NY,10001 +144452,34in Ultrawide Monitor,1,379.99,2019-01-13 12:05:00,413 North St, Boston,MA,02215 +144453,Vareebadd Phone,1,400.0,2019-01-19 13:09:00,800 Cherry St, Seattle,WA,98101 +144454,Apple Airpods Headphones,1,150.0,2019-01-31 11:45:00,762 13th St, Seattle,WA,98101 +144455,AAA Batteries (4-pack),1,2.99,2019-01-14 15:25:00,216 Cedar St, Atlanta,GA,30301 +144456,Bose SoundSport Headphones,1,99.99,2019-01-29 12:56:00,373 Adams St, Austin,TX,73301 +144457,Apple Airpods Headphones,1,150.0,2019-01-10 11:48:00,160 Lincoln St, Boston,MA,02215 +144458,Lightning Charging Cable,1,14.95,2019-01-19 22:41:00,602 5th St, New York City,NY,10001 +144459,Wired Headphones,1,11.99,2019-01-11 18:30:00,3 10th St, Los Angeles,CA,90001 +144460,Apple Airpods Headphones,1,150.0,2019-01-01 13:08:00,624 5th St, Los Angeles,CA,90001 +144461,Apple Airpods Headphones,1,150.0,2019-01-02 13:30:00,35 Dogwood St, New York City,NY,10001 +144462,Wired Headphones,1,11.99,2019-01-09 09:11:00,167 Highland St, Atlanta,GA,30301 +144463,Apple Airpods Headphones,1,150.0,2019-01-10 21:33:00,249 Jefferson St, New York City,NY,10001 +144464,AAA Batteries (4-pack),1,2.99,2019-01-05 01:51:00,851 Hickory St, San Francisco,CA,94016 +144465,Apple Airpods Headphones,1,150.0,2019-01-15 12:49:00,551 2nd St, San Francisco,CA,94016 +144466,AAA Batteries (4-pack),2,2.99,2019-01-16 23:28:00,956 Dogwood St, Dallas,TX,75001 +144467,Lightning Charging Cable,1,14.95,2019-01-31 12:09:00,327 North St, San Francisco,CA,94016 +144468,Lightning Charging Cable,1,14.95,2019-01-28 00:39:00,855 5th St, Austin,TX,73301 +144469,USB-C Charging Cable,1,11.95,2019-01-22 18:27:00,373 7th St, New York City,NY,10001 +144470,Lightning Charging Cable,1,14.95,2019-01-14 22:00:00,574 Sunset St, Boston,MA,02215 +144470,USB-C Charging Cable,1,11.95,2019-01-14 22:00:00,574 Sunset St, Boston,MA,02215 +144471,USB-C Charging Cable,1,11.95,2019-01-10 14:40:00,393 Center St, New York City,NY,10001 +144472,AAA Batteries (4-pack),2,2.99,2019-01-20 21:13:00,787 Washington St, Los Angeles,CA,90001 +144473,Lightning Charging Cable,2,14.95,2019-01-16 19:04:00,166 Washington St, San Francisco,CA,94016 +144474,Apple Airpods Headphones,1,150.0,2019-01-03 11:11:00,837 South St, Seattle,WA,98101 +144475,USB-C Charging Cable,1,11.95,2019-01-09 18:44:00,15 9th St, Boston,MA,02215 +144476,AA Batteries (4-pack),1,3.84,2019-01-25 08:02:00,239 Hickory St, Los Angeles,CA,90001 +144477,27in 4K Gaming Monitor,1,389.99,2019-01-05 18:40:00,494 North St, Boston,MA,02215 +144478,AA Batteries (4-pack),2,3.84,2019-01-18 13:41:00,672 Sunset St, New York City,NY,10001 +144479,Wired Headphones,1,11.99,2019-01-30 20:29:00,434 Willow St, Boston,MA,02215 +144480,AAA Batteries (4-pack),1,2.99,2019-01-02 17:09:00,433 Pine St, Dallas,TX,75001 +144481,34in Ultrawide Monitor,1,379.99,2019-01-16 08:48:00,180 West St, San Francisco,CA,94016 +144482,Apple Airpods Headphones,1,150.0,2019-01-25 20:40:00,76 11th St, Los Angeles,CA,90001 +144483,Lightning Charging Cable,1,14.95,2019-01-23 20:11:00,845 Highland St, Austin,TX,73301 +144484,27in FHD Monitor,1,149.99,2019-01-28 09:43:00,538 Elm St, Dallas,TX,75001 +144485,AA Batteries (4-pack),1,3.84,2019-01-31 16:30:00,765 Johnson St, San Francisco,CA,94016 +144486,Bose SoundSport Headphones,1,99.99,2019-01-10 07:15:00,58 Lake St, Boston,MA,02215 +144487,Google Phone,1,600.0,2019-01-25 17:46:00,314 Lakeview St, Atlanta,GA,30301 +144488,AAA Batteries (4-pack),1,2.99,2019-01-17 18:51:00,439 Lakeview St, Los Angeles,CA,90001 +144489,Wired Headphones,1,11.99,2019-01-30 09:07:00,109 8th St, Boston,MA,02215 +144490,Google Phone,1,600.0,2019-01-17 10:42:00,719 Lincoln St, Atlanta,GA,30301 +144490,USB-C Charging Cable,1,11.95,2019-01-17 10:42:00,719 Lincoln St, Atlanta,GA,30301 +144491,AA Batteries (4-pack),1,3.84,2019-01-09 15:02:00,987 Lakeview St, Atlanta,GA,30301 +144492,20in Monitor,1,109.99,2019-01-13 00:37:00,11 Cherry St, Seattle,WA,98101 +144493,27in 4K Gaming Monitor,1,389.99,2019-01-06 20:32:00,776 Hickory St, New York City,NY,10001 +144494,Wired Headphones,1,11.99,2019-01-04 21:39:00,165 Dogwood St, Los Angeles,CA,90001 +144495,Lightning Charging Cable,1,14.95,2019-01-18 01:44:00,932 Ridge St, New York City,NY,10001 +144496,Apple Airpods Headphones,1,150.0,2019-01-12 18:51:00,824 Johnson St, San Francisco,CA,94016 +144497,USB-C Charging Cable,1,11.95,2019-01-20 15:09:00,415 2nd St, San Francisco,CA,94016 +144498,Wired Headphones,1,11.99,2019-01-25 17:58:00,289 Church St, Dallas,TX,75001 +144499,Google Phone,1,600.0,2019-01-25 11:25:00,888 River St, New York City,NY,10001 +144500,Wired Headphones,1,11.99,2019-01-21 11:09:00,640 West St, New York City,NY,10001 +144501,AAA Batteries (4-pack),3,2.99,2019-01-09 10:42:00,909 Center St, Boston,MA,02215 +144502,Lightning Charging Cable,1,14.95,2019-01-09 19:34:00,659 Madison St, San Francisco,CA,94016 +144503,iPhone,1,700.0,2019-01-15 22:54:00,830 10th St, Portland,OR,97035 +144503,Apple Airpods Headphones,1,150.0,2019-01-15 22:54:00,830 10th St, Portland,OR,97035 +144504,LG Dryer,1,600.0,2019-01-23 09:07:00,741 13th St, Atlanta,GA,30301 +144505,Apple Airpods Headphones,1,150.0,2019-01-01 10:31:00,89 Center St, Seattle,WA,98101 +144506,AAA Batteries (4-pack),1,2.99,2019-01-12 12:47:00,769 10th St, Atlanta,GA,30301 +144507,27in 4K Gaming Monitor,1,389.99,2019-01-08 18:42:00,884 Hickory St, Seattle,WA,98101 +144508,Flatscreen TV,1,300.0,2019-01-06 11:59:00,202 Highland St, Austin,TX,73301 +144509,Wired Headphones,1,11.99,2019-01-15 11:02:00,130 14th St, Dallas,TX,75001 +144510,USB-C Charging Cable,1,11.95,2019-01-12 18:24:00,517 River St, San Francisco,CA,94016 +144511,AA Batteries (4-pack),1,3.84,2019-01-16 20:02:00,331 Chestnut St, Boston,MA,02215 +144512,Wired Headphones,1,11.99,2019-01-14 18:28:00,877 Main St, Seattle,WA,98101 +144513,Bose SoundSport Headphones,1,99.99,2019-01-07 17:02:00,417 Forest St, Boston,MA,02215 +144514,LG Dryer,1,600.0,2019-01-08 08:30:00,744 Park St, Boston,MA,02215 +144515,Lightning Charging Cable,2,14.95,2019-01-11 09:22:00,357 Hill St, New York City,NY,10001 +144516,Lightning Charging Cable,1,14.95,2019-01-07 23:11:00,550 Pine St, Portland,ME,04101 +144517,AA Batteries (4-pack),2,3.84,2019-01-20 22:26:00,612 Church St, Los Angeles,CA,90001 +144518,Google Phone,1,600.0,2019-01-03 17:41:00,471 Hickory St, Seattle,WA,98101 +144518,USB-C Charging Cable,1,11.95,2019-01-03 17:41:00,471 Hickory St, Seattle,WA,98101 +144519,27in FHD Monitor,1,149.99,2019-01-05 22:39:00,569 Hill St, San Francisco,CA,94016 +144520,AAA Batteries (4-pack),1,2.99,2019-01-16 18:53:00,423 Park St, Portland,OR,97035 +144521,Flatscreen TV,1,300.0,2019-01-03 18:07:00,370 Maple St, San Francisco,CA,94016 +144522,Lightning Charging Cable,1,14.95,2019-01-07 22:16:00,313 Dogwood St, Atlanta,GA,30301 +144523,34in Ultrawide Monitor,1,379.99,2019-01-22 12:37:00,186 Meadow St, New York City,NY,10001 +144524,AA Batteries (4-pack),1,3.84,2019-01-19 13:14:00,943 Hill St, Los Angeles,CA,90001 +144525,Lightning Charging Cable,1,14.95,2019-01-27 14:55:00,756 Washington St, Los Angeles,CA,90001 +144526,AA Batteries (4-pack),2,3.84,2019-01-30 13:13:00,846 10th St, Dallas,TX,75001 +144527,Lightning Charging Cable,1,14.95,2019-01-18 00:02:00,89 11th St, New York City,NY,10001 +144528,AA Batteries (4-pack),1,3.84,2019-01-28 10:54:00,15 Madison St, San Francisco,CA,94016 +144529,Lightning Charging Cable,1,14.95,2019-01-25 22:40:00,122 Washington St, Dallas,TX,75001 +144530,iPhone,1,700.0,2019-01-07 11:19:00,247 Main St, San Francisco,CA,94016 +144531,27in 4K Gaming Monitor,1,389.99,2019-01-09 21:45:00,572 Walnut St, San Francisco,CA,94016 +144532,AAA Batteries (4-pack),1,2.99,2019-01-09 22:04:00,520 7th St, Seattle,WA,98101 +144533,USB-C Charging Cable,1,11.95,2019-01-20 23:25:00,490 Spruce St, New York City,NY,10001 +144534,27in 4K Gaming Monitor,1,389.99,2019-01-31 14:12:00,126 Cedar St, San Francisco,CA,94016 +144535,Apple Airpods Headphones,1,150.0,2019-01-09 10:21:00,936 Elm St, San Francisco,CA,94016 +144536,Flatscreen TV,1,300.0,2019-01-19 16:22:00,137 Lakeview St, Los Angeles,CA,90001 +144537,Bose SoundSport Headphones,1,99.99,2019-01-01 09:12:00,164 West St, Boston,MA,02215 +144538,iPhone,1,700.0,2019-01-16 18:05:00,283 Cedar St, Atlanta,GA,30301 +144539,AA Batteries (4-pack),2,3.84,2019-01-21 15:43:00,418 Pine St, Los Angeles,CA,90001 +144540,USB-C Charging Cable,2,11.95,2019-01-06 22:04:00,868 Elm St, Los Angeles,CA,90001 +144541,Wired Headphones,1,11.99,2019-01-11 16:28:00,779 Washington St, Austin,TX,73301 +144541,Bose SoundSport Headphones,1,99.99,2019-01-11 16:28:00,779 Washington St, Austin,TX,73301 +144542,Lightning Charging Cable,1,14.95,2019-01-22 17:00:00,126 8th St, Atlanta,GA,30301 +144543,Lightning Charging Cable,1,14.95,2019-01-03 10:57:00,593 Elm St, San Francisco,CA,94016 +144544,Vareebadd Phone,1,400.0,2019-01-15 11:38:00,178 6th St, Seattle,WA,98101 +144544,USB-C Charging Cable,1,11.95,2019-01-15 11:38:00,178 6th St, Seattle,WA,98101 +144545,AAA Batteries (4-pack),2,2.99,2019-01-12 21:00:00,374 10th St, Dallas,TX,75001 +144545,AA Batteries (4-pack),1,3.84,2019-01-12 21:00:00,374 10th St, Dallas,TX,75001 +144546,USB-C Charging Cable,2,11.95,2019-01-08 14:56:00,203 Hill St, San Francisco,CA,94016 +144547,27in FHD Monitor,1,149.99,2019-01-13 22:47:00,83 Elm St, New York City,NY,10001 +144548,iPhone,1,700.0,2019-01-28 11:25:00,450 9th St, Dallas,TX,75001 +144549,34in Ultrawide Monitor,1,379.99,2019-01-26 14:12:00,364 Lincoln St, San Francisco,CA,94016 +144550,Apple Airpods Headphones,1,150.0,2019-01-26 14:10:00,801 5th St, Boston,MA,02215 +144551,iPhone,1,700.0,2019-01-23 06:53:00,135 Willow St, Boston,MA,02215 +144551,Lightning Charging Cable,2,14.95,2019-01-23 06:53:00,135 Willow St, Boston,MA,02215 +144552,Wired Headphones,1,11.99,2019-01-24 17:26:00,560 South St, Boston,MA,02215 +144553,ThinkPad Laptop,1,999.99,2019-01-24 13:32:00,177 Sunset St, Los Angeles,CA,90001 +144554,USB-C Charging Cable,1,11.95,2019-01-15 13:11:00,266 Cedar St, Austin,TX,73301 +144555,USB-C Charging Cable,2,11.95,2019-01-19 09:18:00,35 1st St, New York City,NY,10001 +144556,AAA Batteries (4-pack),2,2.99,2019-01-19 13:34:00,836 4th St, San Francisco,CA,94016 +144557,USB-C Charging Cable,1,11.95,2019-01-12 12:09:00,859 Chestnut St, Dallas,TX,75001 +144558,Lightning Charging Cable,1,14.95,2019-01-28 19:14:00,512 11th St, Los Angeles,CA,90001 +144559,AAA Batteries (4-pack),1,2.99,2019-01-13 18:35:00,319 Elm St, New York City,NY,10001 +144560,Macbook Pro Laptop,1,1700.0,2019-01-09 20:34:00,589 Maple St, New York City,NY,10001 +144561,Lightning Charging Cable,1,14.95,2019-01-21 15:57:00,889 South St, San Francisco,CA,94016 +144562,AAA Batteries (4-pack),2,2.99,2019-01-13 18:08:00,984 12th St, San Francisco,CA,94016 +144563,Wired Headphones,1,11.99,2019-01-19 17:22:00,366 Madison St, Portland,OR,97035 +144564,Wired Headphones,1,11.99,2019-01-10 18:34:00,541 Lakeview St, San Francisco,CA,94016 +144565,AAA Batteries (4-pack),1,2.99,2019-01-10 16:45:00,392 7th St, Boston,MA,02215 +144566,Apple Airpods Headphones,1,150.0,2019-01-04 09:58:00,625 11th St, Los Angeles,CA,90001 +144567,USB-C Charging Cable,1,11.95,2019-01-27 17:47:00,646 Cedar St, Austin,TX,73301 +144568,AAA Batteries (4-pack),1,2.99,2019-01-30 14:14:00,279 Hill St, Dallas,TX,75001 +144569,AA Batteries (4-pack),1,3.84,2019-01-31 14:36:00,188 South St, San Francisco,CA,94016 +144570,Wired Headphones,1,11.99,2019-01-11 19:21:00,930 1st St, Los Angeles,CA,90001 +144571,AAA Batteries (4-pack),1,2.99,2019-01-30 14:15:00,936 14th St, San Francisco,CA,94016 +144572,Wired Headphones,1,11.99,2019-01-13 14:08:00,967 Jackson St, San Francisco,CA,94016 +144573,AA Batteries (4-pack),2,3.84,2019-01-11 10:45:00,287 Madison St, Boston,MA,02215 +144574,Lightning Charging Cable,1,14.95,2019-01-05 21:05:00,18 Meadow St, San Francisco,CA,94016 +144575,Lightning Charging Cable,1,14.95,2019-01-09 09:28:00,361 Dogwood St, Los Angeles,CA,90001 +144576,Lightning Charging Cable,1,14.95,2019-01-08 00:23:00,766 Lakeview St, Dallas,TX,75001 +144577,Bose SoundSport Headphones,1,99.99,2019-01-08 05:04:00,885 River St, Los Angeles,CA,90001 +144578,Apple Airpods Headphones,1,150.0,2019-01-04 23:42:00,229 Highland St, Dallas,TX,75001 +144579,USB-C Charging Cable,1,11.95,2019-01-11 09:45:00,815 13th St, San Francisco,CA,94016 +144580,Bose SoundSport Headphones,1,99.99,2019-01-16 15:52:00,398 Chestnut St, San Francisco,CA,94016 +144581,AA Batteries (4-pack),1,3.84,2019-01-01 19:20:00,369 Center St, Los Angeles,CA,90001 +144582,AA Batteries (4-pack),1,3.84,2019-01-02 14:08:00,143 Willow St, Los Angeles,CA,90001 +144583,AA Batteries (4-pack),1,3.84,2019-01-24 19:43:00,993 West St, San Francisco,CA,94016 +144584,Google Phone,1,600.0,2019-01-14 11:04:00,174 Jefferson St, Dallas,TX,75001 +144584,USB-C Charging Cable,1,11.95,2019-01-14 11:04:00,174 Jefferson St, Dallas,TX,75001 +144585,Lightning Charging Cable,1,14.95,2019-01-18 10:37:00,890 West St, Atlanta,GA,30301 +144586,Vareebadd Phone,1,400.0,2019-01-27 19:17:00,396 Park St, Seattle,WA,98101 +144587,Lightning Charging Cable,1,14.95,2019-01-01 18:44:00,583 7th St, New York City,NY,10001 +144588,AA Batteries (4-pack),1,3.84,2019-01-23 02:18:00,666 Cedar St, New York City,NY,10001 +144589,USB-C Charging Cable,1,11.95,2019-01-28 06:59:00,402 Lake St, San Francisco,CA,94016 +144590,AAA Batteries (4-pack),2,2.99,2019-01-08 17:16:00,818 River St, Los Angeles,CA,90001 +144591,Apple Airpods Headphones,1,150.0,2019-01-17 21:26:00,935 Sunset St, Dallas,TX,75001 +144592,iPhone,1,700.0,2019-01-22 04:53:00,351 Ridge St, Austin,TX,73301 +144592,Lightning Charging Cable,1,14.95,2019-01-22 04:53:00,351 Ridge St, Austin,TX,73301 +144593,Bose SoundSport Headphones,1,99.99,2019-01-17 12:00:00,985 Center St, San Francisco,CA,94016 +144594,Bose SoundSport Headphones,1,99.99,2019-01-12 00:27:00,818 12th St, Los Angeles,CA,90001 +144595,27in 4K Gaming Monitor,1,389.99,2019-01-26 23:14:00,394 Center St, Los Angeles,CA,90001 +144596,34in Ultrawide Monitor,1,379.99,2019-01-01 16:05:00,47 Hill St, Seattle,WA,98101 +144597,Flatscreen TV,1,300.0,2019-01-04 17:05:00,86 Cherry St, New York City,NY,10001 +144598,Vareebadd Phone,1,400.0,2019-01-17 10:54:00,685 South St, Austin,TX,73301 +144599,Apple Airpods Headphones,1,150.0,2019-01-12 11:33:00,228 River St, San Francisco,CA,94016 +144600,iPhone,1,700.0,2019-01-03 19:42:00,435 5th St, Boston,MA,02215 +144600,Lightning Charging Cable,1,14.95,2019-01-03 19:42:00,435 5th St, Boston,MA,02215 +144601,AA Batteries (4-pack),2,3.84,2019-01-14 21:17:00,347 Cherry St, New York City,NY,10001 +144602,Google Phone,1,600.0,2019-01-27 14:54:00,220 Cedar St, Los Angeles,CA,90001 +144602,Wired Headphones,1,11.99,2019-01-27 14:54:00,220 Cedar St, Los Angeles,CA,90001 +144603,Google Phone,1,600.0,2019-01-29 22:47:00,419 Main St, New York City,NY,10001 +144603,USB-C Charging Cable,1,11.95,2019-01-29 22:47:00,419 Main St, New York City,NY,10001 +144604,AA Batteries (4-pack),2,3.84,2019-01-04 15:09:00,679 Washington St, San Francisco,CA,94016 +144605,Google Phone,1,600.0,2019-01-16 12:37:00,233 Lakeview St, New York City,NY,10001 +144606,20in Monitor,1,109.99,2019-01-26 20:12:00,320 Jackson St, San Francisco,CA,94016 +144607,USB-C Charging Cable,1,11.95,2019-01-25 18:57:00,73 Madison St, New York City,NY,10001 +144607,iPhone,1,700.0,2019-01-25 18:57:00,73 Madison St, New York City,NY,10001 +144608,Lightning Charging Cable,1,14.95,2019-01-17 10:51:00,558 Wilson St, Los Angeles,CA,90001 +144609,USB-C Charging Cable,1,11.95,2019-01-16 23:12:00,307 Lakeview St, Los Angeles,CA,90001 +144610,Wired Headphones,1,11.99,2019-01-15 17:00:00,306 Johnson St, Boston,MA,02215 +144611,ThinkPad Laptop,1,999.99,2019-01-23 00:05:00,715 Chestnut St, San Francisco,CA,94016 +144612,AAA Batteries (4-pack),1,2.99,2019-01-27 15:05:00,542 Jackson St, New York City,NY,10001 +144613,Lightning Charging Cable,1,14.95,2019-01-08 04:10:00,53 Jefferson St, New York City,NY,10001 +144614,27in FHD Monitor,1,149.99,2019-01-04 14:52:00,727 Hickory St, Dallas,TX,75001 +144615,AAA Batteries (4-pack),1,2.99,2019-01-27 20:01:00,732 6th St, Los Angeles,CA,90001 +144616,Macbook Pro Laptop,1,1700.0,2019-01-19 12:08:00,232 9th St, Atlanta,GA,30301 +144617,Apple Airpods Headphones,1,150.0,2019-01-23 23:39:00,853 Elm St, San Francisco,CA,94016 +144618,27in 4K Gaming Monitor,1,389.99,2019-01-15 17:27:00,137 Walnut St, San Francisco,CA,94016 +144619,Bose SoundSport Headphones,1,99.99,2019-01-02 15:02:00,197 Walnut St, Atlanta,GA,30301 +144620,Wired Headphones,1,11.99,2019-01-07 10:04:00,735 Forest St, San Francisco,CA,94016 +144621,AA Batteries (4-pack),3,3.84,2019-01-17 10:36:00,558 Elm St, Seattle,WA,98101 +144622,AA Batteries (4-pack),1,3.84,2019-01-05 10:18:00,857 Adams St, Portland,ME,04101 +144623,USB-C Charging Cable,1,11.95,2019-01-16 17:01:00,168 Dogwood St, Boston,MA,02215 +144624,AAA Batteries (4-pack),1,2.99,2019-01-15 12:37:00,503 Lakeview St, Los Angeles,CA,90001 +144625,Wired Headphones,1,11.99,2019-01-28 22:43:00,163 12th St, San Francisco,CA,94016 +144626,Wired Headphones,1,11.99,2019-01-10 11:18:00,697 Jackson St, New York City,NY,10001 +144627,Lightning Charging Cable,1,14.95,2019-01-30 12:34:00,634 Jefferson St, San Francisco,CA,94016 +144628,Bose SoundSport Headphones,1,99.99,2019-01-19 02:42:00,252 North St, Seattle,WA,98101 +144629,Macbook Pro Laptop,1,1700.0,2019-01-02 13:18:00,407 6th St, Seattle,WA,98101 +144630,AAA Batteries (4-pack),1,2.99,2019-01-21 11:06:00,642 Forest St, Portland,ME,04101 +144631,Lightning Charging Cable,1,14.95,2019-01-15 11:58:00,374 Jackson St, New York City,NY,10001 +144632,AA Batteries (4-pack),1,3.84,2019-01-05 13:22:00,830 2nd St, San Francisco,CA,94016 +144633,AA Batteries (4-pack),1,3.84,2019-01-03 12:38:00,352 River St, Boston,MA,02215 +144634,Lightning Charging Cable,1,14.95,2019-01-29 08:09:00,891 Lakeview St, Austin,TX,73301 +144635,Macbook Pro Laptop,1,1700.0,2019-01-21 17:17:00,933 Madison St, Austin,TX,73301 +144636,Wired Headphones,1,11.99,2019-01-22 20:05:00,803 Sunset St, Atlanta,GA,30301 +144637,iPhone,1,700.0,2019-01-30 10:07:00,941 Meadow St, New York City,NY,10001 +144638,34in Ultrawide Monitor,1,379.99,2019-01-04 13:12:00,299 9th St, San Francisco,CA,94016 +144639,USB-C Charging Cable,1,11.95,2019-01-10 10:04:00,389 6th St, Austin,TX,73301 +144640,Vareebadd Phone,1,400.0,2019-01-27 18:23:00,948 Elm St, San Francisco,CA,94016 +144641,Lightning Charging Cable,2,14.95,2019-01-01 14:06:00,847 10th St, Boston,MA,02215 +144642,Wired Headphones,1,11.99,2019-01-05 19:06:00,198 Hill St, New York City,NY,10001 +144643,ThinkPad Laptop,1,999.99,2019-01-11 12:26:00,664 11th St, Dallas,TX,75001 +144644,Wired Headphones,1,11.99,2019-01-07 08:48:00,470 Meadow St, San Francisco,CA,94016 +144645,AA Batteries (4-pack),2,3.84,2019-01-17 12:42:00,927 Main St, Seattle,WA,98101 +144646,Bose SoundSport Headphones,1,99.99,2019-01-25 13:08:00,485 Jackson St, Dallas,TX,75001 +144647,27in 4K Gaming Monitor,1,389.99,2019-01-07 09:41:00,104 Center St, Los Angeles,CA,90001 +144648,Apple Airpods Headphones,1,150.0,2019-01-12 19:52:00,298 5th St, Portland,OR,97035 +144649,USB-C Charging Cable,1,11.95,2019-01-04 16:27:00,848 6th St, Portland,ME,04101 +144650,AA Batteries (4-pack),2,3.84,2019-01-08 10:30:00,301 13th St, Boston,MA,02215 +144651,AA Batteries (4-pack),1,3.84,2019-01-29 17:44:00,251 Meadow St, Seattle,WA,98101 +144652,USB-C Charging Cable,1,11.95,2019-01-14 16:40:00,59 Jackson St, Portland,ME,04101 +144653,Apple Airpods Headphones,1,150.0,2019-01-20 15:32:00,258 8th St, New York City,NY,10001 +144654,iPhone,1,700.0,2019-01-22 12:41:00,434 Center St, San Francisco,CA,94016 +144655,Google Phone,1,600.0,2019-01-11 08:36:00,836 Cedar St, Atlanta,GA,30301 +144656,Apple Airpods Headphones,1,150.0,2019-01-24 21:28:00,690 Chestnut St, Los Angeles,CA,90001 +144657,AAA Batteries (4-pack),1,2.99,2019-01-06 11:12:00,726 Main St, San Francisco,CA,94016 +144658,Lightning Charging Cable,1,14.95,2019-01-07 12:26:00,434 Jackson St, Boston,MA,02215 +144659,USB-C Charging Cable,1,11.95,2019-01-19 22:44:00,589 Dogwood St, San Francisco,CA,94016 +144660,USB-C Charging Cable,1,11.95,2019-01-01 16:36:00,992 12th St, Portland,OR,97035 +144661,AAA Batteries (4-pack),2,2.99,2019-01-11 00:35:00,618 River St, San Francisco,CA,94016 +144662,USB-C Charging Cable,1,11.95,2019-01-04 22:02:00,460 Church St, Boston,MA,02215 +144663,27in FHD Monitor,1,149.99,2019-01-07 19:51:00,245 Lakeview St, Los Angeles,CA,90001 +144664,Bose SoundSport Headphones,1,99.99,2019-01-30 21:28:00,591 South St, Boston,MA,02215 +144665,USB-C Charging Cable,1,11.95,2019-01-12 11:52:00,18 4th St, Los Angeles,CA,90001 +144666,Bose SoundSport Headphones,1,99.99,2019-01-08 17:51:00,616 Forest St, Atlanta,GA,30301 +144667,Apple Airpods Headphones,1,150.0,2019-01-16 20:17:00,185 Park St, Atlanta,GA,30301 +144668,Wired Headphones,1,11.99,2019-01-08 13:12:00,902 River St, San Francisco,CA,94016 +144669,Apple Airpods Headphones,1,150.0,2019-01-02 21:06:00,581 Cedar St, Los Angeles,CA,90001 +144670,Lightning Charging Cable,1,14.95,2019-01-09 10:23:00,99 Park St, Seattle,WA,98101 +144671,Flatscreen TV,1,300.0,2019-01-18 21:32:00,560 Dogwood St, New York City,NY,10001 +144672,Google Phone,1,600.0,2019-01-25 17:49:00,532 5th St, San Francisco,CA,94016 +144673,Apple Airpods Headphones,1,150.0,2019-01-31 16:00:00,706 Adams St, New York City,NY,10001 +144674,34in Ultrawide Monitor,1,379.99,2019-01-16 11:37:00,440 5th St, Seattle,WA,98101 +144675,AA Batteries (4-pack),1,3.84,2019-01-03 07:15:00,766 Willow St, San Francisco,CA,94016 +144676,iPhone,1,700.0,2019-01-16 10:51:00,707 4th St, New York City,NY,10001 +144677,27in 4K Gaming Monitor,1,389.99,2019-01-30 12:51:00,469 10th St, San Francisco,CA,94016 +144678,20in Monitor,1,109.99,2019-01-07 17:52:00,223 Ridge St, San Francisco,CA,94016 +144679,Google Phone,1,600.0,2019-01-01 12:51:00,984 Lakeview St, San Francisco,CA,94016 +144679,USB-C Charging Cable,1,11.95,2019-01-01 12:51:00,984 Lakeview St, San Francisco,CA,94016 +144680,AAA Batteries (4-pack),1,2.99,2019-01-15 21:21:00,710 Center St, Dallas,TX,75001 +144681,20in Monitor,1,109.99,2019-01-13 12:14:00,865 Dogwood St, Boston,MA,02215 +144682,Lightning Charging Cable,1,14.95,2019-01-07 14:15:00,50 Walnut St, San Francisco,CA,94016 +144683,AA Batteries (4-pack),2,3.84,2019-01-29 12:10:00,742 Madison St, Seattle,WA,98101 +144684,Wired Headphones,1,11.99,2019-01-30 21:05:00,17 Elm St, Los Angeles,CA,90001 +144685,AA Batteries (4-pack),1,3.84,2019-01-23 17:14:00,824 Lincoln St, San Francisco,CA,94016 +144686,27in 4K Gaming Monitor,1,389.99,2019-01-20 21:31:00,387 Church St, Portland,OR,97035 +144687,AAA Batteries (4-pack),1,2.99,2019-01-16 18:37:00,437 7th St, Los Angeles,CA,90001 +144688,Flatscreen TV,1,300.0,2019-01-17 06:43:00,938 Adams St, Boston,MA,02215 +144689,AA Batteries (4-pack),5,3.84,2019-01-05 10:21:00,200 Hill St, San Francisco,CA,94016 +144690,AAA Batteries (4-pack),1,2.99,2019-01-11 19:30:00,107 8th St, Seattle,WA,98101 +144691,USB-C Charging Cable,1,11.95,2019-01-28 10:23:00,704 Highland St, San Francisco,CA,94016 +144692,Vareebadd Phone,1,400.0,2019-01-12 11:13:00,897 Willow St, Los Angeles,CA,90001 +144692,USB-C Charging Cable,1,11.95,2019-01-12 11:13:00,897 Willow St, Los Angeles,CA,90001 +144693,Bose SoundSport Headphones,1,99.99,2019-01-20 23:27:00,432 Maple St, San Francisco,CA,94016 +144694,Bose SoundSport Headphones,1,99.99,2019-01-02 07:32:00,721 Elm St, Seattle,WA,98101 +144695,27in 4K Gaming Monitor,1,389.99,2019-01-19 12:09:00,720 11th St, San Francisco,CA,94016 +144696,AAA Batteries (4-pack),1,2.99,2019-01-10 20:22:00,383 Forest St, San Francisco,CA,94016 +144697,27in FHD Monitor,1,149.99,2019-01-23 09:10:00,76 Madison St, Los Angeles,CA,90001 +144698,USB-C Charging Cable,1,11.95,2019-01-05 00:45:00,771 Cedar St, San Francisco,CA,94016 +144699,Lightning Charging Cable,1,14.95,2019-01-10 13:26:00,270 Jefferson St, San Francisco,CA,94016 +144700,USB-C Charging Cable,1,11.95,2019-01-03 18:43:00,704 Chestnut St, Austin,TX,73301 +144701,34in Ultrawide Monitor,1,379.99,2019-01-24 15:00:00,646 Ridge St, Los Angeles,CA,90001 +144702,27in FHD Monitor,1,149.99,2019-01-18 21:04:00,587 6th St, San Francisco,CA,94016 +144703,ThinkPad Laptop,1,999.99,2019-01-23 16:27:00,117 West St, Portland,OR,97035 +144704,iPhone,1,700.0,2019-01-26 11:23:00,846 13th St, Boston,MA,02215 +144704,Wired Headphones,1,11.99,2019-01-26 11:23:00,846 13th St, Boston,MA,02215 +144705,34in Ultrawide Monitor,1,379.99,2019-01-16 11:47:00,811 Highland St, Atlanta,GA,30301 +144706,AAA Batteries (4-pack),1,2.99,2019-01-22 14:11:00,404 West St, Seattle,WA,98101 +144707,Wired Headphones,1,11.99,2019-01-10 21:32:00,427 13th St, San Francisco,CA,94016 +144708,Bose SoundSport Headphones,1,99.99,2019-01-28 10:34:00,675 Lakeview St, San Francisco,CA,94016 +144709,Wired Headphones,2,11.99,2019-01-13 13:38:00,937 River St, Portland,OR,97035 +144710,Lightning Charging Cable,1,14.95,2019-01-06 07:49:00,688 Elm St, Dallas,TX,75001 +144711,Wired Headphones,1,11.99,2019-01-28 19:51:00,304 Hill St, Los Angeles,CA,90001 +144712,USB-C Charging Cable,1,11.95,2019-01-07 02:49:00,888 Lakeview St, New York City,NY,10001 +144713,Apple Airpods Headphones,1,150.0,2019-01-16 11:30:00,722 Madison St, Los Angeles,CA,90001 +144714,AA Batteries (4-pack),1,3.84,2019-01-25 15:03:00,321 6th St, Atlanta,GA,30301 +144715,20in Monitor,1,109.99,2019-01-27 20:03:00,761 Washington St, New York City,NY,10001 +144716,Bose SoundSport Headphones,1,99.99,2019-01-17 11:50:00,412 Forest St, Los Angeles,CA,90001 +144717,AAA Batteries (4-pack),5,2.99,2019-01-29 13:39:00,900 Cherry St, Los Angeles,CA,90001 +144718,AA Batteries (4-pack),4,3.84,2019-01-12 10:06:00,686 Hill St, Dallas,TX,75001 +144719,Bose SoundSport Headphones,1,99.99,2019-01-19 22:36:00,581 Maple St, Boston,MA,02215 +144720,AA Batteries (4-pack),2,3.84,2019-01-07 12:44:00,992 Jefferson St, San Francisco,CA,94016 +144721,USB-C Charging Cable,1,11.95,2019-01-17 19:24:00,473 Park St, Los Angeles,CA,90001 +144722,34in Ultrawide Monitor,1,379.99,2019-01-16 22:50:00,337 Church St, San Francisco,CA,94016 +144723,Bose SoundSport Headphones,1,99.99,2019-01-05 10:29:00,633 Hill St, Boston,MA,02215 +144724,Lightning Charging Cable,1,14.95,2019-01-24 20:27:00,378 Walnut St, New York City,NY,10001 +144725,34in Ultrawide Monitor,1,379.99,2019-01-11 10:38:00,129 North St, Boston,MA,02215 +144726,27in FHD Monitor,1,149.99,2019-01-17 11:12:00,91 Church St, Los Angeles,CA,90001 +144727,Wired Headphones,1,11.99,2019-01-28 15:41:00,289 13th St, New York City,NY,10001 +144728,Lightning Charging Cable,1,14.95,2019-01-03 09:58:00,386 Johnson St, Boston,MA,02215 +144729,Apple Airpods Headphones,1,150.0,2019-01-27 19:31:00,55 Elm St, Boston,MA,02215 +144730,27in 4K Gaming Monitor,1,389.99,2019-01-09 23:43:00,571 Highland St, Los Angeles,CA,90001 +144731,AA Batteries (4-pack),1,3.84,2019-01-27 08:59:00,614 Adams St, San Francisco,CA,94016 +144732,USB-C Charging Cable,2,11.95,2019-01-03 18:27:00,201 Jackson St, Boston,MA,02215 +144733,AA Batteries (4-pack),1,3.84,2019-01-26 11:28:00,117 Church St, San Francisco,CA,94016 +144734,AAA Batteries (4-pack),1,2.99,2019-01-21 05:53:00,72 Willow St, New York City,NY,10001 +144735,Macbook Pro Laptop,1,1700.0,2019-01-05 16:15:00,266 4th St, Los Angeles,CA,90001 +144736,USB-C Charging Cable,1,11.95,2019-01-12 19:17:00,321 Jefferson St, San Francisco,CA,94016 +144737,AA Batteries (4-pack),1,3.84,2019-01-21 21:58:00,394 Pine St, San Francisco,CA,94016 +144738,20in Monitor,1,109.99,2019-01-09 12:38:00,240 12th St, San Francisco,CA,94016 +144739,iPhone,1,700.0,2019-01-10 10:08:00,533 Maple St, Seattle,WA,98101 +144739,Lightning Charging Cable,1,14.95,2019-01-10 10:08:00,533 Maple St, Seattle,WA,98101 +144740,Macbook Pro Laptop,1,1700.0,2019-01-30 21:14:00,875 2nd St, Dallas,TX,75001 +144741,ThinkPad Laptop,1,999.99,2019-01-28 14:08:00,475 Lake St, San Francisco,CA,94016 +144742,AA Batteries (4-pack),3,3.84,2019-01-03 11:20:00,773 Jefferson St, Portland,ME,04101 +144743,Vareebadd Phone,1,400.0,2019-01-09 23:26:00,2 Jackson St, Los Angeles,CA,90001 +144744,Lightning Charging Cable,1,14.95,2019-01-10 12:01:00,193 Lincoln St, Los Angeles,CA,90001 +144745,USB-C Charging Cable,1,11.95,2019-01-03 15:54:00,36 8th St, Portland,ME,04101 +144746,Wired Headphones,1,11.99,2019-01-07 03:32:00,308 Madison St, Portland,OR,97035 +144747,Wired Headphones,1,11.99,2019-01-03 18:33:00,191 11th St, Atlanta,GA,30301 +144748,AA Batteries (4-pack),1,3.84,2019-01-11 11:54:00,675 Dogwood St, San Francisco,CA,94016 +144749,Bose SoundSport Headphones,1,99.99,2019-01-27 20:26:00,73 Walnut St, Portland,OR,97035 +144750,Wired Headphones,1,11.99,2019-01-19 11:01:00,536 Maple St, Boston,MA,02215 +144751,USB-C Charging Cable,1,11.95,2019-01-24 10:46:00,353 Hickory St, San Francisco,CA,94016 +144752,27in 4K Gaming Monitor,1,389.99,2019-01-01 11:34:00,708 1st St, San Francisco,CA,94016 +144753,AAA Batteries (4-pack),1,2.99,2019-01-21 09:28:00,667 Lincoln St, San Francisco,CA,94016 +144754,LG Washing Machine,1,600.0,2019-01-25 18:18:00,388 11th St, Boston,MA,02215 +144755,Bose SoundSport Headphones,1,99.99,2019-01-28 11:51:00,398 5th St, Seattle,WA,98101 +144756,AA Batteries (4-pack),1,3.84,2019-01-11 19:20:00,306 Forest St, Los Angeles,CA,90001 +144757,iPhone,1,700.0,2019-01-12 11:45:00,712 Cherry St, New York City,NY,10001 +144758,Apple Airpods Headphones,1,150.0,2019-01-07 23:58:00,913 Jackson St, Los Angeles,CA,90001 +144759,AAA Batteries (4-pack),1,2.99,2019-01-26 11:48:00,397 Sunset St, Atlanta,GA,30301 +144760,Bose SoundSport Headphones,1,99.99,2019-01-10 12:41:00,713 Lake St, Boston,MA,02215 +144760,Wired Headphones,1,11.99,2019-01-10 12:41:00,713 Lake St, Boston,MA,02215 +144761,AA Batteries (4-pack),2,3.84,2019-01-29 12:08:00,335 North St, San Francisco,CA,94016 +144762,iPhone,1,700.0,2019-01-12 19:28:00,3 Park St, Boston,MA,02215 +144763,Lightning Charging Cable,2,14.95,2019-01-17 21:03:00,250 Highland St, Portland,ME,04101 +144764,Google Phone,1,600.0,2019-01-04 11:09:00,181 Johnson St, Seattle,WA,98101 +144764,USB-C Charging Cable,1,11.95,2019-01-04 11:09:00,181 Johnson St, Seattle,WA,98101 +144765,Vareebadd Phone,1,400.0,2019-01-04 17:06:00,556 Lakeview St, Los Angeles,CA,90001 +144766,AA Batteries (4-pack),1,3.84,2019-01-13 19:11:00,250 Cherry St, Dallas,TX,75001 +144767,USB-C Charging Cable,1,11.95,2019-01-08 11:27:00,571 Lakeview St, Boston,MA,02215 +144768,USB-C Charging Cable,1,11.95,2019-01-08 23:10:00,290 8th St, Boston,MA,02215 +144769,AAA Batteries (4-pack),2,2.99,2019-01-18 20:29:00,946 Sunset St, San Francisco,CA,94016 +144770,AAA Batteries (4-pack),2,2.99,2019-01-22 10:37:00,703 10th St, Los Angeles,CA,90001 +144771,Wired Headphones,1,11.99,2019-01-11 15:24:00,630 Lake St, San Francisco,CA,94016 +144772,27in FHD Monitor,1,149.99,2019-01-18 14:05:00,675 Wilson St, Atlanta,GA,30301 +144773,27in 4K Gaming Monitor,1,389.99,2019-01-27 11:20:00,349 Lakeview St, Boston,MA,02215 +144774,AAA Batteries (4-pack),1,2.99,2019-01-15 06:18:00,907 Lincoln St, Seattle,WA,98101 +144775,Lightning Charging Cable,1,14.95,2019-01-15 22:50:00,856 12th St, New York City,NY,10001 +144776,AA Batteries (4-pack),1,3.84,2019-01-31 16:01:00,442 1st St, San Francisco,CA,94016 +144777,Apple Airpods Headphones,1,150.0,2019-01-12 13:52:00,846 Spruce St, New York City,NY,10001 +144778,AAA Batteries (4-pack),2,2.99,2019-01-26 13:12:00,561 Walnut St, New York City,NY,10001 +144779,Bose SoundSport Headphones,1,99.99,2019-01-16 13:26:00,339 1st St, Boston,MA,02215 +144780,AA Batteries (4-pack),3,3.84,2019-01-24 10:07:00,382 Main St, Atlanta,GA,30301 +144781,AA Batteries (4-pack),1,3.84,2019-01-05 23:13:00,666 10th St, New York City,NY,10001 +144782,iPhone,1,700.0,2019-01-12 07:34:00,232 6th St, Atlanta,GA,30301 +144783,Wired Headphones,1,11.99,2019-01-28 22:01:00,965 Jackson St, San Francisco,CA,94016 +144784,iPhone,1,700.0,2019-01-19 15:46:00,449 10th St, Dallas,TX,75001 +144784,Wired Headphones,1,11.99,2019-01-19 15:46:00,449 10th St, Dallas,TX,75001 +144785,Google Phone,1,600.0,2019-01-27 23:07:00,505 Pine St, Dallas,TX,75001 +144785,USB-C Charging Cable,1,11.95,2019-01-27 23:07:00,505 Pine St, Dallas,TX,75001 +144786,Wired Headphones,1,11.99,2019-01-25 17:49:00,633 8th St, Los Angeles,CA,90001 +144787,AAA Batteries (4-pack),1,2.99,2019-01-25 23:12:00,705 North St, Los Angeles,CA,90001 +144788,Apple Airpods Headphones,1,150.0,2019-01-22 20:01:00,666 South St, Atlanta,GA,30301 +144789,20in Monitor,1,109.99,2019-01-06 20:12:00,617 Cedar St, Portland,OR,97035 +144790,Wired Headphones,1,11.99,2019-01-19 20:15:00,387 Ridge St, Portland,ME,04101 +144791,USB-C Charging Cable,1,11.95,2019-01-27 06:37:00,476 Lincoln St, Seattle,WA,98101 +144792,AA Batteries (4-pack),1,3.84,2019-01-14 21:14:00,476 Church St, Atlanta,GA,30301 +144793,Lightning Charging Cable,2,14.95,2019-01-16 16:24:00,821 Madison St, Los Angeles,CA,90001 +144794,AA Batteries (4-pack),2,3.84,2019-01-05 16:39:00,205 North St, San Francisco,CA,94016 +144795,AA Batteries (4-pack),2,3.84,2019-01-29 09:59:00,888 Wilson St, Atlanta,GA,30301 +144796,Lightning Charging Cable,1,14.95,2019-01-22 18:33:00,142 Forest St, Dallas,TX,75001 +144797,Apple Airpods Headphones,1,150.0,2019-01-29 10:36:00,375 Hickory St, Austin,TX,73301 +144798,Vareebadd Phone,1,400.0,2019-01-27 19:37:00,463 12th St, Seattle,WA,98101 +144799,AAA Batteries (4-pack),1,2.99,2019-01-28 11:36:00,993 10th St, Los Angeles,CA,90001 +144800,Wired Headphones,1,11.99,2019-01-08 12:04:00,132 River St, Portland,OR,97035 +144801,Wired Headphones,1,11.99,2019-01-15 10:31:00,417 Maple St, New York City,NY,10001 +144802,27in FHD Monitor,1,149.99,2019-01-16 12:18:00,333 Hill St, Boston,MA,02215 +144803,Lightning Charging Cable,1,14.95,2019-01-08 22:42:00,847 Dogwood St, Austin,TX,73301 +144804,iPhone,1,700.0,2019-01-01 07:29:00,628 Lake St, New York City,NY,10001 +144804,Wired Headphones,1,11.99,2019-01-01 07:29:00,628 Lake St, New York City,NY,10001 +144805,27in 4K Gaming Monitor,1,389.99,2019-01-02 17:22:00,187 6th St, Portland,OR,97035 +144806,AAA Batteries (4-pack),1,2.99,2019-01-02 15:35:00,974 Highland St, Austin,TX,73301 +144807,AAA Batteries (4-pack),1,2.99,2019-01-05 20:29:00,15 Wilson St, Boston,MA,02215 +144808,34in Ultrawide Monitor,1,379.99,2019-01-13 13:18:00,100 Walnut St, San Francisco,CA,94016 +144809,AAA Batteries (4-pack),1,2.99,2019-01-03 20:00:00,629 Wilson St, Los Angeles,CA,90001 +144810,Google Phone,1,600.0,2019-01-05 11:22:00,153 Meadow St, Los Angeles,CA,90001 +144811,Vareebadd Phone,1,400.0,2019-01-09 15:29:00,744 Main St, San Francisco,CA,94016 +144812,USB-C Charging Cable,1,11.95,2019-01-29 07:38:00,833 10th St, Los Angeles,CA,90001 +144813,AAA Batteries (4-pack),1,2.99,2019-01-26 19:58:00,442 River St, Los Angeles,CA,90001 +144814,USB-C Charging Cable,1,11.95,2019-01-08 00:54:00,355 10th St, Austin,TX,73301 +144815,Wired Headphones,1,11.99,2019-01-24 14:08:00,56 Madison St, Los Angeles,CA,90001 +144816,Apple Airpods Headphones,1,150.0,2019-01-06 16:41:00,537 Willow St, Seattle,WA,98101 +144817,AAA Batteries (4-pack),2,2.99,2019-01-29 12:22:00,721 South St, San Francisco,CA,94016 +144818,AAA Batteries (4-pack),2,2.99,2019-01-05 21:16:00,384 12th St, Austin,TX,73301 +144819,iPhone,1,700.0,2019-01-18 16:28:00,916 Pine St, New York City,NY,10001 +144819,Lightning Charging Cable,1,14.95,2019-01-18 16:28:00,916 Pine St, New York City,NY,10001 +144819,Wired Headphones,1,11.99,2019-01-18 16:28:00,916 Pine St, New York City,NY,10001 +144820,AA Batteries (4-pack),1,3.84,2019-01-24 08:00:00,499 Lake St, Los Angeles,CA,90001 +144821,Google Phone,1,600.0,2019-01-26 22:04:00,184 Hill St, Boston,MA,02215 +144821,USB-C Charging Cable,1,11.95,2019-01-26 22:04:00,184 Hill St, Boston,MA,02215 +144822,USB-C Charging Cable,1,11.95,2019-01-15 12:04:00,674 Forest St, Atlanta,GA,30301 +144823,AA Batteries (4-pack),3,3.84,2019-01-23 15:35:00,219 7th St, San Francisco,CA,94016 +144824,20in Monitor,1,109.99,2019-01-25 16:52:00,886 Forest St, San Francisco,CA,94016 +144825,Apple Airpods Headphones,1,150.0,2019-01-06 15:14:00,102 Hill St, New York City,NY,10001 +144826,Google Phone,1,600.0,2019-01-23 15:44:00,979 Chestnut St, Los Angeles,CA,90001 +144827,Wired Headphones,1,11.99,2019-01-02 14:26:00,501 1st St, Portland,ME,04101 +144828,AA Batteries (4-pack),3,3.84,2019-01-30 10:27:00,168 Ridge St, New York City,NY,10001 +144829,Apple Airpods Headphones,1,150.0,2019-01-02 10:36:00,625 Walnut St, Atlanta,GA,30301 +144830,27in 4K Gaming Monitor,1,389.99,2019-01-10 16:54:00,975 12th St, Portland,OR,97035 +144831,iPhone,1,700.0,2019-01-09 09:10:00,979 Forest St, Boston,MA,02215 +144832,Lightning Charging Cable,1,14.95,2019-01-30 08:04:00,35 Madison St, Los Angeles,CA,90001 +144833,Google Phone,1,600.0,2019-01-28 11:34:00,53 10th St, Los Angeles,CA,90001 +144834,AAA Batteries (4-pack),1,2.99,2019-01-28 07:07:00,29 Spruce St, San Francisco,CA,94016 +144835,AAA Batteries (4-pack),2,2.99,2019-01-28 19:33:00,936 13th St, Los Angeles,CA,90001 +144836,20in Monitor,1,109.99,2019-01-02 15:25:00,449 Maple St, Los Angeles,CA,90001 +144837,Lightning Charging Cable,1,14.95,2019-01-16 12:23:00,298 Park St, Atlanta,GA,30301 +144838,Wired Headphones,1,11.99,2019-01-06 22:21:00,512 Church St, Seattle,WA,98101 +144839,Google Phone,1,600.0,2019-01-13 21:22:00,742 Cedar St, New York City,NY,10001 +144840,AA Batteries (4-pack),2,3.84,2019-01-26 16:01:00,264 North St, San Francisco,CA,94016 +144841,Macbook Pro Laptop,1,1700.0,2019-01-26 18:06:00,447 Meadow St, Los Angeles,CA,90001 +144842,ThinkPad Laptop,1,999.99,2019-01-27 17:23:00,926 South St, Dallas,TX,75001 +144843,Lightning Charging Cable,2,14.95,2019-01-06 18:30:00,109 South St, Dallas,TX,75001 +144844,AA Batteries (4-pack),1,3.84,2019-01-16 11:59:00,251 Jackson St, New York City,NY,10001 +144845,Apple Airpods Headphones,1,150.0,2019-01-09 01:06:00,200 13th St, Los Angeles,CA,90001 +144846,Flatscreen TV,1,300.0,2019-01-27 18:01:00,944 Church St, Dallas,TX,75001 +144847,Apple Airpods Headphones,1,150.0,2019-01-13 19:50:00,18 14th St, San Francisco,CA,94016 +144848,AAA Batteries (4-pack),2,2.99,2019-01-29 18:45:00,502 North St, Atlanta,GA,30301 +144849,Apple Airpods Headphones,1,150.0,2019-01-20 21:23:00,781 Park St, Dallas,TX,75001 +144850,Google Phone,1,600.0,2019-01-02 21:10:00,781 Park St, Boston,MA,02215 +144850,USB-C Charging Cable,1,11.95,2019-01-02 21:10:00,781 Park St, Boston,MA,02215 +144851,Apple Airpods Headphones,2,150.0,2019-01-26 06:48:00,238 North St, New York City,NY,10001 +144851,USB-C Charging Cable,1,11.95,2019-01-26 06:48:00,238 North St, New York City,NY,10001 +144852,AAA Batteries (4-pack),1,2.99,2019-01-27 09:04:00,694 West St, Portland,OR,97035 +144853,Lightning Charging Cable,1,14.95,2019-01-06 12:47:00,727 12th St, New York City,NY,10001 +144854,Bose SoundSport Headphones,1,99.99,2019-01-03 21:00:00,63 North St, Austin,TX,73301 +144855,USB-C Charging Cable,1,11.95,2019-01-16 16:23:00,968 Jackson St, Boston,MA,02215 +144856,27in 4K Gaming Monitor,1,389.99,2019-01-01 18:53:00,468 Chestnut St, Dallas,TX,75001 +144857,20in Monitor,1,109.99,2019-01-01 14:29:00,654 6th St, Atlanta,GA,30301 +144858,34in Ultrawide Monitor,1,379.99,2019-01-01 14:29:00,907 9th St, San Francisco,CA,94016 +144859,AA Batteries (4-pack),1,3.84,2019-01-30 21:14:00,932 River St, Los Angeles,CA,90001 +144860,USB-C Charging Cable,1,11.95,2019-01-12 15:42:00,188 Hill St, Boston,MA,02215 +144861,AA Batteries (4-pack),1,3.84,2019-01-25 15:32:00,480 Willow St, Boston,MA,02215 +144861,Lightning Charging Cable,1,14.95,2019-01-25 15:32:00,480 Willow St, Boston,MA,02215 +144862,LG Dryer,1,600.0,2019-01-18 20:13:00,25 Church St, San Francisco,CA,94016 +144863,Wired Headphones,1,11.99,2019-01-27 19:24:00,936 Dogwood St, Dallas,TX,75001 +144864,Apple Airpods Headphones,1,150.0,2019-01-01 17:05:00,67 2nd St, Dallas,TX,75001 +144865,Lightning Charging Cable,1,14.95,2019-01-28 09:23:00,486 Sunset St, New York City,NY,10001 +144866,iPhone,1,700.0,2019-01-02 17:58:00,166 Willow St, Dallas,TX,75001 +144866,Lightning Charging Cable,1,14.95,2019-01-02 17:58:00,166 Willow St, Dallas,TX,75001 +144867,Flatscreen TV,1,300.0,2019-01-16 13:45:00,867 Hill St, Portland,OR,97035 +144868,AA Batteries (4-pack),1,3.84,2019-01-01 18:03:00,565 Hill St, Boston,MA,02215 +144869,iPhone,1,700.0,2019-01-25 15:16:00,718 Cherry St, New York City,NY,10001 +144870,Google Phone,1,600.0,2019-01-26 15:10:00,346 1st St, Portland,OR,97035 +144871,Flatscreen TV,1,300.0,2019-01-13 12:07:00,440 Park St, Los Angeles,CA,90001 +144872,Lightning Charging Cable,1,14.95,2019-01-27 18:03:00,207 7th St, Los Angeles,CA,90001 +144873,USB-C Charging Cable,1,11.95,2019-01-15 16:03:00,775 Lincoln St, Los Angeles,CA,90001 +144874,USB-C Charging Cable,1,11.95,2019-01-26 14:29:00,463 Maple St, Boston,MA,02215 +144875,USB-C Charging Cable,1,11.95,2019-01-28 14:51:00,197 Pine St, Dallas,TX,75001 +144876,Bose SoundSport Headphones,1,99.99,2019-01-09 10:31:00,825 Lakeview St, Austin,TX,73301 +144877,iPhone,1,700.0,2019-01-24 09:35:00,588 Meadow St, Seattle,WA,98101 +144878,AAA Batteries (4-pack),2,2.99,2019-01-08 17:29:00,698 Johnson St, Boston,MA,02215 +144879,USB-C Charging Cable,1,11.95,2019-01-18 12:51:00,249 River St, New York City,NY,10001 +144880,AA Batteries (4-pack),1,3.84,2019-01-15 19:59:00,779 Johnson St, Boston,MA,02215 +144881,AA Batteries (4-pack),1,3.84,2019-01-21 07:04:00,131 14th St, Portland,OR,97035 +144882,AA Batteries (4-pack),1,3.84,2019-01-08 18:20:00,568 2nd St, San Francisco,CA,94016 +144883,AA Batteries (4-pack),2,3.84,2019-01-20 22:35:00,298 Jackson St, New York City,NY,10001 +144884,20in Monitor,1,109.99,2019-01-22 19:05:00,263 Hickory St, Austin,TX,73301 +144884,Wired Headphones,1,11.99,2019-01-22 19:05:00,263 Hickory St, Austin,TX,73301 +144885,Lightning Charging Cable,1,14.95,2019-01-06 18:16:00,139 Meadow St, San Francisco,CA,94016 +144886,Lightning Charging Cable,2,14.95,2019-01-18 14:54:00,154 Lake St, San Francisco,CA,94016 +144887,AAA Batteries (4-pack),1,2.99,2019-01-05 08:09:00,115 12th St, Los Angeles,CA,90001 +144888,USB-C Charging Cable,1,11.95,2019-01-14 22:49:00,485 Lincoln St, Dallas,TX,75001 +144889,AA Batteries (4-pack),4,3.84,2019-01-14 18:19:00,919 Highland St, Boston,MA,02215 +144890,27in FHD Monitor,1,149.99,2019-01-07 21:03:00,102 Cedar St, San Francisco,CA,94016 +144891,Bose SoundSport Headphones,1,99.99,2019-01-07 14:11:00,779 8th St, Seattle,WA,98101 +144892,AAA Batteries (4-pack),3,2.99,2019-01-07 00:01:00,157 Willow St, New York City,NY,10001 +144893,Bose SoundSport Headphones,1,99.99,2019-01-21 14:20:00,463 Chestnut St, San Francisco,CA,94016 +144894,Wired Headphones,1,11.99,2019-01-27 11:12:00,419 1st St, Dallas,TX,75001 +144895,Macbook Pro Laptop,1,1700.0,2019-01-11 17:35:00,412 Madison St, Seattle,WA,98101 +144896,Lightning Charging Cable,1,14.95,2019-01-22 22:48:00,483 Jefferson St, San Francisco,CA,94016 +144897,AAA Batteries (4-pack),1,2.99,2019-01-12 03:01:00,765 13th St, Atlanta,GA,30301 +144898,27in 4K Gaming Monitor,1,389.99,2019-01-18 08:36:00,82 Church St, Boston,MA,02215 +144899,Wired Headphones,1,11.99,2019-01-11 17:54:00,370 Lincoln St, Dallas,TX,75001 +144900,AA Batteries (4-pack),1,3.84,2019-01-03 05:12:00,287 Maple St, New York City,NY,10001 +144900,27in 4K Gaming Monitor,1,389.99,2019-01-03 05:12:00,287 Maple St, New York City,NY,10001 +144901,Flatscreen TV,1,300.0,2019-01-20 21:22:00,531 Lincoln St, San Francisco,CA,94016 +144902,27in 4K Gaming Monitor,1,389.99,2019-01-01 10:23:00,169 Ridge St, Seattle,WA,98101 +144903,AAA Batteries (4-pack),2,2.99,2019-01-17 08:29:00,366 13th St, New York City,NY,10001 +144904,Apple Airpods Headphones,1,150.0,2019-01-30 23:58:00,859 11th St, Seattle,WA,98101 +144905,Google Phone,1,600.0,2019-01-20 23:43:00,363 Walnut St, San Francisco,CA,94016 +144906,Apple Airpods Headphones,1,150.0,2019-01-31 11:44:00,512 Ridge St, Dallas,TX,75001 +144907,USB-C Charging Cable,2,11.95,2019-01-15 13:10:00,675 6th St, Atlanta,GA,30301 +144908,Lightning Charging Cable,1,14.95,2019-01-17 15:25:00,17 West St, New York City,NY,10001 +144909,USB-C Charging Cable,1,11.95,2019-01-06 10:32:00,442 2nd St, Los Angeles,CA,90001 +144910,AAA Batteries (4-pack),2,2.99,2019-01-12 19:28:00,580 14th St, New York City,NY,10001 +144911,USB-C Charging Cable,1,11.95,2019-01-29 19:41:00,767 Washington St, San Francisco,CA,94016 +144912,27in 4K Gaming Monitor,1,389.99,2019-01-11 23:28:00,959 Walnut St, New York City,NY,10001 +144913,Google Phone,1,600.0,2019-01-13 20:14:00,3 Adams St, San Francisco,CA,94016 +144914,AAA Batteries (4-pack),5,2.99,2019-01-31 15:03:00,791 Ridge St, San Francisco,CA,94016 +144915,Lightning Charging Cable,1,14.95,2019-01-29 20:22:00,547 Wilson St, Boston,MA,02215 +144916,USB-C Charging Cable,2,11.95,2019-01-11 20:37:00,369 Ridge St, Atlanta,GA,30301 +144917,Wired Headphones,1,11.99,2019-01-11 15:14:00,74 Chestnut St, Atlanta,GA,30301 +144918,USB-C Charging Cable,1,11.95,2019-01-17 01:25:00,64 Elm St, San Francisco,CA,94016 +144919,Bose SoundSport Headphones,1,99.99,2019-01-12 21:02:00,128 Hickory St, Atlanta,GA,30301 +144920,27in FHD Monitor,1,149.99,2019-01-04 19:53:00,344 Pine St, Los Angeles,CA,90001 +144921,Lightning Charging Cable,1,14.95,2019-01-28 11:53:00,961 7th St, Seattle,WA,98101 +144922,AA Batteries (4-pack),1,3.84,2019-01-16 21:14:00,348 Highland St, Seattle,WA,98101 +144923,Wired Headphones,1,11.99,2019-01-10 21:38:00,20 Johnson St, Dallas,TX,75001 +144924,Apple Airpods Headphones,1,150.0,2019-01-19 21:05:00,942 Sunset St, San Francisco,CA,94016 +144925,Bose SoundSport Headphones,1,99.99,2019-01-27 15:14:00,52 Sunset St, Boston,MA,02215 +144926,AAA Batteries (4-pack),1,2.99,2019-01-28 10:16:00,49 Hickory St, Los Angeles,CA,90001 +144927,Lightning Charging Cable,1,14.95,2019-01-15 10:06:00,651 Maple St, San Francisco,CA,94016 +144928,USB-C Charging Cable,1,11.95,2019-01-28 19:05:00,817 Jefferson St, New York City,NY,10001 +144929,Bose SoundSport Headphones,1,99.99,2019-01-17 13:51:00,221 Hickory St, Seattle,WA,98101 +144930,iPhone,1,700.0,2019-01-06 14:46:00,176 Walnut St, San Francisco,CA,94016 +144930,Wired Headphones,2,11.99,2019-01-06 14:46:00,176 Walnut St, San Francisco,CA,94016 +144931,27in FHD Monitor,1,149.99,2019-01-24 19:51:00,568 12th St, Los Angeles,CA,90001 +144932,AA Batteries (4-pack),3,3.84,2019-01-20 20:49:00,863 River St, New York City,NY,10001 +144933,Vareebadd Phone,1,400.0,2019-01-15 09:44:00,275 1st St, San Francisco,CA,94016 +144934,USB-C Charging Cable,1,11.95,2019-01-06 00:48:00,540 Elm St, Los Angeles,CA,90001 +144935,34in Ultrawide Monitor,1,379.99,2019-01-25 22:27:00,217 Adams St, San Francisco,CA,94016 +144936,Lightning Charging Cable,2,14.95,2019-01-12 12:39:00,347 Lakeview St, Boston,MA,02215 +144937,Lightning Charging Cable,1,14.95,2019-01-28 05:09:00,272 Lincoln St, San Francisco,CA,94016 +144938,Wired Headphones,1,11.99,2019-01-16 17:46:00,905 Jefferson St, San Francisco,CA,94016 +144939,AAA Batteries (4-pack),1,2.99,2019-01-28 17:00:00,274 Forest St, San Francisco,CA,94016 +144940,AA Batteries (4-pack),1,3.84,2019-01-19 07:10:00,652 Forest St, New York City,NY,10001 +144941,Flatscreen TV,1,300.0,2019-01-09 20:43:00,639 7th St, New York City,NY,10001 +144942,Vareebadd Phone,1,400.0,2019-01-24 15:52:00,225 River St, Boston,MA,02215 +144942,Bose SoundSport Headphones,1,99.99,2019-01-24 15:52:00,225 River St, Boston,MA,02215 +144943,Wired Headphones,1,11.99,2019-01-18 20:38:00,575 Washington St, Boston,MA,02215 +144944,Wired Headphones,1,11.99,2019-01-25 01:10:00,826 Elm St, San Francisco,CA,94016 +144945,Wired Headphones,1,11.99,2019-01-10 13:14:00,430 Hill St, San Francisco,CA,94016 +144946,ThinkPad Laptop,1,999.99,2019-01-25 12:17:00,335 Spruce St, San Francisco,CA,94016 +144947,AAA Batteries (4-pack),1,2.99,2019-01-12 12:57:00,165 Adams St, Los Angeles,CA,90001 +144948,AAA Batteries (4-pack),1,2.99,2019-01-27 08:07:00,45 Willow St, Los Angeles,CA,90001 +144949,USB-C Charging Cable,1,11.95,2019-01-30 19:27:00,620 Washington St, Los Angeles,CA,90001 +144950,AAA Batteries (4-pack),1,2.99,2019-01-15 17:16:00,854 Adams St, New York City,NY,10001 +144951,AA Batteries (4-pack),1,3.84,2019-01-11 16:16:00,476 South St, San Francisco,CA,94016 +144952,Bose SoundSport Headphones,1,99.99,2019-01-12 18:18:00,57 13th St, New York City,NY,10001 +144953,Apple Airpods Headphones,1,150.0,2019-01-17 17:39:00,403 Wilson St, Dallas,TX,75001 +144954,34in Ultrawide Monitor,1,379.99,2019-01-03 08:11:00,977 2nd St, San Francisco,CA,94016 +144955,iPhone,1,700.0,2019-01-23 21:17:00,570 Pine St, Los Angeles,CA,90001 +144956,Lightning Charging Cable,1,14.95,2019-01-04 23:13:00,20 Walnut St, Portland,OR,97035 +144957,LG Washing Machine,1,600.0,2019-01-04 22:50:00,144 Church St, San Francisco,CA,94016 +144958,Lightning Charging Cable,1,14.95,2019-01-13 06:43:00,857 Wilson St, Boston,MA,02215 +144959,27in FHD Monitor,1,149.99,2019-01-06 20:33:00,601 Sunset St, Boston,MA,02215 +144960,USB-C Charging Cable,1,11.95,2019-01-08 06:16:00,461 5th St, San Francisco,CA,94016 +144961,AAA Batteries (4-pack),2,2.99,2019-01-23 17:15:00,155 Lake St, Boston,MA,02215 +144962,AA Batteries (4-pack),1,3.84,2019-01-31 10:51:00,540 14th St, San Francisco,CA,94016 +144963,Apple Airpods Headphones,1,150.0,2019-01-17 17:18:00,294 Lincoln St, San Francisco,CA,94016 +144964,AA Batteries (4-pack),1,3.84,2019-01-02 22:25:00,563 Church St, Seattle,WA,98101 +144965,AAA Batteries (4-pack),1,2.99,2019-01-12 11:00:00,840 Lake St, New York City,NY,10001 +144966,Bose SoundSport Headphones,1,99.99,2019-01-06 08:35:00,681 Center St, Portland,OR,97035 +144967,Macbook Pro Laptop,1,1700.0,2019-01-08 21:10:00,353 12th St, Portland,OR,97035 +144968,Apple Airpods Headphones,1,150.0,2019-01-11 21:51:00,523 Hill St, New York City,NY,10001 +144969,Wired Headphones,1,11.99,2019-01-31 23:24:00,432 Church St, Portland,OR,97035 +144970,Bose SoundSport Headphones,1,99.99,2019-01-22 09:31:00,478 12th St, Atlanta,GA,30301 +144971,27in FHD Monitor,1,149.99,2019-01-02 20:15:00,411 7th St, Seattle,WA,98101 +144972,USB-C Charging Cable,1,11.95,2019-01-05 19:28:00,233 Chestnut St, Los Angeles,CA,90001 +144973,Wired Headphones,2,11.99,2019-01-03 23:19:00,205 Cedar St, Boston,MA,02215 +144974,Bose SoundSport Headphones,1,99.99,2019-01-17 20:11:00,635 Jackson St, Seattle,WA,98101 +144975,AAA Batteries (4-pack),1,2.99,2019-01-06 12:33:00,87 Hickory St, Austin,TX,73301 +144976,AAA Batteries (4-pack),1,2.99,2019-01-08 15:20:00,444 Hill St, San Francisco,CA,94016 +144977,USB-C Charging Cable,1,11.95,2019-01-24 09:05:00,504 Wilson St, San Francisco,CA,94016 +144978,USB-C Charging Cable,1,11.95,2019-01-03 04:57:00,319 12th St, Portland,OR,97035 +144979,AAA Batteries (4-pack),1,2.99,2019-01-14 13:06:00,43 Maple St, Austin,TX,73301 +144980,Lightning Charging Cable,2,14.95,2019-01-25 10:17:00,533 Wilson St, Austin,TX,73301 +144981,Flatscreen TV,1,300.0,2019-01-02 14:20:00,415 Main St, Los Angeles,CA,90001 +144982,Apple Airpods Headphones,1,150.0,2019-01-11 08:52:00,645 Pine St, Portland,OR,97035 +144983,Wired Headphones,1,11.99,2019-01-15 00:53:00,38 2nd St, Los Angeles,CA,90001 +144984,USB-C Charging Cable,1,11.95,2019-01-28 12:52:00,421 Willow St, San Francisco,CA,94016 +144985,Apple Airpods Headphones,1,150.0,2019-01-27 18:45:00,450 Ridge St, San Francisco,CA,94016 +144986,Apple Airpods Headphones,1,150.0,2019-01-28 14:17:00,956 Meadow St, Boston,MA,02215 +144987,AA Batteries (4-pack),1,3.84,2019-01-07 14:52:00,472 Jefferson St, Boston,MA,02215 +144988,Wired Headphones,1,11.99,2019-01-14 19:13:00,469 West St, Boston,MA,02215 +144989,AAA Batteries (4-pack),1,2.99,2019-01-31 23:29:00,32 9th St, New York City,NY,10001 +144990,34in Ultrawide Monitor,1,379.99,2019-01-18 16:50:00,782 Forest St, Los Angeles,CA,90001 +144991,AAA Batteries (4-pack),2,2.99,2019-01-28 05:46:00,386 Center St, Dallas,TX,75001 +144992,USB-C Charging Cable,1,11.95,2019-01-21 19:37:00,584 1st St, San Francisco,CA,94016 +144993,AAA Batteries (4-pack),1,2.99,2019-01-20 14:31:00,470 Wilson St, Seattle,WA,98101 +144994,ThinkPad Laptop,1,999.99,2019-01-01 08:13:00,903 Willow St, Los Angeles,CA,90001 +144995,34in Ultrawide Monitor,1,379.99,2019-01-12 15:32:00,314 Lincoln St, Atlanta,GA,30301 +144996,Wired Headphones,1,11.99,2019-01-05 20:44:00,222 13th St, Los Angeles,CA,90001 +144997,Wired Headphones,1,11.99,2019-01-13 12:32:00,595 Pine St, San Francisco,CA,94016 +144998,ThinkPad Laptop,1,999.99,2019-01-30 13:20:00,527 Jackson St, Boston,MA,02215 +144999,Google Phone,1,600.0,2019-01-18 19:11:00,492 Ridge St, San Francisco,CA,94016 +145000,AA Batteries (4-pack),2,3.84,2019-01-22 14:53:00,855 Highland St, San Francisco,CA,94016 +145001,AAA Batteries (4-pack),1,2.99,2019-01-22 10:46:00,871 Lakeview St, Atlanta,GA,30301 +145002,Lightning Charging Cable,1,14.95,2019-01-11 18:28:00,214 Lincoln St, San Francisco,CA,94016 +145003,USB-C Charging Cable,1,11.95,2019-01-29 23:44:00,814 Hickory St, Boston,MA,02215 +145004,Bose SoundSport Headphones,1,99.99,2019-01-07 13:06:00,309 Willow St, Dallas,TX,75001 +145005,USB-C Charging Cable,2,11.95,2019-01-12 02:52:00,890 Center St, San Francisco,CA,94016 +145006,AA Batteries (4-pack),1,3.84,2019-01-03 07:38:00,607 Park St, San Francisco,CA,94016 +145007,AA Batteries (4-pack),1,3.84,2019-01-12 10:25:00,321 8th St, New York City,NY,10001 +145008,AAA Batteries (4-pack),1,2.99,2019-01-31 06:57:00,126 Park St, New York City,NY,10001 +145009,AA Batteries (4-pack),1,3.84,2019-01-21 20:49:00,354 13th St, Boston,MA,02215 +145010,Wired Headphones,1,11.99,2019-01-11 13:44:00,697 4th St, New York City,NY,10001 +145011,Bose SoundSport Headphones,1,99.99,2019-01-22 10:06:00,122 4th St, Boston,MA,02215 +145012,Macbook Pro Laptop,1,1700.0,2019-01-25 23:42:00,204 River St, Boston,MA,02215 +145013,Apple Airpods Headphones,1,150.0,2019-01-12 19:15:00,32 6th St, Austin,TX,73301 +145014,AAA Batteries (4-pack),2,2.99,2019-01-01 13:18:00,131 7th St, Atlanta,GA,30301 +145015,USB-C Charging Cable,1,11.95,2019-01-14 13:10:00,678 Wilson St, Dallas,TX,75001 +145016,iPhone,1,700.0,2019-01-03 16:10:00,789 Lincoln St, Los Angeles,CA,90001 +145017,Google Phone,1,600.0,2019-01-18 06:02:00,299 Lake St, New York City,NY,10001 +145018,AAA Batteries (4-pack),1,2.99,2019-01-13 17:10:00,676 South St, New York City,NY,10001 +145019,Google Phone,1,600.0,2019-01-21 09:08:00,985 10th St, San Francisco,CA,94016 +145019,USB-C Charging Cable,1,11.95,2019-01-21 09:08:00,985 10th St, San Francisco,CA,94016 +145019,Wired Headphones,1,11.99,2019-01-21 09:08:00,985 10th St, San Francisco,CA,94016 +145020,AA Batteries (4-pack),3,3.84,2019-01-26 22:02:00,418 11th St, Austin,TX,73301 +145021,27in FHD Monitor,1,149.99,2019-01-26 14:56:00,791 Lincoln St, New York City,NY,10001 +145022,ThinkPad Laptop,1,999.99,2019-01-01 21:11:00,464 Lincoln St, Seattle,WA,98101 +145023,Google Phone,1,600.0,2019-01-28 15:38:00,181 Adams St, Portland,OR,97035 +145024,Wired Headphones,1,11.99,2019-01-28 17:10:00,496 Sunset St, Atlanta,GA,30301 +145025,AAA Batteries (4-pack),1,2.99,2019-01-19 16:35:00,842 South St, Seattle,WA,98101 +145026,20in Monitor,1,109.99,2019-01-26 06:44:00,464 13th St, New York City,NY,10001 +145026,Wired Headphones,1,11.99,2019-01-26 06:44:00,464 13th St, New York City,NY,10001 +145027,Wired Headphones,1,11.99,2019-01-15 22:00:00,919 Elm St, New York City,NY,10001 +145028,Apple Airpods Headphones,1,150.0,2019-01-17 23:09:00,530 Church St, New York City,NY,10001 +145029,20in Monitor,1,109.99,2019-01-09 15:51:00,108 Spruce St, Seattle,WA,98101 +145030,Wired Headphones,2,11.99,2019-01-02 18:24:00,151 Cherry St, New York City,NY,10001 +145031,Flatscreen TV,1,300.0,2019-01-02 09:40:00,156 5th St, Los Angeles,CA,90001 +145032,USB-C Charging Cable,1,11.95,2019-01-22 15:38:00,515 Lincoln St, New York City,NY,10001 +145033,USB-C Charging Cable,1,11.95,2019-01-02 22:12:00,599 Adams St, Los Angeles,CA,90001 +145034,27in FHD Monitor,1,149.99,2019-01-29 10:30:00,42 River St, Atlanta,GA,30301 +145035,Apple Airpods Headphones,1,150.0,2019-01-17 12:00:00,362 6th St, Los Angeles,CA,90001 +145036,AAA Batteries (4-pack),3,2.99,2019-01-04 15:24:00,565 Cedar St, Boston,MA,02215 +145037,Macbook Pro Laptop,1,1700.0,2019-01-02 18:15:00,177 4th St, New York City,NY,10001 +145038,USB-C Charging Cable,1,11.95,2019-01-19 00:52:00,357 13th St, Boston,MA,02215 +145039,Google Phone,1,600.0,2019-01-02 20:33:00,86 Hill St, Seattle,WA,98101 +145040,27in FHD Monitor,1,149.99,2019-01-11 20:25:00,849 West St, Portland,OR,97035 +145041,iPhone,1,700.0,2019-01-13 20:05:00,250 West St, San Francisco,CA,94016 +145041,Lightning Charging Cable,1,14.95,2019-01-13 20:05:00,250 West St, San Francisco,CA,94016 +145042,Apple Airpods Headphones,1,150.0,2019-01-31 20:13:00,644 North St, Portland,OR,97035 +145043,Bose SoundSport Headphones,1,99.99,2019-01-03 09:49:00,66 Ridge St, Los Angeles,CA,90001 +145044,Lightning Charging Cable,1,14.95,2019-01-03 18:59:00,71 Wilson St, San Francisco,CA,94016 +145045,Wired Headphones,1,11.99,2019-01-05 15:06:00,645 Center St, New York City,NY,10001 +145046,Lightning Charging Cable,1,14.95,2019-01-14 10:02:00,609 Johnson St, Austin,TX,73301 +145047,Lightning Charging Cable,1,14.95,2019-01-02 19:49:00,823 Ridge St, Austin,TX,73301 +145048,Flatscreen TV,1,300.0,2019-01-15 02:40:00,584 14th St, Portland,OR,97035 +145049,AA Batteries (4-pack),2,3.84,2019-01-10 15:53:00,95 9th St, New York City,NY,10001 +145050,Bose SoundSport Headphones,1,99.99,2019-01-28 18:59:00,602 Lake St, Atlanta,GA,30301 +145051,27in FHD Monitor,1,149.99,2019-01-23 14:36:00,68 Wilson St, Dallas,TX,75001 +145052,USB-C Charging Cable,1,11.95,2019-01-14 21:19:00,4 Elm St, Dallas,TX,75001 +145053,Bose SoundSport Headphones,1,99.99,2019-01-05 19:17:00,961 Lakeview St, San Francisco,CA,94016 +145054,AAA Batteries (4-pack),2,2.99,2019-01-12 15:29:00,59 Lincoln St, San Francisco,CA,94016 +145055,Wired Headphones,1,11.99,2019-01-07 13:42:00,507 5th St, Seattle,WA,98101 +145056,27in 4K Gaming Monitor,1,389.99,2019-01-31 16:55:00,308 Madison St, Austin,TX,73301 +145057,Bose SoundSport Headphones,1,99.99,2019-01-17 00:07:00,789 Walnut St, San Francisco,CA,94016 +145058,Wired Headphones,2,11.99,2019-01-30 22:08:00,33 Johnson St, Austin,TX,73301 +145059,iPhone,1,700.0,2019-01-24 18:44:00,63 Chestnut St, San Francisco,CA,94016 +145059,Lightning Charging Cable,1,14.95,2019-01-24 18:44:00,63 Chestnut St, San Francisco,CA,94016 +145059,Wired Headphones,1,11.99,2019-01-24 18:44:00,63 Chestnut St, San Francisco,CA,94016 +145060,Bose SoundSport Headphones,1,99.99,2019-01-30 22:44:00,145 North St, Los Angeles,CA,90001 +145061,Wired Headphones,2,11.99,2019-01-09 20:18:00,213 9th St, Boston,MA,02215 +145062,AA Batteries (4-pack),2,3.84,2019-01-30 13:48:00,787 Pine St, San Francisco,CA,94016 +145063,AA Batteries (4-pack),2,3.84,2019-01-19 14:24:00,348 Lincoln St, San Francisco,CA,94016 +145064,Lightning Charging Cable,1,14.95,2019-01-07 07:18:00,648 11th St, Seattle,WA,98101 +145065,Lightning Charging Cable,1,14.95,2019-01-14 21:26:00,160 Dogwood St, San Francisco,CA,94016 +145066,Bose SoundSport Headphones,1,99.99,2019-01-25 20:13:00,86 Main St, Dallas,TX,75001 +145067,Macbook Pro Laptop,1,1700.0,2019-01-29 21:04:00,863 Meadow St, Dallas,TX,75001 +145068,27in FHD Monitor,1,149.99,2019-01-13 03:05:00,723 8th St, San Francisco,CA,94016 +145069,20in Monitor,1,109.99,2019-01-04 22:46:00,720 River St, Boston,MA,02215 +145070,USB-C Charging Cable,1,11.95,2019-01-10 23:09:00,562 Park St, New York City,NY,10001 +145071,USB-C Charging Cable,1,11.95,2019-01-08 23:50:00,962 14th St, Seattle,WA,98101 +145071,AA Batteries (4-pack),1,3.84,2019-01-08 23:50:00,962 14th St, Seattle,WA,98101 +145072,AAA Batteries (4-pack),1,2.99,2019-01-30 22:55:00,801 South St, Dallas,TX,75001 +145073,Apple Airpods Headphones,1,150.0,2019-01-09 19:35:00,37 Elm St, San Francisco,CA,94016 +145074,USB-C Charging Cable,1,11.95,2019-01-17 19:24:00,829 Hickory St, San Francisco,CA,94016 +145075,iPhone,1,700.0,2019-01-28 05:52:00,65 4th St, Seattle,WA,98101 +145076,USB-C Charging Cable,1,11.95,2019-01-26 23:26:00,715 Washington St, Dallas,TX,75001 +145077,Wired Headphones,1,11.99,2019-01-12 23:03:00,896 Church St, Boston,MA,02215 +145078,AA Batteries (4-pack),2,3.84,2019-01-14 06:29:00,579 Highland St, Austin,TX,73301 +145079,AA Batteries (4-pack),2,3.84,2019-01-17 19:28:00,648 Washington St, Dallas,TX,75001 +145080,AA Batteries (4-pack),1,3.84,2019-01-28 11:39:00,345 9th St, New York City,NY,10001 +145081,AA Batteries (4-pack),1,3.84,2019-01-21 20:30:00,514 7th St, Los Angeles,CA,90001 +145082,AAA Batteries (4-pack),3,2.99,2019-01-01 08:48:00,133 West St, San Francisco,CA,94016 +145083,34in Ultrawide Monitor,1,379.99,2019-01-02 21:50:00,410 Hill St, Portland,OR,97035 +145084,Bose SoundSport Headphones,1,99.99,2019-01-03 16:49:00,227 1st St, Atlanta,GA,30301 +145085,iPhone,1,700.0,2019-01-16 10:27:00,16 Johnson St, Atlanta,GA,30301 +145086,Macbook Pro Laptop,1,1700.0,2019-01-15 11:20:00,828 Wilson St, Portland,ME,04101 +145087,Wired Headphones,1,11.99,2019-01-02 11:33:00,463 Hill St, Atlanta,GA,30301 +145088,34in Ultrawide Monitor,1,379.99,2019-01-20 08:03:00,21 Ridge St, San Francisco,CA,94016 +145089,AA Batteries (4-pack),1,3.84,2019-01-15 17:06:00,468 Elm St, New York City,NY,10001 +145090,AAA Batteries (4-pack),2,2.99,2019-01-04 20:46:00,362 12th St, San Francisco,CA,94016 +145091,ThinkPad Laptop,1,999.99,2019-01-10 07:43:00,175 Lake St, San Francisco,CA,94016 +145092,Google Phone,1,600.0,2019-01-15 18:14:00,282 2nd St, New York City,NY,10001 +145093,Wired Headphones,1,11.99,2019-01-29 20:27:00,41 West St, Seattle,WA,98101 +145094,27in FHD Monitor,1,149.99,2019-01-30 16:59:00,307 Chestnut St, San Francisco,CA,94016 +145095,USB-C Charging Cable,1,11.95,2019-01-30 07:21:00,674 Park St, New York City,NY,10001 +145096,USB-C Charging Cable,1,11.95,2019-01-05 08:11:00,131 14th St, San Francisco,CA,94016 +145097,Lightning Charging Cable,1,14.95,2019-01-28 06:32:00,911 6th St, Dallas,TX,75001 +145098,34in Ultrawide Monitor,1,379.99,2019-01-10 19:47:00,774 Ridge St, Seattle,WA,98101 +145099,Apple Airpods Headphones,1,150.0,2019-01-11 21:15:00,52 Main St, San Francisco,CA,94016 +145100,USB-C Charging Cable,1,11.95,2019-01-04 01:52:00,141 1st St, Portland,OR,97035 +145101,Wired Headphones,1,11.99,2019-01-30 19:24:00,398 Center St, Dallas,TX,75001 +145102,Flatscreen TV,1,300.0,2019-01-29 14:55:00,546 Main St, Seattle,WA,98101 +145103,Google Phone,1,600.0,2019-01-02 12:59:00,906 6th St, Los Angeles,CA,90001 +145104,Macbook Pro Laptop,1,1700.0,2019-01-11 09:12:00,841 8th St, New York City,NY,10001 +145105,Wired Headphones,1,11.99,2019-01-30 10:52:00,251 Main St, Los Angeles,CA,90001 +145106,20in Monitor,1,109.99,2019-01-13 17:04:00,300 Jefferson St, Atlanta,GA,30301 +145107,AA Batteries (4-pack),1,3.84,2019-01-22 09:27:00,841 Chestnut St, Los Angeles,CA,90001 +145107,LG Dryer,1,600.0,2019-01-22 09:27:00,841 Chestnut St, Los Angeles,CA,90001 +145108,Wired Headphones,1,11.99,2019-01-29 21:22:00,12 Sunset St, Atlanta,GA,30301 +145109,27in FHD Monitor,1,149.99,2019-01-14 10:37:00,71 Chestnut St, Atlanta,GA,30301 +145110,Google Phone,1,600.0,2019-01-18 15:14:00,763 Dogwood St, San Francisco,CA,94016 +145111,ThinkPad Laptop,1,999.99,2019-01-22 11:54:00,330 West St, Atlanta,GA,30301 +145112,34in Ultrawide Monitor,1,379.99,2019-01-01 16:44:00,787 Wilson St, Atlanta,GA,30301 +145113,AA Batteries (4-pack),1,3.84,2019-01-02 12:52:00,235 12th St, Austin,TX,73301 +145114,USB-C Charging Cable,1,11.95,2019-01-22 15:36:00,131 14th St, San Francisco,CA,94016 +145115,Lightning Charging Cable,1,14.95,2019-01-22 18:51:00,429 Washington St, Atlanta,GA,30301 +145116,Lightning Charging Cable,1,14.95,2019-01-10 23:50:00,965 6th St, Los Angeles,CA,90001 +145117,27in FHD Monitor,1,149.99,2019-01-23 16:38:00,118 Pine St, San Francisco,CA,94016 +145118,USB-C Charging Cable,1,11.95,2019-01-06 22:39:00,291 Wilson St, New York City,NY,10001 +145118,Bose SoundSport Headphones,1,99.99,2019-01-06 22:39:00,291 Wilson St, New York City,NY,10001 +145119,USB-C Charging Cable,1,11.95,2019-01-24 16:06:00,172 Hill St, New York City,NY,10001 +145120,AAA Batteries (4-pack),1,2.99,2019-01-09 21:42:00,997 Adams St, Boston,MA,02215 +145121,USB-C Charging Cable,1,11.95,2019-01-25 01:10:00,812 5th St, New York City,NY,10001 +145122,ThinkPad Laptop,1,999.99,2019-01-01 16:26:00,501 Adams St, Los Angeles,CA,90001 +145123,34in Ultrawide Monitor,1,379.99,2019-01-03 20:16:00,706 Center St, Los Angeles,CA,90001 +145124,Vareebadd Phone,1,400.0,2019-01-04 09:15:00,560 Johnson St, Los Angeles,CA,90001 +145125,Google Phone,1,600.0,2019-01-19 17:59:00,763 Lincoln St, Los Angeles,CA,90001 +145125,USB-C Charging Cable,1,11.95,2019-01-19 17:59:00,763 Lincoln St, Los Angeles,CA,90001 +145126,LG Washing Machine,1,600.0,2019-01-03 00:06:00,946 Walnut St, San Francisco,CA,94016 +145127,Wired Headphones,1,11.99,2019-01-15 18:59:00,824 Sunset St, Atlanta,GA,30301 +145128,AA Batteries (4-pack),1,3.84,2019-01-27 11:58:00,85 Jefferson St, Los Angeles,CA,90001 +145129,27in 4K Gaming Monitor,1,389.99,2019-01-05 18:28:00,91 Hickory St, Dallas,TX,75001 +145130,34in Ultrawide Monitor,1,379.99,2019-01-09 15:42:00,69 Hickory St, San Francisco,CA,94016 +145131,Lightning Charging Cable,1,14.95,2019-01-30 18:39:00,413 Adams St, Boston,MA,02215 +145132,34in Ultrawide Monitor,1,379.99,2019-01-10 15:10:00,396 North St, San Francisco,CA,94016 +145133,AAA Batteries (4-pack),1,2.99,2019-01-21 09:19:00,541 6th St, Boston,MA,02215 +145134,27in FHD Monitor,1,149.99,2019-01-17 14:41:00,725 Jackson St, Los Angeles,CA,90001 +145135,Bose SoundSport Headphones,1,99.99,2019-01-31 23:06:00,542 Adams St, Seattle,WA,98101 +145136,AAA Batteries (4-pack),3,2.99,2019-01-15 12:59:00,728 Johnson St, New York City,NY,10001 +145137,AAA Batteries (4-pack),1,2.99,2019-01-31 19:39:00,463 West St, Portland,OR,97035 +145138,Wired Headphones,1,11.99,2019-01-08 19:36:00,933 Center St, New York City,NY,10001 +145139,USB-C Charging Cable,1,11.95,2019-01-14 15:34:00,979 12th St, Austin,TX,73301 +145140,Vareebadd Phone,1,400.0,2019-01-08 12:53:00,974 5th St, Portland,OR,97035 +145141,Apple Airpods Headphones,1,150.0,2019-01-10 21:53:00,275 Pine St, Boston,MA,02215 +145141,AAA Batteries (4-pack),1,2.99,2019-01-10 21:53:00,275 Pine St, Boston,MA,02215 +145142,Bose SoundSport Headphones,1,99.99,2019-01-10 14:14:00,270 Lake St, Atlanta,GA,30301 +145143,Lightning Charging Cable,1,14.95,2019-01-06 03:01:00,182 Jefferson St, San Francisco,CA,94016 +145144,AAA Batteries (4-pack),2,2.99,2019-01-22 23:18:00,904 Lake St, Los Angeles,CA,90001 +145145,Google Phone,1,600.0,2019-01-10 22:33:00,771 9th St, San Francisco,CA,94016 +145145,Wired Headphones,1,11.99,2019-01-10 22:33:00,771 9th St, San Francisco,CA,94016 +145146,iPhone,1,700.0,2019-01-09 20:56:00,411 Wilson St, San Francisco,CA,94016 +145147,Lightning Charging Cable,1,14.95,2019-01-28 19:26:00,567 12th St, San Francisco,CA,94016 +145148,34in Ultrawide Monitor,1,379.99,2019-01-05 20:33:00,253 Madison St, Los Angeles,CA,90001 +145149,Lightning Charging Cable,1,14.95,2019-01-06 11:06:00,676 Washington St, Boston,MA,02215 +145150,USB-C Charging Cable,1,11.95,2019-01-03 11:42:00,376 River St, Los Angeles,CA,90001 +145151,AA Batteries (4-pack),1,3.84,2019-01-21 16:41:00,499 Jefferson St, Los Angeles,CA,90001 +145152,27in FHD Monitor,1,149.99,2019-01-09 21:03:00,781 Lake St, San Francisco,CA,94016 +145153,Wired Headphones,1,11.99,2019-01-03 15:57:00,241 Lakeview St, Los Angeles,CA,90001 +145154,AA Batteries (4-pack),2,3.84,2019-01-26 19:46:00,881 Church St, San Francisco,CA,94016 +145155,Lightning Charging Cable,3,14.95,2019-01-09 11:22:00,321 Lake St, San Francisco,CA,94016 +145156,AAA Batteries (4-pack),1,2.99,2019-01-28 11:55:00,341 9th St, San Francisco,CA,94016 +145157,Apple Airpods Headphones,1,150.0,2019-01-19 21:13:00,912 Elm St, Los Angeles,CA,90001 +145158,LG Washing Machine,1,600.0,2019-01-03 21:05:00,317 Highland St, Seattle,WA,98101 +145159,USB-C Charging Cable,1,11.95,2019-01-11 08:56:00,487 Maple St, Los Angeles,CA,90001 +145160,USB-C Charging Cable,1,11.95,2019-01-28 18:24:00,859 11th St, Atlanta,GA,30301 +145161,Bose SoundSport Headphones,1,99.99,2019-01-13 12:32:00,327 4th St, Dallas,TX,75001 +145162,AA Batteries (4-pack),2,3.84,2019-01-30 15:55:00,861 Hickory St, San Francisco,CA,94016 +145163,iPhone,1,700.0,2019-01-04 10:00:00,37 8th St, San Francisco,CA,94016 +145164,Lightning Charging Cable,1,14.95,2019-01-09 19:23:00,309 Lakeview St, San Francisco,CA,94016 +145165,27in FHD Monitor,1,149.99,2019-01-01 09:58:00,237 4th St, Boston,MA,02215 +145166,Vareebadd Phone,1,400.0,2019-01-17 11:04:00,177 Spruce St, San Francisco,CA,94016 +145166,AAA Batteries (4-pack),1,2.99,2019-01-17 11:04:00,177 Spruce St, San Francisco,CA,94016 +145167,20in Monitor,1,109.99,2019-01-15 12:04:00,192 South St, Portland,ME,04101 +145168,Lightning Charging Cable,1,14.95,2019-01-09 05:48:00,525 Willow St, New York City,NY,10001 +145169,iPhone,1,700.0,2019-01-07 22:22:00,425 Main St, San Francisco,CA,94016 +145169,Lightning Charging Cable,2,14.95,2019-01-07 22:22:00,425 Main St, San Francisco,CA,94016 +145170,Google Phone,1,600.0,2019-01-21 13:50:00,18 Pine St, New York City,NY,10001 +145171,Apple Airpods Headphones,1,150.0,2019-01-24 00:14:00,877 Jefferson St, Los Angeles,CA,90001 +145172,AAA Batteries (4-pack),1,2.99,2019-01-24 10:28:00,834 Cherry St, New York City,NY,10001 +145173,Google Phone,1,600.0,2019-01-21 08:28:00,726 West St, Portland,ME,04101 +145174,AA Batteries (4-pack),1,3.84,2019-01-16 23:28:00,697 Sunset St, San Francisco,CA,94016 +145175,Bose SoundSport Headphones,1,99.99,2019-01-07 11:16:00,266 7th St, Boston,MA,02215 +145176,iPhone,1,700.0,2019-01-30 11:03:00,331 Hickory St, Boston,MA,02215 +145177,Lightning Charging Cable,1,14.95,2019-01-25 14:04:00,718 Pine St, Dallas,TX,75001 +145178,27in 4K Gaming Monitor,1,389.99,2019-01-19 15:55:00,103 Lake St, Los Angeles,CA,90001 +145179,AAA Batteries (4-pack),1,2.99,2019-01-13 00:12:00,439 Johnson St, San Francisco,CA,94016 +145180,Apple Airpods Headphones,1,150.0,2019-01-02 23:04:00,58 14th St, San Francisco,CA,94016 +145181,USB-C Charging Cable,2,11.95,2019-01-21 20:11:00,761 Pine St, Seattle,WA,98101 +145182,Bose SoundSport Headphones,1,99.99,2019-01-02 10:06:00,217 Madison St, Dallas,TX,75001 +145183,AA Batteries (4-pack),2,3.84,2019-01-03 19:59:00,168 Elm St, Austin,TX,73301 +145184,Apple Airpods Headphones,1,150.0,2019-01-18 09:38:00,527 Park St, Dallas,TX,75001 +145185,Wired Headphones,1,11.99,2019-01-13 15:35:00,950 Forest St, San Francisco,CA,94016 +145186,AA Batteries (4-pack),1,3.84,2019-01-25 23:38:00,644 Chestnut St, Austin,TX,73301 +145187,27in FHD Monitor,1,149.99,2019-01-26 16:43:00,532 Willow St, San Francisco,CA,94016 +145188,iPhone,1,700.0,2019-01-30 17:42:00,438 Cherry St, New York City,NY,10001 +145189,USB-C Charging Cable,1,11.95,2019-01-01 21:34:00,199 13th St, Atlanta,GA,30301 +145190,Google Phone,1,600.0,2019-01-12 08:31:00,250 Washington St, Austin,TX,73301 +145191,AAA Batteries (4-pack),3,2.99,2019-01-28 14:35:00,113 Dogwood St, San Francisco,CA,94016 +145192,Wired Headphones,1,11.99,2019-01-24 12:10:00,93 Pine St, New York City,NY,10001 +145193,AA Batteries (4-pack),1,3.84,2019-01-06 01:14:00,514 River St, Austin,TX,73301 +145194,Bose SoundSport Headphones,1,99.99,2019-01-08 18:50:00,785 Center St, San Francisco,CA,94016 +145195,LG Dryer,1,600.0,2019-01-18 12:23:00,177 Madison St, Boston,MA,02215 +145196,Wired Headphones,1,11.99,2019-01-28 02:22:00,19 Jackson St, Boston,MA,02215 +145197,Wired Headphones,1,11.99,2019-01-13 21:14:00,959 River St, Los Angeles,CA,90001 +145198,Lightning Charging Cable,1,14.95,2019-01-02 22:55:00,610 7th St, New York City,NY,10001 +145199,34in Ultrawide Monitor,1,379.99,2019-01-15 08:09:00,238 Spruce St, Portland,OR,97035 +145200,AAA Batteries (4-pack),1,2.99,2019-01-12 12:37:00,638 Cherry St, Los Angeles,CA,90001 +145201,Google Phone,1,600.0,2019-01-20 20:10:00,362 Meadow St, San Francisco,CA,94016 +145201,Wired Headphones,1,11.99,2019-01-20 20:10:00,362 Meadow St, San Francisco,CA,94016 +145202,Flatscreen TV,1,300.0,2019-01-21 16:30:00,935 Adams St, Dallas,TX,75001 +145203,AA Batteries (4-pack),3,3.84,2019-01-06 18:23:00,85 Meadow St, Boston,MA,02215 +145204,Bose SoundSport Headphones,1,99.99,2019-01-17 00:32:00,694 2nd St, Los Angeles,CA,90001 +145205,Vareebadd Phone,1,400.0,2019-01-18 09:32:00,171 Jackson St, New York City,NY,10001 +145206,Flatscreen TV,1,300.0,2019-01-31 13:43:00,49 9th St, New York City,NY,10001 +145207,Lightning Charging Cable,1,14.95,2019-01-18 22:44:00,482 Pine St, Seattle,WA,98101 +145208,USB-C Charging Cable,2,11.95,2019-01-22 11:36:00,816 Maple St, New York City,NY,10001 +145209,Macbook Pro Laptop,1,1700.0,2019-01-10 21:46:00,693 Washington St, Atlanta,GA,30301 +145210,AAA Batteries (4-pack),1,2.99,2019-01-06 13:12:00,235 7th St, San Francisco,CA,94016 +145211,AAA Batteries (4-pack),4,2.99,2019-01-16 09:13:00,761 West St, Boston,MA,02215 +145212,Lightning Charging Cable,1,14.95,2019-02-01 00:36:00,484 6th St, Dallas,TX,75001 +145213,27in FHD Monitor,1,149.99,2019-01-17 21:46:00,449 Chestnut St, Los Angeles,CA,90001 +145214,USB-C Charging Cable,1,11.95,2019-01-27 12:31:00,638 6th St, Boston,MA,02215 +145215,AAA Batteries (4-pack),3,2.99,2019-01-14 23:50:00,754 Willow St, Los Angeles,CA,90001 +145216,AA Batteries (4-pack),1,3.84,2019-01-30 12:45:00,368 9th St, New York City,NY,10001 +145217,34in Ultrawide Monitor,1,379.99,2019-01-07 09:17:00,19 Park St, Atlanta,GA,30301 +145218,AA Batteries (4-pack),2,3.84,2019-01-27 12:42:00,555 6th St, Los Angeles,CA,90001 +145219,ThinkPad Laptop,1,999.99,2019-01-17 12:22:00,342 Lake St, Atlanta,GA,30301 +145220,Apple Airpods Headphones,1,150.0,2019-01-18 19:29:00,103 Church St, San Francisco,CA,94016 +145221,Flatscreen TV,1,300.0,2019-01-16 13:57:00,982 1st St, Portland,OR,97035 +145221,Apple Airpods Headphones,1,150.0,2019-01-16 13:57:00,982 1st St, Portland,OR,97035 +145222,Bose SoundSport Headphones,1,99.99,2019-01-07 17:26:00,605 Jackson St, Seattle,WA,98101 +145223,AAA Batteries (4-pack),2,2.99,2019-01-27 09:33:00,901 Madison St, Seattle,WA,98101 +145224,27in 4K Gaming Monitor,1,389.99,2019-01-16 16:49:00,451 Spruce St, Dallas,TX,75001 +145225,20in Monitor,1,109.99,2019-01-28 22:56:00,707 6th St, Los Angeles,CA,90001 +145226,AAA Batteries (4-pack),1,2.99,2019-01-11 19:32:00,699 South St, San Francisco,CA,94016 +145227,ThinkPad Laptop,1,999.99,2019-01-17 12:54:00,405 13th St, Dallas,TX,75001 +145228,LG Dryer,1,600.0,2019-01-30 13:02:00,866 11th St, San Francisco,CA,94016 +145229,Apple Airpods Headphones,1,150.0,2019-01-18 21:58:00,389 Lake St, Boston,MA,02215 +145230,Wired Headphones,1,11.99,2019-01-24 12:15:00,655 Hill St, Los Angeles,CA,90001 +145231,Vareebadd Phone,1,400.0,2019-01-20 21:35:00,949 Forest St, Boston,MA,02215 +145232,Wired Headphones,1,11.99,2019-01-08 18:48:00,621 Hickory St, Boston,MA,02215 +145233,LG Washing Machine,1,600.0,2019-01-24 09:14:00,403 4th St, Los Angeles,CA,90001 +145234,Lightning Charging Cable,1,14.95,2019-01-03 02:00:00,728 12th St, San Francisco,CA,94016 +145235,LG Washing Machine,1,600.0,2019-01-09 13:59:00,341 13th St, New York City,NY,10001 +145236,27in FHD Monitor,1,149.99,2019-01-20 17:48:00,197 5th St, San Francisco,CA,94016 +145237,27in FHD Monitor,1,149.99,2019-01-10 12:48:00,970 Meadow St, Los Angeles,CA,90001 +145238,AAA Batteries (4-pack),1,2.99,2019-01-07 14:08:00,104 Madison St, Boston,MA,02215 +145239,Bose SoundSport Headphones,1,99.99,2019-01-01 21:56:00,985 10th St, Los Angeles,CA,90001 +145240,Apple Airpods Headphones,1,150.0,2019-01-31 12:32:00,951 Hill St, Austin,TX,73301 +145241,27in 4K Gaming Monitor,1,389.99,2019-01-09 22:49:00,860 Spruce St, San Francisco,CA,94016 +145242,Wired Headphones,1,11.99,2019-01-31 22:22:00,957 Cedar St, New York City,NY,10001 +145243,Wired Headphones,1,11.99,2019-01-26 18:50:00,330 Elm St, Los Angeles,CA,90001 +145244,Bose SoundSport Headphones,1,99.99,2019-01-05 23:27:00,77 Jefferson St, Atlanta,GA,30301 +145245,Wired Headphones,1,11.99,2019-01-23 21:57:00,308 Walnut St, New York City,NY,10001 +145246,Apple Airpods Headphones,1,150.0,2019-01-13 22:16:00,609 Center St, San Francisco,CA,94016 +145247,AAA Batteries (4-pack),1,2.99,2019-01-22 15:36:00,972 1st St, New York City,NY,10001 +145248,ThinkPad Laptop,1,999.99,2019-01-09 20:11:00,27 Sunset St, Atlanta,GA,30301 +145249,Apple Airpods Headphones,1,150.0,2019-01-16 19:48:00,566 Lake St, Portland,OR,97035 +145250,AAA Batteries (4-pack),1,2.99,2019-01-24 21:31:00,726 Lincoln St, Portland,ME,04101 +145251,Flatscreen TV,1,300.0,2019-01-24 00:21:00,794 Lake St, Boston,MA,02215 +145252,Apple Airpods Headphones,1,150.0,2019-01-05 16:44:00,692 13th St, Dallas,TX,75001 +145253,Lightning Charging Cable,1,14.95,2019-01-26 11:33:00,55 Madison St, Portland,OR,97035 +145254,AAA Batteries (4-pack),1,2.99,2019-01-06 18:12:00,909 5th St, New York City,NY,10001 +145255,Lightning Charging Cable,1,14.95,2019-01-04 06:13:00,469 Center St, Boston,MA,02215 +145256,iPhone,1,700.0,2019-01-02 13:21:00,907 11th St, Los Angeles,CA,90001 +145256,Lightning Charging Cable,1,14.95,2019-01-02 13:21:00,907 11th St, Los Angeles,CA,90001 +145257,Wired Headphones,1,11.99,2019-01-05 19:22:00,495 Forest St, San Francisco,CA,94016 +145258,AA Batteries (4-pack),1,3.84,2019-01-25 01:13:00,27 7th St, New York City,NY,10001 +145259,AA Batteries (4-pack),1,3.84,2019-01-18 10:09:00,692 Cedar St, Dallas,TX,75001 +145260,iPhone,1,700.0,2019-01-19 13:38:00,303 4th St, Seattle,WA,98101 +145261,AA Batteries (4-pack),1,3.84,2019-01-07 10:10:00,967 9th St, San Francisco,CA,94016 +145262,AAA Batteries (4-pack),1,2.99,2019-01-26 14:04:00,102 8th St, Portland,OR,97035 +145263,iPhone,1,700.0,2019-01-18 14:02:00,270 Madison St, Portland,OR,97035 +145264,USB-C Charging Cable,1,11.95,2019-01-13 15:29:00,593 Elm St, Boston,MA,02215 +145265,Lightning Charging Cable,1,14.95,2019-01-05 19:53:00,624 Willow St, San Francisco,CA,94016 +145266,Lightning Charging Cable,1,14.95,2019-01-09 05:58:00,839 Johnson St, San Francisco,CA,94016 +145267,AA Batteries (4-pack),1,3.84,2019-01-22 18:54:00,887 Lincoln St, Los Angeles,CA,90001 +145268,Google Phone,1,600.0,2019-01-07 10:22:00,329 River St, Boston,MA,02215 +145269,Bose SoundSport Headphones,1,99.99,2019-01-28 02:01:00,889 Cherry St, Los Angeles,CA,90001 +145270,Google Phone,1,600.0,2019-01-01 07:33:00,392 4th St, Dallas,TX,75001 +145271,34in Ultrawide Monitor,1,379.99,2019-01-23 21:00:00,391 10th St, Los Angeles,CA,90001 +145272,Macbook Pro Laptop,1,1700.0,2019-01-14 23:20:00,369 North St, Los Angeles,CA,90001 +145273,Wired Headphones,1,11.99,2019-01-18 22:36:00,381 9th St, Boston,MA,02215 +145274,Bose SoundSport Headphones,1,99.99,2019-01-06 17:48:00,599 12th St, San Francisco,CA,94016 +145275,Lightning Charging Cable,1,14.95,2019-01-13 12:13:00,805 Wilson St, New York City,NY,10001 +145276,27in FHD Monitor,1,149.99,2019-01-13 23:50:00,328 11th St, Boston,MA,02215 +145277,Bose SoundSport Headphones,1,99.99,2019-01-21 00:53:00,86 1st St, Boston,MA,02215 +145278,AAA Batteries (4-pack),4,2.99,2019-01-05 12:58:00,883 Adams St, San Francisco,CA,94016 +145279,Wired Headphones,1,11.99,2019-01-16 22:41:00,353 North St, Los Angeles,CA,90001 +145280,Lightning Charging Cable,1,14.95,2019-01-16 13:26:00,698 11th St, Seattle,WA,98101 +145281,USB-C Charging Cable,1,11.95,2019-01-08 18:10:00,700 7th St, New York City,NY,10001 +145282,Wired Headphones,1,11.99,2019-01-16 13:49:00,801 9th St, San Francisco,CA,94016 +145283,Flatscreen TV,1,300.0,2019-01-14 10:38:00,155 Walnut St, Los Angeles,CA,90001 +145284,20in Monitor,1,109.99,2019-01-05 07:37:00,567 Cedar St, San Francisco,CA,94016 +145285,USB-C Charging Cable,1,11.95,2019-01-22 14:11:00,192 4th St, Dallas,TX,75001 +145286,27in FHD Monitor,1,149.99,2019-01-21 18:48:00,587 Madison St, Los Angeles,CA,90001 +145287,AA Batteries (4-pack),1,3.84,2019-01-16 20:39:00,186 Lincoln St, New York City,NY,10001 +145288,Apple Airpods Headphones,1,150.0,2019-01-29 12:38:00,663 8th St, Seattle,WA,98101 +145289,USB-C Charging Cable,1,11.95,2019-01-28 18:43:00,479 5th St, Los Angeles,CA,90001 +145290,USB-C Charging Cable,1,11.95,2019-01-09 01:25:00,956 North St, San Francisco,CA,94016 +145291,AA Batteries (4-pack),1,3.84,2019-01-26 10:08:00,942 Dogwood St, Austin,TX,73301 +145292,Wired Headphones,1,11.99,2019-01-09 09:18:00,202 River St, Atlanta,GA,30301 +145293,USB-C Charging Cable,1,11.95,2019-01-08 18:13:00,618 Dogwood St, Los Angeles,CA,90001 +145294,AA Batteries (4-pack),1,3.84,2019-01-15 20:57:00,573 North St, Portland,OR,97035 +145295,Macbook Pro Laptop,1,1700.0,2019-01-04 14:08:00,291 West St, Atlanta,GA,30301 +145296,34in Ultrawide Monitor,1,379.99,2019-01-03 22:17:00,235 Spruce St, Los Angeles,CA,90001 +145297,AA Batteries (4-pack),1,3.84,2019-01-25 19:06:00,961 Meadow St, Atlanta,GA,30301 +145298,27in FHD Monitor,1,149.99,2019-01-29 21:42:00,193 Jackson St, New York City,NY,10001 +145299,Apple Airpods Headphones,1,150.0,2019-01-12 20:25:00,760 Sunset St, Los Angeles,CA,90001 +145300,Wired Headphones,1,11.99,2019-01-20 07:07:00,82 Walnut St, Seattle,WA,98101 +145300,AAA Batteries (4-pack),2,2.99,2019-01-20 07:07:00,82 Walnut St, Seattle,WA,98101 +145301,Wired Headphones,1,11.99,2019-01-27 18:19:00,360 12th St, Dallas,TX,75001 +145302,Bose SoundSport Headphones,1,99.99,2019-01-07 14:14:00,91 Madison St, New York City,NY,10001 +145303,USB-C Charging Cable,1,11.95,2019-01-24 08:50:00,110 Sunset St, San Francisco,CA,94016 +145304,Bose SoundSport Headphones,1,99.99,2019-01-18 10:08:00,271 Park St, Seattle,WA,98101 +145305,AAA Batteries (4-pack),3,2.99,2019-01-05 19:21:00,353 Elm St, Boston,MA,02215 +145306,Apple Airpods Headphones,1,150.0,2019-01-16 05:13:00,532 2nd St, New York City,NY,10001 +145307,ThinkPad Laptop,1,999.99,2019-01-12 10:38:00,311 2nd St, Boston,MA,02215 +145308,Apple Airpods Headphones,1,150.0,2019-01-19 21:44:00,984 14th St, San Francisco,CA,94016 +145309,USB-C Charging Cable,2,11.95,2019-01-03 01:02:00,965 1st St, Los Angeles,CA,90001 +145310,AAA Batteries (4-pack),1,2.99,2019-01-22 21:01:00,245 2nd St, Dallas,TX,75001 +145311,27in 4K Gaming Monitor,1,389.99,2019-01-13 10:17:00,420 Pine St, San Francisco,CA,94016 +145312,Bose SoundSport Headphones,1,99.99,2019-01-14 20:09:00,469 7th St, Los Angeles,CA,90001 +145313,20in Monitor,1,109.99,2019-01-26 08:50:00,681 1st St, Boston,MA,02215 +145314,Apple Airpods Headphones,1,150.0,2019-01-27 10:01:00,332 Pine St, San Francisco,CA,94016 +145315,AA Batteries (4-pack),1,3.84,2019-01-07 15:47:00,553 Jefferson St, Dallas,TX,75001 +145316,AAA Batteries (4-pack),2,2.99,2019-01-12 11:42:00,935 14th St, Boston,MA,02215 +145317,AAA Batteries (4-pack),1,2.99,2019-01-16 23:56:00,181 Washington St, Dallas,TX,75001 +145318,AAA Batteries (4-pack),3,2.99,2019-01-28 01:31:00,607 Lakeview St, New York City,NY,10001 +145319,Apple Airpods Headphones,1,150.0,2019-01-01 13:05:00,905 River St, San Francisco,CA,94016 +145320,USB-C Charging Cable,1,11.95,2019-01-28 17:36:00,940 Jefferson St, New York City,NY,10001 +145321,Apple Airpods Headphones,1,150.0,2019-01-30 14:42:00,596 Dogwood St, Los Angeles,CA,90001 +145322,Lightning Charging Cable,1,14.95,2019-01-05 13:27:00,242 11th St, New York City,NY,10001 +145323,AAA Batteries (4-pack),1,2.99,2019-01-20 19:17:00,493 Center St, Dallas,TX,75001 +145324,Vareebadd Phone,1,400.0,2019-01-08 12:22:00,455 Hill St, Austin,TX,73301 +145325,AA Batteries (4-pack),1,3.84,2019-01-02 06:41:00,466 North St, Atlanta,GA,30301 +145326,34in Ultrawide Monitor,1,379.99,2019-01-02 23:43:00,126 Park St, Los Angeles,CA,90001 +145327,27in FHD Monitor,1,149.99,2019-01-07 19:15:00,247 5th St, New York City,NY,10001 +145328,27in FHD Monitor,1,149.99,2019-01-06 17:49:00,861 Pine St, San Francisco,CA,94016 +145329,AA Batteries (4-pack),1,3.84,2019-01-17 11:35:00,410 Washington St, Dallas,TX,75001 +145330,Google Phone,1,600.0,2019-01-08 14:03:00,380 Center St, New York City,NY,10001 +145331,Lightning Charging Cable,1,14.95,2019-01-18 19:19:00,487 Meadow St, San Francisco,CA,94016 +145332,USB-C Charging Cable,1,11.95,2019-01-24 11:44:00,78 West St, San Francisco,CA,94016 +145333,Wired Headphones,1,11.99,2019-01-16 13:50:00,338 Hickory St, Dallas,TX,75001 +145334,Google Phone,1,600.0,2019-01-25 08:26:00,338 11th St, Atlanta,GA,30301 +145335,Macbook Pro Laptop,1,1700.0,2019-01-11 22:35:00,735 Forest St, New York City,NY,10001 +145336,Apple Airpods Headphones,1,150.0,2019-01-28 11:11:00,80 5th St, New York City,NY,10001 +145337,Apple Airpods Headphones,1,150.0,2019-01-20 14:24:00,824 Cherry St, New York City,NY,10001 +145338,ThinkPad Laptop,1,999.99,2019-01-17 16:56:00,356 10th St, Austin,TX,73301 +145339,iPhone,1,700.0,2019-01-28 09:06:00,210 12th St, Seattle,WA,98101 +145340,AA Batteries (4-pack),3,3.84,2019-01-02 17:19:00,114 Ridge St, San Francisco,CA,94016 +145341,iPhone,1,700.0,2019-01-09 12:45:00,729 10th St, Seattle,WA,98101 +145342,AA Batteries (4-pack),2,3.84,2019-01-23 10:32:00,269 13th St, Portland,OR,97035 +145343,ThinkPad Laptop,1,999.99,2019-01-02 09:40:00,643 Elm St, San Francisco,CA,94016 +145344,AAA Batteries (4-pack),3,2.99,2019-01-16 21:07:00,580 Church St, Atlanta,GA,30301 +145345,Bose SoundSport Headphones,1,99.99,2019-01-03 00:14:00,87 1st St, Seattle,WA,98101 +145346,AA Batteries (4-pack),4,3.84,2019-01-23 18:31:00,504 Pine St, Dallas,TX,75001 +145347,AA Batteries (4-pack),1,3.84,2019-01-06 15:35:00,577 Highland St, San Francisco,CA,94016 +145348,34in Ultrawide Monitor,1,379.99,2019-01-08 23:47:00,112 River St, Seattle,WA,98101 +145349,AA Batteries (4-pack),1,3.84,2019-01-23 17:52:00,828 Lakeview St, Los Angeles,CA,90001 +145350,27in FHD Monitor,1,149.99,2019-01-14 13:09:00,941 14th St, Atlanta,GA,30301 +145351,AAA Batteries (4-pack),2,2.99,2019-01-18 20:18:00,971 7th St, Seattle,WA,98101 +145352,Wired Headphones,1,11.99,2019-01-29 18:56:00,189 Center St, San Francisco,CA,94016 +145353,27in FHD Monitor,1,149.99,2019-01-10 00:15:00,896 5th St, San Francisco,CA,94016 +145354,USB-C Charging Cable,2,11.95,2019-01-06 14:56:00,150 12th St, Los Angeles,CA,90001 +145355,USB-C Charging Cable,1,11.95,2019-01-16 18:08:00,486 North St, San Francisco,CA,94016 +145356,Wired Headphones,1,11.99,2019-01-17 10:32:00,151 Center St, Austin,TX,73301 +145357,Wired Headphones,1,11.99,2019-01-14 13:10:00,688 Walnut St, Atlanta,GA,30301 +145358,AA Batteries (4-pack),1,3.84,2019-01-09 15:29:00,952 Chestnut St, Atlanta,GA,30301 +145359,Wired Headphones,1,11.99,2019-01-18 08:55:00,312 Highland St, Los Angeles,CA,90001 +145360,Wired Headphones,1,11.99,2019-01-20 12:00:00,256 6th St, Dallas,TX,75001 +145361,AA Batteries (4-pack),2,3.84,2019-01-03 12:37:00,999 Dogwood St, Boston,MA,02215 +145362,Lightning Charging Cable,1,14.95,2019-01-15 21:32:00,653 Dogwood St, New York City,NY,10001 +145363,Wired Headphones,1,11.99,2019-01-10 20:03:00,506 8th St, Los Angeles,CA,90001 +145364,AAA Batteries (4-pack),3,2.99,2019-01-22 09:18:00,984 North St, Los Angeles,CA,90001 +145364,Bose SoundSport Headphones,1,99.99,2019-01-22 09:18:00,984 North St, Los Angeles,CA,90001 +145365,Lightning Charging Cable,2,14.95,2019-01-24 18:21:00,219 Main St, Atlanta,GA,30301 +145366,27in 4K Gaming Monitor,1,389.99,2019-01-26 17:28:00,900 Lakeview St, Boston,MA,02215 +145367,Lightning Charging Cable,1,14.95,2019-01-26 10:27:00,277 Lincoln St, Los Angeles,CA,90001 +145368,27in FHD Monitor,1,149.99,2019-01-24 20:45:00,567 7th St, Seattle,WA,98101 +145369,AAA Batteries (4-pack),1,2.99,2019-01-02 16:55:00,70 7th St, Dallas,TX,75001 +145369,Flatscreen TV,1,300.0,2019-01-02 16:55:00,70 7th St, Dallas,TX,75001 +145370,AA Batteries (4-pack),1,3.84,2019-01-04 19:54:00,768 North St, San Francisco,CA,94016 +145371,AAA Batteries (4-pack),1,2.99,2019-01-03 16:39:00,196 11th St, Boston,MA,02215 +145372,AAA Batteries (4-pack),1,2.99,2019-02-01 04:02:00,459 West St, Dallas,TX,75001 +145373,Lightning Charging Cable,1,14.95,2019-01-23 16:18:00,40 Jackson St, New York City,NY,10001 +145374,AAA Batteries (4-pack),6,2.99,2019-01-23 02:25:00,275 Highland St, Los Angeles,CA,90001 +145375,34in Ultrawide Monitor,1,379.99,2019-01-15 18:05:00,934 Main St, Seattle,WA,98101 +145376,34in Ultrawide Monitor,1,379.99,2019-01-22 08:41:00,867 Jefferson St, Boston,MA,02215 +145377,AAA Batteries (4-pack),1,2.99,2019-01-30 16:53:00,362 6th St, Atlanta,GA,30301 +145378,USB-C Charging Cable,1,11.95,2019-01-23 19:08:00,802 River St, San Francisco,CA,94016 +145379,Lightning Charging Cable,1,14.95,2019-01-20 13:58:00,675 10th St, San Francisco,CA,94016 +145380,AAA Batteries (4-pack),1,2.99,2019-01-21 16:21:00,304 Hill St, Dallas,TX,75001 +145381,AAA Batteries (4-pack),1,2.99,2019-01-02 16:56:00,241 Lakeview St, Dallas,TX,75001 +145382,Lightning Charging Cable,1,14.95,2019-01-16 11:10:00,979 12th St, Atlanta,GA,30301 +145383,Macbook Pro Laptop,1,1700.0,2019-01-09 17:35:00,377 Willow St, Boston,MA,02215 +145384,Lightning Charging Cable,1,14.95,2019-01-04 02:16:00,593 Church St, Portland,ME,04101 +145385,USB-C Charging Cable,1,11.95,2019-01-02 23:27:00,975 13th St, San Francisco,CA,94016 +145386,34in Ultrawide Monitor,1,379.99,2019-01-02 16:29:00,441 Cedar St, Boston,MA,02215 +145387,Wired Headphones,1,11.99,2019-01-25 21:52:00,608 Dogwood St, Austin,TX,73301 +145388,Google Phone,1,600.0,2019-01-14 16:08:00,579 Sunset St, Boston,MA,02215 +145388,USB-C Charging Cable,1,11.95,2019-01-14 16:08:00,579 Sunset St, Boston,MA,02215 +145389,AA Batteries (4-pack),1,3.84,2019-01-12 13:03:00,916 Meadow St, San Francisco,CA,94016 +145390,Lightning Charging Cable,1,14.95,2019-01-13 11:21:00,552 4th St, Atlanta,GA,30301 +145391,Wired Headphones,1,11.99,2019-01-23 19:15:00,927 8th St, New York City,NY,10001 +145392,Wired Headphones,1,11.99,2019-01-26 17:33:00,147 Adams St, Boston,MA,02215 +145393,20in Monitor,1,109.99,2019-01-06 13:26:00,369 8th St, Boston,MA,02215 +145394,AA Batteries (4-pack),1,3.84,2019-01-21 17:45:00,994 South St, Los Angeles,CA,90001 +145395,AA Batteries (4-pack),1,3.84,2019-01-03 18:36:00,157 2nd St, Atlanta,GA,30301 +145396,AAA Batteries (4-pack),1,2.99,2019-01-25 11:39:00,171 South St, Atlanta,GA,30301 +145397,Google Phone,1,600.0,2019-01-22 15:29:00,374 Pine St, Boston,MA,02215 +145398,Vareebadd Phone,1,400.0,2019-01-04 14:15:00,537 Wilson St, New York City,NY,10001 +145399,27in FHD Monitor,1,149.99,2019-01-20 21:55:00,273 Main St, San Francisco,CA,94016 +145400,iPhone,1,700.0,2019-01-14 10:44:00,702 Spruce St, San Francisco,CA,94016 +145401,Bose SoundSport Headphones,1,99.99,2019-01-13 21:47:00,953 Sunset St, Los Angeles,CA,90001 +145402,Vareebadd Phone,1,400.0,2019-01-11 14:36:00,140 Hill St, Los Angeles,CA,90001 +145403,USB-C Charging Cable,1,11.95,2019-01-27 11:28:00,239 Madison St, San Francisco,CA,94016 +145404,USB-C Charging Cable,1,11.95,2019-01-30 23:39:00,54 Center St, Boston,MA,02215 +145405,Lightning Charging Cable,1,14.95,2019-01-21 08:21:00,262 14th St, Portland,OR,97035 +145406,Lightning Charging Cable,1,14.95,2019-01-08 10:14:00,298 Jefferson St, Dallas,TX,75001 +145407,USB-C Charging Cable,1,11.95,2019-01-15 19:32:00,961 Jefferson St, New York City,NY,10001 +145408,Lightning Charging Cable,1,14.95,2019-01-15 14:18:00,639 North St, San Francisco,CA,94016 +145409,Lightning Charging Cable,1,14.95,2019-01-12 16:36:00,940 Pine St, Atlanta,GA,30301 +145410,Lightning Charging Cable,1,14.95,2019-01-24 15:09:00,584 Meadow St, Los Angeles,CA,90001 +145411,USB-C Charging Cable,1,11.95,2019-01-24 17:51:00,188 Madison St, Dallas,TX,75001 +145412,Wired Headphones,1,11.99,2019-01-06 10:10:00,147 North St, San Francisco,CA,94016 +145413,AAA Batteries (4-pack),3,2.99,2019-01-23 13:31:00,996 Center St, Los Angeles,CA,90001 +145414,USB-C Charging Cable,1,11.95,2019-01-21 13:56:00,47 8th St, Boston,MA,02215 +145415,20in Monitor,1,109.99,2019-01-26 15:07:00,342 Willow St, Boston,MA,02215 +145416,Lightning Charging Cable,1,14.95,2019-01-01 16:59:00,385 Willow St, Atlanta,GA,30301 +145417,iPhone,1,700.0,2019-01-26 04:45:00,20 Ridge St, San Francisco,CA,94016 +145418,Wired Headphones,1,11.99,2019-01-18 10:24:00,41 4th St, San Francisco,CA,94016 +145419,Apple Airpods Headphones,1,150.0,2019-01-18 15:48:00,524 4th St, New York City,NY,10001 +145420,ThinkPad Laptop,1,999.99,2019-01-02 23:34:00,483 Hickory St, New York City,NY,10001 +145421,27in FHD Monitor,1,149.99,2019-01-14 20:09:00,472 Washington St, Portland,OR,97035 +145422,Apple Airpods Headphones,1,150.0,2019-01-02 14:02:00,390 Adams St, Atlanta,GA,30301 +145423,AA Batteries (4-pack),1,3.84,2019-01-08 14:47:00,239 5th St, Atlanta,GA,30301 +145424,Apple Airpods Headphones,1,150.0,2019-01-10 21:14:00,868 8th St, Boston,MA,02215 +145425,27in FHD Monitor,1,149.99,2019-01-31 12:16:00,92 Highland St, Austin,TX,73301 +145426,Bose SoundSport Headphones,1,99.99,2019-01-30 14:15:00,549 Highland St, Boston,MA,02215 +145427,USB-C Charging Cable,1,11.95,2019-01-19 12:12:00,78 9th St, Los Angeles,CA,90001 +145428,USB-C Charging Cable,1,11.95,2019-01-23 11:04:00,369 Adams St, Seattle,WA,98101 +145429,27in FHD Monitor,1,149.99,2019-01-11 09:52:00,463 Madison St, Atlanta,GA,30301 +145430,Vareebadd Phone,1,400.0,2019-01-16 21:40:00,282 Lincoln St, Dallas,TX,75001 +145431,27in FHD Monitor,1,149.99,2019-01-22 14:19:00,30 2nd St, Los Angeles,CA,90001 +145432,AA Batteries (4-pack),2,3.84,2019-01-06 17:28:00,291 Chestnut St, Los Angeles,CA,90001 +145433,Wired Headphones,1,11.99,2019-01-29 16:07:00,395 Sunset St, Seattle,WA,98101 +145434,Apple Airpods Headphones,1,150.0,2019-01-15 12:44:00,446 4th St, San Francisco,CA,94016 +145435,AA Batteries (4-pack),1,3.84,2019-01-18 20:57:00,35 Main St, San Francisco,CA,94016 +145436,Wired Headphones,1,11.99,2019-01-21 07:50:00,509 West St, San Francisco,CA,94016 +145437,LG Washing Machine,1,600.0,2019-01-29 09:50:00,717 6th St, San Francisco,CA,94016 +145438,27in 4K Gaming Monitor,1,389.99,2019-01-17 11:33:00,874 Sunset St, San Francisco,CA,94016 +145439,Google Phone,1,600.0,2019-01-12 11:06:00,179 Washington St, Seattle,WA,98101 +145440,AA Batteries (4-pack),1,3.84,2019-01-26 14:03:00,571 10th St, Boston,MA,02215 +145441,iPhone,1,700.0,2019-01-11 08:42:00,807 8th St, San Francisco,CA,94016 +145442,AAA Batteries (4-pack),1,2.99,2019-01-29 16:56:00,814 Hill St, San Francisco,CA,94016 +145443,Apple Airpods Headphones,1,150.0,2019-01-09 15:24:00,539 Spruce St, Seattle,WA,98101 +145444,Lightning Charging Cable,2,14.95,2019-01-25 11:06:00,379 Park St, San Francisco,CA,94016 +145445,Bose SoundSport Headphones,1,99.99,2019-01-26 23:08:00,109 Spruce St, Atlanta,GA,30301 +145445,20in Monitor,1,109.99,2019-01-26 23:08:00,109 Spruce St, Atlanta,GA,30301 +145446,Lightning Charging Cable,1,14.95,2019-01-08 20:49:00,427 Jefferson St, San Francisco,CA,94016 +145447,AA Batteries (4-pack),2,3.84,2019-01-15 19:06:00,848 7th St, Los Angeles,CA,90001 +145448,AA Batteries (4-pack),1,3.84,2019-01-02 12:18:00,961 Elm St, San Francisco,CA,94016 +145449,iPhone,1,700.0,2019-01-28 22:33:00,774 Lincoln St, San Francisco,CA,94016 +145450,AAA Batteries (4-pack),1,2.99,2019-01-24 11:10:00,15 Willow St, Los Angeles,CA,90001 +145451,20in Monitor,1,109.99,2019-01-10 22:59:00,998 14th St, Austin,TX,73301 +145452,Lightning Charging Cable,1,14.95,2019-01-06 09:47:00,517 Jefferson St, New York City,NY,10001 +145453,Apple Airpods Headphones,1,150.0,2019-01-28 13:31:00,212 Jefferson St, Seattle,WA,98101 +145454,34in Ultrawide Monitor,1,379.99,2019-01-04 11:15:00,807 Lincoln St, Atlanta,GA,30301 +145455,Wired Headphones,1,11.99,2019-01-15 15:28:00,597 Pine St, Atlanta,GA,30301 +145456,iPhone,1,700.0,2019-01-11 11:17:00,300 Lake St, Los Angeles,CA,90001 +145457,AAA Batteries (4-pack),1,2.99,2019-01-31 23:35:00,714 12th St, Boston,MA,02215 +145458,USB-C Charging Cable,1,11.95,2019-01-08 22:17:00,115 8th St, Portland,OR,97035 +145459,Apple Airpods Headphones,1,150.0,2019-01-21 10:56:00,729 8th St, San Francisco,CA,94016 +145460,Flatscreen TV,1,300.0,2019-01-17 07:24:00,738 River St, San Francisco,CA,94016 +145461,ThinkPad Laptop,1,999.99,2019-01-28 19:19:00,922 Hill St, New York City,NY,10001 +145462,AA Batteries (4-pack),3,3.84,2019-01-09 20:11:00,116 Washington St, Seattle,WA,98101 +145463,AA Batteries (4-pack),1,3.84,2019-01-26 20:45:00,92 Pine St, San Francisco,CA,94016 +145464,Apple Airpods Headphones,1,150.0,2019-01-21 19:13:00,14 6th St, Los Angeles,CA,90001 +145465,AAA Batteries (4-pack),1,2.99,2019-01-04 13:13:00,647 Willow St, San Francisco,CA,94016 +145466,USB-C Charging Cable,1,11.95,2019-01-04 09:17:00,505 Wilson St, Boston,MA,02215 +145467,Bose SoundSport Headphones,1,99.99,2019-01-11 22:06:00,717 Church St, Atlanta,GA,30301 +145468,20in Monitor,1,109.99,2019-01-23 18:30:00,810 Ridge St, San Francisco,CA,94016 +145469,Macbook Pro Laptop,1,1700.0,2019-01-29 18:59:00,828 Forest St, San Francisco,CA,94016 +145470,Apple Airpods Headphones,1,150.0,2019-01-12 12:41:00,468 North St, Boston,MA,02215 +145471,Lightning Charging Cable,1,14.95,2019-01-30 13:35:00,147 West St, San Francisco,CA,94016 +145472,Bose SoundSport Headphones,1,99.99,2019-01-13 14:40:00,947 Cedar St, Los Angeles,CA,90001 +145473,AA Batteries (4-pack),2,3.84,2019-01-30 19:34:00,562 13th St, Los Angeles,CA,90001 +145474,27in FHD Monitor,1,149.99,2019-01-20 14:07:00,430 Cedar St, Atlanta,GA,30301 +145475,Wired Headphones,1,11.99,2019-01-01 14:45:00,736 Spruce St, San Francisco,CA,94016 +145476,AAA Batteries (4-pack),1,2.99,2019-01-12 13:22:00,750 North St, San Francisco,CA,94016 +145477,AAA Batteries (4-pack),2,2.99,2019-01-15 20:15:00,253 Cedar St, San Francisco,CA,94016 +145478,Apple Airpods Headphones,1,150.0,2019-01-27 12:30:00,812 Lakeview St, San Francisco,CA,94016 +145479,Bose SoundSport Headphones,1,99.99,2019-01-05 11:18:00,33 4th St, Los Angeles,CA,90001 +145480,Lightning Charging Cable,1,14.95,2019-01-31 16:52:00,448 Lincoln St, Los Angeles,CA,90001 +145481,ThinkPad Laptop,1,999.99,2019-01-02 17:41:00,218 7th St, Portland,OR,97035 +145482,Google Phone,1,600.0,2019-01-13 11:14:00,238 Spruce St, Atlanta,GA,30301 +145483,USB-C Charging Cable,1,11.95,2019-01-26 10:07:00,121 Center St, Dallas,TX,75001 +145484,USB-C Charging Cable,1,11.95,2019-01-18 14:27:00,974 10th St, San Francisco,CA,94016 +145485,Apple Airpods Headphones,1,150.0,2019-01-02 12:15:00,746 North St, Los Angeles,CA,90001 +145486,Google Phone,1,600.0,2019-01-21 12:40:00,317 Highland St, Atlanta,GA,30301 +145487,AAA Batteries (4-pack),2,2.99,2019-01-02 10:03:00,803 Lake St, Portland,OR,97035 +145488,Bose SoundSport Headphones,2,99.99,2019-01-21 00:10:00,184 Lake St, Dallas,TX,75001 +145489,iPhone,1,700.0,2019-01-15 20:09:00,281 Lakeview St, San Francisco,CA,94016 +145490,USB-C Charging Cable,1,11.95,2019-01-20 21:29:00,649 Lake St, San Francisco,CA,94016 +145491,Google Phone,1,600.0,2019-01-11 16:44:00,286 Maple St, New York City,NY,10001 +145492,AA Batteries (4-pack),2,3.84,2019-01-03 18:17:00,895 Spruce St, San Francisco,CA,94016 +145493,Lightning Charging Cable,1,14.95,2019-01-10 17:52:00,780 Lake St, Boston,MA,02215 +145494,20in Monitor,1,109.99,2019-01-23 14:03:00,882 Lakeview St, San Francisco,CA,94016 +145495,AAA Batteries (4-pack),1,2.99,2019-01-11 22:39:00,372 2nd St, San Francisco,CA,94016 +145496,Bose SoundSport Headphones,1,99.99,2019-01-11 15:54:00,875 Cherry St, Seattle,WA,98101 +145497,Apple Airpods Headphones,1,150.0,2019-01-16 17:53:00,676 Wilson St, Los Angeles,CA,90001 +145498,AA Batteries (4-pack),1,3.84,2019-01-11 14:05:00,358 11th St, San Francisco,CA,94016 +145499,USB-C Charging Cable,1,11.95,2019-01-21 20:02:00,243 Madison St, Los Angeles,CA,90001 +145500,Bose SoundSport Headphones,1,99.99,2019-01-10 17:04:00,312 North St, Dallas,TX,75001 +145501,Lightning Charging Cable,1,14.95,2019-01-22 20:03:00,896 2nd St, Dallas,TX,75001 +145502,ThinkPad Laptop,1,999.99,2019-01-12 12:46:00,265 4th St, Atlanta,GA,30301 +145503,Lightning Charging Cable,1,14.95,2019-01-18 18:06:00,984 Chestnut St, New York City,NY,10001 +145504,20in Monitor,1,109.99,2019-01-02 20:31:00,731 Elm St, Atlanta,GA,30301 +145505,USB-C Charging Cable,1,11.95,2019-01-04 22:29:00,354 5th St, San Francisco,CA,94016 +145506,AAA Batteries (4-pack),1,2.99,2019-01-04 12:24:00,366 Sunset St, New York City,NY,10001 +145507,USB-C Charging Cable,1,11.95,2019-01-09 01:21:00,109 Spruce St, Los Angeles,CA,90001 +145508,AAA Batteries (4-pack),1,2.99,2019-01-18 22:30:00,71 Park St, San Francisco,CA,94016 +145509,USB-C Charging Cable,1,11.95,2019-01-18 09:24:00,682 Church St, San Francisco,CA,94016 +145510,USB-C Charging Cable,1,11.95,2019-01-19 12:25:00,521 Cedar St, San Francisco,CA,94016 +145511,AA Batteries (4-pack),1,3.84,2019-01-20 13:11:00,932 Center St, Dallas,TX,75001 +145512,USB-C Charging Cable,1,11.95,2019-01-06 19:14:00,407 Elm St, San Francisco,CA,94016 +145513,AA Batteries (4-pack),1,3.84,2019-01-06 01:30:00,482 Pine St, Los Angeles,CA,90001 +145514,USB-C Charging Cable,1,11.95,2019-01-04 08:59:00,203 River St, Seattle,WA,98101 +145515,Wired Headphones,1,11.99,2019-01-24 23:13:00,847 Hill St, Atlanta,GA,30301 +145516,AA Batteries (4-pack),1,3.84,2019-01-10 22:12:00,286 Madison St, Boston,MA,02215 +145517,Apple Airpods Headphones,1,150.0,2019-01-30 21:59:00,268 12th St, Austin,TX,73301 +145518,USB-C Charging Cable,1,11.95,2019-01-02 08:46:00,191 Johnson St, San Francisco,CA,94016 +145519,34in Ultrawide Monitor,1,379.99,2019-01-01 18:57:00,36 5th St, Los Angeles,CA,90001 +145520,Macbook Pro Laptop,1,1700.0,2019-01-17 16:12:00,15 Pine St, Seattle,WA,98101 +145521,iPhone,1,700.0,2019-01-31 13:22:00,73 Meadow St, Los Angeles,CA,90001 +145522,34in Ultrawide Monitor,1,379.99,2019-01-02 13:54:00,775 2nd St, San Francisco,CA,94016 +145523,Wired Headphones,1,11.99,2019-01-08 19:00:00,982 Elm St, Portland,OR,97035 +145524,Flatscreen TV,1,300.0,2019-01-11 10:56:00,676 Madison St, Los Angeles,CA,90001 +145525,Bose SoundSport Headphones,1,99.99,2019-01-17 23:19:00,463 Main St, Dallas,TX,75001 +145526,ThinkPad Laptop,1,999.99,2019-01-01 10:16:00,192 Ridge St, San Francisco,CA,94016 +145527,USB-C Charging Cable,1,11.95,2019-01-26 18:51:00,504 Walnut St, New York City,NY,10001 +145528,20in Monitor,1,109.99,2019-01-25 11:01:00,710 River St, Seattle,WA,98101 +145529,Wired Headphones,1,11.99,2019-01-29 09:07:00,679 12th St, Portland,OR,97035 +145530,27in FHD Monitor,1,149.99,2019-01-31 14:39:00,112 Ridge St, Dallas,TX,75001 +145531,AA Batteries (4-pack),1,3.84,2019-01-12 16:16:00,520 Jefferson St, Seattle,WA,98101 +145532,27in FHD Monitor,1,149.99,2019-01-11 12:27:00,29 Jackson St, Seattle,WA,98101 +145533,AAA Batteries (4-pack),3,2.99,2019-01-16 18:54:00,752 Maple St, Seattle,WA,98101 +145534,Lightning Charging Cable,1,14.95,2019-01-25 19:57:00,124 Forest St, Portland,OR,97035 +145535,Wired Headphones,1,11.99,2019-01-10 09:01:00,120 Hickory St, San Francisco,CA,94016 +145536,27in 4K Gaming Monitor,1,389.99,2019-01-05 15:51:00,211 14th St, Seattle,WA,98101 +145537,Lightning Charging Cable,2,14.95,2019-01-23 07:36:00,139 12th St, Dallas,TX,75001 +145538,Lightning Charging Cable,1,14.95,2019-01-31 22:25:00,208 Ridge St, Atlanta,GA,30301 +145539,34in Ultrawide Monitor,1,379.99,2019-01-13 15:43:00,955 Lincoln St, Boston,MA,02215 +145540,Lightning Charging Cable,2,14.95,2019-01-07 18:36:00,252 Chestnut St, Boston,MA,02215 +145541,Wired Headphones,1,11.99,2019-01-16 19:00:00,152 6th St, Seattle,WA,98101 +145542,AA Batteries (4-pack),2,3.84,2019-01-15 15:37:00,917 14th St, New York City,NY,10001 +145543,USB-C Charging Cable,1,11.95,2019-01-16 10:34:00,589 Maple St, Seattle,WA,98101 +145544,USB-C Charging Cable,1,11.95,2019-01-13 20:15:00,229 7th St, San Francisco,CA,94016 +145545,USB-C Charging Cable,1,11.95,2019-01-23 18:56:00,678 2nd St, Portland,OR,97035 +145546,20in Monitor,1,109.99,2019-01-27 10:57:00,459 Jefferson St, San Francisco,CA,94016 +145547,AAA Batteries (4-pack),1,2.99,2019-01-26 23:31:00,446 Madison St, Los Angeles,CA,90001 +145548,iPhone,1,700.0,2019-01-04 08:21:00,695 2nd St, Austin,TX,73301 +145549,Apple Airpods Headphones,1,150.0,2019-01-02 09:45:00,644 1st St, San Francisco,CA,94016 +145550,Apple Airpods Headphones,1,150.0,2019-01-30 18:53:00,505 North St, Seattle,WA,98101 +145551,Bose SoundSport Headphones,1,99.99,2019-01-29 21:31:00,604 South St, New York City,NY,10001 +145552,Macbook Pro Laptop,1,1700.0,2019-01-30 22:01:00,288 Adams St, New York City,NY,10001 +145553,Lightning Charging Cable,1,14.95,2019-01-19 16:32:00,570 Pine St, Seattle,WA,98101 +145554,ThinkPad Laptop,1,999.99,2019-01-21 11:58:00,467 2nd St, Boston,MA,02215 +145555,AA Batteries (4-pack),1,3.84,2019-01-09 21:40:00,635 Lincoln St, Los Angeles,CA,90001 +145556,20in Monitor,1,109.99,2019-01-18 18:59:00,36 Cherry St, Los Angeles,CA,90001 +145557,Lightning Charging Cable,1,14.95,2019-01-27 19:58:00,915 Lakeview St, San Francisco,CA,94016 +145558,AAA Batteries (4-pack),1,2.99,2019-01-12 15:18:00,125 West St, Atlanta,GA,30301 +145559,20in Monitor,1,109.99,2019-01-23 10:00:00,602 10th St, Austin,TX,73301 +145560,AAA Batteries (4-pack),1,2.99,2019-01-04 22:17:00,356 10th St, Portland,OR,97035 +145561,Lightning Charging Cable,1,14.95,2019-01-07 19:37:00,459 Dogwood St, New York City,NY,10001 +145562,Bose SoundSport Headphones,1,99.99,2019-01-28 00:23:00,976 Lake St, Los Angeles,CA,90001 +145563,AAA Batteries (4-pack),1,2.99,2019-01-15 18:20:00,48 South St, New York City,NY,10001 +145564,Bose SoundSport Headphones,1,99.99,2019-01-07 21:49:00,945 Hickory St, Austin,TX,73301 +145565,27in FHD Monitor,1,149.99,2019-01-11 13:28:00,344 South St, Boston,MA,02215 +145566,Apple Airpods Headphones,1,150.0,2019-01-11 23:45:00,103 Sunset St, New York City,NY,10001 +145567,USB-C Charging Cable,1,11.95,2019-01-30 14:21:00,992 10th St, New York City,NY,10001 +145568,Bose SoundSport Headphones,1,99.99,2019-01-21 14:00:00,977 5th St, San Francisco,CA,94016 +145569,AAA Batteries (4-pack),3,2.99,2019-01-04 16:19:00,458 9th St, San Francisco,CA,94016 +145570,AAA Batteries (4-pack),1,2.99,2019-01-25 21:22:00,778 4th St, Seattle,WA,98101 +145571,AA Batteries (4-pack),1,3.84,2019-01-23 11:21:00,678 North St, Los Angeles,CA,90001 +145572,Lightning Charging Cable,1,14.95,2019-01-02 20:33:00,411 West St, Los Angeles,CA,90001 +145573,Google Phone,1,600.0,2019-01-28 14:57:00,985 Church St, Boston,MA,02215 +145574,LG Dryer,1,600.0,2019-01-19 08:33:00,732 1st St, Boston,MA,02215 +145575,AAA Batteries (4-pack),1,2.99,2019-01-31 19:33:00,854 South St, San Francisco,CA,94016 +145576,USB-C Charging Cable,1,11.95,2019-01-31 13:14:00,734 Highland St, Austin,TX,73301 +145577,Apple Airpods Headphones,1,150.0,2019-01-06 21:15:00,491 11th St, San Francisco,CA,94016 +145578,Bose SoundSport Headphones,1,99.99,2019-01-16 15:01:00,5 Spruce St, Boston,MA,02215 +145579,AAA Batteries (4-pack),2,2.99,2019-01-11 12:14:00,255 Center St, New York City,NY,10001 +145579,Lightning Charging Cable,1,14.95,2019-01-11 12:14:00,255 Center St, New York City,NY,10001 +145580,Apple Airpods Headphones,1,150.0,2019-01-03 22:41:00,304 8th St, Los Angeles,CA,90001 +145581,Vareebadd Phone,1,400.0,2019-01-25 16:39:00,661 Maple St, San Francisco,CA,94016 +145582,Wired Headphones,1,11.99,2019-01-21 14:11:00,161 13th St, Atlanta,GA,30301 +145583,Lightning Charging Cable,1,14.95,2019-01-10 18:00:00,70 Ridge St, Dallas,TX,75001 +145584,27in FHD Monitor,1,149.99,2019-01-18 13:33:00,487 6th St, Seattle,WA,98101 +145585,Lightning Charging Cable,1,14.95,2019-01-15 20:30:00,687 Ridge St, New York City,NY,10001 +145586,USB-C Charging Cable,4,11.95,2019-01-25 18:17:00,202 Cherry St, San Francisco,CA,94016 +145587,USB-C Charging Cable,1,11.95,2019-01-09 16:48:00,978 12th St, San Francisco,CA,94016 +145588,Google Phone,1,600.0,2019-01-13 07:22:00,197 11th St, Boston,MA,02215 +145588,USB-C Charging Cable,1,11.95,2019-01-13 07:22:00,197 11th St, Boston,MA,02215 +145589,Bose SoundSport Headphones,1,99.99,2019-01-14 07:48:00,281 Adams St, Los Angeles,CA,90001 +145590,Lightning Charging Cable,1,14.95,2019-01-18 14:31:00,876 9th St, Los Angeles,CA,90001 +145591,Bose SoundSport Headphones,1,99.99,2019-01-09 08:24:00,120 Spruce St, Boston,MA,02215 +145592,USB-C Charging Cable,2,11.95,2019-01-14 13:03:00,243 Hickory St, Austin,TX,73301 +145593,Apple Airpods Headphones,1,150.0,2019-01-16 16:49:00,980 Elm St, San Francisco,CA,94016 +145594,AA Batteries (4-pack),1,3.84,2019-01-11 20:25:00,260 Center St, New York City,NY,10001 +145595,Vareebadd Phone,1,400.0,2019-01-04 14:13:00,992 Adams St, Los Angeles,CA,90001 +145596,iPhone,1,700.0,2019-01-03 10:11:00,925 River St, Boston,MA,02215 +145597,Apple Airpods Headphones,1,150.0,2019-01-29 23:26:00,478 Willow St, Boston,MA,02215 +145598,27in FHD Monitor,1,149.99,2019-01-09 21:05:00,673 Lincoln St, Boston,MA,02215 +145599,Lightning Charging Cable,1,14.95,2019-01-15 15:00:00,953 Spruce St, San Francisco,CA,94016 +145600,Lightning Charging Cable,1,14.95,2019-01-11 21:05:00,842 Highland St, Portland,OR,97035 +145601,AAA Batteries (4-pack),1,2.99,2019-01-14 02:54:00,621 Lincoln St, Boston,MA,02215 +145602,iPhone,1,700.0,2019-01-06 21:25:00,489 Forest St, New York City,NY,10001 +145602,Lightning Charging Cable,1,14.95,2019-01-06 21:25:00,489 Forest St, New York City,NY,10001 +145603,AAA Batteries (4-pack),1,2.99,2019-01-06 18:25:00,708 West St, New York City,NY,10001 +145604,Google Phone,1,600.0,2019-01-01 16:16:00,498 14th St, Dallas,TX,75001 +145605,USB-C Charging Cable,1,11.95,2019-01-29 15:18:00,323 13th St, San Francisco,CA,94016 +145606,AA Batteries (4-pack),1,3.84,2019-01-16 21:29:00,778 Hickory St, San Francisco,CA,94016 +145607,Lightning Charging Cable,1,14.95,2019-01-21 06:33:00,900 Hill St, San Francisco,CA,94016 +145608,Macbook Pro Laptop,1,1700.0,2019-01-21 18:21:00,805 12th St, Boston,MA,02215 +145609,AA Batteries (4-pack),1,3.84,2019-01-13 20:01:00,9 Forest St, New York City,NY,10001 +145610,Wired Headphones,1,11.99,2019-01-21 21:42:00,54 2nd St, New York City,NY,10001 +145611,Lightning Charging Cable,1,14.95,2019-01-31 11:08:00,768 Church St, New York City,NY,10001 +145612,Wired Headphones,1,11.99,2019-01-07 17:56:00,856 Park St, Seattle,WA,98101 +145613,27in FHD Monitor,1,149.99,2019-01-05 20:53:00,660 West St, San Francisco,CA,94016 +145614,Lightning Charging Cable,1,14.95,2019-01-08 18:52:00,767 Church St, Seattle,WA,98101 +145615,Google Phone,1,600.0,2019-01-07 20:30:00,720 Cherry St, Austin,TX,73301 +145616,Google Phone,1,600.0,2019-01-25 23:10:00,39 13th St, San Francisco,CA,94016 +145617,iPhone,1,700.0,2019-01-26 12:28:00,832 Walnut St, Atlanta,GA,30301 +145618,Lightning Charging Cable,1,14.95,2019-01-16 18:41:00,981 Church St, Los Angeles,CA,90001 +145619,Bose SoundSport Headphones,1,99.99,2019-01-16 21:26:00,501 4th St, Los Angeles,CA,90001 +145620,AA Batteries (4-pack),1,3.84,2019-01-03 09:49:00,691 Church St, Los Angeles,CA,90001 +145621,USB-C Charging Cable,1,11.95,2019-01-10 00:35:00,636 Main St, Dallas,TX,75001 +145622,34in Ultrawide Monitor,1,379.99,2019-01-02 12:54:00,351 2nd St, Dallas,TX,75001 +145623,AA Batteries (4-pack),1,3.84,2019-01-28 13:35:00,725 Spruce St, Portland,ME,04101 +145624,Lightning Charging Cable,1,14.95,2019-01-16 21:22:00,56 Willow St, San Francisco,CA,94016 +145625,Flatscreen TV,1,300.0,2019-01-17 13:02:00,704 2nd St, Atlanta,GA,30301 +145626,Flatscreen TV,1,300.0,2019-01-19 14:19:00,104 Johnson St, Los Angeles,CA,90001 +145627,Wired Headphones,1,11.99,2019-01-12 10:30:00,224 Church St, Los Angeles,CA,90001 +145628,AAA Batteries (4-pack),1,2.99,2019-01-05 21:13:00,97 Church St, Boston,MA,02215 +145629,ThinkPad Laptop,1,999.99,2019-01-05 09:57:00,883 Main St, Los Angeles,CA,90001 +145630,Bose SoundSport Headphones,1,99.99,2019-01-06 09:46:00,423 6th St, Dallas,TX,75001 +145631,AAA Batteries (4-pack),1,2.99,2019-01-30 16:47:00,461 1st St, New York City,NY,10001 +145632,27in 4K Gaming Monitor,1,389.99,2019-01-16 19:51:00,704 West St, Portland,ME,04101 +145633,iPhone,1,700.0,2019-01-26 16:10:00,701 North St, Boston,MA,02215 +145634,Wired Headphones,1,11.99,2019-01-31 11:33:00,130 1st St, Los Angeles,CA,90001 +145635,Lightning Charging Cable,1,14.95,2019-01-10 14:43:00,151 Willow St, San Francisco,CA,94016 +145636,27in 4K Gaming Monitor,1,389.99,2019-01-06 14:55:00,235 Washington St, Portland,OR,97035 +145637,Wired Headphones,1,11.99,2019-01-14 11:48:00,318 Willow St, Dallas,TX,75001 +145638,USB-C Charging Cable,1,11.95,2019-01-24 18:43:00,470 Walnut St, Dallas,TX,75001 +145639,Bose SoundSport Headphones,1,99.99,2019-01-28 20:37:00,914 9th St, Boston,MA,02215 +145640,AAA Batteries (4-pack),1,2.99,2019-01-27 13:04:00,491 6th St, Seattle,WA,98101 +145641,Lightning Charging Cable,1,14.95,2019-01-21 22:22:00,220 8th St, Dallas,TX,75001 +145642,AAA Batteries (4-pack),1,2.99,2019-01-23 23:08:00,990 West St, Portland,OR,97035 +145643,ThinkPad Laptop,1,999.99,2019-01-15 15:53:00,586 West St, Seattle,WA,98101 +145644,Wired Headphones,1,11.99,2019-01-20 10:25:00,821 Lake St, San Francisco,CA,94016 +145645,Apple Airpods Headphones,1,150.0,2019-01-27 14:58:00,581 River St, Atlanta,GA,30301 +145646,Apple Airpods Headphones,1,150.0,2019-01-29 08:51:00,707 North St, Dallas,TX,75001 +145647,USB-C Charging Cable,1,11.95,2019-01-28 15:50:00,765 Lake St, San Francisco,CA,94016 +145648,iPhone,1,700.0,2019-01-08 14:47:00,162 13th St, San Francisco,CA,94016 +145649,Apple Airpods Headphones,1,150.0,2019-01-10 13:03:00,511 Lake St, New York City,NY,10001 +145650,Apple Airpods Headphones,1,150.0,2019-01-07 20:32:00,654 North St, Boston,MA,02215 +145650,USB-C Charging Cable,1,11.95,2019-01-07 20:32:00,654 North St, Boston,MA,02215 +145651,27in FHD Monitor,1,149.99,2019-01-31 11:41:00,79 Maple St, Dallas,TX,75001 +145652,Google Phone,1,600.0,2019-01-03 13:56:00,732 Pine St, Atlanta,GA,30301 +145653,Lightning Charging Cable,1,14.95,2019-01-20 14:15:00,216 Adams St, Atlanta,GA,30301 +145654,Lightning Charging Cable,1,14.95,2019-01-09 12:57:00,760 Spruce St, Portland,OR,97035 +145655,USB-C Charging Cable,1,11.95,2019-01-31 21:10:00,312 8th St, San Francisco,CA,94016 +145656,ThinkPad Laptop,1,999.99,2019-01-07 12:21:00,492 West St, Los Angeles,CA,90001 +145657,Bose SoundSport Headphones,1,99.99,2019-01-06 23:07:00,663 14th St, Dallas,TX,75001 +145658,Wired Headphones,1,11.99,2019-01-22 12:09:00,769 6th St, Los Angeles,CA,90001 +145659,34in Ultrawide Monitor,1,379.99,2019-01-28 18:14:00,382 Wilson St, San Francisco,CA,94016 +145660,Google Phone,1,600.0,2019-01-20 12:19:00,31 Jefferson St, Atlanta,GA,30301 +145660,USB-C Charging Cable,1,11.95,2019-01-20 12:19:00,31 Jefferson St, Atlanta,GA,30301 +145660,Bose SoundSport Headphones,1,99.99,2019-01-20 12:19:00,31 Jefferson St, Atlanta,GA,30301 +145661,Lightning Charging Cable,1,14.95,2019-01-04 21:42:00,150 Johnson St, San Francisco,CA,94016 +145662,Bose SoundSport Headphones,1,99.99,2019-01-10 14:40:00,395 Maple St, San Francisco,CA,94016 +145663,AA Batteries (4-pack),1,3.84,2019-01-29 19:40:00,503 Forest St, San Francisco,CA,94016 +145664,Wired Headphones,1,11.99,2019-01-20 11:37:00,92 Lake St, San Francisco,CA,94016 +145664,AAA Batteries (4-pack),1,2.99,2019-01-20 11:37:00,92 Lake St, San Francisco,CA,94016 +145665,AAA Batteries (4-pack),1,2.99,2019-01-27 20:32:00,584 13th St, New York City,NY,10001 +145666,Apple Airpods Headphones,1,150.0,2019-01-05 08:01:00,855 Lake St, New York City,NY,10001 +145667,iPhone,1,700.0,2019-01-09 10:48:00,645 Ridge St, Boston,MA,02215 +145668,27in 4K Gaming Monitor,1,389.99,2019-01-28 19:02:00,863 Cedar St, Austin,TX,73301 +145669,Apple Airpods Headphones,1,150.0,2019-01-21 10:08:00,649 Walnut St, Los Angeles,CA,90001 +145670,Bose SoundSport Headphones,1,99.99,2019-01-11 21:29:00,429 Johnson St, Seattle,WA,98101 +145671,AAA Batteries (4-pack),1,2.99,2019-01-03 22:04:00,595 10th St, San Francisco,CA,94016 +145672,iPhone,1,700.0,2019-01-18 18:19:00,465 12th St, San Francisco,CA,94016 +145672,Lightning Charging Cable,1,14.95,2019-01-18 18:19:00,465 12th St, San Francisco,CA,94016 +145673,AA Batteries (4-pack),1,3.84,2019-01-26 19:37:00,974 1st St, Los Angeles,CA,90001 +145674,AAA Batteries (4-pack),1,2.99,2019-01-22 11:00:00,481 8th St, Boston,MA,02215 +145675,34in Ultrawide Monitor,1,379.99,2019-01-17 18:54:00,621 Dogwood St, Atlanta,GA,30301 +145676,27in FHD Monitor,1,149.99,2019-01-17 09:18:00,835 Cherry St, San Francisco,CA,94016 +145677,USB-C Charging Cable,1,11.95,2019-01-21 18:49:00,775 Elm St, Los Angeles,CA,90001 +145678,AAA Batteries (4-pack),1,2.99,2019-01-03 12:20:00,210 11th St, Dallas,TX,75001 +145679,USB-C Charging Cable,1,11.95,2019-01-17 22:50:00,55 Pine St, Atlanta,GA,30301 +145680,AAA Batteries (4-pack),1,2.99,2019-01-09 14:41:00,276 14th St, Austin,TX,73301 +145681,Lightning Charging Cable,1,14.95,2019-01-28 18:09:00,292 Lake St, New York City,NY,10001 +145682,Google Phone,1,600.0,2019-01-22 16:29:00,503 Cedar St, San Francisco,CA,94016 +145683,Lightning Charging Cable,1,14.95,2019-01-26 07:38:00,686 Washington St, Seattle,WA,98101 +145684,AA Batteries (4-pack),2,3.84,2019-01-17 23:24:00,949 Willow St, Dallas,TX,75001 +145685,27in FHD Monitor,1,149.99,2019-01-28 15:19:00,713 Willow St, Atlanta,GA,30301 +145686,ThinkPad Laptop,1,999.99,2019-01-15 17:55:00,933 Maple St, Portland,OR,97035 +145687,iPhone,1,700.0,2019-01-18 20:26:00,125 1st St, Los Angeles,CA,90001 +145688,Google Phone,1,600.0,2019-01-29 21:37:00,279 North St, San Francisco,CA,94016 +145689,Apple Airpods Headphones,1,150.0,2019-01-26 16:43:00,894 7th St, Austin,TX,73301 +145690,Apple Airpods Headphones,1,150.0,2019-01-26 13:58:00,955 South St, Boston,MA,02215 +145691,AA Batteries (4-pack),1,3.84,2019-01-17 00:26:00,450 Highland St, San Francisco,CA,94016 +145692,20in Monitor,1,109.99,2019-01-07 13:39:00,711 Forest St, San Francisco,CA,94016 +145693,27in FHD Monitor,1,149.99,2019-01-04 06:54:00,92 Madison St, San Francisco,CA,94016 +145694,27in FHD Monitor,1,149.99,2019-01-02 12:59:00,265 2nd St, Los Angeles,CA,90001 +145695,AAA Batteries (4-pack),1,2.99,2019-01-15 14:49:00,466 14th St, New York City,NY,10001 +145696,Lightning Charging Cable,1,14.95,2019-01-13 11:10:00,44 Elm St, Los Angeles,CA,90001 +145697,AA Batteries (4-pack),1,3.84,2019-01-24 18:48:00,56 1st St, San Francisco,CA,94016 +145698,Wired Headphones,1,11.99,2019-01-12 10:13:00,411 Adams St, Atlanta,GA,30301 +145698,ThinkPad Laptop,1,999.99,2019-01-12 10:13:00,411 Adams St, Atlanta,GA,30301 +145699,AAA Batteries (4-pack),1,2.99,2019-01-13 19:31:00,507 North St, New York City,NY,10001 +145700,USB-C Charging Cable,1,11.95,2019-01-30 10:53:00,912 South St, Dallas,TX,75001 +145701,Apple Airpods Headphones,1,150.0,2019-01-20 18:23:00,170 1st St, San Francisco,CA,94016 +145702,Flatscreen TV,1,300.0,2019-01-24 17:16:00,189 7th St, Los Angeles,CA,90001 +145703,AA Batteries (4-pack),1,3.84,2019-01-15 18:32:00,552 12th St, Boston,MA,02215 +145704,iPhone,1,700.0,2019-01-21 15:25:00,671 Cherry St, New York City,NY,10001 +145705,Wired Headphones,1,11.99,2019-01-31 14:20:00,132 West St, Los Angeles,CA,90001 +145706,Apple Airpods Headphones,1,150.0,2019-01-13 05:37:00,712 5th St, Dallas,TX,75001 +145707,AA Batteries (4-pack),1,3.84,2019-01-14 21:15:00,74 North St, New York City,NY,10001 +145708,27in FHD Monitor,1,149.99,2019-01-12 12:54:00,850 10th St, Seattle,WA,98101 +145709,iPhone,1,700.0,2019-01-29 02:00:00,205 7th St, New York City,NY,10001 +145710,Apple Airpods Headphones,1,150.0,2019-01-16 22:37:00,144 Lake St, New York City,NY,10001 +145711,Bose SoundSport Headphones,1,99.99,2019-01-22 09:31:00,541 8th St, Boston,MA,02215 +145712,AA Batteries (4-pack),1,3.84,2019-01-30 22:07:00,232 Johnson St, New York City,NY,10001 +145713,20in Monitor,1,109.99,2019-01-28 19:48:00,614 South St, San Francisco,CA,94016 +145714,USB-C Charging Cable,1,11.95,2019-01-28 15:39:00,233 West St, Atlanta,GA,30301 +145715,LG Dryer,1,600.0,2019-01-15 14:19:00,239 6th St, New York City,NY,10001 +145716,Wired Headphones,1,11.99,2019-01-30 19:52:00,771 Center St, Boston,MA,02215 +145717,USB-C Charging Cable,2,11.95,2019-01-12 16:38:00,4 Wilson St, San Francisco,CA,94016 +145718,Google Phone,1,600.0,2019-01-18 08:51:00,829 River St, Portland,ME,04101 +145718,Wired Headphones,1,11.99,2019-01-18 08:51:00,829 River St, Portland,ME,04101 +145719,Apple Airpods Headphones,1,150.0,2019-01-15 12:57:00,817 Madison St, San Francisco,CA,94016 +145720,Wired Headphones,1,11.99,2019-01-22 06:21:00,175 Church St, San Francisco,CA,94016 +145721,ThinkPad Laptop,1,999.99,2019-01-20 16:31:00,83 Lincoln St, New York City,NY,10001 +145722,AAA Batteries (4-pack),2,2.99,2019-01-07 11:27:00,959 Lake St, San Francisco,CA,94016 +145723,Lightning Charging Cable,1,14.95,2019-01-17 17:44:00,944 Ridge St, San Francisco,CA,94016 +145724,Bose SoundSport Headphones,1,99.99,2019-01-22 22:54:00,463 River St, Atlanta,GA,30301 +145725,Flatscreen TV,1,300.0,2019-01-11 19:52:00,756 Lincoln St, Seattle,WA,98101 +145725,Lightning Charging Cable,1,14.95,2019-01-11 19:52:00,756 Lincoln St, Seattle,WA,98101 +145726,Apple Airpods Headphones,1,150.0,2019-01-15 21:07:00,98 Center St, Los Angeles,CA,90001 +145727,Lightning Charging Cable,1,14.95,2019-01-03 13:31:00,5 13th St, Boston,MA,02215 +145728,Lightning Charging Cable,2,14.95,2019-01-03 20:11:00,864 Johnson St, San Francisco,CA,94016 +145729,Wired Headphones,1,11.99,2019-01-18 22:23:00,147 Sunset St, Los Angeles,CA,90001 +145730,USB-C Charging Cable,1,11.95,2019-01-18 10:49:00,732 Chestnut St, Los Angeles,CA,90001 +145731,Macbook Pro Laptop,1,1700.0,2019-01-29 10:19:00,483 West St, San Francisco,CA,94016 +145732,AAA Batteries (4-pack),1,2.99,2019-01-24 08:39:00,844 Johnson St, Seattle,WA,98101 +145733,AAA Batteries (4-pack),1,2.99,2019-01-28 12:23:00,707 North St, Austin,TX,73301 +145734,Lightning Charging Cable,1,14.95,2019-01-20 11:06:00,31 9th St, Portland,OR,97035 +145735,AAA Batteries (4-pack),1,2.99,2019-01-05 12:44:00,820 Lakeview St, Los Angeles,CA,90001 +145736,Wired Headphones,1,11.99,2019-01-29 13:03:00,916 13th St, Los Angeles,CA,90001 +145737,Google Phone,1,600.0,2019-01-09 01:37:00,958 Elm St, Boston,MA,02215 +145738,Apple Airpods Headphones,1,150.0,2019-01-08 13:50:00,573 2nd St, Seattle,WA,98101 +145739,Wired Headphones,1,11.99,2019-01-22 14:23:00,588 Lakeview St, New York City,NY,10001 +145740,Apple Airpods Headphones,1,150.0,2019-01-25 13:51:00,254 Hill St, Los Angeles,CA,90001 +145741,Apple Airpods Headphones,1,150.0,2019-01-13 18:28:00,259 Cherry St, Los Angeles,CA,90001 +145742,Flatscreen TV,1,300.0,2019-01-17 12:10:00,194 Jackson St, San Francisco,CA,94016 +145743,27in FHD Monitor,1,149.99,2019-01-16 18:25:00,600 1st St, Dallas,TX,75001 +145744,iPhone,1,700.0,2019-01-23 17:49:00,853 Main St, Dallas,TX,75001 +145745,Lightning Charging Cable,1,14.95,2019-01-07 08:23:00,352 Cherry St, Dallas,TX,75001 +145746,Lightning Charging Cable,1,14.95,2019-01-09 14:28:00,543 River St, Portland,ME,04101 +145747,34in Ultrawide Monitor,1,379.99,2019-01-28 20:25:00,774 2nd St, San Francisco,CA,94016 +145748,Vareebadd Phone,1,400.0,2019-01-29 20:57:00,895 Meadow St, Los Angeles,CA,90001 +145749,AAA Batteries (4-pack),1,2.99,2019-01-05 04:42:00,850 2nd St, Dallas,TX,75001 +145750,AAA Batteries (4-pack),1,2.99,2019-01-29 16:54:00,350 Chestnut St, San Francisco,CA,94016 +145751,34in Ultrawide Monitor,1,379.99,2019-01-04 13:32:00,613 Highland St, New York City,NY,10001 +145752,LG Dryer,1,600.0,2019-01-02 19:52:00,19 Pine St, San Francisco,CA,94016 +145753,27in FHD Monitor,1,149.99,2019-01-03 01:04:00,728 Lake St, Boston,MA,02215 +145754,AAA Batteries (4-pack),3,2.99,2019-01-17 10:26:00,163 11th St, San Francisco,CA,94016 +145755,AA Batteries (4-pack),2,3.84,2019-01-10 07:51:00,975 Jefferson St, Boston,MA,02215 +145755,Wired Headphones,1,11.99,2019-01-10 07:51:00,975 Jefferson St, Boston,MA,02215 +145756,Lightning Charging Cable,1,14.95,2019-01-30 23:21:00,263 Elm St, Los Angeles,CA,90001 +145757,27in 4K Gaming Monitor,1,389.99,2019-01-27 17:48:00,644 5th St, Dallas,TX,75001 +145758,Wired Headphones,1,11.99,2019-01-22 22:05:00,393 Lakeview St, Seattle,WA,98101 +145759,Lightning Charging Cable,1,14.95,2019-01-08 02:49:00,86 12th St, New York City,NY,10001 +145760,Bose SoundSport Headphones,1,99.99,2019-01-03 20:54:00,378 11th St, New York City,NY,10001 +145761,Bose SoundSport Headphones,1,99.99,2019-01-24 16:57:00,113 Spruce St, San Francisco,CA,94016 +145762,USB-C Charging Cable,1,11.95,2019-01-07 18:17:00,931 Elm St, Portland,OR,97035 +145763,USB-C Charging Cable,1,11.95,2019-01-10 11:18:00,438 Adams St, Dallas,TX,75001 +145763,iPhone,1,700.0,2019-01-10 11:18:00,438 Adams St, Dallas,TX,75001 +145764,AAA Batteries (4-pack),2,2.99,2019-01-22 11:53:00,362 Pine St, San Francisco,CA,94016 +145765,LG Dryer,1,600.0,2019-01-03 20:35:00,567 12th St, Seattle,WA,98101 +145766,Lightning Charging Cable,1,14.95,2019-01-25 20:27:00,227 Chestnut St, Dallas,TX,75001 +145767,Macbook Pro Laptop,1,1700.0,2019-01-02 10:55:00,490 11th St, Dallas,TX,75001 +145768,27in 4K Gaming Monitor,1,389.99,2019-01-08 09:24:00,663 14th St, San Francisco,CA,94016 +145769,Apple Airpods Headphones,1,150.0,2019-01-01 10:32:00,504 9th St, Austin,TX,73301 +145770,USB-C Charging Cable,3,11.95,2019-01-04 12:23:00,718 12th St, Los Angeles,CA,90001 +145771,AA Batteries (4-pack),1,3.84,2019-01-31 18:44:00,698 Park St, Dallas,TX,75001 +145772,Lightning Charging Cable,1,14.95,2019-01-18 08:56:00,80 1st St, Los Angeles,CA,90001 +145773,Lightning Charging Cable,1,14.95,2019-01-10 21:56:00,887 12th St, Atlanta,GA,30301 +145774,USB-C Charging Cable,1,11.95,2019-01-16 12:51:00,647 Lake St, San Francisco,CA,94016 +145775,Lightning Charging Cable,1,14.95,2019-01-13 14:11:00,512 Forest St, San Francisco,CA,94016 +145776,20in Monitor,1,109.99,2019-01-17 08:52:00,381 14th St, San Francisco,CA,94016 +145777,Wired Headphones,1,11.99,2019-01-23 21:43:00,345 Maple St, San Francisco,CA,94016 +145778,USB-C Charging Cable,1,11.95,2019-01-20 11:57:00,92 Adams St, San Francisco,CA,94016 +145779,AAA Batteries (4-pack),2,2.99,2019-01-22 05:54:00,406 Sunset St, Boston,MA,02215 +145780,iPhone,1,700.0,2019-01-22 19:48:00,224 Elm St, San Francisco,CA,94016 +145781,Macbook Pro Laptop,1,1700.0,2019-01-12 15:03:00,395 14th St, San Francisco,CA,94016 +145782,27in 4K Gaming Monitor,1,389.99,2019-01-19 08:45:00,563 14th St, Austin,TX,73301 +145783,AA Batteries (4-pack),1,3.84,2019-01-03 18:39:00,861 Lake St, New York City,NY,10001 +145784,AA Batteries (4-pack),1,3.84,2019-01-07 19:31:00,252 Jefferson St, San Francisco,CA,94016 +145785,USB-C Charging Cable,1,11.95,2019-01-29 01:33:00,60 Pine St, Boston,MA,02215 +145786,USB-C Charging Cable,2,11.95,2019-01-09 22:15:00,989 4th St, New York City,NY,10001 +145787,Bose SoundSport Headphones,1,99.99,2019-01-20 02:05:00,127 West St, New York City,NY,10001 +145788,USB-C Charging Cable,1,11.95,2019-01-23 17:54:00,688 Walnut St, San Francisco,CA,94016 +145789,Lightning Charging Cable,2,14.95,2019-01-05 10:16:00,48 North St, Boston,MA,02215 +145790,AA Batteries (4-pack),1,3.84,2019-01-24 23:33:00,783 8th St, San Francisco,CA,94016 +145791,AA Batteries (4-pack),5,3.84,2019-01-28 10:39:00,893 Main St, San Francisco,CA,94016 +145792,AAA Batteries (4-pack),1,2.99,2019-01-20 12:51:00,169 12th St, Seattle,WA,98101 +145793,27in 4K Gaming Monitor,1,389.99,2019-01-26 10:24:00,469 Park St, Dallas,TX,75001 +145794,20in Monitor,1,109.99,2019-01-25 20:19:00,407 Jackson St, Dallas,TX,75001 +145795,Macbook Pro Laptop,1,1700.0,2019-01-28 18:49:00,144 6th St, Atlanta,GA,30301 +145796,Lightning Charging Cable,1,14.95,2019-01-10 08:12:00,245 Willow St, Boston,MA,02215 +145797,Macbook Pro Laptop,1,1700.0,2019-01-30 18:46:00,738 Pine St, Boston,MA,02215 +145798,Flatscreen TV,1,300.0,2019-01-04 10:33:00,467 13th St, Los Angeles,CA,90001 +145799,Apple Airpods Headphones,1,150.0,2019-01-20 10:54:00,654 Hill St, Portland,OR,97035 +145800,34in Ultrawide Monitor,1,379.99,2019-01-26 11:41:00,371 4th St, Seattle,WA,98101 +145801,Lightning Charging Cable,1,14.95,2019-01-14 23:41:00,552 Washington St, Boston,MA,02215 +145802,27in FHD Monitor,1,149.99,2019-01-15 21:39:00,924 6th St, Seattle,WA,98101 +145803,27in FHD Monitor,1,149.99,2019-01-09 15:25:00,145 4th St, New York City,NY,10001 +145804,Wired Headphones,1,11.99,2019-01-14 06:55:00,901 11th St, Dallas,TX,75001 +145805,AA Batteries (4-pack),1,3.84,2019-01-07 14:38:00,503 5th St, Boston,MA,02215 +145806,Apple Airpods Headphones,1,150.0,2019-01-14 17:10:00,515 Lincoln St, New York City,NY,10001 +145807,AAA Batteries (4-pack),3,2.99,2019-01-30 13:33:00,228 5th St, Portland,ME,04101 +145808,Flatscreen TV,1,300.0,2019-01-14 22:00:00,80 Meadow St, Dallas,TX,75001 +145809,USB-C Charging Cable,1,11.95,2019-01-08 17:46:00,142 Forest St, San Francisco,CA,94016 +145810,iPhone,1,700.0,2019-01-11 20:21:00,67 Adams St, New York City,NY,10001 +145810,Lightning Charging Cable,1,14.95,2019-01-11 20:21:00,67 Adams St, New York City,NY,10001 +145811,Apple Airpods Headphones,1,150.0,2019-01-21 08:25:00,153 Highland St, Portland,OR,97035 +145812,AA Batteries (4-pack),3,3.84,2019-01-19 08:54:00,78 Jackson St, Atlanta,GA,30301 +145813,USB-C Charging Cable,1,11.95,2019-01-16 19:32:00,288 5th St, Portland,OR,97035 +145814,20in Monitor,1,109.99,2019-01-02 21:42:00,616 9th St, Boston,MA,02215 +145815,34in Ultrawide Monitor,1,379.99,2019-01-12 22:10:00,193 Park St, Boston,MA,02215 +145816,Apple Airpods Headphones,1,150.0,2019-01-21 11:07:00,528 Dogwood St, Boston,MA,02215 +145817,AA Batteries (4-pack),1,3.84,2019-01-05 19:20:00,259 Spruce St, Los Angeles,CA,90001 +145818,Wired Headphones,1,11.99,2019-01-06 10:50:00,394 13th St, Seattle,WA,98101 +145819,USB-C Charging Cable,1,11.95,2019-01-16 14:43:00,657 Sunset St, San Francisco,CA,94016 +145820,iPhone,1,700.0,2019-01-01 18:41:00,281 Washington St, Boston,MA,02215 +145821,Apple Airpods Headphones,1,150.0,2019-01-20 18:13:00,224 11th St, New York City,NY,10001 +145822,Macbook Pro Laptop,1,1700.0,2019-01-10 20:29:00,735 Dogwood St, San Francisco,CA,94016 +145823,Lightning Charging Cable,1,14.95,2019-01-08 18:56:00,985 Jackson St, Atlanta,GA,30301 +145824,Wired Headphones,1,11.99,2019-01-24 14:37:00,460 Highland St, Boston,MA,02215 +145825,Lightning Charging Cable,1,14.95,2019-01-30 12:01:00,103 8th St, Los Angeles,CA,90001 +145826,Flatscreen TV,1,300.0,2019-01-25 20:09:00,366 Highland St, Atlanta,GA,30301 +145827,Apple Airpods Headphones,1,150.0,2019-01-12 20:46:00,441 Lakeview St, San Francisco,CA,94016 +145828,Lightning Charging Cable,1,14.95,2019-01-20 13:42:00,403 Adams St, New York City,NY,10001 +145829,Lightning Charging Cable,1,14.95,2019-01-03 15:26:00,813 Lake St, Dallas,TX,75001 +145830,AA Batteries (4-pack),1,3.84,2019-01-25 10:16:00,379 8th St, Austin,TX,73301 +145831,ThinkPad Laptop,1,999.99,2019-01-19 17:08:00,687 Highland St, Portland,ME,04101 +145832,Flatscreen TV,1,300.0,2019-01-29 09:31:00,679 Maple St, Boston,MA,02215 +145833,Apple Airpods Headphones,1,150.0,2019-01-31 10:30:00,667 Washington St, Seattle,WA,98101 +145834,Bose SoundSport Headphones,1,99.99,2019-01-15 18:24:00,131 Highland St, San Francisco,CA,94016 +145835,Lightning Charging Cable,1,14.95,2019-01-19 21:50:00,915 Highland St, San Francisco,CA,94016 +145836,Google Phone,1,600.0,2019-01-22 08:50:00,592 Adams St, Boston,MA,02215 +145837,27in FHD Monitor,1,149.99,2019-01-12 16:11:00,73 13th St, San Francisco,CA,94016 +145838,ThinkPad Laptop,1,999.99,2019-01-02 11:29:00,798 Hickory St, Austin,TX,73301 +145839,USB-C Charging Cable,1,11.95,2019-01-28 07:08:00,363 4th St, Boston,MA,02215 +145840,Apple Airpods Headphones,1,150.0,2019-01-03 19:51:00,906 Highland St, San Francisco,CA,94016 +145841,AA Batteries (4-pack),1,3.84,2019-01-29 22:33:00,675 Sunset St, Dallas,TX,75001 +145842,Bose SoundSport Headphones,1,99.99,2019-01-19 18:49:00,248 Pine St, San Francisco,CA,94016 +145843,Wired Headphones,1,11.99,2019-01-03 11:30:00,564 Hickory St, Los Angeles,CA,90001 +145844,AA Batteries (4-pack),2,3.84,2019-01-10 17:49:00,53 West St, New York City,NY,10001 +145845,AAA Batteries (4-pack),2,2.99,2019-01-30 18:37:00,225 4th St, Boston,MA,02215 +145846,27in 4K Gaming Monitor,1,389.99,2019-01-10 14:53:00,129 Cedar St, Atlanta,GA,30301 +145847,20in Monitor,1,109.99,2019-01-18 19:28:00,565 Church St, San Francisco,CA,94016 +145848,Wired Headphones,2,11.99,2019-01-14 15:36:00,446 Church St, Dallas,TX,75001 +145849,Apple Airpods Headphones,1,150.0,2019-01-03 13:14:00,132 Ridge St, Austin,TX,73301 +145850,Wired Headphones,1,11.99,2019-01-07 09:24:00,476 Washington St, Los Angeles,CA,90001 +145851,AAA Batteries (4-pack),2,2.99,2019-01-28 16:48:00,933 14th St, New York City,NY,10001 +145852,USB-C Charging Cable,1,11.95,2019-01-07 17:45:00,113 Lakeview St, Austin,TX,73301 +145853,Wired Headphones,1,11.99,2019-01-19 18:34:00,826 4th St, San Francisco,CA,94016 +145854,USB-C Charging Cable,2,11.95,2019-01-20 06:31:00,7 1st St, San Francisco,CA,94016 +145855,AAA Batteries (4-pack),1,2.99,2019-01-20 10:55:00,855 Chestnut St, Austin,TX,73301 +145856,USB-C Charging Cable,1,11.95,2019-01-20 10:36:00,307 Wilson St, San Francisco,CA,94016 +145857,Lightning Charging Cable,1,14.95,2019-01-03 11:07:00,234 Meadow St, Los Angeles,CA,90001 +145858,Wired Headphones,1,11.99,2019-01-04 08:45:00,82 11th St, Austin,TX,73301 +145859,Apple Airpods Headphones,1,150.0,2019-01-23 20:43:00,595 Ridge St, San Francisco,CA,94016 +145860,USB-C Charging Cable,1,11.95,2019-01-06 09:11:00,813 Chestnut St, Los Angeles,CA,90001 +145861,34in Ultrawide Monitor,1,379.99,2019-01-14 15:48:00,769 5th St, San Francisco,CA,94016 +145862,Apple Airpods Headphones,1,150.0,2019-01-29 08:39:00,830 Hickory St, Portland,OR,97035 +145863,AA Batteries (4-pack),2,3.84,2019-01-05 08:09:00,654 5th St, Dallas,TX,75001 +145864,Lightning Charging Cable,1,14.95,2019-01-26 15:56:00,508 6th St, Seattle,WA,98101 +145865,20in Monitor,1,109.99,2019-01-23 11:56:00,45 Ridge St, Dallas,TX,75001 +145866,Wired Headphones,1,11.99,2019-01-20 19:33:00,164 14th St, New York City,NY,10001 +145866,AAA Batteries (4-pack),2,2.99,2019-01-20 19:33:00,164 14th St, New York City,NY,10001 +145867,ThinkPad Laptop,1,999.99,2019-01-17 03:32:00,533 Chestnut St, Seattle,WA,98101 +145868,Lightning Charging Cable,1,14.95,2019-01-17 15:01:00,830 14th St, San Francisco,CA,94016 +145869,Lightning Charging Cable,1,14.95,2019-01-21 21:58:00,555 Lake St, San Francisco,CA,94016 +145870,Macbook Pro Laptop,1,1700.0,2019-01-28 18:16:00,727 Johnson St, New York City,NY,10001 +145871,USB-C Charging Cable,1,11.95,2019-01-25 09:57:00,573 Jefferson St, New York City,NY,10001 +145872,AA Batteries (4-pack),1,3.84,2019-01-11 18:54:00,238 12th St, Los Angeles,CA,90001 +145873,USB-C Charging Cable,1,11.95,2019-01-16 09:57:00,305 Church St, Seattle,WA,98101 +145873,Bose SoundSport Headphones,1,99.99,2019-01-16 09:57:00,305 Church St, Seattle,WA,98101 +145874,27in 4K Gaming Monitor,1,389.99,2019-01-29 01:11:00,411 Chestnut St, New York City,NY,10001 +145875,AA Batteries (4-pack),1,3.84,2019-01-28 14:21:00,244 Meadow St, San Francisco,CA,94016 +145876,27in 4K Gaming Monitor,1,389.99,2019-01-29 20:56:00,386 Wilson St, Boston,MA,02215 +145877,USB-C Charging Cable,1,11.95,2019-01-11 14:07:00,974 Hill St, Los Angeles,CA,90001 +145878,Macbook Pro Laptop,1,1700.0,2019-01-01 07:48:00,456 5th St, Los Angeles,CA,90001 +145879,Lightning Charging Cable,1,14.95,2019-01-05 13:03:00,373 Lincoln St, San Francisco,CA,94016 +145880,AA Batteries (4-pack),1,3.84,2019-01-09 20:26:00,44 5th St, New York City,NY,10001 +145881,Lightning Charging Cable,1,14.95,2019-01-06 08:57:00,169 Highland St, Boston,MA,02215 +145882,Apple Airpods Headphones,1,150.0,2019-01-30 09:36:00,539 14th St, New York City,NY,10001 +145883,Lightning Charging Cable,2,14.95,2019-01-23 21:27:00,451 Madison St, San Francisco,CA,94016 +145884,Wired Headphones,1,11.99,2019-01-03 23:19:00,786 Sunset St, Boston,MA,02215 +145885,USB-C Charging Cable,1,11.95,2019-01-10 11:35:00,152 Hill St, Atlanta,GA,30301 +145886,Wired Headphones,1,11.99,2019-01-25 19:21:00,13 Main St, Los Angeles,CA,90001 +145887,AAA Batteries (4-pack),1,2.99,2019-01-03 14:50:00,122 South St, Atlanta,GA,30301 +145888,ThinkPad Laptop,1,999.99,2019-01-25 19:55:00,245 Highland St, San Francisco,CA,94016 +145889,Lightning Charging Cable,1,14.95,2019-01-31 07:58:00,722 Willow St, Boston,MA,02215 +145890,LG Washing Machine,1,600.0,2019-01-28 23:05:00,697 Chestnut St, Seattle,WA,98101 +145891,AAA Batteries (4-pack),2,2.99,2019-01-29 19:24:00,697 North St, Boston,MA,02215 +145892,AA Batteries (4-pack),1,3.84,2019-01-17 16:33:00,517 Cedar St, Portland,OR,97035 +145893,Flatscreen TV,1,300.0,2019-01-09 16:35:00,769 Hill St, Los Angeles,CA,90001 +145894,Apple Airpods Headphones,1,150.0,2019-01-07 12:43:00,935 Walnut St, Boston,MA,02215 +145895,Bose SoundSport Headphones,1,99.99,2019-01-21 00:17:00,170 Park St, Boston,MA,02215 +145896,Bose SoundSport Headphones,1,99.99,2019-01-04 10:23:00,801 Spruce St, Atlanta,GA,30301 +145897,Bose SoundSport Headphones,1,99.99,2019-01-11 20:06:00,687 Wilson St, San Francisco,CA,94016 +145898,Wired Headphones,1,11.99,2019-01-19 17:32:00,280 Chestnut St, Portland,OR,97035 +145899,AAA Batteries (4-pack),1,2.99,2019-01-29 15:30:00,807 Cherry St, Boston,MA,02215 +145900,iPhone,1,700.0,2019-01-21 15:19:00,601 10th St, Atlanta,GA,30301 +145901,34in Ultrawide Monitor,1,379.99,2019-01-10 01:26:00,705 8th St, San Francisco,CA,94016 +145902,Bose SoundSport Headphones,1,99.99,2019-01-13 23:49:00,671 14th St, San Francisco,CA,94016 +145903,AA Batteries (4-pack),1,3.84,2019-01-23 17:39:00,717 Washington St, Los Angeles,CA,90001 +145904,Lightning Charging Cable,1,14.95,2019-01-16 18:48:00,393 Madison St, New York City,NY,10001 +145905,AA Batteries (4-pack),1,3.84,2019-01-16 20:00:00,129 5th St, Los Angeles,CA,90001 +145906,AAA Batteries (4-pack),1,2.99,2019-01-13 10:40:00,84 Cedar St, Los Angeles,CA,90001 +145907,ThinkPad Laptop,1,999.99,2019-01-04 02:10:00,729 North St, Atlanta,GA,30301 +145908,Flatscreen TV,1,300.0,2019-01-09 10:09:00,113 Center St, Seattle,WA,98101 +145909,Lightning Charging Cable,1,14.95,2019-01-15 14:31:00,850 2nd St, San Francisco,CA,94016 +145910,USB-C Charging Cable,1,11.95,2019-01-08 23:12:00,991 Madison St, San Francisco,CA,94016 +145911,iPhone,1,700.0,2019-01-27 10:14:00,347 Maple St, Seattle,WA,98101 +145912,USB-C Charging Cable,1,11.95,2019-01-16 22:20:00,364 Meadow St, San Francisco,CA,94016 +145913,AA Batteries (4-pack),4,3.84,2019-01-13 11:22:00,320 9th St, San Francisco,CA,94016 +145914,27in FHD Monitor,1,149.99,2019-01-03 10:42:00,153 Cedar St, Los Angeles,CA,90001 +145915,Apple Airpods Headphones,1,150.0,2019-01-29 22:58:00,911 2nd St, Seattle,WA,98101 +145916,Lightning Charging Cable,1,14.95,2019-01-24 11:47:00,7 5th St, Los Angeles,CA,90001 +145917,Wired Headphones,1,11.99,2019-01-09 15:55:00,367 Hickory St, Los Angeles,CA,90001 +145918,Flatscreen TV,1,300.0,2019-01-30 09:58:00,685 Elm St, New York City,NY,10001 +145919,Lightning Charging Cable,1,14.95,2019-01-07 23:24:00,889 Jefferson St, Atlanta,GA,30301 +145920,USB-C Charging Cable,1,11.95,2019-01-18 20:43:00,60 River St, Dallas,TX,75001 +145921,AAA Batteries (4-pack),1,2.99,2019-01-26 12:02:00,742 Highland St, Los Angeles,CA,90001 +145922,Google Phone,1,600.0,2019-01-06 18:23:00,770 Main St, Los Angeles,CA,90001 +145922,USB-C Charging Cable,1,11.95,2019-01-06 18:23:00,770 Main St, Los Angeles,CA,90001 +145923,Wired Headphones,1,11.99,2019-01-14 14:07:00,591 South St, New York City,NY,10001 +145924,AA Batteries (4-pack),1,3.84,2019-01-27 14:59:00,848 Forest St, San Francisco,CA,94016 +145925,Wired Headphones,1,11.99,2019-01-13 20:15:00,767 Forest St, Los Angeles,CA,90001 +145926,AAA Batteries (4-pack),1,2.99,2019-01-10 10:42:00,629 8th St, Seattle,WA,98101 +145927,Vareebadd Phone,1,400.0,2019-01-21 19:02:00,148 8th St, San Francisco,CA,94016 +145927,USB-C Charging Cable,1,11.95,2019-01-21 19:02:00,148 8th St, San Francisco,CA,94016 +145927,Wired Headphones,1,11.99,2019-01-21 19:02:00,148 8th St, San Francisco,CA,94016 +145928,Lightning Charging Cable,1,14.95,2019-01-11 17:19:00,934 Maple St, Los Angeles,CA,90001 +145929,USB-C Charging Cable,1,11.95,2019-01-11 12:03:00,416 Park St, Portland,OR,97035 +145930,27in FHD Monitor,1,149.99,2019-01-06 21:12:00,898 6th St, Seattle,WA,98101 +145931,Wired Headphones,1,11.99,2019-01-21 11:29:00,324 Willow St, New York City,NY,10001 +145932,Apple Airpods Headphones,1,150.0,2019-01-27 15:24:00,844 Park St, New York City,NY,10001 +145933,27in FHD Monitor,1,149.99,2019-01-29 16:51:00,45 Hill St, Portland,OR,97035 +145934,AAA Batteries (4-pack),5,2.99,2019-01-11 09:32:00,259 Washington St, Atlanta,GA,30301 +145935,27in 4K Gaming Monitor,1,389.99,2019-01-26 13:26:00,980 11th St, San Francisco,CA,94016 +145935,AA Batteries (4-pack),1,3.84,2019-01-26 13:26:00,980 11th St, San Francisco,CA,94016 +145936,Bose SoundSport Headphones,1,99.99,2019-01-03 16:38:00,572 River St, Austin,TX,73301 +145937,AAA Batteries (4-pack),1,2.99,2019-01-16 18:18:00,391 12th St, Atlanta,GA,30301 +145938,AAA Batteries (4-pack),1,2.99,2019-01-05 08:05:00,173 6th St, San Francisco,CA,94016 +145939,ThinkPad Laptop,1,999.99,2019-01-09 22:42:00,677 Chestnut St, Seattle,WA,98101 +145940,Lightning Charging Cable,1,14.95,2019-01-03 20:51:00,63 5th St, San Francisco,CA,94016 +145941,Bose SoundSport Headphones,1,99.99,2019-01-29 15:21:00,168 2nd St, Austin,TX,73301 +145942,Bose SoundSport Headphones,1,99.99,2019-01-29 11:19:00,336 11th St, Dallas,TX,75001 +145943,Bose SoundSport Headphones,1,99.99,2019-01-13 11:38:00,692 South St, Seattle,WA,98101 +145944,Wired Headphones,1,11.99,2019-01-01 21:32:00,482 Center St, San Francisco,CA,94016 +145945,AA Batteries (4-pack),4,3.84,2019-01-18 13:18:00,774 12th St, Portland,OR,97035 +145946,USB-C Charging Cable,1,11.95,2019-01-22 00:14:00,980 Lake St, Los Angeles,CA,90001 +145947,AA Batteries (4-pack),1,3.84,2019-01-06 13:18:00,910 4th St, San Francisco,CA,94016 +145948,USB-C Charging Cable,1,11.95,2019-01-24 15:28:00,870 Cherry St, Atlanta,GA,30301 +145949,20in Monitor,1,109.99,2019-01-25 15:05:00,300 North St, San Francisco,CA,94016 +145950,27in FHD Monitor,1,149.99,2019-01-16 23:55:00,618 Chestnut St, Portland,OR,97035 +145951,Apple Airpods Headphones,1,150.0,2019-01-18 15:22:00,92 Highland St, San Francisco,CA,94016 +145952,AA Batteries (4-pack),2,3.84,2019-01-13 21:28:00,706 Dogwood St, Atlanta,GA,30301 +145953,Wired Headphones,2,11.99,2019-01-30 07:55:00,989 Johnson St, New York City,NY,10001 +145954,Lightning Charging Cable,1,14.95,2019-01-10 18:42:00,134 Hickory St, Dallas,TX,75001 +145955,Wired Headphones,1,11.99,2019-01-07 10:06:00,470 West St, New York City,NY,10001 +145956,34in Ultrawide Monitor,1,379.99,2019-01-27 12:44:00,177 Hill St, Los Angeles,CA,90001 +145957,27in 4K Gaming Monitor,1,389.99,2019-01-23 23:05:00,998 4th St, Portland,ME,04101 +145958,Apple Airpods Headphones,1,150.0,2019-01-06 08:28:00,877 Park St, New York City,NY,10001 +145959,Lightning Charging Cable,1,14.95,2019-01-27 12:44:00,687 7th St, Atlanta,GA,30301 +145959,Google Phone,1,600.0,2019-01-27 12:44:00,687 7th St, Atlanta,GA,30301 +145960,USB-C Charging Cable,1,11.95,2019-01-05 12:18:00,177 Walnut St, Boston,MA,02215 +145961,AAA Batteries (4-pack),1,2.99,2019-01-09 19:53:00,561 Johnson St, San Francisco,CA,94016 +145962,Apple Airpods Headphones,1,150.0,2019-01-15 12:16:00,10 Johnson St, Los Angeles,CA,90001 +145963,Wired Headphones,1,11.99,2019-01-29 13:10:00,549 Sunset St, Seattle,WA,98101 +145964,iPhone,1,700.0,2019-01-24 16:19:00,279 4th St, San Francisco,CA,94016 +145964,Wired Headphones,1,11.99,2019-01-24 16:19:00,279 4th St, San Francisco,CA,94016 +145965,Google Phone,1,600.0,2019-01-02 11:12:00,981 Hill St, Atlanta,GA,30301 +145966,AAA Batteries (4-pack),1,2.99,2019-01-02 18:59:00,756 Jefferson St, Los Angeles,CA,90001 +145967,Wired Headphones,1,11.99,2019-01-19 21:20:00,485 Wilson St, Boston,MA,02215 +145968,ThinkPad Laptop,1,999.99,2019-01-10 18:34:00,538 Lakeview St, Portland,OR,97035 +145969,iPhone,1,700.0,2019-01-07 23:05:00,337 1st St, Los Angeles,CA,90001 +145970,Vareebadd Phone,1,400.0,2019-01-17 10:32:00,345 12th St, Los Angeles,CA,90001 +145971,USB-C Charging Cable,1,11.95,2019-01-15 20:15:00,625 Cedar St, New York City,NY,10001 +145972,Lightning Charging Cable,1,14.95,2019-01-22 15:33:00,374 North St, Austin,TX,73301 +145973,27in 4K Gaming Monitor,1,389.99,2019-01-16 14:38:00,233 14th St, Seattle,WA,98101 +145974,Lightning Charging Cable,1,14.95,2019-01-10 10:47:00,666 Center St, Austin,TX,73301 +145975,Flatscreen TV,1,300.0,2019-01-25 11:26:00,496 14th St, Los Angeles,CA,90001 +145976,AAA Batteries (4-pack),1,2.99,2019-01-07 19:18:00,255 South St, Austin,TX,73301 +145977,34in Ultrawide Monitor,1,379.99,2019-01-20 12:54:00,39 Lakeview St, Boston,MA,02215 +145978,iPhone,1,700.0,2019-01-18 14:29:00,612 Spruce St, Seattle,WA,98101 +145979,AA Batteries (4-pack),1,3.84,2019-01-18 12:38:00,379 Pine St, San Francisco,CA,94016 +145980,34in Ultrawide Monitor,1,379.99,2019-01-16 09:11:00,951 6th St, San Francisco,CA,94016 +145981,AA Batteries (4-pack),1,3.84,2019-01-26 10:36:00,588 9th St, Los Angeles,CA,90001 +145982,27in FHD Monitor,1,149.99,2019-01-31 14:04:00,546 Main St, Atlanta,GA,30301 +145983,Bose SoundSport Headphones,1,99.99,2019-01-04 11:55:00,487 Jefferson St, Seattle,WA,98101 +145984,USB-C Charging Cable,1,11.95,2019-01-29 16:47:00,634 4th St, Los Angeles,CA,90001 +145985,Wired Headphones,1,11.99,2019-01-10 10:21:00,674 Cedar St, Dallas,TX,75001 +145986,AAA Batteries (4-pack),1,2.99,2019-01-24 12:43:00,785 Sunset St, Dallas,TX,75001 +145987,AAA Batteries (4-pack),1,2.99,2019-01-18 10:38:00,539 Jefferson St, Los Angeles,CA,90001 +145988,27in FHD Monitor,1,149.99,2019-01-30 08:22:00,917 Center St, San Francisco,CA,94016 +145989,Macbook Pro Laptop,1,1700.0,2019-01-26 10:40:00,596 Willow St, San Francisco,CA,94016 +145990,AAA Batteries (4-pack),1,2.99,2019-01-01 09:03:00,325 Madison St, Dallas,TX,75001 +145991,AAA Batteries (4-pack),1,2.99,2019-01-15 08:29:00,583 North St, Boston,MA,02215 +145992,Bose SoundSport Headphones,1,99.99,2019-01-02 19:54:00,51 Jefferson St, San Francisco,CA,94016 +145993,AA Batteries (4-pack),3,3.84,2019-01-02 18:43:00,493 6th St, San Francisco,CA,94016 +145994,Wired Headphones,1,11.99,2019-01-29 10:45:00,111 Ridge St, Los Angeles,CA,90001 +145995,iPhone,1,700.0,2019-01-23 17:12:00,916 Church St, Los Angeles,CA,90001 +145996,Bose SoundSport Headphones,1,99.99,2019-01-26 14:29:00,115 1st St, Seattle,WA,98101 +145997,Lightning Charging Cable,1,14.95,2019-01-18 11:24:00,36 West St, San Francisco,CA,94016 +145998,Bose SoundSport Headphones,1,99.99,2019-01-27 09:16:00,531 Adams St, Atlanta,GA,30301 +145999,Wired Headphones,1,11.99,2019-01-25 08:55:00,18 Forest St, New York City,NY,10001 +146000,Lightning Charging Cable,1,14.95,2019-01-28 09:46:00,269 Cedar St, New York City,NY,10001 +146001,20in Monitor,1,109.99,2019-01-22 08:09:00,664 2nd St, San Francisco,CA,94016 +146002,AAA Batteries (4-pack),1,2.99,2019-01-20 09:07:00,780 North St, Atlanta,GA,30301 +146003,USB-C Charging Cable,1,11.95,2019-01-17 16:57:00,178 5th St, San Francisco,CA,94016 +146003,Wired Headphones,1,11.99,2019-01-17 16:57:00,178 5th St, San Francisco,CA,94016 +146004,ThinkPad Laptop,1,999.99,2019-01-16 09:36:00,396 Church St, Dallas,TX,75001 +146005,Bose SoundSport Headphones,1,99.99,2019-01-12 23:29:00,78 Elm St, Atlanta,GA,30301 +146006,Flatscreen TV,1,300.0,2019-01-14 11:11:00,254 5th St, Los Angeles,CA,90001 +146006,AA Batteries (4-pack),2,3.84,2019-01-14 11:11:00,254 5th St, Los Angeles,CA,90001 +146007,USB-C Charging Cable,2,11.95,2019-01-28 15:29:00,421 Dogwood St, New York City,NY,10001 +146008,Wired Headphones,1,11.99,2019-01-09 20:06:00,807 Adams St, Dallas,TX,75001 +146009,Apple Airpods Headphones,1,150.0,2019-01-02 16:34:00,124 Ridge St, New York City,NY,10001 +146010,34in Ultrawide Monitor,1,379.99,2019-01-08 22:23:00,621 Adams St, New York City,NY,10001 +146011,AAA Batteries (4-pack),1,2.99,2019-01-29 22:02:00,747 Ridge St, Los Angeles,CA,90001 +146012,Wired Headphones,1,11.99,2019-01-05 12:30:00,874 South St, Atlanta,GA,30301 +146013,AAA Batteries (4-pack),3,2.99,2019-01-05 19:18:00,123 Johnson St, New York City,NY,10001 +146014,27in 4K Gaming Monitor,1,389.99,2019-01-16 21:25:00,183 10th St, Seattle,WA,98101 +146015,Flatscreen TV,1,300.0,2019-01-07 16:32:00,198 Wilson St, San Francisco,CA,94016 +146016,AAA Batteries (4-pack),1,2.99,2019-01-02 21:18:00,605 14th St, San Francisco,CA,94016 +146017,Flatscreen TV,1,300.0,2019-01-15 19:09:00,236 7th St, Dallas,TX,75001 +146018,AA Batteries (4-pack),1,3.84,2019-01-25 17:53:00,925 Lake St, New York City,NY,10001 +146019,Lightning Charging Cable,1,14.95,2019-01-04 14:58:00,49 Meadow St, Los Angeles,CA,90001 +146020,Lightning Charging Cable,1,14.95,2019-01-28 16:17:00,501 Washington St, New York City,NY,10001 +146021,Lightning Charging Cable,1,14.95,2019-01-10 16:15:00,391 12th St, Los Angeles,CA,90001 +146021,AA Batteries (4-pack),1,3.84,2019-01-10 16:15:00,391 12th St, Los Angeles,CA,90001 +146022,34in Ultrawide Monitor,1,379.99,2019-01-01 21:32:00,256 10th St, New York City,NY,10001 +146023,Lightning Charging Cable,1,14.95,2019-01-20 12:41:00,728 North St, New York City,NY,10001 +146024,AA Batteries (4-pack),1,3.84,2019-01-20 21:21:00,664 Dogwood St, Atlanta,GA,30301 +146025,AAA Batteries (4-pack),1,2.99,2019-01-21 18:57:00,933 Lincoln St, Portland,OR,97035 +146026,Apple Airpods Headphones,1,150.0,2019-01-31 00:33:00,401 Ridge St, Boston,MA,02215 +146027,Wired Headphones,1,11.99,2019-01-18 09:49:00,931 11th St, Boston,MA,02215 +146028,Apple Airpods Headphones,1,150.0,2019-01-29 21:45:00,152 Center St, Austin,TX,73301 +146029,iPhone,1,700.0,2019-01-02 16:27:00,768 Willow St, Atlanta,GA,30301 +146029,Apple Airpods Headphones,1,150.0,2019-01-02 16:27:00,768 Willow St, Atlanta,GA,30301 +146030,27in 4K Gaming Monitor,1,389.99,2019-01-09 22:32:00,971 9th St, Los Angeles,CA,90001 +146031,AA Batteries (4-pack),5,3.84,2019-01-12 21:09:00,446 5th St, New York City,NY,10001 +146032,USB-C Charging Cable,1,11.95,2019-01-27 08:10:00,185 Lake St, Seattle,WA,98101 +146033,34in Ultrawide Monitor,1,379.99,2019-01-12 20:51:00,526 Cedar St, San Francisco,CA,94016 +146034,AAA Batteries (4-pack),3,2.99,2019-01-20 16:15:00,243 Madison St, New York City,NY,10001 +146035,Lightning Charging Cable,1,14.95,2019-01-19 13:30:00,737 Jackson St, San Francisco,CA,94016 +146036,AA Batteries (4-pack),1,3.84,2019-01-04 14:20:00,708 5th St, Los Angeles,CA,90001 +146037,Wired Headphones,1,11.99,2019-01-02 18:37:00,967 Hickory St, Dallas,TX,75001 +146038,Bose SoundSport Headphones,1,99.99,2019-01-19 15:53:00,28 1st St, Atlanta,GA,30301 +146039,34in Ultrawide Monitor,1,379.99,2019-01-01 07:24:00,53 River St, San Francisco,CA,94016 +146040,AAA Batteries (4-pack),1,2.99,2019-01-25 21:24:00,791 Jefferson St, San Francisco,CA,94016 +146041,AAA Batteries (4-pack),2,2.99,2019-01-07 09:54:00,153 11th St, Austin,TX,73301 +146042,Lightning Charging Cable,1,14.95,2019-01-13 16:33:00,919 Forest St, New York City,NY,10001 +146043,Apple Airpods Headphones,1,150.0,2019-01-08 12:23:00,500 River St, San Francisco,CA,94016 +146044,AAA Batteries (4-pack),1,2.99,2019-01-10 19:27:00,5 Lincoln St, Los Angeles,CA,90001 +146045,Macbook Pro Laptop,1,1700.0,2019-01-26 11:01:00,857 2nd St, Boston,MA,02215 +146046,Wired Headphones,1,11.99,2019-01-17 12:36:00,311 Spruce St, San Francisco,CA,94016 +146047,Wired Headphones,1,11.99,2019-01-26 14:44:00,563 Center St, Portland,OR,97035 +146048,AAA Batteries (4-pack),1,2.99,2019-01-31 08:57:00,710 2nd St, Austin,TX,73301 +146049,AAA Batteries (4-pack),1,2.99,2019-01-18 08:18:00,39 Center St, Seattle,WA,98101 +146050,Lightning Charging Cable,1,14.95,2019-01-02 14:04:00,667 7th St, Boston,MA,02215 +146051,34in Ultrawide Monitor,1,379.99,2019-01-20 07:40:00,379 9th St, San Francisco,CA,94016 +146052,27in FHD Monitor,1,149.99,2019-01-26 16:03:00,874 Adams St, Seattle,WA,98101 +146053,Lightning Charging Cable,1,14.95,2019-01-05 22:26:00,15 Main St, Atlanta,GA,30301 +146054,Wired Headphones,1,11.99,2019-01-26 13:02:00,919 Hill St, Atlanta,GA,30301 +146055,USB-C Charging Cable,1,11.95,2019-01-09 20:29:00,524 Washington St, Los Angeles,CA,90001 +146056,Lightning Charging Cable,1,14.95,2019-01-01 07:53:00,622 Hill St, Portland,OR,97035 +146057,20in Monitor,1,109.99,2019-01-26 16:54:00,896 Johnson St, Seattle,WA,98101 +146058,20in Monitor,1,109.99,2019-01-25 16:55:00,39 2nd St, Boston,MA,02215 +146059,AA Batteries (4-pack),1,3.84,2019-01-15 10:25:00,749 Spruce St, Dallas,TX,75001 +146060,Wired Headphones,1,11.99,2019-01-22 17:45:00,983 Jackson St, New York City,NY,10001 +146061,USB-C Charging Cable,1,11.95,2019-01-13 00:27:00,290 Park St, San Francisco,CA,94016 +146062,27in FHD Monitor,1,149.99,2019-01-19 12:48:00,700 Dogwood St, Los Angeles,CA,90001 +146063,Vareebadd Phone,1,400.0,2019-01-29 11:35:00,210 Cedar St, Seattle,WA,98101 +146064,USB-C Charging Cable,1,11.95,2019-01-07 10:04:00,283 7th St, San Francisco,CA,94016 +146065,Apple Airpods Headphones,1,150.0,2019-01-06 20:36:00,496 Chestnut St, Atlanta,GA,30301 +146066,ThinkPad Laptop,1,999.99,2019-01-08 14:16:00,714 River St, Los Angeles,CA,90001 +146067,Wired Headphones,1,11.99,2019-01-11 21:12:00,810 Spruce St, Austin,TX,73301 +146068,AA Batteries (4-pack),2,3.84,2019-01-30 08:14:00,964 11th St, Boston,MA,02215 +146069,iPhone,1,700.0,2019-01-07 21:02:00,489 Sunset St, Boston,MA,02215 +146070,AAA Batteries (4-pack),1,2.99,2019-01-29 17:27:00,184 Highland St, Los Angeles,CA,90001 +146071,Wired Headphones,1,11.99,2019-01-11 09:32:00,78 Madison St, San Francisco,CA,94016 +146072,AA Batteries (4-pack),1,3.84,2019-01-07 09:06:00,675 Dogwood St, Boston,MA,02215 +146073,AA Batteries (4-pack),1,3.84,2019-01-06 20:46:00,895 2nd St, San Francisco,CA,94016 +146074,USB-C Charging Cable,1,11.95,2019-01-02 17:31:00,436 9th St, Seattle,WA,98101 +146075,Apple Airpods Headphones,1,150.0,2019-01-03 19:28:00,317 Madison St, Los Angeles,CA,90001 +146076,AAA Batteries (4-pack),1,2.99,2019-01-22 09:07:00,84 Hickory St, New York City,NY,10001 +146077,iPhone,1,700.0,2019-01-21 02:41:00,460 Hickory St, Boston,MA,02215 +146078,Apple Airpods Headphones,1,150.0,2019-01-22 16:11:00,422 Walnut St, Portland,OR,97035 +146079,AA Batteries (4-pack),1,3.84,2019-01-23 21:22:00,889 13th St, San Francisco,CA,94016 +146080,Google Phone,1,600.0,2019-01-16 18:38:00,364 Main St, Los Angeles,CA,90001 +146081,iPhone,1,700.0,2019-01-03 20:46:00,475 Hickory St, Los Angeles,CA,90001 +146082,Bose SoundSport Headphones,1,99.99,2019-01-05 13:06:00,968 Lake St, New York City,NY,10001 +146083,20in Monitor,1,109.99,2019-01-20 14:20:00,43 Lakeview St, San Francisco,CA,94016 +146084,AAA Batteries (4-pack),1,2.99,2019-01-29 09:55:00,798 Madison St, Dallas,TX,75001 +146085,iPhone,1,700.0,2019-01-01 14:52:00,901 12th St, Seattle,WA,98101 +146086,iPhone,1,700.0,2019-01-13 08:06:00,32 8th St, New York City,NY,10001 +146087,USB-C Charging Cable,1,11.95,2019-01-07 13:41:00,15 10th St, New York City,NY,10001 +146088,AAA Batteries (4-pack),1,2.99,2019-01-09 21:05:00,326 Maple St, Seattle,WA,98101 +146089,Apple Airpods Headphones,1,150.0,2019-01-10 21:06:00,106 7th St, Boston,MA,02215 +146090,Bose SoundSport Headphones,1,99.99,2019-01-09 18:41:00,446 Lakeview St, San Francisco,CA,94016 +146091,USB-C Charging Cable,1,11.95,2019-01-19 20:59:00,794 9th St, Austin,TX,73301 +146092,Flatscreen TV,1,300.0,2019-01-16 21:45:00,914 Adams St, San Francisco,CA,94016 +146093,ThinkPad Laptop,1,999.99,2019-01-10 15:15:00,123 14th St, Austin,TX,73301 +146094,Bose SoundSport Headphones,1,99.99,2019-01-18 19:51:00,678 14th St, Dallas,TX,75001 +146095,Macbook Pro Laptop,1,1700.0,2019-01-07 21:17:00,13 Johnson St, Los Angeles,CA,90001 +146096,27in FHD Monitor,1,149.99,2019-01-09 02:09:00,822 Wilson St, New York City,NY,10001 +146097,USB-C Charging Cable,1,11.95,2019-01-22 12:50:00,808 6th St, San Francisco,CA,94016 +146098,AA Batteries (4-pack),2,3.84,2019-01-16 13:53:00,3 Lakeview St, Los Angeles,CA,90001 +146099,Bose SoundSport Headphones,1,99.99,2019-01-15 12:22:00,612 Main St, Los Angeles,CA,90001 +146100,Wired Headphones,1,11.99,2019-01-01 10:02:00,428 13th St, Austin,TX,73301 +146101,Wired Headphones,1,11.99,2019-01-15 10:58:00,480 4th St, Portland,OR,97035 +146102,34in Ultrawide Monitor,1,379.99,2019-01-27 10:48:00,213 Willow St, Boston,MA,02215 +146103,Bose SoundSport Headphones,1,99.99,2019-01-08 15:15:00,571 Johnson St, San Francisco,CA,94016 +146104,AA Batteries (4-pack),1,3.84,2019-01-12 05:40:00,252 8th St, Austin,TX,73301 +146105,AAA Batteries (4-pack),1,2.99,2019-01-22 20:03:00,628 14th St, Atlanta,GA,30301 +146106,Lightning Charging Cable,1,14.95,2019-01-08 09:25:00,42 13th St, San Francisco,CA,94016 +146107,AA Batteries (4-pack),1,3.84,2019-01-09 16:06:00,877 2nd St, Portland,OR,97035 +146108,Bose SoundSport Headphones,1,99.99,2019-01-09 22:33:00,83 Adams St, New York City,NY,10001 +146109,USB-C Charging Cable,1,11.95,2019-01-22 17:14:00,299 Pine St, Los Angeles,CA,90001 +146110,Wired Headphones,2,11.99,2019-01-25 13:55:00,635 Chestnut St, Atlanta,GA,30301 +146111,AAA Batteries (4-pack),3,2.99,2019-01-10 15:36:00,126 Pine St, Seattle,WA,98101 +146112,USB-C Charging Cable,1,11.95,2019-01-01 09:36:00,973 Adams St, Portland,OR,97035 +146113,Lightning Charging Cable,1,14.95,2019-01-08 16:31:00,565 Lakeview St, Dallas,TX,75001 +146114,Apple Airpods Headphones,1,150.0,2019-01-22 03:15:00,724 Cherry St, Los Angeles,CA,90001 +146115,Lightning Charging Cable,1,14.95,2019-01-15 23:11:00,576 Spruce St, Los Angeles,CA,90001 +146116,Lightning Charging Cable,1,14.95,2019-01-02 10:42:00,110 7th St, Boston,MA,02215 +146117,Lightning Charging Cable,1,14.95,2019-01-02 10:27:00,291 Wilson St, Seattle,WA,98101 +146118,USB-C Charging Cable,1,11.95,2019-01-13 07:54:00,554 14th St, Seattle,WA,98101 +146119,27in FHD Monitor,1,149.99,2019-01-30 23:13:00,294 2nd St, New York City,NY,10001 +146120,27in FHD Monitor,1,149.99,2019-01-18 01:09:00,853 1st St, San Francisco,CA,94016 +146121,Flatscreen TV,1,300.0,2019-01-21 23:40:00,494 4th St, New York City,NY,10001 +146122,USB-C Charging Cable,1,11.95,2019-01-22 13:31:00,197 10th St, San Francisco,CA,94016 +146123,Wired Headphones,1,11.99,2019-01-31 02:25:00,638 Lincoln St, Boston,MA,02215 +146124,20in Monitor,1,109.99,2019-01-18 23:09:00,589 6th St, Austin,TX,73301 +146125,Bose SoundSport Headphones,1,99.99,2019-01-03 01:22:00,489 Washington St, San Francisco,CA,94016 +146126,Bose SoundSport Headphones,1,99.99,2019-01-26 11:19:00,286 Washington St, San Francisco,CA,94016 +146127,AAA Batteries (4-pack),1,2.99,2019-01-08 11:48:00,731 Jackson St, New York City,NY,10001 +146128,Lightning Charging Cable,1,14.95,2019-01-13 20:10:00,981 5th St, San Francisco,CA,94016 +146129,iPhone,1,700.0,2019-01-12 11:28:00,303 Walnut St, San Francisco,CA,94016 +146129,Lightning Charging Cable,1,14.95,2019-01-12 11:28:00,303 Walnut St, San Francisco,CA,94016 +146130,Apple Airpods Headphones,1,150.0,2019-01-05 22:35:00,739 River St, San Francisco,CA,94016 +146131,27in FHD Monitor,1,149.99,2019-01-21 03:21:00,298 Hill St, Boston,MA,02215 +146132,AA Batteries (4-pack),2,3.84,2019-01-24 13:42:00,491 Church St, Dallas,TX,75001 +146133,AAA Batteries (4-pack),3,2.99,2019-01-07 10:55:00,551 13th St, Dallas,TX,75001 +146134,Lightning Charging Cable,1,14.95,2019-01-29 07:08:00,207 Forest St, Austin,TX,73301 +146135,USB-C Charging Cable,1,11.95,2019-01-01 20:45:00,876 8th St, San Francisco,CA,94016 +146136,AA Batteries (4-pack),1,3.84,2019-01-08 19:49:00,485 Jackson St, Los Angeles,CA,90001 +146137,27in FHD Monitor,1,149.99,2019-01-28 01:34:00,853 5th St, Seattle,WA,98101 +146138,USB-C Charging Cable,1,11.95,2019-01-25 10:25:00,919 6th St, San Francisco,CA,94016 +146139,Apple Airpods Headphones,1,150.0,2019-01-07 12:42:00,59 Park St, Boston,MA,02215 +146140,Apple Airpods Headphones,1,150.0,2019-01-31 21:03:00,430 Main St, Austin,TX,73301 +146141,USB-C Charging Cable,1,11.95,2019-01-26 22:14:00,593 Meadow St, Austin,TX,73301 +146142,AAA Batteries (4-pack),2,2.99,2019-01-24 19:42:00,720 Cedar St, Dallas,TX,75001 +146143,USB-C Charging Cable,1,11.95,2019-01-09 21:45:00,123 Hickory St, New York City,NY,10001 +146144,iPhone,1,700.0,2019-01-13 21:21:00,726 2nd St, Dallas,TX,75001 +146145,Lightning Charging Cable,1,14.95,2019-01-31 22:51:00,553 Hill St, Seattle,WA,98101 +146146,ThinkPad Laptop,1,999.99,2019-01-15 16:00:00,911 10th St, New York City,NY,10001 +146147,20in Monitor,1,109.99,2019-01-09 13:40:00,61 Chestnut St, Boston,MA,02215 +146148,27in 4K Gaming Monitor,1,389.99,2019-01-08 15:28:00,114 River St, Boston,MA,02215 +146149,ThinkPad Laptop,1,999.99,2019-01-06 08:38:00,527 10th St, Dallas,TX,75001 +146150,Apple Airpods Headphones,1,150.0,2019-01-05 20:14:00,597 1st St, San Francisco,CA,94016 +146151,Google Phone,1,600.0,2019-01-29 15:30:00,492 Jefferson St, Los Angeles,CA,90001 +146152,Lightning Charging Cable,1,14.95,2019-01-16 13:06:00,248 Church St, San Francisco,CA,94016 +146153,Apple Airpods Headphones,1,150.0,2019-01-02 00:10:00,638 Forest St, Austin,TX,73301 +146154,27in 4K Gaming Monitor,1,389.99,2019-01-03 05:23:00,851 Highland St, Los Angeles,CA,90001 +146155,34in Ultrawide Monitor,1,379.99,2019-01-29 12:03:00,374 Willow St, San Francisco,CA,94016 +146156,20in Monitor,1,109.99,2019-01-24 12:23:00,467 7th St, San Francisco,CA,94016 +146157,iPhone,1,700.0,2019-01-06 18:30:00,731 South St, Los Angeles,CA,90001 +146157,Lightning Charging Cable,1,14.95,2019-01-06 18:30:00,731 South St, Los Angeles,CA,90001 +146158,27in FHD Monitor,1,149.99,2019-01-16 19:32:00,918 6th St, Los Angeles,CA,90001 +146159,Apple Airpods Headphones,1,150.0,2019-01-06 10:29:00,864 Main St, Los Angeles,CA,90001 +146160,Bose SoundSport Headphones,1,99.99,2019-01-20 18:45:00,738 Main St, San Francisco,CA,94016 +146161,AAA Batteries (4-pack),1,2.99,2019-01-07 10:27:00,132 Pine St, Los Angeles,CA,90001 +146162,Lightning Charging Cable,1,14.95,2019-01-11 14:12:00,8 Maple St, Los Angeles,CA,90001 +146163,Google Phone,1,600.0,2019-01-30 19:33:00,419 Hickory St, Los Angeles,CA,90001 +146164,Apple Airpods Headphones,1,150.0,2019-01-23 08:58:00,614 Walnut St, Dallas,TX,75001 +146165,27in 4K Gaming Monitor,1,389.99,2019-01-12 20:43:00,507 Main St, San Francisco,CA,94016 +146166,AAA Batteries (4-pack),1,2.99,2019-01-21 19:34:00,472 Pine St, San Francisco,CA,94016 +146167,Lightning Charging Cable,1,14.95,2019-01-04 10:12:00,931 Dogwood St, Dallas,TX,75001 +146168,Google Phone,1,600.0,2019-01-22 01:01:00,277 Washington St, San Francisco,CA,94016 +146169,Apple Airpods Headphones,1,150.0,2019-01-17 20:11:00,929 13th St, Portland,OR,97035 +146170,iPhone,1,700.0,2019-01-30 15:36:00,748 Meadow St, Portland,OR,97035 +146171,AAA Batteries (4-pack),2,2.99,2019-01-09 19:21:00,507 8th St, Portland,ME,04101 +146172,Bose SoundSport Headphones,1,99.99,2019-01-07 15:17:00,251 Hickory St, Atlanta,GA,30301 +146173,Bose SoundSport Headphones,1,99.99,2019-01-15 18:16:00,413 Jefferson St, San Francisco,CA,94016 +146174,Lightning Charging Cable,1,14.95,2019-01-30 17:16:00,209 2nd St, New York City,NY,10001 +146175,27in FHD Monitor,1,149.99,2019-01-26 14:13:00,794 Maple St, Los Angeles,CA,90001 +146176,27in 4K Gaming Monitor,1,389.99,2019-01-10 10:58:00,939 Park St, Los Angeles,CA,90001 +146177,Lightning Charging Cable,1,14.95,2019-01-26 15:41:00,325 Highland St, New York City,NY,10001 +146178,AAA Batteries (4-pack),1,2.99,2019-01-06 11:38:00,174 Ridge St, San Francisco,CA,94016 +146179,Apple Airpods Headphones,1,150.0,2019-01-07 22:48:00,761 Park St, Seattle,WA,98101 +146180,Wired Headphones,1,11.99,2019-01-05 10:19:00,115 Wilson St, Los Angeles,CA,90001 +146181,AA Batteries (4-pack),1,3.84,2019-01-28 18:46:00,284 Spruce St, Los Angeles,CA,90001 +146182,Wired Headphones,1,11.99,2019-01-14 06:28:00,703 Hill St, San Francisco,CA,94016 +146183,AAA Batteries (4-pack),1,2.99,2019-01-25 11:51:00,325 12th St, San Francisco,CA,94016 +146184,iPhone,1,700.0,2019-01-04 20:00:00,519 12th St, Boston,MA,02215 +146185,Wired Headphones,1,11.99,2019-01-24 20:32:00,811 Meadow St, Boston,MA,02215 +146186,34in Ultrawide Monitor,1,379.99,2019-01-20 09:50:00,466 Elm St, Atlanta,GA,30301 +146187,AA Batteries (4-pack),1,3.84,2019-01-01 16:45:00,385 9th St, Portland,OR,97035 +146188,USB-C Charging Cable,2,11.95,2019-01-24 13:21:00,185 2nd St, Dallas,TX,75001 +146189,AAA Batteries (4-pack),1,2.99,2019-01-16 09:27:00,252 Lakeview St, San Francisco,CA,94016 +146190,27in 4K Gaming Monitor,1,389.99,2019-01-10 18:15:00,614 Willow St, Los Angeles,CA,90001 +146191,Flatscreen TV,1,300.0,2019-01-21 08:26:00,730 Hickory St, San Francisco,CA,94016 +146192,AA Batteries (4-pack),3,3.84,2019-01-13 06:26:00,58 Cedar St, San Francisco,CA,94016 +146193,Bose SoundSport Headphones,1,99.99,2019-01-19 18:57:00,827 Cedar St, Seattle,WA,98101 +146194,AA Batteries (4-pack),1,3.84,2019-01-29 12:12:00,817 Cedar St, San Francisco,CA,94016 +146195,Lightning Charging Cable,1,14.95,2019-01-15 17:49:00,616 Spruce St, San Francisco,CA,94016 +146196,AAA Batteries (4-pack),2,2.99,2019-01-22 10:48:00,462 Spruce St, Los Angeles,CA,90001 +146197,AAA Batteries (4-pack),1,2.99,2019-01-12 19:24:00,465 Center St, San Francisco,CA,94016 +146198,Lightning Charging Cable,1,14.95,2019-01-31 16:31:00,347 9th St, New York City,NY,10001 +146199,Wired Headphones,1,11.99,2019-01-19 19:45:00,849 Highland St, Austin,TX,73301 +146200,Lightning Charging Cable,1,14.95,2019-01-13 18:50:00,324 Johnson St, San Francisco,CA,94016 +146201,Macbook Pro Laptop,1,1700.0,2019-01-21 23:10:00,996 Cedar St, Seattle,WA,98101 +146202,USB-C Charging Cable,1,11.95,2019-01-09 23:11:00,532 Washington St, New York City,NY,10001 +146203,27in FHD Monitor,1,149.99,2019-01-23 01:58:00,105 4th St, Atlanta,GA,30301 +146204,AA Batteries (4-pack),2,3.84,2019-01-02 18:16:00,129 Dogwood St, Dallas,TX,75001 +146205,USB-C Charging Cable,1,11.95,2019-01-30 10:22:00,58 Jefferson St, Los Angeles,CA,90001 +146206,Wired Headphones,1,11.99,2019-01-12 23:12:00,522 7th St, Austin,TX,73301 +146207,Lightning Charging Cable,1,14.95,2019-01-18 18:55:00,116 Meadow St, Los Angeles,CA,90001 +146208,AA Batteries (4-pack),1,3.84,2019-01-15 17:00:00,600 River St, Dallas,TX,75001 +146209,Lightning Charging Cable,1,14.95,2019-01-25 19:30:00,339 Adams St, Seattle,WA,98101 +146210,Wired Headphones,1,11.99,2019-01-24 16:09:00,168 North St, San Francisco,CA,94016 +146211,USB-C Charging Cable,1,11.95,2019-01-10 20:23:00,875 North St, Los Angeles,CA,90001 +146212,AAA Batteries (4-pack),1,2.99,2019-01-17 16:51:00,504 1st St, San Francisco,CA,94016 +146213,AA Batteries (4-pack),1,3.84,2019-01-18 15:19:00,219 Washington St, Atlanta,GA,30301 +146214,Vareebadd Phone,1,400.0,2019-01-23 21:41:00,842 Forest St, Los Angeles,CA,90001 +146215,Flatscreen TV,1,300.0,2019-01-26 19:20:00,917 13th St, Los Angeles,CA,90001 +146216,USB-C Charging Cable,1,11.95,2019-01-16 21:02:00,339 Johnson St, San Francisco,CA,94016 +146217,Apple Airpods Headphones,1,150.0,2019-01-23 10:04:00,207 North St, Los Angeles,CA,90001 +146218,Lightning Charging Cable,1,14.95,2019-01-22 11:26:00,946 Dogwood St, Los Angeles,CA,90001 +146219,Wired Headphones,1,11.99,2019-01-16 19:02:00,854 River St, San Francisco,CA,94016 +146220,Apple Airpods Headphones,1,150.0,2019-01-08 10:35:00,371 8th St, Austin,TX,73301 +146221,Lightning Charging Cable,1,14.95,2019-01-02 16:24:00,60 14th St, San Francisco,CA,94016 +146222,27in FHD Monitor,1,149.99,2019-01-11 17:05:00,364 Walnut St, San Francisco,CA,94016 +146223,LG Dryer,1,600.0,2019-01-15 14:26:00,522 Forest St, San Francisco,CA,94016 +146224,Apple Airpods Headphones,1,150.0,2019-01-28 14:48:00,810 Main St, Boston,MA,02215 +146225,Wired Headphones,1,11.99,2019-01-13 11:38:00,899 Chestnut St, Los Angeles,CA,90001 +146226,Apple Airpods Headphones,1,150.0,2019-01-12 14:29:00,229 Maple St, New York City,NY,10001 +146227,27in 4K Gaming Monitor,1,389.99,2019-01-09 15:27:00,186 Elm St, San Francisco,CA,94016 +146228,AAA Batteries (4-pack),7,2.99,2019-01-13 17:44:00,722 South St, Dallas,TX,75001 +146229,USB-C Charging Cable,1,11.95,2019-01-13 22:39:00,66 South St, Los Angeles,CA,90001 +146230,Lightning Charging Cable,1,14.95,2019-01-13 05:18:00,466 Wilson St, San Francisco,CA,94016 +146231,USB-C Charging Cable,1,11.95,2019-01-30 10:04:00,266 Elm St, San Francisco,CA,94016 +146232,Lightning Charging Cable,1,14.95,2019-01-09 21:10:00,808 Lake St, Portland,OR,97035 +146233,AA Batteries (4-pack),1,3.84,2019-01-19 12:17:00,830 Spruce St, Portland,ME,04101 +146234,ThinkPad Laptop,1,999.99,2019-01-12 22:10:00,120 Church St, Atlanta,GA,30301 +146235,iPhone,1,700.0,2019-01-27 11:25:00,469 10th St, San Francisco,CA,94016 +146235,Lightning Charging Cable,1,14.95,2019-01-27 11:25:00,469 10th St, San Francisco,CA,94016 +146236,27in 4K Gaming Monitor,1,389.99,2019-01-11 13:31:00,978 Chestnut St, Boston,MA,02215 +146237,Lightning Charging Cable,1,14.95,2019-01-22 14:46:00,23 River St, San Francisco,CA,94016 +146238,AAA Batteries (4-pack),1,2.99,2019-01-20 09:13:00,63 9th St, Atlanta,GA,30301 +146239,Macbook Pro Laptop,1,1700.0,2019-01-30 12:56:00,635 River St, Atlanta,GA,30301 +146240,Lightning Charging Cable,1,14.95,2019-01-05 19:39:00,311 Cedar St, Seattle,WA,98101 +146241,AA Batteries (4-pack),2,3.84,2019-01-29 04:26:00,979 River St, San Francisco,CA,94016 +146242,AA Batteries (4-pack),1,3.84,2019-01-09 19:42:00,419 West St, Portland,ME,04101 +146243,27in FHD Monitor,1,149.99,2019-01-01 11:43:00,921 Chestnut St, Seattle,WA,98101 +146244,AA Batteries (4-pack),1,3.84,2019-01-13 13:11:00,860 Maple St, Dallas,TX,75001 +146245,Lightning Charging Cable,1,14.95,2019-01-21 23:52:00,28 Wilson St, New York City,NY,10001 +146246,AA Batteries (4-pack),4,3.84,2019-01-13 20:00:00,104 Forest St, Dallas,TX,75001 +146247,Macbook Pro Laptop,1,1700.0,2019-01-11 00:29:00,910 12th St, New York City,NY,10001 +146248,Lightning Charging Cable,1,14.95,2019-01-22 14:08:00,338 Lake St, Seattle,WA,98101 +146249,AA Batteries (4-pack),1,3.84,2019-01-08 10:23:00,429 Madison St, Boston,MA,02215 +146249,AAA Batteries (4-pack),1,2.99,2019-01-08 10:23:00,429 Madison St, Boston,MA,02215 +146250,AAA Batteries (4-pack),1,2.99,2019-01-19 11:20:00,200 Adams St, Los Angeles,CA,90001 +146251,Macbook Pro Laptop,1,1700.0,2019-01-23 21:11:00,575 Chestnut St, Austin,TX,73301 +146252,AA Batteries (4-pack),2,3.84,2019-01-21 14:14:00,116 Hill St, Los Angeles,CA,90001 +146253,USB-C Charging Cable,1,11.95,2019-01-21 18:23:00,668 Sunset St, New York City,NY,10001 +146254,Flatscreen TV,1,300.0,2019-01-26 10:32:00,908 14th St, Portland,OR,97035 +146255,AA Batteries (4-pack),1,3.84,2019-01-16 22:40:00,931 Ridge St, Portland,OR,97035 +146256,AAA Batteries (4-pack),1,2.99,2019-01-26 11:52:00,286 13th St, Boston,MA,02215 +146257,USB-C Charging Cable,1,11.95,2019-01-30 07:19:00,845 North St, Portland,ME,04101 +146257,Google Phone,1,600.0,2019-01-30 07:19:00,845 North St, Portland,ME,04101 +146258,27in 4K Gaming Monitor,1,389.99,2019-01-08 08:24:00,561 North St, San Francisco,CA,94016 +146259,Wired Headphones,1,11.99,2019-01-30 15:14:00,440 Lincoln St, San Francisco,CA,94016 +146260,Google Phone,1,600.0,2019-01-27 16:38:00,728 Maple St, San Francisco,CA,94016 +146261,AA Batteries (4-pack),1,3.84,2019-01-11 19:08:00,535 Highland St, San Francisco,CA,94016 +146262,Wired Headphones,1,11.99,2019-01-20 07:48:00,346 West St, Boston,MA,02215 +146263,AA Batteries (4-pack),2,3.84,2019-01-10 16:49:00,529 Chestnut St, Dallas,TX,75001 +146264,Lightning Charging Cable,1,14.95,2019-01-26 19:42:00,894 Chestnut St, New York City,NY,10001 +146265,USB-C Charging Cable,1,11.95,2019-01-12 19:19:00,583 Maple St, Seattle,WA,98101 +146266,27in 4K Gaming Monitor,1,389.99,2019-01-07 17:34:00,921 11th St, Portland,OR,97035 +146267,AAA Batteries (4-pack),1,2.99,2019-01-06 12:44:00,160 Highland St, Boston,MA,02215 +146268,Google Phone,1,600.0,2019-01-24 21:24:00,611 Hickory St, San Francisco,CA,94016 +146269,20in Monitor,1,109.99,2019-01-31 19:22:00,220 Chestnut St, Los Angeles,CA,90001 +146270,USB-C Charging Cable,1,11.95,2019-01-15 14:28:00,286 Sunset St, New York City,NY,10001 +146271,Wired Headphones,1,11.99,2019-01-31 21:42:00,24 Spruce St, Boston,MA,02215 +146272,27in FHD Monitor,1,149.99,2019-01-10 11:23:00,468 Madison St, Boston,MA,02215 +146273,AA Batteries (4-pack),2,3.84,2019-01-03 22:49:00,533 10th St, San Francisco,CA,94016 +146274,Lightning Charging Cable,1,14.95,2019-01-07 15:40:00,137 14th St, Boston,MA,02215 +146275,Google Phone,1,600.0,2019-01-31 11:41:00,866 Pine St, San Francisco,CA,94016 +146276,AA Batteries (4-pack),1,3.84,2019-01-12 07:19:00,38 12th St, San Francisco,CA,94016 +146277,Flatscreen TV,1,300.0,2019-01-08 23:54:00,327 Lake St, Seattle,WA,98101 +146277,34in Ultrawide Monitor,1,379.99,2019-01-08 23:54:00,327 Lake St, Seattle,WA,98101 +146278,Wired Headphones,1,11.99,2019-01-12 15:31:00,594 13th St, San Francisco,CA,94016 +146279,AAA Batteries (4-pack),2,2.99,2019-01-21 10:48:00,205 10th St, Boston,MA,02215 +146280,Bose SoundSport Headphones,1,99.99,2019-01-16 08:28:00,937 Meadow St, Boston,MA,02215 +146281,Lightning Charging Cable,1,14.95,2019-01-18 10:20:00,78 Cherry St, Los Angeles,CA,90001 +146282,AA Batteries (4-pack),3,3.84,2019-01-07 21:09:00,663 Chestnut St, Boston,MA,02215 +146283,Apple Airpods Headphones,1,150.0,2019-01-27 01:03:00,599 West St, Seattle,WA,98101 +146284,AA Batteries (4-pack),3,3.84,2019-01-09 18:21:00,865 Lincoln St, Los Angeles,CA,90001 +146285,Bose SoundSport Headphones,1,99.99,2019-01-25 19:38:00,356 Lincoln St, Boston,MA,02215 +146286,Apple Airpods Headphones,1,150.0,2019-01-31 09:59:00,57 River St, Los Angeles,CA,90001 +146287,AAA Batteries (4-pack),2,2.99,2019-01-29 19:50:00,173 Pine St, San Francisco,CA,94016 +146288,Apple Airpods Headphones,1,150.0,2019-01-21 14:33:00,407 Dogwood St, Boston,MA,02215 +146289,20in Monitor,1,109.99,2019-01-27 20:18:00,58 Lincoln St, New York City,NY,10001 +146290,Macbook Pro Laptop,1,1700.0,2019-01-04 20:18:00,169 River St, Atlanta,GA,30301 +146291,iPhone,1,700.0,2019-01-11 12:47:00,116 South St, Austin,TX,73301 +146292,Apple Airpods Headphones,1,150.0,2019-01-06 17:57:00,359 Elm St, Atlanta,GA,30301 +146293,27in FHD Monitor,1,149.99,2019-01-15 18:18:00,800 Jefferson St, Los Angeles,CA,90001 +146294,AA Batteries (4-pack),1,3.84,2019-01-25 08:02:00,440 5th St, San Francisco,CA,94016 +146295,Lightning Charging Cable,1,14.95,2019-01-22 12:50:00,220 Willow St, Seattle,WA,98101 +146296,AAA Batteries (4-pack),1,2.99,2019-01-10 09:43:00,685 Center St, Seattle,WA,98101 +146297,AA Batteries (4-pack),1,3.84,2019-01-09 11:13:00,53 Adams St, Portland,OR,97035 +146298,USB-C Charging Cable,1,11.95,2019-01-22 20:52:00,43 8th St, San Francisco,CA,94016 +146299,USB-C Charging Cable,1,11.95,2019-01-28 00:52:00,625 13th St, Los Angeles,CA,90001 +146299,Wired Headphones,1,11.99,2019-01-28 00:52:00,625 13th St, Los Angeles,CA,90001 +146300,AA Batteries (4-pack),2,3.84,2019-01-21 09:24:00,785 Adams St, Austin,TX,73301 +146301,27in FHD Monitor,1,149.99,2019-01-20 17:07:00,352 7th St, New York City,NY,10001 +146302,27in 4K Gaming Monitor,1,389.99,2019-01-26 15:12:00,806 Main St, San Francisco,CA,94016 +146303,Wired Headphones,1,11.99,2019-01-14 10:37:00,137 Cedar St, Atlanta,GA,30301 +146304,AAA Batteries (4-pack),1,2.99,2019-01-26 22:34:00,580 7th St, Atlanta,GA,30301 +146305,Lightning Charging Cable,1,14.95,2019-01-01 18:25:00,159 4th St, Boston,MA,02215 +146306,Bose SoundSport Headphones,1,99.99,2019-01-22 06:37:00,810 Willow St, Portland,OR,97035 +146307,ThinkPad Laptop,1,999.99,2019-01-02 14:00:00,820 Willow St, Los Angeles,CA,90001 +146308,34in Ultrawide Monitor,1,379.99,2019-01-17 21:54:00,580 Wilson St, New York City,NY,10001 +146309,Lightning Charging Cable,1,14.95,2019-01-11 20:22:00,641 Hickory St, San Francisco,CA,94016 +146310,Lightning Charging Cable,1,14.95,2019-01-04 20:10:00,518 7th St, Los Angeles,CA,90001 +146311,Bose SoundSport Headphones,1,99.99,2019-01-18 09:45:00,406 Dogwood St, Los Angeles,CA,90001 +146312,USB-C Charging Cable,1,11.95,2019-01-29 19:44:00,347 Hickory St, Dallas,TX,75001 +146313,34in Ultrawide Monitor,1,379.99,2019-01-12 21:29:00,184 Walnut St, Boston,MA,02215 +146314,Bose SoundSport Headphones,1,99.99,2019-01-12 20:17:00,833 Church St, San Francisco,CA,94016 +146315,Lightning Charging Cable,2,14.95,2019-01-28 14:21:00,666 Spruce St, Seattle,WA,98101 +146316,34in Ultrawide Monitor,1,379.99,2019-01-19 14:57:00,612 4th St, Dallas,TX,75001 +146317,27in 4K Gaming Monitor,1,389.99,2019-01-05 14:06:00,596 7th St, Los Angeles,CA,90001 +146318,Lightning Charging Cable,1,14.95,2019-01-07 12:03:00,896 Main St, New York City,NY,10001 +146319,Apple Airpods Headphones,1,150.0,2019-01-23 18:28:00,882 Wilson St, Seattle,WA,98101 +146320,AAA Batteries (4-pack),1,2.99,2019-01-05 18:15:00,109 Willow St, Boston,MA,02215 +146321,Bose SoundSport Headphones,1,99.99,2019-01-27 20:44:00,162 Pine St, Boston,MA,02215 +146322,Wired Headphones,2,11.99,2019-01-14 13:15:00,598 11th St, Los Angeles,CA,90001 +146323,Apple Airpods Headphones,1,150.0,2019-01-12 11:13:00,445 Lake St, Portland,OR,97035 +146324,USB-C Charging Cable,1,11.95,2019-01-26 17:12:00,800 Park St, Los Angeles,CA,90001 +146325,20in Monitor,1,109.99,2019-01-09 21:06:00,452 12th St, Portland,OR,97035 +146326,AAA Batteries (4-pack),1,2.99,2019-01-12 13:08:00,568 12th St, Boston,MA,02215 +146327,27in FHD Monitor,1,149.99,2019-01-04 12:45:00,547 Washington St, Atlanta,GA,30301 +146328,AAA Batteries (4-pack),2,2.99,2019-01-17 20:34:00,28 Dogwood St, San Francisco,CA,94016 +146329,AAA Batteries (4-pack),1,2.99,2019-01-06 18:23:00,626 14th St, San Francisco,CA,94016 +146330,ThinkPad Laptop,1,999.99,2019-01-27 19:50:00,917 West St, Los Angeles,CA,90001 +146331,Lightning Charging Cable,1,14.95,2019-01-25 15:26:00,640 Spruce St, Dallas,TX,75001 +146332,AA Batteries (4-pack),2,3.84,2019-01-07 21:20:00,78 4th St, San Francisco,CA,94016 +146333,USB-C Charging Cable,1,11.95,2019-01-07 15:25:00,67 Ridge St, San Francisco,CA,94016 +146334,Bose SoundSport Headphones,1,99.99,2019-01-10 17:45:00,570 Sunset St, New York City,NY,10001 +146335,Macbook Pro Laptop,1,1700.0,2019-01-23 08:37:00,791 Chestnut St, San Francisco,CA,94016 +146336,AAA Batteries (4-pack),2,2.99,2019-01-25 13:40:00,765 Jackson St, New York City,NY,10001 +146337,Wired Headphones,2,11.99,2019-01-22 20:19:00,810 Hill St, Boston,MA,02215 +146338,34in Ultrawide Monitor,1,379.99,2019-01-23 11:49:00,90 Jackson St, Portland,OR,97035 +146339,AAA Batteries (4-pack),3,2.99,2019-01-11 01:25:00,241 5th St, San Francisco,CA,94016 +146340,Lightning Charging Cable,1,14.95,2019-01-26 22:08:00,118 Park St, San Francisco,CA,94016 +146341,USB-C Charging Cable,1,11.95,2019-01-29 15:23:00,998 6th St, Los Angeles,CA,90001 +146342,Lightning Charging Cable,1,14.95,2019-01-24 12:34:00,539 Dogwood St, Dallas,TX,75001 +146343,AA Batteries (4-pack),1,3.84,2019-01-30 09:16:00,107 1st St, San Francisco,CA,94016 +146344,USB-C Charging Cable,1,11.95,2019-01-28 23:58:00,606 6th St, Austin,TX,73301 +146345,Macbook Pro Laptop,1,1700.0,2019-01-08 11:52:00,934 Sunset St, New York City,NY,10001 +146346,Bose SoundSport Headphones,1,99.99,2019-01-11 10:14:00,13 Lakeview St, Los Angeles,CA,90001 +146347,AA Batteries (4-pack),1,3.84,2019-01-13 18:47:00,811 Lake St, Boston,MA,02215 +146348,AAA Batteries (4-pack),2,2.99,2019-01-27 20:05:00,780 11th St, New York City,NY,10001 +146349,AA Batteries (4-pack),1,3.84,2019-01-20 10:04:00,551 Pine St, San Francisco,CA,94016 +146350,27in 4K Gaming Monitor,1,389.99,2019-01-22 10:16:00,293 Willow St, Boston,MA,02215 +146351,Wired Headphones,1,11.99,2019-01-30 10:55:00,921 8th St, New York City,NY,10001 +146352,27in 4K Gaming Monitor,1,389.99,2019-01-22 16:56:00,998 Walnut St, Los Angeles,CA,90001 +146353,Lightning Charging Cable,1,14.95,2019-01-18 10:41:00,275 6th St, Austin,TX,73301 +146354,Lightning Charging Cable,1,14.95,2019-01-24 20:42:00,829 Wilson St, Portland,OR,97035 +146355,AAA Batteries (4-pack),1,2.99,2019-01-21 17:32:00,291 Pine St, San Francisco,CA,94016 +146356,AAA Batteries (4-pack),1,2.99,2019-01-02 15:22:00,780 12th St, Los Angeles,CA,90001 +146357,Wired Headphones,1,11.99,2019-01-06 14:24:00,543 Willow St, New York City,NY,10001 +146358,Macbook Pro Laptop,1,1700.0,2019-01-22 01:12:00,991 Spruce St, San Francisco,CA,94016 +146359,Lightning Charging Cable,1,14.95,2019-01-04 13:18:00,930 Forest St, New York City,NY,10001 +146360,AAA Batteries (4-pack),4,2.99,2019-01-04 18:37:00,216 7th St, San Francisco,CA,94016 +146361,USB-C Charging Cable,1,11.95,2019-01-31 18:01:00,717 Dogwood St, Los Angeles,CA,90001 +146362,Bose SoundSport Headphones,1,99.99,2019-01-31 09:17:00,924 Hickory St, Seattle,WA,98101 +146363,AAA Batteries (4-pack),1,2.99,2019-01-19 21:22:00,312 6th St, New York City,NY,10001 +146364,AAA Batteries (4-pack),1,2.99,2019-01-01 15:32:00,868 Highland St, Los Angeles,CA,90001 +146365,USB-C Charging Cable,1,11.95,2019-01-19 12:10:00,109 Church St, Austin,TX,73301 +146366,USB-C Charging Cable,1,11.95,2019-01-14 10:12:00,726 Jackson St, Dallas,TX,75001 +146367,20in Monitor,1,109.99,2019-01-27 19:46:00,405 Spruce St, San Francisco,CA,94016 +146368,Lightning Charging Cable,1,14.95,2019-01-10 20:20:00,311 South St, New York City,NY,10001 +146369,34in Ultrawide Monitor,1,379.99,2019-01-14 14:42:00,248 Jefferson St, Seattle,WA,98101 +146370,Lightning Charging Cable,1,14.95,2019-01-30 20:11:00,493 Walnut St, Portland,OR,97035 +146371,AA Batteries (4-pack),1,3.84,2019-01-24 19:57:00,53 Washington St, Portland,ME,04101 +146372,27in 4K Gaming Monitor,1,389.99,2019-01-03 10:24:00,68 7th St, Boston,MA,02215 +146373,ThinkPad Laptop,1,999.99,2019-01-22 08:25:00,100 Wilson St, New York City,NY,10001 +146374,AAA Batteries (4-pack),2,2.99,2019-01-08 10:30:00,985 6th St, New York City,NY,10001 +146375,USB-C Charging Cable,1,11.95,2019-01-25 16:58:00,370 Jackson St, Portland,OR,97035 +146376,Flatscreen TV,1,300.0,2019-01-10 14:23:00,442 14th St, Portland,OR,97035 +146377,AAA Batteries (4-pack),2,2.99,2019-01-23 09:25:00,209 Johnson St, Atlanta,GA,30301 +146378,Apple Airpods Headphones,1,150.0,2019-01-10 01:54:00,932 West St, San Francisco,CA,94016 +146379,Lightning Charging Cable,1,14.95,2019-01-02 11:38:00,104 Cedar St, New York City,NY,10001 +146380,AAA Batteries (4-pack),2,2.99,2019-01-01 23:18:00,382 Walnut St, Austin,TX,73301 +146381,Apple Airpods Headphones,1,150.0,2019-01-30 12:09:00,418 Lakeview St, San Francisco,CA,94016 +146382,USB-C Charging Cable,1,11.95,2019-01-17 18:50:00,387 Dogwood St, Los Angeles,CA,90001 +146383,iPhone,1,700.0,2019-01-26 17:20:00,196 Chestnut St, San Francisco,CA,94016 +146384,AA Batteries (4-pack),1,3.84,2019-01-24 10:59:00,192 Elm St, San Francisco,CA,94016 +146385,27in FHD Monitor,1,149.99,2019-01-28 11:48:00,933 Ridge St, San Francisco,CA,94016 +146385,Bose SoundSport Headphones,1,99.99,2019-01-28 11:48:00,933 Ridge St, San Francisco,CA,94016 +146386,USB-C Charging Cable,1,11.95,2019-01-06 13:33:00,363 South St, Austin,TX,73301 +146387,Lightning Charging Cable,1,14.95,2019-01-24 13:20:00,696 12th St, San Francisco,CA,94016 +146388,Bose SoundSport Headphones,1,99.99,2019-01-01 19:16:00,483 Wilson St, San Francisco,CA,94016 +146389,LG Washing Machine,1,600.0,2019-01-11 13:18:00,212 6th St, Seattle,WA,98101 +146390,AAA Batteries (4-pack),2,2.99,2019-01-05 11:15:00,168 4th St, Los Angeles,CA,90001 +146391,Apple Airpods Headphones,1,150.0,2019-01-05 20:29:00,76 Pine St, Boston,MA,02215 +146392,ThinkPad Laptop,1,999.99,2019-01-23 21:34:00,403 Maple St, Los Angeles,CA,90001 +146393,USB-C Charging Cable,1,11.95,2019-01-25 13:25:00,393 8th St, San Francisco,CA,94016 +146394,AA Batteries (4-pack),1,3.84,2019-01-15 12:51:00,102 Spruce St, Los Angeles,CA,90001 +146395,Wired Headphones,1,11.99,2019-01-31 20:43:00,65 Johnson St, Seattle,WA,98101 +146396,Bose SoundSport Headphones,1,99.99,2019-01-06 10:35:00,773 Main St, Boston,MA,02215 +146397,27in FHD Monitor,1,149.99,2019-01-02 21:59:00,778 West St, Los Angeles,CA,90001 +146397,AAA Batteries (4-pack),1,2.99,2019-01-02 21:59:00,778 West St, Los Angeles,CA,90001 +146398,Google Phone,1,600.0,2019-01-26 18:29:00,258 Willow St, Dallas,TX,75001 +146399,Bose SoundSport Headphones,1,99.99,2019-01-30 14:12:00,956 8th St, Dallas,TX,75001 +146400,34in Ultrawide Monitor,1,379.99,2019-01-24 12:13:00,453 Spruce St, Austin,TX,73301 +146401,34in Ultrawide Monitor,1,379.99,2019-01-18 13:55:00,349 Hickory St, San Francisco,CA,94016 +146402,Macbook Pro Laptop,1,1700.0,2019-01-15 18:13:00,223 Meadow St, Los Angeles,CA,90001 +146403,AA Batteries (4-pack),1,3.84,2019-01-01 22:11:00,180 Chestnut St, San Francisco,CA,94016 +146404,Lightning Charging Cable,1,14.95,2019-01-25 23:39:00,449 14th St, San Francisco,CA,94016 +146405,AAA Batteries (4-pack),2,2.99,2019-01-08 14:49:00,40 Willow St, Los Angeles,CA,90001 +146406,Lightning Charging Cable,1,14.95,2019-01-26 18:05:00,836 Pine St, Los Angeles,CA,90001 +146407,LG Dryer,1,600.0,2019-01-04 11:44:00,788 Washington St, San Francisco,CA,94016 +146407,AA Batteries (4-pack),2,3.84,2019-01-04 11:44:00,788 Washington St, San Francisco,CA,94016 +146408,Apple Airpods Headphones,1,150.0,2019-01-27 02:43:00,320 Main St, Los Angeles,CA,90001 +146409,Apple Airpods Headphones,1,150.0,2019-01-24 11:07:00,682 7th St, Dallas,TX,75001 +146410,AAA Batteries (4-pack),1,2.99,2019-01-22 13:18:00,434 Ridge St, San Francisco,CA,94016 +146411,iPhone,1,700.0,2019-01-13 14:22:00,107 Spruce St, Boston,MA,02215 +146412,Apple Airpods Headphones,1,150.0,2019-01-10 16:14:00,803 1st St, Los Angeles,CA,90001 +146413,Lightning Charging Cable,1,14.95,2019-01-19 18:28:00,6 Madison St, Los Angeles,CA,90001 +146414,Bose SoundSport Headphones,1,99.99,2019-01-19 23:16:00,831 Pine St, New York City,NY,10001 +146415,27in 4K Gaming Monitor,1,389.99,2019-01-05 19:16:00,648 Maple St, Seattle,WA,98101 +146416,AAA Batteries (4-pack),1,2.99,2019-01-05 09:53:00,854 West St, New York City,NY,10001 +146417,USB-C Charging Cable,1,11.95,2019-01-18 16:17:00,740 Jefferson St, Los Angeles,CA,90001 +146418,Macbook Pro Laptop,1,1700.0,2019-01-31 19:31:00,314 Elm St, Boston,MA,02215 +146419,Wired Headphones,1,11.99,2019-01-31 13:27:00,215 Hill St, San Francisco,CA,94016 +146420,Wired Headphones,1,11.99,2019-01-15 15:21:00,59 West St, New York City,NY,10001 +146421,AA Batteries (4-pack),2,3.84,2019-01-24 20:09:00,206 Park St, New York City,NY,10001 +146422,Apple Airpods Headphones,1,150.0,2019-01-22 12:42:00,987 1st St, Boston,MA,02215 +146423,AA Batteries (4-pack),1,3.84,2019-01-06 19:39:00,988 Park St, Austin,TX,73301 +146424,27in FHD Monitor,1,149.99,2019-01-17 12:02:00,634 Lincoln St, New York City,NY,10001 +146425,AAA Batteries (4-pack),2,2.99,2019-01-05 13:58:00,570 Lincoln St, Dallas,TX,75001 +146426,Bose SoundSport Headphones,1,99.99,2019-01-09 19:30:00,123 Wilson St, San Francisco,CA,94016 +146427,Wired Headphones,1,11.99,2019-01-06 23:23:00,250 Elm St, Los Angeles,CA,90001 +146428,Google Phone,1,600.0,2019-01-15 11:48:00,127 Hickory St, New York City,NY,10001 +146429,USB-C Charging Cable,1,11.95,2019-01-18 13:45:00,112 Park St, San Francisco,CA,94016 +146430,Bose SoundSport Headphones,1,99.99,2019-01-29 04:03:00,104 Center St, Los Angeles,CA,90001 +146431,Lightning Charging Cable,1,14.95,2019-01-01 12:39:00,561 River St, San Francisco,CA,94016 +146432,Lightning Charging Cable,1,14.95,2019-01-04 11:45:00,847 North St, Boston,MA,02215 +146433,Wired Headphones,1,11.99,2019-01-28 12:52:00,646 Dogwood St, Portland,OR,97035 +146434,USB-C Charging Cable,1,11.95,2019-01-09 13:02:00,141 South St, Portland,OR,97035 +146435,Google Phone,1,600.0,2019-01-29 20:38:00,314 5th St, Dallas,TX,75001 +146436,20in Monitor,1,109.99,2019-01-18 10:30:00,183 Adams St, New York City,NY,10001 +146437,20in Monitor,1,109.99,2019-01-17 23:05:00,269 Lincoln St, San Francisco,CA,94016 +146438,27in FHD Monitor,1,149.99,2019-01-26 03:30:00,610 Meadow St, San Francisco,CA,94016 +146439,20in Monitor,1,109.99,2019-01-20 11:27:00,146 Ridge St, New York City,NY,10001 +146440,USB-C Charging Cable,1,11.95,2019-01-28 17:33:00,770 1st St, San Francisco,CA,94016 +146441,20in Monitor,1,109.99,2019-01-18 09:15:00,818 Wilson St, San Francisco,CA,94016 +146442,USB-C Charging Cable,1,11.95,2019-02-01 01:48:00,229 West St, Los Angeles,CA,90001 +146443,Flatscreen TV,1,300.0,2019-01-15 17:19:00,928 Spruce St, San Francisco,CA,94016 +146444,AA Batteries (4-pack),1,3.84,2019-01-03 16:49:00,737 8th St, Atlanta,GA,30301 +146445,Bose SoundSport Headphones,1,99.99,2019-01-17 07:14:00,139 10th St, San Francisco,CA,94016 +146446,Wired Headphones,3,11.99,2019-01-01 18:20:00,678 2nd St, New York City,NY,10001 +146447,Wired Headphones,1,11.99,2019-01-10 13:26:00,284 14th St, Boston,MA,02215 +146448,AAA Batteries (4-pack),1,2.99,2019-01-10 17:07:00,863 Washington St, Austin,TX,73301 +146449,AAA Batteries (4-pack),1,2.99,2019-01-14 13:23:00,989 Madison St, Los Angeles,CA,90001 +146450,27in FHD Monitor,1,149.99,2019-01-13 20:36:00,755 8th St, Los Angeles,CA,90001 +146451,USB-C Charging Cable,1,11.95,2019-01-05 18:59:00,589 Forest St, Los Angeles,CA,90001 +146452,Lightning Charging Cable,1,14.95,2019-01-25 18:18:00,541 Lincoln St, Dallas,TX,75001 +146453,34in Ultrawide Monitor,1,379.99,2019-01-26 17:43:00,373 Chestnut St, New York City,NY,10001 +146454,Apple Airpods Headphones,1,150.0,2019-01-11 11:36:00,489 9th St, Dallas,TX,75001 +146455,Apple Airpods Headphones,1,150.0,2019-01-10 15:32:00,36 9th St, Los Angeles,CA,90001 +146456,Macbook Pro Laptop,1,1700.0,2019-01-11 13:28:00,660 13th St, New York City,NY,10001 +146457,Apple Airpods Headphones,1,150.0,2019-01-08 22:13:00,127 11th St, Austin,TX,73301 +146458,AA Batteries (4-pack),1,3.84,2019-01-19 09:12:00,631 1st St, Boston,MA,02215 +146459,Lightning Charging Cable,2,14.95,2019-01-01 09:21:00,444 Dogwood St, San Francisco,CA,94016 +146460,Lightning Charging Cable,1,14.95,2019-01-19 19:23:00,940 West St, San Francisco,CA,94016 +146461,iPhone,1,700.0,2019-01-07 08:06:00,926 8th St, San Francisco,CA,94016 +146461,Wired Headphones,1,11.99,2019-01-07 08:06:00,926 8th St, San Francisco,CA,94016 +146462,AA Batteries (4-pack),1,3.84,2019-01-15 14:52:00,113 11th St, Dallas,TX,75001 +146463,Lightning Charging Cable,1,14.95,2019-01-08 19:08:00,640 13th St, Austin,TX,73301 +146464,AA Batteries (4-pack),2,3.84,2019-01-05 23:40:00,51 Washington St, San Francisco,CA,94016 +146465,AAA Batteries (4-pack),1,2.99,2019-01-27 19:56:00,277 Wilson St, San Francisco,CA,94016 +146466,Lightning Charging Cable,1,14.95,2019-01-28 10:54:00,283 14th St, Dallas,TX,75001 +146467,Macbook Pro Laptop,1,1700.0,2019-01-25 14:16:00,950 5th St, Los Angeles,CA,90001 +146468,Bose SoundSport Headphones,1,99.99,2019-01-23 18:55:00,592 River St, Los Angeles,CA,90001 +146469,AA Batteries (4-pack),2,3.84,2019-01-02 21:45:00,319 Willow St, Los Angeles,CA,90001 +146470,Bose SoundSport Headphones,1,99.99,2019-01-17 11:29:00,442 West St, Atlanta,GA,30301 +146471,USB-C Charging Cable,1,11.95,2019-01-01 18:29:00,134 Center St, Seattle,WA,98101 +146471,Wired Headphones,1,11.99,2019-01-01 18:29:00,134 Center St, Seattle,WA,98101 +146472,Vareebadd Phone,1,400.0,2019-01-12 00:48:00,616 North St, New York City,NY,10001 +146472,USB-C Charging Cable,1,11.95,2019-01-12 00:48:00,616 North St, New York City,NY,10001 +146473,Lightning Charging Cable,1,14.95,2019-01-08 15:34:00,509 Center St, Atlanta,GA,30301 +146474,AAA Batteries (4-pack),1,2.99,2019-01-02 11:04:00,371 Meadow St, Seattle,WA,98101 +146475,AA Batteries (4-pack),1,3.84,2019-01-12 21:56:00,934 Dogwood St, Los Angeles,CA,90001 +146476,AAA Batteries (4-pack),1,2.99,2019-01-16 19:53:00,650 Sunset St, Los Angeles,CA,90001 +146477,AA Batteries (4-pack),1,3.84,2019-01-07 16:54:00,477 Maple St, Boston,MA,02215 +146478,Wired Headphones,1,11.99,2019-01-24 08:02:00,398 Dogwood St, San Francisco,CA,94016 +146479,AA Batteries (4-pack),3,3.84,2019-01-02 20:35:00,650 Hill St, Los Angeles,CA,90001 +146480,Wired Headphones,1,11.99,2019-01-19 00:32:00,847 Walnut St, Austin,TX,73301 +146481,27in FHD Monitor,1,149.99,2019-01-28 21:07:00,744 6th St, Portland,OR,97035 +146482,Lightning Charging Cable,1,14.95,2019-01-27 17:07:00,205 Forest St, Austin,TX,73301 +146483,Macbook Pro Laptop,1,1700.0,2019-01-06 12:28:00,282 Johnson St, New York City,NY,10001 +146484,AA Batteries (4-pack),3,3.84,2019-01-09 11:34:00,938 Hill St, San Francisco,CA,94016 +146485,27in FHD Monitor,1,149.99,2019-01-22 10:06:00,393 Center St, San Francisco,CA,94016 +146486,Vareebadd Phone,1,400.0,2019-01-04 14:05:00,728 Main St, Portland,OR,97035 +146487,Wired Headphones,1,11.99,2019-01-28 04:17:00,212 6th St, Atlanta,GA,30301 +146488,USB-C Charging Cable,1,11.95,2019-01-25 18:25:00,515 Lincoln St, New York City,NY,10001 +146489,AA Batteries (4-pack),1,3.84,2019-01-13 15:16:00,224 River St, San Francisco,CA,94016 +146490,Bose SoundSport Headphones,1,99.99,2019-01-22 11:34:00,26 Ridge St, Los Angeles,CA,90001 +146490,Lightning Charging Cable,1,14.95,2019-01-22 11:34:00,26 Ridge St, Los Angeles,CA,90001 +146491,Flatscreen TV,1,300.0,2019-01-20 22:15:00,638 Ridge St, San Francisco,CA,94016 +146492,20in Monitor,1,109.99,2019-01-14 19:45:00,214 14th St, New York City,NY,10001 +146493,Lightning Charging Cable,1,14.95,2019-01-22 01:01:00,698 6th St, New York City,NY,10001 +146494,20in Monitor,1,109.99,2019-01-11 12:38:00,333 Pine St, Atlanta,GA,30301 +146495,Wired Headphones,3,11.99,2019-01-18 10:17:00,296 7th St, Boston,MA,02215 +146496,27in FHD Monitor,1,149.99,2019-01-05 18:40:00,560 Center St, San Francisco,CA,94016 +146497,AA Batteries (4-pack),1,3.84,2019-01-05 13:59:00,716 Lake St, New York City,NY,10001 +146498,USB-C Charging Cable,1,11.95,2019-01-26 14:03:00,511 2nd St, New York City,NY,10001 +146499,Flatscreen TV,1,300.0,2019-01-19 17:31:00,297 2nd St, San Francisco,CA,94016 +146500,AA Batteries (4-pack),1,3.84,2019-01-24 17:49:00,915 North St, Atlanta,GA,30301 +146501,USB-C Charging Cable,1,11.95,2019-01-22 11:03:00,80 Dogwood St, Atlanta,GA,30301 +146502,Bose SoundSport Headphones,1,99.99,2019-01-16 22:25:00,330 Main St, Los Angeles,CA,90001 +146503,AAA Batteries (4-pack),1,2.99,2019-01-05 10:59:00,231 West St, San Francisco,CA,94016 +146504,USB-C Charging Cable,1,11.95,2019-01-28 21:36:00,754 Main St, San Francisco,CA,94016 +146505,AAA Batteries (4-pack),1,2.99,2019-01-24 19:04:00,288 Johnson St, Los Angeles,CA,90001 +146506,AAA Batteries (4-pack),1,2.99,2019-01-12 23:06:00,98 Wilson St, San Francisco,CA,94016 +146507,AAA Batteries (4-pack),2,2.99,2019-01-20 12:32:00,393 Park St, Dallas,TX,75001 +146508,Wired Headphones,1,11.99,2019-01-29 23:04:00,635 Lincoln St, San Francisco,CA,94016 +146509,AAA Batteries (4-pack),1,2.99,2019-01-17 23:46:00,326 Chestnut St, Austin,TX,73301 +146510,Google Phone,1,600.0,2019-01-01 23:07:00,234 13th St, San Francisco,CA,94016 +146511,USB-C Charging Cable,1,11.95,2019-01-05 12:48:00,743 Highland St, Los Angeles,CA,90001 +146512,USB-C Charging Cable,1,11.95,2019-01-03 15:29:00,55 Spruce St, Seattle,WA,98101 +146513,Bose SoundSport Headphones,1,99.99,2019-01-22 12:32:00,515 Park St, Dallas,TX,75001 +146514,Bose SoundSport Headphones,1,99.99,2019-01-26 16:32:00,869 Lincoln St, Los Angeles,CA,90001 +146515,Macbook Pro Laptop,1,1700.0,2019-01-07 21:32:00,893 Main St, Boston,MA,02215 +146516,Apple Airpods Headphones,1,150.0,2019-01-14 15:24:00,827 Lake St, New York City,NY,10001 +146517,Wired Headphones,1,11.99,2019-01-08 21:41:00,726 Lake St, Seattle,WA,98101 +146518,USB-C Charging Cable,2,11.95,2019-01-10 18:44:00,599 Main St, San Francisco,CA,94016 +146519,Apple Airpods Headphones,1,150.0,2019-01-16 14:24:00,392 2nd St, Boston,MA,02215 +146520,AA Batteries (4-pack),1,3.84,2019-01-22 16:54:00,64 Cedar St, San Francisco,CA,94016 +146521,AA Batteries (4-pack),1,3.84,2019-01-02 14:17:00,756 Jackson St, Seattle,WA,98101 +146522,Apple Airpods Headphones,1,150.0,2019-01-24 06:41:00,598 6th St, San Francisco,CA,94016 +146523,Apple Airpods Headphones,1,150.0,2019-01-23 14:10:00,858 12th St, Los Angeles,CA,90001 +146523,Flatscreen TV,1,300.0,2019-01-23 14:10:00,858 12th St, Los Angeles,CA,90001 +146524,Apple Airpods Headphones,1,150.0,2019-01-27 13:34:00,173 Hill St, Boston,MA,02215 +146525,Macbook Pro Laptop,1,1700.0,2019-01-26 21:49:00,238 Hill St, Los Angeles,CA,90001 +146526,34in Ultrawide Monitor,1,379.99,2019-01-12 17:15:00,375 8th St, Portland,OR,97035 +146527,AAA Batteries (4-pack),1,2.99,2019-01-15 18:55:00,358 Hill St, Los Angeles,CA,90001 +146528,27in FHD Monitor,1,149.99,2019-01-03 11:26:00,952 Forest St, Atlanta,GA,30301 +146529,AAA Batteries (4-pack),1,2.99,2019-01-06 17:49:00,198 6th St, San Francisco,CA,94016 +146530,Google Phone,1,600.0,2019-01-25 20:35:00,801 Washington St, Atlanta,GA,30301 +146530,USB-C Charging Cable,1,11.95,2019-01-25 20:35:00,801 Washington St, Atlanta,GA,30301 +146531,Macbook Pro Laptop,1,1700.0,2019-01-09 10:11:00,432 Ridge St, Boston,MA,02215 +146532,Apple Airpods Headphones,1,150.0,2019-01-28 03:06:00,871 4th St, New York City,NY,10001 +146533,Apple Airpods Headphones,1,150.0,2019-01-13 14:28:00,780 10th St, Atlanta,GA,30301 +146534,Macbook Pro Laptop,1,1700.0,2019-01-28 22:05:00,268 Main St, San Francisco,CA,94016 +146535,20in Monitor,1,109.99,2019-01-04 21:36:00,690 5th St, San Francisco,CA,94016 +146536,AAA Batteries (4-pack),3,2.99,2019-01-07 17:53:00,955 Park St, Boston,MA,02215 +146537,27in FHD Monitor,1,149.99,2019-01-14 07:45:00,992 Meadow St, Los Angeles,CA,90001 +146538,AAA Batteries (4-pack),1,2.99,2019-01-04 20:05:00,6 Hill St, Atlanta,GA,30301 +146539,Lightning Charging Cable,1,14.95,2019-01-25 18:21:00,374 Cherry St, Portland,ME,04101 +146540,AA Batteries (4-pack),1,3.84,2019-01-30 19:27:00,807 7th St, Atlanta,GA,30301 +146541,AA Batteries (4-pack),1,3.84,2019-01-29 15:55:00,806 10th St, Boston,MA,02215 +146542,AA Batteries (4-pack),1,3.84,2019-01-20 20:07:00,15 Ridge St, San Francisco,CA,94016 +146543,Wired Headphones,1,11.99,2019-01-11 13:15:00,598 1st St, New York City,NY,10001 +146544,27in FHD Monitor,1,149.99,2019-01-09 20:58:00,287 Lincoln St, Austin,TX,73301 +146545,AA Batteries (4-pack),1,3.84,2019-01-09 09:40:00,478 Adams St, Seattle,WA,98101 +146546,Lightning Charging Cable,1,14.95,2019-01-19 19:36:00,597 Madison St, Dallas,TX,75001 +146547,USB-C Charging Cable,1,11.95,2019-01-07 16:42:00,368 Jefferson St, Dallas,TX,75001 +146548,AAA Batteries (4-pack),1,2.99,2019-01-21 19:37:00,967 South St, San Francisco,CA,94016 +146549,AA Batteries (4-pack),1,3.84,2019-01-01 11:21:00,165 Spruce St, San Francisco,CA,94016 +146550,20in Monitor,1,109.99,2019-01-04 11:26:00,390 Maple St, Boston,MA,02215 +146551,USB-C Charging Cable,1,11.95,2019-01-15 17:14:00,979 Pine St, San Francisco,CA,94016 +146552,Apple Airpods Headphones,1,150.0,2019-01-04 00:05:00,485 Hickory St, Seattle,WA,98101 +146553,ThinkPad Laptop,1,999.99,2019-01-20 14:44:00,814 Pine St, New York City,NY,10001 +146554,Lightning Charging Cable,1,14.95,2019-01-11 14:25:00,219 Wilson St, Portland,OR,97035 +146555,34in Ultrawide Monitor,1,379.99,2019-01-21 12:46:00,440 Lakeview St, Boston,MA,02215 +146556,AAA Batteries (4-pack),3,2.99,2019-01-08 14:20:00,698 North St, Austin,TX,73301 +146557,iPhone,1,700.0,2019-01-28 14:56:00,551 North St, Seattle,WA,98101 +146558,AA Batteries (4-pack),1,3.84,2019-01-11 22:08:00,401 Jackson St, Boston,MA,02215 +146559,Vareebadd Phone,1,400.0,2019-01-20 16:42:00,601 Wilson St, Portland,OR,97035 +146560,Apple Airpods Headphones,1,150.0,2019-01-08 01:05:00,652 Madison St, Los Angeles,CA,90001 +146561,Lightning Charging Cable,1,14.95,2019-01-28 15:04:00,504 Lincoln St, Seattle,WA,98101 +146562,20in Monitor,1,109.99,2019-01-23 19:08:00,115 Cherry St, San Francisco,CA,94016 +146563,AAA Batteries (4-pack),1,2.99,2019-01-06 23:47:00,843 Chestnut St, Austin,TX,73301 +146564,USB-C Charging Cable,1,11.95,2019-01-02 01:22:00,492 12th St, Boston,MA,02215 +146565,Wired Headphones,1,11.99,2019-01-20 19:49:00,803 9th St, Seattle,WA,98101 +146566,Wired Headphones,1,11.99,2019-01-08 17:01:00,356 8th St, San Francisco,CA,94016 +146567,Vareebadd Phone,1,400.0,2019-01-28 19:28:00,63 Sunset St, Seattle,WA,98101 +146568,AA Batteries (4-pack),1,3.84,2019-01-26 08:55:00,88 Adams St, New York City,NY,10001 +146569,AAA Batteries (4-pack),1,2.99,2019-01-12 21:34:00,984 Chestnut St, San Francisco,CA,94016 +146570,AAA Batteries (4-pack),1,2.99,2019-01-13 10:33:00,996 Sunset St, San Francisco,CA,94016 +146571,Lightning Charging Cable,1,14.95,2019-01-28 10:46:00,352 Meadow St, Dallas,TX,75001 +146572,Wired Headphones,1,11.99,2019-01-14 21:29:00,527 11th St, Los Angeles,CA,90001 +146573,USB-C Charging Cable,2,11.95,2019-01-03 18:57:00,740 Lake St, Portland,ME,04101 +146574,Lightning Charging Cable,2,14.95,2019-01-17 18:38:00,348 Sunset St, Boston,MA,02215 +146575,20in Monitor,1,109.99,2019-01-03 21:49:00,677 7th St, Dallas,TX,75001 +146576,AA Batteries (4-pack),1,3.84,2019-01-16 09:02:00,309 Lake St, San Francisco,CA,94016 +146577,Lightning Charging Cable,1,14.95,2019-01-23 09:50:00,118 Cedar St, Atlanta,GA,30301 +146578,ThinkPad Laptop,1,999.99,2019-01-05 17:13:00,248 Wilson St, Atlanta,GA,30301 +146579,AA Batteries (4-pack),2,3.84,2019-01-24 16:35:00,487 1st St, New York City,NY,10001 +146580,Macbook Pro Laptop,1,1700.0,2019-01-04 01:10:00,639 Church St, Los Angeles,CA,90001 +146581,34in Ultrawide Monitor,1,379.99,2019-01-24 12:08:00,582 Church St, Los Angeles,CA,90001 +146582,27in 4K Gaming Monitor,1,389.99,2019-01-10 21:48:00,147 Maple St, Los Angeles,CA,90001 +146583,USB-C Charging Cable,1,11.95,2019-01-07 16:02:00,21 Willow St, Los Angeles,CA,90001 +146584,AAA Batteries (4-pack),1,2.99,2019-01-02 19:37:00,453 Highland St, Austin,TX,73301 +146585,AA Batteries (4-pack),1,3.84,2019-01-04 16:49:00,523 Spruce St, Los Angeles,CA,90001 +146586,Google Phone,1,600.0,2019-01-24 23:48:00,818 14th St, New York City,NY,10001 +146587,27in FHD Monitor,1,149.99,2019-01-27 23:20:00,484 11th St, Boston,MA,02215 +146588,AA Batteries (4-pack),1,3.84,2019-01-04 19:47:00,394 Cedar St, San Francisco,CA,94016 +146589,Wired Headphones,1,11.99,2019-01-26 11:34:00,317 Washington St, New York City,NY,10001 +146590,AA Batteries (4-pack),3,3.84,2019-01-01 12:09:00,317 Walnut St, New York City,NY,10001 +146591,Apple Airpods Headphones,1,150.0,2019-01-03 20:12:00,917 Chestnut St, Atlanta,GA,30301 +146592,AA Batteries (4-pack),2,3.84,2019-01-17 01:30:00,631 River St, San Francisco,CA,94016 +146593,Flatscreen TV,1,300.0,2019-01-26 19:24:00,837 Church St, San Francisco,CA,94016 +146594,AAA Batteries (4-pack),1,2.99,2019-01-20 07:50:00,113 Sunset St, New York City,NY,10001 +146595,Lightning Charging Cable,1,14.95,2019-01-31 13:25:00,419 Park St, New York City,NY,10001 +146596,ThinkPad Laptop,1,999.99,2019-01-03 21:50:00,844 Maple St, San Francisco,CA,94016 +146597,USB-C Charging Cable,1,11.95,2019-01-14 09:35:00,655 Church St, Seattle,WA,98101 +146598,Flatscreen TV,1,300.0,2019-01-11 09:13:00,892 12th St, Atlanta,GA,30301 +146599,AAA Batteries (4-pack),1,2.99,2019-01-09 15:10:00,420 Cedar St, Los Angeles,CA,90001 +146600,27in FHD Monitor,1,149.99,2019-01-16 15:41:00,333 Park St, Austin,TX,73301 +146601,USB-C Charging Cable,1,11.95,2019-01-22 11:26:00,642 Hill St, San Francisco,CA,94016 +146602,Apple Airpods Headphones,1,150.0,2019-01-17 14:15:00,838 Lakeview St, Seattle,WA,98101 +146603,Lightning Charging Cable,1,14.95,2019-01-12 11:41:00,676 Jefferson St, Los Angeles,CA,90001 +146604,Wired Headphones,1,11.99,2019-01-13 14:28:00,725 Johnson St, Seattle,WA,98101 +146605,USB-C Charging Cable,1,11.95,2019-01-22 11:24:00,495 Adams St, New York City,NY,10001 +146606,AAA Batteries (4-pack),1,2.99,2019-01-16 15:16:00,678 2nd St, Dallas,TX,75001 +146607,Apple Airpods Headphones,1,150.0,2019-01-09 22:39:00,502 Jefferson St, Seattle,WA,98101 +146608,27in 4K Gaming Monitor,1,389.99,2019-01-25 11:27:00,844 12th St, New York City,NY,10001 +146609,27in FHD Monitor,1,149.99,2019-01-31 11:37:00,32 Chestnut St, New York City,NY,10001 +146610,AA Batteries (4-pack),1,3.84,2019-01-10 18:59:00,917 Main St, New York City,NY,10001 +146611,Bose SoundSport Headphones,1,99.99,2019-01-16 12:55:00,985 Highland St, Seattle,WA,98101 +146612,AAA Batteries (4-pack),2,2.99,2019-01-02 23:58:00,637 5th St, New York City,NY,10001 +146613,USB-C Charging Cable,1,11.95,2019-01-31 13:04:00,657 Forest St, Austin,TX,73301 +146614,27in FHD Monitor,1,149.99,2019-01-22 05:07:00,429 Cherry St, Seattle,WA,98101 +146615,Lightning Charging Cable,1,14.95,2019-01-23 19:33:00,216 Main St, Los Angeles,CA,90001 +146616,Macbook Pro Laptop,1,1700.0,2019-01-29 11:10:00,227 7th St, Los Angeles,CA,90001 +146617,AAA Batteries (4-pack),1,2.99,2019-01-05 16:03:00,805 North St, Dallas,TX,75001 +146618,AA Batteries (4-pack),2,3.84,2019-01-23 15:38:00,550 Jackson St, New York City,NY,10001 +146619,Lightning Charging Cable,1,14.95,2019-01-22 16:55:00,491 Washington St, Seattle,WA,98101 +146620,AAA Batteries (4-pack),2,2.99,2019-01-08 22:00:00,916 10th St, Los Angeles,CA,90001 +146621,AA Batteries (4-pack),1,3.84,2019-01-26 13:10:00,46 12th St, San Francisco,CA,94016 +146622,34in Ultrawide Monitor,1,379.99,2019-01-17 00:31:00,412 Madison St, New York City,NY,10001 +146623,34in Ultrawide Monitor,1,379.99,2019-01-18 22:56:00,75 Lakeview St, Portland,OR,97035 +146624,USB-C Charging Cable,1,11.95,2019-01-07 19:21:00,477 Hickory St, New York City,NY,10001 +146625,Vareebadd Phone,1,400.0,2019-01-12 10:16:00,94 Meadow St, New York City,NY,10001 +146626,Macbook Pro Laptop,1,1700.0,2019-01-16 23:56:00,273 9th St, San Francisco,CA,94016 +146627,AAA Batteries (4-pack),1,2.99,2019-01-21 21:02:00,401 Pine St, Los Angeles,CA,90001 +146628,27in 4K Gaming Monitor,1,389.99,2019-01-26 16:30:00,886 Wilson St, Seattle,WA,98101 +146629,Bose SoundSport Headphones,1,99.99,2019-01-25 13:19:00,88 Willow St, Seattle,WA,98101 +146630,AA Batteries (4-pack),2,3.84,2019-01-30 21:22:00,496 Hill St, New York City,NY,10001 +146631,Apple Airpods Headphones,1,150.0,2019-01-28 11:14:00,885 South St, San Francisco,CA,94016 +146632,AA Batteries (4-pack),1,3.84,2019-01-06 13:55:00,70 Jefferson St, Atlanta,GA,30301 +146633,Lightning Charging Cable,1,14.95,2019-01-30 18:51:00,63 Washington St, Seattle,WA,98101 +146634,USB-C Charging Cable,1,11.95,2019-01-24 21:16:00,773 Center St, New York City,NY,10001 +146635,Lightning Charging Cable,1,14.95,2019-01-05 22:21:00,35 1st St, Los Angeles,CA,90001 +146636,USB-C Charging Cable,1,11.95,2019-01-04 23:28:00,252 Jackson St, Boston,MA,02215 +146637,iPhone,1,700.0,2019-01-23 19:36:00,801 Jefferson St, Atlanta,GA,30301 +146638,Lightning Charging Cable,1,14.95,2019-01-28 20:22:00,635 Jefferson St, Portland,OR,97035 +146638,Apple Airpods Headphones,1,150.0,2019-01-28 20:22:00,635 Jefferson St, Portland,OR,97035 +146639,Lightning Charging Cable,1,14.95,2019-01-13 11:45:00,224 North St, San Francisco,CA,94016 +146640,AA Batteries (4-pack),1,3.84,2019-01-19 13:06:00,284 Church St, Dallas,TX,75001 +146641,Apple Airpods Headphones,1,150.0,2019-01-10 11:51:00,457 South St, Boston,MA,02215 +146642,27in FHD Monitor,1,149.99,2019-01-15 10:40:00,991 1st St, San Francisco,CA,94016 +146643,Lightning Charging Cable,2,14.95,2019-01-26 11:50:00,569 Willow St, Atlanta,GA,30301 +146644,AA Batteries (4-pack),1,3.84,2019-01-25 13:10:00,815 Adams St, New York City,NY,10001 +146645,Lightning Charging Cable,1,14.95,2019-01-25 17:36:00,176 7th St, Dallas,TX,75001 +146646,AAA Batteries (4-pack),1,2.99,2019-01-03 15:49:00,605 Lincoln St, San Francisco,CA,94016 +146647,20in Monitor,1,109.99,2019-01-03 11:40:00,862 Washington St, Dallas,TX,75001 +146648,Apple Airpods Headphones,1,150.0,2019-01-30 21:58:00,948 Main St, Atlanta,GA,30301 +146649,Apple Airpods Headphones,1,150.0,2019-01-16 18:42:00,579 Dogwood St, San Francisco,CA,94016 +146650,iPhone,1,700.0,2019-01-23 10:31:00,216 Jackson St, Boston,MA,02215 +146651,Wired Headphones,1,11.99,2019-01-08 19:15:00,78 Hickory St, Dallas,TX,75001 +146652,AAA Batteries (4-pack),1,2.99,2019-01-31 21:21:00,579 North St, New York City,NY,10001 +146653,Wired Headphones,1,11.99,2019-01-12 18:25:00,979 9th St, Atlanta,GA,30301 +146654,USB-C Charging Cable,1,11.95,2019-01-06 22:59:00,846 Walnut St, San Francisco,CA,94016 +146655,27in FHD Monitor,1,149.99,2019-01-26 10:28:00,887 5th St, New York City,NY,10001 +146656,AAA Batteries (4-pack),2,2.99,2019-01-25 09:38:00,881 Elm St, Seattle,WA,98101 +146657,27in FHD Monitor,1,149.99,2019-01-18 17:57:00,912 Hickory St, San Francisco,CA,94016 +146658,Wired Headphones,1,11.99,2019-01-25 18:26:00,383 1st St, Atlanta,GA,30301 +146659,Wired Headphones,1,11.99,2019-01-23 17:59:00,24 Elm St, Portland,OR,97035 +146660,AA Batteries (4-pack),1,3.84,2019-01-07 19:48:00,457 4th St, Los Angeles,CA,90001 +146661,Lightning Charging Cable,1,14.95,2019-01-18 18:04:00,587 10th St, Los Angeles,CA,90001 +146662,AA Batteries (4-pack),1,3.84,2019-01-12 00:39:00,546 10th St, Dallas,TX,75001 +146663,34in Ultrawide Monitor,1,379.99,2019-01-31 10:53:00,634 9th St, Seattle,WA,98101 +146664,USB-C Charging Cable,1,11.95,2019-01-28 19:23:00,917 Meadow St, San Francisco,CA,94016 +146665,20in Monitor,1,109.99,2019-01-22 13:24:00,143 Cherry St, Austin,TX,73301 +146666,Macbook Pro Laptop,1,1700.0,2019-01-28 00:34:00,341 Highland St, Portland,OR,97035 +146667,34in Ultrawide Monitor,1,379.99,2019-01-25 20:34:00,672 Meadow St, New York City,NY,10001 +146668,Bose SoundSport Headphones,1,99.99,2019-01-21 23:28:00,70 11th St, Los Angeles,CA,90001 +146669,Wired Headphones,1,11.99,2019-01-26 19:11:00,753 Maple St, Los Angeles,CA,90001 +146670,USB-C Charging Cable,1,11.95,2019-01-07 12:15:00,456 Elm St, Los Angeles,CA,90001 +146671,Google Phone,1,600.0,2019-01-14 12:56:00,399 Church St, Seattle,WA,98101 +146672,27in FHD Monitor,1,149.99,2019-01-02 16:26:00,300 Willow St, Boston,MA,02215 +146673,Lightning Charging Cable,1,14.95,2019-01-21 11:48:00,874 Dogwood St, Los Angeles,CA,90001 +146674,Apple Airpods Headphones,1,150.0,2019-01-04 07:29:00,35 Highland St, Atlanta,GA,30301 +146675,Apple Airpods Headphones,1,150.0,2019-01-03 13:12:00,258 Pine St, Austin,TX,73301 +146676,Lightning Charging Cable,1,14.95,2019-01-16 16:43:00,365 Park St, Seattle,WA,98101 +146677,Apple Airpods Headphones,1,150.0,2019-01-16 09:57:00,721 Wilson St, Portland,OR,97035 +146678,USB-C Charging Cable,2,11.95,2019-01-03 23:55:00,246 12th St, Los Angeles,CA,90001 +146679,USB-C Charging Cable,1,11.95,2019-01-29 21:19:00,356 1st St, Los Angeles,CA,90001 +146680,Bose SoundSport Headphones,1,99.99,2019-01-16 02:11:00,97 11th St, San Francisco,CA,94016 +146681,AA Batteries (4-pack),1,3.84,2019-01-07 20:13:00,40 Center St, Dallas,TX,75001 +146682,AA Batteries (4-pack),1,3.84,2019-01-29 20:32:00,877 Spruce St, San Francisco,CA,94016 +146683,Bose SoundSport Headphones,1,99.99,2019-01-22 01:34:00,558 Walnut St, Los Angeles,CA,90001 +146684,AA Batteries (4-pack),1,3.84,2019-01-31 20:56:00,94 6th St, San Francisco,CA,94016 +146685,USB-C Charging Cable,1,11.95,2019-01-20 12:00:00,501 South St, Seattle,WA,98101 +146686,20in Monitor,1,109.99,2019-01-11 10:42:00,342 9th St, Los Angeles,CA,90001 +146687,AA Batteries (4-pack),1,3.84,2019-01-08 00:53:00,66 Church St, New York City,NY,10001 +146688,iPhone,1,700.0,2019-01-14 20:40:00,887 Hickory St, Los Angeles,CA,90001 +146689,20in Monitor,1,109.99,2019-01-28 05:26:00,589 Main St, Los Angeles,CA,90001 +146690,Google Phone,1,600.0,2019-01-12 07:16:00,827 West St, New York City,NY,10001 +146691,Flatscreen TV,1,300.0,2019-01-16 20:30:00,18 West St, Los Angeles,CA,90001 +146692,Google Phone,1,600.0,2019-01-28 10:04:00,37 2nd St, Seattle,WA,98101 +146693,USB-C Charging Cable,1,11.95,2019-01-27 18:45:00,527 Pine St, San Francisco,CA,94016 +146694,USB-C Charging Cable,1,11.95,2019-01-20 15:06:00,854 Cedar St, New York City,NY,10001 +146695,iPhone,1,700.0,2019-01-09 19:31:00,554 Lakeview St, Portland,ME,04101 +146696,34in Ultrawide Monitor,1,379.99,2019-01-14 23:45:00,420 2nd St, San Francisco,CA,94016 +146697,Lightning Charging Cable,1,14.95,2019-01-16 18:26:00,990 13th St, Atlanta,GA,30301 +146698,Bose SoundSport Headphones,1,99.99,2019-01-20 09:41:00,596 Center St, San Francisco,CA,94016 +146699,34in Ultrawide Monitor,1,379.99,2019-01-18 21:13:00,394 Chestnut St, San Francisco,CA,94016 +146700,USB-C Charging Cable,1,11.95,2019-01-30 09:07:00,316 Walnut St, New York City,NY,10001 +146701,iPhone,1,700.0,2019-01-24 20:34:00,625 Adams St, San Francisco,CA,94016 +146702,USB-C Charging Cable,1,11.95,2019-01-13 15:44:00,187 Forest St, Dallas,TX,75001 +146703,USB-C Charging Cable,2,11.95,2019-01-01 18:31:00,701 Washington St, Dallas,TX,75001 +146704,Lightning Charging Cable,2,14.95,2019-01-13 17:26:00,934 Lake St, Boston,MA,02215 +146705,Macbook Pro Laptop,1,1700.0,2019-01-15 10:46:00,196 14th St, Austin,TX,73301 +146706,Bose SoundSport Headphones,1,99.99,2019-01-30 13:38:00,242 14th St, Atlanta,GA,30301 +146707,Apple Airpods Headphones,1,150.0,2019-01-15 10:44:00,352 Hickory St, San Francisco,CA,94016 +146708,Macbook Pro Laptop,1,1700.0,2019-01-24 14:02:00,455 12th St, San Francisco,CA,94016 +146709,Google Phone,1,600.0,2019-01-12 13:35:00,111 Wilson St, New York City,NY,10001 +146710,AA Batteries (4-pack),1,3.84,2019-01-11 09:11:00,5 Lincoln St, San Francisco,CA,94016 +146711,Apple Airpods Headphones,1,150.0,2019-01-19 18:35:00,14 Hickory St, Los Angeles,CA,90001 +146712,Macbook Pro Laptop,1,1700.0,2019-01-29 18:32:00,475 Adams St, Austin,TX,73301 +146713,34in Ultrawide Monitor,1,379.99,2019-01-14 09:34:00,64 Main St, Seattle,WA,98101 +146714,AAA Batteries (4-pack),1,2.99,2019-01-11 19:01:00,745 Sunset St, San Francisco,CA,94016 +146714,Bose SoundSport Headphones,1,99.99,2019-01-11 19:01:00,745 Sunset St, San Francisco,CA,94016 +146715,Lightning Charging Cable,1,14.95,2019-01-07 18:08:00,549 5th St, Dallas,TX,75001 +146716,USB-C Charging Cable,1,11.95,2019-01-11 19:32:00,847 West St, Austin,TX,73301 +146717,Macbook Pro Laptop,1,1700.0,2019-01-23 08:00:00,657 Highland St, Atlanta,GA,30301 +146718,Apple Airpods Headphones,1,150.0,2019-01-10 15:58:00,502 12th St, New York City,NY,10001 +146719,Wired Headphones,1,11.99,2019-01-04 23:58:00,720 Lake St, Austin,TX,73301 +146720,Vareebadd Phone,1,400.0,2019-01-18 10:19:00,187 10th St, Los Angeles,CA,90001 +146721,USB-C Charging Cable,1,11.95,2019-01-08 10:14:00,995 Chestnut St, Dallas,TX,75001 +146722,Lightning Charging Cable,1,14.95,2019-01-27 02:08:00,550 1st St, Los Angeles,CA,90001 +146723,ThinkPad Laptop,1,999.99,2019-01-14 22:42:00,100 Sunset St, Atlanta,GA,30301 +146724,Macbook Pro Laptop,1,1700.0,2019-01-11 07:45:00,574 Church St, Los Angeles,CA,90001 +146725,Flatscreen TV,1,300.0,2019-01-31 12:55:00,927 West St, Los Angeles,CA,90001 +146726,AA Batteries (4-pack),1,3.84,2019-01-29 13:33:00,198 South St, Atlanta,GA,30301 +146727,AAA Batteries (4-pack),1,2.99,2019-01-06 17:25:00,191 Maple St, Atlanta,GA,30301 +146728,Lightning Charging Cable,1,14.95,2019-01-09 11:08:00,602 Wilson St, Dallas,TX,75001 +146729,Apple Airpods Headphones,1,150.0,2019-01-16 20:42:00,133 River St, Seattle,WA,98101 +146730,34in Ultrawide Monitor,1,379.99,2019-01-31 16:53:00,372 7th St, San Francisco,CA,94016 +146731,Bose SoundSport Headphones,1,99.99,2019-01-10 22:07:00,728 Lincoln St, Seattle,WA,98101 +146732,AAA Batteries (4-pack),1,2.99,2019-01-08 16:21:00,966 Hill St, Los Angeles,CA,90001 +146733,AA Batteries (4-pack),1,3.84,2019-01-28 20:14:00,2 10th St, Seattle,WA,98101 +146734,Apple Airpods Headphones,1,150.0,2019-01-29 06:16:00,633 Hickory St, San Francisco,CA,94016 +146735,Lightning Charging Cable,2,14.95,2019-01-28 21:07:00,903 5th St, Portland,OR,97035 +146736,USB-C Charging Cable,1,11.95,2019-01-06 17:58:00,256 Spruce St, Portland,OR,97035 +146737,USB-C Charging Cable,2,11.95,2019-01-31 19:44:00,352 Maple St, Seattle,WA,98101 +146738,27in FHD Monitor,1,149.99,2019-01-18 15:06:00,221 River St, Atlanta,GA,30301 +146739,AA Batteries (4-pack),1,3.84,2019-01-07 13:15:00,557 Park St, Atlanta,GA,30301 +146740,Google Phone,1,600.0,2019-01-24 11:39:00,734 Maple St, San Francisco,CA,94016 +146741,Lightning Charging Cable,1,14.95,2019-01-12 20:57:00,689 12th St, Dallas,TX,75001 +146742,AA Batteries (4-pack),1,3.84,2019-01-03 12:25:00,327 North St, Atlanta,GA,30301 +146743,iPhone,1,700.0,2019-01-29 12:02:00,911 8th St, New York City,NY,10001 +146744,Wired Headphones,1,11.99,2019-01-10 06:33:00,475 Ridge St, San Francisco,CA,94016 +146745,AA Batteries (4-pack),1,3.84,2019-01-02 14:01:00,158 11th St, New York City,NY,10001 +146746,Vareebadd Phone,1,400.0,2019-01-07 15:52:00,163 5th St, Los Angeles,CA,90001 +146747,Lightning Charging Cable,1,14.95,2019-01-20 12:29:00,70 8th St, Los Angeles,CA,90001 +146748,AA Batteries (4-pack),1,3.84,2019-01-22 10:28:00,277 West St, San Francisco,CA,94016 +146749,USB-C Charging Cable,1,11.95,2019-01-02 15:55:00,137 12th St, San Francisco,CA,94016 +146750,Wired Headphones,1,11.99,2019-01-12 09:00:00,584 Adams St, Dallas,TX,75001 +146751,Lightning Charging Cable,1,14.95,2019-01-15 01:05:00,57 6th St, San Francisco,CA,94016 +146752,USB-C Charging Cable,1,11.95,2019-01-10 15:07:00,386 Dogwood St, New York City,NY,10001 +146753,Bose SoundSport Headphones,1,99.99,2019-01-13 14:20:00,251 Ridge St, Atlanta,GA,30301 +146754,AA Batteries (4-pack),1,3.84,2019-01-05 14:33:00,49 Forest St, Los Angeles,CA,90001 +146755,USB-C Charging Cable,1,11.95,2019-01-12 19:02:00,256 Hill St, San Francisco,CA,94016 +146756,Apple Airpods Headphones,1,150.0,2019-01-15 09:05:00,347 Johnson St, San Francisco,CA,94016 +146757,34in Ultrawide Monitor,1,379.99,2019-01-03 16:03:00,374 Ridge St, Los Angeles,CA,90001 +146758,Google Phone,1,600.0,2019-01-02 15:06:00,576 Madison St, Los Angeles,CA,90001 +146758,USB-C Charging Cable,1,11.95,2019-01-02 15:06:00,576 Madison St, Los Angeles,CA,90001 +146759,ThinkPad Laptop,1,999.99,2019-01-25 16:06:00,971 13th St, Seattle,WA,98101 +146760,Wired Headphones,1,11.99,2019-01-07 10:31:00,349 Elm St, Los Angeles,CA,90001 +146761,Wired Headphones,1,11.99,2019-01-20 11:40:00,559 Forest St, San Francisco,CA,94016 +146762,Macbook Pro Laptop,1,1700.0,2019-01-19 23:59:00,135 Main St, San Francisco,CA,94016 +146763,AA Batteries (4-pack),2,3.84,2019-01-03 11:56:00,696 8th St, Los Angeles,CA,90001 +146764,AA Batteries (4-pack),1,3.84,2019-01-15 13:42:00,834 Park St, San Francisco,CA,94016 +146765,Google Phone,1,600.0,2019-01-21 11:23:00,918 Highland St, New York City,NY,10001 +146766,Apple Airpods Headphones,1,150.0,2019-01-04 16:48:00,62 1st St, Los Angeles,CA,90001 +146767,Macbook Pro Laptop,1,1700.0,2019-01-22 07:25:00,354 Main St, Dallas,TX,75001 +146768,Lightning Charging Cable,1,14.95,2019-01-17 11:22:00,901 Spruce St, Los Angeles,CA,90001 +146769,AAA Batteries (4-pack),1,2.99,2019-01-17 17:27:00,77 Walnut St, Boston,MA,02215 +146770,Bose SoundSport Headphones,1,99.99,2019-01-11 13:12:00,929 Dogwood St, Seattle,WA,98101 +146771,AAA Batteries (4-pack),2,2.99,2019-01-07 21:37:00,586 Lakeview St, San Francisco,CA,94016 +146772,20in Monitor,1,109.99,2019-01-13 15:14:00,108 Cherry St, San Francisco,CA,94016 +146773,AAA Batteries (4-pack),1,2.99,2019-01-15 13:37:00,132 12th St, Austin,TX,73301 +146774,Lightning Charging Cable,1,14.95,2019-01-18 21:45:00,563 Lincoln St, Atlanta,GA,30301 +146775,Lightning Charging Cable,1,14.95,2019-01-01 17:40:00,372 Elm St, San Francisco,CA,94016 +146776,AA Batteries (4-pack),1,3.84,2019-01-30 00:04:00,738 North St, Dallas,TX,75001 +146777,Bose SoundSport Headphones,1,99.99,2019-01-29 17:12:00,18 Main St, Portland,OR,97035 +146778,Apple Airpods Headphones,1,150.0,2019-01-13 02:15:00,454 Pine St, Austin,TX,73301 +146779,USB-C Charging Cable,1,11.95,2019-01-07 09:59:00,658 Jackson St, Seattle,WA,98101 +146780,iPhone,1,700.0,2019-01-17 20:00:00,891 Ridge St, Los Angeles,CA,90001 +146781,AAA Batteries (4-pack),1,2.99,2019-01-23 10:27:00,28 Jefferson St, Seattle,WA,98101 +146782,34in Ultrawide Monitor,1,379.99,2019-01-08 20:25:00,922 Willow St, Atlanta,GA,30301 +146783,Wired Headphones,1,11.99,2019-01-26 13:07:00,61 Adams St, San Francisco,CA,94016 +146784,USB-C Charging Cable,1,11.95,2019-01-05 06:47:00,172 Main St, Portland,OR,97035 +146785,AAA Batteries (4-pack),1,2.99,2019-01-30 19:08:00,115 Dogwood St, Los Angeles,CA,90001 +146786,20in Monitor,1,109.99,2019-01-06 20:53:00,209 Forest St, Seattle,WA,98101 +146787,Apple Airpods Headphones,1,150.0,2019-01-16 10:08:00,660 Lincoln St, San Francisco,CA,94016 +146788,USB-C Charging Cable,1,11.95,2019-01-18 16:13:00,369 13th St, New York City,NY,10001 +146789,Apple Airpods Headphones,1,150.0,2019-01-15 10:24:00,862 Hill St, Los Angeles,CA,90001 +146790,Lightning Charging Cable,1,14.95,2019-01-15 15:49:00,550 Dogwood St, Los Angeles,CA,90001 +146791,Macbook Pro Laptop,1,1700.0,2019-01-03 12:45:00,489 Church St, San Francisco,CA,94016 +146792,Google Phone,1,600.0,2019-01-28 06:03:00,92 Dogwood St, San Francisco,CA,94016 +146793,AAA Batteries (4-pack),1,2.99,2019-01-10 17:28:00,704 1st St, San Francisco,CA,94016 +146794,Apple Airpods Headphones,1,150.0,2019-01-28 16:02:00,915 Elm St, San Francisco,CA,94016 +146795,Wired Headphones,1,11.99,2019-01-20 09:20:00,886 Highland St, New York City,NY,10001 +146796,USB-C Charging Cable,1,11.95,2019-01-23 05:43:00,808 10th St, New York City,NY,10001 +146797,Wired Headphones,1,11.99,2019-01-21 11:20:00,323 Highland St, Los Angeles,CA,90001 +146798,Bose SoundSport Headphones,1,99.99,2019-01-06 15:55:00,133 Highland St, Boston,MA,02215 +146799,Wired Headphones,1,11.99,2019-01-20 19:14:00,351 Hill St, San Francisco,CA,94016 +146800,AA Batteries (4-pack),1,3.84,2019-01-12 15:10:00,229 West St, Portland,OR,97035 +146801,USB-C Charging Cable,2,11.95,2019-01-11 13:44:00,217 South St, San Francisco,CA,94016 +146802,Bose SoundSport Headphones,1,99.99,2019-01-10 19:57:00,208 Johnson St, Atlanta,GA,30301 +146803,AAA Batteries (4-pack),1,2.99,2019-01-16 13:25:00,932 Wilson St, New York City,NY,10001 +146804,27in FHD Monitor,1,149.99,2019-01-04 09:30:00,755 Johnson St, New York City,NY,10001 +146805,USB-C Charging Cable,1,11.95,2019-01-26 01:39:00,115 Ridge St, Boston,MA,02215 +146806,34in Ultrawide Monitor,1,379.99,2019-01-25 08:22:00,698 12th St, San Francisco,CA,94016 +146807,ThinkPad Laptop,1,999.99,2019-01-15 20:11:00,198 11th St, Dallas,TX,75001 +146808,AA Batteries (4-pack),1,3.84,2019-01-18 20:18:00,447 Church St, San Francisco,CA,94016 +146809,USB-C Charging Cable,1,11.95,2019-01-23 12:51:00,359 North St, Los Angeles,CA,90001 +146810,Lightning Charging Cable,1,14.95,2019-01-31 19:49:00,866 Sunset St, Boston,MA,02215 +146811,Lightning Charging Cable,1,14.95,2019-01-22 00:42:00,486 Jackson St, Atlanta,GA,30301 +146812,ThinkPad Laptop,1,999.99,2019-01-16 08:20:00,97 Pine St, Atlanta,GA,30301 +146813,AA Batteries (4-pack),2,3.84,2019-01-24 10:21:00,411 10th St, Austin,TX,73301 +146814,AAA Batteries (4-pack),2,2.99,2019-01-13 22:12:00,797 Dogwood St, Dallas,TX,75001 +146815,Flatscreen TV,1,300.0,2019-01-29 20:11:00,773 Hickory St, Seattle,WA,98101 +146816,Google Phone,1,600.0,2019-01-18 20:06:00,672 Meadow St, Los Angeles,CA,90001 +146816,Wired Headphones,1,11.99,2019-01-18 20:06:00,672 Meadow St, Los Angeles,CA,90001 +146817,USB-C Charging Cable,1,11.95,2019-01-09 11:14:00,660 Willow St, Boston,MA,02215 +146818,Wired Headphones,1,11.99,2019-01-14 14:02:00,275 Park St, Seattle,WA,98101 +146819,USB-C Charging Cable,1,11.95,2019-01-20 14:33:00,255 Elm St, Atlanta,GA,30301 +146820,USB-C Charging Cable,1,11.95,2019-01-20 14:53:00,641 Dogwood St, Los Angeles,CA,90001 +146821,Flatscreen TV,1,300.0,2019-01-27 19:35:00,572 4th St, San Francisco,CA,94016 +146822,Bose SoundSport Headphones,1,99.99,2019-01-10 09:58:00,605 5th St, Boston,MA,02215 +146823,USB-C Charging Cable,1,11.95,2019-01-06 10:25:00,541 Pine St, Los Angeles,CA,90001 +146824,AA Batteries (4-pack),1,3.84,2019-01-17 18:32:00,782 7th St, San Francisco,CA,94016 +146825,Vareebadd Phone,1,400.0,2019-01-18 11:04:00,956 14th St, Boston,MA,02215 +146826,AA Batteries (4-pack),1,3.84,2019-01-19 13:35:00,447 River St, Los Angeles,CA,90001 +146827,34in Ultrawide Monitor,1,379.99,2019-01-06 15:23:00,777 2nd St, San Francisco,CA,94016 +146828,Bose SoundSport Headphones,1,99.99,2019-01-30 15:56:00,713 Lakeview St, Los Angeles,CA,90001 +146829,AA Batteries (4-pack),1,3.84,2019-01-04 19:30:00,443 South St, Los Angeles,CA,90001 +146830,iPhone,1,700.0,2019-01-28 00:25:00,491 Forest St, San Francisco,CA,94016 +146831,27in 4K Gaming Monitor,1,389.99,2019-01-27 23:06:00,445 Cedar St, Portland,OR,97035 +146832,Apple Airpods Headphones,1,150.0,2019-01-19 16:04:00,95 Spruce St, Los Angeles,CA,90001 +146833,Apple Airpods Headphones,1,150.0,2019-01-01 23:42:00,119 11th St, Boston,MA,02215 +146834,Google Phone,1,600.0,2019-01-30 15:47:00,128 Main St, Austin,TX,73301 +146834,Wired Headphones,1,11.99,2019-01-30 15:47:00,128 Main St, Austin,TX,73301 +146835,Wired Headphones,1,11.99,2019-01-22 15:19:00,932 Lake St, New York City,NY,10001 +146836,ThinkPad Laptop,1,999.99,2019-01-21 22:23:00,871 Adams St, Atlanta,GA,30301 +146837,ThinkPad Laptop,1,999.99,2019-01-15 09:20:00,2 9th St, Atlanta,GA,30301 +146838,AAA Batteries (4-pack),3,2.99,2019-01-02 11:30:00,877 Lincoln St, Austin,TX,73301 +146839,Wired Headphones,1,11.99,2019-01-10 12:19:00,439 Hickory St, New York City,NY,10001 +146840,USB-C Charging Cable,1,11.95,2019-01-03 12:36:00,681 Adams St, Portland,OR,97035 +146841,Wired Headphones,1,11.99,2019-01-05 11:28:00,512 8th St, Portland,ME,04101 +146842,Google Phone,1,600.0,2019-01-11 08:51:00,480 Meadow St, Los Angeles,CA,90001 +146843,Google Phone,1,600.0,2019-01-27 12:26:00,494 Hill St, Boston,MA,02215 +146844,Flatscreen TV,1,300.0,2019-01-01 11:55:00,593 Church St, New York City,NY,10001 +146845,USB-C Charging Cable,2,11.95,2019-01-01 20:22:00,414 Washington St, San Francisco,CA,94016 +146846,20in Monitor,1,109.99,2019-01-17 19:13:00,193 Forest St, New York City,NY,10001 +146847,Lightning Charging Cable,1,14.95,2019-01-04 00:55:00,39 11th St, San Francisco,CA,94016 +146848,USB-C Charging Cable,1,11.95,2019-01-04 00:42:00,354 Church St, Portland,ME,04101 +146849,USB-C Charging Cable,1,11.95,2019-01-15 05:58:00,302 Lake St, Los Angeles,CA,90001 +146850,Wired Headphones,1,11.99,2019-01-13 15:02:00,239 Hill St, Austin,TX,73301 +146851,AAA Batteries (4-pack),1,2.99,2019-01-10 23:00:00,383 Lakeview St, Los Angeles,CA,90001 +146852,AAA Batteries (4-pack),1,2.99,2019-01-03 13:12:00,288 Cherry St, New York City,NY,10001 +146853,AAA Batteries (4-pack),2,2.99,2019-01-20 16:27:00,672 Maple St, Dallas,TX,75001 +146854,34in Ultrawide Monitor,1,379.99,2019-01-22 06:29:00,149 6th St, New York City,NY,10001 +146855,Lightning Charging Cable,1,14.95,2019-01-09 16:32:00,162 Hickory St, Austin,TX,73301 +146855,Apple Airpods Headphones,1,150.0,2019-01-09 16:32:00,162 Hickory St, Austin,TX,73301 +146856,27in FHD Monitor,1,149.99,2019-01-22 19:12:00,936 7th St, Boston,MA,02215 +146857,Flatscreen TV,1,300.0,2019-01-01 12:35:00,312 Cherry St, Atlanta,GA,30301 +146858,27in FHD Monitor,1,149.99,2019-01-26 19:24:00,873 Jackson St, New York City,NY,10001 +146859,USB-C Charging Cable,1,11.95,2019-01-09 14:00:00,566 8th St, Los Angeles,CA,90001 +146860,Bose SoundSport Headphones,1,99.99,2019-01-26 18:43:00,831 Jefferson St, San Francisco,CA,94016 +146861,iPhone,1,700.0,2019-01-26 12:32:00,819 Dogwood St, Dallas,TX,75001 +146861,Apple Airpods Headphones,1,150.0,2019-01-26 12:32:00,819 Dogwood St, Dallas,TX,75001 +146862,AA Batteries (4-pack),2,3.84,2019-01-22 17:40:00,55 Church St, Los Angeles,CA,90001 +146863,Macbook Pro Laptop,1,1700.0,2019-01-25 17:20:00,864 Lakeview St, Atlanta,GA,30301 +146864,Lightning Charging Cable,1,14.95,2019-01-27 12:57:00,130 South St, New York City,NY,10001 +146865,Lightning Charging Cable,1,14.95,2019-01-20 12:38:00,396 6th St, Los Angeles,CA,90001 +146866,USB-C Charging Cable,1,11.95,2019-01-21 01:01:00,944 Chestnut St, Los Angeles,CA,90001 +146867,AA Batteries (4-pack),1,3.84,2019-01-06 21:30:00,618 Lake St, Atlanta,GA,30301 +146868,27in FHD Monitor,1,149.99,2019-01-04 17:11:00,618 Chestnut St, Portland,OR,97035 +146869,AA Batteries (4-pack),1,3.84,2019-01-24 21:06:00,454 Willow St, Atlanta,GA,30301 +146870,Wired Headphones,1,11.99,2019-01-26 09:06:00,977 Madison St, Austin,TX,73301 +146871,iPhone,1,700.0,2019-01-14 15:52:00,791 Ridge St, San Francisco,CA,94016 +146871,Apple Airpods Headphones,1,150.0,2019-01-14 15:52:00,791 Ridge St, San Francisco,CA,94016 +146872,iPhone,1,700.0,2019-01-31 23:21:00,470 Jefferson St, Los Angeles,CA,90001 +146872,Apple Airpods Headphones,1,150.0,2019-01-31 23:21:00,470 Jefferson St, Los Angeles,CA,90001 +146873,AAA Batteries (4-pack),1,2.99,2019-01-28 21:13:00,873 Jackson St, Portland,OR,97035 +146874,iPhone,1,700.0,2019-01-27 11:04:00,906 Ridge St, Dallas,TX,75001 +146875,AAA Batteries (4-pack),1,2.99,2019-01-04 11:07:00,599 Chestnut St, San Francisco,CA,94016 +146876,iPhone,1,700.0,2019-01-16 12:01:00,44 4th St, San Francisco,CA,94016 +146876,Apple Airpods Headphones,1,150.0,2019-01-16 12:01:00,44 4th St, San Francisco,CA,94016 +146877,34in Ultrawide Monitor,1,379.99,2019-01-13 11:02:00,978 10th St, Atlanta,GA,30301 +146878,Google Phone,1,600.0,2019-01-24 15:21:00,33 Sunset St, San Francisco,CA,94016 +146879,Flatscreen TV,1,300.0,2019-01-28 08:03:00,758 12th St, Portland,OR,97035 +146880,Flatscreen TV,1,300.0,2019-01-11 21:04:00,798 Park St, Atlanta,GA,30301 +146881,Flatscreen TV,1,300.0,2019-01-21 14:48:00,427 Lake St, Boston,MA,02215 +146882,20in Monitor,1,109.99,2019-01-04 19:28:00,131 Lake St, San Francisco,CA,94016 +146883,Apple Airpods Headphones,1,150.0,2019-01-29 15:33:00,742 13th St, San Francisco,CA,94016 +146884,Bose SoundSport Headphones,1,99.99,2019-01-05 16:02:00,759 Ridge St, Dallas,TX,75001 +146885,ThinkPad Laptop,1,999.99,2019-01-31 00:28:00,471 Lincoln St, San Francisco,CA,94016 +146886,Google Phone,1,600.0,2019-01-19 12:02:00,88 Wilson St, Dallas,TX,75001 +146887,Apple Airpods Headphones,1,150.0,2019-01-11 10:12:00,69 Chestnut St, San Francisco,CA,94016 +146888,AA Batteries (4-pack),1,3.84,2019-01-24 15:58:00,831 7th St, Seattle,WA,98101 +146889,Bose SoundSport Headphones,1,99.99,2019-01-06 13:23:00,482 5th St, Portland,OR,97035 +146890,USB-C Charging Cable,1,11.95,2019-01-08 19:51:00,93 6th St, San Francisco,CA,94016 +146891,Macbook Pro Laptop,1,1700.0,2019-01-07 20:05:00,137 Willow St, Boston,MA,02215 +146892,27in FHD Monitor,1,149.99,2019-01-16 21:52:00,170 Park St, Boston,MA,02215 +146893,USB-C Charging Cable,2,11.95,2019-01-13 12:31:00,424 Hill St, New York City,NY,10001 +146894,Google Phone,1,600.0,2019-01-29 14:54:00,595 Dogwood St, San Francisco,CA,94016 +146895,USB-C Charging Cable,3,11.95,2019-01-25 20:31:00,580 West St, San Francisco,CA,94016 +146896,34in Ultrawide Monitor,1,379.99,2019-01-13 15:38:00,667 North St, Portland,OR,97035 +146897,AA Batteries (4-pack),1,3.84,2019-01-22 16:05:00,550 6th St, Dallas,TX,75001 +146898,27in 4K Gaming Monitor,1,389.99,2019-01-23 15:47:00,317 5th St, Los Angeles,CA,90001 +146899,Macbook Pro Laptop,1,1700.0,2019-01-01 11:31:00,341 4th St, Los Angeles,CA,90001 +146900,Apple Airpods Headphones,1,150.0,2019-01-10 16:23:00,894 Jackson St, Portland,OR,97035 +146901,27in FHD Monitor,1,149.99,2019-01-11 14:50:00,53 8th St, San Francisco,CA,94016 +146902,27in 4K Gaming Monitor,1,389.99,2019-01-17 12:45:00,543 10th St, Atlanta,GA,30301 +146903,Bose SoundSport Headphones,1,99.99,2019-01-12 00:20:00,924 Chestnut St, Dallas,TX,75001 +146904,AA Batteries (4-pack),1,3.84,2019-01-05 20:51:00,955 5th St, Dallas,TX,75001 +146905,Wired Headphones,1,11.99,2019-01-10 13:26:00,340 Forest St, Los Angeles,CA,90001 +146906,AAA Batteries (4-pack),1,2.99,2019-01-03 13:01:00,652 Lincoln St, New York City,NY,10001 +146907,Lightning Charging Cable,1,14.95,2019-01-10 21:03:00,432 Cedar St, San Francisco,CA,94016 +146908,AAA Batteries (4-pack),1,2.99,2019-01-01 18:09:00,978 Meadow St, Los Angeles,CA,90001 +146909,AA Batteries (4-pack),1,3.84,2019-01-17 18:20:00,226 Pine St, Boston,MA,02215 +146910,Lightning Charging Cable,1,14.95,2019-01-01 16:11:00,175 Lake St, Seattle,WA,98101 +146911,USB-C Charging Cable,1,11.95,2019-01-04 15:49:00,81 Jackson St, Los Angeles,CA,90001 +146912,AA Batteries (4-pack),1,3.84,2019-01-01 23:48:00,817 10th St, San Francisco,CA,94016 +146913,Lightning Charging Cable,1,14.95,2019-01-01 19:17:00,24 Washington St, San Francisco,CA,94016 +146914,USB-C Charging Cable,2,11.95,2019-01-27 11:53:00,418 Adams St, New York City,NY,10001 +146915,Wired Headphones,1,11.99,2019-01-01 21:23:00,837 13th St, New York City,NY,10001 +146916,USB-C Charging Cable,1,11.95,2019-01-26 12:17:00,206 Pine St, New York City,NY,10001 +146917,27in 4K Gaming Monitor,1,389.99,2019-01-30 16:38:00,991 Highland St, Seattle,WA,98101 +146918,USB-C Charging Cable,1,11.95,2019-01-15 15:51:00,127 Hill St, San Francisco,CA,94016 +146919,27in 4K Gaming Monitor,1,389.99,2019-01-11 14:09:00,761 12th St, Austin,TX,73301 +146920,AA Batteries (4-pack),1,3.84,2019-01-23 10:35:00,662 Elm St, Los Angeles,CA,90001 +146921,Apple Airpods Headphones,1,150.0,2019-01-10 06:04:00,529 14th St, Dallas,TX,75001 +146922,USB-C Charging Cable,1,11.95,2019-01-02 23:42:00,841 Chestnut St, San Francisco,CA,94016 +146923,Wired Headphones,1,11.99,2019-01-29 15:39:00,768 10th St, Atlanta,GA,30301 +146924,Apple Airpods Headphones,1,150.0,2019-01-06 18:49:00,77 Dogwood St, San Francisco,CA,94016 +146925,Flatscreen TV,1,300.0,2019-01-12 21:35:00,459 South St, Boston,MA,02215 +146926,iPhone,1,700.0,2019-01-30 15:47:00,943 Park St, San Francisco,CA,94016 +146927,AAA Batteries (4-pack),1,2.99,2019-01-19 17:30:00,808 Willow St, Seattle,WA,98101 +146928,Lightning Charging Cable,1,14.95,2019-01-10 12:57:00,732 12th St, Seattle,WA,98101 +146929,Lightning Charging Cable,2,14.95,2019-01-15 16:50:00,12 Hill St, New York City,NY,10001 +146930,Wired Headphones,1,11.99,2019-01-18 11:53:00,273 Church St, Boston,MA,02215 +146931,Bose SoundSport Headphones,1,99.99,2019-01-09 19:12:00,884 6th St, Atlanta,GA,30301 +146932,AAA Batteries (4-pack),1,2.99,2019-01-22 00:07:00,941 12th St, New York City,NY,10001 +146933,Wired Headphones,1,11.99,2019-01-02 15:21:00,360 Ridge St, Boston,MA,02215 +146934,USB-C Charging Cable,2,11.95,2019-01-17 12:48:00,119 6th St, New York City,NY,10001 +146935,27in 4K Gaming Monitor,1,389.99,2019-01-18 00:10:00,93 Hill St, New York City,NY,10001 +146936,Lightning Charging Cable,1,14.95,2019-01-05 11:36:00,737 Maple St, Dallas,TX,75001 +146937,USB-C Charging Cable,1,11.95,2019-01-22 19:10:00,994 11th St, San Francisco,CA,94016 +146938,Wired Headphones,1,11.99,2019-01-12 09:54:00,459 Jackson St, Portland,OR,97035 +146939,Bose SoundSport Headphones,1,99.99,2019-01-11 22:05:00,324 Pine St, Dallas,TX,75001 +146940,20in Monitor,1,109.99,2019-01-28 20:52:00,867 2nd St, Dallas,TX,75001 +146941,Wired Headphones,1,11.99,2019-01-17 13:45:00,347 Jackson St, Atlanta,GA,30301 +146942,Apple Airpods Headphones,1,150.0,2019-01-11 09:20:00,406 10th St, San Francisco,CA,94016 +146943,Vareebadd Phone,1,400.0,2019-01-21 11:03:00,919 Cedar St, San Francisco,CA,94016 +146944,Google Phone,1,600.0,2019-01-15 20:24:00,568 Wilson St, Los Angeles,CA,90001 +146945,27in 4K Gaming Monitor,1,389.99,2019-01-19 21:44:00,489 Meadow St, San Francisco,CA,94016 +146946,iPhone,1,700.0,2019-01-25 09:46:00,425 14th St, San Francisco,CA,94016 +146946,Wired Headphones,1,11.99,2019-01-25 09:46:00,425 14th St, San Francisco,CA,94016 +146947,Wired Headphones,1,11.99,2019-01-25 21:51:00,852 Ridge St, New York City,NY,10001 +146948,AAA Batteries (4-pack),2,2.99,2019-01-12 14:43:00,404 Madison St, Atlanta,GA,30301 +146949,34in Ultrawide Monitor,1,379.99,2019-01-13 22:31:00,180 8th St, Boston,MA,02215 +146950,27in FHD Monitor,1,149.99,2019-01-19 11:09:00,146 Chestnut St, Austin,TX,73301 +146951,Google Phone,1,600.0,2019-01-19 15:56:00,969 Washington St, Austin,TX,73301 +146952,27in FHD Monitor,1,149.99,2019-01-13 22:19:00,801 Lake St, San Francisco,CA,94016 +146952,27in 4K Gaming Monitor,1,389.99,2019-01-13 22:19:00,801 Lake St, San Francisco,CA,94016 +146953,20in Monitor,1,109.99,2019-01-12 12:47:00,335 5th St, San Francisco,CA,94016 +146954,27in FHD Monitor,1,149.99,2019-01-19 17:20:00,97 Ridge St, Austin,TX,73301 +146955,AA Batteries (4-pack),1,3.84,2019-01-01 18:51:00,652 North St, Seattle,WA,98101 +146956,Apple Airpods Headphones,1,150.0,2019-01-30 09:02:00,268 Forest St, New York City,NY,10001 +146957,AAA Batteries (4-pack),2,2.99,2019-01-21 11:30:00,748 Highland St, Boston,MA,02215 +146958,Apple Airpods Headphones,1,150.0,2019-01-22 16:44:00,570 Maple St, San Francisco,CA,94016 +146959,Google Phone,1,600.0,2019-01-04 10:33:00,822 Cherry St, San Francisco,CA,94016 +146959,Wired Headphones,1,11.99,2019-01-04 10:33:00,822 Cherry St, San Francisco,CA,94016 +146960,Wired Headphones,1,11.99,2019-01-18 18:17:00,581 West St, Portland,OR,97035 +146961,Wired Headphones,1,11.99,2019-01-22 10:49:00,552 14th St, Los Angeles,CA,90001 +146962,34in Ultrawide Monitor,1,379.99,2019-01-22 16:07:00,482 11th St, Los Angeles,CA,90001 +146963,AAA Batteries (4-pack),1,2.99,2019-01-19 13:50:00,203 South St, San Francisco,CA,94016 +146964,34in Ultrawide Monitor,1,379.99,2019-01-30 08:19:00,883 1st St, New York City,NY,10001 +146965,USB-C Charging Cable,1,11.95,2019-01-26 17:56:00,491 12th St, Portland,OR,97035 +146966,AA Batteries (4-pack),1,3.84,2019-01-08 21:12:00,778 1st St, Atlanta,GA,30301 +146967,AA Batteries (4-pack),3,3.84,2019-01-26 18:53:00,398 River St, New York City,NY,10001 +146968,AA Batteries (4-pack),1,3.84,2019-01-19 19:31:00,379 Church St, Dallas,TX,75001 +146969,AA Batteries (4-pack),1,3.84,2019-01-28 17:43:00,202 Willow St, Dallas,TX,75001 +146970,ThinkPad Laptop,1,999.99,2019-01-17 21:54:00,464 Elm St, San Francisco,CA,94016 +146971,USB-C Charging Cable,1,11.95,2019-01-14 08:50:00,275 Lakeview St, Seattle,WA,98101 +146972,AA Batteries (4-pack),1,3.84,2019-01-29 11:37:00,560 Willow St, San Francisco,CA,94016 +146973,Wired Headphones,1,11.99,2019-01-09 22:08:00,163 6th St, San Francisco,CA,94016 +146974,Flatscreen TV,1,300.0,2019-01-12 13:28:00,311 Pine St, Portland,ME,04101 +146975,Bose SoundSport Headphones,1,99.99,2019-01-08 21:31:00,634 8th St, Los Angeles,CA,90001 +146975,Wired Headphones,1,11.99,2019-01-08 21:31:00,634 8th St, Los Angeles,CA,90001 +146976,Flatscreen TV,1,300.0,2019-01-23 19:42:00,532 Main St, Portland,OR,97035 +146977,Lightning Charging Cable,1,14.95,2019-01-28 15:08:00,448 Main St, Seattle,WA,98101 +146978,AA Batteries (4-pack),1,3.84,2019-01-19 17:11:00,294 2nd St, Seattle,WA,98101 +146979,USB-C Charging Cable,1,11.95,2019-01-23 00:54:00,101 Jackson St, Los Angeles,CA,90001 +146980,20in Monitor,1,109.99,2019-01-26 13:55:00,878 Wilson St, San Francisco,CA,94016 +146981,Wired Headphones,1,11.99,2019-01-03 06:18:00,397 Jackson St, Seattle,WA,98101 +146982,Google Phone,1,600.0,2019-01-15 18:52:00,730 Main St, San Francisco,CA,94016 +146982,USB-C Charging Cable,1,11.95,2019-01-15 18:52:00,730 Main St, San Francisco,CA,94016 +146983,USB-C Charging Cable,1,11.95,2019-01-11 08:34:00,432 Dogwood St, Dallas,TX,75001 +146984,Apple Airpods Headphones,1,150.0,2019-01-21 08:44:00,90 Sunset St, Dallas,TX,75001 +146985,AAA Batteries (4-pack),1,2.99,2019-01-04 14:02:00,388 Spruce St, Seattle,WA,98101 +146986,27in FHD Monitor,1,149.99,2019-01-07 12:06:00,847 Jackson St, Dallas,TX,75001 +146987,Google Phone,1,600.0,2019-01-10 17:19:00,968 14th St, Los Angeles,CA,90001 +146988,27in 4K Gaming Monitor,1,389.99,2019-01-12 22:24:00,122 Maple St, Los Angeles,CA,90001 +146989,USB-C Charging Cable,1,11.95,2019-01-01 21:52:00,793 Chestnut St, Los Angeles,CA,90001 +146990,iPhone,1,700.0,2019-01-21 15:45:00,314 9th St, Los Angeles,CA,90001 +146991,Wired Headphones,1,11.99,2019-01-27 12:58:00,999 8th St, Boston,MA,02215 +146992,Apple Airpods Headphones,1,150.0,2019-01-12 14:58:00,282 12th St, Boston,MA,02215 +146993,Bose SoundSport Headphones,1,99.99,2019-01-29 23:13:00,829 Church St, Dallas,TX,75001 +146994,USB-C Charging Cable,1,11.95,2019-01-03 20:32:00,848 9th St, Los Angeles,CA,90001 +146995,AA Batteries (4-pack),1,3.84,2019-01-26 16:18:00,833 Chestnut St, Boston,MA,02215 +146996,Wired Headphones,1,11.99,2019-01-19 19:57:00,898 Madison St, New York City,NY,10001 +146997,iPhone,1,700.0,2019-01-23 18:03:00,511 11th St, New York City,NY,10001 +146998,Wired Headphones,1,11.99,2019-01-20 21:10:00,739 1st St, San Francisco,CA,94016 +146999,AAA Batteries (4-pack),1,2.99,2019-01-24 23:28:00,482 Hickory St, Atlanta,GA,30301 +147000,USB-C Charging Cable,1,11.95,2019-01-17 18:57:00,373 Main St, Boston,MA,02215 +147001,Lightning Charging Cable,1,14.95,2019-01-31 15:34:00,999 Walnut St, San Francisco,CA,94016 +147002,34in Ultrawide Monitor,1,379.99,2019-01-19 08:29:00,353 Hill St, San Francisco,CA,94016 +147002,AA Batteries (4-pack),3,3.84,2019-01-19 08:29:00,353 Hill St, San Francisco,CA,94016 +147003,27in FHD Monitor,1,149.99,2019-01-19 20:52:00,155 Maple St, Los Angeles,CA,90001 +147004,Lightning Charging Cable,1,14.95,2019-01-11 08:54:00,166 6th St, San Francisco,CA,94016 +147005,USB-C Charging Cable,2,11.95,2019-01-02 17:46:00,475 Jackson St, Seattle,WA,98101 +147006,AAA Batteries (4-pack),1,2.99,2019-01-10 11:59:00,319 Lakeview St, San Francisco,CA,94016 +147007,LG Dryer,1,600.0,2019-01-07 16:49:00,555 Hickory St, Portland,OR,97035 +147008,AAA Batteries (4-pack),1,2.99,2019-01-16 16:03:00,559 Highland St, San Francisco,CA,94016 +147009,USB-C Charging Cable,1,11.95,2019-01-08 20:00:00,723 Ridge St, Portland,OR,97035 +147010,Wired Headphones,2,11.99,2019-01-05 13:50:00,209 Lincoln St, Los Angeles,CA,90001 +147011,Apple Airpods Headphones,1,150.0,2019-01-12 01:21:00,584 Maple St, New York City,NY,10001 +147012,Vareebadd Phone,1,400.0,2019-01-23 00:48:00,975 Lakeview St, San Francisco,CA,94016 +147013,AAA Batteries (4-pack),1,2.99,2019-01-01 11:07:00,766 11th St, Los Angeles,CA,90001 +147014,AAA Batteries (4-pack),2,2.99,2019-01-15 20:48:00,550 5th St, Portland,ME,04101 +147015,Vareebadd Phone,1,400.0,2019-01-27 21:41:00,410 Highland St, San Francisco,CA,94016 +147016,AAA Batteries (4-pack),1,2.99,2019-01-25 16:26:00,807 7th St, Dallas,TX,75001 +147017,Flatscreen TV,1,300.0,2019-01-31 23:08:00,615 Madison St, Atlanta,GA,30301 +147017,Wired Headphones,1,11.99,2019-01-31 23:08:00,615 Madison St, Atlanta,GA,30301 +147018,Wired Headphones,2,11.99,2019-01-31 20:00:00,691 Park St, New York City,NY,10001 +147019,Bose SoundSport Headphones,1,99.99,2019-01-01 22:51:00,560 Forest St, New York City,NY,10001 +147020,Flatscreen TV,1,300.0,2019-01-22 21:41:00,234 Ridge St, Atlanta,GA,30301 +147021,AAA Batteries (4-pack),1,2.99,2019-01-22 09:19:00,893 River St, New York City,NY,10001 +147022,Lightning Charging Cable,3,14.95,2019-01-27 00:12:00,540 North St, Los Angeles,CA,90001 +147023,Apple Airpods Headphones,1,150.0,2019-01-21 19:34:00,237 2nd St, New York City,NY,10001 +147024,27in 4K Gaming Monitor,1,389.99,2019-01-05 20:44:00,602 Cedar St, San Francisco,CA,94016 +147025,27in FHD Monitor,1,149.99,2019-01-27 09:19:00,535 Lakeview St, New York City,NY,10001 +147026,ThinkPad Laptop,1,999.99,2019-01-04 13:04:00,878 Center St, Los Angeles,CA,90001 +147027,Bose SoundSport Headphones,1,99.99,2019-01-04 13:55:00,140 Park St, Atlanta,GA,30301 +147028,ThinkPad Laptop,1,999.99,2019-01-06 13:30:00,300 Jackson St, San Francisco,CA,94016 +147029,Google Phone,1,600.0,2019-01-10 17:03:00,391 River St, Atlanta,GA,30301 +147030,Apple Airpods Headphones,1,150.0,2019-01-14 05:29:00,685 Ridge St, Los Angeles,CA,90001 +147031,27in FHD Monitor,1,149.99,2019-01-22 17:24:00,6 Pine St, San Francisco,CA,94016 +147031,AAA Batteries (4-pack),1,2.99,2019-01-22 17:24:00,6 Pine St, San Francisco,CA,94016 +147032,Wired Headphones,1,11.99,2019-01-14 20:35:00,611 Spruce St, Atlanta,GA,30301 +147032,Lightning Charging Cable,1,14.95,2019-01-14 20:35:00,611 Spruce St, Atlanta,GA,30301 +147033,USB-C Charging Cable,2,11.95,2019-01-24 13:45:00,122 Meadow St, Los Angeles,CA,90001 +147034,AAA Batteries (4-pack),2,2.99,2019-01-09 00:17:00,238 Dogwood St, Los Angeles,CA,90001 +147035,34in Ultrawide Monitor,1,379.99,2019-01-21 22:15:00,755 River St, Portland,OR,97035 +147036,Bose SoundSport Headphones,1,99.99,2019-01-27 19:15:00,366 South St, San Francisco,CA,94016 +147037,AA Batteries (4-pack),2,3.84,2019-01-10 23:02:00,221 Jackson St, New York City,NY,10001 +147038,AAA Batteries (4-pack),1,2.99,2019-01-24 18:25:00,164 Lake St, San Francisco,CA,94016 +147039,Lightning Charging Cable,1,14.95,2019-01-13 20:52:00,556 5th St, Atlanta,GA,30301 +147040,Lightning Charging Cable,1,14.95,2019-01-30 22:24:00,403 Sunset St, Dallas,TX,75001 +147041,USB-C Charging Cable,1,11.95,2019-01-29 07:57:00,928 Lake St, Atlanta,GA,30301 +147042,AAA Batteries (4-pack),1,2.99,2019-01-22 09:31:00,752 Forest St, Boston,MA,02215 +147043,Wired Headphones,1,11.99,2019-01-28 06:56:00,446 Madison St, New York City,NY,10001 +147044,20in Monitor,1,109.99,2019-01-24 13:58:00,500 Chestnut St, Dallas,TX,75001 +147045,Flatscreen TV,1,300.0,2019-01-01 14:20:00,300 9th St, New York City,NY,10001 +147046,AAA Batteries (4-pack),1,2.99,2019-01-12 16:12:00,269 Walnut St, San Francisco,CA,94016 +147047,AA Batteries (4-pack),1,3.84,2019-01-07 14:01:00,622 Hickory St, San Francisco,CA,94016 +147048,Lightning Charging Cable,1,14.95,2019-01-18 14:12:00,183 Lake St, New York City,NY,10001 +147049,Wired Headphones,1,11.99,2019-01-24 08:37:00,807 7th St, San Francisco,CA,94016 +147050,Bose SoundSport Headphones,1,99.99,2019-01-17 11:28:00,636 Elm St, Los Angeles,CA,90001 +147051,Bose SoundSport Headphones,1,99.99,2019-01-30 14:32:00,175 Chestnut St, Austin,TX,73301 +147052,Wired Headphones,1,11.99,2019-01-07 15:30:00,868 Cedar St, New York City,NY,10001 +147053,Bose SoundSport Headphones,1,99.99,2019-01-02 09:54:00,514 Cedar St, Portland,ME,04101 +147054,Apple Airpods Headphones,1,150.0,2019-01-16 07:58:00,685 Jackson St, Boston,MA,02215 +147055,Bose SoundSport Headphones,1,99.99,2019-01-02 14:06:00,770 5th St, San Francisco,CA,94016 +147056,LG Dryer,1,600.0,2019-01-14 23:13:00,588 Highland St, Atlanta,GA,30301 +147057,AAA Batteries (4-pack),1,2.99,2019-01-27 17:37:00,58 Pine St, San Francisco,CA,94016 +147058,Wired Headphones,1,11.99,2019-01-27 00:48:00,85 Forest St, New York City,NY,10001 +147059,AAA Batteries (4-pack),1,2.99,2019-01-22 15:36:00,442 Park St, Boston,MA,02215 +147060,Vareebadd Phone,1,400.0,2019-01-13 07:02:00,247 Chestnut St, San Francisco,CA,94016 +147061,27in 4K Gaming Monitor,1,389.99,2019-01-10 18:44:00,309 Ridge St, San Francisco,CA,94016 +147062,Lightning Charging Cable,1,14.95,2019-01-24 17:28:00,547 6th St, San Francisco,CA,94016 +147063,Flatscreen TV,1,300.0,2019-01-26 21:28:00,1 Highland St, Austin,TX,73301 +147064,USB-C Charging Cable,1,11.95,2019-01-14 17:02:00,190 Church St, Portland,OR,97035 +147065,Bose SoundSport Headphones,1,99.99,2019-01-20 18:35:00,833 12th St, Seattle,WA,98101 +147066,Wired Headphones,1,11.99,2019-01-13 23:02:00,937 Jackson St, Austin,TX,73301 +147067,AA Batteries (4-pack),1,3.84,2019-01-23 17:10:00,408 Park St, Portland,OR,97035 +147068,Lightning Charging Cable,1,14.95,2019-01-30 19:53:00,616 Cherry St, Los Angeles,CA,90001 +147069,Google Phone,1,600.0,2019-01-18 18:50:00,948 Wilson St, San Francisco,CA,94016 +147070,USB-C Charging Cable,1,11.95,2019-01-10 09:23:00,144 Forest St, Portland,OR,97035 +147071,Macbook Pro Laptop,1,1700.0,2019-01-30 19:03:00,241 River St, Los Angeles,CA,90001 +147072,Bose SoundSport Headphones,1,99.99,2019-01-07 06:07:00,181 Cherry St, New York City,NY,10001 +147073,Flatscreen TV,1,300.0,2019-01-19 11:21:00,789 8th St, New York City,NY,10001 +147074,USB-C Charging Cable,1,11.95,2019-01-23 19:42:00,308 Willow St, San Francisco,CA,94016 +147075,34in Ultrawide Monitor,1,379.99,2019-01-11 11:45:00,449 10th St, Los Angeles,CA,90001 +147076,AAA Batteries (4-pack),1,2.99,2019-01-09 21:54:00,241 10th St, Dallas,TX,75001 +147077,AAA Batteries (4-pack),1,2.99,2019-01-19 00:18:00,60 13th St, New York City,NY,10001 +147078,Bose SoundSport Headphones,1,99.99,2019-01-13 16:19:00,277 4th St, Los Angeles,CA,90001 +147079,Google Phone,1,600.0,2019-01-29 11:06:00,621 Wilson St, San Francisco,CA,94016 +147080,Macbook Pro Laptop,1,1700.0,2019-01-25 10:10:00,827 Lakeview St, Portland,OR,97035 +147081,Lightning Charging Cable,1,14.95,2019-01-21 15:36:00,209 14th St, New York City,NY,10001 +147082,Lightning Charging Cable,1,14.95,2019-01-28 00:52:00,583 North St, Seattle,WA,98101 +147083,iPhone,1,700.0,2019-01-08 13:16:00,593 Chestnut St, New York City,NY,10001 +147083,Apple Airpods Headphones,1,150.0,2019-01-08 13:16:00,593 Chestnut St, New York City,NY,10001 +147084,iPhone,1,700.0,2019-01-16 11:44:00,305 Spruce St, Boston,MA,02215 +147085,Macbook Pro Laptop,1,1700.0,2019-01-23 07:44:00,161 11th St, New York City,NY,10001 +147086,Lightning Charging Cable,1,14.95,2019-01-28 13:36:00,588 Lakeview St, Atlanta,GA,30301 +147087,USB-C Charging Cable,1,11.95,2019-01-12 19:08:00,56 Lake St, Dallas,TX,75001 +147088,Wired Headphones,1,11.99,2019-01-28 18:14:00,716 Ridge St, Los Angeles,CA,90001 +147089,Google Phone,1,600.0,2019-01-28 11:19:00,199 North St, Los Angeles,CA,90001 +147090,AA Batteries (4-pack),3,3.84,2019-01-30 18:26:00,885 North St, Los Angeles,CA,90001 +147091,Flatscreen TV,1,300.0,2019-01-21 09:03:00,225 Meadow St, San Francisco,CA,94016 +147092,Wired Headphones,2,11.99,2019-01-08 12:53:00,322 Pine St, Boston,MA,02215 +147093,USB-C Charging Cable,1,11.95,2019-01-24 13:27:00,608 Main St, Seattle,WA,98101 +147094,Flatscreen TV,1,300.0,2019-01-05 00:58:00,240 10th St, Los Angeles,CA,90001 +147095,AAA Batteries (4-pack),2,2.99,2019-01-01 14:17:00,31 Willow St, San Francisco,CA,94016 +147096,iPhone,1,700.0,2019-01-25 21:28:00,714 Washington St, San Francisco,CA,94016 +147096,Wired Headphones,1,11.99,2019-01-25 21:28:00,714 Washington St, San Francisco,CA,94016 +147097,Bose SoundSport Headphones,1,99.99,2019-01-26 16:31:00,873 Madison St, Los Angeles,CA,90001 +147098,Flatscreen TV,1,300.0,2019-01-20 21:51:00,909 South St, Boston,MA,02215 +147099,USB-C Charging Cable,1,11.95,2019-01-27 09:44:00,364 2nd St, Los Angeles,CA,90001 +147100,Apple Airpods Headphones,1,150.0,2019-01-28 10:39:00,192 Spruce St, New York City,NY,10001 +147101,Wired Headphones,3,11.99,2019-01-26 10:08:00,898 Center St, San Francisco,CA,94016 +147102,Lightning Charging Cable,1,14.95,2019-01-01 16:59:00,307 West St, Seattle,WA,98101 +147103,Lightning Charging Cable,1,14.95,2019-01-28 06:41:00,723 7th St, Dallas,TX,75001 +147104,34in Ultrawide Monitor,1,379.99,2019-01-25 09:51:00,456 Madison St, Los Angeles,CA,90001 +147105,ThinkPad Laptop,1,999.99,2019-01-02 15:47:00,745 Highland St, Los Angeles,CA,90001 +147106,AA Batteries (4-pack),2,3.84,2019-01-28 17:20:00,609 South St, San Francisco,CA,94016 +147107,Wired Headphones,1,11.99,2019-01-19 21:51:00,968 Hill St, New York City,NY,10001 +147108,AA Batteries (4-pack),2,3.84,2019-01-31 15:39:00,391 Willow St, Dallas,TX,75001 +147109,Apple Airpods Headphones,1,150.0,2019-01-11 11:21:00,481 Dogwood St, San Francisco,CA,94016 +147110,iPhone,1,700.0,2019-01-03 19:50:00,184 8th St, Portland,OR,97035 +147111,Wired Headphones,1,11.99,2019-01-05 21:40:00,182 Lake St, San Francisco,CA,94016 +147112,27in 4K Gaming Monitor,1,389.99,2019-01-31 16:43:00,111 Church St, San Francisco,CA,94016 +147113,34in Ultrawide Monitor,1,379.99,2019-01-11 18:10:00,474 Main St, Dallas,TX,75001 +147114,iPhone,1,700.0,2019-01-07 22:29:00,825 12th St, Atlanta,GA,30301 +147114,Lightning Charging Cable,1,14.95,2019-01-07 22:29:00,825 12th St, Atlanta,GA,30301 +147115,Apple Airpods Headphones,1,150.0,2019-01-05 15:17:00,254 Jackson St, New York City,NY,10001 +147116,Lightning Charging Cable,1,14.95,2019-01-26 15:53:00,641 South St, San Francisco,CA,94016 +147117,Lightning Charging Cable,1,14.95,2019-01-28 13:21:00,360 Elm St, Boston,MA,02215 +147118,USB-C Charging Cable,2,11.95,2019-01-27 09:36:00,189 Jefferson St, Portland,OR,97035 +147119,Lightning Charging Cable,1,14.95,2019-01-25 08:28:00,756 9th St, Atlanta,GA,30301 +147120,AAA Batteries (4-pack),1,2.99,2019-01-27 21:51:00,406 Chestnut St, Dallas,TX,75001 +147121,Lightning Charging Cable,1,14.95,2019-01-20 13:48:00,369 Hill St, San Francisco,CA,94016 +147122,Apple Airpods Headphones,1,150.0,2019-01-28 16:30:00,973 Walnut St, Austin,TX,73301 +147123,Apple Airpods Headphones,1,150.0,2019-01-22 11:29:00,735 Meadow St, Boston,MA,02215 +147124,USB-C Charging Cable,1,11.95,2019-01-10 20:10:00,859 Jefferson St, Boston,MA,02215 +147125,Lightning Charging Cable,1,14.95,2019-01-28 10:48:00,737 2nd St, Los Angeles,CA,90001 +147126,AAA Batteries (4-pack),2,2.99,2019-01-15 15:02:00,736 11th St, San Francisco,CA,94016 +147127,USB-C Charging Cable,1,11.95,2019-01-14 13:04:00,626 Spruce St, Los Angeles,CA,90001 +147128,Google Phone,1,600.0,2019-01-21 16:03:00,488 Jackson St, New York City,NY,10001 +147128,Wired Headphones,1,11.99,2019-01-21 16:03:00,488 Jackson St, New York City,NY,10001 +147129,Lightning Charging Cable,1,14.95,2019-01-20 18:31:00,503 Main St, San Francisco,CA,94016 +147130,27in FHD Monitor,1,149.99,2019-01-30 21:26:00,656 Highland St, Los Angeles,CA,90001 +147131,Google Phone,1,600.0,2019-01-12 10:00:00,693 Wilson St, Boston,MA,02215 +147131,Wired Headphones,1,11.99,2019-01-12 10:00:00,693 Wilson St, Boston,MA,02215 +147132,AA Batteries (4-pack),2,3.84,2019-01-19 12:54:00,298 Lincoln St, Los Angeles,CA,90001 +147133,AAA Batteries (4-pack),1,2.99,2019-01-01 19:30:00,964 Lake St, Dallas,TX,75001 +147134,Bose SoundSport Headphones,1,99.99,2019-01-13 20:45:00,398 7th St, Dallas,TX,75001 +147135,27in 4K Gaming Monitor,1,389.99,2019-01-28 21:31:00,713 14th St, Atlanta,GA,30301 +147136,Wired Headphones,1,11.99,2019-01-13 22:28:00,119 Elm St, San Francisco,CA,94016 +147137,AA Batteries (4-pack),1,3.84,2019-01-25 09:08:00,744 Hickory St, Dallas,TX,75001 +147138,Bose SoundSport Headphones,1,99.99,2019-01-14 11:19:00,936 Maple St, Portland,OR,97035 +147139,Wired Headphones,1,11.99,2019-01-15 18:38:00,152 Center St, San Francisco,CA,94016 +147139,Apple Airpods Headphones,2,150.0,2019-01-15 18:38:00,152 Center St, San Francisco,CA,94016 +147140,USB-C Charging Cable,1,11.95,2019-01-08 12:54:00,524 2nd St, San Francisco,CA,94016 +147141,AA Batteries (4-pack),1,3.84,2019-01-10 09:26:00,654 Spruce St, Seattle,WA,98101 +147142,USB-C Charging Cable,1,11.95,2019-01-07 21:46:00,923 River St, San Francisco,CA,94016 +147143,Lightning Charging Cable,3,14.95,2019-01-10 10:42:00,920 Chestnut St, Atlanta,GA,30301 +147144,Lightning Charging Cable,1,14.95,2019-01-21 11:18:00,622 8th St, Atlanta,GA,30301 +147145,USB-C Charging Cable,1,11.95,2019-01-04 19:49:00,625 11th St, Boston,MA,02215 +147146,AAA Batteries (4-pack),1,2.99,2019-01-07 18:19:00,91 Church St, Atlanta,GA,30301 +147147,27in 4K Gaming Monitor,1,389.99,2019-01-09 16:08:00,564 Church St, Seattle,WA,98101 +147148,AA Batteries (4-pack),3,3.84,2019-01-27 00:53:00,337 Cedar St, New York City,NY,10001 +147149,Macbook Pro Laptop,1,1700.0,2019-01-20 14:47:00,42 5th St, Austin,TX,73301 +147150,iPhone,1,700.0,2019-01-13 12:46:00,420 Lincoln St, San Francisco,CA,94016 +147151,27in FHD Monitor,1,149.99,2019-01-02 22:08:00,388 Highland St, Atlanta,GA,30301 +147152,AAA Batteries (4-pack),1,2.99,2019-01-16 08:57:00,590 13th St, New York City,NY,10001 +147153,34in Ultrawide Monitor,1,379.99,2019-01-05 18:51:00,802 Lakeview St, Dallas,TX,75001 +147154,Flatscreen TV,1,300.0,2019-01-05 22:27:00,505 11th St, New York City,NY,10001 +147155,Apple Airpods Headphones,1,150.0,2019-01-12 19:44:00,239 6th St, Los Angeles,CA,90001 +147156,AAA Batteries (4-pack),1,2.99,2019-01-16 10:29:00,791 Lakeview St, Los Angeles,CA,90001 +147157,Apple Airpods Headphones,1,150.0,2019-01-22 10:32:00,623 Center St, New York City,NY,10001 +147158,Wired Headphones,1,11.99,2019-01-19 14:55:00,930 Dogwood St, New York City,NY,10001 +147159,ThinkPad Laptop,1,999.99,2019-01-16 15:28:00,566 Maple St, New York City,NY,10001 +147160,AA Batteries (4-pack),1,3.84,2019-01-27 19:43:00,736 Madison St, San Francisco,CA,94016 +147161,27in 4K Gaming Monitor,1,389.99,2019-01-03 23:55:00,575 Cedar St, New York City,NY,10001 +147162,Lightning Charging Cable,1,14.95,2019-01-29 21:29:00,464 Maple St, Atlanta,GA,30301 +147163,USB-C Charging Cable,2,11.95,2019-01-29 15:08:00,152 Cedar St, San Francisco,CA,94016 +147164,USB-C Charging Cable,1,11.95,2019-01-03 11:14:00,515 Hill St, Boston,MA,02215 +147165,AAA Batteries (4-pack),2,2.99,2019-01-30 15:09:00,645 9th St, Austin,TX,73301 +147166,27in FHD Monitor,1,149.99,2019-01-30 15:30:00,965 12th St, Portland,ME,04101 +147167,Wired Headphones,1,11.99,2019-01-05 21:27:00,434 Lincoln St, Atlanta,GA,30301 +147168,Lightning Charging Cable,1,14.95,2019-01-21 09:41:00,543 7th St, Los Angeles,CA,90001 +147169,Bose SoundSport Headphones,1,99.99,2019-01-15 20:32:00,184 Main St, Boston,MA,02215 +147170,Flatscreen TV,1,300.0,2019-01-24 11:24:00,877 Wilson St, Seattle,WA,98101 +147171,AA Batteries (4-pack),1,3.84,2019-01-13 18:35:00,492 Willow St, San Francisco,CA,94016 +147172,Lightning Charging Cable,1,14.95,2019-01-09 10:16:00,188 6th St, Los Angeles,CA,90001 +147173,AA Batteries (4-pack),1,3.84,2019-01-27 17:47:00,170 Hickory St, New York City,NY,10001 +147174,USB-C Charging Cable,1,11.95,2019-01-04 10:46:00,59 1st St, Boston,MA,02215 +147175,AAA Batteries (4-pack),2,2.99,2019-01-14 17:36:00,271 West St, San Francisco,CA,94016 +147176,20in Monitor,1,109.99,2019-01-07 08:51:00,142 12th St, Atlanta,GA,30301 +147177,Apple Airpods Headphones,1,150.0,2019-01-13 16:32:00,376 Cherry St, Boston,MA,02215 +147178,Apple Airpods Headphones,1,150.0,2019-01-20 21:35:00,50 6th St, San Francisco,CA,94016 +147179,Lightning Charging Cable,1,14.95,2019-01-25 07:45:00,250 11th St, New York City,NY,10001 +147179,AA Batteries (4-pack),2,3.84,2019-01-25 07:45:00,250 11th St, New York City,NY,10001 +147180,AA Batteries (4-pack),1,3.84,2019-01-27 10:38:00,981 13th St, Seattle,WA,98101 +147181,USB-C Charging Cable,1,11.95,2019-01-02 14:40:00,480 Forest St, Dallas,TX,75001 +147182,AAA Batteries (4-pack),1,2.99,2019-01-07 03:41:00,167 Spruce St, Boston,MA,02215 +147183,Apple Airpods Headphones,1,150.0,2019-01-28 21:18:00,679 Wilson St, Los Angeles,CA,90001 +147184,AAA Batteries (4-pack),1,2.99,2019-01-08 22:29:00,64 South St, San Francisco,CA,94016 +147185,iPhone,1,700.0,2019-01-18 14:53:00,793 West St, Dallas,TX,75001 +147186,Apple Airpods Headphones,1,150.0,2019-01-23 06:02:00,628 Jackson St, Portland,OR,97035 +147187,AAA Batteries (4-pack),3,2.99,2019-01-26 13:44:00,428 13th St, New York City,NY,10001 +147188,34in Ultrawide Monitor,1,379.99,2019-01-15 15:52:00,883 Maple St, New York City,NY,10001 +147189,AA Batteries (4-pack),1,3.84,2019-01-11 08:52:00,611 Center St, Los Angeles,CA,90001 +147190,AA Batteries (4-pack),1,3.84,2019-01-31 18:23:00,808 13th St, Dallas,TX,75001 +147191,Lightning Charging Cable,1,14.95,2019-01-04 10:40:00,686 Wilson St, San Francisco,CA,94016 +147191,Google Phone,1,600.0,2019-01-04 10:40:00,686 Wilson St, San Francisco,CA,94016 +147192,USB-C Charging Cable,1,11.95,2019-01-15 15:37:00,375 Lakeview St, Los Angeles,CA,90001 +147193,USB-C Charging Cable,1,11.95,2019-01-05 21:36:00,390 Adams St, Los Angeles,CA,90001 +147194,Lightning Charging Cable,1,14.95,2019-01-18 21:57:00,173 Hill St, New York City,NY,10001 +147195,AA Batteries (4-pack),1,3.84,2019-01-29 20:23:00,351 10th St, Atlanta,GA,30301 +147196,AAA Batteries (4-pack),5,2.99,2019-01-25 10:53:00,372 Willow St, New York City,NY,10001 +147197,34in Ultrawide Monitor,1,379.99,2019-01-11 08:18:00,454 Walnut St, Los Angeles,CA,90001 +147198,Google Phone,1,600.0,2019-01-01 14:12:00,858 13th St, Austin,TX,73301 +147198,USB-C Charging Cable,1,11.95,2019-01-01 14:12:00,858 13th St, Austin,TX,73301 +147199,AAA Batteries (4-pack),4,2.99,2019-01-23 14:48:00,623 Dogwood St, Los Angeles,CA,90001 +147200,Lightning Charging Cable,1,14.95,2019-01-24 12:19:00,22 River St, San Francisco,CA,94016 +147201,iPhone,1,700.0,2019-01-02 13:37:00,731 Madison St, Dallas,TX,75001 +147202,USB-C Charging Cable,1,11.95,2019-01-23 09:58:00,744 Willow St, Atlanta,GA,30301 +147203,Bose SoundSport Headphones,1,99.99,2019-01-24 18:24:00,883 Church St, Austin,TX,73301 +147204,Apple Airpods Headphones,1,150.0,2019-01-18 15:32:00,358 Forest St, San Francisco,CA,94016 +147205,34in Ultrawide Monitor,1,379.99,2019-01-30 07:56:00,386 Center St, Atlanta,GA,30301 +147206,AA Batteries (4-pack),1,3.84,2019-01-02 15:14:00,557 13th St, Los Angeles,CA,90001 +147207,ThinkPad Laptop,1,999.99,2019-01-06 11:02:00,425 Lakeview St, San Francisco,CA,94016 +147208,34in Ultrawide Monitor,1,379.99,2019-01-11 18:19:00,403 Pine St, New York City,NY,10001 +147209,Wired Headphones,1,11.99,2019-01-05 20:25:00,431 Dogwood St, San Francisco,CA,94016 +147210,34in Ultrawide Monitor,1,379.99,2019-01-11 11:38:00,942 Adams St, Dallas,TX,75001 +147211,Wired Headphones,1,11.99,2019-01-07 16:30:00,279 Pine St, Boston,MA,02215 +147212,Bose SoundSport Headphones,1,99.99,2019-01-30 12:21:00,383 Church St, Los Angeles,CA,90001 +147213,27in FHD Monitor,1,149.99,2019-01-01 23:17:00,860 Highland St, Dallas,TX,75001 +147214,AAA Batteries (4-pack),2,2.99,2019-01-24 13:26:00,794 Lakeview St, San Francisco,CA,94016 +147215,AA Batteries (4-pack),1,3.84,2019-01-18 22:03:00,956 North St, New York City,NY,10001 +147216,USB-C Charging Cable,1,11.95,2019-01-09 21:24:00,991 2nd St, Atlanta,GA,30301 +147216,20in Monitor,1,109.99,2019-01-09 21:24:00,991 2nd St, Atlanta,GA,30301 +147217,27in FHD Monitor,1,149.99,2019-01-13 13:02:00,842 Jefferson St, San Francisco,CA,94016 +147218,Lightning Charging Cable,1,14.95,2019-01-13 20:03:00,357 Willow St, New York City,NY,10001 +147219,USB-C Charging Cable,1,11.95,2019-01-09 11:40:00,148 14th St, Los Angeles,CA,90001 +147220,Wired Headphones,1,11.99,2019-01-01 14:30:00,131 North St, San Francisco,CA,94016 +147221,Wired Headphones,1,11.99,2019-01-27 11:08:00,911 Wilson St, Portland,OR,97035 +147222,AA Batteries (4-pack),1,3.84,2019-01-06 08:52:00,306 13th St, New York City,NY,10001 +147223,USB-C Charging Cable,1,11.95,2019-01-08 15:30:00,271 Meadow St, Los Angeles,CA,90001 +147224,AAA Batteries (4-pack),1,2.99,2019-01-10 18:39:00,256 Main St, New York City,NY,10001 +147225,AAA Batteries (4-pack),2,2.99,2019-01-12 15:14:00,427 Pine St, Los Angeles,CA,90001 +147226,Apple Airpods Headphones,1,150.0,2019-01-05 09:50:00,855 6th St, Seattle,WA,98101 +147227,Apple Airpods Headphones,1,150.0,2019-01-26 23:14:00,67 13th St, Boston,MA,02215 +147228,27in FHD Monitor,1,149.99,2019-01-19 20:16:00,171 Ridge St, Los Angeles,CA,90001 +147229,USB-C Charging Cable,1,11.95,2019-01-12 14:20:00,759 Forest St, Dallas,TX,75001 +147230,Bose SoundSport Headphones,1,99.99,2019-01-05 16:00:00,1 Forest St, San Francisco,CA,94016 +147231,Lightning Charging Cable,1,14.95,2019-01-24 21:02:00,132 Adams St, Austin,TX,73301 +147232,Flatscreen TV,1,300.0,2019-01-27 20:11:00,90 Main St, San Francisco,CA,94016 +147233,27in FHD Monitor,1,149.99,2019-01-20 02:39:00,296 Maple St, New York City,NY,10001 +147234,Apple Airpods Headphones,1,150.0,2019-01-15 15:52:00,283 Madison St, Seattle,WA,98101 +147235,AAA Batteries (4-pack),1,2.99,2019-01-31 08:40:00,474 Main St, Los Angeles,CA,90001 +147236,AAA Batteries (4-pack),4,2.99,2019-01-29 20:28:00,773 Ridge St, San Francisco,CA,94016 +147237,AA Batteries (4-pack),2,3.84,2019-01-30 01:06:00,986 Willow St, San Francisco,CA,94016 +147238,Wired Headphones,1,11.99,2019-01-19 17:01:00,582 Hickory St, Los Angeles,CA,90001 +147239,USB-C Charging Cable,1,11.95,2019-01-30 20:32:00,455 1st St, Seattle,WA,98101 +147240,Wired Headphones,1,11.99,2019-01-22 20:25:00,273 12th St, Dallas,TX,75001 +147241,Google Phone,1,600.0,2019-01-09 21:30:00,949 14th St, Austin,TX,73301 +147241,USB-C Charging Cable,1,11.95,2019-01-09 21:30:00,949 14th St, Austin,TX,73301 +147242,Wired Headphones,1,11.99,2019-01-22 17:03:00,232 6th St, Boston,MA,02215 +147243,Google Phone,1,600.0,2019-01-06 18:34:00,868 North St, Austin,TX,73301 +147244,ThinkPad Laptop,1,999.99,2019-01-04 09:20:00,120 Center St, San Francisco,CA,94016 +147245,Flatscreen TV,1,300.0,2019-01-14 12:33:00,190 Washington St, Los Angeles,CA,90001 +147246,AAA Batteries (4-pack),3,2.99,2019-01-29 18:49:00,283 Jefferson St, New York City,NY,10001 +147247,Google Phone,1,600.0,2019-01-24 22:43:00,862 Spruce St, Austin,TX,73301 +147247,USB-C Charging Cable,1,11.95,2019-01-24 22:43:00,862 Spruce St, Austin,TX,73301 +147248,Flatscreen TV,1,300.0,2019-01-14 12:35:00,656 Church St, Atlanta,GA,30301 +147249,34in Ultrawide Monitor,1,379.99,2019-01-19 11:33:00,377 Wilson St, San Francisco,CA,94016 +147250,ThinkPad Laptop,1,999.99,2019-01-05 18:15:00,813 9th St, Los Angeles,CA,90001 +147251,27in 4K Gaming Monitor,1,389.99,2019-01-02 10:22:00,402 Walnut St, Atlanta,GA,30301 +147252,USB-C Charging Cable,1,11.95,2019-01-10 08:37:00,63 Lakeview St, San Francisco,CA,94016 +147252,27in 4K Gaming Monitor,1,389.99,2019-01-10 08:37:00,63 Lakeview St, San Francisco,CA,94016 +147253,AA Batteries (4-pack),1,3.84,2019-01-06 16:01:00,523 Wilson St, Los Angeles,CA,90001 +147254,Macbook Pro Laptop,1,1700.0,2019-01-30 15:07:00,37 2nd St, San Francisco,CA,94016 +147255,USB-C Charging Cable,2,11.95,2019-01-31 12:43:00,371 South St, Dallas,TX,75001 +147256,AA Batteries (4-pack),1,3.84,2019-01-27 19:23:00,191 13th St, Boston,MA,02215 +147257,Lightning Charging Cable,1,14.95,2019-01-08 12:26:00,672 Cedar St, Boston,MA,02215 +147258,iPhone,1,700.0,2019-01-13 07:44:00,273 12th St, San Francisco,CA,94016 +147259,AAA Batteries (4-pack),1,2.99,2019-01-24 21:32:00,924 Hill St, Dallas,TX,75001 +147260,Wired Headphones,1,11.99,2019-01-26 19:15:00,833 8th St, Austin,TX,73301 +147261,USB-C Charging Cable,1,11.95,2019-01-17 11:53:00,338 Spruce St, New York City,NY,10001 +147262,USB-C Charging Cable,1,11.95,2019-01-18 16:29:00,451 4th St, Los Angeles,CA,90001 +147263,AA Batteries (4-pack),1,3.84,2019-01-04 14:00:00,612 Jackson St, Los Angeles,CA,90001 +147264,Wired Headphones,1,11.99,2019-01-11 17:39:00,185 Lincoln St, San Francisco,CA,94016 +147265,iPhone,1,700.0,2019-01-25 06:22:00,81 7th St, Los Angeles,CA,90001 +147266,AA Batteries (4-pack),1,3.84,2019-01-14 17:43:00,619 12th St, San Francisco,CA,94016 +147267,Apple Airpods Headphones,1,150.0,2019-01-04 14:11:00,991 Chestnut St, New York City,NY,10001 +147268,Wired Headphones,1,11.99,2019-01-01 03:07:00,9 Lake St, New York City,NY,10001 +147269,AAA Batteries (4-pack),3,2.99,2019-01-03 16:27:00,282 Chestnut St, Seattle,WA,98101 +147270,Lightning Charging Cable,1,14.95,2019-01-19 17:29:00,989 North St, Los Angeles,CA,90001 +147271,AAA Batteries (4-pack),4,2.99,2019-01-14 22:44:00,735 Cedar St, Seattle,WA,98101 +147271,USB-C Charging Cable,2,11.95,2019-01-14 22:44:00,735 Cedar St, Seattle,WA,98101 +147272,USB-C Charging Cable,2,11.95,2019-01-19 20:07:00,478 South St, Portland,OR,97035 +147273,iPhone,1,700.0,2019-01-03 19:52:00,328 8th St, New York City,NY,10001 +147274,Lightning Charging Cable,2,14.95,2019-01-14 16:38:00,846 Cherry St, Los Angeles,CA,90001 +147275,AA Batteries (4-pack),1,3.84,2019-01-21 19:54:00,314 Hickory St, Boston,MA,02215 +147276,Lightning Charging Cable,1,14.95,2019-01-20 14:36:00,849 Dogwood St, Portland,OR,97035 +147277,AAA Batteries (4-pack),2,2.99,2019-01-10 15:34:00,752 Main St, Los Angeles,CA,90001 +147278,34in Ultrawide Monitor,1,379.99,2019-01-27 17:28:00,387 Maple St, Dallas,TX,75001 +147279,Lightning Charging Cable,1,14.95,2019-01-18 10:21:00,323 Lincoln St, Boston,MA,02215 +147280,AAA Batteries (4-pack),1,2.99,2019-01-09 20:07:00,832 Hill St, New York City,NY,10001 +147281,Wired Headphones,1,11.99,2019-01-29 22:34:00,449 Chestnut St, New York City,NY,10001 +147282,AAA Batteries (4-pack),4,2.99,2019-01-29 00:06:00,538 11th St, Portland,OR,97035 +147283,Flatscreen TV,1,300.0,2019-01-29 21:09:00,234 Ridge St, Los Angeles,CA,90001 +147284,AAA Batteries (4-pack),1,2.99,2019-01-30 11:41:00,284 Park St, San Francisco,CA,94016 +147285,USB-C Charging Cable,2,11.95,2019-01-30 20:08:00,849 11th St, New York City,NY,10001 +147286,Bose SoundSport Headphones,1,99.99,2019-01-21 19:24:00,421 Spruce St, San Francisco,CA,94016 +147287,iPhone,1,700.0,2019-01-06 13:32:00,104 Jackson St, New York City,NY,10001 +147288,27in 4K Gaming Monitor,1,389.99,2019-01-28 01:56:00,928 Chestnut St, Portland,ME,04101 +147289,iPhone,1,700.0,2019-01-12 18:47:00,44 Dogwood St, San Francisco,CA,94016 +147290,AAA Batteries (4-pack),1,2.99,2019-01-09 20:25:00,623 Jackson St, Seattle,WA,98101 +147291,Lightning Charging Cable,2,14.95,2019-01-02 16:35:00,828 Forest St, San Francisco,CA,94016 +147292,Flatscreen TV,1,300.0,2019-01-15 12:20:00,636 13th St, Boston,MA,02215 +147293,AAA Batteries (4-pack),1,2.99,2019-01-06 22:04:00,416 14th St, Portland,OR,97035 +147294,AA Batteries (4-pack),1,3.84,2019-01-22 11:00:00,342 Highland St, Boston,MA,02215 +147295,27in FHD Monitor,1,149.99,2019-01-19 19:31:00,544 Highland St, Los Angeles,CA,90001 +147296,20in Monitor,1,109.99,2019-01-03 09:06:00,906 Lakeview St, Austin,TX,73301 +147297,AAA Batteries (4-pack),2,2.99,2019-01-02 07:47:00,232 7th St, San Francisco,CA,94016 +147298,AA Batteries (4-pack),1,3.84,2019-01-03 00:09:00,774 1st St, Boston,MA,02215 +147299,Bose SoundSport Headphones,1,99.99,2019-01-02 08:25:00,600 Lincoln St, San Francisco,CA,94016 +147300,AA Batteries (4-pack),2,3.84,2019-01-24 11:38:00,183 Dogwood St, San Francisco,CA,94016 +147301,Apple Airpods Headphones,1,150.0,2019-01-10 21:56:00,71 8th St, New York City,NY,10001 +147302,AAA Batteries (4-pack),1,2.99,2019-01-21 12:16:00,335 9th St, Dallas,TX,75001 +147303,Wired Headphones,2,11.99,2019-01-05 09:26:00,884 Lincoln St, Los Angeles,CA,90001 +147304,20in Monitor,1,109.99,2019-01-11 21:08:00,964 Lake St, Los Angeles,CA,90001 +147305,Wired Headphones,1,11.99,2019-01-05 20:21:00,652 6th St, Austin,TX,73301 +147306,Lightning Charging Cable,1,14.95,2019-01-05 22:46:00,561 Ridge St, Dallas,TX,75001 +147307,AAA Batteries (4-pack),1,2.99,2019-01-12 21:12:00,290 Willow St, San Francisco,CA,94016 +147308,USB-C Charging Cable,1,11.95,2019-01-01 11:36:00,184 North St, Austin,TX,73301 +147309,Macbook Pro Laptop,1,1700.0,2019-02-01 01:01:00,594 South St, Dallas,TX,75001 +147310,USB-C Charging Cable,1,11.95,2019-01-27 18:56:00,812 Wilson St, San Francisco,CA,94016 +147311,Wired Headphones,1,11.99,2019-01-16 16:09:00,548 Lincoln St, San Francisco,CA,94016 +147312,AA Batteries (4-pack),1,3.84,2019-01-18 19:57:00,526 Jackson St, Atlanta,GA,30301 +147313,27in 4K Gaming Monitor,1,389.99,2019-01-02 23:36:00,537 Park St, Los Angeles,CA,90001 +147314,Bose SoundSport Headphones,1,99.99,2019-01-20 12:57:00,139 Chestnut St, Austin,TX,73301 +147315,AAA Batteries (4-pack),1,2.99,2019-01-17 11:23:00,331 South St, San Francisco,CA,94016 +147316,AAA Batteries (4-pack),1,2.99,2019-01-22 15:48:00,862 West St, Dallas,TX,75001 +147317,Apple Airpods Headphones,1,150.0,2019-01-14 12:36:00,782 Highland St, Boston,MA,02215 +147318,Google Phone,1,600.0,2019-01-10 18:47:00,392 Wilson St, Los Angeles,CA,90001 +147319,USB-C Charging Cable,1,11.95,2019-01-22 19:22:00,967 Adams St, Boston,MA,02215 +147320,USB-C Charging Cable,1,11.95,2019-01-15 06:30:00,57 Madison St, San Francisco,CA,94016 +147321,USB-C Charging Cable,1,11.95,2019-01-12 15:46:00,303 Hickory St, Austin,TX,73301 +147322,Wired Headphones,1,11.99,2019-01-30 13:34:00,262 Church St, Los Angeles,CA,90001 +147323,AA Batteries (4-pack),1,3.84,2019-01-05 09:30:00,88 4th St, San Francisco,CA,94016 +147324,27in FHD Monitor,1,149.99,2019-01-31 11:07:00,951 Spruce St, Boston,MA,02215 +147325,USB-C Charging Cable,1,11.95,2019-01-26 10:02:00,768 Cherry St, Dallas,TX,75001 +147326,Lightning Charging Cable,1,14.95,2019-01-28 18:39:00,161 1st St, Portland,OR,97035 +147327,USB-C Charging Cable,1,11.95,2019-01-27 06:38:00,952 Wilson St, Boston,MA,02215 +147328,Bose SoundSport Headphones,1,99.99,2019-01-10 10:20:00,153 Church St, Boston,MA,02215 +147329,Wired Headphones,1,11.99,2019-01-11 17:16:00,780 Hill St, Los Angeles,CA,90001 +147330,AAA Batteries (4-pack),1,2.99,2019-01-28 14:14:00,483 Highland St, Boston,MA,02215 +147331,Lightning Charging Cable,1,14.95,2019-01-08 18:20:00,864 Center St, New York City,NY,10001 +147332,Apple Airpods Headphones,1,150.0,2019-01-29 14:48:00,46 4th St, San Francisco,CA,94016 +147333,Bose SoundSport Headphones,1,99.99,2019-01-21 19:28:00,996 South St, Boston,MA,02215 +147334,27in FHD Monitor,1,149.99,2019-01-06 10:42:00,248 Walnut St, Austin,TX,73301 +147335,34in Ultrawide Monitor,1,379.99,2019-01-05 13:42:00,368 11th St, New York City,NY,10001 +147336,Lightning Charging Cable,1,14.95,2019-01-18 15:14:00,862 11th St, Portland,OR,97035 +147337,Wired Headphones,2,11.99,2019-01-22 23:44:00,715 9th St, Los Angeles,CA,90001 +147338,USB-C Charging Cable,1,11.95,2019-01-15 18:39:00,152 North St, Austin,TX,73301 +147339,USB-C Charging Cable,2,11.95,2019-01-12 09:44:00,290 Maple St, New York City,NY,10001 +147340,27in FHD Monitor,1,149.99,2019-01-18 19:55:00,369 West St, San Francisco,CA,94016 +147341,USB-C Charging Cable,1,11.95,2019-01-25 13:27:00,584 9th St, Portland,OR,97035 +147342,AAA Batteries (4-pack),1,2.99,2019-01-21 15:43:00,158 Meadow St, New York City,NY,10001 +147343,Apple Airpods Headphones,1,150.0,2019-01-03 10:44:00,491 Park St, Atlanta,GA,30301 +147344,Lightning Charging Cable,1,14.95,2019-01-15 08:09:00,764 Cherry St, Dallas,TX,75001 +147345,20in Monitor,1,109.99,2019-01-04 14:42:00,542 Washington St, Los Angeles,CA,90001 +147346,Wired Headphones,1,11.99,2019-01-28 10:31:00,917 Cedar St, San Francisco,CA,94016 +147347,27in 4K Gaming Monitor,1,389.99,2019-01-20 22:28:00,5 River St, San Francisco,CA,94016 +147348,AA Batteries (4-pack),1,3.84,2019-01-20 08:26:00,969 6th St, San Francisco,CA,94016 +147349,USB-C Charging Cable,1,11.95,2019-01-14 20:54:00,5 Johnson St, Dallas,TX,75001 +147350,AA Batteries (4-pack),1,3.84,2019-01-11 21:22:00,964 Pine St, Boston,MA,02215 +147351,Bose SoundSport Headphones,1,99.99,2019-01-24 23:26:00,906 Jefferson St, San Francisco,CA,94016 +147352,AA Batteries (4-pack),1,3.84,2019-01-21 19:57:00,526 7th St, Los Angeles,CA,90001 +147353,AA Batteries (4-pack),1,3.84,2019-01-24 18:57:00,625 13th St, New York City,NY,10001 +147354,Lightning Charging Cable,1,14.95,2019-01-15 09:28:00,939 8th St, Los Angeles,CA,90001 +147355,USB-C Charging Cable,1,11.95,2019-01-21 21:27:00,985 Hickory St, New York City,NY,10001 +147356,Lightning Charging Cable,1,14.95,2019-01-16 14:29:00,100 13th St, Los Angeles,CA,90001 +147357,AA Batteries (4-pack),1,3.84,2019-01-17 18:18:00,150 Park St, New York City,NY,10001 +147358,Lightning Charging Cable,1,14.95,2019-01-07 16:44:00,620 Cedar St, Seattle,WA,98101 +147359,AA Batteries (4-pack),1,3.84,2019-01-27 18:37:00,257 Jefferson St, San Francisco,CA,94016 +147360,AAA Batteries (4-pack),1,2.99,2019-01-13 19:03:00,204 13th St, Boston,MA,02215 +147361,AAA Batteries (4-pack),1,2.99,2019-01-03 14:56:00,923 12th St, New York City,NY,10001 +147362,Bose SoundSport Headphones,1,99.99,2019-01-26 17:17:00,777 Ridge St, Los Angeles,CA,90001 +147363,Apple Airpods Headphones,1,150.0,2019-01-22 19:47:00,58 10th St, San Francisco,CA,94016 +147364,iPhone,1,700.0,2019-01-21 18:40:00,754 Cherry St, Boston,MA,02215 +147364,Wired Headphones,1,11.99,2019-01-21 18:40:00,754 Cherry St, Boston,MA,02215 +147365,Google Phone,1,600.0,2019-01-22 13:16:00,546 Johnson St, San Francisco,CA,94016 +147366,Wired Headphones,1,11.99,2019-01-07 22:15:00,886 13th St, Portland,ME,04101 +147366,AA Batteries (4-pack),2,3.84,2019-01-07 22:15:00,886 13th St, Portland,ME,04101 +147367,Google Phone,1,600.0,2019-01-10 19:41:00,950 Ridge St, Portland,OR,97035 +147367,Wired Headphones,1,11.99,2019-01-10 19:41:00,950 Ridge St, Portland,OR,97035 +147368,Lightning Charging Cable,1,14.95,2019-01-17 20:31:00,138 Center St, Dallas,TX,75001 +147369,27in 4K Gaming Monitor,1,389.99,2019-01-08 12:08:00,629 Jackson St, San Francisco,CA,94016 +147370,AAA Batteries (4-pack),1,2.99,2019-01-15 06:11:00,315 5th St, Atlanta,GA,30301 +147371,34in Ultrawide Monitor,1,379.99,2019-01-11 08:30:00,175 Hill St, Los Angeles,CA,90001 +147372,Apple Airpods Headphones,1,150.0,2019-01-30 17:05:00,45 Center St, Boston,MA,02215 +147373,27in 4K Gaming Monitor,1,389.99,2019-01-18 10:49:00,458 Jackson St, San Francisco,CA,94016 +147374,AA Batteries (4-pack),1,3.84,2019-01-14 14:47:00,533 13th St, San Francisco,CA,94016 +147375,AAA Batteries (4-pack),1,2.99,2019-01-06 09:00:00,90 13th St, Seattle,WA,98101 +147376,27in 4K Gaming Monitor,1,389.99,2019-01-25 19:39:00,92 Madison St, San Francisco,CA,94016 +147377,iPhone,1,700.0,2019-01-19 21:00:00,904 14th St, New York City,NY,10001 +147378,Bose SoundSport Headphones,1,99.99,2019-01-24 13:05:00,823 Walnut St, New York City,NY,10001 +147379,USB-C Charging Cable,1,11.95,2019-01-17 22:09:00,113 7th St, Los Angeles,CA,90001 +147380,Apple Airpods Headphones,1,150.0,2019-01-19 11:56:00,822 Church St, Portland,OR,97035 +147381,Apple Airpods Headphones,1,150.0,2019-01-27 10:49:00,181 Cedar St, Boston,MA,02215 +147382,LG Dryer,1,600.0,2019-01-13 10:58:00,222 7th St, Los Angeles,CA,90001 +147383,Lightning Charging Cable,1,14.95,2019-01-14 15:43:00,752 West St, New York City,NY,10001 +147384,AA Batteries (4-pack),1,3.84,2019-01-24 20:42:00,772 7th St, Portland,OR,97035 +147385,Apple Airpods Headphones,1,150.0,2019-01-20 20:09:00,310 Adams St, San Francisco,CA,94016 +147386,USB-C Charging Cable,1,11.95,2019-01-01 11:44:00,793 11th St, San Francisco,CA,94016 +147387,USB-C Charging Cable,1,11.95,2019-01-24 21:07:00,753 Pine St, Austin,TX,73301 +147388,AA Batteries (4-pack),1,3.84,2019-01-20 12:55:00,91 8th St, San Francisco,CA,94016 +147389,Flatscreen TV,1,300.0,2019-01-25 12:22:00,292 Pine St, New York City,NY,10001 +147390,AA Batteries (4-pack),1,3.84,2019-01-29 12:01:00,138 2nd St, New York City,NY,10001 +147391,27in 4K Gaming Monitor,1,389.99,2019-01-26 18:00:00,915 Madison St, Dallas,TX,75001 +147392,USB-C Charging Cable,1,11.95,2019-01-08 14:25:00,68 Walnut St, Los Angeles,CA,90001 +147393,USB-C Charging Cable,1,11.95,2019-01-11 18:58:00,34 13th St, Atlanta,GA,30301 +147394,Wired Headphones,1,11.99,2019-01-30 18:13:00,741 Adams St, Austin,TX,73301 +147395,AA Batteries (4-pack),1,3.84,2019-01-29 16:33:00,31 Park St, Austin,TX,73301 +147396,Lightning Charging Cable,3,14.95,2019-01-16 10:17:00,219 Cherry St, Los Angeles,CA,90001 +147397,Wired Headphones,1,11.99,2019-01-14 21:11:00,672 Walnut St, San Francisco,CA,94016 +147398,Macbook Pro Laptop,1,1700.0,2019-01-21 12:22:00,352 12th St, San Francisco,CA,94016 +147399,Apple Airpods Headphones,1,150.0,2019-01-03 21:20:00,559 1st St, San Francisco,CA,94016 +147400,27in 4K Gaming Monitor,1,389.99,2019-01-21 14:25:00,713 Hill St, San Francisco,CA,94016 +147401,Google Phone,1,600.0,2019-01-20 16:08:00,78 Washington St, Portland,ME,04101 +147402,Wired Headphones,1,11.99,2019-01-04 18:10:00,420 Dogwood St, Austin,TX,73301 +147403,Apple Airpods Headphones,1,150.0,2019-01-08 12:06:00,423 5th St, Atlanta,GA,30301 +147404,ThinkPad Laptop,1,999.99,2019-01-23 10:04:00,566 Elm St, New York City,NY,10001 +147405,AA Batteries (4-pack),1,3.84,2019-01-16 08:43:00,26 Forest St, Portland,OR,97035 +147406,Bose SoundSport Headphones,1,99.99,2019-01-24 11:14:00,716 7th St, San Francisco,CA,94016 +147407,Apple Airpods Headphones,1,150.0,2019-01-29 08:19:00,31 7th St, Los Angeles,CA,90001 +147408,Google Phone,1,600.0,2019-01-22 22:40:00,770 Walnut St, Dallas,TX,75001 +147409,AAA Batteries (4-pack),1,2.99,2019-01-15 18:08:00,581 Forest St, Seattle,WA,98101 +147410,27in 4K Gaming Monitor,1,389.99,2019-01-11 00:29:00,14 Walnut St, San Francisco,CA,94016 +147411,LG Washing Machine,1,600.0,2019-01-07 14:24:00,440 South St, Boston,MA,02215 +147412,AA Batteries (4-pack),2,3.84,2019-01-02 11:14:00,10 Cedar St, Los Angeles,CA,90001 +147413,Bose SoundSport Headphones,1,99.99,2019-01-13 11:27:00,428 1st St, Los Angeles,CA,90001 +147414,Lightning Charging Cable,1,14.95,2019-01-01 23:27:00,12 Hickory St, San Francisco,CA,94016 +147415,Bose SoundSport Headphones,1,99.99,2019-01-10 14:42:00,590 Hill St, New York City,NY,10001 +147416,AA Batteries (4-pack),2,3.84,2019-01-12 19:36:00,930 Dogwood St, Los Angeles,CA,90001 +147417,Bose SoundSport Headphones,1,99.99,2019-01-20 01:45:00,146 Johnson St, New York City,NY,10001 +147418,ThinkPad Laptop,1,999.99,2019-01-02 14:04:00,384 8th St, Dallas,TX,75001 +147419,Google Phone,1,600.0,2019-01-14 10:43:00,330 Maple St, Portland,OR,97035 +147420,27in 4K Gaming Monitor,1,389.99,2019-01-29 11:35:00,678 Sunset St, San Francisco,CA,94016 +147421,Wired Headphones,1,11.99,2019-01-05 13:13:00,335 Madison St, Boston,MA,02215 +147422,USB-C Charging Cable,1,11.95,2019-01-25 22:21:00,53 Madison St, San Francisco,CA,94016 +147423,AAA Batteries (4-pack),1,2.99,2019-01-13 12:32:00,864 Lincoln St, Seattle,WA,98101 +147424,AAA Batteries (4-pack),1,2.99,2019-01-01 13:30:00,570 Jefferson St, Austin,TX,73301 +147425,iPhone,1,700.0,2019-01-26 19:47:00,112 River St, Seattle,WA,98101 +147425,Lightning Charging Cable,1,14.95,2019-01-26 19:47:00,112 River St, Seattle,WA,98101 +147426,Bose SoundSport Headphones,1,99.99,2019-01-20 16:09:00,105 Center St, Los Angeles,CA,90001 +147427,USB-C Charging Cable,1,11.95,2019-01-20 19:58:00,947 Pine St, Boston,MA,02215 +147428,Wired Headphones,1,11.99,2019-01-14 12:15:00,314 12th St, Seattle,WA,98101 +147429,Vareebadd Phone,1,400.0,2019-01-13 15:52:00,622 River St, San Francisco,CA,94016 +147430,Lightning Charging Cable,1,14.95,2019-01-28 11:38:00,689 Lincoln St, Atlanta,GA,30301 +147431,Apple Airpods Headphones,1,150.0,2019-01-28 23:22:00,78 4th St, Austin,TX,73301 +147432,Wired Headphones,1,11.99,2019-01-30 17:58:00,309 2nd St, Los Angeles,CA,90001 +147433,AAA Batteries (4-pack),1,2.99,2019-01-13 12:21:00,279 Maple St, Boston,MA,02215 +147434,Wired Headphones,1,11.99,2019-01-13 14:39:00,375 Jefferson St, San Francisco,CA,94016 +147435,Wired Headphones,2,11.99,2019-01-01 14:48:00,991 South St, Boston,MA,02215 +147436,Google Phone,1,600.0,2019-01-04 08:38:00,137 North St, New York City,NY,10001 +147437,Flatscreen TV,1,300.0,2019-01-26 19:12:00,788 Park St, New York City,NY,10001 +147438,AAA Batteries (4-pack),1,2.99,2019-01-18 15:05:00,458 Dogwood St, Austin,TX,73301 +147439,Vareebadd Phone,1,400.0,2019-01-03 19:06:00,12 Elm St, Atlanta,GA,30301 +147439,USB-C Charging Cable,1,11.95,2019-01-03 19:06:00,12 Elm St, Atlanta,GA,30301 +147440,AAA Batteries (4-pack),1,2.99,2019-01-18 09:58:00,128 Johnson St, New York City,NY,10001 +147441,USB-C Charging Cable,1,11.95,2019-01-19 14:24:00,868 Park St, Boston,MA,02215 +147442,Bose SoundSport Headphones,1,99.99,2019-01-13 05:26:00,378 8th St, Boston,MA,02215 +147443,AAA Batteries (4-pack),1,2.99,2019-01-25 10:17:00,277 Dogwood St, New York City,NY,10001 +147444,Vareebadd Phone,1,400.0,2019-01-01 22:37:00,585 Pine St, Atlanta,GA,30301 +147444,USB-C Charging Cable,1,11.95,2019-01-01 22:37:00,585 Pine St, Atlanta,GA,30301 +147445,Wired Headphones,1,11.99,2019-01-21 10:51:00,437 Walnut St, Dallas,TX,75001 +147446,Wired Headphones,1,11.99,2019-01-18 18:02:00,9 Main St, Austin,TX,73301 +147447,AA Batteries (4-pack),1,3.84,2019-01-21 19:00:00,147 Park St, Los Angeles,CA,90001 +147448,Lightning Charging Cable,1,14.95,2019-01-05 11:49:00,551 River St, Atlanta,GA,30301 +147449,27in FHD Monitor,1,149.99,2019-01-08 12:21:00,521 Main St, Boston,MA,02215 +147450,Apple Airpods Headphones,1,150.0,2019-01-13 12:04:00,98 7th St, Boston,MA,02215 +147451,Google Phone,1,600.0,2019-01-01 12:57:00,229 Elm St, New York City,NY,10001 +147451,Wired Headphones,1,11.99,2019-01-01 12:57:00,229 Elm St, New York City,NY,10001 +147452,AAA Batteries (4-pack),1,2.99,2019-01-12 22:19:00,471 Jackson St, Los Angeles,CA,90001 +147453,AAA Batteries (4-pack),2,2.99,2019-01-06 23:09:00,403 8th St, Los Angeles,CA,90001 +147454,Lightning Charging Cable,1,14.95,2019-01-02 14:57:00,447 River St, San Francisco,CA,94016 +147455,ThinkPad Laptop,1,999.99,2019-01-28 18:54:00,232 Willow St, Seattle,WA,98101 +147456,34in Ultrawide Monitor,1,379.99,2019-01-27 19:05:00,709 River St, San Francisco,CA,94016 +147457,Flatscreen TV,1,300.0,2019-01-28 18:22:00,401 Park St, New York City,NY,10001 +147458,AAA Batteries (4-pack),1,2.99,2019-01-10 09:53:00,420 Lakeview St, Boston,MA,02215 +147459,Apple Airpods Headphones,1,150.0,2019-01-08 10:28:00,941 9th St, Portland,ME,04101 +147460,Apple Airpods Headphones,1,150.0,2019-01-25 09:38:00,620 5th St, San Francisco,CA,94016 +147461,AAA Batteries (4-pack),2,2.99,2019-01-02 13:40:00,390 13th St, Los Angeles,CA,90001 +147462,USB-C Charging Cable,1,11.95,2019-01-01 14:07:00,101 Elm St, Los Angeles,CA,90001 +147463,Vareebadd Phone,1,400.0,2019-01-30 18:54:00,310 4th St, Atlanta,GA,30301 +147463,USB-C Charging Cable,1,11.95,2019-01-30 18:54:00,310 4th St, Atlanta,GA,30301 +147464,iPhone,1,700.0,2019-01-29 18:44:00,148 Cherry St, Los Angeles,CA,90001 +147464,Lightning Charging Cable,1,14.95,2019-01-29 18:44:00,148 Cherry St, Los Angeles,CA,90001 +147465,ThinkPad Laptop,1,999.99,2019-01-02 18:11:00,220 11th St, Boston,MA,02215 +147466,Wired Headphones,1,11.99,2019-01-29 19:59:00,46 Pine St, San Francisco,CA,94016 +147467,AA Batteries (4-pack),1,3.84,2019-01-17 19:30:00,25 12th St, Atlanta,GA,30301 +147468,Lightning Charging Cable,1,14.95,2019-01-29 11:22:00,933 Park St, Dallas,TX,75001 +147469,AAA Batteries (4-pack),1,2.99,2019-01-11 18:14:00,581 12th St, San Francisco,CA,94016 +147470,27in 4K Gaming Monitor,1,389.99,2019-01-03 08:29:00,35 Pine St, Boston,MA,02215 +147471,Wired Headphones,1,11.99,2019-01-31 12:28:00,400 8th St, Atlanta,GA,30301 +147472,iPhone,1,700.0,2019-01-05 09:19:00,603 Lake St, San Francisco,CA,94016 +147473,27in FHD Monitor,1,149.99,2019-01-04 06:47:00,671 4th St, New York City,NY,10001 +147474,Wired Headphones,1,11.99,2019-01-01 23:48:00,583 Lakeview St, Seattle,WA,98101 +147475,Apple Airpods Headphones,1,150.0,2019-01-22 21:10:00,312 5th St, Portland,OR,97035 +147476,AAA Batteries (4-pack),1,2.99,2019-01-18 11:44:00,124 5th St, Los Angeles,CA,90001 +147477,USB-C Charging Cable,1,11.95,2019-01-06 18:43:00,757 14th St, Dallas,TX,75001 +147478,AAA Batteries (4-pack),1,2.99,2019-01-03 22:20:00,447 South St, New York City,NY,10001 +147478,27in FHD Monitor,1,149.99,2019-01-03 22:20:00,447 South St, New York City,NY,10001 +147479,AA Batteries (4-pack),2,3.84,2019-01-24 17:02:00,417 6th St, San Francisco,CA,94016 +147480,Lightning Charging Cable,1,14.95,2019-01-10 14:44:00,283 1st St, Atlanta,GA,30301 +147481,AAA Batteries (4-pack),2,2.99,2019-01-26 04:37:00,417 10th St, Dallas,TX,75001 +147482,AA Batteries (4-pack),1,3.84,2019-01-19 19:12:00,57 Park St, Austin,TX,73301 +147483,AAA Batteries (4-pack),1,2.99,2019-01-03 14:07:00,68 Jackson St, San Francisco,CA,94016 +147484,Apple Airpods Headphones,1,150.0,2019-01-02 17:28:00,729 Dogwood St, San Francisco,CA,94016 +147485,Google Phone,1,600.0,2019-01-21 11:49:00,424 Meadow St, Los Angeles,CA,90001 +147486,34in Ultrawide Monitor,1,379.99,2019-01-22 17:07:00,714 Main St, Atlanta,GA,30301 +147487,Apple Airpods Headphones,1,150.0,2019-01-02 13:59:00,754 12th St, San Francisco,CA,94016 +147488,iPhone,1,700.0,2019-01-27 09:48:00,65 Hill St, Atlanta,GA,30301 +147489,USB-C Charging Cable,1,11.95,2019-01-30 17:50:00,685 Lake St, San Francisco,CA,94016 +147490,USB-C Charging Cable,1,11.95,2019-01-06 16:27:00,464 Johnson St, San Francisco,CA,94016 +147491,USB-C Charging Cable,1,11.95,2019-01-21 18:07:00,518 Madison St, Dallas,TX,75001 +147492,USB-C Charging Cable,1,11.95,2019-01-24 07:45:00,722 Center St, Los Angeles,CA,90001 +147493,Wired Headphones,1,11.99,2019-01-05 17:38:00,856 Spruce St, Los Angeles,CA,90001 +147494,Apple Airpods Headphones,1,150.0,2019-01-29 22:11:00,545 Lake St, Dallas,TX,75001 +147495,Wired Headphones,1,11.99,2019-01-08 21:34:00,791 Jefferson St, San Francisco,CA,94016 +147496,AAA Batteries (4-pack),3,2.99,2019-01-19 15:14:00,115 6th St, Atlanta,GA,30301 +147497,27in FHD Monitor,1,149.99,2019-01-16 12:08:00,872 Spruce St, San Francisco,CA,94016 +147498,AA Batteries (4-pack),1,3.84,2019-01-17 22:04:00,628 Elm St, Atlanta,GA,30301 +147499,20in Monitor,1,109.99,2019-01-09 19:28:00,781 9th St, New York City,NY,10001 +147500,Bose SoundSport Headphones,2,99.99,2019-01-06 12:55:00,140 Wilson St, Los Angeles,CA,90001 +147501,Wired Headphones,1,11.99,2019-01-02 19:32:00,5 Pine St, Seattle,WA,98101 +147502,iPhone,1,700.0,2019-01-24 13:09:00,956 10th St, San Francisco,CA,94016 +147503,Apple Airpods Headphones,1,150.0,2019-01-31 02:36:00,5 Walnut St, Atlanta,GA,30301 +147504,USB-C Charging Cable,1,11.95,2019-01-25 11:39:00,887 Lakeview St, New York City,NY,10001 +147505,Lightning Charging Cable,1,14.95,2019-01-04 13:19:00,414 Main St, San Francisco,CA,94016 +147506,AA Batteries (4-pack),1,3.84,2019-01-15 11:55:00,21 Spruce St, Los Angeles,CA,90001 +147507,Wired Headphones,1,11.99,2019-01-05 19:19:00,76 Lincoln St, Atlanta,GA,30301 +147508,Lightning Charging Cable,2,14.95,2019-01-23 10:33:00,355 Willow St, Los Angeles,CA,90001 +147509,AAA Batteries (4-pack),1,2.99,2019-01-02 12:46:00,632 10th St, San Francisco,CA,94016 +147510,27in 4K Gaming Monitor,1,389.99,2019-01-11 20:37:00,129 13th St, Los Angeles,CA,90001 +147511,AA Batteries (4-pack),2,3.84,2019-01-07 11:20:00,797 Madison St, New York City,NY,10001 +147512,Lightning Charging Cable,1,14.95,2019-01-12 00:28:00,622 13th St, San Francisco,CA,94016 +147513,AA Batteries (4-pack),1,3.84,2019-01-19 21:22:00,236 Hill St, Seattle,WA,98101 +147514,USB-C Charging Cable,1,11.95,2019-01-22 16:40:00,222 13th St, Atlanta,GA,30301 +147515,Wired Headphones,1,11.99,2019-01-13 18:48:00,984 8th St, San Francisco,CA,94016 +147516,Macbook Pro Laptop,1,1700.0,2019-01-20 08:56:00,425 9th St, Boston,MA,02215 +147517,AAA Batteries (4-pack),3,2.99,2019-01-03 19:07:00,130 Maple St, Boston,MA,02215 +147518,USB-C Charging Cable,1,11.95,2019-01-26 08:43:00,781 South St, San Francisco,CA,94016 +147519,AAA Batteries (4-pack),2,2.99,2019-01-01 09:18:00,212 Lake St, San Francisco,CA,94016 +147520,Vareebadd Phone,1,400.0,2019-01-09 22:19:00,303 Adams St, San Francisco,CA,94016 +147521,Apple Airpods Headphones,1,150.0,2019-01-29 17:25:00,274 Spruce St, Portland,OR,97035 +147522,Lightning Charging Cable,1,14.95,2019-01-30 20:36:00,813 Lake St, Los Angeles,CA,90001 +147523,Google Phone,1,600.0,2019-01-19 00:11:00,543 14th St, Boston,MA,02215 +147523,USB-C Charging Cable,1,11.95,2019-01-19 00:11:00,543 14th St, Boston,MA,02215 +147523,Wired Headphones,1,11.99,2019-01-19 00:11:00,543 14th St, Boston,MA,02215 +147524,AAA Batteries (4-pack),1,2.99,2019-01-07 11:18:00,899 Johnson St, San Francisco,CA,94016 +147525,Lightning Charging Cable,1,14.95,2019-01-29 12:07:00,735 Willow St, New York City,NY,10001 +147526,AA Batteries (4-pack),1,3.84,2019-01-27 06:14:00,312 Maple St, Dallas,TX,75001 +147527,Bose SoundSport Headphones,1,99.99,2019-01-20 14:52:00,655 Jackson St, Dallas,TX,75001 +147528,Wired Headphones,1,11.99,2019-01-20 02:01:00,189 Church St, Boston,MA,02215 +147529,AA Batteries (4-pack),2,3.84,2019-01-08 19:07:00,907 Dogwood St, Boston,MA,02215 +147530,Apple Airpods Headphones,1,150.0,2019-01-12 22:51:00,291 10th St, Seattle,WA,98101 +147531,AAA Batteries (4-pack),3,2.99,2019-01-14 02:20:00,165 Chestnut St, Seattle,WA,98101 +147532,Apple Airpods Headphones,1,150.0,2019-01-10 20:55:00,637 Center St, Boston,MA,02215 +147532,Flatscreen TV,1,300.0,2019-01-10 20:55:00,637 Center St, Boston,MA,02215 +147533,Lightning Charging Cable,2,14.95,2019-01-05 14:41:00,501 11th St, San Francisco,CA,94016 +147534,AA Batteries (4-pack),1,3.84,2019-01-16 01:51:00,237 West St, San Francisco,CA,94016 +147535,Google Phone,1,600.0,2019-01-05 04:11:00,100 Highland St, Boston,MA,02215 +147535,Wired Headphones,1,11.99,2019-01-05 04:11:00,100 Highland St, Boston,MA,02215 +147536,Flatscreen TV,1,300.0,2019-01-17 08:37:00,422 West St, San Francisco,CA,94016 +147537,Macbook Pro Laptop,1,1700.0,2019-01-17 23:57:00,305 Elm St, Los Angeles,CA,90001 +147538,20in Monitor,1,109.99,2019-01-11 16:22:00,700 Washington St, New York City,NY,10001 +147539,AA Batteries (4-pack),1,3.84,2019-01-04 16:52:00,167 Chestnut St, Dallas,TX,75001 +147540,Bose SoundSport Headphones,1,99.99,2019-01-26 03:06:00,692 Park St, Los Angeles,CA,90001 +147541,Wired Headphones,2,11.99,2019-01-03 08:29:00,236 Hill St, Boston,MA,02215 +147542,Apple Airpods Headphones,1,150.0,2019-01-02 14:17:00,711 Willow St, Los Angeles,CA,90001 +147543,AA Batteries (4-pack),2,3.84,2019-01-21 19:36:00,730 10th St, Austin,TX,73301 +147544,Wired Headphones,1,11.99,2019-01-24 19:51:00,275 Willow St, San Francisco,CA,94016 +147545,AAA Batteries (4-pack),2,2.99,2019-01-07 14:42:00,45 Pine St, Boston,MA,02215 +147546,ThinkPad Laptop,1,999.99,2019-01-26 18:24:00,714 Willow St, Boston,MA,02215 +147547,AA Batteries (4-pack),1,3.84,2019-01-06 19:06:00,902 5th St, Atlanta,GA,30301 +147548,AAA Batteries (4-pack),1,2.99,2019-01-08 09:05:00,497 10th St, Los Angeles,CA,90001 +147549,Bose SoundSport Headphones,1,99.99,2019-01-04 08:37:00,139 7th St, Boston,MA,02215 +147550,USB-C Charging Cable,1,11.95,2019-01-04 19:25:00,125 Wilson St, Atlanta,GA,30301 +147551,Apple Airpods Headphones,1,150.0,2019-01-10 09:43:00,20 Jackson St, Atlanta,GA,30301 +147552,AA Batteries (4-pack),1,3.84,2019-01-28 08:52:00,306 Lakeview St, Seattle,WA,98101 +147553,Flatscreen TV,1,300.0,2019-01-10 18:17:00,386 Johnson St, Boston,MA,02215 +147554,Apple Airpods Headphones,1,150.0,2019-01-15 12:20:00,236 Willow St, Boston,MA,02215 +147555,USB-C Charging Cable,1,11.95,2019-01-11 16:50:00,425 10th St, San Francisco,CA,94016 +147556,27in 4K Gaming Monitor,1,389.99,2019-01-02 08:05:00,374 Cherry St, Seattle,WA,98101 +147557,Apple Airpods Headphones,1,150.0,2019-01-13 17:54:00,210 West St, Atlanta,GA,30301 +147558,AAA Batteries (4-pack),1,2.99,2019-01-27 12:28:00,643 River St, Boston,MA,02215 +147559,AA Batteries (4-pack),1,3.84,2019-01-08 19:57:00,921 2nd St, San Francisco,CA,94016 +147560,AA Batteries (4-pack),1,3.84,2019-01-19 22:38:00,709 Cedar St, Portland,OR,97035 +147561,Lightning Charging Cable,1,14.95,2019-01-25 19:03:00,588 Lincoln St, Boston,MA,02215 +147562,AAA Batteries (4-pack),1,2.99,2019-01-06 09:25:00,152 Pine St, Los Angeles,CA,90001 +147563,34in Ultrawide Monitor,1,379.99,2019-01-04 15:41:00,345 Jackson St, San Francisco,CA,94016 +147564,USB-C Charging Cable,1,11.95,2019-01-22 16:16:00,519 South St, New York City,NY,10001 +147565,Macbook Pro Laptop,1,1700.0,2019-01-11 16:13:00,124 4th St, Dallas,TX,75001 +147566,AA Batteries (4-pack),2,3.84,2019-01-20 18:33:00,537 River St, Boston,MA,02215 +147567,AAA Batteries (4-pack),2,2.99,2019-01-24 11:56:00,935 Lincoln St, San Francisco,CA,94016 +147568,Apple Airpods Headphones,1,150.0,2019-01-14 03:33:00,486 10th St, San Francisco,CA,94016 +147569,AAA Batteries (4-pack),1,2.99,2019-01-24 09:23:00,984 8th St, San Francisco,CA,94016 +147570,Apple Airpods Headphones,1,150.0,2019-01-15 10:06:00,625 Main St, Dallas,TX,75001 +147571,Google Phone,1,600.0,2019-01-27 10:12:00,530 Willow St, San Francisco,CA,94016 +147571,USB-C Charging Cable,1,11.95,2019-01-27 10:12:00,530 Willow St, San Francisco,CA,94016 +147572,Apple Airpods Headphones,1,150.0,2019-01-28 21:58:00,257 14th St, Atlanta,GA,30301 +147573,34in Ultrawide Monitor,1,379.99,2019-01-04 10:25:00,63 7th St, Los Angeles,CA,90001 +147574,Google Phone,1,600.0,2019-01-01 11:10:00,472 14th St, Los Angeles,CA,90001 +147575,ThinkPad Laptop,1,999.99,2019-01-26 10:16:00,475 Church St, New York City,NY,10001 +147576,Apple Airpods Headphones,1,150.0,2019-01-20 21:56:00,78 Main St, Seattle,WA,98101 +147577,iPhone,1,700.0,2019-01-17 20:02:00,378 Lake St, Seattle,WA,98101 +147578,Apple Airpods Headphones,1,150.0,2019-01-29 13:42:00,349 8th St, Dallas,TX,75001 +147579,27in FHD Monitor,1,149.99,2019-01-02 17:11:00,109 Dogwood St, New York City,NY,10001 +147580,USB-C Charging Cable,1,11.95,2019-01-26 11:33:00,979 Washington St, San Francisco,CA,94016 +147581,Wired Headphones,1,11.99,2019-01-06 11:19:00,524 Cedar St, San Francisco,CA,94016 +147582,Apple Airpods Headphones,1,150.0,2019-01-21 18:38:00,465 Walnut St, Seattle,WA,98101 +147583,Apple Airpods Headphones,1,150.0,2019-01-07 20:33:00,984 Madison St, Dallas,TX,75001 +147584,AAA Batteries (4-pack),1,2.99,2019-01-10 12:09:00,903 1st St, Los Angeles,CA,90001 +147585,20in Monitor,1,109.99,2019-01-25 18:38:00,845 14th St, Dallas,TX,75001 +147586,Lightning Charging Cable,1,14.95,2019-01-15 18:58:00,402 Church St, San Francisco,CA,94016 +147587,27in 4K Gaming Monitor,1,389.99,2019-01-07 21:34:00,976 7th St, Boston,MA,02215 +147588,Macbook Pro Laptop,1,1700.0,2019-01-04 00:30:00,383 Chestnut St, San Francisco,CA,94016 +147589,ThinkPad Laptop,1,999.99,2019-01-02 12:14:00,227 Willow St, San Francisco,CA,94016 +147590,AA Batteries (4-pack),1,3.84,2019-01-21 15:52:00,647 9th St, San Francisco,CA,94016 +147591,27in 4K Gaming Monitor,1,389.99,2019-01-23 13:05:00,317 12th St, New York City,NY,10001 +147592,iPhone,1,700.0,2019-01-01 17:30:00,719 7th St, New York City,NY,10001 +147593,Flatscreen TV,1,300.0,2019-01-15 12:17:00,73 Johnson St, San Francisco,CA,94016 +147594,Lightning Charging Cable,1,14.95,2019-01-04 21:19:00,21 Lincoln St, Los Angeles,CA,90001 +147595,Lightning Charging Cable,1,14.95,2019-01-24 20:32:00,53 Willow St, Atlanta,GA,30301 +147596,Google Phone,1,600.0,2019-01-07 23:34:00,330 14th St, Atlanta,GA,30301 +147597,Lightning Charging Cable,1,14.95,2019-01-22 23:47:00,938 West St, New York City,NY,10001 +147598,27in FHD Monitor,1,149.99,2019-01-04 18:31:00,313 Washington St, San Francisco,CA,94016 +147599,AA Batteries (4-pack),1,3.84,2019-01-10 23:08:00,206 Meadow St, Seattle,WA,98101 +147600,Wired Headphones,1,11.99,2019-01-07 10:57:00,603 Walnut St, Portland,OR,97035 +147601,AA Batteries (4-pack),1,3.84,2019-01-23 19:54:00,813 North St, Atlanta,GA,30301 +147602,iPhone,1,700.0,2019-01-25 21:13:00,251 10th St, Atlanta,GA,30301 +147603,AA Batteries (4-pack),1,3.84,2019-01-19 11:41:00,626 Park St, Atlanta,GA,30301 +147604,Google Phone,1,600.0,2019-01-24 00:16:00,250 6th St, San Francisco,CA,94016 +147605,AA Batteries (4-pack),1,3.84,2019-01-20 16:26:00,58 13th St, Boston,MA,02215 +147606,27in 4K Gaming Monitor,1,389.99,2019-01-08 07:05:00,264 2nd St, Portland,ME,04101 +147607,AA Batteries (4-pack),1,3.84,2019-01-17 15:56:00,503 Spruce St, Atlanta,GA,30301 +147608,Wired Headphones,1,11.99,2019-01-10 16:06:00,998 Pine St, Seattle,WA,98101 +147609,USB-C Charging Cable,1,11.95,2019-01-19 11:22:00,382 Lake St, New York City,NY,10001 +147610,Bose SoundSport Headphones,1,99.99,2019-01-16 09:58:00,502 Meadow St, Seattle,WA,98101 +147611,LG Dryer,1,600.0,2019-01-23 20:05:00,779 5th St, San Francisco,CA,94016 +147612,LG Washing Machine,1,600.0,2019-01-08 17:38:00,435 Sunset St, Boston,MA,02215 +147613,AA Batteries (4-pack),2,3.84,2019-01-29 15:29:00,758 Jackson St, New York City,NY,10001 +147614,Apple Airpods Headphones,1,150.0,2019-01-13 09:51:00,203 Lake St, Dallas,TX,75001 +147615,Apple Airpods Headphones,1,150.0,2019-01-23 17:09:00,253 6th St, Portland,OR,97035 +147616,AAA Batteries (4-pack),1,2.99,2019-01-07 21:53:00,364 Spruce St, Austin,TX,73301 +147617,USB-C Charging Cable,2,11.95,2019-01-24 10:09:00,944 Wilson St, Los Angeles,CA,90001 +147618,Flatscreen TV,1,300.0,2019-01-12 16:37:00,527 Highland St, Austin,TX,73301 +147619,AA Batteries (4-pack),1,3.84,2019-01-01 17:57:00,251 Meadow St, San Francisco,CA,94016 +147620,Flatscreen TV,1,300.0,2019-01-16 16:01:00,873 Ridge St, Austin,TX,73301 +147621,Wired Headphones,1,11.99,2019-01-11 22:09:00,231 10th St, Los Angeles,CA,90001 +147622,34in Ultrawide Monitor,1,379.99,2019-01-10 15:32:00,484 Lakeview St, Boston,MA,02215 +147623,27in FHD Monitor,1,149.99,2019-01-16 12:58:00,38 Wilson St, Portland,OR,97035 +147624,iPhone,1,700.0,2019-01-05 12:56:00,354 Lake St, New York City,NY,10001 +147625,20in Monitor,1,109.99,2019-01-20 17:39:00,781 Forest St, New York City,NY,10001 +147626,AA Batteries (4-pack),1,3.84,2019-01-06 19:58:00,272 7th St, Los Angeles,CA,90001 +147627,iPhone,1,700.0,2019-01-27 18:43:00,795 Center St, Portland,OR,97035 +147628,USB-C Charging Cable,2,11.95,2019-01-25 13:18:00,34 Lakeview St, Los Angeles,CA,90001 +147629,USB-C Charging Cable,1,11.95,2019-01-18 12:46:00,130 Spruce St, Atlanta,GA,30301 +147630,Lightning Charging Cable,1,14.95,2019-01-23 13:24:00,402 Meadow St, Dallas,TX,75001 +147631,Google Phone,1,600.0,2019-01-01 19:07:00,631 10th St, Dallas,TX,75001 +147632,Wired Headphones,1,11.99,2019-01-31 12:57:00,423 West St, Boston,MA,02215 +147633,34in Ultrawide Monitor,1,379.99,2019-01-18 13:25:00,113 Sunset St, Los Angeles,CA,90001 +147634,AA Batteries (4-pack),1,3.84,2019-01-15 21:07:00,175 Dogwood St, Seattle,WA,98101 +147635,AA Batteries (4-pack),1,3.84,2019-01-17 17:58:00,248 Jackson St, New York City,NY,10001 +147636,LG Dryer,1,600.0,2019-01-15 09:35:00,865 Forest St, Atlanta,GA,30301 +147637,34in Ultrawide Monitor,1,379.99,2019-01-03 08:40:00,470 Meadow St, Portland,OR,97035 +147638,ThinkPad Laptop,1,999.99,2019-01-17 17:34:00,897 Center St, Portland,OR,97035 +147639,34in Ultrawide Monitor,1,379.99,2019-01-04 22:22:00,118 Lakeview St, San Francisco,CA,94016 +147640,Macbook Pro Laptop,1,1700.0,2019-01-24 16:44:00,400 Cedar St, Austin,TX,73301 +147641,Lightning Charging Cable,1,14.95,2019-01-04 12:07:00,833 Center St, San Francisco,CA,94016 +147642,34in Ultrawide Monitor,1,379.99,2019-01-20 12:15:00,487 Lincoln St, San Francisco,CA,94016 +147643,Lightning Charging Cable,3,14.95,2019-01-31 19:39:00,111 Dogwood St, Los Angeles,CA,90001 +147644,Lightning Charging Cable,1,14.95,2019-01-11 13:01:00,671 South St, New York City,NY,10001 +147645,iPhone,1,700.0,2019-01-30 22:55:00,484 12th St, San Francisco,CA,94016 +147645,Apple Airpods Headphones,1,150.0,2019-01-30 22:55:00,484 12th St, San Francisco,CA,94016 +147645,Wired Headphones,1,11.99,2019-01-30 22:55:00,484 12th St, San Francisco,CA,94016 +147646,34in Ultrawide Monitor,1,379.99,2019-01-05 11:29:00,724 North St, Los Angeles,CA,90001 +147647,USB-C Charging Cable,1,11.95,2019-01-18 08:50:00,981 Hill St, New York City,NY,10001 +147648,USB-C Charging Cable,1,11.95,2019-01-05 07:46:00,38 6th St, San Francisco,CA,94016 +147649,AA Batteries (4-pack),1,3.84,2019-01-24 22:15:00,717 Spruce St, Dallas,TX,75001 +147650,Apple Airpods Headphones,1,150.0,2019-01-17 14:10:00,311 5th St, San Francisco,CA,94016 +147651,AAA Batteries (4-pack),1,2.99,2019-01-11 20:58:00,760 Cherry St, Austin,TX,73301 +147652,USB-C Charging Cable,1,11.95,2019-01-12 00:16:00,641 13th St, Los Angeles,CA,90001 +147653,Apple Airpods Headphones,1,150.0,2019-01-08 11:16:00,75 11th St, New York City,NY,10001 +147654,USB-C Charging Cable,1,11.95,2019-01-10 07:34:00,187 Cedar St, Los Angeles,CA,90001 +147655,AA Batteries (4-pack),3,3.84,2019-01-23 16:01:00,53 Hill St, Los Angeles,CA,90001 +147656,AA Batteries (4-pack),1,3.84,2019-01-25 15:04:00,250 Maple St, Los Angeles,CA,90001 +147657,ThinkPad Laptop,1,999.99,2019-01-12 19:30:00,122 11th St, Atlanta,GA,30301 +147658,Lightning Charging Cable,1,14.95,2019-01-17 23:47:00,301 12th St, New York City,NY,10001 +147659,Lightning Charging Cable,1,14.95,2019-01-19 13:24:00,939 13th St, Portland,ME,04101 +147660,AAA Batteries (4-pack),3,2.99,2019-01-26 11:42:00,368 Spruce St, Dallas,TX,75001 +147661,Apple Airpods Headphones,1,150.0,2019-01-03 21:54:00,926 Chestnut St, Austin,TX,73301 +147662,Wired Headphones,1,11.99,2019-01-05 23:16:00,437 River St, Seattle,WA,98101 +147663,Lightning Charging Cable,1,14.95,2019-02-01 00:33:00,96 Elm St, Boston,MA,02215 +147664,AAA Batteries (4-pack),4,2.99,2019-01-27 18:11:00,875 13th St, New York City,NY,10001 +147664,34in Ultrawide Monitor,1,379.99,2019-01-27 18:11:00,875 13th St, New York City,NY,10001 +147665,USB-C Charging Cable,2,11.95,2019-01-13 20:46:00,202 8th St, Austin,TX,73301 +147666,Vareebadd Phone,1,400.0,2019-01-19 21:27:00,965 Forest St, Seattle,WA,98101 +147667,Apple Airpods Headphones,1,150.0,2019-01-29 14:07:00,24 Washington St, San Francisco,CA,94016 +147668,AAA Batteries (4-pack),1,2.99,2019-01-18 13:45:00,30 14th St, San Francisco,CA,94016 +147669,Apple Airpods Headphones,1,150.0,2019-01-31 15:48:00,371 10th St, Portland,ME,04101 +147670,Lightning Charging Cable,1,14.95,2019-01-04 09:04:00,224 Center St, Atlanta,GA,30301 +147671,Macbook Pro Laptop,1,1700.0,2019-01-13 13:07:00,272 Dogwood St, New York City,NY,10001 +147672,ThinkPad Laptop,1,999.99,2019-01-11 09:00:00,49 8th St, Los Angeles,CA,90001 +147673,27in FHD Monitor,1,149.99,2019-01-02 23:53:00,259 Cherry St, New York City,NY,10001 +147674,USB-C Charging Cable,1,11.95,2019-01-26 14:04:00,472 River St, Austin,TX,73301 +147675,Apple Airpods Headphones,1,150.0,2019-01-26 19:50:00,123 Willow St, Atlanta,GA,30301 +147676,AAA Batteries (4-pack),1,2.99,2019-01-13 22:50:00,451 7th St, Portland,OR,97035 +147677,ThinkPad Laptop,1,999.99,2019-01-06 22:47:00,611 1st St, Portland,OR,97035 +147678,Lightning Charging Cable,1,14.95,2019-01-03 11:29:00,263 1st St, Los Angeles,CA,90001 +147679,Lightning Charging Cable,1,14.95,2019-01-31 14:45:00,391 Cedar St, Boston,MA,02215 +147680,Lightning Charging Cable,2,14.95,2019-01-31 18:08:00,729 12th St, San Francisco,CA,94016 +147681,20in Monitor,1,109.99,2019-01-05 14:38:00,935 10th St, Dallas,TX,75001 +147682,LG Washing Machine,1,600.0,2019-01-06 11:12:00,105 Lincoln St, New York City,NY,10001 +147683,Macbook Pro Laptop,1,1700.0,2019-01-09 01:25:00,324 Highland St, Boston,MA,02215 +147684,Lightning Charging Cable,1,14.95,2019-01-03 11:09:00,893 Meadow St, Los Angeles,CA,90001 +147685,AAA Batteries (4-pack),4,2.99,2019-01-01 17:04:00,620 Willow St, San Francisco,CA,94016 +147686,USB-C Charging Cable,1,11.95,2019-01-20 18:15:00,57 Dogwood St, Los Angeles,CA,90001 +147687,Apple Airpods Headphones,1,150.0,2019-01-15 13:08:00,180 1st St, Seattle,WA,98101 +147688,Vareebadd Phone,1,400.0,2019-01-17 18:10:00,472 Johnson St, New York City,NY,10001 +147688,USB-C Charging Cable,2,11.95,2019-01-17 18:10:00,472 Johnson St, New York City,NY,10001 +147689,AA Batteries (4-pack),1,3.84,2019-01-01 18:09:00,282 Meadow St, Los Angeles,CA,90001 +147690,Apple Airpods Headphones,1,150.0,2019-01-12 18:45:00,806 Lake St, Portland,OR,97035 +147691,USB-C Charging Cable,1,11.95,2019-01-26 19:19:00,706 8th St, Boston,MA,02215 +147692,Wired Headphones,1,11.99,2019-01-05 14:01:00,94 Washington St, Austin,TX,73301 +147693,27in FHD Monitor,1,149.99,2019-01-24 09:01:00,689 North St, Los Angeles,CA,90001 +147694,Lightning Charging Cable,1,14.95,2019-01-24 10:10:00,988 Jefferson St, Los Angeles,CA,90001 +147695,Wired Headphones,1,11.99,2019-01-05 16:57:00,569 Main St, New York City,NY,10001 +147696,Lightning Charging Cable,1,14.95,2019-01-22 19:18:00,711 Madison St, San Francisco,CA,94016 +147697,Lightning Charging Cable,2,14.95,2019-01-25 09:28:00,169 6th St, Los Angeles,CA,90001 +147698,Apple Airpods Headphones,1,150.0,2019-01-25 00:39:00,280 Wilson St, Portland,OR,97035 +147699,Google Phone,1,600.0,2019-01-24 15:54:00,659 Lincoln St, San Francisco,CA,94016 +147700,AA Batteries (4-pack),1,3.84,2019-01-22 18:09:00,97 7th St, San Francisco,CA,94016 +147701,AA Batteries (4-pack),2,3.84,2019-01-18 14:51:00,137 Lakeview St, Austin,TX,73301 +147702,Bose SoundSport Headphones,1,99.99,2019-01-19 20:46:00,941 Church St, San Francisco,CA,94016 +147703,Wired Headphones,1,11.99,2019-01-20 21:50:00,426 Forest St, Seattle,WA,98101 +147704,AAA Batteries (4-pack),1,2.99,2019-01-05 10:17:00,43 7th St, Austin,TX,73301 +147705,iPhone,1,700.0,2019-01-31 11:38:00,351 Pine St, Dallas,TX,75001 +147706,USB-C Charging Cable,1,11.95,2019-01-27 10:44:00,772 2nd St, Seattle,WA,98101 +147707,Wired Headphones,1,11.99,2019-01-04 16:50:00,883 4th St, Dallas,TX,75001 +147708,27in FHD Monitor,1,149.99,2019-01-11 14:32:00,980 Sunset St, San Francisco,CA,94016 +147709,LG Washing Machine,1,600.0,2019-01-01 20:29:00,666 8th St, Los Angeles,CA,90001 +147710,Lightning Charging Cable,1,14.95,2019-01-09 15:10:00,688 Washington St, San Francisco,CA,94016 +147711,AA Batteries (4-pack),1,3.84,2019-01-31 14:19:00,585 1st St, San Francisco,CA,94016 +147712,AAA Batteries (4-pack),5,2.99,2019-01-12 00:22:00,26 Adams St, San Francisco,CA,94016 +147713,Bose SoundSport Headphones,1,99.99,2019-01-23 22:11:00,74 Hill St, San Francisco,CA,94016 +147714,USB-C Charging Cable,1,11.95,2019-01-25 09:14:00,499 Jackson St, Dallas,TX,75001 +147715,Lightning Charging Cable,1,14.95,2019-01-21 06:46:00,144 Dogwood St, Boston,MA,02215 +147716,AA Batteries (4-pack),2,3.84,2019-01-22 13:45:00,794 Jefferson St, Portland,OR,97035 +147717,Wired Headphones,1,11.99,2019-01-17 12:11:00,626 Walnut St, Atlanta,GA,30301 +147718,Lightning Charging Cable,1,14.95,2019-01-31 14:37:00,161 Willow St, New York City,NY,10001 +147719,AA Batteries (4-pack),2,3.84,2019-01-21 11:27:00,646 Dogwood St, Los Angeles,CA,90001 +147720,27in 4K Gaming Monitor,1,389.99,2019-01-23 08:11:00,965 North St, Boston,MA,02215 +147721,20in Monitor,1,109.99,2019-01-11 16:25:00,697 Pine St, San Francisco,CA,94016 +147722,AAA Batteries (4-pack),2,2.99,2019-01-03 18:25:00,955 Johnson St, San Francisco,CA,94016 +147723,AAA Batteries (4-pack),1,2.99,2019-01-23 10:07:00,440 Highland St, Seattle,WA,98101 +147724,Wired Headphones,1,11.99,2019-01-27 14:25:00,471 Lakeview St, San Francisco,CA,94016 +147725,Macbook Pro Laptop,1,1700.0,2019-01-03 19:32:00,545 Lincoln St, Los Angeles,CA,90001 +147726,34in Ultrawide Monitor,1,379.99,2019-01-01 18:56:00,214 Lincoln St, San Francisco,CA,94016 +147727,Apple Airpods Headphones,1,150.0,2019-01-28 22:11:00,738 River St, Portland,OR,97035 +147728,AAA Batteries (4-pack),1,2.99,2019-01-30 11:23:00,493 Cedar St, Seattle,WA,98101 +147729,Wired Headphones,1,11.99,2019-01-24 12:09:00,719 Willow St, Boston,MA,02215 +147730,AAA Batteries (4-pack),3,2.99,2019-01-24 13:14:00,661 Wilson St, New York City,NY,10001 +147731,Apple Airpods Headphones,1,150.0,2019-01-14 22:07:00,452 Lincoln St, Boston,MA,02215 +147732,Wired Headphones,1,11.99,2019-01-28 11:28:00,578 Adams St, Austin,TX,73301 +147733,Apple Airpods Headphones,1,150.0,2019-01-14 13:54:00,41 Hill St, Los Angeles,CA,90001 +147734,Wired Headphones,1,11.99,2019-01-15 08:19:00,887 South St, New York City,NY,10001 +147735,Bose SoundSport Headphones,1,99.99,2019-01-18 15:43:00,931 Washington St, Seattle,WA,98101 +147736,Lightning Charging Cable,1,14.95,2019-01-03 11:29:00,36 4th St, New York City,NY,10001 +147737,AAA Batteries (4-pack),1,2.99,2019-01-11 19:59:00,852 Cedar St, Portland,OR,97035 +147738,Macbook Pro Laptop,1,1700.0,2019-01-06 20:13:00,674 North St, San Francisco,CA,94016 +147739,USB-C Charging Cable,1,11.95,2019-01-05 18:39:00,262 Chestnut St, Portland,OR,97035 +147740,AA Batteries (4-pack),1,3.84,2019-01-30 21:43:00,295 Elm St, Austin,TX,73301 +147741,AAA Batteries (4-pack),1,2.99,2019-01-30 13:37:00,896 14th St, New York City,NY,10001 +147742,USB-C Charging Cable,1,11.95,2019-01-25 06:57:00,871 9th St, Austin,TX,73301 +147743,ThinkPad Laptop,1,999.99,2019-01-08 19:13:00,412 Sunset St, Boston,MA,02215 +147744,Bose SoundSport Headphones,1,99.99,2019-01-01 17:55:00,841 Main St, Atlanta,GA,30301 +147745,Lightning Charging Cable,1,14.95,2019-01-04 13:31:00,657 Wilson St, San Francisco,CA,94016 +147746,27in FHD Monitor,1,149.99,2019-01-30 13:32:00,864 Meadow St, Los Angeles,CA,90001 +147747,AA Batteries (4-pack),2,3.84,2019-01-31 10:18:00,112 Chestnut St, Portland,OR,97035 +147748,Lightning Charging Cable,1,14.95,2019-01-14 20:00:00,411 Johnson St, Seattle,WA,98101 +147749,AA Batteries (4-pack),1,3.84,2019-01-22 12:21:00,96 Lincoln St, Seattle,WA,98101 +147750,34in Ultrawide Monitor,1,379.99,2019-01-26 12:18:00,285 9th St, Portland,OR,97035 +147751,Wired Headphones,1,11.99,2019-01-30 18:34:00,7 Main St, San Francisco,CA,94016 +147752,Apple Airpods Headphones,1,150.0,2019-01-18 19:48:00,643 Washington St, Atlanta,GA,30301 +147753,Vareebadd Phone,1,400.0,2019-01-20 16:57:00,277 Adams St, Portland,OR,97035 +147754,Wired Headphones,1,11.99,2019-01-26 17:41:00,487 10th St, San Francisco,CA,94016 +147755,USB-C Charging Cable,1,11.95,2019-01-20 16:03:00,792 5th St, Atlanta,GA,30301 +147756,Lightning Charging Cable,1,14.95,2019-01-22 16:57:00,436 12th St, Seattle,WA,98101 +147757,Wired Headphones,1,11.99,2019-01-30 05:11:00,504 Highland St, Dallas,TX,75001 +147758,USB-C Charging Cable,1,11.95,2019-01-01 09:48:00,281 North St, Atlanta,GA,30301 +147759,Lightning Charging Cable,1,14.95,2019-01-17 09:04:00,156 Washington St, San Francisco,CA,94016 +147760,Apple Airpods Headphones,1,150.0,2019-01-16 13:16:00,826 Hill St, San Francisco,CA,94016 +147761,Lightning Charging Cable,2,14.95,2019-01-03 03:45:00,214 Wilson St, New York City,NY,10001 +147762,USB-C Charging Cable,1,11.95,2019-01-30 10:18:00,976 Highland St, San Francisco,CA,94016 +147763,AAA Batteries (4-pack),1,2.99,2019-01-01 14:55:00,556 6th St, Los Angeles,CA,90001 +147764,Flatscreen TV,1,300.0,2019-01-29 14:52:00,122 Forest St, San Francisco,CA,94016 +147765,AAA Batteries (4-pack),1,2.99,2019-01-28 21:04:00,862 Washington St, New York City,NY,10001 +147766,Wired Headphones,1,11.99,2019-01-15 14:39:00,217 Lake St, Dallas,TX,75001 +147767,Vareebadd Phone,1,400.0,2019-01-15 20:08:00,73 14th St, Boston,MA,02215 +147768,Bose SoundSport Headphones,1,99.99,2019-01-26 17:43:00,247 13th St, San Francisco,CA,94016 +147769,Bose SoundSport Headphones,1,99.99,2019-01-16 00:18:00,314 Sunset St, Portland,OR,97035 +147770,Wired Headphones,1,11.99,2019-01-13 16:51:00,784 North St, Boston,MA,02215 +147771,Flatscreen TV,1,300.0,2019-01-29 23:30:00,417 Ridge St, New York City,NY,10001 +147772,27in FHD Monitor,1,149.99,2019-01-12 16:37:00,263 North St, Portland,ME,04101 +147773,AAA Batteries (4-pack),1,2.99,2019-01-31 15:05:00,794 1st St, Boston,MA,02215 +147774,Lightning Charging Cable,1,14.95,2019-01-29 21:01:00,158 Main St, San Francisco,CA,94016 +147775,AAA Batteries (4-pack),1,2.99,2019-01-06 13:29:00,260 Meadow St, Atlanta,GA,30301 +147776,Bose SoundSport Headphones,1,99.99,2019-01-11 15:06:00,406 6th St, Seattle,WA,98101 +147777,AA Batteries (4-pack),4,3.84,2019-01-16 18:30:00,320 Hill St, San Francisco,CA,94016 +147778,AA Batteries (4-pack),1,3.84,2019-01-11 21:28:00,957 Maple St, Portland,OR,97035 +147779,Wired Headphones,1,11.99,2019-01-20 17:48:00,208 Wilson St, San Francisco,CA,94016 +147780,Wired Headphones,1,11.99,2019-01-25 13:12:00,70 Forest St, Portland,OR,97035 +147781,Bose SoundSport Headphones,1,99.99,2019-01-14 12:28:00,210 Willow St, Austin,TX,73301 +147782,AAA Batteries (4-pack),1,2.99,2019-01-09 11:45:00,788 Washington St, New York City,NY,10001 +147783,Bose SoundSport Headphones,1,99.99,2019-01-02 08:08:00,372 Madison St, Boston,MA,02215 +147784,AAA Batteries (4-pack),1,2.99,2019-01-12 16:20:00,864 6th St, New York City,NY,10001 +147785,USB-C Charging Cable,1,11.95,2019-01-26 16:26:00,722 Meadow St, Los Angeles,CA,90001 +147786,Vareebadd Phone,1,400.0,2019-01-20 09:11:00,236 Lincoln St, Los Angeles,CA,90001 +147786,USB-C Charging Cable,1,11.95,2019-01-20 09:11:00,236 Lincoln St, Los Angeles,CA,90001 +147786,Wired Headphones,1,11.99,2019-01-20 09:11:00,236 Lincoln St, Los Angeles,CA,90001 +147787,27in FHD Monitor,1,149.99,2019-01-20 02:24:00,758 River St, Los Angeles,CA,90001 +147788,AAA Batteries (4-pack),2,2.99,2019-01-12 21:09:00,934 Jackson St, New York City,NY,10001 +147789,USB-C Charging Cable,1,11.95,2019-01-10 13:21:00,283 Meadow St, Atlanta,GA,30301 +147790,Wired Headphones,1,11.99,2019-01-08 08:44:00,207 Lincoln St, Los Angeles,CA,90001 +147791,USB-C Charging Cable,1,11.95,2019-01-18 19:00:00,524 Spruce St, Boston,MA,02215 +147792,USB-C Charging Cable,1,11.95,2019-01-18 23:58:00,749 Washington St, San Francisco,CA,94016 +147793,Wired Headphones,1,11.99,2019-01-07 17:09:00,203 Spruce St, Los Angeles,CA,90001 +147794,Google Phone,1,600.0,2019-01-29 13:02:00,334 11th St, Los Angeles,CA,90001 +147794,USB-C Charging Cable,1,11.95,2019-01-29 13:02:00,334 11th St, Los Angeles,CA,90001 +147795,Wired Headphones,1,11.99,2019-01-03 22:34:00,701 Cherry St, San Francisco,CA,94016 +147796,AAA Batteries (4-pack),1,2.99,2019-01-07 21:26:00,824 Center St, Dallas,TX,75001 +147797,Bose SoundSport Headphones,1,99.99,2019-01-05 14:12:00,126 Adams St, Austin,TX,73301 +147798,Wired Headphones,1,11.99,2019-01-10 12:22:00,435 West St, Los Angeles,CA,90001 +147799,AA Batteries (4-pack),1,3.84,2019-01-16 14:13:00,15 North St, San Francisco,CA,94016 +147800,USB-C Charging Cable,1,11.95,2019-01-29 16:22:00,264 7th St, Boston,MA,02215 +147801,20in Monitor,1,109.99,2019-01-24 17:05:00,572 Jefferson St, Boston,MA,02215 +147802,AA Batteries (4-pack),1,3.84,2019-01-03 23:27:00,987 10th St, Dallas,TX,75001 +147803,27in FHD Monitor,1,149.99,2019-01-05 10:51:00,735 2nd St, Boston,MA,02215 +147804,Wired Headphones,1,11.99,2019-01-24 21:16:00,409 Park St, San Francisco,CA,94016 +147805,Flatscreen TV,1,300.0,2019-01-21 15:32:00,214 Elm St, San Francisco,CA,94016 +147806,USB-C Charging Cable,1,11.95,2019-01-04 06:28:00,743 10th St, Los Angeles,CA,90001 +147807,27in 4K Gaming Monitor,1,389.99,2019-01-12 08:56:00,676 Main St, Los Angeles,CA,90001 +147808,Macbook Pro Laptop,1,1700.0,2019-01-19 13:19:00,740 8th St, Atlanta,GA,30301 +147809,Lightning Charging Cable,1,14.95,2019-01-11 13:21:00,507 5th St, Seattle,WA,98101 +147810,Google Phone,1,600.0,2019-01-31 16:12:00,486 2nd St, Dallas,TX,75001 +147811,Google Phone,1,600.0,2019-01-07 10:07:00,612 5th St, Los Angeles,CA,90001 +147812,Apple Airpods Headphones,1,150.0,2019-01-13 17:55:00,546 Walnut St, Los Angeles,CA,90001 +147813,Lightning Charging Cable,1,14.95,2019-01-07 12:58:00,544 Cedar St, Los Angeles,CA,90001 +147814,Apple Airpods Headphones,1,150.0,2019-01-25 12:26:00,965 Sunset St, Portland,ME,04101 +147815,27in 4K Gaming Monitor,1,389.99,2019-01-04 01:32:00,838 10th St, Los Angeles,CA,90001 +147816,Google Phone,1,600.0,2019-01-11 08:19:00,787 Chestnut St, Dallas,TX,75001 +147816,USB-C Charging Cable,1,11.95,2019-01-11 08:19:00,787 Chestnut St, Dallas,TX,75001 +147816,Bose SoundSport Headphones,1,99.99,2019-01-11 08:19:00,787 Chestnut St, Dallas,TX,75001 +147817,AAA Batteries (4-pack),1,2.99,2019-01-30 00:06:00,203 Lakeview St, Los Angeles,CA,90001 +147818,Wired Headphones,1,11.99,2019-01-05 19:56:00,659 8th St, Atlanta,GA,30301 +147819,iPhone,1,700.0,2019-01-23 13:10:00,992 8th St, Los Angeles,CA,90001 +147820,USB-C Charging Cable,1,11.95,2019-01-14 18:14:00,589 Chestnut St, Boston,MA,02215 +147821,20in Monitor,1,109.99,2019-01-23 18:42:00,720 9th St, San Francisco,CA,94016 +147822,Wired Headphones,1,11.99,2019-01-23 18:02:00,756 10th St, San Francisco,CA,94016 +147823,Google Phone,1,600.0,2019-01-02 16:15:00,377 Madison St, San Francisco,CA,94016 +147824,Google Phone,1,600.0,2019-01-27 23:33:00,856 Adams St, Boston,MA,02215 +147825,Wired Headphones,1,11.99,2019-01-13 14:31:00,608 Church St, Los Angeles,CA,90001 +147826,AAA Batteries (4-pack),2,2.99,2019-01-26 21:08:00,11 10th St, San Francisco,CA,94016 +147827,27in FHD Monitor,1,149.99,2019-01-24 12:17:00,909 Wilson St, San Francisco,CA,94016 +147828,iPhone,1,700.0,2019-01-12 22:16:00,375 Jefferson St, Austin,TX,73301 +147829,Wired Headphones,1,11.99,2019-01-10 15:38:00,701 1st St, Los Angeles,CA,90001 +147830,AA Batteries (4-pack),3,3.84,2019-01-30 18:31:00,866 13th St, New York City,NY,10001 +147831,Google Phone,1,600.0,2019-01-11 06:52:00,540 North St, Atlanta,GA,30301 +147831,USB-C Charging Cable,1,11.95,2019-01-11 06:52:00,540 North St, Atlanta,GA,30301 +147831,AA Batteries (4-pack),1,3.84,2019-01-11 06:52:00,540 North St, Atlanta,GA,30301 +147832,AAA Batteries (4-pack),2,2.99,2019-01-23 16:47:00,387 Adams St, Atlanta,GA,30301 +147833,AA Batteries (4-pack),1,3.84,2019-01-16 15:51:00,65 Chestnut St, Austin,TX,73301 +147834,Macbook Pro Laptop,1,1700.0,2019-01-04 20:38:00,711 Lakeview St, Dallas,TX,75001 +147835,Lightning Charging Cable,1,14.95,2019-01-25 15:29:00,798 Elm St, Dallas,TX,75001 +147836,USB-C Charging Cable,1,11.95,2019-01-11 12:49:00,338 7th St, San Francisco,CA,94016 +147837,27in 4K Gaming Monitor,1,389.99,2019-01-24 20:13:00,783 Church St, San Francisco,CA,94016 +147838,Wired Headphones,1,11.99,2019-01-06 19:45:00,425 9th St, Austin,TX,73301 +147839,34in Ultrawide Monitor,1,379.99,2019-01-07 09:40:00,106 Cedar St, Seattle,WA,98101 +147840,Lightning Charging Cable,1,14.95,2019-01-08 23:47:00,33 1st St, Atlanta,GA,30301 +147841,AAA Batteries (4-pack),2,2.99,2019-01-21 23:42:00,297 Madison St, San Francisco,CA,94016 +147842,USB-C Charging Cable,1,11.95,2019-01-20 16:34:00,498 Dogwood St, Austin,TX,73301 +147843,Flatscreen TV,1,300.0,2019-01-24 11:12:00,745 Dogwood St, San Francisco,CA,94016 +147844,AA Batteries (4-pack),1,3.84,2019-01-13 15:56:00,966 Hill St, Dallas,TX,75001 +147845,Apple Airpods Headphones,1,150.0,2019-01-06 18:52:00,56 Chestnut St, Austin,TX,73301 +147846,AA Batteries (4-pack),1,3.84,2019-01-25 13:00:00,665 7th St, Los Angeles,CA,90001 +147847,34in Ultrawide Monitor,1,379.99,2019-01-21 18:56:00,589 Dogwood St, San Francisco,CA,94016 +147848,Macbook Pro Laptop,1,1700.0,2019-01-15 20:44:00,137 South St, San Francisco,CA,94016 +147849,iPhone,1,700.0,2019-01-30 11:26:00,313 6th St, Los Angeles,CA,90001 +147850,Bose SoundSport Headphones,1,99.99,2019-01-02 15:38:00,333 Madison St, Austin,TX,73301 +147851,ThinkPad Laptop,1,999.99,2019-01-10 10:56:00,4 10th St, Boston,MA,02215 +147852,AAA Batteries (4-pack),1,2.99,2019-01-27 13:51:00,744 Lincoln St, Seattle,WA,98101 +147853,AAA Batteries (4-pack),1,2.99,2019-01-07 10:49:00,996 Sunset St, Boston,MA,02215 +147854,Apple Airpods Headphones,1,150.0,2019-01-10 09:33:00,396 Forest St, Atlanta,GA,30301 +147855,Wired Headphones,1,11.99,2019-01-23 12:27:00,505 Center St, Los Angeles,CA,90001 +147856,Wired Headphones,1,11.99,2019-01-20 08:55:00,363 Cedar St, San Francisco,CA,94016 +147857,Bose SoundSport Headphones,1,99.99,2019-01-18 19:00:00,624 7th St, Atlanta,GA,30301 +147858,Wired Headphones,1,11.99,2019-01-18 19:56:00,138 9th St, San Francisco,CA,94016 +147859,AA Batteries (4-pack),3,3.84,2019-01-26 14:14:00,25 Lakeview St, Portland,OR,97035 +147860,27in 4K Gaming Monitor,1,389.99,2019-01-30 10:58:00,242 South St, Dallas,TX,75001 +147861,Wired Headphones,1,11.99,2019-01-09 21:01:00,687 Pine St, Seattle,WA,98101 +147862,AAA Batteries (4-pack),2,2.99,2019-01-18 21:21:00,780 7th St, Los Angeles,CA,90001 +147863,Wired Headphones,1,11.99,2019-01-06 20:43:00,317 Lakeview St, Atlanta,GA,30301 +147864,Wired Headphones,1,11.99,2019-01-02 21:33:00,546 11th St, Boston,MA,02215 +147865,20in Monitor,1,109.99,2019-01-14 11:00:00,414 Center St, Portland,OR,97035 +147866,AAA Batteries (4-pack),1,2.99,2019-01-14 13:20:00,599 11th St, Portland,OR,97035 +147867,Wired Headphones,2,11.99,2019-01-12 09:04:00,313 Chestnut St, San Francisco,CA,94016 +147868,USB-C Charging Cable,1,11.95,2019-01-18 13:53:00,62 Dogwood St, Austin,TX,73301 +147869,AAA Batteries (4-pack),1,2.99,2019-01-02 17:07:00,915 Lincoln St, Boston,MA,02215 +147870,ThinkPad Laptop,1,999.99,2019-01-31 22:06:00,346 Sunset St, San Francisco,CA,94016 +147871,AAA Batteries (4-pack),2,2.99,2019-01-06 01:58:00,354 14th St, Los Angeles,CA,90001 +147872,iPhone,1,700.0,2019-01-13 15:37:00,193 Meadow St, San Francisco,CA,94016 +147872,Lightning Charging Cable,1,14.95,2019-01-13 15:37:00,193 Meadow St, San Francisco,CA,94016 +147873,USB-C Charging Cable,1,11.95,2019-01-28 08:48:00,75 Willow St, Boston,MA,02215 +147874,34in Ultrawide Monitor,1,379.99,2019-01-18 01:59:00,435 Highland St, New York City,NY,10001 +147875,iPhone,1,700.0,2019-01-03 09:31:00,217 2nd St, San Francisco,CA,94016 +147876,Wired Headphones,1,11.99,2019-01-06 09:32:00,852 Adams St, New York City,NY,10001 +147877,AAA Batteries (4-pack),1,2.99,2019-01-31 00:54:00,685 Forest St, Austin,TX,73301 +147878,AA Batteries (4-pack),1,3.84,2019-01-26 21:30:00,609 Lincoln St, Los Angeles,CA,90001 +147879,Bose SoundSport Headphones,1,99.99,2019-01-26 08:36:00,136 Ridge St, Boston,MA,02215 +147880,Vareebadd Phone,1,400.0,2019-01-26 14:06:00,937 Elm St, New York City,NY,10001 +147881,ThinkPad Laptop,1,999.99,2019-01-20 21:34:00,681 River St, Atlanta,GA,30301 +147882,34in Ultrawide Monitor,1,379.99,2019-01-07 11:05:00,405 Park St, New York City,NY,10001 +147883,Lightning Charging Cable,1,14.95,2019-01-11 20:26:00,388 Lakeview St, Seattle,WA,98101 +147884,Macbook Pro Laptop,1,1700.0,2019-01-22 10:13:00,156 10th St, Austin,TX,73301 +147885,Lightning Charging Cable,1,14.95,2019-01-11 23:18:00,683 Willow St, San Francisco,CA,94016 +147886,27in FHD Monitor,1,149.99,2019-01-18 20:57:00,181 10th St, Austin,TX,73301 +147887,27in FHD Monitor,1,149.99,2019-01-02 16:39:00,701 North St, Boston,MA,02215 +147888,Google Phone,1,600.0,2019-01-05 16:07:00,461 Elm St, Boston,MA,02215 +147889,Apple Airpods Headphones,1,150.0,2019-01-27 22:48:00,628 Cedar St, New York City,NY,10001 +147890,AA Batteries (4-pack),2,3.84,2019-01-19 15:03:00,615 Cedar St, Austin,TX,73301 +147891,AAA Batteries (4-pack),1,2.99,2019-01-12 17:27:00,147 Center St, San Francisco,CA,94016 +147892,AAA Batteries (4-pack),2,2.99,2019-01-14 17:06:00,666 Spruce St, San Francisco,CA,94016 +147893,27in 4K Gaming Monitor,1,389.99,2019-01-02 20:46:00,105 River St, Seattle,WA,98101 +147894,Lightning Charging Cable,1,14.95,2019-01-29 18:44:00,890 9th St, Dallas,TX,75001 +147895,Flatscreen TV,1,300.0,2019-01-19 13:27:00,995 Lincoln St, San Francisco,CA,94016 +147896,AA Batteries (4-pack),1,3.84,2019-01-08 23:17:00,89 Lake St, Portland,OR,97035 +147897,Wired Headphones,1,11.99,2019-01-26 16:40:00,557 Walnut St, Los Angeles,CA,90001 +147898,USB-C Charging Cable,1,11.95,2019-01-11 13:36:00,461 9th St, New York City,NY,10001 +147899,USB-C Charging Cable,1,11.95,2019-01-28 15:19:00,85 Maple St, New York City,NY,10001 +147900,USB-C Charging Cable,1,11.95,2019-01-26 18:38:00,469 5th St, San Francisco,CA,94016 +147901,Wired Headphones,1,11.99,2019-01-01 22:45:00,26 13th St, Los Angeles,CA,90001 +147902,USB-C Charging Cable,1,11.95,2019-01-08 21:10:00,212 Sunset St, San Francisco,CA,94016 +147903,Wired Headphones,1,11.99,2019-01-14 19:02:00,29 7th St, New York City,NY,10001 +147904,Lightning Charging Cable,1,14.95,2019-01-12 17:14:00,114 Sunset St, Los Angeles,CA,90001 +147905,Lightning Charging Cable,1,14.95,2019-01-16 21:56:00,436 12th St, Boston,MA,02215 +147906,Apple Airpods Headphones,1,150.0,2019-01-24 11:20:00,447 Johnson St, San Francisco,CA,94016 +147907,Flatscreen TV,1,300.0,2019-01-11 14:00:00,805 5th St, Portland,OR,97035 +147908,AA Batteries (4-pack),2,3.84,2019-01-10 20:16:00,561 9th St, San Francisco,CA,94016 +147909,Apple Airpods Headphones,1,150.0,2019-01-18 20:00:00,253 8th St, New York City,NY,10001 +147910,AA Batteries (4-pack),2,3.84,2019-01-19 10:30:00,761 Wilson St, New York City,NY,10001 +147911,iPhone,1,700.0,2019-01-23 22:57:00,19 Meadow St, Boston,MA,02215 +147911,Lightning Charging Cable,1,14.95,2019-01-23 22:57:00,19 Meadow St, Boston,MA,02215 +147912,Apple Airpods Headphones,1,150.0,2019-01-07 09:28:00,495 Pine St, San Francisco,CA,94016 +147913,AAA Batteries (4-pack),2,2.99,2019-01-16 20:49:00,32 Center St, Boston,MA,02215 +147914,USB-C Charging Cable,1,11.95,2019-01-10 09:43:00,539 Lincoln St, Boston,MA,02215 +147915,AA Batteries (4-pack),1,3.84,2019-01-10 18:45:00,417 Park St, San Francisco,CA,94016 +147916,AA Batteries (4-pack),1,3.84,2019-01-22 20:22:00,220 Sunset St, Los Angeles,CA,90001 +147917,Wired Headphones,1,11.99,2019-01-19 14:22:00,569 Lakeview St, Seattle,WA,98101 +147918,Bose SoundSport Headphones,1,99.99,2019-01-30 04:25:00,830 Cherry St, New York City,NY,10001 +147919,AAA Batteries (4-pack),1,2.99,2019-01-27 19:43:00,269 Ridge St, Austin,TX,73301 +147920,AA Batteries (4-pack),1,3.84,2019-01-03 11:51:00,14 2nd St, Los Angeles,CA,90001 +147921,USB-C Charging Cable,1,11.95,2019-01-23 09:16:00,777 Park St, Atlanta,GA,30301 +147922,Apple Airpods Headphones,1,150.0,2019-01-02 21:16:00,697 Meadow St, Boston,MA,02215 +147923,27in FHD Monitor,1,149.99,2019-01-07 13:23:00,314 10th St, Los Angeles,CA,90001 +147924,Bose SoundSport Headphones,1,99.99,2019-01-14 10:01:00,825 Spruce St, New York City,NY,10001 +147925,Apple Airpods Headphones,1,150.0,2019-01-17 17:57:00,636 Johnson St, New York City,NY,10001 +147926,Lightning Charging Cable,1,14.95,2019-01-11 09:58:00,882 Hickory St, San Francisco,CA,94016 +147927,ThinkPad Laptop,1,999.99,2019-01-11 01:36:00,712 Elm St, Los Angeles,CA,90001 +147928,Lightning Charging Cable,1,14.95,2019-01-18 22:42:00,318 Cherry St, San Francisco,CA,94016 +147929,Vareebadd Phone,1,400.0,2019-01-21 18:01:00,785 Lakeview St, Seattle,WA,98101 +147930,Wired Headphones,1,11.99,2019-01-28 17:21:00,934 10th St, San Francisco,CA,94016 +147931,Bose SoundSport Headphones,1,99.99,2019-01-12 14:28:00,587 Cedar St, New York City,NY,10001 +147932,Macbook Pro Laptop,1,1700.0,2019-01-01 12:59:00,477 Main St, Boston,MA,02215 +147933,USB-C Charging Cable,2,11.95,2019-01-12 16:45:00,572 13th St, New York City,NY,10001 +147934,Lightning Charging Cable,1,14.95,2019-01-10 09:07:00,698 Cedar St, New York City,NY,10001 +147935,AAA Batteries (4-pack),2,2.99,2019-01-09 04:29:00,698 14th St, Los Angeles,CA,90001 +147936,AAA Batteries (4-pack),1,2.99,2019-01-29 11:01:00,67 Hill St, San Francisco,CA,94016 +147937,Wired Headphones,1,11.99,2019-01-30 11:27:00,381 Walnut St, San Francisco,CA,94016 +147938,27in FHD Monitor,1,149.99,2019-01-08 00:15:00,236 Sunset St, San Francisco,CA,94016 +147939,USB-C Charging Cable,1,11.95,2019-01-11 14:08:00,313 6th St, New York City,NY,10001 +147940,27in FHD Monitor,1,149.99,2019-01-17 08:11:00,306 Spruce St, New York City,NY,10001 +147941,Macbook Pro Laptop,1,1700.0,2019-01-24 22:16:00,234 Wilson St, New York City,NY,10001 +147942,AA Batteries (4-pack),1,3.84,2019-01-27 10:15:00,937 2nd St, Seattle,WA,98101 +147943,Apple Airpods Headphones,1,150.0,2019-01-20 18:13:00,402 South St, Los Angeles,CA,90001 +147943,Macbook Pro Laptop,1,1700.0,2019-01-20 18:13:00,402 South St, Los Angeles,CA,90001 +147944,Apple Airpods Headphones,1,150.0,2019-01-19 04:22:00,210 Main St, San Francisco,CA,94016 +147945,Lightning Charging Cable,1,14.95,2019-01-26 19:24:00,368 11th St, Portland,ME,04101 +147946,AAA Batteries (4-pack),1,2.99,2019-01-11 19:41:00,998 Washington St, Dallas,TX,75001 +147947,iPhone,1,700.0,2019-01-07 14:46:00,352 Spruce St, San Francisco,CA,94016 +147948,AA Batteries (4-pack),2,3.84,2019-01-08 23:50:00,36 Center St, San Francisco,CA,94016 +147949,27in FHD Monitor,1,149.99,2019-01-27 20:17:00,670 Sunset St, Los Angeles,CA,90001 +147950,Apple Airpods Headphones,1,150.0,2019-01-12 15:47:00,107 Madison St, Los Angeles,CA,90001 +147951,Lightning Charging Cable,1,14.95,2019-01-31 17:02:00,417 Lake St, New York City,NY,10001 +147952,Macbook Pro Laptop,1,1700.0,2019-01-29 09:55:00,695 West St, Los Angeles,CA,90001 +147953,Wired Headphones,1,11.99,2019-01-21 15:35:00,623 10th St, New York City,NY,10001 +147954,Apple Airpods Headphones,1,150.0,2019-01-03 13:37:00,239 8th St, Boston,MA,02215 +147955,AAA Batteries (4-pack),1,2.99,2019-01-20 16:52:00,554 Hickory St, Dallas,TX,75001 +147956,AAA Batteries (4-pack),2,2.99,2019-01-19 20:25:00,262 Center St, Boston,MA,02215 +147957,USB-C Charging Cable,1,11.95,2019-01-24 11:25:00,671 Main St, Dallas,TX,75001 +147958,Lightning Charging Cable,1,14.95,2019-01-16 20:45:00,787 Highland St, Seattle,WA,98101 +147959,Apple Airpods Headphones,1,150.0,2019-01-22 20:19:00,885 Park St, Dallas,TX,75001 +147960,AA Batteries (4-pack),1,3.84,2019-01-08 18:43:00,13 Dogwood St, San Francisco,CA,94016 +147961,27in 4K Gaming Monitor,1,389.99,2019-01-18 11:53:00,209 13th St, Seattle,WA,98101 +147962,AA Batteries (4-pack),1,3.84,2019-01-22 17:19:00,536 Chestnut St, Los Angeles,CA,90001 +147963,Flatscreen TV,1,300.0,2019-01-01 11:00:00,655 Meadow St, Austin,TX,73301 +147964,AA Batteries (4-pack),1,3.84,2019-01-21 21:00:00,221 Ridge St, San Francisco,CA,94016 +147965,Lightning Charging Cable,1,14.95,2019-01-19 17:12:00,708 Elm St, San Francisco,CA,94016 +147966,Apple Airpods Headphones,1,150.0,2019-01-17 11:44:00,66 5th St, Atlanta,GA,30301 +147967,Bose SoundSport Headphones,1,99.99,2019-01-16 17:41:00,389 Meadow St, San Francisco,CA,94016 +147968,Flatscreen TV,1,300.0,2019-01-07 15:39:00,892 Wilson St, Dallas,TX,75001 +147969,Wired Headphones,1,11.99,2019-01-23 07:32:00,926 2nd St, Dallas,TX,75001 +147970,Apple Airpods Headphones,1,150.0,2019-01-16 12:27:00,256 Park St, Boston,MA,02215 +147971,Bose SoundSport Headphones,1,99.99,2019-01-18 13:41:00,236 River St, San Francisco,CA,94016 +147972,Wired Headphones,1,11.99,2019-01-17 09:26:00,606 Meadow St, San Francisco,CA,94016 +147973,Apple Airpods Headphones,1,150.0,2019-01-21 11:41:00,799 8th St, Austin,TX,73301 +147974,AAA Batteries (4-pack),1,2.99,2019-01-05 07:45:00,650 Meadow St, Atlanta,GA,30301 +147975,LG Washing Machine,1,600.0,2019-01-07 21:30:00,284 Highland St, Seattle,WA,98101 +147976,27in FHD Monitor,1,149.99,2019-01-20 23:04:00,358 11th St, Austin,TX,73301 +147977,20in Monitor,1,109.99,2019-01-06 14:52:00,529 Sunset St, Boston,MA,02215 +147978,27in 4K Gaming Monitor,1,389.99,2019-01-02 15:11:00,530 4th St, New York City,NY,10001 +147979,Bose SoundSport Headphones,1,99.99,2019-01-03 22:50:00,760 West St, San Francisco,CA,94016 +147980,34in Ultrawide Monitor,1,379.99,2019-01-01 15:41:00,76 Dogwood St, New York City,NY,10001 +147981,Apple Airpods Headphones,1,150.0,2019-01-24 18:26:00,389 Madison St, Boston,MA,02215 +147982,Flatscreen TV,1,300.0,2019-01-26 02:02:00,735 9th St, New York City,NY,10001 +147983,Apple Airpods Headphones,1,150.0,2019-01-11 11:58:00,830 9th St, Los Angeles,CA,90001 +147984,USB-C Charging Cable,1,11.95,2019-01-13 08:02:00,974 Church St, San Francisco,CA,94016 +147985,27in FHD Monitor,1,149.99,2019-01-23 15:38:00,671 West St, New York City,NY,10001 +147986,Apple Airpods Headphones,1,150.0,2019-01-25 11:25:00,64 North St, San Francisco,CA,94016 +147987,AA Batteries (4-pack),1,3.84,2019-01-05 09:53:00,89 Willow St, New York City,NY,10001 +147988,Apple Airpods Headphones,1,150.0,2019-01-17 19:24:00,839 Jackson St, Dallas,TX,75001 +147989,Google Phone,1,600.0,2019-01-22 19:01:00,85 West St, Dallas,TX,75001 +147989,USB-C Charging Cable,1,11.95,2019-01-22 19:01:00,85 West St, Dallas,TX,75001 +147990,iPhone,1,700.0,2019-01-31 23:22:00,57 10th St, Austin,TX,73301 +147991,Wired Headphones,1,11.99,2019-01-22 19:41:00,819 West St, Boston,MA,02215 +147992,Flatscreen TV,1,300.0,2019-01-21 18:31:00,505 Johnson St, Atlanta,GA,30301 +147993,Bose SoundSport Headphones,1,99.99,2019-01-11 21:20:00,420 Hickory St, Boston,MA,02215 +147994,27in 4K Gaming Monitor,1,389.99,2019-01-16 09:08:00,871 1st St, Boston,MA,02215 +147995,AA Batteries (4-pack),1,3.84,2019-01-29 11:02:00,361 Cherry St, Los Angeles,CA,90001 +147996,Vareebadd Phone,1,400.0,2019-01-06 16:57:00,709 Spruce St, New York City,NY,10001 +147997,Macbook Pro Laptop,1,1700.0,2019-01-21 12:42:00,52 Highland St, Los Angeles,CA,90001 +147998,Google Phone,1,600.0,2019-01-20 13:30:00,341 Pine St, New York City,NY,10001 +147999,iPhone,1,700.0,2019-01-07 21:19:00,942 Cherry St, New York City,NY,10001 +148000,AA Batteries (4-pack),1,3.84,2019-01-19 13:14:00,252 North St, Los Angeles,CA,90001 +148001,Lightning Charging Cable,1,14.95,2019-01-28 20:19:00,799 Sunset St, Austin,TX,73301 +148002,USB-C Charging Cable,1,11.95,2019-01-06 12:02:00,908 2nd St, Portland,OR,97035 +148003,AAA Batteries (4-pack),1,2.99,2019-01-30 15:14:00,18 Park St, San Francisco,CA,94016 +148004,20in Monitor,1,109.99,2019-01-22 12:50:00,537 Jefferson St, New York City,NY,10001 +148005,27in 4K Gaming Monitor,1,389.99,2019-01-31 16:27:00,955 6th St, Los Angeles,CA,90001 +148006,iPhone,1,700.0,2019-01-05 18:51:00,273 4th St, San Francisco,CA,94016 +148007,USB-C Charging Cable,1,11.95,2019-01-20 05:12:00,803 Cherry St, New York City,NY,10001 +148008,Wired Headphones,2,11.99,2019-01-16 11:03:00,374 Maple St, Austin,TX,73301 +148009,27in FHD Monitor,1,149.99,2019-01-05 09:39:00,429 Lincoln St, New York City,NY,10001 +148010,AAA Batteries (4-pack),1,2.99,2019-01-30 01:00:00,621 Elm St, Dallas,TX,75001 +148011,USB-C Charging Cable,1,11.95,2019-01-05 14:17:00,366 Walnut St, New York City,NY,10001 +148012,Wired Headphones,1,11.99,2019-01-23 09:46:00,650 Sunset St, Los Angeles,CA,90001 +148013,Wired Headphones,1,11.99,2019-01-04 21:19:00,996 Washington St, Los Angeles,CA,90001 +148014,AA Batteries (4-pack),1,3.84,2019-01-07 12:41:00,757 Hickory St, San Francisco,CA,94016 +148015,Apple Airpods Headphones,1,150.0,2019-01-22 19:53:00,571 Adams St, Portland,OR,97035 +148016,AAA Batteries (4-pack),1,2.99,2019-01-01 19:03:00,854 Cedar St, San Francisco,CA,94016 +148017,ThinkPad Laptop,1,999.99,2019-01-07 14:01:00,811 Jackson St, New York City,NY,10001 +148018,Macbook Pro Laptop,1,1700.0,2019-01-23 18:19:00,428 Wilson St, Seattle,WA,98101 +148019,Wired Headphones,1,11.99,2019-01-17 17:35:00,829 South St, San Francisco,CA,94016 +148020,34in Ultrawide Monitor,1,379.99,2019-01-05 20:44:00,488 West St, Seattle,WA,98101 +148021,USB-C Charging Cable,2,11.95,2019-01-02 01:08:00,783 Adams St, New York City,NY,10001 +148022,Lightning Charging Cable,1,14.95,2019-01-13 07:56:00,693 Lincoln St, Atlanta,GA,30301 +148023,USB-C Charging Cable,1,11.95,2019-01-03 18:24:00,120 Highland St, Austin,TX,73301 +148024,AAA Batteries (4-pack),1,2.99,2019-01-12 01:00:00,984 8th St, New York City,NY,10001 +148025,AA Batteries (4-pack),2,3.84,2019-01-26 16:43:00,293 14th St, Boston,MA,02215 +148026,Apple Airpods Headphones,1,150.0,2019-01-04 13:13:00,710 Wilson St, Boston,MA,02215 +148027,USB-C Charging Cable,1,11.95,2019-01-26 20:40:00,457 Forest St, Austin,TX,73301 +148028,iPhone,1,700.0,2019-01-15 18:56:00,707 8th St, San Francisco,CA,94016 +148028,Lightning Charging Cable,1,14.95,2019-01-15 18:56:00,707 8th St, San Francisco,CA,94016 +148029,iPhone,1,700.0,2019-01-25 12:33:00,868 Spruce St, Boston,MA,02215 +148029,Lightning Charging Cable,1,14.95,2019-01-25 12:33:00,868 Spruce St, Boston,MA,02215 +148030,AA Batteries (4-pack),1,3.84,2019-01-26 17:00:00,731 Ridge St, Austin,TX,73301 +148031,27in 4K Gaming Monitor,1,389.99,2019-01-14 08:36:00,895 14th St, San Francisco,CA,94016 +148032,AA Batteries (4-pack),1,3.84,2019-01-16 23:52:00,198 Dogwood St, New York City,NY,10001 +148033,Lightning Charging Cable,1,14.95,2019-01-06 11:58:00,678 Spruce St, San Francisco,CA,94016 +148034,AA Batteries (4-pack),1,3.84,2019-01-25 13:55:00,49 9th St, Portland,ME,04101 +148035,Apple Airpods Headphones,1,150.0,2019-01-28 17:23:00,6 14th St, Seattle,WA,98101 +148036,27in FHD Monitor,1,149.99,2019-01-23 10:55:00,518 1st St, Boston,MA,02215 +148037,27in FHD Monitor,1,149.99,2019-01-04 15:48:00,861 2nd St, Los Angeles,CA,90001 +148038,iPhone,1,700.0,2019-01-06 10:51:00,307 North St, New York City,NY,10001 +148039,27in FHD Monitor,1,149.99,2019-01-09 21:08:00,812 Ridge St, Los Angeles,CA,90001 +148040,27in FHD Monitor,1,149.99,2019-01-11 11:36:00,444 Center St, Los Angeles,CA,90001 +148041,USB-C Charging Cable,1,11.95,2019-01-01 03:40:00,760 Church St, San Francisco,CA,94016 +148042,USB-C Charging Cable,1,11.95,2019-01-26 08:10:00,529 5th St, San Francisco,CA,94016 +148043,34in Ultrawide Monitor,1,379.99,2019-01-01 20:39:00,622 Meadow St, Boston,MA,02215 +148044,Wired Headphones,1,11.99,2019-01-11 12:30:00,27 Johnson St, Seattle,WA,98101 +148045,USB-C Charging Cable,1,11.95,2019-01-17 11:47:00,778 Sunset St, Dallas,TX,75001 +148046,Macbook Pro Laptop,1,1700.0,2019-01-13 23:32:00,105 West St, Dallas,TX,75001 +148047,AAA Batteries (4-pack),1,2.99,2019-01-07 15:42:00,455 9th St, New York City,NY,10001 +148048,USB-C Charging Cable,1,11.95,2019-01-26 18:16:00,730 North St, San Francisco,CA,94016 +148049,Flatscreen TV,1,300.0,2019-01-17 20:45:00,558 South St, Portland,ME,04101 +148050,Flatscreen TV,1,300.0,2019-01-22 12:15:00,389 7th St, Boston,MA,02215 +148051,AAA Batteries (4-pack),1,2.99,2019-01-14 00:50:00,898 6th St, Boston,MA,02215 +148052,Flatscreen TV,1,300.0,2019-01-24 19:36:00,602 Lakeview St, Boston,MA,02215 +148053,AAA Batteries (4-pack),1,2.99,2019-01-06 10:37:00,584 Chestnut St, San Francisco,CA,94016 +148054,USB-C Charging Cable,1,11.95,2019-01-20 14:39:00,111 2nd St, Dallas,TX,75001 +148055,AA Batteries (4-pack),3,3.84,2019-01-18 08:12:00,726 Willow St, Seattle,WA,98101 +148056,USB-C Charging Cable,1,11.95,2019-01-27 16:28:00,912 Adams St, New York City,NY,10001 +148057,Lightning Charging Cable,1,14.95,2019-01-23 16:24:00,712 Cherry St, New York City,NY,10001 +148058,AAA Batteries (4-pack),1,2.99,2019-01-17 17:32:00,937 Maple St, Atlanta,GA,30301 +148059,USB-C Charging Cable,1,11.95,2019-01-15 16:24:00,249 Pine St, Los Angeles,CA,90001 +148060,AAA Batteries (4-pack),1,2.99,2019-01-01 10:40:00,855 12th St, Austin,TX,73301 +148061,USB-C Charging Cable,1,11.95,2019-01-25 22:09:00,259 14th St, Boston,MA,02215 +148062,Google Phone,1,600.0,2019-01-24 06:44:00,757 Cherry St, Portland,OR,97035 +148063,Apple Airpods Headphones,1,150.0,2019-01-06 11:41:00,217 Madison St, San Francisco,CA,94016 +148064,AAA Batteries (4-pack),1,2.99,2019-01-16 17:02:00,908 14th St, New York City,NY,10001 +148065,AAA Batteries (4-pack),2,2.99,2019-01-26 00:27:00,442 Johnson St, Dallas,TX,75001 +148066,Apple Airpods Headphones,1,150.0,2019-01-13 16:53:00,916 Forest St, New York City,NY,10001 +148067,iPhone,1,700.0,2019-01-02 07:58:00,976 Johnson St, Los Angeles,CA,90001 +148067,Lightning Charging Cable,1,14.95,2019-01-02 07:58:00,976 Johnson St, Los Angeles,CA,90001 +148068,AA Batteries (4-pack),1,3.84,2019-01-29 20:09:00,513 Church St, Austin,TX,73301 +148069,27in 4K Gaming Monitor,1,389.99,2019-01-14 06:41:00,962 Main St, San Francisco,CA,94016 +148070,USB-C Charging Cable,1,11.95,2019-01-20 20:17:00,144 Dogwood St, Los Angeles,CA,90001 +148071,20in Monitor,1,109.99,2019-01-09 18:19:00,585 Walnut St, Los Angeles,CA,90001 +148072,Flatscreen TV,1,300.0,2019-01-01 12:00:00,989 Center St, San Francisco,CA,94016 +148073,34in Ultrawide Monitor,1,379.99,2019-01-07 11:52:00,551 5th St, Atlanta,GA,30301 +148073,USB-C Charging Cable,1,11.95,2019-01-07 11:52:00,551 5th St, Atlanta,GA,30301 +148074,Google Phone,1,600.0,2019-01-01 11:25:00,6 Johnson St, Atlanta,GA,30301 +148074,USB-C Charging Cable,1,11.95,2019-01-01 11:25:00,6 Johnson St, Atlanta,GA,30301 +148075,34in Ultrawide Monitor,1,379.99,2019-01-03 08:26:00,455 West St, Los Angeles,CA,90001 +148076,27in 4K Gaming Monitor,1,389.99,2019-01-19 12:44:00,811 Lake St, Austin,TX,73301 +148077,Apple Airpods Headphones,1,150.0,2019-01-30 20:28:00,848 7th St, New York City,NY,10001 +148078,Bose SoundSport Headphones,1,99.99,2019-01-26 20:47:00,653 Pine St, Los Angeles,CA,90001 +148079,Bose SoundSport Headphones,1,99.99,2019-01-09 17:46:00,674 9th St, Atlanta,GA,30301 +148080,Wired Headphones,1,11.99,2019-01-24 17:17:00,909 Forest St, Los Angeles,CA,90001 +148081,Lightning Charging Cable,1,14.95,2019-01-19 09:38:00,815 10th St, Atlanta,GA,30301 +148082,Flatscreen TV,1,300.0,2019-01-03 22:24:00,320 Lake St, Los Angeles,CA,90001 +148083,Wired Headphones,1,11.99,2019-01-01 17:19:00,544 11th St, New York City,NY,10001 +148084,27in 4K Gaming Monitor,1,389.99,2019-01-24 19:05:00,557 River St, Portland,OR,97035 +148085,USB-C Charging Cable,1,11.95,2019-01-01 14:31:00,137 Jackson St, New York City,NY,10001 +148086,AA Batteries (4-pack),1,3.84,2019-01-24 06:52:00,560 Forest St, San Francisco,CA,94016 +148087,AA Batteries (4-pack),1,3.84,2019-01-28 12:23:00,520 Willow St, Dallas,TX,75001 +148088,Wired Headphones,1,11.99,2019-01-01 07:37:00,199 Spruce St, San Francisco,CA,94016 +148089,34in Ultrawide Monitor,1,379.99,2019-01-31 11:26:00,41 Cherry St, San Francisco,CA,94016 +148090,USB-C Charging Cable,1,11.95,2019-01-18 14:07:00,537 4th St, Dallas,TX,75001 +148091,iPhone,1,700.0,2019-01-02 18:20:00,890 Jefferson St, Atlanta,GA,30301 +148092,AAA Batteries (4-pack),1,2.99,2019-01-18 03:27:00,814 Dogwood St, San Francisco,CA,94016 +148093,iPhone,1,700.0,2019-01-30 15:11:00,450 Cherry St, San Francisco,CA,94016 +148094,Lightning Charging Cable,1,14.95,2019-01-22 12:15:00,703 Hill St, San Francisco,CA,94016 +148095,AAA Batteries (4-pack),1,2.99,2019-01-30 19:27:00,628 4th St, Boston,MA,02215 +148096,Lightning Charging Cable,1,14.95,2019-01-29 20:18:00,186 Dogwood St, Atlanta,GA,30301 +148097,LG Washing Machine,1,600.0,2019-01-18 18:39:00,295 Maple St, New York City,NY,10001 +148098,AA Batteries (4-pack),2,3.84,2019-01-20 11:06:00,713 9th St, Atlanta,GA,30301 +148099,27in 4K Gaming Monitor,1,389.99,2019-01-17 22:44:00,747 Willow St, New York City,NY,10001 +148100,Wired Headphones,1,11.99,2019-01-02 13:54:00,967 North St, San Francisco,CA,94016 +148101,Wired Headphones,1,11.99,2019-01-26 23:33:00,730 7th St, Seattle,WA,98101 +148102,Lightning Charging Cable,1,14.95,2019-01-05 19:32:00,811 Meadow St, Seattle,WA,98101 +148103,Lightning Charging Cable,1,14.95,2019-01-24 23:26:00,467 Highland St, New York City,NY,10001 +148104,Bose SoundSport Headphones,1,99.99,2019-01-19 00:09:00,528 14th St, Dallas,TX,75001 +148105,AAA Batteries (4-pack),2,2.99,2019-01-25 10:40:00,377 Church St, Dallas,TX,75001 +148106,Apple Airpods Headphones,1,150.0,2019-01-11 08:20:00,807 Meadow St, Boston,MA,02215 +148107,Bose SoundSport Headphones,1,99.99,2019-01-20 04:42:00,643 12th St, San Francisco,CA,94016 +148108,Apple Airpods Headphones,1,150.0,2019-01-07 22:23:00,888 Madison St, Los Angeles,CA,90001 +148109,AAA Batteries (4-pack),1,2.99,2019-01-18 22:31:00,571 Adams St, Austin,TX,73301 +148110,USB-C Charging Cable,1,11.95,2019-01-22 08:48:00,268 Jefferson St, Dallas,TX,75001 +148111,Bose SoundSport Headphones,1,99.99,2019-01-06 11:00:00,525 12th St, New York City,NY,10001 +148112,Flatscreen TV,1,300.0,2019-01-17 19:38:00,256 West St, Boston,MA,02215 +148113,Wired Headphones,1,11.99,2019-01-02 09:20:00,655 Ridge St, Los Angeles,CA,90001 +148114,AAA Batteries (4-pack),2,2.99,2019-01-24 20:21:00,69 9th St, Boston,MA,02215 +148115,Macbook Pro Laptop,1,1700.0,2019-01-04 19:20:00,955 13th St, San Francisco,CA,94016 +148116,27in FHD Monitor,1,149.99,2019-01-18 18:45:00,680 8th St, Seattle,WA,98101 +148117,Bose SoundSport Headphones,1,99.99,2019-01-02 13:12:00,712 Jackson St, Dallas,TX,75001 +148118,27in FHD Monitor,1,149.99,2019-01-05 21:26:00,85 Lake St, Los Angeles,CA,90001 +148119,27in FHD Monitor,1,149.99,2019-01-28 06:35:00,551 Highland St, San Francisco,CA,94016 +148120,Lightning Charging Cable,1,14.95,2019-01-29 21:03:00,946 Forest St, San Francisco,CA,94016 +148121,AA Batteries (4-pack),4,3.84,2019-01-26 16:18:00,146 2nd St, Portland,OR,97035 +148122,Wired Headphones,2,11.99,2019-01-25 22:11:00,861 Willow St, New York City,NY,10001 +148123,AAA Batteries (4-pack),1,2.99,2019-01-25 15:58:00,319 Lakeview St, Boston,MA,02215 +148124,AA Batteries (4-pack),1,3.84,2019-01-17 12:40:00,500 8th St, Portland,OR,97035 +148125,27in 4K Gaming Monitor,1,389.99,2019-01-29 23:21:00,666 4th St, Seattle,WA,98101 +148126,USB-C Charging Cable,3,11.95,2019-01-21 21:03:00,900 Pine St, Dallas,TX,75001 +148127,34in Ultrawide Monitor,1,379.99,2019-01-17 10:29:00,711 Spruce St, Seattle,WA,98101 +148128,iPhone,1,700.0,2019-01-25 12:14:00,222 12th St, Los Angeles,CA,90001 +148129,Lightning Charging Cable,1,14.95,2019-01-20 11:11:00,805 Pine St, Portland,OR,97035 +148130,AAA Batteries (4-pack),3,2.99,2019-01-01 17:36:00,811 8th St, San Francisco,CA,94016 +148131,Wired Headphones,1,11.99,2019-01-28 20:45:00,262 8th St, Dallas,TX,75001 +148132,AAA Batteries (4-pack),1,2.99,2019-01-17 18:30:00,857 12th St, Boston,MA,02215 +148133,34in Ultrawide Monitor,1,379.99,2019-01-01 14:23:00,877 1st St, Dallas,TX,75001 +148134,USB-C Charging Cable,1,11.95,2019-01-05 18:10:00,377 Walnut St, New York City,NY,10001 +148135,AA Batteries (4-pack),2,3.84,2019-01-14 11:51:00,697 1st St, Portland,OR,97035 +148136,Bose SoundSport Headphones,1,99.99,2019-01-13 00:49:00,648 Highland St, New York City,NY,10001 +148137,Macbook Pro Laptop,1,1700.0,2019-01-29 08:11:00,343 North St, New York City,NY,10001 +148138,Lightning Charging Cable,1,14.95,2019-01-13 17:07:00,220 South St, Dallas,TX,75001 +148139,USB-C Charging Cable,1,11.95,2019-01-10 15:35:00,126 Johnson St, Boston,MA,02215 +148140,USB-C Charging Cable,1,11.95,2019-01-23 18:39:00,11 Dogwood St, Atlanta,GA,30301 +148141,Flatscreen TV,1,300.0,2019-01-06 10:29:00,32 6th St, Seattle,WA,98101 +148142,Lightning Charging Cable,1,14.95,2019-01-04 13:41:00,924 Jackson St, Los Angeles,CA,90001 +148143,AA Batteries (4-pack),1,3.84,2019-01-11 16:13:00,779 River St, Atlanta,GA,30301 +148144,USB-C Charging Cable,1,11.95,2019-01-20 14:04:00,402 Jefferson St, Atlanta,GA,30301 +148145,AAA Batteries (4-pack),1,2.99,2019-01-15 00:30:00,305 North St, New York City,NY,10001 +148146,LG Washing Machine,1,600.0,2019-01-30 21:44:00,115 Adams St, New York City,NY,10001 +148147,AAA Batteries (4-pack),2,2.99,2019-01-18 00:10:00,625 Willow St, Portland,OR,97035 +148148,Lightning Charging Cable,1,14.95,2019-01-11 06:11:00,532 11th St, Austin,TX,73301 +148149,USB-C Charging Cable,1,11.95,2019-01-18 20:46:00,402 West St, San Francisco,CA,94016 +148150,USB-C Charging Cable,1,11.95,2019-01-10 11:18:00,885 13th St, San Francisco,CA,94016 +148151,Macbook Pro Laptop,1,1700.0,2019-01-23 11:06:00,994 Dogwood St, Seattle,WA,98101 +148152,AA Batteries (4-pack),1,3.84,2019-01-24 14:17:00,397 Elm St, San Francisco,CA,94016 +148153,AA Batteries (4-pack),1,3.84,2019-01-26 11:23:00,487 Hickory St, Atlanta,GA,30301 +148154,AA Batteries (4-pack),1,3.84,2019-01-31 02:32:00,524 Highland St, Atlanta,GA,30301 +148154,Lightning Charging Cable,1,14.95,2019-01-31 02:32:00,524 Highland St, Atlanta,GA,30301 +148155,Apple Airpods Headphones,1,150.0,2019-01-20 18:58:00,272 Meadow St, New York City,NY,10001 +148156,AA Batteries (4-pack),3,3.84,2019-01-20 06:15:00,355 Washington St, San Francisco,CA,94016 +148157,Bose SoundSport Headphones,1,99.99,2019-01-12 18:41:00,412 Hill St, Dallas,TX,75001 +148158,AA Batteries (4-pack),1,3.84,2019-01-19 14:48:00,211 8th St, San Francisco,CA,94016 +148159,AA Batteries (4-pack),1,3.84,2019-01-04 16:39:00,636 5th St, New York City,NY,10001 +148160,Vareebadd Phone,1,400.0,2019-01-02 07:22:00,821 Madison St, New York City,NY,10001 +148161,Apple Airpods Headphones,1,150.0,2019-01-05 00:18:00,375 9th St, San Francisco,CA,94016 +148162,Apple Airpods Headphones,1,150.0,2019-01-13 09:44:00,400 South St, Boston,MA,02215 +148163,Vareebadd Phone,1,400.0,2019-01-18 07:44:00,279 6th St, Los Angeles,CA,90001 +148164,27in FHD Monitor,1,149.99,2019-01-23 16:44:00,362 13th St, Boston,MA,02215 +148165,Macbook Pro Laptop,1,1700.0,2019-01-03 09:52:00,125 Meadow St, Seattle,WA,98101 +148166,AAA Batteries (4-pack),1,2.99,2019-01-10 21:58:00,526 Washington St, New York City,NY,10001 +148167,Lightning Charging Cable,1,14.95,2019-01-22 16:41:00,641 West St, Seattle,WA,98101 +148168,Macbook Pro Laptop,1,1700.0,2019-01-16 21:44:00,755 Jefferson St, New York City,NY,10001 +148169,AA Batteries (4-pack),1,3.84,2019-01-25 18:42:00,486 14th St, San Francisco,CA,94016 +148170,Wired Headphones,1,11.99,2019-01-03 19:10:00,588 14th St, Atlanta,GA,30301 +148171,ThinkPad Laptop,1,999.99,2019-01-11 21:08:00,14 Center St, New York City,NY,10001 +148172,Apple Airpods Headphones,1,150.0,2019-01-14 10:52:00,757 5th St, San Francisco,CA,94016 +148173,AA Batteries (4-pack),1,3.84,2019-01-14 12:49:00,967 1st St, Portland,ME,04101 +148174,AAA Batteries (4-pack),2,2.99,2019-01-10 22:17:00,200 Meadow St, Atlanta,GA,30301 +148175,Google Phone,1,600.0,2019-01-06 13:27:00,506 Walnut St, San Francisco,CA,94016 +148175,USB-C Charging Cable,1,11.95,2019-01-06 13:27:00,506 Walnut St, San Francisco,CA,94016 +148176,27in FHD Monitor,1,149.99,2019-01-29 14:22:00,193 Walnut St, Los Angeles,CA,90001 +148177,Wired Headphones,1,11.99,2019-01-03 22:38:00,436 1st St, San Francisco,CA,94016 +148178,Google Phone,1,600.0,2019-01-17 10:08:00,190 West St, New York City,NY,10001 +148179,USB-C Charging Cable,1,11.95,2019-01-18 22:50:00,513 Center St, San Francisco,CA,94016 +148180,Apple Airpods Headphones,1,150.0,2019-01-19 08:38:00,169 Maple St, Dallas,TX,75001 +148181,Macbook Pro Laptop,1,1700.0,2019-01-04 02:11:00,1 Park St, New York City,NY,10001 +148182,Lightning Charging Cable,1,14.95,2019-01-22 20:26:00,240 Ridge St, Austin,TX,73301 +148183,AAA Batteries (4-pack),1,2.99,2019-01-30 05:53:00,277 Johnson St, San Francisco,CA,94016 +148184,Wired Headphones,1,11.99,2019-01-08 12:43:00,295 5th St, San Francisco,CA,94016 +148185,Macbook Pro Laptop,1,1700.0,2019-01-31 19:18:00,484 Chestnut St, Los Angeles,CA,90001 +148186,Google Phone,1,600.0,2019-01-02 06:53:00,285 Meadow St, New York City,NY,10001 +148187,Bose SoundSport Headphones,1,99.99,2019-01-14 15:07:00,969 River St, Atlanta,GA,30301 +148188,AAA Batteries (4-pack),1,2.99,2019-01-10 08:23:00,698 Meadow St, San Francisco,CA,94016 +148189,USB-C Charging Cable,1,11.95,2019-01-24 09:51:00,888 River St, Seattle,WA,98101 +148190,ThinkPad Laptop,1,999.99,2019-01-10 15:11:00,79 Madison St, San Francisco,CA,94016 +148191,AA Batteries (4-pack),1,3.84,2019-01-15 15:25:00,175 Dogwood St, Atlanta,GA,30301 +148192,Apple Airpods Headphones,1,150.0,2019-01-24 15:44:00,835 Park St, Seattle,WA,98101 +148193,34in Ultrawide Monitor,1,379.99,2019-01-04 18:33:00,968 Forest St, San Francisco,CA,94016 +148194,27in 4K Gaming Monitor,1,389.99,2019-01-30 12:56:00,940 Adams St, New York City,NY,10001 +148195,27in 4K Gaming Monitor,1,389.99,2019-01-03 14:29:00,245 Lakeview St, Austin,TX,73301 +148196,Wired Headphones,1,11.99,2019-01-02 19:05:00,850 8th St, Portland,OR,97035 +148197,Lightning Charging Cable,1,14.95,2019-01-09 01:14:00,849 Maple St, Dallas,TX,75001 +148198,AAA Batteries (4-pack),1,2.99,2019-01-24 21:29:00,825 Maple St, Boston,MA,02215 +148199,USB-C Charging Cable,1,11.95,2019-01-15 20:55:00,580 Center St, Atlanta,GA,30301 +148200,27in 4K Gaming Monitor,1,389.99,2019-01-23 16:43:00,218 Hickory St, Atlanta,GA,30301 +148201,AAA Batteries (4-pack),2,2.99,2019-01-17 21:51:00,48 13th St, Los Angeles,CA,90001 +148202,Apple Airpods Headphones,1,150.0,2019-01-23 09:53:00,248 10th St, New York City,NY,10001 +148203,AA Batteries (4-pack),1,3.84,2019-01-31 13:28:00,395 13th St, Los Angeles,CA,90001 +148204,AA Batteries (4-pack),1,3.84,2019-01-28 22:23:00,854 Walnut St, Austin,TX,73301 +148205,Bose SoundSport Headphones,1,99.99,2019-01-10 23:25:00,769 Jackson St, New York City,NY,10001 +148206,Lightning Charging Cable,1,14.95,2019-01-12 11:30:00,808 Center St, Los Angeles,CA,90001 +148207,Lightning Charging Cable,1,14.95,2019-01-26 13:35:00,231 9th St, New York City,NY,10001 +148208,Apple Airpods Headphones,1,150.0,2019-01-08 20:23:00,251 Adams St, Los Angeles,CA,90001 +148209,Vareebadd Phone,1,400.0,2019-01-31 23:35:00,934 4th St, Los Angeles,CA,90001 +148209,USB-C Charging Cable,1,11.95,2019-01-31 23:35:00,934 4th St, Los Angeles,CA,90001 +148210,Bose SoundSport Headphones,1,99.99,2019-01-13 07:20:00,620 Hill St, Boston,MA,02215 +148211,Wired Headphones,1,11.99,2019-01-31 12:31:00,130 Lakeview St, San Francisco,CA,94016 +148212,27in FHD Monitor,1,149.99,2019-01-18 13:48:00,573 Park St, Boston,MA,02215 +148213,Lightning Charging Cable,1,14.95,2019-01-22 12:32:00,337 10th St, San Francisco,CA,94016 +148214,Google Phone,1,600.0,2019-01-17 09:33:00,54 Washington St, Austin,TX,73301 +148215,iPhone,1,700.0,2019-01-02 11:30:00,991 Jefferson St, Portland,OR,97035 +148216,Wired Headphones,2,11.99,2019-01-08 14:20:00,351 5th St, Seattle,WA,98101 +148217,Apple Airpods Headphones,1,150.0,2019-01-27 16:44:00,72 Center St, Portland,ME,04101 +148218,Macbook Pro Laptop,1,1700.0,2019-01-21 16:02:00,868 5th St, New York City,NY,10001 +148219,USB-C Charging Cable,1,11.95,2019-01-15 19:42:00,967 12th St, Seattle,WA,98101 +148220,Lightning Charging Cable,1,14.95,2019-01-30 23:56:00,373 Wilson St, New York City,NY,10001 +148221,Bose SoundSport Headphones,1,99.99,2019-01-03 08:22:00,590 Cedar St, San Francisco,CA,94016 +148222,Apple Airpods Headphones,1,150.0,2019-01-22 08:16:00,176 Willow St, Dallas,TX,75001 +148223,USB-C Charging Cable,1,11.95,2019-01-12 11:17:00,374 Johnson St, San Francisco,CA,94016 +148224,Bose SoundSport Headphones,1,99.99,2019-01-30 13:23:00,537 Sunset St, Atlanta,GA,30301 +148225,Google Phone,1,600.0,2019-01-25 14:30:00,577 Jackson St, San Francisco,CA,94016 +148226,Apple Airpods Headphones,1,150.0,2019-01-31 13:33:00,743 Hill St, Portland,OR,97035 +148227,Wired Headphones,1,11.99,2019-01-04 17:11:00,523 Church St, Los Angeles,CA,90001 +148228,34in Ultrawide Monitor,1,379.99,2019-01-26 17:50:00,653 Hill St, Los Angeles,CA,90001 +148229,Apple Airpods Headphones,1,150.0,2019-01-03 18:22:00,810 Adams St, San Francisco,CA,94016 +148230,USB-C Charging Cable,1,11.95,2019-01-09 04:34:00,861 14th St, Seattle,WA,98101 +148231,iPhone,1,700.0,2019-01-15 20:43:00,204 2nd St, Boston,MA,02215 +148232,Bose SoundSport Headphones,1,99.99,2019-01-21 12:42:00,209 Madison St, Boston,MA,02215 +148233,AA Batteries (4-pack),1,3.84,2019-01-08 17:59:00,217 West St, Boston,MA,02215 +148234,Wired Headphones,1,11.99,2019-01-21 18:16:00,787 Sunset St, Boston,MA,02215 +148235,AAA Batteries (4-pack),1,2.99,2019-01-23 21:37:00,983 11th St, Los Angeles,CA,90001 +148236,Bose SoundSport Headphones,1,99.99,2019-01-30 19:06:00,962 2nd St, Atlanta,GA,30301 +148237,ThinkPad Laptop,1,999.99,2019-01-14 07:10:00,330 Lincoln St, Boston,MA,02215 +148238,AAA Batteries (4-pack),1,2.99,2019-01-15 14:49:00,133 Jefferson St, Austin,TX,73301 +148239,Macbook Pro Laptop,1,1700.0,2019-01-15 21:20:00,541 13th St, San Francisco,CA,94016 +148240,AAA Batteries (4-pack),1,2.99,2019-01-20 10:14:00,309 River St, Dallas,TX,75001 +148241,Apple Airpods Headphones,1,150.0,2019-01-17 16:24:00,40 Spruce St, Boston,MA,02215 +148242,AA Batteries (4-pack),1,3.84,2019-01-13 18:38:00,634 Elm St, San Francisco,CA,94016 +148243,AA Batteries (4-pack),1,3.84,2019-01-18 22:56:00,575 Chestnut St, Boston,MA,02215 +148244,Bose SoundSport Headphones,1,99.99,2019-01-06 11:06:00,38 Pine St, Dallas,TX,75001 +148245,AA Batteries (4-pack),2,3.84,2019-01-05 20:26:00,307 North St, Los Angeles,CA,90001 +148246,AA Batteries (4-pack),1,3.84,2019-01-01 22:29:00,16 Adams St, Seattle,WA,98101 +148247,AA Batteries (4-pack),1,3.84,2019-01-28 19:28:00,422 Meadow St, Dallas,TX,75001 +148248,34in Ultrawide Monitor,1,379.99,2019-01-26 12:09:00,52 North St, New York City,NY,10001 +148249,34in Ultrawide Monitor,1,379.99,2019-01-29 13:28:00,906 Chestnut St, Los Angeles,CA,90001 +148250,Bose SoundSport Headphones,1,99.99,2019-01-16 18:09:00,771 River St, San Francisco,CA,94016 +148251,27in FHD Monitor,1,149.99,2019-01-24 19:33:00,469 Center St, Atlanta,GA,30301 +148252,Wired Headphones,1,11.99,2019-01-05 23:57:00,770 9th St, San Francisco,CA,94016 +148253,USB-C Charging Cable,1,11.95,2019-01-11 16:12:00,35 6th St, Los Angeles,CA,90001 +148254,Google Phone,1,600.0,2019-01-22 11:59:00,784 12th St, Portland,OR,97035 +148254,USB-C Charging Cable,1,11.95,2019-01-22 11:59:00,784 12th St, Portland,OR,97035 +148255,Lightning Charging Cable,1,14.95,2019-01-18 22:23:00,509 Hill St, New York City,NY,10001 +148256,AA Batteries (4-pack),1,3.84,2019-01-31 16:30:00,403 Forest St, Atlanta,GA,30301 +148257,Lightning Charging Cable,1,14.95,2019-01-10 16:59:00,819 13th St, Los Angeles,CA,90001 +148258,Google Phone,1,600.0,2019-01-21 16:25:00,787 11th St, San Francisco,CA,94016 +148259,AAA Batteries (4-pack),1,2.99,2019-01-24 16:41:00,660 10th St, Portland,OR,97035 +148260,27in FHD Monitor,1,149.99,2019-01-06 16:45:00,494 Hill St, Austin,TX,73301 +148261,AAA Batteries (4-pack),1,2.99,2019-01-24 10:21:00,356 Pine St, Boston,MA,02215 +148262,USB-C Charging Cable,1,11.95,2019-01-30 20:59:00,198 Walnut St, San Francisco,CA,94016 +148263,AAA Batteries (4-pack),1,2.99,2019-01-14 18:43:00,456 West St, New York City,NY,10001 +148264,AAA Batteries (4-pack),1,2.99,2019-01-02 16:46:00,230 Johnson St, Atlanta,GA,30301 +148265,Bose SoundSport Headphones,1,99.99,2019-01-13 13:16:00,451 Johnson St, Seattle,WA,98101 +148266,Apple Airpods Headphones,1,150.0,2019-01-24 15:12:00,927 Cedar St, New York City,NY,10001 +148267,Lightning Charging Cable,1,14.95,2019-01-24 07:25:00,537 12th St, Los Angeles,CA,90001 +148268,34in Ultrawide Monitor,1,379.99,2019-01-28 21:20:00,379 Sunset St, San Francisco,CA,94016 +148269,Apple Airpods Headphones,1,150.0,2019-01-10 21:14:00,320 Center St, Los Angeles,CA,90001 +148270,Lightning Charging Cable,1,14.95,2019-01-31 11:06:00,284 South St, Los Angeles,CA,90001 +148271,AAA Batteries (4-pack),1,2.99,2019-01-07 12:04:00,576 5th St, Atlanta,GA,30301 +148272,LG Washing Machine,1,600.0,2019-01-13 12:43:00,594 9th St, Boston,MA,02215 +148273,34in Ultrawide Monitor,1,379.99,2019-01-15 13:57:00,510 Lake St, Dallas,TX,75001 +148274,Lightning Charging Cable,1,14.95,2019-01-13 22:41:00,218 10th St, San Francisco,CA,94016 +148275,Lightning Charging Cable,1,14.95,2019-01-02 12:12:00,38 Cedar St, New York City,NY,10001 +148275,20in Monitor,1,109.99,2019-01-02 12:12:00,38 Cedar St, New York City,NY,10001 +148276,Google Phone,1,600.0,2019-01-23 10:15:00,291 Lincoln St, Portland,OR,97035 +148277,Lightning Charging Cable,1,14.95,2019-01-22 16:00:00,54 Willow St, Dallas,TX,75001 +148278,AAA Batteries (4-pack),2,2.99,2019-01-18 12:36:00,576 Walnut St, Austin,TX,73301 +148279,Apple Airpods Headphones,1,150.0,2019-01-29 11:31:00,812 Maple St, San Francisco,CA,94016 +148280,USB-C Charging Cable,1,11.95,2019-01-17 12:59:00,415 Johnson St, Atlanta,GA,30301 +148281,ThinkPad Laptop,1,999.99,2019-01-26 20:38:00,961 13th St, Los Angeles,CA,90001 +148282,Google Phone,1,600.0,2019-01-13 11:52:00,960 Forest St, Dallas,TX,75001 +148283,Wired Headphones,1,11.99,2019-01-09 18:48:00,864 North St, Boston,MA,02215 +148284,Lightning Charging Cable,1,14.95,2019-01-08 08:27:00,719 10th St, San Francisco,CA,94016 +148285,AA Batteries (4-pack),2,3.84,2019-01-21 08:11:00,269 Park St, Portland,ME,04101 +148286,34in Ultrawide Monitor,1,379.99,2019-01-17 18:41:00,587 Sunset St, Boston,MA,02215 +148287,Lightning Charging Cable,1,14.95,2019-01-01 13:47:00,598 Washington St, Boston,MA,02215 +148288,AAA Batteries (4-pack),1,2.99,2019-01-13 19:49:00,986 7th St, New York City,NY,10001 +148289,Wired Headphones,1,11.99,2019-01-13 12:25:00,880 Willow St, San Francisco,CA,94016 +148290,Apple Airpods Headphones,1,150.0,2019-01-13 09:45:00,536 Adams St, Los Angeles,CA,90001 +148291,27in 4K Gaming Monitor,1,389.99,2019-01-21 18:29:00,210 5th St, Austin,TX,73301 +148292,Wired Headphones,1,11.99,2019-01-10 18:51:00,950 Hickory St, New York City,NY,10001 +148293,27in FHD Monitor,1,149.99,2019-01-12 22:22:00,670 River St, Los Angeles,CA,90001 +148294,Apple Airpods Headphones,1,150.0,2019-01-12 12:35:00,665 7th St, New York City,NY,10001 +148295,AA Batteries (4-pack),1,3.84,2019-01-13 16:33:00,191 Chestnut St, Austin,TX,73301 +148296,iPhone,1,700.0,2019-01-08 09:54:00,55 2nd St, San Francisco,CA,94016 +148296,Lightning Charging Cable,1,14.95,2019-01-08 09:54:00,55 2nd St, San Francisco,CA,94016 +148297,USB-C Charging Cable,1,11.95,2019-01-09 19:52:00,668 River St, Boston,MA,02215 +148298,27in FHD Monitor,1,149.99,2019-01-05 12:37:00,675 2nd St, Boston,MA,02215 +148299,Bose SoundSport Headphones,1,99.99,2019-01-14 19:43:00,539 13th St, San Francisco,CA,94016 +148300,AAA Batteries (4-pack),4,2.99,2019-01-10 15:40:00,464 Dogwood St, New York City,NY,10001 +148301,AA Batteries (4-pack),2,3.84,2019-01-27 22:37:00,457 2nd St, Boston,MA,02215 +148302,Wired Headphones,1,11.99,2019-01-19 13:27:00,866 Forest St, San Francisco,CA,94016 +148303,Wired Headphones,1,11.99,2019-01-11 20:01:00,455 Center St, San Francisco,CA,94016 +148304,Lightning Charging Cable,1,14.95,2019-01-10 21:38:00,71 Lincoln St, Boston,MA,02215 +148305,Wired Headphones,1,11.99,2019-01-20 15:55:00,233 9th St, New York City,NY,10001 +148306,Lightning Charging Cable,1,14.95,2019-01-14 20:09:00,101 6th St, Boston,MA,02215 +148307,Bose SoundSport Headphones,1,99.99,2019-01-18 21:06:00,848 Jackson St, New York City,NY,10001 +148308,LG Washing Machine,1,600.0,2019-01-02 20:18:00,871 Chestnut St, New York City,NY,10001 +148309,34in Ultrawide Monitor,1,379.99,2019-01-29 14:54:00,418 Willow St, Dallas,TX,75001 +148310,Bose SoundSport Headphones,1,99.99,2019-01-12 12:53:00,359 Lake St, Seattle,WA,98101 +148311,27in FHD Monitor,1,149.99,2019-01-25 09:12:00,968 Forest St, San Francisco,CA,94016 +148312,Wired Headphones,1,11.99,2019-01-12 19:58:00,171 6th St, Atlanta,GA,30301 +148313,USB-C Charging Cable,1,11.95,2019-01-27 21:49:00,392 Hickory St, Los Angeles,CA,90001 +148314,Flatscreen TV,1,300.0,2019-01-04 13:51:00,772 Lakeview St, Dallas,TX,75001 +148315,USB-C Charging Cable,1,11.95,2019-01-07 20:57:00,438 Cherry St, Portland,ME,04101 +148316,Lightning Charging Cable,1,14.95,2019-01-17 15:05:00,828 4th St, San Francisco,CA,94016 +148317,iPhone,1,700.0,2019-01-10 21:45:00,933 Forest St, San Francisco,CA,94016 +148318,Lightning Charging Cable,1,14.95,2019-01-30 07:21:00,159 1st St, Los Angeles,CA,90001 +148319,USB-C Charging Cable,1,11.95,2019-01-18 13:57:00,561 Lake St, San Francisco,CA,94016 +148320,27in FHD Monitor,1,149.99,2019-01-05 10:13:00,277 2nd St, Atlanta,GA,30301 +148321,AA Batteries (4-pack),1,3.84,2019-01-15 08:11:00,440 River St, Dallas,TX,75001 +148322,Wired Headphones,1,11.99,2019-01-09 14:24:00,893 5th St, Los Angeles,CA,90001 +148323,USB-C Charging Cable,1,11.95,2019-01-10 19:46:00,421 Johnson St, San Francisco,CA,94016 +148324,Apple Airpods Headphones,1,150.0,2019-01-27 22:42:00,955 9th St, San Francisco,CA,94016 +148324,iPhone,1,700.0,2019-01-27 22:42:00,955 9th St, San Francisco,CA,94016 +148325,Apple Airpods Headphones,1,150.0,2019-01-20 18:06:00,187 7th St, Atlanta,GA,30301 +148326,Apple Airpods Headphones,1,150.0,2019-01-19 12:00:00,135 North St, Atlanta,GA,30301 +148327,Bose SoundSport Headphones,1,99.99,2019-01-15 18:39:00,61 Dogwood St, Seattle,WA,98101 +148328,Apple Airpods Headphones,1,150.0,2019-01-24 22:40:00,670 River St, Los Angeles,CA,90001 +148329,USB-C Charging Cable,1,11.95,2019-01-19 20:38:00,15 Sunset St, New York City,NY,10001 +148330,AA Batteries (4-pack),1,3.84,2019-01-07 19:49:00,267 Lake St, Los Angeles,CA,90001 +148331,Wired Headphones,1,11.99,2019-01-15 11:44:00,761 Walnut St, San Francisco,CA,94016 +148332,Lightning Charging Cable,1,14.95,2019-01-03 18:04:00,427 Main St, Austin,TX,73301 +148333,27in FHD Monitor,1,149.99,2019-01-29 21:52:00,296 Walnut St, San Francisco,CA,94016 +148334,Google Phone,1,600.0,2019-01-03 15:30:00,930 4th St, San Francisco,CA,94016 +148335,iPhone,1,700.0,2019-01-31 16:48:00,696 Main St, Boston,MA,02215 +148336,AAA Batteries (4-pack),2,2.99,2019-01-24 09:09:00,867 Main St, Los Angeles,CA,90001 +148337,Apple Airpods Headphones,1,150.0,2019-01-02 21:37:00,53 Madison St, Los Angeles,CA,90001 +148338,Wired Headphones,1,11.99,2019-01-31 20:22:00,811 Highland St, Boston,MA,02215 +148339,27in FHD Monitor,1,149.99,2019-01-09 17:14:00,845 Meadow St, Austin,TX,73301 +148340,Bose SoundSport Headphones,1,99.99,2019-01-08 21:42:00,343 Hickory St, Boston,MA,02215 +148341,Wired Headphones,1,11.99,2019-01-20 18:32:00,935 North St, Los Angeles,CA,90001 +148342,Apple Airpods Headphones,1,150.0,2019-01-18 13:14:00,271 Lincoln St, Atlanta,GA,30301 +148343,Flatscreen TV,1,300.0,2019-01-04 12:33:00,608 4th St, Dallas,TX,75001 +148344,iPhone,1,700.0,2019-01-30 12:31:00,965 9th St, San Francisco,CA,94016 +148345,AAA Batteries (4-pack),1,2.99,2019-01-09 15:53:00,533 South St, Los Angeles,CA,90001 +148346,USB-C Charging Cable,1,11.95,2019-01-30 20:27:00,540 Walnut St, New York City,NY,10001 +148347,Wired Headphones,1,11.99,2019-01-27 23:55:00,424 North St, New York City,NY,10001 +148348,AAA Batteries (4-pack),1,2.99,2019-01-06 14:20:00,283 Forest St, San Francisco,CA,94016 +148349,AAA Batteries (4-pack),1,2.99,2019-01-16 14:39:00,401 Walnut St, Los Angeles,CA,90001 +148350,USB-C Charging Cable,1,11.95,2019-01-08 10:04:00,364 Maple St, Dallas,TX,75001 +148351,Wired Headphones,1,11.99,2019-01-12 16:04:00,320 Highland St, New York City,NY,10001 +148352,AA Batteries (4-pack),1,3.84,2019-01-11 21:40:00,897 Willow St, New York City,NY,10001 +148353,Apple Airpods Headphones,1,150.0,2019-01-07 19:05:00,769 6th St, Los Angeles,CA,90001 +148354,34in Ultrawide Monitor,1,379.99,2019-01-19 13:56:00,30 6th St, Seattle,WA,98101 +148355,Bose SoundSport Headphones,1,99.99,2019-01-13 18:43:00,990 Cherry St, San Francisco,CA,94016 +148356,AAA Batteries (4-pack),1,2.99,2019-01-01 15:27:00,482 14th St, Austin,TX,73301 +148357,AA Batteries (4-pack),1,3.84,2019-01-19 10:40:00,806 Cherry St, New York City,NY,10001 +148358,USB-C Charging Cable,1,11.95,2019-01-27 09:08:00,117 Pine St, New York City,NY,10001 +148359,ThinkPad Laptop,1,999.99,2019-01-30 23:57:00,856 Johnson St, Los Angeles,CA,90001 +148360,USB-C Charging Cable,1,11.95,2019-01-18 13:09:00,417 Park St, San Francisco,CA,94016 +148361,Bose SoundSport Headphones,1,99.99,2019-01-12 10:15:00,632 Hill St, San Francisco,CA,94016 +148362,27in FHD Monitor,1,149.99,2019-01-08 20:26:00,211 6th St, Seattle,WA,98101 +148363,27in FHD Monitor,1,149.99,2019-01-09 20:49:00,107 1st St, Boston,MA,02215 +148364,Lightning Charging Cable,1,14.95,2019-01-23 09:32:00,25 South St, Los Angeles,CA,90001 +148365,iPhone,1,700.0,2019-01-02 16:01:00,496 Church St, San Francisco,CA,94016 +148366,Lightning Charging Cable,1,14.95,2019-01-27 11:15:00,277 Ridge St, Boston,MA,02215 +148367,34in Ultrawide Monitor,1,379.99,2019-01-16 11:45:00,345 1st St, San Francisco,CA,94016 +148368,USB-C Charging Cable,1,11.95,2019-01-16 01:56:00,896 8th St, San Francisco,CA,94016 +148369,iPhone,1,700.0,2019-01-10 20:27:00,606 Hill St, New York City,NY,10001 +148369,Lightning Charging Cable,1,14.95,2019-01-10 20:27:00,606 Hill St, New York City,NY,10001 +148370,iPhone,1,700.0,2019-01-27 18:13:00,464 13th St, Boston,MA,02215 +148371,Lightning Charging Cable,1,14.95,2019-01-02 13:20:00,123 10th St, Seattle,WA,98101 +148372,Wired Headphones,1,11.99,2019-01-21 15:13:00,118 Cedar St, Atlanta,GA,30301 +148373,Wired Headphones,1,11.99,2019-01-27 14:59:00,582 North St, Austin,TX,73301 +148374,iPhone,1,700.0,2019-01-20 15:31:00,613 Willow St, Atlanta,GA,30301 +148375,AAA Batteries (4-pack),1,2.99,2019-01-04 18:54:00,656 Sunset St, New York City,NY,10001 +148376,USB-C Charging Cable,1,11.95,2019-01-20 17:27:00,141 Ridge St, Los Angeles,CA,90001 +148377,Apple Airpods Headphones,1,150.0,2019-01-16 12:36:00,7 5th St, New York City,NY,10001 +148378,Apple Airpods Headphones,1,150.0,2019-01-26 17:56:00,429 Adams St, Seattle,WA,98101 +148379,USB-C Charging Cable,1,11.95,2019-01-12 00:30:00,729 Jackson St, Portland,OR,97035 +148380,ThinkPad Laptop,1,999.99,2019-01-25 17:04:00,369 6th St, New York City,NY,10001 +148381,AA Batteries (4-pack),1,3.84,2019-01-15 09:50:00,232 2nd St, Dallas,TX,75001 +148382,20in Monitor,1,109.99,2019-01-13 15:31:00,622 Lincoln St, San Francisco,CA,94016 +148383,Wired Headphones,1,11.99,2019-01-19 20:39:00,156 11th St, New York City,NY,10001 +148384,USB-C Charging Cable,1,11.95,2019-01-26 16:09:00,619 South St, Atlanta,GA,30301 +148385,AAA Batteries (4-pack),1,2.99,2019-01-06 09:42:00,238 Cedar St, Boston,MA,02215 +148386,Vareebadd Phone,1,400.0,2019-01-11 21:11:00,428 8th St, New York City,NY,10001 +148387,Bose SoundSport Headphones,1,99.99,2019-01-07 21:12:00,115 Lake St, San Francisco,CA,94016 +148388,iPhone,1,700.0,2019-01-20 18:55:00,652 Spruce St, Seattle,WA,98101 +148389,USB-C Charging Cable,1,11.95,2019-01-08 11:20:00,510 Dogwood St, Portland,ME,04101 +148390,27in FHD Monitor,1,149.99,2019-01-13 20:59:00,114 Park St, New York City,NY,10001 +148391,AA Batteries (4-pack),1,3.84,2019-01-05 11:30:00,203 Main St, San Francisco,CA,94016 +148392,USB-C Charging Cable,1,11.95,2019-01-21 17:10:00,310 Highland St, Atlanta,GA,30301 +148393,Macbook Pro Laptop,1,1700.0,2019-01-03 11:32:00,580 6th St, Boston,MA,02215 +148394,Apple Airpods Headphones,1,150.0,2019-01-18 14:43:00,148 Walnut St, Boston,MA,02215 +148395,Bose SoundSport Headphones,1,99.99,2019-01-08 08:46:00,974 Cedar St, Boston,MA,02215 +148396,Lightning Charging Cable,1,14.95,2019-01-22 21:07:00,363 9th St, San Francisco,CA,94016 +148397,Apple Airpods Headphones,1,150.0,2019-01-02 14:29:00,231 Madison St, Portland,ME,04101 +148398,Lightning Charging Cable,1,14.95,2019-01-28 20:18:00,35 Forest St, Dallas,TX,75001 +148399,Bose SoundSport Headphones,1,99.99,2019-01-23 11:04:00,815 South St, San Francisco,CA,94016 +148400,iPhone,1,700.0,2019-01-31 13:44:00,248 Center St, Atlanta,GA,30301 +148400,Lightning Charging Cable,1,14.95,2019-01-31 13:44:00,248 Center St, Atlanta,GA,30301 +148401,AAA Batteries (4-pack),2,2.99,2019-01-04 17:39:00,674 Dogwood St, Boston,MA,02215 +148402,Lightning Charging Cable,1,14.95,2019-01-29 22:08:00,211 Jefferson St, New York City,NY,10001 +148403,Apple Airpods Headphones,1,150.0,2019-01-09 13:22:00,11 14th St, San Francisco,CA,94016 +148404,Wired Headphones,1,11.99,2019-01-15 09:29:00,742 Lake St, San Francisco,CA,94016 +148405,Bose SoundSport Headphones,1,99.99,2019-01-17 08:02:00,456 Walnut St, Los Angeles,CA,90001 +148406,Wired Headphones,2,11.99,2019-01-28 14:00:00,324 North St, Austin,TX,73301 +148407,Lightning Charging Cable,1,14.95,2019-01-20 08:40:00,923 9th St, Austin,TX,73301 +148408,AA Batteries (4-pack),1,3.84,2019-01-03 19:24:00,421 Walnut St, San Francisco,CA,94016 +148409,Lightning Charging Cable,2,14.95,2019-01-24 10:51:00,194 12th St, Austin,TX,73301 +148410,AAA Batteries (4-pack),1,2.99,2019-01-22 19:05:00,176 Ridge St, Dallas,TX,75001 +148411,Wired Headphones,1,11.99,2019-01-12 19:54:00,263 Washington St, New York City,NY,10001 +148412,iPhone,1,700.0,2019-01-14 18:05:00,739 Hill St, Portland,OR,97035 +148413,AA Batteries (4-pack),1,3.84,2019-01-22 12:42:00,965 Hill St, Dallas,TX,75001 +148414,AA Batteries (4-pack),1,3.84,2019-01-29 06:23:00,879 Church St, Los Angeles,CA,90001 +148415,AA Batteries (4-pack),1,3.84,2019-01-09 19:05:00,816 5th St, Austin,TX,73301 +148416,iPhone,1,700.0,2019-01-02 11:43:00,489 7th St, New York City,NY,10001 +148417,AAA Batteries (4-pack),1,2.99,2019-01-24 17:58:00,750 Maple St, Austin,TX,73301 +148418,34in Ultrawide Monitor,1,379.99,2019-01-26 13:50:00,602 14th St, San Francisco,CA,94016 +148419,Wired Headphones,1,11.99,2019-01-17 20:05:00,232 14th St, Dallas,TX,75001 +148420,USB-C Charging Cable,1,11.95,2019-01-17 05:30:00,704 Ridge St, San Francisco,CA,94016 +148421,Bose SoundSport Headphones,1,99.99,2019-01-08 12:28:00,256 8th St, Portland,ME,04101 +148422,Wired Headphones,2,11.99,2019-01-22 16:24:00,998 Elm St, Austin,TX,73301 +148423,USB-C Charging Cable,1,11.95,2019-01-01 14:51:00,56 Madison St, San Francisco,CA,94016 +148424,AA Batteries (4-pack),1,3.84,2019-01-09 12:14:00,273 4th St, San Francisco,CA,94016 +148425,Wired Headphones,1,11.99,2019-01-03 10:41:00,254 Adams St, San Francisco,CA,94016 +148426,AA Batteries (4-pack),1,3.84,2019-01-12 13:51:00,347 Walnut St, New York City,NY,10001 +148427,AA Batteries (4-pack),1,3.84,2019-01-14 16:46:00,697 North St, New York City,NY,10001 +148428,27in 4K Gaming Monitor,1,389.99,2019-01-18 17:35:00,760 Maple St, Austin,TX,73301 +148429,AA Batteries (4-pack),1,3.84,2019-01-26 17:42:00,299 7th St, Dallas,TX,75001 +148430,AAA Batteries (4-pack),3,2.99,2019-01-13 14:55:00,774 North St, San Francisco,CA,94016 +148431,Lightning Charging Cable,1,14.95,2019-01-18 09:01:00,239 Maple St, Austin,TX,73301 +148432,Wired Headphones,1,11.99,2019-01-06 01:45:00,936 Main St, Los Angeles,CA,90001 +148433,USB-C Charging Cable,1,11.95,2019-01-24 12:42:00,92 Maple St, Atlanta,GA,30301 +148434,Wired Headphones,1,11.99,2019-01-14 00:03:00,846 9th St, Los Angeles,CA,90001 +148435,USB-C Charging Cable,1,11.95,2019-01-15 08:45:00,460 River St, Los Angeles,CA,90001 +148436,USB-C Charging Cable,1,11.95,2019-01-14 10:46:00,472 Forest St, Dallas,TX,75001 +148437,AAA Batteries (4-pack),3,2.99,2019-01-06 19:30:00,736 9th St, Atlanta,GA,30301 +148438,34in Ultrawide Monitor,1,379.99,2019-01-10 20:10:00,253 Center St, San Francisco,CA,94016 +148439,AA Batteries (4-pack),1,3.84,2019-01-23 02:28:00,843 13th St, Boston,MA,02215 +148440,USB-C Charging Cable,1,11.95,2019-01-28 19:27:00,82 Center St, Dallas,TX,75001 +148441,Google Phone,1,600.0,2019-01-03 11:13:00,602 Hill St, Los Angeles,CA,90001 +148442,AA Batteries (4-pack),2,3.84,2019-01-01 17:45:00,583 Washington St, Austin,TX,73301 +148443,AA Batteries (4-pack),1,3.84,2019-01-31 14:42:00,120 Center St, Boston,MA,02215 +148444,USB-C Charging Cable,1,11.95,2019-01-30 13:00:00,608 Wilson St, Austin,TX,73301 +148445,Wired Headphones,1,11.99,2019-01-01 22:46:00,659 Ridge St, Atlanta,GA,30301 +148446,USB-C Charging Cable,1,11.95,2019-01-28 18:16:00,693 5th St, San Francisco,CA,94016 +148447,AAA Batteries (4-pack),1,2.99,2019-01-01 19:16:00,797 4th St, New York City,NY,10001 +148448,ThinkPad Laptop,1,999.99,2019-01-11 23:54:00,878 South St, Atlanta,GA,30301 +148449,Lightning Charging Cable,1,14.95,2019-01-14 12:02:00,945 Spruce St, New York City,NY,10001 +148450,iPhone,1,700.0,2019-01-01 12:02:00,761 Lakeview St, Dallas,TX,75001 +148450,Lightning Charging Cable,1,14.95,2019-01-01 12:02:00,761 Lakeview St, Dallas,TX,75001 +148451,Flatscreen TV,1,300.0,2019-01-28 10:24:00,780 9th St, New York City,NY,10001 +148452,Bose SoundSport Headphones,1,99.99,2019-01-28 07:27:00,892 8th St, Seattle,WA,98101 +148453,Lightning Charging Cable,1,14.95,2019-01-20 21:39:00,15 Ridge St, New York City,NY,10001 +148454,34in Ultrawide Monitor,1,379.99,2019-01-21 15:40:00,450 Jefferson St, Los Angeles,CA,90001 +148455,AA Batteries (4-pack),1,3.84,2019-01-17 21:50:00,292 Lake St, Los Angeles,CA,90001 +148456,AAA Batteries (4-pack),2,2.99,2019-01-19 01:01:00,784 Cherry St, Los Angeles,CA,90001 +148457,Flatscreen TV,1,300.0,2019-01-11 12:40:00,277 4th St, Los Angeles,CA,90001 +148458,ThinkPad Laptop,1,999.99,2019-01-14 13:35:00,242 Forest St, Los Angeles,CA,90001 +148459,USB-C Charging Cable,2,11.95,2019-01-27 17:51:00,644 North St, New York City,NY,10001 +148460,USB-C Charging Cable,1,11.95,2019-01-04 15:17:00,865 Jackson St, San Francisco,CA,94016 +148461,Apple Airpods Headphones,1,150.0,2019-01-14 13:28:00,841 Maple St, Portland,OR,97035 +148462,AA Batteries (4-pack),1,3.84,2019-01-16 22:03:00,154 Washington St, Dallas,TX,75001 +148463,AA Batteries (4-pack),1,3.84,2019-01-27 21:50:00,663 North St, Dallas,TX,75001 +148464,ThinkPad Laptop,1,999.99,2019-01-16 20:51:00,609 Hickory St, Portland,OR,97035 +148465,USB-C Charging Cable,1,11.95,2019-01-28 20:21:00,162 6th St, New York City,NY,10001 +148466,Apple Airpods Headphones,1,150.0,2019-01-21 12:58:00,763 Main St, Los Angeles,CA,90001 +148467,Apple Airpods Headphones,1,150.0,2019-01-04 13:14:00,593 Spruce St, Los Angeles,CA,90001 +148468,27in FHD Monitor,1,149.99,2019-01-05 00:07:00,879 12th St, Boston,MA,02215 +148469,Lightning Charging Cable,1,14.95,2019-01-07 18:45:00,876 9th St, New York City,NY,10001 +148470,USB-C Charging Cable,1,11.95,2019-01-08 23:59:00,848 South St, San Francisco,CA,94016 +148471,AA Batteries (4-pack),1,3.84,2019-01-20 23:00:00,797 Washington St, Boston,MA,02215 +148472,Lightning Charging Cable,1,14.95,2019-01-29 10:36:00,852 Cherry St, Dallas,TX,75001 +148473,USB-C Charging Cable,1,11.95,2019-01-14 22:57:00,63 Washington St, Dallas,TX,75001 +148474,Lightning Charging Cable,1,14.95,2019-01-16 12:32:00,212 Lakeview St, New York City,NY,10001 +148475,USB-C Charging Cable,1,11.95,2019-01-19 22:35:00,20 Ridge St, Los Angeles,CA,90001 +148476,Wired Headphones,1,11.99,2019-01-21 22:11:00,110 Dogwood St, Dallas,TX,75001 +148477,27in 4K Gaming Monitor,1,389.99,2019-01-13 04:12:00,459 Adams St, Seattle,WA,98101 +148478,AA Batteries (4-pack),3,3.84,2019-01-09 16:02:00,945 Wilson St, Atlanta,GA,30301 +148479,Lightning Charging Cable,3,14.95,2019-01-25 20:03:00,341 Cherry St, Atlanta,GA,30301 +148480,iPhone,1,700.0,2019-01-21 17:35:00,279 Highland St, Atlanta,GA,30301 +148481,AAA Batteries (4-pack),1,2.99,2019-01-15 12:38:00,577 Jefferson St, New York City,NY,10001 +148482,Lightning Charging Cable,1,14.95,2019-01-14 13:51:00,907 Highland St, San Francisco,CA,94016 +148483,Lightning Charging Cable,1,14.95,2019-01-06 14:05:00,314 Church St, Dallas,TX,75001 +148484,Wired Headphones,1,11.99,2019-01-14 22:08:00,403 12th St, Portland,OR,97035 +148485,27in 4K Gaming Monitor,1,389.99,2019-01-05 18:35:00,775 Cherry St, Boston,MA,02215 +148486,USB-C Charging Cable,1,11.95,2019-01-07 12:05:00,408 11th St, Los Angeles,CA,90001 +148487,34in Ultrawide Monitor,1,379.99,2019-01-12 12:11:00,841 11th St, Boston,MA,02215 +148488,27in 4K Gaming Monitor,1,389.99,2019-01-27 13:56:00,774 4th St, Dallas,TX,75001 +148489,AA Batteries (4-pack),2,3.84,2019-01-30 21:32:00,984 South St, Los Angeles,CA,90001 +148490,AA Batteries (4-pack),3,3.84,2019-01-21 16:13:00,107 Sunset St, San Francisco,CA,94016 +148491,USB-C Charging Cable,1,11.95,2019-01-15 18:36:00,573 Maple St, San Francisco,CA,94016 +148492,Apple Airpods Headphones,1,150.0,2019-01-08 00:00:00,921 Main St, San Francisco,CA,94016 +148493,Google Phone,1,600.0,2019-01-19 21:36:00,358 7th St, Austin,TX,73301 +148494,Wired Headphones,1,11.99,2019-01-02 21:53:00,752 Meadow St, Dallas,TX,75001 +148495,USB-C Charging Cable,1,11.95,2019-01-23 12:57:00,247 Dogwood St, San Francisco,CA,94016 +148496,20in Monitor,1,109.99,2019-01-21 09:25:00,801 Jackson St, Atlanta,GA,30301 +148497,AAA Batteries (4-pack),1,2.99,2019-01-04 13:27:00,7 West St, San Francisco,CA,94016 +148498,iPhone,1,700.0,2019-01-19 11:16:00,197 2nd St, Boston,MA,02215 +148499,Apple Airpods Headphones,1,150.0,2019-01-19 14:46:00,182 12th St, San Francisco,CA,94016 +148500,AA Batteries (4-pack),1,3.84,2019-01-17 18:59:00,537 Cedar St, New York City,NY,10001 +148501,Lightning Charging Cable,1,14.95,2019-01-03 11:12:00,792 Pine St, New York City,NY,10001 +148502,Wired Headphones,1,11.99,2019-01-21 11:56:00,382 Park St, Portland,OR,97035 +148503,AAA Batteries (4-pack),2,2.99,2019-01-19 06:55:00,441 4th St, San Francisco,CA,94016 +148504,Apple Airpods Headphones,1,150.0,2019-01-12 23:19:00,239 Center St, Seattle,WA,98101 +148505,Lightning Charging Cable,1,14.95,2019-01-28 18:57:00,592 Dogwood St, Boston,MA,02215 +148506,USB-C Charging Cable,1,11.95,2019-01-28 21:30:00,359 Madison St, Los Angeles,CA,90001 +148507,Apple Airpods Headphones,1,150.0,2019-01-28 12:41:00,904 River St, Dallas,TX,75001 +148508,Wired Headphones,1,11.99,2019-01-15 08:32:00,318 Lakeview St, Austin,TX,73301 +148509,AA Batteries (4-pack),1,3.84,2019-01-20 23:33:00,537 Johnson St, Seattle,WA,98101 +148510,AAA Batteries (4-pack),1,2.99,2019-01-07 21:31:00,545 Pine St, New York City,NY,10001 +148511,USB-C Charging Cable,1,11.95,2019-01-03 06:53:00,536 7th St, Austin,TX,73301 +148512,Wired Headphones,1,11.99,2019-01-20 11:09:00,605 14th St, Seattle,WA,98101 +148513,Lightning Charging Cable,1,14.95,2019-01-11 05:32:00,77 10th St, Austin,TX,73301 +148514,Bose SoundSport Headphones,1,99.99,2019-01-28 10:28:00,35 Adams St, Portland,OR,97035 +148515,USB-C Charging Cable,1,11.95,2019-01-05 14:36:00,494 Lake St, Dallas,TX,75001 +148516,27in 4K Gaming Monitor,1,389.99,2019-01-23 11:50:00,199 Willow St, Boston,MA,02215 +148517,Apple Airpods Headphones,1,150.0,2019-01-29 17:46:00,316 Hickory St, Seattle,WA,98101 +148518,USB-C Charging Cable,1,11.95,2019-01-04 19:02:00,116 4th St, San Francisco,CA,94016 +148519,AA Batteries (4-pack),2,3.84,2019-01-11 15:24:00,629 10th St, San Francisco,CA,94016 +148520,AAA Batteries (4-pack),1,2.99,2019-01-04 11:22:00,23 Meadow St, Los Angeles,CA,90001 +148521,Lightning Charging Cable,1,14.95,2019-01-02 20:29:00,239 7th St, New York City,NY,10001 +148522,AA Batteries (4-pack),2,3.84,2019-01-03 10:00:00,127 10th St, Boston,MA,02215 +148522,Bose SoundSport Headphones,1,99.99,2019-01-03 10:00:00,127 10th St, Boston,MA,02215 +148523,Apple Airpods Headphones,1,150.0,2019-01-10 19:53:00,554 Sunset St, Austin,TX,73301 +148524,Wired Headphones,1,11.99,2019-01-22 15:53:00,727 9th St, Austin,TX,73301 +148525,27in 4K Gaming Monitor,1,389.99,2019-01-14 17:57:00,348 Lincoln St, Portland,ME,04101 +148526,Lightning Charging Cable,1,14.95,2019-01-07 12:40:00,599 Madison St, Boston,MA,02215 +148527,Apple Airpods Headphones,1,150.0,2019-01-19 18:06:00,694 Ridge St, New York City,NY,10001 +148528,Bose SoundSport Headphones,1,99.99,2019-01-18 23:47:00,584 Hickory St, New York City,NY,10001 +148529,AAA Batteries (4-pack),1,2.99,2019-01-11 10:39:00,952 5th St, Boston,MA,02215 +148530,Apple Airpods Headphones,1,150.0,2019-01-24 11:39:00,423 13th St, Los Angeles,CA,90001 +148531,AAA Batteries (4-pack),1,2.99,2019-01-05 15:55:00,282 11th St, Dallas,TX,75001 +148532,Apple Airpods Headphones,1,150.0,2019-01-27 13:53:00,716 Park St, New York City,NY,10001 +148533,iPhone,1,700.0,2019-01-13 09:25:00,837 Maple St, Atlanta,GA,30301 +148534,27in 4K Gaming Monitor,1,389.99,2019-01-16 10:19:00,966 10th St, New York City,NY,10001 +148535,Wired Headphones,1,11.99,2019-01-29 12:21:00,773 Willow St, San Francisco,CA,94016 +148536,iPhone,1,700.0,2019-01-22 10:43:00,59 Lincoln St, Dallas,TX,75001 +148537,USB-C Charging Cable,1,11.95,2019-01-11 19:26:00,330 Elm St, New York City,NY,10001 +148538,AAA Batteries (4-pack),1,2.99,2019-01-11 11:06:00,385 Jackson St, Austin,TX,73301 +148539,Lightning Charging Cable,2,14.95,2019-01-03 13:58:00,941 Meadow St, Boston,MA,02215 +148540,Wired Headphones,1,11.99,2019-01-04 08:34:00,934 Meadow St, Austin,TX,73301 +148541,AAA Batteries (4-pack),1,2.99,2019-01-03 12:39:00,701 South St, Seattle,WA,98101 +148542,Wired Headphones,1,11.99,2019-01-08 19:09:00,456 Johnson St, Boston,MA,02215 +148543,Lightning Charging Cable,1,14.95,2019-01-05 17:30:00,562 7th St, Boston,MA,02215 +148544,AAA Batteries (4-pack),2,2.99,2019-01-08 12:49:00,785 10th St, Dallas,TX,75001 +148545,USB-C Charging Cable,1,11.95,2019-01-06 20:36:00,179 9th St, Los Angeles,CA,90001 +148546,20in Monitor,1,109.99,2019-01-27 15:03:00,813 Main St, New York City,NY,10001 +148547,AA Batteries (4-pack),1,3.84,2019-01-07 20:36:00,608 Hickory St, Seattle,WA,98101 +148548,Apple Airpods Headphones,1,150.0,2019-01-13 15:09:00,553 Lake St, Portland,OR,97035 +148549,Bose SoundSport Headphones,1,99.99,2019-01-25 10:53:00,578 14th St, Austin,TX,73301 +148550,USB-C Charging Cable,1,11.95,2019-01-14 18:36:00,313 12th St, Boston,MA,02215 +148550,AA Batteries (4-pack),1,3.84,2019-01-14 18:36:00,313 12th St, Boston,MA,02215 +148551,34in Ultrawide Monitor,1,379.99,2019-01-27 09:00:00,666 11th St, Dallas,TX,75001 +148552,AAA Batteries (4-pack),1,2.99,2019-01-22 15:57:00,787 Lake St, New York City,NY,10001 +148553,Wired Headphones,1,11.99,2019-01-09 14:45:00,937 11th St, San Francisco,CA,94016 +148554,ThinkPad Laptop,1,999.99,2019-01-11 07:41:00,472 Jackson St, Atlanta,GA,30301 +148555,AAA Batteries (4-pack),2,2.99,2019-01-04 16:54:00,262 Forest St, New York City,NY,10001 +148556,AAA Batteries (4-pack),1,2.99,2019-01-07 21:46:00,458 1st St, Boston,MA,02215 +148557,AA Batteries (4-pack),1,3.84,2019-01-07 21:16:00,279 Willow St, Boston,MA,02215 +148558,34in Ultrawide Monitor,1,379.99,2019-01-20 15:24:00,693 13th St, San Francisco,CA,94016 +148559,Apple Airpods Headphones,1,150.0,2019-01-23 07:44:00,230 6th St, Boston,MA,02215 +148560,AAA Batteries (4-pack),1,2.99,2019-01-10 21:46:00,403 Lakeview St, Seattle,WA,98101 +148561,Wired Headphones,1,11.99,2019-01-19 14:35:00,376 2nd St, San Francisco,CA,94016 +148562,AA Batteries (4-pack),1,3.84,2019-01-13 09:48:00,952 7th St, Portland,ME,04101 +148563,Wired Headphones,1,11.99,2019-01-14 18:44:00,113 Dogwood St, Atlanta,GA,30301 +148564,AAA Batteries (4-pack),2,2.99,2019-01-14 20:58:00,556 North St, New York City,NY,10001 +148565,27in FHD Monitor,1,149.99,2019-01-16 10:59:00,724 Center St, San Francisco,CA,94016 +148566,AAA Batteries (4-pack),2,2.99,2019-01-09 15:33:00,466 Chestnut St, Atlanta,GA,30301 +148567,ThinkPad Laptop,1,999.99,2019-01-19 15:09:00,224 4th St, Seattle,WA,98101 +148568,AAA Batteries (4-pack),1,2.99,2019-01-30 17:35:00,952 Meadow St, Seattle,WA,98101 +148569,Bose SoundSport Headphones,1,99.99,2019-01-08 13:59:00,625 Madison St, Portland,OR,97035 +148570,Apple Airpods Headphones,1,150.0,2019-01-30 15:40:00,645 7th St, San Francisco,CA,94016 +148571,Lightning Charging Cable,1,14.95,2019-01-05 22:12:00,63 Maple St, Portland,OR,97035 +148572,Google Phone,1,600.0,2019-01-28 10:55:00,926 West St, Los Angeles,CA,90001 +148573,Vareebadd Phone,1,400.0,2019-01-20 20:28:00,565 2nd St, New York City,NY,10001 +148574,20in Monitor,1,109.99,2019-01-10 23:18:00,413 Dogwood St, Los Angeles,CA,90001 +148575,Lightning Charging Cable,1,14.95,2019-01-07 11:27:00,336 Ridge St, San Francisco,CA,94016 +148576,AAA Batteries (4-pack),1,2.99,2019-01-17 13:51:00,15 Cedar St, Boston,MA,02215 +148577,AA Batteries (4-pack),1,3.84,2019-01-17 23:37:00,430 Main St, Los Angeles,CA,90001 +148578,27in 4K Gaming Monitor,1,389.99,2019-01-14 20:55:00,296 10th St, Los Angeles,CA,90001 +148579,AAA Batteries (4-pack),1,2.99,2019-01-03 10:42:00,528 5th St, Dallas,TX,75001 +148580,27in FHD Monitor,1,149.99,2019-01-02 13:07:00,657 Pine St, Seattle,WA,98101 +148581,Apple Airpods Headphones,1,150.0,2019-01-27 18:17:00,370 Jackson St, Los Angeles,CA,90001 +148582,AA Batteries (4-pack),1,3.84,2019-01-13 03:01:00,487 Chestnut St, Portland,OR,97035 +148583,iPhone,1,700.0,2019-01-23 11:15:00,873 6th St, Dallas,TX,75001 +148584,Bose SoundSport Headphones,1,99.99,2019-01-07 12:21:00,968 Lakeview St, Austin,TX,73301 +148585,Apple Airpods Headphones,1,150.0,2019-01-29 21:48:00,133 4th St, Los Angeles,CA,90001 +148586,Bose SoundSport Headphones,1,99.99,2019-01-07 18:37:00,552 4th St, San Francisco,CA,94016 +148587,AAA Batteries (4-pack),1,2.99,2019-01-25 19:41:00,921 Madison St, Atlanta,GA,30301 +148588,Wired Headphones,2,11.99,2019-01-04 07:59:00,7 Jefferson St, Boston,MA,02215 +148589,Wired Headphones,1,11.99,2019-01-07 13:15:00,476 Cherry St, San Francisco,CA,94016 +148590,Lightning Charging Cable,1,14.95,2019-01-06 18:03:00,897 Jefferson St, Los Angeles,CA,90001 +148591,AA Batteries (4-pack),1,3.84,2019-01-10 08:40:00,409 Highland St, Los Angeles,CA,90001 +148592,Lightning Charging Cable,2,14.95,2019-01-28 14:05:00,63 12th St, San Francisco,CA,94016 +148593,AAA Batteries (4-pack),1,2.99,2019-01-13 16:55:00,793 Pine St, Los Angeles,CA,90001 +148594,AAA Batteries (4-pack),1,2.99,2019-01-25 18:27:00,801 11th St, Portland,OR,97035 +148594,Apple Airpods Headphones,1,150.0,2019-01-25 18:27:00,801 11th St, Portland,OR,97035 +148595,USB-C Charging Cable,1,11.95,2019-01-29 21:12:00,873 Jefferson St, Los Angeles,CA,90001 +148596,34in Ultrawide Monitor,1,379.99,2019-01-28 16:37:00,76 Adams St, Boston,MA,02215 +148597,AAA Batteries (4-pack),1,2.99,2019-01-18 20:48:00,253 Highland St, Los Angeles,CA,90001 +148598,USB-C Charging Cable,1,11.95,2019-01-19 12:59:00,589 North St, New York City,NY,10001 +148599,iPhone,1,700.0,2019-01-11 15:22:00,165 Sunset St, Los Angeles,CA,90001 +148600,Bose SoundSport Headphones,1,99.99,2019-01-01 18:02:00,219 4th St, Boston,MA,02215 +148601,27in 4K Gaming Monitor,1,389.99,2019-01-22 12:15:00,963 12th St, New York City,NY,10001 +148602,Apple Airpods Headphones,1,150.0,2019-01-14 20:35:00,259 Main St, New York City,NY,10001 +148603,Macbook Pro Laptop,1,1700.0,2019-01-13 09:58:00,737 West St, San Francisco,CA,94016 +148604,iPhone,1,700.0,2019-01-20 12:01:00,974 5th St, Boston,MA,02215 +148605,Google Phone,1,600.0,2019-01-25 12:51:00,179 Cedar St, Portland,OR,97035 +148606,AAA Batteries (4-pack),1,2.99,2019-01-07 13:34:00,262 Cedar St, Atlanta,GA,30301 +148607,USB-C Charging Cable,1,11.95,2019-01-11 17:25:00,683 Maple St, New York City,NY,10001 +148608,USB-C Charging Cable,1,11.95,2019-01-09 23:19:00,581 Pine St, San Francisco,CA,94016 +148609,34in Ultrawide Monitor,1,379.99,2019-01-06 12:32:00,609 4th St, Los Angeles,CA,90001 +148610,Apple Airpods Headphones,1,150.0,2019-01-24 04:08:00,815 Willow St, Seattle,WA,98101 +148611,Wired Headphones,1,11.99,2019-01-20 10:39:00,465 5th St, New York City,NY,10001 +148612,AA Batteries (4-pack),1,3.84,2019-01-18 06:24:00,32 Maple St, Los Angeles,CA,90001 +148613,Apple Airpods Headphones,1,150.0,2019-01-05 09:56:00,511 11th St, San Francisco,CA,94016 +148614,USB-C Charging Cable,2,11.95,2019-01-13 18:43:00,727 Church St, San Francisco,CA,94016 +148615,USB-C Charging Cable,1,11.95,2019-01-26 15:18:00,442 Elm St, San Francisco,CA,94016 +148616,Apple Airpods Headphones,1,150.0,2019-01-06 19:09:00,290 North St, Austin,TX,73301 +148617,AAA Batteries (4-pack),1,2.99,2019-01-04 21:21:00,768 Elm St, Boston,MA,02215 +148618,Apple Airpods Headphones,1,150.0,2019-01-19 15:21:00,52 North St, San Francisco,CA,94016 +148619,USB-C Charging Cable,1,11.95,2019-01-29 17:32:00,597 South St, Los Angeles,CA,90001 +148620,AAA Batteries (4-pack),2,2.99,2019-01-04 10:11:00,316 Church St, Seattle,WA,98101 +148621,Apple Airpods Headphones,1,150.0,2019-01-08 23:37:00,383 9th St, Boston,MA,02215 +148622,USB-C Charging Cable,1,11.95,2019-01-08 17:31:00,538 Dogwood St, New York City,NY,10001 +148623,Lightning Charging Cable,1,14.95,2019-01-13 16:45:00,123 River St, New York City,NY,10001 +148624,Apple Airpods Headphones,1,150.0,2019-01-30 08:57:00,282 West St, Austin,TX,73301 +148625,AA Batteries (4-pack),1,3.84,2019-01-14 12:28:00,614 Spruce St, Austin,TX,73301 +148626,Wired Headphones,1,11.99,2019-01-08 10:45:00,327 4th St, San Francisco,CA,94016 +148627,34in Ultrawide Monitor,1,379.99,2019-01-12 23:01:00,475 Elm St, Los Angeles,CA,90001 +148628,USB-C Charging Cable,1,11.95,2019-01-13 13:05:00,275 11th St, Boston,MA,02215 +148629,Wired Headphones,1,11.99,2019-01-15 18:59:00,206 8th St, Dallas,TX,75001 +148630,Apple Airpods Headphones,1,150.0,2019-01-23 18:32:00,594 North St, Dallas,TX,75001 +148631,Apple Airpods Headphones,1,150.0,2019-01-21 00:05:00,71 4th St, Los Angeles,CA,90001 +148632,Lightning Charging Cable,1,14.95,2019-01-05 14:01:00,366 13th St, Seattle,WA,98101 +148633,USB-C Charging Cable,1,11.95,2019-01-27 11:50:00,137 5th St, San Francisco,CA,94016 +148634,Apple Airpods Headphones,1,150.0,2019-01-24 21:40:00,579 2nd St, Atlanta,GA,30301 +148635,34in Ultrawide Monitor,1,379.99,2019-01-26 19:17:00,660 South St, San Francisco,CA,94016 +148636,ThinkPad Laptop,1,999.99,2019-01-30 07:23:00,89 Chestnut St, San Francisco,CA,94016 +148637,USB-C Charging Cable,1,11.95,2019-01-11 00:12:00,715 5th St, Austin,TX,73301 +148638,AAA Batteries (4-pack),1,2.99,2019-01-08 21:04:00,580 Washington St, Los Angeles,CA,90001 +148639,AA Batteries (4-pack),1,3.84,2019-01-01 21:51:00,137 Hill St, New York City,NY,10001 +148640,Macbook Pro Laptop,1,1700.0,2019-01-11 16:05:00,936 South St, Los Angeles,CA,90001 +148641,Apple Airpods Headphones,1,150.0,2019-01-10 10:22:00,103 10th St, San Francisco,CA,94016 +148642,Bose SoundSport Headphones,1,99.99,2019-01-05 17:11:00,963 7th St, Boston,MA,02215 +148643,Lightning Charging Cable,1,14.95,2019-01-18 09:38:00,861 Hickory St, New York City,NY,10001 +148644,AA Batteries (4-pack),1,3.84,2019-01-15 05:20:00,496 Highland St, New York City,NY,10001 +148645,Bose SoundSport Headphones,1,99.99,2019-01-14 13:02:00,313 Dogwood St, Seattle,WA,98101 +148646,Wired Headphones,1,11.99,2019-01-17 19:13:00,754 Sunset St, New York City,NY,10001 +148647,Flatscreen TV,1,300.0,2019-01-09 08:50:00,410 2nd St, Austin,TX,73301 +148648,Apple Airpods Headphones,1,150.0,2019-01-26 16:01:00,566 5th St, San Francisco,CA,94016 +148649,USB-C Charging Cable,1,11.95,2019-01-24 11:13:00,280 1st St, Boston,MA,02215 +148650,AAA Batteries (4-pack),1,2.99,2019-01-15 21:20:00,822 13th St, San Francisco,CA,94016 +148651,27in FHD Monitor,1,149.99,2019-01-09 09:45:00,325 Jefferson St, Portland,OR,97035 +148652,USB-C Charging Cable,1,11.95,2019-01-16 00:08:00,937 Ridge St, San Francisco,CA,94016 +148653,AAA Batteries (4-pack),3,2.99,2019-01-05 10:57:00,687 Johnson St, Dallas,TX,75001 +148654,Apple Airpods Headphones,1,150.0,2019-01-30 09:25:00,527 Cedar St, San Francisco,CA,94016 +148655,Wired Headphones,1,11.99,2019-01-09 10:27:00,862 Meadow St, Los Angeles,CA,90001 +148656,Macbook Pro Laptop,1,1700.0,2019-01-04 11:46:00,569 River St, Los Angeles,CA,90001 +148657,AA Batteries (4-pack),1,3.84,2019-01-20 22:40:00,252 11th St, San Francisco,CA,94016 +148658,USB-C Charging Cable,1,11.95,2019-01-01 15:30:00,811 North St, Boston,MA,02215 +148659,27in FHD Monitor,1,149.99,2019-01-18 10:23:00,604 Willow St, Dallas,TX,75001 +148660,Wired Headphones,1,11.99,2019-01-07 15:04:00,389 Church St, Dallas,TX,75001 +148661,Apple Airpods Headphones,1,150.0,2019-01-27 12:25:00,974 8th St, New York City,NY,10001 +148662,Wired Headphones,1,11.99,2019-01-14 13:40:00,682 11th St, Portland,ME,04101 +148663,AAA Batteries (4-pack),1,2.99,2019-01-15 17:18:00,739 2nd St, San Francisco,CA,94016 +148663,USB-C Charging Cable,1,11.95,2019-01-15 17:18:00,739 2nd St, San Francisco,CA,94016 +148664,AAA Batteries (4-pack),5,2.99,2019-01-28 17:01:00,583 Lakeview St, Los Angeles,CA,90001 +148665,AA Batteries (4-pack),1,3.84,2019-01-03 21:38:00,13 Adams St, Dallas,TX,75001 +148666,Apple Airpods Headphones,1,150.0,2019-01-12 14:20:00,56 North St, Boston,MA,02215 +148666,Vareebadd Phone,1,400.0,2019-01-12 14:20:00,56 North St, Boston,MA,02215 +148667,Lightning Charging Cable,1,14.95,2019-01-24 17:54:00,687 7th St, Portland,ME,04101 +148668,AAA Batteries (4-pack),1,2.99,2019-01-03 20:18:00,266 Spruce St, Boston,MA,02215 +148669,Wired Headphones,1,11.99,2019-01-08 21:04:00,867 4th St, San Francisco,CA,94016 +148670,AAA Batteries (4-pack),1,2.99,2019-01-04 07:45:00,307 4th St, Boston,MA,02215 +148671,Lightning Charging Cable,1,14.95,2019-01-25 19:32:00,87 Lakeview St, Los Angeles,CA,90001 +148672,27in 4K Gaming Monitor,1,389.99,2019-01-07 14:25:00,824 2nd St, Portland,OR,97035 +148673,ThinkPad Laptop,1,999.99,2019-01-15 09:26:00,24 Elm St, San Francisco,CA,94016 +148674,AAA Batteries (4-pack),1,2.99,2019-01-03 19:58:00,656 Spruce St, Atlanta,GA,30301 +148675,Bose SoundSport Headphones,1,99.99,2019-01-12 12:12:00,208 Main St, San Francisco,CA,94016 +148676,Wired Headphones,1,11.99,2019-01-02 00:34:00,890 Hill St, Austin,TX,73301 +148677,Lightning Charging Cable,2,14.95,2019-01-19 09:18:00,478 Lake St, Atlanta,GA,30301 +148678,AAA Batteries (4-pack),1,2.99,2019-01-19 21:16:00,777 Madison St, Boston,MA,02215 +148679,Lightning Charging Cable,1,14.95,2019-01-26 17:38:00,818 4th St, Los Angeles,CA,90001 +148680,Lightning Charging Cable,1,14.95,2019-01-10 11:54:00,268 West St, Los Angeles,CA,90001 +148681,34in Ultrawide Monitor,1,379.99,2019-01-24 19:14:00,656 13th St, Seattle,WA,98101 +148682,34in Ultrawide Monitor,1,379.99,2019-01-21 01:20:00,282 1st St, San Francisco,CA,94016 +148683,AAA Batteries (4-pack),1,2.99,2019-01-22 16:00:00,845 Church St, Atlanta,GA,30301 +148684,27in 4K Gaming Monitor,1,389.99,2019-01-03 13:14:00,53 14th St, Dallas,TX,75001 +148685,AA Batteries (4-pack),1,3.84,2019-01-29 21:06:00,525 14th St, San Francisco,CA,94016 +148686,AAA Batteries (4-pack),1,2.99,2019-01-12 18:12:00,554 Meadow St, San Francisco,CA,94016 +148687,USB-C Charging Cable,1,11.95,2019-01-22 20:49:00,675 River St, San Francisco,CA,94016 +148688,AAA Batteries (4-pack),3,2.99,2019-01-05 13:23:00,111 6th St, San Francisco,CA,94016 +148689,Bose SoundSport Headphones,1,99.99,2019-01-27 14:27:00,503 Elm St, New York City,NY,10001 +148690,Wired Headphones,1,11.99,2019-01-12 21:53:00,335 Ridge St, Boston,MA,02215 +148691,Lightning Charging Cable,1,14.95,2019-01-16 19:13:00,391 Sunset St, Los Angeles,CA,90001 +148692,27in FHD Monitor,1,149.99,2019-01-24 13:35:00,199 14th St, New York City,NY,10001 +148693,AAA Batteries (4-pack),2,2.99,2019-01-28 13:11:00,637 12th St, San Francisco,CA,94016 +148694,AA Batteries (4-pack),1,3.84,2019-01-26 19:39:00,706 7th St, San Francisco,CA,94016 +148695,AAA Batteries (4-pack),1,2.99,2019-01-18 23:52:00,29 Lake St, San Francisco,CA,94016 +148696,USB-C Charging Cable,2,11.95,2019-01-30 11:08:00,874 Sunset St, Boston,MA,02215 +148696,ThinkPad Laptop,1,999.99,2019-01-30 11:08:00,874 Sunset St, Boston,MA,02215 +148697,iPhone,1,700.0,2019-01-23 14:28:00,664 Pine St, Los Angeles,CA,90001 +148697,Lightning Charging Cable,1,14.95,2019-01-23 14:28:00,664 Pine St, Los Angeles,CA,90001 +148698,USB-C Charging Cable,1,11.95,2019-01-28 16:41:00,143 Johnson St, Los Angeles,CA,90001 +148699,USB-C Charging Cable,1,11.95,2019-01-16 16:45:00,793 Church St, Los Angeles,CA,90001 +148700,Lightning Charging Cable,1,14.95,2019-01-31 21:38:00,744 Ridge St, Dallas,TX,75001 +148701,USB-C Charging Cable,1,11.95,2019-01-06 16:02:00,139 1st St, San Francisco,CA,94016 +148702,AAA Batteries (4-pack),1,2.99,2019-01-18 13:53:00,732 Elm St, Dallas,TX,75001 +148703,Bose SoundSport Headphones,1,99.99,2019-01-07 15:15:00,994 9th St, San Francisco,CA,94016 +148704,USB-C Charging Cable,1,11.95,2019-01-26 14:03:00,789 Lake St, Seattle,WA,98101 +148705,Macbook Pro Laptop,1,1700.0,2019-01-01 17:52:00,951 Church St, Boston,MA,02215 +148706,27in FHD Monitor,1,149.99,2019-01-20 14:47:00,32 2nd St, New York City,NY,10001 +148707,Apple Airpods Headphones,1,150.0,2019-01-05 08:35:00,321 12th St, San Francisco,CA,94016 +148708,USB-C Charging Cable,1,11.95,2019-01-11 21:22:00,79 7th St, Portland,OR,97035 +148709,27in 4K Gaming Monitor,1,389.99,2019-01-31 09:09:00,794 Pine St, New York City,NY,10001 +148710,Wired Headphones,1,11.99,2019-01-07 01:24:00,749 Willow St, Dallas,TX,75001 +148711,34in Ultrawide Monitor,1,379.99,2019-01-29 20:25:00,688 Pine St, Portland,OR,97035 +148712,Wired Headphones,1,11.99,2019-01-11 18:19:00,585 Jefferson St, Los Angeles,CA,90001 +148713,ThinkPad Laptop,1,999.99,2019-01-24 23:55:00,307 Washington St, Seattle,WA,98101 +148714,Wired Headphones,1,11.99,2019-01-20 11:36:00,578 Jefferson St, New York City,NY,10001 +148715,20in Monitor,1,109.99,2019-01-07 00:04:00,866 River St, San Francisco,CA,94016 +148716,AA Batteries (4-pack),2,3.84,2019-01-22 19:23:00,956 South St, Dallas,TX,75001 +148717,AA Batteries (4-pack),2,3.84,2019-01-04 21:17:00,75 Maple St, Atlanta,GA,30301 +148718,AA Batteries (4-pack),4,3.84,2019-01-24 10:46:00,427 9th St, San Francisco,CA,94016 +148719,Wired Headphones,1,11.99,2019-01-23 16:11:00,676 6th St, New York City,NY,10001 +148720,USB-C Charging Cable,1,11.95,2019-01-10 18:34:00,713 Madison St, Los Angeles,CA,90001 +148721,Google Phone,1,600.0,2019-01-04 15:01:00,94 9th St, Los Angeles,CA,90001 +148722,Lightning Charging Cable,2,14.95,2019-01-14 10:17:00,325 Main St, Los Angeles,CA,90001 +148723,Macbook Pro Laptop,1,1700.0,2019-01-11 21:57:00,401 9th St, New York City,NY,10001 +148724,Bose SoundSport Headphones,1,99.99,2019-01-09 20:38:00,488 Lake St, Atlanta,GA,30301 +148725,Lightning Charging Cable,1,14.95,2019-01-21 11:13:00,651 Park St, Portland,OR,97035 +148726,34in Ultrawide Monitor,1,379.99,2019-01-16 09:35:00,182 12th St, Atlanta,GA,30301 +148727,Wired Headphones,1,11.99,2019-01-04 21:37:00,483 Spruce St, Dallas,TX,75001 +148728,27in FHD Monitor,1,149.99,2019-01-26 00:30:00,700 Willow St, Dallas,TX,75001 +148729,AAA Batteries (4-pack),1,2.99,2019-01-27 20:56:00,863 Maple St, San Francisco,CA,94016 +148730,Wired Headphones,1,11.99,2019-01-13 13:05:00,306 Washington St, Dallas,TX,75001 +148731,Apple Airpods Headphones,1,150.0,2019-01-23 15:16:00,920 Elm St, Seattle,WA,98101 +148732,Bose SoundSport Headphones,1,99.99,2019-01-22 13:43:00,916 14th St, Los Angeles,CA,90001 +148733,USB-C Charging Cable,1,11.95,2019-01-08 05:19:00,337 Sunset St, San Francisco,CA,94016 +148734,Apple Airpods Headphones,1,150.0,2019-01-31 18:20:00,271 Jefferson St, San Francisco,CA,94016 +148735,27in FHD Monitor,1,149.99,2019-01-16 20:50:00,624 Maple St, San Francisco,CA,94016 +148736,27in FHD Monitor,1,149.99,2019-01-23 22:28:00,161 Ridge St, San Francisco,CA,94016 +148737,Apple Airpods Headphones,1,150.0,2019-01-14 20:01:00,522 Center St, Portland,OR,97035 +148738,Bose SoundSport Headphones,1,99.99,2019-01-16 13:56:00,124 Wilson St, San Francisco,CA,94016 +148739,Wired Headphones,1,11.99,2019-01-02 02:24:00,926 Cedar St, San Francisco,CA,94016 +148740,20in Monitor,1,109.99,2019-01-16 19:06:00,423 Maple St, Dallas,TX,75001 +148741,Macbook Pro Laptop,1,1700.0,2019-01-05 09:45:00,45 Pine St, Boston,MA,02215 +148742,Bose SoundSport Headphones,1,99.99,2019-01-20 16:37:00,823 Dogwood St, Boston,MA,02215 +148743,Lightning Charging Cable,1,14.95,2019-01-27 14:47:00,408 Lakeview St, San Francisco,CA,94016 +148744,AAA Batteries (4-pack),3,2.99,2019-01-26 19:40:00,982 Hill St, San Francisco,CA,94016 +148745,USB-C Charging Cable,1,11.95,2019-01-16 16:07:00,643 North St, Los Angeles,CA,90001 +148746,Wired Headphones,1,11.99,2019-01-24 15:37:00,70 Main St, Atlanta,GA,30301 +148747,USB-C Charging Cable,1,11.95,2019-01-02 17:12:00,482 Spruce St, Los Angeles,CA,90001 +148748,Lightning Charging Cable,1,14.95,2019-01-02 10:24:00,636 2nd St, Portland,OR,97035 +148749,Google Phone,1,600.0,2019-01-09 13:47:00,587 Dogwood St, Boston,MA,02215 +148750,Wired Headphones,1,11.99,2019-01-08 20:00:00,842 Hickory St, San Francisco,CA,94016 +148751,Apple Airpods Headphones,1,150.0,2019-01-06 21:06:00,543 6th St, San Francisco,CA,94016 +148752,Apple Airpods Headphones,1,150.0,2019-01-27 10:54:00,510 5th St, New York City,NY,10001 +148753,Wired Headphones,1,11.99,2019-01-06 12:07:00,457 Lakeview St, San Francisco,CA,94016 +148754,AA Batteries (4-pack),1,3.84,2019-01-12 19:11:00,252 Highland St, Portland,ME,04101 +148755,AAA Batteries (4-pack),1,2.99,2019-01-14 14:46:00,634 Hill St, Atlanta,GA,30301 +148756,USB-C Charging Cable,1,11.95,2019-01-24 15:30:00,993 8th St, New York City,NY,10001 +148757,AA Batteries (4-pack),1,3.84,2019-01-01 14:26:00,810 11th St, Seattle,WA,98101 +148758,Apple Airpods Headphones,1,150.0,2019-01-12 15:48:00,526 Walnut St, Dallas,TX,75001 +148759,Google Phone,1,600.0,2019-01-28 12:31:00,882 Jackson St, Atlanta,GA,30301 +148760,iPhone,1,700.0,2019-01-28 21:51:00,938 Spruce St, Austin,TX,73301 +148760,Wired Headphones,1,11.99,2019-01-28 21:51:00,938 Spruce St, Austin,TX,73301 +148761,ThinkPad Laptop,1,999.99,2019-01-03 06:48:00,995 Dogwood St, San Francisco,CA,94016 +148762,Bose SoundSport Headphones,1,99.99,2019-01-19 15:20:00,337 Church St, Seattle,WA,98101 +148763,USB-C Charging Cable,1,11.95,2019-01-10 13:50:00,358 Walnut St, New York City,NY,10001 +148764,Wired Headphones,1,11.99,2019-01-18 15:24:00,832 West St, San Francisco,CA,94016 +148765,27in FHD Monitor,1,149.99,2019-01-21 18:33:00,259 11th St, San Francisco,CA,94016 +148766,Wired Headphones,1,11.99,2019-01-05 15:13:00,670 Jefferson St, Austin,TX,73301 +148767,Lightning Charging Cable,1,14.95,2019-01-01 16:09:00,145 Lakeview St, Austin,TX,73301 +148768,20in Monitor,1,109.99,2019-01-18 16:14:00,93 Cedar St, New York City,NY,10001 +148769,Lightning Charging Cable,1,14.95,2019-01-05 11:03:00,48 12th St, Los Angeles,CA,90001 +148770,Bose SoundSport Headphones,1,99.99,2019-01-28 12:25:00,711 9th St, San Francisco,CA,94016 +148771,Apple Airpods Headphones,1,150.0,2019-01-07 21:41:00,841 2nd St, Dallas,TX,75001 +148772,AA Batteries (4-pack),1,3.84,2019-01-09 17:11:00,550 5th St, Boston,MA,02215 +148773,27in 4K Gaming Monitor,1,389.99,2019-01-21 22:38:00,727 Main St, San Francisco,CA,94016 +148774,USB-C Charging Cable,1,11.95,2019-01-20 20:20:00,625 Lakeview St, Los Angeles,CA,90001 +148775,USB-C Charging Cable,1,11.95,2019-01-30 19:27:00,382 Lincoln St, Seattle,WA,98101 +148776,USB-C Charging Cable,1,11.95,2019-01-18 09:07:00,430 Park St, Dallas,TX,75001 +148777,Wired Headphones,1,11.99,2019-01-02 20:09:00,358 9th St, San Francisco,CA,94016 +148778,Google Phone,1,600.0,2019-01-10 17:13:00,734 Hill St, Portland,OR,97035 +148779,AAA Batteries (4-pack),2,2.99,2019-01-22 15:01:00,29 Ridge St, Dallas,TX,75001 +148780,Apple Airpods Headphones,1,150.0,2019-01-13 21:53:00,514 Maple St, Boston,MA,02215 +148781,AAA Batteries (4-pack),1,2.99,2019-01-24 20:40:00,368 4th St, Portland,OR,97035 +148782,LG Dryer,1,600.0,2019-01-21 15:23:00,250 Adams St, Austin,TX,73301 +148783,iPhone,1,700.0,2019-01-10 02:02:00,4 Maple St, Boston,MA,02215 +148784,34in Ultrawide Monitor,1,379.99,2019-01-19 20:08:00,334 Willow St, San Francisco,CA,94016 +148785,Lightning Charging Cable,1,14.95,2019-01-28 11:27:00,934 8th St, New York City,NY,10001 +148786,iPhone,1,700.0,2019-01-19 23:41:00,416 Park St, Dallas,TX,75001 +148787,ThinkPad Laptop,1,999.99,2019-01-22 20:18:00,78 Hill St, Atlanta,GA,30301 +148788,Wired Headphones,1,11.99,2019-01-05 20:45:00,713 Park St, Dallas,TX,75001 +148789,Wired Headphones,1,11.99,2019-01-27 20:00:00,358 5th St, Los Angeles,CA,90001 +148790,27in 4K Gaming Monitor,1,389.99,2019-01-27 14:02:00,602 11th St, Los Angeles,CA,90001 +148791,AAA Batteries (4-pack),1,2.99,2019-01-28 20:16:00,915 Forest St, Boston,MA,02215 +148792,Lightning Charging Cable,1,14.95,2019-01-03 07:54:00,175 5th St, San Francisco,CA,94016 +148793,AAA Batteries (4-pack),3,2.99,2019-01-13 19:06:00,373 Cedar St, Los Angeles,CA,90001 +148794,AAA Batteries (4-pack),1,2.99,2019-01-29 14:58:00,510 Main St, Los Angeles,CA,90001 +148795,Google Phone,1,600.0,2019-01-08 11:06:00,255 Hill St, Seattle,WA,98101 +148796,Wired Headphones,1,11.99,2019-01-31 16:13:00,553 Lakeview St, New York City,NY,10001 +148797,LG Washing Machine,1,600.0,2019-01-18 21:44:00,586 North St, San Francisco,CA,94016 +148798,AA Batteries (4-pack),1,3.84,2019-01-02 13:46:00,978 14th St, Atlanta,GA,30301 +148799,Apple Airpods Headphones,1,150.0,2019-01-13 10:35:00,546 12th St, Seattle,WA,98101 +148800,Wired Headphones,1,11.99,2019-01-12 14:04:00,387 Ridge St, San Francisco,CA,94016 +148801,Apple Airpods Headphones,1,150.0,2019-01-17 11:57:00,173 Spruce St, Boston,MA,02215 +148802,Flatscreen TV,1,300.0,2019-01-31 12:56:00,105 Highland St, Atlanta,GA,30301 +148803,Macbook Pro Laptop,1,1700.0,2019-01-23 18:25:00,258 4th St, New York City,NY,10001 +148804,Wired Headphones,1,11.99,2019-01-19 10:49:00,545 Hill St, Portland,OR,97035 +148805,20in Monitor,1,109.99,2019-01-13 14:14:00,826 North St, New York City,NY,10001 +148806,Flatscreen TV,1,300.0,2019-01-15 19:14:00,720 Sunset St, Portland,OR,97035 +148807,Google Phone,1,600.0,2019-01-09 09:27:00,598 Sunset St, Los Angeles,CA,90001 +148808,USB-C Charging Cable,2,11.95,2019-01-09 17:44:00,61 Center St, New York City,NY,10001 +148809,iPhone,1,700.0,2019-01-27 21:11:00,636 Washington St, Los Angeles,CA,90001 +148810,AA Batteries (4-pack),1,3.84,2019-01-28 20:46:00,810 Park St, Boston,MA,02215 +148811,USB-C Charging Cable,1,11.95,2019-01-02 17:53:00,703 7th St, Atlanta,GA,30301 +148812,Lightning Charging Cable,1,14.95,2019-01-31 18:27:00,188 7th St, Austin,TX,73301 +148813,Wired Headphones,1,11.99,2019-01-04 08:34:00,940 Jackson St, Portland,OR,97035 +148814,USB-C Charging Cable,1,11.95,2019-01-16 22:35:00,842 Main St, Dallas,TX,75001 +148815,Lightning Charging Cable,1,14.95,2019-01-05 14:49:00,20 North St, New York City,NY,10001 +148815,AAA Batteries (4-pack),4,2.99,2019-01-05 14:49:00,20 North St, New York City,NY,10001 +148816,Google Phone,1,600.0,2019-01-05 10:39:00,759 Forest St, San Francisco,CA,94016 +148817,Lightning Charging Cable,1,14.95,2019-01-20 10:00:00,655 10th St, Austin,TX,73301 +148818,iPhone,1,700.0,2019-01-23 07:51:00,109 Maple St, Austin,TX,73301 +148819,AA Batteries (4-pack),1,3.84,2019-01-06 15:37:00,724 8th St, San Francisco,CA,94016 +148820,USB-C Charging Cable,1,11.95,2019-01-26 09:29:00,119 Ridge St, Los Angeles,CA,90001 +148820,Wired Headphones,1,11.99,2019-01-26 09:29:00,119 Ridge St, Los Angeles,CA,90001 +148821,Apple Airpods Headphones,1,150.0,2019-01-31 16:38:00,979 Meadow St, Atlanta,GA,30301 +148822,USB-C Charging Cable,1,11.95,2019-01-25 20:07:00,376 Cedar St, Seattle,WA,98101 +148823,USB-C Charging Cable,1,11.95,2019-01-20 16:33:00,948 Spruce St, Portland,OR,97035 +148824,USB-C Charging Cable,1,11.95,2019-01-23 07:22:00,836 Main St, Dallas,TX,75001 +148825,AA Batteries (4-pack),2,3.84,2019-01-10 19:26:00,10 2nd St, San Francisco,CA,94016 +148826,AAA Batteries (4-pack),1,2.99,2019-01-13 17:40:00,628 8th St, San Francisco,CA,94016 +148827,AA Batteries (4-pack),1,3.84,2019-01-20 12:44:00,692 12th St, Austin,TX,73301 +148828,USB-C Charging Cable,1,11.95,2019-01-03 14:15:00,936 Madison St, Atlanta,GA,30301 +148829,Bose SoundSport Headphones,1,99.99,2019-01-01 15:25:00,899 Highland St, San Francisco,CA,94016 +148830,34in Ultrawide Monitor,1,379.99,2019-01-17 23:45:00,597 8th St, San Francisco,CA,94016 +148831,AA Batteries (4-pack),2,3.84,2019-01-12 12:49:00,912 Forest St, San Francisco,CA,94016 +148832,34in Ultrawide Monitor,1,379.99,2019-01-22 12:09:00,192 Meadow St, Los Angeles,CA,90001 +148833,Wired Headphones,1,11.99,2019-01-28 23:34:00,19 South St, Boston,MA,02215 +148834,USB-C Charging Cable,1,11.95,2019-01-03 18:51:00,520 Highland St, New York City,NY,10001 +148835,AA Batteries (4-pack),2,3.84,2019-01-19 09:55:00,906 4th St, Atlanta,GA,30301 +148836,Macbook Pro Laptop,1,1700.0,2019-01-27 20:41:00,879 Hickory St, Portland,OR,97035 +148837,USB-C Charging Cable,1,11.95,2019-01-06 12:09:00,6 Lincoln St, San Francisco,CA,94016 +148838,20in Monitor,1,109.99,2019-01-03 19:09:00,269 2nd St, New York City,NY,10001 +148839,27in FHD Monitor,1,149.99,2019-01-06 19:23:00,35 Lincoln St, Boston,MA,02215 +148840,Flatscreen TV,1,300.0,2019-01-30 00:45:00,914 Meadow St, Boston,MA,02215 +148841,AAA Batteries (4-pack),1,2.99,2019-01-10 14:43:00,827 12th St, Boston,MA,02215 +148842,Bose SoundSport Headphones,1,99.99,2019-01-23 12:56:00,634 Elm St, Boston,MA,02215 +148843,Wired Headphones,1,11.99,2019-01-10 12:55:00,719 Highland St, Portland,OR,97035 +148844,iPhone,1,700.0,2019-01-11 17:16:00,711 River St, New York City,NY,10001 +148845,Apple Airpods Headphones,1,150.0,2019-01-13 23:21:00,635 Johnson St, San Francisco,CA,94016 +148846,Wired Headphones,1,11.99,2019-01-03 12:55:00,86 North St, Dallas,TX,75001 +148847,USB-C Charging Cable,1,11.95,2019-01-11 21:18:00,506 2nd St, Dallas,TX,75001 +148848,34in Ultrawide Monitor,1,379.99,2019-01-07 12:51:00,624 Wilson St, New York City,NY,10001 +148849,34in Ultrawide Monitor,1,379.99,2019-01-15 21:45:00,311 Washington St, Seattle,WA,98101 +148850,Wired Headphones,1,11.99,2019-01-18 13:16:00,448 Church St, Boston,MA,02215 +148851,Apple Airpods Headphones,1,150.0,2019-01-29 07:48:00,67 Maple St, San Francisco,CA,94016 +148852,Wired Headphones,1,11.99,2019-01-05 04:14:00,718 13th St, Portland,OR,97035 +148853,Apple Airpods Headphones,1,150.0,2019-01-04 23:05:00,801 14th St, Austin,TX,73301 +148854,Apple Airpods Headphones,1,150.0,2019-01-01 18:31:00,763 1st St, Atlanta,GA,30301 +148855,Lightning Charging Cable,1,14.95,2019-01-23 19:19:00,482 Maple St, Boston,MA,02215 +148856,Bose SoundSport Headphones,1,99.99,2019-01-03 01:23:00,966 Forest St, Atlanta,GA,30301 +148857,Apple Airpods Headphones,1,150.0,2019-01-19 10:17:00,740 Walnut St, Boston,MA,02215 +148858,AAA Batteries (4-pack),4,2.99,2019-01-28 23:09:00,266 North St, New York City,NY,10001 +148859,Wired Headphones,1,11.99,2019-01-13 22:24:00,904 2nd St, Los Angeles,CA,90001 +148860,Wired Headphones,1,11.99,2019-01-24 23:31:00,944 11th St, Dallas,TX,75001 +148861,iPhone,1,700.0,2019-01-20 00:52:00,200 Cherry St, Los Angeles,CA,90001 +148861,Lightning Charging Cable,1,14.95,2019-01-20 00:52:00,200 Cherry St, Los Angeles,CA,90001 +148862,AA Batteries (4-pack),1,3.84,2019-01-22 16:50:00,429 Highland St, Los Angeles,CA,90001 +148863,Flatscreen TV,1,300.0,2019-01-25 23:54:00,785 Walnut St, Boston,MA,02215 +148864,Bose SoundSport Headphones,1,99.99,2019-01-24 22:39:00,263 12th St, New York City,NY,10001 +148865,AA Batteries (4-pack),1,3.84,2019-01-03 16:46:00,855 5th St, Seattle,WA,98101 +148866,AAA Batteries (4-pack),2,2.99,2019-01-01 13:25:00,213 6th St, Los Angeles,CA,90001 +148867,USB-C Charging Cable,1,11.95,2019-01-20 13:42:00,692 Lake St, Austin,TX,73301 +148868,Apple Airpods Headphones,1,150.0,2019-01-25 20:00:00,460 Willow St, Austin,TX,73301 +148869,Wired Headphones,1,11.99,2019-01-27 07:20:00,990 Highland St, Los Angeles,CA,90001 +148870,Apple Airpods Headphones,1,150.0,2019-01-04 19:20:00,952 Jefferson St, Los Angeles,CA,90001 +148871,USB-C Charging Cable,1,11.95,2019-01-15 20:13:00,895 7th St, Los Angeles,CA,90001 +148872,27in FHD Monitor,1,149.99,2019-01-19 10:44:00,307 10th St, Austin,TX,73301 +148873,Wired Headphones,1,11.99,2019-01-14 17:58:00,152 12th St, New York City,NY,10001 +148874,Wired Headphones,1,11.99,2019-01-20 10:25:00,578 Main St, Atlanta,GA,30301 +148875,USB-C Charging Cable,1,11.95,2019-01-03 11:20:00,624 6th St, Portland,OR,97035 +148876,AAA Batteries (4-pack),1,2.99,2019-01-22 21:44:00,778 Jefferson St, Boston,MA,02215 +148877,Apple Airpods Headphones,1,150.0,2019-01-30 09:30:00,809 6th St, Boston,MA,02215 +148878,Wired Headphones,1,11.99,2019-01-08 12:53:00,369 Elm St, San Francisco,CA,94016 +148879,Flatscreen TV,1,300.0,2019-01-10 19:50:00,228 Highland St, Portland,ME,04101 +148880,AA Batteries (4-pack),1,3.84,2019-01-25 21:05:00,514 Ridge St, Los Angeles,CA,90001 +148881,AAA Batteries (4-pack),3,2.99,2019-01-06 22:10:00,959 Lake St, New York City,NY,10001 +148882,Apple Airpods Headphones,1,150.0,2019-01-31 12:28:00,919 Maple St, Portland,OR,97035 +148883,AAA Batteries (4-pack),1,2.99,2019-01-23 15:33:00,89 Lake St, Boston,MA,02215 +148884,AAA Batteries (4-pack),1,2.99,2019-01-06 08:23:00,412 13th St, San Francisco,CA,94016 +148885,Apple Airpods Headphones,1,150.0,2019-01-19 05:11:00,908 River St, Los Angeles,CA,90001 +148886,Wired Headphones,1,11.99,2019-01-13 10:31:00,957 Washington St, Dallas,TX,75001 +148887,Apple Airpods Headphones,1,150.0,2019-01-07 08:08:00,941 River St, Portland,OR,97035 +148888,Apple Airpods Headphones,1,150.0,2019-01-23 18:59:00,291 Maple St, Austin,TX,73301 +148889,34in Ultrawide Monitor,1,379.99,2019-01-04 18:02:00,138 Center St, Seattle,WA,98101 +148890,Lightning Charging Cable,1,14.95,2019-01-10 09:13:00,26 South St, Atlanta,GA,30301 +148891,Apple Airpods Headphones,1,150.0,2019-01-28 12:19:00,545 Jackson St, San Francisco,CA,94016 +148892,AA Batteries (4-pack),2,3.84,2019-01-16 18:13:00,924 Spruce St, Boston,MA,02215 +148893,AAA Batteries (4-pack),1,2.99,2019-01-18 22:05:00,303 11th St, Portland,OR,97035 +148894,USB-C Charging Cable,1,11.95,2019-01-23 11:04:00,632 2nd St, San Francisco,CA,94016 +148895,27in 4K Gaming Monitor,1,389.99,2019-01-27 20:15:00,896 Maple St, San Francisco,CA,94016 +148896,Macbook Pro Laptop,1,1700.0,2019-01-31 17:58:00,835 River St, New York City,NY,10001 +148896,Bose SoundSport Headphones,1,99.99,2019-01-31 17:58:00,835 River St, New York City,NY,10001 +148897,AA Batteries (4-pack),1,3.84,2019-01-22 23:20:00,507 Center St, San Francisco,CA,94016 +148898,USB-C Charging Cable,1,11.95,2019-01-24 20:37:00,82 9th St, Boston,MA,02215 +148899,AAA Batteries (4-pack),1,2.99,2019-01-05 23:01:00,734 Hickory St, San Francisco,CA,94016 +148900,AA Batteries (4-pack),2,3.84,2019-01-19 12:40:00,455 Ridge St, Los Angeles,CA,90001 +148901,AAA Batteries (4-pack),1,2.99,2019-01-13 19:39:00,445 Cedar St, Portland,ME,04101 +148902,AAA Batteries (4-pack),2,2.99,2019-01-16 06:37:00,658 Johnson St, San Francisco,CA,94016 +148903,27in FHD Monitor,1,149.99,2019-01-26 17:27:00,804 Cedar St, Boston,MA,02215 +148904,iPhone,1,700.0,2019-01-24 14:53:00,863 Lincoln St, San Francisco,CA,94016 +148905,USB-C Charging Cable,1,11.95,2019-01-07 11:39:00,445 Sunset St, San Francisco,CA,94016 +148906,USB-C Charging Cable,1,11.95,2019-01-30 10:22:00,675 River St, Los Angeles,CA,90001 +148907,Flatscreen TV,1,300.0,2019-01-23 20:47:00,383 Church St, San Francisco,CA,94016 +148908,Bose SoundSport Headphones,1,99.99,2019-01-25 22:00:00,950 Washington St, New York City,NY,10001 +148909,Flatscreen TV,1,300.0,2019-01-19 13:32:00,799 13th St, Dallas,TX,75001 +148910,Flatscreen TV,1,300.0,2019-01-07 19:42:00,54 Jefferson St, New York City,NY,10001 +148911,20in Monitor,1,109.99,2019-01-30 13:27:00,285 13th St, San Francisco,CA,94016 +148912,Vareebadd Phone,1,400.0,2019-01-30 19:15:00,761 8th St, San Francisco,CA,94016 +148912,USB-C Charging Cable,2,11.95,2019-01-30 19:15:00,761 8th St, San Francisco,CA,94016 +148912,Wired Headphones,1,11.99,2019-01-30 19:15:00,761 8th St, San Francisco,CA,94016 +148913,USB-C Charging Cable,1,11.95,2019-01-23 00:29:00,112 Willow St, Atlanta,GA,30301 +148914,Apple Airpods Headphones,1,150.0,2019-01-19 12:04:00,200 Sunset St, Austin,TX,73301 +148915,Bose SoundSport Headphones,1,99.99,2019-01-31 10:25:00,827 9th St, San Francisco,CA,94016 +148916,AAA Batteries (4-pack),1,2.99,2019-01-13 18:05:00,978 2nd St, San Francisco,CA,94016 +148917,34in Ultrawide Monitor,1,379.99,2019-01-02 21:43:00,517 Sunset St, Austin,TX,73301 +148918,AA Batteries (4-pack),1,3.84,2019-01-12 22:47:00,540 Lake St, Boston,MA,02215 +148919,Lightning Charging Cable,1,14.95,2019-01-26 18:54:00,687 Elm St, Seattle,WA,98101 +148920,Apple Airpods Headphones,1,150.0,2019-01-29 12:48:00,676 Highland St, Boston,MA,02215 +148921,Flatscreen TV,1,300.0,2019-01-12 00:20:00,599 Lincoln St, San Francisco,CA,94016 +148922,Lightning Charging Cable,1,14.95,2019-01-11 21:44:00,30 10th St, Portland,OR,97035 +148923,27in FHD Monitor,1,149.99,2019-01-27 08:59:00,504 Church St, San Francisco,CA,94016 +148924,Lightning Charging Cable,2,14.95,2019-01-14 15:56:00,786 Lincoln St, Atlanta,GA,30301 +148925,Bose SoundSport Headphones,1,99.99,2019-01-21 11:18:00,767 Wilson St, Los Angeles,CA,90001 +148926,Macbook Pro Laptop,1,1700.0,2019-01-28 17:28:00,565 Jefferson St, New York City,NY,10001 +148927,27in FHD Monitor,1,149.99,2019-01-06 21:32:00,615 Highland St, Los Angeles,CA,90001 +148928,Apple Airpods Headphones,1,150.0,2019-01-05 12:01:00,782 11th St, Los Angeles,CA,90001 +148929,20in Monitor,1,109.99,2019-01-15 21:56:00,179 Pine St, Boston,MA,02215 +148930,USB-C Charging Cable,1,11.95,2019-01-09 09:49:00,750 Adams St, Portland,OR,97035 +148931,USB-C Charging Cable,1,11.95,2019-01-28 15:22:00,645 Madison St, San Francisco,CA,94016 +148932,iPhone,1,700.0,2019-01-02 17:30:00,669 Cherry St, San Francisco,CA,94016 +148932,Wired Headphones,1,11.99,2019-01-02 17:30:00,669 Cherry St, San Francisco,CA,94016 +148933,AAA Batteries (4-pack),1,2.99,2019-01-14 23:20:00,387 River St, Boston,MA,02215 +148933,Wired Headphones,1,11.99,2019-01-14 23:20:00,387 River St, Boston,MA,02215 +148934,AA Batteries (4-pack),1,3.84,2019-01-13 11:59:00,805 Park St, Boston,MA,02215 +148935,Apple Airpods Headphones,1,150.0,2019-01-29 08:12:00,123 8th St, San Francisco,CA,94016 +148936,Macbook Pro Laptop,1,1700.0,2019-01-24 16:56:00,128 Cherry St, New York City,NY,10001 +148937,Bose SoundSport Headphones,1,99.99,2019-01-07 19:30:00,978 Jackson St, Austin,TX,73301 +148938,34in Ultrawide Monitor,1,379.99,2019-01-10 20:37:00,654 Jefferson St, Austin,TX,73301 +148939,Bose SoundSport Headphones,1,99.99,2019-01-07 20:52:00,700 Hill St, New York City,NY,10001 +148940,USB-C Charging Cable,1,11.95,2019-01-25 13:39:00,136 2nd St, New York City,NY,10001 +148941,Bose SoundSport Headphones,1,99.99,2019-01-22 10:40:00,283 Washington St, San Francisco,CA,94016 +148942,Lightning Charging Cable,1,14.95,2019-01-31 17:01:00,827 Church St, Los Angeles,CA,90001 +148943,Bose SoundSport Headphones,1,99.99,2019-01-06 22:39:00,828 Main St, Portland,OR,97035 +148944,iPhone,1,700.0,2019-01-07 15:01:00,848 Spruce St, San Francisco,CA,94016 +148944,Lightning Charging Cable,1,14.95,2019-01-07 15:01:00,848 Spruce St, San Francisco,CA,94016 +148945,Google Phone,1,600.0,2019-01-15 14:51:00,65 Hill St, San Francisco,CA,94016 +148946,Flatscreen TV,1,300.0,2019-01-06 01:51:00,717 Chestnut St, Atlanta,GA,30301 +148947,AAA Batteries (4-pack),1,2.99,2019-01-23 07:31:00,468 Pine St, Los Angeles,CA,90001 +148948,iPhone,1,700.0,2019-01-01 20:53:00,926 Forest St, San Francisco,CA,94016 +148948,Lightning Charging Cable,2,14.95,2019-01-01 20:53:00,926 Forest St, San Francisco,CA,94016 +148949,Lightning Charging Cable,1,14.95,2019-01-26 10:05:00,368 Sunset St, Boston,MA,02215 +148950,Wired Headphones,1,11.99,2019-01-08 18:50:00,953 Dogwood St, Seattle,WA,98101 +148951,AA Batteries (4-pack),1,3.84,2019-01-30 21:48:00,450 12th St, New York City,NY,10001 +148952,27in FHD Monitor,1,149.99,2019-01-17 21:17:00,74 West St, Dallas,TX,75001 +148953,USB-C Charging Cable,1,11.95,2019-01-31 09:48:00,121 1st St, Boston,MA,02215 +148954,Apple Airpods Headphones,1,150.0,2019-01-23 09:36:00,381 Park St, San Francisco,CA,94016 +148955,Lightning Charging Cable,1,14.95,2019-01-13 20:02:00,858 Cherry St, New York City,NY,10001 +148956,USB-C Charging Cable,1,11.95,2019-01-16 21:28:00,127 14th St, Los Angeles,CA,90001 +148957,Wired Headphones,2,11.99,2019-01-25 19:31:00,89 South St, San Francisco,CA,94016 +148958,AAA Batteries (4-pack),3,2.99,2019-01-26 13:02:00,329 Washington St, Dallas,TX,75001 +148959,Vareebadd Phone,1,400.0,2019-01-27 17:03:00,915 River St, Boston,MA,02215 +148960,Google Phone,1,600.0,2019-01-26 20:10:00,984 Hickory St, New York City,NY,10001 +148960,USB-C Charging Cable,1,11.95,2019-01-26 20:10:00,984 Hickory St, New York City,NY,10001 +148961,AA Batteries (4-pack),1,3.84,2019-01-26 00:04:00,326 West St, Dallas,TX,75001 +148962,ThinkPad Laptop,1,999.99,2019-01-10 16:04:00,257 10th St, Los Angeles,CA,90001 +148963,AAA Batteries (4-pack),1,2.99,2019-01-02 17:39:00,502 Center St, Boston,MA,02215 +148964,iPhone,1,700.0,2019-01-02 17:04:00,150 Center St, Los Angeles,CA,90001 +148965,Lightning Charging Cable,1,14.95,2019-01-26 19:44:00,235 Madison St, Seattle,WA,98101 +148966,AA Batteries (4-pack),1,3.84,2019-01-27 17:15:00,265 Lake St, San Francisco,CA,94016 +148967,Bose SoundSport Headphones,1,99.99,2019-01-23 09:36:00,507 Jefferson St, Portland,OR,97035 +148968,AA Batteries (4-pack),1,3.84,2019-01-12 13:39:00,364 Main St, Boston,MA,02215 +148969,Macbook Pro Laptop,1,1700.0,2019-01-16 11:09:00,817 Lakeview St, San Francisco,CA,94016 +148970,27in FHD Monitor,1,149.99,2019-01-07 17:08:00,424 Sunset St, Seattle,WA,98101 +148971,Bose SoundSport Headphones,1,99.99,2019-01-22 23:20:00,523 12th St, Dallas,TX,75001 +148971,27in 4K Gaming Monitor,1,389.99,2019-01-22 23:20:00,523 12th St, Dallas,TX,75001 +148972,AAA Batteries (4-pack),1,2.99,2019-01-17 20:59:00,744 Madison St, Los Angeles,CA,90001 +148973,AAA Batteries (4-pack),2,2.99,2019-01-24 12:26:00,881 Forest St, Portland,OR,97035 +148974,27in FHD Monitor,1,149.99,2019-01-22 10:09:00,971 Main St, San Francisco,CA,94016 +148975,ThinkPad Laptop,1,999.99,2019-01-10 10:43:00,793 Forest St, Atlanta,GA,30301 +148976,ThinkPad Laptop,1,999.99,2019-01-07 13:36:00,449 River St, New York City,NY,10001 +148977,AA Batteries (4-pack),1,3.84,2019-01-07 12:35:00,531 Wilson St, Los Angeles,CA,90001 +148978,USB-C Charging Cable,1,11.95,2019-01-01 10:12:00,914 South St, Austin,TX,73301 +148979,Wired Headphones,1,11.99,2019-01-10 07:43:00,891 Johnson St, Los Angeles,CA,90001 +148980,AAA Batteries (4-pack),1,2.99,2019-01-17 14:55:00,83 12th St, San Francisco,CA,94016 +148981,Lightning Charging Cable,1,14.95,2019-01-18 21:23:00,724 Ridge St, San Francisco,CA,94016 +148982,AAA Batteries (4-pack),1,2.99,2019-01-29 22:50:00,670 Elm St, Los Angeles,CA,90001 +148983,Flatscreen TV,1,300.0,2019-01-10 05:02:00,549 Wilson St, Boston,MA,02215 +148984,USB-C Charging Cable,1,11.95,2019-01-08 17:36:00,562 14th St, Boston,MA,02215 +148985,Apple Airpods Headphones,1,150.0,2019-01-31 16:28:00,349 Jefferson St, Atlanta,GA,30301 +148986,Lightning Charging Cable,1,14.95,2019-01-15 22:56:00,786 Lake St, Los Angeles,CA,90001 +148987,AA Batteries (4-pack),1,3.84,2019-02-01 02:16:00,55 Elm St, Atlanta,GA,30301 +148988,LG Washing Machine,1,600.0,2019-01-20 09:14:00,864 13th St, San Francisco,CA,94016 +148989,Wired Headphones,1,11.99,2019-01-30 16:36:00,905 Adams St, New York City,NY,10001 +148990,Wired Headphones,1,11.99,2019-01-13 08:57:00,164 6th St, San Francisco,CA,94016 +148991,Lightning Charging Cable,3,14.95,2019-01-29 05:49:00,12 Jackson St, Los Angeles,CA,90001 +148992,Wired Headphones,1,11.99,2019-01-29 18:02:00,20 Walnut St, Los Angeles,CA,90001 +148993,Apple Airpods Headphones,1,150.0,2019-01-15 13:22:00,609 Walnut St, San Francisco,CA,94016 +148994,27in FHD Monitor,1,149.99,2019-01-25 10:42:00,354 Adams St, Austin,TX,73301 +148995,Wired Headphones,1,11.99,2019-01-28 10:39:00,139 2nd St, New York City,NY,10001 +148996,AAA Batteries (4-pack),1,2.99,2019-01-29 20:09:00,672 4th St, San Francisco,CA,94016 +148997,ThinkPad Laptop,1,999.99,2019-01-25 20:30:00,655 Washington St, San Francisco,CA,94016 +148998,AA Batteries (4-pack),1,3.84,2019-01-27 08:22:00,237 Highland St, New York City,NY,10001 +148999,Apple Airpods Headphones,1,150.0,2019-01-25 17:23:00,797 Jackson St, New York City,NY,10001 +149000,USB-C Charging Cable,2,11.95,2019-01-04 21:28:00,320 9th St, San Francisco,CA,94016 +149001,ThinkPad Laptop,1,999.99,2019-01-01 18:49:00,43 Meadow St, Los Angeles,CA,90001 +149002,USB-C Charging Cable,1,11.95,2019-01-07 17:10:00,225 7th St, San Francisco,CA,94016 +149003,Lightning Charging Cable,1,14.95,2019-01-16 00:59:00,580 Lake St, Seattle,WA,98101 +149004,USB-C Charging Cable,1,11.95,2019-01-25 12:21:00,872 Madison St, Boston,MA,02215 +149005,Lightning Charging Cable,1,14.95,2019-01-04 20:13:00,462 9th St, San Francisco,CA,94016 +149006,ThinkPad Laptop,1,999.99,2019-01-19 12:14:00,125 Lakeview St, Atlanta,GA,30301 +149007,AA Batteries (4-pack),1,3.84,2019-01-05 12:40:00,64 Hill St, Austin,TX,73301 +149008,AAA Batteries (4-pack),1,2.99,2019-01-11 21:04:00,837 Spruce St, San Francisco,CA,94016 +149009,AAA Batteries (4-pack),1,2.99,2019-01-15 15:35:00,757 Main St, Austin,TX,73301 +149010,AA Batteries (4-pack),1,3.84,2019-01-29 13:03:00,760 13th St, San Francisco,CA,94016 +149011,27in 4K Gaming Monitor,1,389.99,2019-01-21 21:41:00,931 Wilson St, Portland,OR,97035 +149012,USB-C Charging Cable,1,11.95,2019-01-25 09:00:00,284 Cherry St, San Francisco,CA,94016 +149013,Wired Headphones,1,11.99,2019-01-16 21:20:00,552 Chestnut St, Austin,TX,73301 +149014,AAA Batteries (4-pack),1,2.99,2019-01-05 21:30:00,616 Center St, New York City,NY,10001 +149015,USB-C Charging Cable,1,11.95,2019-01-25 16:34:00,3 Lakeview St, Austin,TX,73301 +149016,Wired Headphones,1,11.99,2019-01-05 07:56:00,719 Center St, Portland,OR,97035 +149017,Wired Headphones,1,11.99,2019-01-07 20:08:00,456 Park St, Austin,TX,73301 +149018,AA Batteries (4-pack),1,3.84,2019-01-29 14:23:00,319 Washington St, Boston,MA,02215 +149019,Macbook Pro Laptop,1,1700.0,2019-01-13 08:45:00,518 5th St, Los Angeles,CA,90001 +149020,AA Batteries (4-pack),1,3.84,2019-01-16 12:09:00,499 Wilson St, San Francisco,CA,94016 +149021,Lightning Charging Cable,1,14.95,2019-01-04 13:08:00,347 Johnson St, Atlanta,GA,30301 +149022,Bose SoundSport Headphones,1,99.99,2019-01-10 16:48:00,207 Willow St, San Francisco,CA,94016 +149023,AAA Batteries (4-pack),1,2.99,2019-01-18 20:21:00,257 4th St, Austin,TX,73301 +149024,USB-C Charging Cable,1,11.95,2019-01-02 09:57:00,395 Cedar St, San Francisco,CA,94016 +149025,Lightning Charging Cable,1,14.95,2019-01-19 16:21:00,599 Jefferson St, New York City,NY,10001 +149026,Wired Headphones,2,11.99,2019-01-20 22:31:00,12 14th St, Dallas,TX,75001 +149027,AAA Batteries (4-pack),1,2.99,2019-01-24 19:59:00,809 Lake St, Portland,OR,97035 +149028,Lightning Charging Cable,1,14.95,2019-01-29 11:58:00,416 Main St, New York City,NY,10001 +149029,Bose SoundSport Headphones,1,99.99,2019-01-04 00:29:00,435 1st St, Los Angeles,CA,90001 +149030,27in 4K Gaming Monitor,1,389.99,2019-01-27 16:24:00,476 6th St, San Francisco,CA,94016 +149031,Bose SoundSport Headphones,1,99.99,2019-01-30 21:18:00,933 5th St, Atlanta,GA,30301 +149032,Apple Airpods Headphones,1,150.0,2019-01-11 11:11:00,797 West St, Los Angeles,CA,90001 +149033,Wired Headphones,1,11.99,2019-01-18 22:17:00,160 Jackson St, Seattle,WA,98101 +149034,AAA Batteries (4-pack),1,2.99,2019-01-10 18:50:00,395 8th St, Portland,OR,97035 +149035,Lightning Charging Cable,1,14.95,2019-01-13 13:45:00,906 Adams St, New York City,NY,10001 +149036,AA Batteries (4-pack),1,3.84,2019-01-24 08:39:00,764 Meadow St, Los Angeles,CA,90001 +149036,Flatscreen TV,1,300.0,2019-01-24 08:39:00,764 Meadow St, Los Angeles,CA,90001 +149037,34in Ultrawide Monitor,1,379.99,2019-01-18 10:41:00,271 Washington St, Seattle,WA,98101 +149038,AA Batteries (4-pack),1,3.84,2019-01-18 12:13:00,47 9th St, Los Angeles,CA,90001 +149039,Google Phone,1,600.0,2019-01-09 16:27:00,429 Highland St, Seattle,WA,98101 +149040,AA Batteries (4-pack),1,3.84,2019-01-26 17:16:00,193 Walnut St, Atlanta,GA,30301 +149041,USB-C Charging Cable,1,11.95,2019-01-29 15:42:00,237 Washington St, San Francisco,CA,94016 +149042,27in 4K Gaming Monitor,1,389.99,2019-01-06 11:42:00,701 River St, San Francisco,CA,94016 +149043,AA Batteries (4-pack),1,3.84,2019-01-30 11:30:00,163 Lakeview St, San Francisco,CA,94016 +149044,27in 4K Gaming Monitor,1,389.99,2019-01-24 11:26:00,196 Main St, Portland,OR,97035 +149044,Lightning Charging Cable,1,14.95,2019-01-24 11:26:00,196 Main St, Portland,OR,97035 +149045,20in Monitor,1,109.99,2019-01-21 22:04:00,958 Lake St, Dallas,TX,75001 +149046,Bose SoundSport Headphones,1,99.99,2019-01-24 21:36:00,694 10th St, Austin,TX,73301 +149047,Lightning Charging Cable,1,14.95,2019-01-11 11:16:00,233 Chestnut St, Boston,MA,02215 +149048,Wired Headphones,1,11.99,2019-01-24 01:40:00,943 11th St, San Francisco,CA,94016 +149049,Bose SoundSport Headphones,1,99.99,2019-01-18 22:47:00,259 14th St, San Francisco,CA,94016 +149050,Google Phone,1,600.0,2019-01-23 00:03:00,726 Center St, San Francisco,CA,94016 +149051,USB-C Charging Cable,1,11.95,2019-01-21 17:40:00,358 Sunset St, Los Angeles,CA,90001 +149052,Apple Airpods Headphones,1,150.0,2019-01-14 08:48:00,530 1st St, Atlanta,GA,30301 +149053,ThinkPad Laptop,1,999.99,2019-01-08 08:46:00,741 Madison St, Seattle,WA,98101 +149054,AAA Batteries (4-pack),2,2.99,2019-01-18 18:53:00,499 1st St, San Francisco,CA,94016 +149055,Wired Headphones,1,11.99,2019-01-07 11:26:00,42 9th St, Boston,MA,02215 +149056,27in 4K Gaming Monitor,1,389.99,2019-01-11 16:46:00,902 North St, Dallas,TX,75001 +149057,Lightning Charging Cable,1,14.95,2019-01-03 10:16:00,478 12th St, San Francisco,CA,94016 +149058,Wired Headphones,1,11.99,2019-01-28 11:25:00,470 7th St, San Francisco,CA,94016 +149059,Lightning Charging Cable,1,14.95,2019-01-19 11:55:00,464 10th St, Portland,ME,04101 +149060,USB-C Charging Cable,1,11.95,2019-01-07 08:27:00,119 Elm St, Austin,TX,73301 +149061,20in Monitor,1,109.99,2019-01-21 08:23:00,917 Wilson St, San Francisco,CA,94016 +149062,Google Phone,1,600.0,2019-01-05 19:22:00,61 Lake St, Los Angeles,CA,90001 +149063,34in Ultrawide Monitor,1,379.99,2019-01-26 13:39:00,951 12th St, Dallas,TX,75001 +149064,USB-C Charging Cable,1,11.95,2019-01-04 20:15:00,336 Elm St, New York City,NY,10001 +149065,Apple Airpods Headphones,1,150.0,2019-01-03 15:33:00,217 9th St, San Francisco,CA,94016 +149066,iPhone,1,700.0,2019-01-04 11:09:00,800 Willow St, San Francisco,CA,94016 +149067,USB-C Charging Cable,1,11.95,2019-01-21 10:02:00,932 Spruce St, Seattle,WA,98101 +149068,Wired Headphones,1,11.99,2019-01-11 07:30:00,242 Ridge St, Portland,OR,97035 +149069,Apple Airpods Headphones,1,150.0,2019-01-20 09:17:00,196 Dogwood St, Portland,OR,97035 +149070,Google Phone,1,600.0,2019-01-17 10:27:00,468 7th St, San Francisco,CA,94016 +149071,Macbook Pro Laptop,1,1700.0,2019-01-13 10:53:00,941 West St, Los Angeles,CA,90001 +149072,Macbook Pro Laptop,1,1700.0,2019-01-07 13:51:00,589 2nd St, New York City,NY,10001 +149073,USB-C Charging Cable,1,11.95,2019-01-13 20:20:00,655 Forest St, Portland,OR,97035 +149074,AA Batteries (4-pack),1,3.84,2019-01-28 12:19:00,937 Forest St, Atlanta,GA,30301 +149075,27in FHD Monitor,1,149.99,2019-01-20 19:28:00,185 River St, Dallas,TX,75001 +149076,AA Batteries (4-pack),1,3.84,2019-01-08 19:39:00,247 Lincoln St, San Francisco,CA,94016 +149077,Apple Airpods Headphones,1,150.0,2019-01-10 14:29:00,913 Meadow St, Dallas,TX,75001 +149078,AAA Batteries (4-pack),2,2.99,2019-01-29 15:26:00,478 Hill St, New York City,NY,10001 +149079,34in Ultrawide Monitor,1,379.99,2019-01-22 13:33:00,734 North St, Portland,OR,97035 +149080,Wired Headphones,1,11.99,2019-01-29 09:35:00,80 Highland St, Seattle,WA,98101 +149081,AA Batteries (4-pack),1,3.84,2019-01-30 11:54:00,28 Adams St, Los Angeles,CA,90001 +149081,Apple Airpods Headphones,1,150.0,2019-01-30 11:54:00,28 Adams St, Los Angeles,CA,90001 +149082,Apple Airpods Headphones,1,150.0,2019-01-09 17:02:00,220 Madison St, Los Angeles,CA,90001 +149083,Vareebadd Phone,1,400.0,2019-01-27 13:09:00,887 8th St, New York City,NY,10001 +149084,27in 4K Gaming Monitor,1,389.99,2019-01-17 18:20:00,449 4th St, Portland,OR,97035 +149085,Bose SoundSport Headphones,1,99.99,2019-01-28 21:09:00,366 Pine St, Seattle,WA,98101 +149086,AA Batteries (4-pack),4,3.84,2019-01-13 07:29:00,713 West St, Dallas,TX,75001 +149087,AAA Batteries (4-pack),2,2.99,2019-01-16 22:02:00,227 Willow St, New York City,NY,10001 +149088,AAA Batteries (4-pack),1,2.99,2019-01-27 22:25:00,311 Washington St, Austin,TX,73301 +149089,Bose SoundSport Headphones,1,99.99,2019-01-24 10:54:00,266 6th St, Dallas,TX,75001 +149090,USB-C Charging Cable,1,11.95,2019-01-15 20:42:00,571 1st St, New York City,NY,10001 +149091,Apple Airpods Headphones,1,150.0,2019-01-02 22:36:00,653 Main St, San Francisco,CA,94016 +149092,USB-C Charging Cable,1,11.95,2019-01-20 07:44:00,718 Walnut St, New York City,NY,10001 +149093,Macbook Pro Laptop,1,1700.0,2019-01-09 21:03:00,829 River St, Boston,MA,02215 +149094,Vareebadd Phone,1,400.0,2019-01-02 23:06:00,682 Pine St, Seattle,WA,98101 +149095,27in FHD Monitor,1,149.99,2019-01-22 14:08:00,220 Spruce St, Los Angeles,CA,90001 +149096,AA Batteries (4-pack),1,3.84,2019-01-08 20:59:00,847 Chestnut St, New York City,NY,10001 +149097,USB-C Charging Cable,1,11.95,2019-01-13 12:12:00,773 Cherry St, Seattle,WA,98101 +149098,Lightning Charging Cable,1,14.95,2019-01-18 19:41:00,797 8th St, Atlanta,GA,30301 +149099,Apple Airpods Headphones,1,150.0,2019-01-12 14:50:00,500 4th St, Los Angeles,CA,90001 +149100,USB-C Charging Cable,1,11.95,2019-01-22 13:18:00,288 13th St, Austin,TX,73301 +149101,34in Ultrawide Monitor,1,379.99,2019-01-29 20:27:00,198 Meadow St, Austin,TX,73301 +149102,USB-C Charging Cable,1,11.95,2019-01-06 22:48:00,3 7th St, Dallas,TX,75001 +149103,Apple Airpods Headphones,1,150.0,2019-01-08 07:55:00,975 Hickory St, New York City,NY,10001 +149104,USB-C Charging Cable,1,11.95,2019-01-17 18:15:00,706 Center St, Atlanta,GA,30301 +149105,Bose SoundSport Headphones,1,99.99,2019-01-20 17:54:00,697 Center St, Dallas,TX,75001 +149106,ThinkPad Laptop,1,999.99,2019-01-03 09:59:00,653 Hill St, Austin,TX,73301 +149107,iPhone,1,700.0,2019-01-05 19:45:00,274 Cedar St, San Francisco,CA,94016 +149108,Google Phone,1,600.0,2019-01-28 13:11:00,267 Ridge St, San Francisco,CA,94016 +149109,iPhone,1,700.0,2019-01-19 11:38:00,60 6th St, Boston,MA,02215 +149110,Bose SoundSport Headphones,1,99.99,2019-01-14 21:32:00,81 Church St, New York City,NY,10001 +149111,AAA Batteries (4-pack),1,2.99,2019-01-29 22:54:00,567 Wilson St, Los Angeles,CA,90001 +149112,AA Batteries (4-pack),3,3.84,2019-01-21 14:50:00,516 Willow St, New York City,NY,10001 +149113,Macbook Pro Laptop,1,1700.0,2019-01-08 08:39:00,122 Wilson St, San Francisco,CA,94016 +149114,AAA Batteries (4-pack),1,2.99,2019-01-07 17:43:00,648 Cherry St, New York City,NY,10001 +149115,USB-C Charging Cable,2,11.95,2019-01-21 17:34:00,524 1st St, San Francisco,CA,94016 +149116,USB-C Charging Cable,1,11.95,2019-01-20 11:58:00,77 Wilson St, San Francisco,CA,94016 +149117,USB-C Charging Cable,1,11.95,2019-01-17 20:09:00,102 Pine St, San Francisco,CA,94016 +149118,Wired Headphones,1,11.99,2019-01-16 19:53:00,664 Meadow St, San Francisco,CA,94016 +149119,AA Batteries (4-pack),1,3.84,2019-01-16 20:31:00,951 Hickory St, Portland,ME,04101 +149120,20in Monitor,1,109.99,2019-01-23 09:29:00,200 14th St, Dallas,TX,75001 +149121,AAA Batteries (4-pack),2,2.99,2019-01-23 22:13:00,324 Hill St, Boston,MA,02215 +149122,Lightning Charging Cable,1,14.95,2019-01-04 08:22:00,794 Adams St, New York City,NY,10001 +149123,34in Ultrawide Monitor,1,379.99,2019-01-22 16:07:00,776 Sunset St, Portland,ME,04101 +149124,AAA Batteries (4-pack),2,2.99,2019-01-12 17:33:00,582 Lake St, New York City,NY,10001 +149125,Google Phone,1,600.0,2019-01-10 20:58:00,47 2nd St, Atlanta,GA,30301 +149125,Bose SoundSport Headphones,1,99.99,2019-01-10 20:58:00,47 2nd St, Atlanta,GA,30301 +149126,20in Monitor,1,109.99,2019-01-09 21:50:00,124 9th St, Dallas,TX,75001 +149127,AA Batteries (4-pack),1,3.84,2019-01-26 12:25:00,111 Hickory St, Dallas,TX,75001 +149128,AAA Batteries (4-pack),2,2.99,2019-01-26 17:33:00,752 Lakeview St, San Francisco,CA,94016 +149129,20in Monitor,1,109.99,2019-01-21 18:18:00,219 Jackson St, New York City,NY,10001 +149130,Flatscreen TV,1,300.0,2019-01-21 12:58:00,218 Lake St, Seattle,WA,98101 +149131,Wired Headphones,2,11.99,2019-01-30 15:31:00,114 4th St, Dallas,TX,75001 +149132,AA Batteries (4-pack),1,3.84,2019-01-26 17:06:00,668 Wilson St, Atlanta,GA,30301 +149133,AAA Batteries (4-pack),3,2.99,2019-01-02 15:04:00,561 Jackson St, Los Angeles,CA,90001 +149134,Vareebadd Phone,1,400.0,2019-01-14 16:43:00,821 West St, Los Angeles,CA,90001 +149134,USB-C Charging Cable,1,11.95,2019-01-14 16:43:00,821 West St, Los Angeles,CA,90001 +149134,Wired Headphones,1,11.99,2019-01-14 16:43:00,821 West St, Los Angeles,CA,90001 +149135,AA Batteries (4-pack),1,3.84,2019-01-27 14:07:00,780 Wilson St, Seattle,WA,98101 +149136,34in Ultrawide Monitor,1,379.99,2019-01-24 16:36:00,269 Highland St, New York City,NY,10001 +149137,AA Batteries (4-pack),2,3.84,2019-01-30 21:23:00,151 South St, San Francisco,CA,94016 +149138,AAA Batteries (4-pack),1,2.99,2019-01-28 17:55:00,992 Pine St, San Francisco,CA,94016 +149139,ThinkPad Laptop,1,999.99,2019-01-27 08:41:00,215 Church St, Portland,OR,97035 +149140,AA Batteries (4-pack),1,3.84,2019-01-19 18:19:00,288 Highland St, Seattle,WA,98101 +149141,Bose SoundSport Headphones,1,99.99,2019-01-13 01:25:00,413 Lincoln St, San Francisco,CA,94016 +149142,Flatscreen TV,1,300.0,2019-01-25 18:43:00,18 9th St, Boston,MA,02215 +149143,USB-C Charging Cable,1,11.95,2019-01-05 13:27:00,561 Jefferson St, San Francisco,CA,94016 +149144,Apple Airpods Headphones,1,150.0,2019-01-12 19:46:00,626 Hickory St, New York City,NY,10001 +149145,USB-C Charging Cable,1,11.95,2019-01-22 14:51:00,142 Hill St, San Francisco,CA,94016 +149146,LG Washing Machine,1,600.0,2019-01-26 14:44:00,652 10th St, Los Angeles,CA,90001 +149147,27in 4K Gaming Monitor,1,389.99,2019-01-16 15:55:00,648 Lake St, San Francisco,CA,94016 +149148,Flatscreen TV,1,300.0,2019-01-05 22:05:00,835 Cedar St, San Francisco,CA,94016 +149149,Lightning Charging Cable,1,14.95,2019-01-12 12:30:00,180 1st St, Boston,MA,02215 +149150,iPhone,1,700.0,2019-01-21 11:54:00,463 Spruce St, San Francisco,CA,94016 +149151,ThinkPad Laptop,1,999.99,2019-01-05 13:57:00,148 Madison St, Boston,MA,02215 +149152,ThinkPad Laptop,1,999.99,2019-01-28 18:44:00,969 Lake St, Dallas,TX,75001 +149153,AAA Batteries (4-pack),1,2.99,2019-01-18 22:22:00,604 Cherry St, Boston,MA,02215 +149154,Wired Headphones,1,11.99,2019-01-20 00:18:00,779 Washington St, Seattle,WA,98101 +149155,AAA Batteries (4-pack),1,2.99,2019-01-26 22:19:00,358 North St, Los Angeles,CA,90001 +149156,AA Batteries (4-pack),1,3.84,2019-01-06 01:50:00,587 Center St, Atlanta,GA,30301 +149157,AAA Batteries (4-pack),2,2.99,2019-01-09 21:43:00,488 Wilson St, San Francisco,CA,94016 +149158,AAA Batteries (4-pack),1,2.99,2019-01-28 15:50:00,233 Wilson St, New York City,NY,10001 +149159,USB-C Charging Cable,1,11.95,2019-01-25 14:43:00,144 8th St, Boston,MA,02215 +149160,27in FHD Monitor,1,149.99,2019-01-26 19:45:00,322 Washington St, San Francisco,CA,94016 +149161,USB-C Charging Cable,1,11.95,2019-01-13 21:30:00,938 Cherry St, San Francisco,CA,94016 +149162,USB-C Charging Cable,1,11.95,2019-01-10 13:25:00,56 Ridge St, Boston,MA,02215 +149163,Lightning Charging Cable,1,14.95,2019-01-01 15:25:00,204 Chestnut St, Seattle,WA,98101 +149164,iPhone,1,700.0,2019-01-21 17:29:00,954 Jefferson St, San Francisco,CA,94016 +149165,ThinkPad Laptop,1,999.99,2019-01-11 23:09:00,705 Pine St, Dallas,TX,75001 +149166,Lightning Charging Cable,1,14.95,2019-01-30 21:45:00,712 6th St, Los Angeles,CA,90001 +149167,AAA Batteries (4-pack),1,2.99,2019-01-21 15:04:00,143 Church St, Portland,OR,97035 +149168,AA Batteries (4-pack),1,3.84,2019-01-27 19:20:00,817 9th St, New York City,NY,10001 +149169,USB-C Charging Cable,1,11.95,2019-01-14 09:06:00,629 Walnut St, San Francisco,CA,94016 +149170,27in 4K Gaming Monitor,1,389.99,2019-01-07 19:18:00,873 Forest St, Atlanta,GA,30301 +149171,USB-C Charging Cable,1,11.95,2019-01-06 14:42:00,664 Forest St, Seattle,WA,98101 +149172,Bose SoundSport Headphones,1,99.99,2019-01-11 11:17:00,788 Walnut St, San Francisco,CA,94016 +149173,27in FHD Monitor,1,149.99,2019-01-02 14:54:00,377 13th St, Boston,MA,02215 +149174,Apple Airpods Headphones,1,150.0,2019-01-29 20:46:00,788 Sunset St, Portland,OR,97035 +149175,Apple Airpods Headphones,1,150.0,2019-01-21 08:25:00,594 1st St, Boston,MA,02215 +149176,Bose SoundSport Headphones,1,99.99,2019-01-06 11:31:00,762 8th St, New York City,NY,10001 +149177,USB-C Charging Cable,1,11.95,2019-01-06 15:07:00,694 Sunset St, San Francisco,CA,94016 +149178,AA Batteries (4-pack),1,3.84,2019-01-04 00:57:00,459 Meadow St, Seattle,WA,98101 +149179,USB-C Charging Cable,1,11.95,2019-01-17 21:44:00,896 5th St, Los Angeles,CA,90001 +149180,USB-C Charging Cable,1,11.95,2019-01-03 14:55:00,294 Highland St, New York City,NY,10001 +149181,ThinkPad Laptop,1,999.99,2019-01-06 13:22:00,613 Elm St, San Francisco,CA,94016 +149182,27in FHD Monitor,1,149.99,2019-01-30 18:25:00,806 Forest St, Boston,MA,02215 +149183,Google Phone,1,600.0,2019-01-16 09:02:00,150 Spruce St, New York City,NY,10001 +149184,Bose SoundSport Headphones,1,99.99,2019-01-28 21:40:00,519 Lincoln St, Los Angeles,CA,90001 +149185,AA Batteries (4-pack),1,3.84,2019-01-21 10:30:00,224 14th St, Dallas,TX,75001 +149186,Bose SoundSport Headphones,1,99.99,2019-01-15 16:34:00,989 West St, Boston,MA,02215 +149187,Lightning Charging Cable,1,14.95,2019-01-22 11:14:00,794 Cherry St, Los Angeles,CA,90001 +149188,Bose SoundSport Headphones,1,99.99,2019-01-25 13:15:00,906 South St, Dallas,TX,75001 +149189,27in 4K Gaming Monitor,1,389.99,2019-01-05 19:10:00,541 Forest St, San Francisco,CA,94016 +149190,27in FHD Monitor,1,149.99,2019-01-10 12:36:00,354 Meadow St, San Francisco,CA,94016 +149191,Google Phone,1,600.0,2019-01-31 16:00:00,13 Highland St, Austin,TX,73301 +149192,USB-C Charging Cable,1,11.95,2019-01-28 14:30:00,120 Johnson St, San Francisco,CA,94016 +149193,27in FHD Monitor,1,149.99,2019-01-29 16:25:00,734 Madison St, Los Angeles,CA,90001 +149194,Wired Headphones,1,11.99,2019-01-20 18:03:00,295 Sunset St, Atlanta,GA,30301 +149195,USB-C Charging Cable,2,11.95,2019-01-26 17:07:00,581 Sunset St, Boston,MA,02215 +149196,Vareebadd Phone,1,400.0,2019-01-15 15:41:00,41 Lake St, Boston,MA,02215 +149197,Lightning Charging Cable,1,14.95,2019-01-21 13:30:00,122 Hill St, Austin,TX,73301 +149198,AAA Batteries (4-pack),2,2.99,2019-01-13 23:14:00,397 8th St, Portland,OR,97035 +149199,iPhone,1,700.0,2019-01-07 10:34:00,734 Maple St, Portland,OR,97035 +149200,Wired Headphones,1,11.99,2019-01-05 09:13:00,5 Center St, Los Angeles,CA,90001 +149201,20in Monitor,1,109.99,2019-01-03 08:15:00,475 Dogwood St, San Francisco,CA,94016 +149202,Lightning Charging Cable,1,14.95,2019-01-24 16:31:00,964 14th St, San Francisco,CA,94016 +149203,Wired Headphones,1,11.99,2019-01-21 09:05:00,810 Spruce St, Atlanta,GA,30301 +149204,Apple Airpods Headphones,1,150.0,2019-01-17 09:29:00,6 10th St, San Francisco,CA,94016 +149205,AAA Batteries (4-pack),1,2.99,2019-01-22 19:35:00,78 Highland St, Atlanta,GA,30301 +149206,27in 4K Gaming Monitor,1,389.99,2019-01-19 18:09:00,9 Spruce St, Austin,TX,73301 +149207,Lightning Charging Cable,1,14.95,2019-01-17 11:05:00,902 2nd St, San Francisco,CA,94016 +149208,iPhone,1,700.0,2019-01-22 19:07:00,990 Dogwood St, San Francisco,CA,94016 +149209,AAA Batteries (4-pack),1,2.99,2019-01-11 14:25:00,721 Cherry St, Seattle,WA,98101 +149210,Apple Airpods Headphones,1,150.0,2019-01-04 13:21:00,241 Church St, San Francisco,CA,94016 +149211,Vareebadd Phone,1,400.0,2019-01-08 13:15:00,756 4th St, Dallas,TX,75001 +149212,Wired Headphones,1,11.99,2019-01-03 19:10:00,132 Elm St, Atlanta,GA,30301 +149213,AAA Batteries (4-pack),1,2.99,2019-01-12 12:45:00,577 Lakeview St, Los Angeles,CA,90001 +149214,27in FHD Monitor,1,149.99,2019-01-08 13:34:00,190 4th St, Austin,TX,73301 +149215,27in FHD Monitor,1,149.99,2019-01-28 12:14:00,707 Walnut St, Seattle,WA,98101 +149216,AA Batteries (4-pack),1,3.84,2019-01-02 10:52:00,421 Meadow St, New York City,NY,10001 +149217,Apple Airpods Headphones,1,150.0,2019-01-17 20:40:00,502 13th St, Dallas,TX,75001 +149218,Lightning Charging Cable,1,14.95,2019-01-24 16:46:00,85 Sunset St, Portland,OR,97035 +149219,Lightning Charging Cable,1,14.95,2019-01-10 18:18:00,180 7th St, Seattle,WA,98101 +149220,AA Batteries (4-pack),3,3.84,2019-01-10 11:43:00,539 12th St, Boston,MA,02215 +149221,Apple Airpods Headphones,1,150.0,2019-01-09 15:53:00,775 5th St, Dallas,TX,75001 +149222,AA Batteries (4-pack),1,3.84,2019-01-27 19:10:00,754 Jackson St, New York City,NY,10001 +149223,LG Dryer,1,600.0,2019-01-10 14:32:00,636 Lake St, Boston,MA,02215 +149224,Lightning Charging Cable,1,14.95,2019-01-25 13:55:00,461 West St, Portland,OR,97035 +149225,Flatscreen TV,1,300.0,2019-01-12 09:55:00,143 River St, Seattle,WA,98101 +149226,27in FHD Monitor,1,149.99,2019-01-07 01:34:00,677 7th St, Portland,OR,97035 +149227,Wired Headphones,1,11.99,2019-01-05 12:38:00,315 Park St, Portland,OR,97035 +149228,27in FHD Monitor,1,149.99,2019-01-26 17:57:00,224 Spruce St, San Francisco,CA,94016 +149229,AAA Batteries (4-pack),1,2.99,2019-01-03 20:09:00,418 South St, San Francisco,CA,94016 +149230,AA Batteries (4-pack),1,3.84,2019-01-24 12:49:00,766 2nd St, Dallas,TX,75001 +149231,Lightning Charging Cable,1,14.95,2019-01-13 21:48:00,795 4th St, San Francisco,CA,94016 +149232,AAA Batteries (4-pack),1,2.99,2019-01-14 00:30:00,265 Jackson St, New York City,NY,10001 +149233,27in 4K Gaming Monitor,1,389.99,2019-01-11 22:22:00,356 Forest St, Boston,MA,02215 +149234,Lightning Charging Cable,1,14.95,2019-01-25 20:04:00,898 2nd St, Atlanta,GA,30301 +149235,34in Ultrawide Monitor,1,379.99,2019-01-09 19:28:00,238 Maple St, Atlanta,GA,30301 +149236,AA Batteries (4-pack),2,3.84,2019-01-27 13:41:00,411 Highland St, San Francisco,CA,94016 +149237,AAA Batteries (4-pack),2,2.99,2019-01-31 16:14:00,848 Adams St, Seattle,WA,98101 +149238,Lightning Charging Cable,1,14.95,2019-01-05 17:05:00,194 Hill St, Seattle,WA,98101 +149239,AAA Batteries (4-pack),2,2.99,2019-01-18 22:21:00,896 2nd St, Los Angeles,CA,90001 +149240,iPhone,1,700.0,2019-01-26 23:12:00,51 6th St, Boston,MA,02215 +149241,AA Batteries (4-pack),3,3.84,2019-01-28 12:52:00,487 Sunset St, San Francisco,CA,94016 +149242,Apple Airpods Headphones,1,150.0,2019-01-18 07:45:00,117 Hill St, San Francisco,CA,94016 +149243,Apple Airpods Headphones,1,150.0,2019-01-21 14:26:00,109 12th St, Portland,ME,04101 +149244,Lightning Charging Cable,1,14.95,2019-01-27 11:59:00,340 Main St, San Francisco,CA,94016 +149245,USB-C Charging Cable,3,11.95,2019-01-13 09:01:00,885 River St, San Francisco,CA,94016 +149246,AAA Batteries (4-pack),1,2.99,2019-01-03 14:08:00,791 2nd St, San Francisco,CA,94016 +149247,AA Batteries (4-pack),1,3.84,2019-01-03 10:43:00,864 Forest St, San Francisco,CA,94016 +149248,AAA Batteries (4-pack),1,2.99,2019-01-02 18:45:00,451 2nd St, Seattle,WA,98101 +149249,Wired Headphones,2,11.99,2019-01-20 09:39:00,373 Forest St, Portland,OR,97035 +149250,34in Ultrawide Monitor,1,379.99,2019-01-11 22:53:00,521 Cedar St, Los Angeles,CA,90001 +149251,iPhone,1,700.0,2019-01-13 23:46:00,555 9th St, San Francisco,CA,94016 +149252,Apple Airpods Headphones,1,150.0,2019-01-17 08:34:00,459 13th St, Dallas,TX,75001 +149253,Macbook Pro Laptop,1,1700.0,2019-01-02 22:37:00,589 Sunset St, San Francisco,CA,94016 +149254,Lightning Charging Cable,1,14.95,2019-01-23 21:42:00,99 Lincoln St, San Francisco,CA,94016 +149255,Apple Airpods Headphones,1,150.0,2019-01-17 23:33:00,838 Walnut St, New York City,NY,10001 +149256,27in 4K Gaming Monitor,1,389.99,2019-01-29 10:10:00,33 Highland St, New York City,NY,10001 +149257,20in Monitor,1,109.99,2019-01-30 22:52:00,887 Dogwood St, New York City,NY,10001 +149258,USB-C Charging Cable,1,11.95,2019-01-27 21:50:00,996 Ridge St, Portland,OR,97035 +149259,Apple Airpods Headphones,1,150.0,2019-01-08 13:25:00,320 Sunset St, San Francisco,CA,94016 +149260,AAA Batteries (4-pack),1,2.99,2019-01-31 21:20:00,372 Jefferson St, Boston,MA,02215 +149261,iPhone,1,700.0,2019-01-26 11:18:00,954 Adams St, Austin,TX,73301 +149262,USB-C Charging Cable,1,11.95,2019-01-23 19:03:00,58 Willow St, Austin,TX,73301 +149263,Google Phone,1,600.0,2019-01-03 12:17:00,119 14th St, San Francisco,CA,94016 +149263,USB-C Charging Cable,1,11.95,2019-01-03 12:17:00,119 14th St, San Francisco,CA,94016 +149264,AAA Batteries (4-pack),1,2.99,2019-01-03 12:50:00,119 Jefferson St, Boston,MA,02215 +149265,Wired Headphones,1,11.99,2019-01-17 08:11:00,73 South St, Austin,TX,73301 +149266,AA Batteries (4-pack),1,3.84,2019-01-13 10:40:00,442 Willow St, San Francisco,CA,94016 +149267,Wired Headphones,1,11.99,2019-01-12 03:14:00,88 South St, San Francisco,CA,94016 +149268,Macbook Pro Laptop,1,1700.0,2019-01-11 15:45:00,47 West St, Seattle,WA,98101 +149269,34in Ultrawide Monitor,1,379.99,2019-01-18 14:32:00,208 2nd St, Los Angeles,CA,90001 +149270,USB-C Charging Cable,1,11.95,2019-01-24 11:46:00,372 Main St, Portland,ME,04101 +149271,AA Batteries (4-pack),1,3.84,2019-01-19 18:44:00,334 11th St, New York City,NY,10001 +149272,Bose SoundSport Headphones,1,99.99,2019-01-12 12:46:00,607 Walnut St, Los Angeles,CA,90001 +149273,USB-C Charging Cable,1,11.95,2019-01-12 20:35:00,15 South St, Boston,MA,02215 +149274,27in 4K Gaming Monitor,1,389.99,2019-01-14 22:35:00,613 6th St, San Francisco,CA,94016 +149275,AAA Batteries (4-pack),1,2.99,2019-01-25 21:51:00,710 10th St, Los Angeles,CA,90001 +149276,Lightning Charging Cable,1,14.95,2019-01-16 12:56:00,439 Spruce St, Los Angeles,CA,90001 +149277,USB-C Charging Cable,1,11.95,2019-01-24 12:06:00,413 Lake St, New York City,NY,10001 +149278,AA Batteries (4-pack),1,3.84,2019-01-31 14:16:00,502 Highland St, San Francisco,CA,94016 +149279,Wired Headphones,1,11.99,2019-01-27 11:00:00,279 Willow St, San Francisco,CA,94016 +149280,Wired Headphones,1,11.99,2019-01-27 17:28:00,145 Lake St, New York City,NY,10001 +149281,Apple Airpods Headphones,1,150.0,2019-01-10 20:24:00,844 Hill St, Atlanta,GA,30301 +149282,USB-C Charging Cable,1,11.95,2019-01-15 17:55:00,846 12th St, Portland,OR,97035 +149283,Lightning Charging Cable,1,14.95,2019-01-08 10:22:00,542 Sunset St, San Francisco,CA,94016 +149284,Lightning Charging Cable,1,14.95,2019-01-28 15:48:00,395 Meadow St, Los Angeles,CA,90001 +149285,AA Batteries (4-pack),2,3.84,2019-01-24 16:01:00,93 6th St, Boston,MA,02215 +149286,Apple Airpods Headphones,1,150.0,2019-01-01 21:40:00,651 7th St, San Francisco,CA,94016 +149287,USB-C Charging Cable,1,11.95,2019-01-08 11:25:00,88 2nd St, Dallas,TX,75001 +149288,Wired Headphones,1,11.99,2019-01-31 19:59:00,319 Cherry St, Seattle,WA,98101 +149289,27in 4K Gaming Monitor,1,389.99,2019-01-11 08:52:00,261 Park St, Portland,OR,97035 +149290,USB-C Charging Cable,1,11.95,2019-01-10 07:43:00,744 5th St, Los Angeles,CA,90001 +149291,34in Ultrawide Monitor,1,379.99,2019-01-21 11:41:00,216 Cherry St, New York City,NY,10001 +149292,27in FHD Monitor,1,149.99,2019-01-20 22:21:00,654 Elm St, New York City,NY,10001 +149293,Apple Airpods Headphones,1,150.0,2019-01-25 23:12:00,301 Dogwood St, San Francisco,CA,94016 +149294,Bose SoundSport Headphones,1,99.99,2019-01-30 11:29:00,494 Maple St, Los Angeles,CA,90001 +149295,27in 4K Gaming Monitor,1,389.99,2019-01-09 21:58:00,673 Dogwood St, New York City,NY,10001 +149296,AA Batteries (4-pack),2,3.84,2019-01-10 20:24:00,43 Lake St, Los Angeles,CA,90001 +149297,Macbook Pro Laptop,1,1700.0,2019-01-29 16:58:00,495 Meadow St, Seattle,WA,98101 +149298,Bose SoundSport Headphones,1,99.99,2019-01-01 13:14:00,453 Maple St, Seattle,WA,98101 +149299,USB-C Charging Cable,1,11.95,2019-01-02 16:44:00,256 Maple St, San Francisco,CA,94016 +149300,Wired Headphones,1,11.99,2019-01-03 11:57:00,178 Maple St, Los Angeles,CA,90001 +149301,AAA Batteries (4-pack),2,2.99,2019-01-15 13:16:00,526 12th St, Los Angeles,CA,90001 +149302,Apple Airpods Headphones,1,150.0,2019-01-18 11:25:00,550 Ridge St, Austin,TX,73301 +149303,AA Batteries (4-pack),5,3.84,2019-01-18 12:12:00,171 Highland St, San Francisco,CA,94016 +149304,USB-C Charging Cable,1,11.95,2019-01-05 14:46:00,171 West St, Atlanta,GA,30301 +149305,20in Monitor,1,109.99,2019-01-10 16:02:00,27 Johnson St, San Francisco,CA,94016 +149306,27in 4K Gaming Monitor,1,389.99,2019-01-09 00:10:00,224 Hill St, Dallas,TX,75001 +149307,AAA Batteries (4-pack),1,2.99,2019-01-13 12:12:00,36 Sunset St, Austin,TX,73301 +149308,Apple Airpods Headphones,1,150.0,2019-01-02 23:07:00,351 Madison St, New York City,NY,10001 +149309,Wired Headphones,1,11.99,2019-01-26 12:42:00,265 Sunset St, San Francisco,CA,94016 +149310,27in FHD Monitor,1,149.99,2019-01-29 16:21:00,383 Lincoln St, Dallas,TX,75001 +149311,Lightning Charging Cable,1,14.95,2019-01-27 19:22:00,235 Lincoln St, San Francisco,CA,94016 +149312,Wired Headphones,1,11.99,2019-01-09 10:48:00,268 11th St, Atlanta,GA,30301 +149313,Lightning Charging Cable,1,14.95,2019-01-09 16:51:00,86 8th St, Austin,TX,73301 +149314,Lightning Charging Cable,1,14.95,2019-01-06 15:43:00,972 13th St, San Francisco,CA,94016 +149315,Lightning Charging Cable,1,14.95,2019-01-16 19:19:00,177 Wilson St, Atlanta,GA,30301 +149316,USB-C Charging Cable,1,11.95,2019-01-12 21:16:00,703 14th St, New York City,NY,10001 +149317,USB-C Charging Cable,1,11.95,2019-01-16 10:46:00,690 Adams St, Seattle,WA,98101 +149318,AA Batteries (4-pack),2,3.84,2019-01-06 13:17:00,706 Hill St, Los Angeles,CA,90001 +149319,34in Ultrawide Monitor,1,379.99,2019-01-09 23:08:00,40 Dogwood St, Los Angeles,CA,90001 +149320,USB-C Charging Cable,1,11.95,2019-01-08 22:31:00,25 Elm St, Seattle,WA,98101 +149321,27in 4K Gaming Monitor,1,389.99,2019-01-12 11:03:00,842 Wilson St, San Francisco,CA,94016 +149322,Bose SoundSport Headphones,1,99.99,2019-01-16 09:32:00,979 1st St, San Francisco,CA,94016 +149323,Apple Airpods Headphones,1,150.0,2019-01-04 10:45:00,510 Lakeview St, Portland,OR,97035 +149324,USB-C Charging Cable,2,11.95,2019-01-06 20:13:00,113 Sunset St, Austin,TX,73301 +149325,AA Batteries (4-pack),1,3.84,2019-01-10 22:33:00,142 Center St, Los Angeles,CA,90001 +149326,AA Batteries (4-pack),1,3.84,2019-01-17 11:17:00,439 Pine St, Los Angeles,CA,90001 +149327,27in FHD Monitor,1,149.99,2019-01-27 14:50:00,431 2nd St, Los Angeles,CA,90001 +149327,Apple Airpods Headphones,1,150.0,2019-01-27 14:50:00,431 2nd St, Los Angeles,CA,90001 +149328,34in Ultrawide Monitor,1,379.99,2019-01-03 19:02:00,142 Park St, Dallas,TX,75001 +149329,Bose SoundSport Headphones,1,99.99,2019-01-15 22:21:00,206 8th St, Boston,MA,02215 +149330,Vareebadd Phone,1,400.0,2019-01-06 08:26:00,414 6th St, Boston,MA,02215 +149331,Lightning Charging Cable,1,14.95,2019-01-23 21:07:00,31 Hickory St, Boston,MA,02215 +149332,Apple Airpods Headphones,1,150.0,2019-01-01 18:30:00,552 Elm St, San Francisco,CA,94016 +149333,Wired Headphones,1,11.99,2019-01-17 09:40:00,868 Wilson St, Los Angeles,CA,90001 +149334,27in FHD Monitor,1,149.99,2019-01-14 19:32:00,636 10th St, Seattle,WA,98101 +149335,Macbook Pro Laptop,1,1700.0,2019-01-22 14:50:00,970 Lakeview St, New York City,NY,10001 +149336,Vareebadd Phone,1,400.0,2019-01-29 10:29:00,939 Forest St, Austin,TX,73301 +149336,USB-C Charging Cable,1,11.95,2019-01-29 10:29:00,939 Forest St, Austin,TX,73301 +149337,Apple Airpods Headphones,1,150.0,2019-01-23 21:46:00,686 Lakeview St, Boston,MA,02215 +149338,AA Batteries (4-pack),1,3.84,2019-01-28 23:36:00,113 North St, San Francisco,CA,94016 +149339,Wired Headphones,1,11.99,2019-01-24 18:33:00,915 Park St, Los Angeles,CA,90001 +149340,27in 4K Gaming Monitor,1,389.99,2019-01-02 22:21:00,781 Park St, San Francisco,CA,94016 +149341,iPhone,1,700.0,2019-01-28 21:48:00,660 Forest St, New York City,NY,10001 +149342,AA Batteries (4-pack),1,3.84,2019-01-15 09:56:00,603 West St, Austin,TX,73301 +149343,Apple Airpods Headphones,1,150.0,2019-01-01 04:56:00,735 5th St, New York City,NY,10001 +149344,Lightning Charging Cable,1,14.95,2019-01-21 21:23:00,893 Washington St, San Francisco,CA,94016 +149345,iPhone,1,700.0,2019-01-11 12:43:00,946 Elm St, Boston,MA,02215 +149346,USB-C Charging Cable,1,11.95,2019-01-18 17:39:00,614 Elm St, New York City,NY,10001 +149347,Wired Headphones,1,11.99,2019-01-20 17:05:00,912 Highland St, Atlanta,GA,30301 +149348,AA Batteries (4-pack),2,3.84,2019-01-31 21:25:00,743 Center St, San Francisco,CA,94016 +149349,Bose SoundSport Headphones,1,99.99,2019-01-10 09:59:00,304 Johnson St, San Francisco,CA,94016 +149350,USB-C Charging Cable,2,11.95,2019-01-01 06:03:00,943 2nd St, Atlanta,GA,30301 +149351,Lightning Charging Cable,1,14.95,2019-01-23 13:59:00,425 11th St, San Francisco,CA,94016 +149352,Lightning Charging Cable,1,14.95,2019-01-12 13:17:00,41 North St, Los Angeles,CA,90001 +149353,USB-C Charging Cable,1,11.95,2019-01-04 05:31:00,868 Washington St, Dallas,TX,75001 +149354,Lightning Charging Cable,1,14.95,2019-01-10 14:34:00,680 Jefferson St, New York City,NY,10001 +149355,AA Batteries (4-pack),1,3.84,2019-01-26 09:31:00,650 Cherry St, Dallas,TX,75001 +149356,34in Ultrawide Monitor,1,379.99,2019-01-07 10:46:00,905 Jefferson St, Los Angeles,CA,90001 +149357,AAA Batteries (4-pack),1,2.99,2019-01-10 17:03:00,176 Lincoln St, New York City,NY,10001 +149358,iPhone,1,700.0,2019-01-09 14:17:00,885 14th St, New York City,NY,10001 +149359,AAA Batteries (4-pack),1,2.99,2019-01-30 13:47:00,729 12th St, Seattle,WA,98101 +149360,USB-C Charging Cable,1,11.95,2019-01-09 07:29:00,811 Lake St, Boston,MA,02215 +149361,Apple Airpods Headphones,1,150.0,2019-01-15 17:55:00,273 8th St, New York City,NY,10001 +149362,AAA Batteries (4-pack),2,2.99,2019-01-12 09:05:00,255 Dogwood St, San Francisco,CA,94016 +149363,27in FHD Monitor,1,149.99,2019-01-28 15:02:00,103 Cherry St, Seattle,WA,98101 +149364,AA Batteries (4-pack),2,3.84,2019-01-23 16:28:00,841 6th St, Atlanta,GA,30301 +149365,Apple Airpods Headphones,1,150.0,2019-01-09 16:52:00,530 Pine St, San Francisco,CA,94016 +149366,Google Phone,1,600.0,2019-01-20 18:17:00,895 Walnut St, San Francisco,CA,94016 +149367,Lightning Charging Cable,2,14.95,2019-01-19 16:31:00,184 Center St, Los Angeles,CA,90001 +149368,AAA Batteries (4-pack),1,2.99,2019-01-01 23:42:00,347 Madison St, Dallas,TX,75001 +149369,Lightning Charging Cable,1,14.95,2019-01-17 19:30:00,676 Washington St, San Francisco,CA,94016 +149370,AAA Batteries (4-pack),1,2.99,2019-01-24 16:05:00,645 7th St, Seattle,WA,98101 +149371,27in 4K Gaming Monitor,1,389.99,2019-01-18 14:18:00,676 Hickory St, New York City,NY,10001 +149372,AAA Batteries (4-pack),1,2.99,2019-01-02 08:43:00,325 Hill St, San Francisco,CA,94016 +149373,AA Batteries (4-pack),1,3.84,2019-01-11 17:49:00,54 Ridge St, San Francisco,CA,94016 +149374,34in Ultrawide Monitor,1,379.99,2019-01-24 15:25:00,5 7th St, Seattle,WA,98101 +149375,iPhone,1,700.0,2019-01-21 22:13:00,501 Hill St, Los Angeles,CA,90001 +149375,Lightning Charging Cable,1,14.95,2019-01-21 22:13:00,501 Hill St, Los Angeles,CA,90001 +149376,USB-C Charging Cable,1,11.95,2019-01-28 13:26:00,151 Maple St, San Francisco,CA,94016 +149377,Lightning Charging Cable,1,14.95,2019-01-15 11:54:00,30 5th St, New York City,NY,10001 +149378,AA Batteries (4-pack),2,3.84,2019-01-01 09:38:00,540 Lincoln St, Atlanta,GA,30301 +149379,Wired Headphones,1,11.99,2019-01-19 12:38:00,505 Jackson St, Seattle,WA,98101 +149380,Flatscreen TV,1,300.0,2019-01-12 12:56:00,139 9th St, Atlanta,GA,30301 +149381,Google Phone,1,600.0,2019-01-29 09:28:00,939 Forest St, Boston,MA,02215 +149382,AAA Batteries (4-pack),2,2.99,2019-01-31 19:32:00,702 2nd St, Portland,ME,04101 +149383,ThinkPad Laptop,1,999.99,2019-01-28 09:37:00,187 14th St, San Francisco,CA,94016 +149384,AA Batteries (4-pack),1,3.84,2019-01-05 10:17:00,771 Sunset St, Portland,OR,97035 +149385,Wired Headphones,1,11.99,2019-01-20 12:23:00,768 Lincoln St, New York City,NY,10001 +149386,USB-C Charging Cable,1,11.95,2019-01-01 22:36:00,716 Chestnut St, Los Angeles,CA,90001 +149387,Apple Airpods Headphones,1,150.0,2019-01-26 09:36:00,345 1st St, Boston,MA,02215 +149388,USB-C Charging Cable,1,11.95,2019-01-15 20:25:00,502 Chestnut St, San Francisco,CA,94016 +149389,ThinkPad Laptop,1,999.99,2019-01-31 19:12:00,307 Hill St, Los Angeles,CA,90001 +149390,20in Monitor,1,109.99,2019-01-16 18:06:00,6 7th St, San Francisco,CA,94016 +149391,34in Ultrawide Monitor,1,379.99,2019-01-15 12:34:00,55 Johnson St, Portland,OR,97035 +149391,Apple Airpods Headphones,1,150.0,2019-01-15 12:34:00,55 Johnson St, Portland,OR,97035 +149392,20in Monitor,1,109.99,2019-01-05 08:16:00,883 Adams St, Dallas,TX,75001 +149393,iPhone,1,700.0,2019-01-13 18:17:00,43 Ridge St, San Francisco,CA,94016 +149394,Apple Airpods Headphones,1,150.0,2019-01-31 17:03:00,16 14th St, New York City,NY,10001 +149395,Lightning Charging Cable,1,14.95,2019-01-17 12:10:00,447 Spruce St, Los Angeles,CA,90001 +149396,Wired Headphones,1,11.99,2019-01-22 06:13:00,945 Highland St, Seattle,WA,98101 +149397,Vareebadd Phone,1,400.0,2019-01-05 20:52:00,285 Forest St, New York City,NY,10001 +149398,Lightning Charging Cable,1,14.95,2019-01-10 19:27:00,450 14th St, New York City,NY,10001 +149399,Wired Headphones,1,11.99,2019-01-14 19:55:00,791 Madison St, Boston,MA,02215 +149400,Bose SoundSport Headphones,1,99.99,2019-01-27 13:05:00,254 Jefferson St, Dallas,TX,75001 +149401,Lightning Charging Cable,1,14.95,2019-01-05 09:44:00,963 4th St, New York City,NY,10001 +149402,AAA Batteries (4-pack),1,2.99,2019-01-16 20:04:00,296 Johnson St, Los Angeles,CA,90001 +149403,AA Batteries (4-pack),1,3.84,2019-01-02 10:57:00,394 Jackson St, Los Angeles,CA,90001 +149404,AAA Batteries (4-pack),1,2.99,2019-01-29 20:08:00,29 Cherry St, New York City,NY,10001 +149405,34in Ultrawide Monitor,1,379.99,2019-01-31 19:17:00,665 South St, San Francisco,CA,94016 +149406,Google Phone,1,600.0,2019-01-04 10:34:00,258 Meadow St, Boston,MA,02215 +149407,AAA Batteries (4-pack),1,2.99,2019-01-14 21:33:00,341 5th St, Portland,ME,04101 +149408,AA Batteries (4-pack),3,3.84,2019-01-20 21:17:00,352 Meadow St, Dallas,TX,75001 +149409,AAA Batteries (4-pack),1,2.99,2019-01-29 09:35:00,87 7th St, San Francisco,CA,94016 +149410,Lightning Charging Cable,1,14.95,2019-01-22 00:50:00,955 Wilson St, San Francisco,CA,94016 +149411,27in FHD Monitor,1,149.99,2019-01-14 01:20:00,648 12th St, Los Angeles,CA,90001 +149412,Wired Headphones,1,11.99,2019-01-11 14:56:00,694 1st St, Los Angeles,CA,90001 +149413,Flatscreen TV,1,300.0,2019-01-14 01:32:00,993 West St, Dallas,TX,75001 +149414,AA Batteries (4-pack),1,3.84,2019-01-15 20:02:00,459 9th St, Seattle,WA,98101 +149415,AAA Batteries (4-pack),1,2.99,2019-01-05 09:56:00,705 10th St, Dallas,TX,75001 +149416,Lightning Charging Cable,1,14.95,2019-01-22 19:48:00,493 11th St, Atlanta,GA,30301 +149417,Lightning Charging Cable,1,14.95,2019-01-02 22:50:00,548 Forest St, Boston,MA,02215 +149418,34in Ultrawide Monitor,1,379.99,2019-01-15 10:52:00,786 Hill St, San Francisco,CA,94016 +149419,Lightning Charging Cable,1,14.95,2019-01-30 10:15:00,642 Hickory St, San Francisco,CA,94016 +149420,Apple Airpods Headphones,1,150.0,2019-01-09 13:50:00,282 South St, San Francisco,CA,94016 +149421,Wired Headphones,1,11.99,2019-01-01 08:31:00,920 Willow St, Boston,MA,02215 +149422,Apple Airpods Headphones,1,150.0,2019-01-31 05:43:00,425 Church St, San Francisco,CA,94016 +149423,USB-C Charging Cable,1,11.95,2019-01-19 08:54:00,268 Spruce St, Dallas,TX,75001 +149424,iPhone,1,700.0,2019-01-28 14:56:00,141 Wilson St, San Francisco,CA,94016 +149425,AA Batteries (4-pack),1,3.84,2019-01-28 18:23:00,949 Maple St, San Francisco,CA,94016 +149426,Apple Airpods Headphones,1,150.0,2019-01-16 15:47:00,825 8th St, San Francisco,CA,94016 +149427,AA Batteries (4-pack),1,3.84,2019-01-28 15:46:00,658 8th St, Portland,OR,97035 +149428,27in FHD Monitor,1,149.99,2019-01-29 14:18:00,936 Jefferson St, Atlanta,GA,30301 +149429,Wired Headphones,1,11.99,2019-01-20 15:44:00,367 South St, Boston,MA,02215 +149430,Google Phone,1,600.0,2019-01-17 20:12:00,659 Church St, San Francisco,CA,94016 +149431,Macbook Pro Laptop,1,1700.0,2019-01-27 19:15:00,478 6th St, Atlanta,GA,30301 +149432,AAA Batteries (4-pack),2,2.99,2019-01-20 08:57:00,482 Forest St, Austin,TX,73301 +149433,AA Batteries (4-pack),1,3.84,2019-01-11 11:54:00,257 Highland St, Seattle,WA,98101 +149434,34in Ultrawide Monitor,1,379.99,2019-01-14 15:04:00,525 Highland St, San Francisco,CA,94016 +149435,USB-C Charging Cable,1,11.95,2019-01-18 18:55:00,586 7th St, Los Angeles,CA,90001 +149436,Lightning Charging Cable,1,14.95,2019-01-11 18:12:00,744 7th St, Austin,TX,73301 +149437,Apple Airpods Headphones,1,150.0,2019-01-05 19:01:00,257 Lincoln St, San Francisco,CA,94016 +149438,Wired Headphones,1,11.99,2019-01-24 12:30:00,359 Washington St, New York City,NY,10001 +149439,AAA Batteries (4-pack),2,2.99,2019-01-26 22:29:00,504 Center St, Los Angeles,CA,90001 +149440,Wired Headphones,1,11.99,2019-01-15 13:52:00,887 Hickory St, Los Angeles,CA,90001 +149441,AA Batteries (4-pack),1,3.84,2019-01-21 11:49:00,435 Park St, Boston,MA,02215 +149442,USB-C Charging Cable,1,11.95,2019-01-27 22:15:00,737 7th St, Portland,OR,97035 +149443,AA Batteries (4-pack),1,3.84,2019-01-15 01:06:00,372 12th St, Austin,TX,73301 +149444,Wired Headphones,1,11.99,2019-01-12 23:09:00,14 Spruce St, Boston,MA,02215 +149445,ThinkPad Laptop,1,999.99,2019-01-31 19:17:00,117 Madison St, Austin,TX,73301 +149446,Lightning Charging Cable,1,14.95,2019-01-08 09:02:00,142 5th St, New York City,NY,10001 +149447,AA Batteries (4-pack),1,3.84,2019-01-27 18:15:00,913 Jackson St, Dallas,TX,75001 +149448,Wired Headphones,1,11.99,2019-01-09 08:52:00,780 Lakeview St, Austin,TX,73301 +149449,ThinkPad Laptop,1,999.99,2019-01-11 12:08:00,450 Cherry St, Portland,ME,04101 +149450,Wired Headphones,1,11.99,2019-01-23 20:12:00,751 Forest St, San Francisco,CA,94016 +149451,27in FHD Monitor,1,149.99,2019-01-08 15:32:00,59 4th St, Boston,MA,02215 +149452,Wired Headphones,1,11.99,2019-01-27 12:28:00,546 Elm St, Atlanta,GA,30301 +149453,34in Ultrawide Monitor,1,379.99,2019-01-21 13:51:00,31 Adams St, New York City,NY,10001 +149454,AAA Batteries (4-pack),2,2.99,2019-01-10 10:09:00,293 Cedar St, Dallas,TX,75001 +149454,Wired Headphones,2,11.99,2019-01-10 10:09:00,293 Cedar St, Dallas,TX,75001 +149455,AAA Batteries (4-pack),1,2.99,2019-01-17 13:51:00,64 7th St, Dallas,TX,75001 +149456,34in Ultrawide Monitor,1,379.99,2019-01-20 14:43:00,753 Madison St, New York City,NY,10001 +149457,Wired Headphones,1,11.99,2019-01-27 22:46:00,825 Forest St, Portland,OR,97035 +149458,Wired Headphones,2,11.99,2019-01-13 14:13:00,479 Dogwood St, Dallas,TX,75001 +149459,AA Batteries (4-pack),3,3.84,2019-01-26 14:17:00,471 Pine St, San Francisco,CA,94016 +149460,AA Batteries (4-pack),2,3.84,2019-01-18 22:02:00,807 Walnut St, Portland,OR,97035 +149461,AA Batteries (4-pack),1,3.84,2019-01-25 13:13:00,716 10th St, Boston,MA,02215 +149462,Apple Airpods Headphones,1,150.0,2019-01-16 13:23:00,827 9th St, Seattle,WA,98101 +149463,20in Monitor,1,109.99,2019-01-15 15:04:00,139 Jefferson St, Los Angeles,CA,90001 +149464,27in 4K Gaming Monitor,1,389.99,2019-01-02 12:13:00,756 13th St, Dallas,TX,75001 +149465,Wired Headphones,1,11.99,2019-01-28 11:27:00,475 Lake St, Los Angeles,CA,90001 +149466,Lightning Charging Cable,1,14.95,2019-01-17 21:34:00,374 Lakeview St, San Francisco,CA,94016 +149467,USB-C Charging Cable,1,11.95,2019-01-27 11:50:00,628 Main St, Los Angeles,CA,90001 +149468,ThinkPad Laptop,1,999.99,2019-01-04 17:41:00,736 2nd St, Dallas,TX,75001 +149469,Wired Headphones,1,11.99,2019-01-13 17:34:00,415 Walnut St, San Francisco,CA,94016 +149470,USB-C Charging Cable,1,11.95,2019-01-30 09:08:00,314 Johnson St, Los Angeles,CA,90001 +149471,20in Monitor,1,109.99,2019-01-22 14:47:00,527 Madison St, New York City,NY,10001 +149472,USB-C Charging Cable,2,11.95,2019-01-19 20:34:00,388 Walnut St, Seattle,WA,98101 +149473,27in 4K Gaming Monitor,1,389.99,2019-01-15 14:29:00,75 Maple St, Boston,MA,02215 +149474,Wired Headphones,1,11.99,2019-01-18 12:27:00,342 Center St, Los Angeles,CA,90001 +149475,34in Ultrawide Monitor,1,379.99,2019-01-22 08:51:00,750 River St, Austin,TX,73301 +149476,iPhone,1,700.0,2019-01-29 22:43:00,58 Adams St, San Francisco,CA,94016 +149476,Lightning Charging Cable,1,14.95,2019-01-29 22:43:00,58 Adams St, San Francisco,CA,94016 +149477,Wired Headphones,1,11.99,2019-01-03 23:21:00,585 Meadow St, San Francisco,CA,94016 +149478,20in Monitor,1,109.99,2019-01-15 20:26:00,961 Highland St, Portland,OR,97035 +149479,Wired Headphones,2,11.99,2019-01-29 10:22:00,408 Highland St, Los Angeles,CA,90001 +149480,AAA Batteries (4-pack),1,2.99,2019-01-04 11:12:00,702 Chestnut St, Atlanta,GA,30301 +149481,USB-C Charging Cable,1,11.95,2019-01-06 18:25:00,57 Ridge St, Los Angeles,CA,90001 +149482,AAA Batteries (4-pack),2,2.99,2019-01-21 18:00:00,430 12th St, New York City,NY,10001 +149482,Lightning Charging Cable,1,14.95,2019-01-21 18:00:00,430 12th St, New York City,NY,10001 +149483,27in FHD Monitor,1,149.99,2019-01-04 14:31:00,3 Walnut St, Seattle,WA,98101 +149484,27in 4K Gaming Monitor,1,389.99,2019-01-28 16:49:00,571 Ridge St, Los Angeles,CA,90001 +149485,34in Ultrawide Monitor,1,379.99,2019-01-13 00:40:00,553 Jefferson St, Atlanta,GA,30301 +149486,Vareebadd Phone,1,400.0,2019-01-09 23:04:00,583 Jefferson St, Portland,OR,97035 +149487,AAA Batteries (4-pack),2,2.99,2019-01-22 20:30:00,290 1st St, Atlanta,GA,30301 +149488,USB-C Charging Cable,1,11.95,2019-01-19 18:51:00,843 13th St, Los Angeles,CA,90001 +149489,USB-C Charging Cable,1,11.95,2019-01-02 18:31:00,353 Madison St, New York City,NY,10001 +149490,Lightning Charging Cable,1,14.95,2019-01-02 12:59:00,855 Cedar St, Portland,OR,97035 +149491,USB-C Charging Cable,1,11.95,2019-01-22 16:49:00,559 Hickory St, San Francisco,CA,94016 +149492,AA Batteries (4-pack),1,3.84,2019-01-01 12:11:00,106 Pine St, Boston,MA,02215 +149493,27in FHD Monitor,1,149.99,2019-01-23 15:10:00,507 Highland St, Atlanta,GA,30301 +149494,Lightning Charging Cable,1,14.95,2019-01-12 15:40:00,649 River St, Los Angeles,CA,90001 +149495,Lightning Charging Cable,1,14.95,2019-01-05 11:19:00,599 13th St, New York City,NY,10001 +149496,Lightning Charging Cable,1,14.95,2019-01-06 13:27:00,978 Walnut St, Dallas,TX,75001 +149497,Wired Headphones,1,11.99,2019-01-04 15:59:00,486 Jackson St, New York City,NY,10001 +149498,Wired Headphones,1,11.99,2019-01-14 20:48:00,727 Madison St, Los Angeles,CA,90001 +149499,Vareebadd Phone,2,400.0,2019-01-28 16:55:00,961 Jefferson St, New York City,NY,10001 +149499,USB-C Charging Cable,1,11.95,2019-01-28 16:55:00,961 Jefferson St, New York City,NY,10001 +149499,Wired Headphones,1,11.99,2019-01-28 16:55:00,961 Jefferson St, New York City,NY,10001 +149500,iPhone,1,700.0,2019-01-31 19:27:00,691 4th St, San Francisco,CA,94016 +149500,Lightning Charging Cable,1,14.95,2019-01-31 19:27:00,691 4th St, San Francisco,CA,94016 +149501,AAA Batteries (4-pack),4,2.99,2019-01-17 15:34:00,443 North St, Boston,MA,02215 +149502,USB-C Charging Cable,1,11.95,2019-01-18 18:31:00,14 12th St, San Francisco,CA,94016 +149503,Apple Airpods Headphones,1,150.0,2019-01-13 19:47:00,366 West St, San Francisco,CA,94016 +149504,iPhone,1,700.0,2019-01-09 15:34:00,659 9th St, New York City,NY,10001 +149505,Google Phone,1,600.0,2019-01-14 10:06:00,326 Pine St, Seattle,WA,98101 +149506,Apple Airpods Headphones,1,150.0,2019-01-09 19:05:00,444 Johnson St, New York City,NY,10001 +149507,Bose SoundSport Headphones,1,99.99,2019-01-10 21:36:00,289 Hickory St, Boston,MA,02215 +149508,LG Washing Machine,1,600.0,2019-01-15 15:47:00,212 Meadow St, San Francisco,CA,94016 +149509,ThinkPad Laptop,1,999.99,2019-01-01 14:04:00,493 Dogwood St, Seattle,WA,98101 +149510,AA Batteries (4-pack),1,3.84,2019-01-15 19:16:00,329 5th St, San Francisco,CA,94016 +149511,AA Batteries (4-pack),1,3.84,2019-01-05 18:55:00,187 Dogwood St, New York City,NY,10001 +149512,USB-C Charging Cable,1,11.95,2019-01-02 20:28:00,561 South St, Los Angeles,CA,90001 +149513,USB-C Charging Cable,1,11.95,2019-01-30 12:35:00,150 9th St, Los Angeles,CA,90001 +149514,Apple Airpods Headphones,1,150.0,2019-01-08 06:59:00,828 6th St, San Francisco,CA,94016 +149515,USB-C Charging Cable,1,11.95,2019-01-14 21:19:00,913 10th St, Los Angeles,CA,90001 +149516,34in Ultrawide Monitor,1,379.99,2019-01-23 11:02:00,897 9th St, Seattle,WA,98101 +149517,AA Batteries (4-pack),1,3.84,2019-01-08 22:28:00,264 West St, San Francisco,CA,94016 +149518,AA Batteries (4-pack),1,3.84,2019-01-20 21:50:00,523 Center St, Dallas,TX,75001 +149518,ThinkPad Laptop,1,999.99,2019-01-20 21:50:00,523 Center St, Dallas,TX,75001 +149519,Google Phone,1,600.0,2019-01-18 19:28:00,351 2nd St, New York City,NY,10001 +149520,Apple Airpods Headphones,1,150.0,2019-01-13 00:07:00,368 10th St, San Francisco,CA,94016 +149521,Apple Airpods Headphones,1,150.0,2019-01-30 16:20:00,621 12th St, Boston,MA,02215 +149522,Lightning Charging Cable,1,14.95,2019-01-27 16:59:00,816 2nd St, Atlanta,GA,30301 +149523,Flatscreen TV,1,300.0,2019-01-30 17:00:00,748 Jackson St, Los Angeles,CA,90001 +149524,AA Batteries (4-pack),1,3.84,2019-01-01 12:28:00,72 Main St, Portland,OR,97035 +149525,Wired Headphones,2,11.99,2019-01-13 07:59:00,670 8th St, San Francisco,CA,94016 +149526,AAA Batteries (4-pack),1,2.99,2019-01-30 15:57:00,701 Lincoln St, San Francisco,CA,94016 +149527,27in FHD Monitor,1,149.99,2019-01-08 16:49:00,69 Sunset St, Atlanta,GA,30301 +149528,AA Batteries (4-pack),1,3.84,2019-01-22 21:27:00,745 Highland St, Boston,MA,02215 +149529,USB-C Charging Cable,1,11.95,2019-01-09 17:18:00,584 12th St, New York City,NY,10001 +149530,ThinkPad Laptop,1,999.99,2019-01-09 16:11:00,972 Highland St, Boston,MA,02215 +149531,AAA Batteries (4-pack),3,2.99,2019-01-30 05:35:00,445 River St, New York City,NY,10001 +149532,34in Ultrawide Monitor,1,379.99,2019-01-27 12:08:00,186 Jackson St, Boston,MA,02215 +149533,AA Batteries (4-pack),1,3.84,2019-01-18 22:45:00,137 12th St, San Francisco,CA,94016 +149534,Bose SoundSport Headphones,1,99.99,2019-01-17 20:05:00,749 7th St, Atlanta,GA,30301 +149535,AA Batteries (4-pack),2,3.84,2019-01-13 13:38:00,447 West St, New York City,NY,10001 +149536,Lightning Charging Cable,1,14.95,2019-01-02 17:00:00,858 Willow St, Boston,MA,02215 +149537,Wired Headphones,1,11.99,2019-01-14 00:46:00,543 Cedar St, Dallas,TX,75001 +149538,USB-C Charging Cable,2,11.95,2019-01-04 22:16:00,969 Sunset St, Los Angeles,CA,90001 +149539,Lightning Charging Cable,1,14.95,2019-01-04 18:15:00,737 South St, Boston,MA,02215 +149540,Lightning Charging Cable,1,14.95,2019-01-09 11:27:00,89 Chestnut St, Boston,MA,02215 +149541,Lightning Charging Cable,1,14.95,2019-01-03 21:20:00,729 Center St, Atlanta,GA,30301 +149542,USB-C Charging Cable,2,11.95,2019-01-23 12:52:00,782 Cedar St, San Francisco,CA,94016 +149543,Lightning Charging Cable,1,14.95,2019-01-15 17:28:00,194 Hill St, Atlanta,GA,30301 +149544,Apple Airpods Headphones,1,150.0,2019-01-29 23:21:00,650 Maple St, San Francisco,CA,94016 +149545,Lightning Charging Cable,2,14.95,2019-01-26 22:50:00,323 14th St, San Francisco,CA,94016 +149546,AA Batteries (4-pack),1,3.84,2019-01-01 17:57:00,223 Jefferson St, Boston,MA,02215 +149546,Bose SoundSport Headphones,1,99.99,2019-01-01 17:57:00,223 Jefferson St, Boston,MA,02215 +149547,AAA Batteries (4-pack),1,2.99,2019-01-29 15:05:00,920 6th St, New York City,NY,10001 +149548,27in FHD Monitor,1,149.99,2019-01-13 13:35:00,530 Sunset St, San Francisco,CA,94016 +149549,Bose SoundSport Headphones,1,99.99,2019-01-25 19:46:00,57 Park St, New York City,NY,10001 +149550,AAA Batteries (4-pack),2,2.99,2019-01-20 12:46:00,893 12th St, San Francisco,CA,94016 +149551,USB-C Charging Cable,1,11.95,2019-01-06 15:19:00,985 8th St, New York City,NY,10001 +149552,20in Monitor,1,109.99,2019-01-10 12:14:00,862 4th St, Atlanta,GA,30301 +149553,USB-C Charging Cable,1,11.95,2019-01-20 19:07:00,362 Highland St, Portland,OR,97035 +149554,AA Batteries (4-pack),2,3.84,2019-01-21 22:52:00,782 Spruce St, Boston,MA,02215 +149555,27in FHD Monitor,1,149.99,2019-01-11 23:46:00,602 1st St, San Francisco,CA,94016 +149556,AAA Batteries (4-pack),1,2.99,2019-01-22 15:13:00,331 Willow St, Los Angeles,CA,90001 +149557,USB-C Charging Cable,1,11.95,2019-01-15 16:37:00,82 Lincoln St, Dallas,TX,75001 +149558,34in Ultrawide Monitor,1,379.99,2019-01-30 23:07:00,602 Pine St, Dallas,TX,75001 +149559,Apple Airpods Headphones,1,150.0,2019-01-24 13:05:00,744 12th St, San Francisco,CA,94016 +149560,USB-C Charging Cable,1,11.95,2019-01-06 18:18:00,715 Chestnut St, Portland,OR,97035 +149561,Google Phone,1,600.0,2019-01-24 20:12:00,611 Maple St, San Francisco,CA,94016 +149561,Wired Headphones,2,11.99,2019-01-24 20:12:00,611 Maple St, San Francisco,CA,94016 +149562,AA Batteries (4-pack),1,3.84,2019-01-05 23:22:00,366 Walnut St, San Francisco,CA,94016 +149563,USB-C Charging Cable,1,11.95,2019-01-05 11:12:00,437 4th St, Los Angeles,CA,90001 +149564,Macbook Pro Laptop,1,1700.0,2019-01-01 18:39:00,794 Meadow St, San Francisco,CA,94016 +149565,AAA Batteries (4-pack),2,2.99,2019-01-29 13:51:00,537 Walnut St, Portland,OR,97035 +149566,27in FHD Monitor,1,149.99,2019-01-06 10:22:00,282 South St, New York City,NY,10001 +149567,Lightning Charging Cable,1,14.95,2019-01-19 19:12:00,585 4th St, Boston,MA,02215 +149568,AAA Batteries (4-pack),2,2.99,2019-01-30 18:47:00,54 Adams St, Boston,MA,02215 +149569,Google Phone,1,600.0,2019-01-29 15:48:00,467 14th St, Los Angeles,CA,90001 +149570,Macbook Pro Laptop,1,1700.0,2019-01-26 08:30:00,180 Lakeview St, Seattle,WA,98101 +149571,20in Monitor,1,109.99,2019-01-02 15:08:00,529 Jefferson St, Seattle,WA,98101 +149572,Flatscreen TV,1,300.0,2019-01-31 14:45:00,79 Cedar St, Boston,MA,02215 +149573,AA Batteries (4-pack),1,3.84,2019-01-29 21:23:00,682 9th St, Dallas,TX,75001 +149574,Bose SoundSport Headphones,1,99.99,2019-01-08 14:06:00,941 Main St, Seattle,WA,98101 +149575,Lightning Charging Cable,1,14.95,2019-01-18 13:46:00,792 2nd St, Los Angeles,CA,90001 +149576,Bose SoundSport Headphones,1,99.99,2019-01-12 20:56:00,507 8th St, Los Angeles,CA,90001 +149577,AAA Batteries (4-pack),3,2.99,2019-01-09 15:43:00,387 Forest St, San Francisco,CA,94016 +149578,Wired Headphones,1,11.99,2019-01-16 20:59:00,603 Park St, San Francisco,CA,94016 +149579,Macbook Pro Laptop,1,1700.0,2019-01-01 10:09:00,61 Lakeview St, Dallas,TX,75001 +149580,Wired Headphones,1,11.99,2019-01-29 13:51:00,312 Forest St, New York City,NY,10001 +149581,Bose SoundSport Headphones,1,99.99,2019-01-28 16:45:00,537 Jefferson St, San Francisco,CA,94016 +149582,iPhone,1,700.0,2019-01-18 19:12:00,602 2nd St, Austin,TX,73301 +149583,Wired Headphones,1,11.99,2019-01-09 07:23:00,309 Johnson St, Atlanta,GA,30301 +149584,AA Batteries (4-pack),1,3.84,2019-01-12 10:50:00,597 North St, Dallas,TX,75001 +149585,ThinkPad Laptop,1,999.99,2019-01-20 18:09:00,553 Ridge St, Los Angeles,CA,90001 +149586,USB-C Charging Cable,1,11.95,2019-01-01 07:47:00,631 Lakeview St, San Francisco,CA,94016 +149587,Apple Airpods Headphones,1,150.0,2019-01-16 11:16:00,318 Hill St, New York City,NY,10001 +149588,Lightning Charging Cable,1,14.95,2019-01-09 09:09:00,767 Meadow St, San Francisco,CA,94016 +149589,USB-C Charging Cable,1,11.95,2019-01-28 21:12:00,402 12th St, Los Angeles,CA,90001 +149590,USB-C Charging Cable,1,11.95,2019-01-11 11:03:00,883 Dogwood St, Seattle,WA,98101 +149591,Wired Headphones,1,11.99,2019-01-09 14:26:00,690 Hickory St, San Francisco,CA,94016 +149592,USB-C Charging Cable,1,11.95,2019-01-27 09:41:00,355 11th St, San Francisco,CA,94016 +149593,Lightning Charging Cable,2,14.95,2019-01-07 15:11:00,905 Lakeview St, Los Angeles,CA,90001 +149594,27in 4K Gaming Monitor,1,389.99,2019-01-12 20:54:00,508 11th St, Los Angeles,CA,90001 +149595,USB-C Charging Cable,1,11.95,2019-01-16 13:12:00,328 Lincoln St, Boston,MA,02215 +149596,Lightning Charging Cable,1,14.95,2019-01-26 13:05:00,694 Adams St, Boston,MA,02215 +149597,AA Batteries (4-pack),3,3.84,2019-01-23 20:32:00,607 Lakeview St, Portland,OR,97035 +149598,AAA Batteries (4-pack),1,2.99,2019-01-24 14:28:00,169 Lake St, San Francisco,CA,94016 +149599,USB-C Charging Cable,1,11.95,2019-01-25 09:00:00,743 Washington St, San Francisco,CA,94016 +149600,AAA Batteries (4-pack),1,2.99,2019-01-29 12:04:00,184 Spruce St, Atlanta,GA,30301 +149601,AAA Batteries (4-pack),2,2.99,2019-01-14 21:27:00,287 Dogwood St, Austin,TX,73301 +149602,34in Ultrawide Monitor,1,379.99,2019-01-22 11:32:00,430 Church St, Seattle,WA,98101 +149603,Lightning Charging Cable,1,14.95,2019-01-20 14:30:00,284 River St, Boston,MA,02215 +149604,Vareebadd Phone,1,400.0,2019-01-04 11:40:00,924 Highland St, San Francisco,CA,94016 +149604,Wired Headphones,1,11.99,2019-01-04 11:40:00,924 Highland St, San Francisco,CA,94016 +149605,AA Batteries (4-pack),1,3.84,2019-01-25 19:52:00,975 Hickory St, Boston,MA,02215 +149606,iPhone,1,700.0,2019-01-25 15:08:00,721 Lake St, Portland,OR,97035 +149606,Lightning Charging Cable,1,14.95,2019-01-25 15:08:00,721 Lake St, Portland,OR,97035 +149607,USB-C Charging Cable,1,11.95,2019-01-04 16:38:00,763 9th St, Boston,MA,02215 +149608,AA Batteries (4-pack),1,3.84,2019-01-24 19:40:00,485 Center St, Atlanta,GA,30301 +149609,AAA Batteries (4-pack),6,2.99,2019-01-19 22:14:00,285 Sunset St, San Francisco,CA,94016 +149610,AAA Batteries (4-pack),1,2.99,2019-01-13 12:15:00,307 4th St, Los Angeles,CA,90001 +149611,ThinkPad Laptop,2,999.99,2019-01-31 17:47:00,850 6th St, New York City,NY,10001 +149612,Wired Headphones,1,11.99,2019-01-22 23:17:00,247 Meadow St, San Francisco,CA,94016 +149613,AA Batteries (4-pack),1,3.84,2019-01-30 14:55:00,87 Spruce St, New York City,NY,10001 +149614,Lightning Charging Cable,1,14.95,2019-01-26 14:29:00,564 Jefferson St, Portland,OR,97035 +149615,27in FHD Monitor,1,149.99,2019-01-25 17:18:00,604 14th St, Los Angeles,CA,90001 +149616,Google Phone,1,600.0,2019-01-02 09:17:00,61 Lincoln St, Atlanta,GA,30301 +149616,USB-C Charging Cable,1,11.95,2019-01-02 09:17:00,61 Lincoln St, Atlanta,GA,30301 +149617,Google Phone,1,600.0,2019-01-06 11:23:00,754 North St, Dallas,TX,75001 +149618,Apple Airpods Headphones,1,150.0,2019-01-29 19:58:00,177 South St, Los Angeles,CA,90001 +149619,Bose SoundSport Headphones,1,99.99,2019-01-21 20:04:00,907 9th St, Los Angeles,CA,90001 +149620,Lightning Charging Cable,1,14.95,2019-01-01 06:34:00,338 Chestnut St, San Francisco,CA,94016 +149621,Bose SoundSport Headphones,1,99.99,2019-01-20 15:37:00,913 12th St, San Francisco,CA,94016 +149622,Bose SoundSport Headphones,1,99.99,2019-01-26 15:58:00,968 Johnson St, San Francisco,CA,94016 +149623,AA Batteries (4-pack),1,3.84,2019-01-09 19:00:00,282 Willow St, San Francisco,CA,94016 +149624,Lightning Charging Cable,1,14.95,2019-01-15 14:33:00,47 Walnut St, Los Angeles,CA,90001 +149625,AA Batteries (4-pack),1,3.84,2019-01-14 15:29:00,197 7th St, San Francisco,CA,94016 +149626,AA Batteries (4-pack),1,3.84,2019-01-17 13:39:00,307 Hickory St, Boston,MA,02215 +149627,AA Batteries (4-pack),1,3.84,2019-01-30 15:24:00,351 Pine St, Austin,TX,73301 +149628,Bose SoundSport Headphones,1,99.99,2019-01-26 09:20:00,272 Madison St, San Francisco,CA,94016 +149629,AA Batteries (4-pack),1,3.84,2019-01-28 13:11:00,743 Sunset St, Dallas,TX,75001 +149630,Wired Headphones,1,11.99,2019-01-04 15:16:00,682 Wilson St, Seattle,WA,98101 +149631,USB-C Charging Cable,1,11.95,2019-01-01 20:33:00,663 Hickory St, Los Angeles,CA,90001 +149632,USB-C Charging Cable,1,11.95,2019-01-14 15:21:00,389 Johnson St, Boston,MA,02215 +149632,Bose SoundSport Headphones,1,99.99,2019-01-14 15:21:00,389 Johnson St, Boston,MA,02215 +149633,AA Batteries (4-pack),1,3.84,2019-01-16 21:59:00,319 West St, San Francisco,CA,94016 +149634,Apple Airpods Headphones,1,150.0,2019-01-12 09:30:00,223 Lakeview St, New York City,NY,10001 +149635,27in 4K Gaming Monitor,1,389.99,2019-01-27 22:50:00,165 Pine St, Los Angeles,CA,90001 +149636,27in FHD Monitor,1,149.99,2019-01-25 12:26:00,547 9th St, New York City,NY,10001 +149637,Bose SoundSport Headphones,1,99.99,2019-01-23 13:34:00,762 4th St, Seattle,WA,98101 +149638,USB-C Charging Cable,1,11.95,2019-01-04 11:51:00,32 1st St, San Francisco,CA,94016 +149639,Lightning Charging Cable,1,14.95,2019-01-10 09:15:00,494 Highland St, Atlanta,GA,30301 +149640,Lightning Charging Cable,1,14.95,2019-01-20 16:07:00,52 14th St, Los Angeles,CA,90001 +149641,USB-C Charging Cable,1,11.95,2019-01-09 13:45:00,782 Forest St, San Francisco,CA,94016 +149642,AAA Batteries (4-pack),2,2.99,2019-01-13 22:51:00,169 Jackson St, Dallas,TX,75001 +149643,iPhone,1,700.0,2019-01-31 11:29:00,472 Hickory St, San Francisco,CA,94016 +149644,AAA Batteries (4-pack),1,2.99,2019-01-22 10:37:00,317 8th St, Boston,MA,02215 +149645,AA Batteries (4-pack),1,3.84,2019-01-26 08:10:00,919 7th St, Dallas,TX,75001 +149646,USB-C Charging Cable,1,11.95,2019-01-13 18:33:00,830 North St, San Francisco,CA,94016 +149647,Lightning Charging Cable,1,14.95,2019-01-02 15:32:00,226 Cherry St, Boston,MA,02215 +149648,AAA Batteries (4-pack),1,2.99,2019-01-29 08:53:00,296 14th St, Dallas,TX,75001 +149649,ThinkPad Laptop,1,999.99,2019-01-31 09:21:00,375 Pine St, San Francisco,CA,94016 +149650,Wired Headphones,1,11.99,2019-01-31 18:45:00,800 Jefferson St, Boston,MA,02215 +149651,Macbook Pro Laptop,1,1700.0,2019-01-19 13:20:00,68 12th St, New York City,NY,10001 +149652,AAA Batteries (4-pack),2,2.99,2019-01-05 13:28:00,256 Park St, San Francisco,CA,94016 +149653,Vareebadd Phone,1,400.0,2019-01-16 13:56:00,285 Cedar St, San Francisco,CA,94016 +149654,AA Batteries (4-pack),1,3.84,2019-01-05 21:55:00,36 Lakeview St, San Francisco,CA,94016 +149655,Lightning Charging Cable,1,14.95,2019-01-25 12:28:00,253 River St, Austin,TX,73301 +149656,Lightning Charging Cable,1,14.95,2019-01-28 19:05:00,859 South St, Atlanta,GA,30301 +149657,Bose SoundSport Headphones,1,99.99,2019-01-10 09:03:00,745 Walnut St, New York City,NY,10001 +149658,34in Ultrawide Monitor,1,379.99,2019-01-30 18:46:00,1 9th St, Dallas,TX,75001 +149659,AA Batteries (4-pack),1,3.84,2019-01-21 19:47:00,774 South St, Dallas,TX,75001 +149660,27in FHD Monitor,1,149.99,2019-01-06 16:06:00,377 Sunset St, New York City,NY,10001 +149661,AA Batteries (4-pack),3,3.84,2019-01-13 13:59:00,984 Maple St, Los Angeles,CA,90001 +149662,Apple Airpods Headphones,1,150.0,2019-01-27 08:51:00,755 5th St, Boston,MA,02215 +149663,AAA Batteries (4-pack),1,2.99,2019-01-22 14:05:00,635 Forest St, Boston,MA,02215 +149664,Apple Airpods Headphones,1,150.0,2019-01-02 12:06:00,490 Lake St, New York City,NY,10001 +149665,USB-C Charging Cable,1,11.95,2019-01-03 18:28:00,97 North St, New York City,NY,10001 +149666,Wired Headphones,1,11.99,2019-01-11 19:21:00,980 14th St, Los Angeles,CA,90001 +149667,Apple Airpods Headphones,1,150.0,2019-01-02 15:36:00,505 Hill St, San Francisco,CA,94016 +149668,USB-C Charging Cable,1,11.95,2019-01-24 13:17:00,636 Church St, San Francisco,CA,94016 +149669,Apple Airpods Headphones,1,150.0,2019-01-18 20:45:00,709 North St, Dallas,TX,75001 +149670,27in FHD Monitor,1,149.99,2019-01-24 10:52:00,727 Cedar St, Boston,MA,02215 +149671,iPhone,1,700.0,2019-01-22 02:07:00,330 South St, Boston,MA,02215 +149672,Macbook Pro Laptop,1,1700.0,2019-01-20 00:15:00,896 12th St, New York City,NY,10001 +149673,Bose SoundSport Headphones,1,99.99,2019-01-22 15:09:00,609 Park St, New York City,NY,10001 +149674,Apple Airpods Headphones,1,150.0,2019-01-04 23:28:00,71 14th St, San Francisco,CA,94016 +149675,Lightning Charging Cable,1,14.95,2019-01-13 10:21:00,699 Hickory St, New York City,NY,10001 +149676,Flatscreen TV,1,300.0,2019-01-01 17:53:00,347 Church St, New York City,NY,10001 +149677,AA Batteries (4-pack),1,3.84,2019-01-19 18:01:00,488 West St, New York City,NY,10001 +149678,27in FHD Monitor,1,149.99,2019-01-22 15:19:00,474 Walnut St, New York City,NY,10001 +149679,Wired Headphones,1,11.99,2019-01-02 17:12:00,139 Jackson St, San Francisco,CA,94016 +149680,Wired Headphones,1,11.99,2019-01-14 15:21:00,201 Meadow St, Los Angeles,CA,90001 +149681,AA Batteries (4-pack),2,3.84,2019-01-28 08:07:00,248 Meadow St, Portland,OR,97035 +149682,AAA Batteries (4-pack),1,2.99,2019-01-19 11:05:00,184 Wilson St, Boston,MA,02215 +149683,Flatscreen TV,1,300.0,2019-01-14 07:56:00,59 11th St, Los Angeles,CA,90001 +149684,USB-C Charging Cable,1,11.95,2019-01-22 18:30:00,192 Main St, New York City,NY,10001 +149685,Wired Headphones,1,11.99,2019-01-24 16:35:00,351 8th St, Seattle,WA,98101 +149686,Wired Headphones,1,11.99,2019-01-07 12:03:00,362 12th St, Boston,MA,02215 +149687,AAA Batteries (4-pack),3,2.99,2019-01-21 17:19:00,303 10th St, Boston,MA,02215 +149688,Apple Airpods Headphones,1,150.0,2019-01-12 22:58:00,359 Park St, New York City,NY,10001 +149689,Apple Airpods Headphones,1,150.0,2019-01-06 21:35:00,566 8th St, Los Angeles,CA,90001 +149690,Lightning Charging Cable,2,14.95,2019-01-27 18:04:00,54 2nd St, Seattle,WA,98101 +149691,AAA Batteries (4-pack),1,2.99,2019-01-11 19:29:00,895 Hill St, Portland,OR,97035 +149692,AA Batteries (4-pack),1,3.84,2019-01-30 11:00:00,947 Maple St, San Francisco,CA,94016 +149693,USB-C Charging Cable,1,11.95,2019-01-20 19:48:00,632 South St, Portland,OR,97035 +149694,AAA Batteries (4-pack),2,2.99,2019-01-25 11:26:00,682 10th St, Portland,OR,97035 +149695,Lightning Charging Cable,1,14.95,2019-01-07 00:03:00,518 Adams St, New York City,NY,10001 +149696,27in 4K Gaming Monitor,1,389.99,2019-01-15 12:51:00,938 Spruce St, San Francisco,CA,94016 +149697,27in FHD Monitor,1,149.99,2019-01-19 23:24:00,670 5th St, Los Angeles,CA,90001 +149698,Flatscreen TV,1,300.0,2019-01-19 18:54:00,863 Willow St, Dallas,TX,75001 +149699,Apple Airpods Headphones,1,150.0,2019-01-05 20:24:00,598 13th St, Portland,OR,97035 +149700,Lightning Charging Cable,1,14.95,2019-01-06 23:24:00,953 West St, New York City,NY,10001 +149701,AAA Batteries (4-pack),1,2.99,2019-01-22 07:14:00,788 Meadow St, San Francisco,CA,94016 +149702,27in 4K Gaming Monitor,1,389.99,2019-01-20 13:36:00,326 Meadow St, New York City,NY,10001 +149703,AAA Batteries (4-pack),1,2.99,2019-01-31 14:25:00,755 14th St, Boston,MA,02215 +149704,Lightning Charging Cable,1,14.95,2019-01-09 14:00:00,681 Walnut St, San Francisco,CA,94016 +149705,Google Phone,1,600.0,2019-01-18 21:02:00,285 Johnson St, Boston,MA,02215 +149706,AAA Batteries (4-pack),1,2.99,2019-01-11 22:15:00,581 14th St, San Francisco,CA,94016 +149707,Lightning Charging Cable,1,14.95,2019-01-17 12:43:00,453 Maple St, San Francisco,CA,94016 +149708,Wired Headphones,1,11.99,2019-01-24 19:27:00,582 Spruce St, San Francisco,CA,94016 +149709,Apple Airpods Headphones,1,150.0,2019-01-14 06:53:00,439 Church St, Atlanta,GA,30301 +149710,27in 4K Gaming Monitor,1,389.99,2019-01-31 18:10:00,949 Center St, San Francisco,CA,94016 +149711,ThinkPad Laptop,1,999.99,2019-01-22 09:45:00,992 Hill St, San Francisco,CA,94016 +149712,Bose SoundSport Headphones,1,99.99,2019-01-28 21:15:00,764 Wilson St, New York City,NY,10001 +149713,34in Ultrawide Monitor,1,379.99,2019-01-26 16:40:00,313 Church St, San Francisco,CA,94016 +149714,34in Ultrawide Monitor,1,379.99,2019-01-13 14:48:00,710 Park St, Los Angeles,CA,90001 +149715,Apple Airpods Headphones,1,150.0,2019-01-26 10:54:00,796 Pine St, Atlanta,GA,30301 +149716,AA Batteries (4-pack),1,3.84,2019-01-30 10:32:00,479 2nd St, Boston,MA,02215 +149717,Apple Airpods Headphones,1,150.0,2019-01-05 08:52:00,189 2nd St, Seattle,WA,98101 +149718,Macbook Pro Laptop,1,1700.0,2019-01-26 11:18:00,446 Johnson St, Los Angeles,CA,90001 +149719,AA Batteries (4-pack),1,3.84,2019-01-12 10:09:00,771 Jefferson St, San Francisco,CA,94016 +149719,Google Phone,1,600.0,2019-01-12 10:09:00,771 Jefferson St, San Francisco,CA,94016 +149720,AAA Batteries (4-pack),2,2.99,2019-01-21 23:56:00,199 8th St, Portland,OR,97035 +149721,USB-C Charging Cable,1,11.95,2019-01-09 22:22:00,889 Hill St, Austin,TX,73301 +149722,Bose SoundSport Headphones,1,99.99,2019-01-03 11:46:00,620 Highland St, New York City,NY,10001 +149723,Wired Headphones,2,11.99,2019-01-09 15:27:00,291 14th St, Seattle,WA,98101 +149724,27in 4K Gaming Monitor,1,389.99,2019-01-06 19:25:00,988 Willow St, Portland,OR,97035 +149725,AAA Batteries (4-pack),1,2.99,2019-01-13 12:08:00,543 North St, Boston,MA,02215 +149726,AAA Batteries (4-pack),1,2.99,2019-01-17 17:13:00,56 1st St, Portland,OR,97035 +149727,Lightning Charging Cable,1,14.95,2019-01-31 18:34:00,708 Highland St, Los Angeles,CA,90001 +149728,Bose SoundSport Headphones,1,99.99,2019-01-31 15:53:00,182 Pine St, San Francisco,CA,94016 +149729,AAA Batteries (4-pack),1,2.99,2019-01-29 20:13:00,927 12th St, Seattle,WA,98101 +149730,Wired Headphones,1,11.99,2019-01-12 19:16:00,340 Elm St, Boston,MA,02215 +149731,AA Batteries (4-pack),2,3.84,2019-01-11 12:33:00,788 Washington St, San Francisco,CA,94016 +149731,Apple Airpods Headphones,1,150.0,2019-01-11 12:33:00,788 Washington St, San Francisco,CA,94016 +149732,iPhone,1,700.0,2019-01-29 20:02:00,48 2nd St, San Francisco,CA,94016 +149733,LG Dryer,1,600.0,2019-01-21 20:16:00,715 4th St, Portland,ME,04101 +149734,Bose SoundSport Headphones,1,99.99,2019-01-12 16:55:00,46 Jackson St, Atlanta,GA,30301 +149735,AAA Batteries (4-pack),1,2.99,2019-01-20 16:29:00,747 Wilson St, Los Angeles,CA,90001 +149736,AA Batteries (4-pack),2,3.84,2019-01-06 06:00:00,89 Highland St, Dallas,TX,75001 +149737,Bose SoundSport Headphones,1,99.99,2019-01-13 10:43:00,647 Meadow St, Seattle,WA,98101 +149738,USB-C Charging Cable,1,11.95,2019-01-11 11:22:00,612 West St, New York City,NY,10001 +149739,27in FHD Monitor,1,149.99,2019-01-18 17:45:00,445 5th St, San Francisco,CA,94016 +149740,AAA Batteries (4-pack),3,2.99,2019-01-08 21:26:00,883 West St, Atlanta,GA,30301 +149741,AA Batteries (4-pack),1,3.84,2019-01-09 19:29:00,584 Hickory St, San Francisco,CA,94016 +149742,AAA Batteries (4-pack),4,2.99,2019-01-09 19:28:00,396 11th St, New York City,NY,10001 +149743,Wired Headphones,1,11.99,2019-01-05 11:33:00,601 11th St, New York City,NY,10001 +149744,AAA Batteries (4-pack),1,2.99,2019-01-28 17:20:00,1 Lake St, New York City,NY,10001 +149745,Bose SoundSport Headphones,1,99.99,2019-01-28 09:31:00,883 Park St, Seattle,WA,98101 +149746,Wired Headphones,2,11.99,2019-01-05 23:28:00,383 Hill St, San Francisco,CA,94016 +149747,27in FHD Monitor,1,149.99,2019-01-26 07:29:00,527 Washington St, Boston,MA,02215 +149748,27in FHD Monitor,1,149.99,2019-01-23 16:14:00,370 Center St, San Francisco,CA,94016 +149749,Lightning Charging Cable,1,14.95,2019-01-16 17:59:00,567 1st St, New York City,NY,10001 +149750,AAA Batteries (4-pack),2,2.99,2019-01-28 20:57:00,280 2nd St, New York City,NY,10001 +149751,Wired Headphones,1,11.99,2019-01-13 00:16:00,834 Maple St, Seattle,WA,98101 +149752,Flatscreen TV,1,300.0,2019-01-30 13:02:00,554 4th St, Seattle,WA,98101 +149753,Wired Headphones,1,11.99,2019-01-07 22:00:00,647 Jefferson St, New York City,NY,10001 +149754,iPhone,1,700.0,2019-01-14 09:24:00,304 Forest St, Austin,TX,73301 +149755,Apple Airpods Headphones,1,150.0,2019-01-16 21:23:00,751 Cedar St, Atlanta,GA,30301 +149756,27in FHD Monitor,1,149.99,2019-01-09 19:12:00,216 Elm St, San Francisco,CA,94016 +149757,Google Phone,1,600.0,2019-01-17 20:08:00,97 9th St, San Francisco,CA,94016 +149758,AA Batteries (4-pack),1,3.84,2019-01-20 09:07:00,972 Lake St, Los Angeles,CA,90001 +149759,Apple Airpods Headphones,1,150.0,2019-01-28 09:31:00,336 Sunset St, Los Angeles,CA,90001 +149760,USB-C Charging Cable,1,11.95,2019-01-24 12:16:00,775 North St, Dallas,TX,75001 +149761,AAA Batteries (4-pack),1,2.99,2019-01-16 13:22:00,297 West St, Dallas,TX,75001 +149762,AA Batteries (4-pack),1,3.84,2019-01-08 10:59:00,216 Chestnut St, Los Angeles,CA,90001 +149763,Bose SoundSport Headphones,1,99.99,2019-01-05 18:16:00,177 Lake St, Portland,OR,97035 +149764,20in Monitor,1,109.99,2019-01-25 07:28:00,505 Lakeview St, Portland,OR,97035 +149765,Lightning Charging Cable,1,14.95,2019-01-05 17:36:00,894 Jackson St, Los Angeles,CA,90001 +149766,Apple Airpods Headphones,1,150.0,2019-01-08 21:38:00,991 Park St, San Francisco,CA,94016 +149767,AA Batteries (4-pack),3,3.84,2019-01-25 11:10:00,335 9th St, Austin,TX,73301 +149768,Apple Airpods Headphones,1,150.0,2019-01-19 23:22:00,499 River St, San Francisco,CA,94016 +149769,AAA Batteries (4-pack),3,2.99,2019-01-31 11:00:00,922 1st St, New York City,NY,10001 +149770,27in FHD Monitor,1,149.99,2019-01-10 01:29:00,189 Cherry St, San Francisco,CA,94016 +149771,Macbook Pro Laptop,1,1700.0,2019-01-18 15:42:00,6 4th St, San Francisco,CA,94016 +149772,AAA Batteries (4-pack),1,2.99,2019-01-15 12:16:00,409 10th St, San Francisco,CA,94016 +149773,Wired Headphones,1,11.99,2019-01-18 22:07:00,889 Lakeview St, Boston,MA,02215 +149773,27in FHD Monitor,1,149.99,2019-01-18 22:07:00,889 Lakeview St, Boston,MA,02215 +149774,AAA Batteries (4-pack),1,2.99,2019-01-06 11:47:00,2 Church St, San Francisco,CA,94016 +149775,AA Batteries (4-pack),1,3.84,2019-01-20 01:21:00,582 Adams St, Boston,MA,02215 +149776,Lightning Charging Cable,1,14.95,2019-01-04 15:46:00,513 Church St, San Francisco,CA,94016 +149777,Lightning Charging Cable,1,14.95,2019-01-29 13:42:00,644 South St, Austin,TX,73301 +149778,Wired Headphones,1,11.99,2019-01-15 10:51:00,630 7th St, Portland,OR,97035 +149779,27in FHD Monitor,1,149.99,2019-01-17 11:40:00,189 Church St, New York City,NY,10001 +149780,Lightning Charging Cable,1,14.95,2019-01-23 10:55:00,245 River St, Dallas,TX,75001 +149781,27in 4K Gaming Monitor,1,389.99,2019-01-02 14:42:00,177 Lakeview St, Dallas,TX,75001 +149782,27in 4K Gaming Monitor,1,389.99,2019-01-30 07:17:00,409 Hill St, Los Angeles,CA,90001 +149783,USB-C Charging Cable,1,11.95,2019-01-01 11:36:00,11 Center St, Boston,MA,02215 +149784,Apple Airpods Headphones,1,150.0,2019-01-05 21:27:00,482 Maple St, New York City,NY,10001 +149785,Lightning Charging Cable,1,14.95,2019-01-25 11:41:00,902 1st St, San Francisco,CA,94016 +149786,LG Washing Machine,1,600.0,2019-01-31 12:01:00,454 13th St, Seattle,WA,98101 +149787,Lightning Charging Cable,1,14.95,2019-01-09 00:07:00,494 Lake St, San Francisco,CA,94016 +149788,Flatscreen TV,1,300.0,2019-01-28 00:52:00,310 North St, Portland,OR,97035 +149789,34in Ultrawide Monitor,1,379.99,2019-01-13 15:33:00,302 West St, Los Angeles,CA,90001 +149790,Google Phone,1,600.0,2019-01-08 12:33:00,903 Hill St, New York City,NY,10001 +149791,AA Batteries (4-pack),1,3.84,2019-01-30 05:07:00,189 Hill St, San Francisco,CA,94016 +149792,Bose SoundSport Headphones,1,99.99,2019-01-19 20:35:00,660 North St, Boston,MA,02215 +149793,Lightning Charging Cable,2,14.95,2019-01-01 16:53:00,681 Madison St, Dallas,TX,75001 +149794,Bose SoundSport Headphones,1,99.99,2019-01-05 14:24:00,434 Pine St, Atlanta,GA,30301 +149795,Flatscreen TV,1,300.0,2019-01-20 21:02:00,123 Washington St, Boston,MA,02215 +149796,Bose SoundSport Headphones,1,99.99,2019-01-19 10:32:00,767 West St, Austin,TX,73301 +149797,Apple Airpods Headphones,1,150.0,2019-01-10 19:23:00,234 8th St, San Francisco,CA,94016 +149798,Bose SoundSport Headphones,1,99.99,2019-01-23 11:19:00,327 5th St, New York City,NY,10001 +149799,Lightning Charging Cable,2,14.95,2019-01-08 11:21:00,350 Forest St, San Francisco,CA,94016 +149800,Bose SoundSport Headphones,1,99.99,2019-01-25 21:01:00,569 Walnut St, Seattle,WA,98101 +149801,Vareebadd Phone,1,400.0,2019-01-21 16:37:00,566 North St, Atlanta,GA,30301 +149802,USB-C Charging Cable,1,11.95,2019-01-20 23:04:00,209 Park St, Seattle,WA,98101 +149803,27in FHD Monitor,1,149.99,2019-01-11 10:11:00,789 Cedar St, Seattle,WA,98101 +149804,AA Batteries (4-pack),1,3.84,2019-01-26 12:29:00,415 Hill St, Austin,TX,73301 +149805,Macbook Pro Laptop,1,1700.0,2019-01-13 14:59:00,374 9th St, San Francisco,CA,94016 +149806,Apple Airpods Headphones,1,150.0,2019-01-15 12:52:00,39 Ridge St, Boston,MA,02215 +149807,AAA Batteries (4-pack),1,2.99,2019-01-06 10:23:00,961 Dogwood St, Austin,TX,73301 +149808,AA Batteries (4-pack),1,3.84,2019-01-03 09:46:00,704 North St, Boston,MA,02215 +149809,Lightning Charging Cable,1,14.95,2019-01-09 10:00:00,294 Walnut St, Boston,MA,02215 +149810,Bose SoundSport Headphones,1,99.99,2019-01-22 22:23:00,802 7th St, Portland,ME,04101 +149811,USB-C Charging Cable,1,11.95,2019-01-29 10:38:00,725 Highland St, New York City,NY,10001 +149812,Lightning Charging Cable,1,14.95,2019-01-06 11:36:00,331 8th St, San Francisco,CA,94016 +149812,Flatscreen TV,1,300.0,2019-01-06 11:36:00,331 8th St, San Francisco,CA,94016 +149813,USB-C Charging Cable,2,11.95,2019-01-11 08:43:00,52 Center St, San Francisco,CA,94016 +149814,iPhone,1,700.0,2019-01-04 10:44:00,360 Center St, Los Angeles,CA,90001 +149815,34in Ultrawide Monitor,1,379.99,2019-01-14 21:09:00,801 Wilson St, Dallas,TX,75001 +149816,AAA Batteries (4-pack),1,2.99,2019-01-29 16:06:00,592 8th St, San Francisco,CA,94016 +149817,34in Ultrawide Monitor,1,379.99,2019-01-14 18:29:00,21 Lakeview St, Boston,MA,02215 +149818,34in Ultrawide Monitor,1,379.99,2019-01-08 21:18:00,43 Dogwood St, Los Angeles,CA,90001 +149819,Bose SoundSport Headphones,1,99.99,2019-01-24 12:00:00,340 Ridge St, Boston,MA,02215 +149820,Wired Headphones,1,11.99,2019-01-25 23:07:00,7 Johnson St, San Francisco,CA,94016 +149821,Apple Airpods Headphones,1,150.0,2019-01-28 18:23:00,475 6th St, Portland,OR,97035 +149822,Flatscreen TV,1,300.0,2019-01-07 19:28:00,659 6th St, Dallas,TX,75001 +149823,AA Batteries (4-pack),2,3.84,2019-01-07 16:33:00,754 2nd St, Los Angeles,CA,90001 +149824,AA Batteries (4-pack),2,3.84,2019-01-09 16:31:00,395 6th St, Portland,OR,97035 +149825,USB-C Charging Cable,1,11.95,2019-01-23 17:23:00,620 Cherry St, Los Angeles,CA,90001 +149826,AAA Batteries (4-pack),2,2.99,2019-01-12 10:59:00,857 Main St, San Francisco,CA,94016 +149827,27in FHD Monitor,1,149.99,2019-01-31 13:19:00,904 North St, Dallas,TX,75001 +149828,AA Batteries (4-pack),1,3.84,2019-01-13 01:49:00,50 10th St, Boston,MA,02215 +149829,Lightning Charging Cable,1,14.95,2019-01-26 12:27:00,386 Meadow St, New York City,NY,10001 +149830,Bose SoundSport Headphones,1,99.99,2019-01-26 11:42:00,151 West St, Austin,TX,73301 +149831,Wired Headphones,1,11.99,2019-01-08 17:33:00,415 Maple St, Atlanta,GA,30301 +149832,LG Dryer,1,600.0,2019-01-10 19:59:00,315 1st St, Atlanta,GA,30301 +149833,34in Ultrawide Monitor,1,379.99,2019-01-09 00:29:00,266 Madison St, Los Angeles,CA,90001 +149834,USB-C Charging Cable,1,11.95,2019-01-10 13:28:00,367 Walnut St, Los Angeles,CA,90001 +149835,USB-C Charging Cable,1,11.95,2019-01-06 16:10:00,337 Johnson St, Seattle,WA,98101 +149836,Bose SoundSport Headphones,1,99.99,2019-01-27 22:28:00,438 Hickory St, San Francisco,CA,94016 +149837,Apple Airpods Headphones,1,150.0,2019-01-04 08:16:00,840 Elm St, San Francisco,CA,94016 +149838,27in 4K Gaming Monitor,1,389.99,2019-01-22 09:31:00,576 11th St, Boston,MA,02215 +149839,27in FHD Monitor,1,149.99,2019-01-03 13:40:00,256 Dogwood St, Atlanta,GA,30301 +149840,34in Ultrawide Monitor,1,379.99,2019-01-20 15:01:00,522 Sunset St, New York City,NY,10001 +149841,AA Batteries (4-pack),1,3.84,2019-01-24 12:03:00,31 4th St, Los Angeles,CA,90001 +149842,iPhone,1,700.0,2019-01-13 09:25:00,608 Cedar St, Atlanta,GA,30301 +149843,Macbook Pro Laptop,1,1700.0,2019-01-22 13:50:00,315 Johnson St, Los Angeles,CA,90001 +149844,USB-C Charging Cable,1,11.95,2019-01-11 15:49:00,185 7th St, Austin,TX,73301 +149845,USB-C Charging Cable,1,11.95,2019-01-26 07:14:00,394 Maple St, San Francisco,CA,94016 +149846,34in Ultrawide Monitor,1,379.99,2019-01-07 14:36:00,707 Lincoln St, Boston,MA,02215 +149847,ThinkPad Laptop,1,999.99,2019-01-28 22:27:00,346 7th St, New York City,NY,10001 +149848,Lightning Charging Cable,1,14.95,2019-01-17 13:43:00,198 Jefferson St, New York City,NY,10001 +149849,Apple Airpods Headphones,1,150.0,2019-01-20 17:48:00,804 Center St, Los Angeles,CA,90001 +149850,iPhone,1,700.0,2019-01-13 19:21:00,554 Church St, San Francisco,CA,94016 +149851,20in Monitor,1,109.99,2019-01-13 06:12:00,855 Hickory St, Dallas,TX,75001 +149852,AAA Batteries (4-pack),1,2.99,2019-01-18 02:58:00,240 Washington St, San Francisco,CA,94016 +149853,Lightning Charging Cable,1,14.95,2019-01-24 17:54:00,732 Hickory St, Seattle,WA,98101 +149854,Google Phone,1,600.0,2019-01-29 06:36:00,5 Ridge St, Boston,MA,02215 +149855,Wired Headphones,1,11.99,2019-01-10 22:22:00,657 Center St, Los Angeles,CA,90001 +149856,AA Batteries (4-pack),2,3.84,2019-01-18 16:37:00,889 Dogwood St, Boston,MA,02215 +149857,iPhone,1,700.0,2019-01-07 10:59:00,384 Forest St, Atlanta,GA,30301 +149857,Apple Airpods Headphones,1,150.0,2019-01-07 10:59:00,384 Forest St, Atlanta,GA,30301 +149858,AAA Batteries (4-pack),1,2.99,2019-01-25 13:54:00,43 Elm St, Portland,OR,97035 +149859,Lightning Charging Cable,1,14.95,2019-01-09 22:43:00,41 6th St, San Francisco,CA,94016 +149860,Apple Airpods Headphones,1,150.0,2019-01-19 11:26:00,956 Elm St, Atlanta,GA,30301 +149861,34in Ultrawide Monitor,1,379.99,2019-01-19 10:56:00,353 8th St, San Francisco,CA,94016 +149862,Bose SoundSport Headphones,1,99.99,2019-01-23 20:32:00,140 Center St, New York City,NY,10001 +149863,Lightning Charging Cable,1,14.95,2019-01-26 18:39:00,217 Lakeview St, Boston,MA,02215 +149864,Flatscreen TV,1,300.0,2019-01-16 15:29:00,884 Forest St, Dallas,TX,75001 +149865,Lightning Charging Cable,1,14.95,2019-01-11 03:22:00,871 Willow St, Austin,TX,73301 +149866,AA Batteries (4-pack),2,3.84,2019-01-02 07:57:00,951 Willow St, Atlanta,GA,30301 +149867,USB-C Charging Cable,1,11.95,2019-01-05 16:49:00,609 Ridge St, San Francisco,CA,94016 +149868,USB-C Charging Cable,1,11.95,2019-01-01 20:23:00,416 4th St, New York City,NY,10001 +149869,Wired Headphones,1,11.99,2019-01-28 13:30:00,29 West St, San Francisco,CA,94016 +149870,AA Batteries (4-pack),1,3.84,2019-01-07 08:30:00,245 Lake St, Los Angeles,CA,90001 +149871,27in 4K Gaming Monitor,1,389.99,2019-01-09 18:26:00,383 10th St, Portland,OR,97035 +149872,Wired Headphones,2,11.99,2019-01-27 18:32:00,42 Johnson St, Portland,ME,04101 +149873,Wired Headphones,1,11.99,2019-01-23 08:34:00,324 South St, San Francisco,CA,94016 +149874,Macbook Pro Laptop,1,1700.0,2019-01-29 20:05:00,976 Lincoln St, Los Angeles,CA,90001 +149875,Bose SoundSport Headphones,1,99.99,2019-01-07 23:10:00,963 Dogwood St, San Francisco,CA,94016 +149876,Bose SoundSport Headphones,1,99.99,2019-01-14 00:09:00,531 Washington St, Seattle,WA,98101 +149877,USB-C Charging Cable,1,11.95,2019-01-03 12:35:00,886 Willow St, Atlanta,GA,30301 +149878,AAA Batteries (4-pack),1,2.99,2019-01-21 10:43:00,714 Main St, Atlanta,GA,30301 +149879,AAA Batteries (4-pack),1,2.99,2019-01-15 11:44:00,137 5th St, San Francisco,CA,94016 +149880,AAA Batteries (4-pack),1,2.99,2019-01-18 04:54:00,842 Forest St, Dallas,TX,75001 +149881,AAA Batteries (4-pack),1,2.99,2019-01-22 16:07:00,706 Park St, San Francisco,CA,94016 +149882,Wired Headphones,1,11.99,2019-01-17 11:04:00,720 Hill St, Boston,MA,02215 +149883,AAA Batteries (4-pack),2,2.99,2019-01-30 04:03:00,207 South St, Dallas,TX,75001 +149884,Apple Airpods Headphones,1,150.0,2019-01-07 08:38:00,605 Main St, Boston,MA,02215 +149885,Apple Airpods Headphones,1,150.0,2019-01-08 08:04:00,983 Madison St, San Francisco,CA,94016 +149886,iPhone,1,700.0,2019-01-11 16:57:00,404 1st St, New York City,NY,10001 +149887,Macbook Pro Laptop,1,1700.0,2019-01-27 18:17:00,783 Madison St, San Francisco,CA,94016 +149888,Macbook Pro Laptop,1,1700.0,2019-01-26 11:12:00,349 Center St, Austin,TX,73301 +149889,Apple Airpods Headphones,1,150.0,2019-01-18 22:13:00,262 4th St, New York City,NY,10001 +149890,Bose SoundSport Headphones,1,99.99,2019-01-25 10:59:00,525 Lake St, Los Angeles,CA,90001 +149891,Apple Airpods Headphones,1,150.0,2019-01-15 17:36:00,974 11th St, Atlanta,GA,30301 +149892,AA Batteries (4-pack),1,3.84,2019-01-17 08:53:00,391 14th St, Los Angeles,CA,90001 +149893,Apple Airpods Headphones,1,150.0,2019-01-08 12:59:00,692 South St, San Francisco,CA,94016 +149894,Google Phone,1,600.0,2019-01-24 14:45:00,772 Church St, Los Angeles,CA,90001 +149894,USB-C Charging Cable,1,11.95,2019-01-24 14:45:00,772 Church St, Los Angeles,CA,90001 +149895,Bose SoundSport Headphones,1,99.99,2019-01-25 18:26:00,339 Maple St, Atlanta,GA,30301 +149896,Flatscreen TV,1,300.0,2019-01-17 23:20:00,934 Ridge St, San Francisco,CA,94016 +149897,AAA Batteries (4-pack),1,2.99,2019-01-21 09:24:00,709 12th St, San Francisco,CA,94016 +149898,USB-C Charging Cable,1,11.95,2019-01-06 18:48:00,326 Highland St, Portland,OR,97035 +149899,USB-C Charging Cable,1,11.95,2019-01-17 11:00:00,43 River St, New York City,NY,10001 +149900,iPhone,1,700.0,2019-01-03 09:56:00,70 South St, Los Angeles,CA,90001 +149901,Bose SoundSport Headphones,1,99.99,2019-01-03 14:34:00,540 2nd St, Seattle,WA,98101 +149902,iPhone,1,700.0,2019-01-22 16:52:00,423 Lake St, New York City,NY,10001 +149902,Lightning Charging Cable,1,14.95,2019-01-22 16:52:00,423 Lake St, New York City,NY,10001 +149903,USB-C Charging Cable,1,11.95,2019-01-27 09:01:00,851 Sunset St, Boston,MA,02215 +149904,AA Batteries (4-pack),1,3.84,2019-01-11 08:53:00,60 Park St, Los Angeles,CA,90001 +149905,Bose SoundSport Headphones,1,99.99,2019-01-21 21:18:00,757 Ridge St, Seattle,WA,98101 +149906,USB-C Charging Cable,1,11.95,2019-01-19 04:43:00,719 Elm St, New York City,NY,10001 +149906,iPhone,1,700.0,2019-01-19 04:43:00,719 Elm St, New York City,NY,10001 +149907,Google Phone,1,600.0,2019-01-31 11:01:00,537 14th St, San Francisco,CA,94016 +149908,AAA Batteries (4-pack),4,2.99,2019-01-09 19:27:00,594 Sunset St, New York City,NY,10001 +149909,27in 4K Gaming Monitor,1,389.99,2019-01-26 11:14:00,387 Johnson St, Portland,OR,97035 +149910,Wired Headphones,1,11.99,2019-01-22 18:52:00,957 Hickory St, Atlanta,GA,30301 +149911,Bose SoundSport Headphones,1,99.99,2019-01-04 21:33:00,990 Wilson St, Dallas,TX,75001 +149912,Wired Headphones,1,11.99,2019-01-01 13:10:00,750 Highland St, Austin,TX,73301 +149913,Bose SoundSport Headphones,1,99.99,2019-01-06 11:04:00,227 South St, New York City,NY,10001 +149914,iPhone,1,700.0,2019-01-24 20:13:00,910 Lakeview St, San Francisco,CA,94016 +149915,AA Batteries (4-pack),1,3.84,2019-01-31 16:17:00,872 5th St, San Francisco,CA,94016 +149916,Lightning Charging Cable,1,14.95,2019-01-02 16:45:00,886 7th St, New York City,NY,10001 +149917,AA Batteries (4-pack),1,3.84,2019-01-06 21:27:00,893 Lincoln St, Boston,MA,02215 +149918,Apple Airpods Headphones,1,150.0,2019-01-26 18:15:00,333 Hickory St, San Francisco,CA,94016 +149919,AA Batteries (4-pack),2,3.84,2019-01-31 22:05:00,681 Cedar St, Los Angeles,CA,90001 +149920,20in Monitor,1,109.99,2019-01-11 15:56:00,278 Lakeview St, New York City,NY,10001 +149921,AA Batteries (4-pack),1,3.84,2019-01-14 10:04:00,423 Lakeview St, New York City,NY,10001 +149922,Bose SoundSport Headphones,1,99.99,2019-01-23 19:33:00,428 11th St, Boston,MA,02215 +149923,Lightning Charging Cable,1,14.95,2019-01-10 18:45:00,886 9th St, New York City,NY,10001 +149924,27in 4K Gaming Monitor,1,389.99,2019-01-07 16:04:00,492 14th St, San Francisco,CA,94016 +149925,AAA Batteries (4-pack),2,2.99,2019-01-26 17:28:00,62 Church St, Seattle,WA,98101 +149926,iPhone,1,700.0,2019-01-01 09:33:00,442 Jackson St, Atlanta,GA,30301 +149927,20in Monitor,1,109.99,2019-01-29 10:32:00,391 Highland St, Portland,OR,97035 +149928,AAA Batteries (4-pack),2,2.99,2019-01-20 07:50:00,501 4th St, Los Angeles,CA,90001 +149929,27in 4K Gaming Monitor,1,389.99,2019-01-01 10:02:00,167 Johnson St, New York City,NY,10001 +149930,27in FHD Monitor,1,149.99,2019-01-15 08:26:00,27 5th St, New York City,NY,10001 +149931,iPhone,1,700.0,2019-01-16 15:24:00,800 Sunset St, Portland,OR,97035 +149931,USB-C Charging Cable,1,11.95,2019-01-16 15:24:00,800 Sunset St, Portland,OR,97035 +149932,Bose SoundSport Headphones,1,99.99,2019-01-12 07:58:00,406 10th St, Dallas,TX,75001 +149933,LG Dryer,1,600.0,2019-01-02 11:31:00,842 Jefferson St, Atlanta,GA,30301 +149934,Apple Airpods Headphones,1,150.0,2019-01-30 22:01:00,831 West St, Dallas,TX,75001 +149935,Lightning Charging Cable,1,14.95,2019-01-07 13:13:00,675 Willow St, Atlanta,GA,30301 +149936,Google Phone,1,600.0,2019-01-20 13:13:00,148 Elm St, New York City,NY,10001 +149936,USB-C Charging Cable,1,11.95,2019-01-20 13:13:00,148 Elm St, New York City,NY,10001 +149936,Bose SoundSport Headphones,1,99.99,2019-01-20 13:13:00,148 Elm St, New York City,NY,10001 +149937,AAA Batteries (4-pack),2,2.99,2019-01-31 11:19:00,697 Hickory St, Atlanta,GA,30301 +149938,USB-C Charging Cable,1,11.95,2019-01-06 21:39:00,237 Hickory St, San Francisco,CA,94016 +149939,AA Batteries (4-pack),1,3.84,2019-01-29 13:46:00,63 Lakeview St, New York City,NY,10001 +149940,Lightning Charging Cable,1,14.95,2019-01-01 16:31:00,720 River St, San Francisco,CA,94016 +149941,Wired Headphones,2,11.99,2019-01-26 09:59:00,25 Jefferson St, Portland,OR,97035 +149942,Macbook Pro Laptop,1,1700.0,2019-01-05 08:13:00,122 River St, Boston,MA,02215 +149943,AAA Batteries (4-pack),1,2.99,2019-01-25 02:30:00,918 12th St, San Francisco,CA,94016 +149944,20in Monitor,1,109.99,2019-01-07 21:34:00,653 Church St, New York City,NY,10001 +149945,AAA Batteries (4-pack),2,2.99,2019-01-15 20:40:00,110 Main St, Atlanta,GA,30301 +149946,AA Batteries (4-pack),1,3.84,2019-01-17 16:24:00,836 River St, New York City,NY,10001 +149947,Apple Airpods Headphones,1,150.0,2019-01-31 17:37:00,265 Cedar St, Seattle,WA,98101 +149948,Bose SoundSport Headphones,1,99.99,2019-01-09 00:05:00,833 Hickory St, New York City,NY,10001 +149949,USB-C Charging Cable,1,11.95,2019-01-15 13:40:00,599 Cedar St, San Francisco,CA,94016 +149950,Apple Airpods Headphones,1,150.0,2019-01-25 12:49:00,174 Jackson St, Atlanta,GA,30301 +149951,USB-C Charging Cable,1,11.95,2019-01-25 11:34:00,660 Adams St, Austin,TX,73301 +149952,20in Monitor,1,109.99,2019-01-06 18:10:00,200 Walnut St, Los Angeles,CA,90001 +149953,USB-C Charging Cable,2,11.95,2019-01-17 11:41:00,605 2nd St, Boston,MA,02215 +149954,Vareebadd Phone,1,400.0,2019-01-22 16:27:00,516 South St, Seattle,WA,98101 +149954,USB-C Charging Cable,1,11.95,2019-01-22 16:27:00,516 South St, Seattle,WA,98101 +149955,AAA Batteries (4-pack),2,2.99,2019-01-25 16:24:00,846 Main St, Seattle,WA,98101 +149956,Flatscreen TV,1,300.0,2019-01-21 13:16:00,716 West St, Dallas,TX,75001 +149957,AA Batteries (4-pack),1,3.84,2019-01-16 07:57:00,619 Main St, Austin,TX,73301 +149958,Flatscreen TV,1,300.0,2019-01-13 23:28:00,994 Ridge St, Dallas,TX,75001 +149959,Apple Airpods Headphones,1,150.0,2019-01-10 19:08:00,621 12th St, San Francisco,CA,94016 +149960,USB-C Charging Cable,1,11.95,2019-01-15 18:31:00,325 Main St, San Francisco,CA,94016 +149961,USB-C Charging Cable,1,11.95,2019-01-28 20:28:00,459 Ridge St, Boston,MA,02215 +149962,27in 4K Gaming Monitor,1,389.99,2019-01-10 20:19:00,792 11th St, San Francisco,CA,94016 +149962,USB-C Charging Cable,1,11.95,2019-01-10 20:19:00,792 11th St, San Francisco,CA,94016 +149963,27in 4K Gaming Monitor,1,389.99,2019-01-05 20:49:00,681 North St, Boston,MA,02215 +149964,AAA Batteries (4-pack),1,2.99,2019-01-01 05:53:00,75 Jackson St, Dallas,TX,75001 +149965,27in FHD Monitor,1,149.99,2019-01-24 10:27:00,852 Center St, San Francisco,CA,94016 +149966,Lightning Charging Cable,1,14.95,2019-01-25 13:33:00,870 Maple St, Austin,TX,73301 +149967,USB-C Charging Cable,1,11.95,2019-01-07 17:00:00,812 Meadow St, San Francisco,CA,94016 +149968,AA Batteries (4-pack),1,3.84,2019-01-19 08:11:00,876 Hickory St, Portland,OR,97035 +149969,USB-C Charging Cable,1,11.95,2019-01-13 11:04:00,98 Jefferson St, Boston,MA,02215 +149970,27in FHD Monitor,1,149.99,2019-01-06 07:29:00,598 9th St, San Francisco,CA,94016 +149971,iPhone,1,700.0,2019-01-27 18:40:00,205 Sunset St, Seattle,WA,98101 +149972,AA Batteries (4-pack),4,3.84,2019-01-22 12:23:00,492 Park St, Atlanta,GA,30301 +149973,AAA Batteries (4-pack),1,2.99,2019-01-21 17:15:00,615 6th St, San Francisco,CA,94016 +149974,Apple Airpods Headphones,1,150.0,2019-01-21 22:37:00,854 Cherry St, Seattle,WA,98101 +149975,Bose SoundSport Headphones,1,99.99,2019-01-10 09:21:00,937 8th St, Los Angeles,CA,90001 +149976,20in Monitor,1,109.99,2019-01-27 12:50:00,81 Elm St, Seattle,WA,98101 +149977,Bose SoundSport Headphones,1,99.99,2019-01-25 18:19:00,182 South St, San Francisco,CA,94016 +149978,AAA Batteries (4-pack),1,2.99,2019-01-31 13:58:00,70 Jackson St, Atlanta,GA,30301 +149979,Bose SoundSport Headphones,1,99.99,2019-01-11 09:15:00,707 Highland St, Austin,TX,73301 +149980,Apple Airpods Headphones,1,150.0,2019-01-17 13:52:00,640 Hill St, Seattle,WA,98101 +149981,LG Dryer,1,600.0,2019-01-04 21:30:00,661 Forest St, Boston,MA,02215 +149982,AA Batteries (4-pack),1,3.84,2019-01-14 12:06:00,347 Lake St, Boston,MA,02215 +149983,Macbook Pro Laptop,1,1700.0,2019-01-22 12:31:00,149 Wilson St, New York City,NY,10001 +149984,AA Batteries (4-pack),4,3.84,2019-01-05 23:34:00,985 Forest St, Los Angeles,CA,90001 +149985,iPhone,1,700.0,2019-01-23 14:33:00,818 Lakeview St, San Francisco,CA,94016 +149985,Lightning Charging Cable,1,14.95,2019-01-23 14:33:00,818 Lakeview St, San Francisco,CA,94016 +149986,Google Phone,1,600.0,2019-01-06 15:42:00,539 7th St, New York City,NY,10001 +149986,Wired Headphones,1,11.99,2019-01-06 15:42:00,539 7th St, New York City,NY,10001 +149987,Lightning Charging Cable,1,14.95,2019-01-09 12:04:00,58 South St, San Francisco,CA,94016 +149988,iPhone,1,700.0,2019-01-03 09:49:00,120 Dogwood St, San Francisco,CA,94016 +149989,Apple Airpods Headphones,1,150.0,2019-01-29 22:21:00,289 10th St, New York City,NY,10001 +149990,Bose SoundSport Headphones,1,99.99,2019-01-14 16:42:00,271 River St, Boston,MA,02215 +149991,Wired Headphones,1,11.99,2019-01-10 10:19:00,408 10th St, Boston,MA,02215 +149992,iPhone,1,700.0,2019-01-06 20:03:00,516 Willow St, Atlanta,GA,30301 +149993,Google Phone,1,600.0,2019-01-24 10:58:00,17 Jackson St, Atlanta,GA,30301 +149994,AAA Batteries (4-pack),1,2.99,2019-01-17 10:01:00,400 Wilson St, Boston,MA,02215 +149995,ThinkPad Laptop,1,999.99,2019-01-06 00:26:00,364 Spruce St, Seattle,WA,98101 +149996,34in Ultrawide Monitor,1,379.99,2019-01-01 11:35:00,338 North St, New York City,NY,10001 +149997,LG Washing Machine,1,600.0,2019-01-03 16:25:00,428 Lakeview St, Los Angeles,CA,90001 +149998,Flatscreen TV,1,300.0,2019-01-26 23:30:00,370 South St, Dallas,TX,75001 +149999,AA Batteries (4-pack),1,3.84,2019-01-19 00:27:00,991 Wilson St, Austin,TX,73301 +150000,27in 4K Gaming Monitor,1,389.99,2019-01-25 22:03:00,455 Forest St, Los Angeles,CA,90001 +150001,Apple Airpods Headphones,1,150.0,2019-01-26 16:26:00,816 9th St, San Francisco,CA,94016 +150002,Google Phone,1,600.0,2019-01-24 09:38:00,479 Park St, San Francisco,CA,94016 +150003,Lightning Charging Cable,1,14.95,2019-01-27 05:03:00,79 Lakeview St, Atlanta,GA,30301 +150004,27in FHD Monitor,1,149.99,2019-01-27 21:06:00,763 7th St, San Francisco,CA,94016 +150005,Lightning Charging Cable,1,14.95,2019-01-27 20:50:00,176 1st St, San Francisco,CA,94016 +150006,20in Monitor,1,109.99,2019-01-24 17:15:00,606 Church St, Seattle,WA,98101 +150007,Lightning Charging Cable,1,14.95,2019-01-07 20:17:00,132 North St, San Francisco,CA,94016 +150008,Lightning Charging Cable,1,14.95,2019-01-30 09:28:00,558 14th St, San Francisco,CA,94016 +150009,Wired Headphones,1,11.99,2019-01-27 09:16:00,109 Lake St, San Francisco,CA,94016 +150010,27in FHD Monitor,1,149.99,2019-01-16 14:45:00,914 Madison St, Boston,MA,02215 +150011,Lightning Charging Cable,1,14.95,2019-01-29 11:39:00,971 Cherry St, San Francisco,CA,94016 +150012,Lightning Charging Cable,1,14.95,2019-01-24 15:56:00,1 Highland St, Portland,OR,97035 +150013,27in FHD Monitor,1,149.99,2019-01-10 20:45:00,543 Ridge St, San Francisco,CA,94016 +150014,USB-C Charging Cable,1,11.95,2019-01-10 14:25:00,856 Jackson St, San Francisco,CA,94016 +150015,AAA Batteries (4-pack),1,2.99,2019-01-15 13:08:00,895 South St, New York City,NY,10001 +150016,AA Batteries (4-pack),1,3.84,2019-01-12 10:45:00,576 Center St, Los Angeles,CA,90001 +150017,Wired Headphones,1,11.99,2019-01-23 20:54:00,4 1st St, New York City,NY,10001 +150018,Wired Headphones,1,11.99,2019-01-09 05:21:00,424 7th St, New York City,NY,10001 +150019,Wired Headphones,1,11.99,2019-01-16 14:20:00,741 Park St, Portland,OR,97035 +150020,Flatscreen TV,1,300.0,2019-01-20 11:21:00,169 7th St, New York City,NY,10001 +150021,Bose SoundSport Headphones,1,99.99,2019-01-22 20:53:00,281 12th St, San Francisco,CA,94016 +150022,Wired Headphones,1,11.99,2019-01-20 16:23:00,474 Jefferson St, Los Angeles,CA,90001 +150023,AAA Batteries (4-pack),2,2.99,2019-01-01 19:11:00,579 Ridge St, Austin,TX,73301 +150024,Bose SoundSport Headphones,1,99.99,2019-01-16 12:36:00,258 5th St, Los Angeles,CA,90001 +150025,27in 4K Gaming Monitor,1,389.99,2019-01-16 18:40:00,640 Main St, Atlanta,GA,30301 +150026,ThinkPad Laptop,1,999.99,2019-01-25 14:46:00,247 Hickory St, San Francisco,CA,94016 +150027,27in 4K Gaming Monitor,1,389.99,2019-01-07 11:20:00,345 4th St, Seattle,WA,98101 +150028,USB-C Charging Cable,1,11.95,2019-01-21 13:32:00,702 Hickory St, Atlanta,GA,30301 +150029,27in FHD Monitor,1,149.99,2019-01-03 04:34:00,781 Willow St, San Francisco,CA,94016 +150029,Wired Headphones,1,11.99,2019-01-03 04:34:00,781 Willow St, San Francisco,CA,94016 +150030,Bose SoundSport Headphones,1,99.99,2019-01-21 17:52:00,153 Church St, Boston,MA,02215 +150031,Apple Airpods Headphones,1,150.0,2019-01-04 10:54:00,555 Willow St, Los Angeles,CA,90001 +150032,AAA Batteries (4-pack),1,2.99,2019-01-05 19:26:00,425 13th St, New York City,NY,10001 +150033,Lightning Charging Cable,1,14.95,2019-01-27 18:56:00,816 7th St, Los Angeles,CA,90001 +150034,Google Phone,1,600.0,2019-01-17 21:54:00,841 Hickory St, Los Angeles,CA,90001 +150034,USB-C Charging Cable,2,11.95,2019-01-17 21:54:00,841 Hickory St, Los Angeles,CA,90001 +150034,Wired Headphones,1,11.99,2019-01-17 21:54:00,841 Hickory St, Los Angeles,CA,90001 +150035,Vareebadd Phone,1,400.0,2019-01-06 19:47:00,71 North St, Seattle,WA,98101 +150036,Apple Airpods Headphones,1,150.0,2019-01-12 18:21:00,819 Lakeview St, San Francisco,CA,94016 +150037,27in FHD Monitor,1,149.99,2019-01-29 17:04:00,762 Meadow St, New York City,NY,10001 +150038,20in Monitor,1,109.99,2019-01-01 12:50:00,191 13th St, Dallas,TX,75001 +150039,Apple Airpods Headphones,1,150.0,2019-01-08 08:13:00,943 Willow St, San Francisco,CA,94016 +150040,Bose SoundSport Headphones,1,99.99,2019-01-03 15:23:00,205 Highland St, New York City,NY,10001 +150041,Apple Airpods Headphones,1,150.0,2019-01-04 11:16:00,246 Hill St, Portland,ME,04101 +150042,Bose SoundSport Headphones,1,99.99,2019-01-25 20:34:00,585 8th St, New York City,NY,10001 +150043,AA Batteries (4-pack),2,3.84,2019-01-16 09:54:00,874 11th St, Seattle,WA,98101 +150044,Bose SoundSport Headphones,1,99.99,2019-01-26 18:29:00,746 Sunset St, San Francisco,CA,94016 +150045,Wired Headphones,1,11.99,2019-01-16 19:49:00,644 Walnut St, Los Angeles,CA,90001 +150046,AAA Batteries (4-pack),1,2.99,2019-01-29 12:46:00,604 12th St, San Francisco,CA,94016 +150047,AA Batteries (4-pack),1,3.84,2019-01-07 09:51:00,998 Sunset St, Austin,TX,73301 +150048,27in 4K Gaming Monitor,1,389.99,2019-01-10 21:56:00,460 Elm St, San Francisco,CA,94016 +150049,AAA Batteries (4-pack),1,2.99,2019-01-25 16:25:00,280 Adams St, Atlanta,GA,30301 +150050,AA Batteries (4-pack),2,3.84,2019-01-02 11:15:00,175 Johnson St, Los Angeles,CA,90001 +150051,Lightning Charging Cable,1,14.95,2019-01-07 16:23:00,153 River St, San Francisco,CA,94016 +150051,Bose SoundSport Headphones,1,99.99,2019-01-07 16:23:00,153 River St, San Francisco,CA,94016 +150052,AAA Batteries (4-pack),2,2.99,2019-01-11 12:29:00,144 7th St, San Francisco,CA,94016 +150053,Flatscreen TV,1,300.0,2019-01-02 16:38:00,608 11th St, Atlanta,GA,30301 +150054,AAA Batteries (4-pack),2,2.99,2019-01-27 18:31:00,662 Church St, Los Angeles,CA,90001 +150055,27in FHD Monitor,1,149.99,2019-01-31 22:03:00,911 6th St, Dallas,TX,75001 +150056,Wired Headphones,2,11.99,2019-01-18 23:16:00,809 River St, Boston,MA,02215 +150057,iPhone,1,700.0,2019-01-26 14:58:00,380 Highland St, Dallas,TX,75001 +150057,Lightning Charging Cable,1,14.95,2019-01-26 14:58:00,380 Highland St, Dallas,TX,75001 +150058,20in Monitor,1,109.99,2019-01-10 06:27:00,519 Center St, Boston,MA,02215 +150059,Wired Headphones,1,11.99,2019-01-11 19:56:00,278 7th St, Atlanta,GA,30301 +150060,Macbook Pro Laptop,1,1700.0,2019-01-20 10:37:00,454 Jefferson St, Austin,TX,73301 +150061,Apple Airpods Headphones,1,150.0,2019-01-17 15:23:00,203 Chestnut St, Dallas,TX,75001 +150062,Bose SoundSport Headphones,1,99.99,2019-01-30 17:14:00,633 North St, Seattle,WA,98101 +150063,Macbook Pro Laptop,1,1700.0,2019-01-22 02:29:00,92 5th St, Austin,TX,73301 +150064,Apple Airpods Headphones,1,150.0,2019-01-03 15:27:00,354 Cherry St, Portland,ME,04101 +150065,AA Batteries (4-pack),2,3.84,2019-01-04 09:21:00,269 Highland St, Boston,MA,02215 +150066,Wired Headphones,1,11.99,2019-01-07 12:46:00,699 Jackson St, San Francisco,CA,94016 +150067,AAA Batteries (4-pack),1,2.99,2019-01-08 12:09:00,355 South St, Seattle,WA,98101 +150068,AAA Batteries (4-pack),1,2.99,2019-01-10 08:55:00,76 10th St, Atlanta,GA,30301 +150069,20in Monitor,1,109.99,2019-01-18 19:42:00,385 Cherry St, Portland,OR,97035 +150070,Apple Airpods Headphones,1,150.0,2019-01-05 00:09:00,564 River St, San Francisco,CA,94016 +150071,USB-C Charging Cable,1,11.95,2019-01-16 06:07:00,931 Chestnut St, Boston,MA,02215 +150072,27in 4K Gaming Monitor,1,389.99,2019-01-17 17:29:00,284 5th St, New York City,NY,10001 +150073,AAA Batteries (4-pack),1,2.99,2019-01-31 16:49:00,68 14th St, New York City,NY,10001 +150074,AAA Batteries (4-pack),1,2.99,2019-01-16 10:35:00,866 Lakeview St, Los Angeles,CA,90001 +150075,AA Batteries (4-pack),1,3.84,2019-01-23 16:39:00,576 Jackson St, Los Angeles,CA,90001 +150076,USB-C Charging Cable,1,11.95,2019-01-29 09:09:00,889 Hill St, Los Angeles,CA,90001 +150077,LG Dryer,1,600.0,2019-01-06 21:27:00,471 North St, New York City,NY,10001 +150078,ThinkPad Laptop,1,999.99,2019-01-19 10:50:00,754 North St, Portland,OR,97035 +150079,Wired Headphones,1,11.99,2019-01-30 19:21:00,248 Jackson St, New York City,NY,10001 +150080,Apple Airpods Headphones,1,150.0,2019-01-08 09:32:00,296 8th St, Atlanta,GA,30301 +150081,Apple Airpods Headphones,1,150.0,2019-01-16 21:49:00,405 Center St, New York City,NY,10001 +150082,ThinkPad Laptop,1,999.99,2019-01-07 07:30:00,717 4th St, Atlanta,GA,30301 +150083,Wired Headphones,1,11.99,2019-01-26 15:10:00,532 Johnson St, Los Angeles,CA,90001 +150084,iPhone,1,700.0,2019-01-18 17:28:00,101 River St, San Francisco,CA,94016 +150084,Apple Airpods Headphones,1,150.0,2019-01-18 17:28:00,101 River St, San Francisco,CA,94016 +150085,AA Batteries (4-pack),1,3.84,2019-01-21 14:23:00,94 9th St, Boston,MA,02215 +150086,Wired Headphones,1,11.99,2019-01-27 23:47:00,564 Center St, Dallas,TX,75001 +150087,Macbook Pro Laptop,1,1700.0,2019-01-01 17:02:00,276 Cedar St, Portland,OR,97035 +150088,34in Ultrawide Monitor,1,379.99,2019-01-01 16:35:00,505 Lakeview St, Austin,TX,73301 +150089,Bose SoundSport Headphones,1,99.99,2019-01-08 09:47:00,79 River St, New York City,NY,10001 +150090,ThinkPad Laptop,1,999.99,2019-01-21 20:29:00,263 Lincoln St, Atlanta,GA,30301 +150091,AA Batteries (4-pack),1,3.84,2019-01-28 18:17:00,126 Sunset St, Dallas,TX,75001 +150092,iPhone,1,700.0,2019-01-07 09:05:00,46 Cedar St, Los Angeles,CA,90001 +150093,Flatscreen TV,1,300.0,2019-01-24 09:09:00,289 13th St, Boston,MA,02215 +150094,ThinkPad Laptop,1,999.99,2019-01-27 10:32:00,181 Church St, San Francisco,CA,94016 +150095,AAA Batteries (4-pack),1,2.99,2019-01-07 01:32:00,57 Park St, Dallas,TX,75001 +150096,USB-C Charging Cable,1,11.95,2019-01-13 20:22:00,566 Dogwood St, Dallas,TX,75001 +150097,AAA Batteries (4-pack),1,2.99,2019-01-17 20:15:00,243 North St, New York City,NY,10001 +150098,Apple Airpods Headphones,1,150.0,2019-01-29 07:54:00,540 Hickory St, Austin,TX,73301 +150099,Lightning Charging Cable,1,14.95,2019-01-17 18:57:00,110 Pine St, Atlanta,GA,30301 +150100,Lightning Charging Cable,1,14.95,2019-01-27 16:18:00,569 Park St, Dallas,TX,75001 +150101,USB-C Charging Cable,1,11.95,2019-01-28 16:06:00,393 Sunset St, Seattle,WA,98101 +150102,Wired Headphones,1,11.99,2019-01-04 16:44:00,223 4th St, San Francisco,CA,94016 +150103,AA Batteries (4-pack),2,3.84,2019-01-06 19:29:00,121 South St, Dallas,TX,75001 +150104,USB-C Charging Cable,1,11.95,2019-01-26 15:45:00,748 Cedar St, New York City,NY,10001 +150105,AAA Batteries (4-pack),1,2.99,2019-01-05 12:56:00,11 7th St, San Francisco,CA,94016 +150106,AA Batteries (4-pack),1,3.84,2019-01-24 11:59:00,818 West St, New York City,NY,10001 +150107,Wired Headphones,1,11.99,2019-01-06 17:56:00,692 Forest St, Dallas,TX,75001 +150108,34in Ultrawide Monitor,1,379.99,2019-01-06 13:39:00,638 Willow St, Boston,MA,02215 +150109,AA Batteries (4-pack),1,3.84,2019-01-06 16:08:00,570 Spruce St, San Francisco,CA,94016 +150110,Apple Airpods Headphones,1,150.0,2019-01-29 17:35:00,909 Lake St, San Francisco,CA,94016 +150111,Wired Headphones,1,11.99,2019-01-28 21:17:00,78 West St, San Francisco,CA,94016 +150112,Lightning Charging Cable,2,14.95,2019-01-05 06:58:00,820 Cedar St, Dallas,TX,75001 +150113,Wired Headphones,1,11.99,2019-01-20 13:14:00,770 6th St, New York City,NY,10001 +150114,AA Batteries (4-pack),1,3.84,2019-01-21 16:28:00,370 Forest St, San Francisco,CA,94016 +150115,AA Batteries (4-pack),1,3.84,2019-01-06 16:15:00,902 Spruce St, Seattle,WA,98101 +150116,Apple Airpods Headphones,1,150.0,2019-01-06 00:12:00,455 Washington St, Seattle,WA,98101 +150117,27in FHD Monitor,1,149.99,2019-01-06 13:09:00,334 Jefferson St, Los Angeles,CA,90001 +150118,AA Batteries (4-pack),1,3.84,2019-01-07 00:31:00,581 Chestnut St, San Francisco,CA,94016 +150119,AA Batteries (4-pack),1,3.84,2019-01-18 16:39:00,277 Forest St, San Francisco,CA,94016 +150120,Wired Headphones,1,11.99,2019-01-30 12:06:00,969 Meadow St, Los Angeles,CA,90001 +150121,AAA Batteries (4-pack),1,2.99,2019-01-30 18:50:00,818 Washington St, New York City,NY,10001 +150122,AA Batteries (4-pack),1,3.84,2019-01-20 01:14:00,748 Park St, Dallas,TX,75001 +150123,USB-C Charging Cable,1,11.95,2019-01-23 15:08:00,789 4th St, Austin,TX,73301 +150124,Apple Airpods Headphones,1,150.0,2019-01-08 16:53:00,156 11th St, San Francisco,CA,94016 +150125,20in Monitor,1,109.99,2019-01-10 13:50:00,153 Hickory St, Austin,TX,73301 +150126,Lightning Charging Cable,1,14.95,2019-01-28 18:27:00,46 Cherry St, New York City,NY,10001 +150127,USB-C Charging Cable,1,11.95,2019-01-03 22:56:00,191 Hill St, San Francisco,CA,94016 +150128,Bose SoundSport Headphones,1,99.99,2019-01-10 16:40:00,729 14th St, Portland,ME,04101 +150129,34in Ultrawide Monitor,1,379.99,2019-01-11 08:50:00,689 Chestnut St, Portland,ME,04101 +150130,ThinkPad Laptop,1,999.99,2019-01-11 10:31:00,123 Hill St, San Francisco,CA,94016 +150131,Bose SoundSport Headphones,1,99.99,2019-01-06 16:52:00,668 12th St, Seattle,WA,98101 +150132,Wired Headphones,1,11.99,2019-01-25 20:16:00,115 Willow St, New York City,NY,10001 +150133,USB-C Charging Cable,1,11.95,2019-01-18 06:28:00,241 10th St, San Francisco,CA,94016 +150134,Lightning Charging Cable,1,14.95,2019-01-24 17:00:00,737 8th St, Los Angeles,CA,90001 +150135,Bose SoundSport Headphones,1,99.99,2019-01-12 08:31:00,508 North St, Boston,MA,02215 +150136,USB-C Charging Cable,1,11.95,2019-01-09 21:46:00,663 5th St, Atlanta,GA,30301 +150137,USB-C Charging Cable,1,11.95,2019-01-12 17:46:00,984 Lincoln St, San Francisco,CA,94016 +150138,Lightning Charging Cable,1,14.95,2019-01-25 13:50:00,144 Cedar St, New York City,NY,10001 +150139,27in FHD Monitor,1,149.99,2019-01-15 06:55:00,979 Main St, San Francisco,CA,94016 +150140,Apple Airpods Headphones,1,150.0,2019-01-27 16:17:00,234 Lakeview St, New York City,NY,10001 +150141,27in 4K Gaming Monitor,1,389.99,2019-01-24 17:27:00,916 2nd St, New York City,NY,10001 +150142,Macbook Pro Laptop,1,1700.0,2019-01-08 08:03:00,131 Johnson St, Los Angeles,CA,90001 +150143,AA Batteries (4-pack),4,3.84,2019-01-17 12:37:00,201 Cherry St, Portland,OR,97035 +150144,AA Batteries (4-pack),2,3.84,2019-01-10 12:23:00,434 Park St, Seattle,WA,98101 +150145,USB-C Charging Cable,1,11.95,2019-01-30 13:13:00,622 13th St, Boston,MA,02215 +150146,iPhone,1,700.0,2019-01-14 09:18:00,159 Adams St, Seattle,WA,98101 +150147,20in Monitor,1,109.99,2019-01-02 01:07:00,541 Elm St, Los Angeles,CA,90001 +150148,AA Batteries (4-pack),2,3.84,2019-01-02 18:02:00,648 Elm St, Los Angeles,CA,90001 +150149,USB-C Charging Cable,1,11.95,2019-01-31 22:24:00,777 Willow St, San Francisco,CA,94016 +150150,USB-C Charging Cable,2,11.95,2019-01-21 16:43:00,516 14th St, San Francisco,CA,94016 +150151,Apple Airpods Headphones,1,150.0,2019-01-23 12:37:00,724 Pine St, San Francisco,CA,94016 +150152,Lightning Charging Cable,1,14.95,2019-01-02 22:48:00,493 Cherry St, New York City,NY,10001 +150153,Lightning Charging Cable,1,14.95,2019-01-10 23:42:00,57 Forest St, Los Angeles,CA,90001 +150154,USB-C Charging Cable,1,11.95,2019-01-21 21:56:00,87 10th St, Boston,MA,02215 +150155,USB-C Charging Cable,1,11.95,2019-01-27 15:24:00,557 Lincoln St, Dallas,TX,75001 +150156,Apple Airpods Headphones,1,150.0,2019-01-11 10:10:00,38 Elm St, Seattle,WA,98101 +150157,USB-C Charging Cable,1,11.95,2019-01-24 01:08:00,105 Jefferson St, New York City,NY,10001 +150158,Apple Airpods Headphones,1,150.0,2019-01-02 15:28:00,9 Wilson St, Los Angeles,CA,90001 +150159,Wired Headphones,1,11.99,2019-01-31 12:00:00,896 Main St, Boston,MA,02215 +150160,27in FHD Monitor,1,149.99,2019-01-24 13:44:00,237 Spruce St, Seattle,WA,98101 +150161,Lightning Charging Cable,1,14.95,2019-01-22 14:30:00,77 2nd St, Portland,OR,97035 +150162,ThinkPad Laptop,1,999.99,2019-01-05 20:20:00,31 1st St, San Francisco,CA,94016 +150163,Lightning Charging Cable,1,14.95,2019-01-30 15:45:00,372 South St, Los Angeles,CA,90001 +150164,Wired Headphones,1,11.99,2019-01-27 00:19:00,908 Meadow St, San Francisco,CA,94016 +150165,AAA Batteries (4-pack),1,2.99,2019-01-22 21:14:00,367 11th St, Portland,OR,97035 +150166,AA Batteries (4-pack),1,3.84,2019-01-02 05:32:00,638 7th St, Seattle,WA,98101 +150167,Lightning Charging Cable,2,14.95,2019-01-06 19:35:00,592 Lake St, Atlanta,GA,30301 +150168,AA Batteries (4-pack),1,3.84,2019-01-23 15:25:00,753 Johnson St, New York City,NY,10001 +150169,Bose SoundSport Headphones,1,99.99,2019-01-29 16:10:00,855 Maple St, New York City,NY,10001 +150170,AA Batteries (4-pack),1,3.84,2019-01-06 09:48:00,722 Main St, San Francisco,CA,94016 +150171,Lightning Charging Cable,1,14.95,2019-01-17 13:24:00,586 Madison St, San Francisco,CA,94016 +150172,USB-C Charging Cable,1,11.95,2019-01-28 22:55:00,394 Spruce St, Atlanta,GA,30301 +150173,Google Phone,1,600.0,2019-01-18 09:16:00,668 Park St, San Francisco,CA,94016 +150174,Apple Airpods Headphones,1,150.0,2019-01-31 17:42:00,197 Highland St, New York City,NY,10001 +150175,34in Ultrawide Monitor,1,379.99,2019-01-01 16:44:00,16 2nd St, Los Angeles,CA,90001 +150176,AAA Batteries (4-pack),1,2.99,2019-01-20 16:40:00,884 Maple St, San Francisco,CA,94016 +150177,Lightning Charging Cable,1,14.95,2019-01-29 12:03:00,56 Lakeview St, New York City,NY,10001 +150178,34in Ultrawide Monitor,1,379.99,2019-01-30 21:17:00,872 Highland St, New York City,NY,10001 +150179,AAA Batteries (4-pack),2,2.99,2019-01-24 22:02:00,192 Hickory St, New York City,NY,10001 +150180,AAA Batteries (4-pack),1,2.99,2019-01-29 20:07:00,298 Lakeview St, Seattle,WA,98101 +150181,Google Phone,1,600.0,2019-01-06 07:09:00,505 Lake St, New York City,NY,10001 +150182,27in 4K Gaming Monitor,1,389.99,2019-01-13 03:32:00,864 4th St, Dallas,TX,75001 +150183,USB-C Charging Cable,2,11.95,2019-01-09 20:24:00,102 Johnson St, Seattle,WA,98101 +150184,AA Batteries (4-pack),2,3.84,2019-01-05 12:34:00,580 Chestnut St, Portland,OR,97035 +150185,AAA Batteries (4-pack),1,2.99,2019-01-17 11:47:00,492 6th St, Austin,TX,73301 +150185,USB-C Charging Cable,1,11.95,2019-01-17 11:47:00,492 6th St, Austin,TX,73301 +150186,27in 4K Gaming Monitor,1,389.99,2019-01-08 11:05:00,355 Willow St, Seattle,WA,98101 +150187,USB-C Charging Cable,1,11.95,2019-01-04 11:26:00,11 West St, Seattle,WA,98101 +150188,AAA Batteries (4-pack),1,2.99,2019-01-31 01:37:00,524 Wilson St, New York City,NY,10001 +150189,Lightning Charging Cable,1,14.95,2019-01-10 19:29:00,280 Willow St, Los Angeles,CA,90001 +150190,Bose SoundSport Headphones,1,99.99,2019-01-14 17:29:00,19 North St, San Francisco,CA,94016 +150191,AA Batteries (4-pack),1,3.84,2019-01-31 10:31:00,581 Maple St, Los Angeles,CA,90001 +150192,Vareebadd Phone,1,400.0,2019-01-15 15:24:00,640 Highland St, New York City,NY,10001 +150193,27in 4K Gaming Monitor,1,389.99,2019-01-14 18:05:00,639 Walnut St, Seattle,WA,98101 +150194,Lightning Charging Cable,1,14.95,2019-01-31 22:04:00,651 Church St, Austin,TX,73301 +150195,Apple Airpods Headphones,1,150.0,2019-01-04 02:42:00,43 North St, Los Angeles,CA,90001 +150196,AA Batteries (4-pack),1,3.84,2019-01-26 09:55:00,456 West St, San Francisco,CA,94016 +150197,Macbook Pro Laptop,1,1700.0,2019-01-31 12:54:00,42 Spruce St, New York City,NY,10001 +150198,Bose SoundSport Headphones,1,99.99,2019-01-05 21:29:00,791 West St, Los Angeles,CA,90001 +150199,27in 4K Gaming Monitor,1,389.99,2019-01-27 13:23:00,945 6th St, San Francisco,CA,94016 +150200,Wired Headphones,1,11.99,2019-01-25 06:23:00,94 Cherry St, Los Angeles,CA,90001 +150201,27in 4K Gaming Monitor,1,389.99,2019-01-13 18:11:00,37 Highland St, Atlanta,GA,30301 +150202,Google Phone,1,600.0,2019-01-08 15:32:00,712 Madison St, San Francisco,CA,94016 +150202,USB-C Charging Cable,1,11.95,2019-01-08 15:32:00,712 Madison St, San Francisco,CA,94016 +150202,Wired Headphones,1,11.99,2019-01-08 15:32:00,712 Madison St, San Francisco,CA,94016 +150203,Apple Airpods Headphones,1,150.0,2019-01-23 17:48:00,651 Jackson St, Dallas,TX,75001 +150204,27in FHD Monitor,1,149.99,2019-01-09 19:34:00,132 Maple St, Seattle,WA,98101 +150205,AAA Batteries (4-pack),1,2.99,2019-01-30 23:48:00,168 12th St, San Francisco,CA,94016 +150206,Google Phone,1,600.0,2019-01-13 18:55:00,443 Lake St, New York City,NY,10001 +150207,AA Batteries (4-pack),1,3.84,2019-01-05 14:31:00,544 Maple St, New York City,NY,10001 +150208,Bose SoundSport Headphones,1,99.99,2019-01-01 15:28:00,749 Ridge St, Seattle,WA,98101 +150209,Lightning Charging Cable,1,14.95,2019-01-23 23:33:00,523 12th St, Boston,MA,02215 +150209,USB-C Charging Cable,1,11.95,2019-01-23 23:33:00,523 12th St, Boston,MA,02215 +150210,USB-C Charging Cable,1,11.95,2019-01-29 15:15:00,26 5th St, Seattle,WA,98101 +150211,27in FHD Monitor,1,149.99,2019-01-19 00:11:00,232 Adams St, Los Angeles,CA,90001 +150212,AA Batteries (4-pack),2,3.84,2019-01-30 00:21:00,598 Lakeview St, Portland,OR,97035 +150213,USB-C Charging Cable,2,11.95,2019-01-03 00:40:00,800 11th St, Seattle,WA,98101 +150214,Wired Headphones,1,11.99,2019-01-12 23:53:00,423 Walnut St, Portland,ME,04101 +150215,Apple Airpods Headphones,1,150.0,2019-01-03 20:42:00,154 Lincoln St, San Francisco,CA,94016 +150216,Wired Headphones,1,11.99,2019-01-21 09:20:00,691 Pine St, San Francisco,CA,94016 +150217,Wired Headphones,1,11.99,2019-01-31 01:37:00,39 Center St, New York City,NY,10001 +150218,Bose SoundSport Headphones,1,99.99,2019-01-09 12:38:00,354 Park St, Los Angeles,CA,90001 +150219,AAA Batteries (4-pack),1,2.99,2019-01-26 18:50:00,143 Willow St, Portland,OR,97035 +150220,AAA Batteries (4-pack),1,2.99,2019-01-09 10:14:00,980 Dogwood St, San Francisco,CA,94016 +150221,Bose SoundSport Headphones,1,99.99,2019-01-28 10:26:00,296 10th St, Dallas,TX,75001 +150222,Lightning Charging Cable,1,14.95,2019-01-11 19:21:00,294 4th St, San Francisco,CA,94016 +150223,Bose SoundSport Headphones,1,99.99,2019-01-14 15:47:00,19 Ridge St, San Francisco,CA,94016 +150224,20in Monitor,1,109.99,2019-01-28 10:05:00,449 South St, San Francisco,CA,94016 +150225,Bose SoundSport Headphones,1,99.99,2019-01-27 19:39:00,825 Johnson St, Los Angeles,CA,90001 +150226,20in Monitor,1,109.99,2019-01-02 13:20:00,322 Elm St, Austin,TX,73301 +150227,Wired Headphones,1,11.99,2019-01-26 14:46:00,194 8th St, Boston,MA,02215 +150228,34in Ultrawide Monitor,1,379.99,2019-01-24 19:31:00,119 Elm St, Los Angeles,CA,90001 +150229,Bose SoundSport Headphones,1,99.99,2019-01-07 10:10:00,355 Hill St, San Francisco,CA,94016 +150230,34in Ultrawide Monitor,1,379.99,2019-01-01 18:55:00,485 Madison St, Atlanta,GA,30301 +150231,iPhone,1,700.0,2019-01-29 17:20:00,779 Center St, San Francisco,CA,94016 +150231,Wired Headphones,1,11.99,2019-01-29 17:20:00,779 Center St, San Francisco,CA,94016 +150232,iPhone,1,700.0,2019-01-31 09:04:00,194 Dogwood St, Seattle,WA,98101 +150232,Lightning Charging Cable,1,14.95,2019-01-31 09:04:00,194 Dogwood St, Seattle,WA,98101 +150233,Lightning Charging Cable,1,14.95,2019-01-29 09:10:00,959 Cedar St, New York City,NY,10001 +150234,Apple Airpods Headphones,1,150.0,2019-01-24 19:19:00,833 Dogwood St, Atlanta,GA,30301 +150235,AAA Batteries (4-pack),1,2.99,2019-01-07 19:33:00,142 Ridge St, Boston,MA,02215 +150236,Lightning Charging Cable,1,14.95,2019-01-01 13:21:00,139 Lincoln St, San Francisco,CA,94016 +150237,Lightning Charging Cable,1,14.95,2019-01-20 12:11:00,840 12th St, Boston,MA,02215 +150238,27in FHD Monitor,1,149.99,2019-01-13 11:03:00,777 Dogwood St, Los Angeles,CA,90001 +150239,USB-C Charging Cable,1,11.95,2019-01-18 20:01:00,212 Park St, San Francisco,CA,94016 +150240,Bose SoundSport Headphones,1,99.99,2019-01-13 08:22:00,294 6th St, Los Angeles,CA,90001 +150241,iPhone,1,700.0,2019-01-20 07:09:00,374 10th St, San Francisco,CA,94016 +150242,AAA Batteries (4-pack),2,2.99,2019-01-19 09:39:00,685 Cherry St, San Francisco,CA,94016 +150243,USB-C Charging Cable,1,11.95,2019-01-08 11:05:00,741 5th St, Seattle,WA,98101 +150244,AAA Batteries (4-pack),1,2.99,2019-01-23 18:20:00,995 Highland St, San Francisco,CA,94016 +150245,Google Phone,1,600.0,2019-01-20 18:29:00,217 Dogwood St, Boston,MA,02215 +150246,USB-C Charging Cable,1,11.95,2019-01-04 13:35:00,208 Hill St, San Francisco,CA,94016 +150247,27in FHD Monitor,1,149.99,2019-01-22 12:41:00,495 Cedar St, Dallas,TX,75001 +150248,Bose SoundSport Headphones,1,99.99,2019-01-11 20:06:00,317 Main St, San Francisco,CA,94016 +150249,iPhone,1,700.0,2019-01-29 15:29:00,709 Spruce St, Los Angeles,CA,90001 +150250,20in Monitor,1,109.99,2019-01-16 13:51:00,338 9th St, San Francisco,CA,94016 +150251,34in Ultrawide Monitor,1,379.99,2019-01-11 23:39:00,365 Jefferson St, San Francisco,CA,94016 +150252,34in Ultrawide Monitor,1,379.99,2019-01-31 14:50:00,193 4th St, Austin,TX,73301 +150253,Bose SoundSport Headphones,1,99.99,2019-01-03 21:16:00,555 8th St, Atlanta,GA,30301 +150254,Lightning Charging Cable,1,14.95,2019-01-29 11:08:00,401 Chestnut St, San Francisco,CA,94016 +150255,Bose SoundSport Headphones,1,99.99,2019-01-09 22:10:00,697 Chestnut St, San Francisco,CA,94016 +150256,ThinkPad Laptop,1,999.99,2019-01-15 09:41:00,540 Sunset St, Portland,OR,97035 +150257,27in 4K Gaming Monitor,1,389.99,2019-01-14 18:59:00,770 Forest St, San Francisco,CA,94016 +150258,20in Monitor,1,109.99,2019-01-24 13:35:00,551 Willow St, Austin,TX,73301 +150259,Wired Headphones,1,11.99,2019-01-24 19:38:00,65 Madison St, San Francisco,CA,94016 +150260,iPhone,1,700.0,2019-01-24 20:49:00,305 14th St, Boston,MA,02215 +150261,Google Phone,1,600.0,2019-01-14 19:42:00,805 Jefferson St, San Francisco,CA,94016 +150262,Wired Headphones,1,11.99,2019-01-31 08:48:00,21 Jackson St, New York City,NY,10001 +150263,Flatscreen TV,1,300.0,2019-01-18 17:16:00,254 1st St, New York City,NY,10001 +150264,27in 4K Gaming Monitor,1,389.99,2019-01-26 17:43:00,223 Walnut St, Dallas,TX,75001 +150265,AAA Batteries (4-pack),1,2.99,2019-01-26 07:01:00,413 8th St, Los Angeles,CA,90001 +150266,AA Batteries (4-pack),1,3.84,2019-01-20 20:30:00,314 14th St, Atlanta,GA,30301 +150267,AAA Batteries (4-pack),1,2.99,2019-01-20 09:27:00,412 8th St, Boston,MA,02215 +150268,Wired Headphones,1,11.99,2019-01-03 13:49:00,5 Church St, Boston,MA,02215 +150269,USB-C Charging Cable,1,11.95,2019-01-31 18:18:00,935 Cedar St, San Francisco,CA,94016 +150270,AA Batteries (4-pack),1,3.84,2019-01-21 21:39:00,74 Chestnut St, New York City,NY,10001 +150271,Apple Airpods Headphones,1,150.0,2019-01-29 17:55:00,970 Church St, San Francisco,CA,94016 +150272,Lightning Charging Cable,1,14.95,2019-01-13 15:56:00,219 North St, New York City,NY,10001 +150273,AA Batteries (4-pack),2,3.84,2019-01-05 18:15:00,393 Washington St, Seattle,WA,98101 +150274,27in 4K Gaming Monitor,1,389.99,2019-01-26 18:49:00,784 Park St, San Francisco,CA,94016 +150275,34in Ultrawide Monitor,1,379.99,2019-01-09 21:01:00,569 Cherry St, Dallas,TX,75001 +150276,34in Ultrawide Monitor,1,379.99,2019-01-07 12:33:00,570 Pine St, Dallas,TX,75001 +150277,Lightning Charging Cable,1,14.95,2019-01-20 17:20:00,954 Jefferson St, Atlanta,GA,30301 +150278,Google Phone,1,600.0,2019-01-06 12:02:00,812 8th St, San Francisco,CA,94016 +150279,AA Batteries (4-pack),3,3.84,2019-01-05 15:57:00,221 Willow St, San Francisco,CA,94016 +150280,ThinkPad Laptop,1,999.99,2019-01-20 08:09:00,767 14th St, Seattle,WA,98101 +150281,AA Batteries (4-pack),1,3.84,2019-01-09 04:17:00,519 South St, Portland,OR,97035 +150282,Lightning Charging Cable,1,14.95,2019-01-23 17:11:00,608 Cherry St, Seattle,WA,98101 +150283,Lightning Charging Cable,1,14.95,2019-01-21 09:03:00,821 10th St, Austin,TX,73301 +150284,AAA Batteries (4-pack),1,2.99,2019-01-03 08:21:00,462 Highland St, San Francisco,CA,94016 +150285,Apple Airpods Headphones,1,150.0,2019-01-30 14:35:00,49 13th St, Boston,MA,02215 +150286,Macbook Pro Laptop,1,1700.0,2019-01-22 19:24:00,553 Lake St, San Francisco,CA,94016 +150287,iPhone,1,700.0,2019-01-07 16:18:00,705 Highland St, Portland,OR,97035 +150287,Lightning Charging Cable,1,14.95,2019-01-07 16:18:00,705 Highland St, Portland,OR,97035 +150288,Vareebadd Phone,1,400.0,2019-01-11 13:09:00,812 12th St, San Francisco,CA,94016 +150289,AA Batteries (4-pack),1,3.84,2019-01-07 06:52:00,370 West St, San Francisco,CA,94016 +150290,Wired Headphones,1,11.99,2019-01-26 21:29:00,316 Ridge St, San Francisco,CA,94016 +150291,Bose SoundSport Headphones,1,99.99,2019-01-10 21:27:00,93 Center St, San Francisco,CA,94016 +150292,Macbook Pro Laptop,1,1700.0,2019-01-31 21:22:00,418 12th St, New York City,NY,10001 +150293,Wired Headphones,1,11.99,2019-01-18 19:43:00,448 Dogwood St, Boston,MA,02215 +150294,27in FHD Monitor,1,149.99,2019-01-31 04:18:00,726 Cherry St, Atlanta,GA,30301 +150295,27in FHD Monitor,1,149.99,2019-01-14 17:32:00,74 West St, Boston,MA,02215 +150296,Flatscreen TV,1,300.0,2019-01-04 12:22:00,958 9th St, New York City,NY,10001 +150297,USB-C Charging Cable,1,11.95,2019-01-31 13:09:00,154 Lake St, Los Angeles,CA,90001 +150298,USB-C Charging Cable,1,11.95,2019-01-30 17:55:00,535 Ridge St, New York City,NY,10001 +150299,AA Batteries (4-pack),3,3.84,2019-01-25 14:44:00,957 10th St, Seattle,WA,98101 +150300,AA Batteries (4-pack),1,3.84,2019-01-21 09:25:00,382 Church St, San Francisco,CA,94016 +150301,27in FHD Monitor,1,149.99,2019-01-06 21:52:00,331 Lake St, New York City,NY,10001 +150302,AAA Batteries (4-pack),1,2.99,2019-01-26 22:42:00,468 Pine St, Seattle,WA,98101 +150303,iPhone,1,700.0,2019-01-15 18:33:00,801 Hickory St, San Francisco,CA,94016 +150303,Lightning Charging Cable,1,14.95,2019-01-15 18:33:00,801 Hickory St, San Francisco,CA,94016 +150304,27in FHD Monitor,1,149.99,2019-01-17 04:02:00,609 Adams St, Austin,TX,73301 +150305,Bose SoundSport Headphones,1,99.99,2019-01-10 23:34:00,24 Elm St, New York City,NY,10001 +150306,Apple Airpods Headphones,1,150.0,2019-01-26 16:35:00,715 9th St, Austin,TX,73301 +150307,USB-C Charging Cable,1,11.95,2019-01-24 18:40:00,803 West St, New York City,NY,10001 +150308,AA Batteries (4-pack),2,3.84,2019-01-19 16:05:00,837 5th St, New York City,NY,10001 +150309,Bose SoundSport Headphones,1,99.99,2019-01-31 11:55:00,633 Lake St, San Francisco,CA,94016 +150310,Lightning Charging Cable,1,14.95,2019-01-29 19:16:00,170 Lake St, Seattle,WA,98101 +150311,Flatscreen TV,1,300.0,2019-01-01 14:25:00,795 Hickory St, San Francisco,CA,94016 +150312,34in Ultrawide Monitor,1,379.99,2019-01-23 10:01:00,814 Forest St, San Francisco,CA,94016 +150313,Flatscreen TV,1,300.0,2019-01-25 20:15:00,888 South St, Boston,MA,02215 +150314,Macbook Pro Laptop,1,1700.0,2019-01-27 09:52:00,907 Meadow St, Austin,TX,73301 +150315,Bose SoundSport Headphones,1,99.99,2019-01-16 12:22:00,792 4th St, Boston,MA,02215 +150316,AA Batteries (4-pack),2,3.84,2019-01-16 16:57:00,67 Dogwood St, Boston,MA,02215 +150317,27in 4K Gaming Monitor,1,389.99,2019-01-31 22:27:00,722 Elm St, New York City,NY,10001 +150318,AAA Batteries (4-pack),1,2.99,2019-01-10 20:03:00,629 Willow St, San Francisco,CA,94016 +150319,Google Phone,1,600.0,2019-01-02 09:16:00,402 South St, Austin,TX,73301 +150320,Wired Headphones,1,11.99,2019-01-23 13:25:00,582 Hill St, San Francisco,CA,94016 +150321,iPhone,1,700.0,2019-01-13 21:24:00,418 West St, Atlanta,GA,30301 +150322,Lightning Charging Cable,1,14.95,2019-01-23 16:58:00,552 Maple St, Portland,OR,97035 +150323,Google Phone,1,600.0,2019-01-15 23:31:00,381 Wilson St, San Francisco,CA,94016 +150323,USB-C Charging Cable,1,11.95,2019-01-15 23:31:00,381 Wilson St, San Francisco,CA,94016 +150323,Apple Airpods Headphones,1,150.0,2019-01-15 23:31:00,381 Wilson St, San Francisco,CA,94016 +150324,Apple Airpods Headphones,1,150.0,2019-01-02 21:19:00,168 10th St, San Francisco,CA,94016 +150325,Macbook Pro Laptop,1,1700.0,2019-01-29 12:50:00,849 Church St, San Francisco,CA,94016 +150326,Apple Airpods Headphones,1,150.0,2019-01-03 13:49:00,138 Johnson St, Atlanta,GA,30301 +150327,AA Batteries (4-pack),1,3.84,2019-01-31 08:42:00,546 Center St, New York City,NY,10001 +150328,34in Ultrawide Monitor,1,379.99,2019-01-10 21:24:00,47 Pine St, New York City,NY,10001 +150329,USB-C Charging Cable,1,11.95,2019-01-30 19:29:00,605 Maple St, Los Angeles,CA,90001 +150330,AAA Batteries (4-pack),1,2.99,2019-01-15 10:05:00,520 Forest St, Los Angeles,CA,90001 +150331,Bose SoundSport Headphones,1,99.99,2019-01-15 20:57:00,337 Highland St, Boston,MA,02215 +150332,Lightning Charging Cable,2,14.95,2019-01-31 13:21:00,876 1st St, Atlanta,GA,30301 +150333,Lightning Charging Cable,1,14.95,2019-01-20 19:27:00,72 Willow St, Austin,TX,73301 +150334,Lightning Charging Cable,1,14.95,2019-01-06 19:52:00,615 4th St, Boston,MA,02215 +150335,iPhone,1,700.0,2019-01-01 14:32:00,956 Madison St, Los Angeles,CA,90001 +150335,Apple Airpods Headphones,1,150.0,2019-01-01 14:32:00,956 Madison St, Los Angeles,CA,90001 +150336,USB-C Charging Cable,1,11.95,2019-01-19 14:08:00,309 Sunset St, San Francisco,CA,94016 +150337,Wired Headphones,1,11.99,2019-01-20 18:39:00,503 South St, Seattle,WA,98101 +150338,Flatscreen TV,1,300.0,2019-01-04 05:19:00,919 Lake St, Los Angeles,CA,90001 +150339,AA Batteries (4-pack),2,3.84,2019-01-13 23:38:00,508 Jackson St, New York City,NY,10001 +150340,Lightning Charging Cable,1,14.95,2019-01-19 17:48:00,165 Forest St, Dallas,TX,75001 +150341,Apple Airpods Headphones,1,150.0,2019-01-26 11:00:00,87 Sunset St, Atlanta,GA,30301 +150342,Lightning Charging Cable,1,14.95,2019-01-14 19:23:00,244 Lincoln St, Dallas,TX,75001 +150343,ThinkPad Laptop,1,999.99,2019-01-29 14:24:00,309 8th St, San Francisco,CA,94016 +150344,Apple Airpods Headphones,1,150.0,2019-01-27 21:55:00,896 6th St, San Francisco,CA,94016 +150345,Bose SoundSport Headphones,1,99.99,2019-01-21 23:40:00,130 Lake St, San Francisco,CA,94016 +150346,Lightning Charging Cable,2,14.95,2019-01-16 19:41:00,264 Ridge St, Portland,OR,97035 +150347,27in FHD Monitor,1,149.99,2019-01-31 10:06:00,573 Pine St, San Francisco,CA,94016 +150348,AAA Batteries (4-pack),1,2.99,2019-01-03 13:33:00,315 Chestnut St, San Francisco,CA,94016 +150349,iPhone,1,700.0,2019-01-21 22:21:00,532 Lakeview St, San Francisco,CA,94016 +150350,AAA Batteries (4-pack),1,2.99,2019-01-13 17:45:00,995 Park St, New York City,NY,10001 +150351,AAA Batteries (4-pack),1,2.99,2019-01-26 22:22:00,267 4th St, Los Angeles,CA,90001 +150352,AAA Batteries (4-pack),2,2.99,2019-01-29 15:35:00,253 Meadow St, San Francisco,CA,94016 +150353,Flatscreen TV,1,300.0,2019-01-22 11:31:00,357 13th St, Atlanta,GA,30301 +150354,Apple Airpods Headphones,1,150.0,2019-01-30 12:55:00,670 North St, Portland,ME,04101 +150355,USB-C Charging Cable,1,11.95,2019-01-28 21:57:00,606 2nd St, Dallas,TX,75001 +150356,Lightning Charging Cable,1,14.95,2019-01-03 09:03:00,961 2nd St, Los Angeles,CA,90001 +150357,Bose SoundSport Headphones,1,99.99,2019-01-18 10:12:00,930 Park St, New York City,NY,10001 +150358,LG Washing Machine,1,600.0,2019-01-22 13:18:00,569 10th St, New York City,NY,10001 +150359,Macbook Pro Laptop,1,1700.0,2019-01-13 22:28:00,769 7th St, San Francisco,CA,94016 +150360,AAA Batteries (4-pack),1,2.99,2019-01-13 23:59:00,709 Lincoln St, San Francisco,CA,94016 +150361,iPhone,1,700.0,2019-01-30 06:41:00,915 Pine St, Atlanta,GA,30301 +150362,Apple Airpods Headphones,1,150.0,2019-01-31 07:18:00,346 Pine St, Dallas,TX,75001 +150363,AAA Batteries (4-pack),1,2.99,2019-01-05 17:34:00,307 Lakeview St, Los Angeles,CA,90001 +150364,Apple Airpods Headphones,1,150.0,2019-01-06 22:32:00,253 Walnut St, San Francisco,CA,94016 +150365,Apple Airpods Headphones,1,150.0,2019-01-16 12:35:00,71 Lake St, Portland,OR,97035 +150366,AA Batteries (4-pack),1,3.84,2019-01-19 12:26:00,480 West St, Portland,OR,97035 +150367,Lightning Charging Cable,1,14.95,2019-01-01 08:25:00,576 West St, Los Angeles,CA,90001 +150368,Google Phone,1,600.0,2019-01-24 22:32:00,793 Spruce St, San Francisco,CA,94016 +150369,Wired Headphones,1,11.99,2019-01-25 01:14:00,634 Wilson St, San Francisco,CA,94016 +150370,iPhone,1,700.0,2019-01-21 21:34:00,534 Sunset St, San Francisco,CA,94016 +150371,34in Ultrawide Monitor,1,379.99,2019-01-05 19:12:00,32 Elm St, Portland,ME,04101 +150372,AAA Batteries (4-pack),3,2.99,2019-01-14 10:24:00,262 Sunset St, Boston,MA,02215 +150373,AAA Batteries (4-pack),1,2.99,2019-01-29 20:44:00,271 Center St, San Francisco,CA,94016 +150374,Lightning Charging Cable,1,14.95,2019-01-31 13:48:00,508 1st St, Los Angeles,CA,90001 +150375,AAA Batteries (4-pack),1,2.99,2019-01-11 11:03:00,10 South St, Los Angeles,CA,90001 +150376,AA Batteries (4-pack),1,3.84,2019-01-29 22:23:00,66 West St, Los Angeles,CA,90001 +150377,AA Batteries (4-pack),1,3.84,2019-01-19 15:15:00,674 Ridge St, Los Angeles,CA,90001 +150378,Google Phone,1,600.0,2019-01-17 10:20:00,978 Ridge St, San Francisco,CA,94016 +150379,Wired Headphones,1,11.99,2019-01-27 11:25:00,696 Washington St, Atlanta,GA,30301 +150380,USB-C Charging Cable,2,11.95,2019-01-19 11:00:00,913 Jackson St, San Francisco,CA,94016 +150381,Wired Headphones,1,11.99,2019-01-22 10:04:00,976 Main St, Portland,OR,97035 +150382,Lightning Charging Cable,1,14.95,2019-01-08 12:58:00,533 Washington St, Atlanta,GA,30301 +150383,Bose SoundSport Headphones,1,99.99,2019-01-30 10:54:00,95 7th St, Boston,MA,02215 +150384,AAA Batteries (4-pack),1,2.99,2019-01-23 20:12:00,924 5th St, Dallas,TX,75001 +150385,Google Phone,1,600.0,2019-01-07 21:10:00,521 Adams St, San Francisco,CA,94016 +150386,Apple Airpods Headphones,1,150.0,2019-01-19 16:56:00,60 Highland St, Los Angeles,CA,90001 +150387,Lightning Charging Cable,1,14.95,2019-01-05 19:41:00,579 Meadow St, San Francisco,CA,94016 +150388,Bose SoundSport Headphones,1,99.99,2019-01-31 12:08:00,634 13th St, San Francisco,CA,94016 +150389,USB-C Charging Cable,1,11.95,2019-01-28 17:54:00,938 11th St, Seattle,WA,98101 +150390,Vareebadd Phone,1,400.0,2019-01-15 17:45:00,261 Ridge St, Dallas,TX,75001 +150391,USB-C Charging Cable,1,11.95,2019-01-23 19:17:00,548 10th St, Los Angeles,CA,90001 +150392,USB-C Charging Cable,1,11.95,2019-01-05 09:55:00,560 7th St, Dallas,TX,75001 +150393,Lightning Charging Cable,1,14.95,2019-01-01 09:37:00,215 12th St, New York City,NY,10001 +150394,AAA Batteries (4-pack),1,2.99,2019-01-01 09:08:00,714 6th St, Boston,MA,02215 +150395,AAA Batteries (4-pack),1,2.99,2019-01-29 21:12:00,574 7th St, Portland,OR,97035 +150396,Apple Airpods Headphones,1,150.0,2019-01-17 13:00:00,693 8th St, San Francisco,CA,94016 +150397,AAA Batteries (4-pack),1,2.99,2019-01-16 12:48:00,346 Church St, New York City,NY,10001 +150398,Wired Headphones,1,11.99,2019-01-09 08:37:00,276 Maple St, San Francisco,CA,94016 +150399,Bose SoundSport Headphones,1,99.99,2019-01-25 23:16:00,112 11th St, Portland,OR,97035 +150400,USB-C Charging Cable,1,11.95,2019-01-27 11:00:00,514 Maple St, Atlanta,GA,30301 +150401,AAA Batteries (4-pack),1,2.99,2019-01-30 19:44:00,874 Dogwood St, Boston,MA,02215 +150402,AAA Batteries (4-pack),1,2.99,2019-01-26 10:33:00,217 7th St, New York City,NY,10001 +150403,Apple Airpods Headphones,1,150.0,2019-01-30 09:48:00,201 Wilson St, San Francisco,CA,94016 +150404,Vareebadd Phone,1,400.0,2019-01-15 22:46:00,596 Lincoln St, New York City,NY,10001 +150405,Bose SoundSport Headphones,1,99.99,2019-01-11 22:40:00,848 Hickory St, Portland,OR,97035 +150406,ThinkPad Laptop,1,999.99,2019-01-20 06:55:00,183 Johnson St, San Francisco,CA,94016 +150407,Lightning Charging Cable,1,14.95,2019-01-20 07:25:00,805 South St, San Francisco,CA,94016 +150408,AAA Batteries (4-pack),1,2.99,2019-01-23 12:28:00,443 Walnut St, San Francisco,CA,94016 +150409,Vareebadd Phone,1,400.0,2019-01-10 02:38:00,410 Forest St, Boston,MA,02215 +150410,Lightning Charging Cable,1,14.95,2019-01-12 09:41:00,314 Adams St, Los Angeles,CA,90001 +150411,Bose SoundSport Headphones,1,99.99,2019-01-20 17:26:00,854 Hill St, Austin,TX,73301 +150412,27in FHD Monitor,1,149.99,2019-01-21 10:17:00,476 5th St, San Francisco,CA,94016 +150413,Apple Airpods Headphones,1,150.0,2019-01-17 13:33:00,290 Highland St, Portland,OR,97035 +150414,Wired Headphones,1,11.99,2019-01-05 14:03:00,186 River St, San Francisco,CA,94016 +150415,34in Ultrawide Monitor,1,379.99,2019-01-28 10:38:00,33 Willow St, Austin,TX,73301 +150416,USB-C Charging Cable,1,11.95,2019-01-05 20:36:00,887 Hickory St, Atlanta,GA,30301 +150417,Wired Headphones,3,11.99,2019-01-23 22:08:00,351 13th St, Atlanta,GA,30301 +150418,Apple Airpods Headphones,1,150.0,2019-01-31 19:13:00,358 Lakeview St, New York City,NY,10001 +150419,Bose SoundSport Headphones,1,99.99,2019-01-13 13:47:00,418 Walnut St, Dallas,TX,75001 +150420,AAA Batteries (4-pack),1,2.99,2019-01-22 09:56:00,304 Elm St, San Francisco,CA,94016 +150421,Flatscreen TV,1,300.0,2019-01-31 20:06:00,24 Chestnut St, San Francisco,CA,94016 +150422,iPhone,1,700.0,2019-01-21 16:31:00,255 14th St, Seattle,WA,98101 +150423,AA Batteries (4-pack),1,3.84,2019-01-29 00:52:00,108 2nd St, San Francisco,CA,94016 +150424,Wired Headphones,1,11.99,2019-01-28 09:48:00,354 Center St, Seattle,WA,98101 +150425,ThinkPad Laptop,1,999.99,2019-01-31 19:42:00,814 Jefferson St, Austin,TX,73301 +150426,LG Washing Machine,1,600.0,2019-01-29 19:31:00,533 Hill St, San Francisco,CA,94016 +150427,AAA Batteries (4-pack),2,2.99,2019-01-28 12:16:00,403 14th St, Atlanta,GA,30301 +150428,27in 4K Gaming Monitor,1,389.99,2019-01-22 15:30:00,373 12th St, New York City,NY,10001 +150429,Macbook Pro Laptop,1,1700.0,2019-01-15 19:54:00,911 Wilson St, New York City,NY,10001 +150430,34in Ultrawide Monitor,1,379.99,2019-01-21 12:17:00,767 Park St, San Francisco,CA,94016 +150431,USB-C Charging Cable,1,11.95,2019-01-24 02:24:00,299 Adams St, Atlanta,GA,30301 +150432,AA Batteries (4-pack),1,3.84,2019-01-18 18:19:00,120 Center St, Austin,TX,73301 +150433,Flatscreen TV,1,300.0,2019-01-18 22:27:00,736 Chestnut St, San Francisco,CA,94016 +150433,Google Phone,1,600.0,2019-01-18 22:27:00,736 Chestnut St, San Francisco,CA,94016 +150434,USB-C Charging Cable,1,11.95,2019-01-30 15:41:00,550 Main St, Los Angeles,CA,90001 +150435,AAA Batteries (4-pack),1,2.99,2019-01-22 15:23:00,629 12th St, Atlanta,GA,30301 +150436,AAA Batteries (4-pack),1,2.99,2019-01-03 22:18:00,216 Dogwood St, Los Angeles,CA,90001 +150437,AAA Batteries (4-pack),1,2.99,2019-01-24 17:59:00,44 Adams St, Atlanta,GA,30301 +150438,USB-C Charging Cable,1,11.95,2019-01-19 18:40:00,886 6th St, Los Angeles,CA,90001 +150439,Wired Headphones,3,11.99,2019-01-27 20:08:00,193 9th St, San Francisco,CA,94016 +150440,AAA Batteries (4-pack),1,2.99,2019-01-10 19:19:00,82 Johnson St, Boston,MA,02215 +150441,Bose SoundSport Headphones,1,99.99,2019-01-10 16:33:00,580 Ridge St, Los Angeles,CA,90001 +150442,Wired Headphones,1,11.99,2019-01-11 11:47:00,848 8th St, New York City,NY,10001 +150443,Bose SoundSport Headphones,1,99.99,2019-01-04 20:32:00,977 Washington St, Los Angeles,CA,90001 +150444,AAA Batteries (4-pack),1,2.99,2019-01-17 20:39:00,171 Johnson St, New York City,NY,10001 +150445,USB-C Charging Cable,1,11.95,2019-01-11 13:56:00,147 Lincoln St, Boston,MA,02215 +150446,USB-C Charging Cable,1,11.95,2019-01-16 22:36:00,459 11th St, Los Angeles,CA,90001 +150447,Wired Headphones,1,11.99,2019-01-09 18:13:00,864 Dogwood St, San Francisco,CA,94016 +150448,Wired Headphones,1,11.99,2019-01-21 11:11:00,96 Forest St, San Francisco,CA,94016 +150449,34in Ultrawide Monitor,1,379.99,2019-01-26 20:05:00,824 Pine St, New York City,NY,10001 +150450,Lightning Charging Cable,1,14.95,2019-01-17 20:27:00,286 Pine St, New York City,NY,10001 +150451,AAA Batteries (4-pack),2,2.99,2019-01-16 21:40:00,424 1st St, San Francisco,CA,94016 +150452,USB-C Charging Cable,1,11.95,2019-01-27 09:09:00,18 Cedar St, New York City,NY,10001 +150453,AAA Batteries (4-pack),1,2.99,2019-01-10 22:07:00,215 Chestnut St, San Francisco,CA,94016 +150454,USB-C Charging Cable,1,11.95,2019-01-11 15:42:00,679 14th St, San Francisco,CA,94016 +150455,27in 4K Gaming Monitor,1,389.99,2019-01-18 13:29:00,625 Pine St, New York City,NY,10001 +150456,Lightning Charging Cable,1,14.95,2019-01-30 23:54:00,717 Walnut St, New York City,NY,10001 +150457,Wired Headphones,1,11.99,2019-01-13 10:23:00,815 14th St, San Francisco,CA,94016 +150458,27in 4K Gaming Monitor,1,389.99,2019-01-25 10:01:00,917 10th St, San Francisco,CA,94016 +150459,Google Phone,1,600.0,2019-01-22 19:58:00,789 Jefferson St, Dallas,TX,75001 +150460,34in Ultrawide Monitor,1,379.99,2019-01-06 00:46:00,803 14th St, New York City,NY,10001 +150461,Google Phone,1,600.0,2019-01-04 19:45:00,796 5th St, Dallas,TX,75001 +150462,Bose SoundSport Headphones,1,99.99,2019-01-02 10:32:00,157 Church St, San Francisco,CA,94016 +150463,20in Monitor,1,109.99,2019-01-14 20:02:00,715 Meadow St, Los Angeles,CA,90001 +150464,AA Batteries (4-pack),1,3.84,2019-01-05 11:24:00,814 West St, Seattle,WA,98101 +150465,AA Batteries (4-pack),1,3.84,2019-01-10 22:31:00,317 North St, Portland,OR,97035 +150466,27in FHD Monitor,1,149.99,2019-01-15 14:26:00,612 Wilson St, Los Angeles,CA,90001 +150467,Wired Headphones,1,11.99,2019-01-05 15:48:00,398 Wilson St, Portland,OR,97035 +150468,Apple Airpods Headphones,1,150.0,2019-01-28 02:44:00,258 Spruce St, Dallas,TX,75001 +150469,Apple Airpods Headphones,1,150.0,2019-01-12 12:44:00,749 Hill St, New York City,NY,10001 +150470,AAA Batteries (4-pack),1,2.99,2019-01-12 15:27:00,109 Willow St, Atlanta,GA,30301 +150471,Wired Headphones,1,11.99,2019-01-12 08:30:00,514 Jackson St, New York City,NY,10001 +150472,Apple Airpods Headphones,1,150.0,2019-01-07 22:30:00,738 Jackson St, New York City,NY,10001 +150473,Wired Headphones,1,11.99,2019-01-10 09:09:00,148 Hickory St, Boston,MA,02215 +150474,Bose SoundSport Headphones,1,99.99,2019-01-19 18:23:00,817 6th St, Seattle,WA,98101 +150475,Wired Headphones,1,11.99,2019-01-18 11:08:00,971 Madison St, Atlanta,GA,30301 +150476,AAA Batteries (4-pack),2,2.99,2019-01-21 08:53:00,551 Center St, Dallas,TX,75001 +150477,27in 4K Gaming Monitor,1,389.99,2019-01-26 05:41:00,734 Spruce St, Atlanta,GA,30301 +150478,ThinkPad Laptop,1,999.99,2019-01-30 20:05:00,539 Elm St, Los Angeles,CA,90001 +150479,AA Batteries (4-pack),4,3.84,2019-01-15 02:06:00,165 Lake St, San Francisco,CA,94016 +150480,Macbook Pro Laptop,1,1700.0,2019-01-27 16:00:00,833 Cherry St, Los Angeles,CA,90001 +150481,Flatscreen TV,1,300.0,2019-01-15 20:22:00,946 13th St, Seattle,WA,98101 +150482,USB-C Charging Cable,1,11.95,2019-01-24 11:15:00,856 Hickory St, Los Angeles,CA,90001 +150483,Vareebadd Phone,1,400.0,2019-01-25 10:48:00,763 Wilson St, Portland,OR,97035 +150484,Lightning Charging Cable,1,14.95,2019-01-26 22:04:00,720 2nd St, Los Angeles,CA,90001 +150485,Wired Headphones,1,11.99,2019-01-29 16:32:00,579 5th St, Dallas,TX,75001 +150486,iPhone,1,700.0,2019-01-26 15:52:00,57 Wilson St, Dallas,TX,75001 +150487,Apple Airpods Headphones,1,150.0,2019-01-18 02:57:00,305 Jackson St, Portland,ME,04101 +150488,Flatscreen TV,1,300.0,2019-01-22 20:41:00,587 6th St, Portland,OR,97035 +150489,AA Batteries (4-pack),2,3.84,2019-01-08 09:49:00,432 Center St, Portland,OR,97035 +150490,Lightning Charging Cable,1,14.95,2019-01-03 17:20:00,817 Forest St, Portland,OR,97035 +150491,Lightning Charging Cable,1,14.95,2019-01-26 02:26:00,343 Forest St, Atlanta,GA,30301 +150492,Wired Headphones,1,11.99,2019-01-03 21:54:00,998 Jackson St, Dallas,TX,75001 +150493,Lightning Charging Cable,1,14.95,2019-01-08 15:10:00,431 Lakeview St, Seattle,WA,98101 +150494,AAA Batteries (4-pack),1,2.99,2019-01-05 21:27:00,435 10th St, Seattle,WA,98101 +150495,Bose SoundSport Headphones,1,99.99,2019-01-15 09:33:00,581 Adams St, Dallas,TX,75001 +150496,Bose SoundSport Headphones,1,99.99,2019-01-28 20:32:00,603 Main St, San Francisco,CA,94016 +150497,20in Monitor,1,109.99,2019-01-26 19:09:00,95 8th St, Dallas,TX,75001 +150498,27in FHD Monitor,1,149.99,2019-01-10 22:58:00,403 7th St, San Francisco,CA,94016 +150499,ThinkPad Laptop,1,999.99,2019-01-21 14:31:00,214 Main St, Portland,OR,97035 +150500,AAA Batteries (4-pack),2,2.99,2019-01-15 14:21:00,810 2nd St, Los Angeles,CA,90001 +150501,Google Phone,1,600.0,2019-01-13 16:43:00,428 Cedar St, Boston,MA,02215 +222910,Apple Airpods Headphones,1,150.0,2019-07-26 16:51:00,389 South St, Atlanta,GA,30301 +222911,Flatscreen TV,1,300.0,2019-07-05 08:55:00,590 4th St, Seattle,WA,98101 +222912,AA Batteries (4-pack),1,3.84,2019-07-29 12:41:00,861 Hill St, Atlanta,GA,30301 +222913,AA Batteries (4-pack),1,3.84,2019-07-28 10:15:00,190 Ridge St, Atlanta,GA,30301 +222914,AAA Batteries (4-pack),5,2.99,2019-07-31 02:13:00,824 Forest St, Seattle,WA,98101 +222915,Bose SoundSport Headphones,1,99.99,2019-07-03 18:30:00,899 Elm St, San Francisco,CA,94016 +222916,Google Phone,1,600.0,2019-07-21 22:39:00,745 Chestnut St, New York City,NY,10001 +222917,LG Dryer,1,600.0,2019-07-17 13:44:00,490 Adams St, New York City,NY,10001 +222918,USB-C Charging Cable,1,11.95,2019-07-14 21:16:00,207 1st St, Los Angeles,CA,90001 +222919,Lightning Charging Cable,1,14.95,2019-07-14 13:24:00,29 Jefferson St, Dallas,TX,75001 +222920,AA Batteries (4-pack),1,3.84,2019-07-30 04:42:00,590 6th St, San Francisco,CA,94016 +222921,Lightning Charging Cable,1,14.95,2019-07-02 11:04:00,960 Willow St, San Francisco,CA,94016 +222922,34in Ultrawide Monitor,1,379.99,2019-07-20 21:12:00,616 Chestnut St, Dallas,TX,75001 +222923,AAA Batteries (4-pack),1,2.99,2019-07-05 12:16:00,105 Johnson St, Los Angeles,CA,90001 +222924,Bose SoundSport Headphones,1,99.99,2019-07-13 20:46:00,444 Spruce St, San Francisco,CA,94016 +222925,Apple Airpods Headphones,1,150.0,2019-07-09 02:59:00,764 Adams St, San Francisco,CA,94016 +222926,Lightning Charging Cable,2,14.95,2019-07-15 17:44:00,577 Lakeview St, Los Angeles,CA,90001 +222927,Wired Headphones,1,11.99,2019-07-31 20:34:00,244 Washington St, Los Angeles,CA,90001 +222928,Google Phone,1,600.0,2019-07-15 17:18:00,524 Cherry St, San Francisco,CA,94016 +222929,Vareebadd Phone,1,400.0,2019-07-04 19:46:00,882 Hickory St, Boston,MA,02215 +222930,Lightning Charging Cable,1,14.95,2019-07-20 20:57:00,826 River St, San Francisco,CA,94016 +222931,USB-C Charging Cable,1,11.95,2019-07-18 09:21:00,145 Pine St, Boston,MA,02215 +222932,Wired Headphones,1,11.99,2019-07-24 17:32:00,386 Cedar St, Los Angeles,CA,90001 +222933,LG Dryer,1,600.0,2019-07-30 13:20:00,76 2nd St, Los Angeles,CA,90001 +222934,AA Batteries (4-pack),2,3.84,2019-07-03 23:51:00,437 River St, Seattle,WA,98101 +222935,AAA Batteries (4-pack),1,2.99,2019-07-23 12:20:00,118 9th St, San Francisco,CA,94016 +222936,27in FHD Monitor,1,149.99,2019-07-04 12:29:00,483 West St, Boston,MA,02215 +222937,Lightning Charging Cable,2,14.95,2019-07-03 09:01:00,538 North St, San Francisco,CA,94016 +222938,Flatscreen TV,1,300.0,2019-07-20 17:49:00,523 Hickory St, Dallas,TX,75001 +222939,Apple Airpods Headphones,1,150.0,2019-07-17 21:53:00,597 Madison St, Los Angeles,CA,90001 +222940,Wired Headphones,2,11.99,2019-07-05 15:06:00,779 Maple St, San Francisco,CA,94016 +222941,Apple Airpods Headphones,1,150.0,2019-07-02 05:48:00,631 Willow St, San Francisco,CA,94016 +222942,Lightning Charging Cable,1,14.95,2019-07-07 10:00:00,424 Church St, Portland,OR,97035 +222943,Lightning Charging Cable,1,14.95,2019-07-20 23:39:00,575 4th St, Seattle,WA,98101 +222944,27in FHD Monitor,1,149.99,2019-07-07 22:52:00,70 Meadow St, San Francisco,CA,94016 +222945,Wired Headphones,1,11.99,2019-07-21 21:51:00,191 Dogwood St, Los Angeles,CA,90001 +222946,20in Monitor,1,109.99,2019-07-14 22:19:00,49 Park St, New York City,NY,10001 +222947,ThinkPad Laptop,1,999.99,2019-07-16 09:15:00,612 Spruce St, New York City,NY,10001 +222948,USB-C Charging Cable,1,11.95,2019-07-10 08:18:00,631 12th St, San Francisco,CA,94016 +222949,USB-C Charging Cable,1,11.95,2019-07-28 17:24:00,902 Cedar St, Dallas,TX,75001 +222950,Lightning Charging Cable,1,14.95,2019-07-17 19:05:00,358 1st St, Dallas,TX,75001 +222951,Apple Airpods Headphones,1,150.0,2019-07-08 12:34:00,781 Maple St, San Francisco,CA,94016 +222952,Lightning Charging Cable,1,14.95,2019-07-06 16:01:00,879 Park St, San Francisco,CA,94016 +222953,Lightning Charging Cable,1,14.95,2019-07-31 02:56:00,109 Highland St, Los Angeles,CA,90001 +222954,AA Batteries (4-pack),2,3.84,2019-07-14 18:11:00,980 Chestnut St, Dallas,TX,75001 +222955,USB-C Charging Cable,1,11.95,2019-07-01 14:27:00,117 Lake St, Los Angeles,CA,90001 +222956,27in 4K Gaming Monitor,1,389.99,2019-07-11 20:18:00,525 6th St, Atlanta,GA,30301 +222957,AAA Batteries (4-pack),1,2.99,2019-07-19 10:11:00,143 5th St, Portland,OR,97035 +222958,AAA Batteries (4-pack),1,2.99,2019-07-26 21:00:00,777 5th St, Dallas,TX,75001 +222959,ThinkPad Laptop,1,999.99,2019-07-15 13:07:00,252 River St, Dallas,TX,75001 +222960,Lightning Charging Cable,1,14.95,2019-07-11 08:44:00,638 Dogwood St, San Francisco,CA,94016 +222961,Lightning Charging Cable,1,14.95,2019-07-04 05:44:00,840 5th St, Dallas,TX,75001 +222962,Wired Headphones,1,11.99,2019-07-20 09:20:00,694 Cherry St, Seattle,WA,98101 +222963,USB-C Charging Cable,1,11.95,2019-07-29 09:11:00,734 Elm St, Boston,MA,02215 +222964,Macbook Pro Laptop,1,1700.0,2019-07-24 20:18:00,601 Lake St, Boston,MA,02215 +222965,AAA Batteries (4-pack),2,2.99,2019-07-07 12:06:00,792 Cedar St, San Francisco,CA,94016 +222966,AA Batteries (4-pack),2,3.84,2019-07-13 01:01:00,718 7th St, Seattle,WA,98101 +222967,20in Monitor,1,109.99,2019-07-14 11:58:00,161 13th St, San Francisco,CA,94016 +222968,AA Batteries (4-pack),1,3.84,2019-07-24 15:32:00,536 14th St, San Francisco,CA,94016 +222969,AAA Batteries (4-pack),1,2.99,2019-07-05 17:00:00,248 Johnson St, San Francisco,CA,94016 +222970,AAA Batteries (4-pack),1,2.99,2019-07-09 11:08:00,594 Church St, Atlanta,GA,30301 +222971,Apple Airpods Headphones,1,150.0,2019-07-05 14:49:00,444 Spruce St, Austin,TX,73301 +222972,Wired Headphones,1,11.99,2019-07-09 09:17:00,917 Madison St, Seattle,WA,98101 +222973,Flatscreen TV,1,300.0,2019-07-18 14:40:00,509 Hickory St, Seattle,WA,98101 +222974,Lightning Charging Cable,1,14.95,2019-07-09 19:51:00,112 Wilson St, Los Angeles,CA,90001 +222975,Wired Headphones,1,11.99,2019-07-19 16:15:00,541 Hickory St, Los Angeles,CA,90001 +222976,Lightning Charging Cable,1,14.95,2019-07-17 10:14:00,390 1st St, Los Angeles,CA,90001 +222977,Lightning Charging Cable,1,14.95,2019-07-14 22:07:00,660 Walnut St, Los Angeles,CA,90001 +222978,AAA Batteries (4-pack),2,2.99,2019-07-04 12:23:00,941 Willow St, Seattle,WA,98101 +222979,Bose SoundSport Headphones,1,99.99,2019-07-11 23:59:00,844 Center St, Seattle,WA,98101 +222980,Bose SoundSport Headphones,1,99.99,2019-07-13 11:16:00,519 Park St, Atlanta,GA,30301 +222981,USB-C Charging Cable,1,11.95,2019-07-26 00:40:00,791 9th St, Austin,TX,73301 +222982,Flatscreen TV,1,300.0,2019-07-28 12:40:00,651 Ridge St, Portland,OR,97035 +222983,Lightning Charging Cable,1,14.95,2019-07-16 00:06:00,639 Spruce St, Boston,MA,02215 +222984,USB-C Charging Cable,1,11.95,2019-07-29 21:50:00,305 Johnson St, Austin,TX,73301 +222985,Bose SoundSport Headphones,1,99.99,2019-07-21 12:41:00,846 Lake St, Dallas,TX,75001 +222986,Lightning Charging Cable,1,14.95,2019-07-05 11:13:00,313 Forest St, San Francisco,CA,94016 +222987,AAA Batteries (4-pack),1,2.99,2019-07-31 16:56:00,538 1st St, New York City,NY,10001 +222988,Lightning Charging Cable,1,14.95,2019-07-04 09:44:00,647 Meadow St, Dallas,TX,75001 +222989,Lightning Charging Cable,1,14.95,2019-07-07 20:53:00,48 Walnut St, Dallas,TX,75001 +222990,AAA Batteries (4-pack),2,2.99,2019-07-19 18:33:00,419 Jackson St, New York City,NY,10001 +222991,27in FHD Monitor,1,149.99,2019-07-05 10:06:00,450 8th St, Los Angeles,CA,90001 +222992,AA Batteries (4-pack),1,3.84,2019-07-05 18:49:00,779 Washington St, San Francisco,CA,94016 +222993,AAA Batteries (4-pack),1,2.99,2019-07-25 21:40:00,697 Adams St, Los Angeles,CA,90001 +222994,USB-C Charging Cable,1,11.95,2019-07-10 18:59:00,251 Cedar St, New York City,NY,10001 +222995,34in Ultrawide Monitor,1,379.99,2019-07-27 16:15:00,837 Park St, San Francisco,CA,94016 +222996,27in FHD Monitor,1,149.99,2019-07-12 16:53:00,885 Sunset St, Los Angeles,CA,90001 +222997,AAA Batteries (4-pack),1,2.99,2019-07-21 16:44:00,619 Willow St, New York City,NY,10001 +222998,Lightning Charging Cable,1,14.95,2019-07-28 03:41:00,38 Lakeview St, Boston,MA,02215 +222999,Flatscreen TV,1,300.0,2019-07-29 17:17:00,615 Cherry St, Seattle,WA,98101 +223000,AAA Batteries (4-pack),1,2.99,2019-07-19 20:29:00,670 10th St, Atlanta,GA,30301 +223001,Apple Airpods Headphones,1,150.0,2019-07-29 11:56:00,978 10th St, San Francisco,CA,94016 +223002,AA Batteries (4-pack),1,3.84,2019-07-13 18:48:00,603 12th St, Dallas,TX,75001 +223003,Lightning Charging Cable,1,14.95,2019-07-09 17:51:00,18 Jefferson St, San Francisco,CA,94016 +223004,AAA Batteries (4-pack),1,2.99,2019-07-14 02:43:00,911 Spruce St, San Francisco,CA,94016 +223005,27in FHD Monitor,1,149.99,2019-07-26 21:39:00,306 Lake St, Austin,TX,73301 +223006,Lightning Charging Cable,1,14.95,2019-07-22 16:50:00,499 Park St, Los Angeles,CA,90001 +223007,Bose SoundSport Headphones,1,99.99,2019-07-06 11:07:00,481 10th St, Portland,OR,97035 +223008,AAA Batteries (4-pack),3,2.99,2019-07-12 00:54:00,289 13th St, Boston,MA,02215 +223009,Apple Airpods Headphones,1,150.0,2019-07-28 07:59:00,152 9th St, Boston,MA,02215 +223010,AAA Batteries (4-pack),1,2.99,2019-07-18 12:17:00,518 Wilson St, Boston,MA,02215 +223011,Apple Airpods Headphones,1,150.0,2019-07-09 17:19:00,87 Sunset St, San Francisco,CA,94016 +223012,Bose SoundSport Headphones,1,99.99,2019-07-13 10:10:00,233 12th St, Austin,TX,73301 +223013,AAA Batteries (4-pack),2,2.99,2019-07-27 14:11:00,289 8th St, New York City,NY,10001 +223014,Wired Headphones,1,11.99,2019-07-10 17:43:00,421 Highland St, Atlanta,GA,30301 +223015,Bose SoundSport Headphones,1,99.99,2019-07-26 14:47:00,605 Johnson St, San Francisco,CA,94016 +223016,USB-C Charging Cable,1,11.95,2019-07-20 08:42:00,700 Church St, New York City,NY,10001 +223017,AAA Batteries (4-pack),2,2.99,2019-07-02 22:09:00,773 Hickory St, San Francisco,CA,94016 +223018,ThinkPad Laptop,1,999.99,2019-07-04 08:39:00,767 Adams St, Los Angeles,CA,90001 +223019,AAA Batteries (4-pack),2,2.99,2019-07-29 13:49:00,788 Hill St, Dallas,TX,75001 +223020,27in FHD Monitor,1,149.99,2019-07-08 10:08:00,296 9th St, Boston,MA,02215 +223021,AAA Batteries (4-pack),1,2.99,2019-07-07 11:31:00,657 10th St, Los Angeles,CA,90001 +223022,Lightning Charging Cable,1,14.95,2019-07-31 17:45:00,93 Madison St, Atlanta,GA,30301 +223023,Bose SoundSport Headphones,1,99.99,2019-07-01 18:12:00,268 Meadow St, San Francisco,CA,94016 +223024,AAA Batteries (4-pack),2,2.99,2019-07-23 14:04:00,91 Jefferson St, Dallas,TX,75001 +223025,AA Batteries (4-pack),1,3.84,2019-07-23 00:58:00,142 Pine St, San Francisco,CA,94016 +223026,Wired Headphones,1,11.99,2019-07-25 12:49:00,47 Pine St, San Francisco,CA,94016 +223027,AA Batteries (4-pack),1,3.84,2019-07-11 16:29:00,876 Center St, Austin,TX,73301 +223028,Vareebadd Phone,1,400.0,2019-07-07 10:21:00,969 10th St, San Francisco,CA,94016 +223028,USB-C Charging Cable,2,11.95,2019-07-07 10:21:00,969 10th St, San Francisco,CA,94016 +223028,Wired Headphones,1,11.99,2019-07-07 10:21:00,969 10th St, San Francisco,CA,94016 +223029,USB-C Charging Cable,1,11.95,2019-07-18 11:15:00,144 Adams St, New York City,NY,10001 +223030,Bose SoundSport Headphones,1,99.99,2019-07-09 19:04:00,704 13th St, Los Angeles,CA,90001 +223031,27in FHD Monitor,1,149.99,2019-07-28 09:30:00,445 Johnson St, Los Angeles,CA,90001 +223032,Apple Airpods Headphones,1,150.0,2019-07-20 18:47:00,8 Cherry St, Dallas,TX,75001 +223033,AAA Batteries (4-pack),1,2.99,2019-07-01 18:27:00,972 Meadow St, Atlanta,GA,30301 +223034,Wired Headphones,1,11.99,2019-07-06 09:22:00,927 South St, Portland,OR,97035 +223035,Flatscreen TV,1,300.0,2019-07-27 12:04:00,911 Sunset St, Portland,OR,97035 +223036,Apple Airpods Headphones,1,150.0,2019-07-31 10:59:00,828 Willow St, Boston,MA,02215 +223037,Wired Headphones,1,11.99,2019-07-21 20:58:00,24 Adams St, Los Angeles,CA,90001 +223038,Lightning Charging Cable,1,14.95,2019-07-03 14:19:00,990 11th St, Los Angeles,CA,90001 +223039,Flatscreen TV,1,300.0,2019-07-27 11:44:00,9 Center St, Dallas,TX,75001 +223040,Apple Airpods Headphones,1,150.0,2019-07-19 20:05:00,395 West St, Austin,TX,73301 +223041,27in 4K Gaming Monitor,1,389.99,2019-07-11 08:16:00,330 River St, New York City,NY,10001 +223042,Lightning Charging Cable,1,14.95,2019-07-10 08:42:00,983 Jackson St, Dallas,TX,75001 +223043,Lightning Charging Cable,1,14.95,2019-07-01 10:20:00,662 North St, Atlanta,GA,30301 +223044,Apple Airpods Headphones,1,150.0,2019-07-05 11:15:00,605 6th St, San Francisco,CA,94016 +223045,LG Dryer,1,600.0,2019-07-18 20:22:00,457 2nd St, Boston,MA,02215 +223046,USB-C Charging Cable,1,11.95,2019-07-15 23:04:00,335 Ridge St, Los Angeles,CA,90001 +223047,AA Batteries (4-pack),1,3.84,2019-07-16 15:16:00,541 Lakeview St, Los Angeles,CA,90001 +223048,Vareebadd Phone,1,400.0,2019-07-21 17:19:00,168 8th St, Portland,OR,97035 +223048,USB-C Charging Cable,2,11.95,2019-07-21 17:19:00,168 8th St, Portland,OR,97035 +223049,Flatscreen TV,1,300.0,2019-07-24 23:24:00,595 Jackson St, San Francisco,CA,94016 +223050,ThinkPad Laptop,1,999.99,2019-07-14 18:14:00,842 Washington St, Los Angeles,CA,90001 +223051,Bose SoundSport Headphones,1,99.99,2019-07-27 16:35:00,819 Cherry St, Los Angeles,CA,90001 +223052,USB-C Charging Cable,1,11.95,2019-07-09 20:05:00,549 Lincoln St, San Francisco,CA,94016 +223053,LG Dryer,1,600.0,2019-07-06 08:37:00,226 2nd St, Seattle,WA,98101 +223054,Wired Headphones,1,11.99,2019-07-28 18:08:00,905 Chestnut St, Boston,MA,02215 +223055,AA Batteries (4-pack),1,3.84,2019-07-14 14:04:00,181 Walnut St, Los Angeles,CA,90001 +223056,USB-C Charging Cable,1,11.95,2019-07-27 17:19:00,907 Madison St, San Francisco,CA,94016 +223057,Bose SoundSport Headphones,1,99.99,2019-07-12 11:30:00,195 Washington St, San Francisco,CA,94016 +223058,Bose SoundSport Headphones,1,99.99,2019-07-01 08:09:00,993 Main St, Boston,MA,02215 +223059,USB-C Charging Cable,1,11.95,2019-07-23 02:09:00,84 10th St, Boston,MA,02215 +223060,AA Batteries (4-pack),1,3.84,2019-07-20 13:14:00,613 Johnson St, San Francisco,CA,94016 +223061,Lightning Charging Cable,2,14.95,2019-07-14 22:02:00,788 Center St, Dallas,TX,75001 +223062,ThinkPad Laptop,1,999.99,2019-07-12 19:58:00,756 5th St, Atlanta,GA,30301 +223063,USB-C Charging Cable,1,11.95,2019-07-02 21:37:00,535 Cedar St, Portland,OR,97035 +223064,AAA Batteries (4-pack),1,2.99,2019-07-13 19:23:00,627 13th St, San Francisco,CA,94016 +223065,Bose SoundSport Headphones,2,99.99,2019-07-02 20:20:00,180 Park St, San Francisco,CA,94016 +223066,Macbook Pro Laptop,1,1700.0,2019-07-16 08:31:00,377 Madison St, San Francisco,CA,94016 +223067,AAA Batteries (4-pack),1,2.99,2019-07-11 13:46:00,189 Johnson St, Los Angeles,CA,90001 +223068,AA Batteries (4-pack),1,3.84,2019-07-29 18:11:00,450 Church St, San Francisco,CA,94016 +223069,AA Batteries (4-pack),1,3.84,2019-07-17 20:50:00,486 4th St, San Francisco,CA,94016 +223070,AAA Batteries (4-pack),1,2.99,2019-07-19 08:29:00,172 Adams St, Boston,MA,02215 +223071,Lightning Charging Cable,1,14.95,2019-07-17 12:01:00,758 Madison St, New York City,NY,10001 +223072,Lightning Charging Cable,1,14.95,2019-07-18 02:39:00,252 Madison St, Boston,MA,02215 +223073,Wired Headphones,1,11.99,2019-07-02 15:41:00,972 Dogwood St, San Francisco,CA,94016 +223074,USB-C Charging Cable,1,11.95,2019-07-15 10:07:00,899 North St, Los Angeles,CA,90001 +223075,USB-C Charging Cable,1,11.95,2019-07-22 14:15:00,752 Chestnut St, San Francisco,CA,94016 +223076,Lightning Charging Cable,1,14.95,2019-07-10 13:21:00,692 Spruce St, Boston,MA,02215 +223077,ThinkPad Laptop,1,999.99,2019-07-06 13:01:00,261 Sunset St, San Francisco,CA,94016 +223078,Lightning Charging Cable,1,14.95,2019-07-10 19:23:00,865 Meadow St, Atlanta,GA,30301 +223079,27in 4K Gaming Monitor,1,389.99,2019-07-18 10:22:00,211 Ridge St, Austin,TX,73301 +223080,Apple Airpods Headphones,1,150.0,2019-07-09 18:26:00,275 Jackson St, Austin,TX,73301 +223081,USB-C Charging Cable,1,11.95,2019-07-05 15:55:00,983 12th St, San Francisco,CA,94016 +223082,USB-C Charging Cable,1,11.95,2019-07-07 09:54:00,158 7th St, Seattle,WA,98101 +223083,USB-C Charging Cable,1,11.95,2019-07-13 21:05:00,277 Lakeview St, Portland,OR,97035 +223084,Lightning Charging Cable,1,14.95,2019-07-02 15:08:00,555 Pine St, Los Angeles,CA,90001 +223085,iPhone,1,700.0,2019-07-22 11:56:00,875 Madison St, Los Angeles,CA,90001 +223086,Apple Airpods Headphones,1,150.0,2019-07-22 11:08:00,938 Meadow St, Los Angeles,CA,90001 +223087,iPhone,1,700.0,2019-07-26 11:06:00,864 10th St, Boston,MA,02215 +223088,AA Batteries (4-pack),1,3.84,2019-07-05 22:58:00,715 North St, Seattle,WA,98101 +223089,AA Batteries (4-pack),1,3.84,2019-07-17 17:53:00,650 Hickory St, New York City,NY,10001 +223090,USB-C Charging Cable,1,11.95,2019-07-12 16:18:00,739 Adams St, New York City,NY,10001 +223091,Bose SoundSport Headphones,1,99.99,2019-07-20 11:02:00,415 Cedar St, New York City,NY,10001 +223092,ThinkPad Laptop,1,999.99,2019-07-11 15:27:00,634 Washington St, Boston,MA,02215 +223093,AA Batteries (4-pack),1,3.84,2019-07-01 10:48:00,899 1st St, San Francisco,CA,94016 +223094,Wired Headphones,1,11.99,2019-07-18 11:15:00,971 Chestnut St, Los Angeles,CA,90001 +223095,Apple Airpods Headphones,1,150.0,2019-07-03 13:42:00,876 Cedar St, Los Angeles,CA,90001 +223095,AA Batteries (4-pack),1,3.84,2019-07-03 13:42:00,876 Cedar St, Los Angeles,CA,90001 +223096,AAA Batteries (4-pack),2,2.99,2019-07-08 19:31:00,846 Sunset St, Portland,OR,97035 +223097,Lightning Charging Cable,1,14.95,2019-07-11 12:29:00,77 10th St, Los Angeles,CA,90001 +223098,Apple Airpods Headphones,1,150.0,2019-07-23 18:23:00,374 Cherry St, San Francisco,CA,94016 +223099,AAA Batteries (4-pack),3,2.99,2019-07-29 22:46:00,3 Highland St, New York City,NY,10001 +223100,USB-C Charging Cable,1,11.95,2019-07-29 16:56:00,516 Jackson St, New York City,NY,10001 +223101,Wired Headphones,1,11.99,2019-07-10 16:55:00,924 Lincoln St, San Francisco,CA,94016 +223102,Wired Headphones,2,11.99,2019-07-16 20:54:00,484 7th St, Seattle,WA,98101 +223103,Apple Airpods Headphones,1,150.0,2019-07-13 11:25:00,107 West St, San Francisco,CA,94016 +223104,20in Monitor,1,109.99,2019-07-08 07:29:00,505 4th St, Los Angeles,CA,90001 +223105,34in Ultrawide Monitor,1,379.99,2019-07-17 00:06:00,589 8th St, Portland,OR,97035 +223106,Wired Headphones,1,11.99,2019-07-14 14:30:00,630 2nd St, San Francisco,CA,94016 +223106,Vareebadd Phone,1,400.0,2019-07-14 14:30:00,630 2nd St, San Francisco,CA,94016 +223107,iPhone,1,700.0,2019-07-25 13:40:00,470 Chestnut St, San Francisco,CA,94016 +223108,AAA Batteries (4-pack),1,2.99,2019-07-05 11:21:00,781 8th St, Boston,MA,02215 +223109,iPhone,1,700.0,2019-07-12 20:48:00,929 Ridge St, Seattle,WA,98101 +223110,Flatscreen TV,1,300.0,2019-07-16 01:05:00,434 Elm St, Seattle,WA,98101 +223111,AA Batteries (4-pack),1,3.84,2019-07-20 16:46:00,137 Madison St, Atlanta,GA,30301 +223112,USB-C Charging Cable,2,11.95,2019-07-08 22:23:00,241 8th St, San Francisco,CA,94016 +223113,27in 4K Gaming Monitor,1,389.99,2019-07-05 07:35:00,176 Willow St, Los Angeles,CA,90001 +223114,AA Batteries (4-pack),1,3.84,2019-07-26 13:37:00,576 11th St, Austin,TX,73301 +223115,Flatscreen TV,1,300.0,2019-07-02 13:15:00,836 Johnson St, New York City,NY,10001 +223116,Apple Airpods Headphones,1,150.0,2019-07-21 13:18:00,366 Adams St, Portland,OR,97035 +223117,Google Phone,1,600.0,2019-07-11 23:25:00,184 Spruce St, Atlanta,GA,30301 +223117,USB-C Charging Cable,1,11.95,2019-07-11 23:25:00,184 Spruce St, Atlanta,GA,30301 +223118,AA Batteries (4-pack),2,3.84,2019-07-04 11:04:00,346 Walnut St, New York City,NY,10001 +223119,27in FHD Monitor,1,149.99,2019-07-30 13:33:00,955 Main St, New York City,NY,10001 +223120,Lightning Charging Cable,1,14.95,2019-07-18 13:29:00,506 Main St, San Francisco,CA,94016 +223121,Bose SoundSport Headphones,1,99.99,2019-07-05 22:00:00,880 7th St, New York City,NY,10001 +223122,Apple Airpods Headphones,1,150.0,2019-07-04 08:49:00,972 Lincoln St, Boston,MA,02215 +223123,Wired Headphones,1,11.99,2019-07-05 06:27:00,86 5th St, Boston,MA,02215 +223124,USB-C Charging Cable,1,11.95,2019-07-19 19:28:00,593 Ridge St, San Francisco,CA,94016 +223125,27in 4K Gaming Monitor,1,389.99,2019-07-17 09:45:00,678 13th St, San Francisco,CA,94016 +223126,34in Ultrawide Monitor,1,379.99,2019-07-29 16:38:00,858 6th St, San Francisco,CA,94016 +223127,AAA Batteries (4-pack),1,2.99,2019-07-31 17:36:00,473 10th St, Los Angeles,CA,90001 +223128,USB-C Charging Cable,1,11.95,2019-07-14 08:00:00,418 Spruce St, Los Angeles,CA,90001 +223129,Apple Airpods Headphones,1,150.0,2019-07-05 08:40:00,239 12th St, Boston,MA,02215 +223130,Wired Headphones,1,11.99,2019-07-16 11:54:00,126 5th St, New York City,NY,10001 +223131,AAA Batteries (4-pack),1,2.99,2019-07-21 07:47:00,712 Washington St, Los Angeles,CA,90001 +223132,AA Batteries (4-pack),1,3.84,2019-07-23 00:10:00,132 West St, San Francisco,CA,94016 +223133,AA Batteries (4-pack),1,3.84,2019-07-28 20:40:00,621 Church St, San Francisco,CA,94016 +223133,AAA Batteries (4-pack),1,2.99,2019-07-28 20:40:00,621 Church St, San Francisco,CA,94016 +223134,ThinkPad Laptop,1,999.99,2019-07-25 12:17:00,298 Wilson St, Portland,ME,04101 +223135,Apple Airpods Headphones,1,150.0,2019-07-27 21:39:00,385 Dogwood St, Atlanta,GA,30301 +223136,Flatscreen TV,1,300.0,2019-07-07 21:45:00,339 12th St, San Francisco,CA,94016 +223137,AA Batteries (4-pack),1,3.84,2019-07-20 09:51:00,776 Forest St, Boston,MA,02215 +223138,27in 4K Gaming Monitor,1,389.99,2019-07-22 10:44:00,720 Main St, San Francisco,CA,94016 +223139,Bose SoundSport Headphones,1,99.99,2019-07-05 20:27:00,820 West St, Los Angeles,CA,90001 +223140,AA Batteries (4-pack),1,3.84,2019-07-22 09:58:00,112 Meadow St, San Francisco,CA,94016 +223140,Flatscreen TV,1,300.0,2019-07-22 09:58:00,112 Meadow St, San Francisco,CA,94016 +223141,Wired Headphones,1,11.99,2019-07-23 21:39:00,247 Adams St, Portland,OR,97035 +223142,AA Batteries (4-pack),2,3.84,2019-07-26 13:53:00,587 South St, San Francisco,CA,94016 +223143,ThinkPad Laptop,1,999.99,2019-07-14 10:09:00,494 Lakeview St, San Francisco,CA,94016 +223144,Google Phone,1,600.0,2019-07-15 21:51:00,37 Walnut St, New York City,NY,10001 +223144,USB-C Charging Cable,1,11.95,2019-07-15 21:51:00,37 Walnut St, New York City,NY,10001 +223145,Apple Airpods Headphones,1,150.0,2019-07-02 14:21:00,35 Main St, Seattle,WA,98101 +223146,LG Dryer,1,600.0,2019-07-22 17:05:00,753 5th St, Los Angeles,CA,90001 +223147,AA Batteries (4-pack),1,3.84,2019-07-15 11:27:00,767 West St, Los Angeles,CA,90001 +223148,AA Batteries (4-pack),1,3.84,2019-07-22 18:02:00,256 Jackson St, Atlanta,GA,30301 +223149,27in FHD Monitor,1,149.99,2019-07-14 20:39:00,770 Lincoln St, Boston,MA,02215 +223150,Apple Airpods Headphones,1,150.0,2019-07-16 18:17:00,289 12th St, Boston,MA,02215 +223151,AAA Batteries (4-pack),2,2.99,2019-07-31 07:15:00,825 North St, Seattle,WA,98101 +223152,Bose SoundSport Headphones,1,99.99,2019-07-10 20:02:00,910 Hill St, Atlanta,GA,30301 +223153,Wired Headphones,1,11.99,2019-07-17 20:11:00,65 Hickory St, Dallas,TX,75001 +223154,AAA Batteries (4-pack),1,2.99,2019-07-18 13:25:00,223 Elm St, Portland,OR,97035 +223155,Lightning Charging Cable,1,14.95,2019-07-02 21:24:00,706 Washington St, San Francisco,CA,94016 +223156,AAA Batteries (4-pack),1,2.99,2019-07-23 16:04:00,564 Ridge St, New York City,NY,10001 +223157,Wired Headphones,1,11.99,2019-07-25 23:34:00,532 Lincoln St, Boston,MA,02215 +223158,USB-C Charging Cable,1,11.95,2019-07-14 23:12:00,787 Adams St, Boston,MA,02215 +223159,Lightning Charging Cable,1,14.95,2019-07-04 13:48:00,818 11th St, Los Angeles,CA,90001 +223160,Apple Airpods Headphones,1,150.0,2019-07-16 19:14:00,629 Meadow St, New York City,NY,10001 +223161,AAA Batteries (4-pack),2,2.99,2019-07-18 09:27:00,399 6th St, San Francisco,CA,94016 +223162,Wired Headphones,1,11.99,2019-07-06 19:57:00,453 Madison St, Portland,OR,97035 +223163,34in Ultrawide Monitor,1,379.99,2019-07-02 00:37:00,801 Lakeview St, Austin,TX,73301 +223164,USB-C Charging Cable,1,11.95,2019-07-07 18:19:00,120 Park St, San Francisco,CA,94016 +223165,Lightning Charging Cable,1,14.95,2019-07-14 10:00:00,29 Chestnut St, Seattle,WA,98101 +223166,AAA Batteries (4-pack),1,2.99,2019-07-23 06:53:00,648 River St, Boston,MA,02215 +223167,Macbook Pro Laptop,1,1700.0,2019-07-21 06:37:00,76 Sunset St, Portland,OR,97035 +223168,USB-C Charging Cable,1,11.95,2019-07-28 17:38:00,812 Wilson St, Los Angeles,CA,90001 +223169,34in Ultrawide Monitor,1,379.99,2019-07-21 18:25:00,460 Sunset St, Los Angeles,CA,90001 +223170,Wired Headphones,1,11.99,2019-07-08 11:57:00,732 Madison St, Atlanta,GA,30301 +223171,AAA Batteries (4-pack),3,2.99,2019-07-28 19:43:00,3 8th St, Los Angeles,CA,90001 +223172,AAA Batteries (4-pack),1,2.99,2019-07-17 11:48:00,431 Sunset St, Atlanta,GA,30301 +223173,Apple Airpods Headphones,1,150.0,2019-07-31 19:19:00,436 Dogwood St, San Francisco,CA,94016 +223174,AAA Batteries (4-pack),1,2.99,2019-07-19 18:44:00,532 5th St, Los Angeles,CA,90001 +223175,Flatscreen TV,1,300.0,2019-07-21 16:41:00,257 Walnut St, Seattle,WA,98101 +223176,Google Phone,1,600.0,2019-07-24 08:16:00,562 Elm St, Los Angeles,CA,90001 +223177,20in Monitor,1,109.99,2019-07-28 12:52:00,654 11th St, San Francisco,CA,94016 +223178,AAA Batteries (4-pack),1,2.99,2019-07-12 11:13:00,292 Main St, Boston,MA,02215 +223179,Apple Airpods Headphones,1,150.0,2019-07-08 10:57:00,724 5th St, Boston,MA,02215 +223180,Google Phone,1,600.0,2019-07-01 07:53:00,906 Johnson St, San Francisco,CA,94016 +223181,AAA Batteries (4-pack),4,2.99,2019-07-20 16:25:00,810 9th St, New York City,NY,10001 +223182,AA Batteries (4-pack),1,3.84,2019-07-22 10:57:00,565 Walnut St, Los Angeles,CA,90001 +223183,Lightning Charging Cable,1,14.95,2019-07-15 05:32:00,183 Hickory St, Los Angeles,CA,90001 +223184,27in 4K Gaming Monitor,1,389.99,2019-07-22 14:29:00,456 5th St, Los Angeles,CA,90001 +223185,20in Monitor,1,109.99,2019-07-06 16:44:00,551 Main St, Portland,OR,97035 +223186,USB-C Charging Cable,1,11.95,2019-07-18 13:04:00,558 2nd St, Los Angeles,CA,90001 +223187,AA Batteries (4-pack),3,3.84,2019-07-28 06:13:00,39 4th St, Austin,TX,73301 +223188,Apple Airpods Headphones,1,150.0,2019-07-17 20:37:00,725 West St, Los Angeles,CA,90001 +223189,USB-C Charging Cable,1,11.95,2019-07-25 20:40:00,574 Hickory St, San Francisco,CA,94016 +223190,Macbook Pro Laptop,1,1700.0,2019-07-16 11:31:00,129 Main St, Los Angeles,CA,90001 +223191,34in Ultrawide Monitor,1,379.99,2019-07-18 15:19:00,25 7th St, San Francisco,CA,94016 +223192,ThinkPad Laptop,1,999.99,2019-07-26 17:12:00,931 Ridge St, Portland,OR,97035 +223193,Lightning Charging Cable,1,14.95,2019-07-22 17:55:00,130 Johnson St, New York City,NY,10001 +223194,Bose SoundSport Headphones,1,99.99,2019-07-02 18:28:00,523 7th St, Austin,TX,73301 +223195,Bose SoundSport Headphones,1,99.99,2019-07-24 09:47:00,993 Maple St, Austin,TX,73301 +223196,Wired Headphones,1,11.99,2019-07-29 18:19:00,191 Lincoln St, Atlanta,GA,30301 +223197,AA Batteries (4-pack),1,3.84,2019-07-30 16:59:00,972 9th St, Boston,MA,02215 +223198,Lightning Charging Cable,1,14.95,2019-07-21 20:09:00,184 Center St, San Francisco,CA,94016 +223199,Lightning Charging Cable,1,14.95,2019-07-05 16:48:00,959 2nd St, Boston,MA,02215 +223200,Bose SoundSport Headphones,1,99.99,2019-07-25 21:05:00,975 Church St, Seattle,WA,98101 +223201,Apple Airpods Headphones,1,150.0,2019-07-16 09:16:00,929 Adams St, Seattle,WA,98101 +223202,Apple Airpods Headphones,1,150.0,2019-07-18 21:42:00,9 5th St, San Francisco,CA,94016 +223203,AA Batteries (4-pack),1,3.84,2019-07-01 12:01:00,2 Jackson St, San Francisco,CA,94016 +223204,AAA Batteries (4-pack),1,2.99,2019-07-27 11:35:00,236 Center St, Boston,MA,02215 +223205,AA Batteries (4-pack),1,3.84,2019-07-15 22:59:00,834 River St, San Francisco,CA,94016 +223206,AA Batteries (4-pack),1,3.84,2019-07-09 12:31:00,234 West St, Atlanta,GA,30301 +223207,AAA Batteries (4-pack),1,2.99,2019-07-25 22:21:00,979 Ridge St, Boston,MA,02215 +223208,Google Phone,1,600.0,2019-07-13 20:02:00,301 Washington St, Los Angeles,CA,90001 +223209,Wired Headphones,1,11.99,2019-07-06 23:11:00,571 Spruce St, San Francisco,CA,94016 +223210,AA Batteries (4-pack),3,3.84,2019-07-09 17:05:00,272 Spruce St, Atlanta,GA,30301 +223210,27in FHD Monitor,1,149.99,2019-07-09 17:05:00,272 Spruce St, Atlanta,GA,30301 +223211,Lightning Charging Cable,1,14.95,2019-07-13 11:48:00,798 9th St, San Francisco,CA,94016 +223212,USB-C Charging Cable,1,11.95,2019-07-03 08:13:00,573 Walnut St, San Francisco,CA,94016 +223213,AAA Batteries (4-pack),2,2.99,2019-07-22 11:07:00,782 Forest St, New York City,NY,10001 +223214,Lightning Charging Cable,1,14.95,2019-07-04 19:52:00,911 Chestnut St, Portland,OR,97035 +223215,Apple Airpods Headphones,1,150.0,2019-07-20 22:27:00,96 Church St, San Francisco,CA,94016 +223216,Macbook Pro Laptop,1,1700.0,2019-07-03 21:01:00,956 Ridge St, Atlanta,GA,30301 +223217,Lightning Charging Cable,1,14.95,2019-07-13 06:25:00,673 12th St, Boston,MA,02215 +223218,AAA Batteries (4-pack),3,2.99,2019-07-23 08:53:00,789 Cherry St, Seattle,WA,98101 +223219,ThinkPad Laptop,1,999.99,2019-07-22 14:39:00,778 Cedar St, Atlanta,GA,30301 +223220,Lightning Charging Cable,2,14.95,2019-07-03 13:04:00,619 Sunset St, New York City,NY,10001 +223221,Wired Headphones,1,11.99,2019-07-07 18:32:00,244 Meadow St, Boston,MA,02215 +223221,Macbook Pro Laptop,1,1700.0,2019-07-07 18:32:00,244 Meadow St, Boston,MA,02215 +223222,20in Monitor,1,109.99,2019-07-14 16:21:00,534 Lincoln St, San Francisco,CA,94016 +223222,Apple Airpods Headphones,1,150.0,2019-07-14 16:21:00,534 Lincoln St, San Francisco,CA,94016 +223223,Google Phone,1,600.0,2019-07-20 09:53:00,629 North St, Dallas,TX,75001 +223224,AA Batteries (4-pack),1,3.84,2019-07-02 16:53:00,715 Ridge St, San Francisco,CA,94016 +223225,AAA Batteries (4-pack),1,2.99,2019-07-04 13:54:00,954 Jefferson St, San Francisco,CA,94016 +223226,USB-C Charging Cable,1,11.95,2019-07-03 06:57:00,323 Lake St, Seattle,WA,98101 +223227,27in 4K Gaming Monitor,1,389.99,2019-07-23 09:43:00,830 10th St, Los Angeles,CA,90001 +223228,AAA Batteries (4-pack),1,2.99,2019-07-17 23:20:00,395 Center St, San Francisco,CA,94016 +223229,Lightning Charging Cable,1,14.95,2019-07-30 16:58:00,372 Center St, Portland,OR,97035 +223230,USB-C Charging Cable,1,11.95,2019-07-23 22:20:00,622 Walnut St, Atlanta,GA,30301 +223231,Bose SoundSport Headphones,1,99.99,2019-07-14 18:38:00,746 13th St, Boston,MA,02215 +223232,AAA Batteries (4-pack),1,2.99,2019-07-30 16:53:00,297 Ridge St, Boston,MA,02215 +223233,Lightning Charging Cable,1,14.95,2019-07-24 09:58:00,762 Park St, New York City,NY,10001 +223234,34in Ultrawide Monitor,1,379.99,2019-07-29 10:56:00,351 Meadow St, Austin,TX,73301 +223235,27in FHD Monitor,1,149.99,2019-07-01 17:00:00,911 Jackson St, Los Angeles,CA,90001 +223236,Apple Airpods Headphones,1,150.0,2019-07-31 11:54:00,366 9th St, Seattle,WA,98101 +223237,27in FHD Monitor,1,149.99,2019-07-17 09:48:00,906 Spruce St, New York City,NY,10001 +223238,AA Batteries (4-pack),1,3.84,2019-07-28 11:50:00,48 13th St, Seattle,WA,98101 +223239,AA Batteries (4-pack),1,3.84,2019-07-30 16:42:00,908 Johnson St, San Francisco,CA,94016 +223240,27in 4K Gaming Monitor,1,389.99,2019-07-05 20:47:00,253 Jefferson St, New York City,NY,10001 +223241,USB-C Charging Cable,1,11.95,2019-07-19 20:33:00,651 Washington St, Boston,MA,02215 +223242,Flatscreen TV,1,300.0,2019-07-01 14:55:00,981 14th St, Los Angeles,CA,90001 +223243,Wired Headphones,1,11.99,2019-07-16 18:50:00,697 8th St, New York City,NY,10001 +223244,AAA Batteries (4-pack),1,2.99,2019-07-09 11:05:00,205 Lake St, Seattle,WA,98101 +223244,AA Batteries (4-pack),1,3.84,2019-07-09 11:05:00,205 Lake St, Seattle,WA,98101 +223245,Bose SoundSport Headphones,1,99.99,2019-07-14 10:32:00,424 Park St, San Francisco,CA,94016 +223246,AAA Batteries (4-pack),2,2.99,2019-07-05 18:06:00,639 Wilson St, San Francisco,CA,94016 +223247,AAA Batteries (4-pack),1,2.99,2019-07-26 13:57:00,894 6th St, Boston,MA,02215 +223248,Wired Headphones,1,11.99,2019-07-30 21:53:00,158 5th St, Boston,MA,02215 +223249,27in FHD Monitor,1,149.99,2019-07-06 11:18:00,910 11th St, Los Angeles,CA,90001 +223250,AAA Batteries (4-pack),2,2.99,2019-07-15 17:44:00,823 13th St, New York City,NY,10001 +223251,Wired Headphones,1,11.99,2019-07-18 14:09:00,171 Ridge St, Portland,ME,04101 +223252,AAA Batteries (4-pack),3,2.99,2019-07-07 22:28:00,737 Chestnut St, San Francisco,CA,94016 +223253,Bose SoundSport Headphones,1,99.99,2019-07-17 22:09:00,803 Jackson St, San Francisco,CA,94016 +223254,Flatscreen TV,1,300.0,2019-07-19 20:36:00,144 Spruce St, Austin,TX,73301 +223255,AA Batteries (4-pack),1,3.84,2019-07-31 18:46:00,745 2nd St, Los Angeles,CA,90001 +223256,34in Ultrawide Monitor,1,379.99,2019-07-03 19:21:00,825 Chestnut St, Boston,MA,02215 +223257,USB-C Charging Cable,1,11.95,2019-07-22 23:36:00,324 10th St, San Francisco,CA,94016 +223258,Wired Headphones,1,11.99,2019-07-30 16:09:00,314 Wilson St, Boston,MA,02215 +223259,27in 4K Gaming Monitor,1,389.99,2019-07-23 21:54:00,545 Cedar St, Seattle,WA,98101 +223260,USB-C Charging Cable,1,11.95,2019-07-19 12:30:00,498 South St, San Francisco,CA,94016 +223261,Lightning Charging Cable,1,14.95,2019-07-04 22:16:00,406 Lake St, Dallas,TX,75001 +223262,20in Monitor,1,109.99,2019-07-02 01:24:00,875 7th St, Los Angeles,CA,90001 +223263,20in Monitor,1,109.99,2019-07-18 21:24:00,591 Willow St, New York City,NY,10001 +223264,AAA Batteries (4-pack),1,2.99,2019-07-13 20:41:00,508 Maple St, Austin,TX,73301 +223265,Apple Airpods Headphones,2,150.0,2019-07-04 12:58:00,614 1st St, Los Angeles,CA,90001 +223266,Lightning Charging Cable,1,14.95,2019-07-14 15:27:00,850 12th St, Seattle,WA,98101 +223267,Lightning Charging Cable,1,14.95,2019-07-22 00:42:00,309 Forest St, Los Angeles,CA,90001 +223268,AAA Batteries (4-pack),1,2.99,2019-07-10 08:47:00,771 Elm St, Seattle,WA,98101 +223269,iPhone,1,700.0,2019-07-05 20:28:00,207 Church St, Portland,OR,97035 +223270,USB-C Charging Cable,1,11.95,2019-07-24 20:51:00,324 Lake St, New York City,NY,10001 +223271,AA Batteries (4-pack),2,3.84,2019-07-13 21:54:00,980 Maple St, Los Angeles,CA,90001 +223272,AA Batteries (4-pack),1,3.84,2019-07-05 12:43:00,327 Park St, San Francisco,CA,94016 +223273,iPhone,1,700.0,2019-07-27 20:47:00,53 Lake St, Los Angeles,CA,90001 +223274,USB-C Charging Cable,1,11.95,2019-07-20 21:18:00,196 Cherry St, Los Angeles,CA,90001 +223275,Lightning Charging Cable,1,14.95,2019-07-29 09:26:00,221 Hill St, New York City,NY,10001 +223276,USB-C Charging Cable,1,11.95,2019-07-29 12:26:00,25 North St, Los Angeles,CA,90001 +223277,34in Ultrawide Monitor,1,379.99,2019-07-09 12:18:00,610 14th St, Atlanta,GA,30301 +223278,AA Batteries (4-pack),1,3.84,2019-07-03 19:11:00,914 Cedar St, San Francisco,CA,94016 +223279,AAA Batteries (4-pack),1,2.99,2019-07-15 13:20:00,470 Johnson St, Atlanta,GA,30301 +223280,AAA Batteries (4-pack),2,2.99,2019-07-18 15:32:00,310 2nd St, San Francisco,CA,94016 +223281,USB-C Charging Cable,1,11.95,2019-07-15 10:23:00,916 North St, New York City,NY,10001 +223282,Lightning Charging Cable,1,14.95,2019-07-16 11:42:00,117 Center St, San Francisco,CA,94016 +223283,27in FHD Monitor,1,149.99,2019-07-05 23:40:00,313 10th St, New York City,NY,10001 +223284,AA Batteries (4-pack),1,3.84,2019-07-08 18:05:00,558 Maple St, San Francisco,CA,94016 +223285,Lightning Charging Cable,1,14.95,2019-07-30 18:33:00,222 Walnut St, New York City,NY,10001 +223286,AAA Batteries (4-pack),2,2.99,2019-07-03 14:47:00,44 9th St, Seattle,WA,98101 +223287,AA Batteries (4-pack),1,3.84,2019-07-09 12:18:00,942 Lake St, Boston,MA,02215 +223288,AAA Batteries (4-pack),1,2.99,2019-07-10 10:28:00,751 Washington St, Portland,OR,97035 +223289,AA Batteries (4-pack),1,3.84,2019-07-03 13:50:00,607 Cedar St, Boston,MA,02215 +223290,AA Batteries (4-pack),1,3.84,2019-07-15 20:16:00,692 Forest St, Portland,OR,97035 +223291,AAA Batteries (4-pack),1,2.99,2019-07-22 15:35:00,519 Main St, Los Angeles,CA,90001 +223292,USB-C Charging Cable,1,11.95,2019-07-06 14:53:00,626 Cherry St, Los Angeles,CA,90001 +223293,Flatscreen TV,1,300.0,2019-07-26 18:41:00,72 Lakeview St, San Francisco,CA,94016 +223294,USB-C Charging Cable,1,11.95,2019-07-07 17:16:00,687 Lake St, San Francisco,CA,94016 +223295,AAA Batteries (4-pack),2,2.99,2019-07-20 15:06:00,441 Pine St, Los Angeles,CA,90001 +223296,Vareebadd Phone,1,400.0,2019-07-06 16:07:00,47 Chestnut St, San Francisco,CA,94016 +223297,Apple Airpods Headphones,1,150.0,2019-07-28 10:38:00,387 North St, Los Angeles,CA,90001 +223298,Wired Headphones,1,11.99,2019-07-24 21:03:00,665 9th St, San Francisco,CA,94016 +223299,AAA Batteries (4-pack),3,2.99,2019-07-09 21:03:00,936 Washington St, Portland,OR,97035 +223300,Lightning Charging Cable,1,14.95,2019-07-25 13:42:00,97 Madison St, Seattle,WA,98101 +223301,Lightning Charging Cable,2,14.95,2019-07-09 11:52:00,106 Adams St, Boston,MA,02215 +223302,USB-C Charging Cable,2,11.95,2019-07-05 18:42:00,995 1st St, New York City,NY,10001 +223303,Lightning Charging Cable,1,14.95,2019-07-01 13:03:00,956 Adams St, Los Angeles,CA,90001 +223304,Apple Airpods Headphones,1,150.0,2019-07-02 14:03:00,898 Forest St, Seattle,WA,98101 +223305,Vareebadd Phone,1,400.0,2019-07-16 14:09:00,976 Sunset St, San Francisco,CA,94016 +223306,AAA Batteries (4-pack),2,2.99,2019-07-13 19:14:00,672 Johnson St, Atlanta,GA,30301 +223307,iPhone,1,700.0,2019-07-22 21:58:00,685 7th St, San Francisco,CA,94016 +223308,AA Batteries (4-pack),1,3.84,2019-07-25 10:44:00,454 Church St, Los Angeles,CA,90001 +223309,USB-C Charging Cable,1,11.95,2019-07-09 11:27:00,464 Elm St, San Francisco,CA,94016 +223310,LG Washing Machine,1,600.0,2019-07-26 19:55:00,853 Sunset St, San Francisco,CA,94016 +223311,AAA Batteries (4-pack),2,2.99,2019-07-30 17:26:00,538 Willow St, Portland,ME,04101 +223312,Apple Airpods Headphones,1,150.0,2019-07-06 10:33:00,797 Johnson St, Los Angeles,CA,90001 +223313,Vareebadd Phone,1,400.0,2019-07-30 18:52:00,993 Ridge St, Seattle,WA,98101 +223314,Lightning Charging Cable,1,14.95,2019-07-26 13:09:00,253 Lake St, Portland,OR,97035 +223315,Lightning Charging Cable,1,14.95,2019-07-01 22:58:00,586 Pine St, Seattle,WA,98101 +223316,Wired Headphones,1,11.99,2019-07-08 11:34:00,869 Adams St, San Francisco,CA,94016 +223317,USB-C Charging Cable,1,11.95,2019-07-05 22:36:00,713 Adams St, New York City,NY,10001 +223318,Wired Headphones,1,11.99,2019-07-18 17:18:00,204 Johnson St, San Francisco,CA,94016 +223319,Apple Airpods Headphones,1,150.0,2019-07-27 23:05:00,735 River St, Dallas,TX,75001 +223320,AA Batteries (4-pack),1,3.84,2019-07-12 20:14:00,660 Sunset St, Boston,MA,02215 +223321,Vareebadd Phone,1,400.0,2019-07-21 10:13:00,863 Lincoln St, San Francisco,CA,94016 +223321,USB-C Charging Cable,1,11.95,2019-07-21 10:13:00,863 Lincoln St, San Francisco,CA,94016 +223322,Bose SoundSport Headphones,1,99.99,2019-07-28 20:11:00,873 Dogwood St, Dallas,TX,75001 +223323,Wired Headphones,2,11.99,2019-07-22 00:22:00,6 Park St, Portland,OR,97035 +223324,27in FHD Monitor,1,149.99,2019-07-20 21:50:00,16 Spruce St, San Francisco,CA,94016 +223325,USB-C Charging Cable,2,11.95,2019-07-22 12:17:00,342 Willow St, Atlanta,GA,30301 +223326,iPhone,1,700.0,2019-07-23 10:05:00,837 7th St, Boston,MA,02215 +223326,20in Monitor,1,109.99,2019-07-23 10:05:00,837 7th St, Boston,MA,02215 +223327,AAA Batteries (4-pack),1,2.99,2019-07-18 21:04:00,201 Willow St, Los Angeles,CA,90001 +223328,Wired Headphones,1,11.99,2019-07-31 10:27:00,246 Hickory St, San Francisco,CA,94016 +223329,Lightning Charging Cable,1,14.95,2019-07-11 21:59:00,189 7th St, Boston,MA,02215 +223330,USB-C Charging Cable,1,11.95,2019-07-23 14:19:00,452 Hill St, Portland,OR,97035 +223331,AAA Batteries (4-pack),1,2.99,2019-07-20 12:32:00,174 Highland St, Dallas,TX,75001 +223332,Lightning Charging Cable,1,14.95,2019-07-27 08:53:00,748 Center St, Portland,OR,97035 +223333,USB-C Charging Cable,1,11.95,2019-07-24 14:57:00,925 Highland St, Boston,MA,02215 +223334,20in Monitor,1,109.99,2019-07-01 23:39:00,92 River St, San Francisco,CA,94016 +223335,Bose SoundSport Headphones,1,99.99,2019-07-05 01:14:00,227 Highland St, New York City,NY,10001 +223336,Wired Headphones,1,11.99,2019-07-09 12:35:00,848 Spruce St, Boston,MA,02215 +223337,AA Batteries (4-pack),1,3.84,2019-07-15 17:55:00,623 Lake St, Los Angeles,CA,90001 +223338,Google Phone,1,600.0,2019-07-17 11:23:00,887 2nd St, San Francisco,CA,94016 +223339,USB-C Charging Cable,1,11.95,2019-07-07 10:07:00,42 10th St, Boston,MA,02215 +223340,Apple Airpods Headphones,1,150.0,2019-07-27 11:09:00,92 Willow St, San Francisco,CA,94016 +223341,AA Batteries (4-pack),1,3.84,2019-07-24 13:24:00,716 Walnut St, Portland,OR,97035 +223342,Bose SoundSport Headphones,1,99.99,2019-07-01 21:36:00,71 River St, San Francisco,CA,94016 +223343,AAA Batteries (4-pack),1,2.99,2019-07-18 13:52:00,661 Ridge St, Los Angeles,CA,90001 +223344,34in Ultrawide Monitor,1,379.99,2019-07-02 18:31:00,765 Dogwood St, San Francisco,CA,94016 +223345,AA Batteries (4-pack),1,3.84,2019-07-07 21:52:00,796 9th St, Austin,TX,73301 +223346,AAA Batteries (4-pack),1,2.99,2019-07-24 11:51:00,822 Lake St, Boston,MA,02215 +223347,Vareebadd Phone,1,400.0,2019-07-08 21:46:00,432 Elm St, Portland,OR,97035 +223348,Apple Airpods Headphones,1,150.0,2019-07-15 19:17:00,615 10th St, Austin,TX,73301 +223349,Bose SoundSport Headphones,1,99.99,2019-07-14 18:45:00,851 Washington St, Boston,MA,02215 +223350,AA Batteries (4-pack),2,3.84,2019-07-24 00:43:00,959 Jefferson St, Boston,MA,02215 +223351,Wired Headphones,1,11.99,2019-07-06 12:12:00,199 Chestnut St, Los Angeles,CA,90001 +223352,Lightning Charging Cable,1,14.95,2019-07-02 15:22:00,592 Park St, Seattle,WA,98101 +223353,iPhone,1,700.0,2019-07-26 10:12:00,154 Center St, New York City,NY,10001 +223353,Apple Airpods Headphones,1,150.0,2019-07-26 10:12:00,154 Center St, New York City,NY,10001 +223354,USB-C Charging Cable,1,11.95,2019-07-09 09:02:00,942 Lake St, Boston,MA,02215 +223355,LG Dryer,1,600.0,2019-07-24 20:24:00,972 Wilson St, Seattle,WA,98101 +223356,27in FHD Monitor,1,149.99,2019-07-24 11:39:00,540 Lakeview St, Los Angeles,CA,90001 +223357,Wired Headphones,1,11.99,2019-07-30 15:40:00,188 6th St, New York City,NY,10001 +223358,Bose SoundSport Headphones,1,99.99,2019-07-17 17:38:00,237 5th St, Seattle,WA,98101 +223359,Apple Airpods Headphones,1,150.0,2019-07-03 10:11:00,135 8th St, Dallas,TX,75001 +223360,Bose SoundSport Headphones,1,99.99,2019-07-03 15:10:00,627 Lincoln St, San Francisco,CA,94016 +223361,AA Batteries (4-pack),2,3.84,2019-07-13 17:47:00,502 Lincoln St, New York City,NY,10001 +223362,Apple Airpods Headphones,1,150.0,2019-07-26 14:01:00,423 Cedar St, Atlanta,GA,30301 +223363,Bose SoundSport Headphones,1,99.99,2019-07-27 08:59:00,206 Wilson St, Dallas,TX,75001 +223364,27in 4K Gaming Monitor,1,389.99,2019-07-26 12:59:00,13 Cedar St, Los Angeles,CA,90001 +223365,27in FHD Monitor,1,149.99,2019-07-27 22:11:00,486 14th St, Los Angeles,CA,90001 +223366,Bose SoundSport Headphones,1,99.99,2019-07-16 17:31:00,978 Maple St, Boston,MA,02215 +223367,USB-C Charging Cable,1,11.95,2019-07-30 09:59:00,149 West St, New York City,NY,10001 +223368,20in Monitor,1,109.99,2019-07-27 17:33:00,324 Maple St, Portland,OR,97035 +223369,34in Ultrawide Monitor,1,379.99,2019-07-12 10:00:00,753 Sunset St, Los Angeles,CA,90001 +223370,AA Batteries (4-pack),1,3.84,2019-07-24 21:03:00,353 Cedar St, New York City,NY,10001 +223371,34in Ultrawide Monitor,1,379.99,2019-07-18 20:39:00,632 Walnut St, San Francisco,CA,94016 +223372,Bose SoundSport Headphones,1,99.99,2019-07-03 11:46:00,775 Walnut St, Dallas,TX,75001 +223373,USB-C Charging Cable,1,11.95,2019-07-06 16:47:00,602 North St, San Francisco,CA,94016 +223373,Macbook Pro Laptop,1,1700.0,2019-07-06 16:47:00,602 North St, San Francisco,CA,94016 +223374,AA Batteries (4-pack),2,3.84,2019-07-01 08:08:00,470 Ridge St, Los Angeles,CA,90001 +223375,Apple Airpods Headphones,1,150.0,2019-07-26 00:25:00,857 12th St, New York City,NY,10001 +223376,Bose SoundSport Headphones,1,99.99,2019-07-10 23:30:00,31 Johnson St, Los Angeles,CA,90001 +223377,Flatscreen TV,1,300.0,2019-07-08 06:54:00,245 8th St, Portland,OR,97035 +223378,27in 4K Gaming Monitor,1,389.99,2019-07-23 08:57:00,792 Johnson St, Atlanta,GA,30301 +223379,Bose SoundSport Headphones,1,99.99,2019-07-27 10:11:00,562 Walnut St, New York City,NY,10001 +223380,Google Phone,1,600.0,2019-07-16 09:52:00,311 13th St, Boston,MA,02215 +223381,AAA Batteries (4-pack),2,2.99,2019-07-11 17:41:00,226 4th St, San Francisco,CA,94016 +223382,Wired Headphones,1,11.99,2019-07-10 17:20:00,775 Jackson St, Los Angeles,CA,90001 +223383,27in FHD Monitor,1,149.99,2019-07-16 15:49:00,788 Pine St, Los Angeles,CA,90001 +223384,Google Phone,1,600.0,2019-07-22 11:15:00,39 Ridge St, San Francisco,CA,94016 +223385,Bose SoundSport Headphones,1,99.99,2019-07-24 11:03:00,888 Main St, Los Angeles,CA,90001 +223386,Macbook Pro Laptop,1,1700.0,2019-07-13 18:05:00,881 South St, Dallas,TX,75001 +223387,Wired Headphones,1,11.99,2019-07-10 22:18:00,267 Washington St, New York City,NY,10001 +223388,27in 4K Gaming Monitor,1,389.99,2019-07-21 20:14:00,761 Chestnut St, Dallas,TX,75001 +223389,Wired Headphones,1,11.99,2019-07-21 19:38:00,34 1st St, Los Angeles,CA,90001 +223390,20in Monitor,1,109.99,2019-07-31 17:27:00,345 Lakeview St, Atlanta,GA,30301 +223391,34in Ultrawide Monitor,1,379.99,2019-07-27 13:27:00,194 Lincoln St, Boston,MA,02215 +223392,USB-C Charging Cable,2,11.95,2019-07-19 08:58:00,861 Spruce St, Boston,MA,02215 +223393,USB-C Charging Cable,1,11.95,2019-07-05 19:25:00,458 Spruce St, San Francisco,CA,94016 +223394,AA Batteries (4-pack),1,3.84,2019-07-06 17:52:00,830 Ridge St, Portland,OR,97035 +223395,AAA Batteries (4-pack),2,2.99,2019-07-03 12:45:00,495 Lakeview St, San Francisco,CA,94016 +223396,27in 4K Gaming Monitor,1,389.99,2019-07-19 10:30:00,621 Lakeview St, New York City,NY,10001 +223397,Google Phone,1,600.0,2019-07-01 17:06:00,720 Cedar St, Los Angeles,CA,90001 +223398,AA Batteries (4-pack),1,3.84,2019-07-11 20:16:00,900 Main St, New York City,NY,10001 +223399,Apple Airpods Headphones,1,150.0,2019-07-12 16:35:00,624 Chestnut St, Boston,MA,02215 +223400,Wired Headphones,1,11.99,2019-07-06 01:51:00,189 Lincoln St, San Francisco,CA,94016 +223401,AAA Batteries (4-pack),1,2.99,2019-07-27 00:10:00,173 12th St, New York City,NY,10001 +223402,Lightning Charging Cable,1,14.95,2019-07-31 00:44:00,414 Lakeview St, Portland,OR,97035 +223403,Wired Headphones,1,11.99,2019-07-05 20:14:00,954 5th St, Los Angeles,CA,90001 +223404,34in Ultrawide Monitor,1,379.99,2019-07-24 09:54:00,399 Park St, New York City,NY,10001 +223405,27in 4K Gaming Monitor,1,389.99,2019-07-17 21:58:00,603 Dogwood St, Portland,ME,04101 +223406,Apple Airpods Headphones,1,150.0,2019-07-04 19:42:00,378 Dogwood St, Portland,ME,04101 +223407,Lightning Charging Cable,1,14.95,2019-07-09 01:52:00,969 Washington St, Boston,MA,02215 +223408,Macbook Pro Laptop,1,1700.0,2019-07-17 20:11:00,796 5th St, Portland,OR,97035 +223409,USB-C Charging Cable,1,11.95,2019-07-06 14:10:00,699 Madison St, Atlanta,GA,30301 +223410,Apple Airpods Headphones,1,150.0,2019-07-06 15:49:00,504 8th St, New York City,NY,10001 +223411,27in 4K Gaming Monitor,1,389.99,2019-07-12 19:15:00,935 11th St, Portland,OR,97035 +223412,34in Ultrawide Monitor,1,379.99,2019-07-01 22:04:00,353 13th St, Boston,MA,02215 +223413,Wired Headphones,1,11.99,2019-07-30 10:54:00,140 Jefferson St, New York City,NY,10001 +223414,AAA Batteries (4-pack),2,2.99,2019-07-31 13:20:00,917 South St, Dallas,TX,75001 +223415,AA Batteries (4-pack),1,3.84,2019-07-26 10:19:00,977 Sunset St, Los Angeles,CA,90001 +223416,20in Monitor,1,109.99,2019-07-21 16:22:00,75 Dogwood St, San Francisco,CA,94016 +223417,27in FHD Monitor,1,149.99,2019-07-13 18:03:00,238 River St, San Francisco,CA,94016 +223418,AAA Batteries (4-pack),1,2.99,2019-07-30 11:30:00,265 Main St, New York City,NY,10001 +223419,AA Batteries (4-pack),3,3.84,2019-07-12 09:02:00,892 Hickory St, Seattle,WA,98101 +223420,Lightning Charging Cable,1,14.95,2019-07-30 12:17:00,440 River St, Atlanta,GA,30301 +223421,AAA Batteries (4-pack),1,2.99,2019-07-31 07:18:00,340 Adams St, New York City,NY,10001 +223422,Wired Headphones,1,11.99,2019-07-09 16:49:00,836 Center St, Portland,OR,97035 +223423,Bose SoundSport Headphones,1,99.99,2019-07-01 19:50:00,154 Sunset St, Los Angeles,CA,90001 +223424,AA Batteries (4-pack),1,3.84,2019-07-13 19:34:00,552 Pine St, Boston,MA,02215 +223425,USB-C Charging Cable,1,11.95,2019-07-22 15:18:00,619 Cherry St, San Francisco,CA,94016 +223426,Macbook Pro Laptop,1,1700.0,2019-07-18 08:40:00,103 Park St, Boston,MA,02215 +223427,Apple Airpods Headphones,1,150.0,2019-07-25 16:19:00,136 11th St, San Francisco,CA,94016 +223428,iPhone,1,700.0,2019-07-18 22:59:00,883 Dogwood St, New York City,NY,10001 +223429,AAA Batteries (4-pack),1,2.99,2019-07-19 19:47:00,607 Pine St, Los Angeles,CA,90001 +223430,AAA Batteries (4-pack),2,2.99,2019-07-10 12:45:00,976 14th St, Los Angeles,CA,90001 +223431,Lightning Charging Cable,1,14.95,2019-07-21 10:54:00,836 Ridge St, New York City,NY,10001 +223432,Apple Airpods Headphones,1,150.0,2019-07-24 08:08:00,967 Pine St, Portland,ME,04101 +223433,Lightning Charging Cable,1,14.95,2019-07-13 12:56:00,39 2nd St, New York City,NY,10001 +223434,Lightning Charging Cable,1,14.95,2019-07-24 15:30:00,414 Washington St, San Francisco,CA,94016 +223435,20in Monitor,1,109.99,2019-07-05 12:46:00,630 North St, Dallas,TX,75001 +223436,Apple Airpods Headphones,1,150.0,2019-07-13 22:33:00,950 Cedar St, Portland,OR,97035 +223437,AAA Batteries (4-pack),2,2.99,2019-07-31 22:04:00,786 Highland St, Boston,MA,02215 +223438,LG Washing Machine,1,600.0,2019-07-17 01:27:00,675 Chestnut St, Austin,TX,73301 +223439,Apple Airpods Headphones,1,150.0,2019-07-09 19:14:00,184 Lincoln St, San Francisco,CA,94016 +223440,USB-C Charging Cable,1,11.95,2019-07-26 01:00:00,891 13th St, Seattle,WA,98101 +223441,Lightning Charging Cable,1,14.95,2019-07-27 17:21:00,224 Walnut St, Los Angeles,CA,90001 +223442,AAA Batteries (4-pack),2,2.99,2019-07-02 12:31:00,691 Church St, Seattle,WA,98101 +223443,iPhone,1,700.0,2019-07-29 20:02:00,918 Elm St, New York City,NY,10001 +223444,USB-C Charging Cable,1,11.95,2019-07-04 08:11:00,456 Cherry St, San Francisco,CA,94016 +223445,27in FHD Monitor,1,149.99,2019-07-20 17:12:00,16 Center St, New York City,NY,10001 +223446,Wired Headphones,1,11.99,2019-07-20 11:27:00,621 Lake St, Portland,ME,04101 +223447,Macbook Pro Laptop,1,1700.0,2019-07-17 19:20:00,36 Lake St, Seattle,WA,98101 +223448,Wired Headphones,1,11.99,2019-07-27 05:50:00,57 Walnut St, Los Angeles,CA,90001 +223449,Wired Headphones,1,11.99,2019-07-09 12:54:00,50 11th St, New York City,NY,10001 +223450,AAA Batteries (4-pack),1,2.99,2019-07-20 16:09:00,276 South St, San Francisco,CA,94016 +223451,USB-C Charging Cable,1,11.95,2019-07-24 17:44:00,647 Spruce St, Atlanta,GA,30301 +223452,AA Batteries (4-pack),1,3.84,2019-07-15 09:45:00,908 Washington St, San Francisco,CA,94016 +223453,Wired Headphones,1,11.99,2019-07-12 12:39:00,145 Hickory St, Los Angeles,CA,90001 +223454,Wired Headphones,1,11.99,2019-07-22 14:45:00,99 Park St, Los Angeles,CA,90001 +223455,Bose SoundSport Headphones,1,99.99,2019-07-28 07:43:00,477 Lake St, Seattle,WA,98101 +223456,Bose SoundSport Headphones,1,99.99,2019-07-15 12:11:00,214 Jefferson St, San Francisco,CA,94016 +223457,Bose SoundSport Headphones,1,99.99,2019-07-17 09:05:00,334 Madison St, San Francisco,CA,94016 +223458,LG Washing Machine,1,600.0,2019-07-04 13:25:00,615 Wilson St, Atlanta,GA,30301 +223459,Flatscreen TV,1,300.0,2019-07-19 12:47:00,830 Main St, New York City,NY,10001 +223460,Wired Headphones,1,11.99,2019-07-10 08:22:00,800 Johnson St, San Francisco,CA,94016 +223461,AAA Batteries (4-pack),1,2.99,2019-07-23 14:09:00,480 South St, San Francisco,CA,94016 +223462,AA Batteries (4-pack),1,3.84,2019-07-10 22:40:00,219 Johnson St, San Francisco,CA,94016 +223463,Wired Headphones,1,11.99,2019-07-17 23:59:00,636 Wilson St, Seattle,WA,98101 +223464,Google Phone,1,600.0,2019-07-25 20:58:00,951 North St, Seattle,WA,98101 +223464,USB-C Charging Cable,1,11.95,2019-07-25 20:58:00,951 North St, Seattle,WA,98101 +223465,USB-C Charging Cable,1,11.95,2019-07-05 01:12:00,510 South St, New York City,NY,10001 +223466,27in FHD Monitor,1,149.99,2019-07-10 16:09:00,130 Jackson St, San Francisco,CA,94016 +223467,AA Batteries (4-pack),1,3.84,2019-07-05 16:58:00,553 Hill St, Boston,MA,02215 +223468,AAA Batteries (4-pack),1,2.99,2019-07-07 11:22:00,63 Cedar St, Boston,MA,02215 +223469,Flatscreen TV,1,300.0,2019-07-15 09:34:00,814 10th St, San Francisco,CA,94016 +223470,Bose SoundSport Headphones,1,99.99,2019-07-27 21:32:00,320 4th St, New York City,NY,10001 +223471,AAA Batteries (4-pack),1,2.99,2019-07-24 11:11:00,40 Wilson St, Dallas,TX,75001 +223472,AA Batteries (4-pack),1,3.84,2019-07-13 11:20:00,776 Pine St, Boston,MA,02215 +223473,27in FHD Monitor,1,149.99,2019-07-11 17:18:00,414 12th St, New York City,NY,10001 +223474,Bose SoundSport Headphones,1,99.99,2019-07-18 18:34:00,449 Walnut St, Dallas,TX,75001 +223475,Apple Airpods Headphones,1,150.0,2019-07-21 18:11:00,176 Washington St, Boston,MA,02215 +223476,Lightning Charging Cable,1,14.95,2019-07-07 13:01:00,182 2nd St, New York City,NY,10001 +223477,20in Monitor,1,109.99,2019-07-09 17:10:00,672 Walnut St, San Francisco,CA,94016 +223478,AAA Batteries (4-pack),1,2.99,2019-07-07 18:04:00,3 Elm St, Seattle,WA,98101 +223479,Google Phone,1,600.0,2019-07-08 21:15:00,980 Church St, Dallas,TX,75001 +223480,Bose SoundSport Headphones,1,99.99,2019-07-07 08:27:00,862 Hill St, Dallas,TX,75001 +223481,34in Ultrawide Monitor,1,379.99,2019-07-19 15:37:00,12 9th St, Los Angeles,CA,90001 +223482,Apple Airpods Headphones,1,150.0,2019-07-20 12:29:00,919 Sunset St, Boston,MA,02215 +223483,Wired Headphones,1,11.99,2019-07-30 15:57:00,464 1st St, San Francisco,CA,94016 +223484,27in FHD Monitor,1,149.99,2019-07-26 20:39:00,807 6th St, Los Angeles,CA,90001 +223485,AAA Batteries (4-pack),3,2.99,2019-07-10 12:04:00,500 Jackson St, San Francisco,CA,94016 +223486,Bose SoundSport Headphones,1,99.99,2019-07-30 13:06:00,450 Hill St, Los Angeles,CA,90001 +223487,Bose SoundSport Headphones,1,99.99,2019-07-09 12:47:00,239 7th St, Seattle,WA,98101 +223488,USB-C Charging Cable,1,11.95,2019-07-08 13:33:00,441 Forest St, Los Angeles,CA,90001 +223489,AAA Batteries (4-pack),2,2.99,2019-07-20 06:53:00,504 Lincoln St, Los Angeles,CA,90001 +223490,LG Washing Machine,1,600.0,2019-07-29 11:56:00,947 Lakeview St, New York City,NY,10001 +223491,Lightning Charging Cable,1,14.95,2019-07-18 12:19:00,68 2nd St, San Francisco,CA,94016 +223492,34in Ultrawide Monitor,1,379.99,2019-07-02 18:52:00,326 Hickory St, Seattle,WA,98101 +223493,USB-C Charging Cable,1,11.95,2019-07-19 13:43:00,291 Johnson St, Seattle,WA,98101 +223494,AA Batteries (4-pack),1,3.84,2019-07-22 18:28:00,283 Spruce St, San Francisco,CA,94016 +223495,AA Batteries (4-pack),1,3.84,2019-07-04 16:44:00,811 Wilson St, Boston,MA,02215 +223496,Apple Airpods Headphones,1,150.0,2019-07-14 14:55:00,7 14th St, San Francisco,CA,94016 +223497,Flatscreen TV,1,300.0,2019-07-26 12:40:00,223 Lakeview St, New York City,NY,10001 +223498,27in FHD Monitor,1,149.99,2019-07-16 21:43:00,84 Cherry St, Atlanta,GA,30301 +223499,27in FHD Monitor,1,149.99,2019-07-30 09:33:00,561 13th St, New York City,NY,10001 +223500,USB-C Charging Cable,1,11.95,2019-07-26 21:41:00,452 Lincoln St, Los Angeles,CA,90001 +223501,Lightning Charging Cable,2,14.95,2019-07-08 19:11:00,600 Pine St, Seattle,WA,98101 +223502,AAA Batteries (4-pack),5,2.99,2019-07-06 19:43:00,592 Washington St, Seattle,WA,98101 +223503,AA Batteries (4-pack),1,3.84,2019-07-15 23:23:00,638 Adams St, New York City,NY,10001 +223504,27in FHD Monitor,1,149.99,2019-07-28 16:45:00,239 Willow St, San Francisco,CA,94016 +223505,Wired Headphones,1,11.99,2019-07-29 15:31:00,685 Park St, San Francisco,CA,94016 +223505,AAA Batteries (4-pack),1,2.99,2019-07-29 15:31:00,685 Park St, San Francisco,CA,94016 +223506,USB-C Charging Cable,1,11.95,2019-07-08 19:05:00,656 Cedar St, San Francisco,CA,94016 +223507,Flatscreen TV,1,300.0,2019-07-19 18:16:00,275 4th St, San Francisco,CA,94016 +223508,Google Phone,1,600.0,2019-07-29 14:43:00,492 Main St, Atlanta,GA,30301 +223509,27in 4K Gaming Monitor,1,389.99,2019-07-22 08:05:00,538 11th St, Los Angeles,CA,90001 +223510,Apple Airpods Headphones,1,150.0,2019-07-31 19:40:00,992 Center St, Atlanta,GA,30301 +223511,Lightning Charging Cable,1,14.95,2019-07-05 13:11:00,104 Cedar St, New York City,NY,10001 +223512,ThinkPad Laptop,1,999.99,2019-07-27 21:57:00,180 Cedar St, Boston,MA,02215 +223513,USB-C Charging Cable,1,11.95,2019-07-15 21:49:00,101 Dogwood St, San Francisco,CA,94016 +223514,34in Ultrawide Monitor,1,379.99,2019-07-25 15:20:00,513 Hill St, New York City,NY,10001 +223515,27in FHD Monitor,1,149.99,2019-07-15 17:32:00,944 Walnut St, Portland,OR,97035 +223516,Lightning Charging Cable,1,14.95,2019-07-04 20:17:00,25 6th St, Boston,MA,02215 +223517,Flatscreen TV,1,300.0,2019-07-24 15:22:00,804 Park St, Boston,MA,02215 +223518,AA Batteries (4-pack),1,3.84,2019-07-21 12:38:00,985 12th St, San Francisco,CA,94016 +223519,27in FHD Monitor,1,149.99,2019-07-20 19:18:00,393 North St, San Francisco,CA,94016 +223520,Apple Airpods Headphones,1,150.0,2019-07-23 19:58:00,406 Hill St, Los Angeles,CA,90001 +223521,Lightning Charging Cable,2,14.95,2019-07-15 17:13:00,162 Johnson St, San Francisco,CA,94016 +223522,AAA Batteries (4-pack),3,2.99,2019-07-26 21:19:00,72 North St, Dallas,TX,75001 +223523,USB-C Charging Cable,1,11.95,2019-07-24 01:04:00,355 Sunset St, Austin,TX,73301 +223524,Flatscreen TV,1,300.0,2019-07-06 08:52:00,196 West St, Boston,MA,02215 +223525,Wired Headphones,1,11.99,2019-07-19 20:12:00,121 12th St, Los Angeles,CA,90001 +223526,Apple Airpods Headphones,1,150.0,2019-07-18 17:17:00,41 Willow St, Boston,MA,02215 +223526,Bose SoundSport Headphones,1,99.99,2019-07-18 17:17:00,41 Willow St, Boston,MA,02215 +223527,AAA Batteries (4-pack),1,2.99,2019-07-13 02:36:00,289 Meadow St, San Francisco,CA,94016 +223528,Wired Headphones,1,11.99,2019-07-02 19:25:00,757 2nd St, Boston,MA,02215 +223529,AA Batteries (4-pack),2,3.84,2019-07-11 15:02:00,582 4th St, New York City,NY,10001 +223530,Apple Airpods Headphones,1,150.0,2019-07-18 19:41:00,119 Church St, Los Angeles,CA,90001 +223531,Bose SoundSport Headphones,1,99.99,2019-07-20 07:24:00,694 Ridge St, Los Angeles,CA,90001 +223532,Bose SoundSport Headphones,1,99.99,2019-07-18 05:50:00,470 Lincoln St, Boston,MA,02215 +223533,Bose SoundSport Headphones,1,99.99,2019-07-01 23:07:00,644 Lakeview St, Seattle,WA,98101 +223533,AAA Batteries (4-pack),1,2.99,2019-07-01 23:07:00,644 Lakeview St, Seattle,WA,98101 +223534,Apple Airpods Headphones,1,150.0,2019-07-16 21:29:00,479 10th St, Portland,OR,97035 +223535,27in 4K Gaming Monitor,1,389.99,2019-07-27 19:12:00,773 7th St, Austin,TX,73301 +223536,USB-C Charging Cable,1,11.95,2019-07-09 18:23:00,303 Hickory St, San Francisco,CA,94016 +223537,AA Batteries (4-pack),1,3.84,2019-07-10 21:56:00,515 7th St, Portland,OR,97035 +223538,Bose SoundSport Headphones,1,99.99,2019-07-28 21:43:00,294 Meadow St, Los Angeles,CA,90001 +223539,Wired Headphones,1,11.99,2019-07-16 17:01:00,892 Forest St, Los Angeles,CA,90001 +223540,AA Batteries (4-pack),1,3.84,2019-07-01 14:29:00,385 Ridge St, San Francisco,CA,94016 +223541,Flatscreen TV,1,300.0,2019-07-29 21:09:00,172 7th St, New York City,NY,10001 +223542,Apple Airpods Headphones,1,150.0,2019-07-02 20:01:00,532 Cherry St, New York City,NY,10001 +223543,AAA Batteries (4-pack),1,2.99,2019-07-08 18:32:00,799 Sunset St, New York City,NY,10001 +223544,Lightning Charging Cable,1,14.95,2019-07-30 20:24:00,892 7th St, Los Angeles,CA,90001 +223545,Wired Headphones,2,11.99,2019-07-23 17:47:00,51 Pine St, Atlanta,GA,30301 +223546,USB-C Charging Cable,1,11.95,2019-07-23 23:24:00,530 North St, San Francisco,CA,94016 +223547,Apple Airpods Headphones,1,150.0,2019-07-14 10:36:00,791 Lake St, San Francisco,CA,94016 +223548,Lightning Charging Cable,1,14.95,2019-07-20 20:49:00,301 North St, Atlanta,GA,30301 +223549,Wired Headphones,2,11.99,2019-07-11 22:39:00,285 Adams St, San Francisco,CA,94016 +223550,Wired Headphones,1,11.99,2019-07-13 09:24:00,79 Madison St, Boston,MA,02215 +223551,Apple Airpods Headphones,1,150.0,2019-07-18 09:05:00,996 4th St, New York City,NY,10001 +223552,Flatscreen TV,1,300.0,2019-07-30 19:19:00,766 Washington St, Boston,MA,02215 +223553,AA Batteries (4-pack),2,3.84,2019-07-15 12:04:00,840 Highland St, San Francisco,CA,94016 +223554,Flatscreen TV,1,300.0,2019-07-04 16:43:00,90 5th St, San Francisco,CA,94016 +223555,AA Batteries (4-pack),1,3.84,2019-07-08 12:52:00,812 Chestnut St, Dallas,TX,75001 +223556,Apple Airpods Headphones,1,150.0,2019-07-11 11:41:00,367 8th St, Boston,MA,02215 +223557,27in FHD Monitor,1,149.99,2019-07-08 21:25:00,299 4th St, Atlanta,GA,30301 +223558,AA Batteries (4-pack),1,3.84,2019-07-26 13:05:00,280 Lake St, Dallas,TX,75001 +223559,AA Batteries (4-pack),1,3.84,2019-07-30 15:54:00,285 9th St, Atlanta,GA,30301 +223560,Wired Headphones,1,11.99,2019-07-28 19:15:00,673 Hill St, Portland,OR,97035 +223561,Macbook Pro Laptop,1,1700.0,2019-07-18 19:16:00,889 4th St, Dallas,TX,75001 +223562,AA Batteries (4-pack),2,3.84,2019-07-24 11:41:00,986 Lake St, San Francisco,CA,94016 +223563,Wired Headphones,1,11.99,2019-07-06 20:06:00,653 Meadow St, San Francisco,CA,94016 +223564,27in 4K Gaming Monitor,1,389.99,2019-07-26 12:53:00,571 10th St, Dallas,TX,75001 +223565,USB-C Charging Cable,1,11.95,2019-07-11 12:39:00,514 Washington St, Dallas,TX,75001 +223566,USB-C Charging Cable,1,11.95,2019-07-03 23:06:00,305 Center St, Atlanta,GA,30301 +223567,Apple Airpods Headphones,1,150.0,2019-07-14 11:17:00,825 12th St, Portland,ME,04101 +223568,Apple Airpods Headphones,1,150.0,2019-07-28 09:46:00,402 2nd St, Seattle,WA,98101 +223569,Lightning Charging Cable,1,14.95,2019-07-30 12:07:00,712 Jackson St, Dallas,TX,75001 +223570,USB-C Charging Cable,2,11.95,2019-07-27 17:54:00,52 11th St, San Francisco,CA,94016 +223571,Wired Headphones,1,11.99,2019-07-26 23:36:00,893 Johnson St, Boston,MA,02215 +223572,Apple Airpods Headphones,1,150.0,2019-07-11 18:37:00,665 Forest St, Dallas,TX,75001 +223573,Lightning Charging Cable,1,14.95,2019-07-18 09:17:00,856 8th St, Dallas,TX,75001 +223574,Lightning Charging Cable,1,14.95,2019-07-02 18:24:00,915 Wilson St, San Francisco,CA,94016 +223575,27in FHD Monitor,1,149.99,2019-07-27 09:15:00,436 Hill St, Dallas,TX,75001 +223576,Bose SoundSport Headphones,1,99.99,2019-07-31 14:00:00,522 Sunset St, San Francisco,CA,94016 +223577,Wired Headphones,1,11.99,2019-07-08 17:19:00,972 Sunset St, Los Angeles,CA,90001 +223578,Google Phone,1,600.0,2019-07-26 18:37:00,589 Adams St, New York City,NY,10001 +223578,USB-C Charging Cable,1,11.95,2019-07-26 18:37:00,589 Adams St, New York City,NY,10001 +223579,iPhone,1,700.0,2019-07-17 01:13:00,204 Pine St, Los Angeles,CA,90001 +223579,Lightning Charging Cable,1,14.95,2019-07-17 01:13:00,204 Pine St, Los Angeles,CA,90001 +223580,Apple Airpods Headphones,1,150.0,2019-07-21 09:19:00,405 Jackson St, Seattle,WA,98101 +223581,27in 4K Gaming Monitor,1,389.99,2019-07-19 10:19:00,466 Cedar St, Austin,TX,73301 +223582,iPhone,1,700.0,2019-07-15 14:26:00,963 Church St, New York City,NY,10001 +223583,Lightning Charging Cable,1,14.95,2019-07-31 11:32:00,247 Adams St, Los Angeles,CA,90001 +223584,Macbook Pro Laptop,1,1700.0,2019-07-15 10:22:00,661 Dogwood St, Seattle,WA,98101 +223585,Lightning Charging Cable,1,14.95,2019-07-17 09:03:00,26 Adams St, San Francisco,CA,94016 +223585,20in Monitor,1,109.99,2019-07-17 09:03:00,26 Adams St, San Francisco,CA,94016 +223586,ThinkPad Laptop,1,999.99,2019-07-26 09:15:00,120 West St, Boston,MA,02215 +223587,USB-C Charging Cable,1,11.95,2019-07-02 12:30:00,836 Meadow St, San Francisco,CA,94016 +223588,AA Batteries (4-pack),1,3.84,2019-07-08 17:08:00,851 Wilson St, Boston,MA,02215 +223589,AAA Batteries (4-pack),1,2.99,2019-07-29 16:10:00,829 Sunset St, Austin,TX,73301 +223590,20in Monitor,1,109.99,2019-07-17 06:19:00,139 Center St, Dallas,TX,75001 +223591,27in FHD Monitor,1,149.99,2019-07-24 20:12:00,700 Adams St, Seattle,WA,98101 +223592,34in Ultrawide Monitor,1,379.99,2019-07-02 16:31:00,271 10th St, Dallas,TX,75001 +223593,AA Batteries (4-pack),1,3.84,2019-07-04 14:01:00,714 River St, Los Angeles,CA,90001 +223594,20in Monitor,1,109.99,2019-07-13 15:17:00,339 Lakeview St, Atlanta,GA,30301 +223595,AAA Batteries (4-pack),1,2.99,2019-07-01 07:14:00,245 Lake St, New York City,NY,10001 +223596,Wired Headphones,1,11.99,2019-07-18 10:18:00,473 Main St, Dallas,TX,75001 +223597,Apple Airpods Headphones,1,150.0,2019-07-07 10:12:00,529 13th St, Seattle,WA,98101 +223598,20in Monitor,1,109.99,2019-07-23 15:04:00,552 13th St, Boston,MA,02215 +223599,USB-C Charging Cable,1,11.95,2019-07-02 12:33:00,45 10th St, Los Angeles,CA,90001 +223600,Apple Airpods Headphones,1,150.0,2019-07-03 17:39:00,211 5th St, New York City,NY,10001 +223601,Wired Headphones,1,11.99,2019-07-25 08:37:00,42 9th St, Los Angeles,CA,90001 +223602,20in Monitor,1,109.99,2019-07-13 18:56:00,778 Hickory St, Los Angeles,CA,90001 +223603,Lightning Charging Cable,1,14.95,2019-07-17 08:14:00,696 South St, Seattle,WA,98101 +223604,Lightning Charging Cable,1,14.95,2019-07-06 21:02:00,841 Center St, Los Angeles,CA,90001 +223605,Bose SoundSport Headphones,1,99.99,2019-07-03 14:39:00,3 9th St, Boston,MA,02215 +223606,Bose SoundSport Headphones,1,99.99,2019-07-03 16:47:00,387 6th St, Atlanta,GA,30301 +223607,27in FHD Monitor,1,149.99,2019-07-10 15:37:00,230 Madison St, San Francisco,CA,94016 +223608,27in 4K Gaming Monitor,1,389.99,2019-07-19 20:59:00,426 14th St, Los Angeles,CA,90001 +223609,27in FHD Monitor,1,149.99,2019-07-07 13:11:00,244 Madison St, San Francisco,CA,94016 +223610,Apple Airpods Headphones,1,150.0,2019-07-29 11:44:00,45 Hill St, Portland,ME,04101 +223611,Lightning Charging Cable,1,14.95,2019-07-13 20:37:00,727 Jackson St, Seattle,WA,98101 +223612,Bose SoundSport Headphones,1,99.99,2019-07-31 19:57:00,547 12th St, Los Angeles,CA,90001 +223613,Lightning Charging Cable,1,14.95,2019-07-02 08:16:00,734 6th St, New York City,NY,10001 +223614,Bose SoundSport Headphones,1,99.99,2019-07-31 13:34:00,479 8th St, San Francisco,CA,94016 +223615,USB-C Charging Cable,1,11.95,2019-07-18 14:30:00,806 Pine St, Portland,OR,97035 +223616,27in 4K Gaming Monitor,1,389.99,2019-07-25 10:31:00,426 Willow St, San Francisco,CA,94016 +223617,Wired Headphones,1,11.99,2019-07-04 10:48:00,703 8th St, Atlanta,GA,30301 +223618,Lightning Charging Cable,1,14.95,2019-07-12 20:42:00,43 Meadow St, San Francisco,CA,94016 +223619,Lightning Charging Cable,1,14.95,2019-07-01 20:41:00,320 Chestnut St, Austin,TX,73301 +223620,Lightning Charging Cable,1,14.95,2019-07-25 23:10:00,706 South St, Los Angeles,CA,90001 +223621,27in FHD Monitor,1,149.99,2019-07-02 14:04:00,343 14th St, San Francisco,CA,94016 +223622,Macbook Pro Laptop,1,1700.0,2019-07-07 20:35:00,400 Spruce St, Austin,TX,73301 +223623,AA Batteries (4-pack),1,3.84,2019-07-21 17:43:00,460 Johnson St, Atlanta,GA,30301 +223624,Google Phone,1,600.0,2019-07-15 18:31:00,183 Sunset St, New York City,NY,10001 +223625,Bose SoundSport Headphones,1,99.99,2019-07-29 12:57:00,672 River St, New York City,NY,10001 +223626,27in 4K Gaming Monitor,1,389.99,2019-07-12 14:02:00,266 Highland St, San Francisco,CA,94016 +223627,AAA Batteries (4-pack),1,2.99,2019-07-02 15:15:00,621 6th St, San Francisco,CA,94016 +223628,AA Batteries (4-pack),2,3.84,2019-07-01 14:46:00,719 Meadow St, New York City,NY,10001 +223629,Wired Headphones,1,11.99,2019-07-31 17:17:00,248 Wilson St, Portland,OR,97035 +223630,Apple Airpods Headphones,1,150.0,2019-07-12 12:09:00,511 14th St, Portland,OR,97035 +223631,Lightning Charging Cable,1,14.95,2019-07-25 18:07:00,493 6th St, San Francisco,CA,94016 +223632,AAA Batteries (4-pack),2,2.99,2019-07-09 17:11:00,420 Spruce St, Austin,TX,73301 +223633,Macbook Pro Laptop,1,1700.0,2019-07-06 18:55:00,245 Park St, Los Angeles,CA,90001 +223634,Bose SoundSport Headphones,1,99.99,2019-07-09 12:31:00,695 8th St, Los Angeles,CA,90001 +223635,Wired Headphones,1,11.99,2019-07-25 15:03:00,887 11th St, Portland,OR,97035 +223636,27in FHD Monitor,1,149.99,2019-07-28 14:56:00,777 Washington St, Los Angeles,CA,90001 +223637,Bose SoundSport Headphones,1,99.99,2019-07-07 17:05:00,427 South St, Dallas,TX,75001 +223638,AA Batteries (4-pack),1,3.84,2019-07-18 15:39:00,752 West St, New York City,NY,10001 +223639,Lightning Charging Cable,1,14.95,2019-07-16 09:49:00,515 Forest St, Seattle,WA,98101 +223640,iPhone,1,700.0,2019-07-22 06:51:00,680 11th St, Boston,MA,02215 +223641,Apple Airpods Headphones,1,150.0,2019-07-31 09:09:00,287 Maple St, New York City,NY,10001 +223642,Wired Headphones,1,11.99,2019-07-23 21:50:00,384 Lincoln St, Austin,TX,73301 +223643,Wired Headphones,1,11.99,2019-07-31 13:41:00,353 Walnut St, Boston,MA,02215 +223644,ThinkPad Laptop,1,999.99,2019-07-01 19:28:00,169 Main St, Los Angeles,CA,90001 +223645,27in FHD Monitor,1,149.99,2019-07-25 14:59:00,426 Church St, Seattle,WA,98101 +223646,Lightning Charging Cable,1,14.95,2019-07-06 17:09:00,244 Hickory St, Boston,MA,02215 +223647,ThinkPad Laptop,1,999.99,2019-07-10 19:58:00,831 Washington St, Dallas,TX,75001 +223648,27in FHD Monitor,1,149.99,2019-07-08 20:30:00,712 Meadow St, Austin,TX,73301 +223649,Bose SoundSport Headphones,1,99.99,2019-07-01 07:36:00,47 South St, Portland,OR,97035 +223650,AA Batteries (4-pack),1,3.84,2019-07-12 17:10:00,769 9th St, Atlanta,GA,30301 +223651,AAA Batteries (4-pack),4,2.99,2019-07-27 23:55:00,666 River St, San Francisco,CA,94016 +223652,AAA Batteries (4-pack),1,2.99,2019-07-26 14:13:00,71 4th St, Los Angeles,CA,90001 +223653,Bose SoundSport Headphones,1,99.99,2019-07-10 10:22:00,301 Willow St, Los Angeles,CA,90001 +223654,USB-C Charging Cable,1,11.95,2019-07-05 01:10:00,96 Elm St, New York City,NY,10001 +223655,Lightning Charging Cable,1,14.95,2019-07-16 20:27:00,531 Jackson St, Los Angeles,CA,90001 +223656,Bose SoundSport Headphones,1,99.99,2019-07-16 17:46:00,96 Elm St, Portland,OR,97035 +223657,USB-C Charging Cable,1,11.95,2019-07-04 15:33:00,191 7th St, Boston,MA,02215 +223658,Google Phone,1,600.0,2019-07-21 08:05:00,960 West St, Seattle,WA,98101 +223658,USB-C Charging Cable,1,11.95,2019-07-21 08:05:00,960 West St, Seattle,WA,98101 +223659,Vareebadd Phone,1,400.0,2019-07-08 16:25:00,737 Johnson St, Seattle,WA,98101 +223659,USB-C Charging Cable,1,11.95,2019-07-08 16:25:00,737 Johnson St, Seattle,WA,98101 +223660,Lightning Charging Cable,1,14.95,2019-07-03 09:42:00,108 Hill St, Los Angeles,CA,90001 +223661,Lightning Charging Cable,1,14.95,2019-07-01 09:56:00,288 Johnson St, San Francisco,CA,94016 +223662,USB-C Charging Cable,2,11.95,2019-07-14 13:36:00,707 Hickory St, Los Angeles,CA,90001 +223663,Lightning Charging Cable,1,14.95,2019-07-20 09:29:00,875 Hill St, Los Angeles,CA,90001 +223664,Lightning Charging Cable,1,14.95,2019-07-29 20:26:00,817 North St, Boston,MA,02215 +223665,34in Ultrawide Monitor,1,379.99,2019-07-04 12:39:00,182 Park St, New York City,NY,10001 +223666,AA Batteries (4-pack),1,3.84,2019-07-30 09:56:00,380 4th St, Portland,OR,97035 +223667,USB-C Charging Cable,1,11.95,2019-07-15 16:44:00,767 Cherry St, Los Angeles,CA,90001 +223668,USB-C Charging Cable,2,11.95,2019-07-28 15:11:00,879 Maple St, Austin,TX,73301 +223669,Wired Headphones,1,11.99,2019-07-15 18:55:00,430 Spruce St, Seattle,WA,98101 +223670,Wired Headphones,1,11.99,2019-07-15 03:36:00,342 Hickory St, Seattle,WA,98101 +223671,USB-C Charging Cable,1,11.95,2019-07-03 07:53:00,264 Church St, New York City,NY,10001 +223672,iPhone,1,700.0,2019-07-07 01:05:00,92 Jefferson St, Atlanta,GA,30301 +223673,Lightning Charging Cable,1,14.95,2019-07-28 19:19:00,979 1st St, Seattle,WA,98101 +223674,34in Ultrawide Monitor,1,379.99,2019-07-20 12:23:00,124 Lincoln St, San Francisco,CA,94016 +223675,27in FHD Monitor,1,149.99,2019-07-19 10:11:00,258 Hill St, Austin,TX,73301 +223676,AA Batteries (4-pack),3,3.84,2019-07-07 22:28:00,182 North St, Seattle,WA,98101 +223677,iPhone,1,700.0,2019-07-28 01:50:00,38 Jackson St, Atlanta,GA,30301 +223677,Lightning Charging Cable,1,14.95,2019-07-28 01:50:00,38 Jackson St, Atlanta,GA,30301 +223678,AA Batteries (4-pack),2,3.84,2019-07-04 08:26:00,179 4th St, Los Angeles,CA,90001 +223679,Google Phone,1,600.0,2019-07-30 16:00:00,58 Madison St, San Francisco,CA,94016 +223680,Lightning Charging Cable,1,14.95,2019-07-12 12:26:00,489 Washington St, Dallas,TX,75001 +223681,AA Batteries (4-pack),3,3.84,2019-07-28 14:06:00,886 10th St, San Francisco,CA,94016 +223682,USB-C Charging Cable,2,11.95,2019-07-05 12:35:00,254 Highland St, San Francisco,CA,94016 +223683,Lightning Charging Cable,1,14.95,2019-07-01 06:48:00,266 5th St, Portland,ME,04101 +223684,Apple Airpods Headphones,1,150.0,2019-07-05 18:06:00,615 Park St, Dallas,TX,75001 +223685,Lightning Charging Cable,1,14.95,2019-07-06 21:35:00,642 Sunset St, New York City,NY,10001 +223686,AAA Batteries (4-pack),2,2.99,2019-07-15 11:25:00,890 Jackson St, Boston,MA,02215 +223687,AA Batteries (4-pack),1,3.84,2019-07-16 12:40:00,480 Highland St, Seattle,WA,98101 +223688,AA Batteries (4-pack),1,3.84,2019-07-29 12:12:00,997 13th St, Seattle,WA,98101 +223689,Bose SoundSport Headphones,1,99.99,2019-07-15 11:34:00,172 5th St, Boston,MA,02215 +223690,USB-C Charging Cable,1,11.95,2019-07-12 11:49:00,726 Washington St, Los Angeles,CA,90001 +223691,AAA Batteries (4-pack),1,2.99,2019-07-16 12:42:00,981 8th St, Los Angeles,CA,90001 +223692,Wired Headphones,1,11.99,2019-07-18 02:32:00,376 Hill St, San Francisco,CA,94016 +223693,Lightning Charging Cable,1,14.95,2019-07-22 14:38:00,845 West St, Austin,TX,73301 +223694,AA Batteries (4-pack),2,3.84,2019-07-15 16:20:00,853 South St, San Francisco,CA,94016 +223695,27in FHD Monitor,2,149.99,2019-07-28 20:09:00,460 Chestnut St, Seattle,WA,98101 +223695,LG Washing Machine,1,600.0,2019-07-28 20:09:00,460 Chestnut St, Seattle,WA,98101 +223696,27in FHD Monitor,1,149.99,2019-07-21 10:34:00,856 Center St, Boston,MA,02215 +223697,AAA Batteries (4-pack),2,2.99,2019-07-20 08:54:00,214 Hill St, New York City,NY,10001 +223698,AA Batteries (4-pack),1,3.84,2019-07-14 18:23:00,632 Washington St, Dallas,TX,75001 +223699,Bose SoundSport Headphones,1,99.99,2019-07-14 09:54:00,28 8th St, Dallas,TX,75001 +223700,USB-C Charging Cable,1,11.95,2019-07-26 14:07:00,157 2nd St, Portland,OR,97035 +223701,Lightning Charging Cable,1,14.95,2019-07-07 21:36:00,461 Dogwood St, San Francisco,CA,94016 +223702,USB-C Charging Cable,1,11.95,2019-07-01 19:28:00,627 Johnson St, Atlanta,GA,30301 +223703,Apple Airpods Headphones,1,150.0,2019-07-10 11:14:00,503 Park St, New York City,NY,10001 +223704,AAA Batteries (4-pack),1,2.99,2019-07-23 21:21:00,98 Lake St, Dallas,TX,75001 +223705,USB-C Charging Cable,1,11.95,2019-07-15 15:48:00,108 Madison St, Austin,TX,73301 +223706,Bose SoundSport Headphones,1,99.99,2019-07-14 19:50:00,971 Cherry St, New York City,NY,10001 +223707,Lightning Charging Cable,1,14.95,2019-07-22 16:19:00,731 11th St, New York City,NY,10001 +223708,34in Ultrawide Monitor,1,379.99,2019-07-14 20:45:00,586 Hill St, San Francisco,CA,94016 +223709,USB-C Charging Cable,1,11.95,2019-07-12 21:25:00,270 Church St, Boston,MA,02215 +223710,Bose SoundSport Headphones,1,99.99,2019-08-01 01:56:00,882 Lake St, San Francisco,CA,94016 +223711,Bose SoundSport Headphones,1,99.99,2019-07-24 11:52:00,976 Pine St, Los Angeles,CA,90001 +223712,Apple Airpods Headphones,1,150.0,2019-07-12 11:56:00,585 Meadow St, San Francisco,CA,94016 +223713,Apple Airpods Headphones,1,150.0,2019-07-17 17:51:00,799 14th St, Los Angeles,CA,90001 +223714,Apple Airpods Headphones,1,150.0,2019-07-25 12:50:00,444 Elm St, Atlanta,GA,30301 +223715,27in FHD Monitor,1,149.99,2019-07-24 22:18:00,795 River St, Los Angeles,CA,90001 +223716,AAA Batteries (4-pack),1,2.99,2019-07-05 20:19:00,528 8th St, Austin,TX,73301 +223717,Bose SoundSport Headphones,1,99.99,2019-07-14 20:15:00,227 Highland St, Atlanta,GA,30301 +223718,USB-C Charging Cable,2,11.95,2019-07-03 09:47:00,594 Park St, Los Angeles,CA,90001 +223719,USB-C Charging Cable,1,11.95,2019-07-31 19:17:00,283 10th St, Seattle,WA,98101 +223720,Bose SoundSport Headphones,1,99.99,2019-07-17 17:42:00,187 Spruce St, Atlanta,GA,30301 +223721,Lightning Charging Cable,1,14.95,2019-07-31 22:49:00,316 North St, Portland,OR,97035 +223722,27in 4K Gaming Monitor,1,389.99,2019-07-14 20:53:00,381 12th St, Portland,OR,97035 +223723,USB-C Charging Cable,1,11.95,2019-07-20 04:24:00,33 Main St, New York City,NY,10001 +223724,USB-C Charging Cable,1,11.95,2019-07-19 19:56:00,234 South St, San Francisco,CA,94016 +223725,USB-C Charging Cable,1,11.95,2019-07-26 23:11:00,872 Meadow St, Boston,MA,02215 +223726,USB-C Charging Cable,1,11.95,2019-07-13 13:44:00,309 Willow St, Los Angeles,CA,90001 +223727,Apple Airpods Headphones,1,150.0,2019-07-24 13:16:00,209 Lake St, Boston,MA,02215 +223728,USB-C Charging Cable,1,11.95,2019-07-14 12:54:00,113 Lake St, Atlanta,GA,30301 +223729,USB-C Charging Cable,1,11.95,2019-07-08 13:11:00,904 Sunset St, Dallas,TX,75001 +223730,iPhone,1,700.0,2019-07-09 19:10:00,428 Washington St, Seattle,WA,98101 +223731,27in FHD Monitor,1,149.99,2019-07-07 18:51:00,7 Ridge St, Austin,TX,73301 +223732,Bose SoundSport Headphones,1,99.99,2019-07-23 09:32:00,63 Lakeview St, Dallas,TX,75001 +223733,Macbook Pro Laptop,1,1700.0,2019-07-03 22:26:00,289 Park St, Atlanta,GA,30301 +223734,iPhone,1,700.0,2019-07-20 17:13:00,211 7th St, San Francisco,CA,94016 +223735,Wired Headphones,1,11.99,2019-07-24 18:52:00,985 Jefferson St, Los Angeles,CA,90001 +223736,AAA Batteries (4-pack),1,2.99,2019-07-14 05:30:00,561 Pine St, San Francisco,CA,94016 +223737,Apple Airpods Headphones,1,150.0,2019-07-12 12:48:00,976 Main St, Boston,MA,02215 +223738,USB-C Charging Cable,1,11.95,2019-07-12 10:59:00,225 9th St, Los Angeles,CA,90001 +223739,iPhone,1,700.0,2019-07-18 21:38:00,170 13th St, Los Angeles,CA,90001 +223740,USB-C Charging Cable,1,11.95,2019-07-24 07:32:00,603 5th St, Seattle,WA,98101 +223741,AA Batteries (4-pack),2,3.84,2019-07-22 10:10:00,483 7th St, Boston,MA,02215 +223742,AAA Batteries (4-pack),2,2.99,2019-07-06 13:27:00,112 Ridge St, Dallas,TX,75001 +223743,AAA Batteries (4-pack),1,2.99,2019-07-18 12:41:00,164 5th St, Portland,ME,04101 +223744,AA Batteries (4-pack),1,3.84,2019-07-21 06:30:00,176 North St, Atlanta,GA,30301 +223745,USB-C Charging Cable,1,11.95,2019-07-02 15:41:00,999 Maple St, New York City,NY,10001 +223746,iPhone,1,700.0,2019-07-18 12:46:00,242 Church St, New York City,NY,10001 +223747,Google Phone,1,600.0,2019-07-11 23:19:00,657 Meadow St, San Francisco,CA,94016 +223747,USB-C Charging Cable,1,11.95,2019-07-11 23:19:00,657 Meadow St, San Francisco,CA,94016 +223748,27in 4K Gaming Monitor,1,389.99,2019-07-10 23:53:00,773 2nd St, San Francisco,CA,94016 +223749,AAA Batteries (4-pack),1,2.99,2019-07-31 16:12:00,959 Adams St, San Francisco,CA,94016 +223750,AA Batteries (4-pack),2,3.84,2019-07-06 23:01:00,48 Willow St, Dallas,TX,75001 +223751,Flatscreen TV,1,300.0,2019-07-03 00:43:00,997 12th St, Atlanta,GA,30301 +223752,Apple Airpods Headphones,1,150.0,2019-07-13 10:12:00,3 14th St, San Francisco,CA,94016 +223753,34in Ultrawide Monitor,1,379.99,2019-07-08 13:02:00,171 7th St, Los Angeles,CA,90001 +223754,iPhone,1,700.0,2019-07-24 15:05:00,912 6th St, Boston,MA,02215 +223754,Lightning Charging Cable,1,14.95,2019-07-24 15:05:00,912 6th St, Boston,MA,02215 +223755,Lightning Charging Cable,1,14.95,2019-07-31 06:01:00,910 Park St, San Francisco,CA,94016 +223755,Bose SoundSport Headphones,1,99.99,2019-07-31 06:01:00,910 Park St, San Francisco,CA,94016 +223756,Bose SoundSport Headphones,1,99.99,2019-07-20 21:25:00,118 14th St, Seattle,WA,98101 +223757,Lightning Charging Cable,1,14.95,2019-07-25 08:34:00,699 12th St, Atlanta,GA,30301 +223758,Wired Headphones,1,11.99,2019-07-13 17:31:00,197 Center St, San Francisco,CA,94016 +223758,AA Batteries (4-pack),2,3.84,2019-07-13 17:31:00,197 Center St, San Francisco,CA,94016 +223759,27in FHD Monitor,1,149.99,2019-07-11 21:09:00,758 Highland St, Boston,MA,02215 +223760,Apple Airpods Headphones,1,150.0,2019-07-08 22:11:00,816 Pine St, Los Angeles,CA,90001 +223761,Lightning Charging Cable,1,14.95,2019-07-06 19:35:00,454 14th St, Portland,ME,04101 +223762,Bose SoundSport Headphones,1,99.99,2019-07-26 16:12:00,223 1st St, Portland,ME,04101 +223763,27in 4K Gaming Monitor,1,389.99,2019-07-26 19:56:00,161 Church St, New York City,NY,10001 +223764,Lightning Charging Cable,1,14.95,2019-07-03 14:09:00,226 West St, Seattle,WA,98101 +223765,Wired Headphones,1,11.99,2019-07-12 11:53:00,592 Jefferson St, Los Angeles,CA,90001 +223766,20in Monitor,1,109.99,2019-07-05 12:55:00,687 Park St, Boston,MA,02215 +223766,Lightning Charging Cable,1,14.95,2019-07-05 12:55:00,687 Park St, Boston,MA,02215 +223767,Wired Headphones,1,11.99,2019-07-23 00:58:00,88 10th St, San Francisco,CA,94016 +223768,AA Batteries (4-pack),1,3.84,2019-07-02 20:42:00,18 Main St, New York City,NY,10001 +223769,27in 4K Gaming Monitor,1,389.99,2019-07-26 09:01:00,702 6th St, Dallas,TX,75001 +223770,AAA Batteries (4-pack),2,2.99,2019-07-04 11:29:00,174 Johnson St, Dallas,TX,75001 +223771,ThinkPad Laptop,1,999.99,2019-07-04 09:10:00,31 North St, Seattle,WA,98101 +223772,Apple Airpods Headphones,1,150.0,2019-07-17 19:27:00,438 Lakeview St, New York City,NY,10001 +223773,Wired Headphones,1,11.99,2019-07-28 13:42:00,71 Pine St, San Francisco,CA,94016 +223774,Wired Headphones,1,11.99,2019-07-12 18:37:00,105 Meadow St, San Francisco,CA,94016 +223775,Lightning Charging Cable,1,14.95,2019-07-13 18:02:00,706 13th St, Boston,MA,02215 +223776,Lightning Charging Cable,1,14.95,2019-07-04 14:55:00,559 Adams St, Seattle,WA,98101 +223777,Google Phone,1,600.0,2019-07-05 21:49:00,134 9th St, San Francisco,CA,94016 +223778,Lightning Charging Cable,2,14.95,2019-07-28 17:18:00,981 Sunset St, Los Angeles,CA,90001 +223779,AAA Batteries (4-pack),2,2.99,2019-07-05 15:15:00,462 West St, Atlanta,GA,30301 +223780,USB-C Charging Cable,1,11.95,2019-07-09 14:42:00,337 Washington St, Los Angeles,CA,90001 +223781,Lightning Charging Cable,1,14.95,2019-07-05 17:07:00,939 Lake St, Los Angeles,CA,90001 +223782,Bose SoundSport Headphones,1,99.99,2019-07-08 15:07:00,417 Center St, New York City,NY,10001 +223783,AA Batteries (4-pack),1,3.84,2019-07-11 01:33:00,155 Willow St, San Francisco,CA,94016 +223784,Bose SoundSport Headphones,1,99.99,2019-07-26 19:01:00,481 Ridge St, San Francisco,CA,94016 +223785,iPhone,1,700.0,2019-07-27 14:25:00,725 11th St, Dallas,TX,75001 +223786,Wired Headphones,1,11.99,2019-07-03 11:17:00,96 South St, San Francisco,CA,94016 +223787,Macbook Pro Laptop,1,1700.0,2019-07-28 21:21:00,864 Main St, New York City,NY,10001 +223788,Bose SoundSport Headphones,1,99.99,2019-07-15 07:00:00,594 Johnson St, Los Angeles,CA,90001 +223789,AAA Batteries (4-pack),3,2.99,2019-07-09 09:43:00,881 7th St, Atlanta,GA,30301 +223790,Google Phone,1,600.0,2019-07-23 16:41:00,775 Dogwood St, Dallas,TX,75001 +223791,Wired Headphones,1,11.99,2019-07-15 18:31:00,480 Hill St, San Francisco,CA,94016 +223792,AA Batteries (4-pack),1,3.84,2019-07-27 21:08:00,760 Main St, Atlanta,GA,30301 +223793,Lightning Charging Cable,2,14.95,2019-07-20 09:48:00,838 Highland St, Atlanta,GA,30301 +223794,USB-C Charging Cable,1,11.95,2019-07-11 15:25:00,142 13th St, Austin,TX,73301 +223795,Lightning Charging Cable,1,14.95,2019-07-18 13:03:00,294 14th St, New York City,NY,10001 +223796,USB-C Charging Cable,1,11.95,2019-07-20 11:32:00,325 Meadow St, Atlanta,GA,30301 +223797,USB-C Charging Cable,1,11.95,2019-07-27 18:27:00,33 Madison St, Los Angeles,CA,90001 +223798,USB-C Charging Cable,2,11.95,2019-07-19 22:29:00,148 2nd St, New York City,NY,10001 +223799,AAA Batteries (4-pack),1,2.99,2019-07-31 15:40:00,904 Cedar St, Boston,MA,02215 +223800,Apple Airpods Headphones,1,150.0,2019-07-26 13:53:00,43 Main St, San Francisco,CA,94016 +223801,Apple Airpods Headphones,1,150.0,2019-07-20 14:22:00,640 7th St, San Francisco,CA,94016 +223802,27in 4K Gaming Monitor,1,389.99,2019-07-23 05:06:00,587 Meadow St, Boston,MA,02215 +223803,Bose SoundSport Headphones,1,99.99,2019-07-04 11:31:00,705 5th St, Boston,MA,02215 +223804,27in FHD Monitor,1,149.99,2019-07-16 19:06:00,791 10th St, Los Angeles,CA,90001 +223805,ThinkPad Laptop,1,999.99,2019-07-04 08:28:00,607 South St, Austin,TX,73301 +223806,AA Batteries (4-pack),1,3.84,2019-07-05 19:41:00,651 River St, Boston,MA,02215 +223807,Bose SoundSport Headphones,1,99.99,2019-07-06 10:20:00,951 Hill St, Los Angeles,CA,90001 +223808,AA Batteries (4-pack),1,3.84,2019-07-12 08:10:00,28 Forest St, New York City,NY,10001 +223809,AA Batteries (4-pack),1,3.84,2019-07-14 20:27:00,920 9th St, San Francisco,CA,94016 +223810,AA Batteries (4-pack),1,3.84,2019-07-29 09:24:00,132 Ridge St, Boston,MA,02215 +223811,Bose SoundSport Headphones,1,99.99,2019-07-21 23:04:00,327 8th St, New York City,NY,10001 +223812,Bose SoundSport Headphones,1,99.99,2019-07-15 20:58:00,36 Willow St, San Francisco,CA,94016 +223813,iPhone,1,700.0,2019-07-05 20:15:00,690 8th St, Los Angeles,CA,90001 +223814,USB-C Charging Cable,1,11.95,2019-07-25 17:07:00,83 Adams St, Dallas,TX,75001 +223815,Lightning Charging Cable,1,14.95,2019-07-06 15:08:00,406 Church St, Los Angeles,CA,90001 +223816,USB-C Charging Cable,1,11.95,2019-07-05 10:36:00,233 9th St, New York City,NY,10001 +223817,Vareebadd Phone,1,400.0,2019-07-29 12:45:00,569 Cherry St, Los Angeles,CA,90001 +223818,AAA Batteries (4-pack),1,2.99,2019-07-20 12:09:00,532 South St, Los Angeles,CA,90001 +223819,AAA Batteries (4-pack),1,2.99,2019-07-08 09:54:00,852 7th St, Los Angeles,CA,90001 +223820,USB-C Charging Cable,1,11.95,2019-07-07 20:47:00,833 Adams St, Boston,MA,02215 +223821,AA Batteries (4-pack),1,3.84,2019-07-03 22:54:00,309 Hickory St, San Francisco,CA,94016 +223822,34in Ultrawide Monitor,1,379.99,2019-07-18 22:23:00,461 Sunset St, Los Angeles,CA,90001 +223823,Lightning Charging Cable,1,14.95,2019-07-11 11:35:00,387 Maple St, Seattle,WA,98101 +223824,Apple Airpods Headphones,1,150.0,2019-07-01 22:29:00,30 Elm St, Atlanta,GA,30301 +223825,USB-C Charging Cable,1,11.95,2019-07-05 11:47:00,649 Johnson St, San Francisco,CA,94016 +223826,Apple Airpods Headphones,1,150.0,2019-07-09 17:19:00,833 5th St, Los Angeles,CA,90001 +223827,AAA Batteries (4-pack),4,2.99,2019-07-15 10:59:00,531 Sunset St, Seattle,WA,98101 +223828,iPhone,1,700.0,2019-07-06 08:45:00,565 Center St, Portland,OR,97035 +223829,USB-C Charging Cable,1,11.95,2019-07-24 12:19:00,976 Lakeview St, Dallas,TX,75001 +223830,iPhone,1,700.0,2019-07-10 19:55:00,881 Willow St, Los Angeles,CA,90001 +223831,AA Batteries (4-pack),2,3.84,2019-07-11 01:46:00,205 Sunset St, Dallas,TX,75001 +223832,Bose SoundSport Headphones,1,99.99,2019-07-11 17:04:00,762 Washington St, Boston,MA,02215 +223833,27in 4K Gaming Monitor,1,389.99,2019-07-08 13:52:00,406 Meadow St, New York City,NY,10001 +223834,27in FHD Monitor,1,149.99,2019-07-09 08:33:00,818 Forest St, Los Angeles,CA,90001 +223835,AA Batteries (4-pack),2,3.84,2019-07-04 11:23:00,554 Wilson St, Austin,TX,73301 +223836,Lightning Charging Cable,1,14.95,2019-07-12 05:48:00,350 Pine St, Atlanta,GA,30301 +223837,USB-C Charging Cable,1,11.95,2019-07-09 21:52:00,681 Main St, Austin,TX,73301 +223838,Wired Headphones,1,11.99,2019-07-15 20:11:00,928 West St, Dallas,TX,75001 +223839,iPhone,1,700.0,2019-07-05 12:53:00,886 Lakeview St, Austin,TX,73301 +223840,USB-C Charging Cable,1,11.95,2019-07-16 15:30:00,433 Ridge St, New York City,NY,10001 +223841,Apple Airpods Headphones,2,150.0,2019-07-21 09:46:00,723 Willow St, Portland,ME,04101 +223842,AA Batteries (4-pack),1,3.84,2019-07-15 20:24:00,935 Sunset St, Los Angeles,CA,90001 +223843,AAA Batteries (4-pack),2,2.99,2019-07-28 19:06:00,656 Lake St, Dallas,TX,75001 +223844,LG Dryer,1,600.0,2019-07-04 20:42:00,567 Dogwood St, Boston,MA,02215 +223844,27in FHD Monitor,1,149.99,2019-07-04 20:42:00,567 Dogwood St, Boston,MA,02215 +223845,ThinkPad Laptop,1,999.99,2019-07-22 20:11:00,718 Chestnut St, Los Angeles,CA,90001 +223846,Lightning Charging Cable,1,14.95,2019-07-28 16:43:00,444 2nd St, Los Angeles,CA,90001 +223847,Lightning Charging Cable,1,14.95,2019-07-14 18:44:00,575 Elm St, Los Angeles,CA,90001 +223848,AAA Batteries (4-pack),1,2.99,2019-07-05 02:24:00,643 River St, San Francisco,CA,94016 +223849,Wired Headphones,2,11.99,2019-07-03 13:52:00,324 13th St, Austin,TX,73301 +223850,Bose SoundSport Headphones,1,99.99,2019-07-27 13:34:00,572 Church St, Boston,MA,02215 +223851,Apple Airpods Headphones,1,150.0,2019-07-29 21:38:00,903 7th St, Dallas,TX,75001 +223852,USB-C Charging Cable,1,11.95,2019-07-15 21:51:00,777 4th St, San Francisco,CA,94016 +223853,Lightning Charging Cable,1,14.95,2019-07-15 17:34:00,896 River St, Atlanta,GA,30301 +223854,20in Monitor,1,109.99,2019-07-08 09:53:00,262 Washington St, Atlanta,GA,30301 +223855,Google Phone,1,600.0,2019-07-04 09:46:00,283 Park St, Boston,MA,02215 +223855,USB-C Charging Cable,1,11.95,2019-07-04 09:46:00,283 Park St, Boston,MA,02215 +223856,27in 4K Gaming Monitor,1,389.99,2019-07-05 13:00:00,290 5th St, Dallas,TX,75001 +223857,AA Batteries (4-pack),1,3.84,2019-07-11 16:17:00,351 13th St, New York City,NY,10001 +223858,Flatscreen TV,1,300.0,2019-07-13 00:44:00,9 8th St, Los Angeles,CA,90001 +223859,Lightning Charging Cable,3,14.95,2019-07-09 18:11:00,84 Cedar St, New York City,NY,10001 +223860,AA Batteries (4-pack),1,3.84,2019-07-25 12:45:00,760 Jackson St, San Francisco,CA,94016 +223861,AAA Batteries (4-pack),1,2.99,2019-07-31 10:34:00,707 1st St, New York City,NY,10001 +223862,AAA Batteries (4-pack),1,2.99,2019-07-08 10:49:00,594 Johnson St, Dallas,TX,75001 +223863,Flatscreen TV,1,300.0,2019-07-14 10:21:00,2 Church St, Los Angeles,CA,90001 +223864,USB-C Charging Cable,1,11.95,2019-07-21 16:38:00,703 Madison St, Portland,ME,04101 +223865,iPhone,1,700.0,2019-07-06 22:38:00,419 6th St, Atlanta,GA,30301 +223866,27in FHD Monitor,1,149.99,2019-07-08 22:33:00,334 South St, Los Angeles,CA,90001 +223867,AA Batteries (4-pack),1,3.84,2019-07-03 13:17:00,974 Washington St, San Francisco,CA,94016 +223868,27in FHD Monitor,1,149.99,2019-07-18 18:13:00,949 Dogwood St, Seattle,WA,98101 +223869,27in 4K Gaming Monitor,1,389.99,2019-07-18 20:51:00,493 7th St, San Francisco,CA,94016 +223870,Google Phone,1,600.0,2019-07-20 14:33:00,523 River St, San Francisco,CA,94016 +223871,AA Batteries (4-pack),1,3.84,2019-07-08 18:01:00,252 Lakeview St, Los Angeles,CA,90001 +223872,27in FHD Monitor,1,149.99,2019-07-26 17:57:00,364 Lakeview St, Seattle,WA,98101 +223873,Wired Headphones,1,11.99,2019-07-01 13:39:00,1 Spruce St, Seattle,WA,98101 +223874,Wired Headphones,1,11.99,2019-07-04 23:04:00,741 Lincoln St, San Francisco,CA,94016 +223875,Wired Headphones,1,11.99,2019-07-19 19:40:00,932 South St, Los Angeles,CA,90001 +223876,Bose SoundSport Headphones,1,99.99,2019-07-27 19:09:00,716 West St, Atlanta,GA,30301 +223877,AA Batteries (4-pack),2,3.84,2019-07-27 18:57:00,229 Pine St, San Francisco,CA,94016 +223878,Bose SoundSport Headphones,1,99.99,2019-07-01 17:55:00,140 Hickory St, New York City,NY,10001 +223879,AA Batteries (4-pack),1,3.84,2019-07-25 14:52:00,805 Willow St, San Francisco,CA,94016 +223880,USB-C Charging Cable,1,11.95,2019-07-16 19:21:00,45 River St, Los Angeles,CA,90001 +223881,AAA Batteries (4-pack),1,2.99,2019-07-14 17:30:00,40 Center St, San Francisco,CA,94016 +223882,Lightning Charging Cable,1,14.95,2019-07-18 07:41:00,336 Willow St, San Francisco,CA,94016 +223883,AAA Batteries (4-pack),1,2.99,2019-07-31 20:45:00,642 Wilson St, San Francisco,CA,94016 +223884,iPhone,1,700.0,2019-07-12 09:46:00,451 Jackson St, Boston,MA,02215 +223885,27in FHD Monitor,1,149.99,2019-07-02 23:55:00,342 South St, Los Angeles,CA,90001 +223885,AA Batteries (4-pack),2,3.84,2019-07-02 23:55:00,342 South St, Los Angeles,CA,90001 +223886,AA Batteries (4-pack),1,3.84,2019-07-10 15:24:00,412 Meadow St, Seattle,WA,98101 +223887,27in FHD Monitor,1,149.99,2019-07-17 20:29:00,131 Chestnut St, New York City,NY,10001 +223888,27in FHD Monitor,1,149.99,2019-07-21 15:30:00,406 South St, Dallas,TX,75001 +223889,iPhone,1,700.0,2019-07-06 11:50:00,958 10th St, New York City,NY,10001 +223890,20in Monitor,1,109.99,2019-07-05 10:10:00,352 Park St, San Francisco,CA,94016 +223891,USB-C Charging Cable,1,11.95,2019-07-16 16:08:00,211 Church St, New York City,NY,10001 +223892,Apple Airpods Headphones,1,150.0,2019-07-20 10:51:00,197 Highland St, San Francisco,CA,94016 +223893,AAA Batteries (4-pack),1,2.99,2019-07-10 09:36:00,369 Lakeview St, Seattle,WA,98101 +223894,Flatscreen TV,1,300.0,2019-07-24 14:05:00,100 Lincoln St, New York City,NY,10001 +223895,AA Batteries (4-pack),1,3.84,2019-07-29 09:28:00,519 Meadow St, Austin,TX,73301 +223896,AA Batteries (4-pack),1,3.84,2019-07-03 15:37:00,585 8th St, Atlanta,GA,30301 +223897,27in FHD Monitor,1,149.99,2019-07-25 15:11:00,949 Jefferson St, Atlanta,GA,30301 +223898,USB-C Charging Cable,1,11.95,2019-07-01 19:33:00,92 Main St, San Francisco,CA,94016 +223899,AAA Batteries (4-pack),1,2.99,2019-07-24 11:51:00,538 1st St, San Francisco,CA,94016 +223900,USB-C Charging Cable,1,11.95,2019-07-13 14:14:00,873 Jackson St, Boston,MA,02215 +223901,27in 4K Gaming Monitor,1,389.99,2019-07-17 10:18:00,371 Lincoln St, San Francisco,CA,94016 +223902,Macbook Pro Laptop,1,1700.0,2019-07-18 20:23:00,616 Cherry St, Boston,MA,02215 +223903,USB-C Charging Cable,1,11.95,2019-07-25 17:42:00,533 Johnson St, San Francisco,CA,94016 +223904,Macbook Pro Laptop,1,1700.0,2019-07-27 02:09:00,847 Highland St, San Francisco,CA,94016 +223905,USB-C Charging Cable,1,11.95,2019-07-07 11:28:00,565 14th St, Seattle,WA,98101 +223906,Flatscreen TV,1,300.0,2019-07-04 09:14:00,18 Dogwood St, Dallas,TX,75001 +223907,Apple Airpods Headphones,1,150.0,2019-07-22 12:36:00,299 River St, Portland,OR,97035 +223908,Flatscreen TV,1,300.0,2019-07-11 11:38:00,735 Walnut St, New York City,NY,10001 +223909,USB-C Charging Cable,1,11.95,2019-07-26 20:33:00,238 Church St, Seattle,WA,98101 +223910,USB-C Charging Cable,1,11.95,2019-07-23 14:19:00,626 Meadow St, New York City,NY,10001 +223911,Apple Airpods Headphones,1,150.0,2019-07-31 12:21:00,686 4th St, New York City,NY,10001 +223912,Google Phone,1,600.0,2019-07-29 11:02:00,866 Willow St, Los Angeles,CA,90001 +223913,AAA Batteries (4-pack),2,2.99,2019-07-13 20:39:00,58 14th St, Los Angeles,CA,90001 +223914,Google Phone,1,600.0,2019-07-30 00:05:00,192 Lincoln St, Los Angeles,CA,90001 +223914,USB-C Charging Cable,1,11.95,2019-07-30 00:05:00,192 Lincoln St, Los Angeles,CA,90001 +223915,Macbook Pro Laptop,1,1700.0,2019-07-10 12:13:00,836 Dogwood St, Austin,TX,73301 +223916,USB-C Charging Cable,1,11.95,2019-07-30 14:01:00,67 Ridge St, San Francisco,CA,94016 +223917,USB-C Charging Cable,1,11.95,2019-07-25 09:41:00,296 9th St, San Francisco,CA,94016 +223918,AA Batteries (4-pack),1,3.84,2019-07-09 16:09:00,39 Ridge St, Atlanta,GA,30301 +223919,Lightning Charging Cable,1,14.95,2019-07-16 17:10:00,58 13th St, Seattle,WA,98101 +223920,AA Batteries (4-pack),2,3.84,2019-07-22 22:41:00,337 Center St, Portland,OR,97035 +223921,AAA Batteries (4-pack),1,2.99,2019-07-25 08:05:00,719 4th St, Atlanta,GA,30301 +223922,AAA Batteries (4-pack),1,2.99,2019-07-26 22:42:00,674 8th St, New York City,NY,10001 +223923,AAA Batteries (4-pack),1,2.99,2019-07-31 12:55:00,152 12th St, Austin,TX,73301 +223924,27in 4K Gaming Monitor,1,389.99,2019-07-22 22:08:00,66 Washington St, New York City,NY,10001 +223925,ThinkPad Laptop,1,999.99,2019-07-17 18:47:00,103 River St, San Francisco,CA,94016 +223926,Wired Headphones,1,11.99,2019-07-03 19:26:00,501 Lakeview St, San Francisco,CA,94016 +223927,34in Ultrawide Monitor,1,379.99,2019-07-06 15:47:00,151 5th St, Los Angeles,CA,90001 +223928,USB-C Charging Cable,1,11.95,2019-07-28 17:57:00,903 Meadow St, Los Angeles,CA,90001 +223929,Google Phone,1,600.0,2019-07-08 15:17:00,446 Willow St, San Francisco,CA,94016 +223930,AAA Batteries (4-pack),1,2.99,2019-07-17 12:37:00,868 River St, Dallas,TX,75001 +223931,USB-C Charging Cable,1,11.95,2019-07-15 22:37:00,456 South St, San Francisco,CA,94016 +223932,USB-C Charging Cable,1,11.95,2019-07-10 16:15:00,921 11th St, Seattle,WA,98101 +223933,Bose SoundSport Headphones,1,99.99,2019-07-26 12:46:00,216 13th St, Boston,MA,02215 +223934,USB-C Charging Cable,1,11.95,2019-07-29 20:50:00,685 Walnut St, San Francisco,CA,94016 +223935,AAA Batteries (4-pack),1,2.99,2019-07-27 11:57:00,962 9th St, Seattle,WA,98101 +223936,27in 4K Gaming Monitor,1,389.99,2019-07-23 10:10:00,482 Dogwood St, San Francisco,CA,94016 +223937,Apple Airpods Headphones,1,150.0,2019-07-08 17:36:00,798 Spruce St, Atlanta,GA,30301 +223938,USB-C Charging Cable,1,11.95,2019-07-22 20:56:00,524 Washington St, Boston,MA,02215 +223939,AA Batteries (4-pack),1,3.84,2019-07-18 20:29:00,576 Sunset St, San Francisco,CA,94016 +223940,Macbook Pro Laptop,1,1700.0,2019-07-30 17:42:00,504 14th St, Portland,OR,97035 +223941,Wired Headphones,1,11.99,2019-07-06 12:08:00,722 Church St, San Francisco,CA,94016 +223942,AAA Batteries (4-pack),2,2.99,2019-07-04 20:43:00,897 Forest St, San Francisco,CA,94016 +223943,USB-C Charging Cable,1,11.95,2019-07-09 12:42:00,5 South St, Boston,MA,02215 +223944,iPhone,1,700.0,2019-07-28 00:20:00,826 Elm St, Los Angeles,CA,90001 +223945,Wired Headphones,1,11.99,2019-07-10 15:25:00,380 Hill St, Portland,ME,04101 +223946,Flatscreen TV,1,300.0,2019-07-17 07:56:00,702 4th St, New York City,NY,10001 +223947,AAA Batteries (4-pack),1,2.99,2019-07-28 18:10:00,420 7th St, San Francisco,CA,94016 +223948,AA Batteries (4-pack),1,3.84,2019-07-19 19:57:00,30 Elm St, New York City,NY,10001 +223949,Bose SoundSport Headphones,1,99.99,2019-07-26 15:57:00,170 Hill St, San Francisco,CA,94016 +223950,iPhone,1,700.0,2019-07-17 19:03:00,30 Church St, Los Angeles,CA,90001 +223951,USB-C Charging Cable,1,11.95,2019-07-02 17:51:00,432 Sunset St, New York City,NY,10001 +223952,Lightning Charging Cable,1,14.95,2019-07-24 22:00:00,374 Chestnut St, Boston,MA,02215 +223953,USB-C Charging Cable,1,11.95,2019-07-06 13:31:00,385 Hill St, Los Angeles,CA,90001 +223954,Apple Airpods Headphones,1,150.0,2019-07-01 20:20:00,641 Lake St, Dallas,TX,75001 +223955,USB-C Charging Cable,1,11.95,2019-07-17 08:39:00,711 Church St, San Francisco,CA,94016 +223956,Apple Airpods Headphones,1,150.0,2019-07-07 22:00:00,518 Main St, New York City,NY,10001 +223957,Lightning Charging Cable,1,14.95,2019-07-28 18:20:00,284 Ridge St, New York City,NY,10001 +223958,iPhone,1,700.0,2019-07-17 12:31:00,872 14th St, San Francisco,CA,94016 +223959,USB-C Charging Cable,1,11.95,2019-07-14 18:52:00,650 10th St, Boston,MA,02215 +223960,Wired Headphones,1,11.99,2019-07-01 18:44:00,877 9th St, Boston,MA,02215 +223961,AA Batteries (4-pack),1,3.84,2019-07-06 11:45:00,691 Lake St, Atlanta,GA,30301 +223962,AAA Batteries (4-pack),1,2.99,2019-07-05 11:47:00,753 Lincoln St, Seattle,WA,98101 +223963,Wired Headphones,1,11.99,2019-07-04 20:30:00,250 4th St, Boston,MA,02215 +223964,Lightning Charging Cable,1,14.95,2019-07-06 11:40:00,230 Spruce St, Boston,MA,02215 +223965,Apple Airpods Headphones,1,150.0,2019-07-03 13:49:00,923 11th St, San Francisco,CA,94016 +223966,Lightning Charging Cable,1,14.95,2019-07-13 18:23:00,453 Walnut St, San Francisco,CA,94016 +223967,Bose SoundSport Headphones,1,99.99,2019-07-31 18:26:00,6 Jefferson St, Portland,OR,97035 +223968,Lightning Charging Cable,1,14.95,2019-07-18 17:06:00,485 9th St, Austin,TX,73301 +223969,Wired Headphones,1,11.99,2019-07-19 10:32:00,154 Dogwood St, Los Angeles,CA,90001 +223970,AA Batteries (4-pack),3,3.84,2019-07-26 22:22:00,423 Pine St, San Francisco,CA,94016 +223971,Apple Airpods Headphones,1,150.0,2019-07-07 19:46:00,169 7th St, Austin,TX,73301 +223972,Apple Airpods Headphones,1,150.0,2019-07-20 20:07:00,121 13th St, Atlanta,GA,30301 +223973,AAA Batteries (4-pack),2,2.99,2019-07-23 17:36:00,998 Spruce St, San Francisco,CA,94016 +223974,ThinkPad Laptop,1,999.99,2019-07-09 16:53:00,456 14th St, Los Angeles,CA,90001 +223975,Bose SoundSport Headphones,1,99.99,2019-07-12 19:49:00,191 6th St, Atlanta,GA,30301 +223976,34in Ultrawide Monitor,1,379.99,2019-07-14 09:41:00,654 Pine St, San Francisco,CA,94016 +223977,Lightning Charging Cable,1,14.95,2019-07-25 18:47:00,581 Ridge St, Dallas,TX,75001 +223978,AA Batteries (4-pack),1,3.84,2019-07-18 09:03:00,144 8th St, San Francisco,CA,94016 +223979,iPhone,1,700.0,2019-07-31 21:20:00,289 6th St, Seattle,WA,98101 +223980,Bose SoundSport Headphones,1,99.99,2019-07-11 09:36:00,165 Lincoln St, Atlanta,GA,30301 +223981,Flatscreen TV,1,300.0,2019-07-14 18:19:00,53 7th St, Dallas,TX,75001 +223982,Lightning Charging Cable,1,14.95,2019-07-07 18:34:00,87 Lakeview St, Los Angeles,CA,90001 +223983,Lightning Charging Cable,1,14.95,2019-07-28 12:35:00,939 Cherry St, Boston,MA,02215 +223984,AAA Batteries (4-pack),1,2.99,2019-07-05 22:06:00,979 Jackson St, Seattle,WA,98101 +223985,Wired Headphones,2,11.99,2019-07-17 22:11:00,959 12th St, Boston,MA,02215 +223986,Lightning Charging Cable,2,14.95,2019-07-30 12:55:00,845 South St, New York City,NY,10001 +223987,USB-C Charging Cable,2,11.95,2019-07-10 19:39:00,999 Cherry St, San Francisco,CA,94016 +223988,AA Batteries (4-pack),1,3.84,2019-07-23 09:41:00,641 South St, Los Angeles,CA,90001 +223989,Wired Headphones,1,11.99,2019-07-09 14:03:00,56 Willow St, New York City,NY,10001 +223990,Lightning Charging Cable,1,14.95,2019-07-02 18:59:00,420 Hickory St, San Francisco,CA,94016 +223991,AA Batteries (4-pack),1,3.84,2019-07-14 12:48:00,682 Cherry St, Los Angeles,CA,90001 +223992,ThinkPad Laptop,1,999.99,2019-07-13 12:12:00,818 11th St, Portland,OR,97035 +223993,USB-C Charging Cable,1,11.95,2019-07-10 12:52:00,302 8th St, Atlanta,GA,30301 +223994,iPhone,1,700.0,2019-07-24 20:33:00,129 6th St, San Francisco,CA,94016 +223995,USB-C Charging Cable,1,11.95,2019-07-31 13:05:00,265 Walnut St, Boston,MA,02215 +223996,27in FHD Monitor,1,149.99,2019-07-08 06:20:00,28 Wilson St, New York City,NY,10001 +223997,34in Ultrawide Monitor,1,379.99,2019-07-18 10:30:00,375 Cedar St, Atlanta,GA,30301 +223998,Flatscreen TV,1,300.0,2019-07-31 13:15:00,635 Walnut St, San Francisco,CA,94016 +223999,iPhone,1,700.0,2019-07-12 19:14:00,38 Park St, Dallas,TX,75001 +224000,iPhone,1,700.0,2019-07-30 17:58:00,639 Johnson St, Austin,TX,73301 +224001,Lightning Charging Cable,1,14.95,2019-07-31 14:54:00,292 Lakeview St, San Francisco,CA,94016 +224002,Wired Headphones,1,11.99,2019-07-02 16:02:00,475 Hill St, San Francisco,CA,94016 +224003,Apple Airpods Headphones,1,150.0,2019-07-29 09:15:00,278 Jackson St, San Francisco,CA,94016 +224004,USB-C Charging Cable,2,11.95,2019-07-19 13:41:00,317 Sunset St, San Francisco,CA,94016 +224005,USB-C Charging Cable,1,11.95,2019-07-01 14:16:00,660 1st St, Atlanta,GA,30301 +224006,Wired Headphones,1,11.99,2019-07-27 18:39:00,383 9th St, San Francisco,CA,94016 +224007,Flatscreen TV,1,300.0,2019-07-30 22:20:00,883 Highland St, New York City,NY,10001 +224008,Bose SoundSport Headphones,1,99.99,2019-07-04 19:19:00,757 West St, New York City,NY,10001 +224009,Apple Airpods Headphones,1,150.0,2019-07-31 21:52:00,77 Sunset St, San Francisco,CA,94016 +224010,iPhone,1,700.0,2019-07-30 04:03:00,911 8th St, Los Angeles,CA,90001 +224011,iPhone,1,700.0,2019-07-31 23:30:00,570 South St, Los Angeles,CA,90001 +224011,Apple Airpods Headphones,1,150.0,2019-07-31 23:30:00,570 South St, Los Angeles,CA,90001 +224012,Wired Headphones,1,11.99,2019-07-11 20:18:00,722 11th St, New York City,NY,10001 +224013,Wired Headphones,2,11.99,2019-07-26 20:39:00,91 River St, Seattle,WA,98101 +224014,Bose SoundSport Headphones,1,99.99,2019-07-26 09:00:00,887 West St, New York City,NY,10001 +224015,Apple Airpods Headphones,1,150.0,2019-07-30 08:14:00,255 Jefferson St, New York City,NY,10001 +224016,AA Batteries (4-pack),2,3.84,2019-07-11 12:13:00,539 13th St, New York City,NY,10001 +224017,20in Monitor,1,109.99,2019-07-30 18:31:00,215 Center St, Austin,TX,73301 +224018,Bose SoundSport Headphones,1,99.99,2019-07-14 09:24:00,744 12th St, Seattle,WA,98101 +224019,34in Ultrawide Monitor,1,379.99,2019-07-31 12:46:00,165 1st St, San Francisco,CA,94016 +224020,Macbook Pro Laptop,1,1700.0,2019-07-13 17:34:00,317 Hickory St, Boston,MA,02215 +224021,ThinkPad Laptop,1,999.99,2019-07-05 12:09:00,222 Wilson St, Portland,OR,97035 +224022,Wired Headphones,1,11.99,2019-07-12 23:05:00,594 Hill St, Boston,MA,02215 +224023,Apple Airpods Headphones,1,150.0,2019-07-17 14:54:00,268 Highland St, San Francisco,CA,94016 +224024,AA Batteries (4-pack),1,3.84,2019-07-16 22:19:00,85 Jackson St, San Francisco,CA,94016 +224025,34in Ultrawide Monitor,1,379.99,2019-07-31 09:56:00,817 Lincoln St, New York City,NY,10001 +224026,Apple Airpods Headphones,1,150.0,2019-07-28 20:17:00,813 Cherry St, Atlanta,GA,30301 +224027,Apple Airpods Headphones,1,150.0,2019-07-18 21:49:00,17 Wilson St, San Francisco,CA,94016 +224028,Apple Airpods Headphones,1,150.0,2019-07-02 10:39:00,96 2nd St, Austin,TX,73301 +224029,USB-C Charging Cable,1,11.95,2019-07-27 19:56:00,482 9th St, Los Angeles,CA,90001 +224030,AAA Batteries (4-pack),1,2.99,2019-07-12 16:36:00,42 14th St, San Francisco,CA,94016 +224031,Apple Airpods Headphones,1,150.0,2019-07-15 22:48:00,285 2nd St, Los Angeles,CA,90001 +224032,iPhone,1,700.0,2019-07-28 11:00:00,889 Main St, New York City,NY,10001 +224033,Bose SoundSport Headphones,1,99.99,2019-07-16 08:36:00,83 9th St, Atlanta,GA,30301 +224034,AAA Batteries (4-pack),1,2.99,2019-07-24 17:09:00,915 Elm St, San Francisco,CA,94016 +224035,Macbook Pro Laptop,1,1700.0,2019-07-08 14:13:00,762 7th St, San Francisco,CA,94016 +224036,Wired Headphones,2,11.99,2019-07-14 17:42:00,426 Willow St, Atlanta,GA,30301 +224037,AAA Batteries (4-pack),2,2.99,2019-07-14 01:11:00,131 4th St, San Francisco,CA,94016 +224038,Bose SoundSport Headphones,1,99.99,2019-07-12 12:55:00,394 South St, Boston,MA,02215 +224039,Apple Airpods Headphones,1,150.0,2019-07-25 16:12:00,114 12th St, Portland,ME,04101 +224040,AAA Batteries (4-pack),2,2.99,2019-07-23 14:42:00,787 Center St, San Francisco,CA,94016 +224041,Bose SoundSport Headphones,1,99.99,2019-07-01 11:35:00,696 5th St, Atlanta,GA,30301 +224042,Apple Airpods Headphones,1,150.0,2019-07-31 08:35:00,653 Johnson St, Seattle,WA,98101 +224043,Bose SoundSport Headphones,1,99.99,2019-07-04 11:27:00,391 Cedar St, New York City,NY,10001 +224044,Vareebadd Phone,1,400.0,2019-07-20 19:16:00,411 Church St, San Francisco,CA,94016 +224045,Bose SoundSport Headphones,1,99.99,2019-07-14 13:23:00,795 Ridge St, San Francisco,CA,94016 +224046,AA Batteries (4-pack),1,3.84,2019-07-08 20:30:00,14 Elm St, Atlanta,GA,30301 +224047,AA Batteries (4-pack),1,3.84,2019-07-16 21:59:00,92 Jackson St, Portland,ME,04101 +224048,AA Batteries (4-pack),1,3.84,2019-07-01 07:42:00,86 River St, Seattle,WA,98101 +224049,Apple Airpods Headphones,1,150.0,2019-07-06 16:52:00,606 Washington St, New York City,NY,10001 +224050,ThinkPad Laptop,1,999.99,2019-07-21 10:23:00,274 Lake St, San Francisco,CA,94016 +224051,AA Batteries (4-pack),1,3.84,2019-07-19 11:35:00,459 Walnut St, Austin,TX,73301 +224052,USB-C Charging Cable,1,11.95,2019-07-14 22:21:00,146 13th St, Atlanta,GA,30301 +224053,Flatscreen TV,1,300.0,2019-07-10 21:58:00,762 10th St, New York City,NY,10001 +224054,Wired Headphones,1,11.99,2019-07-04 15:36:00,935 Dogwood St, San Francisco,CA,94016 +224055,AAA Batteries (4-pack),2,2.99,2019-07-28 20:42:00,451 North St, New York City,NY,10001 +224056,LG Washing Machine,1,600.0,2019-07-18 23:25:00,389 North St, Atlanta,GA,30301 +224057,Apple Airpods Headphones,1,150.0,2019-07-19 19:10:00,593 Sunset St, San Francisco,CA,94016 +224058,AAA Batteries (4-pack),1,2.99,2019-07-21 11:18:00,956 Dogwood St, San Francisco,CA,94016 +224059,Lightning Charging Cable,1,14.95,2019-07-06 10:02:00,896 Wilson St, Los Angeles,CA,90001 +224060,Wired Headphones,1,11.99,2019-07-09 04:13:00,953 Dogwood St, Seattle,WA,98101 +224061,Apple Airpods Headphones,1,150.0,2019-07-24 00:51:00,988 Highland St, New York City,NY,10001 +224062,iPhone,1,700.0,2019-07-16 17:16:00,650 13th St, San Francisco,CA,94016 +224063,AAA Batteries (4-pack),3,2.99,2019-07-07 09:26:00,397 4th St, Atlanta,GA,30301 +224064,USB-C Charging Cable,1,11.95,2019-07-27 09:45:00,735 Johnson St, Atlanta,GA,30301 +224065,AA Batteries (4-pack),1,3.84,2019-07-11 23:31:00,707 Cherry St, Austin,TX,73301 +224066,USB-C Charging Cable,1,11.95,2019-07-06 22:39:00,176 Madison St, Los Angeles,CA,90001 +224067,Wired Headphones,2,11.99,2019-07-30 16:59:00,159 8th St, Atlanta,GA,30301 +224068,Google Phone,1,600.0,2019-07-25 16:16:00,602 Washington St, San Francisco,CA,94016 +224069,20in Monitor,1,109.99,2019-07-19 09:13:00,847 Lake St, New York City,NY,10001 +224070,Apple Airpods Headphones,1,150.0,2019-07-17 08:39:00,653 Pine St, San Francisco,CA,94016 +224071,USB-C Charging Cable,1,11.95,2019-07-23 14:35:00,982 Meadow St, Austin,TX,73301 +224072,AAA Batteries (4-pack),1,2.99,2019-07-30 16:59:00,45 South St, Los Angeles,CA,90001 +224073,iPhone,1,700.0,2019-07-21 22:29:00,741 Sunset St, Atlanta,GA,30301 +224074,34in Ultrawide Monitor,1,379.99,2019-07-01 09:59:00,355 Washington St, San Francisco,CA,94016 +224075,Lightning Charging Cable,1,14.95,2019-07-30 07:44:00,345 Jefferson St, Los Angeles,CA,90001 +224076,Apple Airpods Headphones,1,150.0,2019-07-02 20:22:00,846 Main St, Atlanta,GA,30301 +224077,Wired Headphones,1,11.99,2019-07-31 00:36:00,605 Cedar St, Seattle,WA,98101 +224078,AA Batteries (4-pack),1,3.84,2019-07-09 23:18:00,515 Adams St, Austin,TX,73301 +224079,Wired Headphones,1,11.99,2019-07-03 17:10:00,475 Church St, Seattle,WA,98101 +224080,Bose SoundSport Headphones,1,99.99,2019-07-16 15:35:00,398 1st St, Boston,MA,02215 +224081,AA Batteries (4-pack),1,3.84,2019-07-14 16:50:00,733 Lake St, San Francisco,CA,94016 +224082,AA Batteries (4-pack),1,3.84,2019-07-06 17:42:00,318 Highland St, Seattle,WA,98101 +224083,AAA Batteries (4-pack),2,2.99,2019-07-05 10:08:00,198 Walnut St, Atlanta,GA,30301 +224084,27in 4K Gaming Monitor,1,389.99,2019-07-13 08:33:00,468 Cherry St, Austin,TX,73301 +224085,20in Monitor,1,109.99,2019-07-13 14:25:00,116 Johnson St, Portland,OR,97035 +224086,Bose SoundSport Headphones,1,99.99,2019-07-07 14:49:00,296 8th St, Boston,MA,02215 +224087,Wired Headphones,1,11.99,2019-07-26 18:28:00,493 6th St, New York City,NY,10001 +224088,Wired Headphones,1,11.99,2019-07-16 21:34:00,769 Cherry St, Dallas,TX,75001 +224089,AAA Batteries (4-pack),1,2.99,2019-07-23 17:45:00,329 Hill St, Atlanta,GA,30301 +224090,Wired Headphones,1,11.99,2019-07-13 19:23:00,524 Ridge St, Atlanta,GA,30301 +224091,Lightning Charging Cable,1,14.95,2019-07-20 22:16:00,428 Lake St, Boston,MA,02215 +224092,AA Batteries (4-pack),1,3.84,2019-07-17 14:28:00,711 Wilson St, New York City,NY,10001 +224093,USB-C Charging Cable,1,11.95,2019-07-18 13:02:00,556 13th St, Portland,ME,04101 +224094,27in FHD Monitor,1,149.99,2019-07-08 20:26:00,524 10th St, Los Angeles,CA,90001 +224095,AA Batteries (4-pack),1,3.84,2019-07-04 22:10:00,80 Main St, New York City,NY,10001 +224096,34in Ultrawide Monitor,1,379.99,2019-07-28 12:11:00,695 Pine St, San Francisco,CA,94016 +224097,Apple Airpods Headphones,1,150.0,2019-07-29 18:45:00,362 5th St, San Francisco,CA,94016 +224098,Apple Airpods Headphones,1,150.0,2019-07-10 10:32:00,330 4th St, Dallas,TX,75001 +224099,AAA Batteries (4-pack),1,2.99,2019-07-06 11:52:00,795 Spruce St, Dallas,TX,75001 +224100,AAA Batteries (4-pack),1,2.99,2019-07-07 10:30:00,929 Cedar St, Los Angeles,CA,90001 +224101,Lightning Charging Cable,1,14.95,2019-07-20 22:03:00,47 Willow St, Portland,OR,97035 +224102,Lightning Charging Cable,1,14.95,2019-07-28 13:25:00,242 Park St, Austin,TX,73301 +224103,Lightning Charging Cable,1,14.95,2019-07-15 11:26:00,35 Maple St, Los Angeles,CA,90001 +224104,iPhone,1,700.0,2019-07-20 23:36:00,858 Walnut St, San Francisco,CA,94016 +224105,AA Batteries (4-pack),2,3.84,2019-07-06 18:44:00,209 Jackson St, Boston,MA,02215 +224106,AAA Batteries (4-pack),2,2.99,2019-07-24 22:40:00,866 West St, San Francisco,CA,94016 +224107,Bose SoundSport Headphones,1,99.99,2019-07-18 10:57:00,460 Church St, New York City,NY,10001 +224108,AA Batteries (4-pack),1,3.84,2019-07-13 21:55:00,781 Wilson St, New York City,NY,10001 +224109,Lightning Charging Cable,1,14.95,2019-07-02 15:17:00,268 Spruce St, Los Angeles,CA,90001 +224110,iPhone,1,700.0,2019-07-16 21:38:00,110 11th St, New York City,NY,10001 +224111,USB-C Charging Cable,1,11.95,2019-07-22 09:43:00,324 7th St, New York City,NY,10001 +224112,Lightning Charging Cable,1,14.95,2019-07-14 21:15:00,184 Walnut St, San Francisco,CA,94016 +224113,AA Batteries (4-pack),2,3.84,2019-07-25 15:31:00,244 Adams St, Boston,MA,02215 +224114,Wired Headphones,1,11.99,2019-07-09 12:55:00,133 Lincoln St, Austin,TX,73301 +224115,USB-C Charging Cable,2,11.95,2019-07-15 19:40:00,660 Johnson St, San Francisco,CA,94016 +224116,Wired Headphones,1,11.99,2019-07-04 14:05:00,198 9th St, Los Angeles,CA,90001 +224117,Bose SoundSport Headphones,1,99.99,2019-07-10 12:57:00,859 11th St, San Francisco,CA,94016 +224118,Apple Airpods Headphones,1,150.0,2019-07-28 11:43:00,87 10th St, Austin,TX,73301 +224119,Bose SoundSport Headphones,1,99.99,2019-07-02 14:11:00,219 Wilson St, Boston,MA,02215 +224120,AA Batteries (4-pack),1,3.84,2019-07-11 14:16:00,254 1st St, San Francisco,CA,94016 +224121,Bose SoundSport Headphones,1,99.99,2019-07-11 12:48:00,826 1st St, Austin,TX,73301 +224122,Wired Headphones,3,11.99,2019-07-21 21:26:00,395 Meadow St, Atlanta,GA,30301 +224123,27in FHD Monitor,1,149.99,2019-07-13 05:33:00,931 Hickory St, Dallas,TX,75001 +224124,Apple Airpods Headphones,1,150.0,2019-07-21 07:31:00,493 Center St, Boston,MA,02215 +224125,Macbook Pro Laptop,1,1700.0,2019-07-21 20:58:00,501 Cherry St, New York City,NY,10001 +224126,27in 4K Gaming Monitor,1,389.99,2019-07-07 19:22:00,595 Meadow St, New York City,NY,10001 +224127,AA Batteries (4-pack),1,3.84,2019-07-18 12:33:00,679 5th St, Los Angeles,CA,90001 +224128,Lightning Charging Cable,1,14.95,2019-07-15 14:23:00,581 Dogwood St, Portland,OR,97035 +224129,AA Batteries (4-pack),2,3.84,2019-07-06 13:36:00,702 11th St, Dallas,TX,75001 +224130,AA Batteries (4-pack),1,3.84,2019-07-13 20:50:00,968 12th St, San Francisco,CA,94016 +224131,Lightning Charging Cable,1,14.95,2019-07-05 00:40:00,35 Park St, New York City,NY,10001 +224132,AA Batteries (4-pack),1,3.84,2019-07-31 11:48:00,498 11th St, San Francisco,CA,94016 +224133,Apple Airpods Headphones,1,150.0,2019-07-30 15:17:00,250 Main St, Austin,TX,73301 +224134,Flatscreen TV,1,300.0,2019-07-29 21:00:00,812 Wilson St, Seattle,WA,98101 +224135,Lightning Charging Cable,1,14.95,2019-07-12 19:19:00,483 North St, Austin,TX,73301 +224136,USB-C Charging Cable,1,11.95,2019-07-28 00:32:00,34 Hickory St, Los Angeles,CA,90001 +224137,Lightning Charging Cable,1,14.95,2019-07-03 14:06:00,441 1st St, San Francisco,CA,94016 +224138,AAA Batteries (4-pack),1,2.99,2019-07-14 09:30:00,108 Ridge St, Austin,TX,73301 +224139,USB-C Charging Cable,1,11.95,2019-07-31 12:05:00,305 4th St, Boston,MA,02215 +224140,Wired Headphones,1,11.99,2019-07-21 18:47:00,323 Center St, New York City,NY,10001 +224141,Bose SoundSport Headphones,1,99.99,2019-07-28 18:05:00,170 6th St, San Francisco,CA,94016 +224141,AA Batteries (4-pack),1,3.84,2019-07-28 18:05:00,170 6th St, San Francisco,CA,94016 +224142,27in FHD Monitor,1,149.99,2019-07-15 21:21:00,552 Park St, San Francisco,CA,94016 +224143,AA Batteries (4-pack),1,3.84,2019-07-20 19:14:00,802 2nd St, New York City,NY,10001 +224144,Bose SoundSport Headphones,1,99.99,2019-07-22 22:04:00,165 1st St, San Francisco,CA,94016 +224144,Apple Airpods Headphones,1,150.0,2019-07-22 22:04:00,165 1st St, San Francisco,CA,94016 +224145,USB-C Charging Cable,1,11.95,2019-07-04 12:18:00,747 Hickory St, Los Angeles,CA,90001 +224146,USB-C Charging Cable,1,11.95,2019-07-07 16:40:00,434 Lake St, Los Angeles,CA,90001 +224147,USB-C Charging Cable,1,11.95,2019-07-18 16:50:00,19 South St, San Francisco,CA,94016 +224148,AA Batteries (4-pack),2,3.84,2019-07-19 00:07:00,121 Hickory St, Dallas,TX,75001 +224149,Google Phone,1,600.0,2019-07-08 21:26:00,418 North St, Portland,OR,97035 +224150,Bose SoundSport Headphones,1,99.99,2019-07-06 07:25:00,8 Cedar St, Los Angeles,CA,90001 +224151,Macbook Pro Laptop,1,1700.0,2019-07-16 12:19:00,481 Sunset St, New York City,NY,10001 +224152,USB-C Charging Cable,2,11.95,2019-07-24 17:51:00,962 Chestnut St, Atlanta,GA,30301 +224153,AAA Batteries (4-pack),1,2.99,2019-07-26 15:44:00,167 Spruce St, Dallas,TX,75001 +224154,Flatscreen TV,1,300.0,2019-07-23 20:11:00,898 14th St, San Francisco,CA,94016 +224155,Flatscreen TV,1,300.0,2019-07-16 11:26:00,843 10th St, San Francisco,CA,94016 +224156,Bose SoundSport Headphones,1,99.99,2019-07-19 13:41:00,169 Cherry St, Portland,OR,97035 +224157,USB-C Charging Cable,1,11.95,2019-07-19 20:35:00,946 6th St, Atlanta,GA,30301 +224158,AAA Batteries (4-pack),2,2.99,2019-07-31 14:11:00,573 Pine St, San Francisco,CA,94016 +224159,Bose SoundSport Headphones,1,99.99,2019-07-08 20:56:00,368 Washington St, Los Angeles,CA,90001 +224160,20in Monitor,1,109.99,2019-07-06 16:48:00,611 Lincoln St, San Francisco,CA,94016 +224161,AA Batteries (4-pack),1,3.84,2019-07-28 12:51:00,440 13th St, San Francisco,CA,94016 +224162,Bose SoundSport Headphones,1,99.99,2019-07-03 07:03:00,202 Adams St, San Francisco,CA,94016 +224163,27in FHD Monitor,1,149.99,2019-07-07 18:01:00,271 Hill St, San Francisco,CA,94016 +224164,Wired Headphones,1,11.99,2019-07-21 15:09:00,16 Church St, Los Angeles,CA,90001 +224165,34in Ultrawide Monitor,1,379.99,2019-07-21 16:23:00,162 North St, Los Angeles,CA,90001 +224166,AA Batteries (4-pack),1,3.84,2019-07-07 10:11:00,706 Chestnut St, San Francisco,CA,94016 +224167,Lightning Charging Cable,1,14.95,2019-07-16 19:15:00,714 River St, San Francisco,CA,94016 +224168,Bose SoundSport Headphones,1,99.99,2019-07-07 12:20:00,958 Sunset St, San Francisco,CA,94016 +224169,Google Phone,1,600.0,2019-07-11 20:38:00,143 Ridge St, Seattle,WA,98101 +224170,Wired Headphones,1,11.99,2019-07-07 13:41:00,310 Cedar St, New York City,NY,10001 +224171,AA Batteries (4-pack),1,3.84,2019-07-08 16:14:00,936 Willow St, San Francisco,CA,94016 +224172,AA Batteries (4-pack),1,3.84,2019-07-15 20:35:00,208 Highland St, Los Angeles,CA,90001 +224173,Wired Headphones,1,11.99,2019-07-16 18:36:00,23 West St, Dallas,TX,75001 +224174,Lightning Charging Cable,1,14.95,2019-07-11 22:05:00,803 Ridge St, Boston,MA,02215 +224175,Apple Airpods Headphones,1,150.0,2019-07-07 22:58:00,35 Meadow St, Dallas,TX,75001 +224176,Bose SoundSport Headphones,1,99.99,2019-07-25 14:10:00,48 10th St, Los Angeles,CA,90001 +224177,AAA Batteries (4-pack),2,2.99,2019-07-15 22:52:00,212 5th St, Seattle,WA,98101 +224178,Apple Airpods Headphones,1,150.0,2019-07-09 22:07:00,676 Dogwood St, Los Angeles,CA,90001 +224179,34in Ultrawide Monitor,1,379.99,2019-07-10 12:19:00,15 Highland St, Boston,MA,02215 +224180,Lightning Charging Cable,1,14.95,2019-07-03 18:05:00,569 Chestnut St, Boston,MA,02215 +224181,Bose SoundSport Headphones,1,99.99,2019-07-26 14:02:00,621 Chestnut St, New York City,NY,10001 +224182,20in Monitor,1,109.99,2019-07-07 22:48:00,40 Willow St, Dallas,TX,75001 +224183,Lightning Charging Cable,1,14.95,2019-07-22 14:37:00,669 River St, Los Angeles,CA,90001 +224184,AA Batteries (4-pack),1,3.84,2019-07-24 12:23:00,541 Chestnut St, Atlanta,GA,30301 +224185,Wired Headphones,1,11.99,2019-07-22 01:08:00,398 Park St, New York City,NY,10001 +224186,Bose SoundSport Headphones,1,99.99,2019-07-25 15:07:00,434 Cedar St, New York City,NY,10001 +224187,Google Phone,1,600.0,2019-07-12 10:05:00,429 Ridge St, Dallas,TX,75001 +224188,Wired Headphones,1,11.99,2019-07-13 09:14:00,5 West St, Dallas,TX,75001 +224189,AAA Batteries (4-pack),1,2.99,2019-07-26 18:20:00,686 12th St, San Francisco,CA,94016 +224190,Bose SoundSport Headphones,1,99.99,2019-07-24 21:50:00,450 Sunset St, Los Angeles,CA,90001 +224191,20in Monitor,1,109.99,2019-07-29 09:47:00,280 Sunset St, Dallas,TX,75001 +224192,iPhone,1,700.0,2019-07-15 17:03:00,241 11th St, San Francisco,CA,94016 +224192,Apple Airpods Headphones,1,150.0,2019-07-15 17:03:00,241 11th St, San Francisco,CA,94016 +224193,Lightning Charging Cable,1,14.95,2019-07-07 17:09:00,586 Lake St, Seattle,WA,98101 +224194,Apple Airpods Headphones,1,150.0,2019-07-03 16:25:00,155 Center St, Dallas,TX,75001 +224195,AA Batteries (4-pack),1,3.84,2019-07-20 13:36:00,182 Church St, San Francisco,CA,94016 +224196,AA Batteries (4-pack),1,3.84,2019-07-26 20:11:00,352 10th St, San Francisco,CA,94016 +224196,Wired Headphones,1,11.99,2019-07-26 20:11:00,352 10th St, San Francisco,CA,94016 +224197,Bose SoundSport Headphones,1,99.99,2019-07-22 17:10:00,741 Center St, New York City,NY,10001 +224198,Bose SoundSport Headphones,1,99.99,2019-07-09 08:32:00,567 7th St, Atlanta,GA,30301 +224199,Flatscreen TV,1,300.0,2019-07-07 22:29:00,289 Highland St, San Francisco,CA,94016 +224200,AAA Batteries (4-pack),2,2.99,2019-07-30 15:57:00,978 10th St, New York City,NY,10001 +224201,Wired Headphones,1,11.99,2019-07-13 08:31:00,900 2nd St, Seattle,WA,98101 +224202,Apple Airpods Headphones,1,150.0,2019-07-14 08:17:00,229 12th St, San Francisco,CA,94016 +224203,Google Phone,1,600.0,2019-07-15 10:20:00,677 West St, Atlanta,GA,30301 +224204,AA Batteries (4-pack),3,3.84,2019-07-21 13:32:00,324 Madison St, San Francisco,CA,94016 +224205,Lightning Charging Cable,1,14.95,2019-07-14 08:19:00,818 2nd St, San Francisco,CA,94016 +224206,Apple Airpods Headphones,1,150.0,2019-07-31 17:47:00,984 Cedar St, Austin,TX,73301 +224207,iPhone,1,700.0,2019-07-01 15:26:00,744 Hill St, New York City,NY,10001 +224207,Lightning Charging Cable,1,14.95,2019-07-01 15:26:00,744 Hill St, New York City,NY,10001 +224208,USB-C Charging Cable,1,11.95,2019-07-05 12:31:00,905 North St, Boston,MA,02215 +224209,Apple Airpods Headphones,1,150.0,2019-07-10 19:53:00,883 Washington St, Atlanta,GA,30301 +224210,AA Batteries (4-pack),2,3.84,2019-07-22 20:19:00,585 Forest St, Dallas,TX,75001 +224211,Lightning Charging Cable,1,14.95,2019-07-15 18:34:00,373 Pine St, Boston,MA,02215 +224212,AAA Batteries (4-pack),3,2.99,2019-07-08 09:15:00,292 Chestnut St, San Francisco,CA,94016 +224213,AAA Batteries (4-pack),1,2.99,2019-07-22 22:49:00,608 Center St, Los Angeles,CA,90001 +224214,Bose SoundSport Headphones,1,99.99,2019-07-07 09:27:00,992 Jackson St, Los Angeles,CA,90001 +224215,AA Batteries (4-pack),2,3.84,2019-07-30 11:05:00,595 Madison St, Portland,OR,97035 +224216,Wired Headphones,1,11.99,2019-07-30 16:53:00,78 14th St, Seattle,WA,98101 +224217,Bose SoundSport Headphones,1,99.99,2019-07-25 08:20:00,110 Lincoln St, San Francisco,CA,94016 +224218,Apple Airpods Headphones,1,150.0,2019-07-15 10:43:00,936 Walnut St, Austin,TX,73301 +224219,USB-C Charging Cable,1,11.95,2019-07-30 11:21:00,31 River St, San Francisco,CA,94016 +224220,Bose SoundSport Headphones,1,99.99,2019-07-20 21:05:00,525 Johnson St, San Francisco,CA,94016 +224221,Wired Headphones,1,11.99,2019-07-05 20:00:00,34 14th St, New York City,NY,10001 +224222,AAA Batteries (4-pack),1,2.99,2019-07-14 17:36:00,369 Highland St, San Francisco,CA,94016 +224223,iPhone,1,700.0,2019-07-27 14:36:00,341 Willow St, Dallas,TX,75001 +224224,Bose SoundSport Headphones,1,99.99,2019-07-17 12:24:00,267 Lakeview St, Los Angeles,CA,90001 +224225,AA Batteries (4-pack),1,3.84,2019-07-14 21:29:00,536 Madison St, Austin,TX,73301 +224226,Flatscreen TV,1,300.0,2019-07-31 16:57:00,657 Sunset St, San Francisco,CA,94016 +224227,USB-C Charging Cable,1,11.95,2019-07-18 22:05:00,771 Cedar St, Atlanta,GA,30301 +224228,Lightning Charging Cable,1,14.95,2019-07-13 14:05:00,756 Pine St, Los Angeles,CA,90001 +224229,AAA Batteries (4-pack),1,2.99,2019-07-12 14:11:00,813 Chestnut St, San Francisco,CA,94016 +224230,Flatscreen TV,1,300.0,2019-07-22 04:08:00,784 Washington St, Los Angeles,CA,90001 +224231,AA Batteries (4-pack),1,3.84,2019-07-20 19:08:00,411 Hill St, New York City,NY,10001 +224232,AA Batteries (4-pack),1,3.84,2019-07-19 00:23:00,612 Madison St, Atlanta,GA,30301 +224233,USB-C Charging Cable,1,11.95,2019-07-31 09:41:00,824 Cedar St, Boston,MA,02215 +224234,ThinkPad Laptop,1,999.99,2019-07-12 14:24:00,629 10th St, San Francisco,CA,94016 +224235,USB-C Charging Cable,3,11.95,2019-07-22 01:37:00,349 Forest St, New York City,NY,10001 +224236,AAA Batteries (4-pack),1,2.99,2019-07-05 20:11:00,680 Lakeview St, Boston,MA,02215 +224237,AAA Batteries (4-pack),1,2.99,2019-07-20 21:24:00,917 2nd St, Atlanta,GA,30301 +224238,Lightning Charging Cable,1,14.95,2019-07-08 19:01:00,190 Lincoln St, Boston,MA,02215 +224239,27in FHD Monitor,1,149.99,2019-07-12 14:29:00,663 Madison St, Los Angeles,CA,90001 +224240,20in Monitor,1,109.99,2019-07-20 12:08:00,955 1st St, San Francisco,CA,94016 +224241,Wired Headphones,1,11.99,2019-07-18 22:46:00,362 Walnut St, Atlanta,GA,30301 +224242,27in 4K Gaming Monitor,1,389.99,2019-07-18 19:44:00,770 Walnut St, New York City,NY,10001 +224243,AAA Batteries (4-pack),1,2.99,2019-07-23 19:18:00,755 Cherry St, Los Angeles,CA,90001 +224244,Wired Headphones,1,11.99,2019-07-06 21:12:00,956 North St, New York City,NY,10001 +224245,27in FHD Monitor,1,149.99,2019-07-01 09:33:00,619 Forest St, Los Angeles,CA,90001 +224246,Apple Airpods Headphones,1,150.0,2019-07-28 17:43:00,146 Walnut St, San Francisco,CA,94016 +224247,Lightning Charging Cable,1,14.95,2019-07-12 12:54:00,335 Walnut St, San Francisco,CA,94016 +224248,Lightning Charging Cable,1,14.95,2019-07-27 13:35:00,956 8th St, Portland,OR,97035 +224249,Flatscreen TV,1,300.0,2019-07-28 11:01:00,637 Dogwood St, Boston,MA,02215 +224250,Apple Airpods Headphones,1,150.0,2019-07-08 10:21:00,44 South St, Los Angeles,CA,90001 +224251,Wired Headphones,1,11.99,2019-07-07 19:55:00,118 Wilson St, New York City,NY,10001 +224252,Flatscreen TV,1,300.0,2019-07-14 16:54:00,659 Forest St, New York City,NY,10001 +224253,Lightning Charging Cable,1,14.95,2019-07-09 19:06:00,739 Main St, Los Angeles,CA,90001 +224254,20in Monitor,1,109.99,2019-07-24 10:35:00,178 Dogwood St, San Francisco,CA,94016 +224255,Bose SoundSport Headphones,1,99.99,2019-07-15 15:21:00,103 Johnson St, San Francisco,CA,94016 +224256,Lightning Charging Cable,1,14.95,2019-07-16 05:49:00,389 Chestnut St, Los Angeles,CA,90001 +224257,iPhone,1,700.0,2019-07-04 21:56:00,781 Walnut St, New York City,NY,10001 +224257,Wired Headphones,1,11.99,2019-07-04 21:56:00,781 Walnut St, New York City,NY,10001 +224258,Wired Headphones,1,11.99,2019-07-02 09:50:00,657 Highland St, Boston,MA,02215 +224259,AAA Batteries (4-pack),1,2.99,2019-07-18 19:04:00,60 Dogwood St, Los Angeles,CA,90001 +224260,AAA Batteries (4-pack),1,2.99,2019-07-14 11:16:00,633 Madison St, San Francisco,CA,94016 +224261,Bose SoundSport Headphones,1,99.99,2019-07-27 14:07:00,128 Park St, New York City,NY,10001 +224262,Wired Headphones,1,11.99,2019-07-31 14:04:00,677 Wilson St, Los Angeles,CA,90001 +224263,Macbook Pro Laptop,1,1700.0,2019-07-13 11:51:00,842 8th St, San Francisco,CA,94016 +224264,Apple Airpods Headphones,1,150.0,2019-07-27 20:28:00,367 Wilson St, Seattle,WA,98101 +224265,AA Batteries (4-pack),2,3.84,2019-07-20 23:40:00,305 North St, Atlanta,GA,30301 +224266,Lightning Charging Cable,1,14.95,2019-07-31 09:25:00,669 Meadow St, Boston,MA,02215 +224267,Wired Headphones,1,11.99,2019-07-24 13:06:00,830 1st St, New York City,NY,10001 +224268,USB-C Charging Cable,1,11.95,2019-07-21 20:57:00,974 13th St, San Francisco,CA,94016 +224269,Bose SoundSport Headphones,1,99.99,2019-07-12 13:09:00,160 Hill St, Seattle,WA,98101 +224270,Flatscreen TV,1,300.0,2019-07-25 00:58:00,4 4th St, Los Angeles,CA,90001 +224271,27in FHD Monitor,1,149.99,2019-07-28 19:51:00,284 Wilson St, Atlanta,GA,30301 +224272,AAA Batteries (4-pack),1,2.99,2019-07-07 22:05:00,401 Ridge St, San Francisco,CA,94016 +224273,27in 4K Gaming Monitor,1,389.99,2019-07-22 14:31:00,609 Walnut St, San Francisco,CA,94016 +224274,iPhone,1,700.0,2019-07-10 20:52:00,946 North St, New York City,NY,10001 +224275,Wired Headphones,1,11.99,2019-07-02 12:39:00,523 Maple St, Atlanta,GA,30301 +224276,34in Ultrawide Monitor,1,379.99,2019-07-22 11:04:00,172 Elm St, Dallas,TX,75001 +224277,Lightning Charging Cable,1,14.95,2019-07-01 16:21:00,339 Lakeview St, San Francisco,CA,94016 +224278,Wired Headphones,1,11.99,2019-07-24 03:30:00,871 8th St, Seattle,WA,98101 +224279,Wired Headphones,1,11.99,2019-07-02 17:24:00,317 Madison St, San Francisco,CA,94016 +224280,27in FHD Monitor,1,149.99,2019-07-13 17:29:00,645 Hickory St, Boston,MA,02215 +224281,USB-C Charging Cable,1,11.95,2019-07-09 22:40:00,619 2nd St, Austin,TX,73301 +224282,iPhone,1,700.0,2019-07-06 10:23:00,396 9th St, Dallas,TX,75001 +224283,Flatscreen TV,1,300.0,2019-07-10 16:19:00,128 Lakeview St, Atlanta,GA,30301 +224284,AA Batteries (4-pack),2,3.84,2019-07-13 04:44:00,753 Willow St, San Francisco,CA,94016 +224285,Flatscreen TV,1,300.0,2019-07-13 07:23:00,570 8th St, Los Angeles,CA,90001 +224286,20in Monitor,1,109.99,2019-07-20 14:38:00,929 9th St, Portland,OR,97035 +224287,27in 4K Gaming Monitor,1,389.99,2019-07-04 10:20:00,395 Hickory St, Los Angeles,CA,90001 +224288,AAA Batteries (4-pack),1,2.99,2019-07-06 08:41:00,865 Hickory St, Los Angeles,CA,90001 +224289,Bose SoundSport Headphones,1,99.99,2019-07-06 10:46:00,959 Johnson St, Dallas,TX,75001 +224290,Vareebadd Phone,1,400.0,2019-07-28 23:01:00,623 South St, Los Angeles,CA,90001 +224291,Google Phone,1,600.0,2019-07-03 18:29:00,859 Church St, Seattle,WA,98101 +224291,Wired Headphones,1,11.99,2019-07-03 18:29:00,859 Church St, Seattle,WA,98101 +224292,AAA Batteries (4-pack),1,2.99,2019-07-09 12:08:00,336 Washington St, New York City,NY,10001 +224293,AA Batteries (4-pack),1,3.84,2019-07-10 00:52:00,370 Jackson St, Austin,TX,73301 +224294,Wired Headphones,1,11.99,2019-07-20 00:55:00,546 Chestnut St, Los Angeles,CA,90001 +224295,USB-C Charging Cable,1,11.95,2019-07-31 10:46:00,355 Sunset St, San Francisco,CA,94016 +224296,Flatscreen TV,1,300.0,2019-07-14 16:55:00,465 Hill St, New York City,NY,10001 +224297,Flatscreen TV,1,300.0,2019-07-11 10:01:00,186 Lakeview St, New York City,NY,10001 +224298,20in Monitor,1,109.99,2019-07-18 12:31:00,170 13th St, Austin,TX,73301 +224299,USB-C Charging Cable,1,11.95,2019-07-19 00:02:00,325 River St, Atlanta,GA,30301 +224300,AA Batteries (4-pack),2,3.84,2019-07-01 22:09:00,896 Dogwood St, Boston,MA,02215 +224301,Wired Headphones,1,11.99,2019-07-10 23:07:00,515 Hill St, Seattle,WA,98101 +224302,AA Batteries (4-pack),1,3.84,2019-07-21 03:41:00,951 Maple St, New York City,NY,10001 +224303,AA Batteries (4-pack),1,3.84,2019-07-31 14:16:00,123 Lakeview St, San Francisco,CA,94016 +224304,Lightning Charging Cable,1,14.95,2019-07-30 13:15:00,309 Chestnut St, San Francisco,CA,94016 +224305,Bose SoundSport Headphones,1,99.99,2019-07-10 22:01:00,306 Pine St, San Francisco,CA,94016 +224306,USB-C Charging Cable,1,11.95,2019-07-11 16:21:00,436 11th St, Seattle,WA,98101 +224307,Google Phone,1,600.0,2019-07-22 21:01:00,345 Wilson St, Los Angeles,CA,90001 +224308,Lightning Charging Cable,1,14.95,2019-07-02 17:41:00,231 6th St, Portland,OR,97035 +224309,27in FHD Monitor,1,149.99,2019-07-03 21:00:00,386 Walnut St, Portland,OR,97035 +224310,USB-C Charging Cable,1,11.95,2019-07-26 13:21:00,669 14th St, Dallas,TX,75001 +224311,Google Phone,1,600.0,2019-07-10 20:09:00,83 Chestnut St, Atlanta,GA,30301 +224312,20in Monitor,1,109.99,2019-07-16 15:33:00,916 Walnut St, Los Angeles,CA,90001 +224313,34in Ultrawide Monitor,1,379.99,2019-07-19 20:18:00,244 Church St, Los Angeles,CA,90001 +224314,Wired Headphones,3,11.99,2019-07-25 13:01:00,498 South St, San Francisco,CA,94016 +224315,Apple Airpods Headphones,1,150.0,2019-07-04 14:12:00,257 1st St, San Francisco,CA,94016 +224316,Macbook Pro Laptop,1,1700.0,2019-07-06 17:31:00,193 12th St, Los Angeles,CA,90001 +224317,27in 4K Gaming Monitor,1,389.99,2019-07-12 11:19:00,325 13th St, Los Angeles,CA,90001 +224318,27in FHD Monitor,1,149.99,2019-07-21 11:30:00,578 Adams St, Atlanta,GA,30301 +224319,20in Monitor,1,109.99,2019-07-24 21:18:00,192 West St, Atlanta,GA,30301 +224320,Bose SoundSport Headphones,1,99.99,2019-07-31 10:40:00,105 Jefferson St, Los Angeles,CA,90001 +224321,AAA Batteries (4-pack),1,2.99,2019-07-16 12:31:00,464 North St, San Francisco,CA,94016 +224322,AA Batteries (4-pack),1,3.84,2019-07-31 08:01:00,956 Cedar St, Boston,MA,02215 +224323,Wired Headphones,1,11.99,2019-07-01 16:03:00,360 Lincoln St, Dallas,TX,75001 +224324,Apple Airpods Headphones,1,150.0,2019-07-06 01:01:00,42 Lake St, Boston,MA,02215 +224325,AAA Batteries (4-pack),3,2.99,2019-07-07 18:33:00,214 Willow St, Los Angeles,CA,90001 +224326,Bose SoundSport Headphones,1,99.99,2019-07-16 19:50:00,313 Adams St, Los Angeles,CA,90001 +224327,Wired Headphones,1,11.99,2019-07-07 12:14:00,612 Dogwood St, Austin,TX,73301 +224328,Apple Airpods Headphones,1,150.0,2019-07-16 16:33:00,716 Meadow St, Dallas,TX,75001 +224329,34in Ultrawide Monitor,1,379.99,2019-07-13 16:18:00,25 Lakeview St, San Francisco,CA,94016 +224330,iPhone,1,700.0,2019-07-07 19:15:00,989 Forest St, Boston,MA,02215 +224331,Wired Headphones,1,11.99,2019-07-30 23:44:00,986 7th St, Portland,ME,04101 +224332,Wired Headphones,1,11.99,2019-07-10 18:00:00,811 7th St, Dallas,TX,75001 +224333,AA Batteries (4-pack),1,3.84,2019-07-05 21:11:00,68 Chestnut St, Los Angeles,CA,90001 +224334,Apple Airpods Headphones,1,150.0,2019-07-12 11:03:00,656 Washington St, Boston,MA,02215 +224335,AAA Batteries (4-pack),2,2.99,2019-07-29 23:55:00,393 Lake St, New York City,NY,10001 +224336,Bose SoundSport Headphones,1,99.99,2019-07-23 17:58:00,939 West St, San Francisco,CA,94016 +224337,Lightning Charging Cable,1,14.95,2019-07-16 22:11:00,105 South St, Boston,MA,02215 +224338,USB-C Charging Cable,1,11.95,2019-07-26 10:22:00,272 10th St, San Francisco,CA,94016 +224339,Lightning Charging Cable,1,14.95,2019-07-22 20:27:00,603 Park St, Atlanta,GA,30301 +224340,Lightning Charging Cable,1,14.95,2019-07-11 18:16:00,82 Sunset St, Seattle,WA,98101 +224341,Flatscreen TV,1,300.0,2019-07-16 15:21:00,233 South St, Los Angeles,CA,90001 +224342,Bose SoundSport Headphones,1,99.99,2019-07-14 16:26:00,954 Wilson St, Los Angeles,CA,90001 +224343,AAA Batteries (4-pack),1,2.99,2019-07-22 11:00:00,20 North St, New York City,NY,10001 +224344,Flatscreen TV,1,300.0,2019-07-22 21:43:00,925 10th St, Dallas,TX,75001 +224345,ThinkPad Laptop,1,999.99,2019-07-30 21:20:00,240 Park St, San Francisco,CA,94016 +224345,Lightning Charging Cable,1,14.95,2019-07-30 21:20:00,240 Park St, San Francisco,CA,94016 +224346,34in Ultrawide Monitor,1,379.99,2019-07-24 12:36:00,451 9th St, San Francisco,CA,94016 +224347,Bose SoundSport Headphones,1,99.99,2019-07-31 13:03:00,880 Sunset St, New York City,NY,10001 +224348,Wired Headphones,1,11.99,2019-07-26 16:22:00,902 Lake St, San Francisco,CA,94016 +224349,Macbook Pro Laptop,1,1700.0,2019-07-14 20:50:00,93 6th St, New York City,NY,10001 +224350,Flatscreen TV,1,300.0,2019-07-22 16:33:00,834 Center St, Atlanta,GA,30301 +224351,34in Ultrawide Monitor,1,379.99,2019-07-25 20:52:00,729 North St, Atlanta,GA,30301 +224351,Bose SoundSport Headphones,1,99.99,2019-07-25 20:52:00,729 North St, Atlanta,GA,30301 +224352,34in Ultrawide Monitor,1,379.99,2019-07-05 23:26:00,994 Pine St, Dallas,TX,75001 +224353,Macbook Pro Laptop,1,1700.0,2019-07-18 05:28:00,244 13th St, San Francisco,CA,94016 +224354,Wired Headphones,1,11.99,2019-07-28 10:46:00,105 Cedar St, Seattle,WA,98101 +224355,27in 4K Gaming Monitor,1,389.99,2019-07-19 20:16:00,200 12th St, San Francisco,CA,94016 +224356,Apple Airpods Headphones,1,150.0,2019-07-12 18:58:00,187 West St, Boston,MA,02215 +224357,Lightning Charging Cable,1,14.95,2019-07-04 14:31:00,301 Main St, Los Angeles,CA,90001 +224358,Bose SoundSport Headphones,1,99.99,2019-07-11 10:03:00,185 Lakeview St, Seattle,WA,98101 +224359,Lightning Charging Cable,1,14.95,2019-07-16 17:06:00,33 Lincoln St, Boston,MA,02215 +224360,Apple Airpods Headphones,1,150.0,2019-07-30 10:21:00,133 9th St, Portland,OR,97035 +224361,Wired Headphones,1,11.99,2019-07-23 19:36:00,612 12th St, Boston,MA,02215 +224362,AA Batteries (4-pack),6,3.84,2019-07-20 11:27:00,626 Dogwood St, San Francisco,CA,94016 +224363,AAA Batteries (4-pack),1,2.99,2019-07-14 21:35:00,876 4th St, Los Angeles,CA,90001 +224364,AA Batteries (4-pack),1,3.84,2019-07-12 17:25:00,77 7th St, Atlanta,GA,30301 +224365,20in Monitor,1,109.99,2019-07-22 00:02:00,346 Wilson St, Seattle,WA,98101 +224366,Apple Airpods Headphones,1,150.0,2019-07-23 18:42:00,64 Spruce St, Boston,MA,02215 +224367,Lightning Charging Cable,2,14.95,2019-07-02 11:42:00,558 Cedar St, San Francisco,CA,94016 +224368,AAA Batteries (4-pack),1,2.99,2019-07-23 11:52:00,682 Lake St, New York City,NY,10001 +224369,Lightning Charging Cable,1,14.95,2019-07-23 17:57:00,383 Jefferson St, San Francisco,CA,94016 +224370,Apple Airpods Headphones,1,150.0,2019-07-13 06:40:00,666 River St, San Francisco,CA,94016 +224371,27in 4K Gaming Monitor,1,389.99,2019-07-06 10:07:00,452 10th St, San Francisco,CA,94016 +224372,AAA Batteries (4-pack),1,2.99,2019-07-11 21:07:00,826 Hickory St, Los Angeles,CA,90001 +224373,AAA Batteries (4-pack),1,2.99,2019-07-11 13:37:00,429 Center St, Austin,TX,73301 +224374,iPhone,1,700.0,2019-07-08 13:33:00,883 Lake St, San Francisco,CA,94016 +224374,Lightning Charging Cable,1,14.95,2019-07-08 13:33:00,883 Lake St, San Francisco,CA,94016 +224375,Google Phone,1,600.0,2019-07-13 11:39:00,549 Madison St, Boston,MA,02215 +224376,AA Batteries (4-pack),2,3.84,2019-07-06 23:47:00,222 10th St, Dallas,TX,75001 +224377,20in Monitor,1,109.99,2019-07-06 23:32:00,822 Hickory St, Boston,MA,02215 +224378,Google Phone,1,600.0,2019-07-30 13:55:00,424 12th St, Portland,OR,97035 +224378,Wired Headphones,1,11.99,2019-07-30 13:55:00,424 12th St, Portland,OR,97035 +224379,20in Monitor,1,109.99,2019-07-04 21:25:00,859 12th St, San Francisco,CA,94016 +224380,Wired Headphones,2,11.99,2019-07-02 02:27:00,853 11th St, San Francisco,CA,94016 +224381,USB-C Charging Cable,1,11.95,2019-07-08 16:38:00,901 Spruce St, Atlanta,GA,30301 +224382,Bose SoundSport Headphones,1,99.99,2019-07-26 17:04:00,422 Willow St, Los Angeles,CA,90001 +224383,AA Batteries (4-pack),1,3.84,2019-07-14 23:30:00,135 Jackson St, Los Angeles,CA,90001 +224384,iPhone,1,700.0,2019-07-17 16:28:00,659 Cedar St, Los Angeles,CA,90001 +224385,Lightning Charging Cable,1,14.95,2019-07-19 14:08:00,184 Meadow St, Boston,MA,02215 +224386,Wired Headphones,2,11.99,2019-07-08 23:29:00,863 Cherry St, Austin,TX,73301 +224387,Bose SoundSport Headphones,1,99.99,2019-07-03 14:52:00,636 7th St, New York City,NY,10001 +224388,Lightning Charging Cable,1,14.95,2019-07-07 17:05:00,136 Main St, Los Angeles,CA,90001 +224389,AAA Batteries (4-pack),1,2.99,2019-07-09 20:08:00,133 8th St, Dallas,TX,75001 +224390,AAA Batteries (4-pack),1,2.99,2019-07-13 21:10:00,385 Spruce St, San Francisco,CA,94016 +224391,AA Batteries (4-pack),1,3.84,2019-07-18 21:26:00,457 Lincoln St, Boston,MA,02215 +224392,20in Monitor,1,109.99,2019-07-15 10:26:00,841 Willow St, San Francisco,CA,94016 +224393,Macbook Pro Laptop,1,1700.0,2019-07-26 23:58:00,197 1st St, New York City,NY,10001 +224394,Apple Airpods Headphones,1,150.0,2019-07-24 11:16:00,148 Church St, Atlanta,GA,30301 +224395,Bose SoundSport Headphones,1,99.99,2019-07-06 11:21:00,268 5th St, Seattle,WA,98101 +224396,Wired Headphones,1,11.99,2019-07-07 02:10:00,648 Elm St, Seattle,WA,98101 +224397,Wired Headphones,1,11.99,2019-07-07 12:23:00,671 Dogwood St, San Francisco,CA,94016 +224398,AA Batteries (4-pack),1,3.84,2019-07-23 22:52:00,604 Lincoln St, Portland,OR,97035 +224399,AA Batteries (4-pack),1,3.84,2019-07-18 14:44:00,928 Jackson St, Los Angeles,CA,90001 +224400,AAA Batteries (4-pack),1,2.99,2019-07-12 20:16:00,175 7th St, Seattle,WA,98101 +224401,Apple Airpods Headphones,1,150.0,2019-07-31 13:25:00,724 8th St, Boston,MA,02215 +224402,iPhone,1,700.0,2019-07-15 13:15:00,555 6th St, Boston,MA,02215 +224403,USB-C Charging Cable,2,11.95,2019-07-03 02:01:00,66 14th St, San Francisco,CA,94016 +224404,Google Phone,1,600.0,2019-07-21 12:51:00,935 North St, San Francisco,CA,94016 +224405,USB-C Charging Cable,1,11.95,2019-07-17 19:20:00,805 8th St, Dallas,TX,75001 +224406,ThinkPad Laptop,1,999.99,2019-07-07 13:33:00,869 6th St, Atlanta,GA,30301 +224407,USB-C Charging Cable,1,11.95,2019-07-25 19:31:00,408 Hickory St, Los Angeles,CA,90001 +224408,USB-C Charging Cable,1,11.95,2019-07-10 11:24:00,274 6th St, San Francisco,CA,94016 +224409,Flatscreen TV,1,300.0,2019-07-05 14:53:00,900 Cedar St, New York City,NY,10001 +224410,Lightning Charging Cable,1,14.95,2019-07-14 23:18:00,517 7th St, Boston,MA,02215 +224411,AAA Batteries (4-pack),1,2.99,2019-07-22 15:20:00,979 Jefferson St, Seattle,WA,98101 +224412,AAA Batteries (4-pack),1,2.99,2019-07-20 20:34:00,805 Willow St, San Francisco,CA,94016 +224413,Wired Headphones,1,11.99,2019-07-01 13:12:00,151 Main St, Boston,MA,02215 +224414,USB-C Charging Cable,1,11.95,2019-07-10 22:46:00,971 Lincoln St, San Francisco,CA,94016 +224415,AAA Batteries (4-pack),1,2.99,2019-07-25 21:05:00,987 Maple St, Boston,MA,02215 +224416,27in FHD Monitor,1,149.99,2019-07-12 17:27:00,485 13th St, San Francisco,CA,94016 +224417,Bose SoundSport Headphones,1,99.99,2019-07-26 20:02:00,960 Cherry St, Portland,OR,97035 +224418,27in 4K Gaming Monitor,1,389.99,2019-07-04 10:01:00,508 8th St, San Francisco,CA,94016 +224419,USB-C Charging Cable,1,11.95,2019-07-18 11:08:00,601 9th St, Dallas,TX,75001 +224420,Google Phone,1,600.0,2019-07-04 17:13:00,644 2nd St, Atlanta,GA,30301 +224421,Wired Headphones,1,11.99,2019-07-14 17:01:00,860 Hill St, New York City,NY,10001 +224422,Apple Airpods Headphones,1,150.0,2019-07-16 14:03:00,762 Forest St, Austin,TX,73301 +224423,Lightning Charging Cable,1,14.95,2019-07-10 13:42:00,314 Adams St, New York City,NY,10001 +224424,Bose SoundSport Headphones,1,99.99,2019-07-12 11:19:00,272 8th St, New York City,NY,10001 +224425,Bose SoundSport Headphones,1,99.99,2019-07-20 19:34:00,81 Hill St, Atlanta,GA,30301 +224426,USB-C Charging Cable,1,11.95,2019-07-04 23:41:00,497 Lakeview St, Atlanta,GA,30301 +224427,USB-C Charging Cable,1,11.95,2019-07-29 00:07:00,296 4th St, Portland,ME,04101 +224428,AA Batteries (4-pack),1,3.84,2019-07-02 16:07:00,583 Maple St, Atlanta,GA,30301 +224429,Apple Airpods Headphones,1,150.0,2019-07-24 15:05:00,964 Ridge St, Seattle,WA,98101 +224430,Wired Headphones,1,11.99,2019-07-14 21:17:00,39 10th St, Los Angeles,CA,90001 +224431,Apple Airpods Headphones,1,150.0,2019-07-26 00:03:00,898 Park St, San Francisco,CA,94016 +224432,USB-C Charging Cable,1,11.95,2019-07-26 05:46:00,272 Main St, San Francisco,CA,94016 +224433,20in Monitor,1,109.99,2019-07-15 20:14:00,734 Johnson St, Los Angeles,CA,90001 +224434,Bose SoundSport Headphones,1,99.99,2019-07-22 20:31:00,707 Chestnut St, San Francisco,CA,94016 +224435,Lightning Charging Cable,2,14.95,2019-07-06 15:02:00,830 Dogwood St, Seattle,WA,98101 +224436,Apple Airpods Headphones,1,150.0,2019-07-05 17:01:00,250 2nd St, Los Angeles,CA,90001 +224437,AA Batteries (4-pack),1,3.84,2019-07-01 14:43:00,539 Washington St, Los Angeles,CA,90001 +224438,AAA Batteries (4-pack),1,2.99,2019-07-23 00:05:00,405 Cedar St, Los Angeles,CA,90001 +224439,Wired Headphones,1,11.99,2019-07-28 19:34:00,905 River St, Los Angeles,CA,90001 +224440,34in Ultrawide Monitor,1,379.99,2019-07-02 12:30:00,132 4th St, San Francisco,CA,94016 +224441,Bose SoundSport Headphones,1,99.99,2019-07-28 11:12:00,843 Dogwood St, Boston,MA,02215 +224442,AA Batteries (4-pack),1,3.84,2019-07-18 12:43:00,823 West St, San Francisco,CA,94016 +224443,AA Batteries (4-pack),2,3.84,2019-07-14 07:14:00,912 Pine St, Los Angeles,CA,90001 +224444,Apple Airpods Headphones,1,150.0,2019-07-01 17:45:00,753 Jefferson St, Los Angeles,CA,90001 +224445,USB-C Charging Cable,1,11.95,2019-07-08 19:56:00,557 7th St, Seattle,WA,98101 +224446,Apple Airpods Headphones,1,150.0,2019-07-23 15:34:00,931 1st St, Atlanta,GA,30301 +224447,34in Ultrawide Monitor,1,379.99,2019-07-30 12:56:00,348 River St, Seattle,WA,98101 +224448,Wired Headphones,2,11.99,2019-07-10 23:21:00,613 Lake St, Atlanta,GA,30301 +224449,Lightning Charging Cable,1,14.95,2019-07-17 22:01:00,584 Maple St, Atlanta,GA,30301 +224450,27in 4K Gaming Monitor,1,389.99,2019-07-05 13:09:00,199 North St, Seattle,WA,98101 +224451,Macbook Pro Laptop,1,1700.0,2019-07-11 17:56:00,884 North St, Los Angeles,CA,90001 +224452,27in 4K Gaming Monitor,1,389.99,2019-07-16 08:29:00,155 Jefferson St, Seattle,WA,98101 +224453,AAA Batteries (4-pack),1,2.99,2019-07-13 02:32:00,356 Elm St, Dallas,TX,75001 +224454,27in FHD Monitor,1,149.99,2019-07-24 12:48:00,552 Center St, San Francisco,CA,94016 +224455,27in FHD Monitor,1,149.99,2019-07-21 20:08:00,668 6th St, Los Angeles,CA,90001 +224456,Wired Headphones,1,11.99,2019-07-18 22:25:00,108 13th St, New York City,NY,10001 +224457,Flatscreen TV,1,300.0,2019-07-07 22:27:00,480 Park St, New York City,NY,10001 +224458,Lightning Charging Cable,1,14.95,2019-07-04 13:37:00,690 Jefferson St, San Francisco,CA,94016 +224459,Wired Headphones,1,11.99,2019-07-07 17:50:00,634 River St, New York City,NY,10001 +224460,20in Monitor,1,109.99,2019-07-14 20:54:00,57 Wilson St, San Francisco,CA,94016 +224461,34in Ultrawide Monitor,1,379.99,2019-07-02 17:07:00,924 River St, Seattle,WA,98101 +224462,34in Ultrawide Monitor,1,379.99,2019-07-28 19:45:00,431 Cherry St, Dallas,TX,75001 +224463,20in Monitor,1,109.99,2019-07-01 20:38:00,386 South St, Los Angeles,CA,90001 +224464,27in FHD Monitor,1,149.99,2019-07-11 08:32:00,282 Cherry St, Dallas,TX,75001 +224465,AAA Batteries (4-pack),2,2.99,2019-07-23 16:59:00,111 13th St, Austin,TX,73301 +224466,Wired Headphones,1,11.99,2019-07-22 23:08:00,554 1st St, Seattle,WA,98101 +224467,AAA Batteries (4-pack),2,2.99,2019-07-29 17:14:00,684 Highland St, Los Angeles,CA,90001 +224468,Lightning Charging Cable,1,14.95,2019-07-13 22:46:00,524 Spruce St, Boston,MA,02215 +224469,Lightning Charging Cable,1,14.95,2019-07-28 20:02:00,660 5th St, Los Angeles,CA,90001 +224470,AAA Batteries (4-pack),1,2.99,2019-07-19 15:20:00,420 Lake St, Boston,MA,02215 +224471,AAA Batteries (4-pack),1,2.99,2019-07-25 20:58:00,270 South St, Boston,MA,02215 +224472,27in FHD Monitor,1,149.99,2019-07-05 14:40:00,124 Lake St, Dallas,TX,75001 +224473,Flatscreen TV,1,300.0,2019-07-17 20:49:00,538 Dogwood St, San Francisco,CA,94016 +224474,27in 4K Gaming Monitor,1,389.99,2019-07-20 13:18:00,781 Center St, Boston,MA,02215 +224475,AA Batteries (4-pack),1,3.84,2019-07-28 21:32:00,48 Chestnut St, Atlanta,GA,30301 +224476,Lightning Charging Cable,1,14.95,2019-07-31 08:29:00,269 4th St, Dallas,TX,75001 +224477,AA Batteries (4-pack),1,3.84,2019-07-28 12:07:00,375 8th St, Boston,MA,02215 +224478,AA Batteries (4-pack),1,3.84,2019-07-02 20:56:00,358 Forest St, New York City,NY,10001 +224479,27in FHD Monitor,1,149.99,2019-07-27 16:52:00,767 Hill St, Los Angeles,CA,90001 +224480,Flatscreen TV,1,300.0,2019-07-13 11:01:00,689 4th St, San Francisco,CA,94016 +224481,Vareebadd Phone,1,400.0,2019-07-21 00:11:00,487 Maple St, Seattle,WA,98101 +224481,USB-C Charging Cable,1,11.95,2019-07-21 00:11:00,487 Maple St, Seattle,WA,98101 +224482,AA Batteries (4-pack),1,3.84,2019-07-01 17:57:00,264 Center St, New York City,NY,10001 +224483,Flatscreen TV,1,300.0,2019-07-31 23:42:00,540 Maple St, San Francisco,CA,94016 +224484,AAA Batteries (4-pack),1,2.99,2019-07-14 23:11:00,507 Washington St, New York City,NY,10001 +224485,Apple Airpods Headphones,1,150.0,2019-07-02 22:56:00,984 Jackson St, Los Angeles,CA,90001 +224486,27in FHD Monitor,1,149.99,2019-07-18 15:28:00,211 Lake St, San Francisco,CA,94016 +224487,Bose SoundSport Headphones,1,99.99,2019-07-17 20:54:00,370 9th St, San Francisco,CA,94016 +224488,AA Batteries (4-pack),1,3.84,2019-07-04 17:01:00,678 6th St, Atlanta,GA,30301 +224489,Flatscreen TV,1,300.0,2019-07-21 09:47:00,816 Maple St, San Francisco,CA,94016 +224490,Google Phone,1,600.0,2019-07-19 20:35:00,986 Adams St, New York City,NY,10001 +224490,Wired Headphones,1,11.99,2019-07-19 20:35:00,986 Adams St, New York City,NY,10001 +224491,Google Phone,1,600.0,2019-07-10 14:23:00,425 1st St, San Francisco,CA,94016 +224492,Wired Headphones,1,11.99,2019-07-01 18:20:00,364 River St, Boston,MA,02215 +224493,Bose SoundSport Headphones,1,99.99,2019-07-16 20:33:00,409 10th St, San Francisco,CA,94016 +224494,iPhone,1,700.0,2019-07-17 15:43:00,427 Cedar St, New York City,NY,10001 +224494,AA Batteries (4-pack),1,3.84,2019-07-17 15:43:00,427 Cedar St, New York City,NY,10001 +224495,USB-C Charging Cable,1,11.95,2019-07-14 22:13:00,520 Meadow St, Austin,TX,73301 +224496,AAA Batteries (4-pack),1,2.99,2019-07-12 18:28:00,531 6th St, Austin,TX,73301 +224497,Lightning Charging Cable,1,14.95,2019-07-10 10:53:00,162 8th St, Austin,TX,73301 +224498,27in FHD Monitor,1,149.99,2019-07-12 21:52:00,418 6th St, Atlanta,GA,30301 +224499,27in FHD Monitor,1,149.99,2019-07-20 14:41:00,986 Dogwood St, Portland,OR,97035 +224500,Lightning Charging Cable,1,14.95,2019-07-11 18:05:00,649 Lincoln St, San Francisco,CA,94016 +224501,iPhone,1,700.0,2019-07-14 13:40:00,70 Wilson St, San Francisco,CA,94016 +224501,Wired Headphones,1,11.99,2019-07-14 13:40:00,70 Wilson St, San Francisco,CA,94016 +224502,Apple Airpods Headphones,1,150.0,2019-07-31 06:03:00,773 6th St, Los Angeles,CA,90001 +224503,Wired Headphones,1,11.99,2019-07-15 09:08:00,24 Ridge St, Dallas,TX,75001 +224504,USB-C Charging Cable,2,11.95,2019-07-15 09:09:00,686 8th St, Los Angeles,CA,90001 +224505,Lightning Charging Cable,1,14.95,2019-07-17 12:47:00,726 6th St, San Francisco,CA,94016 +224506,Apple Airpods Headphones,1,150.0,2019-07-26 09:24:00,939 Sunset St, Seattle,WA,98101 +224507,iPhone,1,700.0,2019-07-05 20:59:00,971 Meadow St, Portland,OR,97035 +224508,Vareebadd Phone,1,400.0,2019-07-05 19:51:00,898 11th St, New York City,NY,10001 +224508,USB-C Charging Cable,1,11.95,2019-07-05 19:51:00,898 11th St, New York City,NY,10001 +224509,AAA Batteries (4-pack),1,2.99,2019-07-19 23:22:00,80 9th St, Los Angeles,CA,90001 +224510,Apple Airpods Headphones,1,150.0,2019-07-31 19:29:00,474 River St, Los Angeles,CA,90001 +224511,Lightning Charging Cable,2,14.95,2019-07-17 21:25:00,405 14th St, Dallas,TX,75001 +224512,AA Batteries (4-pack),1,3.84,2019-07-15 12:06:00,219 Highland St, San Francisco,CA,94016 +224513,AAA Batteries (4-pack),1,2.99,2019-07-06 08:59:00,735 6th St, Seattle,WA,98101 +224514,USB-C Charging Cable,2,11.95,2019-07-21 14:00:00,417 12th St, San Francisco,CA,94016 +224515,27in FHD Monitor,1,149.99,2019-07-09 12:07:00,473 5th St, Austin,TX,73301 +224516,Bose SoundSport Headphones,1,99.99,2019-07-28 21:03:00,839 Johnson St, Austin,TX,73301 +224517,Lightning Charging Cable,1,14.95,2019-07-02 13:49:00,510 Wilson St, San Francisco,CA,94016 +224518,Bose SoundSport Headphones,1,99.99,2019-07-20 11:23:00,684 1st St, Dallas,TX,75001 +224519,Bose SoundSport Headphones,1,99.99,2019-07-05 18:39:00,432 Highland St, San Francisco,CA,94016 +224520,AA Batteries (4-pack),2,3.84,2019-07-22 18:43:00,21 Washington St, Los Angeles,CA,90001 +224521,Bose SoundSport Headphones,1,99.99,2019-07-21 09:09:00,655 Chestnut St, Atlanta,GA,30301 +224522,USB-C Charging Cable,1,11.95,2019-07-11 18:45:00,543 Johnson St, New York City,NY,10001 +224523,27in 4K Gaming Monitor,1,389.99,2019-07-31 12:06:00,406 6th St, New York City,NY,10001 +224524,USB-C Charging Cable,1,11.95,2019-07-25 03:18:00,983 Johnson St, Austin,TX,73301 +224525,Wired Headphones,1,11.99,2019-07-04 07:02:00,325 Church St, Dallas,TX,75001 +224526,AAA Batteries (4-pack),2,2.99,2019-07-20 20:19:00,429 10th St, Atlanta,GA,30301 +224527,20in Monitor,1,109.99,2019-07-01 12:08:00,625 Elm St, Boston,MA,02215 +224528,USB-C Charging Cable,1,11.95,2019-07-11 16:44:00,536 Forest St, San Francisco,CA,94016 +224529,ThinkPad Laptop,1,999.99,2019-07-26 22:55:00,760 Hill St, Dallas,TX,75001 +224530,Apple Airpods Headphones,1,150.0,2019-07-03 21:28:00,240 West St, Dallas,TX,75001 +224531,Lightning Charging Cable,1,14.95,2019-07-12 13:59:00,607 2nd St, San Francisco,CA,94016 +224532,AAA Batteries (4-pack),1,2.99,2019-07-01 22:51:00,674 7th St, Dallas,TX,75001 +224533,Lightning Charging Cable,1,14.95,2019-07-05 20:24:00,806 12th St, Dallas,TX,75001 +224534,Lightning Charging Cable,1,14.95,2019-07-13 20:43:00,166 Hill St, Atlanta,GA,30301 +224535,AAA Batteries (4-pack),1,2.99,2019-07-27 13:31:00,619 River St, Los Angeles,CA,90001 +224536,Wired Headphones,1,11.99,2019-07-18 18:33:00,815 Sunset St, Los Angeles,CA,90001 +224537,34in Ultrawide Monitor,1,379.99,2019-07-05 19:19:00,98 Walnut St, Austin,TX,73301 +224538,Apple Airpods Headphones,1,150.0,2019-07-14 16:53:00,980 8th St, Austin,TX,73301 +224539,Apple Airpods Headphones,1,150.0,2019-07-11 10:29:00,588 Adams St, Dallas,TX,75001 +224540,Lightning Charging Cable,1,14.95,2019-07-30 19:11:00,126 Hickory St, Portland,OR,97035 +224541,Bose SoundSport Headphones,1,99.99,2019-07-14 21:49:00,179 2nd St, Los Angeles,CA,90001 +224542,USB-C Charging Cable,1,11.95,2019-07-11 21:50:00,657 Willow St, Los Angeles,CA,90001 +224543,Apple Airpods Headphones,1,150.0,2019-07-02 13:08:00,273 8th St, Dallas,TX,75001 +224544,Bose SoundSport Headphones,1,99.99,2019-07-18 09:53:00,988 River St, New York City,NY,10001 +224545,Lightning Charging Cable,1,14.95,2019-07-21 16:34:00,725 4th St, Boston,MA,02215 +224546,27in FHD Monitor,1,149.99,2019-07-29 11:20:00,817 Jackson St, Los Angeles,CA,90001 +224547,Apple Airpods Headphones,1,150.0,2019-07-29 20:43:00,345 Cherry St, Dallas,TX,75001 +224548,AA Batteries (4-pack),1,3.84,2019-07-17 16:28:00,967 Adams St, San Francisco,CA,94016 +224549,Apple Airpods Headphones,1,150.0,2019-07-14 01:03:00,422 Main St, San Francisco,CA,94016 +224550,Wired Headphones,1,11.99,2019-07-01 09:27:00,676 11th St, San Francisco,CA,94016 +224551,Wired Headphones,1,11.99,2019-07-20 22:46:00,554 8th St, New York City,NY,10001 +224552,Lightning Charging Cable,1,14.95,2019-07-11 14:53:00,568 Cedar St, Los Angeles,CA,90001 +224553,Apple Airpods Headphones,1,150.0,2019-07-22 10:21:00,488 Center St, New York City,NY,10001 +224554,AA Batteries (4-pack),2,3.84,2019-07-26 17:59:00,643 Pine St, San Francisco,CA,94016 +224555,AAA Batteries (4-pack),1,2.99,2019-07-02 13:19:00,826 North St, Los Angeles,CA,90001 +224556,USB-C Charging Cable,1,11.95,2019-07-21 01:25:00,156 Church St, San Francisco,CA,94016 +224557,AA Batteries (4-pack),1,3.84,2019-07-23 13:49:00,111 Willow St, San Francisco,CA,94016 +224558,Lightning Charging Cable,1,14.95,2019-07-17 18:57:00,991 7th St, Atlanta,GA,30301 +224559,Flatscreen TV,1,300.0,2019-07-16 20:06:00,542 Chestnut St, Los Angeles,CA,90001 +224560,Apple Airpods Headphones,1,150.0,2019-07-09 09:06:00,401 7th St, New York City,NY,10001 +224561,LG Dryer,1,600.0,2019-07-05 22:04:00,19 6th St, Los Angeles,CA,90001 +224562,AA Batteries (4-pack),1,3.84,2019-07-06 12:25:00,22 Johnson St, Los Angeles,CA,90001 +224563,34in Ultrawide Monitor,1,379.99,2019-07-24 11:11:00,560 Church St, Los Angeles,CA,90001 +224564,34in Ultrawide Monitor,1,379.99,2019-07-27 00:44:00,594 12th St, San Francisco,CA,94016 +224565,Wired Headphones,1,11.99,2019-07-03 12:25:00,636 South St, New York City,NY,10001 +224566,AAA Batteries (4-pack),1,2.99,2019-07-02 15:47:00,505 Cherry St, Portland,OR,97035 +224567,Wired Headphones,2,11.99,2019-07-20 20:52:00,153 Hickory St, Boston,MA,02215 +224568,AAA Batteries (4-pack),1,2.99,2019-07-14 16:50:00,688 Walnut St, Seattle,WA,98101 +224569,27in 4K Gaming Monitor,1,389.99,2019-07-12 11:30:00,621 Sunset St, San Francisco,CA,94016 +224570,27in FHD Monitor,1,149.99,2019-07-08 20:30:00,73 Main St, New York City,NY,10001 +224571,AA Batteries (4-pack),1,3.84,2019-07-16 11:58:00,298 Main St, Seattle,WA,98101 +224572,Wired Headphones,1,11.99,2019-07-18 11:57:00,965 Hill St, Dallas,TX,75001 +224573,AAA Batteries (4-pack),1,2.99,2019-07-01 20:24:00,810 2nd St, Boston,MA,02215 +224573,USB-C Charging Cable,1,11.95,2019-07-01 20:24:00,810 2nd St, Boston,MA,02215 +224574,Flatscreen TV,1,300.0,2019-07-26 22:16:00,60 5th St, Austin,TX,73301 +224575,iPhone,1,700.0,2019-07-20 23:12:00,259 2nd St, Boston,MA,02215 +224576,Google Phone,1,600.0,2019-07-16 07:27:00,885 Lake St, New York City,NY,10001 +224577,Bose SoundSport Headphones,1,99.99,2019-07-29 20:57:00,633 9th St, Portland,OR,97035 +224578,34in Ultrawide Monitor,1,379.99,2019-07-19 10:52:00,140 Dogwood St, San Francisco,CA,94016 +224579,Wired Headphones,1,11.99,2019-07-03 22:09:00,103 10th St, Los Angeles,CA,90001 +224580,AA Batteries (4-pack),1,3.84,2019-07-15 02:44:00,208 8th St, Los Angeles,CA,90001 +224581,Flatscreen TV,1,300.0,2019-07-11 18:06:00,649 Pine St, New York City,NY,10001 +224582,Wired Headphones,1,11.99,2019-07-27 09:13:00,434 Dogwood St, Seattle,WA,98101 +224583,27in 4K Gaming Monitor,1,389.99,2019-07-10 01:02:00,734 8th St, Atlanta,GA,30301 +224584,Wired Headphones,1,11.99,2019-07-01 19:23:00,590 13th St, San Francisco,CA,94016 +224585,Lightning Charging Cable,1,14.95,2019-07-26 19:20:00,297 Highland St, Los Angeles,CA,90001 +224586,AAA Batteries (4-pack),5,2.99,2019-07-12 20:08:00,83 Wilson St, Los Angeles,CA,90001 +224587,Macbook Pro Laptop,1,1700.0,2019-07-14 19:50:00,861 2nd St, Austin,TX,73301 +224588,Lightning Charging Cable,1,14.95,2019-07-05 15:44:00,771 8th St, Boston,MA,02215 +224589,Apple Airpods Headphones,1,150.0,2019-07-25 00:03:00,654 4th St, San Francisco,CA,94016 +224590,Bose SoundSport Headphones,1,99.99,2019-07-02 04:40:00,359 River St, San Francisco,CA,94016 +224591,AAA Batteries (4-pack),3,2.99,2019-07-01 18:36:00,672 Cherry St, Los Angeles,CA,90001 +224592,USB-C Charging Cable,2,11.95,2019-07-05 11:02:00,905 13th St, New York City,NY,10001 +224593,Apple Airpods Headphones,1,150.0,2019-07-25 18:29:00,916 West St, San Francisco,CA,94016 +224594,AAA Batteries (4-pack),3,2.99,2019-07-11 10:19:00,423 Chestnut St, Austin,TX,73301 +224595,AA Batteries (4-pack),2,3.84,2019-07-31 13:08:00,941 Center St, New York City,NY,10001 +224596,Lightning Charging Cable,1,14.95,2019-07-31 17:49:00,828 12th St, Boston,MA,02215 +224597,Wired Headphones,2,11.99,2019-07-23 22:18:00,433 Walnut St, Atlanta,GA,30301 +224598,Lightning Charging Cable,1,14.95,2019-07-18 10:56:00,21 Madison St, San Francisco,CA,94016 +224599,Apple Airpods Headphones,1,150.0,2019-07-12 11:33:00,269 8th St, San Francisco,CA,94016 +224600,USB-C Charging Cable,1,11.95,2019-07-24 16:33:00,302 Hill St, New York City,NY,10001 +224601,iPhone,1,700.0,2019-07-28 11:34:00,855 Spruce St, Boston,MA,02215 +224602,AA Batteries (4-pack),1,3.84,2019-07-15 16:08:00,157 South St, Seattle,WA,98101 +224603,Bose SoundSport Headphones,1,99.99,2019-07-24 14:00:00,270 14th St, Dallas,TX,75001 +224604,Apple Airpods Headphones,1,150.0,2019-07-25 18:59:00,921 Spruce St, Atlanta,GA,30301 +224605,AA Batteries (4-pack),1,3.84,2019-07-13 05:54:00,974 Center St, San Francisco,CA,94016 +224606,Lightning Charging Cable,1,14.95,2019-07-30 11:36:00,432 Chestnut St, Seattle,WA,98101 +224607,Bose SoundSport Headphones,1,99.99,2019-07-17 21:00:00,53 13th St, New York City,NY,10001 +224608,Lightning Charging Cable,1,14.95,2019-07-14 21:47:00,769 9th St, Seattle,WA,98101 +224609,Wired Headphones,1,11.99,2019-07-21 18:48:00,731 Willow St, San Francisco,CA,94016 +224610,Bose SoundSport Headphones,1,99.99,2019-07-15 15:03:00,724 Lakeview St, Boston,MA,02215 +224611,20in Monitor,1,109.99,2019-07-20 18:13:00,20 Forest St, San Francisco,CA,94016 +224612,ThinkPad Laptop,1,999.99,2019-07-03 18:28:00,66 Center St, Dallas,TX,75001 +224613,AA Batteries (4-pack),2,3.84,2019-07-25 19:43:00,573 West St, New York City,NY,10001 +224614,Apple Airpods Headphones,1,150.0,2019-07-12 05:20:00,297 1st St, Los Angeles,CA,90001 +224615,ThinkPad Laptop,1,999.99,2019-07-13 03:03:00,300 9th St, Seattle,WA,98101 +224616,Lightning Charging Cable,1,14.95,2019-07-15 08:59:00,675 13th St, Los Angeles,CA,90001 +224617,AA Batteries (4-pack),1,3.84,2019-07-27 12:25:00,636 Elm St, Dallas,TX,75001 +224618,AA Batteries (4-pack),1,3.84,2019-07-02 21:43:00,541 Lakeview St, Portland,OR,97035 +224619,AA Batteries (4-pack),1,3.84,2019-07-31 18:57:00,149 Forest St, Portland,OR,97035 +224620,iPhone,1,700.0,2019-07-18 20:45:00,464 2nd St, New York City,NY,10001 +224621,USB-C Charging Cable,2,11.95,2019-07-18 15:38:00,1 4th St, Los Angeles,CA,90001 +224622,Bose SoundSport Headphones,1,99.99,2019-07-25 17:24:00,428 Madison St, Boston,MA,02215 +224623,Apple Airpods Headphones,1,150.0,2019-07-13 07:34:00,100 Meadow St, Boston,MA,02215 +224624,USB-C Charging Cable,1,11.95,2019-07-27 19:20:00,562 Jackson St, Dallas,TX,75001 +224625,ThinkPad Laptop,1,999.99,2019-07-24 11:44:00,352 North St, Austin,TX,73301 +224625,AAA Batteries (4-pack),1,2.99,2019-07-24 11:44:00,352 North St, Austin,TX,73301 +224626,USB-C Charging Cable,1,11.95,2019-07-15 08:57:00,2 Meadow St, Dallas,TX,75001 +224627,Wired Headphones,1,11.99,2019-07-18 18:55:00,170 Pine St, Atlanta,GA,30301 +224628,Apple Airpods Headphones,1,150.0,2019-07-22 11:22:00,790 8th St, Seattle,WA,98101 +224629,Apple Airpods Headphones,1,150.0,2019-07-22 17:07:00,734 Willow St, Dallas,TX,75001 +224630,27in FHD Monitor,1,149.99,2019-07-07 14:33:00,212 Elm St, New York City,NY,10001 +224631,Lightning Charging Cable,1,14.95,2019-07-22 14:47:00,72 Madison St, Austin,TX,73301 +224632,Apple Airpods Headphones,1,150.0,2019-07-26 08:59:00,673 Lakeview St, Los Angeles,CA,90001 +224633,Wired Headphones,1,11.99,2019-07-15 10:24:00,347 Johnson St, San Francisco,CA,94016 +224634,AA Batteries (4-pack),1,3.84,2019-07-24 10:56:00,522 2nd St, Los Angeles,CA,90001 +224635,iPhone,1,700.0,2019-07-09 05:51:00,368 Forest St, Seattle,WA,98101 +224636,Apple Airpods Headphones,1,150.0,2019-07-28 15:09:00,183 12th St, New York City,NY,10001 +224637,27in 4K Gaming Monitor,1,389.99,2019-07-19 11:42:00,854 Adams St, New York City,NY,10001 +224638,Lightning Charging Cable,2,14.95,2019-07-08 21:40:00,353 Elm St, Seattle,WA,98101 +224639,ThinkPad Laptop,1,999.99,2019-07-14 10:53:00,901 Walnut St, Portland,OR,97035 +224640,AAA Batteries (4-pack),7,2.99,2019-07-02 19:20:00,847 Wilson St, San Francisco,CA,94016 +224641,Bose SoundSport Headphones,1,99.99,2019-07-23 17:25:00,123 Ridge St, Portland,OR,97035 +224642,iPhone,1,700.0,2019-07-13 00:38:00,508 Sunset St, Boston,MA,02215 +224643,27in 4K Gaming Monitor,1,389.99,2019-07-19 12:36:00,897 Pine St, New York City,NY,10001 +224644,USB-C Charging Cable,1,11.95,2019-07-14 11:03:00,75 Hill St, Boston,MA,02215 +224645,27in 4K Gaming Monitor,1,389.99,2019-07-13 16:29:00,567 Hickory St, Portland,ME,04101 +224646,Macbook Pro Laptop,1,1700.0,2019-07-25 15:11:00,514 Johnson St, Atlanta,GA,30301 +224647,USB-C Charging Cable,1,11.95,2019-07-26 14:32:00,153 Pine St, Portland,OR,97035 +224648,Wired Headphones,1,11.99,2019-07-30 10:49:00,94 West St, San Francisco,CA,94016 +224649,27in FHD Monitor,1,149.99,2019-07-05 15:33:00,64 Lincoln St, San Francisco,CA,94016 +224650,AAA Batteries (4-pack),1,2.99,2019-07-06 10:55:00,188 River St, San Francisco,CA,94016 +224651,Lightning Charging Cable,1,14.95,2019-07-27 15:53:00,333 West St, Boston,MA,02215 +224652,AA Batteries (4-pack),1,3.84,2019-07-21 13:32:00,929 2nd St, Los Angeles,CA,90001 +224653,27in FHD Monitor,1,149.99,2019-07-16 11:57:00,582 12th St, Boston,MA,02215 +224654,27in 4K Gaming Monitor,1,389.99,2019-07-04 11:27:00,412 Park St, Austin,TX,73301 +224655,20in Monitor,1,109.99,2019-07-26 17:50:00,858 13th St, Portland,ME,04101 +224656,Apple Airpods Headphones,1,150.0,2019-07-15 16:26:00,970 12th St, San Francisco,CA,94016 +224657,AA Batteries (4-pack),2,3.84,2019-07-02 17:13:00,706 Johnson St, San Francisco,CA,94016 +224658,Wired Headphones,1,11.99,2019-07-03 21:11:00,774 Sunset St, Atlanta,GA,30301 +224659,Apple Airpods Headphones,1,150.0,2019-07-23 15:41:00,885 11th St, Los Angeles,CA,90001 +224660,Wired Headphones,1,11.99,2019-07-07 09:39:00,770 8th St, Los Angeles,CA,90001 +224661,Lightning Charging Cable,1,14.95,2019-07-11 12:31:00,723 Walnut St, San Francisco,CA,94016 +224662,Lightning Charging Cable,1,14.95,2019-07-25 12:52:00,992 Johnson St, San Francisco,CA,94016 +224663,Apple Airpods Headphones,1,150.0,2019-07-06 21:20:00,883 Hickory St, Atlanta,GA,30301 +224664,Bose SoundSport Headphones,1,99.99,2019-07-06 12:01:00,981 13th St, Boston,MA,02215 +224665,Wired Headphones,2,11.99,2019-07-22 18:13:00,839 Highland St, San Francisco,CA,94016 +224666,AAA Batteries (4-pack),1,2.99,2019-07-29 00:21:00,79 9th St, San Francisco,CA,94016 +224667,AA Batteries (4-pack),1,3.84,2019-07-30 15:53:00,800 Elm St, San Francisco,CA,94016 +224668,AA Batteries (4-pack),1,3.84,2019-07-22 14:43:00,166 Wilson St, San Francisco,CA,94016 +224669,Google Phone,1,600.0,2019-07-02 21:12:00,896 14th St, Dallas,TX,75001 +224669,Apple Airpods Headphones,1,150.0,2019-07-02 21:12:00,896 14th St, Dallas,TX,75001 +224670,20in Monitor,1,109.99,2019-07-12 09:40:00,191 Elm St, New York City,NY,10001 +224671,Apple Airpods Headphones,1,150.0,2019-07-02 21:41:00,653 Cedar St, Atlanta,GA,30301 +224672,Lightning Charging Cable,1,14.95,2019-07-31 13:15:00,29 14th St, New York City,NY,10001 +224673,20in Monitor,1,109.99,2019-07-20 09:28:00,781 Jackson St, San Francisco,CA,94016 +224674,Flatscreen TV,1,300.0,2019-07-01 17:47:00,1 4th St, Atlanta,GA,30301 +224675,AA Batteries (4-pack),1,3.84,2019-07-14 09:07:00,548 12th St, Boston,MA,02215 +224676,Wired Headphones,1,11.99,2019-07-23 14:24:00,431 Forest St, Los Angeles,CA,90001 +224677,AAA Batteries (4-pack),1,2.99,2019-07-20 22:56:00,63 1st St, San Francisco,CA,94016 +224678,Wired Headphones,1,11.99,2019-07-01 23:07:00,920 Wilson St, San Francisco,CA,94016 +224679,Lightning Charging Cable,1,14.95,2019-07-20 21:09:00,72 Adams St, Boston,MA,02215 +224680,Flatscreen TV,1,300.0,2019-07-31 18:36:00,114 Jackson St, Los Angeles,CA,90001 +224681,LG Washing Machine,1,600.0,2019-07-23 19:18:00,184 Main St, Dallas,TX,75001 +224682,USB-C Charging Cable,1,11.95,2019-07-16 00:26:00,682 Johnson St, New York City,NY,10001 +224683,Flatscreen TV,1,300.0,2019-07-25 11:55:00,10 Johnson St, Dallas,TX,75001 +224684,AAA Batteries (4-pack),1,2.99,2019-07-28 07:07:00,877 13th St, Seattle,WA,98101 +224685,AAA Batteries (4-pack),1,2.99,2019-07-30 19:05:00,78 Pine St, Atlanta,GA,30301 +224686,Bose SoundSport Headphones,1,99.99,2019-07-09 11:59:00,252 Walnut St, Atlanta,GA,30301 +224687,27in FHD Monitor,1,149.99,2019-07-03 18:29:00,803 14th St, San Francisco,CA,94016 +224688,Google Phone,1,600.0,2019-07-03 19:02:00,201 9th St, Boston,MA,02215 +224689,AAA Batteries (4-pack),1,2.99,2019-07-22 15:01:00,956 12th St, San Francisco,CA,94016 +224690,iPhone,1,700.0,2019-07-09 14:56:00,487 Sunset St, Boston,MA,02215 +224691,34in Ultrawide Monitor,1,379.99,2019-07-16 16:09:00,580 South St, New York City,NY,10001 +224692,AAA Batteries (4-pack),2,2.99,2019-07-23 02:37:00,91 7th St, Los Angeles,CA,90001 +224693,AAA Batteries (4-pack),1,2.99,2019-07-18 09:59:00,470 Wilson St, New York City,NY,10001 +224694,Bose SoundSport Headphones,2,99.99,2019-07-24 16:24:00,173 Meadow St, San Francisco,CA,94016 +224695,Lightning Charging Cable,1,14.95,2019-07-10 15:40:00,235 South St, New York City,NY,10001 +224696,Wired Headphones,1,11.99,2019-07-26 16:20:00,857 Walnut St, New York City,NY,10001 +224697,Lightning Charging Cable,1,14.95,2019-07-10 07:44:00,561 Elm St, Seattle,WA,98101 +224698,Lightning Charging Cable,1,14.95,2019-07-18 13:16:00,547 Forest St, Austin,TX,73301 +224699,Apple Airpods Headphones,1,150.0,2019-07-03 14:27:00,471 12th St, Boston,MA,02215 +224700,Lightning Charging Cable,1,14.95,2019-07-09 22:14:00,923 9th St, Seattle,WA,98101 +224701,AA Batteries (4-pack),1,3.84,2019-07-22 20:23:00,649 Jackson St, Atlanta,GA,30301 +224702,Bose SoundSport Headphones,1,99.99,2019-07-15 16:15:00,681 Hickory St, Dallas,TX,75001 +224703,AA Batteries (4-pack),1,3.84,2019-07-18 19:38:00,51 Dogwood St, San Francisco,CA,94016 +224704,USB-C Charging Cable,1,11.95,2019-07-07 22:52:00,986 7th St, Atlanta,GA,30301 +224705,20in Monitor,1,109.99,2019-07-18 00:07:00,709 Johnson St, Boston,MA,02215 +224706,Lightning Charging Cable,1,14.95,2019-07-08 13:32:00,351 Spruce St, Los Angeles,CA,90001 +224707,AA Batteries (4-pack),2,3.84,2019-07-26 21:31:00,59 9th St, Los Angeles,CA,90001 +224708,iPhone,1,700.0,2019-07-14 21:01:00,480 Hill St, San Francisco,CA,94016 +224708,Wired Headphones,1,11.99,2019-07-14 21:01:00,480 Hill St, San Francisco,CA,94016 +224709,Wired Headphones,1,11.99,2019-07-26 07:05:00,614 Spruce St, Seattle,WA,98101 +224710,Wired Headphones,1,11.99,2019-07-18 18:55:00,398 4th St, Los Angeles,CA,90001 +224711,Macbook Pro Laptop,1,1700.0,2019-07-12 12:21:00,36 Hickory St, San Francisco,CA,94016 +224712,Bose SoundSport Headphones,2,99.99,2019-07-26 18:25:00,170 River St, New York City,NY,10001 +224713,Apple Airpods Headphones,1,150.0,2019-07-11 19:26:00,758 Wilson St, Los Angeles,CA,90001 +224714,20in Monitor,1,109.99,2019-07-14 15:24:00,608 River St, Seattle,WA,98101 +224715,Macbook Pro Laptop,1,1700.0,2019-07-11 22:04:00,706 2nd St, Portland,OR,97035 +224716,USB-C Charging Cable,1,11.95,2019-07-12 22:52:00,981 Lakeview St, Seattle,WA,98101 +224717,Google Phone,1,600.0,2019-07-21 17:02:00,178 14th St, San Francisco,CA,94016 +224718,USB-C Charging Cable,1,11.95,2019-07-11 23:33:00,374 Jackson St, San Francisco,CA,94016 +224719,AAA Batteries (4-pack),8,2.99,2019-07-26 23:59:00,876 Adams St, San Francisco,CA,94016 +224720,Vareebadd Phone,1,400.0,2019-07-21 11:21:00,540 North St, Boston,MA,02215 +224721,AAA Batteries (4-pack),1,2.99,2019-07-25 18:54:00,609 Wilson St, San Francisco,CA,94016 +224722,AAA Batteries (4-pack),2,2.99,2019-07-16 08:44:00,782 7th St, Seattle,WA,98101 +224723,Wired Headphones,1,11.99,2019-07-24 11:45:00,166 Lincoln St, Boston,MA,02215 +224724,ThinkPad Laptop,1,999.99,2019-07-13 11:12:00,11 5th St, Seattle,WA,98101 +224725,Lightning Charging Cable,1,14.95,2019-07-15 08:44:00,361 10th St, San Francisco,CA,94016 +224726,AAA Batteries (4-pack),1,2.99,2019-07-18 19:44:00,842 Lakeview St, New York City,NY,10001 +224727,AA Batteries (4-pack),1,3.84,2019-07-10 12:24:00,11 Spruce St, San Francisco,CA,94016 +224728,Wired Headphones,1,11.99,2019-07-19 13:24:00,714 Jackson St, New York City,NY,10001 +224729,AA Batteries (4-pack),1,3.84,2019-07-26 08:34:00,632 5th St, Seattle,WA,98101 +224730,Google Phone,1,600.0,2019-07-10 14:20:00,608 5th St, San Francisco,CA,94016 +224731,Apple Airpods Headphones,1,150.0,2019-07-08 12:47:00,13 River St, Los Angeles,CA,90001 +224732,27in FHD Monitor,1,149.99,2019-07-20 09:54:00,187 Cedar St, Boston,MA,02215 +224733,Lightning Charging Cable,1,14.95,2019-07-18 20:09:00,145 Spruce St, Boston,MA,02215 +224734,iPhone,1,700.0,2019-07-28 01:20:00,950 9th St, New York City,NY,10001 +224735,Apple Airpods Headphones,1,150.0,2019-07-23 22:57:00,727 Dogwood St, Boston,MA,02215 +224736,AA Batteries (4-pack),1,3.84,2019-07-22 18:43:00,801 Jefferson St, Dallas,TX,75001 +224737,Apple Airpods Headphones,1,150.0,2019-07-10 20:16:00,457 10th St, San Francisco,CA,94016 +224738,USB-C Charging Cable,1,11.95,2019-07-28 16:08:00,243 Maple St, San Francisco,CA,94016 +224739,AA Batteries (4-pack),1,3.84,2019-07-14 23:29:00,467 Walnut St, Atlanta,GA,30301 +224740,AA Batteries (4-pack),1,3.84,2019-07-25 17:39:00,616 13th St, Dallas,TX,75001 +224741,27in FHD Monitor,1,149.99,2019-07-18 05:31:00,203 Hill St, Boston,MA,02215 +224742,AAA Batteries (4-pack),1,2.99,2019-07-14 14:03:00,744 South St, New York City,NY,10001 +224743,USB-C Charging Cable,1,11.95,2019-07-09 23:17:00,280 Johnson St, San Francisco,CA,94016 +224744,USB-C Charging Cable,1,11.95,2019-07-30 21:41:00,102 Walnut St, Boston,MA,02215 +224745,ThinkPad Laptop,1,999.99,2019-07-16 14:53:00,75 14th St, Atlanta,GA,30301 +224746,Wired Headphones,1,11.99,2019-07-07 21:50:00,886 6th St, Boston,MA,02215 +224747,AAA Batteries (4-pack),1,2.99,2019-07-08 01:40:00,166 Pine St, Atlanta,GA,30301 +224748,27in 4K Gaming Monitor,1,389.99,2019-07-05 12:37:00,342 Hickory St, Dallas,TX,75001 +224749,27in 4K Gaming Monitor,1,389.99,2019-07-06 19:21:00,280 Washington St, Atlanta,GA,30301 +224750,USB-C Charging Cable,1,11.95,2019-07-28 23:58:00,604 Chestnut St, Atlanta,GA,30301 +224751,AAA Batteries (4-pack),3,2.99,2019-07-13 20:22:00,405 Elm St, Seattle,WA,98101 +224752,USB-C Charging Cable,1,11.95,2019-07-12 18:17:00,621 Lake St, Atlanta,GA,30301 +224753,AA Batteries (4-pack),1,3.84,2019-07-24 08:17:00,306 11th St, Dallas,TX,75001 +224754,Apple Airpods Headphones,1,150.0,2019-07-23 10:58:00,589 7th St, San Francisco,CA,94016 +224755,USB-C Charging Cable,2,11.95,2019-07-17 02:01:00,74 4th St, Portland,ME,04101 +224756,Bose SoundSport Headphones,1,99.99,2019-07-20 09:30:00,168 6th St, Portland,OR,97035 +224757,USB-C Charging Cable,1,11.95,2019-07-02 09:29:00,34 Park St, New York City,NY,10001 +224758,AA Batteries (4-pack),1,3.84,2019-07-01 18:44:00,745 11th St, San Francisco,CA,94016 +224759,Bose SoundSport Headphones,2,99.99,2019-07-01 09:28:00,197 Wilson St, Los Angeles,CA,90001 +224760,AA Batteries (4-pack),1,3.84,2019-07-17 11:53:00,324 Spruce St, Los Angeles,CA,90001 +224760,Google Phone,1,600.0,2019-07-17 11:53:00,324 Spruce St, Los Angeles,CA,90001 +224761,Bose SoundSport Headphones,1,99.99,2019-07-14 12:20:00,317 Sunset St, San Francisco,CA,94016 +224762,34in Ultrawide Monitor,1,379.99,2019-07-21 15:28:00,383 Adams St, Seattle,WA,98101 +224763,Apple Airpods Headphones,1,150.0,2019-07-10 09:11:00,886 Meadow St, Seattle,WA,98101 +224764,LG Dryer,1,600.0,2019-07-28 12:27:00,930 10th St, Los Angeles,CA,90001 +224765,AA Batteries (4-pack),1,3.84,2019-07-29 19:08:00,272 9th St, New York City,NY,10001 +224766,Vareebadd Phone,1,400.0,2019-07-25 19:39:00,598 Jackson St, San Francisco,CA,94016 +224767,AA Batteries (4-pack),1,3.84,2019-07-14 08:13:00,376 Lake St, New York City,NY,10001 +224768,AAA Batteries (4-pack),1,2.99,2019-07-14 12:06:00,674 12th St, San Francisco,CA,94016 +224769,USB-C Charging Cable,1,11.95,2019-07-07 12:28:00,604 Church St, Boston,MA,02215 +224769,Wired Headphones,1,11.99,2019-07-07 12:28:00,604 Church St, Boston,MA,02215 +224770,Bose SoundSport Headphones,1,99.99,2019-07-24 09:43:00,279 West St, Boston,MA,02215 +224771,Bose SoundSport Headphones,1,99.99,2019-07-18 19:53:00,988 Wilson St, Los Angeles,CA,90001 +224772,AA Batteries (4-pack),2,3.84,2019-07-24 11:40:00,539 Johnson St, San Francisco,CA,94016 +224773,Macbook Pro Laptop,1,1700.0,2019-07-23 17:01:00,990 13th St, Atlanta,GA,30301 +224774,Wired Headphones,1,11.99,2019-07-03 08:49:00,573 Forest St, Atlanta,GA,30301 +224775,Apple Airpods Headphones,1,150.0,2019-07-14 06:02:00,273 4th St, Boston,MA,02215 +224776,Lightning Charging Cable,1,14.95,2019-07-26 11:35:00,982 Lakeview St, Dallas,TX,75001 +224777,Apple Airpods Headphones,1,150.0,2019-07-10 22:50:00,904 Forest St, Atlanta,GA,30301 +224778,AA Batteries (4-pack),1,3.84,2019-07-07 06:27:00,863 Hill St, Seattle,WA,98101 +224779,27in 4K Gaming Monitor,1,389.99,2019-07-18 21:23:00,427 Elm St, New York City,NY,10001 +224780,Google Phone,1,600.0,2019-07-09 11:16:00,676 8th St, Dallas,TX,75001 +224780,USB-C Charging Cable,1,11.95,2019-07-09 11:16:00,676 8th St, Dallas,TX,75001 +224780,Bose SoundSport Headphones,1,99.99,2019-07-09 11:16:00,676 8th St, Dallas,TX,75001 +224781,Apple Airpods Headphones,1,150.0,2019-07-08 20:32:00,663 Sunset St, Atlanta,GA,30301 +224782,Lightning Charging Cable,1,14.95,2019-07-27 20:51:00,998 Meadow St, San Francisco,CA,94016 +224783,27in 4K Gaming Monitor,1,389.99,2019-07-15 18:57:00,840 Jackson St, Los Angeles,CA,90001 +224784,Google Phone,1,600.0,2019-07-29 09:55:00,502 Cherry St, New York City,NY,10001 +224784,USB-C Charging Cable,1,11.95,2019-07-29 09:55:00,502 Cherry St, New York City,NY,10001 +224785,27in FHD Monitor,1,149.99,2019-07-19 23:45:00,831 Dogwood St, Boston,MA,02215 +224786,Flatscreen TV,1,300.0,2019-07-28 10:45:00,551 6th St, New York City,NY,10001 +224787,AA Batteries (4-pack),1,3.84,2019-07-04 21:21:00,25 14th St, Atlanta,GA,30301 +224788,AAA Batteries (4-pack),2,2.99,2019-07-24 23:46:00,323 1st St, Dallas,TX,75001 +224789,34in Ultrawide Monitor,1,379.99,2019-07-08 10:44:00,205 Forest St, Seattle,WA,98101 +224789,27in FHD Monitor,1,149.99,2019-07-08 10:44:00,205 Forest St, Seattle,WA,98101 +224790,27in FHD Monitor,1,149.99,2019-07-29 09:36:00,646 Madison St, Boston,MA,02215 +224791,USB-C Charging Cable,1,11.95,2019-07-10 01:55:00,880 Main St, Austin,TX,73301 +224792,iPhone,1,700.0,2019-07-11 10:22:00,201 Highland St, Atlanta,GA,30301 +224793,20in Monitor,1,109.99,2019-07-06 05:36:00,851 Forest St, Austin,TX,73301 +224794,Bose SoundSport Headphones,1,99.99,2019-07-24 13:42:00,335 Church St, Los Angeles,CA,90001 +224795,USB-C Charging Cable,2,11.95,2019-07-07 14:09:00,983 12th St, San Francisco,CA,94016 +224796,Lightning Charging Cable,1,14.95,2019-07-21 08:19:00,857 Main St, Seattle,WA,98101 +224797,AA Batteries (4-pack),1,3.84,2019-07-01 12:53:00,949 West St, Los Angeles,CA,90001 +224798,AA Batteries (4-pack),1,3.84,2019-07-10 12:39:00,307 South St, New York City,NY,10001 +224799,Apple Airpods Headphones,1,150.0,2019-07-06 17:29:00,386 Spruce St, Portland,ME,04101 +224800,Wired Headphones,1,11.99,2019-07-25 19:49:00,942 Maple St, San Francisco,CA,94016 +224801,AAA Batteries (4-pack),1,2.99,2019-07-08 11:13:00,794 Elm St, New York City,NY,10001 +224802,Lightning Charging Cable,1,14.95,2019-07-05 17:29:00,557 Washington St, San Francisco,CA,94016 +224803,AA Batteries (4-pack),2,3.84,2019-07-03 10:31:00,504 11th St, Boston,MA,02215 +224804,27in FHD Monitor,1,149.99,2019-07-27 10:16:00,78 South St, Los Angeles,CA,90001 +224805,Lightning Charging Cable,1,14.95,2019-07-24 00:20:00,60 Willow St, San Francisco,CA,94016 +224806,Apple Airpods Headphones,1,150.0,2019-07-12 16:55:00,981 6th St, New York City,NY,10001 +224807,Wired Headphones,1,11.99,2019-07-25 23:26:00,892 South St, Los Angeles,CA,90001 +224808,Lightning Charging Cable,1,14.95,2019-07-05 12:50:00,591 West St, San Francisco,CA,94016 +224809,AAA Batteries (4-pack),1,2.99,2019-07-04 22:01:00,539 7th St, San Francisco,CA,94016 +224810,34in Ultrawide Monitor,1,379.99,2019-07-12 17:56:00,708 14th St, Los Angeles,CA,90001 +224811,Google Phone,1,600.0,2019-07-03 23:13:00,585 12th St, Boston,MA,02215 +224811,Bose SoundSport Headphones,1,99.99,2019-07-03 23:13:00,585 12th St, Boston,MA,02215 +224812,USB-C Charging Cable,1,11.95,2019-07-22 19:05:00,569 Maple St, New York City,NY,10001 +224813,Apple Airpods Headphones,1,150.0,2019-07-16 17:42:00,54 Lake St, San Francisco,CA,94016 +224814,Lightning Charging Cable,1,14.95,2019-07-26 12:15:00,353 Church St, Boston,MA,02215 +224815,ThinkPad Laptop,1,999.99,2019-07-16 14:39:00,38 6th St, Los Angeles,CA,90001 +224816,Wired Headphones,1,11.99,2019-07-11 21:49:00,993 Willow St, Atlanta,GA,30301 +224817,Lightning Charging Cable,1,14.95,2019-07-28 20:16:00,18 Washington St, San Francisco,CA,94016 +224818,Lightning Charging Cable,1,14.95,2019-07-12 14:04:00,584 10th St, San Francisco,CA,94016 +224819,Apple Airpods Headphones,1,150.0,2019-07-25 12:52:00,771 Pine St, Seattle,WA,98101 +224820,ThinkPad Laptop,1,999.99,2019-07-30 22:36:00,19 9th St, San Francisco,CA,94016 +224821,Apple Airpods Headphones,1,150.0,2019-07-17 11:05:00,990 8th St, Seattle,WA,98101 +224822,27in FHD Monitor,1,149.99,2019-07-02 14:09:00,463 North St, Austin,TX,73301 +224823,Wired Headphones,1,11.99,2019-07-25 21:44:00,201 Johnson St, New York City,NY,10001 +224824,Apple Airpods Headphones,1,150.0,2019-07-18 20:22:00,195 Forest St, Seattle,WA,98101 +224825,20in Monitor,1,109.99,2019-07-06 11:31:00,182 Cherry St, Boston,MA,02215 +224826,LG Dryer,1,600.0,2019-07-18 20:53:00,134 7th St, Austin,TX,73301 +224827,AA Batteries (4-pack),2,3.84,2019-07-29 13:56:00,398 Highland St, New York City,NY,10001 +224828,Apple Airpods Headphones,1,150.0,2019-07-28 12:05:00,791 10th St, Dallas,TX,75001 +224829,Apple Airpods Headphones,2,150.0,2019-07-20 13:24:00,328 Main St, Portland,ME,04101 +224830,Lightning Charging Cable,1,14.95,2019-07-19 18:38:00,788 Lincoln St, Los Angeles,CA,90001 +224831,Apple Airpods Headphones,1,150.0,2019-07-16 19:33:00,212 Lincoln St, San Francisco,CA,94016 +224832,AA Batteries (4-pack),1,3.84,2019-07-16 18:56:00,726 Lake St, New York City,NY,10001 +224833,27in FHD Monitor,1,149.99,2019-07-30 03:34:00,768 Maple St, Dallas,TX,75001 +224834,Apple Airpods Headphones,1,150.0,2019-07-30 17:14:00,76 Meadow St, Atlanta,GA,30301 +224835,Wired Headphones,1,11.99,2019-07-15 19:08:00,443 Main St, New York City,NY,10001 +224836,AA Batteries (4-pack),1,3.84,2019-07-05 20:19:00,34 Highland St, Dallas,TX,75001 +224837,Lightning Charging Cable,1,14.95,2019-07-07 07:22:00,830 Spruce St, Atlanta,GA,30301 +224838,27in FHD Monitor,1,149.99,2019-07-26 21:25:00,399 12th St, New York City,NY,10001 +224839,27in 4K Gaming Monitor,1,389.99,2019-07-06 14:52:00,837 Sunset St, Atlanta,GA,30301 +224840,ThinkPad Laptop,1,999.99,2019-07-26 20:42:00,304 8th St, Boston,MA,02215 +224840,AAA Batteries (4-pack),6,2.99,2019-07-26 20:42:00,304 8th St, Boston,MA,02215 +224841,Wired Headphones,1,11.99,2019-07-25 12:27:00,251 North St, Portland,OR,97035 +224842,34in Ultrawide Monitor,1,379.99,2019-07-27 06:16:00,303 Ridge St, Portland,ME,04101 +224843,34in Ultrawide Monitor,1,379.99,2019-07-11 08:53:00,472 Walnut St, San Francisco,CA,94016 +224844,Apple Airpods Headphones,1,150.0,2019-07-25 20:12:00,901 6th St, Los Angeles,CA,90001 +224845,Bose SoundSport Headphones,1,99.99,2019-07-04 10:31:00,560 Church St, Los Angeles,CA,90001 +224846,Wired Headphones,1,11.99,2019-07-23 01:18:00,646 Main St, San Francisco,CA,94016 +224847,Bose SoundSport Headphones,1,99.99,2019-07-07 10:22:00,217 Pine St, Boston,MA,02215 +224848,Wired Headphones,1,11.99,2019-07-21 08:41:00,842 Meadow St, Seattle,WA,98101 +224849,Lightning Charging Cable,1,14.95,2019-07-01 07:06:00,380 West St, Seattle,WA,98101 +224850,Apple Airpods Headphones,1,150.0,2019-07-23 18:57:00,241 9th St, Austin,TX,73301 +224851,Wired Headphones,1,11.99,2019-07-02 21:49:00,279 Spruce St, Seattle,WA,98101 +224852,Apple Airpods Headphones,1,150.0,2019-07-25 17:31:00,941 Chestnut St, Austin,TX,73301 +224853,Bose SoundSport Headphones,1,99.99,2019-07-07 00:53:00,375 Wilson St, Los Angeles,CA,90001 +224854,Wired Headphones,1,11.99,2019-07-09 09:19:00,248 Lincoln St, Austin,TX,73301 +224855,Lightning Charging Cable,1,14.95,2019-07-15 21:48:00,232 Pine St, Boston,MA,02215 +224856,27in 4K Gaming Monitor,1,389.99,2019-07-31 15:45:00,925 Park St, Portland,OR,97035 +224857,Macbook Pro Laptop,1,1700.0,2019-07-31 22:57:00,860 Lakeview St, Seattle,WA,98101 +224858,Bose SoundSport Headphones,1,99.99,2019-07-04 14:37:00,730 10th St, Austin,TX,73301 +224859,Wired Headphones,1,11.99,2019-07-03 15:13:00,650 Forest St, Seattle,WA,98101 +224860,34in Ultrawide Monitor,1,379.99,2019-07-13 17:15:00,735 Spruce St, New York City,NY,10001 +224861,Lightning Charging Cable,1,14.95,2019-07-29 20:01:00,331 Elm St, San Francisco,CA,94016 +224862,Vareebadd Phone,1,400.0,2019-07-05 00:06:00,967 Washington St, San Francisco,CA,94016 +224862,USB-C Charging Cable,1,11.95,2019-07-05 00:06:00,967 Washington St, San Francisco,CA,94016 +224863,Apple Airpods Headphones,1,150.0,2019-07-29 15:51:00,866 River St, Boston,MA,02215 +224864,AA Batteries (4-pack),1,3.84,2019-07-22 17:03:00,181 4th St, New York City,NY,10001 +224865,Apple Airpods Headphones,1,150.0,2019-07-17 11:01:00,275 Forest St, New York City,NY,10001 +224866,Lightning Charging Cable,2,14.95,2019-07-03 10:36:00,821 Hill St, Portland,OR,97035 +224867,USB-C Charging Cable,1,11.95,2019-07-06 13:28:00,883 12th St, San Francisco,CA,94016 +224868,Bose SoundSport Headphones,1,99.99,2019-07-02 11:40:00,853 Pine St, San Francisco,CA,94016 +224869,Apple Airpods Headphones,1,150.0,2019-07-16 03:23:00,481 2nd St, Boston,MA,02215 +224870,Macbook Pro Laptop,1,1700.0,2019-07-22 17:04:00,74 Church St, Los Angeles,CA,90001 +224871,USB-C Charging Cable,1,11.95,2019-07-20 22:38:00,154 Ridge St, Boston,MA,02215 +224872,Lightning Charging Cable,1,14.95,2019-07-29 11:42:00,322 4th St, Los Angeles,CA,90001 +224873,AA Batteries (4-pack),2,3.84,2019-07-18 08:37:00,775 Jackson St, Dallas,TX,75001 +224874,AAA Batteries (4-pack),1,2.99,2019-07-26 13:04:00,493 Wilson St, Portland,OR,97035 +224875,AA Batteries (4-pack),1,3.84,2019-07-18 14:27:00,181 5th St, New York City,NY,10001 +224876,AA Batteries (4-pack),1,3.84,2019-07-05 19:19:00,172 River St, Seattle,WA,98101 +224877,USB-C Charging Cable,1,11.95,2019-07-09 19:51:00,884 Adams St, Los Angeles,CA,90001 +224878,34in Ultrawide Monitor,1,379.99,2019-07-26 12:34:00,697 West St, Boston,MA,02215 +224879,Apple Airpods Headphones,1,150.0,2019-07-10 22:58:00,128 Lake St, San Francisco,CA,94016 +224880,AA Batteries (4-pack),1,3.84,2019-07-13 18:46:00,777 Meadow St, New York City,NY,10001 +224881,iPhone,1,700.0,2019-07-23 17:14:00,599 Willow St, Austin,TX,73301 +224881,Lightning Charging Cable,1,14.95,2019-07-23 17:14:00,599 Willow St, Austin,TX,73301 +224882,Wired Headphones,1,11.99,2019-07-10 17:25:00,661 Spruce St, Atlanta,GA,30301 +224883,Bose SoundSport Headphones,1,99.99,2019-07-08 15:18:00,982 6th St, Austin,TX,73301 +224884,AAA Batteries (4-pack),1,2.99,2019-07-30 07:48:00,347 River St, San Francisco,CA,94016 +224885,AAA Batteries (4-pack),1,2.99,2019-07-18 12:12:00,570 12th St, Austin,TX,73301 +224886,iPhone,1,700.0,2019-07-03 08:11:00,583 13th St, Los Angeles,CA,90001 +224887,USB-C Charging Cable,1,11.95,2019-07-01 21:49:00,891 Lincoln St, Los Angeles,CA,90001 +224888,Wired Headphones,1,11.99,2019-07-22 12:47:00,503 14th St, Boston,MA,02215 +224889,Lightning Charging Cable,1,14.95,2019-07-26 14:34:00,64 Church St, New York City,NY,10001 +224890,Bose SoundSport Headphones,1,99.99,2019-07-12 16:38:00,191 2nd St, Boston,MA,02215 +224891,Flatscreen TV,1,300.0,2019-07-12 19:10:00,436 5th St, New York City,NY,10001 +224892,USB-C Charging Cable,1,11.95,2019-07-21 19:59:00,256 River St, San Francisco,CA,94016 +224893,27in 4K Gaming Monitor,1,389.99,2019-07-04 04:04:00,146 Church St, Boston,MA,02215 +224894,27in FHD Monitor,1,149.99,2019-07-29 09:09:00,282 Main St, Los Angeles,CA,90001 +224895,USB-C Charging Cable,1,11.95,2019-07-18 18:14:00,529 Willow St, Boston,MA,02215 +224896,ThinkPad Laptop,1,999.99,2019-07-28 16:06:00,479 Adams St, Los Angeles,CA,90001 +224897,20in Monitor,1,109.99,2019-07-04 11:21:00,113 Pine St, Boston,MA,02215 +224898,27in 4K Gaming Monitor,1,389.99,2019-07-05 16:45:00,749 West St, Portland,OR,97035 +224899,Apple Airpods Headphones,1,150.0,2019-07-04 13:55:00,807 Sunset St, Atlanta,GA,30301 +224900,AA Batteries (4-pack),1,3.84,2019-07-24 12:31:00,532 Chestnut St, San Francisco,CA,94016 +224901,USB-C Charging Cable,1,11.95,2019-07-03 21:59:00,199 Chestnut St, Seattle,WA,98101 +224902,Wired Headphones,1,11.99,2019-07-12 09:27:00,998 Johnson St, New York City,NY,10001 +224903,LG Washing Machine,1,600.0,2019-07-26 01:32:00,224 Jackson St, Portland,OR,97035 +224904,20in Monitor,1,109.99,2019-07-01 06:08:00,474 2nd St, Atlanta,GA,30301 +224905,Wired Headphones,1,11.99,2019-07-07 17:16:00,730 North St, Atlanta,GA,30301 +224906,AA Batteries (4-pack),1,3.84,2019-07-10 17:12:00,259 7th St, New York City,NY,10001 +224907,Google Phone,1,600.0,2019-07-02 12:14:00,293 2nd St, New York City,NY,10001 +224908,AAA Batteries (4-pack),2,2.99,2019-07-05 21:24:00,990 Jefferson St, San Francisco,CA,94016 +224909,20in Monitor,1,109.99,2019-07-17 09:35:00,649 Forest St, New York City,NY,10001 +224910,AAA Batteries (4-pack),1,2.99,2019-07-20 22:02:00,808 Pine St, Atlanta,GA,30301 +224911,Apple Airpods Headphones,1,150.0,2019-07-08 14:42:00,212 Jefferson St, Seattle,WA,98101 +224912,Apple Airpods Headphones,1,150.0,2019-07-15 12:13:00,411 River St, Los Angeles,CA,90001 +224913,ThinkPad Laptop,1,999.99,2019-07-15 15:24:00,745 2nd St, Portland,OR,97035 +224914,Google Phone,1,600.0,2019-07-07 20:29:00,801 9th St, San Francisco,CA,94016 +224915,27in FHD Monitor,1,149.99,2019-07-24 13:03:00,584 Cedar St, Los Angeles,CA,90001 +224916,iPhone,1,700.0,2019-07-08 07:29:00,214 Maple St, Portland,OR,97035 +224917,AA Batteries (4-pack),3,3.84,2019-07-01 16:38:00,647 Jackson St, Dallas,TX,75001 +224918,AAA Batteries (4-pack),1,2.99,2019-07-05 13:49:00,362 2nd St, Los Angeles,CA,90001 +224919,ThinkPad Laptop,1,999.99,2019-07-20 19:08:00,769 Madison St, New York City,NY,10001 +224920,Lightning Charging Cable,1,14.95,2019-07-05 10:08:00,479 8th St, Boston,MA,02215 +224921,34in Ultrawide Monitor,1,379.99,2019-07-19 21:33:00,548 Church St, New York City,NY,10001 +224922,ThinkPad Laptop,1,999.99,2019-07-19 23:50:00,398 Main St, Portland,OR,97035 +224923,Google Phone,1,600.0,2019-07-27 17:42:00,579 Pine St, Atlanta,GA,30301 +224924,AAA Batteries (4-pack),2,2.99,2019-07-12 10:14:00,494 Park St, San Francisco,CA,94016 +224925,34in Ultrawide Monitor,1,379.99,2019-07-23 13:10:00,819 9th St, Boston,MA,02215 +224926,Google Phone,1,600.0,2019-07-09 23:44:00,853 Cedar St, Los Angeles,CA,90001 +224927,27in 4K Gaming Monitor,1,389.99,2019-07-27 14:25:00,556 2nd St, Portland,OR,97035 +224928,27in FHD Monitor,1,149.99,2019-07-27 20:07:00,679 Walnut St, San Francisco,CA,94016 +224929,USB-C Charging Cable,1,11.95,2019-07-09 09:15:00,237 Dogwood St, San Francisco,CA,94016 +224930,Wired Headphones,1,11.99,2019-07-29 12:02:00,637 North St, Boston,MA,02215 +224931,34in Ultrawide Monitor,1,379.99,2019-07-26 13:35:00,795 Main St, Boston,MA,02215 +224932,AA Batteries (4-pack),1,3.84,2019-07-09 06:04:00,717 12th St, Seattle,WA,98101 +224933,Google Phone,1,600.0,2019-07-18 18:03:00,291 Meadow St, Atlanta,GA,30301 +224934,27in 4K Gaming Monitor,1,389.99,2019-07-01 14:26:00,512 Adams St, Atlanta,GA,30301 +224935,USB-C Charging Cable,1,11.95,2019-07-11 07:43:00,753 Main St, Dallas,TX,75001 +224936,Wired Headphones,1,11.99,2019-07-13 08:32:00,898 Center St, Atlanta,GA,30301 +224937,Flatscreen TV,1,300.0,2019-07-22 14:43:00,325 Hill St, San Francisco,CA,94016 +224938,Lightning Charging Cable,1,14.95,2019-07-02 15:25:00,817 River St, Dallas,TX,75001 +224939,AAA Batteries (4-pack),1,2.99,2019-07-14 17:54:00,689 9th St, Boston,MA,02215 +224940,Wired Headphones,1,11.99,2019-07-21 17:39:00,899 8th St, Seattle,WA,98101 +224941,Bose SoundSport Headphones,1,99.99,2019-07-25 19:44:00,171 Madison St, New York City,NY,10001 +224942,AAA Batteries (4-pack),1,2.99,2019-07-14 13:57:00,193 Highland St, Seattle,WA,98101 +224943,AA Batteries (4-pack),3,3.84,2019-07-16 12:25:00,239 11th St, Boston,MA,02215 +224944,Macbook Pro Laptop,1,1700.0,2019-07-28 14:19:00,643 Highland St, San Francisco,CA,94016 +224945,Google Phone,1,600.0,2019-07-02 12:05:00,264 Walnut St, New York City,NY,10001 +224946,iPhone,1,700.0,2019-07-17 16:51:00,74 Lincoln St, Austin,TX,73301 +224947,Vareebadd Phone,1,400.0,2019-07-06 04:44:00,208 9th St, Seattle,WA,98101 +224948,Flatscreen TV,1,300.0,2019-07-02 21:32:00,104 Ridge St, New York City,NY,10001 +224949,AA Batteries (4-pack),1,3.84,2019-07-19 18:45:00,748 Maple St, Los Angeles,CA,90001 +224950,27in 4K Gaming Monitor,1,389.99,2019-07-25 09:55:00,567 Willow St, Los Angeles,CA,90001 +224951,Wired Headphones,1,11.99,2019-07-14 20:02:00,657 Jackson St, Dallas,TX,75001 +224952,Lightning Charging Cable,1,14.95,2019-07-19 21:43:00,374 5th St, Portland,OR,97035 +224953,Lightning Charging Cable,1,14.95,2019-07-08 20:17:00,644 13th St, Los Angeles,CA,90001 +224954,27in FHD Monitor,1,149.99,2019-07-22 23:40:00,164 1st St, Los Angeles,CA,90001 +224955,27in FHD Monitor,1,149.99,2019-07-03 10:34:00,148 Hickory St, Los Angeles,CA,90001 +224956,Lightning Charging Cable,1,14.95,2019-07-06 09:51:00,876 Cedar St, Seattle,WA,98101 +224957,AAA Batteries (4-pack),1,2.99,2019-07-13 19:42:00,552 Spruce St, San Francisco,CA,94016 +224958,20in Monitor,1,109.99,2019-07-01 08:59:00,535 Jefferson St, New York City,NY,10001 +224959,AA Batteries (4-pack),1,3.84,2019-07-15 12:33:00,529 Lakeview St, Los Angeles,CA,90001 +224960,iPhone,1,700.0,2019-07-30 11:33:00,301 Washington St, New York City,NY,10001 +224960,AAA Batteries (4-pack),2,2.99,2019-07-30 11:33:00,301 Washington St, New York City,NY,10001 +224961,Macbook Pro Laptop,1,1700.0,2019-07-30 01:47:00,975 9th St, Seattle,WA,98101 +224962,Google Phone,1,600.0,2019-07-23 20:50:00,32 14th St, Seattle,WA,98101 +224963,ThinkPad Laptop,1,999.99,2019-07-05 02:37:00,107 Maple St, Portland,ME,04101 +224964,AAA Batteries (4-pack),4,2.99,2019-07-13 15:16:00,54 Lake St, Los Angeles,CA,90001 +224965,USB-C Charging Cable,1,11.95,2019-07-20 00:54:00,864 West St, New York City,NY,10001 +224966,Macbook Pro Laptop,1,1700.0,2019-07-21 21:58:00,724 Wilson St, Atlanta,GA,30301 +224967,Google Phone,1,600.0,2019-07-02 14:24:00,281 Wilson St, Dallas,TX,75001 +224967,USB-C Charging Cable,1,11.95,2019-07-02 14:24:00,281 Wilson St, Dallas,TX,75001 +224968,Lightning Charging Cable,1,14.95,2019-07-20 20:31:00,156 Johnson St, Boston,MA,02215 +224969,Macbook Pro Laptop,1,1700.0,2019-07-01 18:37:00,451 South St, Atlanta,GA,30301 +224970,Wired Headphones,3,11.99,2019-07-03 14:08:00,824 Sunset St, San Francisco,CA,94016 +224971,Lightning Charging Cable,1,14.95,2019-07-03 16:53:00,45 Cedar St, Portland,OR,97035 +224972,USB-C Charging Cable,1,11.95,2019-07-05 20:36:00,308 Elm St, Dallas,TX,75001 +224973,Wired Headphones,1,11.99,2019-07-21 16:44:00,700 Walnut St, Los Angeles,CA,90001 +224974,Flatscreen TV,1,300.0,2019-07-29 18:35:00,163 Park St, Dallas,TX,75001 +224975,27in FHD Monitor,1,149.99,2019-07-12 22:01:00,440 6th St, New York City,NY,10001 +224976,AA Batteries (4-pack),2,3.84,2019-07-25 15:55:00,551 Adams St, Dallas,TX,75001 +224977,Wired Headphones,1,11.99,2019-07-28 20:25:00,992 Pine St, Los Angeles,CA,90001 +224978,Bose SoundSport Headphones,1,99.99,2019-07-19 21:05:00,278 Jefferson St, New York City,NY,10001 +224979,USB-C Charging Cable,1,11.95,2019-07-18 19:25:00,161 Ridge St, Boston,MA,02215 +224980,Bose SoundSport Headphones,1,99.99,2019-07-04 17:46:00,184 Main St, Los Angeles,CA,90001 +224981,AA Batteries (4-pack),1,3.84,2019-07-02 19:55:00,200 Meadow St, San Francisco,CA,94016 +224982,Bose SoundSport Headphones,1,99.99,2019-07-26 16:53:00,361 Adams St, New York City,NY,10001 +224983,AA Batteries (4-pack),4,3.84,2019-07-12 22:28:00,75 Madison St, Portland,OR,97035 +224984,Wired Headphones,1,11.99,2019-07-20 06:54:00,584 Cherry St, Los Angeles,CA,90001 +224985,Google Phone,1,600.0,2019-07-03 12:41:00,854 14th St, Seattle,WA,98101 +224986,Bose SoundSport Headphones,1,99.99,2019-07-21 14:56:00,187 Chestnut St, Dallas,TX,75001 +224987,Wired Headphones,2,11.99,2019-07-23 17:30:00,78 South St, San Francisco,CA,94016 +224988,USB-C Charging Cable,1,11.95,2019-07-12 11:29:00,294 Wilson St, San Francisco,CA,94016 +224989,AAA Batteries (4-pack),1,2.99,2019-07-08 20:37:00,640 Cedar St, Los Angeles,CA,90001 +224990,iPhone,1,700.0,2019-07-06 16:50:00,180 Willow St, San Francisco,CA,94016 +224991,27in FHD Monitor,1,149.99,2019-07-26 00:18:00,945 Chestnut St, Los Angeles,CA,90001 +224992,27in FHD Monitor,1,149.99,2019-07-20 22:09:00,594 Madison St, New York City,NY,10001 +224993,USB-C Charging Cable,1,11.95,2019-07-06 16:26:00,916 River St, San Francisco,CA,94016 +224994,ThinkPad Laptop,1,999.99,2019-07-06 01:55:00,492 12th St, Atlanta,GA,30301 +224994,Flatscreen TV,1,300.0,2019-07-06 01:55:00,492 12th St, Atlanta,GA,30301 +224995,Flatscreen TV,1,300.0,2019-07-19 13:38:00,862 5th St, San Francisco,CA,94016 +224996,Wired Headphones,1,11.99,2019-07-20 11:18:00,830 Washington St, San Francisco,CA,94016 +224997,iPhone,1,700.0,2019-07-16 21:52:00,291 Pine St, San Francisco,CA,94016 +224998,20in Monitor,1,109.99,2019-07-18 22:24:00,268 8th St, San Francisco,CA,94016 +224999,Apple Airpods Headphones,1,150.0,2019-07-04 10:50:00,881 1st St, Boston,MA,02215 +225000,USB-C Charging Cable,2,11.95,2019-07-15 15:56:00,754 7th St, Los Angeles,CA,90001 +225001,34in Ultrawide Monitor,1,379.99,2019-07-09 15:05:00,956 Adams St, Boston,MA,02215 +225002,Flatscreen TV,1,300.0,2019-07-18 17:04:00,1 Walnut St, Portland,ME,04101 +225003,AAA Batteries (4-pack),1,2.99,2019-07-23 20:41:00,174 9th St, Boston,MA,02215 +225004,27in 4K Gaming Monitor,1,389.99,2019-07-11 19:48:00,807 8th St, Los Angeles,CA,90001 +225005,Wired Headphones,1,11.99,2019-07-17 10:02:00,809 5th St, Seattle,WA,98101 +225006,AAA Batteries (4-pack),1,2.99,2019-07-26 07:38:00,357 West St, Boston,MA,02215 +225007,Wired Headphones,1,11.99,2019-07-03 13:23:00,712 Lincoln St, New York City,NY,10001 +225008,Lightning Charging Cable,1,14.95,2019-07-04 08:59:00,226 West St, San Francisco,CA,94016 +225009,AAA Batteries (4-pack),2,2.99,2019-07-18 17:50:00,626 Adams St, Boston,MA,02215 +225010,Apple Airpods Headphones,1,150.0,2019-07-18 18:12:00,706 Church St, Boston,MA,02215 +225011,Macbook Pro Laptop,1,1700.0,2019-07-29 17:08:00,457 Willow St, San Francisco,CA,94016 +225012,AAA Batteries (4-pack),2,2.99,2019-07-20 17:01:00,456 Johnson St, Seattle,WA,98101 +225013,27in 4K Gaming Monitor,1,389.99,2019-07-20 23:42:00,721 9th St, New York City,NY,10001 +225014,USB-C Charging Cable,1,11.95,2019-07-04 11:42:00,209 Park St, Boston,MA,02215 +225015,AA Batteries (4-pack),1,3.84,2019-07-13 17:36:00,927 7th St, San Francisco,CA,94016 +225016,Apple Airpods Headphones,1,150.0,2019-07-13 16:38:00,692 West St, Atlanta,GA,30301 +225017,iPhone,1,700.0,2019-07-29 14:45:00,660 1st St, Portland,ME,04101 +225017,Lightning Charging Cable,2,14.95,2019-07-29 14:45:00,660 1st St, Portland,ME,04101 +225018,Lightning Charging Cable,1,14.95,2019-07-20 18:08:00,505 River St, New York City,NY,10001 +225019,Bose SoundSport Headphones,1,99.99,2019-07-16 11:24:00,951 Dogwood St, Seattle,WA,98101 +225020,Flatscreen TV,1,300.0,2019-07-02 20:27:00,36 Dogwood St, Seattle,WA,98101 +225021,34in Ultrawide Monitor,1,379.99,2019-07-28 20:07:00,261 13th St, Los Angeles,CA,90001 +225022,Wired Headphones,1,11.99,2019-07-28 23:39:00,600 Park St, Atlanta,GA,30301 +225023,Flatscreen TV,1,300.0,2019-07-26 17:05:00,116 North St, New York City,NY,10001 +225024,Lightning Charging Cable,1,14.95,2019-07-01 12:32:00,899 6th St, Dallas,TX,75001 +225025,34in Ultrawide Monitor,1,379.99,2019-07-17 23:55:00,971 Hill St, Seattle,WA,98101 +225026,Wired Headphones,1,11.99,2019-07-04 14:55:00,494 Highland St, Los Angeles,CA,90001 +225027,Wired Headphones,1,11.99,2019-07-28 05:42:00,688 5th St, San Francisco,CA,94016 +225028,AA Batteries (4-pack),1,3.84,2019-07-30 12:06:00,478 4th St, Boston,MA,02215 +225029,27in FHD Monitor,1,149.99,2019-07-26 12:35:00,218 Church St, Seattle,WA,98101 +225030,Lightning Charging Cable,1,14.95,2019-07-01 23:28:00,678 Lincoln St, San Francisco,CA,94016 +225031,USB-C Charging Cable,1,11.95,2019-07-08 23:04:00,734 Center St, San Francisco,CA,94016 +225032,27in FHD Monitor,1,149.99,2019-07-22 14:43:00,934 Adams St, New York City,NY,10001 +225033,27in FHD Monitor,1,149.99,2019-07-04 20:06:00,754 Lincoln St, Seattle,WA,98101 +225034,AAA Batteries (4-pack),1,2.99,2019-07-31 14:06:00,659 Cherry St, Los Angeles,CA,90001 +225035,Vareebadd Phone,1,400.0,2019-07-18 09:37:00,572 Center St, Austin,TX,73301 +225036,ThinkPad Laptop,1,999.99,2019-07-07 18:11:00,961 10th St, New York City,NY,10001 +225037,AAA Batteries (4-pack),1,2.99,2019-07-24 17:46:00,243 Maple St, Atlanta,GA,30301 +225038,Bose SoundSport Headphones,1,99.99,2019-07-16 14:42:00,984 Church St, Boston,MA,02215 +225039,Apple Airpods Headphones,1,150.0,2019-07-17 23:48:00,211 Willow St, Austin,TX,73301 +225040,34in Ultrawide Monitor,1,379.99,2019-07-26 00:30:00,698 2nd St, San Francisco,CA,94016 +225041,27in 4K Gaming Monitor,1,389.99,2019-07-13 16:59:00,539 10th St, Seattle,WA,98101 +225042,Google Phone,1,600.0,2019-07-04 21:39:00,271 Ridge St, New York City,NY,10001 +225043,AAA Batteries (4-pack),1,2.99,2019-07-30 10:11:00,557 Sunset St, Seattle,WA,98101 +225044,AAA Batteries (4-pack),1,2.99,2019-07-23 12:22:00,333 Hill St, Boston,MA,02215 +225045,iPhone,1,700.0,2019-07-09 19:07:00,28 Lakeview St, San Francisco,CA,94016 +225045,AA Batteries (4-pack),4,3.84,2019-07-09 19:07:00,28 Lakeview St, San Francisco,CA,94016 +225046,AA Batteries (4-pack),1,3.84,2019-07-09 10:22:00,968 Lincoln St, Portland,OR,97035 +225047,Lightning Charging Cable,1,14.95,2019-07-22 22:17:00,998 5th St, San Francisco,CA,94016 +225048,Bose SoundSport Headphones,1,99.99,2019-07-19 16:07:00,735 Chestnut St, San Francisco,CA,94016 +225049,Flatscreen TV,1,300.0,2019-07-28 13:39:00,97 Adams St, San Francisco,CA,94016 +225050,27in FHD Monitor,1,149.99,2019-07-21 19:57:00,499 West St, Boston,MA,02215 +225051,AA Batteries (4-pack),2,3.84,2019-07-29 16:17:00,177 Ridge St, New York City,NY,10001 +225052,USB-C Charging Cable,1,11.95,2019-07-01 07:48:00,688 Willow St, Austin,TX,73301 +225053,AAA Batteries (4-pack),1,2.99,2019-07-19 19:14:00,277 Hill St, San Francisco,CA,94016 +225054,Apple Airpods Headphones,1,150.0,2019-07-25 11:56:00,163 Lincoln St, Atlanta,GA,30301 +225055,AAA Batteries (4-pack),1,2.99,2019-07-21 15:03:00,533 South St, Atlanta,GA,30301 +225056,Bose SoundSport Headphones,1,99.99,2019-07-26 08:00:00,601 Meadow St, Dallas,TX,75001 +225057,Lightning Charging Cable,1,14.95,2019-07-26 07:47:00,706 Jackson St, Seattle,WA,98101 +225058,Apple Airpods Headphones,1,150.0,2019-07-26 17:22:00,527 13th St, Boston,MA,02215 +225059,AAA Batteries (4-pack),2,2.99,2019-07-11 16:07:00,245 Lincoln St, Los Angeles,CA,90001 +225060,27in 4K Gaming Monitor,1,389.99,2019-07-31 23:06:00,183 Cedar St, Portland,OR,97035 +225061,AA Batteries (4-pack),1,3.84,2019-07-24 14:39:00,773 Cherry St, Los Angeles,CA,90001 +225062,Lightning Charging Cable,1,14.95,2019-07-02 08:56:00,371 4th St, Boston,MA,02215 +225063,AAA Batteries (4-pack),1,2.99,2019-07-25 23:27:00,408 Lincoln St, Boston,MA,02215 +225064,27in 4K Gaming Monitor,1,389.99,2019-07-11 18:29:00,528 Main St, Dallas,TX,75001 +225065,20in Monitor,1,109.99,2019-07-19 09:37:00,946 Ridge St, Dallas,TX,75001 +225066,AAA Batteries (4-pack),1,2.99,2019-07-27 01:01:00,657 10th St, Dallas,TX,75001 +225067,Lightning Charging Cable,1,14.95,2019-07-06 10:12:00,433 Pine St, Austin,TX,73301 +225068,ThinkPad Laptop,1,999.99,2019-07-18 18:14:00,97 Forest St, Dallas,TX,75001 +225069,Wired Headphones,1,11.99,2019-07-08 13:53:00,622 10th St, San Francisco,CA,94016 +225070,AA Batteries (4-pack),1,3.84,2019-07-29 16:35:00,115 9th St, San Francisco,CA,94016 +225071,27in FHD Monitor,1,149.99,2019-07-22 11:22:00,330 Ridge St, Dallas,TX,75001 +225072,AA Batteries (4-pack),2,3.84,2019-07-11 22:17:00,849 Cedar St, Seattle,WA,98101 +225073,Apple Airpods Headphones,1,150.0,2019-07-27 17:04:00,795 Hickory St, Boston,MA,02215 +225074,AAA Batteries (4-pack),2,2.99,2019-07-31 18:28:00,202 9th St, San Francisco,CA,94016 +225075,USB-C Charging Cable,1,11.95,2019-07-02 14:16:00,588 Forest St, San Francisco,CA,94016 +225076,AA Batteries (4-pack),1,3.84,2019-07-30 21:04:00,798 4th St, Boston,MA,02215 +225077,27in 4K Gaming Monitor,1,389.99,2019-07-28 21:01:00,694 8th St, Boston,MA,02215 +225078,34in Ultrawide Monitor,1,379.99,2019-07-04 12:33:00,736 14th St, Seattle,WA,98101 +225079,Wired Headphones,1,11.99,2019-07-05 21:28:00,496 Pine St, San Francisco,CA,94016 +225080,iPhone,1,700.0,2019-07-17 19:21:00,520 Park St, Los Angeles,CA,90001 +225081,USB-C Charging Cable,1,11.95,2019-07-22 12:57:00,540 Elm St, Boston,MA,02215 +225082,USB-C Charging Cable,1,11.95,2019-07-01 09:35:00,763 Jackson St, Seattle,WA,98101 +225083,Apple Airpods Headphones,1,150.0,2019-07-10 10:33:00,857 Cedar St, San Francisco,CA,94016 +225084,Lightning Charging Cable,1,14.95,2019-07-29 02:13:00,696 Madison St, Los Angeles,CA,90001 +225085,AAA Batteries (4-pack),1,2.99,2019-07-20 22:56:00,923 Hill St, Dallas,TX,75001 +225086,iPhone,1,700.0,2019-07-20 19:04:00,773 Center St, San Francisco,CA,94016 +225086,Lightning Charging Cable,1,14.95,2019-07-20 19:04:00,773 Center St, San Francisco,CA,94016 +225087,AA Batteries (4-pack),1,3.84,2019-07-11 14:32:00,694 West St, Austin,TX,73301 +225088,34in Ultrawide Monitor,1,379.99,2019-07-15 11:38:00,246 West St, New York City,NY,10001 +225089,27in 4K Gaming Monitor,1,389.99,2019-07-11 21:08:00,731 North St, Los Angeles,CA,90001 +225090,Bose SoundSport Headphones,1,99.99,2019-07-14 16:32:00,451 Johnson St, Atlanta,GA,30301 +225091,Lightning Charging Cable,1,14.95,2019-07-18 21:55:00,151 Sunset St, San Francisco,CA,94016 +225092,AAA Batteries (4-pack),2,2.99,2019-07-09 09:37:00,733 Elm St, Atlanta,GA,30301 +225093,Lightning Charging Cable,1,14.95,2019-07-15 00:28:00,588 12th St, Los Angeles,CA,90001 +225094,AAA Batteries (4-pack),1,2.99,2019-07-17 13:49:00,63 7th St, Dallas,TX,75001 +225095,Wired Headphones,1,11.99,2019-07-22 18:14:00,415 11th St, New York City,NY,10001 +225096,ThinkPad Laptop,1,999.99,2019-07-09 15:08:00,858 Jefferson St, Dallas,TX,75001 +225097,27in 4K Gaming Monitor,1,389.99,2019-07-14 14:25:00,969 Meadow St, Boston,MA,02215 +225098,Wired Headphones,1,11.99,2019-07-18 05:55:00,639 5th St, Seattle,WA,98101 +225099,Flatscreen TV,1,300.0,2019-07-29 18:47:00,519 7th St, Austin,TX,73301 +225100,Apple Airpods Headphones,1,150.0,2019-07-28 22:14:00,787 Lincoln St, Los Angeles,CA,90001 +225101,Lightning Charging Cable,1,14.95,2019-07-02 20:41:00,710 Sunset St, Dallas,TX,75001 +225102,USB-C Charging Cable,2,11.95,2019-07-21 07:50:00,872 5th St, Los Angeles,CA,90001 +225103,Flatscreen TV,1,300.0,2019-07-16 21:40:00,512 Spruce St, Atlanta,GA,30301 +225104,AAA Batteries (4-pack),2,2.99,2019-07-14 12:16:00,309 Lakeview St, Austin,TX,73301 +225105,Apple Airpods Headphones,1,150.0,2019-07-08 16:16:00,868 Center St, Los Angeles,CA,90001 +225106,Google Phone,1,600.0,2019-07-30 21:17:00,870 Park St, Seattle,WA,98101 +225106,Wired Headphones,1,11.99,2019-07-30 21:17:00,870 Park St, Seattle,WA,98101 +225107,USB-C Charging Cable,1,11.95,2019-07-08 10:59:00,355 Meadow St, Boston,MA,02215 +225108,AA Batteries (4-pack),1,3.84,2019-07-23 19:59:00,352 Hill St, Los Angeles,CA,90001 +225109,AA Batteries (4-pack),1,3.84,2019-07-05 20:40:00,613 West St, Dallas,TX,75001 +225110,AAA Batteries (4-pack),1,2.99,2019-07-29 07:48:00,432 Madison St, Seattle,WA,98101 +225111,Apple Airpods Headphones,1,150.0,2019-07-31 17:15:00,947 North St, Austin,TX,73301 +225112,Google Phone,1,600.0,2019-07-21 13:17:00,528 Lake St, Dallas,TX,75001 +225112,USB-C Charging Cable,1,11.95,2019-07-21 13:17:00,528 Lake St, Dallas,TX,75001 +225113,27in FHD Monitor,1,149.99,2019-07-08 12:53:00,249 Washington St, San Francisco,CA,94016 +225114,USB-C Charging Cable,1,11.95,2019-07-08 11:51:00,51 Adams St, Atlanta,GA,30301 +225115,Lightning Charging Cable,2,14.95,2019-07-18 20:17:00,6 Hickory St, Portland,OR,97035 +225116,Wired Headphones,1,11.99,2019-07-26 19:24:00,323 Lakeview St, Dallas,TX,75001 +225117,Flatscreen TV,1,300.0,2019-07-02 14:53:00,273 Hill St, Seattle,WA,98101 +225118,iPhone,2,700.0,2019-07-21 11:45:00,63 Hill St, San Francisco,CA,94016 +225119,Macbook Pro Laptop,1,1700.0,2019-07-04 13:05:00,958 Highland St, San Francisco,CA,94016 +225120,Apple Airpods Headphones,1,150.0,2019-07-02 07:54:00,608 10th St, Los Angeles,CA,90001 +225121,AAA Batteries (4-pack),3,2.99,2019-07-31 17:13:00,821 Main St, Atlanta,GA,30301 +225122,Google Phone,1,600.0,2019-07-28 18:04:00,862 2nd St, Los Angeles,CA,90001 +225122,Wired Headphones,1,11.99,2019-07-28 18:04:00,862 2nd St, Los Angeles,CA,90001 +225123,USB-C Charging Cable,1,11.95,2019-07-16 14:25:00,307 Meadow St, Portland,OR,97035 +225124,Wired Headphones,1,11.99,2019-07-15 20:24:00,566 Forest St, Boston,MA,02215 +225125,USB-C Charging Cable,1,11.95,2019-07-03 06:46:00,780 Spruce St, San Francisco,CA,94016 +225126,AA Batteries (4-pack),3,3.84,2019-07-06 11:48:00,151 Highland St, Seattle,WA,98101 +225127,Lightning Charging Cable,1,14.95,2019-07-15 20:54:00,904 13th St, Dallas,TX,75001 +225128,Wired Headphones,1,11.99,2019-07-08 16:07:00,580 Johnson St, Los Angeles,CA,90001 +225129,USB-C Charging Cable,1,11.95,2019-07-08 11:10:00,309 Lincoln St, San Francisco,CA,94016 +225130,Apple Airpods Headphones,1,150.0,2019-07-09 08:12:00,181 Elm St, Los Angeles,CA,90001 +225131,ThinkPad Laptop,1,999.99,2019-07-30 18:35:00,380 West St, Dallas,TX,75001 +225132,Lightning Charging Cable,1,14.95,2019-07-26 20:26:00,144 Ridge St, New York City,NY,10001 +225133,AAA Batteries (4-pack),1,2.99,2019-07-16 17:25:00,519 Madison St, Austin,TX,73301 +225134,Apple Airpods Headphones,1,150.0,2019-07-12 16:16:00,407 Sunset St, Dallas,TX,75001 +225135,Bose SoundSport Headphones,1,99.99,2019-07-25 18:58:00,615 River St, New York City,NY,10001 +225136,USB-C Charging Cable,1,11.95,2019-07-23 02:42:00,980 Lakeview St, Seattle,WA,98101 +225137,iPhone,1,700.0,2019-07-20 11:59:00,651 Pine St, San Francisco,CA,94016 +225138,AAA Batteries (4-pack),1,2.99,2019-07-26 11:55:00,95 Elm St, Atlanta,GA,30301 +225139,27in 4K Gaming Monitor,1,389.99,2019-07-20 13:43:00,581 1st St, San Francisco,CA,94016 +225140,AAA Batteries (4-pack),1,2.99,2019-07-08 07:34:00,706 Washington St, Boston,MA,02215 +225141,USB-C Charging Cable,1,11.95,2019-07-08 13:30:00,769 South St, Los Angeles,CA,90001 +225142,Google Phone,1,600.0,2019-07-25 08:13:00,836 River St, New York City,NY,10001 +225143,Lightning Charging Cable,1,14.95,2019-07-08 11:30:00,353 North St, Atlanta,GA,30301 +225144,Lightning Charging Cable,1,14.95,2019-07-07 11:30:00,493 Forest St, New York City,NY,10001 +225145,iPhone,1,700.0,2019-07-03 13:12:00,659 Hill St, Seattle,WA,98101 +225145,Lightning Charging Cable,1,14.95,2019-07-03 13:12:00,659 Hill St, Seattle,WA,98101 +225146,USB-C Charging Cable,1,11.95,2019-07-14 11:04:00,335 6th St, Seattle,WA,98101 +225147,Bose SoundSport Headphones,1,99.99,2019-07-09 10:31:00,224 Highland St, San Francisco,CA,94016 +225148,20in Monitor,1,109.99,2019-07-21 11:26:00,950 Ridge St, Portland,OR,97035 +225149,27in 4K Gaming Monitor,1,389.99,2019-07-31 21:37:00,602 Jackson St, San Francisco,CA,94016 +225150,USB-C Charging Cable,1,11.95,2019-07-29 08:29:00,488 Hill St, Boston,MA,02215 +225151,Flatscreen TV,1,300.0,2019-07-05 16:51:00,985 12th St, Boston,MA,02215 +225152,Bose SoundSport Headphones,1,99.99,2019-07-02 07:25:00,312 Walnut St, New York City,NY,10001 +225153,20in Monitor,1,109.99,2019-07-21 13:47:00,919 Lake St, Los Angeles,CA,90001 +225154,AA Batteries (4-pack),1,3.84,2019-07-20 00:03:00,625 Chestnut St, New York City,NY,10001 +225155,Apple Airpods Headphones,1,150.0,2019-07-11 22:12:00,149 Washington St, Seattle,WA,98101 +225156,AAA Batteries (4-pack),3,2.99,2019-07-10 19:00:00,201 Spruce St, New York City,NY,10001 +225157,AA Batteries (4-pack),1,3.84,2019-07-19 18:34:00,339 Meadow St, Seattle,WA,98101 +225158,USB-C Charging Cable,1,11.95,2019-07-21 19:28:00,240 Adams St, New York City,NY,10001 +225159,AA Batteries (4-pack),1,3.84,2019-07-15 20:28:00,772 6th St, New York City,NY,10001 +225160,USB-C Charging Cable,1,11.95,2019-07-19 17:48:00,490 River St, Boston,MA,02215 +225161,Apple Airpods Headphones,1,150.0,2019-07-22 00:05:00,284 1st St, San Francisco,CA,94016 +225162,USB-C Charging Cable,1,11.95,2019-07-27 16:39:00,680 12th St, Atlanta,GA,30301 +225163,Wired Headphones,1,11.99,2019-07-03 21:33:00,454 Main St, Boston,MA,02215 +225164,Wired Headphones,1,11.99,2019-07-17 11:50:00,107 6th St, San Francisco,CA,94016 +225165,AAA Batteries (4-pack),1,2.99,2019-07-30 10:26:00,454 Adams St, Dallas,TX,75001 +225166,AAA Batteries (4-pack),1,2.99,2019-07-05 23:28:00,466 Dogwood St, Seattle,WA,98101 +225167,Apple Airpods Headphones,1,150.0,2019-07-29 07:40:00,927 1st St, Boston,MA,02215 +225168,20in Monitor,1,109.99,2019-07-09 11:33:00,115 North St, Seattle,WA,98101 +225169,ThinkPad Laptop,1,999.99,2019-07-10 04:58:00,357 Main St, Seattle,WA,98101 +225170,AA Batteries (4-pack),1,3.84,2019-07-21 16:41:00,913 2nd St, Portland,OR,97035 +225171,Macbook Pro Laptop,1,1700.0,2019-07-31 07:19:00,289 Church St, Los Angeles,CA,90001 +225171,USB-C Charging Cable,2,11.95,2019-07-31 07:19:00,289 Church St, Los Angeles,CA,90001 +225172,Wired Headphones,1,11.99,2019-07-25 07:44:00,624 7th St, San Francisco,CA,94016 +225173,Lightning Charging Cable,1,14.95,2019-07-12 11:45:00,324 Adams St, Los Angeles,CA,90001 +225174,Wired Headphones,2,11.99,2019-07-10 19:16:00,568 13th St, Portland,OR,97035 +225175,USB-C Charging Cable,1,11.95,2019-07-13 12:34:00,593 4th St, Los Angeles,CA,90001 +225176,AA Batteries (4-pack),1,3.84,2019-07-08 13:10:00,578 West St, San Francisco,CA,94016 +225177,AA Batteries (4-pack),2,3.84,2019-07-20 12:50:00,890 Center St, Los Angeles,CA,90001 +225178,USB-C Charging Cable,1,11.95,2019-07-29 08:26:00,936 13th St, Austin,TX,73301 +225179,AAA Batteries (4-pack),3,2.99,2019-07-08 18:40:00,797 Lakeview St, Boston,MA,02215 +225180,AAA Batteries (4-pack),1,2.99,2019-07-05 15:01:00,738 7th St, New York City,NY,10001 +225181,AA Batteries (4-pack),7,3.84,2019-07-05 13:50:00,349 Walnut St, Dallas,TX,75001 +225182,Wired Headphones,1,11.99,2019-07-23 19:16:00,403 Adams St, Atlanta,GA,30301 +225183,20in Monitor,1,109.99,2019-07-30 14:21:00,249 6th St, Atlanta,GA,30301 +225184,27in FHD Monitor,1,149.99,2019-07-13 08:01:00,930 Walnut St, Atlanta,GA,30301 +225185,AA Batteries (4-pack),1,3.84,2019-07-22 02:02:00,903 South St, San Francisco,CA,94016 +225186,Apple Airpods Headphones,1,150.0,2019-07-19 19:02:00,678 11th St, Seattle,WA,98101 +225187,Apple Airpods Headphones,1,150.0,2019-07-12 19:49:00,400 Chestnut St, Los Angeles,CA,90001 +225188,Flatscreen TV,1,300.0,2019-07-31 02:58:00,259 Forest St, San Francisco,CA,94016 +225189,Wired Headphones,1,11.99,2019-07-19 15:30:00,248 North St, New York City,NY,10001 +225190,AA Batteries (4-pack),1,3.84,2019-07-17 09:55:00,419 Church St, Portland,OR,97035 +225191,AAA Batteries (4-pack),1,2.99,2019-07-03 18:31:00,375 11th St, Boston,MA,02215 +225192,Google Phone,1,600.0,2019-07-10 23:15:00,90 Lakeview St, San Francisco,CA,94016 +225193,20in Monitor,1,109.99,2019-07-07 10:42:00,547 12th St, New York City,NY,10001 +225194,Lightning Charging Cable,1,14.95,2019-07-07 12:35:00,489 Jackson St, San Francisco,CA,94016 +225195,Macbook Pro Laptop,1,1700.0,2019-07-05 22:47:00,811 9th St, Dallas,TX,75001 +225196,27in 4K Gaming Monitor,1,389.99,2019-07-05 19:36:00,135 Hickory St, Seattle,WA,98101 +225197,Wired Headphones,1,11.99,2019-07-16 08:45:00,332 Maple St, San Francisco,CA,94016 +225198,Wired Headphones,1,11.99,2019-07-24 09:29:00,698 Jackson St, Austin,TX,73301 +225199,Flatscreen TV,2,300.0,2019-07-22 21:45:00,513 9th St, New York City,NY,10001 +225200,Bose SoundSport Headphones,1,99.99,2019-07-15 14:08:00,455 12th St, Atlanta,GA,30301 +225201,Wired Headphones,1,11.99,2019-07-11 13:49:00,879 Lake St, San Francisco,CA,94016 +225202,Bose SoundSport Headphones,1,99.99,2019-07-06 17:56:00,133 Forest St, San Francisco,CA,94016 +225203,27in FHD Monitor,1,149.99,2019-07-06 00:05:00,379 7th St, Atlanta,GA,30301 +225204,Lightning Charging Cable,1,14.95,2019-07-08 07:09:00,68 Lincoln St, San Francisco,CA,94016 +225205,USB-C Charging Cable,2,11.95,2019-07-09 13:49:00,660 Wilson St, Dallas,TX,75001 +225206,USB-C Charging Cable,1,11.95,2019-07-04 22:07:00,752 Cedar St, Atlanta,GA,30301 +225207,AAA Batteries (4-pack),2,2.99,2019-07-03 14:29:00,36 Spruce St, Boston,MA,02215 +225208,27in FHD Monitor,1,149.99,2019-07-11 07:02:00,522 Chestnut St, Dallas,TX,75001 +225209,USB-C Charging Cable,1,11.95,2019-07-02 18:10:00,621 River St, San Francisco,CA,94016 +225210,27in 4K Gaming Monitor,1,389.99,2019-07-15 03:12:00,435 Hill St, Austin,TX,73301 +225211,Apple Airpods Headphones,1,150.0,2019-07-29 11:48:00,510 Forest St, Austin,TX,73301 +225212,AAA Batteries (4-pack),2,2.99,2019-07-07 11:07:00,119 Cedar St, Austin,TX,73301 +225213,Apple Airpods Headphones,1,150.0,2019-07-08 18:56:00,610 Hill St, Los Angeles,CA,90001 +225214,AAA Batteries (4-pack),1,2.99,2019-07-04 21:25:00,625 Maple St, San Francisco,CA,94016 +225215,20in Monitor,1,109.99,2019-07-06 19:59:00,481 Forest St, San Francisco,CA,94016 +225216,Wired Headphones,1,11.99,2019-07-02 07:32:00,996 Hickory St, Atlanta,GA,30301 +225217,Apple Airpods Headphones,1,150.0,2019-07-26 15:59:00,416 Washington St, New York City,NY,10001 +225218,Lightning Charging Cable,2,14.95,2019-07-16 18:20:00,681 Dogwood St, Boston,MA,02215 +225219,USB-C Charging Cable,1,11.95,2019-07-07 13:11:00,174 Madison St, San Francisco,CA,94016 +225220,Lightning Charging Cable,1,14.95,2019-07-08 09:02:00,891 Johnson St, New York City,NY,10001 +225221,Apple Airpods Headphones,1,150.0,2019-07-18 18:08:00,918 Chestnut St, Boston,MA,02215 +225222,Apple Airpods Headphones,1,150.0,2019-07-21 14:11:00,713 North St, Los Angeles,CA,90001 +225223,Wired Headphones,1,11.99,2019-07-15 19:52:00,26 Cherry St, Portland,ME,04101 +225224,Wired Headphones,1,11.99,2019-07-09 13:42:00,331 Johnson St, Seattle,WA,98101 +225225,ThinkPad Laptop,1,999.99,2019-07-12 19:47:00,536 Jackson St, Dallas,TX,75001 +225226,Lightning Charging Cable,1,14.95,2019-07-18 20:04:00,873 Adams St, Los Angeles,CA,90001 +225227,Bose SoundSport Headphones,1,99.99,2019-07-22 12:39:00,603 Johnson St, San Francisco,CA,94016 +225228,AAA Batteries (4-pack),1,2.99,2019-07-30 18:47:00,396 Pine St, Seattle,WA,98101 +225229,Lightning Charging Cable,1,14.95,2019-07-19 12:50:00,754 Main St, San Francisco,CA,94016 +225230,AA Batteries (4-pack),1,3.84,2019-07-05 23:03:00,746 Johnson St, San Francisco,CA,94016 +225231,AAA Batteries (4-pack),1,2.99,2019-07-09 08:31:00,641 Maple St, San Francisco,CA,94016 +225232,USB-C Charging Cable,1,11.95,2019-07-01 19:08:00,167 Ridge St, San Francisco,CA,94016 +225232,Macbook Pro Laptop,1,1700.0,2019-07-01 19:08:00,167 Ridge St, San Francisco,CA,94016 +225233,Google Phone,1,600.0,2019-07-24 18:49:00,836 Main St, Los Angeles,CA,90001 +225234,USB-C Charging Cable,1,11.95,2019-07-29 12:40:00,732 Jackson St, Atlanta,GA,30301 +225235,USB-C Charging Cable,1,11.95,2019-07-29 09:36:00,417 Jefferson St, Atlanta,GA,30301 +225236,Flatscreen TV,1,300.0,2019-07-28 10:12:00,122 1st St, San Francisco,CA,94016 +225237,Macbook Pro Laptop,1,1700.0,2019-07-23 21:25:00,851 Lincoln St, Dallas,TX,75001 +225238,27in 4K Gaming Monitor,1,389.99,2019-07-20 23:11:00,402 Hill St, New York City,NY,10001 +225239,Wired Headphones,1,11.99,2019-07-19 11:40:00,422 Lake St, Seattle,WA,98101 +225240,AAA Batteries (4-pack),1,2.99,2019-07-27 00:28:00,222 Maple St, Boston,MA,02215 +225241,34in Ultrawide Monitor,1,379.99,2019-07-22 11:03:00,474 North St, Portland,OR,97035 +225242,AAA Batteries (4-pack),1,2.99,2019-07-19 15:00:00,945 Ridge St, Atlanta,GA,30301 +225243,Lightning Charging Cable,1,14.95,2019-07-17 18:38:00,612 Church St, Los Angeles,CA,90001 +225244,Macbook Pro Laptop,1,1700.0,2019-07-20 20:00:00,335 Lakeview St, San Francisco,CA,94016 +225245,AA Batteries (4-pack),1,3.84,2019-07-22 18:00:00,542 Willow St, San Francisco,CA,94016 +225246,LG Washing Machine,1,600.0,2019-07-13 19:48:00,905 Sunset St, San Francisco,CA,94016 +225247,AA Batteries (4-pack),1,3.84,2019-07-25 11:24:00,146 Main St, New York City,NY,10001 +225248,AAA Batteries (4-pack),1,2.99,2019-07-23 19:45:00,520 11th St, Los Angeles,CA,90001 +225249,27in FHD Monitor,1,149.99,2019-07-22 06:09:00,771 Highland St, Boston,MA,02215 +225250,Google Phone,1,600.0,2019-07-03 08:41:00,870 4th St, Boston,MA,02215 +225250,USB-C Charging Cable,1,11.95,2019-07-03 08:41:00,870 4th St, Boston,MA,02215 +225251,USB-C Charging Cable,1,11.95,2019-07-12 22:42:00,935 Hill St, Seattle,WA,98101 +225252,Google Phone,1,600.0,2019-07-16 12:07:00,75 Church St, Los Angeles,CA,90001 +225253,AA Batteries (4-pack),1,3.84,2019-07-09 08:22:00,718 Cherry St, New York City,NY,10001 +225254,AAA Batteries (4-pack),3,2.99,2019-07-13 10:02:00,870 Main St, Boston,MA,02215 +225255,Lightning Charging Cable,1,14.95,2019-07-07 12:56:00,551 Johnson St, Los Angeles,CA,90001 +225256,Apple Airpods Headphones,1,150.0,2019-07-11 22:21:00,470 5th St, New York City,NY,10001 +225257,20in Monitor,1,109.99,2019-07-11 11:44:00,676 7th St, San Francisco,CA,94016 +225258,AA Batteries (4-pack),1,3.84,2019-07-10 10:47:00,562 Lincoln St, San Francisco,CA,94016 +225259,Lightning Charging Cable,1,14.95,2019-07-05 11:20:00,233 Church St, Boston,MA,02215 +225260,27in 4K Gaming Monitor,1,389.99,2019-07-02 11:22:00,514 Johnson St, Los Angeles,CA,90001 +225261,AA Batteries (4-pack),1,3.84,2019-07-08 14:52:00,218 10th St, New York City,NY,10001 +225262,Wired Headphones,1,11.99,2019-07-31 16:30:00,48 Center St, San Francisco,CA,94016 +225263,Wired Headphones,1,11.99,2019-07-05 22:16:00,47 Madison St, Seattle,WA,98101 +225264,Lightning Charging Cable,2,14.95,2019-07-22 10:27:00,86 8th St, San Francisco,CA,94016 +225265,USB-C Charging Cable,1,11.95,2019-07-27 21:42:00,375 12th St, Los Angeles,CA,90001 +225266,Apple Airpods Headphones,1,150.0,2019-07-22 11:06:00,606 River St, Austin,TX,73301 +225267,27in FHD Monitor,1,149.99,2019-07-29 22:00:00,333 South St, Dallas,TX,75001 +225268,AAA Batteries (4-pack),4,2.99,2019-07-15 06:45:00,753 Elm St, Portland,OR,97035 +225269,AA Batteries (4-pack),1,3.84,2019-07-15 17:46:00,171 West St, Boston,MA,02215 +225270,Bose SoundSport Headphones,1,99.99,2019-07-02 11:03:00,122 Hickory St, San Francisco,CA,94016 +225271,Lightning Charging Cable,1,14.95,2019-07-28 11:07:00,908 Church St, Seattle,WA,98101 +225272,ThinkPad Laptop,1,999.99,2019-07-25 11:30:00,729 Forest St, Portland,OR,97035 +225273,iPhone,1,700.0,2019-07-30 19:47:00,332 Meadow St, New York City,NY,10001 +225274,USB-C Charging Cable,1,11.95,2019-07-17 09:18:00,577 Adams St, Dallas,TX,75001 +225275,Flatscreen TV,1,300.0,2019-07-08 05:24:00,181 Walnut St, New York City,NY,10001 +225276,AAA Batteries (4-pack),1,2.99,2019-07-27 20:48:00,459 Jackson St, Portland,OR,97035 +225277,34in Ultrawide Monitor,1,379.99,2019-07-25 00:05:00,307 Adams St, New York City,NY,10001 +225278,Lightning Charging Cable,1,14.95,2019-07-03 18:56:00,152 Cedar St, Dallas,TX,75001 +225279,AA Batteries (4-pack),1,3.84,2019-07-22 07:25:00,101 9th St, Portland,OR,97035 +225280,34in Ultrawide Monitor,1,379.99,2019-07-14 07:47:00,44 Jefferson St, Seattle,WA,98101 +225280,AA Batteries (4-pack),2,3.84,2019-07-14 07:47:00,44 Jefferson St, Seattle,WA,98101 +225281,27in FHD Monitor,2,149.99,2019-07-23 06:47:00,428 2nd St, San Francisco,CA,94016 +225282,AAA Batteries (4-pack),1,2.99,2019-07-04 17:16:00,864 12th St, Atlanta,GA,30301 +225283,27in FHD Monitor,1,149.99,2019-07-25 20:58:00,771 Highland St, Dallas,TX,75001 +225284,AA Batteries (4-pack),1,3.84,2019-07-21 00:05:00,539 7th St, Los Angeles,CA,90001 +225285,AAA Batteries (4-pack),1,2.99,2019-07-31 21:20:00,554 Washington St, San Francisco,CA,94016 +225286,Lightning Charging Cable,1,14.95,2019-07-06 15:48:00,381 Chestnut St, Boston,MA,02215 +225287,USB-C Charging Cable,2,11.95,2019-07-10 08:41:00,744 Park St, New York City,NY,10001 +225288,34in Ultrawide Monitor,1,379.99,2019-07-31 09:15:00,210 7th St, New York City,NY,10001 +225289,Google Phone,1,600.0,2019-07-11 13:58:00,187 11th St, San Francisco,CA,94016 +225290,20in Monitor,1,109.99,2019-07-30 15:39:00,535 4th St, Dallas,TX,75001 +225291,AA Batteries (4-pack),1,3.84,2019-07-19 20:50:00,588 Lakeview St, San Francisco,CA,94016 +225292,20in Monitor,1,109.99,2019-07-18 12:13:00,601 6th St, Portland,OR,97035 +225293,iPhone,1,700.0,2019-07-12 11:51:00,893 Madison St, Portland,OR,97035 +225294,Apple Airpods Headphones,1,150.0,2019-07-23 19:24:00,233 Park St, Austin,TX,73301 +225295,34in Ultrawide Monitor,1,379.99,2019-07-18 13:24:00,667 Chestnut St, San Francisco,CA,94016 +225296,Apple Airpods Headphones,1,150.0,2019-07-13 15:42:00,450 Dogwood St, San Francisco,CA,94016 +225297,AA Batteries (4-pack),1,3.84,2019-07-14 17:01:00,813 Forest St, Atlanta,GA,30301 +225298,AA Batteries (4-pack),1,3.84,2019-07-29 06:04:00,673 Cherry St, Atlanta,GA,30301 +225299,ThinkPad Laptop,1,999.99,2019-07-23 19:17:00,11 Cedar St, San Francisco,CA,94016 +225300,AA Batteries (4-pack),2,3.84,2019-07-20 21:54:00,669 Cherry St, Seattle,WA,98101 +225301,Google Phone,1,600.0,2019-07-28 06:42:00,367 2nd St, Los Angeles,CA,90001 +225302,Bose SoundSport Headphones,1,99.99,2019-07-31 16:17:00,264 Dogwood St, Portland,OR,97035 +225303,AAA Batteries (4-pack),1,2.99,2019-07-27 15:19:00,946 Ridge St, Atlanta,GA,30301 +225304,AAA Batteries (4-pack),1,2.99,2019-07-09 14:10:00,19 Willow St, Los Angeles,CA,90001 +225305,AAA Batteries (4-pack),1,2.99,2019-07-18 23:09:00,142 11th St, Boston,MA,02215 +225306,Lightning Charging Cable,1,14.95,2019-07-13 08:12:00,93 11th St, Atlanta,GA,30301 +225307,Lightning Charging Cable,1,14.95,2019-07-05 22:45:00,912 Forest St, San Francisco,CA,94016 +225308,Flatscreen TV,1,300.0,2019-07-11 21:26:00,148 Johnson St, San Francisco,CA,94016 +225309,27in 4K Gaming Monitor,1,389.99,2019-07-12 20:16:00,666 5th St, Austin,TX,73301 +225310,Bose SoundSport Headphones,1,99.99,2019-07-05 10:36:00,717 West St, San Francisco,CA,94016 +225311,Apple Airpods Headphones,1,150.0,2019-07-15 14:58:00,10 Hickory St, New York City,NY,10001 +225312,USB-C Charging Cable,1,11.95,2019-07-26 18:58:00,476 2nd St, Los Angeles,CA,90001 +225313,AA Batteries (4-pack),1,3.84,2019-07-30 15:08:00,597 Madison St, San Francisco,CA,94016 +225314,Wired Headphones,1,11.99,2019-07-17 09:04:00,348 Lincoln St, Portland,OR,97035 +225315,iPhone,1,700.0,2019-07-01 13:38:00,614 Madison St, Boston,MA,02215 +225316,USB-C Charging Cable,1,11.95,2019-07-08 23:40:00,137 Cherry St, Atlanta,GA,30301 +225317,Apple Airpods Headphones,1,150.0,2019-07-02 16:27:00,748 9th St, Dallas,TX,75001 +225318,Lightning Charging Cable,1,14.95,2019-07-23 15:52:00,804 Park St, New York City,NY,10001 +225319,AAA Batteries (4-pack),1,2.99,2019-07-30 13:14:00,82 11th St, New York City,NY,10001 +225320,AA Batteries (4-pack),1,3.84,2019-07-02 08:03:00,907 13th St, San Francisco,CA,94016 +225321,AAA Batteries (4-pack),1,2.99,2019-07-27 15:16:00,319 Lakeview St, Portland,OR,97035 +225322,AAA Batteries (4-pack),2,2.99,2019-07-02 16:54:00,559 Highland St, Portland,OR,97035 +225323,Apple Airpods Headphones,1,150.0,2019-07-04 15:08:00,958 Center St, Boston,MA,02215 +225323,Wired Headphones,2,11.99,2019-07-04 15:08:00,958 Center St, Boston,MA,02215 +225324,USB-C Charging Cable,1,11.95,2019-07-22 09:51:00,435 Spruce St, Boston,MA,02215 +225325,27in FHD Monitor,1,149.99,2019-07-22 16:14:00,587 8th St, San Francisco,CA,94016 +225326,Apple Airpods Headphones,1,150.0,2019-07-06 15:50:00,212 Spruce St, Dallas,TX,75001 +225326,Wired Headphones,1,11.99,2019-07-06 15:50:00,212 Spruce St, Dallas,TX,75001 +225327,Google Phone,1,600.0,2019-07-08 11:03:00,479 Church St, San Francisco,CA,94016 +225328,Wired Headphones,1,11.99,2019-07-22 13:34:00,71 Spruce St, San Francisco,CA,94016 +225329,AA Batteries (4-pack),1,3.84,2019-07-17 22:17:00,336 Jefferson St, San Francisco,CA,94016 +225330,Lightning Charging Cable,1,14.95,2019-07-30 12:13:00,124 6th St, Portland,OR,97035 +225331,27in FHD Monitor,1,149.99,2019-07-14 14:19:00,455 Jackson St, New York City,NY,10001 +225331,USB-C Charging Cable,1,11.95,2019-07-14 14:19:00,455 Jackson St, New York City,NY,10001 +225332,AAA Batteries (4-pack),1,2.99,2019-07-06 17:37:00,577 Adams St, Boston,MA,02215 +225333,AA Batteries (4-pack),1,3.84,2019-07-04 12:08:00,850 13th St, Dallas,TX,75001 +225334,Macbook Pro Laptop,1,1700.0,2019-07-11 17:26:00,544 Chestnut St, Boston,MA,02215 +225335,USB-C Charging Cable,1,11.95,2019-07-11 18:12:00,294 1st St, Los Angeles,CA,90001 +225336,Lightning Charging Cable,1,14.95,2019-07-24 14:00:00,426 Sunset St, Los Angeles,CA,90001 +225337,AAA Batteries (4-pack),1,2.99,2019-07-22 14:29:00,310 Spruce St, Dallas,TX,75001 +225338,USB-C Charging Cable,1,11.95,2019-07-25 21:01:00,413 13th St, New York City,NY,10001 +225339,34in Ultrawide Monitor,1,379.99,2019-07-31 23:03:00,704 Wilson St, New York City,NY,10001 +225340,Apple Airpods Headphones,1,150.0,2019-07-09 21:43:00,594 Jefferson St, Los Angeles,CA,90001 +225341,27in 4K Gaming Monitor,1,389.99,2019-07-13 10:10:00,780 Center St, New York City,NY,10001 +225342,27in 4K Gaming Monitor,1,389.99,2019-07-03 13:52:00,392 Sunset St, Austin,TX,73301 +225343,AAA Batteries (4-pack),1,2.99,2019-07-25 14:48:00,631 Forest St, San Francisco,CA,94016 +225344,27in FHD Monitor,1,149.99,2019-07-26 22:08:00,991 Pine St, Los Angeles,CA,90001 +225345,Lightning Charging Cable,1,14.95,2019-07-15 20:21:00,694 13th St, Dallas,TX,75001 +225346,AA Batteries (4-pack),5,3.84,2019-07-08 16:56:00,141 Forest St, New York City,NY,10001 +225347,iPhone,1,700.0,2019-07-03 17:16:00,588 West St, Austin,TX,73301 +225347,Lightning Charging Cable,1,14.95,2019-07-03 17:16:00,588 West St, Austin,TX,73301 +225347,Wired Headphones,1,11.99,2019-07-03 17:16:00,588 West St, Austin,TX,73301 +225348,USB-C Charging Cable,1,11.95,2019-07-04 18:04:00,930 6th St, Los Angeles,CA,90001 +225349,USB-C Charging Cable,1,11.95,2019-07-19 23:07:00,927 6th St, Los Angeles,CA,90001 +225350,iPhone,1,700.0,2019-07-16 05:41:00,91 Washington St, Los Angeles,CA,90001 +225350,Lightning Charging Cable,1,14.95,2019-07-16 05:41:00,91 Washington St, Los Angeles,CA,90001 +225351,Bose SoundSport Headphones,1,99.99,2019-07-18 19:15:00,685 10th St, Los Angeles,CA,90001 +225352,34in Ultrawide Monitor,1,379.99,2019-07-04 09:46:00,178 9th St, Austin,TX,73301 +225353,USB-C Charging Cable,1,11.95,2019-07-20 17:20:00,287 Ridge St, San Francisco,CA,94016 +225354,20in Monitor,1,109.99,2019-07-27 21:55:00,286 Madison St, Atlanta,GA,30301 +225355,USB-C Charging Cable,1,11.95,2019-07-10 13:08:00,273 Park St, Los Angeles,CA,90001 +225356,20in Monitor,1,109.99,2019-07-26 16:28:00,246 Washington St, Dallas,TX,75001 +225357,Lightning Charging Cable,1,14.95,2019-07-25 17:49:00,779 Madison St, San Francisco,CA,94016 +225358,iPhone,1,700.0,2019-07-29 14:38:00,239 West St, San Francisco,CA,94016 +225359,Apple Airpods Headphones,1,150.0,2019-07-01 10:40:00,913 Adams St, Dallas,TX,75001 +225360,Flatscreen TV,1,300.0,2019-07-22 17:01:00,222 11th St, Portland,ME,04101 +225361,Lightning Charging Cable,1,14.95,2019-07-25 21:40:00,750 Cedar St, San Francisco,CA,94016 +225362,Wired Headphones,3,11.99,2019-07-06 22:07:00,606 9th St, San Francisco,CA,94016 +225362,Macbook Pro Laptop,1,1700.0,2019-07-06 22:07:00,606 9th St, San Francisco,CA,94016 +225363,Wired Headphones,1,11.99,2019-07-19 15:48:00,188 Chestnut St, Los Angeles,CA,90001 +225364,Wired Headphones,1,11.99,2019-07-02 20:08:00,241 Hickory St, Los Angeles,CA,90001 +225365,AA Batteries (4-pack),1,3.84,2019-07-04 20:16:00,281 Cedar St, Los Angeles,CA,90001 +225366,AAA Batteries (4-pack),1,2.99,2019-07-09 18:16:00,420 Johnson St, Atlanta,GA,30301 +225367,AAA Batteries (4-pack),1,2.99,2019-07-27 19:24:00,588 Sunset St, Los Angeles,CA,90001 +225368,Lightning Charging Cable,1,14.95,2019-07-07 11:21:00,967 Cherry St, Boston,MA,02215 +225369,USB-C Charging Cable,1,11.95,2019-07-19 12:55:00,468 Pine St, Los Angeles,CA,90001 +225370,Wired Headphones,1,11.99,2019-07-10 17:14:00,59 Hickory St, San Francisco,CA,94016 +225371,Flatscreen TV,1,300.0,2019-07-28 20:23:00,758 Main St, San Francisco,CA,94016 +225372,AA Batteries (4-pack),1,3.84,2019-07-05 16:55:00,226 West St, Boston,MA,02215 +225373,27in 4K Gaming Monitor,1,389.99,2019-07-07 11:10:00,438 Park St, Los Angeles,CA,90001 +225374,AA Batteries (4-pack),1,3.84,2019-07-13 21:19:00,746 2nd St, Los Angeles,CA,90001 +225375,AA Batteries (4-pack),2,3.84,2019-07-02 16:18:00,96 Elm St, Los Angeles,CA,90001 +225376,AA Batteries (4-pack),2,3.84,2019-07-26 19:07:00,723 West St, Seattle,WA,98101 +225376,AAA Batteries (4-pack),2,2.99,2019-07-26 19:07:00,723 West St, Seattle,WA,98101 +225377,Apple Airpods Headphones,1,150.0,2019-07-25 14:07:00,216 5th St, New York City,NY,10001 +225378,27in FHD Monitor,1,149.99,2019-07-26 10:30:00,38 Adams St, Boston,MA,02215 +225379,27in FHD Monitor,1,149.99,2019-07-30 16:37:00,652 13th St, San Francisco,CA,94016 +225380,Lightning Charging Cable,1,14.95,2019-07-21 18:37:00,204 River St, Los Angeles,CA,90001 +225381,Lightning Charging Cable,1,14.95,2019-07-14 19:55:00,317 5th St, Dallas,TX,75001 +225382,27in FHD Monitor,1,149.99,2019-07-18 02:04:00,912 Elm St, Portland,OR,97035 +225383,AA Batteries (4-pack),2,3.84,2019-07-03 20:22:00,564 7th St, San Francisco,CA,94016 +225384,20in Monitor,1,109.99,2019-07-08 09:30:00,382 River St, Dallas,TX,75001 +225385,ThinkPad Laptop,1,999.99,2019-07-13 11:08:00,706 11th St, Boston,MA,02215 +225386,AAA Batteries (4-pack),1,2.99,2019-07-20 00:03:00,175 Cedar St, Seattle,WA,98101 +225387,AAA Batteries (4-pack),1,2.99,2019-07-29 13:24:00,907 Dogwood St, Seattle,WA,98101 +225388,AA Batteries (4-pack),1,3.84,2019-07-23 08:21:00,963 Ridge St, Boston,MA,02215 +225389,AA Batteries (4-pack),1,3.84,2019-07-31 02:35:00,421 Lincoln St, San Francisco,CA,94016 +225390,27in FHD Monitor,1,149.99,2019-07-07 19:17:00,693 Pine St, San Francisco,CA,94016 +225391,Flatscreen TV,1,300.0,2019-07-11 14:48:00,629 Hickory St, Boston,MA,02215 +225392,27in FHD Monitor,1,149.99,2019-07-28 14:33:00,908 1st St, Los Angeles,CA,90001 +225393,Google Phone,1,600.0,2019-07-27 09:15:00,576 Jefferson St, Boston,MA,02215 +225394,Lightning Charging Cable,1,14.95,2019-07-24 08:28:00,510 Sunset St, Austin,TX,73301 +225395,AA Batteries (4-pack),3,3.84,2019-07-10 21:21:00,912 Highland St, San Francisco,CA,94016 +225396,27in 4K Gaming Monitor,1,389.99,2019-07-21 15:31:00,316 Hickory St, Los Angeles,CA,90001 +225397,Lightning Charging Cable,1,14.95,2019-07-01 11:03:00,962 Walnut St, Los Angeles,CA,90001 +225398,Lightning Charging Cable,1,14.95,2019-07-16 20:29:00,272 Sunset St, New York City,NY,10001 +225399,27in FHD Monitor,1,149.99,2019-07-07 23:20:00,785 Jackson St, San Francisco,CA,94016 +225400,AA Batteries (4-pack),2,3.84,2019-07-01 11:38:00,856 9th St, San Francisco,CA,94016 +225401,Google Phone,1,600.0,2019-07-29 19:01:00,714 5th St, San Francisco,CA,94016 +225401,USB-C Charging Cable,1,11.95,2019-07-29 19:01:00,714 5th St, San Francisco,CA,94016 +225402,USB-C Charging Cable,1,11.95,2019-07-30 00:12:00,466 11th St, Los Angeles,CA,90001 +225403,Wired Headphones,1,11.99,2019-07-21 00:58:00,382 Center St, Seattle,WA,98101 +225404,Macbook Pro Laptop,1,1700.0,2019-07-23 13:38:00,245 Dogwood St, Boston,MA,02215 +225405,AAA Batteries (4-pack),1,2.99,2019-07-20 19:36:00,882 8th St, San Francisco,CA,94016 +225406,Lightning Charging Cable,1,14.95,2019-07-10 18:39:00,578 Dogwood St, San Francisco,CA,94016 +225407,USB-C Charging Cable,3,11.95,2019-07-27 01:02:00,593 Jackson St, New York City,NY,10001 +225408,Wired Headphones,1,11.99,2019-07-17 10:40:00,987 Meadow St, New York City,NY,10001 +225409,AAA Batteries (4-pack),1,2.99,2019-07-22 09:53:00,771 Forest St, Portland,OR,97035 +225410,34in Ultrawide Monitor,1,379.99,2019-07-06 14:40:00,594 Dogwood St, Los Angeles,CA,90001 +225411,Wired Headphones,1,11.99,2019-07-03 08:34:00,212 Main St, Austin,TX,73301 +225412,Lightning Charging Cable,1,14.95,2019-07-02 13:04:00,174 Highland St, San Francisco,CA,94016 +225413,iPhone,1,700.0,2019-07-24 15:35:00,578 Madison St, Los Angeles,CA,90001 +225413,Wired Headphones,1,11.99,2019-07-24 15:35:00,578 Madison St, Los Angeles,CA,90001 +225414,Wired Headphones,1,11.99,2019-07-09 15:17:00,909 Church St, Los Angeles,CA,90001 +225415,Macbook Pro Laptop,1,1700.0,2019-07-23 17:35:00,755 Wilson St, Atlanta,GA,30301 +225416,Wired Headphones,1,11.99,2019-07-15 07:16:00,34 Chestnut St, San Francisco,CA,94016 +225417,AAA Batteries (4-pack),3,2.99,2019-07-15 15:55:00,20 6th St, Portland,OR,97035 +225418,Wired Headphones,1,11.99,2019-07-13 11:20:00,574 Chestnut St, Boston,MA,02215 +225419,AA Batteries (4-pack),1,3.84,2019-07-18 11:35:00,969 9th St, New York City,NY,10001 +225420,Flatscreen TV,1,300.0,2019-07-27 18:38:00,296 7th St, Los Angeles,CA,90001 +225421,Macbook Pro Laptop,1,1700.0,2019-07-15 12:19:00,159 Jackson St, Los Angeles,CA,90001 +225422,AA Batteries (4-pack),1,3.84,2019-07-21 22:37:00,5 Willow St, Austin,TX,73301 +225423,AAA Batteries (4-pack),5,2.99,2019-07-30 15:34:00,302 2nd St, Dallas,TX,75001 +225424,ThinkPad Laptop,1,999.99,2019-07-06 13:51:00,912 Willow St, New York City,NY,10001 +225425,Wired Headphones,2,11.99,2019-07-22 20:06:00,923 Cedar St, Seattle,WA,98101 +225426,USB-C Charging Cable,1,11.95,2019-07-11 15:35:00,844 1st St, New York City,NY,10001 +225427,Wired Headphones,1,11.99,2019-07-18 07:23:00,627 Lakeview St, Seattle,WA,98101 +225428,Google Phone,1,600.0,2019-07-29 21:28:00,796 River St, Dallas,TX,75001 +225428,Bose SoundSport Headphones,1,99.99,2019-07-29 21:28:00,796 River St, Dallas,TX,75001 +225429,34in Ultrawide Monitor,1,379.99,2019-07-28 12:04:00,378 Cedar St, San Francisco,CA,94016 +225430,Wired Headphones,2,11.99,2019-07-26 12:26:00,259 Lincoln St, Austin,TX,73301 +225431,Bose SoundSport Headphones,1,99.99,2019-07-17 06:27:00,59 Walnut St, San Francisco,CA,94016 +225432,34in Ultrawide Monitor,1,379.99,2019-07-30 14:18:00,199 Maple St, San Francisco,CA,94016 +225433,Apple Airpods Headphones,1,150.0,2019-07-20 17:41:00,722 Spruce St, San Francisco,CA,94016 +225434,Lightning Charging Cable,1,14.95,2019-07-24 20:10:00,92 Elm St, Los Angeles,CA,90001 +225435,AAA Batteries (4-pack),1,2.99,2019-07-17 12:03:00,157 1st St, San Francisco,CA,94016 +225436,USB-C Charging Cable,1,11.95,2019-07-26 11:40:00,294 Lakeview St, Boston,MA,02215 +225437,Wired Headphones,1,11.99,2019-07-06 13:22:00,99 Adams St, San Francisco,CA,94016 +225438,USB-C Charging Cable,1,11.95,2019-07-02 12:47:00,27 South St, San Francisco,CA,94016 +225439,ThinkPad Laptop,1,999.99,2019-07-13 13:45:00,944 Park St, Austin,TX,73301 +225440,USB-C Charging Cable,1,11.95,2019-07-18 10:00:00,667 Cherry St, Atlanta,GA,30301 +225441,34in Ultrawide Monitor,1,379.99,2019-07-12 01:59:00,757 4th St, Atlanta,GA,30301 +225442,Wired Headphones,1,11.99,2019-07-06 17:53:00,103 Lake St, San Francisco,CA,94016 +225443,Lightning Charging Cable,1,14.95,2019-07-26 22:30:00,42 4th St, Portland,OR,97035 +225444,ThinkPad Laptop,1,999.99,2019-07-08 11:10:00,121 Main St, New York City,NY,10001 +225444,Apple Airpods Headphones,1,150.0,2019-07-08 11:10:00,121 Main St, New York City,NY,10001 +225445,AA Batteries (4-pack),1,3.84,2019-07-15 17:15:00,753 River St, Los Angeles,CA,90001 +225446,USB-C Charging Cable,1,11.95,2019-07-31 22:13:00,413 Spruce St, Los Angeles,CA,90001 +225447,Bose SoundSport Headphones,1,99.99,2019-07-03 12:40:00,381 6th St, Los Angeles,CA,90001 +225448,USB-C Charging Cable,1,11.95,2019-07-26 17:41:00,906 Cedar St, San Francisco,CA,94016 +225449,LG Dryer,1,600.0,2019-07-19 15:13:00,290 Spruce St, Atlanta,GA,30301 +225450,Lightning Charging Cable,1,14.95,2019-07-19 09:11:00,416 Maple St, San Francisco,CA,94016 +225451,USB-C Charging Cable,1,11.95,2019-07-28 19:29:00,665 7th St, Seattle,WA,98101 +225452,Apple Airpods Headphones,1,150.0,2019-07-06 01:48:00,837 2nd St, Boston,MA,02215 +225453,USB-C Charging Cable,1,11.95,2019-07-06 10:02:00,105 Lincoln St, San Francisco,CA,94016 +225454,AA Batteries (4-pack),1,3.84,2019-07-25 17:49:00,861 Ridge St, San Francisco,CA,94016 +225455,Vareebadd Phone,1,400.0,2019-07-09 21:18:00,198 Cedar St, Los Angeles,CA,90001 +225456,Apple Airpods Headphones,1,150.0,2019-07-22 21:43:00,894 5th St, Boston,MA,02215 +225457,iPhone,1,700.0,2019-07-18 14:46:00,130 9th St, Los Angeles,CA,90001 +225458,ThinkPad Laptop,1,999.99,2019-07-16 19:38:00,785 10th St, Atlanta,GA,30301 +225459,Lightning Charging Cable,1,14.95,2019-07-11 23:49:00,388 Sunset St, Dallas,TX,75001 +225460,Bose SoundSport Headphones,1,99.99,2019-07-23 16:45:00,315 4th St, Seattle,WA,98101 +225461,20in Monitor,1,109.99,2019-07-22 13:21:00,777 7th St, Los Angeles,CA,90001 +225462,Apple Airpods Headphones,1,150.0,2019-07-14 11:15:00,676 11th St, San Francisco,CA,94016 +225463,Vareebadd Phone,1,400.0,2019-07-14 23:47:00,593 Chestnut St, San Francisco,CA,94016 +225464,20in Monitor,1,109.99,2019-07-18 13:09:00,862 Adams St, Seattle,WA,98101 +225465,Apple Airpods Headphones,1,150.0,2019-07-12 21:44:00,758 7th St, New York City,NY,10001 +225466,Wired Headphones,1,11.99,2019-07-05 07:51:00,200 Willow St, Los Angeles,CA,90001 +225467,Wired Headphones,1,11.99,2019-07-20 13:09:00,995 14th St, Dallas,TX,75001 +225468,iPhone,1,700.0,2019-07-16 15:25:00,878 1st St, Austin,TX,73301 +225469,AA Batteries (4-pack),2,3.84,2019-07-01 12:08:00,663 Dogwood St, Boston,MA,02215 +225470,Wired Headphones,1,11.99,2019-07-18 13:41:00,124 Cherry St, Boston,MA,02215 +225471,AA Batteries (4-pack),1,3.84,2019-07-25 09:25:00,228 Wilson St, New York City,NY,10001 +225472,Bose SoundSport Headphones,1,99.99,2019-07-03 21:38:00,623 Hickory St, San Francisco,CA,94016 +225473,LG Dryer,1,600.0,2019-07-12 17:21:00,536 South St, Atlanta,GA,30301 +225474,Lightning Charging Cable,1,14.95,2019-07-30 07:43:00,112 River St, Los Angeles,CA,90001 +225475,USB-C Charging Cable,1,11.95,2019-07-21 08:42:00,858 2nd St, San Francisco,CA,94016 +225476,Flatscreen TV,1,300.0,2019-07-31 15:16:00,64 14th St, Austin,TX,73301 +225477,USB-C Charging Cable,1,11.95,2019-07-05 23:23:00,311 Cedar St, San Francisco,CA,94016 +225478,27in 4K Gaming Monitor,1,389.99,2019-07-22 16:58:00,42 Sunset St, Boston,MA,02215 +225479,iPhone,1,700.0,2019-07-04 21:16:00,624 Center St, San Francisco,CA,94016 +225480,Wired Headphones,1,11.99,2019-07-27 20:20:00,708 1st St, Portland,OR,97035 +225481,AAA Batteries (4-pack),3,2.99,2019-07-18 10:03:00,819 Highland St, Dallas,TX,75001 +225481,AAA Batteries (4-pack),1,2.99,2019-07-18 10:03:00,819 Highland St, Dallas,TX,75001 +225482,Lightning Charging Cable,1,14.95,2019-07-18 11:02:00,251 Madison St, Seattle,WA,98101 +225483,Lightning Charging Cable,1,14.95,2019-07-28 00:25:00,788 River St, Seattle,WA,98101 +225484,USB-C Charging Cable,2,11.95,2019-07-04 23:36:00,799 Wilson St, Boston,MA,02215 +225485,AAA Batteries (4-pack),1,2.99,2019-07-10 09:50:00,803 Chestnut St, Los Angeles,CA,90001 +225486,Lightning Charging Cable,1,14.95,2019-07-12 21:18:00,124 Willow St, Los Angeles,CA,90001 +225487,AA Batteries (4-pack),1,3.84,2019-07-25 05:43:00,35 Park St, Los Angeles,CA,90001 +225488,Wired Headphones,1,11.99,2019-07-06 15:56:00,931 Lakeview St, Los Angeles,CA,90001 +225489,Vareebadd Phone,1,400.0,2019-07-16 09:26:00,509 9th St, San Francisco,CA,94016 +225490,USB-C Charging Cable,1,11.95,2019-07-05 17:54:00,986 Center St, Boston,MA,02215 +225491,27in 4K Gaming Monitor,1,389.99,2019-07-31 20:49:00,53 10th St, Portland,ME,04101 +225492,34in Ultrawide Monitor,1,379.99,2019-07-10 00:30:00,821 Washington St, Portland,OR,97035 +225493,USB-C Charging Cable,1,11.95,2019-07-04 12:08:00,580 Maple St, Los Angeles,CA,90001 +225494,27in 4K Gaming Monitor,1,389.99,2019-07-24 07:10:00,163 Dogwood St, New York City,NY,10001 +225494,Bose SoundSport Headphones,1,99.99,2019-07-24 07:10:00,163 Dogwood St, New York City,NY,10001 +225495,Lightning Charging Cable,1,14.95,2019-07-01 10:40:00,147 Park St, New York City,NY,10001 +225496,Wired Headphones,1,11.99,2019-07-10 23:49:00,934 Lake St, Seattle,WA,98101 +225497,Wired Headphones,1,11.99,2019-07-11 21:10:00,650 14th St, Dallas,TX,75001 +225498,AAA Batteries (4-pack),5,2.99,2019-07-14 13:45:00,888 Dogwood St, San Francisco,CA,94016 +225499,Apple Airpods Headphones,1,150.0,2019-07-26 20:55:00,139 4th St, San Francisco,CA,94016 +225500,AAA Batteries (4-pack),1,2.99,2019-07-06 12:09:00,337 Wilson St, Boston,MA,02215 +225501,iPhone,1,700.0,2019-07-10 13:50:00,647 13th St, Seattle,WA,98101 +225502,Macbook Pro Laptop,1,1700.0,2019-07-17 21:30:00,541 Spruce St, Austin,TX,73301 +225503,AAA Batteries (4-pack),1,2.99,2019-07-06 21:04:00,849 Meadow St, Dallas,TX,75001 +225504,AAA Batteries (4-pack),1,2.99,2019-07-02 10:03:00,355 Sunset St, Seattle,WA,98101 +225505,Wired Headphones,1,11.99,2019-07-09 19:20:00,167 Forest St, San Francisco,CA,94016 +225506,Wired Headphones,1,11.99,2019-07-28 08:42:00,538 Johnson St, New York City,NY,10001 +225507,Apple Airpods Headphones,1,150.0,2019-07-02 15:26:00,133 8th St, Los Angeles,CA,90001 +225508,Flatscreen TV,1,300.0,2019-07-13 23:18:00,648 14th St, Los Angeles,CA,90001 +225509,Lightning Charging Cable,1,14.95,2019-07-17 20:19:00,98 North St, New York City,NY,10001 +225510,34in Ultrawide Monitor,1,379.99,2019-07-05 09:34:00,884 13th St, Austin,TX,73301 +225511,USB-C Charging Cable,1,11.95,2019-07-01 22:27:00,43 Jackson St, Dallas,TX,75001 +225512,AAA Batteries (4-pack),1,2.99,2019-07-24 09:00:00,628 Highland St, Los Angeles,CA,90001 +225513,Wired Headphones,1,11.99,2019-07-12 17:57:00,619 Meadow St, San Francisco,CA,94016 +225514,AAA Batteries (4-pack),1,2.99,2019-07-04 12:12:00,474 Johnson St, San Francisco,CA,94016 +225515,USB-C Charging Cable,1,11.95,2019-07-25 10:59:00,913 Jefferson St, Boston,MA,02215 +225516,Lightning Charging Cable,1,14.95,2019-07-22 19:00:00,156 Highland St, San Francisco,CA,94016 +225517,AAA Batteries (4-pack),1,2.99,2019-07-24 10:41:00,333 Madison St, Dallas,TX,75001 +225517,Lightning Charging Cable,1,14.95,2019-07-24 10:41:00,333 Madison St, Dallas,TX,75001 +225518,Bose SoundSport Headphones,1,99.99,2019-07-24 15:46:00,364 1st St, Atlanta,GA,30301 +225519,Bose SoundSport Headphones,1,99.99,2019-07-24 00:45:00,816 5th St, New York City,NY,10001 +225520,AAA Batteries (4-pack),1,2.99,2019-07-01 22:25:00,31 Willow St, San Francisco,CA,94016 +225521,USB-C Charging Cable,1,11.95,2019-07-28 00:53:00,653 Lakeview St, Atlanta,GA,30301 +225522,27in FHD Monitor,1,149.99,2019-07-24 21:14:00,881 5th St, Seattle,WA,98101 +225523,Bose SoundSport Headphones,1,99.99,2019-07-18 13:35:00,279 Maple St, San Francisco,CA,94016 +225524,Lightning Charging Cable,1,14.95,2019-07-23 06:33:00,702 Chestnut St, San Francisco,CA,94016 +225525,Lightning Charging Cable,1,14.95,2019-07-02 16:35:00,142 7th St, New York City,NY,10001 +225526,AA Batteries (4-pack),2,3.84,2019-07-21 11:29:00,751 Ridge St, San Francisco,CA,94016 +225527,iPhone,1,700.0,2019-07-03 20:38:00,916 Maple St, San Francisco,CA,94016 +225528,Lightning Charging Cable,1,14.95,2019-07-12 20:51:00,36 Highland St, San Francisco,CA,94016 +225529,Google Phone,1,600.0,2019-07-30 23:54:00,418 Ridge St, Portland,OR,97035 +225530,27in 4K Gaming Monitor,1,389.99,2019-07-02 07:59:00,1 Highland St, Portland,OR,97035 +225531,AA Batteries (4-pack),1,3.84,2019-07-08 19:09:00,296 North St, San Francisco,CA,94016 +225532,Lightning Charging Cable,1,14.95,2019-07-23 21:47:00,664 4th St, Atlanta,GA,30301 +225533,Flatscreen TV,1,300.0,2019-07-28 13:56:00,880 River St, New York City,NY,10001 +225534,Flatscreen TV,1,300.0,2019-07-16 14:43:00,753 Lake St, Dallas,TX,75001 +225535,USB-C Charging Cable,1,11.95,2019-07-23 13:42:00,648 Maple St, New York City,NY,10001 +225536,ThinkPad Laptop,1,999.99,2019-07-14 01:00:00,561 North St, Boston,MA,02215 +225537,Bose SoundSport Headphones,1,99.99,2019-07-04 19:05:00,125 Wilson St, San Francisco,CA,94016 +225538,27in 4K Gaming Monitor,1,389.99,2019-07-19 22:13:00,461 12th St, Atlanta,GA,30301 +225539,USB-C Charging Cable,1,11.95,2019-07-03 20:20:00,70 Willow St, Seattle,WA,98101 +225540,AA Batteries (4-pack),1,3.84,2019-07-18 11:32:00,346 Jackson St, Los Angeles,CA,90001 +225541,27in 4K Gaming Monitor,1,389.99,2019-08-01 01:15:00,480 Spruce St, Los Angeles,CA,90001 +225542,AAA Batteries (4-pack),2,2.99,2019-07-18 08:15:00,672 Cedar St, San Francisco,CA,94016 +225543,AAA Batteries (4-pack),2,2.99,2019-07-28 14:52:00,32 1st St, Seattle,WA,98101 +225543,27in FHD Monitor,1,149.99,2019-07-28 14:52:00,32 1st St, Seattle,WA,98101 +225544,Apple Airpods Headphones,1,150.0,2019-07-24 19:06:00,283 Highland St, Dallas,TX,75001 +225545,USB-C Charging Cable,1,11.95,2019-07-06 09:09:00,323 Main St, San Francisco,CA,94016 +225546,Vareebadd Phone,1,400.0,2019-07-16 21:50:00,671 4th St, Austin,TX,73301 +225547,Lightning Charging Cable,1,14.95,2019-07-16 18:55:00,283 Elm St, San Francisco,CA,94016 +225548,AAA Batteries (4-pack),1,2.99,2019-07-11 11:31:00,473 9th St, San Francisco,CA,94016 +225549,Bose SoundSport Headphones,1,99.99,2019-07-01 18:05:00,60 Dogwood St, San Francisco,CA,94016 +225550,USB-C Charging Cable,1,11.95,2019-07-28 20:15:00,661 7th St, Dallas,TX,75001 +225551,AA Batteries (4-pack),1,3.84,2019-07-16 14:58:00,480 Chestnut St, Dallas,TX,75001 +225552,Bose SoundSport Headphones,1,99.99,2019-07-24 11:53:00,540 Center St, New York City,NY,10001 +225553,USB-C Charging Cable,1,11.95,2019-07-01 11:59:00,637 4th St, San Francisco,CA,94016 +225554,34in Ultrawide Monitor,1,379.99,2019-07-11 20:08:00,61 South St, San Francisco,CA,94016 +225555,USB-C Charging Cable,1,11.95,2019-07-02 12:41:00,394 12th St, Los Angeles,CA,90001 +225556,Wired Headphones,3,11.99,2019-07-29 09:33:00,63 Spruce St, Portland,OR,97035 +225557,Apple Airpods Headphones,1,150.0,2019-07-28 10:52:00,462 Center St, San Francisco,CA,94016 +225558,Lightning Charging Cable,1,14.95,2019-07-19 21:45:00,627 Forest St, Boston,MA,02215 +225559,Wired Headphones,1,11.99,2019-07-30 17:31:00,65 Cedar St, Boston,MA,02215 +225560,Apple Airpods Headphones,1,150.0,2019-07-21 19:45:00,200 1st St, New York City,NY,10001 +225561,AAA Batteries (4-pack),1,2.99,2019-07-26 09:56:00,176 River St, Boston,MA,02215 +225562,USB-C Charging Cable,1,11.95,2019-07-15 12:11:00,398 5th St, Boston,MA,02215 +225563,34in Ultrawide Monitor,1,379.99,2019-07-06 18:27:00,995 Sunset St, Los Angeles,CA,90001 +225564,Flatscreen TV,1,300.0,2019-07-30 11:56:00,212 14th St, Los Angeles,CA,90001 +225565,Apple Airpods Headphones,1,150.0,2019-07-23 22:06:00,551 8th St, Dallas,TX,75001 +225566,27in FHD Monitor,1,149.99,2019-07-27 16:18:00,653 Cherry St, Dallas,TX,75001 +225567,Bose SoundSport Headphones,1,99.99,2019-07-19 14:49:00,480 Willow St, New York City,NY,10001 +225568,AAA Batteries (4-pack),1,2.99,2019-07-19 20:47:00,165 South St, Boston,MA,02215 +225569,Wired Headphones,1,11.99,2019-07-25 13:44:00,18 Ridge St, Dallas,TX,75001 +225570,Lightning Charging Cable,1,14.95,2019-07-01 19:00:00,459 5th St, Seattle,WA,98101 +225571,Apple Airpods Headphones,1,150.0,2019-07-20 04:53:00,500 Cherry St, Los Angeles,CA,90001 +225572,Lightning Charging Cable,1,14.95,2019-07-19 10:11:00,213 13th St, San Francisco,CA,94016 +225573,AAA Batteries (4-pack),1,2.99,2019-07-11 19:32:00,498 9th St, San Francisco,CA,94016 +225574,AAA Batteries (4-pack),1,2.99,2019-07-14 21:52:00,427 Walnut St, Seattle,WA,98101 +225575,Wired Headphones,1,11.99,2019-07-25 17:53:00,681 13th St, San Francisco,CA,94016 +225576,Bose SoundSport Headphones,1,99.99,2019-07-27 17:56:00,376 Chestnut St, New York City,NY,10001 +225577,AA Batteries (4-pack),2,3.84,2019-07-15 08:30:00,611 7th St, San Francisco,CA,94016 +225578,Google Phone,1,600.0,2019-07-14 10:39:00,470 Church St, Portland,ME,04101 +225578,USB-C Charging Cable,1,11.95,2019-07-14 10:39:00,470 Church St, Portland,ME,04101 +225579,Apple Airpods Headphones,1,150.0,2019-07-04 08:09:00,744 Meadow St, Los Angeles,CA,90001 +225580,Lightning Charging Cable,1,14.95,2019-07-20 12:46:00,699 Jefferson St, New York City,NY,10001 +225581,34in Ultrawide Monitor,1,379.99,2019-07-12 13:45:00,168 13th St, Portland,OR,97035 +225582,Lightning Charging Cable,1,14.95,2019-07-01 20:17:00,324 1st St, Dallas,TX,75001 +225583,AA Batteries (4-pack),1,3.84,2019-07-15 12:53:00,491 Wilson St, Los Angeles,CA,90001 +225584,Lightning Charging Cable,1,14.95,2019-07-27 12:13:00,839 6th St, Austin,TX,73301 +225585,27in FHD Monitor,1,149.99,2019-07-30 18:05:00,775 8th St, Dallas,TX,75001 +225586,34in Ultrawide Monitor,1,379.99,2019-07-11 11:54:00,576 8th St, Portland,ME,04101 +225587,Wired Headphones,1,11.99,2019-07-09 16:14:00,531 Chestnut St, San Francisco,CA,94016 +225588,Apple Airpods Headphones,1,150.0,2019-07-24 23:34:00,431 Meadow St, Los Angeles,CA,90001 +225589,Wired Headphones,1,11.99,2019-07-27 17:41:00,644 Lake St, New York City,NY,10001 +225590,Bose SoundSport Headphones,1,99.99,2019-07-22 14:31:00,743 2nd St, San Francisco,CA,94016 +225591,Lightning Charging Cable,2,14.95,2019-07-27 16:14:00,79 Ridge St, San Francisco,CA,94016 +225592,AA Batteries (4-pack),2,3.84,2019-07-08 12:38:00,545 Lincoln St, New York City,NY,10001 +225593,Lightning Charging Cable,1,14.95,2019-07-08 15:14:00,351 Dogwood St, San Francisco,CA,94016 +225594,Lightning Charging Cable,1,14.95,2019-07-17 08:46:00,403 6th St, San Francisco,CA,94016 +225595,Apple Airpods Headphones,1,150.0,2019-07-27 13:48:00,404 11th St, Portland,OR,97035 +225596,27in FHD Monitor,1,149.99,2019-07-21 14:09:00,120 Dogwood St, Dallas,TX,75001 +225597,Bose SoundSport Headphones,1,99.99,2019-07-02 21:12:00,965 Cherry St, Austin,TX,73301 +225598,Apple Airpods Headphones,1,150.0,2019-07-07 18:59:00,140 Adams St, Portland,OR,97035 +225599,27in FHD Monitor,1,149.99,2019-07-06 13:57:00,979 Highland St, Boston,MA,02215 +225600,27in 4K Gaming Monitor,1,389.99,2019-07-12 00:37:00,653 Lake St, San Francisco,CA,94016 +225601,Lightning Charging Cable,1,14.95,2019-07-28 22:02:00,673 Lake St, Boston,MA,02215 +225602,AAA Batteries (4-pack),1,2.99,2019-07-05 21:51:00,782 8th St, Boston,MA,02215 +225603,USB-C Charging Cable,1,11.95,2019-07-06 20:29:00,203 Highland St, Seattle,WA,98101 +225604,AAA Batteries (4-pack),3,2.99,2019-07-02 16:11:00,589 Dogwood St, Seattle,WA,98101 +225605,Apple Airpods Headphones,1,150.0,2019-07-29 13:37:00,34 Chestnut St, San Francisco,CA,94016 +225606,USB-C Charging Cable,1,11.95,2019-07-31 19:01:00,376 Dogwood St, Portland,OR,97035 +225607,Bose SoundSport Headphones,1,99.99,2019-07-23 10:58:00,865 8th St, Dallas,TX,75001 +225608,USB-C Charging Cable,1,11.95,2019-07-07 12:52:00,172 Jackson St, Portland,OR,97035 +225609,27in FHD Monitor,1,149.99,2019-07-22 20:45:00,831 Hill St, San Francisco,CA,94016 +225610,Apple Airpods Headphones,1,150.0,2019-07-06 07:48:00,70 Highland St, Los Angeles,CA,90001 +225611,Lightning Charging Cable,1,14.95,2019-07-20 15:56:00,421 11th St, Los Angeles,CA,90001 +225612,USB-C Charging Cable,3,11.95,2019-07-23 10:27:00,522 Hill St, Los Angeles,CA,90001 +225613,LG Washing Machine,1,600.0,2019-07-16 12:54:00,830 1st St, San Francisco,CA,94016 +225614,Lightning Charging Cable,1,14.95,2019-07-10 14:38:00,844 8th St, Austin,TX,73301 +225615,Wired Headphones,1,11.99,2019-07-01 15:15:00,860 Hickory St, Los Angeles,CA,90001 +225616,USB-C Charging Cable,1,11.95,2019-07-29 14:11:00,720 Johnson St, New York City,NY,10001 +225617,Lightning Charging Cable,1,14.95,2019-07-28 11:06:00,803 Jackson St, Dallas,TX,75001 +225618,AA Batteries (4-pack),1,3.84,2019-07-06 17:07:00,569 North St, Los Angeles,CA,90001 +225619,27in FHD Monitor,1,149.99,2019-07-07 11:52:00,474 10th St, Los Angeles,CA,90001 +225620,Bose SoundSport Headphones,1,99.99,2019-07-14 20:02:00,206 River St, Portland,OR,97035 +225621,34in Ultrawide Monitor,1,379.99,2019-07-15 20:31:00,672 Church St, San Francisco,CA,94016 +225622,27in 4K Gaming Monitor,1,389.99,2019-07-20 17:38:00,319 12th St, Boston,MA,02215 +225623,Lightning Charging Cable,1,14.95,2019-07-01 12:31:00,804 Jefferson St, San Francisco,CA,94016 +225624,AAA Batteries (4-pack),2,2.99,2019-07-18 10:31:00,53 Dogwood St, Seattle,WA,98101 +225625,Bose SoundSport Headphones,1,99.99,2019-07-09 20:31:00,912 Lake St, Portland,OR,97035 +225626,34in Ultrawide Monitor,1,379.99,2019-07-19 09:57:00,456 Cherry St, Austin,TX,73301 +225627,AA Batteries (4-pack),1,3.84,2019-07-23 17:41:00,727 Hickory St, Los Angeles,CA,90001 +225628,AAA Batteries (4-pack),1,2.99,2019-07-09 09:08:00,828 River St, New York City,NY,10001 +225629,AAA Batteries (4-pack),2,2.99,2019-07-09 18:43:00,227 Chestnut St, Austin,TX,73301 +225630,Flatscreen TV,1,300.0,2019-07-07 15:00:00,531 Center St, New York City,NY,10001 +225631,Macbook Pro Laptop,1,1700.0,2019-07-30 14:46:00,978 Walnut St, New York City,NY,10001 +225632,USB-C Charging Cable,1,11.95,2019-07-25 00:11:00,467 Center St, San Francisco,CA,94016 +225633,Bose SoundSport Headphones,1,99.99,2019-07-31 12:21:00,795 8th St, San Francisco,CA,94016 +225634,Wired Headphones,1,11.99,2019-07-14 13:58:00,102 5th St, Los Angeles,CA,90001 +225635,Lightning Charging Cable,2,14.95,2019-07-31 06:35:00,763 Washington St, Los Angeles,CA,90001 +225636,AA Batteries (4-pack),1,3.84,2019-07-11 16:27:00,621 Jackson St, New York City,NY,10001 +225637,27in FHD Monitor,1,149.99,2019-07-09 14:11:00,257 9th St, Seattle,WA,98101 +225638,Bose SoundSport Headphones,1,99.99,2019-07-31 13:30:00,508 Lincoln St, San Francisco,CA,94016 +225639,Wired Headphones,1,11.99,2019-07-05 17:21:00,201 Park St, New York City,NY,10001 +225640,20in Monitor,1,109.99,2019-07-01 20:18:00,772 Sunset St, San Francisco,CA,94016 +225641,Lightning Charging Cable,1,14.95,2019-07-21 11:50:00,617 9th St, Austin,TX,73301 +225642,Wired Headphones,1,11.99,2019-07-08 21:21:00,341 14th St, Atlanta,GA,30301 +225643,Apple Airpods Headphones,1,150.0,2019-07-07 07:37:00,906 11th St, Atlanta,GA,30301 +225644,Macbook Pro Laptop,1,1700.0,2019-07-16 18:14:00,766 Center St, San Francisco,CA,94016 +225645,Wired Headphones,1,11.99,2019-07-27 16:07:00,489 Spruce St, Los Angeles,CA,90001 +225646,Lightning Charging Cable,1,14.95,2019-07-27 10:07:00,348 Meadow St, Los Angeles,CA,90001 +225647,Bose SoundSport Headphones,1,99.99,2019-07-01 21:48:00,471 Washington St, New York City,NY,10001 +225648,20in Monitor,1,109.99,2019-07-23 11:59:00,882 13th St, Portland,OR,97035 +225649,AA Batteries (4-pack),1,3.84,2019-07-28 20:32:00,756 Dogwood St, Los Angeles,CA,90001 +225650,Apple Airpods Headphones,1,150.0,2019-07-31 14:49:00,891 Sunset St, Austin,TX,73301 +225651,USB-C Charging Cable,1,11.95,2019-07-04 10:59:00,217 12th St, Los Angeles,CA,90001 +225652,Wired Headphones,1,11.99,2019-07-09 12:14:00,205 14th St, Seattle,WA,98101 +225653,Bose SoundSport Headphones,1,99.99,2019-07-30 17:58:00,581 Cedar St, San Francisco,CA,94016 +225654,AA Batteries (4-pack),1,3.84,2019-07-02 01:37:00,992 Church St, Los Angeles,CA,90001 +225655,20in Monitor,1,109.99,2019-07-13 17:18:00,160 Washington St, Boston,MA,02215 +225656,ThinkPad Laptop,1,999.99,2019-07-01 22:12:00,736 Washington St, San Francisco,CA,94016 +225657,USB-C Charging Cable,2,11.95,2019-07-24 13:38:00,50 7th St, Portland,OR,97035 +225658,USB-C Charging Cable,1,11.95,2019-08-01 01:14:00,592 Forest St, Los Angeles,CA,90001 +225659,AAA Batteries (4-pack),1,2.99,2019-07-31 13:14:00,618 Lincoln St, San Francisco,CA,94016 +225660,Vareebadd Phone,1,400.0,2019-07-28 12:37:00,116 Chestnut St, Boston,MA,02215 +225661,Lightning Charging Cable,1,14.95,2019-07-09 20:41:00,160 Washington St, Dallas,TX,75001 +225662,AA Batteries (4-pack),1,3.84,2019-07-01 16:07:00,88 Cherry St, Atlanta,GA,30301 +225663,USB-C Charging Cable,1,11.95,2019-07-26 22:58:00,720 Sunset St, Portland,ME,04101 +225664,Macbook Pro Laptop,1,1700.0,2019-07-22 17:44:00,120 South St, Dallas,TX,75001 +225665,AAA Batteries (4-pack),2,2.99,2019-07-29 13:05:00,632 2nd St, Portland,OR,97035 +225666,Lightning Charging Cable,1,14.95,2019-07-15 18:03:00,743 1st St, Los Angeles,CA,90001 +225667,Lightning Charging Cable,1,14.95,2019-07-26 14:17:00,536 Johnson St, San Francisco,CA,94016 +225668,AA Batteries (4-pack),3,3.84,2019-07-23 23:40:00,481 Adams St, New York City,NY,10001 +225669,Flatscreen TV,1,300.0,2019-07-01 09:03:00,427 Wilson St, Los Angeles,CA,90001 +225670,Wired Headphones,2,11.99,2019-07-10 09:22:00,184 Forest St, San Francisco,CA,94016 +225671,AAA Batteries (4-pack),1,2.99,2019-07-09 14:15:00,567 Park St, San Francisco,CA,94016 +225672,AA Batteries (4-pack),1,3.84,2019-07-20 19:51:00,441 Lake St, Portland,ME,04101 +225673,USB-C Charging Cable,1,11.95,2019-07-21 14:29:00,322 5th St, San Francisco,CA,94016 +225674,Bose SoundSport Headphones,1,99.99,2019-07-06 09:28:00,470 Center St, Atlanta,GA,30301 +225675,Wired Headphones,1,11.99,2019-07-29 11:45:00,573 Lincoln St, San Francisco,CA,94016 +225676,AA Batteries (4-pack),1,3.84,2019-07-26 15:00:00,710 Pine St, Seattle,WA,98101 +225677,USB-C Charging Cable,1,11.95,2019-07-05 19:32:00,90 2nd St, Dallas,TX,75001 +225678,USB-C Charging Cable,1,11.95,2019-07-29 22:52:00,626 West St, Atlanta,GA,30301 +225679,AAA Batteries (4-pack),1,2.99,2019-07-09 11:02:00,996 10th St, San Francisco,CA,94016 +225680,iPhone,1,700.0,2019-07-10 12:24:00,492 Chestnut St, Seattle,WA,98101 +225681,Apple Airpods Headphones,1,150.0,2019-07-05 00:04:00,496 1st St, Boston,MA,02215 +225682,iPhone,1,700.0,2019-07-04 16:29:00,344 Lake St, Los Angeles,CA,90001 +225683,34in Ultrawide Monitor,1,379.99,2019-07-11 16:09:00,795 West St, Portland,OR,97035 +225684,27in 4K Gaming Monitor,1,389.99,2019-07-16 10:41:00,811 River St, Boston,MA,02215 +225685,Bose SoundSport Headphones,1,99.99,2019-07-29 15:57:00,22 Highland St, Atlanta,GA,30301 +225686,Vareebadd Phone,1,400.0,2019-07-07 17:44:00,840 Wilson St, San Francisco,CA,94016 +225686,USB-C Charging Cable,1,11.95,2019-07-07 17:44:00,840 Wilson St, San Francisco,CA,94016 +225686,Wired Headphones,1,11.99,2019-07-07 17:44:00,840 Wilson St, San Francisco,CA,94016 +225687,Wired Headphones,2,11.99,2019-07-04 17:46:00,347 2nd St, Los Angeles,CA,90001 +225688,USB-C Charging Cable,1,11.95,2019-07-21 00:46:00,122 Spruce St, New York City,NY,10001 +225689,Wired Headphones,1,11.99,2019-07-03 09:18:00,328 11th St, Seattle,WA,98101 +225690,Apple Airpods Headphones,1,150.0,2019-07-03 17:48:00,743 Meadow St, Portland,OR,97035 +225691,Lightning Charging Cable,3,14.95,2019-07-11 17:55:00,585 11th St, Austin,TX,73301 +225692,Wired Headphones,1,11.99,2019-07-12 22:59:00,793 Madison St, Atlanta,GA,30301 +225693,AA Batteries (4-pack),1,3.84,2019-07-25 14:14:00,954 Adams St, New York City,NY,10001 +225694,34in Ultrawide Monitor,1,379.99,2019-07-20 20:51:00,239 1st St, Portland,OR,97035 +225695,Macbook Pro Laptop,1,1700.0,2019-07-18 16:24:00,80 Church St, San Francisco,CA,94016 +225696,AAA Batteries (4-pack),2,2.99,2019-07-07 00:13:00,791 6th St, New York City,NY,10001 +225697,USB-C Charging Cable,1,11.95,2019-07-20 11:05:00,177 Sunset St, Boston,MA,02215 +225698,AAA Batteries (4-pack),1,2.99,2019-07-13 16:33:00,536 Main St, Portland,ME,04101 +225699,USB-C Charging Cable,1,11.95,2019-07-18 17:22:00,153 Jackson St, Atlanta,GA,30301 +225700,iPhone,1,700.0,2019-07-17 17:52:00,849 West St, Seattle,WA,98101 +225701,USB-C Charging Cable,1,11.95,2019-07-11 21:12:00,516 Lincoln St, Los Angeles,CA,90001 +225702,ThinkPad Laptop,1,999.99,2019-07-06 17:06:00,315 8th St, Boston,MA,02215 +225703,ThinkPad Laptop,1,999.99,2019-07-06 20:33:00,780 North St, San Francisco,CA,94016 +225704,AA Batteries (4-pack),1,3.84,2019-07-26 23:53:00,404 Johnson St, Los Angeles,CA,90001 +225705,AA Batteries (4-pack),1,3.84,2019-07-12 23:43:00,220 Chestnut St, Atlanta,GA,30301 +225706,27in FHD Monitor,1,149.99,2019-07-09 18:52:00,462 Forest St, San Francisco,CA,94016 +225707,AA Batteries (4-pack),1,3.84,2019-07-10 06:27:00,2 Highland St, Portland,ME,04101 +225708,Macbook Pro Laptop,1,1700.0,2019-07-20 15:10:00,530 Washington St, San Francisco,CA,94016 +225709,iPhone,1,700.0,2019-07-21 14:29:00,129 Willow St, Austin,TX,73301 +225710,AA Batteries (4-pack),1,3.84,2019-07-12 22:31:00,627 Sunset St, Los Angeles,CA,90001 +225710,USB-C Charging Cable,1,11.95,2019-07-12 22:31:00,627 Sunset St, Los Angeles,CA,90001 +225711,AA Batteries (4-pack),1,3.84,2019-07-30 11:32:00,996 Madison St, San Francisco,CA,94016 +225712,34in Ultrawide Monitor,1,379.99,2019-07-24 18:49:00,724 North St, New York City,NY,10001 +225713,Apple Airpods Headphones,1,150.0,2019-07-03 09:46:00,625 Dogwood St, Atlanta,GA,30301 +225714,Wired Headphones,2,11.99,2019-07-29 11:48:00,170 11th St, San Francisco,CA,94016 +225715,Flatscreen TV,1,300.0,2019-07-27 20:18:00,14 West St, San Francisco,CA,94016 +225716,USB-C Charging Cable,1,11.95,2019-07-15 11:48:00,518 Washington St, Portland,OR,97035 +225717,AA Batteries (4-pack),1,3.84,2019-07-26 18:59:00,334 Wilson St, Boston,MA,02215 +225718,AA Batteries (4-pack),1,3.84,2019-07-26 09:47:00,112 2nd St, New York City,NY,10001 +225719,Lightning Charging Cable,1,14.95,2019-07-11 16:32:00,926 Jefferson St, San Francisco,CA,94016 +225720,Flatscreen TV,1,300.0,2019-07-25 20:22:00,844 Walnut St, San Francisco,CA,94016 +225721,AAA Batteries (4-pack),2,2.99,2019-07-25 15:53:00,30 12th St, San Francisco,CA,94016 +225722,Vareebadd Phone,1,400.0,2019-07-10 11:20:00,356 Elm St, San Francisco,CA,94016 +225723,27in FHD Monitor,1,149.99,2019-07-09 10:22:00,824 Hill St, Los Angeles,CA,90001 +225724,Google Phone,1,600.0,2019-07-04 16:18:00,393 13th St, Austin,TX,73301 +225725,AAA Batteries (4-pack),5,2.99,2019-07-30 00:17:00,929 14th St, Los Angeles,CA,90001 +225726,AA Batteries (4-pack),1,3.84,2019-07-03 20:24:00,116 Willow St, Boston,MA,02215 +225727,Lightning Charging Cable,1,14.95,2019-07-16 23:19:00,258 13th St, New York City,NY,10001 +225728,Bose SoundSport Headphones,1,99.99,2019-07-19 19:30:00,503 Elm St, Seattle,WA,98101 +225729,USB-C Charging Cable,1,11.95,2019-07-16 07:18:00,450 Church St, San Francisco,CA,94016 +225730,34in Ultrawide Monitor,1,379.99,2019-07-16 18:04:00,13 Maple St, New York City,NY,10001 +225731,AA Batteries (4-pack),1,3.84,2019-07-03 05:25:00,919 Jackson St, New York City,NY,10001 +225732,USB-C Charging Cable,1,11.95,2019-07-21 14:48:00,644 6th St, San Francisco,CA,94016 +225733,AAA Batteries (4-pack),1,2.99,2019-07-11 19:23:00,86 Highland St, San Francisco,CA,94016 +225734,27in FHD Monitor,1,149.99,2019-07-26 09:55:00,462 Cedar St, San Francisco,CA,94016 +225735,Apple Airpods Headphones,1,150.0,2019-07-01 19:51:00,31 Hickory St, San Francisco,CA,94016 +225736,Flatscreen TV,1,300.0,2019-07-27 18:36:00,678 Cherry St, Boston,MA,02215 +225737,AAA Batteries (4-pack),5,2.99,2019-07-28 12:24:00,384 12th St, Atlanta,GA,30301 +225738,34in Ultrawide Monitor,1,379.99,2019-07-11 18:58:00,349 Lake St, San Francisco,CA,94016 +225739,Apple Airpods Headphones,1,150.0,2019-07-05 20:03:00,874 Elm St, Los Angeles,CA,90001 +225740,USB-C Charging Cable,1,11.95,2019-07-17 21:09:00,165 Cedar St, New York City,NY,10001 +225741,AAA Batteries (4-pack),2,2.99,2019-07-09 14:10:00,891 Cedar St, Boston,MA,02215 +225742,Apple Airpods Headphones,1,150.0,2019-07-24 16:31:00,455 12th St, New York City,NY,10001 +225743,Lightning Charging Cable,1,14.95,2019-07-10 23:30:00,306 Lakeview St, Dallas,TX,75001 +225744,Flatscreen TV,1,300.0,2019-07-03 12:57:00,187 Church St, Portland,OR,97035 +225745,AAA Batteries (4-pack),2,2.99,2019-07-05 15:41:00,582 Forest St, Austin,TX,73301 +225746,USB-C Charging Cable,1,11.95,2019-07-28 22:34:00,279 Hill St, Austin,TX,73301 +225747,Lightning Charging Cable,1,14.95,2019-07-03 11:48:00,284 11th St, San Francisco,CA,94016 +225748,AAA Batteries (4-pack),1,2.99,2019-07-28 09:46:00,296 River St, Los Angeles,CA,90001 +225749,USB-C Charging Cable,1,11.95,2019-07-10 00:01:00,821 Hickory St, Austin,TX,73301 +225750,Wired Headphones,1,11.99,2019-07-07 21:33:00,764 Cherry St, San Francisco,CA,94016 +225751,Wired Headphones,2,11.99,2019-07-26 12:47:00,555 4th St, San Francisco,CA,94016 +225752,Wired Headphones,1,11.99,2019-07-30 18:53:00,414 Lakeview St, Los Angeles,CA,90001 +225753,Google Phone,1,600.0,2019-07-21 23:24:00,377 Maple St, New York City,NY,10001 +225754,USB-C Charging Cable,1,11.95,2019-07-06 15:41:00,376 7th St, Los Angeles,CA,90001 +225755,Lightning Charging Cable,1,14.95,2019-07-03 12:44:00,387 Pine St, Atlanta,GA,30301 +225756,Apple Airpods Headphones,1,150.0,2019-07-23 16:39:00,132 Jefferson St, Boston,MA,02215 +225757,Apple Airpods Headphones,1,150.0,2019-07-13 13:46:00,546 Lakeview St, Los Angeles,CA,90001 +225758,AAA Batteries (4-pack),6,2.99,2019-07-03 17:08:00,111 Park St, New York City,NY,10001 +225759,AA Batteries (4-pack),1,3.84,2019-07-14 13:33:00,402 Johnson St, San Francisco,CA,94016 +225760,Apple Airpods Headphones,1,150.0,2019-07-02 14:32:00,846 Hickory St, Seattle,WA,98101 +225761,Lightning Charging Cable,1,14.95,2019-07-05 17:15:00,640 Park St, San Francisco,CA,94016 +225762,AA Batteries (4-pack),2,3.84,2019-07-16 16:30:00,44 Johnson St, Boston,MA,02215 +225763,Apple Airpods Headphones,1,150.0,2019-07-24 15:27:00,266 Church St, San Francisco,CA,94016 +225764,Google Phone,1,600.0,2019-07-16 07:29:00,630 6th St, New York City,NY,10001 +225764,USB-C Charging Cable,1,11.95,2019-07-16 07:29:00,630 6th St, New York City,NY,10001 +225765,20in Monitor,2,109.99,2019-07-20 13:40:00,943 Washington St, San Francisco,CA,94016 +225766,27in 4K Gaming Monitor,1,389.99,2019-07-13 08:42:00,359 4th St, Seattle,WA,98101 +225766,Wired Headphones,2,11.99,2019-07-13 08:42:00,359 4th St, Seattle,WA,98101 +225767,Wired Headphones,1,11.99,2019-07-23 09:51:00,777 8th St, Dallas,TX,75001 +225768,Google Phone,1,600.0,2019-07-06 00:12:00,832 South St, Seattle,WA,98101 +225769,20in Monitor,1,109.99,2019-07-22 06:56:00,499 Hickory St, Seattle,WA,98101 +225770,Lightning Charging Cable,1,14.95,2019-07-15 23:34:00,391 Cedar St, Dallas,TX,75001 +225771,USB-C Charging Cable,1,11.95,2019-07-26 09:22:00,665 Willow St, Boston,MA,02215 +225772,ThinkPad Laptop,1,999.99,2019-07-18 14:23:00,387 Sunset St, Los Angeles,CA,90001 +225773,AAA Batteries (4-pack),1,2.99,2019-07-09 18:51:00,405 6th St, New York City,NY,10001 +225774,USB-C Charging Cable,2,11.95,2019-07-07 14:55:00,167 6th St, Atlanta,GA,30301 +225775,Apple Airpods Headphones,1,150.0,2019-07-13 13:09:00,604 Jefferson St, Los Angeles,CA,90001 +225776,AAA Batteries (4-pack),1,2.99,2019-07-27 10:22:00,350 Hickory St, San Francisco,CA,94016 +225777,Macbook Pro Laptop,1,1700.0,2019-07-09 10:07:00,725 12th St, San Francisco,CA,94016 +225778,Bose SoundSport Headphones,1,99.99,2019-07-28 19:09:00,799 11th St, Boston,MA,02215 +225779,USB-C Charging Cable,2,11.95,2019-07-20 18:36:00,685 8th St, New York City,NY,10001 +225780,USB-C Charging Cable,1,11.95,2019-07-12 12:05:00,270 River St, Boston,MA,02215 +225781,34in Ultrawide Monitor,1,379.99,2019-07-20 10:00:00,306 11th St, Atlanta,GA,30301 +225782,USB-C Charging Cable,1,11.95,2019-07-25 02:02:00,684 Meadow St, Los Angeles,CA,90001 +225783,Bose SoundSport Headphones,1,99.99,2019-07-13 10:18:00,742 Sunset St, Seattle,WA,98101 +225784,USB-C Charging Cable,1,11.95,2019-07-04 22:44:00,229 1st St, Boston,MA,02215 +225785,AA Batteries (4-pack),1,3.84,2019-07-16 13:07:00,580 West St, San Francisco,CA,94016 +225785,Wired Headphones,1,11.99,2019-07-16 13:07:00,580 West St, San Francisco,CA,94016 +225786,USB-C Charging Cable,1,11.95,2019-07-18 08:46:00,524 Elm St, Boston,MA,02215 +225787,Wired Headphones,1,11.99,2019-07-15 12:19:00,464 Washington St, Los Angeles,CA,90001 +225787,Bose SoundSport Headphones,1,99.99,2019-07-15 12:19:00,464 Washington St, Los Angeles,CA,90001 +225788,iPhone,1,700.0,2019-07-07 17:06:00,21 Cherry St, San Francisco,CA,94016 +225788,Lightning Charging Cable,2,14.95,2019-07-07 17:06:00,21 Cherry St, San Francisco,CA,94016 +225789,USB-C Charging Cable,1,11.95,2019-07-07 20:17:00,940 South St, Los Angeles,CA,90001 +225790,AA Batteries (4-pack),1,3.84,2019-07-14 17:02:00,400 6th St, New York City,NY,10001 +225791,USB-C Charging Cable,1,11.95,2019-07-25 17:32:00,959 Madison St, Boston,MA,02215 +225792,Wired Headphones,1,11.99,2019-07-02 10:22:00,534 Jefferson St, Dallas,TX,75001 +225793,Wired Headphones,1,11.99,2019-07-28 15:12:00,601 Main St, Atlanta,GA,30301 +225794,AA Batteries (4-pack),1,3.84,2019-07-24 21:40:00,967 South St, New York City,NY,10001 +225795,AA Batteries (4-pack),1,3.84,2019-07-09 10:41:00,328 Jackson St, Boston,MA,02215 +225796,Wired Headphones,1,11.99,2019-07-20 14:20:00,933 Washington St, Los Angeles,CA,90001 +225797,27in FHD Monitor,1,149.99,2019-07-04 15:00:00,704 1st St, Portland,ME,04101 +225798,AA Batteries (4-pack),1,3.84,2019-07-23 19:27:00,897 13th St, Atlanta,GA,30301 +225799,27in 4K Gaming Monitor,1,389.99,2019-07-30 22:17:00,332 9th St, New York City,NY,10001 +225800,Lightning Charging Cable,1,14.95,2019-07-18 21:09:00,229 Johnson St, Atlanta,GA,30301 +225801,34in Ultrawide Monitor,1,379.99,2019-07-14 11:34:00,975 West St, Portland,OR,97035 +225802,AA Batteries (4-pack),1,3.84,2019-07-23 06:36:00,391 6th St, San Francisco,CA,94016 +225803,Wired Headphones,1,11.99,2019-07-21 09:44:00,768 8th St, Atlanta,GA,30301 +225803,Macbook Pro Laptop,1,1700.0,2019-07-21 09:44:00,768 8th St, Atlanta,GA,30301 +225804,Vareebadd Phone,1,400.0,2019-07-27 04:47:00,762 11th St, Los Angeles,CA,90001 +225805,Wired Headphones,1,11.99,2019-07-21 19:26:00,283 2nd St, Dallas,TX,75001 +225806,AA Batteries (4-pack),2,3.84,2019-07-20 22:15:00,786 Lakeview St, Seattle,WA,98101 +225807,USB-C Charging Cable,1,11.95,2019-07-18 08:38:00,361 Maple St, San Francisco,CA,94016 +225808,Lightning Charging Cable,1,14.95,2019-07-29 12:43:00,196 Spruce St, San Francisco,CA,94016 +225809,iPhone,1,700.0,2019-07-18 21:56:00,441 Lincoln St, Atlanta,GA,30301 +225810,USB-C Charging Cable,1,11.95,2019-07-13 08:46:00,89 Cherry St, San Francisco,CA,94016 +225811,Macbook Pro Laptop,1,1700.0,2019-07-10 16:44:00,248 2nd St, Los Angeles,CA,90001 +225812,Bose SoundSport Headphones,1,99.99,2019-07-19 23:46:00,466 Lincoln St, Seattle,WA,98101 +225813,AA Batteries (4-pack),1,3.84,2019-07-20 12:53:00,165 Pine St, Los Angeles,CA,90001 +225814,AAA Batteries (4-pack),1,2.99,2019-07-06 08:30:00,293 1st St, Los Angeles,CA,90001 +225815,AA Batteries (4-pack),4,3.84,2019-07-10 19:26:00,344 Lakeview St, San Francisco,CA,94016 +225816,Lightning Charging Cable,1,14.95,2019-07-19 10:29:00,554 Forest St, Los Angeles,CA,90001 +225817,Lightning Charging Cable,1,14.95,2019-07-13 21:51:00,36 2nd St, New York City,NY,10001 +225818,Flatscreen TV,1,300.0,2019-07-10 21:00:00,873 Park St, San Francisco,CA,94016 +225819,20in Monitor,1,109.99,2019-07-11 21:08:00,249 7th St, New York City,NY,10001 +225820,AA Batteries (4-pack),1,3.84,2019-07-06 14:04:00,178 Walnut St, Austin,TX,73301 +225821,Bose SoundSport Headphones,1,99.99,2019-07-08 00:09:00,740 Church St, Dallas,TX,75001 +225822,USB-C Charging Cable,1,11.95,2019-07-07 00:06:00,548 4th St, Portland,ME,04101 +225823,USB-C Charging Cable,1,11.95,2019-07-28 13:31:00,41 Spruce St, Los Angeles,CA,90001 +225824,Lightning Charging Cable,1,14.95,2019-07-14 12:29:00,944 12th St, Seattle,WA,98101 +225825,Bose SoundSport Headphones,1,99.99,2019-07-20 11:54:00,350 West St, Seattle,WA,98101 +225826,Bose SoundSport Headphones,1,99.99,2019-07-12 09:41:00,601 Meadow St, Dallas,TX,75001 +225827,USB-C Charging Cable,1,11.95,2019-07-22 19:45:00,318 Hill St, Atlanta,GA,30301 +225828,Wired Headphones,1,11.99,2019-07-21 19:44:00,423 Jackson St, San Francisco,CA,94016 +225829,Bose SoundSport Headphones,1,99.99,2019-07-23 16:43:00,355 South St, Los Angeles,CA,90001 +225830,AAA Batteries (4-pack),1,2.99,2019-07-05 20:55:00,152 Lake St, New York City,NY,10001 +225831,Bose SoundSport Headphones,1,99.99,2019-07-24 17:31:00,321 Lakeview St, San Francisco,CA,94016 +225832,27in FHD Monitor,1,149.99,2019-07-21 20:19:00,357 Cherry St, Austin,TX,73301 +225833,AAA Batteries (4-pack),1,2.99,2019-07-11 18:30:00,708 13th St, San Francisco,CA,94016 +225834,Wired Headphones,1,11.99,2019-07-06 18:53:00,998 Lakeview St, Boston,MA,02215 +225834,Lightning Charging Cable,1,14.95,2019-07-06 18:53:00,998 Lakeview St, Boston,MA,02215 +225835,20in Monitor,1,109.99,2019-07-05 17:53:00,205 North St, Portland,OR,97035 +225836,Lightning Charging Cable,1,14.95,2019-07-11 14:02:00,467 Walnut St, Portland,ME,04101 +225837,Flatscreen TV,1,300.0,2019-07-17 12:13:00,245 Jackson St, Los Angeles,CA,90001 +225838,Apple Airpods Headphones,1,150.0,2019-07-06 11:37:00,435 Park St, San Francisco,CA,94016 +225839,Wired Headphones,1,11.99,2019-07-09 00:37:00,132 River St, San Francisco,CA,94016 +225840,AA Batteries (4-pack),1,3.84,2019-07-14 12:30:00,579 North St, Los Angeles,CA,90001 +225841,Wired Headphones,1,11.99,2019-07-28 19:50:00,805 Walnut St, Boston,MA,02215 +225842,ThinkPad Laptop,1,999.99,2019-07-17 19:09:00,644 Spruce St, Dallas,TX,75001 +225843,Wired Headphones,1,11.99,2019-07-21 14:12:00,345 Meadow St, Portland,OR,97035 +225844,Apple Airpods Headphones,1,150.0,2019-07-01 10:26:00,197 Hill St, San Francisco,CA,94016 +225845,USB-C Charging Cable,1,11.95,2019-07-04 10:51:00,528 4th St, Dallas,TX,75001 +225846,AA Batteries (4-pack),2,3.84,2019-07-26 06:26:00,336 Madison St, New York City,NY,10001 +225847,Apple Airpods Headphones,1,150.0,2019-07-03 20:06:00,676 North St, Dallas,TX,75001 +225848,Apple Airpods Headphones,1,150.0,2019-07-25 04:34:00,387 Sunset St, San Francisco,CA,94016 +225849,Bose SoundSport Headphones,1,99.99,2019-07-19 21:17:00,140 South St, Los Angeles,CA,90001 +225850,AA Batteries (4-pack),1,3.84,2019-07-16 22:38:00,247 Washington St, San Francisco,CA,94016 +225851,Bose SoundSport Headphones,1,99.99,2019-07-08 13:39:00,825 11th St, Austin,TX,73301 +225852,iPhone,1,700.0,2019-07-08 19:49:00,907 South St, Atlanta,GA,30301 +225852,Lightning Charging Cable,1,14.95,2019-07-08 19:49:00,907 South St, Atlanta,GA,30301 +225853,AAA Batteries (4-pack),1,2.99,2019-07-03 06:57:00,518 Maple St, Boston,MA,02215 +225854,27in FHD Monitor,1,149.99,2019-07-06 01:19:00,829 Center St, San Francisco,CA,94016 +225855,Google Phone,1,600.0,2019-07-28 21:33:00,402 12th St, Boston,MA,02215 +225855,Wired Headphones,1,11.99,2019-07-28 21:33:00,402 12th St, Boston,MA,02215 +225856,Apple Airpods Headphones,1,150.0,2019-07-05 22:34:00,58 5th St, San Francisco,CA,94016 +225857,Bose SoundSport Headphones,1,99.99,2019-07-29 20:33:00,78 9th St, Atlanta,GA,30301 +225858,AA Batteries (4-pack),1,3.84,2019-07-27 13:58:00,263 5th St, New York City,NY,10001 +225859,Google Phone,1,600.0,2019-07-28 18:36:00,843 Lincoln St, Dallas,TX,75001 +225859,Wired Headphones,1,11.99,2019-07-28 18:36:00,843 Lincoln St, Dallas,TX,75001 +225860,AA Batteries (4-pack),2,3.84,2019-07-09 16:25:00,858 2nd St, San Francisco,CA,94016 +225861,Bose SoundSport Headphones,1,99.99,2019-07-25 15:42:00,795 Walnut St, Austin,TX,73301 +225862,iPhone,1,700.0,2019-07-01 23:21:00,130 Johnson St, Seattle,WA,98101 +225862,Apple Airpods Headphones,1,150.0,2019-07-01 23:21:00,130 Johnson St, Seattle,WA,98101 +225863,27in FHD Monitor,1,149.99,2019-07-25 09:21:00,142 Church St, Los Angeles,CA,90001 +225864,Lightning Charging Cable,1,14.95,2019-07-22 20:02:00,106 10th St, Dallas,TX,75001 +225865,AAA Batteries (4-pack),2,2.99,2019-07-07 12:33:00,168 Maple St, Boston,MA,02215 +225866,Lightning Charging Cable,1,14.95,2019-07-15 08:12:00,318 Jackson St, Los Angeles,CA,90001 +225867,27in 4K Gaming Monitor,1,389.99,2019-07-16 23:25:00,450 Chestnut St, New York City,NY,10001 +225868,USB-C Charging Cable,2,11.95,2019-07-05 14:50:00,570 Cherry St, San Francisco,CA,94016 +225869,27in 4K Gaming Monitor,1,389.99,2019-07-23 13:23:00,607 Chestnut St, San Francisco,CA,94016 +225870,Lightning Charging Cable,1,14.95,2019-07-28 23:31:00,972 Elm St, Seattle,WA,98101 +225871,USB-C Charging Cable,1,11.95,2019-07-12 15:11:00,74 Ridge St, Dallas,TX,75001 +225872,AA Batteries (4-pack),1,3.84,2019-07-29 09:59:00,580 7th St, New York City,NY,10001 +225873,Vareebadd Phone,1,400.0,2019-07-12 01:59:00,968 14th St, Seattle,WA,98101 +225874,AAA Batteries (4-pack),2,2.99,2019-07-10 00:33:00,139 North St, New York City,NY,10001 +225875,Flatscreen TV,1,300.0,2019-07-31 19:06:00,956 Jackson St, Los Angeles,CA,90001 +225876,Wired Headphones,1,11.99,2019-07-31 17:36:00,179 South St, Atlanta,GA,30301 +225877,AA Batteries (4-pack),1,3.84,2019-07-06 19:26:00,777 Hickory St, San Francisco,CA,94016 +225878,27in FHD Monitor,1,149.99,2019-07-29 12:40:00,501 Adams St, Portland,OR,97035 +225879,20in Monitor,1,109.99,2019-07-09 09:39:00,254 Main St, San Francisco,CA,94016 +225880,Lightning Charging Cable,1,14.95,2019-07-31 14:33:00,813 North St, Seattle,WA,98101 +225881,Apple Airpods Headphones,1,150.0,2019-07-30 10:27:00,490 Ridge St, San Francisco,CA,94016 +225882,USB-C Charging Cable,1,11.95,2019-07-30 08:28:00,575 Maple St, Portland,OR,97035 +225883,USB-C Charging Cable,1,11.95,2019-07-01 17:16:00,997 Meadow St, Los Angeles,CA,90001 +225884,USB-C Charging Cable,1,11.95,2019-07-28 15:59:00,655 Lincoln St, Dallas,TX,75001 +225885,Apple Airpods Headphones,1,150.0,2019-07-21 20:01:00,179 Adams St, New York City,NY,10001 +225886,USB-C Charging Cable,1,11.95,2019-07-21 15:09:00,507 Pine St, New York City,NY,10001 +225887,Lightning Charging Cable,1,14.95,2019-07-18 16:32:00,487 Sunset St, San Francisco,CA,94016 +225888,AAA Batteries (4-pack),1,2.99,2019-07-17 22:29:00,682 9th St, San Francisco,CA,94016 +225889,Wired Headphones,1,11.99,2019-07-27 20:48:00,90 Elm St, San Francisco,CA,94016 +225890,Apple Airpods Headphones,1,150.0,2019-07-15 09:29:00,35 Meadow St, Portland,OR,97035 +225891,Apple Airpods Headphones,1,150.0,2019-07-06 18:47:00,626 Sunset St, San Francisco,CA,94016 +225892,Wired Headphones,1,11.99,2019-07-02 12:44:00,471 Ridge St, San Francisco,CA,94016 +225893,Lightning Charging Cable,1,14.95,2019-07-07 20:47:00,92 West St, Seattle,WA,98101 +225894,Flatscreen TV,1,300.0,2019-07-24 23:24:00,674 Wilson St, Seattle,WA,98101 +225895,Lightning Charging Cable,1,14.95,2019-07-05 17:47:00,224 Adams St, Atlanta,GA,30301 +225896,AAA Batteries (4-pack),1,2.99,2019-07-26 23:20:00,77 6th St, Boston,MA,02215 +225897,iPhone,1,700.0,2019-07-10 23:55:00,723 Forest St, San Francisco,CA,94016 +225897,Apple Airpods Headphones,1,150.0,2019-07-10 23:55:00,723 Forest St, San Francisco,CA,94016 +225898,Apple Airpods Headphones,1,150.0,2019-07-29 09:24:00,641 Lake St, San Francisco,CA,94016 +225899,Lightning Charging Cable,1,14.95,2019-07-17 13:46:00,19 Lakeview St, San Francisco,CA,94016 +225900,Macbook Pro Laptop,1,1700.0,2019-07-20 13:43:00,902 Park St, Atlanta,GA,30301 +225901,Vareebadd Phone,1,400.0,2019-07-13 17:02:00,771 Sunset St, Austin,TX,73301 +225901,Wired Headphones,1,11.99,2019-07-13 17:02:00,771 Sunset St, Austin,TX,73301 +225902,Lightning Charging Cable,1,14.95,2019-07-09 09:34:00,484 Madison St, Dallas,TX,75001 +225903,iPhone,1,700.0,2019-07-02 12:14:00,858 Chestnut St, San Francisco,CA,94016 +225904,AA Batteries (4-pack),2,3.84,2019-07-22 13:09:00,454 Hill St, Boston,MA,02215 +225905,27in 4K Gaming Monitor,1,389.99,2019-07-06 13:08:00,567 14th St, San Francisco,CA,94016 +225906,AAA Batteries (4-pack),2,2.99,2019-07-02 14:48:00,213 Johnson St, San Francisco,CA,94016 +225907,Lightning Charging Cable,1,14.95,2019-07-08 20:39:00,689 8th St, Los Angeles,CA,90001 +225908,AAA Batteries (4-pack),1,2.99,2019-07-04 22:06:00,867 Adams St, Boston,MA,02215 +225909,Apple Airpods Headphones,1,150.0,2019-07-24 17:16:00,598 7th St, San Francisco,CA,94016 +225910,iPhone,1,700.0,2019-07-08 16:03:00,409 Willow St, Boston,MA,02215 +225910,Lightning Charging Cable,1,14.95,2019-07-08 16:03:00,409 Willow St, Boston,MA,02215 +225911,27in 4K Gaming Monitor,1,389.99,2019-07-31 13:08:00,648 Maple St, Dallas,TX,75001 +225912,USB-C Charging Cable,1,11.95,2019-07-14 09:10:00,994 Cherry St, Los Angeles,CA,90001 +225913,USB-C Charging Cable,1,11.95,2019-07-30 17:50:00,133 7th St, Boston,MA,02215 +225914,Bose SoundSport Headphones,1,99.99,2019-07-28 17:36:00,936 Washington St, San Francisco,CA,94016 +225915,Macbook Pro Laptop,1,1700.0,2019-07-18 18:04:00,501 7th St, Boston,MA,02215 +225916,Macbook Pro Laptop,1,1700.0,2019-07-22 20:49:00,202 Maple St, Portland,OR,97035 +225917,Apple Airpods Headphones,1,150.0,2019-07-17 11:06:00,597 Jackson St, Dallas,TX,75001 +225918,AAA Batteries (4-pack),1,2.99,2019-07-28 22:24:00,375 Sunset St, Los Angeles,CA,90001 +225919,Wired Headphones,1,11.99,2019-07-30 12:38:00,26 Jackson St, Portland,OR,97035 +225920,USB-C Charging Cable,1,11.95,2019-07-31 10:01:00,13 Chestnut St, New York City,NY,10001 +225921,Lightning Charging Cable,1,14.95,2019-07-29 15:20:00,867 1st St, Los Angeles,CA,90001 +225922,Lightning Charging Cable,1,14.95,2019-07-21 19:06:00,273 Church St, San Francisco,CA,94016 +225923,AAA Batteries (4-pack),1,2.99,2019-07-08 13:45:00,221 Forest St, San Francisco,CA,94016 +225924,Apple Airpods Headphones,1,150.0,2019-07-13 18:22:00,827 Elm St, Los Angeles,CA,90001 +225925,iPhone,1,700.0,2019-07-27 12:50:00,665 Forest St, Los Angeles,CA,90001 +225926,AA Batteries (4-pack),6,3.84,2019-07-02 12:24:00,750 Center St, Boston,MA,02215 +225927,AAA Batteries (4-pack),1,2.99,2019-07-30 17:02:00,34 North St, Los Angeles,CA,90001 +225928,Apple Airpods Headphones,1,150.0,2019-07-28 20:58:00,919 Church St, Portland,OR,97035 +225929,AAA Batteries (4-pack),1,2.99,2019-07-05 14:28:00,297 9th St, San Francisco,CA,94016 +225930,USB-C Charging Cable,1,11.95,2019-07-12 23:11:00,433 Hill St, San Francisco,CA,94016 +225931,20in Monitor,1,109.99,2019-07-16 21:28:00,784 Main St, San Francisco,CA,94016 +225932,Bose SoundSport Headphones,1,99.99,2019-07-19 13:35:00,688 Walnut St, New York City,NY,10001 +225933,USB-C Charging Cable,1,11.95,2019-07-15 22:47:00,402 Forest St, Seattle,WA,98101 +225934,Bose SoundSport Headphones,1,99.99,2019-07-22 17:11:00,679 6th St, Los Angeles,CA,90001 +225935,Lightning Charging Cable,1,14.95,2019-07-04 19:32:00,690 Wilson St, San Francisco,CA,94016 +225936,USB-C Charging Cable,2,11.95,2019-07-03 18:28:00,317 Maple St, Los Angeles,CA,90001 +225937,Google Phone,1,600.0,2019-07-28 16:57:00,266 Sunset St, Los Angeles,CA,90001 +225937,Wired Headphones,1,11.99,2019-07-28 16:57:00,266 Sunset St, Los Angeles,CA,90001 +225938,AA Batteries (4-pack),2,3.84,2019-07-30 21:11:00,700 Forest St, Portland,OR,97035 +225939,AA Batteries (4-pack),2,3.84,2019-07-01 06:45:00,536 10th St, Dallas,TX,75001 +225940,AA Batteries (4-pack),1,3.84,2019-07-16 07:35:00,35 Main St, Los Angeles,CA,90001 +225941,USB-C Charging Cable,1,11.95,2019-07-25 14:36:00,508 Meadow St, Boston,MA,02215 +225942,AA Batteries (4-pack),3,3.84,2019-07-09 15:07:00,41 Park St, Boston,MA,02215 +225943,AAA Batteries (4-pack),1,2.99,2019-07-01 16:49:00,477 6th St, Atlanta,GA,30301 +225944,USB-C Charging Cable,1,11.95,2019-07-24 20:29:00,582 Johnson St, Boston,MA,02215 +225945,Lightning Charging Cable,1,14.95,2019-07-06 09:31:00,485 Lincoln St, Los Angeles,CA,90001 +225946,27in FHD Monitor,1,149.99,2019-07-14 17:09:00,613 Jefferson St, San Francisco,CA,94016 +225947,USB-C Charging Cable,1,11.95,2019-07-18 07:46:00,349 Elm St, Atlanta,GA,30301 +225948,ThinkPad Laptop,1,999.99,2019-07-01 19:43:00,296 Sunset St, Atlanta,GA,30301 +225949,ThinkPad Laptop,1,999.99,2019-07-12 22:47:00,223 14th St, New York City,NY,10001 +225950,AA Batteries (4-pack),1,3.84,2019-07-18 16:31:00,320 Sunset St, San Francisco,CA,94016 +225951,Apple Airpods Headphones,1,150.0,2019-07-11 05:53:00,540 Pine St, New York City,NY,10001 +225952,20in Monitor,1,109.99,2019-07-12 18:59:00,958 South St, Atlanta,GA,30301 +225953,AA Batteries (4-pack),2,3.84,2019-07-31 10:37:00,197 Lincoln St, San Francisco,CA,94016 +225954,34in Ultrawide Monitor,1,379.99,2019-07-04 18:01:00,135 Forest St, New York City,NY,10001 +225955,AA Batteries (4-pack),1,3.84,2019-07-29 19:41:00,302 Maple St, Los Angeles,CA,90001 +225956,AAA Batteries (4-pack),1,2.99,2019-07-09 14:02:00,874 13th St, San Francisco,CA,94016 +225957,AAA Batteries (4-pack),1,2.99,2019-07-14 00:42:00,484 Maple St, New York City,NY,10001 +225958,Bose SoundSport Headphones,1,99.99,2019-07-25 21:59:00,358 West St, Portland,OR,97035 +225959,Lightning Charging Cable,1,14.95,2019-07-02 12:37:00,789 Johnson St, Boston,MA,02215 +225959,AAA Batteries (4-pack),1,2.99,2019-07-02 12:37:00,789 Johnson St, Boston,MA,02215 +225960,iPhone,1,700.0,2019-07-12 09:18:00,451 Lake St, Atlanta,GA,30301 +225961,Lightning Charging Cable,2,14.95,2019-07-31 13:42:00,745 9th St, Seattle,WA,98101 +225962,Lightning Charging Cable,1,14.95,2019-07-12 16:19:00,391 Forest St, Boston,MA,02215 +225963,27in FHD Monitor,1,149.99,2019-07-19 21:01:00,252 Chestnut St, Los Angeles,CA,90001 +225964,Lightning Charging Cable,1,14.95,2019-07-14 19:56:00,383 Lakeview St, Atlanta,GA,30301 +225965,Flatscreen TV,1,300.0,2019-07-23 17:13:00,91 4th St, Dallas,TX,75001 +225966,34in Ultrawide Monitor,1,379.99,2019-07-14 22:41:00,547 Spruce St, San Francisco,CA,94016 +225967,Bose SoundSport Headphones,1,99.99,2019-07-23 15:47:00,979 Forest St, Dallas,TX,75001 +225968,iPhone,1,700.0,2019-07-30 11:29:00,340 Lake St, San Francisco,CA,94016 +225969,AAA Batteries (4-pack),1,2.99,2019-07-27 17:59:00,760 Chestnut St, Atlanta,GA,30301 +225970,Lightning Charging Cable,1,14.95,2019-07-05 13:41:00,155 Hickory St, Seattle,WA,98101 +225971,34in Ultrawide Monitor,1,379.99,2019-07-03 17:16:00,753 Wilson St, Boston,MA,02215 +225972,34in Ultrawide Monitor,1,379.99,2019-07-03 11:37:00,801 Wilson St, Seattle,WA,98101 +225973,Lightning Charging Cable,1,14.95,2019-07-22 06:47:00,323 Johnson St, Atlanta,GA,30301 +225974,Bose SoundSport Headphones,1,99.99,2019-07-22 11:53:00,774 5th St, New York City,NY,10001 +225975,USB-C Charging Cable,1,11.95,2019-07-03 13:02:00,130 South St, Dallas,TX,75001 +225976,USB-C Charging Cable,1,11.95,2019-07-21 19:37:00,546 6th St, Atlanta,GA,30301 +225977,Wired Headphones,1,11.99,2019-07-28 09:51:00,98 River St, New York City,NY,10001 +225978,27in FHD Monitor,1,149.99,2019-07-19 10:42:00,887 Hill St, San Francisco,CA,94016 +225979,Bose SoundSport Headphones,1,99.99,2019-07-17 12:25:00,885 Hill St, San Francisco,CA,94016 +225980,20in Monitor,1,109.99,2019-07-12 13:41:00,44 13th St, San Francisco,CA,94016 +225981,ThinkPad Laptop,1,999.99,2019-07-10 12:39:00,556 2nd St, Los Angeles,CA,90001 +225982,iPhone,1,700.0,2019-07-11 11:05:00,20 1st St, Boston,MA,02215 +225982,Apple Airpods Headphones,1,150.0,2019-07-11 11:05:00,20 1st St, Boston,MA,02215 +225983,AAA Batteries (4-pack),1,2.99,2019-07-21 19:31:00,52 Madison St, San Francisco,CA,94016 +225984,27in FHD Monitor,1,149.99,2019-07-28 11:21:00,751 Madison St, Los Angeles,CA,90001 +225985,AAA Batteries (4-pack),1,2.99,2019-07-16 19:18:00,172 Pine St, Boston,MA,02215 +225986,Lightning Charging Cable,1,14.95,2019-07-29 13:31:00,353 Pine St, Boston,MA,02215 +225987,AAA Batteries (4-pack),2,2.99,2019-07-13 09:08:00,863 Maple St, Seattle,WA,98101 +225988,AA Batteries (4-pack),1,3.84,2019-07-19 03:51:00,142 Jackson St, San Francisco,CA,94016 +225989,USB-C Charging Cable,1,11.95,2019-07-12 19:06:00,200 4th St, San Francisco,CA,94016 +225990,27in FHD Monitor,1,149.99,2019-07-14 14:02:00,96 Hickory St, Atlanta,GA,30301 +225991,27in FHD Monitor,1,149.99,2019-07-22 08:07:00,295 1st St, Los Angeles,CA,90001 +225991,Macbook Pro Laptop,1,1700.0,2019-07-22 08:07:00,295 1st St, Los Angeles,CA,90001 +225992,Google Phone,1,600.0,2019-07-14 21:38:00,688 Lake St, Los Angeles,CA,90001 +225992,Wired Headphones,1,11.99,2019-07-14 21:38:00,688 Lake St, Los Angeles,CA,90001 +225993,27in FHD Monitor,1,149.99,2019-07-23 09:24:00,280 Highland St, San Francisco,CA,94016 +225994,AA Batteries (4-pack),1,3.84,2019-07-23 15:15:00,794 Wilson St, Dallas,TX,75001 +225995,Lightning Charging Cable,1,14.95,2019-07-17 17:57:00,559 Walnut St, San Francisco,CA,94016 +225996,Lightning Charging Cable,1,14.95,2019-07-08 22:31:00,939 4th St, San Francisco,CA,94016 +225997,AAA Batteries (4-pack),1,2.99,2019-07-27 17:13:00,915 Chestnut St, Boston,MA,02215 +225998,Lightning Charging Cable,1,14.95,2019-07-15 07:36:00,140 Park St, Portland,OR,97035 +225999,Wired Headphones,1,11.99,2019-07-18 12:02:00,761 9th St, San Francisco,CA,94016 +226000,AAA Batteries (4-pack),1,2.99,2019-07-08 13:15:00,473 North St, Atlanta,GA,30301 +226001,USB-C Charging Cable,1,11.95,2019-07-05 14:13:00,15 Hill St, Dallas,TX,75001 +226002,Lightning Charging Cable,2,14.95,2019-07-25 21:42:00,739 Pine St, San Francisco,CA,94016 +226003,Lightning Charging Cable,1,14.95,2019-07-05 20:43:00,35 Highland St, Los Angeles,CA,90001 +226004,20in Monitor,1,109.99,2019-07-21 11:45:00,961 Jefferson St, Los Angeles,CA,90001 +226005,Lightning Charging Cable,1,14.95,2019-07-22 11:23:00,249 Highland St, San Francisco,CA,94016 +226006,34in Ultrawide Monitor,1,379.99,2019-07-11 02:18:00,481 Hickory St, Boston,MA,02215 +226007,Macbook Pro Laptop,1,1700.0,2019-07-08 17:19:00,528 Church St, Los Angeles,CA,90001 +226008,Bose SoundSport Headphones,1,99.99,2019-07-17 18:29:00,863 1st St, San Francisco,CA,94016 +226009,ThinkPad Laptop,1,999.99,2019-07-23 21:47:00,193 Lincoln St, Austin,TX,73301 +226010,Wired Headphones,1,11.99,2019-07-12 21:52:00,5 14th St, Austin,TX,73301 +226011,USB-C Charging Cable,1,11.95,2019-07-25 19:23:00,813 Pine St, Atlanta,GA,30301 +226012,27in FHD Monitor,1,149.99,2019-07-02 14:53:00,786 Lake St, New York City,NY,10001 +226013,27in 4K Gaming Monitor,1,389.99,2019-07-01 16:59:00,783 Church St, Boston,MA,02215 +226014,AAA Batteries (4-pack),1,2.99,2019-07-25 12:06:00,699 Elm St, Atlanta,GA,30301 +226015,Lightning Charging Cable,1,14.95,2019-07-24 19:51:00,579 Cherry St, Atlanta,GA,30301 +226016,USB-C Charging Cable,1,11.95,2019-07-15 09:11:00,531 Lakeview St, Portland,OR,97035 +226017,AAA Batteries (4-pack),2,2.99,2019-07-12 22:33:00,381 Park St, New York City,NY,10001 +226018,iPhone,1,700.0,2019-07-01 11:00:00,754 Hill St, San Francisco,CA,94016 +226019,Wired Headphones,1,11.99,2019-07-22 16:31:00,629 11th St, New York City,NY,10001 +226020,Lightning Charging Cable,1,14.95,2019-07-23 09:46:00,38 Adams St, New York City,NY,10001 +226021,Vareebadd Phone,1,400.0,2019-07-27 19:22:00,225 Meadow St, San Francisco,CA,94016 +226022,AAA Batteries (4-pack),1,2.99,2019-07-12 12:15:00,758 Johnson St, Portland,OR,97035 +226023,AA Batteries (4-pack),2,3.84,2019-07-07 14:30:00,341 7th St, Portland,OR,97035 +226024,27in FHD Monitor,1,149.99,2019-07-06 15:48:00,211 West St, New York City,NY,10001 +226025,AAA Batteries (4-pack),1,2.99,2019-07-12 16:05:00,246 Church St, San Francisco,CA,94016 +226026,AA Batteries (4-pack),1,3.84,2019-07-17 08:33:00,649 9th St, Los Angeles,CA,90001 +226027,Wired Headphones,1,11.99,2019-07-08 17:22:00,770 7th St, Los Angeles,CA,90001 +226028,AAA Batteries (4-pack),1,2.99,2019-07-03 16:19:00,552 Spruce St, San Francisco,CA,94016 +226029,AA Batteries (4-pack),1,3.84,2019-07-02 22:31:00,648 Sunset St, New York City,NY,10001 +226030,27in FHD Monitor,1,149.99,2019-07-27 21:21:00,470 12th St, San Francisco,CA,94016 +226031,iPhone,1,700.0,2019-07-05 09:34:00,548 Sunset St, Boston,MA,02215 +226031,Wired Headphones,1,11.99,2019-07-05 09:34:00,548 Sunset St, Boston,MA,02215 +226032,20in Monitor,1,109.99,2019-07-20 09:54:00,816 Jefferson St, Seattle,WA,98101 +226033,Apple Airpods Headphones,1,150.0,2019-07-13 16:48:00,682 4th St, New York City,NY,10001 +226034,Google Phone,1,600.0,2019-07-31 16:53:00,787 Park St, Seattle,WA,98101 +226035,ThinkPad Laptop,1,999.99,2019-07-20 13:52:00,769 Wilson St, Boston,MA,02215 +226036,Bose SoundSport Headphones,1,99.99,2019-07-23 13:53:00,611 Sunset St, Seattle,WA,98101 +226037,USB-C Charging Cable,1,11.95,2019-07-16 23:48:00,233 Johnson St, San Francisco,CA,94016 +226038,AAA Batteries (4-pack),1,2.99,2019-07-03 11:58:00,742 Willow St, San Francisco,CA,94016 +226039,27in 4K Gaming Monitor,1,389.99,2019-07-27 22:58:00,617 Adams St, Dallas,TX,75001 +226040,Lightning Charging Cable,1,14.95,2019-07-10 14:46:00,20 North St, Los Angeles,CA,90001 +226041,Bose SoundSport Headphones,1,99.99,2019-07-07 22:53:00,949 Jefferson St, San Francisco,CA,94016 +226042,27in FHD Monitor,1,149.99,2019-07-25 11:45:00,42 Wilson St, San Francisco,CA,94016 +226043,20in Monitor,1,109.99,2019-07-23 11:11:00,569 West St, Boston,MA,02215 +226044,Bose SoundSport Headphones,1,99.99,2019-07-26 21:08:00,504 Chestnut St, Los Angeles,CA,90001 +226045,Macbook Pro Laptop,1,1700.0,2019-07-31 15:42:00,991 2nd St, San Francisco,CA,94016 +226046,AAA Batteries (4-pack),1,2.99,2019-07-12 12:46:00,736 Elm St, San Francisco,CA,94016 +226047,Apple Airpods Headphones,1,150.0,2019-07-31 04:48:00,705 Chestnut St, Dallas,TX,75001 +226048,AAA Batteries (4-pack),1,2.99,2019-07-09 15:41:00,40 Hickory St, Atlanta,GA,30301 +226049,Lightning Charging Cable,1,14.95,2019-07-22 21:31:00,998 Willow St, Seattle,WA,98101 +226050,Apple Airpods Headphones,1,150.0,2019-07-15 21:38:00,169 Cherry St, Los Angeles,CA,90001 +226051,Wired Headphones,1,11.99,2019-07-28 21:20:00,871 2nd St, Austin,TX,73301 +226052,Lightning Charging Cable,1,14.95,2019-07-03 20:49:00,581 Pine St, New York City,NY,10001 +226053,Bose SoundSport Headphones,1,99.99,2019-07-31 22:40:00,525 Dogwood St, Seattle,WA,98101 +226054,Bose SoundSport Headphones,1,99.99,2019-07-03 21:59:00,388 Madison St, Dallas,TX,75001 +226055,27in FHD Monitor,1,149.99,2019-07-27 18:55:00,778 Willow St, Seattle,WA,98101 +226056,AAA Batteries (4-pack),1,2.99,2019-07-22 08:07:00,240 Cedar St, San Francisco,CA,94016 +226057,iPhone,1,700.0,2019-07-18 15:07:00,382 Lake St, San Francisco,CA,94016 +226058,USB-C Charging Cable,1,11.95,2019-07-18 20:05:00,716 Willow St, Seattle,WA,98101 +226059,AAA Batteries (4-pack),2,2.99,2019-07-25 18:07:00,992 Maple St, Boston,MA,02215 +226060,AA Batteries (4-pack),1,3.84,2019-07-27 19:44:00,449 Washington St, Atlanta,GA,30301 +226061,AA Batteries (4-pack),2,3.84,2019-07-23 20:30:00,82 9th St, Portland,OR,97035 +226062,Bose SoundSport Headphones,1,99.99,2019-07-13 11:15:00,916 Madison St, Portland,OR,97035 +226063,34in Ultrawide Monitor,1,379.99,2019-07-06 11:39:00,560 Wilson St, New York City,NY,10001 +226064,Macbook Pro Laptop,1,1700.0,2019-07-26 00:57:00,933 Hickory St, Boston,MA,02215 +226065,Lightning Charging Cable,1,14.95,2019-07-16 21:04:00,252 Lincoln St, New York City,NY,10001 +226066,AAA Batteries (4-pack),1,2.99,2019-07-26 10:38:00,146 Meadow St, New York City,NY,10001 +226067,27in FHD Monitor,1,149.99,2019-07-30 23:57:00,623 Ridge St, Los Angeles,CA,90001 +226068,USB-C Charging Cable,1,11.95,2019-07-07 13:34:00,591 Johnson St, Atlanta,GA,30301 +226069,Wired Headphones,1,11.99,2019-07-16 05:49:00,621 11th St, Los Angeles,CA,90001 +226070,USB-C Charging Cable,1,11.95,2019-07-28 22:51:00,559 Meadow St, Seattle,WA,98101 +226071,AAA Batteries (4-pack),2,2.99,2019-07-31 21:12:00,361 Lakeview St, Boston,MA,02215 +226072,AAA Batteries (4-pack),1,2.99,2019-07-28 14:42:00,848 Hill St, Portland,OR,97035 +226073,Apple Airpods Headphones,1,150.0,2019-07-03 20:32:00,688 Hickory St, San Francisco,CA,94016 +226074,Wired Headphones,1,11.99,2019-07-15 18:38:00,534 Jefferson St, San Francisco,CA,94016 +226075,Lightning Charging Cable,1,14.95,2019-07-06 13:36:00,520 4th St, New York City,NY,10001 +226076,Lightning Charging Cable,1,14.95,2019-07-27 20:15:00,590 6th St, Seattle,WA,98101 +226077,ThinkPad Laptop,1,999.99,2019-07-03 21:30:00,17 Adams St, San Francisco,CA,94016 +226078,Bose SoundSport Headphones,1,99.99,2019-07-15 07:51:00,627 13th St, New York City,NY,10001 +226079,Wired Headphones,1,11.99,2019-07-19 04:24:00,456 Madison St, San Francisco,CA,94016 +226080,27in FHD Monitor,1,149.99,2019-07-27 11:39:00,229 Meadow St, San Francisco,CA,94016 +226081,34in Ultrawide Monitor,1,379.99,2019-07-04 03:54:00,286 Washington St, New York City,NY,10001 +226082,Google Phone,1,600.0,2019-07-22 18:45:00,981 12th St, Boston,MA,02215 +226083,USB-C Charging Cable,2,11.95,2019-07-13 19:46:00,837 West St, New York City,NY,10001 +226084,AA Batteries (4-pack),1,3.84,2019-07-26 17:12:00,320 West St, San Francisco,CA,94016 +226085,AA Batteries (4-pack),1,3.84,2019-07-15 16:37:00,829 5th St, Austin,TX,73301 +226086,AA Batteries (4-pack),1,3.84,2019-07-13 18:36:00,987 11th St, San Francisco,CA,94016 +226087,iPhone,1,700.0,2019-07-06 10:39:00,71 Ridge St, Boston,MA,02215 +226088,Bose SoundSport Headphones,1,99.99,2019-07-19 23:41:00,491 Pine St, Atlanta,GA,30301 +226089,Apple Airpods Headphones,1,150.0,2019-07-22 21:35:00,745 9th St, Los Angeles,CA,90001 +226090,Apple Airpods Headphones,1,150.0,2019-07-18 16:18:00,342 North St, Atlanta,GA,30301 +226091,Wired Headphones,1,11.99,2019-07-21 08:45:00,817 Lake St, Seattle,WA,98101 +226092,34in Ultrawide Monitor,1,379.99,2019-07-26 08:07:00,702 Hill St, Dallas,TX,75001 +226093,Macbook Pro Laptop,1,1700.0,2019-07-30 12:30:00,37 Jefferson St, San Francisco,CA,94016 +226094,Lightning Charging Cable,1,14.95,2019-07-01 06:30:00,351 7th St, Seattle,WA,98101 +226094,Apple Airpods Headphones,1,150.0,2019-07-01 06:30:00,351 7th St, Seattle,WA,98101 +226095,USB-C Charging Cable,1,11.95,2019-07-01 11:46:00,829 Jefferson St, New York City,NY,10001 +226096,AA Batteries (4-pack),1,3.84,2019-07-09 08:21:00,264 11th St, Los Angeles,CA,90001 +226097,AA Batteries (4-pack),1,3.84,2019-07-05 18:20:00,992 8th St, Austin,TX,73301 +226098,iPhone,1,700.0,2019-07-27 11:42:00,212 Spruce St, New York City,NY,10001 +226098,Apple Airpods Headphones,1,150.0,2019-07-27 11:42:00,212 Spruce St, New York City,NY,10001 +226099,Wired Headphones,1,11.99,2019-07-08 14:36:00,274 Lakeview St, Atlanta,GA,30301 +226100,27in FHD Monitor,1,149.99,2019-07-29 18:28:00,533 Cedar St, Austin,TX,73301 +226101,Apple Airpods Headphones,1,150.0,2019-07-10 10:23:00,834 12th St, Seattle,WA,98101 +226102,Apple Airpods Headphones,1,150.0,2019-07-16 18:48:00,982 12th St, Dallas,TX,75001 +226103,Flatscreen TV,1,300.0,2019-07-11 17:54:00,150 Walnut St, Boston,MA,02215 +226104,Bose SoundSport Headphones,1,99.99,2019-07-21 17:40:00,910 Johnson St, Boston,MA,02215 +226105,AA Batteries (4-pack),1,3.84,2019-07-24 15:02:00,685 Cherry St, San Francisco,CA,94016 +226106,Lightning Charging Cable,1,14.95,2019-07-08 11:08:00,660 5th St, Los Angeles,CA,90001 +226107,Apple Airpods Headphones,1,150.0,2019-07-04 19:50:00,495 Sunset St, Portland,OR,97035 +226108,AAA Batteries (4-pack),1,2.99,2019-07-27 11:17:00,612 Park St, San Francisco,CA,94016 +226108,iPhone,1,700.0,2019-07-27 11:17:00,612 Park St, San Francisco,CA,94016 +226109,AA Batteries (4-pack),1,3.84,2019-07-16 10:05:00,732 Johnson St, New York City,NY,10001 +226110,34in Ultrawide Monitor,1,379.99,2019-07-20 15:04:00,195 Sunset St, San Francisco,CA,94016 +226111,Apple Airpods Headphones,1,150.0,2019-07-12 15:35:00,136 Washington St, San Francisco,CA,94016 +226112,USB-C Charging Cable,1,11.95,2019-07-19 17:28:00,294 Madison St, Boston,MA,02215 +226113,Flatscreen TV,1,300.0,2019-07-24 09:38:00,975 Hickory St, Los Angeles,CA,90001 +226114,AA Batteries (4-pack),3,3.84,2019-07-26 21:16:00,896 Wilson St, Boston,MA,02215 +226115,27in FHD Monitor,1,149.99,2019-07-06 12:37:00,737 Chestnut St, Boston,MA,02215 +226116,AA Batteries (4-pack),2,3.84,2019-07-01 19:03:00,212 Hickory St, Seattle,WA,98101 +226117,Apple Airpods Headphones,1,150.0,2019-07-11 20:38:00,227 6th St, San Francisco,CA,94016 +226118,Bose SoundSport Headphones,1,99.99,2019-07-23 17:53:00,818 Cherry St, Los Angeles,CA,90001 +226119,USB-C Charging Cable,1,11.95,2019-07-26 12:13:00,83 Adams St, Los Angeles,CA,90001 +226120,Wired Headphones,1,11.99,2019-07-02 11:02:00,894 Cherry St, San Francisco,CA,94016 +226121,Lightning Charging Cable,1,14.95,2019-07-24 20:13:00,434 Elm St, San Francisco,CA,94016 +226122,Lightning Charging Cable,1,14.95,2019-07-13 19:00:00,325 Cherry St, San Francisco,CA,94016 +226123,34in Ultrawide Monitor,1,379.99,2019-07-03 11:58:00,839 6th St, Austin,TX,73301 +226124,Flatscreen TV,1,300.0,2019-07-15 14:28:00,255 10th St, Dallas,TX,75001 +226125,USB-C Charging Cable,1,11.95,2019-07-25 18:54:00,84 Chestnut St, Austin,TX,73301 +226126,Apple Airpods Headphones,1,150.0,2019-07-19 13:07:00,908 Lincoln St, Seattle,WA,98101 +226127,Lightning Charging Cable,1,14.95,2019-07-27 21:15:00,269 Madison St, Los Angeles,CA,90001 +226128,USB-C Charging Cable,1,11.95,2019-07-25 23:43:00,771 1st St, Los Angeles,CA,90001 +226129,Google Phone,1,600.0,2019-07-25 19:39:00,475 Lake St, San Francisco,CA,94016 +226129,USB-C Charging Cable,2,11.95,2019-07-25 19:39:00,475 Lake St, San Francisco,CA,94016 +226130,USB-C Charging Cable,1,11.95,2019-07-20 19:08:00,853 7th St, Portland,OR,97035 +226131,Lightning Charging Cable,1,14.95,2019-07-13 21:41:00,143 Cherry St, San Francisco,CA,94016 +226132,Wired Headphones,1,11.99,2019-07-28 14:36:00,880 1st St, Portland,OR,97035 +226133,34in Ultrawide Monitor,1,379.99,2019-07-12 03:17:00,241 West St, Los Angeles,CA,90001 +226134,USB-C Charging Cable,1,11.95,2019-07-17 13:37:00,70 Lincoln St, Los Angeles,CA,90001 +226135,Bose SoundSport Headphones,1,99.99,2019-07-16 10:06:00,598 8th St, New York City,NY,10001 +226136,AAA Batteries (4-pack),1,2.99,2019-07-28 22:22:00,16 Willow St, Los Angeles,CA,90001 +226137,iPhone,1,700.0,2019-07-31 18:45:00,886 Forest St, San Francisco,CA,94016 +226138,Macbook Pro Laptop,1,1700.0,2019-07-17 10:00:00,672 South St, Los Angeles,CA,90001 +226139,AAA Batteries (4-pack),2,2.99,2019-07-12 11:48:00,224 12th St, Boston,MA,02215 +226140,USB-C Charging Cable,2,11.95,2019-07-26 17:50:00,772 Ridge St, San Francisco,CA,94016 +226141,Wired Headphones,1,11.99,2019-07-12 23:21:00,376 North St, Dallas,TX,75001 +226142,AA Batteries (4-pack),1,3.84,2019-07-30 18:31:00,202 Meadow St, Dallas,TX,75001 +226143,AAA Batteries (4-pack),1,2.99,2019-07-04 19:35:00,845 Jefferson St, Los Angeles,CA,90001 +226144,27in FHD Monitor,1,149.99,2019-07-23 14:35:00,225 Sunset St, Boston,MA,02215 +226145,Lightning Charging Cable,1,14.95,2019-07-12 18:46:00,989 14th St, New York City,NY,10001 +226146,Apple Airpods Headphones,1,150.0,2019-07-20 16:20:00,714 Maple St, Portland,OR,97035 +226147,Google Phone,1,600.0,2019-07-15 11:58:00,191 Johnson St, San Francisco,CA,94016 +226147,USB-C Charging Cable,1,11.95,2019-07-15 11:58:00,191 Johnson St, San Francisco,CA,94016 +226148,AA Batteries (4-pack),2,3.84,2019-07-09 10:28:00,700 10th St, San Francisco,CA,94016 +226149,AA Batteries (4-pack),1,3.84,2019-07-28 11:55:00,832 Forest St, Austin,TX,73301 +226150,AA Batteries (4-pack),1,3.84,2019-07-09 17:20:00,763 Main St, Los Angeles,CA,90001 +226151,USB-C Charging Cable,1,11.95,2019-07-18 19:41:00,253 Hill St, Portland,ME,04101 +226152,Wired Headphones,1,11.99,2019-07-20 17:04:00,454 11th St, Los Angeles,CA,90001 +226153,Lightning Charging Cable,2,14.95,2019-07-05 22:55:00,953 Adams St, San Francisco,CA,94016 +226154,iPhone,1,700.0,2019-07-13 20:36:00,442 Madison St, New York City,NY,10001 +226154,Lightning Charging Cable,1,14.95,2019-07-13 20:36:00,442 Madison St, New York City,NY,10001 +226155,AAA Batteries (4-pack),1,2.99,2019-07-04 15:36:00,662 Madison St, Austin,TX,73301 +226156,Lightning Charging Cable,1,14.95,2019-07-25 20:18:00,456 Maple St, Seattle,WA,98101 +226157,USB-C Charging Cable,1,11.95,2019-07-09 10:57:00,904 Cedar St, Atlanta,GA,30301 +226158,Bose SoundSport Headphones,1,99.99,2019-07-03 21:57:00,489 Jackson St, San Francisco,CA,94016 +226159,iPhone,1,700.0,2019-07-27 10:13:00,359 Hill St, Boston,MA,02215 +226160,27in FHD Monitor,1,149.99,2019-07-02 22:34:00,495 6th St, Los Angeles,CA,90001 +226161,AAA Batteries (4-pack),1,2.99,2019-07-06 17:21:00,456 Center St, New York City,NY,10001 +226162,Flatscreen TV,1,300.0,2019-07-19 10:53:00,346 Spruce St, New York City,NY,10001 +226163,AA Batteries (4-pack),1,3.84,2019-07-26 22:57:00,223 13th St, Portland,OR,97035 +226164,27in 4K Gaming Monitor,1,389.99,2019-07-14 15:53:00,767 Sunset St, Seattle,WA,98101 +226165,ThinkPad Laptop,1,999.99,2019-07-23 16:58:00,826 7th St, Atlanta,GA,30301 +226166,Lightning Charging Cable,1,14.95,2019-07-05 13:10:00,56 6th St, New York City,NY,10001 +226167,Lightning Charging Cable,1,14.95,2019-07-12 14:33:00,13 12th St, Portland,OR,97035 +226168,Flatscreen TV,1,300.0,2019-07-16 18:23:00,898 Park St, Boston,MA,02215 +226169,Apple Airpods Headphones,1,150.0,2019-07-23 22:21:00,161 Elm St, Dallas,TX,75001 +226170,Wired Headphones,1,11.99,2019-07-27 19:11:00,590 Walnut St, Atlanta,GA,30301 +226171,27in FHD Monitor,1,149.99,2019-07-10 18:33:00,711 Lakeview St, San Francisco,CA,94016 +226172,USB-C Charging Cable,1,11.95,2019-07-20 14:57:00,846 Main St, Boston,MA,02215 +226173,AAA Batteries (4-pack),2,2.99,2019-07-24 20:27:00,546 1st St, New York City,NY,10001 +226174,Bose SoundSport Headphones,1,99.99,2019-07-21 15:35:00,52 Willow St, Seattle,WA,98101 +226175,Wired Headphones,1,11.99,2019-07-29 10:22:00,69 Willow St, San Francisco,CA,94016 +226176,iPhone,1,700.0,2019-07-14 13:50:00,556 Ridge St, Los Angeles,CA,90001 +226177,AAA Batteries (4-pack),1,2.99,2019-07-25 00:55:00,285 4th St, New York City,NY,10001 +226178,AAA Batteries (4-pack),2,2.99,2019-07-20 09:42:00,338 10th St, San Francisco,CA,94016 +226179,USB-C Charging Cable,2,11.95,2019-07-10 08:34:00,1 5th St, San Francisco,CA,94016 +226180,Wired Headphones,1,11.99,2019-07-11 18:16:00,114 West St, Boston,MA,02215 +226181,AA Batteries (4-pack),2,3.84,2019-07-15 16:37:00,729 14th St, Atlanta,GA,30301 +226182,Apple Airpods Headphones,1,150.0,2019-07-31 13:07:00,158 11th St, Atlanta,GA,30301 +226183,AA Batteries (4-pack),1,3.84,2019-07-20 17:45:00,347 6th St, Boston,MA,02215 +226184,Apple Airpods Headphones,1,150.0,2019-07-09 20:30:00,358 South St, San Francisco,CA,94016 +226185,Lightning Charging Cable,1,14.95,2019-07-28 11:02:00,443 9th St, San Francisco,CA,94016 +226186,Lightning Charging Cable,1,14.95,2019-07-18 07:58:00,486 Hickory St, Portland,OR,97035 +226187,Wired Headphones,1,11.99,2019-07-17 12:53:00,851 Cherry St, Dallas,TX,75001 +226188,ThinkPad Laptop,1,999.99,2019-07-20 20:18:00,933 Lakeview St, San Francisco,CA,94016 +226188,Lightning Charging Cable,2,14.95,2019-07-20 20:18:00,933 Lakeview St, San Francisco,CA,94016 +226189,Bose SoundSport Headphones,1,99.99,2019-07-27 10:55:00,510 Madison St, San Francisco,CA,94016 +226190,Flatscreen TV,1,300.0,2019-07-05 21:13:00,482 Chestnut St, Los Angeles,CA,90001 +226191,Macbook Pro Laptop,1,1700.0,2019-07-06 18:30:00,297 Chestnut St, Boston,MA,02215 +226192,Wired Headphones,1,11.99,2019-07-22 12:01:00,252 Washington St, Boston,MA,02215 +226193,AA Batteries (4-pack),1,3.84,2019-07-14 19:18:00,168 Forest St, Seattle,WA,98101 +226194,Vareebadd Phone,1,400.0,2019-07-29 22:35:00,257 12th St, Los Angeles,CA,90001 +226195,Apple Airpods Headphones,1,150.0,2019-07-26 12:50:00,288 Willow St, New York City,NY,10001 +226196,Bose SoundSport Headphones,1,99.99,2019-07-05 11:56:00,219 Ridge St, San Francisco,CA,94016 +226197,Google Phone,1,600.0,2019-07-15 14:24:00,653 Jefferson St, Los Angeles,CA,90001 +226198,Apple Airpods Headphones,1,150.0,2019-07-02 10:20:00,793 Washington St, San Francisco,CA,94016 +226199,USB-C Charging Cable,1,11.95,2019-07-19 18:22:00,618 North St, San Francisco,CA,94016 +226200,iPhone,1,700.0,2019-07-22 12:47:00,272 11th St, Los Angeles,CA,90001 +226201,Lightning Charging Cable,1,14.95,2019-07-23 11:14:00,414 Hill St, San Francisco,CA,94016 +226202,AAA Batteries (4-pack),2,2.99,2019-07-26 18:25:00,893 South St, San Francisco,CA,94016 +226203,Lightning Charging Cable,1,14.95,2019-07-13 21:32:00,845 1st St, Los Angeles,CA,90001 +226204,27in FHD Monitor,1,149.99,2019-07-15 20:28:00,8 4th St, San Francisco,CA,94016 +226205,USB-C Charging Cable,1,11.95,2019-07-22 11:04:00,776 Hill St, Austin,TX,73301 +226206,Flatscreen TV,1,300.0,2019-07-10 08:52:00,56 Center St, San Francisco,CA,94016 +226207,Bose SoundSport Headphones,1,99.99,2019-07-04 09:14:00,178 9th St, Austin,TX,73301 +226208,27in 4K Gaming Monitor,1,389.99,2019-07-02 21:13:00,409 Lake St, San Francisco,CA,94016 +226209,Apple Airpods Headphones,1,150.0,2019-07-22 15:05:00,449 West St, Boston,MA,02215 +226210,USB-C Charging Cable,1,11.95,2019-07-21 09:37:00,299 Highland St, Boston,MA,02215 +226211,USB-C Charging Cable,1,11.95,2019-07-01 21:14:00,673 Ridge St, Atlanta,GA,30301 +226212,USB-C Charging Cable,1,11.95,2019-07-29 14:33:00,431 Elm St, San Francisco,CA,94016 +226213,USB-C Charging Cable,1,11.95,2019-07-10 11:42:00,676 River St, Los Angeles,CA,90001 +226214,AAA Batteries (4-pack),2,2.99,2019-07-04 17:16:00,154 Cedar St, San Francisco,CA,94016 +226215,AAA Batteries (4-pack),2,2.99,2019-07-17 21:19:00,41 Wilson St, Los Angeles,CA,90001 +226216,LG Washing Machine,1,600.0,2019-07-09 12:48:00,63 Hickory St, Los Angeles,CA,90001 +226217,iPhone,1,700.0,2019-07-09 10:11:00,688 Main St, San Francisco,CA,94016 +226217,Wired Headphones,1,11.99,2019-07-09 10:11:00,688 Main St, San Francisco,CA,94016 +226218,USB-C Charging Cable,1,11.95,2019-07-17 06:21:00,683 Maple St, Los Angeles,CA,90001 +226219,LG Dryer,1,600.0,2019-07-23 17:58:00,171 Lincoln St, Portland,OR,97035 +226220,AA Batteries (4-pack),1,3.84,2019-07-19 13:32:00,577 8th St, San Francisco,CA,94016 +226221,Bose SoundSport Headphones,1,99.99,2019-07-22 10:46:00,816 Lakeview St, Portland,OR,97035 +226222,AA Batteries (4-pack),1,3.84,2019-07-03 21:28:00,14 Hill St, San Francisco,CA,94016 +226223,AA Batteries (4-pack),2,3.84,2019-07-30 18:19:00,257 Jackson St, San Francisco,CA,94016 +226224,Flatscreen TV,1,300.0,2019-07-27 16:53:00,260 14th St, Portland,OR,97035 +226225,Lightning Charging Cable,1,14.95,2019-07-07 07:52:00,810 11th St, San Francisco,CA,94016 +226226,34in Ultrawide Monitor,1,379.99,2019-07-30 22:02:00,149 6th St, Boston,MA,02215 +226227,AAA Batteries (4-pack),1,2.99,2019-07-23 19:41:00,203 11th St, Boston,MA,02215 +226228,Lightning Charging Cable,1,14.95,2019-07-15 21:28:00,996 Jefferson St, Los Angeles,CA,90001 +226229,Lightning Charging Cable,2,14.95,2019-07-24 10:22:00,727 Hill St, Dallas,TX,75001 +226230,AA Batteries (4-pack),1,3.84,2019-07-30 10:29:00,913 7th St, Dallas,TX,75001 +226231,Wired Headphones,1,11.99,2019-07-23 20:25:00,321 6th St, Dallas,TX,75001 +226232,AA Batteries (4-pack),1,3.84,2019-07-05 19:57:00,78 Church St, Dallas,TX,75001 +226233,USB-C Charging Cable,2,11.95,2019-07-23 15:41:00,588 Meadow St, Dallas,TX,75001 +226234,AA Batteries (4-pack),1,3.84,2019-07-09 08:53:00,930 Jackson St, Seattle,WA,98101 +226235,AAA Batteries (4-pack),5,2.99,2019-07-08 00:44:00,987 8th St, San Francisco,CA,94016 +226236,27in 4K Gaming Monitor,1,389.99,2019-07-16 11:44:00,33 Main St, Austin,TX,73301 +226237,Macbook Pro Laptop,1,1700.0,2019-07-06 22:07:00,222 South St, San Francisco,CA,94016 +226238,Flatscreen TV,1,300.0,2019-07-12 09:24:00,460 Meadow St, Austin,TX,73301 +226239,Flatscreen TV,1,300.0,2019-07-28 19:31:00,110 Madison St, San Francisco,CA,94016 +226240,Lightning Charging Cable,1,14.95,2019-07-15 19:57:00,57 Cherry St, Austin,TX,73301 +226241,USB-C Charging Cable,1,11.95,2019-07-09 17:40:00,956 Main St, San Francisco,CA,94016 +226242,Google Phone,1,600.0,2019-07-06 15:47:00,430 Washington St, San Francisco,CA,94016 +226243,27in 4K Gaming Monitor,1,389.99,2019-07-28 19:56:00,460 South St, San Francisco,CA,94016 +226244,Flatscreen TV,1,300.0,2019-07-13 17:49:00,384 Pine St, Austin,TX,73301 +226245,Lightning Charging Cable,1,14.95,2019-07-02 10:12:00,678 North St, New York City,NY,10001 +226246,AA Batteries (4-pack),3,3.84,2019-07-05 09:42:00,307 1st St, Los Angeles,CA,90001 +226247,USB-C Charging Cable,1,11.95,2019-07-07 21:40:00,744 River St, Los Angeles,CA,90001 +226248,Bose SoundSport Headphones,1,99.99,2019-07-27 14:00:00,455 Lake St, San Francisco,CA,94016 +226248,Wired Headphones,1,11.99,2019-07-27 14:00:00,455 Lake St, San Francisco,CA,94016 +226249,Google Phone,1,600.0,2019-07-28 09:29:00,373 12th St, San Francisco,CA,94016 +226250,Lightning Charging Cable,1,14.95,2019-07-09 12:01:00,301 11th St, Los Angeles,CA,90001 +226251,Apple Airpods Headphones,1,150.0,2019-07-13 15:59:00,197 Jackson St, San Francisco,CA,94016 +226252,Google Phone,1,600.0,2019-07-16 20:43:00,663 Willow St, Atlanta,GA,30301 +226253,Bose SoundSport Headphones,1,99.99,2019-07-06 23:55:00,554 Spruce St, Portland,ME,04101 +226254,USB-C Charging Cable,1,11.95,2019-07-15 12:52:00,804 Hill St, San Francisco,CA,94016 +226255,Wired Headphones,1,11.99,2019-07-23 21:32:00,106 4th St, Boston,MA,02215 +226256,27in 4K Gaming Monitor,1,389.99,2019-07-13 12:14:00,230 Center St, Atlanta,GA,30301 +226257,Wired Headphones,1,11.99,2019-07-03 19:34:00,274 Center St, Portland,OR,97035 +226258,iPhone,1,700.0,2019-07-27 18:28:00,156 Hill St, Los Angeles,CA,90001 +226259,AAA Batteries (4-pack),2,2.99,2019-07-20 19:31:00,33 8th St, Atlanta,GA,30301 +226260,Bose SoundSport Headphones,1,99.99,2019-07-10 17:14:00,240 Spruce St, Portland,OR,97035 +226261,AAA Batteries (4-pack),2,2.99,2019-07-22 18:37:00,740 Forest St, Austin,TX,73301 +226262,Apple Airpods Headphones,1,150.0,2019-07-02 00:18:00,645 Chestnut St, Atlanta,GA,30301 +226263,27in 4K Gaming Monitor,1,389.99,2019-07-13 14:09:00,917 Madison St, Austin,TX,73301 +226264,Wired Headphones,1,11.99,2019-07-20 13:16:00,114 Lakeview St, Boston,MA,02215 +226265,USB-C Charging Cable,1,11.95,2019-07-27 20:26:00,188 Jackson St, San Francisco,CA,94016 +226266,Wired Headphones,1,11.99,2019-07-07 14:52:00,929 Walnut St, Dallas,TX,75001 +226267,Wired Headphones,1,11.99,2019-07-08 19:54:00,484 Cherry St, Los Angeles,CA,90001 +226268,Bose SoundSport Headphones,1,99.99,2019-07-06 12:04:00,781 Lake St, San Francisco,CA,94016 +226269,Google Phone,1,600.0,2019-07-19 10:43:00,947 Dogwood St, Seattle,WA,98101 +226270,Google Phone,1,600.0,2019-07-14 14:17:00,140 Park St, Los Angeles,CA,90001 +226271,AA Batteries (4-pack),2,3.84,2019-07-17 15:15:00,644 5th St, New York City,NY,10001 +226272,Apple Airpods Headphones,1,150.0,2019-07-04 22:57:00,797 10th St, San Francisco,CA,94016 +226273,Apple Airpods Headphones,1,150.0,2019-07-23 21:37:00,537 Church St, New York City,NY,10001 +226274,AA Batteries (4-pack),1,3.84,2019-07-31 23:07:00,383 14th St, Los Angeles,CA,90001 +226275,AAA Batteries (4-pack),1,2.99,2019-07-08 01:07:00,218 North St, Atlanta,GA,30301 +226276,Apple Airpods Headphones,1,150.0,2019-07-09 15:58:00,876 Jefferson St, Boston,MA,02215 +226277,AAA Batteries (4-pack),1,2.99,2019-07-09 13:33:00,548 Cedar St, Los Angeles,CA,90001 +226278,20in Monitor,1,109.99,2019-07-28 22:18:00,569 River St, San Francisco,CA,94016 +226278,34in Ultrawide Monitor,1,379.99,2019-07-28 22:18:00,569 River St, San Francisco,CA,94016 +226279,27in FHD Monitor,1,149.99,2019-07-10 12:41:00,409 Jefferson St, San Francisco,CA,94016 +226280,Lightning Charging Cable,1,14.95,2019-07-02 18:26:00,945 10th St, Los Angeles,CA,90001 +226281,Apple Airpods Headphones,1,150.0,2019-07-30 13:47:00,333 Jefferson St, Los Angeles,CA,90001 +226282,AA Batteries (4-pack),1,3.84,2019-07-07 22:44:00,408 6th St, New York City,NY,10001 +226283,Wired Headphones,2,11.99,2019-07-04 18:54:00,828 9th St, Los Angeles,CA,90001 +226284,USB-C Charging Cable,2,11.95,2019-07-23 09:20:00,793 Forest St, Boston,MA,02215 +226285,USB-C Charging Cable,2,11.95,2019-07-17 12:23:00,514 7th St, Los Angeles,CA,90001 +226286,Lightning Charging Cable,2,14.95,2019-07-24 19:16:00,762 Main St, Boston,MA,02215 +226287,USB-C Charging Cable,2,11.95,2019-07-20 15:17:00,506 2nd St, Los Angeles,CA,90001 +226288,Wired Headphones,1,11.99,2019-07-14 15:27:00,598 10th St, Austin,TX,73301 +226289,USB-C Charging Cable,1,11.95,2019-07-31 14:40:00,364 Adams St, San Francisco,CA,94016 +226290,27in FHD Monitor,1,149.99,2019-07-20 01:04:00,436 1st St, Los Angeles,CA,90001 +226291,AA Batteries (4-pack),1,3.84,2019-07-16 12:28:00,780 1st St, Austin,TX,73301 +226292,USB-C Charging Cable,1,11.95,2019-07-18 18:12:00,91 12th St, Austin,TX,73301 +226293,USB-C Charging Cable,1,11.95,2019-07-26 01:09:00,963 North St, Dallas,TX,75001 +226294,Lightning Charging Cable,1,14.95,2019-07-22 10:25:00,769 Pine St, Dallas,TX,75001 +226295,Lightning Charging Cable,1,14.95,2019-07-11 21:26:00,569 Park St, Los Angeles,CA,90001 +226296,Macbook Pro Laptop,1,1700.0,2019-07-06 10:24:00,257 Spruce St, Boston,MA,02215 +226297,Lightning Charging Cable,1,14.95,2019-07-29 00:11:00,395 River St, San Francisco,CA,94016 +226298,Macbook Pro Laptop,1,1700.0,2019-07-09 14:57:00,850 10th St, San Francisco,CA,94016 +226299,AAA Batteries (4-pack),1,2.99,2019-07-27 17:19:00,663 11th St, New York City,NY,10001 +226300,Macbook Pro Laptop,1,1700.0,2019-07-04 15:50:00,228 Ridge St, San Francisco,CA,94016 +226301,AA Batteries (4-pack),1,3.84,2019-07-04 15:42:00,730 Cedar St, Dallas,TX,75001 +226302,Macbook Pro Laptop,1,1700.0,2019-07-13 19:28:00,825 14th St, Seattle,WA,98101 +226303,27in 4K Gaming Monitor,1,389.99,2019-07-07 10:52:00,588 Hickory St, San Francisco,CA,94016 +226304,AA Batteries (4-pack),2,3.84,2019-07-28 12:50:00,357 Washington St, Dallas,TX,75001 +226305,27in FHD Monitor,1,149.99,2019-07-30 17:31:00,836 Johnson St, Austin,TX,73301 +226306,USB-C Charging Cable,1,11.95,2019-07-19 17:17:00,809 Spruce St, San Francisco,CA,94016 +226307,34in Ultrawide Monitor,1,379.99,2019-07-07 07:50:00,349 West St, Portland,ME,04101 +226308,Lightning Charging Cable,1,14.95,2019-07-21 23:38:00,983 Main St, San Francisco,CA,94016 +226309,AA Batteries (4-pack),1,3.84,2019-07-15 22:04:00,26 7th St, San Francisco,CA,94016 +226310,AA Batteries (4-pack),1,3.84,2019-07-07 19:04:00,207 Lincoln St, Boston,MA,02215 +226311,AA Batteries (4-pack),1,3.84,2019-07-25 15:30:00,502 Dogwood St, Seattle,WA,98101 +226312,Wired Headphones,1,11.99,2019-07-10 13:05:00,969 8th St, Los Angeles,CA,90001 +226313,Google Phone,1,600.0,2019-07-31 17:30:00,548 Maple St, Los Angeles,CA,90001 +226314,Macbook Pro Laptop,1,1700.0,2019-07-04 18:30:00,512 Lincoln St, San Francisco,CA,94016 +226315,AAA Batteries (4-pack),1,2.99,2019-07-02 22:05:00,59 Cedar St, Portland,OR,97035 +226316,AAA Batteries (4-pack),1,2.99,2019-07-28 19:32:00,850 Willow St, New York City,NY,10001 +226317,Apple Airpods Headphones,1,150.0,2019-07-29 11:51:00,419 Main St, Dallas,TX,75001 +226318,USB-C Charging Cable,1,11.95,2019-07-03 12:11:00,333 Park St, Los Angeles,CA,90001 +226319,27in 4K Gaming Monitor,1,389.99,2019-07-24 14:40:00,732 Adams St, Boston,MA,02215 +226320,AA Batteries (4-pack),1,3.84,2019-07-09 20:55:00,223 Madison St, Los Angeles,CA,90001 +226321,34in Ultrawide Monitor,1,379.99,2019-07-08 14:18:00,424 Highland St, San Francisco,CA,94016 +226322,USB-C Charging Cable,1,11.95,2019-07-16 00:43:00,39 Ridge St, Seattle,WA,98101 +226323,Flatscreen TV,1,300.0,2019-07-05 13:14:00,454 Lincoln St, Atlanta,GA,30301 +226324,Bose SoundSport Headphones,1,99.99,2019-07-03 12:19:00,594 Pine St, San Francisco,CA,94016 +226325,Bose SoundSport Headphones,1,99.99,2019-07-19 19:46:00,695 Adams St, Seattle,WA,98101 +226326,Bose SoundSport Headphones,1,99.99,2019-07-06 18:30:00,551 Adams St, Seattle,WA,98101 +226327,Macbook Pro Laptop,1,1700.0,2019-07-07 14:29:00,846 Sunset St, San Francisco,CA,94016 +226328,Wired Headphones,1,11.99,2019-07-08 19:29:00,895 10th St, San Francisco,CA,94016 +226329,Apple Airpods Headphones,1,150.0,2019-07-10 21:32:00,126 Washington St, Atlanta,GA,30301 +226330,Macbook Pro Laptop,1,1700.0,2019-07-01 08:37:00,432 Madison St, New York City,NY,10001 +226331,USB-C Charging Cable,1,11.95,2019-07-06 14:33:00,856 Jackson St, San Francisco,CA,94016 +226332,27in 4K Gaming Monitor,1,389.99,2019-07-16 11:52:00,791 10th St, Portland,OR,97035 +226333,AAA Batteries (4-pack),1,2.99,2019-07-05 09:33:00,947 West St, Seattle,WA,98101 +226334,Apple Airpods Headphones,1,150.0,2019-07-06 10:48:00,751 North St, San Francisco,CA,94016 +226335,USB-C Charging Cable,2,11.95,2019-07-29 12:21:00,644 Ridge St, Los Angeles,CA,90001 +226336,AA Batteries (4-pack),2,3.84,2019-07-24 17:51:00,861 Pine St, Seattle,WA,98101 +226337,27in 4K Gaming Monitor,1,389.99,2019-07-07 11:18:00,763 Cedar St, Boston,MA,02215 +226338,AAA Batteries (4-pack),4,2.99,2019-07-23 07:35:00,187 Dogwood St, Boston,MA,02215 +226339,AAA Batteries (4-pack),1,2.99,2019-07-07 11:54:00,788 Dogwood St, Boston,MA,02215 +226340,Google Phone,1,600.0,2019-07-26 22:42:00,528 13th St, Portland,ME,04101 +226340,Wired Headphones,1,11.99,2019-07-26 22:42:00,528 13th St, Portland,ME,04101 +226341,Flatscreen TV,1,300.0,2019-07-03 20:46:00,25 Cedar St, Dallas,TX,75001 +226342,Lightning Charging Cable,1,14.95,2019-07-25 10:16:00,146 North St, Boston,MA,02215 +226343,iPhone,1,700.0,2019-07-30 21:48:00,531 7th St, San Francisco,CA,94016 +226344,Lightning Charging Cable,1,14.95,2019-07-19 17:14:00,75 Jackson St, Portland,OR,97035 +226345,20in Monitor,1,109.99,2019-07-11 19:08:00,318 Maple St, Boston,MA,02215 +226346,AAA Batteries (4-pack),1,2.99,2019-07-20 22:44:00,358 Elm St, Boston,MA,02215 +226347,Lightning Charging Cable,1,14.95,2019-07-13 00:10:00,463 2nd St, New York City,NY,10001 +226348,27in FHD Monitor,1,149.99,2019-07-16 15:45:00,398 Maple St, Atlanta,GA,30301 +226349,20in Monitor,1,109.99,2019-07-19 18:30:00,61 Main St, New York City,NY,10001 +226350,AA Batteries (4-pack),1,3.84,2019-07-25 13:09:00,662 West St, San Francisco,CA,94016 +226351,AAA Batteries (4-pack),2,2.99,2019-07-27 20:41:00,152 Highland St, Atlanta,GA,30301 +226352,Bose SoundSport Headphones,1,99.99,2019-07-07 12:15:00,485 5th St, Seattle,WA,98101 +226353,AAA Batteries (4-pack),1,2.99,2019-07-16 04:25:00,943 6th St, New York City,NY,10001 +226354,AAA Batteries (4-pack),1,2.99,2019-07-28 20:06:00,676 9th St, Dallas,TX,75001 +226355,AAA Batteries (4-pack),2,2.99,2019-07-23 22:51:00,330 14th St, Portland,OR,97035 +226356,Vareebadd Phone,1,400.0,2019-07-21 10:20:00,532 Meadow St, Los Angeles,CA,90001 +226357,iPhone,1,700.0,2019-07-11 10:25:00,67 Chestnut St, Boston,MA,02215 +226358,Lightning Charging Cable,1,14.95,2019-07-10 18:57:00,678 Park St, Atlanta,GA,30301 +226359,AA Batteries (4-pack),2,3.84,2019-07-20 21:54:00,79 12th St, San Francisco,CA,94016 +226360,ThinkPad Laptop,1,999.99,2019-07-30 08:56:00,983 9th St, Boston,MA,02215 +226361,Wired Headphones,2,11.99,2019-07-04 22:05:00,194 2nd St, Seattle,WA,98101 +226362,LG Washing Machine,1,600.0,2019-07-20 19:06:00,780 6th St, Portland,OR,97035 +226363,USB-C Charging Cable,1,11.95,2019-07-27 10:32:00,320 Spruce St, Dallas,TX,75001 +226363,USB-C Charging Cable,2,11.95,2019-07-27 10:32:00,320 Spruce St, Dallas,TX,75001 +226364,AAA Batteries (4-pack),1,2.99,2019-07-23 17:20:00,368 Elm St, Seattle,WA,98101 +226365,Lightning Charging Cable,1,14.95,2019-07-11 10:27:00,710 6th St, San Francisco,CA,94016 +226366,iPhone,1,700.0,2019-07-01 11:57:00,484 Ridge St, Dallas,TX,75001 +226367,Lightning Charging Cable,2,14.95,2019-07-26 13:05:00,895 2nd St, San Francisco,CA,94016 +226368,Google Phone,1,600.0,2019-07-22 12:31:00,71 Lakeview St, Los Angeles,CA,90001 +226369,Lightning Charging Cable,2,14.95,2019-07-10 23:16:00,81 Spruce St, Atlanta,GA,30301 +226370,27in 4K Gaming Monitor,1,389.99,2019-07-17 07:41:00,142 Elm St, San Francisco,CA,94016 +226371,Wired Headphones,1,11.99,2019-07-10 19:49:00,745 Lincoln St, San Francisco,CA,94016 +226372,Lightning Charging Cable,1,14.95,2019-07-15 23:35:00,450 Hickory St, Portland,ME,04101 +226373,Macbook Pro Laptop,1,1700.0,2019-07-04 08:49:00,495 Church St, Boston,MA,02215 +226374,Macbook Pro Laptop,1,1700.0,2019-07-15 16:21:00,180 Johnson St, Portland,OR,97035 +226375,20in Monitor,1,109.99,2019-07-03 03:21:00,613 Lincoln St, Austin,TX,73301 +226376,AAA Batteries (4-pack),1,2.99,2019-07-08 22:38:00,206 Chestnut St, New York City,NY,10001 +226377,Lightning Charging Cable,1,14.95,2019-07-23 22:40:00,615 Wilson St, Atlanta,GA,30301 +226378,Bose SoundSport Headphones,1,99.99,2019-07-11 13:56:00,600 Dogwood St, San Francisco,CA,94016 +226379,ThinkPad Laptop,1,999.99,2019-07-08 20:57:00,569 Jefferson St, San Francisco,CA,94016 +226380,ThinkPad Laptop,1,999.99,2019-07-05 11:25:00,265 Jackson St, Austin,TX,73301 +226381,AAA Batteries (4-pack),2,2.99,2019-07-05 20:47:00,589 13th St, Los Angeles,CA,90001 +226382,34in Ultrawide Monitor,1,379.99,2019-07-24 19:55:00,912 Hill St, New York City,NY,10001 +226383,Google Phone,1,600.0,2019-07-14 12:07:00,585 Madison St, Seattle,WA,98101 +226383,Wired Headphones,1,11.99,2019-07-14 12:07:00,585 Madison St, Seattle,WA,98101 +226384,AAA Batteries (4-pack),1,2.99,2019-07-15 11:08:00,274 Lincoln St, Los Angeles,CA,90001 +226385,AAA Batteries (4-pack),1,2.99,2019-07-29 15:21:00,767 Meadow St, Boston,MA,02215 +226386,AAA Batteries (4-pack),2,2.99,2019-07-07 20:24:00,803 Spruce St, Seattle,WA,98101 +226387,USB-C Charging Cable,1,11.95,2019-07-13 15:36:00,822 Madison St, Los Angeles,CA,90001 +226388,Bose SoundSport Headphones,1,99.99,2019-07-04 09:36:00,696 Maple St, New York City,NY,10001 +226389,Apple Airpods Headphones,1,150.0,2019-07-01 11:20:00,626 North St, San Francisco,CA,94016 +226390,AA Batteries (4-pack),1,3.84,2019-07-16 09:50:00,423 5th St, Boston,MA,02215 +226391,USB-C Charging Cable,1,11.95,2019-07-25 14:26:00,606 Main St, Seattle,WA,98101 +226392,USB-C Charging Cable,1,11.95,2019-07-18 20:51:00,898 Cherry St, New York City,NY,10001 +226393,Lightning Charging Cable,2,14.95,2019-07-24 16:13:00,743 2nd St, Los Angeles,CA,90001 +226394,AA Batteries (4-pack),1,3.84,2019-07-13 11:50:00,874 Elm St, Atlanta,GA,30301 +226395,USB-C Charging Cable,1,11.95,2019-07-25 14:27:00,123 5th St, San Francisco,CA,94016 +226396,ThinkPad Laptop,1,999.99,2019-07-31 17:13:00,452 Elm St, Los Angeles,CA,90001 +226397,AA Batteries (4-pack),1,3.84,2019-07-16 11:21:00,110 Lincoln St, Austin,TX,73301 +226398,Lightning Charging Cable,1,14.95,2019-07-31 12:00:00,81 Walnut St, San Francisco,CA,94016 +226399,AA Batteries (4-pack),2,3.84,2019-07-06 10:47:00,625 Cherry St, Boston,MA,02215 +226400,Wired Headphones,1,11.99,2019-07-25 15:42:00,308 Forest St, San Francisco,CA,94016 +226401,Lightning Charging Cable,1,14.95,2019-07-08 12:52:00,847 North St, San Francisco,CA,94016 +226402,AAA Batteries (4-pack),2,2.99,2019-07-03 19:45:00,772 Chestnut St, San Francisco,CA,94016 +226403,Apple Airpods Headphones,1,150.0,2019-07-03 05:15:00,986 Sunset St, New York City,NY,10001 +226404,Flatscreen TV,1,300.0,2019-07-11 22:44:00,383 River St, New York City,NY,10001 +226405,AA Batteries (4-pack),1,3.84,2019-07-01 15:48:00,757 9th St, Boston,MA,02215 +226406,AAA Batteries (4-pack),1,2.99,2019-07-09 18:36:00,242 Lincoln St, Seattle,WA,98101 +226407,AA Batteries (4-pack),5,3.84,2019-07-16 12:03:00,864 9th St, New York City,NY,10001 +226408,AAA Batteries (4-pack),1,2.99,2019-07-30 02:35:00,748 13th St, Dallas,TX,75001 +226409,Flatscreen TV,1,300.0,2019-07-04 13:38:00,392 South St, San Francisco,CA,94016 +226410,Vareebadd Phone,1,400.0,2019-07-05 15:27:00,831 Lakeview St, San Francisco,CA,94016 +226411,27in FHD Monitor,1,149.99,2019-07-19 18:25:00,315 Johnson St, Los Angeles,CA,90001 +226412,USB-C Charging Cable,1,11.95,2019-07-12 12:34:00,369 Meadow St, San Francisco,CA,94016 +226413,20in Monitor,1,109.99,2019-07-08 14:24:00,279 8th St, Boston,MA,02215 +226414,AAA Batteries (4-pack),2,2.99,2019-07-30 21:45:00,395 Hill St, San Francisco,CA,94016 +226415,34in Ultrawide Monitor,1,379.99,2019-07-03 23:08:00,185 Cedar St, Austin,TX,73301 +226416,USB-C Charging Cable,3,11.95,2019-07-23 23:38:00,233 Forest St, Boston,MA,02215 +226417,AAA Batteries (4-pack),2,2.99,2019-07-08 09:56:00,502 Willow St, New York City,NY,10001 +226418,Lightning Charging Cable,1,14.95,2019-07-05 23:31:00,191 11th St, New York City,NY,10001 +226419,20in Monitor,1,109.99,2019-07-09 22:06:00,988 Spruce St, San Francisco,CA,94016 +226420,34in Ultrawide Monitor,1,379.99,2019-07-25 15:56:00,179 Johnson St, Austin,TX,73301 +226421,Google Phone,1,600.0,2019-07-28 17:21:00,162 14th St, San Francisco,CA,94016 +226422,Wired Headphones,1,11.99,2019-07-02 07:00:00,173 Sunset St, Dallas,TX,75001 +226423,USB-C Charging Cable,1,11.95,2019-07-25 22:41:00,568 Washington St, San Francisco,CA,94016 +226424,ThinkPad Laptop,1,999.99,2019-07-22 11:04:00,550 West St, Portland,OR,97035 +226425,USB-C Charging Cable,1,11.95,2019-07-31 08:18:00,36 Meadow St, San Francisco,CA,94016 +226426,Bose SoundSport Headphones,1,99.99,2019-07-02 17:02:00,338 Hill St, New York City,NY,10001 +226427,34in Ultrawide Monitor,1,379.99,2019-07-10 00:29:00,679 Jefferson St, New York City,NY,10001 +226428,AA Batteries (4-pack),1,3.84,2019-07-16 16:25:00,854 4th St, San Francisco,CA,94016 +226429,Wired Headphones,1,11.99,2019-07-28 16:04:00,251 Hickory St, San Francisco,CA,94016 +226430,AAA Batteries (4-pack),1,2.99,2019-07-28 15:09:00,278 Jackson St, New York City,NY,10001 +226431,USB-C Charging Cable,1,11.95,2019-07-15 13:09:00,330 Jefferson St, Los Angeles,CA,90001 +226432,LG Washing Machine,1,600.0,2019-07-01 21:31:00,422 Cedar St, Atlanta,GA,30301 +226433,27in FHD Monitor,1,149.99,2019-07-01 23:03:00,855 Washington St, Seattle,WA,98101 +226434,Lightning Charging Cable,1,14.95,2019-07-16 00:07:00,530 Willow St, Boston,MA,02215 +226435,Wired Headphones,1,11.99,2019-07-03 00:03:00,170 Adams St, San Francisco,CA,94016 +226436,Wired Headphones,1,11.99,2019-07-18 08:31:00,326 Center St, San Francisco,CA,94016 +226437,iPhone,1,700.0,2019-07-04 11:33:00,161 Madison St, Boston,MA,02215 +226437,Apple Airpods Headphones,1,150.0,2019-07-04 11:33:00,161 Madison St, Boston,MA,02215 +226437,Wired Headphones,1,11.99,2019-07-04 11:33:00,161 Madison St, Boston,MA,02215 +226438,Lightning Charging Cable,1,14.95,2019-07-05 14:17:00,394 Jefferson St, Portland,ME,04101 +226439,Macbook Pro Laptop,1,1700.0,2019-07-15 18:07:00,471 Pine St, Boston,MA,02215 +226440,Wired Headphones,2,11.99,2019-07-25 01:26:00,329 Ridge St, Austin,TX,73301 +226441,27in FHD Monitor,1,149.99,2019-07-02 08:10:00,265 Chestnut St, New York City,NY,10001 +226442,Apple Airpods Headphones,1,150.0,2019-07-06 00:17:00,555 Wilson St, Boston,MA,02215 +226443,20in Monitor,1,109.99,2019-07-23 12:07:00,913 13th St, Boston,MA,02215 +226444,AAA Batteries (4-pack),1,2.99,2019-07-02 10:44:00,766 Sunset St, Los Angeles,CA,90001 +226445,AAA Batteries (4-pack),1,2.99,2019-07-09 13:55:00,492 10th St, San Francisco,CA,94016 +226446,Google Phone,1,600.0,2019-07-03 13:42:00,726 Maple St, Dallas,TX,75001 +226447,27in 4K Gaming Monitor,1,389.99,2019-07-16 11:59:00,971 10th St, San Francisco,CA,94016 +226448,Apple Airpods Headphones,1,150.0,2019-07-15 14:55:00,443 River St, Austin,TX,73301 +226449,Apple Airpods Headphones,1,150.0,2019-07-06 14:56:00,6 Adams St, New York City,NY,10001 +226450,Bose SoundSport Headphones,1,99.99,2019-07-03 13:26:00,184 4th St, San Francisco,CA,94016 +226451,AA Batteries (4-pack),1,3.84,2019-07-24 18:27:00,390 12th St, New York City,NY,10001 +226452,Bose SoundSport Headphones,1,99.99,2019-07-16 07:17:00,391 Hickory St, San Francisco,CA,94016 +226453,27in FHD Monitor,1,149.99,2019-07-16 23:39:00,738 North St, Atlanta,GA,30301 +226454,Wired Headphones,1,11.99,2019-07-13 19:44:00,757 Cedar St, New York City,NY,10001 +226455,AAA Batteries (4-pack),2,2.99,2019-07-14 22:03:00,974 13th St, Portland,ME,04101 +226456,Wired Headphones,1,11.99,2019-07-26 19:31:00,428 South St, Dallas,TX,75001 +226457,USB-C Charging Cable,1,11.95,2019-07-03 09:26:00,303 Chestnut St, Los Angeles,CA,90001 +226458,Bose SoundSport Headphones,1,99.99,2019-07-16 14:24:00,853 Elm St, Los Angeles,CA,90001 +226459,Lightning Charging Cable,1,14.95,2019-07-26 09:58:00,104 Pine St, New York City,NY,10001 +226460,Wired Headphones,1,11.99,2019-07-12 18:24:00,958 Maple St, San Francisco,CA,94016 +226461,AAA Batteries (4-pack),2,2.99,2019-07-26 14:50:00,413 13th St, Dallas,TX,75001 +226462,AA Batteries (4-pack),1,3.84,2019-07-15 11:14:00,516 2nd St, Los Angeles,CA,90001 +226463,Wired Headphones,1,11.99,2019-07-09 00:10:00,811 13th St, San Francisco,CA,94016 +226464,27in 4K Gaming Monitor,1,389.99,2019-07-18 20:02:00,431 North St, Dallas,TX,75001 +226465,AA Batteries (4-pack),1,3.84,2019-07-08 20:11:00,226 Park St, San Francisco,CA,94016 +226466,Wired Headphones,1,11.99,2019-07-18 12:23:00,121 1st St, San Francisco,CA,94016 +226467,Flatscreen TV,1,300.0,2019-07-26 16:17:00,771 Willow St, San Francisco,CA,94016 +226468,Macbook Pro Laptop,1,1700.0,2019-07-01 19:47:00,949 5th St, San Francisco,CA,94016 +226469,Lightning Charging Cable,1,14.95,2019-07-16 14:54:00,408 Jefferson St, Austin,TX,73301 +226470,USB-C Charging Cable,1,11.95,2019-07-26 10:23:00,396 West St, San Francisco,CA,94016 +226471,Google Phone,1,600.0,2019-07-07 18:14:00,190 9th St, San Francisco,CA,94016 +226471,USB-C Charging Cable,1,11.95,2019-07-07 18:14:00,190 9th St, San Francisco,CA,94016 +226472,ThinkPad Laptop,1,999.99,2019-07-17 22:49:00,888 Willow St, San Francisco,CA,94016 +226473,Wired Headphones,1,11.99,2019-07-13 09:09:00,833 Lincoln St, Los Angeles,CA,90001 +226474,Bose SoundSport Headphones,1,99.99,2019-07-31 17:57:00,68 Highland St, Los Angeles,CA,90001 +226475,AAA Batteries (4-pack),1,2.99,2019-07-30 18:09:00,972 Main St, San Francisco,CA,94016 +226476,AA Batteries (4-pack),1,3.84,2019-07-07 20:25:00,509 10th St, San Francisco,CA,94016 +226477,Flatscreen TV,1,300.0,2019-07-04 11:36:00,627 Chestnut St, Portland,OR,97035 +226478,27in 4K Gaming Monitor,1,389.99,2019-07-12 07:01:00,199 10th St, New York City,NY,10001 +226479,Bose SoundSport Headphones,1,99.99,2019-07-04 22:21:00,344 Spruce St, New York City,NY,10001 +226480,Macbook Pro Laptop,1,1700.0,2019-07-18 18:20:00,864 4th St, Boston,MA,02215 +226481,27in FHD Monitor,1,149.99,2019-07-27 18:52:00,603 9th St, Atlanta,GA,30301 +226482,USB-C Charging Cable,1,11.95,2019-07-16 09:00:00,302 Lakeview St, San Francisco,CA,94016 +226483,AAA Batteries (4-pack),9,2.99,2019-07-20 23:28:00,867 Sunset St, San Francisco,CA,94016 +226484,20in Monitor,1,109.99,2019-07-24 20:45:00,42 Center St, New York City,NY,10001 +226485,Bose SoundSport Headphones,1,99.99,2019-07-09 10:08:00,46 Elm St, San Francisco,CA,94016 +226486,AAA Batteries (4-pack),1,2.99,2019-07-21 17:55:00,602 West St, Los Angeles,CA,90001 +226487,Wired Headphones,1,11.99,2019-07-17 14:38:00,735 Washington St, Boston,MA,02215 +226488,ThinkPad Laptop,1,999.99,2019-07-14 15:03:00,153 13th St, Dallas,TX,75001 +226489,AAA Batteries (4-pack),1,2.99,2019-07-30 10:36:00,306 Pine St, San Francisco,CA,94016 +226490,Wired Headphones,1,11.99,2019-07-19 10:53:00,596 Lincoln St, Dallas,TX,75001 +226491,Macbook Pro Laptop,1,1700.0,2019-07-25 14:44:00,365 Spruce St, San Francisco,CA,94016 +226492,AA Batteries (4-pack),1,3.84,2019-07-10 16:00:00,593 6th St, Los Angeles,CA,90001 +226493,34in Ultrawide Monitor,1,379.99,2019-07-31 11:51:00,626 Dogwood St, New York City,NY,10001 +226494,iPhone,1,700.0,2019-07-15 00:47:00,264 10th St, San Francisco,CA,94016 +226495,Apple Airpods Headphones,1,150.0,2019-07-11 22:12:00,646 14th St, San Francisco,CA,94016 +226496,27in 4K Gaming Monitor,1,389.99,2019-07-21 22:55:00,848 Cherry St, New York City,NY,10001 +226497,Apple Airpods Headphones,1,150.0,2019-07-01 17:01:00,709 Lake St, New York City,NY,10001 +226498,AAA Batteries (4-pack),3,2.99,2019-07-21 20:09:00,861 Pine St, Boston,MA,02215 +226499,AAA Batteries (4-pack),2,2.99,2019-07-30 10:03:00,817 Ridge St, Dallas,TX,75001 +226500,AAA Batteries (4-pack),1,2.99,2019-07-02 17:49:00,9 4th St, Dallas,TX,75001 +226501,Wired Headphones,1,11.99,2019-07-30 01:40:00,933 Church St, San Francisco,CA,94016 +226502,27in FHD Monitor,1,149.99,2019-07-17 20:07:00,213 Washington St, Boston,MA,02215 +226503,AAA Batteries (4-pack),3,2.99,2019-07-10 11:14:00,449 10th St, New York City,NY,10001 +226504,Wired Headphones,1,11.99,2019-07-16 15:24:00,370 Chestnut St, Seattle,WA,98101 +226505,AAA Batteries (4-pack),1,2.99,2019-07-22 08:35:00,602 7th St, Seattle,WA,98101 +226506,34in Ultrawide Monitor,1,379.99,2019-07-15 22:38:00,459 4th St, New York City,NY,10001 +226507,27in 4K Gaming Monitor,1,389.99,2019-07-05 20:27:00,166 Willow St, San Francisco,CA,94016 +226508,Apple Airpods Headphones,1,150.0,2019-07-07 14:52:00,594 West St, Austin,TX,73301 +226509,Lightning Charging Cable,1,14.95,2019-07-26 19:13:00,174 West St, San Francisco,CA,94016 +226510,Macbook Pro Laptop,1,1700.0,2019-07-14 19:52:00,690 5th St, Los Angeles,CA,90001 +226511,Lightning Charging Cable,1,14.95,2019-07-08 14:59:00,300 Jefferson St, Los Angeles,CA,90001 +226512,Lightning Charging Cable,1,14.95,2019-07-20 15:32:00,526 2nd St, New York City,NY,10001 +226513,Apple Airpods Headphones,1,150.0,2019-07-18 17:10:00,261 Jackson St, New York City,NY,10001 +226514,USB-C Charging Cable,1,11.95,2019-07-28 23:45:00,448 South St, San Francisco,CA,94016 +226515,Lightning Charging Cable,1,14.95,2019-07-09 17:45:00,669 Main St, Austin,TX,73301 +226516,Wired Headphones,1,11.99,2019-07-07 17:09:00,604 Center St, Portland,OR,97035 +226517,USB-C Charging Cable,2,11.95,2019-07-31 15:57:00,498 South St, Boston,MA,02215 +226518,AA Batteries (4-pack),1,3.84,2019-07-21 23:56:00,682 14th St, Los Angeles,CA,90001 +226519,ThinkPad Laptop,1,999.99,2019-07-18 21:20:00,174 Hill St, San Francisco,CA,94016 +226520,Lightning Charging Cable,1,14.95,2019-07-24 17:07:00,660 Cherry St, Los Angeles,CA,90001 +226521,AA Batteries (4-pack),1,3.84,2019-07-26 17:14:00,500 Johnson St, Seattle,WA,98101 +226522,USB-C Charging Cable,1,11.95,2019-07-31 21:44:00,897 13th St, Portland,OR,97035 +226523,AA Batteries (4-pack),1,3.84,2019-07-19 16:10:00,742 Maple St, San Francisco,CA,94016 +226524,Bose SoundSport Headphones,1,99.99,2019-07-29 13:31:00,694 Cedar St, San Francisco,CA,94016 +226525,Google Phone,1,600.0,2019-07-03 15:32:00,785 12th St, San Francisco,CA,94016 +226526,AAA Batteries (4-pack),1,2.99,2019-07-02 18:05:00,926 Chestnut St, Atlanta,GA,30301 +226527,Lightning Charging Cable,1,14.95,2019-07-28 10:13:00,448 Jackson St, Seattle,WA,98101 +226528,Lightning Charging Cable,1,14.95,2019-07-15 10:24:00,370 Lincoln St, New York City,NY,10001 +226529,Google Phone,1,600.0,2019-07-27 09:37:00,497 Lincoln St, Portland,OR,97035 +226530,Flatscreen TV,1,300.0,2019-07-02 21:17:00,747 River St, Austin,TX,73301 +226531,AAA Batteries (4-pack),1,2.99,2019-07-31 18:20:00,105 Sunset St, San Francisco,CA,94016 +226532,Apple Airpods Headphones,1,150.0,2019-07-30 20:04:00,200 13th St, Dallas,TX,75001 +226533,Bose SoundSport Headphones,1,99.99,2019-07-02 14:23:00,110 River St, Boston,MA,02215 +226534,AAA Batteries (4-pack),1,2.99,2019-07-04 17:41:00,225 Wilson St, Dallas,TX,75001 +226535,34in Ultrawide Monitor,1,379.99,2019-07-14 14:59:00,669 South St, Austin,TX,73301 +226536,Apple Airpods Headphones,1,150.0,2019-07-16 21:13:00,392 North St, New York City,NY,10001 +226537,AAA Batteries (4-pack),1,2.99,2019-07-24 21:13:00,548 Adams St, Boston,MA,02215 +226538,Bose SoundSport Headphones,1,99.99,2019-07-04 13:54:00,544 Pine St, Los Angeles,CA,90001 +226539,AA Batteries (4-pack),3,3.84,2019-07-25 13:35:00,960 Lincoln St, New York City,NY,10001 +226540,27in 4K Gaming Monitor,1,389.99,2019-07-18 12:53:00,554 Willow St, Dallas,TX,75001 +226541,Bose SoundSport Headphones,1,99.99,2019-07-25 10:59:00,865 Elm St, San Francisco,CA,94016 +226542,Wired Headphones,1,11.99,2019-07-14 21:12:00,657 10th St, Atlanta,GA,30301 +226543,34in Ultrawide Monitor,1,379.99,2019-07-10 08:47:00,44 4th St, San Francisco,CA,94016 +226544,34in Ultrawide Monitor,1,379.99,2019-07-22 15:18:00,589 Willow St, San Francisco,CA,94016 +226545,AAA Batteries (4-pack),1,2.99,2019-07-22 15:25:00,883 Wilson St, New York City,NY,10001 +226546,34in Ultrawide Monitor,1,379.99,2019-07-25 15:22:00,512 Maple St, Boston,MA,02215 +226547,27in FHD Monitor,1,149.99,2019-07-23 12:23:00,519 Jefferson St, Austin,TX,73301 +226548,Macbook Pro Laptop,1,1700.0,2019-07-13 20:12:00,299 Main St, Dallas,TX,75001 +226549,AA Batteries (4-pack),1,3.84,2019-07-20 11:41:00,368 6th St, Dallas,TX,75001 +226550,USB-C Charging Cable,1,11.95,2019-07-07 16:27:00,745 Lake St, Los Angeles,CA,90001 +226551,Apple Airpods Headphones,1,150.0,2019-07-08 19:52:00,628 Washington St, San Francisco,CA,94016 +226552,Lightning Charging Cable,1,14.95,2019-07-23 07:47:00,127 5th St, New York City,NY,10001 +226553,20in Monitor,1,109.99,2019-07-18 00:27:00,216 Walnut St, Los Angeles,CA,90001 +226554,AA Batteries (4-pack),1,3.84,2019-07-16 18:24:00,876 Hill St, San Francisco,CA,94016 +226555,Bose SoundSport Headphones,1,99.99,2019-07-27 18:02:00,434 Madison St, San Francisco,CA,94016 +226556,Apple Airpods Headphones,1,150.0,2019-07-25 12:21:00,539 8th St, San Francisco,CA,94016 +226557,Bose SoundSport Headphones,1,99.99,2019-07-19 11:35:00,726 Cherry St, Atlanta,GA,30301 +226558,AA Batteries (4-pack),2,3.84,2019-07-29 14:17:00,147 Lakeview St, Dallas,TX,75001 +226559,Lightning Charging Cable,1,14.95,2019-07-18 20:01:00,165 North St, San Francisco,CA,94016 +226560,27in 4K Gaming Monitor,1,389.99,2019-07-25 09:03:00,715 Lakeview St, New York City,NY,10001 +226561,27in FHD Monitor,1,149.99,2019-07-30 18:12:00,852 South St, San Francisco,CA,94016 +226562,Flatscreen TV,1,300.0,2019-07-08 18:40:00,369 Cedar St, Boston,MA,02215 +226563,USB-C Charging Cable,1,11.95,2019-07-19 21:37:00,223 River St, Boston,MA,02215 +226564,Lightning Charging Cable,1,14.95,2019-07-01 22:18:00,984 Cedar St, San Francisco,CA,94016 +226565,27in FHD Monitor,1,149.99,2019-07-31 15:17:00,273 10th St, Los Angeles,CA,90001 +226566,LG Dryer,1,600.0,2019-07-19 13:44:00,493 Jefferson St, San Francisco,CA,94016 +226567,Vareebadd Phone,1,400.0,2019-07-21 11:18:00,726 Elm St, Seattle,WA,98101 +226568,Macbook Pro Laptop,1,1700.0,2019-07-24 23:30:00,774 Elm St, Austin,TX,73301 +226569,iPhone,1,700.0,2019-07-09 17:34:00,35 River St, Dallas,TX,75001 +226570,34in Ultrawide Monitor,1,379.99,2019-07-22 12:24:00,149 Church St, Atlanta,GA,30301 +226571,27in 4K Gaming Monitor,1,389.99,2019-07-11 14:51:00,774 Ridge St, Los Angeles,CA,90001 +226572,Bose SoundSport Headphones,1,99.99,2019-07-21 17:22:00,545 Lakeview St, San Francisco,CA,94016 +226573,AAA Batteries (4-pack),3,2.99,2019-07-19 21:35:00,954 10th St, San Francisco,CA,94016 +226574,ThinkPad Laptop,1,999.99,2019-07-30 17:03:00,980 Cedar St, San Francisco,CA,94016 +226575,AA Batteries (4-pack),1,3.84,2019-07-19 01:56:00,337 Main St, San Francisco,CA,94016 +226576,AAA Batteries (4-pack),3,2.99,2019-07-08 22:24:00,995 Meadow St, Los Angeles,CA,90001 +226577,Bose SoundSport Headphones,1,99.99,2019-07-10 13:16:00,757 Dogwood St, Portland,OR,97035 +226578,Lightning Charging Cable,1,14.95,2019-07-19 18:35:00,931 Park St, New York City,NY,10001 +226579,Bose SoundSport Headphones,1,99.99,2019-07-22 08:53:00,930 North St, New York City,NY,10001 +226580,Bose SoundSport Headphones,1,99.99,2019-07-28 12:40:00,659 Park St, San Francisco,CA,94016 +226581,Macbook Pro Laptop,1,1700.0,2019-07-18 09:18:00,636 Jackson St, New York City,NY,10001 +226582,AA Batteries (4-pack),2,3.84,2019-07-22 16:46:00,898 Spruce St, Boston,MA,02215 +226583,AAA Batteries (4-pack),1,2.99,2019-07-09 07:56:00,653 North St, Los Angeles,CA,90001 +226584,27in 4K Gaming Monitor,1,389.99,2019-07-17 11:44:00,451 Walnut St, Austin,TX,73301 +226585,USB-C Charging Cable,1,11.95,2019-07-24 13:20:00,696 Cedar St, Dallas,TX,75001 +226586,USB-C Charging Cable,1,11.95,2019-07-07 13:10:00,357 Jackson St, San Francisco,CA,94016 +226587,Wired Headphones,1,11.99,2019-07-16 19:05:00,645 11th St, San Francisco,CA,94016 +226588,Wired Headphones,1,11.99,2019-07-08 07:26:00,567 Jefferson St, Boston,MA,02215 +226589,Macbook Pro Laptop,1,1700.0,2019-07-03 23:38:00,399 Pine St, San Francisco,CA,94016 +226590,AAA Batteries (4-pack),1,2.99,2019-07-20 15:52:00,189 6th St, Boston,MA,02215 +226591,Wired Headphones,1,11.99,2019-07-15 13:24:00,5 Forest St, Seattle,WA,98101 +226592,Macbook Pro Laptop,1,1700.0,2019-07-21 10:02:00,969 Johnson St, Boston,MA,02215 +226593,Bose SoundSport Headphones,1,99.99,2019-07-24 13:40:00,871 Hill St, San Francisco,CA,94016 +226594,Wired Headphones,1,11.99,2019-07-03 09:02:00,782 Highland St, Atlanta,GA,30301 +226595,Wired Headphones,1,11.99,2019-07-12 13:28:00,21 Ridge St, Boston,MA,02215 +226596,Flatscreen TV,1,300.0,2019-07-08 17:54:00,869 Madison St, Seattle,WA,98101 +226597,Wired Headphones,1,11.99,2019-07-26 16:00:00,370 Pine St, San Francisco,CA,94016 +226598,Wired Headphones,1,11.99,2019-07-06 19:46:00,403 2nd St, San Francisco,CA,94016 +226599,AAA Batteries (4-pack),1,2.99,2019-07-13 08:06:00,424 Forest St, Seattle,WA,98101 +226600,iPhone,1,700.0,2019-07-04 15:05:00,621 14th St, San Francisco,CA,94016 +226601,Lightning Charging Cable,1,14.95,2019-07-06 00:12:00,766 7th St, Portland,OR,97035 +226602,AA Batteries (4-pack),1,3.84,2019-07-11 22:06:00,981 Wilson St, Portland,OR,97035 +226603,Macbook Pro Laptop,1,1700.0,2019-07-20 15:18:00,272 4th St, San Francisco,CA,94016 +226604,20in Monitor,1,109.99,2019-07-31 01:13:00,655 Lincoln St, Seattle,WA,98101 +226605,USB-C Charging Cable,1,11.95,2019-07-27 09:13:00,7 Lincoln St, Dallas,TX,75001 +226606,27in 4K Gaming Monitor,1,389.99,2019-07-29 17:57:00,451 Walnut St, Seattle,WA,98101 +226607,Google Phone,1,600.0,2019-07-24 05:01:00,137 Lake St, Dallas,TX,75001 +226608,Macbook Pro Laptop,1,1700.0,2019-07-20 10:40:00,428 10th St, San Francisco,CA,94016 +226609,Apple Airpods Headphones,1,150.0,2019-07-25 12:21:00,663 Ridge St, San Francisco,CA,94016 +226610,USB-C Charging Cable,1,11.95,2019-07-24 10:50:00,773 2nd St, San Francisco,CA,94016 +226611,Bose SoundSport Headphones,1,99.99,2019-07-11 12:23:00,43 2nd St, New York City,NY,10001 +226612,27in FHD Monitor,1,149.99,2019-07-25 12:39:00,352 West St, Dallas,TX,75001 +226613,Bose SoundSport Headphones,1,99.99,2019-07-04 22:47:00,143 9th St, San Francisco,CA,94016 +226614,Lightning Charging Cable,1,14.95,2019-07-10 11:14:00,388 9th St, San Francisco,CA,94016 +226615,AAA Batteries (4-pack),1,2.99,2019-07-10 16:08:00,526 13th St, San Francisco,CA,94016 +226616,AAA Batteries (4-pack),1,2.99,2019-07-11 18:51:00,840 Highland St, New York City,NY,10001 +226617,USB-C Charging Cable,1,11.95,2019-07-31 19:09:00,908 Pine St, Boston,MA,02215 +226618,iPhone,1,700.0,2019-07-11 22:46:00,573 Madison St, New York City,NY,10001 +226619,27in 4K Gaming Monitor,1,389.99,2019-07-14 20:07:00,376 South St, San Francisco,CA,94016 +226620,iPhone,1,700.0,2019-07-19 19:59:00,257 Willow St, Boston,MA,02215 +226621,Wired Headphones,1,11.99,2019-07-27 20:04:00,718 Adams St, San Francisco,CA,94016 +226622,Bose SoundSport Headphones,1,99.99,2019-07-12 16:21:00,921 Meadow St, San Francisco,CA,94016 +226623,USB-C Charging Cable,1,11.95,2019-07-06 08:55:00,227 Chestnut St, Los Angeles,CA,90001 +226624,Flatscreen TV,1,300.0,2019-07-22 09:35:00,369 11th St, San Francisco,CA,94016 +226625,Google Phone,1,600.0,2019-07-15 23:06:00,553 Willow St, San Francisco,CA,94016 +226625,USB-C Charging Cable,1,11.95,2019-07-15 23:06:00,553 Willow St, San Francisco,CA,94016 +226625,Wired Headphones,1,11.99,2019-07-15 23:06:00,553 Willow St, San Francisco,CA,94016 +226626,27in 4K Gaming Monitor,1,389.99,2019-07-11 14:21:00,769 Johnson St, San Francisco,CA,94016 +226627,Macbook Pro Laptop,1,1700.0,2019-07-21 17:08:00,328 8th St, Seattle,WA,98101 +226627,20in Monitor,1,109.99,2019-07-21 17:08:00,328 8th St, Seattle,WA,98101 +226628,Wired Headphones,1,11.99,2019-07-09 22:30:00,789 Park St, Boston,MA,02215 +226629,Lightning Charging Cable,1,14.95,2019-07-24 13:58:00,114 Spruce St, New York City,NY,10001 +226630,Bose SoundSport Headphones,1,99.99,2019-07-20 12:52:00,741 River St, Portland,OR,97035 +226631,Apple Airpods Headphones,1,150.0,2019-07-03 03:14:00,837 Spruce St, Portland,ME,04101 +226632,AA Batteries (4-pack),1,3.84,2019-07-12 17:35:00,562 West St, Atlanta,GA,30301 +226633,Apple Airpods Headphones,1,150.0,2019-07-10 16:23:00,668 Spruce St, Portland,OR,97035 +226634,iPhone,1,700.0,2019-07-06 15:15:00,948 Pine St, San Francisco,CA,94016 +226635,Lightning Charging Cable,1,14.95,2019-07-04 14:34:00,278 4th St, Dallas,TX,75001 +226636,Google Phone,1,600.0,2019-07-10 09:00:00,78 7th St, New York City,NY,10001 +226637,USB-C Charging Cable,1,11.95,2019-07-07 16:41:00,597 8th St, Los Angeles,CA,90001 +226638,AA Batteries (4-pack),1,3.84,2019-07-07 11:26:00,439 Spruce St, New York City,NY,10001 +226639,Apple Airpods Headphones,1,150.0,2019-07-02 14:46:00,455 Highland St, Boston,MA,02215 +226640,AA Batteries (4-pack),2,3.84,2019-07-07 09:06:00,418 Forest St, Boston,MA,02215 +226641,34in Ultrawide Monitor,1,379.99,2019-07-02 20:50:00,708 Washington St, Dallas,TX,75001 +226642,AA Batteries (4-pack),2,3.84,2019-07-26 11:33:00,527 Hickory St, Dallas,TX,75001 +226643,Lightning Charging Cable,1,14.95,2019-07-31 05:14:00,493 West St, San Francisco,CA,94016 +226644,Bose SoundSport Headphones,1,99.99,2019-07-26 00:34:00,65 Spruce St, Los Angeles,CA,90001 +226645,20in Monitor,1,109.99,2019-07-02 18:06:00,195 Johnson St, Boston,MA,02215 +226646,AAA Batteries (4-pack),3,2.99,2019-07-07 14:56:00,246 6th St, Los Angeles,CA,90001 +226647,20in Monitor,1,109.99,2019-07-30 06:57:00,952 Wilson St, San Francisco,CA,94016 +226648,AAA Batteries (4-pack),1,2.99,2019-07-12 21:30:00,351 Dogwood St, Dallas,TX,75001 +226649,Macbook Pro Laptop,1,1700.0,2019-07-04 22:48:00,869 Dogwood St, San Francisco,CA,94016 +226650,27in FHD Monitor,1,149.99,2019-07-13 10:58:00,68 2nd St, Los Angeles,CA,90001 +226651,Wired Headphones,1,11.99,2019-07-20 11:33:00,904 Park St, Portland,OR,97035 +226652,Apple Airpods Headphones,1,150.0,2019-07-11 10:01:00,664 8th St, Los Angeles,CA,90001 +226653,Lightning Charging Cable,1,14.95,2019-07-24 19:20:00,70 South St, San Francisco,CA,94016 +226654,Apple Airpods Headphones,1,150.0,2019-07-12 09:16:00,972 South St, Dallas,TX,75001 +226655,USB-C Charging Cable,1,11.95,2019-07-11 12:32:00,770 5th St, New York City,NY,10001 +226656,Wired Headphones,1,11.99,2019-07-22 19:52:00,648 Park St, Atlanta,GA,30301 +226657,AA Batteries (4-pack),1,3.84,2019-07-28 21:36:00,243 6th St, Boston,MA,02215 +226658,Google Phone,1,600.0,2019-07-09 20:31:00,94 Jackson St, Portland,OR,97035 +226659,Vareebadd Phone,1,400.0,2019-07-11 09:06:00,491 Washington St, Austin,TX,73301 +226659,USB-C Charging Cable,1,11.95,2019-07-11 09:06:00,491 Washington St, Austin,TX,73301 +226660,Flatscreen TV,1,300.0,2019-07-28 17:54:00,189 North St, Portland,OR,97035 +226661,Apple Airpods Headphones,1,150.0,2019-07-21 10:19:00,92 Highland St, New York City,NY,10001 +226662,27in 4K Gaming Monitor,1,389.99,2019-07-09 13:04:00,417 Main St, New York City,NY,10001 +226663,Apple Airpods Headphones,1,150.0,2019-07-17 16:44:00,16 Willow St, San Francisco,CA,94016 +226664,20in Monitor,1,109.99,2019-07-15 12:04:00,924 Adams St, San Francisco,CA,94016 +226665,20in Monitor,1,109.99,2019-07-13 16:02:00,672 Jackson St, Seattle,WA,98101 +226666,Vareebadd Phone,1,400.0,2019-07-28 05:44:00,146 13th St, Seattle,WA,98101 +226667,iPhone,1,700.0,2019-07-23 21:36:00,547 10th St, Los Angeles,CA,90001 +226667,Lightning Charging Cable,1,14.95,2019-07-23 21:36:00,547 10th St, Los Angeles,CA,90001 +226668,Apple Airpods Headphones,1,150.0,2019-07-12 06:32:00,626 Meadow St, New York City,NY,10001 +226669,ThinkPad Laptop,1,999.99,2019-07-29 06:56:00,77 Hickory St, Atlanta,GA,30301 +226670,iPhone,1,700.0,2019-07-10 00:23:00,158 Meadow St, San Francisco,CA,94016 +226671,Wired Headphones,1,11.99,2019-07-20 13:42:00,241 Lakeview St, San Francisco,CA,94016 +226672,20in Monitor,1,109.99,2019-07-22 13:33:00,416 Maple St, Los Angeles,CA,90001 +226673,Wired Headphones,1,11.99,2019-07-26 12:36:00,225 Sunset St, New York City,NY,10001 +226674,Apple Airpods Headphones,1,150.0,2019-07-24 21:48:00,978 Cedar St, Los Angeles,CA,90001 +226675,iPhone,1,700.0,2019-07-09 01:09:00,398 9th St, Los Angeles,CA,90001 +226676,Flatscreen TV,1,300.0,2019-07-04 23:38:00,865 West St, Boston,MA,02215 +226677,AAA Batteries (4-pack),2,2.99,2019-07-30 00:35:00,225 Park St, San Francisco,CA,94016 +226678,Lightning Charging Cable,1,14.95,2019-07-14 21:38:00,882 Washington St, New York City,NY,10001 +226679,AA Batteries (4-pack),1,3.84,2019-07-12 12:14:00,306 Spruce St, Dallas,TX,75001 +226680,USB-C Charging Cable,1,11.95,2019-07-04 18:03:00,108 Ridge St, Austin,TX,73301 +226681,27in 4K Gaming Monitor,1,389.99,2019-07-21 14:18:00,289 Pine St, Austin,TX,73301 +226682,USB-C Charging Cable,1,11.95,2019-07-06 11:43:00,10 Maple St, Dallas,TX,75001 +226683,AA Batteries (4-pack),1,3.84,2019-07-15 18:45:00,895 Madison St, Seattle,WA,98101 +226684,USB-C Charging Cable,1,11.95,2019-07-30 21:11:00,393 Madison St, Atlanta,GA,30301 +226685,Wired Headphones,1,11.99,2019-07-02 12:03:00,665 11th St, Los Angeles,CA,90001 +226686,AAA Batteries (4-pack),2,2.99,2019-07-29 22:59:00,960 Madison St, San Francisco,CA,94016 +226687,USB-C Charging Cable,1,11.95,2019-07-30 09:57:00,876 Main St, Seattle,WA,98101 +226688,Apple Airpods Headphones,1,150.0,2019-07-04 16:48:00,810 Forest St, New York City,NY,10001 +226689,Bose SoundSport Headphones,1,99.99,2019-07-12 10:03:00,180 Adams St, Dallas,TX,75001 +226690,34in Ultrawide Monitor,1,379.99,2019-07-09 14:12:00,412 Hickory St, Portland,ME,04101 +226691,AAA Batteries (4-pack),1,2.99,2019-07-06 21:30:00,731 Hill St, San Francisco,CA,94016 +226692,USB-C Charging Cable,1,11.95,2019-07-11 16:57:00,848 Washington St, Seattle,WA,98101 +226693,AAA Batteries (4-pack),2,2.99,2019-07-15 18:17:00,547 Forest St, San Francisco,CA,94016 +226694,Wired Headphones,1,11.99,2019-07-13 20:37:00,764 13th St, Seattle,WA,98101 +226695,Wired Headphones,1,11.99,2019-07-09 18:24:00,641 River St, Boston,MA,02215 +226696,AA Batteries (4-pack),1,3.84,2019-07-28 18:48:00,216 1st St, San Francisco,CA,94016 +226697,Apple Airpods Headphones,1,150.0,2019-07-05 13:21:00,46 Johnson St, Austin,TX,73301 +226698,AAA Batteries (4-pack),1,2.99,2019-07-18 09:10:00,484 11th St, San Francisco,CA,94016 +226699,USB-C Charging Cable,1,11.95,2019-07-06 18:08:00,432 7th St, New York City,NY,10001 +226700,Bose SoundSport Headphones,1,99.99,2019-07-21 16:47:00,866 North St, Seattle,WA,98101 +226701,AA Batteries (4-pack),1,3.84,2019-07-13 13:55:00,630 Jefferson St, San Francisco,CA,94016 +226702,Macbook Pro Laptop,1,1700.0,2019-07-29 19:31:00,954 North St, New York City,NY,10001 +226703,Lightning Charging Cable,1,14.95,2019-07-16 17:12:00,312 Center St, San Francisco,CA,94016 +226704,27in FHD Monitor,1,149.99,2019-07-17 21:09:00,79 11th St, Atlanta,GA,30301 +226705,Bose SoundSport Headphones,1,99.99,2019-07-02 10:10:00,637 Jefferson St, San Francisco,CA,94016 +226706,Lightning Charging Cable,1,14.95,2019-07-05 17:20:00,799 West St, Seattle,WA,98101 +226707,Flatscreen TV,1,300.0,2019-07-28 22:23:00,119 Meadow St, Seattle,WA,98101 +226708,Wired Headphones,1,11.99,2019-07-22 18:02:00,556 South St, New York City,NY,10001 +226709,AAA Batteries (4-pack),1,2.99,2019-07-02 14:54:00,10 Cedar St, Dallas,TX,75001 +226710,USB-C Charging Cable,1,11.95,2019-07-02 10:51:00,267 North St, Portland,ME,04101 +226711,27in FHD Monitor,1,149.99,2019-07-12 19:44:00,82 Maple St, Boston,MA,02215 +226711,Macbook Pro Laptop,1,1700.0,2019-07-12 19:44:00,82 Maple St, Boston,MA,02215 +226712,Lightning Charging Cable,1,14.95,2019-07-09 06:37:00,472 9th St, New York City,NY,10001 +226713,Lightning Charging Cable,1,14.95,2019-07-16 17:13:00,201 Forest St, San Francisco,CA,94016 +226714,AA Batteries (4-pack),1,3.84,2019-07-28 10:14:00,31 Wilson St, Atlanta,GA,30301 +226715,Apple Airpods Headphones,1,150.0,2019-07-09 10:42:00,702 Walnut St, Seattle,WA,98101 +226716,Lightning Charging Cable,1,14.95,2019-07-04 15:39:00,805 10th St, Los Angeles,CA,90001 +226717,Wired Headphones,1,11.99,2019-07-05 12:46:00,805 8th St, Los Angeles,CA,90001 +226718,AAA Batteries (4-pack),3,2.99,2019-07-27 16:38:00,159 Lincoln St, Atlanta,GA,30301 +226719,ThinkPad Laptop,1,999.99,2019-07-23 13:43:00,387 4th St, Los Angeles,CA,90001 +226720,ThinkPad Laptop,1,999.99,2019-07-24 03:52:00,441 Cherry St, New York City,NY,10001 +226721,Bose SoundSport Headphones,1,99.99,2019-07-29 12:29:00,872 5th St, Portland,OR,97035 +226722,AA Batteries (4-pack),1,3.84,2019-07-06 22:05:00,329 Maple St, Portland,OR,97035 +226723,Flatscreen TV,1,300.0,2019-07-12 23:42:00,638 Cherry St, Seattle,WA,98101 +226724,Wired Headphones,1,11.99,2019-07-09 13:21:00,253 Lake St, Seattle,WA,98101 +226725,AAA Batteries (4-pack),1,2.99,2019-07-17 22:20:00,975 Meadow St, New York City,NY,10001 +226726,ThinkPad Laptop,1,999.99,2019-07-19 20:07:00,6 West St, San Francisco,CA,94016 +226726,USB-C Charging Cable,1,11.95,2019-07-19 20:07:00,6 West St, San Francisco,CA,94016 +226727,20in Monitor,1,109.99,2019-07-17 07:07:00,630 Spruce St, Seattle,WA,98101 +226728,Apple Airpods Headphones,1,150.0,2019-07-01 11:09:00,377 1st St, New York City,NY,10001 +226729,AA Batteries (4-pack),1,3.84,2019-07-07 09:14:00,414 Sunset St, Dallas,TX,75001 +226729,Apple Airpods Headphones,1,150.0,2019-07-07 09:14:00,414 Sunset St, Dallas,TX,75001 +226730,Wired Headphones,1,11.99,2019-07-05 12:54:00,83 Jefferson St, Los Angeles,CA,90001 +226731,Lightning Charging Cable,1,14.95,2019-07-27 12:26:00,838 Johnson St, New York City,NY,10001 +226732,USB-C Charging Cable,1,11.95,2019-07-25 16:36:00,520 5th St, Los Angeles,CA,90001 +226733,AAA Batteries (4-pack),1,2.99,2019-07-05 15:21:00,961 Forest St, Los Angeles,CA,90001 +226734,LG Washing Machine,1,600.0,2019-07-15 11:04:00,358 South St, Boston,MA,02215 +226735,Wired Headphones,1,11.99,2019-07-13 07:05:00,458 Sunset St, Los Angeles,CA,90001 +226736,27in FHD Monitor,1,149.99,2019-07-01 12:48:00,333 1st St, San Francisco,CA,94016 +226737,USB-C Charging Cable,1,11.95,2019-07-29 16:06:00,947 9th St, San Francisco,CA,94016 +226738,USB-C Charging Cable,1,11.95,2019-07-08 00:26:00,160 Meadow St, New York City,NY,10001 +226739,34in Ultrawide Monitor,1,379.99,2019-07-08 05:12:00,343 Wilson St, Austin,TX,73301 +226740,34in Ultrawide Monitor,1,379.99,2019-07-16 12:00:00,732 Cedar St, San Francisco,CA,94016 +226741,Lightning Charging Cable,1,14.95,2019-07-16 20:08:00,687 Pine St, Atlanta,GA,30301 +226742,Lightning Charging Cable,1,14.95,2019-07-11 14:45:00,311 5th St, New York City,NY,10001 +226743,Bose SoundSport Headphones,1,99.99,2019-07-17 12:42:00,61 4th St, Boston,MA,02215 +226744,Lightning Charging Cable,1,14.95,2019-07-22 02:41:00,582 Main St, Boston,MA,02215 +226745,Lightning Charging Cable,1,14.95,2019-07-02 14:51:00,423 River St, San Francisco,CA,94016 +226746,AA Batteries (4-pack),1,3.84,2019-07-10 13:38:00,630 Lincoln St, New York City,NY,10001 +226747,Lightning Charging Cable,1,14.95,2019-07-01 17:34:00,25 Elm St, San Francisco,CA,94016 +226748,34in Ultrawide Monitor,1,379.99,2019-07-18 13:40:00,486 Madison St, Los Angeles,CA,90001 +226749,AAA Batteries (4-pack),3,2.99,2019-07-12 19:59:00,768 6th St, New York City,NY,10001 +226750,20in Monitor,1,109.99,2019-07-12 17:22:00,279 Washington St, San Francisco,CA,94016 +226751,Apple Airpods Headphones,1,150.0,2019-07-20 07:25:00,409 Jackson St, Seattle,WA,98101 +226752,Vareebadd Phone,1,400.0,2019-07-21 15:28:00,538 Ridge St, San Francisco,CA,94016 +226753,Lightning Charging Cable,2,14.95,2019-07-27 16:50:00,929 Lake St, Boston,MA,02215 +226754,AAA Batteries (4-pack),3,2.99,2019-07-16 09:27:00,51 1st St, San Francisco,CA,94016 +226755,20in Monitor,1,109.99,2019-07-26 22:20:00,81 Church St, New York City,NY,10001 +226756,USB-C Charging Cable,1,11.95,2019-07-08 12:27:00,319 Chestnut St, Boston,MA,02215 +226757,Apple Airpods Headphones,1,150.0,2019-07-04 18:23:00,387 Willow St, Seattle,WA,98101 +226758,Lightning Charging Cable,1,14.95,2019-07-24 21:18:00,835 Lincoln St, Atlanta,GA,30301 +226759,Apple Airpods Headphones,1,150.0,2019-07-24 15:33:00,498 6th St, New York City,NY,10001 +226760,Lightning Charging Cable,1,14.95,2019-07-24 14:43:00,314 Center St, Seattle,WA,98101 +226761,AAA Batteries (4-pack),2,2.99,2019-07-21 18:50:00,845 Highland St, San Francisco,CA,94016 +226762,Lightning Charging Cable,1,14.95,2019-07-11 18:58:00,772 12th St, New York City,NY,10001 +226763,AAA Batteries (4-pack),1,2.99,2019-07-05 18:00:00,25 South St, New York City,NY,10001 +226764,Apple Airpods Headphones,1,150.0,2019-07-18 09:46:00,891 9th St, Atlanta,GA,30301 +226765,AA Batteries (4-pack),1,3.84,2019-07-18 21:32:00,779 14th St, Los Angeles,CA,90001 +226766,27in FHD Monitor,1,149.99,2019-07-01 17:47:00,835 Highland St, Atlanta,GA,30301 +226766,USB-C Charging Cable,1,11.95,2019-07-01 17:47:00,835 Highland St, Atlanta,GA,30301 +226767,27in FHD Monitor,1,149.99,2019-07-21 22:19:00,676 Park St, Atlanta,GA,30301 +226768,ThinkPad Laptop,1,999.99,2019-07-20 15:59:00,77 6th St, Boston,MA,02215 +226769,Wired Headphones,1,11.99,2019-07-14 19:17:00,167 Walnut St, Los Angeles,CA,90001 +226770,AAA Batteries (4-pack),1,2.99,2019-07-25 00:37:00,639 2nd St, San Francisco,CA,94016 +226771,Wired Headphones,1,11.99,2019-07-04 13:43:00,768 Hill St, San Francisco,CA,94016 +226772,AA Batteries (4-pack),1,3.84,2019-07-02 20:22:00,579 River St, New York City,NY,10001 +226773,AAA Batteries (4-pack),1,2.99,2019-07-29 19:10:00,498 Johnson St, Boston,MA,02215 +226774,Macbook Pro Laptop,1,1700.0,2019-07-31 19:07:00,57 13th St, Seattle,WA,98101 +226775,Apple Airpods Headphones,1,150.0,2019-07-10 23:21:00,592 13th St, Boston,MA,02215 +226776,Lightning Charging Cable,1,14.95,2019-07-17 09:36:00,538 Cherry St, New York City,NY,10001 +226777,AA Batteries (4-pack),2,3.84,2019-07-02 01:37:00,411 Forest St, New York City,NY,10001 +226778,Wired Headphones,1,11.99,2019-07-22 18:02:00,773 Johnson St, Seattle,WA,98101 +226779,27in 4K Gaming Monitor,1,389.99,2019-07-23 13:15:00,423 11th St, Los Angeles,CA,90001 +226780,20in Monitor,1,109.99,2019-07-17 23:36:00,548 Park St, Seattle,WA,98101 +226781,Apple Airpods Headphones,1,150.0,2019-07-08 20:20:00,819 Elm St, Atlanta,GA,30301 +226782,Bose SoundSport Headphones,1,99.99,2019-07-28 01:43:00,884 River St, San Francisco,CA,94016 +226783,USB-C Charging Cable,1,11.95,2019-07-11 18:39:00,734 13th St, San Francisco,CA,94016 +226784,Bose SoundSport Headphones,1,99.99,2019-07-08 12:42:00,831 12th St, Atlanta,GA,30301 +226785,Wired Headphones,2,11.99,2019-07-16 17:29:00,591 Madison St, Dallas,TX,75001 +226786,AAA Batteries (4-pack),1,2.99,2019-07-01 11:06:00,800 Willow St, Austin,TX,73301 +226787,AAA Batteries (4-pack),1,2.99,2019-07-25 17:34:00,129 Dogwood St, Los Angeles,CA,90001 +226788,34in Ultrawide Monitor,1,379.99,2019-07-01 14:08:00,126 Johnson St, Seattle,WA,98101 +226789,USB-C Charging Cable,1,11.95,2019-07-02 16:53:00,718 9th St, San Francisco,CA,94016 +226790,27in FHD Monitor,1,149.99,2019-07-11 04:05:00,648 Sunset St, Atlanta,GA,30301 +226791,AAA Batteries (4-pack),1,2.99,2019-07-20 05:34:00,399 Johnson St, Atlanta,GA,30301 +226792,AAA Batteries (4-pack),1,2.99,2019-07-29 17:23:00,743 7th St, San Francisco,CA,94016 +226793,AAA Batteries (4-pack),1,2.99,2019-07-10 14:38:00,303 Pine St, San Francisco,CA,94016 +226794,USB-C Charging Cable,1,11.95,2019-07-06 21:19:00,35 Elm St, Boston,MA,02215 +226795,27in 4K Gaming Monitor,1,389.99,2019-07-10 13:33:00,269 Center St, Dallas,TX,75001 +226796,AA Batteries (4-pack),1,3.84,2019-07-21 05:54:00,781 Forest St, Dallas,TX,75001 +226797,20in Monitor,1,109.99,2019-07-10 23:33:00,99 5th St, San Francisco,CA,94016 +226798,27in 4K Gaming Monitor,1,389.99,2019-07-18 20:49:00,504 North St, Boston,MA,02215 +226799,USB-C Charging Cable,1,11.95,2019-07-30 13:02:00,412 Forest St, San Francisco,CA,94016 +226800,20in Monitor,1,109.99,2019-07-25 14:12:00,769 Walnut St, New York City,NY,10001 +226801,27in 4K Gaming Monitor,1,389.99,2019-07-07 13:04:00,739 River St, Austin,TX,73301 +226802,Lightning Charging Cable,1,14.95,2019-07-19 04:17:00,388 Sunset St, Boston,MA,02215 +226803,iPhone,1,700.0,2019-07-31 13:17:00,26 Walnut St, Atlanta,GA,30301 +226804,Wired Headphones,1,11.99,2019-07-10 21:33:00,831 Johnson St, San Francisco,CA,94016 +226805,27in FHD Monitor,1,149.99,2019-07-31 21:12:00,469 Lake St, Atlanta,GA,30301 +226806,USB-C Charging Cable,1,11.95,2019-07-30 17:37:00,199 Spruce St, San Francisco,CA,94016 +226807,AAA Batteries (4-pack),3,2.99,2019-07-15 20:19:00,870 Walnut St, San Francisco,CA,94016 +226808,Lightning Charging Cable,1,14.95,2019-07-25 21:22:00,435 9th St, New York City,NY,10001 +226809,Bose SoundSport Headphones,1,99.99,2019-07-03 17:11:00,407 8th St, New York City,NY,10001 +226810,AA Batteries (4-pack),1,3.84,2019-07-03 18:46:00,68 South St, New York City,NY,10001 +226811,iPhone,1,700.0,2019-07-16 06:44:00,541 Lakeview St, Boston,MA,02215 +226812,Google Phone,1,600.0,2019-07-28 11:24:00,41 8th St, New York City,NY,10001 +226813,27in FHD Monitor,1,149.99,2019-07-23 19:27:00,326 5th St, Portland,OR,97035 +226814,Lightning Charging Cable,1,14.95,2019-07-13 15:54:00,489 Lincoln St, New York City,NY,10001 +226815,AAA Batteries (4-pack),3,2.99,2019-07-29 15:08:00,385 Forest St, Boston,MA,02215 +226816,Google Phone,1,600.0,2019-07-22 19:51:00,397 14th St, Atlanta,GA,30301 +226816,USB-C Charging Cable,1,11.95,2019-07-22 19:51:00,397 14th St, Atlanta,GA,30301 +226817,Lightning Charging Cable,1,14.95,2019-07-09 12:15:00,471 Hickory St, New York City,NY,10001 +226818,27in 4K Gaming Monitor,1,389.99,2019-07-14 11:56:00,559 South St, Los Angeles,CA,90001 +226819,Bose SoundSport Headphones,1,99.99,2019-07-22 04:07:00,782 Meadow St, Boston,MA,02215 +226820,AA Batteries (4-pack),2,3.84,2019-07-01 06:55:00,262 7th St, New York City,NY,10001 +226821,Apple Airpods Headphones,1,150.0,2019-07-24 00:58:00,309 Washington St, Austin,TX,73301 +226822,Wired Headphones,1,11.99,2019-07-30 20:49:00,881 West St, Los Angeles,CA,90001 +226823,USB-C Charging Cable,1,11.95,2019-07-12 19:40:00,621 Willow St, Los Angeles,CA,90001 +226824,27in 4K Gaming Monitor,1,389.99,2019-07-05 15:52:00,850 Chestnut St, Los Angeles,CA,90001 +226825,Google Phone,1,600.0,2019-07-03 18:26:00,799 Cedar St, Atlanta,GA,30301 +226826,AA Batteries (4-pack),1,3.84,2019-07-03 19:55:00,820 Hickory St, Portland,ME,04101 +226827,34in Ultrawide Monitor,1,379.99,2019-07-19 17:47:00,867 10th St, Los Angeles,CA,90001 +226828,AAA Batteries (4-pack),1,2.99,2019-07-05 19:43:00,751 6th St, New York City,NY,10001 +226829,Flatscreen TV,1,300.0,2019-07-27 19:25:00,855 Spruce St, San Francisco,CA,94016 +226830,Wired Headphones,1,11.99,2019-07-08 16:09:00,426 Meadow St, Los Angeles,CA,90001 +226831,Wired Headphones,1,11.99,2019-07-24 16:13:00,436 Cedar St, San Francisco,CA,94016 +226832,AA Batteries (4-pack),1,3.84,2019-07-26 18:06:00,794 Cherry St, San Francisco,CA,94016 +226833,Google Phone,1,600.0,2019-07-12 21:44:00,763 Madison St, Boston,MA,02215 +226834,USB-C Charging Cable,1,11.95,2019-07-28 19:05:00,65 Spruce St, San Francisco,CA,94016 +226835,AAA Batteries (4-pack),1,2.99,2019-07-21 19:04:00,542 Walnut St, Seattle,WA,98101 +226836,AAA Batteries (4-pack),3,2.99,2019-07-27 11:53:00,597 10th St, Atlanta,GA,30301 +226837,Wired Headphones,1,11.99,2019-07-28 13:01:00,606 Wilson St, Los Angeles,CA,90001 +226838,USB-C Charging Cable,1,11.95,2019-07-12 21:28:00,452 11th St, Los Angeles,CA,90001 +226839,Bose SoundSport Headphones,1,99.99,2019-07-08 19:03:00,362 10th St, Austin,TX,73301 +226840,AAA Batteries (4-pack),1,2.99,2019-07-22 20:48:00,797 Dogwood St, Portland,OR,97035 +226841,Bose SoundSport Headphones,1,99.99,2019-07-11 16:14:00,756 11th St, Seattle,WA,98101 +226842,AA Batteries (4-pack),4,3.84,2019-07-04 17:43:00,952 Washington St, Boston,MA,02215 +226843,iPhone,1,700.0,2019-07-31 22:09:00,680 River St, San Francisco,CA,94016 +226844,Flatscreen TV,1,300.0,2019-07-17 19:55:00,983 13th St, Boston,MA,02215 +226845,iPhone,1,700.0,2019-07-25 19:13:00,625 Maple St, Austin,TX,73301 +226846,USB-C Charging Cable,1,11.95,2019-07-15 12:03:00,573 Wilson St, Boston,MA,02215 +226847,Lightning Charging Cable,1,14.95,2019-07-07 22:07:00,79 Church St, Los Angeles,CA,90001 +226848,27in FHD Monitor,1,149.99,2019-07-03 11:50:00,465 Jackson St, New York City,NY,10001 +226849,AA Batteries (4-pack),3,3.84,2019-07-01 16:38:00,720 2nd St, San Francisco,CA,94016 +226850,USB-C Charging Cable,1,11.95,2019-07-27 08:21:00,434 Washington St, Boston,MA,02215 +226851,AA Batteries (4-pack),1,3.84,2019-07-07 13:53:00,789 Sunset St, Atlanta,GA,30301 +226852,USB-C Charging Cable,5,11.95,2019-07-15 21:19:00,916 13th St, San Francisco,CA,94016 +226853,Apple Airpods Headphones,1,150.0,2019-07-23 22:52:00,144 14th St, San Francisco,CA,94016 +226854,27in FHD Monitor,1,149.99,2019-07-05 18:59:00,688 Johnson St, Seattle,WA,98101 +226855,Macbook Pro Laptop,1,1700.0,2019-07-13 15:44:00,602 Chestnut St, San Francisco,CA,94016 +226856,ThinkPad Laptop,1,999.99,2019-07-02 13:39:00,621 River St, Portland,OR,97035 +226857,27in FHD Monitor,1,149.99,2019-07-07 19:07:00,801 1st St, Dallas,TX,75001 +226858,USB-C Charging Cable,1,11.95,2019-07-02 17:56:00,55 Willow St, Atlanta,GA,30301 +226859,Wired Headphones,1,11.99,2019-07-16 21:23:00,209 Forest St, Los Angeles,CA,90001 +226860,Wired Headphones,1,11.99,2019-07-05 19:14:00,425 1st St, Dallas,TX,75001 +226861,Apple Airpods Headphones,1,150.0,2019-07-09 18:19:00,737 12th St, Seattle,WA,98101 +226862,Google Phone,1,600.0,2019-07-12 07:45:00,894 Maple St, Dallas,TX,75001 +226863,AA Batteries (4-pack),2,3.84,2019-07-12 21:40:00,94 6th St, Austin,TX,73301 +226864,USB-C Charging Cable,1,11.95,2019-07-06 18:36:00,317 Elm St, Boston,MA,02215 +226865,ThinkPad Laptop,1,999.99,2019-07-25 16:05:00,285 Sunset St, New York City,NY,10001 +226866,Bose SoundSport Headphones,1,99.99,2019-07-10 20:02:00,526 Church St, San Francisco,CA,94016 +226867,Google Phone,1,600.0,2019-07-23 10:45:00,974 Cedar St, Dallas,TX,75001 +226867,USB-C Charging Cable,1,11.95,2019-07-23 10:45:00,974 Cedar St, Dallas,TX,75001 +226868,AAA Batteries (4-pack),1,2.99,2019-07-13 10:32:00,234 Lakeview St, San Francisco,CA,94016 +226868,Wired Headphones,1,11.99,2019-07-13 10:32:00,234 Lakeview St, San Francisco,CA,94016 +226869,Apple Airpods Headphones,1,150.0,2019-07-12 12:14:00,198 Center St, San Francisco,CA,94016 +226870,USB-C Charging Cable,2,11.95,2019-07-30 14:37:00,602 Meadow St, Portland,OR,97035 +226871,Wired Headphones,1,11.99,2019-07-18 08:36:00,482 Dogwood St, Los Angeles,CA,90001 +226872,USB-C Charging Cable,1,11.95,2019-07-07 00:06:00,669 Center St, Atlanta,GA,30301 +226873,Macbook Pro Laptop,1,1700.0,2019-07-31 11:53:00,272 14th St, Los Angeles,CA,90001 +226874,ThinkPad Laptop,1,999.99,2019-07-30 12:50:00,195 6th St, Boston,MA,02215 +226875,Bose SoundSport Headphones,1,99.99,2019-07-19 08:51:00,934 Wilson St, Los Angeles,CA,90001 +226876,AAA Batteries (4-pack),2,2.99,2019-07-31 13:45:00,548 Sunset St, San Francisco,CA,94016 +226877,Lightning Charging Cable,2,14.95,2019-07-15 23:19:00,119 2nd St, Boston,MA,02215 +226878,27in 4K Gaming Monitor,1,389.99,2019-07-30 19:17:00,160 Spruce St, San Francisco,CA,94016 +226879,Apple Airpods Headphones,1,150.0,2019-07-01 22:58:00,75 Hickory St, Los Angeles,CA,90001 +226880,AA Batteries (4-pack),1,3.84,2019-07-09 20:27:00,71 1st St, Seattle,WA,98101 +226881,ThinkPad Laptop,1,999.99,2019-07-12 19:39:00,47 West St, Boston,MA,02215 +226882,Lightning Charging Cable,1,14.95,2019-07-18 22:33:00,617 Jackson St, New York City,NY,10001 +226883,Flatscreen TV,1,300.0,2019-07-08 17:31:00,628 Highland St, Dallas,TX,75001 +226884,Google Phone,1,600.0,2019-07-21 07:18:00,992 Jackson St, San Francisco,CA,94016 +226885,Bose SoundSport Headphones,1,99.99,2019-07-06 16:26:00,481 Spruce St, San Francisco,CA,94016 +226886,AA Batteries (4-pack),2,3.84,2019-07-10 22:15:00,891 Wilson St, New York City,NY,10001 +226887,AAA Batteries (4-pack),1,2.99,2019-07-08 21:34:00,750 7th St, Boston,MA,02215 +226888,Bose SoundSport Headphones,1,99.99,2019-07-20 21:03:00,492 Maple St, Los Angeles,CA,90001 +226889,USB-C Charging Cable,1,11.95,2019-07-04 20:35:00,378 Madison St, New York City,NY,10001 +226890,Macbook Pro Laptop,1,1700.0,2019-07-19 16:34:00,606 South St, San Francisco,CA,94016 +226891,LG Washing Machine,1,600.0,2019-07-04 17:33:00,145 Dogwood St, New York City,NY,10001 +226892,AA Batteries (4-pack),1,3.84,2019-07-25 13:33:00,275 2nd St, Austin,TX,73301 +226893,AA Batteries (4-pack),1,3.84,2019-07-14 11:31:00,815 6th St, San Francisco,CA,94016 +226894,27in FHD Monitor,1,149.99,2019-07-05 08:34:00,18 Spruce St, San Francisco,CA,94016 +226895,Bose SoundSport Headphones,1,99.99,2019-07-05 23:46:00,421 Elm St, Seattle,WA,98101 +226896,USB-C Charging Cable,1,11.95,2019-07-29 21:24:00,199 Main St, San Francisco,CA,94016 +226897,27in 4K Gaming Monitor,1,389.99,2019-07-25 14:54:00,641 Dogwood St, New York City,NY,10001 +226898,Lightning Charging Cable,3,14.95,2019-07-06 14:22:00,174 4th St, Dallas,TX,75001 +226899,Apple Airpods Headphones,1,150.0,2019-07-06 01:03:00,630 West St, Boston,MA,02215 +226900,USB-C Charging Cable,1,11.95,2019-07-21 21:51:00,967 11th St, San Francisco,CA,94016 +226901,iPhone,1,700.0,2019-07-31 19:12:00,284 Forest St, San Francisco,CA,94016 +226901,Lightning Charging Cable,1,14.95,2019-07-31 19:12:00,284 Forest St, San Francisco,CA,94016 +226901,Wired Headphones,1,11.99,2019-07-31 19:12:00,284 Forest St, San Francisco,CA,94016 +226902,AA Batteries (4-pack),4,3.84,2019-07-31 13:22:00,689 7th St, Portland,OR,97035 +226903,34in Ultrawide Monitor,1,379.99,2019-07-21 09:44:00,122 Maple St, New York City,NY,10001 +226904,AA Batteries (4-pack),1,3.84,2019-07-24 12:34:00,811 Elm St, Los Angeles,CA,90001 +226905,AAA Batteries (4-pack),2,2.99,2019-07-19 12:15:00,379 Cedar St, San Francisco,CA,94016 +226906,Google Phone,1,600.0,2019-07-16 22:26:00,869 Adams St, San Francisco,CA,94016 +226907,AA Batteries (4-pack),2,3.84,2019-07-16 11:48:00,207 1st St, Austin,TX,73301 +226908,Flatscreen TV,1,300.0,2019-07-19 21:39:00,965 Madison St, Boston,MA,02215 +226909,AAA Batteries (4-pack),1,2.99,2019-07-26 13:25:00,708 12th St, New York City,NY,10001 +226910,AAA Batteries (4-pack),2,2.99,2019-07-15 10:11:00,55 Cherry St, Los Angeles,CA,90001 +226911,AAA Batteries (4-pack),1,2.99,2019-07-22 19:59:00,102 10th St, San Francisco,CA,94016 +226912,Wired Headphones,1,11.99,2019-07-28 16:05:00,654 9th St, San Francisco,CA,94016 +226913,Wired Headphones,1,11.99,2019-07-27 11:20:00,502 12th St, Los Angeles,CA,90001 +226914,Wired Headphones,1,11.99,2019-07-21 10:30:00,768 13th St, Atlanta,GA,30301 +226915,34in Ultrawide Monitor,1,379.99,2019-07-22 15:30:00,98 South St, Portland,ME,04101 +226916,AAA Batteries (4-pack),1,2.99,2019-07-01 15:59:00,163 Main St, San Francisco,CA,94016 +226917,AAA Batteries (4-pack),2,2.99,2019-07-10 18:35:00,880 Cedar St, San Francisco,CA,94016 +226918,Lightning Charging Cable,1,14.95,2019-07-21 19:06:00,762 Meadow St, Seattle,WA,98101 +226919,Lightning Charging Cable,1,14.95,2019-07-29 17:28:00,888 12th St, Boston,MA,02215 +226920,Lightning Charging Cable,1,14.95,2019-07-31 17:05:00,47 2nd St, Dallas,TX,75001 +226921,USB-C Charging Cable,1,11.95,2019-07-14 16:16:00,404 North St, Atlanta,GA,30301 +226922,34in Ultrawide Monitor,1,379.99,2019-07-05 13:11:00,122 Jackson St, Los Angeles,CA,90001 +226923,AAA Batteries (4-pack),1,2.99,2019-07-16 14:46:00,376 Lakeview St, San Francisco,CA,94016 +226924,Flatscreen TV,1,300.0,2019-07-28 15:04:00,880 Adams St, Austin,TX,73301 +226925,AA Batteries (4-pack),1,3.84,2019-07-19 10:32:00,920 Church St, San Francisco,CA,94016 +226926,AA Batteries (4-pack),1,3.84,2019-07-05 16:11:00,48 River St, New York City,NY,10001 +226927,34in Ultrawide Monitor,1,379.99,2019-07-13 11:45:00,166 Pine St, Portland,OR,97035 +226928,Wired Headphones,1,11.99,2019-07-23 11:03:00,438 Meadow St, Dallas,TX,75001 +226929,AAA Batteries (4-pack),1,2.99,2019-07-16 13:15:00,203 Forest St, New York City,NY,10001 +226930,Wired Headphones,1,11.99,2019-07-26 21:59:00,105 Lake St, Los Angeles,CA,90001 +226931,27in FHD Monitor,1,149.99,2019-07-15 18:11:00,994 11th St, Los Angeles,CA,90001 +226932,Lightning Charging Cable,1,14.95,2019-07-08 22:56:00,596 Jefferson St, Los Angeles,CA,90001 +226933,Lightning Charging Cable,1,14.95,2019-07-31 14:19:00,40 Lakeview St, San Francisco,CA,94016 +226934,ThinkPad Laptop,1,999.99,2019-07-18 13:43:00,345 Washington St, San Francisco,CA,94016 +226935,Google Phone,1,600.0,2019-07-07 17:09:00,549 Jackson St, Los Angeles,CA,90001 +226935,USB-C Charging Cable,1,11.95,2019-07-07 17:09:00,549 Jackson St, Los Angeles,CA,90001 +226935,Wired Headphones,1,11.99,2019-07-07 17:09:00,549 Jackson St, Los Angeles,CA,90001 +226936,Bose SoundSport Headphones,1,99.99,2019-07-26 21:03:00,812 North St, San Francisco,CA,94016 +226937,AA Batteries (4-pack),1,3.84,2019-07-03 10:59:00,423 Elm St, Portland,ME,04101 +226938,USB-C Charging Cable,1,11.95,2019-07-01 09:23:00,89 6th St, Boston,MA,02215 +226939,Wired Headphones,1,11.99,2019-07-24 00:38:00,725 8th St, Boston,MA,02215 +226940,AAA Batteries (4-pack),1,2.99,2019-07-07 10:05:00,123 North St, Austin,TX,73301 +226941,AAA Batteries (4-pack),1,2.99,2019-07-28 16:39:00,135 Lakeview St, Atlanta,GA,30301 +226942,Wired Headphones,1,11.99,2019-07-01 21:08:00,830 Washington St, Los Angeles,CA,90001 +226943,USB-C Charging Cable,1,11.95,2019-07-18 13:54:00,556 Pine St, San Francisco,CA,94016 +226944,AA Batteries (4-pack),1,3.84,2019-07-23 19:01:00,359 2nd St, Los Angeles,CA,90001 +226945,AAA Batteries (4-pack),2,2.99,2019-07-23 14:40:00,278 River St, San Francisco,CA,94016 +226946,27in FHD Monitor,1,149.99,2019-07-27 18:04:00,571 Johnson St, San Francisco,CA,94016 +226947,AAA Batteries (4-pack),1,2.99,2019-07-24 09:47:00,433 Lake St, San Francisco,CA,94016 +226948,AA Batteries (4-pack),2,3.84,2019-07-13 20:49:00,972 North St, San Francisco,CA,94016 +226949,AAA Batteries (4-pack),2,2.99,2019-07-13 19:48:00,656 Spruce St, Atlanta,GA,30301 +226950,Wired Headphones,1,11.99,2019-07-03 14:43:00,651 South St, Atlanta,GA,30301 +226951,Google Phone,1,600.0,2019-07-18 19:58:00,556 West St, San Francisco,CA,94016 +226952,Wired Headphones,1,11.99,2019-07-27 20:28:00,404 Jackson St, Seattle,WA,98101 +226953,AAA Batteries (4-pack),1,2.99,2019-07-05 21:04:00,619 Pine St, San Francisco,CA,94016 +226954,Bose SoundSport Headphones,1,99.99,2019-07-30 16:35:00,224 Park St, San Francisco,CA,94016 +226955,AA Batteries (4-pack),1,3.84,2019-07-07 22:28:00,377 Lakeview St, San Francisco,CA,94016 +226956,Wired Headphones,1,11.99,2019-07-18 10:55:00,935 12th St, Los Angeles,CA,90001 +226957,AAA Batteries (4-pack),2,2.99,2019-07-31 16:42:00,548 Sunset St, Atlanta,GA,30301 +226958,USB-C Charging Cable,2,11.95,2019-07-10 15:52:00,547 Lake St, Seattle,WA,98101 +226959,27in FHD Monitor,1,149.99,2019-07-16 21:07:00,631 Dogwood St, Los Angeles,CA,90001 +226960,AAA Batteries (4-pack),1,2.99,2019-07-30 10:49:00,323 13th St, Boston,MA,02215 +226961,AA Batteries (4-pack),1,3.84,2019-07-16 10:16:00,37 Pine St, Boston,MA,02215 +226962,Wired Headphones,1,11.99,2019-07-17 20:18:00,589 12th St, Atlanta,GA,30301 +226963,USB-C Charging Cable,1,11.95,2019-07-15 12:57:00,387 Dogwood St, Portland,OR,97035 +226964,Bose SoundSport Headphones,1,99.99,2019-07-24 07:27:00,691 Main St, Austin,TX,73301 +226965,Lightning Charging Cable,1,14.95,2019-07-09 10:35:00,918 Washington St, Dallas,TX,75001 +226966,Lightning Charging Cable,1,14.95,2019-07-06 11:05:00,200 Hill St, New York City,NY,10001 +226967,Wired Headphones,1,11.99,2019-07-06 15:55:00,323 Elm St, Los Angeles,CA,90001 +226968,AAA Batteries (4-pack),1,2.99,2019-07-25 20:04:00,198 South St, Boston,MA,02215 +226969,AA Batteries (4-pack),1,3.84,2019-07-16 22:35:00,564 Maple St, Dallas,TX,75001 +226970,USB-C Charging Cable,1,11.95,2019-07-27 20:10:00,916 Elm St, Austin,TX,73301 +226971,Lightning Charging Cable,1,14.95,2019-07-21 13:48:00,833 Dogwood St, San Francisco,CA,94016 +226972,Apple Airpods Headphones,1,150.0,2019-07-15 19:54:00,839 7th St, San Francisco,CA,94016 +226973,20in Monitor,1,109.99,2019-07-08 20:32:00,43 Jefferson St, Seattle,WA,98101 +226974,AAA Batteries (4-pack),2,2.99,2019-07-28 12:51:00,438 Spruce St, San Francisco,CA,94016 +226975,AA Batteries (4-pack),1,3.84,2019-07-17 12:13:00,444 Center St, San Francisco,CA,94016 +226976,Flatscreen TV,1,300.0,2019-07-05 15:35:00,354 Lakeview St, San Francisco,CA,94016 +226977,AA Batteries (4-pack),1,3.84,2019-07-31 22:29:00,565 Johnson St, San Francisco,CA,94016 +226978,AA Batteries (4-pack),1,3.84,2019-07-06 18:29:00,122 South St, San Francisco,CA,94016 +226979,Lightning Charging Cable,1,14.95,2019-07-06 11:58:00,413 Elm St, Los Angeles,CA,90001 +226980,USB-C Charging Cable,2,11.95,2019-07-09 17:10:00,926 Main St, Dallas,TX,75001 +226981,AA Batteries (4-pack),1,3.84,2019-07-03 17:30:00,632 Johnson St, San Francisco,CA,94016 +226982,Google Phone,1,600.0,2019-07-19 04:00:00,696 Chestnut St, Boston,MA,02215 +226983,USB-C Charging Cable,1,11.95,2019-07-25 20:54:00,200 Madison St, San Francisco,CA,94016 +226984,Lightning Charging Cable,1,14.95,2019-07-24 20:24:00,868 Lincoln St, Atlanta,GA,30301 +226985,USB-C Charging Cable,2,11.95,2019-07-09 08:51:00,981 Lake St, Boston,MA,02215 +226986,27in 4K Gaming Monitor,1,389.99,2019-07-27 21:30:00,7 Cedar St, San Francisco,CA,94016 +226987,Wired Headphones,1,11.99,2019-07-17 18:22:00,502 Highland St, San Francisco,CA,94016 +226988,27in 4K Gaming Monitor,1,389.99,2019-07-08 09:20:00,439 10th St, Portland,OR,97035 +226989,Wired Headphones,1,11.99,2019-07-16 19:43:00,705 Jefferson St, Atlanta,GA,30301 +226990,Wired Headphones,1,11.99,2019-07-02 17:05:00,470 Elm St, San Francisco,CA,94016 +226991,34in Ultrawide Monitor,1,379.99,2019-07-07 13:00:00,700 8th St, Austin,TX,73301 +226992,Lightning Charging Cable,1,14.95,2019-07-26 22:10:00,174 14th St, Atlanta,GA,30301 +226993,USB-C Charging Cable,1,11.95,2019-07-24 19:55:00,405 Washington St, Boston,MA,02215 +226994,AAA Batteries (4-pack),1,2.99,2019-07-05 12:27:00,119 2nd St, San Francisco,CA,94016 +226995,ThinkPad Laptop,1,999.99,2019-07-10 19:13:00,819 Spruce St, Portland,ME,04101 +226996,Wired Headphones,1,11.99,2019-07-01 11:14:00,312 Sunset St, Austin,TX,73301 +226997,AAA Batteries (4-pack),1,2.99,2019-07-19 09:56:00,265 Cedar St, Austin,TX,73301 +226998,20in Monitor,1,109.99,2019-07-31 12:36:00,224 Maple St, Los Angeles,CA,90001 +226999,27in FHD Monitor,1,149.99,2019-07-04 14:47:00,778 Jefferson St, Boston,MA,02215 +227000,AA Batteries (4-pack),1,3.84,2019-07-15 18:22:00,118 Highland St, Boston,MA,02215 +227001,USB-C Charging Cable,1,11.95,2019-07-30 08:35:00,187 Cherry St, Seattle,WA,98101 +227002,AA Batteries (4-pack),1,3.84,2019-07-02 15:54:00,637 Madison St, San Francisco,CA,94016 +227003,Apple Airpods Headphones,1,150.0,2019-07-15 17:22:00,926 Lake St, San Francisco,CA,94016 +227004,Lightning Charging Cable,1,14.95,2019-07-05 18:13:00,924 Hill St, Los Angeles,CA,90001 +227005,USB-C Charging Cable,1,11.95,2019-07-04 18:32:00,374 11th St, New York City,NY,10001 +227006,AA Batteries (4-pack),1,3.84,2019-07-18 19:35:00,195 13th St, Los Angeles,CA,90001 +227007,USB-C Charging Cable,1,11.95,2019-07-29 23:04:00,193 Forest St, San Francisco,CA,94016 +227007,27in FHD Monitor,1,149.99,2019-07-29 23:04:00,193 Forest St, San Francisco,CA,94016 +227008,Lightning Charging Cable,2,14.95,2019-07-21 10:58:00,68 Spruce St, San Francisco,CA,94016 +227009,Bose SoundSport Headphones,1,99.99,2019-07-05 18:03:00,638 Lake St, Seattle,WA,98101 +227010,Flatscreen TV,1,300.0,2019-07-11 14:22:00,77 Lake St, Seattle,WA,98101 +227011,Bose SoundSport Headphones,1,99.99,2019-07-29 10:07:00,759 10th St, New York City,NY,10001 +227012,AAA Batteries (4-pack),1,2.99,2019-07-09 16:43:00,876 Jackson St, San Francisco,CA,94016 +227012,Lightning Charging Cable,1,14.95,2019-07-09 16:43:00,876 Jackson St, San Francisco,CA,94016 +227013,USB-C Charging Cable,1,11.95,2019-07-02 15:22:00,252 Pine St, New York City,NY,10001 +227014,Bose SoundSport Headphones,1,99.99,2019-07-18 16:38:00,827 Forest St, San Francisco,CA,94016 +227015,Bose SoundSport Headphones,1,99.99,2019-07-17 18:48:00,445 Lincoln St, Los Angeles,CA,90001 +227016,Apple Airpods Headphones,1,150.0,2019-07-12 15:13:00,577 2nd St, Seattle,WA,98101 +227017,AA Batteries (4-pack),1,3.84,2019-07-03 16:27:00,649 1st St, Portland,OR,97035 +227018,34in Ultrawide Monitor,1,379.99,2019-07-29 22:18:00,355 Cherry St, Dallas,TX,75001 +227019,AAA Batteries (4-pack),1,2.99,2019-07-06 07:57:00,722 Spruce St, San Francisco,CA,94016 +227020,AA Batteries (4-pack),1,3.84,2019-07-08 11:24:00,209 Adams St, Los Angeles,CA,90001 +227021,AA Batteries (4-pack),1,3.84,2019-07-04 22:06:00,357 Adams St, San Francisco,CA,94016 +227022,27in FHD Monitor,1,149.99,2019-07-08 12:45:00,489 Park St, Seattle,WA,98101 +227023,Lightning Charging Cable,1,14.95,2019-07-05 08:30:00,332 Cherry St, San Francisco,CA,94016 +227024,AAA Batteries (4-pack),1,2.99,2019-07-16 18:38:00,568 Madison St, New York City,NY,10001 +227025,Google Phone,1,600.0,2019-07-03 11:34:00,76 Wilson St, Los Angeles,CA,90001 +227026,Macbook Pro Laptop,1,1700.0,2019-07-04 00:26:00,801 12th St, Atlanta,GA,30301 +227027,Bose SoundSport Headphones,1,99.99,2019-07-31 15:11:00,826 Walnut St, New York City,NY,10001 +227028,USB-C Charging Cable,1,11.95,2019-07-06 15:52:00,577 5th St, Boston,MA,02215 +227029,USB-C Charging Cable,1,11.95,2019-07-31 15:49:00,299 Johnson St, Boston,MA,02215 +227030,Bose SoundSport Headphones,1,99.99,2019-07-29 08:43:00,720 Jackson St, Portland,ME,04101 +227031,AAA Batteries (4-pack),1,2.99,2019-07-03 08:13:00,185 5th St, New York City,NY,10001 +227032,Wired Headphones,1,11.99,2019-07-25 20:27:00,414 River St, Los Angeles,CA,90001 +227033,Apple Airpods Headphones,1,150.0,2019-07-27 07:37:00,520 Highland St, Portland,OR,97035 +227034,ThinkPad Laptop,1,999.99,2019-07-31 18:26:00,911 Spruce St, Los Angeles,CA,90001 +227035,USB-C Charging Cable,1,11.95,2019-07-16 13:38:00,719 Ridge St, Los Angeles,CA,90001 +227036,Lightning Charging Cable,1,14.95,2019-07-02 20:02:00,422 Elm St, Seattle,WA,98101 +227037,USB-C Charging Cable,1,11.95,2019-07-25 20:04:00,97 West St, Seattle,WA,98101 +227038,Lightning Charging Cable,1,14.95,2019-07-18 15:04:00,558 Jackson St, San Francisco,CA,94016 +227039,Apple Airpods Headphones,1,150.0,2019-07-13 13:12:00,17 Park St, Portland,OR,97035 +227040,Bose SoundSport Headphones,1,99.99,2019-07-06 10:03:00,563 Spruce St, Los Angeles,CA,90001 +227041,Lightning Charging Cable,1,14.95,2019-07-08 13:46:00,721 8th St, Seattle,WA,98101 +227042,27in FHD Monitor,1,149.99,2019-07-13 09:01:00,881 Highland St, Los Angeles,CA,90001 +227043,USB-C Charging Cable,1,11.95,2019-07-14 12:45:00,913 River St, Seattle,WA,98101 +227044,Lightning Charging Cable,1,14.95,2019-07-28 11:23:00,147 7th St, Boston,MA,02215 +227045,USB-C Charging Cable,1,11.95,2019-07-15 11:51:00,986 Maple St, Seattle,WA,98101 +227046,Flatscreen TV,1,300.0,2019-07-13 12:34:00,427 Highland St, Boston,MA,02215 +227047,ThinkPad Laptop,1,999.99,2019-07-16 11:25:00,414 Adams St, Los Angeles,CA,90001 +227048,34in Ultrawide Monitor,1,379.99,2019-07-25 13:44:00,575 Jefferson St, Dallas,TX,75001 +227049,iPhone,1,700.0,2019-07-07 22:26:00,203 13th St, Portland,OR,97035 +227050,Apple Airpods Headphones,1,150.0,2019-07-06 15:00:00,814 Cherry St, Los Angeles,CA,90001 +227051,iPhone,1,700.0,2019-07-03 17:59:00,250 Lincoln St, Boston,MA,02215 +227052,AAA Batteries (4-pack),1,2.99,2019-07-01 08:42:00,114 Jackson St, Los Angeles,CA,90001 +227053,Wired Headphones,1,11.99,2019-07-06 23:07:00,918 12th St, San Francisco,CA,94016 +227054,AA Batteries (4-pack),2,3.84,2019-07-04 10:13:00,994 6th St, Los Angeles,CA,90001 +227055,USB-C Charging Cable,1,11.95,2019-07-12 19:42:00,501 North St, Boston,MA,02215 +227056,AAA Batteries (4-pack),1,2.99,2019-07-18 14:23:00,272 North St, San Francisco,CA,94016 +227057,Lightning Charging Cable,1,14.95,2019-07-23 01:12:00,990 Park St, Atlanta,GA,30301 +227058,27in FHD Monitor,1,149.99,2019-07-03 16:04:00,878 West St, Austin,TX,73301 +227059,Apple Airpods Headphones,1,150.0,2019-07-14 17:15:00,948 Adams St, Seattle,WA,98101 +227060,AA Batteries (4-pack),1,3.84,2019-07-28 18:44:00,948 Sunset St, Portland,OR,97035 +227061,27in FHD Monitor,1,149.99,2019-07-24 14:37:00,548 Chestnut St, Portland,OR,97035 +227062,AA Batteries (4-pack),1,3.84,2019-07-02 15:37:00,627 Lakeview St, Seattle,WA,98101 +227063,AA Batteries (4-pack),2,3.84,2019-07-28 19:30:00,13 Hill St, Portland,ME,04101 +227064,iPhone,1,700.0,2019-07-03 11:55:00,510 8th St, Los Angeles,CA,90001 +227065,Bose SoundSport Headphones,1,99.99,2019-07-25 23:58:00,418 River St, San Francisco,CA,94016 +227066,AA Batteries (4-pack),1,3.84,2019-07-08 22:53:00,432 Cherry St, Los Angeles,CA,90001 +227067,27in 4K Gaming Monitor,1,389.99,2019-07-30 10:08:00,411 River St, Boston,MA,02215 +227068,Apple Airpods Headphones,1,150.0,2019-07-19 22:20:00,725 Forest St, Atlanta,GA,30301 +227069,Lightning Charging Cable,1,14.95,2019-07-26 07:55:00,462 Park St, Boston,MA,02215 +227070,Macbook Pro Laptop,1,1700.0,2019-07-17 19:41:00,803 Jefferson St, Los Angeles,CA,90001 +227071,Lightning Charging Cable,1,14.95,2019-07-07 14:42:00,943 Forest St, New York City,NY,10001 +227072,AAA Batteries (4-pack),2,2.99,2019-07-27 14:10:00,319 Elm St, San Francisco,CA,94016 +227073,Wired Headphones,1,11.99,2019-07-20 16:24:00,247 Forest St, Dallas,TX,75001 +227074,Bose SoundSport Headphones,1,99.99,2019-07-08 15:19:00,735 Jackson St, New York City,NY,10001 +227075,Flatscreen TV,1,300.0,2019-07-09 16:40:00,386 4th St, Austin,TX,73301 +227076,20in Monitor,1,109.99,2019-07-09 09:27:00,67 Wilson St, San Francisco,CA,94016 +227077,Google Phone,1,600.0,2019-07-31 20:27:00,218 Chestnut St, Seattle,WA,98101 +227078,27in 4K Gaming Monitor,1,389.99,2019-07-15 07:54:00,158 Wilson St, San Francisco,CA,94016 +227079,Lightning Charging Cable,1,14.95,2019-07-04 11:40:00,265 Adams St, Atlanta,GA,30301 +227080,AA Batteries (4-pack),1,3.84,2019-07-31 12:27:00,942 Sunset St, Boston,MA,02215 +227081,Bose SoundSport Headphones,1,99.99,2019-07-09 16:17:00,955 7th St, San Francisco,CA,94016 +227082,27in FHD Monitor,1,149.99,2019-07-15 10:09:00,60 13th St, New York City,NY,10001 +227083,34in Ultrawide Monitor,1,379.99,2019-07-16 16:36:00,685 8th St, Atlanta,GA,30301 +227084,Lightning Charging Cable,1,14.95,2019-07-08 12:08:00,822 Wilson St, Los Angeles,CA,90001 +227085,Vareebadd Phone,1,400.0,2019-07-21 18:29:00,401 Wilson St, Austin,TX,73301 +227086,AA Batteries (4-pack),1,3.84,2019-07-19 21:41:00,180 Hickory St, San Francisco,CA,94016 +227087,Lightning Charging Cable,1,14.95,2019-07-17 13:25:00,393 Church St, Portland,OR,97035 +227088,Apple Airpods Headphones,1,150.0,2019-07-05 18:19:00,483 Willow St, Boston,MA,02215 +227089,27in 4K Gaming Monitor,1,389.99,2019-07-16 13:05:00,166 12th St, San Francisco,CA,94016 +227090,27in FHD Monitor,1,149.99,2019-07-24 12:09:00,541 Wilson St, Dallas,TX,75001 +227091,AAA Batteries (4-pack),3,2.99,2019-07-26 14:47:00,238 6th St, Seattle,WA,98101 +227092,Wired Headphones,1,11.99,2019-07-28 21:23:00,749 12th St, New York City,NY,10001 +227093,27in 4K Gaming Monitor,1,389.99,2019-07-28 09:50:00,201 Pine St, San Francisco,CA,94016 +227093,Macbook Pro Laptop,1,1700.0,2019-07-28 09:50:00,201 Pine St, San Francisco,CA,94016 +227094,AA Batteries (4-pack),2,3.84,2019-07-01 20:42:00,810 Adams St, Austin,TX,73301 +227095,Wired Headphones,1,11.99,2019-07-30 12:17:00,364 Washington St, San Francisco,CA,94016 +227096,AAA Batteries (4-pack),9,2.99,2019-07-29 09:50:00,60 10th St, San Francisco,CA,94016 +227097,Bose SoundSport Headphones,1,99.99,2019-07-28 16:44:00,962 14th St, San Francisco,CA,94016 +227098,AA Batteries (4-pack),2,3.84,2019-07-13 18:16:00,601 Lake St, San Francisco,CA,94016 +227099,AA Batteries (4-pack),2,3.84,2019-07-03 11:08:00,315 Madison St, Seattle,WA,98101 +227100,34in Ultrawide Monitor,1,379.99,2019-07-15 18:24:00,583 Center St, Boston,MA,02215 +227101,Macbook Pro Laptop,1,1700.0,2019-07-13 10:40:00,165 Ridge St, New York City,NY,10001 +227102,27in FHD Monitor,1,149.99,2019-07-19 22:40:00,715 5th St, San Francisco,CA,94016 +227103,Lightning Charging Cable,1,14.95,2019-07-01 22:04:00,232 13th St, New York City,NY,10001 +227104,USB-C Charging Cable,1,11.95,2019-07-07 15:47:00,103 Church St, San Francisco,CA,94016 +227105,34in Ultrawide Monitor,1,379.99,2019-07-09 01:22:00,646 Wilson St, Portland,ME,04101 +227106,USB-C Charging Cable,1,11.95,2019-07-25 07:05:00,279 Johnson St, Atlanta,GA,30301 +227107,Lightning Charging Cable,1,14.95,2019-07-20 17:43:00,745 2nd St, Los Angeles,CA,90001 +227107,Apple Airpods Headphones,1,150.0,2019-07-20 17:43:00,745 2nd St, Los Angeles,CA,90001 +227108,Lightning Charging Cable,1,14.95,2019-07-16 23:03:00,585 Highland St, Boston,MA,02215 +227109,AA Batteries (4-pack),1,3.84,2019-07-04 00:22:00,278 2nd St, San Francisco,CA,94016 +227110,Flatscreen TV,1,300.0,2019-07-05 14:20:00,433 Sunset St, Seattle,WA,98101 +227111,AAA Batteries (4-pack),1,2.99,2019-07-14 17:35:00,816 Pine St, Boston,MA,02215 +227112,Wired Headphones,1,11.99,2019-07-25 20:42:00,70 Washington St, Dallas,TX,75001 +227113,Apple Airpods Headphones,1,150.0,2019-07-18 11:58:00,564 Highland St, San Francisco,CA,94016 +227114,27in FHD Monitor,1,149.99,2019-07-02 11:43:00,281 Chestnut St, San Francisco,CA,94016 +227115,USB-C Charging Cable,1,11.95,2019-08-01 00:20:00,501 Jefferson St, San Francisco,CA,94016 +227116,USB-C Charging Cable,2,11.95,2019-07-15 19:40:00,903 4th St, Atlanta,GA,30301 +227117,Apple Airpods Headphones,1,150.0,2019-07-23 11:24:00,468 Madison St, Los Angeles,CA,90001 +227118,27in 4K Gaming Monitor,1,389.99,2019-07-26 14:27:00,581 8th St, Boston,MA,02215 +227119,AAA Batteries (4-pack),1,2.99,2019-07-01 12:51:00,54 Johnson St, Austin,TX,73301 +227120,AAA Batteries (4-pack),4,2.99,2019-07-02 16:03:00,230 Forest St, Los Angeles,CA,90001 +227121,Google Phone,1,600.0,2019-07-31 20:39:00,87 10th St, Seattle,WA,98101 +227122,iPhone,1,700.0,2019-07-08 20:04:00,157 Highland St, New York City,NY,10001 +227123,Apple Airpods Headphones,1,150.0,2019-07-08 22:25:00,832 Meadow St, San Francisco,CA,94016 +227124,Bose SoundSport Headphones,1,99.99,2019-07-09 19:20:00,857 Main St, Dallas,TX,75001 +227125,USB-C Charging Cable,1,11.95,2019-07-18 22:54:00,27 Meadow St, Dallas,TX,75001 +227126,20in Monitor,1,109.99,2019-07-01 16:45:00,799 4th St, New York City,NY,10001 +227127,20in Monitor,1,109.99,2019-07-09 11:27:00,367 6th St, San Francisco,CA,94016 +227128,27in FHD Monitor,1,149.99,2019-07-18 01:22:00,152 Main St, San Francisco,CA,94016 +227129,iPhone,1,700.0,2019-07-04 07:50:00,450 Madison St, New York City,NY,10001 +227130,Google Phone,1,600.0,2019-07-08 22:08:00,938 11th St, San Francisco,CA,94016 +227131,Lightning Charging Cable,2,14.95,2019-07-25 20:04:00,342 Main St, Portland,OR,97035 +227132,20in Monitor,1,109.99,2019-07-10 16:44:00,966 12th St, San Francisco,CA,94016 +227133,Bose SoundSport Headphones,1,99.99,2019-07-11 17:02:00,80 South St, Austin,TX,73301 +227134,LG Dryer,1,600.0,2019-07-15 16:05:00,856 Johnson St, Los Angeles,CA,90001 +227135,Lightning Charging Cable,1,14.95,2019-07-24 07:32:00,738 Elm St, Los Angeles,CA,90001 +227136,ThinkPad Laptop,1,999.99,2019-07-06 14:39:00,424 West St, Los Angeles,CA,90001 +227137,USB-C Charging Cable,2,11.95,2019-07-11 19:31:00,784 Center St, Austin,TX,73301 +227138,Lightning Charging Cable,1,14.95,2019-07-20 20:14:00,190 Elm St, Portland,ME,04101 +227139,AA Batteries (4-pack),1,3.84,2019-07-23 22:01:00,597 Lake St, Los Angeles,CA,90001 +227140,LG Washing Machine,1,600.0,2019-07-06 15:12:00,389 8th St, San Francisco,CA,94016 +227141,Lightning Charging Cable,1,14.95,2019-07-15 18:32:00,943 Center St, Portland,OR,97035 +227142,Bose SoundSport Headphones,1,99.99,2019-07-20 17:09:00,893 Madison St, Atlanta,GA,30301 +227143,Apple Airpods Headphones,1,150.0,2019-07-31 14:18:00,252 Madison St, Seattle,WA,98101 +227144,AA Batteries (4-pack),1,3.84,2019-07-15 09:49:00,206 4th St, Portland,OR,97035 +227145,Lightning Charging Cable,1,14.95,2019-07-31 10:49:00,65 10th St, Portland,ME,04101 +227146,AA Batteries (4-pack),2,3.84,2019-07-01 12:04:00,350 South St, New York City,NY,10001 +227147,Google Phone,1,600.0,2019-07-03 13:09:00,313 8th St, San Francisco,CA,94016 +227148,Macbook Pro Laptop,1,1700.0,2019-07-01 08:11:00,161 Ridge St, Boston,MA,02215 +227149,Macbook Pro Laptop,1,1700.0,2019-07-21 10:38:00,261 Dogwood St, Seattle,WA,98101 +227150,AA Batteries (4-pack),1,3.84,2019-07-11 13:52:00,642 Highland St, Los Angeles,CA,90001 +227151,20in Monitor,2,109.99,2019-07-10 07:53:00,885 Washington St, Dallas,TX,75001 +227152,AAA Batteries (4-pack),1,2.99,2019-07-03 10:49:00,338 Walnut St, Los Angeles,CA,90001 +227153,ThinkPad Laptop,1,999.99,2019-07-31 17:16:00,660 Lakeview St, Los Angeles,CA,90001 +227154,27in FHD Monitor,1,149.99,2019-07-04 11:39:00,403 9th St, San Francisco,CA,94016 +227155,Apple Airpods Headphones,1,150.0,2019-07-20 07:22:00,718 13th St, Atlanta,GA,30301 +227156,Lightning Charging Cable,1,14.95,2019-07-02 15:13:00,324 Church St, Los Angeles,CA,90001 +227157,USB-C Charging Cable,1,11.95,2019-07-10 19:29:00,781 Cedar St, San Francisco,CA,94016 +227158,iPhone,1,700.0,2019-07-11 22:20:00,261 Spruce St, San Francisco,CA,94016 +227158,Apple Airpods Headphones,1,150.0,2019-07-11 22:20:00,261 Spruce St, San Francisco,CA,94016 +227159,USB-C Charging Cable,1,11.95,2019-07-11 16:59:00,22 Elm St, Dallas,TX,75001 +227160,Wired Headphones,1,11.99,2019-07-21 19:54:00,186 Church St, Boston,MA,02215 +227161,AA Batteries (4-pack),1,3.84,2019-07-29 09:19:00,133 Washington St, New York City,NY,10001 +227162,Lightning Charging Cable,1,14.95,2019-07-21 15:25:00,512 11th St, Boston,MA,02215 +227163,Lightning Charging Cable,1,14.95,2019-07-12 09:16:00,818 12th St, New York City,NY,10001 +227164,iPhone,1,700.0,2019-07-02 11:51:00,646 Main St, New York City,NY,10001 +227165,Apple Airpods Headphones,1,150.0,2019-07-30 18:25:00,829 Adams St, Portland,OR,97035 +227166,Wired Headphones,1,11.99,2019-07-17 11:30:00,990 Forest St, San Francisco,CA,94016 +227167,USB-C Charging Cable,1,11.95,2019-07-17 02:34:00,99 13th St, Los Angeles,CA,90001 +227168,Bose SoundSport Headphones,1,99.99,2019-07-18 08:45:00,100 Pine St, Portland,OR,97035 +227169,AA Batteries (4-pack),2,3.84,2019-07-19 09:08:00,939 Washington St, Atlanta,GA,30301 +227170,Bose SoundSport Headphones,1,99.99,2019-07-29 12:35:00,385 4th St, San Francisco,CA,94016 +227171,Flatscreen TV,1,300.0,2019-07-25 03:49:00,660 Meadow St, Los Angeles,CA,90001 +227172,Lightning Charging Cable,1,14.95,2019-07-04 22:34:00,864 Wilson St, Boston,MA,02215 +227173,Flatscreen TV,1,300.0,2019-07-26 09:22:00,289 13th St, Los Angeles,CA,90001 +227174,Google Phone,1,600.0,2019-07-12 18:30:00,145 8th St, San Francisco,CA,94016 +227175,iPhone,1,700.0,2019-07-22 14:46:00,382 River St, Dallas,TX,75001 +227176,34in Ultrawide Monitor,1,379.99,2019-07-28 18:12:00,751 14th St, San Francisco,CA,94016 +227177,20in Monitor,1,109.99,2019-07-21 14:35:00,920 Cherry St, New York City,NY,10001 +227178,Lightning Charging Cable,1,14.95,2019-07-28 19:13:00,612 Highland St, Seattle,WA,98101 +227178,Wired Headphones,1,11.99,2019-07-28 19:13:00,612 Highland St, Seattle,WA,98101 +227179,Lightning Charging Cable,1,14.95,2019-07-09 15:21:00,184 Johnson St, Portland,OR,97035 +227180,Wired Headphones,2,11.99,2019-07-22 10:36:00,407 River St, New York City,NY,10001 +227181,Macbook Pro Laptop,1,1700.0,2019-07-01 15:40:00,354 River St, Los Angeles,CA,90001 +227182,20in Monitor,1,109.99,2019-07-07 17:42:00,904 Lake St, New York City,NY,10001 +227183,Apple Airpods Headphones,1,150.0,2019-07-15 09:54:00,927 Main St, San Francisco,CA,94016 +227184,27in 4K Gaming Monitor,1,389.99,2019-07-24 01:09:00,103 Highland St, San Francisco,CA,94016 +227185,AA Batteries (4-pack),2,3.84,2019-07-09 14:36:00,732 Lakeview St, Dallas,TX,75001 +227186,USB-C Charging Cable,1,11.95,2019-07-08 16:28:00,733 7th St, Seattle,WA,98101 +227187,34in Ultrawide Monitor,1,379.99,2019-07-14 11:03:00,174 Johnson St, Dallas,TX,75001 +227188,AA Batteries (4-pack),1,3.84,2019-07-26 13:53:00,32 9th St, San Francisco,CA,94016 +227189,ThinkPad Laptop,1,999.99,2019-07-24 20:23:00,30 Park St, New York City,NY,10001 +227190,27in 4K Gaming Monitor,1,389.99,2019-07-09 13:31:00,546 Forest St, Dallas,TX,75001 +227191,Wired Headphones,1,11.99,2019-07-14 05:59:00,500 12th St, New York City,NY,10001 +227192,iPhone,1,700.0,2019-07-12 16:32:00,124 Adams St, Atlanta,GA,30301 +227192,Lightning Charging Cable,1,14.95,2019-07-12 16:32:00,124 Adams St, Atlanta,GA,30301 +227193,AAA Batteries (4-pack),1,2.99,2019-07-30 19:03:00,271 Cedar St, Dallas,TX,75001 +227194,AA Batteries (4-pack),2,3.84,2019-07-17 14:18:00,512 5th St, Atlanta,GA,30301 +227195,Bose SoundSport Headphones,1,99.99,2019-07-28 22:22:00,374 Highland St, Los Angeles,CA,90001 +227196,Macbook Pro Laptop,1,1700.0,2019-07-06 19:12:00,322 Forest St, Dallas,TX,75001 +227197,27in FHD Monitor,1,149.99,2019-07-13 00:50:00,848 10th St, Los Angeles,CA,90001 +227198,Wired Headphones,1,11.99,2019-07-20 15:10:00,113 Adams St, Portland,OR,97035 +227199,AA Batteries (4-pack),1,3.84,2019-07-31 20:01:00,894 1st St, Austin,TX,73301 +227200,Bose SoundSport Headphones,1,99.99,2019-07-26 21:42:00,211 South St, Portland,OR,97035 +227201,USB-C Charging Cable,1,11.95,2019-07-06 09:19:00,150 South St, New York City,NY,10001 +227202,Bose SoundSport Headphones,1,99.99,2019-07-03 19:22:00,868 Spruce St, San Francisco,CA,94016 +227203,Bose SoundSport Headphones,1,99.99,2019-07-21 10:42:00,276 9th St, San Francisco,CA,94016 +227204,Wired Headphones,1,11.99,2019-07-21 13:17:00,311 Highland St, Los Angeles,CA,90001 +227205,Lightning Charging Cable,1,14.95,2019-07-12 19:38:00,377 Dogwood St, Austin,TX,73301 +227206,USB-C Charging Cable,2,11.95,2019-07-18 23:40:00,265 11th St, Portland,OR,97035 +227207,Wired Headphones,1,11.99,2019-07-08 12:03:00,555 Elm St, Portland,OR,97035 +227208,Wired Headphones,1,11.99,2019-07-20 12:43:00,816 9th St, New York City,NY,10001 +227209,Bose SoundSport Headphones,1,99.99,2019-07-25 11:18:00,284 Lake St, Los Angeles,CA,90001 +227210,LG Washing Machine,1,600.0,2019-07-22 18:57:00,420 Adams St, New York City,NY,10001 +227211,AAA Batteries (4-pack),1,2.99,2019-07-12 11:39:00,752 Cedar St, Austin,TX,73301 +227212,AAA Batteries (4-pack),1,2.99,2019-07-28 22:56:00,780 Walnut St, Los Angeles,CA,90001 +227213,Macbook Pro Laptop,1,1700.0,2019-07-01 09:37:00,633 Willow St, San Francisco,CA,94016 +227214,iPhone,1,700.0,2019-07-21 12:28:00,92 Elm St, New York City,NY,10001 +227215,Lightning Charging Cable,1,14.95,2019-07-01 23:40:00,541 Ridge St, Austin,TX,73301 +227216,AAA Batteries (4-pack),1,2.99,2019-07-07 19:41:00,114 4th St, Seattle,WA,98101 +227217,AAA Batteries (4-pack),1,2.99,2019-07-04 20:42:00,664 Elm St, Dallas,TX,75001 +227218,AA Batteries (4-pack),2,3.84,2019-07-29 13:25:00,864 North St, San Francisco,CA,94016 +227219,Bose SoundSport Headphones,1,99.99,2019-07-11 10:02:00,36 5th St, Los Angeles,CA,90001 +227220,Bose SoundSport Headphones,1,99.99,2019-07-28 20:24:00,317 Meadow St, Los Angeles,CA,90001 +227221,Apple Airpods Headphones,1,150.0,2019-07-14 20:53:00,479 Johnson St, Los Angeles,CA,90001 +227222,AA Batteries (4-pack),1,3.84,2019-07-10 13:08:00,45 Ridge St, Boston,MA,02215 +227223,Apple Airpods Headphones,1,150.0,2019-07-06 12:03:00,390 Pine St, Portland,OR,97035 +227224,AA Batteries (4-pack),1,3.84,2019-07-06 16:58:00,912 Sunset St, San Francisco,CA,94016 +227225,Google Phone,1,600.0,2019-07-24 10:06:00,23 Sunset St, San Francisco,CA,94016 +227226,Wired Headphones,1,11.99,2019-07-25 21:16:00,338 Lake St, New York City,NY,10001 +227227,AA Batteries (4-pack),1,3.84,2019-07-21 14:29:00,906 Willow St, Dallas,TX,75001 +227228,Apple Airpods Headphones,1,150.0,2019-07-10 11:23:00,511 9th St, Portland,OR,97035 +227229,iPhone,1,700.0,2019-07-10 18:47:00,219 7th St, Austin,TX,73301 +227229,Wired Headphones,1,11.99,2019-07-10 18:47:00,219 7th St, Austin,TX,73301 +227230,AA Batteries (4-pack),1,3.84,2019-07-08 19:48:00,365 6th St, Atlanta,GA,30301 +227231,USB-C Charging Cable,1,11.95,2019-07-04 18:05:00,332 11th St, San Francisco,CA,94016 +227232,AAA Batteries (4-pack),2,2.99,2019-07-14 22:58:00,589 Pine St, Los Angeles,CA,90001 +227233,USB-C Charging Cable,1,11.95,2019-07-04 03:04:00,510 Hill St, New York City,NY,10001 +227234,Apple Airpods Headphones,1,150.0,2019-07-15 20:53:00,34 Cherry St, Los Angeles,CA,90001 +227235,AA Batteries (4-pack),1,3.84,2019-07-10 16:18:00,28 Lincoln St, San Francisco,CA,94016 +227236,20in Monitor,1,109.99,2019-07-09 05:56:00,869 1st St, Seattle,WA,98101 +227237,20in Monitor,1,109.99,2019-07-05 15:38:00,320 1st St, San Francisco,CA,94016 +227238,Lightning Charging Cable,1,14.95,2019-07-26 15:43:00,541 West St, Dallas,TX,75001 +227239,AAA Batteries (4-pack),2,2.99,2019-07-13 15:12:00,709 Wilson St, Dallas,TX,75001 +227240,Google Phone,1,600.0,2019-07-08 12:37:00,166 2nd St, Portland,ME,04101 +227241,AAA Batteries (4-pack),1,2.99,2019-07-27 12:33:00,26 Spruce St, Los Angeles,CA,90001 +227242,Apple Airpods Headphones,1,150.0,2019-07-12 14:29:00,84 Forest St, San Francisco,CA,94016 +227243,AAA Batteries (4-pack),1,2.99,2019-07-22 14:18:00,966 Park St, Dallas,TX,75001 +227244,AA Batteries (4-pack),1,3.84,2019-07-07 21:44:00,499 Chestnut St, San Francisco,CA,94016 +227245,Wired Headphones,1,11.99,2019-07-15 04:14:00,511 Madison St, Boston,MA,02215 +227246,Lightning Charging Cable,1,14.95,2019-07-08 13:27:00,964 Forest St, San Francisco,CA,94016 +227247,27in 4K Gaming Monitor,1,389.99,2019-07-26 11:52:00,548 Hickory St, Austin,TX,73301 +227248,Apple Airpods Headphones,1,150.0,2019-07-28 17:37:00,178 Lakeview St, Austin,TX,73301 +227249,Macbook Pro Laptop,1,1700.0,2019-07-20 15:25:00,669 9th St, Seattle,WA,98101 +227250,Bose SoundSport Headphones,1,99.99,2019-07-17 09:10:00,794 Chestnut St, Los Angeles,CA,90001 +227251,ThinkPad Laptop,1,999.99,2019-07-15 13:03:00,604 Washington St, Portland,OR,97035 +227252,Lightning Charging Cable,1,14.95,2019-07-26 10:44:00,703 Maple St, Dallas,TX,75001 +227253,AA Batteries (4-pack),1,3.84,2019-07-01 20:52:00,286 Lakeview St, Boston,MA,02215 +227254,ThinkPad Laptop,1,999.99,2019-07-06 21:17:00,975 13th St, Seattle,WA,98101 +227255,AAA Batteries (4-pack),1,2.99,2019-07-30 18:07:00,868 Madison St, New York City,NY,10001 +227256,Wired Headphones,1,11.99,2019-07-31 11:44:00,172 Hill St, Seattle,WA,98101 +227257,AA Batteries (4-pack),1,3.84,2019-07-31 13:27:00,126 4th St, New York City,NY,10001 +227258,Bose SoundSport Headphones,1,99.99,2019-07-18 04:34:00,178 River St, San Francisco,CA,94016 +227259,AA Batteries (4-pack),1,3.84,2019-07-14 23:51:00,733 Jefferson St, New York City,NY,10001 +227260,Apple Airpods Headphones,1,150.0,2019-07-09 15:20:00,807 Pine St, Los Angeles,CA,90001 +227261,Wired Headphones,1,11.99,2019-07-11 17:55:00,476 Center St, Austin,TX,73301 +227262,Apple Airpods Headphones,1,150.0,2019-07-07 09:36:00,261 Park St, Boston,MA,02215 +227263,USB-C Charging Cable,1,11.95,2019-07-27 14:09:00,46 Lakeview St, Dallas,TX,75001 +227264,34in Ultrawide Monitor,1,379.99,2019-07-19 19:34:00,22 Adams St, San Francisco,CA,94016 +227265,AAA Batteries (4-pack),3,2.99,2019-07-30 07:18:00,277 Cedar St, Boston,MA,02215 +227266,iPhone,1,700.0,2019-07-11 19:41:00,53 Meadow St, San Francisco,CA,94016 +227267,iPhone,1,700.0,2019-07-20 17:26:00,653 8th St, Los Angeles,CA,90001 +227268,27in FHD Monitor,1,149.99,2019-07-10 11:56:00,9 Maple St, Boston,MA,02215 +227269,AA Batteries (4-pack),2,3.84,2019-07-01 11:23:00,682 Cedar St, Portland,OR,97035 +227270,Wired Headphones,1,11.99,2019-07-25 12:00:00,509 Main St, Atlanta,GA,30301 +227271,USB-C Charging Cable,1,11.95,2019-07-20 23:36:00,763 Lake St, Los Angeles,CA,90001 +227272,Wired Headphones,1,11.99,2019-07-04 17:35:00,347 Park St, San Francisco,CA,94016 +227273,20in Monitor,1,109.99,2019-07-30 18:21:00,437 Center St, Dallas,TX,75001 +227274,AAA Batteries (4-pack),1,2.99,2019-07-16 08:28:00,79 Highland St, Seattle,WA,98101 +227275,Flatscreen TV,1,300.0,2019-07-09 20:51:00,305 Jackson St, Boston,MA,02215 +227276,27in 4K Gaming Monitor,1,389.99,2019-07-05 22:23:00,406 Elm St, New York City,NY,10001 +227277,Apple Airpods Headphones,1,150.0,2019-07-25 12:36:00,150 11th St, Portland,OR,97035 +227278,Lightning Charging Cable,1,14.95,2019-07-15 15:00:00,48 Pine St, Austin,TX,73301 +227279,AA Batteries (4-pack),1,3.84,2019-07-11 10:00:00,818 8th St, San Francisco,CA,94016 +227280,AA Batteries (4-pack),1,3.84,2019-07-04 11:59:00,662 West St, Los Angeles,CA,90001 +227281,Google Phone,1,600.0,2019-07-30 14:39:00,409 Madison St, Austin,TX,73301 +227282,27in FHD Monitor,1,149.99,2019-07-28 09:38:00,846 Pine St, Austin,TX,73301 +227283,Apple Airpods Headphones,1,150.0,2019-07-01 14:52:00,161 Dogwood St, Dallas,TX,75001 +227284,Google Phone,1,600.0,2019-07-03 22:21:00,618 12th St, San Francisco,CA,94016 +227285,USB-C Charging Cable,1,11.95,2019-07-21 07:26:00,126 Forest St, San Francisco,CA,94016 +227286,Apple Airpods Headphones,1,150.0,2019-07-27 23:00:00,253 Church St, Los Angeles,CA,90001 +227287,Lightning Charging Cable,1,14.95,2019-07-31 12:14:00,550 Maple St, Seattle,WA,98101 +227288,AAA Batteries (4-pack),1,2.99,2019-07-19 21:39:00,642 Hickory St, San Francisco,CA,94016 +227289,AAA Batteries (4-pack),1,2.99,2019-07-21 15:57:00,263 Hill St, San Francisco,CA,94016 +227290,27in FHD Monitor,1,149.99,2019-07-07 11:26:00,764 South St, San Francisco,CA,94016 +227291,iPhone,1,700.0,2019-07-28 16:40:00,979 8th St, Seattle,WA,98101 +227292,Google Phone,1,600.0,2019-07-19 15:18:00,933 5th St, Portland,OR,97035 +227292,Wired Headphones,1,11.99,2019-07-19 15:18:00,933 5th St, Portland,OR,97035 +227293,Google Phone,1,600.0,2019-07-10 19:50:00,152 5th St, San Francisco,CA,94016 +227294,Google Phone,1,600.0,2019-07-28 18:18:00,110 1st St, Austin,TX,73301 +227295,Macbook Pro Laptop,1,1700.0,2019-07-28 15:34:00,64 Lincoln St, Dallas,TX,75001 +227296,27in 4K Gaming Monitor,1,389.99,2019-07-16 11:25:00,866 Lake St, New York City,NY,10001 +227297,AA Batteries (4-pack),1,3.84,2019-07-08 00:56:00,914 9th St, San Francisco,CA,94016 +227298,Bose SoundSport Headphones,1,99.99,2019-07-07 13:46:00,511 Chestnut St, Dallas,TX,75001 +227299,Bose SoundSport Headphones,1,99.99,2019-07-16 15:43:00,894 Cherry St, Los Angeles,CA,90001 +227300,USB-C Charging Cable,1,11.95,2019-07-06 12:41:00,377 Center St, Austin,TX,73301 +227301,Bose SoundSport Headphones,1,99.99,2019-07-06 21:34:00,262 Pine St, Dallas,TX,75001 +227302,27in FHD Monitor,1,149.99,2019-07-31 14:33:00,969 Highland St, New York City,NY,10001 +227303,27in 4K Gaming Monitor,1,389.99,2019-07-28 14:22:00,430 Walnut St, Atlanta,GA,30301 +227304,Wired Headphones,1,11.99,2019-07-17 12:01:00,946 Center St, New York City,NY,10001 +227305,Macbook Pro Laptop,1,1700.0,2019-07-27 20:24:00,579 Highland St, Austin,TX,73301 +227306,34in Ultrawide Monitor,1,379.99,2019-07-23 12:04:00,937 Pine St, Seattle,WA,98101 +227307,AA Batteries (4-pack),3,3.84,2019-07-24 18:12:00,893 Adams St, Los Angeles,CA,90001 +227308,27in FHD Monitor,1,149.99,2019-07-29 15:06:00,931 Highland St, Atlanta,GA,30301 +227309,AA Batteries (4-pack),1,3.84,2019-07-20 10:37:00,881 Ridge St, New York City,NY,10001 +227310,20in Monitor,1,109.99,2019-07-01 15:40:00,281 9th St, New York City,NY,10001 +227311,Bose SoundSport Headphones,1,99.99,2019-07-04 07:38:00,627 2nd St, New York City,NY,10001 +227312,LG Washing Machine,1,600.0,2019-07-02 18:38:00,505 Jackson St, San Francisco,CA,94016 +227313,27in 4K Gaming Monitor,1,389.99,2019-07-21 22:27:00,125 8th St, San Francisco,CA,94016 +227314,USB-C Charging Cable,1,11.95,2019-07-11 14:01:00,208 Washington St, Atlanta,GA,30301 +227315,AA Batteries (4-pack),2,3.84,2019-07-30 19:32:00,869 Elm St, San Francisco,CA,94016 +227316,Bose SoundSport Headphones,1,99.99,2019-07-02 20:12:00,539 12th St, New York City,NY,10001 +227317,Bose SoundSport Headphones,1,99.99,2019-07-01 17:21:00,789 Wilson St, Seattle,WA,98101 +227318,27in 4K Gaming Monitor,1,389.99,2019-07-19 19:21:00,162 Adams St, Atlanta,GA,30301 +227319,Wired Headphones,1,11.99,2019-07-05 19:14:00,419 Lincoln St, Dallas,TX,75001 +227320,34in Ultrawide Monitor,1,379.99,2019-07-17 09:01:00,595 Elm St, Atlanta,GA,30301 +227321,Lightning Charging Cable,1,14.95,2019-07-11 19:20:00,968 Maple St, San Francisco,CA,94016 +227322,AAA Batteries (4-pack),1,2.99,2019-07-30 15:37:00,295 Jefferson St, San Francisco,CA,94016 +227323,Wired Headphones,1,11.99,2019-07-18 16:58:00,214 Church St, New York City,NY,10001 +227324,Lightning Charging Cable,1,14.95,2019-07-20 21:00:00,401 Spruce St, Portland,ME,04101 +227325,Lightning Charging Cable,1,14.95,2019-07-25 13:24:00,478 Jefferson St, Austin,TX,73301 +227326,Apple Airpods Headphones,1,150.0,2019-07-17 22:50:00,382 4th St, New York City,NY,10001 +227327,Apple Airpods Headphones,1,150.0,2019-07-13 17:10:00,138 Meadow St, Los Angeles,CA,90001 +227328,Lightning Charging Cable,1,14.95,2019-07-30 14:33:00,751 Main St, Atlanta,GA,30301 +227329,20in Monitor,1,109.99,2019-07-02 18:22:00,523 Highland St, San Francisco,CA,94016 +227330,USB-C Charging Cable,1,11.95,2019-07-22 16:14:00,675 Highland St, Dallas,TX,75001 +227331,Apple Airpods Headphones,1,150.0,2019-07-20 22:04:00,94 Hickory St, Austin,TX,73301 +227332,ThinkPad Laptop,1,999.99,2019-07-15 11:55:00,40 Walnut St, Los Angeles,CA,90001 +227333,Bose SoundSport Headphones,1,99.99,2019-07-12 16:58:00,630 Jackson St, Boston,MA,02215 +227334,Lightning Charging Cable,1,14.95,2019-07-04 11:22:00,469 North St, Austin,TX,73301 +227335,Apple Airpods Headphones,1,150.0,2019-07-26 23:54:00,403 Jackson St, Seattle,WA,98101 +227336,Lightning Charging Cable,1,14.95,2019-07-17 17:41:00,201 13th St, Austin,TX,73301 +227337,27in FHD Monitor,1,149.99,2019-07-07 20:34:00,604 14th St, New York City,NY,10001 +227338,Flatscreen TV,1,300.0,2019-07-07 12:59:00,490 Jackson St, San Francisco,CA,94016 +227339,Google Phone,1,600.0,2019-07-16 15:54:00,410 13th St, New York City,NY,10001 +227340,Apple Airpods Headphones,1,150.0,2019-07-21 00:48:00,532 Center St, Boston,MA,02215 +227341,27in 4K Gaming Monitor,1,389.99,2019-07-12 19:18:00,568 Cedar St, San Francisco,CA,94016 +227342,Wired Headphones,2,11.99,2019-07-04 19:29:00,281 8th St, New York City,NY,10001 +227343,AA Batteries (4-pack),1,3.84,2019-07-28 16:47:00,819 Lakeview St, San Francisco,CA,94016 +227344,27in 4K Gaming Monitor,1,389.99,2019-07-22 22:34:00,273 North St, San Francisco,CA,94016 +227345,20in Monitor,1,109.99,2019-07-18 19:49:00,594 Church St, San Francisco,CA,94016 +227346,Bose SoundSport Headphones,1,99.99,2019-07-05 22:51:00,771 Church St, New York City,NY,10001 +227347,AAA Batteries (4-pack),1,2.99,2019-07-20 10:52:00,712 Hickory St, Austin,TX,73301 +227348,Flatscreen TV,1,300.0,2019-07-17 19:19:00,654 9th St, Dallas,TX,75001 +227349,27in 4K Gaming Monitor,1,389.99,2019-07-11 18:42:00,212 Park St, Los Angeles,CA,90001 +227350,Bose SoundSport Headphones,1,99.99,2019-07-14 17:30:00,481 11th St, Los Angeles,CA,90001 +227351,Bose SoundSport Headphones,1,99.99,2019-07-23 11:33:00,559 Main St, Dallas,TX,75001 +227352,Lightning Charging Cable,1,14.95,2019-07-21 13:08:00,186 9th St, Boston,MA,02215 +227353,27in FHD Monitor,1,149.99,2019-07-22 16:32:00,75 South St, Seattle,WA,98101 +227354,27in 4K Gaming Monitor,1,389.99,2019-07-08 09:32:00,266 Chestnut St, Seattle,WA,98101 +227355,Wired Headphones,1,11.99,2019-07-17 08:30:00,468 Elm St, Los Angeles,CA,90001 +227356,Bose SoundSport Headphones,1,99.99,2019-07-17 10:19:00,855 11th St, Los Angeles,CA,90001 +227357,ThinkPad Laptop,1,999.99,2019-07-28 13:47:00,811 Ridge St, New York City,NY,10001 +227358,Lightning Charging Cable,1,14.95,2019-07-12 21:27:00,94 4th St, Los Angeles,CA,90001 +227359,USB-C Charging Cable,1,11.95,2019-07-13 16:54:00,532 Willow St, Los Angeles,CA,90001 +227360,Vareebadd Phone,1,400.0,2019-07-17 12:37:00,217 Adams St, Los Angeles,CA,90001 +227361,LG Dryer,1,600.0,2019-07-24 10:01:00,11 Washington St, Los Angeles,CA,90001 +227362,Lightning Charging Cable,1,14.95,2019-07-23 11:20:00,73 Lincoln St, New York City,NY,10001 +227363,Wired Headphones,1,11.99,2019-07-10 10:10:00,891 Jackson St, Los Angeles,CA,90001 +227364,Macbook Pro Laptop,1,1700.0,2019-07-14 08:59:00,884 Elm St, Los Angeles,CA,90001 +227365,Bose SoundSport Headphones,1,99.99,2019-07-20 12:54:00,253 Forest St, Austin,TX,73301 +227366,AAA Batteries (4-pack),2,2.99,2019-07-05 13:30:00,325 Hickory St, Austin,TX,73301 +227367,27in FHD Monitor,1,149.99,2019-07-10 21:03:00,583 Jefferson St, Los Angeles,CA,90001 +227368,27in FHD Monitor,1,149.99,2019-07-08 08:58:00,602 Walnut St, New York City,NY,10001 +227369,USB-C Charging Cable,1,11.95,2019-07-26 19:26:00,555 Lakeview St, New York City,NY,10001 +227370,Apple Airpods Headphones,1,150.0,2019-07-05 13:30:00,696 Adams St, Los Angeles,CA,90001 +227371,27in 4K Gaming Monitor,1,389.99,2019-07-01 17:09:00,234 Highland St, San Francisco,CA,94016 +227372,Flatscreen TV,1,300.0,2019-07-01 21:29:00,394 8th St, Los Angeles,CA,90001 +227373,Lightning Charging Cable,1,14.95,2019-07-15 21:57:00,905 Walnut St, Dallas,TX,75001 +227374,Vareebadd Phone,1,400.0,2019-07-29 17:40:00,923 7th St, San Francisco,CA,94016 +227375,Bose SoundSport Headphones,1,99.99,2019-07-16 22:23:00,325 Washington St, Boston,MA,02215 +227376,AA Batteries (4-pack),1,3.84,2019-07-11 03:55:00,458 Hickory St, Atlanta,GA,30301 +227377,AA Batteries (4-pack),2,3.84,2019-07-29 13:34:00,336 Washington St, San Francisco,CA,94016 +227378,LG Dryer,1,600.0,2019-07-16 09:47:00,36 7th St, New York City,NY,10001 +227379,AA Batteries (4-pack),1,3.84,2019-07-17 14:07:00,389 Lincoln St, Los Angeles,CA,90001 +227380,Lightning Charging Cable,2,14.95,2019-07-22 19:28:00,326 12th St, Boston,MA,02215 +227381,USB-C Charging Cable,1,11.95,2019-07-10 20:39:00,346 Cedar St, Boston,MA,02215 +227382,27in 4K Gaming Monitor,1,389.99,2019-07-01 19:11:00,461 Center St, New York City,NY,10001 +227383,AA Batteries (4-pack),1,3.84,2019-07-31 21:36:00,95 12th St, Portland,OR,97035 +227384,Bose SoundSport Headphones,1,99.99,2019-07-27 23:02:00,484 10th St, Atlanta,GA,30301 +227385,Macbook Pro Laptop,1,1700.0,2019-07-17 12:43:00,793 Jefferson St, Boston,MA,02215 +227386,Lightning Charging Cable,1,14.95,2019-07-29 11:41:00,931 Walnut St, Los Angeles,CA,90001 +227387,Bose SoundSport Headphones,1,99.99,2019-07-21 11:36:00,666 Washington St, Boston,MA,02215 +227388,Bose SoundSport Headphones,1,99.99,2019-07-02 20:23:00,969 River St, San Francisco,CA,94016 +227389,27in 4K Gaming Monitor,1,389.99,2019-07-24 19:44:00,583 Johnson St, San Francisco,CA,94016 +227390,USB-C Charging Cable,1,11.95,2019-07-16 04:56:00,565 8th St, Atlanta,GA,30301 +227391,Bose SoundSport Headphones,1,99.99,2019-07-08 00:06:00,248 River St, New York City,NY,10001 +227392,AAA Batteries (4-pack),3,2.99,2019-07-28 12:41:00,430 Wilson St, San Francisco,CA,94016 +227393,AAA Batteries (4-pack),1,2.99,2019-07-10 12:58:00,688 Jackson St, San Francisco,CA,94016 +227394,Wired Headphones,1,11.99,2019-07-30 10:26:00,590 12th St, San Francisco,CA,94016 +227395,Lightning Charging Cable,2,14.95,2019-07-08 09:08:00,472 Hill St, New York City,NY,10001 +227396,AAA Batteries (4-pack),1,2.99,2019-07-25 05:56:00,537 Church St, Los Angeles,CA,90001 +227397,Bose SoundSport Headphones,1,99.99,2019-07-27 15:01:00,353 Cherry St, Atlanta,GA,30301 +227398,Vareebadd Phone,1,400.0,2019-07-26 22:43:00,650 Dogwood St, New York City,NY,10001 +227399,34in Ultrawide Monitor,1,379.99,2019-07-22 18:12:00,126 Willow St, Los Angeles,CA,90001 +227400,Google Phone,1,600.0,2019-07-29 20:00:00,941 Sunset St, Portland,OR,97035 +227400,Wired Headphones,2,11.99,2019-07-29 20:00:00,941 Sunset St, Portland,OR,97035 +227400,Macbook Pro Laptop,1,1700.0,2019-07-29 20:00:00,941 Sunset St, Portland,OR,97035 +227401,Google Phone,1,600.0,2019-07-20 07:12:00,207 12th St, San Francisco,CA,94016 +227401,USB-C Charging Cable,1,11.95,2019-07-20 07:12:00,207 12th St, San Francisco,CA,94016 +227401,Wired Headphones,1,11.99,2019-07-20 07:12:00,207 12th St, San Francisco,CA,94016 +227402,Apple Airpods Headphones,1,150.0,2019-07-21 20:34:00,143 Elm St, San Francisco,CA,94016 +227403,20in Monitor,1,109.99,2019-07-11 20:08:00,732 Lake St, San Francisco,CA,94016 +227404,Google Phone,1,600.0,2019-07-03 09:02:00,653 Wilson St, Boston,MA,02215 +227405,Apple Airpods Headphones,1,150.0,2019-07-02 21:39:00,123 7th St, Portland,ME,04101 +227406,Wired Headphones,1,11.99,2019-07-04 19:27:00,284 Johnson St, Los Angeles,CA,90001 +227407,AAA Batteries (4-pack),1,2.99,2019-07-17 20:00:00,912 9th St, San Francisco,CA,94016 +227408,ThinkPad Laptop,1,999.99,2019-07-11 20:06:00,847 South St, Boston,MA,02215 +227409,27in 4K Gaming Monitor,1,389.99,2019-07-11 08:50:00,477 Pine St, San Francisco,CA,94016 +227410,Wired Headphones,1,11.99,2019-07-03 09:28:00,617 9th St, San Francisco,CA,94016 +227411,USB-C Charging Cable,1,11.95,2019-07-16 11:31:00,638 Center St, Boston,MA,02215 +227412,Lightning Charging Cable,1,14.95,2019-07-22 18:31:00,767 10th St, Atlanta,GA,30301 +227413,USB-C Charging Cable,1,11.95,2019-07-08 15:42:00,19 Dogwood St, San Francisco,CA,94016 +227414,Wired Headphones,1,11.99,2019-07-24 08:06:00,117 10th St, Seattle,WA,98101 +227415,34in Ultrawide Monitor,1,379.99,2019-07-05 20:52:00,810 Maple St, Los Angeles,CA,90001 +227416,AA Batteries (4-pack),1,3.84,2019-07-24 08:11:00,243 Center St, Seattle,WA,98101 +227417,AAA Batteries (4-pack),1,2.99,2019-07-08 10:01:00,416 West St, Los Angeles,CA,90001 +227418,Flatscreen TV,1,300.0,2019-07-14 15:26:00,743 Maple St, Los Angeles,CA,90001 +227419,20in Monitor,1,109.99,2019-07-13 17:01:00,38 10th St, Atlanta,GA,30301 +227420,LG Dryer,1,600.0,2019-07-07 19:17:00,249 8th St, San Francisco,CA,94016 +227421,Wired Headphones,1,11.99,2019-07-14 17:13:00,657 Ridge St, Los Angeles,CA,90001 +227422,Wired Headphones,1,11.99,2019-07-28 21:39:00,276 Spruce St, San Francisco,CA,94016 +227423,Bose SoundSport Headphones,1,99.99,2019-07-11 18:15:00,395 12th St, San Francisco,CA,94016 +227424,Flatscreen TV,1,300.0,2019-07-16 09:46:00,194 Lakeview St, Atlanta,GA,30301 +227425,Flatscreen TV,1,300.0,2019-07-25 10:37:00,870 Adams St, Boston,MA,02215 +227426,Lightning Charging Cable,1,14.95,2019-07-06 16:22:00,581 12th St, San Francisco,CA,94016 +227427,Wired Headphones,1,11.99,2019-07-10 15:18:00,514 6th St, San Francisco,CA,94016 +227428,Flatscreen TV,1,300.0,2019-07-30 12:22:00,635 Willow St, Los Angeles,CA,90001 +227429,Lightning Charging Cable,1,14.95,2019-07-10 18:43:00,135 13th St, San Francisco,CA,94016 +227429,Google Phone,1,600.0,2019-07-10 18:43:00,135 13th St, San Francisco,CA,94016 +227430,Apple Airpods Headphones,1,150.0,2019-07-29 11:18:00,356 Chestnut St, Seattle,WA,98101 +227431,Macbook Pro Laptop,1,1700.0,2019-07-14 21:58:00,270 Hickory St, Los Angeles,CA,90001 +227432,AAA Batteries (4-pack),1,2.99,2019-07-20 17:41:00,699 West St, San Francisco,CA,94016 +227433,Bose SoundSport Headphones,1,99.99,2019-07-30 17:14:00,382 Main St, Seattle,WA,98101 +227434,27in FHD Monitor,1,149.99,2019-07-23 21:16:00,859 12th St, New York City,NY,10001 +227435,USB-C Charging Cable,1,11.95,2019-07-28 13:54:00,838 Lincoln St, San Francisco,CA,94016 +227436,Apple Airpods Headphones,1,150.0,2019-07-16 22:14:00,772 12th St, Seattle,WA,98101 +227437,Bose SoundSport Headphones,1,99.99,2019-07-01 08:07:00,539 West St, Austin,TX,73301 +227438,USB-C Charging Cable,1,11.95,2019-07-07 11:32:00,71 Center St, Dallas,TX,75001 +227439,USB-C Charging Cable,2,11.95,2019-07-26 13:09:00,485 Spruce St, New York City,NY,10001 +227440,USB-C Charging Cable,2,11.95,2019-07-16 14:00:00,744 11th St, Boston,MA,02215 +227441,27in FHD Monitor,1,149.99,2019-07-28 09:01:00,280 Johnson St, San Francisco,CA,94016 +227442,34in Ultrawide Monitor,1,379.99,2019-07-08 16:59:00,293 Highland St, Atlanta,GA,30301 +227443,USB-C Charging Cable,1,11.95,2019-07-26 06:30:00,677 Adams St, San Francisco,CA,94016 +227444,Apple Airpods Headphones,1,150.0,2019-07-15 13:03:00,129 4th St, Los Angeles,CA,90001 +227445,Wired Headphones,1,11.99,2019-07-07 15:59:00,286 Main St, Los Angeles,CA,90001 +227446,27in FHD Monitor,1,149.99,2019-07-10 22:31:00,393 5th St, Atlanta,GA,30301 +227447,AA Batteries (4-pack),1,3.84,2019-07-15 11:25:00,535 Sunset St, San Francisco,CA,94016 +227448,Flatscreen TV,1,300.0,2019-07-16 14:43:00,202 Sunset St, Los Angeles,CA,90001 +227449,Vareebadd Phone,1,400.0,2019-07-13 11:50:00,23 Willow St, Boston,MA,02215 +227450,AA Batteries (4-pack),2,3.84,2019-07-09 20:50:00,978 13th St, Los Angeles,CA,90001 +227451,Lightning Charging Cable,1,14.95,2019-07-19 09:39:00,336 Madison St, San Francisco,CA,94016 +227452,27in FHD Monitor,1,149.99,2019-07-22 12:43:00,667 Wilson St, Portland,OR,97035 +227453,iPhone,1,700.0,2019-07-20 12:19:00,252 Main St, Los Angeles,CA,90001 +227453,Apple Airpods Headphones,1,150.0,2019-07-20 12:19:00,252 Main St, Los Angeles,CA,90001 +227454,AAA Batteries (4-pack),3,2.99,2019-07-30 06:15:00,845 5th St, Portland,ME,04101 +227455,Macbook Pro Laptop,1,1700.0,2019-07-06 20:42:00,186 Center St, San Francisco,CA,94016 +227456,20in Monitor,1,109.99,2019-07-03 18:19:00,775 8th St, Dallas,TX,75001 +227457,Lightning Charging Cable,1,14.95,2019-07-07 03:55:00,880 Highland St, Atlanta,GA,30301 +227458,Bose SoundSport Headphones,1,99.99,2019-07-18 21:38:00,546 River St, Portland,OR,97035 +227459,AAA Batteries (4-pack),1,2.99,2019-07-06 17:12:00,996 Washington St, Los Angeles,CA,90001 +227460,34in Ultrawide Monitor,1,379.99,2019-07-11 00:39:00,350 12th St, New York City,NY,10001 +227461,USB-C Charging Cable,1,11.95,2019-07-04 10:45:00,139 River St, New York City,NY,10001 +227462,AAA Batteries (4-pack),2,2.99,2019-07-25 21:29:00,658 13th St, Los Angeles,CA,90001 +227463,Vareebadd Phone,1,400.0,2019-07-14 20:44:00,142 2nd St, Atlanta,GA,30301 +227464,Lightning Charging Cable,1,14.95,2019-07-12 14:47:00,432 North St, San Francisco,CA,94016 +227465,AAA Batteries (4-pack),1,2.99,2019-07-07 20:09:00,346 12th St, Seattle,WA,98101 +227466,Macbook Pro Laptop,1,1700.0,2019-07-14 19:02:00,46 Willow St, Los Angeles,CA,90001 +227467,Apple Airpods Headphones,1,150.0,2019-07-03 09:48:00,584 2nd St, Seattle,WA,98101 +227468,Bose SoundSport Headphones,1,99.99,2019-07-10 14:39:00,215 11th St, Los Angeles,CA,90001 +227469,USB-C Charging Cable,2,11.95,2019-07-03 15:16:00,364 13th St, San Francisco,CA,94016 +227470,AA Batteries (4-pack),1,3.84,2019-07-07 18:38:00,838 Cherry St, Atlanta,GA,30301 +227471,AA Batteries (4-pack),1,3.84,2019-07-30 04:58:00,587 North St, Portland,OR,97035 +227472,AA Batteries (4-pack),3,3.84,2019-07-18 19:28:00,325 Hill St, San Francisco,CA,94016 +227473,Macbook Pro Laptop,1,1700.0,2019-07-14 20:10:00,35 8th St, Boston,MA,02215 +227474,Wired Headphones,3,11.99,2019-07-24 10:30:00,816 Lake St, Los Angeles,CA,90001 +227475,AA Batteries (4-pack),1,3.84,2019-07-09 07:59:00,705 5th St, Boston,MA,02215 +227476,27in 4K Gaming Monitor,1,389.99,2019-07-05 13:04:00,531 South St, Austin,TX,73301 +227477,Wired Headphones,1,11.99,2019-07-14 05:13:00,496 5th St, San Francisco,CA,94016 +227478,Vareebadd Phone,1,400.0,2019-07-03 10:41:00,370 Main St, Los Angeles,CA,90001 +227479,Wired Headphones,1,11.99,2019-07-24 19:43:00,683 2nd St, San Francisco,CA,94016 +227480,AA Batteries (4-pack),1,3.84,2019-07-17 23:12:00,127 Dogwood St, San Francisco,CA,94016 +227481,Apple Airpods Headphones,1,150.0,2019-07-08 12:43:00,489 Church St, Seattle,WA,98101 +227482,Wired Headphones,1,11.99,2019-07-21 15:10:00,206 13th St, Boston,MA,02215 +227483,AAA Batteries (4-pack),2,2.99,2019-07-09 00:04:00,542 11th St, Austin,TX,73301 +227484,Wired Headphones,1,11.99,2019-07-31 21:45:00,962 Jackson St, San Francisco,CA,94016 +227485,Lightning Charging Cable,1,14.95,2019-07-15 13:24:00,805 Spruce St, Boston,MA,02215 +227486,USB-C Charging Cable,1,11.95,2019-07-16 11:08:00,323 Highland St, New York City,NY,10001 +227487,AAA Batteries (4-pack),1,2.99,2019-07-31 09:54:00,194 River St, Portland,OR,97035 +227488,Wired Headphones,1,11.99,2019-07-13 21:48:00,893 Chestnut St, Austin,TX,73301 +227489,Google Phone,1,600.0,2019-07-14 08:14:00,717 Adams St, Los Angeles,CA,90001 +227490,USB-C Charging Cable,1,11.95,2019-07-26 19:35:00,342 12th St, Atlanta,GA,30301 +227491,Lightning Charging Cable,1,14.95,2019-07-01 14:42:00,566 Madison St, San Francisco,CA,94016 +227492,AA Batteries (4-pack),2,3.84,2019-07-20 17:40:00,187 9th St, Boston,MA,02215 +227493,Apple Airpods Headphones,1,150.0,2019-07-18 12:23:00,582 1st St, New York City,NY,10001 +227494,ThinkPad Laptop,1,999.99,2019-07-24 18:23:00,473 Cedar St, Dallas,TX,75001 +227495,27in FHD Monitor,1,149.99,2019-07-18 12:02:00,537 11th St, Boston,MA,02215 +227496,Flatscreen TV,1,300.0,2019-07-12 19:16:00,315 Ridge St, San Francisco,CA,94016 +227497,USB-C Charging Cable,2,11.95,2019-07-02 16:24:00,527 2nd St, Portland,ME,04101 +227498,Lightning Charging Cable,1,14.95,2019-07-03 20:52:00,523 Adams St, Austin,TX,73301 +227499,27in FHD Monitor,1,149.99,2019-07-04 12:23:00,420 8th St, San Francisco,CA,94016 +227500,AAA Batteries (4-pack),2,2.99,2019-07-27 20:02:00,123 Dogwood St, New York City,NY,10001 +227501,Macbook Pro Laptop,1,1700.0,2019-07-21 11:21:00,3 Church St, New York City,NY,10001 +227502,Apple Airpods Headphones,1,150.0,2019-07-11 13:18:00,595 12th St, Boston,MA,02215 +227503,Lightning Charging Cable,1,14.95,2019-07-18 00:02:00,193 Hill St, New York City,NY,10001 +227504,34in Ultrawide Monitor,1,379.99,2019-07-29 17:18:00,561 Lincoln St, San Francisco,CA,94016 +227505,USB-C Charging Cable,1,11.95,2019-07-11 18:30:00,225 Walnut St, Los Angeles,CA,90001 +227506,USB-C Charging Cable,1,11.95,2019-07-27 14:52:00,18 Lincoln St, San Francisco,CA,94016 +227507,ThinkPad Laptop,1,999.99,2019-07-02 12:09:00,94 Park St, Los Angeles,CA,90001 +227508,Bose SoundSport Headphones,1,99.99,2019-07-24 18:40:00,366 Lincoln St, San Francisco,CA,94016 +227509,USB-C Charging Cable,1,11.95,2019-07-05 21:18:00,225 Church St, Seattle,WA,98101 +227510,AAA Batteries (4-pack),1,2.99,2019-07-17 14:24:00,682 1st St, San Francisco,CA,94016 +227511,iPhone,1,700.0,2019-07-27 17:49:00,807 Spruce St, Portland,OR,97035 +227512,Wired Headphones,1,11.99,2019-07-26 02:05:00,865 Adams St, San Francisco,CA,94016 +227513,AAA Batteries (4-pack),2,2.99,2019-07-05 13:29:00,727 14th St, New York City,NY,10001 +227514,Lightning Charging Cable,1,14.95,2019-07-02 10:40:00,758 Lake St, Austin,TX,73301 +227515,Lightning Charging Cable,1,14.95,2019-07-24 11:42:00,343 4th St, New York City,NY,10001 +227516,AA Batteries (4-pack),1,3.84,2019-07-12 20:07:00,722 Lincoln St, Atlanta,GA,30301 +227517,Vareebadd Phone,1,400.0,2019-07-15 19:45:00,521 Cherry St, New York City,NY,10001 +227518,Wired Headphones,1,11.99,2019-07-28 12:17:00,99 Dogwood St, San Francisco,CA,94016 +227519,Bose SoundSport Headphones,1,99.99,2019-07-13 09:45:00,906 Meadow St, San Francisco,CA,94016 +227520,AA Batteries (4-pack),2,3.84,2019-07-22 15:45:00,420 Johnson St, New York City,NY,10001 +227521,AAA Batteries (4-pack),2,2.99,2019-08-01 00:11:00,57 8th St, New York City,NY,10001 +227521,Wired Headphones,1,11.99,2019-08-01 00:11:00,57 8th St, New York City,NY,10001 +227522,Wired Headphones,1,11.99,2019-07-24 02:23:00,135 Ridge St, New York City,NY,10001 +227523,AAA Batteries (4-pack),1,2.99,2019-07-09 21:07:00,329 Ridge St, Boston,MA,02215 +227524,USB-C Charging Cable,1,11.95,2019-07-03 00:33:00,513 1st St, New York City,NY,10001 +227525,Lightning Charging Cable,1,14.95,2019-07-23 13:50:00,18 Main St, Seattle,WA,98101 +227526,Wired Headphones,1,11.99,2019-07-09 22:12:00,136 9th St, Dallas,TX,75001 +227527,34in Ultrawide Monitor,1,379.99,2019-07-22 22:33:00,299 Hill St, Atlanta,GA,30301 +227528,Apple Airpods Headphones,1,150.0,2019-07-10 09:30:00,183 7th St, San Francisco,CA,94016 +227529,27in FHD Monitor,1,149.99,2019-07-30 12:44:00,841 12th St, Boston,MA,02215 +227530,Lightning Charging Cable,1,14.95,2019-07-29 09:18:00,634 7th St, Seattle,WA,98101 +227531,iPhone,1,700.0,2019-07-13 23:37:00,28 Park St, Austin,TX,73301 +227532,Bose SoundSport Headphones,1,99.99,2019-07-26 12:06:00,887 Washington St, Atlanta,GA,30301 +227533,AA Batteries (4-pack),1,3.84,2019-07-02 16:27:00,932 Spruce St, Portland,OR,97035 +227534,AA Batteries (4-pack),1,3.84,2019-07-03 17:37:00,753 Cedar St, Los Angeles,CA,90001 +227535,Bose SoundSport Headphones,1,99.99,2019-07-25 13:57:00,758 Cedar St, San Francisco,CA,94016 +227536,AA Batteries (4-pack),2,3.84,2019-07-11 13:24:00,141 Highland St, Los Angeles,CA,90001 +227537,Lightning Charging Cable,1,14.95,2019-07-10 12:17:00,991 South St, Los Angeles,CA,90001 +227538,AAA Batteries (4-pack),2,2.99,2019-07-19 11:22:00,16 Lakeview St, Atlanta,GA,30301 +227539,AA Batteries (4-pack),3,3.84,2019-07-16 13:00:00,747 Walnut St, Boston,MA,02215 +227540,Macbook Pro Laptop,1,1700.0,2019-07-19 16:58:00,369 9th St, Los Angeles,CA,90001 +227541,Bose SoundSport Headphones,1,99.99,2019-07-15 16:54:00,730 Lakeview St, Austin,TX,73301 +227542,Apple Airpods Headphones,1,150.0,2019-07-21 23:01:00,618 Meadow St, San Francisco,CA,94016 +227543,Macbook Pro Laptop,1,1700.0,2019-07-18 07:03:00,648 Lake St, San Francisco,CA,94016 +227543,Bose SoundSport Headphones,1,99.99,2019-07-18 07:03:00,648 Lake St, San Francisco,CA,94016 +227544,Lightning Charging Cable,1,14.95,2019-07-06 20:09:00,568 Sunset St, New York City,NY,10001 +227545,Bose SoundSport Headphones,1,99.99,2019-07-13 21:25:00,938 Lake St, Dallas,TX,75001 +227545,Apple Airpods Headphones,1,150.0,2019-07-13 21:25:00,938 Lake St, Dallas,TX,75001 +227546,iPhone,1,700.0,2019-07-30 19:02:00,184 Chestnut St, Dallas,TX,75001 +227547,Wired Headphones,2,11.99,2019-07-26 11:16:00,653 13th St, San Francisco,CA,94016 +227548,34in Ultrawide Monitor,1,379.99,2019-07-16 23:09:00,370 Church St, Austin,TX,73301 +227549,Lightning Charging Cable,1,14.95,2019-07-24 13:24:00,748 Center St, Boston,MA,02215 +227550,USB-C Charging Cable,1,11.95,2019-07-05 00:27:00,101 Hill St, Los Angeles,CA,90001 +227551,USB-C Charging Cable,1,11.95,2019-07-23 11:14:00,330 9th St, Los Angeles,CA,90001 +227552,Wired Headphones,1,11.99,2019-07-14 23:26:00,591 West St, New York City,NY,10001 +227553,AA Batteries (4-pack),2,3.84,2019-07-11 01:54:00,348 Spruce St, Dallas,TX,75001 +227554,Apple Airpods Headphones,1,150.0,2019-07-10 15:20:00,936 Walnut St, Dallas,TX,75001 +227555,LG Dryer,1,600.0,2019-07-26 14:35:00,371 Johnson St, San Francisco,CA,94016 +227556,USB-C Charging Cable,1,11.95,2019-07-17 11:31:00,321 Forest St, San Francisco,CA,94016 +227556,27in FHD Monitor,1,149.99,2019-07-17 11:31:00,321 Forest St, San Francisco,CA,94016 +227557,AAA Batteries (4-pack),2,2.99,2019-07-22 16:55:00,391 Jefferson St, New York City,NY,10001 +227558,Lightning Charging Cable,1,14.95,2019-07-17 11:19:00,516 Main St, Boston,MA,02215 +227559,Flatscreen TV,1,300.0,2019-07-18 20:59:00,885 Walnut St, Portland,ME,04101 +227560,AA Batteries (4-pack),2,3.84,2019-07-29 11:17:00,725 14th St, Atlanta,GA,30301 +227561,AA Batteries (4-pack),1,3.84,2019-07-26 19:29:00,967 Maple St, Atlanta,GA,30301 +227562,Apple Airpods Headphones,1,150.0,2019-07-11 23:46:00,53 Madison St, Seattle,WA,98101 +227563,ThinkPad Laptop,1,999.99,2019-07-30 08:42:00,386 Chestnut St, New York City,NY,10001 +227564,34in Ultrawide Monitor,1,379.99,2019-07-14 17:22:00,444 Lake St, San Francisco,CA,94016 +227565,Bose SoundSport Headphones,1,99.99,2019-07-08 09:52:00,146 River St, Boston,MA,02215 +227565,USB-C Charging Cable,1,11.95,2019-07-08 09:52:00,146 River St, Boston,MA,02215 +227566,27in FHD Monitor,1,149.99,2019-07-16 21:11:00,597 Washington St, San Francisco,CA,94016 +227567,AA Batteries (4-pack),2,3.84,2019-07-11 18:18:00,400 10th St, Boston,MA,02215 +227568,27in FHD Monitor,1,149.99,2019-07-26 18:09:00,60 14th St, Boston,MA,02215 +227569,27in 4K Gaming Monitor,1,389.99,2019-07-18 22:37:00,28 Lakeview St, Portland,OR,97035 +227570,AA Batteries (4-pack),3,3.84,2019-07-25 16:59:00,839 South St, New York City,NY,10001 +227571,Wired Headphones,1,11.99,2019-07-30 10:33:00,96 Washington St, Portland,OR,97035 +227572,AA Batteries (4-pack),1,3.84,2019-07-24 11:38:00,708 Center St, Los Angeles,CA,90001 +227573,USB-C Charging Cable,1,11.95,2019-07-30 21:23:00,696 Church St, New York City,NY,10001 +227574,Wired Headphones,1,11.99,2019-07-23 13:46:00,518 1st St, Seattle,WA,98101 +227575,Lightning Charging Cable,1,14.95,2019-07-05 14:53:00,10 Jefferson St, Atlanta,GA,30301 +227576,Wired Headphones,1,11.99,2019-07-07 11:10:00,261 8th St, Los Angeles,CA,90001 +227577,Lightning Charging Cable,1,14.95,2019-07-31 19:02:00,170 Church St, Portland,OR,97035 +227578,Flatscreen TV,1,300.0,2019-07-30 20:49:00,413 2nd St, Dallas,TX,75001 +227579,Macbook Pro Laptop,1,1700.0,2019-07-01 20:38:00,18 Cherry St, San Francisco,CA,94016 +227580,ThinkPad Laptop,1,999.99,2019-07-31 20:42:00,748 11th St, Los Angeles,CA,90001 +227581,AA Batteries (4-pack),1,3.84,2019-07-10 13:16:00,256 North St, San Francisco,CA,94016 +227582,Bose SoundSport Headphones,1,99.99,2019-07-20 11:44:00,206 Willow St, New York City,NY,10001 +227583,USB-C Charging Cable,1,11.95,2019-07-04 14:51:00,675 Lincoln St, Boston,MA,02215 +227584,AAA Batteries (4-pack),1,2.99,2019-07-27 16:18:00,41 6th St, San Francisco,CA,94016 +227585,34in Ultrawide Monitor,1,379.99,2019-07-13 15:07:00,85 Highland St, New York City,NY,10001 +227586,Bose SoundSport Headphones,1,99.99,2019-07-25 13:36:00,416 Sunset St, Los Angeles,CA,90001 +227587,AA Batteries (4-pack),1,3.84,2019-07-09 01:47:00,978 Jefferson St, New York City,NY,10001 +227588,AA Batteries (4-pack),1,3.84,2019-07-01 08:21:00,173 Meadow St, New York City,NY,10001 +227589,Lightning Charging Cable,1,14.95,2019-07-04 13:01:00,214 Meadow St, Portland,OR,97035 +227590,Lightning Charging Cable,1,14.95,2019-07-07 22:24:00,526 6th St, Dallas,TX,75001 +227591,Apple Airpods Headphones,1,150.0,2019-07-02 22:46:00,112 Maple St, San Francisco,CA,94016 +227592,Lightning Charging Cable,1,14.95,2019-07-13 10:46:00,693 Pine St, San Francisco,CA,94016 +227593,AA Batteries (4-pack),1,3.84,2019-07-29 22:18:00,775 1st St, San Francisco,CA,94016 +227594,Wired Headphones,1,11.99,2019-07-27 11:18:00,415 Washington St, Boston,MA,02215 +227595,Bose SoundSport Headphones,1,99.99,2019-07-15 15:08:00,227 Forest St, San Francisco,CA,94016 +227596,Macbook Pro Laptop,1,1700.0,2019-07-11 12:02:00,305 14th St, New York City,NY,10001 +227597,AAA Batteries (4-pack),3,2.99,2019-07-13 23:07:00,694 Park St, Los Angeles,CA,90001 +227598,Lightning Charging Cable,1,14.95,2019-07-31 07:12:00,853 11th St, San Francisco,CA,94016 +227599,Macbook Pro Laptop,1,1700.0,2019-07-14 16:05:00,509 Sunset St, Los Angeles,CA,90001 +227600,AAA Batteries (4-pack),2,2.99,2019-07-02 08:16:00,575 Sunset St, San Francisco,CA,94016 +227601,27in FHD Monitor,1,149.99,2019-07-21 15:26:00,776 1st St, Seattle,WA,98101 +227602,Wired Headphones,1,11.99,2019-07-12 08:26:00,73 Willow St, Seattle,WA,98101 +227603,Google Phone,1,600.0,2019-07-11 16:06:00,401 Jefferson St, San Francisco,CA,94016 +227604,Lightning Charging Cable,1,14.95,2019-07-02 01:24:00,779 Madison St, Atlanta,GA,30301 +227605,Bose SoundSport Headphones,1,99.99,2019-07-17 19:18:00,428 Maple St, Boston,MA,02215 +227606,USB-C Charging Cable,2,11.95,2019-07-22 23:11:00,222 1st St, Seattle,WA,98101 +227607,Lightning Charging Cable,2,14.95,2019-07-29 00:43:00,723 7th St, San Francisco,CA,94016 +227608,AAA Batteries (4-pack),3,2.99,2019-07-17 13:32:00,519 Jefferson St, Los Angeles,CA,90001 +227609,USB-C Charging Cable,1,11.95,2019-07-07 18:02:00,830 Hill St, Boston,MA,02215 +227610,AA Batteries (4-pack),1,3.84,2019-07-31 20:32:00,81 2nd St, San Francisco,CA,94016 +227611,Bose SoundSport Headphones,1,99.99,2019-07-03 15:40:00,525 Johnson St, Atlanta,GA,30301 +227612,AAA Batteries (4-pack),1,2.99,2019-07-22 22:37:00,679 Main St, Los Angeles,CA,90001 +227613,Lightning Charging Cable,1,14.95,2019-07-15 12:22:00,323 Park St, New York City,NY,10001 +227614,Bose SoundSport Headphones,1,99.99,2019-07-17 07:53:00,309 9th St, Austin,TX,73301 +227615,iPhone,1,700.0,2019-07-15 19:34:00,883 Maple St, New York City,NY,10001 +227616,Lightning Charging Cable,1,14.95,2019-07-24 21:48:00,302 Highland St, New York City,NY,10001 +227617,USB-C Charging Cable,1,11.95,2019-07-31 20:28:00,603 Chestnut St, New York City,NY,10001 +227618,USB-C Charging Cable,1,11.95,2019-07-21 15:48:00,725 Church St, San Francisco,CA,94016 +227619,Bose SoundSport Headphones,1,99.99,2019-07-27 15:28:00,816 13th St, New York City,NY,10001 +227620,USB-C Charging Cable,1,11.95,2019-07-08 17:15:00,630 Forest St, New York City,NY,10001 +227621,27in FHD Monitor,1,149.99,2019-07-02 17:17:00,274 Park St, New York City,NY,10001 +227622,20in Monitor,1,109.99,2019-07-06 12:06:00,400 10th St, New York City,NY,10001 +227623,AA Batteries (4-pack),1,3.84,2019-07-05 16:40:00,167 Wilson St, Dallas,TX,75001 +227624,Apple Airpods Headphones,1,150.0,2019-07-31 19:55:00,636 Washington St, Boston,MA,02215 +227625,Vareebadd Phone,1,400.0,2019-07-05 23:14:00,142 Cherry St, San Francisco,CA,94016 +227626,AAA Batteries (4-pack),1,2.99,2019-07-04 19:37:00,853 South St, Los Angeles,CA,90001 +227627,USB-C Charging Cable,1,11.95,2019-07-26 13:25:00,247 Cherry St, Boston,MA,02215 +227628,AA Batteries (4-pack),1,3.84,2019-07-03 11:34:00,815 Willow St, Seattle,WA,98101 +227629,Wired Headphones,1,11.99,2019-07-30 10:38:00,916 Walnut St, New York City,NY,10001 +227630,Wired Headphones,1,11.99,2019-07-24 07:08:00,266 6th St, Dallas,TX,75001 +227631,AAA Batteries (4-pack),1,2.99,2019-07-31 20:28:00,9 1st St, Los Angeles,CA,90001 +227632,USB-C Charging Cable,1,11.95,2019-07-13 12:31:00,698 Highland St, San Francisco,CA,94016 +227633,Wired Headphones,1,11.99,2019-07-28 18:01:00,884 Elm St, Los Angeles,CA,90001 +227634,Macbook Pro Laptop,1,1700.0,2019-07-16 19:14:00,592 10th St, New York City,NY,10001 +227635,Lightning Charging Cable,1,14.95,2019-07-26 14:03:00,135 Chestnut St, New York City,NY,10001 +227635,USB-C Charging Cable,1,11.95,2019-07-26 14:03:00,135 Chestnut St, New York City,NY,10001 +227636,Macbook Pro Laptop,1,1700.0,2019-07-02 21:31:00,859 Adams St, New York City,NY,10001 +227637,USB-C Charging Cable,2,11.95,2019-07-10 16:29:00,536 North St, San Francisco,CA,94016 +227638,Flatscreen TV,1,300.0,2019-07-18 15:15:00,730 Highland St, San Francisco,CA,94016 +227639,AAA Batteries (4-pack),1,2.99,2019-07-16 18:25:00,656 Cedar St, Atlanta,GA,30301 +227640,Google Phone,1,600.0,2019-07-18 11:51:00,895 Dogwood St, Dallas,TX,75001 +227641,Apple Airpods Headphones,1,150.0,2019-07-16 22:17:00,811 Hill St, Portland,OR,97035 +227642,Apple Airpods Headphones,1,150.0,2019-07-20 15:13:00,193 South St, Atlanta,GA,30301 +227643,AAA Batteries (4-pack),1,2.99,2019-07-22 15:21:00,75 Lakeview St, San Francisco,CA,94016 +227644,Wired Headphones,1,11.99,2019-07-29 21:46:00,52 Cherry St, San Francisco,CA,94016 +227645,Wired Headphones,1,11.99,2019-07-30 22:58:00,535 5th St, Atlanta,GA,30301 +227646,AA Batteries (4-pack),1,3.84,2019-07-08 15:09:00,242 Johnson St, New York City,NY,10001 +227647,Apple Airpods Headphones,1,150.0,2019-07-07 19:35:00,105 Wilson St, Seattle,WA,98101 +227648,Wired Headphones,2,11.99,2019-07-05 19:31:00,794 9th St, San Francisco,CA,94016 +227649,USB-C Charging Cable,1,11.95,2019-07-15 17:23:00,8 1st St, Dallas,TX,75001 +227650,ThinkPad Laptop,1,999.99,2019-07-14 12:53:00,793 Madison St, New York City,NY,10001 +227651,AA Batteries (4-pack),1,3.84,2019-07-18 20:35:00,657 Cherry St, Dallas,TX,75001 +227652,AA Batteries (4-pack),1,3.84,2019-07-26 10:48:00,316 Forest St, Los Angeles,CA,90001 +227653,AA Batteries (4-pack),2,3.84,2019-07-07 08:33:00,581 6th St, San Francisco,CA,94016 +227654,27in 4K Gaming Monitor,1,389.99,2019-07-31 11:44:00,412 Maple St, Atlanta,GA,30301 +227655,Bose SoundSport Headphones,1,99.99,2019-07-17 16:36:00,306 Main St, Boston,MA,02215 +227656,20in Monitor,1,109.99,2019-07-07 13:14:00,10 Ridge St, Portland,OR,97035 +227657,AA Batteries (4-pack),2,3.84,2019-07-04 20:39:00,901 Center St, San Francisco,CA,94016 +227658,AAA Batteries (4-pack),1,2.99,2019-07-24 19:32:00,214 12th St, Dallas,TX,75001 +227659,Flatscreen TV,1,300.0,2019-07-29 10:01:00,908 Cedar St, San Francisco,CA,94016 +227660,27in FHD Monitor,1,149.99,2019-07-20 00:16:00,71 Spruce St, Austin,TX,73301 +227661,USB-C Charging Cable,1,11.95,2019-07-16 23:55:00,228 Cherry St, Seattle,WA,98101 +227661,Lightning Charging Cable,1,14.95,2019-07-16 23:55:00,228 Cherry St, Seattle,WA,98101 +227662,Bose SoundSport Headphones,1,99.99,2019-07-18 11:16:00,528 1st St, Austin,TX,73301 +227663,USB-C Charging Cable,1,11.95,2019-07-30 10:02:00,175 7th St, Boston,MA,02215 +227664,Google Phone,1,600.0,2019-07-01 14:39:00,625 2nd St, Austin,TX,73301 +227664,Bose SoundSport Headphones,1,99.99,2019-07-01 14:39:00,625 2nd St, Austin,TX,73301 +227664,Wired Headphones,2,11.99,2019-07-01 14:39:00,625 2nd St, Austin,TX,73301 +227665,Google Phone,1,600.0,2019-07-10 21:08:00,783 Lake St, San Francisco,CA,94016 +227666,Wired Headphones,1,11.99,2019-07-08 16:47:00,378 10th St, San Francisco,CA,94016 +227667,Wired Headphones,1,11.99,2019-07-17 08:21:00,724 Center St, New York City,NY,10001 +227668,Apple Airpods Headphones,1,150.0,2019-07-13 12:32:00,177 10th St, Seattle,WA,98101 +227668,34in Ultrawide Monitor,1,379.99,2019-07-13 12:32:00,177 10th St, Seattle,WA,98101 +227669,34in Ultrawide Monitor,1,379.99,2019-07-10 21:35:00,255 Lincoln St, Atlanta,GA,30301 +227670,Lightning Charging Cable,1,14.95,2019-07-22 13:09:00,612 South St, San Francisco,CA,94016 +227671,Bose SoundSport Headphones,1,99.99,2019-07-28 10:59:00,353 Washington St, San Francisco,CA,94016 +227672,Wired Headphones,1,11.99,2019-07-19 10:40:00,987 River St, Seattle,WA,98101 +227673,Apple Airpods Headphones,1,150.0,2019-07-18 12:42:00,176 Cedar St, Seattle,WA,98101 +227674,Apple Airpods Headphones,1,150.0,2019-07-06 14:31:00,531 Willow St, Seattle,WA,98101 +227675,Wired Headphones,1,11.99,2019-07-20 19:06:00,749 Hill St, Boston,MA,02215 +227676,USB-C Charging Cable,1,11.95,2019-07-25 23:53:00,71 Hickory St, Los Angeles,CA,90001 +227677,AAA Batteries (4-pack),1,2.99,2019-07-15 10:41:00,184 7th St, San Francisco,CA,94016 +227678,AAA Batteries (4-pack),2,2.99,2019-07-06 18:59:00,22 2nd St, Dallas,TX,75001 +227679,AA Batteries (4-pack),1,3.84,2019-07-13 12:09:00,825 Washington St, San Francisco,CA,94016 +227680,Wired Headphones,1,11.99,2019-07-18 20:43:00,892 9th St, Atlanta,GA,30301 +227681,AA Batteries (4-pack),2,3.84,2019-07-22 21:49:00,800 Highland St, San Francisco,CA,94016 +227682,Wired Headphones,1,11.99,2019-07-10 10:03:00,11 Ridge St, Boston,MA,02215 +227683,34in Ultrawide Monitor,1,379.99,2019-07-04 11:18:00,664 5th St, San Francisco,CA,94016 +227684,Flatscreen TV,1,300.0,2019-07-19 13:20:00,43 South St, San Francisco,CA,94016 +227685,20in Monitor,1,109.99,2019-07-26 21:28:00,564 Forest St, New York City,NY,10001 +227686,AA Batteries (4-pack),1,3.84,2019-07-06 19:48:00,195 Dogwood St, San Francisco,CA,94016 +227687,27in 4K Gaming Monitor,1,389.99,2019-07-21 07:37:00,22 West St, Dallas,TX,75001 +227688,Lightning Charging Cable,1,14.95,2019-07-27 14:43:00,55 9th St, Boston,MA,02215 +227689,AAA Batteries (4-pack),1,2.99,2019-07-15 23:05:00,362 North St, New York City,NY,10001 +227690,Apple Airpods Headphones,1,150.0,2019-07-07 11:38:00,221 North St, San Francisco,CA,94016 +227691,AA Batteries (4-pack),2,3.84,2019-07-07 13:28:00,863 Ridge St, Atlanta,GA,30301 +227692,Bose SoundSport Headphones,1,99.99,2019-07-03 10:44:00,41 11th St, Boston,MA,02215 +227693,Lightning Charging Cable,1,14.95,2019-07-05 12:34:00,417 Hickory St, Los Angeles,CA,90001 +227694,27in 4K Gaming Monitor,1,389.99,2019-07-10 12:03:00,655 Church St, Austin,TX,73301 +227695,AA Batteries (4-pack),1,3.84,2019-07-14 16:16:00,541 Church St, Los Angeles,CA,90001 +227696,27in FHD Monitor,1,149.99,2019-07-21 13:06:00,806 9th St, New York City,NY,10001 +227697,USB-C Charging Cable,1,11.95,2019-07-11 17:33:00,797 Lake St, Los Angeles,CA,90001 +227698,Flatscreen TV,1,300.0,2019-07-25 11:30:00,94 Jackson St, New York City,NY,10001 +227699,AA Batteries (4-pack),1,3.84,2019-07-24 20:21:00,280 Pine St, Los Angeles,CA,90001 +227700,AAA Batteries (4-pack),1,2.99,2019-07-23 07:04:00,85 1st St, Portland,OR,97035 +227701,Bose SoundSport Headphones,1,99.99,2019-07-09 12:58:00,42 Maple St, New York City,NY,10001 +227702,34in Ultrawide Monitor,1,379.99,2019-07-31 09:02:00,239 Lakeview St, Seattle,WA,98101 +227703,27in FHD Monitor,1,149.99,2019-07-20 06:57:00,854 9th St, Seattle,WA,98101 +227704,Bose SoundSport Headphones,1,99.99,2019-07-02 23:33:00,337 8th St, Los Angeles,CA,90001 +227705,Lightning Charging Cable,1,14.95,2019-07-24 14:46:00,28 River St, Austin,TX,73301 +227706,Macbook Pro Laptop,1,1700.0,2019-07-28 19:02:00,985 Madison St, San Francisco,CA,94016 +227707,Bose SoundSport Headphones,1,99.99,2019-07-04 16:17:00,958 Meadow St, San Francisco,CA,94016 +227708,Vareebadd Phone,1,400.0,2019-07-09 21:51:00,346 Lake St, New York City,NY,10001 +227708,Wired Headphones,1,11.99,2019-07-09 21:51:00,346 Lake St, New York City,NY,10001 +227709,27in 4K Gaming Monitor,1,389.99,2019-07-01 17:58:00,691 2nd St, Atlanta,GA,30301 +227710,Bose SoundSport Headphones,1,99.99,2019-07-12 14:46:00,21 Meadow St, Boston,MA,02215 +227711,Macbook Pro Laptop,1,1700.0,2019-07-29 22:32:00,49 1st St, Seattle,WA,98101 +227712,Lightning Charging Cable,1,14.95,2019-07-27 19:39:00,142 Willow St, Portland,OR,97035 +227713,Wired Headphones,1,11.99,2019-07-05 08:27:00,59 Chestnut St, New York City,NY,10001 +227714,Flatscreen TV,1,300.0,2019-07-15 19:48:00,784 Center St, San Francisco,CA,94016 +227715,AAA Batteries (4-pack),2,2.99,2019-07-07 06:54:00,784 Lakeview St, San Francisco,CA,94016 +227716,AAA Batteries (4-pack),2,2.99,2019-07-05 00:36:00,240 9th St, San Francisco,CA,94016 +227717,Lightning Charging Cable,2,14.95,2019-07-12 19:43:00,19 Highland St, Boston,MA,02215 +227718,Google Phone,1,600.0,2019-07-07 22:32:00,522 Church St, Boston,MA,02215 +227718,Wired Headphones,2,11.99,2019-07-07 22:32:00,522 Church St, Boston,MA,02215 +227719,AA Batteries (4-pack),1,3.84,2019-07-07 15:59:00,209 7th St, San Francisco,CA,94016 +227720,27in 4K Gaming Monitor,1,389.99,2019-07-12 20:07:00,800 River St, Dallas,TX,75001 +227721,USB-C Charging Cable,1,11.95,2019-07-10 15:31:00,678 Hill St, Portland,OR,97035 +227722,AAA Batteries (4-pack),1,2.99,2019-07-04 17:53:00,244 8th St, San Francisco,CA,94016 +227723,USB-C Charging Cable,1,11.95,2019-07-30 11:22:00,774 Center St, Atlanta,GA,30301 +227724,AA Batteries (4-pack),1,3.84,2019-07-12 10:37:00,196 8th St, Seattle,WA,98101 +227725,27in FHD Monitor,1,149.99,2019-07-03 17:41:00,964 Main St, Boston,MA,02215 +227726,USB-C Charging Cable,1,11.95,2019-07-25 08:19:00,18 Highland St, Portland,OR,97035 +227727,AA Batteries (4-pack),1,3.84,2019-07-28 19:19:00,501 Forest St, San Francisco,CA,94016 +227727,Lightning Charging Cable,1,14.95,2019-07-28 19:19:00,501 Forest St, San Francisco,CA,94016 +227728,Wired Headphones,2,11.99,2019-07-17 21:01:00,547 South St, Dallas,TX,75001 +227729,AAA Batteries (4-pack),1,2.99,2019-07-21 00:38:00,751 14th St, New York City,NY,10001 +227730,AA Batteries (4-pack),1,3.84,2019-07-30 23:16:00,89 10th St, New York City,NY,10001 +227731,AA Batteries (4-pack),1,3.84,2019-07-22 16:26:00,672 Cedar St, Atlanta,GA,30301 +227732,Apple Airpods Headphones,1,150.0,2019-08-01 00:33:00,146 Lake St, Boston,MA,02215 +227733,Google Phone,1,600.0,2019-07-19 09:23:00,51 North St, San Francisco,CA,94016 +227734,27in FHD Monitor,1,149.99,2019-07-18 20:11:00,327 Meadow St, Dallas,TX,75001 +227735,AAA Batteries (4-pack),2,2.99,2019-07-17 09:16:00,949 Hill St, Seattle,WA,98101 +227736,Lightning Charging Cable,1,14.95,2019-07-05 13:34:00,708 6th St, San Francisco,CA,94016 +227737,Bose SoundSport Headphones,1,99.99,2019-07-19 09:20:00,602 Church St, Dallas,TX,75001 +227738,USB-C Charging Cable,1,11.95,2019-07-20 12:28:00,690 14th St, San Francisco,CA,94016 +227739,Flatscreen TV,1,300.0,2019-07-26 14:37:00,550 Lake St, Boston,MA,02215 +227740,AA Batteries (4-pack),1,3.84,2019-07-05 12:36:00,906 Church St, San Francisco,CA,94016 +227741,Bose SoundSport Headphones,1,99.99,2019-07-28 15:48:00,655 5th St, New York City,NY,10001 +227742,Flatscreen TV,1,300.0,2019-07-12 21:29:00,476 Wilson St, Portland,OR,97035 +227743,Wired Headphones,1,11.99,2019-07-30 19:37:00,965 West St, Atlanta,GA,30301 +227744,Lightning Charging Cable,1,14.95,2019-07-13 18:35:00,944 Lake St, Dallas,TX,75001 +227745,Wired Headphones,2,11.99,2019-07-26 12:21:00,658 Jackson St, Boston,MA,02215 +227746,Lightning Charging Cable,1,14.95,2019-07-03 21:49:00,600 Highland St, New York City,NY,10001 +227747,27in 4K Gaming Monitor,1,389.99,2019-07-24 18:18:00,468 14th St, Los Angeles,CA,90001 +227748,USB-C Charging Cable,1,11.95,2019-07-06 07:37:00,440 Willow St, New York City,NY,10001 +227749,Apple Airpods Headphones,1,150.0,2019-07-24 12:52:00,873 13th St, Dallas,TX,75001 +227750,USB-C Charging Cable,1,11.95,2019-07-30 22:05:00,933 Willow St, Seattle,WA,98101 +227751,Bose SoundSport Headphones,1,99.99,2019-07-15 00:59:00,662 6th St, Atlanta,GA,30301 +227752,iPhone,1,700.0,2019-07-30 07:33:00,956 Spruce St, Los Angeles,CA,90001 +227753,Google Phone,1,600.0,2019-07-28 21:58:00,518 9th St, New York City,NY,10001 +227753,Lightning Charging Cable,1,14.95,2019-07-28 21:58:00,518 9th St, New York City,NY,10001 +227754,Bose SoundSport Headphones,1,99.99,2019-07-14 21:04:00,867 Lake St, New York City,NY,10001 +227755,Lightning Charging Cable,1,14.95,2019-07-25 13:59:00,238 Adams St, Los Angeles,CA,90001 +227755,USB-C Charging Cable,1,11.95,2019-07-25 13:59:00,238 Adams St, Los Angeles,CA,90001 +227756,USB-C Charging Cable,2,11.95,2019-07-11 07:20:00,27 Walnut St, Atlanta,GA,30301 +227757,Lightning Charging Cable,1,14.95,2019-07-20 18:12:00,17 6th St, Seattle,WA,98101 +227758,AAA Batteries (4-pack),1,2.99,2019-07-26 12:19:00,123 1st St, San Francisco,CA,94016 +227759,Lightning Charging Cable,1,14.95,2019-07-16 17:26:00,486 Wilson St, Los Angeles,CA,90001 +227760,Google Phone,1,600.0,2019-07-22 18:02:00,879 Hickory St, Los Angeles,CA,90001 +227761,AAA Batteries (4-pack),1,2.99,2019-07-15 21:37:00,127 Meadow St, Portland,OR,97035 +227762,USB-C Charging Cable,1,11.95,2019-07-09 18:56:00,125 1st St, Seattle,WA,98101 +227763,Google Phone,1,600.0,2019-07-12 13:37:00,395 Cherry St, Dallas,TX,75001 +227764,Wired Headphones,1,11.99,2019-07-31 20:06:00,139 6th St, Austin,TX,73301 +227765,USB-C Charging Cable,1,11.95,2019-07-22 20:21:00,129 1st St, Boston,MA,02215 +227766,iPhone,1,700.0,2019-07-27 20:39:00,223 5th St, Atlanta,GA,30301 +227767,Macbook Pro Laptop,1,1700.0,2019-07-12 20:25:00,528 Hill St, Boston,MA,02215 +227768,27in 4K Gaming Monitor,1,389.99,2019-07-16 07:37:00,983 Maple St, San Francisco,CA,94016 +227769,AAA Batteries (4-pack),1,2.99,2019-07-13 18:18:00,319 Walnut St, Los Angeles,CA,90001 +227770,AAA Batteries (4-pack),1,2.99,2019-07-29 15:55:00,14 Dogwood St, Portland,OR,97035 +227771,Wired Headphones,1,11.99,2019-07-13 10:20:00,265 North St, New York City,NY,10001 +227772,Macbook Pro Laptop,1,1700.0,2019-07-23 18:39:00,495 Wilson St, New York City,NY,10001 +227773,USB-C Charging Cable,1,11.95,2019-07-07 18:33:00,323 Hickory St, Atlanta,GA,30301 +227774,iPhone,1,700.0,2019-07-19 17:35:00,669 13th St, Los Angeles,CA,90001 +227774,Apple Airpods Headphones,1,150.0,2019-07-19 17:35:00,669 13th St, Los Angeles,CA,90001 +227775,Wired Headphones,2,11.99,2019-07-19 16:18:00,31 West St, Los Angeles,CA,90001 +227776,USB-C Charging Cable,1,11.95,2019-07-08 00:07:00,206 Madison St, San Francisco,CA,94016 +227777,27in 4K Gaming Monitor,1,389.99,2019-07-10 23:43:00,947 7th St, Austin,TX,73301 +227778,27in FHD Monitor,1,149.99,2019-07-31 19:58:00,620 North St, Seattle,WA,98101 +227779,ThinkPad Laptop,1,999.99,2019-07-08 09:41:00,253 Lakeview St, Atlanta,GA,30301 +227780,AAA Batteries (4-pack),1,2.99,2019-07-19 12:30:00,434 Elm St, Atlanta,GA,30301 +227781,27in FHD Monitor,1,149.99,2019-07-05 11:05:00,183 9th St, San Francisco,CA,94016 +227782,AAA Batteries (4-pack),2,2.99,2019-07-12 00:47:00,980 Highland St, Seattle,WA,98101 +227783,AAA Batteries (4-pack),1,2.99,2019-07-18 16:48:00,780 Ridge St, Austin,TX,73301 +227784,USB-C Charging Cable,1,11.95,2019-07-17 12:18:00,763 7th St, San Francisco,CA,94016 +227784,Wired Headphones,1,11.99,2019-07-17 12:18:00,763 7th St, San Francisco,CA,94016 +227785,AAA Batteries (4-pack),1,2.99,2019-07-29 15:11:00,295 Jackson St, Portland,ME,04101 +227786,27in 4K Gaming Monitor,1,389.99,2019-07-16 14:21:00,902 River St, New York City,NY,10001 +227787,Wired Headphones,1,11.99,2019-07-18 08:35:00,739 Ridge St, Dallas,TX,75001 +227788,AA Batteries (4-pack),1,3.84,2019-07-21 21:35:00,904 Elm St, San Francisco,CA,94016 +227789,Apple Airpods Headphones,1,150.0,2019-07-25 21:03:00,751 Cherry St, Los Angeles,CA,90001 +227790,Flatscreen TV,1,300.0,2019-07-03 20:00:00,957 Adams St, Dallas,TX,75001 +227791,Wired Headphones,1,11.99,2019-07-13 16:36:00,194 South St, Austin,TX,73301 +227792,Lightning Charging Cable,1,14.95,2019-07-13 14:01:00,471 Jefferson St, Dallas,TX,75001 +227793,USB-C Charging Cable,2,11.95,2019-07-01 21:04:00,329 Hill St, New York City,NY,10001 +227794,AA Batteries (4-pack),2,3.84,2019-07-27 22:02:00,636 9th St, Los Angeles,CA,90001 +227795,Vareebadd Phone,1,400.0,2019-07-26 18:38:00,733 Johnson St, San Francisco,CA,94016 +227796,Lightning Charging Cable,1,14.95,2019-07-25 16:41:00,960 Main St, San Francisco,CA,94016 +227797,AA Batteries (4-pack),1,3.84,2019-07-13 06:58:00,719 Jefferson St, Austin,TX,73301 +227798,27in 4K Gaming Monitor,1,389.99,2019-07-21 15:40:00,27 Forest St, Boston,MA,02215 +227799,27in FHD Monitor,1,149.99,2019-07-06 10:33:00,255 Jackson St, Boston,MA,02215 +227800,Bose SoundSport Headphones,1,99.99,2019-07-19 07:47:00,429 Madison St, San Francisco,CA,94016 +227801,ThinkPad Laptop,1,999.99,2019-07-26 18:40:00,739 11th St, San Francisco,CA,94016 +227802,Wired Headphones,1,11.99,2019-07-28 14:48:00,846 1st St, Seattle,WA,98101 +227803,Apple Airpods Headphones,1,150.0,2019-07-12 13:21:00,87 14th St, New York City,NY,10001 +227804,Bose SoundSport Headphones,1,99.99,2019-07-07 19:01:00,943 7th St, San Francisco,CA,94016 +227805,Google Phone,1,600.0,2019-07-20 07:34:00,559 North St, Boston,MA,02215 +227806,AA Batteries (4-pack),1,3.84,2019-07-04 14:45:00,928 Jackson St, Los Angeles,CA,90001 +227807,AA Batteries (4-pack),3,3.84,2019-07-13 09:02:00,176 Maple St, Los Angeles,CA,90001 +227808,Bose SoundSport Headphones,1,99.99,2019-07-05 13:05:00,240 Walnut St, New York City,NY,10001 +227809,Apple Airpods Headphones,1,150.0,2019-07-11 09:21:00,343 1st St, Portland,OR,97035 +227809,USB-C Charging Cable,2,11.95,2019-07-11 09:21:00,343 1st St, Portland,OR,97035 +227810,AAA Batteries (4-pack),1,2.99,2019-07-15 23:44:00,490 1st St, New York City,NY,10001 +227811,Apple Airpods Headphones,1,150.0,2019-07-02 07:56:00,826 11th St, San Francisco,CA,94016 +227812,Wired Headphones,1,11.99,2019-07-02 13:29:00,27 Forest St, Los Angeles,CA,90001 +227813,USB-C Charging Cable,1,11.95,2019-07-15 07:37:00,647 North St, Los Angeles,CA,90001 +227814,ThinkPad Laptop,1,999.99,2019-07-06 07:16:00,868 Forest St, San Francisco,CA,94016 +227815,AA Batteries (4-pack),2,3.84,2019-07-21 12:14:00,213 Adams St, Atlanta,GA,30301 +227816,AAA Batteries (4-pack),3,2.99,2019-07-26 16:12:00,976 Pine St, Boston,MA,02215 +227817,Bose SoundSport Headphones,1,99.99,2019-07-05 15:03:00,479 1st St, New York City,NY,10001 +227818,27in FHD Monitor,1,149.99,2019-07-22 22:06:00,418 8th St, New York City,NY,10001 +227819,Lightning Charging Cable,1,14.95,2019-07-05 18:37:00,826 Ridge St, New York City,NY,10001 +227820,AA Batteries (4-pack),1,3.84,2019-07-02 14:50:00,864 Walnut St, Portland,OR,97035 +227821,Wired Headphones,1,11.99,2019-07-01 22:42:00,621 6th St, New York City,NY,10001 +227821,27in FHD Monitor,1,149.99,2019-07-01 22:42:00,621 6th St, New York City,NY,10001 +227822,Bose SoundSport Headphones,1,99.99,2019-07-26 17:26:00,363 8th St, Portland,OR,97035 +227823,iPhone,1,700.0,2019-07-17 07:58:00,325 6th St, Austin,TX,73301 +227824,Wired Headphones,1,11.99,2019-07-26 18:10:00,443 Cherry St, Los Angeles,CA,90001 +227825,Flatscreen TV,1,300.0,2019-07-22 11:23:00,565 Hill St, San Francisco,CA,94016 +227826,iPhone,1,700.0,2019-07-25 16:47:00,185 Spruce St, Dallas,TX,75001 +227827,AAA Batteries (4-pack),1,2.99,2019-07-19 13:40:00,5 Cedar St, Dallas,TX,75001 +227828,AA Batteries (4-pack),1,3.84,2019-07-24 23:17:00,746 Ridge St, Dallas,TX,75001 +227828,34in Ultrawide Monitor,1,379.99,2019-07-24 23:17:00,746 Ridge St, Dallas,TX,75001 +227829,Apple Airpods Headphones,1,150.0,2019-07-06 15:55:00,802 9th St, San Francisco,CA,94016 +227830,AAA Batteries (4-pack),1,2.99,2019-07-06 10:45:00,15 Jackson St, Portland,OR,97035 +227831,Lightning Charging Cable,1,14.95,2019-07-06 12:00:00,201 Sunset St, Portland,OR,97035 +227832,Wired Headphones,1,11.99,2019-07-19 15:51:00,612 13th St, Seattle,WA,98101 +227833,Vareebadd Phone,1,400.0,2019-07-29 14:47:00,44 4th St, San Francisco,CA,94016 +227834,Bose SoundSport Headphones,1,99.99,2019-07-15 19:46:00,603 Maple St, Los Angeles,CA,90001 +227835,Bose SoundSport Headphones,1,99.99,2019-07-10 14:05:00,906 Hickory St, New York City,NY,10001 +227836,AA Batteries (4-pack),1,3.84,2019-07-27 16:55:00,779 Park St, Boston,MA,02215 +227837,20in Monitor,1,109.99,2019-07-24 18:01:00,360 6th St, Atlanta,GA,30301 +227838,Lightning Charging Cable,1,14.95,2019-07-13 10:10:00,853 Park St, New York City,NY,10001 +227839,USB-C Charging Cable,1,11.95,2019-07-28 17:21:00,343 7th St, Dallas,TX,75001 +227840,USB-C Charging Cable,1,11.95,2019-07-01 10:31:00,735 Hickory St, Boston,MA,02215 +227841,Vareebadd Phone,1,400.0,2019-07-05 06:41:00,159 Forest St, San Francisco,CA,94016 +227842,Bose SoundSport Headphones,1,99.99,2019-07-27 20:49:00,445 1st St, San Francisco,CA,94016 +227843,USB-C Charging Cable,1,11.95,2019-07-08 20:39:00,807 Ridge St, Los Angeles,CA,90001 +227843,Wired Headphones,1,11.99,2019-07-08 20:39:00,807 Ridge St, Los Angeles,CA,90001 +227844,27in FHD Monitor,1,149.99,2019-07-24 14:02:00,985 Cherry St, Los Angeles,CA,90001 +227845,USB-C Charging Cable,1,11.95,2019-07-04 21:05:00,159 Maple St, San Francisco,CA,94016 +227846,AA Batteries (4-pack),3,3.84,2019-07-16 20:30:00,625 10th St, Dallas,TX,75001 +227847,Apple Airpods Headphones,1,150.0,2019-07-11 00:19:00,572 2nd St, Los Angeles,CA,90001 +227848,Wired Headphones,1,11.99,2019-07-28 11:10:00,622 2nd St, Atlanta,GA,30301 +227849,USB-C Charging Cable,1,11.95,2019-07-06 11:26:00,28 West St, Boston,MA,02215 +227850,Wired Headphones,1,11.99,2019-07-18 14:08:00,220 Hickory St, Boston,MA,02215 +227851,Apple Airpods Headphones,1,150.0,2019-07-09 15:32:00,177 14th St, Austin,TX,73301 +227852,Lightning Charging Cable,2,14.95,2019-07-15 10:23:00,64 Forest St, Atlanta,GA,30301 +227853,LG Washing Machine,1,600.0,2019-07-27 13:15:00,420 2nd St, Los Angeles,CA,90001 +227854,Apple Airpods Headphones,1,150.0,2019-07-19 13:52:00,362 6th St, New York City,NY,10001 +227855,Vareebadd Phone,1,400.0,2019-07-03 19:14:00,799 Park St, Los Angeles,CA,90001 +227856,27in 4K Gaming Monitor,1,389.99,2019-07-23 05:46:00,811 1st St, Seattle,WA,98101 +227857,Wired Headphones,1,11.99,2019-07-01 22:11:00,949 Park St, Seattle,WA,98101 +227858,Lightning Charging Cable,1,14.95,2019-07-16 09:07:00,109 Hickory St, Austin,TX,73301 +227859,Wired Headphones,1,11.99,2019-07-10 11:38:00,642 5th St, New York City,NY,10001 +227860,iPhone,1,700.0,2019-07-08 18:36:00,643 Hill St, Boston,MA,02215 +227861,Apple Airpods Headphones,1,150.0,2019-07-09 20:35:00,785 11th St, New York City,NY,10001 +227862,27in 4K Gaming Monitor,1,389.99,2019-07-02 08:19:00,332 Pine St, Los Angeles,CA,90001 +227863,iPhone,1,700.0,2019-07-16 09:33:00,163 Willow St, San Francisco,CA,94016 +227864,AAA Batteries (4-pack),2,2.99,2019-07-21 19:53:00,950 Wilson St, Boston,MA,02215 +227865,AA Batteries (4-pack),1,3.84,2019-07-27 20:58:00,204 Adams St, Atlanta,GA,30301 +227866,Wired Headphones,1,11.99,2019-07-29 17:41:00,49 Wilson St, San Francisco,CA,94016 +227867,Flatscreen TV,1,300.0,2019-07-02 20:14:00,750 Pine St, San Francisco,CA,94016 +227868,Wired Headphones,1,11.99,2019-07-26 06:00:00,921 Washington St, Boston,MA,02215 +227869,AAA Batteries (4-pack),2,2.99,2019-07-13 10:52:00,383 11th St, New York City,NY,10001 +227870,27in FHD Monitor,1,149.99,2019-07-31 14:37:00,131 Maple St, Austin,TX,73301 +227871,Apple Airpods Headphones,1,150.0,2019-07-23 07:50:00,201 Washington St, San Francisco,CA,94016 +227872,Wired Headphones,1,11.99,2019-07-30 15:07:00,272 Pine St, New York City,NY,10001 +227873,Macbook Pro Laptop,1,1700.0,2019-07-29 07:05:00,628 Washington St, Los Angeles,CA,90001 +227874,Lightning Charging Cable,2,14.95,2019-07-04 09:01:00,533 Chestnut St, Boston,MA,02215 +227875,Lightning Charging Cable,1,14.95,2019-07-11 17:43:00,761 Washington St, Los Angeles,CA,90001 +227876,Wired Headphones,1,11.99,2019-07-10 20:15:00,557 Pine St, Boston,MA,02215 +227877,AA Batteries (4-pack),3,3.84,2019-07-04 11:56:00,708 1st St, Seattle,WA,98101 +227878,Wired Headphones,1,11.99,2019-07-16 20:06:00,608 Forest St, Los Angeles,CA,90001 +227879,27in 4K Gaming Monitor,1,389.99,2019-07-22 18:30:00,939 Church St, Los Angeles,CA,90001 +227880,34in Ultrawide Monitor,1,379.99,2019-07-15 19:04:00,764 11th St, San Francisco,CA,94016 +227881,iPhone,1,700.0,2019-07-26 14:01:00,223 Washington St, Seattle,WA,98101 +227881,Lightning Charging Cable,1,14.95,2019-07-26 14:01:00,223 Washington St, Seattle,WA,98101 +227882,AA Batteries (4-pack),3,3.84,2019-07-17 19:22:00,239 1st St, Boston,MA,02215 +227883,Apple Airpods Headphones,1,150.0,2019-07-13 18:36:00,659 13th St, Seattle,WA,98101 +227884,Bose SoundSport Headphones,1,99.99,2019-07-09 19:24:00,163 Pine St, Portland,OR,97035 +227885,AA Batteries (4-pack),1,3.84,2019-07-15 14:41:00,3 13th St, Portland,OR,97035 +227886,Lightning Charging Cable,1,14.95,2019-07-26 10:02:00,59 Walnut St, New York City,NY,10001 +227887,Wired Headphones,1,11.99,2019-07-10 21:28:00,474 Hickory St, Austin,TX,73301 +227888,Lightning Charging Cable,1,14.95,2019-07-24 12:56:00,479 13th St, Portland,OR,97035 +227889,Apple Airpods Headphones,1,150.0,2019-07-01 21:20:00,173 North St, Boston,MA,02215 +227890,Vareebadd Phone,1,400.0,2019-07-08 01:33:00,766 2nd St, Seattle,WA,98101 +227890,Wired Headphones,1,11.99,2019-07-08 01:33:00,766 2nd St, Seattle,WA,98101 +227891,AAA Batteries (4-pack),1,2.99,2019-07-24 16:12:00,399 River St, Portland,OR,97035 +227892,AA Batteries (4-pack),1,3.84,2019-07-18 16:16:00,54 Highland St, Dallas,TX,75001 +227893,Google Phone,1,600.0,2019-07-10 09:16:00,963 South St, New York City,NY,10001 +227893,Wired Headphones,1,11.99,2019-07-10 09:16:00,963 South St, New York City,NY,10001 +227894,USB-C Charging Cable,1,11.95,2019-07-06 08:51:00,60 Wilson St, New York City,NY,10001 +227895,Google Phone,1,600.0,2019-07-08 11:11:00,392 Jefferson St, Dallas,TX,75001 +227895,USB-C Charging Cable,1,11.95,2019-07-08 11:11:00,392 Jefferson St, Dallas,TX,75001 +227896,USB-C Charging Cable,2,11.95,2019-07-28 07:33:00,604 Wilson St, Los Angeles,CA,90001 +227897,Apple Airpods Headphones,1,150.0,2019-07-06 09:43:00,283 Elm St, Dallas,TX,75001 +227898,AAA Batteries (4-pack),2,2.99,2019-07-05 10:15:00,749 Johnson St, New York City,NY,10001 +227899,Bose SoundSport Headphones,1,99.99,2019-07-29 17:38:00,388 Wilson St, San Francisco,CA,94016 +227900,Bose SoundSport Headphones,1,99.99,2019-07-28 20:07:00,678 Jackson St, San Francisco,CA,94016 +227901,Google Phone,1,600.0,2019-07-04 20:22:00,993 Walnut St, Portland,ME,04101 +227902,Bose SoundSport Headphones,1,99.99,2019-07-21 17:45:00,88 Walnut St, San Francisco,CA,94016 +227903,Lightning Charging Cable,1,14.95,2019-07-19 17:34:00,810 Center St, San Francisco,CA,94016 +227904,Lightning Charging Cable,1,14.95,2019-07-01 21:05:00,379 11th St, San Francisco,CA,94016 +227905,Apple Airpods Headphones,1,150.0,2019-07-29 11:47:00,905 4th St, San Francisco,CA,94016 +227906,Wired Headphones,2,11.99,2019-07-30 02:38:00,735 10th St, Portland,OR,97035 +227907,AAA Batteries (4-pack),1,2.99,2019-07-31 20:21:00,30 6th St, San Francisco,CA,94016 +227908,AA Batteries (4-pack),1,3.84,2019-07-08 21:39:00,515 Cherry St, San Francisco,CA,94016 +227909,USB-C Charging Cable,1,11.95,2019-07-28 19:43:00,500 13th St, Atlanta,GA,30301 +227910,AA Batteries (4-pack),1,3.84,2019-07-25 11:24:00,35 Center St, San Francisco,CA,94016 +227911,AAA Batteries (4-pack),1,2.99,2019-07-24 23:57:00,808 8th St, San Francisco,CA,94016 +227912,AA Batteries (4-pack),1,3.84,2019-07-29 19:58:00,55 Adams St, Los Angeles,CA,90001 +227913,AA Batteries (4-pack),1,3.84,2019-07-25 15:58:00,945 West St, New York City,NY,10001 +227914,Apple Airpods Headphones,1,150.0,2019-07-11 09:36:00,866 Pine St, San Francisco,CA,94016 +227915,Macbook Pro Laptop,1,1700.0,2019-07-12 22:27:00,664 Dogwood St, Los Angeles,CA,90001 +227916,Apple Airpods Headphones,1,150.0,2019-07-04 15:43:00,73 13th St, Los Angeles,CA,90001 +227917,AA Batteries (4-pack),1,3.84,2019-07-18 08:23:00,171 Sunset St, Los Angeles,CA,90001 +227918,34in Ultrawide Monitor,1,379.99,2019-07-22 14:08:00,910 8th St, Dallas,TX,75001 +227919,AAA Batteries (4-pack),1,2.99,2019-07-31 00:22:00,758 Maple St, San Francisco,CA,94016 +227920,27in 4K Gaming Monitor,1,389.99,2019-07-28 11:10:00,842 6th St, Los Angeles,CA,90001 +227921,AA Batteries (4-pack),1,3.84,2019-07-23 12:36:00,688 7th St, New York City,NY,10001 +227922,Bose SoundSport Headphones,1,99.99,2019-07-28 00:12:00,157 Dogwood St, San Francisco,CA,94016 +227923,34in Ultrawide Monitor,1,379.99,2019-07-08 17:27:00,516 Chestnut St, San Francisco,CA,94016 +227924,USB-C Charging Cable,1,11.95,2019-07-04 10:09:00,930 1st St, San Francisco,CA,94016 +227925,Lightning Charging Cable,1,14.95,2019-07-27 15:56:00,712 Madison St, Dallas,TX,75001 +227926,Lightning Charging Cable,1,14.95,2019-07-05 13:12:00,163 Hickory St, Boston,MA,02215 +227927,Bose SoundSport Headphones,1,99.99,2019-07-15 12:01:00,275 Cedar St, Seattle,WA,98101 +227928,Wired Headphones,1,11.99,2019-07-19 19:54:00,595 Cherry St, Boston,MA,02215 +227929,Apple Airpods Headphones,1,150.0,2019-07-21 07:37:00,659 Chestnut St, Los Angeles,CA,90001 +227930,Google Phone,1,600.0,2019-07-21 13:36:00,386 Center St, San Francisco,CA,94016 +227931,Apple Airpods Headphones,1,150.0,2019-07-13 11:17:00,72 1st St, Los Angeles,CA,90001 +227932,AA Batteries (4-pack),1,3.84,2019-07-05 14:22:00,864 Lakeview St, San Francisco,CA,94016 +227933,Macbook Pro Laptop,1,1700.0,2019-07-21 15:11:00,140 Hill St, Portland,OR,97035 +227934,AAA Batteries (4-pack),2,2.99,2019-07-07 11:42:00,166 West St, Dallas,TX,75001 +227935,Wired Headphones,2,11.99,2019-07-13 15:16:00,262 7th St, Boston,MA,02215 +227936,AAA Batteries (4-pack),1,2.99,2019-07-15 11:37:00,130 Ridge St, Austin,TX,73301 +227937,Wired Headphones,1,11.99,2019-07-13 17:48:00,814 Jefferson St, Los Angeles,CA,90001 +227938,34in Ultrawide Monitor,1,379.99,2019-07-05 16:34:00,668 Walnut St, Los Angeles,CA,90001 +227939,Lightning Charging Cable,1,14.95,2019-07-11 12:28:00,874 Pine St, Los Angeles,CA,90001 +227940,Google Phone,1,600.0,2019-07-17 20:38:00,925 14th St, Atlanta,GA,30301 +227940,USB-C Charging Cable,1,11.95,2019-07-17 20:38:00,925 14th St, Atlanta,GA,30301 +227941,Lightning Charging Cable,1,14.95,2019-07-24 21:35:00,922 West St, San Francisco,CA,94016 +227942,Flatscreen TV,1,300.0,2019-07-23 20:00:00,438 Walnut St, Los Angeles,CA,90001 +227943,Wired Headphones,2,11.99,2019-07-21 19:57:00,155 Walnut St, Boston,MA,02215 +227944,Apple Airpods Headphones,1,150.0,2019-07-27 13:10:00,201 Meadow St, San Francisco,CA,94016 +227945,AA Batteries (4-pack),1,3.84,2019-07-24 19:31:00,798 Sunset St, New York City,NY,10001 +227946,Lightning Charging Cable,1,14.95,2019-07-16 15:03:00,946 Madison St, Dallas,TX,75001 +227947,AA Batteries (4-pack),1,3.84,2019-07-19 19:17:00,541 12th St, Los Angeles,CA,90001 +227948,USB-C Charging Cable,1,11.95,2019-07-29 15:42:00,611 South St, New York City,NY,10001 +227949,USB-C Charging Cable,1,11.95,2019-07-05 00:43:00,815 Cedar St, Dallas,TX,75001 +227950,Macbook Pro Laptop,1,1700.0,2019-07-14 07:43:00,703 Cedar St, Austin,TX,73301 +227951,iPhone,1,700.0,2019-07-04 11:37:00,143 Lake St, Austin,TX,73301 +227952,27in 4K Gaming Monitor,1,389.99,2019-07-15 19:56:00,306 Highland St, San Francisco,CA,94016 +227953,Lightning Charging Cable,2,14.95,2019-07-26 12:36:00,867 Forest St, Los Angeles,CA,90001 +227954,Wired Headphones,1,11.99,2019-07-31 08:01:00,276 Washington St, Boston,MA,02215 +227955,Macbook Pro Laptop,1,1700.0,2019-07-13 20:23:00,113 Sunset St, Los Angeles,CA,90001 +227956,AAA Batteries (4-pack),1,2.99,2019-07-10 09:34:00,51 River St, New York City,NY,10001 +227957,Bose SoundSport Headphones,1,99.99,2019-07-21 19:21:00,44 5th St, Portland,OR,97035 +227958,AAA Batteries (4-pack),1,2.99,2019-07-20 21:09:00,606 Church St, San Francisco,CA,94016 +227959,iPhone,1,700.0,2019-07-22 11:03:00,346 Cherry St, San Francisco,CA,94016 +227960,USB-C Charging Cable,1,11.95,2019-07-03 09:33:00,730 Madison St, San Francisco,CA,94016 +227961,Wired Headphones,1,11.99,2019-07-27 13:20:00,375 Lakeview St, Portland,OR,97035 +227962,USB-C Charging Cable,1,11.95,2019-07-24 12:24:00,646 Jackson St, Boston,MA,02215 +227963,Lightning Charging Cable,1,14.95,2019-07-05 17:07:00,142 10th St, Portland,OR,97035 +227964,AA Batteries (4-pack),1,3.84,2019-07-16 20:18:00,289 11th St, New York City,NY,10001 +227965,Bose SoundSport Headphones,1,99.99,2019-07-01 12:17:00,614 Lakeview St, Portland,OR,97035 +227966,USB-C Charging Cable,1,11.95,2019-07-14 05:13:00,230 13th St, New York City,NY,10001 +227967,Google Phone,1,600.0,2019-07-21 09:32:00,777 Cedar St, Los Angeles,CA,90001 +227968,AA Batteries (4-pack),2,3.84,2019-07-06 18:49:00,103 Willow St, Los Angeles,CA,90001 +227969,Apple Airpods Headphones,1,150.0,2019-07-30 02:08:00,542 Walnut St, San Francisco,CA,94016 +227970,Vareebadd Phone,1,400.0,2019-07-26 19:12:00,294 Maple St, San Francisco,CA,94016 +227971,Flatscreen TV,1,300.0,2019-07-19 19:32:00,831 13th St, Boston,MA,02215 +227972,USB-C Charging Cable,1,11.95,2019-07-14 06:16:00,205 Jackson St, Austin,TX,73301 +227973,Lightning Charging Cable,1,14.95,2019-07-21 18:55:00,374 Pine St, Atlanta,GA,30301 +227974,ThinkPad Laptop,1,999.99,2019-07-10 09:52:00,746 5th St, Atlanta,GA,30301 +227975,27in 4K Gaming Monitor,1,389.99,2019-07-04 17:36:00,791 Ridge St, Boston,MA,02215 +227976,AAA Batteries (4-pack),2,2.99,2019-07-07 18:43:00,308 Hickory St, Boston,MA,02215 +227977,27in FHD Monitor,1,149.99,2019-07-23 12:53:00,696 Lake St, San Francisco,CA,94016 +227978,iPhone,1,700.0,2019-07-04 15:56:00,842 Hickory St, Boston,MA,02215 +227979,AA Batteries (4-pack),1,3.84,2019-07-19 01:39:00,661 River St, Boston,MA,02215 +227980,Lightning Charging Cable,1,14.95,2019-07-15 11:13:00,123 Hickory St, Atlanta,GA,30301 +227981,Apple Airpods Headphones,1,150.0,2019-07-23 16:23:00,509 River St, Portland,OR,97035 +227982,iPhone,1,700.0,2019-07-22 19:01:00,972 South St, San Francisco,CA,94016 +227982,Lightning Charging Cable,2,14.95,2019-07-22 19:01:00,972 South St, San Francisco,CA,94016 +227982,Apple Airpods Headphones,1,150.0,2019-07-22 19:01:00,972 South St, San Francisco,CA,94016 +227983,20in Monitor,1,109.99,2019-07-10 08:59:00,657 Jefferson St, New York City,NY,10001 +227984,Google Phone,1,600.0,2019-07-22 11:25:00,785 Hickory St, Los Angeles,CA,90001 +227984,USB-C Charging Cable,1,11.95,2019-07-22 11:25:00,785 Hickory St, Los Angeles,CA,90001 +227985,Google Phone,1,600.0,2019-07-08 14:46:00,818 Hickory St, New York City,NY,10001 +227986,Google Phone,1,600.0,2019-07-07 13:42:00,653 2nd St, New York City,NY,10001 +227987,Apple Airpods Headphones,1,150.0,2019-07-18 03:41:00,461 Ridge St, San Francisco,CA,94016 +227988,AAA Batteries (4-pack),1,2.99,2019-07-08 18:37:00,444 River St, New York City,NY,10001 +227989,USB-C Charging Cable,1,11.95,2019-07-25 15:36:00,777 8th St, New York City,NY,10001 +227990,Wired Headphones,1,11.99,2019-07-26 11:21:00,538 Forest St, Atlanta,GA,30301 +227991,AA Batteries (4-pack),1,3.84,2019-07-18 14:10:00,420 Spruce St, Boston,MA,02215 +227992,AA Batteries (4-pack),1,3.84,2019-07-06 14:41:00,464 Main St, Dallas,TX,75001 +227993,Macbook Pro Laptop,1,1700.0,2019-07-23 10:28:00,982 14th St, Dallas,TX,75001 +227994,Apple Airpods Headphones,1,150.0,2019-07-22 07:39:00,416 12th St, Atlanta,GA,30301 +227995,LG Washing Machine,1,600.0,2019-07-12 06:31:00,482 Meadow St, Seattle,WA,98101 +227996,USB-C Charging Cable,1,11.95,2019-07-15 18:32:00,703 Willow St, Los Angeles,CA,90001 +227997,Lightning Charging Cable,1,14.95,2019-07-11 22:41:00,151 Ridge St, New York City,NY,10001 +227998,AA Batteries (4-pack),1,3.84,2019-07-27 15:17:00,602 4th St, Austin,TX,73301 +227999,Lightning Charging Cable,1,14.95,2019-07-07 13:23:00,189 Forest St, Dallas,TX,75001 +228000,ThinkPad Laptop,1,999.99,2019-07-04 19:12:00,889 Ridge St, New York City,NY,10001 +228001,20in Monitor,1,109.99,2019-07-09 22:06:00,841 1st St, Los Angeles,CA,90001 +228002,AAA Batteries (4-pack),5,2.99,2019-07-10 11:15:00,749 Lakeview St, San Francisco,CA,94016 +228003,Vareebadd Phone,1,400.0,2019-07-16 13:48:00,508 Maple St, New York City,NY,10001 +228004,Lightning Charging Cable,1,14.95,2019-07-04 13:11:00,956 Sunset St, Dallas,TX,75001 +228005,Bose SoundSport Headphones,1,99.99,2019-07-10 16:33:00,793 Pine St, Los Angeles,CA,90001 +228006,iPhone,1,700.0,2019-07-31 19:25:00,897 6th St, Atlanta,GA,30301 +228007,20in Monitor,1,109.99,2019-07-11 20:59:00,192 Maple St, New York City,NY,10001 +228008,USB-C Charging Cable,1,11.95,2019-07-06 12:19:00,836 Johnson St, Austin,TX,73301 +228009,Google Phone,1,600.0,2019-07-20 07:20:00,16 Chestnut St, San Francisco,CA,94016 +228009,USB-C Charging Cable,1,11.95,2019-07-20 07:20:00,16 Chestnut St, San Francisco,CA,94016 +228010,Macbook Pro Laptop,1,1700.0,2019-07-24 07:12:00,939 Dogwood St, San Francisco,CA,94016 +228011,AA Batteries (4-pack),1,3.84,2019-07-12 16:47:00,679 Hickory St, Dallas,TX,75001 +228011,Lightning Charging Cable,1,14.95,2019-07-12 16:47:00,679 Hickory St, Dallas,TX,75001 +228012,USB-C Charging Cable,1,11.95,2019-07-04 00:08:00,558 Spruce St, Atlanta,GA,30301 +228013,USB-C Charging Cable,2,11.95,2019-07-04 19:11:00,176 1st St, New York City,NY,10001 +228014,AA Batteries (4-pack),1,3.84,2019-07-16 19:04:00,12 Pine St, San Francisco,CA,94016 +228015,AA Batteries (4-pack),1,3.84,2019-07-06 16:53:00,162 Ridge St, Boston,MA,02215 +228016,Apple Airpods Headphones,1,150.0,2019-07-21 12:03:00,328 River St, Los Angeles,CA,90001 +228017,AA Batteries (4-pack),1,3.84,2019-07-21 14:35:00,105 Highland St, San Francisco,CA,94016 +228018,27in 4K Gaming Monitor,1,389.99,2019-07-10 14:06:00,387 Cedar St, Los Angeles,CA,90001 +228019,27in 4K Gaming Monitor,1,389.99,2019-07-01 17:43:00,997 Lakeview St, Los Angeles,CA,90001 +228020,Flatscreen TV,1,300.0,2019-07-05 14:32:00,886 Sunset St, Atlanta,GA,30301 +228021,Bose SoundSport Headphones,1,99.99,2019-07-22 18:40:00,243 Maple St, Portland,OR,97035 +228022,AA Batteries (4-pack),1,3.84,2019-07-06 22:14:00,379 Adams St, San Francisco,CA,94016 +228023,Bose SoundSport Headphones,1,99.99,2019-07-28 09:34:00,423 South St, Austin,TX,73301 +228024,Apple Airpods Headphones,1,150.0,2019-07-27 04:52:00,994 Center St, Boston,MA,02215 +228025,Apple Airpods Headphones,1,150.0,2019-07-04 11:30:00,261 River St, Seattle,WA,98101 +228026,Apple Airpods Headphones,1,150.0,2019-07-18 23:18:00,797 Wilson St, Seattle,WA,98101 +228027,Flatscreen TV,1,300.0,2019-07-12 18:28:00,170 7th St, Boston,MA,02215 +228028,27in FHD Monitor,1,149.99,2019-07-01 09:30:00,66 10th St, San Francisco,CA,94016 +228029,iPhone,1,700.0,2019-07-09 20:18:00,643 Maple St, Boston,MA,02215 +228029,Apple Airpods Headphones,1,150.0,2019-07-09 20:18:00,643 Maple St, Boston,MA,02215 +228030,USB-C Charging Cable,1,11.95,2019-07-01 18:09:00,182 Cherry St, New York City,NY,10001 +228031,AA Batteries (4-pack),2,3.84,2019-07-24 19:35:00,703 5th St, San Francisco,CA,94016 +228032,Wired Headphones,1,11.99,2019-07-18 08:30:00,273 Elm St, Los Angeles,CA,90001 +228033,Google Phone,1,600.0,2019-07-16 12:18:00,789 Lake St, Boston,MA,02215 +228034,AAA Batteries (4-pack),1,2.99,2019-07-13 12:40:00,875 Adams St, San Francisco,CA,94016 +228035,ThinkPad Laptop,1,999.99,2019-07-16 11:47:00,752 Dogwood St, New York City,NY,10001 +228036,AA Batteries (4-pack),1,3.84,2019-07-22 19:38:00,645 Hickory St, Los Angeles,CA,90001 +228037,Wired Headphones,1,11.99,2019-07-27 14:49:00,468 Elm St, Los Angeles,CA,90001 +228038,Google Phone,1,600.0,2019-07-06 05:29:00,552 2nd St, New York City,NY,10001 +228039,Apple Airpods Headphones,1,150.0,2019-07-03 18:50:00,920 Walnut St, Boston,MA,02215 +228040,20in Monitor,1,109.99,2019-07-19 13:01:00,339 Cedar St, Dallas,TX,75001 +228041,Lightning Charging Cable,1,14.95,2019-07-02 12:27:00,647 Pine St, San Francisco,CA,94016 +228042,iPhone,1,700.0,2019-07-13 00:05:00,343 Pine St, Atlanta,GA,30301 +228043,20in Monitor,1,109.99,2019-07-29 00:21:00,564 Willow St, San Francisco,CA,94016 +228044,Wired Headphones,1,11.99,2019-07-30 18:10:00,186 11th St, Portland,OR,97035 +228045,20in Monitor,1,109.99,2019-07-13 13:09:00,717 7th St, Portland,OR,97035 +228046,AA Batteries (4-pack),1,3.84,2019-07-24 19:31:00,617 Church St, San Francisco,CA,94016 +228047,Lightning Charging Cable,1,14.95,2019-07-14 11:13:00,133 Park St, Boston,MA,02215 +228048,iPhone,1,700.0,2019-07-22 22:11:00,389 North St, Dallas,TX,75001 +228049,20in Monitor,1,109.99,2019-07-27 07:34:00,493 10th St, Seattle,WA,98101 +228050,AAA Batteries (4-pack),1,2.99,2019-07-07 20:43:00,475 Adams St, Seattle,WA,98101 +228051,27in FHD Monitor,1,149.99,2019-07-24 18:07:00,882 11th St, Atlanta,GA,30301 +228052,Vareebadd Phone,1,400.0,2019-07-24 11:32:00,525 Maple St, Boston,MA,02215 +228053,AAA Batteries (4-pack),1,2.99,2019-07-28 13:18:00,536 8th St, Portland,OR,97035 +228054,iPhone,1,700.0,2019-07-17 14:24:00,957 Willow St, New York City,NY,10001 +228055,AAA Batteries (4-pack),3,2.99,2019-07-23 14:27:00,17 Dogwood St, San Francisco,CA,94016 +228056,AA Batteries (4-pack),1,3.84,2019-07-19 10:32:00,50 Center St, Los Angeles,CA,90001 +228057,Bose SoundSport Headphones,1,99.99,2019-07-03 21:53:00,97 2nd St, San Francisco,CA,94016 +228058,Bose SoundSport Headphones,1,99.99,2019-07-29 14:28:00,919 South St, Austin,TX,73301 +228059,27in FHD Monitor,1,149.99,2019-07-11 17:04:00,363 Lakeview St, Portland,OR,97035 +228060,USB-C Charging Cable,1,11.95,2019-07-11 20:52:00,817 Wilson St, New York City,NY,10001 +228061,Lightning Charging Cable,1,14.95,2019-07-13 22:16:00,348 13th St, Seattle,WA,98101 +228062,USB-C Charging Cable,1,11.95,2019-07-22 20:14:00,679 Highland St, Boston,MA,02215 +228063,Wired Headphones,1,11.99,2019-07-15 11:03:00,299 9th St, Austin,TX,73301 +228064,Macbook Pro Laptop,1,1700.0,2019-07-15 15:52:00,317 Madison St, Seattle,WA,98101 +228065,27in FHD Monitor,1,149.99,2019-07-09 05:39:00,12 West St, New York City,NY,10001 +228066,Lightning Charging Cable,2,14.95,2019-07-24 13:45:00,202 Lakeview St, Dallas,TX,75001 +228067,Lightning Charging Cable,1,14.95,2019-07-21 15:17:00,417 North St, San Francisco,CA,94016 +228068,Wired Headphones,1,11.99,2019-07-18 11:08:00,598 River St, Atlanta,GA,30301 +228069,27in FHD Monitor,1,149.99,2019-07-01 17:50:00,31 Dogwood St, Los Angeles,CA,90001 +228070,Apple Airpods Headphones,1,150.0,2019-07-07 15:16:00,625 Dogwood St, Seattle,WA,98101 +228071,Lightning Charging Cable,1,14.95,2019-07-13 21:01:00,915 Willow St, Portland,OR,97035 +228072,Flatscreen TV,1,300.0,2019-07-24 11:31:00,944 Lakeview St, Atlanta,GA,30301 +228073,USB-C Charging Cable,1,11.95,2019-07-01 23:18:00,264 South St, Dallas,TX,75001 +228074,Apple Airpods Headphones,1,150.0,2019-07-13 15:43:00,527 Church St, Los Angeles,CA,90001 +228075,Macbook Pro Laptop,1,1700.0,2019-07-03 20:30:00,196 South St, San Francisco,CA,94016 +228076,Lightning Charging Cable,1,14.95,2019-07-21 21:05:00,640 7th St, Los Angeles,CA,90001 +228077,27in FHD Monitor,1,149.99,2019-07-31 13:29:00,324 Maple St, San Francisco,CA,94016 +228078,Lightning Charging Cable,1,14.95,2019-07-22 12:57:00,3 Pine St, Atlanta,GA,30301 +228079,Apple Airpods Headphones,1,150.0,2019-07-28 22:32:00,545 Lake St, Los Angeles,CA,90001 +228080,iPhone,1,700.0,2019-07-31 13:10:00,431 9th St, Los Angeles,CA,90001 +228081,AAA Batteries (4-pack),1,2.99,2019-07-08 11:08:00,197 Cherry St, Los Angeles,CA,90001 +228082,Bose SoundSport Headphones,1,99.99,2019-07-22 22:35:00,839 South St, Portland,OR,97035 +228083,Apple Airpods Headphones,1,150.0,2019-07-26 22:27:00,803 West St, Boston,MA,02215 +228084,27in FHD Monitor,1,149.99,2019-07-03 11:01:00,625 Park St, Los Angeles,CA,90001 +228085,27in 4K Gaming Monitor,1,389.99,2019-07-22 16:18:00,504 Madison St, San Francisco,CA,94016 +228086,AAA Batteries (4-pack),1,2.99,2019-07-30 15:37:00,827 Elm St, Los Angeles,CA,90001 +228087,27in FHD Monitor,1,149.99,2019-07-04 17:26:00,258 South St, San Francisco,CA,94016 +228088,AA Batteries (4-pack),1,3.84,2019-07-20 20:44:00,563 Center St, Portland,OR,97035 +228089,Wired Headphones,1,11.99,2019-07-17 19:18:00,251 Sunset St, Austin,TX,73301 +228090,20in Monitor,1,109.99,2019-07-19 18:12:00,185 9th St, Seattle,WA,98101 +228091,Lightning Charging Cable,1,14.95,2019-07-26 21:41:00,260 Dogwood St, Atlanta,GA,30301 +228092,Macbook Pro Laptop,1,1700.0,2019-07-01 07:12:00,835 Cedar St, San Francisco,CA,94016 +228093,iPhone,1,700.0,2019-07-21 15:07:00,359 Hickory St, San Francisco,CA,94016 +228094,27in 4K Gaming Monitor,1,389.99,2019-07-08 11:22:00,586 Lakeview St, Portland,OR,97035 +228095,LG Dryer,1,600.0,2019-07-21 17:50:00,81 Walnut St, Dallas,TX,75001 +228096,AA Batteries (4-pack),1,3.84,2019-07-23 14:06:00,166 Jefferson St, San Francisco,CA,94016 +228097,AAA Batteries (4-pack),1,2.99,2019-07-25 11:29:00,7 Walnut St, Boston,MA,02215 +228098,AA Batteries (4-pack),1,3.84,2019-07-21 21:17:00,596 Willow St, Boston,MA,02215 +228099,Bose SoundSport Headphones,1,99.99,2019-07-17 10:49:00,582 14th St, Boston,MA,02215 +228100,Macbook Pro Laptop,1,1700.0,2019-07-23 21:37:00,735 Sunset St, San Francisco,CA,94016 +228101,Google Phone,1,600.0,2019-07-23 09:11:00,58 Sunset St, Boston,MA,02215 +228102,USB-C Charging Cable,1,11.95,2019-07-17 13:26:00,309 13th St, Los Angeles,CA,90001 +228103,Lightning Charging Cable,1,14.95,2019-07-22 19:51:00,789 Cherry St, Los Angeles,CA,90001 +228104,AAA Batteries (4-pack),1,2.99,2019-07-14 15:29:00,802 4th St, Austin,TX,73301 +228105,USB-C Charging Cable,1,11.95,2019-07-09 17:02:00,62 Cedar St, Los Angeles,CA,90001 +228106,20in Monitor,1,109.99,2019-07-05 18:16:00,428 Willow St, San Francisco,CA,94016 +228107,Lightning Charging Cable,1,14.95,2019-07-16 12:10:00,468 Madison St, Los Angeles,CA,90001 +228108,Lightning Charging Cable,1,14.95,2019-07-27 10:33:00,317 Spruce St, Boston,MA,02215 +228109,27in 4K Gaming Monitor,1,389.99,2019-07-08 01:26:00,567 Lincoln St, San Francisco,CA,94016 +228110,Apple Airpods Headphones,1,150.0,2019-07-14 03:53:00,229 Chestnut St, Dallas,TX,75001 +228111,Lightning Charging Cable,1,14.95,2019-07-09 12:47:00,268 Forest St, Seattle,WA,98101 +228112,34in Ultrawide Monitor,1,379.99,2019-07-13 18:04:00,372 Adams St, Dallas,TX,75001 +228113,Apple Airpods Headphones,1,150.0,2019-07-09 19:03:00,605 Elm St, Atlanta,GA,30301 +228114,USB-C Charging Cable,1,11.95,2019-07-07 14:20:00,736 Hickory St, San Francisco,CA,94016 +228115,Flatscreen TV,1,300.0,2019-07-15 11:32:00,692 Lakeview St, Los Angeles,CA,90001 +228116,Macbook Pro Laptop,1,1700.0,2019-07-01 07:36:00,637 Washington St, Portland,OR,97035 +228117,Wired Headphones,2,11.99,2019-07-03 21:42:00,936 Hickory St, San Francisco,CA,94016 +228118,iPhone,1,700.0,2019-07-11 18:49:00,742 West St, Portland,OR,97035 +228119,Wired Headphones,1,11.99,2019-07-12 12:03:00,94 9th St, Los Angeles,CA,90001 +228120,LG Dryer,1,600.0,2019-07-24 12:21:00,464 12th St, Los Angeles,CA,90001 +228121,Bose SoundSport Headphones,1,99.99,2019-07-09 19:33:00,469 Lincoln St, New York City,NY,10001 +228122,AAA Batteries (4-pack),1,2.99,2019-07-15 13:29:00,525 9th St, Los Angeles,CA,90001 +228123,Macbook Pro Laptop,1,1700.0,2019-07-13 18:08:00,659 Meadow St, Austin,TX,73301 +228124,Apple Airpods Headphones,1,150.0,2019-07-16 12:13:00,921 Park St, San Francisco,CA,94016 +228125,iPhone,1,700.0,2019-07-28 14:27:00,684 Cedar St, San Francisco,CA,94016 +228126,AAA Batteries (4-pack),1,2.99,2019-07-02 17:21:00,910 Forest St, New York City,NY,10001 +228127,Lightning Charging Cable,1,14.95,2019-07-26 18:27:00,564 Walnut St, Dallas,TX,75001 +228128,AA Batteries (4-pack),1,3.84,2019-07-20 08:24:00,6 Pine St, San Francisco,CA,94016 +228129,USB-C Charging Cable,1,11.95,2019-07-30 01:03:00,942 Madison St, Atlanta,GA,30301 +228130,AA Batteries (4-pack),1,3.84,2019-07-06 11:39:00,837 Jackson St, Boston,MA,02215 +228131,Lightning Charging Cable,1,14.95,2019-07-16 21:32:00,261 West St, Seattle,WA,98101 +228132,USB-C Charging Cable,1,11.95,2019-07-24 00:28:00,285 North St, Los Angeles,CA,90001 +228133,Apple Airpods Headphones,1,150.0,2019-07-02 00:24:00,74 Highland St, San Francisco,CA,94016 +228134,AA Batteries (4-pack),1,3.84,2019-07-28 22:56:00,741 Lakeview St, Austin,TX,73301 +228135,Wired Headphones,1,11.99,2019-07-26 16:28:00,251 14th St, Los Angeles,CA,90001 +228136,USB-C Charging Cable,1,11.95,2019-07-28 11:48:00,622 Lake St, Dallas,TX,75001 +228137,34in Ultrawide Monitor,1,379.99,2019-07-31 20:20:00,876 West St, Dallas,TX,75001 +228138,AA Batteries (4-pack),2,3.84,2019-07-11 15:44:00,57 Elm St, Seattle,WA,98101 +228139,AAA Batteries (4-pack),3,2.99,2019-07-23 08:18:00,983 Meadow St, New York City,NY,10001 +228140,AAA Batteries (4-pack),2,2.99,2019-07-28 18:13:00,625 Lincoln St, Seattle,WA,98101 +228141,Apple Airpods Headphones,1,150.0,2019-07-29 13:30:00,712 Chestnut St, San Francisco,CA,94016 +228142,AAA Batteries (4-pack),2,2.99,2019-07-29 12:21:00,850 Center St, Los Angeles,CA,90001 +228143,Apple Airpods Headphones,1,150.0,2019-07-02 17:29:00,541 12th St, Seattle,WA,98101 +228144,Lightning Charging Cable,1,14.95,2019-07-15 19:52:00,300 10th St, Dallas,TX,75001 +228145,ThinkPad Laptop,1,999.99,2019-07-05 12:46:00,231 12th St, New York City,NY,10001 +228146,Wired Headphones,1,11.99,2019-07-06 11:30:00,829 14th St, Los Angeles,CA,90001 +228147,Bose SoundSport Headphones,1,99.99,2019-07-30 11:37:00,520 Pine St, Los Angeles,CA,90001 +228148,20in Monitor,1,109.99,2019-07-11 12:02:00,254 9th St, San Francisco,CA,94016 +228149,AAA Batteries (4-pack),1,2.99,2019-07-29 01:41:00,482 Walnut St, Austin,TX,73301 +228150,Google Phone,1,600.0,2019-07-24 11:23:00,579 Forest St, New York City,NY,10001 +228151,AAA Batteries (4-pack),1,2.99,2019-07-16 17:56:00,233 Wilson St, Seattle,WA,98101 +228152,Lightning Charging Cable,1,14.95,2019-07-06 14:31:00,773 Sunset St, Dallas,TX,75001 +228153,Wired Headphones,1,11.99,2019-07-29 09:16:00,843 Pine St, Los Angeles,CA,90001 +228154,Wired Headphones,1,11.99,2019-07-29 07:39:00,198 7th St, Boston,MA,02215 +228155,Wired Headphones,1,11.99,2019-07-21 20:41:00,878 Lakeview St, Dallas,TX,75001 +228156,AAA Batteries (4-pack),2,2.99,2019-07-22 08:33:00,6 Madison St, Los Angeles,CA,90001 +228157,Lightning Charging Cable,1,14.95,2019-07-31 10:05:00,867 Main St, San Francisco,CA,94016 +228158,Vareebadd Phone,1,400.0,2019-07-18 16:25:00,177 Cherry St, Los Angeles,CA,90001 +228159,Vareebadd Phone,1,400.0,2019-07-07 21:15:00,466 Wilson St, Seattle,WA,98101 +228160,27in 4K Gaming Monitor,1,389.99,2019-07-26 13:49:00,658 11th St, Los Angeles,CA,90001 +228161,iPhone,1,700.0,2019-07-06 13:58:00,206 14th St, Seattle,WA,98101 +228161,Lightning Charging Cable,1,14.95,2019-07-06 13:58:00,206 14th St, Seattle,WA,98101 +228162,34in Ultrawide Monitor,1,379.99,2019-07-18 22:05:00,257 11th St, Portland,OR,97035 +228163,AAA Batteries (4-pack),1,2.99,2019-07-31 09:34:00,728 Lincoln St, San Francisco,CA,94016 +228164,Lightning Charging Cable,1,14.95,2019-07-20 21:30:00,788 8th St, Portland,OR,97035 +228165,Wired Headphones,1,11.99,2019-07-24 19:22:00,710 7th St, Los Angeles,CA,90001 +228166,Apple Airpods Headphones,1,150.0,2019-07-29 09:20:00,635 Hill St, Seattle,WA,98101 +228167,AAA Batteries (4-pack),1,2.99,2019-07-23 14:48:00,962 Willow St, Dallas,TX,75001 +228168,Lightning Charging Cable,1,14.95,2019-07-02 18:40:00,795 Cherry St, Portland,OR,97035 +228169,AA Batteries (4-pack),3,3.84,2019-07-21 21:08:00,969 Madison St, Los Angeles,CA,90001 +228170,Macbook Pro Laptop,1,1700.0,2019-07-02 23:20:00,823 Lincoln St, San Francisco,CA,94016 +228171,AA Batteries (4-pack),2,3.84,2019-07-10 16:28:00,145 Maple St, Boston,MA,02215 +228172,Apple Airpods Headphones,1,150.0,2019-07-06 21:40:00,571 Hill St, Portland,ME,04101 +228172,Lightning Charging Cable,1,14.95,2019-07-06 21:40:00,571 Hill St, Portland,ME,04101 +228173,AAA Batteries (4-pack),2,2.99,2019-07-02 17:42:00,680 8th St, Dallas,TX,75001 +228174,Apple Airpods Headphones,1,150.0,2019-07-02 16:06:00,974 Washington St, Boston,MA,02215 +228175,Bose SoundSport Headphones,1,99.99,2019-07-25 23:04:00,877 Jackson St, Dallas,TX,75001 +228176,Lightning Charging Cable,1,14.95,2019-07-25 11:00:00,839 8th St, Los Angeles,CA,90001 +228177,20in Monitor,1,109.99,2019-07-13 10:01:00,33 6th St, Los Angeles,CA,90001 +228178,34in Ultrawide Monitor,1,379.99,2019-07-05 16:53:00,852 Center St, Los Angeles,CA,90001 +228179,Wired Headphones,1,11.99,2019-07-31 18:28:00,277 Pine St, New York City,NY,10001 +228180,Google Phone,1,600.0,2019-07-03 18:33:00,895 Sunset St, Austin,TX,73301 +228181,AAA Batteries (4-pack),1,2.99,2019-07-19 22:00:00,799 8th St, Dallas,TX,75001 +228182,34in Ultrawide Monitor,1,379.99,2019-07-16 16:27:00,701 6th St, Dallas,TX,75001 +228183,Apple Airpods Headphones,1,150.0,2019-07-03 11:33:00,109 Lakeview St, Atlanta,GA,30301 +228184,USB-C Charging Cable,1,11.95,2019-07-22 16:29:00,6 Park St, San Francisco,CA,94016 +228185,AA Batteries (4-pack),1,3.84,2019-07-29 17:05:00,848 12th St, Los Angeles,CA,90001 +228186,AAA Batteries (4-pack),1,2.99,2019-07-29 12:28:00,205 9th St, Los Angeles,CA,90001 +228187,AA Batteries (4-pack),1,3.84,2019-07-17 09:00:00,306 Walnut St, Seattle,WA,98101 +228188,20in Monitor,1,109.99,2019-07-05 15:59:00,184 8th St, Los Angeles,CA,90001 +228189,Wired Headphones,2,11.99,2019-07-01 10:40:00,747 Johnson St, Los Angeles,CA,90001 +228190,Wired Headphones,1,11.99,2019-07-19 19:39:00,617 14th St, Boston,MA,02215 +228191,ThinkPad Laptop,1,999.99,2019-07-24 15:57:00,347 Park St, Seattle,WA,98101 +228192,Wired Headphones,1,11.99,2019-07-23 20:01:00,717 North St, San Francisco,CA,94016 +228193,AAA Batteries (4-pack),2,2.99,2019-07-07 06:18:00,103 Hill St, Boston,MA,02215 +228194,Apple Airpods Headphones,1,150.0,2019-07-02 13:30:00,206 Ridge St, Atlanta,GA,30301 +228195,USB-C Charging Cable,1,11.95,2019-07-03 13:50:00,721 Hickory St, Boston,MA,02215 +228196,Apple Airpods Headphones,1,150.0,2019-07-28 10:48:00,935 Forest St, San Francisco,CA,94016 +228197,Bose SoundSport Headphones,1,99.99,2019-07-20 08:50:00,686 Lake St, Portland,OR,97035 +228198,AAA Batteries (4-pack),2,2.99,2019-07-20 13:52:00,950 Wilson St, San Francisco,CA,94016 +228199,USB-C Charging Cable,1,11.95,2019-07-19 07:46:00,227 4th St, New York City,NY,10001 +228200,AAA Batteries (4-pack),1,2.99,2019-07-26 20:17:00,71 Jackson St, San Francisco,CA,94016 +228201,AA Batteries (4-pack),2,3.84,2019-07-06 13:21:00,65 Washington St, San Francisco,CA,94016 +228202,Bose SoundSport Headphones,1,99.99,2019-07-08 16:56:00,121 Elm St, San Francisco,CA,94016 +228203,Flatscreen TV,1,300.0,2019-07-03 14:53:00,435 1st St, Seattle,WA,98101 +228204,USB-C Charging Cable,1,11.95,2019-07-23 17:37:00,707 Jefferson St, San Francisco,CA,94016 +228205,34in Ultrawide Monitor,1,379.99,2019-07-10 21:26:00,840 7th St, San Francisco,CA,94016 +228206,USB-C Charging Cable,1,11.95,2019-07-07 00:28:00,381 6th St, New York City,NY,10001 +228207,USB-C Charging Cable,2,11.95,2019-07-30 15:25:00,694 Hill St, New York City,NY,10001 +228208,27in FHD Monitor,1,149.99,2019-07-25 20:01:00,130 Adams St, Atlanta,GA,30301 +228209,27in FHD Monitor,1,149.99,2019-07-31 14:23:00,74 Cedar St, San Francisco,CA,94016 +228210,AA Batteries (4-pack),1,3.84,2019-07-21 10:30:00,235 Jackson St, Atlanta,GA,30301 +228211,Wired Headphones,1,11.99,2019-07-03 22:17:00,738 Park St, San Francisco,CA,94016 +228212,AAA Batteries (4-pack),1,2.99,2019-07-29 12:11:00,853 Church St, New York City,NY,10001 +228213,Lightning Charging Cable,1,14.95,2019-07-05 19:46:00,773 Adams St, Austin,TX,73301 +228214,Apple Airpods Headphones,1,150.0,2019-07-01 23:59:00,273 12th St, Los Angeles,CA,90001 +228215,AA Batteries (4-pack),1,3.84,2019-07-08 00:35:00,549 10th St, Los Angeles,CA,90001 +228216,27in 4K Gaming Monitor,1,389.99,2019-07-22 15:04:00,17 Highland St, Los Angeles,CA,90001 +228217,USB-C Charging Cable,1,11.95,2019-07-13 20:42:00,305 9th St, San Francisco,CA,94016 +228218,USB-C Charging Cable,1,11.95,2019-07-31 16:18:00,990 Cherry St, San Francisco,CA,94016 +228219,AAA Batteries (4-pack),1,2.99,2019-07-19 19:57:00,166 Main St, San Francisco,CA,94016 +228220,27in FHD Monitor,1,149.99,2019-07-29 15:04:00,512 River St, Austin,TX,73301 +228221,Wired Headphones,1,11.99,2019-07-26 20:08:00,497 Sunset St, New York City,NY,10001 +228222,Google Phone,1,600.0,2019-07-05 17:49:00,197 North St, San Francisco,CA,94016 +228223,iPhone,1,700.0,2019-07-14 08:56:00,16 Cherry St, Portland,OR,97035 +228224,Apple Airpods Headphones,1,150.0,2019-07-17 11:27:00,636 Jefferson St, Atlanta,GA,30301 +228225,Google Phone,1,600.0,2019-07-16 23:11:00,276 2nd St, Dallas,TX,75001 +228226,Lightning Charging Cable,1,14.95,2019-07-04 14:09:00,547 North St, Dallas,TX,75001 +228227,AA Batteries (4-pack),3,3.84,2019-07-24 13:46:00,941 Pine St, Portland,OR,97035 +228228,AA Batteries (4-pack),1,3.84,2019-07-16 18:58:00,280 Elm St, Dallas,TX,75001 +228229,AAA Batteries (4-pack),2,2.99,2019-07-24 13:54:00,457 Chestnut St, New York City,NY,10001 +228230,34in Ultrawide Monitor,1,379.99,2019-07-06 08:03:00,803 Pine St, Seattle,WA,98101 +228231,USB-C Charging Cable,1,11.95,2019-07-25 11:18:00,455 West St, Dallas,TX,75001 +228232,34in Ultrawide Monitor,1,379.99,2019-07-22 15:04:00,92 Madison St, Portland,OR,97035 +228233,USB-C Charging Cable,1,11.95,2019-07-10 23:07:00,822 11th St, San Francisco,CA,94016 +228234,20in Monitor,1,109.99,2019-07-02 23:18:00,285 Willow St, Los Angeles,CA,90001 +228235,USB-C Charging Cable,1,11.95,2019-07-16 11:26:00,582 9th St, Los Angeles,CA,90001 +228236,27in FHD Monitor,1,149.99,2019-07-25 13:32:00,153 2nd St, Boston,MA,02215 +228237,27in FHD Monitor,1,149.99,2019-07-24 19:04:00,531 Park St, San Francisco,CA,94016 +228238,34in Ultrawide Monitor,1,379.99,2019-07-10 22:59:00,729 10th St, Atlanta,GA,30301 +228239,USB-C Charging Cable,1,11.95,2019-07-09 14:14:00,631 6th St, New York City,NY,10001 +228240,Wired Headphones,1,11.99,2019-07-12 13:13:00,876 North St, Atlanta,GA,30301 +228241,AAA Batteries (4-pack),3,2.99,2019-07-31 07:07:00,60 2nd St, San Francisco,CA,94016 +228242,AA Batteries (4-pack),1,3.84,2019-07-19 08:02:00,482 Center St, San Francisco,CA,94016 +228243,Google Phone,1,600.0,2019-07-17 16:07:00,301 Walnut St, New York City,NY,10001 +228244,Bose SoundSport Headphones,1,99.99,2019-07-01 15:38:00,212 Pine St, San Francisco,CA,94016 +228245,USB-C Charging Cable,1,11.95,2019-07-28 16:33:00,619 14th St, Los Angeles,CA,90001 +228246,Vareebadd Phone,1,400.0,2019-07-07 11:30:00,14 North St, New York City,NY,10001 +228247,27in 4K Gaming Monitor,1,389.99,2019-07-28 17:22:00,37 8th St, San Francisco,CA,94016 +228248,AAA Batteries (4-pack),1,2.99,2019-07-30 21:50:00,802 10th St, Los Angeles,CA,90001 +228249,AAA Batteries (4-pack),2,2.99,2019-07-20 17:57:00,17 9th St, New York City,NY,10001 +228250,USB-C Charging Cable,1,11.95,2019-07-22 15:55:00,397 West St, Dallas,TX,75001 +228251,AAA Batteries (4-pack),1,2.99,2019-07-08 08:49:00,779 Forest St, Dallas,TX,75001 +228252,Wired Headphones,1,11.99,2019-07-07 19:20:00,585 Hickory St, Boston,MA,02215 +228253,27in FHD Monitor,1,149.99,2019-07-09 18:06:00,608 14th St, Dallas,TX,75001 +228254,Apple Airpods Headphones,1,150.0,2019-07-31 21:46:00,80 Maple St, Los Angeles,CA,90001 +228255,Wired Headphones,1,11.99,2019-07-16 14:30:00,488 Dogwood St, Portland,OR,97035 +228256,Wired Headphones,1,11.99,2019-07-10 19:42:00,125 Walnut St, Boston,MA,02215 +228257,Wired Headphones,1,11.99,2019-07-23 15:08:00,586 Adams St, Dallas,TX,75001 +228258,USB-C Charging Cable,1,11.95,2019-07-06 20:16:00,313 8th St, Seattle,WA,98101 +228259,Bose SoundSport Headphones,1,99.99,2019-07-19 10:41:00,907 Main St, Boston,MA,02215 +228260,USB-C Charging Cable,1,11.95,2019-07-28 09:23:00,778 Church St, Los Angeles,CA,90001 +228261,Lightning Charging Cable,1,14.95,2019-07-10 15:20:00,781 Johnson St, Atlanta,GA,30301 +228262,Lightning Charging Cable,1,14.95,2019-07-04 19:09:00,669 Center St, San Francisco,CA,94016 +228263,AAA Batteries (4-pack),1,2.99,2019-07-07 15:32:00,27 Ridge St, Los Angeles,CA,90001 +228264,ThinkPad Laptop,1,999.99,2019-07-20 14:02:00,621 Church St, Los Angeles,CA,90001 +228265,ThinkPad Laptop,1,999.99,2019-07-26 08:06:00,439 Jackson St, San Francisco,CA,94016 +228266,20in Monitor,1,109.99,2019-07-26 20:44:00,209 West St, San Francisco,CA,94016 +228267,iPhone,1,700.0,2019-07-03 19:05:00,767 Wilson St, New York City,NY,10001 +228268,27in FHD Monitor,1,149.99,2019-07-13 18:50:00,224 River St, New York City,NY,10001 +228269,27in 4K Gaming Monitor,1,389.99,2019-07-29 21:35:00,634 Meadow St, Boston,MA,02215 +228270,AA Batteries (4-pack),1,3.84,2019-07-11 10:05:00,667 10th St, San Francisco,CA,94016 +228271,27in FHD Monitor,1,149.99,2019-07-12 07:53:00,303 Spruce St, San Francisco,CA,94016 +228272,ThinkPad Laptop,1,999.99,2019-07-24 07:08:00,749 Cherry St, New York City,NY,10001 +228273,Wired Headphones,1,11.99,2019-07-18 14:24:00,758 Jefferson St, San Francisco,CA,94016 +228274,AA Batteries (4-pack),1,3.84,2019-07-14 19:12:00,670 Jackson St, New York City,NY,10001 +228275,Lightning Charging Cable,1,14.95,2019-07-26 08:17:00,15 2nd St, Boston,MA,02215 +228276,Lightning Charging Cable,1,14.95,2019-07-30 16:52:00,597 Jackson St, Boston,MA,02215 +228277,Lightning Charging Cable,2,14.95,2019-07-05 06:59:00,844 River St, New York City,NY,10001 +228278,Wired Headphones,1,11.99,2019-07-24 20:37:00,506 Lincoln St, San Francisco,CA,94016 +228279,Google Phone,1,600.0,2019-07-18 12:50:00,236 Forest St, New York City,NY,10001 +228280,Apple Airpods Headphones,1,150.0,2019-07-14 14:13:00,974 11th St, New York City,NY,10001 +228281,AAA Batteries (4-pack),1,2.99,2019-07-07 09:33:00,699 Hill St, New York City,NY,10001 +228282,USB-C Charging Cable,1,11.95,2019-07-21 10:57:00,313 9th St, New York City,NY,10001 +228283,Bose SoundSport Headphones,1,99.99,2019-07-24 17:51:00,758 12th St, San Francisco,CA,94016 +228284,Flatscreen TV,1,300.0,2019-07-04 17:49:00,347 Willow St, Seattle,WA,98101 +228285,Wired Headphones,1,11.99,2019-07-08 18:45:00,628 Wilson St, Boston,MA,02215 +228286,USB-C Charging Cable,1,11.95,2019-07-19 14:40:00,401 Hickory St, San Francisco,CA,94016 +228287,27in FHD Monitor,1,149.99,2019-07-19 23:48:00,810 Chestnut St, Los Angeles,CA,90001 +228288,AA Batteries (4-pack),1,3.84,2019-07-06 17:09:00,159 Highland St, Los Angeles,CA,90001 +228289,Bose SoundSport Headphones,1,99.99,2019-07-10 04:09:00,158 Sunset St, Seattle,WA,98101 +228290,Wired Headphones,2,11.99,2019-07-11 11:57:00,163 1st St, Boston,MA,02215 +228291,USB-C Charging Cable,1,11.95,2019-07-11 21:19:00,853 12th St, Seattle,WA,98101 +228292,AA Batteries (4-pack),1,3.84,2019-07-16 22:21:00,802 14th St, San Francisco,CA,94016 +228293,AAA Batteries (4-pack),1,2.99,2019-07-01 16:47:00,189 Dogwood St, New York City,NY,10001 +228294,Lightning Charging Cable,1,14.95,2019-07-16 18:22:00,974 Adams St, Los Angeles,CA,90001 +228295,Lightning Charging Cable,1,14.95,2019-07-22 13:52:00,465 11th St, Los Angeles,CA,90001 +228296,20in Monitor,1,109.99,2019-07-06 09:48:00,896 Adams St, Los Angeles,CA,90001 +228297,Bose SoundSport Headphones,1,99.99,2019-07-13 16:44:00,497 Pine St, Portland,OR,97035 +228298,Wired Headphones,2,11.99,2019-07-13 16:17:00,80 North St, Dallas,TX,75001 +228299,Lightning Charging Cable,1,14.95,2019-07-18 00:57:00,898 Wilson St, Los Angeles,CA,90001 +228300,Google Phone,1,600.0,2019-07-15 16:00:00,989 5th St, New York City,NY,10001 +228300,Wired Headphones,1,11.99,2019-07-15 16:00:00,989 5th St, New York City,NY,10001 +228301,AA Batteries (4-pack),1,3.84,2019-07-27 19:39:00,2 5th St, Atlanta,GA,30301 +228302,27in FHD Monitor,1,149.99,2019-07-24 17:18:00,598 North St, Atlanta,GA,30301 +228303,27in 4K Gaming Monitor,1,389.99,2019-07-27 18:51:00,454 6th St, New York City,NY,10001 +228304,Bose SoundSport Headphones,1,99.99,2019-07-30 22:26:00,224 River St, New York City,NY,10001 +228305,USB-C Charging Cable,1,11.95,2019-07-10 12:38:00,886 Dogwood St, New York City,NY,10001 +228306,Bose SoundSport Headphones,1,99.99,2019-07-16 00:09:00,668 5th St, Atlanta,GA,30301 +228307,Lightning Charging Cable,1,14.95,2019-07-02 22:53:00,598 Spruce St, Austin,TX,73301 +228308,Wired Headphones,1,11.99,2019-07-28 09:25:00,215 Spruce St, San Francisco,CA,94016 +228309,Wired Headphones,1,11.99,2019-07-17 08:21:00,661 5th St, San Francisco,CA,94016 +228310,20in Monitor,1,109.99,2019-07-03 20:55:00,179 Lake St, New York City,NY,10001 +228311,Wired Headphones,1,11.99,2019-07-03 18:34:00,47 Sunset St, Los Angeles,CA,90001 +228312,Apple Airpods Headphones,1,150.0,2019-07-18 21:52:00,472 13th St, Los Angeles,CA,90001 +228313,AAA Batteries (4-pack),1,2.99,2019-07-25 17:07:00,597 1st St, San Francisco,CA,94016 +228314,Bose SoundSport Headphones,1,99.99,2019-07-25 15:50:00,154 Chestnut St, Austin,TX,73301 +228315,USB-C Charging Cable,1,11.95,2019-07-10 16:16:00,603 11th St, Austin,TX,73301 +228316,Wired Headphones,1,11.99,2019-07-12 16:59:00,138 Elm St, Dallas,TX,75001 +228317,Bose SoundSport Headphones,1,99.99,2019-07-01 18:07:00,611 Church St, New York City,NY,10001 +228318,AAA Batteries (4-pack),1,2.99,2019-07-31 20:20:00,916 Pine St, Portland,OR,97035 +228319,AA Batteries (4-pack),1,3.84,2019-07-19 08:19:00,48 Willow St, Portland,OR,97035 +228320,Lightning Charging Cable,1,14.95,2019-07-29 19:57:00,450 Center St, Atlanta,GA,30301 +228321,Bose SoundSport Headphones,1,99.99,2019-07-22 10:24:00,684 Church St, Atlanta,GA,30301 +228322,AA Batteries (4-pack),1,3.84,2019-07-27 20:11:00,106 Cherry St, Seattle,WA,98101 +228323,27in 4K Gaming Monitor,1,389.99,2019-07-01 19:39:00,860 11th St, San Francisco,CA,94016 +228324,27in FHD Monitor,1,149.99,2019-07-04 12:23:00,249 West St, Los Angeles,CA,90001 +228325,Apple Airpods Headphones,1,150.0,2019-07-02 20:59:00,819 Pine St, New York City,NY,10001 +228326,AA Batteries (4-pack),2,3.84,2019-07-05 08:51:00,367 Center St, Austin,TX,73301 +228327,Google Phone,1,600.0,2019-07-09 20:30:00,466 Johnson St, Dallas,TX,75001 +228328,Macbook Pro Laptop,1,1700.0,2019-07-25 08:03:00,605 11th St, San Francisco,CA,94016 +228329,Wired Headphones,1,11.99,2019-07-23 10:23:00,818 Lake St, Los Angeles,CA,90001 +228330,Wired Headphones,1,11.99,2019-07-04 14:01:00,800 North St, Atlanta,GA,30301 +228331,AAA Batteries (4-pack),2,2.99,2019-07-07 23:43:00,763 West St, New York City,NY,10001 +228332,AAA Batteries (4-pack),2,2.99,2019-07-01 10:17:00,270 14th St, Dallas,TX,75001 +228333,USB-C Charging Cable,2,11.95,2019-07-01 15:48:00,69 Jefferson St, New York City,NY,10001 +228334,LG Washing Machine,1,600.0,2019-07-25 09:48:00,584 Meadow St, Los Angeles,CA,90001 +228335,AA Batteries (4-pack),1,3.84,2019-07-02 14:22:00,78 1st St, Atlanta,GA,30301 +228336,Wired Headphones,1,11.99,2019-07-15 08:42:00,823 Hickory St, Seattle,WA,98101 +228337,Lightning Charging Cable,1,14.95,2019-07-01 16:40:00,226 River St, Los Angeles,CA,90001 +228338,ThinkPad Laptop,1,999.99,2019-07-18 23:34:00,433 Center St, Seattle,WA,98101 +228339,AAA Batteries (4-pack),4,2.99,2019-07-16 11:56:00,570 2nd St, Boston,MA,02215 +228340,USB-C Charging Cable,1,11.95,2019-07-24 10:36:00,61 Johnson St, New York City,NY,10001 +228341,Lightning Charging Cable,1,14.95,2019-07-10 21:16:00,910 13th St, Los Angeles,CA,90001 +228342,iPhone,1,700.0,2019-07-03 16:25:00,714 Maple St, Dallas,TX,75001 +228343,Lightning Charging Cable,1,14.95,2019-07-22 08:43:00,274 Maple St, San Francisco,CA,94016 +228344,AAA Batteries (4-pack),1,2.99,2019-07-17 19:42:00,472 Madison St, New York City,NY,10001 +228345,Lightning Charging Cable,1,14.95,2019-07-16 12:22:00,787 Lakeview St, Dallas,TX,75001 +228346,27in FHD Monitor,1,149.99,2019-07-07 18:36:00,189 2nd St, Austin,TX,73301 +228347,Apple Airpods Headphones,1,150.0,2019-07-23 16:10:00,449 Ridge St, San Francisco,CA,94016 +228348,AA Batteries (4-pack),2,3.84,2019-07-12 13:23:00,992 Hill St, San Francisco,CA,94016 +228349,Lightning Charging Cable,1,14.95,2019-07-23 11:22:00,420 7th St, Austin,TX,73301 +228350,AA Batteries (4-pack),1,3.84,2019-07-05 03:43:00,575 South St, Los Angeles,CA,90001 +228351,AA Batteries (4-pack),1,3.84,2019-07-22 15:38:00,362 Wilson St, San Francisco,CA,94016 +228352,Lightning Charging Cable,1,14.95,2019-07-27 20:33:00,876 Lake St, Dallas,TX,75001 +228353,27in FHD Monitor,1,149.99,2019-07-10 22:52:00,674 Spruce St, New York City,NY,10001 +228354,iPhone,1,700.0,2019-07-24 12:06:00,59 Elm St, Seattle,WA,98101 +228355,iPhone,1,700.0,2019-07-06 17:57:00,939 Cherry St, San Francisco,CA,94016 +228355,Lightning Charging Cable,1,14.95,2019-07-06 17:57:00,939 Cherry St, San Francisco,CA,94016 +228356,Bose SoundSport Headphones,1,99.99,2019-07-24 11:42:00,273 6th St, Seattle,WA,98101 +228357,Wired Headphones,1,11.99,2019-07-17 21:23:00,293 Madison St, New York City,NY,10001 +228358,ThinkPad Laptop,1,999.99,2019-07-30 09:51:00,373 11th St, Dallas,TX,75001 +228359,Lightning Charging Cable,1,14.95,2019-07-19 11:01:00,425 Park St, New York City,NY,10001 +228360,27in 4K Gaming Monitor,1,389.99,2019-07-31 18:32:00,296 5th St, New York City,NY,10001 +228361,USB-C Charging Cable,1,11.95,2019-07-13 21:32:00,479 Chestnut St, Portland,OR,97035 +228362,Lightning Charging Cable,1,14.95,2019-07-31 09:35:00,452 Spruce St, Atlanta,GA,30301 +228363,Lightning Charging Cable,1,14.95,2019-07-22 15:00:00,237 9th St, San Francisco,CA,94016 +228364,USB-C Charging Cable,1,11.95,2019-07-09 20:04:00,693 Park St, San Francisco,CA,94016 +228365,Wired Headphones,1,11.99,2019-07-05 18:29:00,909 Wilson St, San Francisco,CA,94016 +228366,Lightning Charging Cable,1,14.95,2019-07-20 22:01:00,212 11th St, New York City,NY,10001 +228367,AAA Batteries (4-pack),5,2.99,2019-07-16 19:22:00,916 11th St, Seattle,WA,98101 +228368,Lightning Charging Cable,1,14.95,2019-07-11 19:49:00,76 Highland St, New York City,NY,10001 +228368,Apple Airpods Headphones,1,150.0,2019-07-11 19:49:00,76 Highland St, New York City,NY,10001 +228369,Google Phone,1,600.0,2019-07-23 20:52:00,226 Willow St, New York City,NY,10001 +228369,USB-C Charging Cable,1,11.95,2019-07-23 20:52:00,226 Willow St, New York City,NY,10001 +228370,AA Batteries (4-pack),1,3.84,2019-07-28 13:53:00,728 River St, New York City,NY,10001 +228371,AAA Batteries (4-pack),1,2.99,2019-07-13 14:02:00,783 Adams St, Los Angeles,CA,90001 +228372,Flatscreen TV,1,300.0,2019-07-10 23:15:00,702 Wilson St, New York City,NY,10001 +228373,USB-C Charging Cable,1,11.95,2019-07-23 21:30:00,973 Walnut St, Portland,OR,97035 +228374,27in FHD Monitor,1,149.99,2019-07-27 04:34:00,811 1st St, Boston,MA,02215 +228375,iPhone,1,700.0,2019-07-29 19:13:00,525 Maple St, New York City,NY,10001 +228376,AA Batteries (4-pack),1,3.84,2019-07-29 10:46:00,215 Johnson St, San Francisco,CA,94016 +228377,iPhone,1,700.0,2019-07-24 13:27:00,173 8th St, Los Angeles,CA,90001 +228378,27in FHD Monitor,1,149.99,2019-07-21 13:12:00,993 Highland St, New York City,NY,10001 +228379,AA Batteries (4-pack),1,3.84,2019-07-21 10:00:00,304 Cedar St, San Francisco,CA,94016 +228380,Wired Headphones,1,11.99,2019-07-24 19:04:00,110 9th St, Seattle,WA,98101 +228381,Lightning Charging Cable,1,14.95,2019-07-12 06:05:00,768 Johnson St, Portland,OR,97035 +228382,AAA Batteries (4-pack),2,2.99,2019-07-01 14:58:00,422 Adams St, San Francisco,CA,94016 +228383,USB-C Charging Cable,1,11.95,2019-07-19 12:57:00,447 Forest St, New York City,NY,10001 +228384,AAA Batteries (4-pack),7,2.99,2019-07-06 17:34:00,78 Highland St, Austin,TX,73301 +228385,AAA Batteries (4-pack),1,2.99,2019-07-31 13:47:00,808 Main St, Boston,MA,02215 +228386,USB-C Charging Cable,1,11.95,2019-07-11 07:31:00,515 Hickory St, Los Angeles,CA,90001 +228387,USB-C Charging Cable,2,11.95,2019-07-09 13:39:00,711 Jackson St, New York City,NY,10001 +228388,Lightning Charging Cable,1,14.95,2019-07-26 09:19:00,151 Spruce St, San Francisco,CA,94016 +228389,Lightning Charging Cable,1,14.95,2019-07-31 02:38:00,353 8th St, Dallas,TX,75001 +228390,Macbook Pro Laptop,1,1700.0,2019-07-21 08:58:00,827 Spruce St, Los Angeles,CA,90001 +228391,AAA Batteries (4-pack),2,2.99,2019-07-08 11:27:00,814 Adams St, Los Angeles,CA,90001 +228391,USB-C Charging Cable,1,11.95,2019-07-08 11:27:00,814 Adams St, Los Angeles,CA,90001 +228392,Apple Airpods Headphones,1,150.0,2019-07-02 08:23:00,161 Highland St, Los Angeles,CA,90001 +228393,27in FHD Monitor,1,149.99,2019-07-14 10:50:00,757 Forest St, Atlanta,GA,30301 +228394,AAA Batteries (4-pack),1,2.99,2019-07-26 12:10:00,88 North St, San Francisco,CA,94016 +228395,Bose SoundSport Headphones,1,99.99,2019-07-28 14:25:00,355 Chestnut St, Seattle,WA,98101 +228396,AAA Batteries (4-pack),3,2.99,2019-07-25 11:55:00,105 Cherry St, Atlanta,GA,30301 +228397,AA Batteries (4-pack),1,3.84,2019-07-11 08:35:00,503 Lakeview St, Dallas,TX,75001 +228398,Lightning Charging Cable,1,14.95,2019-07-12 17:02:00,579 Maple St, Boston,MA,02215 +228399,Lightning Charging Cable,1,14.95,2019-07-22 21:27:00,122 Hickory St, Portland,OR,97035 +228400,AAA Batteries (4-pack),1,2.99,2019-07-24 20:18:00,453 Hill St, Los Angeles,CA,90001 +228401,27in FHD Monitor,1,149.99,2019-07-03 13:54:00,955 Park St, New York City,NY,10001 +228402,AAA Batteries (4-pack),3,2.99,2019-07-16 01:29:00,425 Highland St, Seattle,WA,98101 +228403,Bose SoundSport Headphones,1,99.99,2019-07-12 12:14:00,895 1st St, Los Angeles,CA,90001 +228404,Bose SoundSport Headphones,1,99.99,2019-07-04 15:15:00,69 Park St, Seattle,WA,98101 +228405,AA Batteries (4-pack),1,3.84,2019-07-17 19:14:00,26 Madison St, New York City,NY,10001 +228406,ThinkPad Laptop,1,999.99,2019-07-01 10:36:00,272 5th St, Boston,MA,02215 +228407,Flatscreen TV,1,300.0,2019-07-28 11:38:00,771 West St, Dallas,TX,75001 +228408,Lightning Charging Cable,1,14.95,2019-07-17 18:45:00,811 Jackson St, Austin,TX,73301 +228409,USB-C Charging Cable,1,11.95,2019-07-19 12:15:00,14 North St, San Francisco,CA,94016 +228410,27in 4K Gaming Monitor,1,389.99,2019-07-14 09:59:00,854 10th St, Los Angeles,CA,90001 +228411,Bose SoundSport Headphones,1,99.99,2019-07-23 17:50:00,15 Hickory St, Los Angeles,CA,90001 +228412,Lightning Charging Cable,2,14.95,2019-07-08 08:01:00,183 Dogwood St, San Francisco,CA,94016 +228413,AA Batteries (4-pack),1,3.84,2019-07-07 12:21:00,628 Elm St, Seattle,WA,98101 +228414,34in Ultrawide Monitor,1,379.99,2019-07-18 16:23:00,32 River St, San Francisco,CA,94016 +228415,Apple Airpods Headphones,1,150.0,2019-07-24 00:01:00,590 Jefferson St, Los Angeles,CA,90001 +228416,Wired Headphones,1,11.99,2019-07-29 19:00:00,831 4th St, Seattle,WA,98101 +228417,Lightning Charging Cable,1,14.95,2019-07-11 22:35:00,918 8th St, Boston,MA,02215 +228418,AAA Batteries (4-pack),1,2.99,2019-07-07 19:11:00,397 2nd St, Austin,TX,73301 +228419,Lightning Charging Cable,1,14.95,2019-07-22 16:53:00,626 Johnson St, Boston,MA,02215 +228420,USB-C Charging Cable,1,11.95,2019-07-16 11:51:00,801 Madison St, San Francisco,CA,94016 +228421,USB-C Charging Cable,1,11.95,2019-07-11 00:34:00,244 Center St, New York City,NY,10001 +228422,Macbook Pro Laptop,1,1700.0,2019-07-01 20:50:00,519 South St, Atlanta,GA,30301 +228423,AAA Batteries (4-pack),1,2.99,2019-07-12 23:58:00,722 11th St, Austin,TX,73301 +228424,AAA Batteries (4-pack),1,2.99,2019-07-10 13:33:00,442 Dogwood St, Boston,MA,02215 +228425,USB-C Charging Cable,1,11.95,2019-07-10 13:53:00,584 Spruce St, Boston,MA,02215 +228426,USB-C Charging Cable,1,11.95,2019-07-17 15:10:00,383 Lake St, San Francisco,CA,94016 +228427,Lightning Charging Cable,1,14.95,2019-07-21 22:21:00,597 Forest St, Austin,TX,73301 +228428,Bose SoundSport Headphones,1,99.99,2019-07-13 10:11:00,491 1st St, Dallas,TX,75001 +228429,Lightning Charging Cable,2,14.95,2019-07-06 14:13:00,909 Johnson St, Los Angeles,CA,90001 +228430,AA Batteries (4-pack),1,3.84,2019-07-10 21:06:00,432 Dogwood St, San Francisco,CA,94016 +228431,Apple Airpods Headphones,1,150.0,2019-07-03 21:53:00,400 Park St, Atlanta,GA,30301 +228432,AAA Batteries (4-pack),1,2.99,2019-07-26 09:37:00,856 9th St, New York City,NY,10001 +228433,Bose SoundSport Headphones,1,99.99,2019-07-08 20:32:00,481 Maple St, San Francisco,CA,94016 +228434,Bose SoundSport Headphones,1,99.99,2019-07-02 20:52:00,463 11th St, Dallas,TX,75001 +228435,27in FHD Monitor,1,149.99,2019-07-14 14:08:00,322 South St, Dallas,TX,75001 +228436,iPhone,1,700.0,2019-07-14 20:49:00,183 Jackson St, Los Angeles,CA,90001 +228437,AA Batteries (4-pack),2,3.84,2019-07-03 22:53:00,328 Hickory St, Atlanta,GA,30301 +228438,Bose SoundSport Headphones,2,99.99,2019-07-15 17:54:00,728 Sunset St, San Francisco,CA,94016 +228439,Wired Headphones,1,11.99,2019-07-20 23:39:00,338 Hickory St, Los Angeles,CA,90001 +228440,USB-C Charging Cable,1,11.95,2019-07-09 20:49:00,525 Meadow St, San Francisco,CA,94016 +228441,AAA Batteries (4-pack),1,2.99,2019-07-22 14:13:00,352 10th St, Portland,OR,97035 +228442,Lightning Charging Cable,1,14.95,2019-07-08 06:17:00,202 Willow St, San Francisco,CA,94016 +228443,Wired Headphones,1,11.99,2019-07-09 14:11:00,739 8th St, Seattle,WA,98101 +228444,Wired Headphones,1,11.99,2019-07-18 13:29:00,754 Pine St, Boston,MA,02215 +228445,AAA Batteries (4-pack),1,2.99,2019-07-05 19:36:00,109 Pine St, Seattle,WA,98101 +228446,34in Ultrawide Monitor,1,379.99,2019-07-23 13:54:00,708 13th St, Portland,OR,97035 +228447,Apple Airpods Headphones,1,150.0,2019-07-29 13:12:00,865 Cherry St, Portland,ME,04101 +228448,Lightning Charging Cable,1,14.95,2019-07-31 18:10:00,432 Adams St, Los Angeles,CA,90001 +228449,iPhone,1,700.0,2019-07-23 09:04:00,40 Johnson St, San Francisco,CA,94016 +228450,Lightning Charging Cable,1,14.95,2019-07-24 18:53:00,162 13th St, San Francisco,CA,94016 +228451,Wired Headphones,1,11.99,2019-07-01 16:15:00,912 Hill St, Boston,MA,02215 +228452,AA Batteries (4-pack),1,3.84,2019-07-20 15:33:00,679 Walnut St, Atlanta,GA,30301 +228453,Wired Headphones,1,11.99,2019-07-26 20:18:00,977 Elm St, Los Angeles,CA,90001 +228454,34in Ultrawide Monitor,1,379.99,2019-07-01 16:45:00,536 Hickory St, Seattle,WA,98101 +228455,Apple Airpods Headphones,1,150.0,2019-07-29 12:28:00,988 Meadow St, Portland,OR,97035 +228456,Macbook Pro Laptop,1,1700.0,2019-07-30 17:22:00,73 Park St, Dallas,TX,75001 +228457,USB-C Charging Cable,2,11.95,2019-07-29 22:41:00,624 Jefferson St, San Francisco,CA,94016 +228457,Bose SoundSport Headphones,1,99.99,2019-07-29 22:41:00,624 Jefferson St, San Francisco,CA,94016 +228458,Lightning Charging Cable,1,14.95,2019-07-04 22:14:00,602 13th St, Los Angeles,CA,90001 +228459,iPhone,1,700.0,2019-07-19 09:32:00,128 Highland St, Atlanta,GA,30301 +228460,AAA Batteries (4-pack),2,2.99,2019-07-08 18:14:00,716 Spruce St, New York City,NY,10001 +228461,Bose SoundSport Headphones,1,99.99,2019-07-19 14:00:00,644 Lake St, San Francisco,CA,94016 +228462,Google Phone,1,600.0,2019-07-09 14:04:00,726 Ridge St, Boston,MA,02215 +228463,USB-C Charging Cable,1,11.95,2019-07-06 20:33:00,364 West St, New York City,NY,10001 +228464,Bose SoundSport Headphones,1,99.99,2019-07-20 09:41:00,691 12th St, New York City,NY,10001 +228465,Flatscreen TV,1,300.0,2019-07-06 18:51:00,237 Adams St, Atlanta,GA,30301 +228466,27in 4K Gaming Monitor,1,389.99,2019-07-21 18:12:00,933 Jackson St, Los Angeles,CA,90001 +228467,Lightning Charging Cable,1,14.95,2019-07-16 21:45:00,79 South St, San Francisco,CA,94016 +228468,27in 4K Gaming Monitor,1,389.99,2019-07-23 15:41:00,145 West St, San Francisco,CA,94016 +228469,AA Batteries (4-pack),3,3.84,2019-07-27 15:17:00,375 Main St, Los Angeles,CA,90001 +228470,Apple Airpods Headphones,1,150.0,2019-07-15 10:09:00,919 10th St, Los Angeles,CA,90001 +228471,Lightning Charging Cable,1,14.95,2019-07-23 11:29:00,897 Jefferson St, Boston,MA,02215 +228472,Wired Headphones,1,11.99,2019-07-10 08:59:00,590 Spruce St, New York City,NY,10001 +228473,Bose SoundSport Headphones,1,99.99,2019-07-02 13:27:00,585 Madison St, Portland,OR,97035 +228474,Apple Airpods Headphones,1,150.0,2019-07-23 07:39:00,406 Jackson St, Los Angeles,CA,90001 +228475,27in FHD Monitor,1,149.99,2019-07-14 11:28:00,596 Meadow St, San Francisco,CA,94016 +228476,Flatscreen TV,1,300.0,2019-07-20 12:28:00,885 Sunset St, Atlanta,GA,30301 +228477,Wired Headphones,1,11.99,2019-07-23 15:57:00,510 Park St, New York City,NY,10001 +228478,USB-C Charging Cable,1,11.95,2019-07-31 18:05:00,495 Spruce St, San Francisco,CA,94016 +228479,AA Batteries (4-pack),1,3.84,2019-07-10 11:44:00,487 South St, Seattle,WA,98101 +228480,Apple Airpods Headphones,1,150.0,2019-07-03 09:29:00,545 13th St, Boston,MA,02215 +228481,27in FHD Monitor,1,149.99,2019-07-15 14:07:00,676 Hill St, Los Angeles,CA,90001 +228482,Bose SoundSport Headphones,1,99.99,2019-07-07 14:23:00,257 Meadow St, San Francisco,CA,94016 +228482,Wired Headphones,1,11.99,2019-07-07 14:23:00,257 Meadow St, San Francisco,CA,94016 +228483,USB-C Charging Cable,1,11.95,2019-07-03 00:51:00,624 Pine St, Boston,MA,02215 +228484,27in 4K Gaming Monitor,1,389.99,2019-07-07 08:17:00,902 Willow St, Atlanta,GA,30301 +228485,AAA Batteries (4-pack),1,2.99,2019-07-18 21:05:00,892 Park St, Los Angeles,CA,90001 +228486,Apple Airpods Headphones,1,150.0,2019-07-25 09:31:00,578 Walnut St, New York City,NY,10001 +228487,Macbook Pro Laptop,1,1700.0,2019-07-03 17:22:00,874 4th St, Seattle,WA,98101 +228488,Apple Airpods Headphones,1,150.0,2019-07-25 12:43:00,710 Dogwood St, Atlanta,GA,30301 +228489,Vareebadd Phone,1,400.0,2019-07-27 13:22:00,892 11th St, San Francisco,CA,94016 +228489,USB-C Charging Cable,1,11.95,2019-07-27 13:22:00,892 11th St, San Francisco,CA,94016 +228490,Wired Headphones,1,11.99,2019-07-09 14:33:00,910 Lincoln St, San Francisco,CA,94016 +228491,27in 4K Gaming Monitor,1,389.99,2019-07-03 13:07:00,383 Meadow St, San Francisco,CA,94016 +228492,Lightning Charging Cable,1,14.95,2019-07-01 14:47:00,402 Lincoln St, Seattle,WA,98101 +228493,AAA Batteries (4-pack),1,2.99,2019-07-18 21:41:00,887 8th St, Boston,MA,02215 +228494,AAA Batteries (4-pack),1,2.99,2019-07-23 11:00:00,787 Johnson St, San Francisco,CA,94016 +228495,Lightning Charging Cable,1,14.95,2019-07-13 21:14:00,252 Lincoln St, Los Angeles,CA,90001 +228496,AAA Batteries (4-pack),2,2.99,2019-07-31 18:52:00,7 Elm St, New York City,NY,10001 +228497,Wired Headphones,1,11.99,2019-07-26 15:23:00,262 Wilson St, Dallas,TX,75001 +228498,AA Batteries (4-pack),1,3.84,2019-07-18 10:42:00,348 Maple St, New York City,NY,10001 +228499,AAA Batteries (4-pack),2,2.99,2019-07-15 16:30:00,619 Main St, Austin,TX,73301 +228500,USB-C Charging Cable,1,11.95,2019-07-10 21:10:00,116 12th St, New York City,NY,10001 +228501,Bose SoundSport Headphones,1,99.99,2019-07-19 13:44:00,946 North St, Portland,ME,04101 +228502,Vareebadd Phone,1,400.0,2019-07-14 00:59:00,706 South St, San Francisco,CA,94016 +228503,AAA Batteries (4-pack),1,2.99,2019-07-14 11:10:00,717 Cherry St, San Francisco,CA,94016 +228504,Apple Airpods Headphones,1,150.0,2019-07-07 18:39:00,517 West St, San Francisco,CA,94016 +228505,AA Batteries (4-pack),1,3.84,2019-07-24 20:05:00,341 Ridge St, Atlanta,GA,30301 +228506,Lightning Charging Cable,1,14.95,2019-07-15 11:14:00,1 Park St, San Francisco,CA,94016 +228507,Wired Headphones,1,11.99,2019-07-02 23:14:00,418 Main St, New York City,NY,10001 +228508,Bose SoundSport Headphones,1,99.99,2019-07-22 14:46:00,337 West St, San Francisco,CA,94016 +228509,Wired Headphones,1,11.99,2019-07-13 17:30:00,141 Hickory St, Dallas,TX,75001 +228510,Google Phone,1,600.0,2019-07-28 10:57:00,844 Meadow St, Dallas,TX,75001 +228511,AAA Batteries (4-pack),3,2.99,2019-07-07 13:50:00,314 Highland St, Atlanta,GA,30301 +228512,Apple Airpods Headphones,1,150.0,2019-07-06 21:15:00,980 Elm St, Los Angeles,CA,90001 +228513,Apple Airpods Headphones,1,150.0,2019-07-13 12:39:00,939 Cherry St, San Francisco,CA,94016 +228514,20in Monitor,1,109.99,2019-07-04 16:51:00,460 Jefferson St, Portland,OR,97035 +228515,Wired Headphones,1,11.99,2019-07-02 10:51:00,906 Main St, New York City,NY,10001 +228516,20in Monitor,1,109.99,2019-07-20 12:26:00,505 Lake St, Portland,ME,04101 +228517,27in FHD Monitor,1,149.99,2019-07-08 16:05:00,206 South St, Atlanta,GA,30301 +228518,AAA Batteries (4-pack),1,2.99,2019-07-07 12:03:00,16 North St, Portland,OR,97035 +228519,AAA Batteries (4-pack),1,2.99,2019-07-06 20:30:00,324 Main St, San Francisco,CA,94016 +228520,Vareebadd Phone,1,400.0,2019-07-24 17:40:00,6 7th St, Boston,MA,02215 +228521,Bose SoundSport Headphones,1,99.99,2019-07-24 20:31:00,600 Cedar St, Los Angeles,CA,90001 +228522,Lightning Charging Cable,1,14.95,2019-07-30 18:31:00,332 Johnson St, San Francisco,CA,94016 +228523,Lightning Charging Cable,1,14.95,2019-07-02 14:21:00,193 Hill St, Austin,TX,73301 +228524,Apple Airpods Headphones,1,150.0,2019-07-07 19:51:00,175 7th St, Dallas,TX,75001 +228525,Google Phone,1,600.0,2019-07-09 19:35:00,115 4th St, Atlanta,GA,30301 +228526,USB-C Charging Cable,1,11.95,2019-07-12 09:42:00,129 5th St, Boston,MA,02215 +228527,Macbook Pro Laptop,1,1700.0,2019-07-03 14:53:00,155 13th St, Los Angeles,CA,90001 +228528,27in FHD Monitor,1,149.99,2019-07-22 10:07:00,397 Hickory St, Los Angeles,CA,90001 +228529,AAA Batteries (4-pack),1,2.99,2019-07-15 20:25:00,647 Madison St, Dallas,TX,75001 +228530,27in 4K Gaming Monitor,1,389.99,2019-07-27 16:57:00,756 Madison St, Los Angeles,CA,90001 +228531,27in FHD Monitor,1,149.99,2019-07-04 16:46:00,884 Chestnut St, New York City,NY,10001 +228532,Google Phone,1,600.0,2019-07-31 17:14:00,401 Lakeview St, Portland,OR,97035 +228533,Wired Headphones,1,11.99,2019-07-13 07:19:00,795 Washington St, San Francisco,CA,94016 +228534,USB-C Charging Cable,1,11.95,2019-07-29 09:45:00,811 Wilson St, New York City,NY,10001 +228535,USB-C Charging Cable,3,11.95,2019-07-27 16:11:00,935 Washington St, Atlanta,GA,30301 +228536,Vareebadd Phone,1,400.0,2019-07-13 12:11:00,412 Main St, Los Angeles,CA,90001 +228537,AA Batteries (4-pack),3,3.84,2019-07-19 20:09:00,721 Lakeview St, Atlanta,GA,30301 +228538,Apple Airpods Headphones,1,150.0,2019-07-17 18:46:00,790 Forest St, San Francisco,CA,94016 +228539,ThinkPad Laptop,1,999.99,2019-07-23 15:47:00,216 River St, Austin,TX,73301 +228540,Bose SoundSport Headphones,1,99.99,2019-07-24 10:43:00,387 Main St, Los Angeles,CA,90001 +228541,iPhone,1,700.0,2019-07-10 19:38:00,992 10th St, Atlanta,GA,30301 +228542,AAA Batteries (4-pack),1,2.99,2019-07-03 10:04:00,340 13th St, Portland,ME,04101 +228543,AAA Batteries (4-pack),2,2.99,2019-07-07 23:22:00,304 South St, New York City,NY,10001 +228544,AAA Batteries (4-pack),1,2.99,2019-07-04 19:59:00,233 Washington St, San Francisco,CA,94016 +228545,Lightning Charging Cable,1,14.95,2019-07-26 20:02:00,203 1st St, San Francisco,CA,94016 +228546,Macbook Pro Laptop,1,1700.0,2019-07-06 20:43:00,987 Main St, Boston,MA,02215 +228547,AA Batteries (4-pack),1,3.84,2019-07-13 14:29:00,99 Washington St, Austin,TX,73301 +228548,Lightning Charging Cable,1,14.95,2019-07-29 12:54:00,719 Wilson St, San Francisco,CA,94016 +228549,AA Batteries (4-pack),1,3.84,2019-07-25 13:01:00,915 Johnson St, Dallas,TX,75001 +228550,Google Phone,1,600.0,2019-07-06 23:33:00,166 4th St, New York City,NY,10001 +228550,USB-C Charging Cable,1,11.95,2019-07-06 23:33:00,166 4th St, New York City,NY,10001 +228551,USB-C Charging Cable,1,11.95,2019-07-26 02:16:00,842 Highland St, Los Angeles,CA,90001 +228552,USB-C Charging Cable,1,11.95,2019-07-11 16:30:00,63 Adams St, San Francisco,CA,94016 +228553,Wired Headphones,1,11.99,2019-07-04 19:05:00,818 14th St, New York City,NY,10001 +228554,Bose SoundSport Headphones,1,99.99,2019-07-21 12:43:00,998 Forest St, New York City,NY,10001 +228555,27in FHD Monitor,1,149.99,2019-07-19 11:59:00,501 1st St, Boston,MA,02215 +228556,Wired Headphones,1,11.99,2019-07-19 18:13:00,812 Wilson St, Seattle,WA,98101 +228557,Wired Headphones,1,11.99,2019-07-07 19:59:00,350 5th St, San Francisco,CA,94016 +228558,AA Batteries (4-pack),2,3.84,2019-07-20 21:41:00,655 Cedar St, Dallas,TX,75001 +228559,Wired Headphones,1,11.99,2019-07-11 08:35:00,485 Lincoln St, Dallas,TX,75001 +228560,Lightning Charging Cable,1,14.95,2019-07-15 19:36:00,479 Walnut St, Los Angeles,CA,90001 +228561,Bose SoundSport Headphones,1,99.99,2019-07-22 12:11:00,762 7th St, San Francisco,CA,94016 +228562,Apple Airpods Headphones,1,150.0,2019-07-21 04:38:00,504 Adams St, Los Angeles,CA,90001 +228563,Lightning Charging Cable,1,14.95,2019-07-19 22:17:00,839 2nd St, New York City,NY,10001 +228564,Google Phone,1,600.0,2019-07-15 00:16:00,535 Spruce St, New York City,NY,10001 +228565,AAA Batteries (4-pack),2,2.99,2019-07-19 19:14:00,33 10th St, Los Angeles,CA,90001 +228566,Apple Airpods Headphones,1,150.0,2019-07-26 20:18:00,861 11th St, Austin,TX,73301 +228567,27in FHD Monitor,1,149.99,2019-07-06 23:23:00,292 8th St, Boston,MA,02215 +228568,Lightning Charging Cable,1,14.95,2019-07-27 15:24:00,458 Church St, San Francisco,CA,94016 +228569,Wired Headphones,1,11.99,2019-07-16 15:48:00,503 Meadow St, San Francisco,CA,94016 +228570,USB-C Charging Cable,1,11.95,2019-07-28 08:56:00,318 Hickory St, Los Angeles,CA,90001 +228571,27in 4K Gaming Monitor,1,389.99,2019-07-25 12:28:00,940 Chestnut St, San Francisco,CA,94016 +228572,Wired Headphones,2,11.99,2019-07-11 11:30:00,691 South St, San Francisco,CA,94016 +228573,AAA Batteries (4-pack),1,2.99,2019-07-09 11:03:00,661 Wilson St, New York City,NY,10001 +228574,Apple Airpods Headphones,1,150.0,2019-07-19 20:13:00,558 Adams St, Boston,MA,02215 +228575,Lightning Charging Cable,1,14.95,2019-07-15 21:00:00,629 Washington St, San Francisco,CA,94016 +228576,Lightning Charging Cable,1,14.95,2019-07-20 19:13:00,958 Elm St, Los Angeles,CA,90001 +228577,AAA Batteries (4-pack),1,2.99,2019-07-17 18:22:00,320 Hickory St, New York City,NY,10001 +228578,Google Phone,1,600.0,2019-07-31 11:31:00,5 Willow St, Dallas,TX,75001 +228579,Wired Headphones,1,11.99,2019-07-27 17:18:00,229 Lincoln St, San Francisco,CA,94016 +228580,Macbook Pro Laptop,1,1700.0,2019-07-18 12:26:00,328 Hill St, San Francisco,CA,94016 +228581,27in 4K Gaming Monitor,1,389.99,2019-07-01 17:26:00,920 Church St, Los Angeles,CA,90001 +228582,27in FHD Monitor,1,149.99,2019-07-16 13:31:00,447 Hill St, Austin,TX,73301 +228583,AA Batteries (4-pack),3,3.84,2019-07-14 20:38:00,857 Main St, Atlanta,GA,30301 +228584,Bose SoundSport Headphones,1,99.99,2019-07-07 13:24:00,840 Walnut St, San Francisco,CA,94016 +228585,Flatscreen TV,1,300.0,2019-07-11 11:08:00,491 North St, San Francisco,CA,94016 +228586,Lightning Charging Cable,1,14.95,2019-07-31 13:22:00,274 12th St, Los Angeles,CA,90001 +228587,USB-C Charging Cable,1,11.95,2019-07-21 22:46:00,144 Dogwood St, Austin,TX,73301 +228588,Vareebadd Phone,1,400.0,2019-07-04 11:04:00,961 Spruce St, Atlanta,GA,30301 +228589,iPhone,1,700.0,2019-07-08 12:09:00,592 Cherry St, San Francisco,CA,94016 +228590,34in Ultrawide Monitor,1,379.99,2019-07-11 09:11:00,364 Maple St, Boston,MA,02215 +228591,Apple Airpods Headphones,1,150.0,2019-07-22 09:40:00,64 Highland St, Portland,OR,97035 +228592,Lightning Charging Cable,1,14.95,2019-07-31 10:17:00,786 West St, New York City,NY,10001 +228592,Apple Airpods Headphones,1,150.0,2019-07-31 10:17:00,786 West St, New York City,NY,10001 +228593,iPhone,1,700.0,2019-07-04 08:07:00,203 Lake St, Boston,MA,02215 +228594,AA Batteries (4-pack),1,3.84,2019-07-21 13:40:00,403 Maple St, Dallas,TX,75001 +228595,USB-C Charging Cable,1,11.95,2019-07-16 17:23:00,532 Madison St, Dallas,TX,75001 +228596,27in FHD Monitor,1,149.99,2019-07-03 13:47:00,393 Forest St, New York City,NY,10001 +228597,Wired Headphones,1,11.99,2019-07-07 15:29:00,8 8th St, New York City,NY,10001 +228598,Wired Headphones,1,11.99,2019-07-11 11:08:00,740 Hill St, Austin,TX,73301 +228599,Lightning Charging Cable,1,14.95,2019-07-10 18:40:00,565 12th St, New York City,NY,10001 +228600,Wired Headphones,1,11.99,2019-07-21 11:54:00,417 Cherry St, San Francisco,CA,94016 +228601,27in FHD Monitor,1,149.99,2019-07-16 11:12:00,523 8th St, New York City,NY,10001 +228602,Bose SoundSport Headphones,1,99.99,2019-07-05 23:30:00,158 Hill St, Los Angeles,CA,90001 +228603,AA Batteries (4-pack),2,3.84,2019-07-31 09:04:00,340 Lincoln St, Seattle,WA,98101 +228604,Flatscreen TV,1,300.0,2019-07-19 20:20:00,105 Center St, San Francisco,CA,94016 +228605,Lightning Charging Cable,1,14.95,2019-07-10 12:04:00,36 11th St, Atlanta,GA,30301 +228606,Apple Airpods Headphones,1,150.0,2019-07-30 21:12:00,314 9th St, San Francisco,CA,94016 +228607,AA Batteries (4-pack),1,3.84,2019-07-25 15:18:00,520 West St, Portland,OR,97035 +228608,Lightning Charging Cable,1,14.95,2019-07-05 23:12:00,708 Hickory St, Portland,ME,04101 +228609,27in FHD Monitor,1,149.99,2019-07-22 16:01:00,661 River St, Boston,MA,02215 +228610,Google Phone,1,600.0,2019-07-26 18:24:00,746 Maple St, Los Angeles,CA,90001 +228611,Lightning Charging Cable,1,14.95,2019-07-20 10:25:00,201 West St, Boston,MA,02215 +228612,AAA Batteries (4-pack),1,2.99,2019-07-25 17:07:00,140 Center St, Dallas,TX,75001 +228613,USB-C Charging Cable,1,11.95,2019-07-25 14:22:00,665 Madison St, New York City,NY,10001 +228614,Lightning Charging Cable,1,14.95,2019-07-30 18:21:00,204 14th St, Austin,TX,73301 +228615,Lightning Charging Cable,1,14.95,2019-07-19 06:10:00,366 North St, New York City,NY,10001 +228616,USB-C Charging Cable,1,11.95,2019-07-07 16:33:00,955 Pine St, Portland,OR,97035 +228617,27in 4K Gaming Monitor,1,389.99,2019-07-29 13:04:00,324 Jefferson St, San Francisco,CA,94016 +228618,Apple Airpods Headphones,1,150.0,2019-07-30 19:49:00,907 4th St, San Francisco,CA,94016 +228619,AA Batteries (4-pack),1,3.84,2019-07-21 16:47:00,557 6th St, Dallas,TX,75001 +228620,USB-C Charging Cable,1,11.95,2019-07-14 18:48:00,622 13th St, Seattle,WA,98101 +228621,20in Monitor,1,109.99,2019-07-15 21:19:00,202 Hickory St, Los Angeles,CA,90001 +228622,AAA Batteries (4-pack),1,2.99,2019-07-16 19:10:00,322 Ridge St, Dallas,TX,75001 +228623,USB-C Charging Cable,1,11.95,2019-07-18 19:11:00,63 Park St, Los Angeles,CA,90001 +228624,Wired Headphones,1,11.99,2019-07-13 16:51:00,922 Highland St, San Francisco,CA,94016 +228625,USB-C Charging Cable,1,11.95,2019-07-10 08:11:00,887 11th St, New York City,NY,10001 +228626,AA Batteries (4-pack),1,3.84,2019-07-18 09:53:00,67 Hill St, Portland,OR,97035 +228627,AAA Batteries (4-pack),1,2.99,2019-07-08 03:00:00,849 Lakeview St, Atlanta,GA,30301 +228628,Apple Airpods Headphones,1,150.0,2019-07-06 10:00:00,374 River St, San Francisco,CA,94016 +228629,Lightning Charging Cable,2,14.95,2019-07-20 15:53:00,155 Ridge St, Seattle,WA,98101 +228630,AA Batteries (4-pack),1,3.84,2019-07-26 16:51:00,784 1st St, Los Angeles,CA,90001 +228631,27in 4K Gaming Monitor,1,389.99,2019-07-13 12:21:00,749 Adams St, Atlanta,GA,30301 +228631,Bose SoundSport Headphones,1,99.99,2019-07-13 12:21:00,749 Adams St, Atlanta,GA,30301 +228632,AAA Batteries (4-pack),1,2.99,2019-07-10 16:15:00,594 Cherry St, San Francisco,CA,94016 +228633,Macbook Pro Laptop,1,1700.0,2019-07-30 23:15:00,104 Main St, Los Angeles,CA,90001 +228634,iPhone,1,700.0,2019-07-22 17:33:00,10 11th St, Los Angeles,CA,90001 +228635,Wired Headphones,1,11.99,2019-07-09 18:25:00,5 Church St, Austin,TX,73301 +228636,Wired Headphones,1,11.99,2019-07-03 17:29:00,214 Walnut St, Seattle,WA,98101 +228637,20in Monitor,1,109.99,2019-07-06 17:17:00,345 14th St, Austin,TX,73301 +228638,Flatscreen TV,1,300.0,2019-07-28 08:04:00,835 Walnut St, Seattle,WA,98101 +228639,Bose SoundSport Headphones,1,99.99,2019-07-29 10:31:00,67 14th St, San Francisco,CA,94016 +228640,Google Phone,1,600.0,2019-07-08 13:03:00,847 1st St, Los Angeles,CA,90001 +228641,AAA Batteries (4-pack),1,2.99,2019-07-09 18:11:00,993 Park St, Dallas,TX,75001 +228642,USB-C Charging Cable,1,11.95,2019-07-07 22:36:00,866 14th St, Portland,OR,97035 +228643,Wired Headphones,1,11.99,2019-07-28 20:34:00,961 14th St, Los Angeles,CA,90001 +228644,AAA Batteries (4-pack),2,2.99,2019-07-05 00:20:00,37 7th St, San Francisco,CA,94016 +228645,LG Dryer,1,600.0,2019-07-13 11:51:00,409 North St, Boston,MA,02215 +228646,Wired Headphones,1,11.99,2019-07-17 15:56:00,433 Chestnut St, New York City,NY,10001 +228647,Apple Airpods Headphones,1,150.0,2019-07-14 11:35:00,572 13th St, Los Angeles,CA,90001 +228648,Wired Headphones,1,11.99,2019-07-21 19:08:00,231 Cedar St, Los Angeles,CA,90001 +228649,Apple Airpods Headphones,1,150.0,2019-07-09 15:38:00,210 5th St, San Francisco,CA,94016 +228650,AA Batteries (4-pack),1,3.84,2019-07-31 12:00:00,241 Lake St, New York City,NY,10001 +228651,Lightning Charging Cable,1,14.95,2019-07-26 19:04:00,912 Maple St, Los Angeles,CA,90001 +228652,Lightning Charging Cable,1,14.95,2019-07-21 19:57:00,633 1st St, Boston,MA,02215 +228653,Lightning Charging Cable,1,14.95,2019-07-01 08:36:00,977 5th St, Dallas,TX,75001 +228654,Lightning Charging Cable,2,14.95,2019-07-30 14:58:00,133 9th St, Atlanta,GA,30301 +228655,Wired Headphones,1,11.99,2019-07-11 06:50:00,538 Willow St, Boston,MA,02215 +228656,Lightning Charging Cable,1,14.95,2019-07-03 00:50:00,955 4th St, New York City,NY,10001 +228657,AAA Batteries (4-pack),1,2.99,2019-07-25 23:52:00,710 South St, Boston,MA,02215 +228658,Wired Headphones,1,11.99,2019-07-19 19:56:00,255 9th St, New York City,NY,10001 +228659,34in Ultrawide Monitor,1,379.99,2019-07-09 09:07:00,216 7th St, Atlanta,GA,30301 +228660,AAA Batteries (4-pack),1,2.99,2019-07-25 16:00:00,881 11th St, San Francisco,CA,94016 +228661,Apple Airpods Headphones,1,150.0,2019-07-11 21:42:00,220 Wilson St, San Francisco,CA,94016 +228662,iPhone,1,700.0,2019-07-30 17:55:00,295 9th St, Atlanta,GA,30301 +228663,Apple Airpods Headphones,1,150.0,2019-07-28 16:30:00,593 Highland St, Los Angeles,CA,90001 +228664,Bose SoundSport Headphones,1,99.99,2019-07-28 07:42:00,724 Spruce St, San Francisco,CA,94016 +228665,34in Ultrawide Monitor,1,379.99,2019-07-06 13:51:00,658 Maple St, San Francisco,CA,94016 +228666,Flatscreen TV,1,300.0,2019-07-27 15:30:00,691 Jackson St, San Francisco,CA,94016 +228667,Macbook Pro Laptop,1,1700.0,2019-07-30 22:50:00,940 Cherry St, Boston,MA,02215 +228668,USB-C Charging Cable,1,11.95,2019-07-21 16:11:00,214 2nd St, New York City,NY,10001 +228669,USB-C Charging Cable,2,11.95,2019-07-20 16:09:00,742 River St, Dallas,TX,75001 +228670,27in FHD Monitor,1,149.99,2019-07-22 18:28:00,741 9th St, Dallas,TX,75001 +228671,27in 4K Gaming Monitor,1,389.99,2019-07-16 13:31:00,413 5th St, Boston,MA,02215 +228672,Lightning Charging Cable,1,14.95,2019-07-12 20:46:00,895 Highland St, Boston,MA,02215 +228673,Lightning Charging Cable,1,14.95,2019-07-16 17:00:00,753 Chestnut St, San Francisco,CA,94016 +228674,Wired Headphones,1,11.99,2019-07-12 09:23:00,348 North St, Dallas,TX,75001 +228675,Bose SoundSport Headphones,1,99.99,2019-07-02 10:02:00,167 Church St, New York City,NY,10001 +228676,Bose SoundSport Headphones,1,99.99,2019-07-27 18:12:00,754 Elm St, Boston,MA,02215 +228677,LG Dryer,1,600.0,2019-07-12 11:18:00,452 Lakeview St, Atlanta,GA,30301 +228678,ThinkPad Laptop,1,999.99,2019-07-14 21:41:00,623 2nd St, New York City,NY,10001 +228679,27in FHD Monitor,1,149.99,2019-07-23 21:44:00,926 2nd St, San Francisco,CA,94016 +228680,Wired Headphones,1,11.99,2019-07-15 14:07:00,249 Cherry St, Seattle,WA,98101 +228681,27in FHD Monitor,1,149.99,2019-07-16 16:05:00,376 Washington St, Seattle,WA,98101 +228682,AA Batteries (4-pack),1,3.84,2019-07-01 12:47:00,474 Washington St, Boston,MA,02215 +228683,Wired Headphones,1,11.99,2019-07-08 14:39:00,753 5th St, Los Angeles,CA,90001 +228684,AAA Batteries (4-pack),2,2.99,2019-07-05 15:43:00,700 Lakeview St, Los Angeles,CA,90001 +228685,Lightning Charging Cable,1,14.95,2019-07-10 10:22:00,409 Pine St, Atlanta,GA,30301 +228686,Lightning Charging Cable,1,14.95,2019-07-23 01:10:00,368 Adams St, San Francisco,CA,94016 +228687,Wired Headphones,1,11.99,2019-07-21 23:06:00,687 Jackson St, New York City,NY,10001 +228688,Wired Headphones,1,11.99,2019-07-25 00:06:00,419 Cherry St, New York City,NY,10001 +228688,34in Ultrawide Monitor,1,379.99,2019-07-25 00:06:00,419 Cherry St, New York City,NY,10001 +228689,27in FHD Monitor,1,149.99,2019-07-01 16:16:00,131 14th St, New York City,NY,10001 +228690,AAA Batteries (4-pack),2,2.99,2019-07-19 00:00:00,629 8th St, Los Angeles,CA,90001 +228691,27in 4K Gaming Monitor,1,389.99,2019-07-24 15:43:00,740 Chestnut St, San Francisco,CA,94016 +228692,Wired Headphones,1,11.99,2019-07-03 10:21:00,550 Church St, Dallas,TX,75001 +228693,Bose SoundSport Headphones,1,99.99,2019-07-08 16:31:00,437 Main St, Los Angeles,CA,90001 +228694,Lightning Charging Cable,1,14.95,2019-07-11 20:52:00,29 Lincoln St, Boston,MA,02215 +228695,Lightning Charging Cable,1,14.95,2019-07-03 12:30:00,47 Wilson St, San Francisco,CA,94016 +228696,Apple Airpods Headphones,1,150.0,2019-07-30 09:43:00,893 Lakeview St, Atlanta,GA,30301 +228697,AAA Batteries (4-pack),2,2.99,2019-07-09 19:27:00,944 Lincoln St, Seattle,WA,98101 +228698,27in 4K Gaming Monitor,1,389.99,2019-07-21 15:37:00,111 Lake St, New York City,NY,10001 +228699,Apple Airpods Headphones,1,150.0,2019-07-20 21:09:00,611 Johnson St, Portland,OR,97035 +228700,Apple Airpods Headphones,1,150.0,2019-07-30 06:35:00,491 Meadow St, Boston,MA,02215 +228701,Vareebadd Phone,1,400.0,2019-07-06 18:26:00,852 Madison St, San Francisco,CA,94016 +228701,USB-C Charging Cable,1,11.95,2019-07-06 18:26:00,852 Madison St, San Francisco,CA,94016 +228702,Macbook Pro Laptop,1,1700.0,2019-07-02 17:34:00,416 Maple St, Boston,MA,02215 +228703,AA Batteries (4-pack),2,3.84,2019-07-20 09:15:00,773 7th St, New York City,NY,10001 +228704,Bose SoundSport Headphones,1,99.99,2019-07-07 15:05:00,505 West St, Los Angeles,CA,90001 +228705,Macbook Pro Laptop,1,1700.0,2019-07-01 11:24:00,793 5th St, Atlanta,GA,30301 +228706,Lightning Charging Cable,1,14.95,2019-07-03 13:25:00,937 Johnson St, San Francisco,CA,94016 +228707,Lightning Charging Cable,1,14.95,2019-07-30 17:44:00,871 7th St, Seattle,WA,98101 +228708,Lightning Charging Cable,1,14.95,2019-07-12 04:17:00,274 Spruce St, New York City,NY,10001 +228709,Bose SoundSport Headphones,1,99.99,2019-07-29 19:56:00,578 Johnson St, San Francisco,CA,94016 +228710,AAA Batteries (4-pack),2,2.99,2019-07-16 23:23:00,227 Willow St, Boston,MA,02215 +228711,20in Monitor,1,109.99,2019-07-15 08:33:00,828 Willow St, San Francisco,CA,94016 +228712,USB-C Charging Cable,1,11.95,2019-07-19 16:53:00,810 Center St, New York City,NY,10001 +228713,iPhone,1,700.0,2019-07-16 11:02:00,347 Church St, New York City,NY,10001 +228714,USB-C Charging Cable,1,11.95,2019-07-12 17:51:00,155 13th St, Seattle,WA,98101 +228714,Lightning Charging Cable,2,14.95,2019-07-12 17:51:00,155 13th St, Seattle,WA,98101 +228715,Bose SoundSport Headphones,1,99.99,2019-07-27 03:26:00,325 Willow St, San Francisco,CA,94016 +228716,ThinkPad Laptop,1,999.99,2019-07-14 23:59:00,650 Hickory St, New York City,NY,10001 +228717,Bose SoundSport Headphones,1,99.99,2019-07-15 09:45:00,600 Cedar St, Austin,TX,73301 +228718,Lightning Charging Cable,1,14.95,2019-07-17 19:17:00,193 Willow St, Seattle,WA,98101 +228719,27in FHD Monitor,1,149.99,2019-07-26 13:27:00,511 14th St, Portland,OR,97035 +228720,Flatscreen TV,1,300.0,2019-07-07 10:13:00,472 Forest St, New York City,NY,10001 +228721,Lightning Charging Cable,1,14.95,2019-07-29 17:14:00,592 Chestnut St, Los Angeles,CA,90001 +228722,Wired Headphones,1,11.99,2019-07-28 13:03:00,347 Highland St, Boston,MA,02215 +228723,27in 4K Gaming Monitor,1,389.99,2019-07-02 18:18:00,127 7th St, Portland,OR,97035 +228724,AA Batteries (4-pack),1,3.84,2019-07-31 13:25:00,244 Dogwood St, Seattle,WA,98101 +228725,Google Phone,1,600.0,2019-07-05 17:32:00,317 7th St, Seattle,WA,98101 +228725,USB-C Charging Cable,1,11.95,2019-07-05 17:32:00,317 7th St, Seattle,WA,98101 +228726,Wired Headphones,1,11.99,2019-07-20 19:47:00,515 Jackson St, Austin,TX,73301 +228726,USB-C Charging Cable,1,11.95,2019-07-20 19:47:00,515 Jackson St, Austin,TX,73301 +228727,LG Dryer,1,600.0,2019-07-11 12:44:00,572 10th St, Los Angeles,CA,90001 +228728,Google Phone,1,600.0,2019-07-04 22:03:00,683 Pine St, Los Angeles,CA,90001 +228729,Lightning Charging Cable,1,14.95,2019-07-06 17:51:00,343 14th St, New York City,NY,10001 +228730,AAA Batteries (4-pack),1,2.99,2019-07-04 22:17:00,583 Jackson St, Dallas,TX,75001 +228731,Lightning Charging Cable,1,14.95,2019-07-12 21:37:00,326 River St, New York City,NY,10001 +228732,27in FHD Monitor,1,149.99,2019-07-21 16:26:00,707 2nd St, Seattle,WA,98101 +228733,27in FHD Monitor,1,149.99,2019-07-24 19:41:00,956 Walnut St, Austin,TX,73301 +228734,27in 4K Gaming Monitor,1,389.99,2019-07-13 13:49:00,555 1st St, Portland,OR,97035 +228735,27in 4K Gaming Monitor,1,389.99,2019-07-18 13:47:00,932 Cherry St, San Francisco,CA,94016 +228736,AAA Batteries (4-pack),1,2.99,2019-07-30 15:41:00,138 5th St, Dallas,TX,75001 +228737,AA Batteries (4-pack),3,3.84,2019-07-19 10:52:00,889 13th St, Los Angeles,CA,90001 +228738,Wired Headphones,1,11.99,2019-07-31 10:59:00,706 Lakeview St, San Francisco,CA,94016 +228739,Lightning Charging Cable,2,14.95,2019-07-09 17:20:00,795 Chestnut St, Boston,MA,02215 +228740,iPhone,1,700.0,2019-07-23 14:44:00,251 South St, Boston,MA,02215 +228741,AAA Batteries (4-pack),1,2.99,2019-07-26 10:32:00,758 12th St, Atlanta,GA,30301 +228742,Lightning Charging Cable,1,14.95,2019-07-04 22:09:00,893 13th St, San Francisco,CA,94016 +228743,USB-C Charging Cable,1,11.95,2019-07-01 14:11:00,266 Willow St, Austin,TX,73301 +228744,Apple Airpods Headphones,1,150.0,2019-07-17 19:49:00,234 North St, New York City,NY,10001 +228744,Wired Headphones,1,11.99,2019-07-17 19:49:00,234 North St, New York City,NY,10001 +228745,Google Phone,1,600.0,2019-07-30 10:37:00,160 South St, Los Angeles,CA,90001 +228746,Google Phone,1,600.0,2019-07-24 15:34:00,823 Maple St, Dallas,TX,75001 +228747,Lightning Charging Cable,1,14.95,2019-07-21 00:04:00,545 Lake St, New York City,NY,10001 +228748,Apple Airpods Headphones,1,150.0,2019-07-22 13:45:00,749 Spruce St, San Francisco,CA,94016 +228749,20in Monitor,1,109.99,2019-07-31 02:17:00,757 Elm St, San Francisco,CA,94016 +228750,AA Batteries (4-pack),1,3.84,2019-07-08 00:26:00,137 Walnut St, San Francisco,CA,94016 +228751,27in 4K Gaming Monitor,1,389.99,2019-07-17 11:14:00,979 Washington St, Atlanta,GA,30301 +228752,Bose SoundSport Headphones,1,99.99,2019-07-24 12:16:00,903 6th St, Seattle,WA,98101 +228753,AAA Batteries (4-pack),2,2.99,2019-07-29 08:53:00,526 South St, Dallas,TX,75001 +228754,USB-C Charging Cable,1,11.95,2019-07-08 07:28:00,41 9th St, San Francisco,CA,94016 +228755,Lightning Charging Cable,1,14.95,2019-07-30 21:09:00,757 Dogwood St, Atlanta,GA,30301 +228756,Apple Airpods Headphones,1,150.0,2019-07-17 12:46:00,630 Meadow St, Los Angeles,CA,90001 +228757,Lightning Charging Cable,1,14.95,2019-07-07 21:29:00,983 Jackson St, Boston,MA,02215 +228758,AA Batteries (4-pack),1,3.84,2019-07-16 17:34:00,92 Highland St, Los Angeles,CA,90001 +228758,USB-C Charging Cable,1,11.95,2019-07-16 17:34:00,92 Highland St, Los Angeles,CA,90001 +228759,Wired Headphones,1,11.99,2019-07-24 22:25:00,674 Elm St, Dallas,TX,75001 +228760,Apple Airpods Headphones,1,150.0,2019-07-17 22:57:00,730 Wilson St, San Francisco,CA,94016 +228761,USB-C Charging Cable,1,11.95,2019-07-08 14:15:00,970 Spruce St, Portland,OR,97035 +228762,USB-C Charging Cable,1,11.95,2019-07-16 20:28:00,323 7th St, New York City,NY,10001 +228763,AAA Batteries (4-pack),1,2.99,2019-07-08 18:06:00,832 Jackson St, San Francisco,CA,94016 +228764,AA Batteries (4-pack),1,3.84,2019-07-17 09:52:00,180 Park St, San Francisco,CA,94016 +228765,iPhone,1,700.0,2019-07-03 09:24:00,983 4th St, Austin,TX,73301 +228766,USB-C Charging Cable,1,11.95,2019-07-13 22:47:00,907 Madison St, Dallas,TX,75001 +228767,AAA Batteries (4-pack),4,2.99,2019-07-26 17:46:00,552 Johnson St, San Francisco,CA,94016 +228768,ThinkPad Laptop,1,999.99,2019-07-16 07:07:00,666 Hill St, Dallas,TX,75001 +228769,Apple Airpods Headphones,1,150.0,2019-07-17 22:11:00,113 Spruce St, Dallas,TX,75001 +228770,ThinkPad Laptop,1,999.99,2019-07-05 18:21:00,874 5th St, Boston,MA,02215 +228771,Wired Headphones,1,11.99,2019-07-24 12:07:00,307 8th St, Atlanta,GA,30301 +228772,Lightning Charging Cable,1,14.95,2019-07-17 14:03:00,801 Pine St, Boston,MA,02215 +228773,AAA Batteries (4-pack),1,2.99,2019-07-12 16:29:00,497 Sunset St, Seattle,WA,98101 +228774,USB-C Charging Cable,2,11.95,2019-07-11 15:40:00,51 Wilson St, San Francisco,CA,94016 +228775,Lightning Charging Cable,1,14.95,2019-07-17 01:17:00,635 Main St, San Francisco,CA,94016 +228776,Apple Airpods Headphones,1,150.0,2019-07-18 22:33:00,541 Lake St, Boston,MA,02215 +228777,USB-C Charging Cable,1,11.95,2019-07-30 12:47:00,414 13th St, Los Angeles,CA,90001 +228778,USB-C Charging Cable,1,11.95,2019-07-23 10:30:00,714 River St, Boston,MA,02215 +228779,Bose SoundSport Headphones,1,99.99,2019-07-08 18:50:00,992 6th St, Los Angeles,CA,90001 +228780,Bose SoundSport Headphones,1,99.99,2019-07-21 16:14:00,692 8th St, Atlanta,GA,30301 +228781,Apple Airpods Headphones,1,150.0,2019-07-25 11:18:00,395 West St, Atlanta,GA,30301 +228782,USB-C Charging Cable,1,11.95,2019-07-21 21:11:00,266 Pine St, Seattle,WA,98101 +228783,USB-C Charging Cable,1,11.95,2019-07-16 12:19:00,888 Cherry St, San Francisco,CA,94016 +228784,AAA Batteries (4-pack),1,2.99,2019-07-12 17:46:00,473 6th St, Portland,ME,04101 +228785,Apple Airpods Headphones,1,150.0,2019-07-22 19:36:00,255 4th St, San Francisco,CA,94016 +228786,Vareebadd Phone,1,400.0,2019-07-17 15:42:00,747 Cedar St, San Francisco,CA,94016 +228787,Bose SoundSport Headphones,1,99.99,2019-07-08 18:38:00,489 Lincoln St, San Francisco,CA,94016 +228788,Lightning Charging Cable,1,14.95,2019-07-17 08:42:00,596 Lakeview St, Seattle,WA,98101 +228789,Wired Headphones,1,11.99,2019-07-24 21:56:00,825 8th St, San Francisco,CA,94016 +228790,AAA Batteries (4-pack),2,2.99,2019-07-14 09:20:00,745 12th St, Boston,MA,02215 +228791,Bose SoundSport Headphones,1,99.99,2019-07-26 21:07:00,620 Willow St, Seattle,WA,98101 +228792,27in 4K Gaming Monitor,1,389.99,2019-07-31 20:03:00,880 7th St, Dallas,TX,75001 +228793,AA Batteries (4-pack),1,3.84,2019-07-18 16:56:00,673 Adams St, San Francisco,CA,94016 +228794,Wired Headphones,1,11.99,2019-07-19 10:40:00,575 West St, Atlanta,GA,30301 +228795,27in FHD Monitor,1,149.99,2019-07-13 13:36:00,251 14th St, San Francisco,CA,94016 +228796,AA Batteries (4-pack),1,3.84,2019-07-20 11:36:00,2 Hill St, Boston,MA,02215 +228797,Wired Headphones,1,11.99,2019-07-02 12:41:00,584 Forest St, Portland,OR,97035 +228798,AA Batteries (4-pack),1,3.84,2019-07-27 07:50:00,732 Madison St, Atlanta,GA,30301 +228798,Flatscreen TV,1,300.0,2019-07-27 07:50:00,732 Madison St, Atlanta,GA,30301 +228799,Wired Headphones,1,11.99,2019-07-19 11:10:00,715 Pine St, Los Angeles,CA,90001 +228800,USB-C Charging Cable,1,11.95,2019-07-25 21:20:00,715 Park St, Austin,TX,73301 +228801,AAA Batteries (4-pack),3,2.99,2019-07-03 11:28:00,205 2nd St, Austin,TX,73301 +228802,AAA Batteries (4-pack),2,2.99,2019-07-30 20:04:00,919 Wilson St, Boston,MA,02215 +228803,27in FHD Monitor,1,149.99,2019-07-25 11:30:00,655 Hill St, Portland,ME,04101 +228804,Lightning Charging Cable,1,14.95,2019-07-14 01:22:00,842 Chestnut St, Boston,MA,02215 +228805,USB-C Charging Cable,1,11.95,2019-07-13 08:48:00,922 12th St, Atlanta,GA,30301 +228806,Lightning Charging Cable,1,14.95,2019-07-04 16:22:00,443 Madison St, Atlanta,GA,30301 +228807,USB-C Charging Cable,1,11.95,2019-07-29 14:46:00,636 13th St, San Francisco,CA,94016 +228808,AAA Batteries (4-pack),4,2.99,2019-07-11 14:54:00,620 13th St, New York City,NY,10001 +228808,Vareebadd Phone,1,400.0,2019-07-11 14:54:00,620 13th St, New York City,NY,10001 +228809,Wired Headphones,1,11.99,2019-07-14 15:14:00,512 Main St, San Francisco,CA,94016 +228810,USB-C Charging Cable,1,11.95,2019-07-06 22:38:00,780 9th St, Los Angeles,CA,90001 +228811,Apple Airpods Headphones,1,150.0,2019-07-06 10:03:00,451 Pine St, San Francisco,CA,94016 +228812,AA Batteries (4-pack),1,3.84,2019-07-03 10:47:00,471 14th St, Austin,TX,73301 +228813,Apple Airpods Headphones,1,150.0,2019-07-19 22:56:00,128 1st St, Seattle,WA,98101 +228814,27in 4K Gaming Monitor,1,389.99,2019-07-09 13:00:00,745 Sunset St, San Francisco,CA,94016 +228815,Flatscreen TV,1,300.0,2019-07-07 13:27:00,183 10th St, Boston,MA,02215 +228816,AAA Batteries (4-pack),2,2.99,2019-07-06 21:34:00,764 Maple St, Los Angeles,CA,90001 +228817,AA Batteries (4-pack),2,3.84,2019-07-17 19:02:00,812 12th St, San Francisco,CA,94016 +228818,iPhone,1,700.0,2019-07-05 21:41:00,420 8th St, San Francisco,CA,94016 +228818,Lightning Charging Cable,1,14.95,2019-07-05 21:41:00,420 8th St, San Francisco,CA,94016 +228819,AAA Batteries (4-pack),1,2.99,2019-07-22 22:05:00,435 8th St, Los Angeles,CA,90001 +228820,Bose SoundSport Headphones,1,99.99,2019-07-11 20:39:00,823 Pine St, San Francisco,CA,94016 +228821,USB-C Charging Cable,1,11.95,2019-07-14 18:36:00,363 Lakeview St, Seattle,WA,98101 +228822,Lightning Charging Cable,1,14.95,2019-07-20 18:35:00,937 Dogwood St, San Francisco,CA,94016 +228823,iPhone,1,700.0,2019-07-28 18:46:00,447 Lakeview St, Dallas,TX,75001 +228824,27in 4K Gaming Monitor,1,389.99,2019-07-03 21:15:00,193 14th St, Los Angeles,CA,90001 +228825,27in FHD Monitor,1,149.99,2019-07-12 11:47:00,23 Pine St, Dallas,TX,75001 +228826,Lightning Charging Cable,1,14.95,2019-07-05 02:09:00,276 Hill St, Los Angeles,CA,90001 +228827,Lightning Charging Cable,1,14.95,2019-07-06 11:45:00,358 7th St, Boston,MA,02215 +228828,USB-C Charging Cable,1,11.95,2019-07-13 06:50:00,432 1st St, Atlanta,GA,30301 +228829,Google Phone,1,600.0,2019-07-24 17:47:00,283 11th St, Boston,MA,02215 +228830,Google Phone,1,600.0,2019-07-23 19:52:00,344 Spruce St, San Francisco,CA,94016 +228831,Wired Headphones,2,11.99,2019-07-23 19:19:00,799 South St, New York City,NY,10001 +228832,34in Ultrawide Monitor,1,379.99,2019-07-25 08:55:00,664 Lakeview St, New York City,NY,10001 +228833,AA Batteries (4-pack),2,3.84,2019-07-12 18:32:00,654 Walnut St, Los Angeles,CA,90001 +228834,iPhone,1,700.0,2019-07-31 12:54:00,896 6th St, Atlanta,GA,30301 +228835,AA Batteries (4-pack),2,3.84,2019-07-24 20:03:00,962 9th St, Atlanta,GA,30301 +228836,AA Batteries (4-pack),1,3.84,2019-07-22 09:24:00,31 Washington St, Austin,TX,73301 +228837,Bose SoundSport Headphones,1,99.99,2019-07-06 13:11:00,378 Hickory St, Austin,TX,73301 +228838,AAA Batteries (4-pack),1,2.99,2019-07-27 19:33:00,515 Walnut St, Los Angeles,CA,90001 +228839,USB-C Charging Cable,1,11.95,2019-07-31 12:08:00,539 Meadow St, Atlanta,GA,30301 +228840,Lightning Charging Cable,1,14.95,2019-07-17 13:28:00,378 Maple St, Dallas,TX,75001 +228841,Apple Airpods Headphones,1,150.0,2019-07-12 18:55:00,524 Chestnut St, San Francisco,CA,94016 +228842,Apple Airpods Headphones,1,150.0,2019-07-02 12:38:00,18 13th St, Portland,OR,97035 +228843,Lightning Charging Cable,1,14.95,2019-07-10 17:30:00,236 14th St, Dallas,TX,75001 +228844,Wired Headphones,1,11.99,2019-07-22 10:30:00,806 Maple St, New York City,NY,10001 +228845,Flatscreen TV,1,300.0,2019-07-03 04:21:00,636 Forest St, New York City,NY,10001 +228846,Flatscreen TV,1,300.0,2019-07-21 12:35:00,515 Main St, Los Angeles,CA,90001 +228847,USB-C Charging Cable,1,11.95,2019-07-25 21:06:00,73 Highland St, San Francisco,CA,94016 +228848,27in FHD Monitor,1,149.99,2019-07-26 11:22:00,63 Cherry St, Los Angeles,CA,90001 +228849,Bose SoundSport Headphones,1,99.99,2019-07-15 22:56:00,544 6th St, Los Angeles,CA,90001 +228850,27in FHD Monitor,1,149.99,2019-07-01 14:55:00,510 Highland St, Seattle,WA,98101 +228851,AAA Batteries (4-pack),1,2.99,2019-07-11 21:45:00,163 Wilson St, San Francisco,CA,94016 +228851,Google Phone,1,600.0,2019-07-11 21:45:00,163 Wilson St, San Francisco,CA,94016 +228852,iPhone,1,700.0,2019-07-22 13:06:00,694 12th St, Los Angeles,CA,90001 +228853,AA Batteries (4-pack),2,3.84,2019-07-28 09:34:00,433 Hickory St, San Francisco,CA,94016 +228854,AA Batteries (4-pack),2,3.84,2019-07-17 19:39:00,257 Hill St, San Francisco,CA,94016 +228855,Apple Airpods Headphones,1,150.0,2019-07-15 12:47:00,715 4th St, Portland,OR,97035 +228856,Apple Airpods Headphones,1,150.0,2019-07-05 04:35:00,52 Adams St, Seattle,WA,98101 +228857,27in 4K Gaming Monitor,1,389.99,2019-07-04 15:41:00,541 Lake St, San Francisco,CA,94016 +228858,Lightning Charging Cable,1,14.95,2019-07-07 16:51:00,892 Dogwood St, Boston,MA,02215 +228859,Bose SoundSport Headphones,1,99.99,2019-07-31 07:31:00,869 12th St, San Francisco,CA,94016 +228860,AA Batteries (4-pack),2,3.84,2019-07-08 10:54:00,854 14th St, Seattle,WA,98101 +228861,Wired Headphones,1,11.99,2019-07-30 12:45:00,679 Hickory St, Los Angeles,CA,90001 +228862,Apple Airpods Headphones,1,150.0,2019-07-08 08:18:00,624 8th St, Austin,TX,73301 +228863,27in 4K Gaming Monitor,1,389.99,2019-07-06 20:27:00,320 11th St, Boston,MA,02215 +228864,AAA Batteries (4-pack),1,2.99,2019-07-13 10:46:00,322 14th St, Portland,OR,97035 +228865,AA Batteries (4-pack),1,3.84,2019-07-26 19:17:00,373 6th St, Atlanta,GA,30301 +228866,AAA Batteries (4-pack),1,2.99,2019-07-17 12:31:00,655 7th St, Dallas,TX,75001 +228867,Wired Headphones,1,11.99,2019-07-15 11:40:00,877 Hill St, San Francisco,CA,94016 +228868,iPhone,1,700.0,2019-07-07 03:38:00,141 Forest St, Austin,TX,73301 +228869,ThinkPad Laptop,1,999.99,2019-07-22 20:29:00,901 10th St, Boston,MA,02215 +228870,AA Batteries (4-pack),3,3.84,2019-07-04 11:12:00,150 14th St, Atlanta,GA,30301 +228871,USB-C Charging Cable,1,11.95,2019-07-01 16:21:00,820 14th St, San Francisco,CA,94016 +228872,AAA Batteries (4-pack),3,2.99,2019-07-15 12:36:00,706 8th St, Austin,TX,73301 +228873,Bose SoundSport Headphones,1,99.99,2019-07-12 18:54:00,4 6th St, San Francisco,CA,94016 +228874,USB-C Charging Cable,1,11.95,2019-07-01 19:00:00,940 Walnut St, New York City,NY,10001 +228875,AAA Batteries (4-pack),2,2.99,2019-07-27 16:14:00,29 Jackson St, New York City,NY,10001 +228876,Wired Headphones,1,11.99,2019-07-21 19:56:00,332 Park St, Seattle,WA,98101 +228877,Wired Headphones,1,11.99,2019-07-20 11:34:00,60 Wilson St, Seattle,WA,98101 +228878,Lightning Charging Cable,1,14.95,2019-07-20 18:56:00,446 Lakeview St, San Francisco,CA,94016 +228879,Lightning Charging Cable,1,14.95,2019-07-06 20:23:00,788 Jefferson St, Austin,TX,73301 +228880,Wired Headphones,1,11.99,2019-07-21 23:00:00,940 Chestnut St, New York City,NY,10001 +228881,Lightning Charging Cable,1,14.95,2019-07-26 20:24:00,411 Willow St, Boston,MA,02215 +228882,Wired Headphones,1,11.99,2019-07-09 09:55:00,19 Jackson St, Seattle,WA,98101 +228883,AAA Batteries (4-pack),2,2.99,2019-07-12 14:33:00,430 10th St, New York City,NY,10001 +228884,Lightning Charging Cable,1,14.95,2019-07-24 13:22:00,20 Hickory St, San Francisco,CA,94016 +228885,USB-C Charging Cable,1,11.95,2019-07-25 15:58:00,858 Center St, Los Angeles,CA,90001 +228886,Wired Headphones,1,11.99,2019-07-04 09:56:00,885 11th St, Atlanta,GA,30301 +228887,Lightning Charging Cable,1,14.95,2019-07-21 14:26:00,992 Pine St, San Francisco,CA,94016 +228888,USB-C Charging Cable,1,11.95,2019-07-12 15:59:00,785 Hickory St, New York City,NY,10001 +228889,Bose SoundSport Headphones,1,99.99,2019-07-05 13:21:00,82 5th St, Atlanta,GA,30301 +228890,Apple Airpods Headphones,1,150.0,2019-07-27 14:38:00,375 Lincoln St, Atlanta,GA,30301 +228891,27in 4K Gaming Monitor,1,389.99,2019-07-05 17:09:00,945 13th St, San Francisco,CA,94016 +228892,Lightning Charging Cable,1,14.95,2019-07-07 14:23:00,483 Cherry St, Portland,OR,97035 +228893,20in Monitor,2,109.99,2019-07-11 16:01:00,836 Wilson St, Seattle,WA,98101 +228894,USB-C Charging Cable,1,11.95,2019-07-08 21:18:00,316 5th St, San Francisco,CA,94016 +228895,Lightning Charging Cable,1,14.95,2019-07-28 10:22:00,497 Johnson St, San Francisco,CA,94016 +228896,USB-C Charging Cable,1,11.95,2019-07-13 18:48:00,605 Walnut St, Los Angeles,CA,90001 +228897,iPhone,1,700.0,2019-07-20 22:01:00,173 Pine St, Dallas,TX,75001 +228898,Lightning Charging Cable,1,14.95,2019-07-17 11:27:00,459 Jackson St, San Francisco,CA,94016 +228899,AA Batteries (4-pack),1,3.84,2019-07-05 10:50:00,278 Meadow St, San Francisco,CA,94016 +228900,Lightning Charging Cable,1,14.95,2019-07-11 17:34:00,989 Church St, San Francisco,CA,94016 +228901,34in Ultrawide Monitor,1,379.99,2019-07-31 21:05:00,142 5th St, New York City,NY,10001 +228902,AA Batteries (4-pack),1,3.84,2019-07-16 15:28:00,866 Center St, Boston,MA,02215 +228903,Apple Airpods Headphones,1,150.0,2019-07-23 21:54:00,358 South St, Dallas,TX,75001 +228904,AAA Batteries (4-pack),2,2.99,2019-07-05 18:03:00,870 South St, Seattle,WA,98101 +228905,USB-C Charging Cable,1,11.95,2019-07-13 13:00:00,128 5th St, Los Angeles,CA,90001 +228906,ThinkPad Laptop,1,999.99,2019-07-24 23:10:00,843 West St, Portland,OR,97035 +228907,USB-C Charging Cable,1,11.95,2019-07-31 19:57:00,498 Cedar St, San Francisco,CA,94016 +228908,USB-C Charging Cable,1,11.95,2019-07-02 18:42:00,527 Park St, Portland,OR,97035 +228909,Lightning Charging Cable,1,14.95,2019-07-04 22:12:00,852 4th St, San Francisco,CA,94016 +228910,34in Ultrawide Monitor,1,379.99,2019-07-04 00:56:00,858 14th St, Dallas,TX,75001 +228911,iPhone,1,700.0,2019-07-18 19:20:00,551 Walnut St, Boston,MA,02215 +228912,AAA Batteries (4-pack),1,2.99,2019-07-19 13:43:00,49 Cedar St, Boston,MA,02215 +228913,27in 4K Gaming Monitor,1,389.99,2019-07-15 10:54:00,956 Pine St, Boston,MA,02215 +228914,Flatscreen TV,1,300.0,2019-07-27 11:13:00,233 Walnut St, Portland,OR,97035 +228915,AA Batteries (4-pack),1,3.84,2019-07-15 20:16:00,720 Ridge St, Portland,ME,04101 +228916,iPhone,1,700.0,2019-07-10 20:44:00,397 13th St, Dallas,TX,75001 +228917,USB-C Charging Cable,1,11.95,2019-07-31 10:10:00,727 North St, New York City,NY,10001 +228918,Wired Headphones,1,11.99,2019-07-31 16:48:00,270 6th St, San Francisco,CA,94016 +228919,AAA Batteries (4-pack),1,2.99,2019-07-02 21:23:00,670 14th St, San Francisco,CA,94016 +228920,AA Batteries (4-pack),3,3.84,2019-07-27 20:39:00,593 Chestnut St, New York City,NY,10001 +228921,iPhone,1,700.0,2019-07-06 20:12:00,979 12th St, San Francisco,CA,94016 +228922,Vareebadd Phone,1,400.0,2019-07-05 14:41:00,699 Washington St, San Francisco,CA,94016 +228923,Apple Airpods Headphones,1,150.0,2019-07-21 13:57:00,140 9th St, New York City,NY,10001 +228924,Lightning Charging Cable,1,14.95,2019-07-09 16:31:00,603 7th St, Austin,TX,73301 +228925,Lightning Charging Cable,1,14.95,2019-07-19 16:05:00,139 Meadow St, Atlanta,GA,30301 +228926,USB-C Charging Cable,1,11.95,2019-07-24 09:47:00,277 Ridge St, San Francisco,CA,94016 +228927,Bose SoundSport Headphones,1,99.99,2019-07-28 11:59:00,657 Jefferson St, New York City,NY,10001 +228928,Wired Headphones,1,11.99,2019-07-23 11:13:00,487 6th St, San Francisco,CA,94016 +228929,20in Monitor,1,109.99,2019-07-14 12:41:00,226 Cherry St, Seattle,WA,98101 +228930,Wired Headphones,1,11.99,2019-07-28 13:39:00,604 Jackson St, Dallas,TX,75001 +228931,Bose SoundSport Headphones,1,99.99,2019-07-10 18:05:00,390 4th St, New York City,NY,10001 +228932,USB-C Charging Cable,2,11.95,2019-07-05 11:24:00,121 Chestnut St, San Francisco,CA,94016 +228933,Bose SoundSport Headphones,1,99.99,2019-07-25 19:37:00,295 4th St, San Francisco,CA,94016 +228934,27in FHD Monitor,1,149.99,2019-07-09 18:44:00,711 Cherry St, San Francisco,CA,94016 +228935,Lightning Charging Cable,1,14.95,2019-07-23 16:39:00,583 Johnson St, Boston,MA,02215 +228936,Wired Headphones,1,11.99,2019-07-30 10:26:00,562 South St, San Francisco,CA,94016 +228937,27in 4K Gaming Monitor,1,389.99,2019-07-12 22:14:00,269 Maple St, Los Angeles,CA,90001 +228938,AAA Batteries (4-pack),2,2.99,2019-07-31 18:02:00,756 Lake St, Dallas,TX,75001 +228939,Vareebadd Phone,1,400.0,2019-07-28 23:30:00,898 Johnson St, Dallas,TX,75001 +228939,Bose SoundSport Headphones,1,99.99,2019-07-28 23:30:00,898 Johnson St, Dallas,TX,75001 +228940,Apple Airpods Headphones,1,150.0,2019-07-26 14:00:00,862 Main St, Los Angeles,CA,90001 +228941,USB-C Charging Cable,1,11.95,2019-07-16 16:23:00,929 Center St, San Francisco,CA,94016 +228942,Lightning Charging Cable,1,14.95,2019-07-26 11:09:00,49 Lake St, Los Angeles,CA,90001 +228943,27in FHD Monitor,1,149.99,2019-07-21 15:04:00,19 11th St, Seattle,WA,98101 +228944,AAA Batteries (4-pack),3,2.99,2019-07-19 13:51:00,88 12th St, San Francisco,CA,94016 +228945,AAA Batteries (4-pack),1,2.99,2019-07-25 13:16:00,545 Jackson St, Boston,MA,02215 +228946,27in FHD Monitor,1,149.99,2019-07-24 10:00:00,185 4th St, New York City,NY,10001 +228947,AA Batteries (4-pack),1,3.84,2019-07-03 07:49:00,817 West St, Austin,TX,73301 +228948,27in FHD Monitor,1,149.99,2019-07-03 07:01:00,919 Wilson St, New York City,NY,10001 +228949,USB-C Charging Cable,1,11.95,2019-07-16 20:52:00,91 Adams St, Austin,TX,73301 +228950,Lightning Charging Cable,1,14.95,2019-07-03 16:36:00,173 South St, Portland,OR,97035 +228951,AA Batteries (4-pack),1,3.84,2019-07-29 17:48:00,444 West St, Los Angeles,CA,90001 +228952,27in 4K Gaming Monitor,1,389.99,2019-07-05 20:53:00,77 Pine St, Seattle,WA,98101 +228953,Lightning Charging Cable,1,14.95,2019-07-01 19:27:00,884 Dogwood St, San Francisco,CA,94016 +228954,AAA Batteries (4-pack),1,2.99,2019-07-17 06:08:00,615 Pine St, Los Angeles,CA,90001 +228955,34in Ultrawide Monitor,1,379.99,2019-07-23 21:42:00,294 Johnson St, Seattle,WA,98101 +228956,Bose SoundSport Headphones,1,99.99,2019-07-29 17:27:00,944 River St, Los Angeles,CA,90001 +228957,AA Batteries (4-pack),1,3.84,2019-07-27 09:27:00,736 6th St, New York City,NY,10001 +228958,AA Batteries (4-pack),1,3.84,2019-07-10 15:06:00,246 Jefferson St, Los Angeles,CA,90001 +228959,27in 4K Gaming Monitor,1,389.99,2019-07-15 17:14:00,954 West St, Boston,MA,02215 +228960,Lightning Charging Cable,1,14.95,2019-07-10 23:17:00,421 Chestnut St, New York City,NY,10001 +228961,Bose SoundSport Headphones,1,99.99,2019-07-26 21:05:00,184 Meadow St, New York City,NY,10001 +228962,Lightning Charging Cable,1,14.95,2019-07-11 20:45:00,268 Cedar St, New York City,NY,10001 +228963,AAA Batteries (4-pack),3,2.99,2019-07-07 18:13:00,843 Sunset St, San Francisco,CA,94016 +228964,34in Ultrawide Monitor,1,379.99,2019-07-13 15:49:00,136 13th St, San Francisco,CA,94016 +228965,Wired Headphones,1,11.99,2019-07-05 20:08:00,491 11th St, Dallas,TX,75001 +228966,USB-C Charging Cable,1,11.95,2019-07-26 11:42:00,320 Jackson St, Atlanta,GA,30301 +228967,27in 4K Gaming Monitor,1,389.99,2019-07-27 12:42:00,401 Lake St, San Francisco,CA,94016 +228968,27in FHD Monitor,1,149.99,2019-07-09 00:21:00,896 4th St, Austin,TX,73301 +228969,Lightning Charging Cable,1,14.95,2019-07-21 14:13:00,180 9th St, Seattle,WA,98101 +228970,Lightning Charging Cable,1,14.95,2019-07-26 14:10:00,954 Lake St, San Francisco,CA,94016 +228971,34in Ultrawide Monitor,1,379.99,2019-07-10 21:17:00,145 Cherry St, San Francisco,CA,94016 +228972,iPhone,1,700.0,2019-07-08 15:18:00,397 6th St, Los Angeles,CA,90001 +228973,27in 4K Gaming Monitor,1,389.99,2019-07-12 15:52:00,641 South St, Boston,MA,02215 +228974,Apple Airpods Headphones,1,150.0,2019-07-01 06:52:00,755 Highland St, Los Angeles,CA,90001 +228975,Bose SoundSport Headphones,1,99.99,2019-07-18 11:29:00,963 South St, San Francisco,CA,94016 +228976,Wired Headphones,1,11.99,2019-07-03 20:49:00,101 Cedar St, New York City,NY,10001 +228977,iPhone,1,700.0,2019-07-10 19:49:00,518 River St, Portland,OR,97035 +228978,Wired Headphones,1,11.99,2019-07-19 02:48:00,827 Jackson St, Los Angeles,CA,90001 +228979,Wired Headphones,1,11.99,2019-07-02 21:39:00,45 Jefferson St, San Francisco,CA,94016 +228980,AA Batteries (4-pack),1,3.84,2019-07-18 17:40:00,918 12th St, Boston,MA,02215 +228980,Lightning Charging Cable,1,14.95,2019-07-18 17:40:00,918 12th St, Boston,MA,02215 +228981,Apple Airpods Headphones,1,150.0,2019-07-18 16:35:00,736 Church St, New York City,NY,10001 +228982,Google Phone,1,600.0,2019-07-28 11:47:00,735 4th St, Portland,OR,97035 +228983,Lightning Charging Cable,1,14.95,2019-07-13 11:02:00,319 Walnut St, Boston,MA,02215 +228984,USB-C Charging Cable,1,11.95,2019-07-21 22:22:00,526 7th St, Los Angeles,CA,90001 +228985,Wired Headphones,1,11.99,2019-07-05 17:39:00,912 7th St, Austin,TX,73301 +228986,AA Batteries (4-pack),2,3.84,2019-07-31 10:32:00,706 5th St, Los Angeles,CA,90001 +228987,LG Washing Machine,1,600.0,2019-07-29 10:31:00,60 South St, Los Angeles,CA,90001 +228988,Lightning Charging Cable,1,14.95,2019-07-03 18:55:00,719 7th St, Dallas,TX,75001 +228989,Lightning Charging Cable,1,14.95,2019-07-17 20:04:00,130 11th St, Austin,TX,73301 +228990,Wired Headphones,1,11.99,2019-07-28 11:10:00,293 Madison St, Los Angeles,CA,90001 +228991,USB-C Charging Cable,1,11.95,2019-07-08 09:08:00,565 13th St, Los Angeles,CA,90001 +228992,Wired Headphones,1,11.99,2019-07-10 22:17:00,92 Spruce St, Portland,OR,97035 +228993,AAA Batteries (4-pack),3,2.99,2019-07-22 20:12:00,251 South St, Atlanta,GA,30301 +228994,34in Ultrawide Monitor,1,379.99,2019-07-12 19:42:00,709 14th St, Boston,MA,02215 +228995,Lightning Charging Cable,1,14.95,2019-07-08 13:28:00,923 Walnut St, Portland,ME,04101 +228996,Wired Headphones,1,11.99,2019-07-20 22:15:00,501 Ridge St, New York City,NY,10001 +228997,AAA Batteries (4-pack),3,2.99,2019-07-01 17:09:00,835 Madison St, New York City,NY,10001 +228998,Bose SoundSport Headphones,1,99.99,2019-07-31 08:31:00,337 River St, Seattle,WA,98101 +228999,Wired Headphones,1,11.99,2019-07-02 13:29:00,33 Wilson St, New York City,NY,10001 +229000,Lightning Charging Cable,1,14.95,2019-07-20 10:20:00,994 7th St, Dallas,TX,75001 +229001,Wired Headphones,1,11.99,2019-07-12 13:57:00,754 6th St, Boston,MA,02215 +229002,Vareebadd Phone,1,400.0,2019-07-09 11:51:00,414 Hill St, Los Angeles,CA,90001 +229003,Lightning Charging Cable,1,14.95,2019-07-09 06:17:00,610 South St, Boston,MA,02215 +229004,Apple Airpods Headphones,1,150.0,2019-07-16 11:12:00,790 Highland St, San Francisco,CA,94016 +229005,Lightning Charging Cable,1,14.95,2019-07-24 18:43:00,498 River St, San Francisco,CA,94016 +229006,34in Ultrawide Monitor,1,379.99,2019-07-04 06:48:00,311 7th St, Seattle,WA,98101 +229007,USB-C Charging Cable,1,11.95,2019-07-20 15:09:00,523 River St, Austin,TX,73301 +229008,AA Batteries (4-pack),1,3.84,2019-07-27 10:27:00,251 12th St, Dallas,TX,75001 +229009,Bose SoundSport Headphones,1,99.99,2019-07-02 20:10:00,884 4th St, Los Angeles,CA,90001 +229010,Lightning Charging Cable,1,14.95,2019-07-07 18:20:00,826 Walnut St, Los Angeles,CA,90001 +229011,Apple Airpods Headphones,1,150.0,2019-07-09 21:52:00,325 14th St, Seattle,WA,98101 +229012,AAA Batteries (4-pack),1,2.99,2019-07-03 12:13:00,18 Park St, Los Angeles,CA,90001 +229013,USB-C Charging Cable,1,11.95,2019-07-01 18:06:00,794 Cherry St, Atlanta,GA,30301 +229014,Lightning Charging Cable,1,14.95,2019-07-07 03:57:00,154 Jackson St, Portland,OR,97035 +229015,Bose SoundSport Headphones,1,99.99,2019-07-09 19:57:00,875 Dogwood St, Los Angeles,CA,90001 +229016,Wired Headphones,1,11.99,2019-07-10 13:38:00,432 Center St, San Francisco,CA,94016 +229017,Wired Headphones,3,11.99,2019-07-09 17:49:00,751 Chestnut St, San Francisco,CA,94016 +229018,Apple Airpods Headphones,1,150.0,2019-07-12 20:55:00,481 Walnut St, Seattle,WA,98101 +229019,AA Batteries (4-pack),1,3.84,2019-07-05 12:02:00,438 Cherry St, San Francisco,CA,94016 +229020,Apple Airpods Headphones,1,150.0,2019-07-08 09:36:00,899 Highland St, Dallas,TX,75001 +229020,Bose SoundSport Headphones,1,99.99,2019-07-08 09:36:00,899 Highland St, Dallas,TX,75001 +229021,34in Ultrawide Monitor,1,379.99,2019-07-28 18:40:00,863 Jefferson St, Seattle,WA,98101 +229022,Lightning Charging Cable,1,14.95,2019-07-16 22:03:00,755 Lincoln St, Boston,MA,02215 +229023,USB-C Charging Cable,1,11.95,2019-07-11 18:16:00,13 Wilson St, Los Angeles,CA,90001 +229024,USB-C Charging Cable,1,11.95,2019-07-26 22:12:00,825 1st St, New York City,NY,10001 +229025,Apple Airpods Headphones,1,150.0,2019-07-28 12:04:00,706 North St, Los Angeles,CA,90001 +229026,AA Batteries (4-pack),2,3.84,2019-07-29 08:03:00,396 Meadow St, San Francisco,CA,94016 +229027,AAA Batteries (4-pack),1,2.99,2019-07-10 11:43:00,164 Sunset St, Boston,MA,02215 +229028,AAA Batteries (4-pack),1,2.99,2019-07-16 18:19:00,475 Cedar St, Atlanta,GA,30301 +229029,AA Batteries (4-pack),2,3.84,2019-07-20 21:27:00,892 Chestnut St, Portland,OR,97035 +229030,USB-C Charging Cable,1,11.95,2019-07-01 19:09:00,632 2nd St, New York City,NY,10001 +229031,Lightning Charging Cable,1,14.95,2019-07-04 18:22:00,434 Hill St, San Francisco,CA,94016 +229032,ThinkPad Laptop,1,999.99,2019-07-12 16:16:00,546 Elm St, San Francisco,CA,94016 +229033,AA Batteries (4-pack),1,3.84,2019-07-12 11:41:00,517 8th St, Atlanta,GA,30301 +229034,Bose SoundSport Headphones,1,99.99,2019-07-10 20:22:00,79 2nd St, San Francisco,CA,94016 +229035,iPhone,1,700.0,2019-07-03 12:13:00,333 Main St, Austin,TX,73301 +229036,AA Batteries (4-pack),1,3.84,2019-07-13 12:26:00,855 6th St, Dallas,TX,75001 +229037,Flatscreen TV,1,300.0,2019-07-07 12:01:00,363 Ridge St, Austin,TX,73301 +229038,USB-C Charging Cable,1,11.95,2019-07-07 19:53:00,536 Lincoln St, Boston,MA,02215 +229039,USB-C Charging Cable,2,11.95,2019-07-23 11:17:00,454 Meadow St, Boston,MA,02215 +229040,AAA Batteries (4-pack),1,2.99,2019-07-04 12:40:00,158 Cedar St, Boston,MA,02215 +229041,USB-C Charging Cable,1,11.95,2019-07-25 15:35:00,911 Lakeview St, New York City,NY,10001 +229042,Apple Airpods Headphones,1,150.0,2019-07-27 21:18:00,31 Sunset St, San Francisco,CA,94016 +229043,20in Monitor,1,109.99,2019-07-18 16:14:00,73 Willow St, New York City,NY,10001 +229044,Apple Airpods Headphones,1,150.0,2019-07-03 22:59:00,705 2nd St, Austin,TX,73301 +229045,AAA Batteries (4-pack),1,2.99,2019-07-30 18:44:00,507 Lake St, New York City,NY,10001 +229046,Google Phone,1,600.0,2019-07-07 01:09:00,663 2nd St, New York City,NY,10001 +229046,Bose SoundSport Headphones,1,99.99,2019-07-07 01:09:00,663 2nd St, New York City,NY,10001 +229047,AAA Batteries (4-pack),3,2.99,2019-07-10 13:04:00,393 West St, San Francisco,CA,94016 +229048,Wired Headphones,1,11.99,2019-07-09 21:07:00,519 8th St, New York City,NY,10001 +229049,Lightning Charging Cable,1,14.95,2019-07-25 21:30:00,91 Ridge St, Dallas,TX,75001 +229050,Bose SoundSport Headphones,1,99.99,2019-07-02 17:48:00,718 Walnut St, San Francisco,CA,94016 +229051,USB-C Charging Cable,1,11.95,2019-07-20 12:33:00,883 South St, Boston,MA,02215 +229052,Bose SoundSport Headphones,1,99.99,2019-07-17 11:54:00,534 West St, San Francisco,CA,94016 +229053,Lightning Charging Cable,1,14.95,2019-07-07 15:12:00,235 1st St, San Francisco,CA,94016 +229054,AAA Batteries (4-pack),4,2.99,2019-07-10 02:58:00,386 Highland St, San Francisco,CA,94016 +229055,Google Phone,1,600.0,2019-07-31 10:26:00,804 Highland St, Los Angeles,CA,90001 +229056,USB-C Charging Cable,1,11.95,2019-07-11 09:20:00,11 Jefferson St, Dallas,TX,75001 +229057,Wired Headphones,1,11.99,2019-07-26 13:36:00,526 Church St, San Francisco,CA,94016 +229058,34in Ultrawide Monitor,1,379.99,2019-07-28 13:05:00,810 Hill St, San Francisco,CA,94016 +229059,AA Batteries (4-pack),1,3.84,2019-07-24 10:40:00,863 Lake St, New York City,NY,10001 +229060,USB-C Charging Cable,1,11.95,2019-07-15 12:30:00,655 6th St, Seattle,WA,98101 +229061,Lightning Charging Cable,1,14.95,2019-07-05 08:44:00,583 12th St, San Francisco,CA,94016 +229062,iPhone,1,700.0,2019-07-24 15:06:00,737 Jackson St, San Francisco,CA,94016 +229063,Google Phone,1,600.0,2019-07-19 20:21:00,19 Maple St, New York City,NY,10001 +229063,USB-C Charging Cable,1,11.95,2019-07-19 20:21:00,19 Maple St, New York City,NY,10001 +229063,Wired Headphones,1,11.99,2019-07-19 20:21:00,19 Maple St, New York City,NY,10001 +229064,27in FHD Monitor,1,149.99,2019-07-01 16:47:00,44 Spruce St, Los Angeles,CA,90001 +229065,Wired Headphones,1,11.99,2019-07-06 17:45:00,352 Lake St, New York City,NY,10001 +229066,AA Batteries (4-pack),1,3.84,2019-07-04 15:24:00,133 5th St, San Francisco,CA,94016 +229067,AAA Batteries (4-pack),1,2.99,2019-07-25 13:38:00,443 9th St, New York City,NY,10001 +229068,AA Batteries (4-pack),1,3.84,2019-07-02 17:44:00,723 Willow St, San Francisco,CA,94016 +229069,AA Batteries (4-pack),1,3.84,2019-07-20 10:59:00,799 Ridge St, Atlanta,GA,30301 +229070,AA Batteries (4-pack),1,3.84,2019-07-12 13:24:00,111 Cedar St, Austin,TX,73301 +229071,Lightning Charging Cable,1,14.95,2019-07-24 14:16:00,875 Park St, San Francisco,CA,94016 +229072,Wired Headphones,1,11.99,2019-07-23 20:33:00,311 Maple St, Austin,TX,73301 +229073,27in FHD Monitor,1,149.99,2019-07-22 19:14:00,839 6th St, Boston,MA,02215 +229074,AAA Batteries (4-pack),1,2.99,2019-07-23 16:20:00,673 8th St, New York City,NY,10001 +229075,Google Phone,1,600.0,2019-07-23 18:00:00,809 Adams St, San Francisco,CA,94016 +229076,iPhone,1,700.0,2019-07-22 23:11:00,345 12th St, Dallas,TX,75001 +229076,Lightning Charging Cable,1,14.95,2019-07-22 23:11:00,345 12th St, Dallas,TX,75001 +229077,Lightning Charging Cable,1,14.95,2019-07-26 07:33:00,592 10th St, New York City,NY,10001 +229078,AAA Batteries (4-pack),2,2.99,2019-07-14 11:16:00,848 Chestnut St, Los Angeles,CA,90001 +229079,iPhone,1,700.0,2019-07-13 17:59:00,290 Walnut St, San Francisco,CA,94016 +229080,Wired Headphones,1,11.99,2019-07-12 22:22:00,759 Willow St, Seattle,WA,98101 +229081,Lightning Charging Cable,1,14.95,2019-07-27 22:59:00,757 Willow St, San Francisco,CA,94016 +229082,iPhone,1,700.0,2019-07-02 01:15:00,431 14th St, New York City,NY,10001 +229083,Bose SoundSport Headphones,1,99.99,2019-07-11 17:45:00,32 Cedar St, Dallas,TX,75001 +229084,Vareebadd Phone,1,400.0,2019-07-04 15:55:00,407 Washington St, Atlanta,GA,30301 +229085,USB-C Charging Cable,1,11.95,2019-07-11 20:07:00,590 Hickory St, Los Angeles,CA,90001 +229086,Bose SoundSport Headphones,1,99.99,2019-07-02 21:09:00,294 Highland St, Atlanta,GA,30301 +229087,AAA Batteries (4-pack),1,2.99,2019-07-27 14:30:00,406 Hickory St, Seattle,WA,98101 +229088,Lightning Charging Cable,2,14.95,2019-07-25 17:29:00,136 4th St, Seattle,WA,98101 +229089,USB-C Charging Cable,1,11.95,2019-07-17 17:11:00,267 Hickory St, Seattle,WA,98101 +229090,27in 4K Gaming Monitor,1,389.99,2019-07-18 21:12:00,56 Forest St, New York City,NY,10001 +229091,Wired Headphones,1,11.99,2019-07-21 21:43:00,383 12th St, Seattle,WA,98101 +229092,Lightning Charging Cable,1,14.95,2019-07-13 08:52:00,128 Dogwood St, New York City,NY,10001 +229093,iPhone,1,700.0,2019-07-04 14:14:00,81 Dogwood St, San Francisco,CA,94016 +229094,AA Batteries (4-pack),1,3.84,2019-07-24 19:54:00,923 Highland St, Los Angeles,CA,90001 +229095,iPhone,1,700.0,2019-07-24 14:27:00,270 Spruce St, New York City,NY,10001 +229095,Wired Headphones,1,11.99,2019-07-24 14:27:00,270 Spruce St, New York City,NY,10001 +229096,Apple Airpods Headphones,1,150.0,2019-07-13 23:01:00,115 Highland St, Dallas,TX,75001 +229097,Google Phone,1,600.0,2019-07-28 23:17:00,728 12th St, Atlanta,GA,30301 +229097,USB-C Charging Cable,1,11.95,2019-07-28 23:17:00,728 12th St, Atlanta,GA,30301 +229098,USB-C Charging Cable,1,11.95,2019-07-01 09:34:00,532 Willow St, New York City,NY,10001 +229099,20in Monitor,1,109.99,2019-07-01 14:59:00,487 Maple St, Dallas,TX,75001 +229100,34in Ultrawide Monitor,1,379.99,2019-07-12 20:43:00,204 Meadow St, New York City,NY,10001 +229101,Lightning Charging Cable,1,14.95,2019-07-03 09:06:00,153 Highland St, San Francisco,CA,94016 +229102,Apple Airpods Headphones,1,150.0,2019-07-15 08:06:00,881 Park St, New York City,NY,10001 +229103,USB-C Charging Cable,1,11.95,2019-07-17 08:28:00,488 Adams St, Los Angeles,CA,90001 +229104,Lightning Charging Cable,1,14.95,2019-07-06 17:31:00,412 2nd St, San Francisco,CA,94016 +229105,AAA Batteries (4-pack),1,2.99,2019-07-25 11:05:00,876 13th St, Portland,ME,04101 +229106,Lightning Charging Cable,1,14.95,2019-07-13 12:57:00,801 Church St, San Francisco,CA,94016 +229107,AA Batteries (4-pack),1,3.84,2019-07-23 09:26:00,829 Lincoln St, Seattle,WA,98101 +229108,Macbook Pro Laptop,1,1700.0,2019-07-15 19:15:00,191 Park St, Dallas,TX,75001 +229109,USB-C Charging Cable,1,11.95,2019-07-18 14:55:00,908 9th St, Atlanta,GA,30301 +229110,AAA Batteries (4-pack),1,2.99,2019-07-18 18:27:00,845 Ridge St, Austin,TX,73301 +229111,Lightning Charging Cable,1,14.95,2019-07-01 08:17:00,777 Madison St, Los Angeles,CA,90001 +229111,Bose SoundSport Headphones,1,99.99,2019-07-01 08:17:00,777 Madison St, Los Angeles,CA,90001 +229112,Flatscreen TV,1,300.0,2019-07-14 18:31:00,177 Sunset St, Boston,MA,02215 +229113,Bose SoundSport Headphones,1,99.99,2019-07-01 11:39:00,808 10th St, New York City,NY,10001 +229114,Bose SoundSport Headphones,1,99.99,2019-07-06 11:21:00,944 7th St, Dallas,TX,75001 +229115,Lightning Charging Cable,1,14.95,2019-07-27 19:59:00,491 Washington St, Los Angeles,CA,90001 +229116,Wired Headphones,1,11.99,2019-07-22 19:02:00,251 Cedar St, Boston,MA,02215 +229117,Wired Headphones,1,11.99,2019-07-15 21:33:00,925 Spruce St, Los Angeles,CA,90001 +229118,Wired Headphones,2,11.99,2019-07-15 19:59:00,345 Johnson St, Austin,TX,73301 +229119,Apple Airpods Headphones,1,150.0,2019-07-06 10:28:00,99 Lake St, Seattle,WA,98101 +229120,iPhone,1,700.0,2019-07-26 19:35:00,776 Highland St, Seattle,WA,98101 +229121,AA Batteries (4-pack),1,3.84,2019-07-07 07:10:00,634 13th St, Los Angeles,CA,90001 +229122,AA Batteries (4-pack),5,3.84,2019-07-26 21:04:00,298 Ridge St, Dallas,TX,75001 +229123,Google Phone,1,600.0,2019-07-08 09:56:00,28 Jackson St, San Francisco,CA,94016 +229124,27in FHD Monitor,1,149.99,2019-07-18 22:27:00,91 Meadow St, Portland,ME,04101 +229125,AAA Batteries (4-pack),2,2.99,2019-07-12 15:56:00,595 Maple St, San Francisco,CA,94016 +229126,AAA Batteries (4-pack),1,2.99,2019-07-25 09:09:00,499 Lake St, Portland,OR,97035 +229127,Vareebadd Phone,1,400.0,2019-07-15 07:49:00,608 Cedar St, Boston,MA,02215 +229128,AAA Batteries (4-pack),2,2.99,2019-07-09 16:45:00,33 9th St, Los Angeles,CA,90001 +229129,USB-C Charging Cable,1,11.95,2019-07-15 18:37:00,409 9th St, Los Angeles,CA,90001 +229130,Lightning Charging Cable,1,14.95,2019-07-03 01:53:00,245 Main St, Atlanta,GA,30301 +229131,USB-C Charging Cable,1,11.95,2019-07-10 15:05:00,851 4th St, Portland,OR,97035 +229132,27in 4K Gaming Monitor,1,389.99,2019-07-13 23:20:00,969 Washington St, New York City,NY,10001 +229133,27in 4K Gaming Monitor,1,389.99,2019-07-14 21:11:00,346 West St, New York City,NY,10001 +229134,Wired Headphones,1,11.99,2019-07-22 15:16:00,810 Willow St, Seattle,WA,98101 +229135,LG Washing Machine,1,600.0,2019-07-05 08:28:00,388 Highland St, Seattle,WA,98101 +229136,27in 4K Gaming Monitor,1,389.99,2019-07-28 13:59:00,173 Jefferson St, Portland,OR,97035 +229137,27in FHD Monitor,1,149.99,2019-07-08 11:58:00,3 Cedar St, San Francisco,CA,94016 +229138,Apple Airpods Headphones,1,150.0,2019-07-14 20:28:00,162 9th St, New York City,NY,10001 +229139,Bose SoundSport Headphones,1,99.99,2019-07-28 23:10:00,533 Lakeview St, San Francisco,CA,94016 +229140,Apple Airpods Headphones,1,150.0,2019-07-25 10:10:00,110 Johnson St, San Francisco,CA,94016 +229141,AAA Batteries (4-pack),1,2.99,2019-07-24 07:43:00,774 Spruce St, San Francisco,CA,94016 +229142,Apple Airpods Headphones,1,150.0,2019-07-13 14:25:00,72 South St, Seattle,WA,98101 +229143,AA Batteries (4-pack),2,3.84,2019-07-11 20:21:00,251 South St, Los Angeles,CA,90001 +229144,USB-C Charging Cable,1,11.95,2019-07-22 21:58:00,840 Center St, Seattle,WA,98101 +229145,AA Batteries (4-pack),1,3.84,2019-07-22 09:17:00,247 Adams St, Los Angeles,CA,90001 +229146,Vareebadd Phone,1,400.0,2019-07-14 07:15:00,364 Meadow St, New York City,NY,10001 +229147,USB-C Charging Cable,1,11.95,2019-07-29 16:34:00,455 9th St, Los Angeles,CA,90001 +229148,ThinkPad Laptop,1,999.99,2019-07-12 02:17:00,876 Maple St, Los Angeles,CA,90001 +229149,USB-C Charging Cable,1,11.95,2019-07-09 16:49:00,76 14th St, Los Angeles,CA,90001 +229150,Bose SoundSport Headphones,1,99.99,2019-07-09 13:02:00,17 Forest St, New York City,NY,10001 +229151,27in 4K Gaming Monitor,1,389.99,2019-07-20 19:49:00,657 Park St, Dallas,TX,75001 +229152,Lightning Charging Cable,1,14.95,2019-07-30 17:55:00,614 Lake St, Boston,MA,02215 +229153,ThinkPad Laptop,1,999.99,2019-07-09 11:35:00,150 4th St, Los Angeles,CA,90001 +229154,AAA Batteries (4-pack),1,2.99,2019-07-19 21:18:00,133 Dogwood St, San Francisco,CA,94016 +229155,USB-C Charging Cable,1,11.95,2019-07-29 12:45:00,798 14th St, San Francisco,CA,94016 +229156,Apple Airpods Headphones,1,150.0,2019-07-02 16:08:00,760 11th St, San Francisco,CA,94016 +229157,AAA Batteries (4-pack),2,2.99,2019-07-17 21:12:00,204 Walnut St, New York City,NY,10001 +229158,AA Batteries (4-pack),1,3.84,2019-07-15 14:59:00,314 Chestnut St, Dallas,TX,75001 +229159,Lightning Charging Cable,1,14.95,2019-07-11 17:48:00,889 Meadow St, Los Angeles,CA,90001 +229160,Bose SoundSport Headphones,1,99.99,2019-07-08 18:41:00,358 Wilson St, Portland,OR,97035 +229161,USB-C Charging Cable,1,11.95,2019-07-09 21:12:00,869 Ridge St, Portland,OR,97035 +229162,Macbook Pro Laptop,1,1700.0,2019-07-27 16:20:00,623 5th St, Atlanta,GA,30301 +229163,AAA Batteries (4-pack),2,2.99,2019-07-23 15:27:00,268 14th St, Seattle,WA,98101 +229164,Macbook Pro Laptop,1,1700.0,2019-07-10 19:47:00,55 Madison St, San Francisco,CA,94016 +229165,USB-C Charging Cable,1,11.95,2019-07-08 08:23:00,428 Center St, New York City,NY,10001 +229166,Lightning Charging Cable,1,14.95,2019-07-12 12:50:00,385 Forest St, Portland,ME,04101 +229167,iPhone,1,700.0,2019-07-25 18:00:00,769 12th St, Boston,MA,02215 +229168,Flatscreen TV,1,300.0,2019-07-16 22:34:00,399 Meadow St, Portland,OR,97035 +229169,Bose SoundSport Headphones,1,99.99,2019-07-16 00:33:00,438 Pine St, Boston,MA,02215 +229170,AA Batteries (4-pack),1,3.84,2019-07-14 13:16:00,758 6th St, Portland,OR,97035 +229171,Wired Headphones,1,11.99,2019-07-29 23:50:00,20 Highland St, San Francisco,CA,94016 +229172,AAA Batteries (4-pack),2,2.99,2019-07-14 21:02:00,463 7th St, San Francisco,CA,94016 +229173,AAA Batteries (4-pack),2,2.99,2019-07-14 20:11:00,853 5th St, Los Angeles,CA,90001 +229174,Wired Headphones,1,11.99,2019-07-11 18:42:00,638 Lincoln St, Atlanta,GA,30301 +229175,Lightning Charging Cable,1,14.95,2019-07-19 06:42:00,839 Dogwood St, Boston,MA,02215 +229176,Google Phone,1,600.0,2019-07-25 19:54:00,879 Jackson St, Los Angeles,CA,90001 +229176,Bose SoundSport Headphones,1,99.99,2019-07-25 19:54:00,879 Jackson St, Los Angeles,CA,90001 +229177,Bose SoundSport Headphones,1,99.99,2019-07-17 11:52:00,637 Highland St, San Francisco,CA,94016 +229178,Wired Headphones,1,11.99,2019-07-21 07:44:00,821 Lake St, San Francisco,CA,94016 +229179,27in 4K Gaming Monitor,1,389.99,2019-07-21 14:37:00,290 North St, Los Angeles,CA,90001 +229179,Lightning Charging Cable,1,14.95,2019-07-21 14:37:00,290 North St, Los Angeles,CA,90001 +229180,Wired Headphones,1,11.99,2019-07-15 13:06:00,18 Walnut St, San Francisco,CA,94016 +229180,iPhone,1,700.0,2019-07-15 13:06:00,18 Walnut St, San Francisco,CA,94016 +229181,USB-C Charging Cable,1,11.95,2019-07-25 14:03:00,916 Forest St, Atlanta,GA,30301 +229182,USB-C Charging Cable,1,11.95,2019-07-29 10:13:00,928 11th St, Seattle,WA,98101 +229183,Google Phone,1,600.0,2019-07-21 16:45:00,246 Sunset St, Atlanta,GA,30301 +229184,USB-C Charging Cable,1,11.95,2019-07-25 04:56:00,821 Cherry St, San Francisco,CA,94016 +229185,Lightning Charging Cable,2,14.95,2019-07-12 17:08:00,464 12th St, Austin,TX,73301 +229186,Lightning Charging Cable,1,14.95,2019-07-05 21:28:00,241 Meadow St, San Francisco,CA,94016 +229187,Macbook Pro Laptop,1,1700.0,2019-07-02 09:49:00,48 Dogwood St, Los Angeles,CA,90001 +229188,Wired Headphones,1,11.99,2019-07-20 21:53:00,999 Willow St, Seattle,WA,98101 +229189,Macbook Pro Laptop,1,1700.0,2019-07-20 17:51:00,489 Johnson St, Los Angeles,CA,90001 +229190,AA Batteries (4-pack),1,3.84,2019-07-01 19:20:00,7 Forest St, San Francisco,CA,94016 +229191,Apple Airpods Headphones,1,150.0,2019-07-06 07:49:00,741 South St, San Francisco,CA,94016 +229192,Wired Headphones,1,11.99,2019-07-14 18:56:00,759 4th St, Austin,TX,73301 +229193,Vareebadd Phone,1,400.0,2019-07-30 14:18:00,889 Cherry St, Portland,OR,97035 +229194,Google Phone,1,600.0,2019-07-16 11:13:00,510 Meadow St, Seattle,WA,98101 +229195,AAA Batteries (4-pack),3,2.99,2019-07-29 10:47:00,245 Maple St, Los Angeles,CA,90001 +229196,Wired Headphones,1,11.99,2019-07-01 17:48:00,412 1st St, Austin,TX,73301 +229197,Lightning Charging Cable,2,14.95,2019-07-08 07:30:00,341 Ridge St, Portland,OR,97035 +229198,Google Phone,1,600.0,2019-07-14 09:37:00,186 1st St, San Francisco,CA,94016 +229199,Wired Headphones,1,11.99,2019-07-12 15:27:00,423 Center St, Dallas,TX,75001 +229200,Bose SoundSport Headphones,1,99.99,2019-07-22 20:22:00,547 Ridge St, New York City,NY,10001 +229201,Apple Airpods Headphones,1,150.0,2019-07-25 02:06:00,460 Willow St, Seattle,WA,98101 +229202,USB-C Charging Cable,1,11.95,2019-07-12 14:12:00,15 Cherry St, Boston,MA,02215 +229203,USB-C Charging Cable,1,11.95,2019-07-03 17:02:00,104 14th St, New York City,NY,10001 +229204,34in Ultrawide Monitor,1,379.99,2019-07-04 23:39:00,722 Hickory St, Boston,MA,02215 +229205,AAA Batteries (4-pack),1,2.99,2019-07-11 21:05:00,461 Meadow St, San Francisco,CA,94016 +229206,AA Batteries (4-pack),1,3.84,2019-07-31 09:22:00,955 13th St, Atlanta,GA,30301 +229207,Apple Airpods Headphones,1,150.0,2019-07-30 21:07:00,628 11th St, Boston,MA,02215 +229208,Wired Headphones,1,11.99,2019-07-21 13:31:00,345 North St, Atlanta,GA,30301 +229209,Wired Headphones,2,11.99,2019-07-22 16:22:00,463 Hickory St, San Francisco,CA,94016 +229210,USB-C Charging Cable,1,11.95,2019-07-04 20:23:00,846 Sunset St, Seattle,WA,98101 +229211,iPhone,1,700.0,2019-07-30 17:10:00,999 Dogwood St, Atlanta,GA,30301 +229212,USB-C Charging Cable,1,11.95,2019-07-21 14:21:00,562 11th St, Los Angeles,CA,90001 +229213,Flatscreen TV,1,300.0,2019-07-14 21:47:00,667 Lake St, Dallas,TX,75001 +229214,Apple Airpods Headphones,1,150.0,2019-07-25 16:22:00,709 Meadow St, Dallas,TX,75001 +229215,USB-C Charging Cable,1,11.95,2019-07-21 14:42:00,512 Chestnut St, Boston,MA,02215 +229216,20in Monitor,1,109.99,2019-07-20 20:43:00,776 Pine St, Boston,MA,02215 +229217,Apple Airpods Headphones,1,150.0,2019-07-08 12:40:00,720 Hill St, Boston,MA,02215 +229218,Flatscreen TV,1,300.0,2019-07-19 20:49:00,265 13th St, Los Angeles,CA,90001 +229219,AAA Batteries (4-pack),1,2.99,2019-07-07 21:31:00,809 13th St, Los Angeles,CA,90001 +229220,AAA Batteries (4-pack),1,2.99,2019-07-26 00:41:00,516 Forest St, Boston,MA,02215 +229221,Apple Airpods Headphones,1,150.0,2019-07-15 18:46:00,30 Cedar St, Seattle,WA,98101 +229222,AAA Batteries (4-pack),4,2.99,2019-07-15 21:17:00,141 River St, Los Angeles,CA,90001 +229223,Wired Headphones,1,11.99,2019-07-28 12:55:00,884 7th St, Seattle,WA,98101 +229224,Lightning Charging Cable,1,14.95,2019-07-03 23:21:00,577 6th St, Boston,MA,02215 +229225,ThinkPad Laptop,1,999.99,2019-07-24 14:34:00,891 Maple St, Dallas,TX,75001 +229226,AAA Batteries (4-pack),1,2.99,2019-07-02 12:06:00,640 Pine St, Atlanta,GA,30301 +229227,27in 4K Gaming Monitor,1,389.99,2019-07-16 10:02:00,505 Highland St, Atlanta,GA,30301 +229228,Lightning Charging Cable,1,14.95,2019-07-01 06:56:00,411 Meadow St, Los Angeles,CA,90001 +229229,iPhone,1,700.0,2019-07-18 12:52:00,936 Spruce St, San Francisco,CA,94016 +229230,Bose SoundSport Headphones,1,99.99,2019-07-18 22:55:00,510 Willow St, Boston,MA,02215 +229231,27in FHD Monitor,1,149.99,2019-07-03 10:52:00,377 Main St, New York City,NY,10001 +229232,USB-C Charging Cable,1,11.95,2019-07-18 16:25:00,570 Hill St, Dallas,TX,75001 +229233,Lightning Charging Cable,1,14.95,2019-07-16 20:31:00,461 12th St, Los Angeles,CA,90001 +229234,USB-C Charging Cable,1,11.95,2019-07-22 14:17:00,46 5th St, Los Angeles,CA,90001 +229235,ThinkPad Laptop,1,999.99,2019-07-29 01:09:00,315 Johnson St, New York City,NY,10001 +229236,Vareebadd Phone,1,400.0,2019-07-12 19:28:00,443 Lake St, San Francisco,CA,94016 +229237,Apple Airpods Headphones,1,150.0,2019-07-22 17:12:00,990 North St, San Francisco,CA,94016 +229238,Bose SoundSport Headphones,1,99.99,2019-07-02 08:26:00,603 Hickory St, New York City,NY,10001 +229239,Apple Airpods Headphones,1,150.0,2019-07-14 17:05:00,227 Madison St, Austin,TX,73301 +229240,Macbook Pro Laptop,1,1700.0,2019-07-10 15:12:00,426 Elm St, Dallas,TX,75001 +229241,AA Batteries (4-pack),1,3.84,2019-07-13 07:53:00,963 Cherry St, San Francisco,CA,94016 +229242,ThinkPad Laptop,1,999.99,2019-07-04 07:31:00,784 6th St, Los Angeles,CA,90001 +229243,34in Ultrawide Monitor,1,379.99,2019-07-08 15:30:00,977 Maple St, Seattle,WA,98101 +229244,20in Monitor,1,109.99,2019-07-19 08:41:00,166 Forest St, Atlanta,GA,30301 +229245,Apple Airpods Headphones,1,150.0,2019-07-06 11:03:00,655 Center St, Seattle,WA,98101 +229246,Flatscreen TV,1,300.0,2019-07-22 19:09:00,133 Pine St, Atlanta,GA,30301 +229247,27in FHD Monitor,1,149.99,2019-07-18 16:41:00,188 5th St, San Francisco,CA,94016 +229248,Lightning Charging Cable,1,14.95,2019-07-05 23:34:00,175 1st St, New York City,NY,10001 +229249,Wired Headphones,1,11.99,2019-07-27 23:21:00,439 Lake St, Los Angeles,CA,90001 +229250,20in Monitor,1,109.99,2019-07-22 15:07:00,458 Jackson St, Austin,TX,73301 +229251,AA Batteries (4-pack),1,3.84,2019-07-11 13:46:00,243 Lincoln St, San Francisco,CA,94016 +229252,20in Monitor,1,109.99,2019-07-11 19:59:00,368 Dogwood St, Los Angeles,CA,90001 +229253,AA Batteries (4-pack),1,3.84,2019-07-09 13:21:00,876 Washington St, Los Angeles,CA,90001 +229254,USB-C Charging Cable,2,11.95,2019-07-30 20:10:00,227 Madison St, Seattle,WA,98101 +229255,20in Monitor,1,109.99,2019-07-22 11:46:00,332 9th St, San Francisco,CA,94016 +229256,AAA Batteries (4-pack),2,2.99,2019-07-18 09:05:00,28 Willow St, Austin,TX,73301 +229257,iPhone,1,700.0,2019-07-19 21:39:00,347 Main St, San Francisco,CA,94016 +229258,34in Ultrawide Monitor,1,379.99,2019-07-25 09:08:00,837 River St, San Francisco,CA,94016 +229259,Lightning Charging Cable,1,14.95,2019-07-28 14:54:00,234 2nd St, Atlanta,GA,30301 +229260,Wired Headphones,1,11.99,2019-07-14 16:16:00,568 7th St, New York City,NY,10001 +229261,AAA Batteries (4-pack),1,2.99,2019-07-22 11:34:00,199 Washington St, Seattle,WA,98101 +229262,Wired Headphones,1,11.99,2019-07-09 00:02:00,695 Main St, Atlanta,GA,30301 +229263,AAA Batteries (4-pack),1,2.99,2019-07-25 18:31:00,132 Madison St, San Francisco,CA,94016 +229264,27in FHD Monitor,1,149.99,2019-07-04 11:16:00,953 2nd St, San Francisco,CA,94016 +229265,USB-C Charging Cable,1,11.95,2019-07-12 12:04:00,132 5th St, Dallas,TX,75001 +229266,Wired Headphones,1,11.99,2019-07-13 16:20:00,275 Meadow St, New York City,NY,10001 +229267,Vareebadd Phone,1,400.0,2019-07-19 15:50:00,732 Highland St, New York City,NY,10001 +229268,AAA Batteries (4-pack),1,2.99,2019-07-22 20:11:00,297 Spruce St, New York City,NY,10001 +229269,Bose SoundSport Headphones,1,99.99,2019-07-11 15:06:00,147 5th St, New York City,NY,10001 +229270,USB-C Charging Cable,2,11.95,2019-07-29 17:57:00,286 11th St, San Francisco,CA,94016 +229271,Apple Airpods Headphones,1,150.0,2019-07-26 19:31:00,525 6th St, San Francisco,CA,94016 +229272,27in 4K Gaming Monitor,1,389.99,2019-07-11 22:47:00,40 Johnson St, San Francisco,CA,94016 +229273,Apple Airpods Headphones,1,150.0,2019-07-12 16:07:00,295 West St, Seattle,WA,98101 +229274,Apple Airpods Headphones,1,150.0,2019-07-06 23:48:00,324 Church St, Los Angeles,CA,90001 +229275,AAA Batteries (4-pack),2,2.99,2019-07-30 11:26:00,980 13th St, Boston,MA,02215 +229276,USB-C Charging Cable,1,11.95,2019-07-06 21:06:00,10 Maple St, Austin,TX,73301 +229277,Lightning Charging Cable,1,14.95,2019-07-13 13:32:00,145 Lakeview St, Portland,OR,97035 +229278,USB-C Charging Cable,1,11.95,2019-07-19 03:20:00,866 2nd St, Los Angeles,CA,90001 +229279,Bose SoundSport Headphones,1,99.99,2019-07-25 15:08:00,521 Elm St, San Francisco,CA,94016 +229280,Lightning Charging Cable,2,14.95,2019-07-30 13:18:00,455 Pine St, Los Angeles,CA,90001 +229281,AA Batteries (4-pack),1,3.84,2019-07-25 16:30:00,826 7th St, Los Angeles,CA,90001 +229282,Lightning Charging Cable,1,14.95,2019-07-04 19:45:00,391 11th St, San Francisco,CA,94016 +229283,Flatscreen TV,1,300.0,2019-07-06 17:05:00,237 Cedar St, Dallas,TX,75001 +229283,34in Ultrawide Monitor,1,379.99,2019-07-06 17:05:00,237 Cedar St, Dallas,TX,75001 +229284,Apple Airpods Headphones,1,150.0,2019-07-03 20:30:00,19 Forest St, Austin,TX,73301 +229284,Lightning Charging Cable,1,14.95,2019-07-03 20:30:00,19 Forest St, Austin,TX,73301 +229285,Apple Airpods Headphones,1,150.0,2019-07-24 15:36:00,877 12th St, Los Angeles,CA,90001 +229286,AAA Batteries (4-pack),1,2.99,2019-07-03 09:23:00,785 5th St, Portland,ME,04101 +229287,Wired Headphones,1,11.99,2019-07-25 21:20:00,678 6th St, New York City,NY,10001 +229288,Bose SoundSport Headphones,1,99.99,2019-07-09 18:28:00,227 Lincoln St, Portland,OR,97035 +229289,Wired Headphones,1,11.99,2019-07-25 20:26:00,772 Washington St, Seattle,WA,98101 +229290,USB-C Charging Cable,1,11.95,2019-07-27 15:21:00,564 Madison St, Los Angeles,CA,90001 +229291,USB-C Charging Cable,1,11.95,2019-07-01 21:42:00,383 Johnson St, New York City,NY,10001 +229292,USB-C Charging Cable,1,11.95,2019-07-18 10:43:00,128 Willow St, Austin,TX,73301 +229293,USB-C Charging Cable,1,11.95,2019-07-20 09:27:00,910 Jefferson St, San Francisco,CA,94016 +229294,Wired Headphones,1,11.99,2019-07-09 17:25:00,364 South St, Dallas,TX,75001 +229295,AA Batteries (4-pack),1,3.84,2019-07-31 13:22:00,792 Center St, New York City,NY,10001 +229296,AAA Batteries (4-pack),2,2.99,2019-07-29 05:52:00,202 Lakeview St, San Francisco,CA,94016 +229297,Lightning Charging Cable,1,14.95,2019-07-05 11:28:00,787 Maple St, San Francisco,CA,94016 +229298,Flatscreen TV,1,300.0,2019-07-21 13:03:00,398 8th St, San Francisco,CA,94016 +229299,27in 4K Gaming Monitor,1,389.99,2019-07-09 22:05:00,101 North St, San Francisco,CA,94016 +229300,Lightning Charging Cable,1,14.95,2019-07-29 18:58:00,161 7th St, Los Angeles,CA,90001 +229301,Wired Headphones,1,11.99,2019-07-04 21:07:00,305 14th St, San Francisco,CA,94016 +229302,Wired Headphones,1,11.99,2019-07-22 00:38:00,426 South St, New York City,NY,10001 +229303,Apple Airpods Headphones,1,150.0,2019-07-07 10:28:00,402 Church St, Portland,OR,97035 +229304,Bose SoundSport Headphones,1,99.99,2019-07-22 09:58:00,533 Church St, Los Angeles,CA,90001 +229305,27in 4K Gaming Monitor,1,389.99,2019-07-12 10:26:00,490 5th St, New York City,NY,10001 +229306,Apple Airpods Headphones,1,150.0,2019-07-09 20:48:00,282 Johnson St, Atlanta,GA,30301 +229307,Wired Headphones,1,11.99,2019-07-08 15:48:00,320 11th St, Dallas,TX,75001 +229308,AA Batteries (4-pack),3,3.84,2019-07-06 11:55:00,862 14th St, Seattle,WA,98101 +229309,Wired Headphones,1,11.99,2019-07-23 12:05:00,916 12th St, New York City,NY,10001 +229310,USB-C Charging Cable,1,11.95,2019-07-01 13:28:00,994 Lincoln St, Los Angeles,CA,90001 +229311,AAA Batteries (4-pack),1,2.99,2019-07-15 16:18:00,427 Jefferson St, Dallas,TX,75001 +229312,USB-C Charging Cable,1,11.95,2019-07-08 19:58:00,331 2nd St, Dallas,TX,75001 +229313,AAA Batteries (4-pack),3,2.99,2019-07-19 18:26:00,350 2nd St, New York City,NY,10001 +229314,27in FHD Monitor,1,149.99,2019-07-25 15:58:00,246 Cherry St, San Francisco,CA,94016 +229315,Wired Headphones,1,11.99,2019-07-25 07:25:00,386 Main St, New York City,NY,10001 +229316,Wired Headphones,1,11.99,2019-07-17 15:05:00,502 Park St, San Francisco,CA,94016 +229317,Bose SoundSport Headphones,1,99.99,2019-07-14 19:52:00,555 Meadow St, Dallas,TX,75001 +229318,AAA Batteries (4-pack),1,2.99,2019-07-16 13:13:00,317 Highland St, Atlanta,GA,30301 +229319,Macbook Pro Laptop,1,1700.0,2019-07-04 07:16:00,415 Cherry St, Portland,OR,97035 +229320,AAA Batteries (4-pack),3,2.99,2019-07-09 21:35:00,38 Wilson St, Dallas,TX,75001 +229321,AA Batteries (4-pack),1,3.84,2019-07-10 20:33:00,836 Dogwood St, Los Angeles,CA,90001 +229322,USB-C Charging Cable,1,11.95,2019-07-25 05:33:00,633 Johnson St, San Francisco,CA,94016 +229323,Bose SoundSport Headphones,1,99.99,2019-07-12 18:08:00,995 Jackson St, San Francisco,CA,94016 +229324,Lightning Charging Cable,1,14.95,2019-07-10 22:01:00,376 Jackson St, San Francisco,CA,94016 +229325,34in Ultrawide Monitor,1,379.99,2019-07-17 23:04:00,752 Sunset St, New York City,NY,10001 +229326,Wired Headphones,1,11.99,2019-07-13 11:04:00,312 West St, New York City,NY,10001 +229327,34in Ultrawide Monitor,1,379.99,2019-07-10 09:54:00,595 6th St, Atlanta,GA,30301 +229328,AA Batteries (4-pack),1,3.84,2019-07-27 16:54:00,577 6th St, Boston,MA,02215 +229329,AA Batteries (4-pack),1,3.84,2019-07-19 08:59:00,791 River St, Los Angeles,CA,90001 +229330,USB-C Charging Cable,1,11.95,2019-07-27 02:39:00,191 Jefferson St, Dallas,TX,75001 +229331,Bose SoundSport Headphones,1,99.99,2019-07-26 22:25:00,922 10th St, Atlanta,GA,30301 +229332,AAA Batteries (4-pack),2,2.99,2019-07-03 17:42:00,999 Main St, San Francisco,CA,94016 +229332,iPhone,1,700.0,2019-07-03 17:42:00,999 Main St, San Francisco,CA,94016 +229333,Apple Airpods Headphones,1,150.0,2019-07-17 22:49:00,71 10th St, Boston,MA,02215 +229334,Lightning Charging Cable,1,14.95,2019-07-24 17:58:00,70 Lincoln St, Dallas,TX,75001 +229335,27in 4K Gaming Monitor,1,389.99,2019-07-10 13:38:00,612 Highland St, Seattle,WA,98101 +229336,27in 4K Gaming Monitor,1,389.99,2019-07-31 23:16:00,30 Highland St, Boston,MA,02215 +229337,AA Batteries (4-pack),2,3.84,2019-07-30 20:30:00,305 Willow St, Los Angeles,CA,90001 +229338,Lightning Charging Cable,1,14.95,2019-07-12 00:01:00,284 8th St, Los Angeles,CA,90001 +229339,iPhone,1,700.0,2019-07-02 21:30:00,395 Elm St, Portland,OR,97035 +229340,Bose SoundSport Headphones,1,99.99,2019-07-08 21:12:00,725 14th St, New York City,NY,10001 +229341,Bose SoundSport Headphones,1,99.99,2019-07-16 19:33:00,307 Lake St, Dallas,TX,75001 +229342,LG Washing Machine,1,600.0,2019-07-06 20:05:00,569 Maple St, San Francisco,CA,94016 +229343,Lightning Charging Cable,1,14.95,2019-07-13 18:47:00,757 Johnson St, San Francisco,CA,94016 +229344,iPhone,1,700.0,2019-07-20 12:15:00,455 Pine St, San Francisco,CA,94016 +229345,USB-C Charging Cable,1,11.95,2019-07-25 03:17:00,813 Hill St, Seattle,WA,98101 +229346,LG Washing Machine,1,600.0,2019-07-12 22:00:00,793 Jefferson St, San Francisco,CA,94016 +229347,Vareebadd Phone,1,400.0,2019-07-21 17:43:00,970 12th St, San Francisco,CA,94016 +229347,USB-C Charging Cable,1,11.95,2019-07-21 17:43:00,970 12th St, San Francisco,CA,94016 +229348,Lightning Charging Cable,1,14.95,2019-07-13 15:22:00,652 Center St, Austin,TX,73301 +229349,AAA Batteries (4-pack),2,2.99,2019-07-02 18:53:00,372 Park St, Boston,MA,02215 +229350,Flatscreen TV,1,300.0,2019-07-02 18:36:00,54 Lakeview St, Atlanta,GA,30301 +229351,27in FHD Monitor,2,149.99,2019-07-02 20:17:00,50 4th St, San Francisco,CA,94016 +229352,Apple Airpods Headphones,1,150.0,2019-07-11 21:10:00,15 Center St, Boston,MA,02215 +229353,Lightning Charging Cable,1,14.95,2019-07-20 19:46:00,523 Adams St, Boston,MA,02215 +229354,AAA Batteries (4-pack),2,2.99,2019-07-30 09:36:00,382 Center St, Atlanta,GA,30301 +229355,34in Ultrawide Monitor,1,379.99,2019-07-11 07:41:00,410 9th St, Los Angeles,CA,90001 +229356,AA Batteries (4-pack),1,3.84,2019-07-30 22:38:00,100 Spruce St, Portland,OR,97035 +229357,Google Phone,1,600.0,2019-07-09 12:12:00,529 Lincoln St, Los Angeles,CA,90001 +229358,Lightning Charging Cable,1,14.95,2019-07-28 11:35:00,482 14th St, Atlanta,GA,30301 +229359,Lightning Charging Cable,1,14.95,2019-07-30 12:02:00,555 8th St, New York City,NY,10001 +229360,34in Ultrawide Monitor,1,379.99,2019-07-27 15:17:00,655 Chestnut St, San Francisco,CA,94016 +229361,Google Phone,1,600.0,2019-07-04 22:16:00,800 12th St, Seattle,WA,98101 +229362,Lightning Charging Cable,3,14.95,2019-07-26 23:47:00,132 Dogwood St, Atlanta,GA,30301 +229363,Lightning Charging Cable,1,14.95,2019-07-14 11:21:00,253 4th St, Portland,ME,04101 +229364,Google Phone,1,600.0,2019-07-02 20:45:00,342 West St, Los Angeles,CA,90001 +229365,USB-C Charging Cable,1,11.95,2019-07-08 11:49:00,649 Walnut St, San Francisco,CA,94016 +229366,AA Batteries (4-pack),1,3.84,2019-07-29 17:29:00,446 Elm St, San Francisco,CA,94016 +229367,Bose SoundSport Headphones,1,99.99,2019-07-23 13:14:00,611 Pine St, San Francisco,CA,94016 +229368,Wired Headphones,1,11.99,2019-07-15 00:12:00,541 Church St, Los Angeles,CA,90001 +229369,ThinkPad Laptop,1,999.99,2019-07-12 19:32:00,701 1st St, Los Angeles,CA,90001 +229370,AAA Batteries (4-pack),1,2.99,2019-07-18 16:46:00,473 Hickory St, Atlanta,GA,30301 +229371,AA Batteries (4-pack),3,3.84,2019-07-04 10:22:00,924 Walnut St, Boston,MA,02215 +229372,Apple Airpods Headphones,1,150.0,2019-07-28 09:47:00,762 7th St, Los Angeles,CA,90001 +229373,AAA Batteries (4-pack),1,2.99,2019-07-25 16:14:00,371 South St, San Francisco,CA,94016 +229374,Lightning Charging Cable,1,14.95,2019-07-04 20:42:00,794 8th St, San Francisco,CA,94016 +229375,34in Ultrawide Monitor,1,379.99,2019-07-23 21:10:00,898 Lake St, New York City,NY,10001 +229375,AA Batteries (4-pack),1,3.84,2019-07-23 21:10:00,898 Lake St, New York City,NY,10001 +229376,27in FHD Monitor,1,149.99,2019-07-09 22:27:00,910 Spruce St, Boston,MA,02215 +229377,AAA Batteries (4-pack),2,2.99,2019-07-18 22:45:00,231 Walnut St, Atlanta,GA,30301 +229378,Lightning Charging Cable,1,14.95,2019-07-22 13:57:00,359 Chestnut St, Los Angeles,CA,90001 +229379,Google Phone,1,600.0,2019-07-24 23:14:00,417 Chestnut St, Los Angeles,CA,90001 +229380,Lightning Charging Cable,1,14.95,2019-07-07 07:35:00,165 7th St, New York City,NY,10001 +229381,AAA Batteries (4-pack),2,2.99,2019-07-18 10:37:00,76 Jackson St, New York City,NY,10001 +229382,AAA Batteries (4-pack),1,2.99,2019-07-22 14:23:00,917 7th St, Seattle,WA,98101 +229383,Flatscreen TV,1,300.0,2019-07-20 09:57:00,728 6th St, San Francisco,CA,94016 +229384,34in Ultrawide Monitor,1,379.99,2019-07-31 17:27:00,641 Church St, Dallas,TX,75001 +229385,USB-C Charging Cable,1,11.95,2019-07-01 09:07:00,590 Chestnut St, Boston,MA,02215 +229386,AA Batteries (4-pack),1,3.84,2019-07-27 23:06:00,618 Walnut St, New York City,NY,10001 +229387,Wired Headphones,1,11.99,2019-07-25 20:23:00,855 1st St, Atlanta,GA,30301 +229388,Lightning Charging Cable,1,14.95,2019-07-01 12:56:00,409 5th St, San Francisco,CA,94016 +229389,USB-C Charging Cable,2,11.95,2019-07-18 20:02:00,453 Dogwood St, Seattle,WA,98101 +229390,USB-C Charging Cable,1,11.95,2019-07-04 19:39:00,440 Main St, San Francisco,CA,94016 +229391,iPhone,1,700.0,2019-07-13 21:21:00,756 Sunset St, Portland,ME,04101 +229392,Bose SoundSport Headphones,1,99.99,2019-07-17 01:56:00,340 6th St, Atlanta,GA,30301 +229393,AA Batteries (4-pack),1,3.84,2019-07-23 14:50:00,106 Sunset St, Atlanta,GA,30301 +229394,Wired Headphones,1,11.99,2019-07-10 09:43:00,410 Wilson St, Atlanta,GA,30301 +229395,Wired Headphones,2,11.99,2019-07-15 23:26:00,653 Ridge St, San Francisco,CA,94016 +229396,AAA Batteries (4-pack),2,2.99,2019-07-08 00:11:00,758 2nd St, Portland,OR,97035 +229397,USB-C Charging Cable,1,11.95,2019-07-02 19:15:00,923 Center St, New York City,NY,10001 +229398,AA Batteries (4-pack),1,3.84,2019-07-12 19:20:00,85 Spruce St, Dallas,TX,75001 +229399,Lightning Charging Cable,1,14.95,2019-07-30 13:38:00,17 Chestnut St, New York City,NY,10001 +229400,Apple Airpods Headphones,1,150.0,2019-07-22 08:48:00,861 1st St, San Francisco,CA,94016 +229401,Flatscreen TV,1,300.0,2019-07-18 14:20:00,363 Park St, Portland,OR,97035 +229402,Macbook Pro Laptop,1,1700.0,2019-07-17 19:44:00,360 Pine St, Los Angeles,CA,90001 +229403,34in Ultrawide Monitor,1,379.99,2019-07-28 20:57:00,191 7th St, San Francisco,CA,94016 +229404,USB-C Charging Cable,1,11.95,2019-07-13 17:32:00,905 8th St, Boston,MA,02215 +229405,AA Batteries (4-pack),2,3.84,2019-07-10 17:28:00,943 Maple St, Boston,MA,02215 +229406,27in FHD Monitor,1,149.99,2019-07-27 18:39:00,126 Lincoln St, New York City,NY,10001 +229407,AAA Batteries (4-pack),1,2.99,2019-07-08 17:34:00,922 Hill St, Los Angeles,CA,90001 +229408,ThinkPad Laptop,1,999.99,2019-07-19 17:22:00,11 Wilson St, Los Angeles,CA,90001 +229409,iPhone,1,700.0,2019-07-14 07:38:00,839 Lincoln St, San Francisco,CA,94016 +229410,Lightning Charging Cable,1,14.95,2019-07-09 21:24:00,795 Adams St, New York City,NY,10001 +229411,USB-C Charging Cable,1,11.95,2019-07-13 20:20:00,626 Madison St, San Francisco,CA,94016 +229412,AA Batteries (4-pack),1,3.84,2019-07-11 16:26:00,610 Elm St, Austin,TX,73301 +229413,Wired Headphones,1,11.99,2019-07-25 21:44:00,678 14th St, Austin,TX,73301 +229414,Google Phone,1,600.0,2019-07-13 06:44:00,64 Pine St, San Francisco,CA,94016 +229414,Wired Headphones,2,11.99,2019-07-13 06:44:00,64 Pine St, San Francisco,CA,94016 +229415,USB-C Charging Cable,1,11.95,2019-07-14 16:40:00,172 Washington St, Atlanta,GA,30301 +229416,Lightning Charging Cable,1,14.95,2019-07-04 07:14:00,582 Church St, San Francisco,CA,94016 +229417,USB-C Charging Cable,1,11.95,2019-07-23 18:24:00,392 5th St, Portland,ME,04101 +229418,Lightning Charging Cable,1,14.95,2019-07-14 11:53:00,404 Maple St, Dallas,TX,75001 +229419,Apple Airpods Headphones,1,150.0,2019-07-04 09:05:00,126 Highland St, Portland,OR,97035 +229420,Wired Headphones,1,11.99,2019-07-14 07:40:00,496 Washington St, Austin,TX,73301 +229421,iPhone,1,700.0,2019-07-24 16:10:00,508 10th St, Los Angeles,CA,90001 +229421,Lightning Charging Cable,1,14.95,2019-07-24 16:10:00,508 10th St, Los Angeles,CA,90001 +229422,AA Batteries (4-pack),1,3.84,2019-07-16 18:47:00,862 11th St, Los Angeles,CA,90001 +229423,ThinkPad Laptop,1,999.99,2019-07-06 09:29:00,68 Lakeview St, Austin,TX,73301 +229424,27in FHD Monitor,1,149.99,2019-07-16 22:31:00,146 Chestnut St, Los Angeles,CA,90001 +229425,27in FHD Monitor,1,149.99,2019-07-25 15:59:00,836 Pine St, Seattle,WA,98101 +229425,Wired Headphones,1,11.99,2019-07-25 15:59:00,836 Pine St, Seattle,WA,98101 +229426,27in FHD Monitor,1,149.99,2019-07-03 16:15:00,372 Dogwood St, San Francisco,CA,94016 +229427,Lightning Charging Cable,1,14.95,2019-07-08 15:43:00,681 1st St, New York City,NY,10001 +229428,Wired Headphones,1,11.99,2019-07-05 22:00:00,359 Spruce St, Atlanta,GA,30301 +229429,Flatscreen TV,1,300.0,2019-07-13 22:46:00,194 Sunset St, Portland,OR,97035 +229430,AAA Batteries (4-pack),2,2.99,2019-07-05 08:37:00,306 Willow St, Seattle,WA,98101 +229431,iPhone,1,700.0,2019-07-31 11:04:00,645 7th St, Austin,TX,73301 +229431,Lightning Charging Cable,1,14.95,2019-07-31 11:04:00,645 7th St, Austin,TX,73301 +229432,AAA Batteries (4-pack),2,2.99,2019-07-27 09:16:00,341 Jackson St, Seattle,WA,98101 +229433,Bose SoundSport Headphones,1,99.99,2019-07-21 09:40:00,521 Hill St, Los Angeles,CA,90001 +229434,AAA Batteries (4-pack),2,2.99,2019-07-29 23:23:00,75 Forest St, Portland,OR,97035 +229435,Lightning Charging Cable,1,14.95,2019-07-22 08:54:00,603 Hill St, Seattle,WA,98101 +229436,Bose SoundSport Headphones,1,99.99,2019-07-20 19:02:00,383 9th St, Austin,TX,73301 +229437,AA Batteries (4-pack),1,3.84,2019-07-20 17:13:00,702 14th St, New York City,NY,10001 +229438,Flatscreen TV,1,300.0,2019-07-18 20:56:00,565 4th St, San Francisco,CA,94016 +229439,Google Phone,1,600.0,2019-07-31 14:18:00,578 Cherry St, Boston,MA,02215 +229440,USB-C Charging Cable,1,11.95,2019-07-12 11:20:00,646 Dogwood St, Atlanta,GA,30301 +229441,AAA Batteries (4-pack),2,2.99,2019-07-13 08:47:00,569 Lake St, Los Angeles,CA,90001 +229442,AA Batteries (4-pack),1,3.84,2019-07-31 05:00:00,73 Wilson St, Boston,MA,02215 +229443,AAA Batteries (4-pack),2,2.99,2019-07-14 16:29:00,771 Center St, Los Angeles,CA,90001 +229444,Wired Headphones,1,11.99,2019-07-15 13:43:00,544 Jefferson St, Dallas,TX,75001 +229445,27in 4K Gaming Monitor,1,389.99,2019-07-11 11:09:00,629 Willow St, Los Angeles,CA,90001 +229446,Apple Airpods Headphones,1,150.0,2019-07-20 12:25:00,619 2nd St, San Francisco,CA,94016 +229447,Wired Headphones,1,11.99,2019-07-21 08:57:00,943 Adams St, San Francisco,CA,94016 +229448,Wired Headphones,1,11.99,2019-07-02 14:24:00,127 Jefferson St, Boston,MA,02215 +229449,Bose SoundSport Headphones,1,99.99,2019-07-07 10:31:00,8 14th St, Seattle,WA,98101 +229450,27in 4K Gaming Monitor,1,389.99,2019-07-13 21:11:00,294 11th St, Los Angeles,CA,90001 +229451,USB-C Charging Cable,1,11.95,2019-07-12 21:42:00,294 Cedar St, Atlanta,GA,30301 +229452,AA Batteries (4-pack),1,3.84,2019-07-02 11:54:00,868 Pine St, New York City,NY,10001 +229453,Apple Airpods Headphones,1,150.0,2019-07-02 17:20:00,792 Walnut St, San Francisco,CA,94016 +229454,iPhone,1,700.0,2019-07-01 12:43:00,995 Lakeview St, San Francisco,CA,94016 +229455,Apple Airpods Headphones,1,150.0,2019-07-11 20:33:00,448 5th St, Los Angeles,CA,90001 +229456,34in Ultrawide Monitor,1,379.99,2019-07-06 13:38:00,510 North St, Los Angeles,CA,90001 +229457,Lightning Charging Cable,1,14.95,2019-07-13 09:53:00,437 North St, Atlanta,GA,30301 +229457,AA Batteries (4-pack),1,3.84,2019-07-13 09:53:00,437 North St, Atlanta,GA,30301 +229458,Wired Headphones,1,11.99,2019-07-11 19:34:00,292 Park St, Los Angeles,CA,90001 +229459,Flatscreen TV,1,300.0,2019-07-07 13:52:00,105 Cherry St, New York City,NY,10001 +229460,34in Ultrawide Monitor,1,379.99,2019-07-10 15:38:00,780 Main St, San Francisco,CA,94016 +229461,iPhone,1,700.0,2019-07-22 11:24:00,965 13th St, San Francisco,CA,94016 +229462,Lightning Charging Cable,2,14.95,2019-07-10 13:39:00,316 Jackson St, Atlanta,GA,30301 +229463,Apple Airpods Headphones,1,150.0,2019-07-09 14:03:00,386 Hickory St, San Francisco,CA,94016 +229464,Apple Airpods Headphones,1,150.0,2019-07-09 00:08:00,892 Walnut St, New York City,NY,10001 +229465,27in FHD Monitor,1,149.99,2019-07-04 14:52:00,479 14th St, Atlanta,GA,30301 +229466,USB-C Charging Cable,1,11.95,2019-07-27 17:00:00,96 12th St, Los Angeles,CA,90001 +229467,Wired Headphones,1,11.99,2019-07-16 13:21:00,470 Jefferson St, Atlanta,GA,30301 +229468,Apple Airpods Headphones,1,150.0,2019-07-30 14:43:00,395 Hill St, Los Angeles,CA,90001 +229469,Flatscreen TV,1,300.0,2019-07-07 17:51:00,161 Washington St, Boston,MA,02215 +229470,Bose SoundSport Headphones,1,99.99,2019-07-30 23:34:00,168 West St, Austin,TX,73301 +229471,Bose SoundSport Headphones,1,99.99,2019-07-21 18:04:00,891 Lake St, Portland,ME,04101 +229472,20in Monitor,1,109.99,2019-07-02 14:23:00,860 Lakeview St, Boston,MA,02215 +229473,ThinkPad Laptop,1,999.99,2019-07-09 19:13:00,166 Chestnut St, Seattle,WA,98101 +229474,Wired Headphones,1,11.99,2019-07-10 16:51:00,993 Dogwood St, San Francisco,CA,94016 +229475,AA Batteries (4-pack),1,3.84,2019-07-06 13:45:00,630 4th St, San Francisco,CA,94016 +229476,AA Batteries (4-pack),1,3.84,2019-07-14 20:22:00,131 Jackson St, Los Angeles,CA,90001 +229477,AAA Batteries (4-pack),1,2.99,2019-07-30 13:37:00,502 2nd St, Boston,MA,02215 +229478,AAA Batteries (4-pack),2,2.99,2019-07-08 18:08:00,272 West St, Portland,OR,97035 +229479,Bose SoundSport Headphones,1,99.99,2019-07-17 08:43:00,810 Walnut St, Atlanta,GA,30301 +229480,Apple Airpods Headphones,1,150.0,2019-07-19 09:07:00,146 5th St, Dallas,TX,75001 +229481,AAA Batteries (4-pack),1,2.99,2019-07-11 11:45:00,355 Cherry St, Los Angeles,CA,90001 +229482,Flatscreen TV,1,300.0,2019-07-28 20:35:00,692 14th St, New York City,NY,10001 +229483,AAA Batteries (4-pack),1,2.99,2019-07-23 17:14:00,579 12th St, Los Angeles,CA,90001 +229484,AA Batteries (4-pack),1,3.84,2019-07-15 15:50:00,246 Johnson St, San Francisco,CA,94016 +229485,Wired Headphones,1,11.99,2019-07-29 18:12:00,741 Sunset St, New York City,NY,10001 +229486,Wired Headphones,1,11.99,2019-07-09 13:17:00,132 10th St, Los Angeles,CA,90001 +229487,AA Batteries (4-pack),1,3.84,2019-07-18 16:50:00,956 Dogwood St, Austin,TX,73301 +229488,iPhone,1,700.0,2019-07-09 22:30:00,577 Adams St, San Francisco,CA,94016 +229488,Lightning Charging Cable,1,14.95,2019-07-09 22:30:00,577 Adams St, San Francisco,CA,94016 +229489,Lightning Charging Cable,1,14.95,2019-07-07 17:18:00,438 River St, Atlanta,GA,30301 +229490,27in FHD Monitor,1,149.99,2019-07-18 00:08:00,782 North St, Seattle,WA,98101 +229491,Apple Airpods Headphones,1,150.0,2019-07-24 10:44:00,912 Cherry St, New York City,NY,10001 +229492,Vareebadd Phone,1,400.0,2019-07-06 22:01:00,175 Lincoln St, Los Angeles,CA,90001 +229493,USB-C Charging Cable,1,11.95,2019-07-25 23:46:00,315 Cedar St, Los Angeles,CA,90001 +229494,AA Batteries (4-pack),1,3.84,2019-07-31 13:30:00,162 10th St, San Francisco,CA,94016 +229495,27in FHD Monitor,1,149.99,2019-07-21 22:46:00,706 1st St, Portland,OR,97035 +229496,AA Batteries (4-pack),1,3.84,2019-07-24 14:57:00,401 13th St, San Francisco,CA,94016 +229497,AAA Batteries (4-pack),1,2.99,2019-07-11 14:30:00,843 Wilson St, New York City,NY,10001 +229498,Bose SoundSport Headphones,1,99.99,2019-07-24 23:02:00,325 Willow St, Seattle,WA,98101 +229499,Lightning Charging Cable,1,14.95,2019-07-18 19:44:00,946 Walnut St, Seattle,WA,98101 +229500,Bose SoundSport Headphones,1,99.99,2019-07-12 11:10:00,98 Park St, Dallas,TX,75001 +229501,AAA Batteries (4-pack),1,2.99,2019-07-19 19:29:00,211 Wilson St, Seattle,WA,98101 +229502,AA Batteries (4-pack),3,3.84,2019-07-26 14:59:00,641 Lincoln St, Los Angeles,CA,90001 +229503,Apple Airpods Headphones,1,150.0,2019-07-20 13:02:00,555 Forest St, Boston,MA,02215 +229504,iPhone,1,700.0,2019-07-22 13:18:00,17 Lincoln St, Atlanta,GA,30301 +229504,Apple Airpods Headphones,1,150.0,2019-07-22 13:18:00,17 Lincoln St, Atlanta,GA,30301 +229505,Bose SoundSport Headphones,1,99.99,2019-07-06 00:06:00,84 Madison St, New York City,NY,10001 +229506,Apple Airpods Headphones,1,150.0,2019-07-25 22:19:00,897 Johnson St, Atlanta,GA,30301 +229507,Lightning Charging Cable,1,14.95,2019-07-16 14:09:00,433 2nd St, Dallas,TX,75001 +229508,Lightning Charging Cable,1,14.95,2019-07-27 11:43:00,587 Hickory St, Boston,MA,02215 +229509,USB-C Charging Cable,1,11.95,2019-07-13 13:45:00,440 2nd St, San Francisco,CA,94016 +229510,34in Ultrawide Monitor,1,379.99,2019-07-07 14:18:00,96 Spruce St, Dallas,TX,75001 +229511,Wired Headphones,1,11.99,2019-07-02 08:50:00,200 Main St, Portland,OR,97035 +229512,USB-C Charging Cable,1,11.95,2019-07-02 14:28:00,678 8th St, Boston,MA,02215 +229513,Wired Headphones,1,11.99,2019-07-17 14:00:00,937 Forest St, Boston,MA,02215 +229514,Lightning Charging Cable,1,14.95,2019-07-30 00:35:00,239 Johnson St, Seattle,WA,98101 +229515,AAA Batteries (4-pack),1,2.99,2019-07-18 09:59:00,287 Hickory St, Atlanta,GA,30301 +229516,AA Batteries (4-pack),2,3.84,2019-07-08 19:53:00,711 13th St, Portland,ME,04101 +229517,20in Monitor,1,109.99,2019-07-29 19:22:00,644 Willow St, Los Angeles,CA,90001 +229518,AAA Batteries (4-pack),3,2.99,2019-07-28 23:03:00,81 Elm St, Atlanta,GA,30301 +229519,Macbook Pro Laptop,1,1700.0,2019-07-29 08:36:00,707 Walnut St, Austin,TX,73301 +229520,Apple Airpods Headphones,1,150.0,2019-07-06 23:34:00,706 Madison St, Boston,MA,02215 +229521,Bose SoundSport Headphones,1,99.99,2019-07-16 17:46:00,656 4th St, Boston,MA,02215 +229522,Bose SoundSport Headphones,1,99.99,2019-07-27 23:02:00,413 Johnson St, San Francisco,CA,94016 +229523,Lightning Charging Cable,1,14.95,2019-07-07 17:48:00,548 Jefferson St, New York City,NY,10001 +229524,Wired Headphones,1,11.99,2019-07-28 18:35:00,123 Ridge St, Dallas,TX,75001 +229525,AA Batteries (4-pack),1,3.84,2019-07-03 19:50:00,734 Center St, Seattle,WA,98101 +229526,Bose SoundSport Headphones,1,99.99,2019-07-28 12:05:00,17 Highland St, Austin,TX,73301 +229527,Bose SoundSport Headphones,1,99.99,2019-07-10 14:36:00,352 2nd St, Portland,OR,97035 +229528,Bose SoundSport Headphones,1,99.99,2019-07-31 06:04:00,832 Madison St, Boston,MA,02215 +229529,AAA Batteries (4-pack),1,2.99,2019-07-09 08:37:00,318 5th St, Los Angeles,CA,90001 +229530,27in FHD Monitor,1,149.99,2019-07-08 17:26:00,89 Jackson St, New York City,NY,10001 +229531,AA Batteries (4-pack),1,3.84,2019-07-26 14:20:00,84 7th St, Boston,MA,02215 +229532,AA Batteries (4-pack),1,3.84,2019-07-26 11:07:00,404 Lake St, Los Angeles,CA,90001 +229533,27in 4K Gaming Monitor,1,389.99,2019-07-20 07:34:00,80 13th St, Portland,OR,97035 +229533,Lightning Charging Cable,1,14.95,2019-07-20 07:34:00,80 13th St, Portland,OR,97035 +229534,Wired Headphones,1,11.99,2019-07-17 17:03:00,104 12th St, Atlanta,GA,30301 +229535,AAA Batteries (4-pack),3,2.99,2019-07-08 23:17:00,470 Hill St, Dallas,TX,75001 +229536,Bose SoundSport Headphones,1,99.99,2019-07-26 14:02:00,956 Willow St, Dallas,TX,75001 +229537,AAA Batteries (4-pack),1,2.99,2019-07-06 12:15:00,109 Park St, Los Angeles,CA,90001 +229538,Lightning Charging Cable,2,14.95,2019-07-26 20:19:00,630 9th St, Atlanta,GA,30301 +229539,Bose SoundSport Headphones,1,99.99,2019-07-10 12:28:00,696 11th St, Dallas,TX,75001 +229540,27in 4K Gaming Monitor,1,389.99,2019-07-13 11:11:00,74 River St, Portland,OR,97035 +229541,AA Batteries (4-pack),1,3.84,2019-07-25 16:27:00,176 Madison St, San Francisco,CA,94016 +229542,Bose SoundSport Headphones,1,99.99,2019-07-07 18:00:00,645 4th St, New York City,NY,10001 +229543,Lightning Charging Cable,1,14.95,2019-07-14 13:43:00,387 10th St, Boston,MA,02215 +229544,34in Ultrawide Monitor,1,379.99,2019-07-09 09:36:00,948 11th St, Boston,MA,02215 +229545,Macbook Pro Laptop,1,1700.0,2019-07-06 17:14:00,65 1st St, New York City,NY,10001 +229546,Bose SoundSport Headphones,1,99.99,2019-07-30 16:36:00,949 Maple St, San Francisco,CA,94016 +229547,27in 4K Gaming Monitor,1,389.99,2019-07-01 21:01:00,970 Hill St, Dallas,TX,75001 +229548,AA Batteries (4-pack),1,3.84,2019-07-04 23:10:00,170 Chestnut St, Atlanta,GA,30301 +229549,Lightning Charging Cable,1,14.95,2019-07-24 15:02:00,814 Center St, Boston,MA,02215 +229550,Lightning Charging Cable,1,14.95,2019-07-12 19:21:00,104 Lakeview St, Seattle,WA,98101 +229551,Bose SoundSport Headphones,1,99.99,2019-07-04 10:56:00,141 Spruce St, Atlanta,GA,30301 +229552,AAA Batteries (4-pack),6,2.99,2019-07-11 07:30:00,797 Adams St, Los Angeles,CA,90001 +229553,Bose SoundSport Headphones,1,99.99,2019-07-29 13:14:00,597 1st St, San Francisco,CA,94016 +229554,ThinkPad Laptop,1,999.99,2019-07-23 16:47:00,727 Main St, Los Angeles,CA,90001 +229555,Lightning Charging Cable,1,14.95,2019-07-13 07:48:00,813 Cedar St, New York City,NY,10001 +229556,Bose SoundSport Headphones,1,99.99,2019-07-13 20:22:00,952 4th St, Atlanta,GA,30301 +229557,Flatscreen TV,1,300.0,2019-07-11 12:59:00,734 Dogwood St, San Francisco,CA,94016 +229558,Bose SoundSport Headphones,1,99.99,2019-07-10 17:23:00,518 West St, New York City,NY,10001 +229559,ThinkPad Laptop,1,999.99,2019-07-27 16:31:00,133 13th St, Dallas,TX,75001 +229560,Wired Headphones,1,11.99,2019-07-25 16:38:00,362 Chestnut St, Los Angeles,CA,90001 +229561,USB-C Charging Cable,1,11.95,2019-07-25 09:08:00,965 Pine St, New York City,NY,10001 +229562,Lightning Charging Cable,1,14.95,2019-07-17 20:03:00,565 Wilson St, San Francisco,CA,94016 +229563,USB-C Charging Cable,1,11.95,2019-07-18 12:55:00,984 River St, New York City,NY,10001 +229564,34in Ultrawide Monitor,1,379.99,2019-07-16 14:44:00,466 7th St, Los Angeles,CA,90001 +229565,Bose SoundSport Headphones,1,99.99,2019-07-05 01:28:00,718 8th St, Atlanta,GA,30301 +229566,Flatscreen TV,1,300.0,2019-07-28 19:20:00,492 South St, Los Angeles,CA,90001 +229567,27in 4K Gaming Monitor,1,389.99,2019-07-28 07:10:00,462 Chestnut St, Seattle,WA,98101 +229568,Apple Airpods Headphones,1,150.0,2019-07-30 06:58:00,39 9th St, Dallas,TX,75001 +229569,AAA Batteries (4-pack),1,2.99,2019-07-27 10:09:00,900 Lake St, New York City,NY,10001 +229570,iPhone,1,700.0,2019-07-09 15:13:00,903 Jefferson St, San Francisco,CA,94016 +229571,Wired Headphones,1,11.99,2019-07-07 19:47:00,764 Wilson St, Dallas,TX,75001 +229572,27in FHD Monitor,1,149.99,2019-07-01 11:01:00,549 Ridge St, Atlanta,GA,30301 +229573,AAA Batteries (4-pack),1,2.99,2019-07-18 15:19:00,552 Ridge St, New York City,NY,10001 +229574,Lightning Charging Cable,1,14.95,2019-07-13 16:31:00,189 Highland St, Dallas,TX,75001 +229575,27in 4K Gaming Monitor,1,389.99,2019-07-19 08:56:00,608 8th St, Atlanta,GA,30301 +229576,Flatscreen TV,1,300.0,2019-07-17 08:21:00,745 Madison St, Boston,MA,02215 +229577,AAA Batteries (4-pack),5,2.99,2019-07-18 12:29:00,156 Pine St, Portland,OR,97035 +229578,Wired Headphones,1,11.99,2019-07-07 16:18:00,120 Ridge St, Austin,TX,73301 +229579,iPhone,1,700.0,2019-07-15 18:26:00,349 Meadow St, San Francisco,CA,94016 +229580,27in 4K Gaming Monitor,1,389.99,2019-07-10 14:11:00,58 4th St, Boston,MA,02215 +229581,27in FHD Monitor,1,149.99,2019-07-09 10:52:00,871 Forest St, New York City,NY,10001 +229582,Wired Headphones,1,11.99,2019-07-26 12:27:00,74 4th St, San Francisco,CA,94016 +229583,Macbook Pro Laptop,1,1700.0,2019-07-15 13:01:00,538 Highland St, Seattle,WA,98101 +229584,iPhone,1,700.0,2019-07-21 13:06:00,334 Center St, San Francisco,CA,94016 +229585,Wired Headphones,1,11.99,2019-07-04 08:39:00,589 Lincoln St, Atlanta,GA,30301 +229586,AAA Batteries (4-pack),2,2.99,2019-07-13 19:18:00,5 Lake St, Dallas,TX,75001 +229587,AAA Batteries (4-pack),1,2.99,2019-07-06 22:28:00,542 8th St, Seattle,WA,98101 +229588,Bose SoundSport Headphones,1,99.99,2019-07-28 12:35:00,725 5th St, Dallas,TX,75001 +229589,Wired Headphones,1,11.99,2019-07-21 23:31:00,2 13th St, Austin,TX,73301 +229589,AAA Batteries (4-pack),1,2.99,2019-07-21 23:31:00,2 13th St, Austin,TX,73301 +229590,Apple Airpods Headphones,1,150.0,2019-07-24 10:33:00,857 14th St, Los Angeles,CA,90001 +229590,USB-C Charging Cable,1,11.95,2019-07-24 10:33:00,857 14th St, Los Angeles,CA,90001 +229591,20in Monitor,1,109.99,2019-07-25 15:03:00,950 Dogwood St, Portland,OR,97035 +229592,Wired Headphones,1,11.99,2019-07-04 21:52:00,205 5th St, Dallas,TX,75001 +229593,AA Batteries (4-pack),1,3.84,2019-07-23 09:20:00,516 6th St, Atlanta,GA,30301 +229594,Apple Airpods Headphones,1,150.0,2019-07-15 08:01:00,523 12th St, Atlanta,GA,30301 +229595,USB-C Charging Cable,1,11.95,2019-07-24 18:09:00,657 2nd St, New York City,NY,10001 +229596,AAA Batteries (4-pack),1,2.99,2019-07-10 10:37:00,934 6th St, Portland,OR,97035 +229597,ThinkPad Laptop,1,999.99,2019-07-31 18:12:00,324 10th St, Los Angeles,CA,90001 +229598,AAA Batteries (4-pack),1,2.99,2019-07-27 11:40:00,677 Highland St, Austin,TX,73301 +229599,Apple Airpods Headphones,1,150.0,2019-07-11 10:09:00,509 Hickory St, Austin,TX,73301 +229600,Google Phone,1,600.0,2019-07-22 09:23:00,44 Washington St, Boston,MA,02215 +229601,AAA Batteries (4-pack),1,2.99,2019-07-26 19:11:00,58 Hill St, Portland,OR,97035 +229602,Macbook Pro Laptop,1,1700.0,2019-07-11 20:19:00,163 7th St, San Francisco,CA,94016 +229603,USB-C Charging Cable,1,11.95,2019-07-19 14:03:00,642 Lakeview St, Austin,TX,73301 +229604,Lightning Charging Cable,2,14.95,2019-07-29 11:39:00,994 Ridge St, Seattle,WA,98101 +229605,Wired Headphones,1,11.99,2019-07-21 08:12:00,239 13th St, New York City,NY,10001 +229606,AAA Batteries (4-pack),1,2.99,2019-07-20 11:44:00,395 Adams St, Dallas,TX,75001 +229607,Bose SoundSport Headphones,1,99.99,2019-07-06 15:21:00,284 Wilson St, Los Angeles,CA,90001 +229608,Apple Airpods Headphones,1,150.0,2019-07-28 20:07:00,4 Cedar St, Portland,OR,97035 +229609,USB-C Charging Cable,1,11.95,2019-07-10 17:22:00,933 North St, Atlanta,GA,30301 +229610,AA Batteries (4-pack),1,3.84,2019-07-08 10:39:00,158 Maple St, Dallas,TX,75001 +229611,Bose SoundSport Headphones,1,99.99,2019-07-26 00:13:00,793 Pine St, San Francisco,CA,94016 +229612,Lightning Charging Cable,1,14.95,2019-07-20 20:37:00,696 Main St, Dallas,TX,75001 +229613,Lightning Charging Cable,1,14.95,2019-07-19 12:42:00,715 North St, Boston,MA,02215 +229614,AAA Batteries (4-pack),1,2.99,2019-07-16 20:13:00,706 South St, San Francisco,CA,94016 +229615,Lightning Charging Cable,1,14.95,2019-07-15 18:10:00,983 14th St, Dallas,TX,75001 +229616,Wired Headphones,1,11.99,2019-07-27 15:38:00,175 9th St, New York City,NY,10001 +229617,AA Batteries (4-pack),1,3.84,2019-07-13 10:12:00,890 River St, San Francisco,CA,94016 +229618,AAA Batteries (4-pack),2,2.99,2019-07-11 11:31:00,395 Lincoln St, San Francisco,CA,94016 +229619,AAA Batteries (4-pack),3,2.99,2019-07-10 17:17:00,525 Wilson St, San Francisco,CA,94016 +229620,Lightning Charging Cable,1,14.95,2019-07-17 09:39:00,709 Forest St, Dallas,TX,75001 +229621,Wired Headphones,1,11.99,2019-07-28 03:09:00,297 9th St, Seattle,WA,98101 +229622,Wired Headphones,1,11.99,2019-07-19 13:15:00,213 Elm St, Los Angeles,CA,90001 +229623,Apple Airpods Headphones,1,150.0,2019-07-17 15:18:00,99 Hickory St, New York City,NY,10001 +229624,Bose SoundSport Headphones,1,99.99,2019-07-18 04:56:00,734 North St, San Francisco,CA,94016 +229625,27in FHD Monitor,1,149.99,2019-07-16 14:27:00,838 South St, Boston,MA,02215 +229625,Wired Headphones,1,11.99,2019-07-16 14:27:00,838 South St, Boston,MA,02215 +229626,Lightning Charging Cable,1,14.95,2019-07-14 14:45:00,769 Lincoln St, San Francisco,CA,94016 +229627,iPhone,1,700.0,2019-07-01 17:27:00,149 River St, Boston,MA,02215 +229628,Lightning Charging Cable,1,14.95,2019-07-31 21:56:00,417 Pine St, Boston,MA,02215 +229629,AAA Batteries (4-pack),4,2.99,2019-07-29 02:26:00,581 Lakeview St, Los Angeles,CA,90001 +229630,AAA Batteries (4-pack),1,2.99,2019-07-02 12:22:00,370 Hill St, Austin,TX,73301 +229631,AAA Batteries (4-pack),1,2.99,2019-07-26 12:24:00,126 2nd St, San Francisco,CA,94016 +229632,34in Ultrawide Monitor,1,379.99,2019-07-20 11:28:00,645 Church St, Los Angeles,CA,90001 +229633,USB-C Charging Cable,1,11.95,2019-07-10 00:01:00,446 5th St, Portland,OR,97035 +229634,Google Phone,1,600.0,2019-07-24 20:39:00,983 6th St, New York City,NY,10001 +229634,USB-C Charging Cable,1,11.95,2019-07-24 20:39:00,983 6th St, New York City,NY,10001 +229635,USB-C Charging Cable,1,11.95,2019-07-28 10:50:00,672 Cherry St, New York City,NY,10001 +229636,Wired Headphones,1,11.99,2019-07-14 16:01:00,3 11th St, San Francisco,CA,94016 +229637,Lightning Charging Cable,1,14.95,2019-07-11 15:27:00,174 Lake St, New York City,NY,10001 +229638,AAA Batteries (4-pack),2,2.99,2019-07-01 10:51:00,573 Sunset St, New York City,NY,10001 +229639,USB-C Charging Cable,1,11.95,2019-07-27 10:33:00,856 Sunset St, Boston,MA,02215 +229640,34in Ultrawide Monitor,1,379.99,2019-07-03 22:19:00,515 South St, Portland,OR,97035 +229641,Wired Headphones,1,11.99,2019-07-15 14:44:00,871 7th St, Austin,TX,73301 +229642,27in FHD Monitor,1,149.99,2019-07-09 15:12:00,581 Cherry St, Los Angeles,CA,90001 +229643,Google Phone,1,600.0,2019-07-16 20:54:00,249 Johnson St, Dallas,TX,75001 +229644,Apple Airpods Headphones,1,150.0,2019-07-20 11:03:00,913 Center St, San Francisco,CA,94016 +229645,Lightning Charging Cable,1,14.95,2019-07-09 12:19:00,333 2nd St, New York City,NY,10001 +229646,34in Ultrawide Monitor,1,379.99,2019-07-20 20:21:00,628 Maple St, Seattle,WA,98101 +229646,USB-C Charging Cable,1,11.95,2019-07-20 20:21:00,628 Maple St, Seattle,WA,98101 +229647,Wired Headphones,3,11.99,2019-07-17 19:14:00,846 4th St, Los Angeles,CA,90001 +229648,AA Batteries (4-pack),1,3.84,2019-07-13 18:33:00,224 Cherry St, Boston,MA,02215 +229649,AAA Batteries (4-pack),1,2.99,2019-07-27 12:01:00,74 14th St, Atlanta,GA,30301 +229650,AA Batteries (4-pack),1,3.84,2019-07-27 21:07:00,941 Lincoln St, San Francisco,CA,94016 +229651,AA Batteries (4-pack),1,3.84,2019-07-06 09:27:00,761 4th St, Dallas,TX,75001 +229652,Apple Airpods Headphones,1,150.0,2019-07-06 20:30:00,809 River St, San Francisco,CA,94016 +229653,Wired Headphones,1,11.99,2019-07-13 15:49:00,628 Johnson St, Portland,OR,97035 +229654,Apple Airpods Headphones,1,150.0,2019-07-17 11:14:00,605 14th St, Dallas,TX,75001 +229655,AAA Batteries (4-pack),4,2.99,2019-07-16 15:46:00,370 Jefferson St, New York City,NY,10001 +229656,27in FHD Monitor,1,149.99,2019-07-06 08:04:00,95 Hickory St, San Francisco,CA,94016 +229657,Apple Airpods Headphones,1,150.0,2019-07-10 18:58:00,407 South St, New York City,NY,10001 +229658,iPhone,1,700.0,2019-07-13 19:05:00,11 Elm St, New York City,NY,10001 +229659,AAA Batteries (4-pack),1,2.99,2019-07-22 23:26:00,59 Cedar St, San Francisco,CA,94016 +229660,Apple Airpods Headphones,1,150.0,2019-07-03 20:41:00,892 Lakeview St, San Francisco,CA,94016 +229661,Lightning Charging Cable,1,14.95,2019-07-26 13:25:00,842 Johnson St, San Francisco,CA,94016 +229662,iPhone,1,700.0,2019-07-02 12:02:00,193 Madison St, San Francisco,CA,94016 +229663,Apple Airpods Headphones,1,150.0,2019-07-21 18:58:00,561 7th St, Austin,TX,73301 +229664,27in FHD Monitor,1,149.99,2019-07-11 19:33:00,81 Jefferson St, Los Angeles,CA,90001 +229665,LG Dryer,1,600.0,2019-07-19 14:50:00,406 Elm St, Austin,TX,73301 +229666,Lightning Charging Cable,1,14.95,2019-07-25 11:16:00,955 River St, Atlanta,GA,30301 +229667,AA Batteries (4-pack),1,3.84,2019-07-06 18:53:00,785 Lake St, San Francisco,CA,94016 +229668,USB-C Charging Cable,1,11.95,2019-07-06 07:23:00,820 8th St, San Francisco,CA,94016 +229669,34in Ultrawide Monitor,1,379.99,2019-07-18 12:45:00,694 Wilson St, Seattle,WA,98101 +229670,AAA Batteries (4-pack),2,2.99,2019-07-17 19:40:00,214 Church St, Atlanta,GA,30301 +229671,Lightning Charging Cable,1,14.95,2019-07-30 08:34:00,874 North St, San Francisco,CA,94016 +229672,ThinkPad Laptop,1,999.99,2019-07-25 10:47:00,429 8th St, Boston,MA,02215 +229673,iPhone,1,700.0,2019-07-02 11:00:00,786 10th St, San Francisco,CA,94016 +229673,Lightning Charging Cable,1,14.95,2019-07-02 11:00:00,786 10th St, San Francisco,CA,94016 +229674,Apple Airpods Headphones,1,150.0,2019-07-31 03:37:00,549 North St, Austin,TX,73301 +229675,Macbook Pro Laptop,1,1700.0,2019-07-15 20:58:00,676 Ridge St, Austin,TX,73301 +229676,Lightning Charging Cable,1,14.95,2019-07-21 14:49:00,172 Center St, Atlanta,GA,30301 +229677,AA Batteries (4-pack),2,3.84,2019-07-23 19:05:00,326 Johnson St, Los Angeles,CA,90001 +229678,LG Dryer,1,600.0,2019-07-13 12:36:00,544 Spruce St, Boston,MA,02215 +229679,Apple Airpods Headphones,1,150.0,2019-07-13 13:07:00,205 Hickory St, New York City,NY,10001 +229680,Apple Airpods Headphones,1,150.0,2019-07-14 09:40:00,919 Cedar St, San Francisco,CA,94016 +229681,USB-C Charging Cable,1,11.95,2019-07-23 22:24:00,227 Hickory St, New York City,NY,10001 +229682,AA Batteries (4-pack),1,3.84,2019-07-07 20:37:00,529 Chestnut St, Portland,OR,97035 +229683,USB-C Charging Cable,1,11.95,2019-07-07 13:37:00,955 9th St, Los Angeles,CA,90001 +229684,Lightning Charging Cable,1,14.95,2019-07-20 21:04:00,25 River St, Portland,OR,97035 +229685,AA Batteries (4-pack),2,3.84,2019-07-18 14:11:00,262 Lincoln St, Austin,TX,73301 +229686,Lightning Charging Cable,1,14.95,2019-07-26 16:20:00,687 2nd St, Dallas,TX,75001 +229687,ThinkPad Laptop,1,999.99,2019-07-26 08:45:00,138 Willow St, Dallas,TX,75001 +229688,Lightning Charging Cable,1,14.95,2019-07-12 13:25:00,299 12th St, Atlanta,GA,30301 +229689,Bose SoundSport Headphones,1,99.99,2019-07-05 15:05:00,870 Dogwood St, San Francisco,CA,94016 +229690,27in FHD Monitor,1,149.99,2019-07-01 16:19:00,673 Spruce St, San Francisco,CA,94016 +229691,iPhone,1,700.0,2019-07-07 21:52:00,829 1st St, Seattle,WA,98101 +229692,Lightning Charging Cable,1,14.95,2019-08-01 02:39:00,10 12th St, Los Angeles,CA,90001 +229693,AAA Batteries (4-pack),1,2.99,2019-07-13 08:50:00,101 9th St, Seattle,WA,98101 +229694,ThinkPad Laptop,1,999.99,2019-07-31 20:56:00,970 North St, Austin,TX,73301 +229695,Lightning Charging Cable,1,14.95,2019-07-08 11:46:00,217 Pine St, New York City,NY,10001 +229696,AA Batteries (4-pack),1,3.84,2019-07-25 22:35:00,945 Forest St, San Francisco,CA,94016 +229697,Wired Headphones,1,11.99,2019-07-07 19:50:00,577 Center St, Los Angeles,CA,90001 +229698,Bose SoundSport Headphones,1,99.99,2019-07-14 18:05:00,705 Elm St, Dallas,TX,75001 +229699,Google Phone,1,600.0,2019-07-12 11:03:00,405 5th St, Dallas,TX,75001 +229699,USB-C Charging Cable,1,11.95,2019-07-12 11:03:00,405 5th St, Dallas,TX,75001 +229700,AAA Batteries (4-pack),1,2.99,2019-08-01 00:44:00,27 Lakeview St, San Francisco,CA,94016 +229701,27in FHD Monitor,1,149.99,2019-07-25 10:22:00,696 Adams St, Los Angeles,CA,90001 +229702,AAA Batteries (4-pack),1,2.99,2019-07-22 11:55:00,52 Jackson St, Dallas,TX,75001 +229703,Lightning Charging Cable,1,14.95,2019-07-13 19:37:00,882 Cherry St, Austin,TX,73301 +229704,USB-C Charging Cable,2,11.95,2019-07-29 11:02:00,898 Walnut St, Los Angeles,CA,90001 +229705,Google Phone,1,600.0,2019-07-24 14:33:00,13 Pine St, Los Angeles,CA,90001 +229706,Wired Headphones,1,11.99,2019-07-10 18:28:00,823 North St, New York City,NY,10001 +229707,Lightning Charging Cable,1,14.95,2019-07-13 13:56:00,591 13th St, Boston,MA,02215 +229708,Lightning Charging Cable,1,14.95,2019-07-14 13:08:00,953 5th St, San Francisco,CA,94016 +229709,Flatscreen TV,1,300.0,2019-07-23 18:48:00,443 Wilson St, New York City,NY,10001 +229710,Bose SoundSport Headphones,1,99.99,2019-07-01 14:55:00,64 North St, Los Angeles,CA,90001 +229711,Apple Airpods Headphones,1,150.0,2019-07-03 13:13:00,68 Maple St, Austin,TX,73301 +229712,AA Batteries (4-pack),1,3.84,2019-07-12 23:20:00,241 Chestnut St, Los Angeles,CA,90001 +229713,Lightning Charging Cable,1,14.95,2019-07-10 17:23:00,276 Main St, New York City,NY,10001 +229714,Macbook Pro Laptop,1,1700.0,2019-07-30 19:13:00,594 Jackson St, San Francisco,CA,94016 +229715,Wired Headphones,1,11.99,2019-07-22 11:27:00,359 5th St, San Francisco,CA,94016 +229716,AA Batteries (4-pack),2,3.84,2019-07-27 08:04:00,213 Cedar St, Austin,TX,73301 +229717,AA Batteries (4-pack),1,3.84,2019-07-18 15:16:00,138 11th St, Seattle,WA,98101 +229718,Lightning Charging Cable,1,14.95,2019-07-31 17:32:00,152 13th St, San Francisco,CA,94016 +229719,Lightning Charging Cable,1,14.95,2019-07-03 13:45:00,684 Hill St, San Francisco,CA,94016 +229720,27in 4K Gaming Monitor,1,389.99,2019-07-09 19:33:00,95 Chestnut St, New York City,NY,10001 +229721,USB-C Charging Cable,1,11.95,2019-07-17 03:14:00,728 Washington St, Los Angeles,CA,90001 +229722,Lightning Charging Cable,1,14.95,2019-07-23 09:50:00,640 Highland St, San Francisco,CA,94016 +229723,Google Phone,1,600.0,2019-07-04 10:02:00,641 Meadow St, New York City,NY,10001 +229724,USB-C Charging Cable,2,11.95,2019-07-16 18:06:00,677 Adams St, San Francisco,CA,94016 +229725,Lightning Charging Cable,1,14.95,2019-07-27 05:54:00,90 7th St, New York City,NY,10001 +229726,Bose SoundSport Headphones,1,99.99,2019-07-10 19:02:00,854 Cherry St, Portland,OR,97035 +229727,USB-C Charging Cable,1,11.95,2019-07-13 15:52:00,782 Johnson St, New York City,NY,10001 +229728,27in FHD Monitor,1,149.99,2019-07-22 16:30:00,276 Maple St, Dallas,TX,75001 +229729,Bose SoundSport Headphones,1,99.99,2019-07-22 18:50:00,6 Johnson St, San Francisco,CA,94016 +229730,27in FHD Monitor,1,149.99,2019-07-22 13:31:00,152 Dogwood St, San Francisco,CA,94016 +229731,AA Batteries (4-pack),1,3.84,2019-07-30 09:08:00,105 Cherry St, Atlanta,GA,30301 +229732,Apple Airpods Headphones,1,150.0,2019-07-11 12:07:00,583 11th St, Los Angeles,CA,90001 +229733,iPhone,1,700.0,2019-07-17 22:50:00,508 Maple St, Seattle,WA,98101 +229734,Macbook Pro Laptop,1,1700.0,2019-07-29 23:24:00,346 Willow St, Los Angeles,CA,90001 +229735,AAA Batteries (4-pack),1,2.99,2019-07-15 06:35:00,261 Jackson St, Atlanta,GA,30301 +229736,AAA Batteries (4-pack),2,2.99,2019-07-17 08:50:00,407 Highland St, Los Angeles,CA,90001 +229737,27in 4K Gaming Monitor,1,389.99,2019-07-19 01:33:00,939 7th St, Boston,MA,02215 +229738,Bose SoundSport Headphones,1,99.99,2019-07-28 21:40:00,249 Elm St, Los Angeles,CA,90001 +229739,Apple Airpods Headphones,1,150.0,2019-07-17 20:10:00,31 Adams St, San Francisco,CA,94016 +229740,Wired Headphones,1,11.99,2019-07-31 13:02:00,731 Park St, New York City,NY,10001 +229740,ThinkPad Laptop,1,999.99,2019-07-31 13:02:00,731 Park St, New York City,NY,10001 +229741,Wired Headphones,1,11.99,2019-07-08 10:24:00,560 2nd St, Boston,MA,02215 +229742,27in FHD Monitor,1,149.99,2019-07-30 17:49:00,286 Park St, Atlanta,GA,30301 +229743,Bose SoundSport Headphones,1,99.99,2019-07-23 21:37:00,417 Johnson St, San Francisco,CA,94016 +229744,iPhone,1,700.0,2019-07-23 09:34:00,94 West St, San Francisco,CA,94016 +229744,Wired Headphones,1,11.99,2019-07-23 09:34:00,94 West St, San Francisco,CA,94016 +229745,Apple Airpods Headphones,1,150.0,2019-07-20 06:46:00,999 14th St, Los Angeles,CA,90001 +229746,AAA Batteries (4-pack),1,2.99,2019-07-04 15:28:00,420 Church St, New York City,NY,10001 +229747,Lightning Charging Cable,1,14.95,2019-07-24 21:07:00,675 2nd St, Atlanta,GA,30301 +229748,AAA Batteries (4-pack),4,2.99,2019-07-24 15:10:00,36 6th St, New York City,NY,10001 +229749,ThinkPad Laptop,1,999.99,2019-07-26 00:00:00,3 Church St, New York City,NY,10001 +229750,Macbook Pro Laptop,1,1700.0,2019-07-04 09:29:00,855 14th St, Seattle,WA,98101 +229750,AA Batteries (4-pack),1,3.84,2019-07-04 09:29:00,855 14th St, Seattle,WA,98101 +229751,Macbook Pro Laptop,1,1700.0,2019-07-19 04:12:00,966 Maple St, Seattle,WA,98101 +229752,USB-C Charging Cable,2,11.95,2019-07-08 09:21:00,692 2nd St, Los Angeles,CA,90001 +229753,Wired Headphones,1,11.99,2019-07-12 18:34:00,488 2nd St, Portland,ME,04101 +229754,Macbook Pro Laptop,1,1700.0,2019-07-08 13:57:00,915 Cherry St, San Francisco,CA,94016 +229755,Lightning Charging Cable,1,14.95,2019-07-12 06:11:00,808 Dogwood St, Los Angeles,CA,90001 +229756,AA Batteries (4-pack),2,3.84,2019-07-27 21:20:00,662 River St, Portland,ME,04101 +229757,USB-C Charging Cable,1,11.95,2019-07-26 10:08:00,638 Main St, Los Angeles,CA,90001 +229758,Wired Headphones,1,11.99,2019-07-21 15:20:00,282 South St, Los Angeles,CA,90001 +229759,ThinkPad Laptop,1,999.99,2019-07-05 13:35:00,992 2nd St, New York City,NY,10001 +229760,AA Batteries (4-pack),1,3.84,2019-07-10 10:42:00,866 9th St, Austin,TX,73301 +229761,USB-C Charging Cable,1,11.95,2019-07-23 14:09:00,767 9th St, New York City,NY,10001 +229762,AA Batteries (4-pack),2,3.84,2019-07-28 14:39:00,734 Forest St, New York City,NY,10001 +229763,USB-C Charging Cable,1,11.95,2019-07-01 12:27:00,749 Cherry St, Boston,MA,02215 +229764,Wired Headphones,1,11.99,2019-07-29 16:38:00,840 2nd St, Dallas,TX,75001 +229765,USB-C Charging Cable,1,11.95,2019-07-27 11:30:00,716 Pine St, New York City,NY,10001 +229766,27in FHD Monitor,1,149.99,2019-07-24 15:49:00,554 10th St, Los Angeles,CA,90001 +229767,Bose SoundSport Headphones,1,99.99,2019-07-10 05:02:00,757 Adams St, San Francisco,CA,94016 +229768,USB-C Charging Cable,1,11.95,2019-07-18 10:25:00,417 13th St, Los Angeles,CA,90001 +229769,ThinkPad Laptop,1,999.99,2019-07-01 19:20:00,181 11th St, New York City,NY,10001 +229770,AAA Batteries (4-pack),1,2.99,2019-07-10 14:12:00,191 Adams St, New York City,NY,10001 +229771,AAA Batteries (4-pack),1,2.99,2019-07-26 19:25:00,231 Maple St, Seattle,WA,98101 +229772,AA Batteries (4-pack),1,3.84,2019-07-21 17:21:00,614 Ridge St, Los Angeles,CA,90001 +229773,AAA Batteries (4-pack),2,2.99,2019-07-21 00:00:00,625 1st St, Portland,OR,97035 +229774,AA Batteries (4-pack),4,3.84,2019-07-14 21:39:00,87 Elm St, Seattle,WA,98101 +229775,Apple Airpods Headphones,1,150.0,2019-07-11 07:27:00,675 Center St, Boston,MA,02215 +229776,Bose SoundSport Headphones,1,99.99,2019-07-28 20:11:00,849 Sunset St, San Francisco,CA,94016 +229777,Bose SoundSport Headphones,1,99.99,2019-07-05 10:31:00,606 Lakeview St, Los Angeles,CA,90001 +229778,ThinkPad Laptop,1,999.99,2019-07-04 12:49:00,565 Highland St, Los Angeles,CA,90001 +229779,AAA Batteries (4-pack),2,2.99,2019-07-10 00:43:00,677 Sunset St, San Francisco,CA,94016 +229780,27in FHD Monitor,1,149.99,2019-07-15 13:39:00,503 Madison St, San Francisco,CA,94016 +229781,USB-C Charging Cable,1,11.95,2019-07-24 23:24:00,404 Elm St, San Francisco,CA,94016 +229782,ThinkPad Laptop,1,999.99,2019-07-23 07:26:00,101 Adams St, Boston,MA,02215 +229783,Apple Airpods Headphones,1,150.0,2019-07-21 13:25:00,198 12th St, Boston,MA,02215 +229784,Vareebadd Phone,1,400.0,2019-07-22 00:10:00,636 Church St, San Francisco,CA,94016 +229785,Lightning Charging Cable,1,14.95,2019-07-02 23:29:00,481 Lincoln St, Los Angeles,CA,90001 +229786,iPhone,1,700.0,2019-07-18 10:50:00,905 Lakeview St, New York City,NY,10001 +229786,Wired Headphones,1,11.99,2019-07-18 10:50:00,905 Lakeview St, New York City,NY,10001 +229787,Bose SoundSport Headphones,1,99.99,2019-07-20 19:14:00,720 Jackson St, Dallas,TX,75001 +229788,Wired Headphones,1,11.99,2019-07-29 09:05:00,342 Johnson St, Atlanta,GA,30301 +229789,AAA Batteries (4-pack),1,2.99,2019-07-05 15:28:00,918 Lincoln St, New York City,NY,10001 +229790,Lightning Charging Cable,1,14.95,2019-07-05 16:35:00,202 5th St, San Francisco,CA,94016 +229791,ThinkPad Laptop,1,999.99,2019-07-19 10:32:00,734 2nd St, New York City,NY,10001 +229792,Bose SoundSport Headphones,1,99.99,2019-07-29 22:39:00,63 Cherry St, New York City,NY,10001 +229793,AA Batteries (4-pack),3,3.84,2019-07-28 22:25:00,40 5th St, Seattle,WA,98101 +229794,AAA Batteries (4-pack),1,2.99,2019-07-03 09:26:00,796 Washington St, Boston,MA,02215 +229795,Flatscreen TV,1,300.0,2019-07-23 16:56:00,674 Hill St, San Francisco,CA,94016 +229796,Flatscreen TV,1,300.0,2019-07-19 13:29:00,478 Church St, San Francisco,CA,94016 +229797,AA Batteries (4-pack),1,3.84,2019-07-18 21:03:00,365 Main St, Atlanta,GA,30301 +229798,20in Monitor,1,109.99,2019-07-26 00:23:00,222 Chestnut St, Los Angeles,CA,90001 +229799,Flatscreen TV,1,300.0,2019-07-17 18:53:00,830 13th St, New York City,NY,10001 +229800,Apple Airpods Headphones,1,150.0,2019-07-12 20:04:00,754 12th St, Dallas,TX,75001 +229801,iPhone,1,700.0,2019-07-26 23:53:00,141 Hickory St, San Francisco,CA,94016 +229801,Lightning Charging Cable,1,14.95,2019-07-26 23:53:00,141 Hickory St, San Francisco,CA,94016 +229802,Lightning Charging Cable,1,14.95,2019-07-27 11:48:00,307 5th St, New York City,NY,10001 +229803,Apple Airpods Headphones,1,150.0,2019-07-27 15:44:00,686 Ridge St, Austin,TX,73301 +229804,AAA Batteries (4-pack),3,2.99,2019-07-30 19:24:00,352 South St, San Francisco,CA,94016 +229805,Bose SoundSport Headphones,1,99.99,2019-07-11 17:35:00,833 Meadow St, Seattle,WA,98101 +229806,iPhone,1,700.0,2019-07-10 14:24:00,998 Pine St, Atlanta,GA,30301 +229807,Macbook Pro Laptop,1,1700.0,2019-07-07 16:09:00,475 8th St, Seattle,WA,98101 +229808,USB-C Charging Cable,1,11.95,2019-07-14 18:15:00,443 Chestnut St, San Francisco,CA,94016 +229809,Bose SoundSport Headphones,1,99.99,2019-07-30 15:40:00,789 9th St, Seattle,WA,98101 +229810,Bose SoundSport Headphones,1,99.99,2019-07-03 07:16:00,94 Maple St, Atlanta,GA,30301 +229811,Google Phone,1,600.0,2019-07-14 17:17:00,247 Johnson St, San Francisco,CA,94016 +229811,USB-C Charging Cable,1,11.95,2019-07-14 17:17:00,247 Johnson St, San Francisco,CA,94016 +229812,AA Batteries (4-pack),3,3.84,2019-07-12 19:28:00,123 Johnson St, Los Angeles,CA,90001 +229813,USB-C Charging Cable,1,11.95,2019-07-07 22:40:00,519 Walnut St, Los Angeles,CA,90001 +229814,AAA Batteries (4-pack),1,2.99,2019-07-09 16:32:00,105 Forest St, New York City,NY,10001 +229815,Apple Airpods Headphones,1,150.0,2019-07-20 13:36:00,217 Wilson St, Boston,MA,02215 +229816,Apple Airpods Headphones,1,150.0,2019-07-12 08:19:00,449 Willow St, Boston,MA,02215 +229817,AA Batteries (4-pack),3,3.84,2019-07-21 13:14:00,805 Jackson St, Atlanta,GA,30301 +229818,AA Batteries (4-pack),2,3.84,2019-07-04 15:44:00,705 West St, Portland,OR,97035 +229819,Lightning Charging Cable,1,14.95,2019-07-25 00:25:00,972 Park St, San Francisco,CA,94016 +229820,AAA Batteries (4-pack),1,2.99,2019-07-10 15:29:00,178 Wilson St, Los Angeles,CA,90001 +229821,USB-C Charging Cable,1,11.95,2019-07-20 14:26:00,439 14th St, Boston,MA,02215 +229822,Wired Headphones,1,11.99,2019-07-11 17:53:00,371 Pine St, Boston,MA,02215 +229823,iPhone,1,700.0,2019-07-15 11:49:00,488 Hill St, New York City,NY,10001 +229824,AAA Batteries (4-pack),1,2.99,2019-07-24 22:01:00,359 7th St, Dallas,TX,75001 +229825,Wired Headphones,1,11.99,2019-07-11 10:52:00,535 Adams St, San Francisco,CA,94016 +229826,AAA Batteries (4-pack),1,2.99,2019-07-26 13:13:00,574 Hickory St, Atlanta,GA,30301 +229827,Lightning Charging Cable,1,14.95,2019-07-16 18:37:00,272 13th St, Los Angeles,CA,90001 +229828,Apple Airpods Headphones,1,150.0,2019-07-07 11:20:00,160 8th St, Los Angeles,CA,90001 +229829,27in FHD Monitor,1,149.99,2019-07-02 10:16:00,292 7th St, New York City,NY,10001 +229830,34in Ultrawide Monitor,1,379.99,2019-07-26 15:22:00,510 Hickory St, Atlanta,GA,30301 +229831,Wired Headphones,1,11.99,2019-07-28 01:27:00,578 Jackson St, Los Angeles,CA,90001 +229832,Apple Airpods Headphones,1,150.0,2019-07-01 12:58:00,876 Forest St, Boston,MA,02215 +229833,Google Phone,1,600.0,2019-07-16 20:52:00,202 Pine St, San Francisco,CA,94016 +229833,USB-C Charging Cable,1,11.95,2019-07-16 20:52:00,202 Pine St, San Francisco,CA,94016 +229834,Google Phone,1,600.0,2019-07-11 22:38:00,688 South St, Los Angeles,CA,90001 +229835,iPhone,1,700.0,2019-07-05 13:06:00,10 4th St, Los Angeles,CA,90001 +229836,27in 4K Gaming Monitor,1,389.99,2019-07-08 08:42:00,15 Church St, New York City,NY,10001 +229837,AAA Batteries (4-pack),4,2.99,2019-07-29 09:43:00,964 Wilson St, San Francisco,CA,94016 +229838,AAA Batteries (4-pack),2,2.99,2019-07-01 10:23:00,816 Dogwood St, Los Angeles,CA,90001 +229839,Bose SoundSport Headphones,1,99.99,2019-07-08 10:11:00,72 Cedar St, Austin,TX,73301 +229840,Bose SoundSport Headphones,1,99.99,2019-07-07 07:19:00,165 West St, San Francisco,CA,94016 +229841,Macbook Pro Laptop,1,1700.0,2019-07-02 17:31:00,767 1st St, Seattle,WA,98101 +229842,AAA Batteries (4-pack),1,2.99,2019-07-11 09:25:00,3 Meadow St, New York City,NY,10001 +229843,AA Batteries (4-pack),1,3.84,2019-07-21 19:29:00,648 11th St, Los Angeles,CA,90001 +229844,AA Batteries (4-pack),1,3.84,2019-07-02 10:03:00,929 7th St, Portland,OR,97035 +229845,Apple Airpods Headphones,1,150.0,2019-07-31 12:43:00,46 Washington St, Dallas,TX,75001 +229846,USB-C Charging Cable,1,11.95,2019-07-18 10:23:00,212 Ridge St, San Francisco,CA,94016 +229847,20in Monitor,1,109.99,2019-07-30 09:22:00,983 12th St, Atlanta,GA,30301 +229848,Lightning Charging Cable,1,14.95,2019-07-24 20:56:00,386 14th St, Dallas,TX,75001 +229849,AA Batteries (4-pack),1,3.84,2019-07-04 12:38:00,467 Madison St, Austin,TX,73301 +229850,Bose SoundSport Headphones,1,99.99,2019-07-05 17:06:00,76 South St, Boston,MA,02215 +229851,Wired Headphones,1,11.99,2019-07-25 11:40:00,367 1st St, San Francisco,CA,94016 +229852,27in FHD Monitor,1,149.99,2019-07-04 12:30:00,984 River St, Los Angeles,CA,90001 +229853,Wired Headphones,2,11.99,2019-07-05 16:57:00,413 4th St, Dallas,TX,75001 +229854,AA Batteries (4-pack),1,3.84,2019-07-06 22:03:00,15 10th St, Los Angeles,CA,90001 +229855,Bose SoundSport Headphones,1,99.99,2019-07-08 13:27:00,435 7th St, Seattle,WA,98101 +229856,Apple Airpods Headphones,1,150.0,2019-07-22 22:03:00,920 Adams St, San Francisco,CA,94016 +229857,USB-C Charging Cable,1,11.95,2019-07-31 11:29:00,654 11th St, Atlanta,GA,30301 +229858,USB-C Charging Cable,1,11.95,2019-07-12 04:54:00,104 14th St, Dallas,TX,75001 +229859,AA Batteries (4-pack),1,3.84,2019-07-09 12:56:00,498 River St, San Francisco,CA,94016 +229860,20in Monitor,1,109.99,2019-07-15 10:36:00,18 Cedar St, Dallas,TX,75001 +229861,Macbook Pro Laptop,1,1700.0,2019-07-21 01:04:00,715 Dogwood St, New York City,NY,10001 +229862,27in 4K Gaming Monitor,1,389.99,2019-07-15 11:34:00,782 13th St, Portland,OR,97035 +229863,Apple Airpods Headphones,1,150.0,2019-07-09 00:21:00,679 10th St, San Francisco,CA,94016 +229864,AAA Batteries (4-pack),1,2.99,2019-07-18 10:15:00,450 2nd St, San Francisco,CA,94016 +229865,AAA Batteries (4-pack),1,2.99,2019-07-14 17:02:00,392 Spruce St, San Francisco,CA,94016 +229866,34in Ultrawide Monitor,1,379.99,2019-07-13 13:41:00,712 Adams St, Seattle,WA,98101 +229867,AAA Batteries (4-pack),1,2.99,2019-07-04 15:11:00,246 Park St, Los Angeles,CA,90001 +229868,USB-C Charging Cable,1,11.95,2019-07-16 13:30:00,801 11th St, Los Angeles,CA,90001 +229869,AA Batteries (4-pack),2,3.84,2019-07-25 16:54:00,533 10th St, Los Angeles,CA,90001 +229870,Macbook Pro Laptop,1,1700.0,2019-07-20 20:46:00,117 5th St, Dallas,TX,75001 +229871,Lightning Charging Cable,1,14.95,2019-07-09 08:27:00,311 Jackson St, San Francisco,CA,94016 +229871,AAA Batteries (4-pack),1,2.99,2019-07-09 08:27:00,311 Jackson St, San Francisco,CA,94016 +229872,Lightning Charging Cable,1,14.95,2019-07-19 11:18:00,478 Willow St, Boston,MA,02215 +229873,AAA Batteries (4-pack),1,2.99,2019-07-29 11:48:00,787 Madison St, San Francisco,CA,94016 +229874,Lightning Charging Cable,1,14.95,2019-07-26 13:01:00,172 Center St, Atlanta,GA,30301 +229875,AA Batteries (4-pack),1,3.84,2019-07-04 14:22:00,718 Spruce St, San Francisco,CA,94016 +229876,Wired Headphones,1,11.99,2019-07-08 08:36:00,868 Chestnut St, New York City,NY,10001 +229877,Apple Airpods Headphones,1,150.0,2019-07-26 03:01:00,662 Chestnut St, San Francisco,CA,94016 +229878,Bose SoundSport Headphones,1,99.99,2019-07-07 09:30:00,763 Sunset St, San Francisco,CA,94016 +229879,Wired Headphones,1,11.99,2019-07-12 16:52:00,938 9th St, Seattle,WA,98101 +229880,Lightning Charging Cable,1,14.95,2019-07-21 10:03:00,758 Cedar St, San Francisco,CA,94016 +229881,AAA Batteries (4-pack),1,2.99,2019-07-05 10:38:00,399 Maple St, New York City,NY,10001 +229882,Bose SoundSport Headphones,1,99.99,2019-07-10 07:48:00,347 Center St, San Francisco,CA,94016 +229883,27in FHD Monitor,1,149.99,2019-07-26 14:23:00,339 Adams St, San Francisco,CA,94016 +229884,Macbook Pro Laptop,1,1700.0,2019-07-12 23:08:00,559 Lake St, Austin,TX,73301 +229885,Apple Airpods Headphones,1,150.0,2019-07-27 19:33:00,356 2nd St, San Francisco,CA,94016 +229886,ThinkPad Laptop,1,999.99,2019-07-20 08:40:00,556 Lakeview St, Dallas,TX,75001 +229887,Google Phone,1,600.0,2019-07-13 19:08:00,389 Church St, Boston,MA,02215 +229887,USB-C Charging Cable,1,11.95,2019-07-13 19:08:00,389 Church St, Boston,MA,02215 +229888,Lightning Charging Cable,1,14.95,2019-07-20 15:15:00,213 Sunset St, San Francisco,CA,94016 +229889,AA Batteries (4-pack),1,3.84,2019-07-22 12:29:00,914 Willow St, Boston,MA,02215 +229890,AAA Batteries (4-pack),1,2.99,2019-07-15 11:04:00,494 4th St, San Francisco,CA,94016 +229891,iPhone,1,700.0,2019-07-03 18:32:00,110 Hickory St, Los Angeles,CA,90001 +229892,AA Batteries (4-pack),1,3.84,2019-07-26 13:33:00,642 Walnut St, Portland,ME,04101 +229893,34in Ultrawide Monitor,1,379.99,2019-07-18 19:52:00,125 6th St, San Francisco,CA,94016 +229894,Apple Airpods Headphones,1,150.0,2019-07-03 17:16:00,37 Madison St, Dallas,TX,75001 +229895,Apple Airpods Headphones,1,150.0,2019-07-13 08:47:00,910 5th St, Los Angeles,CA,90001 +229896,Apple Airpods Headphones,1,150.0,2019-07-24 18:21:00,760 Washington St, Boston,MA,02215 +229897,Wired Headphones,1,11.99,2019-07-14 09:22:00,205 5th St, Los Angeles,CA,90001 +229898,27in 4K Gaming Monitor,1,389.99,2019-07-08 08:13:00,758 6th St, Portland,OR,97035 +229899,Apple Airpods Headphones,1,150.0,2019-07-09 21:59:00,573 Main St, Seattle,WA,98101 +229900,20in Monitor,1,109.99,2019-07-23 12:57:00,120 9th St, Boston,MA,02215 +229901,27in FHD Monitor,1,149.99,2019-07-28 11:10:00,609 Center St, Los Angeles,CA,90001 +229902,AAA Batteries (4-pack),1,2.99,2019-07-04 15:54:00,644 Adams St, Los Angeles,CA,90001 +229903,Wired Headphones,1,11.99,2019-07-21 17:46:00,973 Hill St, San Francisco,CA,94016 +229904,AAA Batteries (4-pack),1,2.99,2019-07-18 12:30:00,816 Dogwood St, Los Angeles,CA,90001 +229905,iPhone,1,700.0,2019-07-30 18:13:00,613 North St, San Francisco,CA,94016 +229905,Lightning Charging Cable,1,14.95,2019-07-30 18:13:00,613 North St, San Francisco,CA,94016 +229906,Lightning Charging Cable,2,14.95,2019-07-09 22:01:00,798 12th St, Los Angeles,CA,90001 +229907,USB-C Charging Cable,1,11.95,2019-07-20 11:30:00,578 5th St, Portland,OR,97035 +229908,Wired Headphones,2,11.99,2019-07-26 19:34:00,831 Meadow St, San Francisco,CA,94016 +229909,Flatscreen TV,1,300.0,2019-07-21 16:10:00,683 4th St, Dallas,TX,75001 +229910,USB-C Charging Cable,1,11.95,2019-07-05 18:58:00,587 Spruce St, New York City,NY,10001 +229911,Google Phone,1,600.0,2019-07-21 16:50:00,573 Forest St, Seattle,WA,98101 +229912,Wired Headphones,1,11.99,2019-07-07 12:23:00,765 Meadow St, New York City,NY,10001 +229913,USB-C Charging Cable,1,11.95,2019-07-12 13:58:00,897 Ridge St, Boston,MA,02215 +229914,Google Phone,1,600.0,2019-07-08 12:36:00,608 Lincoln St, Boston,MA,02215 +229915,Lightning Charging Cable,2,14.95,2019-07-28 21:05:00,856 Wilson St, San Francisco,CA,94016 +229916,Apple Airpods Headphones,1,150.0,2019-07-11 23:59:00,416 14th St, Atlanta,GA,30301 +229917,Macbook Pro Laptop,1,1700.0,2019-07-20 23:00:00,675 7th St, New York City,NY,10001 +229918,AAA Batteries (4-pack),1,2.99,2019-07-16 07:20:00,549 4th St, Los Angeles,CA,90001 +229919,AAA Batteries (4-pack),1,2.99,2019-07-21 17:51:00,617 Jackson St, Austin,TX,73301 +229920,Bose SoundSport Headphones,1,99.99,2019-07-28 11:20:00,280 South St, Los Angeles,CA,90001 +229921,Bose SoundSport Headphones,1,99.99,2019-07-21 08:01:00,498 North St, New York City,NY,10001 +229922,Lightning Charging Cable,1,14.95,2019-07-28 17:29:00,709 14th St, Los Angeles,CA,90001 +229923,Apple Airpods Headphones,1,150.0,2019-07-20 19:04:00,358 Spruce St, San Francisco,CA,94016 +229924,AAA Batteries (4-pack),1,2.99,2019-07-22 09:36:00,463 Jefferson St, Austin,TX,73301 +229925,Lightning Charging Cable,1,14.95,2019-07-12 15:15:00,295 2nd St, Atlanta,GA,30301 +229926,27in FHD Monitor,1,149.99,2019-07-01 17:03:00,75 14th St, Seattle,WA,98101 +229927,Wired Headphones,1,11.99,2019-07-28 11:09:00,296 Church St, Boston,MA,02215 +229928,Bose SoundSport Headphones,1,99.99,2019-07-29 15:28:00,224 9th St, San Francisco,CA,94016 +229929,USB-C Charging Cable,1,11.95,2019-07-21 16:45:00,410 North St, San Francisco,CA,94016 +229930,Wired Headphones,1,11.99,2019-07-08 19:18:00,603 5th St, Boston,MA,02215 +229931,Wired Headphones,1,11.99,2019-07-05 17:18:00,923 Church St, Seattle,WA,98101 +229932,AAA Batteries (4-pack),2,2.99,2019-07-28 10:56:00,316 9th St, Los Angeles,CA,90001 +229933,AAA Batteries (4-pack),1,2.99,2019-07-24 19:00:00,984 Willow St, New York City,NY,10001 +229934,Apple Airpods Headphones,1,150.0,2019-07-16 18:08:00,90 Jefferson St, Atlanta,GA,30301 +229935,Wired Headphones,1,11.99,2019-07-05 08:50:00,642 7th St, New York City,NY,10001 +229936,AA Batteries (4-pack),1,3.84,2019-07-23 20:40:00,214 Johnson St, Seattle,WA,98101 +229937,Macbook Pro Laptop,1,1700.0,2019-07-07 10:59:00,791 Ridge St, New York City,NY,10001 +229938,Lightning Charging Cable,1,14.95,2019-07-15 19:10:00,729 Main St, Portland,ME,04101 +229939,Wired Headphones,1,11.99,2019-07-01 07:25:00,869 Maple St, Portland,OR,97035 +229940,USB-C Charging Cable,1,11.95,2019-07-01 23:11:00,691 North St, Boston,MA,02215 +229941,Apple Airpods Headphones,1,150.0,2019-07-30 22:20:00,628 Spruce St, New York City,NY,10001 +229942,Apple Airpods Headphones,1,150.0,2019-07-12 19:21:00,628 Dogwood St, Los Angeles,CA,90001 +229943,Bose SoundSport Headphones,1,99.99,2019-07-13 06:43:00,902 Lincoln St, Boston,MA,02215 +229944,27in 4K Gaming Monitor,1,389.99,2019-07-04 19:38:00,336 Cedar St, New York City,NY,10001 +229945,Wired Headphones,1,11.99,2019-07-25 12:30:00,446 Jackson St, Seattle,WA,98101 +229946,AA Batteries (4-pack),1,3.84,2019-07-25 18:13:00,979 8th St, Los Angeles,CA,90001 +229947,Lightning Charging Cable,1,14.95,2019-07-27 00:04:00,88 Johnson St, Boston,MA,02215 +229948,Lightning Charging Cable,1,14.95,2019-07-28 12:39:00,466 Johnson St, Boston,MA,02215 +229949,AA Batteries (4-pack),1,3.84,2019-07-26 09:53:00,283 Center St, New York City,NY,10001 +229950,AA Batteries (4-pack),2,3.84,2019-07-16 19:02:00,153 Main St, San Francisco,CA,94016 +229951,Google Phone,1,600.0,2019-07-21 06:35:00,367 West St, San Francisco,CA,94016 +229951,USB-C Charging Cable,1,11.95,2019-07-21 06:35:00,367 West St, San Francisco,CA,94016 +229952,Lightning Charging Cable,1,14.95,2019-07-01 10:07:00,379 2nd St, Los Angeles,CA,90001 +229953,Apple Airpods Headphones,1,150.0,2019-07-10 21:08:00,386 Center St, Seattle,WA,98101 +229954,34in Ultrawide Monitor,1,379.99,2019-07-14 13:18:00,645 Center St, San Francisco,CA,94016 +229955,Wired Headphones,2,11.99,2019-07-30 11:41:00,143 9th St, Atlanta,GA,30301 +229956,27in 4K Gaming Monitor,1,389.99,2019-07-12 00:57:00,792 4th St, Seattle,WA,98101 +229957,27in FHD Monitor,1,149.99,2019-07-01 09:52:00,392 Lincoln St, Dallas,TX,75001 +229958,Lightning Charging Cable,1,14.95,2019-07-21 13:16:00,492 Hill St, San Francisco,CA,94016 +229959,AA Batteries (4-pack),1,3.84,2019-07-31 16:51:00,76 4th St, Austin,TX,73301 +229960,AA Batteries (4-pack),1,3.84,2019-07-03 20:33:00,191 Cedar St, San Francisco,CA,94016 +229961,Flatscreen TV,1,300.0,2019-07-31 15:53:00,258 11th St, Los Angeles,CA,90001 +229962,AAA Batteries (4-pack),3,2.99,2019-07-13 10:41:00,582 Highland St, Atlanta,GA,30301 +229963,Apple Airpods Headphones,1,150.0,2019-07-30 08:09:00,735 Church St, Austin,TX,73301 +229964,AA Batteries (4-pack),1,3.84,2019-07-16 05:30:00,845 Washington St, New York City,NY,10001 +229965,AA Batteries (4-pack),1,3.84,2019-07-24 08:20:00,19 Pine St, Boston,MA,02215 +229966,Macbook Pro Laptop,1,1700.0,2019-07-20 19:40:00,191 Spruce St, Boston,MA,02215 +229967,Bose SoundSport Headphones,1,99.99,2019-07-28 07:44:00,198 Walnut St, San Francisco,CA,94016 +229968,Lightning Charging Cable,1,14.95,2019-07-19 15:10:00,410 13th St, Austin,TX,73301 +229969,AAA Batteries (4-pack),1,2.99,2019-07-23 12:20:00,590 Willow St, San Francisco,CA,94016 +229970,Apple Airpods Headphones,1,150.0,2019-07-10 02:51:00,94 13th St, Austin,TX,73301 +229971,Apple Airpods Headphones,1,150.0,2019-07-07 19:15:00,35 9th St, Austin,TX,73301 +229972,AAA Batteries (4-pack),1,2.99,2019-07-02 01:35:00,722 Jefferson St, Seattle,WA,98101 +229973,USB-C Charging Cable,1,11.95,2019-07-02 21:35:00,385 Hickory St, New York City,NY,10001 +229974,USB-C Charging Cable,1,11.95,2019-07-16 14:26:00,718 Spruce St, Atlanta,GA,30301 +229975,AA Batteries (4-pack),1,3.84,2019-07-03 10:15:00,161 Adams St, Austin,TX,73301 +229976,AA Batteries (4-pack),1,3.84,2019-07-06 23:55:00,290 Adams St, Los Angeles,CA,90001 +229977,Lightning Charging Cable,1,14.95,2019-07-19 14:49:00,760 Walnut St, Boston,MA,02215 +229978,Lightning Charging Cable,1,14.95,2019-07-27 08:37:00,323 8th St, New York City,NY,10001 +229979,Macbook Pro Laptop,1,1700.0,2019-07-21 17:34:00,482 Madison St, Seattle,WA,98101 +229980,AA Batteries (4-pack),1,3.84,2019-07-28 09:59:00,241 Hill St, New York City,NY,10001 +229981,AA Batteries (4-pack),1,3.84,2019-07-28 17:23:00,412 13th St, Austin,TX,73301 +229982,Lightning Charging Cable,1,14.95,2019-07-31 19:03:00,470 Chestnut St, Los Angeles,CA,90001 +229983,Macbook Pro Laptop,1,1700.0,2019-07-03 17:10:00,937 Highland St, San Francisco,CA,94016 +229984,Lightning Charging Cable,1,14.95,2019-07-22 22:16:00,183 Willow St, Boston,MA,02215 +229985,Lightning Charging Cable,1,14.95,2019-07-20 10:20:00,825 Meadow St, San Francisco,CA,94016 +229986,iPhone,1,700.0,2019-07-27 10:10:00,964 8th St, Los Angeles,CA,90001 +229986,Lightning Charging Cable,1,14.95,2019-07-27 10:10:00,964 8th St, Los Angeles,CA,90001 +229987,AA Batteries (4-pack),2,3.84,2019-07-25 12:14:00,743 Ridge St, Los Angeles,CA,90001 +229988,Wired Headphones,1,11.99,2019-07-13 08:24:00,710 Willow St, Austin,TX,73301 +229989,Vareebadd Phone,1,400.0,2019-07-23 12:11:00,890 11th St, Seattle,WA,98101 +229990,Apple Airpods Headphones,1,150.0,2019-07-11 09:23:00,296 5th St, San Francisco,CA,94016 +229991,USB-C Charging Cable,1,11.95,2019-07-24 17:43:00,838 Chestnut St, Atlanta,GA,30301 +229992,Apple Airpods Headphones,1,150.0,2019-07-04 18:36:00,773 Lakeview St, San Francisco,CA,94016 +229993,AA Batteries (4-pack),2,3.84,2019-07-11 16:13:00,961 Washington St, San Francisco,CA,94016 +229994,Wired Headphones,1,11.99,2019-07-27 15:10:00,190 9th St, San Francisco,CA,94016 +229995,Apple Airpods Headphones,1,150.0,2019-07-17 15:07:00,596 2nd St, New York City,NY,10001 +229996,Lightning Charging Cable,1,14.95,2019-07-13 17:29:00,672 Park St, Portland,ME,04101 +229997,AA Batteries (4-pack),3,3.84,2019-07-08 18:28:00,883 7th St, Dallas,TX,75001 +229998,Bose SoundSport Headphones,1,99.99,2019-07-31 13:36:00,758 West St, Boston,MA,02215 +229999,iPhone,1,700.0,2019-07-11 14:10:00,313 Wilson St, Boston,MA,02215 +230000,USB-C Charging Cable,1,11.95,2019-07-18 19:36:00,914 Highland St, San Francisco,CA,94016 +230001,34in Ultrawide Monitor,1,379.99,2019-07-30 12:23:00,506 10th St, Austin,TX,73301 +230002,USB-C Charging Cable,1,11.95,2019-07-16 06:02:00,215 Pine St, Los Angeles,CA,90001 +230003,20in Monitor,1,109.99,2019-07-29 12:10:00,168 Lake St, Dallas,TX,75001 +230004,Vareebadd Phone,1,400.0,2019-07-02 20:08:00,617 10th St, San Francisco,CA,94016 +230005,iPhone,1,700.0,2019-07-30 17:00:00,543 11th St, Los Angeles,CA,90001 +230006,AAA Batteries (4-pack),1,2.99,2019-07-23 21:09:00,533 Jackson St, Los Angeles,CA,90001 +230007,AAA Batteries (4-pack),1,2.99,2019-07-26 18:34:00,812 Spruce St, Portland,ME,04101 +230008,Apple Airpods Headphones,1,150.0,2019-07-16 10:04:00,949 Chestnut St, Seattle,WA,98101 +230009,Lightning Charging Cable,1,14.95,2019-07-30 10:27:00,515 2nd St, Los Angeles,CA,90001 +230010,LG Washing Machine,1,600.0,2019-07-15 21:13:00,495 8th St, Seattle,WA,98101 +230011,USB-C Charging Cable,1,11.95,2019-07-19 11:16:00,224 Park St, Boston,MA,02215 +230012,Wired Headphones,1,11.99,2019-07-04 23:44:00,628 Jackson St, Los Angeles,CA,90001 +230013,AA Batteries (4-pack),2,3.84,2019-07-28 02:39:00,779 12th St, Los Angeles,CA,90001 +230014,AA Batteries (4-pack),2,3.84,2019-07-09 16:19:00,829 Cherry St, Austin,TX,73301 +230015,USB-C Charging Cable,1,11.95,2019-07-08 08:52:00,962 13th St, Boston,MA,02215 +230016,AA Batteries (4-pack),1,3.84,2019-07-23 11:04:00,816 Hickory St, New York City,NY,10001 +230017,Wired Headphones,2,11.99,2019-07-02 11:40:00,48 Highland St, Dallas,TX,75001 +230018,Lightning Charging Cable,1,14.95,2019-07-28 15:23:00,875 Willow St, Atlanta,GA,30301 +230019,34in Ultrawide Monitor,1,379.99,2019-07-23 02:03:00,942 Chestnut St, Austin,TX,73301 +230020,Lightning Charging Cable,1,14.95,2019-07-23 17:48:00,765 Park St, San Francisco,CA,94016 +230021,27in FHD Monitor,1,149.99,2019-07-20 09:07:00,314 4th St, San Francisco,CA,94016 +230022,Apple Airpods Headphones,1,150.0,2019-07-12 17:32:00,448 Johnson St, San Francisco,CA,94016 +230023,LG Dryer,1,600.0,2019-07-30 10:27:00,773 Elm St, Los Angeles,CA,90001 +230024,iPhone,1,700.0,2019-07-14 22:14:00,550 Chestnut St, Atlanta,GA,30301 +230024,Lightning Charging Cable,1,14.95,2019-07-14 22:14:00,550 Chestnut St, Atlanta,GA,30301 +230024,Apple Airpods Headphones,1,150.0,2019-07-14 22:14:00,550 Chestnut St, Atlanta,GA,30301 +230025,27in 4K Gaming Monitor,1,389.99,2019-07-27 20:37:00,696 9th St, Los Angeles,CA,90001 +230026,AA Batteries (4-pack),2,3.84,2019-07-28 19:45:00,306 Forest St, Dallas,TX,75001 +230027,Lightning Charging Cable,1,14.95,2019-07-24 20:44:00,553 2nd St, Los Angeles,CA,90001 +230028,Bose SoundSport Headphones,1,99.99,2019-07-13 16:58:00,294 Spruce St, Atlanta,GA,30301 +230029,Google Phone,1,600.0,2019-07-10 08:15:00,876 9th St, Portland,ME,04101 +230030,Apple Airpods Headphones,1,150.0,2019-07-18 08:24:00,954 West St, Seattle,WA,98101 +230031,AA Batteries (4-pack),1,3.84,2019-07-23 10:15:00,964 River St, Atlanta,GA,30301 +230032,Lightning Charging Cable,1,14.95,2019-07-06 20:29:00,268 Church St, Boston,MA,02215 +230033,Wired Headphones,1,11.99,2019-07-06 14:36:00,481 South St, Portland,OR,97035 +230034,Wired Headphones,2,11.99,2019-07-05 15:54:00,794 5th St, San Francisco,CA,94016 +230035,AAA Batteries (4-pack),1,2.99,2019-07-25 21:35:00,545 Washington St, Boston,MA,02215 +230035,Flatscreen TV,1,300.0,2019-07-25 21:35:00,545 Washington St, Boston,MA,02215 +230036,Lightning Charging Cable,1,14.95,2019-07-10 16:18:00,882 Washington St, Los Angeles,CA,90001 +230037,Flatscreen TV,1,300.0,2019-07-18 11:32:00,94 Center St, Seattle,WA,98101 +230038,27in FHD Monitor,1,149.99,2019-07-18 22:40:00,497 Spruce St, San Francisco,CA,94016 +230039,AA Batteries (4-pack),1,3.84,2019-07-11 16:59:00,446 Adams St, San Francisco,CA,94016 +230040,Macbook Pro Laptop,1,1700.0,2019-07-07 22:47:00,576 Lakeview St, Dallas,TX,75001 +230041,ThinkPad Laptop,1,999.99,2019-07-13 14:22:00,668 7th St, Los Angeles,CA,90001 +230042,34in Ultrawide Monitor,1,379.99,2019-07-13 11:03:00,649 13th St, Boston,MA,02215 +230043,AA Batteries (4-pack),1,3.84,2019-07-15 14:16:00,669 Dogwood St, Dallas,TX,75001 +230044,Bose SoundSport Headphones,1,99.99,2019-07-28 11:58:00,962 Lakeview St, San Francisco,CA,94016 +230045,Apple Airpods Headphones,1,150.0,2019-07-28 17:48:00,620 Forest St, Dallas,TX,75001 +230046,Apple Airpods Headphones,1,150.0,2019-07-20 20:44:00,870 Hill St, Portland,ME,04101 +230047,AA Batteries (4-pack),1,3.84,2019-07-04 02:52:00,781 8th St, Seattle,WA,98101 +230048,27in 4K Gaming Monitor,1,389.99,2019-07-09 15:13:00,918 Jackson St, Dallas,TX,75001 +230049,Flatscreen TV,1,300.0,2019-07-13 22:26:00,919 Willow St, Dallas,TX,75001 +230050,AA Batteries (4-pack),1,3.84,2019-07-12 14:44:00,534 7th St, Boston,MA,02215 +230051,Apple Airpods Headphones,1,150.0,2019-07-12 11:22:00,933 Cherry St, Los Angeles,CA,90001 +230052,AA Batteries (4-pack),1,3.84,2019-07-14 18:23:00,598 Jackson St, Dallas,TX,75001 +230053,27in FHD Monitor,1,149.99,2019-07-02 19:32:00,839 7th St, New York City,NY,10001 +230054,Lightning Charging Cable,1,14.95,2019-07-29 14:20:00,740 1st St, Portland,OR,97035 +230055,iPhone,1,700.0,2019-07-06 07:47:00,267 Maple St, Dallas,TX,75001 +230055,Lightning Charging Cable,1,14.95,2019-07-06 07:47:00,267 Maple St, Dallas,TX,75001 +230056,USB-C Charging Cable,1,11.95,2019-07-15 15:18:00,755 Jefferson St, Dallas,TX,75001 +230057,AA Batteries (4-pack),2,3.84,2019-07-20 09:11:00,715 Meadow St, Boston,MA,02215 +230058,iPhone,1,700.0,2019-07-13 08:54:00,439 Jefferson St, Seattle,WA,98101 +230059,Wired Headphones,1,11.99,2019-07-08 13:35:00,615 Center St, Atlanta,GA,30301 +230060,Vareebadd Phone,1,400.0,2019-07-08 13:12:00,84 Madison St, Los Angeles,CA,90001 +230061,USB-C Charging Cable,1,11.95,2019-07-31 15:46:00,145 Hill St, New York City,NY,10001 +230062,AA Batteries (4-pack),2,3.84,2019-07-03 14:41:00,182 Sunset St, San Francisco,CA,94016 +230063,Wired Headphones,1,11.99,2019-07-03 13:54:00,824 Elm St, San Francisco,CA,94016 +230064,Bose SoundSport Headphones,1,99.99,2019-07-23 21:28:00,476 10th St, San Francisco,CA,94016 +230065,Lightning Charging Cable,1,14.95,2019-07-27 15:25:00,252 Spruce St, Boston,MA,02215 +230066,Wired Headphones,1,11.99,2019-07-03 11:48:00,835 9th St, New York City,NY,10001 +230067,Wired Headphones,1,11.99,2019-07-23 17:44:00,850 Park St, Austin,TX,73301 +230068,27in 4K Gaming Monitor,1,389.99,2019-07-20 18:29:00,278 Spruce St, New York City,NY,10001 +230069,Wired Headphones,1,11.99,2019-07-17 01:19:00,206 Main St, Boston,MA,02215 +230070,Bose SoundSport Headphones,1,99.99,2019-07-11 14:09:00,453 14th St, Los Angeles,CA,90001 +230071,Apple Airpods Headphones,1,150.0,2019-07-31 17:05:00,851 Pine St, Portland,OR,97035 +230072,AAA Batteries (4-pack),1,2.99,2019-07-16 12:46:00,701 Main St, Atlanta,GA,30301 +230073,Macbook Pro Laptop,1,1700.0,2019-07-22 10:40:00,288 Johnson St, Boston,MA,02215 +230074,AA Batteries (4-pack),1,3.84,2019-07-18 10:41:00,359 Adams St, San Francisco,CA,94016 +230075,Lightning Charging Cable,1,14.95,2019-07-04 00:47:00,890 Willow St, San Francisco,CA,94016 +230076,AAA Batteries (4-pack),1,2.99,2019-07-15 18:17:00,424 Adams St, San Francisco,CA,94016 +230077,AAA Batteries (4-pack),3,2.99,2019-07-20 14:55:00,315 Madison St, Seattle,WA,98101 +230078,Apple Airpods Headphones,1,150.0,2019-07-20 10:45:00,36 West St, Dallas,TX,75001 +230079,USB-C Charging Cable,1,11.95,2019-07-27 10:08:00,264 Lake St, San Francisco,CA,94016 +230080,Bose SoundSport Headphones,2,99.99,2019-07-01 16:37:00,418 Jackson St, San Francisco,CA,94016 +230081,Apple Airpods Headphones,1,150.0,2019-07-02 15:20:00,720 2nd St, Dallas,TX,75001 +230082,ThinkPad Laptop,1,999.99,2019-07-13 15:55:00,976 Cherry St, Los Angeles,CA,90001 +230083,Bose SoundSport Headphones,1,99.99,2019-07-16 22:00:00,745 9th St, Portland,OR,97035 +230084,ThinkPad Laptop,1,999.99,2019-07-12 18:51:00,478 Lincoln St, New York City,NY,10001 +230085,Bose SoundSport Headphones,1,99.99,2019-07-17 16:01:00,225 2nd St, Boston,MA,02215 +230086,Macbook Pro Laptop,1,1700.0,2019-07-17 16:02:00,211 Lake St, Los Angeles,CA,90001 +230087,USB-C Charging Cable,2,11.95,2019-07-12 21:26:00,738 Lincoln St, Portland,OR,97035 +230088,34in Ultrawide Monitor,1,379.99,2019-07-25 13:49:00,501 Spruce St, Los Angeles,CA,90001 +230089,Apple Airpods Headphones,1,150.0,2019-07-17 12:31:00,467 Forest St, Los Angeles,CA,90001 +230090,AAA Batteries (4-pack),1,2.99,2019-07-10 07:34:00,338 Maple St, New York City,NY,10001 +230091,ThinkPad Laptop,1,999.99,2019-07-03 13:35:00,243 Adams St, Seattle,WA,98101 +230092,ThinkPad Laptop,1,999.99,2019-07-14 13:06:00,120 5th St, Austin,TX,73301 +230093,Lightning Charging Cable,1,14.95,2019-07-20 17:17:00,611 11th St, New York City,NY,10001 +230094,Wired Headphones,1,11.99,2019-07-08 22:27:00,231 South St, Atlanta,GA,30301 +230095,Apple Airpods Headphones,1,150.0,2019-07-24 07:12:00,504 Lake St, Austin,TX,73301 +230096,AA Batteries (4-pack),3,3.84,2019-07-02 22:43:00,902 6th St, San Francisco,CA,94016 +230097,20in Monitor,1,109.99,2019-07-10 15:51:00,160 Meadow St, Dallas,TX,75001 +230098,Apple Airpods Headphones,1,150.0,2019-07-01 18:17:00,535 Hill St, New York City,NY,10001 +230099,Lightning Charging Cable,1,14.95,2019-07-20 05:03:00,84 Dogwood St, Portland,ME,04101 +230100,USB-C Charging Cable,2,11.95,2019-07-11 11:27:00,62 8th St, Los Angeles,CA,90001 +230101,iPhone,1,700.0,2019-07-19 17:40:00,801 1st St, Austin,TX,73301 +230102,AA Batteries (4-pack),1,3.84,2019-07-25 08:58:00,35 Adams St, Portland,OR,97035 +230103,Bose SoundSport Headphones,1,99.99,2019-07-19 14:46:00,293 Park St, Los Angeles,CA,90001 +230104,27in FHD Monitor,1,149.99,2019-07-07 18:37:00,867 Highland St, Boston,MA,02215 +230105,Apple Airpods Headphones,1,150.0,2019-07-01 12:16:00,599 12th St, Dallas,TX,75001 +230106,Lightning Charging Cable,1,14.95,2019-07-09 12:07:00,669 South St, Los Angeles,CA,90001 +230107,USB-C Charging Cable,2,11.95,2019-07-13 23:46:00,666 Main St, Atlanta,GA,30301 +230108,Lightning Charging Cable,1,14.95,2019-07-04 13:53:00,575 Willow St, Boston,MA,02215 +230109,Apple Airpods Headphones,1,150.0,2019-07-03 13:16:00,251 8th St, San Francisco,CA,94016 +230110,Apple Airpods Headphones,1,150.0,2019-07-28 21:00:00,581 Washington St, Austin,TX,73301 +230111,AA Batteries (4-pack),1,3.84,2019-07-26 13:22:00,425 Hickory St, Atlanta,GA,30301 +230112,USB-C Charging Cable,1,11.95,2019-07-17 22:30:00,886 1st St, San Francisco,CA,94016 +230113,27in FHD Monitor,1,149.99,2019-07-12 14:43:00,924 2nd St, San Francisco,CA,94016 +230114,20in Monitor,1,109.99,2019-07-10 19:30:00,863 Wilson St, Austin,TX,73301 +230115,27in FHD Monitor,1,149.99,2019-07-31 14:00:00,60 Washington St, New York City,NY,10001 +230116,Vareebadd Phone,1,400.0,2019-07-16 08:23:00,654 Washington St, Los Angeles,CA,90001 +230117,20in Monitor,1,109.99,2019-07-26 16:38:00,282 Madison St, Portland,ME,04101 +230118,AA Batteries (4-pack),1,3.84,2019-07-19 21:07:00,547 Lake St, Austin,TX,73301 +230119,27in FHD Monitor,1,149.99,2019-07-07 15:15:00,886 South St, Seattle,WA,98101 +230120,27in FHD Monitor,1,149.99,2019-07-03 07:44:00,621 9th St, Los Angeles,CA,90001 +230121,AA Batteries (4-pack),2,3.84,2019-07-29 22:47:00,726 12th St, Boston,MA,02215 +230122,USB-C Charging Cable,1,11.95,2019-07-05 20:46:00,418 7th St, Portland,ME,04101 +230123,LG Dryer,1,600.0,2019-07-01 21:29:00,320 Chestnut St, San Francisco,CA,94016 +230124,Bose SoundSport Headphones,1,99.99,2019-07-27 21:55:00,944 Center St, San Francisco,CA,94016 +230125,USB-C Charging Cable,1,11.95,2019-07-31 22:01:00,257 Meadow St, Atlanta,GA,30301 +230126,USB-C Charging Cable,2,11.95,2019-07-13 07:04:00,699 Lincoln St, Seattle,WA,98101 +230127,Wired Headphones,2,11.99,2019-07-09 08:00:00,254 Adams St, Portland,OR,97035 +230128,27in 4K Gaming Monitor,1,389.99,2019-07-13 23:34:00,29 Johnson St, Seattle,WA,98101 +230128,Wired Headphones,1,11.99,2019-07-13 23:34:00,29 Johnson St, Seattle,WA,98101 +230129,Vareebadd Phone,1,400.0,2019-07-23 18:30:00,485 South St, Atlanta,GA,30301 +230129,USB-C Charging Cable,1,11.95,2019-07-23 18:30:00,485 South St, Atlanta,GA,30301 +230130,27in FHD Monitor,1,149.99,2019-07-11 12:23:00,307 Lincoln St, New York City,NY,10001 +230131,Lightning Charging Cable,1,14.95,2019-07-29 16:33:00,193 Park St, Austin,TX,73301 +230132,Bose SoundSport Headphones,1,99.99,2019-07-01 16:53:00,648 Center St, Seattle,WA,98101 +230133,USB-C Charging Cable,1,11.95,2019-07-19 19:34:00,570 Elm St, Portland,OR,97035 +230134,Lightning Charging Cable,1,14.95,2019-07-23 17:06:00,265 Johnson St, San Francisco,CA,94016 +230135,Bose SoundSport Headphones,1,99.99,2019-07-08 09:40:00,398 Elm St, Atlanta,GA,30301 +230136,AA Batteries (4-pack),1,3.84,2019-07-23 12:27:00,766 8th St, Atlanta,GA,30301 +230137,Lightning Charging Cable,2,14.95,2019-07-05 18:17:00,419 9th St, San Francisco,CA,94016 +230138,27in 4K Gaming Monitor,1,389.99,2019-07-10 12:11:00,53 Dogwood St, San Francisco,CA,94016 +230139,Lightning Charging Cable,1,14.95,2019-07-23 11:48:00,508 Cedar St, Seattle,WA,98101 +230140,USB-C Charging Cable,1,11.95,2019-07-27 10:33:00,354 Center St, Seattle,WA,98101 +230141,Lightning Charging Cable,1,14.95,2019-07-08 12:29:00,475 Madison St, Los Angeles,CA,90001 +230142,Apple Airpods Headphones,1,150.0,2019-07-06 15:11:00,906 Lakeview St, San Francisco,CA,94016 +230143,Wired Headphones,1,11.99,2019-07-10 18:03:00,495 6th St, Portland,OR,97035 +230144,Bose SoundSport Headphones,1,99.99,2019-07-01 18:15:00,455 North St, Boston,MA,02215 +230145,AA Batteries (4-pack),1,3.84,2019-07-17 22:30:00,107 9th St, Portland,OR,97035 +230146,iPhone,1,700.0,2019-07-03 18:13:00,934 Ridge St, San Francisco,CA,94016 +230147,Apple Airpods Headphones,1,150.0,2019-07-29 21:25:00,117 Jackson St, Dallas,TX,75001 +230148,ThinkPad Laptop,1,999.99,2019-07-28 23:33:00,489 Dogwood St, New York City,NY,10001 +230149,Lightning Charging Cable,1,14.95,2019-07-16 20:58:00,825 Hill St, Seattle,WA,98101 +230150,AAA Batteries (4-pack),1,2.99,2019-07-26 18:21:00,775 6th St, Los Angeles,CA,90001 +230151,34in Ultrawide Monitor,1,379.99,2019-07-10 09:51:00,959 6th St, Los Angeles,CA,90001 +230152,Wired Headphones,1,11.99,2019-07-14 20:36:00,320 Center St, Dallas,TX,75001 +230153,USB-C Charging Cable,1,11.95,2019-07-14 19:59:00,18 Ridge St, San Francisco,CA,94016 +230154,Flatscreen TV,1,300.0,2019-07-12 06:57:00,864 Cherry St, San Francisco,CA,94016 +230155,20in Monitor,1,109.99,2019-07-15 07:23:00,32 9th St, Atlanta,GA,30301 +230156,USB-C Charging Cable,1,11.95,2019-07-18 21:28:00,825 Lincoln St, Atlanta,GA,30301 +230157,AA Batteries (4-pack),1,3.84,2019-07-31 16:41:00,5 13th St, Austin,TX,73301 +230158,Apple Airpods Headphones,1,150.0,2019-07-22 20:46:00,384 Jackson St, Los Angeles,CA,90001 +230159,AA Batteries (4-pack),1,3.84,2019-07-08 12:28:00,358 14th St, Seattle,WA,98101 +230160,Wired Headphones,1,11.99,2019-07-04 22:12:00,200 Dogwood St, Boston,MA,02215 +230161,USB-C Charging Cable,1,11.95,2019-07-22 12:25:00,487 14th St, Boston,MA,02215 +230162,Wired Headphones,1,11.99,2019-07-02 13:32:00,9 Elm St, Dallas,TX,75001 +230163,Google Phone,1,600.0,2019-07-11 15:12:00,55 Willow St, New York City,NY,10001 +230164,Lightning Charging Cable,1,14.95,2019-07-03 08:13:00,942 Johnson St, San Francisco,CA,94016 +230165,AAA Batteries (4-pack),1,2.99,2019-07-07 17:05:00,134 Church St, Boston,MA,02215 +230165,Bose SoundSport Headphones,1,99.99,2019-07-07 17:05:00,134 Church St, Boston,MA,02215 +230166,20in Monitor,1,109.99,2019-07-05 21:43:00,885 Sunset St, San Francisco,CA,94016 +230167,ThinkPad Laptop,1,999.99,2019-07-31 10:12:00,764 Jefferson St, New York City,NY,10001 +230168,Bose SoundSport Headphones,1,99.99,2019-07-23 21:35:00,245 South St, New York City,NY,10001 +230169,Wired Headphones,1,11.99,2019-07-22 12:23:00,185 Pine St, Dallas,TX,75001 +230170,Wired Headphones,1,11.99,2019-07-28 00:41:00,524 South St, Boston,MA,02215 +230171,Flatscreen TV,1,300.0,2019-07-02 00:03:00,270 10th St, Dallas,TX,75001 +230172,ThinkPad Laptop,1,999.99,2019-07-02 23:29:00,293 5th St, San Francisco,CA,94016 +230173,AAA Batteries (4-pack),2,2.99,2019-07-21 23:02:00,543 Center St, San Francisco,CA,94016 +230174,Apple Airpods Headphones,1,150.0,2019-07-15 13:55:00,40 River St, Seattle,WA,98101 +230175,AA Batteries (4-pack),2,3.84,2019-07-27 08:38:00,794 Madison St, Dallas,TX,75001 +230176,USB-C Charging Cable,1,11.95,2019-07-01 12:45:00,279 South St, Dallas,TX,75001 +230177,AAA Batteries (4-pack),2,2.99,2019-07-11 20:24:00,888 Cherry St, Austin,TX,73301 +230178,Apple Airpods Headphones,1,150.0,2019-07-26 17:34:00,246 Church St, Los Angeles,CA,90001 +230179,27in 4K Gaming Monitor,1,389.99,2019-07-14 11:33:00,10 Jackson St, San Francisco,CA,94016 +230180,Apple Airpods Headphones,1,150.0,2019-07-12 14:05:00,146 5th St, Seattle,WA,98101 +230181,AAA Batteries (4-pack),1,2.99,2019-07-09 13:19:00,977 6th St, Austin,TX,73301 +230182,Apple Airpods Headphones,1,150.0,2019-07-18 20:09:00,505 14th St, Los Angeles,CA,90001 +230183,Apple Airpods Headphones,1,150.0,2019-07-19 18:45:00,588 Hill St, Boston,MA,02215 +230184,Lightning Charging Cable,1,14.95,2019-07-07 12:36:00,190 14th St, New York City,NY,10001 +230184,34in Ultrawide Monitor,1,379.99,2019-07-07 12:36:00,190 14th St, New York City,NY,10001 +230185,Wired Headphones,1,11.99,2019-07-11 14:09:00,793 Maple St, Portland,ME,04101 +230186,Apple Airpods Headphones,1,150.0,2019-07-14 17:52:00,849 Highland St, Los Angeles,CA,90001 +230187,AA Batteries (4-pack),1,3.84,2019-07-31 22:21:00,619 North St, Boston,MA,02215 +230188,Wired Headphones,1,11.99,2019-07-23 12:43:00,741 River St, Boston,MA,02215 +230189,Google Phone,1,600.0,2019-07-29 10:05:00,242 Lake St, Los Angeles,CA,90001 +230189,USB-C Charging Cable,1,11.95,2019-07-29 10:05:00,242 Lake St, Los Angeles,CA,90001 +230190,Lightning Charging Cable,1,14.95,2019-07-29 01:01:00,140 Maple St, Los Angeles,CA,90001 +230191,Wired Headphones,1,11.99,2019-07-08 10:30:00,913 West St, Austin,TX,73301 +230192,Bose SoundSport Headphones,1,99.99,2019-07-18 14:23:00,866 2nd St, Portland,ME,04101 +230193,Vareebadd Phone,1,400.0,2019-07-29 15:30:00,734 South St, Austin,TX,73301 +230193,USB-C Charging Cable,1,11.95,2019-07-29 15:30:00,734 South St, Austin,TX,73301 +230194,34in Ultrawide Monitor,1,379.99,2019-07-30 03:21:00,667 River St, New York City,NY,10001 +230195,34in Ultrawide Monitor,1,379.99,2019-07-04 19:20:00,575 Jefferson St, San Francisco,CA,94016 +230196,27in 4K Gaming Monitor,1,389.99,2019-07-31 20:45:00,673 North St, New York City,NY,10001 +230197,iPhone,1,700.0,2019-07-05 22:42:00,856 Lake St, Portland,ME,04101 +230198,USB-C Charging Cable,1,11.95,2019-07-12 21:06:00,678 11th St, Seattle,WA,98101 +230199,Wired Headphones,1,11.99,2019-07-04 16:31:00,195 Spruce St, Portland,ME,04101 +230200,AA Batteries (4-pack),2,3.84,2019-07-12 22:44:00,261 Hickory St, Los Angeles,CA,90001 +230201,Wired Headphones,1,11.99,2019-07-18 21:37:00,172 West St, Los Angeles,CA,90001 +230202,Wired Headphones,1,11.99,2019-07-10 13:41:00,996 Forest St, Atlanta,GA,30301 +230203,Lightning Charging Cable,1,14.95,2019-07-22 07:37:00,70 7th St, Portland,OR,97035 +230204,34in Ultrawide Monitor,1,379.99,2019-07-31 15:52:00,871 Main St, San Francisco,CA,94016 +230205,Bose SoundSport Headphones,1,99.99,2019-07-15 12:11:00,325 Madison St, New York City,NY,10001 +230206,USB-C Charging Cable,1,11.95,2019-07-15 16:40:00,223 Jackson St, San Francisco,CA,94016 +230207,Apple Airpods Headphones,1,150.0,2019-07-28 19:26:00,851 Meadow St, Los Angeles,CA,90001 +230208,Lightning Charging Cable,1,14.95,2019-07-28 20:27:00,382 Willow St, Los Angeles,CA,90001 +230209,ThinkPad Laptop,1,999.99,2019-07-08 16:24:00,345 Spruce St, Boston,MA,02215 +230210,AA Batteries (4-pack),1,3.84,2019-07-18 10:18:00,745 Park St, Los Angeles,CA,90001 +230211,USB-C Charging Cable,2,11.95,2019-07-30 13:03:00,890 Adams St, New York City,NY,10001 +230212,AA Batteries (4-pack),2,3.84,2019-07-23 00:25:00,471 4th St, Los Angeles,CA,90001 +230213,AAA Batteries (4-pack),1,2.99,2019-07-06 18:27:00,121 Park St, Los Angeles,CA,90001 +230214,AAA Batteries (4-pack),1,2.99,2019-07-12 07:38:00,740 Adams St, Austin,TX,73301 +230215,USB-C Charging Cable,1,11.95,2019-07-11 13:56:00,326 Spruce St, New York City,NY,10001 +230216,Lightning Charging Cable,1,14.95,2019-07-13 00:17:00,717 8th St, Boston,MA,02215 +230217,iPhone,1,700.0,2019-07-24 22:35:00,579 Hickory St, Dallas,TX,75001 +230218,Wired Headphones,1,11.99,2019-07-02 22:23:00,537 Cedar St, Atlanta,GA,30301 +230219,AA Batteries (4-pack),1,3.84,2019-07-16 12:54:00,942 Park St, San Francisco,CA,94016 +230220,AA Batteries (4-pack),1,3.84,2019-07-26 17:03:00,628 Forest St, New York City,NY,10001 +230221,Bose SoundSport Headphones,1,99.99,2019-07-02 15:55:00,174 Meadow St, Portland,ME,04101 +230222,USB-C Charging Cable,1,11.95,2019-07-14 21:05:00,598 Elm St, Los Angeles,CA,90001 +230223,Apple Airpods Headphones,1,150.0,2019-07-23 20:18:00,472 Lake St, Los Angeles,CA,90001 +230224,Apple Airpods Headphones,1,150.0,2019-07-29 22:19:00,918 North St, San Francisco,CA,94016 +230225,ThinkPad Laptop,1,999.99,2019-07-31 16:19:00,291 9th St, Atlanta,GA,30301 +230226,Bose SoundSport Headphones,1,99.99,2019-07-20 09:00:00,788 Walnut St, Portland,ME,04101 +230227,AAA Batteries (4-pack),1,2.99,2019-07-25 20:33:00,702 1st St, San Francisco,CA,94016 +230228,Vareebadd Phone,1,400.0,2019-07-30 10:43:00,285 Johnson St, San Francisco,CA,94016 +230228,USB-C Charging Cable,1,11.95,2019-07-30 10:43:00,285 Johnson St, San Francisco,CA,94016 +230229,AA Batteries (4-pack),2,3.84,2019-07-01 17:21:00,139 Wilson St, Portland,OR,97035 +230230,Wired Headphones,1,11.99,2019-07-09 10:48:00,150 Madison St, Portland,OR,97035 +230231,Lightning Charging Cable,2,14.95,2019-07-15 08:41:00,650 Lincoln St, San Francisco,CA,94016 +230232,ThinkPad Laptop,1,999.99,2019-07-20 19:12:00,655 Center St, New York City,NY,10001 +230233,Lightning Charging Cable,1,14.95,2019-07-13 12:49:00,859 Forest St, Boston,MA,02215 +230234,Wired Headphones,1,11.99,2019-07-19 11:34:00,994 Lincoln St, San Francisco,CA,94016 +230235,AA Batteries (4-pack),1,3.84,2019-07-22 14:07:00,435 Sunset St, New York City,NY,10001 +230236,LG Washing Machine,1,600.0,2019-07-08 23:50:00,142 Sunset St, Seattle,WA,98101 +230237,Lightning Charging Cable,1,14.95,2019-07-31 17:01:00,193 Jackson St, Austin,TX,73301 +230238,34in Ultrawide Monitor,1,379.99,2019-07-02 05:36:00,813 Forest St, Dallas,TX,75001 +230239,Wired Headphones,1,11.99,2019-07-20 10:14:00,876 Lake St, San Francisco,CA,94016 +230240,iPhone,1,700.0,2019-07-02 21:04:00,860 Sunset St, Atlanta,GA,30301 +230241,Lightning Charging Cable,1,14.95,2019-07-10 18:03:00,695 Wilson St, Los Angeles,CA,90001 +230242,Bose SoundSport Headphones,1,99.99,2019-07-24 18:09:00,54 Chestnut St, Los Angeles,CA,90001 +230243,Bose SoundSport Headphones,1,99.99,2019-07-22 11:06:00,831 Pine St, Austin,TX,73301 +230244,USB-C Charging Cable,1,11.95,2019-07-20 19:08:00,816 Cedar St, Portland,OR,97035 +230245,AAA Batteries (4-pack),2,2.99,2019-07-19 19:08:00,527 5th St, Boston,MA,02215 +230246,Lightning Charging Cable,1,14.95,2019-07-21 11:54:00,198 9th St, San Francisco,CA,94016 +230247,USB-C Charging Cable,1,11.95,2019-07-18 08:14:00,832 Spruce St, Boston,MA,02215 +230248,Google Phone,1,600.0,2019-07-07 16:13:00,239 13th St, New York City,NY,10001 +230249,Apple Airpods Headphones,1,150.0,2019-07-08 13:28:00,91 Elm St, Austin,TX,73301 +230250,34in Ultrawide Monitor,1,379.99,2019-07-15 18:11:00,812 Adams St, Austin,TX,73301 +230251,Apple Airpods Headphones,1,150.0,2019-07-18 18:28:00,908 Walnut St, Los Angeles,CA,90001 +230252,Bose SoundSport Headphones,1,99.99,2019-07-21 12:18:00,483 14th St, New York City,NY,10001 +230253,Lightning Charging Cable,1,14.95,2019-07-10 22:11:00,440 South St, Boston,MA,02215 +230254,Lightning Charging Cable,1,14.95,2019-07-20 20:07:00,64 Walnut St, San Francisco,CA,94016 +230255,iPhone,1,700.0,2019-07-02 14:33:00,85 Lake St, New York City,NY,10001 +230256,Flatscreen TV,1,300.0,2019-07-23 07:30:00,26 Jackson St, Boston,MA,02215 +230257,Wired Headphones,1,11.99,2019-07-30 10:21:00,260 Cedar St, Los Angeles,CA,90001 +230258,Bose SoundSport Headphones,1,99.99,2019-07-19 11:31:00,508 Center St, Los Angeles,CA,90001 +230259,Wired Headphones,1,11.99,2019-07-04 16:57:00,11 7th St, San Francisco,CA,94016 +230260,34in Ultrawide Monitor,1,379.99,2019-07-30 21:43:00,998 Washington St, Los Angeles,CA,90001 +230261,Lightning Charging Cable,1,14.95,2019-07-15 09:16:00,978 Dogwood St, New York City,NY,10001 +230262,34in Ultrawide Monitor,1,379.99,2019-07-25 22:21:00,216 Hill St, San Francisco,CA,94016 +230263,Lightning Charging Cable,1,14.95,2019-07-21 12:22:00,422 Pine St, Seattle,WA,98101 +230264,AAA Batteries (4-pack),2,2.99,2019-07-18 08:55:00,184 Church St, Los Angeles,CA,90001 +230265,USB-C Charging Cable,1,11.95,2019-07-11 15:57:00,900 5th St, Seattle,WA,98101 +230266,iPhone,1,700.0,2019-07-03 18:35:00,792 Hickory St, Dallas,TX,75001 +230267,AA Batteries (4-pack),3,3.84,2019-07-19 18:57:00,410 Dogwood St, Boston,MA,02215 +230268,Bose SoundSport Headphones,1,99.99,2019-07-12 09:47:00,536 Meadow St, Atlanta,GA,30301 +230269,AAA Batteries (4-pack),1,2.99,2019-07-30 11:34:00,139 Center St, Portland,ME,04101 +230270,AAA Batteries (4-pack),1,2.99,2019-07-02 22:13:00,970 Spruce St, Atlanta,GA,30301 +230271,AA Batteries (4-pack),1,3.84,2019-07-07 13:39:00,62 Johnson St, San Francisco,CA,94016 +230272,AA Batteries (4-pack),1,3.84,2019-07-26 17:51:00,580 10th St, Atlanta,GA,30301 +230273,Apple Airpods Headphones,1,150.0,2019-07-28 11:20:00,311 11th St, Seattle,WA,98101 +230274,Lightning Charging Cable,1,14.95,2019-07-02 09:26:00,823 River St, Los Angeles,CA,90001 +230275,Bose SoundSport Headphones,1,99.99,2019-07-27 19:18:00,529 Park St, San Francisco,CA,94016 +230276,Wired Headphones,2,11.99,2019-07-09 22:13:00,1 River St, Los Angeles,CA,90001 +230277,Lightning Charging Cable,1,14.95,2019-07-04 14:59:00,107 Chestnut St, Austin,TX,73301 +230278,USB-C Charging Cable,1,11.95,2019-07-12 17:01:00,232 8th St, Seattle,WA,98101 +230279,AA Batteries (4-pack),1,3.84,2019-07-05 20:54:00,807 1st St, Los Angeles,CA,90001 +230280,Bose SoundSport Headphones,1,99.99,2019-07-29 21:47:00,831 Hickory St, Los Angeles,CA,90001 +230281,USB-C Charging Cable,1,11.95,2019-07-10 16:57:00,285 Walnut St, Atlanta,GA,30301 +230282,Wired Headphones,2,11.99,2019-07-07 10:20:00,409 Lake St, New York City,NY,10001 +230283,ThinkPad Laptop,1,999.99,2019-07-11 20:53:00,308 Dogwood St, Los Angeles,CA,90001 +230284,Wired Headphones,1,11.99,2019-07-12 09:58:00,864 2nd St, San Francisco,CA,94016 +230285,34in Ultrawide Monitor,1,379.99,2019-07-18 14:53:00,918 Jackson St, New York City,NY,10001 +230286,USB-C Charging Cable,1,11.95,2019-07-22 12:07:00,895 2nd St, San Francisco,CA,94016 +230287,Bose SoundSport Headphones,1,99.99,2019-07-31 04:03:00,583 Sunset St, San Francisco,CA,94016 +230288,AAA Batteries (4-pack),1,2.99,2019-07-25 23:10:00,120 Pine St, Boston,MA,02215 +230289,Apple Airpods Headphones,1,150.0,2019-07-17 23:15:00,719 Highland St, San Francisco,CA,94016 +230290,AA Batteries (4-pack),1,3.84,2019-07-08 19:37:00,986 Cherry St, Seattle,WA,98101 +230291,34in Ultrawide Monitor,1,379.99,2019-07-09 12:27:00,694 Pine St, Boston,MA,02215 +230292,LG Washing Machine,1,600.0,2019-07-17 17:44:00,678 Jefferson St, New York City,NY,10001 +230293,Lightning Charging Cable,1,14.95,2019-07-19 10:16:00,267 7th St, Los Angeles,CA,90001 +230294,34in Ultrawide Monitor,1,379.99,2019-07-03 17:17:00,943 Sunset St, Boston,MA,02215 +230295,AAA Batteries (4-pack),1,2.99,2019-07-29 18:27:00,479 Chestnut St, Atlanta,GA,30301 +230296,Google Phone,1,600.0,2019-07-30 23:41:00,128 11th St, San Francisco,CA,94016 +230296,Wired Headphones,1,11.99,2019-07-30 23:41:00,128 11th St, San Francisco,CA,94016 +230297,AAA Batteries (4-pack),1,2.99,2019-07-01 18:27:00,324 Lake St, San Francisco,CA,94016 +230298,USB-C Charging Cable,1,11.95,2019-07-27 22:06:00,87 2nd St, New York City,NY,10001 +230299,Wired Headphones,1,11.99,2019-07-12 20:35:00,991 Dogwood St, San Francisco,CA,94016 +230300,AA Batteries (4-pack),1,3.84,2019-07-28 21:11:00,749 Willow St, San Francisco,CA,94016 +230301,27in FHD Monitor,1,149.99,2019-07-22 16:37:00,429 12th St, Portland,OR,97035 +230302,27in 4K Gaming Monitor,1,389.99,2019-07-01 20:45:00,344 4th St, Seattle,WA,98101 +230303,Bose SoundSport Headphones,1,99.99,2019-07-01 13:47:00,283 12th St, New York City,NY,10001 +230304,Wired Headphones,1,11.99,2019-07-02 15:27:00,342 8th St, Los Angeles,CA,90001 +230305,AAA Batteries (4-pack),1,2.99,2019-07-02 17:11:00,932 Adams St, Dallas,TX,75001 +230306,Wired Headphones,1,11.99,2019-07-19 09:58:00,20 North St, San Francisco,CA,94016 +230307,AAA Batteries (4-pack),1,2.99,2019-07-08 13:13:00,111 Church St, Los Angeles,CA,90001 +230308,AA Batteries (4-pack),2,3.84,2019-07-30 00:48:00,361 West St, Portland,ME,04101 +230309,iPhone,1,700.0,2019-07-05 11:36:00,40 South St, New York City,NY,10001 +230310,ThinkPad Laptop,1,999.99,2019-07-22 18:24:00,811 Hickory St, Los Angeles,CA,90001 +230311,USB-C Charging Cable,1,11.95,2019-07-28 12:59:00,112 Elm St, Los Angeles,CA,90001 +230312,AAA Batteries (4-pack),1,2.99,2019-07-28 21:31:00,809 Chestnut St, Portland,OR,97035 +230313,Bose SoundSport Headphones,1,99.99,2019-07-17 00:39:00,478 5th St, Los Angeles,CA,90001 +230314,AAA Batteries (4-pack),1,2.99,2019-07-18 17:12:00,28 11th St, Los Angeles,CA,90001 +230315,AAA Batteries (4-pack),1,2.99,2019-07-17 10:11:00,894 2nd St, Boston,MA,02215 +230316,Bose SoundSport Headphones,1,99.99,2019-07-11 08:33:00,291 North St, New York City,NY,10001 +230317,Bose SoundSport Headphones,1,99.99,2019-07-25 20:30:00,702 Lincoln St, San Francisco,CA,94016 +230318,34in Ultrawide Monitor,1,379.99,2019-07-13 16:51:00,985 Hill St, Dallas,TX,75001 +230319,AAA Batteries (4-pack),1,2.99,2019-07-21 18:00:00,342 Adams St, San Francisco,CA,94016 +230320,Wired Headphones,1,11.99,2019-07-21 22:54:00,919 Forest St, San Francisco,CA,94016 +230321,USB-C Charging Cable,1,11.95,2019-07-19 15:40:00,294 Forest St, San Francisco,CA,94016 +230322,AAA Batteries (4-pack),2,2.99,2019-07-08 23:48:00,539 Dogwood St, Los Angeles,CA,90001 +230323,USB-C Charging Cable,1,11.95,2019-07-28 20:56:00,400 Chestnut St, Los Angeles,CA,90001 +230324,USB-C Charging Cable,1,11.95,2019-07-29 20:41:00,408 Sunset St, San Francisco,CA,94016 +230325,Bose SoundSport Headphones,1,99.99,2019-07-18 12:04:00,728 Adams St, New York City,NY,10001 +230326,AA Batteries (4-pack),1,3.84,2019-07-02 09:03:00,579 Sunset St, Dallas,TX,75001 +230327,Bose SoundSport Headphones,1,99.99,2019-07-11 14:49:00,13 Lakeview St, Seattle,WA,98101 +230328,AAA Batteries (4-pack),1,2.99,2019-07-26 17:12:00,9 Washington St, Portland,OR,97035 +230329,AAA Batteries (4-pack),1,2.99,2019-07-18 20:50:00,315 Church St, New York City,NY,10001 +230330,Lightning Charging Cable,1,14.95,2019-07-10 12:52:00,841 Adams St, San Francisco,CA,94016 +230331,20in Monitor,1,109.99,2019-07-26 19:32:00,356 Willow St, Los Angeles,CA,90001 +230332,Google Phone,1,600.0,2019-07-23 15:11:00,177 Elm St, Los Angeles,CA,90001 +230333,Flatscreen TV,1,300.0,2019-07-10 21:55:00,458 Park St, Austin,TX,73301 +230334,ThinkPad Laptop,1,999.99,2019-07-22 15:24:00,220 Washington St, Portland,OR,97035 +230335,iPhone,1,700.0,2019-07-03 20:19:00,164 Main St, New York City,NY,10001 +230335,Lightning Charging Cable,1,14.95,2019-07-03 20:19:00,164 Main St, New York City,NY,10001 +230336,27in FHD Monitor,1,149.99,2019-07-27 12:06:00,262 Church St, Austin,TX,73301 +230337,iPhone,1,700.0,2019-07-18 22:10:00,866 9th St, Portland,OR,97035 +230337,Lightning Charging Cable,1,14.95,2019-07-18 22:10:00,866 9th St, Portland,OR,97035 +230338,AA Batteries (4-pack),2,3.84,2019-07-11 18:33:00,229 8th St, New York City,NY,10001 +230339,AAA Batteries (4-pack),3,2.99,2019-07-12 22:50:00,66 5th St, Los Angeles,CA,90001 +230340,Apple Airpods Headphones,1,150.0,2019-07-08 22:45:00,689 River St, San Francisco,CA,94016 +230341,USB-C Charging Cable,1,11.95,2019-07-06 21:21:00,752 Cherry St, New York City,NY,10001 +230342,USB-C Charging Cable,2,11.95,2019-07-01 19:41:00,248 Lincoln St, San Francisco,CA,94016 +230342,Lightning Charging Cable,1,14.95,2019-07-01 19:41:00,248 Lincoln St, San Francisco,CA,94016 +230343,LG Dryer,1,600.0,2019-07-10 14:23:00,546 Chestnut St, Atlanta,GA,30301 +230344,iPhone,1,700.0,2019-07-24 19:07:00,127 Dogwood St, Seattle,WA,98101 +230345,USB-C Charging Cable,1,11.95,2019-07-24 17:31:00,253 Ridge St, Portland,OR,97035 +230346,Bose SoundSport Headphones,1,99.99,2019-07-19 09:15:00,721 Maple St, Atlanta,GA,30301 +230347,Lightning Charging Cable,1,14.95,2019-07-05 15:11:00,877 Maple St, Atlanta,GA,30301 +230348,AA Batteries (4-pack),1,3.84,2019-07-22 12:06:00,210 West St, San Francisco,CA,94016 +230349,Lightning Charging Cable,1,14.95,2019-07-05 16:42:00,262 Spruce St, San Francisco,CA,94016 +230350,USB-C Charging Cable,1,11.95,2019-07-25 20:00:00,965 Willow St, New York City,NY,10001 +230351,Bose SoundSport Headphones,1,99.99,2019-07-22 14:45:00,775 2nd St, Dallas,TX,75001 +230352,AAA Batteries (4-pack),2,2.99,2019-07-28 16:59:00,833 11th St, San Francisco,CA,94016 +230353,AA Batteries (4-pack),3,3.84,2019-07-07 22:43:00,509 Spruce St, San Francisco,CA,94016 +230354,Google Phone,1,600.0,2019-07-25 14:18:00,430 13th St, Austin,TX,73301 +230354,USB-C Charging Cable,1,11.95,2019-07-25 14:18:00,430 13th St, Austin,TX,73301 +230355,AA Batteries (4-pack),2,3.84,2019-07-03 16:37:00,849 Maple St, Boston,MA,02215 +230356,Apple Airpods Headphones,1,150.0,2019-07-21 20:10:00,134 5th St, Dallas,TX,75001 +230357,USB-C Charging Cable,1,11.95,2019-07-15 23:51:00,265 Maple St, Dallas,TX,75001 +230358,Google Phone,1,600.0,2019-07-26 21:22:00,671 Washington St, Los Angeles,CA,90001 +230359,Wired Headphones,1,11.99,2019-07-20 18:58:00,259 Jefferson St, Los Angeles,CA,90001 +230360,Bose SoundSport Headphones,1,99.99,2019-07-02 17:45:00,814 Dogwood St, San Francisco,CA,94016 +230361,Wired Headphones,1,11.99,2019-07-26 14:16:00,214 Washington St, Boston,MA,02215 +230362,27in 4K Gaming Monitor,1,389.99,2019-07-20 10:17:00,515 Sunset St, San Francisco,CA,94016 +230363,AA Batteries (4-pack),1,3.84,2019-07-18 22:44:00,797 Dogwood St, Portland,OR,97035 +230364,AAA Batteries (4-pack),1,2.99,2019-07-22 11:04:00,732 Spruce St, San Francisco,CA,94016 +230365,ThinkPad Laptop,1,999.99,2019-07-21 13:04:00,970 Church St, Austin,TX,73301 +230366,USB-C Charging Cable,1,11.95,2019-07-21 13:56:00,183 Dogwood St, Boston,MA,02215 +230367,AA Batteries (4-pack),1,3.84,2019-07-17 20:43:00,597 Forest St, San Francisco,CA,94016 +230368,Bose SoundSport Headphones,1,99.99,2019-07-14 12:55:00,248 Hickory St, San Francisco,CA,94016 +230369,Apple Airpods Headphones,1,150.0,2019-07-09 11:42:00,44 Main St, New York City,NY,10001 +230369,27in 4K Gaming Monitor,1,389.99,2019-07-09 11:42:00,44 Main St, New York City,NY,10001 +230370,AA Batteries (4-pack),1,3.84,2019-07-26 11:22:00,865 Elm St, Los Angeles,CA,90001 +230371,Lightning Charging Cable,1,14.95,2019-07-31 21:42:00,615 Chestnut St, Seattle,WA,98101 +230372,Apple Airpods Headphones,1,150.0,2019-07-09 12:04:00,460 8th St, Los Angeles,CA,90001 +230373,Bose SoundSport Headphones,1,99.99,2019-07-19 18:00:00,489 Dogwood St, Dallas,TX,75001 +230374,AA Batteries (4-pack),1,3.84,2019-07-21 14:04:00,193 Highland St, Portland,OR,97035 +230375,ThinkPad Laptop,1,999.99,2019-07-20 17:26:00,260 Adams St, Atlanta,GA,30301 +230376,AAA Batteries (4-pack),1,2.99,2019-07-16 11:21:00,868 Hill St, New York City,NY,10001 +230377,Lightning Charging Cable,1,14.95,2019-07-02 00:46:00,727 Lincoln St, New York City,NY,10001 +230378,Wired Headphones,1,11.99,2019-07-05 18:00:00,850 Lincoln St, Boston,MA,02215 +230379,USB-C Charging Cable,1,11.95,2019-07-21 09:47:00,428 Highland St, Seattle,WA,98101 +230380,USB-C Charging Cable,1,11.95,2019-07-14 16:24:00,586 Lakeview St, Dallas,TX,75001 +230381,AAA Batteries (4-pack),1,2.99,2019-07-19 10:27:00,583 6th St, Portland,OR,97035 +230382,AA Batteries (4-pack),1,3.84,2019-07-16 22:41:00,826 Washington St, Los Angeles,CA,90001 +230383,27in FHD Monitor,1,149.99,2019-07-15 21:19:00,74 Jefferson St, Boston,MA,02215 +230384,Bose SoundSport Headphones,1,99.99,2019-07-24 13:32:00,103 7th St, Seattle,WA,98101 +230385,USB-C Charging Cable,1,11.95,2019-07-28 15:13:00,541 9th St, San Francisco,CA,94016 +230386,iPhone,1,700.0,2019-07-04 11:41:00,276 Hickory St, San Francisco,CA,94016 +230387,Lightning Charging Cable,1,14.95,2019-07-19 23:33:00,465 Sunset St, San Francisco,CA,94016 +230388,27in 4K Gaming Monitor,1,389.99,2019-07-25 15:52:00,176 Pine St, New York City,NY,10001 +230389,USB-C Charging Cable,1,11.95,2019-07-11 07:57:00,328 Johnson St, Los Angeles,CA,90001 +230390,Wired Headphones,1,11.99,2019-07-11 20:20:00,820 5th St, San Francisco,CA,94016 +230391,Lightning Charging Cable,1,14.95,2019-07-13 09:00:00,219 River St, San Francisco,CA,94016 +230392,AA Batteries (4-pack),1,3.84,2019-07-12 13:24:00,345 Cedar St, Atlanta,GA,30301 +230393,Flatscreen TV,1,300.0,2019-07-18 16:01:00,607 Forest St, Austin,TX,73301 +230394,Lightning Charging Cable,2,14.95,2019-07-19 09:26:00,454 Cedar St, Seattle,WA,98101 +230395,Lightning Charging Cable,2,14.95,2019-07-23 15:43:00,296 9th St, Seattle,WA,98101 +230396,Wired Headphones,1,11.99,2019-07-06 19:20:00,4 Spruce St, Atlanta,GA,30301 +230397,34in Ultrawide Monitor,1,379.99,2019-07-19 14:54:00,393 Hill St, Portland,OR,97035 +230398,Apple Airpods Headphones,1,150.0,2019-07-24 21:00:00,336 Johnson St, New York City,NY,10001 +230399,Lightning Charging Cable,1,14.95,2019-07-11 16:26:00,701 Lakeview St, San Francisco,CA,94016 +230400,Macbook Pro Laptop,1,1700.0,2019-07-04 05:58:00,531 Ridge St, Dallas,TX,75001 +230401,AAA Batteries (4-pack),1,2.99,2019-07-30 17:14:00,37 Lakeview St, San Francisco,CA,94016 +230402,AA Batteries (4-pack),1,3.84,2019-07-05 08:00:00,421 Walnut St, San Francisco,CA,94016 +230403,USB-C Charging Cable,1,11.95,2019-07-26 20:34:00,123 Adams St, San Francisco,CA,94016 +230404,iPhone,1,700.0,2019-07-07 12:21:00,880 Walnut St, Seattle,WA,98101 +230404,Lightning Charging Cable,1,14.95,2019-07-07 12:21:00,880 Walnut St, Seattle,WA,98101 +230405,Lightning Charging Cable,1,14.95,2019-07-03 11:20:00,494 14th St, Los Angeles,CA,90001 +230406,Lightning Charging Cable,1,14.95,2019-07-02 01:16:00,736 Park St, San Francisco,CA,94016 +230407,Lightning Charging Cable,1,14.95,2019-07-06 22:13:00,177 Ridge St, San Francisco,CA,94016 +230408,AAA Batteries (4-pack),1,2.99,2019-07-05 12:16:00,252 5th St, Boston,MA,02215 +230409,27in FHD Monitor,1,149.99,2019-07-04 11:45:00,874 Lincoln St, Dallas,TX,75001 +230410,Wired Headphones,1,11.99,2019-07-17 20:51:00,388 South St, Austin,TX,73301 +230411,AAA Batteries (4-pack),1,2.99,2019-07-05 18:17:00,566 Elm St, Dallas,TX,75001 +230412,Google Phone,1,600.0,2019-07-26 16:30:00,803 5th St, Portland,OR,97035 +230413,USB-C Charging Cable,1,11.95,2019-07-14 10:56:00,85 Park St, Boston,MA,02215 +230414,Lightning Charging Cable,1,14.95,2019-07-04 14:11:00,284 Willow St, Austin,TX,73301 +230415,AAA Batteries (4-pack),1,2.99,2019-07-22 10:57:00,639 West St, New York City,NY,10001 +230416,Apple Airpods Headphones,1,150.0,2019-07-21 10:31:00,959 1st St, San Francisco,CA,94016 +230417,Apple Airpods Headphones,1,150.0,2019-07-15 07:46:00,615 Elm St, San Francisco,CA,94016 +230418,USB-C Charging Cable,1,11.95,2019-07-29 19:53:00,3 13th St, New York City,NY,10001 +230419,Lightning Charging Cable,1,14.95,2019-07-31 16:25:00,1 Adams St, Seattle,WA,98101 +230420,Flatscreen TV,1,300.0,2019-07-31 15:18:00,104 Church St, Seattle,WA,98101 +230421,USB-C Charging Cable,1,11.95,2019-07-14 12:17:00,745 Elm St, Los Angeles,CA,90001 +230422,Flatscreen TV,1,300.0,2019-07-01 21:42:00,94 8th St, Seattle,WA,98101 +230423,Lightning Charging Cable,1,14.95,2019-07-11 07:31:00,544 13th St, Boston,MA,02215 +230424,AAA Batteries (4-pack),1,2.99,2019-07-07 14:52:00,857 Chestnut St, Seattle,WA,98101 +230425,Bose SoundSport Headphones,1,99.99,2019-07-22 22:08:00,113 8th St, Boston,MA,02215 +230426,Lightning Charging Cable,1,14.95,2019-07-31 06:51:00,686 8th St, Los Angeles,CA,90001 +230427,Lightning Charging Cable,1,14.95,2019-07-02 12:13:00,865 Meadow St, San Francisco,CA,94016 +230428,Apple Airpods Headphones,1,150.0,2019-07-16 11:09:00,538 Dogwood St, Los Angeles,CA,90001 +230429,27in FHD Monitor,1,149.99,2019-07-09 22:20:00,405 Walnut St, San Francisco,CA,94016 +230430,34in Ultrawide Monitor,1,379.99,2019-07-21 11:39:00,672 Center St, Los Angeles,CA,90001 +230431,USB-C Charging Cable,1,11.95,2019-07-03 11:40:00,666 Willow St, Los Angeles,CA,90001 +230432,Vareebadd Phone,1,400.0,2019-07-23 17:32:00,414 West St, Los Angeles,CA,90001 +230432,USB-C Charging Cable,1,11.95,2019-07-23 17:32:00,414 West St, Los Angeles,CA,90001 +230433,iPhone,1,700.0,2019-07-01 16:15:00,554 Ridge St, Atlanta,GA,30301 +230433,Lightning Charging Cable,1,14.95,2019-07-01 16:15:00,554 Ridge St, Atlanta,GA,30301 +230434,Flatscreen TV,1,300.0,2019-07-22 14:53:00,393 4th St, San Francisco,CA,94016 +230435,Google Phone,1,600.0,2019-07-22 11:12:00,641 Maple St, New York City,NY,10001 +230436,Flatscreen TV,1,300.0,2019-07-22 20:40:00,160 North St, Portland,OR,97035 +230437,AAA Batteries (4-pack),1,2.99,2019-07-19 19:09:00,824 Sunset St, Dallas,TX,75001 +230438,27in FHD Monitor,1,149.99,2019-07-10 15:27:00,127 Ridge St, Dallas,TX,75001 +230439,Macbook Pro Laptop,1,1700.0,2019-07-31 12:07:00,144 2nd St, Seattle,WA,98101 +230440,Lightning Charging Cable,1,14.95,2019-07-02 11:53:00,361 Forest St, Portland,ME,04101 +230441,Lightning Charging Cable,1,14.95,2019-07-13 09:01:00,699 8th St, Austin,TX,73301 +230442,USB-C Charging Cable,1,11.95,2019-07-01 10:16:00,770 8th St, San Francisco,CA,94016 +230443,USB-C Charging Cable,1,11.95,2019-07-13 19:01:00,946 Cherry St, San Francisco,CA,94016 +230444,Apple Airpods Headphones,1,150.0,2019-07-30 11:58:00,250 Highland St, Portland,OR,97035 +230445,AAA Batteries (4-pack),1,2.99,2019-07-03 22:54:00,624 13th St, Dallas,TX,75001 +230446,USB-C Charging Cable,1,11.95,2019-07-02 15:38:00,366 9th St, Boston,MA,02215 +230447,Bose SoundSport Headphones,1,99.99,2019-07-28 22:41:00,160 Main St, New York City,NY,10001 +230448,iPhone,1,700.0,2019-07-16 08:43:00,96 Sunset St, Dallas,TX,75001 +230449,Apple Airpods Headphones,1,150.0,2019-07-30 21:17:00,514 4th St, Los Angeles,CA,90001 +230450,Lightning Charging Cable,1,14.95,2019-07-31 21:51:00,664 Meadow St, Boston,MA,02215 +230451,Lightning Charging Cable,1,14.95,2019-07-17 19:55:00,510 Cedar St, Los Angeles,CA,90001 +230452,Wired Headphones,1,11.99,2019-07-11 18:35:00,938 Dogwood St, Los Angeles,CA,90001 +230453,Lightning Charging Cable,1,14.95,2019-07-15 13:50:00,246 2nd St, Los Angeles,CA,90001 +230454,Apple Airpods Headphones,1,150.0,2019-07-18 15:09:00,491 South St, San Francisco,CA,94016 +230455,USB-C Charging Cable,1,11.95,2019-07-13 10:59:00,646 South St, San Francisco,CA,94016 +230456,27in 4K Gaming Monitor,1,389.99,2019-07-22 10:29:00,574 2nd St, Los Angeles,CA,90001 +230457,AA Batteries (4-pack),2,3.84,2019-07-01 18:37:00,812 Main St, San Francisco,CA,94016 +230458,Apple Airpods Headphones,1,150.0,2019-07-29 23:32:00,128 1st St, San Francisco,CA,94016 +230459,AA Batteries (4-pack),2,3.84,2019-07-18 11:58:00,66 Chestnut St, Seattle,WA,98101 +230460,USB-C Charging Cable,1,11.95,2019-07-06 16:59:00,219 Lake St, San Francisco,CA,94016 +230461,34in Ultrawide Monitor,1,379.99,2019-07-29 13:55:00,805 West St, San Francisco,CA,94016 +230462,AAA Batteries (4-pack),5,2.99,2019-07-07 18:06:00,719 11th St, San Francisco,CA,94016 +230463,Lightning Charging Cable,1,14.95,2019-07-23 23:00:00,338 Jefferson St, Seattle,WA,98101 +230464,AA Batteries (4-pack),2,3.84,2019-07-13 09:47:00,239 North St, New York City,NY,10001 +230465,AA Batteries (4-pack),1,3.84,2019-07-05 20:08:00,720 Wilson St, New York City,NY,10001 +230466,ThinkPad Laptop,1,999.99,2019-07-17 19:59:00,637 West St, Boston,MA,02215 +230467,Wired Headphones,1,11.99,2019-07-01 12:55:00,678 Center St, Seattle,WA,98101 +230468,USB-C Charging Cable,1,11.95,2019-07-08 15:14:00,719 Willow St, San Francisco,CA,94016 +230469,Google Phone,1,600.0,2019-07-05 16:04:00,859 Maple St, San Francisco,CA,94016 +230470,Wired Headphones,1,11.99,2019-07-20 17:23:00,233 5th St, Boston,MA,02215 +230471,Lightning Charging Cable,2,14.95,2019-07-27 12:33:00,353 Ridge St, San Francisco,CA,94016 +230472,AAA Batteries (4-pack),1,2.99,2019-07-09 08:44:00,595 7th St, New York City,NY,10001 +230473,AAA Batteries (4-pack),4,2.99,2019-07-16 14:20:00,86 Wilson St, Austin,TX,73301 +230474,27in FHD Monitor,1,149.99,2019-07-31 14:35:00,658 Forest St, Dallas,TX,75001 +230475,iPhone,1,700.0,2019-07-16 11:09:00,250 Pine St, San Francisco,CA,94016 +230475,Lightning Charging Cable,1,14.95,2019-07-16 11:09:00,250 Pine St, San Francisco,CA,94016 +230476,Bose SoundSport Headphones,1,99.99,2019-07-01 14:15:00,398 Hickory St, San Francisco,CA,94016 +230477,Flatscreen TV,1,300.0,2019-07-18 09:20:00,876 West St, New York City,NY,10001 +230478,20in Monitor,1,109.99,2019-07-30 09:45:00,179 Hickory St, Austin,TX,73301 +230479,Lightning Charging Cable,1,14.95,2019-07-16 15:28:00,218 Meadow St, San Francisco,CA,94016 +230480,Google Phone,1,600.0,2019-07-15 14:47:00,779 Main St, Boston,MA,02215 +230481,USB-C Charging Cable,1,11.95,2019-07-10 20:28:00,523 4th St, San Francisco,CA,94016 +230482,Wired Headphones,1,11.99,2019-07-14 15:46:00,242 Cedar St, Seattle,WA,98101 +230483,USB-C Charging Cable,1,11.95,2019-07-28 19:00:00,279 12th St, Seattle,WA,98101 +230484,Wired Headphones,1,11.99,2019-07-02 22:40:00,116 Madison St, Boston,MA,02215 +230485,Apple Airpods Headphones,1,150.0,2019-07-15 17:08:00,294 Madison St, Atlanta,GA,30301 +230485,ThinkPad Laptop,1,999.99,2019-07-15 17:08:00,294 Madison St, Atlanta,GA,30301 +230486,Flatscreen TV,1,300.0,2019-07-14 21:15:00,744 Madison St, San Francisco,CA,94016 +230487,Apple Airpods Headphones,1,150.0,2019-07-14 16:27:00,737 2nd St, San Francisco,CA,94016 +230488,AA Batteries (4-pack),1,3.84,2019-07-15 16:33:00,142 Lincoln St, San Francisco,CA,94016 +230489,Lightning Charging Cable,1,14.95,2019-07-24 16:25:00,103 Jefferson St, Boston,MA,02215 +230490,Bose SoundSport Headphones,1,99.99,2019-07-14 23:29:00,435 Ridge St, Austin,TX,73301 +230491,34in Ultrawide Monitor,1,379.99,2019-07-30 18:53:00,482 14th St, Los Angeles,CA,90001 +230492,AA Batteries (4-pack),1,3.84,2019-07-03 15:15:00,575 South St, Los Angeles,CA,90001 +230493,Lightning Charging Cable,1,14.95,2019-07-19 16:24:00,32 11th St, Dallas,TX,75001 +230494,Bose SoundSport Headphones,1,99.99,2019-07-09 20:55:00,934 Park St, San Francisco,CA,94016 +230495,Google Phone,1,600.0,2019-07-06 21:05:00,176 Highland St, Portland,ME,04101 +230496,Google Phone,1,600.0,2019-08-01 01:36:00,402 7th St, Portland,ME,04101 +230497,27in FHD Monitor,1,149.99,2019-07-12 10:19:00,171 Park St, Boston,MA,02215 +230498,AAA Batteries (4-pack),1,2.99,2019-07-16 19:29:00,995 Lincoln St, Boston,MA,02215 +230499,Wired Headphones,1,11.99,2019-07-17 19:16:00,981 Hickory St, San Francisco,CA,94016 +230500,Apple Airpods Headphones,1,150.0,2019-07-31 22:58:00,765 Church St, Los Angeles,CA,90001 +230501,Macbook Pro Laptop,1,1700.0,2019-07-24 13:14:00,421 4th St, San Francisco,CA,94016 +230502,AAA Batteries (4-pack),1,2.99,2019-07-15 16:41:00,15 Maple St, San Francisco,CA,94016 +230503,Lightning Charging Cable,2,14.95,2019-07-08 08:09:00,260 2nd St, Seattle,WA,98101 +230504,Bose SoundSport Headphones,1,99.99,2019-07-03 16:27:00,694 5th St, San Francisco,CA,94016 +230505,34in Ultrawide Monitor,1,379.99,2019-07-22 11:37:00,472 Spruce St, San Francisco,CA,94016 +230506,AAA Batteries (4-pack),1,2.99,2019-07-30 16:03:00,931 4th St, Austin,TX,73301 +230507,20in Monitor,1,109.99,2019-07-09 22:37:00,805 Adams St, New York City,NY,10001 +230508,Lightning Charging Cable,1,14.95,2019-07-15 14:40:00,696 Highland St, New York City,NY,10001 +230509,AAA Batteries (4-pack),2,2.99,2019-07-05 17:52:00,650 Meadow St, New York City,NY,10001 +230510,AA Batteries (4-pack),1,3.84,2019-07-25 20:15:00,174 8th St, Boston,MA,02215 +230511,ThinkPad Laptop,1,999.99,2019-07-27 13:24:00,977 Main St, Los Angeles,CA,90001 +230512,Lightning Charging Cable,1,14.95,2019-07-04 19:54:00,107 Lincoln St, Seattle,WA,98101 +230513,Wired Headphones,1,11.99,2019-07-25 22:43:00,220 Dogwood St, San Francisco,CA,94016 +230514,AAA Batteries (4-pack),1,2.99,2019-07-14 17:39:00,628 Adams St, Dallas,TX,75001 +230515,Lightning Charging Cable,1,14.95,2019-07-24 16:48:00,512 Lincoln St, Portland,OR,97035 +230516,Lightning Charging Cable,1,14.95,2019-07-14 14:32:00,679 Chestnut St, San Francisco,CA,94016 +230517,34in Ultrawide Monitor,1,379.99,2019-07-14 08:21:00,523 River St, Dallas,TX,75001 +230518,AAA Batteries (4-pack),1,2.99,2019-07-09 01:50:00,836 Lake St, New York City,NY,10001 +230519,20in Monitor,1,109.99,2019-07-10 17:50:00,760 Pine St, Dallas,TX,75001 +230520,AAA Batteries (4-pack),2,2.99,2019-07-02 09:22:00,689 12th St, New York City,NY,10001 +230521,Lightning Charging Cable,1,14.95,2019-07-30 15:06:00,105 Pine St, New York City,NY,10001 +230522,AAA Batteries (4-pack),3,2.99,2019-07-18 12:08:00,438 Madison St, San Francisco,CA,94016 +230523,27in 4K Gaming Monitor,1,389.99,2019-07-06 07:46:00,631 Willow St, San Francisco,CA,94016 +230524,Apple Airpods Headphones,1,150.0,2019-07-12 17:36:00,674 Madison St, San Francisco,CA,94016 +230525,USB-C Charging Cable,1,11.95,2019-07-10 15:15:00,362 9th St, Austin,TX,73301 +230526,Apple Airpods Headphones,1,150.0,2019-07-20 21:22:00,746 2nd St, Los Angeles,CA,90001 +230527,USB-C Charging Cable,1,11.95,2019-07-04 08:20:00,755 Cherry St, San Francisco,CA,94016 +230528,Google Phone,1,600.0,2019-07-04 16:39:00,752 Elm St, Austin,TX,73301 +230528,Wired Headphones,1,11.99,2019-07-04 16:39:00,752 Elm St, Austin,TX,73301 +230529,USB-C Charging Cable,1,11.95,2019-07-27 09:12:00,459 Johnson St, Austin,TX,73301 +230530,Google Phone,1,600.0,2019-07-16 12:39:00,782 7th St, Austin,TX,73301 +230531,AAA Batteries (4-pack),1,2.99,2019-07-17 11:36:00,435 Main St, New York City,NY,10001 +230532,Apple Airpods Headphones,1,150.0,2019-07-08 07:09:00,6 Chestnut St, Atlanta,GA,30301 +230533,Apple Airpods Headphones,1,150.0,2019-07-14 23:03:00,685 Maple St, Seattle,WA,98101 +230534,Apple Airpods Headphones,1,150.0,2019-07-13 01:40:00,270 Chestnut St, Atlanta,GA,30301 +230535,Apple Airpods Headphones,1,150.0,2019-07-21 16:47:00,739 Lincoln St, Dallas,TX,75001 +230536,27in 4K Gaming Monitor,1,389.99,2019-07-06 18:54:00,603 Center St, San Francisco,CA,94016 +230537,AAA Batteries (4-pack),1,2.99,2019-07-28 00:47:00,733 Hickory St, Dallas,TX,75001 +230538,AA Batteries (4-pack),1,3.84,2019-07-18 00:39:00,353 West St, Portland,OR,97035 +230539,Wired Headphones,1,11.99,2019-07-14 02:12:00,422 7th St, Boston,MA,02215 +230540,Wired Headphones,1,11.99,2019-07-22 12:37:00,581 Maple St, San Francisco,CA,94016 +230541,AAA Batteries (4-pack),3,2.99,2019-07-07 11:57:00,102 Adams St, San Francisco,CA,94016 +230542,Lightning Charging Cable,1,14.95,2019-07-01 20:18:00,920 Park St, San Francisco,CA,94016 +230543,AA Batteries (4-pack),2,3.84,2019-07-24 21:38:00,85 Meadow St, New York City,NY,10001 +230544,ThinkPad Laptop,1,999.99,2019-07-04 18:59:00,524 Lincoln St, Los Angeles,CA,90001 +230545,AA Batteries (4-pack),1,3.84,2019-07-26 05:10:00,718 Johnson St, Portland,ME,04101 +230546,AA Batteries (4-pack),1,3.84,2019-07-12 12:10:00,33 Main St, Boston,MA,02215 +230547,AA Batteries (4-pack),1,3.84,2019-07-21 10:38:00,58 Center St, Atlanta,GA,30301 +230548,USB-C Charging Cable,1,11.95,2019-07-04 18:50:00,104 South St, Los Angeles,CA,90001 +230549,Lightning Charging Cable,1,14.95,2019-07-02 22:05:00,397 Lincoln St, San Francisco,CA,94016 +230550,Google Phone,1,600.0,2019-07-22 13:47:00,66 Center St, New York City,NY,10001 +230550,Wired Headphones,1,11.99,2019-07-22 13:47:00,66 Center St, New York City,NY,10001 +230551,USB-C Charging Cable,1,11.95,2019-07-31 20:01:00,807 West St, Los Angeles,CA,90001 +230552,USB-C Charging Cable,1,11.95,2019-07-29 11:32:00,354 8th St, Atlanta,GA,30301 +230553,AA Batteries (4-pack),1,3.84,2019-07-22 09:49:00,824 Ridge St, Dallas,TX,75001 +230554,34in Ultrawide Monitor,1,379.99,2019-07-03 17:31:00,17 Hickory St, San Francisco,CA,94016 +230555,Wired Headphones,1,11.99,2019-07-14 15:42:00,316 West St, San Francisco,CA,94016 +230556,USB-C Charging Cable,2,11.95,2019-07-19 16:18:00,385 Park St, New York City,NY,10001 +230557,27in FHD Monitor,1,149.99,2019-07-26 17:53:00,702 1st St, Dallas,TX,75001 +230558,20in Monitor,1,109.99,2019-07-18 22:41:00,579 Lake St, Seattle,WA,98101 +230559,Macbook Pro Laptop,1,1700.0,2019-07-09 14:56:00,352 11th St, San Francisco,CA,94016 +230560,Wired Headphones,1,11.99,2019-07-02 14:04:00,686 6th St, New York City,NY,10001 +230560,Google Phone,1,600.0,2019-07-02 14:04:00,686 6th St, New York City,NY,10001 +230561,USB-C Charging Cable,1,11.95,2019-07-16 15:17:00,353 Maple St, Los Angeles,CA,90001 +230562,Lightning Charging Cable,1,14.95,2019-07-25 12:47:00,530 2nd St, Atlanta,GA,30301 +230563,AAA Batteries (4-pack),1,2.99,2019-07-06 10:53:00,802 Forest St, Portland,OR,97035 +230564,Wired Headphones,1,11.99,2019-07-19 15:37:00,437 5th St, New York City,NY,10001 +230565,USB-C Charging Cable,1,11.95,2019-07-27 19:27:00,884 Lakeview St, Los Angeles,CA,90001 +230566,AA Batteries (4-pack),2,3.84,2019-07-25 16:14:00,514 14th St, New York City,NY,10001 +230567,Wired Headphones,1,11.99,2019-07-26 16:35:00,656 1st St, San Francisco,CA,94016 +230568,USB-C Charging Cable,1,11.95,2019-07-04 11:09:00,439 Meadow St, Los Angeles,CA,90001 +230569,Wired Headphones,1,11.99,2019-07-22 23:17:00,219 Maple St, Boston,MA,02215 +230570,USB-C Charging Cable,1,11.95,2019-07-18 07:17:00,178 Maple St, Boston,MA,02215 +230571,Lightning Charging Cable,1,14.95,2019-07-23 12:18:00,313 12th St, Los Angeles,CA,90001 +230572,Wired Headphones,1,11.99,2019-07-27 13:49:00,974 Elm St, Dallas,TX,75001 +230573,ThinkPad Laptop,1,999.99,2019-07-31 00:30:00,466 9th St, Dallas,TX,75001 +230574,AA Batteries (4-pack),1,3.84,2019-07-02 13:20:00,71 Wilson St, Boston,MA,02215 +230575,27in 4K Gaming Monitor,1,389.99,2019-07-22 17:04:00,604 Church St, San Francisco,CA,94016 +230576,Macbook Pro Laptop,1,1700.0,2019-07-29 19:10:00,897 Chestnut St, Dallas,TX,75001 +230577,27in 4K Gaming Monitor,1,389.99,2019-07-19 17:19:00,124 Center St, Seattle,WA,98101 +230578,27in 4K Gaming Monitor,1,389.99,2019-07-29 20:40:00,32 10th St, San Francisco,CA,94016 +230579,USB-C Charging Cable,1,11.95,2019-07-24 21:20:00,305 Cherry St, San Francisco,CA,94016 +230580,Lightning Charging Cable,1,14.95,2019-07-15 10:57:00,237 Jefferson St, San Francisco,CA,94016 +230581,USB-C Charging Cable,1,11.95,2019-07-18 13:49:00,555 9th St, Portland,ME,04101 +230582,Apple Airpods Headphones,1,150.0,2019-07-06 08:54:00,919 Washington St, San Francisco,CA,94016 +230583,Lightning Charging Cable,1,14.95,2019-07-25 21:05:00,554 Jackson St, Los Angeles,CA,90001 +230584,Wired Headphones,1,11.99,2019-07-19 19:04:00,716 Church St, New York City,NY,10001 +230585,Google Phone,1,600.0,2019-07-07 22:47:00,843 Center St, Austin,TX,73301 +230585,USB-C Charging Cable,1,11.95,2019-07-07 22:47:00,843 Center St, Austin,TX,73301 +230586,Lightning Charging Cable,1,14.95,2019-07-20 13:37:00,346 Park St, New York City,NY,10001 +230587,Bose SoundSport Headphones,1,99.99,2019-07-24 17:01:00,229 Elm St, San Francisco,CA,94016 +230588,AAA Batteries (4-pack),3,2.99,2019-07-31 20:10:00,437 Lake St, Los Angeles,CA,90001 +230589,Flatscreen TV,1,300.0,2019-07-27 13:38:00,43 Maple St, Portland,OR,97035 +230590,Flatscreen TV,1,300.0,2019-07-15 14:47:00,445 River St, New York City,NY,10001 +230591,Macbook Pro Laptop,1,1700.0,2019-07-06 22:41:00,111 12th St, Los Angeles,CA,90001 +230592,iPhone,1,700.0,2019-07-25 10:36:00,611 Meadow St, San Francisco,CA,94016 +230593,Flatscreen TV,1,300.0,2019-07-13 21:23:00,641 1st St, Los Angeles,CA,90001 +230594,Wired Headphones,1,11.99,2019-07-07 20:39:00,559 1st St, Portland,OR,97035 +230595,Bose SoundSport Headphones,1,99.99,2019-07-22 17:58:00,27 Elm St, Seattle,WA,98101 +230596,Wired Headphones,1,11.99,2019-07-26 13:26:00,202 Lakeview St, Los Angeles,CA,90001 +230597,Google Phone,1,600.0,2019-07-16 23:25:00,798 8th St, New York City,NY,10001 +230598,iPhone,1,700.0,2019-07-30 11:09:00,682 River St, Boston,MA,02215 +230598,Lightning Charging Cable,1,14.95,2019-07-30 11:09:00,682 River St, Boston,MA,02215 +230599,AA Batteries (4-pack),1,3.84,2019-07-01 13:44:00,960 Lincoln St, Boston,MA,02215 +230600,AA Batteries (4-pack),2,3.84,2019-07-23 10:08:00,303 Wilson St, Los Angeles,CA,90001 +230600,Wired Headphones,1,11.99,2019-07-23 10:08:00,303 Wilson St, Los Angeles,CA,90001 +230601,AA Batteries (4-pack),2,3.84,2019-07-19 17:14:00,247 Wilson St, Seattle,WA,98101 +230602,Bose SoundSport Headphones,1,99.99,2019-08-01 00:44:00,881 Jackson St, Los Angeles,CA,90001 +230603,Wired Headphones,1,11.99,2019-07-27 14:14:00,293 Ridge St, San Francisco,CA,94016 +230604,AAA Batteries (4-pack),2,2.99,2019-07-28 18:44:00,439 Jackson St, Dallas,TX,75001 +230605,Vareebadd Phone,1,400.0,2019-07-27 09:15:00,875 Pine St, Boston,MA,02215 +230605,USB-C Charging Cable,1,11.95,2019-07-27 09:15:00,875 Pine St, Boston,MA,02215 +230606,iPhone,1,700.0,2019-07-14 21:28:00,844 Lincoln St, Atlanta,GA,30301 +230606,Wired Headphones,1,11.99,2019-07-14 21:28:00,844 Lincoln St, Atlanta,GA,30301 +230607,AA Batteries (4-pack),1,3.84,2019-07-15 06:31:00,801 Hill St, Atlanta,GA,30301 +230608,iPhone,1,700.0,2019-07-06 11:05:00,225 4th St, San Francisco,CA,94016 +230609,27in 4K Gaming Monitor,1,389.99,2019-07-12 00:13:00,971 Hickory St, Portland,ME,04101 +230609,AAA Batteries (4-pack),1,2.99,2019-07-12 00:13:00,971 Hickory St, Portland,ME,04101 +230610,AA Batteries (4-pack),1,3.84,2019-07-28 14:42:00,866 Cedar St, Boston,MA,02215 +230611,Apple Airpods Headphones,1,150.0,2019-07-02 14:42:00,660 Jackson St, Portland,OR,97035 +230612,USB-C Charging Cable,1,11.95,2019-07-26 05:29:00,397 Adams St, Atlanta,GA,30301 +230613,Wired Headphones,1,11.99,2019-07-18 23:52:00,483 11th St, Los Angeles,CA,90001 +230614,AAA Batteries (4-pack),1,2.99,2019-07-30 16:41:00,702 5th St, Atlanta,GA,30301 +230615,34in Ultrawide Monitor,1,379.99,2019-07-25 11:00:00,506 South St, New York City,NY,10001 +230616,AA Batteries (4-pack),1,3.84,2019-07-04 23:24:00,145 Dogwood St, San Francisco,CA,94016 +230617,AA Batteries (4-pack),1,3.84,2019-07-05 09:52:00,521 Chestnut St, Atlanta,GA,30301 +230618,27in 4K Gaming Monitor,1,389.99,2019-07-13 12:48:00,912 7th St, Dallas,TX,75001 +230619,AA Batteries (4-pack),1,3.84,2019-07-28 15:20:00,424 Sunset St, Los Angeles,CA,90001 +230620,Bose SoundSport Headphones,1,99.99,2019-07-01 17:25:00,885 Adams St, New York City,NY,10001 +230621,USB-C Charging Cable,1,11.95,2019-07-11 14:46:00,206 Dogwood St, San Francisco,CA,94016 +230622,Lightning Charging Cable,1,14.95,2019-07-06 23:08:00,772 Lincoln St, Los Angeles,CA,90001 +230623,Lightning Charging Cable,1,14.95,2019-07-01 14:17:00,71 9th St, New York City,NY,10001 +230624,Wired Headphones,1,11.99,2019-07-23 14:08:00,255 7th St, Los Angeles,CA,90001 +230625,Flatscreen TV,1,300.0,2019-07-23 15:28:00,599 Walnut St, New York City,NY,10001 +230626,27in FHD Monitor,1,149.99,2019-07-08 11:44:00,472 Forest St, New York City,NY,10001 +230627,27in FHD Monitor,1,149.99,2019-07-21 13:54:00,811 Church St, San Francisco,CA,94016 +230628,Apple Airpods Headphones,1,150.0,2019-07-10 12:35:00,988 11th St, Seattle,WA,98101 +230629,USB-C Charging Cable,1,11.95,2019-07-31 09:50:00,657 2nd St, Atlanta,GA,30301 +230630,Apple Airpods Headphones,1,150.0,2019-07-16 18:51:00,570 2nd St, New York City,NY,10001 +230631,Wired Headphones,1,11.99,2019-07-08 17:44:00,695 Jackson St, Los Angeles,CA,90001 +230632,AA Batteries (4-pack),1,3.84,2019-07-12 22:52:00,812 Dogwood St, Boston,MA,02215 +230633,Apple Airpods Headphones,1,150.0,2019-07-22 10:08:00,71 Wilson St, Boston,MA,02215 +230634,Google Phone,1,600.0,2019-07-30 00:04:00,183 Wilson St, Los Angeles,CA,90001 +230635,AA Batteries (4-pack),1,3.84,2019-07-14 07:49:00,793 Willow St, San Francisco,CA,94016 +230636,AAA Batteries (4-pack),1,2.99,2019-07-08 19:00:00,348 Walnut St, Boston,MA,02215 +230637,USB-C Charging Cable,1,11.95,2019-07-01 20:11:00,170 Jefferson St, San Francisco,CA,94016 +230638,Lightning Charging Cable,1,14.95,2019-07-16 14:47:00,658 Jackson St, Boston,MA,02215 +230639,Lightning Charging Cable,1,14.95,2019-07-17 20:56:00,629 Walnut St, San Francisco,CA,94016 +230640,Apple Airpods Headphones,1,150.0,2019-07-26 20:13:00,916 12th St, San Francisco,CA,94016 +230640,ThinkPad Laptop,1,999.99,2019-07-26 20:13:00,916 12th St, San Francisco,CA,94016 +230641,AAA Batteries (4-pack),1,2.99,2019-07-28 12:11:00,877 5th St, Austin,TX,73301 +230642,Wired Headphones,1,11.99,2019-07-17 20:47:00,68 Lake St, Atlanta,GA,30301 +230643,Vareebadd Phone,1,400.0,2019-07-04 13:44:00,128 13th St, Portland,OR,97035 +230644,Wired Headphones,1,11.99,2019-07-10 11:47:00,683 West St, Dallas,TX,75001 +230645,Lightning Charging Cable,1,14.95,2019-07-12 13:22:00,454 Dogwood St, Los Angeles,CA,90001 +230646,Wired Headphones,1,11.99,2019-07-18 07:17:00,858 1st St, Los Angeles,CA,90001 +230647,Apple Airpods Headphones,2,150.0,2019-07-26 14:55:00,912 13th St, Los Angeles,CA,90001 +230648,AA Batteries (4-pack),1,3.84,2019-07-11 18:24:00,586 Sunset St, Seattle,WA,98101 +230649,USB-C Charging Cable,1,11.95,2019-07-07 03:36:00,836 6th St, Austin,TX,73301 +230650,USB-C Charging Cable,1,11.95,2019-07-24 00:59:00,791 9th St, Boston,MA,02215 +230651,Lightning Charging Cable,1,14.95,2019-07-26 13:40:00,457 Spruce St, San Francisco,CA,94016 +230652,Wired Headphones,1,11.99,2019-07-03 22:13:00,653 West St, Seattle,WA,98101 +230653,Wired Headphones,1,11.99,2019-07-24 17:56:00,309 7th St, Austin,TX,73301 +230654,AAA Batteries (4-pack),1,2.99,2019-07-10 03:30:00,114 9th St, Portland,OR,97035 +230655,USB-C Charging Cable,1,11.95,2019-07-11 21:17:00,969 Johnson St, Los Angeles,CA,90001 +230656,27in 4K Gaming Monitor,1,389.99,2019-07-03 16:35:00,99 Meadow St, Los Angeles,CA,90001 +230657,Wired Headphones,3,11.99,2019-07-19 14:09:00,841 Johnson St, San Francisco,CA,94016 +230658,Bose SoundSport Headphones,1,99.99,2019-07-29 14:17:00,194 Wilson St, Atlanta,GA,30301 +230659,USB-C Charging Cable,1,11.95,2019-07-08 23:51:00,694 Madison St, Boston,MA,02215 +230660,20in Monitor,1,109.99,2019-07-20 14:38:00,672 Lake St, San Francisco,CA,94016 +230661,Lightning Charging Cable,1,14.95,2019-07-13 15:23:00,55 Dogwood St, Los Angeles,CA,90001 +230662,AAA Batteries (4-pack),1,2.99,2019-07-29 14:27:00,951 Center St, New York City,NY,10001 +230663,USB-C Charging Cable,2,11.95,2019-07-24 13:43:00,629 Chestnut St, Dallas,TX,75001 +230664,Bose SoundSport Headphones,1,99.99,2019-07-14 10:13:00,442 River St, Boston,MA,02215 +230665,Macbook Pro Laptop,1,1700.0,2019-07-21 08:02:00,111 6th St, San Francisco,CA,94016 +230666,34in Ultrawide Monitor,1,379.99,2019-07-27 16:54:00,804 Pine St, Portland,OR,97035 +230667,Lightning Charging Cable,1,14.95,2019-07-28 22:19:00,361 Washington St, San Francisco,CA,94016 +230668,AAA Batteries (4-pack),1,2.99,2019-07-15 20:55:00,502 Hill St, Boston,MA,02215 +230669,Wired Headphones,2,11.99,2019-07-16 09:05:00,957 Chestnut St, New York City,NY,10001 +230670,Apple Airpods Headphones,1,150.0,2019-07-26 09:00:00,884 Meadow St, San Francisco,CA,94016 +230671,USB-C Charging Cable,1,11.95,2019-07-18 17:08:00,735 Main St, Los Angeles,CA,90001 +230672,27in FHD Monitor,1,149.99,2019-07-09 03:30:00,937 Spruce St, San Francisco,CA,94016 +230673,Flatscreen TV,1,300.0,2019-07-26 11:36:00,938 Hickory St, Austin,TX,73301 +230674,34in Ultrawide Monitor,1,379.99,2019-07-12 09:32:00,932 10th St, Atlanta,GA,30301 +230675,AA Batteries (4-pack),1,3.84,2019-07-04 21:45:00,224 Forest St, Dallas,TX,75001 +230676,Wired Headphones,1,11.99,2019-07-30 23:37:00,243 Meadow St, San Francisco,CA,94016 +230677,Flatscreen TV,1,300.0,2019-07-29 00:04:00,193 Jackson St, Dallas,TX,75001 +230678,Wired Headphones,2,11.99,2019-07-19 12:55:00,658 Jackson St, Portland,OR,97035 +230679,AA Batteries (4-pack),1,3.84,2019-07-01 22:46:00,284 Meadow St, Los Angeles,CA,90001 +230680,Lightning Charging Cable,1,14.95,2019-07-31 20:28:00,761 Hill St, Austin,TX,73301 +230681,Bose SoundSport Headphones,1,99.99,2019-07-24 23:31:00,237 Center St, Los Angeles,CA,90001 +230682,AAA Batteries (4-pack),1,2.99,2019-07-07 00:42:00,929 Lakeview St, New York City,NY,10001 +230683,AA Batteries (4-pack),1,3.84,2019-07-17 18:53:00,515 9th St, San Francisco,CA,94016 +230684,Lightning Charging Cable,1,14.95,2019-07-01 08:20:00,342 West St, Boston,MA,02215 +230685,USB-C Charging Cable,1,11.95,2019-07-15 12:35:00,37 Hill St, New York City,NY,10001 +230686,Flatscreen TV,1,300.0,2019-07-26 11:36:00,897 Center St, Los Angeles,CA,90001 +230687,USB-C Charging Cable,2,11.95,2019-07-03 17:07:00,679 Meadow St, Boston,MA,02215 +230688,USB-C Charging Cable,1,11.95,2019-07-10 11:09:00,606 Adams St, Dallas,TX,75001 +230689,Wired Headphones,1,11.99,2019-07-09 16:22:00,367 Highland St, Austin,TX,73301 +230690,USB-C Charging Cable,1,11.95,2019-07-16 18:23:00,307 Forest St, Austin,TX,73301 +230691,Lightning Charging Cable,3,14.95,2019-07-28 11:37:00,989 Highland St, Boston,MA,02215 +230692,Wired Headphones,1,11.99,2019-07-12 19:18:00,311 Meadow St, Los Angeles,CA,90001 +230693,USB-C Charging Cable,1,11.95,2019-07-09 09:23:00,422 12th St, Los Angeles,CA,90001 +230694,AA Batteries (4-pack),1,3.84,2019-07-19 21:52:00,801 Elm St, Portland,OR,97035 +230695,iPhone,1,700.0,2019-07-07 12:07:00,70 Maple St, San Francisco,CA,94016 +230696,AA Batteries (4-pack),1,3.84,2019-07-25 10:53:00,779 11th St, Boston,MA,02215 +230697,Bose SoundSport Headphones,1,99.99,2019-07-01 09:45:00,779 Sunset St, Austin,TX,73301 +230698,27in FHD Monitor,1,149.99,2019-07-08 10:30:00,779 North St, Los Angeles,CA,90001 +230699,AAA Batteries (4-pack),2,2.99,2019-07-05 23:16:00,975 Lakeview St, San Francisco,CA,94016 +230700,LG Washing Machine,1,600.0,2019-07-16 09:33:00,50 5th St, Seattle,WA,98101 +230701,27in 4K Gaming Monitor,1,389.99,2019-07-08 16:12:00,898 Adams St, New York City,NY,10001 +230702,AA Batteries (4-pack),3,3.84,2019-07-28 20:21:00,324 Main St, Los Angeles,CA,90001 +230703,iPhone,1,700.0,2019-07-14 07:02:00,535 Hickory St, Los Angeles,CA,90001 +230704,Wired Headphones,1,11.99,2019-07-08 13:35:00,105 5th St, Austin,TX,73301 +230705,ThinkPad Laptop,1,999.99,2019-07-04 18:01:00,207 River St, Seattle,WA,98101 +230706,AAA Batteries (4-pack),1,2.99,2019-07-18 16:26:00,208 Main St, Seattle,WA,98101 +230707,Wired Headphones,1,11.99,2019-07-06 07:33:00,463 1st St, San Francisco,CA,94016 +230708,Lightning Charging Cable,1,14.95,2019-07-31 11:55:00,333 13th St, Los Angeles,CA,90001 +230709,Lightning Charging Cable,1,14.95,2019-07-21 19:19:00,789 Jackson St, Austin,TX,73301 +230710,Apple Airpods Headphones,1,150.0,2019-07-30 22:42:00,182 1st St, San Francisco,CA,94016 +230711,AAA Batteries (4-pack),1,2.99,2019-07-04 07:40:00,764 14th St, San Francisco,CA,94016 +230712,Apple Airpods Headphones,1,150.0,2019-07-12 18:41:00,448 Maple St, Dallas,TX,75001 +230713,Bose SoundSport Headphones,1,99.99,2019-07-20 12:02:00,878 6th St, Dallas,TX,75001 +230714,27in FHD Monitor,1,149.99,2019-07-14 12:34:00,929 11th St, Atlanta,GA,30301 +230715,AA Batteries (4-pack),2,3.84,2019-07-28 22:39:00,783 Elm St, Los Angeles,CA,90001 +230716,AAA Batteries (4-pack),2,2.99,2019-07-22 09:24:00,362 Meadow St, San Francisco,CA,94016 +230717,USB-C Charging Cable,1,11.95,2019-07-28 13:37:00,104 Ridge St, New York City,NY,10001 +230718,AA Batteries (4-pack),2,3.84,2019-07-18 06:11:00,411 Adams St, New York City,NY,10001 +230719,AAA Batteries (4-pack),1,2.99,2019-07-11 18:03:00,154 8th St, San Francisco,CA,94016 +230720,27in FHD Monitor,1,149.99,2019-07-11 19:44:00,377 Jackson St, New York City,NY,10001 +230721,Macbook Pro Laptop,1,1700.0,2019-07-31 19:14:00,151 Willow St, Austin,TX,73301 +230722,Vareebadd Phone,1,400.0,2019-07-29 16:07:00,515 Dogwood St, Austin,TX,73301 +230722,USB-C Charging Cable,2,11.95,2019-07-29 16:07:00,515 Dogwood St, Austin,TX,73301 +230723,USB-C Charging Cable,1,11.95,2019-07-07 10:13:00,9 Cedar St, Boston,MA,02215 +230724,AA Batteries (4-pack),1,3.84,2019-07-18 12:00:00,403 10th St, New York City,NY,10001 +230725,LG Washing Machine,1,600.0,2019-07-14 15:27:00,146 Jackson St, Austin,TX,73301 +230726,AA Batteries (4-pack),2,3.84,2019-07-13 19:37:00,826 Walnut St, San Francisco,CA,94016 +230727,AAA Batteries (4-pack),1,2.99,2019-07-10 12:18:00,153 4th St, Boston,MA,02215 +230728,Macbook Pro Laptop,1,1700.0,2019-07-08 18:30:00,29 Church St, Boston,MA,02215 +230729,Vareebadd Phone,1,400.0,2019-07-07 12:30:00,962 Willow St, Portland,OR,97035 +230730,34in Ultrawide Monitor,1,379.99,2019-07-10 13:38:00,211 Park St, Atlanta,GA,30301 +230731,Wired Headphones,1,11.99,2019-07-10 09:42:00,208 Johnson St, New York City,NY,10001 +230732,iPhone,1,700.0,2019-07-08 16:55:00,385 Ridge St, Dallas,TX,75001 +230733,Lightning Charging Cable,1,14.95,2019-07-15 18:13:00,888 Sunset St, Atlanta,GA,30301 +230734,AAA Batteries (4-pack),1,2.99,2019-07-21 23:35:00,745 Main St, New York City,NY,10001 +230735,Lightning Charging Cable,1,14.95,2019-07-30 16:15:00,974 Ridge St, New York City,NY,10001 +230736,AA Batteries (4-pack),1,3.84,2019-07-26 08:29:00,861 Elm St, San Francisco,CA,94016 +230737,Wired Headphones,1,11.99,2019-07-16 01:29:00,425 12th St, Atlanta,GA,30301 +230738,27in 4K Gaming Monitor,1,389.99,2019-07-17 18:17:00,88 Hill St, Los Angeles,CA,90001 +230739,Bose SoundSport Headphones,1,99.99,2019-07-18 17:21:00,438 14th St, Dallas,TX,75001 +230740,Apple Airpods Headphones,1,150.0,2019-07-04 20:31:00,806 Adams St, San Francisco,CA,94016 +230741,Lightning Charging Cable,1,14.95,2019-07-03 16:57:00,749 Cedar St, Atlanta,GA,30301 +230742,USB-C Charging Cable,1,11.95,2019-07-20 11:49:00,995 Madison St, Seattle,WA,98101 +230743,Lightning Charging Cable,1,14.95,2019-07-05 10:27:00,790 4th St, New York City,NY,10001 +230744,USB-C Charging Cable,1,11.95,2019-07-20 11:27:00,132 North St, Los Angeles,CA,90001 +230744,34in Ultrawide Monitor,1,379.99,2019-07-20 11:27:00,132 North St, Los Angeles,CA,90001 +230745,Lightning Charging Cable,1,14.95,2019-07-10 22:03:00,795 Highland St, New York City,NY,10001 +230746,Google Phone,1,600.0,2019-07-13 08:58:00,616 4th St, Atlanta,GA,30301 +230746,USB-C Charging Cable,1,11.95,2019-07-13 08:58:00,616 4th St, Atlanta,GA,30301 +230747,Flatscreen TV,1,300.0,2019-07-16 16:07:00,677 12th St, Seattle,WA,98101 +230748,AA Batteries (4-pack),1,3.84,2019-07-15 22:06:00,186 11th St, Portland,OR,97035 +230749,Flatscreen TV,1,300.0,2019-07-07 07:57:00,180 Pine St, New York City,NY,10001 +230750,Bose SoundSport Headphones,1,99.99,2019-07-06 13:26:00,501 West St, Austin,TX,73301 +230751,27in FHD Monitor,1,149.99,2019-07-02 19:14:00,215 West St, Austin,TX,73301 +230752,27in 4K Gaming Monitor,1,389.99,2019-07-12 22:52:00,504 Cedar St, Boston,MA,02215 +230753,Apple Airpods Headphones,1,150.0,2019-07-28 14:37:00,595 Chestnut St, Dallas,TX,75001 +230754,27in FHD Monitor,1,149.99,2019-07-02 08:48:00,834 Spruce St, San Francisco,CA,94016 +230755,AAA Batteries (4-pack),2,2.99,2019-07-30 13:17:00,848 10th St, Dallas,TX,75001 +230756,AA Batteries (4-pack),2,3.84,2019-07-05 14:22:00,102 8th St, Boston,MA,02215 +230757,AA Batteries (4-pack),2,3.84,2019-07-15 21:32:00,176 Park St, Los Angeles,CA,90001 +230758,Wired Headphones,1,11.99,2019-07-07 13:37:00,806 Main St, San Francisco,CA,94016 +230759,AAA Batteries (4-pack),1,2.99,2019-07-07 17:16:00,981 12th St, Portland,ME,04101 +230760,Wired Headphones,1,11.99,2019-07-10 22:59:00,86 Washington St, Los Angeles,CA,90001 +230761,AA Batteries (4-pack),1,3.84,2019-07-18 16:16:00,377 Forest St, New York City,NY,10001 +230762,34in Ultrawide Monitor,1,379.99,2019-07-24 17:37:00,502 8th St, San Francisco,CA,94016 +230763,Wired Headphones,1,11.99,2019-07-20 09:35:00,454 Center St, Dallas,TX,75001 +230764,Bose SoundSport Headphones,1,99.99,2019-07-22 10:48:00,246 Hill St, Boston,MA,02215 +230765,AAA Batteries (4-pack),1,2.99,2019-07-17 18:30:00,488 Walnut St, Austin,TX,73301 +230766,Google Phone,1,600.0,2019-07-24 14:19:00,287 Main St, Los Angeles,CA,90001 +230767,Lightning Charging Cable,1,14.95,2019-07-08 09:22:00,792 Chestnut St, Seattle,WA,98101 +230768,Apple Airpods Headphones,1,150.0,2019-07-24 18:29:00,621 Cedar St, New York City,NY,10001 +230769,USB-C Charging Cable,1,11.95,2019-07-22 12:35:00,533 Hill St, San Francisco,CA,94016 +230770,USB-C Charging Cable,1,11.95,2019-07-20 09:34:00,55 South St, Los Angeles,CA,90001 +230771,USB-C Charging Cable,1,11.95,2019-07-12 07:59:00,530 2nd St, Atlanta,GA,30301 +230772,USB-C Charging Cable,3,11.95,2019-07-18 07:47:00,459 Forest St, Seattle,WA,98101 +230773,Bose SoundSport Headphones,1,99.99,2019-07-26 23:11:00,462 Washington St, Portland,OR,97035 +230774,Apple Airpods Headphones,1,150.0,2019-07-12 04:46:00,203 Sunset St, Boston,MA,02215 +230775,27in FHD Monitor,1,149.99,2019-07-03 19:23:00,71 Spruce St, Los Angeles,CA,90001 +230776,AA Batteries (4-pack),1,3.84,2019-07-17 19:18:00,516 Jackson St, Los Angeles,CA,90001 +230777,Lightning Charging Cable,1,14.95,2019-07-25 20:31:00,409 Maple St, Seattle,WA,98101 +230778,Wired Headphones,1,11.99,2019-07-31 21:38:00,383 Highland St, Boston,MA,02215 +230779,Macbook Pro Laptop,1,1700.0,2019-07-02 11:54:00,697 13th St, Austin,TX,73301 +230780,AAA Batteries (4-pack),1,2.99,2019-07-12 19:45:00,946 Cedar St, Seattle,WA,98101 +230781,Apple Airpods Headphones,1,150.0,2019-07-04 08:45:00,623 Willow St, Seattle,WA,98101 +230782,Apple Airpods Headphones,1,150.0,2019-07-06 13:50:00,393 Spruce St, San Francisco,CA,94016 +230783,AA Batteries (4-pack),1,3.84,2019-07-23 19:05:00,567 Lakeview St, Atlanta,GA,30301 +230784,Google Phone,1,600.0,2019-07-29 12:58:00,564 Church St, Austin,TX,73301 +230785,Wired Headphones,1,11.99,2019-07-01 11:12:00,764 2nd St, Los Angeles,CA,90001 +230786,Flatscreen TV,1,300.0,2019-07-13 21:59:00,352 Adams St, San Francisco,CA,94016 +230787,AAA Batteries (4-pack),1,2.99,2019-07-05 22:32:00,964 North St, Boston,MA,02215 +230788,Bose SoundSport Headphones,1,99.99,2019-07-22 18:04:00,881 Church St, Los Angeles,CA,90001 +230789,USB-C Charging Cable,1,11.95,2019-07-14 15:06:00,218 South St, Boston,MA,02215 +230790,AA Batteries (4-pack),3,3.84,2019-07-28 20:36:00,844 5th St, New York City,NY,10001 +230791,27in FHD Monitor,1,149.99,2019-07-18 11:33:00,636 Maple St, New York City,NY,10001 +230792,USB-C Charging Cable,1,11.95,2019-07-27 17:59:00,124 2nd St, Boston,MA,02215 +230793,AAA Batteries (4-pack),1,2.99,2019-07-19 22:20:00,804 14th St, Los Angeles,CA,90001 +230794,AA Batteries (4-pack),1,3.84,2019-07-30 09:39:00,935 Lincoln St, San Francisco,CA,94016 +230795,AA Batteries (4-pack),4,3.84,2019-07-23 21:24:00,897 Jackson St, Los Angeles,CA,90001 +230796,ThinkPad Laptop,1,999.99,2019-07-10 11:45:00,636 Hickory St, Austin,TX,73301 +230797,USB-C Charging Cable,1,11.95,2019-07-29 14:20:00,766 14th St, Dallas,TX,75001 +230798,AA Batteries (4-pack),2,3.84,2019-07-03 18:31:00,624 South St, Seattle,WA,98101 +230799,AA Batteries (4-pack),1,3.84,2019-07-26 14:28:00,222 6th St, New York City,NY,10001 +230800,LG Washing Machine,1,600.0,2019-07-10 14:46:00,692 13th St, Seattle,WA,98101 +230801,iPhone,1,700.0,2019-07-04 10:44:00,551 14th St, Seattle,WA,98101 +230802,AA Batteries (4-pack),1,3.84,2019-07-04 10:33:00,688 Pine St, Seattle,WA,98101 +230803,USB-C Charging Cable,2,11.95,2019-07-03 12:18:00,402 Jackson St, Atlanta,GA,30301 +230804,Bose SoundSport Headphones,1,99.99,2019-07-21 14:26:00,32 North St, Seattle,WA,98101 +230805,AAA Batteries (4-pack),1,2.99,2019-07-18 17:58:00,695 Center St, San Francisco,CA,94016 +230806,USB-C Charging Cable,1,11.95,2019-07-15 19:25:00,776 Chestnut St, San Francisco,CA,94016 +230807,Lightning Charging Cable,1,14.95,2019-07-18 05:42:00,348 Jefferson St, San Francisco,CA,94016 +230808,Lightning Charging Cable,1,14.95,2019-07-18 20:33:00,430 Dogwood St, Seattle,WA,98101 +230809,Macbook Pro Laptop,1,1700.0,2019-07-23 08:26:00,667 Jefferson St, New York City,NY,10001 +230810,AA Batteries (4-pack),1,3.84,2019-07-06 23:25:00,860 Main St, San Francisco,CA,94016 +230811,AAA Batteries (4-pack),1,2.99,2019-07-09 06:41:00,962 13th St, New York City,NY,10001 +230812,LG Washing Machine,1,600.0,2019-07-14 05:43:00,220 Washington St, Dallas,TX,75001 +230813,34in Ultrawide Monitor,1,379.99,2019-07-05 10:00:00,466 West St, Boston,MA,02215 +230814,Apple Airpods Headphones,1,150.0,2019-07-06 15:36:00,359 Cherry St, Atlanta,GA,30301 +230815,Lightning Charging Cable,1,14.95,2019-07-26 15:49:00,926 8th St, Portland,ME,04101 +230816,Wired Headphones,1,11.99,2019-07-01 12:17:00,494 4th St, Dallas,TX,75001 +230817,USB-C Charging Cable,1,11.95,2019-07-23 14:43:00,697 Meadow St, San Francisco,CA,94016 +230818,Lightning Charging Cable,1,14.95,2019-07-16 18:42:00,834 Elm St, San Francisco,CA,94016 +230819,Lightning Charging Cable,1,14.95,2019-07-14 09:49:00,597 6th St, San Francisco,CA,94016 +230820,USB-C Charging Cable,1,11.95,2019-07-27 06:51:00,984 6th St, Los Angeles,CA,90001 +230821,27in FHD Monitor,1,149.99,2019-07-11 19:29:00,107 12th St, New York City,NY,10001 +230822,USB-C Charging Cable,2,11.95,2019-07-02 16:47:00,539 Meadow St, San Francisco,CA,94016 +230823,USB-C Charging Cable,1,11.95,2019-07-27 15:11:00,811 13th St, Seattle,WA,98101 +230824,AA Batteries (4-pack),2,3.84,2019-07-04 05:44:00,732 Highland St, Boston,MA,02215 +230825,Lightning Charging Cable,1,14.95,2019-07-24 17:11:00,278 Cedar St, Atlanta,GA,30301 +230826,AA Batteries (4-pack),1,3.84,2019-07-01 13:28:00,99 Center St, Dallas,TX,75001 +230827,Flatscreen TV,1,300.0,2019-07-22 10:15:00,666 Park St, Boston,MA,02215 +230828,Apple Airpods Headphones,1,150.0,2019-07-05 00:11:00,670 Maple St, San Francisco,CA,94016 +230829,Flatscreen TV,1,300.0,2019-07-20 08:22:00,312 5th St, Dallas,TX,75001 +230830,AAA Batteries (4-pack),1,2.99,2019-07-01 11:41:00,665 Ridge St, Seattle,WA,98101 +230831,27in FHD Monitor,1,149.99,2019-07-13 17:19:00,968 2nd St, San Francisco,CA,94016 +230832,Lightning Charging Cable,1,14.95,2019-07-14 11:31:00,427 West St, Atlanta,GA,30301 +230833,USB-C Charging Cable,1,11.95,2019-07-07 22:59:00,593 6th St, New York City,NY,10001 +230834,iPhone,1,700.0,2019-07-02 03:06:00,453 River St, New York City,NY,10001 +230835,Google Phone,1,600.0,2019-07-25 22:02:00,655 Chestnut St, New York City,NY,10001 +230836,Apple Airpods Headphones,1,150.0,2019-07-23 11:08:00,744 Chestnut St, Atlanta,GA,30301 +230837,AAA Batteries (4-pack),1,2.99,2019-07-08 13:30:00,31 Highland St, Seattle,WA,98101 +230838,Lightning Charging Cable,1,14.95,2019-07-22 12:09:00,252 Main St, Seattle,WA,98101 +230839,Wired Headphones,1,11.99,2019-07-17 22:11:00,644 Church St, Los Angeles,CA,90001 +230839,AAA Batteries (4-pack),2,2.99,2019-07-17 22:11:00,644 Church St, Los Angeles,CA,90001 +230840,Wired Headphones,1,11.99,2019-07-05 19:24:00,798 Dogwood St, Dallas,TX,75001 +230841,AAA Batteries (4-pack),1,2.99,2019-07-30 00:04:00,639 Church St, Atlanta,GA,30301 +230842,AA Batteries (4-pack),1,3.84,2019-07-04 15:23:00,526 River St, Atlanta,GA,30301 +230843,Bose SoundSport Headphones,1,99.99,2019-07-24 18:02:00,531 6th St, New York City,NY,10001 +230844,USB-C Charging Cable,1,11.95,2019-07-14 18:28:00,44 Jackson St, New York City,NY,10001 +230845,34in Ultrawide Monitor,1,379.99,2019-07-06 20:19:00,910 Maple St, Atlanta,GA,30301 +230846,Apple Airpods Headphones,1,150.0,2019-07-30 18:05:00,892 2nd St, Dallas,TX,75001 +230847,Wired Headphones,1,11.99,2019-07-27 09:26:00,961 Johnson St, Boston,MA,02215 +230848,Lightning Charging Cable,1,14.95,2019-07-01 18:12:00,608 Meadow St, Los Angeles,CA,90001 +230849,Lightning Charging Cable,1,14.95,2019-07-10 09:31:00,752 Wilson St, Seattle,WA,98101 +230850,Wired Headphones,1,11.99,2019-07-11 10:03:00,318 2nd St, Los Angeles,CA,90001 +230851,AAA Batteries (4-pack),1,2.99,2019-07-07 11:48:00,622 Lakeview St, Dallas,TX,75001 +230852,34in Ultrawide Monitor,1,379.99,2019-07-29 15:12:00,916 Washington St, San Francisco,CA,94016 +230853,USB-C Charging Cable,1,11.95,2019-07-06 12:10:00,933 Jefferson St, San Francisco,CA,94016 +230854,Wired Headphones,1,11.99,2019-07-13 15:41:00,528 Pine St, Austin,TX,73301 +230855,AAA Batteries (4-pack),1,2.99,2019-07-22 11:11:00,435 West St, Los Angeles,CA,90001 +230856,Apple Airpods Headphones,1,150.0,2019-07-19 08:48:00,889 9th St, San Francisco,CA,94016 +230857,USB-C Charging Cable,1,11.95,2019-07-18 12:21:00,367 Meadow St, Los Angeles,CA,90001 +230858,Bose SoundSport Headphones,1,99.99,2019-07-28 18:37:00,279 8th St, San Francisco,CA,94016 +230859,ThinkPad Laptop,1,999.99,2019-07-15 16:19:00,70 Washington St, Los Angeles,CA,90001 +230860,USB-C Charging Cable,2,11.95,2019-07-04 09:33:00,410 5th St, Dallas,TX,75001 +230861,Lightning Charging Cable,1,14.95,2019-07-18 23:12:00,6 Chestnut St, Seattle,WA,98101 +230862,Flatscreen TV,1,300.0,2019-07-20 16:16:00,402 10th St, Los Angeles,CA,90001 +230863,iPhone,1,700.0,2019-07-28 21:22:00,637 14th St, Portland,OR,97035 +230864,AAA Batteries (4-pack),1,2.99,2019-07-09 15:08:00,675 Walnut St, Atlanta,GA,30301 +230865,USB-C Charging Cable,1,11.95,2019-07-22 18:43:00,620 Ridge St, Dallas,TX,75001 +230866,Wired Headphones,1,11.99,2019-07-21 14:36:00,187 River St, San Francisco,CA,94016 +230867,Bose SoundSport Headphones,1,99.99,2019-07-17 14:56:00,839 Willow St, Los Angeles,CA,90001 +230868,AAA Batteries (4-pack),1,2.99,2019-07-13 11:16:00,1 Adams St, Los Angeles,CA,90001 +230869,Apple Airpods Headphones,1,150.0,2019-07-26 13:33:00,502 Cherry St, New York City,NY,10001 +230870,AA Batteries (4-pack),2,3.84,2019-07-10 13:20:00,22 Church St, San Francisco,CA,94016 +230870,AAA Batteries (4-pack),1,2.99,2019-07-10 13:20:00,22 Church St, San Francisco,CA,94016 +230871,AAA Batteries (4-pack),1,2.99,2019-07-21 12:50:00,665 Cedar St, New York City,NY,10001 +230872,Apple Airpods Headphones,1,150.0,2019-07-27 19:28:00,471 South St, Boston,MA,02215 +230873,AA Batteries (4-pack),1,3.84,2019-07-24 22:00:00,349 12th St, Los Angeles,CA,90001 +230874,ThinkPad Laptop,1,999.99,2019-07-30 14:40:00,319 Church St, New York City,NY,10001 +230875,Apple Airpods Headphones,1,150.0,2019-07-03 13:09:00,843 14th St, San Francisco,CA,94016 +230876,Wired Headphones,1,11.99,2019-07-07 21:38:00,472 Sunset St, Los Angeles,CA,90001 +230877,USB-C Charging Cable,1,11.95,2019-07-08 20:30:00,379 West St, Austin,TX,73301 +230878,USB-C Charging Cable,1,11.95,2019-07-09 12:26:00,251 Lincoln St, New York City,NY,10001 +230879,Lightning Charging Cable,1,14.95,2019-07-06 17:12:00,577 8th St, San Francisco,CA,94016 +230880,Wired Headphones,1,11.99,2019-07-05 08:52:00,671 Church St, Portland,OR,97035 +230881,AAA Batteries (4-pack),2,2.99,2019-07-20 20:55:00,962 Adams St, Los Angeles,CA,90001 +230882,Vareebadd Phone,1,400.0,2019-07-01 17:18:00,98 North St, San Francisco,CA,94016 +230883,27in FHD Monitor,1,149.99,2019-07-19 12:10:00,266 Main St, Dallas,TX,75001 +230884,Lightning Charging Cable,1,14.95,2019-07-05 11:43:00,991 12th St, San Francisco,CA,94016 +230885,27in 4K Gaming Monitor,1,389.99,2019-07-19 16:22:00,624 Johnson St, Portland,OR,97035 +230886,ThinkPad Laptop,1,999.99,2019-07-19 08:33:00,599 Cedar St, San Francisco,CA,94016 +230887,Google Phone,1,600.0,2019-07-26 00:16:00,72 Ridge St, Portland,OR,97035 +230888,Lightning Charging Cable,1,14.95,2019-07-28 19:32:00,102 Lincoln St, Dallas,TX,75001 +230889,Apple Airpods Headphones,1,150.0,2019-07-30 16:53:00,660 Cherry St, Seattle,WA,98101 +230890,Wired Headphones,1,11.99,2019-07-23 07:50:00,556 West St, Seattle,WA,98101 +230891,AA Batteries (4-pack),1,3.84,2019-07-14 00:15:00,689 Jackson St, Portland,OR,97035 +230892,USB-C Charging Cable,1,11.95,2019-07-04 12:47:00,232 Jackson St, New York City,NY,10001 +230893,Lightning Charging Cable,1,14.95,2019-07-30 14:53:00,574 Lincoln St, Boston,MA,02215 +230894,Lightning Charging Cable,1,14.95,2019-07-19 14:56:00,976 Johnson St, New York City,NY,10001 +230895,Flatscreen TV,1,300.0,2019-07-11 14:22:00,86 6th St, Portland,OR,97035 +230896,Flatscreen TV,1,300.0,2019-07-06 07:29:00,484 Meadow St, San Francisco,CA,94016 +230897,Lightning Charging Cable,1,14.95,2019-07-31 22:55:00,702 Main St, Boston,MA,02215 +230898,Wired Headphones,1,11.99,2019-07-04 21:03:00,435 Sunset St, Dallas,TX,75001 +230899,Apple Airpods Headphones,1,150.0,2019-07-14 18:10:00,382 Lincoln St, Atlanta,GA,30301 +230900,Google Phone,1,600.0,2019-07-26 11:11:00,331 Forest St, San Francisco,CA,94016 +230901,Lightning Charging Cable,1,14.95,2019-07-07 11:16:00,371 Jackson St, Los Angeles,CA,90001 +230902,Bose SoundSport Headphones,1,99.99,2019-07-03 22:42:00,846 Wilson St, Los Angeles,CA,90001 +230903,Apple Airpods Headphones,1,150.0,2019-07-08 17:28:00,898 Washington St, New York City,NY,10001 +230904,Bose SoundSport Headphones,1,99.99,2019-07-05 16:56:00,325 Jackson St, New York City,NY,10001 +230905,Wired Headphones,1,11.99,2019-07-01 16:37:00,472 Pine St, New York City,NY,10001 +230906,Wired Headphones,1,11.99,2019-07-26 09:48:00,264 Park St, Boston,MA,02215 +230907,ThinkPad Laptop,1,999.99,2019-07-18 11:39:00,681 Park St, New York City,NY,10001 +230908,AAA Batteries (4-pack),3,2.99,2019-07-09 13:36:00,617 Meadow St, New York City,NY,10001 +230909,34in Ultrawide Monitor,1,379.99,2019-07-30 10:15:00,949 1st St, Portland,OR,97035 +230910,Google Phone,1,600.0,2019-07-19 17:54:00,676 North St, New York City,NY,10001 +230910,Wired Headphones,1,11.99,2019-07-19 17:54:00,676 North St, New York City,NY,10001 +230911,AAA Batteries (4-pack),3,2.99,2019-07-08 07:59:00,463 13th St, San Francisco,CA,94016 +230912,34in Ultrawide Monitor,1,379.99,2019-07-31 21:51:00,931 Pine St, Atlanta,GA,30301 +230913,Wired Headphones,1,11.99,2019-07-31 18:40:00,874 11th St, San Francisco,CA,94016 +230914,Lightning Charging Cable,1,14.95,2019-07-04 18:20:00,464 Cherry St, Austin,TX,73301 +230915,iPhone,1,700.0,2019-07-21 17:53:00,47 Park St, Los Angeles,CA,90001 +230916,Wired Headphones,1,11.99,2019-07-28 23:43:00,492 Hickory St, Atlanta,GA,30301 +230917,USB-C Charging Cable,1,11.95,2019-07-28 19:52:00,101 Maple St, New York City,NY,10001 +230918,Apple Airpods Headphones,1,150.0,2019-07-25 18:47:00,900 14th St, Los Angeles,CA,90001 +230919,34in Ultrawide Monitor,1,379.99,2019-07-19 18:49:00,267 Park St, Los Angeles,CA,90001 +230920,Bose SoundSport Headphones,1,99.99,2019-07-05 18:02:00,335 Lincoln St, Austin,TX,73301 +230921,AA Batteries (4-pack),1,3.84,2019-07-04 10:00:00,536 Dogwood St, Dallas,TX,75001 +230922,Bose SoundSport Headphones,1,99.99,2019-07-02 18:59:00,465 Lincoln St, Los Angeles,CA,90001 +230923,USB-C Charging Cable,1,11.95,2019-07-03 10:53:00,937 8th St, Los Angeles,CA,90001 +230924,Apple Airpods Headphones,1,150.0,2019-07-19 18:51:00,211 North St, Los Angeles,CA,90001 +230925,iPhone,1,700.0,2019-07-19 15:51:00,902 9th St, New York City,NY,10001 +230926,Lightning Charging Cable,1,14.95,2019-07-20 20:27:00,658 Dogwood St, Seattle,WA,98101 +230927,20in Monitor,1,109.99,2019-07-18 13:30:00,629 Lakeview St, Portland,OR,97035 +230928,Wired Headphones,1,11.99,2019-07-02 21:20:00,13 13th St, San Francisco,CA,94016 +230929,AA Batteries (4-pack),2,3.84,2019-07-15 00:22:00,803 11th St, Boston,MA,02215 +230930,AA Batteries (4-pack),1,3.84,2019-07-23 21:22:00,543 Spruce St, Los Angeles,CA,90001 +230931,Wired Headphones,1,11.99,2019-07-15 23:50:00,488 Hickory St, San Francisco,CA,94016 +230932,Bose SoundSport Headphones,1,99.99,2019-07-08 07:35:00,448 5th St, Boston,MA,02215 +230933,USB-C Charging Cable,1,11.95,2019-07-25 18:39:00,526 Cherry St, Los Angeles,CA,90001 +230934,Google Phone,1,600.0,2019-07-14 19:07:00,813 1st St, Austin,TX,73301 +230934,Lightning Charging Cable,1,14.95,2019-07-14 19:07:00,813 1st St, Austin,TX,73301 +230935,Apple Airpods Headphones,1,150.0,2019-07-21 08:15:00,657 Johnson St, San Francisco,CA,94016 +230936,AAA Batteries (4-pack),1,2.99,2019-07-10 11:32:00,142 Johnson St, Boston,MA,02215 +230937,Google Phone,1,600.0,2019-07-06 15:53:00,461 14th St, Portland,OR,97035 +230938,Wired Headphones,1,11.99,2019-07-28 17:46:00,203 Ridge St, Seattle,WA,98101 +230939,Vareebadd Phone,1,400.0,2019-07-05 21:34:00,659 Maple St, Los Angeles,CA,90001 +230940,Bose SoundSport Headphones,1,99.99,2019-07-07 11:16:00,93 7th St, Atlanta,GA,30301 +230941,Lightning Charging Cable,1,14.95,2019-07-18 22:15:00,990 12th St, San Francisco,CA,94016 +230942,Google Phone,1,600.0,2019-07-22 19:03:00,282 Walnut St, Dallas,TX,75001 +230943,ThinkPad Laptop,1,999.99,2019-07-01 07:53:00,426 Meadow St, Portland,OR,97035 +230944,34in Ultrawide Monitor,1,379.99,2019-07-12 12:05:00,820 Spruce St, Los Angeles,CA,90001 +230945,AAA Batteries (4-pack),1,2.99,2019-07-04 18:35:00,277 Lake St, San Francisco,CA,94016 +230946,27in 4K Gaming Monitor,1,389.99,2019-07-19 21:15:00,934 Dogwood St, Atlanta,GA,30301 +230947,AA Batteries (4-pack),1,3.84,2019-07-31 19:36:00,843 Walnut St, Boston,MA,02215 +230948,Bose SoundSport Headphones,1,99.99,2019-07-24 10:35:00,323 Washington St, Dallas,TX,75001 +230949,Apple Airpods Headphones,1,150.0,2019-07-21 10:29:00,330 Cedar St, Los Angeles,CA,90001 +230950,AA Batteries (4-pack),1,3.84,2019-07-14 19:50:00,440 Madison St, Dallas,TX,75001 +230951,AA Batteries (4-pack),2,3.84,2019-07-05 19:28:00,349 9th St, New York City,NY,10001 +230952,Flatscreen TV,1,300.0,2019-07-03 18:35:00,878 Cedar St, San Francisco,CA,94016 +230953,Apple Airpods Headphones,1,150.0,2019-07-14 12:37:00,517 9th St, Atlanta,GA,30301 +230954,USB-C Charging Cable,1,11.95,2019-07-23 14:26:00,937 West St, Seattle,WA,98101 +230955,USB-C Charging Cable,1,11.95,2019-07-25 10:04:00,532 Jefferson St, Los Angeles,CA,90001 +230956,AAA Batteries (4-pack),4,2.99,2019-07-16 12:49:00,881 5th St, Boston,MA,02215 +230957,Bose SoundSport Headphones,1,99.99,2019-07-21 18:29:00,216 Maple St, Dallas,TX,75001 +230958,Lightning Charging Cable,1,14.95,2019-07-30 09:50:00,852 11th St, New York City,NY,10001 +230959,Bose SoundSport Headphones,1,99.99,2019-07-15 15:34:00,740 Lakeview St, Portland,OR,97035 +230959,AA Batteries (4-pack),1,3.84,2019-07-15 15:34:00,740 Lakeview St, Portland,OR,97035 +230960,USB-C Charging Cable,1,11.95,2019-07-16 11:28:00,931 Center St, Los Angeles,CA,90001 +230961,AA Batteries (4-pack),1,3.84,2019-07-25 14:21:00,471 River St, New York City,NY,10001 +230962,Apple Airpods Headphones,1,150.0,2019-07-28 10:26:00,172 Highland St, San Francisco,CA,94016 +230963,Wired Headphones,1,11.99,2019-07-27 12:26:00,855 Wilson St, Seattle,WA,98101 +230964,Bose SoundSport Headphones,1,99.99,2019-07-25 18:59:00,122 Lakeview St, San Francisco,CA,94016 +230965,27in 4K Gaming Monitor,1,389.99,2019-07-04 11:16:00,450 Spruce St, Austin,TX,73301 +230966,Apple Airpods Headphones,1,150.0,2019-07-10 20:33:00,806 Cherry St, San Francisco,CA,94016 +230967,AAA Batteries (4-pack),1,2.99,2019-07-08 06:05:00,233 Chestnut St, Boston,MA,02215 +230968,Lightning Charging Cable,1,14.95,2019-07-22 10:00:00,2 1st St, Seattle,WA,98101 +230969,Bose SoundSport Headphones,1,99.99,2019-07-28 12:29:00,308 Elm St, Atlanta,GA,30301 +230970,Wired Headphones,1,11.99,2019-07-05 09:55:00,833 Johnson St, San Francisco,CA,94016 +230971,Wired Headphones,1,11.99,2019-07-03 20:17:00,52 Jefferson St, Seattle,WA,98101 +230972,AA Batteries (4-pack),1,3.84,2019-07-27 05:03:00,55 South St, New York City,NY,10001 +230973,34in Ultrawide Monitor,1,379.99,2019-07-31 16:52:00,387 12th St, New York City,NY,10001 +230974,AAA Batteries (4-pack),2,2.99,2019-07-18 16:01:00,418 Chestnut St, San Francisco,CA,94016 +230975,Flatscreen TV,1,300.0,2019-07-30 23:53:00,383 West St, Los Angeles,CA,90001 +230976,USB-C Charging Cable,1,11.95,2019-07-27 08:58:00,416 Jefferson St, Portland,OR,97035 +230977,Apple Airpods Headphones,1,150.0,2019-07-27 14:05:00,691 Hickory St, New York City,NY,10001 +230978,AAA Batteries (4-pack),1,2.99,2019-07-31 12:51:00,986 Spruce St, Atlanta,GA,30301 +230979,AA Batteries (4-pack),2,3.84,2019-07-26 06:57:00,674 Church St, Atlanta,GA,30301 +230980,Lightning Charging Cable,1,14.95,2019-07-14 12:20:00,905 Hill St, New York City,NY,10001 +230981,Wired Headphones,1,11.99,2019-07-30 19:57:00,577 Forest St, Austin,TX,73301 +230982,Macbook Pro Laptop,1,1700.0,2019-07-13 11:10:00,164 10th St, Dallas,TX,75001 +230983,20in Monitor,1,109.99,2019-07-18 12:48:00,571 Park St, San Francisco,CA,94016 +230984,Wired Headphones,1,11.99,2019-07-07 12:43:00,909 Forest St, San Francisco,CA,94016 +230985,iPhone,1,700.0,2019-07-16 12:09:00,950 Park St, Los Angeles,CA,90001 +230986,USB-C Charging Cable,1,11.95,2019-07-31 18:28:00,876 Pine St, New York City,NY,10001 +230987,Bose SoundSport Headphones,1,99.99,2019-07-02 18:20:00,176 Highland St, San Francisco,CA,94016 +230988,USB-C Charging Cable,1,11.95,2019-07-30 19:49:00,743 Maple St, Los Angeles,CA,90001 +230989,iPhone,1,700.0,2019-07-19 10:27:00,551 2nd St, Los Angeles,CA,90001 +230989,Wired Headphones,1,11.99,2019-07-19 10:27:00,551 2nd St, Los Angeles,CA,90001 +230990,Google Phone,1,600.0,2019-07-22 10:55:00,192 Maple St, Dallas,TX,75001 +230990,USB-C Charging Cable,2,11.95,2019-07-22 10:55:00,192 Maple St, Dallas,TX,75001 +230991,USB-C Charging Cable,1,11.95,2019-07-06 13:18:00,40 West St, Seattle,WA,98101 +230992,27in 4K Gaming Monitor,1,389.99,2019-07-11 17:54:00,523 Madison St, San Francisco,CA,94016 +230993,Wired Headphones,1,11.99,2019-07-15 15:34:00,579 6th St, Los Angeles,CA,90001 +230994,AA Batteries (4-pack),1,3.84,2019-07-11 09:24:00,632 South St, San Francisco,CA,94016 +230995,AAA Batteries (4-pack),3,2.99,2019-07-08 20:13:00,782 North St, Portland,OR,97035 +230996,Flatscreen TV,1,300.0,2019-07-28 10:19:00,281 Pine St, Austin,TX,73301 +230997,Flatscreen TV,1,300.0,2019-07-15 00:39:00,81 14th St, San Francisco,CA,94016 +230998,27in 4K Gaming Monitor,1,389.99,2019-07-27 19:43:00,81 12th St, Atlanta,GA,30301 +230999,USB-C Charging Cable,1,11.95,2019-07-01 09:42:00,462 Maple St, New York City,NY,10001 +231000,Lightning Charging Cable,1,14.95,2019-07-14 10:03:00,62 2nd St, New York City,NY,10001 +231001,Bose SoundSport Headphones,1,99.99,2019-07-17 18:06:00,844 Spruce St, San Francisco,CA,94016 +231002,27in 4K Gaming Monitor,1,389.99,2019-07-09 21:17:00,218 Park St, New York City,NY,10001 +231003,LG Dryer,1,600.0,2019-07-22 14:56:00,593 9th St, Los Angeles,CA,90001 +231004,LG Washing Machine,1,600.0,2019-07-12 12:12:00,451 Jefferson St, Portland,OR,97035 +231005,Apple Airpods Headphones,1,150.0,2019-07-06 13:05:00,710 Ridge St, San Francisco,CA,94016 +231006,Apple Airpods Headphones,1,150.0,2019-07-08 15:09:00,426 Jackson St, Portland,ME,04101 +231007,Apple Airpods Headphones,1,150.0,2019-07-28 16:14:00,406 14th St, New York City,NY,10001 +231008,Google Phone,1,600.0,2019-07-17 15:39:00,326 Forest St, San Francisco,CA,94016 +231009,USB-C Charging Cable,2,11.95,2019-07-07 17:37:00,890 12th St, Atlanta,GA,30301 +231010,34in Ultrawide Monitor,1,379.99,2019-07-20 19:37:00,575 Chestnut St, Austin,TX,73301 +231011,Lightning Charging Cable,1,14.95,2019-07-06 20:05:00,700 Elm St, Los Angeles,CA,90001 +231012,34in Ultrawide Monitor,1,379.99,2019-07-08 09:43:00,43 Lincoln St, New York City,NY,10001 +231013,AAA Batteries (4-pack),1,2.99,2019-07-19 22:18:00,577 Jefferson St, San Francisco,CA,94016 +231014,AAA Batteries (4-pack),1,2.99,2019-07-18 14:58:00,594 6th St, New York City,NY,10001 +231015,ThinkPad Laptop,1,999.99,2019-07-31 18:35:00,38 Sunset St, Portland,OR,97035 +231016,AAA Batteries (4-pack),2,2.99,2019-07-03 14:49:00,257 11th St, Austin,TX,73301 +231017,USB-C Charging Cable,1,11.95,2019-07-24 11:35:00,839 Lakeview St, Seattle,WA,98101 +231018,Bose SoundSport Headphones,1,99.99,2019-07-15 07:42:00,406 Highland St, Portland,OR,97035 +231019,AA Batteries (4-pack),1,3.84,2019-07-22 21:28:00,977 2nd St, San Francisco,CA,94016 +231020,Apple Airpods Headphones,1,150.0,2019-07-18 23:49:00,236 11th St, Seattle,WA,98101 +231021,Bose SoundSport Headphones,1,99.99,2019-07-30 12:12:00,859 Chestnut St, Los Angeles,CA,90001 +231022,27in FHD Monitor,1,149.99,2019-07-23 17:23:00,181 Lakeview St, Atlanta,GA,30301 +231023,AAA Batteries (4-pack),2,2.99,2019-07-05 15:30:00,611 Lincoln St, San Francisco,CA,94016 +231024,USB-C Charging Cable,1,11.95,2019-07-24 14:07:00,414 Elm St, Portland,OR,97035 +231025,Apple Airpods Headphones,1,150.0,2019-07-14 20:34:00,587 14th St, San Francisco,CA,94016 +231026,USB-C Charging Cable,1,11.95,2019-07-27 11:12:00,204 Lincoln St, Portland,OR,97035 +231027,Flatscreen TV,1,300.0,2019-07-18 13:04:00,521 North St, Portland,ME,04101 +231028,AAA Batteries (4-pack),1,2.99,2019-07-04 17:30:00,634 Washington St, Dallas,TX,75001 +231029,iPhone,1,700.0,2019-07-14 10:00:00,799 Dogwood St, San Francisco,CA,94016 +231030,AAA Batteries (4-pack),1,2.99,2019-07-20 10:34:00,91 7th St, San Francisco,CA,94016 +231031,Apple Airpods Headphones,1,150.0,2019-07-06 13:04:00,95 Park St, Los Angeles,CA,90001 +231032,USB-C Charging Cable,1,11.95,2019-07-21 13:44:00,97 Chestnut St, Seattle,WA,98101 +231033,Wired Headphones,1,11.99,2019-07-04 15:55:00,374 Center St, Portland,OR,97035 +231034,Apple Airpods Headphones,1,150.0,2019-07-04 21:05:00,140 6th St, New York City,NY,10001 +231035,ThinkPad Laptop,1,999.99,2019-07-08 11:24:00,452 1st St, New York City,NY,10001 +231036,AA Batteries (4-pack),2,3.84,2019-07-31 12:52:00,496 10th St, Los Angeles,CA,90001 +231037,Wired Headphones,1,11.99,2019-07-02 15:25:00,316 6th St, Los Angeles,CA,90001 +231038,Lightning Charging Cable,1,14.95,2019-07-25 17:03:00,739 11th St, Los Angeles,CA,90001 +231039,AAA Batteries (4-pack),2,2.99,2019-07-15 20:03:00,9 West St, New York City,NY,10001 +231040,Vareebadd Phone,1,400.0,2019-07-04 20:03:00,502 12th St, New York City,NY,10001 +231041,Wired Headphones,1,11.99,2019-07-24 10:40:00,841 8th St, Seattle,WA,98101 +231042,27in 4K Gaming Monitor,1,389.99,2019-07-14 11:40:00,261 Jackson St, San Francisco,CA,94016 +231043,AAA Batteries (4-pack),1,2.99,2019-07-10 19:36:00,434 Washington St, Dallas,TX,75001 +231044,27in 4K Gaming Monitor,1,389.99,2019-07-25 08:22:00,518 1st St, Boston,MA,02215 +231045,Macbook Pro Laptop,1,1700.0,2019-07-13 17:05:00,406 Lincoln St, Boston,MA,02215 +231046,ThinkPad Laptop,1,999.99,2019-07-17 19:44:00,934 Main St, Atlanta,GA,30301 +231047,Flatscreen TV,1,300.0,2019-07-02 12:36:00,987 Chestnut St, San Francisco,CA,94016 +231048,AA Batteries (4-pack),1,3.84,2019-07-16 07:38:00,154 Maple St, Los Angeles,CA,90001 +231049,USB-C Charging Cable,1,11.95,2019-07-15 10:32:00,676 Adams St, Los Angeles,CA,90001 +231050,AAA Batteries (4-pack),1,2.99,2019-07-07 12:15:00,611 Sunset St, Boston,MA,02215 +231051,AAA Batteries (4-pack),1,2.99,2019-07-04 15:52:00,597 Spruce St, San Francisco,CA,94016 +231052,USB-C Charging Cable,1,11.95,2019-07-10 06:27:00,46 1st St, Dallas,TX,75001 +231053,20in Monitor,1,109.99,2019-07-19 11:46:00,330 7th St, Los Angeles,CA,90001 +231054,iPhone,1,700.0,2019-07-21 17:15:00,461 Meadow St, Boston,MA,02215 +231055,AA Batteries (4-pack),1,3.84,2019-07-20 06:09:00,69 Walnut St, San Francisco,CA,94016 +231056,Bose SoundSport Headphones,1,99.99,2019-07-31 19:28:00,423 Lake St, San Francisco,CA,94016 +231057,AA Batteries (4-pack),2,3.84,2019-07-29 10:22:00,543 Chestnut St, San Francisco,CA,94016 +231058,iPhone,1,700.0,2019-07-28 12:05:00,543 Walnut St, New York City,NY,10001 +231059,Bose SoundSport Headphones,1,99.99,2019-07-21 16:50:00,590 Washington St, San Francisco,CA,94016 +231060,AA Batteries (4-pack),1,3.84,2019-07-01 14:08:00,287 Pine St, San Francisco,CA,94016 +231060,AAA Batteries (4-pack),1,2.99,2019-07-01 14:08:00,287 Pine St, San Francisco,CA,94016 +231061,AAA Batteries (4-pack),1,2.99,2019-07-20 18:44:00,229 Highland St, San Francisco,CA,94016 +231062,Wired Headphones,1,11.99,2019-07-05 08:41:00,551 4th St, San Francisco,CA,94016 +231063,iPhone,1,700.0,2019-07-18 16:55:00,40 Highland St, Boston,MA,02215 +231064,27in FHD Monitor,1,149.99,2019-07-12 11:20:00,956 Lincoln St, Los Angeles,CA,90001 +231065,Wired Headphones,1,11.99,2019-07-06 11:02:00,242 Pine St, San Francisco,CA,94016 +231066,USB-C Charging Cable,2,11.95,2019-07-31 22:44:00,720 10th St, Seattle,WA,98101 +231067,USB-C Charging Cable,1,11.95,2019-07-30 20:24:00,878 Walnut St, Los Angeles,CA,90001 +231068,AAA Batteries (4-pack),1,2.99,2019-07-13 08:18:00,657 River St, Dallas,TX,75001 +231069,USB-C Charging Cable,1,11.95,2019-07-02 19:35:00,140 Ridge St, San Francisco,CA,94016 +231070,iPhone,1,700.0,2019-07-18 19:51:00,588 Meadow St, Boston,MA,02215 +231071,iPhone,1,700.0,2019-07-03 21:44:00,447 West St, San Francisco,CA,94016 +231072,Apple Airpods Headphones,1,150.0,2019-07-14 16:57:00,649 Center St, Dallas,TX,75001 +231073,Apple Airpods Headphones,1,150.0,2019-07-08 13:45:00,137 13th St, Atlanta,GA,30301 +231074,USB-C Charging Cable,2,11.95,2019-07-04 20:41:00,98 Johnson St, Los Angeles,CA,90001 +231075,Lightning Charging Cable,1,14.95,2019-07-12 23:22:00,801 Washington St, Atlanta,GA,30301 +231076,Bose SoundSport Headphones,1,99.99,2019-07-02 10:29:00,114 11th St, San Francisco,CA,94016 +231077,Wired Headphones,1,11.99,2019-07-29 17:51:00,267 14th St, Atlanta,GA,30301 +231077,Lightning Charging Cable,1,14.95,2019-07-29 17:51:00,267 14th St, Atlanta,GA,30301 +231078,AA Batteries (4-pack),1,3.84,2019-07-20 12:19:00,780 Lake St, New York City,NY,10001 +231079,Apple Airpods Headphones,1,150.0,2019-07-04 08:41:00,350 Jackson St, New York City,NY,10001 +231080,AA Batteries (4-pack),1,3.84,2019-07-30 22:37:00,517 Church St, San Francisco,CA,94016 +231081,USB-C Charging Cable,1,11.95,2019-07-03 13:47:00,693 Sunset St, San Francisco,CA,94016 +231082,27in FHD Monitor,1,149.99,2019-07-02 20:31:00,944 Lakeview St, Portland,OR,97035 +231083,Lightning Charging Cable,1,14.95,2019-07-13 17:14:00,877 14th St, San Francisco,CA,94016 +231084,USB-C Charging Cable,1,11.95,2019-07-17 19:50:00,211 North St, San Francisco,CA,94016 +231085,27in 4K Gaming Monitor,1,389.99,2019-07-24 06:22:00,909 Madison St, New York City,NY,10001 +231086,AAA Batteries (4-pack),1,2.99,2019-07-19 22:06:00,172 12th St, San Francisco,CA,94016 +231087,Wired Headphones,1,11.99,2019-07-02 17:54:00,391 13th St, San Francisco,CA,94016 +231088,Wired Headphones,1,11.99,2019-07-12 11:54:00,21 Jefferson St, Boston,MA,02215 +231089,27in FHD Monitor,1,149.99,2019-07-17 17:16:00,89 Walnut St, Boston,MA,02215 +231090,AA Batteries (4-pack),1,3.84,2019-07-25 10:16:00,261 Madison St, Seattle,WA,98101 +231091,AA Batteries (4-pack),1,3.84,2019-07-17 13:38:00,505 10th St, Portland,ME,04101 +231092,AAA Batteries (4-pack),2,2.99,2019-07-10 11:44:00,813 Church St, Dallas,TX,75001 +231093,Wired Headphones,1,11.99,2019-07-18 09:11:00,341 5th St, Dallas,TX,75001 +231094,AA Batteries (4-pack),1,3.84,2019-07-19 22:20:00,114 13th St, Boston,MA,02215 +231095,34in Ultrawide Monitor,1,379.99,2019-07-11 19:19:00,709 9th St, Atlanta,GA,30301 +231096,AAA Batteries (4-pack),2,2.99,2019-07-05 11:15:00,558 Maple St, San Francisco,CA,94016 +231097,Vareebadd Phone,1,400.0,2019-07-03 10:47:00,719 Adams St, Boston,MA,02215 +231097,USB-C Charging Cable,1,11.95,2019-07-03 10:47:00,719 Adams St, Boston,MA,02215 +231098,Lightning Charging Cable,1,14.95,2019-07-14 08:16:00,938 12th St, Los Angeles,CA,90001 +231099,Google Phone,1,600.0,2019-07-11 10:25:00,788 Hill St, New York City,NY,10001 +231100,Macbook Pro Laptop,1,1700.0,2019-07-23 16:09:00,975 Maple St, Atlanta,GA,30301 +231101,20in Monitor,1,109.99,2019-07-19 08:33:00,232 12th St, Atlanta,GA,30301 +231102,Lightning Charging Cable,1,14.95,2019-07-21 12:25:00,578 10th St, New York City,NY,10001 +231103,Lightning Charging Cable,1,14.95,2019-07-08 07:30:00,792 Cedar St, Boston,MA,02215 +231104,Google Phone,1,600.0,2019-07-11 20:52:00,14 12th St, San Francisco,CA,94016 +231105,Apple Airpods Headphones,1,150.0,2019-07-18 17:32:00,906 Johnson St, Atlanta,GA,30301 +231106,Apple Airpods Headphones,1,150.0,2019-07-19 11:22:00,312 Lincoln St, New York City,NY,10001 +231107,27in FHD Monitor,1,149.99,2019-07-27 11:23:00,210 Ridge St, Boston,MA,02215 +231108,27in 4K Gaming Monitor,1,389.99,2019-07-02 14:42:00,407 Hill St, San Francisco,CA,94016 +231109,27in 4K Gaming Monitor,1,389.99,2019-07-15 19:57:00,935 Pine St, Boston,MA,02215 +231110,Lightning Charging Cable,1,14.95,2019-07-12 17:48:00,63 Hickory St, Seattle,WA,98101 +231111,Lightning Charging Cable,1,14.95,2019-07-29 21:14:00,797 Spruce St, Los Angeles,CA,90001 +231112,34in Ultrawide Monitor,1,379.99,2019-07-04 10:47:00,612 Sunset St, Dallas,TX,75001 +231113,iPhone,1,700.0,2019-07-17 20:10:00,131 Chestnut St, Boston,MA,02215 +231114,iPhone,1,700.0,2019-07-11 15:12:00,922 12th St, San Francisco,CA,94016 +231114,Lightning Charging Cable,1,14.95,2019-07-11 15:12:00,922 12th St, San Francisco,CA,94016 +231115,USB-C Charging Cable,1,11.95,2019-07-27 17:55:00,753 7th St, San Francisco,CA,94016 +231116,Google Phone,1,600.0,2019-07-27 19:35:00,639 1st St, Atlanta,GA,30301 +231117,USB-C Charging Cable,1,11.95,2019-07-16 08:06:00,466 Lakeview St, San Francisco,CA,94016 +231118,20in Monitor,1,109.99,2019-07-29 20:15:00,844 Hickory St, Portland,OR,97035 +231119,Wired Headphones,1,11.99,2019-07-30 15:32:00,615 Ridge St, Dallas,TX,75001 +231120,AA Batteries (4-pack),1,3.84,2019-07-17 18:14:00,440 Spruce St, Boston,MA,02215 +231121,Bose SoundSport Headphones,1,99.99,2019-07-09 23:08:00,893 River St, New York City,NY,10001 +231122,AA Batteries (4-pack),1,3.84,2019-07-04 13:05:00,151 Forest St, Boston,MA,02215 +231123,Lightning Charging Cable,1,14.95,2019-07-07 13:44:00,456 Church St, Boston,MA,02215 +231124,USB-C Charging Cable,1,11.95,2019-07-01 12:45:00,536 Ridge St, Los Angeles,CA,90001 +231125,20in Monitor,1,109.99,2019-07-28 08:21:00,117 14th St, Dallas,TX,75001 +231126,Wired Headphones,1,11.99,2019-07-11 20:52:00,266 Meadow St, Boston,MA,02215 +231127,Wired Headphones,1,11.99,2019-07-27 18:37:00,790 10th St, San Francisco,CA,94016 +231128,Flatscreen TV,1,300.0,2019-07-28 09:46:00,735 Elm St, San Francisco,CA,94016 +231129,Flatscreen TV,1,300.0,2019-07-06 11:34:00,381 8th St, Portland,OR,97035 +231130,Lightning Charging Cable,1,14.95,2019-07-15 01:32:00,706 Willow St, Seattle,WA,98101 +231131,AA Batteries (4-pack),3,3.84,2019-07-04 07:21:00,993 Johnson St, Boston,MA,02215 +231132,27in 4K Gaming Monitor,1,389.99,2019-07-31 15:43:00,769 4th St, San Francisco,CA,94016 +231133,Vareebadd Phone,1,400.0,2019-07-30 17:14:00,652 Main St, Los Angeles,CA,90001 +231133,Wired Headphones,1,11.99,2019-07-30 17:14:00,652 Main St, Los Angeles,CA,90001 +231134,AA Batteries (4-pack),1,3.84,2019-07-06 18:08:00,220 14th St, New York City,NY,10001 +231135,AA Batteries (4-pack),1,3.84,2019-07-19 00:26:00,428 Washington St, New York City,NY,10001 +231136,AAA Batteries (4-pack),1,2.99,2019-07-29 22:10:00,772 Pine St, Portland,OR,97035 +231137,AA Batteries (4-pack),1,3.84,2019-07-10 21:57:00,435 9th St, New York City,NY,10001 +231138,Google Phone,1,600.0,2019-07-26 10:42:00,369 Hickory St, Atlanta,GA,30301 +231139,Lightning Charging Cable,1,14.95,2019-07-15 12:11:00,377 Jefferson St, Boston,MA,02215 +231140,USB-C Charging Cable,1,11.95,2019-07-29 13:38:00,350 Hill St, New York City,NY,10001 +231141,Wired Headphones,2,11.99,2019-07-07 14:12:00,880 Main St, San Francisco,CA,94016 +231142,USB-C Charging Cable,1,11.95,2019-07-18 21:06:00,810 Forest St, Dallas,TX,75001 +231143,Bose SoundSport Headphones,1,99.99,2019-07-28 10:38:00,550 Forest St, San Francisco,CA,94016 +231144,Google Phone,1,600.0,2019-07-16 12:38:00,210 5th St, Boston,MA,02215 +231145,AA Batteries (4-pack),3,3.84,2019-07-14 14:00:00,975 Johnson St, San Francisco,CA,94016 +231146,AA Batteries (4-pack),1,3.84,2019-07-23 12:14:00,570 Madison St, Seattle,WA,98101 +231147,Lightning Charging Cable,1,14.95,2019-07-06 07:11:00,794 Maple St, San Francisco,CA,94016 +231148,ThinkPad Laptop,1,999.99,2019-07-06 22:45:00,335 Lakeview St, Seattle,WA,98101 +231149,Google Phone,1,600.0,2019-07-21 21:07:00,691 Wilson St, Portland,OR,97035 +231150,USB-C Charging Cable,1,11.95,2019-07-20 21:41:00,850 Ridge St, San Francisco,CA,94016 +231151,Lightning Charging Cable,1,14.95,2019-07-10 16:43:00,876 Main St, San Francisco,CA,94016 +231152,Flatscreen TV,1,300.0,2019-07-06 06:10:00,204 Wilson St, San Francisco,CA,94016 +231153,AAA Batteries (4-pack),2,2.99,2019-07-11 11:44:00,678 Main St, Los Angeles,CA,90001 +231154,Wired Headphones,1,11.99,2019-07-26 18:36:00,24 North St, Atlanta,GA,30301 +231155,Apple Airpods Headphones,1,150.0,2019-07-12 22:41:00,482 7th St, New York City,NY,10001 +231156,USB-C Charging Cable,1,11.95,2019-07-04 21:52:00,599 9th St, San Francisco,CA,94016 +231157,Lightning Charging Cable,1,14.95,2019-07-08 03:49:00,777 6th St, Seattle,WA,98101 +231158,Flatscreen TV,1,300.0,2019-07-24 14:11:00,129 Jefferson St, Dallas,TX,75001 +231158,Lightning Charging Cable,1,14.95,2019-07-24 14:11:00,129 Jefferson St, Dallas,TX,75001 +231159,USB-C Charging Cable,1,11.95,2019-07-27 11:29:00,990 Lake St, San Francisco,CA,94016 +231160,34in Ultrawide Monitor,1,379.99,2019-07-25 02:04:00,326 5th St, New York City,NY,10001 +231161,AA Batteries (4-pack),1,3.84,2019-07-28 20:11:00,362 Madison St, San Francisco,CA,94016 +231162,20in Monitor,1,109.99,2019-07-18 19:14:00,658 Walnut St, Boston,MA,02215 +231163,AAA Batteries (4-pack),1,2.99,2019-07-23 10:23:00,262 Center St, Boston,MA,02215 +231164,Wired Headphones,2,11.99,2019-07-22 11:10:00,446 Cherry St, New York City,NY,10001 +231165,iPhone,1,700.0,2019-07-11 00:35:00,164 10th St, Los Angeles,CA,90001 +231166,Lightning Charging Cable,1,14.95,2019-07-10 11:02:00,865 Spruce St, Portland,OR,97035 +231167,Lightning Charging Cable,1,14.95,2019-07-25 13:43:00,963 9th St, Portland,OR,97035 +231168,USB-C Charging Cable,1,11.95,2019-07-25 22:05:00,661 Madison St, Atlanta,GA,30301 +231169,34in Ultrawide Monitor,1,379.99,2019-07-26 17:04:00,612 6th St, Seattle,WA,98101 +231170,AAA Batteries (4-pack),2,2.99,2019-07-02 11:40:00,671 Willow St, Austin,TX,73301 +231171,Macbook Pro Laptop,1,1700.0,2019-07-04 19:39:00,455 Park St, Boston,MA,02215 +231172,AA Batteries (4-pack),2,3.84,2019-07-05 18:43:00,128 Church St, Atlanta,GA,30301 +231173,iPhone,1,700.0,2019-07-26 19:14:00,273 Jefferson St, New York City,NY,10001 +231174,USB-C Charging Cable,2,11.95,2019-07-16 09:12:00,102 4th St, Boston,MA,02215 +231175,27in FHD Monitor,1,149.99,2019-07-18 21:10:00,171 South St, Dallas,TX,75001 +231176,Flatscreen TV,1,300.0,2019-07-04 09:10:00,494 Center St, Los Angeles,CA,90001 +231177,AAA Batteries (4-pack),1,2.99,2019-07-12 15:37:00,167 1st St, New York City,NY,10001 +231178,Google Phone,1,600.0,2019-07-15 06:43:00,456 Chestnut St, Dallas,TX,75001 +231179,AA Batteries (4-pack),1,3.84,2019-07-14 11:26:00,808 6th St, Atlanta,GA,30301 +231180,AA Batteries (4-pack),1,3.84,2019-07-13 13:03:00,904 Main St, Atlanta,GA,30301 +231181,AAA Batteries (4-pack),1,2.99,2019-07-23 17:25:00,132 Sunset St, Portland,OR,97035 +231182,AAA Batteries (4-pack),1,2.99,2019-07-19 19:35:00,199 Pine St, New York City,NY,10001 +231183,USB-C Charging Cable,1,11.95,2019-07-14 13:55:00,534 Willow St, New York City,NY,10001 +231184,20in Monitor,1,109.99,2019-07-05 20:39:00,912 Chestnut St, San Francisco,CA,94016 +231185,34in Ultrawide Monitor,1,379.99,2019-07-28 15:38:00,907 4th St, San Francisco,CA,94016 +231186,ThinkPad Laptop,1,999.99,2019-07-04 13:54:00,878 11th St, Atlanta,GA,30301 +231187,AA Batteries (4-pack),1,3.84,2019-07-22 13:33:00,144 10th St, Dallas,TX,75001 +231188,AA Batteries (4-pack),1,3.84,2019-07-30 14:46:00,719 Lakeview St, Los Angeles,CA,90001 +231189,34in Ultrawide Monitor,1,379.99,2019-07-19 15:54:00,741 Center St, San Francisco,CA,94016 +231190,Wired Headphones,1,11.99,2019-07-14 18:31:00,771 Pine St, New York City,NY,10001 +231191,Wired Headphones,1,11.99,2019-07-02 00:22:00,563 Lake St, New York City,NY,10001 +231192,Bose SoundSport Headphones,1,99.99,2019-07-02 22:34:00,155 Washington St, San Francisco,CA,94016 +231193,Flatscreen TV,1,300.0,2019-07-30 22:49:00,820 5th St, Dallas,TX,75001 +231194,Apple Airpods Headphones,1,150.0,2019-07-22 20:05:00,682 Madison St, New York City,NY,10001 +231195,Bose SoundSport Headphones,1,99.99,2019-07-20 20:56:00,779 Jefferson St, San Francisco,CA,94016 +231196,USB-C Charging Cable,1,11.95,2019-07-14 09:59:00,712 Sunset St, Los Angeles,CA,90001 +231197,Macbook Pro Laptop,1,1700.0,2019-07-21 20:43:00,90 14th St, Austin,TX,73301 +231198,20in Monitor,1,109.99,2019-07-04 18:33:00,432 4th St, Los Angeles,CA,90001 +231199,USB-C Charging Cable,1,11.95,2019-07-11 19:39:00,57 Elm St, Los Angeles,CA,90001 +231200,Apple Airpods Headphones,1,150.0,2019-07-09 19:39:00,637 2nd St, Boston,MA,02215 +231201,ThinkPad Laptop,1,999.99,2019-07-16 09:13:00,355 4th St, Seattle,WA,98101 +231202,Apple Airpods Headphones,1,150.0,2019-07-24 11:57:00,295 Highland St, New York City,NY,10001 +231203,Wired Headphones,2,11.99,2019-07-21 19:42:00,646 Lincoln St, Dallas,TX,75001 +231204,27in 4K Gaming Monitor,1,389.99,2019-07-14 20:18:00,32 Washington St, Seattle,WA,98101 +231205,Wired Headphones,1,11.99,2019-07-10 19:37:00,233 6th St, San Francisco,CA,94016 +231206,Apple Airpods Headphones,1,150.0,2019-07-03 06:34:00,292 4th St, Boston,MA,02215 +231207,AA Batteries (4-pack),1,3.84,2019-07-19 16:56:00,880 Ridge St, Los Angeles,CA,90001 +231208,Flatscreen TV,1,300.0,2019-07-19 14:35:00,956 Cherry St, Austin,TX,73301 +231209,27in FHD Monitor,1,149.99,2019-07-30 18:25:00,289 South St, San Francisco,CA,94016 +231210,27in FHD Monitor,1,149.99,2019-07-25 13:26:00,301 Cherry St, San Francisco,CA,94016 +231211,USB-C Charging Cable,1,11.95,2019-07-13 20:52:00,377 Adams St, Austin,TX,73301 +231212,iPhone,1,700.0,2019-07-22 12:24:00,30 10th St, New York City,NY,10001 +231213,AAA Batteries (4-pack),1,2.99,2019-07-06 19:34:00,696 Chestnut St, Boston,MA,02215 +231214,Bose SoundSport Headphones,1,99.99,2019-07-28 18:14:00,769 Cedar St, Los Angeles,CA,90001 +231215,Bose SoundSport Headphones,1,99.99,2019-07-15 16:54:00,161 12th St, San Francisco,CA,94016 +231216,Flatscreen TV,1,300.0,2019-07-15 00:34:00,984 Hill St, Los Angeles,CA,90001 +231217,Apple Airpods Headphones,1,150.0,2019-07-22 20:38:00,856 6th St, Boston,MA,02215 +231218,ThinkPad Laptop,1,999.99,2019-07-03 22:31:00,898 11th St, Dallas,TX,75001 +231219,AA Batteries (4-pack),1,3.84,2019-07-20 11:36:00,745 Forest St, San Francisco,CA,94016 +231220,27in FHD Monitor,1,149.99,2019-07-04 12:22:00,859 Washington St, Dallas,TX,75001 +231221,iPhone,1,700.0,2019-07-03 22:09:00,950 Elm St, San Francisco,CA,94016 +231222,ThinkPad Laptop,1,999.99,2019-07-13 15:18:00,792 Cherry St, New York City,NY,10001 +231223,Bose SoundSport Headphones,1,99.99,2019-07-31 21:55:00,668 Cherry St, Los Angeles,CA,90001 +231224,iPhone,1,700.0,2019-07-21 23:08:00,441 Washington St, Portland,OR,97035 +231225,iPhone,1,700.0,2019-07-06 09:53:00,650 South St, San Francisco,CA,94016 +231226,Wired Headphones,1,11.99,2019-07-29 12:20:00,995 South St, San Francisco,CA,94016 +231227,iPhone,1,700.0,2019-07-19 14:26:00,43 Spruce St, Austin,TX,73301 +231228,Wired Headphones,1,11.99,2019-07-30 19:30:00,770 11th St, Seattle,WA,98101 +231229,Lightning Charging Cable,1,14.95,2019-07-09 05:19:00,111 Jefferson St, San Francisco,CA,94016 +231230,34in Ultrawide Monitor,1,379.99,2019-07-23 13:21:00,948 4th St, New York City,NY,10001 +231231,AAA Batteries (4-pack),1,2.99,2019-07-20 12:45:00,417 Maple St, Dallas,TX,75001 +231232,AAA Batteries (4-pack),1,2.99,2019-07-13 09:37:00,562 Center St, Dallas,TX,75001 +231233,iPhone,1,700.0,2019-07-23 14:02:00,382 Meadow St, Los Angeles,CA,90001 +231234,AAA Batteries (4-pack),1,2.99,2019-07-17 21:27:00,749 West St, Los Angeles,CA,90001 +231235,Macbook Pro Laptop,1,1700.0,2019-07-18 05:07:00,308 10th St, Seattle,WA,98101 +231236,AAA Batteries (4-pack),1,2.99,2019-07-16 03:22:00,141 4th St, Dallas,TX,75001 +231237,AAA Batteries (4-pack),1,2.99,2019-07-29 18:48:00,350 Washington St, San Francisco,CA,94016 +231238,AAA Batteries (4-pack),2,2.99,2019-07-15 18:09:00,29 Lincoln St, Los Angeles,CA,90001 +231239,AAA Batteries (4-pack),1,2.99,2019-07-14 10:43:00,572 Lakeview St, Austin,TX,73301 +231240,AAA Batteries (4-pack),1,2.99,2019-07-26 07:54:00,477 Lake St, San Francisco,CA,94016 +231241,iPhone,1,700.0,2019-07-10 10:43:00,53 Lake St, San Francisco,CA,94016 +231242,Wired Headphones,1,11.99,2019-07-08 08:34:00,712 Cherry St, New York City,NY,10001 +231243,AA Batteries (4-pack),2,3.84,2019-07-28 02:59:00,750 Elm St, San Francisco,CA,94016 +231244,Apple Airpods Headphones,1,150.0,2019-07-22 18:18:00,44 Wilson St, San Francisco,CA,94016 +231245,Wired Headphones,1,11.99,2019-07-27 16:52:00,665 4th St, Atlanta,GA,30301 +231246,Google Phone,1,600.0,2019-07-24 21:06:00,925 2nd St, San Francisco,CA,94016 +231247,USB-C Charging Cable,1,11.95,2019-07-19 18:36:00,955 River St, New York City,NY,10001 +231248,34in Ultrawide Monitor,1,379.99,2019-07-02 20:09:00,906 Lakeview St, New York City,NY,10001 +231249,Wired Headphones,1,11.99,2019-07-20 23:39:00,678 8th St, New York City,NY,10001 +231250,Wired Headphones,1,11.99,2019-07-29 13:00:00,126 Lincoln St, Boston,MA,02215 +231251,Apple Airpods Headphones,1,150.0,2019-07-25 20:37:00,914 Spruce St, San Francisco,CA,94016 +231252,USB-C Charging Cable,1,11.95,2019-07-19 02:52:00,403 North St, Los Angeles,CA,90001 +231253,LG Dryer,1,600.0,2019-07-28 08:51:00,754 1st St, Los Angeles,CA,90001 +231254,AAA Batteries (4-pack),1,2.99,2019-07-11 13:41:00,53 Willow St, New York City,NY,10001 +231255,Lightning Charging Cable,1,14.95,2019-07-10 10:33:00,603 Willow St, New York City,NY,10001 +231256,iPhone,1,700.0,2019-07-06 11:50:00,129 Jackson St, Los Angeles,CA,90001 +231256,USB-C Charging Cable,1,11.95,2019-07-06 11:50:00,129 Jackson St, Los Angeles,CA,90001 +231257,USB-C Charging Cable,1,11.95,2019-07-24 16:21:00,263 Center St, San Francisco,CA,94016 +231258,Apple Airpods Headphones,1,150.0,2019-07-27 13:09:00,475 Wilson St, New York City,NY,10001 +231259,Lightning Charging Cable,1,14.95,2019-07-30 22:22:00,528 Pine St, Portland,OR,97035 +231260,Apple Airpods Headphones,1,150.0,2019-07-21 23:40:00,606 7th St, Los Angeles,CA,90001 +231260,Lightning Charging Cable,1,14.95,2019-07-21 23:40:00,606 7th St, Los Angeles,CA,90001 +231261,Google Phone,1,600.0,2019-07-12 10:12:00,544 14th St, San Francisco,CA,94016 +231262,USB-C Charging Cable,1,11.95,2019-07-03 09:24:00,104 Ridge St, Los Angeles,CA,90001 +231263,ThinkPad Laptop,1,999.99,2019-07-30 11:22:00,237 Pine St, San Francisco,CA,94016 +231264,AAA Batteries (4-pack),2,2.99,2019-07-17 10:57:00,681 10th St, Portland,ME,04101 +231265,27in FHD Monitor,1,149.99,2019-07-03 16:29:00,256 5th St, Atlanta,GA,30301 +231266,Wired Headphones,1,11.99,2019-07-26 00:24:00,947 Church St, Dallas,TX,75001 +231267,Wired Headphones,1,11.99,2019-07-17 02:34:00,492 River St, San Francisco,CA,94016 +231268,Google Phone,1,600.0,2019-07-21 21:16:00,717 Madison St, Atlanta,GA,30301 +231268,Bose SoundSport Headphones,1,99.99,2019-07-21 21:16:00,717 Madison St, Atlanta,GA,30301 +231269,AA Batteries (4-pack),1,3.84,2019-07-21 11:31:00,422 Hill St, Los Angeles,CA,90001 +231270,USB-C Charging Cable,1,11.95,2019-07-16 23:01:00,14 Spruce St, Seattle,WA,98101 +231271,Wired Headphones,1,11.99,2019-07-01 17:32:00,376 Center St, Portland,OR,97035 +231272,iPhone,1,700.0,2019-07-18 13:34:00,227 Lincoln St, Los Angeles,CA,90001 +231273,Flatscreen TV,1,300.0,2019-07-01 13:24:00,199 North St, Atlanta,GA,30301 +231274,iPhone,1,700.0,2019-07-18 11:23:00,113 1st St, Atlanta,GA,30301 +231275,LG Dryer,1,600.0,2019-07-17 14:24:00,760 2nd St, San Francisco,CA,94016 +231276,AAA Batteries (4-pack),6,2.99,2019-07-20 18:39:00,485 Forest St, Portland,OR,97035 +231277,Wired Headphones,1,11.99,2019-07-19 19:55:00,163 Highland St, New York City,NY,10001 +231278,Wired Headphones,1,11.99,2019-07-16 12:55:00,211 Madison St, Portland,ME,04101 +231279,AAA Batteries (4-pack),1,2.99,2019-07-29 13:12:00,811 Church St, Portland,OR,97035 +231280,AAA Batteries (4-pack),1,2.99,2019-07-04 11:10:00,338 Hickory St, Los Angeles,CA,90001 +231281,Apple Airpods Headphones,1,150.0,2019-07-06 13:22:00,651 Lakeview St, Austin,TX,73301 +231282,iPhone,1,700.0,2019-07-13 13:38:00,110 14th St, Los Angeles,CA,90001 +231283,Lightning Charging Cable,1,14.95,2019-07-06 17:14:00,110 Park St, Atlanta,GA,30301 +231284,AAA Batteries (4-pack),1,2.99,2019-07-30 12:49:00,540 14th St, Los Angeles,CA,90001 +231285,Flatscreen TV,1,300.0,2019-07-10 13:22:00,869 Lake St, San Francisco,CA,94016 +231286,Wired Headphones,1,11.99,2019-07-18 06:04:00,798 Washington St, Austin,TX,73301 +231287,ThinkPad Laptop,1,999.99,2019-07-07 20:12:00,215 West St, San Francisco,CA,94016 +231288,27in 4K Gaming Monitor,1,389.99,2019-07-05 20:02:00,138 13th St, San Francisco,CA,94016 +231289,Bose SoundSport Headphones,1,99.99,2019-07-08 18:02:00,325 Chestnut St, Los Angeles,CA,90001 +231290,USB-C Charging Cable,1,11.95,2019-07-28 09:03:00,773 9th St, Austin,TX,73301 +231291,Wired Headphones,1,11.99,2019-07-30 11:50:00,836 Johnson St, New York City,NY,10001 +231292,USB-C Charging Cable,2,11.95,2019-07-09 19:59:00,146 Chestnut St, Los Angeles,CA,90001 +231293,Apple Airpods Headphones,1,150.0,2019-07-13 00:18:00,323 9th St, Boston,MA,02215 +231294,27in 4K Gaming Monitor,1,389.99,2019-07-14 16:02:00,50 West St, Atlanta,GA,30301 +231295,Lightning Charging Cable,1,14.95,2019-07-19 10:46:00,778 Lakeview St, San Francisco,CA,94016 +231296,AAA Batteries (4-pack),1,2.99,2019-07-29 18:15:00,8 Pine St, San Francisco,CA,94016 +231297,AAA Batteries (4-pack),1,2.99,2019-07-20 20:47:00,864 Park St, Austin,TX,73301 +231298,iPhone,1,700.0,2019-07-18 20:32:00,293 Elm St, San Francisco,CA,94016 +231299,Lightning Charging Cable,1,14.95,2019-07-29 08:21:00,412 Park St, Los Angeles,CA,90001 +231300,Lightning Charging Cable,1,14.95,2019-07-25 01:34:00,344 Hickory St, Los Angeles,CA,90001 +231301,iPhone,1,700.0,2019-07-29 09:18:00,489 Main St, San Francisco,CA,94016 +231302,USB-C Charging Cable,1,11.95,2019-07-10 22:08:00,793 Jackson St, Dallas,TX,75001 +231303,AA Batteries (4-pack),2,3.84,2019-07-14 18:42:00,382 Chestnut St, Portland,OR,97035 +231304,Lightning Charging Cable,1,14.95,2019-07-11 15:28:00,57 Meadow St, Austin,TX,73301 +231305,AAA Batteries (4-pack),2,2.99,2019-07-19 15:07:00,988 Lake St, San Francisco,CA,94016 +231306,Macbook Pro Laptop,1,1700.0,2019-07-18 07:52:00,306 Sunset St, Boston,MA,02215 +231307,Apple Airpods Headphones,1,150.0,2019-07-01 13:16:00,644 Sunset St, Dallas,TX,75001 +231308,Macbook Pro Laptop,1,1700.0,2019-07-28 22:11:00,628 Church St, Portland,OR,97035 +231309,34in Ultrawide Monitor,1,379.99,2019-07-09 18:18:00,121 12th St, Seattle,WA,98101 +231310,Lightning Charging Cable,1,14.95,2019-07-14 08:48:00,797 Hickory St, Atlanta,GA,30301 +231311,20in Monitor,1,109.99,2019-07-04 21:36:00,190 Madison St, Portland,OR,97035 +231312,27in FHD Monitor,1,149.99,2019-07-07 16:25:00,538 10th St, Austin,TX,73301 +231313,Lightning Charging Cable,1,14.95,2019-07-20 18:15:00,777 10th St, San Francisco,CA,94016 +231314,Lightning Charging Cable,1,14.95,2019-07-09 21:19:00,270 Sunset St, Atlanta,GA,30301 +231315,USB-C Charging Cable,1,11.95,2019-07-01 22:34:00,593 Pine St, Boston,MA,02215 +231316,Lightning Charging Cable,1,14.95,2019-07-20 12:19:00,215 Adams St, San Francisco,CA,94016 +231317,Bose SoundSport Headphones,1,99.99,2019-07-20 18:30:00,838 Washington St, San Francisco,CA,94016 +231318,Lightning Charging Cable,1,14.95,2019-07-03 14:32:00,190 Johnson St, Los Angeles,CA,90001 +231319,27in 4K Gaming Monitor,1,389.99,2019-07-15 00:04:00,33 Willow St, Los Angeles,CA,90001 +231320,iPhone,1,700.0,2019-07-16 15:50:00,820 Forest St, Dallas,TX,75001 +231321,Lightning Charging Cable,1,14.95,2019-07-11 09:23:00,704 Church St, Atlanta,GA,30301 +231322,USB-C Charging Cable,1,11.95,2019-07-03 11:47:00,289 Walnut St, Seattle,WA,98101 +231323,AAA Batteries (4-pack),1,2.99,2019-07-20 22:07:00,713 Lake St, Atlanta,GA,30301 +231324,Lightning Charging Cable,1,14.95,2019-07-21 19:26:00,48 6th St, San Francisco,CA,94016 +231325,AAA Batteries (4-pack),2,2.99,2019-07-29 08:48:00,646 Hickory St, Los Angeles,CA,90001 +231326,27in FHD Monitor,1,149.99,2019-07-09 12:03:00,692 Church St, Boston,MA,02215 +231327,Apple Airpods Headphones,1,150.0,2019-07-02 09:47:00,603 Adams St, San Francisco,CA,94016 +231328,Wired Headphones,2,11.99,2019-07-22 19:21:00,258 River St, Los Angeles,CA,90001 +231329,Macbook Pro Laptop,1,1700.0,2019-07-31 06:56:00,255 Jackson St, Los Angeles,CA,90001 +231330,Lightning Charging Cable,1,14.95,2019-07-19 01:37:00,748 Willow St, Los Angeles,CA,90001 +231331,Lightning Charging Cable,1,14.95,2019-07-19 01:08:00,34 1st St, Boston,MA,02215 +231332,Lightning Charging Cable,1,14.95,2019-07-16 17:17:00,437 Meadow St, San Francisco,CA,94016 +231333,34in Ultrawide Monitor,1,379.99,2019-07-14 23:26:00,335 Main St, Seattle,WA,98101 +231334,27in FHD Monitor,1,149.99,2019-07-23 10:35:00,558 Highland St, Los Angeles,CA,90001 +231335,34in Ultrawide Monitor,1,379.99,2019-07-24 16:53:00,613 Madison St, Austin,TX,73301 +231336,Macbook Pro Laptop,1,1700.0,2019-07-17 17:30:00,777 Lake St, San Francisco,CA,94016 +231337,34in Ultrawide Monitor,1,379.99,2019-07-22 21:43:00,213 Cedar St, Dallas,TX,75001 +231338,USB-C Charging Cable,1,11.95,2019-07-09 18:21:00,561 4th St, San Francisco,CA,94016 +231338,ThinkPad Laptop,1,999.99,2019-07-09 18:21:00,561 4th St, San Francisco,CA,94016 +231339,AA Batteries (4-pack),1,3.84,2019-07-13 20:41:00,729 11th St, Boston,MA,02215 +231340,iPhone,1,700.0,2019-07-21 11:46:00,820 Sunset St, San Francisco,CA,94016 +231341,AA Batteries (4-pack),1,3.84,2019-07-01 14:28:00,123 Adams St, Portland,OR,97035 +231342,20in Monitor,1,109.99,2019-07-01 14:18:00,367 7th St, San Francisco,CA,94016 +231343,AAA Batteries (4-pack),2,2.99,2019-07-05 05:49:00,765 Meadow St, Atlanta,GA,30301 +231344,AAA Batteries (4-pack),1,2.99,2019-07-07 20:27:00,748 Willow St, San Francisco,CA,94016 +231345,Lightning Charging Cable,1,14.95,2019-07-06 09:36:00,2 Pine St, New York City,NY,10001 +231346,iPhone,1,700.0,2019-07-31 13:44:00,356 Willow St, Atlanta,GA,30301 +231347,USB-C Charging Cable,2,11.95,2019-07-21 11:09:00,618 Lincoln St, San Francisco,CA,94016 +231348,27in FHD Monitor,1,149.99,2019-07-02 11:07:00,766 Wilson St, Los Angeles,CA,90001 +231349,AA Batteries (4-pack),1,3.84,2019-07-22 12:19:00,919 Hill St, Austin,TX,73301 +231350,USB-C Charging Cable,1,11.95,2019-07-28 13:55:00,678 13th St, San Francisco,CA,94016 +231351,Apple Airpods Headphones,1,150.0,2019-07-22 12:12:00,773 Maple St, Portland,OR,97035 +231352,USB-C Charging Cable,1,11.95,2019-07-18 08:01:00,567 4th St, Los Angeles,CA,90001 +231353,ThinkPad Laptop,1,999.99,2019-07-27 08:44:00,601 Johnson St, Los Angeles,CA,90001 +231354,USB-C Charging Cable,1,11.95,2019-07-05 23:58:00,336 South St, New York City,NY,10001 +231355,Lightning Charging Cable,1,14.95,2019-07-05 21:17:00,238 4th St, New York City,NY,10001 +231356,AA Batteries (4-pack),1,3.84,2019-07-22 20:53:00,22 Lakeview St, Dallas,TX,75001 +231357,Google Phone,1,600.0,2019-07-29 20:12:00,182 Forest St, Boston,MA,02215 +231358,AA Batteries (4-pack),1,3.84,2019-07-10 20:21:00,785 10th St, San Francisco,CA,94016 +231359,34in Ultrawide Monitor,1,379.99,2019-07-14 12:38:00,198 Washington St, Seattle,WA,98101 +231360,Google Phone,1,600.0,2019-07-19 20:39:00,231 Church St, Boston,MA,02215 +231361,iPhone,1,700.0,2019-07-06 23:02:00,534 13th St, Los Angeles,CA,90001 +231361,Lightning Charging Cable,1,14.95,2019-07-06 23:02:00,534 13th St, Los Angeles,CA,90001 +231362,AA Batteries (4-pack),1,3.84,2019-07-31 17:18:00,84 Adams St, San Francisco,CA,94016 +231363,AAA Batteries (4-pack),2,2.99,2019-07-20 16:29:00,862 West St, Seattle,WA,98101 +231364,27in 4K Gaming Monitor,1,389.99,2019-07-29 12:24:00,939 Chestnut St, San Francisco,CA,94016 +231365,Google Phone,1,600.0,2019-07-19 12:10:00,890 Lakeview St, Boston,MA,02215 +231366,Lightning Charging Cable,2,14.95,2019-07-07 17:08:00,416 Jackson St, New York City,NY,10001 +231367,Macbook Pro Laptop,1,1700.0,2019-07-30 10:29:00,683 10th St, Boston,MA,02215 +231368,AAA Batteries (4-pack),2,2.99,2019-07-02 13:43:00,968 14th St, San Francisco,CA,94016 +231369,AAA Batteries (4-pack),1,2.99,2019-07-22 17:56:00,637 Cherry St, San Francisco,CA,94016 +231370,USB-C Charging Cable,1,11.95,2019-07-12 18:43:00,441 2nd St, San Francisco,CA,94016 +231371,AA Batteries (4-pack),1,3.84,2019-07-11 22:37:00,699 Elm St, Atlanta,GA,30301 +231372,AAA Batteries (4-pack),1,2.99,2019-07-08 14:42:00,951 Walnut St, Boston,MA,02215 +231373,Wired Headphones,1,11.99,2019-07-17 11:55:00,449 5th St, San Francisco,CA,94016 +231374,Lightning Charging Cable,1,14.95,2019-07-13 13:48:00,723 Church St, Boston,MA,02215 +231375,Wired Headphones,1,11.99,2019-07-25 20:49:00,626 2nd St, Seattle,WA,98101 +231376,Bose SoundSport Headphones,1,99.99,2019-07-15 22:20:00,82 Chestnut St, Atlanta,GA,30301 +231377,Wired Headphones,1,11.99,2019-07-27 16:47:00,947 Forest St, San Francisco,CA,94016 +231378,Apple Airpods Headphones,1,150.0,2019-07-14 13:29:00,337 Sunset St, New York City,NY,10001 +231379,AA Batteries (4-pack),1,3.84,2019-07-27 17:02:00,305 Jefferson St, New York City,NY,10001 +231380,Bose SoundSport Headphones,1,99.99,2019-07-23 10:20:00,820 Spruce St, Austin,TX,73301 +231381,Google Phone,1,600.0,2019-07-21 13:07:00,441 Adams St, Dallas,TX,75001 +231382,AAA Batteries (4-pack),1,2.99,2019-07-12 09:19:00,957 Main St, New York City,NY,10001 +231383,Lightning Charging Cable,1,14.95,2019-07-23 18:44:00,629 River St, Los Angeles,CA,90001 +231384,Apple Airpods Headphones,1,150.0,2019-07-03 18:33:00,581 Madison St, Los Angeles,CA,90001 +231385,iPhone,1,700.0,2019-07-01 13:13:00,98 Jackson St, Portland,OR,97035 +231386,27in 4K Gaming Monitor,1,389.99,2019-07-24 11:13:00,268 10th St, New York City,NY,10001 +231387,USB-C Charging Cable,1,11.95,2019-07-28 11:25:00,897 Johnson St, New York City,NY,10001 +231388,34in Ultrawide Monitor,1,379.99,2019-07-26 15:05:00,780 10th St, Boston,MA,02215 +231389,USB-C Charging Cable,1,11.95,2019-07-31 22:17:00,309 Sunset St, Dallas,TX,75001 +231390,Wired Headphones,1,11.99,2019-07-26 20:17:00,183 River St, Los Angeles,CA,90001 +231391,AAA Batteries (4-pack),1,2.99,2019-07-24 13:40:00,327 Lake St, Atlanta,GA,30301 +231392,AAA Batteries (4-pack),1,2.99,2019-07-29 11:06:00,155 1st St, Los Angeles,CA,90001 +231393,Wired Headphones,1,11.99,2019-07-28 08:37:00,132 9th St, Dallas,TX,75001 +231394,Lightning Charging Cable,1,14.95,2019-07-26 23:33:00,967 Ridge St, Atlanta,GA,30301 +231395,AAA Batteries (4-pack),1,2.99,2019-07-13 20:08:00,283 10th St, San Francisco,CA,94016 +231396,20in Monitor,1,109.99,2019-07-06 17:38:00,656 Washington St, San Francisco,CA,94016 +231397,Wired Headphones,1,11.99,2019-07-18 09:45:00,273 Park St, New York City,NY,10001 +231398,USB-C Charging Cable,1,11.95,2019-07-25 09:36:00,423 2nd St, San Francisco,CA,94016 +231399,USB-C Charging Cable,1,11.95,2019-07-28 23:45:00,145 5th St, New York City,NY,10001 +231400,Wired Headphones,1,11.99,2019-07-05 14:54:00,534 Meadow St, San Francisco,CA,94016 +231401,Macbook Pro Laptop,1,1700.0,2019-07-08 19:16:00,164 Lake St, New York City,NY,10001 +231402,USB-C Charging Cable,1,11.95,2019-07-15 08:54:00,724 Willow St, New York City,NY,10001 +231403,Lightning Charging Cable,1,14.95,2019-07-07 02:00:00,158 Hill St, San Francisco,CA,94016 +231404,AA Batteries (4-pack),1,3.84,2019-07-13 08:51:00,93 Highland St, Dallas,TX,75001 +231405,Google Phone,1,600.0,2019-07-02 12:11:00,703 11th St, Boston,MA,02215 +231405,USB-C Charging Cable,1,11.95,2019-07-02 12:11:00,703 11th St, Boston,MA,02215 +231406,Bose SoundSport Headphones,1,99.99,2019-07-27 06:35:00,554 Cherry St, Austin,TX,73301 +231407,27in 4K Gaming Monitor,1,389.99,2019-07-25 12:16:00,812 10th St, Los Angeles,CA,90001 +231408,USB-C Charging Cable,1,11.95,2019-07-07 14:58:00,166 Church St, San Francisco,CA,94016 +231409,Google Phone,1,600.0,2019-07-20 10:43:00,455 Washington St, Seattle,WA,98101 +231410,Apple Airpods Headphones,1,150.0,2019-07-24 12:08:00,57 5th St, Boston,MA,02215 +231411,Bose SoundSport Headphones,1,99.99,2019-07-25 19:50:00,399 Lincoln St, Austin,TX,73301 +231412,Wired Headphones,1,11.99,2019-07-01 10:30:00,911 River St, Boston,MA,02215 +231413,AAA Batteries (4-pack),1,2.99,2019-07-02 17:27:00,994 Sunset St, New York City,NY,10001 +231414,Apple Airpods Headphones,1,150.0,2019-07-09 15:19:00,48 1st St, San Francisco,CA,94016 +231415,Lightning Charging Cable,1,14.95,2019-07-01 17:47:00,495 Main St, Portland,OR,97035 +231416,AA Batteries (4-pack),1,3.84,2019-07-23 16:13:00,876 Ridge St, San Francisco,CA,94016 +231417,Wired Headphones,1,11.99,2019-07-19 12:00:00,988 14th St, Portland,OR,97035 +231418,27in 4K Gaming Monitor,1,389.99,2019-07-26 15:10:00,456 Jefferson St, Los Angeles,CA,90001 +231419,Macbook Pro Laptop,1,1700.0,2019-07-08 09:37:00,676 8th St, San Francisco,CA,94016 +231420,iPhone,1,700.0,2019-07-12 21:49:00,929 Park St, New York City,NY,10001 +231421,Google Phone,1,600.0,2019-07-19 13:45:00,955 North St, New York City,NY,10001 +231422,ThinkPad Laptop,1,999.99,2019-07-31 19:07:00,709 Jackson St, Atlanta,GA,30301 +231423,Wired Headphones,1,11.99,2019-07-21 15:56:00,472 8th St, San Francisco,CA,94016 +231424,27in 4K Gaming Monitor,1,389.99,2019-07-21 22:44:00,880 Madison St, San Francisco,CA,94016 +231425,Bose SoundSport Headphones,1,99.99,2019-07-31 10:30:00,703 11th St, Boston,MA,02215 +231426,Apple Airpods Headphones,1,150.0,2019-07-20 17:34:00,680 Lake St, Boston,MA,02215 +231427,Macbook Pro Laptop,1,1700.0,2019-07-24 15:23:00,417 Forest St, Los Angeles,CA,90001 +231428,27in FHD Monitor,1,149.99,2019-07-22 20:02:00,603 Lakeview St, Boston,MA,02215 +231429,20in Monitor,1,109.99,2019-07-02 12:50:00,950 Jackson St, Los Angeles,CA,90001 +231430,34in Ultrawide Monitor,1,379.99,2019-07-29 21:32:00,871 1st St, New York City,NY,10001 +231431,34in Ultrawide Monitor,1,379.99,2019-07-03 10:50:00,711 Park St, San Francisco,CA,94016 +231432,Wired Headphones,1,11.99,2019-07-19 18:35:00,45 Main St, Dallas,TX,75001 +231433,Wired Headphones,1,11.99,2019-07-30 23:44:00,73 Dogwood St, Boston,MA,02215 +231434,Bose SoundSport Headphones,1,99.99,2019-07-30 21:29:00,627 10th St, Los Angeles,CA,90001 +231435,Lightning Charging Cable,1,14.95,2019-07-30 06:26:00,283 Madison St, San Francisco,CA,94016 +231436,Apple Airpods Headphones,1,150.0,2019-07-06 16:24:00,481 Main St, Boston,MA,02215 +231437,AA Batteries (4-pack),1,3.84,2019-07-21 18:02:00,365 9th St, San Francisco,CA,94016 +231438,27in FHD Monitor,1,149.99,2019-07-07 15:27:00,167 Ridge St, San Francisco,CA,94016 +231439,AAA Batteries (4-pack),1,2.99,2019-07-14 17:09:00,454 Wilson St, Atlanta,GA,30301 +231440,Bose SoundSport Headphones,1,99.99,2019-07-21 22:58:00,544 Walnut St, Seattle,WA,98101 +231441,Macbook Pro Laptop,1,1700.0,2019-07-01 21:22:00,652 13th St, Dallas,TX,75001 +231442,Bose SoundSport Headphones,1,99.99,2019-07-27 08:00:00,438 Ridge St, New York City,NY,10001 +231442,Macbook Pro Laptop,1,1700.0,2019-07-27 08:00:00,438 Ridge St, New York City,NY,10001 +231443,iPhone,1,700.0,2019-07-29 22:19:00,290 Center St, San Francisco,CA,94016 +231444,Wired Headphones,1,11.99,2019-07-14 17:54:00,602 Adams St, San Francisco,CA,94016 +231445,Wired Headphones,1,11.99,2019-07-29 11:33:00,960 Lake St, Boston,MA,02215 +231446,AAA Batteries (4-pack),1,2.99,2019-07-12 15:59:00,212 Jefferson St, San Francisco,CA,94016 +231447,Google Phone,1,600.0,2019-07-03 20:32:00,799 9th St, Dallas,TX,75001 +231448,Wired Headphones,1,11.99,2019-07-31 07:26:00,970 Elm St, San Francisco,CA,94016 +231449,Lightning Charging Cable,1,14.95,2019-07-27 17:34:00,961 1st St, Seattle,WA,98101 +231450,Bose SoundSport Headphones,1,99.99,2019-07-14 16:50:00,933 North St, New York City,NY,10001 +231451,AA Batteries (4-pack),1,3.84,2019-07-24 15:39:00,859 Sunset St, Atlanta,GA,30301 +231452,Bose SoundSport Headphones,1,99.99,2019-07-19 22:53:00,371 Jefferson St, Seattle,WA,98101 +231453,AA Batteries (4-pack),2,3.84,2019-07-19 14:39:00,373 Chestnut St, Los Angeles,CA,90001 +231454,Wired Headphones,1,11.99,2019-07-21 15:20:00,698 Ridge St, Boston,MA,02215 +231455,USB-C Charging Cable,1,11.95,2019-07-06 23:43:00,462 Adams St, Atlanta,GA,30301 +231456,Bose SoundSport Headphones,1,99.99,2019-07-23 12:17:00,452 Elm St, Atlanta,GA,30301 +231457,USB-C Charging Cable,1,11.95,2019-07-27 15:07:00,645 Jefferson St, Atlanta,GA,30301 +231458,AA Batteries (4-pack),1,3.84,2019-07-06 12:31:00,604 14th St, New York City,NY,10001 +231459,Apple Airpods Headphones,1,150.0,2019-07-31 09:28:00,213 South St, New York City,NY,10001 +231460,27in 4K Gaming Monitor,1,389.99,2019-07-04 08:49:00,108 Sunset St, Boston,MA,02215 +231461,Apple Airpods Headphones,1,150.0,2019-07-13 01:47:00,515 Willow St, Los Angeles,CA,90001 +231462,AA Batteries (4-pack),1,3.84,2019-07-09 23:48:00,260 Elm St, Dallas,TX,75001 +231463,20in Monitor,1,109.99,2019-07-07 21:48:00,298 Madison St, Atlanta,GA,30301 +231464,27in FHD Monitor,1,149.99,2019-07-13 15:15:00,197 10th St, Seattle,WA,98101 +231465,ThinkPad Laptop,1,999.99,2019-07-02 14:05:00,912 5th St, San Francisco,CA,94016 +231466,Google Phone,1,600.0,2019-07-30 22:47:00,49 Maple St, Boston,MA,02215 +231467,AA Batteries (4-pack),3,3.84,2019-07-05 10:10:00,936 4th St, Boston,MA,02215 +231468,AAA Batteries (4-pack),1,2.99,2019-07-29 20:38:00,604 Lakeview St, Los Angeles,CA,90001 +231469,AA Batteries (4-pack),1,3.84,2019-07-15 13:43:00,486 14th St, Seattle,WA,98101 +231470,Bose SoundSport Headphones,1,99.99,2019-07-16 12:29:00,948 Jackson St, San Francisco,CA,94016 +231471,USB-C Charging Cable,1,11.95,2019-07-25 12:08:00,239 Lakeview St, Austin,TX,73301 +231472,Lightning Charging Cable,1,14.95,2019-07-03 13:00:00,501 Washington St, Dallas,TX,75001 +231473,Lightning Charging Cable,1,14.95,2019-07-17 06:32:00,228 Main St, New York City,NY,10001 +231474,27in 4K Gaming Monitor,1,389.99,2019-07-25 07:49:00,802 11th St, San Francisco,CA,94016 +231475,27in FHD Monitor,1,149.99,2019-07-25 21:44:00,260 Elm St, Atlanta,GA,30301 +231476,USB-C Charging Cable,1,11.95,2019-07-10 22:30:00,574 Elm St, Seattle,WA,98101 +231477,Bose SoundSport Headphones,1,99.99,2019-07-21 13:01:00,766 Lake St, Austin,TX,73301 +231478,Lightning Charging Cable,1,14.95,2019-07-23 18:34:00,157 Ridge St, Seattle,WA,98101 +231479,Lightning Charging Cable,1,14.95,2019-07-04 07:59:00,860 Chestnut St, Boston,MA,02215 +231480,Lightning Charging Cable,1,14.95,2019-07-28 18:37:00,271 Spruce St, San Francisco,CA,94016 +231481,AA Batteries (4-pack),1,3.84,2019-07-20 11:13:00,162 Walnut St, Los Angeles,CA,90001 +231482,Bose SoundSport Headphones,1,99.99,2019-07-16 21:14:00,751 Highland St, New York City,NY,10001 +231483,34in Ultrawide Monitor,1,379.99,2019-07-16 21:05:00,222 12th St, Los Angeles,CA,90001 +231484,AAA Batteries (4-pack),1,2.99,2019-07-02 18:58:00,930 Main St, Boston,MA,02215 +231485,Apple Airpods Headphones,1,150.0,2019-07-31 00:02:00,338 Lakeview St, Portland,OR,97035 +231486,AA Batteries (4-pack),1,3.84,2019-07-15 12:02:00,465 West St, Atlanta,GA,30301 +231487,AAA Batteries (4-pack),1,2.99,2019-07-02 07:46:00,409 Elm St, Los Angeles,CA,90001 +231488,Bose SoundSport Headphones,1,99.99,2019-07-29 08:32:00,204 Hickory St, San Francisco,CA,94016 +231489,Wired Headphones,1,11.99,2019-07-01 13:47:00,622 10th St, Los Angeles,CA,90001 +231490,20in Monitor,1,109.99,2019-07-31 11:00:00,920 7th St, San Francisco,CA,94016 +231491,AAA Batteries (4-pack),1,2.99,2019-07-07 12:37:00,320 Maple St, San Francisco,CA,94016 +231492,USB-C Charging Cable,1,11.95,2019-07-10 00:16:00,29 Ridge St, Los Angeles,CA,90001 +231493,Apple Airpods Headphones,1,150.0,2019-07-23 19:25:00,899 Lincoln St, San Francisco,CA,94016 +231494,AA Batteries (4-pack),2,3.84,2019-07-25 22:19:00,236 Cherry St, San Francisco,CA,94016 +231495,AA Batteries (4-pack),2,3.84,2019-07-15 14:33:00,831 1st St, Boston,MA,02215 +231496,27in FHD Monitor,1,149.99,2019-07-03 15:28:00,251 Forest St, Los Angeles,CA,90001 +231497,Lightning Charging Cable,1,14.95,2019-07-12 20:00:00,727 13th St, San Francisco,CA,94016 +231498,USB-C Charging Cable,1,11.95,2019-07-15 01:04:00,795 10th St, San Francisco,CA,94016 +231499,AAA Batteries (4-pack),1,2.99,2019-07-16 19:15:00,787 Highland St, New York City,NY,10001 +231500,Apple Airpods Headphones,1,150.0,2019-07-15 12:25:00,939 Forest St, San Francisco,CA,94016 +231501,AAA Batteries (4-pack),1,2.99,2019-07-16 16:33:00,368 River St, New York City,NY,10001 +231502,34in Ultrawide Monitor,1,379.99,2019-07-11 17:56:00,827 8th St, Seattle,WA,98101 +231503,Flatscreen TV,1,300.0,2019-07-04 22:29:00,213 Jefferson St, New York City,NY,10001 +231504,27in 4K Gaming Monitor,1,389.99,2019-07-23 22:18:00,434 7th St, Seattle,WA,98101 +231505,Wired Headphones,1,11.99,2019-07-31 23:33:00,679 River St, Dallas,TX,75001 +231506,20in Monitor,1,109.99,2019-07-22 10:06:00,948 Spruce St, San Francisco,CA,94016 +231507,AAA Batteries (4-pack),1,2.99,2019-07-20 11:53:00,105 Cedar St, Boston,MA,02215 +231508,Bose SoundSport Headphones,1,99.99,2019-07-05 13:08:00,798 Lakeview St, San Francisco,CA,94016 +231509,AAA Batteries (4-pack),1,2.99,2019-07-20 11:40:00,202 10th St, Portland,OR,97035 +231510,ThinkPad Laptop,1,999.99,2019-07-11 16:14:00,647 Wilson St, Los Angeles,CA,90001 +231511,AA Batteries (4-pack),1,3.84,2019-07-28 20:46:00,961 Jackson St, Boston,MA,02215 +231512,Bose SoundSport Headphones,1,99.99,2019-07-22 10:41:00,432 5th St, Seattle,WA,98101 +231513,Wired Headphones,1,11.99,2019-07-15 21:21:00,85 Jefferson St, Dallas,TX,75001 +231514,AA Batteries (4-pack),1,3.84,2019-07-15 09:40:00,10 10th St, Boston,MA,02215 +231515,Bose SoundSport Headphones,1,99.99,2019-07-01 21:49:00,187 Jackson St, San Francisco,CA,94016 +231516,USB-C Charging Cable,1,11.95,2019-07-31 20:02:00,924 Wilson St, New York City,NY,10001 +231517,Bose SoundSport Headphones,1,99.99,2019-07-02 22:16:00,182 Lincoln St, Portland,ME,04101 +231518,USB-C Charging Cable,1,11.95,2019-07-02 20:23:00,852 Washington St, Atlanta,GA,30301 +231519,Bose SoundSport Headphones,1,99.99,2019-07-18 15:50:00,273 Main St, Los Angeles,CA,90001 +231520,USB-C Charging Cable,1,11.95,2019-07-06 21:14:00,904 Park St, Dallas,TX,75001 +231521,20in Monitor,1,109.99,2019-07-31 19:31:00,195 Cedar St, Atlanta,GA,30301 +231522,Lightning Charging Cable,1,14.95,2019-07-19 01:28:00,915 Dogwood St, Los Angeles,CA,90001 +231523,Bose SoundSport Headphones,1,99.99,2019-07-08 15:42:00,178 Spruce St, San Francisco,CA,94016 +231524,Apple Airpods Headphones,1,150.0,2019-07-04 17:55:00,824 Center St, Los Angeles,CA,90001 +231525,Macbook Pro Laptop,1,1700.0,2019-07-20 07:17:00,732 9th St, Austin,TX,73301 +231526,Flatscreen TV,1,300.0,2019-07-11 21:00:00,914 Forest St, Los Angeles,CA,90001 +231527,27in 4K Gaming Monitor,1,389.99,2019-07-03 13:10:00,494 Walnut St, Boston,MA,02215 +231528,34in Ultrawide Monitor,1,379.99,2019-07-15 12:17:00,344 Willow St, Los Angeles,CA,90001 +231529,Google Phone,1,600.0,2019-07-16 11:26:00,724 Church St, Los Angeles,CA,90001 +231530,Apple Airpods Headphones,1,150.0,2019-07-25 09:33:00,230 Hickory St, Seattle,WA,98101 +231531,AA Batteries (4-pack),1,3.84,2019-07-26 00:04:00,240 6th St, Atlanta,GA,30301 +231532,Lightning Charging Cable,1,14.95,2019-08-01 03:52:00,523 Willow St, Los Angeles,CA,90001 +231533,AAA Batteries (4-pack),1,2.99,2019-07-05 13:23:00,648 North St, San Francisco,CA,94016 +231534,Vareebadd Phone,1,400.0,2019-07-09 19:54:00,19 River St, Los Angeles,CA,90001 +231535,Bose SoundSport Headphones,1,99.99,2019-07-07 20:22:00,389 1st St, San Francisco,CA,94016 +231536,27in FHD Monitor,1,149.99,2019-07-23 16:29:00,375 14th St, Seattle,WA,98101 +231537,Wired Headphones,1,11.99,2019-07-28 11:37:00,731 Jackson St, Portland,ME,04101 +231537,AAA Batteries (4-pack),1,2.99,2019-07-28 11:37:00,731 Jackson St, Portland,ME,04101 +231538,Bose SoundSport Headphones,1,99.99,2019-07-05 19:24:00,548 Wilson St, Seattle,WA,98101 +231539,Apple Airpods Headphones,1,150.0,2019-07-29 09:59:00,434 Dogwood St, San Francisco,CA,94016 +231540,Wired Headphones,1,11.99,2019-07-31 08:59:00,499 Maple St, San Francisco,CA,94016 +231541,USB-C Charging Cable,2,11.95,2019-07-16 19:58:00,196 2nd St, Dallas,TX,75001 +231542,Flatscreen TV,2,300.0,2019-07-10 15:57:00,588 Dogwood St, Dallas,TX,75001 +231543,AA Batteries (4-pack),1,3.84,2019-07-20 16:53:00,694 Jefferson St, San Francisco,CA,94016 +231544,iPhone,1,700.0,2019-07-13 16:09:00,501 5th St, New York City,NY,10001 +231545,Apple Airpods Headphones,1,150.0,2019-07-31 19:19:00,558 Sunset St, Los Angeles,CA,90001 +231546,AA Batteries (4-pack),1,3.84,2019-07-16 12:18:00,314 11th St, San Francisco,CA,94016 +231547,Bose SoundSport Headphones,1,99.99,2019-07-27 22:51:00,391 Lincoln St, San Francisco,CA,94016 +231548,27in 4K Gaming Monitor,1,389.99,2019-07-19 20:56:00,629 7th St, New York City,NY,10001 +231549,AAA Batteries (4-pack),1,2.99,2019-07-13 12:10:00,226 Walnut St, New York City,NY,10001 +231550,Bose SoundSport Headphones,1,99.99,2019-07-19 11:30:00,679 Dogwood St, New York City,NY,10001 +231551,AAA Batteries (4-pack),1,2.99,2019-07-10 14:31:00,427 Chestnut St, Atlanta,GA,30301 +231552,Lightning Charging Cable,1,14.95,2019-07-01 11:51:00,805 Chestnut St, San Francisco,CA,94016 +231553,34in Ultrawide Monitor,1,379.99,2019-07-02 14:30:00,565 West St, Atlanta,GA,30301 +231554,Wired Headphones,1,11.99,2019-07-08 07:41:00,683 Jackson St, Boston,MA,02215 +231555,USB-C Charging Cable,1,11.95,2019-07-26 14:10:00,739 8th St, Los Angeles,CA,90001 +231556,Lightning Charging Cable,1,14.95,2019-07-05 13:06:00,172 Cherry St, Dallas,TX,75001 +231557,AA Batteries (4-pack),1,3.84,2019-07-12 14:29:00,163 Wilson St, Dallas,TX,75001 +231558,Apple Airpods Headphones,1,150.0,2019-07-02 08:52:00,312 9th St, San Francisco,CA,94016 +231559,USB-C Charging Cable,1,11.95,2019-07-26 22:38:00,328 Highland St, San Francisco,CA,94016 +231560,AA Batteries (4-pack),2,3.84,2019-07-17 20:11:00,619 9th St, New York City,NY,10001 +231561,Bose SoundSport Headphones,1,99.99,2019-07-25 09:54:00,467 Ridge St, Portland,OR,97035 +231562,Apple Airpods Headphones,1,150.0,2019-07-14 13:30:00,454 Center St, Los Angeles,CA,90001 +231563,Lightning Charging Cable,1,14.95,2019-07-29 20:21:00,18 Dogwood St, San Francisco,CA,94016 +231564,Lightning Charging Cable,1,14.95,2019-07-16 22:19:00,127 Madison St, New York City,NY,10001 +231565,27in 4K Gaming Monitor,1,389.99,2019-07-30 14:19:00,472 Jefferson St, Seattle,WA,98101 +231566,Wired Headphones,1,11.99,2019-07-31 09:52:00,95 Spruce St, Los Angeles,CA,90001 +231567,USB-C Charging Cable,1,11.95,2019-07-12 18:27:00,413 West St, San Francisco,CA,94016 +231568,Flatscreen TV,1,300.0,2019-07-15 11:50:00,512 Spruce St, New York City,NY,10001 +231569,Macbook Pro Laptop,1,1700.0,2019-07-26 18:07:00,633 Jackson St, Boston,MA,02215 +231570,Apple Airpods Headphones,1,150.0,2019-07-16 20:35:00,303 Cherry St, San Francisco,CA,94016 +231571,AA Batteries (4-pack),1,3.84,2019-07-15 11:35:00,229 Washington St, Portland,OR,97035 +231572,Google Phone,1,600.0,2019-07-31 22:50:00,824 Park St, Boston,MA,02215 +231572,Bose SoundSport Headphones,1,99.99,2019-07-31 22:50:00,824 Park St, Boston,MA,02215 +231573,27in FHD Monitor,1,149.99,2019-07-10 18:17:00,174 Washington St, San Francisco,CA,94016 +231574,AA Batteries (4-pack),1,3.84,2019-07-25 19:59:00,160 14th St, Dallas,TX,75001 +231575,iPhone,1,700.0,2019-07-28 11:10:00,813 8th St, New York City,NY,10001 +231576,iPhone,1,700.0,2019-07-18 21:55:00,221 Chestnut St, Los Angeles,CA,90001 +231577,27in 4K Gaming Monitor,1,389.99,2019-07-21 07:33:00,852 Chestnut St, San Francisco,CA,94016 +231578,Apple Airpods Headphones,1,150.0,2019-07-10 09:32:00,156 Madison St, Seattle,WA,98101 +231579,Apple Airpods Headphones,1,150.0,2019-07-30 22:15:00,300 South St, Seattle,WA,98101 +231580,Lightning Charging Cable,1,14.95,2019-07-06 14:02:00,58 Chestnut St, Atlanta,GA,30301 +231581,AA Batteries (4-pack),3,3.84,2019-07-24 11:05:00,644 Madison St, Atlanta,GA,30301 +231582,iPhone,1,700.0,2019-07-14 15:01:00,786 Wilson St, Atlanta,GA,30301 +231583,AA Batteries (4-pack),1,3.84,2019-07-18 07:14:00,912 River St, Atlanta,GA,30301 +231584,AA Batteries (4-pack),1,3.84,2019-07-04 17:36:00,334 West St, Austin,TX,73301 +231585,27in FHD Monitor,1,149.99,2019-07-13 09:38:00,637 Cherry St, Portland,OR,97035 +231586,27in FHD Monitor,1,149.99,2019-07-01 11:38:00,355 9th St, Seattle,WA,98101 +231587,Macbook Pro Laptop,1,1700.0,2019-07-17 21:11:00,467 Elm St, Seattle,WA,98101 +231588,iPhone,1,700.0,2019-07-11 11:16:00,371 2nd St, Boston,MA,02215 +231589,34in Ultrawide Monitor,1,379.99,2019-07-24 08:56:00,552 5th St, San Francisco,CA,94016 +231590,Bose SoundSport Headphones,1,99.99,2019-07-20 11:32:00,581 8th St, Austin,TX,73301 +231591,Apple Airpods Headphones,1,150.0,2019-07-27 20:01:00,481 4th St, Austin,TX,73301 +231592,Bose SoundSport Headphones,1,99.99,2019-07-11 19:10:00,177 Willow St, Dallas,TX,75001 +231593,Wired Headphones,1,11.99,2019-07-24 21:11:00,854 Walnut St, Seattle,WA,98101 +231594,Wired Headphones,1,11.99,2019-07-09 13:32:00,958 Pine St, San Francisco,CA,94016 +231595,Bose SoundSport Headphones,1,99.99,2019-07-03 11:25:00,657 Jefferson St, Atlanta,GA,30301 +231596,USB-C Charging Cable,1,11.95,2019-07-19 22:33:00,701 North St, Dallas,TX,75001 +231597,USB-C Charging Cable,1,11.95,2019-07-30 12:49:00,186 7th St, New York City,NY,10001 +231598,AA Batteries (4-pack),1,3.84,2019-07-19 00:18:00,850 Park St, San Francisco,CA,94016 +231599,AAA Batteries (4-pack),1,2.99,2019-07-16 13:53:00,145 Jackson St, Boston,MA,02215 +231600,Macbook Pro Laptop,1,1700.0,2019-07-14 21:49:00,584 7th St, Dallas,TX,75001 +231601,iPhone,1,700.0,2019-07-10 23:08:00,152 Church St, Los Angeles,CA,90001 +231602,34in Ultrawide Monitor,1,379.99,2019-07-20 13:38:00,241 13th St, New York City,NY,10001 +231603,AA Batteries (4-pack),1,3.84,2019-07-16 19:06:00,700 Walnut St, San Francisco,CA,94016 +231604,20in Monitor,1,109.99,2019-07-04 08:18:00,598 11th St, Los Angeles,CA,90001 +231605,Wired Headphones,1,11.99,2019-07-21 06:53:00,562 Maple St, Seattle,WA,98101 +231606,USB-C Charging Cable,1,11.95,2019-07-26 14:08:00,982 10th St, Dallas,TX,75001 +231607,AA Batteries (4-pack),2,3.84,2019-07-12 17:15:00,699 Pine St, Dallas,TX,75001 +231608,27in FHD Monitor,1,149.99,2019-07-18 18:02:00,94 9th St, Boston,MA,02215 +231609,AA Batteries (4-pack),1,3.84,2019-07-31 18:54:00,344 6th St, Boston,MA,02215 +231610,AA Batteries (4-pack),1,3.84,2019-07-15 16:04:00,420 Lake St, San Francisco,CA,94016 +231611,AAA Batteries (4-pack),1,2.99,2019-07-11 12:49:00,884 Forest St, San Francisco,CA,94016 +231612,Wired Headphones,1,11.99,2019-07-28 20:17:00,572 14th St, New York City,NY,10001 +231613,Wired Headphones,1,11.99,2019-07-07 09:51:00,249 Cherry St, Boston,MA,02215 +231614,34in Ultrawide Monitor,1,379.99,2019-07-06 10:32:00,304 Highland St, Atlanta,GA,30301 +231615,iPhone,1,700.0,2019-07-22 09:48:00,270 Chestnut St, New York City,NY,10001 +231616,Lightning Charging Cable,1,14.95,2019-07-25 23:30:00,645 12th St, Austin,TX,73301 +231617,ThinkPad Laptop,1,999.99,2019-07-12 09:56:00,480 Maple St, Atlanta,GA,30301 +231618,Lightning Charging Cable,1,14.95,2019-07-27 11:26:00,51 Washington St, Boston,MA,02215 +231619,AA Batteries (4-pack),1,3.84,2019-07-05 00:44:00,463 6th St, New York City,NY,10001 +231620,Google Phone,1,600.0,2019-07-18 08:38:00,726 Meadow St, Boston,MA,02215 +231621,USB-C Charging Cable,1,11.95,2019-07-22 11:15:00,580 4th St, Dallas,TX,75001 +231622,USB-C Charging Cable,1,11.95,2019-07-20 14:45:00,906 Hill St, New York City,NY,10001 +231623,Bose SoundSport Headphones,1,99.99,2019-07-12 16:27:00,932 5th St, Boston,MA,02215 +231624,AA Batteries (4-pack),1,3.84,2019-07-21 16:55:00,749 12th St, San Francisco,CA,94016 +231625,Lightning Charging Cable,1,14.95,2019-07-03 19:18:00,824 Wilson St, New York City,NY,10001 +231626,Google Phone,1,600.0,2019-07-31 14:30:00,764 Spruce St, San Francisco,CA,94016 +231626,USB-C Charging Cable,1,11.95,2019-07-31 14:30:00,764 Spruce St, San Francisco,CA,94016 +231627,Apple Airpods Headphones,1,150.0,2019-07-19 18:09:00,883 Elm St, New York City,NY,10001 +231628,USB-C Charging Cable,1,11.95,2019-07-01 14:14:00,467 1st St, Los Angeles,CA,90001 +231629,USB-C Charging Cable,1,11.95,2019-07-13 00:04:00,655 Cherry St, New York City,NY,10001 +231630,USB-C Charging Cable,1,11.95,2019-07-28 14:49:00,5 2nd St, San Francisco,CA,94016 +231631,AA Batteries (4-pack),2,3.84,2019-07-23 18:36:00,496 5th St, San Francisco,CA,94016 +231632,Lightning Charging Cable,1,14.95,2019-07-20 08:08:00,346 West St, Austin,TX,73301 +231633,AA Batteries (4-pack),4,3.84,2019-07-09 08:54:00,855 Highland St, Boston,MA,02215 +231634,iPhone,1,700.0,2019-07-18 18:21:00,826 4th St, Boston,MA,02215 +231635,AA Batteries (4-pack),2,3.84,2019-07-28 16:16:00,154 Washington St, San Francisco,CA,94016 +231636,Lightning Charging Cable,1,14.95,2019-07-16 11:52:00,467 Lakeview St, New York City,NY,10001 +231637,USB-C Charging Cable,1,11.95,2019-07-08 22:59:00,354 11th St, San Francisco,CA,94016 +231638,AA Batteries (4-pack),1,3.84,2019-07-21 18:22:00,443 12th St, San Francisco,CA,94016 +231639,Apple Airpods Headphones,1,150.0,2019-07-18 11:11:00,657 Chestnut St, Seattle,WA,98101 +231640,Apple Airpods Headphones,1,150.0,2019-07-18 22:44:00,769 River St, Los Angeles,CA,90001 +231641,34in Ultrawide Monitor,1,379.99,2019-07-14 07:59:00,260 Chestnut St, San Francisco,CA,94016 +231642,USB-C Charging Cable,1,11.95,2019-07-16 14:23:00,121 11th St, Austin,TX,73301 +231643,Apple Airpods Headphones,1,150.0,2019-07-31 09:03:00,138 10th St, San Francisco,CA,94016 +231644,Apple Airpods Headphones,1,150.0,2019-07-01 10:30:00,670 River St, New York City,NY,10001 +231645,27in 4K Gaming Monitor,1,389.99,2019-07-22 18:44:00,986 Willow St, Dallas,TX,75001 +231646,AA Batteries (4-pack),3,3.84,2019-07-25 15:14:00,487 7th St, San Francisco,CA,94016 +231647,27in FHD Monitor,1,149.99,2019-07-24 15:03:00,653 4th St, Los Angeles,CA,90001 +231648,Bose SoundSport Headphones,1,99.99,2019-07-24 07:21:00,830 Madison St, San Francisco,CA,94016 +231649,Bose SoundSport Headphones,1,99.99,2019-07-05 11:18:00,716 Hickory St, Atlanta,GA,30301 +231650,Macbook Pro Laptop,1,1700.0,2019-07-31 17:22:00,644 Ridge St, San Francisco,CA,94016 +231651,27in 4K Gaming Monitor,1,389.99,2019-07-30 21:41:00,646 Main St, New York City,NY,10001 +231652,iPhone,1,700.0,2019-07-03 14:07:00,729 13th St, San Francisco,CA,94016 +231653,iPhone,1,700.0,2019-07-06 09:58:00,537 River St, San Francisco,CA,94016 +231654,Wired Headphones,1,11.99,2019-07-23 07:39:00,779 Forest St, Atlanta,GA,30301 +231655,ThinkPad Laptop,1,999.99,2019-07-07 12:16:00,215 Park St, Boston,MA,02215 +231656,Flatscreen TV,1,300.0,2019-07-25 12:46:00,665 Adams St, Los Angeles,CA,90001 +231657,34in Ultrawide Monitor,1,379.99,2019-07-26 09:22:00,31 Johnson St, New York City,NY,10001 +231658,Macbook Pro Laptop,1,1700.0,2019-07-18 16:03:00,350 Wilson St, Boston,MA,02215 +231659,AA Batteries (4-pack),5,3.84,2019-07-16 08:27:00,889 Forest St, Boston,MA,02215 +231660,Wired Headphones,1,11.99,2019-07-02 15:53:00,603 Willow St, Boston,MA,02215 +231661,Wired Headphones,1,11.99,2019-07-04 17:33:00,123 4th St, Dallas,TX,75001 +231662,Apple Airpods Headphones,1,150.0,2019-07-10 13:33:00,489 9th St, New York City,NY,10001 +231663,USB-C Charging Cable,1,11.95,2019-07-14 12:10:00,120 Dogwood St, Los Angeles,CA,90001 +231664,AA Batteries (4-pack),1,3.84,2019-07-23 16:25:00,123 Hickory St, Atlanta,GA,30301 +231665,Apple Airpods Headphones,1,150.0,2019-07-16 12:40:00,255 Jackson St, Los Angeles,CA,90001 +231666,USB-C Charging Cable,1,11.95,2019-07-13 19:39:00,978 West St, San Francisco,CA,94016 +231667,Wired Headphones,1,11.99,2019-07-30 18:33:00,794 Adams St, Boston,MA,02215 +231668,Bose SoundSport Headphones,1,99.99,2019-07-18 20:04:00,538 Center St, New York City,NY,10001 +231669,AA Batteries (4-pack),1,3.84,2019-07-07 12:36:00,84 7th St, Dallas,TX,75001 +231670,AA Batteries (4-pack),1,3.84,2019-07-15 19:13:00,688 4th St, Los Angeles,CA,90001 +231671,Lightning Charging Cable,1,14.95,2019-07-03 19:39:00,567 Elm St, Los Angeles,CA,90001 +231672,Lightning Charging Cable,1,14.95,2019-07-28 09:20:00,118 1st St, Dallas,TX,75001 +231673,Macbook Pro Laptop,1,1700.0,2019-07-31 19:49:00,950 Hickory St, Dallas,TX,75001 +231674,20in Monitor,1,109.99,2019-07-28 20:23:00,889 Forest St, Boston,MA,02215 +231675,ThinkPad Laptop,1,999.99,2019-07-17 20:09:00,938 Chestnut St, Dallas,TX,75001 +231676,Lightning Charging Cable,1,14.95,2019-07-17 19:28:00,841 Main St, San Francisco,CA,94016 +231677,Wired Headphones,1,11.99,2019-07-05 21:52:00,840 8th St, Boston,MA,02215 +231678,AA Batteries (4-pack),1,3.84,2019-07-14 23:01:00,628 Elm St, Dallas,TX,75001 +231679,Lightning Charging Cable,1,14.95,2019-07-05 09:09:00,271 Willow St, New York City,NY,10001 +231680,Wired Headphones,1,11.99,2019-07-01 13:23:00,260 Adams St, San Francisco,CA,94016 +231681,AAA Batteries (4-pack),1,2.99,2019-07-15 21:34:00,373 12th St, San Francisco,CA,94016 +231682,Wired Headphones,1,11.99,2019-07-12 19:53:00,653 North St, Boston,MA,02215 +231683,USB-C Charging Cable,1,11.95,2019-07-21 14:13:00,37 Church St, Austin,TX,73301 +231684,Vareebadd Phone,1,400.0,2019-07-18 21:52:00,33 Forest St, Seattle,WA,98101 +231685,Bose SoundSport Headphones,1,99.99,2019-07-11 19:36:00,81 Chestnut St, Portland,OR,97035 +231686,27in 4K Gaming Monitor,1,389.99,2019-07-26 23:24:00,965 Jackson St, Portland,OR,97035 +231687,AA Batteries (4-pack),1,3.84,2019-07-30 15:52:00,164 Madison St, San Francisco,CA,94016 +231688,USB-C Charging Cable,2,11.95,2019-07-07 12:09:00,590 Highland St, New York City,NY,10001 +231689,AA Batteries (4-pack),1,3.84,2019-07-24 09:38:00,529 Park St, Los Angeles,CA,90001 +231690,AA Batteries (4-pack),1,3.84,2019-07-19 04:36:00,63 Dogwood St, San Francisco,CA,94016 +231691,20in Monitor,1,109.99,2019-07-11 06:24:00,120 4th St, Atlanta,GA,30301 +231692,Flatscreen TV,1,300.0,2019-07-12 14:27:00,740 Chestnut St, Seattle,WA,98101 +231693,AA Batteries (4-pack),2,3.84,2019-07-20 19:01:00,99 12th St, Dallas,TX,75001 +231694,AA Batteries (4-pack),1,3.84,2019-07-01 15:58:00,282 Wilson St, Austin,TX,73301 +231695,AA Batteries (4-pack),1,3.84,2019-07-01 09:56:00,201 6th St, San Francisco,CA,94016 +231696,27in FHD Monitor,1,149.99,2019-07-22 10:13:00,7 North St, San Francisco,CA,94016 +231697,USB-C Charging Cable,1,11.95,2019-07-28 21:44:00,512 Pine St, Seattle,WA,98101 +231698,Bose SoundSport Headphones,1,99.99,2019-07-30 20:23:00,981 14th St, Los Angeles,CA,90001 +231699,27in FHD Monitor,1,149.99,2019-07-13 17:37:00,51 Dogwood St, New York City,NY,10001 +231700,Apple Airpods Headphones,1,150.0,2019-07-01 17:09:00,789 2nd St, Atlanta,GA,30301 +231701,AAA Batteries (4-pack),1,2.99,2019-07-25 21:01:00,112 Jackson St, Boston,MA,02215 +231702,AA Batteries (4-pack),2,3.84,2019-07-02 10:02:00,319 South St, Los Angeles,CA,90001 +231703,AAA Batteries (4-pack),6,2.99,2019-07-15 12:12:00,839 Elm St, Los Angeles,CA,90001 +231704,Wired Headphones,1,11.99,2019-07-31 00:21:00,44 11th St, San Francisco,CA,94016 +231705,AAA Batteries (4-pack),1,2.99,2019-07-16 04:59:00,655 Main St, Boston,MA,02215 +231706,AA Batteries (4-pack),1,3.84,2019-07-29 13:51:00,701 Lincoln St, Portland,OR,97035 +231707,AA Batteries (4-pack),3,3.84,2019-07-18 08:47:00,874 Cedar St, New York City,NY,10001 +231708,AAA Batteries (4-pack),1,2.99,2019-07-06 21:39:00,452 11th St, Austin,TX,73301 +231709,USB-C Charging Cable,1,11.95,2019-07-28 14:09:00,322 Spruce St, San Francisco,CA,94016 +231710,Wired Headphones,1,11.99,2019-07-05 13:33:00,970 Walnut St, Portland,OR,97035 +231711,AA Batteries (4-pack),1,3.84,2019-07-07 14:13:00,11 11th St, San Francisco,CA,94016 +231712,AAA Batteries (4-pack),1,2.99,2019-07-26 22:54:00,308 Jackson St, San Francisco,CA,94016 +231713,USB-C Charging Cable,1,11.95,2019-07-05 11:33:00,994 Main St, Dallas,TX,75001 +231714,Lightning Charging Cable,1,14.95,2019-07-03 21:24:00,969 Main St, Seattle,WA,98101 +231715,Apple Airpods Headphones,1,150.0,2019-07-30 20:25:00,139 9th St, San Francisco,CA,94016 +231716,27in FHD Monitor,1,149.99,2019-07-26 11:23:00,777 12th St, New York City,NY,10001 +231717,27in 4K Gaming Monitor,1,389.99,2019-07-02 15:51:00,15 Chestnut St, Boston,MA,02215 +231718,AAA Batteries (4-pack),1,2.99,2019-07-08 11:07:00,52 Lake St, Seattle,WA,98101 +231719,Lightning Charging Cable,1,14.95,2019-07-22 13:27:00,918 Walnut St, Los Angeles,CA,90001 +231720,USB-C Charging Cable,1,11.95,2019-07-06 11:31:00,596 Dogwood St, San Francisco,CA,94016 +231721,ThinkPad Laptop,1,999.99,2019-07-29 23:54:00,299 13th St, San Francisco,CA,94016 +231722,ThinkPad Laptop,1,999.99,2019-07-28 01:10:00,302 Walnut St, Los Angeles,CA,90001 +231723,Wired Headphones,3,11.99,2019-07-20 07:53:00,533 Center St, San Francisco,CA,94016 +231724,iPhone,1,700.0,2019-07-25 21:57:00,710 13th St, Portland,OR,97035 +231725,AAA Batteries (4-pack),1,2.99,2019-07-27 07:33:00,877 13th St, Dallas,TX,75001 +231726,AAA Batteries (4-pack),1,2.99,2019-07-30 16:47:00,681 Pine St, Portland,OR,97035 +231727,ThinkPad Laptop,1,999.99,2019-07-30 20:27:00,775 Adams St, Los Angeles,CA,90001 +231728,Lightning Charging Cable,1,14.95,2019-07-12 20:06:00,531 9th St, San Francisco,CA,94016 +231729,Apple Airpods Headphones,1,150.0,2019-07-15 18:48:00,667 Forest St, Dallas,TX,75001 +231730,LG Dryer,1,600.0,2019-07-29 19:18:00,113 7th St, Los Angeles,CA,90001 +231731,Flatscreen TV,1,300.0,2019-07-22 06:55:00,253 Madison St, Atlanta,GA,30301 +231732,USB-C Charging Cable,1,11.95,2019-07-15 08:09:00,485 Walnut St, Austin,TX,73301 +231733,Lightning Charging Cable,1,14.95,2019-07-08 20:16:00,451 10th St, Los Angeles,CA,90001 +231733,AA Batteries (4-pack),1,3.84,2019-07-08 20:16:00,451 10th St, Los Angeles,CA,90001 +231734,Wired Headphones,1,11.99,2019-07-26 19:23:00,823 10th St, Boston,MA,02215 +231735,AA Batteries (4-pack),1,3.84,2019-07-02 13:37:00,631 10th St, San Francisco,CA,94016 +231736,Apple Airpods Headphones,1,150.0,2019-07-03 11:35:00,824 Washington St, Seattle,WA,98101 +231737,Lightning Charging Cable,1,14.95,2019-07-23 18:07:00,897 Walnut St, New York City,NY,10001 +231738,AA Batteries (4-pack),1,3.84,2019-07-31 17:45:00,455 Center St, Portland,OR,97035 +231739,Flatscreen TV,1,300.0,2019-07-22 10:21:00,196 Sunset St, Los Angeles,CA,90001 +231740,Apple Airpods Headphones,1,150.0,2019-07-20 10:45:00,463 Adams St, San Francisco,CA,94016 +231741,Flatscreen TV,1,300.0,2019-07-22 20:48:00,712 Hickory St, New York City,NY,10001 +231742,USB-C Charging Cable,1,11.95,2019-07-07 08:37:00,33 Adams St, Austin,TX,73301 +231743,AAA Batteries (4-pack),2,2.99,2019-07-07 19:46:00,57 Lake St, Los Angeles,CA,90001 +231744,Google Phone,1,600.0,2019-07-18 13:37:00,622 1st St, San Francisco,CA,94016 +231745,AA Batteries (4-pack),2,3.84,2019-07-06 22:52:00,186 Highland St, Portland,OR,97035 +231746,Lightning Charging Cable,1,14.95,2019-07-08 11:46:00,780 Center St, Seattle,WA,98101 +231747,Lightning Charging Cable,1,14.95,2019-07-27 10:21:00,399 Pine St, San Francisco,CA,94016 +231748,AA Batteries (4-pack),1,3.84,2019-07-13 19:52:00,451 Dogwood St, Seattle,WA,98101 +231749,AAA Batteries (4-pack),1,2.99,2019-07-12 19:29:00,938 South St, Boston,MA,02215 +231750,27in FHD Monitor,1,149.99,2019-07-07 17:10:00,928 11th St, San Francisco,CA,94016 +231751,Wired Headphones,1,11.99,2019-07-08 12:16:00,399 North St, Dallas,TX,75001 +231752,USB-C Charging Cable,1,11.95,2019-07-18 22:00:00,916 Elm St, New York City,NY,10001 +231753,Apple Airpods Headphones,1,150.0,2019-07-27 15:48:00,213 Park St, San Francisco,CA,94016 +231754,Vareebadd Phone,1,400.0,2019-07-19 09:33:00,357 1st St, San Francisco,CA,94016 +231754,Wired Headphones,1,11.99,2019-07-19 09:33:00,357 1st St, San Francisco,CA,94016 +231755,Flatscreen TV,1,300.0,2019-07-23 20:02:00,380 Meadow St, Los Angeles,CA,90001 +231756,Macbook Pro Laptop,1,1700.0,2019-07-29 05:50:00,990 Meadow St, Dallas,TX,75001 +231757,Bose SoundSport Headphones,1,99.99,2019-07-14 13:26:00,429 Cedar St, Los Angeles,CA,90001 +231758,27in 4K Gaming Monitor,1,389.99,2019-07-23 19:52:00,666 Jefferson St, Los Angeles,CA,90001 +231759,Macbook Pro Laptop,1,1700.0,2019-07-13 17:15:00,297 Ridge St, San Francisco,CA,94016 +231760,Wired Headphones,1,11.99,2019-07-09 18:51:00,109 Center St, Boston,MA,02215 +231761,27in FHD Monitor,1,149.99,2019-07-10 13:18:00,189 Wilson St, New York City,NY,10001 +231762,AA Batteries (4-pack),1,3.84,2019-07-18 14:44:00,980 Washington St, San Francisco,CA,94016 +231763,Macbook Pro Laptop,1,1700.0,2019-07-10 11:03:00,776 Jackson St, Boston,MA,02215 +231764,iPhone,1,700.0,2019-07-21 20:13:00,519 10th St, San Francisco,CA,94016 +231765,AAA Batteries (4-pack),1,2.99,2019-07-26 18:40:00,775 Spruce St, Los Angeles,CA,90001 +231766,AA Batteries (4-pack),1,3.84,2019-07-19 11:10:00,647 Adams St, New York City,NY,10001 +231767,ThinkPad Laptop,1,999.99,2019-07-24 11:21:00,390 South St, San Francisco,CA,94016 +231768,AAA Batteries (4-pack),1,2.99,2019-07-29 13:41:00,692 Cherry St, Austin,TX,73301 +231769,AAA Batteries (4-pack),1,2.99,2019-07-31 13:10:00,128 12th St, Austin,TX,73301 +231770,Lightning Charging Cable,1,14.95,2019-07-13 09:51:00,280 Lake St, San Francisco,CA,94016 +231771,LG Dryer,1,600.0,2019-07-29 15:21:00,873 Willow St, Austin,TX,73301 +231772,Bose SoundSport Headphones,1,99.99,2019-07-20 14:37:00,20 Church St, San Francisco,CA,94016 +231773,Lightning Charging Cable,1,14.95,2019-07-06 22:15:00,201 Meadow St, Seattle,WA,98101 +231774,AAA Batteries (4-pack),1,2.99,2019-07-09 21:51:00,392 Spruce St, San Francisco,CA,94016 +231775,AA Batteries (4-pack),1,3.84,2019-07-27 09:27:00,493 Dogwood St, New York City,NY,10001 +231776,AA Batteries (4-pack),6,3.84,2019-07-25 11:18:00,625 Washington St, Los Angeles,CA,90001 +231777,USB-C Charging Cable,2,11.95,2019-07-01 18:01:00,604 12th St, Dallas,TX,75001 +231778,AAA Batteries (4-pack),1,2.99,2019-07-12 13:46:00,810 Park St, Boston,MA,02215 +231779,Lightning Charging Cable,1,14.95,2019-07-19 10:33:00,877 Center St, Austin,TX,73301 +231780,34in Ultrawide Monitor,1,379.99,2019-07-22 11:57:00,459 13th St, San Francisco,CA,94016 +231781,Lightning Charging Cable,1,14.95,2019-07-08 09:40:00,564 Lincoln St, San Francisco,CA,94016 +231782,Lightning Charging Cable,1,14.95,2019-07-14 19:38:00,6 Maple St, Atlanta,GA,30301 +231783,Flatscreen TV,1,300.0,2019-07-15 19:56:00,48 Washington St, Los Angeles,CA,90001 +231784,Wired Headphones,1,11.99,2019-07-20 09:50:00,169 Pine St, Seattle,WA,98101 +231785,Wired Headphones,1,11.99,2019-07-29 14:05:00,164 8th St, Dallas,TX,75001 +231786,AA Batteries (4-pack),1,3.84,2019-07-11 18:11:00,665 Lake St, Dallas,TX,75001 +231787,ThinkPad Laptop,1,999.99,2019-07-16 18:58:00,766 Willow St, Boston,MA,02215 +231788,iPhone,1,700.0,2019-07-15 15:55:00,998 Meadow St, Seattle,WA,98101 +231789,AA Batteries (4-pack),1,3.84,2019-07-23 08:51:00,52 5th St, Dallas,TX,75001 +231790,20in Monitor,1,109.99,2019-07-27 12:55:00,129 Meadow St, San Francisco,CA,94016 +231790,Lightning Charging Cable,1,14.95,2019-07-27 12:55:00,129 Meadow St, San Francisco,CA,94016 +231791,Flatscreen TV,1,300.0,2019-07-25 14:51:00,812 4th St, Seattle,WA,98101 +231792,Macbook Pro Laptop,1,1700.0,2019-07-03 14:59:00,201 5th St, Portland,ME,04101 +231793,ThinkPad Laptop,1,999.99,2019-07-08 14:52:00,40 4th St, San Francisco,CA,94016 +231794,USB-C Charging Cable,1,11.95,2019-07-26 10:09:00,510 1st St, Atlanta,GA,30301 +231795,20in Monitor,1,109.99,2019-07-01 16:54:00,602 Maple St, Los Angeles,CA,90001 +231796,USB-C Charging Cable,1,11.95,2019-07-01 20:22:00,674 Sunset St, San Francisco,CA,94016 +231797,34in Ultrawide Monitor,1,379.99,2019-07-06 20:53:00,418 13th St, San Francisco,CA,94016 +231798,Bose SoundSport Headphones,1,99.99,2019-07-27 14:13:00,420 1st St, Atlanta,GA,30301 +231799,Lightning Charging Cable,1,14.95,2019-07-20 17:32:00,955 Church St, San Francisco,CA,94016 +231800,Lightning Charging Cable,1,14.95,2019-07-01 11:48:00,875 Cherry St, Los Angeles,CA,90001 +231801,Apple Airpods Headphones,1,150.0,2019-07-10 10:43:00,525 Church St, Atlanta,GA,30301 +231802,34in Ultrawide Monitor,1,379.99,2019-07-07 10:22:00,336 Jackson St, New York City,NY,10001 +231803,Lightning Charging Cable,1,14.95,2019-07-18 13:28:00,930 14th St, Seattle,WA,98101 +231804,USB-C Charging Cable,1,11.95,2019-07-23 20:27:00,743 4th St, San Francisco,CA,94016 +231805,AAA Batteries (4-pack),1,2.99,2019-07-16 08:34:00,939 Walnut St, Los Angeles,CA,90001 +231806,Apple Airpods Headphones,1,150.0,2019-07-02 11:18:00,131 Cedar St, New York City,NY,10001 +231807,iPhone,1,700.0,2019-07-26 19:38:00,817 Adams St, Los Angeles,CA,90001 +231808,27in 4K Gaming Monitor,1,389.99,2019-07-22 10:49:00,226 West St, San Francisco,CA,94016 +231809,USB-C Charging Cable,1,11.95,2019-07-28 19:38:00,873 Elm St, Boston,MA,02215 +231810,Lightning Charging Cable,1,14.95,2019-07-31 17:50:00,811 Ridge St, Los Angeles,CA,90001 +231811,27in FHD Monitor,1,149.99,2019-07-24 12:54:00,55 7th St, Los Angeles,CA,90001 +231812,USB-C Charging Cable,2,11.95,2019-07-09 17:35:00,501 2nd St, Seattle,WA,98101 +231813,Wired Headphones,1,11.99,2019-07-09 17:52:00,386 11th St, Dallas,TX,75001 +231814,AA Batteries (4-pack),1,3.84,2019-07-06 20:58:00,967 Dogwood St, Los Angeles,CA,90001 +231815,AA Batteries (4-pack),2,3.84,2019-07-30 20:18:00,459 Willow St, Seattle,WA,98101 +231816,ThinkPad Laptop,1,999.99,2019-07-13 23:36:00,42 Spruce St, Los Angeles,CA,90001 +231817,AAA Batteries (4-pack),1,2.99,2019-07-30 11:56:00,997 Wilson St, Los Angeles,CA,90001 +231818,USB-C Charging Cable,1,11.95,2019-07-07 17:44:00,417 Elm St, Boston,MA,02215 +231819,Apple Airpods Headphones,1,150.0,2019-07-12 11:13:00,85 Hickory St, Seattle,WA,98101 +231820,AA Batteries (4-pack),1,3.84,2019-07-07 16:17:00,995 South St, Atlanta,GA,30301 +231821,Lightning Charging Cable,1,14.95,2019-07-23 11:43:00,439 North St, San Francisco,CA,94016 +231822,Lightning Charging Cable,1,14.95,2019-07-31 15:17:00,394 Forest St, Dallas,TX,75001 +231823,Flatscreen TV,1,300.0,2019-07-17 12:12:00,833 Church St, Los Angeles,CA,90001 +231824,27in 4K Gaming Monitor,1,389.99,2019-07-31 16:35:00,148 Center St, New York City,NY,10001 +231825,27in 4K Gaming Monitor,1,389.99,2019-07-18 00:16:00,376 West St, Boston,MA,02215 +231826,Apple Airpods Headphones,1,150.0,2019-07-01 13:36:00,158 Dogwood St, San Francisco,CA,94016 +231827,Apple Airpods Headphones,1,150.0,2019-07-05 09:02:00,630 13th St, Atlanta,GA,30301 +231828,Wired Headphones,1,11.99,2019-07-01 11:08:00,264 Adams St, Los Angeles,CA,90001 +231829,27in FHD Monitor,1,149.99,2019-07-19 21:00:00,881 Willow St, San Francisco,CA,94016 +231830,27in FHD Monitor,1,149.99,2019-07-13 17:58:00,986 Jackson St, Atlanta,GA,30301 +231831,Wired Headphones,1,11.99,2019-07-05 18:13:00,343 13th St, Boston,MA,02215 +231832,AA Batteries (4-pack),1,3.84,2019-07-19 23:20:00,666 Meadow St, San Francisco,CA,94016 +231833,Vareebadd Phone,1,400.0,2019-07-04 21:17:00,338 Church St, San Francisco,CA,94016 +231833,USB-C Charging Cable,1,11.95,2019-07-04 21:17:00,338 Church St, San Francisco,CA,94016 +231834,Apple Airpods Headphones,1,150.0,2019-07-01 20:40:00,308 Wilson St, Boston,MA,02215 +231835,Flatscreen TV,1,300.0,2019-07-06 08:06:00,504 11th St, Los Angeles,CA,90001 +231836,Lightning Charging Cable,1,14.95,2019-07-12 11:38:00,328 10th St, New York City,NY,10001 +231837,USB-C Charging Cable,1,11.95,2019-07-06 23:29:00,880 Park St, San Francisco,CA,94016 +231838,27in 4K Gaming Monitor,1,389.99,2019-07-22 22:00:00,263 2nd St, Dallas,TX,75001 +231839,USB-C Charging Cable,1,11.95,2019-07-11 08:12:00,401 Park St, San Francisco,CA,94016 +231840,AAA Batteries (4-pack),1,2.99,2019-07-30 10:48:00,326 Meadow St, Portland,ME,04101 +231841,AAA Batteries (4-pack),1,2.99,2019-07-31 09:47:00,319 Jackson St, Austin,TX,73301 +231842,Bose SoundSport Headphones,1,99.99,2019-07-22 13:52:00,20 Meadow St, Los Angeles,CA,90001 +231843,ThinkPad Laptop,1,999.99,2019-07-08 18:05:00,319 Washington St, San Francisco,CA,94016 +231844,AAA Batteries (4-pack),1,2.99,2019-07-03 12:25:00,956 Main St, New York City,NY,10001 +231845,27in FHD Monitor,1,149.99,2019-07-18 07:20:00,706 Hill St, San Francisco,CA,94016 +231846,Lightning Charging Cable,1,14.95,2019-07-20 17:10:00,409 Sunset St, Portland,OR,97035 +231847,Vareebadd Phone,1,400.0,2019-07-13 20:16:00,791 Jackson St, Seattle,WA,98101 +231848,AAA Batteries (4-pack),1,2.99,2019-07-06 20:20:00,420 Jefferson St, Los Angeles,CA,90001 +231849,Wired Headphones,1,11.99,2019-07-13 15:57:00,46 Walnut St, Boston,MA,02215 +231850,AAA Batteries (4-pack),2,2.99,2019-07-05 17:01:00,770 Pine St, San Francisco,CA,94016 +231851,Lightning Charging Cable,1,14.95,2019-07-21 22:02:00,834 8th St, New York City,NY,10001 +231852,Wired Headphones,1,11.99,2019-07-09 09:32:00,64 Hickory St, San Francisco,CA,94016 +231853,Lightning Charging Cable,1,14.95,2019-07-26 21:09:00,388 Church St, San Francisco,CA,94016 +231854,Lightning Charging Cable,1,14.95,2019-07-30 21:06:00,372 Willow St, Portland,OR,97035 +231855,USB-C Charging Cable,1,11.95,2019-07-16 19:02:00,273 Meadow St, Seattle,WA,98101 +231856,Apple Airpods Headphones,1,150.0,2019-07-15 16:33:00,631 Meadow St, Portland,ME,04101 +231857,Lightning Charging Cable,1,14.95,2019-07-07 12:47:00,731 Meadow St, Boston,MA,02215 +231858,Macbook Pro Laptop,1,1700.0,2019-07-28 14:43:00,218 Washington St, Seattle,WA,98101 +231859,34in Ultrawide Monitor,1,379.99,2019-07-16 09:00:00,792 Johnson St, Seattle,WA,98101 +231860,AA Batteries (4-pack),1,3.84,2019-07-29 06:29:00,19 Church St, San Francisco,CA,94016 +231861,AA Batteries (4-pack),1,3.84,2019-07-06 11:44:00,823 Dogwood St, New York City,NY,10001 +231862,Bose SoundSport Headphones,1,99.99,2019-07-22 16:27:00,397 9th St, New York City,NY,10001 +231863,USB-C Charging Cable,1,11.95,2019-07-14 07:03:00,939 2nd St, Boston,MA,02215 +231864,Bose SoundSport Headphones,1,99.99,2019-07-31 21:51:00,619 Willow St, New York City,NY,10001 +231865,Lightning Charging Cable,1,14.95,2019-07-10 17:13:00,192 Jefferson St, Los Angeles,CA,90001 +231866,Lightning Charging Cable,1,14.95,2019-07-28 05:52:00,827 Park St, Dallas,TX,75001 +231867,Lightning Charging Cable,1,14.95,2019-07-28 18:35:00,538 1st St, New York City,NY,10001 +231868,Bose SoundSport Headphones,1,99.99,2019-07-21 11:15:00,171 Forest St, Los Angeles,CA,90001 +231869,Apple Airpods Headphones,1,150.0,2019-07-20 10:01:00,490 7th St, Austin,TX,73301 +231870,20in Monitor,1,109.99,2019-07-17 22:14:00,251 Meadow St, Boston,MA,02215 +231871,Lightning Charging Cable,1,14.95,2019-07-29 15:10:00,521 4th St, San Francisco,CA,94016 +231872,USB-C Charging Cable,1,11.95,2019-07-27 02:16:00,244 Maple St, New York City,NY,10001 +231873,Wired Headphones,1,11.99,2019-07-03 21:59:00,934 North St, Los Angeles,CA,90001 +231874,Apple Airpods Headphones,1,150.0,2019-07-11 13:18:00,456 14th St, San Francisco,CA,94016 +231875,Lightning Charging Cable,1,14.95,2019-07-09 01:24:00,247 Hickory St, San Francisco,CA,94016 +231875,Bose SoundSport Headphones,1,99.99,2019-07-09 01:24:00,247 Hickory St, San Francisco,CA,94016 +231876,AAA Batteries (4-pack),2,2.99,2019-07-22 23:26:00,375 Chestnut St, Atlanta,GA,30301 +231877,iPhone,1,700.0,2019-07-02 14:12:00,322 Dogwood St, Seattle,WA,98101 +231878,Lightning Charging Cable,1,14.95,2019-07-27 21:11:00,966 Lincoln St, Los Angeles,CA,90001 +231879,USB-C Charging Cable,2,11.95,2019-07-17 16:43:00,404 Lakeview St, San Francisco,CA,94016 +231880,Apple Airpods Headphones,1,150.0,2019-07-14 12:56:00,221 1st St, San Francisco,CA,94016 +231881,Lightning Charging Cable,1,14.95,2019-07-11 14:59:00,548 14th St, San Francisco,CA,94016 +231882,Bose SoundSport Headphones,1,99.99,2019-07-02 12:50:00,339 Dogwood St, New York City,NY,10001 +231882,USB-C Charging Cable,1,11.95,2019-07-02 12:50:00,339 Dogwood St, New York City,NY,10001 +231883,AA Batteries (4-pack),1,3.84,2019-07-03 07:23:00,989 South St, San Francisco,CA,94016 +231884,27in 4K Gaming Monitor,1,389.99,2019-07-22 15:58:00,139 Park St, Dallas,TX,75001 +231885,27in 4K Gaming Monitor,1,389.99,2019-07-17 21:38:00,936 14th St, Portland,OR,97035 +231886,USB-C Charging Cable,1,11.95,2019-07-28 15:31:00,272 Chestnut St, Los Angeles,CA,90001 +231887,AAA Batteries (4-pack),1,2.99,2019-07-10 18:13:00,318 13th St, New York City,NY,10001 +231888,USB-C Charging Cable,1,11.95,2019-07-29 01:23:00,921 Pine St, Boston,MA,02215 +231889,Lightning Charging Cable,1,14.95,2019-07-31 10:54:00,634 Dogwood St, San Francisco,CA,94016 +231890,Lightning Charging Cable,1,14.95,2019-07-31 20:16:00,696 South St, Dallas,TX,75001 +231891,AAA Batteries (4-pack),4,2.99,2019-07-09 11:25:00,544 8th St, Los Angeles,CA,90001 +231891,Bose SoundSport Headphones,1,99.99,2019-07-09 11:25:00,544 8th St, Los Angeles,CA,90001 +231892,27in 4K Gaming Monitor,1,389.99,2019-07-12 18:32:00,489 West St, Seattle,WA,98101 +231893,Bose SoundSport Headphones,1,99.99,2019-07-03 16:34:00,945 7th St, Seattle,WA,98101 +231894,Bose SoundSport Headphones,1,99.99,2019-07-16 09:35:00,560 Sunset St, Seattle,WA,98101 +231895,Macbook Pro Laptop,1,1700.0,2019-07-24 17:13:00,77 Lincoln St, Los Angeles,CA,90001 +231896,Wired Headphones,1,11.99,2019-07-21 18:24:00,499 Jackson St, San Francisco,CA,94016 +231897,Wired Headphones,1,11.99,2019-07-01 18:49:00,353 Meadow St, Boston,MA,02215 +231898,Apple Airpods Headphones,1,150.0,2019-07-01 22:41:00,910 Center St, Austin,TX,73301 +231899,USB-C Charging Cable,1,11.95,2019-07-16 08:40:00,666 Willow St, Austin,TX,73301 +231900,USB-C Charging Cable,1,11.95,2019-07-23 18:39:00,126 Lincoln St, New York City,NY,10001 +231901,Lightning Charging Cable,1,14.95,2019-07-09 11:24:00,959 Jefferson St, Portland,OR,97035 +231902,Lightning Charging Cable,1,14.95,2019-07-03 19:40:00,251 Maple St, New York City,NY,10001 +231903,AA Batteries (4-pack),1,3.84,2019-07-17 07:23:00,868 Adams St, New York City,NY,10001 +231904,Macbook Pro Laptop,1,1700.0,2019-07-11 11:22:00,4 Wilson St, Atlanta,GA,30301 +231905,AAA Batteries (4-pack),2,2.99,2019-07-16 18:01:00,398 Jefferson St, San Francisco,CA,94016 +231906,AA Batteries (4-pack),2,3.84,2019-07-12 19:36:00,413 Madison St, Atlanta,GA,30301 +231907,USB-C Charging Cable,1,11.95,2019-07-06 13:46:00,947 Center St, Los Angeles,CA,90001 +231908,ThinkPad Laptop,1,999.99,2019-07-14 14:41:00,243 Washington St, Seattle,WA,98101 +231909,Lightning Charging Cable,2,14.95,2019-07-14 09:42:00,396 Center St, Austin,TX,73301 +231910,Bose SoundSport Headphones,1,99.99,2019-07-17 01:50:00,766 Wilson St, Portland,ME,04101 +231911,Bose SoundSport Headphones,1,99.99,2019-07-13 11:26:00,165 Willow St, Atlanta,GA,30301 +231912,Flatscreen TV,1,300.0,2019-07-20 17:24:00,427 South St, Portland,ME,04101 +231913,27in FHD Monitor,1,149.99,2019-07-02 13:32:00,385 Cherry St, Portland,OR,97035 +231914,AA Batteries (4-pack),1,3.84,2019-07-22 10:47:00,69 Hill St, Austin,TX,73301 +231915,Wired Headphones,1,11.99,2019-07-02 18:04:00,585 Church St, Atlanta,GA,30301 +231916,27in FHD Monitor,1,149.99,2019-07-11 23:06:00,676 Pine St, Atlanta,GA,30301 +231916,Bose SoundSport Headphones,1,99.99,2019-07-11 23:06:00,676 Pine St, Atlanta,GA,30301 +231917,USB-C Charging Cable,1,11.95,2019-07-31 15:46:00,691 5th St, Boston,MA,02215 +231918,USB-C Charging Cable,1,11.95,2019-07-29 21:51:00,930 Meadow St, Los Angeles,CA,90001 +231919,Bose SoundSport Headphones,1,99.99,2019-07-02 14:19:00,170 7th St, New York City,NY,10001 +231920,34in Ultrawide Monitor,1,379.99,2019-07-22 11:55:00,362 Jefferson St, New York City,NY,10001 +231921,Lightning Charging Cable,1,14.95,2019-07-12 13:17:00,147 Lincoln St, San Francisco,CA,94016 +231922,Bose SoundSport Headphones,1,99.99,2019-07-26 11:24:00,637 Dogwood St, Dallas,TX,75001 +231923,AA Batteries (4-pack),1,3.84,2019-07-17 14:15:00,127 Spruce St, San Francisco,CA,94016 +231923,AAA Batteries (4-pack),1,2.99,2019-07-17 14:15:00,127 Spruce St, San Francisco,CA,94016 +231924,Macbook Pro Laptop,1,1700.0,2019-07-23 16:46:00,777 Jefferson St, New York City,NY,10001 +231925,USB-C Charging Cable,1,11.95,2019-07-24 10:07:00,278 Jefferson St, Portland,OR,97035 +231926,Apple Airpods Headphones,1,150.0,2019-07-24 20:06:00,975 Willow St, San Francisco,CA,94016 +231927,USB-C Charging Cable,1,11.95,2019-07-11 12:22:00,33 Meadow St, Los Angeles,CA,90001 +231928,iPhone,1,700.0,2019-07-30 18:21:00,531 Cedar St, Atlanta,GA,30301 +231929,Vareebadd Phone,1,400.0,2019-07-28 08:44:00,307 Dogwood St, Atlanta,GA,30301 +231930,Lightning Charging Cable,1,14.95,2019-07-09 13:22:00,615 4th St, Los Angeles,CA,90001 +231931,Wired Headphones,1,11.99,2019-07-24 10:33:00,976 Dogwood St, Austin,TX,73301 +231932,Bose SoundSport Headphones,1,99.99,2019-07-16 18:58:00,905 1st St, Atlanta,GA,30301 +231933,AA Batteries (4-pack),1,3.84,2019-07-07 10:34:00,86 Hill St, Atlanta,GA,30301 +231934,USB-C Charging Cable,1,11.95,2019-07-15 19:11:00,447 Lake St, New York City,NY,10001 +231935,iPhone,1,700.0,2019-07-15 15:42:00,810 Washington St, Portland,OR,97035 +231936,27in FHD Monitor,1,149.99,2019-07-17 16:51:00,26 11th St, Boston,MA,02215 +231937,AA Batteries (4-pack),1,3.84,2019-07-18 22:12:00,121 Ridge St, Boston,MA,02215 +231938,Apple Airpods Headphones,1,150.0,2019-07-11 12:57:00,89 Madison St, Seattle,WA,98101 +231939,Google Phone,1,600.0,2019-07-01 20:04:00,874 8th St, San Francisco,CA,94016 +231940,AA Batteries (4-pack),2,3.84,2019-07-08 15:22:00,804 Wilson St, San Francisco,CA,94016 +231941,Wired Headphones,1,11.99,2019-07-01 11:40:00,330 Johnson St, Atlanta,GA,30301 +231942,iPhone,1,700.0,2019-07-18 10:00:00,676 Park St, Seattle,WA,98101 +231943,Google Phone,1,600.0,2019-07-24 13:11:00,203 Washington St, San Francisco,CA,94016 +231944,Bose SoundSport Headphones,1,99.99,2019-07-25 00:08:00,591 7th St, San Francisco,CA,94016 +231945,Apple Airpods Headphones,1,150.0,2019-07-19 15:31:00,477 Sunset St, Portland,OR,97035 +231946,AA Batteries (4-pack),3,3.84,2019-07-31 13:18:00,476 Meadow St, Dallas,TX,75001 +231947,Macbook Pro Laptop,1,1700.0,2019-07-11 20:06:00,441 Forest St, Austin,TX,73301 +231948,USB-C Charging Cable,1,11.95,2019-07-23 10:02:00,546 Main St, Atlanta,GA,30301 +231949,Apple Airpods Headphones,1,150.0,2019-07-18 22:18:00,513 Maple St, Boston,MA,02215 +231950,AAA Batteries (4-pack),1,2.99,2019-07-12 07:28:00,915 Johnson St, San Francisco,CA,94016 +231951,Bose SoundSport Headphones,1,99.99,2019-07-19 14:43:00,167 Sunset St, Los Angeles,CA,90001 +231952,27in 4K Gaming Monitor,1,389.99,2019-07-07 11:58:00,633 Cedar St, Portland,OR,97035 +231953,Lightning Charging Cable,1,14.95,2019-07-30 23:36:00,731 Wilson St, Los Angeles,CA,90001 +231954,27in 4K Gaming Monitor,1,389.99,2019-07-18 17:26:00,865 8th St, Atlanta,GA,30301 +231955,AAA Batteries (4-pack),1,2.99,2019-07-11 13:08:00,706 Hill St, Dallas,TX,75001 +231956,iPhone,1,700.0,2019-07-12 13:28:00,133 13th St, Boston,MA,02215 +231956,Apple Airpods Headphones,1,150.0,2019-07-12 13:28:00,133 13th St, Boston,MA,02215 +231957,USB-C Charging Cable,1,11.95,2019-07-26 16:40:00,179 South St, Boston,MA,02215 +231958,Macbook Pro Laptop,1,1700.0,2019-07-26 15:51:00,417 13th St, Boston,MA,02215 +231959,AA Batteries (4-pack),1,3.84,2019-07-13 11:25:00,294 Jefferson St, New York City,NY,10001 +231960,USB-C Charging Cable,1,11.95,2019-07-07 17:50:00,439 Jackson St, New York City,NY,10001 +231961,20in Monitor,1,109.99,2019-07-13 12:13:00,588 Highland St, Boston,MA,02215 +231962,Apple Airpods Headphones,1,150.0,2019-07-16 11:09:00,959 Forest St, Portland,OR,97035 +231962,27in 4K Gaming Monitor,1,389.99,2019-07-16 11:09:00,959 Forest St, Portland,OR,97035 +231963,Wired Headphones,1,11.99,2019-07-20 19:43:00,404 Walnut St, Portland,ME,04101 +231964,USB-C Charging Cable,1,11.95,2019-07-30 18:04:00,725 1st St, Dallas,TX,75001 +231965,27in FHD Monitor,1,149.99,2019-07-09 10:01:00,979 South St, Los Angeles,CA,90001 +231966,AAA Batteries (4-pack),1,2.99,2019-07-25 21:22:00,954 Cherry St, San Francisco,CA,94016 +231967,AA Batteries (4-pack),1,3.84,2019-07-05 00:13:00,423 Jackson St, San Francisco,CA,94016 +231968,34in Ultrawide Monitor,1,379.99,2019-07-26 12:02:00,480 Forest St, San Francisco,CA,94016 +231969,Apple Airpods Headphones,1,150.0,2019-07-09 15:19:00,702 Hickory St, Los Angeles,CA,90001 +231970,Apple Airpods Headphones,1,150.0,2019-07-19 13:17:00,355 4th St, Dallas,TX,75001 +231971,USB-C Charging Cable,1,11.95,2019-07-30 14:14:00,765 Lincoln St, Portland,OR,97035 +231972,Wired Headphones,1,11.99,2019-07-27 16:51:00,643 Hill St, Atlanta,GA,30301 +231973,AA Batteries (4-pack),1,3.84,2019-07-09 14:41:00,697 Hickory St, New York City,NY,10001 +231974,Lightning Charging Cable,1,14.95,2019-07-07 21:53:00,328 Spruce St, Seattle,WA,98101 +231975,Bose SoundSport Headphones,1,99.99,2019-07-06 09:40:00,738 Lake St, Portland,OR,97035 +231976,Google Phone,1,600.0,2019-07-22 16:11:00,439 Jackson St, San Francisco,CA,94016 +231976,USB-C Charging Cable,1,11.95,2019-07-22 16:11:00,439 Jackson St, San Francisco,CA,94016 +231977,ThinkPad Laptop,1,999.99,2019-07-16 18:21:00,428 Lincoln St, San Francisco,CA,94016 +231978,AAA Batteries (4-pack),1,2.99,2019-07-26 15:56:00,647 Maple St, San Francisco,CA,94016 +231979,Apple Airpods Headphones,1,150.0,2019-07-30 23:39:00,193 Washington St, Los Angeles,CA,90001 +231980,34in Ultrawide Monitor,1,379.99,2019-07-02 11:49:00,470 11th St, Los Angeles,CA,90001 +231981,Lightning Charging Cable,1,14.95,2019-07-19 08:28:00,808 6th St, San Francisco,CA,94016 +231982,27in FHD Monitor,1,149.99,2019-07-03 23:49:00,332 Johnson St, Los Angeles,CA,90001 +231983,AAA Batteries (4-pack),1,2.99,2019-07-11 19:19:00,178 Washington St, Portland,OR,97035 +231984,AA Batteries (4-pack),3,3.84,2019-07-01 19:48:00,597 Lakeview St, Atlanta,GA,30301 +231985,iPhone,1,700.0,2019-07-31 09:05:00,796 11th St, Atlanta,GA,30301 +231986,USB-C Charging Cable,2,11.95,2019-07-25 15:14:00,690 Wilson St, San Francisco,CA,94016 +231987,Google Phone,1,600.0,2019-07-31 18:12:00,759 13th St, Los Angeles,CA,90001 +231987,USB-C Charging Cable,1,11.95,2019-07-31 18:12:00,759 13th St, Los Angeles,CA,90001 +231988,AAA Batteries (4-pack),1,2.99,2019-07-12 10:36:00,184 Jefferson St, Atlanta,GA,30301 +231989,Apple Airpods Headphones,1,150.0,2019-07-20 02:33:00,61 9th St, San Francisco,CA,94016 +231990,Lightning Charging Cable,1,14.95,2019-07-02 16:16:00,701 South St, Los Angeles,CA,90001 +231991,27in FHD Monitor,1,149.99,2019-07-31 13:51:00,51 Chestnut St, Dallas,TX,75001 +231992,Bose SoundSport Headphones,1,99.99,2019-07-20 20:19:00,246 River St, Atlanta,GA,30301 +231993,Bose SoundSport Headphones,1,99.99,2019-07-31 12:01:00,48 Dogwood St, Portland,OR,97035 +231994,AAA Batteries (4-pack),1,2.99,2019-07-05 23:02:00,238 North St, New York City,NY,10001 +231995,Apple Airpods Headphones,1,150.0,2019-07-09 12:28:00,735 9th St, Boston,MA,02215 +231996,USB-C Charging Cable,1,11.95,2019-07-02 15:45:00,522 Park St, New York City,NY,10001 +231997,USB-C Charging Cable,1,11.95,2019-07-08 21:06:00,637 Wilson St, Atlanta,GA,30301 +231998,Vareebadd Phone,1,400.0,2019-07-25 19:33:00,888 7th St, Austin,TX,73301 +231999,27in FHD Monitor,1,149.99,2019-07-23 13:27:00,58 Madison St, San Francisco,CA,94016 +232000,USB-C Charging Cable,1,11.95,2019-07-07 08:57:00,920 Sunset St, Dallas,TX,75001 +232001,AA Batteries (4-pack),1,3.84,2019-07-19 12:47:00,358 5th St, Los Angeles,CA,90001 +232002,Apple Airpods Headphones,1,150.0,2019-07-19 08:23:00,531 Jackson St, San Francisco,CA,94016 +232003,AAA Batteries (4-pack),1,2.99,2019-07-19 11:21:00,370 Main St, New York City,NY,10001 +232004,Apple Airpods Headphones,1,150.0,2019-07-14 22:29:00,756 Elm St, Boston,MA,02215 +232005,Apple Airpods Headphones,1,150.0,2019-07-07 20:17:00,267 Spruce St, San Francisco,CA,94016 +232006,ThinkPad Laptop,1,999.99,2019-07-05 20:36:00,160 North St, San Francisco,CA,94016 +232007,Apple Airpods Headphones,1,150.0,2019-07-27 12:54:00,479 Johnson St, Atlanta,GA,30301 +232008,USB-C Charging Cable,1,11.95,2019-07-08 12:44:00,243 11th St, Portland,ME,04101 +232009,Wired Headphones,1,11.99,2019-07-26 05:12:00,861 Walnut St, San Francisco,CA,94016 +232010,AAA Batteries (4-pack),1,2.99,2019-07-15 20:33:00,765 Lakeview St, Los Angeles,CA,90001 +232011,Wired Headphones,1,11.99,2019-07-03 21:54:00,403 Dogwood St, Los Angeles,CA,90001 +232012,Bose SoundSport Headphones,1,99.99,2019-07-03 12:15:00,888 Wilson St, New York City,NY,10001 +232013,AA Batteries (4-pack),2,3.84,2019-07-27 08:44:00,717 5th St, Portland,ME,04101 +232014,27in FHD Monitor,1,149.99,2019-07-27 09:50:00,759 South St, Los Angeles,CA,90001 +232015,AA Batteries (4-pack),1,3.84,2019-07-31 17:00:00,438 2nd St, Atlanta,GA,30301 +232016,Macbook Pro Laptop,1,1700.0,2019-07-08 10:40:00,399 Adams St, San Francisco,CA,94016 +232017,USB-C Charging Cable,1,11.95,2019-07-09 21:14:00,674 9th St, Los Angeles,CA,90001 +232018,Wired Headphones,1,11.99,2019-07-18 00:22:00,877 Adams St, Dallas,TX,75001 +232019,27in 4K Gaming Monitor,1,389.99,2019-07-04 10:55:00,383 Spruce St, Seattle,WA,98101 +232020,Wired Headphones,1,11.99,2019-07-10 00:33:00,415 Madison St, Portland,OR,97035 +232021,AAA Batteries (4-pack),2,2.99,2019-07-15 00:05:00,47 River St, Boston,MA,02215 +232022,Apple Airpods Headphones,1,150.0,2019-07-10 19:52:00,176 Church St, San Francisco,CA,94016 +232023,Wired Headphones,1,11.99,2019-07-24 16:04:00,594 Dogwood St, San Francisco,CA,94016 +232024,Lightning Charging Cable,1,14.95,2019-07-10 05:26:00,347 Hickory St, Austin,TX,73301 +232025,Bose SoundSport Headphones,1,99.99,2019-07-22 19:02:00,138 Johnson St, Boston,MA,02215 +232026,USB-C Charging Cable,1,11.95,2019-07-17 20:29:00,796 14th St, Dallas,TX,75001 +232027,AAA Batteries (4-pack),2,2.99,2019-07-30 18:59:00,939 Jefferson St, Dallas,TX,75001 +232028,34in Ultrawide Monitor,1,379.99,2019-07-29 05:21:00,873 Hickory St, Boston,MA,02215 +232029,Apple Airpods Headphones,1,150.0,2019-07-27 11:28:00,889 13th St, Dallas,TX,75001 +232030,Apple Airpods Headphones,1,150.0,2019-07-17 03:09:00,600 Lake St, Portland,ME,04101 +232031,Bose SoundSport Headphones,1,99.99,2019-07-24 20:48:00,614 Hill St, Boston,MA,02215 +232032,Lightning Charging Cable,1,14.95,2019-07-16 16:44:00,125 Cedar St, New York City,NY,10001 +232033,27in 4K Gaming Monitor,1,389.99,2019-07-25 18:58:00,26 Cedar St, Austin,TX,73301 +232034,Wired Headphones,1,11.99,2019-07-17 19:51:00,773 Meadow St, Dallas,TX,75001 +232034,LG Washing Machine,1,600.0,2019-07-17 19:51:00,773 Meadow St, Dallas,TX,75001 +232035,Flatscreen TV,1,300.0,2019-07-14 09:03:00,375 Hickory St, Los Angeles,CA,90001 +232036,Wired Headphones,1,11.99,2019-07-08 18:52:00,250 Ridge St, Los Angeles,CA,90001 +232037,Lightning Charging Cable,1,14.95,2019-07-15 08:09:00,973 Highland St, San Francisco,CA,94016 +232038,AA Batteries (4-pack),3,3.84,2019-07-30 12:39:00,479 Willow St, Seattle,WA,98101 +232039,ThinkPad Laptop,1,999.99,2019-07-19 11:16:00,580 Center St, Seattle,WA,98101 +232040,Wired Headphones,1,11.99,2019-07-08 20:33:00,970 Madison St, Boston,MA,02215 +232041,Lightning Charging Cable,1,14.95,2019-07-20 13:49:00,445 Jackson St, Dallas,TX,75001 +232042,iPhone,1,700.0,2019-07-20 02:58:00,418 14th St, Portland,OR,97035 +232043,34in Ultrawide Monitor,1,379.99,2019-07-30 14:08:00,824 Forest St, New York City,NY,10001 +232044,Bose SoundSport Headphones,1,99.99,2019-07-13 15:49:00,355 Hickory St, Austin,TX,73301 +232045,Lightning Charging Cable,1,14.95,2019-07-06 13:15:00,568 9th St, Atlanta,GA,30301 +232046,Lightning Charging Cable,1,14.95,2019-07-26 15:34:00,98 Main St, Dallas,TX,75001 +232047,Lightning Charging Cable,1,14.95,2019-07-22 12:18:00,196 Madison St, New York City,NY,10001 +232048,Lightning Charging Cable,1,14.95,2019-07-26 08:42:00,850 Wilson St, San Francisco,CA,94016 +232049,Wired Headphones,1,11.99,2019-07-16 20:17:00,604 Jackson St, Los Angeles,CA,90001 +232050,Bose SoundSport Headphones,1,99.99,2019-07-01 11:34:00,339 Main St, Los Angeles,CA,90001 +232051,20in Monitor,1,109.99,2019-07-14 09:15:00,759 Cherry St, Portland,OR,97035 +232052,27in FHD Monitor,1,149.99,2019-07-16 10:20:00,755 4th St, Dallas,TX,75001 +232053,Lightning Charging Cable,1,14.95,2019-07-03 11:03:00,43 9th St, San Francisco,CA,94016 +232054,Lightning Charging Cable,1,14.95,2019-07-25 13:02:00,70 Pine St, San Francisco,CA,94016 +232055,Apple Airpods Headphones,1,150.0,2019-07-12 10:18:00,600 8th St, San Francisco,CA,94016 +232056,AAA Batteries (4-pack),1,2.99,2019-07-05 18:28:00,402 Johnson St, San Francisco,CA,94016 +232057,Wired Headphones,1,11.99,2019-07-07 09:57:00,248 Johnson St, New York City,NY,10001 +232058,AA Batteries (4-pack),1,3.84,2019-07-06 20:50:00,32 Washington St, San Francisco,CA,94016 +232059,AA Batteries (4-pack),1,3.84,2019-07-09 17:19:00,586 Maple St, Los Angeles,CA,90001 +232060,AAA Batteries (4-pack),2,2.99,2019-07-29 15:03:00,130 Cedar St, Seattle,WA,98101 +232061,Apple Airpods Headphones,1,150.0,2019-07-05 11:20:00,18 North St, Los Angeles,CA,90001 +232062,Apple Airpods Headphones,1,150.0,2019-07-01 16:32:00,474 2nd St, New York City,NY,10001 +232063,27in 4K Gaming Monitor,1,389.99,2019-07-04 16:53:00,93 2nd St, San Francisco,CA,94016 +232064,Lightning Charging Cable,2,14.95,2019-07-06 20:38:00,497 8th St, Seattle,WA,98101 +232065,Wired Headphones,1,11.99,2019-07-02 18:08:00,939 Adams St, Seattle,WA,98101 +232066,Lightning Charging Cable,1,14.95,2019-07-26 11:34:00,487 Spruce St, Los Angeles,CA,90001 +232067,Lightning Charging Cable,1,14.95,2019-07-19 08:14:00,698 Highland St, Boston,MA,02215 +232068,ThinkPad Laptop,1,999.99,2019-07-06 14:38:00,587 Jefferson St, Atlanta,GA,30301 +232069,Apple Airpods Headphones,1,150.0,2019-07-11 10:12:00,890 Wilson St, Los Angeles,CA,90001 +232070,AAA Batteries (4-pack),1,2.99,2019-07-24 16:43:00,82 South St, Portland,OR,97035 +232071,AAA Batteries (4-pack),1,2.99,2019-07-05 07:54:00,222 6th St, San Francisco,CA,94016 +232072,Apple Airpods Headphones,1,150.0,2019-07-15 08:03:00,6 13th St, Los Angeles,CA,90001 +232073,Apple Airpods Headphones,1,150.0,2019-07-25 08:17:00,288 6th St, Boston,MA,02215 +232074,Apple Airpods Headphones,1,150.0,2019-07-26 22:35:00,490 10th St, Boston,MA,02215 +232075,Wired Headphones,1,11.99,2019-07-11 13:13:00,93 Lakeview St, San Francisco,CA,94016 +232076,Bose SoundSport Headphones,1,99.99,2019-07-06 23:32:00,75 1st St, Seattle,WA,98101 +232077,Lightning Charging Cable,1,14.95,2019-07-10 13:43:00,22 2nd St, San Francisco,CA,94016 +232078,27in FHD Monitor,1,149.99,2019-07-26 13:54:00,293 Main St, San Francisco,CA,94016 +232079,ThinkPad Laptop,1,999.99,2019-07-04 10:33:00,77 Hickory St, San Francisco,CA,94016 +232080,Bose SoundSport Headphones,1,99.99,2019-07-29 16:50:00,183 South St, San Francisco,CA,94016 +232081,AA Batteries (4-pack),1,3.84,2019-07-15 20:29:00,912 5th St, Seattle,WA,98101 +232082,AAA Batteries (4-pack),1,2.99,2019-07-01 15:43:00,347 11th St, Los Angeles,CA,90001 +232083,Apple Airpods Headphones,1,150.0,2019-07-22 18:30:00,305 13th St, San Francisco,CA,94016 +232084,Lightning Charging Cable,1,14.95,2019-07-02 22:27:00,658 Hickory St, San Francisco,CA,94016 +232085,Bose SoundSport Headphones,1,99.99,2019-07-15 15:16:00,457 4th St, San Francisco,CA,94016 +232086,Wired Headphones,1,11.99,2019-07-12 19:30:00,627 11th St, Los Angeles,CA,90001 +232087,Wired Headphones,1,11.99,2019-07-19 12:19:00,894 Ridge St, Atlanta,GA,30301 +232088,AAA Batteries (4-pack),1,2.99,2019-07-31 15:50:00,561 North St, New York City,NY,10001 +232089,AAA Batteries (4-pack),1,2.99,2019-07-02 23:12:00,744 Washington St, San Francisco,CA,94016 +232090,AAA Batteries (4-pack),1,2.99,2019-07-04 12:51:00,196 Wilson St, San Francisco,CA,94016 +232091,34in Ultrawide Monitor,1,379.99,2019-07-27 12:11:00,521 Forest St, Los Angeles,CA,90001 +232092,Bose SoundSport Headphones,1,99.99,2019-07-12 19:52:00,691 Highland St, Portland,OR,97035 +232093,Lightning Charging Cable,1,14.95,2019-07-13 18:33:00,432 9th St, San Francisco,CA,94016 +232094,iPhone,1,700.0,2019-07-01 20:52:00,375 13th St, Los Angeles,CA,90001 +232095,Lightning Charging Cable,1,14.95,2019-07-03 10:31:00,843 Pine St, New York City,NY,10001 +232096,Wired Headphones,1,11.99,2019-07-04 15:21:00,355 South St, Boston,MA,02215 +232097,27in FHD Monitor,1,149.99,2019-07-13 17:58:00,883 14th St, Los Angeles,CA,90001 +232098,Bose SoundSport Headphones,1,99.99,2019-07-27 20:18:00,829 Washington St, Atlanta,GA,30301 +232099,34in Ultrawide Monitor,1,379.99,2019-07-16 23:04:00,679 Hickory St, Austin,TX,73301 +232100,Apple Airpods Headphones,1,150.0,2019-07-25 10:08:00,383 Ridge St, Boston,MA,02215 +232101,Wired Headphones,1,11.99,2019-07-12 17:15:00,977 Elm St, Boston,MA,02215 +232102,AAA Batteries (4-pack),1,2.99,2019-07-22 16:27:00,583 5th St, Atlanta,GA,30301 +232103,34in Ultrawide Monitor,1,379.99,2019-07-24 12:09:00,127 Washington St, Los Angeles,CA,90001 +232104,AAA Batteries (4-pack),1,2.99,2019-07-03 10:22:00,913 Johnson St, Dallas,TX,75001 +232105,USB-C Charging Cable,1,11.95,2019-07-26 17:47:00,3 Willow St, San Francisco,CA,94016 +232106,Bose SoundSport Headphones,1,99.99,2019-07-13 14:15:00,967 Elm St, San Francisco,CA,94016 +232107,Wired Headphones,1,11.99,2019-07-12 13:44:00,364 Dogwood St, Los Angeles,CA,90001 +232108,Wired Headphones,1,11.99,2019-07-10 18:33:00,392 13th St, Los Angeles,CA,90001 +232109,Apple Airpods Headphones,1,150.0,2019-07-19 09:42:00,527 Adams St, Los Angeles,CA,90001 +232110,27in FHD Monitor,1,149.99,2019-07-16 16:14:00,833 Lincoln St, Austin,TX,73301 +232111,AA Batteries (4-pack),1,3.84,2019-07-12 18:13:00,648 12th St, Seattle,WA,98101 +232112,Lightning Charging Cable,1,14.95,2019-07-31 23:32:00,598 Lincoln St, Austin,TX,73301 +232113,27in FHD Monitor,1,149.99,2019-07-12 14:21:00,100 Hickory St, San Francisco,CA,94016 +232114,34in Ultrawide Monitor,1,379.99,2019-07-11 23:58:00,912 7th St, San Francisco,CA,94016 +232115,Wired Headphones,1,11.99,2019-07-25 12:19:00,313 Johnson St, New York City,NY,10001 +232116,Lightning Charging Cable,1,14.95,2019-07-06 11:00:00,27 Wilson St, San Francisco,CA,94016 +232117,34in Ultrawide Monitor,1,379.99,2019-07-20 20:31:00,62 Forest St, Austin,TX,73301 +232118,USB-C Charging Cable,1,11.95,2019-07-16 09:35:00,739 5th St, Boston,MA,02215 +232119,Lightning Charging Cable,1,14.95,2019-08-01 02:08:00,210 Walnut St, Los Angeles,CA,90001 +232120,Vareebadd Phone,1,400.0,2019-07-24 00:42:00,881 Madison St, Boston,MA,02215 +232121,Lightning Charging Cable,1,14.95,2019-07-29 15:52:00,406 13th St, Austin,TX,73301 +232122,Bose SoundSport Headphones,1,99.99,2019-07-20 16:05:00,869 14th St, San Francisco,CA,94016 +232123,Apple Airpods Headphones,1,150.0,2019-07-13 08:28:00,971 Sunset St, Seattle,WA,98101 +232124,27in FHD Monitor,1,149.99,2019-07-01 20:38:00,62 14th St, Los Angeles,CA,90001 +232125,AAA Batteries (4-pack),4,2.99,2019-07-17 11:44:00,448 Washington St, Boston,MA,02215 +232126,USB-C Charging Cable,2,11.95,2019-07-02 10:14:00,595 7th St, San Francisco,CA,94016 +232127,Flatscreen TV,1,300.0,2019-07-19 12:33:00,34 7th St, Portland,OR,97035 +232128,27in FHD Monitor,1,149.99,2019-07-12 09:00:00,738 9th St, Los Angeles,CA,90001 +232129,AAA Batteries (4-pack),1,2.99,2019-07-10 15:31:00,59 Meadow St, New York City,NY,10001 +232130,AAA Batteries (4-pack),1,2.99,2019-07-26 10:12:00,137 Willow St, Seattle,WA,98101 +232131,Apple Airpods Headphones,1,150.0,2019-07-17 19:11:00,327 Meadow St, New York City,NY,10001 +232132,USB-C Charging Cable,1,11.95,2019-07-07 15:28:00,477 Center St, Los Angeles,CA,90001 +232133,Wired Headphones,1,11.99,2019-07-28 12:27:00,887 Lake St, Los Angeles,CA,90001 +232134,Lightning Charging Cable,1,14.95,2019-07-23 21:37:00,140 Hill St, Boston,MA,02215 +232135,Apple Airpods Headphones,1,150.0,2019-07-13 00:16:00,748 Lincoln St, New York City,NY,10001 +232136,Lightning Charging Cable,1,14.95,2019-07-15 11:02:00,353 11th St, Austin,TX,73301 +232137,27in FHD Monitor,1,149.99,2019-07-14 11:33:00,841 2nd St, New York City,NY,10001 +232138,AA Batteries (4-pack),1,3.84,2019-07-23 15:31:00,354 11th St, Atlanta,GA,30301 +232139,USB-C Charging Cable,1,11.95,2019-07-13 00:45:00,895 Jefferson St, Austin,TX,73301 +232140,LG Washing Machine,1,600.0,2019-07-17 20:08:00,518 4th St, Atlanta,GA,30301 +232141,Apple Airpods Headphones,1,150.0,2019-07-03 17:54:00,716 Meadow St, Los Angeles,CA,90001 +232142,Wired Headphones,1,11.99,2019-07-22 12:47:00,310 Forest St, Dallas,TX,75001 +232143,Apple Airpods Headphones,1,150.0,2019-07-22 18:06:00,137 Main St, Portland,OR,97035 +232144,27in 4K Gaming Monitor,1,389.99,2019-07-30 08:42:00,543 Spruce St, San Francisco,CA,94016 +232145,Bose SoundSport Headphones,1,99.99,2019-07-24 20:31:00,319 6th St, Dallas,TX,75001 +232146,USB-C Charging Cable,1,11.95,2019-07-30 14:22:00,378 7th St, Atlanta,GA,30301 +232147,Lightning Charging Cable,1,14.95,2019-07-25 11:34:00,628 1st St, San Francisco,CA,94016 +232148,Google Phone,1,600.0,2019-07-21 09:34:00,567 Hill St, Boston,MA,02215 +232149,Macbook Pro Laptop,1,1700.0,2019-07-07 23:23:00,663 6th St, San Francisco,CA,94016 +232150,27in 4K Gaming Monitor,1,389.99,2019-07-10 01:19:00,332 7th St, New York City,NY,10001 +232151,Wired Headphones,1,11.99,2019-07-10 08:30:00,915 Hill St, Boston,MA,02215 +232152,Wired Headphones,1,11.99,2019-07-14 13:43:00,178 6th St, Dallas,TX,75001 +232153,USB-C Charging Cable,1,11.95,2019-07-31 12:52:00,644 Walnut St, Boston,MA,02215 +232154,27in 4K Gaming Monitor,1,389.99,2019-07-30 09:01:00,821 Johnson St, Dallas,TX,75001 +232155,Flatscreen TV,1,300.0,2019-07-27 10:30:00,156 2nd St, San Francisco,CA,94016 +232156,Bose SoundSport Headphones,1,99.99,2019-07-06 14:17:00,772 Meadow St, Atlanta,GA,30301 +232157,AA Batteries (4-pack),1,3.84,2019-07-29 13:29:00,290 Pine St, Austin,TX,73301 +232158,USB-C Charging Cable,1,11.95,2019-07-27 16:45:00,842 Center St, San Francisco,CA,94016 +232159,Apple Airpods Headphones,1,150.0,2019-07-21 20:09:00,93 Chestnut St, Dallas,TX,75001 +232160,AA Batteries (4-pack),3,3.84,2019-07-09 22:45:00,560 Wilson St, Dallas,TX,75001 +232161,27in FHD Monitor,1,149.99,2019-07-11 02:16:00,569 Wilson St, Portland,OR,97035 +232162,ThinkPad Laptop,1,999.99,2019-07-29 19:30:00,978 Meadow St, San Francisco,CA,94016 +232163,AAA Batteries (4-pack),1,2.99,2019-07-25 21:25:00,938 Lake St, San Francisco,CA,94016 +232164,Apple Airpods Headphones,1,150.0,2019-07-17 16:33:00,65 Walnut St, New York City,NY,10001 +232165,AAA Batteries (4-pack),1,2.99,2019-07-17 15:39:00,537 Chestnut St, Atlanta,GA,30301 +232166,Wired Headphones,1,11.99,2019-07-10 23:51:00,868 Center St, Atlanta,GA,30301 +232167,Lightning Charging Cable,1,14.95,2019-07-16 17:58:00,980 North St, Atlanta,GA,30301 +232168,USB-C Charging Cable,1,11.95,2019-07-02 12:32:00,247 9th St, San Francisco,CA,94016 +232169,Lightning Charging Cable,1,14.95,2019-07-02 20:25:00,615 West St, Austin,TX,73301 +232170,AA Batteries (4-pack),2,3.84,2019-07-12 11:28:00,205 Lake St, Los Angeles,CA,90001 +232171,Wired Headphones,1,11.99,2019-07-12 13:50:00,510 Cedar St, Seattle,WA,98101 +232172,Wired Headphones,1,11.99,2019-07-10 18:05:00,24 Elm St, Austin,TX,73301 +232173,AA Batteries (4-pack),2,3.84,2019-07-11 21:30:00,928 Sunset St, Boston,MA,02215 +232174,AAA Batteries (4-pack),1,2.99,2019-07-11 22:03:00,671 Meadow St, San Francisco,CA,94016 +232175,AAA Batteries (4-pack),1,2.99,2019-07-31 16:04:00,798 1st St, New York City,NY,10001 +232176,Apple Airpods Headphones,1,150.0,2019-07-06 20:36:00,374 Forest St, Los Angeles,CA,90001 +232177,34in Ultrawide Monitor,1,379.99,2019-07-12 07:51:00,964 6th St, San Francisco,CA,94016 +232177,20in Monitor,1,109.99,2019-07-12 07:51:00,964 6th St, San Francisco,CA,94016 +232178,Wired Headphones,1,11.99,2019-07-19 18:19:00,27 Jefferson St, Atlanta,GA,30301 +232179,Lightning Charging Cable,1,14.95,2019-07-05 20:18:00,202 Hickory St, Portland,OR,97035 +232180,27in 4K Gaming Monitor,1,389.99,2019-07-04 12:00:00,391 7th St, Atlanta,GA,30301 +232181,Macbook Pro Laptop,1,1700.0,2019-07-31 14:10:00,736 Wilson St, New York City,NY,10001 +232182,27in 4K Gaming Monitor,1,389.99,2019-07-20 15:43:00,267 Madison St, San Francisco,CA,94016 +232183,AAA Batteries (4-pack),1,2.99,2019-07-29 18:02:00,302 Cedar St, Los Angeles,CA,90001 +232184,AA Batteries (4-pack),1,3.84,2019-07-26 17:57:00,558 Lakeview St, Portland,OR,97035 +232185,Wired Headphones,1,11.99,2019-07-22 19:15:00,169 13th St, Austin,TX,73301 +232186,Wired Headphones,1,11.99,2019-07-11 20:17:00,219 Spruce St, Los Angeles,CA,90001 +232187,Lightning Charging Cable,2,14.95,2019-07-28 22:37:00,473 Hickory St, San Francisco,CA,94016 +232188,Bose SoundSport Headphones,1,99.99,2019-07-14 17:56:00,995 Elm St, Los Angeles,CA,90001 +232189,USB-C Charging Cable,1,11.95,2019-07-07 18:35:00,326 Jackson St, Los Angeles,CA,90001 +232190,AA Batteries (4-pack),1,3.84,2019-07-22 08:05:00,245 Cedar St, Boston,MA,02215 +232191,ThinkPad Laptop,1,999.99,2019-07-04 05:57:00,211 7th St, San Francisco,CA,94016 +232192,Wired Headphones,2,11.99,2019-07-10 09:43:00,659 Meadow St, Los Angeles,CA,90001 +232193,AAA Batteries (4-pack),1,2.99,2019-07-27 16:49:00,369 Chestnut St, San Francisco,CA,94016 +232194,USB-C Charging Cable,1,11.95,2019-07-15 17:34:00,579 Cedar St, Los Angeles,CA,90001 +232195,Bose SoundSport Headphones,1,99.99,2019-07-14 22:35:00,17 Jefferson St, Boston,MA,02215 +232196,USB-C Charging Cable,2,11.95,2019-07-06 20:46:00,764 Lake St, New York City,NY,10001 +232197,Apple Airpods Headphones,1,150.0,2019-07-03 17:20:00,582 6th St, Portland,OR,97035 +232198,Apple Airpods Headphones,1,150.0,2019-07-05 23:55:00,829 6th St, San Francisco,CA,94016 +232199,Apple Airpods Headphones,1,150.0,2019-07-26 17:20:00,161 1st St, Los Angeles,CA,90001 +232200,AA Batteries (4-pack),2,3.84,2019-07-10 19:18:00,70 Elm St, Portland,OR,97035 +232201,LG Washing Machine,1,600.0,2019-07-01 14:37:00,789 9th St, Atlanta,GA,30301 +232202,USB-C Charging Cable,1,11.95,2019-07-16 00:11:00,136 5th St, New York City,NY,10001 +232203,AAA Batteries (4-pack),2,2.99,2019-07-13 17:41:00,297 13th St, San Francisco,CA,94016 +232204,Wired Headphones,1,11.99,2019-07-15 13:50:00,208 7th St, Portland,OR,97035 +232205,Lightning Charging Cable,1,14.95,2019-07-21 10:21:00,380 Spruce St, Atlanta,GA,30301 +232206,Macbook Pro Laptop,1,1700.0,2019-07-21 22:07:00,803 Maple St, Austin,TX,73301 +232207,iPhone,1,700.0,2019-07-21 21:54:00,187 5th St, San Francisco,CA,94016 +232208,AAA Batteries (4-pack),1,2.99,2019-07-18 12:24:00,951 13th St, Austin,TX,73301 +232209,Apple Airpods Headphones,1,150.0,2019-07-01 23:23:00,676 2nd St, New York City,NY,10001 +232210,34in Ultrawide Monitor,1,379.99,2019-07-01 20:52:00,188 Hill St, San Francisco,CA,94016 +232211,Bose SoundSport Headphones,1,99.99,2019-07-29 11:08:00,446 5th St, Boston,MA,02215 +232212,AAA Batteries (4-pack),2,2.99,2019-07-10 11:53:00,105 Elm St, San Francisco,CA,94016 +232213,AA Batteries (4-pack),1,3.84,2019-07-30 11:09:00,335 7th St, Dallas,TX,75001 +232214,27in FHD Monitor,1,149.99,2019-07-21 16:13:00,671 North St, Los Angeles,CA,90001 +232215,ThinkPad Laptop,1,999.99,2019-07-09 17:32:00,787 5th St, New York City,NY,10001 +232216,Apple Airpods Headphones,1,150.0,2019-07-11 16:08:00,118 12th St, Los Angeles,CA,90001 +232217,USB-C Charging Cable,1,11.95,2019-07-08 16:04:00,998 River St, San Francisco,CA,94016 +232218,Apple Airpods Headphones,1,150.0,2019-07-31 19:21:00,732 Ridge St, Portland,OR,97035 +232219,Lightning Charging Cable,1,14.95,2019-07-09 17:41:00,164 2nd St, San Francisco,CA,94016 +232220,27in 4K Gaming Monitor,1,389.99,2019-07-07 23:37:00,257 7th St, New York City,NY,10001 +232221,Lightning Charging Cable,1,14.95,2019-07-22 21:34:00,943 Center St, Boston,MA,02215 +232222,USB-C Charging Cable,1,11.95,2019-07-19 09:07:00,268 Jackson St, New York City,NY,10001 +232223,AAA Batteries (4-pack),1,2.99,2019-07-21 07:43:00,926 6th St, Los Angeles,CA,90001 +232224,20in Monitor,1,109.99,2019-07-15 03:54:00,902 Washington St, Los Angeles,CA,90001 +232225,USB-C Charging Cable,2,11.95,2019-07-19 14:54:00,636 1st St, New York City,NY,10001 +232226,AAA Batteries (4-pack),1,2.99,2019-07-27 09:33:00,754 Jackson St, New York City,NY,10001 +232227,20in Monitor,1,109.99,2019-07-23 19:40:00,669 Walnut St, New York City,NY,10001 +232228,34in Ultrawide Monitor,1,379.99,2019-07-06 18:47:00,519 River St, New York City,NY,10001 +232229,AA Batteries (4-pack),3,3.84,2019-07-13 15:28:00,246 Elm St, Boston,MA,02215 +232230,Wired Headphones,1,11.99,2019-07-10 14:29:00,830 Madison St, San Francisco,CA,94016 +232231,Bose SoundSport Headphones,1,99.99,2019-07-17 07:31:00,329 7th St, Los Angeles,CA,90001 +232232,Lightning Charging Cable,1,14.95,2019-07-02 13:17:00,362 Walnut St, Los Angeles,CA,90001 +232233,AA Batteries (4-pack),1,3.84,2019-07-27 20:49:00,734 Sunset St, Dallas,TX,75001 +232234,AA Batteries (4-pack),2,3.84,2019-07-03 17:51:00,132 Willow St, Austin,TX,73301 +232235,ThinkPad Laptop,1,999.99,2019-07-11 21:26:00,23 Johnson St, New York City,NY,10001 +232235,AAA Batteries (4-pack),1,2.99,2019-07-11 21:26:00,23 Johnson St, New York City,NY,10001 +232236,AA Batteries (4-pack),1,3.84,2019-07-24 14:14:00,881 Cherry St, Boston,MA,02215 +232236,AAA Batteries (4-pack),3,2.99,2019-07-24 14:14:00,881 Cherry St, Boston,MA,02215 +232237,USB-C Charging Cable,1,11.95,2019-07-18 05:24:00,298 2nd St, Dallas,TX,75001 +232238,iPhone,1,700.0,2019-07-08 09:44:00,179 1st St, Austin,TX,73301 +232239,Wired Headphones,1,11.99,2019-07-10 00:43:00,418 Dogwood St, San Francisco,CA,94016 +232240,Lightning Charging Cable,2,14.95,2019-07-08 11:55:00,882 2nd St, Austin,TX,73301 +232241,AA Batteries (4-pack),1,3.84,2019-07-26 12:08:00,690 14th St, Los Angeles,CA,90001 +232242,Apple Airpods Headphones,1,150.0,2019-07-01 09:06:00,764 Highland St, New York City,NY,10001 +232243,Apple Airpods Headphones,1,150.0,2019-07-14 22:27:00,263 2nd St, San Francisco,CA,94016 +232244,Vareebadd Phone,1,400.0,2019-07-07 23:07:00,315 Willow St, Austin,TX,73301 +232244,USB-C Charging Cable,1,11.95,2019-07-07 23:07:00,315 Willow St, Austin,TX,73301 +232245,Bose SoundSport Headphones,1,99.99,2019-07-14 11:24:00,304 7th St, Boston,MA,02215 +232245,20in Monitor,1,109.99,2019-07-14 11:24:00,304 7th St, Boston,MA,02215 +232246,27in FHD Monitor,1,149.99,2019-07-09 17:33:00,61 12th St, Seattle,WA,98101 +232247,USB-C Charging Cable,1,11.95,2019-07-06 09:13:00,680 Madison St, San Francisco,CA,94016 +232248,Wired Headphones,1,11.99,2019-07-10 10:28:00,664 South St, New York City,NY,10001 +232249,Wired Headphones,1,11.99,2019-07-20 08:26:00,635 11th St, Atlanta,GA,30301 +232250,Google Phone,1,600.0,2019-07-22 13:14:00,677 Main St, Atlanta,GA,30301 +232251,20in Monitor,1,109.99,2019-07-17 00:12:00,327 Madison St, Dallas,TX,75001 +232252,Wired Headphones,1,11.99,2019-07-08 08:56:00,375 North St, New York City,NY,10001 +232253,Google Phone,1,600.0,2019-07-07 18:16:00,771 13th St, Los Angeles,CA,90001 +232254,Wired Headphones,1,11.99,2019-07-22 12:12:00,556 Madison St, San Francisco,CA,94016 +232255,34in Ultrawide Monitor,1,379.99,2019-07-21 15:19:00,540 Madison St, Boston,MA,02215 +232256,AA Batteries (4-pack),1,3.84,2019-07-12 22:06:00,524 North St, New York City,NY,10001 +232257,ThinkPad Laptop,1,999.99,2019-07-09 13:19:00,926 Park St, Atlanta,GA,30301 +232258,AAA Batteries (4-pack),2,2.99,2019-07-29 18:57:00,471 North St, New York City,NY,10001 +232259,Wired Headphones,1,11.99,2019-07-09 17:57:00,450 Walnut St, Portland,ME,04101 +232260,Bose SoundSport Headphones,1,99.99,2019-07-14 16:13:00,817 1st St, San Francisco,CA,94016 +232261,Vareebadd Phone,1,400.0,2019-07-09 20:14:00,547 Adams St, Boston,MA,02215 +232261,USB-C Charging Cable,1,11.95,2019-07-09 20:14:00,547 Adams St, Boston,MA,02215 +232262,USB-C Charging Cable,1,11.95,2019-07-08 10:03:00,699 Meadow St, San Francisco,CA,94016 +232263,27in 4K Gaming Monitor,1,389.99,2019-07-24 08:47:00,668 River St, Seattle,WA,98101 +232264,27in FHD Monitor,1,149.99,2019-07-02 19:01:00,888 Johnson St, San Francisco,CA,94016 +232265,Bose SoundSport Headphones,1,99.99,2019-07-24 23:34:00,804 Maple St, Los Angeles,CA,90001 +232266,USB-C Charging Cable,1,11.95,2019-07-05 14:47:00,18 Ridge St, New York City,NY,10001 +232267,Lightning Charging Cable,1,14.95,2019-07-25 12:07:00,987 Main St, Los Angeles,CA,90001 +232268,AA Batteries (4-pack),1,3.84,2019-07-09 11:54:00,666 Johnson St, San Francisco,CA,94016 +232269,Flatscreen TV,1,300.0,2019-07-12 18:18:00,220 Maple St, Boston,MA,02215 +232270,Wired Headphones,1,11.99,2019-07-08 13:32:00,644 South St, Dallas,TX,75001 +232271,AAA Batteries (4-pack),1,2.99,2019-07-31 14:26:00,101 Johnson St, Portland,OR,97035 +232272,USB-C Charging Cable,1,11.95,2019-07-03 16:38:00,863 4th St, New York City,NY,10001 +232273,Wired Headphones,1,11.99,2019-07-03 20:35:00,753 Lincoln St, San Francisco,CA,94016 +232274,Apple Airpods Headphones,1,150.0,2019-07-21 20:32:00,228 South St, San Francisco,CA,94016 +232275,Google Phone,1,600.0,2019-07-22 22:44:00,483 5th St, New York City,NY,10001 +232275,USB-C Charging Cable,1,11.95,2019-07-22 22:44:00,483 5th St, New York City,NY,10001 +232276,Wired Headphones,1,11.99,2019-07-30 10:25:00,360 2nd St, Seattle,WA,98101 +232277,27in FHD Monitor,1,149.99,2019-07-18 19:46:00,23 2nd St, San Francisco,CA,94016 +232278,Lightning Charging Cable,1,14.95,2019-07-08 17:20:00,633 Jackson St, San Francisco,CA,94016 +232279,AA Batteries (4-pack),1,3.84,2019-07-29 20:04:00,551 Lake St, Atlanta,GA,30301 +232280,Lightning Charging Cable,1,14.95,2019-07-30 22:37:00,774 Elm St, New York City,NY,10001 +232281,AAA Batteries (4-pack),2,2.99,2019-07-31 19:00:00,735 Willow St, Austin,TX,73301 +232282,AAA Batteries (4-pack),1,2.99,2019-07-25 13:03:00,9 Madison St, San Francisco,CA,94016 +232283,Lightning Charging Cable,1,14.95,2019-07-13 23:12:00,466 West St, Los Angeles,CA,90001 +232284,Lightning Charging Cable,1,14.95,2019-07-08 19:06:00,815 4th St, Los Angeles,CA,90001 +232285,27in 4K Gaming Monitor,1,389.99,2019-07-15 14:48:00,414 Dogwood St, San Francisco,CA,94016 +232286,Wired Headphones,1,11.99,2019-07-30 10:02:00,693 6th St, Seattle,WA,98101 +232287,Macbook Pro Laptop,1,1700.0,2019-07-06 19:37:00,392 South St, Atlanta,GA,30301 +232288,AAA Batteries (4-pack),1,2.99,2019-07-26 23:50:00,683 10th St, Dallas,TX,75001 +232289,AA Batteries (4-pack),1,3.84,2019-07-10 07:38:00,422 Walnut St, Portland,OR,97035 +232290,iPhone,1,700.0,2019-07-01 14:16:00,892 Spruce St, Boston,MA,02215 +232290,Apple Airpods Headphones,1,150.0,2019-07-01 14:16:00,892 Spruce St, Boston,MA,02215 +232291,USB-C Charging Cable,1,11.95,2019-07-06 11:55:00,724 Hickory St, New York City,NY,10001 +232292,Wired Headphones,1,11.99,2019-07-07 18:11:00,2 South St, Portland,ME,04101 +232293,ThinkPad Laptop,1,999.99,2019-07-09 14:07:00,449 14th St, Boston,MA,02215 +232294,USB-C Charging Cable,1,11.95,2019-07-17 19:29:00,1 Meadow St, San Francisco,CA,94016 +232295,AA Batteries (4-pack),1,3.84,2019-07-12 16:35:00,700 River St, Dallas,TX,75001 +232296,Bose SoundSport Headphones,1,99.99,2019-07-26 16:31:00,78 Maple St, Seattle,WA,98101 +232297,AA Batteries (4-pack),2,3.84,2019-07-18 13:04:00,194 Madison St, San Francisco,CA,94016 +232298,USB-C Charging Cable,2,11.95,2019-07-14 00:04:00,226 11th St, Atlanta,GA,30301 +232299,USB-C Charging Cable,1,11.95,2019-07-24 19:31:00,149 14th St, Dallas,TX,75001 +232300,USB-C Charging Cable,1,11.95,2019-07-18 12:15:00,106 11th St, Dallas,TX,75001 +232301,USB-C Charging Cable,1,11.95,2019-07-19 16:00:00,807 Elm St, Portland,OR,97035 +232302,ThinkPad Laptop,1,999.99,2019-07-03 17:12:00,864 2nd St, Dallas,TX,75001 +232303,Lightning Charging Cable,1,14.95,2019-07-01 15:12:00,745 Hill St, Portland,OR,97035 +232304,Wired Headphones,2,11.99,2019-07-25 16:09:00,527 4th St, Los Angeles,CA,90001 +232305,Macbook Pro Laptop,1,1700.0,2019-07-16 01:58:00,111 Willow St, Austin,TX,73301 +232306,AA Batteries (4-pack),1,3.84,2019-07-07 19:27:00,615 6th St, Los Angeles,CA,90001 +232307,iPhone,1,700.0,2019-07-21 16:16:00,378 Main St, Seattle,WA,98101 +232308,27in 4K Gaming Monitor,1,389.99,2019-07-26 13:13:00,309 8th St, Dallas,TX,75001 +232309,AA Batteries (4-pack),1,3.84,2019-07-21 21:07:00,213 9th St, New York City,NY,10001 +232310,Apple Airpods Headphones,1,150.0,2019-07-28 20:24:00,338 Adams St, Boston,MA,02215 +232311,USB-C Charging Cable,1,11.95,2019-07-22 22:10:00,336 Lincoln St, Austin,TX,73301 +232312,20in Monitor,1,109.99,2019-07-11 21:41:00,386 12th St, Seattle,WA,98101 +232313,27in FHD Monitor,1,149.99,2019-07-10 08:29:00,89 Lakeview St, San Francisco,CA,94016 +232314,Macbook Pro Laptop,1,1700.0,2019-07-03 16:25:00,683 Highland St, Dallas,TX,75001 +232314,AAA Batteries (4-pack),2,2.99,2019-07-03 16:25:00,683 Highland St, Dallas,TX,75001 +232315,Macbook Pro Laptop,1,1700.0,2019-07-22 11:43:00,738 8th St, New York City,NY,10001 +232316,USB-C Charging Cable,2,11.95,2019-07-08 19:04:00,369 Main St, Los Angeles,CA,90001 +232317,Google Phone,1,600.0,2019-07-27 14:23:00,680 Forest St, New York City,NY,10001 +232318,Apple Airpods Headphones,1,150.0,2019-07-19 12:54:00,31 8th St, Dallas,TX,75001 +232319,Apple Airpods Headphones,1,150.0,2019-07-03 00:38:00,543 7th St, New York City,NY,10001 +232320,Apple Airpods Headphones,1,150.0,2019-07-03 15:40:00,559 Cherry St, New York City,NY,10001 +232321,Google Phone,1,600.0,2019-07-09 19:30:00,550 Church St, Boston,MA,02215 +232322,Lightning Charging Cable,1,14.95,2019-07-13 00:05:00,817 West St, San Francisco,CA,94016 +232323,AAA Batteries (4-pack),1,2.99,2019-07-06 12:42:00,271 Cedar St, Austin,TX,73301 +232324,Wired Headphones,1,11.99,2019-07-20 16:18:00,589 Wilson St, Boston,MA,02215 +232325,Wired Headphones,1,11.99,2019-07-24 22:43:00,334 Hickory St, Seattle,WA,98101 +232326,Lightning Charging Cable,1,14.95,2019-07-24 16:46:00,905 Johnson St, New York City,NY,10001 +232327,Bose SoundSport Headphones,1,99.99,2019-07-14 07:45:00,534 Forest St, Los Angeles,CA,90001 +232328,AA Batteries (4-pack),1,3.84,2019-07-03 04:41:00,63 Forest St, San Francisco,CA,94016 +232329,Google Phone,1,600.0,2019-07-26 08:23:00,390 7th St, Seattle,WA,98101 +232330,Bose SoundSport Headphones,1,99.99,2019-07-09 12:22:00,254 4th St, Dallas,TX,75001 +232331,Apple Airpods Headphones,1,150.0,2019-07-03 15:12:00,160 Church St, Portland,OR,97035 +232332,AAA Batteries (4-pack),1,2.99,2019-07-16 13:39:00,730 Hill St, Boston,MA,02215 +232333,20in Monitor,1,109.99,2019-07-25 20:22:00,34 Main St, San Francisco,CA,94016 +232334,AA Batteries (4-pack),1,3.84,2019-07-29 14:20:00,192 Washington St, San Francisco,CA,94016 +232335,USB-C Charging Cable,1,11.95,2019-07-29 09:47:00,676 Jackson St, Seattle,WA,98101 +232336,27in 4K Gaming Monitor,1,389.99,2019-07-25 18:02:00,451 Spruce St, San Francisco,CA,94016 +232337,34in Ultrawide Monitor,1,379.99,2019-07-18 01:08:00,906 8th St, New York City,NY,10001 +232338,27in 4K Gaming Monitor,1,389.99,2019-07-10 05:34:00,484 Hickory St, San Francisco,CA,94016 +232339,34in Ultrawide Monitor,1,379.99,2019-07-25 21:22:00,4 Chestnut St, San Francisco,CA,94016 +232340,iPhone,1,700.0,2019-07-02 20:02:00,392 South St, Dallas,TX,75001 +232340,Apple Airpods Headphones,1,150.0,2019-07-02 20:02:00,392 South St, Dallas,TX,75001 +232340,Wired Headphones,1,11.99,2019-07-02 20:02:00,392 South St, Dallas,TX,75001 +232341,USB-C Charging Cable,1,11.95,2019-07-13 12:34:00,755 Lincoln St, Portland,OR,97035 +232342,Apple Airpods Headphones,1,150.0,2019-07-05 18:53:00,262 Willow St, Boston,MA,02215 +232343,Lightning Charging Cable,1,14.95,2019-07-06 13:25:00,565 14th St, Atlanta,GA,30301 +232344,Google Phone,1,600.0,2019-07-31 14:53:00,410 Elm St, Portland,ME,04101 +232345,27in FHD Monitor,1,149.99,2019-07-08 11:01:00,811 South St, Atlanta,GA,30301 +232346,AA Batteries (4-pack),2,3.84,2019-07-11 11:24:00,210 Cherry St, San Francisco,CA,94016 +232347,ThinkPad Laptop,1,999.99,2019-07-11 04:44:00,296 10th St, San Francisco,CA,94016 +232348,iPhone,1,700.0,2019-07-27 10:24:00,793 Hill St, Boston,MA,02215 +232348,Apple Airpods Headphones,1,150.0,2019-07-27 10:24:00,793 Hill St, Boston,MA,02215 +232349,27in FHD Monitor,1,149.99,2019-07-03 17:28:00,356 12th St, Atlanta,GA,30301 +232350,Flatscreen TV,1,300.0,2019-07-09 14:19:00,1 Willow St, San Francisco,CA,94016 +232351,Apple Airpods Headphones,1,150.0,2019-07-01 14:34:00,207 Wilson St, San Francisco,CA,94016 +232352,Wired Headphones,1,11.99,2019-07-20 18:02:00,488 Johnson St, Boston,MA,02215 +232353,Wired Headphones,1,11.99,2019-07-30 17:45:00,627 13th St, New York City,NY,10001 +232354,Google Phone,1,600.0,2019-07-15 22:11:00,554 9th St, Atlanta,GA,30301 +232355,AA Batteries (4-pack),1,3.84,2019-07-21 23:50:00,226 West St, Seattle,WA,98101 +232356,ThinkPad Laptop,1,999.99,2019-07-14 02:03:00,424 Jackson St, Dallas,TX,75001 +232357,27in FHD Monitor,1,149.99,2019-07-08 08:18:00,730 Center St, New York City,NY,10001 +232358,Macbook Pro Laptop,1,1700.0,2019-07-21 20:34:00,687 Johnson St, San Francisco,CA,94016 +232359,AA Batteries (4-pack),1,3.84,2019-07-23 16:34:00,444 Walnut St, New York City,NY,10001 +232360,Lightning Charging Cable,2,14.95,2019-07-25 23:57:00,659 Hill St, Portland,OR,97035 +232361,USB-C Charging Cable,1,11.95,2019-07-22 18:02:00,909 Cherry St, San Francisco,CA,94016 +232362,USB-C Charging Cable,1,11.95,2019-07-17 00:19:00,391 7th St, Austin,TX,73301 +232362,Lightning Charging Cable,2,14.95,2019-07-17 00:19:00,391 7th St, Austin,TX,73301 +232363,Lightning Charging Cable,1,14.95,2019-07-02 22:13:00,263 Jackson St, Austin,TX,73301 +232364,Apple Airpods Headphones,1,150.0,2019-07-20 12:27:00,500 5th St, Portland,OR,97035 +232365,USB-C Charging Cable,1,11.95,2019-07-24 01:37:00,11 Walnut St, Portland,OR,97035 +232366,Apple Airpods Headphones,1,150.0,2019-07-06 05:46:00,157 Church St, Austin,TX,73301 +232367,AAA Batteries (4-pack),1,2.99,2019-07-02 14:24:00,911 Church St, Portland,OR,97035 +232368,Apple Airpods Headphones,1,150.0,2019-07-25 11:34:00,872 Maple St, Los Angeles,CA,90001 +232369,AA Batteries (4-pack),2,3.84,2019-07-15 11:30:00,590 North St, New York City,NY,10001 +232370,Lightning Charging Cable,1,14.95,2019-07-23 10:46:00,101 Jefferson St, Austin,TX,73301 +232371,AA Batteries (4-pack),1,3.84,2019-07-20 10:16:00,410 Elm St, San Francisco,CA,94016 +232372,Lightning Charging Cable,1,14.95,2019-07-03 20:39:00,839 West St, Seattle,WA,98101 +232373,AAA Batteries (4-pack),2,2.99,2019-07-24 23:10:00,476 2nd St, San Francisco,CA,94016 +232374,Macbook Pro Laptop,1,1700.0,2019-07-24 20:17:00,262 Dogwood St, San Francisco,CA,94016 +232375,AA Batteries (4-pack),3,3.84,2019-07-11 08:59:00,732 Willow St, San Francisco,CA,94016 +232376,Lightning Charging Cable,1,14.95,2019-07-25 10:44:00,687 1st St, San Francisco,CA,94016 +232377,27in 4K Gaming Monitor,1,389.99,2019-07-31 15:36:00,292 Lincoln St, Boston,MA,02215 +232378,AAA Batteries (4-pack),1,2.99,2019-07-08 10:29:00,468 Wilson St, New York City,NY,10001 +232379,20in Monitor,1,109.99,2019-07-06 23:53:00,864 2nd St, San Francisco,CA,94016 +232380,Apple Airpods Headphones,1,150.0,2019-07-27 07:04:00,551 Elm St, Dallas,TX,75001 +232381,AA Batteries (4-pack),2,3.84,2019-07-30 17:42:00,466 Jackson St, New York City,NY,10001 +232382,20in Monitor,1,109.99,2019-07-13 01:36:00,4 Hickory St, San Francisco,CA,94016 +232383,Bose SoundSport Headphones,1,99.99,2019-07-10 11:12:00,224 6th St, Boston,MA,02215 +232384,Bose SoundSport Headphones,1,99.99,2019-07-25 02:26:00,100 14th St, Atlanta,GA,30301 +232385,iPhone,1,700.0,2019-07-01 13:24:00,615 North St, Atlanta,GA,30301 +232386,AAA Batteries (4-pack),1,2.99,2019-07-03 19:50:00,69 Spruce St, Boston,MA,02215 +232387,AA Batteries (4-pack),1,3.84,2019-07-30 11:17:00,435 Willow St, Boston,MA,02215 +232388,Apple Airpods Headphones,1,150.0,2019-07-26 12:08:00,729 Walnut St, Austin,TX,73301 +232389,Lightning Charging Cable,1,14.95,2019-07-31 23:10:00,895 Madison St, Atlanta,GA,30301 +232390,USB-C Charging Cable,1,11.95,2019-07-25 14:17:00,664 Meadow St, Boston,MA,02215 +232391,Bose SoundSport Headphones,1,99.99,2019-07-05 17:54:00,893 10th St, Boston,MA,02215 +232392,AA Batteries (4-pack),1,3.84,2019-07-16 08:32:00,18 Center St, Los Angeles,CA,90001 +232393,Apple Airpods Headphones,1,150.0,2019-07-07 11:38:00,176 Park St, Los Angeles,CA,90001 +232394,Wired Headphones,1,11.99,2019-07-08 08:17:00,551 Forest St, Portland,ME,04101 +232395,27in 4K Gaming Monitor,1,389.99,2019-07-16 14:03:00,506 Main St, San Francisco,CA,94016 +232396,Wired Headphones,1,11.99,2019-07-01 14:47:00,227 Johnson St, San Francisco,CA,94016 +232397,USB-C Charging Cable,1,11.95,2019-07-15 09:58:00,987 Church St, San Francisco,CA,94016 +232398,Lightning Charging Cable,1,14.95,2019-07-05 22:09:00,578 5th St, San Francisco,CA,94016 +232399,AA Batteries (4-pack),1,3.84,2019-07-10 21:56:00,722 14th St, San Francisco,CA,94016 +232400,34in Ultrawide Monitor,1,379.99,2019-07-28 20:14:00,933 4th St, Seattle,WA,98101 +232401,Lightning Charging Cable,1,14.95,2019-07-02 16:09:00,377 Spruce St, New York City,NY,10001 +232402,AAA Batteries (4-pack),2,2.99,2019-07-31 17:04:00,636 North St, Portland,OR,97035 +232403,iPhone,1,700.0,2019-07-08 23:10:00,340 Willow St, Los Angeles,CA,90001 +232404,Vareebadd Phone,1,400.0,2019-07-21 20:03:00,345 13th St, Atlanta,GA,30301 +232405,Wired Headphones,1,11.99,2019-07-09 08:24:00,716 Maple St, Portland,OR,97035 +232406,USB-C Charging Cable,1,11.95,2019-07-27 21:25:00,257 14th St, Boston,MA,02215 +232407,Vareebadd Phone,1,400.0,2019-07-17 14:44:00,413 Hill St, San Francisco,CA,94016 +232408,Flatscreen TV,1,300.0,2019-07-22 19:15:00,7 Hill St, Seattle,WA,98101 +232409,Bose SoundSport Headphones,1,99.99,2019-07-31 10:43:00,881 Lake St, New York City,NY,10001 +232410,AA Batteries (4-pack),1,3.84,2019-07-04 00:58:00,667 Jefferson St, San Francisco,CA,94016 +232411,Bose SoundSport Headphones,1,99.99,2019-07-24 17:45:00,18 13th St, Boston,MA,02215 +232412,34in Ultrawide Monitor,1,379.99,2019-07-21 12:59:00,785 South St, Seattle,WA,98101 +232413,Lightning Charging Cable,1,14.95,2019-07-07 13:38:00,307 4th St, New York City,NY,10001 +232414,Apple Airpods Headphones,1,150.0,2019-07-10 13:20:00,102 Park St, Austin,TX,73301 +232415,Google Phone,1,600.0,2019-07-21 11:11:00,307 Chestnut St, Los Angeles,CA,90001 +232416,Vareebadd Phone,1,400.0,2019-07-24 06:45:00,544 1st St, Boston,MA,02215 +232417,AA Batteries (4-pack),2,3.84,2019-07-12 16:12:00,510 West St, San Francisco,CA,94016 +232418,Wired Headphones,1,11.99,2019-07-31 09:01:00,938 7th St, New York City,NY,10001 +232419,USB-C Charging Cable,1,11.95,2019-07-17 15:03:00,11 14th St, New York City,NY,10001 +232420,Wired Headphones,1,11.99,2019-07-04 13:43:00,500 Lakeview St, San Francisco,CA,94016 +232421,USB-C Charging Cable,1,11.95,2019-07-13 03:38:00,524 14th St, San Francisco,CA,94016 +232422,USB-C Charging Cable,1,11.95,2019-07-12 14:15:00,945 Lakeview St, Los Angeles,CA,90001 +232423,iPhone,1,700.0,2019-07-23 11:13:00,9 1st St, San Francisco,CA,94016 +232423,Lightning Charging Cable,1,14.95,2019-07-23 11:13:00,9 1st St, San Francisco,CA,94016 +232424,Macbook Pro Laptop,1,1700.0,2019-07-10 20:18:00,607 6th St, San Francisco,CA,94016 +232425,AAA Batteries (4-pack),2,2.99,2019-07-06 15:07:00,417 14th St, San Francisco,CA,94016 +232426,20in Monitor,1,109.99,2019-07-24 16:43:00,234 Park St, Atlanta,GA,30301 +232426,Google Phone,1,600.0,2019-07-24 16:43:00,234 Park St, Atlanta,GA,30301 +232427,AA Batteries (4-pack),1,3.84,2019-07-30 10:46:00,996 Jackson St, Seattle,WA,98101 +232428,AA Batteries (4-pack),1,3.84,2019-07-24 22:04:00,342 Center St, New York City,NY,10001 +232429,iPhone,1,700.0,2019-07-19 10:39:00,614 Adams St, San Francisco,CA,94016 +232430,LG Dryer,1,600.0,2019-07-27 09:18:00,486 Washington St, Los Angeles,CA,90001 +232431,USB-C Charging Cable,1,11.95,2019-07-22 21:01:00,117 9th St, Seattle,WA,98101 +232432,AAA Batteries (4-pack),4,2.99,2019-07-03 09:54:00,617 Hickory St, Seattle,WA,98101 +232433,AA Batteries (4-pack),2,3.84,2019-07-15 16:44:00,75 Meadow St, San Francisco,CA,94016 +232434,AA Batteries (4-pack),1,3.84,2019-07-24 19:41:00,896 Center St, San Francisco,CA,94016 +232435,USB-C Charging Cable,1,11.95,2019-07-01 14:33:00,467 Lakeview St, San Francisco,CA,94016 +232436,iPhone,1,700.0,2019-07-18 20:11:00,913 Chestnut St, New York City,NY,10001 +232437,AA Batteries (4-pack),1,3.84,2019-07-30 13:30:00,449 12th St, New York City,NY,10001 +232438,Apple Airpods Headphones,1,150.0,2019-07-01 19:38:00,943 Elm St, San Francisco,CA,94016 +232439,AAA Batteries (4-pack),1,2.99,2019-07-13 10:57:00,731 Madison St, Los Angeles,CA,90001 +232440,Apple Airpods Headphones,1,150.0,2019-07-18 16:06:00,919 North St, San Francisco,CA,94016 +232441,Wired Headphones,1,11.99,2019-07-15 18:15:00,941 Washington St, New York City,NY,10001 +232442,USB-C Charging Cable,1,11.95,2019-07-13 20:04:00,986 Church St, San Francisco,CA,94016 +232443,AAA Batteries (4-pack),1,2.99,2019-07-16 20:13:00,889 4th St, San Francisco,CA,94016 +232444,34in Ultrawide Monitor,1,379.99,2019-07-11 20:47:00,914 Elm St, Dallas,TX,75001 +232445,27in FHD Monitor,1,149.99,2019-07-22 21:14:00,679 Hill St, Boston,MA,02215 +232446,USB-C Charging Cable,1,11.95,2019-07-25 09:56:00,42 North St, New York City,NY,10001 +232447,Bose SoundSport Headphones,1,99.99,2019-07-05 15:31:00,213 12th St, San Francisco,CA,94016 +232448,Macbook Pro Laptop,1,1700.0,2019-07-10 17:28:00,431 Chestnut St, San Francisco,CA,94016 +232449,USB-C Charging Cable,1,11.95,2019-07-26 13:26:00,555 Wilson St, Atlanta,GA,30301 +232450,AAA Batteries (4-pack),3,2.99,2019-07-13 21:45:00,642 4th St, Atlanta,GA,30301 +232451,27in 4K Gaming Monitor,1,389.99,2019-07-26 09:18:00,546 10th St, San Francisco,CA,94016 +232452,USB-C Charging Cable,1,11.95,2019-07-23 11:23:00,673 Chestnut St, San Francisco,CA,94016 +232453,AAA Batteries (4-pack),1,2.99,2019-07-08 12:07:00,946 2nd St, Los Angeles,CA,90001 +232454,USB-C Charging Cable,1,11.95,2019-07-28 19:41:00,870 Church St, Atlanta,GA,30301 +232455,AA Batteries (4-pack),1,3.84,2019-07-06 09:34:00,213 6th St, Boston,MA,02215 +232456,AA Batteries (4-pack),1,3.84,2019-07-05 15:32:00,40 Center St, New York City,NY,10001 +232457,AAA Batteries (4-pack),1,2.99,2019-07-25 06:13:00,584 Meadow St, New York City,NY,10001 +232458,Wired Headphones,1,11.99,2019-07-05 08:33:00,518 Jackson St, Atlanta,GA,30301 +232459,AA Batteries (4-pack),2,3.84,2019-07-13 22:39:00,778 1st St, Seattle,WA,98101 +232460,Vareebadd Phone,1,400.0,2019-07-14 13:45:00,634 14th St, Atlanta,GA,30301 +232461,AA Batteries (4-pack),1,3.84,2019-07-30 17:08:00,163 13th St, San Francisco,CA,94016 +232462,AA Batteries (4-pack),1,3.84,2019-07-06 05:52:00,226 2nd St, San Francisco,CA,94016 +232463,Wired Headphones,1,11.99,2019-07-15 17:04:00,622 Park St, San Francisco,CA,94016 +232464,Apple Airpods Headphones,1,150.0,2019-07-21 18:13:00,342 Park St, New York City,NY,10001 +232465,Lightning Charging Cable,1,14.95,2019-07-31 17:14:00,895 River St, Portland,OR,97035 +232466,ThinkPad Laptop,1,999.99,2019-07-11 22:46:00,447 Walnut St, New York City,NY,10001 +232467,Wired Headphones,2,11.99,2019-07-19 16:38:00,750 Jefferson St, San Francisco,CA,94016 +232468,Wired Headphones,1,11.99,2019-07-22 12:43:00,925 8th St, New York City,NY,10001 +232469,34in Ultrawide Monitor,1,379.99,2019-07-17 17:46:00,627 11th St, Atlanta,GA,30301 +232470,iPhone,1,700.0,2019-07-09 18:50:00,249 Lake St, Portland,OR,97035 +232471,Lightning Charging Cable,1,14.95,2019-07-28 17:45:00,940 8th St, Los Angeles,CA,90001 +232472,USB-C Charging Cable,1,11.95,2019-07-09 11:32:00,767 Church St, San Francisco,CA,94016 +232473,AAA Batteries (4-pack),2,2.99,2019-07-15 14:31:00,120 Cherry St, Atlanta,GA,30301 +232474,AAA Batteries (4-pack),1,2.99,2019-07-31 09:56:00,415 13th St, Dallas,TX,75001 +232475,Bose SoundSport Headphones,1,99.99,2019-07-06 18:04:00,179 11th St, Los Angeles,CA,90001 +232476,Apple Airpods Headphones,1,150.0,2019-07-11 16:19:00,163 River St, Atlanta,GA,30301 +232477,AAA Batteries (4-pack),2,2.99,2019-07-07 22:23:00,729 Ridge St, San Francisco,CA,94016 +232478,27in 4K Gaming Monitor,1,389.99,2019-07-16 19:57:00,682 North St, New York City,NY,10001 +232479,27in FHD Monitor,1,149.99,2019-07-17 09:06:00,255 Madison St, Dallas,TX,75001 +232480,Bose SoundSport Headphones,1,99.99,2019-07-20 20:56:00,965 West St, New York City,NY,10001 +232481,USB-C Charging Cable,1,11.95,2019-07-24 21:30:00,999 Dogwood St, San Francisco,CA,94016 +232482,AAA Batteries (4-pack),1,2.99,2019-07-15 18:34:00,225 South St, San Francisco,CA,94016 +232483,USB-C Charging Cable,1,11.95,2019-07-29 16:55:00,541 Dogwood St, Los Angeles,CA,90001 +232484,20in Monitor,1,109.99,2019-07-05 09:44:00,105 13th St, Austin,TX,73301 +232485,Wired Headphones,1,11.99,2019-07-11 18:03:00,753 Dogwood St, San Francisco,CA,94016 +232486,AAA Batteries (4-pack),1,2.99,2019-07-26 12:04:00,429 West St, New York City,NY,10001 +232487,Wired Headphones,1,11.99,2019-07-22 15:51:00,620 Willow St, San Francisco,CA,94016 +232488,Macbook Pro Laptop,1,1700.0,2019-07-09 00:00:00,763 9th St, Los Angeles,CA,90001 +232489,AAA Batteries (4-pack),2,2.99,2019-07-08 18:03:00,883 Washington St, Boston,MA,02215 +232490,27in FHD Monitor,1,149.99,2019-07-23 12:50:00,37 11th St, Portland,OR,97035 +232491,Apple Airpods Headphones,1,150.0,2019-07-05 14:48:00,754 Forest St, Los Angeles,CA,90001 +232492,Google Phone,1,600.0,2019-07-12 18:48:00,961 13th St, San Francisco,CA,94016 +232493,Apple Airpods Headphones,1,150.0,2019-07-15 13:56:00,129 Madison St, Boston,MA,02215 +232494,AA Batteries (4-pack),1,3.84,2019-07-29 16:43:00,37 North St, San Francisco,CA,94016 +232495,20in Monitor,1,109.99,2019-07-03 22:52:00,169 Spruce St, New York City,NY,10001 +232496,USB-C Charging Cable,1,11.95,2019-07-11 19:27:00,711 4th St, Atlanta,GA,30301 +232497,Wired Headphones,1,11.99,2019-07-02 22:55:00,951 Hickory St, Portland,OR,97035 +232498,AA Batteries (4-pack),1,3.84,2019-07-08 21:42:00,543 1st St, Boston,MA,02215 +232499,USB-C Charging Cable,1,11.95,2019-07-15 00:26:00,847 Adams St, Portland,OR,97035 +232500,Wired Headphones,1,11.99,2019-07-25 22:12:00,928 Forest St, Atlanta,GA,30301 +232501,AA Batteries (4-pack),3,3.84,2019-07-20 09:29:00,485 Hill St, Los Angeles,CA,90001 +232502,AAA Batteries (4-pack),5,2.99,2019-07-31 05:47:00,608 Ridge St, San Francisco,CA,94016 +232503,Lightning Charging Cable,1,14.95,2019-07-20 18:47:00,835 Chestnut St, San Francisco,CA,94016 +232504,27in FHD Monitor,1,149.99,2019-07-28 08:21:00,574 Adams St, Dallas,TX,75001 +232505,27in FHD Monitor,1,149.99,2019-07-22 18:20:00,986 Wilson St, Atlanta,GA,30301 +232505,Wired Headphones,1,11.99,2019-07-22 18:20:00,986 Wilson St, Atlanta,GA,30301 +232506,iPhone,1,700.0,2019-07-10 06:01:00,832 Hickory St, Boston,MA,02215 +232507,USB-C Charging Cable,1,11.95,2019-07-19 08:25:00,891 Dogwood St, San Francisco,CA,94016 +232508,AA Batteries (4-pack),2,3.84,2019-07-09 19:04:00,868 Pine St, New York City,NY,10001 +232509,27in FHD Monitor,1,149.99,2019-07-15 13:35:00,6 Jefferson St, New York City,NY,10001 +232510,Apple Airpods Headphones,1,150.0,2019-07-19 20:27:00,826 Dogwood St, Dallas,TX,75001 +232511,Lightning Charging Cable,1,14.95,2019-07-21 12:20:00,576 Hickory St, New York City,NY,10001 +232512,Wired Headphones,1,11.99,2019-07-15 20:46:00,867 10th St, New York City,NY,10001 +232513,27in 4K Gaming Monitor,1,389.99,2019-07-31 19:58:00,696 Lake St, Atlanta,GA,30301 +232514,AAA Batteries (4-pack),4,2.99,2019-07-08 13:06:00,379 Chestnut St, New York City,NY,10001 +232515,Bose SoundSport Headphones,1,99.99,2019-07-22 12:49:00,67 Dogwood St, Dallas,TX,75001 +232516,Wired Headphones,1,11.99,2019-07-24 15:29:00,191 Cherry St, Dallas,TX,75001 +232517,Bose SoundSport Headphones,1,99.99,2019-07-01 21:08:00,156 13th St, Atlanta,GA,30301 +232518,Apple Airpods Headphones,1,150.0,2019-07-15 22:05:00,979 Center St, San Francisco,CA,94016 +232519,Bose SoundSport Headphones,1,99.99,2019-07-15 20:46:00,276 12th St, Seattle,WA,98101 +232520,Vareebadd Phone,1,400.0,2019-07-23 19:17:00,279 Lincoln St, San Francisco,CA,94016 +232521,USB-C Charging Cable,1,11.95,2019-07-16 12:32:00,394 Dogwood St, San Francisco,CA,94016 +232522,USB-C Charging Cable,1,11.95,2019-07-03 20:14:00,231 10th St, Dallas,TX,75001 +232523,Lightning Charging Cable,1,14.95,2019-07-19 20:05:00,7 River St, San Francisco,CA,94016 +232524,Wired Headphones,1,11.99,2019-07-01 09:12:00,513 Washington St, Seattle,WA,98101 +232525,USB-C Charging Cable,1,11.95,2019-07-30 01:51:00,326 Main St, Los Angeles,CA,90001 +232526,AA Batteries (4-pack),1,3.84,2019-07-13 19:25:00,60 Washington St, New York City,NY,10001 +232527,AA Batteries (4-pack),1,3.84,2019-07-10 19:18:00,101 Chestnut St, Los Angeles,CA,90001 +232528,USB-C Charging Cable,1,11.95,2019-07-24 18:52:00,638 12th St, Boston,MA,02215 +232529,34in Ultrawide Monitor,1,379.99,2019-07-04 16:10:00,536 Walnut St, New York City,NY,10001 +232530,Wired Headphones,1,11.99,2019-07-03 21:32:00,274 Spruce St, Dallas,TX,75001 +232531,Wired Headphones,1,11.99,2019-07-03 15:18:00,277 Cherry St, New York City,NY,10001 +232532,Wired Headphones,1,11.99,2019-07-24 20:05:00,163 Forest St, Portland,OR,97035 +232533,Wired Headphones,1,11.99,2019-07-21 17:53:00,164 West St, Los Angeles,CA,90001 +232534,Lightning Charging Cable,1,14.95,2019-07-16 08:26:00,915 14th St, Atlanta,GA,30301 +232535,USB-C Charging Cable,1,11.95,2019-07-14 15:50:00,242 5th St, Boston,MA,02215 +232536,Bose SoundSport Headphones,1,99.99,2019-07-27 07:44:00,239 14th St, Los Angeles,CA,90001 +232537,Lightning Charging Cable,1,14.95,2019-07-14 22:19:00,433 Lake St, Los Angeles,CA,90001 +232538,Vareebadd Phone,1,400.0,2019-07-09 21:12:00,420 Hill St, New York City,NY,10001 +232539,Lightning Charging Cable,1,14.95,2019-07-25 04:45:00,839 10th St, San Francisco,CA,94016 +232540,USB-C Charging Cable,1,11.95,2019-07-08 00:11:00,880 Hickory St, Los Angeles,CA,90001 +232541,Wired Headphones,1,11.99,2019-07-22 11:32:00,484 Highland St, Los Angeles,CA,90001 +232542,Apple Airpods Headphones,1,150.0,2019-07-17 14:10:00,808 Willow St, Dallas,TX,75001 +232543,AA Batteries (4-pack),1,3.84,2019-07-15 14:09:00,238 13th St, San Francisco,CA,94016 +232544,27in FHD Monitor,1,149.99,2019-07-21 06:31:00,272 Willow St, Seattle,WA,98101 +232545,Apple Airpods Headphones,1,150.0,2019-07-04 09:43:00,123 14th St, Los Angeles,CA,90001 +232546,Wired Headphones,1,11.99,2019-07-22 09:41:00,600 Elm St, San Francisco,CA,94016 +232547,USB-C Charging Cable,1,11.95,2019-07-30 23:09:00,208 Cherry St, Austin,TX,73301 +232548,Flatscreen TV,1,300.0,2019-07-31 21:13:00,75 Chestnut St, Seattle,WA,98101 +232549,Wired Headphones,1,11.99,2019-07-25 21:19:00,196 Walnut St, New York City,NY,10001 +232550,27in FHD Monitor,1,149.99,2019-07-14 12:40:00,236 Lake St, Portland,OR,97035 +232551,Lightning Charging Cable,1,14.95,2019-07-05 21:14:00,666 2nd St, Los Angeles,CA,90001 +232552,Flatscreen TV,1,300.0,2019-07-05 10:32:00,237 Johnson St, San Francisco,CA,94016 +232553,USB-C Charging Cable,1,11.95,2019-07-03 13:10:00,11 Spruce St, Boston,MA,02215 +232554,Apple Airpods Headphones,1,150.0,2019-07-22 16:47:00,367 Center St, New York City,NY,10001 +232555,AA Batteries (4-pack),2,3.84,2019-07-03 20:10:00,910 2nd St, San Francisco,CA,94016 +232556,AAA Batteries (4-pack),1,2.99,2019-07-28 14:33:00,535 11th St, San Francisco,CA,94016 +232557,Apple Airpods Headphones,1,150.0,2019-07-22 22:16:00,533 12th St, Seattle,WA,98101 +232558,Apple Airpods Headphones,1,150.0,2019-07-14 11:33:00,94 2nd St, San Francisco,CA,94016 +232559,AA Batteries (4-pack),1,3.84,2019-07-02 21:41:00,583 Hill St, New York City,NY,10001 +232560,ThinkPad Laptop,1,999.99,2019-07-05 19:53:00,870 Park St, San Francisco,CA,94016 +232561,USB-C Charging Cable,1,11.95,2019-07-24 18:05:00,304 2nd St, New York City,NY,10001 +232562,ThinkPad Laptop,1,999.99,2019-07-22 14:08:00,410 Adams St, San Francisco,CA,94016 +232563,Apple Airpods Headphones,1,150.0,2019-07-20 13:30:00,936 South St, San Francisco,CA,94016 +232563,AA Batteries (4-pack),1,3.84,2019-07-20 13:30:00,936 South St, San Francisco,CA,94016 +232564,AA Batteries (4-pack),1,3.84,2019-07-05 16:03:00,311 2nd St, Boston,MA,02215 +232565,USB-C Charging Cable,1,11.95,2019-07-26 23:12:00,857 Willow St, San Francisco,CA,94016 +232566,AA Batteries (4-pack),1,3.84,2019-07-30 20:23:00,56 10th St, New York City,NY,10001 +232567,AAA Batteries (4-pack),3,2.99,2019-07-26 12:55:00,712 Cedar St, San Francisco,CA,94016 +232568,27in FHD Monitor,1,149.99,2019-07-01 18:51:00,536 West St, Los Angeles,CA,90001 +232569,USB-C Charging Cable,2,11.95,2019-07-25 13:34:00,997 Main St, Boston,MA,02215 +232570,USB-C Charging Cable,1,11.95,2019-07-10 12:32:00,655 Cedar St, Los Angeles,CA,90001 +232571,AA Batteries (4-pack),2,3.84,2019-07-23 14:27:00,607 Forest St, San Francisco,CA,94016 +232572,27in FHD Monitor,1,149.99,2019-07-19 21:53:00,976 Hickory St, Atlanta,GA,30301 +232573,ThinkPad Laptop,1,999.99,2019-07-11 20:35:00,812 Lake St, Los Angeles,CA,90001 +232574,Bose SoundSport Headphones,1,99.99,2019-07-07 17:45:00,195 Washington St, New York City,NY,10001 +232575,Wired Headphones,1,11.99,2019-07-27 20:20:00,208 South St, Seattle,WA,98101 +232576,Bose SoundSport Headphones,1,99.99,2019-07-13 00:25:00,208 10th St, New York City,NY,10001 +232577,AAA Batteries (4-pack),3,2.99,2019-07-23 20:17:00,786 6th St, New York City,NY,10001 +232578,AA Batteries (4-pack),2,3.84,2019-07-20 14:04:00,787 Elm St, Austin,TX,73301 +232579,Wired Headphones,1,11.99,2019-07-22 19:59:00,827 Chestnut St, Austin,TX,73301 +232580,AA Batteries (4-pack),3,3.84,2019-07-12 17:15:00,853 Washington St, Boston,MA,02215 +232581,ThinkPad Laptop,1,999.99,2019-07-20 12:12:00,488 Main St, Austin,TX,73301 +232582,Google Phone,1,600.0,2019-07-18 18:39:00,181 Wilson St, Dallas,TX,75001 +232583,AAA Batteries (4-pack),4,2.99,2019-07-12 23:19:00,114 Church St, New York City,NY,10001 +232584,20in Monitor,1,109.99,2019-07-29 12:57:00,363 Meadow St, Boston,MA,02215 +232585,AAA Batteries (4-pack),1,2.99,2019-07-06 13:35:00,447 10th St, Portland,ME,04101 +232586,Flatscreen TV,1,300.0,2019-07-22 01:05:00,583 9th St, New York City,NY,10001 +232587,AA Batteries (4-pack),1,3.84,2019-07-22 15:59:00,123 Jackson St, San Francisco,CA,94016 +232588,LG Dryer,1,600.0,2019-07-21 19:56:00,118 13th St, San Francisco,CA,94016 +232589,Lightning Charging Cable,1,14.95,2019-07-17 17:30:00,155 Center St, Austin,TX,73301 +232590,ThinkPad Laptop,1,999.99,2019-07-11 09:44:00,781 13th St, San Francisco,CA,94016 +232591,AAA Batteries (4-pack),3,2.99,2019-07-27 20:25:00,689 Madison St, New York City,NY,10001 +232592,Google Phone,1,600.0,2019-07-12 08:35:00,469 Dogwood St, Los Angeles,CA,90001 +232593,27in FHD Monitor,1,149.99,2019-07-29 13:07:00,523 10th St, New York City,NY,10001 +232594,Lightning Charging Cable,1,14.95,2019-07-29 15:53:00,168 Washington St, Portland,ME,04101 +232595,ThinkPad Laptop,1,999.99,2019-07-12 09:17:00,625 Meadow St, Los Angeles,CA,90001 +232596,AA Batteries (4-pack),1,3.84,2019-07-03 08:21:00,510 Dogwood St, San Francisco,CA,94016 +232597,27in FHD Monitor,1,149.99,2019-07-18 21:40:00,956 6th St, Austin,TX,73301 +232598,34in Ultrawide Monitor,1,379.99,2019-07-10 08:15:00,910 Elm St, Los Angeles,CA,90001 +232599,Wired Headphones,1,11.99,2019-07-09 22:15:00,507 Adams St, New York City,NY,10001 +232600,AA Batteries (4-pack),1,3.84,2019-07-10 11:51:00,52 Jefferson St, New York City,NY,10001 +232601,AA Batteries (4-pack),4,3.84,2019-07-16 12:58:00,303 13th St, Boston,MA,02215 +232602,Apple Airpods Headphones,1,150.0,2019-07-08 14:51:00,742 14th St, Atlanta,GA,30301 +232603,Wired Headphones,1,11.99,2019-07-26 14:55:00,221 Pine St, San Francisco,CA,94016 +232604,USB-C Charging Cable,1,11.95,2019-07-14 11:07:00,524 5th St, New York City,NY,10001 +232605,20in Monitor,1,109.99,2019-07-12 07:58:00,593 Jefferson St, New York City,NY,10001 +232606,USB-C Charging Cable,1,11.95,2019-07-10 18:26:00,496 Wilson St, Atlanta,GA,30301 +232607,Lightning Charging Cable,1,14.95,2019-07-27 21:33:00,202 Jefferson St, Boston,MA,02215 +232608,27in 4K Gaming Monitor,1,389.99,2019-07-11 14:45:00,985 Sunset St, Los Angeles,CA,90001 +232609,Bose SoundSport Headphones,1,99.99,2019-07-04 17:11:00,183 Ridge St, San Francisco,CA,94016 +232610,34in Ultrawide Monitor,1,379.99,2019-07-13 12:03:00,83 Center St, Portland,OR,97035 +232611,27in FHD Monitor,1,149.99,2019-07-28 21:11:00,565 2nd St, Atlanta,GA,30301 +232612,Lightning Charging Cable,1,14.95,2019-07-07 18:47:00,676 Chestnut St, San Francisco,CA,94016 +232613,ThinkPad Laptop,1,999.99,2019-07-25 07:45:00,766 North St, Los Angeles,CA,90001 +232614,Apple Airpods Headphones,1,150.0,2019-07-02 21:18:00,868 West St, Boston,MA,02215 +232615,Macbook Pro Laptop,1,1700.0,2019-07-04 14:27:00,641 Maple St, Los Angeles,CA,90001 +232616,AAA Batteries (4-pack),1,2.99,2019-07-30 11:33:00,309 Johnson St, San Francisco,CA,94016 +232617,Apple Airpods Headphones,1,150.0,2019-07-12 12:51:00,850 Madison St, San Francisco,CA,94016 +232618,Bose SoundSport Headphones,1,99.99,2019-07-25 23:01:00,928 9th St, New York City,NY,10001 +232619,Lightning Charging Cable,1,14.95,2019-07-01 08:34:00,412 Johnson St, Atlanta,GA,30301 +232620,AAA Batteries (4-pack),1,2.99,2019-07-18 16:01:00,261 2nd St, San Francisco,CA,94016 +232621,iPhone,1,700.0,2019-07-30 18:27:00,159 Walnut St, New York City,NY,10001 +232622,Flatscreen TV,1,300.0,2019-07-19 13:30:00,703 Hickory St, Dallas,TX,75001 +232623,27in 4K Gaming Monitor,1,389.99,2019-07-12 16:30:00,581 Church St, Los Angeles,CA,90001 +232624,USB-C Charging Cable,1,11.95,2019-07-12 17:30:00,551 Wilson St, San Francisco,CA,94016 +232625,Bose SoundSport Headphones,1,99.99,2019-07-11 20:47:00,967 6th St, Portland,OR,97035 +232626,Lightning Charging Cable,1,14.95,2019-07-22 20:55:00,53 9th St, Atlanta,GA,30301 +232627,Wired Headphones,1,11.99,2019-07-06 08:39:00,545 Adams St, San Francisco,CA,94016 +232628,AAA Batteries (4-pack),1,2.99,2019-07-25 07:00:00,523 Hill St, New York City,NY,10001 +232629,34in Ultrawide Monitor,1,379.99,2019-07-31 12:22:00,963 West St, New York City,NY,10001 +232630,ThinkPad Laptop,1,999.99,2019-07-03 11:06:00,604 13th St, San Francisco,CA,94016 +232631,Wired Headphones,1,11.99,2019-07-21 14:54:00,548 7th St, Atlanta,GA,30301 +232632,Wired Headphones,1,11.99,2019-07-13 17:14:00,70 West St, Dallas,TX,75001 +232633,USB-C Charging Cable,1,11.95,2019-07-14 10:55:00,756 Maple St, Atlanta,GA,30301 +232634,Lightning Charging Cable,1,14.95,2019-07-14 08:12:00,577 Maple St, Los Angeles,CA,90001 +232635,Lightning Charging Cable,1,14.95,2019-07-08 12:37:00,837 Adams St, San Francisco,CA,94016 +232636,ThinkPad Laptop,1,999.99,2019-07-05 21:42:00,78 10th St, Boston,MA,02215 +232637,27in FHD Monitor,1,149.99,2019-07-08 17:57:00,13 West St, Los Angeles,CA,90001 +232638,Lightning Charging Cable,1,14.95,2019-07-09 18:30:00,759 5th St, San Francisco,CA,94016 +232639,Apple Airpods Headphones,1,150.0,2019-07-18 16:02:00,505 5th St, Seattle,WA,98101 +232640,20in Monitor,1,109.99,2019-07-16 14:27:00,15 Lincoln St, San Francisco,CA,94016 +232641,34in Ultrawide Monitor,1,379.99,2019-07-17 19:54:00,981 Highland St, Los Angeles,CA,90001 +232642,27in 4K Gaming Monitor,1,389.99,2019-07-05 13:37:00,69 Jefferson St, New York City,NY,10001 +232643,AAA Batteries (4-pack),1,2.99,2019-07-24 16:19:00,297 West St, San Francisco,CA,94016 +232644,Wired Headphones,1,11.99,2019-07-10 22:39:00,996 Madison St, Seattle,WA,98101 +232645,AAA Batteries (4-pack),2,2.99,2019-07-01 19:46:00,782 Madison St, New York City,NY,10001 +232646,USB-C Charging Cable,1,11.95,2019-07-01 12:13:00,532 Highland St, Boston,MA,02215 +232647,Macbook Pro Laptop,1,1700.0,2019-07-05 19:01:00,483 Forest St, New York City,NY,10001 +232648,AAA Batteries (4-pack),1,2.99,2019-07-31 22:25:00,523 Madison St, New York City,NY,10001 +232649,34in Ultrawide Monitor,1,379.99,2019-07-24 20:12:00,931 River St, Seattle,WA,98101 +232650,AA Batteries (4-pack),1,3.84,2019-07-27 02:40:00,941 12th St, Atlanta,GA,30301 +232651,Apple Airpods Headphones,1,150.0,2019-07-12 19:03:00,557 10th St, Boston,MA,02215 +232652,Apple Airpods Headphones,1,150.0,2019-07-05 16:55:00,47 Cherry St, San Francisco,CA,94016 +232653,Wired Headphones,2,11.99,2019-07-31 17:07:00,291 Chestnut St, San Francisco,CA,94016 +232654,AA Batteries (4-pack),2,3.84,2019-07-23 21:41:00,233 Johnson St, Boston,MA,02215 +232655,Bose SoundSport Headphones,1,99.99,2019-07-22 16:57:00,297 Wilson St, New York City,NY,10001 +232656,AAA Batteries (4-pack),1,2.99,2019-07-14 18:05:00,729 9th St, San Francisco,CA,94016 +232657,Wired Headphones,2,11.99,2019-07-01 18:12:00,257 9th St, Seattle,WA,98101 +232658,27in 4K Gaming Monitor,1,389.99,2019-07-16 13:51:00,171 12th St, Dallas,TX,75001 +232659,AA Batteries (4-pack),1,3.84,2019-07-11 19:47:00,252 14th St, Boston,MA,02215 +232660,AA Batteries (4-pack),1,3.84,2019-07-10 21:22:00,499 West St, Los Angeles,CA,90001 +232661,Flatscreen TV,1,300.0,2019-07-02 21:08:00,261 Madison St, Boston,MA,02215 +232662,27in FHD Monitor,1,149.99,2019-07-30 16:23:00,527 Walnut St, Portland,ME,04101 +232663,AAA Batteries (4-pack),1,2.99,2019-07-31 06:21:00,24 Forest St, San Francisco,CA,94016 +232664,27in FHD Monitor,1,149.99,2019-07-04 08:45:00,576 Spruce St, Seattle,WA,98101 +232665,USB-C Charging Cable,1,11.95,2019-07-09 15:49:00,464 Maple St, Los Angeles,CA,90001 +232666,27in FHD Monitor,1,149.99,2019-07-01 10:20:00,345 Willow St, New York City,NY,10001 +232667,AAA Batteries (4-pack),1,2.99,2019-07-16 19:16:00,49 8th St, Los Angeles,CA,90001 +232668,Lightning Charging Cable,1,14.95,2019-07-30 16:38:00,574 West St, Los Angeles,CA,90001 +232669,USB-C Charging Cable,2,11.95,2019-07-18 19:44:00,781 Meadow St, Dallas,TX,75001 +232670,20in Monitor,1,109.99,2019-07-25 22:36:00,156 Wilson St, Austin,TX,73301 +232671,USB-C Charging Cable,1,11.95,2019-07-23 20:53:00,748 Forest St, Los Angeles,CA,90001 +232672,Google Phone,1,600.0,2019-07-23 18:53:00,930 Johnson St, Boston,MA,02215 +232673,20in Monitor,1,109.99,2019-07-02 09:54:00,853 Meadow St, Seattle,WA,98101 +232674,Bose SoundSport Headphones,1,99.99,2019-07-04 12:14:00,173 Elm St, Seattle,WA,98101 +232675,Wired Headphones,1,11.99,2019-07-19 12:57:00,24 14th St, Dallas,TX,75001 +232676,AA Batteries (4-pack),1,3.84,2019-07-09 17:03:00,325 13th St, Seattle,WA,98101 +232677,Wired Headphones,1,11.99,2019-07-16 11:32:00,837 10th St, Los Angeles,CA,90001 +232678,AA Batteries (4-pack),1,3.84,2019-07-01 15:39:00,766 Jackson St, Seattle,WA,98101 +232679,Flatscreen TV,1,300.0,2019-07-05 18:34:00,371 9th St, Los Angeles,CA,90001 +232680,Wired Headphones,1,11.99,2019-07-04 19:19:00,106 Dogwood St, New York City,NY,10001 +232681,AAA Batteries (4-pack),1,2.99,2019-07-13 04:10:00,847 5th St, Seattle,WA,98101 +232682,AAA Batteries (4-pack),2,2.99,2019-07-04 16:12:00,965 Lincoln St, San Francisco,CA,94016 +232683,AA Batteries (4-pack),1,3.84,2019-07-10 00:30:00,665 River St, San Francisco,CA,94016 +232684,27in 4K Gaming Monitor,1,389.99,2019-07-15 15:34:00,716 Lakeview St, New York City,NY,10001 +232685,AA Batteries (4-pack),2,3.84,2019-07-10 12:54:00,577 7th St, Atlanta,GA,30301 +232686,Google Phone,1,600.0,2019-07-31 17:35:00,990 Ridge St, Los Angeles,CA,90001 +232687,iPhone,1,700.0,2019-07-12 12:36:00,522 Willow St, New York City,NY,10001 +232687,Lightning Charging Cable,1,14.95,2019-07-12 12:36:00,522 Willow St, New York City,NY,10001 +232688,Google Phone,1,600.0,2019-07-15 09:08:00,761 Dogwood St, Dallas,TX,75001 +232689,27in FHD Monitor,1,149.99,2019-07-13 07:10:00,699 South St, Los Angeles,CA,90001 +232690,27in 4K Gaming Monitor,1,389.99,2019-07-03 18:32:00,85 Johnson St, New York City,NY,10001 +232691,AA Batteries (4-pack),1,3.84,2019-07-16 14:12:00,690 Walnut St, New York City,NY,10001 +232692,USB-C Charging Cable,1,11.95,2019-07-18 09:02:00,769 Jefferson St, Los Angeles,CA,90001 +232693,AA Batteries (4-pack),1,3.84,2019-07-26 21:45:00,352 6th St, Los Angeles,CA,90001 +232694,AA Batteries (4-pack),1,3.84,2019-07-12 11:46:00,70 Lincoln St, San Francisco,CA,94016 +232695,AA Batteries (4-pack),1,3.84,2019-07-16 18:06:00,749 Jackson St, Seattle,WA,98101 +232696,Wired Headphones,1,11.99,2019-07-23 17:32:00,642 12th St, Boston,MA,02215 +232697,AAA Batteries (4-pack),1,2.99,2019-07-25 20:09:00,648 Lincoln St, Boston,MA,02215 +232698,Lightning Charging Cable,2,14.95,2019-07-21 12:42:00,348 River St, New York City,NY,10001 +232699,USB-C Charging Cable,1,11.95,2019-07-07 13:39:00,925 12th St, New York City,NY,10001 +232700,Apple Airpods Headphones,1,150.0,2019-07-25 11:02:00,553 Highland St, Portland,OR,97035 +232701,27in FHD Monitor,1,149.99,2019-07-23 08:32:00,694 Jefferson St, San Francisco,CA,94016 +232702,Wired Headphones,2,11.99,2019-07-23 13:33:00,39 1st St, Los Angeles,CA,90001 +232703,AA Batteries (4-pack),1,3.84,2019-07-09 09:41:00,322 Meadow St, Boston,MA,02215 +232704,34in Ultrawide Monitor,1,379.99,2019-07-25 13:57:00,80 6th St, San Francisco,CA,94016 +232705,USB-C Charging Cable,1,11.95,2019-07-13 13:36:00,925 Lakeview St, Seattle,WA,98101 +232706,iPhone,1,700.0,2019-07-19 17:56:00,477 Elm St, Atlanta,GA,30301 +232707,34in Ultrawide Monitor,1,379.99,2019-07-27 13:38:00,724 Hill St, New York City,NY,10001 +232708,Lightning Charging Cable,1,14.95,2019-07-25 11:09:00,907 Highland St, San Francisco,CA,94016 +232709,Wired Headphones,1,11.99,2019-07-19 13:16:00,440 Walnut St, Dallas,TX,75001 +232710,20in Monitor,1,109.99,2019-07-06 18:29:00,64 Adams St, San Francisco,CA,94016 +232711,USB-C Charging Cable,1,11.95,2019-07-14 18:09:00,703 Hill St, Seattle,WA,98101 +232712,34in Ultrawide Monitor,1,379.99,2019-07-28 14:16:00,112 14th St, New York City,NY,10001 +232712,AAA Batteries (4-pack),3,2.99,2019-07-28 14:16:00,112 14th St, New York City,NY,10001 +232713,27in 4K Gaming Monitor,1,389.99,2019-07-06 12:45:00,694 14th St, Boston,MA,02215 +232714,27in FHD Monitor,1,149.99,2019-07-10 06:27:00,826 13th St, Portland,OR,97035 +232715,AA Batteries (4-pack),1,3.84,2019-07-24 15:06:00,115 6th St, Boston,MA,02215 +232716,Wired Headphones,2,11.99,2019-07-30 23:27:00,195 4th St, Los Angeles,CA,90001 +232717,27in 4K Gaming Monitor,1,389.99,2019-07-04 16:35:00,246 Main St, New York City,NY,10001 +232718,USB-C Charging Cable,1,11.95,2019-07-02 22:07:00,353 Main St, Austin,TX,73301 +232719,USB-C Charging Cable,1,11.95,2019-07-15 05:54:00,622 Lincoln St, San Francisco,CA,94016 +232720,AAA Batteries (4-pack),1,2.99,2019-07-06 17:34:00,47 Washington St, San Francisco,CA,94016 +232721,Flatscreen TV,1,300.0,2019-07-24 16:52:00,12 Park St, Portland,OR,97035 +232722,Lightning Charging Cable,1,14.95,2019-07-16 13:00:00,296 Wilson St, Los Angeles,CA,90001 +232723,AAA Batteries (4-pack),1,2.99,2019-07-11 22:33:00,417 South St, Atlanta,GA,30301 +232724,Google Phone,1,600.0,2019-07-03 14:35:00,38 11th St, San Francisco,CA,94016 +232725,AA Batteries (4-pack),1,3.84,2019-07-02 10:25:00,171 Main St, New York City,NY,10001 +232726,Apple Airpods Headphones,1,150.0,2019-07-10 23:29:00,662 6th St, Atlanta,GA,30301 +232727,Bose SoundSport Headphones,1,99.99,2019-07-03 14:34:00,605 Madison St, Austin,TX,73301 +232728,AA Batteries (4-pack),1,3.84,2019-07-03 02:25:00,260 Johnson St, Los Angeles,CA,90001 +232729,Wired Headphones,1,11.99,2019-07-24 13:49:00,503 Lakeview St, Boston,MA,02215 +232730,Bose SoundSport Headphones,1,99.99,2019-07-06 10:26:00,856 Jefferson St, Portland,OR,97035 +232731,AA Batteries (4-pack),1,3.84,2019-07-25 08:58:00,562 9th St, Boston,MA,02215 +232732,AA Batteries (4-pack),1,3.84,2019-07-15 11:21:00,866 Center St, Boston,MA,02215 +232733,USB-C Charging Cable,1,11.95,2019-07-22 23:05:00,741 Meadow St, Boston,MA,02215 +232734,AA Batteries (4-pack),1,3.84,2019-07-03 20:10:00,833 Center St, New York City,NY,10001 +232734,AAA Batteries (4-pack),1,2.99,2019-07-03 20:10:00,833 Center St, New York City,NY,10001 +232735,Flatscreen TV,1,300.0,2019-07-22 16:28:00,891 Lincoln St, San Francisco,CA,94016 +232736,USB-C Charging Cable,1,11.95,2019-07-07 20:26:00,224 8th St, San Francisco,CA,94016 +232737,USB-C Charging Cable,1,11.95,2019-07-24 03:07:00,403 Wilson St, Atlanta,GA,30301 +232738,Wired Headphones,1,11.99,2019-07-25 18:36:00,578 Cedar St, Los Angeles,CA,90001 +232739,AA Batteries (4-pack),2,3.84,2019-07-02 12:05:00,89 Park St, San Francisco,CA,94016 +232740,USB-C Charging Cable,1,11.95,2019-07-28 00:14:00,668 Ridge St, Dallas,TX,75001 +232741,Lightning Charging Cable,1,14.95,2019-07-14 00:08:00,913 Forest St, Los Angeles,CA,90001 +232742,Wired Headphones,1,11.99,2019-07-16 12:17:00,610 14th St, San Francisco,CA,94016 +232743,Wired Headphones,2,11.99,2019-07-11 12:26:00,113 8th St, Austin,TX,73301 +232744,Wired Headphones,1,11.99,2019-07-09 11:26:00,918 Jackson St, Portland,OR,97035 +232745,USB-C Charging Cable,1,11.95,2019-07-02 22:10:00,880 Cherry St, San Francisco,CA,94016 +232746,USB-C Charging Cable,1,11.95,2019-07-28 13:06:00,610 Meadow St, Los Angeles,CA,90001 +232747,AAA Batteries (4-pack),1,2.99,2019-07-05 17:40:00,116 10th St, Boston,MA,02215 +232748,AA Batteries (4-pack),1,3.84,2019-07-20 07:16:00,247 Madison St, Dallas,TX,75001 +232749,USB-C Charging Cable,1,11.95,2019-07-07 21:56:00,67 8th St, San Francisco,CA,94016 +232750,Wired Headphones,1,11.99,2019-07-22 13:53:00,979 Dogwood St, San Francisco,CA,94016 +232751,AA Batteries (4-pack),1,3.84,2019-07-31 18:13:00,646 Adams St, New York City,NY,10001 +232752,iPhone,1,700.0,2019-07-01 19:28:00,810 Highland St, Portland,ME,04101 +232752,Lightning Charging Cable,1,14.95,2019-07-01 19:28:00,810 Highland St, Portland,ME,04101 +232753,Lightning Charging Cable,1,14.95,2019-07-03 12:20:00,248 Church St, San Francisco,CA,94016 +232754,34in Ultrawide Monitor,1,379.99,2019-07-13 20:39:00,448 Jefferson St, San Francisco,CA,94016 +232755,Google Phone,1,600.0,2019-07-29 20:21:00,458 Dogwood St, New York City,NY,10001 +232755,USB-C Charging Cable,2,11.95,2019-07-29 20:21:00,458 Dogwood St, New York City,NY,10001 +232755,Bose SoundSport Headphones,1,99.99,2019-07-29 20:21:00,458 Dogwood St, New York City,NY,10001 +232756,AAA Batteries (4-pack),1,2.99,2019-07-13 18:50:00,797 Wilson St, New York City,NY,10001 +232757,Lightning Charging Cable,1,14.95,2019-07-22 17:04:00,693 Park St, Boston,MA,02215 +232758,Lightning Charging Cable,1,14.95,2019-07-14 01:57:00,939 7th St, Dallas,TX,75001 +232759,AA Batteries (4-pack),1,3.84,2019-07-25 23:41:00,955 10th St, Los Angeles,CA,90001 +232760,Wired Headphones,2,11.99,2019-07-27 17:44:00,927 14th St, Boston,MA,02215 +232760,iPhone,1,700.0,2019-07-27 17:44:00,927 14th St, Boston,MA,02215 +232761,Flatscreen TV,1,300.0,2019-07-22 07:13:00,403 Elm St, Los Angeles,CA,90001 +232762,Macbook Pro Laptop,1,1700.0,2019-07-09 12:46:00,669 Ridge St, New York City,NY,10001 +232763,USB-C Charging Cable,1,11.95,2019-07-22 21:09:00,532 Elm St, San Francisco,CA,94016 +232764,20in Monitor,1,109.99,2019-07-10 12:59:00,762 5th St, New York City,NY,10001 +232765,AA Batteries (4-pack),1,3.84,2019-07-16 10:04:00,977 Hill St, Atlanta,GA,30301 +232766,AAA Batteries (4-pack),1,2.99,2019-07-14 12:20:00,911 Elm St, Los Angeles,CA,90001 +232767,Bose SoundSport Headphones,1,99.99,2019-07-08 23:24:00,732 Cherry St, Los Angeles,CA,90001 +232768,Lightning Charging Cable,1,14.95,2019-07-28 18:22:00,150 River St, San Francisco,CA,94016 +232769,Wired Headphones,1,11.99,2019-07-08 19:34:00,986 Willow St, San Francisco,CA,94016 +232770,Wired Headphones,1,11.99,2019-07-16 01:55:00,799 Hickory St, San Francisco,CA,94016 +232771,Apple Airpods Headphones,1,150.0,2019-07-20 18:07:00,596 Lincoln St, New York City,NY,10001 +232772,Wired Headphones,1,11.99,2019-07-03 15:54:00,438 North St, Los Angeles,CA,90001 +232773,Flatscreen TV,1,300.0,2019-07-13 13:51:00,606 12th St, Boston,MA,02215 +232774,USB-C Charging Cable,1,11.95,2019-07-24 12:09:00,646 Lakeview St, Los Angeles,CA,90001 +232775,USB-C Charging Cable,1,11.95,2019-07-12 07:25:00,359 Willow St, Los Angeles,CA,90001 +232776,34in Ultrawide Monitor,1,379.99,2019-07-08 13:10:00,12 1st St, San Francisco,CA,94016 +232777,USB-C Charging Cable,1,11.95,2019-07-11 19:55:00,930 North St, New York City,NY,10001 +232778,Google Phone,1,600.0,2019-07-05 01:42:00,208 Church St, San Francisco,CA,94016 +232779,iPhone,1,700.0,2019-07-04 19:32:00,789 Lake St, Los Angeles,CA,90001 +232779,Lightning Charging Cable,1,14.95,2019-07-04 19:32:00,789 Lake St, Los Angeles,CA,90001 +232780,AAA Batteries (4-pack),1,2.99,2019-07-14 17:10:00,804 13th St, Los Angeles,CA,90001 +232781,Apple Airpods Headphones,1,150.0,2019-07-06 20:06:00,174 Cedar St, Los Angeles,CA,90001 +232782,USB-C Charging Cable,1,11.95,2019-07-12 19:57:00,716 5th St, San Francisco,CA,94016 +232783,USB-C Charging Cable,1,11.95,2019-07-28 19:54:00,637 14th St, San Francisco,CA,94016 +232784,Macbook Pro Laptop,1,1700.0,2019-07-21 22:10:00,987 Highland St, Portland,ME,04101 +232785,USB-C Charging Cable,1,11.95,2019-07-03 21:36:00,995 Washington St, Boston,MA,02215 +232786,USB-C Charging Cable,1,11.95,2019-07-02 01:29:00,923 Meadow St, Dallas,TX,75001 +232786,Lightning Charging Cable,1,14.95,2019-07-02 01:29:00,923 Meadow St, Dallas,TX,75001 +232787,AAA Batteries (4-pack),2,2.99,2019-07-17 11:04:00,535 Walnut St, Boston,MA,02215 +232788,Wired Headphones,1,11.99,2019-07-10 14:09:00,359 Cherry St, Atlanta,GA,30301 +232789,iPhone,1,700.0,2019-07-27 04:08:00,402 North St, Portland,OR,97035 +232789,Lightning Charging Cable,1,14.95,2019-07-27 04:08:00,402 North St, Portland,OR,97035 +232790,Apple Airpods Headphones,1,150.0,2019-07-09 18:05:00,813 Walnut St, San Francisco,CA,94016 +232791,AAA Batteries (4-pack),1,2.99,2019-07-26 11:40:00,597 2nd St, San Francisco,CA,94016 +232792,34in Ultrawide Monitor,1,379.99,2019-07-07 10:26:00,359 Center St, Los Angeles,CA,90001 +232793,Lightning Charging Cable,1,14.95,2019-07-10 17:29:00,569 Elm St, Atlanta,GA,30301 +232794,Flatscreen TV,1,300.0,2019-07-12 07:57:00,826 Chestnut St, San Francisco,CA,94016 +232795,iPhone,1,700.0,2019-08-01 00:16:00,424 Washington St, San Francisco,CA,94016 +232796,iPhone,1,700.0,2019-07-05 15:19:00,629 Lincoln St, Portland,ME,04101 +232797,Macbook Pro Laptop,1,1700.0,2019-07-01 15:11:00,951 Johnson St, Boston,MA,02215 +232798,Apple Airpods Headphones,1,150.0,2019-07-06 01:28:00,370 West St, San Francisco,CA,94016 +232799,Flatscreen TV,1,300.0,2019-07-11 19:48:00,365 Wilson St, Seattle,WA,98101 +232799,27in FHD Monitor,1,149.99,2019-07-11 19:48:00,365 Wilson St, Seattle,WA,98101 +232800,USB-C Charging Cable,1,11.95,2019-07-21 09:06:00,835 Lincoln St, San Francisco,CA,94016 +232801,AA Batteries (4-pack),1,3.84,2019-07-17 16:19:00,274 Church St, Boston,MA,02215 +232802,USB-C Charging Cable,1,11.95,2019-07-03 08:09:00,537 4th St, San Francisco,CA,94016 +232803,Lightning Charging Cable,1,14.95,2019-07-14 18:52:00,443 12th St, Atlanta,GA,30301 +232804,27in FHD Monitor,1,149.99,2019-07-05 15:55:00,172 9th St, Los Angeles,CA,90001 +232805,Apple Airpods Headphones,1,150.0,2019-07-15 19:13:00,903 Wilson St, Atlanta,GA,30301 +232806,Google Phone,1,600.0,2019-07-15 15:44:00,21 River St, New York City,NY,10001 +232807,USB-C Charging Cable,1,11.95,2019-07-01 06:22:00,866 6th St, San Francisco,CA,94016 +232808,AAA Batteries (4-pack),1,2.99,2019-07-17 09:37:00,478 Madison St, Austin,TX,73301 +232809,Apple Airpods Headphones,1,150.0,2019-07-10 15:13:00,373 Willow St, New York City,NY,10001 +232810,AA Batteries (4-pack),1,3.84,2019-07-15 19:00:00,211 Wilson St, Dallas,TX,75001 +232811,AA Batteries (4-pack),2,3.84,2019-07-26 22:32:00,4 Madison St, Los Angeles,CA,90001 +232812,Bose SoundSport Headphones,1,99.99,2019-07-23 11:38:00,173 Hill St, Atlanta,GA,30301 +232813,iPhone,1,700.0,2019-07-03 16:32:00,898 Park St, Atlanta,GA,30301 +232814,Apple Airpods Headphones,1,150.0,2019-07-10 17:05:00,436 11th St, Seattle,WA,98101 +232815,AAA Batteries (4-pack),2,2.99,2019-07-29 18:09:00,705 Lake St, New York City,NY,10001 +232816,27in FHD Monitor,1,149.99,2019-07-14 13:36:00,177 Sunset St, San Francisco,CA,94016 +232817,Apple Airpods Headphones,1,150.0,2019-07-08 19:34:00,162 Sunset St, San Francisco,CA,94016 +232818,Lightning Charging Cable,1,14.95,2019-07-13 07:12:00,698 13th St, Boston,MA,02215 +232819,Lightning Charging Cable,1,14.95,2019-07-18 00:50:00,304 5th St, New York City,NY,10001 +232820,27in FHD Monitor,1,149.99,2019-07-01 12:15:00,588 Sunset St, Los Angeles,CA,90001 +232821,20in Monitor,1,109.99,2019-07-31 02:23:00,55 14th St, Boston,MA,02215 +232822,Bose SoundSport Headphones,1,99.99,2019-07-27 15:29:00,240 Walnut St, Dallas,TX,75001 +232823,20in Monitor,1,109.99,2019-07-28 18:59:00,477 Sunset St, Seattle,WA,98101 +232824,Apple Airpods Headphones,1,150.0,2019-07-02 20:49:00,556 10th St, New York City,NY,10001 +232825,Apple Airpods Headphones,1,150.0,2019-07-28 00:23:00,689 Elm St, Portland,OR,97035 +232826,AAA Batteries (4-pack),2,2.99,2019-07-13 21:03:00,599 Ridge St, Boston,MA,02215 +232827,Lightning Charging Cable,1,14.95,2019-07-20 10:13:00,148 2nd St, New York City,NY,10001 +232828,AA Batteries (4-pack),1,3.84,2019-07-13 08:58:00,157 Willow St, New York City,NY,10001 +232829,AA Batteries (4-pack),2,3.84,2019-07-30 11:59:00,621 11th St, Dallas,TX,75001 +232830,Wired Headphones,1,11.99,2019-07-06 07:33:00,804 Pine St, Los Angeles,CA,90001 +232831,Wired Headphones,1,11.99,2019-07-26 21:15:00,711 Center St, Boston,MA,02215 +232832,USB-C Charging Cable,1,11.95,2019-07-08 21:31:00,511 Jackson St, Atlanta,GA,30301 +232833,Wired Headphones,1,11.99,2019-07-25 22:16:00,867 5th St, Austin,TX,73301 +232834,Apple Airpods Headphones,1,150.0,2019-07-04 20:08:00,822 Adams St, Boston,MA,02215 +232835,Apple Airpods Headphones,1,150.0,2019-07-25 01:54:00,873 1st St, San Francisco,CA,94016 +232836,Lightning Charging Cable,1,14.95,2019-07-25 09:08:00,556 Main St, Los Angeles,CA,90001 +232837,34in Ultrawide Monitor,1,379.99,2019-07-23 14:56:00,77 River St, San Francisco,CA,94016 +232838,27in FHD Monitor,1,149.99,2019-07-22 14:53:00,487 6th St, San Francisco,CA,94016 +232839,USB-C Charging Cable,1,11.95,2019-07-19 20:00:00,117 Spruce St, Atlanta,GA,30301 +232840,Wired Headphones,1,11.99,2019-07-08 18:45:00,27 Highland St, New York City,NY,10001 +232841,34in Ultrawide Monitor,1,379.99,2019-07-27 16:41:00,180 Jackson St, New York City,NY,10001 +232842,USB-C Charging Cable,1,11.95,2019-07-18 10:27:00,950 Wilson St, Dallas,TX,75001 +232843,USB-C Charging Cable,1,11.95,2019-07-17 14:07:00,779 Lakeview St, San Francisco,CA,94016 +232844,AAA Batteries (4-pack),2,2.99,2019-07-21 22:20:00,915 13th St, San Francisco,CA,94016 +232845,Bose SoundSport Headphones,1,99.99,2019-07-05 17:00:00,906 Willow St, Los Angeles,CA,90001 +232846,Apple Airpods Headphones,1,150.0,2019-07-01 22:57:00,248 5th St, Portland,OR,97035 +232847,34in Ultrawide Monitor,1,379.99,2019-07-16 18:10:00,515 North St, San Francisco,CA,94016 +232848,USB-C Charging Cable,1,11.95,2019-07-10 17:41:00,626 Dogwood St, Atlanta,GA,30301 +232849,Bose SoundSport Headphones,1,99.99,2019-07-12 11:28:00,525 11th St, Atlanta,GA,30301 +232850,Apple Airpods Headphones,1,150.0,2019-07-12 18:20:00,395 Spruce St, Atlanta,GA,30301 +232851,Lightning Charging Cable,1,14.95,2019-07-17 11:13:00,532 Pine St, San Francisco,CA,94016 +232852,27in FHD Monitor,1,149.99,2019-07-29 22:47:00,389 Lake St, New York City,NY,10001 +232853,Flatscreen TV,1,300.0,2019-07-01 22:42:00,933 1st St, Seattle,WA,98101 +232854,Lightning Charging Cable,1,14.95,2019-07-20 19:54:00,774 South St, Dallas,TX,75001 +232855,Google Phone,1,600.0,2019-07-29 22:07:00,644 12th St, Los Angeles,CA,90001 +232855,USB-C Charging Cable,1,11.95,2019-07-29 22:07:00,644 12th St, Los Angeles,CA,90001 +232856,AAA Batteries (4-pack),1,2.99,2019-07-27 10:49:00,439 Willow St, New York City,NY,10001 +232857,ThinkPad Laptop,1,999.99,2019-07-04 13:14:00,476 Ridge St, Seattle,WA,98101 +232858,AA Batteries (4-pack),2,3.84,2019-07-04 00:12:00,538 West St, San Francisco,CA,94016 +232859,AA Batteries (4-pack),1,3.84,2019-07-10 10:32:00,971 Maple St, Boston,MA,02215 +232860,Apple Airpods Headphones,1,150.0,2019-07-08 18:55:00,671 Maple St, Austin,TX,73301 +232861,AAA Batteries (4-pack),2,2.99,2019-07-23 19:54:00,850 Willow St, Austin,TX,73301 +232862,20in Monitor,1,109.99,2019-07-01 18:51:00,80 Wilson St, Atlanta,GA,30301 +232863,Lightning Charging Cable,1,14.95,2019-07-02 12:12:00,501 Church St, Seattle,WA,98101 +232864,Apple Airpods Headphones,1,150.0,2019-07-10 03:08:00,662 South St, Los Angeles,CA,90001 +232865,27in 4K Gaming Monitor,1,389.99,2019-07-18 08:58:00,540 Willow St, San Francisco,CA,94016 +232866,27in FHD Monitor,1,149.99,2019-07-30 19:40:00,369 1st St, San Francisco,CA,94016 +232867,Lightning Charging Cable,1,14.95,2019-07-17 20:36:00,649 Chestnut St, Atlanta,GA,30301 +232868,iPhone,1,700.0,2019-07-16 19:12:00,263 Cherry St, Atlanta,GA,30301 +232869,Flatscreen TV,1,300.0,2019-07-01 16:20:00,368 8th St, Dallas,TX,75001 +232870,Bose SoundSport Headphones,1,99.99,2019-07-20 13:12:00,844 Highland St, San Francisco,CA,94016 +232871,AA Batteries (4-pack),1,3.84,2019-07-24 04:59:00,597 14th St, San Francisco,CA,94016 +232872,Lightning Charging Cable,1,14.95,2019-07-30 06:26:00,317 8th St, Austin,TX,73301 +232873,Apple Airpods Headphones,1,150.0,2019-07-23 15:57:00,101 Hickory St, Los Angeles,CA,90001 +232873,AAA Batteries (4-pack),1,2.99,2019-07-23 15:57:00,101 Hickory St, Los Angeles,CA,90001 +232874,Lightning Charging Cable,1,14.95,2019-07-15 15:04:00,915 Walnut St, Los Angeles,CA,90001 +232875,Flatscreen TV,1,300.0,2019-07-25 00:44:00,164 Jefferson St, San Francisco,CA,94016 +232876,USB-C Charging Cable,1,11.95,2019-07-12 13:55:00,391 1st St, New York City,NY,10001 +232877,27in FHD Monitor,1,149.99,2019-07-02 16:31:00,734 Center St, Portland,ME,04101 +232878,Lightning Charging Cable,1,14.95,2019-07-10 11:22:00,253 Park St, San Francisco,CA,94016 +232879,iPhone,1,700.0,2019-07-07 21:58:00,139 Elm St, Boston,MA,02215 +232880,Apple Airpods Headphones,1,150.0,2019-07-16 11:12:00,956 Sunset St, Portland,OR,97035 +232881,Google Phone,1,600.0,2019-07-15 18:40:00,370 7th St, Austin,TX,73301 +232882,Vareebadd Phone,1,400.0,2019-07-23 09:49:00,87 Dogwood St, San Francisco,CA,94016 +232883,Bose SoundSport Headphones,1,99.99,2019-07-02 18:23:00,115 Pine St, Atlanta,GA,30301 +232884,AA Batteries (4-pack),1,3.84,2019-07-04 20:10:00,941 5th St, Portland,OR,97035 +232885,Lightning Charging Cable,1,14.95,2019-07-28 12:09:00,92 Jefferson St, Seattle,WA,98101 +232886,AAA Batteries (4-pack),1,2.99,2019-07-07 11:03:00,670 Jackson St, Los Angeles,CA,90001 +232887,Wired Headphones,1,11.99,2019-07-31 14:06:00,334 Highland St, Atlanta,GA,30301 +232888,Macbook Pro Laptop,1,1700.0,2019-07-09 19:33:00,434 West St, Atlanta,GA,30301 +232889,Wired Headphones,1,11.99,2019-07-08 11:08:00,948 10th St, Los Angeles,CA,90001 +232890,AAA Batteries (4-pack),3,2.99,2019-07-28 08:05:00,432 2nd St, New York City,NY,10001 +232891,Lightning Charging Cable,1,14.95,2019-07-15 22:18:00,522 1st St, Portland,OR,97035 +232892,Lightning Charging Cable,1,14.95,2019-07-12 08:31:00,954 6th St, Dallas,TX,75001 +232893,AAA Batteries (4-pack),1,2.99,2019-07-11 10:27:00,351 Washington St, Los Angeles,CA,90001 +232894,Bose SoundSport Headphones,1,99.99,2019-07-21 15:54:00,243 Maple St, Los Angeles,CA,90001 +232895,AA Batteries (4-pack),1,3.84,2019-07-03 20:40:00,101 Meadow St, Austin,TX,73301 +232896,AAA Batteries (4-pack),1,2.99,2019-07-09 12:01:00,538 Maple St, Boston,MA,02215 +232897,Vareebadd Phone,1,400.0,2019-07-21 14:25:00,874 Dogwood St, Atlanta,GA,30301 +232898,AA Batteries (4-pack),1,3.84,2019-07-04 14:13:00,607 Jackson St, Seattle,WA,98101 +232899,AAA Batteries (4-pack),2,2.99,2019-07-06 20:07:00,260 12th St, San Francisco,CA,94016 +232900,27in 4K Gaming Monitor,1,389.99,2019-07-21 19:58:00,687 Meadow St, Boston,MA,02215 +232901,iPhone,1,700.0,2019-07-28 06:14:00,470 Willow St, San Francisco,CA,94016 +232902,27in 4K Gaming Monitor,1,389.99,2019-07-07 09:01:00,731 Lake St, San Francisco,CA,94016 +232903,27in FHD Monitor,1,149.99,2019-07-28 12:18:00,655 Pine St, San Francisco,CA,94016 +232904,AA Batteries (4-pack),3,3.84,2019-07-22 14:55:00,739 Ridge St, New York City,NY,10001 +232905,AAA Batteries (4-pack),1,2.99,2019-07-26 14:48:00,225 Pine St, Dallas,TX,75001 +232906,USB-C Charging Cable,1,11.95,2019-07-27 22:14:00,75 Washington St, San Francisco,CA,94016 +232907,Lightning Charging Cable,1,14.95,2019-07-07 20:59:00,673 Church St, New York City,NY,10001 +232908,ThinkPad Laptop,1,999.99,2019-07-08 13:39:00,565 Center St, San Francisco,CA,94016 +232909,AA Batteries (4-pack),1,3.84,2019-07-03 15:36:00,409 Sunset St, San Francisco,CA,94016 +232910,27in 4K Gaming Monitor,1,389.99,2019-07-29 06:05:00,63 West St, Portland,OR,97035 +232911,Wired Headphones,1,11.99,2019-07-25 20:51:00,603 Hickory St, Atlanta,GA,30301 +232912,Flatscreen TV,1,300.0,2019-07-02 18:13:00,990 7th St, San Francisco,CA,94016 +232913,Lightning Charging Cable,1,14.95,2019-07-12 11:27:00,769 Park St, Los Angeles,CA,90001 +232914,Apple Airpods Headphones,2,150.0,2019-07-04 08:21:00,636 Highland St, San Francisco,CA,94016 +232915,USB-C Charging Cable,1,11.95,2019-07-24 16:04:00,507 Forest St, Boston,MA,02215 +232916,Lightning Charging Cable,1,14.95,2019-07-04 18:29:00,483 Dogwood St, New York City,NY,10001 +232917,Flatscreen TV,1,300.0,2019-07-19 12:12:00,79 Forest St, Los Angeles,CA,90001 +232918,Apple Airpods Headphones,1,150.0,2019-07-05 13:02:00,461 Forest St, San Francisco,CA,94016 +232919,AAA Batteries (4-pack),2,2.99,2019-07-08 22:42:00,33 6th St, Dallas,TX,75001 +232920,Apple Airpods Headphones,1,150.0,2019-07-03 18:36:00,650 Washington St, San Francisco,CA,94016 +232920,AAA Batteries (4-pack),1,2.99,2019-07-03 18:36:00,650 Washington St, San Francisco,CA,94016 +232921,AAA Batteries (4-pack),1,2.99,2019-07-31 19:41:00,300 Washington St, Los Angeles,CA,90001 +232922,Bose SoundSport Headphones,1,99.99,2019-07-24 09:45:00,782 Main St, New York City,NY,10001 +232923,Wired Headphones,1,11.99,2019-07-02 09:22:00,821 4th St, Los Angeles,CA,90001 +232924,Bose SoundSport Headphones,1,99.99,2019-07-31 01:35:00,646 Highland St, San Francisco,CA,94016 +232925,AA Batteries (4-pack),1,3.84,2019-07-24 11:56:00,14 Dogwood St, Seattle,WA,98101 +232926,AA Batteries (4-pack),1,3.84,2019-07-12 08:30:00,76 5th St, Seattle,WA,98101 +232927,34in Ultrawide Monitor,1,379.99,2019-07-31 19:37:00,931 9th St, Los Angeles,CA,90001 +232928,USB-C Charging Cable,1,11.95,2019-07-09 13:49:00,947 Hill St, Los Angeles,CA,90001 +232929,Apple Airpods Headphones,1,150.0,2019-07-18 14:25:00,806 11th St, Boston,MA,02215 +232930,Wired Headphones,1,11.99,2019-07-03 11:30:00,288 Cherry St, Boston,MA,02215 +232931,Bose SoundSport Headphones,1,99.99,2019-07-09 21:23:00,559 Main St, New York City,NY,10001 +232932,AA Batteries (4-pack),1,3.84,2019-07-10 21:48:00,164 Highland St, Atlanta,GA,30301 +232933,Lightning Charging Cable,1,14.95,2019-07-01 17:41:00,15 Pine St, New York City,NY,10001 +232934,Wired Headphones,1,11.99,2019-07-28 09:33:00,296 Johnson St, Atlanta,GA,30301 +232935,iPhone,1,700.0,2019-07-25 23:11:00,522 1st St, San Francisco,CA,94016 +232935,Lightning Charging Cable,2,14.95,2019-07-25 23:11:00,522 1st St, San Francisco,CA,94016 +232936,27in FHD Monitor,1,149.99,2019-07-31 20:22:00,190 Hill St, Atlanta,GA,30301 +232937,Wired Headphones,1,11.99,2019-07-12 22:06:00,429 Sunset St, Los Angeles,CA,90001 +232938,Bose SoundSport Headphones,1,99.99,2019-07-28 15:58:00,384 Washington St, Austin,TX,73301 +232939,AAA Batteries (4-pack),4,2.99,2019-07-27 11:11:00,682 13th St, Los Angeles,CA,90001 +232940,AAA Batteries (4-pack),2,2.99,2019-07-04 10:44:00,498 Lake St, Boston,MA,02215 +232941,AAA Batteries (4-pack),3,2.99,2019-07-28 22:11:00,675 Center St, Boston,MA,02215 +232942,iPhone,1,700.0,2019-07-30 16:46:00,745 Washington St, Portland,OR,97035 +232943,Macbook Pro Laptop,1,1700.0,2019-07-09 09:18:00,969 River St, San Francisco,CA,94016 +232944,Wired Headphones,1,11.99,2019-07-23 08:30:00,95 Cedar St, Seattle,WA,98101 +232945,AAA Batteries (4-pack),1,2.99,2019-07-11 20:21:00,891 7th St, San Francisco,CA,94016 +232946,Apple Airpods Headphones,1,150.0,2019-07-27 19:23:00,853 Meadow St, Atlanta,GA,30301 +232947,Lightning Charging Cable,1,14.95,2019-07-02 17:52:00,210 West St, Seattle,WA,98101 +232948,27in 4K Gaming Monitor,1,389.99,2019-07-18 23:49:00,768 Hickory St, Atlanta,GA,30301 +232949,Lightning Charging Cable,1,14.95,2019-07-13 10:30:00,82 Main St, Boston,MA,02215 +232950,AA Batteries (4-pack),1,3.84,2019-07-02 15:47:00,968 Hill St, San Francisco,CA,94016 +232951,Bose SoundSport Headphones,1,99.99,2019-07-03 12:59:00,491 Jackson St, San Francisco,CA,94016 +232952,Bose SoundSport Headphones,1,99.99,2019-07-21 00:15:00,456 Center St, New York City,NY,10001 +232953,AA Batteries (4-pack),1,3.84,2019-07-16 09:26:00,490 14th St, New York City,NY,10001 +232954,AA Batteries (4-pack),3,3.84,2019-07-13 15:54:00,328 Spruce St, San Francisco,CA,94016 +232955,20in Monitor,1,109.99,2019-07-17 13:23:00,436 Cherry St, Boston,MA,02215 +232956,Apple Airpods Headphones,1,150.0,2019-07-15 12:15:00,948 North St, Los Angeles,CA,90001 +232957,34in Ultrawide Monitor,1,379.99,2019-07-06 23:39:00,604 6th St, New York City,NY,10001 +232958,Apple Airpods Headphones,1,150.0,2019-07-09 05:41:00,264 Lincoln St, Los Angeles,CA,90001 +232959,Google Phone,1,600.0,2019-07-31 22:18:00,55 6th St, Seattle,WA,98101 +232960,AAA Batteries (4-pack),1,2.99,2019-07-22 20:04:00,959 1st St, Los Angeles,CA,90001 +232961,Lightning Charging Cable,1,14.95,2019-07-22 00:30:00,74 Jackson St, Seattle,WA,98101 +232962,Wired Headphones,1,11.99,2019-07-06 20:55:00,854 8th St, Boston,MA,02215 +232963,Macbook Pro Laptop,1,1700.0,2019-07-10 11:00:00,547 Washington St, Atlanta,GA,30301 +232964,AAA Batteries (4-pack),1,2.99,2019-07-27 13:26:00,993 Maple St, Atlanta,GA,30301 +232965,AAA Batteries (4-pack),1,2.99,2019-07-22 08:45:00,337 Sunset St, Portland,OR,97035 +232966,Flatscreen TV,1,300.0,2019-07-14 08:07:00,937 7th St, New York City,NY,10001 +232967,34in Ultrawide Monitor,1,379.99,2019-07-21 16:24:00,471 6th St, Dallas,TX,75001 +232968,Bose SoundSport Headphones,1,99.99,2019-07-26 11:15:00,825 Pine St, Los Angeles,CA,90001 +232969,34in Ultrawide Monitor,1,379.99,2019-07-11 09:59:00,114 Forest St, Atlanta,GA,30301 +232970,AA Batteries (4-pack),1,3.84,2019-07-09 21:09:00,228 Madison St, Atlanta,GA,30301 +232971,AAA Batteries (4-pack),2,2.99,2019-07-25 19:31:00,353 Jefferson St, San Francisco,CA,94016 +232972,AA Batteries (4-pack),2,3.84,2019-07-30 17:46:00,159 South St, San Francisco,CA,94016 +232973,20in Monitor,1,109.99,2019-07-26 06:51:00,7 Adams St, Los Angeles,CA,90001 +232974,Apple Airpods Headphones,1,150.0,2019-07-15 11:35:00,541 Adams St, New York City,NY,10001 +232975,27in 4K Gaming Monitor,1,389.99,2019-07-13 13:13:00,685 Sunset St, Los Angeles,CA,90001 +232976,USB-C Charging Cable,1,11.95,2019-07-18 10:42:00,797 Washington St, Boston,MA,02215 +232977,Google Phone,1,600.0,2019-07-08 21:29:00,449 River St, Seattle,WA,98101 +232978,Macbook Pro Laptop,1,1700.0,2019-07-14 22:09:00,346 Dogwood St, Austin,TX,73301 +232979,USB-C Charging Cable,1,11.95,2019-07-28 20:13:00,870 Park St, Austin,TX,73301 +232980,USB-C Charging Cable,1,11.95,2019-07-09 21:12:00,432 12th St, Dallas,TX,75001 +232981,AAA Batteries (4-pack),2,2.99,2019-07-11 19:37:00,366 13th St, Seattle,WA,98101 +232982,iPhone,1,700.0,2019-07-01 17:51:00,859 14th St, Seattle,WA,98101 +232982,Wired Headphones,1,11.99,2019-07-01 17:51:00,859 14th St, Seattle,WA,98101 +232983,27in FHD Monitor,1,149.99,2019-07-13 11:13:00,679 14th St, Seattle,WA,98101 +232984,Apple Airpods Headphones,1,150.0,2019-07-27 17:38:00,717 2nd St, Austin,TX,73301 +232985,27in FHD Monitor,1,149.99,2019-07-10 20:48:00,91 Lake St, Boston,MA,02215 +232986,Wired Headphones,1,11.99,2019-07-07 10:31:00,897 Walnut St, Atlanta,GA,30301 +232987,AA Batteries (4-pack),1,3.84,2019-07-09 08:45:00,334 Main St, San Francisco,CA,94016 +232988,Vareebadd Phone,1,400.0,2019-07-14 20:56:00,46 2nd St, New York City,NY,10001 +232988,USB-C Charging Cable,1,11.95,2019-07-14 20:56:00,46 2nd St, New York City,NY,10001 +232989,USB-C Charging Cable,1,11.95,2019-07-31 00:11:00,141 Jefferson St, San Francisco,CA,94016 +232989,Google Phone,1,600.0,2019-07-31 00:11:00,141 Jefferson St, San Francisco,CA,94016 +232990,Apple Airpods Headphones,1,150.0,2019-07-09 06:16:00,253 Elm St, Boston,MA,02215 +232991,Wired Headphones,1,11.99,2019-07-11 11:59:00,649 8th St, Portland,OR,97035 +232992,USB-C Charging Cable,1,11.95,2019-07-09 11:02:00,159 Jefferson St, San Francisco,CA,94016 +232993,Bose SoundSport Headphones,1,99.99,2019-07-23 16:09:00,528 Meadow St, Seattle,WA,98101 +232994,iPhone,1,700.0,2019-07-30 18:34:00,501 Meadow St, Portland,OR,97035 +232995,Apple Airpods Headphones,1,150.0,2019-07-19 16:19:00,534 Cedar St, Boston,MA,02215 +232996,Wired Headphones,2,11.99,2019-07-03 14:20:00,638 4th St, Los Angeles,CA,90001 +232997,AA Batteries (4-pack),1,3.84,2019-07-04 09:51:00,259 6th St, Boston,MA,02215 +232998,Wired Headphones,1,11.99,2019-07-06 14:46:00,676 Jackson St, Atlanta,GA,30301 +232999,AAA Batteries (4-pack),1,2.99,2019-07-05 18:09:00,196 Madison St, San Francisco,CA,94016 +233000,AAA Batteries (4-pack),1,2.99,2019-07-04 01:41:00,26 Pine St, Boston,MA,02215 +233001,Apple Airpods Headphones,1,150.0,2019-07-17 22:16:00,336 Madison St, Austin,TX,73301 +233002,AAA Batteries (4-pack),1,2.99,2019-07-23 12:29:00,233 Lincoln St, Boston,MA,02215 +233003,iPhone,1,700.0,2019-07-16 14:50:00,699 13th St, Austin,TX,73301 +233003,Wired Headphones,1,11.99,2019-07-16 14:50:00,699 13th St, Austin,TX,73301 +233004,Wired Headphones,1,11.99,2019-07-12 11:29:00,200 Lincoln St, Boston,MA,02215 +233005,AAA Batteries (4-pack),1,2.99,2019-07-12 22:56:00,258 11th St, Dallas,TX,75001 +233006,Apple Airpods Headphones,1,150.0,2019-07-21 15:02:00,659 Maple St, San Francisco,CA,94016 +233007,AA Batteries (4-pack),1,3.84,2019-07-07 00:11:00,415 1st St, Atlanta,GA,30301 +233008,20in Monitor,1,109.99,2019-07-05 21:26:00,191 7th St, Los Angeles,CA,90001 +233009,AA Batteries (4-pack),2,3.84,2019-07-30 20:58:00,914 Wilson St, San Francisco,CA,94016 +233010,AA Batteries (4-pack),1,3.84,2019-07-22 22:02:00,136 7th St, San Francisco,CA,94016 +233011,USB-C Charging Cable,1,11.95,2019-07-12 08:02:00,781 Wilson St, San Francisco,CA,94016 +233012,Apple Airpods Headphones,1,150.0,2019-07-30 14:58:00,649 Johnson St, Austin,TX,73301 +233013,USB-C Charging Cable,1,11.95,2019-07-17 21:47:00,230 Johnson St, Portland,OR,97035 +233014,USB-C Charging Cable,1,11.95,2019-07-19 13:06:00,675 1st St, San Francisco,CA,94016 +233015,Bose SoundSport Headphones,1,99.99,2019-07-22 12:30:00,454 7th St, San Francisco,CA,94016 +233016,Macbook Pro Laptop,1,1700.0,2019-07-09 21:41:00,497 Maple St, New York City,NY,10001 +233017,USB-C Charging Cable,1,11.95,2019-07-20 18:02:00,14 Willow St, Dallas,TX,75001 +233018,Bose SoundSport Headphones,1,99.99,2019-07-30 10:50:00,703 Meadow St, Boston,MA,02215 +233019,USB-C Charging Cable,1,11.95,2019-07-08 19:34:00,967 Willow St, Portland,OR,97035 +233020,iPhone,1,700.0,2019-07-24 06:22:00,913 Madison St, Seattle,WA,98101 +233021,AAA Batteries (4-pack),4,2.99,2019-07-15 10:49:00,332 8th St, Boston,MA,02215 +233022,USB-C Charging Cable,1,11.95,2019-07-15 20:12:00,563 Spruce St, Portland,OR,97035 +233023,AA Batteries (4-pack),1,3.84,2019-07-02 11:08:00,115 Johnson St, San Francisco,CA,94016 +233024,Bose SoundSport Headphones,1,99.99,2019-07-14 17:36:00,449 7th St, San Francisco,CA,94016 +233025,Bose SoundSport Headphones,1,99.99,2019-07-19 21:50:00,488 7th St, Los Angeles,CA,90001 +233026,LG Washing Machine,1,600.0,2019-07-08 21:49:00,280 Washington St, New York City,NY,10001 +233027,27in 4K Gaming Monitor,1,389.99,2019-07-30 01:36:00,766 Jefferson St, Los Angeles,CA,90001 +233028,iPhone,1,700.0,2019-07-28 20:53:00,468 Park St, San Francisco,CA,94016 +233029,AA Batteries (4-pack),1,3.84,2019-07-11 18:07:00,167 Center St, Los Angeles,CA,90001 +233030,AAA Batteries (4-pack),2,2.99,2019-07-31 21:14:00,87 Hickory St, San Francisco,CA,94016 +233031,Macbook Pro Laptop,1,1700.0,2019-07-30 17:38:00,754 Madison St, Los Angeles,CA,90001 +233032,20in Monitor,1,109.99,2019-07-18 15:53:00,374 Highland St, Atlanta,GA,30301 +233033,Lightning Charging Cable,1,14.95,2019-07-02 17:08:00,576 Meadow St, Austin,TX,73301 +233034,Lightning Charging Cable,2,14.95,2019-07-04 19:40:00,572 West St, Boston,MA,02215 +233035,USB-C Charging Cable,1,11.95,2019-07-20 12:29:00,694 Sunset St, Los Angeles,CA,90001 +233036,Macbook Pro Laptop,1,1700.0,2019-07-24 21:14:00,442 Park St, Austin,TX,73301 +233037,AAA Batteries (4-pack),1,2.99,2019-07-23 09:45:00,875 Lakeview St, New York City,NY,10001 +233038,Bose SoundSport Headphones,1,99.99,2019-07-14 13:20:00,601 Meadow St, Boston,MA,02215 +233039,AA Batteries (4-pack),1,3.84,2019-07-07 13:14:00,203 Highland St, San Francisco,CA,94016 +233040,AA Batteries (4-pack),1,3.84,2019-07-20 17:47:00,230 Dogwood St, San Francisco,CA,94016 +233041,Apple Airpods Headphones,1,150.0,2019-07-28 16:42:00,465 Pine St, Portland,OR,97035 +233042,Apple Airpods Headphones,1,150.0,2019-07-02 16:23:00,53 North St, Los Angeles,CA,90001 +233043,Apple Airpods Headphones,1,150.0,2019-07-09 21:02:00,815 Ridge St, Boston,MA,02215 +233044,Wired Headphones,1,11.99,2019-07-12 13:44:00,647 7th St, San Francisco,CA,94016 +233045,USB-C Charging Cable,1,11.95,2019-07-14 20:03:00,889 Lake St, San Francisco,CA,94016 +233046,AAA Batteries (4-pack),1,2.99,2019-07-07 18:05:00,188 6th St, San Francisco,CA,94016 +233047,Lightning Charging Cable,1,14.95,2019-07-06 21:25:00,437 Walnut St, Boston,MA,02215 +233048,AA Batteries (4-pack),1,3.84,2019-07-02 09:48:00,509 Spruce St, New York City,NY,10001 +233049,iPhone,1,700.0,2019-07-02 11:16:00,626 Dogwood St, New York City,NY,10001 +233050,USB-C Charging Cable,1,11.95,2019-07-01 09:50:00,681 Forest St, Portland,OR,97035 +233051,AA Batteries (4-pack),1,3.84,2019-07-02 19:31:00,641 Sunset St, San Francisco,CA,94016 +233052,AAA Batteries (4-pack),1,2.99,2019-07-18 11:33:00,945 Ridge St, San Francisco,CA,94016 +233053,AA Batteries (4-pack),2,3.84,2019-07-31 20:14:00,471 Church St, Los Angeles,CA,90001 +233054,34in Ultrawide Monitor,1,379.99,2019-07-14 21:08:00,893 Washington St, Los Angeles,CA,90001 +233054,iPhone,1,700.0,2019-07-14 21:08:00,893 Washington St, Los Angeles,CA,90001 +233055,AAA Batteries (4-pack),6,2.99,2019-07-26 20:41:00,275 Main St, Boston,MA,02215 +233056,USB-C Charging Cable,1,11.95,2019-07-19 19:10:00,775 Adams St, San Francisco,CA,94016 +233057,Apple Airpods Headphones,1,150.0,2019-07-23 23:21:00,190 River St, San Francisco,CA,94016 +233058,Macbook Pro Laptop,1,1700.0,2019-07-04 12:21:00,749 Cedar St, Boston,MA,02215 +233059,Lightning Charging Cable,1,14.95,2019-07-21 18:52:00,918 Ridge St, San Francisco,CA,94016 +233060,AAA Batteries (4-pack),1,2.99,2019-07-20 17:01:00,459 Willow St, San Francisco,CA,94016 +233061,Apple Airpods Headphones,1,150.0,2019-07-24 20:06:00,216 13th St, Seattle,WA,98101 +233062,Macbook Pro Laptop,1,1700.0,2019-07-24 01:21:00,182 Dogwood St, Portland,OR,97035 +233063,AAA Batteries (4-pack),3,2.99,2019-07-30 17:04:00,432 West St, Austin,TX,73301 +233064,AAA Batteries (4-pack),1,2.99,2019-07-25 18:13:00,720 12th St, Boston,MA,02215 +233065,Wired Headphones,1,11.99,2019-07-28 22:21:00,302 Lincoln St, Boston,MA,02215 +233066,AA Batteries (4-pack),1,3.84,2019-07-27 13:06:00,176 Washington St, Los Angeles,CA,90001 +233067,Wired Headphones,1,11.99,2019-07-20 21:23:00,262 1st St, Boston,MA,02215 +233068,20in Monitor,1,109.99,2019-07-23 14:16:00,738 Ridge St, Seattle,WA,98101 +233069,Wired Headphones,1,11.99,2019-07-14 12:50:00,402 10th St, San Francisco,CA,94016 +233070,Flatscreen TV,1,300.0,2019-07-25 15:55:00,327 Wilson St, Los Angeles,CA,90001 +233071,AA Batteries (4-pack),1,3.84,2019-07-04 11:23:00,781 Adams St, New York City,NY,10001 +233072,Google Phone,1,600.0,2019-07-16 18:34:00,4 10th St, San Francisco,CA,94016 +233073,Lightning Charging Cable,1,14.95,2019-07-31 06:26:00,318 Dogwood St, New York City,NY,10001 +233074,AAA Batteries (4-pack),1,2.99,2019-07-21 10:06:00,559 West St, San Francisco,CA,94016 +233075,AA Batteries (4-pack),2,3.84,2019-07-12 11:18:00,858 Adams St, San Francisco,CA,94016 +233076,Vareebadd Phone,1,400.0,2019-07-23 09:29:00,964 Jackson St, Los Angeles,CA,90001 +233077,27in FHD Monitor,1,149.99,2019-07-16 21:43:00,14 Dogwood St, Boston,MA,02215 +233078,Bose SoundSport Headphones,1,99.99,2019-07-10 22:00:00,227 Hickory St, Los Angeles,CA,90001 +233079,Apple Airpods Headphones,1,150.0,2019-07-06 10:37:00,433 Park St, New York City,NY,10001 +233080,34in Ultrawide Monitor,1,379.99,2019-07-10 22:23:00,338 Park St, Atlanta,GA,30301 +233081,Lightning Charging Cable,1,14.95,2019-07-28 19:25:00,738 Dogwood St, San Francisco,CA,94016 +233082,USB-C Charging Cable,1,11.95,2019-07-01 10:24:00,930 11th St, Dallas,TX,75001 +233083,Lightning Charging Cable,1,14.95,2019-07-05 00:20:00,242 Jefferson St, San Francisco,CA,94016 +233084,Wired Headphones,1,11.99,2019-07-11 13:06:00,225 Main St, Los Angeles,CA,90001 +233085,AAA Batteries (4-pack),2,2.99,2019-07-19 18:53:00,860 Elm St, Seattle,WA,98101 +233086,Wired Headphones,1,11.99,2019-07-29 10:55:00,251 Willow St, San Francisco,CA,94016 +233087,Lightning Charging Cable,1,14.95,2019-07-03 10:54:00,92 10th St, Austin,TX,73301 +233088,iPhone,1,700.0,2019-07-03 21:39:00,145 Washington St, San Francisco,CA,94016 +233088,Apple Airpods Headphones,1,150.0,2019-07-03 21:39:00,145 Washington St, San Francisco,CA,94016 +233089,Vareebadd Phone,1,400.0,2019-07-02 19:17:00,205 1st St, San Francisco,CA,94016 +233090,AA Batteries (4-pack),1,3.84,2019-07-07 18:23:00,91 Church St, San Francisco,CA,94016 +233091,Wired Headphones,1,11.99,2019-07-22 21:16:00,29 Ridge St, Dallas,TX,75001 +233092,27in FHD Monitor,1,149.99,2019-07-31 19:24:00,696 8th St, Austin,TX,73301 +233093,USB-C Charging Cable,1,11.95,2019-07-30 14:32:00,489 Cedar St, San Francisco,CA,94016 +233094,Lightning Charging Cable,1,14.95,2019-07-19 12:32:00,704 11th St, Atlanta,GA,30301 +233095,Lightning Charging Cable,1,14.95,2019-07-10 20:13:00,928 Willow St, Boston,MA,02215 +233096,Flatscreen TV,1,300.0,2019-07-01 22:49:00,965 Center St, San Francisco,CA,94016 +233097,20in Monitor,1,109.99,2019-07-02 11:57:00,295 Main St, Seattle,WA,98101 +233098,USB-C Charging Cable,1,11.95,2019-07-15 17:59:00,639 Lake St, San Francisco,CA,94016 +233099,ThinkPad Laptop,1,999.99,2019-07-27 14:50:00,79 Washington St, San Francisco,CA,94016 +233100,USB-C Charging Cable,1,11.95,2019-07-19 12:10:00,701 Elm St, Seattle,WA,98101 +233101,Apple Airpods Headphones,1,150.0,2019-07-31 12:19:00,816 Jefferson St, Atlanta,GA,30301 +233102,Bose SoundSport Headphones,1,99.99,2019-07-29 15:02:00,681 Spruce St, Boston,MA,02215 +233103,Lightning Charging Cable,1,14.95,2019-07-11 17:25:00,408 Lake St, San Francisco,CA,94016 +233104,AA Batteries (4-pack),1,3.84,2019-07-17 13:56:00,650 South St, Seattle,WA,98101 +233105,AA Batteries (4-pack),1,3.84,2019-07-27 07:56:00,102 13th St, Atlanta,GA,30301 +233106,AAA Batteries (4-pack),1,2.99,2019-07-08 17:44:00,861 8th St, Portland,OR,97035 +233107,USB-C Charging Cable,1,11.95,2019-07-09 20:45:00,491 North St, Atlanta,GA,30301 +233108,iPhone,1,700.0,2019-07-15 11:47:00,792 2nd St, Atlanta,GA,30301 +233109,Bose SoundSport Headphones,1,99.99,2019-07-13 14:43:00,958 Cedar St, Boston,MA,02215 +233110,Apple Airpods Headphones,1,150.0,2019-07-30 19:00:00,563 Hickory St, Boston,MA,02215 +233111,Bose SoundSport Headphones,1,99.99,2019-07-27 21:30:00,946 2nd St, Dallas,TX,75001 +233112,Google Phone,1,600.0,2019-07-26 19:24:00,793 Highland St, Los Angeles,CA,90001 +233113,Google Phone,1,600.0,2019-07-02 19:20:00,590 Park St, San Francisco,CA,94016 +233114,AAA Batteries (4-pack),1,2.99,2019-07-16 11:15:00,535 5th St, San Francisco,CA,94016 +233115,34in Ultrawide Monitor,1,379.99,2019-07-23 11:47:00,883 Pine St, San Francisco,CA,94016 +233116,ThinkPad Laptop,1,999.99,2019-07-20 18:41:00,468 11th St, Boston,MA,02215 +233117,USB-C Charging Cable,1,11.95,2019-07-24 10:36:00,407 Cherry St, San Francisco,CA,94016 +233118,Macbook Pro Laptop,1,1700.0,2019-07-07 10:00:00,969 Church St, San Francisco,CA,94016 +233119,USB-C Charging Cable,1,11.95,2019-07-23 03:19:00,173 Center St, Seattle,WA,98101 +233120,27in 4K Gaming Monitor,1,389.99,2019-07-27 12:10:00,583 Lake St, Los Angeles,CA,90001 +233121,AAA Batteries (4-pack),3,2.99,2019-07-10 13:25:00,67 Main St, San Francisco,CA,94016 +233122,34in Ultrawide Monitor,1,379.99,2019-07-30 10:37:00,903 Pine St, New York City,NY,10001 +233123,34in Ultrawide Monitor,1,379.99,2019-07-25 12:25:00,932 River St, Seattle,WA,98101 +233124,Lightning Charging Cable,1,14.95,2019-07-30 18:49:00,507 Meadow St, Portland,OR,97035 +233125,AA Batteries (4-pack),2,3.84,2019-07-07 13:16:00,50 13th St, Boston,MA,02215 +233126,27in 4K Gaming Monitor,1,389.99,2019-07-25 19:38:00,219 Willow St, San Francisco,CA,94016 +233127,Lightning Charging Cable,1,14.95,2019-07-13 15:46:00,975 Sunset St, San Francisco,CA,94016 +233128,AAA Batteries (4-pack),1,2.99,2019-07-23 21:41:00,755 Center St, Seattle,WA,98101 +233129,Lightning Charging Cable,3,14.95,2019-07-27 20:00:00,764 11th St, San Francisco,CA,94016 +233130,34in Ultrawide Monitor,1,379.99,2019-07-21 19:49:00,832 Maple St, Los Angeles,CA,90001 +233131,AA Batteries (4-pack),1,3.84,2019-07-28 23:52:00,898 Cherry St, Boston,MA,02215 +233132,Lightning Charging Cable,1,14.95,2019-07-31 18:14:00,720 Maple St, Boston,MA,02215 +233133,20in Monitor,1,109.99,2019-07-07 21:46:00,339 Johnson St, Portland,OR,97035 +233134,27in 4K Gaming Monitor,1,389.99,2019-07-22 09:05:00,964 Dogwood St, Austin,TX,73301 +233135,AAA Batteries (4-pack),1,2.99,2019-07-08 13:20:00,729 Wilson St, San Francisco,CA,94016 +233136,27in FHD Monitor,1,149.99,2019-07-25 09:13:00,300 West St, Boston,MA,02215 +233137,AA Batteries (4-pack),1,3.84,2019-07-18 20:55:00,246 Elm St, San Francisco,CA,94016 +233138,AA Batteries (4-pack),1,3.84,2019-07-12 00:46:00,423 Forest St, San Francisco,CA,94016 +233139,USB-C Charging Cable,1,11.95,2019-07-06 19:34:00,646 West St, Los Angeles,CA,90001 +233140,AAA Batteries (4-pack),1,2.99,2019-07-29 00:23:00,469 Willow St, San Francisco,CA,94016 +233141,AA Batteries (4-pack),1,3.84,2019-07-17 15:58:00,19 Jefferson St, San Francisco,CA,94016 +233142,Bose SoundSport Headphones,1,99.99,2019-07-13 17:41:00,699 6th St, Atlanta,GA,30301 +233143,AA Batteries (4-pack),1,3.84,2019-07-13 06:08:00,180 Main St, Atlanta,GA,30301 +233144,Bose SoundSport Headphones,1,99.99,2019-07-05 20:20:00,382 12th St, Austin,TX,73301 +233145,34in Ultrawide Monitor,1,379.99,2019-07-12 12:51:00,449 8th St, Dallas,TX,75001 +233146,USB-C Charging Cable,1,11.95,2019-07-28 10:44:00,889 11th St, Dallas,TX,75001 +233147,34in Ultrawide Monitor,1,379.99,2019-07-06 12:03:00,813 Cedar St, Portland,ME,04101 +233148,Bose SoundSport Headphones,1,99.99,2019-07-16 17:58:00,380 7th St, New York City,NY,10001 +233149,34in Ultrawide Monitor,1,379.99,2019-07-10 19:04:00,434 Center St, San Francisco,CA,94016 +233150,AAA Batteries (4-pack),2,2.99,2019-07-27 20:37:00,577 Center St, San Francisco,CA,94016 +233151,34in Ultrawide Monitor,1,379.99,2019-07-03 13:30:00,710 13th St, New York City,NY,10001 +233152,Lightning Charging Cable,1,14.95,2019-07-04 14:45:00,464 Hickory St, Boston,MA,02215 +233153,AAA Batteries (4-pack),1,2.99,2019-07-08 07:33:00,784 Walnut St, San Francisco,CA,94016 +233154,USB-C Charging Cable,2,11.95,2019-07-15 18:38:00,368 Madison St, Los Angeles,CA,90001 +233155,AA Batteries (4-pack),1,3.84,2019-07-16 17:34:00,548 Dogwood St, San Francisco,CA,94016 +233156,Wired Headphones,1,11.99,2019-07-12 04:46:00,976 West St, Boston,MA,02215 +233157,Lightning Charging Cable,1,14.95,2019-07-15 17:48:00,133 Pine St, Austin,TX,73301 +233157,Wired Headphones,1,11.99,2019-07-15 17:48:00,133 Pine St, Austin,TX,73301 +233158,AA Batteries (4-pack),1,3.84,2019-07-14 20:30:00,504 Jackson St, Dallas,TX,75001 +233159,Wired Headphones,1,11.99,2019-07-18 13:29:00,251 2nd St, San Francisco,CA,94016 +233160,Macbook Pro Laptop,1,1700.0,2019-07-20 08:26:00,599 Lakeview St, San Francisco,CA,94016 +233161,Lightning Charging Cable,1,14.95,2019-07-14 21:33:00,470 12th St, New York City,NY,10001 +233162,AA Batteries (4-pack),1,3.84,2019-07-25 07:07:00,181 Jefferson St, Seattle,WA,98101 +233163,AA Batteries (4-pack),1,3.84,2019-07-23 07:43:00,233 14th St, Portland,OR,97035 +233164,Lightning Charging Cable,1,14.95,2019-07-03 22:32:00,86 Maple St, Los Angeles,CA,90001 +233165,Macbook Pro Laptop,1,1700.0,2019-07-06 17:19:00,460 Johnson St, San Francisco,CA,94016 +233166,Lightning Charging Cable,2,14.95,2019-07-30 19:34:00,289 Park St, Austin,TX,73301 +233167,Apple Airpods Headphones,1,150.0,2019-07-22 10:13:00,202 Pine St, San Francisco,CA,94016 +233168,AA Batteries (4-pack),1,3.84,2019-07-30 21:50:00,156 8th St, Seattle,WA,98101 +233168,Bose SoundSport Headphones,1,99.99,2019-07-30 21:50:00,156 8th St, Seattle,WA,98101 +233169,27in 4K Gaming Monitor,1,389.99,2019-07-15 18:32:00,118 Lakeview St, San Francisco,CA,94016 +233170,Wired Headphones,1,11.99,2019-07-15 18:48:00,744 Maple St, Boston,MA,02215 +233171,Apple Airpods Headphones,1,150.0,2019-07-16 08:41:00,996 Lakeview St, San Francisco,CA,94016 +233172,USB-C Charging Cable,1,11.95,2019-07-25 13:11:00,461 Chestnut St, New York City,NY,10001 +233173,27in FHD Monitor,1,149.99,2019-07-26 18:50:00,918 Spruce St, New York City,NY,10001 +233174,Apple Airpods Headphones,1,150.0,2019-07-06 14:07:00,33 13th St, New York City,NY,10001 +233175,Lightning Charging Cable,1,14.95,2019-07-27 13:31:00,485 Main St, Los Angeles,CA,90001 +233176,AA Batteries (4-pack),1,3.84,2019-07-19 22:09:00,837 Elm St, Austin,TX,73301 +233177,Lightning Charging Cable,2,14.95,2019-07-10 01:25:00,830 Center St, Portland,OR,97035 +233178,27in 4K Gaming Monitor,1,389.99,2019-07-23 09:29:00,198 Washington St, Dallas,TX,75001 +233179,AAA Batteries (4-pack),3,2.99,2019-07-15 15:15:00,6 Pine St, San Francisco,CA,94016 +233180,Apple Airpods Headphones,1,150.0,2019-07-17 07:26:00,340 9th St, Seattle,WA,98101 +233181,USB-C Charging Cable,1,11.95,2019-07-07 10:40:00,627 Willow St, Atlanta,GA,30301 +233182,Lightning Charging Cable,1,14.95,2019-07-22 16:28:00,987 Jackson St, Dallas,TX,75001 +233183,USB-C Charging Cable,1,11.95,2019-07-21 14:39:00,952 5th St, Atlanta,GA,30301 +233184,Wired Headphones,1,11.99,2019-07-02 18:54:00,138 5th St, Boston,MA,02215 +233185,AAA Batteries (4-pack),1,2.99,2019-07-24 11:14:00,712 14th St, San Francisco,CA,94016 +233186,Wired Headphones,1,11.99,2019-07-17 10:12:00,865 Cedar St, Seattle,WA,98101 +233187,Lightning Charging Cable,1,14.95,2019-07-04 18:39:00,168 Main St, New York City,NY,10001 +233188,AAA Batteries (4-pack),2,2.99,2019-07-24 08:39:00,194 Willow St, Boston,MA,02215 +233189,Wired Headphones,1,11.99,2019-07-23 14:14:00,973 Wilson St, San Francisco,CA,94016 +233190,Apple Airpods Headphones,1,150.0,2019-07-20 21:46:00,436 Pine St, Los Angeles,CA,90001 +233191,AA Batteries (4-pack),1,3.84,2019-07-26 00:10:00,679 8th St, Seattle,WA,98101 +233192,27in FHD Monitor,1,149.99,2019-07-05 12:54:00,189 Madison St, Seattle,WA,98101 +233193,AA Batteries (4-pack),1,3.84,2019-07-15 18:37:00,678 West St, San Francisco,CA,94016 +233194,USB-C Charging Cable,1,11.95,2019-07-07 13:23:00,994 5th St, Portland,OR,97035 +233195,AA Batteries (4-pack),1,3.84,2019-07-16 23:04:00,126 Willow St, San Francisco,CA,94016 +233196,AA Batteries (4-pack),1,3.84,2019-07-11 10:30:00,534 Cherry St, New York City,NY,10001 +233197,iPhone,1,700.0,2019-07-17 10:09:00,953 Adams St, San Francisco,CA,94016 +233197,Apple Airpods Headphones,1,150.0,2019-07-17 10:09:00,953 Adams St, San Francisco,CA,94016 +233198,Vareebadd Phone,1,400.0,2019-07-26 10:17:00,148 Willow St, Atlanta,GA,30301 +233199,Flatscreen TV,1,300.0,2019-07-26 20:21:00,112 Hill St, Dallas,TX,75001 +233200,AA Batteries (4-pack),3,3.84,2019-07-21 08:45:00,202 Maple St, Boston,MA,02215 +233200,34in Ultrawide Monitor,1,379.99,2019-07-21 08:45:00,202 Maple St, Boston,MA,02215 +233201,Bose SoundSport Headphones,1,99.99,2019-07-23 15:22:00,430 West St, San Francisco,CA,94016 +233202,Wired Headphones,1,11.99,2019-07-08 19:36:00,321 Adams St, Boston,MA,02215 +233203,Google Phone,1,600.0,2019-07-22 07:33:00,166 Church St, Portland,ME,04101 +233204,AAA Batteries (4-pack),1,2.99,2019-07-03 16:05:00,880 Lake St, Seattle,WA,98101 +233205,34in Ultrawide Monitor,1,379.99,2019-07-26 16:35:00,645 Elm St, Atlanta,GA,30301 +233206,Lightning Charging Cable,1,14.95,2019-07-13 21:13:00,377 Main St, San Francisco,CA,94016 +233207,20in Monitor,1,109.99,2019-07-02 00:52:00,868 6th St, Seattle,WA,98101 +233208,27in 4K Gaming Monitor,1,389.99,2019-07-27 19:43:00,138 Pine St, Austin,TX,73301 +233209,AA Batteries (4-pack),1,3.84,2019-07-18 13:21:00,394 Elm St, Portland,OR,97035 +233210,USB-C Charging Cable,3,11.95,2019-07-19 12:36:00,859 Willow St, New York City,NY,10001 +233211,Wired Headphones,1,11.99,2019-07-11 16:58:00,421 Lincoln St, San Francisco,CA,94016 +233212,AA Batteries (4-pack),1,3.84,2019-07-03 21:15:00,516 Hill St, Los Angeles,CA,90001 +233213,AA Batteries (4-pack),1,3.84,2019-07-22 12:06:00,827 Maple St, Austin,TX,73301 +233214,AAA Batteries (4-pack),6,2.99,2019-07-11 17:09:00,992 Jackson St, Boston,MA,02215 +233215,34in Ultrawide Monitor,1,379.99,2019-07-09 13:24:00,513 Adams St, Atlanta,GA,30301 +233216,Lightning Charging Cable,1,14.95,2019-07-18 13:47:00,672 Willow St, Los Angeles,CA,90001 +233217,27in FHD Monitor,1,149.99,2019-07-07 10:27:00,212 Forest St, Boston,MA,02215 +233218,34in Ultrawide Monitor,1,379.99,2019-07-29 12:55:00,622 Lincoln St, San Francisco,CA,94016 +233219,27in 4K Gaming Monitor,1,389.99,2019-07-05 20:24:00,967 7th St, Los Angeles,CA,90001 +233220,AAA Batteries (4-pack),3,2.99,2019-07-25 09:20:00,365 River St, Austin,TX,73301 +233221,Lightning Charging Cable,1,14.95,2019-08-01 02:33:00,520 River St, San Francisco,CA,94016 +233222,AAA Batteries (4-pack),1,2.99,2019-07-07 16:32:00,547 1st St, New York City,NY,10001 +233223,Lightning Charging Cable,1,14.95,2019-07-03 19:39:00,863 Cherry St, Atlanta,GA,30301 +233224,27in FHD Monitor,1,149.99,2019-07-01 15:40:00,565 8th St, Portland,OR,97035 +233225,Apple Airpods Headphones,1,150.0,2019-07-23 11:58:00,13 5th St, New York City,NY,10001 +233226,Lightning Charging Cable,1,14.95,2019-07-09 18:10:00,756 Dogwood St, Portland,ME,04101 +233227,Wired Headphones,1,11.99,2019-07-25 23:58:00,893 Hill St, San Francisco,CA,94016 +233228,iPhone,1,700.0,2019-07-05 16:59:00,673 Elm St, San Francisco,CA,94016 +233228,Lightning Charging Cable,1,14.95,2019-07-05 16:59:00,673 Elm St, San Francisco,CA,94016 +233229,AAA Batteries (4-pack),1,2.99,2019-07-29 16:34:00,456 Madison St, Los Angeles,CA,90001 +233230,Google Phone,1,600.0,2019-07-28 16:53:00,332 Walnut St, New York City,NY,10001 +233231,AAA Batteries (4-pack),1,2.99,2019-07-30 00:01:00,514 Highland St, San Francisco,CA,94016 +233232,AAA Batteries (4-pack),2,2.99,2019-07-01 20:21:00,828 Sunset St, San Francisco,CA,94016 +233233,Wired Headphones,1,11.99,2019-07-08 20:11:00,693 Hickory St, San Francisco,CA,94016 +233234,Flatscreen TV,1,300.0,2019-07-05 12:45:00,577 10th St, San Francisco,CA,94016 +233235,Wired Headphones,1,11.99,2019-07-05 20:17:00,55 8th St, Portland,ME,04101 +233236,AAA Batteries (4-pack),1,2.99,2019-07-13 14:38:00,20 Hickory St, Portland,OR,97035 +233237,Apple Airpods Headphones,1,150.0,2019-07-05 19:47:00,791 4th St, Seattle,WA,98101 +233238,Lightning Charging Cable,1,14.95,2019-07-21 11:35:00,541 9th St, San Francisco,CA,94016 +233238,Google Phone,1,600.0,2019-07-21 11:35:00,541 9th St, San Francisco,CA,94016 +233239,USB-C Charging Cable,1,11.95,2019-07-26 15:57:00,157 12th St, Seattle,WA,98101 +233240,Lightning Charging Cable,1,14.95,2019-07-01 10:15:00,829 Highland St, San Francisco,CA,94016 +233241,Flatscreen TV,1,300.0,2019-07-06 08:17:00,383 Pine St, San Francisco,CA,94016 +233242,AA Batteries (4-pack),1,3.84,2019-07-31 17:09:00,401 Lake St, Los Angeles,CA,90001 +233242,Bose SoundSport Headphones,1,99.99,2019-07-31 17:09:00,401 Lake St, Los Angeles,CA,90001 +233243,Flatscreen TV,1,300.0,2019-07-07 13:23:00,566 Lakeview St, San Francisco,CA,94016 +233244,Wired Headphones,2,11.99,2019-07-21 17:00:00,205 Johnson St, San Francisco,CA,94016 +233245,USB-C Charging Cable,1,11.95,2019-07-09 18:36:00,77 Main St, San Francisco,CA,94016 +233246,Flatscreen TV,1,300.0,2019-07-08 20:44:00,25 Hickory St, San Francisco,CA,94016 +233246,USB-C Charging Cable,2,11.95,2019-07-08 20:44:00,25 Hickory St, San Francisco,CA,94016 +233247,27in 4K Gaming Monitor,1,389.99,2019-07-22 13:15:00,326 13th St, San Francisco,CA,94016 +233248,Wired Headphones,1,11.99,2019-07-09 16:49:00,631 Cedar St, San Francisco,CA,94016 +233249,Flatscreen TV,1,300.0,2019-07-11 20:48:00,499 Park St, Atlanta,GA,30301 +233250,USB-C Charging Cable,1,11.95,2019-07-18 08:42:00,933 4th St, Dallas,TX,75001 +233251,Wired Headphones,1,11.99,2019-07-18 13:42:00,801 River St, New York City,NY,10001 +233252,34in Ultrawide Monitor,1,379.99,2019-07-15 00:23:00,90 Adams St, New York City,NY,10001 +233253,20in Monitor,1,109.99,2019-07-12 16:23:00,451 2nd St, New York City,NY,10001 +233254,Apple Airpods Headphones,1,150.0,2019-07-03 12:05:00,793 Wilson St, Atlanta,GA,30301 +233255,Lightning Charging Cable,1,14.95,2019-07-03 16:32:00,499 12th St, San Francisco,CA,94016 +233256,Macbook Pro Laptop,1,1700.0,2019-07-13 23:58:00,469 Elm St, San Francisco,CA,94016 +233257,27in 4K Gaming Monitor,1,389.99,2019-07-05 18:12:00,48 13th St, Seattle,WA,98101 +233258,Macbook Pro Laptop,1,1700.0,2019-07-24 21:36:00,81 13th St, San Francisco,CA,94016 +233259,AAA Batteries (4-pack),1,2.99,2019-07-10 07:46:00,59 Hill St, San Francisco,CA,94016 +233260,AAA Batteries (4-pack),1,2.99,2019-07-11 10:58:00,677 11th St, Seattle,WA,98101 +233261,USB-C Charging Cable,2,11.95,2019-07-07 09:45:00,34 Chestnut St, San Francisco,CA,94016 +233262,Bose SoundSport Headphones,1,99.99,2019-07-14 11:35:00,753 North St, San Francisco,CA,94016 +233263,USB-C Charging Cable,1,11.95,2019-07-08 12:04:00,240 Hickory St, San Francisco,CA,94016 +233264,USB-C Charging Cable,2,11.95,2019-07-16 10:23:00,110 Spruce St, Los Angeles,CA,90001 +233265,AA Batteries (4-pack),1,3.84,2019-07-04 14:41:00,741 West St, Dallas,TX,75001 +233266,34in Ultrawide Monitor,1,379.99,2019-07-07 21:13:00,883 Forest St, Boston,MA,02215 +233267,AA Batteries (4-pack),1,3.84,2019-07-02 10:37:00,843 River St, Los Angeles,CA,90001 +233268,27in 4K Gaming Monitor,1,389.99,2019-07-09 19:09:00,897 River St, San Francisco,CA,94016 +233269,USB-C Charging Cable,1,11.95,2019-07-25 08:51:00,99 Lakeview St, San Francisco,CA,94016 +233270,USB-C Charging Cable,2,11.95,2019-07-03 10:42:00,354 Cedar St, Austin,TX,73301 +233271,USB-C Charging Cable,2,11.95,2019-07-13 14:06:00,230 Jefferson St, Austin,TX,73301 +233272,Bose SoundSport Headphones,1,99.99,2019-07-18 07:17:00,894 5th St, San Francisco,CA,94016 +233273,Lightning Charging Cable,1,14.95,2019-07-25 01:03:00,859 9th St, Seattle,WA,98101 +233274,Wired Headphones,1,11.99,2019-07-09 08:24:00,644 8th St, San Francisco,CA,94016 +233275,Lightning Charging Cable,1,14.95,2019-07-13 12:10:00,197 Forest St, Atlanta,GA,30301 +233276,Lightning Charging Cable,1,14.95,2019-07-08 07:25:00,139 Madison St, Dallas,TX,75001 +233277,Wired Headphones,1,11.99,2019-07-28 08:10:00,203 7th St, Los Angeles,CA,90001 +233278,AAA Batteries (4-pack),3,2.99,2019-07-08 22:12:00,575 Lincoln St, Portland,OR,97035 +233279,AAA Batteries (4-pack),2,2.99,2019-07-12 22:16:00,918 12th St, San Francisco,CA,94016 +233280,iPhone,1,700.0,2019-07-25 15:54:00,137 Cherry St, Portland,OR,97035 +233280,Lightning Charging Cable,1,14.95,2019-07-25 15:54:00,137 Cherry St, Portland,OR,97035 +233281,AAA Batteries (4-pack),1,2.99,2019-07-12 15:08:00,224 Meadow St, Boston,MA,02215 +233282,USB-C Charging Cable,1,11.95,2019-07-02 06:25:00,145 Lincoln St, San Francisco,CA,94016 +233283,ThinkPad Laptop,1,999.99,2019-07-22 15:15:00,106 Johnson St, San Francisco,CA,94016 +233283,Bose SoundSport Headphones,1,99.99,2019-07-22 15:15:00,106 Johnson St, San Francisco,CA,94016 +233284,34in Ultrawide Monitor,1,379.99,2019-07-21 20:50:00,301 River St, Austin,TX,73301 +233285,Apple Airpods Headphones,1,150.0,2019-07-27 21:03:00,620 9th St, Atlanta,GA,30301 +233286,Lightning Charging Cable,1,14.95,2019-07-18 20:36:00,431 Cherry St, Portland,ME,04101 +233287,Lightning Charging Cable,1,14.95,2019-07-29 21:27:00,214 Jefferson St, San Francisco,CA,94016 +233288,Wired Headphones,1,11.99,2019-07-05 00:23:00,611 2nd St, Austin,TX,73301 +233289,AA Batteries (4-pack),1,3.84,2019-07-03 13:34:00,288 Sunset St, Los Angeles,CA,90001 +233290,Bose SoundSport Headphones,1,99.99,2019-07-17 13:20:00,914 River St, New York City,NY,10001 +233291,Lightning Charging Cable,2,14.95,2019-07-21 01:53:00,622 Madison St, Dallas,TX,75001 +233292,AAA Batteries (4-pack),1,2.99,2019-07-12 20:20:00,433 North St, New York City,NY,10001 +233293,Wired Headphones,1,11.99,2019-07-14 15:03:00,65 5th St, Seattle,WA,98101 +233294,USB-C Charging Cable,1,11.95,2019-07-10 21:06:00,701 Park St, New York City,NY,10001 +233295,Apple Airpods Headphones,1,150.0,2019-07-06 18:40:00,536 Park St, San Francisco,CA,94016 +233296,Apple Airpods Headphones,1,150.0,2019-07-04 00:21:00,973 Willow St, New York City,NY,10001 +233297,ThinkPad Laptop,1,999.99,2019-07-25 17:01:00,197 Center St, Austin,TX,73301 +233298,20in Monitor,1,109.99,2019-07-14 13:51:00,524 Lakeview St, Boston,MA,02215 +233299,Bose SoundSport Headphones,1,99.99,2019-07-19 19:55:00,380 Maple St, New York City,NY,10001 +233300,Wired Headphones,1,11.99,2019-07-22 22:18:00,136 South St, Portland,OR,97035 +233301,Bose SoundSport Headphones,1,99.99,2019-07-03 08:30:00,144 Church St, Seattle,WA,98101 +233302,Lightning Charging Cable,1,14.95,2019-07-09 21:23:00,37 Spruce St, Austin,TX,73301 +233303,Lightning Charging Cable,1,14.95,2019-07-20 14:47:00,79 4th St, Boston,MA,02215 +233304,ThinkPad Laptop,1,999.99,2019-07-21 23:23:00,768 6th St, San Francisco,CA,94016 +233305,AA Batteries (4-pack),3,3.84,2019-07-10 19:27:00,18 Dogwood St, Los Angeles,CA,90001 +233306,Google Phone,1,600.0,2019-07-01 09:15:00,127 4th St, New York City,NY,10001 +233307,34in Ultrawide Monitor,1,379.99,2019-07-08 05:25:00,541 Lake St, Portland,OR,97035 +233308,Bose SoundSport Headphones,1,99.99,2019-07-12 13:36:00,339 14th St, San Francisco,CA,94016 +233309,20in Monitor,1,109.99,2019-07-27 00:03:00,120 4th St, Los Angeles,CA,90001 +233310,AAA Batteries (4-pack),4,2.99,2019-07-22 08:08:00,126 Cherry St, San Francisco,CA,94016 +233311,Apple Airpods Headphones,1,150.0,2019-07-04 13:50:00,864 Dogwood St, Atlanta,GA,30301 +233312,34in Ultrawide Monitor,1,379.99,2019-07-10 19:48:00,174 6th St, San Francisco,CA,94016 +233313,27in 4K Gaming Monitor,1,389.99,2019-07-19 05:55:00,471 Ridge St, Portland,OR,97035 +233314,Lightning Charging Cable,1,14.95,2019-07-18 15:04:00,237 4th St, Boston,MA,02215 +233315,Bose SoundSport Headphones,1,99.99,2019-07-10 04:41:00,783 Dogwood St, Atlanta,GA,30301 +233316,Macbook Pro Laptop,1,1700.0,2019-07-28 20:43:00,231 2nd St, Boston,MA,02215 +233317,34in Ultrawide Monitor,1,379.99,2019-07-31 15:44:00,805 Lake St, New York City,NY,10001 +233318,Apple Airpods Headphones,1,150.0,2019-07-29 11:33:00,567 Pine St, Portland,ME,04101 +233319,27in 4K Gaming Monitor,1,389.99,2019-07-28 00:47:00,95 Lakeview St, Boston,MA,02215 +233320,34in Ultrawide Monitor,1,379.99,2019-07-17 20:48:00,323 Main St, Los Angeles,CA,90001 +233321,iPhone,1,700.0,2019-07-27 01:03:00,73 Church St, Dallas,TX,75001 +233322,AA Batteries (4-pack),3,3.84,2019-07-11 17:36:00,41 9th St, Los Angeles,CA,90001 +233323,AA Batteries (4-pack),1,3.84,2019-07-09 00:52:00,252 Willow St, San Francisco,CA,94016 +233324,Wired Headphones,1,11.99,2019-07-18 18:16:00,487 11th St, Austin,TX,73301 +233325,AAA Batteries (4-pack),1,2.99,2019-07-10 22:22:00,852 Madison St, Los Angeles,CA,90001 +233326,34in Ultrawide Monitor,1,379.99,2019-07-12 10:22:00,704 6th St, Boston,MA,02215 +233327,Wired Headphones,1,11.99,2019-07-02 05:25:00,510 Johnson St, Los Angeles,CA,90001 +233328,Lightning Charging Cable,1,14.95,2019-07-27 11:19:00,740 6th St, San Francisco,CA,94016 +233329,Bose SoundSport Headphones,1,99.99,2019-07-05 20:15:00,176 Madison St, Dallas,TX,75001 +233330,Lightning Charging Cable,1,14.95,2019-07-02 15:34:00,403 4th St, Portland,OR,97035 +233331,USB-C Charging Cable,1,11.95,2019-07-07 13:54:00,316 Jefferson St, New York City,NY,10001 +233332,AAA Batteries (4-pack),3,2.99,2019-07-09 12:35:00,773 Lakeview St, San Francisco,CA,94016 +233333,AA Batteries (4-pack),1,3.84,2019-07-07 12:43:00,935 Maple St, New York City,NY,10001 +233334,USB-C Charging Cable,1,11.95,2019-07-04 13:29:00,8 Madison St, Los Angeles,CA,90001 +233335,AAA Batteries (4-pack),1,2.99,2019-07-12 17:47:00,445 4th St, Dallas,TX,75001 +233336,Lightning Charging Cable,1,14.95,2019-07-28 14:09:00,485 South St, San Francisco,CA,94016 +233337,USB-C Charging Cable,1,11.95,2019-07-15 13:21:00,883 Highland St, San Francisco,CA,94016 +233338,27in 4K Gaming Monitor,1,389.99,2019-07-05 09:05:00,964 Hill St, San Francisco,CA,94016 +233339,Apple Airpods Headphones,1,150.0,2019-07-28 19:22:00,339 Cherry St, Austin,TX,73301 +233340,AAA Batteries (4-pack),1,2.99,2019-07-20 18:15:00,906 Meadow St, San Francisco,CA,94016 +233341,ThinkPad Laptop,1,999.99,2019-07-25 10:40:00,553 8th St, New York City,NY,10001 +233342,Lightning Charging Cable,1,14.95,2019-07-21 09:08:00,261 River St, San Francisco,CA,94016 +233343,LG Dryer,1,600.0,2019-07-12 22:01:00,379 14th St, Austin,TX,73301 +233344,Lightning Charging Cable,2,14.95,2019-07-05 16:38:00,349 Sunset St, New York City,NY,10001 +233345,Apple Airpods Headphones,1,150.0,2019-07-07 16:56:00,769 Jackson St, Atlanta,GA,30301 +233346,AAA Batteries (4-pack),2,2.99,2019-07-19 08:23:00,53 4th St, San Francisco,CA,94016 +233347,Wired Headphones,1,11.99,2019-07-26 03:02:00,47 Hill St, Austin,TX,73301 +233348,27in FHD Monitor,1,149.99,2019-07-19 12:56:00,666 North St, Atlanta,GA,30301 +233349,USB-C Charging Cable,2,11.95,2019-07-14 14:46:00,54 Hickory St, San Francisco,CA,94016 +233350,AA Batteries (4-pack),1,3.84,2019-07-29 12:55:00,80 Sunset St, Boston,MA,02215 +233351,Wired Headphones,1,11.99,2019-07-04 15:34:00,126 West St, Seattle,WA,98101 +233352,Lightning Charging Cable,2,14.95,2019-07-02 12:17:00,340 Center St, San Francisco,CA,94016 +233353,Wired Headphones,1,11.99,2019-07-09 17:57:00,74 Maple St, Portland,ME,04101 +233354,USB-C Charging Cable,1,11.95,2019-07-21 21:35:00,631 Hill St, Boston,MA,02215 +233355,LG Dryer,1,600.0,2019-07-08 21:11:00,579 13th St, Atlanta,GA,30301 +233356,27in FHD Monitor,1,149.99,2019-07-05 14:27:00,224 Church St, Los Angeles,CA,90001 +233357,Apple Airpods Headphones,1,150.0,2019-07-04 16:12:00,492 Willow St, Los Angeles,CA,90001 +233358,Bose SoundSport Headphones,1,99.99,2019-07-14 14:08:00,905 Lincoln St, Los Angeles,CA,90001 +233359,Apple Airpods Headphones,1,150.0,2019-07-28 17:51:00,357 13th St, San Francisco,CA,94016 +233360,20in Monitor,1,109.99,2019-07-21 15:14:00,908 Chestnut St, New York City,NY,10001 +233361,LG Washing Machine,1,600.0,2019-07-07 22:10:00,434 14th St, Los Angeles,CA,90001 +233362,AAA Batteries (4-pack),1,2.99,2019-07-25 17:53:00,494 Jackson St, New York City,NY,10001 +233363,34in Ultrawide Monitor,1,379.99,2019-07-04 09:50:00,996 Pine St, New York City,NY,10001 +233364,20in Monitor,1,109.99,2019-07-12 19:16:00,249 Sunset St, San Francisco,CA,94016 +233365,USB-C Charging Cable,1,11.95,2019-07-16 14:39:00,181 South St, Portland,OR,97035 +233366,USB-C Charging Cable,1,11.95,2019-07-06 07:26:00,767 Park St, New York City,NY,10001 +233367,Wired Headphones,1,11.99,2019-07-21 23:14:00,428 Forest St, Los Angeles,CA,90001 +233368,iPhone,1,700.0,2019-07-26 16:32:00,386 Elm St, San Francisco,CA,94016 +233368,Lightning Charging Cable,1,14.95,2019-07-26 16:32:00,386 Elm St, San Francisco,CA,94016 +233369,USB-C Charging Cable,1,11.95,2019-07-17 22:51:00,106 Cherry St, San Francisco,CA,94016 +233370,Wired Headphones,1,11.99,2019-07-14 17:28:00,634 Meadow St, San Francisco,CA,94016 +233371,Flatscreen TV,1,300.0,2019-07-07 20:04:00,554 River St, Portland,OR,97035 +233372,27in 4K Gaming Monitor,1,389.99,2019-07-24 02:01:00,601 Highland St, Los Angeles,CA,90001 +233373,20in Monitor,1,109.99,2019-07-26 21:28:00,782 Park St, New York City,NY,10001 +233374,Google Phone,1,600.0,2019-07-08 17:05:00,36 Adams St, Los Angeles,CA,90001 +233374,USB-C Charging Cable,1,11.95,2019-07-08 17:05:00,36 Adams St, Los Angeles,CA,90001 +233375,USB-C Charging Cable,1,11.95,2019-07-16 15:33:00,946 2nd St, New York City,NY,10001 +233376,AAA Batteries (4-pack),1,2.99,2019-07-25 20:36:00,408 8th St, Boston,MA,02215 +233377,Flatscreen TV,1,300.0,2019-07-15 22:45:00,813 Jackson St, San Francisco,CA,94016 +233378,27in FHD Monitor,1,149.99,2019-07-06 11:33:00,540 Pine St, San Francisco,CA,94016 +233379,USB-C Charging Cable,1,11.95,2019-07-26 11:45:00,131 South St, New York City,NY,10001 +233380,Lightning Charging Cable,1,14.95,2019-07-22 11:26:00,636 Chestnut St, Atlanta,GA,30301 +233381,Google Phone,1,600.0,2019-07-30 09:35:00,690 10th St, New York City,NY,10001 +233382,AA Batteries (4-pack),1,3.84,2019-07-07 21:46:00,146 Jackson St, Boston,MA,02215 +233383,AA Batteries (4-pack),1,3.84,2019-07-13 18:06:00,966 Chestnut St, Portland,OR,97035 +233384,USB-C Charging Cable,1,11.95,2019-07-23 06:51:00,72 Cedar St, Atlanta,GA,30301 +233385,iPhone,1,700.0,2019-07-21 20:54:00,918 4th St, Boston,MA,02215 +233386,iPhone,1,700.0,2019-07-27 09:02:00,925 Park St, Austin,TX,73301 +233386,Lightning Charging Cable,1,14.95,2019-07-27 09:02:00,925 Park St, Austin,TX,73301 +233387,iPhone,1,700.0,2019-07-13 10:15:00,442 Hill St, New York City,NY,10001 +233388,Google Phone,1,600.0,2019-07-12 12:08:00,784 South St, San Francisco,CA,94016 +233389,AAA Batteries (4-pack),1,2.99,2019-07-25 13:55:00,330 Main St, Los Angeles,CA,90001 +233390,Bose SoundSport Headphones,1,99.99,2019-07-01 08:38:00,833 8th St, New York City,NY,10001 +233391,34in Ultrawide Monitor,1,379.99,2019-07-21 13:50:00,686 Madison St, Boston,MA,02215 +233392,USB-C Charging Cable,1,11.95,2019-07-22 09:44:00,224 Madison St, New York City,NY,10001 +233393,iPhone,1,700.0,2019-07-07 13:41:00,81 Adams St, New York City,NY,10001 +233394,iPhone,1,700.0,2019-07-25 17:07:00,967 South St, San Francisco,CA,94016 +233395,AA Batteries (4-pack),1,3.84,2019-07-28 19:14:00,248 Walnut St, Dallas,TX,75001 +233396,USB-C Charging Cable,1,11.95,2019-07-13 05:25:00,888 South St, New York City,NY,10001 +233397,27in 4K Gaming Monitor,1,389.99,2019-07-12 23:58:00,905 Cedar St, Atlanta,GA,30301 +233398,iPhone,1,700.0,2019-07-08 13:18:00,902 Park St, San Francisco,CA,94016 +233399,Apple Airpods Headphones,1,150.0,2019-07-09 12:33:00,339 11th St, New York City,NY,10001 +233400,iPhone,1,700.0,2019-07-12 22:52:00,782 2nd St, Boston,MA,02215 +233400,Lightning Charging Cable,1,14.95,2019-07-12 22:52:00,782 2nd St, Boston,MA,02215 +233401,USB-C Charging Cable,1,11.95,2019-07-02 12:13:00,771 5th St, Boston,MA,02215 +233402,Flatscreen TV,1,300.0,2019-07-27 14:40:00,889 7th St, San Francisco,CA,94016 +233403,USB-C Charging Cable,2,11.95,2019-07-22 07:59:00,245 1st St, San Francisco,CA,94016 +233404,AAA Batteries (4-pack),1,2.99,2019-07-06 19:09:00,684 Washington St, Austin,TX,73301 +233405,Lightning Charging Cable,1,14.95,2019-07-30 16:29:00,163 Forest St, San Francisco,CA,94016 +233406,ThinkPad Laptop,1,999.99,2019-07-17 15:00:00,998 1st St, Austin,TX,73301 +233407,Bose SoundSport Headphones,1,99.99,2019-07-06 08:32:00,399 Church St, Austin,TX,73301 +233408,Bose SoundSport Headphones,1,99.99,2019-07-10 21:55:00,844 Madison St, Portland,OR,97035 +233409,iPhone,1,700.0,2019-07-16 10:16:00,107 River St, Boston,MA,02215 +233410,Lightning Charging Cable,1,14.95,2019-07-25 15:42:00,531 Lake St, Portland,OR,97035 +233411,27in 4K Gaming Monitor,1,389.99,2019-07-12 06:32:00,216 North St, San Francisco,CA,94016 +233412,USB-C Charging Cable,1,11.95,2019-07-20 20:09:00,489 Adams St, San Francisco,CA,94016 +233413,AA Batteries (4-pack),1,3.84,2019-07-13 10:49:00,347 Pine St, Boston,MA,02215 +233414,Google Phone,1,600.0,2019-07-14 18:39:00,674 Church St, New York City,NY,10001 +233415,Apple Airpods Headphones,1,150.0,2019-07-17 19:42:00,802 4th St, New York City,NY,10001 +233416,AAA Batteries (4-pack),4,2.99,2019-07-05 09:49:00,265 Center St, Seattle,WA,98101 +233417,Wired Headphones,1,11.99,2019-07-17 06:42:00,268 Jackson St, Los Angeles,CA,90001 +233418,Lightning Charging Cable,1,14.95,2019-07-28 11:40:00,228 1st St, Dallas,TX,75001 +233419,AA Batteries (4-pack),1,3.84,2019-07-18 08:21:00,704 Cherry St, San Francisco,CA,94016 +233420,27in FHD Monitor,1,149.99,2019-07-16 11:46:00,366 14th St, San Francisco,CA,94016 +233421,USB-C Charging Cable,2,11.95,2019-07-19 09:59:00,69 Adams St, Boston,MA,02215 +233422,Apple Airpods Headphones,1,150.0,2019-07-25 22:34:00,701 North St, San Francisco,CA,94016 +233423,AA Batteries (4-pack),1,3.84,2019-07-19 11:22:00,982 Sunset St, New York City,NY,10001 +233424,Macbook Pro Laptop,1,1700.0,2019-07-14 15:37:00,670 North St, Dallas,TX,75001 +233425,iPhone,1,700.0,2019-07-22 17:06:00,669 Adams St, Dallas,TX,75001 +233425,Lightning Charging Cable,1,14.95,2019-07-22 17:06:00,669 Adams St, Dallas,TX,75001 +233426,Wired Headphones,1,11.99,2019-07-07 08:48:00,246 Highland St, Dallas,TX,75001 +233427,AA Batteries (4-pack),1,3.84,2019-07-28 20:26:00,142 Pine St, San Francisco,CA,94016 +233428,34in Ultrawide Monitor,1,379.99,2019-07-22 20:44:00,331 7th St, New York City,NY,10001 +233429,iPhone,1,700.0,2019-07-01 10:45:00,493 4th St, Los Angeles,CA,90001 +233430,Apple Airpods Headphones,1,150.0,2019-07-19 03:19:00,82 Maple St, San Francisco,CA,94016 +233431,Google Phone,1,600.0,2019-07-29 23:24:00,996 Main St, San Francisco,CA,94016 +233432,Apple Airpods Headphones,1,150.0,2019-07-08 19:56:00,999 4th St, Portland,OR,97035 +233433,AA Batteries (4-pack),2,3.84,2019-07-09 08:54:00,834 Main St, San Francisco,CA,94016 +233433,Apple Airpods Headphones,1,150.0,2019-07-09 08:54:00,834 Main St, San Francisco,CA,94016 +233434,Wired Headphones,1,11.99,2019-07-27 08:34:00,253 Hill St, Portland,ME,04101 +233435,AA Batteries (4-pack),1,3.84,2019-07-03 07:50:00,612 4th St, Los Angeles,CA,90001 +233436,AA Batteries (4-pack),2,3.84,2019-07-06 13:09:00,727 Johnson St, San Francisco,CA,94016 +233437,Lightning Charging Cable,1,14.95,2019-07-10 10:06:00,512 Hickory St, Atlanta,GA,30301 +233438,27in 4K Gaming Monitor,1,389.99,2019-07-21 12:24:00,392 Church St, San Francisco,CA,94016 +233439,Bose SoundSport Headphones,1,99.99,2019-07-20 20:11:00,234 Lincoln St, Dallas,TX,75001 +233440,USB-C Charging Cable,1,11.95,2019-07-23 14:54:00,759 Sunset St, Atlanta,GA,30301 +233441,Lightning Charging Cable,1,14.95,2019-07-11 20:08:00,185 5th St, Los Angeles,CA,90001 +233442,Lightning Charging Cable,2,14.95,2019-07-11 15:57:00,125 Jackson St, San Francisco,CA,94016 +233443,AA Batteries (4-pack),1,3.84,2019-07-31 15:40:00,963 11th St, Austin,TX,73301 +233444,Lightning Charging Cable,4,14.95,2019-07-12 20:46:00,740 Jefferson St, Boston,MA,02215 +233445,USB-C Charging Cable,1,11.95,2019-07-04 07:19:00,523 Spruce St, Dallas,TX,75001 +233446,AA Batteries (4-pack),1,3.84,2019-07-09 19:20:00,529 11th St, San Francisco,CA,94016 +233447,AAA Batteries (4-pack),1,2.99,2019-07-07 21:27:00,293 West St, San Francisco,CA,94016 +233448,Lightning Charging Cable,1,14.95,2019-07-28 21:09:00,147 6th St, San Francisco,CA,94016 +233449,LG Washing Machine,1,600.0,2019-07-27 13:10:00,777 Cedar St, New York City,NY,10001 +233450,iPhone,1,700.0,2019-07-12 13:59:00,693 8th St, Dallas,TX,75001 +233451,AA Batteries (4-pack),1,3.84,2019-07-23 11:02:00,39 Washington St, New York City,NY,10001 +233452,AAA Batteries (4-pack),1,2.99,2019-07-04 21:22:00,6 Washington St, Los Angeles,CA,90001 +233453,LG Dryer,1,600.0,2019-07-19 23:05:00,941 Maple St, Los Angeles,CA,90001 +233454,Lightning Charging Cable,1,14.95,2019-07-20 11:13:00,688 Jackson St, New York City,NY,10001 +233455,Lightning Charging Cable,1,14.95,2019-07-23 13:06:00,312 11th St, San Francisco,CA,94016 +233456,34in Ultrawide Monitor,1,379.99,2019-07-16 00:03:00,428 Sunset St, New York City,NY,10001 +233457,USB-C Charging Cable,1,11.95,2019-07-04 17:56:00,878 Hickory St, Portland,ME,04101 +233458,20in Monitor,1,109.99,2019-07-30 01:51:00,717 13th St, Atlanta,GA,30301 +233459,Flatscreen TV,1,300.0,2019-07-04 16:45:00,750 9th St, San Francisco,CA,94016 +233460,34in Ultrawide Monitor,1,379.99,2019-07-18 10:58:00,552 Spruce St, New York City,NY,10001 +233461,AAA Batteries (4-pack),1,2.99,2019-07-29 11:31:00,340 Chestnut St, New York City,NY,10001 +233462,34in Ultrawide Monitor,1,379.99,2019-07-14 14:25:00,756 Willow St, Portland,ME,04101 +233463,AA Batteries (4-pack),2,3.84,2019-07-17 17:51:00,663 Jackson St, San Francisco,CA,94016 +233464,Apple Airpods Headphones,1,150.0,2019-07-11 11:05:00,32 Wilson St, Atlanta,GA,30301 +233465,Wired Headphones,1,11.99,2019-07-18 12:14:00,869 10th St, Boston,MA,02215 +233466,27in 4K Gaming Monitor,1,389.99,2019-07-05 22:08:00,988 Walnut St, Los Angeles,CA,90001 +233467,AAA Batteries (4-pack),2,2.99,2019-07-28 21:00:00,871 Hill St, Los Angeles,CA,90001 +233468,Wired Headphones,2,11.99,2019-07-03 14:46:00,4 Ridge St, Dallas,TX,75001 +233468,AA Batteries (4-pack),1,3.84,2019-07-03 14:46:00,4 Ridge St, Dallas,TX,75001 +233469,AA Batteries (4-pack),1,3.84,2019-07-26 09:58:00,228 Lakeview St, Los Angeles,CA,90001 +233470,AAA Batteries (4-pack),1,2.99,2019-07-07 16:20:00,40 Jefferson St, Boston,MA,02215 +233471,Apple Airpods Headphones,1,150.0,2019-07-13 11:02:00,726 Lakeview St, Portland,OR,97035 +233472,USB-C Charging Cable,1,11.95,2019-07-27 20:32:00,510 Hill St, New York City,NY,10001 +233473,Wired Headphones,1,11.99,2019-07-30 10:45:00,756 Jefferson St, San Francisco,CA,94016 +233474,Apple Airpods Headphones,1,150.0,2019-07-01 13:55:00,605 1st St, Atlanta,GA,30301 +233475,USB-C Charging Cable,1,11.95,2019-07-16 01:12:00,887 4th St, New York City,NY,10001 +233476,34in Ultrawide Monitor,1,379.99,2019-07-17 18:10:00,236 West St, Portland,OR,97035 +233477,27in FHD Monitor,1,149.99,2019-07-06 19:37:00,538 12th St, Seattle,WA,98101 +233478,Macbook Pro Laptop,1,1700.0,2019-07-12 18:26:00,579 Forest St, Los Angeles,CA,90001 +233479,USB-C Charging Cable,1,11.95,2019-07-10 12:49:00,98 Pine St, Atlanta,GA,30301 +233480,Bose SoundSport Headphones,1,99.99,2019-07-25 13:39:00,876 Hill St, Boston,MA,02215 +233481,Apple Airpods Headphones,1,150.0,2019-07-22 15:56:00,288 6th St, San Francisco,CA,94016 +233482,Apple Airpods Headphones,1,150.0,2019-07-28 07:09:00,411 South St, San Francisco,CA,94016 +233483,Apple Airpods Headphones,1,150.0,2019-07-02 18:37:00,639 7th St, Dallas,TX,75001 +233484,Macbook Pro Laptop,1,1700.0,2019-07-25 17:34:00,7 11th St, Seattle,WA,98101 +233485,AA Batteries (4-pack),1,3.84,2019-07-21 13:03:00,241 Adams St, Los Angeles,CA,90001 +233486,Lightning Charging Cable,1,14.95,2019-07-21 10:05:00,94 Dogwood St, Los Angeles,CA,90001 +233487,Apple Airpods Headphones,1,150.0,2019-07-08 16:20:00,838 Jefferson St, San Francisco,CA,94016 +233488,27in FHD Monitor,1,149.99,2019-07-14 18:41:00,326 Center St, San Francisco,CA,94016 +233489,AAA Batteries (4-pack),1,2.99,2019-07-21 17:40:00,251 Wilson St, New York City,NY,10001 +233490,Macbook Pro Laptop,1,1700.0,2019-07-08 12:10:00,425 Lake St, New York City,NY,10001 +233491,34in Ultrawide Monitor,1,379.99,2019-07-02 19:18:00,343 Pine St, Los Angeles,CA,90001 +233492,Wired Headphones,1,11.99,2019-07-16 10:24:00,197 10th St, San Francisco,CA,94016 +233493,Flatscreen TV,1,300.0,2019-07-03 11:38:00,336 Madison St, San Francisco,CA,94016 +233494,USB-C Charging Cable,1,11.95,2019-07-13 18:21:00,216 8th St, Boston,MA,02215 +233495,AAA Batteries (4-pack),1,2.99,2019-07-17 09:10:00,56 Chestnut St, Portland,ME,04101 +233496,Apple Airpods Headphones,1,150.0,2019-07-23 10:41:00,687 Dogwood St, New York City,NY,10001 +233497,27in FHD Monitor,1,149.99,2019-07-10 19:30:00,94 Pine St, Atlanta,GA,30301 +233498,AAA Batteries (4-pack),1,2.99,2019-07-19 12:19:00,216 13th St, Dallas,TX,75001 +233499,AA Batteries (4-pack),1,3.84,2019-07-08 19:43:00,660 South St, San Francisco,CA,94016 +233500,USB-C Charging Cable,1,11.95,2019-07-08 14:28:00,848 9th St, Boston,MA,02215 +233501,Bose SoundSport Headphones,1,99.99,2019-07-27 17:42:00,23 10th St, Seattle,WA,98101 +233502,AAA Batteries (4-pack),2,2.99,2019-07-12 22:01:00,771 1st St, Boston,MA,02215 +233503,Lightning Charging Cable,1,14.95,2019-07-18 23:49:00,665 Johnson St, Boston,MA,02215 +233504,27in FHD Monitor,1,149.99,2019-07-29 17:50:00,259 6th St, Los Angeles,CA,90001 +233505,Lightning Charging Cable,2,14.95,2019-07-30 14:33:00,253 Lakeview St, Boston,MA,02215 +233506,27in 4K Gaming Monitor,1,389.99,2019-07-04 12:12:00,370 Johnson St, San Francisco,CA,94016 +233507,Wired Headphones,1,11.99,2019-07-02 10:56:00,561 West St, San Francisco,CA,94016 +233508,AAA Batteries (4-pack),1,2.99,2019-07-25 21:18:00,828 Sunset St, San Francisco,CA,94016 +233509,Wired Headphones,1,11.99,2019-07-15 13:31:00,630 7th St, San Francisco,CA,94016 +233510,AA Batteries (4-pack),1,3.84,2019-07-25 03:18:00,223 Cedar St, San Francisco,CA,94016 +233511,Bose SoundSport Headphones,1,99.99,2019-07-10 06:54:00,892 12th St, New York City,NY,10001 +233512,Wired Headphones,1,11.99,2019-07-18 06:43:00,905 Chestnut St, Boston,MA,02215 +233513,USB-C Charging Cable,1,11.95,2019-07-31 16:58:00,999 Chestnut St, Boston,MA,02215 +233514,Bose SoundSport Headphones,1,99.99,2019-07-01 21:17:00,234 Wilson St, Los Angeles,CA,90001 +233515,Apple Airpods Headphones,1,150.0,2019-07-20 16:32:00,69 Pine St, New York City,NY,10001 +233516,Bose SoundSport Headphones,1,99.99,2019-07-03 18:24:00,21 Lakeview St, New York City,NY,10001 +233517,Bose SoundSport Headphones,1,99.99,2019-07-07 22:50:00,981 Cedar St, New York City,NY,10001 +233518,Macbook Pro Laptop,1,1700.0,2019-07-29 15:59:00,233 Meadow St, San Francisco,CA,94016 +233519,27in 4K Gaming Monitor,1,389.99,2019-07-27 21:48:00,385 8th St, Boston,MA,02215 +233520,USB-C Charging Cable,1,11.95,2019-07-11 14:58:00,448 Elm St, Atlanta,GA,30301 +233521,Wired Headphones,1,11.99,2019-07-17 13:16:00,259 Cedar St, Atlanta,GA,30301 +233522,Wired Headphones,1,11.99,2019-07-26 07:35:00,745 Willow St, Portland,OR,97035 +233523,AAA Batteries (4-pack),1,2.99,2019-07-27 16:19:00,870 Ridge St, Boston,MA,02215 +233524,Vareebadd Phone,1,400.0,2019-07-14 15:20:00,550 8th St, San Francisco,CA,94016 +233525,USB-C Charging Cable,1,11.95,2019-07-08 00:40:00,802 River St, Atlanta,GA,30301 +233526,USB-C Charging Cable,1,11.95,2019-07-11 00:33:00,10 Hickory St, Los Angeles,CA,90001 +233527,34in Ultrawide Monitor,1,379.99,2019-07-03 10:38:00,804 Main St, Los Angeles,CA,90001 +233528,27in FHD Monitor,1,149.99,2019-07-04 18:52:00,960 Highland St, San Francisco,CA,94016 +233529,27in 4K Gaming Monitor,1,389.99,2019-07-03 10:47:00,839 Main St, Atlanta,GA,30301 +233530,Lightning Charging Cable,1,14.95,2019-07-15 19:23:00,862 Park St, San Francisco,CA,94016 +233531,AAA Batteries (4-pack),2,2.99,2019-07-27 15:30:00,332 Cedar St, Boston,MA,02215 +233532,AA Batteries (4-pack),2,3.84,2019-07-22 08:55:00,52 Dogwood St, New York City,NY,10001 +233533,Google Phone,1,600.0,2019-07-08 12:24:00,546 Church St, New York City,NY,10001 +233534,USB-C Charging Cable,1,11.95,2019-07-31 14:02:00,206 Lakeview St, Dallas,TX,75001 +233535,Wired Headphones,3,11.99,2019-07-31 03:08:00,735 Forest St, Boston,MA,02215 +233536,ThinkPad Laptop,1,999.99,2019-07-18 12:24:00,653 Forest St, San Francisco,CA,94016 +233537,AAA Batteries (4-pack),1,2.99,2019-07-27 03:07:00,203 Park St, Portland,OR,97035 +233538,Bose SoundSport Headphones,1,99.99,2019-07-04 18:04:00,902 7th St, Dallas,TX,75001 +233539,27in FHD Monitor,1,149.99,2019-07-23 13:13:00,452 Highland St, Boston,MA,02215 +233540,USB-C Charging Cable,1,11.95,2019-07-01 10:33:00,941 Lincoln St, Los Angeles,CA,90001 +233541,34in Ultrawide Monitor,1,379.99,2019-07-14 15:35:00,359 2nd St, Los Angeles,CA,90001 +233542,USB-C Charging Cable,1,11.95,2019-07-16 18:27:00,504 Maple St, Boston,MA,02215 +233543,Lightning Charging Cable,1,14.95,2019-07-27 13:16:00,757 Forest St, San Francisco,CA,94016 +233544,AA Batteries (4-pack),1,3.84,2019-07-20 18:46:00,793 Jackson St, San Francisco,CA,94016 +233545,Bose SoundSport Headphones,1,99.99,2019-07-18 10:41:00,970 Cherry St, San Francisco,CA,94016 +233546,Bose SoundSport Headphones,1,99.99,2019-07-21 22:32:00,576 Church St, Boston,MA,02215 +233547,USB-C Charging Cable,1,11.95,2019-07-12 09:36:00,948 Pine St, Boston,MA,02215 +233548,Google Phone,1,600.0,2019-07-30 23:04:00,743 5th St, Dallas,TX,75001 +233549,Google Phone,1,600.0,2019-07-13 21:32:00,596 Ridge St, San Francisco,CA,94016 +233550,20in Monitor,1,109.99,2019-07-26 11:39:00,35 Jackson St, Los Angeles,CA,90001 +233551,AA Batteries (4-pack),3,3.84,2019-07-09 10:44:00,923 Lakeview St, San Francisco,CA,94016 +233552,USB-C Charging Cable,1,11.95,2019-07-04 10:40:00,287 Johnson St, Los Angeles,CA,90001 +233553,Macbook Pro Laptop,1,1700.0,2019-07-27 10:18:00,456 Spruce St, Austin,TX,73301 +233554,Lightning Charging Cable,1,14.95,2019-07-14 13:51:00,884 Elm St, Los Angeles,CA,90001 +233555,AA Batteries (4-pack),1,3.84,2019-07-03 20:26:00,418 13th St, Boston,MA,02215 +233556,27in FHD Monitor,1,149.99,2019-07-10 01:55:00,569 Lake St, Atlanta,GA,30301 +233557,AA Batteries (4-pack),1,3.84,2019-07-24 19:32:00,278 Church St, Atlanta,GA,30301 +233558,AAA Batteries (4-pack),1,2.99,2019-07-16 20:40:00,739 Spruce St, Los Angeles,CA,90001 +233559,27in 4K Gaming Monitor,1,389.99,2019-07-08 14:57:00,499 Adams St, Seattle,WA,98101 +233559,Apple Airpods Headphones,1,150.0,2019-07-08 14:57:00,499 Adams St, Seattle,WA,98101 +233560,Apple Airpods Headphones,1,150.0,2019-07-15 00:14:00,330 Elm St, Boston,MA,02215 +233561,USB-C Charging Cable,1,11.95,2019-07-30 10:03:00,487 Church St, Los Angeles,CA,90001 +233562,AAA Batteries (4-pack),2,2.99,2019-07-15 09:41:00,350 1st St, Los Angeles,CA,90001 +233563,Macbook Pro Laptop,1,1700.0,2019-07-03 12:30:00,654 Lincoln St, San Francisco,CA,94016 +233564,AAA Batteries (4-pack),2,2.99,2019-07-26 12:19:00,904 Main St, New York City,NY,10001 +233565,ThinkPad Laptop,1,999.99,2019-07-14 06:07:00,303 South St, San Francisco,CA,94016 +233566,iPhone,1,700.0,2019-07-24 10:14:00,769 5th St, San Francisco,CA,94016 +233567,AAA Batteries (4-pack),2,2.99,2019-07-20 21:13:00,84 5th St, San Francisco,CA,94016 +233568,USB-C Charging Cable,1,11.95,2019-07-19 18:41:00,760 11th St, Portland,OR,97035 +233569,Lightning Charging Cable,1,14.95,2019-07-03 12:23:00,754 14th St, San Francisco,CA,94016 +233570,AAA Batteries (4-pack),1,2.99,2019-07-04 21:13:00,542 Lake St, Boston,MA,02215 +233571,Bose SoundSport Headphones,1,99.99,2019-07-28 16:11:00,398 Forest St, San Francisco,CA,94016 +233572,AAA Batteries (4-pack),2,2.99,2019-07-29 15:51:00,212 Dogwood St, Los Angeles,CA,90001 +233573,AAA Batteries (4-pack),1,2.99,2019-07-23 20:50:00,220 North St, San Francisco,CA,94016 +233574,AA Batteries (4-pack),1,3.84,2019-07-07 20:08:00,987 10th St, Atlanta,GA,30301 +233575,LG Washing Machine,1,600.0,2019-07-08 16:57:00,582 Highland St, San Francisco,CA,94016 +233576,ThinkPad Laptop,1,999.99,2019-07-28 16:35:00,534 5th St, San Francisco,CA,94016 +233577,AA Batteries (4-pack),1,3.84,2019-07-08 20:52:00,290 5th St, Seattle,WA,98101 +233578,USB-C Charging Cable,1,11.95,2019-07-05 11:24:00,583 9th St, Los Angeles,CA,90001 +233578,AA Batteries (4-pack),1,3.84,2019-07-05 11:24:00,583 9th St, Los Angeles,CA,90001 +233579,iPhone,1,700.0,2019-07-01 10:20:00,173 Meadow St, Portland,OR,97035 +233580,Apple Airpods Headphones,1,150.0,2019-07-27 22:11:00,731 8th St, Los Angeles,CA,90001 +233581,Wired Headphones,1,11.99,2019-07-03 18:33:00,484 1st St, Atlanta,GA,30301 +233582,Lightning Charging Cable,1,14.95,2019-07-02 21:07:00,700 Main St, Seattle,WA,98101 +233583,Wired Headphones,1,11.99,2019-07-13 06:46:00,398 10th St, Portland,OR,97035 +233584,iPhone,1,700.0,2019-07-05 14:17:00,577 Center St, Austin,TX,73301 +233584,Lightning Charging Cable,1,14.95,2019-07-05 14:17:00,577 Center St, Austin,TX,73301 +233585,Google Phone,1,600.0,2019-07-10 22:09:00,546 Hickory St, San Francisco,CA,94016 +233586,Wired Headphones,1,11.99,2019-07-08 19:52:00,667 13th St, New York City,NY,10001 +233587,Apple Airpods Headphones,1,150.0,2019-07-29 14:08:00,212 Maple St, Atlanta,GA,30301 +233588,Google Phone,1,600.0,2019-07-17 11:06:00,316 North St, Los Angeles,CA,90001 +233589,iPhone,1,700.0,2019-07-13 21:12:00,717 Center St, Dallas,TX,75001 +233590,Lightning Charging Cable,1,14.95,2019-07-08 09:58:00,44 11th St, Dallas,TX,75001 +233591,Bose SoundSport Headphones,1,99.99,2019-07-18 19:40:00,207 Willow St, New York City,NY,10001 +233592,Google Phone,1,600.0,2019-07-08 00:23:00,909 1st St, Los Angeles,CA,90001 +233593,27in FHD Monitor,1,149.99,2019-07-24 21:07:00,749 Chestnut St, Boston,MA,02215 +233594,AA Batteries (4-pack),1,3.84,2019-07-20 10:19:00,46 Pine St, New York City,NY,10001 +233595,20in Monitor,1,109.99,2019-07-27 20:35:00,658 Lake St, Los Angeles,CA,90001 +233596,USB-C Charging Cable,1,11.95,2019-07-23 07:37:00,618 Willow St, New York City,NY,10001 +233597,AAA Batteries (4-pack),1,2.99,2019-07-27 19:43:00,984 Jefferson St, San Francisco,CA,94016 +233598,AAA Batteries (4-pack),3,2.99,2019-07-08 11:21:00,24 Meadow St, Boston,MA,02215 +233599,Apple Airpods Headphones,1,150.0,2019-07-23 22:14:00,77 Lincoln St, Portland,OR,97035 +233600,Apple Airpods Headphones,1,150.0,2019-07-02 10:31:00,18 Dogwood St, Seattle,WA,98101 +233601,AAA Batteries (4-pack),1,2.99,2019-07-10 10:11:00,548 Elm St, Portland,OR,97035 +233602,USB-C Charging Cable,2,11.95,2019-07-03 12:41:00,687 6th St, San Francisco,CA,94016 +233603,USB-C Charging Cable,1,11.95,2019-07-29 19:08:00,228 West St, Seattle,WA,98101 +233604,USB-C Charging Cable,1,11.95,2019-07-21 14:29:00,557 Hill St, Seattle,WA,98101 +233605,Apple Airpods Headphones,1,150.0,2019-07-18 09:44:00,88 Washington St, Dallas,TX,75001 +233606,Vareebadd Phone,1,400.0,2019-07-15 23:12:00,918 Johnson St, Boston,MA,02215 +233607,Wired Headphones,1,11.99,2019-07-01 13:06:00,557 Hill St, San Francisco,CA,94016 +233608,USB-C Charging Cable,2,11.95,2019-07-19 12:48:00,998 10th St, San Francisco,CA,94016 +233609,Bose SoundSport Headphones,1,99.99,2019-07-13 23:38:00,462 Elm St, New York City,NY,10001 +233610,Lightning Charging Cable,1,14.95,2019-07-21 14:59:00,818 8th St, San Francisco,CA,94016 +233611,ThinkPad Laptop,1,999.99,2019-07-02 12:07:00,159 Lakeview St, Seattle,WA,98101 +233612,AAA Batteries (4-pack),2,2.99,2019-07-13 12:19:00,688 14th St, Los Angeles,CA,90001 +233613,AA Batteries (4-pack),1,3.84,2019-07-24 10:14:00,103 Main St, New York City,NY,10001 +233614,USB-C Charging Cable,1,11.95,2019-07-16 22:38:00,108 Dogwood St, San Francisco,CA,94016 +233615,AAA Batteries (4-pack),1,2.99,2019-07-04 18:27:00,294 8th St, San Francisco,CA,94016 +233616,AAA Batteries (4-pack),3,2.99,2019-07-06 11:21:00,988 10th St, Los Angeles,CA,90001 +233617,27in FHD Monitor,1,149.99,2019-07-16 17:04:00,605 Walnut St, San Francisco,CA,94016 +233618,20in Monitor,1,109.99,2019-07-23 12:10:00,294 Sunset St, Atlanta,GA,30301 +233619,Lightning Charging Cable,1,14.95,2019-07-15 18:47:00,290 Lake St, New York City,NY,10001 +233620,Bose SoundSport Headphones,1,99.99,2019-07-06 17:01:00,347 Highland St, Austin,TX,73301 +233621,Bose SoundSport Headphones,1,99.99,2019-07-04 08:08:00,662 Johnson St, New York City,NY,10001 +233622,Lightning Charging Cable,1,14.95,2019-07-31 18:06:00,248 10th St, Dallas,TX,75001 +233623,27in 4K Gaming Monitor,1,389.99,2019-07-31 06:26:00,208 Hill St, San Francisco,CA,94016 +233624,AA Batteries (4-pack),1,3.84,2019-07-13 20:54:00,951 Washington St, San Francisco,CA,94016 +233625,AA Batteries (4-pack),1,3.84,2019-07-25 14:25:00,623 Jackson St, Los Angeles,CA,90001 +233626,Wired Headphones,1,11.99,2019-07-09 10:31:00,712 Wilson St, Los Angeles,CA,90001 +233627,Wired Headphones,2,11.99,2019-07-15 14:44:00,833 Wilson St, Los Angeles,CA,90001 +233628,20in Monitor,1,109.99,2019-07-07 01:56:00,976 Spruce St, San Francisco,CA,94016 +233629,34in Ultrawide Monitor,1,379.99,2019-07-10 11:57:00,332 Center St, New York City,NY,10001 +233630,Macbook Pro Laptop,1,1700.0,2019-07-09 00:44:00,135 7th St, San Francisco,CA,94016 +233631,Apple Airpods Headphones,1,150.0,2019-07-25 11:12:00,233 Jackson St, Seattle,WA,98101 +233632,Lightning Charging Cable,1,14.95,2019-07-15 12:46:00,265 Church St, Los Angeles,CA,90001 +233633,Apple Airpods Headphones,1,150.0,2019-07-27 22:41:00,482 Forest St, Portland,OR,97035 +233634,Wired Headphones,1,11.99,2019-07-22 10:35:00,503 Main St, New York City,NY,10001 +233635,iPhone,1,700.0,2019-07-24 01:50:00,912 14th St, Boston,MA,02215 +233636,Wired Headphones,1,11.99,2019-07-20 17:24:00,113 Lake St, New York City,NY,10001 +233637,iPhone,1,700.0,2019-07-28 12:14:00,46 Elm St, Los Angeles,CA,90001 +233638,Lightning Charging Cable,1,14.95,2019-07-28 12:30:00,817 8th St, San Francisco,CA,94016 +233639,AA Batteries (4-pack),1,3.84,2019-07-13 18:07:00,459 Lincoln St, Boston,MA,02215 +233640,Bose SoundSport Headphones,1,99.99,2019-07-08 09:53:00,486 Lake St, Atlanta,GA,30301 +233641,Lightning Charging Cable,1,14.95,2019-07-17 08:00:00,2 Meadow St, New York City,NY,10001 +233642,Lightning Charging Cable,1,14.95,2019-07-24 23:06:00,162 South St, Seattle,WA,98101 +233643,Bose SoundSport Headphones,1,99.99,2019-07-29 19:32:00,724 7th St, Los Angeles,CA,90001 +233644,34in Ultrawide Monitor,1,379.99,2019-07-22 08:21:00,470 Park St, Boston,MA,02215 +233645,USB-C Charging Cable,1,11.95,2019-07-03 15:54:00,918 11th St, San Francisco,CA,94016 +233646,Lightning Charging Cable,1,14.95,2019-07-17 16:27:00,919 Adams St, San Francisco,CA,94016 +233647,Wired Headphones,1,11.99,2019-07-12 10:04:00,61 Highland St, Atlanta,GA,30301 +233648,Bose SoundSport Headphones,1,99.99,2019-07-26 22:52:00,667 Hill St, San Francisco,CA,94016 +233649,Lightning Charging Cable,1,14.95,2019-07-13 22:07:00,141 Wilson St, San Francisco,CA,94016 +233650,27in FHD Monitor,1,149.99,2019-07-29 13:57:00,966 Main St, Boston,MA,02215 +233651,Flatscreen TV,1,300.0,2019-07-10 12:39:00,527 Washington St, San Francisco,CA,94016 +233652,Wired Headphones,1,11.99,2019-07-18 21:28:00,393 Ridge St, San Francisco,CA,94016 +233653,Lightning Charging Cable,1,14.95,2019-07-04 09:35:00,878 West St, Dallas,TX,75001 +233654,USB-C Charging Cable,1,11.95,2019-07-20 07:14:00,241 Walnut St, Austin,TX,73301 +233655,Apple Airpods Headphones,1,150.0,2019-07-26 20:59:00,773 Jackson St, New York City,NY,10001 +233656,ThinkPad Laptop,1,999.99,2019-07-10 12:38:00,695 Hill St, San Francisco,CA,94016 +233657,Macbook Pro Laptop,1,1700.0,2019-07-27 15:45:00,893 Hickory St, Portland,OR,97035 +233658,iPhone,1,700.0,2019-07-09 16:37:00,238 12th St, San Francisco,CA,94016 +233659,Bose SoundSport Headphones,1,99.99,2019-07-05 10:18:00,214 North St, Portland,ME,04101 +233659,USB-C Charging Cable,1,11.95,2019-07-05 10:18:00,214 North St, Portland,ME,04101 +233660,27in FHD Monitor,1,149.99,2019-07-28 11:27:00,474 Center St, Dallas,TX,75001 +233661,Lightning Charging Cable,1,14.95,2019-07-22 11:06:00,294 Hickory St, Atlanta,GA,30301 +233662,AAA Batteries (4-pack),3,2.99,2019-07-01 17:09:00,25 Johnson St, Dallas,TX,75001 +233663,20in Monitor,1,109.99,2019-07-07 10:14:00,169 Forest St, San Francisco,CA,94016 +233664,AA Batteries (4-pack),3,3.84,2019-07-03 15:21:00,230 Spruce St, New York City,NY,10001 +233664,Apple Airpods Headphones,1,150.0,2019-07-03 15:21:00,230 Spruce St, New York City,NY,10001 +233665,AAA Batteries (4-pack),1,2.99,2019-07-27 11:46:00,837 4th St, Austin,TX,73301 +233666,Wired Headphones,1,11.99,2019-07-15 19:53:00,358 South St, Portland,OR,97035 +233667,Wired Headphones,1,11.99,2019-07-30 01:35:00,340 Washington St, Dallas,TX,75001 +233668,Wired Headphones,1,11.99,2019-07-05 12:19:00,703 Church St, Los Angeles,CA,90001 +233669,Bose SoundSport Headphones,1,99.99,2019-07-19 19:19:00,186 Lake St, Los Angeles,CA,90001 +233670,iPhone,1,700.0,2019-07-22 23:30:00,331 Washington St, Boston,MA,02215 +233670,Wired Headphones,1,11.99,2019-07-22 23:30:00,331 Washington St, Boston,MA,02215 +233671,27in 4K Gaming Monitor,1,389.99,2019-07-09 21:59:00,682 Wilson St, Austin,TX,73301 +233672,AAA Batteries (4-pack),2,2.99,2019-07-18 17:17:00,746 13th St, Los Angeles,CA,90001 +233673,Wired Headphones,1,11.99,2019-07-29 21:30:00,348 Wilson St, San Francisco,CA,94016 +233674,Lightning Charging Cable,1,14.95,2019-07-17 08:53:00,967 Park St, Boston,MA,02215 +233675,Flatscreen TV,1,300.0,2019-07-31 12:40:00,191 River St, San Francisco,CA,94016 +233676,AAA Batteries (4-pack),2,2.99,2019-07-04 13:33:00,558 Church St, New York City,NY,10001 +233677,AAA Batteries (4-pack),1,2.99,2019-07-20 23:18:00,424 Dogwood St, Atlanta,GA,30301 +233678,Google Phone,1,600.0,2019-07-07 22:56:00,949 Lincoln St, Portland,OR,97035 +233679,AA Batteries (4-pack),1,3.84,2019-07-29 23:09:00,505 9th St, San Francisco,CA,94016 +233680,iPhone,1,700.0,2019-07-14 12:51:00,288 Park St, San Francisco,CA,94016 +233680,Lightning Charging Cable,1,14.95,2019-07-14 12:51:00,288 Park St, San Francisco,CA,94016 +233681,USB-C Charging Cable,1,11.95,2019-07-03 12:31:00,522 7th St, Dallas,TX,75001 +233682,Apple Airpods Headphones,1,150.0,2019-07-04 10:38:00,700 Sunset St, San Francisco,CA,94016 +233683,Lightning Charging Cable,1,14.95,2019-07-02 20:59:00,930 14th St, Portland,OR,97035 +233684,Lightning Charging Cable,1,14.95,2019-07-11 23:59:00,620 Jefferson St, San Francisco,CA,94016 +233685,27in 4K Gaming Monitor,1,389.99,2019-07-07 10:07:00,416 1st St, New York City,NY,10001 +233686,AAA Batteries (4-pack),1,2.99,2019-07-01 06:31:00,372 Jackson St, Boston,MA,02215 +233687,Apple Airpods Headphones,1,150.0,2019-07-31 23:38:00,354 9th St, Boston,MA,02215 +233688,Apple Airpods Headphones,1,150.0,2019-07-02 12:37:00,881 Pine St, San Francisco,CA,94016 +233689,Flatscreen TV,1,300.0,2019-07-09 10:37:00,623 Spruce St, Boston,MA,02215 +233690,AAA Batteries (4-pack),2,2.99,2019-07-28 09:54:00,549 Hill St, Atlanta,GA,30301 +233691,iPhone,1,700.0,2019-07-13 23:46:00,10 Johnson St, Los Angeles,CA,90001 +233692,Wired Headphones,1,11.99,2019-07-07 12:31:00,607 6th St, Boston,MA,02215 +233693,AAA Batteries (4-pack),1,2.99,2019-07-03 09:31:00,573 Chestnut St, Austin,TX,73301 +233694,Apple Airpods Headphones,1,150.0,2019-07-10 16:03:00,87 2nd St, Atlanta,GA,30301 +233695,USB-C Charging Cable,1,11.95,2019-07-11 18:30:00,999 Dogwood St, Portland,OR,97035 +233696,AA Batteries (4-pack),1,3.84,2019-07-26 21:18:00,266 13th St, Los Angeles,CA,90001 +233697,Wired Headphones,1,11.99,2019-07-01 20:15:00,462 Washington St, New York City,NY,10001 +233698,Apple Airpods Headphones,1,150.0,2019-07-26 21:29:00,934 Spruce St, San Francisco,CA,94016 +233699,AA Batteries (4-pack),1,3.84,2019-07-24 16:52:00,398 9th St, Los Angeles,CA,90001 +233700,Lightning Charging Cable,1,14.95,2019-07-21 12:27:00,364 12th St, Los Angeles,CA,90001 +233701,AA Batteries (4-pack),1,3.84,2019-07-24 17:50:00,731 Forest St, San Francisco,CA,94016 +233702,Lightning Charging Cable,1,14.95,2019-07-19 18:57:00,797 Maple St, San Francisco,CA,94016 +233702,AAA Batteries (4-pack),1,2.99,2019-07-19 18:57:00,797 Maple St, San Francisco,CA,94016 +233703,Bose SoundSport Headphones,1,99.99,2019-07-16 15:11:00,525 Madison St, New York City,NY,10001 +233704,AA Batteries (4-pack),1,3.84,2019-07-26 22:47:00,950 Spruce St, Los Angeles,CA,90001 +233705,34in Ultrawide Monitor,1,379.99,2019-07-05 06:07:00,518 Dogwood St, Seattle,WA,98101 +233706,AA Batteries (4-pack),1,3.84,2019-07-20 18:26:00,314 Park St, San Francisco,CA,94016 +233707,Apple Airpods Headphones,1,150.0,2019-07-18 19:06:00,183 Hill St, Los Angeles,CA,90001 +233708,Apple Airpods Headphones,1,150.0,2019-07-29 06:03:00,930 Willow St, Los Angeles,CA,90001 +233709,Google Phone,1,600.0,2019-07-02 12:53:00,422 13th St, Dallas,TX,75001 +233710,Apple Airpods Headphones,1,150.0,2019-07-01 14:10:00,385 9th St, Seattle,WA,98101 +233711,27in 4K Gaming Monitor,1,389.99,2019-07-02 14:23:00,441 Church St, San Francisco,CA,94016 +233712,USB-C Charging Cable,1,11.95,2019-07-14 18:12:00,832 Lincoln St, Portland,OR,97035 +233713,Flatscreen TV,2,300.0,2019-07-11 13:19:00,505 6th St, New York City,NY,10001 +233714,Wired Headphones,1,11.99,2019-07-02 09:51:00,244 Main St, San Francisco,CA,94016 +233715,AAA Batteries (4-pack),1,2.99,2019-07-17 06:16:00,521 Main St, Boston,MA,02215 +233716,Lightning Charging Cable,1,14.95,2019-07-12 22:38:00,930 River St, Portland,OR,97035 +233717,AA Batteries (4-pack),1,3.84,2019-07-30 10:05:00,114 8th St, New York City,NY,10001 +233718,AA Batteries (4-pack),2,3.84,2019-07-30 01:22:00,469 Adams St, San Francisco,CA,94016 +233719,Wired Headphones,1,11.99,2019-07-08 05:57:00,648 South St, Los Angeles,CA,90001 +233720,Bose SoundSport Headphones,1,99.99,2019-07-26 17:02:00,455 Jackson St, San Francisco,CA,94016 +233721,Google Phone,1,600.0,2019-07-29 13:24:00,249 6th St, Austin,TX,73301 +233722,Bose SoundSport Headphones,1,99.99,2019-07-07 12:17:00,55 Pine St, Dallas,TX,75001 +233723,20in Monitor,1,109.99,2019-07-16 14:56:00,339 6th St, San Francisco,CA,94016 +233724,Lightning Charging Cable,1,14.95,2019-07-30 22:23:00,72 14th St, San Francisco,CA,94016 +233725,Wired Headphones,1,11.99,2019-07-02 22:50:00,16 14th St, Seattle,WA,98101 +233726,AA Batteries (4-pack),1,3.84,2019-07-08 00:00:00,247 9th St, San Francisco,CA,94016 +233727,Wired Headphones,1,11.99,2019-07-21 18:46:00,788 Dogwood St, New York City,NY,10001 +233728,USB-C Charging Cable,1,11.95,2019-07-21 16:02:00,909 10th St, Austin,TX,73301 +233729,iPhone,1,700.0,2019-07-09 12:46:00,402 4th St, San Francisco,CA,94016 +233730,iPhone,1,700.0,2019-07-19 13:02:00,213 Church St, Los Angeles,CA,90001 +233731,Lightning Charging Cable,1,14.95,2019-07-19 15:42:00,326 Highland St, New York City,NY,10001 +233732,27in FHD Monitor,1,149.99,2019-07-24 10:07:00,348 Dogwood St, New York City,NY,10001 +233733,Macbook Pro Laptop,1,1700.0,2019-07-30 13:51:00,586 Spruce St, Dallas,TX,75001 +233734,Google Phone,1,600.0,2019-07-11 20:29:00,433 Cedar St, Seattle,WA,98101 +233735,Google Phone,1,600.0,2019-07-26 13:45:00,464 Sunset St, San Francisco,CA,94016 +233736,LG Dryer,1,600.0,2019-07-10 03:06:00,192 Washington St, Dallas,TX,75001 +233737,Lightning Charging Cable,1,14.95,2019-07-03 11:12:00,379 12th St, New York City,NY,10001 +233738,27in 4K Gaming Monitor,1,389.99,2019-07-06 15:30:00,541 12th St, Los Angeles,CA,90001 +233739,Apple Airpods Headphones,1,150.0,2019-07-22 14:34:00,653 13th St, San Francisco,CA,94016 +233740,Lightning Charging Cable,1,14.95,2019-07-03 13:25:00,866 13th St, Boston,MA,02215 +233741,iPhone,1,700.0,2019-07-29 18:01:00,16 Elm St, Seattle,WA,98101 +233742,iPhone,1,700.0,2019-07-03 10:14:00,942 Park St, Atlanta,GA,30301 +233743,Lightning Charging Cable,1,14.95,2019-07-12 13:10:00,89 Sunset St, Boston,MA,02215 +233744,Macbook Pro Laptop,1,1700.0,2019-07-27 11:12:00,976 13th St, Seattle,WA,98101 +233745,Wired Headphones,1,11.99,2019-07-28 20:27:00,145 Ridge St, Los Angeles,CA,90001 +233746,iPhone,1,700.0,2019-07-07 16:11:00,526 Spruce St, San Francisco,CA,94016 +233746,Wired Headphones,1,11.99,2019-07-07 16:11:00,526 Spruce St, San Francisco,CA,94016 +233747,Apple Airpods Headphones,1,150.0,2019-07-09 11:28:00,139 Chestnut St, San Francisco,CA,94016 +233748,AA Batteries (4-pack),1,3.84,2019-07-08 22:04:00,451 Park St, Los Angeles,CA,90001 +233749,ThinkPad Laptop,1,999.99,2019-07-29 13:59:00,975 Lincoln St, Portland,OR,97035 +233750,Wired Headphones,1,11.99,2019-07-28 12:21:00,247 Chestnut St, San Francisco,CA,94016 +233751,USB-C Charging Cable,1,11.95,2019-07-09 14:35:00,137 13th St, Boston,MA,02215 +233752,AA Batteries (4-pack),2,3.84,2019-07-20 12:14:00,57 Hickory St, Los Angeles,CA,90001 +233753,Apple Airpods Headphones,1,150.0,2019-07-15 19:24:00,7 River St, San Francisco,CA,94016 +233754,Macbook Pro Laptop,1,1700.0,2019-07-06 09:24:00,525 North St, Austin,TX,73301 +233755,USB-C Charging Cable,1,11.95,2019-07-17 05:38:00,622 Jefferson St, Boston,MA,02215 +233756,Wired Headphones,1,11.99,2019-07-25 09:59:00,879 Lake St, Atlanta,GA,30301 +233757,27in 4K Gaming Monitor,1,389.99,2019-07-02 11:28:00,206 Lake St, Portland,OR,97035 +233758,Lightning Charging Cable,1,14.95,2019-07-12 19:57:00,321 Sunset St, Atlanta,GA,30301 +233759,AA Batteries (4-pack),1,3.84,2019-07-09 13:40:00,743 Highland St, Austin,TX,73301 +233760,Lightning Charging Cable,1,14.95,2019-07-17 11:52:00,386 Cedar St, San Francisco,CA,94016 +233761,USB-C Charging Cable,1,11.95,2019-07-30 17:22:00,50 Spruce St, Los Angeles,CA,90001 +233762,Lightning Charging Cable,1,14.95,2019-07-08 09:21:00,453 12th St, New York City,NY,10001 +233763,Apple Airpods Headphones,1,150.0,2019-07-06 19:43:00,197 Jefferson St, Dallas,TX,75001 +233764,Lightning Charging Cable,1,14.95,2019-07-20 12:13:00,156 South St, Seattle,WA,98101 +233765,Lightning Charging Cable,1,14.95,2019-07-15 13:48:00,966 10th St, San Francisco,CA,94016 +233766,Apple Airpods Headphones,2,150.0,2019-07-14 11:51:00,588 Spruce St, Los Angeles,CA,90001 +233767,Lightning Charging Cable,1,14.95,2019-07-16 21:01:00,355 11th St, New York City,NY,10001 +233768,Bose SoundSport Headphones,1,99.99,2019-07-06 17:35:00,77 West St, New York City,NY,10001 +233769,AA Batteries (4-pack),2,3.84,2019-07-23 08:57:00,348 Lakeview St, San Francisco,CA,94016 +233770,Macbook Pro Laptop,1,1700.0,2019-07-19 22:39:00,199 Forest St, San Francisco,CA,94016 +233771,Lightning Charging Cable,1,14.95,2019-07-21 10:28:00,960 Park St, Seattle,WA,98101 +233772,AAA Batteries (4-pack),1,2.99,2019-07-07 00:28:00,321 North St, Seattle,WA,98101 +233773,AAA Batteries (4-pack),3,2.99,2019-07-26 22:26:00,843 8th St, Portland,OR,97035 +233774,iPhone,1,700.0,2019-07-14 19:57:00,912 Adams St, Los Angeles,CA,90001 +233775,Macbook Pro Laptop,1,1700.0,2019-07-09 22:30:00,731 Wilson St, Boston,MA,02215 +233776,AAA Batteries (4-pack),1,2.99,2019-07-01 15:51:00,355 West St, Austin,TX,73301 +233777,AAA Batteries (4-pack),1,2.99,2019-07-06 21:43:00,319 Hickory St, Boston,MA,02215 +233778,Lightning Charging Cable,1,14.95,2019-07-03 16:49:00,91 Washington St, New York City,NY,10001 +233779,iPhone,1,700.0,2019-07-25 11:45:00,626 2nd St, Los Angeles,CA,90001 +233779,Lightning Charging Cable,1,14.95,2019-07-25 11:45:00,626 2nd St, Los Angeles,CA,90001 +233780,Apple Airpods Headphones,1,150.0,2019-07-19 07:12:00,769 Jackson St, Dallas,TX,75001 +233781,Lightning Charging Cable,1,14.95,2019-07-08 16:34:00,848 4th St, Los Angeles,CA,90001 +233782,Bose SoundSport Headphones,1,99.99,2019-07-24 12:11:00,782 Sunset St, San Francisco,CA,94016 +233783,AAA Batteries (4-pack),1,2.99,2019-07-20 00:25:00,334 12th St, Austin,TX,73301 +233784,27in FHD Monitor,1,149.99,2019-07-03 17:07:00,446 Main St, Seattle,WA,98101 +233785,ThinkPad Laptop,1,999.99,2019-07-30 10:14:00,476 9th St, Los Angeles,CA,90001 +233786,Wired Headphones,1,11.99,2019-07-12 04:45:00,148 5th St, Los Angeles,CA,90001 +233787,Lightning Charging Cable,1,14.95,2019-07-22 09:12:00,335 Meadow St, San Francisco,CA,94016 +233788,AA Batteries (4-pack),1,3.84,2019-07-12 12:41:00,558 Dogwood St, Atlanta,GA,30301 +233789,27in 4K Gaming Monitor,1,389.99,2019-07-23 10:32:00,357 Jefferson St, Portland,OR,97035 +233790,AAA Batteries (4-pack),1,2.99,2019-07-27 23:32:00,148 Meadow St, Atlanta,GA,30301 +233791,34in Ultrawide Monitor,1,379.99,2019-07-08 09:41:00,11 Maple St, Boston,MA,02215 +233792,Lightning Charging Cable,1,14.95,2019-07-17 11:44:00,516 2nd St, San Francisco,CA,94016 +233793,Apple Airpods Headphones,1,150.0,2019-07-15 08:50:00,413 Ridge St, San Francisco,CA,94016 +233794,Apple Airpods Headphones,1,150.0,2019-07-21 23:30:00,732 Pine St, San Francisco,CA,94016 +233795,AAA Batteries (4-pack),2,2.99,2019-07-31 19:55:00,759 6th St, San Francisco,CA,94016 +233796,AA Batteries (4-pack),1,3.84,2019-07-12 21:49:00,565 Jackson St, New York City,NY,10001 +233797,Bose SoundSport Headphones,1,99.99,2019-07-19 10:57:00,40 Lake St, New York City,NY,10001 +233798,AA Batteries (4-pack),1,3.84,2019-07-21 05:13:00,697 6th St, Portland,ME,04101 +233799,Bose SoundSport Headphones,1,99.99,2019-07-05 21:35:00,389 Highland St, Austin,TX,73301 +233800,AA Batteries (4-pack),1,3.84,2019-07-15 15:14:00,835 Hickory St, New York City,NY,10001 +233801,27in FHD Monitor,1,149.99,2019-07-06 07:31:00,349 Dogwood St, New York City,NY,10001 +233802,USB-C Charging Cable,1,11.95,2019-07-24 20:24:00,593 12th St, Los Angeles,CA,90001 +233803,27in FHD Monitor,1,149.99,2019-07-08 19:42:00,998 Washington St, Atlanta,GA,30301 +233804,AAA Batteries (4-pack),1,2.99,2019-07-20 18:04:00,24 Pine St, San Francisco,CA,94016 +233805,AA Batteries (4-pack),2,3.84,2019-07-03 20:32:00,508 Meadow St, Atlanta,GA,30301 +233806,27in 4K Gaming Monitor,1,389.99,2019-07-04 18:12:00,658 Park St, Los Angeles,CA,90001 +233807,AA Batteries (4-pack),2,3.84,2019-07-11 19:24:00,608 Pine St, San Francisco,CA,94016 +233808,AA Batteries (4-pack),1,3.84,2019-07-08 10:33:00,31 Church St, Seattle,WA,98101 +233809,Lightning Charging Cable,1,14.95,2019-07-03 17:19:00,157 7th St, Austin,TX,73301 +233810,AAA Batteries (4-pack),3,2.99,2019-07-03 16:02:00,778 Dogwood St, Seattle,WA,98101 +233811,AA Batteries (4-pack),1,3.84,2019-07-08 12:41:00,255 Jackson St, Portland,OR,97035 +233812,USB-C Charging Cable,1,11.95,2019-07-30 14:27:00,792 Johnson St, Dallas,TX,75001 +233813,USB-C Charging Cable,1,11.95,2019-07-04 15:41:00,237 Sunset St, Seattle,WA,98101 +233814,27in 4K Gaming Monitor,1,389.99,2019-07-28 17:28:00,76 10th St, San Francisco,CA,94016 +233815,USB-C Charging Cable,1,11.95,2019-07-01 12:56:00,378 Washington St, Boston,MA,02215 +233816,AA Batteries (4-pack),1,3.84,2019-07-02 19:59:00,915 North St, San Francisco,CA,94016 +233817,USB-C Charging Cable,2,11.95,2019-07-22 08:49:00,757 West St, Los Angeles,CA,90001 +233818,27in FHD Monitor,1,149.99,2019-07-16 08:30:00,747 12th St, San Francisco,CA,94016 +233819,ThinkPad Laptop,1,999.99,2019-07-11 22:58:00,765 River St, New York City,NY,10001 +233820,USB-C Charging Cable,1,11.95,2019-07-27 17:43:00,779 Center St, Austin,TX,73301 +233821,iPhone,1,700.0,2019-07-20 14:12:00,747 13th St, San Francisco,CA,94016 +233822,USB-C Charging Cable,1,11.95,2019-07-14 13:16:00,100 7th St, Los Angeles,CA,90001 +233823,Macbook Pro Laptop,1,1700.0,2019-07-17 21:41:00,737 Maple St, Atlanta,GA,30301 +233824,USB-C Charging Cable,2,11.95,2019-07-25 19:45:00,937 Elm St, New York City,NY,10001 +233825,Macbook Pro Laptop,1,1700.0,2019-07-13 13:41:00,369 Willow St, New York City,NY,10001 +233826,20in Monitor,1,109.99,2019-07-16 12:48:00,102 Meadow St, Los Angeles,CA,90001 +233827,USB-C Charging Cable,1,11.95,2019-07-28 19:48:00,753 4th St, Seattle,WA,98101 +233828,LG Dryer,1,600.0,2019-07-27 09:23:00,86 Center St, Seattle,WA,98101 +233829,USB-C Charging Cable,1,11.95,2019-07-25 08:49:00,756 13th St, Austin,TX,73301 +233830,34in Ultrawide Monitor,1,379.99,2019-07-03 17:50:00,163 Lake St, Boston,MA,02215 +233831,AAA Batteries (4-pack),6,2.99,2019-07-01 19:01:00,55 9th St, Los Angeles,CA,90001 +233832,27in FHD Monitor,1,149.99,2019-07-10 09:25:00,161 West St, Seattle,WA,98101 +233833,AAA Batteries (4-pack),2,2.99,2019-07-09 17:13:00,874 Maple St, Dallas,TX,75001 +233834,Wired Headphones,1,11.99,2019-07-18 12:52:00,542 Johnson St, Los Angeles,CA,90001 +233835,AAA Batteries (4-pack),1,2.99,2019-07-02 15:57:00,396 Chestnut St, Los Angeles,CA,90001 +233836,27in FHD Monitor,1,149.99,2019-07-30 17:16:00,304 Adams St, New York City,NY,10001 +233837,AAA Batteries (4-pack),1,2.99,2019-07-03 21:54:00,358 Elm St, Portland,OR,97035 +233838,Flatscreen TV,1,300.0,2019-07-03 14:59:00,710 Chestnut St, Seattle,WA,98101 +233839,USB-C Charging Cable,1,11.95,2019-07-07 08:03:00,4 Lakeview St, Los Angeles,CA,90001 +233840,Bose SoundSport Headphones,1,99.99,2019-07-17 18:34:00,805 Center St, Los Angeles,CA,90001 +233841,Flatscreen TV,1,300.0,2019-07-08 08:08:00,92 Hickory St, Los Angeles,CA,90001 +233842,Wired Headphones,1,11.99,2019-07-12 09:11:00,355 Elm St, Boston,MA,02215 +233843,AA Batteries (4-pack),1,3.84,2019-07-18 09:06:00,148 Adams St, Seattle,WA,98101 +233844,Lightning Charging Cable,1,14.95,2019-07-12 16:52:00,346 5th St, Dallas,TX,75001 +233845,AAA Batteries (4-pack),1,2.99,2019-07-31 17:21:00,730 Elm St, Los Angeles,CA,90001 +233846,AA Batteries (4-pack),1,3.84,2019-07-19 16:48:00,256 12th St, Dallas,TX,75001 +233847,34in Ultrawide Monitor,1,379.99,2019-07-18 22:43:00,783 Lincoln St, Dallas,TX,75001 +233848,AA Batteries (4-pack),1,3.84,2019-07-09 23:37:00,448 Cedar St, New York City,NY,10001 +233849,Bose SoundSport Headphones,2,99.99,2019-07-29 09:04:00,890 Forest St, Portland,OR,97035 +233850,AA Batteries (4-pack),2,3.84,2019-07-08 15:04:00,169 1st St, Boston,MA,02215 +233851,AA Batteries (4-pack),1,3.84,2019-07-19 19:48:00,852 10th St, New York City,NY,10001 +233852,USB-C Charging Cable,2,11.95,2019-07-16 20:50:00,367 Lincoln St, Boston,MA,02215 +233853,Flatscreen TV,1,300.0,2019-07-16 14:01:00,145 Pine St, San Francisco,CA,94016 +233854,Lightning Charging Cable,1,14.95,2019-07-09 19:10:00,475 Church St, Seattle,WA,98101 +233855,Wired Headphones,1,11.99,2019-07-31 18:42:00,568 Walnut St, Los Angeles,CA,90001 +233856,Wired Headphones,1,11.99,2019-07-14 07:56:00,39 Sunset St, New York City,NY,10001 +233857,AAA Batteries (4-pack),1,2.99,2019-07-27 00:16:00,233 Madison St, New York City,NY,10001 +233858,Lightning Charging Cable,1,14.95,2019-07-22 19:40:00,2 6th St, San Francisco,CA,94016 +233859,Google Phone,1,600.0,2019-07-18 19:49:00,780 Highland St, Portland,OR,97035 +233859,USB-C Charging Cable,1,11.95,2019-07-18 19:49:00,780 Highland St, Portland,OR,97035 +233860,AA Batteries (4-pack),1,3.84,2019-07-26 12:03:00,839 Forest St, San Francisco,CA,94016 +233861,AA Batteries (4-pack),1,3.84,2019-07-02 15:52:00,264 Cherry St, San Francisco,CA,94016 +233862,Vareebadd Phone,1,400.0,2019-07-19 18:12:00,198 South St, San Francisco,CA,94016 +233862,USB-C Charging Cable,1,11.95,2019-07-19 18:12:00,198 South St, San Francisco,CA,94016 +233863,Lightning Charging Cable,1,14.95,2019-07-25 01:16:00,234 Spruce St, New York City,NY,10001 +233864,AAA Batteries (4-pack),1,2.99,2019-07-26 21:19:00,904 8th St, Boston,MA,02215 +233865,Macbook Pro Laptop,1,1700.0,2019-07-06 21:18:00,186 Maple St, New York City,NY,10001 +233866,Bose SoundSport Headphones,1,99.99,2019-07-07 20:34:00,725 Cherry St, Portland,OR,97035 +233867,Lightning Charging Cable,1,14.95,2019-07-08 10:55:00,968 Hickory St, New York City,NY,10001 +233867,20in Monitor,1,109.99,2019-07-08 10:55:00,968 Hickory St, New York City,NY,10001 +233868,AA Batteries (4-pack),2,3.84,2019-07-01 10:04:00,451 Park St, Dallas,TX,75001 +233869,AA Batteries (4-pack),1,3.84,2019-07-05 13:31:00,258 12th St, San Francisco,CA,94016 +233870,Lightning Charging Cable,1,14.95,2019-07-05 10:19:00,261 4th St, Dallas,TX,75001 +233871,USB-C Charging Cable,1,11.95,2019-07-12 18:46:00,692 North St, New York City,NY,10001 +233872,Lightning Charging Cable,1,14.95,2019-07-14 20:29:00,623 Main St, Dallas,TX,75001 +233873,AAA Batteries (4-pack),1,2.99,2019-07-24 09:49:00,617 Lake St, Boston,MA,02215 +233874,AAA Batteries (4-pack),1,2.99,2019-07-09 16:11:00,186 7th St, Seattle,WA,98101 +233875,ThinkPad Laptop,1,999.99,2019-07-13 18:21:00,240 6th St, New York City,NY,10001 +233876,AAA Batteries (4-pack),1,2.99,2019-07-16 17:55:00,370 Cedar St, Los Angeles,CA,90001 +233877,Apple Airpods Headphones,1,150.0,2019-07-11 18:30:00,506 Cedar St, Portland,ME,04101 +233878,20in Monitor,1,109.99,2019-07-15 19:02:00,826 Church St, Boston,MA,02215 +233879,USB-C Charging Cable,1,11.95,2019-07-03 15:53:00,138 Cedar St, New York City,NY,10001 +233880,Apple Airpods Headphones,1,150.0,2019-07-03 19:54:00,918 7th St, San Francisco,CA,94016 +233881,AAA Batteries (4-pack),1,2.99,2019-07-12 22:35:00,672 South St, Portland,OR,97035 +233882,Wired Headphones,1,11.99,2019-07-17 17:27:00,496 Meadow St, San Francisco,CA,94016 +233883,Wired Headphones,1,11.99,2019-07-17 10:29:00,910 Pine St, Austin,TX,73301 +233884,AAA Batteries (4-pack),1,2.99,2019-07-14 20:26:00,806 South St, San Francisco,CA,94016 +233885,Macbook Pro Laptop,1,1700.0,2019-07-20 12:27:00,470 Willow St, Dallas,TX,75001 +233886,27in 4K Gaming Monitor,1,389.99,2019-07-12 11:47:00,463 West St, Atlanta,GA,30301 +233887,USB-C Charging Cable,1,11.95,2019-07-06 23:16:00,603 South St, Seattle,WA,98101 +233888,AAA Batteries (4-pack),2,2.99,2019-07-02 18:01:00,293 Adams St, Dallas,TX,75001 +233889,AAA Batteries (4-pack),1,2.99,2019-07-22 21:24:00,908 Pine St, New York City,NY,10001 +233890,Bose SoundSport Headphones,1,99.99,2019-07-29 11:33:00,477 6th St, Portland,OR,97035 +233891,Apple Airpods Headphones,1,150.0,2019-07-27 08:40:00,801 Park St, San Francisco,CA,94016 +233892,iPhone,1,700.0,2019-07-27 06:52:00,292 Johnson St, New York City,NY,10001 +233892,Lightning Charging Cable,2,14.95,2019-07-27 06:52:00,292 Johnson St, New York City,NY,10001 +233893,20in Monitor,1,109.99,2019-07-19 22:46:00,108 Spruce St, Portland,OR,97035 +233894,AAA Batteries (4-pack),2,2.99,2019-07-24 20:01:00,415 Cedar St, Dallas,TX,75001 +233895,Flatscreen TV,1,300.0,2019-07-02 15:29:00,805 Cedar St, Atlanta,GA,30301 +233896,Lightning Charging Cable,1,14.95,2019-07-03 10:54:00,189 Lakeview St, San Francisco,CA,94016 +233897,Wired Headphones,1,11.99,2019-07-06 10:30:00,325 11th St, New York City,NY,10001 +233898,Wired Headphones,1,11.99,2019-07-15 21:33:00,547 Main St, San Francisco,CA,94016 +233899,iPhone,1,700.0,2019-07-01 14:54:00,130 Jefferson St, Los Angeles,CA,90001 +233900,27in 4K Gaming Monitor,1,389.99,2019-07-31 12:13:00,495 1st St, New York City,NY,10001 +233901,AA Batteries (4-pack),1,3.84,2019-07-11 11:00:00,292 Lincoln St, Austin,TX,73301 +233902,Bose SoundSport Headphones,1,99.99,2019-07-01 12:23:00,390 10th St, Atlanta,GA,30301 +233903,Wired Headphones,1,11.99,2019-07-11 21:07:00,814 Johnson St, Los Angeles,CA,90001 +233904,ThinkPad Laptop,1,999.99,2019-07-28 15:55:00,863 Jackson St, New York City,NY,10001 +233905,ThinkPad Laptop,1,999.99,2019-07-18 13:37:00,783 Dogwood St, Boston,MA,02215 +233906,AA Batteries (4-pack),1,3.84,2019-07-20 14:25:00,152 Center St, San Francisco,CA,94016 +233907,AA Batteries (4-pack),1,3.84,2019-07-02 19:40:00,239 7th St, New York City,NY,10001 +233908,AA Batteries (4-pack),1,3.84,2019-07-31 14:40:00,672 Meadow St, New York City,NY,10001 +233909,20in Monitor,1,109.99,2019-07-09 11:36:00,311 13th St, San Francisco,CA,94016 +233910,Bose SoundSport Headphones,1,99.99,2019-07-08 14:44:00,264 Wilson St, San Francisco,CA,94016 +233911,Macbook Pro Laptop,1,1700.0,2019-07-05 08:17:00,464 Chestnut St, San Francisco,CA,94016 +233912,AAA Batteries (4-pack),1,2.99,2019-07-05 22:47:00,780 Pine St, Atlanta,GA,30301 +233913,AAA Batteries (4-pack),1,2.99,2019-07-07 09:54:00,77 Park St, Los Angeles,CA,90001 +233914,Lightning Charging Cable,1,14.95,2019-07-20 17:04:00,709 Cedar St, New York City,NY,10001 +233915,AAA Batteries (4-pack),2,2.99,2019-07-09 22:40:00,392 Highland St, Dallas,TX,75001 +233916,LG Washing Machine,1,600.0,2019-07-09 09:19:00,429 1st St, San Francisco,CA,94016 +233917,AA Batteries (4-pack),1,3.84,2019-07-08 16:05:00,417 River St, Boston,MA,02215 +233918,Lightning Charging Cable,1,14.95,2019-07-12 17:06:00,783 Hill St, Boston,MA,02215 +233919,LG Washing Machine,1,600.0,2019-07-02 04:46:00,23 Elm St, Atlanta,GA,30301 +233920,Lightning Charging Cable,1,14.95,2019-07-21 18:15:00,505 Adams St, New York City,NY,10001 +233921,Wired Headphones,1,11.99,2019-07-30 12:29:00,964 Highland St, Austin,TX,73301 +233922,Apple Airpods Headphones,1,150.0,2019-07-10 21:50:00,748 Lakeview St, Portland,OR,97035 +233923,Wired Headphones,1,11.99,2019-07-04 13:34:00,217 12th St, Boston,MA,02215 +233924,AA Batteries (4-pack),1,3.84,2019-07-27 11:27:00,196 Main St, Los Angeles,CA,90001 +233925,27in FHD Monitor,1,149.99,2019-07-27 16:02:00,191 Cherry St, San Francisco,CA,94016 +233926,34in Ultrawide Monitor,1,379.99,2019-07-15 00:44:00,402 Main St, Portland,OR,97035 +233927,34in Ultrawide Monitor,1,379.99,2019-07-01 09:29:00,197 Madison St, San Francisco,CA,94016 +233928,Apple Airpods Headphones,1,150.0,2019-07-02 23:12:00,23 West St, San Francisco,CA,94016 +233929,Google Phone,1,600.0,2019-07-14 22:12:00,237 Spruce St, New York City,NY,10001 +233930,iPhone,1,700.0,2019-07-05 23:32:00,199 Wilson St, Seattle,WA,98101 +233931,Wired Headphones,1,11.99,2019-07-07 21:35:00,49 Maple St, Dallas,TX,75001 +233932,AA Batteries (4-pack),1,3.84,2019-07-11 22:29:00,520 14th St, San Francisco,CA,94016 +233933,Bose SoundSport Headphones,1,99.99,2019-07-12 00:08:00,115 12th St, San Francisco,CA,94016 +233934,Apple Airpods Headphones,1,150.0,2019-07-09 17:08:00,772 Lincoln St, Seattle,WA,98101 +233935,Wired Headphones,1,11.99,2019-07-24 09:44:00,862 Ridge St, New York City,NY,10001 +233936,USB-C Charging Cable,1,11.95,2019-07-06 08:34:00,241 10th St, Portland,ME,04101 +233937,27in FHD Monitor,1,149.99,2019-07-09 11:38:00,605 2nd St, New York City,NY,10001 +233938,Apple Airpods Headphones,1,150.0,2019-07-10 15:17:00,181 Meadow St, Seattle,WA,98101 +233939,Apple Airpods Headphones,1,150.0,2019-07-27 11:44:00,66 Chestnut St, Austin,TX,73301 +233940,Wired Headphones,1,11.99,2019-07-26 20:36:00,287 Elm St, Los Angeles,CA,90001 +233941,Wired Headphones,1,11.99,2019-07-28 21:36:00,634 Madison St, San Francisco,CA,94016 +233942,USB-C Charging Cable,1,11.95,2019-07-02 21:25:00,708 Cedar St, Austin,TX,73301 +233943,AA Batteries (4-pack),2,3.84,2019-07-14 12:21:00,906 Madison St, San Francisco,CA,94016 +233944,Google Phone,1,600.0,2019-07-05 19:42:00,94 10th St, Atlanta,GA,30301 +233945,USB-C Charging Cable,1,11.95,2019-07-03 21:06:00,307 Jackson St, San Francisco,CA,94016 +233946,Lightning Charging Cable,1,14.95,2019-07-18 23:24:00,800 14th St, San Francisco,CA,94016 +233947,AAA Batteries (4-pack),1,2.99,2019-07-29 13:25:00,856 South St, Portland,OR,97035 +233948,Lightning Charging Cable,1,14.95,2019-07-12 11:41:00,337 Hill St, Boston,MA,02215 +233949,Lightning Charging Cable,2,14.95,2019-07-30 15:52:00,576 Dogwood St, Portland,OR,97035 +233950,AAA Batteries (4-pack),1,2.99,2019-07-14 08:03:00,569 14th St, San Francisco,CA,94016 +233951,Bose SoundSport Headphones,1,99.99,2019-07-27 21:40:00,4 Cherry St, San Francisco,CA,94016 +233952,USB-C Charging Cable,1,11.95,2019-07-12 05:42:00,664 West St, Dallas,TX,75001 +233953,Lightning Charging Cable,2,14.95,2019-07-30 12:32:00,375 Jackson St, Los Angeles,CA,90001 +233954,AAA Batteries (4-pack),1,2.99,2019-07-19 15:14:00,129 Forest St, San Francisco,CA,94016 +233955,Bose SoundSport Headphones,1,99.99,2019-07-04 17:50:00,708 Walnut St, San Francisco,CA,94016 +233956,Flatscreen TV,1,300.0,2019-07-22 20:51:00,699 Meadow St, Boston,MA,02215 +233957,27in 4K Gaming Monitor,1,389.99,2019-07-08 15:55:00,358 West St, Austin,TX,73301 +233958,27in 4K Gaming Monitor,1,389.99,2019-07-15 04:50:00,626 Meadow St, Atlanta,GA,30301 +233959,USB-C Charging Cable,1,11.95,2019-07-21 08:49:00,463 Park St, Dallas,TX,75001 +233960,AAA Batteries (4-pack),1,2.99,2019-07-02 09:57:00,167 Cedar St, Boston,MA,02215 +233961,27in 4K Gaming Monitor,1,389.99,2019-07-12 12:23:00,364 Church St, New York City,NY,10001 +233962,AAA Batteries (4-pack),2,2.99,2019-07-20 10:20:00,427 9th St, Atlanta,GA,30301 +233963,Bose SoundSport Headphones,1,99.99,2019-07-14 17:12:00,651 10th St, New York City,NY,10001 +233964,USB-C Charging Cable,2,11.95,2019-07-21 17:02:00,706 Lincoln St, San Francisco,CA,94016 +233965,Flatscreen TV,1,300.0,2019-07-25 14:11:00,220 Lincoln St, Los Angeles,CA,90001 +233966,AAA Batteries (4-pack),1,2.99,2019-07-30 18:51:00,699 11th St, Los Angeles,CA,90001 +233967,Wired Headphones,1,11.99,2019-07-19 01:55:00,939 5th St, Portland,OR,97035 +233968,USB-C Charging Cable,2,11.95,2019-07-07 13:05:00,312 Lake St, San Francisco,CA,94016 +233969,Wired Headphones,1,11.99,2019-07-15 04:39:00,639 West St, New York City,NY,10001 +233970,20in Monitor,1,109.99,2019-07-15 20:09:00,78 Chestnut St, New York City,NY,10001 +233971,34in Ultrawide Monitor,1,379.99,2019-07-04 08:35:00,510 Lakeview St, San Francisco,CA,94016 +233972,iPhone,1,700.0,2019-07-14 19:16:00,515 Hickory St, San Francisco,CA,94016 +233973,Lightning Charging Cable,1,14.95,2019-07-02 07:53:00,969 Forest St, Los Angeles,CA,90001 +233974,20in Monitor,1,109.99,2019-07-19 18:28:00,235 Johnson St, San Francisco,CA,94016 +233975,ThinkPad Laptop,1,999.99,2019-07-04 19:54:00,717 Center St, Los Angeles,CA,90001 +233976,Wired Headphones,2,11.99,2019-07-21 23:29:00,430 Center St, New York City,NY,10001 +233977,Apple Airpods Headphones,1,150.0,2019-07-31 13:26:00,980 Elm St, Atlanta,GA,30301 +233978,Bose SoundSport Headphones,1,99.99,2019-07-17 07:24:00,448 8th St, Dallas,TX,75001 +233979,Wired Headphones,1,11.99,2019-07-26 18:09:00,991 West St, San Francisco,CA,94016 +233979,AA Batteries (4-pack),1,3.84,2019-07-26 18:09:00,991 West St, San Francisco,CA,94016 +233980,USB-C Charging Cable,1,11.95,2019-07-24 18:06:00,781 4th St, Seattle,WA,98101 +233981,AAA Batteries (4-pack),1,2.99,2019-07-19 14:38:00,407 Hickory St, Seattle,WA,98101 +233982,AA Batteries (4-pack),2,3.84,2019-07-15 11:34:00,356 Lakeview St, Dallas,TX,75001 +233983,Lightning Charging Cable,1,14.95,2019-07-07 19:19:00,907 8th St, Portland,ME,04101 +233984,Flatscreen TV,1,300.0,2019-07-06 18:24:00,264 Park St, San Francisco,CA,94016 +233985,Google Phone,1,600.0,2019-07-06 11:56:00,804 9th St, New York City,NY,10001 +233986,iPhone,1,700.0,2019-07-26 18:35:00,946 Highland St, San Francisco,CA,94016 +233987,Apple Airpods Headphones,1,150.0,2019-07-31 11:36:00,22 Maple St, Boston,MA,02215 +233988,AAA Batteries (4-pack),1,2.99,2019-07-23 10:23:00,626 Spruce St, San Francisco,CA,94016 +233989,27in FHD Monitor,1,149.99,2019-07-03 08:24:00,981 Center St, Atlanta,GA,30301 +233990,Bose SoundSport Headphones,1,99.99,2019-07-05 09:02:00,496 Ridge St, Dallas,TX,75001 +233991,Bose SoundSport Headphones,1,99.99,2019-07-06 10:53:00,217 Adams St, Los Angeles,CA,90001 +233992,Vareebadd Phone,1,400.0,2019-07-16 09:43:00,74 6th St, Seattle,WA,98101 +233992,USB-C Charging Cable,1,11.95,2019-07-16 09:43:00,74 6th St, Seattle,WA,98101 +233993,AAA Batteries (4-pack),1,2.99,2019-07-17 13:58:00,236 Lake St, New York City,NY,10001 +233994,AA Batteries (4-pack),1,3.84,2019-07-09 13:21:00,346 13th St, Dallas,TX,75001 +233995,Wired Headphones,2,11.99,2019-07-18 19:36:00,702 Willow St, New York City,NY,10001 +233996,Wired Headphones,1,11.99,2019-07-21 09:15:00,520 Willow St, San Francisco,CA,94016 +233997,iPhone,1,700.0,2019-07-28 06:34:00,750 12th St, Seattle,WA,98101 +233997,Lightning Charging Cable,1,14.95,2019-07-28 06:34:00,750 12th St, Seattle,WA,98101 +233998,34in Ultrawide Monitor,1,379.99,2019-07-20 15:29:00,188 Park St, Portland,ME,04101 +233999,Bose SoundSport Headphones,1,99.99,2019-07-30 12:16:00,77 Adams St, San Francisco,CA,94016 +234000,AA Batteries (4-pack),1,3.84,2019-07-22 20:11:00,946 2nd St, Seattle,WA,98101 +234000,34in Ultrawide Monitor,1,379.99,2019-07-22 20:11:00,946 2nd St, Seattle,WA,98101 +234001,USB-C Charging Cable,1,11.95,2019-07-25 11:57:00,248 Forest St, Los Angeles,CA,90001 +234001,AAA Batteries (4-pack),3,2.99,2019-07-25 11:57:00,248 Forest St, Los Angeles,CA,90001 +234002,27in 4K Gaming Monitor,1,389.99,2019-07-16 14:33:00,865 Elm St, San Francisco,CA,94016 +234003,AA Batteries (4-pack),1,3.84,2019-07-03 20:49:00,83 4th St, Los Angeles,CA,90001 +234004,USB-C Charging Cable,1,11.95,2019-07-30 21:30:00,623 Jackson St, New York City,NY,10001 +234005,AA Batteries (4-pack),1,3.84,2019-07-04 14:24:00,830 River St, Seattle,WA,98101 +234006,USB-C Charging Cable,1,11.95,2019-07-18 11:52:00,52 Forest St, Los Angeles,CA,90001 +234007,AAA Batteries (4-pack),1,2.99,2019-07-23 14:54:00,342 Madison St, Portland,ME,04101 +234008,AAA Batteries (4-pack),1,2.99,2019-07-19 22:22:00,623 Madison St, Dallas,TX,75001 +234009,Wired Headphones,1,11.99,2019-07-03 10:12:00,674 2nd St, San Francisco,CA,94016 +234010,34in Ultrawide Monitor,1,379.99,2019-07-07 10:58:00,561 12th St, New York City,NY,10001 +234010,Lightning Charging Cable,1,14.95,2019-07-07 10:58:00,561 12th St, New York City,NY,10001 +234011,Flatscreen TV,1,300.0,2019-07-06 22:49:00,384 Cedar St, Atlanta,GA,30301 +234012,Lightning Charging Cable,1,14.95,2019-07-16 07:49:00,588 8th St, New York City,NY,10001 +234013,AA Batteries (4-pack),2,3.84,2019-07-15 23:36:00,34 Dogwood St, Dallas,TX,75001 +234014,Lightning Charging Cable,1,14.95,2019-07-20 15:18:00,407 Cherry St, Atlanta,GA,30301 +234015,Lightning Charging Cable,1,14.95,2019-07-23 16:57:00,452 Main St, New York City,NY,10001 +234016,AAA Batteries (4-pack),2,2.99,2019-07-29 11:42:00,762 Lake St, Los Angeles,CA,90001 +234017,Wired Headphones,1,11.99,2019-07-27 16:41:00,24 8th St, Boston,MA,02215 +234018,34in Ultrawide Monitor,1,379.99,2019-07-12 13:03:00,706 2nd St, San Francisco,CA,94016 +234019,USB-C Charging Cable,1,11.95,2019-07-31 21:15:00,217 6th St, San Francisco,CA,94016 +234020,27in FHD Monitor,1,149.99,2019-07-09 14:03:00,940 6th St, New York City,NY,10001 +234021,Lightning Charging Cable,1,14.95,2019-07-16 10:57:00,354 5th St, New York City,NY,10001 +234022,iPhone,1,700.0,2019-07-06 20:56:00,674 West St, San Francisco,CA,94016 +234023,USB-C Charging Cable,1,11.95,2019-07-10 21:39:00,54 12th St, Los Angeles,CA,90001 +234024,Lightning Charging Cable,1,14.95,2019-07-25 14:16:00,734 River St, Austin,TX,73301 +234025,Apple Airpods Headphones,1,150.0,2019-07-07 17:17:00,471 10th St, Atlanta,GA,30301 +234026,AA Batteries (4-pack),3,3.84,2019-07-19 13:53:00,215 Forest St, Dallas,TX,75001 +234027,ThinkPad Laptop,1,999.99,2019-07-03 11:07:00,614 Church St, New York City,NY,10001 +234028,Bose SoundSport Headphones,3,99.99,2019-07-29 19:51:00,263 Ridge St, Los Angeles,CA,90001 +234029,AA Batteries (4-pack),1,3.84,2019-07-22 20:30:00,539 West St, Atlanta,GA,30301 +234030,Wired Headphones,1,11.99,2019-07-03 21:16:00,929 9th St, Los Angeles,CA,90001 +234031,AAA Batteries (4-pack),1,2.99,2019-07-10 14:16:00,189 Forest St, Boston,MA,02215 +234032,Wired Headphones,1,11.99,2019-07-18 19:34:00,95 Sunset St, San Francisco,CA,94016 +234033,27in 4K Gaming Monitor,1,389.99,2019-07-15 10:49:00,657 5th St, Portland,ME,04101 +234034,USB-C Charging Cable,2,11.95,2019-07-16 08:00:00,564 9th St, Los Angeles,CA,90001 +234035,Lightning Charging Cable,1,14.95,2019-07-31 16:19:00,655 Hill St, Los Angeles,CA,90001 +234036,AA Batteries (4-pack),1,3.84,2019-07-27 11:35:00,581 Lincoln St, Los Angeles,CA,90001 +234037,Lightning Charging Cable,1,14.95,2019-07-18 23:56:00,267 11th St, Los Angeles,CA,90001 +234038,USB-C Charging Cable,1,11.95,2019-07-18 09:31:00,237 1st St, New York City,NY,10001 +234039,Wired Headphones,1,11.99,2019-07-17 13:26:00,100 Sunset St, Seattle,WA,98101 +234040,Wired Headphones,1,11.99,2019-07-16 16:23:00,151 Wilson St, San Francisco,CA,94016 +234041,USB-C Charging Cable,1,11.95,2019-07-08 10:32:00,533 8th St, San Francisco,CA,94016 +234041,Wired Headphones,1,11.99,2019-07-08 10:32:00,533 8th St, San Francisco,CA,94016 +234042,Google Phone,1,600.0,2019-07-23 20:27:00,905 Adams St, Dallas,TX,75001 +234043,Lightning Charging Cable,1,14.95,2019-07-11 16:56:00,129 Cherry St, San Francisco,CA,94016 +234044,iPhone,1,700.0,2019-07-07 05:19:00,953 Highland St, Austin,TX,73301 +234044,Lightning Charging Cable,1,14.95,2019-07-07 05:19:00,953 Highland St, Austin,TX,73301 +234045,Apple Airpods Headphones,1,150.0,2019-07-13 09:52:00,302 11th St, New York City,NY,10001 +234046,LG Dryer,1,600.0,2019-07-28 21:42:00,867 Hill St, Atlanta,GA,30301 +234047,Bose SoundSport Headphones,1,99.99,2019-07-02 23:50:00,282 2nd St, Los Angeles,CA,90001 +234048,Apple Airpods Headphones,1,150.0,2019-07-09 16:53:00,436 Highland St, Seattle,WA,98101 +234049,Apple Airpods Headphones,1,150.0,2019-07-27 10:30:00,656 9th St, Boston,MA,02215 +234050,Wired Headphones,1,11.99,2019-07-19 15:34:00,63 Sunset St, Los Angeles,CA,90001 +234051,AA Batteries (4-pack),1,3.84,2019-07-15 23:21:00,624 7th St, Atlanta,GA,30301 +234052,27in FHD Monitor,1,149.99,2019-07-28 16:18:00,616 Forest St, New York City,NY,10001 +234053,AAA Batteries (4-pack),2,2.99,2019-07-16 20:19:00,555 Lincoln St, San Francisco,CA,94016 +234054,Flatscreen TV,1,300.0,2019-07-25 19:54:00,163 River St, Los Angeles,CA,90001 +234055,Wired Headphones,1,11.99,2019-07-02 11:40:00,35 Adams St, New York City,NY,10001 +234056,Bose SoundSport Headphones,1,99.99,2019-07-27 23:04:00,731 Spruce St, San Francisco,CA,94016 +234057,Wired Headphones,1,11.99,2019-07-04 12:38:00,855 Highland St, San Francisco,CA,94016 +234058,iPhone,1,700.0,2019-07-13 08:55:00,948 Johnson St, Atlanta,GA,30301 +234059,AAA Batteries (4-pack),1,2.99,2019-07-09 17:39:00,57 Jackson St, New York City,NY,10001 +234060,USB-C Charging Cable,1,11.95,2019-07-11 14:47:00,617 South St, Atlanta,GA,30301 +234061,Apple Airpods Headphones,1,150.0,2019-07-08 12:03:00,600 Main St, Dallas,TX,75001 +234062,Wired Headphones,1,11.99,2019-07-19 22:21:00,817 5th St, Boston,MA,02215 +234063,USB-C Charging Cable,1,11.95,2019-07-07 17:02:00,347 South St, Atlanta,GA,30301 +234064,AAA Batteries (4-pack),1,2.99,2019-07-06 16:02:00,54 River St, Los Angeles,CA,90001 +234065,iPhone,1,700.0,2019-07-18 18:00:00,307 Adams St, New York City,NY,10001 +234066,Lightning Charging Cable,1,14.95,2019-07-25 21:49:00,433 Park St, San Francisco,CA,94016 +234067,AA Batteries (4-pack),1,3.84,2019-07-01 17:58:00,432 Lakeview St, Atlanta,GA,30301 +234068,AA Batteries (4-pack),1,3.84,2019-07-13 19:09:00,892 Pine St, San Francisco,CA,94016 +234069,AAA Batteries (4-pack),3,2.99,2019-07-17 00:28:00,408 Spruce St, Atlanta,GA,30301 +234070,Bose SoundSport Headphones,1,99.99,2019-07-09 09:25:00,793 11th St, New York City,NY,10001 +234071,AAA Batteries (4-pack),1,2.99,2019-07-31 14:35:00,694 Lakeview St, Los Angeles,CA,90001 +234072,27in FHD Monitor,1,149.99,2019-07-30 12:27:00,568 Madison St, Los Angeles,CA,90001 +234073,Wired Headphones,1,11.99,2019-07-29 20:37:00,16 14th St, New York City,NY,10001 +234074,27in 4K Gaming Monitor,1,389.99,2019-07-16 21:22:00,827 Walnut St, Portland,ME,04101 +234075,Wired Headphones,1,11.99,2019-07-24 13:55:00,329 Jackson St, Boston,MA,02215 +234076,Wired Headphones,2,11.99,2019-07-23 14:09:00,247 Ridge St, New York City,NY,10001 +234077,Wired Headphones,2,11.99,2019-07-18 13:06:00,906 North St, San Francisco,CA,94016 +234078,USB-C Charging Cable,1,11.95,2019-07-15 20:17:00,364 Lake St, Seattle,WA,98101 +234079,27in FHD Monitor,1,149.99,2019-07-19 20:01:00,230 7th St, New York City,NY,10001 +234080,Wired Headphones,1,11.99,2019-07-20 12:43:00,489 Highland St, San Francisco,CA,94016 +234081,Google Phone,1,600.0,2019-07-10 12:48:00,972 Maple St, Boston,MA,02215 +234082,Apple Airpods Headphones,1,150.0,2019-07-30 21:08:00,594 Lake St, Boston,MA,02215 +234083,USB-C Charging Cable,1,11.95,2019-07-12 22:17:00,883 Sunset St, Seattle,WA,98101 +234084,Lightning Charging Cable,1,14.95,2019-07-19 23:15:00,264 Meadow St, Los Angeles,CA,90001 +234085,Apple Airpods Headphones,1,150.0,2019-07-15 19:13:00,778 Cherry St, New York City,NY,10001 +234086,USB-C Charging Cable,1,11.95,2019-07-14 21:29:00,885 Jefferson St, San Francisco,CA,94016 +234087,ThinkPad Laptop,1,999.99,2019-07-06 20:31:00,970 Wilson St, San Francisco,CA,94016 +234088,AAA Batteries (4-pack),1,2.99,2019-07-18 22:49:00,376 Forest St, San Francisco,CA,94016 +234089,Macbook Pro Laptop,1,1700.0,2019-07-14 11:59:00,750 Lincoln St, Seattle,WA,98101 +234089,Bose SoundSport Headphones,1,99.99,2019-07-14 11:59:00,750 Lincoln St, Seattle,WA,98101 +234090,Wired Headphones,1,11.99,2019-07-05 19:19:00,4 Washington St, San Francisco,CA,94016 +234091,Lightning Charging Cable,1,14.95,2019-07-02 22:48:00,202 South St, San Francisco,CA,94016 +234092,Wired Headphones,1,11.99,2019-07-21 23:21:00,24 14th St, Los Angeles,CA,90001 +234093,20in Monitor,1,109.99,2019-07-15 17:49:00,924 Madison St, Austin,TX,73301 +234093,AA Batteries (4-pack),2,3.84,2019-07-15 17:49:00,924 Madison St, Austin,TX,73301 +234094,USB-C Charging Cable,1,11.95,2019-07-29 20:34:00,898 Hill St, New York City,NY,10001 +234095,Apple Airpods Headphones,1,150.0,2019-07-15 13:00:00,143 13th St, New York City,NY,10001 +234096,Wired Headphones,1,11.99,2019-07-09 21:52:00,568 13th St, Atlanta,GA,30301 +234097,AA Batteries (4-pack),1,3.84,2019-07-11 06:20:00,819 Elm St, San Francisco,CA,94016 +234098,USB-C Charging Cable,1,11.95,2019-07-23 08:33:00,464 Center St, Austin,TX,73301 +234099,27in 4K Gaming Monitor,1,389.99,2019-07-12 17:12:00,290 6th St, Los Angeles,CA,90001 +234100,Lightning Charging Cable,1,14.95,2019-07-11 12:18:00,928 Pine St, New York City,NY,10001 +234101,Lightning Charging Cable,1,14.95,2019-07-21 13:44:00,426 13th St, New York City,NY,10001 +234102,Lightning Charging Cable,1,14.95,2019-07-25 22:45:00,597 Madison St, New York City,NY,10001 +234103,27in 4K Gaming Monitor,1,389.99,2019-07-19 00:14:00,72 Lakeview St, New York City,NY,10001 +234104,Apple Airpods Headphones,1,150.0,2019-07-22 20:06:00,297 Forest St, Los Angeles,CA,90001 +234105,27in FHD Monitor,1,149.99,2019-07-19 03:49:00,729 Main St, Los Angeles,CA,90001 +234106,AAA Batteries (4-pack),1,2.99,2019-07-18 18:01:00,907 Elm St, San Francisco,CA,94016 +234107,Apple Airpods Headphones,1,150.0,2019-07-27 13:51:00,849 Lake St, San Francisco,CA,94016 +234108,AAA Batteries (4-pack),2,2.99,2019-07-31 07:43:00,485 Lakeview St, San Francisco,CA,94016 +234109,USB-C Charging Cable,1,11.95,2019-07-14 13:41:00,728 Sunset St, San Francisco,CA,94016 +234110,AA Batteries (4-pack),2,3.84,2019-07-01 06:58:00,889 Cedar St, Dallas,TX,75001 +234111,Macbook Pro Laptop,1,1700.0,2019-07-31 19:31:00,885 2nd St, San Francisco,CA,94016 +234112,AA Batteries (4-pack),1,3.84,2019-07-18 10:28:00,327 Washington St, Dallas,TX,75001 +234113,AAA Batteries (4-pack),1,2.99,2019-07-12 21:44:00,75 West St, New York City,NY,10001 +234114,ThinkPad Laptop,1,999.99,2019-07-03 17:45:00,496 Ridge St, Atlanta,GA,30301 +234115,LG Washing Machine,1,600.0,2019-07-26 09:51:00,958 Jefferson St, New York City,NY,10001 +234116,27in FHD Monitor,1,149.99,2019-07-15 12:40:00,310 Willow St, San Francisco,CA,94016 +234117,Bose SoundSport Headphones,1,99.99,2019-07-12 23:21:00,762 2nd St, Seattle,WA,98101 +234118,USB-C Charging Cable,1,11.95,2019-07-02 18:40:00,436 Dogwood St, San Francisco,CA,94016 +234119,AAA Batteries (4-pack),2,2.99,2019-07-14 14:38:00,702 Cedar St, Seattle,WA,98101 +234120,iPhone,1,700.0,2019-07-06 19:51:00,970 14th St, Boston,MA,02215 +234121,USB-C Charging Cable,1,11.95,2019-07-23 09:26:00,546 Sunset St, Portland,OR,97035 +234122,Apple Airpods Headphones,1,150.0,2019-07-12 22:27:00,81 14th St, Seattle,WA,98101 +234123,Apple Airpods Headphones,1,150.0,2019-07-22 09:45:00,465 Church St, Boston,MA,02215 +234124,20in Monitor,1,109.99,2019-07-20 12:18:00,586 14th St, San Francisco,CA,94016 +234125,AAA Batteries (4-pack),3,2.99,2019-07-26 12:59:00,703 Lake St, Dallas,TX,75001 +234126,27in 4K Gaming Monitor,1,389.99,2019-07-29 15:52:00,807 Cherry St, Portland,ME,04101 +234127,27in FHD Monitor,1,149.99,2019-07-01 14:05:00,894 10th St, Dallas,TX,75001 +234128,Apple Airpods Headphones,1,150.0,2019-07-11 09:15:00,425 West St, Portland,OR,97035 +234129,Apple Airpods Headphones,1,150.0,2019-07-22 18:35:00,607 Jefferson St, Boston,MA,02215 +234130,AAA Batteries (4-pack),1,2.99,2019-07-06 09:25:00,593 Church St, Boston,MA,02215 +234131,USB-C Charging Cable,1,11.95,2019-07-10 19:55:00,153 Cherry St, Austin,TX,73301 +234132,20in Monitor,1,109.99,2019-07-28 14:01:00,443 Wilson St, Dallas,TX,75001 +234133,Apple Airpods Headphones,1,150.0,2019-07-26 21:44:00,546 Dogwood St, Los Angeles,CA,90001 +234134,Lightning Charging Cable,1,14.95,2019-07-20 14:21:00,299 Walnut St, Boston,MA,02215 +234135,Wired Headphones,1,11.99,2019-07-08 18:18:00,858 Hill St, Boston,MA,02215 +234136,27in FHD Monitor,1,149.99,2019-07-15 11:47:00,155 8th St, Portland,OR,97035 +234137,Lightning Charging Cable,1,14.95,2019-07-01 22:32:00,599 Lakeview St, Los Angeles,CA,90001 +234138,Bose SoundSport Headphones,1,99.99,2019-07-27 21:20:00,33 Johnson St, Dallas,TX,75001 +234139,AAA Batteries (4-pack),2,2.99,2019-07-05 18:38:00,886 Forest St, Boston,MA,02215 +234140,Apple Airpods Headphones,1,150.0,2019-07-31 13:39:00,474 South St, Los Angeles,CA,90001 +234141,Vareebadd Phone,1,400.0,2019-07-21 09:42:00,775 14th St, Atlanta,GA,30301 +234142,USB-C Charging Cable,1,11.95,2019-07-07 11:59:00,598 10th St, San Francisco,CA,94016 +234143,27in 4K Gaming Monitor,1,389.99,2019-07-08 23:39:00,857 Elm St, Atlanta,GA,30301 +234144,Lightning Charging Cable,1,14.95,2019-07-28 12:21:00,39 12th St, San Francisco,CA,94016 +234145,AAA Batteries (4-pack),4,2.99,2019-07-25 22:11:00,41 South St, San Francisco,CA,94016 +234146,Lightning Charging Cable,1,14.95,2019-07-24 00:33:00,978 Park St, Austin,TX,73301 +234147,Lightning Charging Cable,1,14.95,2019-07-25 09:09:00,997 North St, Los Angeles,CA,90001 +234148,27in 4K Gaming Monitor,1,389.99,2019-07-17 09:32:00,698 Wilson St, New York City,NY,10001 +234149,AAA Batteries (4-pack),1,2.99,2019-07-20 12:35:00,460 11th St, Los Angeles,CA,90001 +234150,USB-C Charging Cable,1,11.95,2019-07-10 17:04:00,778 10th St, Los Angeles,CA,90001 +234151,Flatscreen TV,1,300.0,2019-07-21 21:54:00,90 Pine St, New York City,NY,10001 +234152,USB-C Charging Cable,1,11.95,2019-07-14 17:10:00,204 7th St, Seattle,WA,98101 +234153,27in FHD Monitor,1,149.99,2019-07-19 16:50:00,915 2nd St, Austin,TX,73301 +234154,Lightning Charging Cable,1,14.95,2019-07-17 17:30:00,893 Walnut St, New York City,NY,10001 +234155,Lightning Charging Cable,1,14.95,2019-07-16 23:43:00,274 Chestnut St, New York City,NY,10001 +234156,iPhone,1,700.0,2019-07-15 08:10:00,226 Madison St, San Francisco,CA,94016 +234157,27in FHD Monitor,1,149.99,2019-07-17 18:06:00,575 Hill St, Seattle,WA,98101 +234158,AA Batteries (4-pack),1,3.84,2019-07-26 08:20:00,753 Cherry St, Boston,MA,02215 +234159,Bose SoundSport Headphones,1,99.99,2019-07-19 21:40:00,671 6th St, Atlanta,GA,30301 +234160,iPhone,1,700.0,2019-07-18 19:40:00,780 10th St, San Francisco,CA,94016 +234161,Wired Headphones,1,11.99,2019-07-19 19:05:00,169 Washington St, Dallas,TX,75001 +234162,Lightning Charging Cable,1,14.95,2019-07-19 15:37:00,631 West St, Dallas,TX,75001 +234163,27in 4K Gaming Monitor,1,389.99,2019-07-31 00:49:00,180 Lincoln St, Seattle,WA,98101 +234164,27in FHD Monitor,1,149.99,2019-07-07 21:47:00,646 Elm St, Boston,MA,02215 +234165,AA Batteries (4-pack),3,3.84,2019-07-29 19:57:00,998 Center St, Portland,OR,97035 +234166,Lightning Charging Cable,1,14.95,2019-07-05 16:47:00,265 Lake St, Boston,MA,02215 +234167,USB-C Charging Cable,1,11.95,2019-07-17 17:50:00,512 1st St, Seattle,WA,98101 +234168,USB-C Charging Cable,2,11.95,2019-07-01 16:51:00,420 13th St, Boston,MA,02215 +234169,AAA Batteries (4-pack),3,2.99,2019-07-02 11:39:00,658 Lincoln St, Austin,TX,73301 +234170,AA Batteries (4-pack),1,3.84,2019-07-09 00:06:00,311 Walnut St, San Francisco,CA,94016 +234171,AA Batteries (4-pack),1,3.84,2019-07-06 15:58:00,797 8th St, San Francisco,CA,94016 +234172,AAA Batteries (4-pack),1,2.99,2019-07-27 16:08:00,384 13th St, San Francisco,CA,94016 +234173,27in 4K Gaming Monitor,1,389.99,2019-07-15 18:32:00,185 Hill St, Portland,OR,97035 +234174,27in FHD Monitor,1,149.99,2019-07-15 21:25:00,333 12th St, San Francisco,CA,94016 +234175,Bose SoundSport Headphones,1,99.99,2019-07-29 05:20:00,13 Dogwood St, San Francisco,CA,94016 +234176,AA Batteries (4-pack),1,3.84,2019-07-30 11:59:00,181 Sunset St, Portland,ME,04101 +234177,20in Monitor,1,109.99,2019-07-18 16:22:00,733 Hill St, San Francisco,CA,94016 +234178,AA Batteries (4-pack),1,3.84,2019-07-17 14:55:00,377 Park St, New York City,NY,10001 +234179,AAA Batteries (4-pack),3,2.99,2019-07-19 19:43:00,532 Pine St, Los Angeles,CA,90001 +234180,Wired Headphones,1,11.99,2019-07-08 12:46:00,124 Lakeview St, San Francisco,CA,94016 +234181,Wired Headphones,1,11.99,2019-07-21 14:04:00,648 Lake St, San Francisco,CA,94016 +234182,AA Batteries (4-pack),2,3.84,2019-07-28 14:48:00,409 6th St, San Francisco,CA,94016 +234182,Bose SoundSport Headphones,1,99.99,2019-07-28 14:48:00,409 6th St, San Francisco,CA,94016 +234183,iPhone,1,700.0,2019-07-30 16:56:00,768 8th St, Los Angeles,CA,90001 +234183,Lightning Charging Cable,1,14.95,2019-07-30 16:56:00,768 8th St, Los Angeles,CA,90001 +234184,Wired Headphones,1,11.99,2019-07-31 19:28:00,353 Maple St, San Francisco,CA,94016 +234185,AA Batteries (4-pack),1,3.84,2019-07-13 14:44:00,727 Elm St, Portland,OR,97035 +234186,USB-C Charging Cable,1,11.95,2019-07-11 20:09:00,812 West St, New York City,NY,10001 +234187,Apple Airpods Headphones,1,150.0,2019-07-01 11:46:00,226 Highland St, San Francisco,CA,94016 +234188,ThinkPad Laptop,1,999.99,2019-07-30 20:56:00,33 River St, San Francisco,CA,94016 +234189,34in Ultrawide Monitor,1,379.99,2019-07-24 07:00:00,171 River St, San Francisco,CA,94016 +234190,AA Batteries (4-pack),1,3.84,2019-07-20 16:24:00,518 5th St, Boston,MA,02215 +234191,Wired Headphones,1,11.99,2019-07-31 17:52:00,88 Lincoln St, Austin,TX,73301 +234192,27in FHD Monitor,1,149.99,2019-07-21 13:40:00,475 Sunset St, Dallas,TX,75001 +234193,USB-C Charging Cable,1,11.95,2019-07-25 10:45:00,9 4th St, Dallas,TX,75001 +234194,USB-C Charging Cable,1,11.95,2019-07-19 15:20:00,822 9th St, New York City,NY,10001 +234195,USB-C Charging Cable,1,11.95,2019-07-28 08:50:00,36 Spruce St, San Francisco,CA,94016 +234196,Lightning Charging Cable,1,14.95,2019-07-14 21:51:00,622 Dogwood St, Los Angeles,CA,90001 +234197,AA Batteries (4-pack),1,3.84,2019-07-14 11:13:00,337 Highland St, Seattle,WA,98101 +234198,USB-C Charging Cable,1,11.95,2019-07-17 23:35:00,122 14th St, San Francisco,CA,94016 +234199,USB-C Charging Cable,1,11.95,2019-07-20 12:44:00,572 Walnut St, Boston,MA,02215 +234200,Apple Airpods Headphones,1,150.0,2019-07-25 18:50:00,770 Pine St, Los Angeles,CA,90001 +234201,27in 4K Gaming Monitor,1,389.99,2019-07-07 15:10:00,67 10th St, Seattle,WA,98101 +234202,USB-C Charging Cable,1,11.95,2019-07-16 17:39:00,974 14th St, Dallas,TX,75001 +234203,USB-C Charging Cable,1,11.95,2019-07-25 08:15:00,639 Washington St, Boston,MA,02215 +234204,iPhone,1,700.0,2019-07-21 11:17:00,461 Spruce St, New York City,NY,10001 +234205,ThinkPad Laptop,1,999.99,2019-07-05 16:50:00,516 Pine St, New York City,NY,10001 +234206,Bose SoundSport Headphones,1,99.99,2019-07-22 23:52:00,814 Park St, Boston,MA,02215 +234207,Wired Headphones,1,11.99,2019-07-12 21:22:00,675 Highland St, Atlanta,GA,30301 +234208,USB-C Charging Cable,1,11.95,2019-07-18 20:13:00,198 Adams St, New York City,NY,10001 +234209,Lightning Charging Cable,1,14.95,2019-07-11 16:21:00,638 13th St, Los Angeles,CA,90001 +234210,34in Ultrawide Monitor,1,379.99,2019-07-17 21:19:00,976 Sunset St, New York City,NY,10001 +234211,AA Batteries (4-pack),1,3.84,2019-07-21 19:46:00,636 Forest St, Los Angeles,CA,90001 +234212,ThinkPad Laptop,1,999.99,2019-07-10 17:46:00,72 9th St, New York City,NY,10001 +234213,Lightning Charging Cable,1,14.95,2019-07-02 12:53:00,268 Johnson St, Dallas,TX,75001 +234214,USB-C Charging Cable,1,11.95,2019-07-22 17:08:00,206 Pine St, San Francisco,CA,94016 +234215,Google Phone,1,600.0,2019-07-19 16:57:00,818 Highland St, Seattle,WA,98101 +234215,USB-C Charging Cable,1,11.95,2019-07-19 16:57:00,818 Highland St, Seattle,WA,98101 +234216,AAA Batteries (4-pack),1,2.99,2019-07-05 10:15:00,100 6th St, Boston,MA,02215 +234217,Bose SoundSport Headphones,1,99.99,2019-07-05 14:12:00,898 Cedar St, San Francisco,CA,94016 +234218,LG Washing Machine,1,600.0,2019-07-24 21:57:00,872 Walnut St, Los Angeles,CA,90001 +234219,AAA Batteries (4-pack),1,2.99,2019-07-26 21:57:00,392 Hill St, New York City,NY,10001 +234220,Lightning Charging Cable,1,14.95,2019-07-14 07:21:00,423 South St, New York City,NY,10001 +234221,27in FHD Monitor,1,149.99,2019-07-29 04:37:00,869 8th St, Atlanta,GA,30301 +234222,AAA Batteries (4-pack),1,2.99,2019-07-29 18:57:00,74 Cedar St, Portland,OR,97035 +234223,Lightning Charging Cable,1,14.95,2019-07-08 10:25:00,304 Cedar St, Austin,TX,73301 +234224,USB-C Charging Cable,1,11.95,2019-07-27 13:06:00,474 Willow St, New York City,NY,10001 +234225,Lightning Charging Cable,1,14.95,2019-07-14 12:45:00,661 10th St, Boston,MA,02215 +234226,Wired Headphones,1,11.99,2019-07-23 19:51:00,858 14th St, Los Angeles,CA,90001 +234227,AAA Batteries (4-pack),1,2.99,2019-07-22 19:17:00,694 Elm St, New York City,NY,10001 +234228,AAA Batteries (4-pack),2,2.99,2019-07-12 13:03:00,818 Highland St, Los Angeles,CA,90001 +234229,Lightning Charging Cable,1,14.95,2019-07-23 10:28:00,330 Highland St, San Francisco,CA,94016 +234230,USB-C Charging Cable,1,11.95,2019-07-01 17:06:00,440 6th St, Los Angeles,CA,90001 +234231,Lightning Charging Cable,1,14.95,2019-07-23 20:26:00,561 Cherry St, Dallas,TX,75001 +234232,Google Phone,1,600.0,2019-07-25 12:42:00,844 Chestnut St, Seattle,WA,98101 +234232,USB-C Charging Cable,1,11.95,2019-07-25 12:42:00,844 Chestnut St, Seattle,WA,98101 +234233,27in FHD Monitor,1,149.99,2019-07-31 11:11:00,753 Willow St, San Francisco,CA,94016 +234234,Bose SoundSport Headphones,1,99.99,2019-07-29 13:22:00,171 9th St, San Francisco,CA,94016 +234235,Lightning Charging Cable,1,14.95,2019-07-05 21:12:00,924 12th St, Los Angeles,CA,90001 +234236,20in Monitor,1,109.99,2019-07-25 18:11:00,981 Highland St, Seattle,WA,98101 +234237,USB-C Charging Cable,1,11.95,2019-07-25 11:10:00,476 Willow St, Atlanta,GA,30301 +234238,27in 4K Gaming Monitor,1,389.99,2019-07-01 12:44:00,29 Ridge St, Atlanta,GA,30301 +234239,Lightning Charging Cable,1,14.95,2019-07-02 16:51:00,903 Elm St, San Francisco,CA,94016 +234240,iPhone,1,700.0,2019-07-18 08:49:00,161 North St, San Francisco,CA,94016 +234241,27in FHD Monitor,1,149.99,2019-07-07 20:43:00,760 Willow St, Seattle,WA,98101 +234242,AA Batteries (4-pack),1,3.84,2019-07-13 10:18:00,44 11th St, Dallas,TX,75001 +234243,Lightning Charging Cable,1,14.95,2019-07-25 21:32:00,714 South St, San Francisco,CA,94016 +234244,Wired Headphones,1,11.99,2019-07-17 16:44:00,271 12th St, New York City,NY,10001 +234245,Bose SoundSport Headphones,1,99.99,2019-07-17 08:22:00,364 Cherry St, San Francisco,CA,94016 +234246,Vareebadd Phone,1,400.0,2019-07-07 19:40:00,498 Chestnut St, Seattle,WA,98101 +234247,AAA Batteries (4-pack),2,2.99,2019-07-22 08:11:00,14 Willow St, New York City,NY,10001 +234248,ThinkPad Laptop,1,999.99,2019-07-17 20:24:00,489 7th St, Los Angeles,CA,90001 +234249,Flatscreen TV,1,300.0,2019-07-13 11:50:00,189 Walnut St, New York City,NY,10001 +234250,iPhone,1,700.0,2019-07-10 22:22:00,759 River St, Portland,ME,04101 +234251,Apple Airpods Headphones,1,150.0,2019-07-29 07:43:00,183 Cherry St, San Francisco,CA,94016 +234252,Wired Headphones,1,11.99,2019-07-04 08:54:00,548 10th St, San Francisco,CA,94016 +234253,Wired Headphones,1,11.99,2019-07-26 15:47:00,330 Wilson St, Los Angeles,CA,90001 +234254,AA Batteries (4-pack),1,3.84,2019-07-04 15:35:00,143 Lake St, San Francisco,CA,94016 +234255,AA Batteries (4-pack),1,3.84,2019-07-02 16:52:00,829 Willow St, Atlanta,GA,30301 +234256,Google Phone,1,600.0,2019-07-08 20:50:00,160 Willow St, New York City,NY,10001 +234257,Lightning Charging Cable,1,14.95,2019-07-04 14:00:00,346 Lincoln St, Austin,TX,73301 +234258,Lightning Charging Cable,1,14.95,2019-07-16 15:37:00,341 2nd St, San Francisco,CA,94016 +234259,20in Monitor,1,109.99,2019-07-15 07:33:00,457 1st St, Los Angeles,CA,90001 +234260,Lightning Charging Cable,1,14.95,2019-07-28 20:34:00,39 Park St, Dallas,TX,75001 +234261,Bose SoundSport Headphones,1,99.99,2019-07-11 16:38:00,852 Ridge St, Los Angeles,CA,90001 +234262,AAA Batteries (4-pack),1,2.99,2019-07-27 16:56:00,801 7th St, Los Angeles,CA,90001 +234263,Google Phone,1,600.0,2019-07-17 11:46:00,53 Jackson St, Los Angeles,CA,90001 +234264,Apple Airpods Headphones,1,150.0,2019-07-05 18:35:00,899 Park St, Los Angeles,CA,90001 +234265,AAA Batteries (4-pack),1,2.99,2019-07-27 22:28:00,159 Dogwood St, San Francisco,CA,94016 +234266,27in 4K Gaming Monitor,1,389.99,2019-07-31 01:09:00,943 7th St, San Francisco,CA,94016 +234267,Lightning Charging Cable,1,14.95,2019-07-29 16:42:00,756 9th St, Los Angeles,CA,90001 +234268,AA Batteries (4-pack),2,3.84,2019-07-09 23:45:00,18 Hill St, Atlanta,GA,30301 +234269,AAA Batteries (4-pack),2,2.99,2019-07-19 20:26:00,640 9th St, Portland,OR,97035 +234270,AAA Batteries (4-pack),2,2.99,2019-07-25 08:56:00,96 Wilson St, New York City,NY,10001 +234271,USB-C Charging Cable,1,11.95,2019-07-12 14:46:00,191 12th St, San Francisco,CA,94016 +234272,Bose SoundSport Headphones,1,99.99,2019-07-05 18:04:00,810 Jefferson St, Atlanta,GA,30301 +234273,AAA Batteries (4-pack),1,2.99,2019-07-31 11:05:00,585 Chestnut St, San Francisco,CA,94016 +234274,Vareebadd Phone,1,400.0,2019-07-03 21:34:00,655 Madison St, Dallas,TX,75001 +234275,USB-C Charging Cable,1,11.95,2019-07-15 22:00:00,824 5th St, Boston,MA,02215 +234276,27in 4K Gaming Monitor,1,389.99,2019-07-11 19:55:00,526 Adams St, Los Angeles,CA,90001 +234277,27in FHD Monitor,1,149.99,2019-07-07 11:30:00,282 South St, Portland,OR,97035 +234278,USB-C Charging Cable,1,11.95,2019-07-02 10:20:00,999 Forest St, San Francisco,CA,94016 +234279,Lightning Charging Cable,1,14.95,2019-07-21 13:17:00,535 Hill St, Seattle,WA,98101 +234280,Bose SoundSport Headphones,1,99.99,2019-07-24 15:54:00,890 Main St, New York City,NY,10001 +234281,USB-C Charging Cable,1,11.95,2019-07-04 09:10:00,897 Lakeview St, Los Angeles,CA,90001 +234282,Google Phone,1,600.0,2019-07-16 21:57:00,345 Forest St, Seattle,WA,98101 +234283,27in FHD Monitor,1,149.99,2019-07-28 16:38:00,655 Center St, New York City,NY,10001 +234284,Wired Headphones,1,11.99,2019-07-25 17:00:00,599 Cherry St, San Francisco,CA,94016 +234285,USB-C Charging Cable,1,11.95,2019-07-19 00:41:00,978 14th St, Los Angeles,CA,90001 +234286,Apple Airpods Headphones,1,150.0,2019-07-23 19:53:00,567 4th St, Los Angeles,CA,90001 +234287,AA Batteries (4-pack),1,3.84,2019-07-19 10:16:00,163 12th St, Atlanta,GA,30301 +234288,USB-C Charging Cable,1,11.95,2019-07-23 11:20:00,759 10th St, San Francisco,CA,94016 +234289,Vareebadd Phone,1,400.0,2019-07-24 18:59:00,157 Willow St, San Francisco,CA,94016 +234289,USB-C Charging Cable,1,11.95,2019-07-24 18:59:00,157 Willow St, San Francisco,CA,94016 +234290,LG Dryer,1,600.0,2019-07-13 21:51:00,34 Forest St, Seattle,WA,98101 +234291,Bose SoundSport Headphones,1,99.99,2019-07-03 11:59:00,31 Cedar St, Boston,MA,02215 +234292,Bose SoundSport Headphones,1,99.99,2019-07-01 09:56:00,764 Ridge St, Austin,TX,73301 +234293,27in 4K Gaming Monitor,1,389.99,2019-07-25 09:26:00,223 13th St, Dallas,TX,75001 +234294,USB-C Charging Cable,1,11.95,2019-07-01 12:02:00,294 Washington St, Seattle,WA,98101 +234295,Wired Headphones,1,11.99,2019-07-28 10:25:00,102 Johnson St, San Francisco,CA,94016 +234296,AAA Batteries (4-pack),2,2.99,2019-07-31 20:05:00,771 Hill St, New York City,NY,10001 +234297,27in FHD Monitor,1,149.99,2019-07-09 16:42:00,710 Cherry St, Atlanta,GA,30301 +234298,USB-C Charging Cable,2,11.95,2019-07-25 11:39:00,792 Johnson St, Boston,MA,02215 +234299,Wired Headphones,1,11.99,2019-07-21 12:56:00,664 Dogwood St, San Francisco,CA,94016 +234300,Bose SoundSport Headphones,1,99.99,2019-07-08 09:04:00,708 6th St, San Francisco,CA,94016 +234301,Wired Headphones,1,11.99,2019-07-17 18:20:00,660 Church St, Austin,TX,73301 +234302,Lightning Charging Cable,1,14.95,2019-07-27 23:36:00,517 Highland St, San Francisco,CA,94016 +234303,20in Monitor,1,109.99,2019-07-12 21:10:00,840 4th St, New York City,NY,10001 +234304,iPhone,1,700.0,2019-07-26 17:48:00,13 Lakeview St, San Francisco,CA,94016 +234305,Lightning Charging Cable,2,14.95,2019-07-08 12:20:00,430 Walnut St, Dallas,TX,75001 +234306,Lightning Charging Cable,1,14.95,2019-07-29 19:25:00,536 North St, New York City,NY,10001 +234307,27in FHD Monitor,1,149.99,2019-07-11 09:19:00,19 Jefferson St, Los Angeles,CA,90001 +234308,USB-C Charging Cable,1,11.95,2019-07-29 16:10:00,319 Walnut St, New York City,NY,10001 +234309,LG Dryer,1,600.0,2019-07-20 12:31:00,433 Main St, San Francisco,CA,94016 +234310,27in FHD Monitor,1,149.99,2019-07-02 09:04:00,49 Dogwood St, Portland,OR,97035 +234311,Bose SoundSport Headphones,1,99.99,2019-07-02 20:33:00,239 Church St, San Francisco,CA,94016 +234312,27in 4K Gaming Monitor,1,389.99,2019-07-08 17:45:00,600 12th St, New York City,NY,10001 +234313,Lightning Charging Cable,1,14.95,2019-07-02 09:56:00,863 Spruce St, Los Angeles,CA,90001 +234314,Google Phone,1,600.0,2019-07-08 17:12:00,83 Adams St, New York City,NY,10001 +234315,USB-C Charging Cable,1,11.95,2019-07-09 11:28:00,340 Jackson St, Dallas,TX,75001 +234316,AAA Batteries (4-pack),1,2.99,2019-07-29 08:38:00,533 Jefferson St, New York City,NY,10001 +234317,AAA Batteries (4-pack),2,2.99,2019-07-16 19:21:00,468 7th St, Portland,ME,04101 +234318,iPhone,1,700.0,2019-07-04 15:43:00,417 Church St, Boston,MA,02215 +234319,Apple Airpods Headphones,1,150.0,2019-07-28 13:51:00,596 West St, San Francisco,CA,94016 +234320,Wired Headphones,1,11.99,2019-07-04 16:27:00,562 14th St, Atlanta,GA,30301 +234321,Wired Headphones,1,11.99,2019-07-09 15:03:00,243 River St, New York City,NY,10001 +234322,Bose SoundSport Headphones,1,99.99,2019-07-13 17:55:00,890 Madison St, New York City,NY,10001 +234323,Apple Airpods Headphones,1,150.0,2019-07-08 16:16:00,134 Pine St, Seattle,WA,98101 +234324,27in FHD Monitor,1,149.99,2019-07-14 20:39:00,418 4th St, Los Angeles,CA,90001 +234325,AAA Batteries (4-pack),1,2.99,2019-07-08 21:28:00,455 8th St, Atlanta,GA,30301 +234326,27in FHD Monitor,1,149.99,2019-07-24 17:17:00,723 12th St, Los Angeles,CA,90001 +234327,34in Ultrawide Monitor,1,379.99,2019-07-29 04:23:00,462 South St, Boston,MA,02215 +234328,27in FHD Monitor,1,149.99,2019-07-17 11:18:00,176 Lake St, Seattle,WA,98101 +234329,Bose SoundSport Headphones,1,99.99,2019-07-21 21:57:00,475 2nd St, San Francisco,CA,94016 +234330,34in Ultrawide Monitor,1,379.99,2019-07-17 00:25:00,983 7th St, San Francisco,CA,94016 +234331,34in Ultrawide Monitor,1,379.99,2019-07-25 12:43:00,632 Cherry St, San Francisco,CA,94016 +234332,Google Phone,1,600.0,2019-07-27 05:26:00,228 Sunset St, New York City,NY,10001 +234332,USB-C Charging Cable,1,11.95,2019-07-27 05:26:00,228 Sunset St, New York City,NY,10001 +234333,Apple Airpods Headphones,1,150.0,2019-07-20 02:27:00,679 Chestnut St, San Francisco,CA,94016 +234334,27in FHD Monitor,1,149.99,2019-07-27 19:03:00,650 River St, Portland,OR,97035 +234335,Wired Headphones,1,11.99,2019-07-01 21:47:00,19 Washington St, New York City,NY,10001 +234336,27in FHD Monitor,1,149.99,2019-07-03 09:30:00,572 9th St, New York City,NY,10001 +234337,27in 4K Gaming Monitor,1,389.99,2019-07-18 14:38:00,294 West St, Los Angeles,CA,90001 +234338,27in FHD Monitor,1,149.99,2019-07-25 11:45:00,603 Willow St, Boston,MA,02215 +234339,Wired Headphones,1,11.99,2019-07-08 19:11:00,567 7th St, San Francisco,CA,94016 +234340,Lightning Charging Cable,1,14.95,2019-07-04 13:35:00,813 Maple St, San Francisco,CA,94016 +234341,LG Dryer,1,600.0,2019-07-15 20:16:00,22 West St, Dallas,TX,75001 +234342,34in Ultrawide Monitor,1,379.99,2019-07-25 19:39:00,800 2nd St, New York City,NY,10001 +234343,34in Ultrawide Monitor,1,379.99,2019-07-21 23:55:00,92 7th St, San Francisco,CA,94016 +234344,USB-C Charging Cable,1,11.95,2019-07-10 04:09:00,812 Hill St, Los Angeles,CA,90001 +234345,34in Ultrawide Monitor,1,379.99,2019-07-21 00:54:00,34 Jefferson St, New York City,NY,10001 +234345,AAA Batteries (4-pack),1,2.99,2019-07-21 00:54:00,34 Jefferson St, New York City,NY,10001 +234346,ThinkPad Laptop,1,999.99,2019-07-02 19:09:00,165 Lakeview St, Seattle,WA,98101 +234347,Lightning Charging Cable,1,14.95,2019-07-31 16:28:00,861 Lincoln St, San Francisco,CA,94016 +234348,AAA Batteries (4-pack),1,2.99,2019-07-22 07:18:00,263 Lincoln St, Atlanta,GA,30301 +234349,AA Batteries (4-pack),1,3.84,2019-07-24 19:23:00,228 Sunset St, Los Angeles,CA,90001 +234350,Apple Airpods Headphones,1,150.0,2019-07-14 21:12:00,698 Willow St, Portland,ME,04101 +234351,Wired Headphones,1,11.99,2019-07-05 18:07:00,895 Dogwood St, San Francisco,CA,94016 +234352,Wired Headphones,1,11.99,2019-07-04 22:54:00,665 Elm St, Dallas,TX,75001 +234353,Vareebadd Phone,1,400.0,2019-07-12 07:56:00,299 Willow St, Atlanta,GA,30301 +234354,Wired Headphones,1,11.99,2019-07-07 10:32:00,409 11th St, New York City,NY,10001 +234355,34in Ultrawide Monitor,1,379.99,2019-07-06 12:26:00,967 Willow St, Portland,OR,97035 +234356,Apple Airpods Headphones,1,150.0,2019-07-18 13:25:00,573 Hill St, New York City,NY,10001 +234357,AAA Batteries (4-pack),1,2.99,2019-07-18 13:44:00,886 Walnut St, San Francisco,CA,94016 +234358,Lightning Charging Cable,1,14.95,2019-07-16 17:37:00,938 Adams St, San Francisco,CA,94016 +234359,AA Batteries (4-pack),1,3.84,2019-07-30 10:11:00,109 7th St, New York City,NY,10001 +234359,Bose SoundSport Headphones,1,99.99,2019-07-30 10:11:00,109 7th St, New York City,NY,10001 +234360,Wired Headphones,1,11.99,2019-07-09 10:14:00,655 14th St, San Francisco,CA,94016 +234361,Macbook Pro Laptop,1,1700.0,2019-07-03 13:50:00,795 Cedar St, Boston,MA,02215 +234362,USB-C Charging Cable,1,11.95,2019-07-13 07:26:00,124 Meadow St, Los Angeles,CA,90001 +234363,27in 4K Gaming Monitor,1,389.99,2019-07-13 23:06:00,113 Main St, Dallas,TX,75001 +234364,Bose SoundSport Headphones,1,99.99,2019-07-19 15:00:00,799 11th St, San Francisco,CA,94016 +234365,AA Batteries (4-pack),2,3.84,2019-07-18 02:50:00,481 Chestnut St, San Francisco,CA,94016 +234366,Google Phone,1,600.0,2019-07-26 16:36:00,532 Lakeview St, Portland,OR,97035 +234367,Lightning Charging Cable,1,14.95,2019-07-02 18:07:00,917 5th St, San Francisco,CA,94016 +234368,ThinkPad Laptop,1,999.99,2019-07-15 13:25:00,694 Maple St, San Francisco,CA,94016 +234369,27in FHD Monitor,1,149.99,2019-07-04 07:47:00,31 8th St, San Francisco,CA,94016 +234370,Wired Headphones,1,11.99,2019-07-01 18:36:00,293 Center St, San Francisco,CA,94016 +234371,Bose SoundSport Headphones,1,99.99,2019-07-15 13:04:00,800 Jackson St, Dallas,TX,75001 +234372,USB-C Charging Cable,1,11.95,2019-07-25 21:08:00,123 1st St, San Francisco,CA,94016 +234373,AAA Batteries (4-pack),1,2.99,2019-07-30 21:51:00,880 9th St, Dallas,TX,75001 +234374,AAA Batteries (4-pack),5,2.99,2019-07-15 17:08:00,560 Sunset St, Seattle,WA,98101 +234375,Wired Headphones,2,11.99,2019-07-29 19:57:00,920 10th St, Boston,MA,02215 +234376,Apple Airpods Headphones,1,150.0,2019-07-18 13:48:00,758 Church St, Dallas,TX,75001 +234377,USB-C Charging Cable,1,11.95,2019-07-06 18:32:00,848 Johnson St, New York City,NY,10001 +234378,AAA Batteries (4-pack),1,2.99,2019-07-20 18:37:00,218 Jefferson St, New York City,NY,10001 +234379,AAA Batteries (4-pack),2,2.99,2019-07-17 11:45:00,105 Jackson St, Los Angeles,CA,90001 +234380,Lightning Charging Cable,1,14.95,2019-07-29 14:48:00,962 Hickory St, Los Angeles,CA,90001 +234381,Bose SoundSport Headphones,1,99.99,2019-07-05 12:34:00,276 Forest St, Boston,MA,02215 +234382,ThinkPad Laptop,1,999.99,2019-07-13 12:44:00,602 Lincoln St, San Francisco,CA,94016 +234383,Lightning Charging Cable,1,14.95,2019-07-27 12:19:00,384 Main St, San Francisco,CA,94016 +234384,Apple Airpods Headphones,1,150.0,2019-07-03 10:32:00,469 Highland St, Los Angeles,CA,90001 +234385,USB-C Charging Cable,1,11.95,2019-07-07 09:17:00,611 Madison St, New York City,NY,10001 +234386,AAA Batteries (4-pack),1,2.99,2019-07-13 04:51:00,305 4th St, Atlanta,GA,30301 +234387,Bose SoundSport Headphones,1,99.99,2019-07-16 17:52:00,515 Willow St, San Francisco,CA,94016 +234388,AA Batteries (4-pack),1,3.84,2019-07-10 13:15:00,278 14th St, Seattle,WA,98101 +234389,Wired Headphones,1,11.99,2019-07-25 22:14:00,907 Willow St, Atlanta,GA,30301 +234390,27in FHD Monitor,1,149.99,2019-07-18 21:11:00,573 Cherry St, Dallas,TX,75001 +234391,27in FHD Monitor,1,149.99,2019-07-27 20:23:00,80 4th St, Dallas,TX,75001 +234392,Flatscreen TV,1,300.0,2019-07-03 21:50:00,552 Willow St, Austin,TX,73301 +234393,Flatscreen TV,1,300.0,2019-07-16 18:49:00,374 4th St, Dallas,TX,75001 +234394,USB-C Charging Cable,1,11.95,2019-07-30 10:27:00,413 10th St, Los Angeles,CA,90001 +234395,USB-C Charging Cable,2,11.95,2019-07-14 12:04:00,131 South St, Seattle,WA,98101 +234396,Bose SoundSport Headphones,1,99.99,2019-07-29 13:17:00,675 Church St, Boston,MA,02215 +234397,Flatscreen TV,1,300.0,2019-07-26 13:54:00,780 Wilson St, Boston,MA,02215 +234398,Lightning Charging Cable,1,14.95,2019-07-25 20:03:00,882 South St, New York City,NY,10001 +234399,Google Phone,1,600.0,2019-07-01 09:40:00,388 10th St, Dallas,TX,75001 +234400,AA Batteries (4-pack),1,3.84,2019-07-08 17:13:00,327 13th St, Los Angeles,CA,90001 +234401,Wired Headphones,1,11.99,2019-07-25 09:53:00,872 Washington St, New York City,NY,10001 +234402,AAA Batteries (4-pack),1,2.99,2019-07-24 13:01:00,618 Chestnut St, San Francisco,CA,94016 +234403,AAA Batteries (4-pack),1,2.99,2019-07-19 15:22:00,411 Pine St, Atlanta,GA,30301 +234404,USB-C Charging Cable,1,11.95,2019-07-07 16:04:00,100 Lake St, Dallas,TX,75001 +234405,AAA Batteries (4-pack),1,2.99,2019-07-02 12:27:00,854 Pine St, Dallas,TX,75001 +234406,Wired Headphones,1,11.99,2019-07-21 21:10:00,135 Cedar St, San Francisco,CA,94016 +234407,Wired Headphones,1,11.99,2019-07-12 13:34:00,785 Lakeview St, Los Angeles,CA,90001 +234408,Macbook Pro Laptop,1,1700.0,2019-07-22 07:03:00,416 West St, San Francisco,CA,94016 +234409,Flatscreen TV,1,300.0,2019-07-10 19:47:00,710 West St, San Francisco,CA,94016 +234410,AA Batteries (4-pack),1,3.84,2019-07-06 14:57:00,132 10th St, Austin,TX,73301 +234411,27in FHD Monitor,1,149.99,2019-07-17 08:43:00,177 Park St, Dallas,TX,75001 +234412,Lightning Charging Cable,1,14.95,2019-07-28 09:30:00,322 10th St, Boston,MA,02215 +234413,Flatscreen TV,1,300.0,2019-07-12 15:30:00,567 South St, San Francisco,CA,94016 +234414,Wired Headphones,1,11.99,2019-07-16 17:06:00,510 11th St, Los Angeles,CA,90001 +234415,AAA Batteries (4-pack),1,2.99,2019-07-02 00:45:00,443 Highland St, New York City,NY,10001 +234416,AA Batteries (4-pack),1,3.84,2019-07-21 23:05:00,724 Hill St, Los Angeles,CA,90001 +234417,34in Ultrawide Monitor,1,379.99,2019-07-25 17:28:00,952 7th St, Seattle,WA,98101 +234418,34in Ultrawide Monitor,1,379.99,2019-07-31 23:43:00,552 Walnut St, Los Angeles,CA,90001 +234419,Flatscreen TV,1,300.0,2019-07-22 17:17:00,430 Park St, Atlanta,GA,30301 +234420,AA Batteries (4-pack),1,3.84,2019-07-07 23:59:00,46 Center St, Dallas,TX,75001 +234421,AAA Batteries (4-pack),1,2.99,2019-07-15 17:59:00,941 Pine St, San Francisco,CA,94016 +234422,AA Batteries (4-pack),2,3.84,2019-07-05 08:30:00,85 Sunset St, Boston,MA,02215 +234423,LG Dryer,1,600.0,2019-07-10 06:02:00,636 Madison St, New York City,NY,10001 +234424,AA Batteries (4-pack),1,3.84,2019-07-26 19:40:00,10 Adams St, Atlanta,GA,30301 +234425,27in FHD Monitor,1,149.99,2019-07-01 15:32:00,650 Center St, New York City,NY,10001 +234426,27in FHD Monitor,1,149.99,2019-07-07 16:14:00,855 4th St, San Francisco,CA,94016 +234427,34in Ultrawide Monitor,1,379.99,2019-07-19 10:34:00,624 West St, San Francisco,CA,94016 +234428,iPhone,1,700.0,2019-07-05 00:09:00,430 Maple St, Atlanta,GA,30301 +234429,USB-C Charging Cable,1,11.95,2019-07-01 21:45:00,214 Dogwood St, New York City,NY,10001 +234430,Lightning Charging Cable,1,14.95,2019-07-04 14:30:00,250 Pine St, New York City,NY,10001 +234431,USB-C Charging Cable,1,11.95,2019-07-23 12:04:00,852 Highland St, San Francisco,CA,94016 +234432,Lightning Charging Cable,1,14.95,2019-07-22 17:29:00,214 Washington St, Dallas,TX,75001 +234433,USB-C Charging Cable,1,11.95,2019-07-03 11:41:00,749 Maple St, New York City,NY,10001 +234434,34in Ultrawide Monitor,1,379.99,2019-07-04 20:54:00,650 Pine St, San Francisco,CA,94016 +234435,Bose SoundSport Headphones,1,99.99,2019-07-26 12:07:00,68 Highland St, San Francisco,CA,94016 +234436,AA Batteries (4-pack),1,3.84,2019-07-24 08:25:00,77 Church St, Los Angeles,CA,90001 +234437,USB-C Charging Cable,1,11.95,2019-07-26 22:15:00,620 Cherry St, Dallas,TX,75001 +234438,AA Batteries (4-pack),2,3.84,2019-07-17 19:08:00,821 Hickory St, Boston,MA,02215 +234439,AAA Batteries (4-pack),1,2.99,2019-07-14 22:41:00,967 Pine St, Boston,MA,02215 +234440,20in Monitor,1,109.99,2019-07-07 13:20:00,137 Forest St, Portland,OR,97035 +234441,AA Batteries (4-pack),1,3.84,2019-07-27 15:41:00,963 Elm St, New York City,NY,10001 +234442,Macbook Pro Laptop,1,1700.0,2019-07-25 21:03:00,885 Madison St, Los Angeles,CA,90001 +234443,USB-C Charging Cable,1,11.95,2019-07-12 19:41:00,932 North St, San Francisco,CA,94016 +234444,iPhone,1,700.0,2019-07-10 20:17:00,513 North St, Dallas,TX,75001 +234445,USB-C Charging Cable,1,11.95,2019-07-03 12:04:00,840 Cherry St, Seattle,WA,98101 +234446,USB-C Charging Cable,1,11.95,2019-07-31 11:49:00,710 Elm St, San Francisco,CA,94016 +234447,34in Ultrawide Monitor,1,379.99,2019-07-08 00:22:00,125 Wilson St, Dallas,TX,75001 +234448,Apple Airpods Headphones,1,150.0,2019-07-01 14:16:00,573 South St, Seattle,WA,98101 +234449,iPhone,1,700.0,2019-07-28 19:02:00,644 11th St, Dallas,TX,75001 +234450,Lightning Charging Cable,1,14.95,2019-07-29 11:19:00,611 Lincoln St, Los Angeles,CA,90001 +234451,Apple Airpods Headphones,1,150.0,2019-07-06 19:40:00,631 Lakeview St, San Francisco,CA,94016 +234452,Apple Airpods Headphones,1,150.0,2019-07-15 10:47:00,908 Willow St, Austin,TX,73301 +234453,Bose SoundSport Headphones,1,99.99,2019-07-19 23:32:00,53 8th St, Austin,TX,73301 +234454,Bose SoundSport Headphones,1,99.99,2019-07-31 17:51:00,533 Jefferson St, San Francisco,CA,94016 +234455,27in FHD Monitor,1,149.99,2019-07-01 17:52:00,133 4th St, Portland,ME,04101 +234456,Lightning Charging Cable,1,14.95,2019-07-18 12:01:00,429 Hickory St, Seattle,WA,98101 +234457,ThinkPad Laptop,1,999.99,2019-07-18 14:08:00,733 Walnut St, San Francisco,CA,94016 +234458,AA Batteries (4-pack),1,3.84,2019-07-07 11:15:00,908 Ridge St, Los Angeles,CA,90001 +234459,AA Batteries (4-pack),2,3.84,2019-07-29 23:05:00,678 8th St, New York City,NY,10001 +234460,Lightning Charging Cable,1,14.95,2019-07-11 09:31:00,800 Meadow St, Los Angeles,CA,90001 +234461,iPhone,1,700.0,2019-07-31 19:34:00,130 Center St, Seattle,WA,98101 +234462,Wired Headphones,1,11.99,2019-07-16 20:34:00,698 Washington St, New York City,NY,10001 +234463,Wired Headphones,1,11.99,2019-07-20 15:25:00,292 7th St, Los Angeles,CA,90001 +234464,Lightning Charging Cable,1,14.95,2019-07-10 17:37:00,230 4th St, San Francisco,CA,94016 +234465,Apple Airpods Headphones,1,150.0,2019-07-05 20:27:00,368 Cherry St, Seattle,WA,98101 +234466,34in Ultrawide Monitor,1,379.99,2019-07-26 12:35:00,588 Madison St, New York City,NY,10001 +234467,USB-C Charging Cable,1,11.95,2019-07-16 13:37:00,333 Cherry St, Dallas,TX,75001 +234468,ThinkPad Laptop,1,999.99,2019-07-15 12:30:00,896 River St, Atlanta,GA,30301 +234469,Apple Airpods Headphones,1,150.0,2019-07-21 20:13:00,448 Main St, Austin,TX,73301 +234470,Flatscreen TV,1,300.0,2019-07-22 10:03:00,418 Pine St, San Francisco,CA,94016 +234471,AAA Batteries (4-pack),1,2.99,2019-07-24 16:23:00,836 Willow St, Los Angeles,CA,90001 +234472,Wired Headphones,1,11.99,2019-07-02 17:26:00,703 Wilson St, Atlanta,GA,30301 +234473,34in Ultrawide Monitor,1,379.99,2019-07-02 10:20:00,975 1st St, Boston,MA,02215 +234474,iPhone,1,700.0,2019-07-25 11:53:00,285 Cedar St, San Francisco,CA,94016 +234474,Lightning Charging Cable,1,14.95,2019-07-25 11:53:00,285 Cedar St, San Francisco,CA,94016 +234475,Bose SoundSport Headphones,1,99.99,2019-07-14 13:39:00,35 Adams St, Dallas,TX,75001 +234476,Flatscreen TV,1,300.0,2019-07-23 07:25:00,683 Maple St, New York City,NY,10001 +234477,USB-C Charging Cable,1,11.95,2019-07-09 13:39:00,456 4th St, New York City,NY,10001 +234478,iPhone,1,700.0,2019-07-28 12:05:00,513 Elm St, Dallas,TX,75001 +234479,Google Phone,1,600.0,2019-07-23 16:11:00,834 Wilson St, Boston,MA,02215 +234480,AAA Batteries (4-pack),1,2.99,2019-07-19 19:49:00,767 Sunset St, San Francisco,CA,94016 +234481,Macbook Pro Laptop,1,1700.0,2019-07-02 10:50:00,299 9th St, San Francisco,CA,94016 +234482,Wired Headphones,1,11.99,2019-07-05 11:31:00,498 Lincoln St, New York City,NY,10001 +234483,USB-C Charging Cable,1,11.95,2019-07-20 18:52:00,844 Spruce St, Atlanta,GA,30301 +234483,AAA Batteries (4-pack),1,2.99,2019-07-20 18:52:00,844 Spruce St, Atlanta,GA,30301 +234484,Lightning Charging Cable,1,14.95,2019-07-25 17:12:00,519 River St, Boston,MA,02215 +234485,Macbook Pro Laptop,1,1700.0,2019-07-14 16:51:00,380 Wilson St, Atlanta,GA,30301 +234486,Lightning Charging Cable,1,14.95,2019-07-08 13:29:00,93 Lake St, Austin,TX,73301 +234487,Bose SoundSport Headphones,1,99.99,2019-07-23 13:25:00,225 Hill St, Dallas,TX,75001 +234488,Apple Airpods Headphones,1,150.0,2019-07-09 20:26:00,480 2nd St, Boston,MA,02215 +234489,Wired Headphones,1,11.99,2019-07-16 10:15:00,694 Wilson St, Austin,TX,73301 +234490,AA Batteries (4-pack),1,3.84,2019-07-21 15:09:00,683 Lakeview St, San Francisco,CA,94016 +234491,ThinkPad Laptop,1,999.99,2019-07-13 06:49:00,701 Highland St, New York City,NY,10001 +234492,Apple Airpods Headphones,1,150.0,2019-07-31 22:36:00,881 12th St, Atlanta,GA,30301 +234493,27in 4K Gaming Monitor,1,389.99,2019-07-26 12:58:00,730 Walnut St, Dallas,TX,75001 +234494,Wired Headphones,1,11.99,2019-07-13 17:16:00,40 9th St, San Francisco,CA,94016 +234495,Lightning Charging Cable,1,14.95,2019-07-21 13:22:00,454 Lake St, Dallas,TX,75001 +234496,Lightning Charging Cable,1,14.95,2019-07-26 21:50:00,424 Jackson St, Portland,OR,97035 +234497,Apple Airpods Headphones,1,150.0,2019-07-19 01:00:00,557 River St, Portland,OR,97035 +234498,Lightning Charging Cable,1,14.95,2019-07-08 05:11:00,328 Forest St, Los Angeles,CA,90001 +234499,AAA Batteries (4-pack),1,2.99,2019-07-12 23:18:00,729 Forest St, San Francisco,CA,94016 +234500,Lightning Charging Cable,1,14.95,2019-07-14 22:40:00,123 Meadow St, San Francisco,CA,94016 +234501,27in FHD Monitor,1,149.99,2019-07-21 10:57:00,886 Jefferson St, Portland,ME,04101 +234502,Apple Airpods Headphones,1,150.0,2019-07-14 16:58:00,417 Hickory St, Dallas,TX,75001 +234503,Flatscreen TV,1,300.0,2019-07-24 15:33:00,623 Church St, San Francisco,CA,94016 +234504,Lightning Charging Cable,1,14.95,2019-07-08 18:04:00,532 Lakeview St, Los Angeles,CA,90001 +234505,27in FHD Monitor,1,149.99,2019-07-11 20:34:00,753 Pine St, Portland,ME,04101 +234506,iPhone,1,700.0,2019-07-27 05:47:00,384 10th St, Austin,TX,73301 +234507,Lightning Charging Cable,1,14.95,2019-07-17 14:41:00,735 Main St, Dallas,TX,75001 +234508,Macbook Pro Laptop,1,1700.0,2019-07-16 20:21:00,52 West St, New York City,NY,10001 +234509,Wired Headphones,1,11.99,2019-07-10 00:05:00,534 1st St, Los Angeles,CA,90001 +234510,27in 4K Gaming Monitor,1,389.99,2019-07-04 11:20:00,937 Spruce St, Los Angeles,CA,90001 +234511,USB-C Charging Cable,1,11.95,2019-07-30 21:05:00,25 Chestnut St, Seattle,WA,98101 +234512,Lightning Charging Cable,1,14.95,2019-07-01 13:30:00,613 4th St, Seattle,WA,98101 +234513,Flatscreen TV,1,300.0,2019-07-03 10:13:00,894 14th St, New York City,NY,10001 +234514,USB-C Charging Cable,2,11.95,2019-07-20 16:45:00,378 Highland St, New York City,NY,10001 +234515,Apple Airpods Headphones,1,150.0,2019-07-14 22:37:00,210 13th St, Seattle,WA,98101 +234516,Wired Headphones,1,11.99,2019-07-08 11:28:00,637 9th St, Seattle,WA,98101 +234517,27in FHD Monitor,1,149.99,2019-07-06 12:03:00,976 Chestnut St, Dallas,TX,75001 +234518,AAA Batteries (4-pack),1,2.99,2019-07-02 17:14:00,874 Highland St, Atlanta,GA,30301 +234519,USB-C Charging Cable,1,11.95,2019-07-31 11:30:00,71 Spruce St, San Francisco,CA,94016 +234520,Wired Headphones,1,11.99,2019-07-11 13:08:00,499 Cherry St, New York City,NY,10001 +234521,Bose SoundSport Headphones,1,99.99,2019-07-13 23:12:00,197 Main St, San Francisco,CA,94016 +234522,27in 4K Gaming Monitor,1,389.99,2019-07-27 11:29:00,575 Spruce St, Los Angeles,CA,90001 +234523,AAA Batteries (4-pack),1,2.99,2019-07-23 18:04:00,644 8th St, Los Angeles,CA,90001 +234524,Lightning Charging Cable,1,14.95,2019-07-09 20:46:00,383 5th St, Los Angeles,CA,90001 +234525,AAA Batteries (4-pack),3,2.99,2019-07-12 07:47:00,711 Spruce St, Los Angeles,CA,90001 +234526,AA Batteries (4-pack),2,3.84,2019-07-27 13:00:00,319 Pine St, Austin,TX,73301 +234527,AA Batteries (4-pack),1,3.84,2019-07-22 22:48:00,194 River St, Atlanta,GA,30301 +234528,AAA Batteries (4-pack),1,2.99,2019-07-21 10:34:00,461 11th St, Boston,MA,02215 +234529,USB-C Charging Cable,1,11.95,2019-07-22 12:56:00,247 11th St, Austin,TX,73301 +234530,27in 4K Gaming Monitor,1,389.99,2019-07-15 17:13:00,242 Washington St, San Francisco,CA,94016 +234531,Vareebadd Phone,1,400.0,2019-07-29 17:10:00,332 Pine St, Seattle,WA,98101 +234532,27in 4K Gaming Monitor,1,389.99,2019-07-30 16:45:00,743 Jackson St, San Francisco,CA,94016 +234533,AA Batteries (4-pack),2,3.84,2019-07-18 20:17:00,937 Lake St, Boston,MA,02215 +234534,AA Batteries (4-pack),1,3.84,2019-07-18 20:18:00,571 Adams St, San Francisco,CA,94016 +234535,AAA Batteries (4-pack),1,2.99,2019-07-08 17:58:00,477 River St, Los Angeles,CA,90001 +234536,Wired Headphones,1,11.99,2019-07-11 17:03:00,483 Spruce St, Los Angeles,CA,90001 +234537,AAA Batteries (4-pack),1,2.99,2019-07-05 18:52:00,413 Sunset St, Los Angeles,CA,90001 +234538,27in 4K Gaming Monitor,1,389.99,2019-07-08 10:34:00,577 8th St, San Francisco,CA,94016 +234539,27in 4K Gaming Monitor,1,389.99,2019-07-18 17:13:00,88 Adams St, San Francisco,CA,94016 +234540,AAA Batteries (4-pack),1,2.99,2019-07-04 14:55:00,234 7th St, Boston,MA,02215 +234541,AA Batteries (4-pack),1,3.84,2019-07-23 12:23:00,939 Maple St, Los Angeles,CA,90001 +234542,Bose SoundSport Headphones,1,99.99,2019-07-21 08:27:00,779 Church St, New York City,NY,10001 +234543,AA Batteries (4-pack),1,3.84,2019-07-16 02:37:00,589 Maple St, San Francisco,CA,94016 +234544,27in FHD Monitor,1,149.99,2019-07-09 21:18:00,795 River St, New York City,NY,10001 +234545,AA Batteries (4-pack),1,3.84,2019-07-05 15:30:00,634 Pine St, Atlanta,GA,30301 +234546,34in Ultrawide Monitor,1,379.99,2019-07-20 10:00:00,810 5th St, Austin,TX,73301 +234547,Apple Airpods Headphones,1,150.0,2019-07-09 19:34:00,882 Lake St, San Francisco,CA,94016 +234548,LG Dryer,1,600.0,2019-07-22 16:16:00,696 13th St, Los Angeles,CA,90001 +234549,Lightning Charging Cable,1,14.95,2019-07-06 15:07:00,329 Willow St, Austin,TX,73301 +234550,USB-C Charging Cable,1,11.95,2019-07-20 07:29:00,107 Spruce St, Atlanta,GA,30301 +234551,34in Ultrawide Monitor,1,379.99,2019-07-20 21:29:00,36 Chestnut St, Austin,TX,73301 +234552,20in Monitor,1,109.99,2019-07-26 19:15:00,862 River St, Austin,TX,73301 +234553,Lightning Charging Cable,1,14.95,2019-07-26 20:34:00,618 Park St, Boston,MA,02215 +234554,Apple Airpods Headphones,1,150.0,2019-07-29 18:09:00,21 14th St, Los Angeles,CA,90001 +234555,27in FHD Monitor,1,149.99,2019-07-20 17:51:00,878 Chestnut St, Boston,MA,02215 +234556,Macbook Pro Laptop,1,1700.0,2019-07-02 09:53:00,933 Spruce St, Los Angeles,CA,90001 +234557,USB-C Charging Cable,1,11.95,2019-07-02 21:44:00,644 Madison St, Los Angeles,CA,90001 +234558,AA Batteries (4-pack),2,3.84,2019-07-24 21:34:00,574 Johnson St, New York City,NY,10001 +234559,27in 4K Gaming Monitor,1,389.99,2019-07-29 14:43:00,966 1st St, Boston,MA,02215 +234560,AA Batteries (4-pack),1,3.84,2019-07-21 13:36:00,371 Johnson St, San Francisco,CA,94016 +234561,AA Batteries (4-pack),2,3.84,2019-07-13 15:00:00,72 Lake St, Los Angeles,CA,90001 +234562,Lightning Charging Cable,1,14.95,2019-07-27 09:19:00,761 Forest St, Portland,ME,04101 +234563,Wired Headphones,1,11.99,2019-07-07 18:45:00,509 10th St, San Francisco,CA,94016 +234564,Bose SoundSport Headphones,1,99.99,2019-07-26 18:20:00,918 11th St, Portland,OR,97035 +234565,iPhone,1,700.0,2019-07-08 16:26:00,577 Park St, Los Angeles,CA,90001 +234566,27in FHD Monitor,1,149.99,2019-07-23 10:09:00,788 5th St, Los Angeles,CA,90001 +234567,Lightning Charging Cable,1,14.95,2019-07-06 23:32:00,569 Ridge St, Dallas,TX,75001 +234568,Bose SoundSport Headphones,1,99.99,2019-07-25 18:59:00,407 Forest St, Atlanta,GA,30301 +234569,Apple Airpods Headphones,1,150.0,2019-07-27 11:50:00,531 Park St, San Francisco,CA,94016 +234570,20in Monitor,1,109.99,2019-07-11 21:28:00,655 Cedar St, Los Angeles,CA,90001 +234571,AAA Batteries (4-pack),2,2.99,2019-07-16 10:29:00,660 Center St, Los Angeles,CA,90001 +234572,20in Monitor,1,109.99,2019-07-01 18:10:00,365 Washington St, New York City,NY,10001 +234573,iPhone,1,700.0,2019-07-26 11:05:00,830 11th St, Austin,TX,73301 +234574,Bose SoundSport Headphones,1,99.99,2019-07-24 18:24:00,292 Main St, Dallas,TX,75001 +234575,AA Batteries (4-pack),1,3.84,2019-07-22 20:36:00,657 Pine St, Atlanta,GA,30301 +234576,Flatscreen TV,1,300.0,2019-07-16 09:38:00,676 Hickory St, Dallas,TX,75001 +234577,Apple Airpods Headphones,1,150.0,2019-07-13 17:30:00,323 South St, Seattle,WA,98101 +234578,AA Batteries (4-pack),1,3.84,2019-07-01 11:04:00,112 11th St, Los Angeles,CA,90001 +234579,iPhone,1,700.0,2019-07-10 12:18:00,495 11th St, Dallas,TX,75001 +234580,AAA Batteries (4-pack),1,2.99,2019-07-12 13:57:00,197 Pine St, San Francisco,CA,94016 +234581,Wired Headphones,1,11.99,2019-07-23 17:49:00,171 River St, Dallas,TX,75001 +234582,Lightning Charging Cable,1,14.95,2019-07-18 11:41:00,316 9th St, New York City,NY,10001 +234583,iPhone,1,700.0,2019-07-22 06:49:00,146 5th St, Boston,MA,02215 +234583,Lightning Charging Cable,1,14.95,2019-07-22 06:49:00,146 5th St, Boston,MA,02215 +234584,27in FHD Monitor,1,149.99,2019-07-01 11:36:00,257 Elm St, Boston,MA,02215 +234585,34in Ultrawide Monitor,1,379.99,2019-07-20 03:41:00,214 Hickory St, San Francisco,CA,94016 +234586,AA Batteries (4-pack),2,3.84,2019-07-21 18:07:00,143 Willow St, Los Angeles,CA,90001 +234587,20in Monitor,1,109.99,2019-07-12 10:33:00,23 Walnut St, New York City,NY,10001 +234588,Lightning Charging Cable,1,14.95,2019-07-16 09:48:00,131 Ridge St, Los Angeles,CA,90001 +234589,Bose SoundSport Headphones,1,99.99,2019-07-14 11:00:00,339 Main St, New York City,NY,10001 +234590,Google Phone,1,600.0,2019-07-13 08:45:00,247 Main St, Boston,MA,02215 +234590,Bose SoundSport Headphones,1,99.99,2019-07-13 08:45:00,247 Main St, Boston,MA,02215 +234591,LG Washing Machine,1,600.0,2019-07-13 15:31:00,380 Maple St, San Francisco,CA,94016 +234592,27in FHD Monitor,1,149.99,2019-07-27 10:04:00,265 North St, Los Angeles,CA,90001 +234593,27in 4K Gaming Monitor,1,389.99,2019-07-09 15:32:00,680 2nd St, Los Angeles,CA,90001 +234594,20in Monitor,1,109.99,2019-07-06 10:00:00,822 South St, Seattle,WA,98101 +234595,Wired Headphones,1,11.99,2019-07-22 06:57:00,651 10th St, Los Angeles,CA,90001 +234596,Bose SoundSport Headphones,1,99.99,2019-07-18 18:47:00,745 4th St, Atlanta,GA,30301 +234597,ThinkPad Laptop,1,999.99,2019-07-11 13:52:00,940 Hickory St, Portland,OR,97035 +234598,AA Batteries (4-pack),2,3.84,2019-07-17 23:08:00,425 Maple St, Boston,MA,02215 +234599,AAA Batteries (4-pack),1,2.99,2019-07-13 11:33:00,844 9th St, San Francisco,CA,94016 +234600,27in 4K Gaming Monitor,1,389.99,2019-07-08 17:19:00,149 10th St, Austin,TX,73301 +234601,AAA Batteries (4-pack),2,2.99,2019-07-10 15:23:00,756 River St, San Francisco,CA,94016 +234602,Bose SoundSport Headphones,1,99.99,2019-07-03 15:22:00,386 9th St, Atlanta,GA,30301 +234603,AA Batteries (4-pack),1,3.84,2019-07-31 22:01:00,579 10th St, Boston,MA,02215 +234604,Apple Airpods Headphones,1,150.0,2019-07-15 22:43:00,532 Wilson St, Los Angeles,CA,90001 +234605,Wired Headphones,1,11.99,2019-07-23 06:01:00,548 Meadow St, San Francisco,CA,94016 +234606,AA Batteries (4-pack),2,3.84,2019-07-09 07:20:00,749 12th St, New York City,NY,10001 +234607,Bose SoundSport Headphones,1,99.99,2019-07-04 19:04:00,940 Adams St, San Francisco,CA,94016 +234608,AAA Batteries (4-pack),1,2.99,2019-07-05 15:17:00,53 Cherry St, San Francisco,CA,94016 +234609,AA Batteries (4-pack),1,3.84,2019-07-10 10:43:00,960 Jefferson St, San Francisco,CA,94016 +234610,Lightning Charging Cable,1,14.95,2019-07-19 01:17:00,242 2nd St, Boston,MA,02215 +234611,AA Batteries (4-pack),2,3.84,2019-07-20 19:22:00,4 Cedar St, Austin,TX,73301 +234612,Apple Airpods Headphones,1,150.0,2019-07-28 19:00:00,595 Washington St, New York City,NY,10001 +234613,Apple Airpods Headphones,1,150.0,2019-07-30 21:56:00,250 Cherry St, San Francisco,CA,94016 +234614,Apple Airpods Headphones,1,150.0,2019-07-14 13:59:00,809 Willow St, Austin,TX,73301 +234615,20in Monitor,1,109.99,2019-07-16 11:17:00,745 Dogwood St, Dallas,TX,75001 +234616,Lightning Charging Cable,1,14.95,2019-07-09 18:21:00,172 Madison St, Los Angeles,CA,90001 +234617,ThinkPad Laptop,1,999.99,2019-07-29 14:55:00,332 North St, Atlanta,GA,30301 +234618,USB-C Charging Cable,1,11.95,2019-07-17 22:02:00,699 2nd St, Boston,MA,02215 +234619,AAA Batteries (4-pack),1,2.99,2019-07-05 04:42:00,173 7th St, Boston,MA,02215 +234620,AA Batteries (4-pack),1,3.84,2019-07-04 12:12:00,664 North St, Los Angeles,CA,90001 +234621,Apple Airpods Headphones,1,150.0,2019-07-19 07:11:00,960 14th St, Portland,OR,97035 +234622,AAA Batteries (4-pack),1,2.99,2019-07-15 05:19:00,658 4th St, San Francisco,CA,94016 +234623,Macbook Pro Laptop,1,1700.0,2019-07-10 11:22:00,360 10th St, Atlanta,GA,30301 +234624,AAA Batteries (4-pack),1,2.99,2019-07-30 23:32:00,361 West St, Dallas,TX,75001 +234625,Wired Headphones,1,11.99,2019-07-10 14:31:00,560 Lakeview St, San Francisco,CA,94016 +234626,Bose SoundSport Headphones,1,99.99,2019-07-03 07:42:00,54 Church St, San Francisco,CA,94016 +234627,Wired Headphones,1,11.99,2019-07-26 18:29:00,305 12th St, New York City,NY,10001 +234628,AA Batteries (4-pack),2,3.84,2019-07-21 21:09:00,224 11th St, Los Angeles,CA,90001 +234628,Bose SoundSport Headphones,1,99.99,2019-07-21 21:09:00,224 11th St, Los Angeles,CA,90001 +234629,USB-C Charging Cable,2,11.95,2019-07-13 19:10:00,448 Madison St, Seattle,WA,98101 +234630,AAA Batteries (4-pack),1,2.99,2019-07-07 11:23:00,990 Spruce St, Atlanta,GA,30301 +234631,Apple Airpods Headphones,1,150.0,2019-07-29 22:06:00,76 Adams St, San Francisco,CA,94016 +234631,Bose SoundSport Headphones,1,99.99,2019-07-29 22:06:00,76 Adams St, San Francisco,CA,94016 +234632,27in 4K Gaming Monitor,1,389.99,2019-07-05 00:41:00,126 Hill St, Atlanta,GA,30301 +234633,Macbook Pro Laptop,1,1700.0,2019-07-23 09:50:00,315 Hickory St, Austin,TX,73301 +234634,27in 4K Gaming Monitor,1,389.99,2019-07-04 22:26:00,542 11th St, Boston,MA,02215 +234635,Google Phone,1,600.0,2019-07-05 14:51:00,675 Wilson St, Boston,MA,02215 +234636,ThinkPad Laptop,1,999.99,2019-07-21 14:37:00,913 Sunset St, Boston,MA,02215 +234637,AA Batteries (4-pack),2,3.84,2019-07-27 15:29:00,421 14th St, Boston,MA,02215 +234638,Apple Airpods Headphones,1,150.0,2019-07-22 10:21:00,746 West St, Seattle,WA,98101 +234639,AA Batteries (4-pack),2,3.84,2019-07-29 01:26:00,572 Maple St, Atlanta,GA,30301 +234640,AA Batteries (4-pack),1,3.84,2019-07-06 14:41:00,500 Dogwood St, San Francisco,CA,94016 +234641,AA Batteries (4-pack),1,3.84,2019-07-18 17:16:00,857 Jefferson St, Seattle,WA,98101 +234642,34in Ultrawide Monitor,1,379.99,2019-07-08 11:30:00,236 5th St, New York City,NY,10001 +234643,iPhone,1,700.0,2019-07-04 12:30:00,22 Meadow St, San Francisco,CA,94016 +234644,USB-C Charging Cable,1,11.95,2019-07-10 19:55:00,750 6th St, San Francisco,CA,94016 +234645,Macbook Pro Laptop,1,1700.0,2019-07-15 08:21:00,252 Ridge St, Dallas,TX,75001 +234646,27in FHD Monitor,1,149.99,2019-07-22 16:06:00,92 Wilson St, Los Angeles,CA,90001 +234647,Lightning Charging Cable,1,14.95,2019-07-13 19:06:00,485 Sunset St, San Francisco,CA,94016 +234648,USB-C Charging Cable,2,11.95,2019-07-23 09:35:00,210 Spruce St, San Francisco,CA,94016 +234649,27in 4K Gaming Monitor,1,389.99,2019-07-15 22:06:00,57 Center St, San Francisco,CA,94016 +234650,Flatscreen TV,1,300.0,2019-07-12 19:58:00,202 Dogwood St, Los Angeles,CA,90001 +234651,ThinkPad Laptop,1,999.99,2019-07-26 22:05:00,7 Wilson St, San Francisco,CA,94016 +234652,Wired Headphones,1,11.99,2019-07-02 14:50:00,330 River St, San Francisco,CA,94016 +234653,USB-C Charging Cable,2,11.95,2019-07-03 20:39:00,423 South St, San Francisco,CA,94016 +234654,USB-C Charging Cable,1,11.95,2019-07-07 23:55:00,29 Chestnut St, San Francisco,CA,94016 +234655,Flatscreen TV,1,300.0,2019-07-13 18:51:00,278 Center St, Dallas,TX,75001 +234656,AAA Batteries (4-pack),5,2.99,2019-07-22 19:31:00,997 South St, San Francisco,CA,94016 +234657,Lightning Charging Cable,1,14.95,2019-07-24 01:44:00,853 Walnut St, Boston,MA,02215 +234658,Macbook Pro Laptop,1,1700.0,2019-07-21 13:15:00,969 8th St, Austin,TX,73301 +234659,USB-C Charging Cable,1,11.95,2019-07-06 09:11:00,382 7th St, Los Angeles,CA,90001 +234659,Lightning Charging Cable,1,14.95,2019-07-06 09:11:00,382 7th St, Los Angeles,CA,90001 +234660,Apple Airpods Headphones,1,150.0,2019-07-10 19:37:00,707 Main St, Seattle,WA,98101 +234661,Bose SoundSport Headphones,1,99.99,2019-07-13 16:48:00,682 Chestnut St, Los Angeles,CA,90001 +234662,AA Batteries (4-pack),1,3.84,2019-07-12 12:58:00,486 Lakeview St, San Francisco,CA,94016 +234663,Wired Headphones,1,11.99,2019-07-07 19:19:00,306 8th St, New York City,NY,10001 +234664,AA Batteries (4-pack),2,3.84,2019-07-09 19:38:00,746 Highland St, New York City,NY,10001 +234665,ThinkPad Laptop,1,999.99,2019-07-22 01:01:00,48 Ridge St, New York City,NY,10001 +234666,Apple Airpods Headphones,1,150.0,2019-07-03 22:38:00,890 5th St, Atlanta,GA,30301 +234667,Apple Airpods Headphones,1,150.0,2019-07-09 19:08:00,866 Highland St, Portland,OR,97035 +234668,AA Batteries (4-pack),2,3.84,2019-07-24 15:07:00,718 Church St, San Francisco,CA,94016 +234669,Google Phone,1,600.0,2019-07-18 10:43:00,524 Jefferson St, Los Angeles,CA,90001 +234670,USB-C Charging Cable,1,11.95,2019-07-15 13:01:00,980 Jefferson St, San Francisco,CA,94016 +234670,AA Batteries (4-pack),1,3.84,2019-07-15 13:01:00,980 Jefferson St, San Francisco,CA,94016 +234671,Lightning Charging Cable,1,14.95,2019-07-21 22:48:00,792 5th St, New York City,NY,10001 +234672,Apple Airpods Headphones,1,150.0,2019-07-12 09:07:00,374 12th St, Seattle,WA,98101 +234673,AAA Batteries (4-pack),1,2.99,2019-07-22 15:03:00,772 4th St, Los Angeles,CA,90001 +234674,Apple Airpods Headphones,1,150.0,2019-07-24 01:08:00,820 2nd St, Dallas,TX,75001 +234675,AA Batteries (4-pack),1,3.84,2019-07-18 13:46:00,426 Meadow St, New York City,NY,10001 +234676,27in FHD Monitor,1,149.99,2019-07-09 23:19:00,261 5th St, Boston,MA,02215 +234677,Google Phone,1,600.0,2019-07-17 09:20:00,969 Madison St, Seattle,WA,98101 +234678,20in Monitor,1,109.99,2019-07-21 12:20:00,767 2nd St, Boston,MA,02215 +234679,Google Phone,1,600.0,2019-07-08 20:17:00,166 Willow St, Dallas,TX,75001 +234680,20in Monitor,1,109.99,2019-07-19 04:14:00,83 Wilson St, San Francisco,CA,94016 +234681,AA Batteries (4-pack),1,3.84,2019-07-03 15:58:00,490 South St, San Francisco,CA,94016 +234682,Bose SoundSport Headphones,1,99.99,2019-07-28 20:12:00,67 Park St, New York City,NY,10001 +234683,AA Batteries (4-pack),3,3.84,2019-07-20 23:57:00,624 Maple St, Boston,MA,02215 +234684,Lightning Charging Cable,1,14.95,2019-07-20 21:23:00,386 14th St, Boston,MA,02215 +234685,20in Monitor,1,109.99,2019-07-18 21:14:00,450 Johnson St, San Francisco,CA,94016 +234686,Apple Airpods Headphones,1,150.0,2019-07-27 09:36:00,833 Adams St, Boston,MA,02215 +234687,USB-C Charging Cable,1,11.95,2019-07-16 23:18:00,344 Jackson St, Atlanta,GA,30301 +234688,34in Ultrawide Monitor,1,379.99,2019-07-14 21:26:00,995 West St, Los Angeles,CA,90001 +234689,Bose SoundSport Headphones,1,99.99,2019-07-27 14:11:00,445 1st St, Atlanta,GA,30301 +234690,34in Ultrawide Monitor,1,379.99,2019-07-08 21:14:00,554 Jackson St, Seattle,WA,98101 +234691,Lightning Charging Cable,1,14.95,2019-07-20 11:16:00,759 Forest St, Seattle,WA,98101 +234692,Wired Headphones,1,11.99,2019-07-12 08:27:00,188 Jefferson St, Los Angeles,CA,90001 +234693,27in 4K Gaming Monitor,1,389.99,2019-07-16 19:03:00,687 Forest St, San Francisco,CA,94016 +234694,Apple Airpods Headphones,1,150.0,2019-07-22 10:37:00,828 Willow St, Los Angeles,CA,90001 +234695,Apple Airpods Headphones,1,150.0,2019-07-04 17:01:00,316 North St, Seattle,WA,98101 +234696,Lightning Charging Cable,1,14.95,2019-07-24 12:28:00,18 4th St, Boston,MA,02215 +234697,USB-C Charging Cable,1,11.95,2019-07-20 15:55:00,380 Willow St, San Francisco,CA,94016 +234698,27in 4K Gaming Monitor,1,389.99,2019-07-02 16:59:00,414 Park St, Seattle,WA,98101 +234699,Apple Airpods Headphones,1,150.0,2019-07-25 13:14:00,694 West St, Boston,MA,02215 +234700,AA Batteries (4-pack),1,3.84,2019-07-26 11:17:00,599 North St, Los Angeles,CA,90001 +234701,34in Ultrawide Monitor,1,379.99,2019-07-03 19:29:00,409 Center St, Portland,OR,97035 +234702,USB-C Charging Cable,1,11.95,2019-07-02 10:04:00,719 Hill St, New York City,NY,10001 +234703,AAA Batteries (4-pack),2,2.99,2019-07-04 18:06:00,472 Park St, Austin,TX,73301 +234704,USB-C Charging Cable,1,11.95,2019-07-14 13:20:00,358 Adams St, Boston,MA,02215 +234705,Flatscreen TV,1,300.0,2019-07-06 20:47:00,166 South St, Portland,OR,97035 +234706,Lightning Charging Cable,1,14.95,2019-07-06 19:00:00,99 Jefferson St, Atlanta,GA,30301 +234707,Lightning Charging Cable,1,14.95,2019-07-21 20:34:00,737 Pine St, San Francisco,CA,94016 +234708,Apple Airpods Headphones,1,150.0,2019-07-24 14:48:00,107 14th St, San Francisco,CA,94016 +234709,27in FHD Monitor,1,149.99,2019-07-29 16:17:00,764 1st St, San Francisco,CA,94016 +234710,AA Batteries (4-pack),1,3.84,2019-07-16 20:54:00,838 Center St, Atlanta,GA,30301 +234711,Google Phone,1,600.0,2019-07-13 22:56:00,952 6th St, New York City,NY,10001 +234712,iPhone,1,700.0,2019-07-04 23:40:00,782 2nd St, Seattle,WA,98101 +234712,Lightning Charging Cable,1,14.95,2019-07-04 23:40:00,782 2nd St, Seattle,WA,98101 +234713,AAA Batteries (4-pack),2,2.99,2019-07-04 17:35:00,689 Washington St, New York City,NY,10001 +234714,AAA Batteries (4-pack),3,2.99,2019-07-19 16:25:00,37 North St, Dallas,TX,75001 +234715,Lightning Charging Cable,1,14.95,2019-07-28 21:55:00,399 Church St, Portland,OR,97035 +234716,Wired Headphones,2,11.99,2019-07-13 17:31:00,609 Meadow St, Los Angeles,CA,90001 +234717,AA Batteries (4-pack),1,3.84,2019-07-09 10:13:00,274 7th St, San Francisco,CA,94016 +234718,Wired Headphones,1,11.99,2019-07-20 22:22:00,113 Wilson St, Austin,TX,73301 +234719,ThinkPad Laptop,1,999.99,2019-07-26 17:28:00,451 Maple St, San Francisco,CA,94016 +234720,20in Monitor,1,109.99,2019-07-22 05:32:00,81 Hill St, Dallas,TX,75001 +234721,AA Batteries (4-pack),1,3.84,2019-07-28 23:07:00,715 Hill St, San Francisco,CA,94016 +234722,USB-C Charging Cable,1,11.95,2019-07-03 00:17:00,365 1st St, Austin,TX,73301 +234723,iPhone,1,700.0,2019-07-21 15:33:00,292 12th St, New York City,NY,10001 +234724,USB-C Charging Cable,2,11.95,2019-07-02 15:24:00,162 Chestnut St, Los Angeles,CA,90001 +234725,Lightning Charging Cable,1,14.95,2019-07-18 11:23:00,145 2nd St, Portland,OR,97035 +234726,34in Ultrawide Monitor,1,379.99,2019-07-25 10:08:00,741 Elm St, Boston,MA,02215 +234727,USB-C Charging Cable,1,11.95,2019-07-01 19:23:00,262 8th St, New York City,NY,10001 +234728,Macbook Pro Laptop,1,1700.0,2019-07-03 12:51:00,90 5th St, Los Angeles,CA,90001 +234729,Apple Airpods Headphones,1,150.0,2019-07-07 23:20:00,92 6th St, Seattle,WA,98101 +234730,USB-C Charging Cable,1,11.95,2019-07-10 17:38:00,366 5th St, Los Angeles,CA,90001 +234731,AAA Batteries (4-pack),1,2.99,2019-07-25 18:56:00,309 13th St, Dallas,TX,75001 +234732,Bose SoundSport Headphones,1,99.99,2019-07-11 12:52:00,616 2nd St, Los Angeles,CA,90001 +234733,USB-C Charging Cable,1,11.95,2019-07-20 15:08:00,780 Center St, New York City,NY,10001 +234734,Bose SoundSport Headphones,1,99.99,2019-07-11 14:52:00,98 Washington St, New York City,NY,10001 +234735,27in 4K Gaming Monitor,1,389.99,2019-07-26 10:21:00,595 Cherry St, Portland,ME,04101 +234736,Lightning Charging Cable,1,14.95,2019-07-21 13:53:00,734 7th St, Los Angeles,CA,90001 +234737,Apple Airpods Headphones,1,150.0,2019-07-31 06:22:00,521 Washington St, Los Angeles,CA,90001 +234737,USB-C Charging Cable,1,11.95,2019-07-31 06:22:00,521 Washington St, Los Angeles,CA,90001 +234738,AA Batteries (4-pack),1,3.84,2019-07-16 12:03:00,582 1st St, Austin,TX,73301 +234739,AA Batteries (4-pack),2,3.84,2019-07-30 13:38:00,170 Walnut St, Los Angeles,CA,90001 +234740,27in 4K Gaming Monitor,1,389.99,2019-07-11 17:25:00,83 Walnut St, New York City,NY,10001 +234741,iPhone,1,700.0,2019-07-04 22:30:00,512 Forest St, New York City,NY,10001 +234742,AA Batteries (4-pack),1,3.84,2019-07-05 10:52:00,140 2nd St, San Francisco,CA,94016 +234743,AA Batteries (4-pack),1,3.84,2019-07-29 18:04:00,95 Walnut St, Los Angeles,CA,90001 +234744,Bose SoundSport Headphones,1,99.99,2019-07-22 21:31:00,49 Sunset St, Atlanta,GA,30301 +234745,20in Monitor,1,109.99,2019-07-14 21:24:00,631 12th St, San Francisco,CA,94016 +234746,Wired Headphones,1,11.99,2019-07-09 09:12:00,826 North St, Los Angeles,CA,90001 +234747,Flatscreen TV,1,300.0,2019-07-30 12:08:00,234 8th St, Los Angeles,CA,90001 +234748,Lightning Charging Cable,2,14.95,2019-07-12 23:19:00,863 8th St, San Francisco,CA,94016 +234749,Bose SoundSport Headphones,1,99.99,2019-07-03 21:03:00,630 Hickory St, San Francisco,CA,94016 +234750,Macbook Pro Laptop,1,1700.0,2019-07-01 20:52:00,587 9th St, Boston,MA,02215 +234751,iPhone,1,700.0,2019-07-09 22:45:00,31 9th St, Portland,OR,97035 +234752,Apple Airpods Headphones,1,150.0,2019-07-04 14:47:00,582 North St, Boston,MA,02215 +234753,USB-C Charging Cable,1,11.95,2019-07-14 10:09:00,988 Forest St, New York City,NY,10001 +234754,AA Batteries (4-pack),1,3.84,2019-07-07 15:27:00,437 Dogwood St, Los Angeles,CA,90001 +234755,USB-C Charging Cable,1,11.95,2019-07-15 14:41:00,716 Washington St, San Francisco,CA,94016 +234756,Lightning Charging Cable,1,14.95,2019-07-14 10:48:00,28 Elm St, New York City,NY,10001 +234757,AAA Batteries (4-pack),2,2.99,2019-07-15 19:20:00,909 Adams St, San Francisco,CA,94016 +234758,Lightning Charging Cable,2,14.95,2019-07-09 15:07:00,391 5th St, Seattle,WA,98101 +234759,ThinkPad Laptop,1,999.99,2019-07-03 21:56:00,298 5th St, Dallas,TX,75001 +234760,LG Dryer,1,600.0,2019-07-12 22:06:00,591 Johnson St, San Francisco,CA,94016 +234761,27in 4K Gaming Monitor,1,389.99,2019-07-12 18:26:00,819 Chestnut St, San Francisco,CA,94016 +234762,Wired Headphones,1,11.99,2019-07-22 13:12:00,62 Jefferson St, Los Angeles,CA,90001 +234762,Apple Airpods Headphones,1,150.0,2019-07-22 13:12:00,62 Jefferson St, Los Angeles,CA,90001 +234763,AA Batteries (4-pack),1,3.84,2019-07-12 22:51:00,565 Highland St, San Francisco,CA,94016 +234764,20in Monitor,1,109.99,2019-07-06 19:34:00,448 South St, Boston,MA,02215 +234765,iPhone,1,700.0,2019-07-18 19:08:00,452 Park St, Atlanta,GA,30301 +234766,Wired Headphones,1,11.99,2019-07-07 15:04:00,482 South St, Seattle,WA,98101 +234767,USB-C Charging Cable,1,11.95,2019-07-13 18:13:00,121 14th St, Boston,MA,02215 +234768,Bose SoundSport Headphones,1,99.99,2019-07-16 13:19:00,289 12th St, Atlanta,GA,30301 +234769,Bose SoundSport Headphones,1,99.99,2019-07-04 14:08:00,443 Cedar St, Los Angeles,CA,90001 +234770,USB-C Charging Cable,1,11.95,2019-07-15 13:04:00,491 Jackson St, Dallas,TX,75001 +234771,27in FHD Monitor,1,149.99,2019-07-09 22:26:00,680 West St, San Francisco,CA,94016 +234772,34in Ultrawide Monitor,1,379.99,2019-07-10 12:38:00,689 South St, Los Angeles,CA,90001 +234773,Vareebadd Phone,1,400.0,2019-07-10 14:29:00,225 North St, Dallas,TX,75001 +234774,Lightning Charging Cable,3,14.95,2019-07-25 20:09:00,408 North St, San Francisco,CA,94016 +234775,USB-C Charging Cable,1,11.95,2019-07-15 11:59:00,368 South St, Atlanta,GA,30301 +234776,USB-C Charging Cable,1,11.95,2019-07-06 20:54:00,459 South St, San Francisco,CA,94016 +234777,AAA Batteries (4-pack),1,2.99,2019-07-19 09:35:00,442 Center St, Los Angeles,CA,90001 +234778,20in Monitor,1,109.99,2019-07-23 17:48:00,71 Adams St, Atlanta,GA,30301 +234779,Lightning Charging Cable,1,14.95,2019-07-15 11:56:00,735 Dogwood St, Portland,OR,97035 +234780,Google Phone,1,600.0,2019-07-15 21:38:00,507 Meadow St, New York City,NY,10001 +234781,AA Batteries (4-pack),1,3.84,2019-07-22 13:38:00,742 Lincoln St, Boston,MA,02215 +234782,Lightning Charging Cable,1,14.95,2019-07-19 02:29:00,411 Forest St, Los Angeles,CA,90001 +234783,27in 4K Gaming Monitor,1,389.99,2019-07-28 19:09:00,242 Maple St, New York City,NY,10001 +234784,Wired Headphones,2,11.99,2019-07-07 09:30:00,74 10th St, Austin,TX,73301 +234785,AAA Batteries (4-pack),1,2.99,2019-07-31 18:35:00,247 Lakeview St, San Francisco,CA,94016 +234786,AAA Batteries (4-pack),1,2.99,2019-07-31 17:05:00,858 10th St, New York City,NY,10001 +234787,Wired Headphones,1,11.99,2019-07-03 20:46:00,367 12th St, Seattle,WA,98101 +234788,Macbook Pro Laptop,1,1700.0,2019-07-10 17:46:00,652 9th St, Seattle,WA,98101 +234789,34in Ultrawide Monitor,1,379.99,2019-07-15 15:06:00,114 4th St, Seattle,WA,98101 +234790,AAA Batteries (4-pack),1,2.99,2019-07-20 14:52:00,90 Church St, Los Angeles,CA,90001 +234791,20in Monitor,1,109.99,2019-07-03 13:50:00,681 Ridge St, San Francisco,CA,94016 +234792,Macbook Pro Laptop,1,1700.0,2019-07-29 10:31:00,456 Main St, Seattle,WA,98101 +234793,Apple Airpods Headphones,1,150.0,2019-07-06 13:45:00,691 Jackson St, Atlanta,GA,30301 +234794,AAA Batteries (4-pack),2,2.99,2019-07-18 00:04:00,391 Ridge St, New York City,NY,10001 +234795,AAA Batteries (4-pack),3,2.99,2019-07-07 20:26:00,467 8th St, New York City,NY,10001 +234796,Apple Airpods Headphones,1,150.0,2019-07-19 23:30:00,987 5th St, Los Angeles,CA,90001 +234797,27in FHD Monitor,1,149.99,2019-07-22 00:19:00,641 Main St, San Francisco,CA,94016 +234798,Apple Airpods Headphones,1,150.0,2019-07-09 19:47:00,559 13th St, San Francisco,CA,94016 +234799,Apple Airpods Headphones,1,150.0,2019-07-18 15:14:00,752 5th St, Los Angeles,CA,90001 +234800,USB-C Charging Cable,1,11.95,2019-07-14 21:12:00,69 8th St, Seattle,WA,98101 +234801,iPhone,1,700.0,2019-07-26 22:54:00,332 North St, San Francisco,CA,94016 +234802,27in 4K Gaming Monitor,1,389.99,2019-07-20 11:31:00,595 Elm St, Dallas,TX,75001 +234803,USB-C Charging Cable,1,11.95,2019-07-30 13:53:00,964 Lake St, Boston,MA,02215 +234804,AAA Batteries (4-pack),1,2.99,2019-07-20 13:41:00,528 11th St, Los Angeles,CA,90001 +234805,AAA Batteries (4-pack),3,2.99,2019-07-04 11:19:00,481 Meadow St, San Francisco,CA,94016 +234806,AA Batteries (4-pack),1,3.84,2019-07-16 08:25:00,11 Park St, Atlanta,GA,30301 +234807,Vareebadd Phone,1,400.0,2019-07-06 08:49:00,186 11th St, San Francisco,CA,94016 +234808,Bose SoundSport Headphones,1,99.99,2019-07-31 06:09:00,609 Sunset St, Los Angeles,CA,90001 +234809,Wired Headphones,1,11.99,2019-07-31 07:45:00,309 10th St, Atlanta,GA,30301 +234810,Bose SoundSport Headphones,1,99.99,2019-07-13 06:37:00,949 South St, Atlanta,GA,30301 +234811,AA Batteries (4-pack),1,3.84,2019-07-30 22:52:00,208 North St, Austin,TX,73301 +234812,Macbook Pro Laptop,1,1700.0,2019-07-01 15:17:00,877 Spruce St, Boston,MA,02215 +234813,USB-C Charging Cable,1,11.95,2019-07-27 00:00:00,767 Willow St, Boston,MA,02215 +234814,AAA Batteries (4-pack),1,2.99,2019-07-07 05:40:00,735 Walnut St, San Francisco,CA,94016 +234815,Wired Headphones,1,11.99,2019-07-01 18:54:00,57 5th St, San Francisco,CA,94016 +234816,AA Batteries (4-pack),1,3.84,2019-07-27 19:54:00,187 11th St, Boston,MA,02215 +234817,Lightning Charging Cable,1,14.95,2019-07-31 15:23:00,414 14th St, Seattle,WA,98101 +234818,AA Batteries (4-pack),1,3.84,2019-07-23 09:11:00,82 13th St, San Francisco,CA,94016 +234819,Flatscreen TV,1,300.0,2019-07-04 17:04:00,604 Cedar St, Atlanta,GA,30301 +234820,34in Ultrawide Monitor,1,379.99,2019-07-30 17:13:00,371 Cherry St, San Francisco,CA,94016 +234821,AAA Batteries (4-pack),1,2.99,2019-07-26 09:41:00,630 Lake St, Los Angeles,CA,90001 +234822,27in 4K Gaming Monitor,1,389.99,2019-07-11 16:21:00,844 13th St, New York City,NY,10001 +234823,USB-C Charging Cable,1,11.95,2019-07-27 09:09:00,652 Sunset St, Los Angeles,CA,90001 +234824,Lightning Charging Cable,1,14.95,2019-07-15 23:30:00,682 Jackson St, Los Angeles,CA,90001 +234825,Google Phone,1,600.0,2019-07-20 16:23:00,697 Maple St, Atlanta,GA,30301 +234826,Google Phone,1,600.0,2019-07-10 11:25:00,38 7th St, New York City,NY,10001 +234827,Apple Airpods Headphones,1,150.0,2019-07-07 20:01:00,334 Hickory St, San Francisco,CA,94016 +234828,AAA Batteries (4-pack),1,2.99,2019-07-22 16:55:00,711 Center St, San Francisco,CA,94016 +234829,AA Batteries (4-pack),3,3.84,2019-07-27 17:25:00,631 Highland St, Portland,OR,97035 +234830,20in Monitor,1,109.99,2019-07-10 01:27:00,790 Hickory St, New York City,NY,10001 +234831,AA Batteries (4-pack),1,3.84,2019-07-13 11:55:00,671 6th St, Los Angeles,CA,90001 +234832,Google Phone,1,600.0,2019-07-05 22:26:00,732 12th St, Los Angeles,CA,90001 +234832,USB-C Charging Cable,1,11.95,2019-07-05 22:26:00,732 12th St, Los Angeles,CA,90001 +234833,Wired Headphones,2,11.99,2019-07-10 08:02:00,508 2nd St, Los Angeles,CA,90001 +234834,AAA Batteries (4-pack),1,2.99,2019-07-16 10:10:00,146 Walnut St, San Francisco,CA,94016 +234835,Google Phone,1,600.0,2019-07-09 09:32:00,117 Church St, San Francisco,CA,94016 +234836,Bose SoundSport Headphones,1,99.99,2019-07-11 16:33:00,43 Dogwood St, San Francisco,CA,94016 +234837,Apple Airpods Headphones,1,150.0,2019-07-22 23:27:00,428 Ridge St, San Francisco,CA,94016 +234838,Macbook Pro Laptop,1,1700.0,2019-07-08 11:45:00,124 Elm St, San Francisco,CA,94016 +234839,34in Ultrawide Monitor,2,379.99,2019-07-10 14:58:00,974 2nd St, New York City,NY,10001 +234840,USB-C Charging Cable,1,11.95,2019-07-03 14:23:00,419 10th St, Dallas,TX,75001 +234841,Wired Headphones,1,11.99,2019-07-27 20:23:00,626 Chestnut St, San Francisco,CA,94016 +234842,AA Batteries (4-pack),1,3.84,2019-07-26 16:45:00,846 7th St, Dallas,TX,75001 +234843,AA Batteries (4-pack),2,3.84,2019-07-25 13:00:00,495 Spruce St, San Francisco,CA,94016 +234844,Macbook Pro Laptop,1,1700.0,2019-07-27 14:39:00,446 Church St, Boston,MA,02215 +234845,27in FHD Monitor,1,149.99,2019-07-29 09:29:00,264 Highland St, Los Angeles,CA,90001 +234846,20in Monitor,1,109.99,2019-07-08 08:47:00,313 Madison St, Boston,MA,02215 +234847,27in 4K Gaming Monitor,1,389.99,2019-07-18 12:28:00,869 Hickory St, Portland,OR,97035 +234848,Apple Airpods Headphones,1,150.0,2019-07-07 18:24:00,252 5th St, San Francisco,CA,94016 +234849,27in FHD Monitor,1,149.99,2019-07-14 08:49:00,181 Cedar St, Los Angeles,CA,90001 +234850,ThinkPad Laptop,1,999.99,2019-07-11 11:52:00,313 Lake St, San Francisco,CA,94016 +234851,iPhone,1,700.0,2019-07-02 18:46:00,171 South St, Boston,MA,02215 +234852,Wired Headphones,1,11.99,2019-07-01 16:43:00,746 Park St, San Francisco,CA,94016 +234853,Macbook Pro Laptop,1,1700.0,2019-07-21 09:11:00,735 Madison St, Austin,TX,73301 +234854,USB-C Charging Cable,1,11.95,2019-07-28 10:11:00,829 10th St, New York City,NY,10001 +234855,Flatscreen TV,1,300.0,2019-07-23 12:42:00,34 11th St, Portland,OR,97035 +234856,Flatscreen TV,1,300.0,2019-07-13 11:24:00,54 Walnut St, Seattle,WA,98101 +234857,Lightning Charging Cable,1,14.95,2019-07-26 18:55:00,819 Cedar St, San Francisco,CA,94016 +234858,Bose SoundSport Headphones,1,99.99,2019-07-31 09:36:00,238 Chestnut St, New York City,NY,10001 +234859,USB-C Charging Cable,1,11.95,2019-07-01 11:18:00,178 Ridge St, San Francisco,CA,94016 +234860,Bose SoundSport Headphones,1,99.99,2019-07-10 20:11:00,870 Hill St, Dallas,TX,75001 +234860,Wired Headphones,1,11.99,2019-07-10 20:11:00,870 Hill St, Dallas,TX,75001 +234861,Lightning Charging Cable,1,14.95,2019-07-15 14:50:00,65 10th St, Los Angeles,CA,90001 +234862,USB-C Charging Cable,1,11.95,2019-07-21 20:17:00,519 Chestnut St, San Francisco,CA,94016 +234863,AAA Batteries (4-pack),2,2.99,2019-07-16 12:36:00,652 Willow St, Austin,TX,73301 +234864,USB-C Charging Cable,2,11.95,2019-07-23 19:32:00,568 Johnson St, San Francisco,CA,94016 +234865,USB-C Charging Cable,1,11.95,2019-07-06 04:04:00,561 Jackson St, Seattle,WA,98101 +234866,27in FHD Monitor,1,149.99,2019-07-15 13:34:00,124 River St, San Francisco,CA,94016 +234867,AAA Batteries (4-pack),1,2.99,2019-07-25 11:57:00,79 Cedar St, Dallas,TX,75001 +234868,Bose SoundSport Headphones,1,99.99,2019-07-25 11:51:00,37 Hill St, Atlanta,GA,30301 +234869,ThinkPad Laptop,1,999.99,2019-07-15 09:16:00,729 8th St, Portland,OR,97035 +234870,ThinkPad Laptop,1,999.99,2019-07-08 11:06:00,993 7th St, New York City,NY,10001 +234871,AAA Batteries (4-pack),1,2.99,2019-07-08 14:28:00,438 Wilson St, New York City,NY,10001 +234872,27in FHD Monitor,1,149.99,2019-07-29 10:48:00,764 West St, New York City,NY,10001 +234873,AA Batteries (4-pack),1,3.84,2019-07-01 09:47:00,775 Sunset St, Atlanta,GA,30301 +234874,iPhone,1,700.0,2019-07-16 10:10:00,677 4th St, Austin,TX,73301 +234875,Apple Airpods Headphones,1,150.0,2019-07-27 11:44:00,426 4th St, New York City,NY,10001 +234876,Wired Headphones,1,11.99,2019-07-04 10:57:00,659 5th St, New York City,NY,10001 +234877,AA Batteries (4-pack),2,3.84,2019-07-01 22:06:00,563 Washington St, Austin,TX,73301 +234878,27in 4K Gaming Monitor,1,389.99,2019-07-21 22:18:00,225 North St, Los Angeles,CA,90001 +234879,Apple Airpods Headphones,1,150.0,2019-07-16 23:05:00,378 1st St, San Francisco,CA,94016 +234880,Bose SoundSport Headphones,1,99.99,2019-07-23 06:36:00,882 River St, Boston,MA,02215 +234881,USB-C Charging Cable,1,11.95,2019-07-19 18:28:00,426 Johnson St, Los Angeles,CA,90001 +234882,Bose SoundSport Headphones,1,99.99,2019-07-05 10:56:00,136 Main St, Seattle,WA,98101 +234883,iPhone,1,700.0,2019-07-09 08:24:00,167 Cherry St, Boston,MA,02215 +234883,Lightning Charging Cable,1,14.95,2019-07-09 08:24:00,167 Cherry St, Boston,MA,02215 +234884,Lightning Charging Cable,1,14.95,2019-07-17 08:23:00,87 8th St, San Francisco,CA,94016 +234885,iPhone,1,700.0,2019-07-29 16:43:00,178 Highland St, Atlanta,GA,30301 +234886,Macbook Pro Laptop,1,1700.0,2019-07-19 20:42:00,949 Hickory St, New York City,NY,10001 +234887,Bose SoundSport Headphones,1,99.99,2019-07-16 08:43:00,302 12th St, San Francisco,CA,94016 +234888,USB-C Charging Cable,1,11.95,2019-07-23 19:01:00,944 Johnson St, Boston,MA,02215 +234889,34in Ultrawide Monitor,1,379.99,2019-07-15 12:58:00,692 Spruce St, San Francisco,CA,94016 +234890,AA Batteries (4-pack),1,3.84,2019-07-25 22:34:00,832 Highland St, Dallas,TX,75001 +234891,27in FHD Monitor,1,149.99,2019-07-12 12:10:00,38 Center St, Los Angeles,CA,90001 +234892,AAA Batteries (4-pack),4,2.99,2019-07-09 18:52:00,143 Highland St, Portland,OR,97035 +234893,Bose SoundSport Headphones,1,99.99,2019-07-22 10:51:00,885 Hickory St, Boston,MA,02215 +234894,20in Monitor,1,109.99,2019-07-14 10:17:00,134 Highland St, Dallas,TX,75001 +234895,Wired Headphones,1,11.99,2019-07-23 11:54:00,412 Highland St, San Francisco,CA,94016 +234896,Apple Airpods Headphones,1,150.0,2019-07-13 21:02:00,187 Johnson St, San Francisco,CA,94016 +234897,AAA Batteries (4-pack),1,2.99,2019-07-24 15:03:00,201 6th St, San Francisco,CA,94016 +234898,USB-C Charging Cable,1,11.95,2019-07-28 13:42:00,300 Cedar St, Dallas,TX,75001 +234899,AA Batteries (4-pack),1,3.84,2019-07-31 22:50:00,647 7th St, San Francisco,CA,94016 +234900,27in FHD Monitor,1,149.99,2019-07-09 18:40:00,196 Maple St, San Francisco,CA,94016 +234901,AA Batteries (4-pack),1,3.84,2019-07-12 10:24:00,27 Forest St, Atlanta,GA,30301 +234902,Lightning Charging Cable,1,14.95,2019-07-09 13:03:00,758 Washington St, Austin,TX,73301 +234903,Wired Headphones,1,11.99,2019-07-08 18:34:00,425 Jefferson St, Los Angeles,CA,90001 +234904,Bose SoundSport Headphones,1,99.99,2019-07-18 14:59:00,222 4th St, San Francisco,CA,94016 +234905,AAA Batteries (4-pack),1,2.99,2019-07-27 09:11:00,104 Dogwood St, New York City,NY,10001 +234906,34in Ultrawide Monitor,1,379.99,2019-07-31 08:24:00,29 Jackson St, Boston,MA,02215 +234906,Apple Airpods Headphones,1,150.0,2019-07-31 08:24:00,29 Jackson St, Boston,MA,02215 +234907,AAA Batteries (4-pack),1,2.99,2019-07-02 13:26:00,535 Meadow St, New York City,NY,10001 +234908,20in Monitor,1,109.99,2019-07-06 13:47:00,311 Willow St, Boston,MA,02215 +234909,Apple Airpods Headphones,1,150.0,2019-07-25 16:40:00,370 Park St, San Francisco,CA,94016 +234910,20in Monitor,1,109.99,2019-07-03 23:20:00,61 Adams St, San Francisco,CA,94016 +234911,Lightning Charging Cable,1,14.95,2019-07-20 01:37:00,214 Hill St, Boston,MA,02215 +234912,AAA Batteries (4-pack),1,2.99,2019-07-21 17:37:00,408 Chestnut St, Los Angeles,CA,90001 +234913,Flatscreen TV,1,300.0,2019-07-07 12:37:00,885 9th St, Los Angeles,CA,90001 +234914,AAA Batteries (4-pack),1,2.99,2019-07-02 18:22:00,322 South St, Austin,TX,73301 +234915,AAA Batteries (4-pack),2,2.99,2019-07-30 14:59:00,660 Madison St, New York City,NY,10001 +234916,AAA Batteries (4-pack),1,2.99,2019-07-15 12:05:00,709 Park St, San Francisco,CA,94016 +234917,AAA Batteries (4-pack),1,2.99,2019-07-22 15:47:00,358 South St, Portland,OR,97035 +234918,20in Monitor,1,109.99,2019-07-08 18:59:00,4 Pine St, San Francisco,CA,94016 +234919,AA Batteries (4-pack),1,3.84,2019-07-22 18:50:00,157 2nd St, Boston,MA,02215 +234920,Flatscreen TV,1,300.0,2019-07-24 11:58:00,738 Chestnut St, Los Angeles,CA,90001 +234921,Macbook Pro Laptop,1,1700.0,2019-07-05 12:20:00,538 Hickory St, Los Angeles,CA,90001 +234922,AAA Batteries (4-pack),1,2.99,2019-07-25 06:29:00,971 North St, Portland,ME,04101 +234923,AA Batteries (4-pack),1,3.84,2019-07-28 21:18:00,818 North St, Los Angeles,CA,90001 +234924,USB-C Charging Cable,1,11.95,2019-07-16 11:14:00,59 South St, Dallas,TX,75001 +234925,Flatscreen TV,1,300.0,2019-07-14 22:09:00,704 2nd St, Los Angeles,CA,90001 +234926,Lightning Charging Cable,1,14.95,2019-07-13 21:59:00,500 Highland St, Boston,MA,02215 +234927,Bose SoundSport Headphones,1,99.99,2019-07-02 14:42:00,332 Willow St, Atlanta,GA,30301 +234928,AAA Batteries (4-pack),1,2.99,2019-07-11 11:02:00,878 5th St, Austin,TX,73301 +234929,Wired Headphones,1,11.99,2019-07-31 13:07:00,942 Lake St, Atlanta,GA,30301 +234930,USB-C Charging Cable,1,11.95,2019-07-13 18:52:00,417 River St, San Francisco,CA,94016 +234931,Macbook Pro Laptop,1,1700.0,2019-07-20 09:20:00,995 5th St, Atlanta,GA,30301 +234932,Google Phone,1,600.0,2019-07-27 22:17:00,556 10th St, Boston,MA,02215 +234932,USB-C Charging Cable,1,11.95,2019-07-27 22:17:00,556 10th St, Boston,MA,02215 +234933,Apple Airpods Headphones,1,150.0,2019-07-28 11:41:00,739 8th St, Boston,MA,02215 +234934,Lightning Charging Cable,1,14.95,2019-07-12 15:07:00,371 14th St, Seattle,WA,98101 +234935,Bose SoundSport Headphones,1,99.99,2019-07-13 01:17:00,14 Johnson St, Los Angeles,CA,90001 +234936,Google Phone,1,600.0,2019-07-15 15:51:00,658 7th St, Seattle,WA,98101 +234936,USB-C Charging Cable,1,11.95,2019-07-15 15:51:00,658 7th St, Seattle,WA,98101 +234937,AA Batteries (4-pack),1,3.84,2019-07-16 21:47:00,367 2nd St, New York City,NY,10001 +234938,Wired Headphones,1,11.99,2019-07-30 07:27:00,271 Meadow St, San Francisco,CA,94016 +234939,20in Monitor,1,109.99,2019-07-16 11:56:00,649 North St, San Francisco,CA,94016 +234940,AAA Batteries (4-pack),2,2.99,2019-07-30 19:27:00,521 Main St, Austin,TX,73301 +234941,Apple Airpods Headphones,1,150.0,2019-07-05 18:42:00,294 Walnut St, Seattle,WA,98101 +234942,iPhone,1,700.0,2019-07-02 21:47:00,311 1st St, Los Angeles,CA,90001 +234943,Lightning Charging Cable,1,14.95,2019-07-08 14:46:00,714 5th St, Austin,TX,73301 +234944,Wired Headphones,3,11.99,2019-07-25 12:29:00,158 Main St, Austin,TX,73301 +234945,Lightning Charging Cable,1,14.95,2019-07-20 19:38:00,290 8th St, San Francisco,CA,94016 +234946,USB-C Charging Cable,1,11.95,2019-07-01 11:24:00,115 10th St, San Francisco,CA,94016 +234947,Apple Airpods Headphones,1,150.0,2019-07-25 13:00:00,500 13th St, Los Angeles,CA,90001 +234948,AA Batteries (4-pack),2,3.84,2019-07-29 13:37:00,70 Main St, Atlanta,GA,30301 +234949,Bose SoundSport Headphones,1,99.99,2019-07-29 19:14:00,114 North St, San Francisco,CA,94016 +234950,Wired Headphones,1,11.99,2019-07-29 00:06:00,903 Madison St, San Francisco,CA,94016 +234951,Apple Airpods Headphones,1,150.0,2019-07-28 20:34:00,720 5th St, San Francisco,CA,94016 +234952,27in FHD Monitor,1,149.99,2019-07-16 18:56:00,503 Maple St, Los Angeles,CA,90001 +234953,Flatscreen TV,1,300.0,2019-07-23 00:32:00,314 12th St, Dallas,TX,75001 +234954,Google Phone,1,600.0,2019-07-06 21:04:00,390 Lakeview St, San Francisco,CA,94016 +234955,AAA Batteries (4-pack),1,2.99,2019-07-29 14:04:00,506 Madison St, Boston,MA,02215 +234956,20in Monitor,1,109.99,2019-07-14 12:10:00,825 9th St, New York City,NY,10001 +234956,Apple Airpods Headphones,1,150.0,2019-07-14 12:10:00,825 9th St, New York City,NY,10001 +234957,Lightning Charging Cable,1,14.95,2019-07-12 19:44:00,838 Willow St, Dallas,TX,75001 +234958,USB-C Charging Cable,1,11.95,2019-07-14 13:45:00,722 South St, Los Angeles,CA,90001 +234959,USB-C Charging Cable,1,11.95,2019-07-11 13:59:00,82 Main St, Boston,MA,02215 +234960,Lightning Charging Cable,1,14.95,2019-07-27 16:59:00,57 Center St, Atlanta,GA,30301 +234961,Bose SoundSport Headphones,1,99.99,2019-07-24 12:31:00,43 Cedar St, Dallas,TX,75001 +234962,AAA Batteries (4-pack),2,2.99,2019-07-22 19:09:00,929 Cherry St, Atlanta,GA,30301 +234963,AA Batteries (4-pack),2,3.84,2019-07-31 17:11:00,942 13th St, Los Angeles,CA,90001 +234964,AA Batteries (4-pack),1,3.84,2019-07-31 23:26:00,893 Main St, Boston,MA,02215 +234965,Wired Headphones,1,11.99,2019-07-17 09:31:00,697 North St, Los Angeles,CA,90001 +234966,USB-C Charging Cable,2,11.95,2019-07-05 07:19:00,736 Main St, Los Angeles,CA,90001 +234967,ThinkPad Laptop,1,999.99,2019-07-31 13:15:00,666 Church St, New York City,NY,10001 +234968,Lightning Charging Cable,1,14.95,2019-07-17 13:05:00,45 Jackson St, Los Angeles,CA,90001 +234969,AA Batteries (4-pack),1,3.84,2019-07-20 17:28:00,896 12th St, Atlanta,GA,30301 +234970,USB-C Charging Cable,1,11.95,2019-07-30 10:51:00,183 5th St, New York City,NY,10001 +234971,27in FHD Monitor,1,149.99,2019-07-14 19:21:00,620 Main St, Atlanta,GA,30301 +234972,27in FHD Monitor,1,149.99,2019-07-10 15:51:00,867 Jackson St, San Francisco,CA,94016 +234973,USB-C Charging Cable,2,11.95,2019-07-19 12:04:00,535 10th St, Los Angeles,CA,90001 +234974,ThinkPad Laptop,1,999.99,2019-07-07 08:59:00,931 Elm St, Atlanta,GA,30301 +234975,Apple Airpods Headphones,1,150.0,2019-07-24 12:26:00,474 Jefferson St, Boston,MA,02215 +234976,34in Ultrawide Monitor,1,379.99,2019-07-27 22:58:00,370 8th St, Austin,TX,73301 +234977,USB-C Charging Cable,1,11.95,2019-07-26 16:00:00,347 7th St, New York City,NY,10001 +234978,Lightning Charging Cable,1,14.95,2019-07-28 15:01:00,227 Dogwood St, Seattle,WA,98101 +234979,27in FHD Monitor,1,149.99,2019-07-25 14:22:00,195 9th St, New York City,NY,10001 +234980,Vareebadd Phone,1,400.0,2019-07-14 12:00:00,199 Lakeview St, Seattle,WA,98101 +234981,27in 4K Gaming Monitor,1,389.99,2019-07-02 23:38:00,472 Maple St, Seattle,WA,98101 +234982,AAA Batteries (4-pack),1,2.99,2019-07-23 20:08:00,67 South St, San Francisco,CA,94016 +234983,USB-C Charging Cable,1,11.95,2019-07-02 08:42:00,211 River St, San Francisco,CA,94016 +234984,Flatscreen TV,1,300.0,2019-07-22 21:01:00,961 9th St, Dallas,TX,75001 +234985,AA Batteries (4-pack),1,3.84,2019-07-24 06:33:00,285 13th St, San Francisco,CA,94016 +234986,27in FHD Monitor,1,149.99,2019-07-12 11:03:00,308 Hickory St, Boston,MA,02215 +234987,Wired Headphones,1,11.99,2019-07-10 01:52:00,704 Willow St, San Francisco,CA,94016 +234988,Google Phone,1,600.0,2019-07-16 07:45:00,537 14th St, Los Angeles,CA,90001 +234988,Wired Headphones,1,11.99,2019-07-16 07:45:00,537 14th St, Los Angeles,CA,90001 +234989,AAA Batteries (4-pack),1,2.99,2019-07-24 16:53:00,247 Forest St, San Francisco,CA,94016 +234990,27in FHD Monitor,1,149.99,2019-07-27 19:27:00,948 Pine St, Atlanta,GA,30301 +234991,AAA Batteries (4-pack),1,2.99,2019-07-26 16:18:00,781 Lincoln St, San Francisco,CA,94016 +234992,Apple Airpods Headphones,1,150.0,2019-07-10 05:28:00,856 14th St, Seattle,WA,98101 +234993,AA Batteries (4-pack),2,3.84,2019-07-03 13:18:00,561 12th St, San Francisco,CA,94016 +234994,Wired Headphones,1,11.99,2019-07-20 13:53:00,42 Center St, San Francisco,CA,94016 +234995,ThinkPad Laptop,1,999.99,2019-07-26 13:23:00,290 11th St, Seattle,WA,98101 +234996,Apple Airpods Headphones,1,150.0,2019-07-11 11:33:00,890 Adams St, New York City,NY,10001 +234997,Apple Airpods Headphones,1,150.0,2019-07-18 07:36:00,939 4th St, Boston,MA,02215 +234998,Wired Headphones,2,11.99,2019-07-22 10:45:00,869 North St, Seattle,WA,98101 +234999,27in FHD Monitor,1,149.99,2019-07-08 15:38:00,611 Lake St, New York City,NY,10001 +235000,iPhone,1,700.0,2019-07-28 14:08:00,965 Meadow St, Los Angeles,CA,90001 +235001,Wired Headphones,1,11.99,2019-07-02 15:30:00,564 Wilson St, San Francisco,CA,94016 +235002,Wired Headphones,1,11.99,2019-07-19 08:47:00,602 Wilson St, San Francisco,CA,94016 +235003,USB-C Charging Cable,1,11.95,2019-07-20 14:01:00,836 2nd St, San Francisco,CA,94016 +235004,AAA Batteries (4-pack),4,2.99,2019-07-09 10:04:00,680 Lincoln St, Los Angeles,CA,90001 +235005,Apple Airpods Headphones,2,150.0,2019-07-29 00:58:00,819 Sunset St, Atlanta,GA,30301 +235006,27in FHD Monitor,1,149.99,2019-07-18 09:39:00,677 Ridge St, Austin,TX,73301 +235007,AAA Batteries (4-pack),1,2.99,2019-07-13 10:00:00,879 Cedar St, New York City,NY,10001 +235008,AAA Batteries (4-pack),1,2.99,2019-07-06 11:39:00,234 Willow St, Portland,OR,97035 +235009,Flatscreen TV,1,300.0,2019-07-21 22:05:00,467 Johnson St, Los Angeles,CA,90001 +235010,Wired Headphones,1,11.99,2019-07-23 13:12:00,165 Pine St, Portland,ME,04101 +235011,Google Phone,1,600.0,2019-07-12 12:56:00,933 Cherry St, San Francisco,CA,94016 +235011,USB-C Charging Cable,1,11.95,2019-07-12 12:56:00,933 Cherry St, San Francisco,CA,94016 +235012,27in 4K Gaming Monitor,1,389.99,2019-07-22 23:19:00,390 Center St, Boston,MA,02215 +235013,USB-C Charging Cable,1,11.95,2019-07-08 16:09:00,996 11th St, Los Angeles,CA,90001 +235014,USB-C Charging Cable,1,11.95,2019-07-23 20:58:00,826 9th St, San Francisco,CA,94016 +235015,AAA Batteries (4-pack),2,2.99,2019-07-17 13:37:00,921 Walnut St, Seattle,WA,98101 +235016,Google Phone,1,600.0,2019-07-29 19:07:00,72 Walnut St, Seattle,WA,98101 +235017,Wired Headphones,1,11.99,2019-07-11 13:08:00,70 5th St, San Francisco,CA,94016 +235018,Lightning Charging Cable,1,14.95,2019-07-22 18:06:00,764 Walnut St, New York City,NY,10001 +235019,Macbook Pro Laptop,1,1700.0,2019-07-06 20:38:00,825 West St, Dallas,TX,75001 +235020,27in FHD Monitor,1,149.99,2019-07-24 12:21:00,851 Spruce St, Los Angeles,CA,90001 +235021,USB-C Charging Cable,1,11.95,2019-07-03 13:15:00,612 Ridge St, New York City,NY,10001 +235022,27in 4K Gaming Monitor,1,389.99,2019-07-28 11:03:00,190 River St, San Francisco,CA,94016 +235023,Wired Headphones,1,11.99,2019-07-16 22:24:00,481 Madison St, Los Angeles,CA,90001 +235024,AA Batteries (4-pack),1,3.84,2019-07-18 19:02:00,345 Main St, Atlanta,GA,30301 +235025,Bose SoundSport Headphones,1,99.99,2019-07-31 22:34:00,490 5th St, Seattle,WA,98101 +235026,ThinkPad Laptop,1,999.99,2019-07-14 21:59:00,615 Park St, Portland,OR,97035 +235027,AAA Batteries (4-pack),1,2.99,2019-07-15 11:14:00,166 13th St, Boston,MA,02215 +235028,AA Batteries (4-pack),1,3.84,2019-07-13 16:42:00,32 Madison St, Seattle,WA,98101 +235029,Wired Headphones,1,11.99,2019-07-05 19:52:00,222 Church St, San Francisco,CA,94016 +235030,Flatscreen TV,1,300.0,2019-07-27 17:04:00,444 Ridge St, Dallas,TX,75001 +235031,Bose SoundSport Headphones,1,99.99,2019-07-09 21:39:00,526 10th St, San Francisco,CA,94016 +235032,Lightning Charging Cable,1,14.95,2019-07-13 12:50:00,212 4th St, Austin,TX,73301 +235033,20in Monitor,1,109.99,2019-07-11 19:13:00,90 Church St, Los Angeles,CA,90001 +235034,Apple Airpods Headphones,1,150.0,2019-07-25 09:23:00,625 Highland St, San Francisco,CA,94016 +235035,Apple Airpods Headphones,1,150.0,2019-07-17 05:24:00,853 8th St, Seattle,WA,98101 +235036,Bose SoundSport Headphones,1,99.99,2019-07-27 18:53:00,332 Dogwood St, Seattle,WA,98101 +235037,Apple Airpods Headphones,1,150.0,2019-07-13 12:53:00,669 Adams St, Boston,MA,02215 +235038,Lightning Charging Cable,2,14.95,2019-07-16 13:42:00,644 River St, Seattle,WA,98101 +235039,Apple Airpods Headphones,1,150.0,2019-07-26 22:21:00,696 8th St, Portland,OR,97035 +235040,AA Batteries (4-pack),1,3.84,2019-07-08 15:52:00,798 6th St, Atlanta,GA,30301 +235041,Lightning Charging Cable,1,14.95,2019-07-04 05:03:00,540 6th St, New York City,NY,10001 +235042,Wired Headphones,1,11.99,2019-07-10 18:20:00,145 Hill St, Los Angeles,CA,90001 +235043,Apple Airpods Headphones,1,150.0,2019-07-21 08:28:00,494 West St, Portland,OR,97035 +235044,USB-C Charging Cable,2,11.95,2019-07-13 16:50:00,122 Adams St, New York City,NY,10001 +235045,Wired Headphones,1,11.99,2019-07-12 12:32:00,910 10th St, Seattle,WA,98101 +235046,Apple Airpods Headphones,1,150.0,2019-07-25 19:25:00,300 Hill St, Portland,OR,97035 +235047,LG Dryer,1,600.0,2019-07-29 18:37:00,255 Dogwood St, New York City,NY,10001 +235048,AAA Batteries (4-pack),1,2.99,2019-07-10 12:52:00,889 West St, Seattle,WA,98101 +235049,AAA Batteries (4-pack),1,2.99,2019-07-12 15:24:00,96 Lake St, San Francisco,CA,94016 +235050,USB-C Charging Cable,1,11.95,2019-07-26 13:04:00,184 Meadow St, San Francisco,CA,94016 +235051,20in Monitor,1,109.99,2019-07-29 18:37:00,691 10th St, San Francisco,CA,94016 +235052,27in 4K Gaming Monitor,1,389.99,2019-07-17 23:50:00,519 6th St, Boston,MA,02215 +235053,AAA Batteries (4-pack),2,2.99,2019-07-25 22:47:00,476 Jefferson St, Seattle,WA,98101 +235053,Macbook Pro Laptop,1,1700.0,2019-07-25 22:47:00,476 Jefferson St, Seattle,WA,98101 +235054,ThinkPad Laptop,1,999.99,2019-07-19 11:22:00,357 Cedar St, Boston,MA,02215 +235055,AA Batteries (4-pack),1,3.84,2019-07-31 02:17:00,848 Washington St, Atlanta,GA,30301 +235056,Wired Headphones,1,11.99,2019-07-11 16:08:00,242 11th St, New York City,NY,10001 +235057,Bose SoundSport Headphones,1,99.99,2019-07-21 17:35:00,976 Pine St, New York City,NY,10001 +235058,Lightning Charging Cable,1,14.95,2019-07-14 10:44:00,792 11th St, Boston,MA,02215 +235059,Bose SoundSport Headphones,1,99.99,2019-07-14 10:22:00,8 10th St, Boston,MA,02215 +235060,Lightning Charging Cable,1,14.95,2019-07-08 05:38:00,863 Church St, San Francisco,CA,94016 +235061,Apple Airpods Headphones,1,150.0,2019-07-23 19:02:00,894 Elm St, San Francisco,CA,94016 +235062,Lightning Charging Cable,1,14.95,2019-07-27 15:43:00,923 Main St, San Francisco,CA,94016 +235063,USB-C Charging Cable,2,11.95,2019-07-15 21:10:00,832 1st St, New York City,NY,10001 +235064,Bose SoundSport Headphones,1,99.99,2019-07-11 19:50:00,789 14th St, Los Angeles,CA,90001 +235065,Wired Headphones,1,11.99,2019-07-17 20:33:00,813 5th St, Seattle,WA,98101 +235066,Apple Airpods Headphones,1,150.0,2019-07-02 19:28:00,712 Highland St, Los Angeles,CA,90001 +235067,27in FHD Monitor,1,149.99,2019-07-19 18:19:00,271 Cedar St, Atlanta,GA,30301 +235068,iPhone,1,700.0,2019-07-03 15:50:00,550 River St, San Francisco,CA,94016 +235069,AAA Batteries (4-pack),1,2.99,2019-07-07 12:31:00,997 Lincoln St, New York City,NY,10001 +235070,USB-C Charging Cable,1,11.95,2019-07-01 18:14:00,935 1st St, Boston,MA,02215 +235071,AAA Batteries (4-pack),1,2.99,2019-07-25 06:37:00,447 Ridge St, San Francisco,CA,94016 +235072,AA Batteries (4-pack),1,3.84,2019-07-24 18:03:00,409 4th St, San Francisco,CA,94016 +235073,Wired Headphones,1,11.99,2019-07-28 14:40:00,130 North St, New York City,NY,10001 +235074,USB-C Charging Cable,1,11.95,2019-07-12 21:57:00,679 Pine St, Dallas,TX,75001 +235075,Apple Airpods Headphones,1,150.0,2019-07-15 09:35:00,927 Church St, Boston,MA,02215 +235076,27in 4K Gaming Monitor,1,389.99,2019-07-03 10:34:00,31 2nd St, San Francisco,CA,94016 +235077,Wired Headphones,1,11.99,2019-07-03 16:38:00,731 4th St, Atlanta,GA,30301 +235078,Wired Headphones,1,11.99,2019-07-01 13:05:00,566 Johnson St, San Francisco,CA,94016 +235079,USB-C Charging Cable,1,11.95,2019-07-11 14:31:00,373 Washington St, Los Angeles,CA,90001 +235080,27in 4K Gaming Monitor,1,389.99,2019-07-09 20:00:00,472 11th St, Los Angeles,CA,90001 +235081,34in Ultrawide Monitor,1,379.99,2019-07-04 21:10:00,962 Lakeview St, Los Angeles,CA,90001 +235082,Lightning Charging Cable,1,14.95,2019-07-31 16:40:00,503 9th St, San Francisco,CA,94016 +235083,USB-C Charging Cable,1,11.95,2019-07-29 14:20:00,265 Lakeview St, San Francisco,CA,94016 +235084,Lightning Charging Cable,1,14.95,2019-07-13 12:16:00,202 Lake St, San Francisco,CA,94016 +235085,AA Batteries (4-pack),1,3.84,2019-07-05 12:36:00,237 Park St, Los Angeles,CA,90001 +235086,USB-C Charging Cable,1,11.95,2019-07-25 13:10:00,556 Chestnut St, San Francisco,CA,94016 +235087,Google Phone,1,600.0,2019-07-17 22:35:00,619 Center St, Boston,MA,02215 +235088,AAA Batteries (4-pack),2,2.99,2019-07-14 17:57:00,377 Hill St, Boston,MA,02215 +235089,34in Ultrawide Monitor,1,379.99,2019-07-27 03:00:00,94 Center St, Los Angeles,CA,90001 +235090,iPhone,1,700.0,2019-07-30 09:02:00,805 1st St, New York City,NY,10001 +235090,Apple Airpods Headphones,1,150.0,2019-07-30 09:02:00,805 1st St, New York City,NY,10001 +235091,USB-C Charging Cable,1,11.95,2019-07-11 17:21:00,128 14th St, Austin,TX,73301 +235092,Lightning Charging Cable,1,14.95,2019-07-10 16:38:00,975 Maple St, Atlanta,GA,30301 +235093,iPhone,1,700.0,2019-07-29 14:39:00,684 South St, San Francisco,CA,94016 +235094,Lightning Charging Cable,1,14.95,2019-07-01 11:03:00,710 Park St, New York City,NY,10001 +235095,Lightning Charging Cable,1,14.95,2019-07-31 10:25:00,795 4th St, Dallas,TX,75001 +235096,Wired Headphones,1,11.99,2019-07-06 08:05:00,936 Main St, Los Angeles,CA,90001 +235097,Wired Headphones,1,11.99,2019-07-04 18:36:00,993 10th St, New York City,NY,10001 +235098,Apple Airpods Headphones,1,150.0,2019-07-08 20:24:00,775 Jackson St, Dallas,TX,75001 +235099,ThinkPad Laptop,1,999.99,2019-07-28 10:02:00,242 4th St, Portland,OR,97035 +235100,iPhone,1,700.0,2019-07-27 13:38:00,423 4th St, San Francisco,CA,94016 +235101,Lightning Charging Cable,1,14.95,2019-07-26 08:29:00,750 Church St, Boston,MA,02215 +235102,AAA Batteries (4-pack),2,2.99,2019-07-18 20:18:00,545 Cherry St, Los Angeles,CA,90001 +235103,iPhone,1,700.0,2019-07-26 19:16:00,774 1st St, Dallas,TX,75001 +235103,Wired Headphones,1,11.99,2019-07-26 19:16:00,774 1st St, Dallas,TX,75001 +235104,20in Monitor,1,109.99,2019-07-15 09:16:00,234 10th St, San Francisco,CA,94016 +235105,Bose SoundSport Headphones,1,99.99,2019-07-06 10:47:00,515 Main St, San Francisco,CA,94016 +235106,USB-C Charging Cable,1,11.95,2019-07-01 18:14:00,717 9th St, New York City,NY,10001 +235107,AA Batteries (4-pack),1,3.84,2019-07-17 10:07:00,345 6th St, Los Angeles,CA,90001 +235108,34in Ultrawide Monitor,1,379.99,2019-07-18 01:40:00,70 Cherry St, Seattle,WA,98101 +235109,Flatscreen TV,1,300.0,2019-07-18 12:49:00,64 5th St, Boston,MA,02215 +235110,AAA Batteries (4-pack),1,2.99,2019-07-27 14:26:00,817 Cedar St, Los Angeles,CA,90001 +235111,Bose SoundSport Headphones,1,99.99,2019-07-10 09:51:00,193 Forest St, Los Angeles,CA,90001 +235112,27in 4K Gaming Monitor,1,389.99,2019-07-28 20:29:00,455 8th St, New York City,NY,10001 +235113,Macbook Pro Laptop,1,1700.0,2019-07-10 13:22:00,33 Hickory St, Dallas,TX,75001 +235114,ThinkPad Laptop,1,999.99,2019-07-28 22:24:00,444 8th St, Los Angeles,CA,90001 +235115,Wired Headphones,1,11.99,2019-07-03 22:40:00,287 Forest St, Portland,OR,97035 +235116,USB-C Charging Cable,1,11.95,2019-07-13 12:55:00,945 Pine St, Portland,OR,97035 +235117,AA Batteries (4-pack),3,3.84,2019-07-21 22:15:00,784 Maple St, San Francisco,CA,94016 +235118,AAA Batteries (4-pack),1,2.99,2019-07-01 15:31:00,611 Hill St, Dallas,TX,75001 +235118,USB-C Charging Cable,2,11.95,2019-07-01 15:31:00,611 Hill St, Dallas,TX,75001 +235119,Lightning Charging Cable,1,14.95,2019-07-07 21:24:00,419 Cedar St, San Francisco,CA,94016 +235120,Google Phone,1,600.0,2019-07-26 05:40:00,577 7th St, Atlanta,GA,30301 +235121,Bose SoundSport Headphones,1,99.99,2019-07-18 10:36:00,944 Maple St, Austin,TX,73301 +235122,ThinkPad Laptop,1,999.99,2019-07-06 11:17:00,818 Highland St, San Francisco,CA,94016 +235123,Google Phone,1,600.0,2019-07-02 19:15:00,189 Forest St, Boston,MA,02215 +235123,USB-C Charging Cable,1,11.95,2019-07-02 19:15:00,189 Forest St, Boston,MA,02215 +235124,27in 4K Gaming Monitor,1,389.99,2019-07-10 19:41:00,108 Lakeview St, Los Angeles,CA,90001 +235125,Apple Airpods Headphones,1,150.0,2019-07-09 21:44:00,246 12th St, New York City,NY,10001 +235126,Wired Headphones,1,11.99,2019-07-21 14:58:00,754 Lincoln St, San Francisco,CA,94016 +235126,Lightning Charging Cable,1,14.95,2019-07-21 14:58:00,754 Lincoln St, San Francisco,CA,94016 +235127,27in 4K Gaming Monitor,1,389.99,2019-07-23 18:49:00,312 Park St, Boston,MA,02215 +235128,34in Ultrawide Monitor,1,379.99,2019-07-01 20:10:00,146 Hill St, Austin,TX,73301 +235129,Wired Headphones,1,11.99,2019-07-27 03:06:00,368 Meadow St, Los Angeles,CA,90001 +235130,Bose SoundSport Headphones,1,99.99,2019-07-17 05:53:00,211 River St, Atlanta,GA,30301 +235131,Wired Headphones,1,11.99,2019-07-14 20:56:00,455 Willow St, New York City,NY,10001 +235132,AA Batteries (4-pack),1,3.84,2019-07-21 05:34:00,223 South St, Los Angeles,CA,90001 +235133,Bose SoundSport Headphones,1,99.99,2019-07-31 16:08:00,663 12th St, Los Angeles,CA,90001 +235134,27in 4K Gaming Monitor,1,389.99,2019-07-07 12:45:00,153 Pine St, Boston,MA,02215 +235135,AAA Batteries (4-pack),4,2.99,2019-07-28 17:58:00,239 Willow St, Portland,ME,04101 +235136,AAA Batteries (4-pack),1,2.99,2019-07-21 15:07:00,246 Johnson St, New York City,NY,10001 +235137,Apple Airpods Headphones,1,150.0,2019-07-24 14:53:00,725 Church St, New York City,NY,10001 +235138,iPhone,1,700.0,2019-07-22 20:49:00,933 Cedar St, Boston,MA,02215 +235139,Lightning Charging Cable,1,14.95,2019-07-17 15:11:00,219 10th St, Los Angeles,CA,90001 +235140,Flatscreen TV,1,300.0,2019-07-16 12:35:00,567 Pine St, San Francisco,CA,94016 +235141,iPhone,1,700.0,2019-07-25 15:12:00,16 Jefferson St, Boston,MA,02215 +235142,Flatscreen TV,1,300.0,2019-07-09 17:48:00,972 Ridge St, Boston,MA,02215 +235143,AAA Batteries (4-pack),1,2.99,2019-07-03 20:18:00,792 Hill St, Atlanta,GA,30301 +235144,34in Ultrawide Monitor,1,379.99,2019-07-21 15:29:00,239 Johnson St, Atlanta,GA,30301 +235145,Apple Airpods Headphones,1,150.0,2019-07-24 11:56:00,652 Hickory St, Los Angeles,CA,90001 +235146,ThinkPad Laptop,1,999.99,2019-07-04 22:35:00,28 Park St, San Francisco,CA,94016 +235147,Apple Airpods Headphones,1,150.0,2019-07-18 19:31:00,472 Forest St, Dallas,TX,75001 +235148,Wired Headphones,2,11.99,2019-07-04 13:10:00,47 West St, Austin,TX,73301 +235149,27in FHD Monitor,1,149.99,2019-07-21 06:06:00,46 Pine St, New York City,NY,10001 +235150,Apple Airpods Headphones,1,150.0,2019-07-09 08:56:00,537 4th St, Atlanta,GA,30301 +235151,AAA Batteries (4-pack),1,2.99,2019-07-03 19:05:00,471 Jefferson St, Seattle,WA,98101 +235152,27in FHD Monitor,1,149.99,2019-07-09 08:31:00,861 Hickory St, Atlanta,GA,30301 +235153,27in 4K Gaming Monitor,1,389.99,2019-07-05 12:43:00,166 Madison St, San Francisco,CA,94016 +235154,AAA Batteries (4-pack),1,2.99,2019-07-28 16:51:00,521 Main St, San Francisco,CA,94016 +235155,Google Phone,1,600.0,2019-07-18 22:41:00,790 6th St, Los Angeles,CA,90001 +235156,Bose SoundSport Headphones,1,99.99,2019-07-28 20:50:00,801 Forest St, New York City,NY,10001 +235157,Lightning Charging Cable,1,14.95,2019-07-21 11:36:00,920 13th St, Austin,TX,73301 +235158,AAA Batteries (4-pack),4,2.99,2019-07-10 13:44:00,559 12th St, San Francisco,CA,94016 +235159,AA Batteries (4-pack),1,3.84,2019-07-02 07:50:00,138 Johnson St, Austin,TX,73301 +235160,USB-C Charging Cable,1,11.95,2019-07-13 13:14:00,43 South St, Portland,OR,97035 +235161,Lightning Charging Cable,1,14.95,2019-07-26 18:03:00,40 10th St, San Francisco,CA,94016 +235162,AAA Batteries (4-pack),1,2.99,2019-07-13 12:35:00,611 4th St, San Francisco,CA,94016 +235163,AAA Batteries (4-pack),2,2.99,2019-07-27 13:37:00,311 5th St, Los Angeles,CA,90001 +235164,USB-C Charging Cable,1,11.95,2019-07-11 00:31:00,790 Willow St, Atlanta,GA,30301 +235165,AAA Batteries (4-pack),1,2.99,2019-07-14 19:14:00,636 Wilson St, San Francisco,CA,94016 +235166,USB-C Charging Cable,1,11.95,2019-07-01 09:31:00,910 Forest St, Austin,TX,73301 +235167,27in FHD Monitor,1,149.99,2019-07-29 09:25:00,786 8th St, Boston,MA,02215 +235168,iPhone,1,700.0,2019-07-28 09:28:00,631 Lake St, New York City,NY,10001 +235168,Lightning Charging Cable,2,14.95,2019-07-28 09:28:00,631 Lake St, New York City,NY,10001 +235169,USB-C Charging Cable,1,11.95,2019-07-25 14:59:00,221 Madison St, New York City,NY,10001 +235170,27in 4K Gaming Monitor,1,389.99,2019-07-31 17:30:00,34 Highland St, San Francisco,CA,94016 +235171,Bose SoundSport Headphones,1,99.99,2019-07-29 20:24:00,871 Willow St, Boston,MA,02215 +235172,USB-C Charging Cable,1,11.95,2019-07-11 08:51:00,562 11th St, Atlanta,GA,30301 +235173,iPhone,1,700.0,2019-07-22 20:35:00,800 Hill St, Austin,TX,73301 +235174,Lightning Charging Cable,1,14.95,2019-07-24 11:27:00,806 Wilson St, Atlanta,GA,30301 +235175,34in Ultrawide Monitor,1,379.99,2019-07-06 09:23:00,75 Lincoln St, Atlanta,GA,30301 +235176,27in 4K Gaming Monitor,1,389.99,2019-07-01 11:28:00,975 13th St, New York City,NY,10001 +235177,27in 4K Gaming Monitor,1,389.99,2019-07-20 19:36:00,725 Chestnut St, San Francisco,CA,94016 +235178,27in FHD Monitor,1,149.99,2019-07-16 15:58:00,676 14th St, New York City,NY,10001 +235179,Macbook Pro Laptop,1,1700.0,2019-07-30 15:08:00,909 Dogwood St, San Francisco,CA,94016 +235180,USB-C Charging Cable,1,11.95,2019-07-15 20:28:00,738 Lincoln St, San Francisco,CA,94016 +235181,Lightning Charging Cable,1,14.95,2019-07-30 22:05:00,432 Willow St, Portland,ME,04101 +235182,Wired Headphones,1,11.99,2019-07-23 21:17:00,220 8th St, San Francisco,CA,94016 +235183,USB-C Charging Cable,1,11.95,2019-07-24 13:01:00,169 11th St, Seattle,WA,98101 +235184,iPhone,1,700.0,2019-07-31 18:58:00,806 2nd St, Seattle,WA,98101 +235185,Flatscreen TV,1,300.0,2019-07-13 21:56:00,617 12th St, Portland,OR,97035 +235186,Flatscreen TV,1,300.0,2019-07-05 01:42:00,740 West St, Los Angeles,CA,90001 +235187,Vareebadd Phone,1,400.0,2019-07-12 08:33:00,325 Dogwood St, Seattle,WA,98101 +235188,20in Monitor,1,109.99,2019-07-30 21:00:00,599 Johnson St, Atlanta,GA,30301 +235189,Bose SoundSport Headphones,1,99.99,2019-07-11 17:54:00,904 Willow St, San Francisco,CA,94016 +235190,34in Ultrawide Monitor,1,379.99,2019-07-01 21:31:00,697 Johnson St, Boston,MA,02215 +235191,AAA Batteries (4-pack),1,2.99,2019-07-19 14:56:00,303 Willow St, New York City,NY,10001 +235192,iPhone,1,700.0,2019-07-22 15:34:00,304 Hill St, Austin,TX,73301 +235193,AAA Batteries (4-pack),1,2.99,2019-07-31 13:51:00,527 Elm St, Seattle,WA,98101 +235194,AA Batteries (4-pack),4,3.84,2019-07-10 10:30:00,326 Adams St, Los Angeles,CA,90001 +235195,AAA Batteries (4-pack),4,2.99,2019-07-10 09:17:00,78 Lincoln St, San Francisco,CA,94016 +235196,Apple Airpods Headphones,1,150.0,2019-07-29 19:27:00,849 11th St, Atlanta,GA,30301 +235197,AAA Batteries (4-pack),2,2.99,2019-07-01 17:10:00,57 Jefferson St, Boston,MA,02215 +235198,Lightning Charging Cable,1,14.95,2019-07-10 15:35:00,258 Walnut St, Dallas,TX,75001 +235199,Lightning Charging Cable,1,14.95,2019-07-16 08:29:00,842 14th St, Austin,TX,73301 +235200,AA Batteries (4-pack),2,3.84,2019-07-01 07:48:00,229 Walnut St, Atlanta,GA,30301 +235200,Vareebadd Phone,1,400.0,2019-07-01 07:48:00,229 Walnut St, Atlanta,GA,30301 +235201,34in Ultrawide Monitor,1,379.99,2019-07-13 19:17:00,20 Wilson St, New York City,NY,10001 +235202,27in 4K Gaming Monitor,1,389.99,2019-07-05 22:50:00,152 River St, Atlanta,GA,30301 +235203,34in Ultrawide Monitor,1,379.99,2019-07-02 11:58:00,462 Church St, Austin,TX,73301 +235204,USB-C Charging Cable,2,11.95,2019-07-01 14:05:00,517 14th St, Dallas,TX,75001 +235205,Google Phone,1,600.0,2019-07-02 18:59:00,864 Madison St, Dallas,TX,75001 +235205,USB-C Charging Cable,1,11.95,2019-07-02 18:59:00,864 Madison St, Dallas,TX,75001 +235206,AAA Batteries (4-pack),1,2.99,2019-07-26 13:25:00,253 13th St, Seattle,WA,98101 +235207,Bose SoundSport Headphones,1,99.99,2019-07-26 13:27:00,476 Lincoln St, New York City,NY,10001 +235208,34in Ultrawide Monitor,1,379.99,2019-07-24 16:05:00,467 8th St, Los Angeles,CA,90001 +235209,Google Phone,1,600.0,2019-07-24 14:31:00,847 Hill St, Austin,TX,73301 +235209,USB-C Charging Cable,1,11.95,2019-07-24 14:31:00,847 Hill St, Austin,TX,73301 +235210,USB-C Charging Cable,1,11.95,2019-07-30 12:12:00,352 Jefferson St, Boston,MA,02215 +235211,Apple Airpods Headphones,1,150.0,2019-07-17 09:45:00,510 Center St, San Francisco,CA,94016 +235212,Apple Airpods Headphones,1,150.0,2019-07-18 13:33:00,532 Elm St, Atlanta,GA,30301 +235213,Wired Headphones,1,11.99,2019-07-19 10:35:00,258 Meadow St, San Francisco,CA,94016 +235214,AAA Batteries (4-pack),1,2.99,2019-07-23 18:58:00,478 Highland St, San Francisco,CA,94016 +235215,Flatscreen TV,1,300.0,2019-07-29 00:43:00,17 7th St, Boston,MA,02215 +235216,27in FHD Monitor,1,149.99,2019-07-29 13:55:00,950 4th St, Seattle,WA,98101 +235217,AA Batteries (4-pack),2,3.84,2019-07-19 17:49:00,638 Forest St, Los Angeles,CA,90001 +235218,Lightning Charging Cable,1,14.95,2019-07-04 11:11:00,627 Ridge St, Los Angeles,CA,90001 +235219,USB-C Charging Cable,1,11.95,2019-07-15 11:59:00,775 Washington St, Los Angeles,CA,90001 +235220,27in 4K Gaming Monitor,1,389.99,2019-07-08 16:31:00,907 Park St, Los Angeles,CA,90001 +235221,20in Monitor,1,109.99,2019-07-01 19:01:00,137 Lakeview St, Boston,MA,02215 +235222,AA Batteries (4-pack),1,3.84,2019-07-29 22:03:00,622 Pine St, New York City,NY,10001 +235223,34in Ultrawide Monitor,1,379.99,2019-07-26 12:37:00,170 Maple St, Boston,MA,02215 +235224,USB-C Charging Cable,1,11.95,2019-07-20 13:19:00,389 Highland St, Boston,MA,02215 +235225,AAA Batteries (4-pack),1,2.99,2019-07-30 14:22:00,66 Maple St, San Francisco,CA,94016 +235226,34in Ultrawide Monitor,1,379.99,2019-07-19 21:38:00,83 Willow St, New York City,NY,10001 +235227,AA Batteries (4-pack),1,3.84,2019-07-03 14:40:00,579 14th St, Dallas,TX,75001 +235228,Apple Airpods Headphones,1,150.0,2019-07-12 08:00:00,460 Main St, Boston,MA,02215 +235229,Macbook Pro Laptop,1,1700.0,2019-07-05 08:56:00,592 Forest St, San Francisco,CA,94016 +235230,Bose SoundSport Headphones,1,99.99,2019-07-11 09:19:00,373 Lakeview St, Dallas,TX,75001 +235231,27in FHD Monitor,1,149.99,2019-07-05 14:13:00,779 Main St, Dallas,TX,75001 +235232,Wired Headphones,1,11.99,2019-07-06 09:39:00,978 6th St, San Francisco,CA,94016 +235233,iPhone,1,700.0,2019-07-02 18:43:00,371 Pine St, San Francisco,CA,94016 +235234,USB-C Charging Cable,2,11.95,2019-07-26 20:12:00,381 Sunset St, New York City,NY,10001 +235235,34in Ultrawide Monitor,1,379.99,2019-07-02 00:55:00,99 Cedar St, Seattle,WA,98101 +235236,USB-C Charging Cable,1,11.95,2019-07-31 08:08:00,634 Cherry St, New York City,NY,10001 +235237,Bose SoundSport Headphones,1,99.99,2019-07-25 17:23:00,198 Ridge St, Boston,MA,02215 +235238,Apple Airpods Headphones,1,150.0,2019-07-07 21:32:00,394 14th St, Los Angeles,CA,90001 +235239,AA Batteries (4-pack),1,3.84,2019-07-15 12:05:00,160 River St, Los Angeles,CA,90001 +235240,iPhone,1,700.0,2019-07-08 14:19:00,203 Lincoln St, San Francisco,CA,94016 +235241,USB-C Charging Cable,1,11.95,2019-07-29 14:37:00,500 North St, Seattle,WA,98101 +235242,USB-C Charging Cable,1,11.95,2019-07-09 17:21:00,401 2nd St, Dallas,TX,75001 +235243,iPhone,1,700.0,2019-07-03 19:34:00,707 10th St, New York City,NY,10001 +235243,Apple Airpods Headphones,1,150.0,2019-07-03 19:34:00,707 10th St, New York City,NY,10001 +235244,AA Batteries (4-pack),1,3.84,2019-07-22 22:50:00,62 South St, San Francisco,CA,94016 +235245,Lightning Charging Cable,1,14.95,2019-07-24 11:44:00,550 Walnut St, Los Angeles,CA,90001 +235246,USB-C Charging Cable,1,11.95,2019-07-22 12:26:00,999 Adams St, San Francisco,CA,94016 +235247,Lightning Charging Cable,1,14.95,2019-07-27 17:24:00,388 Chestnut St, San Francisco,CA,94016 +235248,20in Monitor,1,109.99,2019-07-06 02:30:00,311 9th St, San Francisco,CA,94016 +235249,USB-C Charging Cable,1,11.95,2019-07-27 01:09:00,223 14th St, Portland,ME,04101 +235250,Apple Airpods Headphones,1,150.0,2019-07-22 09:16:00,182 6th St, Los Angeles,CA,90001 +235251,Wired Headphones,1,11.99,2019-07-15 20:18:00,481 Pine St, Seattle,WA,98101 +235252,AA Batteries (4-pack),1,3.84,2019-07-14 19:13:00,338 Sunset St, Portland,OR,97035 +235253,AA Batteries (4-pack),1,3.84,2019-07-09 11:13:00,710 Church St, San Francisco,CA,94016 +235254,AAA Batteries (4-pack),1,2.99,2019-07-22 09:56:00,984 Main St, Austin,TX,73301 +235255,Google Phone,1,600.0,2019-07-26 17:12:00,909 Lakeview St, Boston,MA,02215 +235256,Bose SoundSport Headphones,1,99.99,2019-07-29 17:36:00,779 Forest St, Dallas,TX,75001 +235257,AAA Batteries (4-pack),1,2.99,2019-07-10 21:35:00,22 Madison St, San Francisco,CA,94016 +235258,Wired Headphones,1,11.99,2019-07-08 12:30:00,416 2nd St, Atlanta,GA,30301 +235259,iPhone,1,700.0,2019-07-27 12:11:00,434 13th St, Austin,TX,73301 +235260,Wired Headphones,1,11.99,2019-07-19 12:23:00,718 Lincoln St, Dallas,TX,75001 +235261,27in 4K Gaming Monitor,1,389.99,2019-07-13 10:51:00,505 Johnson St, Austin,TX,73301 +235262,Flatscreen TV,1,300.0,2019-07-30 23:55:00,708 Hill St, Portland,OR,97035 +235263,Apple Airpods Headphones,1,150.0,2019-07-14 13:11:00,154 2nd St, Portland,OR,97035 +235264,Apple Airpods Headphones,1,150.0,2019-07-11 07:55:00,795 4th St, Dallas,TX,75001 +235265,USB-C Charging Cable,1,11.95,2019-07-19 14:46:00,586 Lake St, San Francisco,CA,94016 +235266,AAA Batteries (4-pack),2,2.99,2019-07-03 14:05:00,434 Jackson St, Atlanta,GA,30301 +235267,27in FHD Monitor,1,149.99,2019-07-15 21:59:00,399 Ridge St, Dallas,TX,75001 +235268,27in 4K Gaming Monitor,1,389.99,2019-07-26 14:44:00,106 West St, Los Angeles,CA,90001 +235269,Lightning Charging Cable,1,14.95,2019-07-09 12:54:00,557 Adams St, San Francisco,CA,94016 +235270,Lightning Charging Cable,1,14.95,2019-07-19 18:00:00,308 North St, San Francisco,CA,94016 +235271,Apple Airpods Headphones,1,150.0,2019-07-07 17:36:00,238 Highland St, San Francisco,CA,94016 +235272,Bose SoundSport Headphones,1,99.99,2019-07-17 19:08:00,899 Jefferson St, San Francisco,CA,94016 +235273,Bose SoundSport Headphones,1,99.99,2019-07-12 09:57:00,355 Cherry St, San Francisco,CA,94016 +235274,20in Monitor,1,109.99,2019-07-10 18:06:00,880 Madison St, Atlanta,GA,30301 +235275,USB-C Charging Cable,2,11.95,2019-07-13 12:40:00,240 Maple St, San Francisco,CA,94016 +235275,34in Ultrawide Monitor,1,379.99,2019-07-13 12:40:00,240 Maple St, San Francisco,CA,94016 +235276,USB-C Charging Cable,1,11.95,2019-07-13 21:27:00,338 Lincoln St, Boston,MA,02215 +235276,Lightning Charging Cable,1,14.95,2019-07-13 21:27:00,338 Lincoln St, Boston,MA,02215 +235277,USB-C Charging Cable,1,11.95,2019-07-10 19:05:00,618 Cherry St, New York City,NY,10001 +235278,Bose SoundSport Headphones,1,99.99,2019-07-16 01:10:00,720 Dogwood St, New York City,NY,10001 +235279,Bose SoundSport Headphones,1,99.99,2019-07-31 16:09:00,729 West St, Seattle,WA,98101 +235280,USB-C Charging Cable,1,11.95,2019-07-03 06:24:00,379 12th St, New York City,NY,10001 +235281,AA Batteries (4-pack),2,3.84,2019-07-30 00:13:00,634 Chestnut St, Portland,OR,97035 +235282,Lightning Charging Cable,1,14.95,2019-07-25 15:17:00,349 Johnson St, New York City,NY,10001 +235283,27in FHD Monitor,1,149.99,2019-07-15 18:51:00,936 Chestnut St, San Francisco,CA,94016 +235284,AAA Batteries (4-pack),4,2.99,2019-07-09 16:24:00,766 1st St, Los Angeles,CA,90001 +235285,Apple Airpods Headphones,1,150.0,2019-07-30 12:36:00,789 Johnson St, Atlanta,GA,30301 +235286,Lightning Charging Cable,1,14.95,2019-07-04 22:43:00,441 Elm St, Los Angeles,CA,90001 +235287,USB-C Charging Cable,1,11.95,2019-07-25 10:15:00,164 Lake St, Los Angeles,CA,90001 +235288,Wired Headphones,1,11.99,2019-07-06 15:25:00,362 Madison St, New York City,NY,10001 +235289,Bose SoundSport Headphones,1,99.99,2019-07-15 11:54:00,325 11th St, Dallas,TX,75001 +235290,Bose SoundSport Headphones,1,99.99,2019-07-13 10:12:00,145 Jackson St, Los Angeles,CA,90001 +235291,34in Ultrawide Monitor,1,379.99,2019-07-04 21:33:00,657 Adams St, Dallas,TX,75001 +235292,Macbook Pro Laptop,1,1700.0,2019-07-11 11:09:00,108 6th St, San Francisco,CA,94016 +235293,AAA Batteries (4-pack),1,2.99,2019-07-13 18:52:00,743 Walnut St, New York City,NY,10001 +235294,27in 4K Gaming Monitor,1,389.99,2019-07-29 14:40:00,773 Madison St, San Francisco,CA,94016 +235295,Wired Headphones,1,11.99,2019-07-02 15:47:00,860 Center St, New York City,NY,10001 +235296,34in Ultrawide Monitor,1,379.99,2019-07-05 20:48:00,338 Johnson St, San Francisco,CA,94016 +235297,Lightning Charging Cable,1,14.95,2019-07-25 22:06:00,109 4th St, Austin,TX,73301 +235298,34in Ultrawide Monitor,2,379.99,2019-07-08 16:22:00,303 Church St, San Francisco,CA,94016 +235299,Bose SoundSport Headphones,1,99.99,2019-07-28 12:24:00,766 Center St, Boston,MA,02215 +235300,USB-C Charging Cable,1,11.95,2019-07-18 20:17:00,704 2nd St, Austin,TX,73301 +235301,Lightning Charging Cable,1,14.95,2019-07-18 22:25:00,200 Lincoln St, Dallas,TX,75001 +235302,Bose SoundSport Headphones,1,99.99,2019-07-25 22:45:00,392 9th St, Dallas,TX,75001 +235303,27in FHD Monitor,1,149.99,2019-07-13 16:00:00,962 Hickory St, New York City,NY,10001 +235304,Lightning Charging Cable,1,14.95,2019-07-04 17:06:00,892 Jackson St, Atlanta,GA,30301 +235305,Apple Airpods Headphones,1,150.0,2019-07-28 13:30:00,973 Dogwood St, Los Angeles,CA,90001 +235306,Lightning Charging Cable,1,14.95,2019-07-24 08:53:00,94 Walnut St, Los Angeles,CA,90001 +235307,AA Batteries (4-pack),1,3.84,2019-07-19 11:11:00,569 Forest St, Atlanta,GA,30301 +235308,Wired Headphones,1,11.99,2019-07-07 19:29:00,712 2nd St, Los Angeles,CA,90001 +235309,Bose SoundSport Headphones,1,99.99,2019-07-19 15:25:00,906 8th St, Los Angeles,CA,90001 +235310,Wired Headphones,1,11.99,2019-07-09 10:16:00,981 Ridge St, Austin,TX,73301 +235311,27in 4K Gaming Monitor,1,389.99,2019-07-07 12:57:00,30 Maple St, Atlanta,GA,30301 +235312,Wired Headphones,1,11.99,2019-07-18 17:13:00,88 12th St, Boston,MA,02215 +235313,AAA Batteries (4-pack),1,2.99,2019-07-07 13:23:00,211 Spruce St, Atlanta,GA,30301 +235314,27in FHD Monitor,1,149.99,2019-07-06 15:42:00,627 Lake St, New York City,NY,10001 +235315,USB-C Charging Cable,2,11.95,2019-07-13 16:06:00,398 South St, Austin,TX,73301 +235316,Flatscreen TV,1,300.0,2019-07-05 00:40:00,209 Center St, Atlanta,GA,30301 +235317,USB-C Charging Cable,1,11.95,2019-07-18 18:54:00,965 Chestnut St, Portland,OR,97035 +235318,Apple Airpods Headphones,1,150.0,2019-07-28 15:38:00,114 Maple St, Boston,MA,02215 +235319,AA Batteries (4-pack),1,3.84,2019-07-31 08:01:00,245 Park St, Portland,OR,97035 +235320,Bose SoundSport Headphones,1,99.99,2019-07-12 20:35:00,873 Dogwood St, Boston,MA,02215 +235321,Vareebadd Phone,1,400.0,2019-07-21 15:52:00,754 Jackson St, San Francisco,CA,94016 +235322,Bose SoundSport Headphones,1,99.99,2019-07-17 12:17:00,481 2nd St, Austin,TX,73301 +235323,USB-C Charging Cable,1,11.95,2019-07-31 19:53:00,450 Lincoln St, San Francisco,CA,94016 +235324,Flatscreen TV,1,300.0,2019-07-08 18:14:00,407 Willow St, Dallas,TX,75001 +235325,20in Monitor,1,109.99,2019-07-18 21:05:00,113 Jefferson St, Dallas,TX,75001 +235326,Bose SoundSport Headphones,1,99.99,2019-07-05 21:07:00,128 Willow St, Boston,MA,02215 +235327,Macbook Pro Laptop,1,1700.0,2019-07-15 09:17:00,370 12th St, Seattle,WA,98101 +235328,AA Batteries (4-pack),1,3.84,2019-07-09 19:31:00,351 8th St, Dallas,TX,75001 +235329,Bose SoundSport Headphones,1,99.99,2019-07-21 02:56:00,553 Wilson St, San Francisco,CA,94016 +235330,20in Monitor,1,109.99,2019-07-01 20:43:00,429 Ridge St, New York City,NY,10001 +235331,Wired Headphones,1,11.99,2019-07-05 11:39:00,393 Lake St, Boston,MA,02215 +235332,ThinkPad Laptop,1,999.99,2019-07-29 13:33:00,387 Sunset St, San Francisco,CA,94016 +235333,Macbook Pro Laptop,1,1700.0,2019-07-01 07:28:00,726 North St, Portland,OR,97035 +235334,Wired Headphones,1,11.99,2019-07-09 21:40:00,476 Highland St, San Francisco,CA,94016 +235335,Flatscreen TV,1,300.0,2019-07-11 10:05:00,509 Ridge St, Portland,OR,97035 +235336,AAA Batteries (4-pack),1,2.99,2019-07-22 10:14:00,238 West St, Boston,MA,02215 +235337,Wired Headphones,1,11.99,2019-07-02 08:54:00,349 8th St, New York City,NY,10001 +235338,27in 4K Gaming Monitor,1,389.99,2019-07-12 00:40:00,583 Highland St, New York City,NY,10001 +235339,27in 4K Gaming Monitor,1,389.99,2019-07-31 05:03:00,377 Lake St, Los Angeles,CA,90001 +235340,USB-C Charging Cable,1,11.95,2019-07-23 13:45:00,849 Walnut St, Los Angeles,CA,90001 +235341,Google Phone,1,600.0,2019-07-24 20:30:00,66 10th St, Seattle,WA,98101 +235342,Lightning Charging Cable,1,14.95,2019-07-26 11:41:00,333 Main St, New York City,NY,10001 +235343,USB-C Charging Cable,1,11.95,2019-07-06 13:31:00,832 Elm St, San Francisco,CA,94016 +235344,AA Batteries (4-pack),1,3.84,2019-07-11 10:39:00,115 8th St, Boston,MA,02215 +235345,AA Batteries (4-pack),1,3.84,2019-07-06 16:20:00,720 Highland St, Seattle,WA,98101 +235346,Bose SoundSport Headphones,1,99.99,2019-07-10 12:14:00,478 Wilson St, Austin,TX,73301 +235347,Bose SoundSport Headphones,1,99.99,2019-07-03 18:58:00,345 Dogwood St, Los Angeles,CA,90001 +235348,Bose SoundSport Headphones,1,99.99,2019-07-19 16:37:00,812 Park St, Portland,OR,97035 +235349,27in FHD Monitor,1,149.99,2019-07-24 19:25:00,305 14th St, Los Angeles,CA,90001 +235350,20in Monitor,1,109.99,2019-07-24 19:35:00,336 Walnut St, Atlanta,GA,30301 +235351,Google Phone,1,600.0,2019-07-23 07:47:00,856 Jefferson St, New York City,NY,10001 +235352,Bose SoundSport Headphones,1,99.99,2019-07-11 22:06:00,150 Dogwood St, Los Angeles,CA,90001 +235353,iPhone,1,700.0,2019-07-20 08:14:00,227 Lincoln St, Boston,MA,02215 +235354,AA Batteries (4-pack),1,3.84,2019-07-20 21:32:00,527 Cedar St, San Francisco,CA,94016 +235355,AA Batteries (4-pack),1,3.84,2019-07-21 19:39:00,316 Dogwood St, Austin,TX,73301 +235356,Lightning Charging Cable,1,14.95,2019-07-25 20:30:00,510 Park St, Portland,ME,04101 +235357,USB-C Charging Cable,1,11.95,2019-07-07 00:08:00,941 Cherry St, San Francisco,CA,94016 +235358,27in 4K Gaming Monitor,1,389.99,2019-07-09 21:14:00,720 Madison St, Boston,MA,02215 +235359,AAA Batteries (4-pack),1,2.99,2019-07-29 08:48:00,874 Sunset St, Atlanta,GA,30301 +235360,Lightning Charging Cable,1,14.95,2019-07-29 17:05:00,654 13th St, Austin,TX,73301 +235361,Google Phone,1,600.0,2019-07-02 17:13:00,47 10th St, Dallas,TX,75001 +235362,Google Phone,1,600.0,2019-07-25 09:54:00,11 1st St, Seattle,WA,98101 +235363,27in FHD Monitor,1,149.99,2019-07-19 18:37:00,146 Highland St, Los Angeles,CA,90001 +235364,Lightning Charging Cable,1,14.95,2019-07-13 06:42:00,132 Maple St, San Francisco,CA,94016 +235365,USB-C Charging Cable,1,11.95,2019-07-26 19:40:00,393 Madison St, Seattle,WA,98101 +235366,Lightning Charging Cable,1,14.95,2019-07-05 14:08:00,2 Center St, San Francisco,CA,94016 +235367,Macbook Pro Laptop,1,1700.0,2019-07-06 09:22:00,715 Sunset St, Boston,MA,02215 +235368,AA Batteries (4-pack),1,3.84,2019-07-11 18:20:00,802 Wilson St, Boston,MA,02215 +235369,AA Batteries (4-pack),1,3.84,2019-07-26 02:21:00,796 Lake St, Austin,TX,73301 +235369,USB-C Charging Cable,1,11.95,2019-07-26 02:21:00,796 Lake St, Austin,TX,73301 +235370,Wired Headphones,1,11.99,2019-07-13 12:25:00,145 Spruce St, Los Angeles,CA,90001 +235371,Macbook Pro Laptop,1,1700.0,2019-07-14 10:38:00,971 Jefferson St, Los Angeles,CA,90001 +235372,AAA Batteries (4-pack),1,2.99,2019-07-28 21:35:00,300 10th St, Boston,MA,02215 +235373,Apple Airpods Headphones,1,150.0,2019-07-22 17:37:00,490 2nd St, San Francisco,CA,94016 +235374,AA Batteries (4-pack),1,3.84,2019-07-31 09:17:00,55 Lakeview St, New York City,NY,10001 +235375,Lightning Charging Cable,1,14.95,2019-07-25 15:01:00,755 West St, New York City,NY,10001 +235376,Wired Headphones,1,11.99,2019-07-06 12:23:00,621 4th St, Los Angeles,CA,90001 +235377,34in Ultrawide Monitor,1,379.99,2019-07-07 20:44:00,263 Ridge St, Los Angeles,CA,90001 +235378,Apple Airpods Headphones,1,150.0,2019-07-02 23:42:00,448 West St, Los Angeles,CA,90001 +235379,Lightning Charging Cable,1,14.95,2019-07-12 10:43:00,936 Park St, San Francisco,CA,94016 +235380,27in 4K Gaming Monitor,1,389.99,2019-07-10 19:49:00,200 Walnut St, Austin,TX,73301 +235381,Lightning Charging Cable,1,14.95,2019-07-16 15:08:00,996 Wilson St, New York City,NY,10001 +235382,USB-C Charging Cable,1,11.95,2019-07-01 10:15:00,956 Jefferson St, New York City,NY,10001 +235383,AA Batteries (4-pack),2,3.84,2019-07-18 15:10:00,396 13th St, Dallas,TX,75001 +235384,Flatscreen TV,1,300.0,2019-07-14 19:04:00,604 9th St, New York City,NY,10001 +235385,AA Batteries (4-pack),1,3.84,2019-07-23 13:36:00,252 Spruce St, Seattle,WA,98101 +235386,USB-C Charging Cable,1,11.95,2019-07-26 14:20:00,102 5th St, New York City,NY,10001 +235387,Lightning Charging Cable,1,14.95,2019-07-01 09:36:00,481 2nd St, Boston,MA,02215 +235388,ThinkPad Laptop,1,999.99,2019-07-27 14:15:00,304 Jefferson St, Dallas,TX,75001 +235389,27in FHD Monitor,1,149.99,2019-07-21 08:15:00,303 Jackson St, Dallas,TX,75001 +235390,AAA Batteries (4-pack),2,2.99,2019-07-27 23:20:00,978 Highland St, Los Angeles,CA,90001 +235391,Bose SoundSport Headphones,1,99.99,2019-07-07 23:12:00,957 Church St, New York City,NY,10001 +235392,AAA Batteries (4-pack),1,2.99,2019-07-19 19:33:00,292 Lincoln St, Los Angeles,CA,90001 +235393,Macbook Pro Laptop,1,1700.0,2019-07-28 20:17:00,379 Chestnut St, Atlanta,GA,30301 +235394,27in FHD Monitor,1,149.99,2019-07-12 10:37:00,124 Chestnut St, San Francisco,CA,94016 +235395,27in FHD Monitor,1,149.99,2019-07-15 00:33:00,493 5th St, Los Angeles,CA,90001 +235396,Vareebadd Phone,1,400.0,2019-07-12 12:24:00,478 4th St, New York City,NY,10001 +235397,Bose SoundSport Headphones,1,99.99,2019-07-09 17:21:00,232 Maple St, Seattle,WA,98101 +235398,USB-C Charging Cable,1,11.95,2019-07-10 23:34:00,51 North St, Los Angeles,CA,90001 +235399,20in Monitor,1,109.99,2019-07-15 19:51:00,850 West St, San Francisco,CA,94016 +235400,AAA Batteries (4-pack),1,2.99,2019-07-28 10:05:00,494 9th St, Portland,OR,97035 +235401,iPhone,1,700.0,2019-07-20 21:29:00,335 6th St, San Francisco,CA,94016 +235402,USB-C Charging Cable,1,11.95,2019-07-08 02:43:00,965 Lake St, New York City,NY,10001 +235403,AAA Batteries (4-pack),2,2.99,2019-07-07 17:44:00,60 Lake St, Boston,MA,02215 +235404,Flatscreen TV,1,300.0,2019-07-24 18:54:00,972 Highland St, Seattle,WA,98101 +235405,Apple Airpods Headphones,1,150.0,2019-07-16 11:25:00,49 Church St, New York City,NY,10001 +235406,Apple Airpods Headphones,1,150.0,2019-07-16 11:47:00,268 River St, San Francisco,CA,94016 +235407,USB-C Charging Cable,1,11.95,2019-07-15 00:09:00,774 Madison St, San Francisco,CA,94016 +235408,USB-C Charging Cable,1,11.95,2019-07-06 15:57:00,521 Willow St, Dallas,TX,75001 +235409,AAA Batteries (4-pack),3,2.99,2019-07-07 18:05:00,611 11th St, Dallas,TX,75001 +235410,USB-C Charging Cable,1,11.95,2019-07-22 18:18:00,50 6th St, Boston,MA,02215 +235411,Apple Airpods Headphones,1,150.0,2019-07-20 21:15:00,533 Highland St, Austin,TX,73301 +235412,Wired Headphones,1,11.99,2019-07-10 18:18:00,26 Lincoln St, Atlanta,GA,30301 +235413,Lightning Charging Cable,1,14.95,2019-07-21 21:05:00,937 Church St, Los Angeles,CA,90001 +235414,Wired Headphones,2,11.99,2019-07-05 16:16:00,547 Forest St, Los Angeles,CA,90001 +235415,Macbook Pro Laptop,1,1700.0,2019-07-16 04:44:00,612 10th St, Boston,MA,02215 +235416,USB-C Charging Cable,1,11.95,2019-07-18 20:07:00,942 Wilson St, New York City,NY,10001 +235417,USB-C Charging Cable,1,11.95,2019-07-22 13:58:00,100 Wilson St, San Francisco,CA,94016 +235418,AA Batteries (4-pack),3,3.84,2019-07-20 13:04:00,61 Center St, Boston,MA,02215 +235419,20in Monitor,1,109.99,2019-07-12 06:53:00,525 Lake St, San Francisco,CA,94016 +235420,AA Batteries (4-pack),1,3.84,2019-07-16 19:05:00,346 8th St, Dallas,TX,75001 +235421,27in FHD Monitor,1,149.99,2019-07-17 19:26:00,789 Madison St, Los Angeles,CA,90001 +235422,34in Ultrawide Monitor,1,379.99,2019-07-17 18:09:00,627 Meadow St, Dallas,TX,75001 +235423,Apple Airpods Headphones,1,150.0,2019-07-23 21:04:00,599 4th St, San Francisco,CA,94016 +235424,USB-C Charging Cable,2,11.95,2019-07-30 10:44:00,212 Spruce St, Portland,OR,97035 +235425,Wired Headphones,1,11.99,2019-07-08 21:53:00,21 Hickory St, Los Angeles,CA,90001 +235426,Bose SoundSport Headphones,1,99.99,2019-07-09 05:23:00,30 7th St, San Francisco,CA,94016 +235427,USB-C Charging Cable,1,11.95,2019-07-29 12:31:00,490 Lake St, Los Angeles,CA,90001 +235428,27in FHD Monitor,1,149.99,2019-07-17 17:39:00,111 Willow St, Austin,TX,73301 +235429,Apple Airpods Headphones,1,150.0,2019-07-13 17:15:00,767 Lakeview St, Los Angeles,CA,90001 +235430,Google Phone,1,600.0,2019-07-21 16:50:00,734 Meadow St, Portland,OR,97035 +235431,Flatscreen TV,1,300.0,2019-07-21 14:46:00,147 Park St, New York City,NY,10001 +235432,USB-C Charging Cable,1,11.95,2019-07-05 09:04:00,401 Lakeview St, Atlanta,GA,30301 +235433,Lightning Charging Cable,1,14.95,2019-07-27 23:29:00,841 12th St, Los Angeles,CA,90001 +235434,Lightning Charging Cable,1,14.95,2019-07-27 07:07:00,577 Maple St, Dallas,TX,75001 +235435,34in Ultrawide Monitor,1,379.99,2019-07-16 11:46:00,438 Jefferson St, New York City,NY,10001 +235436,USB-C Charging Cable,1,11.95,2019-07-20 09:39:00,92 Sunset St, New York City,NY,10001 +235437,Flatscreen TV,1,300.0,2019-07-05 19:24:00,323 14th St, Austin,TX,73301 +235438,USB-C Charging Cable,2,11.95,2019-07-02 11:21:00,750 Jefferson St, Austin,TX,73301 +235439,Google Phone,1,600.0,2019-07-02 17:46:00,29 Chestnut St, San Francisco,CA,94016 +235440,27in FHD Monitor,1,149.99,2019-07-14 20:49:00,907 Dogwood St, New York City,NY,10001 +235441,Bose SoundSport Headphones,1,99.99,2019-07-08 21:01:00,141 Lakeview St, Los Angeles,CA,90001 +235442,34in Ultrawide Monitor,1,379.99,2019-07-18 14:53:00,498 Lincoln St, Atlanta,GA,30301 +235443,Apple Airpods Headphones,1,150.0,2019-07-08 18:14:00,632 Spruce St, Los Angeles,CA,90001 +235444,Google Phone,1,600.0,2019-07-23 17:45:00,707 13th St, New York City,NY,10001 +235445,USB-C Charging Cable,1,11.95,2019-07-16 17:47:00,791 Wilson St, San Francisco,CA,94016 +235446,AA Batteries (4-pack),1,3.84,2019-07-09 20:01:00,913 9th St, Los Angeles,CA,90001 +235447,USB-C Charging Cable,1,11.95,2019-07-05 11:00:00,718 Jefferson St, Atlanta,GA,30301 +235448,Apple Airpods Headphones,1,150.0,2019-07-16 21:32:00,875 2nd St, Portland,ME,04101 +235449,AA Batteries (4-pack),1,3.84,2019-07-06 17:49:00,303 10th St, Portland,OR,97035 +235450,AA Batteries (4-pack),1,3.84,2019-07-16 19:09:00,838 12th St, New York City,NY,10001 +235451,Wired Headphones,1,11.99,2019-07-08 23:51:00,870 Madison St, Dallas,TX,75001 +235452,AA Batteries (4-pack),2,3.84,2019-07-01 17:13:00,41 Highland St, New York City,NY,10001 +235453,AAA Batteries (4-pack),1,2.99,2019-07-24 17:20:00,703 13th St, Boston,MA,02215 +235454,27in 4K Gaming Monitor,1,389.99,2019-07-14 17:06:00,616 6th St, Austin,TX,73301 +235455,USB-C Charging Cable,1,11.95,2019-07-12 22:03:00,174 Chestnut St, Dallas,TX,75001 +235456,AAA Batteries (4-pack),1,2.99,2019-07-28 21:06:00,492 6th St, Los Angeles,CA,90001 +235457,Apple Airpods Headphones,1,150.0,2019-07-03 14:11:00,453 North St, San Francisco,CA,94016 +235458,Macbook Pro Laptop,1,1700.0,2019-07-19 18:26:00,911 Ridge St, San Francisco,CA,94016 +235459,AA Batteries (4-pack),1,3.84,2019-07-09 21:22:00,9 9th St, Boston,MA,02215 +235460,AAA Batteries (4-pack),5,2.99,2019-07-01 11:34:00,11 Cherry St, New York City,NY,10001 +235461,Flatscreen TV,1,300.0,2019-07-06 16:09:00,576 11th St, San Francisco,CA,94016 +235462,27in FHD Monitor,1,149.99,2019-07-10 12:30:00,942 Madison St, Atlanta,GA,30301 +235463,Apple Airpods Headphones,1,150.0,2019-07-20 14:12:00,509 Cherry St, Portland,OR,97035 +235464,USB-C Charging Cable,1,11.95,2019-07-28 05:31:00,918 12th St, Boston,MA,02215 +235465,27in 4K Gaming Monitor,1,389.99,2019-07-08 21:17:00,853 Lincoln St, New York City,NY,10001 +235466,Google Phone,1,600.0,2019-07-27 11:04:00,720 9th St, Boston,MA,02215 +235467,Wired Headphones,1,11.99,2019-07-22 20:18:00,616 6th St, Los Angeles,CA,90001 +235468,20in Monitor,1,109.99,2019-07-10 07:55:00,302 Lake St, Atlanta,GA,30301 +235469,AA Batteries (4-pack),2,3.84,2019-07-09 16:02:00,562 Lake St, Los Angeles,CA,90001 +235470,Bose SoundSport Headphones,1,99.99,2019-07-18 16:40:00,4 Cedar St, Boston,MA,02215 +235471,ThinkPad Laptop,1,999.99,2019-07-16 21:10:00,636 11th St, Portland,OR,97035 +235472,USB-C Charging Cable,1,11.95,2019-07-10 13:51:00,109 Madison St, Dallas,TX,75001 +235473,AAA Batteries (4-pack),1,2.99,2019-07-21 18:28:00,391 4th St, Portland,ME,04101 +235474,Macbook Pro Laptop,1,1700.0,2019-07-27 20:15:00,901 Hickory St, Seattle,WA,98101 +235475,20in Monitor,1,109.99,2019-07-30 13:46:00,961 Willow St, Atlanta,GA,30301 +235476,AAA Batteries (4-pack),1,2.99,2019-07-05 18:04:00,245 Washington St, San Francisco,CA,94016 +235477,LG Dryer,1,600.0,2019-07-21 15:26:00,824 Willow St, Boston,MA,02215 +235478,Macbook Pro Laptop,1,1700.0,2019-07-01 17:11:00,316 4th St, San Francisco,CA,94016 +235479,Lightning Charging Cable,1,14.95,2019-07-03 18:49:00,407 Spruce St, Atlanta,GA,30301 +235480,34in Ultrawide Monitor,1,379.99,2019-07-30 14:09:00,150 Lincoln St, San Francisco,CA,94016 +235481,Google Phone,1,600.0,2019-07-25 09:33:00,407 Johnson St, San Francisco,CA,94016 +235481,Bose SoundSport Headphones,1,99.99,2019-07-25 09:33:00,407 Johnson St, San Francisco,CA,94016 +235482,27in FHD Monitor,1,149.99,2019-07-24 07:01:00,850 Adams St, Boston,MA,02215 +235483,Lightning Charging Cable,1,14.95,2019-07-17 08:08:00,299 Cedar St, Portland,OR,97035 +235484,AAA Batteries (4-pack),1,2.99,2019-07-09 04:15:00,82 Wilson St, Boston,MA,02215 +235485,AAA Batteries (4-pack),2,2.99,2019-07-14 20:24:00,66 Ridge St, San Francisco,CA,94016 +235486,Bose SoundSport Headphones,1,99.99,2019-07-08 15:50:00,912 Pine St, New York City,NY,10001 +235487,20in Monitor,1,109.99,2019-07-18 14:47:00,68 7th St, Los Angeles,CA,90001 +235488,Bose SoundSport Headphones,1,99.99,2019-07-30 23:17:00,659 Lakeview St, Boston,MA,02215 +235489,AAA Batteries (4-pack),1,2.99,2019-07-27 08:22:00,5 West St, Portland,ME,04101 +235490,Wired Headphones,2,11.99,2019-07-08 19:05:00,783 Meadow St, Los Angeles,CA,90001 +235491,27in 4K Gaming Monitor,1,389.99,2019-07-16 17:06:00,274 Spruce St, Atlanta,GA,30301 +235492,Macbook Pro Laptop,1,1700.0,2019-07-19 17:58:00,824 Spruce St, Los Angeles,CA,90001 +235493,USB-C Charging Cable,1,11.95,2019-07-30 17:18:00,461 Chestnut St, Portland,OR,97035 +235494,34in Ultrawide Monitor,1,379.99,2019-07-03 12:34:00,80 Highland St, San Francisco,CA,94016 +235495,Apple Airpods Headphones,1,150.0,2019-07-27 12:23:00,969 11th St, New York City,NY,10001 +235496,Wired Headphones,1,11.99,2019-07-05 05:07:00,945 West St, San Francisco,CA,94016 +235497,AAA Batteries (4-pack),2,2.99,2019-07-15 12:12:00,991 13th St, Los Angeles,CA,90001 +235498,Wired Headphones,1,11.99,2019-07-26 14:34:00,126 Lincoln St, Atlanta,GA,30301 +235499,Lightning Charging Cable,1,14.95,2019-07-30 18:20:00,709 Maple St, Los Angeles,CA,90001 +235500,Google Phone,1,600.0,2019-07-19 21:48:00,803 Meadow St, Portland,OR,97035 +235501,USB-C Charging Cable,1,11.95,2019-07-23 13:47:00,269 Jackson St, Boston,MA,02215 +235502,Apple Airpods Headphones,1,150.0,2019-07-23 22:38:00,5 Ridge St, Los Angeles,CA,90001 +235503,Wired Headphones,1,11.99,2019-07-16 22:12:00,78 13th St, Los Angeles,CA,90001 +235504,AA Batteries (4-pack),2,3.84,2019-07-16 22:42:00,183 Spruce St, New York City,NY,10001 +235505,27in 4K Gaming Monitor,1,389.99,2019-07-25 19:56:00,383 Forest St, Los Angeles,CA,90001 +235506,34in Ultrawide Monitor,1,379.99,2019-07-28 18:54:00,415 4th St, Dallas,TX,75001 +235507,USB-C Charging Cable,1,11.95,2019-07-10 09:39:00,577 South St, San Francisco,CA,94016 +235508,Wired Headphones,2,11.99,2019-07-05 14:18:00,170 River St, San Francisco,CA,94016 +235509,Lightning Charging Cable,1,14.95,2019-07-27 12:29:00,607 Center St, San Francisco,CA,94016 +235510,USB-C Charging Cable,1,11.95,2019-07-31 16:14:00,718 Washington St, Austin,TX,73301 +235511,AA Batteries (4-pack),1,3.84,2019-07-23 23:24:00,462 Chestnut St, Atlanta,GA,30301 +235512,Google Phone,1,600.0,2019-07-17 21:57:00,938 North St, Portland,ME,04101 +235513,27in FHD Monitor,1,149.99,2019-07-13 17:30:00,428 11th St, Austin,TX,73301 +235514,Lightning Charging Cable,1,14.95,2019-07-18 14:51:00,693 Jackson St, San Francisco,CA,94016 +235515,AAA Batteries (4-pack),2,2.99,2019-07-18 13:02:00,721 2nd St, San Francisco,CA,94016 +235516,27in FHD Monitor,1,149.99,2019-07-15 21:59:00,189 7th St, Los Angeles,CA,90001 +235517,Lightning Charging Cable,1,14.95,2019-07-14 14:28:00,637 11th St, Portland,OR,97035 +235518,AA Batteries (4-pack),1,3.84,2019-07-09 10:27:00,698 7th St, Atlanta,GA,30301 +235519,AA Batteries (4-pack),3,3.84,2019-07-14 12:04:00,551 Madison St, New York City,NY,10001 +235520,27in 4K Gaming Monitor,1,389.99,2019-07-19 21:58:00,868 6th St, San Francisco,CA,94016 +235521,AAA Batteries (4-pack),1,2.99,2019-07-28 15:57:00,967 Lake St, New York City,NY,10001 +235522,AAA Batteries (4-pack),1,2.99,2019-07-18 20:17:00,368 5th St, Seattle,WA,98101 +235523,AA Batteries (4-pack),1,3.84,2019-07-25 13:30:00,254 1st St, San Francisco,CA,94016 +235524,Wired Headphones,1,11.99,2019-07-27 11:33:00,584 Jefferson St, New York City,NY,10001 +235525,Lightning Charging Cable,1,14.95,2019-07-02 19:23:00,3 Wilson St, Los Angeles,CA,90001 +235526,USB-C Charging Cable,1,11.95,2019-07-27 22:29:00,160 Forest St, Portland,OR,97035 +235527,Flatscreen TV,1,300.0,2019-07-03 19:11:00,117 River St, San Francisco,CA,94016 +235528,Lightning Charging Cable,1,14.95,2019-07-23 07:31:00,84 Center St, Atlanta,GA,30301 +235529,Macbook Pro Laptop,1,1700.0,2019-07-05 12:15:00,399 14th St, Los Angeles,CA,90001 +235530,Lightning Charging Cable,1,14.95,2019-07-08 11:30:00,856 8th St, Boston,MA,02215 +235531,AAA Batteries (4-pack),1,2.99,2019-07-07 22:44:00,731 8th St, San Francisco,CA,94016 +235532,Flatscreen TV,1,300.0,2019-07-27 21:35:00,738 Ridge St, Los Angeles,CA,90001 +235533,27in 4K Gaming Monitor,1,389.99,2019-07-17 22:01:00,123 Pine St, San Francisco,CA,94016 +235534,USB-C Charging Cable,1,11.95,2019-07-23 15:19:00,14 Ridge St, Portland,OR,97035 +235535,Lightning Charging Cable,1,14.95,2019-07-22 17:03:00,773 8th St, San Francisco,CA,94016 +235536,34in Ultrawide Monitor,1,379.99,2019-07-29 14:11:00,430 Forest St, Dallas,TX,75001 +235537,USB-C Charging Cable,1,11.95,2019-07-02 21:37:00,663 Adams St, San Francisco,CA,94016 +235538,USB-C Charging Cable,1,11.95,2019-07-21 11:37:00,835 1st St, Atlanta,GA,30301 +235539,27in 4K Gaming Monitor,1,389.99,2019-07-27 12:32:00,421 2nd St, San Francisco,CA,94016 +235540,AA Batteries (4-pack),1,3.84,2019-07-01 06:44:00,959 North St, Austin,TX,73301 +235541,Wired Headphones,1,11.99,2019-07-17 16:29:00,517 Cedar St, Los Angeles,CA,90001 +235542,AAA Batteries (4-pack),1,2.99,2019-07-26 19:17:00,827 6th St, San Francisco,CA,94016 +235543,27in FHD Monitor,1,149.99,2019-07-21 21:40:00,968 Adams St, San Francisco,CA,94016 +235544,Apple Airpods Headphones,1,150.0,2019-07-14 23:23:00,764 1st St, Atlanta,GA,30301 +235545,USB-C Charging Cable,1,11.95,2019-07-23 05:40:00,563 11th St, Los Angeles,CA,90001 +235546,Wired Headphones,1,11.99,2019-07-27 23:01:00,87 11th St, Austin,TX,73301 +235547,USB-C Charging Cable,1,11.95,2019-07-15 21:53:00,737 12th St, Austin,TX,73301 +235548,USB-C Charging Cable,1,11.95,2019-07-07 10:27:00,2 Hill St, Los Angeles,CA,90001 +235549,Lightning Charging Cable,1,14.95,2019-07-31 22:48:00,716 7th St, Dallas,TX,75001 +235550,Lightning Charging Cable,1,14.95,2019-07-31 18:50:00,415 Cherry St, Boston,MA,02215 +235550,USB-C Charging Cable,1,11.95,2019-07-31 18:50:00,415 Cherry St, Boston,MA,02215 +235551,ThinkPad Laptop,1,999.99,2019-07-14 17:42:00,879 12th St, Dallas,TX,75001 +235552,Macbook Pro Laptop,1,1700.0,2019-07-18 19:10:00,722 Dogwood St, Boston,MA,02215 +235553,Apple Airpods Headphones,1,150.0,2019-07-08 16:23:00,389 River St, New York City,NY,10001 +235554,Lightning Charging Cable,1,14.95,2019-07-23 22:24:00,235 Center St, Seattle,WA,98101 +235555,USB-C Charging Cable,1,11.95,2019-07-12 12:42:00,192 Main St, New York City,NY,10001 +235556,Apple Airpods Headphones,1,150.0,2019-07-18 04:52:00,730 8th St, San Francisco,CA,94016 +235557,Bose SoundSport Headphones,1,99.99,2019-07-14 01:21:00,286 5th St, Los Angeles,CA,90001 +235558,Apple Airpods Headphones,1,150.0,2019-07-24 17:33:00,631 Meadow St, Seattle,WA,98101 +235559,Lightning Charging Cable,1,14.95,2019-07-29 11:54:00,110 Dogwood St, San Francisco,CA,94016 +235560,USB-C Charging Cable,1,11.95,2019-07-14 22:21:00,610 Chestnut St, San Francisco,CA,94016 +235561,Apple Airpods Headphones,1,150.0,2019-07-04 22:51:00,855 West St, New York City,NY,10001 +235562,Lightning Charging Cable,1,14.95,2019-07-27 12:43:00,343 8th St, Los Angeles,CA,90001 +235563,Bose SoundSport Headphones,1,99.99,2019-07-12 09:49:00,994 Main St, Portland,OR,97035 +235564,AAA Batteries (4-pack),2,2.99,2019-07-07 13:20:00,185 Pine St, New York City,NY,10001 +235565,Google Phone,1,600.0,2019-07-26 12:39:00,930 Madison St, Portland,OR,97035 +235566,USB-C Charging Cable,1,11.95,2019-07-03 13:09:00,581 Forest St, Los Angeles,CA,90001 +235567,Bose SoundSport Headphones,1,99.99,2019-07-03 06:28:00,206 Wilson St, Dallas,TX,75001 +235568,AA Batteries (4-pack),1,3.84,2019-07-21 01:08:00,7 Dogwood St, San Francisco,CA,94016 +235569,Lightning Charging Cable,2,14.95,2019-07-02 23:45:00,977 7th St, San Francisco,CA,94016 +235570,Google Phone,1,600.0,2019-07-06 15:00:00,999 Jefferson St, Portland,OR,97035 +235570,Bose SoundSport Headphones,1,99.99,2019-07-06 15:00:00,999 Jefferson St, Portland,OR,97035 +235571,AA Batteries (4-pack),1,3.84,2019-07-22 16:42:00,231 12th St, Portland,OR,97035 +235571,AAA Batteries (4-pack),2,2.99,2019-07-22 16:42:00,231 12th St, Portland,OR,97035 +235572,Flatscreen TV,1,300.0,2019-07-15 15:27:00,378 14th St, Atlanta,GA,30301 +235573,AA Batteries (4-pack),1,3.84,2019-07-07 18:32:00,260 Meadow St, San Francisco,CA,94016 +235574,USB-C Charging Cable,1,11.95,2019-07-19 11:47:00,229 Cherry St, New York City,NY,10001 +235575,34in Ultrawide Monitor,1,379.99,2019-07-17 19:20:00,912 14th St, New York City,NY,10001 +235576,27in FHD Monitor,1,149.99,2019-07-28 14:34:00,150 5th St, New York City,NY,10001 +235577,USB-C Charging Cable,1,11.95,2019-07-16 12:57:00,803 Cedar St, Portland,OR,97035 +235578,Flatscreen TV,1,300.0,2019-07-06 18:37:00,991 12th St, Boston,MA,02215 +235579,20in Monitor,1,109.99,2019-07-29 20:04:00,522 11th St, Austin,TX,73301 +235580,AA Batteries (4-pack),1,3.84,2019-07-29 20:25:00,529 Hickory St, Boston,MA,02215 +235581,Bose SoundSport Headphones,1,99.99,2019-07-20 13:44:00,950 6th St, San Francisco,CA,94016 +235582,AA Batteries (4-pack),1,3.84,2019-07-31 18:53:00,575 West St, Los Angeles,CA,90001 +235583,LG Dryer,1,600.0,2019-07-12 09:05:00,972 West St, New York City,NY,10001 +235584,Vareebadd Phone,1,400.0,2019-07-04 10:38:00,366 6th St, Seattle,WA,98101 +235584,USB-C Charging Cable,1,11.95,2019-07-04 10:38:00,366 6th St, Seattle,WA,98101 +235584,Bose SoundSport Headphones,1,99.99,2019-07-04 10:38:00,366 6th St, Seattle,WA,98101 +235585,27in 4K Gaming Monitor,1,389.99,2019-07-03 23:53:00,597 Hickory St, Portland,OR,97035 +235586,Wired Headphones,1,11.99,2019-07-25 17:33:00,759 Chestnut St, San Francisco,CA,94016 +235586,Bose SoundSport Headphones,1,99.99,2019-07-25 17:33:00,759 Chestnut St, San Francisco,CA,94016 +235587,AAA Batteries (4-pack),1,2.99,2019-07-10 13:22:00,487 Park St, San Francisco,CA,94016 +235588,27in FHD Monitor,1,149.99,2019-07-11 17:18:00,229 Meadow St, Seattle,WA,98101 +235589,Bose SoundSport Headphones,1,99.99,2019-07-27 21:13:00,519 11th St, San Francisco,CA,94016 +235590,AA Batteries (4-pack),1,3.84,2019-07-22 14:39:00,835 7th St, Dallas,TX,75001 +235591,Flatscreen TV,1,300.0,2019-07-30 19:07:00,878 Church St, New York City,NY,10001 +235592,34in Ultrawide Monitor,1,379.99,2019-07-07 17:18:00,489 Dogwood St, Atlanta,GA,30301 +235593,iPhone,1,700.0,2019-07-29 01:53:00,305 11th St, Atlanta,GA,30301 +235594,USB-C Charging Cable,2,11.95,2019-07-12 07:00:00,999 11th St, San Francisco,CA,94016 +235595,AA Batteries (4-pack),2,3.84,2019-07-22 21:40:00,340 Cherry St, Boston,MA,02215 +235596,Apple Airpods Headphones,1,150.0,2019-07-12 11:38:00,529 14th St, New York City,NY,10001 +235597,iPhone,1,700.0,2019-07-01 20:22:00,452 North St, Boston,MA,02215 +235598,AA Batteries (4-pack),1,3.84,2019-07-16 12:28:00,281 Jefferson St, San Francisco,CA,94016 +235599,Macbook Pro Laptop,1,1700.0,2019-07-15 15:00:00,128 Sunset St, Los Angeles,CA,90001 +235600,Apple Airpods Headphones,1,150.0,2019-07-21 23:54:00,313 Center St, San Francisco,CA,94016 +235601,Lightning Charging Cable,1,14.95,2019-07-11 04:02:00,945 Park St, Portland,OR,97035 +235602,AA Batteries (4-pack),2,3.84,2019-07-26 17:25:00,442 South St, San Francisco,CA,94016 +235603,27in FHD Monitor,1,149.99,2019-07-03 15:36:00,546 2nd St, Los Angeles,CA,90001 +235604,USB-C Charging Cable,1,11.95,2019-07-02 16:33:00,545 Cherry St, Dallas,TX,75001 +235605,34in Ultrawide Monitor,1,379.99,2019-07-15 02:15:00,839 12th St, Los Angeles,CA,90001 +235606,Bose SoundSport Headphones,1,99.99,2019-07-20 12:26:00,83 Madison St, San Francisco,CA,94016 +235607,Bose SoundSport Headphones,1,99.99,2019-07-31 20:23:00,672 12th St, San Francisco,CA,94016 +235608,34in Ultrawide Monitor,1,379.99,2019-07-14 12:05:00,688 6th St, San Francisco,CA,94016 +235609,Macbook Pro Laptop,1,1700.0,2019-07-09 16:01:00,730 Hickory St, Los Angeles,CA,90001 +235610,USB-C Charging Cable,1,11.95,2019-07-30 11:23:00,970 4th St, Los Angeles,CA,90001 +235611,Lightning Charging Cable,1,14.95,2019-07-28 14:16:00,669 12th St, Los Angeles,CA,90001 +235612,Wired Headphones,1,11.99,2019-07-31 15:41:00,304 Dogwood St, Seattle,WA,98101 +235613,Apple Airpods Headphones,1,150.0,2019-07-25 17:18:00,371 North St, Los Angeles,CA,90001 +235614,Flatscreen TV,1,300.0,2019-07-09 07:32:00,23 Cherry St, Dallas,TX,75001 +235615,AAA Batteries (4-pack),1,2.99,2019-07-28 13:40:00,781 4th St, San Francisco,CA,94016 +235616,ThinkPad Laptop,1,999.99,2019-07-14 23:27:00,553 Center St, Seattle,WA,98101 +235617,20in Monitor,1,109.99,2019-07-18 10:57:00,246 Jackson St, Atlanta,GA,30301 +235618,Bose SoundSport Headphones,1,99.99,2019-07-13 10:46:00,585 Johnson St, Portland,OR,97035 +235619,Apple Airpods Headphones,1,150.0,2019-07-30 18:26:00,696 Ridge St, Boston,MA,02215 +235620,AA Batteries (4-pack),1,3.84,2019-07-23 23:59:00,912 Jefferson St, Los Angeles,CA,90001 +235621,Vareebadd Phone,1,400.0,2019-07-20 12:06:00,267 4th St, Atlanta,GA,30301 +235622,Wired Headphones,1,11.99,2019-07-04 00:32:00,153 13th St, Boston,MA,02215 +235623,Wired Headphones,1,11.99,2019-07-08 15:45:00,764 1st St, Seattle,WA,98101 +235624,AA Batteries (4-pack),1,3.84,2019-07-06 16:48:00,690 12th St, San Francisco,CA,94016 +235625,Macbook Pro Laptop,1,1700.0,2019-07-11 20:26:00,42 6th St, Portland,OR,97035 +235626,USB-C Charging Cable,1,11.95,2019-07-03 18:16:00,691 9th St, San Francisco,CA,94016 +235627,20in Monitor,1,109.99,2019-07-18 23:18:00,134 Walnut St, New York City,NY,10001 +235628,AA Batteries (4-pack),1,3.84,2019-07-14 11:01:00,711 River St, New York City,NY,10001 +235629,Wired Headphones,1,11.99,2019-07-15 20:50:00,366 Madison St, Austin,TX,73301 +235630,Lightning Charging Cable,1,14.95,2019-07-31 12:28:00,522 10th St, San Francisco,CA,94016 +235631,AAA Batteries (4-pack),1,2.99,2019-07-01 09:37:00,844 Madison St, Los Angeles,CA,90001 +235632,27in FHD Monitor,1,149.99,2019-07-30 15:31:00,969 Sunset St, San Francisco,CA,94016 +235633,USB-C Charging Cable,1,11.95,2019-07-02 17:08:00,2 River St, Atlanta,GA,30301 +235633,27in 4K Gaming Monitor,1,389.99,2019-07-02 17:08:00,2 River St, Atlanta,GA,30301 +235634,Lightning Charging Cable,1,14.95,2019-07-18 13:13:00,255 5th St, Portland,OR,97035 +235635,Apple Airpods Headphones,1,150.0,2019-07-02 15:43:00,493 Wilson St, New York City,NY,10001 +235636,Lightning Charging Cable,1,14.95,2019-07-18 09:16:00,890 Pine St, San Francisco,CA,94016 +235637,USB-C Charging Cable,1,11.95,2019-07-28 23:46:00,450 South St, New York City,NY,10001 +235638,USB-C Charging Cable,1,11.95,2019-07-09 12:00:00,940 8th St, Seattle,WA,98101 +235639,Google Phone,1,600.0,2019-07-01 09:19:00,259 Madison St, New York City,NY,10001 +235640,Bose SoundSport Headphones,1,99.99,2019-07-15 17:07:00,66 Maple St, New York City,NY,10001 +235641,AAA Batteries (4-pack),1,2.99,2019-07-08 08:30:00,973 Hill St, Los Angeles,CA,90001 +235642,Wired Headphones,2,11.99,2019-07-12 14:44:00,513 South St, Portland,OR,97035 +235643,Lightning Charging Cable,1,14.95,2019-07-11 13:21:00,234 Lakeview St, Boston,MA,02215 +235644,Apple Airpods Headphones,1,150.0,2019-07-19 12:25:00,674 Jackson St, Los Angeles,CA,90001 +235645,Wired Headphones,2,11.99,2019-07-17 12:08:00,307 Hickory St, New York City,NY,10001 +235646,AA Batteries (4-pack),2,3.84,2019-07-20 22:33:00,60 4th St, New York City,NY,10001 +235647,AA Batteries (4-pack),2,3.84,2019-07-02 15:17:00,152 West St, Seattle,WA,98101 +235648,Lightning Charging Cable,1,14.95,2019-07-07 14:30:00,437 5th St, San Francisco,CA,94016 +235649,Lightning Charging Cable,1,14.95,2019-07-09 10:03:00,349 Forest St, Los Angeles,CA,90001 +235650,Lightning Charging Cable,1,14.95,2019-07-29 06:05:00,626 8th St, Atlanta,GA,30301 +235651,iPhone,1,700.0,2019-07-20 19:48:00,65 8th St, New York City,NY,10001 +235652,Apple Airpods Headphones,1,150.0,2019-07-06 18:07:00,781 Sunset St, Atlanta,GA,30301 +235653,Apple Airpods Headphones,1,150.0,2019-07-30 17:12:00,182 Jefferson St, Seattle,WA,98101 +235654,Google Phone,1,600.0,2019-07-08 22:44:00,553 Willow St, San Francisco,CA,94016 +235655,Wired Headphones,1,11.99,2019-07-31 20:32:00,298 Church St, Seattle,WA,98101 +235656,AA Batteries (4-pack),1,3.84,2019-07-25 16:04:00,289 North St, San Francisco,CA,94016 +235657,Wired Headphones,1,11.99,2019-07-16 21:09:00,285 Dogwood St, Portland,OR,97035 +235658,USB-C Charging Cable,1,11.95,2019-07-09 12:38:00,716 Sunset St, San Francisco,CA,94016 +235659,USB-C Charging Cable,1,11.95,2019-07-20 05:23:00,451 Lake St, Los Angeles,CA,90001 +235660,USB-C Charging Cable,1,11.95,2019-07-31 11:38:00,347 13th St, Los Angeles,CA,90001 +235661,20in Monitor,1,109.99,2019-07-29 08:28:00,203 1st St, San Francisco,CA,94016 +235662,Bose SoundSport Headphones,1,99.99,2019-07-19 21:03:00,375 Wilson St, Los Angeles,CA,90001 +235663,AAA Batteries (4-pack),1,2.99,2019-07-29 20:46:00,279 13th St, Los Angeles,CA,90001 +235664,Lightning Charging Cable,1,14.95,2019-07-29 11:03:00,546 Washington St, Austin,TX,73301 +235665,AA Batteries (4-pack),1,3.84,2019-07-23 17:19:00,604 Ridge St, San Francisco,CA,94016 +235666,AA Batteries (4-pack),1,3.84,2019-07-17 16:22:00,530 Willow St, New York City,NY,10001 +235667,AAA Batteries (4-pack),1,2.99,2019-07-29 06:53:00,552 Sunset St, San Francisco,CA,94016 +235668,Wired Headphones,1,11.99,2019-07-15 23:17:00,701 Pine St, New York City,NY,10001 +235669,iPhone,1,700.0,2019-07-29 15:39:00,594 North St, Austin,TX,73301 +235670,AA Batteries (4-pack),1,3.84,2019-07-25 15:38:00,169 Main St, Los Angeles,CA,90001 +235671,Wired Headphones,1,11.99,2019-07-31 11:22:00,681 Hickory St, New York City,NY,10001 +235672,Wired Headphones,1,11.99,2019-07-28 15:35:00,840 Walnut St, Atlanta,GA,30301 +235673,27in FHD Monitor,1,149.99,2019-07-31 19:20:00,732 Forest St, Los Angeles,CA,90001 +235674,Bose SoundSport Headphones,1,99.99,2019-07-21 17:17:00,97 Hickory St, San Francisco,CA,94016 +235675,AAA Batteries (4-pack),1,2.99,2019-07-06 01:37:00,108 Main St, Los Angeles,CA,90001 +235676,Apple Airpods Headphones,1,150.0,2019-07-01 19:31:00,974 Main St, Austin,TX,73301 +235677,AA Batteries (4-pack),2,3.84,2019-07-19 00:37:00,847 River St, Dallas,TX,75001 +235678,34in Ultrawide Monitor,1,379.99,2019-07-20 15:31:00,605 River St, Boston,MA,02215 +235679,Lightning Charging Cable,1,14.95,2019-07-26 09:34:00,78 Meadow St, Seattle,WA,98101 +235680,Wired Headphones,1,11.99,2019-07-25 13:09:00,879 8th St, New York City,NY,10001 +235681,USB-C Charging Cable,1,11.95,2019-07-21 22:26:00,959 Meadow St, Dallas,TX,75001 +235682,Apple Airpods Headphones,1,150.0,2019-07-09 18:16:00,614 Meadow St, Boston,MA,02215 +235683,AAA Batteries (4-pack),1,2.99,2019-07-13 12:01:00,234 Cherry St, Boston,MA,02215 +235684,AAA Batteries (4-pack),4,2.99,2019-07-21 15:49:00,298 Dogwood St, San Francisco,CA,94016 +235685,Apple Airpods Headphones,1,150.0,2019-07-09 19:01:00,501 West St, San Francisco,CA,94016 +235686,ThinkPad Laptop,1,999.99,2019-07-25 13:27:00,960 8th St, Atlanta,GA,30301 +235686,Google Phone,1,600.0,2019-07-25 13:27:00,960 8th St, Atlanta,GA,30301 +235687,Wired Headphones,1,11.99,2019-07-06 19:09:00,375 2nd St, Los Angeles,CA,90001 +235688,Lightning Charging Cable,1,14.95,2019-07-01 08:50:00,391 North St, Austin,TX,73301 +235689,AAA Batteries (4-pack),1,2.99,2019-07-09 09:53:00,376 Cherry St, Seattle,WA,98101 +235690,Lightning Charging Cable,1,14.95,2019-07-07 21:47:00,184 Maple St, San Francisco,CA,94016 +235691,27in FHD Monitor,1,149.99,2019-07-02 10:40:00,730 Meadow St, Austin,TX,73301 +235692,Wired Headphones,1,11.99,2019-07-23 18:53:00,272 4th St, Los Angeles,CA,90001 +235693,USB-C Charging Cable,1,11.95,2019-07-27 11:51:00,134 Maple St, Seattle,WA,98101 +235694,Vareebadd Phone,1,400.0,2019-07-06 09:53:00,276 6th St, San Francisco,CA,94016 +235695,iPhone,1,700.0,2019-07-08 12:09:00,227 Elm St, Dallas,TX,75001 +235696,20in Monitor,1,109.99,2019-07-23 12:49:00,839 North St, Portland,OR,97035 +235697,USB-C Charging Cable,1,11.95,2019-07-15 09:46:00,881 Sunset St, Austin,TX,73301 +235698,AA Batteries (4-pack),1,3.84,2019-07-25 21:07:00,152 Meadow St, Dallas,TX,75001 +235699,27in 4K Gaming Monitor,1,389.99,2019-07-07 13:37:00,320 North St, San Francisco,CA,94016 +235700,USB-C Charging Cable,1,11.95,2019-07-29 17:46:00,558 Wilson St, Los Angeles,CA,90001 +235701,USB-C Charging Cable,1,11.95,2019-07-22 08:55:00,137 4th St, San Francisco,CA,94016 +235702,Bose SoundSport Headphones,1,99.99,2019-07-09 21:12:00,152 7th St, Austin,TX,73301 +235703,USB-C Charging Cable,1,11.95,2019-07-19 12:54:00,272 Sunset St, Dallas,TX,75001 +235704,USB-C Charging Cable,1,11.95,2019-07-28 05:06:00,29 Ridge St, New York City,NY,10001 +235705,Apple Airpods Headphones,1,150.0,2019-07-20 16:53:00,947 Lakeview St, San Francisco,CA,94016 +235706,AAA Batteries (4-pack),2,2.99,2019-07-20 12:53:00,959 Pine St, Austin,TX,73301 +235707,Wired Headphones,1,11.99,2019-07-19 15:31:00,86 10th St, Dallas,TX,75001 +235708,AAA Batteries (4-pack),4,2.99,2019-07-24 12:41:00,380 Maple St, Seattle,WA,98101 +235709,iPhone,1,700.0,2019-07-28 17:17:00,547 7th St, Los Angeles,CA,90001 +235710,Google Phone,1,600.0,2019-07-03 17:32:00,627 Hickory St, San Francisco,CA,94016 +235711,AA Batteries (4-pack),1,3.84,2019-07-18 12:34:00,757 South St, Seattle,WA,98101 +235712,27in FHD Monitor,1,149.99,2019-07-19 17:34:00,468 Maple St, San Francisco,CA,94016 +235712,Lightning Charging Cable,1,14.95,2019-07-19 17:34:00,468 Maple St, San Francisco,CA,94016 +235713,Wired Headphones,1,11.99,2019-07-19 16:41:00,39 Highland St, Los Angeles,CA,90001 +235714,34in Ultrawide Monitor,1,379.99,2019-07-24 15:00:00,149 5th St, Atlanta,GA,30301 +235715,Wired Headphones,1,11.99,2019-07-17 15:03:00,782 Walnut St, Los Angeles,CA,90001 +235716,Macbook Pro Laptop,1,1700.0,2019-07-15 14:41:00,252 Lakeview St, Dallas,TX,75001 +235717,Google Phone,1,600.0,2019-07-28 11:06:00,654 Pine St, Los Angeles,CA,90001 +235718,Wired Headphones,1,11.99,2019-07-19 12:28:00,735 Main St, Portland,ME,04101 +235719,USB-C Charging Cable,1,11.95,2019-07-23 16:06:00,209 Main St, San Francisco,CA,94016 +235720,AA Batteries (4-pack),2,3.84,2019-07-11 23:35:00,721 4th St, Los Angeles,CA,90001 +235720,27in 4K Gaming Monitor,1,389.99,2019-07-11 23:35:00,721 4th St, Los Angeles,CA,90001 +235721,AAA Batteries (4-pack),1,2.99,2019-07-13 21:26:00,23 Main St, San Francisco,CA,94016 +235722,USB-C Charging Cable,1,11.95,2019-07-27 21:17:00,794 Jackson St, San Francisco,CA,94016 +235723,AA Batteries (4-pack),1,3.84,2019-07-30 16:04:00,113 Meadow St, San Francisco,CA,94016 +235723,Apple Airpods Headphones,1,150.0,2019-07-30 16:04:00,113 Meadow St, San Francisco,CA,94016 +235724,iPhone,1,700.0,2019-07-04 22:15:00,778 Cherry St, Atlanta,GA,30301 +235725,Lightning Charging Cable,1,14.95,2019-07-23 22:08:00,661 5th St, San Francisco,CA,94016 +235726,Bose SoundSport Headphones,1,99.99,2019-07-10 19:46:00,83 Johnson St, Los Angeles,CA,90001 +235727,AAA Batteries (4-pack),1,2.99,2019-07-19 15:02:00,661 Dogwood St, Atlanta,GA,30301 +235728,iPhone,1,700.0,2019-07-16 12:54:00,415 Highland St, Dallas,TX,75001 +235729,USB-C Charging Cable,2,11.95,2019-07-15 10:43:00,292 West St, New York City,NY,10001 +235730,Wired Headphones,1,11.99,2019-07-05 22:25:00,849 2nd St, New York City,NY,10001 +235731,Wired Headphones,1,11.99,2019-07-13 18:03:00,104 4th St, Los Angeles,CA,90001 +235732,Wired Headphones,1,11.99,2019-07-21 19:46:00,564 Church St, New York City,NY,10001 +235733,USB-C Charging Cable,2,11.95,2019-07-20 11:35:00,947 West St, Portland,OR,97035 +235734,Wired Headphones,2,11.99,2019-07-23 20:36:00,298 Willow St, San Francisco,CA,94016 +235735,27in 4K Gaming Monitor,1,389.99,2019-07-01 22:43:00,689 Elm St, Dallas,TX,75001 +235736,USB-C Charging Cable,1,11.95,2019-07-22 16:07:00,417 6th St, Los Angeles,CA,90001 +235737,USB-C Charging Cable,1,11.95,2019-07-06 18:13:00,329 Church St, New York City,NY,10001 +235738,Apple Airpods Headphones,1,150.0,2019-07-15 08:28:00,452 Hickory St, San Francisco,CA,94016 +235739,34in Ultrawide Monitor,1,379.99,2019-07-16 12:02:00,284 Meadow St, San Francisco,CA,94016 +235740,USB-C Charging Cable,1,11.95,2019-07-13 16:15:00,199 River St, Atlanta,GA,30301 +235741,AAA Batteries (4-pack),1,2.99,2019-07-01 09:27:00,887 Elm St, Boston,MA,02215 +235742,Bose SoundSport Headphones,1,99.99,2019-07-20 12:59:00,508 Johnson St, San Francisco,CA,94016 +235743,Wired Headphones,1,11.99,2019-07-22 12:37:00,885 Willow St, San Francisco,CA,94016 +235744,USB-C Charging Cable,1,11.95,2019-07-28 11:11:00,339 4th St, San Francisco,CA,94016 +235745,Apple Airpods Headphones,1,150.0,2019-07-13 10:08:00,845 River St, San Francisco,CA,94016 +235746,Macbook Pro Laptop,1,1700.0,2019-07-24 07:42:00,135 Main St, Atlanta,GA,30301 +235747,Apple Airpods Headphones,1,150.0,2019-07-06 22:09:00,201 4th St, Boston,MA,02215 +235748,34in Ultrawide Monitor,1,379.99,2019-07-23 21:56:00,685 Elm St, Atlanta,GA,30301 +235749,Macbook Pro Laptop,1,1700.0,2019-07-04 18:49:00,574 West St, New York City,NY,10001 +235750,AA Batteries (4-pack),1,3.84,2019-07-14 20:17:00,455 Pine St, Seattle,WA,98101 +235751,Lightning Charging Cable,1,14.95,2019-07-04 21:59:00,889 2nd St, Los Angeles,CA,90001 +235752,LG Washing Machine,1,600.0,2019-07-03 11:55:00,531 Spruce St, Boston,MA,02215 +235753,Lightning Charging Cable,1,14.95,2019-07-04 15:12:00,761 Lake St, Portland,OR,97035 +235754,USB-C Charging Cable,1,11.95,2019-07-10 12:35:00,439 Madison St, Boston,MA,02215 +235755,Google Phone,1,600.0,2019-07-10 03:41:00,500 10th St, New York City,NY,10001 +235756,Lightning Charging Cable,1,14.95,2019-07-11 11:03:00,412 13th St, Los Angeles,CA,90001 +235757,Wired Headphones,1,11.99,2019-07-10 12:53:00,171 Church St, Seattle,WA,98101 +235758,AA Batteries (4-pack),1,3.84,2019-07-03 13:16:00,220 Hickory St, Boston,MA,02215 +235759,Wired Headphones,1,11.99,2019-07-17 15:46:00,160 Highland St, Austin,TX,73301 +235760,AAA Batteries (4-pack),1,2.99,2019-07-05 10:17:00,261 Dogwood St, Austin,TX,73301 +235761,AAA Batteries (4-pack),2,2.99,2019-07-22 15:40:00,167 Church St, New York City,NY,10001 +235762,20in Monitor,1,109.99,2019-07-02 20:27:00,740 West St, Austin,TX,73301 +235763,Wired Headphones,1,11.99,2019-07-25 19:15:00,670 Cherry St, Dallas,TX,75001 +235764,Macbook Pro Laptop,1,1700.0,2019-07-16 10:50:00,725 Hickory St, New York City,NY,10001 +235765,Wired Headphones,1,11.99,2019-07-05 16:12:00,233 11th St, Boston,MA,02215 +235766,Flatscreen TV,1,300.0,2019-07-13 12:54:00,716 Dogwood St, San Francisco,CA,94016 +235767,Lightning Charging Cable,1,14.95,2019-07-29 21:39:00,56 North St, Portland,OR,97035 +235768,AAA Batteries (4-pack),2,2.99,2019-07-11 15:46:00,354 6th St, Atlanta,GA,30301 +235769,AAA Batteries (4-pack),1,2.99,2019-07-04 14:46:00,783 Adams St, Boston,MA,02215 +235770,27in FHD Monitor,1,149.99,2019-07-04 10:00:00,251 11th St, Atlanta,GA,30301 +235771,AA Batteries (4-pack),1,3.84,2019-07-25 12:49:00,17 13th St, Boston,MA,02215 +235772,Bose SoundSport Headphones,1,99.99,2019-07-15 16:03:00,127 Church St, Seattle,WA,98101 +235773,Lightning Charging Cable,1,14.95,2019-07-31 18:06:00,393 7th St, San Francisco,CA,94016 +235773,USB-C Charging Cable,2,11.95,2019-07-31 18:06:00,393 7th St, San Francisco,CA,94016 +235774,Wired Headphones,1,11.99,2019-07-02 13:15:00,238 5th St, San Francisco,CA,94016 +235775,Wired Headphones,1,11.99,2019-07-19 16:28:00,295 Meadow St, Boston,MA,02215 +235776,LG Washing Machine,1,600.0,2019-07-23 23:44:00,135 River St, San Francisco,CA,94016 +235777,USB-C Charging Cable,1,11.95,2019-07-23 11:09:00,246 13th St, Boston,MA,02215 +235778,AAA Batteries (4-pack),1,2.99,2019-07-11 19:52:00,282 8th St, Los Angeles,CA,90001 +235779,AA Batteries (4-pack),1,3.84,2019-07-24 17:17:00,621 Cedar St, San Francisco,CA,94016 +235780,AAA Batteries (4-pack),1,2.99,2019-07-30 23:19:00,710 Main St, New York City,NY,10001 +235781,USB-C Charging Cable,1,11.95,2019-07-25 23:12:00,16 Adams St, Boston,MA,02215 +235782,27in FHD Monitor,1,149.99,2019-07-06 11:23:00,100 Elm St, Atlanta,GA,30301 +235782,Apple Airpods Headphones,1,150.0,2019-07-06 11:23:00,100 Elm St, Atlanta,GA,30301 +235783,ThinkPad Laptop,1,999.99,2019-07-15 15:07:00,484 Park St, San Francisco,CA,94016 +235784,USB-C Charging Cable,1,11.95,2019-07-20 08:22:00,615 Lake St, Boston,MA,02215 +235785,Apple Airpods Headphones,1,150.0,2019-07-08 18:26:00,989 Willow St, Boston,MA,02215 +235786,Flatscreen TV,1,300.0,2019-07-17 11:24:00,617 11th St, Seattle,WA,98101 +235787,USB-C Charging Cable,1,11.95,2019-07-03 11:19:00,305 Ridge St, Boston,MA,02215 +235788,34in Ultrawide Monitor,1,379.99,2019-07-25 19:01:00,129 River St, San Francisco,CA,94016 +235789,Apple Airpods Headphones,1,150.0,2019-07-01 14:28:00,860 5th St, Austin,TX,73301 +235790,34in Ultrawide Monitor,1,379.99,2019-07-24 10:24:00,815 1st St, Seattle,WA,98101 +235791,Macbook Pro Laptop,1,1700.0,2019-07-21 08:45:00,511 North St, San Francisco,CA,94016 +235792,Google Phone,1,600.0,2019-07-01 14:19:00,735 Forest St, Austin,TX,73301 +235793,Lightning Charging Cable,1,14.95,2019-07-26 09:38:00,564 12th St, San Francisco,CA,94016 +235794,AAA Batteries (4-pack),1,2.99,2019-07-08 19:14:00,42 Church St, Seattle,WA,98101 +235795,Lightning Charging Cable,1,14.95,2019-07-02 12:11:00,315 Hill St, Boston,MA,02215 +235796,Flatscreen TV,1,300.0,2019-07-19 23:26:00,318 Church St, Los Angeles,CA,90001 +235797,27in 4K Gaming Monitor,1,389.99,2019-07-11 17:05:00,121 Jefferson St, Dallas,TX,75001 +235798,Google Phone,1,600.0,2019-07-22 16:58:00,205 Dogwood St, Los Angeles,CA,90001 +235798,USB-C Charging Cable,1,11.95,2019-07-22 16:58:00,205 Dogwood St, Los Angeles,CA,90001 +235798,Wired Headphones,1,11.99,2019-07-22 16:58:00,205 Dogwood St, Los Angeles,CA,90001 +235798,27in FHD Monitor,1,149.99,2019-07-22 16:58:00,205 Dogwood St, Los Angeles,CA,90001 +235799,Bose SoundSport Headphones,1,99.99,2019-07-16 13:04:00,435 Maple St, Atlanta,GA,30301 +235800,AA Batteries (4-pack),1,3.84,2019-07-05 08:43:00,555 Cherry St, Seattle,WA,98101 +235801,Bose SoundSport Headphones,1,99.99,2019-07-27 16:06:00,750 4th St, Boston,MA,02215 +235802,Wired Headphones,2,11.99,2019-07-06 10:15:00,85 Center St, Seattle,WA,98101 +235803,Wired Headphones,1,11.99,2019-07-30 18:36:00,296 Pine St, New York City,NY,10001 +235804,USB-C Charging Cable,2,11.95,2019-07-27 12:15:00,26 Lincoln St, Boston,MA,02215 +235805,Wired Headphones,2,11.99,2019-07-18 19:10:00,968 Lake St, San Francisco,CA,94016 +235806,USB-C Charging Cable,1,11.95,2019-07-26 21:45:00,848 Sunset St, San Francisco,CA,94016 +235807,AA Batteries (4-pack),2,3.84,2019-07-26 13:43:00,948 5th St, New York City,NY,10001 +235808,Bose SoundSport Headphones,1,99.99,2019-07-30 12:16:00,89 Meadow St, San Francisco,CA,94016 +235809,ThinkPad Laptop,1,999.99,2019-07-10 17:04:00,831 Cherry St, San Francisco,CA,94016 +235810,Lightning Charging Cable,1,14.95,2019-07-11 16:48:00,917 Johnson St, Boston,MA,02215 +235811,Google Phone,1,600.0,2019-07-15 10:23:00,50 Johnson St, San Francisco,CA,94016 +235812,AAA Batteries (4-pack),2,2.99,2019-07-16 20:49:00,46 Willow St, Boston,MA,02215 +235813,Vareebadd Phone,1,400.0,2019-07-18 19:26:00,549 Willow St, New York City,NY,10001 +235813,USB-C Charging Cable,1,11.95,2019-07-18 19:26:00,549 Willow St, New York City,NY,10001 +235814,27in 4K Gaming Monitor,1,389.99,2019-07-30 13:38:00,581 4th St, Seattle,WA,98101 +235815,iPhone,1,700.0,2019-07-16 14:04:00,135 Lake St, Seattle,WA,98101 +235816,iPhone,1,700.0,2019-07-13 17:05:00,726 12th St, Los Angeles,CA,90001 +235817,USB-C Charging Cable,1,11.95,2019-07-20 14:26:00,527 Forest St, Los Angeles,CA,90001 +235818,AAA Batteries (4-pack),1,2.99,2019-07-23 08:52:00,549 2nd St, San Francisco,CA,94016 +235819,Wired Headphones,1,11.99,2019-07-26 09:33:00,154 10th St, San Francisco,CA,94016 +235820,Apple Airpods Headphones,1,150.0,2019-07-28 02:07:00,3 Cedar St, Seattle,WA,98101 +235821,Wired Headphones,1,11.99,2019-07-26 13:26:00,685 8th St, San Francisco,CA,94016 +235822,Lightning Charging Cable,1,14.95,2019-07-25 23:24:00,221 6th St, San Francisco,CA,94016 +235823,Lightning Charging Cable,1,14.95,2019-07-25 20:41:00,244 2nd St, Dallas,TX,75001 +235824,USB-C Charging Cable,1,11.95,2019-07-01 13:50:00,780 Cherry St, Portland,OR,97035 +235825,USB-C Charging Cable,1,11.95,2019-07-14 18:10:00,254 Forest St, Los Angeles,CA,90001 +235826,Bose SoundSport Headphones,1,99.99,2019-07-07 01:46:00,119 Maple St, Dallas,TX,75001 +235827,AA Batteries (4-pack),2,3.84,2019-07-02 20:10:00,477 Madison St, Los Angeles,CA,90001 +235828,Bose SoundSport Headphones,1,99.99,2019-07-26 22:01:00,323 Walnut St, Los Angeles,CA,90001 +235829,Lightning Charging Cable,1,14.95,2019-07-29 21:24:00,485 1st St, Atlanta,GA,30301 +235830,Lightning Charging Cable,1,14.95,2019-07-02 20:17:00,778 4th St, Austin,TX,73301 +235831,AAA Batteries (4-pack),1,2.99,2019-07-05 21:32:00,943 Meadow St, Dallas,TX,75001 +235832,ThinkPad Laptop,1,999.99,2019-07-17 19:19:00,732 Maple St, Dallas,TX,75001 +235833,Macbook Pro Laptop,1,1700.0,2019-07-31 15:06:00,778 Hill St, Seattle,WA,98101 +235834,AA Batteries (4-pack),1,3.84,2019-07-15 16:11:00,981 Adams St, Austin,TX,73301 +235835,34in Ultrawide Monitor,1,379.99,2019-07-03 12:42:00,136 Church St, Portland,OR,97035 +235836,AAA Batteries (4-pack),5,2.99,2019-07-17 15:15:00,814 7th St, San Francisco,CA,94016 +235837,USB-C Charging Cable,1,11.95,2019-07-03 10:48:00,91 Cherry St, Los Angeles,CA,90001 +235838,AAA Batteries (4-pack),1,2.99,2019-07-23 18:36:00,129 Cherry St, Portland,OR,97035 +235839,AAA Batteries (4-pack),1,2.99,2019-07-28 15:19:00,148 Johnson St, Austin,TX,73301 +235840,iPhone,1,700.0,2019-07-28 10:33:00,303 Forest St, Portland,OR,97035 +235841,AA Batteries (4-pack),1,3.84,2019-07-10 15:33:00,524 Church St, San Francisco,CA,94016 +235842,Lightning Charging Cable,1,14.95,2019-07-13 19:51:00,972 Elm St, Atlanta,GA,30301 +235843,AAA Batteries (4-pack),2,2.99,2019-07-02 13:05:00,848 Johnson St, San Francisco,CA,94016 +235844,Macbook Pro Laptop,1,1700.0,2019-07-21 11:50:00,88 Chestnut St, San Francisco,CA,94016 +235845,AAA Batteries (4-pack),1,2.99,2019-07-22 15:58:00,700 6th St, Atlanta,GA,30301 +235846,Apple Airpods Headphones,1,150.0,2019-07-14 19:45:00,956 Washington St, San Francisco,CA,94016 +235847,Bose SoundSport Headphones,1,99.99,2019-07-30 00:37:00,642 Madison St, Seattle,WA,98101 +235848,Macbook Pro Laptop,1,1700.0,2019-07-21 23:20:00,360 Willow St, Atlanta,GA,30301 +235849,AAA Batteries (4-pack),1,2.99,2019-07-11 14:03:00,440 1st St, Seattle,WA,98101 +235850,AAA Batteries (4-pack),2,2.99,2019-07-26 20:16:00,649 Highland St, Los Angeles,CA,90001 +235851,AA Batteries (4-pack),1,3.84,2019-07-19 12:26:00,582 Center St, Dallas,TX,75001 +235852,AA Batteries (4-pack),1,3.84,2019-07-14 16:08:00,505 Lake St, San Francisco,CA,94016 +235853,AA Batteries (4-pack),1,3.84,2019-07-26 07:03:00,571 Lake St, New York City,NY,10001 +235854,Flatscreen TV,1,300.0,2019-07-13 15:58:00,722 1st St, New York City,NY,10001 +235855,Apple Airpods Headphones,1,150.0,2019-07-18 17:18:00,88 Sunset St, Dallas,TX,75001 +235856,Lightning Charging Cable,1,14.95,2019-07-19 18:02:00,136 Cedar St, San Francisco,CA,94016 +235857,Lightning Charging Cable,1,14.95,2019-07-31 08:56:00,193 West St, Atlanta,GA,30301 +235858,Lightning Charging Cable,1,14.95,2019-07-03 14:15:00,718 2nd St, New York City,NY,10001 +235859,AAA Batteries (4-pack),2,2.99,2019-07-23 17:19:00,211 4th St, San Francisco,CA,94016 +235860,27in FHD Monitor,1,149.99,2019-07-14 18:58:00,292 South St, San Francisco,CA,94016 +235861,Flatscreen TV,1,300.0,2019-07-25 18:09:00,262 Wilson St, Seattle,WA,98101 +235862,Google Phone,1,600.0,2019-07-05 15:54:00,136 Park St, Boston,MA,02215 +235863,USB-C Charging Cable,1,11.95,2019-07-22 22:28:00,856 13th St, Los Angeles,CA,90001 +235864,ThinkPad Laptop,1,999.99,2019-07-15 18:51:00,395 Madison St, San Francisco,CA,94016 +235865,Lightning Charging Cable,1,14.95,2019-07-06 15:04:00,799 Dogwood St, San Francisco,CA,94016 +235866,AA Batteries (4-pack),1,3.84,2019-07-17 10:10:00,333 Lincoln St, San Francisco,CA,94016 +235867,Macbook Pro Laptop,1,1700.0,2019-07-25 09:54:00,441 River St, Los Angeles,CA,90001 +235868,Google Phone,1,600.0,2019-07-08 16:31:00,948 2nd St, Atlanta,GA,30301 +235869,AA Batteries (4-pack),3,3.84,2019-07-26 09:39:00,873 Church St, Dallas,TX,75001 +235870,AAA Batteries (4-pack),1,2.99,2019-07-12 11:18:00,727 12th St, Atlanta,GA,30301 +235871,Apple Airpods Headphones,1,150.0,2019-07-14 12:02:00,821 Park St, Seattle,WA,98101 +235872,USB-C Charging Cable,1,11.95,2019-07-17 08:59:00,383 Dogwood St, San Francisco,CA,94016 +235873,LG Dryer,1,600.0,2019-07-03 23:02:00,416 7th St, Austin,TX,73301 +235874,AAA Batteries (4-pack),3,2.99,2019-07-29 17:22:00,251 Johnson St, Boston,MA,02215 +235874,USB-C Charging Cable,1,11.95,2019-07-29 17:22:00,251 Johnson St, Boston,MA,02215 +235875,AA Batteries (4-pack),2,3.84,2019-07-05 12:36:00,243 Church St, Boston,MA,02215 +235876,Flatscreen TV,1,300.0,2019-07-23 20:44:00,124 Willow St, Austin,TX,73301 +235877,Apple Airpods Headphones,1,150.0,2019-07-11 16:33:00,723 Cedar St, San Francisco,CA,94016 +235878,AA Batteries (4-pack),1,3.84,2019-07-31 13:10:00,851 River St, Portland,OR,97035 +235879,Wired Headphones,1,11.99,2019-07-01 18:52:00,787 5th St, New York City,NY,10001 +235880,Wired Headphones,1,11.99,2019-07-27 12:45:00,941 Spruce St, Boston,MA,02215 +235881,AA Batteries (4-pack),1,3.84,2019-07-01 07:46:00,2 Meadow St, Dallas,TX,75001 +235882,AAA Batteries (4-pack),2,2.99,2019-07-04 16:31:00,810 11th St, New York City,NY,10001 +235883,AAA Batteries (4-pack),2,2.99,2019-07-19 00:01:00,147 Cedar St, Austin,TX,73301 +235884,Apple Airpods Headphones,1,150.0,2019-07-08 20:30:00,657 Forest St, Seattle,WA,98101 +235885,Apple Airpods Headphones,1,150.0,2019-07-10 19:29:00,713 14th St, San Francisco,CA,94016 +235886,AA Batteries (4-pack),1,3.84,2019-07-18 23:35:00,81 Wilson St, San Francisco,CA,94016 +235887,Apple Airpods Headphones,1,150.0,2019-07-31 10:59:00,17 Pine St, Los Angeles,CA,90001 +235888,Lightning Charging Cable,1,14.95,2019-07-06 15:52:00,76 13th St, Dallas,TX,75001 +235889,Google Phone,1,600.0,2019-07-29 19:11:00,235 Sunset St, Atlanta,GA,30301 +235890,Bose SoundSport Headphones,1,99.99,2019-07-08 06:33:00,963 11th St, Los Angeles,CA,90001 +235891,AAA Batteries (4-pack),1,2.99,2019-07-15 18:04:00,555 Hill St, Dallas,TX,75001 +235892,34in Ultrawide Monitor,1,379.99,2019-07-19 20:02:00,668 Elm St, San Francisco,CA,94016 +235893,Bose SoundSport Headphones,1,99.99,2019-07-22 21:28:00,407 Hickory St, New York City,NY,10001 +235894,AAA Batteries (4-pack),2,2.99,2019-07-21 14:16:00,161 West St, New York City,NY,10001 +235895,Apple Airpods Headphones,1,150.0,2019-07-12 09:36:00,800 Madison St, San Francisco,CA,94016 +235896,Apple Airpods Headphones,1,150.0,2019-07-04 09:50:00,89 Spruce St, Portland,OR,97035 +235897,Wired Headphones,1,11.99,2019-07-04 13:03:00,692 Dogwood St, New York City,NY,10001 +235898,Bose SoundSport Headphones,1,99.99,2019-07-16 19:32:00,986 Meadow St, Los Angeles,CA,90001 +235899,Lightning Charging Cable,1,14.95,2019-07-23 23:05:00,492 Adams St, San Francisco,CA,94016 +235900,Bose SoundSport Headphones,1,99.99,2019-07-01 22:00:00,286 West St, Boston,MA,02215 +235901,ThinkPad Laptop,1,999.99,2019-07-23 10:38:00,399 Willow St, Seattle,WA,98101 +235902,Wired Headphones,1,11.99,2019-07-11 09:27:00,994 Pine St, Dallas,TX,75001 +235903,AA Batteries (4-pack),1,3.84,2019-07-21 11:51:00,192 Jefferson St, San Francisco,CA,94016 +235904,Lightning Charging Cable,1,14.95,2019-07-09 09:53:00,897 9th St, Seattle,WA,98101 +235905,Google Phone,1,600.0,2019-07-17 16:21:00,630 Center St, Boston,MA,02215 +235905,USB-C Charging Cable,1,11.95,2019-07-17 16:21:00,630 Center St, Boston,MA,02215 +235906,Wired Headphones,1,11.99,2019-07-06 20:02:00,774 Forest St, San Francisco,CA,94016 +235907,AAA Batteries (4-pack),1,2.99,2019-07-05 10:59:00,183 Maple St, Atlanta,GA,30301 +235908,AAA Batteries (4-pack),1,2.99,2019-07-06 23:22:00,942 Lincoln St, New York City,NY,10001 +235909,AA Batteries (4-pack),1,3.84,2019-07-27 22:01:00,218 Church St, Austin,TX,73301 +235910,Bose SoundSport Headphones,1,99.99,2019-07-14 17:18:00,170 Pine St, Atlanta,GA,30301 +235911,ThinkPad Laptop,1,999.99,2019-07-11 16:02:00,617 Jefferson St, Los Angeles,CA,90001 +235912,Wired Headphones,1,11.99,2019-07-17 18:53:00,698 Forest St, San Francisco,CA,94016 +235913,AAA Batteries (4-pack),1,2.99,2019-07-10 21:18:00,894 River St, New York City,NY,10001 +235914,AA Batteries (4-pack),1,3.84,2019-07-08 08:52:00,511 South St, San Francisco,CA,94016 +235915,USB-C Charging Cable,1,11.95,2019-07-19 10:02:00,866 5th St, San Francisco,CA,94016 +235916,USB-C Charging Cable,1,11.95,2019-07-18 18:42:00,3 Highland St, San Francisco,CA,94016 +235917,LG Washing Machine,1,600.0,2019-07-11 20:05:00,59 12th St, New York City,NY,10001 +235918,AA Batteries (4-pack),1,3.84,2019-07-12 11:36:00,229 Johnson St, Los Angeles,CA,90001 +235919,Apple Airpods Headphones,1,150.0,2019-07-25 08:29:00,274 Madison St, Los Angeles,CA,90001 +235920,Bose SoundSport Headphones,1,99.99,2019-07-23 15:03:00,447 River St, San Francisco,CA,94016 +235921,iPhone,1,700.0,2019-07-27 14:32:00,620 Spruce St, Boston,MA,02215 +235922,AAA Batteries (4-pack),2,2.99,2019-07-06 13:48:00,330 Meadow St, San Francisco,CA,94016 +235923,LG Washing Machine,1,600.0,2019-07-23 16:12:00,704 Willow St, Boston,MA,02215 +235923,Lightning Charging Cable,2,14.95,2019-07-23 16:12:00,704 Willow St, Boston,MA,02215 +235924,Bose SoundSport Headphones,1,99.99,2019-07-04 21:31:00,242 Wilson St, New York City,NY,10001 +235925,iPhone,1,700.0,2019-07-16 10:53:00,605 Madison St, Los Angeles,CA,90001 +235926,Lightning Charging Cable,1,14.95,2019-07-05 20:51:00,778 Washington St, San Francisco,CA,94016 +235927,Bose SoundSport Headphones,1,99.99,2019-07-07 21:20:00,566 Willow St, Seattle,WA,98101 +235928,Google Phone,1,600.0,2019-07-11 14:43:00,882 Park St, San Francisco,CA,94016 +235928,USB-C Charging Cable,1,11.95,2019-07-11 14:43:00,882 Park St, San Francisco,CA,94016 +235929,USB-C Charging Cable,2,11.95,2019-07-18 11:52:00,196 South St, San Francisco,CA,94016 +235930,AA Batteries (4-pack),1,3.84,2019-07-15 10:48:00,776 Ridge St, San Francisco,CA,94016 +235931,Macbook Pro Laptop,1,1700.0,2019-07-20 14:35:00,6 West St, Portland,OR,97035 +235932,Apple Airpods Headphones,1,150.0,2019-07-23 16:35:00,372 Lake St, Austin,TX,73301 +235933,AA Batteries (4-pack),1,3.84,2019-07-22 14:55:00,422 9th St, Boston,MA,02215 +235934,AA Batteries (4-pack),1,3.84,2019-07-17 18:02:00,813 Ridge St, New York City,NY,10001 +235935,AAA Batteries (4-pack),1,2.99,2019-07-29 08:59:00,133 Pine St, Portland,OR,97035 +235936,AAA Batteries (4-pack),1,2.99,2019-07-17 12:43:00,6 Lakeview St, Boston,MA,02215 +235937,Flatscreen TV,1,300.0,2019-07-07 20:01:00,967 Jackson St, Los Angeles,CA,90001 +235938,Bose SoundSport Headphones,1,99.99,2019-07-07 22:34:00,495 7th St, Portland,OR,97035 +235939,AAA Batteries (4-pack),1,2.99,2019-07-28 07:55:00,295 5th St, Boston,MA,02215 +235940,AA Batteries (4-pack),1,3.84,2019-07-31 19:54:00,15 4th St, San Francisco,CA,94016 +235941,iPhone,1,700.0,2019-07-18 19:29:00,878 1st St, New York City,NY,10001 +235942,AA Batteries (4-pack),1,3.84,2019-07-16 16:35:00,975 4th St, Los Angeles,CA,90001 +235943,Apple Airpods Headphones,1,150.0,2019-07-26 15:04:00,491 5th St, Boston,MA,02215 +235944,Lightning Charging Cable,1,14.95,2019-07-20 11:43:00,593 Meadow St, San Francisco,CA,94016 +235945,27in 4K Gaming Monitor,1,389.99,2019-07-25 11:02:00,242 Madison St, New York City,NY,10001 +235946,AAA Batteries (4-pack),1,2.99,2019-07-04 01:52:00,861 Maple St, San Francisco,CA,94016 +235947,Lightning Charging Cable,1,14.95,2019-07-18 17:51:00,647 Jefferson St, New York City,NY,10001 +235948,Apple Airpods Headphones,1,150.0,2019-07-26 16:24:00,924 Park St, Los Angeles,CA,90001 +235949,USB-C Charging Cable,1,11.95,2019-07-01 22:13:00,154 Church St, San Francisco,CA,94016 +235950,USB-C Charging Cable,1,11.95,2019-07-05 18:42:00,965 Center St, Boston,MA,02215 +235951,Macbook Pro Laptop,1,1700.0,2019-07-19 23:03:00,839 Ridge St, Dallas,TX,75001 +235952,Lightning Charging Cable,1,14.95,2019-07-27 22:45:00,50 12th St, San Francisco,CA,94016 +235953,20in Monitor,1,109.99,2019-07-15 21:17:00,914 River St, San Francisco,CA,94016 +235954,Lightning Charging Cable,1,14.95,2019-07-08 14:58:00,271 6th St, Los Angeles,CA,90001 +235955,Macbook Pro Laptop,1,1700.0,2019-07-20 14:09:00,560 Cherry St, San Francisco,CA,94016 +235956,Apple Airpods Headphones,1,150.0,2019-07-22 08:14:00,864 Jefferson St, Portland,OR,97035 +235957,Flatscreen TV,1,300.0,2019-07-29 10:22:00,857 Church St, San Francisco,CA,94016 +235958,27in FHD Monitor,1,149.99,2019-07-20 16:05:00,444 9th St, San Francisco,CA,94016 +235959,Lightning Charging Cable,1,14.95,2019-07-15 09:46:00,752 Elm St, Los Angeles,CA,90001 +235960,27in 4K Gaming Monitor,1,389.99,2019-07-22 03:54:00,976 Lincoln St, Boston,MA,02215 +235961,ThinkPad Laptop,1,999.99,2019-07-28 19:47:00,955 Church St, Atlanta,GA,30301 +235962,Lightning Charging Cable,1,14.95,2019-07-06 14:42:00,376 Center St, Los Angeles,CA,90001 +235963,AA Batteries (4-pack),1,3.84,2019-07-21 23:54:00,509 Madison St, San Francisco,CA,94016 +235964,Vareebadd Phone,1,400.0,2019-07-18 20:21:00,436 12th St, Dallas,TX,75001 +235965,Wired Headphones,2,11.99,2019-07-14 20:52:00,79 7th St, New York City,NY,10001 +235966,Wired Headphones,1,11.99,2019-07-09 21:18:00,455 North St, Boston,MA,02215 +235967,Macbook Pro Laptop,1,1700.0,2019-07-10 17:23:00,574 Lake St, Boston,MA,02215 +235968,Google Phone,1,600.0,2019-07-25 20:48:00,421 14th St, San Francisco,CA,94016 +235969,USB-C Charging Cable,1,11.95,2019-07-29 13:47:00,415 Forest St, Los Angeles,CA,90001 +235970,Lightning Charging Cable,1,14.95,2019-07-21 16:51:00,544 Cedar St, Boston,MA,02215 +235971,AA Batteries (4-pack),1,3.84,2019-07-30 20:32:00,273 Hill St, Atlanta,GA,30301 +235972,Lightning Charging Cable,1,14.95,2019-07-21 13:50:00,911 Jefferson St, Los Angeles,CA,90001 +235973,ThinkPad Laptop,1,999.99,2019-07-06 15:14:00,215 Spruce St, Portland,OR,97035 +235974,27in 4K Gaming Monitor,1,389.99,2019-07-27 11:06:00,243 Jackson St, Portland,ME,04101 +235975,Flatscreen TV,1,300.0,2019-07-05 16:59:00,54 West St, San Francisco,CA,94016 +235976,Apple Airpods Headphones,1,150.0,2019-07-24 14:11:00,683 Center St, Los Angeles,CA,90001 +235977,Wired Headphones,1,11.99,2019-07-29 19:15:00,722 Lakeview St, San Francisco,CA,94016 +235978,AA Batteries (4-pack),1,3.84,2019-07-17 10:35:00,276 West St, Boston,MA,02215 +235979,Lightning Charging Cable,1,14.95,2019-07-26 14:39:00,25 5th St, San Francisco,CA,94016 +235980,Lightning Charging Cable,1,14.95,2019-07-04 15:43:00,740 Pine St, Atlanta,GA,30301 +235981,AA Batteries (4-pack),1,3.84,2019-07-22 13:00:00,222 Spruce St, Dallas,TX,75001 +235982,Flatscreen TV,1,300.0,2019-07-15 00:05:00,514 2nd St, New York City,NY,10001 +235983,Wired Headphones,1,11.99,2019-07-10 18:16:00,563 Highland St, Austin,TX,73301 +235984,Bose SoundSport Headphones,1,99.99,2019-07-16 10:46:00,70 Ridge St, New York City,NY,10001 +235985,Macbook Pro Laptop,1,1700.0,2019-07-27 13:22:00,709 Maple St, Seattle,WA,98101 +235986,AA Batteries (4-pack),2,3.84,2019-07-26 10:08:00,721 Washington St, San Francisco,CA,94016 +235987,AAA Batteries (4-pack),3,2.99,2019-07-08 21:02:00,2 West St, Seattle,WA,98101 +235988,Bose SoundSport Headphones,1,99.99,2019-07-27 22:00:00,748 Wilson St, San Francisco,CA,94016 +235989,AAA Batteries (4-pack),1,2.99,2019-07-29 11:05:00,211 Wilson St, Atlanta,GA,30301 +235990,USB-C Charging Cable,1,11.95,2019-07-15 20:03:00,257 5th St, Portland,OR,97035 +235991,Apple Airpods Headphones,1,150.0,2019-07-07 17:25:00,346 River St, Los Angeles,CA,90001 +235992,Lightning Charging Cable,1,14.95,2019-07-26 12:39:00,970 Sunset St, Los Angeles,CA,90001 +235993,USB-C Charging Cable,1,11.95,2019-07-17 08:34:00,179 Ridge St, San Francisco,CA,94016 +235994,USB-C Charging Cable,1,11.95,2019-07-10 18:29:00,590 Elm St, New York City,NY,10001 +235995,Apple Airpods Headphones,1,150.0,2019-07-05 16:26:00,327 11th St, Austin,TX,73301 +235996,27in 4K Gaming Monitor,1,389.99,2019-07-29 11:37:00,461 North St, San Francisco,CA,94016 +235997,34in Ultrawide Monitor,1,379.99,2019-07-06 07:12:00,746 Center St, Portland,OR,97035 +235998,Wired Headphones,1,11.99,2019-07-12 17:02:00,215 7th St, New York City,NY,10001 +235999,USB-C Charging Cable,1,11.95,2019-07-09 16:22:00,391 Madison St, Seattle,WA,98101 +236000,Wired Headphones,1,11.99,2019-07-30 21:20:00,935 Highland St, Atlanta,GA,30301 +236001,Wired Headphones,1,11.99,2019-07-23 11:39:00,155 Jefferson St, Boston,MA,02215 +236002,ThinkPad Laptop,1,999.99,2019-07-25 09:01:00,478 West St, Portland,OR,97035 +236003,Apple Airpods Headphones,1,150.0,2019-07-31 11:12:00,150 Elm St, San Francisco,CA,94016 +236004,Wired Headphones,1,11.99,2019-07-14 20:59:00,342 Maple St, Atlanta,GA,30301 +236005,AA Batteries (4-pack),1,3.84,2019-07-12 22:24:00,22 5th St, New York City,NY,10001 +236006,Lightning Charging Cable,1,14.95,2019-07-19 10:41:00,932 Jackson St, Austin,TX,73301 +236007,34in Ultrawide Monitor,1,379.99,2019-07-05 11:37:00,401 Washington St, Atlanta,GA,30301 +236008,Bose SoundSport Headphones,1,99.99,2019-07-18 18:00:00,261 Spruce St, Los Angeles,CA,90001 +236009,AA Batteries (4-pack),2,3.84,2019-07-24 13:04:00,63 1st St, New York City,NY,10001 +236010,AAA Batteries (4-pack),1,2.99,2019-07-02 11:03:00,911 Maple St, San Francisco,CA,94016 +236011,Bose SoundSport Headphones,1,99.99,2019-07-06 14:58:00,22 Elm St, Los Angeles,CA,90001 +236012,iPhone,1,700.0,2019-07-03 20:29:00,76 7th St, Dallas,TX,75001 +236013,AA Batteries (4-pack),1,3.84,2019-07-02 00:02:00,272 Lincoln St, San Francisco,CA,94016 +236014,Bose SoundSport Headphones,1,99.99,2019-07-23 17:19:00,451 9th St, Los Angeles,CA,90001 +236015,34in Ultrawide Monitor,1,379.99,2019-07-04 14:05:00,802 Madison St, Portland,OR,97035 +236016,Wired Headphones,2,11.99,2019-07-05 08:10:00,743 4th St, San Francisco,CA,94016 +236017,Flatscreen TV,1,300.0,2019-07-15 20:15:00,865 South St, Los Angeles,CA,90001 +236018,AA Batteries (4-pack),1,3.84,2019-07-05 21:03:00,236 2nd St, Los Angeles,CA,90001 +236019,AAA Batteries (4-pack),1,2.99,2019-07-21 00:25:00,188 Meadow St, Atlanta,GA,30301 +236020,AAA Batteries (4-pack),1,2.99,2019-07-12 21:14:00,184 Dogwood St, Los Angeles,CA,90001 +236021,Apple Airpods Headphones,1,150.0,2019-07-05 11:39:00,345 Cherry St, New York City,NY,10001 +236022,Flatscreen TV,1,300.0,2019-07-01 08:22:00,831 Ridge St, Atlanta,GA,30301 +236023,Lightning Charging Cable,1,14.95,2019-07-09 09:33:00,232 Lakeview St, Portland,OR,97035 +236024,AAA Batteries (4-pack),2,2.99,2019-07-01 15:29:00,833 South St, Boston,MA,02215 +236025,Bose SoundSport Headphones,1,99.99,2019-07-07 15:34:00,62 West St, Los Angeles,CA,90001 +236026,AA Batteries (4-pack),1,3.84,2019-07-03 02:40:00,882 Jefferson St, San Francisco,CA,94016 +236027,AAA Batteries (4-pack),1,2.99,2019-07-26 08:24:00,943 Walnut St, Los Angeles,CA,90001 +236028,iPhone,1,700.0,2019-07-04 00:56:00,711 Sunset St, New York City,NY,10001 +236028,Bose SoundSport Headphones,1,99.99,2019-07-04 00:56:00,711 Sunset St, New York City,NY,10001 +236029,27in FHD Monitor,1,149.99,2019-07-14 15:05:00,713 Main St, Austin,TX,73301 +236030,27in 4K Gaming Monitor,1,389.99,2019-07-07 21:33:00,322 Washington St, Austin,TX,73301 +236031,27in FHD Monitor,1,149.99,2019-07-11 15:39:00,621 Hickory St, Boston,MA,02215 +236032,AAA Batteries (4-pack),2,2.99,2019-07-09 13:20:00,701 Chestnut St, New York City,NY,10001 +236033,AA Batteries (4-pack),1,3.84,2019-07-04 20:57:00,162 Chestnut St, Los Angeles,CA,90001 +236034,AAA Batteries (4-pack),1,2.99,2019-07-03 11:29:00,897 Meadow St, San Francisco,CA,94016 +236035,iPhone,1,700.0,2019-07-30 00:04:00,100 Walnut St, Austin,TX,73301 +236036,Bose SoundSport Headphones,1,99.99,2019-07-02 14:29:00,919 11th St, Dallas,TX,75001 +236037,Lightning Charging Cable,1,14.95,2019-07-25 17:35:00,148 Lakeview St, New York City,NY,10001 +236038,Lightning Charging Cable,1,14.95,2019-07-06 09:07:00,996 Church St, Los Angeles,CA,90001 +236039,AAA Batteries (4-pack),1,2.99,2019-07-31 23:41:00,742 Maple St, Atlanta,GA,30301 +236040,20in Monitor,1,109.99,2019-07-06 13:50:00,133 Church St, San Francisco,CA,94016 +236041,Vareebadd Phone,1,400.0,2019-07-15 23:53:00,55 Main St, Portland,OR,97035 +236042,AA Batteries (4-pack),1,3.84,2019-07-04 19:35:00,236 13th St, Boston,MA,02215 +236043,Apple Airpods Headphones,1,150.0,2019-07-20 11:11:00,442 4th St, Portland,OR,97035 +236044,Apple Airpods Headphones,1,150.0,2019-07-07 07:37:00,82 Chestnut St, San Francisco,CA,94016 +236045,USB-C Charging Cable,1,11.95,2019-07-03 07:43:00,654 12th St, Seattle,WA,98101 +236045,20in Monitor,1,109.99,2019-07-03 07:43:00,654 12th St, Seattle,WA,98101 +236046,Macbook Pro Laptop,1,1700.0,2019-07-30 19:54:00,330 Dogwood St, New York City,NY,10001 +236047,AAA Batteries (4-pack),1,2.99,2019-07-08 17:43:00,364 Jefferson St, Dallas,TX,75001 +236048,iPhone,1,700.0,2019-07-31 21:08:00,89 Main St, San Francisco,CA,94016 +236048,Lightning Charging Cable,1,14.95,2019-07-31 21:08:00,89 Main St, San Francisco,CA,94016 +236049,Bose SoundSport Headphones,1,99.99,2019-07-05 18:09:00,502 Meadow St, Dallas,TX,75001 +236050,Wired Headphones,2,11.99,2019-07-17 13:42:00,14 Sunset St, San Francisco,CA,94016 +236051,27in 4K Gaming Monitor,1,389.99,2019-07-03 19:44:00,286 12th St, Los Angeles,CA,90001 +236052,AA Batteries (4-pack),1,3.84,2019-07-26 08:56:00,571 North St, San Francisco,CA,94016 +236053,LG Dryer,1,600.0,2019-07-07 07:26:00,936 5th St, San Francisco,CA,94016 +236054,Wired Headphones,1,11.99,2019-07-19 19:33:00,500 South St, Los Angeles,CA,90001 +236055,USB-C Charging Cable,1,11.95,2019-07-01 07:20:00,350 Hickory St, Dallas,TX,75001 +236056,Lightning Charging Cable,1,14.95,2019-07-13 21:32:00,910 Willow St, San Francisco,CA,94016 +236057,AAA Batteries (4-pack),1,2.99,2019-07-05 12:05:00,657 North St, San Francisco,CA,94016 +236058,AA Batteries (4-pack),1,3.84,2019-07-19 20:31:00,895 Wilson St, Boston,MA,02215 +236059,AA Batteries (4-pack),1,3.84,2019-07-28 10:29:00,225 Cherry St, New York City,NY,10001 +236060,Lightning Charging Cable,1,14.95,2019-07-24 16:20:00,754 South St, San Francisco,CA,94016 +236061,Apple Airpods Headphones,1,150.0,2019-07-03 22:30:00,382 Spruce St, Dallas,TX,75001 +236062,Lightning Charging Cable,1,14.95,2019-07-01 12:31:00,549 Forest St, Seattle,WA,98101 +236063,Wired Headphones,1,11.99,2019-07-05 15:39:00,725 North St, Seattle,WA,98101 +236064,27in FHD Monitor,1,149.99,2019-07-18 19:16:00,28 Sunset St, New York City,NY,10001 +236065,AAA Batteries (4-pack),4,2.99,2019-07-14 18:07:00,580 10th St, San Francisco,CA,94016 +236066,20in Monitor,1,109.99,2019-07-21 21:47:00,695 Johnson St, Los Angeles,CA,90001 +236067,USB-C Charging Cable,1,11.95,2019-07-03 06:00:00,252 Willow St, San Francisco,CA,94016 +236068,iPhone,1,700.0,2019-07-20 13:29:00,918 Adams St, San Francisco,CA,94016 +236069,20in Monitor,1,109.99,2019-07-23 18:32:00,788 6th St, Los Angeles,CA,90001 +236070,Google Phone,1,600.0,2019-07-27 15:24:00,992 Jackson St, Boston,MA,02215 +236070,Wired Headphones,1,11.99,2019-07-27 15:24:00,992 Jackson St, Boston,MA,02215 +236071,AAA Batteries (4-pack),2,2.99,2019-07-25 00:31:00,988 North St, Los Angeles,CA,90001 +236072,Macbook Pro Laptop,1,1700.0,2019-07-10 16:05:00,759 West St, Austin,TX,73301 +236073,Wired Headphones,1,11.99,2019-07-22 00:07:00,754 Chestnut St, San Francisco,CA,94016 +236074,20in Monitor,1,109.99,2019-07-07 18:30:00,764 Washington St, San Francisco,CA,94016 +236075,AA Batteries (4-pack),1,3.84,2019-07-12 15:24:00,986 Church St, Boston,MA,02215 +236076,Apple Airpods Headphones,1,150.0,2019-07-25 19:49:00,523 Jefferson St, San Francisco,CA,94016 +236077,Wired Headphones,1,11.99,2019-07-22 22:58:00,501 14th St, Los Angeles,CA,90001 +236078,AAA Batteries (4-pack),2,2.99,2019-07-16 21:04:00,380 6th St, Portland,OR,97035 +236079,AA Batteries (4-pack),1,3.84,2019-07-24 20:05:00,808 Pine St, Los Angeles,CA,90001 +236080,Lightning Charging Cable,1,14.95,2019-07-06 12:54:00,583 Jefferson St, Atlanta,GA,30301 +236081,AAA Batteries (4-pack),1,2.99,2019-07-30 13:15:00,313 Park St, San Francisco,CA,94016 +236082,Google Phone,1,600.0,2019-07-17 11:49:00,103 Lincoln St, San Francisco,CA,94016 +236083,AA Batteries (4-pack),1,3.84,2019-07-11 18:42:00,774 Lincoln St, San Francisco,CA,94016 +236084,AA Batteries (4-pack),1,3.84,2019-07-08 23:50:00,834 12th St, New York City,NY,10001 +236085,Wired Headphones,1,11.99,2019-07-06 00:38:00,226 Church St, Boston,MA,02215 +236086,Lightning Charging Cable,1,14.95,2019-07-18 07:30:00,176 Madison St, New York City,NY,10001 +236087,Lightning Charging Cable,1,14.95,2019-07-06 20:50:00,983 Lincoln St, Dallas,TX,75001 +236088,AA Batteries (4-pack),3,3.84,2019-07-12 17:58:00,538 Washington St, San Francisco,CA,94016 +236089,AAA Batteries (4-pack),1,2.99,2019-07-08 19:18:00,903 Cedar St, Los Angeles,CA,90001 +236090,ThinkPad Laptop,1,999.99,2019-07-27 08:46:00,640 13th St, Seattle,WA,98101 +236091,Bose SoundSport Headphones,1,99.99,2019-07-25 14:03:00,712 Cherry St, Dallas,TX,75001 +236092,USB-C Charging Cable,1,11.95,2019-07-20 17:09:00,603 Elm St, New York City,NY,10001 +236093,AAA Batteries (4-pack),1,2.99,2019-07-23 16:25:00,397 4th St, Los Angeles,CA,90001 +236094,AAA Batteries (4-pack),1,2.99,2019-07-31 19:10:00,526 Sunset St, Seattle,WA,98101 +236095,AA Batteries (4-pack),1,3.84,2019-07-26 11:41:00,775 Hickory St, Los Angeles,CA,90001 +236096,Macbook Pro Laptop,1,1700.0,2019-07-10 17:54:00,65 Jefferson St, Atlanta,GA,30301 +236097,USB-C Charging Cable,1,11.95,2019-07-08 12:45:00,371 Elm St, New York City,NY,10001 +236098,AAA Batteries (4-pack),2,2.99,2019-07-23 12:09:00,522 Dogwood St, Atlanta,GA,30301 +236099,Macbook Pro Laptop,1,1700.0,2019-07-15 11:32:00,500 1st St, Los Angeles,CA,90001 +236100,34in Ultrawide Monitor,1,379.99,2019-07-28 22:35:00,815 North St, Boston,MA,02215 +236101,27in 4K Gaming Monitor,1,389.99,2019-07-19 20:13:00,520 South St, New York City,NY,10001 +236102,Lightning Charging Cable,1,14.95,2019-07-31 11:42:00,365 West St, San Francisco,CA,94016 +236103,Lightning Charging Cable,1,14.95,2019-07-16 10:37:00,687 2nd St, San Francisco,CA,94016 +236104,AAA Batteries (4-pack),1,2.99,2019-07-30 16:44:00,771 West St, Seattle,WA,98101 +236105,Flatscreen TV,1,300.0,2019-07-20 06:46:00,132 Hickory St, Dallas,TX,75001 +236106,Apple Airpods Headphones,1,150.0,2019-07-17 11:56:00,486 8th St, Austin,TX,73301 +236107,USB-C Charging Cable,1,11.95,2019-07-26 19:06:00,435 Hill St, Portland,OR,97035 +236108,Apple Airpods Headphones,1,150.0,2019-07-02 07:27:00,376 2nd St, Los Angeles,CA,90001 +236109,iPhone,1,700.0,2019-07-17 11:32:00,737 Church St, San Francisco,CA,94016 +236110,AA Batteries (4-pack),1,3.84,2019-07-22 01:25:00,259 Main St, San Francisco,CA,94016 +236111,27in FHD Monitor,1,149.99,2019-07-15 14:04:00,187 Willow St, Seattle,WA,98101 +236112,Apple Airpods Headphones,1,150.0,2019-07-19 11:07:00,73 Main St, San Francisco,CA,94016 +236113,USB-C Charging Cable,1,11.95,2019-07-20 21:54:00,62 Elm St, San Francisco,CA,94016 +236114,Lightning Charging Cable,1,14.95,2019-07-13 23:39:00,108 Spruce St, Dallas,TX,75001 +236115,27in FHD Monitor,1,149.99,2019-07-02 10:11:00,365 Lincoln St, San Francisco,CA,94016 +236116,AAA Batteries (4-pack),1,2.99,2019-07-02 20:30:00,832 Meadow St, Boston,MA,02215 +236117,Apple Airpods Headphones,1,150.0,2019-07-02 23:28:00,569 Johnson St, Seattle,WA,98101 +236118,ThinkPad Laptop,1,999.99,2019-07-03 11:01:00,976 Park St, San Francisco,CA,94016 +236119,AA Batteries (4-pack),2,3.84,2019-07-04 23:51:00,331 8th St, San Francisco,CA,94016 +236120,Bose SoundSport Headphones,1,99.99,2019-07-05 20:17:00,500 Jackson St, Los Angeles,CA,90001 +236121,iPhone,1,700.0,2019-07-09 15:30:00,739 Dogwood St, Portland,OR,97035 +236122,AAA Batteries (4-pack),1,2.99,2019-07-15 16:04:00,810 Willow St, Atlanta,GA,30301 +236123,AAA Batteries (4-pack),1,2.99,2019-07-09 19:55:00,831 1st St, Austin,TX,73301 +236124,Wired Headphones,1,11.99,2019-07-13 15:01:00,982 5th St, Austin,TX,73301 +236125,AA Batteries (4-pack),1,3.84,2019-07-15 11:29:00,965 Dogwood St, New York City,NY,10001 +236126,ThinkPad Laptop,1,999.99,2019-07-13 20:17:00,532 Jackson St, San Francisco,CA,94016 +236127,USB-C Charging Cable,1,11.95,2019-07-05 15:28:00,774 4th St, San Francisco,CA,94016 +236128,LG Washing Machine,1,600.0,2019-07-26 12:27:00,85 Park St, New York City,NY,10001 +236129,iPhone,1,700.0,2019-07-28 17:55:00,660 14th St, Dallas,TX,75001 +236130,AA Batteries (4-pack),1,3.84,2019-07-27 15:14:00,215 Meadow St, Los Angeles,CA,90001 +236131,Apple Airpods Headphones,1,150.0,2019-07-06 18:10:00,94 11th St, Los Angeles,CA,90001 +236132,ThinkPad Laptop,1,999.99,2019-07-24 09:47:00,146 Forest St, Los Angeles,CA,90001 +236132,AA Batteries (4-pack),2,3.84,2019-07-24 09:47:00,146 Forest St, Los Angeles,CA,90001 +236133,LG Dryer,1,600.0,2019-07-23 18:50:00,573 Maple St, San Francisco,CA,94016 +236134,Apple Airpods Headphones,1,150.0,2019-07-23 13:33:00,390 12th St, Atlanta,GA,30301 +236135,AAA Batteries (4-pack),1,2.99,2019-07-09 17:47:00,151 1st St, New York City,NY,10001 +236136,Wired Headphones,1,11.99,2019-07-26 11:49:00,497 Lake St, Los Angeles,CA,90001 +236137,Lightning Charging Cable,1,14.95,2019-07-16 17:24:00,965 South St, San Francisco,CA,94016 +236138,Wired Headphones,1,11.99,2019-07-26 11:33:00,16 Church St, Atlanta,GA,30301 +236139,Bose SoundSport Headphones,1,99.99,2019-07-18 11:41:00,960 Lake St, New York City,NY,10001 +236140,ThinkPad Laptop,1,999.99,2019-07-09 17:32:00,930 Adams St, New York City,NY,10001 +236141,USB-C Charging Cable,1,11.95,2019-07-05 00:22:00,864 Highland St, New York City,NY,10001 +236142,Lightning Charging Cable,1,14.95,2019-07-11 17:30:00,733 1st St, Seattle,WA,98101 +236143,Macbook Pro Laptop,1,1700.0,2019-07-13 07:35:00,19 Ridge St, New York City,NY,10001 +236144,34in Ultrawide Monitor,1,379.99,2019-07-18 18:19:00,436 12th St, Boston,MA,02215 +236145,Wired Headphones,1,11.99,2019-07-04 11:09:00,481 11th St, San Francisco,CA,94016 +236146,Lightning Charging Cable,2,14.95,2019-07-31 15:28:00,899 West St, Boston,MA,02215 +236147,Apple Airpods Headphones,1,150.0,2019-07-03 13:21:00,440 Main St, New York City,NY,10001 +236148,Apple Airpods Headphones,1,150.0,2019-07-08 12:50:00,159 Pine St, San Francisco,CA,94016 +236148,Lightning Charging Cable,1,14.95,2019-07-08 12:50:00,159 Pine St, San Francisco,CA,94016 +236149,Google Phone,1,600.0,2019-07-03 23:50:00,401 9th St, San Francisco,CA,94016 +236150,AAA Batteries (4-pack),2,2.99,2019-07-20 14:51:00,914 14th St, Austin,TX,73301 +236151,USB-C Charging Cable,1,11.95,2019-07-23 14:03:00,652 Main St, Atlanta,GA,30301 +236152,iPhone,1,700.0,2019-07-29 23:19:00,806 North St, New York City,NY,10001 +236153,Bose SoundSport Headphones,1,99.99,2019-07-18 12:45:00,421 Chestnut St, San Francisco,CA,94016 +236154,Bose SoundSport Headphones,1,99.99,2019-07-13 18:19:00,49 Jackson St, San Francisco,CA,94016 +236155,Macbook Pro Laptop,1,1700.0,2019-07-24 10:33:00,400 8th St, Dallas,TX,75001 +236156,Wired Headphones,1,11.99,2019-07-20 10:50:00,20 12th St, Boston,MA,02215 +236157,27in 4K Gaming Monitor,1,389.99,2019-07-31 10:58:00,323 Sunset St, Dallas,TX,75001 +236158,Bose SoundSport Headphones,1,99.99,2019-07-03 09:48:00,910 Chestnut St, New York City,NY,10001 +236159,27in FHD Monitor,1,149.99,2019-07-25 17:22:00,861 Pine St, San Francisco,CA,94016 +236160,AA Batteries (4-pack),1,3.84,2019-07-22 23:06:00,820 Hill St, Los Angeles,CA,90001 +236161,34in Ultrawide Monitor,1,379.99,2019-07-06 15:06:00,265 Wilson St, Portland,OR,97035 +236162,USB-C Charging Cable,1,11.95,2019-07-03 21:59:00,448 Cedar St, Dallas,TX,75001 +236163,USB-C Charging Cable,1,11.95,2019-07-08 08:53:00,352 Madison St, Boston,MA,02215 +236164,Apple Airpods Headphones,1,150.0,2019-07-04 16:29:00,560 Center St, Dallas,TX,75001 +236165,20in Monitor,1,109.99,2019-07-05 22:44:00,128 12th St, Atlanta,GA,30301 +236166,Lightning Charging Cable,1,14.95,2019-07-18 13:28:00,573 Cedar St, San Francisco,CA,94016 +236167,AA Batteries (4-pack),1,3.84,2019-07-09 21:35:00,774 Park St, Los Angeles,CA,90001 +236168,34in Ultrawide Monitor,1,379.99,2019-07-07 21:15:00,942 Adams St, New York City,NY,10001 +236169,USB-C Charging Cable,1,11.95,2019-07-31 18:48:00,87 9th St, San Francisco,CA,94016 +236170,Wired Headphones,1,11.99,2019-07-28 03:51:00,107 9th St, Seattle,WA,98101 +236171,Apple Airpods Headphones,1,150.0,2019-07-24 19:34:00,407 9th St, Los Angeles,CA,90001 +236172,Lightning Charging Cable,1,14.95,2019-07-30 13:12:00,232 8th St, Boston,MA,02215 +236173,USB-C Charging Cable,2,11.95,2019-07-31 20:53:00,388 2nd St, San Francisco,CA,94016 +236174,AA Batteries (4-pack),1,3.84,2019-07-11 05:02:00,824 North St, Atlanta,GA,30301 +236175,AA Batteries (4-pack),1,3.84,2019-07-07 08:20:00,583 4th St, Dallas,TX,75001 +236176,Lightning Charging Cable,1,14.95,2019-07-20 18:18:00,121 5th St, Boston,MA,02215 +236177,Apple Airpods Headphones,1,150.0,2019-07-13 13:36:00,344 South St, Dallas,TX,75001 +236178,34in Ultrawide Monitor,1,379.99,2019-07-18 19:55:00,462 7th St, Seattle,WA,98101 +236179,AAA Batteries (4-pack),1,2.99,2019-07-24 18:10:00,460 Johnson St, Los Angeles,CA,90001 +236180,Apple Airpods Headphones,1,150.0,2019-07-13 19:18:00,166 1st St, San Francisco,CA,94016 +236181,Flatscreen TV,1,300.0,2019-07-08 17:18:00,714 Pine St, Boston,MA,02215 +236182,27in FHD Monitor,1,149.99,2019-07-07 09:46:00,877 Johnson St, Dallas,TX,75001 +236183,USB-C Charging Cable,1,11.95,2019-07-08 07:03:00,801 Jackson St, New York City,NY,10001 +236184,AAA Batteries (4-pack),1,2.99,2019-07-24 15:47:00,875 Lake St, San Francisco,CA,94016 +236185,USB-C Charging Cable,1,11.95,2019-07-24 15:17:00,10 10th St, Atlanta,GA,30301 +236186,Wired Headphones,1,11.99,2019-07-14 15:17:00,156 12th St, Seattle,WA,98101 +236187,AAA Batteries (4-pack),2,2.99,2019-07-31 17:41:00,45 Cherry St, San Francisco,CA,94016 +236188,Bose SoundSport Headphones,1,99.99,2019-07-20 19:43:00,272 Lakeview St, New York City,NY,10001 +236189,27in 4K Gaming Monitor,1,389.99,2019-07-10 23:12:00,27 Hill St, Los Angeles,CA,90001 +236190,Flatscreen TV,1,300.0,2019-07-08 16:27:00,182 Pine St, San Francisco,CA,94016 +236191,Lightning Charging Cable,1,14.95,2019-07-26 14:31:00,960 River St, San Francisco,CA,94016 +236192,Lightning Charging Cable,1,14.95,2019-07-14 09:06:00,529 6th St, Dallas,TX,75001 +236193,USB-C Charging Cable,2,11.95,2019-07-29 18:45:00,554 Cedar St, Atlanta,GA,30301 +236194,Bose SoundSport Headphones,1,99.99,2019-07-28 20:08:00,475 Highland St, Los Angeles,CA,90001 +236195,27in FHD Monitor,1,149.99,2019-07-07 08:13:00,711 1st St, San Francisco,CA,94016 +236196,Vareebadd Phone,1,400.0,2019-07-13 16:51:00,528 7th St, Seattle,WA,98101 +236197,AA Batteries (4-pack),1,3.84,2019-07-03 17:22:00,692 6th St, Seattle,WA,98101 +236198,Lightning Charging Cable,1,14.95,2019-07-02 22:54:00,141 11th St, San Francisco,CA,94016 +236199,Lightning Charging Cable,1,14.95,2019-07-20 21:20:00,884 Walnut St, Seattle,WA,98101 +236200,Lightning Charging Cable,1,14.95,2019-07-23 20:01:00,865 Cherry St, Atlanta,GA,30301 +236201,Lightning Charging Cable,1,14.95,2019-07-24 12:57:00,690 Sunset St, San Francisco,CA,94016 +236202,Lightning Charging Cable,1,14.95,2019-07-01 11:10:00,967 6th St, Dallas,TX,75001 +236203,USB-C Charging Cable,1,11.95,2019-07-26 22:07:00,61 Spruce St, Dallas,TX,75001 +236204,20in Monitor,1,109.99,2019-07-11 19:48:00,185 4th St, San Francisco,CA,94016 +236205,USB-C Charging Cable,1,11.95,2019-07-10 18:58:00,890 Dogwood St, San Francisco,CA,94016 +236206,Apple Airpods Headphones,1,150.0,2019-07-15 10:10:00,374 Meadow St, Atlanta,GA,30301 +236207,Lightning Charging Cable,1,14.95,2019-07-01 18:23:00,478 Cherry St, San Francisco,CA,94016 +236208,Apple Airpods Headphones,1,150.0,2019-07-08 11:12:00,563 Church St, Los Angeles,CA,90001 +236209,AA Batteries (4-pack),1,3.84,2019-07-18 10:56:00,69 Jefferson St, Boston,MA,02215 +236210,27in FHD Monitor,1,149.99,2019-07-05 13:45:00,909 Cherry St, New York City,NY,10001 +236211,AA Batteries (4-pack),1,3.84,2019-07-11 16:19:00,408 Pine St, San Francisco,CA,94016 +236212,Bose SoundSport Headphones,1,99.99,2019-07-02 20:19:00,966 Highland St, New York City,NY,10001 +236213,Lightning Charging Cable,1,14.95,2019-07-15 13:16:00,995 West St, Los Angeles,CA,90001 +236214,Lightning Charging Cable,1,14.95,2019-07-06 21:47:00,898 Jackson St, Los Angeles,CA,90001 +236215,LG Washing Machine,1,600.0,2019-07-04 18:02:00,3 North St, New York City,NY,10001 +236215,Bose SoundSport Headphones,1,99.99,2019-07-04 18:02:00,3 North St, New York City,NY,10001 +236216,Lightning Charging Cable,1,14.95,2019-07-02 15:39:00,909 Ridge St, San Francisco,CA,94016 +236217,AA Batteries (4-pack),1,3.84,2019-07-16 09:59:00,754 7th St, San Francisco,CA,94016 +236218,AA Batteries (4-pack),1,3.84,2019-07-20 21:46:00,105 Jefferson St, Austin,TX,73301 +236219,34in Ultrawide Monitor,1,379.99,2019-07-12 21:40:00,817 Sunset St, Boston,MA,02215 +236220,Wired Headphones,1,11.99,2019-07-06 13:31:00,700 Meadow St, San Francisco,CA,94016 +236221,iPhone,1,700.0,2019-07-20 21:16:00,514 Jefferson St, Atlanta,GA,30301 +236221,Wired Headphones,1,11.99,2019-07-20 21:16:00,514 Jefferson St, Atlanta,GA,30301 +236222,USB-C Charging Cable,1,11.95,2019-07-08 15:51:00,611 8th St, Boston,MA,02215 +236223,27in 4K Gaming Monitor,1,389.99,2019-07-15 17:18:00,360 9th St, Austin,TX,73301 +236224,Apple Airpods Headphones,1,150.0,2019-07-09 12:32:00,154 Chestnut St, Portland,OR,97035 +236225,Vareebadd Phone,1,400.0,2019-07-23 17:04:00,569 Willow St, New York City,NY,10001 +236226,Wired Headphones,1,11.99,2019-07-31 18:52:00,226 Center St, New York City,NY,10001 +236227,Bose SoundSport Headphones,1,99.99,2019-07-20 17:32:00,570 Lakeview St, San Francisco,CA,94016 +236228,Lightning Charging Cable,1,14.95,2019-07-08 14:59:00,317 13th St, New York City,NY,10001 +236229,AA Batteries (4-pack),1,3.84,2019-07-15 14:43:00,358 Hill St, Seattle,WA,98101 +236230,Wired Headphones,3,11.99,2019-07-06 13:05:00,920 Church St, San Francisco,CA,94016 +236231,ThinkPad Laptop,1,999.99,2019-07-17 23:07:00,44 11th St, Los Angeles,CA,90001 +236232,AAA Batteries (4-pack),3,2.99,2019-07-01 15:43:00,96 Jackson St, San Francisco,CA,94016 +236233,27in FHD Monitor,1,149.99,2019-07-17 18:28:00,103 Meadow St, Atlanta,GA,30301 +236234,USB-C Charging Cable,1,11.95,2019-07-01 10:20:00,856 Lakeview St, San Francisco,CA,94016 +236235,Apple Airpods Headphones,1,150.0,2019-07-21 19:14:00,548 Spruce St, Austin,TX,73301 +236236,27in 4K Gaming Monitor,1,389.99,2019-07-14 11:53:00,336 Hickory St, Dallas,TX,75001 +236237,Lightning Charging Cable,1,14.95,2019-07-12 20:06:00,874 Walnut St, Boston,MA,02215 +236238,Apple Airpods Headphones,1,150.0,2019-07-29 09:08:00,862 Willow St, Atlanta,GA,30301 +236239,Wired Headphones,2,11.99,2019-07-11 21:41:00,176 Washington St, Seattle,WA,98101 +236240,USB-C Charging Cable,1,11.95,2019-07-31 21:29:00,860 2nd St, San Francisco,CA,94016 +236241,Google Phone,1,600.0,2019-07-02 16:50:00,346 Jackson St, Dallas,TX,75001 +236242,27in FHD Monitor,1,149.99,2019-07-02 21:24:00,81 7th St, San Francisco,CA,94016 +236243,Lightning Charging Cable,1,14.95,2019-07-02 19:48:00,506 Spruce St, New York City,NY,10001 +236244,Apple Airpods Headphones,1,150.0,2019-07-21 19:45:00,508 Spruce St, Seattle,WA,98101 +236245,Macbook Pro Laptop,1,1700.0,2019-07-04 15:20:00,15 West St, Atlanta,GA,30301 +236246,AA Batteries (4-pack),1,3.84,2019-07-20 19:23:00,986 North St, Dallas,TX,75001 +236247,Wired Headphones,1,11.99,2019-07-16 09:37:00,64 Forest St, Los Angeles,CA,90001 +236248,AA Batteries (4-pack),1,3.84,2019-07-17 13:04:00,982 Wilson St, Atlanta,GA,30301 +236249,Lightning Charging Cable,1,14.95,2019-07-31 22:51:00,280 North St, Atlanta,GA,30301 +236250,Wired Headphones,1,11.99,2019-07-12 12:28:00,783 Cherry St, Atlanta,GA,30301 +236251,27in FHD Monitor,1,149.99,2019-07-05 10:35:00,479 Wilson St, New York City,NY,10001 +236252,Bose SoundSport Headphones,1,99.99,2019-07-04 21:58:00,955 Adams St, Boston,MA,02215 +236253,Lightning Charging Cable,1,14.95,2019-07-20 20:51:00,612 Church St, Los Angeles,CA,90001 +236254,Lightning Charging Cable,1,14.95,2019-07-26 12:29:00,950 Adams St, San Francisco,CA,94016 +236255,34in Ultrawide Monitor,1,379.99,2019-07-09 09:23:00,227 7th St, Dallas,TX,75001 +236256,Wired Headphones,1,11.99,2019-07-18 07:31:00,714 River St, New York City,NY,10001 +236257,34in Ultrawide Monitor,1,379.99,2019-07-10 21:38:00,86 Dogwood St, Dallas,TX,75001 +236258,Flatscreen TV,1,300.0,2019-07-20 22:53:00,124 Forest St, Boston,MA,02215 +236259,Bose SoundSport Headphones,1,99.99,2019-07-26 00:08:00,150 River St, Austin,TX,73301 +236260,Lightning Charging Cable,1,14.95,2019-07-15 16:41:00,589 River St, Dallas,TX,75001 +236261,Apple Airpods Headphones,1,150.0,2019-07-05 00:08:00,545 Cedar St, Boston,MA,02215 +236262,20in Monitor,1,109.99,2019-07-06 12:11:00,486 Cherry St, San Francisco,CA,94016 +236262,USB-C Charging Cable,1,11.95,2019-07-06 12:11:00,486 Cherry St, San Francisco,CA,94016 +236263,Apple Airpods Headphones,1,150.0,2019-07-06 11:07:00,41 8th St, Portland,OR,97035 +236264,Lightning Charging Cable,1,14.95,2019-07-23 11:17:00,326 Center St, Los Angeles,CA,90001 +236265,AAA Batteries (4-pack),1,2.99,2019-07-27 11:41:00,740 Cherry St, Los Angeles,CA,90001 +236266,Wired Headphones,1,11.99,2019-07-13 12:14:00,29 Chestnut St, Los Angeles,CA,90001 +236267,AAA Batteries (4-pack),1,2.99,2019-07-18 08:39:00,838 Elm St, Portland,OR,97035 +236268,Apple Airpods Headphones,1,150.0,2019-07-04 20:54:00,937 Willow St, Seattle,WA,98101 +236269,Apple Airpods Headphones,1,150.0,2019-07-10 16:09:00,714 Walnut St, Los Angeles,CA,90001 +236270,USB-C Charging Cable,1,11.95,2019-07-18 19:50:00,308 Wilson St, Boston,MA,02215 +236270,Apple Airpods Headphones,1,150.0,2019-07-18 19:50:00,308 Wilson St, Boston,MA,02215 +236271,AA Batteries (4-pack),1,3.84,2019-07-10 03:54:00,942 Dogwood St, New York City,NY,10001 +236272,Apple Airpods Headphones,1,150.0,2019-07-16 18:26:00,727 Madison St, New York City,NY,10001 +236273,USB-C Charging Cable,1,11.95,2019-07-15 22:20:00,592 Sunset St, Boston,MA,02215 +236274,Macbook Pro Laptop,1,1700.0,2019-07-11 10:48:00,925 Adams St, San Francisco,CA,94016 +236275,Bose SoundSport Headphones,1,99.99,2019-07-13 17:56:00,958 Meadow St, San Francisco,CA,94016 +236276,27in 4K Gaming Monitor,1,389.99,2019-07-24 14:31:00,515 Highland St, San Francisco,CA,94016 +236277,Apple Airpods Headphones,1,150.0,2019-07-04 11:21:00,256 Wilson St, San Francisco,CA,94016 +236278,Flatscreen TV,1,300.0,2019-07-15 09:14:00,214 8th St, Atlanta,GA,30301 +236279,LG Dryer,1,600.0,2019-07-31 18:40:00,322 Spruce St, San Francisco,CA,94016 +236280,34in Ultrawide Monitor,1,379.99,2019-07-08 21:30:00,17 11th St, Los Angeles,CA,90001 +236281,ThinkPad Laptop,1,999.99,2019-07-21 11:14:00,588 Washington St, Atlanta,GA,30301 +236282,Lightning Charging Cable,1,14.95,2019-07-24 18:30:00,395 Chestnut St, Atlanta,GA,30301 +236283,USB-C Charging Cable,1,11.95,2019-07-18 14:59:00,308 North St, New York City,NY,10001 +236284,AA Batteries (4-pack),1,3.84,2019-07-09 23:07:00,669 Lakeview St, Austin,TX,73301 +236285,Bose SoundSport Headphones,1,99.99,2019-07-05 03:07:00,67 2nd St, Seattle,WA,98101 +236286,ThinkPad Laptop,1,999.99,2019-07-08 19:09:00,357 Cherry St, San Francisco,CA,94016 +236287,AA Batteries (4-pack),2,3.84,2019-07-01 23:37:00,386 Lakeview St, New York City,NY,10001 +236288,AA Batteries (4-pack),1,3.84,2019-07-22 10:00:00,487 West St, San Francisco,CA,94016 +236289,Apple Airpods Headphones,1,150.0,2019-07-22 08:23:00,429 1st St, Portland,OR,97035 +236290,AAA Batteries (4-pack),1,2.99,2019-07-01 12:13:00,357 Hickory St, Seattle,WA,98101 +236291,Wired Headphones,1,11.99,2019-07-28 20:15:00,303 Sunset St, Austin,TX,73301 +236292,Lightning Charging Cable,1,14.95,2019-07-19 20:22:00,271 Lake St, Dallas,TX,75001 +236293,Lightning Charging Cable,1,14.95,2019-07-24 19:31:00,940 Chestnut St, Los Angeles,CA,90001 +236294,Bose SoundSport Headphones,1,99.99,2019-07-04 10:57:00,353 Cherry St, New York City,NY,10001 +236295,Lightning Charging Cable,1,14.95,2019-07-26 22:34:00,831 Park St, Atlanta,GA,30301 +236296,34in Ultrawide Monitor,1,379.99,2019-07-18 20:34:00,16 Wilson St, Los Angeles,CA,90001 +236297,Apple Airpods Headphones,1,150.0,2019-07-03 22:22:00,752 River St, San Francisco,CA,94016 +236298,Vareebadd Phone,1,400.0,2019-07-21 14:16:00,570 Pine St, Dallas,TX,75001 +236298,USB-C Charging Cable,1,11.95,2019-07-21 14:16:00,570 Pine St, Dallas,TX,75001 +236299,Wired Headphones,1,11.99,2019-07-31 17:13:00,555 13th St, San Francisco,CA,94016 +236300,34in Ultrawide Monitor,1,379.99,2019-07-02 14:09:00,635 Meadow St, Los Angeles,CA,90001 +236301,Lightning Charging Cable,1,14.95,2019-07-21 18:00:00,535 Washington St, Los Angeles,CA,90001 +236302,27in FHD Monitor,1,149.99,2019-07-09 16:00:00,853 5th St, New York City,NY,10001 +236303,ThinkPad Laptop,1,999.99,2019-07-09 10:30:00,226 Dogwood St, Los Angeles,CA,90001 +236304,34in Ultrawide Monitor,1,379.99,2019-07-25 20:13:00,290 5th St, Seattle,WA,98101 +236305,ThinkPad Laptop,1,999.99,2019-07-27 15:58:00,529 13th St, San Francisco,CA,94016 +236306,Flatscreen TV,1,300.0,2019-07-04 10:29:00,695 Elm St, San Francisco,CA,94016 +236307,Wired Headphones,1,11.99,2019-07-19 20:02:00,455 10th St, Los Angeles,CA,90001 +236308,Macbook Pro Laptop,1,1700.0,2019-07-13 13:43:00,354 Main St, San Francisco,CA,94016 +236309,AAA Batteries (4-pack),1,2.99,2019-07-20 14:01:00,66 Main St, New York City,NY,10001 +236310,27in FHD Monitor,1,149.99,2019-07-14 18:24:00,228 Hill St, Los Angeles,CA,90001 +236311,USB-C Charging Cable,1,11.95,2019-07-21 09:01:00,271 Cherry St, Los Angeles,CA,90001 +236312,AA Batteries (4-pack),3,3.84,2019-07-10 19:55:00,383 Church St, New York City,NY,10001 +236313,20in Monitor,1,109.99,2019-07-12 10:14:00,701 Dogwood St, San Francisco,CA,94016 +236314,iPhone,1,700.0,2019-07-28 06:29:00,137 West St, San Francisco,CA,94016 +236315,AAA Batteries (4-pack),3,2.99,2019-07-09 17:59:00,117 Jackson St, Boston,MA,02215 +236316,AAA Batteries (4-pack),1,2.99,2019-07-06 05:49:00,946 8th St, Boston,MA,02215 +236317,AA Batteries (4-pack),1,3.84,2019-07-27 16:36:00,943 South St, Los Angeles,CA,90001 +236318,Apple Airpods Headphones,1,150.0,2019-07-24 15:52:00,527 Center St, San Francisco,CA,94016 +236319,iPhone,1,700.0,2019-07-07 06:43:00,633 Sunset St, Atlanta,GA,30301 +236320,27in FHD Monitor,1,149.99,2019-07-11 11:43:00,501 Wilson St, New York City,NY,10001 +236321,Lightning Charging Cable,1,14.95,2019-07-07 13:59:00,31 10th St, Los Angeles,CA,90001 +236322,ThinkPad Laptop,1,999.99,2019-07-30 11:15:00,298 10th St, San Francisco,CA,94016 +236323,AAA Batteries (4-pack),1,2.99,2019-07-30 15:30:00,731 4th St, New York City,NY,10001 +236324,Apple Airpods Headphones,1,150.0,2019-07-10 15:44:00,628 Lincoln St, Seattle,WA,98101 +236325,Flatscreen TV,1,300.0,2019-07-31 22:31:00,910 West St, Los Angeles,CA,90001 +236326,Bose SoundSport Headphones,1,99.99,2019-07-06 22:30:00,679 Spruce St, Los Angeles,CA,90001 +236327,Google Phone,1,600.0,2019-07-10 12:11:00,589 Church St, Atlanta,GA,30301 +236328,27in 4K Gaming Monitor,1,389.99,2019-07-19 20:46:00,25 Cedar St, San Francisco,CA,94016 +236329,Apple Airpods Headphones,1,150.0,2019-07-13 10:42:00,41 River St, Dallas,TX,75001 +236330,USB-C Charging Cable,1,11.95,2019-07-21 13:19:00,8 Main St, San Francisco,CA,94016 +236331,Flatscreen TV,1,300.0,2019-07-13 18:50:00,596 Pine St, New York City,NY,10001 +236332,34in Ultrawide Monitor,1,379.99,2019-07-31 20:02:00,104 Jackson St, Los Angeles,CA,90001 +236333,AA Batteries (4-pack),1,3.84,2019-07-14 18:30:00,726 Madison St, Los Angeles,CA,90001 +236334,27in 4K Gaming Monitor,1,389.99,2019-07-16 11:29:00,574 4th St, Boston,MA,02215 +236335,Lightning Charging Cable,1,14.95,2019-07-07 13:20:00,973 6th St, San Francisco,CA,94016 +236336,AA Batteries (4-pack),4,3.84,2019-07-05 21:29:00,701 Meadow St, New York City,NY,10001 +236337,Wired Headphones,1,11.99,2019-07-10 11:52:00,657 12th St, Dallas,TX,75001 +236338,AAA Batteries (4-pack),1,2.99,2019-07-01 12:56:00,233 Park St, San Francisco,CA,94016 +236339,Bose SoundSport Headphones,1,99.99,2019-07-27 16:45:00,342 River St, Dallas,TX,75001 +236340,USB-C Charging Cable,2,11.95,2019-07-24 15:02:00,86 13th St, Seattle,WA,98101 +236341,AA Batteries (4-pack),1,3.84,2019-07-25 12:58:00,985 South St, Los Angeles,CA,90001 +236342,Google Phone,1,600.0,2019-07-04 20:11:00,936 Center St, Boston,MA,02215 +236342,USB-C Charging Cable,1,11.95,2019-07-04 20:11:00,936 Center St, Boston,MA,02215 +236343,ThinkPad Laptop,1,999.99,2019-07-04 16:28:00,27 Jackson St, San Francisco,CA,94016 +236344,27in FHD Monitor,1,149.99,2019-07-17 14:47:00,990 Ridge St, Atlanta,GA,30301 +236345,AA Batteries (4-pack),1,3.84,2019-07-25 08:58:00,520 Maple St, Portland,OR,97035 +236346,34in Ultrawide Monitor,1,379.99,2019-07-23 07:24:00,986 Spruce St, Portland,ME,04101 +236347,Bose SoundSport Headphones,1,99.99,2019-07-13 15:16:00,691 South St, Seattle,WA,98101 +236348,iPhone,1,700.0,2019-07-15 22:04:00,730 13th St, Boston,MA,02215 +236349,Wired Headphones,1,11.99,2019-07-22 18:45:00,306 1st St, Los Angeles,CA,90001 +236350,USB-C Charging Cable,1,11.95,2019-07-05 21:27:00,463 Dogwood St, New York City,NY,10001 +236351,Lightning Charging Cable,1,14.95,2019-07-11 14:50:00,53 Walnut St, Boston,MA,02215 +236352,USB-C Charging Cable,1,11.95,2019-07-01 21:58:00,204 12th St, San Francisco,CA,94016 +236353,Macbook Pro Laptop,1,1700.0,2019-07-17 22:40:00,748 Meadow St, Atlanta,GA,30301 +236354,Bose SoundSport Headphones,1,99.99,2019-07-29 14:29:00,119 South St, Atlanta,GA,30301 +236355,27in 4K Gaming Monitor,1,389.99,2019-07-02 14:31:00,760 10th St, New York City,NY,10001 +236356,Wired Headphones,1,11.99,2019-07-08 13:25:00,771 12th St, San Francisco,CA,94016 +236357,USB-C Charging Cable,1,11.95,2019-07-20 11:26:00,962 Chestnut St, Seattle,WA,98101 +236358,ThinkPad Laptop,1,999.99,2019-07-23 08:42:00,672 Highland St, New York City,NY,10001 +236359,Apple Airpods Headphones,1,150.0,2019-07-20 20:02:00,624 Washington St, San Francisco,CA,94016 +236360,Wired Headphones,1,11.99,2019-07-23 12:04:00,761 Lincoln St, San Francisco,CA,94016 +236361,Apple Airpods Headphones,1,150.0,2019-07-01 15:35:00,801 West St, Atlanta,GA,30301 +236362,27in FHD Monitor,1,149.99,2019-07-19 21:30:00,424 9th St, Portland,OR,97035 +236363,Lightning Charging Cable,1,14.95,2019-07-25 14:18:00,852 1st St, New York City,NY,10001 +236364,AAA Batteries (4-pack),6,2.99,2019-07-31 13:56:00,45 Ridge St, Dallas,TX,75001 +236365,27in FHD Monitor,1,149.99,2019-07-08 13:32:00,910 Church St, Seattle,WA,98101 +236366,Apple Airpods Headphones,1,150.0,2019-07-05 21:20:00,698 7th St, Portland,ME,04101 +236367,34in Ultrawide Monitor,1,379.99,2019-07-20 16:41:00,863 Center St, San Francisco,CA,94016 +236368,Lightning Charging Cable,1,14.95,2019-07-25 18:05:00,234 River St, Boston,MA,02215 +236368,USB-C Charging Cable,1,11.95,2019-07-25 18:05:00,234 River St, Boston,MA,02215 +236369,Bose SoundSport Headphones,1,99.99,2019-07-05 22:32:00,259 Adams St, Boston,MA,02215 +236370,AA Batteries (4-pack),1,3.84,2019-07-20 09:31:00,762 11th St, New York City,NY,10001 +236371,AA Batteries (4-pack),1,3.84,2019-07-23 22:24:00,391 Hill St, San Francisco,CA,94016 +236372,34in Ultrawide Monitor,1,379.99,2019-07-12 01:27:00,817 Highland St, San Francisco,CA,94016 +236373,USB-C Charging Cable,1,11.95,2019-07-25 12:17:00,750 Washington St, Los Angeles,CA,90001 +236374,Wired Headphones,1,11.99,2019-07-27 16:36:00,340 West St, Boston,MA,02215 +236375,27in FHD Monitor,1,149.99,2019-07-27 21:01:00,372 Jackson St, Dallas,TX,75001 +236376,USB-C Charging Cable,1,11.95,2019-07-14 05:38:00,530 Meadow St, New York City,NY,10001 +236377,Apple Airpods Headphones,1,150.0,2019-07-02 10:27:00,814 Ridge St, Boston,MA,02215 +236378,AA Batteries (4-pack),3,3.84,2019-07-24 18:06:00,366 5th St, San Francisco,CA,94016 +236379,AAA Batteries (4-pack),2,2.99,2019-07-12 10:17:00,821 Main St, Los Angeles,CA,90001 +236380,27in 4K Gaming Monitor,1,389.99,2019-07-11 21:08:00,391 14th St, San Francisco,CA,94016 +236381,AAA Batteries (4-pack),1,2.99,2019-07-10 06:37:00,397 West St, Boston,MA,02215 +236382,20in Monitor,1,109.99,2019-07-02 21:27:00,935 14th St, San Francisco,CA,94016 +236383,Macbook Pro Laptop,1,1700.0,2019-07-03 13:19:00,125 1st St, San Francisco,CA,94016 +236384,USB-C Charging Cable,1,11.95,2019-07-22 10:03:00,419 Lincoln St, Dallas,TX,75001 +236385,ThinkPad Laptop,1,999.99,2019-07-25 01:02:00,947 Lincoln St, New York City,NY,10001 +236386,27in 4K Gaming Monitor,1,389.99,2019-07-02 19:02:00,560 Highland St, Portland,OR,97035 +236387,AA Batteries (4-pack),1,3.84,2019-07-04 17:24:00,595 Hickory St, San Francisco,CA,94016 +236388,Google Phone,1,600.0,2019-07-09 08:54:00,730 Elm St, New York City,NY,10001 +236389,27in 4K Gaming Monitor,1,389.99,2019-07-05 20:11:00,408 Ridge St, New York City,NY,10001 +236390,Lightning Charging Cable,1,14.95,2019-07-18 12:53:00,165 2nd St, New York City,NY,10001 +236391,Apple Airpods Headphones,1,150.0,2019-07-04 20:55:00,577 Johnson St, Los Angeles,CA,90001 +236392,iPhone,1,700.0,2019-07-05 14:58:00,883 Lakeview St, Los Angeles,CA,90001 +236393,AA Batteries (4-pack),2,3.84,2019-07-26 21:40:00,560 Adams St, New York City,NY,10001 +236394,20in Monitor,1,109.99,2019-07-30 15:40:00,870 Jackson St, San Francisco,CA,94016 +236395,20in Monitor,1,109.99,2019-07-28 10:50:00,457 Meadow St, San Francisco,CA,94016 +236396,Apple Airpods Headphones,1,150.0,2019-07-12 12:40:00,86 Meadow St, Atlanta,GA,30301 +236397,iPhone,1,700.0,2019-07-29 19:00:00,604 Walnut St, Dallas,TX,75001 +236397,Wired Headphones,1,11.99,2019-07-29 19:00:00,604 Walnut St, Dallas,TX,75001 +236398,27in 4K Gaming Monitor,1,389.99,2019-07-04 12:35:00,273 South St, Los Angeles,CA,90001 +236399,27in FHD Monitor,1,149.99,2019-07-09 07:30:00,967 4th St, Boston,MA,02215 +236400,Wired Headphones,1,11.99,2019-07-18 14:43:00,242 Walnut St, Atlanta,GA,30301 +236401,AA Batteries (4-pack),2,3.84,2019-07-26 17:41:00,175 5th St, San Francisco,CA,94016 +236402,USB-C Charging Cable,1,11.95,2019-07-21 14:31:00,396 Ridge St, Seattle,WA,98101 +236403,USB-C Charging Cable,1,11.95,2019-07-29 17:44:00,254 Lake St, Los Angeles,CA,90001 +236404,Apple Airpods Headphones,1,150.0,2019-07-28 10:47:00,209 Maple St, San Francisco,CA,94016 +236405,Lightning Charging Cable,1,14.95,2019-07-25 18:56:00,253 Forest St, Boston,MA,02215 +236406,Macbook Pro Laptop,1,1700.0,2019-07-22 20:04:00,643 Lincoln St, Los Angeles,CA,90001 +236407,AAA Batteries (4-pack),1,2.99,2019-07-26 17:33:00,885 Washington St, Seattle,WA,98101 +236408,Lightning Charging Cable,1,14.95,2019-07-04 08:40:00,301 Lakeview St, Los Angeles,CA,90001 +236409,Google Phone,1,600.0,2019-07-04 22:37:00,121 12th St, San Francisco,CA,94016 +236409,Bose SoundSport Headphones,1,99.99,2019-07-04 22:37:00,121 12th St, San Francisco,CA,94016 +236410,Lightning Charging Cable,1,14.95,2019-07-21 17:48:00,971 10th St, New York City,NY,10001 +236411,Wired Headphones,1,11.99,2019-07-30 16:11:00,785 9th St, Austin,TX,73301 +236412,34in Ultrawide Monitor,1,379.99,2019-07-11 14:22:00,816 13th St, San Francisco,CA,94016 +236413,Google Phone,1,600.0,2019-07-26 00:38:00,316 Jackson St, San Francisco,CA,94016 +236414,AA Batteries (4-pack),1,3.84,2019-07-04 15:10:00,871 Lake St, San Francisco,CA,94016 +236415,LG Washing Machine,1,600.0,2019-07-25 18:51:00,633 10th St, Atlanta,GA,30301 +236416,27in 4K Gaming Monitor,1,389.99,2019-07-19 13:04:00,702 Madison St, Boston,MA,02215 +236417,Lightning Charging Cable,1,14.95,2019-07-12 09:53:00,163 9th St, Los Angeles,CA,90001 +236418,iPhone,1,700.0,2019-07-02 18:42:00,911 Forest St, San Francisco,CA,94016 +236419,Flatscreen TV,1,300.0,2019-07-31 15:39:00,50 Willow St, New York City,NY,10001 +236420,Lightning Charging Cable,1,14.95,2019-07-17 09:41:00,283 10th St, Austin,TX,73301 +236421,Apple Airpods Headphones,1,150.0,2019-07-30 14:11:00,762 Cherry St, San Francisco,CA,94016 +236422,Bose SoundSport Headphones,1,99.99,2019-07-22 20:33:00,495 Ridge St, Los Angeles,CA,90001 +236423,AA Batteries (4-pack),2,3.84,2019-07-25 10:50:00,60 Jackson St, New York City,NY,10001 +236424,AAA Batteries (4-pack),1,2.99,2019-07-30 15:59:00,803 Adams St, Dallas,TX,75001 +236425,Lightning Charging Cable,1,14.95,2019-07-12 21:14:00,39 14th St, Portland,OR,97035 +236426,AAA Batteries (4-pack),1,2.99,2019-07-27 17:49:00,815 Maple St, Boston,MA,02215 +236427,20in Monitor,1,109.99,2019-07-28 14:15:00,263 4th St, Portland,ME,04101 +236428,AA Batteries (4-pack),1,3.84,2019-07-15 22:49:00,910 Jefferson St, New York City,NY,10001 +236429,USB-C Charging Cable,1,11.95,2019-07-16 13:12:00,98 Forest St, New York City,NY,10001 +236430,Google Phone,1,600.0,2019-07-13 17:35:00,536 Lake St, San Francisco,CA,94016 +236431,Macbook Pro Laptop,1,1700.0,2019-07-04 20:42:00,60 Dogwood St, Portland,OR,97035 +236432,34in Ultrawide Monitor,1,379.99,2019-07-18 17:15:00,75 12th St, Boston,MA,02215 +236433,Bose SoundSport Headphones,1,99.99,2019-07-12 12:51:00,394 Johnson St, Seattle,WA,98101 +236434,20in Monitor,1,109.99,2019-07-26 11:07:00,841 14th St, Atlanta,GA,30301 +236435,USB-C Charging Cable,1,11.95,2019-07-31 20:16:00,396 Meadow St, Boston,MA,02215 +236436,Wired Headphones,1,11.99,2019-07-13 18:05:00,561 Chestnut St, San Francisco,CA,94016 +236437,Wired Headphones,1,11.99,2019-07-03 08:30:00,726 West St, Dallas,TX,75001 +236438,Bose SoundSport Headphones,1,99.99,2019-07-09 21:27:00,880 Maple St, Los Angeles,CA,90001 +236439,USB-C Charging Cable,1,11.95,2019-07-30 22:41:00,892 Meadow St, New York City,NY,10001 +236440,Apple Airpods Headphones,1,150.0,2019-07-17 07:25:00,295 10th St, Atlanta,GA,30301 +236441,Apple Airpods Headphones,1,150.0,2019-07-15 09:26:00,139 4th St, Los Angeles,CA,90001 +236442,Apple Airpods Headphones,1,150.0,2019-07-08 11:27:00,112 Hill St, San Francisco,CA,94016 +236443,Bose SoundSport Headphones,1,99.99,2019-07-03 15:20:00,201 8th St, New York City,NY,10001 +236444,AA Batteries (4-pack),1,3.84,2019-07-19 23:11:00,940 South St, Atlanta,GA,30301 +236445,Lightning Charging Cable,1,14.95,2019-07-01 19:36:00,307 8th St, Seattle,WA,98101 +236446,Flatscreen TV,1,300.0,2019-07-01 12:41:00,20 2nd St, Boston,MA,02215 +236447,AAA Batteries (4-pack),1,2.99,2019-07-03 02:28:00,765 Adams St, Los Angeles,CA,90001 +236448,AAA Batteries (4-pack),1,2.99,2019-07-15 00:33:00,242 Hill St, Los Angeles,CA,90001 +236449,Bose SoundSport Headphones,1,99.99,2019-07-25 09:13:00,119 11th St, Dallas,TX,75001 +236450,USB-C Charging Cable,1,11.95,2019-07-06 17:37:00,900 Maple St, Dallas,TX,75001 +236451,Google Phone,1,600.0,2019-07-30 11:43:00,293 Lakeview St, San Francisco,CA,94016 +236452,Apple Airpods Headphones,1,150.0,2019-07-16 12:32:00,729 South St, Los Angeles,CA,90001 +236453,AAA Batteries (4-pack),4,2.99,2019-07-26 12:01:00,506 Sunset St, Los Angeles,CA,90001 +236454,AA Batteries (4-pack),1,3.84,2019-07-09 01:49:00,978 Sunset St, Boston,MA,02215 +236455,Apple Airpods Headphones,1,150.0,2019-07-18 18:25:00,891 1st St, Los Angeles,CA,90001 +236456,AA Batteries (4-pack),1,3.84,2019-07-09 11:50:00,365 1st St, Los Angeles,CA,90001 +236457,Macbook Pro Laptop,1,1700.0,2019-07-09 09:05:00,414 14th St, New York City,NY,10001 +236458,AAA Batteries (4-pack),1,2.99,2019-07-06 15:30:00,227 Highland St, Portland,OR,97035 +236459,Flatscreen TV,1,300.0,2019-07-26 14:51:00,56 Highland St, Dallas,TX,75001 +236460,AAA Batteries (4-pack),1,2.99,2019-07-31 12:10:00,421 North St, San Francisco,CA,94016 +236461,AAA Batteries (4-pack),2,2.99,2019-07-29 20:59:00,341 Wilson St, Dallas,TX,75001 +236462,Macbook Pro Laptop,1,1700.0,2019-07-29 19:17:00,326 12th St, Seattle,WA,98101 +236463,Macbook Pro Laptop,1,1700.0,2019-07-09 15:26:00,421 Center St, Boston,MA,02215 +236464,Lightning Charging Cable,2,14.95,2019-07-07 18:03:00,334 Madison St, San Francisco,CA,94016 +236465,Bose SoundSport Headphones,1,99.99,2019-07-28 06:40:00,143 Sunset St, Boston,MA,02215 +236466,Bose SoundSport Headphones,1,99.99,2019-07-15 11:56:00,305 Maple St, Atlanta,GA,30301 +236467,Apple Airpods Headphones,1,150.0,2019-07-02 20:04:00,15 Cedar St, Seattle,WA,98101 +236468,AA Batteries (4-pack),1,3.84,2019-07-06 07:23:00,61 1st St, San Francisco,CA,94016 +236469,27in FHD Monitor,1,149.99,2019-07-01 14:44:00,171 Spruce St, Boston,MA,02215 +236470,34in Ultrawide Monitor,1,379.99,2019-07-14 09:07:00,867 Dogwood St, Dallas,TX,75001 +236471,Bose SoundSport Headphones,1,99.99,2019-07-02 16:54:00,828 Lincoln St, Austin,TX,73301 +236472,Bose SoundSport Headphones,1,99.99,2019-07-20 04:50:00,149 Highland St, San Francisco,CA,94016 +236472,AAA Batteries (4-pack),1,2.99,2019-07-20 04:50:00,149 Highland St, San Francisco,CA,94016 +236473,AA Batteries (4-pack),1,3.84,2019-07-21 15:22:00,397 River St, Dallas,TX,75001 +236474,Apple Airpods Headphones,1,150.0,2019-07-10 21:42:00,260 Spruce St, Atlanta,GA,30301 +236475,Apple Airpods Headphones,1,150.0,2019-07-01 12:09:00,408 14th St, Portland,ME,04101 +236476,Apple Airpods Headphones,1,150.0,2019-07-14 14:39:00,320 Washington St, Los Angeles,CA,90001 +236477,34in Ultrawide Monitor,1,379.99,2019-07-05 08:28:00,308 Church St, San Francisco,CA,94016 +236478,AA Batteries (4-pack),1,3.84,2019-07-10 10:23:00,53 Spruce St, San Francisco,CA,94016 +236479,Lightning Charging Cable,2,14.95,2019-07-24 18:48:00,501 Lake St, Portland,ME,04101 +236480,Apple Airpods Headphones,1,150.0,2019-07-13 21:40:00,906 Dogwood St, Los Angeles,CA,90001 +236481,Google Phone,1,600.0,2019-07-21 14:31:00,183 Dogwood St, San Francisco,CA,94016 +236481,USB-C Charging Cable,1,11.95,2019-07-21 14:31:00,183 Dogwood St, San Francisco,CA,94016 +236482,34in Ultrawide Monitor,1,379.99,2019-07-13 18:01:00,20 Cherry St, Seattle,WA,98101 +236483,AAA Batteries (4-pack),2,2.99,2019-07-20 14:45:00,391 South St, Boston,MA,02215 +236484,Lightning Charging Cable,1,14.95,2019-07-04 16:36:00,632 9th St, Boston,MA,02215 +236484,Macbook Pro Laptop,1,1700.0,2019-07-04 16:36:00,632 9th St, Boston,MA,02215 +236485,AAA Batteries (4-pack),5,2.99,2019-07-05 22:46:00,582 Maple St, Boston,MA,02215 +236486,USB-C Charging Cable,1,11.95,2019-07-20 09:03:00,880 Jefferson St, Atlanta,GA,30301 +236487,AA Batteries (4-pack),1,3.84,2019-07-24 09:02:00,119 9th St, Dallas,TX,75001 +236488,AA Batteries (4-pack),1,3.84,2019-07-11 12:04:00,508 Chestnut St, Boston,MA,02215 +236489,AA Batteries (4-pack),1,3.84,2019-07-15 21:25:00,512 Main St, San Francisco,CA,94016 +236490,Bose SoundSport Headphones,1,99.99,2019-07-05 09:32:00,923 14th St, Boston,MA,02215 +236491,USB-C Charging Cable,3,11.95,2019-07-23 10:59:00,749 Jackson St, New York City,NY,10001 +236492,Lightning Charging Cable,1,14.95,2019-07-31 01:16:00,973 9th St, San Francisco,CA,94016 +236493,AAA Batteries (4-pack),2,2.99,2019-07-31 22:54:00,447 14th St, Portland,OR,97035 +236494,USB-C Charging Cable,1,11.95,2019-07-04 17:59:00,443 Walnut St, San Francisco,CA,94016 +236495,AAA Batteries (4-pack),1,2.99,2019-07-04 21:35:00,408 Johnson St, New York City,NY,10001 +236496,Bose SoundSport Headphones,1,99.99,2019-07-31 17:58:00,249 Main St, Los Angeles,CA,90001 +236497,Wired Headphones,1,11.99,2019-07-20 22:05:00,222 10th St, Boston,MA,02215 +236498,Lightning Charging Cable,1,14.95,2019-07-30 21:10:00,754 Madison St, Portland,OR,97035 +236499,Wired Headphones,1,11.99,2019-07-07 10:03:00,973 Center St, San Francisco,CA,94016 +236500,Lightning Charging Cable,1,14.95,2019-07-17 01:07:00,451 Park St, San Francisco,CA,94016 +236501,AA Batteries (4-pack),2,3.84,2019-07-18 18:01:00,810 10th St, New York City,NY,10001 +236502,USB-C Charging Cable,1,11.95,2019-07-24 07:31:00,560 West St, Los Angeles,CA,90001 +236503,Wired Headphones,1,11.99,2019-07-18 21:02:00,492 11th St, Atlanta,GA,30301 +236504,Lightning Charging Cable,1,14.95,2019-07-07 22:35:00,975 Church St, Dallas,TX,75001 +236505,Lightning Charging Cable,1,14.95,2019-07-11 08:33:00,191 North St, Atlanta,GA,30301 +236506,USB-C Charging Cable,1,11.95,2019-07-29 22:16:00,14 4th St, San Francisco,CA,94016 +236507,iPhone,1,700.0,2019-07-04 06:47:00,255 Elm St, San Francisco,CA,94016 +236507,Lightning Charging Cable,1,14.95,2019-07-04 06:47:00,255 Elm St, San Francisco,CA,94016 +236508,USB-C Charging Cable,1,11.95,2019-07-18 19:25:00,76 Ridge St, Portland,OR,97035 +236509,Lightning Charging Cable,1,14.95,2019-07-12 14:36:00,171 2nd St, Atlanta,GA,30301 +236510,Bose SoundSport Headphones,1,99.99,2019-07-09 19:42:00,275 South St, Portland,OR,97035 +236511,Apple Airpods Headphones,1,150.0,2019-07-15 23:11:00,717 North St, San Francisco,CA,94016 +236512,Macbook Pro Laptop,1,1700.0,2019-07-07 17:09:00,656 1st St, San Francisco,CA,94016 +236513,27in 4K Gaming Monitor,1,389.99,2019-07-31 10:35:00,550 7th St, Austin,TX,73301 +236513,Bose SoundSport Headphones,1,99.99,2019-07-31 10:35:00,550 7th St, Austin,TX,73301 +236514,AA Batteries (4-pack),2,3.84,2019-08-01 00:36:00,820 Highland St, New York City,NY,10001 +236515,20in Monitor,1,109.99,2019-07-31 03:57:00,105 Meadow St, Austin,TX,73301 +236516,27in 4K Gaming Monitor,1,389.99,2019-07-20 22:49:00,76 Church St, San Francisco,CA,94016 +236517,34in Ultrawide Monitor,1,379.99,2019-07-17 20:12:00,610 Park St, San Francisco,CA,94016 +236518,USB-C Charging Cable,1,11.95,2019-07-10 15:30:00,438 2nd St, Dallas,TX,75001 +236519,USB-C Charging Cable,1,11.95,2019-07-27 17:50:00,651 6th St, New York City,NY,10001 +236520,AA Batteries (4-pack),1,3.84,2019-07-21 21:16:00,303 8th St, San Francisco,CA,94016 +236521,USB-C Charging Cable,1,11.95,2019-07-13 16:42:00,650 Lincoln St, Seattle,WA,98101 +236522,USB-C Charging Cable,1,11.95,2019-07-31 10:23:00,997 Dogwood St, Boston,MA,02215 +236523,USB-C Charging Cable,1,11.95,2019-07-07 11:21:00,617 Meadow St, New York City,NY,10001 +236524,34in Ultrawide Monitor,1,379.99,2019-07-28 18:31:00,500 Lakeview St, Atlanta,GA,30301 +236525,AAA Batteries (4-pack),2,2.99,2019-07-01 14:31:00,348 Forest St, Atlanta,GA,30301 +236526,Bose SoundSport Headphones,1,99.99,2019-07-29 15:27:00,991 Hickory St, Seattle,WA,98101 +236527,34in Ultrawide Monitor,1,379.99,2019-07-27 01:07:00,297 Hill St, Seattle,WA,98101 +236528,Bose SoundSport Headphones,1,99.99,2019-07-20 22:09:00,423 8th St, Los Angeles,CA,90001 +236529,AA Batteries (4-pack),1,3.84,2019-07-11 11:49:00,395 River St, San Francisco,CA,94016 +236530,USB-C Charging Cable,1,11.95,2019-07-09 10:12:00,688 Pine St, New York City,NY,10001 +236531,AAA Batteries (4-pack),1,2.99,2019-07-13 18:22:00,475 Dogwood St, San Francisco,CA,94016 +236532,Lightning Charging Cable,1,14.95,2019-07-26 08:52:00,978 Sunset St, New York City,NY,10001 +236533,Wired Headphones,1,11.99,2019-07-22 22:37:00,446 Wilson St, San Francisco,CA,94016 +236534,ThinkPad Laptop,1,999.99,2019-07-04 15:44:00,507 Dogwood St, Los Angeles,CA,90001 +236535,USB-C Charging Cable,1,11.95,2019-07-03 21:10:00,721 Church St, Portland,OR,97035 +236536,Vareebadd Phone,1,400.0,2019-07-08 18:53:00,59 South St, Boston,MA,02215 +236536,USB-C Charging Cable,1,11.95,2019-07-08 18:53:00,59 South St, Boston,MA,02215 +236537,Wired Headphones,1,11.99,2019-07-24 23:29:00,347 Lakeview St, Austin,TX,73301 +236538,Wired Headphones,1,11.99,2019-07-19 11:25:00,359 Wilson St, Boston,MA,02215 +236539,iPhone,1,700.0,2019-07-18 17:19:00,197 Lincoln St, Boston,MA,02215 +236539,Apple Airpods Headphones,2,150.0,2019-07-18 17:19:00,197 Lincoln St, Boston,MA,02215 +236540,iPhone,1,700.0,2019-07-03 13:46:00,170 Main St, Los Angeles,CA,90001 +236541,Lightning Charging Cable,1,14.95,2019-07-22 17:59:00,128 Maple St, Boston,MA,02215 +236542,ThinkPad Laptop,1,999.99,2019-07-23 08:36:00,460 Washington St, Boston,MA,02215 +236543,AA Batteries (4-pack),1,3.84,2019-07-06 16:40:00,830 Dogwood St, New York City,NY,10001 +236544,USB-C Charging Cable,1,11.95,2019-07-02 23:59:00,342 Lake St, San Francisco,CA,94016 +236545,34in Ultrawide Monitor,1,379.99,2019-07-30 14:35:00,295 2nd St, New York City,NY,10001 +236546,ThinkPad Laptop,1,999.99,2019-07-24 21:37:00,477 Cedar St, San Francisco,CA,94016 +236546,AAA Batteries (4-pack),2,2.99,2019-07-24 21:37:00,477 Cedar St, San Francisco,CA,94016 +236547,27in 4K Gaming Monitor,1,389.99,2019-07-21 23:47:00,634 2nd St, San Francisco,CA,94016 +236548,Lightning Charging Cable,2,14.95,2019-07-18 16:17:00,688 6th St, Seattle,WA,98101 +236549,Lightning Charging Cable,1,14.95,2019-07-10 00:01:00,772 Lake St, Seattle,WA,98101 +236550,Bose SoundSport Headphones,1,99.99,2019-07-10 11:52:00,995 11th St, Boston,MA,02215 +236551,Lightning Charging Cable,1,14.95,2019-07-27 00:07:00,811 Church St, San Francisco,CA,94016 +236552,AAA Batteries (4-pack),1,2.99,2019-07-23 10:51:00,543 Hill St, San Francisco,CA,94016 +236553,USB-C Charging Cable,2,11.95,2019-07-21 04:30:00,916 Jackson St, Seattle,WA,98101 +236554,Apple Airpods Headphones,1,150.0,2019-07-10 21:10:00,107 Chestnut St, Seattle,WA,98101 +236555,USB-C Charging Cable,1,11.95,2019-07-15 12:09:00,28 Jefferson St, Seattle,WA,98101 +236556,27in 4K Gaming Monitor,1,389.99,2019-07-03 21:59:00,212 Ridge St, New York City,NY,10001 +236557,AAA Batteries (4-pack),2,2.99,2019-07-30 09:00:00,995 4th St, New York City,NY,10001 +236558,AAA Batteries (4-pack),1,2.99,2019-07-04 00:03:00,240 13th St, Portland,OR,97035 +236559,USB-C Charging Cable,1,11.95,2019-07-20 17:07:00,422 Wilson St, Los Angeles,CA,90001 +236560,Lightning Charging Cable,1,14.95,2019-07-17 20:58:00,880 6th St, Portland,OR,97035 +236561,Macbook Pro Laptop,1,1700.0,2019-07-13 19:34:00,247 1st St, New York City,NY,10001 +236562,Apple Airpods Headphones,1,150.0,2019-07-29 05:08:00,609 Dogwood St, Boston,MA,02215 +236563,USB-C Charging Cable,1,11.95,2019-07-17 20:22:00,59 Lincoln St, Los Angeles,CA,90001 +236564,20in Monitor,1,109.99,2019-07-04 18:25:00,917 2nd St, Boston,MA,02215 +236565,USB-C Charging Cable,1,11.95,2019-07-18 01:29:00,634 Wilson St, San Francisco,CA,94016 +236566,Apple Airpods Headphones,1,150.0,2019-07-08 11:10:00,503 12th St, New York City,NY,10001 +236567,Bose SoundSport Headphones,1,99.99,2019-07-23 22:03:00,895 Cedar St, Los Angeles,CA,90001 +236568,AAA Batteries (4-pack),1,2.99,2019-07-05 20:10:00,377 1st St, Atlanta,GA,30301 +236569,Flatscreen TV,1,300.0,2019-07-24 08:04:00,188 Willow St, Austin,TX,73301 +236570,Lightning Charging Cable,1,14.95,2019-07-14 12:26:00,191 Walnut St, Los Angeles,CA,90001 +236571,Lightning Charging Cable,1,14.95,2019-07-14 09:10:00,746 Adams St, Los Angeles,CA,90001 +236572,Bose SoundSport Headphones,1,99.99,2019-07-17 13:52:00,631 14th St, New York City,NY,10001 +236573,AA Batteries (4-pack),1,3.84,2019-07-24 19:08:00,39 Chestnut St, San Francisco,CA,94016 +236574,USB-C Charging Cable,2,11.95,2019-07-27 08:47:00,321 2nd St, San Francisco,CA,94016 +236575,27in 4K Gaming Monitor,1,389.99,2019-07-04 14:57:00,200 2nd St, New York City,NY,10001 +236576,Google Phone,1,600.0,2019-07-26 15:33:00,323 Highland St, Los Angeles,CA,90001 +236576,USB-C Charging Cable,1,11.95,2019-07-26 15:33:00,323 Highland St, Los Angeles,CA,90001 +236577,Lightning Charging Cable,1,14.95,2019-07-30 02:07:00,341 Madison St, Seattle,WA,98101 +236578,AAA Batteries (4-pack),2,2.99,2019-07-19 18:09:00,844 Johnson St, Atlanta,GA,30301 +236579,Lightning Charging Cable,1,14.95,2019-07-22 17:34:00,165 9th St, Boston,MA,02215 +236580,USB-C Charging Cable,1,11.95,2019-07-23 08:02:00,804 Park St, San Francisco,CA,94016 +236581,Macbook Pro Laptop,1,1700.0,2019-07-09 07:54:00,300 Johnson St, Portland,OR,97035 +236582,USB-C Charging Cable,1,11.95,2019-07-08 15:46:00,148 Cedar St, Portland,OR,97035 +236583,Flatscreen TV,1,300.0,2019-07-16 11:47:00,596 Ridge St, Seattle,WA,98101 +236584,AA Batteries (4-pack),1,3.84,2019-07-31 16:46:00,941 12th St, San Francisco,CA,94016 +236585,USB-C Charging Cable,1,11.95,2019-07-29 13:27:00,312 8th St, Seattle,WA,98101 +236586,AAA Batteries (4-pack),1,2.99,2019-07-13 21:38:00,464 Wilson St, Dallas,TX,75001 +236587,USB-C Charging Cable,1,11.95,2019-07-29 15:10:00,873 North St, Seattle,WA,98101 +236588,Wired Headphones,3,11.99,2019-07-20 15:24:00,757 Lincoln St, New York City,NY,10001 +236589,Wired Headphones,1,11.99,2019-07-22 20:13:00,995 Hill St, Seattle,WA,98101 +236590,AAA Batteries (4-pack),1,2.99,2019-07-10 10:48:00,375 Adams St, Los Angeles,CA,90001 +236591,AA Batteries (4-pack),1,3.84,2019-07-22 19:54:00,570 Wilson St, San Francisco,CA,94016 +236592,Bose SoundSport Headphones,1,99.99,2019-07-29 11:38:00,146 Meadow St, San Francisco,CA,94016 +236593,Bose SoundSport Headphones,1,99.99,2019-07-23 15:24:00,636 6th St, Boston,MA,02215 +236594,Bose SoundSport Headphones,1,99.99,2019-07-14 16:18:00,153 Lake St, Dallas,TX,75001 +236595,AAA Batteries (4-pack),1,2.99,2019-07-30 16:09:00,888 Hill St, Portland,OR,97035 +236596,Wired Headphones,1,11.99,2019-07-20 21:47:00,336 8th St, Dallas,TX,75001 +236597,Apple Airpods Headphones,1,150.0,2019-07-30 22:44:00,840 Chestnut St, Atlanta,GA,30301 +236598,Google Phone,1,600.0,2019-07-21 21:49:00,541 North St, Boston,MA,02215 +236599,AA Batteries (4-pack),1,3.84,2019-07-06 23:43:00,256 Lincoln St, San Francisco,CA,94016 +236600,Apple Airpods Headphones,1,150.0,2019-07-27 08:26:00,165 South St, Austin,TX,73301 +236601,34in Ultrawide Monitor,1,379.99,2019-07-01 10:56:00,27 Maple St, Los Angeles,CA,90001 +236602,Lightning Charging Cable,1,14.95,2019-07-07 01:02:00,185 1st St, San Francisco,CA,94016 +236602,iPhone,1,700.0,2019-07-07 01:02:00,185 1st St, San Francisco,CA,94016 +236603,Lightning Charging Cable,1,14.95,2019-07-29 08:52:00,562 Ridge St, Seattle,WA,98101 +236604,Apple Airpods Headphones,1,150.0,2019-07-26 16:46:00,114 Sunset St, Dallas,TX,75001 +236605,AAA Batteries (4-pack),1,2.99,2019-07-31 11:36:00,356 West St, San Francisco,CA,94016 +236606,AAA Batteries (4-pack),1,2.99,2019-07-05 19:44:00,496 Willow St, San Francisco,CA,94016 +236607,Google Phone,1,600.0,2019-07-27 16:30:00,922 Madison St, San Francisco,CA,94016 +236608,27in FHD Monitor,1,149.99,2019-07-08 23:52:00,278 Washington St, Boston,MA,02215 +236609,Lightning Charging Cable,2,14.95,2019-07-06 13:46:00,988 Chestnut St, Austin,TX,73301 +236610,USB-C Charging Cable,1,11.95,2019-07-30 17:25:00,943 Hill St, San Francisco,CA,94016 +236611,27in FHD Monitor,2,149.99,2019-07-11 20:09:00,821 1st St, San Francisco,CA,94016 +236612,AAA Batteries (4-pack),1,2.99,2019-07-28 14:17:00,882 2nd St, San Francisco,CA,94016 +236613,Apple Airpods Headphones,1,150.0,2019-07-28 01:00:00,705 Pine St, Boston,MA,02215 +236614,AAA Batteries (4-pack),1,2.99,2019-07-01 14:39:00,332 12th St, Los Angeles,CA,90001 +236615,Wired Headphones,1,11.99,2019-07-01 14:22:00,834 Chestnut St, Portland,ME,04101 +236616,Google Phone,1,600.0,2019-07-19 20:14:00,984 Dogwood St, Boston,MA,02215 +236616,USB-C Charging Cable,1,11.95,2019-07-19 20:14:00,984 Dogwood St, Boston,MA,02215 +236617,USB-C Charging Cable,1,11.95,2019-07-01 13:36:00,67 6th St, Los Angeles,CA,90001 +236618,AA Batteries (4-pack),1,3.84,2019-07-07 19:48:00,229 13th St, San Francisco,CA,94016 +236619,Bose SoundSport Headphones,1,99.99,2019-07-01 12:47:00,709 Sunset St, Los Angeles,CA,90001 +236620,Apple Airpods Headphones,1,150.0,2019-07-29 12:50:00,674 Lake St, San Francisco,CA,94016 +236621,34in Ultrawide Monitor,1,379.99,2019-07-15 01:28:00,792 Cherry St, Portland,OR,97035 +236622,Bose SoundSport Headphones,1,99.99,2019-07-03 23:48:00,156 Elm St, New York City,NY,10001 +236623,34in Ultrawide Monitor,1,379.99,2019-07-10 13:17:00,399 River St, Los Angeles,CA,90001 +236624,Bose SoundSport Headphones,1,99.99,2019-07-22 13:14:00,157 Main St, San Francisco,CA,94016 +236625,Wired Headphones,1,11.99,2019-07-06 22:28:00,291 14th St, Dallas,TX,75001 +236626,ThinkPad Laptop,1,999.99,2019-07-19 12:00:00,991 1st St, Dallas,TX,75001 +236627,Lightning Charging Cable,1,14.95,2019-07-29 18:16:00,429 Ridge St, Boston,MA,02215 +236628,Wired Headphones,1,11.99,2019-07-08 19:57:00,769 Jackson St, Atlanta,GA,30301 +236629,Apple Airpods Headphones,1,150.0,2019-07-02 23:59:00,682 Lake St, New York City,NY,10001 +236630,Wired Headphones,1,11.99,2019-07-13 09:45:00,962 12th St, Boston,MA,02215 +236631,Wired Headphones,1,11.99,2019-07-31 19:14:00,125 7th St, San Francisco,CA,94016 +236632,Apple Airpods Headphones,1,150.0,2019-07-29 13:11:00,295 Sunset St, Seattle,WA,98101 +236633,USB-C Charging Cable,1,11.95,2019-07-20 09:46:00,393 Johnson St, San Francisco,CA,94016 +236634,iPhone,1,700.0,2019-07-30 17:12:00,399 Spruce St, Portland,OR,97035 +236635,Bose SoundSport Headphones,1,99.99,2019-07-08 12:56:00,777 Pine St, New York City,NY,10001 +236636,AA Batteries (4-pack),1,3.84,2019-07-03 16:47:00,535 8th St, New York City,NY,10001 +236637,Lightning Charging Cable,1,14.95,2019-07-10 12:19:00,48 Walnut St, Dallas,TX,75001 +236638,Lightning Charging Cable,1,14.95,2019-07-03 19:36:00,409 Wilson St, Los Angeles,CA,90001 +236639,ThinkPad Laptop,1,999.99,2019-07-19 20:34:00,364 Forest St, San Francisco,CA,94016 +236640,27in 4K Gaming Monitor,1,389.99,2019-07-30 19:29:00,49 Hill St, San Francisco,CA,94016 +236641,Apple Airpods Headphones,1,150.0,2019-07-03 18:03:00,785 Spruce St, Portland,ME,04101 +236642,Wired Headphones,1,11.99,2019-07-12 21:48:00,813 Spruce St, New York City,NY,10001 +236642,Macbook Pro Laptop,1,1700.0,2019-07-12 21:48:00,813 Spruce St, New York City,NY,10001 +236643,Bose SoundSport Headphones,1,99.99,2019-07-12 11:15:00,466 South St, New York City,NY,10001 +236644,Bose SoundSport Headphones,1,99.99,2019-07-18 20:54:00,776 Lake St, Seattle,WA,98101 +236645,20in Monitor,1,109.99,2019-07-30 22:27:00,910 Adams St, Los Angeles,CA,90001 +236646,ThinkPad Laptop,1,999.99,2019-07-22 08:57:00,816 Center St, San Francisco,CA,94016 +236647,Flatscreen TV,1,300.0,2019-07-07 19:09:00,969 Hill St, Los Angeles,CA,90001 +236648,AA Batteries (4-pack),2,3.84,2019-07-04 18:28:00,640 4th St, San Francisco,CA,94016 +236649,Macbook Pro Laptop,1,1700.0,2019-07-13 19:10:00,664 Wilson St, New York City,NY,10001 +236650,Flatscreen TV,1,300.0,2019-07-11 14:57:00,89 Lake St, San Francisco,CA,94016 +236651,Lightning Charging Cable,1,14.95,2019-07-15 11:23:00,4 5th St, New York City,NY,10001 +236652,Bose SoundSport Headphones,1,99.99,2019-07-14 19:18:00,736 Maple St, San Francisco,CA,94016 +236653,USB-C Charging Cable,1,11.95,2019-07-15 17:40:00,684 Elm St, Austin,TX,73301 +236654,Bose SoundSport Headphones,1,99.99,2019-07-16 22:25:00,438 Highland St, San Francisco,CA,94016 +236655,Lightning Charging Cable,1,14.95,2019-07-13 21:36:00,540 13th St, San Francisco,CA,94016 +236656,USB-C Charging Cable,2,11.95,2019-07-17 17:57:00,238 Washington St, Austin,TX,73301 +236657,Apple Airpods Headphones,1,150.0,2019-07-13 11:47:00,813 5th St, San Francisco,CA,94016 +236658,ThinkPad Laptop,1,999.99,2019-07-02 11:39:00,494 North St, New York City,NY,10001 +236659,Wired Headphones,1,11.99,2019-07-01 18:34:00,375 5th St, New York City,NY,10001 +236660,AA Batteries (4-pack),1,3.84,2019-07-23 12:38:00,430 13th St, San Francisco,CA,94016 +236661,Google Phone,1,600.0,2019-07-04 10:54:00,373 5th St, Atlanta,GA,30301 +236661,Wired Headphones,1,11.99,2019-07-04 10:54:00,373 5th St, Atlanta,GA,30301 +236662,USB-C Charging Cable,1,11.95,2019-07-09 14:41:00,261 Forest St, Seattle,WA,98101 +236663,Wired Headphones,1,11.99,2019-07-17 07:26:00,562 North St, San Francisco,CA,94016 +236664,AAA Batteries (4-pack),1,2.99,2019-07-03 08:18:00,301 12th St, San Francisco,CA,94016 +236665,Wired Headphones,1,11.99,2019-07-20 16:16:00,694 Meadow St, Atlanta,GA,30301 +236666,20in Monitor,1,109.99,2019-07-31 20:11:00,866 14th St, San Francisco,CA,94016 +236667,AAA Batteries (4-pack),1,2.99,2019-07-17 22:29:00,249 Cherry St, Dallas,TX,75001 +236668,Wired Headphones,1,11.99,2019-07-30 19:28:00,727 Wilson St, Austin,TX,73301 +236669,AAA Batteries (4-pack),1,2.99,2019-07-10 01:50:00,743 9th St, New York City,NY,10001 +209921,USB-C Charging Cable,1,11.95,2019-06-23 19:34:00,950 Walnut St, Portland,ME,04101 +209922,Macbook Pro Laptop,1,1700.0,2019-06-30 10:05:00,80 4th St, San Francisco,CA,94016 +209923,ThinkPad Laptop,1,999.99,2019-06-24 20:18:00,402 Jackson St, Los Angeles,CA,90001 +209924,27in FHD Monitor,1,149.99,2019-06-05 10:21:00,560 10th St, Seattle,WA,98101 +209925,Bose SoundSport Headphones,1,99.99,2019-06-25 18:58:00,545 2nd St, San Francisco,CA,94016 +209926,Apple Airpods Headphones,1,150.0,2019-06-28 20:04:00,386 Lake St, Seattle,WA,98101 +209927,Lightning Charging Cable,1,14.95,2019-06-28 00:07:00,29 Lincoln St, Los Angeles,CA,90001 +209928,Apple Airpods Headphones,1,150.0,2019-06-16 21:30:00,350 9th St, New York City,NY,10001 +209929,Wired Headphones,1,11.99,2019-06-28 10:56:00,612 Meadow St, Portland,OR,97035 +209930,27in FHD Monitor,1,149.99,2019-06-02 11:22:00,625 Ridge St, Los Angeles,CA,90001 +209931,Apple Airpods Headphones,1,150.0,2019-06-24 13:55:00,761 14th St, New York City,NY,10001 +209932,Flatscreen TV,1,300.0,2019-06-12 14:36:00,858 8th St, Boston,MA,02215 +209933,AA Batteries (4-pack),1,3.84,2019-06-07 15:39:00,932 Lakeview St, San Francisco,CA,94016 +209934,AAA Batteries (4-pack),1,2.99,2019-06-13 20:53:00,387 Dogwood St, Boston,MA,02215 +209935,AAA Batteries (4-pack),1,2.99,2019-06-09 11:13:00,530 Cedar St, Boston,MA,02215 +209936,34in Ultrawide Monitor,1,379.99,2019-06-15 12:21:00,769 Dogwood St, Dallas,TX,75001 +209937,AA Batteries (4-pack),1,3.84,2019-06-29 18:01:00,675 Maple St, Dallas,TX,75001 +209938,iPhone,1,700.0,2019-06-15 12:29:00,766 Meadow St, Seattle,WA,98101 +209938,Wired Headphones,1,11.99,2019-06-15 12:29:00,766 Meadow St, Seattle,WA,98101 +209939,Google Phone,1,600.0,2019-06-08 16:55:00,313 South St, San Francisco,CA,94016 +209940,34in Ultrawide Monitor,1,379.99,2019-06-26 15:24:00,990 South St, Atlanta,GA,30301 +209941,Wired Headphones,1,11.99,2019-06-27 11:18:00,486 13th St, Boston,MA,02215 +209942,27in 4K Gaming Monitor,1,389.99,2019-06-19 13:52:00,874 Wilson St, Austin,TX,73301 +209943,AAA Batteries (4-pack),3,2.99,2019-06-23 16:19:00,158 Willow St, Los Angeles,CA,90001 +209944,27in FHD Monitor,1,149.99,2019-06-02 19:10:00,916 Lake St, Austin,TX,73301 +209945,AA Batteries (4-pack),1,3.84,2019-06-28 08:53:00,211 12th St, San Francisco,CA,94016 +209946,Google Phone,1,600.0,2019-06-28 22:13:00,66 Cherry St, San Francisco,CA,94016 +209947,Apple Airpods Headphones,1,150.0,2019-06-06 22:41:00,7 Lakeview St, San Francisco,CA,94016 +209948,Macbook Pro Laptop,1,1700.0,2019-06-09 01:48:00,101 Spruce St, Atlanta,GA,30301 +209949,Google Phone,1,600.0,2019-06-23 07:45:00,637 12th St, San Francisco,CA,94016 +209949,USB-C Charging Cable,1,11.95,2019-06-23 07:45:00,637 12th St, San Francisco,CA,94016 +209950,Wired Headphones,2,11.99,2019-06-01 18:03:00,689 Walnut St, Los Angeles,CA,90001 +209951,27in 4K Gaming Monitor,1,389.99,2019-06-30 13:04:00,998 Johnson St, New York City,NY,10001 +209952,20in Monitor,1,109.99,2019-06-26 17:48:00,314 Willow St, Dallas,TX,75001 +209953,Google Phone,1,600.0,2019-06-16 16:59:00,753 6th St, Dallas,TX,75001 +209954,iPhone,1,700.0,2019-06-16 07:21:00,599 2nd St, San Francisco,CA,94016 +209955,AA Batteries (4-pack),1,3.84,2019-06-15 21:25:00,549 2nd St, Atlanta,GA,30301 +209956,AA Batteries (4-pack),2,3.84,2019-06-26 15:23:00,910 Jackson St, Seattle,WA,98101 +209957,AA Batteries (4-pack),1,3.84,2019-06-13 12:23:00,545 Dogwood St, Los Angeles,CA,90001 +209958,Wired Headphones,1,11.99,2019-06-06 12:09:00,326 Hickory St, Los Angeles,CA,90001 +209959,USB-C Charging Cable,1,11.95,2019-06-01 15:48:00,88 River St, Atlanta,GA,30301 +209960,USB-C Charging Cable,1,11.95,2019-06-22 11:53:00,333 Sunset St, Dallas,TX,75001 +209960,AA Batteries (4-pack),1,3.84,2019-06-22 11:53:00,333 Sunset St, Dallas,TX,75001 +209961,iPhone,1,700.0,2019-06-01 23:00:00,482 South St, Austin,TX,73301 +209961,Lightning Charging Cable,1,14.95,2019-06-01 23:00:00,482 South St, Austin,TX,73301 +209962,USB-C Charging Cable,1,11.95,2019-06-23 10:58:00,441 Cherry St, New York City,NY,10001 +209963,Lightning Charging Cable,1,14.95,2019-06-13 18:58:00,551 Hill St, Boston,MA,02215 +209964,USB-C Charging Cable,2,11.95,2019-06-11 14:30:00,822 8th St, Los Angeles,CA,90001 +209965,20in Monitor,1,109.99,2019-06-24 14:00:00,910 North St, San Francisco,CA,94016 +209966,Lightning Charging Cable,1,14.95,2019-06-20 09:46:00,743 Adams St, New York City,NY,10001 +209967,AA Batteries (4-pack),2,3.84,2019-06-21 21:18:00,584 Chestnut St, San Francisco,CA,94016 +209968,Apple Airpods Headphones,1,150.0,2019-06-23 13:06:00,120 Church St, Dallas,TX,75001 +209969,Apple Airpods Headphones,1,150.0,2019-06-21 15:55:00,133 Sunset St, Los Angeles,CA,90001 +209970,AAA Batteries (4-pack),1,2.99,2019-06-08 20:58:00,181 Meadow St, Seattle,WA,98101 +209971,AA Batteries (4-pack),1,3.84,2019-06-22 15:11:00,440 Maple St, Dallas,TX,75001 +209972,Wired Headphones,1,11.99,2019-06-14 17:09:00,690 11th St, New York City,NY,10001 +209973,Bose SoundSport Headphones,1,99.99,2019-06-06 12:20:00,658 Highland St, Austin,TX,73301 +209974,USB-C Charging Cable,1,11.95,2019-06-11 10:06:00,555 9th St, New York City,NY,10001 +209975,AA Batteries (4-pack),3,3.84,2019-06-05 21:25:00,152 Johnson St, New York City,NY,10001 +209976,Apple Airpods Headphones,1,150.0,2019-06-26 11:52:00,966 Washington St, Atlanta,GA,30301 +209977,AA Batteries (4-pack),1,3.84,2019-06-01 06:28:00,96 14th St, Los Angeles,CA,90001 +209978,Lightning Charging Cable,1,14.95,2019-06-05 13:50:00,57 1st St, Los Angeles,CA,90001 +209979,USB-C Charging Cable,1,11.95,2019-06-24 09:42:00,979 2nd St, San Francisco,CA,94016 +209980,Bose SoundSport Headphones,1,99.99,2019-06-28 20:28:00,875 Forest St, New York City,NY,10001 +209981,iPhone,1,700.0,2019-06-05 19:25:00,898 14th St, Los Angeles,CA,90001 +209982,27in 4K Gaming Monitor,1,389.99,2019-06-17 19:31:00,315 Forest St, New York City,NY,10001 +209983,Macbook Pro Laptop,1,1700.0,2019-06-22 16:25:00,702 Center St, Seattle,WA,98101 +209984,USB-C Charging Cable,1,11.95,2019-06-03 06:50:00,36 7th St, Seattle,WA,98101 +209985,Apple Airpods Headphones,1,150.0,2019-06-05 22:18:00,54 12th St, Portland,OR,97035 +209986,20in Monitor,1,109.99,2019-06-23 16:49:00,11 Wilson St, New York City,NY,10001 +209987,AAA Batteries (4-pack),3,2.99,2019-06-03 03:22:00,76 River St, Los Angeles,CA,90001 +209988,Wired Headphones,1,11.99,2019-06-27 18:04:00,403 Main St, San Francisco,CA,94016 +209989,iPhone,1,700.0,2019-06-19 23:34:00,285 8th St, Los Angeles,CA,90001 +209990,Google Phone,1,600.0,2019-06-16 20:31:00,557 Wilson St, Austin,TX,73301 +209991,AAA Batteries (4-pack),1,2.99,2019-06-02 19:00:00,835 Chestnut St, Boston,MA,02215 +209992,Apple Airpods Headphones,1,150.0,2019-06-21 07:51:00,207 13th St, Boston,MA,02215 +209993,USB-C Charging Cable,1,11.95,2019-06-04 18:14:00,810 Meadow St, Dallas,TX,75001 +209994,Lightning Charging Cable,1,14.95,2019-06-28 21:01:00,679 Washington St, Boston,MA,02215 +209995,27in 4K Gaming Monitor,1,389.99,2019-06-13 19:16:00,890 Washington St, Austin,TX,73301 +209996,Google Phone,1,600.0,2019-06-13 08:21:00,965 Johnson St, Austin,TX,73301 +209997,AA Batteries (4-pack),1,3.84,2019-06-19 11:23:00,594 Lake St, New York City,NY,10001 +209998,Bose SoundSport Headphones,1,99.99,2019-06-17 23:15:00,988 Madison St, San Francisco,CA,94016 +209999,Bose SoundSport Headphones,1,99.99,2019-06-16 08:37:00,949 10th St, Dallas,TX,75001 +210000,iPhone,1,700.0,2019-06-06 19:17:00,534 Park St, Los Angeles,CA,90001 +210001,AA Batteries (4-pack),1,3.84,2019-06-22 12:47:00,171 Madison St, Portland,OR,97035 +210002,AAA Batteries (4-pack),1,2.99,2019-06-26 13:28:00,124 Park St, San Francisco,CA,94016 +210003,Bose SoundSport Headphones,1,99.99,2019-06-26 15:09:00,928 West St, Boston,MA,02215 +210004,AAA Batteries (4-pack),1,2.99,2019-06-23 14:40:00,868 8th St, San Francisco,CA,94016 +210005,AAA Batteries (4-pack),1,2.99,2019-06-12 19:53:00,532 Willow St, Atlanta,GA,30301 +210006,Lightning Charging Cable,1,14.95,2019-06-21 19:02:00,186 14th St, Boston,MA,02215 +210007,iPhone,1,700.0,2019-06-30 09:06:00,133 Highland St, Dallas,TX,75001 +210008,27in FHD Monitor,1,149.99,2019-06-19 00:07:00,433 14th St, Portland,OR,97035 +210009,Bose SoundSport Headphones,1,99.99,2019-06-29 09:24:00,35 West St, Los Angeles,CA,90001 +210010,USB-C Charging Cable,1,11.95,2019-06-01 10:56:00,469 Pine St, Austin,TX,73301 +210011,AA Batteries (4-pack),1,3.84,2019-06-13 15:10:00,615 Forest St, Atlanta,GA,30301 +210012,34in Ultrawide Monitor,1,379.99,2019-06-04 17:21:00,507 1st St, San Francisco,CA,94016 +210013,AA Batteries (4-pack),2,3.84,2019-06-17 17:27:00,820 5th St, New York City,NY,10001 +210014,Wired Headphones,1,11.99,2019-06-28 17:08:00,465 Meadow St, Portland,OR,97035 +210015,Wired Headphones,1,11.99,2019-06-06 18:12:00,559 11th St, Atlanta,GA,30301 +210016,AA Batteries (4-pack),2,3.84,2019-06-22 22:17:00,34 14th St, San Francisco,CA,94016 +210017,AAA Batteries (4-pack),1,2.99,2019-06-18 17:03:00,624 Adams St, Atlanta,GA,30301 +210018,Lightning Charging Cable,1,14.95,2019-06-14 15:01:00,684 Maple St, San Francisco,CA,94016 +210019,Lightning Charging Cable,1,14.95,2019-06-27 17:10:00,505 Maple St, New York City,NY,10001 +210020,Apple Airpods Headphones,1,150.0,2019-06-26 15:02:00,920 Washington St, Los Angeles,CA,90001 +210021,AAA Batteries (4-pack),1,2.99,2019-06-07 23:22:00,627 Spruce St, Boston,MA,02215 +210022,Lightning Charging Cable,1,14.95,2019-06-29 08:19:00,943 9th St, San Francisco,CA,94016 +210023,AA Batteries (4-pack),3,3.84,2019-06-12 21:24:00,838 Dogwood St, Los Angeles,CA,90001 +210024,AAA Batteries (4-pack),1,2.99,2019-06-19 20:21:00,649 7th St, Dallas,TX,75001 +210025,20in Monitor,1,109.99,2019-06-02 16:59:00,940 14th St, New York City,NY,10001 +210026,Bose SoundSport Headphones,1,99.99,2019-06-12 13:42:00,878 4th St, San Francisco,CA,94016 +210027,Macbook Pro Laptop,1,1700.0,2019-06-05 14:35:00,763 2nd St, Los Angeles,CA,90001 +210028,27in FHD Monitor,1,149.99,2019-06-15 18:24:00,297 12th St, Dallas,TX,75001 +210029,Bose SoundSport Headphones,1,99.99,2019-06-05 15:21:00,509 4th St, Dallas,TX,75001 +210030,Macbook Pro Laptop,1,1700.0,2019-06-03 09:11:00,479 Willow St, Los Angeles,CA,90001 +210031,AAA Batteries (4-pack),1,2.99,2019-06-08 11:01:00,641 Lincoln St, Portland,OR,97035 +210032,AA Batteries (4-pack),1,3.84,2019-06-27 11:59:00,569 4th St, Atlanta,GA,30301 +210033,AA Batteries (4-pack),2,3.84,2019-06-15 18:25:00,749 North St, New York City,NY,10001 +210034,27in 4K Gaming Monitor,1,389.99,2019-06-14 18:07:00,476 1st St, Atlanta,GA,30301 +210035,27in FHD Monitor,1,149.99,2019-06-30 14:02:00,386 1st St, Dallas,TX,75001 +210036,AA Batteries (4-pack),1,3.84,2019-06-08 19:05:00,598 Meadow St, Boston,MA,02215 +210037,AAA Batteries (4-pack),1,2.99,2019-06-26 09:53:00,524 6th St, New York City,NY,10001 +210038,ThinkPad Laptop,1,999.99,2019-06-15 14:49:00,443 Maple St, New York City,NY,10001 +210039,AAA Batteries (4-pack),1,2.99,2019-06-10 09:08:00,988 Maple St, Dallas,TX,75001 +210040,AA Batteries (4-pack),1,3.84,2019-06-29 14:30:00,711 1st St, San Francisco,CA,94016 +210041,27in FHD Monitor,1,149.99,2019-06-17 21:31:00,225 West St, Atlanta,GA,30301 +210042,Flatscreen TV,1,300.0,2019-06-21 06:28:00,325 Park St, Portland,OR,97035 +210043,Apple Airpods Headphones,1,150.0,2019-06-16 23:20:00,395 Main St, Seattle,WA,98101 +210044,Apple Airpods Headphones,1,150.0,2019-06-14 00:28:00,372 Spruce St, Portland,OR,97035 +210045,Bose SoundSport Headphones,1,99.99,2019-06-03 19:58:00,287 Cedar St, Boston,MA,02215 +210046,Apple Airpods Headphones,1,150.0,2019-06-15 11:08:00,816 1st St, San Francisco,CA,94016 +210047,34in Ultrawide Monitor,1,379.99,2019-06-06 18:53:00,973 Lakeview St, San Francisco,CA,94016 +210048,Wired Headphones,1,11.99,2019-06-05 07:41:00,314 Ridge St, San Francisco,CA,94016 +210049,ThinkPad Laptop,1,999.99,2019-06-20 18:20:00,993 6th St, San Francisco,CA,94016 +210050,Bose SoundSport Headphones,1,99.99,2019-06-13 11:24:00,271 13th St, New York City,NY,10001 +210051,iPhone,1,700.0,2019-06-11 16:15:00,784 Pine St, Austin,TX,73301 +210052,USB-C Charging Cable,1,11.95,2019-06-18 14:01:00,24 Main St, Seattle,WA,98101 +210053,Lightning Charging Cable,1,14.95,2019-06-04 11:55:00,68 Lake St, Los Angeles,CA,90001 +210054,Lightning Charging Cable,1,14.95,2019-06-22 18:26:00,175 6th St, Los Angeles,CA,90001 +210055,Apple Airpods Headphones,1,150.0,2019-06-17 20:00:00,575 Wilson St, Portland,ME,04101 +210056,Macbook Pro Laptop,1,1700.0,2019-06-09 00:13:00,171 Lakeview St, Seattle,WA,98101 +210057,AAA Batteries (4-pack),2,2.99,2019-06-19 09:23:00,82 2nd St, Boston,MA,02215 +210058,Lightning Charging Cable,1,14.95,2019-06-12 14:17:00,641 1st St, Austin,TX,73301 +210059,27in FHD Monitor,1,149.99,2019-06-06 18:50:00,902 Hickory St, Los Angeles,CA,90001 +210060,USB-C Charging Cable,1,11.95,2019-06-06 20:24:00,592 Elm St, Portland,OR,97035 +210061,Flatscreen TV,1,300.0,2019-06-28 23:36:00,975 Elm St, San Francisco,CA,94016 +210062,AAA Batteries (4-pack),1,2.99,2019-06-04 14:37:00,709 Church St, New York City,NY,10001 +210063,Lightning Charging Cable,1,14.95,2019-06-19 23:19:00,77 Highland St, Atlanta,GA,30301 +210064,Lightning Charging Cable,1,14.95,2019-06-16 20:39:00,101 Lincoln St, Atlanta,GA,30301 +210064,27in FHD Monitor,1,149.99,2019-06-16 20:39:00,101 Lincoln St, Atlanta,GA,30301 +210065,Lightning Charging Cable,1,14.95,2019-06-20 15:11:00,490 River St, San Francisco,CA,94016 +210066,iPhone,1,700.0,2019-06-07 12:07:00,691 Cherry St, Dallas,TX,75001 +210067,Wired Headphones,1,11.99,2019-06-16 15:47:00,471 Lincoln St, Los Angeles,CA,90001 +210068,AA Batteries (4-pack),1,3.84,2019-06-09 16:40:00,868 6th St, San Francisco,CA,94016 +210069,Google Phone,1,600.0,2019-06-11 06:26:00,743 2nd St, New York City,NY,10001 +210070,AAA Batteries (4-pack),1,2.99,2019-06-19 17:05:00,977 Johnson St, San Francisco,CA,94016 +210071,Lightning Charging Cable,1,14.95,2019-06-10 17:31:00,988 Pine St, Portland,OR,97035 +210072,AA Batteries (4-pack),2,3.84,2019-06-19 16:07:00,921 4th St, San Francisco,CA,94016 +210073,Bose SoundSport Headphones,1,99.99,2019-06-14 17:21:00,400 Johnson St, Dallas,TX,75001 +210074,AA Batteries (4-pack),2,3.84,2019-06-25 10:06:00,794 Wilson St, Los Angeles,CA,90001 +210075,USB-C Charging Cable,1,11.95,2019-06-07 14:29:00,216 Main St, Los Angeles,CA,90001 +210076,AA Batteries (4-pack),1,3.84,2019-06-16 22:58:00,168 Washington St, New York City,NY,10001 +210077,Wired Headphones,1,11.99,2019-06-15 07:33:00,357 8th St, San Francisco,CA,94016 +210078,ThinkPad Laptop,1,999.99,2019-06-08 17:12:00,981 Chestnut St, Portland,OR,97035 +210079,LG Dryer,1,600.0,2019-06-10 16:48:00,516 Park St, San Francisco,CA,94016 +210080,AAA Batteries (4-pack),1,2.99,2019-06-24 21:20:00,280 Spruce St, Austin,TX,73301 +210081,Bose SoundSport Headphones,1,99.99,2019-06-01 21:29:00,354 Dogwood St, Atlanta,GA,30301 +210082,USB-C Charging Cable,1,11.95,2019-06-02 15:26:00,119 11th St, Los Angeles,CA,90001 +210083,Lightning Charging Cable,1,14.95,2019-06-05 09:51:00,468 12th St, Boston,MA,02215 +210084,ThinkPad Laptop,1,999.99,2019-06-11 18:16:00,696 Adams St, Los Angeles,CA,90001 +210085,27in FHD Monitor,1,149.99,2019-06-08 19:13:00,425 13th St, Austin,TX,73301 +210086,34in Ultrawide Monitor,1,379.99,2019-06-02 21:09:00,550 Lake St, San Francisco,CA,94016 +210087,Lightning Charging Cable,1,14.95,2019-06-30 12:11:00,720 Dogwood St, San Francisco,CA,94016 +210088,Wired Headphones,1,11.99,2019-06-18 18:37:00,619 7th St, Austin,TX,73301 +210089,USB-C Charging Cable,1,11.95,2019-06-24 19:10:00,177 8th St, Los Angeles,CA,90001 +210090,AAA Batteries (4-pack),3,2.99,2019-06-29 15:43:00,534 Johnson St, Portland,OR,97035 +210091,Macbook Pro Laptop,1,1700.0,2019-06-03 05:39:00,238 5th St, San Francisco,CA,94016 +210092,USB-C Charging Cable,1,11.95,2019-06-02 19:52:00,359 Jefferson St, San Francisco,CA,94016 +210093,Apple Airpods Headphones,1,150.0,2019-06-04 08:52:00,2 Hill St, San Francisco,CA,94016 +210094,AAA Batteries (4-pack),1,2.99,2019-06-06 11:55:00,968 2nd St, Austin,TX,73301 +210095,AAA Batteries (4-pack),2,2.99,2019-06-27 14:01:00,930 North St, Atlanta,GA,30301 +210096,27in FHD Monitor,1,149.99,2019-06-10 10:17:00,126 8th St, Atlanta,GA,30301 +210097,Lightning Charging Cable,1,14.95,2019-06-07 12:26:00,399 Spruce St, Seattle,WA,98101 +210098,AAA Batteries (4-pack),1,2.99,2019-06-06 00:11:00,587 Adams St, San Francisco,CA,94016 +210099,Lightning Charging Cable,2,14.95,2019-06-17 20:56:00,362 Highland St, Seattle,WA,98101 +210100,Apple Airpods Headphones,1,150.0,2019-06-27 09:30:00,550 7th St, New York City,NY,10001 +210101,Vareebadd Phone,1,400.0,2019-06-05 13:53:00,944 Hickory St, Los Angeles,CA,90001 +210102,Wired Headphones,1,11.99,2019-06-17 09:05:00,275 Forest St, San Francisco,CA,94016 +210103,Google Phone,1,600.0,2019-06-01 17:58:00,626 12th St, Los Angeles,CA,90001 +210104,Bose SoundSport Headphones,1,99.99,2019-06-14 16:51:00,324 Lake St, Los Angeles,CA,90001 +210105,AA Batteries (4-pack),3,3.84,2019-06-19 20:22:00,445 11th St, Boston,MA,02215 +210106,Wired Headphones,2,11.99,2019-06-12 20:04:00,531 Johnson St, Austin,TX,73301 +210107,Lightning Charging Cable,1,14.95,2019-06-13 07:19:00,325 Jefferson St, Los Angeles,CA,90001 +210108,27in FHD Monitor,1,149.99,2019-06-25 12:37:00,859 Center St, San Francisco,CA,94016 +210109,Lightning Charging Cable,1,14.95,2019-06-24 12:04:00,820 West St, Boston,MA,02215 +210110,Apple Airpods Headphones,1,150.0,2019-06-13 18:26:00,194 Hill St, Portland,OR,97035 +210111,Lightning Charging Cable,1,14.95,2019-06-12 20:58:00,792 9th St, Boston,MA,02215 +210112,USB-C Charging Cable,1,11.95,2019-06-05 21:44:00,838 Center St, San Francisco,CA,94016 +210113,USB-C Charging Cable,1,11.95,2019-06-30 18:44:00,258 Hickory St, Seattle,WA,98101 +210114,Wired Headphones,1,11.99,2019-06-20 07:19:00,559 Walnut St, San Francisco,CA,94016 +210115,Apple Airpods Headphones,1,150.0,2019-06-04 19:16:00,85 6th St, Boston,MA,02215 +210116,Bose SoundSport Headphones,1,99.99,2019-06-13 21:52:00,65 Elm St, San Francisco,CA,94016 +210117,Bose SoundSport Headphones,1,99.99,2019-06-25 17:23:00,371 9th St, New York City,NY,10001 +210118,Bose SoundSport Headphones,1,99.99,2019-06-23 12:29:00,208 1st St, San Francisco,CA,94016 +210119,Wired Headphones,2,11.99,2019-06-24 18:02:00,800 River St, Los Angeles,CA,90001 +210120,AA Batteries (4-pack),1,3.84,2019-06-28 11:00:00,316 Sunset St, Dallas,TX,75001 +210121,Wired Headphones,1,11.99,2019-06-10 17:13:00,330 Lake St, Boston,MA,02215 +210122,AA Batteries (4-pack),1,3.84,2019-06-27 21:23:00,448 Jefferson St, Dallas,TX,75001 +210123,AAA Batteries (4-pack),1,2.99,2019-06-01 22:36:00,194 12th St, San Francisco,CA,94016 +210124,Wired Headphones,1,11.99,2019-06-13 10:16:00,256 Washington St, Portland,ME,04101 +210125,Apple Airpods Headphones,1,150.0,2019-06-01 11:02:00,889 Sunset St, Boston,MA,02215 +210126,20in Monitor,1,109.99,2019-06-21 18:51:00,803 Pine St, Los Angeles,CA,90001 +210127,AA Batteries (4-pack),1,3.84,2019-06-15 11:23:00,592 Jackson St, San Francisco,CA,94016 +210128,Lightning Charging Cable,1,14.95,2019-06-08 07:20:00,880 Jackson St, New York City,NY,10001 +210129,USB-C Charging Cable,1,11.95,2019-06-11 12:13:00,36 6th St, Atlanta,GA,30301 +210130,AAA Batteries (4-pack),5,2.99,2019-06-11 10:26:00,714 Lincoln St, San Francisco,CA,94016 +210131,AA Batteries (4-pack),1,3.84,2019-06-29 10:16:00,653 Maple St, San Francisco,CA,94016 +210132,Apple Airpods Headphones,2,150.0,2019-06-18 21:24:00,127 5th St, San Francisco,CA,94016 +210133,AA Batteries (4-pack),2,3.84,2019-06-26 19:19:00,712 Park St, Seattle,WA,98101 +210134,AA Batteries (4-pack),1,3.84,2019-06-17 11:40:00,362 Chestnut St, Portland,OR,97035 +210135,Wired Headphones,2,11.99,2019-06-26 23:56:00,557 Dogwood St, San Francisco,CA,94016 +210136,Wired Headphones,1,11.99,2019-06-12 22:13:00,554 Dogwood St, Dallas,TX,75001 +210137,AA Batteries (4-pack),1,3.84,2019-06-18 20:05:00,479 2nd St, Los Angeles,CA,90001 +210138,27in 4K Gaming Monitor,1,389.99,2019-06-25 17:58:00,445 Wilson St, San Francisco,CA,94016 +210139,AA Batteries (4-pack),1,3.84,2019-06-02 20:55:00,572 Elm St, Boston,MA,02215 +210140,AA Batteries (4-pack),1,3.84,2019-06-18 13:54:00,746 Lincoln St, Los Angeles,CA,90001 +210141,Bose SoundSport Headphones,1,99.99,2019-06-15 18:45:00,6 Lake St, Los Angeles,CA,90001 +210142,Flatscreen TV,1,300.0,2019-06-24 18:26:00,669 7th St, San Francisco,CA,94016 +210143,Bose SoundSport Headphones,1,99.99,2019-06-25 10:05:00,777 Ridge St, Atlanta,GA,30301 +210144,27in 4K Gaming Monitor,1,389.99,2019-06-17 15:19:00,255 5th St, Portland,OR,97035 +210144,AA Batteries (4-pack),1,3.84,2019-06-17 15:19:00,255 5th St, Portland,OR,97035 +210145,20in Monitor,1,109.99,2019-06-28 22:20:00,860 Washington St, Atlanta,GA,30301 +210146,AA Batteries (4-pack),1,3.84,2019-06-25 20:20:00,199 7th St, San Francisco,CA,94016 +210147,Bose SoundSport Headphones,1,99.99,2019-06-12 22:37:00,144 Maple St, Austin,TX,73301 +210148,20in Monitor,1,109.99,2019-06-16 07:24:00,710 Washington St, Atlanta,GA,30301 +210148,Wired Headphones,1,11.99,2019-06-16 07:24:00,710 Washington St, Atlanta,GA,30301 +210149,USB-C Charging Cable,1,11.95,2019-06-14 17:09:00,978 Walnut St, Atlanta,GA,30301 +210150,27in FHD Monitor,1,149.99,2019-06-11 13:10:00,149 Pine St, San Francisco,CA,94016 +210151,USB-C Charging Cable,1,11.95,2019-06-10 21:51:00,655 1st St, Los Angeles,CA,90001 +210152,AAA Batteries (4-pack),2,2.99,2019-06-20 22:11:00,937 10th St, Portland,OR,97035 +210153,Lightning Charging Cable,2,14.95,2019-06-09 14:58:00,305 Cherry St, New York City,NY,10001 +210154,iPhone,1,700.0,2019-06-02 16:07:00,273 Madison St, New York City,NY,10001 +210155,AAA Batteries (4-pack),1,2.99,2019-06-08 18:33:00,636 West St, New York City,NY,10001 +210156,USB-C Charging Cable,1,11.95,2019-06-02 11:37:00,333 13th St, Los Angeles,CA,90001 +210157,AA Batteries (4-pack),1,3.84,2019-06-20 08:46:00,697 West St, San Francisco,CA,94016 +210158,27in 4K Gaming Monitor,1,389.99,2019-06-12 11:50:00,65 Hill St, San Francisco,CA,94016 +210159,Wired Headphones,1,11.99,2019-06-12 13:43:00,488 Johnson St, Dallas,TX,75001 +210160,Macbook Pro Laptop,1,1700.0,2019-06-18 13:22:00,711 Ridge St, New York City,NY,10001 +210161,Apple Airpods Headphones,1,150.0,2019-06-27 19:24:00,549 5th St, Boston,MA,02215 +210162,Macbook Pro Laptop,1,1700.0,2019-06-20 21:02:00,237 Maple St, Seattle,WA,98101 +210163,USB-C Charging Cable,1,11.95,2019-06-16 13:57:00,584 Meadow St, San Francisco,CA,94016 +210164,AAA Batteries (4-pack),1,2.99,2019-06-06 20:05:00,861 Walnut St, Portland,OR,97035 +210165,27in FHD Monitor,1,149.99,2019-06-18 16:43:00,569 River St, Los Angeles,CA,90001 +210166,Bose SoundSport Headphones,1,99.99,2019-06-21 21:33:00,883 Church St, Austin,TX,73301 +210167,Apple Airpods Headphones,1,150.0,2019-06-23 14:57:00,433 13th St, Dallas,TX,75001 +210168,USB-C Charging Cable,1,11.95,2019-06-09 11:28:00,690 West St, Seattle,WA,98101 +210169,AA Batteries (4-pack),1,3.84,2019-06-26 19:04:00,890 7th St, San Francisco,CA,94016 +210170,Vareebadd Phone,1,400.0,2019-06-05 20:00:00,405 Pine St, Seattle,WA,98101 +210171,Google Phone,1,600.0,2019-06-30 13:59:00,503 Dogwood St, New York City,NY,10001 +210172,USB-C Charging Cable,1,11.95,2019-06-15 20:59:00,661 Ridge St, New York City,NY,10001 +210173,20in Monitor,1,109.99,2019-06-29 02:07:00,240 Sunset St, Boston,MA,02215 +210174,27in FHD Monitor,1,149.99,2019-06-05 15:22:00,971 Madison St, San Francisco,CA,94016 +210175,AAA Batteries (4-pack),1,2.99,2019-06-26 13:56:00,945 Lincoln St, Austin,TX,73301 +210176,Google Phone,1,600.0,2019-06-28 17:53:00,98 Wilson St, Los Angeles,CA,90001 +210177,Wired Headphones,1,11.99,2019-06-26 19:23:00,831 Madison St, Los Angeles,CA,90001 +210178,34in Ultrawide Monitor,1,379.99,2019-06-14 20:06:00,2 Lake St, Boston,MA,02215 +210179,Google Phone,1,600.0,2019-06-07 15:42:00,143 Willow St, Boston,MA,02215 +210180,27in FHD Monitor,1,149.99,2019-06-18 18:59:00,227 Forest St, New York City,NY,10001 +210181,iPhone,1,700.0,2019-06-01 10:30:00,236 Madison St, Dallas,TX,75001 +210182,AA Batteries (4-pack),1,3.84,2019-06-20 17:56:00,396 Walnut St, Portland,OR,97035 +210183,AAA Batteries (4-pack),2,2.99,2019-06-09 01:53:00,201 Lake St, Boston,MA,02215 +210184,Wired Headphones,1,11.99,2019-06-27 21:49:00,551 Madison St, San Francisco,CA,94016 +210185,iPhone,1,700.0,2019-06-27 08:16:00,338 Meadow St, Portland,OR,97035 +210186,USB-C Charging Cable,1,11.95,2019-06-04 15:47:00,197 11th St, San Francisco,CA,94016 +210187,Lightning Charging Cable,2,14.95,2019-06-28 15:36:00,444 Lincoln St, Boston,MA,02215 +210188,AAA Batteries (4-pack),1,2.99,2019-06-11 14:31:00,462 Meadow St, Boston,MA,02215 +210189,iPhone,1,700.0,2019-06-03 17:22:00,430 Wilson St, New York City,NY,10001 +210190,34in Ultrawide Monitor,1,379.99,2019-06-14 11:28:00,475 Sunset St, Los Angeles,CA,90001 +210191,Flatscreen TV,1,300.0,2019-06-27 18:47:00,90 Hickory St, Atlanta,GA,30301 +210192,Apple Airpods Headphones,1,150.0,2019-06-28 20:20:00,114 Lincoln St, Dallas,TX,75001 +210193,34in Ultrawide Monitor,1,379.99,2019-06-05 12:36:00,902 Maple St, New York City,NY,10001 +210194,USB-C Charging Cable,1,11.95,2019-06-30 15:43:00,518 Chestnut St, Los Angeles,CA,90001 +210195,Apple Airpods Headphones,1,150.0,2019-06-26 22:50:00,343 Adams St, Dallas,TX,75001 +210196,AAA Batteries (4-pack),1,2.99,2019-06-28 19:54:00,505 Cherry St, Seattle,WA,98101 +210197,LG Dryer,1,600.0,2019-06-11 18:50:00,187 8th St, San Francisco,CA,94016 +210198,27in 4K Gaming Monitor,1,389.99,2019-06-20 20:33:00,437 Lakeview St, Seattle,WA,98101 +210199,Google Phone,1,600.0,2019-06-10 11:14:00,682 Madison St, San Francisco,CA,94016 +210200,34in Ultrawide Monitor,1,379.99,2019-06-14 20:33:00,688 Lincoln St, Dallas,TX,75001 +210201,Bose SoundSport Headphones,2,99.99,2019-06-18 07:20:00,135 14th St, Austin,TX,73301 +210202,Bose SoundSport Headphones,1,99.99,2019-06-28 13:26:00,734 Highland St, Los Angeles,CA,90001 +210203,Bose SoundSport Headphones,1,99.99,2019-06-24 17:10:00,172 Highland St, Atlanta,GA,30301 +210204,Apple Airpods Headphones,1,150.0,2019-06-29 12:20:00,72 Lake St, New York City,NY,10001 +210205,Flatscreen TV,1,300.0,2019-06-08 16:00:00,28 13th St, San Francisco,CA,94016 +210206,Wired Headphones,1,11.99,2019-06-07 17:59:00,994 Walnut St, Atlanta,GA,30301 +210207,Google Phone,1,600.0,2019-06-16 09:47:00,40 11th St, Portland,OR,97035 +210207,USB-C Charging Cable,1,11.95,2019-06-16 09:47:00,40 11th St, Portland,OR,97035 +210208,USB-C Charging Cable,2,11.95,2019-06-02 19:37:00,591 8th St, Dallas,TX,75001 +210209,ThinkPad Laptop,1,999.99,2019-06-09 18:18:00,322 11th St, San Francisco,CA,94016 +210210,LG Washing Machine,1,600.0,2019-06-26 19:07:00,948 Maple St, Boston,MA,02215 +210211,AA Batteries (4-pack),1,3.84,2019-06-20 12:33:00,358 Park St, Austin,TX,73301 +210212,AA Batteries (4-pack),1,3.84,2019-06-29 11:22:00,715 11th St, Los Angeles,CA,90001 +210213,Bose SoundSport Headphones,1,99.99,2019-06-05 11:53:00,936 Maple St, Los Angeles,CA,90001 +210214,27in FHD Monitor,1,149.99,2019-06-18 20:00:00,847 9th St, Los Angeles,CA,90001 +210215,AAA Batteries (4-pack),1,2.99,2019-06-28 20:01:00,106 North St, Atlanta,GA,30301 +210216,AAA Batteries (4-pack),1,2.99,2019-06-14 18:52:00,445 Highland St, Atlanta,GA,30301 +210217,20in Monitor,1,109.99,2019-06-16 16:58:00,735 Church St, Atlanta,GA,30301 +210218,Lightning Charging Cable,1,14.95,2019-06-01 12:12:00,52 9th St, New York City,NY,10001 +210219,USB-C Charging Cable,1,11.95,2019-06-12 13:55:00,896 Lakeview St, Los Angeles,CA,90001 +210220,AAA Batteries (4-pack),1,2.99,2019-06-24 14:05:00,601 Center St, Portland,OR,97035 +210221,20in Monitor,1,109.99,2019-06-11 11:27:00,285 1st St, Boston,MA,02215 +210222,34in Ultrawide Monitor,1,379.99,2019-06-16 10:57:00,83 Lincoln St, Los Angeles,CA,90001 +210223,AAA Batteries (4-pack),1,2.99,2019-06-24 09:30:00,566 South St, New York City,NY,10001 +210224,Apple Airpods Headphones,1,150.0,2019-06-09 20:57:00,283 Lakeview St, Atlanta,GA,30301 +210225,USB-C Charging Cable,1,11.95,2019-06-01 16:58:00,993 Hickory St, Seattle,WA,98101 +210226,Flatscreen TV,1,300.0,2019-06-05 08:34:00,295 Sunset St, San Francisco,CA,94016 +210227,USB-C Charging Cable,1,11.95,2019-06-27 09:50:00,479 4th St, Dallas,TX,75001 +210228,AA Batteries (4-pack),1,3.84,2019-06-11 06:23:00,178 Dogwood St, Portland,OR,97035 +210229,Lightning Charging Cable,1,14.95,2019-06-07 08:00:00,252 Johnson St, San Francisco,CA,94016 +210230,USB-C Charging Cable,1,11.95,2019-06-03 21:52:00,502 Hill St, Los Angeles,CA,90001 +210231,Wired Headphones,1,11.99,2019-06-04 11:08:00,650 Johnson St, Boston,MA,02215 +210232,Wired Headphones,1,11.99,2019-06-06 16:43:00,969 Forest St, Dallas,TX,75001 +210233,AA Batteries (4-pack),1,3.84,2019-06-12 11:52:00,240 Lincoln St, Seattle,WA,98101 +210234,Lightning Charging Cable,1,14.95,2019-06-17 19:23:00,202 4th St, Atlanta,GA,30301 +210235,34in Ultrawide Monitor,1,379.99,2019-06-18 15:14:00,922 Ridge St, Boston,MA,02215 +210236,Wired Headphones,1,11.99,2019-06-09 11:17:00,246 Lake St, San Francisco,CA,94016 +210237,Wired Headphones,1,11.99,2019-06-04 08:22:00,704 8th St, Atlanta,GA,30301 +210238,AAA Batteries (4-pack),1,2.99,2019-06-05 13:35:00,517 Adams St, Seattle,WA,98101 +210239,27in 4K Gaming Monitor,1,389.99,2019-06-19 18:03:00,139 Pine St, San Francisco,CA,94016 +210240,AAA Batteries (4-pack),1,2.99,2019-06-04 13:36:00,828 Pine St, San Francisco,CA,94016 +210241,Apple Airpods Headphones,1,150.0,2019-06-04 13:49:00,737 Jackson St, San Francisco,CA,94016 +210242,USB-C Charging Cable,2,11.95,2019-06-03 19:17:00,83 Sunset St, Austin,TX,73301 +210243,AA Batteries (4-pack),1,3.84,2019-06-07 13:50:00,970 Lincoln St, San Francisco,CA,94016 +210244,Lightning Charging Cable,1,14.95,2019-06-20 22:51:00,229 Sunset St, Austin,TX,73301 +210245,AAA Batteries (4-pack),1,2.99,2019-06-14 12:31:00,711 1st St, Los Angeles,CA,90001 +210246,Lightning Charging Cable,1,14.95,2019-06-02 23:35:00,809 Washington St, Portland,OR,97035 +210247,Lightning Charging Cable,1,14.95,2019-06-21 16:30:00,370 1st St, Los Angeles,CA,90001 +210248,AA Batteries (4-pack),2,3.84,2019-06-16 22:58:00,165 Highland St, Austin,TX,73301 +210249,Google Phone,1,600.0,2019-06-10 05:05:00,869 Johnson St, San Francisco,CA,94016 +210250,Wired Headphones,1,11.99,2019-06-26 22:26:00,977 Ridge St, Los Angeles,CA,90001 +210251,USB-C Charging Cable,1,11.95,2019-06-03 21:02:00,110 Dogwood St, New York City,NY,10001 +210252,AA Batteries (4-pack),1,3.84,2019-06-15 18:53:00,10 Center St, Los Angeles,CA,90001 +210253,Google Phone,1,600.0,2019-06-11 20:40:00,963 Lakeview St, Los Angeles,CA,90001 +210253,USB-C Charging Cable,1,11.95,2019-06-11 20:40:00,963 Lakeview St, Los Angeles,CA,90001 +210254,ThinkPad Laptop,1,999.99,2019-06-14 13:24:00,464 6th St, San Francisco,CA,94016 +210255,USB-C Charging Cable,1,11.95,2019-06-09 21:56:00,274 5th St, New York City,NY,10001 +210256,Lightning Charging Cable,1,14.95,2019-06-01 18:27:00,740 Adams St, San Francisco,CA,94016 +210257,34in Ultrawide Monitor,1,379.99,2019-06-16 13:33:00,302 Jefferson St, Boston,MA,02215 +210258,34in Ultrawide Monitor,1,379.99,2019-06-01 14:03:00,82 Cherry St, Austin,TX,73301 +210259,Wired Headphones,1,11.99,2019-06-05 15:08:00,832 Hill St, San Francisco,CA,94016 +210260,AA Batteries (4-pack),1,3.84,2019-06-22 15:59:00,916 9th St, San Francisco,CA,94016 +210261,AA Batteries (4-pack),2,3.84,2019-06-30 10:08:00,466 Ridge St, Atlanta,GA,30301 +210262,AAA Batteries (4-pack),1,2.99,2019-06-22 19:50:00,912 Meadow St, San Francisco,CA,94016 +210263,USB-C Charging Cable,1,11.95,2019-06-29 00:45:00,789 Johnson St, Los Angeles,CA,90001 +210264,Lightning Charging Cable,1,14.95,2019-06-25 11:42:00,780 Lake St, New York City,NY,10001 +210265,27in FHD Monitor,1,149.99,2019-06-12 01:22:00,620 Highland St, Dallas,TX,75001 +210266,27in FHD Monitor,1,149.99,2019-06-14 11:43:00,282 Elm St, Los Angeles,CA,90001 +210267,USB-C Charging Cable,1,11.95,2019-06-24 10:23:00,946 Johnson St, Los Angeles,CA,90001 +210268,AA Batteries (4-pack),1,3.84,2019-06-04 18:59:00,498 Park St, Dallas,TX,75001 +210269,Bose SoundSport Headphones,1,99.99,2019-06-15 21:31:00,212 Wilson St, Los Angeles,CA,90001 +210270,Lightning Charging Cable,1,14.95,2019-06-06 12:34:00,175 Sunset St, Los Angeles,CA,90001 +210271,Vareebadd Phone,1,400.0,2019-06-15 16:00:00,318 Church St, San Francisco,CA,94016 +210271,USB-C Charging Cable,1,11.95,2019-06-15 16:00:00,318 Church St, San Francisco,CA,94016 +210272,USB-C Charging Cable,1,11.95,2019-06-19 05:46:00,726 Meadow St, San Francisco,CA,94016 +210273,AA Batteries (4-pack),2,3.84,2019-06-19 13:42:00,391 Highland St, San Francisco,CA,94016 +210274,27in FHD Monitor,1,149.99,2019-06-22 21:48:00,436 West St, Atlanta,GA,30301 +210274,Apple Airpods Headphones,1,150.0,2019-06-22 21:48:00,436 West St, Atlanta,GA,30301 +210275,Apple Airpods Headphones,1,150.0,2019-06-21 09:15:00,63 Forest St, Dallas,TX,75001 +210276,ThinkPad Laptop,1,999.99,2019-06-21 20:16:00,719 Cedar St, San Francisco,CA,94016 +210277,Lightning Charging Cable,1,14.95,2019-06-16 14:39:00,294 Johnson St, Los Angeles,CA,90001 +210278,Flatscreen TV,1,300.0,2019-06-20 11:22:00,897 Walnut St, Austin,TX,73301 +210279,Flatscreen TV,1,300.0,2019-06-14 09:02:00,809 Spruce St, San Francisco,CA,94016 +210280,Bose SoundSport Headphones,1,99.99,2019-06-30 21:08:00,617 8th St, New York City,NY,10001 +210281,34in Ultrawide Monitor,1,379.99,2019-06-02 20:09:00,230 9th St, Dallas,TX,75001 +210282,ThinkPad Laptop,1,999.99,2019-06-02 19:35:00,572 Jefferson St, San Francisco,CA,94016 +210283,Wired Headphones,1,11.99,2019-06-24 21:15:00,774 West St, San Francisco,CA,94016 +210284,USB-C Charging Cable,1,11.95,2019-06-16 21:00:00,154 Johnson St, Boston,MA,02215 +210285,AAA Batteries (4-pack),3,2.99,2019-06-14 18:49:00,333 Elm St, Boston,MA,02215 +210285,Apple Airpods Headphones,1,150.0,2019-06-14 18:49:00,333 Elm St, Boston,MA,02215 +210286,USB-C Charging Cable,1,11.95,2019-06-30 17:11:00,300 Elm St, Los Angeles,CA,90001 +210287,Bose SoundSport Headphones,1,99.99,2019-06-17 07:28:00,244 11th St, San Francisco,CA,94016 +210288,AAA Batteries (4-pack),2,2.99,2019-06-11 06:44:00,439 Johnson St, San Francisco,CA,94016 +210289,27in 4K Gaming Monitor,1,389.99,2019-06-22 23:18:00,634 Church St, Los Angeles,CA,90001 +210290,Apple Airpods Headphones,1,150.0,2019-06-15 10:47:00,322 Main St, San Francisco,CA,94016 +210291,AA Batteries (4-pack),3,3.84,2019-06-29 10:09:00,706 Sunset St, New York City,NY,10001 +210292,Macbook Pro Laptop,2,1700.0,2019-06-08 09:00:00,953 Ridge St, San Francisco,CA,94016 +210293,AA Batteries (4-pack),2,3.84,2019-06-17 13:47:00,934 North St, Seattle,WA,98101 +210294,iPhone,1,700.0,2019-06-06 15:00:00,771 Chestnut St, Portland,OR,97035 +210295,Apple Airpods Headphones,1,150.0,2019-06-17 18:35:00,944 Meadow St, Los Angeles,CA,90001 +210296,27in FHD Monitor,1,149.99,2019-06-19 13:41:00,74 Lincoln St, Los Angeles,CA,90001 +210297,AAA Batteries (4-pack),2,2.99,2019-06-08 19:59:00,336 4th St, Los Angeles,CA,90001 +210298,USB-C Charging Cable,1,11.95,2019-06-11 20:42:00,429 10th St, Dallas,TX,75001 +210299,Apple Airpods Headphones,1,150.0,2019-06-06 14:26:00,454 9th St, San Francisco,CA,94016 +210300,27in FHD Monitor,1,149.99,2019-06-12 10:12:00,145 Hill St, San Francisco,CA,94016 +210301,27in FHD Monitor,1,149.99,2019-06-10 16:20:00,361 Meadow St, Los Angeles,CA,90001 +210302,Apple Airpods Headphones,1,150.0,2019-06-24 15:52:00,800 8th St, Austin,TX,73301 +210303,Vareebadd Phone,1,400.0,2019-06-02 19:38:00,578 7th St, Los Angeles,CA,90001 +210304,Apple Airpods Headphones,1,150.0,2019-06-16 19:39:00,357 4th St, San Francisco,CA,94016 +210305,Macbook Pro Laptop,1,1700.0,2019-06-06 06:49:00,51 Chestnut St, Los Angeles,CA,90001 +210306,20in Monitor,1,109.99,2019-06-19 19:09:00,785 Forest St, New York City,NY,10001 +210307,27in FHD Monitor,1,149.99,2019-06-03 11:54:00,866 4th St, Los Angeles,CA,90001 +210308,AAA Batteries (4-pack),1,2.99,2019-06-19 17:35:00,433 Lake St, Los Angeles,CA,90001 +210309,34in Ultrawide Monitor,1,379.99,2019-06-26 10:58:00,676 Cedar St, Austin,TX,73301 +210310,USB-C Charging Cable,1,11.95,2019-06-12 10:27:00,268 Washington St, New York City,NY,10001 +210310,Flatscreen TV,1,300.0,2019-06-12 10:27:00,268 Washington St, New York City,NY,10001 +210311,Apple Airpods Headphones,1,150.0,2019-06-25 20:48:00,610 Main St, Los Angeles,CA,90001 +210312,Apple Airpods Headphones,1,150.0,2019-06-19 10:42:00,788 1st St, Portland,OR,97035 +210313,AA Batteries (4-pack),1,3.84,2019-06-09 20:04:00,235 1st St, San Francisco,CA,94016 +210314,Wired Headphones,1,11.99,2019-06-06 15:31:00,345 Spruce St, Los Angeles,CA,90001 +210315,Lightning Charging Cable,1,14.95,2019-06-22 18:13:00,248 River St, Atlanta,GA,30301 +210316,Flatscreen TV,1,300.0,2019-06-14 00:35:00,676 River St, Dallas,TX,75001 +210317,27in FHD Monitor,1,149.99,2019-06-25 10:48:00,18 Dogwood St, San Francisco,CA,94016 +210318,34in Ultrawide Monitor,1,379.99,2019-06-22 23:07:00,344 Highland St, Los Angeles,CA,90001 +210319,USB-C Charging Cable,1,11.95,2019-06-20 18:18:00,228 Forest St, Seattle,WA,98101 +210320,Apple Airpods Headphones,1,150.0,2019-06-22 10:23:00,465 Madison St, San Francisco,CA,94016 +210320,AAA Batteries (4-pack),1,2.99,2019-06-22 10:23:00,465 Madison St, San Francisco,CA,94016 +210321,Google Phone,1,600.0,2019-06-16 10:34:00,702 1st St, Atlanta,GA,30301 +210322,Bose SoundSport Headphones,1,99.99,2019-06-06 19:01:00,855 2nd St, Los Angeles,CA,90001 +210323,AA Batteries (4-pack),2,3.84,2019-06-06 15:46:00,500 12th St, Portland,ME,04101 +210324,AAA Batteries (4-pack),2,2.99,2019-06-23 14:50:00,436 Walnut St, San Francisco,CA,94016 +210325,Flatscreen TV,1,300.0,2019-06-21 08:26:00,190 West St, Seattle,WA,98101 +210326,AA Batteries (4-pack),1,3.84,2019-06-16 12:23:00,596 Park St, Atlanta,GA,30301 +210327,USB-C Charging Cable,1,11.95,2019-06-29 19:02:00,64 1st St, Los Angeles,CA,90001 +210328,Macbook Pro Laptop,1,1700.0,2019-06-29 11:25:00,586 Highland St, Austin,TX,73301 +210329,AAA Batteries (4-pack),1,2.99,2019-06-03 12:14:00,261 West St, Atlanta,GA,30301 +210330,Apple Airpods Headphones,1,150.0,2019-06-16 22:14:00,772 Spruce St, Boston,MA,02215 +210331,iPhone,1,700.0,2019-06-20 20:23:00,834 Ridge St, New York City,NY,10001 +210332,Wired Headphones,1,11.99,2019-06-01 08:25:00,285 12th St, Los Angeles,CA,90001 +210333,Bose SoundSport Headphones,1,99.99,2019-06-17 12:52:00,924 Jefferson St, Portland,OR,97035 +210334,Lightning Charging Cable,1,14.95,2019-06-20 20:10:00,895 Washington St, Boston,MA,02215 +210335,27in FHD Monitor,1,149.99,2019-06-15 19:33:00,403 Cedar St, San Francisco,CA,94016 +210336,Wired Headphones,1,11.99,2019-06-17 14:43:00,159 Washington St, Seattle,WA,98101 +210337,Lightning Charging Cable,2,14.95,2019-06-05 18:37:00,922 Wilson St, Austin,TX,73301 +210338,AAA Batteries (4-pack),1,2.99,2019-06-13 13:07:00,595 Jackson St, Boston,MA,02215 +210339,Bose SoundSport Headphones,1,99.99,2019-06-26 08:08:00,721 2nd St, San Francisco,CA,94016 +210340,AA Batteries (4-pack),1,3.84,2019-06-15 20:27:00,34 10th St, Boston,MA,02215 +210341,USB-C Charging Cable,1,11.95,2019-06-15 09:25:00,766 Wilson St, Atlanta,GA,30301 +210342,Wired Headphones,1,11.99,2019-06-14 12:17:00,846 Hill St, San Francisco,CA,94016 +210343,Wired Headphones,1,11.99,2019-06-03 12:04:00,879 Hickory St, San Francisco,CA,94016 +210344,Apple Airpods Headphones,1,150.0,2019-06-24 15:59:00,289 Cedar St, San Francisco,CA,94016 +210345,AA Batteries (4-pack),1,3.84,2019-06-01 09:44:00,73 Ridge St, Austin,TX,73301 +210346,Wired Headphones,1,11.99,2019-06-24 21:20:00,814 Spruce St, Los Angeles,CA,90001 +210347,Wired Headphones,1,11.99,2019-06-19 21:45:00,243 11th St, Dallas,TX,75001 +210348,Google Phone,1,600.0,2019-06-01 19:52:00,891 Lake St, Dallas,TX,75001 +210349,USB-C Charging Cable,1,11.95,2019-06-29 22:05:00,115 Adams St, Los Angeles,CA,90001 +210349,Macbook Pro Laptop,1,1700.0,2019-06-29 22:05:00,115 Adams St, Los Angeles,CA,90001 +210350,AAA Batteries (4-pack),1,2.99,2019-06-03 20:11:00,530 Lincoln St, San Francisco,CA,94016 +210351,Bose SoundSport Headphones,1,99.99,2019-06-01 20:48:00,543 Park St, San Francisco,CA,94016 +210351,USB-C Charging Cable,1,11.95,2019-06-01 20:48:00,543 Park St, San Francisco,CA,94016 +210352,USB-C Charging Cable,1,11.95,2019-06-03 14:58:00,293 South St, San Francisco,CA,94016 +210353,USB-C Charging Cable,1,11.95,2019-06-17 23:13:00,874 7th St, Dallas,TX,75001 +210354,ThinkPad Laptop,1,999.99,2019-06-09 09:49:00,338 Jackson St, New York City,NY,10001 +210355,USB-C Charging Cable,1,11.95,2019-06-10 20:48:00,307 Highland St, Boston,MA,02215 +210356,Apple Airpods Headphones,1,150.0,2019-06-14 18:29:00,697 Johnson St, Austin,TX,73301 +210357,ThinkPad Laptop,1,999.99,2019-06-30 12:37:00,495 Elm St, San Francisco,CA,94016 +210358,AA Batteries (4-pack),1,3.84,2019-06-10 10:35:00,744 Adams St, Portland,OR,97035 +210359,iPhone,1,700.0,2019-06-05 11:38:00,501 Lakeview St, New York City,NY,10001 +210360,Lightning Charging Cable,1,14.95,2019-06-08 09:12:00,582 5th St, Boston,MA,02215 +210361,ThinkPad Laptop,1,999.99,2019-06-14 07:26:00,253 Hill St, Atlanta,GA,30301 +210362,USB-C Charging Cable,1,11.95,2019-06-04 22:29:00,151 13th St, Los Angeles,CA,90001 +210363,AAA Batteries (4-pack),1,2.99,2019-06-13 21:19:00,411 Highland St, New York City,NY,10001 +210364,AA Batteries (4-pack),1,3.84,2019-06-14 23:09:00,766 Jefferson St, San Francisco,CA,94016 +210365,Vareebadd Phone,1,400.0,2019-06-13 18:24:00,290 Sunset St, Dallas,TX,75001 +210365,USB-C Charging Cable,2,11.95,2019-06-13 18:24:00,290 Sunset St, Dallas,TX,75001 +210366,Wired Headphones,1,11.99,2019-06-01 12:48:00,77 South St, Austin,TX,73301 +210367,Lightning Charging Cable,1,14.95,2019-06-04 18:07:00,45 4th St, Seattle,WA,98101 +210368,USB-C Charging Cable,1,11.95,2019-06-29 23:59:00,498 Spruce St, San Francisco,CA,94016 +210369,Wired Headphones,1,11.99,2019-06-17 19:34:00,827 14th St, Boston,MA,02215 +210370,USB-C Charging Cable,1,11.95,2019-06-03 10:22:00,603 Hill St, Austin,TX,73301 +210371,Google Phone,1,600.0,2019-06-08 15:51:00,900 Cedar St, Seattle,WA,98101 +210371,Wired Headphones,1,11.99,2019-06-08 15:51:00,900 Cedar St, Seattle,WA,98101 +210372,iPhone,1,700.0,2019-06-28 14:45:00,921 Main St, Boston,MA,02215 +210373,Macbook Pro Laptop,1,1700.0,2019-06-16 13:01:00,306 Willow St, San Francisco,CA,94016 +210374,iPhone,1,700.0,2019-06-22 19:56:00,691 Dogwood St, New York City,NY,10001 +210375,Lightning Charging Cable,1,14.95,2019-06-13 10:37:00,360 Elm St, Portland,OR,97035 +210376,AAA Batteries (4-pack),1,2.99,2019-06-13 22:12:00,867 Lakeview St, San Francisco,CA,94016 +210377,Apple Airpods Headphones,1,150.0,2019-06-03 01:11:00,785 2nd St, Los Angeles,CA,90001 +210378,Lightning Charging Cable,1,14.95,2019-06-18 18:29:00,364 Wilson St, Portland,OR,97035 +210379,USB-C Charging Cable,1,11.95,2019-06-30 20:17:00,186 Ridge St, San Francisco,CA,94016 +210380,AA Batteries (4-pack),1,3.84,2019-06-12 22:32:00,85 Cherry St, Los Angeles,CA,90001 +210381,AAA Batteries (4-pack),1,2.99,2019-06-27 21:19:00,295 Highland St, San Francisco,CA,94016 +210382,AAA Batteries (4-pack),1,2.99,2019-06-10 21:47:00,571 10th St, Los Angeles,CA,90001 +210383,34in Ultrawide Monitor,1,379.99,2019-06-02 13:35:00,617 Highland St, Los Angeles,CA,90001 +210384,AA Batteries (4-pack),4,3.84,2019-06-26 05:50:00,592 Forest St, Dallas,TX,75001 +210385,Flatscreen TV,1,300.0,2019-06-12 20:38:00,617 Elm St, San Francisco,CA,94016 +210386,Google Phone,1,600.0,2019-06-14 15:10:00,998 Chestnut St, Seattle,WA,98101 +210387,AA Batteries (4-pack),3,3.84,2019-06-01 22:23:00,425 10th St, San Francisco,CA,94016 +210388,AA Batteries (4-pack),2,3.84,2019-06-10 21:34:00,152 North St, Seattle,WA,98101 +210389,AAA Batteries (4-pack),2,2.99,2019-06-19 23:11:00,566 10th St, San Francisco,CA,94016 +210390,Lightning Charging Cable,1,14.95,2019-06-16 17:09:00,609 Spruce St, New York City,NY,10001 +210391,Apple Airpods Headphones,1,150.0,2019-06-29 17:32:00,166 Wilson St, New York City,NY,10001 +210392,USB-C Charging Cable,1,11.95,2019-06-28 19:20:00,965 Hickory St, Dallas,TX,75001 +210393,Apple Airpods Headphones,1,150.0,2019-06-14 12:33:00,186 Washington St, San Francisco,CA,94016 +210394,Lightning Charging Cable,1,14.95,2019-06-13 16:57:00,106 12th St, Seattle,WA,98101 +210395,Bose SoundSport Headphones,1,99.99,2019-06-30 17:47:00,671 Adams St, New York City,NY,10001 +210396,Flatscreen TV,1,300.0,2019-06-09 19:34:00,878 Forest St, Los Angeles,CA,90001 +210397,USB-C Charging Cable,1,11.95,2019-06-13 13:19:00,399 Hickory St, New York City,NY,10001 +210398,27in 4K Gaming Monitor,1,389.99,2019-06-24 20:37:00,418 14th St, New York City,NY,10001 +210399,Lightning Charging Cable,1,14.95,2019-06-15 22:39:00,866 2nd St, Atlanta,GA,30301 +210400,AAA Batteries (4-pack),1,2.99,2019-06-20 21:06:00,613 Spruce St, Seattle,WA,98101 +210400,Lightning Charging Cable,1,14.95,2019-06-20 21:06:00,613 Spruce St, Seattle,WA,98101 +210401,Google Phone,1,600.0,2019-06-25 21:14:00,713 13th St, San Francisco,CA,94016 +210402,USB-C Charging Cable,1,11.95,2019-06-20 22:06:00,206 7th St, Los Angeles,CA,90001 +210403,Lightning Charging Cable,1,14.95,2019-06-13 21:13:00,928 2nd St, Seattle,WA,98101 +210404,AAA Batteries (4-pack),1,2.99,2019-06-16 07:18:00,785 Washington St, San Francisco,CA,94016 +210405,iPhone,1,700.0,2019-06-16 21:14:00,805 6th St, New York City,NY,10001 +210406,Bose SoundSport Headphones,1,99.99,2019-06-11 20:12:00,107 11th St, New York City,NY,10001 +210407,Apple Airpods Headphones,1,150.0,2019-06-01 17:57:00,606 13th St, Atlanta,GA,30301 +210408,Lightning Charging Cable,1,14.95,2019-06-07 11:27:00,115 Forest St, New York City,NY,10001 +210409,ThinkPad Laptop,1,999.99,2019-06-20 17:42:00,442 Chestnut St, Atlanta,GA,30301 +210410,USB-C Charging Cable,1,11.95,2019-06-17 15:53:00,120 Wilson St, Boston,MA,02215 +210411,AAA Batteries (4-pack),1,2.99,2019-06-02 11:14:00,546 Forest St, San Francisco,CA,94016 +210412,27in 4K Gaming Monitor,1,389.99,2019-06-03 10:47:00,531 Maple St, Los Angeles,CA,90001 +210413,34in Ultrawide Monitor,1,379.99,2019-06-15 13:02:00,627 Washington St, San Francisco,CA,94016 +210414,20in Monitor,1,109.99,2019-06-16 17:04:00,702 Cedar St, New York City,NY,10001 +210415,Google Phone,1,600.0,2019-06-12 10:11:00,183 Willow St, New York City,NY,10001 +210416,AA Batteries (4-pack),2,3.84,2019-06-28 13:49:00,6 Elm St, Boston,MA,02215 +210417,iPhone,1,700.0,2019-06-28 15:20:00,213 5th St, Austin,TX,73301 +210418,Wired Headphones,1,11.99,2019-06-24 21:53:00,124 6th St, Atlanta,GA,30301 +210419,Wired Headphones,1,11.99,2019-06-10 09:33:00,753 Meadow St, San Francisco,CA,94016 +210420,Lightning Charging Cable,1,14.95,2019-06-29 10:36:00,904 14th St, Atlanta,GA,30301 +210421,AA Batteries (4-pack),1,3.84,2019-06-17 15:34:00,31 Dogwood St, San Francisco,CA,94016 +210422,Macbook Pro Laptop,1,1700.0,2019-06-20 22:48:00,469 Lake St, New York City,NY,10001 +210423,Wired Headphones,2,11.99,2019-06-15 11:59:00,513 13th St, Atlanta,GA,30301 +210424,Wired Headphones,1,11.99,2019-06-21 00:29:00,570 Highland St, Portland,OR,97035 +210425,Wired Headphones,1,11.99,2019-06-09 00:33:00,732 12th St, Boston,MA,02215 +210426,Macbook Pro Laptop,1,1700.0,2019-06-17 09:08:00,357 11th St, San Francisco,CA,94016 +210427,AA Batteries (4-pack),3,3.84,2019-06-29 12:10:00,987 Pine St, Dallas,TX,75001 +210428,Lightning Charging Cable,1,14.95,2019-06-30 23:24:00,917 11th St, Portland,OR,97035 +210429,Lightning Charging Cable,1,14.95,2019-06-26 10:51:00,78 Spruce St, Seattle,WA,98101 +210430,20in Monitor,1,109.99,2019-06-09 21:17:00,729 Washington St, Seattle,WA,98101 +210431,Bose SoundSport Headphones,1,99.99,2019-06-17 15:07:00,785 North St, Los Angeles,CA,90001 +210432,AAA Batteries (4-pack),2,2.99,2019-06-21 14:46:00,394 Maple St, San Francisco,CA,94016 +210433,AA Batteries (4-pack),3,3.84,2019-06-15 17:41:00,16 6th St, New York City,NY,10001 +210434,Lightning Charging Cable,1,14.95,2019-06-19 19:31:00,25 9th St, San Francisco,CA,94016 +210435,AA Batteries (4-pack),1,3.84,2019-06-04 18:05:00,300 North St, Seattle,WA,98101 +210436,34in Ultrawide Monitor,1,379.99,2019-06-14 12:35:00,632 6th St, Los Angeles,CA,90001 +210437,34in Ultrawide Monitor,1,379.99,2019-06-22 22:41:00,129 Hickory St, Dallas,TX,75001 +210438,Wired Headphones,1,11.99,2019-06-03 12:21:00,75 Meadow St, Seattle,WA,98101 +210439,27in 4K Gaming Monitor,1,389.99,2019-06-29 19:57:00,351 Main St, Atlanta,GA,30301 +210440,AAA Batteries (4-pack),1,2.99,2019-06-20 10:27:00,557 Elm St, Los Angeles,CA,90001 +210440,Lightning Charging Cable,1,14.95,2019-06-20 10:27:00,557 Elm St, Los Angeles,CA,90001 +210441,Wired Headphones,1,11.99,2019-06-03 20:59:00,931 Walnut St, New York City,NY,10001 +210442,Apple Airpods Headphones,1,150.0,2019-06-21 11:13:00,158 10th St, San Francisco,CA,94016 +210443,USB-C Charging Cable,1,11.95,2019-06-18 10:18:00,576 Elm St, Los Angeles,CA,90001 +210443,27in 4K Gaming Monitor,1,389.99,2019-06-18 10:18:00,576 Elm St, Los Angeles,CA,90001 +210444,Google Phone,1,600.0,2019-06-08 19:16:00,246 Ridge St, Boston,MA,02215 +210445,AA Batteries (4-pack),2,3.84,2019-06-26 21:26:00,804 Forest St, Los Angeles,CA,90001 +210446,iPhone,1,700.0,2019-06-26 20:00:00,913 8th St, Seattle,WA,98101 +210447,Macbook Pro Laptop,1,1700.0,2019-06-21 17:17:00,350 Dogwood St, New York City,NY,10001 +210448,20in Monitor,1,109.99,2019-06-05 19:27:00,248 Elm St, San Francisco,CA,94016 +210449,AAA Batteries (4-pack),1,2.99,2019-06-08 12:05:00,6 13th St, Seattle,WA,98101 +210450,27in 4K Gaming Monitor,1,389.99,2019-06-14 20:07:00,210 13th St, Los Angeles,CA,90001 +210451,USB-C Charging Cable,1,11.95,2019-06-09 07:05:00,12 Jackson St, Atlanta,GA,30301 +210452,34in Ultrawide Monitor,1,379.99,2019-06-13 12:03:00,243 Center St, New York City,NY,10001 +210453,AAA Batteries (4-pack),1,2.99,2019-06-13 12:08:00,668 Jefferson St, San Francisco,CA,94016 +210454,Vareebadd Phone,1,400.0,2019-06-03 18:05:00,922 Highland St, Dallas,TX,75001 +210455,Bose SoundSport Headphones,1,99.99,2019-06-18 17:51:00,652 9th St, Seattle,WA,98101 +210456,Lightning Charging Cable,1,14.95,2019-06-08 15:24:00,390 Park St, Los Angeles,CA,90001 +210456,Wired Headphones,1,11.99,2019-06-08 15:24:00,390 Park St, Los Angeles,CA,90001 +210457,Bose SoundSport Headphones,1,99.99,2019-06-05 20:44:00,181 Madison St, New York City,NY,10001 +210458,AAA Batteries (4-pack),1,2.99,2019-06-05 14:36:00,522 1st St, New York City,NY,10001 +210459,Wired Headphones,1,11.99,2019-06-10 12:39:00,506 Pine St, Los Angeles,CA,90001 +210460,27in FHD Monitor,1,149.99,2019-06-12 11:35:00,372 1st St, Portland,OR,97035 +210461,AAA Batteries (4-pack),1,2.99,2019-06-16 21:52:00,53 Jefferson St, San Francisco,CA,94016 +210462,Bose SoundSport Headphones,1,99.99,2019-06-25 21:00:00,601 10th St, Los Angeles,CA,90001 +210463,Lightning Charging Cable,1,14.95,2019-06-08 17:43:00,458 Main St, Austin,TX,73301 +210464,Wired Headphones,1,11.99,2019-06-26 12:36:00,473 Hickory St, San Francisco,CA,94016 +210465,Flatscreen TV,1,300.0,2019-06-01 13:04:00,345 Main St, San Francisco,CA,94016 +210466,AAA Batteries (4-pack),1,2.99,2019-06-21 18:52:00,989 9th St, Atlanta,GA,30301 +210467,AA Batteries (4-pack),1,3.84,2019-06-01 21:17:00,286 Jefferson St, San Francisco,CA,94016 +210468,27in 4K Gaming Monitor,1,389.99,2019-06-05 12:49:00,35 West St, San Francisco,CA,94016 +210469,27in FHD Monitor,1,149.99,2019-06-30 18:19:00,862 Spruce St, San Francisco,CA,94016 +210470,Wired Headphones,2,11.99,2019-06-19 19:32:00,864 West St, Atlanta,GA,30301 +210471,AA Batteries (4-pack),3,3.84,2019-06-09 17:01:00,638 Center St, New York City,NY,10001 +210472,Wired Headphones,1,11.99,2019-06-16 01:42:00,1 Park St, Boston,MA,02215 +210473,Lightning Charging Cable,1,14.95,2019-06-06 11:10:00,609 8th St, Dallas,TX,75001 +210474,AA Batteries (4-pack),2,3.84,2019-06-15 12:39:00,277 Pine St, San Francisco,CA,94016 +210475,Wired Headphones,1,11.99,2019-06-28 15:57:00,595 11th St, Portland,OR,97035 +210476,Google Phone,1,600.0,2019-06-24 10:53:00,101 12th St, Atlanta,GA,30301 +210477,Lightning Charging Cable,1,14.95,2019-06-05 17:15:00,446 6th St, Atlanta,GA,30301 +210478,ThinkPad Laptop,1,999.99,2019-06-08 12:03:00,529 North St, Boston,MA,02215 +210479,AAA Batteries (4-pack),1,2.99,2019-06-29 08:34:00,301 Pine St, San Francisco,CA,94016 +210480,AAA Batteries (4-pack),1,2.99,2019-06-02 20:54:00,112 Hickory St, Los Angeles,CA,90001 +210481,AAA Batteries (4-pack),1,2.99,2019-06-07 18:47:00,235 11th St, Seattle,WA,98101 +210482,Apple Airpods Headphones,1,150.0,2019-06-29 18:14:00,764 Center St, Seattle,WA,98101 +210483,Macbook Pro Laptop,1,1700.0,2019-06-22 21:51:00,38 Pine St, Boston,MA,02215 +210484,Lightning Charging Cable,1,14.95,2019-06-14 09:31:00,677 2nd St, San Francisco,CA,94016 +210485,USB-C Charging Cable,1,11.95,2019-06-30 14:17:00,649 Forest St, Austin,TX,73301 +210486,iPhone,1,700.0,2019-06-19 19:49:00,86 1st St, Austin,TX,73301 +210487,USB-C Charging Cable,1,11.95,2019-06-28 15:35:00,169 Sunset St, New York City,NY,10001 +210488,34in Ultrawide Monitor,1,379.99,2019-06-08 22:36:00,835 Madison St, New York City,NY,10001 +210489,USB-C Charging Cable,1,11.95,2019-06-06 14:24:00,706 6th St, Atlanta,GA,30301 +210490,AA Batteries (4-pack),1,3.84,2019-06-04 09:46:00,429 Dogwood St, Portland,ME,04101 +210491,27in FHD Monitor,1,149.99,2019-06-04 18:21:00,558 Ridge St, Seattle,WA,98101 +210492,Lightning Charging Cable,1,14.95,2019-06-24 15:31:00,762 Madison St, Los Angeles,CA,90001 +210493,Lightning Charging Cable,1,14.95,2019-06-25 23:13:00,126 6th St, Portland,ME,04101 +210494,AAA Batteries (4-pack),1,2.99,2019-06-28 23:36:00,939 Dogwood St, Portland,ME,04101 +210495,iPhone,1,700.0,2019-06-21 14:37:00,986 10th St, Dallas,TX,75001 +210495,Lightning Charging Cable,1,14.95,2019-06-21 14:37:00,986 10th St, Dallas,TX,75001 +210496,ThinkPad Laptop,1,999.99,2019-06-13 00:30:00,438 Dogwood St, Seattle,WA,98101 +210497,AA Batteries (4-pack),1,3.84,2019-06-29 11:50:00,618 Maple St, Portland,OR,97035 +210498,AA Batteries (4-pack),1,3.84,2019-06-26 20:06:00,547 1st St, New York City,NY,10001 +210499,USB-C Charging Cable,1,11.95,2019-06-16 17:34:00,347 Center St, San Francisco,CA,94016 +210500,Flatscreen TV,1,300.0,2019-06-08 16:00:00,706 Main St, San Francisco,CA,94016 +210501,USB-C Charging Cable,1,11.95,2019-06-04 17:58:00,226 12th St, Los Angeles,CA,90001 +210502,Apple Airpods Headphones,1,150.0,2019-06-29 06:20:00,546 5th St, New York City,NY,10001 +210503,34in Ultrawide Monitor,1,379.99,2019-06-20 14:20:00,897 Cedar St, Los Angeles,CA,90001 +210504,AAA Batteries (4-pack),1,2.99,2019-06-30 11:47:00,271 Adams St, Los Angeles,CA,90001 +210505,Google Phone,1,600.0,2019-06-04 16:45:00,97 Walnut St, Los Angeles,CA,90001 +210506,Lightning Charging Cable,2,14.95,2019-06-11 13:44:00,719 Pine St, San Francisco,CA,94016 +210507,AAA Batteries (4-pack),1,2.99,2019-06-21 12:40:00,594 13th St, Seattle,WA,98101 +210508,Apple Airpods Headphones,1,150.0,2019-06-28 19:58:00,790 Lincoln St, Portland,OR,97035 +210509,Lightning Charging Cable,1,14.95,2019-06-11 21:59:00,658 Washington St, Portland,OR,97035 +210510,iPhone,1,700.0,2019-06-12 12:01:00,543 Willow St, Dallas,TX,75001 +210511,Apple Airpods Headphones,1,150.0,2019-06-25 18:38:00,93 Forest St, San Francisco,CA,94016 +210512,Apple Airpods Headphones,1,150.0,2019-06-14 14:19:00,172 Meadow St, New York City,NY,10001 +210513,AA Batteries (4-pack),2,3.84,2019-06-10 17:07:00,27 Chestnut St, San Francisco,CA,94016 +210514,AA Batteries (4-pack),1,3.84,2019-06-11 20:07:00,91 7th St, New York City,NY,10001 +210515,Apple Airpods Headphones,1,150.0,2019-06-23 23:50:00,425 Hickory St, San Francisco,CA,94016 +210516,Apple Airpods Headphones,1,150.0,2019-06-04 18:36:00,318 Lake St, Boston,MA,02215 +210517,Wired Headphones,1,11.99,2019-06-19 18:54:00,668 13th St, San Francisco,CA,94016 +210518,Apple Airpods Headphones,1,150.0,2019-06-29 21:34:00,772 Meadow St, Atlanta,GA,30301 +210519,27in FHD Monitor,1,149.99,2019-06-20 11:51:00,413 7th St, San Francisco,CA,94016 +210520,LG Washing Machine,1,600.0,2019-06-19 18:47:00,908 Lincoln St, Portland,ME,04101 +210521,Macbook Pro Laptop,1,1700.0,2019-06-03 13:28:00,239 8th St, San Francisco,CA,94016 +210522,AAA Batteries (4-pack),1,2.99,2019-06-07 16:58:00,25 Cherry St, Dallas,TX,75001 +210523,Bose SoundSport Headphones,1,99.99,2019-06-18 22:58:00,131 5th St, New York City,NY,10001 +210524,USB-C Charging Cable,1,11.95,2019-06-11 18:24:00,294 Hill St, Los Angeles,CA,90001 +210525,27in FHD Monitor,1,149.99,2019-06-08 07:37:00,173 Lakeview St, New York City,NY,10001 +210526,USB-C Charging Cable,1,11.95,2019-06-05 15:17:00,535 Cherry St, Atlanta,GA,30301 +210527,AA Batteries (4-pack),1,3.84,2019-06-14 19:57:00,594 North St, Boston,MA,02215 +210528,USB-C Charging Cable,1,11.95,2019-06-29 16:32:00,632 Spruce St, Dallas,TX,75001 +210529,USB-C Charging Cable,1,11.95,2019-06-25 22:08:00,228 Church St, San Francisco,CA,94016 +210530,Lightning Charging Cable,1,14.95,2019-06-23 18:29:00,878 4th St, Austin,TX,73301 +210531,Lightning Charging Cable,1,14.95,2019-06-09 09:40:00,210 Elm St, Seattle,WA,98101 +210532,Macbook Pro Laptop,1,1700.0,2019-06-13 20:53:00,802 Lake St, Atlanta,GA,30301 +210533,AA Batteries (4-pack),2,3.84,2019-06-06 01:20:00,38 6th St, New York City,NY,10001 +210534,Apple Airpods Headphones,1,150.0,2019-06-25 09:47:00,696 2nd St, Los Angeles,CA,90001 +210535,Google Phone,1,600.0,2019-06-19 19:14:00,847 2nd St, San Francisco,CA,94016 +210536,Bose SoundSport Headphones,1,99.99,2019-06-27 09:13:00,286 4th St, Atlanta,GA,30301 +210537,Flatscreen TV,1,300.0,2019-06-12 19:00:00,43 Wilson St, Seattle,WA,98101 +210538,Apple Airpods Headphones,1,150.0,2019-06-28 14:22:00,878 Church St, New York City,NY,10001 +210539,Macbook Pro Laptop,1,1700.0,2019-06-29 18:05:00,614 Wilson St, Portland,OR,97035 +210540,Bose SoundSport Headphones,1,99.99,2019-06-30 19:23:00,136 Ridge St, Atlanta,GA,30301 +210541,Apple Airpods Headphones,1,150.0,2019-06-15 15:17:00,724 Johnson St, Austin,TX,73301 +210542,AA Batteries (4-pack),2,3.84,2019-06-14 16:50:00,622 Hill St, Portland,OR,97035 +210543,34in Ultrawide Monitor,1,379.99,2019-06-09 20:03:00,929 Chestnut St, Dallas,TX,75001 +210544,USB-C Charging Cable,1,11.95,2019-06-08 15:36:00,300 8th St, Austin,TX,73301 +210545,USB-C Charging Cable,2,11.95,2019-06-07 21:59:00,440 Park St, Los Angeles,CA,90001 +210546,Google Phone,1,600.0,2019-06-30 13:24:00,888 Ridge St, New York City,NY,10001 +210547,Wired Headphones,1,11.99,2019-06-23 20:21:00,435 Cedar St, Seattle,WA,98101 +210548,iPhone,1,700.0,2019-06-09 10:45:00,698 Lincoln St, New York City,NY,10001 +210549,USB-C Charging Cable,1,11.95,2019-06-25 18:19:00,918 Johnson St, San Francisco,CA,94016 +210550,Lightning Charging Cable,1,14.95,2019-06-11 19:41:00,226 Madison St, Atlanta,GA,30301 +210551,USB-C Charging Cable,1,11.95,2019-06-30 06:20:00,523 Lake St, Boston,MA,02215 +210552,AA Batteries (4-pack),1,3.84,2019-06-12 19:41:00,772 Johnson St, Seattle,WA,98101 +210553,Bose SoundSport Headphones,1,99.99,2019-06-25 17:54:00,634 Wilson St, San Francisco,CA,94016 +210554,Lightning Charging Cable,2,14.95,2019-06-08 16:10:00,321 Forest St, San Francisco,CA,94016 +210555,AAA Batteries (4-pack),2,2.99,2019-06-12 10:42:00,314 7th St, San Francisco,CA,94016 +210556,AAA Batteries (4-pack),2,2.99,2019-06-07 13:43:00,688 Cedar St, Boston,MA,02215 +210557,Macbook Pro Laptop,1,1700.0,2019-06-13 13:29:00,239 Maple St, San Francisco,CA,94016 +210558,Lightning Charging Cable,1,14.95,2019-06-12 17:05:00,749 8th St, Atlanta,GA,30301 +210559,AAA Batteries (4-pack),1,2.99,2019-06-14 12:52:00,805 Jefferson St, New York City,NY,10001 +210560,27in FHD Monitor,1,149.99,2019-06-09 08:43:00,105 Adams St, San Francisco,CA,94016 +210561,Google Phone,1,600.0,2019-06-16 08:52:00,345 4th St, Boston,MA,02215 +210562,Lightning Charging Cable,1,14.95,2019-06-30 23:19:00,807 Washington St, Boston,MA,02215 +210563,AAA Batteries (4-pack),1,2.99,2019-06-15 09:52:00,498 Sunset St, San Francisco,CA,94016 +210564,Bose SoundSport Headphones,1,99.99,2019-06-11 20:38:00,573 Sunset St, Los Angeles,CA,90001 +210565,USB-C Charging Cable,1,11.95,2019-06-17 11:57:00,945 Lake St, San Francisco,CA,94016 +210566,Bose SoundSport Headphones,1,99.99,2019-06-23 22:37:00,756 Lakeview St, San Francisco,CA,94016 +210567,Wired Headphones,1,11.99,2019-06-09 07:33:00,604 Cedar St, Los Angeles,CA,90001 +210568,AA Batteries (4-pack),1,3.84,2019-06-21 09:45:00,872 Willow St, Portland,OR,97035 +210569,20in Monitor,1,109.99,2019-06-30 19:22:00,908 Lakeview St, Portland,OR,97035 +210570,Apple Airpods Headphones,1,150.0,2019-06-20 10:56:00,468 Maple St, Boston,MA,02215 +210571,AAA Batteries (4-pack),2,2.99,2019-06-17 14:15:00,234 Cherry St, Boston,MA,02215 +210572,27in 4K Gaming Monitor,1,389.99,2019-06-19 14:59:00,181 Madison St, San Francisco,CA,94016 +210573,iPhone,1,700.0,2019-06-21 10:03:00,4 Madison St, Los Angeles,CA,90001 +210574,USB-C Charging Cable,2,11.95,2019-06-26 14:18:00,156 2nd St, San Francisco,CA,94016 +210575,27in 4K Gaming Monitor,1,389.99,2019-06-01 20:25:00,537 Meadow St, New York City,NY,10001 +210576,Wired Headphones,1,11.99,2019-06-06 14:26:00,126 Adams St, New York City,NY,10001 +210577,Google Phone,1,600.0,2019-06-03 21:52:00,252 2nd St, Austin,TX,73301 +210577,USB-C Charging Cable,1,11.95,2019-06-03 21:52:00,252 2nd St, Austin,TX,73301 +210578,Macbook Pro Laptop,1,1700.0,2019-06-30 19:03:00,332 Dogwood St, San Francisco,CA,94016 +210579,USB-C Charging Cable,1,11.95,2019-06-10 10:29:00,187 Highland St, Seattle,WA,98101 +210580,AA Batteries (4-pack),1,3.84,2019-06-24 18:07:00,312 10th St, Dallas,TX,75001 +210581,USB-C Charging Cable,1,11.95,2019-06-27 14:45:00,218 Spruce St, San Francisco,CA,94016 +210582,AA Batteries (4-pack),1,3.84,2019-06-13 14:18:00,586 Forest St, Los Angeles,CA,90001 +210583,AA Batteries (4-pack),1,3.84,2019-06-16 11:59:00,775 Washington St, San Francisco,CA,94016 +210584,Apple Airpods Headphones,1,150.0,2019-06-30 21:38:00,562 Jackson St, New York City,NY,10001 +210585,ThinkPad Laptop,1,999.99,2019-06-21 00:28:00,324 Spruce St, Los Angeles,CA,90001 +210586,Bose SoundSport Headphones,1,99.99,2019-06-19 17:06:00,548 South St, Los Angeles,CA,90001 +210587,Macbook Pro Laptop,1,1700.0,2019-06-05 11:39:00,509 River St, San Francisco,CA,94016 +210588,Flatscreen TV,1,300.0,2019-06-27 18:17:00,345 5th St, New York City,NY,10001 +210589,Apple Airpods Headphones,1,150.0,2019-06-21 15:56:00,62 7th St, San Francisco,CA,94016 +210590,20in Monitor,1,109.99,2019-06-23 10:56:00,991 4th St, Seattle,WA,98101 +210591,34in Ultrawide Monitor,1,379.99,2019-06-07 10:28:00,394 Wilson St, Austin,TX,73301 +210592,Vareebadd Phone,1,400.0,2019-06-25 21:38:00,207 Sunset St, San Francisco,CA,94016 +210592,USB-C Charging Cable,1,11.95,2019-06-25 21:38:00,207 Sunset St, San Francisco,CA,94016 +210593,AA Batteries (4-pack),1,3.84,2019-06-23 13:22:00,937 Park St, Atlanta,GA,30301 +210594,AAA Batteries (4-pack),1,2.99,2019-06-18 22:06:00,944 Chestnut St, New York City,NY,10001 +210595,AAA Batteries (4-pack),1,2.99,2019-06-02 10:11:00,177 Ridge St, San Francisco,CA,94016 +210596,USB-C Charging Cable,1,11.95,2019-06-07 07:33:00,709 Pine St, Seattle,WA,98101 +210597,Wired Headphones,1,11.99,2019-06-27 19:08:00,675 Elm St, New York City,NY,10001 +210598,Bose SoundSport Headphones,1,99.99,2019-06-25 12:34:00,94 Hill St, Boston,MA,02215 +210599,AAA Batteries (4-pack),1,2.99,2019-06-28 20:19:00,539 9th St, Portland,OR,97035 +210600,Apple Airpods Headphones,1,150.0,2019-06-01 11:58:00,971 Jefferson St, New York City,NY,10001 +210601,AAA Batteries (4-pack),1,2.99,2019-06-19 10:10:00,28 Spruce St, New York City,NY,10001 +210602,AA Batteries (4-pack),2,3.84,2019-06-08 07:18:00,167 Lakeview St, New York City,NY,10001 +210603,Wired Headphones,1,11.99,2019-06-06 14:46:00,700 Washington St, San Francisco,CA,94016 +210604,Bose SoundSport Headphones,1,99.99,2019-06-22 14:09:00,663 North St, Dallas,TX,75001 +210605,iPhone,1,700.0,2019-06-12 11:56:00,590 Johnson St, Atlanta,GA,30301 +210605,Wired Headphones,1,11.99,2019-06-12 11:56:00,590 Johnson St, Atlanta,GA,30301 +210606,Lightning Charging Cable,1,14.95,2019-06-30 16:47:00,6 River St, San Francisco,CA,94016 +210607,27in FHD Monitor,1,149.99,2019-06-11 10:43:00,810 Lincoln St, San Francisco,CA,94016 +210608,USB-C Charging Cable,1,11.95,2019-06-10 19:26:00,507 5th St, Los Angeles,CA,90001 +210609,AA Batteries (4-pack),1,3.84,2019-06-26 16:37:00,254 13th St, New York City,NY,10001 +210609,Lightning Charging Cable,1,14.95,2019-06-26 16:37:00,254 13th St, New York City,NY,10001 +210610,USB-C Charging Cable,2,11.95,2019-06-08 11:36:00,734 Chestnut St, San Francisco,CA,94016 +210611,Lightning Charging Cable,1,14.95,2019-06-10 21:15:00,137 West St, Dallas,TX,75001 +210612,USB-C Charging Cable,1,11.95,2019-06-05 06:47:00,162 River St, Boston,MA,02215 +210613,Apple Airpods Headphones,1,150.0,2019-06-24 13:24:00,643 Lakeview St, New York City,NY,10001 +210614,27in 4K Gaming Monitor,1,389.99,2019-06-06 20:34:00,736 Chestnut St, San Francisco,CA,94016 +210615,27in FHD Monitor,1,149.99,2019-06-30 13:58:00,928 Meadow St, New York City,NY,10001 +210616,Macbook Pro Laptop,1,1700.0,2019-06-20 14:54:00,913 Ridge St, Los Angeles,CA,90001 +210617,27in 4K Gaming Monitor,1,389.99,2019-06-15 16:36:00,348 Main St, Dallas,TX,75001 +210618,AAA Batteries (4-pack),1,2.99,2019-06-27 14:01:00,117 Cedar St, Portland,OR,97035 +210619,AA Batteries (4-pack),2,3.84,2019-06-07 12:56:00,309 Church St, San Francisco,CA,94016 +210620,Google Phone,1,600.0,2019-06-05 12:25:00,718 Pine St, San Francisco,CA,94016 +210621,AA Batteries (4-pack),2,3.84,2019-06-26 16:51:00,172 Walnut St, Los Angeles,CA,90001 +210622,Flatscreen TV,1,300.0,2019-06-23 22:44:00,615 Cherry St, San Francisco,CA,94016 +210623,27in FHD Monitor,1,149.99,2019-06-17 19:35:00,606 6th St, Portland,OR,97035 +210624,USB-C Charging Cable,1,11.95,2019-06-06 12:19:00,708 Church St, Dallas,TX,75001 +210625,AA Batteries (4-pack),1,3.84,2019-06-01 19:09:00,307 9th St, Seattle,WA,98101 +210626,Wired Headphones,1,11.99,2019-06-08 13:10:00,166 1st St, San Francisco,CA,94016 +210627,27in 4K Gaming Monitor,1,389.99,2019-06-12 23:57:00,887 Lakeview St, Portland,ME,04101 +210628,USB-C Charging Cable,1,11.95,2019-06-25 18:09:00,62 Church St, Los Angeles,CA,90001 +210629,27in FHD Monitor,1,149.99,2019-06-27 09:55:00,71 Center St, Austin,TX,73301 +210630,AA Batteries (4-pack),1,3.84,2019-06-10 14:46:00,495 River St, New York City,NY,10001 +210631,USB-C Charging Cable,1,11.95,2019-06-29 16:04:00,37 Chestnut St, Dallas,TX,75001 +210632,Apple Airpods Headphones,1,150.0,2019-06-19 11:19:00,619 Washington St, Seattle,WA,98101 +210633,USB-C Charging Cable,1,11.95,2019-06-10 22:31:00,634 7th St, Atlanta,GA,30301 +210634,AA Batteries (4-pack),1,3.84,2019-06-02 11:48:00,986 Highland St, Portland,OR,97035 +210635,ThinkPad Laptop,1,999.99,2019-06-23 00:42:00,705 12th St, Seattle,WA,98101 +210636,Wired Headphones,1,11.99,2019-06-20 17:00:00,196 11th St, Dallas,TX,75001 +210637,iPhone,1,700.0,2019-06-23 18:02:00,935 Lakeview St, Seattle,WA,98101 +210638,Lightning Charging Cable,1,14.95,2019-06-23 09:33:00,180 Hickory St, San Francisco,CA,94016 +210639,Apple Airpods Headphones,1,150.0,2019-06-07 23:00:00,576 Spruce St, Boston,MA,02215 +210640,Macbook Pro Laptop,1,1700.0,2019-06-28 17:46:00,600 1st St, Seattle,WA,98101 +210641,Apple Airpods Headphones,1,150.0,2019-06-03 09:14:00,82 Hickory St, Los Angeles,CA,90001 +210642,Wired Headphones,1,11.99,2019-06-09 10:47:00,465 Pine St, San Francisco,CA,94016 +210643,27in FHD Monitor,1,149.99,2019-06-16 15:04:00,699 13th St, Boston,MA,02215 +210644,Macbook Pro Laptop,1,1700.0,2019-06-23 00:34:00,448 Washington St, New York City,NY,10001 +210645,USB-C Charging Cable,2,11.95,2019-06-12 08:31:00,39 10th St, Portland,OR,97035 +210646,AA Batteries (4-pack),1,3.84,2019-06-30 12:32:00,665 Elm St, Austin,TX,73301 +210647,27in 4K Gaming Monitor,1,389.99,2019-06-18 13:35:00,800 Forest St, Atlanta,GA,30301 +210648,27in FHD Monitor,1,149.99,2019-06-28 16:52:00,161 West St, Los Angeles,CA,90001 +210649,Macbook Pro Laptop,1,1700.0,2019-06-01 20:54:00,548 Center St, San Francisco,CA,94016 +210650,AA Batteries (4-pack),1,3.84,2019-06-22 17:21:00,49 12th St, Portland,ME,04101 +210651,AAA Batteries (4-pack),1,2.99,2019-06-02 23:46:00,835 Lakeview St, San Francisco,CA,94016 +210652,AAA Batteries (4-pack),1,2.99,2019-06-01 14:25:00,562 Meadow St, San Francisco,CA,94016 +210653,AA Batteries (4-pack),2,3.84,2019-06-01 17:13:00,139 West St, San Francisco,CA,94016 +210654,Apple Airpods Headphones,1,150.0,2019-06-02 09:06:00,736 Spruce St, Atlanta,GA,30301 +210655,USB-C Charging Cable,1,11.95,2019-06-13 19:47:00,508 Adams St, Dallas,TX,75001 +210656,AA Batteries (4-pack),1,3.84,2019-06-29 18:10:00,84 1st St, Atlanta,GA,30301 +210657,Flatscreen TV,1,300.0,2019-06-22 11:13:00,989 Elm St, Atlanta,GA,30301 +210658,Apple Airpods Headphones,1,150.0,2019-06-28 11:25:00,981 14th St, San Francisco,CA,94016 +210659,Lightning Charging Cable,1,14.95,2019-06-16 17:23:00,876 Main St, Boston,MA,02215 +210660,Bose SoundSport Headphones,1,99.99,2019-06-14 11:58:00,816 Sunset St, Los Angeles,CA,90001 +210660,Wired Headphones,1,11.99,2019-06-14 11:58:00,816 Sunset St, Los Angeles,CA,90001 +210661,AA Batteries (4-pack),2,3.84,2019-06-18 22:29:00,249 Johnson St, San Francisco,CA,94016 +210662,AAA Batteries (4-pack),1,2.99,2019-06-04 10:50:00,695 Adams St, Boston,MA,02215 +210663,USB-C Charging Cable,1,11.95,2019-06-05 20:00:00,715 South St, New York City,NY,10001 +210664,Flatscreen TV,1,300.0,2019-06-24 17:45:00,222 Hickory St, Boston,MA,02215 +210665,AA Batteries (4-pack),1,3.84,2019-06-19 16:11:00,39 13th St, New York City,NY,10001 +210666,AA Batteries (4-pack),2,3.84,2019-06-19 08:51:00,346 Madison St, San Francisco,CA,94016 +210667,Vareebadd Phone,1,400.0,2019-06-24 14:35:00,903 Hickory St, Boston,MA,02215 +210668,Apple Airpods Headphones,1,150.0,2019-06-04 12:26:00,424 Lake St, Boston,MA,02215 +210669,AA Batteries (4-pack),1,3.84,2019-06-17 13:11:00,916 Dogwood St, San Francisco,CA,94016 +210670,Macbook Pro Laptop,1,1700.0,2019-06-26 18:45:00,276 Meadow St, Portland,OR,97035 +210671,AAA Batteries (4-pack),1,2.99,2019-06-27 09:39:00,763 Adams St, Los Angeles,CA,90001 +210672,AA Batteries (4-pack),1,3.84,2019-06-21 10:15:00,944 1st St, New York City,NY,10001 +210673,Macbook Pro Laptop,1,1700.0,2019-06-05 16:57:00,63 Hickory St, Los Angeles,CA,90001 +210674,ThinkPad Laptop,1,999.99,2019-06-12 02:31:00,558 Spruce St, Seattle,WA,98101 +210675,20in Monitor,1,109.99,2019-06-02 18:49:00,862 South St, Boston,MA,02215 +210676,iPhone,1,700.0,2019-06-30 20:27:00,270 Chestnut St, Los Angeles,CA,90001 +210677,AAA Batteries (4-pack),1,2.99,2019-06-08 18:25:00,266 Ridge St, Atlanta,GA,30301 +210678,27in FHD Monitor,1,149.99,2019-06-11 14:12:00,41 Center St, San Francisco,CA,94016 +210679,iPhone,1,700.0,2019-06-22 14:58:00,830 Park St, Los Angeles,CA,90001 +210679,Lightning Charging Cable,1,14.95,2019-06-22 14:58:00,830 Park St, Los Angeles,CA,90001 +210680,Wired Headphones,1,11.99,2019-06-25 17:57:00,914 7th St, Portland,OR,97035 +210681,USB-C Charging Cable,1,11.95,2019-06-06 19:45:00,533 Madison St, Portland,OR,97035 +210682,Apple Airpods Headphones,1,150.0,2019-06-21 19:12:00,569 Ridge St, Boston,MA,02215 +210683,iPhone,1,700.0,2019-06-16 11:41:00,306 Lincoln St, San Francisco,CA,94016 +210683,Lightning Charging Cable,1,14.95,2019-06-16 11:41:00,306 Lincoln St, San Francisco,CA,94016 +210684,Bose SoundSport Headphones,1,99.99,2019-06-13 07:51:00,661 Wilson St, Seattle,WA,98101 +210685,Wired Headphones,1,11.99,2019-06-17 11:59:00,450 Washington St, Seattle,WA,98101 +210686,USB-C Charging Cable,1,11.95,2019-06-29 16:21:00,833 2nd St, Los Angeles,CA,90001 +210687,Apple Airpods Headphones,1,150.0,2019-06-24 01:12:00,502 2nd St, Atlanta,GA,30301 +210688,ThinkPad Laptop,1,999.99,2019-06-13 16:01:00,29 4th St, Boston,MA,02215 +210689,34in Ultrawide Monitor,1,379.99,2019-06-29 14:56:00,920 Lincoln St, Dallas,TX,75001 +210690,27in FHD Monitor,1,149.99,2019-06-13 17:36:00,300 Church St, Boston,MA,02215 +210691,Flatscreen TV,1,300.0,2019-06-08 22:54:00,42 Church St, Seattle,WA,98101 +210692,AAA Batteries (4-pack),2,2.99,2019-06-12 10:06:00,224 Madison St, Atlanta,GA,30301 +210693,Apple Airpods Headphones,1,150.0,2019-06-24 14:43:00,912 4th St, Atlanta,GA,30301 +210694,AAA Batteries (4-pack),1,2.99,2019-06-12 19:12:00,97 Highland St, Boston,MA,02215 +210695,Macbook Pro Laptop,1,1700.0,2019-06-18 07:48:00,983 River St, Los Angeles,CA,90001 +210696,Bose SoundSport Headphones,1,99.99,2019-06-21 14:10:00,575 2nd St, Atlanta,GA,30301 +210697,AAA Batteries (4-pack),3,2.99,2019-06-20 11:08:00,572 Elm St, Dallas,TX,75001 +210698,USB-C Charging Cable,1,11.95,2019-06-17 16:42:00,442 Cherry St, Atlanta,GA,30301 +210699,Macbook Pro Laptop,1,1700.0,2019-06-09 08:18:00,108 6th St, Boston,MA,02215 +210700,AA Batteries (4-pack),1,3.84,2019-06-18 14:11:00,120 North St, Los Angeles,CA,90001 +210701,27in 4K Gaming Monitor,1,389.99,2019-06-12 05:35:00,814 Sunset St, Dallas,TX,75001 +210702,20in Monitor,1,109.99,2019-06-18 20:14:00,46 Washington St, San Francisco,CA,94016 +210703,Wired Headphones,1,11.99,2019-06-09 10:03:00,905 Lake St, San Francisco,CA,94016 +210704,Wired Headphones,1,11.99,2019-06-17 08:45:00,267 North St, Los Angeles,CA,90001 +210705,ThinkPad Laptop,1,999.99,2019-06-17 11:52:00,610 14th St, Los Angeles,CA,90001 +210706,AA Batteries (4-pack),1,3.84,2019-06-30 10:56:00,408 Forest St, Los Angeles,CA,90001 +210707,Wired Headphones,1,11.99,2019-06-15 00:53:00,442 Lake St, New York City,NY,10001 +210708,USB-C Charging Cable,1,11.95,2019-06-06 22:11:00,576 Sunset St, Boston,MA,02215 +210709,AA Batteries (4-pack),2,3.84,2019-06-10 09:10:00,420 7th St, San Francisco,CA,94016 +210710,Google Phone,1,600.0,2019-06-20 18:13:00,202 Lincoln St, Portland,ME,04101 +210710,USB-C Charging Cable,1,11.95,2019-06-20 18:13:00,202 Lincoln St, Portland,ME,04101 +210711,iPhone,1,700.0,2019-06-22 12:47:00,92 Lakeview St, San Francisco,CA,94016 +210711,Wired Headphones,1,11.99,2019-06-22 12:47:00,92 Lakeview St, San Francisco,CA,94016 +210712,Wired Headphones,2,11.99,2019-06-24 05:00:00,392 Lake St, Austin,TX,73301 +210712,USB-C Charging Cable,1,11.95,2019-06-24 05:00:00,392 Lake St, Austin,TX,73301 +210713,Apple Airpods Headphones,1,150.0,2019-06-29 11:31:00,864 Willow St, San Francisco,CA,94016 +210714,20in Monitor,1,109.99,2019-06-28 12:59:00,35 5th St, Dallas,TX,75001 +210715,AA Batteries (4-pack),1,3.84,2019-06-10 16:29:00,663 13th St, New York City,NY,10001 +210716,Macbook Pro Laptop,1,1700.0,2019-06-28 12:24:00,482 Adams St, San Francisco,CA,94016 +210716,USB-C Charging Cable,1,11.95,2019-06-28 12:24:00,482 Adams St, San Francisco,CA,94016 +210717,27in 4K Gaming Monitor,1,389.99,2019-06-26 13:00:00,214 Lakeview St, San Francisco,CA,94016 +210718,Apple Airpods Headphones,1,150.0,2019-06-10 12:43:00,55 10th St, San Francisco,CA,94016 +210719,27in 4K Gaming Monitor,1,389.99,2019-06-09 20:00:00,962 Forest St, Portland,OR,97035 +210720,iPhone,1,700.0,2019-06-29 08:11:00,190 Dogwood St, Los Angeles,CA,90001 +210721,Wired Headphones,1,11.99,2019-06-21 17:27:00,620 13th St, Boston,MA,02215 +210722,Lightning Charging Cable,1,14.95,2019-06-17 15:09:00,243 14th St, New York City,NY,10001 +210723,20in Monitor,1,109.99,2019-06-26 08:28:00,216 Adams St, Atlanta,GA,30301 +210724,27in 4K Gaming Monitor,1,389.99,2019-06-06 18:25:00,660 River St, San Francisco,CA,94016 +210725,Bose SoundSport Headphones,1,99.99,2019-06-20 14:52:00,306 5th St, San Francisco,CA,94016 +210726,Apple Airpods Headphones,1,150.0,2019-06-08 13:19:00,700 Ridge St, Dallas,TX,75001 +210727,AAA Batteries (4-pack),2,2.99,2019-06-30 19:33:00,408 Dogwood St, New York City,NY,10001 +210728,AAA Batteries (4-pack),1,2.99,2019-06-12 17:05:00,929 Johnson St, San Francisco,CA,94016 +210729,Apple Airpods Headphones,1,150.0,2019-06-15 12:58:00,546 5th St, Portland,OR,97035 +210730,20in Monitor,1,109.99,2019-06-16 12:52:00,185 Jackson St, Los Angeles,CA,90001 +210731,34in Ultrawide Monitor,1,379.99,2019-06-26 19:53:00,894 Sunset St, San Francisco,CA,94016 +210732,iPhone,1,700.0,2019-06-08 10:24:00,484 Forest St, Dallas,TX,75001 +210733,USB-C Charging Cable,1,11.95,2019-06-10 00:14:00,81 Hickory St, New York City,NY,10001 +210734,AAA Batteries (4-pack),1,2.99,2019-06-13 20:57:00,902 Washington St, Atlanta,GA,30301 +210735,AAA Batteries (4-pack),1,2.99,2019-06-14 20:57:00,245 Main St, New York City,NY,10001 +210736,iPhone,1,700.0,2019-06-25 19:49:00,211 13th St, Boston,MA,02215 +210737,Bose SoundSport Headphones,1,99.99,2019-06-30 16:05:00,597 Jackson St, New York City,NY,10001 +210738,Wired Headphones,1,11.99,2019-06-30 13:54:00,319 Park St, Austin,TX,73301 +210739,AA Batteries (4-pack),1,3.84,2019-06-25 20:36:00,159 Chestnut St, Seattle,WA,98101 +210740,Bose SoundSport Headphones,1,99.99,2019-06-18 11:52:00,28 Forest St, Boston,MA,02215 +210741,Bose SoundSport Headphones,1,99.99,2019-06-29 16:01:00,122 5th St, Los Angeles,CA,90001 +210742,AAA Batteries (4-pack),1,2.99,2019-06-10 18:03:00,13 Forest St, Los Angeles,CA,90001 +210743,27in FHD Monitor,1,149.99,2019-06-21 18:52:00,17 Ridge St, Atlanta,GA,30301 +210744,Flatscreen TV,1,300.0,2019-06-26 11:33:00,733 Jackson St, New York City,NY,10001 +210745,AAA Batteries (4-pack),2,2.99,2019-06-17 10:57:00,663 14th St, Boston,MA,02215 +210746,AAA Batteries (4-pack),1,2.99,2019-06-18 16:39:00,221 Spruce St, San Francisco,CA,94016 +210747,Flatscreen TV,1,300.0,2019-06-22 23:54:00,785 14th St, Seattle,WA,98101 +210748,iPhone,1,700.0,2019-06-29 20:03:00,936 Hickory St, San Francisco,CA,94016 +210748,Lightning Charging Cable,1,14.95,2019-06-29 20:03:00,936 Hickory St, San Francisco,CA,94016 +210749,Wired Headphones,1,11.99,2019-06-05 16:34:00,361 10th St, Portland,OR,97035 +210750,AAA Batteries (4-pack),1,2.99,2019-06-24 12:44:00,861 Lake St, New York City,NY,10001 +210751,Apple Airpods Headphones,1,150.0,2019-06-28 13:16:00,653 7th St, Los Angeles,CA,90001 +210752,AA Batteries (4-pack),2,3.84,2019-06-08 09:24:00,294 7th St, Los Angeles,CA,90001 +210753,20in Monitor,1,109.99,2019-06-27 22:01:00,177 Willow St, Los Angeles,CA,90001 +210754,34in Ultrawide Monitor,1,379.99,2019-06-15 18:15:00,409 Lake St, Atlanta,GA,30301 +210755,iPhone,1,700.0,2019-06-24 14:32:00,708 Pine St, New York City,NY,10001 +210755,Wired Headphones,1,11.99,2019-06-24 14:32:00,708 Pine St, New York City,NY,10001 +210756,AA Batteries (4-pack),1,3.84,2019-06-27 12:23:00,53 Jackson St, Los Angeles,CA,90001 +210757,LG Dryer,1,600.0,2019-06-04 14:17:00,720 West St, Atlanta,GA,30301 +210758,Bose SoundSport Headphones,1,99.99,2019-06-04 14:39:00,92 Madison St, Austin,TX,73301 +210759,27in FHD Monitor,1,149.99,2019-06-05 11:54:00,760 7th St, Boston,MA,02215 +210760,USB-C Charging Cable,1,11.95,2019-06-02 17:13:00,115 Johnson St, Atlanta,GA,30301 +210761,iPhone,1,700.0,2019-06-01 15:41:00,494 Center St, Los Angeles,CA,90001 +210762,USB-C Charging Cable,1,11.95,2019-06-01 13:58:00,290 Highland St, Dallas,TX,75001 +210763,USB-C Charging Cable,1,11.95,2019-06-23 13:28:00,683 Spruce St, Austin,TX,73301 +210764,AA Batteries (4-pack),1,3.84,2019-06-29 21:13:00,234 South St, Atlanta,GA,30301 +210765,USB-C Charging Cable,1,11.95,2019-06-13 10:47:00,520 Elm St, New York City,NY,10001 +210766,USB-C Charging Cable,1,11.95,2019-06-20 10:54:00,436 Hickory St, Boston,MA,02215 +210767,Vareebadd Phone,1,400.0,2019-06-05 11:15:00,325 Meadow St, Atlanta,GA,30301 +210768,USB-C Charging Cable,1,11.95,2019-06-28 14:40:00,996 13th St, Los Angeles,CA,90001 +210769,AAA Batteries (4-pack),1,2.99,2019-06-08 09:29:00,307 10th St, San Francisco,CA,94016 +210769,Lightning Charging Cable,2,14.95,2019-06-08 09:29:00,307 10th St, San Francisco,CA,94016 +210770,27in 4K Gaming Monitor,1,389.99,2019-06-18 15:20:00,433 13th St, San Francisco,CA,94016 +210771,34in Ultrawide Monitor,1,379.99,2019-06-24 09:37:00,47 Lake St, San Francisco,CA,94016 +210772,AA Batteries (4-pack),1,3.84,2019-06-06 06:55:00,716 5th St, San Francisco,CA,94016 +210773,ThinkPad Laptop,1,999.99,2019-06-26 09:17:00,665 Church St, Seattle,WA,98101 +210774,Lightning Charging Cable,1,14.95,2019-06-21 09:59:00,357 Park St, Seattle,WA,98101 +210775,Apple Airpods Headphones,1,150.0,2019-06-04 17:00:00,289 Spruce St, New York City,NY,10001 +210776,AAA Batteries (4-pack),1,2.99,2019-06-29 15:54:00,537 Adams St, San Francisco,CA,94016 +210777,iPhone,1,700.0,2019-06-29 20:32:00,394 9th St, Seattle,WA,98101 +210778,Lightning Charging Cable,1,14.95,2019-06-08 21:54:00,969 Main St, Los Angeles,CA,90001 +210779,27in FHD Monitor,1,149.99,2019-06-16 00:42:00,788 2nd St, Portland,ME,04101 +210780,Wired Headphones,1,11.99,2019-06-06 20:04:00,654 Hill St, San Francisco,CA,94016 +210781,Macbook Pro Laptop,1,1700.0,2019-06-12 18:34:00,519 Dogwood St, Los Angeles,CA,90001 +210782,AAA Batteries (4-pack),1,2.99,2019-06-09 17:08:00,163 7th St, Los Angeles,CA,90001 +210783,AA Batteries (4-pack),1,3.84,2019-06-21 01:27:00,529 14th St, New York City,NY,10001 +210784,Vareebadd Phone,1,400.0,2019-06-24 15:39:00,248 Cherry St, Portland,OR,97035 +210785,Lightning Charging Cable,1,14.95,2019-06-26 22:10:00,178 5th St, Seattle,WA,98101 +210786,USB-C Charging Cable,1,11.95,2019-06-20 09:25:00,590 Church St, New York City,NY,10001 +210787,AAA Batteries (4-pack),1,2.99,2019-06-09 09:52:00,622 6th St, San Francisco,CA,94016 +210788,AA Batteries (4-pack),1,3.84,2019-06-20 21:25:00,214 Sunset St, Portland,OR,97035 +210789,AA Batteries (4-pack),1,3.84,2019-06-08 01:03:00,958 Washington St, Atlanta,GA,30301 +210790,LG Washing Machine,1,600.0,2019-06-10 09:30:00,820 Center St, Boston,MA,02215 +210791,Apple Airpods Headphones,1,150.0,2019-06-23 08:50:00,738 Sunset St, Austin,TX,73301 +210792,Google Phone,1,600.0,2019-06-07 14:51:00,472 6th St, New York City,NY,10001 +210792,AAA Batteries (4-pack),1,2.99,2019-06-07 14:51:00,472 6th St, New York City,NY,10001 +210793,Apple Airpods Headphones,1,150.0,2019-06-30 17:51:00,456 2nd St, San Francisco,CA,94016 +210794,AAA Batteries (4-pack),3,2.99,2019-06-01 10:12:00,538 River St, Los Angeles,CA,90001 +210795,AAA Batteries (4-pack),1,2.99,2019-06-08 11:43:00,547 11th St, New York City,NY,10001 +210796,Vareebadd Phone,1,400.0,2019-06-05 11:50:00,955 West St, Boston,MA,02215 +210797,Lightning Charging Cable,1,14.95,2019-06-04 18:09:00,547 Jackson St, Los Angeles,CA,90001 +210798,Lightning Charging Cable,1,14.95,2019-06-24 17:20:00,645 South St, Dallas,TX,75001 +210799,ThinkPad Laptop,1,999.99,2019-06-25 21:52:00,59 Sunset St, San Francisco,CA,94016 +210800,USB-C Charging Cable,1,11.95,2019-06-28 10:08:00,421 Lake St, San Francisco,CA,94016 +210801,Lightning Charging Cable,1,14.95,2019-06-24 09:37:00,922 6th St, San Francisco,CA,94016 +210802,Apple Airpods Headphones,1,150.0,2019-06-26 23:59:00,202 Hickory St, Seattle,WA,98101 +210803,AAA Batteries (4-pack),1,2.99,2019-06-21 17:02:00,174 5th St, San Francisco,CA,94016 +210804,USB-C Charging Cable,2,11.95,2019-06-07 22:05:00,462 Cedar St, San Francisco,CA,94016 +210805,USB-C Charging Cable,1,11.95,2019-06-24 14:58:00,841 Meadow St, San Francisco,CA,94016 +210806,27in 4K Gaming Monitor,1,389.99,2019-06-30 14:49:00,919 River St, Dallas,TX,75001 +210807,Apple Airpods Headphones,1,150.0,2019-06-09 14:21:00,357 River St, Portland,OR,97035 +210808,27in FHD Monitor,1,149.99,2019-06-23 04:20:00,137 Center St, San Francisco,CA,94016 +210809,AA Batteries (4-pack),1,3.84,2019-06-21 16:05:00,108 West St, Seattle,WA,98101 +210810,AA Batteries (4-pack),1,3.84,2019-06-22 18:56:00,449 Walnut St, Boston,MA,02215 +210811,AA Batteries (4-pack),1,3.84,2019-06-14 18:19:00,838 Meadow St, San Francisco,CA,94016 +210812,Bose SoundSport Headphones,1,99.99,2019-06-30 19:37:00,376 Jackson St, Los Angeles,CA,90001 +210813,USB-C Charging Cable,1,11.95,2019-06-13 09:20:00,638 Ridge St, Seattle,WA,98101 +210814,27in FHD Monitor,1,149.99,2019-06-17 23:15:00,399 14th St, Atlanta,GA,30301 +210815,AAA Batteries (4-pack),1,2.99,2019-06-05 20:12:00,254 Ridge St, Atlanta,GA,30301 +210816,Wired Headphones,1,11.99,2019-06-16 12:14:00,188 Cherry St, Atlanta,GA,30301 +210817,Apple Airpods Headphones,1,150.0,2019-06-27 14:16:00,926 Adams St, San Francisco,CA,94016 +210818,AAA Batteries (4-pack),1,2.99,2019-06-05 13:24:00,205 Walnut St, Atlanta,GA,30301 +210819,AAA Batteries (4-pack),4,2.99,2019-06-07 20:49:00,574 Lake St, San Francisco,CA,94016 +210820,34in Ultrawide Monitor,1,379.99,2019-06-23 21:21:00,932 12th St, New York City,NY,10001 +210821,Wired Headphones,1,11.99,2019-06-16 10:36:00,160 Maple St, Atlanta,GA,30301 +210822,Google Phone,1,600.0,2019-06-10 09:36:00,654 Wilson St, San Francisco,CA,94016 +210823,USB-C Charging Cable,1,11.95,2019-06-06 08:59:00,727 Elm St, New York City,NY,10001 +210824,AA Batteries (4-pack),1,3.84,2019-06-26 13:18:00,865 Highland St, Los Angeles,CA,90001 +210825,Lightning Charging Cable,1,14.95,2019-06-12 20:08:00,885 Spruce St, Boston,MA,02215 +210826,Lightning Charging Cable,1,14.95,2019-06-17 12:56:00,216 Walnut St, San Francisco,CA,94016 +210827,iPhone,1,700.0,2019-06-04 09:43:00,408 7th St, San Francisco,CA,94016 +210827,Apple Airpods Headphones,1,150.0,2019-06-04 09:43:00,408 7th St, San Francisco,CA,94016 +210828,AAA Batteries (4-pack),1,2.99,2019-06-12 13:44:00,10 Dogwood St, San Francisco,CA,94016 +210829,AAA Batteries (4-pack),2,2.99,2019-06-11 00:52:00,692 Wilson St, San Francisco,CA,94016 +210830,AA Batteries (4-pack),1,3.84,2019-06-27 21:05:00,681 Elm St, San Francisco,CA,94016 +210831,AA Batteries (4-pack),2,3.84,2019-06-11 00:07:00,646 West St, Dallas,TX,75001 +210832,Lightning Charging Cable,1,14.95,2019-06-09 18:03:00,515 Walnut St, Boston,MA,02215 +210833,AAA Batteries (4-pack),1,2.99,2019-06-26 16:22:00,45 5th St, Los Angeles,CA,90001 +210834,Wired Headphones,1,11.99,2019-06-10 14:25:00,887 Walnut St, San Francisco,CA,94016 +210835,AAA Batteries (4-pack),4,2.99,2019-06-14 22:48:00,316 12th St, New York City,NY,10001 +210836,Wired Headphones,1,11.99,2019-06-29 22:52:00,379 Willow St, New York City,NY,10001 +210837,Vareebadd Phone,1,400.0,2019-06-22 14:27:00,968 Cedar St, New York City,NY,10001 +210837,USB-C Charging Cable,1,11.95,2019-06-22 14:27:00,968 Cedar St, New York City,NY,10001 +210838,Apple Airpods Headphones,1,150.0,2019-06-27 17:44:00,286 Washington St, Portland,OR,97035 +210839,USB-C Charging Cable,1,11.95,2019-06-11 13:26:00,86 Hickory St, Los Angeles,CA,90001 +210840,AA Batteries (4-pack),1,3.84,2019-06-25 23:11:00,963 9th St, New York City,NY,10001 +210841,Lightning Charging Cable,1,14.95,2019-06-14 09:09:00,141 Jackson St, Portland,OR,97035 +210842,AAA Batteries (4-pack),3,2.99,2019-06-05 15:55:00,838 Maple St, Dallas,TX,75001 +210843,Google Phone,1,600.0,2019-06-03 12:08:00,804 Jefferson St, New York City,NY,10001 +210844,34in Ultrawide Monitor,1,379.99,2019-06-12 11:12:00,724 Lakeview St, Boston,MA,02215 +210845,Lightning Charging Cable,1,14.95,2019-06-26 11:40:00,261 2nd St, San Francisco,CA,94016 +210846,USB-C Charging Cable,1,11.95,2019-06-16 09:09:00,90 Adams St, Atlanta,GA,30301 +210847,Lightning Charging Cable,1,14.95,2019-06-08 06:49:00,745 5th St, San Francisco,CA,94016 +210848,AAA Batteries (4-pack),3,2.99,2019-06-29 12:58:00,317 12th St, Atlanta,GA,30301 +210849,AA Batteries (4-pack),1,3.84,2019-06-30 15:34:00,189 Adams St, Dallas,TX,75001 +210850,AA Batteries (4-pack),2,3.84,2019-06-25 10:30:00,625 Center St, Atlanta,GA,30301 +210851,Wired Headphones,1,11.99,2019-06-16 13:45:00,561 Ridge St, Boston,MA,02215 +210852,AAA Batteries (4-pack),2,2.99,2019-06-04 10:25:00,444 Highland St, Seattle,WA,98101 +210853,Macbook Pro Laptop,1,1700.0,2019-06-11 08:56:00,684 South St, Boston,MA,02215 +210854,LG Washing Machine,1,600.0,2019-06-04 18:10:00,671 Spruce St, San Francisco,CA,94016 +210855,Wired Headphones,1,11.99,2019-06-25 21:00:00,527 Washington St, Boston,MA,02215 +210856,Wired Headphones,1,11.99,2019-06-03 06:46:00,504 Cedar St, San Francisco,CA,94016 +210857,AA Batteries (4-pack),1,3.84,2019-06-15 10:59:00,166 Adams St, San Francisco,CA,94016 +210858,AA Batteries (4-pack),3,3.84,2019-06-02 10:48:00,632 Lakeview St, New York City,NY,10001 +210859,27in FHD Monitor,1,149.99,2019-06-16 08:20:00,123 Meadow St, Atlanta,GA,30301 +210860,AAA Batteries (4-pack),2,2.99,2019-06-19 20:29:00,294 Adams St, San Francisco,CA,94016 +210861,Flatscreen TV,1,300.0,2019-06-13 12:52:00,240 Willow St, Los Angeles,CA,90001 +210862,ThinkPad Laptop,1,999.99,2019-06-09 14:56:00,393 9th St, Los Angeles,CA,90001 +210863,Wired Headphones,1,11.99,2019-06-24 19:21:00,294 Forest St, Portland,ME,04101 +210864,Bose SoundSport Headphones,1,99.99,2019-06-06 10:50:00,169 Ridge St, San Francisco,CA,94016 +210865,27in 4K Gaming Monitor,1,389.99,2019-06-06 17:50:00,298 Church St, Los Angeles,CA,90001 +210866,27in 4K Gaming Monitor,1,389.99,2019-06-11 23:37:00,989 Forest St, Atlanta,GA,30301 +210867,AA Batteries (4-pack),1,3.84,2019-06-02 06:37:00,920 Dogwood St, San Francisco,CA,94016 +210867,Lightning Charging Cable,1,14.95,2019-06-02 06:37:00,920 Dogwood St, San Francisco,CA,94016 +210868,Bose SoundSport Headphones,1,99.99,2019-06-29 12:12:00,620 Hickory St, Seattle,WA,98101 +210869,27in FHD Monitor,1,149.99,2019-06-08 14:49:00,855 Jackson St, Portland,OR,97035 +210870,AA Batteries (4-pack),1,3.84,2019-06-20 22:10:00,548 Highland St, Boston,MA,02215 +210871,Wired Headphones,1,11.99,2019-06-06 16:21:00,3 Madison St, New York City,NY,10001 +210872,Vareebadd Phone,1,400.0,2019-06-09 17:24:00,166 Church St, New York City,NY,10001 +210873,Apple Airpods Headphones,1,150.0,2019-06-10 09:34:00,935 4th St, Los Angeles,CA,90001 +210874,Bose SoundSport Headphones,1,99.99,2019-06-20 13:59:00,423 Madison St, New York City,NY,10001 +210875,Wired Headphones,2,11.99,2019-06-13 16:19:00,264 Pine St, Los Angeles,CA,90001 +210876,Lightning Charging Cable,1,14.95,2019-06-19 15:18:00,248 Spruce St, Austin,TX,73301 +210877,Lightning Charging Cable,1,14.95,2019-06-21 11:05:00,26 Johnson St, Los Angeles,CA,90001 +210878,Lightning Charging Cable,1,14.95,2019-06-06 14:49:00,619 Spruce St, Dallas,TX,75001 +210879,USB-C Charging Cable,1,11.95,2019-06-06 16:38:00,600 Lake St, San Francisco,CA,94016 +210880,Lightning Charging Cable,1,14.95,2019-06-03 19:19:00,887 Center St, Los Angeles,CA,90001 +210881,AA Batteries (4-pack),1,3.84,2019-06-16 12:50:00,648 Adams St, Boston,MA,02215 +210882,Wired Headphones,1,11.99,2019-06-01 15:02:00,281 Ridge St, Seattle,WA,98101 +210883,iPhone,1,700.0,2019-06-17 20:59:00,351 Madison St, New York City,NY,10001 +210883,Lightning Charging Cable,1,14.95,2019-06-17 20:59:00,351 Madison St, New York City,NY,10001 +210884,AA Batteries (4-pack),1,3.84,2019-06-30 01:58:00,601 6th St, Atlanta,GA,30301 +210885,USB-C Charging Cable,1,11.95,2019-06-03 12:32:00,377 Meadow St, Los Angeles,CA,90001 +210886,ThinkPad Laptop,1,999.99,2019-06-20 15:25:00,357 2nd St, San Francisco,CA,94016 +210887,iPhone,1,700.0,2019-06-15 12:59:00,511 Meadow St, Atlanta,GA,30301 +210888,Google Phone,1,600.0,2019-06-12 08:12:00,630 Church St, Seattle,WA,98101 +210889,Wired Headphones,1,11.99,2019-06-14 22:46:00,629 South St, Seattle,WA,98101 +210890,Lightning Charging Cable,1,14.95,2019-06-24 18:28:00,428 Cherry St, Portland,OR,97035 +210891,AAA Batteries (4-pack),1,2.99,2019-06-04 19:16:00,55 Ridge St, Los Angeles,CA,90001 +210892,34in Ultrawide Monitor,1,379.99,2019-06-01 18:48:00,38 Cedar St, Seattle,WA,98101 +210893,USB-C Charging Cable,1,11.95,2019-06-19 15:58:00,18 Chestnut St, Dallas,TX,75001 +210894,AA Batteries (4-pack),1,3.84,2019-06-27 20:41:00,530 Cedar St, Seattle,WA,98101 +210895,Bose SoundSport Headphones,1,99.99,2019-06-28 21:49:00,66 North St, San Francisco,CA,94016 +210896,Macbook Pro Laptop,1,1700.0,2019-06-06 09:13:00,111 Pine St, Dallas,TX,75001 +210897,20in Monitor,1,109.99,2019-06-01 19:12:00,705 7th St, New York City,NY,10001 +210898,Bose SoundSport Headphones,1,99.99,2019-06-27 10:50:00,439 6th St, Portland,OR,97035 +210899,Lightning Charging Cable,1,14.95,2019-06-12 13:22:00,385 11th St, Los Angeles,CA,90001 +210900,Apple Airpods Headphones,1,150.0,2019-06-07 08:40:00,889 Jackson St, Seattle,WA,98101 +210901,USB-C Charging Cable,1,11.95,2019-06-13 20:05:00,703 6th St, Los Angeles,CA,90001 +210902,Lightning Charging Cable,1,14.95,2019-06-18 20:56:00,113 11th St, Portland,OR,97035 +210903,Macbook Pro Laptop,1,1700.0,2019-06-07 17:59:00,938 Chestnut St, New York City,NY,10001 +210904,27in 4K Gaming Monitor,1,389.99,2019-06-11 19:31:00,709 Meadow St, New York City,NY,10001 +210905,20in Monitor,1,109.99,2019-06-03 11:33:00,662 North St, Los Angeles,CA,90001 +210906,Wired Headphones,1,11.99,2019-06-21 11:52:00,431 4th St, New York City,NY,10001 +210907,Lightning Charging Cable,1,14.95,2019-06-28 17:21:00,732 13th St, Dallas,TX,75001 +210908,iPhone,1,700.0,2019-06-10 16:34:00,293 Spruce St, San Francisco,CA,94016 +210909,iPhone,1,700.0,2019-06-03 10:22:00,68 Lincoln St, San Francisco,CA,94016 +210910,34in Ultrawide Monitor,1,379.99,2019-06-03 15:58:00,32 Wilson St, Los Angeles,CA,90001 +210911,Macbook Pro Laptop,1,1700.0,2019-06-27 13:06:00,648 Main St, Los Angeles,CA,90001 +210912,USB-C Charging Cable,1,11.95,2019-06-23 15:50:00,602 Ridge St, New York City,NY,10001 +210913,Bose SoundSport Headphones,1,99.99,2019-06-14 08:21:00,127 Meadow St, Dallas,TX,75001 +210914,Apple Airpods Headphones,1,150.0,2019-06-27 10:34:00,112 River St, Los Angeles,CA,90001 +210915,Wired Headphones,1,11.99,2019-06-14 17:39:00,730 1st St, Boston,MA,02215 +210916,USB-C Charging Cable,1,11.95,2019-06-29 14:08:00,897 14th St, New York City,NY,10001 +210917,USB-C Charging Cable,1,11.95,2019-06-30 09:03:00,619 Dogwood St, San Francisco,CA,94016 +210918,iPhone,1,700.0,2019-06-08 15:49:00,898 7th St, New York City,NY,10001 +210919,AA Batteries (4-pack),1,3.84,2019-06-10 11:52:00,591 Cedar St, New York City,NY,10001 +210920,AAA Batteries (4-pack),1,2.99,2019-06-16 10:43:00,551 Wilson St, Portland,ME,04101 +210920,Apple Airpods Headphones,1,150.0,2019-06-16 10:43:00,551 Wilson St, Portland,ME,04101 +210921,Lightning Charging Cable,1,14.95,2019-06-17 16:19:00,530 South St, San Francisco,CA,94016 +210922,27in FHD Monitor,1,149.99,2019-06-17 13:57:00,696 Center St, Boston,MA,02215 +210923,USB-C Charging Cable,1,11.95,2019-06-08 18:51:00,258 2nd St, Boston,MA,02215 +210923,Bose SoundSport Headphones,1,99.99,2019-06-08 18:51:00,258 2nd St, Boston,MA,02215 +210924,Wired Headphones,1,11.99,2019-06-08 13:46:00,35 11th St, Los Angeles,CA,90001 +210925,Flatscreen TV,1,300.0,2019-06-09 10:14:00,584 Highland St, Los Angeles,CA,90001 +210926,iPhone,1,700.0,2019-06-25 22:23:00,105 4th St, Atlanta,GA,30301 +210927,AA Batteries (4-pack),1,3.84,2019-06-19 21:37:00,596 Johnson St, Portland,OR,97035 +210928,USB-C Charging Cable,1,11.95,2019-06-26 07:46:00,187 4th St, New York City,NY,10001 +210929,Bose SoundSport Headphones,1,99.99,2019-06-27 13:28:00,985 Lakeview St, Atlanta,GA,30301 +210930,Apple Airpods Headphones,1,150.0,2019-06-16 12:41:00,354 Lincoln St, Los Angeles,CA,90001 +210931,AA Batteries (4-pack),1,3.84,2019-06-12 17:04:00,953 10th St, Atlanta,GA,30301 +210932,Wired Headphones,1,11.99,2019-06-19 10:38:00,66 Ridge St, Dallas,TX,75001 +210933,AAA Batteries (4-pack),2,2.99,2019-06-04 11:14:00,432 4th St, Dallas,TX,75001 +210934,Bose SoundSport Headphones,1,99.99,2019-06-01 20:51:00,347 11th St, New York City,NY,10001 +210935,Lightning Charging Cable,1,14.95,2019-06-04 12:44:00,305 Ridge St, Los Angeles,CA,90001 +210936,Lightning Charging Cable,1,14.95,2019-06-17 20:18:00,8 11th St, Portland,OR,97035 +210937,USB-C Charging Cable,1,11.95,2019-06-22 11:31:00,160 1st St, San Francisco,CA,94016 +210938,Bose SoundSport Headphones,1,99.99,2019-06-17 19:23:00,598 Maple St, Los Angeles,CA,90001 +210939,Bose SoundSport Headphones,1,99.99,2019-06-16 09:18:00,76 Jefferson St, New York City,NY,10001 +210940,AAA Batteries (4-pack),4,2.99,2019-06-25 18:16:00,470 Center St, San Francisco,CA,94016 +210941,Wired Headphones,1,11.99,2019-06-14 17:06:00,553 Sunset St, Atlanta,GA,30301 +210942,Google Phone,1,600.0,2019-06-09 12:49:00,837 Center St, Boston,MA,02215 +210943,USB-C Charging Cable,1,11.95,2019-06-30 22:59:00,251 12th St, Atlanta,GA,30301 +210944,27in FHD Monitor,1,149.99,2019-06-21 16:28:00,773 Cedar St, Seattle,WA,98101 +210945,Flatscreen TV,1,300.0,2019-06-07 19:38:00,636 West St, Atlanta,GA,30301 +210946,Macbook Pro Laptop,1,1700.0,2019-06-30 12:20:00,991 Lincoln St, Boston,MA,02215 +210947,AA Batteries (4-pack),2,3.84,2019-06-13 06:35:00,55 Walnut St, Atlanta,GA,30301 +210948,Vareebadd Phone,1,400.0,2019-06-24 17:58:00,318 Chestnut St, New York City,NY,10001 +210949,Lightning Charging Cable,1,14.95,2019-06-25 01:19:00,273 Hill St, Austin,TX,73301 +210950,Apple Airpods Headphones,1,150.0,2019-06-22 20:00:00,479 Hickory St, New York City,NY,10001 +210951,AAA Batteries (4-pack),5,2.99,2019-06-02 14:26:00,696 8th St, Seattle,WA,98101 +210952,iPhone,1,700.0,2019-06-16 05:09:00,327 Johnson St, Boston,MA,02215 +210953,iPhone,1,700.0,2019-06-10 16:28:00,402 Cherry St, San Francisco,CA,94016 +210954,AA Batteries (4-pack),1,3.84,2019-06-13 13:34:00,626 6th St, San Francisco,CA,94016 +210955,20in Monitor,1,109.99,2019-06-30 21:50:00,908 7th St, San Francisco,CA,94016 +210956,AA Batteries (4-pack),1,3.84,2019-06-02 03:39:00,553 River St, San Francisco,CA,94016 +210957,Bose SoundSport Headphones,1,99.99,2019-06-25 17:14:00,238 1st St, Atlanta,GA,30301 +210958,USB-C Charging Cable,1,11.95,2019-06-02 19:04:00,778 Dogwood St, Atlanta,GA,30301 +210959,AAA Batteries (4-pack),1,2.99,2019-06-24 04:56:00,476 Willow St, San Francisco,CA,94016 +210960,Apple Airpods Headphones,1,150.0,2019-06-30 16:25:00,496 Cherry St, Boston,MA,02215 +210961,Wired Headphones,1,11.99,2019-06-12 10:25:00,173 River St, New York City,NY,10001 +210962,Flatscreen TV,1,300.0,2019-06-25 09:20:00,89 Cedar St, New York City,NY,10001 +210963,Bose SoundSport Headphones,1,99.99,2019-06-13 23:45:00,35 9th St, New York City,NY,10001 +210964,Vareebadd Phone,1,400.0,2019-06-24 06:25:00,643 Lakeview St, San Francisco,CA,94016 +210964,USB-C Charging Cable,1,11.95,2019-06-24 06:25:00,643 Lakeview St, San Francisco,CA,94016 +210964,Wired Headphones,1,11.99,2019-06-24 06:25:00,643 Lakeview St, San Francisco,CA,94016 +210965,Wired Headphones,1,11.99,2019-06-20 06:38:00,476 Spruce St, Los Angeles,CA,90001 +210966,Vareebadd Phone,1,400.0,2019-06-18 11:46:00,457 Main St, Atlanta,GA,30301 +210967,Wired Headphones,1,11.99,2019-06-13 08:10:00,99 Wilson St, Austin,TX,73301 +210968,AA Batteries (4-pack),1,3.84,2019-06-01 14:34:00,652 13th St, Atlanta,GA,30301 +210969,Wired Headphones,1,11.99,2019-06-28 06:08:00,707 4th St, San Francisco,CA,94016 +210970,Bose SoundSport Headphones,1,99.99,2019-06-15 19:32:00,103 Cedar St, Portland,OR,97035 +210971,AAA Batteries (4-pack),1,2.99,2019-06-28 12:52:00,353 Center St, San Francisco,CA,94016 +210972,USB-C Charging Cable,1,11.95,2019-06-27 01:37:00,106 2nd St, Atlanta,GA,30301 +210973,AAA Batteries (4-pack),2,2.99,2019-06-02 11:45:00,236 Lincoln St, Austin,TX,73301 +210974,34in Ultrawide Monitor,1,379.99,2019-06-02 12:19:00,560 Meadow St, New York City,NY,10001 +210975,ThinkPad Laptop,1,999.99,2019-06-07 18:03:00,711 Hickory St, Atlanta,GA,30301 +210976,USB-C Charging Cable,1,11.95,2019-06-11 13:10:00,980 6th St, Portland,OR,97035 +210977,USB-C Charging Cable,2,11.95,2019-06-05 11:16:00,561 Spruce St, Los Angeles,CA,90001 +210978,Lightning Charging Cable,1,14.95,2019-06-06 20:37:00,859 Cedar St, Boston,MA,02215 +210979,AA Batteries (4-pack),1,3.84,2019-06-27 19:41:00,634 Sunset St, San Francisco,CA,94016 +210980,AAA Batteries (4-pack),2,2.99,2019-06-22 09:02:00,482 Spruce St, San Francisco,CA,94016 +210981,ThinkPad Laptop,1,999.99,2019-06-07 17:47:00,664 Elm St, San Francisco,CA,94016 +210982,27in FHD Monitor,1,149.99,2019-06-16 20:48:00,740 Madison St, Los Angeles,CA,90001 +210983,AAA Batteries (4-pack),3,2.99,2019-06-04 17:24:00,768 Madison St, Los Angeles,CA,90001 +210984,Flatscreen TV,1,300.0,2019-06-17 22:58:00,474 Chestnut St, Atlanta,GA,30301 +210985,Macbook Pro Laptop,1,1700.0,2019-06-12 10:13:00,829 Main St, Dallas,TX,75001 +210986,USB-C Charging Cable,1,11.95,2019-06-19 12:35:00,399 11th St, San Francisco,CA,94016 +210987,AA Batteries (4-pack),1,3.84,2019-06-27 13:45:00,795 West St, San Francisco,CA,94016 +210988,AA Batteries (4-pack),1,3.84,2019-06-29 01:04:00,747 West St, Dallas,TX,75001 +210989,USB-C Charging Cable,3,11.95,2019-06-14 07:32:00,458 Cedar St, San Francisco,CA,94016 +210990,20in Monitor,1,109.99,2019-06-03 21:46:00,602 10th St, Los Angeles,CA,90001 +210991,Wired Headphones,1,11.99,2019-06-17 14:53:00,144 Johnson St, San Francisco,CA,94016 +210992,Wired Headphones,1,11.99,2019-06-03 21:35:00,122 Ridge St, New York City,NY,10001 +210993,Google Phone,1,600.0,2019-06-25 09:50:00,615 13th St, Seattle,WA,98101 +210994,AA Batteries (4-pack),1,3.84,2019-06-28 20:32:00,826 Church St, New York City,NY,10001 +210995,Vareebadd Phone,1,400.0,2019-06-26 14:37:00,619 Ridge St, Atlanta,GA,30301 +210995,Wired Headphones,1,11.99,2019-06-26 14:37:00,619 Ridge St, Atlanta,GA,30301 +210996,Lightning Charging Cable,1,14.95,2019-06-17 14:22:00,568 5th St, Portland,ME,04101 +210996,Apple Airpods Headphones,1,150.0,2019-06-17 14:22:00,568 5th St, Portland,ME,04101 +210997,Wired Headphones,2,11.99,2019-06-01 08:19:00,438 Sunset St, Dallas,TX,75001 +210998,AAA Batteries (4-pack),1,2.99,2019-06-09 10:30:00,166 10th St, Austin,TX,73301 +210999,AAA Batteries (4-pack),1,2.99,2019-06-10 15:23:00,762 West St, Atlanta,GA,30301 +211000,AA Batteries (4-pack),1,3.84,2019-06-09 12:41:00,735 Maple St, Atlanta,GA,30301 +211001,Bose SoundSport Headphones,1,99.99,2019-06-05 12:14:00,702 Wilson St, San Francisco,CA,94016 +211002,AA Batteries (4-pack),1,3.84,2019-06-12 15:34:00,187 14th St, Seattle,WA,98101 +211003,Bose SoundSport Headphones,1,99.99,2019-06-14 11:12:00,489 Lakeview St, Los Angeles,CA,90001 +211004,20in Monitor,1,109.99,2019-06-26 19:07:00,4 Cherry St, Boston,MA,02215 +211005,Google Phone,1,600.0,2019-06-10 20:41:00,856 Wilson St, Dallas,TX,75001 +211006,AAA Batteries (4-pack),1,2.99,2019-06-18 10:55:00,942 River St, Boston,MA,02215 +211007,Apple Airpods Headphones,1,150.0,2019-06-10 10:19:00,913 Elm St, San Francisco,CA,94016 +211008,USB-C Charging Cable,1,11.95,2019-06-07 10:53:00,589 Jefferson St, New York City,NY,10001 +211009,AAA Batteries (4-pack),2,2.99,2019-06-20 17:11:00,208 Lincoln St, Dallas,TX,75001 +211010,Wired Headphones,1,11.99,2019-06-04 21:36:00,207 Lake St, Dallas,TX,75001 +211011,LG Washing Machine,1,600.0,2019-06-16 13:47:00,175 Highland St, Los Angeles,CA,90001 +211012,Lightning Charging Cable,1,14.95,2019-06-07 16:26:00,121 Lake St, Dallas,TX,75001 +211013,AA Batteries (4-pack),1,3.84,2019-06-10 20:29:00,79 Wilson St, Boston,MA,02215 +211014,Wired Headphones,1,11.99,2019-06-18 11:01:00,100 12th St, Los Angeles,CA,90001 +211015,Lightning Charging Cable,1,14.95,2019-06-23 16:18:00,344 Lake St, Atlanta,GA,30301 +211016,AA Batteries (4-pack),4,3.84,2019-06-18 09:51:00,309 Maple St, Austin,TX,73301 +211017,Bose SoundSport Headphones,1,99.99,2019-06-14 20:51:00,342 5th St, San Francisco,CA,94016 +211017,AA Batteries (4-pack),1,3.84,2019-06-14 20:51:00,342 5th St, San Francisco,CA,94016 +211018,34in Ultrawide Monitor,1,379.99,2019-06-24 18:21:00,743 Main St, Seattle,WA,98101 +211019,Apple Airpods Headphones,1,150.0,2019-06-25 06:47:00,74 Main St, San Francisco,CA,94016 +211020,Wired Headphones,3,11.99,2019-06-26 19:39:00,648 Maple St, New York City,NY,10001 +211021,USB-C Charging Cable,1,11.95,2019-06-06 11:33:00,88 Chestnut St, Seattle,WA,98101 +211022,27in 4K Gaming Monitor,1,389.99,2019-06-05 22:34:00,820 Lincoln St, New York City,NY,10001 +211023,AAA Batteries (4-pack),2,2.99,2019-06-19 19:41:00,889 4th St, Seattle,WA,98101 +211024,Bose SoundSport Headphones,1,99.99,2019-06-01 08:49:00,455 9th St, Seattle,WA,98101 +211025,AAA Batteries (4-pack),1,2.99,2019-06-08 11:59:00,434 10th St, San Francisco,CA,94016 +211026,Lightning Charging Cable,1,14.95,2019-06-27 09:37:00,898 12th St, Seattle,WA,98101 +211027,Vareebadd Phone,1,400.0,2019-06-13 12:10:00,890 Adams St, New York City,NY,10001 +211028,20in Monitor,1,109.99,2019-06-25 23:19:00,975 Lakeview St, Dallas,TX,75001 +211029,Flatscreen TV,1,300.0,2019-06-24 09:24:00,587 Hill St, Portland,OR,97035 +211030,AAA Batteries (4-pack),1,2.99,2019-06-20 08:54:00,969 8th St, Seattle,WA,98101 +211031,USB-C Charging Cable,1,11.95,2019-06-06 22:05:00,296 Ridge St, Los Angeles,CA,90001 +211032,AAA Batteries (4-pack),4,2.99,2019-06-08 13:06:00,372 Wilson St, San Francisco,CA,94016 +211033,27in 4K Gaming Monitor,1,389.99,2019-06-23 15:50:00,806 Hickory St, Boston,MA,02215 +211034,AA Batteries (4-pack),1,3.84,2019-06-25 22:12:00,835 Spruce St, Boston,MA,02215 +211035,34in Ultrawide Monitor,1,379.99,2019-06-23 14:03:00,933 Hill St, San Francisco,CA,94016 +211036,Wired Headphones,1,11.99,2019-06-14 18:45:00,76 Cherry St, San Francisco,CA,94016 +211037,ThinkPad Laptop,1,999.99,2019-06-19 23:27:00,245 Johnson St, Atlanta,GA,30301 +211038,27in FHD Monitor,1,149.99,2019-06-23 13:16:00,25 Meadow St, San Francisco,CA,94016 +211039,Lightning Charging Cable,1,14.95,2019-06-04 12:55:00,199 Hickory St, Portland,OR,97035 +211040,Bose SoundSport Headphones,1,99.99,2019-06-19 17:51:00,779 6th St, Seattle,WA,98101 +211041,AA Batteries (4-pack),1,3.84,2019-06-15 14:12:00,172 Lincoln St, Los Angeles,CA,90001 +211042,Lightning Charging Cable,1,14.95,2019-06-22 14:46:00,643 8th St, Atlanta,GA,30301 +211043,AAA Batteries (4-pack),2,2.99,2019-06-30 11:44:00,478 Lake St, San Francisco,CA,94016 +211044,iPhone,1,700.0,2019-06-02 09:17:00,71 Wilson St, Boston,MA,02215 +211045,AA Batteries (4-pack),1,3.84,2019-06-05 02:09:00,513 Hill St, San Francisco,CA,94016 +211046,Lightning Charging Cable,1,14.95,2019-06-12 12:18:00,543 Spruce St, San Francisco,CA,94016 +211047,USB-C Charging Cable,1,11.95,2019-06-09 13:15:00,891 Jackson St, New York City,NY,10001 +211048,Lightning Charging Cable,1,14.95,2019-06-30 20:50:00,68 Chestnut St, Austin,TX,73301 +211049,27in 4K Gaming Monitor,1,389.99,2019-06-05 21:29:00,44 5th St, Seattle,WA,98101 +211050,AAA Batteries (4-pack),1,2.99,2019-06-15 08:32:00,160 6th St, Boston,MA,02215 +211051,20in Monitor,1,109.99,2019-06-06 10:38:00,567 Dogwood St, Atlanta,GA,30301 +211052,Bose SoundSport Headphones,1,99.99,2019-06-16 12:48:00,507 Walnut St, Seattle,WA,98101 +211053,Wired Headphones,1,11.99,2019-06-09 15:25:00,381 1st St, Seattle,WA,98101 +211054,USB-C Charging Cable,1,11.95,2019-06-12 14:56:00,482 Jefferson St, Seattle,WA,98101 +211055,AAA Batteries (4-pack),1,2.99,2019-06-13 11:44:00,631 Adams St, Atlanta,GA,30301 +211056,Bose SoundSport Headphones,1,99.99,2019-06-03 07:48:00,811 Main St, Austin,TX,73301 +211057,AAA Batteries (4-pack),1,2.99,2019-06-28 13:59:00,334 Madison St, San Francisco,CA,94016 +211058,Apple Airpods Headphones,1,150.0,2019-06-22 15:55:00,438 13th St, Austin,TX,73301 +211058,Macbook Pro Laptop,1,1700.0,2019-06-22 15:55:00,438 13th St, Austin,TX,73301 +211059,Lightning Charging Cable,1,14.95,2019-06-05 13:42:00,775 West St, Los Angeles,CA,90001 +211060,AA Batteries (4-pack),4,3.84,2019-06-18 14:21:00,449 Lake St, Los Angeles,CA,90001 +211061,Wired Headphones,2,11.99,2019-06-15 13:58:00,127 Highland St, Boston,MA,02215 +211062,AA Batteries (4-pack),1,3.84,2019-06-08 10:41:00,28 Cedar St, Los Angeles,CA,90001 +211063,27in FHD Monitor,1,149.99,2019-06-03 20:20:00,717 Church St, Portland,OR,97035 +211064,USB-C Charging Cable,1,11.95,2019-06-15 18:47:00,978 Park St, Seattle,WA,98101 +211065,34in Ultrawide Monitor,1,379.99,2019-06-11 15:42:00,556 Sunset St, San Francisco,CA,94016 +211066,34in Ultrawide Monitor,1,379.99,2019-06-24 21:28:00,788 South St, Boston,MA,02215 +211067,Macbook Pro Laptop,1,1700.0,2019-06-13 05:00:00,124 Hill St, Seattle,WA,98101 +211068,Macbook Pro Laptop,1,1700.0,2019-06-13 10:18:00,697 Church St, San Francisco,CA,94016 +211069,AA Batteries (4-pack),1,3.84,2019-06-12 19:55:00,246 11th St, Atlanta,GA,30301 +211070,Google Phone,1,600.0,2019-06-04 14:49:00,806 River St, New York City,NY,10001 +211071,Bose SoundSport Headphones,1,99.99,2019-06-12 10:51:00,474 North St, Atlanta,GA,30301 +211072,USB-C Charging Cable,2,11.95,2019-06-25 08:48:00,534 7th St, Seattle,WA,98101 +211073,AAA Batteries (4-pack),1,2.99,2019-06-11 18:56:00,433 Center St, New York City,NY,10001 +211074,Vareebadd Phone,1,400.0,2019-06-22 13:27:00,513 Walnut St, Portland,OR,97035 +211074,Bose SoundSport Headphones,1,99.99,2019-06-22 13:27:00,513 Walnut St, Portland,OR,97035 +211075,AA Batteries (4-pack),1,3.84,2019-06-16 16:19:00,209 Center St, New York City,NY,10001 +211076,Bose SoundSport Headphones,1,99.99,2019-06-09 13:21:00,33 Madison St, San Francisco,CA,94016 +211077,Lightning Charging Cable,1,14.95,2019-06-30 18:45:00,694 Highland St, New York City,NY,10001 +211078,AA Batteries (4-pack),1,3.84,2019-06-23 18:19:00,692 2nd St, Seattle,WA,98101 +211079,AA Batteries (4-pack),1,3.84,2019-06-21 19:26:00,460 Highland St, Seattle,WA,98101 +211080,Apple Airpods Headphones,1,150.0,2019-06-14 21:23:00,776 4th St, Boston,MA,02215 +211081,Apple Airpods Headphones,1,150.0,2019-06-03 14:13:00,116 Madison St, Los Angeles,CA,90001 +211082,AA Batteries (4-pack),1,3.84,2019-06-16 17:51:00,152 5th St, San Francisco,CA,94016 +211083,USB-C Charging Cable,1,11.95,2019-06-11 20:18:00,425 Johnson St, Atlanta,GA,30301 +211084,Lightning Charging Cable,1,14.95,2019-06-09 11:16:00,831 Jefferson St, Atlanta,GA,30301 +211085,USB-C Charging Cable,1,11.95,2019-06-10 00:37:00,760 13th St, New York City,NY,10001 +211086,Wired Headphones,1,11.99,2019-06-24 08:40:00,461 Adams St, Boston,MA,02215 +211087,Google Phone,1,600.0,2019-06-06 12:58:00,510 2nd St, San Francisco,CA,94016 +211088,iPhone,1,700.0,2019-06-13 22:14:00,731 Lakeview St, Seattle,WA,98101 +211089,iPhone,1,700.0,2019-06-15 11:11:00,102 Elm St, New York City,NY,10001 +211090,27in 4K Gaming Monitor,1,389.99,2019-06-09 21:10:00,245 Hickory St, Seattle,WA,98101 +211091,27in FHD Monitor,1,149.99,2019-06-18 07:27:00,325 Meadow St, New York City,NY,10001 +211092,USB-C Charging Cable,1,11.95,2019-06-17 19:13:00,633 8th St, Boston,MA,02215 +211093,Flatscreen TV,1,300.0,2019-06-20 16:02:00,420 10th St, Los Angeles,CA,90001 +211094,AAA Batteries (4-pack),1,2.99,2019-06-18 11:31:00,942 Highland St, Austin,TX,73301 +211094,AA Batteries (4-pack),2,3.84,2019-06-18 11:31:00,942 Highland St, Austin,TX,73301 +211095,Lightning Charging Cable,1,14.95,2019-06-20 20:30:00,952 Johnson St, San Francisco,CA,94016 +211096,Lightning Charging Cable,1,14.95,2019-06-07 10:09:00,969 Jefferson St, New York City,NY,10001 +211097,AAA Batteries (4-pack),9,2.99,2019-06-23 08:29:00,338 Hickory St, Los Angeles,CA,90001 +211098,34in Ultrawide Monitor,1,379.99,2019-06-02 16:17:00,668 Dogwood St, Boston,MA,02215 +211099,Wired Headphones,1,11.99,2019-06-23 01:11:00,696 Walnut St, New York City,NY,10001 +211100,Vareebadd Phone,1,400.0,2019-06-25 16:47:00,342 Main St, Los Angeles,CA,90001 +211101,Apple Airpods Headphones,1,150.0,2019-06-18 18:02:00,935 North St, San Francisco,CA,94016 +211101,USB-C Charging Cable,1,11.95,2019-06-18 18:02:00,935 North St, San Francisco,CA,94016 +211102,34in Ultrawide Monitor,1,379.99,2019-06-09 21:52:00,826 Jefferson St, San Francisco,CA,94016 +211103,AAA Batteries (4-pack),1,2.99,2019-06-08 20:21:00,896 Hill St, San Francisco,CA,94016 +211104,AA Batteries (4-pack),3,3.84,2019-06-19 16:46:00,166 4th St, Austin,TX,73301 +211105,Google Phone,1,600.0,2019-06-09 14:13:00,217 Washington St, Seattle,WA,98101 +211105,USB-C Charging Cable,1,11.95,2019-06-09 14:13:00,217 Washington St, Seattle,WA,98101 +211106,Google Phone,1,600.0,2019-06-15 18:22:00,958 Main St, Austin,TX,73301 +211107,Apple Airpods Headphones,1,150.0,2019-06-16 22:31:00,147 11th St, Los Angeles,CA,90001 +211108,USB-C Charging Cable,1,11.95,2019-06-29 19:33:00,904 10th St, San Francisco,CA,94016 +211109,Bose SoundSport Headphones,1,99.99,2019-06-04 10:13:00,24 Jefferson St, Los Angeles,CA,90001 +211110,ThinkPad Laptop,1,999.99,2019-06-30 13:08:00,35 Cedar St, San Francisco,CA,94016 +211111,Bose SoundSport Headphones,1,99.99,2019-06-27 15:44:00,541 Chestnut St, Boston,MA,02215 +211112,Flatscreen TV,1,300.0,2019-06-11 14:44:00,58 12th St, San Francisco,CA,94016 +211113,AAA Batteries (4-pack),2,2.99,2019-06-19 16:51:00,637 1st St, Portland,OR,97035 +211114,Wired Headphones,1,11.99,2019-06-30 20:15:00,310 Spruce St, Seattle,WA,98101 +211115,27in 4K Gaming Monitor,1,389.99,2019-06-05 12:09:00,515 Spruce St, Portland,ME,04101 +211116,Lightning Charging Cable,1,14.95,2019-06-19 01:27:00,734 14th St, San Francisco,CA,94016 +211117,AA Batteries (4-pack),2,3.84,2019-06-30 22:05:00,31 Chestnut St, Seattle,WA,98101 +211118,Bose SoundSport Headphones,1,99.99,2019-06-25 16:47:00,869 Adams St, San Francisco,CA,94016 +211119,Lightning Charging Cable,1,14.95,2019-06-03 16:38:00,936 Chestnut St, San Francisco,CA,94016 +211120,20in Monitor,1,109.99,2019-06-30 18:31:00,110 Madison St, Atlanta,GA,30301 +211121,34in Ultrawide Monitor,1,379.99,2019-06-14 21:53:00,800 8th St, Seattle,WA,98101 +211122,Apple Airpods Headphones,1,150.0,2019-06-07 14:48:00,711 12th St, Atlanta,GA,30301 +211123,AAA Batteries (4-pack),1,2.99,2019-06-30 06:26:00,406 10th St, New York City,NY,10001 +211124,iPhone,1,700.0,2019-06-30 18:41:00,814 5th St, San Francisco,CA,94016 +211124,Lightning Charging Cable,1,14.95,2019-06-30 18:41:00,814 5th St, San Francisco,CA,94016 +211125,AA Batteries (4-pack),1,3.84,2019-06-24 13:44:00,69 Chestnut St, San Francisco,CA,94016 +211126,AA Batteries (4-pack),1,3.84,2019-06-08 11:34:00,767 Park St, New York City,NY,10001 +211127,34in Ultrawide Monitor,1,379.99,2019-06-20 18:59:00,431 Hickory St, Seattle,WA,98101 +211128,Wired Headphones,1,11.99,2019-06-10 16:25:00,317 10th St, New York City,NY,10001 +211129,Apple Airpods Headphones,1,150.0,2019-06-22 18:39:00,407 Center St, Portland,OR,97035 +211130,AA Batteries (4-pack),1,3.84,2019-06-01 17:57:00,168 Adams St, Dallas,TX,75001 +211131,AA Batteries (4-pack),2,3.84,2019-06-10 18:05:00,406 Chestnut St, New York City,NY,10001 +211132,USB-C Charging Cable,1,11.95,2019-06-29 20:40:00,572 Ridge St, Los Angeles,CA,90001 +211133,27in FHD Monitor,1,149.99,2019-06-04 00:33:00,572 13th St, Atlanta,GA,30301 +211134,Google Phone,1,600.0,2019-06-18 18:42:00,660 Center St, San Francisco,CA,94016 +211134,USB-C Charging Cable,1,11.95,2019-06-18 18:42:00,660 Center St, San Francisco,CA,94016 +211135,iPhone,1,700.0,2019-06-03 01:36:00,753 Cedar St, Los Angeles,CA,90001 +211136,Lightning Charging Cable,1,14.95,2019-06-14 20:43:00,586 Forest St, Austin,TX,73301 +211137,USB-C Charging Cable,1,11.95,2019-06-13 20:43:00,203 2nd St, San Francisco,CA,94016 +211138,27in FHD Monitor,1,149.99,2019-06-20 06:46:00,234 1st St, Dallas,TX,75001 +211139,34in Ultrawide Monitor,1,379.99,2019-06-12 15:18:00,742 Spruce St, New York City,NY,10001 +211140,Wired Headphones,1,11.99,2019-06-24 10:47:00,825 Center St, Atlanta,GA,30301 +211141,Lightning Charging Cable,1,14.95,2019-06-21 20:17:00,151 Forest St, Austin,TX,73301 +211142,27in FHD Monitor,1,149.99,2019-06-20 23:36:00,205 1st St, Portland,ME,04101 +211143,Wired Headphones,1,11.99,2019-06-30 14:11:00,679 Pine St, New York City,NY,10001 +211144,Wired Headphones,1,11.99,2019-06-07 19:12:00,202 12th St, Dallas,TX,75001 +211145,27in 4K Gaming Monitor,1,389.99,2019-06-10 20:06:00,757 4th St, San Francisco,CA,94016 +211146,Wired Headphones,1,11.99,2019-06-22 01:06:00,900 10th St, San Francisco,CA,94016 +211147,Lightning Charging Cable,1,14.95,2019-06-17 18:07:00,935 9th St, Seattle,WA,98101 +211148,AA Batteries (4-pack),1,3.84,2019-06-10 14:36:00,766 Center St, San Francisco,CA,94016 +211149,AAA Batteries (4-pack),1,2.99,2019-06-29 12:52:00,809 Center St, Los Angeles,CA,90001 +211150,AA Batteries (4-pack),1,3.84,2019-06-13 15:20:00,60 13th St, San Francisco,CA,94016 +211151,Bose SoundSport Headphones,1,99.99,2019-06-26 13:07:00,104 Washington St, Portland,OR,97035 +211152,Lightning Charging Cable,1,14.95,2019-06-20 11:12:00,619 Jefferson St, San Francisco,CA,94016 +211153,Bose SoundSport Headphones,1,99.99,2019-06-10 15:08:00,556 1st St, New York City,NY,10001 +211154,Apple Airpods Headphones,1,150.0,2019-06-03 21:45:00,989 4th St, New York City,NY,10001 +211155,AAA Batteries (4-pack),2,2.99,2019-06-29 10:09:00,67 Forest St, San Francisco,CA,94016 +211156,ThinkPad Laptop,1,999.99,2019-06-09 12:21:00,533 Ridge St, San Francisco,CA,94016 +211157,AAA Batteries (4-pack),2,2.99,2019-06-22 20:27:00,947 11th St, Boston,MA,02215 +211158,Apple Airpods Headphones,1,150.0,2019-06-23 13:09:00,465 Walnut St, New York City,NY,10001 +211159,AAA Batteries (4-pack),1,2.99,2019-06-21 13:08:00,34 Johnson St, San Francisco,CA,94016 +211160,27in 4K Gaming Monitor,1,389.99,2019-06-12 23:33:00,347 Washington St, Atlanta,GA,30301 +211161,AAA Batteries (4-pack),2,2.99,2019-06-25 21:29:00,20 Spruce St, San Francisco,CA,94016 +211162,AA Batteries (4-pack),1,3.84,2019-06-21 14:31:00,843 Lake St, Atlanta,GA,30301 +211163,AA Batteries (4-pack),1,3.84,2019-06-12 15:48:00,832 Pine St, Los Angeles,CA,90001 +211164,iPhone,1,700.0,2019-06-20 11:29:00,815 West St, Los Angeles,CA,90001 +211165,AAA Batteries (4-pack),2,2.99,2019-06-27 11:02:00,130 Highland St, San Francisco,CA,94016 +211166,AA Batteries (4-pack),1,3.84,2019-06-16 08:34:00,614 Madison St, Los Angeles,CA,90001 +211167,Apple Airpods Headphones,1,150.0,2019-06-28 07:54:00,42 9th St, San Francisco,CA,94016 +211168,AAA Batteries (4-pack),1,2.99,2019-06-20 17:39:00,34 7th St, Dallas,TX,75001 +211169,LG Washing Machine,1,600.0,2019-06-15 10:52:00,297 2nd St, Boston,MA,02215 +211170,Lightning Charging Cable,1,14.95,2019-06-20 15:58:00,238 Main St, San Francisco,CA,94016 +211171,20in Monitor,1,109.99,2019-06-11 06:11:00,408 14th St, Boston,MA,02215 +211172,27in 4K Gaming Monitor,1,389.99,2019-06-03 20:35:00,405 Wilson St, Boston,MA,02215 +211173,Lightning Charging Cable,1,14.95,2019-06-20 17:52:00,102 West St, Boston,MA,02215 +211174,USB-C Charging Cable,1,11.95,2019-06-13 22:36:00,53 Washington St, Los Angeles,CA,90001 +211175,AAA Batteries (4-pack),2,2.99,2019-06-11 15:26:00,955 Pine St, Boston,MA,02215 +211176,Lightning Charging Cable,1,14.95,2019-06-22 09:23:00,849 9th St, New York City,NY,10001 +211177,USB-C Charging Cable,1,11.95,2019-06-10 11:39:00,236 8th St, New York City,NY,10001 +211178,27in 4K Gaming Monitor,1,389.99,2019-06-10 10:34:00,446 West St, Los Angeles,CA,90001 +211179,Wired Headphones,1,11.99,2019-06-05 14:59:00,986 Forest St, Seattle,WA,98101 +211180,Apple Airpods Headphones,1,150.0,2019-06-27 12:45:00,60 10th St, New York City,NY,10001 +211181,Flatscreen TV,1,300.0,2019-06-29 08:48:00,151 Washington St, Austin,TX,73301 +211182,Lightning Charging Cable,1,14.95,2019-06-30 11:05:00,265 12th St, Dallas,TX,75001 +211183,Wired Headphones,1,11.99,2019-06-16 01:03:00,892 11th St, Dallas,TX,75001 +211184,Wired Headphones,1,11.99,2019-06-22 12:41:00,462 9th St, Portland,ME,04101 +211185,34in Ultrawide Monitor,1,379.99,2019-06-02 07:17:00,643 Cherry St, New York City,NY,10001 +211186,Wired Headphones,1,11.99,2019-06-13 16:07:00,30 Main St, New York City,NY,10001 +211186,34in Ultrawide Monitor,1,379.99,2019-06-13 16:07:00,30 Main St, New York City,NY,10001 +211187,20in Monitor,1,109.99,2019-06-29 19:15:00,306 Jefferson St, Los Angeles,CA,90001 +211188,Google Phone,1,600.0,2019-06-22 14:56:00,842 9th St, San Francisco,CA,94016 +211188,USB-C Charging Cable,1,11.95,2019-06-22 14:56:00,842 9th St, San Francisco,CA,94016 +211189,Apple Airpods Headphones,1,150.0,2019-06-10 12:33:00,723 Center St, New York City,NY,10001 +211190,20in Monitor,1,109.99,2019-06-17 17:50:00,620 10th St, San Francisco,CA,94016 +211191,AAA Batteries (4-pack),1,2.99,2019-06-29 00:17:00,482 5th St, San Francisco,CA,94016 +211192,Apple Airpods Headphones,1,150.0,2019-06-06 19:33:00,585 Lake St, Portland,ME,04101 +211193,AA Batteries (4-pack),1,3.84,2019-06-08 12:30:00,900 Madison St, New York City,NY,10001 +211193,USB-C Charging Cable,1,11.95,2019-06-08 12:30:00,900 Madison St, New York City,NY,10001 +211194,Bose SoundSport Headphones,1,99.99,2019-06-19 22:29:00,533 Meadow St, San Francisco,CA,94016 +211195,Lightning Charging Cable,1,14.95,2019-06-22 22:30:00,554 Highland St, New York City,NY,10001 +211196,Flatscreen TV,1,300.0,2019-06-22 11:24:00,11 Center St, Austin,TX,73301 +211197,Apple Airpods Headphones,1,150.0,2019-06-27 13:28:00,379 Lakeview St, New York City,NY,10001 +211198,Wired Headphones,1,11.99,2019-06-30 23:54:00,350 Hill St, Los Angeles,CA,90001 +211199,AAA Batteries (4-pack),1,2.99,2019-06-24 17:53:00,15 Dogwood St, Los Angeles,CA,90001 +211200,Wired Headphones,1,11.99,2019-06-20 14:56:00,230 Adams St, Boston,MA,02215 +211201,Lightning Charging Cable,1,14.95,2019-06-20 16:16:00,42 Lakeview St, Atlanta,GA,30301 +211202,AAA Batteries (4-pack),3,2.99,2019-06-02 18:38:00,750 7th St, Boston,MA,02215 +211203,Macbook Pro Laptop,1,1700.0,2019-06-27 11:56:00,358 8th St, Atlanta,GA,30301 +211204,Wired Headphones,1,11.99,2019-06-18 21:03:00,551 8th St, Atlanta,GA,30301 +211205,20in Monitor,1,109.99,2019-06-14 14:32:00,599 Jefferson St, Boston,MA,02215 +211206,AAA Batteries (4-pack),2,2.99,2019-06-26 22:39:00,458 Main St, San Francisco,CA,94016 +211207,LG Washing Machine,1,600.0,2019-06-07 15:14:00,65 Pine St, Seattle,WA,98101 +211208,AAA Batteries (4-pack),1,2.99,2019-06-23 15:48:00,253 Park St, Boston,MA,02215 +211209,Lightning Charging Cable,1,14.95,2019-06-18 23:36:00,70 Church St, Dallas,TX,75001 +211210,Lightning Charging Cable,1,14.95,2019-06-10 00:32:00,530 Madison St, San Francisco,CA,94016 +211211,AAA Batteries (4-pack),1,2.99,2019-06-08 23:16:00,117 West St, Los Angeles,CA,90001 +211212,Lightning Charging Cable,1,14.95,2019-06-16 20:02:00,884 11th St, Portland,OR,97035 +211213,Lightning Charging Cable,1,14.95,2019-06-30 11:55:00,860 Meadow St, Austin,TX,73301 +211214,Bose SoundSport Headphones,1,99.99,2019-06-26 16:51:00,157 4th St, Seattle,WA,98101 +211215,Wired Headphones,2,11.99,2019-06-08 23:04:00,69 2nd St, New York City,NY,10001 +211216,AA Batteries (4-pack),3,3.84,2019-06-04 06:01:00,529 West St, Portland,OR,97035 +211217,Bose SoundSport Headphones,1,99.99,2019-06-10 07:12:00,263 Highland St, Portland,ME,04101 +211218,Bose SoundSport Headphones,1,99.99,2019-06-16 22:38:00,448 Church St, Portland,ME,04101 +211219,27in FHD Monitor,1,149.99,2019-06-08 21:25:00,285 Forest St, San Francisco,CA,94016 +211220,20in Monitor,1,109.99,2019-06-24 14:15:00,346 Spruce St, Atlanta,GA,30301 +211221,AA Batteries (4-pack),2,3.84,2019-06-10 23:28:00,146 Johnson St, San Francisco,CA,94016 +211222,USB-C Charging Cable,1,11.95,2019-06-23 16:01:00,512 Johnson St, Atlanta,GA,30301 +211223,AA Batteries (4-pack),1,3.84,2019-06-29 15:12:00,422 West St, Los Angeles,CA,90001 +211224,34in Ultrawide Monitor,1,379.99,2019-06-10 14:58:00,27 8th St, Dallas,TX,75001 +211225,27in FHD Monitor,1,149.99,2019-06-07 14:55:00,838 Ridge St, Boston,MA,02215 +211226,USB-C Charging Cable,1,11.95,2019-06-25 13:01:00,201 4th St, Boston,MA,02215 +211227,20in Monitor,1,109.99,2019-06-01 13:18:00,476 Ridge St, Portland,OR,97035 +211228,USB-C Charging Cable,1,11.95,2019-06-18 15:50:00,621 Pine St, Dallas,TX,75001 +211229,USB-C Charging Cable,1,11.95,2019-06-10 21:19:00,610 Church St, Los Angeles,CA,90001 +211230,27in FHD Monitor,1,149.99,2019-06-23 14:02:00,859 Main St, San Francisco,CA,94016 +211231,AA Batteries (4-pack),1,3.84,2019-06-05 10:24:00,444 Cedar St, Portland,OR,97035 +211231,Wired Headphones,1,11.99,2019-06-05 10:24:00,444 Cedar St, Portland,OR,97035 +211232,Bose SoundSport Headphones,1,99.99,2019-06-06 11:07:00,75 Hickory St, San Francisco,CA,94016 +211233,27in FHD Monitor,1,149.99,2019-06-14 07:41:00,715 7th St, Portland,OR,97035 +211234,Bose SoundSport Headphones,1,99.99,2019-06-05 19:49:00,607 Hickory St, Dallas,TX,75001 +211235,AA Batteries (4-pack),1,3.84,2019-06-04 16:48:00,482 Church St, Los Angeles,CA,90001 +211236,AAA Batteries (4-pack),1,2.99,2019-06-10 10:24:00,274 Jefferson St, Austin,TX,73301 +211237,USB-C Charging Cable,1,11.95,2019-06-17 23:48:00,67 Madison St, Seattle,WA,98101 +211238,Apple Airpods Headphones,1,150.0,2019-06-03 13:46:00,5 Elm St, New York City,NY,10001 +211239,34in Ultrawide Monitor,1,379.99,2019-06-22 08:00:00,116 13th St, Seattle,WA,98101 +211240,Flatscreen TV,1,300.0,2019-06-28 18:38:00,875 13th St, New York City,NY,10001 +211241,AA Batteries (4-pack),2,3.84,2019-06-11 20:52:00,575 Jefferson St, Los Angeles,CA,90001 +211242,AAA Batteries (4-pack),1,2.99,2019-06-10 19:57:00,709 Walnut St, San Francisco,CA,94016 +211243,27in 4K Gaming Monitor,1,389.99,2019-06-16 18:22:00,274 Lake St, Los Angeles,CA,90001 +211244,USB-C Charging Cable,1,11.95,2019-06-14 07:06:00,640 5th St, Los Angeles,CA,90001 +211245,Wired Headphones,1,11.99,2019-06-12 14:33:00,125 Cherry St, Boston,MA,02215 +211246,34in Ultrawide Monitor,1,379.99,2019-06-27 14:24:00,766 Hill St, Los Angeles,CA,90001 +211247,USB-C Charging Cable,1,11.95,2019-06-30 20:40:00,815 13th St, San Francisco,CA,94016 +211248,Bose SoundSport Headphones,1,99.99,2019-06-13 19:36:00,384 8th St, New York City,NY,10001 +211249,AAA Batteries (4-pack),1,2.99,2019-06-19 14:55:00,357 Dogwood St, Los Angeles,CA,90001 +211250,Apple Airpods Headphones,1,150.0,2019-06-10 19:44:00,169 Main St, Dallas,TX,75001 +211251,AAA Batteries (4-pack),1,2.99,2019-06-18 17:26:00,54 Chestnut St, Los Angeles,CA,90001 +211252,AA Batteries (4-pack),1,3.84,2019-06-12 20:27:00,90 Forest St, Atlanta,GA,30301 +211253,27in FHD Monitor,1,149.99,2019-06-16 22:53:00,315 Center St, New York City,NY,10001 +211254,Wired Headphones,1,11.99,2019-06-28 16:40:00,900 Dogwood St, San Francisco,CA,94016 +211255,34in Ultrawide Monitor,1,379.99,2019-06-30 17:25:00,457 12th St, San Francisco,CA,94016 +211255,AAA Batteries (4-pack),1,2.99,2019-06-30 17:25:00,457 12th St, San Francisco,CA,94016 +211256,Vareebadd Phone,1,400.0,2019-06-30 05:17:00,769 Dogwood St, Los Angeles,CA,90001 +211257,Wired Headphones,1,11.99,2019-06-19 18:01:00,10 6th St, San Francisco,CA,94016 +211258,Lightning Charging Cable,1,14.95,2019-06-17 21:17:00,100 Church St, Portland,OR,97035 +211259,Apple Airpods Headphones,1,150.0,2019-06-12 09:12:00,538 West St, Atlanta,GA,30301 +211260,AAA Batteries (4-pack),1,2.99,2019-06-22 13:26:00,734 Johnson St, San Francisco,CA,94016 +211261,Bose SoundSport Headphones,1,99.99,2019-06-03 15:35:00,234 Lakeview St, Atlanta,GA,30301 +211262,ThinkPad Laptop,1,999.99,2019-06-19 13:36:00,305 10th St, San Francisco,CA,94016 +211263,ThinkPad Laptop,1,999.99,2019-06-04 22:51:00,823 Willow St, San Francisco,CA,94016 +211264,USB-C Charging Cable,2,11.95,2019-06-07 16:50:00,654 Lakeview St, Dallas,TX,75001 +211265,Wired Headphones,1,11.99,2019-06-28 15:32:00,74 Maple St, Dallas,TX,75001 +211266,Lightning Charging Cable,1,14.95,2019-06-22 22:17:00,279 1st St, Los Angeles,CA,90001 +211267,Wired Headphones,1,11.99,2019-06-21 18:29:00,255 Center St, New York City,NY,10001 +211268,Lightning Charging Cable,1,14.95,2019-06-13 20:31:00,906 Center St, Boston,MA,02215 +211269,Wired Headphones,1,11.99,2019-06-12 16:15:00,948 10th St, San Francisco,CA,94016 +211270,USB-C Charging Cable,2,11.95,2019-06-08 10:03:00,314 Willow St, Los Angeles,CA,90001 +211271,AAA Batteries (4-pack),3,2.99,2019-06-05 00:41:00,578 Johnson St, Atlanta,GA,30301 +211272,34in Ultrawide Monitor,1,379.99,2019-06-18 15:16:00,531 Spruce St, San Francisco,CA,94016 +211273,Bose SoundSport Headphones,1,99.99,2019-06-24 17:35:00,320 6th St, Dallas,TX,75001 +211274,AAA Batteries (4-pack),1,2.99,2019-06-27 00:01:00,942 Washington St, New York City,NY,10001 +211275,Apple Airpods Headphones,1,150.0,2019-06-21 09:53:00,807 Walnut St, New York City,NY,10001 +211276,20in Monitor,1,109.99,2019-06-20 08:50:00,144 Hill St, New York City,NY,10001 +211277,AAA Batteries (4-pack),1,2.99,2019-06-15 11:20:00,916 Cedar St, Dallas,TX,75001 +211278,AAA Batteries (4-pack),2,2.99,2019-06-16 20:02:00,310 Lakeview St, San Francisco,CA,94016 +211279,Google Phone,1,600.0,2019-06-22 21:33:00,869 North St, Atlanta,GA,30301 +211280,Bose SoundSport Headphones,1,99.99,2019-06-29 09:51:00,168 11th St, Portland,OR,97035 +211281,Wired Headphones,1,11.99,2019-06-17 08:30:00,418 Forest St, New York City,NY,10001 +211282,ThinkPad Laptop,1,999.99,2019-06-01 11:16:00,396 Hill St, Los Angeles,CA,90001 +211283,Wired Headphones,1,11.99,2019-06-09 11:02:00,711 Cherry St, San Francisco,CA,94016 +211284,Apple Airpods Headphones,1,150.0,2019-06-18 00:30:00,984 13th St, Portland,OR,97035 +211285,AA Batteries (4-pack),1,3.84,2019-06-08 11:54:00,860 Pine St, Los Angeles,CA,90001 +211286,Bose SoundSport Headphones,1,99.99,2019-06-12 19:13:00,481 12th St, San Francisco,CA,94016 +211287,Lightning Charging Cable,1,14.95,2019-06-10 07:34:00,110 Wilson St, Dallas,TX,75001 +211288,27in FHD Monitor,1,149.99,2019-06-20 19:53:00,182 Highland St, San Francisco,CA,94016 +211289,Wired Headphones,1,11.99,2019-06-13 00:05:00,803 6th St, Los Angeles,CA,90001 +211290,Apple Airpods Headphones,1,150.0,2019-06-15 09:15:00,473 Ridge St, Seattle,WA,98101 +211291,USB-C Charging Cable,1,11.95,2019-06-12 13:59:00,469 Highland St, Seattle,WA,98101 +211292,20in Monitor,1,109.99,2019-06-21 11:36:00,865 12th St, Dallas,TX,75001 +211293,Bose SoundSport Headphones,1,99.99,2019-06-11 20:52:00,935 West St, New York City,NY,10001 +211294,iPhone,1,700.0,2019-06-11 18:31:00,112 Sunset St, Atlanta,GA,30301 +211295,Flatscreen TV,1,300.0,2019-06-29 18:04:00,523 Highland St, San Francisco,CA,94016 +211296,USB-C Charging Cable,1,11.95,2019-06-22 21:15:00,306 South St, Boston,MA,02215 +211297,AAA Batteries (4-pack),1,2.99,2019-06-15 16:25:00,342 Dogwood St, San Francisco,CA,94016 +211298,Apple Airpods Headphones,1,150.0,2019-06-18 13:05:00,921 11th St, Los Angeles,CA,90001 +211299,iPhone,1,700.0,2019-06-03 15:54:00,203 8th St, Atlanta,GA,30301 +211300,AA Batteries (4-pack),2,3.84,2019-06-10 10:09:00,115 10th St, Dallas,TX,75001 +211301,Wired Headphones,1,11.99,2019-06-26 18:37:00,111 Cherry St, Los Angeles,CA,90001 +211302,AAA Batteries (4-pack),2,2.99,2019-06-07 13:48:00,278 Wilson St, Portland,OR,97035 +211303,AA Batteries (4-pack),1,3.84,2019-06-24 09:49:00,956 Park St, San Francisco,CA,94016 +211304,ThinkPad Laptop,1,999.99,2019-06-14 12:42:00,298 West St, Seattle,WA,98101 +211305,Wired Headphones,1,11.99,2019-06-13 18:47:00,955 12th St, San Francisco,CA,94016 +211306,Flatscreen TV,1,300.0,2019-06-01 11:53:00,895 Park St, New York City,NY,10001 +211307,Lightning Charging Cable,1,14.95,2019-06-11 12:19:00,654 1st St, Los Angeles,CA,90001 +211308,USB-C Charging Cable,1,11.95,2019-06-10 21:39:00,712 Madison St, Seattle,WA,98101 +211309,AAA Batteries (4-pack),4,2.99,2019-06-19 18:14:00,151 Chestnut St, New York City,NY,10001 +211310,Apple Airpods Headphones,1,150.0,2019-06-01 07:17:00,486 13th St, San Francisco,CA,94016 +211311,USB-C Charging Cable,1,11.95,2019-06-04 17:16:00,613 Lincoln St, Portland,OR,97035 +211312,AA Batteries (4-pack),3,3.84,2019-06-19 20:45:00,473 Lincoln St, San Francisco,CA,94016 +211313,20in Monitor,2,109.99,2019-06-08 20:25:00,322 Maple St, Austin,TX,73301 +211314,Apple Airpods Headphones,1,150.0,2019-06-25 11:09:00,787 Lakeview St, Los Angeles,CA,90001 +211315,Wired Headphones,1,11.99,2019-06-04 10:49:00,619 7th St, Austin,TX,73301 +211316,Bose SoundSport Headphones,1,99.99,2019-06-02 18:10:00,706 6th St, Seattle,WA,98101 +211317,Bose SoundSport Headphones,2,99.99,2019-06-30 15:40:00,588 Jackson St, Boston,MA,02215 +211318,Lightning Charging Cable,1,14.95,2019-06-11 07:08:00,351 Chestnut St, San Francisco,CA,94016 +211319,Lightning Charging Cable,1,14.95,2019-06-27 10:37:00,718 Park St, Los Angeles,CA,90001 +211320,USB-C Charging Cable,1,11.95,2019-06-24 15:36:00,222 Cedar St, New York City,NY,10001 +211321,Macbook Pro Laptop,1,1700.0,2019-06-17 07:58:00,15 12th St, Portland,OR,97035 +211322,USB-C Charging Cable,1,11.95,2019-06-20 00:57:00,923 Lake St, New York City,NY,10001 +211323,Google Phone,1,600.0,2019-06-23 15:11:00,651 Church St, Seattle,WA,98101 +211324,Macbook Pro Laptop,1,1700.0,2019-06-17 17:29:00,532 11th St, Boston,MA,02215 +211325,Wired Headphones,2,11.99,2019-06-19 20:06:00,442 Elm St, Portland,OR,97035 +211326,iPhone,1,700.0,2019-06-28 13:26:00,425 Main St, Seattle,WA,98101 +211327,ThinkPad Laptop,1,999.99,2019-06-06 21:05:00,930 Ridge St, Los Angeles,CA,90001 +211328,Bose SoundSport Headphones,1,99.99,2019-06-09 21:01:00,829 1st St, San Francisco,CA,94016 +211329,Apple Airpods Headphones,1,150.0,2019-06-25 07:30:00,942 Lincoln St, Atlanta,GA,30301 +211329,27in FHD Monitor,1,149.99,2019-06-25 07:30:00,942 Lincoln St, Atlanta,GA,30301 +211330,Macbook Pro Laptop,1,1700.0,2019-06-28 11:29:00,477 Ridge St, Portland,ME,04101 +211331,AAA Batteries (4-pack),1,2.99,2019-06-07 00:04:00,785 10th St, Dallas,TX,75001 +211332,Apple Airpods Headphones,1,150.0,2019-06-11 23:51:00,830 Church St, Boston,MA,02215 +211333,USB-C Charging Cable,1,11.95,2019-06-28 17:05:00,90 Hill St, Los Angeles,CA,90001 +211334,Apple Airpods Headphones,1,150.0,2019-06-04 10:57:00,545 Lincoln St, Boston,MA,02215 +211335,34in Ultrawide Monitor,1,379.99,2019-06-11 13:11:00,506 2nd St, San Francisco,CA,94016 +211336,Bose SoundSport Headphones,1,99.99,2019-06-11 10:16:00,600 Park St, San Francisco,CA,94016 +211337,USB-C Charging Cable,1,11.95,2019-06-15 17:39:00,434 Hill St, Atlanta,GA,30301 +211338,LG Washing Machine,1,600.0,2019-06-27 10:45:00,4 Adams St, San Francisco,CA,94016 +211339,USB-C Charging Cable,1,11.95,2019-06-24 20:07:00,125 Forest St, Los Angeles,CA,90001 +211340,27in FHD Monitor,1,149.99,2019-06-29 20:11:00,73 Adams St, Dallas,TX,75001 +211341,AAA Batteries (4-pack),1,2.99,2019-06-27 17:48:00,586 Hickory St, Los Angeles,CA,90001 +211342,AA Batteries (4-pack),1,3.84,2019-06-16 18:18:00,211 Wilson St, San Francisco,CA,94016 +211343,34in Ultrawide Monitor,1,379.99,2019-06-17 19:33:00,314 Johnson St, Boston,MA,02215 +211344,USB-C Charging Cable,1,11.95,2019-06-17 03:50:00,104 Meadow St, New York City,NY,10001 +211345,iPhone,1,700.0,2019-06-18 19:57:00,903 Sunset St, Portland,OR,97035 +211346,AAA Batteries (4-pack),1,2.99,2019-06-09 17:00:00,82 West St, San Francisco,CA,94016 +211347,Vareebadd Phone,1,400.0,2019-06-15 22:11:00,22 Cherry St, San Francisco,CA,94016 +211347,USB-C Charging Cable,1,11.95,2019-06-15 22:11:00,22 Cherry St, San Francisco,CA,94016 +211348,Google Phone,1,600.0,2019-06-06 08:55:00,571 Jackson St, San Francisco,CA,94016 +211348,Bose SoundSport Headphones,1,99.99,2019-06-06 08:55:00,571 Jackson St, San Francisco,CA,94016 +211349,AA Batteries (4-pack),2,3.84,2019-06-10 19:58:00,873 Sunset St, Atlanta,GA,30301 +211350,AA Batteries (4-pack),1,3.84,2019-06-26 09:05:00,415 Jackson St, Portland,OR,97035 +211351,ThinkPad Laptop,1,999.99,2019-06-23 22:46:00,291 Johnson St, Los Angeles,CA,90001 +211352,27in 4K Gaming Monitor,1,389.99,2019-06-20 18:04:00,302 Park St, Boston,MA,02215 +211353,Wired Headphones,1,11.99,2019-06-11 10:55:00,100 Meadow St, Austin,TX,73301 +211354,ThinkPad Laptop,1,999.99,2019-06-09 12:57:00,854 Dogwood St, San Francisco,CA,94016 +211355,iPhone,1,700.0,2019-06-14 10:20:00,117 North St, San Francisco,CA,94016 +211355,Apple Airpods Headphones,1,150.0,2019-06-14 10:20:00,117 North St, San Francisco,CA,94016 +211356,AAA Batteries (4-pack),1,2.99,2019-06-17 15:52:00,718 Sunset St, San Francisco,CA,94016 +211357,Lightning Charging Cable,1,14.95,2019-06-08 14:07:00,847 South St, Atlanta,GA,30301 +211358,USB-C Charging Cable,1,11.95,2019-06-07 13:33:00,850 River St, Portland,OR,97035 +211359,27in 4K Gaming Monitor,1,389.99,2019-06-01 16:40:00,608 Lake St, Los Angeles,CA,90001 +211359,AA Batteries (4-pack),1,3.84,2019-06-01 16:40:00,608 Lake St, Los Angeles,CA,90001 +211360,Apple Airpods Headphones,1,150.0,2019-06-15 09:30:00,944 Ridge St, Atlanta,GA,30301 +211361,27in 4K Gaming Monitor,1,389.99,2019-06-10 19:42:00,593 Wilson St, Portland,OR,97035 +211362,Wired Headphones,1,11.99,2019-06-21 09:41:00,13 Chestnut St, Portland,OR,97035 +211363,Lightning Charging Cable,1,14.95,2019-06-22 15:07:00,592 West St, San Francisco,CA,94016 +211364,Bose SoundSport Headphones,1,99.99,2019-06-28 06:46:00,955 2nd St, Los Angeles,CA,90001 +211365,Wired Headphones,1,11.99,2019-06-29 17:56:00,580 11th St, Los Angeles,CA,90001 +211366,20in Monitor,1,109.99,2019-06-02 14:35:00,575 Lincoln St, Seattle,WA,98101 +211367,USB-C Charging Cable,1,11.95,2019-06-08 19:47:00,541 Hickory St, Portland,OR,97035 +211368,USB-C Charging Cable,1,11.95,2019-06-24 10:45:00,669 Elm St, New York City,NY,10001 +211369,AA Batteries (4-pack),2,3.84,2019-06-02 16:34:00,368 Johnson St, San Francisco,CA,94016 +211370,27in 4K Gaming Monitor,1,389.99,2019-06-13 18:18:00,779 Highland St, Portland,OR,97035 +211371,iPhone,1,700.0,2019-06-11 18:18:00,991 11th St, San Francisco,CA,94016 +211372,Wired Headphones,1,11.99,2019-06-01 21:01:00,154 8th St, Los Angeles,CA,90001 +211373,Apple Airpods Headphones,1,150.0,2019-06-13 23:14:00,526 7th St, Austin,TX,73301 +211374,Bose SoundSport Headphones,1,99.99,2019-06-06 22:07:00,181 8th St, San Francisco,CA,94016 +211375,Apple Airpods Headphones,1,150.0,2019-06-05 18:52:00,436 Maple St, Portland,OR,97035 +211376,USB-C Charging Cable,1,11.95,2019-06-06 13:43:00,573 Cherry St, Dallas,TX,75001 +211377,Flatscreen TV,1,300.0,2019-06-06 19:24:00,481 Maple St, Portland,OR,97035 +211377,AA Batteries (4-pack),1,3.84,2019-06-06 19:24:00,481 Maple St, Portland,OR,97035 +211378,Google Phone,1,600.0,2019-06-30 15:41:00,405 Meadow St, New York City,NY,10001 +211379,iPhone,1,700.0,2019-06-19 19:20:00,961 Highland St, New York City,NY,10001 +211380,Wired Headphones,1,11.99,2019-06-02 22:04:00,358 Dogwood St, San Francisco,CA,94016 +211381,AA Batteries (4-pack),1,3.84,2019-06-21 21:16:00,556 Madison St, San Francisco,CA,94016 +211382,ThinkPad Laptop,1,999.99,2019-06-09 23:34:00,332 South St, Boston,MA,02215 +211383,27in FHD Monitor,1,149.99,2019-06-25 11:41:00,413 Jackson St, Los Angeles,CA,90001 +211384,Lightning Charging Cable,1,14.95,2019-06-24 12:51:00,87 9th St, Dallas,TX,75001 +211385,AAA Batteries (4-pack),1,2.99,2019-06-08 18:40:00,532 South St, Portland,OR,97035 +211386,27in 4K Gaming Monitor,1,389.99,2019-06-16 21:03:00,220 7th St, Dallas,TX,75001 +211387,Apple Airpods Headphones,1,150.0,2019-06-16 12:34:00,968 Elm St, Los Angeles,CA,90001 +211388,34in Ultrawide Monitor,1,379.99,2019-06-15 07:16:00,223 11th St, Boston,MA,02215 +211389,Macbook Pro Laptop,1,1700.0,2019-06-27 18:07:00,104 Willow St, Portland,OR,97035 +211390,Apple Airpods Headphones,1,150.0,2019-06-02 08:39:00,161 River St, Dallas,TX,75001 +211391,27in FHD Monitor,1,149.99,2019-06-04 14:16:00,613 5th St, New York City,NY,10001 +211392,Macbook Pro Laptop,1,1700.0,2019-06-18 11:50:00,782 1st St, San Francisco,CA,94016 +211393,34in Ultrawide Monitor,1,379.99,2019-06-08 21:59:00,499 9th St, Austin,TX,73301 +211394,27in 4K Gaming Monitor,1,389.99,2019-06-03 00:00:00,902 Jefferson St, Seattle,WA,98101 +211395,AAA Batteries (4-pack),1,2.99,2019-06-18 19:50:00,174 Park St, Austin,TX,73301 +211396,AAA Batteries (4-pack),2,2.99,2019-06-11 08:52:00,324 13th St, Boston,MA,02215 +211397,27in FHD Monitor,1,149.99,2019-06-17 14:25:00,464 Main St, San Francisco,CA,94016 +211398,Wired Headphones,1,11.99,2019-06-26 08:15:00,115 Washington St, Boston,MA,02215 +211399,AA Batteries (4-pack),1,3.84,2019-06-14 05:46:00,204 Walnut St, San Francisco,CA,94016 +211400,27in FHD Monitor,1,149.99,2019-06-25 11:04:00,723 Jefferson St, San Francisco,CA,94016 +211401,Wired Headphones,1,11.99,2019-06-25 21:00:00,691 Hill St, Los Angeles,CA,90001 +211402,AA Batteries (4-pack),2,3.84,2019-06-22 22:56:00,934 Lincoln St, San Francisco,CA,94016 +211403,AAA Batteries (4-pack),2,2.99,2019-06-03 19:14:00,584 North St, Los Angeles,CA,90001 +211404,27in 4K Gaming Monitor,1,389.99,2019-06-10 23:25:00,500 9th St, Boston,MA,02215 +211405,USB-C Charging Cable,1,11.95,2019-06-11 16:22:00,605 2nd St, San Francisco,CA,94016 +211406,ThinkPad Laptop,1,999.99,2019-06-28 08:33:00,895 Madison St, Atlanta,GA,30301 +211407,USB-C Charging Cable,1,11.95,2019-06-03 17:39:00,582 Cedar St, New York City,NY,10001 +211408,Wired Headphones,1,11.99,2019-06-05 15:46:00,791 Wilson St, San Francisco,CA,94016 +211409,34in Ultrawide Monitor,1,379.99,2019-06-23 17:10:00,778 River St, Portland,OR,97035 +211410,Macbook Pro Laptop,1,1700.0,2019-06-23 11:43:00,161 Church St, San Francisco,CA,94016 +211411,Vareebadd Phone,1,400.0,2019-06-07 14:01:00,292 Main St, Los Angeles,CA,90001 +211412,AA Batteries (4-pack),2,3.84,2019-06-25 07:56:00,837 Lake St, Dallas,TX,75001 +211413,iPhone,1,700.0,2019-06-29 15:10:00,794 River St, Los Angeles,CA,90001 +211414,Flatscreen TV,1,300.0,2019-06-04 03:19:00,808 South St, Los Angeles,CA,90001 +211415,34in Ultrawide Monitor,1,379.99,2019-06-24 13:03:00,693 Church St, Los Angeles,CA,90001 +211416,Wired Headphones,1,11.99,2019-06-07 14:45:00,223 Dogwood St, Seattle,WA,98101 +211417,USB-C Charging Cable,1,11.95,2019-06-01 19:10:00,724 Ridge St, Atlanta,GA,30301 +211418,AA Batteries (4-pack),2,3.84,2019-06-17 13:37:00,318 7th St, Portland,OR,97035 +211419,Apple Airpods Headphones,1,150.0,2019-06-02 10:46:00,731 8th St, San Francisco,CA,94016 +211420,AAA Batteries (4-pack),1,2.99,2019-06-19 17:59:00,150 Lincoln St, Seattle,WA,98101 +211421,USB-C Charging Cable,1,11.95,2019-06-15 14:01:00,842 Center St, San Francisco,CA,94016 +211422,Apple Airpods Headphones,1,150.0,2019-06-12 00:32:00,303 Forest St, Portland,ME,04101 +211423,Google Phone,1,600.0,2019-06-22 13:15:00,568 Wilson St, Portland,OR,97035 +211424,AA Batteries (4-pack),1,3.84,2019-06-02 22:31:00,483 13th St, Seattle,WA,98101 +211425,AAA Batteries (4-pack),1,2.99,2019-06-04 13:40:00,23 Center St, Boston,MA,02215 +211426,AA Batteries (4-pack),2,3.84,2019-06-25 13:29:00,263 Wilson St, San Francisco,CA,94016 +211427,27in 4K Gaming Monitor,1,389.99,2019-06-03 00:14:00,779 Madison St, Portland,ME,04101 +211428,Lightning Charging Cable,1,14.95,2019-06-08 18:21:00,717 Dogwood St, San Francisco,CA,94016 +211429,USB-C Charging Cable,1,11.95,2019-06-06 22:24:00,279 12th St, Atlanta,GA,30301 +211430,27in FHD Monitor,1,149.99,2019-06-03 10:57:00,534 Main St, Seattle,WA,98101 +211431,Flatscreen TV,1,300.0,2019-06-15 08:09:00,641 Maple St, Seattle,WA,98101 +211432,Wired Headphones,1,11.99,2019-06-20 19:42:00,456 Adams St, Atlanta,GA,30301 +211433,AA Batteries (4-pack),1,3.84,2019-06-29 18:19:00,271 5th St, Dallas,TX,75001 +211434,27in FHD Monitor,1,149.99,2019-06-26 09:24:00,446 Hickory St, Los Angeles,CA,90001 +211435,AA Batteries (4-pack),2,3.84,2019-06-25 19:12:00,186 Wilson St, Atlanta,GA,30301 +211436,LG Dryer,1,600.0,2019-06-15 20:49:00,1 West St, Los Angeles,CA,90001 +211437,Lightning Charging Cable,1,14.95,2019-06-13 10:43:00,335 Maple St, San Francisco,CA,94016 +211438,Lightning Charging Cable,1,14.95,2019-06-20 11:34:00,438 Lincoln St, Los Angeles,CA,90001 +211439,AA Batteries (4-pack),3,3.84,2019-06-28 08:17:00,976 Elm St, New York City,NY,10001 +211440,AA Batteries (4-pack),3,3.84,2019-06-19 09:20:00,16 Forest St, New York City,NY,10001 +211441,USB-C Charging Cable,1,11.95,2019-06-06 11:01:00,677 Highland St, Boston,MA,02215 +211442,AAA Batteries (4-pack),1,2.99,2019-06-05 14:46:00,340 Jefferson St, San Francisco,CA,94016 +211443,Lightning Charging Cable,1,14.95,2019-06-19 16:45:00,826 Washington St, Los Angeles,CA,90001 +211444,Apple Airpods Headphones,1,150.0,2019-06-26 05:45:00,474 1st St, Dallas,TX,75001 +211445,27in FHD Monitor,1,149.99,2019-06-15 16:41:00,761 Ridge St, New York City,NY,10001 +211446,Wired Headphones,2,11.99,2019-06-06 12:58:00,324 Chestnut St, New York City,NY,10001 +211447,USB-C Charging Cable,1,11.95,2019-06-29 18:44:00,884 West St, San Francisco,CA,94016 +211448,AA Batteries (4-pack),2,3.84,2019-06-14 19:27:00,676 North St, Dallas,TX,75001 +211449,Apple Airpods Headphones,1,150.0,2019-06-15 20:45:00,456 Spruce St, New York City,NY,10001 +211450,AA Batteries (4-pack),1,3.84,2019-06-19 21:17:00,32 Chestnut St, Dallas,TX,75001 +211451,Lightning Charging Cable,1,14.95,2019-06-02 13:24:00,537 Walnut St, Atlanta,GA,30301 +211452,Bose SoundSport Headphones,1,99.99,2019-06-20 16:42:00,1 Forest St, Boston,MA,02215 +211453,iPhone,1,700.0,2019-06-12 07:20:00,989 Sunset St, Boston,MA,02215 +211454,USB-C Charging Cable,1,11.95,2019-06-13 18:39:00,665 Lakeview St, Los Angeles,CA,90001 +211455,AA Batteries (4-pack),3,3.84,2019-06-13 12:15:00,204 12th St, Los Angeles,CA,90001 +211456,Lightning Charging Cable,2,14.95,2019-06-29 19:13:00,468 Park St, Dallas,TX,75001 +211457,Apple Airpods Headphones,1,150.0,2019-06-11 12:51:00,963 Highland St, New York City,NY,10001 +211458,20in Monitor,1,109.99,2019-06-25 12:42:00,396 13th St, Seattle,WA,98101 +211459,AAA Batteries (4-pack),1,2.99,2019-06-02 11:49:00,432 8th St, New York City,NY,10001 +211460,Lightning Charging Cable,1,14.95,2019-06-25 13:10:00,328 Chestnut St, Seattle,WA,98101 +211461,Wired Headphones,1,11.99,2019-06-25 21:24:00,153 Willow St, Los Angeles,CA,90001 +211462,Bose SoundSport Headphones,1,99.99,2019-06-12 19:16:00,708 Hickory St, Dallas,TX,75001 +211463,AAA Batteries (4-pack),1,2.99,2019-06-15 13:35:00,827 West St, New York City,NY,10001 +211464,20in Monitor,1,109.99,2019-06-09 02:05:00,937 West St, Dallas,TX,75001 +211465,ThinkPad Laptop,1,999.99,2019-06-25 19:21:00,351 5th St, New York City,NY,10001 +211466,USB-C Charging Cable,1,11.95,2019-06-16 18:20:00,634 Forest St, Los Angeles,CA,90001 +211467,iPhone,1,700.0,2019-06-29 23:45:00,172 14th St, San Francisco,CA,94016 +211467,Lightning Charging Cable,1,14.95,2019-06-29 23:45:00,172 14th St, San Francisco,CA,94016 +211468,AAA Batteries (4-pack),1,2.99,2019-06-12 15:55:00,290 Dogwood St, New York City,NY,10001 +211469,Wired Headphones,2,11.99,2019-06-06 18:46:00,711 Park St, Austin,TX,73301 +211470,AAA Batteries (4-pack),1,2.99,2019-06-27 13:17:00,731 Main St, Atlanta,GA,30301 +211471,AAA Batteries (4-pack),1,2.99,2019-06-05 21:37:00,699 Main St, Portland,ME,04101 +211472,iPhone,1,700.0,2019-06-11 21:37:00,826 Jackson St, New York City,NY,10001 +211472,Lightning Charging Cable,1,14.95,2019-06-11 21:37:00,826 Jackson St, New York City,NY,10001 +211473,AA Batteries (4-pack),1,3.84,2019-06-07 17:53:00,752 Walnut St, New York City,NY,10001 +211474,27in 4K Gaming Monitor,1,389.99,2019-06-28 23:10:00,844 Elm St, Atlanta,GA,30301 +211475,Flatscreen TV,1,300.0,2019-06-10 12:56:00,232 Park St, San Francisco,CA,94016 +211476,Wired Headphones,1,11.99,2019-06-17 04:09:00,269 2nd St, Los Angeles,CA,90001 +211477,AA Batteries (4-pack),1,3.84,2019-06-26 00:34:00,383 Highland St, Seattle,WA,98101 +211478,AAA Batteries (4-pack),1,2.99,2019-06-01 13:27:00,793 Lake St, New York City,NY,10001 +211478,USB-C Charging Cable,2,11.95,2019-06-01 13:27:00,793 Lake St, New York City,NY,10001 +211479,Wired Headphones,1,11.99,2019-06-15 15:00:00,285 12th St, San Francisco,CA,94016 +211480,AAA Batteries (4-pack),1,2.99,2019-06-06 13:16:00,426 8th St, San Francisco,CA,94016 +211481,Lightning Charging Cable,1,14.95,2019-06-30 11:22:00,495 14th St, Seattle,WA,98101 +211482,Lightning Charging Cable,1,14.95,2019-06-10 14:03:00,299 Meadow St, Seattle,WA,98101 +211483,USB-C Charging Cable,2,11.95,2019-06-21 22:50:00,84 South St, San Francisco,CA,94016 +211484,AAA Batteries (4-pack),1,2.99,2019-06-26 12:32:00,697 Lakeview St, San Francisco,CA,94016 +211485,USB-C Charging Cable,1,11.95,2019-06-02 23:09:00,792 Dogwood St, New York City,NY,10001 +211486,AA Batteries (4-pack),1,3.84,2019-06-08 21:44:00,760 11th St, Los Angeles,CA,90001 +211487,AAA Batteries (4-pack),1,2.99,2019-06-24 13:09:00,527 Madison St, New York City,NY,10001 +211488,Google Phone,1,600.0,2019-06-16 17:28:00,67 12th St, Boston,MA,02215 +211488,AA Batteries (4-pack),1,3.84,2019-06-16 17:28:00,67 12th St, Boston,MA,02215 +211489,Lightning Charging Cable,1,14.95,2019-06-19 04:45:00,477 14th St, New York City,NY,10001 +211490,Lightning Charging Cable,2,14.95,2019-06-16 13:19:00,176 13th St, Boston,MA,02215 +211491,Macbook Pro Laptop,1,1700.0,2019-06-30 11:47:00,43 Ridge St, Atlanta,GA,30301 +211492,AA Batteries (4-pack),1,3.84,2019-06-27 22:22:00,958 Wilson St, San Francisco,CA,94016 +211493,Lightning Charging Cable,1,14.95,2019-06-24 14:18:00,514 Hill St, San Francisco,CA,94016 +211494,AA Batteries (4-pack),1,3.84,2019-06-24 17:28:00,696 Walnut St, Atlanta,GA,30301 +211495,AA Batteries (4-pack),2,3.84,2019-06-14 14:27:00,920 Spruce St, San Francisco,CA,94016 +211496,AAA Batteries (4-pack),2,2.99,2019-06-22 17:14:00,51 9th St, Atlanta,GA,30301 +211497,27in FHD Monitor,1,149.99,2019-06-22 07:50:00,131 6th St, San Francisco,CA,94016 +211498,Apple Airpods Headphones,1,150.0,2019-06-08 22:38:00,98 Jackson St, Austin,TX,73301 +211499,AA Batteries (4-pack),1,3.84,2019-06-17 22:32:00,918 Park St, Portland,OR,97035 +211500,USB-C Charging Cable,1,11.95,2019-06-05 00:25:00,838 Cherry St, Los Angeles,CA,90001 +211501,USB-C Charging Cable,1,11.95,2019-06-06 21:52:00,898 Hill St, Seattle,WA,98101 +211502,Lightning Charging Cable,1,14.95,2019-06-28 20:21:00,346 13th St, Portland,OR,97035 +211503,USB-C Charging Cable,2,11.95,2019-06-27 15:14:00,124 Jefferson St, San Francisco,CA,94016 +211504,Lightning Charging Cable,1,14.95,2019-06-21 17:57:00,666 Walnut St, New York City,NY,10001 +211505,USB-C Charging Cable,1,11.95,2019-06-27 11:11:00,347 Cherry St, New York City,NY,10001 +211506,AA Batteries (4-pack),1,3.84,2019-06-29 15:57:00,40 South St, Portland,OR,97035 +211507,Lightning Charging Cable,1,14.95,2019-06-06 18:06:00,463 Church St, Atlanta,GA,30301 +211508,Wired Headphones,1,11.99,2019-06-28 12:59:00,154 River St, Seattle,WA,98101 +211509,27in FHD Monitor,1,149.99,2019-06-03 13:49:00,549 Ridge St, Portland,OR,97035 +211510,USB-C Charging Cable,1,11.95,2019-06-20 19:47:00,599 4th St, New York City,NY,10001 +211511,AAA Batteries (4-pack),1,2.99,2019-06-09 08:37:00,108 West St, San Francisco,CA,94016 +211512,AA Batteries (4-pack),2,3.84,2019-06-24 17:34:00,449 12th St, San Francisco,CA,94016 +211513,Macbook Pro Laptop,1,1700.0,2019-06-01 12:57:00,254 Meadow St, Los Angeles,CA,90001 +211514,Lightning Charging Cable,1,14.95,2019-06-24 09:03:00,895 Ridge St, Los Angeles,CA,90001 +211515,AA Batteries (4-pack),1,3.84,2019-06-04 20:13:00,477 Willow St, Atlanta,GA,30301 +211516,34in Ultrawide Monitor,1,379.99,2019-06-07 22:18:00,100 5th St, San Francisco,CA,94016 +211517,Apple Airpods Headphones,1,150.0,2019-06-16 13:09:00,508 Lakeview St, Atlanta,GA,30301 +211518,Apple Airpods Headphones,1,150.0,2019-06-18 20:53:00,493 11th St, Atlanta,GA,30301 +211519,Wired Headphones,1,11.99,2019-06-16 19:01:00,533 Hickory St, Austin,TX,73301 +211520,AAA Batteries (4-pack),2,2.99,2019-06-11 17:38:00,159 Pine St, Boston,MA,02215 +211521,Bose SoundSport Headphones,1,99.99,2019-06-05 12:28:00,380 Johnson St, San Francisco,CA,94016 +211522,Lightning Charging Cable,1,14.95,2019-06-14 18:42:00,152 Park St, San Francisco,CA,94016 +211523,USB-C Charging Cable,1,11.95,2019-06-17 16:24:00,457 1st St, San Francisco,CA,94016 +211524,AAA Batteries (4-pack),1,2.99,2019-06-09 22:26:00,158 14th St, Los Angeles,CA,90001 +211525,LG Washing Machine,1,600.0,2019-06-07 21:33:00,837 Maple St, Seattle,WA,98101 +211526,Vareebadd Phone,1,400.0,2019-06-25 13:33:00,863 Wilson St, Austin,TX,73301 +211527,AA Batteries (4-pack),1,3.84,2019-06-21 16:29:00,198 Jefferson St, Dallas,TX,75001 +211528,AA Batteries (4-pack),3,3.84,2019-06-19 12:00:00,506 Lakeview St, San Francisco,CA,94016 +211529,27in FHD Monitor,1,149.99,2019-06-06 12:08:00,678 Park St, Los Angeles,CA,90001 +211530,Wired Headphones,1,11.99,2019-06-19 10:36:00,202 11th St, Atlanta,GA,30301 +211531,AAA Batteries (4-pack),1,2.99,2019-06-23 13:43:00,781 Pine St, San Francisco,CA,94016 +211532,AA Batteries (4-pack),2,3.84,2019-06-28 10:58:00,930 Main St, New York City,NY,10001 +211533,Google Phone,1,600.0,2019-06-17 17:04:00,504 Main St, San Francisco,CA,94016 +211533,USB-C Charging Cable,1,11.95,2019-06-17 17:04:00,504 Main St, San Francisco,CA,94016 +211534,Wired Headphones,1,11.99,2019-06-30 21:17:00,78 Chestnut St, Portland,OR,97035 +211535,Bose SoundSport Headphones,1,99.99,2019-06-03 10:59:00,153 Lincoln St, Los Angeles,CA,90001 +211536,AA Batteries (4-pack),1,3.84,2019-06-06 15:39:00,354 Forest St, Atlanta,GA,30301 +211537,Wired Headphones,1,11.99,2019-06-03 17:32:00,496 2nd St, Dallas,TX,75001 +211538,27in 4K Gaming Monitor,1,389.99,2019-06-27 13:40:00,422 6th St, Los Angeles,CA,90001 +211539,AAA Batteries (4-pack),1,2.99,2019-06-25 19:19:00,827 Walnut St, New York City,NY,10001 +211540,Lightning Charging Cable,1,14.95,2019-06-14 02:43:00,871 Willow St, San Francisco,CA,94016 +211541,Lightning Charging Cable,1,14.95,2019-06-09 23:34:00,723 Cedar St, New York City,NY,10001 +211542,Apple Airpods Headphones,1,150.0,2019-06-05 09:14:00,81 West St, Seattle,WA,98101 +211543,Macbook Pro Laptop,1,1700.0,2019-06-30 19:36:00,323 Maple St, Seattle,WA,98101 +211544,20in Monitor,1,109.99,2019-06-01 23:48:00,22 Spruce St, New York City,NY,10001 +211545,AA Batteries (4-pack),1,3.84,2019-06-03 20:08:00,234 12th St, New York City,NY,10001 +211546,Google Phone,1,600.0,2019-06-03 11:22:00,41 Washington St, New York City,NY,10001 +211547,Apple Airpods Headphones,1,150.0,2019-06-26 21:49:00,706 Maple St, Boston,MA,02215 +211548,AAA Batteries (4-pack),2,2.99,2019-06-25 09:35:00,760 Walnut St, Los Angeles,CA,90001 +211549,Wired Headphones,1,11.99,2019-06-14 13:16:00,635 Main St, San Francisco,CA,94016 +211550,Bose SoundSport Headphones,1,99.99,2019-06-10 17:33:00,646 Wilson St, San Francisco,CA,94016 +211551,Flatscreen TV,1,300.0,2019-06-04 21:32:00,683 South St, Seattle,WA,98101 +211552,AA Batteries (4-pack),1,3.84,2019-06-23 12:12:00,696 Hill St, San Francisco,CA,94016 +211553,Lightning Charging Cable,1,14.95,2019-06-21 16:01:00,597 Dogwood St, Atlanta,GA,30301 +211554,Google Phone,1,600.0,2019-06-28 19:44:00,866 10th St, Dallas,TX,75001 +211555,AAA Batteries (4-pack),1,2.99,2019-06-08 10:17:00,779 Chestnut St, San Francisco,CA,94016 +211556,27in 4K Gaming Monitor,1,389.99,2019-06-30 22:24:00,283 11th St, San Francisco,CA,94016 +211557,20in Monitor,1,109.99,2019-06-21 20:57:00,131 9th St, Atlanta,GA,30301 +211558,Flatscreen TV,1,300.0,2019-06-28 13:26:00,286 11th St, Los Angeles,CA,90001 +211559,AA Batteries (4-pack),2,3.84,2019-06-16 20:13:00,574 Willow St, Boston,MA,02215 +211559,Lightning Charging Cable,1,14.95,2019-06-16 20:13:00,574 Willow St, Boston,MA,02215 +211560,AAA Batteries (4-pack),4,2.99,2019-06-18 00:13:00,51 Main St, Atlanta,GA,30301 +211561,USB-C Charging Cable,2,11.95,2019-06-29 09:13:00,715 10th St, Atlanta,GA,30301 +211562,Flatscreen TV,1,300.0,2019-06-06 12:32:00,765 Cherry St, Dallas,TX,75001 +211563,34in Ultrawide Monitor,1,379.99,2019-06-09 14:36:00,918 Lincoln St, Seattle,WA,98101 +211564,USB-C Charging Cable,1,11.95,2019-06-01 14:05:00,864 Highland St, San Francisco,CA,94016 +211565,AAA Batteries (4-pack),1,2.99,2019-06-27 15:50:00,33 Hickory St, San Francisco,CA,94016 +211566,AA Batteries (4-pack),1,3.84,2019-06-13 23:04:00,73 South St, Los Angeles,CA,90001 +211567,Apple Airpods Headphones,1,150.0,2019-06-20 10:01:00,995 Washington St, Portland,OR,97035 +211567,USB-C Charging Cable,1,11.95,2019-06-20 10:01:00,995 Washington St, Portland,OR,97035 +211568,AA Batteries (4-pack),1,3.84,2019-06-28 23:38:00,327 14th St, New York City,NY,10001 +211569,USB-C Charging Cable,1,11.95,2019-06-06 22:28:00,659 Chestnut St, Atlanta,GA,30301 +211570,Apple Airpods Headphones,1,150.0,2019-06-05 17:27:00,856 Washington St, Atlanta,GA,30301 +211571,Wired Headphones,1,11.99,2019-06-01 13:30:00,422 12th St, Seattle,WA,98101 +211572,27in FHD Monitor,1,149.99,2019-06-03 18:26:00,511 2nd St, Los Angeles,CA,90001 +211573,27in FHD Monitor,1,149.99,2019-06-18 21:30:00,725 1st St, San Francisco,CA,94016 +211574,AA Batteries (4-pack),1,3.84,2019-06-04 19:51:00,193 Madison St, New York City,NY,10001 +211575,Google Phone,1,600.0,2019-06-30 22:04:00,979 Chestnut St, San Francisco,CA,94016 +211575,USB-C Charging Cable,1,11.95,2019-06-30 22:04:00,979 Chestnut St, San Francisco,CA,94016 +211576,Wired Headphones,1,11.99,2019-06-08 15:23:00,831 Lakeview St, Seattle,WA,98101 +211576,27in 4K Gaming Monitor,1,389.99,2019-06-08 15:23:00,831 Lakeview St, Seattle,WA,98101 +211577,AA Batteries (4-pack),2,3.84,2019-06-01 17:14:00,807 1st St, Portland,ME,04101 +211578,Apple Airpods Headphones,1,150.0,2019-06-22 20:23:00,650 Jackson St, Boston,MA,02215 +211579,20in Monitor,1,109.99,2019-06-27 21:10:00,500 Highland St, Seattle,WA,98101 +211580,Google Phone,1,600.0,2019-06-29 23:31:00,51 13th St, Dallas,TX,75001 +211580,USB-C Charging Cable,1,11.95,2019-06-29 23:31:00,51 13th St, Dallas,TX,75001 +211581,Bose SoundSport Headphones,1,99.99,2019-06-08 11:11:00,605 Hill St, Seattle,WA,98101 +211582,AA Batteries (4-pack),3,3.84,2019-06-12 16:30:00,21 12th St, Boston,MA,02215 +211583,Wired Headphones,1,11.99,2019-06-10 13:13:00,995 Jackson St, Seattle,WA,98101 +211584,Wired Headphones,1,11.99,2019-06-27 08:57:00,153 Church St, Los Angeles,CA,90001 +211585,Lightning Charging Cable,1,14.95,2019-06-27 17:54:00,220 9th St, New York City,NY,10001 +211586,AAA Batteries (4-pack),1,2.99,2019-06-05 17:41:00,19 Pine St, Dallas,TX,75001 +211587,USB-C Charging Cable,1,11.95,2019-06-06 12:55:00,289 Willow St, Portland,OR,97035 +211588,Lightning Charging Cable,1,14.95,2019-06-18 14:46:00,306 South St, San Francisco,CA,94016 +211589,Vareebadd Phone,1,400.0,2019-06-17 16:52:00,371 Forest St, San Francisco,CA,94016 +211590,Bose SoundSport Headphones,1,99.99,2019-06-06 09:49:00,466 10th St, Boston,MA,02215 +211591,27in 4K Gaming Monitor,1,389.99,2019-06-01 20:58:00,421 Washington St, Boston,MA,02215 +211592,AA Batteries (4-pack),1,3.84,2019-06-15 07:14:00,687 North St, Seattle,WA,98101 +211593,20in Monitor,1,109.99,2019-06-26 18:49:00,693 12th St, Seattle,WA,98101 +211594,Lightning Charging Cable,1,14.95,2019-06-29 22:21:00,130 4th St, San Francisco,CA,94016 +211595,USB-C Charging Cable,1,11.95,2019-06-02 02:50:00,423 12th St, Los Angeles,CA,90001 +211596,AA Batteries (4-pack),1,3.84,2019-06-09 19:07:00,233 Pine St, New York City,NY,10001 +211597,Bose SoundSport Headphones,1,99.99,2019-06-11 21:43:00,670 Meadow St, New York City,NY,10001 +211598,iPhone,1,700.0,2019-06-26 20:13:00,975 Pine St, Los Angeles,CA,90001 +211599,USB-C Charging Cable,1,11.95,2019-06-16 14:09:00,582 5th St, San Francisco,CA,94016 +211600,Wired Headphones,1,11.99,2019-06-20 10:42:00,296 North St, Seattle,WA,98101 +211601,Apple Airpods Headphones,1,150.0,2019-06-02 12:49:00,581 Elm St, Seattle,WA,98101 +211602,iPhone,1,700.0,2019-06-26 21:43:00,988 North St, Atlanta,GA,30301 +211603,Lightning Charging Cable,1,14.95,2019-06-11 12:41:00,409 Hill St, Los Angeles,CA,90001 +211604,AA Batteries (4-pack),1,3.84,2019-06-26 21:23:00,960 Johnson St, Portland,OR,97035 +211605,Apple Airpods Headphones,1,150.0,2019-06-07 10:08:00,606 Pine St, Atlanta,GA,30301 +211606,Bose SoundSport Headphones,1,99.99,2019-06-20 04:12:00,177 Spruce St, Seattle,WA,98101 +211607,AA Batteries (4-pack),1,3.84,2019-06-19 17:36:00,550 6th St, Seattle,WA,98101 +211608,Apple Airpods Headphones,1,150.0,2019-06-03 19:34:00,157 Hickory St, Boston,MA,02215 +211609,Google Phone,1,600.0,2019-06-07 13:47:00,87 Jefferson St, Portland,OR,97035 +211609,USB-C Charging Cable,1,11.95,2019-06-07 13:47:00,87 Jefferson St, Portland,OR,97035 +211610,USB-C Charging Cable,1,11.95,2019-06-10 18:33:00,493 Lincoln St, Dallas,TX,75001 +211611,Bose SoundSport Headphones,1,99.99,2019-06-16 21:04:00,545 Center St, Portland,OR,97035 +211612,Lightning Charging Cable,1,14.95,2019-06-10 14:18:00,930 13th St, Atlanta,GA,30301 +211613,USB-C Charging Cable,1,11.95,2019-06-25 14:37:00,605 Meadow St, Los Angeles,CA,90001 +211614,Lightning Charging Cable,1,14.95,2019-06-12 23:43:00,791 5th St, Los Angeles,CA,90001 +211615,AAA Batteries (4-pack),2,2.99,2019-06-02 16:02:00,149 4th St, Seattle,WA,98101 +211616,AA Batteries (4-pack),1,3.84,2019-06-14 16:48:00,69 Dogwood St, San Francisco,CA,94016 +211617,iPhone,1,700.0,2019-06-19 18:39:00,867 Center St, Seattle,WA,98101 +211618,20in Monitor,1,109.99,2019-06-13 18:57:00,82 Cherry St, Atlanta,GA,30301 +211619,iPhone,1,700.0,2019-06-09 17:44:00,858 Maple St, Portland,ME,04101 +211619,Lightning Charging Cable,1,14.95,2019-06-09 17:44:00,858 Maple St, Portland,ME,04101 +211620,Lightning Charging Cable,1,14.95,2019-06-24 18:14:00,239 2nd St, San Francisco,CA,94016 +211621,AAA Batteries (4-pack),1,2.99,2019-06-17 17:42:00,212 12th St, Los Angeles,CA,90001 +211622,Apple Airpods Headphones,1,150.0,2019-06-12 19:27:00,632 Main St, Portland,OR,97035 +211623,Macbook Pro Laptop,1,1700.0,2019-06-04 10:24:00,444 7th St, Boston,MA,02215 +211624,Macbook Pro Laptop,1,1700.0,2019-06-01 17:49:00,226 Cedar St, San Francisco,CA,94016 +211625,34in Ultrawide Monitor,1,379.99,2019-06-10 17:24:00,203 1st St, New York City,NY,10001 +211626,Wired Headphones,1,11.99,2019-06-06 18:26:00,844 Pine St, New York City,NY,10001 +211627,Lightning Charging Cable,1,14.95,2019-06-28 08:57:00,979 Sunset St, San Francisco,CA,94016 +211627,Apple Airpods Headphones,1,150.0,2019-06-28 08:57:00,979 Sunset St, San Francisco,CA,94016 +211628,Lightning Charging Cable,1,14.95,2019-06-12 14:49:00,575 Meadow St, San Francisco,CA,94016 +211629,Lightning Charging Cable,1,14.95,2019-06-09 11:03:00,482 West St, Austin,TX,73301 +211630,USB-C Charging Cable,1,11.95,2019-06-16 11:07:00,677 Johnson St, Portland,OR,97035 +211631,LG Dryer,1,600.0,2019-06-29 14:25:00,955 4th St, Portland,OR,97035 +211632,AA Batteries (4-pack),1,3.84,2019-06-23 08:49:00,497 14th St, Atlanta,GA,30301 +211633,Flatscreen TV,1,300.0,2019-06-15 21:22:00,135 Hickory St, Dallas,TX,75001 +211634,20in Monitor,1,109.99,2019-06-10 23:59:00,714 Cedar St, New York City,NY,10001 +211635,Lightning Charging Cable,1,14.95,2019-06-04 14:05:00,776 10th St, New York City,NY,10001 +211636,Wired Headphones,1,11.99,2019-06-12 21:22:00,470 Hill St, Seattle,WA,98101 +211637,USB-C Charging Cable,1,11.95,2019-06-17 10:57:00,18 7th St, Atlanta,GA,30301 +211638,iPhone,1,700.0,2019-06-07 05:47:00,358 4th St, Los Angeles,CA,90001 +211639,AAA Batteries (4-pack),1,2.99,2019-06-12 12:07:00,212 Jefferson St, San Francisco,CA,94016 +211640,USB-C Charging Cable,1,11.95,2019-06-21 11:34:00,712 6th St, Los Angeles,CA,90001 +211641,27in 4K Gaming Monitor,1,389.99,2019-06-16 15:24:00,531 14th St, Atlanta,GA,30301 +211642,20in Monitor,1,109.99,2019-06-10 11:13:00,519 Sunset St, San Francisco,CA,94016 +211643,Wired Headphones,1,11.99,2019-06-13 13:06:00,464 Church St, Atlanta,GA,30301 +211644,AAA Batteries (4-pack),1,2.99,2019-06-18 21:28:00,517 Highland St, San Francisco,CA,94016 +211645,ThinkPad Laptop,1,999.99,2019-06-28 18:07:00,507 Sunset St, San Francisco,CA,94016 +211646,Google Phone,1,600.0,2019-06-02 16:44:00,682 Jackson St, San Francisco,CA,94016 +211647,AAA Batteries (4-pack),1,2.99,2019-06-18 17:36:00,527 Center St, San Francisco,CA,94016 +211648,Wired Headphones,1,11.99,2019-06-08 08:54:00,797 Madison St, Los Angeles,CA,90001 +211649,27in 4K Gaming Monitor,1,389.99,2019-06-05 18:32:00,129 Park St, Boston,MA,02215 +211650,34in Ultrawide Monitor,1,379.99,2019-06-16 18:14:00,123 Lakeview St, New York City,NY,10001 +211651,AAA Batteries (4-pack),1,2.99,2019-06-11 11:58:00,631 1st St, New York City,NY,10001 +211652,34in Ultrawide Monitor,1,379.99,2019-06-21 00:28:00,881 Lincoln St, Atlanta,GA,30301 +211653,Bose SoundSport Headphones,1,99.99,2019-06-21 09:13:00,225 Cherry St, New York City,NY,10001 +211654,USB-C Charging Cable,1,11.95,2019-06-13 11:44:00,782 4th St, Los Angeles,CA,90001 +211655,USB-C Charging Cable,1,11.95,2019-06-02 17:10:00,580 Cherry St, San Francisco,CA,94016 +211656,Wired Headphones,1,11.99,2019-06-18 23:28:00,145 Forest St, San Francisco,CA,94016 +211657,Bose SoundSport Headphones,1,99.99,2019-06-15 01:08:00,929 Jefferson St, Portland,OR,97035 +211658,Bose SoundSport Headphones,1,99.99,2019-06-10 12:50:00,976 Elm St, San Francisco,CA,94016 +211659,USB-C Charging Cable,1,11.95,2019-06-17 23:25:00,795 12th St, Los Angeles,CA,90001 +211660,Macbook Pro Laptop,1,1700.0,2019-06-12 10:36:00,797 West St, Boston,MA,02215 +211661,27in FHD Monitor,1,149.99,2019-06-09 18:28:00,141 2nd St, San Francisco,CA,94016 +211662,AAA Batteries (4-pack),1,2.99,2019-06-14 17:49:00,367 7th St, Seattle,WA,98101 +211663,Wired Headphones,1,11.99,2019-06-15 12:54:00,979 14th St, Boston,MA,02215 +211664,Wired Headphones,1,11.99,2019-06-06 21:19:00,147 Johnson St, Boston,MA,02215 +211665,27in FHD Monitor,1,149.99,2019-07-01 00:54:00,300 9th St, San Francisco,CA,94016 +211666,27in FHD Monitor,1,149.99,2019-06-23 10:43:00,870 Jackson St, Boston,MA,02215 +211667,Apple Airpods Headphones,1,150.0,2019-06-20 22:53:00,504 8th St, New York City,NY,10001 +211668,USB-C Charging Cable,1,11.95,2019-06-18 11:08:00,707 Church St, New York City,NY,10001 +211669,Macbook Pro Laptop,1,1700.0,2019-06-29 14:32:00,821 6th St, Seattle,WA,98101 +211670,Flatscreen TV,1,300.0,2019-06-07 07:10:00,495 North St, Dallas,TX,75001 +211671,Apple Airpods Headphones,1,150.0,2019-06-02 22:24:00,757 Center St, San Francisco,CA,94016 +211672,Lightning Charging Cable,1,14.95,2019-06-24 10:25:00,429 Ridge St, Austin,TX,73301 +211673,AAA Batteries (4-pack),1,2.99,2019-06-11 08:56:00,856 Forest St, New York City,NY,10001 +211674,Apple Airpods Headphones,1,150.0,2019-06-23 20:23:00,122 Forest St, New York City,NY,10001 +211675,Bose SoundSport Headphones,1,99.99,2019-06-20 21:44:00,529 2nd St, San Francisco,CA,94016 +211676,USB-C Charging Cable,1,11.95,2019-06-14 11:44:00,526 Cherry St, Atlanta,GA,30301 +211677,20in Monitor,1,109.99,2019-06-16 21:42:00,76 Lincoln St, New York City,NY,10001 +211678,20in Monitor,1,109.99,2019-06-18 16:07:00,699 Ridge St, San Francisco,CA,94016 +211679,USB-C Charging Cable,1,11.95,2019-06-13 16:36:00,528 Wilson St, San Francisco,CA,94016 +211680,Apple Airpods Headphones,1,150.0,2019-06-20 09:55:00,998 1st St, New York City,NY,10001 +211681,Wired Headphones,1,11.99,2019-06-15 12:17:00,854 1st St, Los Angeles,CA,90001 +211682,Lightning Charging Cable,1,14.95,2019-06-18 16:54:00,491 Park St, Portland,OR,97035 +211683,27in FHD Monitor,1,149.99,2019-06-25 21:28:00,325 Lakeview St, Seattle,WA,98101 +211684,Lightning Charging Cable,1,14.95,2019-06-21 18:28:00,260 Highland St, Los Angeles,CA,90001 +211685,Bose SoundSport Headphones,1,99.99,2019-06-22 14:03:00,349 10th St, Seattle,WA,98101 +211686,Flatscreen TV,1,300.0,2019-06-08 11:23:00,919 6th St, Atlanta,GA,30301 +211687,AAA Batteries (4-pack),2,2.99,2019-06-15 18:40:00,247 Johnson St, Boston,MA,02215 +211688,Google Phone,1,600.0,2019-06-28 10:43:00,272 Main St, New York City,NY,10001 +211689,Wired Headphones,1,11.99,2019-06-16 19:35:00,653 2nd St, Dallas,TX,75001 +211690,Lightning Charging Cable,1,14.95,2019-06-25 21:59:00,955 6th St, Boston,MA,02215 +211691,Bose SoundSport Headphones,1,99.99,2019-06-06 14:39:00,398 West St, San Francisco,CA,94016 +211692,USB-C Charging Cable,1,11.95,2019-06-29 07:54:00,369 Chestnut St, Dallas,TX,75001 +211693,AA Batteries (4-pack),1,3.84,2019-06-02 12:00:00,573 Chestnut St, San Francisco,CA,94016 +211694,Bose SoundSport Headphones,1,99.99,2019-06-07 09:34:00,571 North St, San Francisco,CA,94016 +211695,Lightning Charging Cable,1,14.95,2019-06-19 16:17:00,774 Elm St, Dallas,TX,75001 +211696,Bose SoundSport Headphones,1,99.99,2019-06-15 20:42:00,19 12th St, San Francisco,CA,94016 +211697,27in 4K Gaming Monitor,1,389.99,2019-06-17 23:17:00,427 Ridge St, New York City,NY,10001 +211698,Google Phone,1,600.0,2019-06-11 22:24:00,502 Ridge St, Boston,MA,02215 +211699,Apple Airpods Headphones,1,150.0,2019-06-27 23:36:00,917 Forest St, Dallas,TX,75001 +211700,Wired Headphones,1,11.99,2019-06-24 11:22:00,761 Pine St, San Francisco,CA,94016 +211701,AA Batteries (4-pack),1,3.84,2019-06-26 09:27:00,660 Center St, Los Angeles,CA,90001 +211702,27in 4K Gaming Monitor,1,389.99,2019-06-18 12:38:00,442 5th St, Atlanta,GA,30301 +211703,Bose SoundSport Headphones,1,99.99,2019-06-04 22:13:00,806 Jefferson St, Austin,TX,73301 +211704,Wired Headphones,2,11.99,2019-06-07 14:11:00,797 Adams St, Austin,TX,73301 +211705,Google Phone,1,600.0,2019-06-24 21:35:00,646 7th St, Atlanta,GA,30301 +211706,Bose SoundSport Headphones,1,99.99,2019-06-20 17:51:00,734 Lakeview St, Los Angeles,CA,90001 +211707,Bose SoundSport Headphones,1,99.99,2019-06-14 19:30:00,571 Center St, New York City,NY,10001 +211708,Bose SoundSport Headphones,1,99.99,2019-06-17 18:46:00,104 10th St, Los Angeles,CA,90001 +211709,Wired Headphones,1,11.99,2019-06-05 22:33:00,373 13th St, Boston,MA,02215 +211710,iPhone,1,700.0,2019-06-22 10:23:00,704 Highland St, San Francisco,CA,94016 +211711,Wired Headphones,1,11.99,2019-06-19 11:26:00,411 Wilson St, San Francisco,CA,94016 +211712,AA Batteries (4-pack),1,3.84,2019-06-12 19:41:00,753 Elm St, Los Angeles,CA,90001 +211713,Lightning Charging Cable,1,14.95,2019-06-07 10:30:00,125 2nd St, San Francisco,CA,94016 +211714,AA Batteries (4-pack),1,3.84,2019-06-04 19:48:00,997 7th St, New York City,NY,10001 +211715,Lightning Charging Cable,1,14.95,2019-06-14 14:31:00,255 Lake St, San Francisco,CA,94016 +211716,Wired Headphones,1,11.99,2019-06-10 09:19:00,370 Lakeview St, Boston,MA,02215 +211717,AAA Batteries (4-pack),1,2.99,2019-06-06 20:36:00,447 Johnson St, New York City,NY,10001 +211718,AA Batteries (4-pack),1,3.84,2019-06-21 20:10:00,205 Washington St, Portland,OR,97035 +211719,Apple Airpods Headphones,1,150.0,2019-06-17 20:16:00,724 13th St, Austin,TX,73301 +211720,Wired Headphones,1,11.99,2019-06-04 00:09:00,215 Wilson St, San Francisco,CA,94016 +211721,AA Batteries (4-pack),2,3.84,2019-06-04 07:50:00,843 Chestnut St, Boston,MA,02215 +211722,AAA Batteries (4-pack),1,2.99,2019-06-12 18:12:00,604 2nd St, Dallas,TX,75001 +211723,Lightning Charging Cable,1,14.95,2019-06-01 18:00:00,181 South St, Dallas,TX,75001 +211724,Wired Headphones,1,11.99,2019-06-18 22:48:00,627 Center St, Dallas,TX,75001 +211725,Apple Airpods Headphones,2,150.0,2019-06-25 16:23:00,840 2nd St, San Francisco,CA,94016 +211726,Lightning Charging Cable,1,14.95,2019-06-30 20:05:00,885 Walnut St, Dallas,TX,75001 +211727,AAA Batteries (4-pack),1,2.99,2019-06-25 12:34:00,747 8th St, Los Angeles,CA,90001 +211728,Apple Airpods Headphones,1,150.0,2019-06-29 19:46:00,481 Park St, Atlanta,GA,30301 +211729,USB-C Charging Cable,1,11.95,2019-06-13 14:30:00,968 Jefferson St, Atlanta,GA,30301 +211730,Wired Headphones,1,11.99,2019-06-28 18:23:00,305 8th St, San Francisco,CA,94016 +211731,Bose SoundSport Headphones,1,99.99,2019-06-19 11:55:00,455 10th St, Seattle,WA,98101 +211732,Lightning Charging Cable,1,14.95,2019-06-23 08:28:00,156 Sunset St, Austin,TX,73301 +211733,Apple Airpods Headphones,1,150.0,2019-06-28 11:13:00,681 Elm St, Seattle,WA,98101 +211734,34in Ultrawide Monitor,1,379.99,2019-06-09 18:27:00,553 14th St, Portland,OR,97035 +211735,USB-C Charging Cable,1,11.95,2019-06-23 11:34:00,933 Jefferson St, Los Angeles,CA,90001 +211736,34in Ultrawide Monitor,1,379.99,2019-06-23 20:01:00,131 Maple St, New York City,NY,10001 +211737,34in Ultrawide Monitor,1,379.99,2019-06-18 19:57:00,434 Elm St, Los Angeles,CA,90001 +211738,USB-C Charging Cable,1,11.95,2019-06-20 21:13:00,250 Johnson St, Boston,MA,02215 +211739,Apple Airpods Headphones,1,150.0,2019-06-03 12:11:00,400 9th St, Portland,OR,97035 +211740,27in FHD Monitor,1,149.99,2019-06-17 14:30:00,563 South St, San Francisco,CA,94016 +211741,34in Ultrawide Monitor,1,379.99,2019-06-20 21:59:00,830 Adams St, San Francisco,CA,94016 +211741,27in FHD Monitor,1,149.99,2019-06-20 21:59:00,830 Adams St, San Francisco,CA,94016 +211742,Google Phone,1,600.0,2019-06-02 18:25:00,443 Pine St, San Francisco,CA,94016 +211743,USB-C Charging Cable,1,11.95,2019-06-04 18:01:00,745 Sunset St, Dallas,TX,75001 +211744,Bose SoundSport Headphones,1,99.99,2019-06-20 22:19:00,220 Jackson St, Atlanta,GA,30301 +211745,iPhone,1,700.0,2019-06-18 20:20:00,582 Hill St, Atlanta,GA,30301 +211745,Lightning Charging Cable,1,14.95,2019-06-18 20:20:00,582 Hill St, Atlanta,GA,30301 +211746,AA Batteries (4-pack),1,3.84,2019-06-13 17:32:00,778 14th St, Atlanta,GA,30301 +211747,Wired Headphones,1,11.99,2019-06-21 12:02:00,697 Church St, New York City,NY,10001 +211748,iPhone,1,700.0,2019-06-10 13:27:00,305 Madison St, Seattle,WA,98101 +211748,Lightning Charging Cable,1,14.95,2019-06-10 13:27:00,305 Madison St, Seattle,WA,98101 +211749,AAA Batteries (4-pack),1,2.99,2019-06-24 03:18:00,146 Church St, San Francisco,CA,94016 +211750,LG Washing Machine,1,600.0,2019-06-04 21:17:00,925 Cedar St, Los Angeles,CA,90001 +211751,20in Monitor,1,109.99,2019-06-01 15:10:00,391 Pine St, San Francisco,CA,94016 +211752,Wired Headphones,1,11.99,2019-06-10 11:10:00,741 10th St, Dallas,TX,75001 +211753,USB-C Charging Cable,1,11.95,2019-06-20 10:47:00,321 13th St, New York City,NY,10001 +211754,34in Ultrawide Monitor,1,379.99,2019-06-18 23:05:00,775 8th St, San Francisco,CA,94016 +211755,USB-C Charging Cable,1,11.95,2019-06-15 20:11:00,908 River St, Los Angeles,CA,90001 +211756,Lightning Charging Cable,1,14.95,2019-06-27 18:01:00,496 Sunset St, New York City,NY,10001 +211757,ThinkPad Laptop,1,999.99,2019-06-09 15:49:00,29 Hill St, Austin,TX,73301 +211758,Wired Headphones,1,11.99,2019-06-19 19:35:00,810 Center St, New York City,NY,10001 +211759,Bose SoundSport Headphones,1,99.99,2019-06-08 16:05:00,294 West St, San Francisco,CA,94016 +211760,USB-C Charging Cable,1,11.95,2019-06-30 22:01:00,873 Elm St, Seattle,WA,98101 +211761,AAA Batteries (4-pack),1,2.99,2019-06-10 14:19:00,500 Maple St, Seattle,WA,98101 +211762,AA Batteries (4-pack),1,3.84,2019-06-04 18:46:00,903 Church St, Austin,TX,73301 +211763,Wired Headphones,1,11.99,2019-06-04 18:42:00,310 Lincoln St, Seattle,WA,98101 +211763,AAA Batteries (4-pack),1,2.99,2019-06-04 18:42:00,310 Lincoln St, Seattle,WA,98101 +211764,Lightning Charging Cable,1,14.95,2019-06-23 14:36:00,776 2nd St, San Francisco,CA,94016 +211765,AA Batteries (4-pack),2,3.84,2019-06-05 20:11:00,482 Center St, New York City,NY,10001 +211766,Apple Airpods Headphones,1,150.0,2019-06-29 18:36:00,787 Jefferson St, San Francisco,CA,94016 +211767,Wired Headphones,1,11.99,2019-06-27 20:58:00,96 Adams St, San Francisco,CA,94016 +211768,AA Batteries (4-pack),1,3.84,2019-06-18 16:02:00,846 5th St, Boston,MA,02215 +211769,AAA Batteries (4-pack),1,2.99,2019-06-16 06:05:00,677 Jackson St, San Francisco,CA,94016 +211770,Flatscreen TV,1,300.0,2019-06-05 01:46:00,324 4th St, San Francisco,CA,94016 +211771,AA Batteries (4-pack),1,3.84,2019-06-17 22:54:00,663 10th St, Portland,OR,97035 +211772,AAA Batteries (4-pack),6,2.99,2019-06-06 18:39:00,405 Meadow St, Seattle,WA,98101 +211773,AAA Batteries (4-pack),1,2.99,2019-06-29 11:16:00,565 Hill St, San Francisco,CA,94016 +211774,Lightning Charging Cable,1,14.95,2019-06-20 18:01:00,984 12th St, Austin,TX,73301 +211775,AAA Batteries (4-pack),1,2.99,2019-06-16 16:32:00,444 River St, San Francisco,CA,94016 +211776,AA Batteries (4-pack),2,3.84,2019-06-03 10:08:00,691 Hickory St, San Francisco,CA,94016 +211777,27in 4K Gaming Monitor,1,389.99,2019-06-19 23:32:00,580 7th St, Atlanta,GA,30301 +211777,34in Ultrawide Monitor,1,379.99,2019-06-19 23:32:00,580 7th St, Atlanta,GA,30301 +211778,Lightning Charging Cable,1,14.95,2019-06-30 18:31:00,725 River St, Portland,OR,97035 +211779,20in Monitor,1,109.99,2019-06-07 13:56:00,301 Adams St, San Francisco,CA,94016 +211780,Bose SoundSport Headphones,1,99.99,2019-06-11 17:48:00,498 Chestnut St, Seattle,WA,98101 +211781,Lightning Charging Cable,1,14.95,2019-06-14 19:31:00,858 Willow St, Dallas,TX,75001 +211782,AAA Batteries (4-pack),2,2.99,2019-06-12 11:36:00,764 4th St, San Francisco,CA,94016 +211783,Wired Headphones,1,11.99,2019-06-09 20:01:00,892 4th St, Seattle,WA,98101 +211784,AA Batteries (4-pack),3,3.84,2019-06-28 13:58:00,171 Cherry St, Austin,TX,73301 +211785,AAA Batteries (4-pack),1,2.99,2019-06-21 17:20:00,820 Dogwood St, Atlanta,GA,30301 +211786,20in Monitor,1,109.99,2019-06-01 22:34:00,712 4th St, Austin,TX,73301 +211787,Lightning Charging Cable,1,14.95,2019-06-13 11:54:00,191 Meadow St, New York City,NY,10001 +211788,USB-C Charging Cable,1,11.95,2019-06-11 12:32:00,281 Johnson St, Atlanta,GA,30301 +211789,Lightning Charging Cable,1,14.95,2019-06-05 13:52:00,985 Forest St, Atlanta,GA,30301 +211790,AAA Batteries (4-pack),2,2.99,2019-07-01 02:05:00,791 13th St, New York City,NY,10001 +211791,ThinkPad Laptop,1,999.99,2019-06-17 18:17:00,423 Park St, New York City,NY,10001 +211792,Apple Airpods Headphones,1,150.0,2019-06-25 18:31:00,647 10th St, Los Angeles,CA,90001 +211793,ThinkPad Laptop,1,999.99,2019-06-02 19:45:00,311 Cedar St, New York City,NY,10001 +211794,34in Ultrawide Monitor,1,379.99,2019-06-09 23:05:00,325 Lakeview St, San Francisco,CA,94016 +211795,Wired Headphones,1,11.99,2019-06-23 13:13:00,737 Hickory St, Dallas,TX,75001 +211796,Lightning Charging Cable,1,14.95,2019-06-30 22:40:00,417 Jefferson St, San Francisco,CA,94016 +211797,AAA Batteries (4-pack),3,2.99,2019-06-21 08:54:00,128 Adams St, San Francisco,CA,94016 +211798,Apple Airpods Headphones,1,150.0,2019-06-26 14:00:00,304 Maple St, Los Angeles,CA,90001 +211799,USB-C Charging Cable,1,11.95,2019-06-12 20:18:00,709 13th St, Boston,MA,02215 +211800,Bose SoundSport Headphones,1,99.99,2019-06-26 17:47:00,289 Meadow St, Atlanta,GA,30301 +211801,AAA Batteries (4-pack),1,2.99,2019-06-07 15:28:00,683 11th St, Los Angeles,CA,90001 +211802,27in FHD Monitor,1,149.99,2019-06-25 13:42:00,986 9th St, San Francisco,CA,94016 +211802,AAA Batteries (4-pack),3,2.99,2019-06-25 13:42:00,986 9th St, San Francisco,CA,94016 +211803,AA Batteries (4-pack),1,3.84,2019-06-21 13:24:00,868 Park St, Boston,MA,02215 +211804,Wired Headphones,1,11.99,2019-06-06 21:31:00,884 2nd St, Boston,MA,02215 +211805,ThinkPad Laptop,1,999.99,2019-06-12 17:24:00,536 Wilson St, San Francisco,CA,94016 +211806,AA Batteries (4-pack),1,3.84,2019-06-17 21:53:00,668 Walnut St, San Francisco,CA,94016 +211807,USB-C Charging Cable,1,11.95,2019-06-25 23:19:00,995 8th St, Boston,MA,02215 +211808,Lightning Charging Cable,1,14.95,2019-06-22 09:21:00,711 5th St, New York City,NY,10001 +211809,Bose SoundSport Headphones,1,99.99,2019-06-09 20:40:00,99 Maple St, Atlanta,GA,30301 +211810,27in FHD Monitor,1,149.99,2019-06-17 15:42:00,237 River St, Seattle,WA,98101 +211811,Lightning Charging Cable,1,14.95,2019-06-03 18:07:00,595 Willow St, Portland,OR,97035 +211811,Bose SoundSport Headphones,1,99.99,2019-06-03 18:07:00,595 Willow St, Portland,OR,97035 +211812,AA Batteries (4-pack),1,3.84,2019-06-16 10:38:00,926 River St, San Francisco,CA,94016 +211813,27in 4K Gaming Monitor,1,389.99,2019-06-14 17:10:00,452 10th St, Dallas,TX,75001 +211814,AAA Batteries (4-pack),1,2.99,2019-06-24 09:21:00,587 Ridge St, San Francisco,CA,94016 +211815,Bose SoundSport Headphones,1,99.99,2019-06-30 22:05:00,533 9th St, Boston,MA,02215 +211816,Macbook Pro Laptop,1,1700.0,2019-06-23 15:59:00,796 8th St, New York City,NY,10001 +211817,Apple Airpods Headphones,1,150.0,2019-06-21 15:56:00,466 Highland St, Los Angeles,CA,90001 +211818,Apple Airpods Headphones,1,150.0,2019-06-09 18:28:00,854 11th St, Dallas,TX,75001 +211819,Lightning Charging Cable,1,14.95,2019-06-06 22:18:00,449 7th St, Atlanta,GA,30301 +211820,ThinkPad Laptop,1,999.99,2019-06-15 04:55:00,498 Chestnut St, Seattle,WA,98101 +211821,AA Batteries (4-pack),1,3.84,2019-06-28 17:37:00,766 Wilson St, Atlanta,GA,30301 +211822,Bose SoundSport Headphones,1,99.99,2019-06-19 21:49:00,140 Jackson St, New York City,NY,10001 +211823,Apple Airpods Headphones,1,150.0,2019-06-15 19:58:00,522 Wilson St, New York City,NY,10001 +211824,AA Batteries (4-pack),1,3.84,2019-06-15 10:18:00,621 Church St, Los Angeles,CA,90001 +211825,Bose SoundSport Headphones,1,99.99,2019-06-02 15:19:00,575 North St, Portland,OR,97035 +211826,Apple Airpods Headphones,1,150.0,2019-06-21 13:51:00,26 Hickory St, San Francisco,CA,94016 +211827,iPhone,1,700.0,2019-06-25 21:00:00,463 Sunset St, Atlanta,GA,30301 +211828,ThinkPad Laptop,1,999.99,2019-06-23 16:13:00,611 Elm St, Los Angeles,CA,90001 +211829,USB-C Charging Cable,2,11.95,2019-06-16 22:57:00,650 14th St, San Francisco,CA,94016 +211830,iPhone,1,700.0,2019-06-13 17:34:00,274 Adams St, San Francisco,CA,94016 +211831,AAA Batteries (4-pack),1,2.99,2019-06-12 11:18:00,162 4th St, Los Angeles,CA,90001 +211832,Vareebadd Phone,1,400.0,2019-06-23 11:34:00,612 Johnson St, Los Angeles,CA,90001 +211833,Wired Headphones,1,11.99,2019-06-11 22:05:00,73 Sunset St, Portland,OR,97035 +211834,USB-C Charging Cable,1,11.95,2019-06-30 12:56:00,359 1st St, Atlanta,GA,30301 +211835,AA Batteries (4-pack),1,3.84,2019-06-15 22:26:00,44 Lake St, Los Angeles,CA,90001 +211836,27in FHD Monitor,1,149.99,2019-06-24 09:22:00,490 14th St, Portland,OR,97035 +211837,AAA Batteries (4-pack),3,2.99,2019-06-10 15:30:00,43 Forest St, Boston,MA,02215 +211838,Bose SoundSport Headphones,1,99.99,2019-06-08 07:37:00,702 North St, Dallas,TX,75001 +211839,Wired Headphones,1,11.99,2019-06-28 16:40:00,787 Lincoln St, Dallas,TX,75001 +211840,AAA Batteries (4-pack),1,2.99,2019-06-02 14:04:00,18 Walnut St, Dallas,TX,75001 +211841,Lightning Charging Cable,1,14.95,2019-06-20 14:48:00,664 Center St, Boston,MA,02215 +211842,AAA Batteries (4-pack),1,2.99,2019-06-20 19:39:00,461 Maple St, Portland,OR,97035 +211843,Lightning Charging Cable,1,14.95,2019-06-30 18:50:00,633 Maple St, New York City,NY,10001 +211844,iPhone,1,700.0,2019-06-13 15:33:00,416 South St, Los Angeles,CA,90001 +211845,Bose SoundSport Headphones,1,99.99,2019-06-09 09:28:00,606 Spruce St, Portland,OR,97035 +211846,iPhone,1,700.0,2019-06-30 09:42:00,260 West St, San Francisco,CA,94016 +211847,Lightning Charging Cable,1,14.95,2019-06-05 14:27:00,734 Lake St, San Francisco,CA,94016 +211848,AAA Batteries (4-pack),1,2.99,2019-06-01 15:42:00,326 Willow St, San Francisco,CA,94016 +211849,27in 4K Gaming Monitor,1,389.99,2019-06-05 19:04:00,857 North St, Boston,MA,02215 +211850,AA Batteries (4-pack),2,3.84,2019-06-25 14:34:00,650 5th St, Boston,MA,02215 +211851,AA Batteries (4-pack),2,3.84,2019-06-15 16:03:00,610 1st St, San Francisco,CA,94016 +211852,AAA Batteries (4-pack),2,2.99,2019-06-30 17:41:00,744 4th St, New York City,NY,10001 +211853,Apple Airpods Headphones,1,150.0,2019-06-25 17:38:00,794 12th St, Portland,OR,97035 +211854,Apple Airpods Headphones,1,150.0,2019-06-27 10:24:00,717 13th St, Seattle,WA,98101 +211855,USB-C Charging Cable,1,11.95,2019-06-17 11:39:00,787 Cedar St, Austin,TX,73301 +211856,AA Batteries (4-pack),1,3.84,2019-06-14 10:06:00,368 North St, San Francisco,CA,94016 +211857,Lightning Charging Cable,1,14.95,2019-06-05 19:48:00,406 4th St, Dallas,TX,75001 +211858,Wired Headphones,1,11.99,2019-06-27 21:38:00,345 Madison St, New York City,NY,10001 +211859,AA Batteries (4-pack),1,3.84,2019-06-11 17:09:00,888 6th St, Portland,ME,04101 +211860,Lightning Charging Cable,1,14.95,2019-06-11 11:57:00,451 Highland St, Austin,TX,73301 +211861,Bose SoundSport Headphones,1,99.99,2019-06-26 20:49:00,816 Main St, Atlanta,GA,30301 +211862,USB-C Charging Cable,1,11.95,2019-06-17 16:10:00,665 12th St, Boston,MA,02215 +211863,iPhone,1,700.0,2019-06-12 12:24:00,563 Lake St, Austin,TX,73301 +211864,20in Monitor,1,109.99,2019-06-28 19:49:00,638 Hickory St, Los Angeles,CA,90001 +211865,iPhone,1,700.0,2019-06-22 17:07:00,709 4th St, Los Angeles,CA,90001 +211866,Lightning Charging Cable,1,14.95,2019-06-26 18:21:00,620 2nd St, San Francisco,CA,94016 +211867,Apple Airpods Headphones,1,150.0,2019-06-23 15:48:00,393 South St, Boston,MA,02215 +211868,Lightning Charging Cable,1,14.95,2019-06-06 13:48:00,870 North St, San Francisco,CA,94016 +211869,Wired Headphones,1,11.99,2019-06-02 00:55:00,128 Church St, Los Angeles,CA,90001 +211870,Wired Headphones,1,11.99,2019-06-13 11:52:00,460 5th St, Atlanta,GA,30301 +211871,Lightning Charging Cable,1,14.95,2019-06-07 15:15:00,25 Lincoln St, Portland,OR,97035 +211872,USB-C Charging Cable,2,11.95,2019-06-25 14:35:00,669 Main St, Los Angeles,CA,90001 +211873,Lightning Charging Cable,1,14.95,2019-06-14 20:27:00,349 River St, San Francisco,CA,94016 +211874,34in Ultrawide Monitor,1,379.99,2019-06-28 14:37:00,420 Washington St, Boston,MA,02215 +211874,Wired Headphones,1,11.99,2019-06-28 14:37:00,420 Washington St, Boston,MA,02215 +211875,Wired Headphones,1,11.99,2019-06-23 20:45:00,681 Ridge St, San Francisco,CA,94016 +211876,AA Batteries (4-pack),1,3.84,2019-06-23 11:59:00,644 5th St, San Francisco,CA,94016 +211877,Macbook Pro Laptop,1,1700.0,2019-06-28 06:37:00,580 Johnson St, Dallas,TX,75001 +211878,AA Batteries (4-pack),1,3.84,2019-06-16 10:31:00,638 South St, Austin,TX,73301 +211879,USB-C Charging Cable,1,11.95,2019-06-13 21:18:00,46 Hill St, New York City,NY,10001 +211880,AAA Batteries (4-pack),2,2.99,2019-06-30 11:17:00,999 7th St, Portland,OR,97035 +211881,Google Phone,1,600.0,2019-06-28 16:21:00,851 Park St, Seattle,WA,98101 +211882,Flatscreen TV,1,300.0,2019-06-23 20:29:00,269 Walnut St, Los Angeles,CA,90001 +211883,27in FHD Monitor,1,149.99,2019-06-19 20:42:00,173 River St, Seattle,WA,98101 +211884,Bose SoundSport Headphones,1,99.99,2019-06-30 14:31:00,865 Hickory St, Atlanta,GA,30301 +211885,USB-C Charging Cable,2,11.95,2019-06-30 23:15:00,948 4th St, San Francisco,CA,94016 +211886,Lightning Charging Cable,1,14.95,2019-06-29 13:09:00,407 9th St, Los Angeles,CA,90001 +211887,Wired Headphones,1,11.99,2019-06-13 19:12:00,259 South St, Boston,MA,02215 +211887,Lightning Charging Cable,1,14.95,2019-06-13 19:12:00,259 South St, Boston,MA,02215 +211888,AAA Batteries (4-pack),1,2.99,2019-06-13 23:06:00,708 11th St, New York City,NY,10001 +211889,27in FHD Monitor,1,149.99,2019-06-08 18:10:00,837 Highland St, Dallas,TX,75001 +211890,AA Batteries (4-pack),1,3.84,2019-06-15 13:24:00,966 Meadow St, Portland,OR,97035 +211891,Lightning Charging Cable,1,14.95,2019-06-07 08:29:00,620 Lake St, San Francisco,CA,94016 +211892,Bose SoundSport Headphones,1,99.99,2019-06-29 10:28:00,704 4th St, Boston,MA,02215 +211893,AA Batteries (4-pack),1,3.84,2019-06-17 07:35:00,855 12th St, San Francisco,CA,94016 +211894,Apple Airpods Headphones,1,150.0,2019-06-24 14:14:00,574 7th St, Atlanta,GA,30301 +211895,AAA Batteries (4-pack),1,2.99,2019-06-26 06:49:00,546 Cedar St, Portland,ME,04101 +211896,Bose SoundSport Headphones,1,99.99,2019-06-23 17:23:00,848 Main St, San Francisco,CA,94016 +211897,Wired Headphones,1,11.99,2019-06-06 09:41:00,529 West St, Dallas,TX,75001 +211898,iPhone,1,700.0,2019-06-06 10:16:00,820 14th St, Los Angeles,CA,90001 +211898,Wired Headphones,1,11.99,2019-06-06 10:16:00,820 14th St, Los Angeles,CA,90001 +211899,USB-C Charging Cable,1,11.95,2019-06-29 22:19:00,117 Walnut St, Austin,TX,73301 +211900,Apple Airpods Headphones,1,150.0,2019-06-14 23:58:00,10 11th St, Seattle,WA,98101 +211901,Lightning Charging Cable,1,14.95,2019-06-16 22:12:00,935 9th St, Seattle,WA,98101 +211902,USB-C Charging Cable,2,11.95,2019-06-21 11:02:00,944 1st St, New York City,NY,10001 +211903,27in 4K Gaming Monitor,1,389.99,2019-06-28 06:27:00,275 Lincoln St, San Francisco,CA,94016 +211904,ThinkPad Laptop,1,999.99,2019-06-27 22:31:00,523 West St, Los Angeles,CA,90001 +211905,Lightning Charging Cable,1,14.95,2019-06-02 16:30:00,385 11th St, New York City,NY,10001 +211906,Wired Headphones,1,11.99,2019-06-21 18:46:00,399 Hill St, San Francisco,CA,94016 +211907,USB-C Charging Cable,1,11.95,2019-06-14 12:29:00,21 Park St, Seattle,WA,98101 +211908,Apple Airpods Headphones,1,150.0,2019-06-20 15:28:00,778 8th St, San Francisco,CA,94016 +211909,AA Batteries (4-pack),1,3.84,2019-06-08 11:17:00,72 9th St, New York City,NY,10001 +211910,AAA Batteries (4-pack),1,2.99,2019-06-12 08:34:00,734 Adams St, Boston,MA,02215 +211911,Lightning Charging Cable,1,14.95,2019-06-12 21:12:00,931 5th St, Los Angeles,CA,90001 +211912,Bose SoundSport Headphones,1,99.99,2019-06-05 16:33:00,291 Highland St, Portland,OR,97035 +211913,iPhone,1,700.0,2019-06-25 13:57:00,538 Ridge St, San Francisco,CA,94016 +211914,20in Monitor,1,109.99,2019-06-09 20:34:00,597 Pine St, Dallas,TX,75001 +211915,Vareebadd Phone,1,400.0,2019-06-20 13:24:00,805 Washington St, Dallas,TX,75001 +211915,USB-C Charging Cable,1,11.95,2019-06-20 13:24:00,805 Washington St, Dallas,TX,75001 +211915,Bose SoundSport Headphones,1,99.99,2019-06-20 13:24:00,805 Washington St, Dallas,TX,75001 +211916,Apple Airpods Headphones,1,150.0,2019-06-11 15:27:00,190 1st St, Dallas,TX,75001 +211917,AA Batteries (4-pack),3,3.84,2019-06-22 22:26:00,391 Cherry St, Los Angeles,CA,90001 +211918,ThinkPad Laptop,1,999.99,2019-06-16 22:03:00,944 Jackson St, Portland,OR,97035 +211919,USB-C Charging Cable,1,11.95,2019-06-29 13:29:00,673 Cherry St, San Francisco,CA,94016 +211920,20in Monitor,1,109.99,2019-06-29 09:41:00,468 Madison St, Atlanta,GA,30301 +211921,Lightning Charging Cable,1,14.95,2019-06-07 10:14:00,276 Lincoln St, Boston,MA,02215 +211922,Bose SoundSport Headphones,1,99.99,2019-06-30 07:23:00,31 Hill St, Seattle,WA,98101 +211923,27in FHD Monitor,1,149.99,2019-06-04 18:12:00,27 Wilson St, Los Angeles,CA,90001 +211924,Wired Headphones,1,11.99,2019-06-21 19:30:00,818 North St, Boston,MA,02215 +211925,AA Batteries (4-pack),1,3.84,2019-06-04 09:04:00,961 Jackson St, San Francisco,CA,94016 +211926,Wired Headphones,1,11.99,2019-06-07 12:47:00,685 11th St, Seattle,WA,98101 +211927,Flatscreen TV,1,300.0,2019-06-27 18:08:00,733 Washington St, New York City,NY,10001 +211928,Wired Headphones,1,11.99,2019-06-20 13:30:00,61 Sunset St, San Francisco,CA,94016 +211929,27in 4K Gaming Monitor,1,389.99,2019-06-13 12:31:00,523 2nd St, San Francisco,CA,94016 +211930,27in 4K Gaming Monitor,1,389.99,2019-06-14 18:38:00,33 10th St, New York City,NY,10001 +211931,AAA Batteries (4-pack),1,2.99,2019-06-22 13:06:00,854 Lincoln St, San Francisco,CA,94016 +211932,Apple Airpods Headphones,1,150.0,2019-06-10 15:06:00,186 Center St, San Francisco,CA,94016 +211933,27in 4K Gaming Monitor,1,389.99,2019-06-14 09:05:00,655 Hickory St, New York City,NY,10001 +211934,Lightning Charging Cable,1,14.95,2019-06-09 10:50:00,156 Jefferson St, Austin,TX,73301 +211935,Wired Headphones,1,11.99,2019-06-10 10:31:00,587 Madison St, San Francisco,CA,94016 +211936,AA Batteries (4-pack),4,3.84,2019-06-15 20:52:00,126 Jefferson St, San Francisco,CA,94016 +211937,AA Batteries (4-pack),1,3.84,2019-06-24 20:22:00,859 Madison St, San Francisco,CA,94016 +211938,ThinkPad Laptop,1,999.99,2019-06-26 08:22:00,922 Park St, Los Angeles,CA,90001 +211939,USB-C Charging Cable,1,11.95,2019-06-29 18:38:00,43 Lake St, New York City,NY,10001 +211939,Vareebadd Phone,1,400.0,2019-06-29 18:38:00,43 Lake St, New York City,NY,10001 +211940,AA Batteries (4-pack),1,3.84,2019-06-09 10:45:00,907 Hill St, San Francisco,CA,94016 +211941,USB-C Charging Cable,1,11.95,2019-06-09 10:33:00,60 Jefferson St, Seattle,WA,98101 +211942,Lightning Charging Cable,1,14.95,2019-06-07 10:33:00,469 Ridge St, Seattle,WA,98101 +211943,USB-C Charging Cable,1,11.95,2019-06-18 13:38:00,392 Pine St, New York City,NY,10001 +211944,iPhone,1,700.0,2019-06-02 21:17:00,541 1st St, New York City,NY,10001 +211944,Lightning Charging Cable,1,14.95,2019-06-02 21:17:00,541 1st St, New York City,NY,10001 +211945,iPhone,1,700.0,2019-06-23 18:20:00,978 Meadow St, Boston,MA,02215 +211946,34in Ultrawide Monitor,1,379.99,2019-06-21 01:02:00,157 Forest St, San Francisco,CA,94016 +211947,USB-C Charging Cable,1,11.95,2019-06-28 10:35:00,901 Adams St, Portland,OR,97035 +211948,Wired Headphones,1,11.99,2019-06-25 11:02:00,5 2nd St, San Francisco,CA,94016 +211949,AAA Batteries (4-pack),1,2.99,2019-06-19 20:06:00,749 North St, Portland,OR,97035 +211950,Bose SoundSport Headphones,1,99.99,2019-06-22 23:15:00,89 4th St, Atlanta,GA,30301 +211951,AA Batteries (4-pack),1,3.84,2019-06-16 00:09:00,733 Cedar St, San Francisco,CA,94016 +211952,Macbook Pro Laptop,1,1700.0,2019-06-12 12:53:00,58 Meadow St, Los Angeles,CA,90001 +211953,Flatscreen TV,1,300.0,2019-06-29 19:51:00,116 Hickory St, New York City,NY,10001 +211954,Lightning Charging Cable,1,14.95,2019-06-10 18:49:00,771 14th St, Los Angeles,CA,90001 +211955,AA Batteries (4-pack),1,3.84,2019-06-19 15:30:00,33 Walnut St, San Francisco,CA,94016 +211956,USB-C Charging Cable,1,11.95,2019-06-24 13:20:00,446 Sunset St, San Francisco,CA,94016 +211957,34in Ultrawide Monitor,1,379.99,2019-06-01 12:53:00,510 Walnut St, Boston,MA,02215 +211958,USB-C Charging Cable,1,11.95,2019-06-29 09:46:00,622 Meadow St, San Francisco,CA,94016 +211959,Google Phone,1,600.0,2019-06-25 22:19:00,594 Lincoln St, Boston,MA,02215 +211960,Apple Airpods Headphones,1,150.0,2019-06-27 19:55:00,190 Cherry St, New York City,NY,10001 +211961,Wired Headphones,1,11.99,2019-06-30 18:53:00,150 11th St, San Francisco,CA,94016 +211962,27in 4K Gaming Monitor,1,389.99,2019-06-02 10:36:00,527 12th St, Boston,MA,02215 +211963,Flatscreen TV,1,300.0,2019-06-29 19:36:00,892 Madison St, San Francisco,CA,94016 +211964,USB-C Charging Cable,1,11.95,2019-06-21 14:38:00,962 14th St, New York City,NY,10001 +211965,Wired Headphones,1,11.99,2019-06-13 15:49:00,423 Pine St, Atlanta,GA,30301 +211965,USB-C Charging Cable,1,11.95,2019-06-13 15:49:00,423 Pine St, Atlanta,GA,30301 +211966,AA Batteries (4-pack),2,3.84,2019-06-27 11:49:00,189 Johnson St, Boston,MA,02215 +211967,Lightning Charging Cable,1,14.95,2019-06-20 14:05:00,512 6th St, San Francisco,CA,94016 +211968,iPhone,1,700.0,2019-06-05 18:09:00,368 Lincoln St, Portland,OR,97035 +211969,Macbook Pro Laptop,1,1700.0,2019-06-11 10:09:00,821 Adams St, Los Angeles,CA,90001 +211970,Google Phone,1,600.0,2019-06-15 10:18:00,779 North St, Los Angeles,CA,90001 +211970,USB-C Charging Cable,1,11.95,2019-06-15 10:18:00,779 North St, Los Angeles,CA,90001 +211971,AAA Batteries (4-pack),1,2.99,2019-06-20 22:27:00,810 Willow St, Los Angeles,CA,90001 +211972,Apple Airpods Headphones,1,150.0,2019-06-19 18:13:00,711 Church St, Atlanta,GA,30301 +211973,Bose SoundSport Headphones,1,99.99,2019-06-23 08:52:00,319 2nd St, Boston,MA,02215 +211974,Lightning Charging Cable,1,14.95,2019-06-17 22:14:00,425 Center St, Los Angeles,CA,90001 +211975,34in Ultrawide Monitor,1,379.99,2019-06-27 17:43:00,36 Pine St, Boston,MA,02215 +211976,27in FHD Monitor,1,149.99,2019-06-29 11:59:00,748 Pine St, Boston,MA,02215 +211977,Wired Headphones,1,11.99,2019-06-11 00:04:00,318 Sunset St, New York City,NY,10001 +211978,AAA Batteries (4-pack),1,2.99,2019-06-22 13:40:00,882 6th St, Boston,MA,02215 +211979,Lightning Charging Cable,1,14.95,2019-06-12 10:48:00,131 Church St, Austin,TX,73301 +211980,AA Batteries (4-pack),1,3.84,2019-06-21 19:59:00,329 North St, Los Angeles,CA,90001 +211981,USB-C Charging Cable,1,11.95,2019-06-13 19:37:00,795 Forest St, San Francisco,CA,94016 +211982,34in Ultrawide Monitor,1,379.99,2019-06-04 23:19:00,588 North St, New York City,NY,10001 +211983,Wired Headphones,1,11.99,2019-06-13 18:53:00,958 Jackson St, Los Angeles,CA,90001 +211984,20in Monitor,1,109.99,2019-06-21 11:02:00,984 2nd St, New York City,NY,10001 +211985,Apple Airpods Headphones,2,150.0,2019-06-01 18:51:00,320 Hill St, New York City,NY,10001 +211986,Apple Airpods Headphones,1,150.0,2019-06-02 10:06:00,431 Ridge St, Atlanta,GA,30301 +211987,USB-C Charging Cable,2,11.95,2019-06-29 10:01:00,657 11th St, Boston,MA,02215 +211988,Bose SoundSport Headphones,1,99.99,2019-06-01 18:33:00,386 Cedar St, Atlanta,GA,30301 +211989,Apple Airpods Headphones,1,150.0,2019-06-15 18:59:00,765 Chestnut St, Dallas,TX,75001 +211990,Lightning Charging Cable,1,14.95,2019-06-14 13:35:00,687 9th St, San Francisco,CA,94016 +211991,AAA Batteries (4-pack),2,2.99,2019-06-01 16:09:00,488 River St, Seattle,WA,98101 +211992,iPhone,1,700.0,2019-06-01 10:06:00,885 Willow St, Los Angeles,CA,90001 +211992,Lightning Charging Cable,2,14.95,2019-06-01 10:06:00,885 Willow St, Los Angeles,CA,90001 +211993,27in FHD Monitor,1,149.99,2019-06-23 08:14:00,136 Lincoln St, Dallas,TX,75001 +211994,Apple Airpods Headphones,1,150.0,2019-06-20 20:22:00,801 Lake St, San Francisco,CA,94016 +211995,Bose SoundSport Headphones,1,99.99,2019-06-13 13:21:00,837 13th St, New York City,NY,10001 +211996,Apple Airpods Headphones,1,150.0,2019-06-05 18:36:00,390 South St, Los Angeles,CA,90001 +211997,Wired Headphones,1,11.99,2019-06-23 10:47:00,880 11th St, Dallas,TX,75001 +211998,AAA Batteries (4-pack),1,2.99,2019-06-13 05:42:00,868 South St, Seattle,WA,98101 +211999,AA Batteries (4-pack),2,3.84,2019-06-14 20:52:00,344 9th St, Boston,MA,02215 +212000,AAA Batteries (4-pack),1,2.99,2019-06-13 22:11:00,792 Forest St, Los Angeles,CA,90001 +212001,27in FHD Monitor,1,149.99,2019-06-03 08:51:00,98 South St, Atlanta,GA,30301 +212002,Wired Headphones,1,11.99,2019-06-13 10:07:00,665 Maple St, Seattle,WA,98101 +212003,USB-C Charging Cable,1,11.95,2019-06-04 12:14:00,355 Forest St, Austin,TX,73301 +212004,Lightning Charging Cable,3,14.95,2019-06-23 09:47:00,854 Madison St, San Francisco,CA,94016 +212005,AA Batteries (4-pack),2,3.84,2019-06-22 20:39:00,663 Forest St, Los Angeles,CA,90001 +212006,Lightning Charging Cable,1,14.95,2019-06-11 18:37:00,191 2nd St, Seattle,WA,98101 +212007,AA Batteries (4-pack),1,3.84,2019-06-18 15:12:00,825 10th St, Los Angeles,CA,90001 +212008,AAA Batteries (4-pack),1,2.99,2019-06-02 13:43:00,750 Pine St, Dallas,TX,75001 +212009,AAA Batteries (4-pack),1,2.99,2019-06-14 22:54:00,104 South St, Los Angeles,CA,90001 +212010,Apple Airpods Headphones,1,150.0,2019-06-18 23:17:00,425 Center St, Dallas,TX,75001 +212011,20in Monitor,1,109.99,2019-06-22 09:39:00,777 7th St, New York City,NY,10001 +212012,USB-C Charging Cable,1,11.95,2019-06-23 11:53:00,618 River St, San Francisco,CA,94016 +212013,AAA Batteries (4-pack),1,2.99,2019-06-11 18:35:00,623 9th St, San Francisco,CA,94016 +212014,Wired Headphones,1,11.99,2019-06-14 18:10:00,11 Park St, Los Angeles,CA,90001 +212015,AAA Batteries (4-pack),1,2.99,2019-06-05 15:08:00,900 Willow St, New York City,NY,10001 +212016,LG Washing Machine,1,600.0,2019-06-14 20:20:00,894 Chestnut St, New York City,NY,10001 +212017,Lightning Charging Cable,1,14.95,2019-06-21 06:55:00,606 River St, New York City,NY,10001 +212018,AA Batteries (4-pack),2,3.84,2019-06-08 17:17:00,862 Dogwood St, Los Angeles,CA,90001 +212019,34in Ultrawide Monitor,1,379.99,2019-06-03 21:30:00,909 6th St, Austin,TX,73301 +212020,Lightning Charging Cable,1,14.95,2019-06-10 20:14:00,280 Lincoln St, New York City,NY,10001 +212021,AAA Batteries (4-pack),1,2.99,2019-06-04 09:41:00,683 Elm St, Boston,MA,02215 +212022,AA Batteries (4-pack),2,3.84,2019-06-09 20:50:00,234 Jefferson St, Los Angeles,CA,90001 +212023,USB-C Charging Cable,1,11.95,2019-06-30 21:35:00,554 Lakeview St, Los Angeles,CA,90001 +212024,AAA Batteries (4-pack),1,2.99,2019-06-14 00:34:00,438 Park St, Los Angeles,CA,90001 +212025,Lightning Charging Cable,1,14.95,2019-06-17 13:15:00,153 Hickory St, Portland,OR,97035 +212026,AA Batteries (4-pack),1,3.84,2019-06-10 06:44:00,519 1st St, San Francisco,CA,94016 +212027,Lightning Charging Cable,1,14.95,2019-06-16 09:39:00,785 4th St, New York City,NY,10001 +212028,AA Batteries (4-pack),2,3.84,2019-06-26 20:58:00,543 2nd St, Atlanta,GA,30301 +212029,Bose SoundSport Headphones,1,99.99,2019-06-04 19:23:00,531 Pine St, San Francisco,CA,94016 +212030,Macbook Pro Laptop,1,1700.0,2019-06-11 14:50:00,193 South St, Portland,OR,97035 +212031,34in Ultrawide Monitor,1,379.99,2019-06-16 15:05:00,564 Washington St, San Francisco,CA,94016 +212032,AA Batteries (4-pack),1,3.84,2019-06-02 12:10:00,645 Elm St, Seattle,WA,98101 +212033,AA Batteries (4-pack),4,3.84,2019-06-18 22:55:00,401 1st St, Boston,MA,02215 +212034,Lightning Charging Cable,1,14.95,2019-06-24 07:19:00,392 Cherry St, Austin,TX,73301 +212035,Wired Headphones,1,11.99,2019-06-30 10:09:00,244 Church St, Los Angeles,CA,90001 +212036,Google Phone,1,600.0,2019-06-18 19:42:00,480 Maple St, Dallas,TX,75001 +212037,ThinkPad Laptop,1,999.99,2019-06-13 18:26:00,665 Church St, San Francisco,CA,94016 +212038,USB-C Charging Cable,1,11.95,2019-06-20 18:49:00,244 Church St, Boston,MA,02215 +212039,Apple Airpods Headphones,1,150.0,2019-06-05 20:00:00,443 Willow St, San Francisco,CA,94016 +212040,Lightning Charging Cable,1,14.95,2019-06-09 08:53:00,578 Washington St, New York City,NY,10001 +212041,iPhone,1,700.0,2019-06-16 19:47:00,596 Maple St, Austin,TX,73301 +212042,Wired Headphones,1,11.99,2019-06-29 19:46:00,480 7th St, Dallas,TX,75001 +212043,AA Batteries (4-pack),1,3.84,2019-06-14 11:52:00,134 8th St, Seattle,WA,98101 +212044,Wired Headphones,1,11.99,2019-06-18 18:31:00,827 Center St, Boston,MA,02215 +212045,Wired Headphones,1,11.99,2019-06-29 10:22:00,948 Church St, Atlanta,GA,30301 +212046,Bose SoundSport Headphones,1,99.99,2019-06-29 22:14:00,405 Willow St, San Francisco,CA,94016 +212047,Lightning Charging Cable,2,14.95,2019-06-10 11:20:00,617 5th St, Dallas,TX,75001 +212048,Vareebadd Phone,1,400.0,2019-06-12 11:28:00,37 Cedar St, San Francisco,CA,94016 +212049,USB-C Charging Cable,1,11.95,2019-06-11 12:33:00,458 9th St, Los Angeles,CA,90001 +212050,AAA Batteries (4-pack),1,2.99,2019-06-05 17:00:00,4 Hill St, San Francisco,CA,94016 +212051,Wired Headphones,1,11.99,2019-06-02 22:44:00,212 Maple St, San Francisco,CA,94016 +212052,USB-C Charging Cable,1,11.95,2019-06-27 10:08:00,963 Hill St, Los Angeles,CA,90001 +212053,Google Phone,1,600.0,2019-06-23 07:19:00,792 13th St, Atlanta,GA,30301 +212054,Macbook Pro Laptop,1,1700.0,2019-06-22 12:56:00,753 Cedar St, Los Angeles,CA,90001 +212055,Apple Airpods Headphones,1,150.0,2019-06-17 16:14:00,866 Walnut St, Seattle,WA,98101 +212056,Flatscreen TV,1,300.0,2019-06-30 20:55:00,451 6th St, Portland,ME,04101 +212057,Google Phone,1,600.0,2019-06-10 16:13:00,306 North St, San Francisco,CA,94016 +212058,27in FHD Monitor,1,149.99,2019-06-29 18:31:00,212 Church St, New York City,NY,10001 +212059,AA Batteries (4-pack),1,3.84,2019-06-11 06:51:00,766 Spruce St, New York City,NY,10001 +212060,Wired Headphones,1,11.99,2019-06-02 13:27:00,844 9th St, Portland,OR,97035 +212061,USB-C Charging Cable,1,11.95,2019-06-21 22:11:00,305 Lake St, Portland,OR,97035 +212061,Wired Headphones,1,11.99,2019-06-21 22:11:00,305 Lake St, Portland,OR,97035 +212062,Bose SoundSport Headphones,1,99.99,2019-06-14 22:13:00,695 Cedar St, Dallas,TX,75001 +212063,27in FHD Monitor,1,149.99,2019-06-19 22:39:00,142 Washington St, Seattle,WA,98101 +212064,Bose SoundSport Headphones,1,99.99,2019-06-10 21:22:00,626 Jefferson St, San Francisco,CA,94016 +212065,AAA Batteries (4-pack),1,2.99,2019-06-20 18:32:00,512 Ridge St, San Francisco,CA,94016 +212066,Flatscreen TV,1,300.0,2019-06-19 14:29:00,171 Wilson St, Los Angeles,CA,90001 +212067,Lightning Charging Cable,1,14.95,2019-06-21 19:26:00,592 11th St, Portland,OR,97035 +212068,Apple Airpods Headphones,1,150.0,2019-06-09 16:23:00,994 Washington St, Los Angeles,CA,90001 +212069,AAA Batteries (4-pack),1,2.99,2019-06-05 09:29:00,114 5th St, San Francisco,CA,94016 +212070,AA Batteries (4-pack),2,3.84,2019-06-11 14:29:00,589 11th St, New York City,NY,10001 +212071,Apple Airpods Headphones,1,150.0,2019-06-15 18:36:00,374 5th St, Austin,TX,73301 +212072,Wired Headphones,1,11.99,2019-06-14 18:26:00,450 Forest St, Los Angeles,CA,90001 +212073,Lightning Charging Cable,1,14.95,2019-06-07 14:56:00,361 4th St, Boston,MA,02215 +212074,Apple Airpods Headphones,1,150.0,2019-06-28 12:43:00,877 11th St, Dallas,TX,75001 +212075,iPhone,1,700.0,2019-06-09 20:20:00,321 Highland St, Portland,OR,97035 +212076,AAA Batteries (4-pack),1,2.99,2019-06-05 23:18:00,934 2nd St, Boston,MA,02215 +212077,Bose SoundSport Headphones,1,99.99,2019-06-29 17:05:00,155 5th St, Atlanta,GA,30301 +212078,AA Batteries (4-pack),4,3.84,2019-06-12 22:20:00,819 Highland St, Los Angeles,CA,90001 +212079,AA Batteries (4-pack),1,3.84,2019-06-14 11:44:00,387 Adams St, San Francisco,CA,94016 +212080,AAA Batteries (4-pack),1,2.99,2019-06-30 20:15:00,658 Main St, San Francisco,CA,94016 +212081,Apple Airpods Headphones,1,150.0,2019-06-20 16:11:00,401 14th St, Atlanta,GA,30301 +212082,AA Batteries (4-pack),1,3.84,2019-06-20 16:50:00,123 4th St, San Francisco,CA,94016 +212083,AAA Batteries (4-pack),1,2.99,2019-06-04 20:22:00,551 Adams St, Los Angeles,CA,90001 +212084,AA Batteries (4-pack),1,3.84,2019-06-14 20:12:00,19 Dogwood St, Los Angeles,CA,90001 +212085,20in Monitor,1,109.99,2019-06-05 17:28:00,170 10th St, San Francisco,CA,94016 +212086,Apple Airpods Headphones,1,150.0,2019-06-22 16:17:00,209 Wilson St, Boston,MA,02215 +212087,Macbook Pro Laptop,1,1700.0,2019-06-11 02:54:00,747 Forest St, New York City,NY,10001 +212088,Wired Headphones,1,11.99,2019-06-10 07:58:00,647 Lake St, Los Angeles,CA,90001 +212089,Bose SoundSport Headphones,1,99.99,2019-06-28 11:22:00,741 Wilson St, New York City,NY,10001 +212090,Apple Airpods Headphones,2,150.0,2019-06-27 06:55:00,679 Washington St, Dallas,TX,75001 +212091,20in Monitor,1,109.99,2019-06-26 12:28:00,500 Lake St, Atlanta,GA,30301 +212092,34in Ultrawide Monitor,1,379.99,2019-06-21 19:58:00,643 Wilson St, Austin,TX,73301 +212093,AAA Batteries (4-pack),1,2.99,2019-06-10 22:21:00,991 11th St, Portland,OR,97035 +212094,Wired Headphones,1,11.99,2019-06-14 22:00:00,189 9th St, San Francisco,CA,94016 +212095,iPhone,1,700.0,2019-06-17 17:30:00,877 Lake St, Atlanta,GA,30301 +212096,Bose SoundSport Headphones,1,99.99,2019-06-14 11:24:00,500 Main St, Los Angeles,CA,90001 +212097,Flatscreen TV,1,300.0,2019-06-07 15:19:00,318 12th St, San Francisco,CA,94016 +212098,Wired Headphones,2,11.99,2019-06-06 13:12:00,384 Elm St, Atlanta,GA,30301 +212099,34in Ultrawide Monitor,1,379.99,2019-06-25 14:29:00,829 West St, San Francisco,CA,94016 +212100,Lightning Charging Cable,1,14.95,2019-06-23 13:03:00,751 Hill St, Dallas,TX,75001 +212101,Lightning Charging Cable,1,14.95,2019-06-15 17:55:00,697 Dogwood St, San Francisco,CA,94016 +212102,Apple Airpods Headphones,1,150.0,2019-06-26 13:30:00,235 Jackson St, Boston,MA,02215 +212103,Wired Headphones,1,11.99,2019-06-04 10:06:00,25 10th St, Boston,MA,02215 +212104,AA Batteries (4-pack),1,3.84,2019-06-14 00:46:00,721 Washington St, Boston,MA,02215 +212105,AA Batteries (4-pack),1,3.84,2019-06-27 23:49:00,750 Lincoln St, New York City,NY,10001 +212106,Bose SoundSport Headphones,1,99.99,2019-06-19 17:20:00,615 11th St, Los Angeles,CA,90001 +212107,Bose SoundSport Headphones,1,99.99,2019-06-28 23:49:00,398 Walnut St, San Francisco,CA,94016 +212108,Lightning Charging Cable,1,14.95,2019-06-19 10:54:00,306 Forest St, Dallas,TX,75001 +212109,Apple Airpods Headphones,1,150.0,2019-06-08 17:19:00,830 Madison St, San Francisco,CA,94016 +212110,ThinkPad Laptop,1,999.99,2019-06-18 00:00:00,866 1st St, Seattle,WA,98101 +212111,34in Ultrawide Monitor,1,379.99,2019-06-15 10:04:00,417 Lakeview St, San Francisco,CA,94016 +212112,AAA Batteries (4-pack),1,2.99,2019-06-16 20:38:00,562 Ridge St, New York City,NY,10001 +212113,Bose SoundSport Headphones,1,99.99,2019-06-15 17:19:00,7 4th St, Los Angeles,CA,90001 +212114,USB-C Charging Cable,1,11.95,2019-06-11 15:10:00,140 Johnson St, Portland,OR,97035 +212115,34in Ultrawide Monitor,1,379.99,2019-06-18 21:12:00,155 Forest St, San Francisco,CA,94016 +212116,27in 4K Gaming Monitor,1,389.99,2019-06-10 22:45:00,514 Center St, San Francisco,CA,94016 +212117,Flatscreen TV,1,300.0,2019-06-27 13:22:00,941 Maple St, New York City,NY,10001 +212118,AA Batteries (4-pack),2,3.84,2019-06-11 23:38:00,125 Madison St, New York City,NY,10001 +212119,AA Batteries (4-pack),1,3.84,2019-06-27 22:42:00,479 Walnut St, San Francisco,CA,94016 +212120,LG Washing Machine,1,600.0,2019-06-05 07:35:00,200 11th St, San Francisco,CA,94016 +212121,LG Dryer,1,600.0,2019-06-09 11:36:00,641 Walnut St, Austin,TX,73301 +212122,27in FHD Monitor,1,149.99,2019-06-28 16:53:00,152 Meadow St, San Francisco,CA,94016 +212123,Wired Headphones,1,11.99,2019-06-26 00:20:00,214 River St, Los Angeles,CA,90001 +212124,AA Batteries (4-pack),1,3.84,2019-06-22 14:48:00,811 9th St, Austin,TX,73301 +212125,Wired Headphones,1,11.99,2019-06-07 10:33:00,19 10th St, New York City,NY,10001 +212126,USB-C Charging Cable,1,11.95,2019-06-29 12:03:00,631 14th St, Portland,OR,97035 +212127,27in FHD Monitor,1,149.99,2019-06-23 14:27:00,47 Church St, Atlanta,GA,30301 +212128,Flatscreen TV,1,300.0,2019-06-30 19:48:00,77 Forest St, Boston,MA,02215 +212129,34in Ultrawide Monitor,1,379.99,2019-06-17 00:13:00,151 Madison St, New York City,NY,10001 +212130,Apple Airpods Headphones,1,150.0,2019-06-16 09:18:00,97 14th St, Boston,MA,02215 +212131,Wired Headphones,1,11.99,2019-06-30 11:11:00,419 10th St, Boston,MA,02215 +212132,AAA Batteries (4-pack),2,2.99,2019-06-24 08:21:00,856 South St, Los Angeles,CA,90001 +212133,Bose SoundSport Headphones,1,99.99,2019-06-09 20:19:00,846 Dogwood St, San Francisco,CA,94016 +212134,34in Ultrawide Monitor,1,379.99,2019-06-07 15:09:00,406 Dogwood St, Seattle,WA,98101 +212135,USB-C Charging Cable,1,11.95,2019-06-03 13:55:00,731 Sunset St, San Francisco,CA,94016 +212136,AAA Batteries (4-pack),1,2.99,2019-06-04 14:08:00,970 Chestnut St, Seattle,WA,98101 +212137,Lightning Charging Cable,1,14.95,2019-06-21 20:45:00,234 West St, Atlanta,GA,30301 +212138,Vareebadd Phone,1,400.0,2019-06-25 00:03:00,328 Chestnut St, New York City,NY,10001 +212139,USB-C Charging Cable,1,11.95,2019-06-19 16:16:00,136 8th St, New York City,NY,10001 +212140,AAA Batteries (4-pack),1,2.99,2019-06-10 20:36:00,955 Washington St, Boston,MA,02215 +212141,Lightning Charging Cable,1,14.95,2019-06-10 07:00:00,96 Forest St, San Francisco,CA,94016 +212142,iPhone,1,700.0,2019-06-23 22:37:00,67 Center St, Los Angeles,CA,90001 +212142,Wired Headphones,1,11.99,2019-06-23 22:37:00,67 Center St, Los Angeles,CA,90001 +212143,USB-C Charging Cable,1,11.95,2019-06-28 00:01:00,779 Walnut St, Atlanta,GA,30301 +212144,Lightning Charging Cable,1,14.95,2019-06-10 20:54:00,972 8th St, New York City,NY,10001 +212145,AAA Batteries (4-pack),1,2.99,2019-06-09 17:51:00,799 North St, New York City,NY,10001 +212146,AA Batteries (4-pack),4,3.84,2019-06-28 22:49:00,857 2nd St, Boston,MA,02215 +212147,Bose SoundSport Headphones,1,99.99,2019-06-15 19:51:00,160 Washington St, San Francisco,CA,94016 +212148,ThinkPad Laptop,1,999.99,2019-06-04 08:42:00,724 2nd St, Los Angeles,CA,90001 +212149,USB-C Charging Cable,1,11.95,2019-06-23 01:33:00,256 Sunset St, Atlanta,GA,30301 +212150,Apple Airpods Headphones,1,150.0,2019-06-10 20:31:00,279 Maple St, Dallas,TX,75001 +212151,USB-C Charging Cable,1,11.95,2019-06-13 13:54:00,4 6th St, Dallas,TX,75001 +212152,Flatscreen TV,1,300.0,2019-06-02 10:04:00,142 10th St, Portland,OR,97035 +212153,Macbook Pro Laptop,1,1700.0,2019-06-04 17:30:00,238 Jefferson St, Seattle,WA,98101 +212154,Google Phone,1,600.0,2019-06-15 09:22:00,948 2nd St, San Francisco,CA,94016 +212155,Apple Airpods Headphones,1,150.0,2019-06-12 18:51:00,181 Adams St, New York City,NY,10001 +212156,Wired Headphones,1,11.99,2019-06-04 14:55:00,716 Meadow St, Austin,TX,73301 +212157,Bose SoundSport Headphones,1,99.99,2019-06-12 17:31:00,793 Park St, Atlanta,GA,30301 +212158,ThinkPad Laptop,1,999.99,2019-06-23 04:30:00,75 Church St, San Francisco,CA,94016 +212159,Bose SoundSport Headphones,1,99.99,2019-06-08 12:23:00,495 Maple St, San Francisco,CA,94016 +212160,Bose SoundSport Headphones,1,99.99,2019-06-04 11:03:00,756 West St, Seattle,WA,98101 +212161,AA Batteries (4-pack),1,3.84,2019-06-10 09:32:00,405 Ridge St, Los Angeles,CA,90001 +212162,USB-C Charging Cable,1,11.95,2019-06-06 21:11:00,339 Lakeview St, Portland,OR,97035 +212163,Wired Headphones,2,11.99,2019-06-26 15:53:00,156 Park St, Los Angeles,CA,90001 +212164,Wired Headphones,1,11.99,2019-06-15 13:01:00,5 Pine St, Boston,MA,02215 +212165,27in 4K Gaming Monitor,1,389.99,2019-06-28 19:39:00,943 7th St, Atlanta,GA,30301 +212166,AAA Batteries (4-pack),1,2.99,2019-06-22 19:54:00,586 Dogwood St, Los Angeles,CA,90001 +212167,USB-C Charging Cable,1,11.95,2019-06-14 10:50:00,745 Park St, Los Angeles,CA,90001 +212168,USB-C Charging Cable,1,11.95,2019-06-25 20:07:00,974 14th St, Los Angeles,CA,90001 +212169,27in FHD Monitor,1,149.99,2019-06-09 22:56:00,148 Washington St, San Francisco,CA,94016 +212170,iPhone,1,700.0,2019-06-17 07:37:00,789 Elm St, San Francisco,CA,94016 +212171,27in FHD Monitor,1,149.99,2019-06-01 23:33:00,300 Jefferson St, Los Angeles,CA,90001 +212172,Wired Headphones,1,11.99,2019-06-20 17:07:00,867 10th St, San Francisco,CA,94016 +212173,AA Batteries (4-pack),1,3.84,2019-06-24 19:41:00,972 14th St, Atlanta,GA,30301 +212174,Lightning Charging Cable,1,14.95,2019-06-20 07:00:00,47 Spruce St, Boston,MA,02215 +212175,AA Batteries (4-pack),1,3.84,2019-06-08 16:17:00,69 Highland St, Los Angeles,CA,90001 +212176,AA Batteries (4-pack),1,3.84,2019-06-04 09:41:00,492 1st St, Boston,MA,02215 +212177,Apple Airpods Headphones,1,150.0,2019-06-14 12:55:00,597 Spruce St, San Francisco,CA,94016 +212178,AA Batteries (4-pack),1,3.84,2019-06-07 17:24:00,544 Adams St, San Francisco,CA,94016 +212179,Google Phone,1,600.0,2019-06-23 09:59:00,497 Hill St, San Francisco,CA,94016 +212180,AAA Batteries (4-pack),2,2.99,2019-06-11 18:14:00,115 14th St, Dallas,TX,75001 +212181,AA Batteries (4-pack),1,3.84,2019-06-23 17:52:00,421 North St, San Francisco,CA,94016 +212182,iPhone,1,700.0,2019-06-20 20:21:00,864 2nd St, Los Angeles,CA,90001 +212183,27in FHD Monitor,1,149.99,2019-06-02 16:19:00,150 Jefferson St, New York City,NY,10001 +212184,Bose SoundSport Headphones,1,99.99,2019-06-10 01:54:00,908 1st St, Seattle,WA,98101 +212185,27in FHD Monitor,1,149.99,2019-06-05 11:13:00,92 4th St, Boston,MA,02215 +212186,Apple Airpods Headphones,1,150.0,2019-06-15 19:43:00,937 Dogwood St, Seattle,WA,98101 +212187,Lightning Charging Cable,1,14.95,2019-06-06 14:35:00,86 Cedar St, Dallas,TX,75001 +212188,Macbook Pro Laptop,1,1700.0,2019-06-08 17:24:00,209 Park St, San Francisco,CA,94016 +212189,27in FHD Monitor,1,149.99,2019-06-25 20:53:00,46 13th St, Portland,ME,04101 +212190,Apple Airpods Headphones,1,150.0,2019-06-07 20:31:00,8 Cedar St, Portland,OR,97035 +212191,Wired Headphones,2,11.99,2019-06-30 11:31:00,509 Forest St, Los Angeles,CA,90001 +212192,27in FHD Monitor,1,149.99,2019-06-06 15:32:00,357 Center St, San Francisco,CA,94016 +212193,Google Phone,1,600.0,2019-06-20 20:27:00,645 Spruce St, Atlanta,GA,30301 +212194,AAA Batteries (4-pack),2,2.99,2019-06-17 12:25:00,325 7th St, New York City,NY,10001 +212195,iPhone,1,700.0,2019-06-29 15:36:00,784 Pine St, San Francisco,CA,94016 +212196,Apple Airpods Headphones,1,150.0,2019-06-04 16:24:00,894 Cherry St, Los Angeles,CA,90001 +212197,27in 4K Gaming Monitor,1,389.99,2019-06-10 13:36:00,585 Willow St, San Francisco,CA,94016 +212198,AA Batteries (4-pack),2,3.84,2019-06-12 02:50:00,356 Washington St, Portland,OR,97035 +212199,AA Batteries (4-pack),1,3.84,2019-06-07 09:13:00,640 12th St, San Francisco,CA,94016 +212200,Lightning Charging Cable,2,14.95,2019-06-27 17:50:00,439 6th St, Los Angeles,CA,90001 +212201,20in Monitor,1,109.99,2019-06-13 12:48:00,281 Maple St, San Francisco,CA,94016 +212202,iPhone,1,700.0,2019-06-24 15:53:00,758 Park St, Seattle,WA,98101 +212202,Lightning Charging Cable,1,14.95,2019-06-24 15:53:00,758 Park St, Seattle,WA,98101 +212203,27in FHD Monitor,1,149.99,2019-06-08 00:46:00,107 North St, Boston,MA,02215 +212204,USB-C Charging Cable,1,11.95,2019-06-03 01:55:00,930 Lakeview St, Portland,OR,97035 +212205,34in Ultrawide Monitor,1,379.99,2019-06-21 20:06:00,120 5th St, San Francisco,CA,94016 +212206,27in FHD Monitor,1,149.99,2019-06-14 16:50:00,645 Pine St, Dallas,TX,75001 +212207,Apple Airpods Headphones,1,150.0,2019-06-18 22:25:00,132 Madison St, Portland,OR,97035 +212208,AA Batteries (4-pack),1,3.84,2019-06-18 13:32:00,838 Forest St, Boston,MA,02215 +212209,AA Batteries (4-pack),1,3.84,2019-06-26 13:11:00,434 9th St, San Francisco,CA,94016 +212210,27in FHD Monitor,1,149.99,2019-06-26 17:35:00,38 Ridge St, Los Angeles,CA,90001 +212211,Bose SoundSport Headphones,1,99.99,2019-06-17 09:45:00,229 1st St, Dallas,TX,75001 +212212,AA Batteries (4-pack),1,3.84,2019-06-09 23:51:00,893 Sunset St, Austin,TX,73301 +212213,AA Batteries (4-pack),2,3.84,2019-06-13 15:35:00,381 8th St, San Francisco,CA,94016 +212214,Apple Airpods Headphones,1,150.0,2019-06-16 15:47:00,561 Park St, Austin,TX,73301 +212215,USB-C Charging Cable,1,11.95,2019-06-20 19:13:00,495 Cherry St, Los Angeles,CA,90001 +212216,AAA Batteries (4-pack),2,2.99,2019-06-04 19:53:00,747 Walnut St, Dallas,TX,75001 +212216,AAA Batteries (4-pack),1,2.99,2019-06-04 19:53:00,747 Walnut St, Dallas,TX,75001 +212217,Lightning Charging Cable,1,14.95,2019-06-11 12:57:00,216 Willow St, San Francisco,CA,94016 +212218,Vareebadd Phone,1,400.0,2019-06-08 18:49:00,171 13th St, San Francisco,CA,94016 +212219,Bose SoundSport Headphones,1,99.99,2019-06-12 15:39:00,521 Lake St, Dallas,TX,75001 +212220,Wired Headphones,1,11.99,2019-06-29 18:21:00,449 Jefferson St, San Francisco,CA,94016 +212221,iPhone,1,700.0,2019-06-05 03:15:00,480 10th St, Dallas,TX,75001 +212222,AAA Batteries (4-pack),1,2.99,2019-06-05 14:58:00,788 Cedar St, San Francisco,CA,94016 +212223,Bose SoundSport Headphones,1,99.99,2019-06-28 10:10:00,756 12th St, Los Angeles,CA,90001 +212224,AA Batteries (4-pack),1,3.84,2019-06-29 15:22:00,241 2nd St, Austin,TX,73301 +212225,Apple Airpods Headphones,1,150.0,2019-06-01 17:41:00,820 West St, Los Angeles,CA,90001 +212226,AAA Batteries (4-pack),1,2.99,2019-06-23 11:52:00,47 Madison St, Portland,OR,97035 +212227,Wired Headphones,1,11.99,2019-06-24 19:37:00,35 Wilson St, Austin,TX,73301 +212228,Lightning Charging Cable,1,14.95,2019-06-18 19:59:00,996 Cherry St, Seattle,WA,98101 +212229,Lightning Charging Cable,1,14.95,2019-06-19 11:48:00,514 River St, Boston,MA,02215 +212230,Lightning Charging Cable,1,14.95,2019-06-26 18:52:00,794 Park St, Los Angeles,CA,90001 +212231,AAA Batteries (4-pack),2,2.99,2019-06-22 14:16:00,227 11th St, Seattle,WA,98101 +212232,USB-C Charging Cable,1,11.95,2019-06-17 20:30:00,644 Hill St, Boston,MA,02215 +212233,Wired Headphones,1,11.99,2019-06-15 18:03:00,891 9th St, New York City,NY,10001 +212234,Lightning Charging Cable,1,14.95,2019-06-18 10:15:00,930 Lakeview St, Los Angeles,CA,90001 +212235,Macbook Pro Laptop,1,1700.0,2019-06-19 20:13:00,668 11th St, Austin,TX,73301 +212235,AA Batteries (4-pack),1,3.84,2019-06-19 20:13:00,668 11th St, Austin,TX,73301 +212236,Wired Headphones,1,11.99,2019-06-26 21:17:00,133 4th St, Boston,MA,02215 +212237,Lightning Charging Cable,1,14.95,2019-06-19 08:16:00,132 11th St, Atlanta,GA,30301 +212237,Wired Headphones,1,11.99,2019-06-19 08:16:00,132 11th St, Atlanta,GA,30301 +212238,Lightning Charging Cable,1,14.95,2019-06-11 19:56:00,244 11th St, Atlanta,GA,30301 +212239,Google Phone,1,600.0,2019-06-20 17:40:00,721 Wilson St, San Francisco,CA,94016 +212240,AA Batteries (4-pack),1,3.84,2019-06-02 16:22:00,749 Lincoln St, New York City,NY,10001 +212241,ThinkPad Laptop,1,999.99,2019-06-14 11:06:00,246 Lakeview St, Los Angeles,CA,90001 +212242,AAA Batteries (4-pack),1,2.99,2019-06-20 20:23:00,946 North St, Seattle,WA,98101 +212243,Apple Airpods Headphones,1,150.0,2019-06-12 20:55:00,221 Dogwood St, San Francisco,CA,94016 +212244,Apple Airpods Headphones,1,150.0,2019-06-02 18:22:00,327 7th St, Boston,MA,02215 +212245,Bose SoundSport Headphones,1,99.99,2019-06-07 23:47:00,910 Washington St, San Francisco,CA,94016 +212246,AAA Batteries (4-pack),1,2.99,2019-06-01 21:33:00,379 Hickory St, Seattle,WA,98101 +212247,27in FHD Monitor,1,149.99,2019-06-28 09:08:00,791 River St, Los Angeles,CA,90001 +212248,Lightning Charging Cable,1,14.95,2019-06-24 01:46:00,866 Walnut St, New York City,NY,10001 +212249,Wired Headphones,2,11.99,2019-06-08 21:33:00,166 Ridge St, Portland,OR,97035 +212250,27in FHD Monitor,1,149.99,2019-06-19 19:02:00,489 Jackson St, Atlanta,GA,30301 +212251,Apple Airpods Headphones,1,150.0,2019-06-08 11:05:00,286 Church St, Boston,MA,02215 +212252,iPhone,1,700.0,2019-06-22 20:54:00,814 Ridge St, New York City,NY,10001 +212253,Lightning Charging Cable,1,14.95,2019-06-20 15:38:00,717 2nd St, New York City,NY,10001 +212254,Lightning Charging Cable,1,14.95,2019-06-22 13:02:00,142 1st St, Los Angeles,CA,90001 +212255,AAA Batteries (4-pack),1,2.99,2019-06-09 19:23:00,25 Meadow St, Boston,MA,02215 +212256,Lightning Charging Cable,1,14.95,2019-06-26 13:27:00,604 14th St, Boston,MA,02215 +212257,Google Phone,1,600.0,2019-06-19 22:26:00,622 Lakeview St, Seattle,WA,98101 +212258,USB-C Charging Cable,1,11.95,2019-06-30 10:43:00,904 Main St, Boston,MA,02215 +212259,Lightning Charging Cable,1,14.95,2019-06-28 14:42:00,880 Maple St, Boston,MA,02215 +212260,27in FHD Monitor,1,149.99,2019-06-04 17:20:00,813 Hickory St, Austin,TX,73301 +212261,USB-C Charging Cable,1,11.95,2019-06-16 15:20:00,162 4th St, Dallas,TX,75001 +212262,Bose SoundSport Headphones,1,99.99,2019-06-08 22:00:00,731 Lake St, New York City,NY,10001 +212263,Flatscreen TV,1,300.0,2019-06-23 18:03:00,296 11th St, San Francisco,CA,94016 +212264,34in Ultrawide Monitor,1,379.99,2019-06-10 11:51:00,297 Highland St, Los Angeles,CA,90001 +212265,iPhone,1,700.0,2019-06-18 21:58:00,885 1st St, Los Angeles,CA,90001 +212266,ThinkPad Laptop,1,999.99,2019-06-15 16:14:00,652 Spruce St, Los Angeles,CA,90001 +212267,Bose SoundSport Headphones,1,99.99,2019-06-01 09:35:00,743 Park St, Atlanta,GA,30301 +212268,Bose SoundSport Headphones,1,99.99,2019-06-24 09:19:00,101 Lakeview St, Seattle,WA,98101 +212269,Wired Headphones,1,11.99,2019-06-29 15:53:00,574 Hickory St, San Francisco,CA,94016 +212270,iPhone,1,700.0,2019-06-12 20:06:00,135 Dogwood St, San Francisco,CA,94016 +212271,AA Batteries (4-pack),1,3.84,2019-06-12 17:33:00,553 12th St, Austin,TX,73301 +212272,USB-C Charging Cable,1,11.95,2019-06-28 19:42:00,758 Washington St, Atlanta,GA,30301 +212273,Lightning Charging Cable,1,14.95,2019-06-25 15:24:00,51 Center St, Dallas,TX,75001 +212274,27in FHD Monitor,1,149.99,2019-06-19 15:44:00,798 Walnut St, Seattle,WA,98101 +212275,AA Batteries (4-pack),1,3.84,2019-06-16 08:12:00,686 Washington St, Dallas,TX,75001 +212276,AA Batteries (4-pack),2,3.84,2019-06-09 13:38:00,279 10th St, Atlanta,GA,30301 +212277,USB-C Charging Cable,1,11.95,2019-06-27 09:42:00,343 Hickory St, San Francisco,CA,94016 +212278,27in FHD Monitor,1,149.99,2019-06-28 12:05:00,924 River St, San Francisco,CA,94016 +212279,27in FHD Monitor,1,149.99,2019-06-14 09:31:00,615 8th St, Dallas,TX,75001 +212280,Flatscreen TV,1,300.0,2019-06-07 13:31:00,412 Highland St, New York City,NY,10001 +212281,USB-C Charging Cable,1,11.95,2019-06-17 15:51:00,22 Forest St, Los Angeles,CA,90001 +212282,Wired Headphones,1,11.99,2019-06-21 09:00:00,629 8th St, Boston,MA,02215 +212283,Wired Headphones,1,11.99,2019-06-10 04:29:00,843 West St, Los Angeles,CA,90001 +212284,AA Batteries (4-pack),1,3.84,2019-06-03 12:30:00,301 Madison St, Dallas,TX,75001 +212285,Bose SoundSport Headphones,1,99.99,2019-06-06 18:41:00,938 Meadow St, Los Angeles,CA,90001 +212286,AA Batteries (4-pack),2,3.84,2019-06-16 14:09:00,810 Spruce St, Atlanta,GA,30301 +212287,Wired Headphones,2,11.99,2019-06-03 10:28:00,107 12th St, San Francisco,CA,94016 +212288,Lightning Charging Cable,1,14.95,2019-06-30 13:53:00,93 Main St, Dallas,TX,75001 +212289,AAA Batteries (4-pack),1,2.99,2019-06-21 21:54:00,787 Highland St, San Francisco,CA,94016 +212290,27in FHD Monitor,1,149.99,2019-06-05 15:02:00,431 2nd St, Los Angeles,CA,90001 +212291,Lightning Charging Cable,1,14.95,2019-06-23 18:56:00,258 Wilson St, San Francisco,CA,94016 +212292,Wired Headphones,2,11.99,2019-06-11 12:40:00,478 Meadow St, Los Angeles,CA,90001 +212293,USB-C Charging Cable,1,11.95,2019-06-25 11:25:00,309 Highland St, New York City,NY,10001 +212294,USB-C Charging Cable,1,11.95,2019-06-26 12:33:00,114 Park St, San Francisco,CA,94016 +212295,USB-C Charging Cable,1,11.95,2019-06-17 15:45:00,803 5th St, Atlanta,GA,30301 +212295,Bose SoundSport Headphones,1,99.99,2019-06-17 15:45:00,803 5th St, Atlanta,GA,30301 +212296,Wired Headphones,1,11.99,2019-06-28 13:13:00,923 Cherry St, Seattle,WA,98101 +212297,AAA Batteries (4-pack),2,2.99,2019-06-10 19:16:00,332 West St, Austin,TX,73301 +212298,USB-C Charging Cable,1,11.95,2019-06-22 16:53:00,964 Sunset St, Los Angeles,CA,90001 +212299,Flatscreen TV,1,300.0,2019-06-17 12:06:00,709 Walnut St, Dallas,TX,75001 +212300,Lightning Charging Cable,1,14.95,2019-06-09 19:05:00,10 Jackson St, Austin,TX,73301 +212301,Bose SoundSport Headphones,1,99.99,2019-06-28 20:03:00,528 Madison St, San Francisco,CA,94016 +212302,Google Phone,1,600.0,2019-06-12 18:41:00,642 9th St, San Francisco,CA,94016 +212303,AAA Batteries (4-pack),3,2.99,2019-06-16 07:07:00,379 7th St, Austin,TX,73301 +212304,USB-C Charging Cable,1,11.95,2019-06-04 11:22:00,564 Cherry St, Austin,TX,73301 +212305,Wired Headphones,2,11.99,2019-06-05 09:16:00,310 Cherry St, Los Angeles,CA,90001 +212306,AAA Batteries (4-pack),2,2.99,2019-06-07 16:40:00,954 Lincoln St, Los Angeles,CA,90001 +212307,Apple Airpods Headphones,1,150.0,2019-06-24 20:32:00,313 Jackson St, San Francisco,CA,94016 +212308,Wired Headphones,1,11.99,2019-06-07 12:32:00,221 West St, Seattle,WA,98101 +212309,Lightning Charging Cable,1,14.95,2019-06-12 09:20:00,603 Meadow St, San Francisco,CA,94016 +212310,ThinkPad Laptop,1,999.99,2019-06-29 12:20:00,894 Hickory St, Atlanta,GA,30301 +212311,Flatscreen TV,1,300.0,2019-06-26 20:24:00,942 Cherry St, Portland,ME,04101 +212312,AA Batteries (4-pack),1,3.84,2019-06-15 08:29:00,766 Lincoln St, Los Angeles,CA,90001 +212313,Google Phone,1,600.0,2019-06-18 15:58:00,518 2nd St, Los Angeles,CA,90001 +212313,USB-C Charging Cable,1,11.95,2019-06-18 15:58:00,518 2nd St, Los Angeles,CA,90001 +212314,Apple Airpods Headphones,1,150.0,2019-06-28 00:43:00,480 Wilson St, Dallas,TX,75001 +212315,AA Batteries (4-pack),1,3.84,2019-06-03 20:39:00,691 12th St, Austin,TX,73301 +212316,AA Batteries (4-pack),1,3.84,2019-06-06 09:36:00,837 River St, New York City,NY,10001 +212317,AA Batteries (4-pack),1,3.84,2019-06-25 11:25:00,783 Forest St, Dallas,TX,75001 +212318,ThinkPad Laptop,1,999.99,2019-06-17 09:30:00,126 Jackson St, Seattle,WA,98101 +212319,Bose SoundSport Headphones,1,99.99,2019-06-24 11:11:00,458 5th St, Seattle,WA,98101 +212320,Bose SoundSport Headphones,1,99.99,2019-06-22 20:42:00,854 Meadow St, San Francisco,CA,94016 +212321,Flatscreen TV,1,300.0,2019-06-16 23:04:00,295 Willow St, San Francisco,CA,94016 +212322,iPhone,1,700.0,2019-06-24 10:58:00,946 6th St, San Francisco,CA,94016 +212323,Flatscreen TV,1,300.0,2019-06-27 18:48:00,606 Ridge St, Boston,MA,02215 +212324,Lightning Charging Cable,1,14.95,2019-06-30 14:03:00,85 10th St, New York City,NY,10001 +212325,Macbook Pro Laptop,1,1700.0,2019-06-28 13:14:00,511 4th St, San Francisco,CA,94016 +212326,Google Phone,1,600.0,2019-06-10 10:28:00,308 Lake St, San Francisco,CA,94016 +212327,Bose SoundSport Headphones,1,99.99,2019-06-06 20:00:00,713 Walnut St, San Francisco,CA,94016 +212328,AA Batteries (4-pack),1,3.84,2019-06-08 17:39:00,819 North St, San Francisco,CA,94016 +212329,Flatscreen TV,1,300.0,2019-06-02 17:47:00,90 Park St, San Francisco,CA,94016 +212330,20in Monitor,1,109.99,2019-06-28 13:55:00,705 1st St, Atlanta,GA,30301 +212331,Apple Airpods Headphones,1,150.0,2019-06-08 12:07:00,552 5th St, Seattle,WA,98101 +212332,Apple Airpods Headphones,1,150.0,2019-06-29 11:05:00,399 Washington St, Dallas,TX,75001 +212333,AA Batteries (4-pack),1,3.84,2019-06-27 23:29:00,933 Johnson St, Austin,TX,73301 +212334,iPhone,1,700.0,2019-06-06 13:38:00,834 Adams St, Boston,MA,02215 +212334,Lightning Charging Cable,1,14.95,2019-06-06 13:38:00,834 Adams St, Boston,MA,02215 +212334,Apple Airpods Headphones,1,150.0,2019-06-06 13:38:00,834 Adams St, Boston,MA,02215 +212334,Wired Headphones,1,11.99,2019-06-06 13:38:00,834 Adams St, Boston,MA,02215 +212335,34in Ultrawide Monitor,1,379.99,2019-06-16 17:15:00,76 1st St, Dallas,TX,75001 +212336,27in 4K Gaming Monitor,1,389.99,2019-06-05 13:56:00,200 9th St, Atlanta,GA,30301 +212337,AAA Batteries (4-pack),1,2.99,2019-06-06 09:57:00,567 North St, Los Angeles,CA,90001 +212338,Lightning Charging Cable,2,14.95,2019-06-30 12:12:00,711 2nd St, Portland,OR,97035 +212339,USB-C Charging Cable,1,11.95,2019-06-25 22:28:00,801 11th St, Austin,TX,73301 +212340,Wired Headphones,1,11.99,2019-06-08 23:31:00,993 Center St, San Francisco,CA,94016 +212341,34in Ultrawide Monitor,1,379.99,2019-06-14 17:36:00,320 14th St, San Francisco,CA,94016 +212342,Bose SoundSport Headphones,1,99.99,2019-06-12 09:42:00,518 Center St, Boston,MA,02215 +212343,27in 4K Gaming Monitor,1,389.99,2019-06-08 18:27:00,311 Wilson St, Los Angeles,CA,90001 +212344,34in Ultrawide Monitor,1,379.99,2019-06-06 14:42:00,115 Church St, Portland,OR,97035 +212345,AA Batteries (4-pack),1,3.84,2019-06-14 18:01:00,857 Ridge St, Austin,TX,73301 +212346,27in 4K Gaming Monitor,1,389.99,2019-06-17 22:23:00,285 West St, Dallas,TX,75001 +212347,Macbook Pro Laptop,1,1700.0,2019-06-25 01:30:00,395 Madison St, Boston,MA,02215 +212348,AA Batteries (4-pack),1,3.84,2019-06-14 22:50:00,912 Jefferson St, Seattle,WA,98101 +212349,Flatscreen TV,1,300.0,2019-06-30 10:51:00,739 11th St, Atlanta,GA,30301 +212350,iPhone,1,700.0,2019-06-27 20:38:00,951 Cedar St, Dallas,TX,75001 +212351,Flatscreen TV,1,300.0,2019-06-11 10:02:00,242 Sunset St, San Francisco,CA,94016 +212352,Wired Headphones,1,11.99,2019-06-19 00:21:00,284 Pine St, San Francisco,CA,94016 +212353,USB-C Charging Cable,1,11.95,2019-06-10 16:27:00,352 Center St, San Francisco,CA,94016 +212354,USB-C Charging Cable,1,11.95,2019-06-09 11:26:00,547 Elm St, San Francisco,CA,94016 +212355,AAA Batteries (4-pack),3,2.99,2019-06-12 20:02:00,365 Meadow St, Boston,MA,02215 +212356,AA Batteries (4-pack),1,3.84,2019-06-07 20:18:00,885 Jackson St, Portland,OR,97035 +212357,Lightning Charging Cable,1,14.95,2019-06-18 18:17:00,570 Elm St, San Francisco,CA,94016 +212358,ThinkPad Laptop,1,999.99,2019-06-03 19:01:00,629 Wilson St, Boston,MA,02215 +212359,USB-C Charging Cable,1,11.95,2019-06-21 19:31:00,122 Willow St, San Francisco,CA,94016 +212360,Wired Headphones,1,11.99,2019-06-03 17:56:00,375 Chestnut St, San Francisco,CA,94016 +212361,Google Phone,1,600.0,2019-06-22 19:49:00,504 Washington St, Atlanta,GA,30301 +212362,Apple Airpods Headphones,2,150.0,2019-06-14 07:48:00,52 West St, San Francisco,CA,94016 +212363,27in FHD Monitor,2,149.99,2019-06-21 13:14:00,828 Spruce St, San Francisco,CA,94016 +212364,Lightning Charging Cable,2,14.95,2019-06-14 09:04:00,651 Adams St, Los Angeles,CA,90001 +212365,USB-C Charging Cable,1,11.95,2019-06-23 21:06:00,619 Center St, Los Angeles,CA,90001 +212366,USB-C Charging Cable,1,11.95,2019-06-02 09:18:00,984 Meadow St, New York City,NY,10001 +212367,27in FHD Monitor,1,149.99,2019-06-14 14:06:00,27 8th St, Los Angeles,CA,90001 +212368,AAA Batteries (4-pack),1,2.99,2019-06-27 15:26:00,600 7th St, New York City,NY,10001 +212369,Lightning Charging Cable,1,14.95,2019-06-09 19:43:00,360 Maple St, Seattle,WA,98101 +212370,AA Batteries (4-pack),1,3.84,2019-06-20 10:49:00,212 10th St, Boston,MA,02215 +212371,Apple Airpods Headphones,1,150.0,2019-06-21 21:40:00,304 Highland St, Dallas,TX,75001 +212372,Wired Headphones,1,11.99,2019-06-05 18:08:00,906 West St, Austin,TX,73301 +212373,20in Monitor,1,109.99,2019-06-07 10:15:00,969 Walnut St, Boston,MA,02215 +212374,Bose SoundSport Headphones,1,99.99,2019-06-14 12:52:00,344 Maple St, Dallas,TX,75001 +212375,Wired Headphones,1,11.99,2019-06-14 20:14:00,355 6th St, Los Angeles,CA,90001 +212376,27in 4K Gaming Monitor,1,389.99,2019-06-28 23:42:00,822 Adams St, San Francisco,CA,94016 +212377,Bose SoundSport Headphones,1,99.99,2019-06-03 21:49:00,585 Adams St, Dallas,TX,75001 +212378,USB-C Charging Cable,1,11.95,2019-06-06 15:54:00,207 4th St, Portland,OR,97035 +212379,AAA Batteries (4-pack),2,2.99,2019-06-25 15:34:00,400 Forest St, Atlanta,GA,30301 +212380,ThinkPad Laptop,1,999.99,2019-06-15 15:13:00,688 1st St, Portland,OR,97035 +212381,Lightning Charging Cable,1,14.95,2019-06-06 19:02:00,389 2nd St, San Francisco,CA,94016 +212382,USB-C Charging Cable,1,11.95,2019-06-01 22:06:00,754 North St, Los Angeles,CA,90001 +212382,Flatscreen TV,1,300.0,2019-06-01 22:06:00,754 North St, Los Angeles,CA,90001 +212383,Lightning Charging Cable,1,14.95,2019-06-04 14:23:00,685 Lake St, New York City,NY,10001 +212384,USB-C Charging Cable,1,11.95,2019-06-14 12:49:00,859 Madison St, Los Angeles,CA,90001 +212385,USB-C Charging Cable,1,11.95,2019-06-15 19:05:00,156 Center St, Portland,OR,97035 +212386,27in 4K Gaming Monitor,1,389.99,2019-06-19 12:00:00,300 9th St, Seattle,WA,98101 +212387,Lightning Charging Cable,1,14.95,2019-06-07 19:10:00,12 North St, New York City,NY,10001 +212388,AA Batteries (4-pack),1,3.84,2019-06-27 10:05:00,753 Washington St, Dallas,TX,75001 +212389,AA Batteries (4-pack),3,3.84,2019-06-08 23:00:00,331 12th St, Austin,TX,73301 +212390,AAA Batteries (4-pack),1,2.99,2019-06-16 08:55:00,185 Lincoln St, New York City,NY,10001 +212391,Lightning Charging Cable,1,14.95,2019-06-17 14:54:00,595 Highland St, San Francisco,CA,94016 +212392,AA Batteries (4-pack),1,3.84,2019-06-09 15:24:00,596 13th St, Seattle,WA,98101 +212393,AAA Batteries (4-pack),1,2.99,2019-06-04 17:28:00,377 Cedar St, New York City,NY,10001 +212394,Wired Headphones,3,11.99,2019-06-08 23:00:00,823 Ridge St, Atlanta,GA,30301 +212395,Bose SoundSport Headphones,1,99.99,2019-06-12 12:20:00,900 Pine St, Los Angeles,CA,90001 +212396,Bose SoundSport Headphones,1,99.99,2019-06-28 21:44:00,941 1st St, Los Angeles,CA,90001 +212397,Wired Headphones,1,11.99,2019-06-05 14:20:00,4 Wilson St, Boston,MA,02215 +212398,AAA Batteries (4-pack),2,2.99,2019-06-30 21:24:00,287 Hill St, New York City,NY,10001 +212399,AA Batteries (4-pack),1,3.84,2019-06-11 08:57:00,407 14th St, Boston,MA,02215 +212400,27in FHD Monitor,1,149.99,2019-06-24 18:56:00,739 Church St, New York City,NY,10001 +212401,AA Batteries (4-pack),2,3.84,2019-06-10 16:06:00,624 Wilson St, New York City,NY,10001 +212402,ThinkPad Laptop,1,999.99,2019-06-18 08:11:00,267 River St, Boston,MA,02215 +212403,Bose SoundSport Headphones,1,99.99,2019-06-30 13:56:00,222 Forest St, Portland,OR,97035 +212403,Apple Airpods Headphones,1,150.0,2019-06-30 13:56:00,222 Forest St, Portland,OR,97035 +212404,Lightning Charging Cable,1,14.95,2019-06-15 00:22:00,502 Center St, Seattle,WA,98101 +212405,Bose SoundSport Headphones,1,99.99,2019-06-06 10:41:00,338 Forest St, San Francisco,CA,94016 +212406,Apple Airpods Headphones,1,150.0,2019-06-12 12:08:00,69 Willow St, New York City,NY,10001 +212407,20in Monitor,1,109.99,2019-06-28 09:58:00,785 Chestnut St, San Francisco,CA,94016 +212408,USB-C Charging Cable,1,11.95,2019-06-09 21:05:00,601 River St, Boston,MA,02215 +212409,Bose SoundSport Headphones,1,99.99,2019-06-19 15:10:00,472 Adams St, New York City,NY,10001 +212410,Lightning Charging Cable,1,14.95,2019-06-16 12:22:00,455 9th St, Los Angeles,CA,90001 +212411,Apple Airpods Headphones,1,150.0,2019-06-09 19:43:00,287 Wilson St, Portland,OR,97035 +212412,Google Phone,1,600.0,2019-06-08 17:07:00,718 Forest St, San Francisco,CA,94016 +212413,27in FHD Monitor,1,149.99,2019-06-15 11:48:00,481 Hill St, San Francisco,CA,94016 +212414,Lightning Charging Cable,1,14.95,2019-06-01 19:48:00,52 Highland St, Boston,MA,02215 +212415,AA Batteries (4-pack),2,3.84,2019-06-19 08:16:00,971 Hickory St, Boston,MA,02215 +212416,Macbook Pro Laptop,1,1700.0,2019-06-19 09:33:00,159 West St, Los Angeles,CA,90001 +212417,USB-C Charging Cable,1,11.95,2019-06-13 15:45:00,349 Adams St, Atlanta,GA,30301 +212418,Macbook Pro Laptop,1,1700.0,2019-06-20 15:49:00,159 South St, Los Angeles,CA,90001 +212419,ThinkPad Laptop,1,999.99,2019-06-19 16:37:00,677 West St, San Francisco,CA,94016 +212420,Lightning Charging Cable,2,14.95,2019-06-18 08:27:00,788 Walnut St, San Francisco,CA,94016 +212421,34in Ultrawide Monitor,1,379.99,2019-06-07 14:09:00,160 Adams St, Dallas,TX,75001 +212422,Wired Headphones,1,11.99,2019-06-02 11:11:00,620 9th St, Austin,TX,73301 +212423,LG Washing Machine,1,600.0,2019-06-25 18:22:00,343 Dogwood St, Boston,MA,02215 +212424,AAA Batteries (4-pack),2,2.99,2019-06-26 16:13:00,938 Hickory St, Boston,MA,02215 +212425,Bose SoundSport Headphones,1,99.99,2019-06-16 20:30:00,988 7th St, New York City,NY,10001 +212426,Wired Headphones,1,11.99,2019-06-25 08:51:00,727 Cedar St, Portland,OR,97035 +212427,Wired Headphones,1,11.99,2019-06-20 23:02:00,922 Willow St, San Francisco,CA,94016 +212428,27in 4K Gaming Monitor,1,389.99,2019-06-20 22:03:00,532 Lake St, Portland,OR,97035 +212429,AA Batteries (4-pack),1,3.84,2019-06-06 15:50:00,725 7th St, San Francisco,CA,94016 +212430,Apple Airpods Headphones,1,150.0,2019-06-28 16:29:00,594 Cedar St, San Francisco,CA,94016 +212431,27in FHD Monitor,1,149.99,2019-06-14 23:11:00,66 Wilson St, Dallas,TX,75001 +212432,Apple Airpods Headphones,1,150.0,2019-06-23 19:15:00,761 Maple St, San Francisco,CA,94016 +212433,Wired Headphones,1,11.99,2019-06-19 15:59:00,718 Adams St, Boston,MA,02215 +212434,USB-C Charging Cable,1,11.95,2019-06-28 09:43:00,156 Lakeview St, Los Angeles,CA,90001 +212435,USB-C Charging Cable,1,11.95,2019-06-28 11:21:00,668 Maple St, Boston,MA,02215 +212436,iPhone,1,700.0,2019-06-12 00:41:00,924 11th St, Los Angeles,CA,90001 +212437,AAA Batteries (4-pack),2,2.99,2019-06-14 12:28:00,59 Lincoln St, Boston,MA,02215 +212438,ThinkPad Laptop,1,999.99,2019-06-05 22:48:00,52 Main St, Los Angeles,CA,90001 +212439,AA Batteries (4-pack),1,3.84,2019-06-19 08:47:00,988 West St, Dallas,TX,75001 +212440,Vareebadd Phone,1,400.0,2019-06-23 13:33:00,585 Center St, Austin,TX,73301 +212441,USB-C Charging Cable,1,11.95,2019-06-16 00:39:00,298 Hickory St, San Francisco,CA,94016 +212442,USB-C Charging Cable,1,11.95,2019-06-24 12:48:00,117 14th St, Portland,OR,97035 +212443,Wired Headphones,1,11.99,2019-06-10 10:53:00,567 Main St, San Francisco,CA,94016 +212444,AAA Batteries (4-pack),1,2.99,2019-06-17 01:44:00,230 Jackson St, San Francisco,CA,94016 +212445,USB-C Charging Cable,1,11.95,2019-06-18 23:00:00,474 Jefferson St, Los Angeles,CA,90001 +212446,34in Ultrawide Monitor,1,379.99,2019-06-27 12:16:00,477 13th St, Boston,MA,02215 +212447,Lightning Charging Cable,1,14.95,2019-06-13 20:22:00,857 Lincoln St, Los Angeles,CA,90001 +212448,Bose SoundSport Headphones,1,99.99,2019-06-04 17:25:00,349 Cedar St, New York City,NY,10001 +212449,AAA Batteries (4-pack),1,2.99,2019-06-24 12:17:00,915 Johnson St, Boston,MA,02215 +212450,Apple Airpods Headphones,1,150.0,2019-06-09 16:53:00,418 9th St, New York City,NY,10001 +212451,Flatscreen TV,1,300.0,2019-06-24 17:36:00,121 Lincoln St, Boston,MA,02215 +212452,Apple Airpods Headphones,1,150.0,2019-06-20 22:16:00,239 Hill St, San Francisco,CA,94016 +212453,AA Batteries (4-pack),1,3.84,2019-06-24 14:37:00,504 8th St, Boston,MA,02215 +212454,USB-C Charging Cable,2,11.95,2019-06-12 10:48:00,728 North St, San Francisco,CA,94016 +212455,Wired Headphones,1,11.99,2019-06-02 13:13:00,577 Jackson St, Boston,MA,02215 +212456,USB-C Charging Cable,1,11.95,2019-06-11 12:43:00,891 12th St, Atlanta,GA,30301 +212456,Apple Airpods Headphones,1,150.0,2019-06-11 12:43:00,891 12th St, Atlanta,GA,30301 +212457,AAA Batteries (4-pack),1,2.99,2019-06-10 11:26:00,631 Sunset St, Dallas,TX,75001 +212458,USB-C Charging Cable,2,11.95,2019-06-20 22:00:00,656 South St, San Francisco,CA,94016 +212459,AA Batteries (4-pack),2,3.84,2019-06-14 07:11:00,734 Lake St, New York City,NY,10001 +212460,AA Batteries (4-pack),1,3.84,2019-06-03 13:01:00,966 8th St, New York City,NY,10001 +212461,USB-C Charging Cable,1,11.95,2019-06-27 22:30:00,413 Willow St, Los Angeles,CA,90001 +212462,Wired Headphones,1,11.99,2019-06-16 12:04:00,237 Lakeview St, San Francisco,CA,94016 +212463,Flatscreen TV,1,300.0,2019-06-03 14:01:00,359 Walnut St, San Francisco,CA,94016 +212464,AA Batteries (4-pack),1,3.84,2019-06-07 18:45:00,594 Elm St, New York City,NY,10001 +212465,Wired Headphones,1,11.99,2019-06-19 14:16:00,82 Jackson St, San Francisco,CA,94016 +212466,Wired Headphones,1,11.99,2019-06-13 15:08:00,106 7th St, Portland,OR,97035 +212467,Apple Airpods Headphones,1,150.0,2019-06-28 10:57:00,568 Center St, San Francisco,CA,94016 +212468,AA Batteries (4-pack),1,3.84,2019-06-21 08:36:00,996 Highland St, Dallas,TX,75001 +212469,AAA Batteries (4-pack),1,2.99,2019-06-21 21:55:00,944 Main St, Seattle,WA,98101 +212470,34in Ultrawide Monitor,1,379.99,2019-06-28 07:47:00,609 7th St, New York City,NY,10001 +212471,Lightning Charging Cable,1,14.95,2019-06-12 18:41:00,642 Walnut St, Austin,TX,73301 +212472,Bose SoundSport Headphones,1,99.99,2019-06-15 13:03:00,832 Main St, San Francisco,CA,94016 +212473,Wired Headphones,1,11.99,2019-06-16 21:49:00,530 Hill St, Atlanta,GA,30301 +212474,USB-C Charging Cable,1,11.95,2019-06-15 17:48:00,75 Spruce St, New York City,NY,10001 +212475,Apple Airpods Headphones,1,150.0,2019-06-21 18:46:00,285 Madison St, Dallas,TX,75001 +212476,Vareebadd Phone,1,400.0,2019-06-07 15:25:00,214 Dogwood St, Portland,OR,97035 +212476,USB-C Charging Cable,1,11.95,2019-06-07 15:25:00,214 Dogwood St, Portland,OR,97035 +212477,AA Batteries (4-pack),1,3.84,2019-06-21 15:58:00,263 River St, San Francisco,CA,94016 +212478,AA Batteries (4-pack),1,3.84,2019-06-15 12:11:00,463 Hill St, New York City,NY,10001 +212479,iPhone,1,700.0,2019-06-25 18:55:00,436 6th St, San Francisco,CA,94016 +212480,USB-C Charging Cable,2,11.95,2019-06-04 17:26:00,957 Spruce St, Boston,MA,02215 +212481,AAA Batteries (4-pack),1,2.99,2019-06-27 23:09:00,185 Jefferson St, Seattle,WA,98101 +212482,Apple Airpods Headphones,1,150.0,2019-06-13 20:11:00,538 5th St, Los Angeles,CA,90001 +212483,AA Batteries (4-pack),1,3.84,2019-06-15 19:35:00,100 Forest St, Portland,OR,97035 +212484,iPhone,1,700.0,2019-06-14 16:02:00,812 14th St, Los Angeles,CA,90001 +212485,Macbook Pro Laptop,1,1700.0,2019-06-25 18:35:00,323 2nd St, Los Angeles,CA,90001 +212486,Wired Headphones,1,11.99,2019-06-23 21:47:00,424 12th St, Atlanta,GA,30301 +212487,Bose SoundSport Headphones,1,99.99,2019-06-17 12:57:00,543 Hickory St, San Francisco,CA,94016 +212488,34in Ultrawide Monitor,1,379.99,2019-06-09 10:41:00,952 Pine St, Portland,OR,97035 +212489,Bose SoundSport Headphones,1,99.99,2019-06-22 19:49:00,866 8th St, New York City,NY,10001 +212490,AA Batteries (4-pack),1,3.84,2019-06-09 22:30:00,458 8th St, Los Angeles,CA,90001 +212491,Bose SoundSport Headphones,1,99.99,2019-06-27 18:42:00,340 11th St, San Francisco,CA,94016 +212492,AAA Batteries (4-pack),2,2.99,2019-06-13 21:16:00,655 Center St, San Francisco,CA,94016 +212493,Wired Headphones,1,11.99,2019-06-28 08:01:00,347 North St, Atlanta,GA,30301 +212494,Bose SoundSport Headphones,1,99.99,2019-06-02 23:03:00,848 10th St, Boston,MA,02215 +212495,USB-C Charging Cable,1,11.95,2019-06-28 10:39:00,822 Dogwood St, Portland,ME,04101 +212496,Lightning Charging Cable,1,14.95,2019-06-18 15:40:00,467 Pine St, Los Angeles,CA,90001 +212497,AAA Batteries (4-pack),1,2.99,2019-06-09 16:50:00,852 Cherry St, Dallas,TX,75001 +212498,34in Ultrawide Monitor,1,379.99,2019-06-04 17:44:00,338 Cedar St, Boston,MA,02215 +212499,AA Batteries (4-pack),2,3.84,2019-06-12 21:10:00,532 Park St, Austin,TX,73301 +212500,Lightning Charging Cable,1,14.95,2019-06-15 14:05:00,470 West St, San Francisco,CA,94016 +212501,34in Ultrawide Monitor,1,379.99,2019-06-11 18:20:00,269 Lakeview St, San Francisco,CA,94016 +212502,Wired Headphones,1,11.99,2019-06-15 18:35:00,463 Church St, Atlanta,GA,30301 +212502,Google Phone,1,600.0,2019-06-15 18:35:00,463 Church St, Atlanta,GA,30301 +212503,Flatscreen TV,1,300.0,2019-06-25 13:23:00,239 Lakeview St, Boston,MA,02215 +212504,Macbook Pro Laptop,1,1700.0,2019-06-03 16:26:00,769 Adams St, Boston,MA,02215 +212505,iPhone,1,700.0,2019-06-26 08:37:00,786 Madison St, San Francisco,CA,94016 +212506,iPhone,1,700.0,2019-06-30 19:28:00,54 Pine St, Boston,MA,02215 +212507,ThinkPad Laptop,1,999.99,2019-06-21 22:08:00,690 Cedar St, Austin,TX,73301 +212508,Flatscreen TV,1,300.0,2019-06-25 16:47:00,893 Cherry St, Los Angeles,CA,90001 +212509,34in Ultrawide Monitor,1,379.99,2019-06-29 14:00:00,826 Lakeview St, Boston,MA,02215 +212510,iPhone,1,700.0,2019-06-21 17:14:00,794 Lake St, Atlanta,GA,30301 +212511,AA Batteries (4-pack),1,3.84,2019-06-16 23:29:00,308 11th St, Los Angeles,CA,90001 +212512,Google Phone,1,600.0,2019-06-10 20:47:00,568 Park St, Atlanta,GA,30301 +212512,Wired Headphones,1,11.99,2019-06-10 20:47:00,568 Park St, Atlanta,GA,30301 +212513,Apple Airpods Headphones,1,150.0,2019-06-05 14:38:00,951 Lake St, Atlanta,GA,30301 +212514,AAA Batteries (4-pack),1,2.99,2019-06-23 00:42:00,691 Cedar St, San Francisco,CA,94016 +212515,27in 4K Gaming Monitor,1,389.99,2019-06-23 17:47:00,729 Forest St, Boston,MA,02215 +212515,AAA Batteries (4-pack),1,2.99,2019-06-23 17:47:00,729 Forest St, Boston,MA,02215 +212516,iPhone,1,700.0,2019-06-29 11:07:00,976 West St, Los Angeles,CA,90001 +212517,Wired Headphones,1,11.99,2019-06-29 07:58:00,702 Washington St, Boston,MA,02215 +212518,Lightning Charging Cable,1,14.95,2019-06-09 22:30:00,282 Meadow St, Portland,OR,97035 +212519,USB-C Charging Cable,1,11.95,2019-06-17 10:42:00,63 Ridge St, San Francisco,CA,94016 +212520,Lightning Charging Cable,1,14.95,2019-06-10 07:00:00,959 Meadow St, San Francisco,CA,94016 +212521,27in FHD Monitor,1,149.99,2019-06-29 01:11:00,384 Ridge St, Austin,TX,73301 +212522,Lightning Charging Cable,1,14.95,2019-06-18 22:26:00,190 Center St, Seattle,WA,98101 +212523,Lightning Charging Cable,1,14.95,2019-06-05 19:42:00,934 6th St, San Francisco,CA,94016 +212524,Lightning Charging Cable,1,14.95,2019-06-16 19:26:00,586 14th St, San Francisco,CA,94016 +212525,Apple Airpods Headphones,1,150.0,2019-06-08 14:53:00,874 Walnut St, New York City,NY,10001 +212526,Apple Airpods Headphones,1,150.0,2019-06-05 21:05:00,925 Adams St, Los Angeles,CA,90001 +212527,34in Ultrawide Monitor,1,379.99,2019-06-23 19:08:00,989 Ridge St, Los Angeles,CA,90001 +212528,Wired Headphones,2,11.99,2019-06-01 20:32:00,569 Hickory St, Austin,TX,73301 +212529,Bose SoundSport Headphones,1,99.99,2019-06-18 00:07:00,94 Park St, New York City,NY,10001 +212530,Google Phone,1,600.0,2019-06-05 12:50:00,780 Park St, Atlanta,GA,30301 +212531,Wired Headphones,1,11.99,2019-06-27 11:52:00,810 7th St, Los Angeles,CA,90001 +212532,Apple Airpods Headphones,1,150.0,2019-06-01 16:45:00,676 Center St, New York City,NY,10001 +212533,Wired Headphones,1,11.99,2019-06-25 15:10:00,198 Hill St, Los Angeles,CA,90001 +212534,AA Batteries (4-pack),2,3.84,2019-06-02 12:06:00,503 South St, Seattle,WA,98101 +212535,Lightning Charging Cable,1,14.95,2019-06-22 16:09:00,939 13th St, Los Angeles,CA,90001 +212536,USB-C Charging Cable,1,11.95,2019-06-22 16:39:00,912 Wilson St, Portland,OR,97035 +212537,AAA Batteries (4-pack),1,2.99,2019-06-19 17:07:00,688 13th St, New York City,NY,10001 +212538,AAA Batteries (4-pack),4,2.99,2019-06-13 08:54:00,159 Chestnut St, Portland,OR,97035 +212539,Wired Headphones,1,11.99,2019-06-14 18:25:00,649 14th St, San Francisco,CA,94016 +212540,Macbook Pro Laptop,1,1700.0,2019-06-13 15:03:00,435 Center St, Los Angeles,CA,90001 +212541,LG Washing Machine,1,600.0,2019-06-12 10:38:00,51 7th St, Atlanta,GA,30301 +212542,Bose SoundSport Headphones,1,99.99,2019-06-14 17:07:00,808 Washington St, Portland,OR,97035 +212543,Google Phone,1,600.0,2019-06-05 11:31:00,566 Hill St, Seattle,WA,98101 +212544,iPhone,1,700.0,2019-06-19 19:53:00,983 Johnson St, San Francisco,CA,94016 +212544,Wired Headphones,2,11.99,2019-06-19 19:53:00,983 Johnson St, San Francisco,CA,94016 +212545,27in 4K Gaming Monitor,1,389.99,2019-06-25 18:59:00,83 Meadow St, San Francisco,CA,94016 +212546,Apple Airpods Headphones,1,150.0,2019-06-04 00:42:00,126 6th St, Portland,ME,04101 +212546,Bose SoundSport Headphones,1,99.99,2019-06-04 00:42:00,126 6th St, Portland,ME,04101 +212547,AAA Batteries (4-pack),1,2.99,2019-06-20 00:11:00,880 Center St, San Francisco,CA,94016 +212548,Wired Headphones,1,11.99,2019-06-04 23:50:00,657 Adams St, Dallas,TX,75001 +212549,Lightning Charging Cable,2,14.95,2019-06-22 15:00:00,249 Hickory St, San Francisco,CA,94016 +212550,20in Monitor,1,109.99,2019-06-21 21:42:00,606 Madison St, Boston,MA,02215 +212551,ThinkPad Laptop,1,999.99,2019-06-30 14:57:00,586 Highland St, New York City,NY,10001 +212552,AA Batteries (4-pack),1,3.84,2019-06-16 23:10:00,323 Lake St, San Francisco,CA,94016 +212553,Apple Airpods Headphones,1,150.0,2019-06-11 23:05:00,286 Jefferson St, San Francisco,CA,94016 +212554,iPhone,1,700.0,2019-06-07 19:17:00,347 Jefferson St, San Francisco,CA,94016 +212555,Apple Airpods Headphones,1,150.0,2019-06-27 10:51:00,967 12th St, Austin,TX,73301 +212556,USB-C Charging Cable,1,11.95,2019-06-09 14:32:00,42 Cherry St, Boston,MA,02215 +212557,AA Batteries (4-pack),1,3.84,2019-06-07 09:01:00,370 6th St, Portland,OR,97035 +212558,AAA Batteries (4-pack),1,2.99,2019-06-27 10:35:00,943 Dogwood St, San Francisco,CA,94016 +212559,AAA Batteries (4-pack),1,2.99,2019-06-28 23:09:00,658 Hickory St, Atlanta,GA,30301 +212560,27in FHD Monitor,1,149.99,2019-06-24 09:56:00,882 Johnson St, New York City,NY,10001 +212561,USB-C Charging Cable,1,11.95,2019-06-26 01:08:00,379 Madison St, New York City,NY,10001 +212562,ThinkPad Laptop,1,999.99,2019-06-08 13:30:00,756 Highland St, Seattle,WA,98101 +212563,Flatscreen TV,1,300.0,2019-06-22 18:21:00,55 Pine St, San Francisco,CA,94016 +212564,Lightning Charging Cable,1,14.95,2019-06-06 19:00:00,201 Jackson St, San Francisco,CA,94016 +212565,AAA Batteries (4-pack),1,2.99,2019-06-15 09:26:00,143 11th St, San Francisco,CA,94016 +212566,Lightning Charging Cable,1,14.95,2019-06-16 14:49:00,456 North St, Seattle,WA,98101 +212567,AA Batteries (4-pack),1,3.84,2019-06-04 22:38:00,565 Maple St, Boston,MA,02215 +212568,iPhone,1,700.0,2019-06-24 15:53:00,405 Ridge St, San Francisco,CA,94016 +212569,34in Ultrawide Monitor,1,379.99,2019-06-29 17:56:00,173 10th St, Seattle,WA,98101 +212570,Google Phone,1,600.0,2019-06-08 21:44:00,964 River St, Portland,OR,97035 +212571,AA Batteries (4-pack),2,3.84,2019-06-11 16:26:00,601 Forest St, Atlanta,GA,30301 +212572,34in Ultrawide Monitor,1,379.99,2019-06-09 23:05:00,605 2nd St, San Francisco,CA,94016 +212573,Flatscreen TV,1,300.0,2019-06-07 10:51:00,776 7th St, Seattle,WA,98101 +212574,USB-C Charging Cable,1,11.95,2019-06-07 10:12:00,940 Jefferson St, Dallas,TX,75001 +212575,27in FHD Monitor,1,149.99,2019-06-06 16:29:00,747 Cedar St, New York City,NY,10001 +212576,Google Phone,1,600.0,2019-06-03 16:37:00,38 Hickory St, Seattle,WA,98101 +212576,Wired Headphones,1,11.99,2019-06-03 16:37:00,38 Hickory St, Seattle,WA,98101 +212577,Bose SoundSport Headphones,1,99.99,2019-06-07 11:38:00,3 Park St, Boston,MA,02215 +212578,27in FHD Monitor,1,149.99,2019-06-13 19:07:00,718 2nd St, Los Angeles,CA,90001 +212579,Lightning Charging Cable,1,14.95,2019-06-26 20:29:00,553 Spruce St, San Francisco,CA,94016 +212580,AAA Batteries (4-pack),1,2.99,2019-06-15 13:46:00,864 Spruce St, New York City,NY,10001 +212581,Wired Headphones,1,11.99,2019-06-06 20:00:00,456 Chestnut St, New York City,NY,10001 +212582,AA Batteries (4-pack),1,3.84,2019-06-06 23:07:00,550 Walnut St, New York City,NY,10001 +212583,Apple Airpods Headphones,1,150.0,2019-06-14 18:57:00,260 Jackson St, New York City,NY,10001 +212584,Lightning Charging Cable,1,14.95,2019-06-28 12:35:00,216 Cherry St, Dallas,TX,75001 +212585,ThinkPad Laptop,1,999.99,2019-06-06 20:29:00,194 West St, Seattle,WA,98101 +212586,AA Batteries (4-pack),1,3.84,2019-06-23 19:54:00,470 Sunset St, Boston,MA,02215 +212587,Bose SoundSport Headphones,1,99.99,2019-06-26 11:55:00,927 Lake St, San Francisco,CA,94016 +212588,USB-C Charging Cable,1,11.95,2019-06-03 16:47:00,729 Church St, San Francisco,CA,94016 +212589,Apple Airpods Headphones,1,150.0,2019-06-23 12:11:00,577 6th St, Dallas,TX,75001 +212590,27in 4K Gaming Monitor,1,389.99,2019-06-06 16:52:00,168 Meadow St, Dallas,TX,75001 +212591,27in FHD Monitor,1,149.99,2019-06-01 22:29:00,748 Hill St, Los Angeles,CA,90001 +212592,27in FHD Monitor,1,149.99,2019-06-10 22:02:00,12 Cedar St, San Francisco,CA,94016 +212593,Wired Headphones,1,11.99,2019-06-04 19:39:00,541 Hill St, Atlanta,GA,30301 +212594,USB-C Charging Cable,1,11.95,2019-06-30 09:22:00,999 Hill St, Los Angeles,CA,90001 +212595,Macbook Pro Laptop,1,1700.0,2019-06-01 19:11:00,479 Pine St, Atlanta,GA,30301 +212596,27in FHD Monitor,1,149.99,2019-06-13 20:07:00,159 Lincoln St, San Francisco,CA,94016 +212597,Wired Headphones,1,11.99,2019-06-18 08:13:00,997 Chestnut St, Los Angeles,CA,90001 +212598,Flatscreen TV,1,300.0,2019-06-15 22:36:00,880 Church St, Los Angeles,CA,90001 +212599,USB-C Charging Cable,1,11.95,2019-06-21 10:31:00,830 2nd St, Atlanta,GA,30301 +212600,Lightning Charging Cable,1,14.95,2019-06-16 18:38:00,720 Willow St, New York City,NY,10001 +212601,Apple Airpods Headphones,1,150.0,2019-06-03 21:44:00,679 Lincoln St, Los Angeles,CA,90001 +212602,AA Batteries (4-pack),1,3.84,2019-06-29 14:30:00,303 Center St, Los Angeles,CA,90001 +212603,27in 4K Gaming Monitor,1,389.99,2019-06-09 04:12:00,24 Sunset St, Boston,MA,02215 +212604,27in FHD Monitor,1,149.99,2019-07-01 00:50:00,449 Church St, San Francisco,CA,94016 +212605,AA Batteries (4-pack),1,3.84,2019-06-20 02:12:00,634 11th St, Boston,MA,02215 +212606,ThinkPad Laptop,1,999.99,2019-06-03 19:19:00,134 Meadow St, San Francisco,CA,94016 +212607,USB-C Charging Cable,1,11.95,2019-06-16 20:12:00,763 Sunset St, New York City,NY,10001 +212608,Wired Headphones,2,11.99,2019-06-08 16:24:00,137 Cedar St, Seattle,WA,98101 +212609,AA Batteries (4-pack),1,3.84,2019-06-08 08:03:00,858 11th St, Seattle,WA,98101 +212610,Apple Airpods Headphones,1,150.0,2019-06-16 09:01:00,306 Highland St, New York City,NY,10001 +212611,Wired Headphones,1,11.99,2019-06-19 17:38:00,435 Washington St, New York City,NY,10001 +212612,ThinkPad Laptop,1,999.99,2019-06-11 08:19:00,965 Jefferson St, Seattle,WA,98101 +212613,Macbook Pro Laptop,1,1700.0,2019-06-27 15:51:00,116 12th St, New York City,NY,10001 +212614,USB-C Charging Cable,1,11.95,2019-06-04 17:20:00,921 Highland St, San Francisco,CA,94016 +212615,AA Batteries (4-pack),2,3.84,2019-06-14 09:39:00,264 14th St, New York City,NY,10001 +212616,AA Batteries (4-pack),1,3.84,2019-06-10 13:50:00,850 11th St, San Francisco,CA,94016 +212616,USB-C Charging Cable,1,11.95,2019-06-10 13:50:00,850 11th St, San Francisco,CA,94016 +212617,iPhone,1,700.0,2019-06-14 21:23:00,918 Dogwood St, Seattle,WA,98101 +212617,Wired Headphones,1,11.99,2019-06-14 21:23:00,918 Dogwood St, Seattle,WA,98101 +212618,AAA Batteries (4-pack),1,2.99,2019-06-30 10:09:00,279 Walnut St, San Francisco,CA,94016 +212619,Apple Airpods Headphones,1,150.0,2019-06-07 21:14:00,734 Park St, Atlanta,GA,30301 +212620,Lightning Charging Cable,1,14.95,2019-06-20 08:58:00,855 Forest St, Los Angeles,CA,90001 +212621,USB-C Charging Cable,1,11.95,2019-06-24 17:27:00,252 Lake St, Seattle,WA,98101 +212622,AAA Batteries (4-pack),1,2.99,2019-06-18 21:19:00,545 Lincoln St, Los Angeles,CA,90001 +212623,AA Batteries (4-pack),2,3.84,2019-06-18 14:32:00,350 Church St, Austin,TX,73301 +212624,iPhone,1,700.0,2019-06-30 10:47:00,109 4th St, New York City,NY,10001 +212624,Lightning Charging Cable,1,14.95,2019-06-30 10:47:00,109 4th St, New York City,NY,10001 +212625,Wired Headphones,3,11.99,2019-06-07 12:30:00,889 6th St, San Francisco,CA,94016 +212626,Macbook Pro Laptop,1,1700.0,2019-06-02 01:06:00,197 Sunset St, New York City,NY,10001 +212627,Lightning Charging Cable,1,14.95,2019-06-17 15:43:00,118 Spruce St, San Francisco,CA,94016 +212628,Apple Airpods Headphones,1,150.0,2019-06-08 13:45:00,857 7th St, Atlanta,GA,30301 +212629,Flatscreen TV,1,300.0,2019-06-17 09:43:00,617 8th St, Los Angeles,CA,90001 +212630,Wired Headphones,1,11.99,2019-06-07 10:17:00,829 Walnut St, Boston,MA,02215 +212631,Macbook Pro Laptop,1,1700.0,2019-06-03 16:19:00,523 Maple St, San Francisco,CA,94016 +212632,Lightning Charging Cable,1,14.95,2019-06-18 16:56:00,87 5th St, Los Angeles,CA,90001 +212633,USB-C Charging Cable,1,11.95,2019-06-11 12:58:00,704 8th St, Austin,TX,73301 +212634,Wired Headphones,1,11.99,2019-06-04 16:29:00,407 Hill St, Austin,TX,73301 +212635,AAA Batteries (4-pack),1,2.99,2019-06-08 13:31:00,207 Sunset St, Los Angeles,CA,90001 +212636,34in Ultrawide Monitor,1,379.99,2019-06-08 10:48:00,563 Park St, Seattle,WA,98101 +212637,USB-C Charging Cable,1,11.95,2019-06-02 11:29:00,434 South St, San Francisco,CA,94016 +212638,34in Ultrawide Monitor,1,379.99,2019-06-14 22:40:00,289 Park St, New York City,NY,10001 +212639,iPhone,1,700.0,2019-06-17 23:40:00,163 2nd St, San Francisco,CA,94016 +212640,USB-C Charging Cable,1,11.95,2019-06-03 10:58:00,415 11th St, Austin,TX,73301 +212641,Flatscreen TV,1,300.0,2019-06-03 05:12:00,41 13th St, San Francisco,CA,94016 +212642,Bose SoundSport Headphones,1,99.99,2019-06-20 11:45:00,357 Center St, San Francisco,CA,94016 +212643,USB-C Charging Cable,1,11.95,2019-06-30 03:07:00,767 Jackson St, Dallas,TX,75001 +212644,Wired Headphones,1,11.99,2019-06-21 16:26:00,493 Lincoln St, New York City,NY,10001 +212644,USB-C Charging Cable,1,11.95,2019-06-21 16:26:00,493 Lincoln St, New York City,NY,10001 +212645,USB-C Charging Cable,1,11.95,2019-06-24 18:03:00,114 5th St, Boston,MA,02215 +212646,Wired Headphones,1,11.99,2019-06-13 06:38:00,350 Hickory St, San Francisco,CA,94016 +212647,Wired Headphones,1,11.99,2019-06-30 21:37:00,443 Lakeview St, Los Angeles,CA,90001 +212648,Wired Headphones,1,11.99,2019-06-23 09:44:00,100 8th St, Austin,TX,73301 +212649,AA Batteries (4-pack),4,3.84,2019-06-14 15:58:00,589 Ridge St, Atlanta,GA,30301 +212650,Apple Airpods Headphones,1,150.0,2019-06-06 18:09:00,97 Walnut St, Atlanta,GA,30301 +212651,AAA Batteries (4-pack),2,2.99,2019-06-12 10:36:00,851 1st St, Dallas,TX,75001 +212652,27in 4K Gaming Monitor,1,389.99,2019-06-19 06:37:00,413 Forest St, New York City,NY,10001 +212653,USB-C Charging Cable,1,11.95,2019-06-03 16:40:00,17 11th St, Austin,TX,73301 +212654,34in Ultrawide Monitor,1,379.99,2019-06-19 09:12:00,286 North St, New York City,NY,10001 +212655,Apple Airpods Headphones,1,150.0,2019-06-02 17:52:00,62 12th St, New York City,NY,10001 +212656,iPhone,1,700.0,2019-06-02 15:14:00,691 Forest St, Los Angeles,CA,90001 +212657,ThinkPad Laptop,1,999.99,2019-06-28 21:29:00,670 Maple St, San Francisco,CA,94016 +212658,AA Batteries (4-pack),1,3.84,2019-06-11 01:50:00,820 West St, Dallas,TX,75001 +212659,34in Ultrawide Monitor,1,379.99,2019-06-15 22:25:00,78 13th St, Seattle,WA,98101 +212660,Flatscreen TV,1,300.0,2019-06-26 13:52:00,590 Lincoln St, San Francisco,CA,94016 +212661,AA Batteries (4-pack),2,3.84,2019-06-08 11:18:00,733 Meadow St, Atlanta,GA,30301 +212662,Bose SoundSport Headphones,1,99.99,2019-06-30 11:05:00,341 14th St, San Francisco,CA,94016 +212663,ThinkPad Laptop,1,999.99,2019-06-10 11:31:00,734 11th St, Dallas,TX,75001 +212664,Bose SoundSport Headphones,1,99.99,2019-06-22 01:26:00,332 River St, New York City,NY,10001 +212665,iPhone,1,700.0,2019-06-16 20:08:00,120 Maple St, Los Angeles,CA,90001 +212666,ThinkPad Laptop,1,999.99,2019-06-11 11:28:00,700 Cherry St, Boston,MA,02215 +212667,USB-C Charging Cable,1,11.95,2019-06-13 22:30:00,580 Center St, San Francisco,CA,94016 +212668,Macbook Pro Laptop,1,1700.0,2019-06-03 13:00:00,873 Hickory St, Portland,OR,97035 +212669,AA Batteries (4-pack),1,3.84,2019-06-19 17:38:00,798 Maple St, Boston,MA,02215 +212670,Google Phone,1,600.0,2019-06-01 17:41:00,130 Wilson St, Portland,OR,97035 +212671,Apple Airpods Headphones,1,150.0,2019-06-26 13:12:00,456 Chestnut St, Portland,OR,97035 +212672,Lightning Charging Cable,1,14.95,2019-06-02 22:29:00,781 Church St, Boston,MA,02215 +212673,Apple Airpods Headphones,1,150.0,2019-06-30 18:33:00,186 West St, San Francisco,CA,94016 +212674,27in 4K Gaming Monitor,1,389.99,2019-06-14 07:50:00,415 6th St, Seattle,WA,98101 +212675,AAA Batteries (4-pack),1,2.99,2019-06-04 00:23:00,919 Maple St, Los Angeles,CA,90001 +212676,iPhone,1,700.0,2019-06-19 21:38:00,604 Wilson St, Los Angeles,CA,90001 +212677,USB-C Charging Cable,2,11.95,2019-06-29 18:20:00,554 Hickory St, Boston,MA,02215 +212678,Lightning Charging Cable,1,14.95,2019-06-09 19:31:00,16 Jefferson St, Los Angeles,CA,90001 +212679,Wired Headphones,1,11.99,2019-06-14 10:31:00,69 Pine St, Los Angeles,CA,90001 +212680,Lightning Charging Cable,1,14.95,2019-06-05 14:03:00,271 Lake St, Boston,MA,02215 +212681,AAA Batteries (4-pack),3,2.99,2019-06-24 14:54:00,827 4th St, Boston,MA,02215 +212682,USB-C Charging Cable,1,11.95,2019-06-15 14:42:00,892 Sunset St, Dallas,TX,75001 +212683,Bose SoundSport Headphones,1,99.99,2019-06-11 17:09:00,212 Maple St, Boston,MA,02215 +212684,27in FHD Monitor,1,149.99,2019-06-20 11:25:00,299 Center St, Los Angeles,CA,90001 +212685,Wired Headphones,2,11.99,2019-06-10 18:31:00,234 Dogwood St, Austin,TX,73301 +212686,27in 4K Gaming Monitor,1,389.99,2019-06-30 19:24:00,305 Ridge St, Portland,OR,97035 +212687,Lightning Charging Cable,1,14.95,2019-06-12 10:08:00,273 1st St, New York City,NY,10001 +212688,USB-C Charging Cable,1,11.95,2019-06-23 19:28:00,742 Meadow St, San Francisco,CA,94016 +212689,Lightning Charging Cable,1,14.95,2019-06-12 13:49:00,556 Wilson St, Atlanta,GA,30301 +212690,20in Monitor,1,109.99,2019-06-29 20:01:00,919 Ridge St, San Francisco,CA,94016 +212691,Wired Headphones,1,11.99,2019-06-12 07:56:00,842 Adams St, San Francisco,CA,94016 +212692,20in Monitor,1,109.99,2019-06-05 19:17:00,877 Lincoln St, Seattle,WA,98101 +212693,iPhone,1,700.0,2019-06-18 23:56:00,603 West St, Seattle,WA,98101 +212694,Wired Headphones,1,11.99,2019-06-13 19:12:00,538 Jackson St, New York City,NY,10001 +212695,AAA Batteries (4-pack),1,2.99,2019-06-01 19:24:00,96 Dogwood St, New York City,NY,10001 +212696,Macbook Pro Laptop,1,1700.0,2019-06-12 23:33:00,931 Cherry St, Dallas,TX,75001 +212697,27in FHD Monitor,1,149.99,2019-06-17 11:38:00,438 10th St, Boston,MA,02215 +212698,AAA Batteries (4-pack),1,2.99,2019-06-16 10:26:00,7 Chestnut St, San Francisco,CA,94016 +212699,Bose SoundSport Headphones,1,99.99,2019-06-02 19:44:00,525 Willow St, San Francisco,CA,94016 +212700,USB-C Charging Cable,1,11.95,2019-06-05 17:02:00,639 6th St, Los Angeles,CA,90001 +212701,20in Monitor,1,109.99,2019-06-03 13:58:00,434 River St, New York City,NY,10001 +212702,AA Batteries (4-pack),1,3.84,2019-06-11 22:29:00,602 8th St, Boston,MA,02215 +212703,USB-C Charging Cable,1,11.95,2019-06-13 19:31:00,449 4th St, Atlanta,GA,30301 +212704,Lightning Charging Cable,1,14.95,2019-06-11 14:07:00,181 Hickory St, San Francisco,CA,94016 +212705,Macbook Pro Laptop,1,1700.0,2019-06-26 19:33:00,971 2nd St, Los Angeles,CA,90001 +212706,Apple Airpods Headphones,1,150.0,2019-06-06 12:35:00,330 14th St, San Francisco,CA,94016 +212707,AA Batteries (4-pack),2,3.84,2019-06-24 12:17:00,769 Washington St, Boston,MA,02215 +212708,Wired Headphones,1,11.99,2019-06-03 16:27:00,846 Wilson St, San Francisco,CA,94016 +212709,AA Batteries (4-pack),1,3.84,2019-06-01 22:14:00,454 Chestnut St, San Francisco,CA,94016 +212710,USB-C Charging Cable,1,11.95,2019-06-29 16:09:00,538 9th St, Portland,OR,97035 +212711,27in FHD Monitor,1,149.99,2019-06-29 18:20:00,856 Highland St, Atlanta,GA,30301 +212712,20in Monitor,1,109.99,2019-06-07 18:12:00,981 2nd St, Austin,TX,73301 +212713,Apple Airpods Headphones,1,150.0,2019-06-18 20:08:00,541 Jackson St, Los Angeles,CA,90001 +212714,27in 4K Gaming Monitor,1,389.99,2019-06-19 21:55:00,966 9th St, Boston,MA,02215 +212715,AA Batteries (4-pack),1,3.84,2019-06-10 10:32:00,556 Maple St, Portland,OR,97035 +212716,Wired Headphones,1,11.99,2019-06-17 23:05:00,40 Adams St, Los Angeles,CA,90001 +212717,27in FHD Monitor,1,149.99,2019-06-06 02:41:00,594 13th St, San Francisco,CA,94016 +212718,AAA Batteries (4-pack),2,2.99,2019-06-02 07:48:00,869 1st St, Atlanta,GA,30301 +212719,AA Batteries (4-pack),1,3.84,2019-06-28 07:40:00,572 Forest St, San Francisco,CA,94016 +212720,AA Batteries (4-pack),1,3.84,2019-06-23 08:59:00,224 Meadow St, Los Angeles,CA,90001 +212721,Bose SoundSport Headphones,1,99.99,2019-06-11 18:26:00,437 4th St, Seattle,WA,98101 +212722,iPhone,1,700.0,2019-06-28 17:56:00,968 Lakeview St, Portland,ME,04101 +212723,USB-C Charging Cable,1,11.95,2019-06-01 13:32:00,520 Meadow St, New York City,NY,10001 +212724,Bose SoundSport Headphones,1,99.99,2019-06-12 16:41:00,721 Spruce St, Boston,MA,02215 +212725,Apple Airpods Headphones,1,150.0,2019-06-05 14:33:00,891 Main St, San Francisco,CA,94016 +212726,20in Monitor,1,109.99,2019-06-12 08:26:00,107 Wilson St, San Francisco,CA,94016 +212727,Bose SoundSport Headphones,1,99.99,2019-06-11 09:36:00,546 Chestnut St, New York City,NY,10001 +212728,AA Batteries (4-pack),3,3.84,2019-06-05 15:12:00,130 Chestnut St, Boston,MA,02215 +212729,34in Ultrawide Monitor,1,379.99,2019-06-14 10:57:00,915 Walnut St, New York City,NY,10001 +212730,Macbook Pro Laptop,1,1700.0,2019-06-02 12:47:00,566 Chestnut St, San Francisco,CA,94016 +212731,Bose SoundSport Headphones,1,99.99,2019-06-27 11:09:00,288 Wilson St, Boston,MA,02215 +212732,Lightning Charging Cable,1,14.95,2019-06-12 19:41:00,919 12th St, New York City,NY,10001 +212733,USB-C Charging Cable,1,11.95,2019-06-10 20:40:00,947 Meadow St, Atlanta,GA,30301 +212734,Apple Airpods Headphones,1,150.0,2019-06-29 15:10:00,618 8th St, San Francisco,CA,94016 +212735,AA Batteries (4-pack),1,3.84,2019-06-09 08:34:00,939 Cherry St, San Francisco,CA,94016 +212736,Bose SoundSport Headphones,1,99.99,2019-06-24 03:19:00,890 Cherry St, San Francisco,CA,94016 +212737,USB-C Charging Cable,2,11.95,2019-06-17 18:42:00,929 Park St, Dallas,TX,75001 +212738,Bose SoundSport Headphones,1,99.99,2019-06-02 23:10:00,231 Spruce St, New York City,NY,10001 +212739,USB-C Charging Cable,1,11.95,2019-06-17 19:45:00,569 8th St, Los Angeles,CA,90001 +212740,Apple Airpods Headphones,1,150.0,2019-06-24 10:46:00,392 Willow St, Seattle,WA,98101 +212741,USB-C Charging Cable,1,11.95,2019-06-12 20:09:00,807 Lincoln St, New York City,NY,10001 +212742,Wired Headphones,1,11.99,2019-06-18 09:43:00,159 River St, New York City,NY,10001 +212743,27in 4K Gaming Monitor,1,389.99,2019-06-04 16:39:00,137 12th St, San Francisco,CA,94016 +212744,Macbook Pro Laptop,1,1700.0,2019-06-02 13:18:00,264 Lake St, New York City,NY,10001 +212745,iPhone,1,700.0,2019-06-09 14:01:00,13 Chestnut St, Seattle,WA,98101 +212745,Lightning Charging Cable,1,14.95,2019-06-09 14:01:00,13 Chestnut St, Seattle,WA,98101 +212746,AA Batteries (4-pack),2,3.84,2019-06-05 10:54:00,121 Maple St, Portland,ME,04101 +212747,AA Batteries (4-pack),2,3.84,2019-06-15 19:50:00,832 7th St, Seattle,WA,98101 +212748,AA Batteries (4-pack),3,3.84,2019-06-13 16:00:00,711 Church St, San Francisco,CA,94016 +212749,Lightning Charging Cable,1,14.95,2019-06-09 21:57:00,725 12th St, New York City,NY,10001 +212750,AA Batteries (4-pack),1,3.84,2019-06-20 22:06:00,104 Washington St, New York City,NY,10001 +212751,AA Batteries (4-pack),1,3.84,2019-06-12 09:41:00,11 Jackson St, Portland,OR,97035 +212752,iPhone,1,700.0,2019-06-06 07:01:00,748 2nd St, Boston,MA,02215 +212753,Google Phone,1,600.0,2019-06-12 16:52:00,581 Chestnut St, Atlanta,GA,30301 +212753,USB-C Charging Cable,1,11.95,2019-06-12 16:52:00,581 Chestnut St, Atlanta,GA,30301 +212753,Wired Headphones,1,11.99,2019-06-12 16:52:00,581 Chestnut St, Atlanta,GA,30301 +212754,34in Ultrawide Monitor,1,379.99,2019-06-09 19:43:00,624 13th St, New York City,NY,10001 +212755,USB-C Charging Cable,1,11.95,2019-06-07 22:23:00,332 10th St, San Francisco,CA,94016 +212756,AAA Batteries (4-pack),1,2.99,2019-06-22 20:35:00,240 14th St, Boston,MA,02215 +212756,Wired Headphones,2,11.99,2019-06-22 20:35:00,240 14th St, Boston,MA,02215 +212757,AA Batteries (4-pack),2,3.84,2019-06-14 18:19:00,925 Adams St, Atlanta,GA,30301 +212758,Google Phone,1,600.0,2019-06-14 04:17:00,999 Jackson St, Austin,TX,73301 +212758,USB-C Charging Cable,1,11.95,2019-06-14 04:17:00,999 Jackson St, Austin,TX,73301 +212759,Wired Headphones,1,11.99,2019-06-26 16:35:00,306 13th St, San Francisco,CA,94016 +212759,USB-C Charging Cable,2,11.95,2019-06-26 16:35:00,306 13th St, San Francisco,CA,94016 +212760,Apple Airpods Headphones,1,150.0,2019-06-26 18:41:00,80 Lincoln St, Austin,TX,73301 +212761,AA Batteries (4-pack),1,3.84,2019-06-14 16:57:00,92 Sunset St, Boston,MA,02215 +212762,AAA Batteries (4-pack),1,2.99,2019-06-26 14:07:00,457 Elm St, Austin,TX,73301 +212763,AAA Batteries (4-pack),1,2.99,2019-06-24 05:13:00,907 Cedar St, Seattle,WA,98101 +212764,27in 4K Gaming Monitor,1,389.99,2019-06-19 14:16:00,997 Jefferson St, Dallas,TX,75001 +212765,Flatscreen TV,1,300.0,2019-06-28 22:56:00,212 Lake St, Portland,OR,97035 +212766,AAA Batteries (4-pack),2,2.99,2019-06-21 01:50:00,635 12th St, Austin,TX,73301 +212767,Google Phone,1,600.0,2019-06-23 21:53:00,788 12th St, Boston,MA,02215 +212768,AA Batteries (4-pack),1,3.84,2019-06-16 23:22:00,563 Hill St, Atlanta,GA,30301 +212769,AA Batteries (4-pack),1,3.84,2019-06-30 21:39:00,532 Washington St, San Francisco,CA,94016 +212770,USB-C Charging Cable,1,11.95,2019-06-20 08:02:00,522 4th St, Dallas,TX,75001 +212771,USB-C Charging Cable,1,11.95,2019-06-28 13:57:00,922 2nd St, Portland,OR,97035 +212772,USB-C Charging Cable,1,11.95,2019-06-23 10:01:00,766 Forest St, Los Angeles,CA,90001 +212773,iPhone,1,700.0,2019-06-24 17:52:00,855 11th St, San Francisco,CA,94016 +212774,Vareebadd Phone,1,400.0,2019-06-06 11:03:00,464 Park St, Seattle,WA,98101 +212774,USB-C Charging Cable,1,11.95,2019-06-06 11:03:00,464 Park St, Seattle,WA,98101 +212774,Bose SoundSport Headphones,1,99.99,2019-06-06 11:03:00,464 Park St, Seattle,WA,98101 +212775,AAA Batteries (4-pack),3,2.99,2019-06-16 00:31:00,307 Highland St, Dallas,TX,75001 +212776,Apple Airpods Headphones,1,150.0,2019-06-22 09:54:00,894 Lakeview St, Portland,OR,97035 +212777,Apple Airpods Headphones,1,150.0,2019-06-26 18:40:00,923 Lincoln St, Seattle,WA,98101 +212778,USB-C Charging Cable,1,11.95,2019-06-28 17:28:00,248 Walnut St, San Francisco,CA,94016 +212779,Google Phone,1,600.0,2019-06-07 16:07:00,969 Lincoln St, Seattle,WA,98101 +212780,USB-C Charging Cable,1,11.95,2019-06-18 16:59:00,536 Maple St, Seattle,WA,98101 +212781,AAA Batteries (4-pack),3,2.99,2019-06-22 22:23:00,360 Wilson St, Dallas,TX,75001 +212782,27in 4K Gaming Monitor,1,389.99,2019-06-12 17:17:00,286 10th St, New York City,NY,10001 +212783,Wired Headphones,1,11.99,2019-06-26 13:40:00,118 Johnson St, Dallas,TX,75001 +212784,Apple Airpods Headphones,1,150.0,2019-06-23 02:31:00,24 Wilson St, New York City,NY,10001 +212785,Apple Airpods Headphones,1,150.0,2019-06-27 14:05:00,693 Chestnut St, Boston,MA,02215 +212786,AA Batteries (4-pack),1,3.84,2019-06-09 09:32:00,714 10th St, New York City,NY,10001 +212787,USB-C Charging Cable,1,11.95,2019-06-02 11:34:00,707 8th St, San Francisco,CA,94016 +212788,Bose SoundSport Headphones,1,99.99,2019-06-08 16:09:00,331 2nd St, Boston,MA,02215 +212789,AA Batteries (4-pack),1,3.84,2019-06-27 23:41:00,521 Elm St, San Francisco,CA,94016 +212790,USB-C Charging Cable,2,11.95,2019-06-16 22:15:00,374 13th St, Seattle,WA,98101 +212791,Wired Headphones,1,11.99,2019-06-23 14:54:00,987 2nd St, Dallas,TX,75001 +212792,27in FHD Monitor,1,149.99,2019-06-30 14:42:00,12 Hill St, Austin,TX,73301 +212793,Bose SoundSport Headphones,1,99.99,2019-06-25 13:13:00,724 North St, Los Angeles,CA,90001 +212794,AAA Batteries (4-pack),1,2.99,2019-06-24 07:14:00,678 Maple St, San Francisco,CA,94016 +212795,Apple Airpods Headphones,1,150.0,2019-06-09 18:23:00,11 Lake St, Boston,MA,02215 +212796,Wired Headphones,1,11.99,2019-06-20 15:38:00,462 7th St, Austin,TX,73301 +212797,Apple Airpods Headphones,1,150.0,2019-06-04 17:29:00,353 Meadow St, Dallas,TX,75001 +212798,AA Batteries (4-pack),1,3.84,2019-06-06 13:45:00,314 Cherry St, San Francisco,CA,94016 +212799,Bose SoundSport Headphones,1,99.99,2019-06-07 09:54:00,437 Spruce St, Dallas,TX,75001 +212800,iPhone,1,700.0,2019-06-14 19:29:00,17 Cherry St, Portland,OR,97035 +212801,iPhone,1,700.0,2019-06-18 08:05:00,772 7th St, Boston,MA,02215 +212802,Bose SoundSport Headphones,1,99.99,2019-06-05 17:41:00,637 Cedar St, Portland,OR,97035 +212803,USB-C Charging Cable,1,11.95,2019-06-29 13:37:00,888 Dogwood St, Austin,TX,73301 +212804,Wired Headphones,1,11.99,2019-06-28 09:29:00,15 1st St, San Francisco,CA,94016 +212805,Lightning Charging Cable,2,14.95,2019-06-25 20:10:00,402 Forest St, Los Angeles,CA,90001 +212806,Wired Headphones,1,11.99,2019-06-27 21:57:00,601 Forest St, Austin,TX,73301 +212807,Bose SoundSport Headphones,1,99.99,2019-06-25 18:09:00,146 South St, Seattle,WA,98101 +212808,Google Phone,1,600.0,2019-06-04 09:02:00,770 9th St, San Francisco,CA,94016 +212809,AAA Batteries (4-pack),4,2.99,2019-06-24 22:43:00,120 10th St, San Francisco,CA,94016 +212810,34in Ultrawide Monitor,1,379.99,2019-06-16 13:25:00,285 12th St, Boston,MA,02215 +212811,27in FHD Monitor,1,149.99,2019-06-04 19:42:00,482 Hill St, San Francisco,CA,94016 +212812,Vareebadd Phone,1,400.0,2019-06-29 09:58:00,68 Sunset St, New York City,NY,10001 +212813,AAA Batteries (4-pack),2,2.99,2019-06-26 21:21:00,768 Jackson St, Portland,ME,04101 +212813,Bose SoundSport Headphones,1,99.99,2019-06-26 21:21:00,768 Jackson St, Portland,ME,04101 +212814,Flatscreen TV,1,300.0,2019-06-12 19:11:00,706 Pine St, San Francisco,CA,94016 +212815,Vareebadd Phone,1,400.0,2019-06-29 20:10:00,471 11th St, New York City,NY,10001 +212815,Wired Headphones,1,11.99,2019-06-29 20:10:00,471 11th St, New York City,NY,10001 +212816,Bose SoundSport Headphones,1,99.99,2019-06-07 23:09:00,517 Pine St, Los Angeles,CA,90001 +212817,27in FHD Monitor,1,149.99,2019-06-08 19:37:00,826 8th St, San Francisco,CA,94016 +212818,Bose SoundSport Headphones,1,99.99,2019-06-24 12:01:00,361 Elm St, New York City,NY,10001 +212819,AAA Batteries (4-pack),1,2.99,2019-06-15 13:38:00,32 West St, San Francisco,CA,94016 +212820,AA Batteries (4-pack),1,3.84,2019-06-21 22:50:00,291 Jefferson St, New York City,NY,10001 +212821,27in FHD Monitor,1,149.99,2019-06-03 15:50:00,109 8th St, Los Angeles,CA,90001 +212822,Apple Airpods Headphones,1,150.0,2019-06-17 21:11:00,876 South St, New York City,NY,10001 +212823,Wired Headphones,2,11.99,2019-06-27 06:25:00,300 South St, Atlanta,GA,30301 +212824,27in FHD Monitor,1,149.99,2019-06-13 19:45:00,37 7th St, San Francisco,CA,94016 +212825,Wired Headphones,2,11.99,2019-06-29 19:39:00,576 West St, San Francisco,CA,94016 +212826,Apple Airpods Headphones,1,150.0,2019-06-30 09:49:00,123 Church St, Atlanta,GA,30301 +212827,AAA Batteries (4-pack),1,2.99,2019-06-12 09:21:00,716 Ridge St, San Francisco,CA,94016 +212828,Bose SoundSport Headphones,1,99.99,2019-06-28 19:48:00,875 8th St, Dallas,TX,75001 +212829,Lightning Charging Cable,1,14.95,2019-06-30 11:57:00,183 Sunset St, New York City,NY,10001 +212830,Apple Airpods Headphones,1,150.0,2019-06-27 19:44:00,954 12th St, Seattle,WA,98101 +212831,iPhone,1,700.0,2019-06-20 13:07:00,571 Chestnut St, Dallas,TX,75001 +212832,20in Monitor,1,109.99,2019-06-07 12:12:00,479 Madison St, Austin,TX,73301 +212833,AAA Batteries (4-pack),3,2.99,2019-06-04 01:50:00,365 2nd St, San Francisco,CA,94016 +212834,AA Batteries (4-pack),1,3.84,2019-06-12 08:55:00,436 Meadow St, San Francisco,CA,94016 +212835,Apple Airpods Headphones,1,150.0,2019-06-27 16:47:00,705 West St, Boston,MA,02215 +212836,AA Batteries (4-pack),1,3.84,2019-06-28 18:29:00,403 Jefferson St, New York City,NY,10001 +212837,Lightning Charging Cable,1,14.95,2019-06-18 20:03:00,477 8th St, San Francisco,CA,94016 +212838,iPhone,1,700.0,2019-06-28 20:25:00,409 8th St, Los Angeles,CA,90001 +212839,Lightning Charging Cable,2,14.95,2019-06-23 00:12:00,529 8th St, San Francisco,CA,94016 +212840,Wired Headphones,1,11.99,2019-06-23 00:06:00,293 Pine St, Los Angeles,CA,90001 +212841,20in Monitor,1,109.99,2019-06-07 09:18:00,75 Lake St, Seattle,WA,98101 +212842,34in Ultrawide Monitor,1,379.99,2019-06-12 10:26:00,820 Jefferson St, Atlanta,GA,30301 +212843,AAA Batteries (4-pack),1,2.99,2019-06-25 05:11:00,491 Ridge St, San Francisco,CA,94016 +212844,Apple Airpods Headphones,1,150.0,2019-06-23 18:56:00,727 Hickory St, Austin,TX,73301 +212845,USB-C Charging Cable,2,11.95,2019-06-27 12:56:00,190 Highland St, Boston,MA,02215 +212846,Lightning Charging Cable,1,14.95,2019-06-20 22:40:00,162 South St, New York City,NY,10001 +212847,USB-C Charging Cable,1,11.95,2019-06-07 18:29:00,641 Johnson St, New York City,NY,10001 +212848,27in 4K Gaming Monitor,1,389.99,2019-06-22 19:00:00,106 South St, San Francisco,CA,94016 +212849,USB-C Charging Cable,1,11.95,2019-06-17 02:04:00,365 Maple St, Austin,TX,73301 +212850,ThinkPad Laptop,1,999.99,2019-06-24 12:58:00,141 8th St, San Francisco,CA,94016 +212851,USB-C Charging Cable,2,11.95,2019-06-20 18:14:00,999 Main St, Austin,TX,73301 +212852,AA Batteries (4-pack),1,3.84,2019-06-02 17:07:00,476 Cherry St, San Francisco,CA,94016 +212853,Wired Headphones,1,11.99,2019-06-01 08:37:00,522 2nd St, San Francisco,CA,94016 +212854,34in Ultrawide Monitor,1,379.99,2019-06-14 20:55:00,656 Adams St, Los Angeles,CA,90001 +212855,AA Batteries (4-pack),2,3.84,2019-06-09 19:31:00,759 Madison St, Portland,OR,97035 +212856,USB-C Charging Cable,2,11.95,2019-06-01 21:03:00,671 Church St, San Francisco,CA,94016 +212857,Wired Headphones,3,11.99,2019-06-22 00:24:00,747 Walnut St, Los Angeles,CA,90001 +212858,Lightning Charging Cable,1,14.95,2019-06-23 14:16:00,69 9th St, San Francisco,CA,94016 +212859,USB-C Charging Cable,1,11.95,2019-06-17 15:17:00,347 Center St, San Francisco,CA,94016 +212860,Wired Headphones,1,11.99,2019-06-02 12:45:00,134 Ridge St, Seattle,WA,98101 +212861,Apple Airpods Headphones,1,150.0,2019-06-13 01:00:00,32 8th St, San Francisco,CA,94016 +212861,Wired Headphones,1,11.99,2019-06-13 01:00:00,32 8th St, San Francisco,CA,94016 +212862,27in FHD Monitor,1,149.99,2019-06-14 22:39:00,663 Walnut St, San Francisco,CA,94016 +212863,Google Phone,1,600.0,2019-06-02 15:25:00,884 Pine St, Boston,MA,02215 +212864,Apple Airpods Headphones,1,150.0,2019-06-26 18:54:00,977 Johnson St, Boston,MA,02215 +212865,Macbook Pro Laptop,1,1700.0,2019-06-29 21:55:00,92 Forest St, New York City,NY,10001 +212866,Apple Airpods Headphones,1,150.0,2019-06-02 22:13:00,382 Wilson St, San Francisco,CA,94016 +212867,Lightning Charging Cable,1,14.95,2019-06-04 12:59:00,942 14th St, Austin,TX,73301 +212868,34in Ultrawide Monitor,1,379.99,2019-06-11 20:56:00,632 12th St, Boston,MA,02215 +212869,AAA Batteries (4-pack),1,2.99,2019-06-25 19:21:00,599 Forest St, Boston,MA,02215 +212870,AA Batteries (4-pack),1,3.84,2019-06-17 20:58:00,691 4th St, Austin,TX,73301 +212871,Bose SoundSport Headphones,3,99.99,2019-06-03 20:37:00,289 North St, San Francisco,CA,94016 +212872,USB-C Charging Cable,1,11.95,2019-06-25 04:06:00,470 South St, San Francisco,CA,94016 +212873,Wired Headphones,1,11.99,2019-06-23 17:43:00,59 Meadow St, Atlanta,GA,30301 +212874,27in FHD Monitor,1,149.99,2019-06-20 08:53:00,911 Park St, Dallas,TX,75001 +212875,iPhone,1,700.0,2019-06-28 23:52:00,419 Dogwood St, San Francisco,CA,94016 +212875,Lightning Charging Cable,1,14.95,2019-06-28 23:52:00,419 Dogwood St, San Francisco,CA,94016 +212876,AA Batteries (4-pack),1,3.84,2019-06-21 14:04:00,660 Center St, San Francisco,CA,94016 +212877,AAA Batteries (4-pack),1,2.99,2019-06-29 15:27:00,375 Hill St, Dallas,TX,75001 +212878,Wired Headphones,1,11.99,2019-06-10 02:26:00,51 Walnut St, San Francisco,CA,94016 +212879,Flatscreen TV,1,300.0,2019-06-15 10:16:00,211 Sunset St, San Francisco,CA,94016 +212880,USB-C Charging Cable,1,11.95,2019-06-24 14:28:00,514 Center St, Dallas,TX,75001 +212881,USB-C Charging Cable,1,11.95,2019-06-15 20:05:00,402 Wilson St, New York City,NY,10001 +212882,USB-C Charging Cable,1,11.95,2019-06-19 14:45:00,932 Chestnut St, San Francisco,CA,94016 +212883,27in 4K Gaming Monitor,1,389.99,2019-06-03 20:24:00,241 14th St, Portland,OR,97035 +212884,27in FHD Monitor,1,149.99,2019-06-25 17:58:00,963 River St, Los Angeles,CA,90001 +212885,27in FHD Monitor,1,149.99,2019-06-27 20:38:00,319 Meadow St, New York City,NY,10001 +212886,Vareebadd Phone,1,400.0,2019-06-24 13:29:00,378 8th St, Boston,MA,02215 +212887,Wired Headphones,1,11.99,2019-06-28 19:39:00,912 6th St, Los Angeles,CA,90001 +212888,AA Batteries (4-pack),1,3.84,2019-06-26 17:07:00,905 Dogwood St, New York City,NY,10001 +212889,ThinkPad Laptop,1,999.99,2019-06-16 14:57:00,561 2nd St, Los Angeles,CA,90001 +212890,27in FHD Monitor,1,149.99,2019-06-22 09:41:00,263 Cedar St, Los Angeles,CA,90001 +212891,AA Batteries (4-pack),2,3.84,2019-06-02 13:29:00,968 Hickory St, Seattle,WA,98101 +212892,AA Batteries (4-pack),1,3.84,2019-06-27 07:08:00,507 Maple St, San Francisco,CA,94016 +212893,Lightning Charging Cable,1,14.95,2019-06-11 15:42:00,269 Hickory St, San Francisco,CA,94016 +212894,Bose SoundSport Headphones,1,99.99,2019-06-27 21:37:00,299 Chestnut St, Los Angeles,CA,90001 +212895,USB-C Charging Cable,2,11.95,2019-06-06 23:01:00,227 Lakeview St, Seattle,WA,98101 +212896,Lightning Charging Cable,1,14.95,2019-06-06 23:06:00,132 Hill St, San Francisco,CA,94016 +212897,Google Phone,1,600.0,2019-06-25 13:15:00,194 8th St, Boston,MA,02215 +212898,Bose SoundSport Headphones,1,99.99,2019-06-30 22:12:00,760 4th St, Los Angeles,CA,90001 +212899,Wired Headphones,1,11.99,2019-06-08 13:06:00,555 Park St, New York City,NY,10001 +212900,Wired Headphones,1,11.99,2019-06-07 23:15:00,488 9th St, Los Angeles,CA,90001 +212901,Apple Airpods Headphones,1,150.0,2019-06-06 10:48:00,873 8th St, Atlanta,GA,30301 +212902,AAA Batteries (4-pack),2,2.99,2019-06-01 17:32:00,355 2nd St, Seattle,WA,98101 +212903,USB-C Charging Cable,1,11.95,2019-06-16 13:01:00,204 Center St, San Francisco,CA,94016 +212904,27in 4K Gaming Monitor,1,389.99,2019-06-14 22:30:00,86 Hickory St, San Francisco,CA,94016 +212905,Apple Airpods Headphones,1,150.0,2019-06-26 22:03:00,552 Main St, Los Angeles,CA,90001 +212906,AAA Batteries (4-pack),1,2.99,2019-06-07 11:02:00,444 Forest St, Los Angeles,CA,90001 +212907,Google Phone,1,600.0,2019-06-01 19:29:00,294 North St, Boston,MA,02215 +212908,Bose SoundSport Headphones,1,99.99,2019-06-27 11:59:00,657 13th St, New York City,NY,10001 +212909,27in FHD Monitor,1,149.99,2019-06-08 17:31:00,885 Chestnut St, Los Angeles,CA,90001 +212910,Apple Airpods Headphones,1,150.0,2019-06-22 22:50:00,258 Washington St, New York City,NY,10001 +212911,AAA Batteries (4-pack),1,2.99,2019-06-20 15:10:00,808 Hill St, Portland,OR,97035 +212912,20in Monitor,1,109.99,2019-06-29 13:33:00,583 Hickory St, Seattle,WA,98101 +212913,AAA Batteries (4-pack),1,2.99,2019-06-26 22:41:00,688 9th St, Austin,TX,73301 +212914,AAA Batteries (4-pack),2,2.99,2019-06-19 18:53:00,734 South St, Los Angeles,CA,90001 +212915,iPhone,1,700.0,2019-06-23 12:16:00,4 West St, Atlanta,GA,30301 +212916,Lightning Charging Cable,1,14.95,2019-06-07 13:17:00,491 10th St, Boston,MA,02215 +212917,Vareebadd Phone,1,400.0,2019-06-30 13:34:00,492 Spruce St, Portland,OR,97035 +212918,Wired Headphones,1,11.99,2019-06-08 23:48:00,649 Jackson St, New York City,NY,10001 +212919,27in FHD Monitor,1,149.99,2019-06-16 08:25:00,467 7th St, Seattle,WA,98101 +212920,Lightning Charging Cable,1,14.95,2019-06-13 22:38:00,71 Walnut St, Boston,MA,02215 +212921,Lightning Charging Cable,1,14.95,2019-06-25 20:35:00,978 North St, Los Angeles,CA,90001 +212922,27in FHD Monitor,1,149.99,2019-06-22 16:04:00,333 River St, Los Angeles,CA,90001 +212923,iPhone,1,700.0,2019-06-22 11:17:00,252 Dogwood St, Portland,OR,97035 +212924,AA Batteries (4-pack),2,3.84,2019-06-06 20:06:00,931 Cedar St, San Francisco,CA,94016 +212925,27in 4K Gaming Monitor,1,389.99,2019-06-27 15:09:00,407 12th St, Seattle,WA,98101 +212926,Flatscreen TV,1,300.0,2019-06-29 22:20:00,257 14th St, New York City,NY,10001 +212927,iPhone,1,700.0,2019-06-14 08:12:00,923 Center St, Boston,MA,02215 +212928,USB-C Charging Cable,1,11.95,2019-06-26 12:18:00,581 7th St, Los Angeles,CA,90001 +212929,34in Ultrawide Monitor,1,379.99,2019-06-12 11:47:00,963 Ridge St, San Francisco,CA,94016 +212930,Wired Headphones,1,11.99,2019-06-19 12:32:00,757 Chestnut St, New York City,NY,10001 +212931,Flatscreen TV,1,300.0,2019-06-06 13:39:00,198 Meadow St, Dallas,TX,75001 +212932,Google Phone,1,600.0,2019-06-09 17:49:00,614 Jackson St, Los Angeles,CA,90001 +212933,Lightning Charging Cable,3,14.95,2019-06-27 19:46:00,355 Lakeview St, Portland,ME,04101 +212934,Lightning Charging Cable,1,14.95,2019-06-24 12:14:00,686 2nd St, New York City,NY,10001 +212935,AAA Batteries (4-pack),3,2.99,2019-06-30 21:47:00,173 Spruce St, Boston,MA,02215 +212936,Wired Headphones,1,11.99,2019-06-09 15:56:00,322 Johnson St, San Francisco,CA,94016 +212937,LG Washing Machine,1,600.0,2019-06-18 09:18:00,712 Cedar St, Portland,OR,97035 +212937,AAA Batteries (4-pack),4,2.99,2019-06-18 09:18:00,712 Cedar St, Portland,OR,97035 +212938,34in Ultrawide Monitor,1,379.99,2019-06-24 07:55:00,580 Cedar St, San Francisco,CA,94016 +212939,Lightning Charging Cable,2,14.95,2019-06-29 12:02:00,197 Park St, Dallas,TX,75001 +212940,ThinkPad Laptop,1,999.99,2019-06-17 18:19:00,577 Madison St, New York City,NY,10001 +212941,iPhone,1,700.0,2019-06-02 17:25:00,943 Ridge St, New York City,NY,10001 +212942,Wired Headphones,1,11.99,2019-06-20 20:53:00,218 9th St, Los Angeles,CA,90001 +212943,USB-C Charging Cable,1,11.95,2019-06-13 21:34:00,216 Lincoln St, Dallas,TX,75001 +212944,Apple Airpods Headphones,1,150.0,2019-06-17 22:59:00,139 Chestnut St, Dallas,TX,75001 +212945,iPhone,1,700.0,2019-06-18 14:41:00,263 Ridge St, Austin,TX,73301 +212946,AAA Batteries (4-pack),3,2.99,2019-06-07 13:50:00,516 River St, Atlanta,GA,30301 +212947,Apple Airpods Headphones,1,150.0,2019-06-01 11:03:00,975 Sunset St, New York City,NY,10001 +212948,AA Batteries (4-pack),1,3.84,2019-06-17 21:00:00,791 River St, San Francisco,CA,94016 +212949,AAA Batteries (4-pack),1,2.99,2019-06-18 20:18:00,210 12th St, San Francisco,CA,94016 +212950,Lightning Charging Cable,1,14.95,2019-06-27 15:34:00,670 Sunset St, Seattle,WA,98101 +212951,AA Batteries (4-pack),2,3.84,2019-06-26 19:17:00,182 11th St, Los Angeles,CA,90001 +212952,ThinkPad Laptop,1,999.99,2019-06-16 12:20:00,859 Walnut St, San Francisco,CA,94016 +212953,27in 4K Gaming Monitor,1,389.99,2019-06-07 16:48:00,741 Chestnut St, Dallas,TX,75001 +212954,Flatscreen TV,1,300.0,2019-06-25 17:08:00,211 Lakeview St, New York City,NY,10001 +212955,Apple Airpods Headphones,1,150.0,2019-06-04 23:22:00,988 Cedar St, New York City,NY,10001 +212956,Flatscreen TV,1,300.0,2019-06-20 20:50:00,224 10th St, Austin,TX,73301 +212957,AA Batteries (4-pack),1,3.84,2019-06-04 10:48:00,628 Church St, New York City,NY,10001 +212958,AAA Batteries (4-pack),2,2.99,2019-06-11 00:22:00,181 Cedar St, New York City,NY,10001 +212959,AAA Batteries (4-pack),1,2.99,2019-06-26 11:42:00,583 Wilson St, Boston,MA,02215 +212960,Apple Airpods Headphones,1,150.0,2019-06-17 22:01:00,13 Lincoln St, New York City,NY,10001 +212960,Wired Headphones,1,11.99,2019-06-17 22:01:00,13 Lincoln St, New York City,NY,10001 +212961,Wired Headphones,1,11.99,2019-06-22 11:08:00,622 River St, Dallas,TX,75001 +212961,34in Ultrawide Monitor,1,379.99,2019-06-22 11:08:00,622 River St, Dallas,TX,75001 +212962,Wired Headphones,1,11.99,2019-06-24 19:30:00,282 Sunset St, Atlanta,GA,30301 +212963,USB-C Charging Cable,2,11.95,2019-06-20 09:35:00,262 Forest St, Los Angeles,CA,90001 +212964,Apple Airpods Headphones,1,150.0,2019-06-13 20:37:00,971 14th St, Boston,MA,02215 +212965,Apple Airpods Headphones,1,150.0,2019-06-17 12:46:00,334 Park St, New York City,NY,10001 +212966,Lightning Charging Cable,1,14.95,2019-06-30 20:03:00,651 Cedar St, Dallas,TX,75001 +212967,USB-C Charging Cable,1,11.95,2019-06-18 17:10:00,593 Jackson St, Portland,OR,97035 +212968,AAA Batteries (4-pack),4,2.99,2019-06-13 22:21:00,492 Highland St, San Francisco,CA,94016 +212969,Lightning Charging Cable,1,14.95,2019-06-15 09:30:00,480 14th St, Boston,MA,02215 +212970,AA Batteries (4-pack),1,3.84,2019-06-22 07:11:00,318 Center St, Portland,OR,97035 +212971,34in Ultrawide Monitor,1,379.99,2019-06-12 10:14:00,721 Hickory St, Austin,TX,73301 +212972,AA Batteries (4-pack),1,3.84,2019-06-11 19:46:00,170 Highland St, Dallas,TX,75001 +212973,34in Ultrawide Monitor,1,379.99,2019-06-29 04:59:00,834 12th St, Dallas,TX,75001 +212974,Flatscreen TV,1,300.0,2019-06-03 17:39:00,49 Center St, San Francisco,CA,94016 +212975,Wired Headphones,1,11.99,2019-06-08 11:08:00,280 12th St, Los Angeles,CA,90001 +212976,Google Phone,1,600.0,2019-06-28 13:04:00,231 Hickory St, Portland,ME,04101 +212977,Lightning Charging Cable,1,14.95,2019-06-15 18:11:00,198 2nd St, San Francisco,CA,94016 +212978,Apple Airpods Headphones,1,150.0,2019-06-04 06:20:00,271 8th St, San Francisco,CA,94016 +212979,Flatscreen TV,1,300.0,2019-06-01 12:05:00,35 Cherry St, San Francisco,CA,94016 +212980,iPhone,1,700.0,2019-06-30 12:25:00,772 Lake St, Los Angeles,CA,90001 +212980,Lightning Charging Cable,1,14.95,2019-06-30 12:25:00,772 Lake St, Los Angeles,CA,90001 +212981,Macbook Pro Laptop,1,1700.0,2019-06-08 19:29:00,370 West St, Atlanta,GA,30301 +212982,AA Batteries (4-pack),1,3.84,2019-06-27 09:43:00,248 Center St, Atlanta,GA,30301 +212983,AAA Batteries (4-pack),1,2.99,2019-06-24 11:37:00,959 Jefferson St, Boston,MA,02215 +212984,20in Monitor,1,109.99,2019-06-21 16:17:00,801 Meadow St, San Francisco,CA,94016 +212985,Lightning Charging Cable,1,14.95,2019-06-27 20:38:00,138 Hill St, New York City,NY,10001 +212986,Apple Airpods Headphones,1,150.0,2019-06-29 10:18:00,507 Madison St, Dallas,TX,75001 +212987,Wired Headphones,1,11.99,2019-06-10 19:17:00,754 13th St, San Francisco,CA,94016 +212988,Macbook Pro Laptop,1,1700.0,2019-06-09 00:20:00,948 8th St, San Francisco,CA,94016 +212989,Lightning Charging Cable,1,14.95,2019-06-15 19:51:00,670 8th St, San Francisco,CA,94016 +212990,USB-C Charging Cable,1,11.95,2019-06-08 11:07:00,969 Lakeview St, Boston,MA,02215 +212991,USB-C Charging Cable,2,11.95,2019-06-30 11:45:00,221 Ridge St, San Francisco,CA,94016 +212992,AA Batteries (4-pack),1,3.84,2019-06-29 16:22:00,939 Hickory St, Los Angeles,CA,90001 +212993,USB-C Charging Cable,1,11.95,2019-06-19 15:38:00,532 2nd St, Los Angeles,CA,90001 +212994,20in Monitor,1,109.99,2019-06-25 23:27:00,589 Walnut St, San Francisco,CA,94016 +212995,Wired Headphones,1,11.99,2019-06-03 13:40:00,764 Forest St, New York City,NY,10001 +212996,Wired Headphones,1,11.99,2019-06-06 15:59:00,131 2nd St, Boston,MA,02215 +212997,USB-C Charging Cable,1,11.95,2019-06-20 19:11:00,857 13th St, Seattle,WA,98101 +212998,AA Batteries (4-pack),2,3.84,2019-06-29 09:00:00,575 Jackson St, Los Angeles,CA,90001 +212999,Flatscreen TV,1,300.0,2019-06-24 09:51:00,197 West St, Portland,OR,97035 +213000,Wired Headphones,1,11.99,2019-06-26 23:22:00,925 North St, Boston,MA,02215 +213001,AA Batteries (4-pack),1,3.84,2019-06-04 10:38:00,146 Maple St, Austin,TX,73301 +213002,Lightning Charging Cable,1,14.95,2019-06-07 22:09:00,688 Spruce St, Boston,MA,02215 +213003,27in FHD Monitor,1,149.99,2019-06-06 22:02:00,131 Washington St, San Francisco,CA,94016 +213004,27in FHD Monitor,1,149.99,2019-06-14 20:36:00,976 Meadow St, Seattle,WA,98101 +213005,27in 4K Gaming Monitor,1,389.99,2019-06-26 18:20:00,943 Elm St, Atlanta,GA,30301 +213006,Wired Headphones,1,11.99,2019-06-09 06:39:00,478 Dogwood St, San Francisco,CA,94016 +213007,AAA Batteries (4-pack),1,2.99,2019-06-26 16:26:00,367 Meadow St, Dallas,TX,75001 +213008,AAA Batteries (4-pack),1,2.99,2019-06-29 08:59:00,314 Pine St, New York City,NY,10001 +213009,AA Batteries (4-pack),2,3.84,2019-06-23 13:51:00,786 Maple St, San Francisco,CA,94016 +213010,AAA Batteries (4-pack),2,2.99,2019-06-06 11:42:00,99 Center St, San Francisco,CA,94016 +213011,AA Batteries (4-pack),1,3.84,2019-06-15 07:53:00,166 Hill St, New York City,NY,10001 +213012,27in FHD Monitor,1,149.99,2019-06-20 09:38:00,922 Ridge St, Los Angeles,CA,90001 +213013,AAA Batteries (4-pack),1,2.99,2019-06-29 11:19:00,48 Adams St, Los Angeles,CA,90001 +213014,AA Batteries (4-pack),2,3.84,2019-06-04 12:58:00,426 Cedar St, Dallas,TX,75001 +213015,USB-C Charging Cable,1,11.95,2019-06-14 19:50:00,152 11th St, Seattle,WA,98101 +213016,Lightning Charging Cable,1,14.95,2019-06-03 13:13:00,601 Spruce St, Los Angeles,CA,90001 +213017,USB-C Charging Cable,1,11.95,2019-06-17 12:12:00,879 Highland St, Los Angeles,CA,90001 +213018,27in FHD Monitor,1,149.99,2019-06-06 10:24:00,578 12th St, San Francisco,CA,94016 +213019,AAA Batteries (4-pack),1,2.99,2019-06-04 00:04:00,280 10th St, San Francisco,CA,94016 +213020,Lightning Charging Cable,1,14.95,2019-06-01 19:03:00,411 River St, Austin,TX,73301 +213021,Flatscreen TV,1,300.0,2019-06-17 14:06:00,31 Jefferson St, New York City,NY,10001 +213022,Flatscreen TV,1,300.0,2019-06-07 15:50:00,739 Maple St, Atlanta,GA,30301 +213023,Bose SoundSport Headphones,1,99.99,2019-06-16 08:46:00,322 Cherry St, Atlanta,GA,30301 +213024,USB-C Charging Cable,1,11.95,2019-06-18 13:50:00,328 11th St, San Francisco,CA,94016 +213025,27in FHD Monitor,1,149.99,2019-06-12 15:33:00,369 9th St, Dallas,TX,75001 +213026,AA Batteries (4-pack),1,3.84,2019-06-08 13:02:00,400 Adams St, Boston,MA,02215 +213027,iPhone,1,700.0,2019-06-30 23:12:00,615 Adams St, Los Angeles,CA,90001 +213028,Apple Airpods Headphones,1,150.0,2019-06-18 15:18:00,121 Spruce St, Portland,OR,97035 +213029,Wired Headphones,1,11.99,2019-06-14 18:30:00,642 Lincoln St, Boston,MA,02215 +213030,34in Ultrawide Monitor,1,379.99,2019-06-08 09:36:00,317 Chestnut St, New York City,NY,10001 +213031,Google Phone,1,600.0,2019-06-17 07:27:00,92 5th St, Los Angeles,CA,90001 +213032,USB-C Charging Cable,1,11.95,2019-06-12 19:32:00,307 Willow St, New York City,NY,10001 +213033,iPhone,1,700.0,2019-06-16 11:32:00,993 Lincoln St, San Francisco,CA,94016 +213033,Lightning Charging Cable,1,14.95,2019-06-16 11:32:00,993 Lincoln St, San Francisco,CA,94016 +213034,20in Monitor,1,109.99,2019-06-27 00:31:00,956 Dogwood St, New York City,NY,10001 +213035,USB-C Charging Cable,1,11.95,2019-06-23 20:03:00,398 2nd St, Dallas,TX,75001 +213036,Lightning Charging Cable,1,14.95,2019-06-30 22:10:00,918 Washington St, Atlanta,GA,30301 +213037,Wired Headphones,2,11.99,2019-06-10 15:16:00,655 Pine St, Dallas,TX,75001 +213038,Wired Headphones,1,11.99,2019-06-09 19:19:00,718 Willow St, Los Angeles,CA,90001 +213039,USB-C Charging Cable,1,11.95,2019-06-29 18:13:00,309 Willow St, Los Angeles,CA,90001 +213040,USB-C Charging Cable,1,11.95,2019-06-01 09:55:00,196 7th St, Portland,OR,97035 +213041,Wired Headphones,1,11.99,2019-06-03 10:26:00,720 South St, Portland,OR,97035 +213042,Bose SoundSport Headphones,1,99.99,2019-06-24 18:35:00,960 Spruce St, San Francisco,CA,94016 +213043,AA Batteries (4-pack),3,3.84,2019-06-10 12:16:00,495 Center St, New York City,NY,10001 +213044,USB-C Charging Cable,1,11.95,2019-06-22 23:20:00,979 Pine St, San Francisco,CA,94016 +213045,Bose SoundSport Headphones,1,99.99,2019-06-30 20:40:00,845 Madison St, Portland,ME,04101 +213046,Wired Headphones,1,11.99,2019-06-30 16:23:00,697 Cherry St, Dallas,TX,75001 +213047,AAA Batteries (4-pack),1,2.99,2019-06-06 16:58:00,303 Wilson St, Atlanta,GA,30301 +213048,Macbook Pro Laptop,1,1700.0,2019-06-29 10:01:00,255 West St, Austin,TX,73301 +213049,AAA Batteries (4-pack),2,2.99,2019-06-21 12:55:00,844 Willow St, Portland,ME,04101 +213050,27in 4K Gaming Monitor,1,389.99,2019-06-19 17:58:00,78 Center St, Los Angeles,CA,90001 +213051,Wired Headphones,1,11.99,2019-06-16 20:06:00,92 13th St, Los Angeles,CA,90001 +213052,Bose SoundSport Headphones,1,99.99,2019-06-09 18:45:00,927 10th St, Boston,MA,02215 +213053,27in FHD Monitor,1,149.99,2019-06-18 12:29:00,944 Walnut St, Los Angeles,CA,90001 +213054,Google Phone,1,600.0,2019-06-21 12:07:00,476 Forest St, Boston,MA,02215 +213055,AAA Batteries (4-pack),3,2.99,2019-06-01 13:34:00,482 Spruce St, San Francisco,CA,94016 +213056,USB-C Charging Cable,1,11.95,2019-06-11 13:01:00,743 5th St, Los Angeles,CA,90001 +213057,AAA Batteries (4-pack),2,2.99,2019-06-20 12:05:00,526 Meadow St, Los Angeles,CA,90001 +213058,Lightning Charging Cable,1,14.95,2019-06-13 21:11:00,233 River St, Portland,OR,97035 +213059,Lightning Charging Cable,1,14.95,2019-06-04 11:32:00,46 Adams St, Atlanta,GA,30301 +213060,AA Batteries (4-pack),1,3.84,2019-06-21 12:35:00,453 7th St, Boston,MA,02215 +213061,ThinkPad Laptop,1,999.99,2019-06-04 13:17:00,564 10th St, New York City,NY,10001 +213062,27in FHD Monitor,1,149.99,2019-06-30 08:41:00,518 2nd St, Boston,MA,02215 +213063,AA Batteries (4-pack),1,3.84,2019-06-10 10:24:00,68 Wilson St, New York City,NY,10001 +213064,AA Batteries (4-pack),1,3.84,2019-06-25 19:50:00,514 Johnson St, San Francisco,CA,94016 +213065,Lightning Charging Cable,1,14.95,2019-06-23 13:56:00,670 13th St, Atlanta,GA,30301 +213066,Apple Airpods Headphones,1,150.0,2019-06-23 13:12:00,452 13th St, San Francisco,CA,94016 +213067,Lightning Charging Cable,1,14.95,2019-06-19 22:34:00,958 8th St, Los Angeles,CA,90001 +213068,AAA Batteries (4-pack),2,2.99,2019-06-08 16:56:00,796 8th St, Seattle,WA,98101 +213069,Apple Airpods Headphones,1,150.0,2019-06-19 00:17:00,59 8th St, San Francisco,CA,94016 +213070,Bose SoundSport Headphones,1,99.99,2019-06-26 09:12:00,636 Madison St, New York City,NY,10001 +213071,AA Batteries (4-pack),1,3.84,2019-06-14 19:10:00,622 Walnut St, Dallas,TX,75001 +213072,AAA Batteries (4-pack),2,2.99,2019-06-17 14:34:00,191 Meadow St, Atlanta,GA,30301 +213073,Flatscreen TV,1,300.0,2019-06-19 10:55:00,68 Sunset St, Portland,OR,97035 +213074,Bose SoundSport Headphones,1,99.99,2019-06-13 08:28:00,351 5th St, Boston,MA,02215 +213075,Apple Airpods Headphones,1,150.0,2019-06-17 19:54:00,658 Main St, Austin,TX,73301 +213076,AA Batteries (4-pack),1,3.84,2019-06-21 00:56:00,211 Cherry St, Seattle,WA,98101 +213077,Wired Headphones,1,11.99,2019-06-03 20:37:00,717 Church St, Austin,TX,73301 +213078,Google Phone,1,600.0,2019-06-28 08:57:00,863 West St, New York City,NY,10001 +213078,USB-C Charging Cable,1,11.95,2019-06-28 08:57:00,863 West St, New York City,NY,10001 +213079,USB-C Charging Cable,2,11.95,2019-06-24 10:26:00,667 Sunset St, San Francisco,CA,94016 +213080,Wired Headphones,1,11.99,2019-06-25 20:37:00,361 Cherry St, Los Angeles,CA,90001 +213081,LG Dryer,1,600.0,2019-06-29 17:53:00,513 Main St, Atlanta,GA,30301 +213082,Wired Headphones,1,11.99,2019-06-11 16:11:00,449 Johnson St, Portland,OR,97035 +213083,Apple Airpods Headphones,1,150.0,2019-06-20 17:43:00,944 Lakeview St, San Francisco,CA,94016 +213084,Lightning Charging Cable,1,14.95,2019-06-27 11:57:00,754 9th St, New York City,NY,10001 +213085,Wired Headphones,1,11.99,2019-06-21 11:31:00,550 Church St, New York City,NY,10001 +213086,20in Monitor,1,109.99,2019-06-03 19:15:00,506 Lakeview St, Seattle,WA,98101 +213087,ThinkPad Laptop,1,999.99,2019-06-29 16:50:00,612 Washington St, San Francisco,CA,94016 +213088,Apple Airpods Headphones,1,150.0,2019-06-11 08:57:00,426 Madison St, Atlanta,GA,30301 +213089,Apple Airpods Headphones,1,150.0,2019-06-04 10:18:00,661 Willow St, Portland,OR,97035 +213090,Bose SoundSport Headphones,1,99.99,2019-06-10 11:27:00,468 Lincoln St, San Francisco,CA,94016 +213091,USB-C Charging Cable,1,11.95,2019-06-11 10:20:00,895 Spruce St, San Francisco,CA,94016 +213092,27in 4K Gaming Monitor,1,389.99,2019-06-05 16:42:00,919 Washington St, New York City,NY,10001 +213093,USB-C Charging Cable,1,11.95,2019-06-10 17:32:00,484 Highland St, New York City,NY,10001 +213094,LG Washing Machine,1,600.0,2019-06-02 13:06:00,269 Willow St, San Francisco,CA,94016 +213095,AA Batteries (4-pack),1,3.84,2019-06-17 16:58:00,883 11th St, San Francisco,CA,94016 +213096,Flatscreen TV,1,300.0,2019-06-12 12:51:00,453 Lincoln St, Seattle,WA,98101 +213097,Google Phone,1,600.0,2019-06-04 21:10:00,611 Hickory St, San Francisco,CA,94016 +213098,AA Batteries (4-pack),2,3.84,2019-06-16 11:10:00,941 Wilson St, Austin,TX,73301 +213099,27in FHD Monitor,1,149.99,2019-06-30 20:22:00,347 6th St, Los Angeles,CA,90001 +213100,Wired Headphones,1,11.99,2019-06-13 09:27:00,422 Wilson St, Portland,OR,97035 +213101,AAA Batteries (4-pack),1,2.99,2019-06-04 12:19:00,231 Lake St, Dallas,TX,75001 +213102,USB-C Charging Cable,1,11.95,2019-06-07 22:48:00,506 Center St, Atlanta,GA,30301 +213103,Lightning Charging Cable,1,14.95,2019-06-11 18:51:00,76 14th St, San Francisco,CA,94016 +213104,Lightning Charging Cable,1,14.95,2019-06-17 10:14:00,507 8th St, Austin,TX,73301 +213105,Lightning Charging Cable,1,14.95,2019-06-08 13:18:00,276 Wilson St, Dallas,TX,75001 +213106,USB-C Charging Cable,1,11.95,2019-06-11 16:07:00,62 Church St, Dallas,TX,75001 +213107,AAA Batteries (4-pack),2,2.99,2019-06-27 11:03:00,341 River St, Portland,OR,97035 +213108,AAA Batteries (4-pack),1,2.99,2019-06-13 08:39:00,738 Cedar St, Dallas,TX,75001 +213109,27in 4K Gaming Monitor,1,389.99,2019-06-03 16:12:00,821 Walnut St, San Francisco,CA,94016 +213110,iPhone,1,700.0,2019-06-07 17:26:00,864 9th St, New York City,NY,10001 +213111,USB-C Charging Cable,1,11.95,2019-06-15 22:38:00,740 6th St, San Francisco,CA,94016 +213112,Lightning Charging Cable,1,14.95,2019-06-12 18:16:00,93 11th St, Los Angeles,CA,90001 +213113,Bose SoundSport Headphones,1,99.99,2019-06-08 17:45:00,573 Adams St, New York City,NY,10001 +213114,Bose SoundSport Headphones,1,99.99,2019-06-27 17:17:00,158 4th St, Portland,ME,04101 +213115,Wired Headphones,1,11.99,2019-06-04 12:37:00,63 Jefferson St, Portland,OR,97035 +213116,20in Monitor,1,109.99,2019-06-17 08:46:00,344 2nd St, San Francisco,CA,94016 +213117,AA Batteries (4-pack),2,3.84,2019-06-14 13:29:00,518 9th St, San Francisco,CA,94016 +213118,Apple Airpods Headphones,1,150.0,2019-06-13 09:50:00,757 South St, San Francisco,CA,94016 +213119,Apple Airpods Headphones,1,150.0,2019-06-14 13:15:00,764 11th St, San Francisco,CA,94016 +213120,Bose SoundSport Headphones,1,99.99,2019-06-24 07:08:00,933 Madison St, Atlanta,GA,30301 +213121,Wired Headphones,1,11.99,2019-06-11 12:38:00,258 2nd St, Portland,OR,97035 +213122,USB-C Charging Cable,1,11.95,2019-06-06 11:19:00,243 11th St, Portland,OR,97035 +213123,27in 4K Gaming Monitor,1,389.99,2019-06-08 19:47:00,760 11th St, New York City,NY,10001 +213124,Lightning Charging Cable,1,14.95,2019-06-19 16:40:00,183 Elm St, Los Angeles,CA,90001 +213125,Macbook Pro Laptop,1,1700.0,2019-06-20 11:01:00,148 Wilson St, Austin,TX,73301 +213126,Vareebadd Phone,1,400.0,2019-06-09 12:36:00,877 Spruce St, San Francisco,CA,94016 +213127,AA Batteries (4-pack),2,3.84,2019-06-29 18:36:00,985 Adams St, New York City,NY,10001 +213128,USB-C Charging Cable,1,11.95,2019-06-20 10:02:00,136 Johnson St, San Francisco,CA,94016 +213129,Apple Airpods Headphones,1,150.0,2019-06-20 14:58:00,69 Lincoln St, San Francisco,CA,94016 +213130,27in 4K Gaming Monitor,1,389.99,2019-06-21 15:42:00,46 Washington St, Austin,TX,73301 +213131,Flatscreen TV,1,300.0,2019-06-21 12:09:00,537 Church St, New York City,NY,10001 +213132,AA Batteries (4-pack),2,3.84,2019-06-19 00:06:00,657 12th St, Los Angeles,CA,90001 +213133,34in Ultrawide Monitor,1,379.99,2019-06-12 11:13:00,658 Highland St, New York City,NY,10001 +213134,Lightning Charging Cable,1,14.95,2019-06-05 16:24:00,596 Wilson St, Boston,MA,02215 +213135,USB-C Charging Cable,1,11.95,2019-06-09 08:51:00,306 7th St, Los Angeles,CA,90001 +213136,Wired Headphones,1,11.99,2019-06-03 23:26:00,922 Highland St, Dallas,TX,75001 +213137,Flatscreen TV,1,300.0,2019-06-05 22:34:00,506 Cherry St, San Francisco,CA,94016 +213138,Google Phone,1,600.0,2019-06-29 15:17:00,665 South St, New York City,NY,10001 +213138,USB-C Charging Cable,1,11.95,2019-06-29 15:17:00,665 South St, New York City,NY,10001 +213138,Wired Headphones,1,11.99,2019-06-29 15:17:00,665 South St, New York City,NY,10001 +213139,iPhone,1,700.0,2019-06-24 17:35:00,315 4th St, Seattle,WA,98101 +213140,ThinkPad Laptop,1,999.99,2019-06-17 18:11:00,503 Park St, San Francisco,CA,94016 +213141,27in FHD Monitor,1,149.99,2019-06-10 09:22:00,766 Center St, Austin,TX,73301 +213142,USB-C Charging Cable,1,11.95,2019-06-24 14:28:00,387 1st St, Los Angeles,CA,90001 +213143,AA Batteries (4-pack),2,3.84,2019-06-22 12:36:00,429 14th St, New York City,NY,10001 +213144,AAA Batteries (4-pack),2,2.99,2019-06-23 23:57:00,444 Jefferson St, Boston,MA,02215 +213145,Lightning Charging Cable,1,14.95,2019-06-20 14:22:00,165 13th St, Dallas,TX,75001 +213146,AAA Batteries (4-pack),1,2.99,2019-06-18 22:34:00,855 Hill St, Los Angeles,CA,90001 +213147,AA Batteries (4-pack),1,3.84,2019-06-02 09:55:00,782 Hill St, Portland,OR,97035 +213148,27in FHD Monitor,1,149.99,2019-06-04 14:54:00,744 9th St, San Francisco,CA,94016 +213149,AA Batteries (4-pack),1,3.84,2019-06-15 14:56:00,102 Church St, San Francisco,CA,94016 +213150,iPhone,1,700.0,2019-06-16 10:44:00,148 Chestnut St, Seattle,WA,98101 +213151,AA Batteries (4-pack),2,3.84,2019-06-09 19:51:00,196 13th St, New York City,NY,10001 +213152,Bose SoundSport Headphones,1,99.99,2019-06-17 14:10:00,835 Park St, Los Angeles,CA,90001 +213153,AAA Batteries (4-pack),1,2.99,2019-06-08 17:01:00,720 7th St, New York City,NY,10001 +213154,USB-C Charging Cable,1,11.95,2019-06-12 19:34:00,446 1st St, Atlanta,GA,30301 +213155,Lightning Charging Cable,1,14.95,2019-06-22 07:44:00,831 Madison St, Austin,TX,73301 +213156,iPhone,1,700.0,2019-06-15 16:01:00,547 12th St, San Francisco,CA,94016 +213157,Lightning Charging Cable,2,14.95,2019-06-30 17:53:00,228 8th St, Los Angeles,CA,90001 +213158,AA Batteries (4-pack),1,3.84,2019-06-06 17:01:00,427 7th St, Seattle,WA,98101 +213159,iPhone,1,700.0,2019-06-30 18:37:00,349 Madison St, Los Angeles,CA,90001 +213159,Apple Airpods Headphones,1,150.0,2019-06-30 18:37:00,349 Madison St, Los Angeles,CA,90001 +213160,Apple Airpods Headphones,1,150.0,2019-06-27 11:41:00,973 Lake St, Dallas,TX,75001 +213161,AA Batteries (4-pack),2,3.84,2019-06-04 14:37:00,913 4th St, Dallas,TX,75001 +213162,Apple Airpods Headphones,1,150.0,2019-06-12 13:55:00,12 Sunset St, Portland,OR,97035 +213163,USB-C Charging Cable,1,11.95,2019-06-01 12:51:00,798 5th St, Seattle,WA,98101 +213164,Macbook Pro Laptop,1,1700.0,2019-06-15 18:11:00,928 Forest St, Los Angeles,CA,90001 +213165,AA Batteries (4-pack),1,3.84,2019-06-16 11:22:00,912 Walnut St, New York City,NY,10001 +213166,Google Phone,1,600.0,2019-06-05 16:42:00,64 Church St, Seattle,WA,98101 +213167,Lightning Charging Cable,1,14.95,2019-06-05 21:19:00,917 Maple St, San Francisco,CA,94016 +213168,AA Batteries (4-pack),2,3.84,2019-06-02 21:22:00,644 Hill St, Seattle,WA,98101 +213169,Apple Airpods Headphones,1,150.0,2019-06-24 16:54:00,217 Madison St, Boston,MA,02215 +213170,Lightning Charging Cable,1,14.95,2019-06-06 10:39:00,826 Sunset St, Boston,MA,02215 +213171,iPhone,1,700.0,2019-06-19 18:38:00,75 Willow St, Portland,OR,97035 +213172,Lightning Charging Cable,2,14.95,2019-06-08 14:10:00,418 Hickory St, Austin,TX,73301 +213173,27in 4K Gaming Monitor,1,389.99,2019-06-15 14:23:00,935 River St, New York City,NY,10001 +213174,Wired Headphones,1,11.99,2019-06-11 17:50:00,40 1st St, Atlanta,GA,30301 +213175,iPhone,1,700.0,2019-06-04 16:40:00,816 Willow St, Boston,MA,02215 +213175,Lightning Charging Cable,1,14.95,2019-06-04 16:40:00,816 Willow St, Boston,MA,02215 +213176,Wired Headphones,1,11.99,2019-06-12 21:12:00,640 2nd St, Los Angeles,CA,90001 +213177,AA Batteries (4-pack),1,3.84,2019-06-29 15:23:00,343 Walnut St, San Francisco,CA,94016 +213178,27in FHD Monitor,1,149.99,2019-06-19 08:59:00,42 10th St, Boston,MA,02215 +213179,Apple Airpods Headphones,1,150.0,2019-06-15 12:44:00,796 Hill St, Los Angeles,CA,90001 +213180,Wired Headphones,1,11.99,2019-06-21 18:22:00,579 Wilson St, Los Angeles,CA,90001 +213181,Flatscreen TV,1,300.0,2019-06-25 14:48:00,791 Johnson St, Portland,OR,97035 +213182,USB-C Charging Cable,1,11.95,2019-06-10 09:33:00,626 Highland St, San Francisco,CA,94016 +213183,USB-C Charging Cable,1,11.95,2019-06-27 12:49:00,938 North St, Los Angeles,CA,90001 +213184,AA Batteries (4-pack),4,3.84,2019-06-02 10:37:00,703 Main St, San Francisco,CA,94016 +213185,27in 4K Gaming Monitor,1,389.99,2019-06-26 15:21:00,200 9th St, San Francisco,CA,94016 +213186,USB-C Charging Cable,1,11.95,2019-06-10 17:21:00,558 Ridge St, Los Angeles,CA,90001 +213187,27in 4K Gaming Monitor,1,389.99,2019-06-06 21:14:00,575 North St, San Francisco,CA,94016 +213188,AAA Batteries (4-pack),1,2.99,2019-06-13 21:33:00,339 1st St, San Francisco,CA,94016 +213189,27in FHD Monitor,1,149.99,2019-06-08 00:03:00,190 Center St, Austin,TX,73301 +213190,Vareebadd Phone,1,400.0,2019-06-17 17:16:00,506 Highland St, Austin,TX,73301 +213191,Bose SoundSport Headphones,1,99.99,2019-06-03 09:26:00,67 Spruce St, San Francisco,CA,94016 +213192,Google Phone,1,600.0,2019-06-11 17:23:00,260 Elm St, Portland,OR,97035 +213192,USB-C Charging Cable,1,11.95,2019-06-11 17:23:00,260 Elm St, Portland,OR,97035 +213193,Apple Airpods Headphones,1,150.0,2019-06-10 15:53:00,700 Forest St, Los Angeles,CA,90001 +213194,Apple Airpods Headphones,1,150.0,2019-06-12 21:33:00,342 Walnut St, Seattle,WA,98101 +213195,Lightning Charging Cable,1,14.95,2019-06-30 13:22:00,205 Highland St, New York City,NY,10001 +213196,LG Washing Machine,1,600.0,2019-06-08 17:59:00,592 Hickory St, Atlanta,GA,30301 +213197,AAA Batteries (4-pack),1,2.99,2019-06-08 21:59:00,634 Forest St, New York City,NY,10001 +213198,Wired Headphones,1,11.99,2019-06-14 09:34:00,137 Maple St, New York City,NY,10001 +213199,Wired Headphones,1,11.99,2019-06-12 06:02:00,374 Ridge St, Dallas,TX,75001 +213200,27in 4K Gaming Monitor,1,389.99,2019-06-16 15:32:00,479 Pine St, Atlanta,GA,30301 +213201,Wired Headphones,1,11.99,2019-06-01 22:59:00,749 7th St, Dallas,TX,75001 +213202,Google Phone,1,600.0,2019-06-12 18:14:00,774 Maple St, New York City,NY,10001 +213203,AAA Batteries (4-pack),2,2.99,2019-06-15 16:49:00,628 Church St, New York City,NY,10001 +213204,Bose SoundSport Headphones,2,99.99,2019-06-13 21:32:00,520 Johnson St, San Francisco,CA,94016 +213205,27in FHD Monitor,1,149.99,2019-06-10 16:20:00,49 River St, Portland,OR,97035 +213206,Lightning Charging Cable,2,14.95,2019-06-21 12:50:00,109 8th St, Portland,OR,97035 +213207,Lightning Charging Cable,1,14.95,2019-06-12 22:51:00,931 Walnut St, Los Angeles,CA,90001 +213208,Wired Headphones,3,11.99,2019-06-12 14:35:00,994 Dogwood St, San Francisco,CA,94016 +213209,Flatscreen TV,1,300.0,2019-06-02 01:59:00,472 Wilson St, San Francisco,CA,94016 +213210,AAA Batteries (4-pack),2,2.99,2019-06-22 18:15:00,156 Madison St, Seattle,WA,98101 +213211,Bose SoundSport Headphones,1,99.99,2019-06-05 16:59:00,415 Chestnut St, San Francisco,CA,94016 +213212,Google Phone,1,600.0,2019-06-29 13:21:00,977 Church St, Los Angeles,CA,90001 +213212,USB-C Charging Cable,2,11.95,2019-06-29 13:21:00,977 Church St, Los Angeles,CA,90001 +213213,Lightning Charging Cable,1,14.95,2019-06-30 20:46:00,233 Wilson St, Boston,MA,02215 +213214,Lightning Charging Cable,1,14.95,2019-06-13 23:02:00,306 14th St, Portland,OR,97035 +213215,27in FHD Monitor,1,149.99,2019-06-26 20:58:00,624 Madison St, Boston,MA,02215 +213216,iPhone,1,700.0,2019-06-22 08:04:00,40 Washington St, Los Angeles,CA,90001 +213216,Lightning Charging Cable,1,14.95,2019-06-22 08:04:00,40 Washington St, Los Angeles,CA,90001 +213217,AA Batteries (4-pack),3,3.84,2019-06-03 15:34:00,763 6th St, Seattle,WA,98101 +213218,Wired Headphones,1,11.99,2019-06-29 18:13:00,423 9th St, San Francisco,CA,94016 +213219,AAA Batteries (4-pack),2,2.99,2019-06-18 18:48:00,46 Cedar St, Seattle,WA,98101 +213220,Lightning Charging Cable,1,14.95,2019-06-18 01:19:00,264 9th St, Los Angeles,CA,90001 +213221,AAA Batteries (4-pack),1,2.99,2019-06-06 14:20:00,20 Meadow St, Atlanta,GA,30301 +213222,Wired Headphones,1,11.99,2019-06-11 14:39:00,369 2nd St, Los Angeles,CA,90001 +213223,Flatscreen TV,1,300.0,2019-06-30 01:28:00,369 River St, Austin,TX,73301 +213224,Lightning Charging Cable,1,14.95,2019-06-24 23:59:00,746 West St, San Francisco,CA,94016 +213225,AAA Batteries (4-pack),2,2.99,2019-06-02 07:06:00,758 1st St, San Francisco,CA,94016 +213226,AAA Batteries (4-pack),1,2.99,2019-06-08 18:07:00,355 4th St, New York City,NY,10001 +213227,34in Ultrawide Monitor,1,379.99,2019-06-12 14:41:00,921 Church St, San Francisco,CA,94016 +213228,Lightning Charging Cable,1,14.95,2019-06-07 19:31:00,783 West St, Boston,MA,02215 +213229,Bose SoundSport Headphones,1,99.99,2019-06-21 21:48:00,707 Ridge St, Portland,OR,97035 +213230,Wired Headphones,2,11.99,2019-06-21 15:25:00,404 Chestnut St, Boston,MA,02215 +213231,AA Batteries (4-pack),2,3.84,2019-06-08 19:46:00,163 Ridge St, San Francisco,CA,94016 +213231,27in 4K Gaming Monitor,1,389.99,2019-06-08 19:46:00,163 Ridge St, San Francisco,CA,94016 +213232,Lightning Charging Cable,1,14.95,2019-06-14 13:00:00,305 14th St, Boston,MA,02215 +213233,Lightning Charging Cable,1,14.95,2019-06-02 10:55:00,790 West St, San Francisco,CA,94016 +213234,AAA Batteries (4-pack),1,2.99,2019-06-06 18:32:00,603 Jackson St, Dallas,TX,75001 +213235,Bose SoundSport Headphones,1,99.99,2019-06-17 17:20:00,235 Willow St, Boston,MA,02215 +213236,AAA Batteries (4-pack),1,2.99,2019-06-01 13:23:00,134 Hill St, Los Angeles,CA,90001 +213237,Wired Headphones,1,11.99,2019-06-20 19:09:00,449 North St, Seattle,WA,98101 +213238,Apple Airpods Headphones,1,150.0,2019-06-30 14:28:00,849 Lake St, Atlanta,GA,30301 +213239,AA Batteries (4-pack),1,3.84,2019-06-19 08:05:00,263 13th St, Dallas,TX,75001 +213240,USB-C Charging Cable,3,11.95,2019-06-26 12:05:00,85 South St, Boston,MA,02215 +213241,Macbook Pro Laptop,1,1700.0,2019-06-04 19:44:00,527 West St, Portland,OR,97035 +213242,27in FHD Monitor,1,149.99,2019-06-05 17:10:00,654 1st St, Boston,MA,02215 +213243,Lightning Charging Cable,1,14.95,2019-06-01 19:08:00,34 Lincoln St, Seattle,WA,98101 +213244,AAA Batteries (4-pack),2,2.99,2019-06-23 13:54:00,303 Ridge St, Seattle,WA,98101 +213245,AA Batteries (4-pack),1,3.84,2019-06-15 15:08:00,185 River St, Los Angeles,CA,90001 +213246,AA Batteries (4-pack),1,3.84,2019-06-06 11:59:00,265 Highland St, Atlanta,GA,30301 +213247,Google Phone,1,600.0,2019-06-19 15:35:00,26 Hill St, Los Angeles,CA,90001 +213247,Wired Headphones,1,11.99,2019-06-19 15:35:00,26 Hill St, Los Angeles,CA,90001 +213248,AAA Batteries (4-pack),2,2.99,2019-06-21 17:42:00,595 Cherry St, Dallas,TX,75001 +213249,Wired Headphones,1,11.99,2019-06-18 16:48:00,743 Lakeview St, New York City,NY,10001 +213250,USB-C Charging Cable,1,11.95,2019-06-15 00:01:00,913 4th St, San Francisco,CA,94016 +213251,Wired Headphones,1,11.99,2019-06-17 21:34:00,321 8th St, Boston,MA,02215 +213252,iPhone,1,700.0,2019-06-06 10:06:00,251 Chestnut St, Los Angeles,CA,90001 +213253,Bose SoundSport Headphones,1,99.99,2019-06-08 11:33:00,732 Highland St, Dallas,TX,75001 +213254,27in 4K Gaming Monitor,1,389.99,2019-06-06 12:00:00,626 Ridge St, San Francisco,CA,94016 +213255,AAA Batteries (4-pack),1,2.99,2019-06-11 10:35:00,933 12th St, Seattle,WA,98101 +213256,Flatscreen TV,1,300.0,2019-06-15 11:16:00,489 Lincoln St, Atlanta,GA,30301 +213257,Apple Airpods Headphones,1,150.0,2019-06-08 11:06:00,593 Cedar St, Dallas,TX,75001 +213258,27in 4K Gaming Monitor,1,389.99,2019-06-22 17:37:00,109 Cherry St, Seattle,WA,98101 +213259,USB-C Charging Cable,1,11.95,2019-06-17 21:52:00,976 Main St, Boston,MA,02215 +213260,34in Ultrawide Monitor,1,379.99,2019-06-23 23:57:00,811 Center St, Austin,TX,73301 +213261,Wired Headphones,1,11.99,2019-06-17 08:18:00,42 Sunset St, Seattle,WA,98101 +213262,Wired Headphones,1,11.99,2019-06-19 12:52:00,710 5th St, San Francisco,CA,94016 +213263,Lightning Charging Cable,1,14.95,2019-06-04 09:04:00,546 Forest St, Los Angeles,CA,90001 +213264,34in Ultrawide Monitor,1,379.99,2019-06-24 18:17:00,913 Hill St, Austin,TX,73301 +213265,AAA Batteries (4-pack),2,2.99,2019-06-20 21:10:00,795 1st St, San Francisco,CA,94016 +213266,20in Monitor,1,109.99,2019-06-07 14:33:00,422 10th St, Seattle,WA,98101 +213267,Apple Airpods Headphones,1,150.0,2019-06-24 19:59:00,631 Ridge St, Boston,MA,02215 +213267,AAA Batteries (4-pack),5,2.99,2019-06-24 19:59:00,631 Ridge St, Boston,MA,02215 +213268,iPhone,1,700.0,2019-06-21 20:13:00,307 South St, Atlanta,GA,30301 +213268,Lightning Charging Cable,1,14.95,2019-06-21 20:13:00,307 South St, Atlanta,GA,30301 +213269,Macbook Pro Laptop,1,1700.0,2019-06-04 12:12:00,301 Pine St, Boston,MA,02215 +213270,USB-C Charging Cable,1,11.95,2019-06-21 15:21:00,909 Forest St, Austin,TX,73301 +213271,USB-C Charging Cable,1,11.95,2019-06-02 22:01:00,19 Cedar St, New York City,NY,10001 +213272,27in 4K Gaming Monitor,1,389.99,2019-06-28 08:43:00,484 Johnson St, San Francisco,CA,94016 +213273,Lightning Charging Cable,1,14.95,2019-06-30 21:06:00,268 8th St, Los Angeles,CA,90001 +213274,iPhone,1,700.0,2019-06-21 23:59:00,434 Lake St, Los Angeles,CA,90001 +213274,Lightning Charging Cable,1,14.95,2019-06-21 23:59:00,434 Lake St, Los Angeles,CA,90001 +213275,Lightning Charging Cable,1,14.95,2019-06-14 17:02:00,819 Wilson St, New York City,NY,10001 +213276,AAA Batteries (4-pack),2,2.99,2019-06-06 16:44:00,399 Madison St, Los Angeles,CA,90001 +213277,Lightning Charging Cable,1,14.95,2019-06-14 10:16:00,766 Forest St, Atlanta,GA,30301 +213278,iPhone,1,700.0,2019-06-22 08:56:00,305 Johnson St, New York City,NY,10001 +213279,AA Batteries (4-pack),1,3.84,2019-06-11 15:16:00,339 Chestnut St, Los Angeles,CA,90001 +213280,AAA Batteries (4-pack),2,2.99,2019-06-28 11:36:00,559 6th St, Boston,MA,02215 +213281,27in FHD Monitor,1,149.99,2019-06-10 16:10:00,361 North St, San Francisco,CA,94016 +213282,Wired Headphones,1,11.99,2019-06-10 17:39:00,849 Jefferson St, New York City,NY,10001 +213283,Apple Airpods Headphones,1,150.0,2019-06-15 19:08:00,30 River St, San Francisco,CA,94016 +213284,Lightning Charging Cable,1,14.95,2019-06-03 21:21:00,114 Madison St, San Francisco,CA,94016 +213285,AAA Batteries (4-pack),1,2.99,2019-06-22 04:09:00,579 Walnut St, Atlanta,GA,30301 +213286,AA Batteries (4-pack),1,3.84,2019-06-19 12:21:00,869 Johnson St, Los Angeles,CA,90001 +213287,Lightning Charging Cable,1,14.95,2019-06-19 18:56:00,314 2nd St, New York City,NY,10001 +213288,USB-C Charging Cable,1,11.95,2019-06-16 12:32:00,718 Spruce St, Atlanta,GA,30301 +213289,34in Ultrawide Monitor,1,379.99,2019-06-19 22:33:00,404 11th St, Seattle,WA,98101 +213290,Lightning Charging Cable,1,14.95,2019-06-19 21:42:00,466 Adams St, San Francisco,CA,94016 +213291,AAA Batteries (4-pack),1,2.99,2019-06-05 23:06:00,246 Spruce St, Dallas,TX,75001 +213292,AAA Batteries (4-pack),2,2.99,2019-06-25 00:05:00,175 Wilson St, New York City,NY,10001 +213293,ThinkPad Laptop,1,999.99,2019-06-06 15:30:00,824 6th St, Los Angeles,CA,90001 +213294,Google Phone,1,600.0,2019-06-22 13:33:00,522 13th St, Portland,ME,04101 +213295,27in FHD Monitor,1,149.99,2019-06-05 16:36:00,312 13th St, Los Angeles,CA,90001 +213296,Bose SoundSport Headphones,1,99.99,2019-06-29 20:41:00,464 Cherry St, San Francisco,CA,94016 +213297,AA Batteries (4-pack),1,3.84,2019-06-30 13:49:00,186 Elm St, Dallas,TX,75001 +213298,Apple Airpods Headphones,1,150.0,2019-06-01 14:22:00,959 Lakeview St, San Francisco,CA,94016 +213299,iPhone,1,700.0,2019-06-05 14:09:00,699 14th St, New York City,NY,10001 +213299,Lightning Charging Cable,1,14.95,2019-06-05 14:09:00,699 14th St, New York City,NY,10001 +213300,Vareebadd Phone,1,400.0,2019-06-24 16:54:00,110 Jefferson St, Dallas,TX,75001 +213301,Macbook Pro Laptop,1,1700.0,2019-06-16 12:45:00,376 Park St, San Francisco,CA,94016 +213302,27in 4K Gaming Monitor,1,389.99,2019-06-02 15:11:00,905 11th St, San Francisco,CA,94016 +213303,Apple Airpods Headphones,1,150.0,2019-06-07 20:09:00,309 Jefferson St, New York City,NY,10001 +213304,Lightning Charging Cable,1,14.95,2019-06-27 11:12:00,377 11th St, Boston,MA,02215 +213305,34in Ultrawide Monitor,1,379.99,2019-06-24 04:40:00,505 Park St, Los Angeles,CA,90001 +213306,Lightning Charging Cable,2,14.95,2019-06-23 20:38:00,543 Walnut St, Los Angeles,CA,90001 +213307,34in Ultrawide Monitor,1,379.99,2019-06-30 12:43:00,985 2nd St, New York City,NY,10001 +213308,Wired Headphones,1,11.99,2019-06-29 09:29:00,216 Chestnut St, Los Angeles,CA,90001 +213309,Wired Headphones,1,11.99,2019-06-05 20:59:00,100 5th St, Seattle,WA,98101 +213310,USB-C Charging Cable,1,11.95,2019-06-08 04:00:00,451 Hickory St, Boston,MA,02215 +213311,Bose SoundSport Headphones,1,99.99,2019-06-14 15:49:00,292 Park St, Atlanta,GA,30301 +213312,Macbook Pro Laptop,1,1700.0,2019-06-13 02:46:00,834 Main St, Dallas,TX,75001 +213313,AAA Batteries (4-pack),2,2.99,2019-06-05 11:36:00,851 1st St, Los Angeles,CA,90001 +213314,AA Batteries (4-pack),1,3.84,2019-06-30 09:54:00,269 2nd St, Los Angeles,CA,90001 +213315,Lightning Charging Cable,1,14.95,2019-06-15 15:08:00,275 8th St, Seattle,WA,98101 +213316,Google Phone,1,600.0,2019-06-23 00:34:00,529 Chestnut St, San Francisco,CA,94016 +213317,Wired Headphones,1,11.99,2019-06-09 08:24:00,319 Chestnut St, Los Angeles,CA,90001 +213318,27in 4K Gaming Monitor,1,389.99,2019-06-10 06:59:00,947 Cherry St, Dallas,TX,75001 +213319,AAA Batteries (4-pack),1,2.99,2019-06-20 10:31:00,646 Spruce St, San Francisco,CA,94016 +213320,iPhone,1,700.0,2019-06-10 13:55:00,998 8th St, New York City,NY,10001 +213321,Apple Airpods Headphones,1,150.0,2019-06-16 18:40:00,864 8th St, Atlanta,GA,30301 +213322,27in 4K Gaming Monitor,1,389.99,2019-06-17 21:06:00,763 Lake St, Atlanta,GA,30301 +213323,Lightning Charging Cable,1,14.95,2019-06-27 11:25:00,102 Elm St, Boston,MA,02215 +213324,Apple Airpods Headphones,1,150.0,2019-06-07 17:54:00,838 Washington St, Seattle,WA,98101 +213325,27in 4K Gaming Monitor,1,389.99,2019-06-24 23:00:00,237 Meadow St, New York City,NY,10001 +213326,27in FHD Monitor,1,149.99,2019-06-28 19:32:00,671 Wilson St, San Francisco,CA,94016 +213327,Lightning Charging Cable,1,14.95,2019-06-25 14:07:00,221 Walnut St, Boston,MA,02215 +213328,Flatscreen TV,1,300.0,2019-06-24 20:10:00,191 Lake St, Los Angeles,CA,90001 +213329,AA Batteries (4-pack),1,3.84,2019-06-12 14:42:00,1 8th St, Dallas,TX,75001 +213330,34in Ultrawide Monitor,1,379.99,2019-06-03 09:38:00,60 North St, San Francisco,CA,94016 +213331,Lightning Charging Cable,1,14.95,2019-06-22 13:50:00,320 Wilson St, Los Angeles,CA,90001 +213331,Macbook Pro Laptop,1,1700.0,2019-06-22 13:50:00,320 Wilson St, Los Angeles,CA,90001 +213332,27in 4K Gaming Monitor,1,389.99,2019-06-04 20:46:00,325 Ridge St, San Francisco,CA,94016 +213332,USB-C Charging Cable,1,11.95,2019-06-04 20:46:00,325 Ridge St, San Francisco,CA,94016 +213333,Apple Airpods Headphones,1,150.0,2019-06-03 19:50:00,55 Johnson St, San Francisco,CA,94016 +213334,Lightning Charging Cable,1,14.95,2019-06-08 12:41:00,678 River St, Seattle,WA,98101 +213335,Wired Headphones,1,11.99,2019-06-22 15:27:00,474 Hill St, Los Angeles,CA,90001 +213336,Wired Headphones,1,11.99,2019-06-01 21:29:00,393 11th St, Los Angeles,CA,90001 +213337,USB-C Charging Cable,1,11.95,2019-06-17 11:42:00,815 12th St, Austin,TX,73301 +213338,Bose SoundSport Headphones,1,99.99,2019-06-26 07:48:00,769 10th St, San Francisco,CA,94016 +213339,Flatscreen TV,1,300.0,2019-06-08 11:44:00,859 Willow St, Atlanta,GA,30301 +213340,Wired Headphones,1,11.99,2019-06-13 10:31:00,249 Lake St, New York City,NY,10001 +213341,27in 4K Gaming Monitor,1,389.99,2019-06-12 22:58:00,271 Sunset St, San Francisco,CA,94016 +213342,AA Batteries (4-pack),1,3.84,2019-06-07 17:16:00,195 5th St, Portland,OR,97035 +213343,Lightning Charging Cable,1,14.95,2019-06-13 14:57:00,562 11th St, San Francisco,CA,94016 +213344,USB-C Charging Cable,3,11.95,2019-06-16 11:42:00,511 12th St, New York City,NY,10001 +213345,Wired Headphones,1,11.99,2019-06-16 13:39:00,617 6th St, San Francisco,CA,94016 +213346,iPhone,1,700.0,2019-06-17 08:56:00,656 Ridge St, Austin,TX,73301 +213347,Macbook Pro Laptop,1,1700.0,2019-06-02 19:24:00,56 5th St, Austin,TX,73301 +213348,AAA Batteries (4-pack),1,2.99,2019-06-17 21:41:00,451 Lake St, San Francisco,CA,94016 +213349,AAA Batteries (4-pack),2,2.99,2019-06-20 11:22:00,737 4th St, Boston,MA,02215 +213350,Wired Headphones,1,11.99,2019-06-16 04:37:00,315 Meadow St, Atlanta,GA,30301 +213351,Lightning Charging Cable,1,14.95,2019-06-11 22:48:00,207 Church St, Atlanta,GA,30301 +213352,27in 4K Gaming Monitor,1,389.99,2019-06-01 23:32:00,557 Pine St, San Francisco,CA,94016 +213353,USB-C Charging Cable,1,11.95,2019-06-13 15:45:00,958 Cedar St, Austin,TX,73301 +213354,34in Ultrawide Monitor,1,379.99,2019-06-04 20:52:00,565 Main St, New York City,NY,10001 +213355,AAA Batteries (4-pack),1,2.99,2019-06-25 15:01:00,313 Wilson St, Atlanta,GA,30301 +213356,Lightning Charging Cable,1,14.95,2019-06-17 15:24:00,741 Forest St, New York City,NY,10001 +213357,USB-C Charging Cable,2,11.95,2019-06-10 09:36:00,352 Spruce St, Portland,OR,97035 +213358,AA Batteries (4-pack),1,3.84,2019-06-26 17:54:00,994 Lake St, Austin,TX,73301 +213359,34in Ultrawide Monitor,1,379.99,2019-06-18 20:57:00,81 9th St, San Francisco,CA,94016 +213360,Bose SoundSport Headphones,1,99.99,2019-06-21 08:35:00,162 Willow St, Portland,OR,97035 +213361,Apple Airpods Headphones,1,150.0,2019-06-12 11:49:00,116 7th St, Seattle,WA,98101 +213362,Google Phone,1,600.0,2019-06-03 18:47:00,163 Elm St, San Francisco,CA,94016 +213363,27in 4K Gaming Monitor,1,389.99,2019-06-27 19:47:00,674 1st St, San Francisco,CA,94016 +213364,Wired Headphones,1,11.99,2019-06-17 16:00:00,35 Forest St, Austin,TX,73301 +213365,iPhone,1,700.0,2019-06-29 11:56:00,999 Church St, San Francisco,CA,94016 +213365,Wired Headphones,1,11.99,2019-06-29 11:56:00,999 Church St, San Francisco,CA,94016 +213366,LG Dryer,1,600.0,2019-06-19 15:19:00,842 Jefferson St, San Francisco,CA,94016 +213367,iPhone,1,700.0,2019-06-14 01:11:00,506 12th St, Seattle,WA,98101 +213367,Lightning Charging Cable,1,14.95,2019-06-14 01:11:00,506 12th St, Seattle,WA,98101 +213368,AAA Batteries (4-pack),1,2.99,2019-06-15 10:58:00,379 Lakeview St, San Francisco,CA,94016 +213369,Apple Airpods Headphones,1,150.0,2019-06-23 20:46:00,217 14th St, Dallas,TX,75001 +213370,AA Batteries (4-pack),1,3.84,2019-06-05 10:54:00,778 Spruce St, San Francisco,CA,94016 +213371,20in Monitor,1,109.99,2019-06-25 14:57:00,486 Cherry St, Los Angeles,CA,90001 +213372,AA Batteries (4-pack),1,3.84,2019-06-13 15:54:00,576 Elm St, San Francisco,CA,94016 +213373,Wired Headphones,1,11.99,2019-06-05 21:09:00,899 South St, San Francisco,CA,94016 +213374,USB-C Charging Cable,1,11.95,2019-06-07 19:47:00,868 Hill St, San Francisco,CA,94016 +213375,AA Batteries (4-pack),2,3.84,2019-06-20 21:07:00,665 2nd St, Boston,MA,02215 +213376,Bose SoundSport Headphones,1,99.99,2019-06-07 09:25:00,615 13th St, Los Angeles,CA,90001 +213377,Apple Airpods Headphones,1,150.0,2019-06-04 13:58:00,500 Center St, Los Angeles,CA,90001 +213378,Lightning Charging Cable,1,14.95,2019-06-27 19:49:00,881 Dogwood St, San Francisco,CA,94016 +213379,Lightning Charging Cable,1,14.95,2019-06-20 23:58:00,506 Highland St, New York City,NY,10001 +213380,Wired Headphones,1,11.99,2019-06-17 10:05:00,802 South St, San Francisco,CA,94016 +213381,AAA Batteries (4-pack),2,2.99,2019-06-08 23:58:00,828 Willow St, Seattle,WA,98101 +213382,Google Phone,1,600.0,2019-06-01 12:47:00,608 North St, Los Angeles,CA,90001 +213383,Apple Airpods Headphones,1,150.0,2019-06-15 09:15:00,460 Ridge St, Dallas,TX,75001 +213384,USB-C Charging Cable,1,11.95,2019-06-04 08:23:00,464 12th St, New York City,NY,10001 +213385,AAA Batteries (4-pack),1,2.99,2019-06-18 15:06:00,471 Main St, Dallas,TX,75001 +213386,ThinkPad Laptop,1,999.99,2019-06-15 22:43:00,339 Main St, Boston,MA,02215 +213387,Apple Airpods Headphones,1,150.0,2019-06-09 18:40:00,485 Cherry St, San Francisco,CA,94016 +213388,USB-C Charging Cable,1,11.95,2019-06-21 07:38:00,308 Dogwood St, Atlanta,GA,30301 +213389,ThinkPad Laptop,1,999.99,2019-06-16 18:23:00,4 River St, New York City,NY,10001 +213390,USB-C Charging Cable,1,11.95,2019-06-05 21:02:00,348 River St, Los Angeles,CA,90001 +213391,Wired Headphones,1,11.99,2019-06-02 20:24:00,213 Forest St, Atlanta,GA,30301 +213392,ThinkPad Laptop,1,999.99,2019-06-10 11:01:00,784 Cedar St, Dallas,TX,75001 +213393,Bose SoundSport Headphones,1,99.99,2019-06-21 16:06:00,158 Willow St, Atlanta,GA,30301 +213394,AAA Batteries (4-pack),2,2.99,2019-06-29 16:34:00,838 Pine St, Boston,MA,02215 +213395,Lightning Charging Cable,1,14.95,2019-06-04 07:53:00,188 Chestnut St, San Francisco,CA,94016 +213396,Lightning Charging Cable,3,14.95,2019-06-14 14:02:00,614 South St, New York City,NY,10001 +213397,Wired Headphones,1,11.99,2019-06-15 17:06:00,430 Forest St, San Francisco,CA,94016 +213398,AAA Batteries (4-pack),3,2.99,2019-06-29 09:58:00,893 8th St, Portland,ME,04101 +213399,27in 4K Gaming Monitor,1,389.99,2019-06-26 20:02:00,636 Sunset St, Boston,MA,02215 +213400,AA Batteries (4-pack),1,3.84,2019-06-24 14:45:00,427 Maple St, San Francisco,CA,94016 +213401,iPhone,1,700.0,2019-06-19 19:12:00,404 Madison St, Austin,TX,73301 +213401,Lightning Charging Cable,1,14.95,2019-06-19 19:12:00,404 Madison St, Austin,TX,73301 +213401,Apple Airpods Headphones,1,150.0,2019-06-19 19:12:00,404 Madison St, Austin,TX,73301 +213402,Bose SoundSport Headphones,1,99.99,2019-06-30 11:24:00,312 Lakeview St, Los Angeles,CA,90001 +213403,Apple Airpods Headphones,1,150.0,2019-06-05 15:27:00,285 Park St, San Francisco,CA,94016 +213404,Bose SoundSport Headphones,1,99.99,2019-06-16 20:23:00,676 Lakeview St, San Francisco,CA,94016 +213405,Wired Headphones,1,11.99,2019-06-13 18:25:00,283 14th St, Los Angeles,CA,90001 +213406,27in FHD Monitor,1,149.99,2019-06-14 09:30:00,761 8th St, Austin,TX,73301 +213407,AA Batteries (4-pack),3,3.84,2019-06-14 20:34:00,695 Park St, Boston,MA,02215 +213408,Apple Airpods Headphones,1,150.0,2019-06-11 15:25:00,612 13th St, New York City,NY,10001 +213409,AAA Batteries (4-pack),1,2.99,2019-06-05 23:53:00,868 Willow St, San Francisco,CA,94016 +213410,AA Batteries (4-pack),2,3.84,2019-06-08 08:35:00,937 8th St, Portland,OR,97035 +213411,Wired Headphones,2,11.99,2019-06-10 22:04:00,211 Park St, San Francisco,CA,94016 +213412,AA Batteries (4-pack),1,3.84,2019-06-04 00:29:00,142 13th St, San Francisco,CA,94016 +213413,USB-C Charging Cable,1,11.95,2019-06-22 20:19:00,144 Walnut St, San Francisco,CA,94016 +213414,Apple Airpods Headphones,1,150.0,2019-06-29 21:15:00,947 Lincoln St, New York City,NY,10001 +213415,AA Batteries (4-pack),1,3.84,2019-06-12 14:50:00,490 Adams St, Los Angeles,CA,90001 +213416,Flatscreen TV,1,300.0,2019-06-09 11:10:00,204 Center St, Austin,TX,73301 +213417,ThinkPad Laptop,1,999.99,2019-06-10 13:20:00,73 Main St, Portland,OR,97035 +213418,ThinkPad Laptop,1,999.99,2019-06-15 18:53:00,958 Elm St, Dallas,TX,75001 +213419,Apple Airpods Headphones,1,150.0,2019-06-20 09:57:00,821 6th St, Boston,MA,02215 +213420,Lightning Charging Cable,1,14.95,2019-06-03 20:08:00,514 Hickory St, Los Angeles,CA,90001 +213421,Wired Headphones,1,11.99,2019-06-24 12:16:00,463 Dogwood St, Portland,OR,97035 +213422,Lightning Charging Cable,1,14.95,2019-06-29 17:01:00,69 Hill St, Dallas,TX,75001 +213423,AA Batteries (4-pack),2,3.84,2019-06-16 20:04:00,742 Madison St, Boston,MA,02215 +213424,Lightning Charging Cable,1,14.95,2019-06-16 17:58:00,556 Johnson St, San Francisco,CA,94016 +213425,Wired Headphones,1,11.99,2019-06-15 17:43:00,200 8th St, Los Angeles,CA,90001 +213426,iPhone,1,700.0,2019-06-21 17:39:00,644 7th St, Portland,OR,97035 +213426,AAA Batteries (4-pack),1,2.99,2019-06-21 17:39:00,644 7th St, Portland,OR,97035 +213427,AA Batteries (4-pack),1,3.84,2019-06-10 13:43:00,768 9th St, San Francisco,CA,94016 +213428,27in FHD Monitor,1,149.99,2019-06-22 19:11:00,25 Park St, San Francisco,CA,94016 +213429,USB-C Charging Cable,1,11.95,2019-06-27 08:52:00,140 Cherry St, Los Angeles,CA,90001 +213430,AAA Batteries (4-pack),1,2.99,2019-06-20 14:10:00,681 Maple St, New York City,NY,10001 +213431,LG Washing Machine,1,600.0,2019-06-10 13:07:00,643 Pine St, Seattle,WA,98101 +213432,34in Ultrawide Monitor,1,379.99,2019-06-03 16:41:00,486 Main St, Seattle,WA,98101 +213433,AAA Batteries (4-pack),1,2.99,2019-06-17 15:21:00,823 4th St, Los Angeles,CA,90001 +213434,USB-C Charging Cable,1,11.95,2019-06-26 23:13:00,598 Main St, Boston,MA,02215 +213435,Macbook Pro Laptop,1,1700.0,2019-06-09 13:40:00,511 Cedar St, New York City,NY,10001 +213436,Wired Headphones,2,11.99,2019-06-23 09:01:00,971 11th St, San Francisco,CA,94016 +213437,Bose SoundSport Headphones,1,99.99,2019-06-22 11:08:00,636 9th St, Austin,TX,73301 +213438,Apple Airpods Headphones,1,150.0,2019-06-29 13:44:00,839 11th St, Austin,TX,73301 +213439,Wired Headphones,1,11.99,2019-06-28 13:10:00,925 Walnut St, Los Angeles,CA,90001 +213440,Lightning Charging Cable,2,14.95,2019-06-22 20:23:00,657 5th St, Los Angeles,CA,90001 +213441,USB-C Charging Cable,1,11.95,2019-06-04 00:48:00,952 Dogwood St, Austin,TX,73301 +213442,iPhone,1,700.0,2019-06-05 12:08:00,693 Ridge St, San Francisco,CA,94016 +213443,Lightning Charging Cable,1,14.95,2019-06-23 23:30:00,572 Madison St, Los Angeles,CA,90001 +213444,Vareebadd Phone,1,400.0,2019-06-26 15:09:00,792 Main St, San Francisco,CA,94016 +213444,Bose SoundSport Headphones,2,99.99,2019-06-26 15:09:00,792 Main St, San Francisco,CA,94016 +213445,27in 4K Gaming Monitor,1,389.99,2019-06-10 19:47:00,615 Hill St, Los Angeles,CA,90001 +213446,27in 4K Gaming Monitor,1,389.99,2019-06-23 14:06:00,979 South St, Atlanta,GA,30301 +213447,iPhone,1,700.0,2019-06-08 23:26:00,962 Jackson St, San Francisco,CA,94016 +213448,Flatscreen TV,1,300.0,2019-06-24 11:41:00,935 Highland St, Seattle,WA,98101 +213449,Google Phone,1,600.0,2019-06-19 14:24:00,339 Chestnut St, Dallas,TX,75001 +213450,Apple Airpods Headphones,1,150.0,2019-06-09 13:32:00,836 Madison St, New York City,NY,10001 +213451,AAA Batteries (4-pack),1,2.99,2019-06-13 10:20:00,49 Cedar St, San Francisco,CA,94016 +213451,Lightning Charging Cable,1,14.95,2019-06-13 10:20:00,49 Cedar St, San Francisco,CA,94016 +213452,Wired Headphones,1,11.99,2019-06-02 12:17:00,393 Park St, Portland,OR,97035 +213453,Apple Airpods Headphones,1,150.0,2019-06-24 13:10:00,811 7th St, Los Angeles,CA,90001 +213454,Flatscreen TV,1,300.0,2019-06-01 19:54:00,408 Hill St, Boston,MA,02215 +213455,Apple Airpods Headphones,1,150.0,2019-06-12 11:57:00,158 Church St, San Francisco,CA,94016 +213456,USB-C Charging Cable,1,11.95,2019-06-24 10:08:00,231 Forest St, San Francisco,CA,94016 +213457,USB-C Charging Cable,1,11.95,2019-06-23 11:24:00,941 2nd St, Portland,OR,97035 +213458,AA Batteries (4-pack),1,3.84,2019-06-24 21:35:00,781 8th St, Seattle,WA,98101 +213459,AA Batteries (4-pack),3,3.84,2019-06-03 14:53:00,633 2nd St, Los Angeles,CA,90001 +213460,AA Batteries (4-pack),1,3.84,2019-06-17 18:02:00,480 Chestnut St, Boston,MA,02215 +213461,USB-C Charging Cable,1,11.95,2019-06-17 16:37:00,97 River St, Boston,MA,02215 +213462,Wired Headphones,1,11.99,2019-06-17 06:19:00,30 South St, Los Angeles,CA,90001 +213463,Lightning Charging Cable,1,14.95,2019-06-04 03:19:00,497 8th St, Dallas,TX,75001 +213464,Lightning Charging Cable,1,14.95,2019-06-19 19:13:00,720 Johnson St, San Francisco,CA,94016 +213465,Lightning Charging Cable,1,14.95,2019-06-15 15:46:00,697 Washington St, Dallas,TX,75001 +213466,Bose SoundSport Headphones,1,99.99,2019-06-04 21:12:00,165 Madison St, Los Angeles,CA,90001 +213467,ThinkPad Laptop,1,999.99,2019-06-29 21:45:00,544 Cherry St, Atlanta,GA,30301 +213468,Lightning Charging Cable,1,14.95,2019-06-04 11:13:00,171 Walnut St, San Francisco,CA,94016 +213469,27in FHD Monitor,1,149.99,2019-06-22 17:43:00,146 Willow St, Dallas,TX,75001 +213470,Apple Airpods Headphones,1,150.0,2019-06-18 11:46:00,206 River St, Dallas,TX,75001 +213471,AA Batteries (4-pack),1,3.84,2019-06-07 00:08:00,592 Washington St, Seattle,WA,98101 +213472,Flatscreen TV,1,300.0,2019-06-07 20:38:00,38 Main St, San Francisco,CA,94016 +213473,AA Batteries (4-pack),1,3.84,2019-06-03 12:09:00,981 Lakeview St, Atlanta,GA,30301 +213474,34in Ultrawide Monitor,1,379.99,2019-06-28 14:30:00,109 Ridge St, Seattle,WA,98101 +213475,34in Ultrawide Monitor,1,379.99,2019-06-07 18:14:00,924 Walnut St, Atlanta,GA,30301 +213476,Apple Airpods Headphones,1,150.0,2019-06-17 10:05:00,178 14th St, San Francisco,CA,94016 +213477,AA Batteries (4-pack),1,3.84,2019-06-08 18:27:00,762 Ridge St, Austin,TX,73301 +213478,Lightning Charging Cable,1,14.95,2019-06-10 02:32:00,692 Forest St, Dallas,TX,75001 +213479,20in Monitor,1,109.99,2019-06-28 14:08:00,816 Lake St, Dallas,TX,75001 +213480,Wired Headphones,2,11.99,2019-06-13 22:50:00,435 Jefferson St, Dallas,TX,75001 +213481,Wired Headphones,1,11.99,2019-06-28 18:45:00,339 4th St, Seattle,WA,98101 +213482,USB-C Charging Cable,1,11.95,2019-06-29 12:08:00,916 5th St, Los Angeles,CA,90001 +213483,AAA Batteries (4-pack),1,2.99,2019-06-08 19:00:00,577 Adams St, Boston,MA,02215 +213484,AAA Batteries (4-pack),2,2.99,2019-06-11 11:57:00,255 11th St, Seattle,WA,98101 +213485,USB-C Charging Cable,1,11.95,2019-06-29 21:55:00,875 Center St, San Francisco,CA,94016 +213486,27in FHD Monitor,1,149.99,2019-06-25 17:44:00,258 Jefferson St, New York City,NY,10001 +213487,Bose SoundSport Headphones,1,99.99,2019-06-24 14:54:00,353 Johnson St, Boston,MA,02215 +213488,AAA Batteries (4-pack),1,2.99,2019-06-10 17:26:00,343 2nd St, San Francisco,CA,94016 +213489,27in FHD Monitor,2,149.99,2019-06-03 15:42:00,263 Walnut St, Boston,MA,02215 +213490,27in FHD Monitor,1,149.99,2019-06-01 13:04:00,373 Forest St, Atlanta,GA,30301 +213491,Flatscreen TV,1,300.0,2019-06-23 07:55:00,638 Park St, San Francisco,CA,94016 +213492,USB-C Charging Cable,1,11.95,2019-06-19 09:12:00,448 Sunset St, Seattle,WA,98101 +213493,20in Monitor,1,109.99,2019-06-24 02:26:00,241 Main St, Los Angeles,CA,90001 +213493,Wired Headphones,1,11.99,2019-06-24 02:26:00,241 Main St, Los Angeles,CA,90001 +213494,Apple Airpods Headphones,1,150.0,2019-06-23 10:28:00,288 Church St, Boston,MA,02215 +213495,27in 4K Gaming Monitor,1,389.99,2019-06-25 13:17:00,647 Cherry St, Atlanta,GA,30301 +213496,Wired Headphones,1,11.99,2019-06-21 10:49:00,29 8th St, Atlanta,GA,30301 +213497,USB-C Charging Cable,1,11.95,2019-06-19 21:43:00,920 Meadow St, Atlanta,GA,30301 +213498,Lightning Charging Cable,1,14.95,2019-06-21 18:35:00,397 Sunset St, San Francisco,CA,94016 +213499,iPhone,1,700.0,2019-06-29 10:50:00,181 River St, Boston,MA,02215 +213500,Wired Headphones,1,11.99,2019-06-01 09:41:00,717 North St, Los Angeles,CA,90001 +213501,Bose SoundSport Headphones,1,99.99,2019-06-20 10:51:00,701 Lake St, San Francisco,CA,94016 +213502,USB-C Charging Cable,2,11.95,2019-06-01 18:36:00,337 4th St, Boston,MA,02215 +213503,Apple Airpods Headphones,1,150.0,2019-06-15 17:47:00,82 West St, Atlanta,GA,30301 +213504,Bose SoundSport Headphones,1,99.99,2019-06-17 22:08:00,929 Washington St, San Francisco,CA,94016 +213505,Wired Headphones,2,11.99,2019-06-21 20:09:00,523 10th St, Seattle,WA,98101 +213506,Apple Airpods Headphones,1,150.0,2019-06-13 08:53:00,296 Hill St, San Francisco,CA,94016 +213507,Wired Headphones,3,11.99,2019-06-30 14:53:00,549 Lincoln St, Portland,OR,97035 +213508,Apple Airpods Headphones,1,150.0,2019-06-14 16:09:00,975 Main St, New York City,NY,10001 +213509,20in Monitor,1,109.99,2019-06-19 20:04:00,464 Madison St, San Francisco,CA,94016 +213510,AA Batteries (4-pack),1,3.84,2019-06-01 21:24:00,125 Jefferson St, Boston,MA,02215 +213511,AA Batteries (4-pack),1,3.84,2019-06-01 12:58:00,256 Hill St, Atlanta,GA,30301 +213512,USB-C Charging Cable,2,11.95,2019-06-18 18:51:00,645 Chestnut St, Los Angeles,CA,90001 +213513,iPhone,1,700.0,2019-06-06 18:52:00,747 Jackson St, San Francisco,CA,94016 +213514,27in 4K Gaming Monitor,1,389.99,2019-06-19 12:33:00,929 11th St, Boston,MA,02215 +213515,iPhone,1,700.0,2019-06-19 13:47:00,693 Cherry St, Los Angeles,CA,90001 +213515,Apple Airpods Headphones,1,150.0,2019-06-19 13:47:00,693 Cherry St, Los Angeles,CA,90001 +213516,34in Ultrawide Monitor,1,379.99,2019-06-01 17:51:00,348 Hill St, Los Angeles,CA,90001 +213517,USB-C Charging Cable,2,11.95,2019-06-04 16:21:00,510 Ridge St, New York City,NY,10001 +213518,20in Monitor,1,109.99,2019-06-16 09:50:00,573 River St, Seattle,WA,98101 +213519,Wired Headphones,1,11.99,2019-06-25 23:33:00,481 River St, Portland,OR,97035 +213520,Wired Headphones,1,11.99,2019-06-26 17:27:00,383 Madison St, San Francisco,CA,94016 +213521,Macbook Pro Laptop,1,1700.0,2019-06-21 18:38:00,525 Forest St, San Francisco,CA,94016 +213522,Lightning Charging Cable,1,14.95,2019-06-27 10:34:00,373 Cherry St, Boston,MA,02215 +213523,USB-C Charging Cable,1,11.95,2019-06-25 11:53:00,128 Main St, Dallas,TX,75001 +213524,iPhone,1,700.0,2019-06-23 23:43:00,75 Lake St, Dallas,TX,75001 +213524,Wired Headphones,1,11.99,2019-06-23 23:43:00,75 Lake St, Dallas,TX,75001 +213525,Apple Airpods Headphones,1,150.0,2019-06-07 16:16:00,897 Spruce St, San Francisco,CA,94016 +213526,Wired Headphones,1,11.99,2019-06-27 06:30:00,415 Elm St, San Francisco,CA,94016 +213527,Wired Headphones,1,11.99,2019-06-16 14:35:00,636 Wilson St, San Francisco,CA,94016 +213528,Lightning Charging Cable,1,14.95,2019-06-28 16:44:00,53 Adams St, San Francisco,CA,94016 +213529,27in FHD Monitor,1,149.99,2019-06-06 12:00:00,521 Wilson St, Los Angeles,CA,90001 +213530,Bose SoundSport Headphones,1,99.99,2019-06-14 18:59:00,804 7th St, New York City,NY,10001 +213531,Vareebadd Phone,1,400.0,2019-06-17 13:24:00,436 North St, New York City,NY,10001 +213532,Wired Headphones,1,11.99,2019-06-02 11:45:00,467 Sunset St, Seattle,WA,98101 +213533,Wired Headphones,1,11.99,2019-06-24 12:08:00,441 Church St, Portland,OR,97035 +213534,AA Batteries (4-pack),1,3.84,2019-06-26 01:37:00,754 West St, San Francisco,CA,94016 +213535,LG Washing Machine,1,600.0,2019-06-16 16:59:00,166 Ridge St, San Francisco,CA,94016 +213536,Wired Headphones,1,11.99,2019-06-20 16:59:00,911 Hill St, Los Angeles,CA,90001 +213537,Apple Airpods Headphones,1,150.0,2019-06-21 13:59:00,772 West St, New York City,NY,10001 +213538,Wired Headphones,1,11.99,2019-06-13 17:51:00,507 Jackson St, Portland,OR,97035 +213539,AA Batteries (4-pack),1,3.84,2019-06-10 09:51:00,656 West St, Portland,ME,04101 +213540,AAA Batteries (4-pack),1,2.99,2019-06-15 17:03:00,996 Lake St, San Francisco,CA,94016 +213540,iPhone,1,700.0,2019-06-15 17:03:00,996 Lake St, San Francisco,CA,94016 +213541,Bose SoundSport Headphones,1,99.99,2019-06-11 18:41:00,523 Park St, Seattle,WA,98101 +213542,Apple Airpods Headphones,1,150.0,2019-06-05 02:29:00,479 River St, San Francisco,CA,94016 +213543,Bose SoundSport Headphones,1,99.99,2019-06-10 19:54:00,768 Meadow St, New York City,NY,10001 +213544,Lightning Charging Cable,1,14.95,2019-06-18 14:45:00,613 Dogwood St, San Francisco,CA,94016 +213545,AAA Batteries (4-pack),2,2.99,2019-06-10 11:23:00,531 Cedar St, Atlanta,GA,30301 +213546,Google Phone,1,600.0,2019-06-19 13:04:00,822 11th St, Atlanta,GA,30301 +213546,USB-C Charging Cable,1,11.95,2019-06-19 13:04:00,822 11th St, Atlanta,GA,30301 +213547,AAA Batteries (4-pack),2,2.99,2019-06-09 15:33:00,295 Willow St, Austin,TX,73301 +213548,Wired Headphones,1,11.99,2019-06-27 06:59:00,619 Park St, San Francisco,CA,94016 +213549,Apple Airpods Headphones,1,150.0,2019-06-16 12:47:00,692 5th St, Boston,MA,02215 +213550,AA Batteries (4-pack),1,3.84,2019-06-09 20:36:00,433 6th St, New York City,NY,10001 +213551,AA Batteries (4-pack),1,3.84,2019-06-25 19:32:00,323 Maple St, Boston,MA,02215 +213552,Macbook Pro Laptop,1,1700.0,2019-06-05 11:26:00,889 Dogwood St, Portland,OR,97035 +213553,Lightning Charging Cable,1,14.95,2019-06-07 08:32:00,20 Spruce St, San Francisco,CA,94016 +213554,iPhone,1,700.0,2019-06-02 00:38:00,890 Jefferson St, San Francisco,CA,94016 +213554,Flatscreen TV,1,300.0,2019-06-02 00:38:00,890 Jefferson St, San Francisco,CA,94016 +213555,Lightning Charging Cable,1,14.95,2019-06-26 18:48:00,542 9th St, Los Angeles,CA,90001 +213556,Lightning Charging Cable,1,14.95,2019-06-28 17:55:00,357 Church St, San Francisco,CA,94016 +213557,Wired Headphones,2,11.99,2019-06-03 18:36:00,330 4th St, Seattle,WA,98101 +213558,USB-C Charging Cable,1,11.95,2019-06-10 10:13:00,90 Elm St, Atlanta,GA,30301 +213559,Google Phone,1,600.0,2019-06-10 12:14:00,621 Cedar St, Los Angeles,CA,90001 +213559,USB-C Charging Cable,1,11.95,2019-06-10 12:14:00,621 Cedar St, Los Angeles,CA,90001 +213560,AAA Batteries (4-pack),1,2.99,2019-06-25 22:42:00,762 Willow St, Atlanta,GA,30301 +213561,Bose SoundSport Headphones,1,99.99,2019-06-22 09:55:00,801 Spruce St, Boston,MA,02215 +213562,AA Batteries (4-pack),1,3.84,2019-06-15 14:45:00,596 1st St, Los Angeles,CA,90001 +213563,Flatscreen TV,1,300.0,2019-06-02 21:11:00,139 7th St, Austin,TX,73301 +213564,iPhone,1,700.0,2019-06-12 17:59:00,606 Lake St, Seattle,WA,98101 +213565,Bose SoundSport Headphones,1,99.99,2019-06-16 14:14:00,364 1st St, San Francisco,CA,94016 +213566,AAA Batteries (4-pack),1,2.99,2019-06-14 12:27:00,940 Elm St, New York City,NY,10001 +213567,ThinkPad Laptop,1,999.99,2019-06-19 13:25:00,386 Chestnut St, Portland,OR,97035 +213568,USB-C Charging Cable,1,11.95,2019-06-09 14:44:00,842 North St, Dallas,TX,75001 +213569,Wired Headphones,1,11.99,2019-06-23 12:48:00,970 Jefferson St, Seattle,WA,98101 +213570,Lightning Charging Cable,3,14.95,2019-06-22 10:48:00,49 Elm St, San Francisco,CA,94016 +213571,USB-C Charging Cable,1,11.95,2019-06-21 19:04:00,887 Walnut St, San Francisco,CA,94016 +213572,AAA Batteries (4-pack),1,2.99,2019-06-07 10:03:00,674 Meadow St, Dallas,TX,75001 +213573,USB-C Charging Cable,1,11.95,2019-06-06 13:24:00,548 Jackson St, Dallas,TX,75001 +213574,AA Batteries (4-pack),1,3.84,2019-06-24 10:08:00,514 2nd St, Los Angeles,CA,90001 +213575,AAA Batteries (4-pack),1,2.99,2019-06-29 15:22:00,671 7th St, New York City,NY,10001 +213576,iPhone,1,700.0,2019-06-27 17:53:00,7 Cedar St, San Francisco,CA,94016 +213577,20in Monitor,1,109.99,2019-06-09 17:55:00,931 Jefferson St, Seattle,WA,98101 +213578,ThinkPad Laptop,1,999.99,2019-06-22 14:57:00,504 Highland St, Seattle,WA,98101 +213579,Apple Airpods Headphones,1,150.0,2019-06-25 20:49:00,708 14th St, Austin,TX,73301 +213580,USB-C Charging Cable,1,11.95,2019-06-25 19:25:00,166 12th St, Boston,MA,02215 +213581,Bose SoundSport Headphones,1,99.99,2019-06-21 09:02:00,113 1st St, Los Angeles,CA,90001 +213582,AA Batteries (4-pack),2,3.84,2019-06-01 14:29:00,519 Church St, Seattle,WA,98101 +213583,34in Ultrawide Monitor,1,379.99,2019-06-14 11:51:00,138 12th St, San Francisco,CA,94016 +213584,USB-C Charging Cable,1,11.95,2019-06-17 13:31:00,452 Hill St, San Francisco,CA,94016 +213585,Bose SoundSport Headphones,1,99.99,2019-06-21 12:32:00,969 Cherry St, New York City,NY,10001 +213586,AA Batteries (4-pack),2,3.84,2019-06-04 18:44:00,504 Washington St, San Francisco,CA,94016 +213587,27in FHD Monitor,1,149.99,2019-06-27 22:47:00,46 Walnut St, Los Angeles,CA,90001 +213588,34in Ultrawide Monitor,1,379.99,2019-06-29 17:14:00,988 Willow St, Atlanta,GA,30301 +213589,27in FHD Monitor,1,149.99,2019-06-01 15:38:00,634 Maple St, Austin,TX,73301 +213590,Bose SoundSport Headphones,2,99.99,2019-06-16 22:07:00,231 Lakeview St, Los Angeles,CA,90001 +213591,Apple Airpods Headphones,1,150.0,2019-06-30 14:01:00,642 Spruce St, Dallas,TX,75001 +213592,34in Ultrawide Monitor,1,379.99,2019-06-15 16:43:00,706 Madison St, Boston,MA,02215 +213593,ThinkPad Laptop,1,999.99,2019-06-25 19:32:00,800 6th St, Boston,MA,02215 +213594,LG Dryer,1,600.0,2019-06-03 22:48:00,988 Jackson St, Boston,MA,02215 +213595,34in Ultrawide Monitor,1,379.99,2019-06-30 08:51:00,842 6th St, Los Angeles,CA,90001 +213596,Wired Headphones,2,11.99,2019-06-29 22:56:00,104 North St, San Francisco,CA,94016 +213597,Lightning Charging Cable,1,14.95,2019-06-22 21:10:00,261 10th St, San Francisco,CA,94016 +213598,AAA Batteries (4-pack),2,2.99,2019-06-17 20:46:00,264 14th St, Boston,MA,02215 +213599,AAA Batteries (4-pack),1,2.99,2019-06-12 21:28:00,954 13th St, Boston,MA,02215 +213600,Apple Airpods Headphones,1,150.0,2019-06-21 11:15:00,115 Cedar St, Seattle,WA,98101 +213601,USB-C Charging Cable,1,11.95,2019-06-21 09:35:00,687 Maple St, Los Angeles,CA,90001 +213602,Apple Airpods Headphones,1,150.0,2019-06-14 21:05:00,532 Main St, Los Angeles,CA,90001 +213603,Lightning Charging Cable,1,14.95,2019-06-01 13:32:00,161 8th St, Dallas,TX,75001 +213604,Apple Airpods Headphones,1,150.0,2019-06-24 12:30:00,820 Elm St, Austin,TX,73301 +213605,Apple Airpods Headphones,1,150.0,2019-06-19 20:21:00,530 5th St, Dallas,TX,75001 +213606,AAA Batteries (4-pack),1,2.99,2019-06-01 19:58:00,387 4th St, Atlanta,GA,30301 +213607,Wired Headphones,1,11.99,2019-06-16 12:24:00,516 6th St, Los Angeles,CA,90001 +213608,27in 4K Gaming Monitor,1,389.99,2019-06-27 19:16:00,891 Lakeview St, San Francisco,CA,94016 +213609,Lightning Charging Cable,1,14.95,2019-06-13 12:04:00,318 9th St, New York City,NY,10001 +213610,iPhone,1,700.0,2019-06-03 21:04:00,713 12th St, New York City,NY,10001 +213611,Apple Airpods Headphones,1,150.0,2019-06-08 14:03:00,993 Johnson St, Portland,ME,04101 +213612,ThinkPad Laptop,1,999.99,2019-06-30 08:37:00,241 Highland St, San Francisco,CA,94016 +213613,AAA Batteries (4-pack),1,2.99,2019-06-23 11:13:00,924 Park St, New York City,NY,10001 +213614,AA Batteries (4-pack),1,3.84,2019-06-28 01:28:00,727 7th St, Los Angeles,CA,90001 +213615,Lightning Charging Cable,1,14.95,2019-06-11 09:26:00,785 Lake St, Boston,MA,02215 +213616,AAA Batteries (4-pack),2,2.99,2019-06-08 22:45:00,717 Jackson St, San Francisco,CA,94016 +213617,Lightning Charging Cable,1,14.95,2019-06-08 14:16:00,171 Lakeview St, Boston,MA,02215 +213618,Bose SoundSport Headphones,1,99.99,2019-06-14 20:29:00,141 North St, Los Angeles,CA,90001 +213619,Google Phone,1,600.0,2019-06-29 21:24:00,895 13th St, Los Angeles,CA,90001 +213620,Lightning Charging Cable,1,14.95,2019-06-18 08:57:00,426 Elm St, San Francisco,CA,94016 +213621,Bose SoundSport Headphones,1,99.99,2019-06-19 15:05:00,491 12th St, New York City,NY,10001 +213622,Bose SoundSport Headphones,1,99.99,2019-06-21 21:44:00,752 North St, New York City,NY,10001 +213623,Apple Airpods Headphones,1,150.0,2019-06-18 23:21:00,914 8th St, Los Angeles,CA,90001 +213624,AAA Batteries (4-pack),1,2.99,2019-06-05 12:51:00,953 5th St, Atlanta,GA,30301 +213625,AA Batteries (4-pack),1,3.84,2019-06-04 18:40:00,249 4th St, San Francisco,CA,94016 +213626,20in Monitor,1,109.99,2019-06-25 07:31:00,20 Wilson St, Atlanta,GA,30301 +213627,Bose SoundSport Headphones,1,99.99,2019-06-28 08:28:00,256 Meadow St, Atlanta,GA,30301 +213628,USB-C Charging Cable,1,11.95,2019-06-07 16:51:00,926 Maple St, San Francisco,CA,94016 +213629,27in 4K Gaming Monitor,1,389.99,2019-06-26 17:31:00,353 South St, New York City,NY,10001 +213630,USB-C Charging Cable,2,11.95,2019-06-12 19:12:00,747 Highland St, Los Angeles,CA,90001 +213631,Lightning Charging Cable,1,14.95,2019-06-01 17:04:00,630 Forest St, Los Angeles,CA,90001 +213632,20in Monitor,1,109.99,2019-06-23 17:12:00,948 5th St, Boston,MA,02215 +213633,34in Ultrawide Monitor,1,379.99,2019-06-25 18:30:00,264 13th St, Los Angeles,CA,90001 +213634,Wired Headphones,1,11.99,2019-06-14 15:52:00,816 Adams St, San Francisco,CA,94016 +213635,27in 4K Gaming Monitor,1,389.99,2019-06-25 09:22:00,657 Park St, Los Angeles,CA,90001 +213636,34in Ultrawide Monitor,1,379.99,2019-06-23 18:40:00,401 Chestnut St, Atlanta,GA,30301 +213637,AA Batteries (4-pack),2,3.84,2019-06-30 12:20:00,168 Forest St, Seattle,WA,98101 +213638,Apple Airpods Headphones,1,150.0,2019-06-14 18:20:00,919 Wilson St, New York City,NY,10001 +213639,AAA Batteries (4-pack),1,2.99,2019-06-28 13:14:00,645 Highland St, Boston,MA,02215 +213640,Flatscreen TV,1,300.0,2019-06-20 08:10:00,808 North St, Atlanta,GA,30301 +213641,Bose SoundSport Headphones,1,99.99,2019-06-23 23:41:00,527 Chestnut St, Atlanta,GA,30301 +213642,Flatscreen TV,1,300.0,2019-06-12 15:13:00,771 4th St, Austin,TX,73301 +213643,Lightning Charging Cable,1,14.95,2019-06-09 13:47:00,595 Lincoln St, San Francisco,CA,94016 +213644,20in Monitor,1,109.99,2019-06-19 20:57:00,804 River St, Portland,ME,04101 +213645,Flatscreen TV,1,300.0,2019-06-23 17:24:00,391 South St, Dallas,TX,75001 +213646,AAA Batteries (4-pack),1,2.99,2019-06-15 16:35:00,372 10th St, Portland,OR,97035 +213647,Flatscreen TV,1,300.0,2019-06-23 04:00:00,493 Walnut St, Atlanta,GA,30301 +213648,USB-C Charging Cable,2,11.95,2019-06-20 11:48:00,778 Adams St, San Francisco,CA,94016 +213649,Bose SoundSport Headphones,1,99.99,2019-06-01 19:10:00,954 Cedar St, San Francisco,CA,94016 +213650,AAA Batteries (4-pack),1,2.99,2019-06-12 15:44:00,459 Johnson St, San Francisco,CA,94016 +213651,Vareebadd Phone,1,400.0,2019-06-26 13:12:00,262 Madison St, Seattle,WA,98101 +213652,ThinkPad Laptop,1,999.99,2019-06-04 15:53:00,554 Forest St, Atlanta,GA,30301 +213653,iPhone,1,700.0,2019-06-04 15:16:00,722 West St, Seattle,WA,98101 +213654,AAA Batteries (4-pack),3,2.99,2019-06-17 23:31:00,194 Johnson St, San Francisco,CA,94016 +213655,Wired Headphones,1,11.99,2019-06-23 20:38:00,69 12th St, Dallas,TX,75001 +213656,AA Batteries (4-pack),1,3.84,2019-06-11 21:21:00,912 Willow St, San Francisco,CA,94016 +213657,Apple Airpods Headphones,1,150.0,2019-06-08 18:43:00,380 Spruce St, Dallas,TX,75001 +213658,ThinkPad Laptop,1,999.99,2019-06-02 17:42:00,302 Lakeview St, New York City,NY,10001 +213659,Bose SoundSport Headphones,1,99.99,2019-06-21 14:51:00,988 Wilson St, Los Angeles,CA,90001 +213660,USB-C Charging Cable,1,11.95,2019-07-01 02:06:00,505 Cherry St, San Francisco,CA,94016 +213661,Macbook Pro Laptop,1,1700.0,2019-06-23 14:14:00,55 Cedar St, Austin,TX,73301 +213662,AAA Batteries (4-pack),2,2.99,2019-06-16 04:48:00,350 2nd St, Seattle,WA,98101 +213663,Wired Headphones,1,11.99,2019-06-13 07:55:00,467 Cherry St, Atlanta,GA,30301 +213664,Flatscreen TV,1,300.0,2019-06-15 12:30:00,903 14th St, Atlanta,GA,30301 +213665,Wired Headphones,1,11.99,2019-06-04 21:22:00,191 Dogwood St, Atlanta,GA,30301 +213666,AAA Batteries (4-pack),1,2.99,2019-06-09 10:49:00,23 Church St, Seattle,WA,98101 +213667,Lightning Charging Cable,1,14.95,2019-06-15 12:57:00,483 Main St, New York City,NY,10001 +213668,Apple Airpods Headphones,1,150.0,2019-06-14 07:23:00,249 Jackson St, San Francisco,CA,94016 +213669,Apple Airpods Headphones,1,150.0,2019-06-16 13:35:00,98 Washington St, Dallas,TX,75001 +213670,Lightning Charging Cable,1,14.95,2019-06-07 11:27:00,12 Johnson St, New York City,NY,10001 +213671,AA Batteries (4-pack),1,3.84,2019-06-13 11:16:00,384 Cedar St, Boston,MA,02215 +213672,AAA Batteries (4-pack),3,2.99,2019-06-13 16:48:00,7 8th St, Los Angeles,CA,90001 +213673,AA Batteries (4-pack),1,3.84,2019-06-01 18:15:00,772 Meadow St, San Francisco,CA,94016 +213674,Apple Airpods Headphones,1,150.0,2019-06-22 19:26:00,903 6th St, Seattle,WA,98101 +213675,AA Batteries (4-pack),1,3.84,2019-06-22 11:59:00,207 1st St, Portland,OR,97035 +213676,Wired Headphones,1,11.99,2019-06-29 15:08:00,791 10th St, Los Angeles,CA,90001 +213677,USB-C Charging Cable,1,11.95,2019-06-22 21:09:00,701 Lake St, Seattle,WA,98101 +213678,AA Batteries (4-pack),1,3.84,2019-06-05 10:42:00,14 2nd St, Boston,MA,02215 +213679,USB-C Charging Cable,1,11.95,2019-06-29 00:36:00,141 6th St, Boston,MA,02215 +213680,Lightning Charging Cable,1,14.95,2019-06-03 09:56:00,441 Forest St, Los Angeles,CA,90001 +213681,iPhone,1,700.0,2019-06-22 18:54:00,451 Hill St, Boston,MA,02215 +213682,USB-C Charging Cable,1,11.95,2019-06-14 17:31:00,843 Dogwood St, Los Angeles,CA,90001 +213683,27in FHD Monitor,1,149.99,2019-06-13 14:16:00,702 Chestnut St, Atlanta,GA,30301 +213684,USB-C Charging Cable,1,11.95,2019-06-27 10:53:00,203 Lake St, San Francisco,CA,94016 +213685,Apple Airpods Headphones,1,150.0,2019-06-28 12:26:00,405 7th St, Los Angeles,CA,90001 +213686,AA Batteries (4-pack),2,3.84,2019-06-19 14:45:00,707 North St, Seattle,WA,98101 +213687,34in Ultrawide Monitor,1,379.99,2019-06-15 21:00:00,716 Sunset St, San Francisco,CA,94016 +213688,Lightning Charging Cable,1,14.95,2019-06-01 11:24:00,137 North St, Austin,TX,73301 +213689,LG Washing Machine,1,600.0,2019-06-16 05:48:00,621 Chestnut St, Seattle,WA,98101 +213690,AAA Batteries (4-pack),1,2.99,2019-06-10 19:22:00,375 Madison St, New York City,NY,10001 +213691,AA Batteries (4-pack),2,3.84,2019-06-02 20:09:00,313 4th St, Austin,TX,73301 +213692,Google Phone,1,600.0,2019-06-15 00:57:00,954 Maple St, San Francisco,CA,94016 +213692,USB-C Charging Cable,1,11.95,2019-06-15 00:57:00,954 Maple St, San Francisco,CA,94016 +213693,AAA Batteries (4-pack),4,2.99,2019-06-06 15:02:00,699 Church St, San Francisco,CA,94016 +213694,Wired Headphones,1,11.99,2019-06-22 18:58:00,394 Chestnut St, San Francisco,CA,94016 +213695,Apple Airpods Headphones,1,150.0,2019-06-08 13:58:00,829 Jackson St, Dallas,TX,75001 +213696,Wired Headphones,1,11.99,2019-06-24 19:05:00,399 6th St, Seattle,WA,98101 +213697,iPhone,1,700.0,2019-06-04 00:40:00,319 Park St, Portland,OR,97035 +213697,Lightning Charging Cable,1,14.95,2019-06-04 00:40:00,319 Park St, Portland,OR,97035 +213698,AA Batteries (4-pack),1,3.84,2019-06-27 10:04:00,642 Main St, Atlanta,GA,30301 +213699,Wired Headphones,1,11.99,2019-07-01 00:31:00,470 Spruce St, Boston,MA,02215 +213700,Apple Airpods Headphones,1,150.0,2019-06-08 13:54:00,61 2nd St, Los Angeles,CA,90001 +213701,Apple Airpods Headphones,1,150.0,2019-06-12 11:14:00,480 Jefferson St, Seattle,WA,98101 +213702,AAA Batteries (4-pack),2,2.99,2019-06-04 11:56:00,873 Wilson St, Atlanta,GA,30301 +213703,AA Batteries (4-pack),2,3.84,2019-06-20 14:24:00,250 Lakeview St, Dallas,TX,75001 +213704,Apple Airpods Headphones,1,150.0,2019-06-28 20:48:00,14 Pine St, Los Angeles,CA,90001 +213705,AAA Batteries (4-pack),1,2.99,2019-06-02 18:11:00,406 8th St, San Francisco,CA,94016 +213706,USB-C Charging Cable,3,11.95,2019-06-15 00:05:00,740 River St, Dallas,TX,75001 +213707,Wired Headphones,1,11.99,2019-06-17 15:00:00,114 Elm St, Boston,MA,02215 +213708,34in Ultrawide Monitor,1,379.99,2019-06-17 13:59:00,949 Hickory St, New York City,NY,10001 +213709,Macbook Pro Laptop,1,1700.0,2019-06-23 17:47:00,434 Washington St, San Francisco,CA,94016 +213710,Lightning Charging Cable,1,14.95,2019-06-11 10:39:00,582 1st St, New York City,NY,10001 +213711,Google Phone,1,600.0,2019-06-15 15:22:00,321 Lincoln St, Atlanta,GA,30301 +213712,USB-C Charging Cable,1,11.95,2019-06-06 08:39:00,60 Forest St, New York City,NY,10001 +213713,Bose SoundSport Headphones,1,99.99,2019-06-16 18:19:00,659 Lincoln St, San Francisco,CA,94016 +213713,AA Batteries (4-pack),1,3.84,2019-06-16 18:19:00,659 Lincoln St, San Francisco,CA,94016 +213714,ThinkPad Laptop,1,999.99,2019-06-02 17:48:00,733 Washington St, San Francisco,CA,94016 +213715,iPhone,1,700.0,2019-06-07 01:29:00,726 5th St, San Francisco,CA,94016 +213716,Apple Airpods Headphones,1,150.0,2019-06-04 20:26:00,905 Dogwood St, Atlanta,GA,30301 +213717,LG Dryer,1,600.0,2019-06-24 19:52:00,317 14th St, San Francisco,CA,94016 +213718,USB-C Charging Cable,1,11.95,2019-06-21 01:06:00,272 4th St, Los Angeles,CA,90001 +213719,Wired Headphones,1,11.99,2019-06-13 22:37:00,712 South St, Seattle,WA,98101 +213720,Google Phone,1,600.0,2019-06-14 15:40:00,299 Willow St, Los Angeles,CA,90001 +213720,ThinkPad Laptop,1,999.99,2019-06-14 15:40:00,299 Willow St, Los Angeles,CA,90001 +213721,Lightning Charging Cable,1,14.95,2019-06-29 23:32:00,203 Chestnut St, Boston,MA,02215 +213722,Apple Airpods Headphones,1,150.0,2019-06-21 21:31:00,221 6th St, San Francisco,CA,94016 +213723,AA Batteries (4-pack),1,3.84,2019-06-11 08:50:00,162 Wilson St, New York City,NY,10001 +213724,USB-C Charging Cable,1,11.95,2019-06-20 05:55:00,880 2nd St, Dallas,TX,75001 +213725,Google Phone,1,600.0,2019-06-12 15:05:00,219 Church St, Los Angeles,CA,90001 +213726,Bose SoundSport Headphones,1,99.99,2019-06-16 14:13:00,389 Chestnut St, Los Angeles,CA,90001 +213727,Google Phone,1,600.0,2019-06-18 21:17:00,822 8th St, Seattle,WA,98101 +213728,27in FHD Monitor,1,149.99,2019-06-06 01:06:00,824 Ridge St, Boston,MA,02215 +213729,Wired Headphones,1,11.99,2019-06-10 19:17:00,976 Ridge St, Seattle,WA,98101 +213729,Macbook Pro Laptop,1,1700.0,2019-06-10 19:17:00,976 Ridge St, Seattle,WA,98101 +213730,Macbook Pro Laptop,1,1700.0,2019-06-15 17:54:00,783 4th St, Austin,TX,73301 +213731,AAA Batteries (4-pack),1,2.99,2019-06-24 20:19:00,673 2nd St, Los Angeles,CA,90001 +213732,Apple Airpods Headphones,1,150.0,2019-06-19 16:13:00,423 Main St, Austin,TX,73301 +213733,Apple Airpods Headphones,1,150.0,2019-06-24 06:48:00,414 6th St, Dallas,TX,75001 +213734,AA Batteries (4-pack),1,3.84,2019-06-26 12:06:00,112 2nd St, Seattle,WA,98101 +213735,Bose SoundSport Headphones,1,99.99,2019-06-20 15:52:00,661 Ridge St, New York City,NY,10001 +213736,ThinkPad Laptop,1,999.99,2019-06-21 13:39:00,108 Pine St, Seattle,WA,98101 +213737,AA Batteries (4-pack),1,3.84,2019-06-10 21:04:00,85 1st St, Los Angeles,CA,90001 +213738,Vareebadd Phone,1,400.0,2019-06-23 10:58:00,368 Spruce St, Portland,ME,04101 +213738,Wired Headphones,2,11.99,2019-06-23 10:58:00,368 Spruce St, Portland,ME,04101 +213739,USB-C Charging Cable,1,11.95,2019-06-15 20:36:00,899 Willow St, San Francisco,CA,94016 +213740,27in 4K Gaming Monitor,1,389.99,2019-06-17 12:55:00,110 Chestnut St, Portland,OR,97035 +213741,Wired Headphones,1,11.99,2019-06-27 23:12:00,32 Washington St, San Francisco,CA,94016 +213742,34in Ultrawide Monitor,1,379.99,2019-06-14 10:44:00,78 Jefferson St, Dallas,TX,75001 +213743,AA Batteries (4-pack),1,3.84,2019-06-05 08:04:00,701 Maple St, Austin,TX,73301 +213744,USB-C Charging Cable,1,11.95,2019-06-08 16:34:00,757 Spruce St, San Francisco,CA,94016 +213745,Lightning Charging Cable,1,14.95,2019-06-09 21:35:00,225 12th St, San Francisco,CA,94016 +213746,27in 4K Gaming Monitor,1,389.99,2019-06-12 11:09:00,877 Church St, Austin,TX,73301 +213747,AA Batteries (4-pack),1,3.84,2019-06-02 09:09:00,40 Sunset St, Dallas,TX,75001 +213748,AA Batteries (4-pack),1,3.84,2019-06-12 14:20:00,55 Elm St, Dallas,TX,75001 +213749,USB-C Charging Cable,1,11.95,2019-06-26 11:28:00,207 Park St, Portland,OR,97035 +213750,AA Batteries (4-pack),2,3.84,2019-06-19 20:25:00,861 Washington St, San Francisco,CA,94016 +213751,Wired Headphones,1,11.99,2019-06-07 22:58:00,502 1st St, San Francisco,CA,94016 +213752,20in Monitor,1,109.99,2019-06-01 13:38:00,121 Chestnut St, Atlanta,GA,30301 +213753,AA Batteries (4-pack),1,3.84,2019-06-25 15:33:00,499 Sunset St, Los Angeles,CA,90001 +213754,Wired Headphones,2,11.99,2019-06-30 10:55:00,971 14th St, Boston,MA,02215 +213754,Apple Airpods Headphones,2,150.0,2019-06-30 10:55:00,971 14th St, Boston,MA,02215 +213755,AA Batteries (4-pack),1,3.84,2019-06-24 18:30:00,266 14th St, San Francisco,CA,94016 +213756,Wired Headphones,1,11.99,2019-06-09 06:58:00,208 River St, San Francisco,CA,94016 +213757,Macbook Pro Laptop,1,1700.0,2019-06-12 12:00:00,992 14th St, Dallas,TX,75001 +213758,ThinkPad Laptop,1,999.99,2019-06-27 15:58:00,698 Park St, San Francisco,CA,94016 +213759,LG Washing Machine,1,600.0,2019-06-13 15:03:00,259 5th St, Boston,MA,02215 +213760,AA Batteries (4-pack),1,3.84,2019-06-03 10:37:00,916 7th St, San Francisco,CA,94016 +213761,AA Batteries (4-pack),2,3.84,2019-06-03 11:19:00,642 12th St, San Francisco,CA,94016 +213762,27in FHD Monitor,1,149.99,2019-06-22 11:22:00,920 5th St, San Francisco,CA,94016 +213763,Apple Airpods Headphones,1,150.0,2019-06-14 17:25:00,137 2nd St, Boston,MA,02215 +213764,AA Batteries (4-pack),1,3.84,2019-06-17 13:23:00,68 Cedar St, Dallas,TX,75001 +213765,Lightning Charging Cable,1,14.95,2019-06-09 21:18:00,706 North St, San Francisco,CA,94016 +213766,Flatscreen TV,1,300.0,2019-06-19 15:25:00,276 Spruce St, Seattle,WA,98101 +213767,34in Ultrawide Monitor,1,379.99,2019-06-25 11:52:00,351 Lake St, New York City,NY,10001 +213768,34in Ultrawide Monitor,1,379.99,2019-06-23 15:25:00,858 Highland St, Atlanta,GA,30301 +213769,Lightning Charging Cable,1,14.95,2019-06-22 23:44:00,606 Dogwood St, San Francisco,CA,94016 +213770,34in Ultrawide Monitor,1,379.99,2019-06-28 19:06:00,671 13th St, San Francisco,CA,94016 +213771,27in FHD Monitor,1,149.99,2019-06-01 23:41:00,242 5th St, Los Angeles,CA,90001 +213772,Apple Airpods Headphones,1,150.0,2019-06-23 12:24:00,132 Madison St, New York City,NY,10001 +213773,Bose SoundSport Headphones,1,99.99,2019-06-23 00:01:00,145 Madison St, San Francisco,CA,94016 +213774,Bose SoundSport Headphones,1,99.99,2019-06-30 12:12:00,744 River St, Atlanta,GA,30301 +213775,34in Ultrawide Monitor,1,379.99,2019-06-09 20:13:00,761 8th St, Los Angeles,CA,90001 +213776,USB-C Charging Cable,1,11.95,2019-06-19 17:33:00,556 Dogwood St, San Francisco,CA,94016 +213777,AA Batteries (4-pack),1,3.84,2019-06-18 12:33:00,156 Church St, Atlanta,GA,30301 +213778,Wired Headphones,1,11.99,2019-06-08 13:27:00,901 1st St, Boston,MA,02215 +213779,AAA Batteries (4-pack),1,2.99,2019-06-01 10:43:00,78 Cedar St, Dallas,TX,75001 +213780,Wired Headphones,1,11.99,2019-06-18 14:10:00,211 8th St, Los Angeles,CA,90001 +213781,USB-C Charging Cable,1,11.95,2019-06-09 19:19:00,21 River St, Los Angeles,CA,90001 +213782,27in FHD Monitor,1,149.99,2019-06-21 11:36:00,375 Ridge St, San Francisco,CA,94016 +213783,iPhone,1,700.0,2019-06-02 17:22:00,732 1st St, Los Angeles,CA,90001 +213784,Lightning Charging Cable,1,14.95,2019-06-11 11:17:00,56 14th St, Boston,MA,02215 +213785,AAA Batteries (4-pack),3,2.99,2019-06-19 10:30:00,644 Washington St, New York City,NY,10001 +213786,20in Monitor,1,109.99,2019-06-07 11:03:00,498 Dogwood St, Boston,MA,02215 +213787,AA Batteries (4-pack),2,3.84,2019-06-26 12:34:00,91 5th St, Boston,MA,02215 +213788,AAA Batteries (4-pack),2,2.99,2019-06-08 16:03:00,812 South St, Los Angeles,CA,90001 +213789,Apple Airpods Headphones,1,150.0,2019-06-01 22:26:00,348 Lincoln St, Dallas,TX,75001 +213790,Wired Headphones,1,11.99,2019-06-10 02:17:00,772 Lake St, Seattle,WA,98101 +213791,Wired Headphones,1,11.99,2019-06-10 20:05:00,805 Madison St, Los Angeles,CA,90001 +213792,Wired Headphones,1,11.99,2019-06-21 09:26:00,377 Cedar St, San Francisco,CA,94016 +213793,34in Ultrawide Monitor,1,379.99,2019-06-24 09:22:00,173 Cherry St, San Francisco,CA,94016 +213794,USB-C Charging Cable,1,11.95,2019-06-11 11:15:00,194 Johnson St, San Francisco,CA,94016 +213795,AA Batteries (4-pack),1,3.84,2019-06-17 13:55:00,697 Church St, San Francisco,CA,94016 +213796,USB-C Charging Cable,1,11.95,2019-06-16 17:27:00,418 Hill St, Austin,TX,73301 +213797,Macbook Pro Laptop,1,1700.0,2019-06-14 09:59:00,323 Lake St, Atlanta,GA,30301 +213797,Lightning Charging Cable,1,14.95,2019-06-14 09:59:00,323 Lake St, Atlanta,GA,30301 +213798,Macbook Pro Laptop,1,1700.0,2019-06-16 11:48:00,975 10th St, San Francisco,CA,94016 +213799,27in 4K Gaming Monitor,1,389.99,2019-06-02 15:09:00,243 4th St, Los Angeles,CA,90001 +213800,Apple Airpods Headphones,1,150.0,2019-06-10 17:28:00,422 Madison St, Boston,MA,02215 +213801,AA Batteries (4-pack),3,3.84,2019-06-07 10:57:00,890 1st St, Boston,MA,02215 +213802,Apple Airpods Headphones,1,150.0,2019-06-29 21:36:00,926 Lakeview St, New York City,NY,10001 +213802,Lightning Charging Cable,1,14.95,2019-06-29 21:36:00,926 Lakeview St, New York City,NY,10001 +213803,27in FHD Monitor,1,149.99,2019-06-30 11:48:00,569 6th St, Seattle,WA,98101 +213804,Lightning Charging Cable,1,14.95,2019-06-27 22:11:00,152 10th St, San Francisco,CA,94016 +213805,34in Ultrawide Monitor,1,379.99,2019-06-23 16:52:00,737 Spruce St, San Francisco,CA,94016 +213805,LG Washing Machine,1,600.0,2019-06-23 16:52:00,737 Spruce St, San Francisco,CA,94016 +213806,AAA Batteries (4-pack),3,2.99,2019-06-27 15:35:00,571 River St, Los Angeles,CA,90001 +213807,Wired Headphones,1,11.99,2019-06-04 10:50:00,656 Park St, New York City,NY,10001 +213808,Wired Headphones,1,11.99,2019-06-29 02:02:00,582 10th St, San Francisco,CA,94016 +213809,Wired Headphones,1,11.99,2019-06-14 18:41:00,769 Hill St, Boston,MA,02215 +213810,ThinkPad Laptop,1,999.99,2019-06-01 23:10:00,37 Adams St, Atlanta,GA,30301 +213811,34in Ultrawide Monitor,1,379.99,2019-06-21 19:29:00,481 Lincoln St, New York City,NY,10001 +213812,Apple Airpods Headphones,1,150.0,2019-06-11 20:21:00,197 Sunset St, Los Angeles,CA,90001 +213813,Wired Headphones,1,11.99,2019-06-08 20:26:00,700 Meadow St, Dallas,TX,75001 +213814,USB-C Charging Cable,1,11.95,2019-06-20 16:40:00,278 Sunset St, New York City,NY,10001 +213815,Lightning Charging Cable,1,14.95,2019-06-10 11:13:00,821 Hill St, San Francisco,CA,94016 +213816,Google Phone,1,600.0,2019-06-19 16:44:00,402 10th St, San Francisco,CA,94016 +213817,USB-C Charging Cable,1,11.95,2019-06-03 19:13:00,989 Cherry St, San Francisco,CA,94016 +213818,Lightning Charging Cable,1,14.95,2019-06-14 20:19:00,231 Lincoln St, San Francisco,CA,94016 +213819,27in 4K Gaming Monitor,1,389.99,2019-06-05 10:46:00,47 Jackson St, Los Angeles,CA,90001 +213820,Bose SoundSport Headphones,1,99.99,2019-06-20 09:05:00,137 River St, Atlanta,GA,30301 +213821,AA Batteries (4-pack),3,3.84,2019-06-09 07:59:00,175 Ridge St, Los Angeles,CA,90001 +213822,Wired Headphones,1,11.99,2019-06-25 09:52:00,533 12th St, San Francisco,CA,94016 +213823,USB-C Charging Cable,1,11.95,2019-06-19 18:53:00,355 Sunset St, Seattle,WA,98101 +213824,AA Batteries (4-pack),1,3.84,2019-06-03 21:38:00,426 Willow St, San Francisco,CA,94016 +213825,Wired Headphones,1,11.99,2019-06-29 20:21:00,930 8th St, San Francisco,CA,94016 +213826,USB-C Charging Cable,1,11.95,2019-06-09 14:20:00,54 Dogwood St, Boston,MA,02215 +213827,34in Ultrawide Monitor,1,379.99,2019-06-09 04:17:00,84 10th St, Atlanta,GA,30301 +213828,Lightning Charging Cable,1,14.95,2019-06-18 15:24:00,664 Jefferson St, Seattle,WA,98101 +213829,USB-C Charging Cable,1,11.95,2019-06-11 11:38:00,909 Chestnut St, Austin,TX,73301 +213829,AAA Batteries (4-pack),1,2.99,2019-06-11 11:38:00,909 Chestnut St, Austin,TX,73301 +213830,USB-C Charging Cable,2,11.95,2019-06-12 13:28:00,713 Church St, San Francisco,CA,94016 +213831,Wired Headphones,1,11.99,2019-06-27 14:13:00,164 Main St, Boston,MA,02215 +213832,AAA Batteries (4-pack),2,2.99,2019-06-09 12:23:00,840 Cherry St, Dallas,TX,75001 +213833,AA Batteries (4-pack),1,3.84,2019-06-01 17:12:00,379 Spruce St, Los Angeles,CA,90001 +213834,Wired Headphones,1,11.99,2019-06-20 21:22:00,158 Lakeview St, Seattle,WA,98101 +213835,20in Monitor,1,109.99,2019-06-30 15:59:00,242 Spruce St, Portland,OR,97035 +213836,AA Batteries (4-pack),1,3.84,2019-06-20 10:41:00,936 Hill St, Los Angeles,CA,90001 +213837,Lightning Charging Cable,1,14.95,2019-06-16 05:43:00,735 Madison St, Atlanta,GA,30301 +213838,Macbook Pro Laptop,1,1700.0,2019-06-29 01:21:00,656 8th St, Boston,MA,02215 +213839,Lightning Charging Cable,1,14.95,2019-06-29 12:18:00,80 Madison St, Los Angeles,CA,90001 +213840,ThinkPad Laptop,1,999.99,2019-06-11 08:47:00,444 4th St, New York City,NY,10001 +213841,Apple Airpods Headphones,1,150.0,2019-06-30 10:54:00,286 6th St, Atlanta,GA,30301 +213842,USB-C Charging Cable,2,11.95,2019-06-24 19:11:00,529 Spruce St, San Francisco,CA,94016 +213843,LG Dryer,1,600.0,2019-06-14 23:27:00,195 Maple St, Los Angeles,CA,90001 +213844,34in Ultrawide Monitor,1,379.99,2019-06-26 14:28:00,598 Hickory St, San Francisco,CA,94016 +213845,iPhone,1,700.0,2019-06-12 20:17:00,875 Lake St, New York City,NY,10001 +213845,Lightning Charging Cable,1,14.95,2019-06-12 20:17:00,875 Lake St, New York City,NY,10001 +213846,AAA Batteries (4-pack),1,2.99,2019-06-20 13:06:00,187 10th St, Dallas,TX,75001 +213847,Lightning Charging Cable,1,14.95,2019-06-16 11:59:00,153 North St, New York City,NY,10001 +213848,34in Ultrawide Monitor,1,379.99,2019-06-28 12:33:00,456 Cherry St, Dallas,TX,75001 +213849,AAA Batteries (4-pack),1,2.99,2019-06-25 17:33:00,642 Washington St, Dallas,TX,75001 +213850,Google Phone,1,600.0,2019-06-25 12:59:00,214 Madison St, Atlanta,GA,30301 +213851,AA Batteries (4-pack),1,3.84,2019-06-30 08:42:00,963 4th St, San Francisco,CA,94016 +213852,Apple Airpods Headphones,1,150.0,2019-06-20 21:45:00,230 Johnson St, San Francisco,CA,94016 +213853,AAA Batteries (4-pack),1,2.99,2019-06-07 20:48:00,381 6th St, San Francisco,CA,94016 +213854,AAA Batteries (4-pack),1,2.99,2019-06-28 10:47:00,694 Dogwood St, San Francisco,CA,94016 +213854,USB-C Charging Cable,1,11.95,2019-06-28 10:47:00,694 Dogwood St, San Francisco,CA,94016 +213855,iPhone,1,700.0,2019-06-17 10:28:00,346 Willow St, Seattle,WA,98101 +213856,USB-C Charging Cable,2,11.95,2019-06-15 06:40:00,343 Pine St, New York City,NY,10001 +213857,AA Batteries (4-pack),1,3.84,2019-06-02 00:03:00,630 Ridge St, San Francisco,CA,94016 +213858,AA Batteries (4-pack),2,3.84,2019-06-20 12:02:00,266 Madison St, New York City,NY,10001 +213859,Lightning Charging Cable,1,14.95,2019-06-04 00:23:00,537 13th St, San Francisco,CA,94016 +213860,AAA Batteries (4-pack),1,2.99,2019-06-24 19:19:00,292 Johnson St, Los Angeles,CA,90001 +213861,34in Ultrawide Monitor,1,379.99,2019-06-15 12:22:00,705 Lake St, Seattle,WA,98101 +213862,USB-C Charging Cable,1,11.95,2019-06-24 16:04:00,176 Wilson St, Los Angeles,CA,90001 +213863,USB-C Charging Cable,1,11.95,2019-06-01 12:34:00,184 7th St, Los Angeles,CA,90001 +213864,Lightning Charging Cable,1,14.95,2019-06-06 11:43:00,285 8th St, Atlanta,GA,30301 +213865,AA Batteries (4-pack),2,3.84,2019-06-16 14:12:00,821 6th St, Atlanta,GA,30301 +213866,34in Ultrawide Monitor,1,379.99,2019-06-20 12:31:00,312 Willow St, Los Angeles,CA,90001 +213867,AA Batteries (4-pack),1,3.84,2019-06-22 16:17:00,877 11th St, San Francisco,CA,94016 +213868,AA Batteries (4-pack),1,3.84,2019-06-14 11:37:00,223 Main St, San Francisco,CA,94016 +213869,20in Monitor,1,109.99,2019-06-19 13:37:00,536 Spruce St, New York City,NY,10001 +213870,USB-C Charging Cable,1,11.95,2019-06-22 21:41:00,11 12th St, Seattle,WA,98101 +213871,34in Ultrawide Monitor,1,379.99,2019-06-05 19:39:00,457 Spruce St, Dallas,TX,75001 +213872,AA Batteries (4-pack),2,3.84,2019-06-19 11:12:00,879 River St, Austin,TX,73301 +213873,AAA Batteries (4-pack),3,2.99,2019-06-27 21:31:00,508 4th St, San Francisco,CA,94016 +213874,27in FHD Monitor,1,149.99,2019-06-20 21:10:00,167 Spruce St, Boston,MA,02215 +213875,Bose SoundSport Headphones,1,99.99,2019-06-27 14:14:00,114 Cherry St, San Francisco,CA,94016 +213876,AA Batteries (4-pack),2,3.84,2019-06-07 21:15:00,335 Lakeview St, Austin,TX,73301 +213877,Bose SoundSport Headphones,1,99.99,2019-06-06 10:19:00,280 Willow St, New York City,NY,10001 +213878,AA Batteries (4-pack),2,3.84,2019-06-24 20:53:00,469 Lakeview St, Portland,OR,97035 +213879,Flatscreen TV,1,300.0,2019-06-09 13:42:00,722 Washington St, Austin,TX,73301 +213880,USB-C Charging Cable,1,11.95,2019-06-19 11:23:00,493 Pine St, Dallas,TX,75001 +213881,Apple Airpods Headphones,1,150.0,2019-06-02 18:19:00,650 Lincoln St, San Francisco,CA,94016 +213882,Lightning Charging Cable,1,14.95,2019-06-30 22:07:00,293 Hill St, San Francisco,CA,94016 +213883,Lightning Charging Cable,1,14.95,2019-06-22 22:26:00,394 Elm St, Dallas,TX,75001 +213884,AA Batteries (4-pack),1,3.84,2019-06-29 09:45:00,645 Spruce St, Dallas,TX,75001 +213885,AAA Batteries (4-pack),1,2.99,2019-06-14 19:34:00,926 Wilson St, Los Angeles,CA,90001 +213886,AAA Batteries (4-pack),1,2.99,2019-06-21 15:10:00,753 Johnson St, San Francisco,CA,94016 +213887,20in Monitor,1,109.99,2019-06-12 14:51:00,718 12th St, Atlanta,GA,30301 +213888,27in 4K Gaming Monitor,1,389.99,2019-06-20 17:38:00,407 11th St, Dallas,TX,75001 +213889,AA Batteries (4-pack),2,3.84,2019-06-24 05:25:00,788 Ridge St, Boston,MA,02215 +213890,27in FHD Monitor,1,149.99,2019-06-13 13:53:00,163 Highland St, Atlanta,GA,30301 +213891,Lightning Charging Cable,1,14.95,2019-06-05 14:44:00,199 8th St, San Francisco,CA,94016 +213892,27in 4K Gaming Monitor,1,389.99,2019-06-19 22:37:00,565 Elm St, Seattle,WA,98101 +213893,Macbook Pro Laptop,1,1700.0,2019-06-12 05:30:00,662 Dogwood St, Los Angeles,CA,90001 +213894,AA Batteries (4-pack),1,3.84,2019-06-26 01:09:00,747 Adams St, San Francisco,CA,94016 +213895,Lightning Charging Cable,1,14.95,2019-06-24 20:36:00,267 Lincoln St, Austin,TX,73301 +213896,AAA Batteries (4-pack),1,2.99,2019-06-10 05:54:00,746 West St, San Francisco,CA,94016 +213897,USB-C Charging Cable,2,11.95,2019-06-03 03:40:00,1 1st St, Dallas,TX,75001 +213898,Wired Headphones,1,11.99,2019-06-26 10:38:00,292 Ridge St, Boston,MA,02215 +213899,Wired Headphones,1,11.99,2019-06-21 10:47:00,539 6th St, Boston,MA,02215 +213900,Apple Airpods Headphones,1,150.0,2019-06-27 07:49:00,851 4th St, Boston,MA,02215 +213901,Wired Headphones,1,11.99,2019-06-29 18:55:00,846 Walnut St, Los Angeles,CA,90001 +213902,Lightning Charging Cable,1,14.95,2019-06-13 21:22:00,12 Forest St, Boston,MA,02215 +213903,Lightning Charging Cable,1,14.95,2019-06-13 08:54:00,918 River St, Boston,MA,02215 +213904,iPhone,1,700.0,2019-06-20 10:15:00,267 Dogwood St, Portland,OR,97035 +213905,USB-C Charging Cable,1,11.95,2019-06-24 08:42:00,650 7th St, Atlanta,GA,30301 +213906,AA Batteries (4-pack),1,3.84,2019-06-28 11:52:00,368 Church St, Boston,MA,02215 +213907,Apple Airpods Headphones,1,150.0,2019-06-28 09:26:00,684 10th St, San Francisco,CA,94016 +213908,AA Batteries (4-pack),3,3.84,2019-06-17 16:55:00,77 6th St, San Francisco,CA,94016 +213909,Apple Airpods Headphones,1,150.0,2019-06-11 10:18:00,144 Hickory St, Atlanta,GA,30301 +213910,27in 4K Gaming Monitor,1,389.99,2019-06-10 20:09:00,723 Willow St, New York City,NY,10001 +213911,Lightning Charging Cable,1,14.95,2019-06-25 10:22:00,966 Ridge St, Los Angeles,CA,90001 +213912,AA Batteries (4-pack),1,3.84,2019-06-22 13:02:00,342 Highland St, Boston,MA,02215 +213913,Lightning Charging Cable,1,14.95,2019-06-17 14:45:00,261 River St, Boston,MA,02215 +213914,Wired Headphones,1,11.99,2019-06-29 21:29:00,37 Adams St, Seattle,WA,98101 +213915,USB-C Charging Cable,1,11.95,2019-06-08 15:17:00,639 Cedar St, Los Angeles,CA,90001 +213916,LG Washing Machine,1,600.0,2019-06-25 16:00:00,961 Ridge St, Portland,ME,04101 +213917,Wired Headphones,1,11.99,2019-06-12 13:44:00,227 Lake St, Los Angeles,CA,90001 +213918,AA Batteries (4-pack),1,3.84,2019-06-29 18:00:00,598 7th St, New York City,NY,10001 +213919,Bose SoundSport Headphones,1,99.99,2019-06-05 16:16:00,108 South St, San Francisco,CA,94016 +213920,USB-C Charging Cable,2,11.95,2019-06-19 11:15:00,565 Lake St, Atlanta,GA,30301 +213921,AAA Batteries (4-pack),1,2.99,2019-06-28 12:26:00,373 Ridge St, Los Angeles,CA,90001 +213922,Lightning Charging Cable,1,14.95,2019-06-04 08:54:00,607 14th St, San Francisco,CA,94016 +213923,Apple Airpods Headphones,1,150.0,2019-06-28 12:49:00,815 5th St, Boston,MA,02215 +213924,AAA Batteries (4-pack),2,2.99,2019-06-30 18:22:00,712 Highland St, Seattle,WA,98101 +213925,Wired Headphones,1,11.99,2019-06-12 19:35:00,922 Adams St, Seattle,WA,98101 +213926,27in 4K Gaming Monitor,1,389.99,2019-06-25 14:27:00,954 11th St, San Francisco,CA,94016 +213927,27in 4K Gaming Monitor,1,389.99,2019-06-10 20:49:00,302 8th St, Los Angeles,CA,90001 +213928,AA Batteries (4-pack),2,3.84,2019-06-21 18:04:00,570 Lakeview St, Los Angeles,CA,90001 +213929,Wired Headphones,1,11.99,2019-06-08 12:36:00,70 Elm St, Los Angeles,CA,90001 +213930,Vareebadd Phone,1,400.0,2019-06-10 19:13:00,276 Lake St, San Francisco,CA,94016 +213931,20in Monitor,1,109.99,2019-06-08 18:14:00,244 Jefferson St, Portland,OR,97035 +213932,Wired Headphones,1,11.99,2019-06-21 21:46:00,726 5th St, San Francisco,CA,94016 +213933,Apple Airpods Headphones,1,150.0,2019-06-24 18:10:00,479 2nd St, Boston,MA,02215 +213934,Lightning Charging Cable,1,14.95,2019-06-30 12:06:00,16 Willow St, New York City,NY,10001 +213935,Lightning Charging Cable,1,14.95,2019-06-02 05:23:00,809 Walnut St, Dallas,TX,75001 +213936,AA Batteries (4-pack),1,3.84,2019-06-14 12:55:00,385 1st St, Atlanta,GA,30301 +213937,Bose SoundSport Headphones,1,99.99,2019-06-30 19:17:00,630 Walnut St, Boston,MA,02215 +213938,Macbook Pro Laptop,1,1700.0,2019-06-14 09:00:00,480 Hill St, Austin,TX,73301 +213939,Lightning Charging Cable,1,14.95,2019-06-23 13:06:00,460 Johnson St, San Francisco,CA,94016 +213940,27in 4K Gaming Monitor,1,389.99,2019-06-20 23:13:00,148 Walnut St, New York City,NY,10001 +213941,AAA Batteries (4-pack),1,2.99,2019-06-06 21:05:00,470 12th St, Atlanta,GA,30301 +213942,AAA Batteries (4-pack),4,2.99,2019-06-15 19:11:00,560 Adams St, San Francisco,CA,94016 +213943,USB-C Charging Cable,1,11.95,2019-06-18 11:42:00,475 Church St, San Francisco,CA,94016 +213944,iPhone,1,700.0,2019-06-28 03:15:00,537 6th St, Seattle,WA,98101 +213944,Apple Airpods Headphones,1,150.0,2019-06-28 03:15:00,537 6th St, Seattle,WA,98101 +213945,AA Batteries (4-pack),1,3.84,2019-06-26 15:29:00,454 6th St, Dallas,TX,75001 +213946,Flatscreen TV,1,300.0,2019-06-25 12:57:00,100 Center St, New York City,NY,10001 +213947,USB-C Charging Cable,1,11.95,2019-06-11 09:57:00,828 Forest St, New York City,NY,10001 +213948,Lightning Charging Cable,1,14.95,2019-06-10 18:01:00,90 14th St, Boston,MA,02215 +213949,27in 4K Gaming Monitor,1,389.99,2019-06-21 08:55:00,305 Sunset St, New York City,NY,10001 +213950,27in FHD Monitor,1,149.99,2019-06-04 22:07:00,582 Wilson St, New York City,NY,10001 +213951,USB-C Charging Cable,1,11.95,2019-06-01 14:15:00,449 Cherry St, Los Angeles,CA,90001 +213952,Lightning Charging Cable,1,14.95,2019-06-06 14:21:00,279 Sunset St, New York City,NY,10001 +213953,AAA Batteries (4-pack),1,2.99,2019-06-03 11:10:00,577 Center St, Los Angeles,CA,90001 +213954,Lightning Charging Cable,1,14.95,2019-06-04 16:27:00,202 Forest St, San Francisco,CA,94016 +213955,34in Ultrawide Monitor,1,379.99,2019-06-12 19:00:00,959 Lakeview St, San Francisco,CA,94016 +213956,USB-C Charging Cable,1,11.95,2019-06-12 19:58:00,693 Dogwood St, Seattle,WA,98101 +213957,Apple Airpods Headphones,1,150.0,2019-06-15 18:14:00,585 Ridge St, Los Angeles,CA,90001 +213958,Macbook Pro Laptop,1,1700.0,2019-06-24 20:22:00,876 Pine St, San Francisco,CA,94016 +213959,USB-C Charging Cable,1,11.95,2019-06-18 16:22:00,714 6th St, New York City,NY,10001 +213960,AAA Batteries (4-pack),5,2.99,2019-06-22 09:53:00,766 Cedar St, Boston,MA,02215 +213961,Bose SoundSport Headphones,1,99.99,2019-06-16 09:43:00,544 Spruce St, Atlanta,GA,30301 +213962,Google Phone,1,600.0,2019-06-26 11:33:00,690 14th St, Atlanta,GA,30301 +213963,Apple Airpods Headphones,1,150.0,2019-06-11 02:51:00,497 8th St, Los Angeles,CA,90001 +213964,Lightning Charging Cable,1,14.95,2019-06-01 14:17:00,245 North St, Boston,MA,02215 +213965,USB-C Charging Cable,1,11.95,2019-06-19 10:10:00,345 10th St, San Francisco,CA,94016 +213966,iPhone,1,700.0,2019-06-11 00:38:00,742 10th St, Austin,TX,73301 +213966,Lightning Charging Cable,1,14.95,2019-06-11 00:38:00,742 10th St, Austin,TX,73301 +213967,Bose SoundSport Headphones,1,99.99,2019-06-09 12:36:00,28 5th St, New York City,NY,10001 +213968,Wired Headphones,2,11.99,2019-06-27 00:52:00,865 South St, Atlanta,GA,30301 +213969,Wired Headphones,1,11.99,2019-06-27 17:25:00,469 1st St, San Francisco,CA,94016 +213970,Lightning Charging Cable,1,14.95,2019-06-02 21:22:00,707 Ridge St, Los Angeles,CA,90001 +213971,Lightning Charging Cable,1,14.95,2019-06-08 10:07:00,995 Main St, Boston,MA,02215 +213972,Apple Airpods Headphones,1,150.0,2019-06-10 17:46:00,689 Johnson St, San Francisco,CA,94016 +213973,Macbook Pro Laptop,1,1700.0,2019-06-13 22:30:00,813 Johnson St, Atlanta,GA,30301 +213974,27in 4K Gaming Monitor,1,389.99,2019-06-25 15:48:00,967 Sunset St, Los Angeles,CA,90001 +213975,Bose SoundSport Headphones,1,99.99,2019-06-09 08:10:00,908 Jackson St, Austin,TX,73301 +213976,AAA Batteries (4-pack),1,2.99,2019-06-04 20:05:00,809 Elm St, Dallas,TX,75001 +213977,Wired Headphones,1,11.99,2019-06-24 15:57:00,630 Church St, San Francisco,CA,94016 +213978,LG Washing Machine,1,600.0,2019-06-26 09:50:00,986 7th St, Los Angeles,CA,90001 +213979,34in Ultrawide Monitor,1,379.99,2019-06-27 20:32:00,214 Hill St, Los Angeles,CA,90001 +213980,Bose SoundSport Headphones,1,99.99,2019-06-30 10:44:00,258 11th St, San Francisco,CA,94016 +213981,AA Batteries (4-pack),1,3.84,2019-06-04 02:09:00,323 Jackson St, Los Angeles,CA,90001 +213982,Apple Airpods Headphones,1,150.0,2019-06-21 13:42:00,417 Washington St, Atlanta,GA,30301 +213983,Apple Airpods Headphones,1,150.0,2019-06-27 16:00:00,105 12th St, Los Angeles,CA,90001 +213984,Flatscreen TV,1,300.0,2019-06-21 14:11:00,701 Willow St, San Francisco,CA,94016 +213985,Lightning Charging Cable,1,14.95,2019-06-12 18:49:00,152 Adams St, Austin,TX,73301 +213986,27in FHD Monitor,1,149.99,2019-06-24 20:36:00,544 Hickory St, Austin,TX,73301 +213987,Wired Headphones,1,11.99,2019-06-03 11:59:00,16 Wilson St, San Francisco,CA,94016 +213988,AAA Batteries (4-pack),1,2.99,2019-06-28 18:35:00,36 River St, San Francisco,CA,94016 +213989,USB-C Charging Cable,1,11.95,2019-06-26 13:28:00,137 Sunset St, San Francisco,CA,94016 +213990,AAA Batteries (4-pack),1,2.99,2019-06-04 10:09:00,922 Dogwood St, Boston,MA,02215 +213991,20in Monitor,1,109.99,2019-06-15 06:17:00,221 Sunset St, Los Angeles,CA,90001 +213992,Google Phone,1,600.0,2019-06-29 21:46:00,920 8th St, San Francisco,CA,94016 +213992,USB-C Charging Cable,1,11.95,2019-06-29 21:46:00,920 8th St, San Francisco,CA,94016 +213993,USB-C Charging Cable,1,11.95,2019-06-12 18:03:00,584 Washington St, Boston,MA,02215 +213994,Macbook Pro Laptop,1,1700.0,2019-06-27 11:43:00,291 Church St, Dallas,TX,75001 +213995,Flatscreen TV,1,300.0,2019-06-21 15:39:00,858 12th St, Dallas,TX,75001 +213996,Wired Headphones,1,11.99,2019-06-29 14:32:00,119 Park St, Seattle,WA,98101 +213997,Lightning Charging Cable,1,14.95,2019-06-08 19:11:00,790 Cedar St, Seattle,WA,98101 +213998,Vareebadd Phone,1,400.0,2019-06-03 11:14:00,950 River St, Boston,MA,02215 +213999,Bose SoundSport Headphones,1,99.99,2019-06-07 13:16:00,65 Chestnut St, Austin,TX,73301 +214000,Wired Headphones,1,11.99,2019-06-19 13:09:00,393 Forest St, Seattle,WA,98101 +214001,Bose SoundSport Headphones,1,99.99,2019-06-15 15:31:00,645 Hill St, Portland,ME,04101 +214002,AAA Batteries (4-pack),1,2.99,2019-06-23 11:49:00,131 Maple St, Boston,MA,02215 +214003,USB-C Charging Cable,1,11.95,2019-06-06 17:10:00,12 Lakeview St, Dallas,TX,75001 +214004,Bose SoundSport Headphones,1,99.99,2019-06-23 14:55:00,707 10th St, New York City,NY,10001 +214005,Lightning Charging Cable,2,14.95,2019-06-22 18:21:00,458 10th St, Boston,MA,02215 +214006,AA Batteries (4-pack),1,3.84,2019-06-25 17:20:00,17 Johnson St, New York City,NY,10001 +214007,AAA Batteries (4-pack),1,2.99,2019-06-20 15:55:00,129 4th St, Dallas,TX,75001 +214008,USB-C Charging Cable,1,11.95,2019-06-20 08:23:00,5 Dogwood St, Austin,TX,73301 +214009,USB-C Charging Cable,1,11.95,2019-06-30 22:57:00,442 Washington St, Boston,MA,02215 +214010,iPhone,1,700.0,2019-06-15 11:26:00,458 Lincoln St, San Francisco,CA,94016 +214010,Lightning Charging Cable,1,14.95,2019-06-15 11:26:00,458 Lincoln St, San Francisco,CA,94016 +214010,Wired Headphones,1,11.99,2019-06-15 11:26:00,458 Lincoln St, San Francisco,CA,94016 +214011,USB-C Charging Cable,1,11.95,2019-06-27 13:18:00,525 7th St, Portland,OR,97035 +214012,Lightning Charging Cable,1,14.95,2019-06-16 11:27:00,543 Church St, San Francisco,CA,94016 +214013,USB-C Charging Cable,1,11.95,2019-06-13 16:46:00,990 Center St, Austin,TX,73301 +214014,AA Batteries (4-pack),4,3.84,2019-06-17 10:09:00,845 Johnson St, Los Angeles,CA,90001 +214015,AAA Batteries (4-pack),1,2.99,2019-06-18 00:51:00,177 Jefferson St, Atlanta,GA,30301 +214016,20in Monitor,1,109.99,2019-06-17 13:09:00,997 13th St, Dallas,TX,75001 +214017,Apple Airpods Headphones,1,150.0,2019-06-11 10:14:00,906 Jefferson St, Boston,MA,02215 +214018,AA Batteries (4-pack),1,3.84,2019-06-10 04:20:00,351 Lakeview St, Portland,OR,97035 +214019,AAA Batteries (4-pack),1,2.99,2019-06-14 16:42:00,854 7th St, Boston,MA,02215 +214020,Wired Headphones,1,11.99,2019-06-06 14:31:00,861 Willow St, San Francisco,CA,94016 +214021,Wired Headphones,1,11.99,2019-06-07 17:08:00,916 Ridge St, San Francisco,CA,94016 +214022,AAA Batteries (4-pack),1,2.99,2019-06-06 17:07:00,702 Wilson St, San Francisco,CA,94016 +214022,USB-C Charging Cable,1,11.95,2019-06-06 17:07:00,702 Wilson St, San Francisco,CA,94016 +214023,Apple Airpods Headphones,1,150.0,2019-06-14 21:41:00,88 Cherry St, New York City,NY,10001 +214024,AA Batteries (4-pack),1,3.84,2019-06-13 20:21:00,112 Lakeview St, Boston,MA,02215 +214025,USB-C Charging Cable,1,11.95,2019-06-28 14:26:00,684 12th St, San Francisco,CA,94016 +214026,AAA Batteries (4-pack),1,2.99,2019-06-07 10:20:00,572 Cherry St, Dallas,TX,75001 +214027,AA Batteries (4-pack),1,3.84,2019-06-09 13:12:00,269 9th St, Atlanta,GA,30301 +214028,ThinkPad Laptop,1,999.99,2019-06-11 04:44:00,399 Meadow St, New York City,NY,10001 +214029,Google Phone,1,600.0,2019-06-23 11:13:00,843 Willow St, Atlanta,GA,30301 +214029,Bose SoundSport Headphones,1,99.99,2019-06-23 11:13:00,843 Willow St, Atlanta,GA,30301 +214030,AAA Batteries (4-pack),4,2.99,2019-06-02 15:57:00,395 Pine St, San Francisco,CA,94016 +214031,Wired Headphones,1,11.99,2019-06-10 08:50:00,807 11th St, Austin,TX,73301 +214032,iPhone,1,700.0,2019-06-20 18:34:00,92 South St, Atlanta,GA,30301 +214033,Wired Headphones,1,11.99,2019-06-21 06:01:00,215 Wilson St, Seattle,WA,98101 +214034,AAA Batteries (4-pack),4,2.99,2019-06-02 13:15:00,533 1st St, San Francisco,CA,94016 +214035,AA Batteries (4-pack),1,3.84,2019-06-01 10:49:00,389 Main St, San Francisco,CA,94016 +214036,ThinkPad Laptop,1,999.99,2019-06-07 11:42:00,260 Chestnut St, Portland,ME,04101 +214037,Apple Airpods Headphones,1,150.0,2019-06-13 23:52:00,825 Dogwood St, Austin,TX,73301 +214038,USB-C Charging Cable,1,11.95,2019-06-14 23:01:00,760 Lincoln St, Dallas,TX,75001 +214039,AAA Batteries (4-pack),1,2.99,2019-06-16 08:14:00,960 2nd St, San Francisco,CA,94016 +214040,ThinkPad Laptop,1,999.99,2019-06-14 23:17:00,539 Adams St, Boston,MA,02215 +214041,AAA Batteries (4-pack),1,2.99,2019-06-28 17:29:00,671 Willow St, Austin,TX,73301 +214042,Bose SoundSport Headphones,1,99.99,2019-06-19 19:03:00,299 South St, Portland,OR,97035 +214043,iPhone,1,700.0,2019-06-10 21:48:00,753 Highland St, New York City,NY,10001 +214044,Lightning Charging Cable,1,14.95,2019-06-25 20:05:00,226 6th St, New York City,NY,10001 +214045,USB-C Charging Cable,1,11.95,2019-06-19 08:11:00,493 6th St, Seattle,WA,98101 +214046,USB-C Charging Cable,1,11.95,2019-06-16 13:40:00,624 Jefferson St, Boston,MA,02215 +214047,Lightning Charging Cable,1,14.95,2019-06-10 10:02:00,699 Chestnut St, San Francisco,CA,94016 +214048,Apple Airpods Headphones,1,150.0,2019-06-14 12:36:00,50 10th St, San Francisco,CA,94016 +214049,Lightning Charging Cable,1,14.95,2019-06-02 14:28:00,129 Hill St, Los Angeles,CA,90001 +214050,AAA Batteries (4-pack),1,2.99,2019-06-27 23:30:00,652 South St, New York City,NY,10001 +214051,Bose SoundSport Headphones,1,99.99,2019-06-26 10:38:00,908 Main St, Portland,OR,97035 +214052,AA Batteries (4-pack),2,3.84,2019-06-10 15:37:00,976 14th St, Los Angeles,CA,90001 +214053,iPhone,1,700.0,2019-06-17 13:15:00,281 Main St, Atlanta,GA,30301 +214054,iPhone,1,700.0,2019-06-15 21:02:00,928 Maple St, Los Angeles,CA,90001 +214055,Wired Headphones,1,11.99,2019-06-25 10:51:00,94 Cedar St, Boston,MA,02215 +214056,Wired Headphones,1,11.99,2019-06-10 23:15:00,616 North St, Los Angeles,CA,90001 +214057,Bose SoundSport Headphones,1,99.99,2019-06-22 12:33:00,704 11th St, San Francisco,CA,94016 +214058,20in Monitor,1,109.99,2019-06-18 12:33:00,726 Washington St, Boston,MA,02215 +214059,USB-C Charging Cable,1,11.95,2019-06-29 08:17:00,860 8th St, Portland,OR,97035 +214060,Apple Airpods Headphones,1,150.0,2019-06-10 11:41:00,967 6th St, New York City,NY,10001 +214061,Wired Headphones,1,11.99,2019-06-13 10:01:00,282 River St, Los Angeles,CA,90001 +214062,AAA Batteries (4-pack),1,2.99,2019-06-27 12:48:00,690 Adams St, Los Angeles,CA,90001 +214063,AA Batteries (4-pack),1,3.84,2019-06-30 12:56:00,914 10th St, Dallas,TX,75001 +214064,AAA Batteries (4-pack),1,2.99,2019-06-29 21:37:00,283 Elm St, Los Angeles,CA,90001 +214064,USB-C Charging Cable,1,11.95,2019-06-29 21:37:00,283 Elm St, Los Angeles,CA,90001 +214065,34in Ultrawide Monitor,1,379.99,2019-06-11 10:02:00,681 6th St, Los Angeles,CA,90001 +214066,27in FHD Monitor,1,149.99,2019-06-18 12:50:00,56 Hickory St, Dallas,TX,75001 +214067,Apple Airpods Headphones,1,150.0,2019-06-25 09:29:00,691 Cedar St, New York City,NY,10001 +214068,34in Ultrawide Monitor,1,379.99,2019-06-05 16:24:00,255 Lincoln St, San Francisco,CA,94016 +214069,Lightning Charging Cable,2,14.95,2019-06-09 13:10:00,381 Cedar St, San Francisco,CA,94016 +214070,Lightning Charging Cable,1,14.95,2019-06-04 21:40:00,784 7th St, Boston,MA,02215 +214071,iPhone,1,700.0,2019-06-09 20:50:00,78 Wilson St, Boston,MA,02215 +214071,Lightning Charging Cable,1,14.95,2019-06-09 20:50:00,78 Wilson St, Boston,MA,02215 +214072,Bose SoundSport Headphones,1,99.99,2019-06-27 11:28:00,735 Lakeview St, Dallas,TX,75001 +214073,Bose SoundSport Headphones,1,99.99,2019-06-15 19:55:00,935 Washington St, Atlanta,GA,30301 +214074,AA Batteries (4-pack),2,3.84,2019-06-19 20:50:00,147 2nd St, Austin,TX,73301 +214075,ThinkPad Laptop,1,999.99,2019-06-12 10:12:00,664 Ridge St, Boston,MA,02215 +214076,Lightning Charging Cable,1,14.95,2019-06-09 18:21:00,966 Jefferson St, Portland,OR,97035 +214077,20in Monitor,1,109.99,2019-06-04 21:12:00,314 4th St, San Francisco,CA,94016 +214078,34in Ultrawide Monitor,1,379.99,2019-06-04 16:39:00,568 North St, Portland,ME,04101 +214079,Bose SoundSport Headphones,1,99.99,2019-06-03 11:14:00,390 Main St, Los Angeles,CA,90001 +214080,34in Ultrawide Monitor,1,379.99,2019-06-19 18:09:00,738 Jackson St, San Francisco,CA,94016 +214081,iPhone,1,700.0,2019-06-17 10:55:00,193 North St, Dallas,TX,75001 +214081,Lightning Charging Cable,1,14.95,2019-06-17 10:55:00,193 North St, Dallas,TX,75001 +214082,Lightning Charging Cable,1,14.95,2019-06-18 16:31:00,93 Lake St, Los Angeles,CA,90001 +214083,AA Batteries (4-pack),2,3.84,2019-06-05 17:21:00,690 Meadow St, Boston,MA,02215 +214084,AAA Batteries (4-pack),4,2.99,2019-06-16 19:41:00,500 Main St, New York City,NY,10001 +214085,Google Phone,1,600.0,2019-06-05 22:51:00,48 Elm St, Boston,MA,02215 +214086,AAA Batteries (4-pack),1,2.99,2019-06-27 21:50:00,144 Spruce St, San Francisco,CA,94016 +214087,Apple Airpods Headphones,1,150.0,2019-06-26 03:58:00,694 Cherry St, Los Angeles,CA,90001 +214088,Macbook Pro Laptop,1,1700.0,2019-06-06 13:08:00,662 14th St, New York City,NY,10001 +214089,Lightning Charging Cable,1,14.95,2019-06-03 09:08:00,704 Sunset St, Portland,OR,97035 +214090,AA Batteries (4-pack),1,3.84,2019-06-15 16:30:00,954 14th St, Boston,MA,02215 +214091,Wired Headphones,1,11.99,2019-06-02 22:37:00,104 1st St, San Francisco,CA,94016 +214092,Wired Headphones,1,11.99,2019-06-05 16:39:00,539 4th St, Atlanta,GA,30301 +214093,Google Phone,1,600.0,2019-06-01 10:52:00,128 Cedar St, Boston,MA,02215 +214094,Macbook Pro Laptop,1,1700.0,2019-06-08 01:24:00,934 11th St, Dallas,TX,75001 +214094,Bose SoundSport Headphones,1,99.99,2019-06-08 01:24:00,934 11th St, Dallas,TX,75001 +214095,Wired Headphones,1,11.99,2019-06-07 10:00:00,101 Elm St, San Francisco,CA,94016 +214096,AA Batteries (4-pack),2,3.84,2019-06-13 17:14:00,271 8th St, Atlanta,GA,30301 +214097,AAA Batteries (4-pack),1,2.99,2019-06-24 20:47:00,10 6th St, Dallas,TX,75001 +214098,Bose SoundSport Headphones,1,99.99,2019-06-18 17:55:00,161 12th St, Portland,OR,97035 +214099,Wired Headphones,1,11.99,2019-07-01 01:29:00,222 2nd St, San Francisco,CA,94016 +214099,USB-C Charging Cable,1,11.95,2019-07-01 01:29:00,222 2nd St, San Francisco,CA,94016 +214100,27in FHD Monitor,1,149.99,2019-06-12 05:57:00,501 Adams St, New York City,NY,10001 +214101,Bose SoundSport Headphones,1,99.99,2019-06-22 19:56:00,396 Lincoln St, San Francisco,CA,94016 +214102,AAA Batteries (4-pack),1,2.99,2019-06-01 13:21:00,95 Center St, Atlanta,GA,30301 +214103,Bose SoundSport Headphones,1,99.99,2019-06-24 16:16:00,994 Center St, Seattle,WA,98101 +214104,AAA Batteries (4-pack),1,2.99,2019-06-28 19:42:00,705 Chestnut St, New York City,NY,10001 +214105,27in 4K Gaming Monitor,1,389.99,2019-06-23 18:36:00,882 14th St, Los Angeles,CA,90001 +214106,Wired Headphones,1,11.99,2019-06-22 08:04:00,799 Willow St, Atlanta,GA,30301 +214107,Bose SoundSport Headphones,1,99.99,2019-06-25 18:04:00,642 14th St, Dallas,TX,75001 +214108,Wired Headphones,1,11.99,2019-06-20 08:35:00,742 Maple St, San Francisco,CA,94016 +214109,USB-C Charging Cable,1,11.95,2019-06-23 12:07:00,445 Center St, San Francisco,CA,94016 +214110,AA Batteries (4-pack),1,3.84,2019-06-17 10:13:00,24 Highland St, Boston,MA,02215 +214111,Wired Headphones,1,11.99,2019-06-26 01:07:00,368 Cedar St, Los Angeles,CA,90001 +214112,27in FHD Monitor,1,149.99,2019-06-24 21:09:00,872 Park St, Boston,MA,02215 +214113,Google Phone,1,600.0,2019-06-21 12:22:00,184 13th St, Portland,OR,97035 +214114,Lightning Charging Cable,1,14.95,2019-06-29 08:10:00,507 Sunset St, San Francisco,CA,94016 +214115,Apple Airpods Headphones,1,150.0,2019-06-24 18:44:00,89 Sunset St, Boston,MA,02215 +214116,Wired Headphones,1,11.99,2019-06-01 08:36:00,502 9th St, San Francisco,CA,94016 +214117,USB-C Charging Cable,1,11.95,2019-06-25 10:31:00,795 Jackson St, Dallas,TX,75001 +214118,34in Ultrawide Monitor,1,379.99,2019-06-28 14:40:00,412 14th St, San Francisco,CA,94016 +214119,Lightning Charging Cable,1,14.95,2019-06-02 21:18:00,799 Hickory St, Seattle,WA,98101 +214120,iPhone,1,700.0,2019-06-30 22:28:00,971 Spruce St, San Francisco,CA,94016 +214121,34in Ultrawide Monitor,1,379.99,2019-06-20 19:12:00,291 10th St, Los Angeles,CA,90001 +214122,Wired Headphones,1,11.99,2019-06-03 01:49:00,180 Wilson St, New York City,NY,10001 +214123,Wired Headphones,1,11.99,2019-06-02 16:06:00,806 Forest St, New York City,NY,10001 +214124,27in FHD Monitor,1,149.99,2019-06-06 19:58:00,66 Elm St, San Francisco,CA,94016 +214125,Macbook Pro Laptop,1,1700.0,2019-06-01 16:23:00,403 Ridge St, Los Angeles,CA,90001 +214126,USB-C Charging Cable,1,11.95,2019-06-07 18:09:00,432 Ridge St, Los Angeles,CA,90001 +214127,20in Monitor,1,109.99,2019-06-20 10:09:00,744 South St, New York City,NY,10001 +214128,AA Batteries (4-pack),1,3.84,2019-06-17 12:28:00,223 Highland St, Atlanta,GA,30301 +214129,34in Ultrawide Monitor,1,379.99,2019-06-19 09:39:00,632 Willow St, Atlanta,GA,30301 +214130,AAA Batteries (4-pack),1,2.99,2019-06-12 13:24:00,228 13th St, Boston,MA,02215 +214131,Apple Airpods Headphones,1,150.0,2019-06-25 19:22:00,524 Lincoln St, Seattle,WA,98101 +214132,AA Batteries (4-pack),1,3.84,2019-06-26 12:52:00,14 8th St, Atlanta,GA,30301 +214133,AAA Batteries (4-pack),3,2.99,2019-06-15 12:11:00,857 Elm St, Seattle,WA,98101 +214134,AA Batteries (4-pack),1,3.84,2019-06-10 10:37:00,147 Sunset St, San Francisco,CA,94016 +214135,27in FHD Monitor,1,149.99,2019-06-18 11:18:00,929 Lincoln St, Los Angeles,CA,90001 +214136,Lightning Charging Cable,1,14.95,2019-06-30 12:27:00,48 Walnut St, Los Angeles,CA,90001 +214137,Lightning Charging Cable,1,14.95,2019-06-29 12:24:00,185 Johnson St, Atlanta,GA,30301 +214138,AAA Batteries (4-pack),2,2.99,2019-06-13 12:51:00,552 South St, Los Angeles,CA,90001 +214139,USB-C Charging Cable,1,11.95,2019-06-07 16:55:00,216 Wilson St, San Francisco,CA,94016 +214140,Wired Headphones,1,11.99,2019-06-08 18:47:00,833 8th St, Dallas,TX,75001 +214141,Google Phone,1,600.0,2019-06-07 23:56:00,371 Hickory St, San Francisco,CA,94016 +214142,Macbook Pro Laptop,1,1700.0,2019-06-24 23:41:00,229 Main St, San Francisco,CA,94016 +214143,Lightning Charging Cable,1,14.95,2019-06-19 21:02:00,92 Maple St, Seattle,WA,98101 +214144,USB-C Charging Cable,1,11.95,2019-06-10 20:57:00,630 Cedar St, Seattle,WA,98101 +214145,Apple Airpods Headphones,1,150.0,2019-06-18 16:16:00,248 10th St, New York City,NY,10001 +214146,USB-C Charging Cable,1,11.95,2019-06-21 10:39:00,62 Cedar St, Atlanta,GA,30301 +214147,AAA Batteries (4-pack),1,2.99,2019-06-28 09:48:00,696 Cherry St, New York City,NY,10001 +214148,Lightning Charging Cable,1,14.95,2019-06-14 20:04:00,363 Cedar St, Austin,TX,73301 +214149,AA Batteries (4-pack),1,3.84,2019-06-22 22:44:00,600 5th St, Los Angeles,CA,90001 +214150,USB-C Charging Cable,1,11.95,2019-06-17 18:09:00,795 10th St, San Francisco,CA,94016 +214151,27in FHD Monitor,1,149.99,2019-06-22 09:55:00,339 2nd St, New York City,NY,10001 +214152,iPhone,1,700.0,2019-06-15 20:10:00,139 10th St, San Francisco,CA,94016 +214153,Flatscreen TV,1,300.0,2019-06-18 10:31:00,35 Maple St, Austin,TX,73301 +214154,USB-C Charging Cable,1,11.95,2019-06-25 22:12:00,873 12th St, San Francisco,CA,94016 +214155,Wired Headphones,1,11.99,2019-06-12 04:26:00,757 Meadow St, Boston,MA,02215 +214156,27in FHD Monitor,1,149.99,2019-06-10 19:31:00,677 Ridge St, San Francisco,CA,94016 +214157,AAA Batteries (4-pack),1,2.99,2019-06-16 20:02:00,493 Adams St, San Francisco,CA,94016 +214158,AAA Batteries (4-pack),1,2.99,2019-06-06 12:03:00,6 Adams St, Boston,MA,02215 +214159,Lightning Charging Cable,1,14.95,2019-06-27 18:50:00,629 Hickory St, San Francisco,CA,94016 +214160,ThinkPad Laptop,1,999.99,2019-06-04 22:23:00,685 Chestnut St, Los Angeles,CA,90001 +214161,Bose SoundSport Headphones,1,99.99,2019-06-06 15:33:00,904 Washington St, San Francisco,CA,94016 +214162,iPhone,1,700.0,2019-06-16 20:43:00,356 1st St, Boston,MA,02215 +214163,AAA Batteries (4-pack),1,2.99,2019-06-02 09:44:00,549 Chestnut St, Los Angeles,CA,90001 +214164,USB-C Charging Cable,1,11.95,2019-06-27 14:03:00,11 Elm St, San Francisco,CA,94016 +214165,AAA Batteries (4-pack),1,2.99,2019-06-23 13:40:00,655 Main St, Los Angeles,CA,90001 +214166,Wired Headphones,1,11.99,2019-06-20 18:48:00,230 12th St, San Francisco,CA,94016 +214167,Apple Airpods Headphones,1,150.0,2019-06-05 15:42:00,402 Cherry St, Atlanta,GA,30301 +214168,USB-C Charging Cable,1,11.95,2019-06-11 10:42:00,100 12th St, Atlanta,GA,30301 +214169,AA Batteries (4-pack),1,3.84,2019-06-24 19:50:00,662 Willow St, San Francisco,CA,94016 +214170,AAA Batteries (4-pack),3,2.99,2019-06-11 10:50:00,514 Washington St, San Francisco,CA,94016 +214171,AA Batteries (4-pack),1,3.84,2019-06-14 14:58:00,86 Lakeview St, San Francisco,CA,94016 +214172,AAA Batteries (4-pack),1,2.99,2019-06-08 21:22:00,566 Elm St, Seattle,WA,98101 +214173,USB-C Charging Cable,1,11.95,2019-06-10 20:56:00,113 Lakeview St, Boston,MA,02215 +214174,AA Batteries (4-pack),2,3.84,2019-06-23 09:48:00,502 Wilson St, Atlanta,GA,30301 +214175,iPhone,1,700.0,2019-06-01 12:15:00,392 Jackson St, Austin,TX,73301 +214175,Lightning Charging Cable,1,14.95,2019-06-01 12:15:00,392 Jackson St, Austin,TX,73301 +214176,AAA Batteries (4-pack),2,2.99,2019-06-11 20:41:00,756 Pine St, San Francisco,CA,94016 +214177,27in FHD Monitor,1,149.99,2019-06-07 14:41:00,923 Johnson St, New York City,NY,10001 +214178,Vareebadd Phone,1,400.0,2019-06-14 00:21:00,405 Adams St, Los Angeles,CA,90001 +214179,AAA Batteries (4-pack),1,2.99,2019-06-26 22:00:00,535 Ridge St, New York City,NY,10001 +214180,Google Phone,1,600.0,2019-06-01 15:28:00,48 7th St, San Francisco,CA,94016 +214181,Vareebadd Phone,1,400.0,2019-06-07 21:44:00,175 Lakeview St, San Francisco,CA,94016 +214182,Flatscreen TV,1,300.0,2019-06-06 12:16:00,762 5th St, San Francisco,CA,94016 +214183,Wired Headphones,1,11.99,2019-06-06 13:34:00,986 7th St, Los Angeles,CA,90001 +214184,27in FHD Monitor,1,149.99,2019-06-17 20:08:00,329 Pine St, San Francisco,CA,94016 +214185,USB-C Charging Cable,1,11.95,2019-06-10 12:43:00,944 11th St, Los Angeles,CA,90001 +214186,Apple Airpods Headphones,1,150.0,2019-06-08 19:16:00,58 Dogwood St, Dallas,TX,75001 +214187,Bose SoundSport Headphones,1,99.99,2019-06-12 22:05:00,453 West St, Seattle,WA,98101 +214188,27in FHD Monitor,1,149.99,2019-06-07 20:38:00,510 9th St, Atlanta,GA,30301 +214189,27in FHD Monitor,1,149.99,2019-06-14 19:01:00,711 8th St, Portland,OR,97035 +214190,ThinkPad Laptop,1,999.99,2019-06-11 11:59:00,863 10th St, Dallas,TX,75001 +214191,Lightning Charging Cable,1,14.95,2019-06-17 20:53:00,259 Jackson St, Austin,TX,73301 +214192,Wired Headphones,1,11.99,2019-06-17 18:11:00,865 Walnut St, Austin,TX,73301 +214193,AA Batteries (4-pack),1,3.84,2019-06-16 17:51:00,115 Elm St, New York City,NY,10001 +214194,Lightning Charging Cable,1,14.95,2019-06-18 23:18:00,577 Wilson St, San Francisco,CA,94016 +214195,AAA Batteries (4-pack),2,2.99,2019-06-02 12:15:00,100 Johnson St, Austin,TX,73301 +214196,AA Batteries (4-pack),1,3.84,2019-06-23 13:39:00,779 12th St, San Francisco,CA,94016 +214197,AAA Batteries (4-pack),3,2.99,2019-06-10 13:56:00,566 2nd St, Seattle,WA,98101 +214198,27in FHD Monitor,1,149.99,2019-06-15 17:06:00,751 Adams St, Austin,TX,73301 +214199,Bose SoundSport Headphones,1,99.99,2019-06-01 22:02:00,671 2nd St, Portland,OR,97035 +214200,Lightning Charging Cable,1,14.95,2019-06-25 12:31:00,837 1st St, San Francisco,CA,94016 +214201,Lightning Charging Cable,1,14.95,2019-06-28 19:02:00,565 1st St, San Francisco,CA,94016 +214202,Lightning Charging Cable,1,14.95,2019-06-04 22:03:00,475 Pine St, San Francisco,CA,94016 +214203,Bose SoundSport Headphones,1,99.99,2019-06-03 15:08:00,187 7th St, Los Angeles,CA,90001 +214204,Lightning Charging Cable,1,14.95,2019-06-01 11:57:00,723 Walnut St, San Francisco,CA,94016 +214205,AAA Batteries (4-pack),1,2.99,2019-06-26 20:13:00,99 Adams St, Seattle,WA,98101 +214206,ThinkPad Laptop,1,999.99,2019-06-18 09:50:00,834 Highland St, Dallas,TX,75001 +214207,Bose SoundSport Headphones,1,99.99,2019-06-30 10:45:00,294 Highland St, Atlanta,GA,30301 +214208,AAA Batteries (4-pack),1,2.99,2019-06-07 17:44:00,822 South St, San Francisco,CA,94016 +214209,20in Monitor,1,109.99,2019-06-10 10:43:00,561 Madison St, Seattle,WA,98101 +214210,Macbook Pro Laptop,1,1700.0,2019-06-09 11:03:00,535 Sunset St, Seattle,WA,98101 +214211,iPhone,1,700.0,2019-06-12 05:43:00,944 Chestnut St, Dallas,TX,75001 +214212,USB-C Charging Cable,1,11.95,2019-06-29 20:38:00,196 6th St, San Francisco,CA,94016 +214213,27in 4K Gaming Monitor,1,389.99,2019-06-30 23:20:00,312 2nd St, Boston,MA,02215 +214214,Macbook Pro Laptop,1,1700.0,2019-06-05 17:40:00,826 West St, New York City,NY,10001 +214215,Bose SoundSport Headphones,1,99.99,2019-06-26 22:50:00,843 Cherry St, Los Angeles,CA,90001 +214216,Bose SoundSport Headphones,1,99.99,2019-06-19 11:32:00,986 10th St, Los Angeles,CA,90001 +214217,27in 4K Gaming Monitor,1,389.99,2019-06-27 00:49:00,382 4th St, Portland,OR,97035 +214218,Wired Headphones,1,11.99,2019-06-18 13:37:00,759 Hill St, Portland,OR,97035 +214219,USB-C Charging Cable,1,11.95,2019-06-29 08:21:00,643 Madison St, San Francisco,CA,94016 +214220,AA Batteries (4-pack),2,3.84,2019-06-27 12:02:00,927 Cedar St, San Francisco,CA,94016 +214221,AA Batteries (4-pack),3,3.84,2019-06-28 11:47:00,208 Chestnut St, Los Angeles,CA,90001 +214222,USB-C Charging Cable,1,11.95,2019-06-19 21:35:00,787 Center St, Dallas,TX,75001 +214223,34in Ultrawide Monitor,1,379.99,2019-06-26 14:35:00,404 Cedar St, Austin,TX,73301 +214224,Apple Airpods Headphones,1,150.0,2019-06-18 10:02:00,564 Cedar St, Los Angeles,CA,90001 +214225,Wired Headphones,1,11.99,2019-06-18 10:11:00,389 6th St, Los Angeles,CA,90001 +214226,AA Batteries (4-pack),2,3.84,2019-06-09 18:48:00,155 Cedar St, Los Angeles,CA,90001 +214227,27in 4K Gaming Monitor,1,389.99,2019-06-07 17:32:00,893 Dogwood St, Seattle,WA,98101 +214228,AAA Batteries (4-pack),1,2.99,2019-06-18 14:05:00,122 Ridge St, San Francisco,CA,94016 +214229,Wired Headphones,1,11.99,2019-06-15 07:03:00,95 Washington St, San Francisco,CA,94016 +214230,Lightning Charging Cable,1,14.95,2019-06-21 12:02:00,481 Madison St, San Francisco,CA,94016 +214231,Apple Airpods Headphones,1,150.0,2019-06-07 21:02:00,728 Hill St, Los Angeles,CA,90001 +214232,Bose SoundSport Headphones,1,99.99,2019-06-15 07:08:00,695 Chestnut St, Atlanta,GA,30301 +214233,AA Batteries (4-pack),1,3.84,2019-06-29 09:28:00,423 Pine St, Atlanta,GA,30301 +214234,20in Monitor,1,109.99,2019-06-09 12:41:00,731 Cedar St, San Francisco,CA,94016 +214235,AAA Batteries (4-pack),1,2.99,2019-06-30 19:45:00,169 Walnut St, Los Angeles,CA,90001 +214236,USB-C Charging Cable,1,11.95,2019-06-12 22:18:00,616 9th St, Austin,TX,73301 +214237,USB-C Charging Cable,1,11.95,2019-06-08 08:34:00,597 Madison St, Seattle,WA,98101 +214238,Wired Headphones,1,11.99,2019-06-19 08:07:00,663 Johnson St, Los Angeles,CA,90001 +214239,Bose SoundSport Headphones,1,99.99,2019-06-16 08:49:00,592 Madison St, Los Angeles,CA,90001 +214240,27in FHD Monitor,1,149.99,2019-06-12 08:54:00,82 Willow St, Atlanta,GA,30301 +214241,iPhone,1,700.0,2019-06-03 18:12:00,126 Dogwood St, San Francisco,CA,94016 +214241,Lightning Charging Cable,1,14.95,2019-06-03 18:12:00,126 Dogwood St, San Francisco,CA,94016 +214242,AA Batteries (4-pack),1,3.84,2019-06-30 17:44:00,114 South St, Atlanta,GA,30301 +214243,Macbook Pro Laptop,1,1700.0,2019-06-19 21:14:00,167 Meadow St, Los Angeles,CA,90001 +214244,USB-C Charging Cable,1,11.95,2019-06-30 07:48:00,301 6th St, Boston,MA,02215 +214245,AAA Batteries (4-pack),3,2.99,2019-06-16 23:29:00,140 Jackson St, New York City,NY,10001 +214246,AAA Batteries (4-pack),2,2.99,2019-06-02 22:23:00,631 8th St, Boston,MA,02215 +214247,AAA Batteries (4-pack),2,2.99,2019-06-25 14:35:00,531 North St, San Francisco,CA,94016 +214248,Bose SoundSport Headphones,1,99.99,2019-06-14 17:50:00,420 Wilson St, Los Angeles,CA,90001 +214249,Lightning Charging Cable,1,14.95,2019-06-29 19:22:00,469 Adams St, Los Angeles,CA,90001 +214250,iPhone,1,700.0,2019-06-02 16:05:00,797 Hill St, Los Angeles,CA,90001 +214251,AA Batteries (4-pack),2,3.84,2019-06-30 23:07:00,123 Hickory St, Portland,ME,04101 +214252,Flatscreen TV,1,300.0,2019-06-29 11:17:00,155 Center St, San Francisco,CA,94016 +214253,Lightning Charging Cable,1,14.95,2019-06-08 10:57:00,614 Hickory St, San Francisco,CA,94016 +214254,Bose SoundSport Headphones,1,99.99,2019-06-09 16:07:00,794 12th St, Atlanta,GA,30301 +214254,Google Phone,1,600.0,2019-06-09 16:07:00,794 12th St, Atlanta,GA,30301 +214255,Lightning Charging Cable,1,14.95,2019-06-06 09:53:00,315 Madison St, Seattle,WA,98101 +214256,AA Batteries (4-pack),1,3.84,2019-06-21 15:13:00,932 Highland St, Los Angeles,CA,90001 +214256,AAA Batteries (4-pack),1,2.99,2019-06-21 15:13:00,932 Highland St, Los Angeles,CA,90001 +214257,Wired Headphones,1,11.99,2019-06-05 16:57:00,194 Church St, San Francisco,CA,94016 +214258,Lightning Charging Cable,1,14.95,2019-06-09 07:29:00,164 South St, Portland,OR,97035 +214259,iPhone,1,700.0,2019-06-27 09:04:00,770 8th St, Los Angeles,CA,90001 +214259,Wired Headphones,1,11.99,2019-06-27 09:04:00,770 8th St, Los Angeles,CA,90001 +214260,Wired Headphones,1,11.99,2019-06-08 21:45:00,110 Meadow St, San Francisco,CA,94016 +214261,Wired Headphones,1,11.99,2019-06-11 12:35:00,197 6th St, Los Angeles,CA,90001 +214262,Wired Headphones,1,11.99,2019-06-06 13:36:00,547 Jefferson St, New York City,NY,10001 +214263,Google Phone,1,600.0,2019-06-10 08:01:00,190 1st St, San Francisco,CA,94016 +214264,Bose SoundSport Headphones,1,99.99,2019-06-02 22:10:00,331 North St, San Francisco,CA,94016 +214265,27in FHD Monitor,1,149.99,2019-06-16 10:22:00,136 Meadow St, Seattle,WA,98101 +214266,AA Batteries (4-pack),4,3.84,2019-06-13 17:21:00,98 10th St, San Francisco,CA,94016 +214267,Apple Airpods Headphones,1,150.0,2019-06-08 19:03:00,528 10th St, Dallas,TX,75001 +214268,Macbook Pro Laptop,1,1700.0,2019-06-21 13:47:00,629 Walnut St, San Francisco,CA,94016 +214269,AA Batteries (4-pack),1,3.84,2019-06-27 15:25:00,381 Sunset St, Los Angeles,CA,90001 +214270,USB-C Charging Cable,1,11.95,2019-06-08 16:27:00,300 Dogwood St, Los Angeles,CA,90001 +214271,AAA Batteries (4-pack),1,2.99,2019-06-21 21:59:00,808 Hill St, Atlanta,GA,30301 +214272,AAA Batteries (4-pack),1,2.99,2019-06-25 15:43:00,684 Church St, Boston,MA,02215 +214273,Wired Headphones,1,11.99,2019-06-25 17:18:00,176 13th St, San Francisco,CA,94016 +214274,USB-C Charging Cable,1,11.95,2019-06-04 15:06:00,210 Madison St, Los Angeles,CA,90001 +214275,AA Batteries (4-pack),1,3.84,2019-06-02 15:21:00,255 1st St, Seattle,WA,98101 +214276,USB-C Charging Cable,1,11.95,2019-06-19 09:21:00,857 Adams St, Los Angeles,CA,90001 +214277,AAA Batteries (4-pack),1,2.99,2019-06-08 17:00:00,457 Lake St, Los Angeles,CA,90001 +214278,Macbook Pro Laptop,1,1700.0,2019-06-28 13:39:00,772 12th St, Austin,TX,73301 +214279,Wired Headphones,1,11.99,2019-06-06 18:48:00,465 Washington St, San Francisco,CA,94016 +214280,20in Monitor,1,109.99,2019-06-01 17:14:00,221 11th St, New York City,NY,10001 +214281,27in FHD Monitor,1,149.99,2019-06-04 21:01:00,122 Hickory St, Portland,OR,97035 +214282,Bose SoundSport Headphones,1,99.99,2019-06-17 19:07:00,562 2nd St, Los Angeles,CA,90001 +214283,AAA Batteries (4-pack),2,2.99,2019-06-18 08:55:00,241 Willow St, Boston,MA,02215 +214284,34in Ultrawide Monitor,1,379.99,2019-06-26 10:51:00,541 2nd St, Boston,MA,02215 +214285,20in Monitor,1,109.99,2019-06-30 15:03:00,609 Spruce St, Los Angeles,CA,90001 +214286,Wired Headphones,1,11.99,2019-06-18 07:06:00,965 Forest St, Portland,ME,04101 +214286,27in 4K Gaming Monitor,1,389.99,2019-06-18 07:06:00,965 Forest St, Portland,ME,04101 +214287,AA Batteries (4-pack),1,3.84,2019-06-26 18:45:00,15 Cherry St, Portland,OR,97035 +214288,34in Ultrawide Monitor,1,379.99,2019-06-30 14:35:00,822 Elm St, New York City,NY,10001 +214289,Lightning Charging Cable,1,14.95,2019-06-28 15:49:00,429 Meadow St, Los Angeles,CA,90001 +214290,Apple Airpods Headphones,1,150.0,2019-06-30 05:41:00,798 4th St, Boston,MA,02215 +214291,AA Batteries (4-pack),1,3.84,2019-06-13 18:27:00,819 Forest St, Seattle,WA,98101 +214292,iPhone,1,700.0,2019-06-04 12:07:00,578 8th St, Los Angeles,CA,90001 +214292,Lightning Charging Cable,1,14.95,2019-06-04 12:07:00,578 8th St, Los Angeles,CA,90001 +214293,Lightning Charging Cable,1,14.95,2019-06-01 13:04:00,996 North St, Boston,MA,02215 +214294,USB-C Charging Cable,3,11.95,2019-06-12 09:30:00,815 14th St, San Francisco,CA,94016 +214295,Lightning Charging Cable,1,14.95,2019-06-01 13:03:00,776 2nd St, Dallas,TX,75001 +214296,Macbook Pro Laptop,1,1700.0,2019-06-05 21:10:00,105 7th St, Seattle,WA,98101 +214297,Apple Airpods Headphones,1,150.0,2019-06-02 12:30:00,690 Hickory St, San Francisco,CA,94016 +214298,Apple Airpods Headphones,1,150.0,2019-06-06 11:33:00,513 Forest St, San Francisco,CA,94016 +214299,Bose SoundSport Headphones,1,99.99,2019-06-30 11:43:00,898 4th St, Dallas,TX,75001 +214300,USB-C Charging Cable,1,11.95,2019-06-27 07:16:00,667 4th St, San Francisco,CA,94016 +214301,USB-C Charging Cable,1,11.95,2019-06-02 09:39:00,832 Walnut St, Boston,MA,02215 +214302,Apple Airpods Headphones,1,150.0,2019-06-03 23:11:00,851 Walnut St, Portland,OR,97035 +214303,Macbook Pro Laptop,1,1700.0,2019-06-13 21:44:00,969 4th St, Portland,OR,97035 +214304,Wired Headphones,1,11.99,2019-06-29 15:29:00,689 6th St, Boston,MA,02215 +214305,Wired Headphones,2,11.99,2019-06-25 11:10:00,966 Center St, Seattle,WA,98101 +214306,Wired Headphones,1,11.99,2019-06-24 18:03:00,935 Park St, Seattle,WA,98101 +214307,Lightning Charging Cable,1,14.95,2019-06-07 21:35:00,362 Chestnut St, Portland,OR,97035 +214308,USB-C Charging Cable,1,11.95,2019-06-20 12:49:00,280 Jefferson St, Los Angeles,CA,90001 +214309,27in FHD Monitor,1,149.99,2019-06-03 16:16:00,402 Center St, Austin,TX,73301 +214310,Lightning Charging Cable,1,14.95,2019-06-19 10:49:00,280 Wilson St, Atlanta,GA,30301 +214311,USB-C Charging Cable,1,11.95,2019-06-07 10:30:00,799 Chestnut St, New York City,NY,10001 +214312,AA Batteries (4-pack),1,3.84,2019-06-15 17:21:00,805 Church St, San Francisco,CA,94016 +214313,Bose SoundSport Headphones,1,99.99,2019-06-28 19:24:00,389 Ridge St, Atlanta,GA,30301 +214314,27in FHD Monitor,1,149.99,2019-06-02 16:49:00,161 14th St, New York City,NY,10001 +214315,USB-C Charging Cable,1,11.95,2019-06-25 19:07:00,379 Chestnut St, New York City,NY,10001 +214316,USB-C Charging Cable,1,11.95,2019-06-03 09:33:00,994 Cedar St, Portland,OR,97035 +214317,27in FHD Monitor,1,149.99,2019-06-30 18:26:00,155 Pine St, New York City,NY,10001 +214318,Wired Headphones,1,11.99,2019-06-15 13:16:00,485 Elm St, San Francisco,CA,94016 +214319,AAA Batteries (4-pack),1,2.99,2019-06-07 16:25:00,306 8th St, San Francisco,CA,94016 +214320,Apple Airpods Headphones,1,150.0,2019-06-14 16:42:00,334 Madison St, Seattle,WA,98101 +214321,AA Batteries (4-pack),1,3.84,2019-06-03 13:38:00,632 Center St, New York City,NY,10001 +214322,Vareebadd Phone,1,400.0,2019-06-24 22:44:00,586 Lake St, San Francisco,CA,94016 +214323,Wired Headphones,1,11.99,2019-06-17 12:30:00,574 Hickory St, Seattle,WA,98101 +214324,27in 4K Gaming Monitor,1,389.99,2019-06-15 21:33:00,224 8th St, Atlanta,GA,30301 +214325,Apple Airpods Headphones,1,150.0,2019-06-06 08:27:00,552 Dogwood St, Seattle,WA,98101 +214326,34in Ultrawide Monitor,1,379.99,2019-06-02 11:22:00,971 Meadow St, Seattle,WA,98101 +214327,34in Ultrawide Monitor,1,379.99,2019-06-08 21:03:00,90 Dogwood St, Portland,ME,04101 +214328,Apple Airpods Headphones,1,150.0,2019-06-28 23:02:00,898 Lincoln St, Atlanta,GA,30301 +214329,Apple Airpods Headphones,1,150.0,2019-06-12 21:12:00,766 13th St, Atlanta,GA,30301 +214330,Lightning Charging Cable,1,14.95,2019-06-18 11:04:00,910 14th St, Dallas,TX,75001 +214331,AA Batteries (4-pack),1,3.84,2019-06-29 20:18:00,146 Cherry St, Portland,OR,97035 +214332,AA Batteries (4-pack),1,3.84,2019-06-16 09:46:00,795 5th St, Los Angeles,CA,90001 +214333,USB-C Charging Cable,2,11.95,2019-06-15 20:30:00,966 Adams St, San Francisco,CA,94016 +214334,34in Ultrawide Monitor,1,379.99,2019-06-24 16:30:00,549 Lake St, Seattle,WA,98101 +214335,34in Ultrawide Monitor,1,379.99,2019-06-27 20:36:00,11 Dogwood St, San Francisco,CA,94016 +214336,Flatscreen TV,1,300.0,2019-06-07 00:59:00,983 Cherry St, Atlanta,GA,30301 +214337,AAA Batteries (4-pack),2,2.99,2019-06-14 16:19:00,240 Ridge St, Dallas,TX,75001 +214338,Lightning Charging Cable,1,14.95,2019-06-26 19:22:00,707 10th St, San Francisco,CA,94016 +214339,Wired Headphones,1,11.99,2019-06-17 00:38:00,680 4th St, San Francisco,CA,94016 +214340,Lightning Charging Cable,1,14.95,2019-06-17 16:33:00,895 Madison St, Dallas,TX,75001 +214341,LG Dryer,1,600.0,2019-06-02 22:55:00,157 2nd St, San Francisco,CA,94016 +214342,AA Batteries (4-pack),1,3.84,2019-06-13 18:21:00,662 Forest St, Boston,MA,02215 +214343,Flatscreen TV,1,300.0,2019-06-08 10:37:00,194 Sunset St, Boston,MA,02215 +214344,Bose SoundSport Headphones,1,99.99,2019-06-30 15:39:00,763 9th St, Los Angeles,CA,90001 +214345,AA Batteries (4-pack),1,3.84,2019-06-29 01:48:00,618 River St, Los Angeles,CA,90001 +214346,Lightning Charging Cable,1,14.95,2019-06-08 16:29:00,534 Cedar St, Dallas,TX,75001 +214347,Wired Headphones,1,11.99,2019-06-11 18:22:00,986 Main St, New York City,NY,10001 +214348,Wired Headphones,1,11.99,2019-06-25 03:44:00,552 Madison St, Austin,TX,73301 +214349,iPhone,1,700.0,2019-06-21 23:49:00,758 Lake St, Seattle,WA,98101 +214349,Wired Headphones,1,11.99,2019-06-21 23:49:00,758 Lake St, Seattle,WA,98101 +214350,20in Monitor,1,109.99,2019-06-04 20:00:00,69 7th St, San Francisco,CA,94016 +214351,AAA Batteries (4-pack),1,2.99,2019-06-13 23:02:00,802 Wilson St, San Francisco,CA,94016 +214352,Lightning Charging Cable,1,14.95,2019-06-27 00:05:00,247 12th St, Portland,OR,97035 +214353,AA Batteries (4-pack),1,3.84,2019-06-29 19:42:00,250 9th St, Boston,MA,02215 +214354,Macbook Pro Laptop,1,1700.0,2019-06-18 12:21:00,893 Washington St, San Francisco,CA,94016 +214355,Macbook Pro Laptop,1,1700.0,2019-06-20 07:13:00,541 Hickory St, Austin,TX,73301 +214356,Flatscreen TV,1,300.0,2019-06-15 22:26:00,468 Pine St, San Francisco,CA,94016 +214357,USB-C Charging Cable,1,11.95,2019-06-01 09:28:00,289 Hickory St, Seattle,WA,98101 +214358,27in 4K Gaming Monitor,1,389.99,2019-06-02 19:20:00,535 9th St, Dallas,TX,75001 +214359,AAA Batteries (4-pack),2,2.99,2019-06-05 12:31:00,636 Park St, Seattle,WA,98101 +214360,Bose SoundSport Headphones,1,99.99,2019-06-02 12:19:00,477 Lake St, San Francisco,CA,94016 +214361,Bose SoundSport Headphones,1,99.99,2019-06-29 12:29:00,440 Lakeview St, San Francisco,CA,94016 +214362,Bose SoundSport Headphones,1,99.99,2019-06-29 18:01:00,869 South St, Seattle,WA,98101 +214363,27in FHD Monitor,1,149.99,2019-06-07 20:06:00,459 Lakeview St, Dallas,TX,75001 +214364,USB-C Charging Cable,1,11.95,2019-06-17 20:14:00,652 Madison St, Austin,TX,73301 +214365,AAA Batteries (4-pack),1,2.99,2019-06-23 11:30:00,611 Elm St, New York City,NY,10001 +214366,USB-C Charging Cable,1,11.95,2019-06-24 14:27:00,522 12th St, New York City,NY,10001 +214367,Google Phone,1,600.0,2019-06-22 00:22:00,877 4th St, Atlanta,GA,30301 +214367,USB-C Charging Cable,1,11.95,2019-06-22 00:22:00,877 4th St, Atlanta,GA,30301 +214368,USB-C Charging Cable,1,11.95,2019-06-20 13:39:00,151 Lake St, Los Angeles,CA,90001 +214369,27in FHD Monitor,1,149.99,2019-06-23 16:48:00,213 Willow St, Los Angeles,CA,90001 +214370,AA Batteries (4-pack),1,3.84,2019-06-25 10:13:00,875 Hickory St, Los Angeles,CA,90001 +214371,27in FHD Monitor,1,149.99,2019-06-12 18:28:00,195 Lakeview St, San Francisco,CA,94016 +214372,AA Batteries (4-pack),1,3.84,2019-06-27 00:00:00,928 Lakeview St, Portland,OR,97035 +214373,AAA Batteries (4-pack),1,2.99,2019-06-13 18:38:00,911 North St, San Francisco,CA,94016 +214374,34in Ultrawide Monitor,1,379.99,2019-06-18 18:21:00,561 Walnut St, Los Angeles,CA,90001 +214375,iPhone,1,700.0,2019-06-28 16:27:00,504 Church St, San Francisco,CA,94016 +214375,Lightning Charging Cable,1,14.95,2019-06-28 16:27:00,504 Church St, San Francisco,CA,94016 +214376,Lightning Charging Cable,1,14.95,2019-06-25 08:29:00,378 12th St, New York City,NY,10001 +214377,AAA Batteries (4-pack),2,2.99,2019-06-15 20:07:00,323 Walnut St, Seattle,WA,98101 +214378,USB-C Charging Cable,1,11.95,2019-06-11 16:57:00,877 4th St, Austin,TX,73301 +214379,USB-C Charging Cable,1,11.95,2019-06-01 21:32:00,183 South St, San Francisco,CA,94016 +214380,Lightning Charging Cable,1,14.95,2019-06-04 16:32:00,186 Walnut St, San Francisco,CA,94016 +214381,USB-C Charging Cable,1,11.95,2019-06-09 18:49:00,683 Lincoln St, Dallas,TX,75001 +214382,Lightning Charging Cable,1,14.95,2019-06-30 18:06:00,367 Cherry St, Seattle,WA,98101 +214383,AA Batteries (4-pack),1,3.84,2019-06-05 00:12:00,812 West St, Austin,TX,73301 +214384,Lightning Charging Cable,1,14.95,2019-06-04 16:07:00,831 Dogwood St, San Francisco,CA,94016 +214385,27in FHD Monitor,1,149.99,2019-06-18 20:45:00,346 6th St, New York City,NY,10001 +214386,20in Monitor,1,109.99,2019-06-18 20:50:00,591 7th St, Seattle,WA,98101 +214387,Flatscreen TV,1,300.0,2019-06-16 21:39:00,949 Cedar St, Los Angeles,CA,90001 +214388,iPhone,1,700.0,2019-06-17 13:01:00,232 5th St, Portland,OR,97035 +214389,Apple Airpods Headphones,1,150.0,2019-06-28 05:24:00,234 Forest St, New York City,NY,10001 +214390,iPhone,1,700.0,2019-06-03 20:41:00,405 Center St, San Francisco,CA,94016 +214390,Apple Airpods Headphones,1,150.0,2019-06-03 20:41:00,405 Center St, San Francisco,CA,94016 +214391,Wired Headphones,1,11.99,2019-06-05 09:49:00,153 Lakeview St, Seattle,WA,98101 +214391,AA Batteries (4-pack),3,3.84,2019-06-05 09:49:00,153 Lakeview St, Seattle,WA,98101 +214392,20in Monitor,1,109.99,2019-06-20 17:01:00,969 River St, Seattle,WA,98101 +214393,USB-C Charging Cable,1,11.95,2019-06-27 09:32:00,262 North St, Boston,MA,02215 +214394,Apple Airpods Headphones,1,150.0,2019-06-28 20:35:00,643 Forest St, Boston,MA,02215 +214395,Flatscreen TV,1,300.0,2019-06-10 13:47:00,763 Main St, Austin,TX,73301 +214396,AA Batteries (4-pack),2,3.84,2019-06-26 08:56:00,666 Ridge St, New York City,NY,10001 +214397,AAA Batteries (4-pack),1,2.99,2019-06-16 16:06:00,90 Adams St, Dallas,TX,75001 +214398,Apple Airpods Headphones,1,150.0,2019-06-11 17:10:00,925 Jackson St, Portland,OR,97035 +214399,AA Batteries (4-pack),1,3.84,2019-06-06 22:35:00,152 Forest St, San Francisco,CA,94016 +214400,Wired Headphones,1,11.99,2019-06-04 06:25:00,186 Highland St, Dallas,TX,75001 +214401,Apple Airpods Headphones,1,150.0,2019-06-30 10:02:00,708 Cedar St, San Francisco,CA,94016 +214402,Google Phone,1,600.0,2019-06-09 08:30:00,156 4th St, New York City,NY,10001 +214403,27in FHD Monitor,1,149.99,2019-06-14 08:40:00,349 Lake St, San Francisco,CA,94016 +214404,Wired Headphones,1,11.99,2019-06-17 10:59:00,650 Walnut St, San Francisco,CA,94016 +214405,AA Batteries (4-pack),1,3.84,2019-06-03 09:44:00,110 13th St, San Francisco,CA,94016 +214406,Bose SoundSport Headphones,1,99.99,2019-06-02 08:44:00,341 Willow St, San Francisco,CA,94016 +214407,AAA Batteries (4-pack),1,2.99,2019-06-09 03:39:00,170 7th St, Atlanta,GA,30301 +214408,20in Monitor,1,109.99,2019-06-17 19:40:00,89 14th St, San Francisco,CA,94016 +214409,Lightning Charging Cable,1,14.95,2019-06-24 23:57:00,483 1st St, New York City,NY,10001 +214410,Lightning Charging Cable,1,14.95,2019-06-07 13:38:00,72 Cherry St, San Francisco,CA,94016 +214411,Vareebadd Phone,1,400.0,2019-06-13 12:20:00,732 Park St, Los Angeles,CA,90001 +214412,Google Phone,1,600.0,2019-06-08 16:24:00,222 Wilson St, San Francisco,CA,94016 +214413,LG Washing Machine,1,600.0,2019-06-25 10:28:00,977 Pine St, Boston,MA,02215 +214414,27in FHD Monitor,1,149.99,2019-06-26 22:23:00,839 Pine St, San Francisco,CA,94016 +214415,Apple Airpods Headphones,1,150.0,2019-06-16 23:16:00,90 Lakeview St, San Francisco,CA,94016 +214416,Apple Airpods Headphones,1,150.0,2019-06-17 16:15:00,901 Center St, New York City,NY,10001 +214417,34in Ultrawide Monitor,1,379.99,2019-06-24 15:12:00,854 Main St, San Francisco,CA,94016 +214418,AA Batteries (4-pack),1,3.84,2019-06-16 11:51:00,380 6th St, New York City,NY,10001 +214419,Lightning Charging Cable,1,14.95,2019-06-16 17:17:00,251 5th St, Portland,ME,04101 +214420,AAA Batteries (4-pack),1,2.99,2019-06-05 17:36:00,988 Adams St, Los Angeles,CA,90001 +214421,iPhone,1,700.0,2019-06-07 15:07:00,23 River St, Los Angeles,CA,90001 +214422,AA Batteries (4-pack),1,3.84,2019-06-20 20:07:00,512 Willow St, San Francisco,CA,94016 +214423,20in Monitor,1,109.99,2019-06-06 14:41:00,918 Madison St, Austin,TX,73301 +214424,Flatscreen TV,1,300.0,2019-06-08 23:49:00,813 1st St, Los Angeles,CA,90001 +214425,Wired Headphones,1,11.99,2019-06-28 09:36:00,199 Johnson St, Dallas,TX,75001 +214426,Lightning Charging Cable,1,14.95,2019-06-21 21:58:00,946 Chestnut St, Atlanta,GA,30301 +214427,Google Phone,1,600.0,2019-06-14 15:32:00,933 Lakeview St, New York City,NY,10001 +214428,Google Phone,1,600.0,2019-06-16 16:21:00,761 14th St, Atlanta,GA,30301 +214429,Bose SoundSport Headphones,1,99.99,2019-06-12 21:58:00,275 1st St, San Francisco,CA,94016 +214430,Apple Airpods Headphones,1,150.0,2019-06-03 18:15:00,797 Jackson St, Portland,ME,04101 +214431,Lightning Charging Cable,1,14.95,2019-06-08 20:24:00,683 Spruce St, Los Angeles,CA,90001 +214432,USB-C Charging Cable,1,11.95,2019-06-30 23:50:00,402 10th St, San Francisco,CA,94016 +214433,Bose SoundSport Headphones,1,99.99,2019-06-18 13:10:00,914 North St, New York City,NY,10001 +214434,AA Batteries (4-pack),2,3.84,2019-06-24 21:32:00,198 Center St, New York City,NY,10001 +214435,Macbook Pro Laptop,1,1700.0,2019-06-13 09:21:00,994 Pine St, San Francisco,CA,94016 +214436,AAA Batteries (4-pack),1,2.99,2019-06-16 11:29:00,443 4th St, San Francisco,CA,94016 +214437,AA Batteries (4-pack),1,3.84,2019-06-23 17:03:00,931 Walnut St, Seattle,WA,98101 +214438,USB-C Charging Cable,1,11.95,2019-06-09 11:09:00,488 Chestnut St, New York City,NY,10001 +214439,AA Batteries (4-pack),1,3.84,2019-06-20 19:33:00,24 Ridge St, San Francisco,CA,94016 +214440,AAA Batteries (4-pack),1,2.99,2019-06-05 09:56:00,501 6th St, San Francisco,CA,94016 +214441,Google Phone,1,600.0,2019-06-05 12:57:00,191 12th St, Boston,MA,02215 +214441,USB-C Charging Cable,2,11.95,2019-06-05 12:57:00,191 12th St, Boston,MA,02215 +214442,USB-C Charging Cable,1,11.95,2019-06-29 09:08:00,326 Madison St, San Francisco,CA,94016 +214443,Flatscreen TV,1,300.0,2019-06-04 17:53:00,43 Meadow St, San Francisco,CA,94016 +214444,Wired Headphones,1,11.99,2019-06-02 20:17:00,301 River St, San Francisco,CA,94016 +214445,USB-C Charging Cable,1,11.95,2019-06-16 13:46:00,605 Dogwood St, Boston,MA,02215 +214446,Wired Headphones,1,11.99,2019-06-27 14:27:00,749 Washington St, San Francisco,CA,94016 +214447,Google Phone,1,600.0,2019-06-16 18:48:00,965 Jackson St, New York City,NY,10001 +214447,USB-C Charging Cable,1,11.95,2019-06-16 18:48:00,965 Jackson St, New York City,NY,10001 +214448,Wired Headphones,2,11.99,2019-06-16 08:13:00,499 9th St, New York City,NY,10001 +214449,USB-C Charging Cable,1,11.95,2019-06-01 14:00:00,846 Johnson St, Seattle,WA,98101 +214450,USB-C Charging Cable,1,11.95,2019-06-14 16:01:00,654 13th St, San Francisco,CA,94016 +214451,Lightning Charging Cable,1,14.95,2019-06-12 12:23:00,684 Wilson St, San Francisco,CA,94016 +214452,20in Monitor,1,109.99,2019-06-13 14:23:00,691 Madison St, San Francisco,CA,94016 +214453,Wired Headphones,1,11.99,2019-06-26 23:58:00,422 8th St, Austin,TX,73301 +214454,Wired Headphones,1,11.99,2019-06-24 11:25:00,80 9th St, Dallas,TX,75001 +214455,Macbook Pro Laptop,1,1700.0,2019-06-14 13:31:00,854 8th St, San Francisco,CA,94016 +214456,USB-C Charging Cable,2,11.95,2019-06-03 18:37:00,17 4th St, Los Angeles,CA,90001 +214457,Lightning Charging Cable,1,14.95,2019-06-03 16:33:00,114 7th St, New York City,NY,10001 +214458,20in Monitor,1,109.99,2019-06-03 09:11:00,766 Pine St, San Francisco,CA,94016 +214459,Bose SoundSport Headphones,1,99.99,2019-06-11 14:34:00,208 Jackson St, Los Angeles,CA,90001 +214460,27in FHD Monitor,1,149.99,2019-06-20 23:35:00,767 Sunset St, New York City,NY,10001 +214461,Apple Airpods Headphones,1,150.0,2019-06-01 13:10:00,873 Center St, New York City,NY,10001 +214462,Lightning Charging Cable,1,14.95,2019-06-11 18:40:00,346 1st St, New York City,NY,10001 +214463,Wired Headphones,1,11.99,2019-06-21 20:56:00,579 4th St, Boston,MA,02215 +214464,Lightning Charging Cable,1,14.95,2019-06-24 13:18:00,28 Dogwood St, Portland,OR,97035 +214465,Bose SoundSport Headphones,1,99.99,2019-06-21 12:46:00,534 4th St, Seattle,WA,98101 +214466,USB-C Charging Cable,1,11.95,2019-06-06 14:14:00,501 Cedar St, New York City,NY,10001 +214467,AAA Batteries (4-pack),1,2.99,2019-06-13 19:20:00,784 Dogwood St, New York City,NY,10001 +214468,AAA Batteries (4-pack),1,2.99,2019-06-26 19:03:00,985 Park St, Seattle,WA,98101 +214469,Lightning Charging Cable,1,14.95,2019-06-14 05:55:00,158 Sunset St, Dallas,TX,75001 +214470,AAA Batteries (4-pack),1,2.99,2019-06-13 15:29:00,270 Church St, Boston,MA,02215 +214471,Apple Airpods Headphones,1,150.0,2019-06-03 09:28:00,569 6th St, Los Angeles,CA,90001 +214472,Flatscreen TV,1,300.0,2019-06-25 12:49:00,129 Dogwood St, Seattle,WA,98101 +214473,AA Batteries (4-pack),1,3.84,2019-06-03 07:43:00,578 Sunset St, Los Angeles,CA,90001 +214474,Lightning Charging Cable,1,14.95,2019-06-22 14:26:00,525 Ridge St, Atlanta,GA,30301 +214475,USB-C Charging Cable,1,11.95,2019-06-23 22:17:00,428 Highland St, Los Angeles,CA,90001 +214476,ThinkPad Laptop,1,999.99,2019-06-23 16:45:00,751 Wilson St, Seattle,WA,98101 +214477,Lightning Charging Cable,1,14.95,2019-06-17 13:17:00,744 Church St, Los Angeles,CA,90001 +214478,USB-C Charging Cable,1,11.95,2019-06-20 12:28:00,379 Sunset St, San Francisco,CA,94016 +214479,Lightning Charging Cable,1,14.95,2019-06-08 07:46:00,308 12th St, Atlanta,GA,30301 +214480,Apple Airpods Headphones,1,150.0,2019-06-10 10:35:00,72 Ridge St, Austin,TX,73301 +214481,Wired Headphones,1,11.99,2019-06-23 13:32:00,556 Sunset St, Austin,TX,73301 +214482,20in Monitor,1,109.99,2019-06-17 10:48:00,354 North St, Boston,MA,02215 +214483,20in Monitor,1,109.99,2019-06-10 06:00:00,338 Lake St, Seattle,WA,98101 +214484,AAA Batteries (4-pack),4,2.99,2019-06-03 08:04:00,256 Chestnut St, Los Angeles,CA,90001 +214485,Apple Airpods Headphones,1,150.0,2019-06-07 12:58:00,994 Lake St, Los Angeles,CA,90001 +214486,iPhone,1,700.0,2019-06-29 08:55:00,682 Jefferson St, Seattle,WA,98101 +214487,Lightning Charging Cable,1,14.95,2019-06-26 16:25:00,30 Madison St, Boston,MA,02215 +214488,Lightning Charging Cable,1,14.95,2019-06-18 21:31:00,163 12th St, San Francisco,CA,94016 +214489,Apple Airpods Headphones,1,150.0,2019-06-13 17:59:00,3 Main St, Seattle,WA,98101 +214490,iPhone,1,700.0,2019-06-12 11:05:00,64 14th St, Los Angeles,CA,90001 +214490,Lightning Charging Cable,1,14.95,2019-06-12 11:05:00,64 14th St, Los Angeles,CA,90001 +214491,AAA Batteries (4-pack),5,2.99,2019-06-12 19:41:00,102 Dogwood St, Seattle,WA,98101 +214492,Bose SoundSport Headphones,1,99.99,2019-06-13 13:32:00,966 Highland St, Portland,OR,97035 +214493,20in Monitor,1,109.99,2019-06-28 18:30:00,694 Willow St, Austin,TX,73301 +214494,27in FHD Monitor,1,149.99,2019-06-17 15:56:00,114 11th St, New York City,NY,10001 +214495,Lightning Charging Cable,1,14.95,2019-06-29 12:27:00,617 Hill St, Los Angeles,CA,90001 +214496,Apple Airpods Headphones,1,150.0,2019-06-11 11:55:00,692 South St, New York City,NY,10001 +214497,iPhone,1,700.0,2019-06-25 10:31:00,780 South St, New York City,NY,10001 +214498,USB-C Charging Cable,1,11.95,2019-06-15 16:03:00,847 Adams St, San Francisco,CA,94016 +214499,Lightning Charging Cable,1,14.95,2019-06-20 22:06:00,331 Highland St, Boston,MA,02215 +214500,Lightning Charging Cable,1,14.95,2019-06-26 21:25:00,606 Ridge St, San Francisco,CA,94016 +214501,AA Batteries (4-pack),1,3.84,2019-06-12 18:00:00,862 Ridge St, Los Angeles,CA,90001 +214502,AA Batteries (4-pack),3,3.84,2019-06-30 18:57:00,836 Lake St, Boston,MA,02215 +214503,Lightning Charging Cable,1,14.95,2019-06-05 18:35:00,413 7th St, Portland,OR,97035 +214504,Wired Headphones,1,11.99,2019-06-19 20:37:00,968 2nd St, Seattle,WA,98101 +214505,Google Phone,1,600.0,2019-06-19 18:32:00,46 4th St, New York City,NY,10001 +214505,Wired Headphones,1,11.99,2019-06-19 18:32:00,46 4th St, New York City,NY,10001 +214506,Lightning Charging Cable,1,14.95,2019-06-20 13:40:00,512 Lake St, Seattle,WA,98101 +214507,Lightning Charging Cable,1,14.95,2019-06-21 19:33:00,193 Maple St, Dallas,TX,75001 +214508,AA Batteries (4-pack),1,3.84,2019-06-11 00:06:00,819 Willow St, New York City,NY,10001 +214509,Flatscreen TV,1,300.0,2019-06-17 16:22:00,67 Forest St, San Francisco,CA,94016 +214510,iPhone,1,700.0,2019-06-24 07:36:00,537 1st St, Dallas,TX,75001 +214510,Lightning Charging Cable,1,14.95,2019-06-24 07:36:00,537 1st St, Dallas,TX,75001 +214511,34in Ultrawide Monitor,1,379.99,2019-06-15 20:05:00,78 Highland St, Los Angeles,CA,90001 +214512,20in Monitor,1,109.99,2019-06-12 07:40:00,471 Park St, New York City,NY,10001 +214513,27in 4K Gaming Monitor,1,389.99,2019-06-28 10:23:00,854 12th St, San Francisco,CA,94016 +214514,Bose SoundSport Headphones,1,99.99,2019-06-06 06:42:00,416 Wilson St, Los Angeles,CA,90001 +214515,USB-C Charging Cable,1,11.95,2019-06-03 12:30:00,391 Sunset St, Boston,MA,02215 +214516,AA Batteries (4-pack),1,3.84,2019-06-15 18:55:00,630 14th St, Los Angeles,CA,90001 +214517,Apple Airpods Headphones,1,150.0,2019-06-16 16:38:00,691 Meadow St, Dallas,TX,75001 +214518,27in FHD Monitor,1,149.99,2019-06-01 12:40:00,227 North St, Austin,TX,73301 +214519,34in Ultrawide Monitor,1,379.99,2019-06-07 21:22:00,163 Jackson St, Portland,OR,97035 +214520,Apple Airpods Headphones,1,150.0,2019-06-09 10:30:00,858 Hill St, San Francisco,CA,94016 +214521,Macbook Pro Laptop,1,1700.0,2019-06-09 13:48:00,28 10th St, New York City,NY,10001 +214522,Google Phone,1,600.0,2019-06-26 08:12:00,736 West St, San Francisco,CA,94016 +214522,Wired Headphones,1,11.99,2019-06-26 08:12:00,736 West St, San Francisco,CA,94016 +214523,27in 4K Gaming Monitor,1,389.99,2019-06-17 13:54:00,770 Wilson St, Portland,OR,97035 +214523,AAA Batteries (4-pack),3,2.99,2019-06-17 13:54:00,770 Wilson St, Portland,OR,97035 +214524,Bose SoundSport Headphones,1,99.99,2019-06-12 19:07:00,841 Cherry St, Los Angeles,CA,90001 +214525,USB-C Charging Cable,1,11.95,2019-06-30 03:59:00,608 Lake St, Atlanta,GA,30301 +214526,Wired Headphones,1,11.99,2019-06-14 13:06:00,569 Walnut St, San Francisco,CA,94016 +214527,20in Monitor,1,109.99,2019-06-29 10:41:00,713 Wilson St, Boston,MA,02215 +214528,Lightning Charging Cable,1,14.95,2019-06-04 15:14:00,39 Main St, Portland,OR,97035 +214528,USB-C Charging Cable,1,11.95,2019-06-04 15:14:00,39 Main St, Portland,OR,97035 +214529,AAA Batteries (4-pack),1,2.99,2019-06-07 14:50:00,421 Lincoln St, New York City,NY,10001 +214530,AA Batteries (4-pack),4,3.84,2019-06-25 18:53:00,168 11th St, Dallas,TX,75001 +214531,Bose SoundSport Headphones,1,99.99,2019-06-03 18:32:00,931 13th St, Portland,ME,04101 +214532,Lightning Charging Cable,1,14.95,2019-06-20 17:47:00,42 Lakeview St, Seattle,WA,98101 +214533,Lightning Charging Cable,1,14.95,2019-06-10 12:50:00,869 Johnson St, Los Angeles,CA,90001 +214534,20in Monitor,1,109.99,2019-06-06 23:04:00,619 Center St, New York City,NY,10001 +214535,Apple Airpods Headphones,1,150.0,2019-06-10 03:22:00,408 5th St, Atlanta,GA,30301 +214535,34in Ultrawide Monitor,1,379.99,2019-06-10 03:22:00,408 5th St, Atlanta,GA,30301 +214536,Google Phone,1,600.0,2019-06-21 13:38:00,331 2nd St, San Francisco,CA,94016 +214537,Bose SoundSport Headphones,1,99.99,2019-06-12 09:09:00,703 12th St, San Francisco,CA,94016 +214538,Lightning Charging Cable,1,14.95,2019-06-08 11:06:00,217 Walnut St, Los Angeles,CA,90001 +214539,AAA Batteries (4-pack),1,2.99,2019-06-11 18:42:00,766 Church St, Austin,TX,73301 +214540,Bose SoundSport Headphones,1,99.99,2019-06-25 21:20:00,767 River St, San Francisco,CA,94016 +214541,Macbook Pro Laptop,1,1700.0,2019-06-01 17:33:00,374 Madison St, San Francisco,CA,94016 +214542,AAA Batteries (4-pack),1,2.99,2019-06-20 02:08:00,894 Johnson St, San Francisco,CA,94016 +214543,iPhone,1,700.0,2019-06-09 13:22:00,744 Center St, Los Angeles,CA,90001 +214544,Wired Headphones,1,11.99,2019-06-28 10:55:00,444 Sunset St, San Francisco,CA,94016 +214545,AAA Batteries (4-pack),1,2.99,2019-06-28 07:43:00,654 Dogwood St, San Francisco,CA,94016 +214546,20in Monitor,1,109.99,2019-06-27 23:59:00,638 Lakeview St, San Francisco,CA,94016 +214547,ThinkPad Laptop,1,999.99,2019-06-18 21:38:00,489 Wilson St, San Francisco,CA,94016 +214548,Bose SoundSport Headphones,1,99.99,2019-06-27 17:25:00,242 5th St, Boston,MA,02215 +214549,Google Phone,1,600.0,2019-06-15 21:17:00,479 4th St, Boston,MA,02215 +214549,USB-C Charging Cable,2,11.95,2019-06-15 21:17:00,479 4th St, Boston,MA,02215 +214550,AAA Batteries (4-pack),1,2.99,2019-06-26 22:30:00,312 Adams St, New York City,NY,10001 +214551,27in FHD Monitor,1,149.99,2019-06-05 16:39:00,946 7th St, Portland,OR,97035 +214552,Wired Headphones,1,11.99,2019-06-21 19:05:00,289 Maple St, San Francisco,CA,94016 +214553,ThinkPad Laptop,1,999.99,2019-06-16 10:46:00,621 9th St, San Francisco,CA,94016 +214554,AAA Batteries (4-pack),1,2.99,2019-06-26 12:26:00,626 Ridge St, Atlanta,GA,30301 +214555,AA Batteries (4-pack),1,3.84,2019-06-10 07:43:00,324 8th St, San Francisco,CA,94016 +214556,27in FHD Monitor,1,149.99,2019-06-28 20:19:00,456 Cedar St, San Francisco,CA,94016 +214557,Apple Airpods Headphones,1,150.0,2019-06-21 11:02:00,360 West St, San Francisco,CA,94016 +214558,ThinkPad Laptop,1,999.99,2019-06-18 14:25:00,646 Sunset St, Los Angeles,CA,90001 +214559,AAA Batteries (4-pack),2,2.99,2019-06-26 21:01:00,333 6th St, San Francisco,CA,94016 +214560,Google Phone,1,600.0,2019-06-01 18:15:00,805 Center St, San Francisco,CA,94016 +214561,Lightning Charging Cable,1,14.95,2019-06-11 16:47:00,41 Meadow St, Boston,MA,02215 +214562,AAA Batteries (4-pack),3,2.99,2019-06-29 12:58:00,273 Park St, Austin,TX,73301 +214563,Vareebadd Phone,1,400.0,2019-06-06 17:13:00,518 West St, Los Angeles,CA,90001 +214563,USB-C Charging Cable,1,11.95,2019-06-06 17:13:00,518 West St, Los Angeles,CA,90001 +214564,AA Batteries (4-pack),1,3.84,2019-06-17 02:06:00,439 11th St, Austin,TX,73301 +214565,AAA Batteries (4-pack),1,2.99,2019-06-18 17:52:00,732 Hill St, Los Angeles,CA,90001 +214566,Wired Headphones,2,11.99,2019-06-07 19:27:00,75 North St, San Francisco,CA,94016 +214567,Wired Headphones,1,11.99,2019-06-05 17:24:00,177 6th St, Boston,MA,02215 +214568,Bose SoundSport Headphones,1,99.99,2019-06-22 22:45:00,595 Park St, Atlanta,GA,30301 +214569,27in 4K Gaming Monitor,1,389.99,2019-06-02 18:35:00,913 Main St, New York City,NY,10001 +214570,Wired Headphones,2,11.99,2019-06-26 19:18:00,87 7th St, Atlanta,GA,30301 +214571,AAA Batteries (4-pack),1,2.99,2019-06-04 08:52:00,235 Church St, Los Angeles,CA,90001 +214572,AAA Batteries (4-pack),2,2.99,2019-06-18 15:07:00,61 2nd St, Boston,MA,02215 +214573,AAA Batteries (4-pack),2,2.99,2019-06-13 12:01:00,752 Main St, Portland,OR,97035 +214574,USB-C Charging Cable,2,11.95,2019-06-17 17:47:00,305 13th St, Los Angeles,CA,90001 +214575,AA Batteries (4-pack),2,3.84,2019-06-22 01:13:00,823 10th St, New York City,NY,10001 +214576,Lightning Charging Cable,1,14.95,2019-06-08 10:58:00,159 Wilson St, Boston,MA,02215 +214577,Apple Airpods Headphones,1,150.0,2019-06-30 09:38:00,975 Lincoln St, San Francisco,CA,94016 +214578,Vareebadd Phone,1,400.0,2019-06-30 14:33:00,444 7th St, San Francisco,CA,94016 +214579,Lightning Charging Cable,1,14.95,2019-06-06 12:22:00,707 Hill St, New York City,NY,10001 +214580,USB-C Charging Cable,1,11.95,2019-06-19 12:25:00,56 Walnut St, San Francisco,CA,94016 +214581,27in FHD Monitor,1,149.99,2019-06-09 00:43:00,940 Meadow St, San Francisco,CA,94016 +214582,Wired Headphones,1,11.99,2019-06-28 19:23:00,584 Adams St, Portland,OR,97035 +214583,USB-C Charging Cable,1,11.95,2019-06-22 09:00:00,51 North St, Boston,MA,02215 +214584,AAA Batteries (4-pack),1,2.99,2019-06-02 15:33:00,561 Lake St, San Francisco,CA,94016 +214585,Macbook Pro Laptop,1,1700.0,2019-06-18 20:52:00,683 Hill St, New York City,NY,10001 +214586,Macbook Pro Laptop,1,1700.0,2019-06-28 07:54:00,146 Adams St, Atlanta,GA,30301 +214587,20in Monitor,1,109.99,2019-06-28 20:54:00,42 2nd St, San Francisco,CA,94016 +214588,Google Phone,1,600.0,2019-06-10 16:07:00,82 Sunset St, San Francisco,CA,94016 +214589,iPhone,1,700.0,2019-06-17 12:52:00,148 Johnson St, New York City,NY,10001 +214590,Macbook Pro Laptop,1,1700.0,2019-06-09 17:36:00,68 Forest St, New York City,NY,10001 +214591,27in 4K Gaming Monitor,1,389.99,2019-06-11 14:44:00,693 Forest St, New York City,NY,10001 +214592,Wired Headphones,1,11.99,2019-06-23 15:10:00,836 14th St, Atlanta,GA,30301 +214593,AA Batteries (4-pack),1,3.84,2019-06-20 19:35:00,259 South St, Portland,ME,04101 +214594,Lightning Charging Cable,1,14.95,2019-06-20 22:05:00,884 Lincoln St, Boston,MA,02215 +214595,Apple Airpods Headphones,1,150.0,2019-06-28 10:42:00,31 11th St, Los Angeles,CA,90001 +214596,ThinkPad Laptop,1,999.99,2019-06-05 06:58:00,367 North St, Seattle,WA,98101 +214597,Apple Airpods Headphones,1,150.0,2019-06-17 18:02:00,780 1st St, Boston,MA,02215 +214598,AA Batteries (4-pack),3,3.84,2019-06-21 22:13:00,424 8th St, Boston,MA,02215 +214599,Lightning Charging Cable,1,14.95,2019-06-20 19:38:00,151 6th St, Austin,TX,73301 +214600,USB-C Charging Cable,1,11.95,2019-06-15 20:03:00,313 11th St, Los Angeles,CA,90001 +214601,Bose SoundSport Headphones,1,99.99,2019-06-09 23:13:00,8 9th St, New York City,NY,10001 +214602,Wired Headphones,1,11.99,2019-06-01 22:14:00,13 Lincoln St, Dallas,TX,75001 +214603,27in 4K Gaming Monitor,1,389.99,2019-06-06 01:09:00,414 6th St, New York City,NY,10001 +214604,USB-C Charging Cable,1,11.95,2019-06-22 22:00:00,155 Willow St, Los Angeles,CA,90001 +214605,AA Batteries (4-pack),2,3.84,2019-06-03 14:01:00,714 Walnut St, Dallas,TX,75001 +214606,Google Phone,1,600.0,2019-06-25 02:21:00,946 South St, New York City,NY,10001 +214607,Macbook Pro Laptop,1,1700.0,2019-06-30 19:30:00,65 Meadow St, Boston,MA,02215 +214608,AA Batteries (4-pack),2,3.84,2019-06-21 22:29:00,321 Ridge St, Los Angeles,CA,90001 +214609,iPhone,1,700.0,2019-06-18 15:51:00,385 2nd St, San Francisco,CA,94016 +214610,Apple Airpods Headphones,1,150.0,2019-06-18 19:01:00,689 Spruce St, San Francisco,CA,94016 +214611,AAA Batteries (4-pack),1,2.99,2019-06-02 11:33:00,382 West St, San Francisco,CA,94016 +214612,AA Batteries (4-pack),1,3.84,2019-06-28 10:22:00,618 Lake St, Dallas,TX,75001 +214613,USB-C Charging Cable,1,11.95,2019-06-20 14:32:00,26 Washington St, Los Angeles,CA,90001 +214614,Macbook Pro Laptop,1,1700.0,2019-06-07 20:22:00,51 4th St, Portland,OR,97035 +214615,Bose SoundSport Headphones,1,99.99,2019-06-20 06:38:00,59 Cherry St, San Francisco,CA,94016 +214616,34in Ultrawide Monitor,1,379.99,2019-06-05 11:40:00,655 10th St, Atlanta,GA,30301 +214617,AA Batteries (4-pack),1,3.84,2019-06-02 18:44:00,687 Johnson St, Los Angeles,CA,90001 +214618,Flatscreen TV,1,300.0,2019-06-27 16:54:00,204 6th St, New York City,NY,10001 +214619,34in Ultrawide Monitor,1,379.99,2019-06-22 10:45:00,852 Lakeview St, San Francisco,CA,94016 +214620,AA Batteries (4-pack),1,3.84,2019-06-01 10:29:00,132 Chestnut St, New York City,NY,10001 +214621,20in Monitor,1,109.99,2019-06-21 00:48:00,894 Elm St, New York City,NY,10001 +214622,AA Batteries (4-pack),1,3.84,2019-06-05 20:39:00,825 South St, San Francisco,CA,94016 +214623,Bose SoundSport Headphones,1,99.99,2019-06-01 11:43:00,275 Lincoln St, Portland,ME,04101 +214624,USB-C Charging Cable,1,11.95,2019-06-06 09:04:00,597 Cherry St, Los Angeles,CA,90001 +214625,AA Batteries (4-pack),2,3.84,2019-06-01 11:11:00,648 Johnson St, Boston,MA,02215 +214626,USB-C Charging Cable,1,11.95,2019-06-11 17:12:00,956 11th St, Atlanta,GA,30301 +214627,Google Phone,1,600.0,2019-06-23 10:03:00,985 Ridge St, Seattle,WA,98101 +214628,AA Batteries (4-pack),1,3.84,2019-06-03 22:13:00,55 13th St, Los Angeles,CA,90001 +214629,ThinkPad Laptop,1,999.99,2019-06-09 18:03:00,399 Park St, Dallas,TX,75001 +214630,Wired Headphones,1,11.99,2019-06-06 19:58:00,163 Washington St, San Francisco,CA,94016 +214631,Apple Airpods Headphones,1,150.0,2019-06-05 13:50:00,678 Madison St, Boston,MA,02215 +214632,USB-C Charging Cable,1,11.95,2019-06-04 08:39:00,781 West St, Los Angeles,CA,90001 +214633,iPhone,1,700.0,2019-06-10 10:56:00,43 Wilson St, Los Angeles,CA,90001 +214634,Apple Airpods Headphones,1,150.0,2019-06-18 19:38:00,939 Adams St, Seattle,WA,98101 +214635,Apple Airpods Headphones,1,150.0,2019-06-29 20:42:00,695 Main St, Seattle,WA,98101 +214636,Wired Headphones,1,11.99,2019-06-25 11:20:00,348 9th St, Seattle,WA,98101 +214637,AAA Batteries (4-pack),1,2.99,2019-06-13 08:56:00,206 12th St, San Francisco,CA,94016 +214638,27in FHD Monitor,1,149.99,2019-06-13 18:15:00,609 Jefferson St, Boston,MA,02215 +214639,AA Batteries (4-pack),1,3.84,2019-06-02 14:19:00,496 Wilson St, Seattle,WA,98101 +214640,27in 4K Gaming Monitor,1,389.99,2019-06-05 14:33:00,17 Cherry St, San Francisco,CA,94016 +214641,27in FHD Monitor,1,149.99,2019-06-11 00:03:00,803 Adams St, San Francisco,CA,94016 +214642,AA Batteries (4-pack),2,3.84,2019-06-29 12:45:00,518 Center St, Boston,MA,02215 +214643,20in Monitor,1,109.99,2019-06-23 10:29:00,918 Elm St, Los Angeles,CA,90001 +214644,Flatscreen TV,1,300.0,2019-06-18 15:20:00,129 Ridge St, Boston,MA,02215 +214645,27in 4K Gaming Monitor,1,389.99,2019-06-10 06:29:00,750 1st St, Boston,MA,02215 +214646,AAA Batteries (4-pack),2,2.99,2019-06-30 12:28:00,410 Park St, San Francisco,CA,94016 +214647,Wired Headphones,1,11.99,2019-06-28 19:37:00,652 Madison St, San Francisco,CA,94016 +214648,USB-C Charging Cable,1,11.95,2019-06-05 12:54:00,908 13th St, Dallas,TX,75001 +214649,AAA Batteries (4-pack),1,2.99,2019-06-12 14:56:00,265 Forest St, Seattle,WA,98101 +214650,Lightning Charging Cable,1,14.95,2019-06-19 13:20:00,686 Madison St, San Francisco,CA,94016 +214651,27in 4K Gaming Monitor,1,389.99,2019-06-13 14:44:00,454 River St, Boston,MA,02215 +214652,Wired Headphones,1,11.99,2019-06-12 10:25:00,297 Cherry St, Los Angeles,CA,90001 +214653,Bose SoundSport Headphones,1,99.99,2019-06-23 11:30:00,835 Jackson St, Boston,MA,02215 +214654,Wired Headphones,1,11.99,2019-06-30 21:02:00,933 5th St, Seattle,WA,98101 +214654,Bose SoundSport Headphones,1,99.99,2019-06-30 21:02:00,933 5th St, Seattle,WA,98101 +214655,AAA Batteries (4-pack),2,2.99,2019-06-30 11:53:00,605 Church St, San Francisco,CA,94016 +214656,AAA Batteries (4-pack),2,2.99,2019-06-01 17:02:00,452 River St, Seattle,WA,98101 +214657,27in FHD Monitor,1,149.99,2019-06-03 08:16:00,135 Johnson St, Portland,OR,97035 +214658,AAA Batteries (4-pack),1,2.99,2019-06-30 22:33:00,934 Church St, Los Angeles,CA,90001 +214659,Apple Airpods Headphones,1,150.0,2019-06-18 22:07:00,487 Spruce St, Atlanta,GA,30301 +214660,Macbook Pro Laptop,1,1700.0,2019-06-25 13:20:00,550 14th St, Portland,OR,97035 +214661,Apple Airpods Headphones,1,150.0,2019-06-06 02:15:00,261 Maple St, Los Angeles,CA,90001 +214662,Vareebadd Phone,1,400.0,2019-06-29 19:35:00,264 River St, Dallas,TX,75001 +214663,Macbook Pro Laptop,1,1700.0,2019-06-26 18:11:00,58 South St, New York City,NY,10001 +214664,Wired Headphones,1,11.99,2019-06-20 22:21:00,93 West St, Dallas,TX,75001 +214665,20in Monitor,1,109.99,2019-06-15 11:36:00,936 Hill St, San Francisco,CA,94016 +214666,Vareebadd Phone,1,400.0,2019-06-01 18:15:00,686 7th St, Los Angeles,CA,90001 +214666,USB-C Charging Cable,1,11.95,2019-06-01 18:15:00,686 7th St, Los Angeles,CA,90001 +214667,20in Monitor,1,109.99,2019-06-23 19:24:00,733 Ridge St, San Francisco,CA,94016 +214668,LG Washing Machine,1,600.0,2019-06-29 13:38:00,579 Highland St, Seattle,WA,98101 +214669,Apple Airpods Headphones,1,150.0,2019-06-07 20:34:00,945 Jefferson St, Los Angeles,CA,90001 +214670,AAA Batteries (4-pack),1,2.99,2019-06-12 07:36:00,660 14th St, Portland,OR,97035 +214671,AAA Batteries (4-pack),1,2.99,2019-06-01 15:12:00,344 11th St, San Francisco,CA,94016 +214672,27in FHD Monitor,1,149.99,2019-06-06 10:07:00,333 4th St, Los Angeles,CA,90001 +214673,Lightning Charging Cable,1,14.95,2019-06-09 19:31:00,72 13th St, Boston,MA,02215 +214674,AA Batteries (4-pack),1,3.84,2019-06-30 22:42:00,390 Church St, San Francisco,CA,94016 +214675,Wired Headphones,1,11.99,2019-06-19 10:56:00,188 5th St, San Francisco,CA,94016 +214676,Lightning Charging Cable,1,14.95,2019-06-05 19:56:00,642 Highland St, Austin,TX,73301 +214677,27in FHD Monitor,1,149.99,2019-06-03 19:54:00,913 Adams St, Atlanta,GA,30301 +214678,Lightning Charging Cable,1,14.95,2019-06-07 22:07:00,261 Hill St, Dallas,TX,75001 +214679,27in FHD Monitor,1,149.99,2019-06-09 07:42:00,45 Hill St, Atlanta,GA,30301 +214680,AAA Batteries (4-pack),1,2.99,2019-06-20 23:12:00,814 8th St, Boston,MA,02215 +214680,USB-C Charging Cable,1,11.95,2019-06-20 23:12:00,814 8th St, Boston,MA,02215 +214681,iPhone,1,700.0,2019-06-21 20:19:00,815 Cherry St, Los Angeles,CA,90001 +214681,Wired Headphones,1,11.99,2019-06-21 20:19:00,815 Cherry St, Los Angeles,CA,90001 +214682,AAA Batteries (4-pack),3,2.99,2019-06-18 21:11:00,804 Lincoln St, Portland,OR,97035 +214683,20in Monitor,1,109.99,2019-06-01 11:06:00,658 7th St, San Francisco,CA,94016 +214684,Wired Headphones,1,11.99,2019-06-30 23:53:00,653 1st St, San Francisco,CA,94016 +214685,AAA Batteries (4-pack),1,2.99,2019-06-25 10:22:00,92 9th St, Portland,ME,04101 +214686,Lightning Charging Cable,1,14.95,2019-06-01 17:14:00,631 Johnson St, New York City,NY,10001 +214687,Apple Airpods Headphones,1,150.0,2019-06-02 23:52:00,246 Center St, Atlanta,GA,30301 +214688,Apple Airpods Headphones,1,150.0,2019-06-02 10:27:00,527 Lakeview St, Seattle,WA,98101 +214689,Wired Headphones,1,11.99,2019-06-06 10:09:00,848 2nd St, San Francisco,CA,94016 +214689,iPhone,1,700.0,2019-06-06 10:09:00,848 2nd St, San Francisco,CA,94016 +214690,Wired Headphones,1,11.99,2019-06-13 15:28:00,553 Jackson St, New York City,NY,10001 +214691,Google Phone,1,600.0,2019-06-12 16:48:00,825 7th St, Los Angeles,CA,90001 +214692,AA Batteries (4-pack),1,3.84,2019-06-07 14:20:00,800 Ridge St, Boston,MA,02215 +214693,Apple Airpods Headphones,1,150.0,2019-06-10 21:05:00,874 Main St, San Francisco,CA,94016 +214694,USB-C Charging Cable,1,11.95,2019-06-02 16:28:00,777 7th St, New York City,NY,10001 +214695,Lightning Charging Cable,1,14.95,2019-06-10 10:54:00,768 7th St, Los Angeles,CA,90001 +214696,34in Ultrawide Monitor,1,379.99,2019-06-14 22:39:00,846 6th St, Seattle,WA,98101 +214696,27in FHD Monitor,1,149.99,2019-06-14 22:39:00,846 6th St, Seattle,WA,98101 +214697,USB-C Charging Cable,1,11.95,2019-06-10 15:00:00,574 11th St, Austin,TX,73301 +214698,AA Batteries (4-pack),1,3.84,2019-06-26 11:52:00,525 Lakeview St, Atlanta,GA,30301 +214699,20in Monitor,1,109.99,2019-06-26 08:20:00,963 North St, Dallas,TX,75001 +214700,iPhone,1,700.0,2019-06-21 10:59:00,94 Cedar St, Seattle,WA,98101 +214701,27in 4K Gaming Monitor,1,389.99,2019-06-13 07:45:00,848 Forest St, Los Angeles,CA,90001 +214702,iPhone,1,700.0,2019-06-16 17:46:00,175 Park St, Dallas,TX,75001 +214702,Apple Airpods Headphones,1,150.0,2019-06-16 17:46:00,175 Park St, Dallas,TX,75001 +214703,Wired Headphones,1,11.99,2019-06-29 12:02:00,720 North St, Atlanta,GA,30301 +214704,Bose SoundSport Headphones,1,99.99,2019-06-02 10:36:00,11 West St, Dallas,TX,75001 +214705,Apple Airpods Headphones,1,150.0,2019-06-09 12:49:00,13 Pine St, Dallas,TX,75001 +214705,Wired Headphones,2,11.99,2019-06-09 12:49:00,13 Pine St, Dallas,TX,75001 +214706,Wired Headphones,1,11.99,2019-06-20 11:58:00,753 Jefferson St, Seattle,WA,98101 +214707,USB-C Charging Cable,1,11.95,2019-06-28 18:36:00,153 Church St, New York City,NY,10001 +214708,Google Phone,1,600.0,2019-06-12 19:31:00,312 Ridge St, Seattle,WA,98101 +214709,Google Phone,1,600.0,2019-06-20 10:43:00,636 Cedar St, Atlanta,GA,30301 +214710,Bose SoundSport Headphones,1,99.99,2019-06-24 08:29:00,390 13th St, Dallas,TX,75001 +214711,Lightning Charging Cable,1,14.95,2019-06-05 20:55:00,789 Sunset St, Boston,MA,02215 +214712,AA Batteries (4-pack),1,3.84,2019-06-09 06:09:00,535 Hickory St, Seattle,WA,98101 +214713,Lightning Charging Cable,1,14.95,2019-06-13 15:21:00,946 1st St, Seattle,WA,98101 +214714,Apple Airpods Headphones,1,150.0,2019-06-12 06:45:00,640 Hill St, Seattle,WA,98101 +214715,27in FHD Monitor,1,149.99,2019-06-10 16:05:00,193 Cedar St, San Francisco,CA,94016 +214716,AAA Batteries (4-pack),1,2.99,2019-06-14 12:42:00,73 Jefferson St, Los Angeles,CA,90001 +214717,27in FHD Monitor,1,149.99,2019-06-08 15:43:00,199 2nd St, Portland,OR,97035 +214718,ThinkPad Laptop,1,999.99,2019-06-26 16:42:00,581 Pine St, San Francisco,CA,94016 +214719,Macbook Pro Laptop,1,1700.0,2019-06-27 14:37:00,592 1st St, Dallas,TX,75001 +214720,AA Batteries (4-pack),1,3.84,2019-06-26 22:08:00,444 Lake St, New York City,NY,10001 +214721,AAA Batteries (4-pack),1,2.99,2019-06-28 21:02:00,992 13th St, San Francisco,CA,94016 +214722,Lightning Charging Cable,2,14.95,2019-06-16 18:47:00,940 Wilson St, Boston,MA,02215 +214723,AA Batteries (4-pack),1,3.84,2019-06-07 13:07:00,469 Meadow St, Seattle,WA,98101 +214724,Apple Airpods Headphones,1,150.0,2019-06-12 05:40:00,303 Dogwood St, San Francisco,CA,94016 +214725,Bose SoundSport Headphones,1,99.99,2019-06-20 13:37:00,363 Ridge St, Austin,TX,73301 +214726,iPhone,1,700.0,2019-06-19 08:17:00,503 Sunset St, New York City,NY,10001 +214727,Bose SoundSport Headphones,1,99.99,2019-06-08 20:47:00,315 North St, San Francisco,CA,94016 +214728,27in 4K Gaming Monitor,1,389.99,2019-06-27 18:35:00,887 Main St, New York City,NY,10001 +214729,Lightning Charging Cable,1,14.95,2019-06-23 08:44:00,697 7th St, Atlanta,GA,30301 +214730,AA Batteries (4-pack),1,3.84,2019-06-14 09:26:00,602 2nd St, Boston,MA,02215 +214731,Apple Airpods Headphones,1,150.0,2019-06-26 12:15:00,837 10th St, San Francisco,CA,94016 +214732,Wired Headphones,1,11.99,2019-06-24 16:23:00,43 Church St, Atlanta,GA,30301 +214733,27in 4K Gaming Monitor,1,389.99,2019-06-14 21:13:00,703 Lincoln St, Los Angeles,CA,90001 +214734,Google Phone,1,600.0,2019-06-12 20:39:00,129 Lake St, San Francisco,CA,94016 +214735,Wired Headphones,1,11.99,2019-06-05 23:36:00,347 Lake St, Los Angeles,CA,90001 +214736,USB-C Charging Cable,1,11.95,2019-06-21 12:29:00,619 Madison St, Portland,OR,97035 +214737,Apple Airpods Headphones,1,150.0,2019-06-28 17:23:00,311 7th St, Dallas,TX,75001 +214738,AA Batteries (4-pack),1,3.84,2019-06-12 17:05:00,21 Wilson St, Seattle,WA,98101 +214739,Lightning Charging Cable,1,14.95,2019-06-18 19:58:00,496 6th St, New York City,NY,10001 +214740,Lightning Charging Cable,1,14.95,2019-06-10 02:29:00,283 Pine St, New York City,NY,10001 +214741,27in 4K Gaming Monitor,1,389.99,2019-06-22 11:21:00,162 Ridge St, San Francisco,CA,94016 +214742,Wired Headphones,1,11.99,2019-06-26 10:09:00,718 Cherry St, Portland,OR,97035 +214743,AA Batteries (4-pack),1,3.84,2019-06-26 15:43:00,311 Elm St, San Francisco,CA,94016 +214744,AA Batteries (4-pack),1,3.84,2019-06-20 17:32:00,221 Spruce St, Atlanta,GA,30301 +214745,Bose SoundSport Headphones,1,99.99,2019-06-11 11:44:00,971 Madison St, Seattle,WA,98101 +214746,Wired Headphones,1,11.99,2019-06-20 07:41:00,751 7th St, Dallas,TX,75001 +214747,AAA Batteries (4-pack),1,2.99,2019-06-16 18:47:00,268 8th St, Los Angeles,CA,90001 +214748,iPhone,1,700.0,2019-06-25 12:48:00,533 1st St, New York City,NY,10001 +214748,Lightning Charging Cable,1,14.95,2019-06-25 12:48:00,533 1st St, New York City,NY,10001 +214749,AAA Batteries (4-pack),1,2.99,2019-06-26 10:53:00,434 North St, Boston,MA,02215 +214750,USB-C Charging Cable,1,11.95,2019-06-01 11:00:00,859 11th St, Boston,MA,02215 +214751,Google Phone,1,600.0,2019-06-11 12:49:00,433 Chestnut St, Seattle,WA,98101 +214752,Lightning Charging Cable,1,14.95,2019-06-07 07:38:00,965 River St, San Francisco,CA,94016 +214753,34in Ultrawide Monitor,1,379.99,2019-06-27 14:19:00,810 Pine St, San Francisco,CA,94016 +214754,Bose SoundSport Headphones,1,99.99,2019-06-21 16:14:00,831 Hickory St, Los Angeles,CA,90001 +214755,AAA Batteries (4-pack),1,2.99,2019-06-06 17:44:00,153 Jefferson St, New York City,NY,10001 +214756,USB-C Charging Cable,1,11.95,2019-06-18 17:14:00,950 River St, San Francisco,CA,94016 +214757,USB-C Charging Cable,1,11.95,2019-06-16 00:52:00,944 13th St, Portland,OR,97035 +214758,Wired Headphones,1,11.99,2019-06-10 18:33:00,429 Forest St, San Francisco,CA,94016 +214759,USB-C Charging Cable,3,11.95,2019-06-01 15:10:00,864 10th St, Atlanta,GA,30301 +214760,Wired Headphones,1,11.99,2019-06-23 21:56:00,333 Dogwood St, New York City,NY,10001 +214761,Wired Headphones,1,11.99,2019-06-19 19:48:00,557 2nd St, Los Angeles,CA,90001 +214762,Wired Headphones,1,11.99,2019-06-03 14:06:00,84 Church St, San Francisco,CA,94016 +214763,USB-C Charging Cable,1,11.95,2019-06-05 20:21:00,30 North St, San Francisco,CA,94016 +214764,Apple Airpods Headphones,1,150.0,2019-06-28 05:05:00,783 8th St, New York City,NY,10001 +214765,USB-C Charging Cable,1,11.95,2019-06-23 16:56:00,384 Cedar St, San Francisco,CA,94016 +214766,Wired Headphones,1,11.99,2019-06-01 17:58:00,852 5th St, Dallas,TX,75001 +214767,Lightning Charging Cable,1,14.95,2019-06-29 16:34:00,237 Pine St, New York City,NY,10001 +214768,Google Phone,1,600.0,2019-06-15 17:10:00,370 West St, Los Angeles,CA,90001 +214769,AAA Batteries (4-pack),1,2.99,2019-06-01 12:24:00,987 Hickory St, Atlanta,GA,30301 +214770,Bose SoundSport Headphones,1,99.99,2019-06-26 11:58:00,864 Highland St, New York City,NY,10001 +214771,AAA Batteries (4-pack),1,2.99,2019-06-12 18:12:00,113 Walnut St, Los Angeles,CA,90001 +214772,Macbook Pro Laptop,1,1700.0,2019-06-17 20:44:00,971 Ridge St, Los Angeles,CA,90001 +214773,Lightning Charging Cable,1,14.95,2019-06-18 09:04:00,943 1st St, San Francisco,CA,94016 +214774,27in FHD Monitor,1,149.99,2019-06-22 20:30:00,88 13th St, New York City,NY,10001 +214775,AAA Batteries (4-pack),1,2.99,2019-06-04 14:23:00,889 Park St, San Francisco,CA,94016 +214776,USB-C Charging Cable,1,11.95,2019-06-17 19:22:00,291 2nd St, Portland,ME,04101 +214777,AA Batteries (4-pack),2,3.84,2019-06-28 15:13:00,904 Walnut St, San Francisco,CA,94016 +214778,Lightning Charging Cable,1,14.95,2019-06-16 14:09:00,455 Willow St, New York City,NY,10001 +214779,Bose SoundSport Headphones,1,99.99,2019-06-30 21:50:00,631 North St, Austin,TX,73301 +214780,iPhone,1,700.0,2019-06-29 09:39:00,722 6th St, Boston,MA,02215 +214781,USB-C Charging Cable,1,11.95,2019-06-30 17:46:00,629 West St, New York City,NY,10001 +214782,AA Batteries (4-pack),2,3.84,2019-06-06 17:21:00,50 13th St, Atlanta,GA,30301 +214783,Wired Headphones,1,11.99,2019-06-26 09:53:00,721 Maple St, New York City,NY,10001 +214784,34in Ultrawide Monitor,1,379.99,2019-06-18 15:41:00,44 Jefferson St, San Francisco,CA,94016 +214785,USB-C Charging Cable,1,11.95,2019-06-01 19:03:00,480 Cedar St, Dallas,TX,75001 +214786,AAA Batteries (4-pack),1,2.99,2019-06-04 13:53:00,424 Wilson St, Seattle,WA,98101 +214787,Lightning Charging Cable,1,14.95,2019-06-20 22:18:00,870 1st St, New York City,NY,10001 +214788,AAA Batteries (4-pack),1,2.99,2019-06-07 20:45:00,452 9th St, Los Angeles,CA,90001 +214789,Macbook Pro Laptop,1,1700.0,2019-06-13 10:24:00,437 Cherry St, Dallas,TX,75001 +214790,ThinkPad Laptop,1,999.99,2019-06-20 11:37:00,947 Lincoln St, Atlanta,GA,30301 +214791,Apple Airpods Headphones,1,150.0,2019-06-03 09:53:00,243 Center St, Austin,TX,73301 +214792,Lightning Charging Cable,2,14.95,2019-06-02 09:28:00,364 1st St, Seattle,WA,98101 +214793,ThinkPad Laptop,1,999.99,2019-06-30 08:40:00,562 Elm St, Atlanta,GA,30301 +214794,Apple Airpods Headphones,1,150.0,2019-06-11 12:29:00,262 Highland St, Boston,MA,02215 +214795,Bose SoundSport Headphones,1,99.99,2019-06-18 22:56:00,505 Lincoln St, Dallas,TX,75001 +214796,ThinkPad Laptop,1,999.99,2019-06-15 15:12:00,499 Jefferson St, Portland,OR,97035 +214797,USB-C Charging Cable,1,11.95,2019-06-01 23:37:00,173 Hickory St, Los Angeles,CA,90001 +214798,Bose SoundSport Headphones,1,99.99,2019-06-18 10:46:00,39 Johnson St, San Francisco,CA,94016 +214799,Apple Airpods Headphones,1,150.0,2019-06-02 22:32:00,780 4th St, New York City,NY,10001 +214800,Lightning Charging Cable,1,14.95,2019-06-01 10:41:00,474 Jackson St, San Francisco,CA,94016 +214801,USB-C Charging Cable,1,11.95,2019-06-06 08:29:00,605 14th St, Dallas,TX,75001 +214802,Lightning Charging Cable,1,14.95,2019-06-29 19:30:00,205 Park St, Atlanta,GA,30301 +214803,Wired Headphones,1,11.99,2019-06-18 22:14:00,309 5th St, Boston,MA,02215 +214804,20in Monitor,1,109.99,2019-06-07 10:52:00,415 Spruce St, Portland,OR,97035 +214805,Apple Airpods Headphones,1,150.0,2019-06-18 12:44:00,503 Washington St, Los Angeles,CA,90001 +214806,USB-C Charging Cable,1,11.95,2019-06-30 16:27:00,755 4th St, Atlanta,GA,30301 +214807,Lightning Charging Cable,1,14.95,2019-06-20 11:20:00,658 Lakeview St, Los Angeles,CA,90001 +214808,Bose SoundSport Headphones,1,99.99,2019-06-29 17:18:00,411 Adams St, Seattle,WA,98101 +214809,Lightning Charging Cable,1,14.95,2019-06-07 16:41:00,944 Hill St, San Francisco,CA,94016 +214810,iPhone,1,700.0,2019-06-20 09:13:00,434 12th St, Seattle,WA,98101 +214811,AAA Batteries (4-pack),1,2.99,2019-06-12 18:07:00,406 Jefferson St, San Francisco,CA,94016 +214812,AAA Batteries (4-pack),1,2.99,2019-06-02 19:20:00,538 Cherry St, New York City,NY,10001 +214813,Wired Headphones,1,11.99,2019-06-07 10:13:00,555 Adams St, San Francisco,CA,94016 +214814,AA Batteries (4-pack),1,3.84,2019-06-26 14:42:00,241 Pine St, New York City,NY,10001 +214815,Lightning Charging Cable,1,14.95,2019-06-12 13:20:00,785 River St, San Francisco,CA,94016 +214816,27in 4K Gaming Monitor,1,389.99,2019-06-27 01:15:00,529 11th St, San Francisco,CA,94016 +214817,Bose SoundSport Headphones,1,99.99,2019-06-22 08:11:00,364 Meadow St, Austin,TX,73301 +214818,Wired Headphones,2,11.99,2019-06-17 15:33:00,298 Adams St, Los Angeles,CA,90001 +214819,Macbook Pro Laptop,1,1700.0,2019-06-11 03:32:00,856 Dogwood St, San Francisco,CA,94016 +214820,Wired Headphones,1,11.99,2019-06-11 23:45:00,766 Jackson St, Los Angeles,CA,90001 +214821,Wired Headphones,1,11.99,2019-06-26 16:12:00,215 Adams St, Los Angeles,CA,90001 +214822,27in FHD Monitor,1,149.99,2019-06-25 14:17:00,745 Jefferson St, Seattle,WA,98101 +214823,iPhone,1,700.0,2019-06-11 15:17:00,479 Hickory St, Seattle,WA,98101 +214823,Lightning Charging Cable,2,14.95,2019-06-11 15:17:00,479 Hickory St, Seattle,WA,98101 +214823,Wired Headphones,1,11.99,2019-06-11 15:17:00,479 Hickory St, Seattle,WA,98101 +214824,USB-C Charging Cable,1,11.95,2019-06-26 16:46:00,914 5th St, San Francisco,CA,94016 +214825,27in FHD Monitor,1,149.99,2019-06-12 14:41:00,436 Madison St, San Francisco,CA,94016 +214826,USB-C Charging Cable,1,11.95,2019-06-28 20:51:00,34 Forest St, Seattle,WA,98101 +214827,USB-C Charging Cable,1,11.95,2019-06-24 13:23:00,72 Maple St, Dallas,TX,75001 +214828,AAA Batteries (4-pack),1,2.99,2019-06-18 21:39:00,145 13th St, Dallas,TX,75001 +214829,Google Phone,1,600.0,2019-06-09 04:14:00,779 2nd St, New York City,NY,10001 +214830,Wired Headphones,1,11.99,2019-06-02 16:09:00,258 Ridge St, Atlanta,GA,30301 +214831,Lightning Charging Cable,1,14.95,2019-06-08 12:03:00,879 Meadow St, San Francisco,CA,94016 +214832,27in 4K Gaming Monitor,1,389.99,2019-06-14 19:11:00,616 Dogwood St, Boston,MA,02215 +214833,Bose SoundSport Headphones,1,99.99,2019-06-15 18:35:00,878 Lake St, San Francisco,CA,94016 +214834,iPhone,1,700.0,2019-06-26 13:52:00,282 Park St, Boston,MA,02215 +214834,Lightning Charging Cable,1,14.95,2019-06-26 13:52:00,282 Park St, Boston,MA,02215 +214835,AAA Batteries (4-pack),3,2.99,2019-06-06 11:07:00,559 Adams St, New York City,NY,10001 +214836,Wired Headphones,1,11.99,2019-06-07 10:23:00,962 Wilson St, Atlanta,GA,30301 +214837,Wired Headphones,1,11.99,2019-06-08 23:45:00,217 Cedar St, Atlanta,GA,30301 +214838,Google Phone,1,600.0,2019-06-23 19:21:00,488 Highland St, Atlanta,GA,30301 +214839,iPhone,1,700.0,2019-06-19 18:38:00,852 Johnson St, Los Angeles,CA,90001 +214840,Apple Airpods Headphones,1,150.0,2019-06-22 19:40:00,573 Cedar St, San Francisco,CA,94016 +214841,AA Batteries (4-pack),1,3.84,2019-06-20 12:34:00,480 Hill St, Dallas,TX,75001 +214842,AA Batteries (4-pack),1,3.84,2019-06-08 15:06:00,891 Pine St, San Francisco,CA,94016 +214843,AA Batteries (4-pack),1,3.84,2019-06-20 18:13:00,368 Main St, San Francisco,CA,94016 +214844,Apple Airpods Headphones,1,150.0,2019-06-03 07:55:00,80 13th St, San Francisco,CA,94016 +214845,27in FHD Monitor,1,149.99,2019-06-30 13:48:00,193 Pine St, Austin,TX,73301 +214846,AAA Batteries (4-pack),4,2.99,2019-06-11 06:57:00,356 Lincoln St, Boston,MA,02215 +214847,Lightning Charging Cable,1,14.95,2019-06-01 07:19:00,455 Elm St, Los Angeles,CA,90001 +214848,Wired Headphones,1,11.99,2019-06-08 00:36:00,821 Washington St, Dallas,TX,75001 +214849,27in FHD Monitor,1,149.99,2019-06-18 02:02:00,322 Dogwood St, San Francisco,CA,94016 +214850,Lightning Charging Cable,1,14.95,2019-06-20 19:25:00,972 10th St, Atlanta,GA,30301 +214851,27in 4K Gaming Monitor,1,389.99,2019-06-08 19:12:00,367 5th St, Los Angeles,CA,90001 +214852,iPhone,1,700.0,2019-06-17 11:01:00,660 Hickory St, Seattle,WA,98101 +214853,27in 4K Gaming Monitor,1,389.99,2019-06-04 19:30:00,217 11th St, Los Angeles,CA,90001 +214854,Wired Headphones,1,11.99,2019-06-01 15:35:00,86 Ridge St, Los Angeles,CA,90001 +214855,USB-C Charging Cable,1,11.95,2019-06-02 21:35:00,528 Main St, San Francisco,CA,94016 +214856,iPhone,1,700.0,2019-06-09 21:27:00,353 Forest St, Los Angeles,CA,90001 +214857,USB-C Charging Cable,1,11.95,2019-06-20 16:16:00,794 Dogwood St, Los Angeles,CA,90001 +214858,Apple Airpods Headphones,1,150.0,2019-06-21 08:13:00,4 Pine St, Atlanta,GA,30301 +214859,USB-C Charging Cable,1,11.95,2019-06-23 17:26:00,182 Forest St, Boston,MA,02215 +214860,Apple Airpods Headphones,1,150.0,2019-06-26 16:52:00,298 Jackson St, Los Angeles,CA,90001 +214861,USB-C Charging Cable,1,11.95,2019-06-20 08:04:00,89 Washington St, New York City,NY,10001 +214862,Wired Headphones,1,11.99,2019-06-29 17:30:00,183 South St, Portland,OR,97035 +214863,USB-C Charging Cable,3,11.95,2019-06-11 21:07:00,321 Walnut St, Boston,MA,02215 +214864,ThinkPad Laptop,1,999.99,2019-06-22 15:29:00,473 Church St, Los Angeles,CA,90001 +214865,Lightning Charging Cable,1,14.95,2019-06-17 18:21:00,946 Lake St, Boston,MA,02215 +214866,AAA Batteries (4-pack),1,2.99,2019-06-29 11:30:00,209 Chestnut St, Portland,OR,97035 +214867,Google Phone,1,600.0,2019-06-13 12:14:00,238 Highland St, Seattle,WA,98101 +214868,Wired Headphones,1,11.99,2019-06-12 17:38:00,352 6th St, Dallas,TX,75001 +214869,27in 4K Gaming Monitor,1,389.99,2019-06-07 22:41:00,349 2nd St, Boston,MA,02215 +214870,AA Batteries (4-pack),1,3.84,2019-06-02 23:09:00,230 Lake St, Boston,MA,02215 +214871,USB-C Charging Cable,1,11.95,2019-06-20 14:39:00,492 Walnut St, Atlanta,GA,30301 +214872,Lightning Charging Cable,1,14.95,2019-06-28 10:49:00,574 Center St, Austin,TX,73301 +214873,Wired Headphones,1,11.99,2019-06-16 16:07:00,535 Center St, San Francisco,CA,94016 +214874,27in 4K Gaming Monitor,1,389.99,2019-06-19 18:17:00,831 Wilson St, Los Angeles,CA,90001 +214875,ThinkPad Laptop,1,999.99,2019-06-23 17:13:00,9 Forest St, New York City,NY,10001 +214876,Apple Airpods Headphones,1,150.0,2019-06-07 18:10:00,765 11th St, Boston,MA,02215 +214877,iPhone,1,700.0,2019-06-10 11:14:00,261 Main St, New York City,NY,10001 +214878,Bose SoundSport Headphones,1,99.99,2019-06-26 14:52:00,478 Lakeview St, New York City,NY,10001 +214879,USB-C Charging Cable,1,11.95,2019-06-27 18:16:00,52 7th St, Portland,ME,04101 +214880,Google Phone,1,600.0,2019-06-25 07:59:00,563 Sunset St, San Francisco,CA,94016 +214880,USB-C Charging Cable,1,11.95,2019-06-25 07:59:00,563 Sunset St, San Francisco,CA,94016 +214881,27in FHD Monitor,1,149.99,2019-06-21 08:58:00,310 Lake St, Boston,MA,02215 +214882,Wired Headphones,2,11.99,2019-06-04 20:52:00,551 Spruce St, Boston,MA,02215 +214883,USB-C Charging Cable,1,11.95,2019-06-18 09:52:00,362 Spruce St, San Francisco,CA,94016 +214884,Lightning Charging Cable,1,14.95,2019-06-30 10:48:00,221 South St, Los Angeles,CA,90001 +214885,AA Batteries (4-pack),1,3.84,2019-06-28 15:20:00,790 Maple St, San Francisco,CA,94016 +214886,AA Batteries (4-pack),2,3.84,2019-06-06 11:29:00,429 12th St, San Francisco,CA,94016 +214887,Lightning Charging Cable,1,14.95,2019-06-18 19:50:00,828 Church St, San Francisco,CA,94016 +214888,Lightning Charging Cable,1,14.95,2019-06-06 16:20:00,110 Pine St, Seattle,WA,98101 +214889,Bose SoundSport Headphones,1,99.99,2019-06-17 12:41:00,825 Jefferson St, Los Angeles,CA,90001 +214890,AA Batteries (4-pack),1,3.84,2019-06-02 13:12:00,268 Hill St, Los Angeles,CA,90001 +214891,AAA Batteries (4-pack),1,2.99,2019-06-25 20:28:00,33 Lincoln St, Dallas,TX,75001 +214892,iPhone,1,700.0,2019-06-01 11:20:00,761 Highland St, New York City,NY,10001 +214893,USB-C Charging Cable,2,11.95,2019-06-10 17:44:00,430 6th St, New York City,NY,10001 +214894,Lightning Charging Cable,1,14.95,2019-06-25 20:54:00,82 14th St, Boston,MA,02215 +214895,AAA Batteries (4-pack),1,2.99,2019-06-16 19:38:00,942 North St, New York City,NY,10001 +214896,Lightning Charging Cable,1,14.95,2019-06-30 12:01:00,114 Madison St, Portland,ME,04101 +214897,Bose SoundSport Headphones,1,99.99,2019-06-16 22:39:00,516 1st St, San Francisco,CA,94016 +214898,USB-C Charging Cable,1,11.95,2019-06-27 16:49:00,235 Hickory St, San Francisco,CA,94016 +214899,Google Phone,1,600.0,2019-06-24 18:53:00,599 Jackson St, Boston,MA,02215 +214899,USB-C Charging Cable,1,11.95,2019-06-24 18:53:00,599 Jackson St, Boston,MA,02215 +214900,AA Batteries (4-pack),1,3.84,2019-06-08 12:42:00,483 Meadow St, Boston,MA,02215 +214901,AA Batteries (4-pack),1,3.84,2019-06-24 10:26:00,881 5th St, New York City,NY,10001 +214902,AAA Batteries (4-pack),3,2.99,2019-06-26 10:02:00,792 River St, Portland,OR,97035 +214903,iPhone,1,700.0,2019-06-07 15:21:00,328 North St, Dallas,TX,75001 +214904,27in FHD Monitor,1,149.99,2019-06-09 22:18:00,111 Spruce St, Dallas,TX,75001 +214905,Lightning Charging Cable,1,14.95,2019-06-18 09:29:00,136 Washington St, Seattle,WA,98101 +214906,AA Batteries (4-pack),1,3.84,2019-06-01 08:00:00,459 Adams St, Seattle,WA,98101 +214907,AA Batteries (4-pack),2,3.84,2019-06-19 13:57:00,763 Center St, New York City,NY,10001 +214908,Bose SoundSport Headphones,1,99.99,2019-06-23 14:07:00,641 14th St, New York City,NY,10001 +214909,Apple Airpods Headphones,1,150.0,2019-06-05 18:38:00,884 7th St, San Francisco,CA,94016 +214910,Google Phone,1,600.0,2019-06-04 14:19:00,385 13th St, Atlanta,GA,30301 +214910,Macbook Pro Laptop,1,1700.0,2019-06-04 14:19:00,385 13th St, Atlanta,GA,30301 +214911,Bose SoundSport Headphones,1,99.99,2019-06-12 08:35:00,189 Jefferson St, Seattle,WA,98101 +214912,Lightning Charging Cable,2,14.95,2019-06-27 13:57:00,352 2nd St, Boston,MA,02215 +214913,20in Monitor,1,109.99,2019-06-01 17:28:00,779 Park St, Boston,MA,02215 +214914,Lightning Charging Cable,1,14.95,2019-06-13 18:20:00,679 Lakeview St, Seattle,WA,98101 +214915,ThinkPad Laptop,1,999.99,2019-06-28 21:46:00,545 4th St, San Francisco,CA,94016 +214916,USB-C Charging Cable,1,11.95,2019-06-17 08:25:00,490 Maple St, San Francisco,CA,94016 +214917,Lightning Charging Cable,1,14.95,2019-06-27 19:11:00,693 South St, New York City,NY,10001 +214918,Lightning Charging Cable,1,14.95,2019-06-13 11:03:00,26 Elm St, New York City,NY,10001 +214919,USB-C Charging Cable,1,11.95,2019-06-02 12:55:00,58 Lakeview St, Portland,OR,97035 +214920,20in Monitor,1,109.99,2019-06-09 20:30:00,425 Madison St, San Francisco,CA,94016 +214921,Google Phone,1,600.0,2019-06-16 22:08:00,357 Elm St, San Francisco,CA,94016 +214922,Flatscreen TV,1,300.0,2019-06-05 09:52:00,516 Adams St, Los Angeles,CA,90001 +214923,27in FHD Monitor,1,149.99,2019-06-26 10:56:00,712 Center St, San Francisco,CA,94016 +214924,AA Batteries (4-pack),1,3.84,2019-06-04 17:12:00,195 2nd St, Austin,TX,73301 +214925,27in 4K Gaming Monitor,1,389.99,2019-06-19 13:31:00,787 Spruce St, San Francisco,CA,94016 +214926,Apple Airpods Headphones,1,150.0,2019-06-24 12:22:00,497 Cedar St, Seattle,WA,98101 +214927,Apple Airpods Headphones,1,150.0,2019-06-24 09:10:00,253 Johnson St, Los Angeles,CA,90001 +214928,Apple Airpods Headphones,1,150.0,2019-06-29 18:13:00,124 Highland St, Seattle,WA,98101 +214929,Apple Airpods Headphones,1,150.0,2019-06-05 19:43:00,893 Church St, San Francisco,CA,94016 +214930,AAA Batteries (4-pack),1,2.99,2019-06-25 16:47:00,39 Forest St, San Francisco,CA,94016 +214931,AAA Batteries (4-pack),1,2.99,2019-06-02 17:05:00,990 4th St, Boston,MA,02215 +214932,ThinkPad Laptop,1,999.99,2019-06-09 16:22:00,406 6th St, Seattle,WA,98101 +214933,27in FHD Monitor,1,149.99,2019-06-08 20:12:00,410 1st St, San Francisco,CA,94016 +214934,AAA Batteries (4-pack),1,2.99,2019-06-06 14:11:00,19 Washington St, New York City,NY,10001 +214935,Wired Headphones,1,11.99,2019-06-05 11:47:00,683 Elm St, San Francisco,CA,94016 +214936,Apple Airpods Headphones,1,150.0,2019-06-19 11:40:00,40 Spruce St, Dallas,TX,75001 +214937,Lightning Charging Cable,1,14.95,2019-06-08 06:30:00,104 Sunset St, Atlanta,GA,30301 +214938,Lightning Charging Cable,1,14.95,2019-06-05 09:26:00,113 1st St, New York City,NY,10001 +214939,20in Monitor,1,109.99,2019-06-12 20:26:00,278 Jackson St, Seattle,WA,98101 +214940,Google Phone,1,600.0,2019-06-29 01:07:00,233 River St, San Francisco,CA,94016 +214941,USB-C Charging Cable,1,11.95,2019-06-04 20:08:00,371 13th St, Los Angeles,CA,90001 +214942,Lightning Charging Cable,1,14.95,2019-06-11 09:08:00,326 Lincoln St, New York City,NY,10001 +214943,Flatscreen TV,1,300.0,2019-06-20 18:35:00,684 4th St, Atlanta,GA,30301 +214944,AA Batteries (4-pack),1,3.84,2019-06-21 11:48:00,434 Park St, New York City,NY,10001 +214945,AA Batteries (4-pack),1,3.84,2019-06-19 14:54:00,263 Walnut St, New York City,NY,10001 +214946,Lightning Charging Cable,1,14.95,2019-06-06 12:23:00,508 2nd St, San Francisco,CA,94016 +214947,Bose SoundSport Headphones,1,99.99,2019-06-09 14:25:00,71 12th St, San Francisco,CA,94016 +214948,AA Batteries (4-pack),2,3.84,2019-06-07 18:05:00,205 4th St, San Francisco,CA,94016 +214949,Apple Airpods Headphones,1,150.0,2019-06-18 15:23:00,198 Church St, Boston,MA,02215 +214950,USB-C Charging Cable,1,11.95,2019-06-17 18:02:00,418 Lincoln St, Dallas,TX,75001 +214951,Lightning Charging Cable,1,14.95,2019-06-27 20:37:00,291 9th St, Austin,TX,73301 +214952,27in 4K Gaming Monitor,1,389.99,2019-06-09 22:20:00,361 West St, Boston,MA,02215 +214953,Lightning Charging Cable,1,14.95,2019-06-08 17:53:00,500 Ridge St, Seattle,WA,98101 +214954,AA Batteries (4-pack),1,3.84,2019-06-15 15:29:00,346 Washington St, Boston,MA,02215 +214955,AAA Batteries (4-pack),1,2.99,2019-06-01 12:39:00,864 4th St, Boston,MA,02215 +214956,iPhone,1,700.0,2019-06-15 17:23:00,633 Johnson St, San Francisco,CA,94016 +214957,Macbook Pro Laptop,1,1700.0,2019-06-21 21:25:00,372 Sunset St, New York City,NY,10001 +214958,Lightning Charging Cable,1,14.95,2019-06-16 18:19:00,665 Main St, New York City,NY,10001 +214959,Vareebadd Phone,1,400.0,2019-06-20 08:25:00,643 Main St, Atlanta,GA,30301 +214959,Wired Headphones,1,11.99,2019-06-20 08:25:00,643 Main St, Atlanta,GA,30301 +214960,Bose SoundSport Headphones,1,99.99,2019-06-20 04:29:00,616 Cedar St, Portland,OR,97035 +214961,Apple Airpods Headphones,1,150.0,2019-06-28 15:36:00,914 Sunset St, Austin,TX,73301 +214962,Wired Headphones,1,11.99,2019-06-19 12:29:00,190 Willow St, Los Angeles,CA,90001 +214963,Apple Airpods Headphones,1,150.0,2019-06-09 13:57:00,282 14th St, San Francisco,CA,94016 +214964,AA Batteries (4-pack),2,3.84,2019-06-18 19:53:00,89 10th St, San Francisco,CA,94016 +214965,Lightning Charging Cable,1,14.95,2019-06-26 08:14:00,582 Johnson St, San Francisco,CA,94016 +214966,USB-C Charging Cable,1,11.95,2019-06-22 19:33:00,460 12th St, Los Angeles,CA,90001 +214967,iPhone,1,700.0,2019-06-13 14:07:00,243 Church St, Portland,OR,97035 +214968,Wired Headphones,1,11.99,2019-06-20 19:26:00,596 Highland St, Boston,MA,02215 +214969,ThinkPad Laptop,1,999.99,2019-06-11 15:32:00,150 Spruce St, New York City,NY,10001 +214970,Apple Airpods Headphones,1,150.0,2019-06-14 18:00:00,914 Pine St, Seattle,WA,98101 +214971,AA Batteries (4-pack),1,3.84,2019-06-20 15:37:00,402 North St, New York City,NY,10001 +214972,Wired Headphones,1,11.99,2019-06-05 09:05:00,145 Hill St, Los Angeles,CA,90001 +214973,AAA Batteries (4-pack),2,2.99,2019-06-05 20:57:00,594 4th St, New York City,NY,10001 +214973,27in 4K Gaming Monitor,1,389.99,2019-06-05 20:57:00,594 4th St, New York City,NY,10001 +214974,USB-C Charging Cable,1,11.95,2019-06-07 12:30:00,557 Forest St, New York City,NY,10001 +214975,Lightning Charging Cable,1,14.95,2019-06-13 06:33:00,255 Cherry St, Seattle,WA,98101 +214976,iPhone,1,700.0,2019-06-24 23:41:00,287 6th St, San Francisco,CA,94016 +214977,Bose SoundSport Headphones,1,99.99,2019-06-20 00:29:00,786 Lincoln St, Atlanta,GA,30301 +214978,Bose SoundSport Headphones,1,99.99,2019-06-06 10:45:00,962 Chestnut St, Dallas,TX,75001 +214979,Apple Airpods Headphones,1,150.0,2019-06-15 20:16:00,142 South St, Los Angeles,CA,90001 +214980,Lightning Charging Cable,1,14.95,2019-06-02 08:58:00,105 7th St, New York City,NY,10001 +214981,Lightning Charging Cable,1,14.95,2019-06-25 13:33:00,801 Jefferson St, Seattle,WA,98101 +214982,Lightning Charging Cable,1,14.95,2019-06-21 17:48:00,990 5th St, Dallas,TX,75001 +214983,USB-C Charging Cable,1,11.95,2019-06-30 00:04:00,770 Wilson St, Boston,MA,02215 +214984,Lightning Charging Cable,1,14.95,2019-06-13 14:23:00,462 Dogwood St, Portland,OR,97035 +214985,Google Phone,1,600.0,2019-06-04 21:23:00,669 Elm St, Boston,MA,02215 +214986,Bose SoundSport Headphones,1,99.99,2019-07-01 02:59:00,877 Wilson St, Boston,MA,02215 +214987,AAA Batteries (4-pack),1,2.99,2019-06-06 19:36:00,145 Cherry St, San Francisco,CA,94016 +214988,34in Ultrawide Monitor,1,379.99,2019-06-04 04:49:00,958 4th St, Los Angeles,CA,90001 +214988,Lightning Charging Cable,1,14.95,2019-06-04 04:49:00,958 4th St, Los Angeles,CA,90001 +214989,Flatscreen TV,1,300.0,2019-06-25 18:41:00,572 West St, Los Angeles,CA,90001 +214990,34in Ultrawide Monitor,1,379.99,2019-06-27 19:28:00,894 Maple St, Austin,TX,73301 +214990,AAA Batteries (4-pack),2,2.99,2019-06-27 19:28:00,894 Maple St, Austin,TX,73301 +214991,Apple Airpods Headphones,1,150.0,2019-06-09 19:57:00,44 Highland St, Los Angeles,CA,90001 +214992,USB-C Charging Cable,1,11.95,2019-06-21 11:27:00,102 Lakeview St, New York City,NY,10001 +214993,AA Batteries (4-pack),2,3.84,2019-06-30 23:49:00,458 Spruce St, New York City,NY,10001 +214994,Lightning Charging Cable,1,14.95,2019-06-14 09:08:00,708 Park St, New York City,NY,10001 +214995,27in FHD Monitor,1,149.99,2019-06-15 14:18:00,122 Pine St, San Francisco,CA,94016 +214996,Lightning Charging Cable,1,14.95,2019-06-26 13:26:00,172 Cherry St, Seattle,WA,98101 +214997,AAA Batteries (4-pack),1,2.99,2019-06-22 14:15:00,21 Chestnut St, New York City,NY,10001 +214998,AAA Batteries (4-pack),6,2.99,2019-06-03 15:55:00,363 Hickory St, San Francisco,CA,94016 +214999,AA Batteries (4-pack),1,3.84,2019-06-23 08:57:00,886 North St, Los Angeles,CA,90001 +215000,AAA Batteries (4-pack),1,2.99,2019-06-10 17:40:00,558 Sunset St, Portland,OR,97035 +215001,USB-C Charging Cable,1,11.95,2019-06-11 12:35:00,666 Willow St, San Francisco,CA,94016 +215002,34in Ultrawide Monitor,1,379.99,2019-06-26 17:25:00,210 Lincoln St, Dallas,TX,75001 +215003,Wired Headphones,1,11.99,2019-06-03 11:41:00,25 Walnut St, Boston,MA,02215 +215004,Apple Airpods Headphones,1,150.0,2019-06-04 22:55:00,428 Church St, New York City,NY,10001 +215005,27in FHD Monitor,2,149.99,2019-06-19 14:48:00,905 Main St, Dallas,TX,75001 +215006,USB-C Charging Cable,1,11.95,2019-06-19 15:21:00,738 4th St, Austin,TX,73301 +215007,Lightning Charging Cable,1,14.95,2019-06-24 13:28:00,908 Center St, San Francisco,CA,94016 +215008,USB-C Charging Cable,2,11.95,2019-06-04 10:06:00,471 9th St, Atlanta,GA,30301 +215009,Apple Airpods Headphones,1,150.0,2019-06-20 15:58:00,132 River St, San Francisco,CA,94016 +215010,Lightning Charging Cable,1,14.95,2019-06-15 20:20:00,993 10th St, Boston,MA,02215 +215011,Wired Headphones,1,11.99,2019-06-29 17:09:00,736 10th St, Boston,MA,02215 +215012,AA Batteries (4-pack),1,3.84,2019-06-20 08:42:00,529 Maple St, Los Angeles,CA,90001 +215013,Lightning Charging Cable,1,14.95,2019-06-04 08:25:00,958 Walnut St, San Francisco,CA,94016 +215014,AAA Batteries (4-pack),1,2.99,2019-06-07 10:46:00,465 Lake St, Portland,OR,97035 +215015,USB-C Charging Cable,1,11.95,2019-06-29 15:16:00,646 4th St, New York City,NY,10001 +215016,AA Batteries (4-pack),1,3.84,2019-06-19 19:03:00,745 Hill St, Atlanta,GA,30301 +215017,Flatscreen TV,1,300.0,2019-06-16 16:25:00,687 10th St, New York City,NY,10001 +215018,Wired Headphones,1,11.99,2019-06-18 12:33:00,169 13th St, San Francisco,CA,94016 +215019,Apple Airpods Headphones,1,150.0,2019-06-26 13:51:00,313 Hickory St, Atlanta,GA,30301 +215020,20in Monitor,1,109.99,2019-06-19 19:57:00,496 Church St, San Francisco,CA,94016 +215021,27in FHD Monitor,1,149.99,2019-06-15 14:25:00,38 Pine St, New York City,NY,10001 +215022,AAA Batteries (4-pack),1,2.99,2019-06-15 22:15:00,297 Maple St, San Francisco,CA,94016 +215023,Bose SoundSport Headphones,1,99.99,2019-06-24 13:53:00,838 Ridge St, Los Angeles,CA,90001 +215024,27in 4K Gaming Monitor,1,389.99,2019-06-26 10:16:00,469 Maple St, New York City,NY,10001 +215025,Lightning Charging Cable,1,14.95,2019-06-05 15:04:00,902 Center St, Dallas,TX,75001 +215026,27in FHD Monitor,1,149.99,2019-06-27 19:40:00,664 Cedar St, San Francisco,CA,94016 +215027,Lightning Charging Cable,1,14.95,2019-06-08 13:07:00,572 1st St, San Francisco,CA,94016 +215028,Google Phone,1,600.0,2019-06-06 10:11:00,583 Chestnut St, New York City,NY,10001 +215028,Bose SoundSport Headphones,1,99.99,2019-06-06 10:11:00,583 Chestnut St, New York City,NY,10001 +215029,USB-C Charging Cable,1,11.95,2019-06-11 17:47:00,208 Johnson St, Portland,OR,97035 +215030,Lightning Charging Cable,1,14.95,2019-06-15 09:46:00,653 Lake St, Portland,ME,04101 +215031,Macbook Pro Laptop,1,1700.0,2019-06-08 08:46:00,337 13th St, Atlanta,GA,30301 +215032,Apple Airpods Headphones,1,150.0,2019-06-27 21:41:00,154 Lake St, New York City,NY,10001 +215033,iPhone,1,700.0,2019-06-01 12:56:00,969 Lakeview St, Los Angeles,CA,90001 +215033,Lightning Charging Cable,1,14.95,2019-06-01 12:56:00,969 Lakeview St, Los Angeles,CA,90001 +215034,AA Batteries (4-pack),2,3.84,2019-06-23 20:51:00,777 7th St, Boston,MA,02215 +215035,AA Batteries (4-pack),1,3.84,2019-06-15 19:27:00,692 Jefferson St, Seattle,WA,98101 +215036,AA Batteries (4-pack),1,3.84,2019-06-01 12:25:00,828 6th St, Dallas,TX,75001 +215037,AAA Batteries (4-pack),1,2.99,2019-06-16 22:23:00,149 Spruce St, Los Angeles,CA,90001 +215038,Flatscreen TV,1,300.0,2019-06-04 10:59:00,898 11th St, Boston,MA,02215 +215039,27in 4K Gaming Monitor,1,389.99,2019-06-23 09:33:00,871 8th St, Boston,MA,02215 +215040,Macbook Pro Laptop,1,1700.0,2019-06-11 11:34:00,298 10th St, New York City,NY,10001 +215041,ThinkPad Laptop,1,999.99,2019-06-07 12:48:00,17 9th St, New York City,NY,10001 +215042,USB-C Charging Cable,1,11.95,2019-06-13 12:03:00,950 6th St, San Francisco,CA,94016 +215043,AA Batteries (4-pack),1,3.84,2019-06-15 21:13:00,90 Sunset St, San Francisco,CA,94016 +215044,Wired Headphones,1,11.99,2019-06-06 01:16:00,895 Jefferson St, Seattle,WA,98101 +215045,AAA Batteries (4-pack),1,2.99,2019-06-02 19:49:00,837 Park St, New York City,NY,10001 +215046,Bose SoundSport Headphones,1,99.99,2019-06-24 22:43:00,363 Jefferson St, New York City,NY,10001 +215047,Apple Airpods Headphones,1,150.0,2019-06-20 06:57:00,56 Pine St, Seattle,WA,98101 +215048,AA Batteries (4-pack),2,3.84,2019-06-04 11:40:00,731 Center St, Portland,OR,97035 +215049,AA Batteries (4-pack),1,3.84,2019-06-02 13:50:00,112 Lincoln St, Dallas,TX,75001 +215050,USB-C Charging Cable,1,11.95,2019-06-24 09:37:00,415 Elm St, San Francisco,CA,94016 +215051,Apple Airpods Headphones,1,150.0,2019-06-11 13:49:00,550 Lake St, San Francisco,CA,94016 +215052,Wired Headphones,1,11.99,2019-06-12 15:01:00,583 Main St, San Francisco,CA,94016 +215053,Bose SoundSport Headphones,1,99.99,2019-06-26 20:58:00,890 Chestnut St, San Francisco,CA,94016 +215054,Wired Headphones,2,11.99,2019-06-05 15:37:00,67 Jackson St, Dallas,TX,75001 +215055,34in Ultrawide Monitor,1,379.99,2019-06-25 05:03:00,52 5th St, Atlanta,GA,30301 +215056,Apple Airpods Headphones,1,150.0,2019-06-25 08:42:00,996 Forest St, San Francisco,CA,94016 +215057,27in 4K Gaming Monitor,1,389.99,2019-06-02 11:35:00,312 Forest St, San Francisco,CA,94016 +215058,AAA Batteries (4-pack),1,2.99,2019-06-15 01:47:00,583 West St, Dallas,TX,75001 +215059,Apple Airpods Headphones,1,150.0,2019-06-27 22:30:00,112 Cherry St, San Francisco,CA,94016 +215060,AA Batteries (4-pack),1,3.84,2019-06-25 02:42:00,851 Willow St, San Francisco,CA,94016 +215061,USB-C Charging Cable,1,11.95,2019-06-25 09:10:00,461 Forest St, New York City,NY,10001 +215062,27in 4K Gaming Monitor,1,389.99,2019-06-20 05:06:00,115 14th St, Los Angeles,CA,90001 +215063,Apple Airpods Headphones,1,150.0,2019-06-02 08:20:00,133 Jackson St, Boston,MA,02215 +215064,Lightning Charging Cable,1,14.95,2019-06-05 00:52:00,67 Washington St, San Francisco,CA,94016 +215065,AA Batteries (4-pack),1,3.84,2019-06-03 11:35:00,648 Cherry St, San Francisco,CA,94016 +215066,Wired Headphones,1,11.99,2019-06-13 01:00:00,909 Hill St, New York City,NY,10001 +215067,Wired Headphones,1,11.99,2019-06-18 21:26:00,475 9th St, San Francisco,CA,94016 +215068,27in FHD Monitor,1,149.99,2019-06-04 11:31:00,958 Walnut St, San Francisco,CA,94016 +215069,USB-C Charging Cable,1,11.95,2019-06-13 08:34:00,385 Madison St, San Francisco,CA,94016 +215070,Google Phone,1,600.0,2019-06-07 12:35:00,888 11th St, Austin,TX,73301 +215071,Lightning Charging Cable,1,14.95,2019-06-28 22:04:00,104 11th St, San Francisco,CA,94016 +215072,Lightning Charging Cable,1,14.95,2019-06-28 11:34:00,190 Johnson St, Los Angeles,CA,90001 +215073,Bose SoundSport Headphones,1,99.99,2019-06-21 12:52:00,612 Sunset St, Atlanta,GA,30301 +215074,27in FHD Monitor,1,149.99,2019-06-23 16:22:00,358 Johnson St, Los Angeles,CA,90001 +215075,USB-C Charging Cable,1,11.95,2019-06-19 11:56:00,871 Johnson St, Boston,MA,02215 +215076,Lightning Charging Cable,1,14.95,2019-06-23 10:45:00,350 Dogwood St, New York City,NY,10001 +215077,AAA Batteries (4-pack),1,2.99,2019-06-09 10:32:00,819 Church St, San Francisco,CA,94016 +215078,AA Batteries (4-pack),1,3.84,2019-06-20 13:26:00,269 Church St, Boston,MA,02215 +215079,AA Batteries (4-pack),1,3.84,2019-06-15 18:19:00,930 Main St, Los Angeles,CA,90001 +215080,Lightning Charging Cable,1,14.95,2019-06-11 03:17:00,529 South St, San Francisco,CA,94016 +215081,AAA Batteries (4-pack),3,2.99,2019-06-22 21:26:00,78 North St, Dallas,TX,75001 +215082,iPhone,1,700.0,2019-06-29 00:12:00,121 Chestnut St, Los Angeles,CA,90001 +215082,Lightning Charging Cable,1,14.95,2019-06-29 00:12:00,121 Chestnut St, Los Angeles,CA,90001 +215083,34in Ultrawide Monitor,1,379.99,2019-06-29 14:34:00,580 Johnson St, San Francisco,CA,94016 +215084,Apple Airpods Headphones,1,150.0,2019-06-15 21:56:00,669 6th St, San Francisco,CA,94016 +215085,Bose SoundSport Headphones,1,99.99,2019-06-15 22:13:00,947 14th St, Atlanta,GA,30301 +215086,AA Batteries (4-pack),1,3.84,2019-06-03 21:45:00,175 Highland St, Atlanta,GA,30301 +215087,Wired Headphones,1,11.99,2019-06-18 21:49:00,104 Hill St, Dallas,TX,75001 +215088,AA Batteries (4-pack),2,3.84,2019-06-06 16:31:00,884 14th St, Dallas,TX,75001 +215089,AAA Batteries (4-pack),2,2.99,2019-06-21 13:33:00,492 Elm St, Seattle,WA,98101 +215090,Bose SoundSport Headphones,1,99.99,2019-06-23 21:00:00,55 Ridge St, Dallas,TX,75001 +215091,AAA Batteries (4-pack),1,2.99,2019-06-09 23:22:00,725 Washington St, Los Angeles,CA,90001 +215092,27in FHD Monitor,1,149.99,2019-06-17 00:38:00,45 Pine St, San Francisco,CA,94016 +215093,AAA Batteries (4-pack),1,2.99,2019-06-23 18:23:00,202 1st St, Portland,OR,97035 +215094,Wired Headphones,1,11.99,2019-06-09 17:28:00,829 13th St, Los Angeles,CA,90001 +215095,AA Batteries (4-pack),1,3.84,2019-06-07 15:14:00,459 Johnson St, San Francisco,CA,94016 +215096,Lightning Charging Cable,1,14.95,2019-06-21 12:44:00,633 Cherry St, San Francisco,CA,94016 +215097,Wired Headphones,1,11.99,2019-06-09 11:24:00,746 Church St, Portland,OR,97035 +215098,Lightning Charging Cable,1,14.95,2019-06-14 10:17:00,959 South St, Dallas,TX,75001 +215099,AAA Batteries (4-pack),2,2.99,2019-06-19 13:15:00,258 Chestnut St, Austin,TX,73301 +215100,Google Phone,1,600.0,2019-06-16 10:20:00,798 North St, New York City,NY,10001 +215100,Wired Headphones,1,11.99,2019-06-16 10:20:00,798 North St, New York City,NY,10001 +215101,AA Batteries (4-pack),1,3.84,2019-06-20 10:20:00,550 Dogwood St, New York City,NY,10001 +215102,ThinkPad Laptop,1,999.99,2019-06-01 11:05:00,879 4th St, San Francisco,CA,94016 +215103,Google Phone,1,600.0,2019-06-28 22:39:00,478 Jefferson St, San Francisco,CA,94016 +215104,Lightning Charging Cable,1,14.95,2019-06-21 19:58:00,58 Center St, Los Angeles,CA,90001 +215105,Google Phone,1,600.0,2019-06-18 18:08:00,646 Cherry St, Los Angeles,CA,90001 +215105,USB-C Charging Cable,1,11.95,2019-06-18 18:08:00,646 Cherry St, Los Angeles,CA,90001 +215106,Lightning Charging Cable,1,14.95,2019-06-28 11:02:00,901 10th St, Portland,OR,97035 +215107,Lightning Charging Cable,1,14.95,2019-06-08 15:59:00,150 Lakeview St, Portland,OR,97035 +215108,AA Batteries (4-pack),1,3.84,2019-06-28 20:30:00,865 Chestnut St, Seattle,WA,98101 +215109,AAA Batteries (4-pack),1,2.99,2019-06-03 12:46:00,31 Madison St, Austin,TX,73301 +215110,27in FHD Monitor,1,149.99,2019-06-04 10:43:00,927 Maple St, Portland,OR,97035 +215111,Wired Headphones,1,11.99,2019-06-01 10:51:00,865 Wilson St, New York City,NY,10001 +215112,Lightning Charging Cable,1,14.95,2019-06-07 18:30:00,846 4th St, New York City,NY,10001 +215113,AA Batteries (4-pack),1,3.84,2019-06-27 10:13:00,331 1st St, Los Angeles,CA,90001 +215114,27in 4K Gaming Monitor,1,389.99,2019-06-18 10:33:00,601 2nd St, New York City,NY,10001 +215115,Bose SoundSport Headphones,1,99.99,2019-06-05 22:38:00,198 Meadow St, Los Angeles,CA,90001 +215116,Bose SoundSport Headphones,1,99.99,2019-06-26 21:24:00,543 Hickory St, Boston,MA,02215 +215117,USB-C Charging Cable,1,11.95,2019-06-20 08:24:00,786 Wilson St, San Francisco,CA,94016 +215118,AAA Batteries (4-pack),2,2.99,2019-06-20 12:52:00,651 6th St, San Francisco,CA,94016 +215119,Google Phone,1,600.0,2019-06-01 22:44:00,617 Main St, Seattle,WA,98101 +215120,Bose SoundSport Headphones,1,99.99,2019-06-22 03:53:00,640 Madison St, San Francisco,CA,94016 +215121,Apple Airpods Headphones,1,150.0,2019-06-08 17:54:00,254 Spruce St, Austin,TX,73301 +215122,Apple Airpods Headphones,1,150.0,2019-06-20 20:05:00,107 11th St, San Francisco,CA,94016 +215123,Lightning Charging Cable,1,14.95,2019-06-25 12:23:00,702 River St, Los Angeles,CA,90001 +215124,27in 4K Gaming Monitor,1,389.99,2019-06-30 09:25:00,597 12th St, Dallas,TX,75001 +215125,ThinkPad Laptop,1,999.99,2019-06-03 12:23:00,384 4th St, San Francisco,CA,94016 +215126,Bose SoundSport Headphones,1,99.99,2019-06-17 17:40:00,189 River St, New York City,NY,10001 +215127,AA Batteries (4-pack),1,3.84,2019-06-26 09:39:00,731 Meadow St, Austin,TX,73301 +215127,Apple Airpods Headphones,1,150.0,2019-06-26 09:39:00,731 Meadow St, Austin,TX,73301 +215128,34in Ultrawide Monitor,1,379.99,2019-06-13 19:43:00,659 Lake St, New York City,NY,10001 +215129,AA Batteries (4-pack),1,3.84,2019-06-17 21:32:00,547 Chestnut St, Boston,MA,02215 +215130,Lightning Charging Cable,1,14.95,2019-06-30 09:15:00,21 Ridge St, San Francisco,CA,94016 +215131,Bose SoundSport Headphones,1,99.99,2019-06-13 20:32:00,863 Johnson St, Atlanta,GA,30301 +215132,Apple Airpods Headphones,1,150.0,2019-06-29 20:44:00,350 4th St, Atlanta,GA,30301 +215133,AA Batteries (4-pack),1,3.84,2019-06-20 12:57:00,547 South St, Atlanta,GA,30301 +215134,Macbook Pro Laptop,1,1700.0,2019-06-25 00:21:00,441 4th St, Atlanta,GA,30301 +215135,27in FHD Monitor,1,149.99,2019-06-19 14:54:00,705 Highland St, Los Angeles,CA,90001 +215136,AAA Batteries (4-pack),1,2.99,2019-06-03 00:22:00,627 River St, Seattle,WA,98101 +215137,AA Batteries (4-pack),1,3.84,2019-06-24 09:45:00,109 Lincoln St, San Francisco,CA,94016 +215138,LG Dryer,1,600.0,2019-06-22 15:58:00,390 Johnson St, Boston,MA,02215 +215139,Lightning Charging Cable,1,14.95,2019-06-05 13:57:00,193 5th St, New York City,NY,10001 +215140,AA Batteries (4-pack),1,3.84,2019-06-16 09:09:00,742 Pine St, Los Angeles,CA,90001 +215141,Lightning Charging Cable,1,14.95,2019-06-23 11:04:00,27 Washington St, San Francisco,CA,94016 +215142,LG Washing Machine,1,600.0,2019-06-16 13:35:00,207 13th St, San Francisco,CA,94016 +215143,Apple Airpods Headphones,1,150.0,2019-06-18 20:23:00,272 Hill St, San Francisco,CA,94016 +215144,USB-C Charging Cable,1,11.95,2019-06-29 09:07:00,750 Willow St, Los Angeles,CA,90001 +215145,AA Batteries (4-pack),1,3.84,2019-06-30 15:48:00,226 River St, Seattle,WA,98101 +215146,AA Batteries (4-pack),1,3.84,2019-06-08 18:27:00,361 1st St, Portland,ME,04101 +215147,Lightning Charging Cable,1,14.95,2019-06-07 15:26:00,613 Jefferson St, San Francisco,CA,94016 +215148,AAA Batteries (4-pack),1,2.99,2019-06-09 10:09:00,209 4th St, San Francisco,CA,94016 +215149,Flatscreen TV,1,300.0,2019-06-24 23:38:00,966 Johnson St, Boston,MA,02215 +215150,27in FHD Monitor,1,149.99,2019-06-15 20:22:00,720 Adams St, Portland,OR,97035 +215151,USB-C Charging Cable,1,11.95,2019-06-18 17:15:00,630 Forest St, New York City,NY,10001 +215152,USB-C Charging Cable,1,11.95,2019-06-26 15:29:00,102 Ridge St, San Francisco,CA,94016 +215153,AA Batteries (4-pack),1,3.84,2019-06-05 13:48:00,240 Forest St, Portland,OR,97035 +215154,20in Monitor,1,109.99,2019-06-28 21:54:00,8 Willow St, Dallas,TX,75001 +215155,Lightning Charging Cable,1,14.95,2019-06-07 14:01:00,693 Meadow St, Boston,MA,02215 +215156,Lightning Charging Cable,1,14.95,2019-06-09 14:45:00,184 Spruce St, Seattle,WA,98101 +215157,LG Washing Machine,1,600.0,2019-06-05 10:19:00,211 Lake St, Atlanta,GA,30301 +215158,Google Phone,1,600.0,2019-06-10 10:56:00,195 Adams St, Los Angeles,CA,90001 +215159,Apple Airpods Headphones,1,150.0,2019-06-18 08:04:00,203 Adams St, Los Angeles,CA,90001 +215160,Apple Airpods Headphones,1,150.0,2019-06-19 11:15:00,60 Madison St, San Francisco,CA,94016 +215161,AA Batteries (4-pack),1,3.84,2019-06-16 13:36:00,516 Spruce St, Portland,OR,97035 +215162,AAA Batteries (4-pack),1,2.99,2019-06-28 20:53:00,251 Chestnut St, Atlanta,GA,30301 +215163,Wired Headphones,1,11.99,2019-06-22 18:09:00,186 Chestnut St, Los Angeles,CA,90001 +215163,Apple Airpods Headphones,1,150.0,2019-06-22 18:09:00,186 Chestnut St, Los Angeles,CA,90001 +215164,AAA Batteries (4-pack),1,2.99,2019-06-26 18:50:00,538 Maple St, Los Angeles,CA,90001 +215165,Wired Headphones,1,11.99,2019-06-05 17:54:00,948 Spruce St, Atlanta,GA,30301 +215166,27in 4K Gaming Monitor,1,389.99,2019-06-08 10:30:00,481 South St, New York City,NY,10001 +215167,Flatscreen TV,1,300.0,2019-06-14 10:48:00,804 Chestnut St, Los Angeles,CA,90001 +215168,AA Batteries (4-pack),1,3.84,2019-06-06 09:31:00,964 8th St, Los Angeles,CA,90001 +215169,Bose SoundSport Headphones,1,99.99,2019-06-30 13:27:00,239 West St, Austin,TX,73301 +215170,Wired Headphones,1,11.99,2019-06-06 08:53:00,858 Wilson St, Austin,TX,73301 +215171,AAA Batteries (4-pack),5,2.99,2019-06-01 13:01:00,853 Hill St, Boston,MA,02215 +215172,AA Batteries (4-pack),1,3.84,2019-06-22 12:10:00,694 North St, Portland,OR,97035 +215173,Bose SoundSport Headphones,1,99.99,2019-06-16 18:41:00,534 Meadow St, Seattle,WA,98101 +215174,iPhone,1,700.0,2019-06-02 13:39:00,477 11th St, San Francisco,CA,94016 +215174,34in Ultrawide Monitor,1,379.99,2019-06-02 13:39:00,477 11th St, San Francisco,CA,94016 +215175,AAA Batteries (4-pack),1,2.99,2019-06-16 08:13:00,237 10th St, Los Angeles,CA,90001 +215176,AA Batteries (4-pack),1,3.84,2019-06-10 22:44:00,463 North St, Seattle,WA,98101 +215177,Vareebadd Phone,1,400.0,2019-06-11 16:17:00,379 Highland St, Dallas,TX,75001 +215178,Lightning Charging Cable,1,14.95,2019-06-06 13:35:00,767 Elm St, Atlanta,GA,30301 +215179,Apple Airpods Headphones,1,150.0,2019-06-23 18:55:00,411 Park St, San Francisco,CA,94016 +215180,USB-C Charging Cable,1,11.95,2019-06-29 21:21:00,818 Willow St, Los Angeles,CA,90001 +215181,Flatscreen TV,1,300.0,2019-06-11 19:36:00,414 Sunset St, New York City,NY,10001 +215182,Wired Headphones,1,11.99,2019-06-01 19:01:00,153 Main St, Los Angeles,CA,90001 +215183,27in FHD Monitor,1,149.99,2019-06-24 18:38:00,204 Elm St, Los Angeles,CA,90001 +215184,Macbook Pro Laptop,1,1700.0,2019-06-21 17:16:00,17 Dogwood St, Austin,TX,73301 +215185,USB-C Charging Cable,2,11.95,2019-06-17 10:42:00,796 Pine St, San Francisco,CA,94016 +215186,USB-C Charging Cable,1,11.95,2019-06-25 18:08:00,743 Ridge St, Los Angeles,CA,90001 +215186,Google Phone,1,600.0,2019-06-25 18:08:00,743 Ridge St, Los Angeles,CA,90001 +215187,Flatscreen TV,1,300.0,2019-06-15 23:09:00,476 Hill St, San Francisco,CA,94016 +215188,20in Monitor,1,109.99,2019-06-15 23:03:00,243 Church St, Los Angeles,CA,90001 +215189,Wired Headphones,1,11.99,2019-06-03 16:26:00,631 Lincoln St, Portland,OR,97035 +215190,Bose SoundSport Headphones,1,99.99,2019-06-23 18:22:00,486 North St, Austin,TX,73301 +215191,Lightning Charging Cable,1,14.95,2019-06-11 12:13:00,491 Sunset St, New York City,NY,10001 +215192,AAA Batteries (4-pack),5,2.99,2019-06-19 22:55:00,840 10th St, Boston,MA,02215 +215193,AAA Batteries (4-pack),1,2.99,2019-06-22 22:41:00,314 Walnut St, San Francisco,CA,94016 +215194,Google Phone,1,600.0,2019-06-05 13:23:00,946 Walnut St, San Francisco,CA,94016 +215194,Wired Headphones,2,11.99,2019-06-05 13:23:00,946 Walnut St, San Francisco,CA,94016 +215195,AA Batteries (4-pack),1,3.84,2019-06-22 01:56:00,315 Sunset St, New York City,NY,10001 +215196,AAA Batteries (4-pack),1,2.99,2019-06-21 19:18:00,357 1st St, Boston,MA,02215 +215197,Bose SoundSport Headphones,1,99.99,2019-06-19 12:41:00,498 Sunset St, Austin,TX,73301 +215198,iPhone,1,700.0,2019-06-12 15:09:00,119 Sunset St, San Francisco,CA,94016 +215199,AA Batteries (4-pack),1,3.84,2019-06-18 11:24:00,407 6th St, Boston,MA,02215 +215200,Apple Airpods Headphones,1,150.0,2019-06-21 11:08:00,527 8th St, Los Angeles,CA,90001 +215201,34in Ultrawide Monitor,1,379.99,2019-06-26 22:04:00,380 West St, San Francisco,CA,94016 +215202,AA Batteries (4-pack),1,3.84,2019-06-09 13:34:00,561 Center St, New York City,NY,10001 +215203,Wired Headphones,1,11.99,2019-06-09 18:59:00,428 Lakeview St, Dallas,TX,75001 +215204,AA Batteries (4-pack),2,3.84,2019-06-20 15:19:00,261 Lincoln St, Los Angeles,CA,90001 +215205,27in FHD Monitor,1,149.99,2019-06-15 14:28:00,2 14th St, New York City,NY,10001 +215206,USB-C Charging Cable,1,11.95,2019-06-13 01:54:00,633 Lakeview St, San Francisco,CA,94016 +215207,Apple Airpods Headphones,1,150.0,2019-06-01 15:30:00,959 8th St, San Francisco,CA,94016 +215208,AAA Batteries (4-pack),1,2.99,2019-06-24 01:25:00,645 Spruce St, New York City,NY,10001 +215209,AAA Batteries (4-pack),1,2.99,2019-06-14 09:32:00,243 Cedar St, San Francisco,CA,94016 +215210,Apple Airpods Headphones,1,150.0,2019-06-03 17:11:00,307 Madison St, Dallas,TX,75001 +215211,Lightning Charging Cable,1,14.95,2019-06-07 19:11:00,622 Main St, New York City,NY,10001 +215212,AAA Batteries (4-pack),1,2.99,2019-06-24 22:17:00,238 Highland St, Boston,MA,02215 +215213,USB-C Charging Cable,1,11.95,2019-06-02 11:58:00,302 Meadow St, Seattle,WA,98101 +215214,AAA Batteries (4-pack),1,2.99,2019-06-02 09:11:00,928 5th St, San Francisco,CA,94016 +215215,27in 4K Gaming Monitor,1,389.99,2019-06-03 19:39:00,355 Elm St, Atlanta,GA,30301 +215216,USB-C Charging Cable,1,11.95,2019-06-26 11:07:00,335 Johnson St, Austin,TX,73301 +215217,Lightning Charging Cable,1,14.95,2019-06-04 21:21:00,977 North St, Atlanta,GA,30301 +215218,AA Batteries (4-pack),1,3.84,2019-06-02 15:36:00,129 Adams St, San Francisco,CA,94016 +215219,Bose SoundSport Headphones,1,99.99,2019-06-16 07:24:00,420 Wilson St, New York City,NY,10001 +215220,AA Batteries (4-pack),1,3.84,2019-06-13 10:03:00,99 Maple St, New York City,NY,10001 +215221,AA Batteries (4-pack),1,3.84,2019-06-14 08:36:00,250 Ridge St, Boston,MA,02215 +215222,Lightning Charging Cable,1,14.95,2019-06-04 11:30:00,301 Dogwood St, Portland,OR,97035 +215223,AAA Batteries (4-pack),1,2.99,2019-06-17 18:04:00,113 9th St, Boston,MA,02215 +215224,AA Batteries (4-pack),1,3.84,2019-06-24 17:06:00,743 1st St, Seattle,WA,98101 +215225,Bose SoundSport Headphones,1,99.99,2019-06-13 20:10:00,77 12th St, Atlanta,GA,30301 +215226,AAA Batteries (4-pack),1,2.99,2019-06-22 15:33:00,954 Elm St, New York City,NY,10001 +215227,Lightning Charging Cable,1,14.95,2019-06-01 19:20:00,577 9th St, Atlanta,GA,30301 +215228,AAA Batteries (4-pack),1,2.99,2019-06-16 01:42:00,620 Meadow St, Los Angeles,CA,90001 +215229,27in FHD Monitor,1,149.99,2019-06-04 20:16:00,911 Pine St, Boston,MA,02215 +215230,27in FHD Monitor,1,149.99,2019-06-01 16:48:00,416 Johnson St, Boston,MA,02215 +215231,Apple Airpods Headphones,1,150.0,2019-06-11 12:57:00,935 North St, Atlanta,GA,30301 +215232,27in FHD Monitor,1,149.99,2019-06-26 16:49:00,451 Washington St, New York City,NY,10001 +215233,AAA Batteries (4-pack),1,2.99,2019-06-17 20:39:00,728 South St, New York City,NY,10001 +215234,Bose SoundSport Headphones,1,99.99,2019-06-08 16:18:00,605 11th St, San Francisco,CA,94016 +215235,Bose SoundSport Headphones,1,99.99,2019-06-13 19:57:00,596 8th St, Dallas,TX,75001 +215236,34in Ultrawide Monitor,1,379.99,2019-06-08 10:51:00,700 1st St, Seattle,WA,98101 +215237,Apple Airpods Headphones,1,150.0,2019-06-02 22:18:00,620 River St, Portland,OR,97035 +215238,Lightning Charging Cable,1,14.95,2019-06-13 21:43:00,440 Ridge St, Portland,OR,97035 +215239,AA Batteries (4-pack),1,3.84,2019-06-15 20:55:00,589 Forest St, Atlanta,GA,30301 +215240,AAA Batteries (4-pack),1,2.99,2019-06-19 14:32:00,381 Main St, New York City,NY,10001 +215241,27in 4K Gaming Monitor,1,389.99,2019-06-03 19:43:00,702 Dogwood St, Dallas,TX,75001 +215242,Flatscreen TV,1,300.0,2019-06-20 09:49:00,343 4th St, Seattle,WA,98101 +215243,Bose SoundSport Headphones,1,99.99,2019-06-10 16:29:00,48 Washington St, Los Angeles,CA,90001 +215244,AA Batteries (4-pack),1,3.84,2019-06-12 21:35:00,432 Center St, San Francisco,CA,94016 +215245,Lightning Charging Cable,1,14.95,2019-06-17 18:51:00,534 West St, New York City,NY,10001 +215246,Apple Airpods Headphones,1,150.0,2019-06-14 21:10:00,673 Spruce St, Atlanta,GA,30301 +215247,AAA Batteries (4-pack),1,2.99,2019-06-20 18:57:00,362 Johnson St, Boston,MA,02215 +215248,USB-C Charging Cable,1,11.95,2019-06-12 21:44:00,752 Jackson St, New York City,NY,10001 +215249,AA Batteries (4-pack),2,3.84,2019-06-20 08:43:00,664 2nd St, New York City,NY,10001 +215250,Bose SoundSport Headphones,1,99.99,2019-06-26 12:20:00,571 River St, Seattle,WA,98101 +215251,USB-C Charging Cable,1,11.95,2019-06-26 10:34:00,821 Madison St, San Francisco,CA,94016 +215252,USB-C Charging Cable,1,11.95,2019-06-24 16:29:00,880 North St, Los Angeles,CA,90001 +215253,ThinkPad Laptop,1,999.99,2019-06-13 11:39:00,963 7th St, San Francisco,CA,94016 +215254,AA Batteries (4-pack),1,3.84,2019-06-15 16:20:00,594 Spruce St, Los Angeles,CA,90001 +215255,Apple Airpods Headphones,1,150.0,2019-06-28 15:31:00,300 Lincoln St, Los Angeles,CA,90001 +215256,AA Batteries (4-pack),1,3.84,2019-06-16 15:24:00,914 Lake St, Dallas,TX,75001 +215257,ThinkPad Laptop,1,999.99,2019-06-15 22:53:00,924 9th St, Los Angeles,CA,90001 +215258,Google Phone,1,600.0,2019-06-21 21:20:00,345 Main St, Atlanta,GA,30301 +215259,ThinkPad Laptop,1,999.99,2019-06-30 22:49:00,270 6th St, Austin,TX,73301 +215260,AAA Batteries (4-pack),1,2.99,2019-06-13 20:18:00,588 Hill St, San Francisco,CA,94016 +215261,AAA Batteries (4-pack),1,2.99,2019-06-12 15:33:00,149 Center St, San Francisco,CA,94016 +215262,34in Ultrawide Monitor,1,379.99,2019-06-09 05:04:00,315 Maple St, San Francisco,CA,94016 +215263,ThinkPad Laptop,1,999.99,2019-06-22 17:53:00,284 North St, Boston,MA,02215 +215264,AA Batteries (4-pack),2,3.84,2019-06-14 22:35:00,615 Wilson St, Los Angeles,CA,90001 +215265,iPhone,1,700.0,2019-06-30 11:47:00,416 Willow St, Boston,MA,02215 +215266,AA Batteries (4-pack),1,3.84,2019-06-03 18:47:00,982 12th St, New York City,NY,10001 +215267,AA Batteries (4-pack),1,3.84,2019-06-20 21:33:00,558 Washington St, Atlanta,GA,30301 +215268,Apple Airpods Headphones,1,150.0,2019-06-02 14:39:00,91 1st St, Los Angeles,CA,90001 +215269,Bose SoundSport Headphones,1,99.99,2019-06-23 22:23:00,131 2nd St, Dallas,TX,75001 +215270,Bose SoundSport Headphones,1,99.99,2019-06-18 11:28:00,735 North St, San Francisco,CA,94016 +215271,AA Batteries (4-pack),2,3.84,2019-06-14 09:50:00,391 Meadow St, New York City,NY,10001 +215272,Macbook Pro Laptop,1,1700.0,2019-06-25 22:01:00,155 Sunset St, Los Angeles,CA,90001 +215273,Wired Headphones,1,11.99,2019-06-17 12:12:00,143 10th St, San Francisco,CA,94016 +215274,Macbook Pro Laptop,1,1700.0,2019-06-12 09:09:00,375 1st St, Austin,TX,73301 +215275,27in FHD Monitor,1,149.99,2019-06-08 12:20:00,34 Cedar St, San Francisco,CA,94016 +215276,iPhone,1,700.0,2019-06-12 12:19:00,339 Dogwood St, San Francisco,CA,94016 +215276,Lightning Charging Cable,1,14.95,2019-06-12 12:19:00,339 Dogwood St, San Francisco,CA,94016 +215277,USB-C Charging Cable,1,11.95,2019-06-03 16:16:00,439 Walnut St, Portland,OR,97035 +215278,Lightning Charging Cable,2,14.95,2019-06-06 19:44:00,942 Main St, New York City,NY,10001 +215279,iPhone,1,700.0,2019-06-23 14:46:00,14 Johnson St, San Francisco,CA,94016 +215279,Lightning Charging Cable,1,14.95,2019-06-23 14:46:00,14 Johnson St, San Francisco,CA,94016 +215280,Wired Headphones,2,11.99,2019-06-04 12:13:00,911 1st St, Portland,ME,04101 +215281,AA Batteries (4-pack),1,3.84,2019-06-11 06:23:00,119 2nd St, Los Angeles,CA,90001 +215282,Google Phone,1,600.0,2019-06-14 00:43:00,234 Main St, Seattle,WA,98101 +215282,Wired Headphones,1,11.99,2019-06-14 00:43:00,234 Main St, Seattle,WA,98101 +215283,Apple Airpods Headphones,1,150.0,2019-06-06 19:13:00,254 Cedar St, Boston,MA,02215 +215284,AA Batteries (4-pack),1,3.84,2019-06-09 04:43:00,195 Cherry St, Dallas,TX,75001 +215285,Lightning Charging Cable,1,14.95,2019-06-29 12:58:00,615 Lake St, Los Angeles,CA,90001 +215286,iPhone,1,700.0,2019-06-11 14:37:00,435 Park St, New York City,NY,10001 +215287,Bose SoundSport Headphones,1,99.99,2019-06-25 12:31:00,291 2nd St, Seattle,WA,98101 +215288,Flatscreen TV,1,300.0,2019-06-27 09:53:00,367 Dogwood St, San Francisco,CA,94016 +215289,AA Batteries (4-pack),1,3.84,2019-06-02 17:28:00,752 Elm St, San Francisco,CA,94016 +215290,AAA Batteries (4-pack),1,2.99,2019-06-07 23:06:00,550 14th St, Portland,ME,04101 +215291,Flatscreen TV,1,300.0,2019-06-24 16:25:00,237 8th St, San Francisco,CA,94016 +215292,Flatscreen TV,1,300.0,2019-06-08 17:45:00,547 13th St, Boston,MA,02215 +215293,AA Batteries (4-pack),1,3.84,2019-06-13 09:35:00,979 Jackson St, Atlanta,GA,30301 +215294,AA Batteries (4-pack),2,3.84,2019-06-03 14:40:00,219 Dogwood St, Seattle,WA,98101 +215295,Bose SoundSport Headphones,1,99.99,2019-06-24 10:07:00,235 Lincoln St, Portland,OR,97035 +215296,AAA Batteries (4-pack),1,2.99,2019-06-24 21:37:00,674 9th St, Los Angeles,CA,90001 +215297,34in Ultrawide Monitor,1,379.99,2019-06-03 00:41:00,802 Sunset St, San Francisco,CA,94016 +215298,Apple Airpods Headphones,1,150.0,2019-06-08 19:30:00,707 Jackson St, Dallas,TX,75001 +215299,AAA Batteries (4-pack),1,2.99,2019-06-06 13:58:00,386 12th St, Portland,OR,97035 +215300,iPhone,1,700.0,2019-06-16 19:47:00,682 Meadow St, San Francisco,CA,94016 +215301,AA Batteries (4-pack),1,3.84,2019-06-04 07:17:00,752 Center St, Seattle,WA,98101 +215302,Wired Headphones,1,11.99,2019-06-21 15:11:00,106 Hickory St, San Francisco,CA,94016 +215303,Lightning Charging Cable,1,14.95,2019-06-27 18:19:00,528 Johnson St, San Francisco,CA,94016 +215304,Bose SoundSport Headphones,1,99.99,2019-06-23 08:38:00,296 Lake St, Dallas,TX,75001 +215305,Apple Airpods Headphones,1,150.0,2019-06-23 21:28:00,982 Dogwood St, Portland,OR,97035 +215306,USB-C Charging Cable,1,11.95,2019-06-11 22:38:00,130 South St, San Francisco,CA,94016 +215307,Lightning Charging Cable,1,14.95,2019-06-10 11:40:00,463 Walnut St, Seattle,WA,98101 +215308,Apple Airpods Headphones,1,150.0,2019-06-09 09:30:00,62 Cherry St, San Francisco,CA,94016 +215309,AA Batteries (4-pack),1,3.84,2019-06-23 10:24:00,317 Hill St, Los Angeles,CA,90001 +215310,AAA Batteries (4-pack),1,2.99,2019-06-23 19:56:00,900 Chestnut St, New York City,NY,10001 +215311,20in Monitor,1,109.99,2019-06-09 19:10:00,760 9th St, San Francisco,CA,94016 +215312,LG Dryer,1,600.0,2019-06-06 00:58:00,546 Meadow St, Portland,OR,97035 +215313,Wired Headphones,1,11.99,2019-06-08 16:30:00,927 Spruce St, Boston,MA,02215 +215314,Bose SoundSport Headphones,1,99.99,2019-06-21 15:31:00,748 Walnut St, San Francisco,CA,94016 +215315,AA Batteries (4-pack),1,3.84,2019-06-08 17:53:00,215 1st St, Seattle,WA,98101 +215316,AAA Batteries (4-pack),2,2.99,2019-06-10 16:29:00,570 1st St, New York City,NY,10001 +215317,Wired Headphones,2,11.99,2019-06-22 11:27:00,144 14th St, San Francisco,CA,94016 +215318,Wired Headphones,2,11.99,2019-06-29 19:45:00,859 Park St, Boston,MA,02215 +215319,Apple Airpods Headphones,1,150.0,2019-06-19 14:45:00,671 River St, Dallas,TX,75001 +215320,AAA Batteries (4-pack),1,2.99,2019-06-08 11:06:00,82 Maple St, Los Angeles,CA,90001 +215321,27in 4K Gaming Monitor,1,389.99,2019-06-09 11:39:00,317 Lakeview St, Seattle,WA,98101 +215322,27in FHD Monitor,1,149.99,2019-06-21 21:43:00,278 12th St, San Francisco,CA,94016 +215323,Wired Headphones,2,11.99,2019-06-14 11:07:00,948 Wilson St, Portland,OR,97035 +215324,Apple Airpods Headphones,1,150.0,2019-06-14 14:46:00,820 Jefferson St, Portland,OR,97035 +215325,Lightning Charging Cable,1,14.95,2019-06-30 14:48:00,475 Forest St, Seattle,WA,98101 +215326,AA Batteries (4-pack),1,3.84,2019-06-06 07:46:00,602 Hill St, Boston,MA,02215 +215327,Google Phone,1,600.0,2019-06-29 06:02:00,292 South St, Austin,TX,73301 +215327,Wired Headphones,1,11.99,2019-06-29 06:02:00,292 South St, Austin,TX,73301 +215328,34in Ultrawide Monitor,1,379.99,2019-06-02 03:42:00,67 Maple St, New York City,NY,10001 +215329,Wired Headphones,1,11.99,2019-06-22 13:25:00,982 13th St, New York City,NY,10001 +215330,LG Washing Machine,1,600.0,2019-06-04 21:45:00,792 Walnut St, Dallas,TX,75001 +215331,Lightning Charging Cable,1,14.95,2019-06-08 08:52:00,916 Chestnut St, Austin,TX,73301 +215332,Google Phone,1,600.0,2019-06-16 13:36:00,190 10th St, Boston,MA,02215 +215333,USB-C Charging Cable,1,11.95,2019-06-29 16:19:00,405 Lakeview St, Atlanta,GA,30301 +215334,Lightning Charging Cable,1,14.95,2019-06-25 11:12:00,48 6th St, Seattle,WA,98101 +215335,AAA Batteries (4-pack),1,2.99,2019-06-01 15:33:00,827 Center St, San Francisco,CA,94016 +215336,Vareebadd Phone,1,400.0,2019-06-21 18:01:00,408 Chestnut St, New York City,NY,10001 +215336,Bose SoundSport Headphones,1,99.99,2019-06-21 18:01:00,408 Chestnut St, New York City,NY,10001 +215337,AA Batteries (4-pack),2,3.84,2019-06-12 20:38:00,724 Elm St, San Francisco,CA,94016 +215338,Wired Headphones,1,11.99,2019-06-04 21:06:00,324 Elm St, Seattle,WA,98101 +215339,Apple Airpods Headphones,1,150.0,2019-06-14 00:20:00,887 Lakeview St, Seattle,WA,98101 +215340,USB-C Charging Cable,1,11.95,2019-06-16 22:47:00,900 Walnut St, New York City,NY,10001 +215341,USB-C Charging Cable,2,11.95,2019-06-25 16:05:00,712 13th St, Portland,OR,97035 +215342,34in Ultrawide Monitor,1,379.99,2019-06-17 10:57:00,324 Pine St, Los Angeles,CA,90001 +215343,Macbook Pro Laptop,1,1700.0,2019-06-02 18:57:00,60 10th St, Portland,OR,97035 +215344,20in Monitor,1,109.99,2019-06-19 07:39:00,212 Lake St, Los Angeles,CA,90001 +215345,Lightning Charging Cable,1,14.95,2019-06-28 20:09:00,694 11th St, New York City,NY,10001 +215346,Bose SoundSport Headphones,1,99.99,2019-06-04 23:55:00,122 Lake St, San Francisco,CA,94016 +215347,USB-C Charging Cable,1,11.95,2019-06-30 20:25:00,873 Madison St, San Francisco,CA,94016 +215348,AAA Batteries (4-pack),1,2.99,2019-06-06 20:57:00,81 Ridge St, Los Angeles,CA,90001 +215349,LG Dryer,1,600.0,2019-06-23 11:17:00,315 Lincoln St, San Francisco,CA,94016 +215350,AAA Batteries (4-pack),1,2.99,2019-06-10 13:08:00,16 Hill St, Seattle,WA,98101 +215351,27in 4K Gaming Monitor,1,389.99,2019-06-10 23:47:00,849 Dogwood St, Los Angeles,CA,90001 +215352,AA Batteries (4-pack),1,3.84,2019-06-01 17:10:00,384 14th St, Los Angeles,CA,90001 +215353,Bose SoundSport Headphones,1,99.99,2019-06-19 22:04:00,997 Johnson St, New York City,NY,10001 +215354,AA Batteries (4-pack),2,3.84,2019-06-13 15:51:00,555 13th St, Los Angeles,CA,90001 +215355,USB-C Charging Cable,1,11.95,2019-06-09 13:23:00,423 Madison St, New York City,NY,10001 +215356,20in Monitor,1,109.99,2019-06-19 20:13:00,804 13th St, Los Angeles,CA,90001 +215356,AA Batteries (4-pack),1,3.84,2019-06-19 20:13:00,804 13th St, Los Angeles,CA,90001 +215357,Wired Headphones,1,11.99,2019-06-14 16:10:00,632 8th St, Portland,OR,97035 +215358,USB-C Charging Cable,1,11.95,2019-06-12 15:03:00,973 Lake St, San Francisco,CA,94016 +215359,Lightning Charging Cable,1,14.95,2019-06-07 20:44:00,722 9th St, San Francisco,CA,94016 +215360,Google Phone,1,600.0,2019-06-06 21:44:00,416 Ridge St, Seattle,WA,98101 +215361,Wired Headphones,2,11.99,2019-06-05 20:23:00,400 Jefferson St, Dallas,TX,75001 +215362,27in FHD Monitor,1,149.99,2019-06-03 14:10:00,142 2nd St, Boston,MA,02215 +215363,Apple Airpods Headphones,1,150.0,2019-06-25 09:34:00,535 Highland St, Austin,TX,73301 +215364,Google Phone,1,600.0,2019-06-30 00:04:00,214 Church St, Portland,OR,97035 +215365,Apple Airpods Headphones,1,150.0,2019-06-04 20:41:00,424 Jefferson St, Portland,OR,97035 +215366,AAA Batteries (4-pack),1,2.99,2019-06-19 08:30:00,322 Lakeview St, Los Angeles,CA,90001 +215367,AA Batteries (4-pack),1,3.84,2019-06-14 20:14:00,139 4th St, Boston,MA,02215 +215368,Apple Airpods Headphones,1,150.0,2019-06-23 09:21:00,473 Main St, Dallas,TX,75001 +215369,Flatscreen TV,1,300.0,2019-06-13 02:05:00,901 Maple St, San Francisco,CA,94016 +215370,Wired Headphones,1,11.99,2019-06-24 14:36:00,2 North St, Los Angeles,CA,90001 +215371,AA Batteries (4-pack),1,3.84,2019-06-25 08:16:00,364 11th St, Los Angeles,CA,90001 +215372,AAA Batteries (4-pack),2,2.99,2019-06-15 00:41:00,296 12th St, San Francisco,CA,94016 +215373,AA Batteries (4-pack),1,3.84,2019-06-02 16:06:00,702 North St, Los Angeles,CA,90001 +215374,Lightning Charging Cable,1,14.95,2019-06-02 01:38:00,761 River St, Austin,TX,73301 +215375,AAA Batteries (4-pack),2,2.99,2019-06-21 14:27:00,912 13th St, Dallas,TX,75001 +215376,27in FHD Monitor,1,149.99,2019-06-08 12:47:00,746 Park St, San Francisco,CA,94016 +215377,AAA Batteries (4-pack),2,2.99,2019-06-02 21:26:00,73 Ridge St, San Francisco,CA,94016 +215378,34in Ultrawide Monitor,1,379.99,2019-06-21 15:00:00,291 4th St, Dallas,TX,75001 +215379,AAA Batteries (4-pack),3,2.99,2019-06-04 15:12:00,519 7th St, San Francisco,CA,94016 +215380,AAA Batteries (4-pack),2,2.99,2019-06-15 22:47:00,422 North St, Seattle,WA,98101 +215381,AAA Batteries (4-pack),1,2.99,2019-06-12 19:28:00,774 Adams St, Los Angeles,CA,90001 +215382,Lightning Charging Cable,1,14.95,2019-06-14 11:54:00,116 Washington St, Los Angeles,CA,90001 +215383,Lightning Charging Cable,1,14.95,2019-06-17 22:37:00,75 Willow St, Los Angeles,CA,90001 +215384,34in Ultrawide Monitor,1,379.99,2019-06-04 22:19:00,744 Highland St, Portland,ME,04101 +215385,USB-C Charging Cable,1,11.95,2019-06-21 21:45:00,618 Lake St, Portland,OR,97035 +215386,Bose SoundSport Headphones,1,99.99,2019-06-01 14:49:00,964 4th St, Los Angeles,CA,90001 +215387,AA Batteries (4-pack),1,3.84,2019-06-08 12:16:00,471 Hickory St, Los Angeles,CA,90001 +215388,ThinkPad Laptop,1,999.99,2019-06-12 05:08:00,59 Pine St, Atlanta,GA,30301 +215389,USB-C Charging Cable,1,11.95,2019-06-15 14:39:00,39 Johnson St, San Francisco,CA,94016 +215390,Wired Headphones,1,11.99,2019-06-04 00:45:00,236 Elm St, Portland,OR,97035 +215391,Apple Airpods Headphones,1,150.0,2019-06-03 12:10:00,500 Park St, San Francisco,CA,94016 +215392,USB-C Charging Cable,1,11.95,2019-06-03 12:57:00,465 Washington St, Seattle,WA,98101 +215393,AA Batteries (4-pack),1,3.84,2019-06-02 02:09:00,992 9th St, Portland,OR,97035 +215394,AA Batteries (4-pack),1,3.84,2019-06-05 13:38:00,478 Washington St, Portland,OR,97035 +215395,Bose SoundSport Headphones,1,99.99,2019-06-25 12:30:00,637 Hill St, Boston,MA,02215 +215396,Lightning Charging Cable,1,14.95,2019-06-01 14:05:00,792 5th St, New York City,NY,10001 +215397,USB-C Charging Cable,1,11.95,2019-06-24 11:56:00,323 Walnut St, Los Angeles,CA,90001 +215398,AA Batteries (4-pack),2,3.84,2019-06-26 12:07:00,109 Washington St, Los Angeles,CA,90001 +215399,Apple Airpods Headphones,1,150.0,2019-06-05 01:18:00,342 Cedar St, Portland,OR,97035 +215400,LG Washing Machine,1,600.0,2019-06-01 14:34:00,772 Walnut St, Los Angeles,CA,90001 +215401,Apple Airpods Headphones,1,150.0,2019-06-15 23:43:00,620 Main St, Boston,MA,02215 +215402,Flatscreen TV,1,300.0,2019-06-25 20:32:00,114 Johnson St, San Francisco,CA,94016 +215403,Flatscreen TV,1,300.0,2019-06-26 20:05:00,879 Lincoln St, Portland,OR,97035 +215404,AAA Batteries (4-pack),1,2.99,2019-06-04 00:59:00,157 Meadow St, San Francisco,CA,94016 +215405,27in 4K Gaming Monitor,1,389.99,2019-06-19 01:52:00,73 Spruce St, San Francisco,CA,94016 +215406,27in 4K Gaming Monitor,1,389.99,2019-06-22 14:47:00,412 10th St, Boston,MA,02215 +215407,USB-C Charging Cable,1,11.95,2019-06-11 20:50:00,555 Madison St, San Francisco,CA,94016 +215408,Flatscreen TV,1,300.0,2019-06-29 20:36:00,207 Hickory St, Los Angeles,CA,90001 +215409,Apple Airpods Headphones,1,150.0,2019-06-04 12:59:00,115 Pine St, San Francisco,CA,94016 +215410,27in 4K Gaming Monitor,1,389.99,2019-06-11 16:15:00,488 Johnson St, New York City,NY,10001 +215411,Macbook Pro Laptop,1,1700.0,2019-06-15 02:17:00,4 Lake St, Los Angeles,CA,90001 +215412,Wired Headphones,1,11.99,2019-06-23 18:38:00,42 8th St, San Francisco,CA,94016 +215413,27in FHD Monitor,1,149.99,2019-06-25 18:26:00,654 2nd St, Atlanta,GA,30301 +215414,20in Monitor,1,109.99,2019-06-28 16:23:00,15 Cherry St, San Francisco,CA,94016 +215415,AA Batteries (4-pack),1,3.84,2019-06-22 06:41:00,319 Cedar St, Seattle,WA,98101 +215416,Wired Headphones,1,11.99,2019-06-05 20:31:00,485 Sunset St, Boston,MA,02215 +215417,AA Batteries (4-pack),1,3.84,2019-06-22 10:59:00,211 Ridge St, Seattle,WA,98101 +215418,Bose SoundSport Headphones,1,99.99,2019-06-28 16:44:00,1 Ridge St, San Francisco,CA,94016 +215419,ThinkPad Laptop,1,999.99,2019-06-23 17:39:00,207 Johnson St, Boston,MA,02215 +215420,USB-C Charging Cable,1,11.95,2019-06-26 16:07:00,981 Wilson St, Seattle,WA,98101 +215421,Bose SoundSport Headphones,1,99.99,2019-06-24 22:26:00,91 Walnut St, San Francisco,CA,94016 +215422,Google Phone,1,600.0,2019-06-21 22:34:00,243 Jackson St, Los Angeles,CA,90001 +215423,AA Batteries (4-pack),1,3.84,2019-06-15 11:10:00,180 Jackson St, New York City,NY,10001 +215424,Wired Headphones,2,11.99,2019-06-13 16:52:00,521 Lake St, San Francisco,CA,94016 +215425,AAA Batteries (4-pack),1,2.99,2019-06-02 11:36:00,414 North St, San Francisco,CA,94016 +215426,USB-C Charging Cable,1,11.95,2019-06-10 09:02:00,50 11th St, New York City,NY,10001 +215427,Wired Headphones,1,11.99,2019-06-15 23:50:00,586 Jackson St, Los Angeles,CA,90001 +215428,27in 4K Gaming Monitor,1,389.99,2019-06-22 12:24:00,813 Center St, San Francisco,CA,94016 +215429,Wired Headphones,1,11.99,2019-06-09 11:05:00,113 River St, San Francisco,CA,94016 +215430,Wired Headphones,1,11.99,2019-06-04 22:17:00,530 Cherry St, Boston,MA,02215 +215431,Flatscreen TV,1,300.0,2019-06-22 23:32:00,424 14th St, San Francisco,CA,94016 +215432,Bose SoundSport Headphones,1,99.99,2019-06-09 17:40:00,759 Willow St, Atlanta,GA,30301 +215433,Macbook Pro Laptop,1,1700.0,2019-06-17 16:21:00,159 8th St, Portland,ME,04101 +215434,27in 4K Gaming Monitor,1,389.99,2019-06-07 10:40:00,842 West St, Boston,MA,02215 +215435,AA Batteries (4-pack),3,3.84,2019-06-17 16:58:00,86 Jefferson St, San Francisco,CA,94016 +215436,Wired Headphones,2,11.99,2019-06-06 21:52:00,744 Highland St, San Francisco,CA,94016 +215437,AA Batteries (4-pack),1,3.84,2019-06-12 19:59:00,94 Center St, Atlanta,GA,30301 +215438,AAA Batteries (4-pack),1,2.99,2019-06-10 10:51:00,944 11th St, Dallas,TX,75001 +215439,AAA Batteries (4-pack),1,2.99,2019-06-26 18:48:00,586 River St, Seattle,WA,98101 +215440,Lightning Charging Cable,1,14.95,2019-06-04 14:34:00,443 South St, Boston,MA,02215 +215441,Macbook Pro Laptop,1,1700.0,2019-06-02 19:41:00,667 Hill St, Los Angeles,CA,90001 +215442,Lightning Charging Cable,1,14.95,2019-06-15 10:00:00,909 Sunset St, San Francisco,CA,94016 +215443,Wired Headphones,1,11.99,2019-06-21 21:30:00,698 Hill St, Los Angeles,CA,90001 +215444,USB-C Charging Cable,1,11.95,2019-06-27 11:34:00,542 Hill St, San Francisco,CA,94016 +215445,Vareebadd Phone,1,400.0,2019-06-16 14:59:00,980 4th St, Dallas,TX,75001 +215446,34in Ultrawide Monitor,1,379.99,2019-06-15 18:59:00,477 Main St, Los Angeles,CA,90001 +215447,Apple Airpods Headphones,1,150.0,2019-06-11 11:50:00,567 5th St, Dallas,TX,75001 +215448,AA Batteries (4-pack),1,3.84,2019-06-24 22:16:00,187 Walnut St, Austin,TX,73301 +215449,Bose SoundSport Headphones,1,99.99,2019-06-10 15:14:00,937 4th St, San Francisco,CA,94016 +215450,AAA Batteries (4-pack),1,2.99,2019-06-11 12:20:00,640 Cedar St, Atlanta,GA,30301 +215451,Lightning Charging Cable,1,14.95,2019-06-06 12:29:00,634 2nd St, San Francisco,CA,94016 +215452,Bose SoundSport Headphones,1,99.99,2019-06-29 13:14:00,634 12th St, San Francisco,CA,94016 +215453,Apple Airpods Headphones,1,150.0,2019-06-05 19:40:00,710 Main St, San Francisco,CA,94016 +215454,Lightning Charging Cable,1,14.95,2019-06-02 11:45:00,356 Washington St, New York City,NY,10001 +215455,USB-C Charging Cable,1,11.95,2019-06-02 11:26:00,748 Elm St, Los Angeles,CA,90001 +215456,AA Batteries (4-pack),1,3.84,2019-06-12 17:35:00,332 Hill St, San Francisco,CA,94016 +215457,AAA Batteries (4-pack),1,2.99,2019-06-24 21:54:00,528 South St, Portland,OR,97035 +215458,AAA Batteries (4-pack),1,2.99,2019-06-24 17:20:00,994 13th St, Seattle,WA,98101 +215459,USB-C Charging Cable,1,11.95,2019-06-03 18:11:00,7 Washington St, Los Angeles,CA,90001 +215460,AA Batteries (4-pack),1,3.84,2019-06-13 10:47:00,365 Chestnut St, Los Angeles,CA,90001 +215461,AAA Batteries (4-pack),2,2.99,2019-06-06 11:44:00,979 5th St, Dallas,TX,75001 +215462,USB-C Charging Cable,1,11.95,2019-06-12 22:12:00,286 Pine St, San Francisco,CA,94016 +215463,AA Batteries (4-pack),1,3.84,2019-06-27 21:36:00,133 Wilson St, Boston,MA,02215 +215464,Lightning Charging Cable,1,14.95,2019-06-10 20:04:00,712 Johnson St, Austin,TX,73301 +215465,AA Batteries (4-pack),1,3.84,2019-06-14 20:48:00,794 Cedar St, Los Angeles,CA,90001 +215466,Lightning Charging Cable,1,14.95,2019-06-09 10:17:00,282 Center St, Portland,OR,97035 +215467,Apple Airpods Headphones,1,150.0,2019-06-20 17:26:00,962 Highland St, Seattle,WA,98101 +215468,AA Batteries (4-pack),1,3.84,2019-06-26 10:54:00,362 Washington St, Boston,MA,02215 +215469,AA Batteries (4-pack),3,3.84,2019-06-15 13:56:00,863 Park St, New York City,NY,10001 +215470,USB-C Charging Cable,1,11.95,2019-06-11 18:02:00,39 8th St, New York City,NY,10001 +215471,AA Batteries (4-pack),1,3.84,2019-06-22 17:32:00,989 Main St, New York City,NY,10001 +215472,USB-C Charging Cable,1,11.95,2019-06-21 14:06:00,859 Wilson St, New York City,NY,10001 +215473,Lightning Charging Cable,1,14.95,2019-06-15 14:20:00,38 Jefferson St, Seattle,WA,98101 +215474,USB-C Charging Cable,1,11.95,2019-06-08 17:42:00,22 Adams St, San Francisco,CA,94016 +215475,Lightning Charging Cable,1,14.95,2019-06-21 07:09:00,281 Cherry St, New York City,NY,10001 +215476,Apple Airpods Headphones,1,150.0,2019-06-13 09:26:00,122 Walnut St, San Francisco,CA,94016 +215477,USB-C Charging Cable,1,11.95,2019-06-21 10:47:00,407 Lake St, Dallas,TX,75001 +215478,AA Batteries (4-pack),1,3.84,2019-06-30 07:32:00,268 Park St, San Francisco,CA,94016 +215479,Flatscreen TV,1,300.0,2019-06-10 22:09:00,266 Lake St, Los Angeles,CA,90001 +215480,Macbook Pro Laptop,1,1700.0,2019-06-30 12:35:00,653 10th St, Seattle,WA,98101 +215481,iPhone,1,700.0,2019-06-02 12:11:00,672 Cherry St, Atlanta,GA,30301 +215482,Lightning Charging Cable,1,14.95,2019-06-10 20:17:00,209 North St, New York City,NY,10001 +215483,Lightning Charging Cable,1,14.95,2019-06-21 09:30:00,548 Highland St, Los Angeles,CA,90001 +215484,AAA Batteries (4-pack),2,2.99,2019-06-25 13:34:00,878 Lakeview St, Los Angeles,CA,90001 +215485,Bose SoundSport Headphones,1,99.99,2019-06-26 16:05:00,654 Johnson St, Los Angeles,CA,90001 +215486,Google Phone,1,600.0,2019-06-20 11:48:00,173 Maple St, Atlanta,GA,30301 +215487,Bose SoundSport Headphones,1,99.99,2019-06-30 18:49:00,674 Hill St, San Francisco,CA,94016 +215488,USB-C Charging Cable,1,11.95,2019-06-23 21:01:00,804 Lakeview St, Boston,MA,02215 +215489,USB-C Charging Cable,1,11.95,2019-06-24 17:18:00,120 8th St, Dallas,TX,75001 +215490,USB-C Charging Cable,1,11.95,2019-06-20 16:48:00,131 Lake St, Boston,MA,02215 +215491,34in Ultrawide Monitor,1,379.99,2019-06-25 15:23:00,980 Madison St, San Francisco,CA,94016 +215492,27in FHD Monitor,1,149.99,2019-06-01 14:51:00,687 Chestnut St, Atlanta,GA,30301 +215493,Lightning Charging Cable,1,14.95,2019-06-24 12:48:00,951 Hill St, Austin,TX,73301 +215494,27in 4K Gaming Monitor,1,389.99,2019-06-11 17:18:00,929 Cherry St, San Francisco,CA,94016 +215495,Wired Headphones,1,11.99,2019-06-05 05:07:00,640 Walnut St, Los Angeles,CA,90001 +215496,USB-C Charging Cable,1,11.95,2019-06-18 22:14:00,292 Cedar St, Atlanta,GA,30301 +215497,27in FHD Monitor,1,149.99,2019-06-15 16:06:00,173 Lake St, San Francisco,CA,94016 +215498,Wired Headphones,1,11.99,2019-06-10 17:00:00,423 Jefferson St, Dallas,TX,75001 +215499,27in FHD Monitor,1,149.99,2019-06-02 22:00:00,94 4th St, New York City,NY,10001 +215500,20in Monitor,1,109.99,2019-06-23 13:32:00,455 Church St, Austin,TX,73301 +215501,Apple Airpods Headphones,1,150.0,2019-06-01 19:41:00,222 Maple St, Dallas,TX,75001 +215502,Apple Airpods Headphones,1,150.0,2019-06-23 22:48:00,659 Adams St, New York City,NY,10001 +215503,AA Batteries (4-pack),1,3.84,2019-06-22 15:03:00,883 13th St, New York City,NY,10001 +215504,Macbook Pro Laptop,1,1700.0,2019-06-02 15:39:00,418 Meadow St, Seattle,WA,98101 +215505,34in Ultrawide Monitor,1,379.99,2019-06-19 08:04:00,948 Washington St, Los Angeles,CA,90001 +215506,USB-C Charging Cable,1,11.95,2019-06-22 15:43:00,765 4th St, Boston,MA,02215 +215507,Wired Headphones,1,11.99,2019-06-13 15:01:00,757 Cherry St, Seattle,WA,98101 +215508,Bose SoundSport Headphones,1,99.99,2019-06-01 21:41:00,296 2nd St, Austin,TX,73301 +215509,AA Batteries (4-pack),3,3.84,2019-06-21 17:29:00,131 5th St, Boston,MA,02215 +215510,Wired Headphones,1,11.99,2019-06-03 20:01:00,328 Elm St, Austin,TX,73301 +215511,Macbook Pro Laptop,1,1700.0,2019-06-23 18:57:00,901 Sunset St, San Francisco,CA,94016 +215512,AA Batteries (4-pack),1,3.84,2019-06-06 11:29:00,754 Walnut St, Dallas,TX,75001 +215513,AAA Batteries (4-pack),1,2.99,2019-06-12 10:34:00,168 Jefferson St, San Francisco,CA,94016 +215514,Lightning Charging Cable,1,14.95,2019-06-19 13:09:00,360 Ridge St, New York City,NY,10001 +215515,Lightning Charging Cable,1,14.95,2019-06-07 12:00:00,699 Walnut St, San Francisco,CA,94016 +215516,USB-C Charging Cable,1,11.95,2019-06-21 18:47:00,989 Ridge St, San Francisco,CA,94016 +215517,USB-C Charging Cable,1,11.95,2019-06-09 13:21:00,756 2nd St, Dallas,TX,75001 +215518,Lightning Charging Cable,1,14.95,2019-06-10 16:49:00,247 Madison St, Boston,MA,02215 +215519,Bose SoundSport Headphones,1,99.99,2019-06-14 12:19:00,56 11th St, Atlanta,GA,30301 +215520,AA Batteries (4-pack),1,3.84,2019-06-02 20:51:00,897 Dogwood St, San Francisco,CA,94016 +215521,Macbook Pro Laptop,1,1700.0,2019-06-19 15:56:00,231 Johnson St, San Francisco,CA,94016 +215522,USB-C Charging Cable,1,11.95,2019-06-23 13:30:00,422 Washington St, New York City,NY,10001 +215523,AA Batteries (4-pack),2,3.84,2019-06-02 22:27:00,106 13th St, San Francisco,CA,94016 +215524,AA Batteries (4-pack),1,3.84,2019-06-24 21:05:00,210 8th St, San Francisco,CA,94016 +215525,34in Ultrawide Monitor,1,379.99,2019-06-12 10:09:00,752 West St, New York City,NY,10001 +215526,Flatscreen TV,1,300.0,2019-06-30 23:47:00,598 9th St, Dallas,TX,75001 +215527,LG Dryer,1,600.0,2019-06-06 21:55:00,151 14th St, New York City,NY,10001 +215528,AAA Batteries (4-pack),1,2.99,2019-06-04 13:31:00,317 Jefferson St, Los Angeles,CA,90001 +215529,ThinkPad Laptop,1,999.99,2019-06-06 20:51:00,572 Dogwood St, Austin,TX,73301 +215530,AA Batteries (4-pack),1,3.84,2019-06-16 11:35:00,88 14th St, San Francisco,CA,94016 +215531,AAA Batteries (4-pack),3,2.99,2019-06-19 19:43:00,87 Lake St, Los Angeles,CA,90001 +215532,Apple Airpods Headphones,1,150.0,2019-06-29 16:36:00,469 Cedar St, San Francisco,CA,94016 +215533,USB-C Charging Cable,1,11.95,2019-06-06 23:02:00,723 Cedar St, New York City,NY,10001 +215534,AAA Batteries (4-pack),1,2.99,2019-06-29 15:25:00,171 13th St, New York City,NY,10001 +215535,Apple Airpods Headphones,1,150.0,2019-06-17 19:08:00,253 10th St, Atlanta,GA,30301 +215536,27in FHD Monitor,1,149.99,2019-06-01 12:11:00,993 9th St, Austin,TX,73301 +215537,USB-C Charging Cable,1,11.95,2019-06-03 14:40:00,311 Hickory St, Seattle,WA,98101 +215538,AA Batteries (4-pack),1,3.84,2019-06-13 11:41:00,690 14th St, New York City,NY,10001 +215539,AA Batteries (4-pack),2,3.84,2019-06-23 06:49:00,588 Ridge St, San Francisco,CA,94016 +215540,Bose SoundSport Headphones,1,99.99,2019-06-11 07:50:00,384 Lake St, San Francisco,CA,94016 +215541,AAA Batteries (4-pack),2,2.99,2019-06-22 20:20:00,645 Hickory St, Los Angeles,CA,90001 +215542,AA Batteries (4-pack),2,3.84,2019-06-16 07:51:00,594 4th St, New York City,NY,10001 +215543,Apple Airpods Headphones,1,150.0,2019-06-26 13:49:00,37 Cedar St, Boston,MA,02215 +215544,AA Batteries (4-pack),1,3.84,2019-06-14 17:33:00,995 Wilson St, Seattle,WA,98101 +215545,AAA Batteries (4-pack),1,2.99,2019-06-23 18:55:00,965 2nd St, San Francisco,CA,94016 +215546,34in Ultrawide Monitor,1,379.99,2019-06-06 21:37:00,385 5th St, New York City,NY,10001 +215547,USB-C Charging Cable,1,11.95,2019-06-15 15:26:00,508 Johnson St, San Francisco,CA,94016 +215548,AA Batteries (4-pack),1,3.84,2019-06-30 18:05:00,42 Adams St, Los Angeles,CA,90001 +215549,Bose SoundSport Headphones,1,99.99,2019-06-26 21:13:00,968 Main St, San Francisco,CA,94016 +215550,27in 4K Gaming Monitor,1,389.99,2019-06-20 19:17:00,599 Highland St, Los Angeles,CA,90001 +215551,iPhone,1,700.0,2019-06-03 20:25:00,728 West St, Los Angeles,CA,90001 +215551,Lightning Charging Cable,1,14.95,2019-06-03 20:25:00,728 West St, Los Angeles,CA,90001 +215552,Lightning Charging Cable,1,14.95,2019-06-15 11:18:00,362 Jackson St, Seattle,WA,98101 +215553,34in Ultrawide Monitor,1,379.99,2019-06-18 14:28:00,271 Washington St, New York City,NY,10001 +215554,27in FHD Monitor,1,149.99,2019-06-16 16:54:00,674 Wilson St, Los Angeles,CA,90001 +215555,27in 4K Gaming Monitor,1,389.99,2019-06-21 14:28:00,680 Madison St, New York City,NY,10001 +215556,USB-C Charging Cable,1,11.95,2019-06-12 20:10:00,724 Main St, Boston,MA,02215 +215557,Wired Headphones,1,11.99,2019-06-11 01:16:00,707 Ridge St, New York City,NY,10001 +215558,Lightning Charging Cable,1,14.95,2019-06-19 10:50:00,633 Pine St, New York City,NY,10001 +215559,34in Ultrawide Monitor,1,379.99,2019-06-02 12:41:00,92 Hill St, New York City,NY,10001 +215560,AAA Batteries (4-pack),1,2.99,2019-06-21 14:24:00,699 Cherry St, Los Angeles,CA,90001 +215561,AAA Batteries (4-pack),1,2.99,2019-06-27 09:02:00,514 14th St, Dallas,TX,75001 +215562,USB-C Charging Cable,1,11.95,2019-06-12 13:31:00,34 West St, Seattle,WA,98101 +215563,USB-C Charging Cable,1,11.95,2019-06-24 22:50:00,304 Adams St, New York City,NY,10001 +215564,AAA Batteries (4-pack),1,2.99,2019-06-05 21:47:00,910 Jackson St, New York City,NY,10001 +215565,AAA Batteries (4-pack),2,2.99,2019-06-24 13:29:00,546 8th St, San Francisco,CA,94016 +215566,Wired Headphones,1,11.99,2019-06-04 10:27:00,123 Highland St, New York City,NY,10001 +215567,LG Dryer,1,600.0,2019-06-20 17:08:00,597 7th St, San Francisco,CA,94016 +215568,USB-C Charging Cable,1,11.95,2019-06-23 19:33:00,859 Elm St, San Francisco,CA,94016 +215569,iPhone,1,700.0,2019-06-22 03:14:00,147 Highland St, Dallas,TX,75001 +215569,Apple Airpods Headphones,1,150.0,2019-06-22 03:14:00,147 Highland St, Dallas,TX,75001 +215570,Lightning Charging Cable,1,14.95,2019-06-26 16:50:00,777 Cherry St, New York City,NY,10001 +215571,Bose SoundSport Headphones,1,99.99,2019-06-25 20:20:00,325 Ridge St, San Francisco,CA,94016 +215572,AAA Batteries (4-pack),2,2.99,2019-06-01 23:42:00,381 13th St, Seattle,WA,98101 +215573,Apple Airpods Headphones,1,150.0,2019-06-05 09:51:00,172 Spruce St, Los Angeles,CA,90001 +215574,USB-C Charging Cable,1,11.95,2019-06-11 16:17:00,221 Lakeview St, New York City,NY,10001 +215575,AA Batteries (4-pack),1,3.84,2019-06-04 00:12:00,450 Jefferson St, Los Angeles,CA,90001 +215576,Wired Headphones,1,11.99,2019-06-07 13:38:00,769 Pine St, Seattle,WA,98101 +215577,Lightning Charging Cable,1,14.95,2019-06-24 10:03:00,400 Willow St, San Francisco,CA,94016 +215578,iPhone,1,700.0,2019-06-18 10:12:00,465 Cedar St, Dallas,TX,75001 +215579,Macbook Pro Laptop,1,1700.0,2019-06-11 07:52:00,234 Maple St, New York City,NY,10001 +215580,27in 4K Gaming Monitor,1,389.99,2019-06-03 17:49:00,643 Jefferson St, Atlanta,GA,30301 +215581,AAA Batteries (4-pack),1,2.99,2019-06-29 19:51:00,21 River St, New York City,NY,10001 +215582,iPhone,1,700.0,2019-06-30 11:47:00,622 Lake St, Austin,TX,73301 +215583,20in Monitor,1,109.99,2019-06-16 18:14:00,192 13th St, Los Angeles,CA,90001 +215584,Vareebadd Phone,1,400.0,2019-06-25 17:57:00,972 Johnson St, New York City,NY,10001 +215585,AAA Batteries (4-pack),1,2.99,2019-06-06 10:07:00,445 Wilson St, San Francisco,CA,94016 +215586,USB-C Charging Cable,1,11.95,2019-06-27 18:23:00,204 Cedar St, Portland,ME,04101 +215587,AAA Batteries (4-pack),1,2.99,2019-06-13 10:07:00,174 Dogwood St, Portland,OR,97035 +215588,27in FHD Monitor,1,149.99,2019-06-08 14:11:00,505 1st St, Boston,MA,02215 +215589,Lightning Charging Cable,1,14.95,2019-06-23 13:52:00,940 Spruce St, San Francisco,CA,94016 +215590,USB-C Charging Cable,1,11.95,2019-06-22 08:04:00,697 Washington St, New York City,NY,10001 +215591,Flatscreen TV,1,300.0,2019-06-26 13:52:00,347 Lake St, Los Angeles,CA,90001 +215592,Vareebadd Phone,1,400.0,2019-06-19 14:34:00,706 South St, San Francisco,CA,94016 +215592,Wired Headphones,1,11.99,2019-06-19 14:34:00,706 South St, San Francisco,CA,94016 +215593,Vareebadd Phone,1,400.0,2019-06-20 13:44:00,193 Elm St, Portland,OR,97035 +215593,USB-C Charging Cable,1,11.95,2019-06-20 13:44:00,193 Elm St, Portland,OR,97035 +215594,USB-C Charging Cable,1,11.95,2019-06-22 15:03:00,341 Jackson St, Seattle,WA,98101 +215595,Wired Headphones,1,11.99,2019-06-30 23:24:00,223 Lake St, New York City,NY,10001 +215596,27in 4K Gaming Monitor,1,389.99,2019-06-11 09:31:00,596 6th St, San Francisco,CA,94016 +215597,AAA Batteries (4-pack),2,2.99,2019-06-01 10:06:00,906 Washington St, Boston,MA,02215 +215598,Lightning Charging Cable,1,14.95,2019-06-10 09:17:00,529 Chestnut St, San Francisco,CA,94016 +215599,Wired Headphones,1,11.99,2019-06-05 13:45:00,384 14th St, Atlanta,GA,30301 +215600,Apple Airpods Headphones,1,150.0,2019-06-08 10:10:00,72 Elm St, San Francisco,CA,94016 +215601,Bose SoundSport Headphones,1,99.99,2019-06-13 16:09:00,557 6th St, New York City,NY,10001 +215602,Bose SoundSport Headphones,1,99.99,2019-06-04 15:29:00,168 2nd St, Los Angeles,CA,90001 +215603,27in FHD Monitor,1,149.99,2019-06-28 08:06:00,233 5th St, Austin,TX,73301 +215604,Apple Airpods Headphones,1,150.0,2019-06-24 16:48:00,988 Adams St, San Francisco,CA,94016 +215605,27in FHD Monitor,1,149.99,2019-06-09 01:28:00,679 Church St, Boston,MA,02215 +215606,Wired Headphones,1,11.99,2019-06-02 08:24:00,807 Cedar St, San Francisco,CA,94016 +215607,34in Ultrawide Monitor,1,379.99,2019-06-04 12:50:00,215 Johnson St, Los Angeles,CA,90001 +215608,AAA Batteries (4-pack),3,2.99,2019-06-14 12:39:00,704 Hill St, Austin,TX,73301 +215609,AA Batteries (4-pack),1,3.84,2019-06-27 17:04:00,3 Washington St, Austin,TX,73301 +215610,AAA Batteries (4-pack),2,2.99,2019-06-05 12:57:00,92 8th St, Portland,OR,97035 +215611,Google Phone,1,600.0,2019-06-19 07:28:00,120 6th St, Los Angeles,CA,90001 +215612,27in FHD Monitor,1,149.99,2019-06-24 20:46:00,64 Willow St, Los Angeles,CA,90001 +215613,Lightning Charging Cable,1,14.95,2019-06-19 18:22:00,583 1st St, Dallas,TX,75001 +215614,Lightning Charging Cable,1,14.95,2019-06-23 16:54:00,101 7th St, Los Angeles,CA,90001 +215615,USB-C Charging Cable,1,11.95,2019-06-05 17:36:00,653 Main St, New York City,NY,10001 +215616,USB-C Charging Cable,1,11.95,2019-06-21 06:47:00,771 2nd St, Los Angeles,CA,90001 +215617,AA Batteries (4-pack),1,3.84,2019-06-17 22:42:00,325 14th St, Portland,ME,04101 +215618,USB-C Charging Cable,1,11.95,2019-06-28 10:49:00,20 West St, San Francisco,CA,94016 +215619,USB-C Charging Cable,1,11.95,2019-06-10 19:00:00,631 Elm St, San Francisco,CA,94016 +215620,Lightning Charging Cable,2,14.95,2019-06-11 15:04:00,102 11th St, San Francisco,CA,94016 +215621,AAA Batteries (4-pack),1,2.99,2019-06-28 14:34:00,689 Adams St, New York City,NY,10001 +215622,USB-C Charging Cable,1,11.95,2019-06-25 11:33:00,440 Walnut St, Los Angeles,CA,90001 +215623,27in 4K Gaming Monitor,1,389.99,2019-06-21 17:27:00,978 Elm St, San Francisco,CA,94016 +215624,ThinkPad Laptop,1,999.99,2019-06-03 11:25:00,261 Maple St, New York City,NY,10001 +215625,iPhone,1,700.0,2019-06-24 12:07:00,513 Johnson St, Portland,ME,04101 +215626,Lightning Charging Cable,1,14.95,2019-06-24 11:26:00,363 8th St, San Francisco,CA,94016 +215627,USB-C Charging Cable,1,11.95,2019-06-13 21:34:00,521 Meadow St, San Francisco,CA,94016 +215628,Bose SoundSport Headphones,1,99.99,2019-06-14 20:23:00,551 7th St, Dallas,TX,75001 +215629,27in 4K Gaming Monitor,1,389.99,2019-06-18 19:17:00,567 13th St, San Francisco,CA,94016 +215630,Flatscreen TV,1,300.0,2019-06-05 11:37:00,858 Walnut St, Dallas,TX,75001 +215631,Google Phone,1,600.0,2019-06-30 18:35:00,767 Dogwood St, Atlanta,GA,30301 +215632,AA Batteries (4-pack),2,3.84,2019-06-09 12:23:00,667 Jackson St, Los Angeles,CA,90001 +215633,Apple Airpods Headphones,1,150.0,2019-06-04 15:09:00,597 Forest St, Dallas,TX,75001 +215634,Bose SoundSport Headphones,1,99.99,2019-06-24 15:52:00,412 Sunset St, San Francisco,CA,94016 +215635,34in Ultrawide Monitor,1,379.99,2019-06-14 13:51:00,521 Spruce St, Boston,MA,02215 +215636,Bose SoundSport Headphones,1,99.99,2019-06-25 17:54:00,228 4th St, Austin,TX,73301 +215637,USB-C Charging Cable,1,11.95,2019-06-22 23:37:00,909 13th St, San Francisco,CA,94016 +215638,USB-C Charging Cable,1,11.95,2019-06-24 20:05:00,379 9th St, Los Angeles,CA,90001 +215639,AA Batteries (4-pack),1,3.84,2019-06-05 15:28:00,186 Ridge St, San Francisco,CA,94016 +215640,Google Phone,1,600.0,2019-06-04 17:35:00,887 River St, San Francisco,CA,94016 +215640,USB-C Charging Cable,1,11.95,2019-06-04 17:35:00,887 River St, San Francisco,CA,94016 +215641,Wired Headphones,1,11.99,2019-06-23 19:43:00,659 Wilson St, Boston,MA,02215 +215642,USB-C Charging Cable,1,11.95,2019-06-05 15:35:00,579 Lincoln St, Boston,MA,02215 +215643,USB-C Charging Cable,1,11.95,2019-06-26 19:09:00,403 Center St, Boston,MA,02215 +215644,27in FHD Monitor,1,149.99,2019-06-23 10:56:00,810 Jefferson St, San Francisco,CA,94016 +215645,Bose SoundSport Headphones,1,99.99,2019-06-25 10:21:00,66 Sunset St, Los Angeles,CA,90001 +215646,AAA Batteries (4-pack),1,2.99,2019-06-06 21:50:00,943 Forest St, Seattle,WA,98101 +215647,USB-C Charging Cable,1,11.95,2019-06-25 17:34:00,56 South St, New York City,NY,10001 +215648,Bose SoundSport Headphones,1,99.99,2019-06-06 09:50:00,579 Highland St, Dallas,TX,75001 +215649,Wired Headphones,1,11.99,2019-06-05 10:34:00,894 7th St, Dallas,TX,75001 +215650,Flatscreen TV,1,300.0,2019-06-12 08:31:00,944 Jackson St, Portland,OR,97035 +215651,USB-C Charging Cable,1,11.95,2019-06-18 06:08:00,729 Johnson St, New York City,NY,10001 +215652,34in Ultrawide Monitor,1,379.99,2019-06-03 20:19:00,583 Hill St, Atlanta,GA,30301 +215653,USB-C Charging Cable,1,11.95,2019-06-18 21:27:00,425 Lake St, Los Angeles,CA,90001 +215653,20in Monitor,1,109.99,2019-06-18 21:27:00,425 Lake St, Los Angeles,CA,90001 +215654,Wired Headphones,2,11.99,2019-06-08 13:06:00,835 1st St, Boston,MA,02215 +215655,AA Batteries (4-pack),1,3.84,2019-06-27 08:14:00,866 Lincoln St, Boston,MA,02215 +215656,Bose SoundSport Headphones,1,99.99,2019-06-12 19:11:00,499 10th St, Los Angeles,CA,90001 +215657,27in 4K Gaming Monitor,1,389.99,2019-06-27 12:45:00,985 2nd St, Seattle,WA,98101 +215658,27in FHD Monitor,1,149.99,2019-06-26 14:12:00,263 1st St, Portland,OR,97035 +215659,Bose SoundSport Headphones,1,99.99,2019-06-06 10:45:00,142 12th St, Seattle,WA,98101 +215660,USB-C Charging Cable,1,11.95,2019-06-16 19:11:00,996 Dogwood St, Los Angeles,CA,90001 +215661,Wired Headphones,1,11.99,2019-06-22 18:19:00,360 West St, San Francisco,CA,94016 +215662,Lightning Charging Cable,2,14.95,2019-06-09 15:15:00,916 West St, New York City,NY,10001 +215663,Apple Airpods Headphones,1,150.0,2019-06-03 08:16:00,822 Madison St, San Francisco,CA,94016 +215664,34in Ultrawide Monitor,1,379.99,2019-06-18 19:09:00,362 14th St, Dallas,TX,75001 +215665,Apple Airpods Headphones,1,150.0,2019-06-05 17:03:00,240 Walnut St, Austin,TX,73301 +215666,27in FHD Monitor,1,149.99,2019-06-19 11:22:00,908 Elm St, New York City,NY,10001 +215667,Wired Headphones,4,11.99,2019-06-26 21:27:00,228 1st St, Los Angeles,CA,90001 +215668,Wired Headphones,1,11.99,2019-06-10 09:27:00,78 12th St, Atlanta,GA,30301 +215669,Apple Airpods Headphones,1,150.0,2019-06-08 19:20:00,668 7th St, Boston,MA,02215 +215670,Wired Headphones,1,11.99,2019-06-19 20:38:00,987 5th St, San Francisco,CA,94016 +215671,iPhone,1,700.0,2019-06-07 13:58:00,585 Forest St, New York City,NY,10001 +215672,Lightning Charging Cable,1,14.95,2019-06-09 18:41:00,585 Madison St, New York City,NY,10001 +215673,AAA Batteries (4-pack),1,2.99,2019-06-27 17:47:00,823 9th St, New York City,NY,10001 +215674,Wired Headphones,1,11.99,2019-06-27 05:19:00,947 Adams St, Los Angeles,CA,90001 +215675,34in Ultrawide Monitor,1,379.99,2019-06-10 19:24:00,702 4th St, Atlanta,GA,30301 +215676,AAA Batteries (4-pack),1,2.99,2019-06-14 14:11:00,707 Center St, Los Angeles,CA,90001 +215677,ThinkPad Laptop,1,999.99,2019-06-09 17:44:00,823 Johnson St, San Francisco,CA,94016 +215678,Lightning Charging Cable,1,14.95,2019-06-17 20:32:00,276 Spruce St, Dallas,TX,75001 +215679,USB-C Charging Cable,1,11.95,2019-06-28 15:24:00,111 9th St, Boston,MA,02215 +215680,Wired Headphones,1,11.99,2019-06-30 19:29:00,508 2nd St, Portland,OR,97035 +215681,Bose SoundSport Headphones,1,99.99,2019-06-03 17:24:00,754 Johnson St, Atlanta,GA,30301 +215682,20in Monitor,1,109.99,2019-06-20 13:18:00,245 6th St, Atlanta,GA,30301 +215683,Wired Headphones,1,11.99,2019-06-24 12:51:00,828 Willow St, San Francisco,CA,94016 +215684,USB-C Charging Cable,1,11.95,2019-06-11 20:48:00,753 Cedar St, San Francisco,CA,94016 +215685,Lightning Charging Cable,1,14.95,2019-06-29 22:32:00,747 9th St, New York City,NY,10001 +215686,AA Batteries (4-pack),2,3.84,2019-06-19 10:32:00,166 Lake St, San Francisco,CA,94016 +215687,AAA Batteries (4-pack),1,2.99,2019-06-08 08:31:00,837 1st St, Portland,OR,97035 +215688,Apple Airpods Headphones,1,150.0,2019-06-05 14:18:00,590 Hill St, Dallas,TX,75001 +215689,Google Phone,1,600.0,2019-06-03 13:09:00,836 Lincoln St, San Francisco,CA,94016 +215689,27in 4K Gaming Monitor,1,389.99,2019-06-03 13:09:00,836 Lincoln St, San Francisco,CA,94016 +215690,Bose SoundSport Headphones,1,99.99,2019-06-02 19:13:00,3 1st St, Atlanta,GA,30301 +215691,LG Dryer,1,600.0,2019-06-19 08:04:00,59 Maple St, Los Angeles,CA,90001 +215692,20in Monitor,1,109.99,2019-06-01 17:04:00,893 Lincoln St, San Francisco,CA,94016 +215693,Wired Headphones,1,11.99,2019-06-06 12:20:00,730 Church St, San Francisco,CA,94016 +215694,AAA Batteries (4-pack),1,2.99,2019-06-02 11:02:00,719 Highland St, Portland,OR,97035 +215695,AAA Batteries (4-pack),2,2.99,2019-06-04 22:29:00,740 Cherry St, New York City,NY,10001 +215696,Lightning Charging Cable,1,14.95,2019-06-20 17:16:00,947 10th St, San Francisco,CA,94016 +215697,LG Washing Machine,1,600.0,2019-06-17 12:02:00,753 Walnut St, Atlanta,GA,30301 +215698,USB-C Charging Cable,1,11.95,2019-06-02 09:21:00,203 Washington St, Atlanta,GA,30301 +215699,Bose SoundSport Headphones,1,99.99,2019-06-04 20:39:00,59 Meadow St, Austin,TX,73301 +215700,Apple Airpods Headphones,1,150.0,2019-06-15 20:24:00,973 14th St, Dallas,TX,75001 +215700,AA Batteries (4-pack),1,3.84,2019-06-15 20:24:00,973 14th St, Dallas,TX,75001 +215701,27in FHD Monitor,1,149.99,2019-06-17 07:33:00,178 Dogwood St, Boston,MA,02215 +215702,AAA Batteries (4-pack),1,2.99,2019-06-14 13:01:00,419 Hill St, Seattle,WA,98101 +215703,AA Batteries (4-pack),1,3.84,2019-06-04 10:45:00,497 Center St, New York City,NY,10001 +215704,USB-C Charging Cable,1,11.95,2019-06-15 15:44:00,489 South St, Portland,ME,04101 +215705,Lightning Charging Cable,1,14.95,2019-06-02 19:52:00,635 Wilson St, New York City,NY,10001 +215706,Lightning Charging Cable,1,14.95,2019-06-15 09:49:00,542 6th St, Atlanta,GA,30301 +215707,Lightning Charging Cable,1,14.95,2019-06-02 15:06:00,943 Main St, New York City,NY,10001 +215708,Vareebadd Phone,1,400.0,2019-06-10 18:44:00,654 Spruce St, Los Angeles,CA,90001 +215709,USB-C Charging Cable,1,11.95,2019-06-09 20:19:00,319 Chestnut St, Dallas,TX,75001 +215710,Google Phone,1,600.0,2019-06-17 13:25:00,528 12th St, San Francisco,CA,94016 +215710,USB-C Charging Cable,1,11.95,2019-06-17 13:25:00,528 12th St, San Francisco,CA,94016 +215710,Wired Headphones,1,11.99,2019-06-17 13:25:00,528 12th St, San Francisco,CA,94016 +215711,27in FHD Monitor,1,149.99,2019-06-25 10:05:00,734 11th St, Austin,TX,73301 +215711,AA Batteries (4-pack),1,3.84,2019-06-25 10:05:00,734 11th St, Austin,TX,73301 +215712,Lightning Charging Cable,1,14.95,2019-06-04 06:48:00,460 Johnson St, San Francisco,CA,94016 +215713,Google Phone,1,600.0,2019-06-22 00:09:00,585 5th St, Dallas,TX,75001 +215714,Bose SoundSport Headphones,1,99.99,2019-06-27 17:22:00,172 Hill St, San Francisco,CA,94016 +215715,AAA Batteries (4-pack),1,2.99,2019-06-30 15:59:00,421 Maple St, Boston,MA,02215 +215716,Lightning Charging Cable,1,14.95,2019-06-04 15:39:00,794 Forest St, Atlanta,GA,30301 +215717,AA Batteries (4-pack),1,3.84,2019-06-21 11:11:00,215 Sunset St, San Francisco,CA,94016 +215718,27in 4K Gaming Monitor,1,389.99,2019-06-21 18:51:00,179 Spruce St, Los Angeles,CA,90001 +215719,Macbook Pro Laptop,1,1700.0,2019-06-01 16:43:00,450 Highland St, Boston,MA,02215 +215720,Wired Headphones,1,11.99,2019-06-21 08:44:00,88 Center St, Atlanta,GA,30301 +215721,Apple Airpods Headphones,1,150.0,2019-06-04 16:22:00,800 Willow St, San Francisco,CA,94016 +215722,AAA Batteries (4-pack),2,2.99,2019-06-16 14:56:00,147 14th St, New York City,NY,10001 +215723,Flatscreen TV,1,300.0,2019-06-07 15:22:00,693 Forest St, New York City,NY,10001 +215724,Wired Headphones,1,11.99,2019-06-16 16:00:00,398 Center St, Austin,TX,73301 +215725,Wired Headphones,1,11.99,2019-06-15 19:39:00,153 Church St, Seattle,WA,98101 +215726,34in Ultrawide Monitor,1,379.99,2019-06-13 22:48:00,747 Meadow St, New York City,NY,10001 +215727,AA Batteries (4-pack),4,3.84,2019-06-14 15:07:00,404 Cherry St, Los Angeles,CA,90001 +215728,Apple Airpods Headphones,1,150.0,2019-06-08 15:53:00,96 7th St, Los Angeles,CA,90001 +215729,Apple Airpods Headphones,1,150.0,2019-06-20 13:22:00,163 Washington St, Los Angeles,CA,90001 +215730,Wired Headphones,1,11.99,2019-06-13 20:40:00,578 Hickory St, Boston,MA,02215 +215731,AAA Batteries (4-pack),1,2.99,2019-06-25 08:38:00,195 Jefferson St, Dallas,TX,75001 +215732,Apple Airpods Headphones,1,150.0,2019-06-02 16:07:00,859 14th St, Seattle,WA,98101 +215733,Flatscreen TV,1,300.0,2019-06-05 13:49:00,749 Maple St, San Francisco,CA,94016 +215734,Lightning Charging Cable,1,14.95,2019-06-02 12:54:00,288 Lakeview St, Austin,TX,73301 +215735,AA Batteries (4-pack),1,3.84,2019-06-24 09:43:00,604 Washington St, Austin,TX,73301 +215736,27in FHD Monitor,1,149.99,2019-06-09 10:17:00,601 Wilson St, San Francisco,CA,94016 +215737,USB-C Charging Cable,1,11.95,2019-06-24 11:32:00,537 Hill St, San Francisco,CA,94016 +215738,USB-C Charging Cable,1,11.95,2019-06-10 20:13:00,283 Center St, Los Angeles,CA,90001 +215739,27in FHD Monitor,1,149.99,2019-06-09 13:34:00,646 7th St, Atlanta,GA,30301 +215740,Wired Headphones,1,11.99,2019-06-19 19:48:00,565 10th St, Atlanta,GA,30301 +215741,Flatscreen TV,1,300.0,2019-06-03 21:06:00,791 Willow St, Los Angeles,CA,90001 +215742,Lightning Charging Cable,1,14.95,2019-06-05 21:49:00,159 Adams St, Los Angeles,CA,90001 +215743,USB-C Charging Cable,1,11.95,2019-06-11 08:01:00,635 14th St, Dallas,TX,75001 +215744,AAA Batteries (4-pack),2,2.99,2019-06-24 10:23:00,391 Main St, San Francisco,CA,94016 +215745,Apple Airpods Headphones,1,150.0,2019-06-07 10:36:00,31 Washington St, New York City,NY,10001 +215746,Google Phone,1,600.0,2019-06-16 06:29:00,818 Forest St, Los Angeles,CA,90001 +215747,AAA Batteries (4-pack),3,2.99,2019-06-30 21:24:00,988 Maple St, Dallas,TX,75001 +215748,Bose SoundSport Headphones,1,99.99,2019-06-26 01:20:00,46 Maple St, San Francisco,CA,94016 +215749,27in 4K Gaming Monitor,1,389.99,2019-06-17 21:21:00,439 River St, Los Angeles,CA,90001 +215750,Apple Airpods Headphones,1,150.0,2019-06-18 22:20:00,870 Dogwood St, Seattle,WA,98101 +215751,Macbook Pro Laptop,1,1700.0,2019-06-02 00:03:00,604 South St, Seattle,WA,98101 +215752,Flatscreen TV,1,300.0,2019-06-25 11:37:00,525 Hickory St, Los Angeles,CA,90001 +215753,AAA Batteries (4-pack),1,2.99,2019-06-26 13:37:00,524 Jefferson St, San Francisco,CA,94016 +215754,USB-C Charging Cable,1,11.95,2019-06-27 19:26:00,676 Elm St, San Francisco,CA,94016 +215755,AA Batteries (4-pack),2,3.84,2019-06-16 18:50:00,860 River St, Atlanta,GA,30301 +215756,27in FHD Monitor,1,149.99,2019-06-15 00:36:00,629 12th St, New York City,NY,10001 +215757,34in Ultrawide Monitor,1,379.99,2019-06-22 17:00:00,878 Willow St, Los Angeles,CA,90001 +215758,Flatscreen TV,1,300.0,2019-06-30 21:34:00,808 14th St, New York City,NY,10001 +215759,Macbook Pro Laptop,1,1700.0,2019-06-28 22:08:00,753 Adams St, Dallas,TX,75001 +215760,AAA Batteries (4-pack),2,2.99,2019-06-13 08:04:00,162 Jefferson St, San Francisco,CA,94016 +215761,AAA Batteries (4-pack),1,2.99,2019-06-07 21:15:00,71 12th St, San Francisco,CA,94016 +215762,ThinkPad Laptop,1,999.99,2019-06-07 23:41:00,272 Wilson St, Atlanta,GA,30301 +215763,Apple Airpods Headphones,1,150.0,2019-06-20 19:08:00,677 Lake St, Los Angeles,CA,90001 +215764,27in FHD Monitor,1,149.99,2019-06-16 16:06:00,492 Park St, Atlanta,GA,30301 +215765,AAA Batteries (4-pack),1,2.99,2019-06-22 17:31:00,256 9th St, Los Angeles,CA,90001 +215766,Lightning Charging Cable,1,14.95,2019-06-25 15:13:00,36 Lake St, Austin,TX,73301 +215767,ThinkPad Laptop,1,999.99,2019-06-04 18:40:00,551 12th St, Austin,TX,73301 +215768,20in Monitor,1,109.99,2019-06-25 11:51:00,623 12th St, San Francisco,CA,94016 +215769,Apple Airpods Headphones,1,150.0,2019-06-21 12:00:00,572 Forest St, Boston,MA,02215 +215770,Apple Airpods Headphones,1,150.0,2019-06-27 00:58:00,106 Johnson St, San Francisco,CA,94016 +215771,Bose SoundSport Headphones,1,99.99,2019-06-29 13:12:00,542 South St, Los Angeles,CA,90001 +215772,Bose SoundSport Headphones,1,99.99,2019-06-21 12:11:00,649 Park St, Austin,TX,73301 +215773,Wired Headphones,1,11.99,2019-06-22 22:28:00,477 Dogwood St, Seattle,WA,98101 +215774,Flatscreen TV,1,300.0,2019-06-02 21:49:00,142 Main St, Dallas,TX,75001 +215775,27in 4K Gaming Monitor,1,389.99,2019-06-28 06:40:00,948 12th St, San Francisco,CA,94016 +215776,Wired Headphones,1,11.99,2019-06-25 14:48:00,574 Ridge St, Seattle,WA,98101 +215777,Wired Headphones,1,11.99,2019-06-30 21:55:00,795 Highland St, New York City,NY,10001 +215778,USB-C Charging Cable,1,11.95,2019-06-21 18:51:00,477 Hickory St, Portland,OR,97035 +215779,AA Batteries (4-pack),1,3.84,2019-06-12 13:07:00,139 Adams St, Los Angeles,CA,90001 +215780,Flatscreen TV,1,300.0,2019-06-30 00:41:00,525 South St, Atlanta,GA,30301 +215781,Wired Headphones,1,11.99,2019-06-07 13:39:00,429 Park St, San Francisco,CA,94016 +215782,Wired Headphones,1,11.99,2019-06-22 09:06:00,507 South St, Dallas,TX,75001 +215783,20in Monitor,1,109.99,2019-06-17 19:21:00,521 4th St, San Francisco,CA,94016 +215784,Apple Airpods Headphones,1,150.0,2019-06-27 07:00:00,525 4th St, San Francisco,CA,94016 +215785,Lightning Charging Cable,1,14.95,2019-06-25 14:53:00,547 Lincoln St, Los Angeles,CA,90001 +215786,iPhone,1,700.0,2019-06-06 22:38:00,870 Chestnut St, Los Angeles,CA,90001 +215787,AA Batteries (4-pack),2,3.84,2019-06-21 20:02:00,652 West St, San Francisco,CA,94016 +215788,AAA Batteries (4-pack),2,2.99,2019-06-23 15:01:00,438 4th St, Seattle,WA,98101 +215789,Flatscreen TV,1,300.0,2019-06-21 22:46:00,972 Main St, Seattle,WA,98101 +215790,Lightning Charging Cable,1,14.95,2019-06-24 11:56:00,61 1st St, Seattle,WA,98101 +215791,Lightning Charging Cable,2,14.95,2019-06-26 17:31:00,150 Cherry St, New York City,NY,10001 +215792,20in Monitor,1,109.99,2019-06-07 00:19:00,217 River St, San Francisco,CA,94016 +215793,Apple Airpods Headphones,1,150.0,2019-06-09 07:39:00,217 Spruce St, San Francisco,CA,94016 +215794,34in Ultrawide Monitor,1,379.99,2019-06-04 18:39:00,674 9th St, Los Angeles,CA,90001 +215795,Wired Headphones,1,11.99,2019-06-12 19:38:00,736 2nd St, San Francisco,CA,94016 +215796,Wired Headphones,2,11.99,2019-06-06 08:36:00,859 Wilson St, San Francisco,CA,94016 +215797,USB-C Charging Cable,1,11.95,2019-06-11 21:24:00,781 Johnson St, Los Angeles,CA,90001 +215798,Flatscreen TV,1,300.0,2019-06-14 15:14:00,566 Ridge St, San Francisco,CA,94016 +215799,Bose SoundSport Headphones,1,99.99,2019-06-12 00:54:00,568 Jackson St, San Francisco,CA,94016 +215800,Apple Airpods Headphones,1,150.0,2019-06-15 20:33:00,967 Highland St, Atlanta,GA,30301 +215801,Wired Headphones,1,11.99,2019-06-10 08:27:00,716 7th St, Seattle,WA,98101 +215802,Bose SoundSport Headphones,1,99.99,2019-06-13 21:05:00,451 Lake St, San Francisco,CA,94016 +215803,Bose SoundSport Headphones,1,99.99,2019-06-13 12:14:00,527 Spruce St, Boston,MA,02215 +215804,20in Monitor,1,109.99,2019-06-20 20:25:00,634 Hickory St, San Francisco,CA,94016 +215805,AA Batteries (4-pack),1,3.84,2019-06-23 23:30:00,157 Spruce St, Los Angeles,CA,90001 +215806,Vareebadd Phone,1,400.0,2019-06-12 15:17:00,262 Church St, San Francisco,CA,94016 +215807,iPhone,1,700.0,2019-06-22 17:03:00,934 10th St, Los Angeles,CA,90001 +215808,Bose SoundSport Headphones,1,99.99,2019-06-08 23:49:00,984 13th St, San Francisco,CA,94016 +215809,Apple Airpods Headphones,1,150.0,2019-06-05 21:59:00,884 Main St, Seattle,WA,98101 +215810,Bose SoundSport Headphones,1,99.99,2019-06-02 15:05:00,658 North St, San Francisco,CA,94016 +215811,Lightning Charging Cable,1,14.95,2019-06-04 16:29:00,398 Cherry St, Dallas,TX,75001 +215812,USB-C Charging Cable,1,11.95,2019-06-23 00:07:00,800 13th St, San Francisco,CA,94016 +215813,27in FHD Monitor,1,149.99,2019-06-25 22:24:00,674 North St, Austin,TX,73301 +215814,Apple Airpods Headphones,1,150.0,2019-06-08 15:11:00,537 Hill St, Portland,OR,97035 +215815,USB-C Charging Cable,1,11.95,2019-06-03 09:58:00,270 Center St, Boston,MA,02215 +215816,Google Phone,1,600.0,2019-06-26 17:33:00,921 Adams St, New York City,NY,10001 +215816,USB-C Charging Cable,1,11.95,2019-06-26 17:33:00,921 Adams St, New York City,NY,10001 +215817,Apple Airpods Headphones,1,150.0,2019-06-27 18:49:00,543 Ridge St, New York City,NY,10001 +215818,Apple Airpods Headphones,1,150.0,2019-06-07 01:03:00,606 Meadow St, San Francisco,CA,94016 +215819,27in FHD Monitor,1,149.99,2019-06-11 14:22:00,666 Dogwood St, Seattle,WA,98101 +215820,27in 4K Gaming Monitor,1,389.99,2019-06-08 00:10:00,274 12th St, Seattle,WA,98101 +215821,AA Batteries (4-pack),2,3.84,2019-06-07 19:31:00,35 Johnson St, Atlanta,GA,30301 +215822,Wired Headphones,1,11.99,2019-06-29 15:03:00,481 North St, Atlanta,GA,30301 +215823,Macbook Pro Laptop,1,1700.0,2019-06-08 14:23:00,965 Lake St, Boston,MA,02215 +215824,USB-C Charging Cable,1,11.95,2019-06-29 04:38:00,277 14th St, Boston,MA,02215 +215825,AA Batteries (4-pack),2,3.84,2019-06-26 12:25:00,715 Lincoln St, Boston,MA,02215 +215826,Google Phone,1,600.0,2019-06-05 03:53:00,946 Maple St, Dallas,TX,75001 +215827,34in Ultrawide Monitor,1,379.99,2019-06-30 19:09:00,143 10th St, Portland,OR,97035 +215828,27in 4K Gaming Monitor,1,389.99,2019-06-02 23:27:00,421 Johnson St, Boston,MA,02215 +215829,AA Batteries (4-pack),1,3.84,2019-06-02 19:28:00,289 4th St, San Francisco,CA,94016 +215830,AAA Batteries (4-pack),1,2.99,2019-06-06 09:31:00,487 Madison St, Atlanta,GA,30301 +215831,AA Batteries (4-pack),2,3.84,2019-06-03 14:39:00,276 Lincoln St, San Francisco,CA,94016 +215832,Flatscreen TV,1,300.0,2019-06-16 17:50:00,179 Maple St, San Francisco,CA,94016 +215833,34in Ultrawide Monitor,1,379.99,2019-06-15 16:06:00,822 6th St, San Francisco,CA,94016 +215834,Wired Headphones,1,11.99,2019-06-26 09:14:00,47 Forest St, Seattle,WA,98101 +215835,Lightning Charging Cable,1,14.95,2019-06-28 19:52:00,573 Lincoln St, Atlanta,GA,30301 +215836,Macbook Pro Laptop,1,1700.0,2019-06-08 18:44:00,70 Park St, Los Angeles,CA,90001 +215837,AA Batteries (4-pack),1,3.84,2019-06-26 20:35:00,831 12th St, San Francisco,CA,94016 +215838,AAA Batteries (4-pack),1,2.99,2019-06-19 20:06:00,899 Wilson St, San Francisco,CA,94016 +215839,Wired Headphones,2,11.99,2019-06-30 13:56:00,726 Cedar St, Boston,MA,02215 +215840,AA Batteries (4-pack),1,3.84,2019-06-05 07:53:00,742 Ridge St, Boston,MA,02215 +215841,Lightning Charging Cable,1,14.95,2019-06-25 18:31:00,599 Walnut St, Portland,OR,97035 +215842,Bose SoundSport Headphones,1,99.99,2019-06-25 11:48:00,268 9th St, Los Angeles,CA,90001 +215843,Vareebadd Phone,1,400.0,2019-06-28 09:26:00,774 4th St, New York City,NY,10001 +215843,Wired Headphones,1,11.99,2019-06-28 09:26:00,774 4th St, New York City,NY,10001 +215844,Flatscreen TV,1,300.0,2019-06-08 13:26:00,60 10th St, San Francisco,CA,94016 +215845,AA Batteries (4-pack),1,3.84,2019-06-29 06:13:00,492 Hill St, San Francisco,CA,94016 +215846,iPhone,1,700.0,2019-06-23 10:37:00,563 6th St, San Francisco,CA,94016 +215846,Lightning Charging Cable,1,14.95,2019-06-23 10:37:00,563 6th St, San Francisco,CA,94016 +215847,34in Ultrawide Monitor,1,379.99,2019-06-28 17:35:00,763 Dogwood St, Austin,TX,73301 +215848,USB-C Charging Cable,1,11.95,2019-06-18 19:17:00,696 West St, San Francisco,CA,94016 +215849,USB-C Charging Cable,1,11.95,2019-06-21 20:11:00,629 Spruce St, Dallas,TX,75001 +215850,Apple Airpods Headphones,1,150.0,2019-06-29 11:34:00,957 14th St, San Francisco,CA,94016 +215851,USB-C Charging Cable,1,11.95,2019-06-23 07:46:00,893 Madison St, San Francisco,CA,94016 +215852,Wired Headphones,1,11.99,2019-06-16 15:46:00,882 South St, New York City,NY,10001 +215853,Lightning Charging Cable,1,14.95,2019-06-06 16:37:00,19 10th St, Los Angeles,CA,90001 +215854,USB-C Charging Cable,2,11.95,2019-06-26 13:07:00,39 12th St, New York City,NY,10001 +215855,AAA Batteries (4-pack),1,2.99,2019-06-29 23:28:00,366 Main St, Atlanta,GA,30301 +215856,iPhone,1,700.0,2019-06-28 17:23:00,530 Meadow St, San Francisco,CA,94016 +215857,Wired Headphones,1,11.99,2019-06-29 16:03:00,356 9th St, Boston,MA,02215 +215858,Apple Airpods Headphones,1,150.0,2019-06-12 22:23:00,262 10th St, Los Angeles,CA,90001 +215859,Lightning Charging Cable,1,14.95,2019-06-30 11:38:00,694 Spruce St, Dallas,TX,75001 +215860,Lightning Charging Cable,1,14.95,2019-06-06 20:32:00,387 5th St, Austin,TX,73301 +215861,20in Monitor,1,109.99,2019-06-18 09:53:00,944 Hill St, Dallas,TX,75001 +215862,27in FHD Monitor,1,149.99,2019-06-12 13:31:00,204 Willow St, Los Angeles,CA,90001 +215863,20in Monitor,1,109.99,2019-06-05 19:51:00,154 Washington St, Los Angeles,CA,90001 +215864,27in FHD Monitor,1,149.99,2019-06-21 21:50:00,222 11th St, San Francisco,CA,94016 +215865,20in Monitor,1,109.99,2019-06-04 12:46:00,913 Main St, Boston,MA,02215 +215866,34in Ultrawide Monitor,1,379.99,2019-06-14 20:20:00,496 Park St, Boston,MA,02215 +215867,Bose SoundSport Headphones,1,99.99,2019-06-29 00:54:00,558 13th St, San Francisco,CA,94016 +215868,Bose SoundSport Headphones,1,99.99,2019-06-16 11:42:00,699 Lake St, Portland,ME,04101 +215869,Apple Airpods Headphones,1,150.0,2019-06-19 16:12:00,245 Lincoln St, New York City,NY,10001 +215870,Wired Headphones,1,11.99,2019-06-24 22:56:00,617 South St, San Francisco,CA,94016 +215871,USB-C Charging Cable,1,11.95,2019-06-08 22:46:00,711 9th St, San Francisco,CA,94016 +215872,27in FHD Monitor,1,149.99,2019-06-18 14:19:00,351 13th St, Los Angeles,CA,90001 +215873,AA Batteries (4-pack),2,3.84,2019-06-14 13:28:00,130 2nd St, Atlanta,GA,30301 +215874,AA Batteries (4-pack),1,3.84,2019-06-25 10:52:00,315 Center St, Seattle,WA,98101 +215875,Wired Headphones,2,11.99,2019-06-26 17:01:00,737 9th St, Atlanta,GA,30301 +215876,Vareebadd Phone,1,400.0,2019-06-07 22:25:00,717 11th St, Los Angeles,CA,90001 +215877,LG Washing Machine,1,600.0,2019-06-25 18:28:00,878 Washington St, San Francisco,CA,94016 +215878,Lightning Charging Cable,1,14.95,2019-06-28 12:52:00,538 Adams St, Atlanta,GA,30301 +215879,Apple Airpods Headphones,1,150.0,2019-06-29 09:01:00,741 Maple St, Los Angeles,CA,90001 +215880,Bose SoundSport Headphones,1,99.99,2019-06-02 09:52:00,524 Main St, Portland,ME,04101 +215881,AAA Batteries (4-pack),1,2.99,2019-06-29 14:56:00,490 6th St, Los Angeles,CA,90001 +215882,AA Batteries (4-pack),1,3.84,2019-06-09 00:28:00,554 Park St, San Francisco,CA,94016 +215883,Apple Airpods Headphones,1,150.0,2019-06-15 21:11:00,375 Pine St, Boston,MA,02215 +215884,USB-C Charging Cable,1,11.95,2019-06-17 02:21:00,236 7th St, Los Angeles,CA,90001 +215885,Apple Airpods Headphones,1,150.0,2019-06-21 07:19:00,125 Lake St, Portland,OR,97035 +215886,AA Batteries (4-pack),1,3.84,2019-06-03 16:57:00,655 Jackson St, Atlanta,GA,30301 +215887,AA Batteries (4-pack),3,3.84,2019-06-14 20:28:00,542 5th St, Portland,OR,97035 +215888,Wired Headphones,1,11.99,2019-06-12 14:18:00,673 Johnson St, Los Angeles,CA,90001 +215889,AAA Batteries (4-pack),2,2.99,2019-06-28 10:13:00,777 13th St, Boston,MA,02215 +215890,AA Batteries (4-pack),1,3.84,2019-06-28 21:43:00,519 1st St, Los Angeles,CA,90001 +215891,Apple Airpods Headphones,1,150.0,2019-06-04 20:03:00,85 9th St, Boston,MA,02215 +215892,34in Ultrawide Monitor,1,379.99,2019-06-24 18:23:00,962 Lakeview St, San Francisco,CA,94016 +215893,Google Phone,1,600.0,2019-06-11 14:41:00,910 Wilson St, San Francisco,CA,94016 +215894,USB-C Charging Cable,1,11.95,2019-06-12 19:47:00,133 South St, San Francisco,CA,94016 +215895,Vareebadd Phone,1,400.0,2019-06-07 14:48:00,837 Elm St, Portland,OR,97035 +215896,Apple Airpods Headphones,1,150.0,2019-06-04 12:36:00,719 Johnson St, San Francisco,CA,94016 +215897,USB-C Charging Cable,1,11.95,2019-06-16 16:04:00,278 Pine St, San Francisco,CA,94016 +215898,USB-C Charging Cable,2,11.95,2019-06-27 10:33:00,222 Cherry St, San Francisco,CA,94016 +215899,Vareebadd Phone,1,400.0,2019-06-07 15:40:00,57 South St, Austin,TX,73301 +215899,Wired Headphones,1,11.99,2019-06-07 15:40:00,57 South St, Austin,TX,73301 +215900,Bose SoundSport Headphones,1,99.99,2019-06-14 14:48:00,842 10th St, Boston,MA,02215 +215901,Lightning Charging Cable,1,14.95,2019-06-10 20:30:00,865 Hill St, New York City,NY,10001 +215902,Lightning Charging Cable,1,14.95,2019-06-25 18:27:00,269 Cedar St, San Francisco,CA,94016 +215903,USB-C Charging Cable,1,11.95,2019-06-22 08:24:00,832 West St, Dallas,TX,75001 +215904,Google Phone,1,600.0,2019-06-20 00:33:00,611 Walnut St, Atlanta,GA,30301 +215904,Bose SoundSport Headphones,1,99.99,2019-06-20 00:33:00,611 Walnut St, Atlanta,GA,30301 +215905,AA Batteries (4-pack),2,3.84,2019-06-30 11:42:00,409 Main St, Los Angeles,CA,90001 +215906,27in 4K Gaming Monitor,1,389.99,2019-06-16 11:17:00,84 Spruce St, Austin,TX,73301 +215907,iPhone,1,700.0,2019-06-09 19:24:00,134 Park St, New York City,NY,10001 +215907,Lightning Charging Cable,1,14.95,2019-06-09 19:24:00,134 Park St, New York City,NY,10001 +215908,Lightning Charging Cable,1,14.95,2019-06-14 15:48:00,952 6th St, Dallas,TX,75001 +215909,Macbook Pro Laptop,1,1700.0,2019-06-09 19:14:00,377 Hill St, Dallas,TX,75001 +215910,Vareebadd Phone,1,400.0,2019-06-26 11:27:00,304 5th St, San Francisco,CA,94016 +215911,34in Ultrawide Monitor,1,379.99,2019-06-12 16:34:00,633 2nd St, Boston,MA,02215 +215912,ThinkPad Laptop,1,999.99,2019-06-25 06:41:00,690 12th St, Boston,MA,02215 +215913,USB-C Charging Cable,1,11.95,2019-06-24 21:24:00,293 4th St, Boston,MA,02215 +215914,Lightning Charging Cable,1,14.95,2019-06-02 15:12:00,22 Meadow St, Seattle,WA,98101 +215915,Wired Headphones,1,11.99,2019-06-12 13:21:00,480 Washington St, New York City,NY,10001 +215916,Bose SoundSport Headphones,1,99.99,2019-06-08 21:23:00,205 Dogwood St, Dallas,TX,75001 +215917,USB-C Charging Cable,1,11.95,2019-06-28 14:31:00,87 Meadow St, San Francisco,CA,94016 +215918,USB-C Charging Cable,1,11.95,2019-06-02 15:13:00,981 Church St, Los Angeles,CA,90001 +215919,Lightning Charging Cable,1,14.95,2019-06-16 23:46:00,902 Center St, Los Angeles,CA,90001 +215920,AAA Batteries (4-pack),1,2.99,2019-06-30 10:08:00,900 Meadow St, New York City,NY,10001 +215921,USB-C Charging Cable,1,11.95,2019-06-21 21:30:00,982 North St, Boston,MA,02215 +215922,27in 4K Gaming Monitor,1,389.99,2019-06-23 22:45:00,586 Meadow St, Boston,MA,02215 +215923,Macbook Pro Laptop,1,1700.0,2019-06-04 20:13:00,979 4th St, Boston,MA,02215 +215924,Wired Headphones,1,11.99,2019-06-03 17:28:00,153 Park St, Boston,MA,02215 +215925,USB-C Charging Cable,1,11.95,2019-06-03 21:59:00,366 7th St, San Francisco,CA,94016 +215926,Lightning Charging Cable,1,14.95,2019-06-26 15:20:00,520 10th St, Boston,MA,02215 +215927,Apple Airpods Headphones,1,150.0,2019-06-05 17:01:00,807 Maple St, San Francisco,CA,94016 +215928,Wired Headphones,1,11.99,2019-06-19 20:51:00,947 Main St, Seattle,WA,98101 +215929,AAA Batteries (4-pack),1,2.99,2019-06-18 08:58:00,618 Meadow St, New York City,NY,10001 +215930,Flatscreen TV,1,300.0,2019-06-29 18:04:00,940 Center St, Boston,MA,02215 +215931,iPhone,1,700.0,2019-06-26 17:36:00,455 Chestnut St, Portland,OR,97035 +215932,AAA Batteries (4-pack),1,2.99,2019-06-06 12:59:00,523 Elm St, San Francisco,CA,94016 +215933,AA Batteries (4-pack),2,3.84,2019-06-01 09:11:00,121 Hill St, Boston,MA,02215 +215934,AAA Batteries (4-pack),2,2.99,2019-06-19 11:44:00,234 Willow St, Seattle,WA,98101 +215935,Flatscreen TV,1,300.0,2019-06-28 23:14:00,380 7th St, Austin,TX,73301 +215936,27in FHD Monitor,1,149.99,2019-06-30 18:24:00,33 8th St, San Francisco,CA,94016 +215937,Bose SoundSport Headphones,1,99.99,2019-06-03 20:21:00,433 Walnut St, Atlanta,GA,30301 +215938,Apple Airpods Headphones,1,150.0,2019-06-23 23:38:00,11 9th St, New York City,NY,10001 +215939,27in 4K Gaming Monitor,1,389.99,2019-06-06 13:52:00,951 Hickory St, Boston,MA,02215 +215940,AA Batteries (4-pack),1,3.84,2019-06-10 17:00:00,295 Ridge St, Boston,MA,02215 +215941,Wired Headphones,1,11.99,2019-06-15 10:00:00,59 13th St, Dallas,TX,75001 +215942,Google Phone,1,600.0,2019-06-21 19:47:00,405 14th St, Los Angeles,CA,90001 +215943,Bose SoundSport Headphones,1,99.99,2019-06-26 00:20:00,995 7th St, Dallas,TX,75001 +215944,Lightning Charging Cable,1,14.95,2019-06-21 01:25:00,363 Lakeview St, Los Angeles,CA,90001 +215945,Bose SoundSport Headphones,1,99.99,2019-06-04 09:22:00,847 Jackson St, Seattle,WA,98101 +215946,iPhone,1,700.0,2019-06-29 19:16:00,349 1st St, Los Angeles,CA,90001 +215947,Flatscreen TV,1,300.0,2019-06-25 06:44:00,264 Main St, Los Angeles,CA,90001 +215948,Bose SoundSport Headphones,1,99.99,2019-06-25 12:41:00,761 Jackson St, Dallas,TX,75001 +215949,Lightning Charging Cable,1,14.95,2019-06-18 21:31:00,819 Johnson St, San Francisco,CA,94016 +215950,Bose SoundSport Headphones,1,99.99,2019-06-26 19:33:00,403 13th St, Dallas,TX,75001 +215951,AAA Batteries (4-pack),1,2.99,2019-06-12 13:27:00,335 Willow St, San Francisco,CA,94016 +215952,AA Batteries (4-pack),1,3.84,2019-06-24 09:05:00,609 Lakeview St, Los Angeles,CA,90001 +215953,Lightning Charging Cable,2,14.95,2019-06-28 23:32:00,516 Park St, Los Angeles,CA,90001 +215954,AA Batteries (4-pack),1,3.84,2019-06-21 19:51:00,396 Meadow St, Dallas,TX,75001 +215955,AAA Batteries (4-pack),1,2.99,2019-06-06 16:20:00,132 13th St, Portland,OR,97035 +215956,AAA Batteries (4-pack),2,2.99,2019-06-15 23:53:00,756 Ridge St, New York City,NY,10001 +215957,Bose SoundSport Headphones,1,99.99,2019-06-03 13:11:00,41 West St, Dallas,TX,75001 +215958,Wired Headphones,1,11.99,2019-06-03 09:40:00,669 2nd St, New York City,NY,10001 +215959,Lightning Charging Cable,1,14.95,2019-06-30 13:55:00,94 Spruce St, Los Angeles,CA,90001 +215960,AAA Batteries (4-pack),1,2.99,2019-06-02 20:46:00,748 13th St, San Francisco,CA,94016 +215961,Wired Headphones,1,11.99,2019-06-10 07:02:00,132 Cherry St, San Francisco,CA,94016 +215962,Apple Airpods Headphones,1,150.0,2019-06-11 16:20:00,309 Willow St, San Francisco,CA,94016 +215963,Flatscreen TV,1,300.0,2019-06-17 22:45:00,173 Washington St, Los Angeles,CA,90001 +215964,LG Washing Machine,1,600.0,2019-06-19 07:05:00,23 Johnson St, San Francisco,CA,94016 +215965,Apple Airpods Headphones,1,150.0,2019-06-15 17:32:00,627 Lake St, New York City,NY,10001 +215966,AA Batteries (4-pack),1,3.84,2019-06-28 21:53:00,292 Cherry St, New York City,NY,10001 +215967,Bose SoundSport Headphones,1,99.99,2019-06-05 10:31:00,647 13th St, San Francisco,CA,94016 +215968,Lightning Charging Cable,1,14.95,2019-06-08 09:03:00,174 Walnut St, Atlanta,GA,30301 +215969,Lightning Charging Cable,1,14.95,2019-06-23 22:08:00,177 Madison St, New York City,NY,10001 +215970,Wired Headphones,1,11.99,2019-06-20 16:00:00,358 2nd St, Los Angeles,CA,90001 +215971,Apple Airpods Headphones,1,150.0,2019-06-25 20:45:00,121 Chestnut St, Los Angeles,CA,90001 +215972,Wired Headphones,1,11.99,2019-06-03 15:56:00,236 9th St, Boston,MA,02215 +215973,Lightning Charging Cable,1,14.95,2019-06-16 21:56:00,313 Cedar St, Dallas,TX,75001 +215974,Lightning Charging Cable,1,14.95,2019-06-03 11:39:00,884 4th St, Boston,MA,02215 +215975,Wired Headphones,1,11.99,2019-06-12 14:05:00,547 Lincoln St, Boston,MA,02215 +215976,Macbook Pro Laptop,1,1700.0,2019-06-28 22:23:00,845 Walnut St, Seattle,WA,98101 +215977,27in 4K Gaming Monitor,1,389.99,2019-06-11 21:28:00,696 Highland St, New York City,NY,10001 +215978,Wired Headphones,1,11.99,2019-06-24 22:17:00,972 2nd St, San Francisco,CA,94016 +215979,34in Ultrawide Monitor,1,379.99,2019-06-29 22:18:00,879 4th St, Boston,MA,02215 +215980,USB-C Charging Cable,1,11.95,2019-06-16 08:51:00,824 10th St, New York City,NY,10001 +215981,Bose SoundSport Headphones,1,99.99,2019-06-10 21:44:00,282 South St, San Francisco,CA,94016 +215982,Macbook Pro Laptop,1,1700.0,2019-06-18 11:56:00,249 Forest St, Los Angeles,CA,90001 +215983,Macbook Pro Laptop,1,1700.0,2019-06-07 19:23:00,17 Maple St, Los Angeles,CA,90001 +215984,Flatscreen TV,1,300.0,2019-06-19 12:08:00,411 Madison St, San Francisco,CA,94016 +215985,USB-C Charging Cable,1,11.95,2019-06-30 20:34:00,365 South St, New York City,NY,10001 +215986,USB-C Charging Cable,1,11.95,2019-06-25 15:12:00,73 6th St, Atlanta,GA,30301 +215987,AA Batteries (4-pack),2,3.84,2019-06-07 13:03:00,914 Lakeview St, Los Angeles,CA,90001 +215988,AA Batteries (4-pack),1,3.84,2019-06-27 14:44:00,623 Main St, Atlanta,GA,30301 +215989,USB-C Charging Cable,1,11.95,2019-06-15 09:45:00,860 Lincoln St, San Francisco,CA,94016 +215990,27in 4K Gaming Monitor,1,389.99,2019-06-02 13:53:00,575 10th St, San Francisco,CA,94016 +215991,AA Batteries (4-pack),1,3.84,2019-06-17 11:41:00,937 Lake St, New York City,NY,10001 +215992,Macbook Pro Laptop,1,1700.0,2019-06-09 17:20:00,632 13th St, Seattle,WA,98101 +215993,Apple Airpods Headphones,1,150.0,2019-06-14 12:53:00,77 Lakeview St, Los Angeles,CA,90001 +215994,Vareebadd Phone,1,400.0,2019-06-04 16:25:00,270 West St, Seattle,WA,98101 +215995,Bose SoundSport Headphones,1,99.99,2019-06-15 11:47:00,289 13th St, San Francisco,CA,94016 +215996,34in Ultrawide Monitor,1,379.99,2019-06-09 14:52:00,20 1st St, Boston,MA,02215 +215997,Lightning Charging Cable,1,14.95,2019-06-01 14:50:00,757 Hill St, Los Angeles,CA,90001 +215998,ThinkPad Laptop,1,999.99,2019-06-03 09:22:00,560 4th St, Atlanta,GA,30301 +215999,34in Ultrawide Monitor,1,379.99,2019-06-01 18:55:00,237 Wilson St, Atlanta,GA,30301 +216000,27in FHD Monitor,2,149.99,2019-06-09 23:22:00,235 11th St, Atlanta,GA,30301 +216001,34in Ultrawide Monitor,1,379.99,2019-06-16 19:29:00,66 West St, San Francisco,CA,94016 +216002,Apple Airpods Headphones,1,150.0,2019-06-16 23:25:00,935 Johnson St, San Francisco,CA,94016 +216003,Lightning Charging Cable,1,14.95,2019-06-22 09:50:00,111 Dogwood St, Portland,OR,97035 +216004,USB-C Charging Cable,1,11.95,2019-06-21 12:22:00,288 Jackson St, Portland,OR,97035 +216005,Lightning Charging Cable,1,14.95,2019-06-07 07:20:00,765 Adams St, Atlanta,GA,30301 +216006,27in FHD Monitor,1,149.99,2019-06-20 10:51:00,504 13th St, San Francisco,CA,94016 +216007,27in FHD Monitor,1,149.99,2019-06-11 21:45:00,748 Meadow St, San Francisco,CA,94016 +216008,iPhone,1,700.0,2019-06-06 17:06:00,358 5th St, Boston,MA,02215 +216009,Lightning Charging Cable,1,14.95,2019-06-10 12:42:00,399 Madison St, Austin,TX,73301 +216010,iPhone,1,700.0,2019-06-15 12:31:00,622 Highland St, Los Angeles,CA,90001 +216011,Macbook Pro Laptop,1,1700.0,2019-06-19 20:12:00,444 Maple St, Boston,MA,02215 +216012,Wired Headphones,1,11.99,2019-06-17 09:32:00,491 Ridge St, San Francisco,CA,94016 +216013,Apple Airpods Headphones,1,150.0,2019-06-20 09:33:00,933 4th St, Boston,MA,02215 +216014,AAA Batteries (4-pack),1,2.99,2019-06-26 20:49:00,370 13th St, San Francisco,CA,94016 +216015,Apple Airpods Headphones,1,150.0,2019-06-02 20:27:00,779 Maple St, San Francisco,CA,94016 +216016,AA Batteries (4-pack),1,3.84,2019-06-29 14:31:00,833 Walnut St, San Francisco,CA,94016 +216017,Wired Headphones,1,11.99,2019-06-10 15:41:00,556 Highland St, Portland,OR,97035 +216018,Bose SoundSport Headphones,1,99.99,2019-06-04 13:06:00,848 Adams St, San Francisco,CA,94016 +216019,Macbook Pro Laptop,1,1700.0,2019-06-08 08:54:00,986 River St, Boston,MA,02215 +216020,Apple Airpods Headphones,1,150.0,2019-06-07 12:33:00,221 12th St, San Francisco,CA,94016 +216021,AAA Batteries (4-pack),1,2.99,2019-06-16 18:44:00,640 Forest St, Dallas,TX,75001 +216021,Lightning Charging Cable,1,14.95,2019-06-16 18:44:00,640 Forest St, Dallas,TX,75001 +216022,Bose SoundSport Headphones,1,99.99,2019-06-22 14:51:00,470 Maple St, San Francisco,CA,94016 +216023,Apple Airpods Headphones,1,150.0,2019-06-26 07:16:00,986 West St, Dallas,TX,75001 +216024,USB-C Charging Cable,1,11.95,2019-06-02 14:07:00,279 7th St, Dallas,TX,75001 +216025,USB-C Charging Cable,1,11.95,2019-06-27 16:16:00,662 Walnut St, Seattle,WA,98101 +216026,AA Batteries (4-pack),1,3.84,2019-06-09 10:38:00,228 Elm St, San Francisco,CA,94016 +216027,27in FHD Monitor,1,149.99,2019-06-20 09:03:00,891 Hickory St, San Francisco,CA,94016 +216028,AAA Batteries (4-pack),1,2.99,2019-06-17 12:39:00,345 Dogwood St, Boston,MA,02215 +216029,Apple Airpods Headphones,1,150.0,2019-06-23 21:43:00,64 Church St, San Francisco,CA,94016 +216030,USB-C Charging Cable,1,11.95,2019-06-19 14:48:00,859 West St, San Francisco,CA,94016 +216031,AAA Batteries (4-pack),1,2.99,2019-06-05 09:22:00,800 14th St, Austin,TX,73301 +216032,Lightning Charging Cable,1,14.95,2019-06-04 07:39:00,548 Center St, Austin,TX,73301 +216033,USB-C Charging Cable,1,11.95,2019-06-01 09:17:00,955 4th St, Boston,MA,02215 +216034,AA Batteries (4-pack),1,3.84,2019-06-21 22:37:00,292 Johnson St, Atlanta,GA,30301 +216035,Wired Headphones,1,11.99,2019-06-28 17:40:00,702 8th St, San Francisco,CA,94016 +216036,Bose SoundSport Headphones,1,99.99,2019-06-05 16:19:00,56 Johnson St, Boston,MA,02215 +216037,27in FHD Monitor,1,149.99,2019-06-03 12:26:00,773 Hickory St, Dallas,TX,75001 +216038,Lightning Charging Cable,1,14.95,2019-06-24 18:55:00,708 Main St, New York City,NY,10001 +216039,34in Ultrawide Monitor,1,379.99,2019-06-07 15:18:00,667 Spruce St, San Francisco,CA,94016 +216040,Lightning Charging Cable,1,14.95,2019-06-05 20:14:00,74 Main St, San Francisco,CA,94016 +216041,Apple Airpods Headphones,1,150.0,2019-06-15 13:38:00,883 Sunset St, Los Angeles,CA,90001 +216042,USB-C Charging Cable,1,11.95,2019-06-23 10:40:00,955 Church St, New York City,NY,10001 +216043,Lightning Charging Cable,1,14.95,2019-06-19 12:08:00,108 Park St, Dallas,TX,75001 +216044,Lightning Charging Cable,1,14.95,2019-06-21 19:58:00,684 8th St, New York City,NY,10001 +216045,USB-C Charging Cable,1,11.95,2019-06-27 16:04:00,891 Pine St, San Francisco,CA,94016 +216046,AA Batteries (4-pack),1,3.84,2019-06-27 13:23:00,665 Wilson St, New York City,NY,10001 +216047,Google Phone,1,600.0,2019-06-09 13:44:00,794 10th St, Seattle,WA,98101 +216047,Bose SoundSport Headphones,1,99.99,2019-06-09 13:44:00,794 10th St, Seattle,WA,98101 +216048,Google Phone,1,600.0,2019-06-14 15:04:00,888 Elm St, Los Angeles,CA,90001 +216049,AAA Batteries (4-pack),1,2.99,2019-06-17 11:05:00,166 Hickory St, New York City,NY,10001 +216050,Wired Headphones,1,11.99,2019-06-06 16:01:00,237 4th St, San Francisco,CA,94016 +216051,Apple Airpods Headphones,1,150.0,2019-06-07 10:11:00,250 12th St, Austin,TX,73301 +216052,Apple Airpods Headphones,1,150.0,2019-06-15 21:19:00,435 Spruce St, Los Angeles,CA,90001 +216053,iPhone,1,700.0,2019-06-03 20:34:00,777 13th St, Austin,TX,73301 +216054,Apple Airpods Headphones,1,150.0,2019-06-20 22:20:00,275 Willow St, Los Angeles,CA,90001 +216055,LG Dryer,1,600.0,2019-06-16 11:06:00,889 Lincoln St, Boston,MA,02215 +216056,AAA Batteries (4-pack),1,2.99,2019-06-21 23:04:00,656 Lake St, Los Angeles,CA,90001 +216057,iPhone,1,700.0,2019-06-30 19:06:00,328 Jefferson St, New York City,NY,10001 +216058,Vareebadd Phone,1,400.0,2019-06-30 11:00:00,91 12th St, New York City,NY,10001 +216059,Macbook Pro Laptop,1,1700.0,2019-06-04 15:17:00,373 Meadow St, New York City,NY,10001 +216060,27in FHD Monitor,2,149.99,2019-06-25 20:03:00,586 6th St, Los Angeles,CA,90001 +216061,USB-C Charging Cable,1,11.95,2019-06-27 16:10:00,736 Spruce St, New York City,NY,10001 +216062,Macbook Pro Laptop,1,1700.0,2019-06-17 07:04:00,201 Lakeview St, New York City,NY,10001 +216063,USB-C Charging Cable,1,11.95,2019-06-01 15:40:00,31 12th St, Boston,MA,02215 +216064,AA Batteries (4-pack),1,3.84,2019-06-24 16:32:00,344 13th St, San Francisco,CA,94016 +216065,20in Monitor,1,109.99,2019-06-29 17:53:00,979 12th St, San Francisco,CA,94016 +216066,Apple Airpods Headphones,1,150.0,2019-06-29 21:38:00,815 Church St, Los Angeles,CA,90001 +216067,USB-C Charging Cable,1,11.95,2019-06-25 11:00:00,972 4th St, San Francisco,CA,94016 +216067,Apple Airpods Headphones,1,150.0,2019-06-25 11:00:00,972 4th St, San Francisco,CA,94016 +216068,USB-C Charging Cable,2,11.95,2019-06-30 19:32:00,944 Lake St, New York City,NY,10001 +216069,AA Batteries (4-pack),2,3.84,2019-06-23 17:40:00,17 Ridge St, Seattle,WA,98101 +216070,Lightning Charging Cable,1,14.95,2019-06-05 22:14:00,879 North St, Los Angeles,CA,90001 +216071,AA Batteries (4-pack),2,3.84,2019-06-30 12:59:00,630 7th St, Portland,OR,97035 +216072,USB-C Charging Cable,1,11.95,2019-06-17 06:23:00,595 Hill St, Atlanta,GA,30301 +216073,USB-C Charging Cable,1,11.95,2019-06-20 17:55:00,391 Jefferson St, San Francisco,CA,94016 +216074,AAA Batteries (4-pack),3,2.99,2019-06-10 20:32:00,297 Maple St, San Francisco,CA,94016 +216075,Wired Headphones,1,11.99,2019-06-08 12:43:00,832 10th St, Dallas,TX,75001 +216076,27in FHD Monitor,1,149.99,2019-06-17 15:10:00,952 Spruce St, Atlanta,GA,30301 +216077,USB-C Charging Cable,1,11.95,2019-06-09 11:29:00,125 8th St, Boston,MA,02215 +216078,Vareebadd Phone,1,400.0,2019-06-07 20:03:00,310 Center St, Dallas,TX,75001 +216079,Bose SoundSport Headphones,1,99.99,2019-06-05 23:57:00,159 North St, New York City,NY,10001 +216080,Lightning Charging Cable,1,14.95,2019-06-12 17:26:00,61 Elm St, Atlanta,GA,30301 +216081,27in 4K Gaming Monitor,1,389.99,2019-06-05 10:07:00,616 2nd St, New York City,NY,10001 +216082,iPhone,1,700.0,2019-06-29 17:00:00,689 Washington St, Dallas,TX,75001 +216082,Wired Headphones,1,11.99,2019-06-29 17:00:00,689 Washington St, Dallas,TX,75001 +216083,AA Batteries (4-pack),2,3.84,2019-06-14 19:15:00,123 9th St, Dallas,TX,75001 +216084,Bose SoundSport Headphones,1,99.99,2019-06-05 01:11:00,638 Forest St, San Francisco,CA,94016 +216085,Lightning Charging Cable,1,14.95,2019-06-05 15:30:00,920 Lincoln St, Boston,MA,02215 +216086,USB-C Charging Cable,1,11.95,2019-06-23 19:53:00,698 Highland St, Boston,MA,02215 +216087,USB-C Charging Cable,1,11.95,2019-06-14 07:46:00,667 Jefferson St, San Francisco,CA,94016 +216088,Bose SoundSport Headphones,1,99.99,2019-06-29 23:31:00,940 7th St, San Francisco,CA,94016 +216089,Bose SoundSport Headphones,1,99.99,2019-06-30 12:48:00,205 Jefferson St, San Francisco,CA,94016 +216090,Macbook Pro Laptop,1,1700.0,2019-06-11 00:31:00,53 Johnson St, San Francisco,CA,94016 +216091,Bose SoundSport Headphones,1,99.99,2019-06-13 23:19:00,603 Ridge St, San Francisco,CA,94016 +216091,Lightning Charging Cable,1,14.95,2019-06-13 23:19:00,603 Ridge St, San Francisco,CA,94016 +216092,Macbook Pro Laptop,1,1700.0,2019-06-25 14:48:00,475 Hill St, San Francisco,CA,94016 +216093,LG Washing Machine,1,600.0,2019-06-12 08:40:00,918 Forest St, Atlanta,GA,30301 +216094,20in Monitor,1,109.99,2019-06-14 14:23:00,213 Lakeview St, Boston,MA,02215 +216095,20in Monitor,1,109.99,2019-06-20 16:45:00,250 Washington St, New York City,NY,10001 +216096,AA Batteries (4-pack),1,3.84,2019-06-29 18:38:00,848 Johnson St, San Francisco,CA,94016 +216097,USB-C Charging Cable,1,11.95,2019-06-30 20:53:00,169 Walnut St, San Francisco,CA,94016 +216098,USB-C Charging Cable,1,11.95,2019-06-15 18:50:00,74 Cedar St, New York City,NY,10001 +216099,Bose SoundSport Headphones,1,99.99,2019-06-21 21:40:00,461 Madison St, San Francisco,CA,94016 +216100,ThinkPad Laptop,1,999.99,2019-06-15 11:54:00,614 1st St, Dallas,TX,75001 +216101,Lightning Charging Cable,1,14.95,2019-06-03 13:35:00,938 Cherry St, Portland,OR,97035 +216102,Lightning Charging Cable,1,14.95,2019-06-14 22:58:00,801 4th St, Portland,ME,04101 +216103,AA Batteries (4-pack),2,3.84,2019-06-03 10:18:00,762 Spruce St, Atlanta,GA,30301 +216104,Lightning Charging Cable,2,14.95,2019-06-21 21:39:00,760 Maple St, Dallas,TX,75001 +216105,USB-C Charging Cable,1,11.95,2019-06-24 22:07:00,902 Cherry St, Los Angeles,CA,90001 +216106,34in Ultrawide Monitor,1,379.99,2019-06-22 13:57:00,259 Lincoln St, Dallas,TX,75001 +216107,iPhone,1,700.0,2019-06-09 19:40:00,613 Main St, Dallas,TX,75001 +216107,Wired Headphones,1,11.99,2019-06-09 19:40:00,613 Main St, Dallas,TX,75001 +216108,Google Phone,1,600.0,2019-06-13 00:27:00,434 Spruce St, Atlanta,GA,30301 +216109,Bose SoundSport Headphones,1,99.99,2019-06-21 18:34:00,264 4th St, New York City,NY,10001 +216110,Macbook Pro Laptop,1,1700.0,2019-06-08 16:47:00,698 2nd St, Boston,MA,02215 +216111,Google Phone,1,600.0,2019-06-28 08:38:00,962 Washington St, Dallas,TX,75001 +216112,Lightning Charging Cable,1,14.95,2019-06-01 09:28:00,752 Spruce St, New York City,NY,10001 +216113,Apple Airpods Headphones,1,150.0,2019-06-27 22:12:00,652 Wilson St, Portland,OR,97035 +216114,Wired Headphones,1,11.99,2019-06-13 16:33:00,358 Center St, San Francisco,CA,94016 +216114,AAA Batteries (4-pack),1,2.99,2019-06-13 16:33:00,358 Center St, San Francisco,CA,94016 +216115,Lightning Charging Cable,1,14.95,2019-06-10 00:40:00,94 Dogwood St, Los Angeles,CA,90001 +216116,iPhone,1,700.0,2019-06-29 13:23:00,384 Forest St, New York City,NY,10001 +216117,Lightning Charging Cable,1,14.95,2019-06-18 14:37:00,593 North St, Los Angeles,CA,90001 +216118,Apple Airpods Headphones,1,150.0,2019-06-05 21:34:00,79 Adams St, Los Angeles,CA,90001 +216119,AAA Batteries (4-pack),1,2.99,2019-06-19 08:59:00,105 Johnson St, Dallas,TX,75001 +216120,AAA Batteries (4-pack),1,2.99,2019-06-20 12:52:00,264 Lincoln St, Austin,TX,73301 +216121,Bose SoundSport Headphones,1,99.99,2019-06-11 15:38:00,505 Park St, Atlanta,GA,30301 +216122,AA Batteries (4-pack),1,3.84,2019-06-16 22:15:00,313 Maple St, San Francisco,CA,94016 +216123,Google Phone,1,600.0,2019-06-19 16:50:00,86 Maple St, Los Angeles,CA,90001 +216124,AA Batteries (4-pack),1,3.84,2019-06-06 00:12:00,221 1st St, Portland,OR,97035 +216125,20in Monitor,1,109.99,2019-06-29 14:12:00,87 Dogwood St, New York City,NY,10001 +216126,Wired Headphones,1,11.99,2019-06-29 07:53:00,3 12th St, New York City,NY,10001 +216127,Flatscreen TV,1,300.0,2019-06-15 12:22:00,27 Church St, San Francisco,CA,94016 +216128,USB-C Charging Cable,1,11.95,2019-06-14 15:21:00,749 8th St, Boston,MA,02215 +216129,Apple Airpods Headphones,1,150.0,2019-06-21 16:30:00,802 6th St, Los Angeles,CA,90001 +216130,Apple Airpods Headphones,1,150.0,2019-06-19 17:26:00,252 Center St, Boston,MA,02215 +216131,Apple Airpods Headphones,1,150.0,2019-06-10 21:57:00,574 Willow St, Dallas,TX,75001 +216132,Wired Headphones,1,11.99,2019-06-18 18:52:00,254 Forest St, San Francisco,CA,94016 +216133,USB-C Charging Cable,1,11.95,2019-06-15 13:35:00,3 Park St, Seattle,WA,98101 +216134,Vareebadd Phone,1,400.0,2019-06-02 10:05:00,865 Lakeview St, Dallas,TX,75001 +216135,Bose SoundSport Headphones,1,99.99,2019-06-26 14:52:00,769 North St, Boston,MA,02215 +216136,Lightning Charging Cable,1,14.95,2019-06-08 10:10:00,429 Maple St, Dallas,TX,75001 +216137,Apple Airpods Headphones,1,150.0,2019-06-26 13:34:00,363 Elm St, New York City,NY,10001 +216138,Wired Headphones,1,11.99,2019-06-08 22:53:00,882 South St, San Francisco,CA,94016 +216139,USB-C Charging Cable,1,11.95,2019-06-06 17:15:00,707 Center St, Seattle,WA,98101 +216140,AAA Batteries (4-pack),1,2.99,2019-06-09 15:57:00,532 Cedar St, Boston,MA,02215 +216141,USB-C Charging Cable,1,11.95,2019-06-16 14:58:00,477 Wilson St, Atlanta,GA,30301 +216142,USB-C Charging Cable,1,11.95,2019-06-29 09:06:00,474 Cherry St, Dallas,TX,75001 +216143,Bose SoundSport Headphones,1,99.99,2019-06-20 09:25:00,196 River St, Los Angeles,CA,90001 +216144,Wired Headphones,1,11.99,2019-06-03 08:50:00,591 4th St, Los Angeles,CA,90001 +216145,27in FHD Monitor,1,149.99,2019-06-14 22:41:00,460 Center St, San Francisco,CA,94016 +216146,AA Batteries (4-pack),1,3.84,2019-06-07 08:53:00,905 Meadow St, Dallas,TX,75001 +216147,Google Phone,1,600.0,2019-06-26 23:08:00,71 10th St, San Francisco,CA,94016 +216148,27in 4K Gaming Monitor,1,389.99,2019-06-05 18:33:00,456 North St, Los Angeles,CA,90001 +216149,AA Batteries (4-pack),1,3.84,2019-06-19 06:34:00,113 Lincoln St, Boston,MA,02215 +216150,Flatscreen TV,1,300.0,2019-06-18 19:38:00,18 Cedar St, Dallas,TX,75001 +216151,Macbook Pro Laptop,1,1700.0,2019-06-17 06:51:00,786 Spruce St, Atlanta,GA,30301 +216152,USB-C Charging Cable,1,11.95,2019-06-26 20:16:00,842 Jefferson St, Atlanta,GA,30301 +216153,AA Batteries (4-pack),1,3.84,2019-06-24 18:13:00,439 Highland St, San Francisco,CA,94016 +216154,27in 4K Gaming Monitor,1,389.99,2019-06-15 13:55:00,615 Sunset St, Atlanta,GA,30301 +216155,Bose SoundSport Headphones,1,99.99,2019-06-17 20:21:00,582 Lake St, San Francisco,CA,94016 +216156,AAA Batteries (4-pack),1,2.99,2019-06-03 08:41:00,665 Jackson St, San Francisco,CA,94016 +216157,Bose SoundSport Headphones,1,99.99,2019-06-09 19:51:00,999 5th St, Los Angeles,CA,90001 +216158,Apple Airpods Headphones,1,150.0,2019-06-17 18:21:00,709 Ridge St, New York City,NY,10001 +216159,Google Phone,1,600.0,2019-06-05 12:26:00,212 6th St, Los Angeles,CA,90001 +216159,Wired Headphones,2,11.99,2019-06-05 12:26:00,212 6th St, Los Angeles,CA,90001 +216160,USB-C Charging Cable,1,11.95,2019-06-05 17:11:00,838 12th St, San Francisco,CA,94016 +216161,Apple Airpods Headphones,2,150.0,2019-06-01 12:51:00,676 Lincoln St, Atlanta,GA,30301 +216162,34in Ultrawide Monitor,1,379.99,2019-06-23 09:49:00,671 11th St, Los Angeles,CA,90001 +216163,27in FHD Monitor,1,149.99,2019-06-26 15:48:00,169 6th St, Portland,OR,97035 +216164,Flatscreen TV,1,300.0,2019-06-27 15:00:00,575 Washington St, Austin,TX,73301 +216165,Wired Headphones,1,11.99,2019-06-14 14:16:00,956 Spruce St, Los Angeles,CA,90001 +216166,AA Batteries (4-pack),1,3.84,2019-06-21 12:19:00,776 Ridge St, New York City,NY,10001 +216167,AA Batteries (4-pack),3,3.84,2019-06-15 16:52:00,478 Hickory St, Portland,OR,97035 +216168,Wired Headphones,2,11.99,2019-06-23 09:09:00,1 Hickory St, Los Angeles,CA,90001 +216169,Apple Airpods Headphones,1,150.0,2019-06-19 01:47:00,288 7th St, New York City,NY,10001 +216170,AA Batteries (4-pack),1,3.84,2019-06-21 13:50:00,3 Dogwood St, Boston,MA,02215 +216171,Apple Airpods Headphones,1,150.0,2019-06-10 14:52:00,591 North St, Los Angeles,CA,90001 +216172,USB-C Charging Cable,1,11.95,2019-06-12 18:48:00,836 Willow St, Seattle,WA,98101 +216173,iPhone,1,700.0,2019-06-13 17:03:00,340 Willow St, Seattle,WA,98101 +216174,Wired Headphones,1,11.99,2019-06-08 00:53:00,823 Highland St, Austin,TX,73301 +216175,27in 4K Gaming Monitor,1,389.99,2019-06-13 20:00:00,287 10th St, San Francisco,CA,94016 +216176,20in Monitor,1,109.99,2019-06-03 11:21:00,117 North St, Dallas,TX,75001 +216177,AAA Batteries (4-pack),1,2.99,2019-06-30 11:33:00,853 9th St, New York City,NY,10001 +216178,AAA Batteries (4-pack),1,2.99,2019-06-05 18:20:00,917 Meadow St, San Francisco,CA,94016 +216179,20in Monitor,1,109.99,2019-06-26 00:29:00,111 Lakeview St, Dallas,TX,75001 +216179,Wired Headphones,2,11.99,2019-06-26 00:29:00,111 Lakeview St, Dallas,TX,75001 +216180,Lightning Charging Cable,1,14.95,2019-06-28 09:50:00,205 Cedar St, Portland,ME,04101 +216181,AA Batteries (4-pack),3,3.84,2019-06-20 15:16:00,864 River St, Boston,MA,02215 +216182,27in FHD Monitor,1,149.99,2019-06-24 15:53:00,85 Adams St, Los Angeles,CA,90001 +216183,Wired Headphones,1,11.99,2019-06-28 09:10:00,9 Ridge St, Los Angeles,CA,90001 +216184,27in FHD Monitor,1,149.99,2019-06-12 04:32:00,753 7th St, San Francisco,CA,94016 +216185,Lightning Charging Cable,1,14.95,2019-06-24 12:20:00,904 5th St, Portland,ME,04101 +216186,AA Batteries (4-pack),1,3.84,2019-06-21 23:11:00,556 Maple St, Los Angeles,CA,90001 +216187,Wired Headphones,1,11.99,2019-06-29 20:32:00,765 11th St, Los Angeles,CA,90001 +216188,Lightning Charging Cable,1,14.95,2019-06-10 19:15:00,225 7th St, Austin,TX,73301 +216189,iPhone,1,700.0,2019-06-05 22:16:00,911 Highland St, Los Angeles,CA,90001 +216190,27in FHD Monitor,1,149.99,2019-06-14 14:50:00,403 8th St, New York City,NY,10001 +216191,Apple Airpods Headphones,1,150.0,2019-06-21 13:49:00,633 Sunset St, Atlanta,GA,30301 +216192,27in FHD Monitor,1,149.99,2019-06-19 15:16:00,707 Washington St, Seattle,WA,98101 +216193,Bose SoundSport Headphones,1,99.99,2019-06-20 00:17:00,962 Washington St, Dallas,TX,75001 +216194,34in Ultrawide Monitor,1,379.99,2019-06-17 11:07:00,7 Spruce St, Los Angeles,CA,90001 +216195,iPhone,1,700.0,2019-06-23 13:04:00,256 Jackson St, Seattle,WA,98101 +216196,20in Monitor,1,109.99,2019-06-04 16:32:00,991 Adams St, San Francisco,CA,94016 +216197,Lightning Charging Cable,1,14.95,2019-06-02 20:15:00,362 Adams St, Portland,OR,97035 +216198,iPhone,1,700.0,2019-06-16 18:27:00,777 5th St, Boston,MA,02215 +216198,Apple Airpods Headphones,1,150.0,2019-06-16 18:27:00,777 5th St, Boston,MA,02215 +216199,AAA Batteries (4-pack),1,2.99,2019-06-30 13:08:00,783 Adams St, New York City,NY,10001 +216200,iPhone,1,700.0,2019-06-05 11:24:00,886 9th St, San Francisco,CA,94016 +216201,USB-C Charging Cable,1,11.95,2019-06-18 14:17:00,961 North St, Los Angeles,CA,90001 +216202,AAA Batteries (4-pack),1,2.99,2019-06-04 16:05:00,72 Hickory St, Portland,OR,97035 +216203,Macbook Pro Laptop,1,1700.0,2019-06-28 10:46:00,581 Cedar St, Los Angeles,CA,90001 +216204,ThinkPad Laptop,1,999.99,2019-06-19 08:29:00,556 Willow St, Boston,MA,02215 +216205,AA Batteries (4-pack),1,3.84,2019-06-29 12:34:00,691 Park St, Los Angeles,CA,90001 +216206,27in 4K Gaming Monitor,1,389.99,2019-06-15 13:21:00,602 Lincoln St, Austin,TX,73301 +216207,Lightning Charging Cable,2,14.95,2019-06-05 09:48:00,506 Maple St, San Francisco,CA,94016 +216208,34in Ultrawide Monitor,1,379.99,2019-06-27 12:01:00,66 Church St, New York City,NY,10001 +216209,20in Monitor,1,109.99,2019-06-14 09:37:00,141 Cedar St, Atlanta,GA,30301 +216210,AA Batteries (4-pack),2,3.84,2019-06-19 15:11:00,187 Dogwood St, San Francisco,CA,94016 +216211,Wired Headphones,1,11.99,2019-06-27 19:34:00,677 Highland St, New York City,NY,10001 +216212,USB-C Charging Cable,1,11.95,2019-06-02 12:01:00,201 Cherry St, Los Angeles,CA,90001 +216213,Lightning Charging Cable,1,14.95,2019-06-10 13:15:00,792 Walnut St, New York City,NY,10001 +216214,AA Batteries (4-pack),1,3.84,2019-06-18 19:01:00,368 4th St, New York City,NY,10001 +216215,Wired Headphones,1,11.99,2019-06-12 09:06:00,613 Elm St, San Francisco,CA,94016 +216216,AA Batteries (4-pack),1,3.84,2019-06-21 18:12:00,742 1st St, Seattle,WA,98101 +216217,Wired Headphones,1,11.99,2019-06-02 12:18:00,316 13th St, Austin,TX,73301 +216218,AA Batteries (4-pack),1,3.84,2019-06-24 05:36:00,937 Madison St, Dallas,TX,75001 +216219,AAA Batteries (4-pack),1,2.99,2019-06-14 17:38:00,459 7th St, Austin,TX,73301 +216220,AA Batteries (4-pack),2,3.84,2019-06-21 07:43:00,497 Wilson St, San Francisco,CA,94016 +216221,Wired Headphones,1,11.99,2019-06-01 20:43:00,933 12th St, Dallas,TX,75001 +216222,USB-C Charging Cable,1,11.95,2019-06-27 12:20:00,771 13th St, San Francisco,CA,94016 +216223,AAA Batteries (4-pack),1,2.99,2019-06-21 14:48:00,563 8th St, San Francisco,CA,94016 +216224,Lightning Charging Cable,1,14.95,2019-06-21 14:40:00,337 Highland St, San Francisco,CA,94016 +216225,AAA Batteries (4-pack),1,2.99,2019-06-12 17:18:00,481 14th St, Los Angeles,CA,90001 +216226,Wired Headphones,1,11.99,2019-06-16 13:08:00,270 Church St, San Francisco,CA,94016 +216227,Flatscreen TV,1,300.0,2019-06-10 14:09:00,19 Wilson St, San Francisco,CA,94016 +216228,27in FHD Monitor,1,149.99,2019-06-30 18:50:00,88 Main St, Los Angeles,CA,90001 +216229,AA Batteries (4-pack),2,3.84,2019-06-12 09:31:00,182 Madison St, Atlanta,GA,30301 +216230,Bose SoundSport Headphones,1,99.99,2019-06-09 21:45:00,975 Walnut St, Los Angeles,CA,90001 +216231,USB-C Charging Cable,1,11.95,2019-06-14 15:50:00,394 Jackson St, San Francisco,CA,94016 +216232,AAA Batteries (4-pack),1,2.99,2019-06-13 14:04:00,336 Highland St, San Francisco,CA,94016 +216233,34in Ultrawide Monitor,1,379.99,2019-06-01 17:20:00,528 Cedar St, Boston,MA,02215 +216234,Lightning Charging Cable,1,14.95,2019-06-14 13:09:00,921 13th St, San Francisco,CA,94016 +216235,Macbook Pro Laptop,1,1700.0,2019-06-21 22:12:00,162 Cherry St, San Francisco,CA,94016 +216236,USB-C Charging Cable,1,11.95,2019-06-10 02:11:00,195 Jackson St, Seattle,WA,98101 +216237,AA Batteries (4-pack),1,3.84,2019-06-20 15:28:00,21 12th St, San Francisco,CA,94016 +216238,Apple Airpods Headphones,1,150.0,2019-06-15 23:34:00,568 Johnson St, Atlanta,GA,30301 +216239,27in FHD Monitor,1,149.99,2019-06-29 20:12:00,632 Dogwood St, Boston,MA,02215 +216240,AA Batteries (4-pack),1,3.84,2019-06-10 00:05:00,388 Wilson St, Los Angeles,CA,90001 +216241,Bose SoundSport Headphones,1,99.99,2019-06-28 14:16:00,163 Elm St, San Francisco,CA,94016 +216242,27in 4K Gaming Monitor,1,389.99,2019-06-29 12:09:00,621 Spruce St, Los Angeles,CA,90001 +216243,AAA Batteries (4-pack),1,2.99,2019-06-04 14:58:00,406 Elm St, Los Angeles,CA,90001 +216244,27in FHD Monitor,1,149.99,2019-06-16 14:50:00,272 4th St, San Francisco,CA,94016 +216245,ThinkPad Laptop,1,999.99,2019-06-14 22:13:00,299 Cedar St, New York City,NY,10001 +216246,Vareebadd Phone,1,400.0,2019-06-19 00:03:00,110 Washington St, San Francisco,CA,94016 +216247,27in FHD Monitor,1,149.99,2019-06-23 19:30:00,668 8th St, San Francisco,CA,94016 +216248,27in 4K Gaming Monitor,1,389.99,2019-06-16 20:42:00,994 Wilson St, Los Angeles,CA,90001 +216248,Apple Airpods Headphones,1,150.0,2019-06-16 20:42:00,994 Wilson St, Los Angeles,CA,90001 +216249,Wired Headphones,1,11.99,2019-06-15 20:16:00,318 14th St, Dallas,TX,75001 +216250,Bose SoundSport Headphones,1,99.99,2019-06-05 15:57:00,605 2nd St, San Francisco,CA,94016 +216251,Apple Airpods Headphones,1,150.0,2019-06-08 20:50:00,813 Dogwood St, Los Angeles,CA,90001 +216252,Google Phone,1,600.0,2019-06-21 09:19:00,695 Cedar St, Los Angeles,CA,90001 +216253,AAA Batteries (4-pack),1,2.99,2019-06-13 08:35:00,380 1st St, Austin,TX,73301 +216254,Flatscreen TV,1,300.0,2019-06-21 21:19:00,217 Lincoln St, Los Angeles,CA,90001 +216255,USB-C Charging Cable,1,11.95,2019-06-12 11:11:00,212 Main St, Austin,TX,73301 +216256,ThinkPad Laptop,1,999.99,2019-06-18 02:05:00,865 Ridge St, Los Angeles,CA,90001 +216257,Lightning Charging Cable,1,14.95,2019-06-20 17:47:00,83 Center St, San Francisco,CA,94016 +216258,Wired Headphones,1,11.99,2019-06-08 19:29:00,374 8th St, Dallas,TX,75001 +216259,Wired Headphones,1,11.99,2019-06-15 16:29:00,371 Church St, San Francisco,CA,94016 +216260,Wired Headphones,1,11.99,2019-06-08 14:40:00,94 Willow St, San Francisco,CA,94016 +216261,AAA Batteries (4-pack),1,2.99,2019-06-15 07:59:00,514 Adams St, San Francisco,CA,94016 +216262,34in Ultrawide Monitor,1,379.99,2019-06-30 22:12:00,486 River St, San Francisco,CA,94016 +216263,Wired Headphones,1,11.99,2019-06-19 23:46:00,937 Wilson St, Portland,OR,97035 +216264,iPhone,1,700.0,2019-06-29 20:22:00,392 Church St, Dallas,TX,75001 +216265,Wired Headphones,1,11.99,2019-06-03 17:01:00,100 Jefferson St, Dallas,TX,75001 +216266,AA Batteries (4-pack),2,3.84,2019-06-06 18:32:00,225 Washington St, Los Angeles,CA,90001 +216267,Apple Airpods Headphones,1,150.0,2019-06-26 22:10:00,884 6th St, Austin,TX,73301 +216268,27in 4K Gaming Monitor,1,389.99,2019-06-12 21:41:00,14 Cherry St, Portland,OR,97035 +216269,34in Ultrawide Monitor,1,379.99,2019-06-27 17:59:00,65 Jefferson St, New York City,NY,10001 +216270,Flatscreen TV,1,300.0,2019-06-18 17:48:00,334 Lincoln St, Dallas,TX,75001 +216271,Apple Airpods Headphones,1,150.0,2019-06-28 00:26:00,117 8th St, San Francisco,CA,94016 +216272,27in 4K Gaming Monitor,1,389.99,2019-06-04 09:51:00,44 5th St, Seattle,WA,98101 +216273,Apple Airpods Headphones,1,150.0,2019-06-03 20:26:00,408 Johnson St, Atlanta,GA,30301 +216274,Bose SoundSport Headphones,1,99.99,2019-06-26 22:50:00,620 Walnut St, Atlanta,GA,30301 +216275,Lightning Charging Cable,1,14.95,2019-06-15 11:50:00,482 Cedar St, San Francisco,CA,94016 +216276,Lightning Charging Cable,1,14.95,2019-06-27 23:50:00,21 Highland St, Atlanta,GA,30301 +216277,Lightning Charging Cable,2,14.95,2019-06-02 08:48:00,254 Forest St, Los Angeles,CA,90001 +216278,Lightning Charging Cable,1,14.95,2019-06-20 18:05:00,498 Ridge St, San Francisco,CA,94016 +216279,AA Batteries (4-pack),1,3.84,2019-06-18 10:14:00,73 10th St, Los Angeles,CA,90001 +216280,27in 4K Gaming Monitor,1,389.99,2019-06-20 10:54:00,263 Cherry St, Atlanta,GA,30301 +216281,Bose SoundSport Headphones,1,99.99,2019-06-18 16:43:00,304 Wilson St, Atlanta,GA,30301 +216282,USB-C Charging Cable,1,11.95,2019-06-20 17:22:00,625 Hill St, Dallas,TX,75001 +216283,Macbook Pro Laptop,1,1700.0,2019-06-04 09:20:00,815 Adams St, San Francisco,CA,94016 +216284,Lightning Charging Cable,1,14.95,2019-06-11 18:27:00,375 Wilson St, San Francisco,CA,94016 +216285,LG Washing Machine,1,600.0,2019-06-20 22:55:00,410 Spruce St, San Francisco,CA,94016 +216286,20in Monitor,1,109.99,2019-06-06 12:00:00,194 Pine St, Portland,ME,04101 +216287,Wired Headphones,1,11.99,2019-06-29 21:46:00,475 14th St, Seattle,WA,98101 +216288,iPhone,1,700.0,2019-06-28 01:49:00,736 North St, Boston,MA,02215 +216289,Wired Headphones,1,11.99,2019-06-04 15:43:00,238 Jackson St, Portland,ME,04101 +216290,27in FHD Monitor,1,149.99,2019-06-30 11:46:00,956 5th St, Austin,TX,73301 +216291,Apple Airpods Headphones,1,150.0,2019-06-30 05:24:00,915 2nd St, San Francisco,CA,94016 +216292,Lightning Charging Cable,1,14.95,2019-06-08 17:38:00,439 Spruce St, Dallas,TX,75001 +216293,AAA Batteries (4-pack),2,2.99,2019-06-22 19:50:00,667 Park St, New York City,NY,10001 +216294,Wired Headphones,1,11.99,2019-06-03 00:15:00,525 West St, Dallas,TX,75001 +216295,USB-C Charging Cable,1,11.95,2019-06-08 17:48:00,626 Hill St, San Francisco,CA,94016 +216296,Flatscreen TV,1,300.0,2019-06-25 11:55:00,445 11th St, Los Angeles,CA,90001 +216297,Bose SoundSport Headphones,1,99.99,2019-06-16 13:23:00,569 Park St, San Francisco,CA,94016 +216298,USB-C Charging Cable,1,11.95,2019-06-10 19:27:00,964 8th St, New York City,NY,10001 +216299,AA Batteries (4-pack),1,3.84,2019-06-10 19:14:00,672 Maple St, Atlanta,GA,30301 +216300,AA Batteries (4-pack),2,3.84,2019-06-27 13:21:00,931 Hickory St, New York City,NY,10001 +216301,AA Batteries (4-pack),3,3.84,2019-06-07 11:11:00,702 Madison St, Portland,ME,04101 +216302,iPhone,1,700.0,2019-06-26 16:30:00,738 8th St, New York City,NY,10001 +216303,Flatscreen TV,1,300.0,2019-06-24 12:48:00,724 12th St, New York City,NY,10001 +216304,AAA Batteries (4-pack),1,2.99,2019-06-02 18:39:00,434 Madison St, San Francisco,CA,94016 +216305,Bose SoundSport Headphones,1,99.99,2019-06-30 05:14:00,904 Main St, San Francisco,CA,94016 +216306,Wired Headphones,2,11.99,2019-06-09 11:46:00,797 Jefferson St, Portland,ME,04101 +216307,Bose SoundSport Headphones,1,99.99,2019-06-12 17:39:00,260 10th St, San Francisco,CA,94016 +216308,AA Batteries (4-pack),1,3.84,2019-06-22 13:05:00,809 14th St, New York City,NY,10001 +216309,Apple Airpods Headphones,1,150.0,2019-06-09 15:05:00,708 Elm St, San Francisco,CA,94016 +216310,Flatscreen TV,1,300.0,2019-06-23 22:52:00,120 Jackson St, Portland,OR,97035 +216311,USB-C Charging Cable,1,11.95,2019-06-13 07:37:00,95 Madison St, Los Angeles,CA,90001 +216312,27in 4K Gaming Monitor,1,389.99,2019-06-22 16:02:00,817 Church St, Boston,MA,02215 +216313,34in Ultrawide Monitor,1,379.99,2019-06-20 10:48:00,881 Pine St, Portland,OR,97035 +216314,27in 4K Gaming Monitor,1,389.99,2019-06-29 20:37:00,300 Willow St, Seattle,WA,98101 +216315,20in Monitor,1,109.99,2019-06-15 15:48:00,430 Meadow St, Los Angeles,CA,90001 +216316,Macbook Pro Laptop,1,1700.0,2019-06-07 18:41:00,564 Lincoln St, Dallas,TX,75001 +216317,AA Batteries (4-pack),1,3.84,2019-06-02 12:43:00,997 Wilson St, Austin,TX,73301 +216318,Macbook Pro Laptop,1,1700.0,2019-06-27 09:16:00,805 Sunset St, Los Angeles,CA,90001 +216319,Bose SoundSport Headphones,1,99.99,2019-06-24 11:48:00,946 7th St, Dallas,TX,75001 +216320,AAA Batteries (4-pack),1,2.99,2019-06-27 19:11:00,929 Main St, San Francisco,CA,94016 +216321,USB-C Charging Cable,1,11.95,2019-06-19 16:11:00,586 Wilson St, Seattle,WA,98101 +216322,Lightning Charging Cable,1,14.95,2019-06-19 13:57:00,673 8th St, Seattle,WA,98101 +216323,Flatscreen TV,1,300.0,2019-06-28 11:53:00,606 Adams St, Los Angeles,CA,90001 +216324,34in Ultrawide Monitor,1,379.99,2019-06-01 23:47:00,785 Lincoln St, Boston,MA,02215 +216325,AAA Batteries (4-pack),1,2.99,2019-06-14 05:58:00,485 10th St, Boston,MA,02215 +216326,AAA Batteries (4-pack),1,2.99,2019-06-18 20:59:00,162 Main St, Los Angeles,CA,90001 +216327,USB-C Charging Cable,1,11.95,2019-06-17 14:14:00,504 Willow St, Portland,OR,97035 +216328,Lightning Charging Cable,1,14.95,2019-06-07 03:04:00,343 North St, Dallas,TX,75001 +216329,27in FHD Monitor,1,149.99,2019-06-18 22:33:00,578 Cherry St, Atlanta,GA,30301 +216330,Lightning Charging Cable,1,14.95,2019-06-07 09:57:00,988 Chestnut St, Dallas,TX,75001 +216331,20in Monitor,1,109.99,2019-06-18 18:16:00,688 Main St, Atlanta,GA,30301 +216332,AA Batteries (4-pack),1,3.84,2019-06-07 16:27:00,720 7th St, New York City,NY,10001 +216333,AAA Batteries (4-pack),1,2.99,2019-06-20 14:21:00,662 Willow St, Seattle,WA,98101 +216334,Flatscreen TV,1,300.0,2019-06-15 14:27:00,596 12th St, New York City,NY,10001 +216335,34in Ultrawide Monitor,1,379.99,2019-06-25 20:24:00,995 Chestnut St, New York City,NY,10001 +216336,20in Monitor,1,109.99,2019-06-04 22:06:00,661 Pine St, San Francisco,CA,94016 +216337,Google Phone,1,600.0,2019-06-23 19:04:00,348 South St, Los Angeles,CA,90001 +216337,USB-C Charging Cable,1,11.95,2019-06-23 19:04:00,348 South St, Los Angeles,CA,90001 +216338,Wired Headphones,1,11.99,2019-06-02 18:49:00,583 6th St, Boston,MA,02215 +216339,USB-C Charging Cable,1,11.95,2019-06-25 09:59:00,617 Ridge St, Dallas,TX,75001 +216340,Bose SoundSport Headphones,1,99.99,2019-06-28 17:20:00,570 Dogwood St, San Francisco,CA,94016 +216341,USB-C Charging Cable,2,11.95,2019-06-03 05:03:00,276 Wilson St, Los Angeles,CA,90001 +216342,Lightning Charging Cable,1,14.95,2019-06-06 18:53:00,550 Sunset St, Seattle,WA,98101 +216343,Google Phone,1,600.0,2019-06-13 13:39:00,43 Sunset St, Austin,TX,73301 +216344,Wired Headphones,1,11.99,2019-06-03 09:30:00,580 Willow St, Dallas,TX,75001 +216345,Lightning Charging Cable,1,14.95,2019-06-10 10:31:00,205 4th St, Austin,TX,73301 +216346,Vareebadd Phone,1,400.0,2019-06-13 14:54:00,730 7th St, Atlanta,GA,30301 +216347,Google Phone,1,600.0,2019-06-26 10:58:00,967 4th St, Seattle,WA,98101 +216348,Lightning Charging Cable,1,14.95,2019-06-06 16:48:00,577 South St, Seattle,WA,98101 +216349,Lightning Charging Cable,1,14.95,2019-06-03 15:22:00,444 Walnut St, San Francisco,CA,94016 +216350,USB-C Charging Cable,1,11.95,2019-06-28 20:11:00,270 Pine St, Dallas,TX,75001 +216351,Wired Headphones,1,11.99,2019-06-26 12:14:00,180 Hill St, Portland,OR,97035 +216352,Bose SoundSport Headphones,1,99.99,2019-06-16 17:39:00,28 Adams St, Seattle,WA,98101 +216352,Flatscreen TV,1,300.0,2019-06-16 17:39:00,28 Adams St, Seattle,WA,98101 +216353,Lightning Charging Cable,1,14.95,2019-06-07 13:47:00,181 Pine St, New York City,NY,10001 +216354,Vareebadd Phone,1,400.0,2019-06-04 13:22:00,577 Park St, Portland,OR,97035 +216355,iPhone,1,700.0,2019-06-11 22:07:00,427 1st St, Dallas,TX,75001 +216356,USB-C Charging Cable,1,11.95,2019-06-11 18:17:00,12 Center St, Los Angeles,CA,90001 +216357,Macbook Pro Laptop,1,1700.0,2019-06-26 19:16:00,447 6th St, Atlanta,GA,30301 +216358,Lightning Charging Cable,2,14.95,2019-06-24 21:47:00,569 Center St, Los Angeles,CA,90001 +216359,AA Batteries (4-pack),1,3.84,2019-06-18 13:08:00,701 Center St, San Francisco,CA,94016 +216360,AA Batteries (4-pack),1,3.84,2019-06-07 20:47:00,67 Cherry St, San Francisco,CA,94016 +216361,Macbook Pro Laptop,1,1700.0,2019-06-12 13:44:00,36 Wilson St, San Francisco,CA,94016 +216362,Apple Airpods Headphones,1,150.0,2019-06-18 22:50:00,226 Highland St, Dallas,TX,75001 +216363,Lightning Charging Cable,2,14.95,2019-06-26 19:26:00,472 Center St, San Francisco,CA,94016 +216364,20in Monitor,1,109.99,2019-06-17 16:27:00,263 Lake St, Los Angeles,CA,90001 +216365,Wired Headphones,2,11.99,2019-06-07 17:47:00,146 North St, Austin,TX,73301 +216366,Bose SoundSport Headphones,1,99.99,2019-06-15 23:01:00,439 1st St, Los Angeles,CA,90001 +216367,Apple Airpods Headphones,1,150.0,2019-06-28 19:10:00,748 11th St, Boston,MA,02215 +216368,Lightning Charging Cable,1,14.95,2019-06-29 06:30:00,91 8th St, Portland,OR,97035 +216369,Apple Airpods Headphones,1,150.0,2019-06-13 10:33:00,228 Cedar St, Los Angeles,CA,90001 +216370,AAA Batteries (4-pack),2,2.99,2019-06-07 01:33:00,724 Cherry St, Seattle,WA,98101 +216371,USB-C Charging Cable,1,11.95,2019-06-21 16:14:00,562 Park St, Los Angeles,CA,90001 +216372,AA Batteries (4-pack),1,3.84,2019-06-22 19:58:00,715 Jackson St, Dallas,TX,75001 +216373,Bose SoundSport Headphones,1,99.99,2019-06-23 14:18:00,990 Lake St, Dallas,TX,75001 +216374,27in FHD Monitor,1,149.99,2019-06-17 22:21:00,245 2nd St, Los Angeles,CA,90001 +216375,AAA Batteries (4-pack),1,2.99,2019-06-20 19:28:00,148 Walnut St, San Francisco,CA,94016 +216376,AAA Batteries (4-pack),3,2.99,2019-06-05 22:39:00,928 Lakeview St, New York City,NY,10001 +216377,34in Ultrawide Monitor,1,379.99,2019-06-23 22:14:00,322 Walnut St, Dallas,TX,75001 +216378,27in FHD Monitor,1,149.99,2019-06-27 19:20:00,432 Lakeview St, Los Angeles,CA,90001 +216379,Bose SoundSport Headphones,1,99.99,2019-06-10 16:52:00,516 Madison St, San Francisco,CA,94016 +216380,Wired Headphones,1,11.99,2019-06-04 09:45:00,843 Johnson St, Los Angeles,CA,90001 +216381,Wired Headphones,1,11.99,2019-06-01 15:06:00,856 13th St, Portland,OR,97035 +216382,27in FHD Monitor,1,149.99,2019-06-05 15:38:00,442 10th St, Los Angeles,CA,90001 +216383,Bose SoundSport Headphones,1,99.99,2019-06-06 17:46:00,193 Lake St, Boston,MA,02215 +216384,20in Monitor,1,109.99,2019-06-02 20:55:00,801 9th St, Los Angeles,CA,90001 +216385,USB-C Charging Cable,1,11.95,2019-06-13 14:27:00,586 Sunset St, New York City,NY,10001 +216386,AA Batteries (4-pack),1,3.84,2019-06-19 16:16:00,108 8th St, Boston,MA,02215 +216387,Lightning Charging Cable,1,14.95,2019-06-14 06:50:00,142 Park St, Boston,MA,02215 +216388,USB-C Charging Cable,1,11.95,2019-06-16 09:03:00,530 8th St, San Francisco,CA,94016 +216389,AA Batteries (4-pack),1,3.84,2019-06-27 10:19:00,132 Main St, New York City,NY,10001 +216390,Bose SoundSport Headphones,1,99.99,2019-06-12 20:30:00,207 Madison St, Los Angeles,CA,90001 +216391,Wired Headphones,1,11.99,2019-06-12 15:26:00,630 4th St, Boston,MA,02215 +216392,Flatscreen TV,1,300.0,2019-06-09 14:28:00,976 Washington St, New York City,NY,10001 +216393,Lightning Charging Cable,1,14.95,2019-06-28 17:33:00,427 Hill St, New York City,NY,10001 +216394,Bose SoundSport Headphones,1,99.99,2019-06-02 15:09:00,952 4th St, San Francisco,CA,94016 +216395,Macbook Pro Laptop,1,1700.0,2019-06-18 12:20:00,542 South St, Los Angeles,CA,90001 +216396,AAA Batteries (4-pack),2,2.99,2019-06-09 11:18:00,547 2nd St, Seattle,WA,98101 +216397,AA Batteries (4-pack),1,3.84,2019-06-13 20:53:00,304 Wilson St, New York City,NY,10001 +216398,Wired Headphones,1,11.99,2019-06-30 11:37:00,349 Hill St, Seattle,WA,98101 +216399,AA Batteries (4-pack),1,3.84,2019-06-02 13:28:00,325 Cedar St, San Francisco,CA,94016 +216400,34in Ultrawide Monitor,1,379.99,2019-06-02 11:49:00,697 Center St, Boston,MA,02215 +216401,USB-C Charging Cable,1,11.95,2019-06-02 15:21:00,293 Center St, New York City,NY,10001 +216402,AA Batteries (4-pack),1,3.84,2019-06-18 19:11:00,573 Highland St, San Francisco,CA,94016 +216403,Lightning Charging Cable,1,14.95,2019-06-25 22:34:00,169 Elm St, San Francisco,CA,94016 +216404,Wired Headphones,1,11.99,2019-06-19 11:06:00,532 Lake St, Seattle,WA,98101 +216405,Apple Airpods Headphones,1,150.0,2019-06-16 22:58:00,374 Chestnut St, Boston,MA,02215 +216406,Bose SoundSport Headphones,1,99.99,2019-06-29 17:25:00,196 North St, New York City,NY,10001 +216407,Wired Headphones,1,11.99,2019-06-26 12:28:00,232 4th St, Los Angeles,CA,90001 +216408,Flatscreen TV,1,300.0,2019-06-20 16:52:00,201 11th St, New York City,NY,10001 +216409,Lightning Charging Cable,1,14.95,2019-06-29 13:00:00,874 Elm St, New York City,NY,10001 +216410,Apple Airpods Headphones,1,150.0,2019-06-13 18:32:00,279 2nd St, San Francisco,CA,94016 +216411,Wired Headphones,1,11.99,2019-06-10 23:54:00,865 Willow St, San Francisco,CA,94016 +216412,Lightning Charging Cable,1,14.95,2019-06-13 18:32:00,504 Pine St, Portland,OR,97035 +216413,AAA Batteries (4-pack),2,2.99,2019-06-14 16:01:00,231 South St, New York City,NY,10001 +216414,Lightning Charging Cable,1,14.95,2019-06-29 09:02:00,522 Hill St, Atlanta,GA,30301 +216415,Bose SoundSport Headphones,1,99.99,2019-06-27 22:49:00,147 Pine St, San Francisco,CA,94016 +216416,USB-C Charging Cable,1,11.95,2019-06-22 09:57:00,518 8th St, Atlanta,GA,30301 +216417,iPhone,1,700.0,2019-06-21 20:02:00,563 Maple St, Dallas,TX,75001 +216418,Lightning Charging Cable,1,14.95,2019-06-23 10:59:00,482 North St, San Francisco,CA,94016 +216419,Lightning Charging Cable,1,14.95,2019-06-01 18:33:00,552 Washington St, New York City,NY,10001 +216420,34in Ultrawide Monitor,1,379.99,2019-06-18 22:53:00,751 Jefferson St, San Francisco,CA,94016 +216421,Wired Headphones,1,11.99,2019-06-17 21:24:00,261 12th St, San Francisco,CA,94016 +216422,Lightning Charging Cable,1,14.95,2019-06-27 14:21:00,534 Church St, San Francisco,CA,94016 +216423,ThinkPad Laptop,1,999.99,2019-06-24 12:54:00,810 Johnson St, San Francisco,CA,94016 +216424,AA Batteries (4-pack),1,3.84,2019-06-01 10:27:00,892 Park St, Dallas,TX,75001 +216425,Lightning Charging Cable,1,14.95,2019-06-10 19:03:00,203 Park St, San Francisco,CA,94016 +216426,Lightning Charging Cable,1,14.95,2019-06-23 13:30:00,687 Willow St, Boston,MA,02215 +216427,Lightning Charging Cable,1,14.95,2019-06-22 19:47:00,105 South St, San Francisco,CA,94016 +216428,AA Batteries (4-pack),1,3.84,2019-06-26 11:42:00,335 8th St, San Francisco,CA,94016 +216429,Wired Headphones,1,11.99,2019-06-26 15:53:00,260 Hickory St, Boston,MA,02215 +216430,Lightning Charging Cable,1,14.95,2019-06-08 13:59:00,524 5th St, San Francisco,CA,94016 +216431,Vareebadd Phone,1,400.0,2019-07-01 02:53:00,640 Cherry St, Dallas,TX,75001 +216431,Google Phone,1,600.0,2019-07-01 02:53:00,640 Cherry St, Dallas,TX,75001 +216432,34in Ultrawide Monitor,1,379.99,2019-06-07 17:41:00,319 Forest St, Atlanta,GA,30301 +216433,Apple Airpods Headphones,1,150.0,2019-06-24 13:59:00,158 4th St, Portland,OR,97035 +216434,Wired Headphones,1,11.99,2019-06-01 21:29:00,686 7th St, Dallas,TX,75001 +216435,Apple Airpods Headphones,1,150.0,2019-06-21 17:15:00,996 Lake St, Los Angeles,CA,90001 +216436,Macbook Pro Laptop,1,1700.0,2019-06-13 17:42:00,375 11th St, San Francisco,CA,94016 +216437,27in FHD Monitor,1,149.99,2019-06-10 21:35:00,32 South St, Boston,MA,02215 +216438,34in Ultrawide Monitor,1,379.99,2019-06-18 17:12:00,214 Ridge St, New York City,NY,10001 +216439,AA Batteries (4-pack),1,3.84,2019-06-02 22:55:00,29 1st St, Los Angeles,CA,90001 +216440,Bose SoundSport Headphones,1,99.99,2019-06-25 23:08:00,897 11th St, Seattle,WA,98101 +216441,AA Batteries (4-pack),3,3.84,2019-06-03 23:50:00,717 2nd St, San Francisco,CA,94016 +216442,Wired Headphones,1,11.99,2019-06-06 13:45:00,450 North St, Atlanta,GA,30301 +216443,AAA Batteries (4-pack),3,2.99,2019-06-03 19:42:00,322 Hickory St, Boston,MA,02215 +216444,Wired Headphones,2,11.99,2019-06-10 14:07:00,123 5th St, Los Angeles,CA,90001 +216445,USB-C Charging Cable,1,11.95,2019-06-12 20:46:00,312 Hill St, Portland,OR,97035 +216446,27in FHD Monitor,1,149.99,2019-06-06 13:14:00,439 Lake St, New York City,NY,10001 +216447,20in Monitor,1,109.99,2019-06-17 10:38:00,670 Willow St, San Francisco,CA,94016 +216448,27in FHD Monitor,1,149.99,2019-06-08 23:08:00,265 13th St, Los Angeles,CA,90001 +216449,Wired Headphones,2,11.99,2019-06-04 10:09:00,652 Cedar St, San Francisco,CA,94016 +216450,AA Batteries (4-pack),1,3.84,2019-06-19 15:14:00,826 11th St, San Francisco,CA,94016 +216451,AAA Batteries (4-pack),1,2.99,2019-06-19 15:27:00,899 Ridge St, San Francisco,CA,94016 +216452,20in Monitor,1,109.99,2019-06-24 15:31:00,883 Jackson St, Atlanta,GA,30301 +216453,AA Batteries (4-pack),1,3.84,2019-06-12 13:18:00,263 13th St, Austin,TX,73301 +216454,ThinkPad Laptop,1,999.99,2019-06-12 09:29:00,377 7th St, Portland,OR,97035 +216455,Lightning Charging Cable,1,14.95,2019-06-16 00:18:00,865 Johnson St, Dallas,TX,75001 +216456,AA Batteries (4-pack),1,3.84,2019-06-29 15:06:00,340 Adams St, San Francisco,CA,94016 +216457,AAA Batteries (4-pack),1,2.99,2019-06-28 19:53:00,299 14th St, Seattle,WA,98101 +216458,Flatscreen TV,1,300.0,2019-06-15 14:55:00,124 Park St, Atlanta,GA,30301 +216459,Lightning Charging Cable,1,14.95,2019-06-12 16:24:00,378 Hickory St, San Francisco,CA,94016 +216460,USB-C Charging Cable,1,11.95,2019-06-01 17:11:00,98 Jefferson St, Los Angeles,CA,90001 +216461,Wired Headphones,1,11.99,2019-06-15 10:31:00,676 6th St, Dallas,TX,75001 +216462,AA Batteries (4-pack),1,3.84,2019-06-19 16:01:00,686 8th St, Atlanta,GA,30301 +216463,AA Batteries (4-pack),1,3.84,2019-06-16 22:49:00,181 11th St, San Francisco,CA,94016 +216464,USB-C Charging Cable,1,11.95,2019-06-14 14:54:00,19 Jefferson St, Los Angeles,CA,90001 +216465,AA Batteries (4-pack),1,3.84,2019-06-08 06:56:00,231 Willow St, New York City,NY,10001 +216466,AAA Batteries (4-pack),1,2.99,2019-06-03 08:58:00,779 Walnut St, Seattle,WA,98101 +216467,Bose SoundSport Headphones,1,99.99,2019-06-08 17:48:00,844 14th St, Los Angeles,CA,90001 +216468,20in Monitor,1,109.99,2019-06-21 12:38:00,122 Johnson St, San Francisco,CA,94016 +216469,20in Monitor,1,109.99,2019-06-24 19:54:00,687 8th St, New York City,NY,10001 +216470,AAA Batteries (4-pack),1,2.99,2019-06-08 09:17:00,134 14th St, Austin,TX,73301 +216471,Apple Airpods Headphones,1,150.0,2019-06-24 18:43:00,42 Dogwood St, Boston,MA,02215 +216472,Bose SoundSport Headphones,1,99.99,2019-06-19 19:38:00,407 Main St, San Francisco,CA,94016 +216473,Apple Airpods Headphones,1,150.0,2019-06-24 01:22:00,452 Ridge St, Los Angeles,CA,90001 +216474,Lightning Charging Cable,1,14.95,2019-06-28 09:14:00,812 Walnut St, Seattle,WA,98101 +216475,27in FHD Monitor,1,149.99,2019-06-30 01:25:00,104 Wilson St, San Francisco,CA,94016 +216476,Bose SoundSport Headphones,1,99.99,2019-06-04 22:27:00,385 6th St, Dallas,TX,75001 +216477,Bose SoundSport Headphones,1,99.99,2019-06-08 18:54:00,160 Highland St, Dallas,TX,75001 +216478,USB-C Charging Cable,1,11.95,2019-06-17 11:29:00,118 6th St, New York City,NY,10001 +216479,Apple Airpods Headphones,1,150.0,2019-06-24 03:49:00,574 Chestnut St, San Francisco,CA,94016 +216480,Wired Headphones,1,11.99,2019-06-12 10:19:00,86 Elm St, New York City,NY,10001 +216481,Bose SoundSport Headphones,1,99.99,2019-06-16 19:48:00,332 North St, Boston,MA,02215 +216482,27in FHD Monitor,1,149.99,2019-06-21 18:59:00,924 1st St, Seattle,WA,98101 +216483,USB-C Charging Cable,1,11.95,2019-06-03 18:35:00,839 Meadow St, Boston,MA,02215 +216484,AAA Batteries (4-pack),2,2.99,2019-06-26 21:50:00,170 8th St, Portland,ME,04101 +216485,iPhone,1,700.0,2019-06-09 14:58:00,284 14th St, San Francisco,CA,94016 +216486,USB-C Charging Cable,1,11.95,2019-06-28 20:50:00,201 West St, Dallas,TX,75001 +216487,Lightning Charging Cable,1,14.95,2019-06-07 15:22:00,595 Pine St, New York City,NY,10001 +216488,AAA Batteries (4-pack),2,2.99,2019-06-24 13:09:00,544 Main St, Dallas,TX,75001 +216489,27in FHD Monitor,1,149.99,2019-06-16 17:52:00,845 7th St, Dallas,TX,75001 +216490,AA Batteries (4-pack),1,3.84,2019-06-13 17:59:00,753 Jackson St, Dallas,TX,75001 +216491,Bose SoundSport Headphones,1,99.99,2019-06-23 08:53:00,234 Lake St, San Francisco,CA,94016 +216492,Wired Headphones,1,11.99,2019-06-10 15:38:00,578 Adams St, Dallas,TX,75001 +216493,27in FHD Monitor,1,149.99,2019-06-02 05:12:00,636 Hill St, San Francisco,CA,94016 +216494,Bose SoundSport Headphones,1,99.99,2019-06-04 13:35:00,634 Center St, Dallas,TX,75001 +216495,Apple Airpods Headphones,1,150.0,2019-06-24 06:55:00,621 10th St, Portland,ME,04101 +216496,Lightning Charging Cable,1,14.95,2019-06-05 17:51:00,466 Forest St, Seattle,WA,98101 +216497,Bose SoundSport Headphones,1,99.99,2019-06-01 19:59:00,752 2nd St, San Francisco,CA,94016 +216498,AAA Batteries (4-pack),1,2.99,2019-06-22 11:40:00,64 West St, San Francisco,CA,94016 +216499,Apple Airpods Headphones,1,150.0,2019-06-22 15:42:00,649 Pine St, Portland,OR,97035 +216500,AA Batteries (4-pack),2,3.84,2019-06-07 18:46:00,486 8th St, Seattle,WA,98101 +216501,Bose SoundSport Headphones,1,99.99,2019-06-11 23:47:00,669 Park St, New York City,NY,10001 +216502,AA Batteries (4-pack),3,3.84,2019-06-19 15:15:00,280 1st St, Atlanta,GA,30301 +216503,AA Batteries (4-pack),1,3.84,2019-06-16 05:27:00,179 Walnut St, Austin,TX,73301 +216504,AA Batteries (4-pack),1,3.84,2019-06-05 07:06:00,923 Lincoln St, New York City,NY,10001 +216505,Macbook Pro Laptop,1,1700.0,2019-06-23 19:37:00,944 6th St, Los Angeles,CA,90001 +216506,27in FHD Monitor,1,149.99,2019-06-24 19:03:00,583 13th St, Boston,MA,02215 +216507,27in FHD Monitor,1,149.99,2019-06-14 00:33:00,751 10th St, San Francisco,CA,94016 +216508,AAA Batteries (4-pack),1,2.99,2019-06-28 15:42:00,532 Lake St, San Francisco,CA,94016 +216509,34in Ultrawide Monitor,1,379.99,2019-06-26 22:27:00,879 Washington St, San Francisco,CA,94016 +216510,AA Batteries (4-pack),3,3.84,2019-06-22 09:13:00,258 Johnson St, Seattle,WA,98101 +216511,Lightning Charging Cable,1,14.95,2019-06-29 14:07:00,306 Wilson St, San Francisco,CA,94016 +216512,Lightning Charging Cable,1,14.95,2019-06-12 17:19:00,479 North St, Los Angeles,CA,90001 +216513,Bose SoundSport Headphones,1,99.99,2019-06-02 21:52:00,324 Center St, New York City,NY,10001 +216514,USB-C Charging Cable,1,11.95,2019-06-03 20:56:00,73 Sunset St, Dallas,TX,75001 +216515,Bose SoundSport Headphones,1,99.99,2019-06-05 21:22:00,282 Ridge St, Atlanta,GA,30301 +216516,AA Batteries (4-pack),3,3.84,2019-06-29 19:17:00,230 14th St, Boston,MA,02215 +216517,Bose SoundSport Headphones,1,99.99,2019-06-06 13:02:00,762 Lakeview St, San Francisco,CA,94016 +216518,AA Batteries (4-pack),1,3.84,2019-06-26 18:08:00,862 Forest St, Seattle,WA,98101 +216519,Lightning Charging Cable,1,14.95,2019-06-11 18:30:00,488 Lincoln St, Dallas,TX,75001 +216520,AAA Batteries (4-pack),1,2.99,2019-06-26 17:24:00,965 1st St, Boston,MA,02215 +216521,Apple Airpods Headphones,1,150.0,2019-06-23 14:55:00,282 Pine St, New York City,NY,10001 +216522,AAA Batteries (4-pack),1,2.99,2019-06-09 16:53:00,656 Chestnut St, Atlanta,GA,30301 +216523,Lightning Charging Cable,1,14.95,2019-06-18 15:58:00,731 Forest St, Portland,ME,04101 +216524,ThinkPad Laptop,1,999.99,2019-06-22 10:50:00,474 Forest St, Seattle,WA,98101 +216525,AA Batteries (4-pack),2,3.84,2019-06-29 22:42:00,255 9th St, Portland,OR,97035 +216526,Flatscreen TV,1,300.0,2019-06-07 17:28:00,944 Ridge St, Los Angeles,CA,90001 +216527,Bose SoundSport Headphones,1,99.99,2019-06-05 19:43:00,664 Spruce St, Portland,OR,97035 +216528,Wired Headphones,1,11.99,2019-06-08 12:50:00,498 Ridge St, Boston,MA,02215 +216529,AAA Batteries (4-pack),1,2.99,2019-06-05 22:47:00,665 Maple St, San Francisco,CA,94016 +216530,USB-C Charging Cable,1,11.95,2019-06-14 11:43:00,648 Cedar St, Portland,OR,97035 +216531,Apple Airpods Headphones,1,150.0,2019-06-14 09:55:00,673 Highland St, Boston,MA,02215 +216532,Lightning Charging Cable,1,14.95,2019-06-22 10:30:00,268 West St, New York City,NY,10001 +216533,34in Ultrawide Monitor,1,379.99,2019-06-05 18:08:00,215 Spruce St, San Francisco,CA,94016 +216534,27in 4K Gaming Monitor,1,389.99,2019-06-03 18:15:00,914 South St, New York City,NY,10001 +216535,Lightning Charging Cable,1,14.95,2019-06-25 13:08:00,188 11th St, Los Angeles,CA,90001 +216536,AA Batteries (4-pack),1,3.84,2019-06-29 18:19:00,345 Jackson St, Los Angeles,CA,90001 +216537,Bose SoundSport Headphones,1,99.99,2019-06-28 14:54:00,860 8th St, New York City,NY,10001 +216538,Macbook Pro Laptop,1,1700.0,2019-06-06 15:17:00,936 Willow St, Portland,OR,97035 +216539,AA Batteries (4-pack),2,3.84,2019-06-10 21:35:00,912 Maple St, Boston,MA,02215 +216540,Bose SoundSport Headphones,1,99.99,2019-06-08 21:47:00,783 11th St, Los Angeles,CA,90001 +216541,iPhone,1,700.0,2019-06-15 09:23:00,373 South St, San Francisco,CA,94016 +216541,Lightning Charging Cable,1,14.95,2019-06-15 09:23:00,373 South St, San Francisco,CA,94016 +216542,AA Batteries (4-pack),1,3.84,2019-06-26 20:35:00,549 Park St, San Francisco,CA,94016 +216543,AAA Batteries (4-pack),1,2.99,2019-06-10 02:44:00,388 Jackson St, San Francisco,CA,94016 +216544,AA Batteries (4-pack),1,3.84,2019-06-11 19:05:00,302 Madison St, Seattle,WA,98101 +216545,27in 4K Gaming Monitor,1,389.99,2019-06-02 23:20:00,256 Center St, Seattle,WA,98101 +216546,Bose SoundSport Headphones,1,99.99,2019-06-16 20:10:00,963 Center St, Portland,OR,97035 +216547,USB-C Charging Cable,1,11.95,2019-06-22 14:01:00,64 14th St, San Francisco,CA,94016 +216548,Google Phone,1,600.0,2019-06-17 14:50:00,128 Cherry St, San Francisco,CA,94016 +216549,34in Ultrawide Monitor,1,379.99,2019-06-01 18:46:00,958 Lakeview St, San Francisco,CA,94016 +216550,AAA Batteries (4-pack),2,2.99,2019-06-04 18:06:00,550 Church St, New York City,NY,10001 +216551,Lightning Charging Cable,1,14.95,2019-06-20 18:04:00,909 1st St, Atlanta,GA,30301 +216552,USB-C Charging Cable,1,11.95,2019-06-18 23:26:00,133 4th St, San Francisco,CA,94016 +216553,27in 4K Gaming Monitor,1,389.99,2019-06-14 10:41:00,493 Ridge St, New York City,NY,10001 +216554,27in FHD Monitor,1,149.99,2019-06-19 19:57:00,72 Cedar St, Los Angeles,CA,90001 +216555,Lightning Charging Cable,1,14.95,2019-06-13 14:40:00,59 Dogwood St, Portland,OR,97035 +216556,AAA Batteries (4-pack),1,2.99,2019-06-15 14:21:00,31 Meadow St, San Francisco,CA,94016 +216557,Bose SoundSport Headphones,1,99.99,2019-06-20 16:15:00,196 4th St, Los Angeles,CA,90001 +216558,AAA Batteries (4-pack),2,2.99,2019-06-07 22:03:00,96 Johnson St, Los Angeles,CA,90001 +216558,Vareebadd Phone,1,400.0,2019-06-07 22:03:00,96 Johnson St, Los Angeles,CA,90001 +216559,20in Monitor,1,109.99,2019-06-07 08:57:00,861 8th St, New York City,NY,10001 +216560,AAA Batteries (4-pack),2,2.99,2019-06-08 19:37:00,971 Madison St, New York City,NY,10001 +216561,AA Batteries (4-pack),1,3.84,2019-06-07 23:30:00,29 2nd St, San Francisco,CA,94016 +216562,27in FHD Monitor,1,149.99,2019-06-18 11:44:00,526 Cherry St, Seattle,WA,98101 +216563,AA Batteries (4-pack),1,3.84,2019-06-01 14:43:00,118 Adams St, New York City,NY,10001 +216564,Wired Headphones,1,11.99,2019-06-02 14:59:00,862 Ridge St, New York City,NY,10001 +216565,AA Batteries (4-pack),1,3.84,2019-06-05 09:20:00,842 Sunset St, Atlanta,GA,30301 +216566,AAA Batteries (4-pack),1,2.99,2019-06-11 08:01:00,444 5th St, Portland,OR,97035 +216567,USB-C Charging Cable,1,11.95,2019-06-15 12:23:00,720 Main St, San Francisco,CA,94016 +216568,Bose SoundSport Headphones,1,99.99,2019-06-15 09:18:00,420 Hickory St, Los Angeles,CA,90001 +216569,USB-C Charging Cable,1,11.95,2019-06-19 19:35:00,855 Spruce St, San Francisco,CA,94016 +216570,Google Phone,1,600.0,2019-06-16 18:22:00,174 Meadow St, Los Angeles,CA,90001 +216570,USB-C Charging Cable,1,11.95,2019-06-16 18:22:00,174 Meadow St, Los Angeles,CA,90001 +216570,Bose SoundSport Headphones,1,99.99,2019-06-16 18:22:00,174 Meadow St, Los Angeles,CA,90001 +216571,Bose SoundSport Headphones,1,99.99,2019-06-02 19:43:00,280 Lincoln St, Boston,MA,02215 +216572,ThinkPad Laptop,1,999.99,2019-06-27 21:10:00,644 Walnut St, Dallas,TX,75001 +216573,Wired Headphones,1,11.99,2019-06-28 00:42:00,327 4th St, Los Angeles,CA,90001 +216574,34in Ultrawide Monitor,1,379.99,2019-06-15 16:17:00,74 Spruce St, San Francisco,CA,94016 +216575,Bose SoundSport Headphones,1,99.99,2019-06-26 00:30:00,263 7th St, Dallas,TX,75001 +216576,Wired Headphones,1,11.99,2019-06-13 09:29:00,163 Center St, New York City,NY,10001 +216577,AAA Batteries (4-pack),2,2.99,2019-06-02 10:54:00,979 Meadow St, Boston,MA,02215 +216578,Lightning Charging Cable,1,14.95,2019-06-17 19:01:00,429 Spruce St, New York City,NY,10001 +216579,iPhone,1,700.0,2019-06-05 11:13:00,333 Forest St, Los Angeles,CA,90001 +216580,Apple Airpods Headphones,1,150.0,2019-06-20 01:09:00,939 Spruce St, New York City,NY,10001 +216581,Vareebadd Phone,1,400.0,2019-06-19 16:51:00,942 Park St, New York City,NY,10001 +216582,Lightning Charging Cable,1,14.95,2019-06-28 11:50:00,316 Wilson St, San Francisco,CA,94016 +216582,AA Batteries (4-pack),1,3.84,2019-06-28 11:50:00,316 Wilson St, San Francisco,CA,94016 +216583,Lightning Charging Cable,1,14.95,2019-06-09 22:35:00,293 Chestnut St, Portland,OR,97035 +216584,AA Batteries (4-pack),2,3.84,2019-06-30 15:04:00,163 Dogwood St, Boston,MA,02215 +216585,Flatscreen TV,1,300.0,2019-06-05 10:41:00,970 9th St, Boston,MA,02215 +216586,Lightning Charging Cable,2,14.95,2019-06-10 21:44:00,379 Dogwood St, New York City,NY,10001 +216587,ThinkPad Laptop,1,999.99,2019-06-15 16:42:00,409 Cedar St, Portland,OR,97035 +216588,Wired Headphones,1,11.99,2019-06-20 01:19:00,18 Dogwood St, San Francisco,CA,94016 +216589,Bose SoundSport Headphones,1,99.99,2019-06-06 11:05:00,798 Highland St, Boston,MA,02215 +216590,Lightning Charging Cable,1,14.95,2019-06-17 09:58:00,973 7th St, Atlanta,GA,30301 +216591,iPhone,1,700.0,2019-06-30 15:25:00,868 Meadow St, New York City,NY,10001 +216592,Bose SoundSport Headphones,1,99.99,2019-06-21 17:40:00,529 Main St, Atlanta,GA,30301 +216593,Wired Headphones,1,11.99,2019-06-03 13:16:00,620 12th St, New York City,NY,10001 +216594,USB-C Charging Cable,1,11.95,2019-06-23 18:49:00,810 Meadow St, Portland,OR,97035 +216595,Wired Headphones,2,11.99,2019-06-05 19:28:00,419 8th St, New York City,NY,10001 +216596,Bose SoundSport Headphones,1,99.99,2019-06-16 15:52:00,546 Lake St, New York City,NY,10001 +216597,Wired Headphones,2,11.99,2019-06-09 18:32:00,901 Center St, Boston,MA,02215 +216598,Lightning Charging Cable,1,14.95,2019-06-26 17:04:00,561 Church St, Atlanta,GA,30301 +216599,AA Batteries (4-pack),1,3.84,2019-06-01 18:27:00,857 Forest St, Austin,TX,73301 +216600,AAA Batteries (4-pack),1,2.99,2019-06-01 08:33:00,871 Sunset St, Los Angeles,CA,90001 +216601,AA Batteries (4-pack),1,3.84,2019-06-15 19:15:00,382 Center St, Portland,OR,97035 +216602,34in Ultrawide Monitor,1,379.99,2019-06-09 21:23:00,927 Center St, Boston,MA,02215 +216603,Lightning Charging Cable,1,14.95,2019-06-22 19:09:00,748 Maple St, Los Angeles,CA,90001 +216604,Vareebadd Phone,1,400.0,2019-06-01 12:35:00,226 Church St, Los Angeles,CA,90001 +216605,AA Batteries (4-pack),1,3.84,2019-06-09 22:29:00,113 Forest St, San Francisco,CA,94016 +216606,Apple Airpods Headphones,1,150.0,2019-06-19 21:15:00,884 Hill St, Dallas,TX,75001 +216607,Bose SoundSport Headphones,1,99.99,2019-06-15 19:50:00,699 5th St, Dallas,TX,75001 +216608,Wired Headphones,1,11.99,2019-06-26 18:51:00,483 Sunset St, Portland,ME,04101 +216609,AA Batteries (4-pack),1,3.84,2019-06-22 10:43:00,616 12th St, San Francisco,CA,94016 +216610,AA Batteries (4-pack),2,3.84,2019-06-21 15:57:00,188 Park St, Los Angeles,CA,90001 +216611,Vareebadd Phone,1,400.0,2019-06-19 18:26:00,562 Ridge St, Los Angeles,CA,90001 +216612,iPhone,1,700.0,2019-06-21 06:41:00,136 Forest St, Los Angeles,CA,90001 +216613,AA Batteries (4-pack),1,3.84,2019-06-01 12:48:00,876 Washington St, New York City,NY,10001 +216614,Lightning Charging Cable,1,14.95,2019-06-13 20:50:00,8 South St, Los Angeles,CA,90001 +216615,27in 4K Gaming Monitor,1,389.99,2019-06-13 16:51:00,32 Hickory St, Los Angeles,CA,90001 +216616,Lightning Charging Cable,1,14.95,2019-06-18 19:52:00,848 Willow St, Los Angeles,CA,90001 +216617,20in Monitor,1,109.99,2019-06-01 17:32:00,840 14th St, New York City,NY,10001 +216618,Lightning Charging Cable,1,14.95,2019-06-25 09:07:00,246 Park St, New York City,NY,10001 +216619,Flatscreen TV,1,300.0,2019-06-24 17:46:00,225 6th St, Portland,OR,97035 +216620,USB-C Charging Cable,1,11.95,2019-06-15 23:37:00,611 Adams St, Atlanta,GA,30301 +216621,Lightning Charging Cable,1,14.95,2019-06-20 14:04:00,195 Jefferson St, Portland,ME,04101 +216622,AAA Batteries (4-pack),2,2.99,2019-06-09 07:28:00,704 Ridge St, Los Angeles,CA,90001 +216623,Wired Headphones,1,11.99,2019-06-21 10:12:00,612 Cherry St, San Francisco,CA,94016 +216624,Lightning Charging Cable,1,14.95,2019-06-29 10:28:00,831 5th St, Dallas,TX,75001 +216625,iPhone,1,700.0,2019-06-12 17:14:00,960 Maple St, Los Angeles,CA,90001 +216626,AA Batteries (4-pack),1,3.84,2019-06-04 22:01:00,805 Lake St, Los Angeles,CA,90001 +216627,34in Ultrawide Monitor,1,379.99,2019-06-07 04:39:00,489 Jackson St, New York City,NY,10001 +216628,34in Ultrawide Monitor,1,379.99,2019-06-28 07:53:00,774 Highland St, Los Angeles,CA,90001 +216629,Bose SoundSport Headphones,1,99.99,2019-06-12 17:31:00,501 Madison St, Los Angeles,CA,90001 +216630,Lightning Charging Cable,1,14.95,2019-06-21 20:37:00,946 4th St, Atlanta,GA,30301 +216631,27in 4K Gaming Monitor,1,389.99,2019-06-08 14:28:00,93 Ridge St, Los Angeles,CA,90001 +216632,AAA Batteries (4-pack),1,2.99,2019-06-11 12:04:00,529 1st St, New York City,NY,10001 +216633,Apple Airpods Headphones,1,150.0,2019-06-05 15:16:00,768 Hill St, Los Angeles,CA,90001 +216634,iPhone,1,700.0,2019-06-26 15:24:00,584 Lincoln St, New York City,NY,10001 +216635,Apple Airpods Headphones,1,150.0,2019-06-19 19:44:00,779 Meadow St, Atlanta,GA,30301 +216636,ThinkPad Laptop,1,999.99,2019-06-29 11:43:00,247 Dogwood St, Boston,MA,02215 +216637,Lightning Charging Cable,1,14.95,2019-06-25 18:59:00,347 14th St, Dallas,TX,75001 +216638,iPhone,1,700.0,2019-06-21 20:49:00,494 Church St, Boston,MA,02215 +216639,Apple Airpods Headphones,1,150.0,2019-06-29 12:24:00,666 13th St, Los Angeles,CA,90001 +216640,ThinkPad Laptop,1,999.99,2019-06-06 20:32:00,467 10th St, Los Angeles,CA,90001 +216641,34in Ultrawide Monitor,1,379.99,2019-06-12 11:36:00,204 14th St, Boston,MA,02215 +216642,27in FHD Monitor,1,149.99,2019-06-21 13:12:00,823 Pine St, Boston,MA,02215 +216643,27in 4K Gaming Monitor,1,389.99,2019-06-23 11:24:00,811 Elm St, Seattle,WA,98101 +216644,Lightning Charging Cable,1,14.95,2019-06-15 12:25:00,158 Johnson St, New York City,NY,10001 +216645,Apple Airpods Headphones,1,150.0,2019-06-11 11:09:00,602 10th St, Portland,OR,97035 +216646,Lightning Charging Cable,1,14.95,2019-06-13 11:07:00,190 13th St, San Francisco,CA,94016 +216647,Wired Headphones,1,11.99,2019-06-21 13:18:00,726 Maple St, San Francisco,CA,94016 +216648,USB-C Charging Cable,1,11.95,2019-06-16 10:19:00,288 Hill St, New York City,NY,10001 +216649,USB-C Charging Cable,1,11.95,2019-06-24 13:01:00,877 Cherry St, Boston,MA,02215 +216650,USB-C Charging Cable,1,11.95,2019-06-15 16:29:00,330 9th St, Dallas,TX,75001 +216651,Lightning Charging Cable,1,14.95,2019-06-13 20:22:00,717 Lake St, Dallas,TX,75001 +216652,Apple Airpods Headphones,1,150.0,2019-06-01 18:51:00,226 1st St, Los Angeles,CA,90001 +216653,Wired Headphones,1,11.99,2019-06-01 14:42:00,841 Willow St, San Francisco,CA,94016 +216654,ThinkPad Laptop,1,999.99,2019-06-09 09:54:00,33 Church St, San Francisco,CA,94016 +216655,USB-C Charging Cable,1,11.95,2019-06-14 12:07:00,132 Chestnut St, Portland,OR,97035 +216656,27in 4K Gaming Monitor,1,389.99,2019-06-19 15:37:00,782 Church St, Los Angeles,CA,90001 +216657,27in 4K Gaming Monitor,1,389.99,2019-06-08 22:27:00,686 Highland St, Portland,OR,97035 +216658,AA Batteries (4-pack),1,3.84,2019-06-04 15:45:00,121 14th St, San Francisco,CA,94016 +216659,Bose SoundSport Headphones,1,99.99,2019-06-14 17:50:00,516 13th St, Seattle,WA,98101 +216660,USB-C Charging Cable,1,11.95,2019-06-20 19:58:00,16 River St, Boston,MA,02215 +216661,Wired Headphones,2,11.99,2019-06-16 11:14:00,931 8th St, Austin,TX,73301 +216662,iPhone,1,700.0,2019-06-02 00:58:00,902 West St, Atlanta,GA,30301 +216663,Lightning Charging Cable,1,14.95,2019-06-04 17:33:00,261 South St, Boston,MA,02215 +216664,AAA Batteries (4-pack),1,2.99,2019-06-27 19:46:00,105 Park St, New York City,NY,10001 +216665,AAA Batteries (4-pack),1,2.99,2019-06-13 21:15:00,405 Jefferson St, New York City,NY,10001 +216666,USB-C Charging Cable,1,11.95,2019-06-03 17:26:00,913 Chestnut St, San Francisco,CA,94016 +216667,Macbook Pro Laptop,1,1700.0,2019-06-18 09:53:00,538 12th St, Los Angeles,CA,90001 +216668,Wired Headphones,1,11.99,2019-06-01 11:16:00,170 Walnut St, San Francisco,CA,94016 +216669,AAA Batteries (4-pack),1,2.99,2019-06-09 16:40:00,666 Cedar St, Portland,OR,97035 +216670,Flatscreen TV,1,300.0,2019-06-23 13:24:00,401 2nd St, Atlanta,GA,30301 +216671,USB-C Charging Cable,2,11.95,2019-06-25 09:17:00,46 North St, Portland,OR,97035 +216672,Macbook Pro Laptop,1,1700.0,2019-06-01 15:22:00,311 Johnson St, New York City,NY,10001 +216673,Wired Headphones,1,11.99,2019-06-24 16:59:00,243 Church St, Boston,MA,02215 +216674,AA Batteries (4-pack),3,3.84,2019-06-16 07:02:00,126 5th St, Boston,MA,02215 +216675,Lightning Charging Cable,1,14.95,2019-06-05 08:42:00,180 Cherry St, Seattle,WA,98101 +216676,AA Batteries (4-pack),1,3.84,2019-06-11 19:48:00,530 Cherry St, Atlanta,GA,30301 +216677,Bose SoundSport Headphones,1,99.99,2019-06-28 08:58:00,449 1st St, New York City,NY,10001 +216678,27in 4K Gaming Monitor,1,389.99,2019-06-10 09:42:00,66 Adams St, San Francisco,CA,94016 +216679,Apple Airpods Headphones,1,150.0,2019-06-15 13:45:00,560 Meadow St, Dallas,TX,75001 +216680,Apple Airpods Headphones,1,150.0,2019-06-16 10:13:00,161 10th St, Los Angeles,CA,90001 +216681,Bose SoundSport Headphones,1,99.99,2019-06-22 12:07:00,561 Madison St, Los Angeles,CA,90001 +216682,Lightning Charging Cable,1,14.95,2019-06-27 11:54:00,123 North St, San Francisco,CA,94016 +216683,USB-C Charging Cable,1,11.95,2019-06-26 12:29:00,490 Church St, Dallas,TX,75001 +216684,Apple Airpods Headphones,1,150.0,2019-06-30 13:37:00,676 Elm St, New York City,NY,10001 +216685,Bose SoundSport Headphones,1,99.99,2019-06-09 00:56:00,5 Lake St, Dallas,TX,75001 +216686,AA Batteries (4-pack),1,3.84,2019-06-25 20:53:00,459 Park St, Boston,MA,02215 +216687,Apple Airpods Headphones,1,150.0,2019-06-30 08:24:00,182 Adams St, New York City,NY,10001 +216688,AAA Batteries (4-pack),1,2.99,2019-06-09 23:48:00,97 Madison St, New York City,NY,10001 +216689,Wired Headphones,2,11.99,2019-06-17 13:44:00,995 West St, San Francisco,CA,94016 +216690,Flatscreen TV,1,300.0,2019-06-06 21:47:00,766 12th St, Portland,OR,97035 +216691,27in 4K Gaming Monitor,1,389.99,2019-06-02 19:30:00,165 Maple St, San Francisco,CA,94016 +216692,Lightning Charging Cable,1,14.95,2019-06-26 22:42:00,229 Pine St, New York City,NY,10001 +216693,Apple Airpods Headphones,1,150.0,2019-06-05 20:06:00,652 Lake St, Los Angeles,CA,90001 +216693,Macbook Pro Laptop,1,1700.0,2019-06-05 20:06:00,652 Lake St, Los Angeles,CA,90001 +216694,ThinkPad Laptop,1,999.99,2019-06-05 22:09:00,164 Willow St, Portland,OR,97035 +216695,USB-C Charging Cable,1,11.95,2019-06-14 22:06:00,264 Madison St, San Francisco,CA,94016 +216696,Apple Airpods Headphones,1,150.0,2019-06-15 11:08:00,39 2nd St, San Francisco,CA,94016 +216697,USB-C Charging Cable,1,11.95,2019-06-26 09:26:00,804 River St, Dallas,TX,75001 +216698,USB-C Charging Cable,1,11.95,2019-06-13 01:22:00,628 Spruce St, Atlanta,GA,30301 +216699,Google Phone,1,600.0,2019-06-05 12:53:00,560 Sunset St, Dallas,TX,75001 +216700,USB-C Charging Cable,1,11.95,2019-06-29 19:46:00,234 Walnut St, Boston,MA,02215 +216701,Google Phone,1,600.0,2019-06-27 18:10:00,755 Highland St, Los Angeles,CA,90001 +216702,AAA Batteries (4-pack),1,2.99,2019-06-22 13:38:00,805 8th St, Atlanta,GA,30301 +216702,Apple Airpods Headphones,1,150.0,2019-06-22 13:38:00,805 8th St, Atlanta,GA,30301 +216703,Wired Headphones,1,11.99,2019-06-11 16:03:00,24 Spruce St, Los Angeles,CA,90001 +216704,Lightning Charging Cable,1,14.95,2019-06-13 14:53:00,307 10th St, San Francisco,CA,94016 +216705,AAA Batteries (4-pack),1,2.99,2019-06-20 18:43:00,405 Jackson St, San Francisco,CA,94016 +216705,27in 4K Gaming Monitor,1,389.99,2019-06-20 18:43:00,405 Jackson St, San Francisco,CA,94016 +216706,AAA Batteries (4-pack),1,2.99,2019-06-20 10:56:00,188 Church St, San Francisco,CA,94016 +216707,Apple Airpods Headphones,1,150.0,2019-06-03 19:37:00,535 13th St, Boston,MA,02215 +216708,AAA Batteries (4-pack),1,2.99,2019-06-29 11:51:00,706 8th St, New York City,NY,10001 +216709,Wired Headphones,2,11.99,2019-06-09 10:24:00,423 Sunset St, San Francisco,CA,94016 +216710,Lightning Charging Cable,2,14.95,2019-06-05 14:04:00,399 Madison St, San Francisco,CA,94016 +216711,Lightning Charging Cable,2,14.95,2019-06-08 07:53:00,436 South St, New York City,NY,10001 +216712,Bose SoundSport Headphones,1,99.99,2019-06-20 19:45:00,65 Walnut St, Boston,MA,02215 +216713,Lightning Charging Cable,2,14.95,2019-06-12 21:45:00,760 Adams St, Atlanta,GA,30301 +216714,AA Batteries (4-pack),1,3.84,2019-06-21 01:16:00,87 1st St, Los Angeles,CA,90001 +216715,34in Ultrawide Monitor,1,379.99,2019-06-02 15:49:00,329 Adams St, Los Angeles,CA,90001 +216716,Wired Headphones,1,11.99,2019-06-11 10:40:00,109 Maple St, Los Angeles,CA,90001 +216717,Bose SoundSport Headphones,1,99.99,2019-06-02 22:45:00,291 Pine St, Los Angeles,CA,90001 +216718,Wired Headphones,1,11.99,2019-06-29 23:10:00,106 Jefferson St, Austin,TX,73301 +216719,Bose SoundSport Headphones,1,99.99,2019-06-02 08:38:00,753 Maple St, Dallas,TX,75001 +216720,Wired Headphones,1,11.99,2019-06-22 20:27:00,437 South St, San Francisco,CA,94016 +216721,27in FHD Monitor,1,149.99,2019-06-28 20:14:00,635 Hickory St, Los Angeles,CA,90001 +216722,Lightning Charging Cable,1,14.95,2019-06-05 13:00:00,744 Main St, Portland,OR,97035 +216723,Apple Airpods Headphones,1,150.0,2019-06-18 19:17:00,705 North St, Portland,OR,97035 +216724,AA Batteries (4-pack),1,3.84,2019-06-12 19:06:00,597 Chestnut St, Los Angeles,CA,90001 +216725,ThinkPad Laptop,1,999.99,2019-06-25 12:46:00,566 Madison St, San Francisco,CA,94016 +216726,Macbook Pro Laptop,1,1700.0,2019-06-20 21:06:00,122 West St, San Francisco,CA,94016 +216727,Flatscreen TV,1,300.0,2019-06-15 23:18:00,530 2nd St, Los Angeles,CA,90001 +216728,Wired Headphones,1,11.99,2019-06-23 15:53:00,778 Elm St, Dallas,TX,75001 +216729,Lightning Charging Cable,1,14.95,2019-06-26 09:43:00,799 7th St, New York City,NY,10001 +216730,Lightning Charging Cable,1,14.95,2019-06-09 15:05:00,37 Jefferson St, San Francisco,CA,94016 +216731,AA Batteries (4-pack),1,3.84,2019-06-14 19:05:00,560 9th St, Boston,MA,02215 +216732,27in 4K Gaming Monitor,1,389.99,2019-06-29 11:46:00,739 9th St, Austin,TX,73301 +216733,Vareebadd Phone,1,400.0,2019-06-02 11:12:00,881 Jefferson St, San Francisco,CA,94016 +216734,AA Batteries (4-pack),1,3.84,2019-06-18 21:22:00,70 5th St, San Francisco,CA,94016 +216735,Lightning Charging Cable,1,14.95,2019-06-15 11:05:00,605 Sunset St, Austin,TX,73301 +216735,AAA Batteries (4-pack),1,2.99,2019-06-15 11:05:00,605 Sunset St, Austin,TX,73301 +216736,USB-C Charging Cable,2,11.95,2019-06-12 17:07:00,850 Park St, New York City,NY,10001 +216737,27in 4K Gaming Monitor,1,389.99,2019-06-21 14:17:00,103 Pine St, Seattle,WA,98101 +216738,AA Batteries (4-pack),2,3.84,2019-06-27 18:40:00,61 Lake St, New York City,NY,10001 +216739,Google Phone,1,600.0,2019-06-26 21:39:00,193 Forest St, San Francisco,CA,94016 +216740,Apple Airpods Headphones,1,150.0,2019-06-20 11:16:00,243 Meadow St, Seattle,WA,98101 +216741,34in Ultrawide Monitor,1,379.99,2019-06-23 10:03:00,832 10th St, Los Angeles,CA,90001 +216742,Flatscreen TV,1,300.0,2019-06-09 06:43:00,479 Elm St, New York City,NY,10001 +216743,20in Monitor,1,109.99,2019-06-18 08:12:00,996 Dogwood St, Atlanta,GA,30301 +216744,Wired Headphones,1,11.99,2019-06-13 19:07:00,523 7th St, Austin,TX,73301 +216745,Apple Airpods Headphones,1,150.0,2019-06-30 16:57:00,411 Walnut St, Boston,MA,02215 +216746,AAA Batteries (4-pack),1,2.99,2019-06-07 08:34:00,748 Maple St, Austin,TX,73301 +216747,USB-C Charging Cable,1,11.95,2019-06-26 21:26:00,493 Adams St, San Francisco,CA,94016 +216748,USB-C Charging Cable,1,11.95,2019-06-24 00:17:00,913 11th St, San Francisco,CA,94016 +216749,Bose SoundSport Headphones,1,99.99,2019-06-27 21:18:00,427 Spruce St, New York City,NY,10001 +216750,Lightning Charging Cable,1,14.95,2019-06-09 13:28:00,592 Sunset St, New York City,NY,10001 +216751,Apple Airpods Headphones,1,150.0,2019-06-21 13:02:00,69 Jefferson St, San Francisco,CA,94016 +216752,Lightning Charging Cable,1,14.95,2019-06-20 14:45:00,360 6th St, Boston,MA,02215 +216753,AAA Batteries (4-pack),1,2.99,2019-06-28 12:15:00,979 West St, New York City,NY,10001 +216754,Lightning Charging Cable,1,14.95,2019-06-14 01:58:00,12 10th St, San Francisco,CA,94016 +216755,USB-C Charging Cable,1,11.95,2019-06-20 17:37:00,436 Madison St, San Francisco,CA,94016 +216756,AA Batteries (4-pack),1,3.84,2019-06-25 21:39:00,562 Madison St, New York City,NY,10001 +216757,34in Ultrawide Monitor,1,379.99,2019-06-06 15:30:00,445 North St, Atlanta,GA,30301 +216757,Flatscreen TV,1,300.0,2019-06-06 15:30:00,445 North St, Atlanta,GA,30301 +216758,AA Batteries (4-pack),1,3.84,2019-06-20 23:29:00,637 Lincoln St, New York City,NY,10001 +216759,Lightning Charging Cable,1,14.95,2019-06-29 21:33:00,328 Cherry St, San Francisco,CA,94016 +216760,Lightning Charging Cable,1,14.95,2019-06-18 16:33:00,24 Maple St, New York City,NY,10001 +216761,Wired Headphones,1,11.99,2019-06-05 18:42:00,517 River St, Austin,TX,73301 +216762,27in FHD Monitor,1,149.99,2019-06-28 19:45:00,425 Cedar St, San Francisco,CA,94016 +216763,iPhone,1,700.0,2019-06-27 13:11:00,496 Willow St, Dallas,TX,75001 +216764,USB-C Charging Cable,1,11.95,2019-06-15 23:44:00,413 Lake St, Seattle,WA,98101 +216765,Google Phone,1,600.0,2019-06-22 20:07:00,673 Meadow St, San Francisco,CA,94016 +216766,ThinkPad Laptop,1,999.99,2019-06-20 17:17:00,104 Pine St, Austin,TX,73301 +216766,Wired Headphones,1,11.99,2019-06-20 17:17:00,104 Pine St, Austin,TX,73301 +216767,Wired Headphones,1,11.99,2019-06-11 17:58:00,512 River St, Dallas,TX,75001 +216768,Bose SoundSport Headphones,1,99.99,2019-06-01 13:19:00,35 Cherry St, San Francisco,CA,94016 +216768,AA Batteries (4-pack),1,3.84,2019-06-01 13:19:00,35 Cherry St, San Francisco,CA,94016 +216769,Vareebadd Phone,1,400.0,2019-06-14 22:00:00,345 Park St, Atlanta,GA,30301 +216770,AA Batteries (4-pack),2,3.84,2019-06-16 09:01:00,602 Cedar St, Los Angeles,CA,90001 +216771,27in FHD Monitor,1,149.99,2019-06-23 22:11:00,579 Park St, Boston,MA,02215 +216771,AAA Batteries (4-pack),1,2.99,2019-06-23 22:11:00,579 Park St, Boston,MA,02215 +216772,34in Ultrawide Monitor,1,379.99,2019-06-13 12:03:00,855 Chestnut St, Austin,TX,73301 +216773,AA Batteries (4-pack),1,3.84,2019-06-02 20:19:00,165 Walnut St, Dallas,TX,75001 +216774,Flatscreen TV,1,300.0,2019-06-05 19:34:00,232 Adams St, Dallas,TX,75001 +216775,AAA Batteries (4-pack),1,2.99,2019-06-30 19:31:00,443 Maple St, San Francisco,CA,94016 +216776,Google Phone,1,600.0,2019-06-07 19:47:00,930 Willow St, Austin,TX,73301 +216776,Bose SoundSport Headphones,1,99.99,2019-06-07 19:47:00,930 Willow St, Austin,TX,73301 +216777,Lightning Charging Cable,1,14.95,2019-06-14 19:57:00,926 Wilson St, Portland,OR,97035 +216778,Wired Headphones,1,11.99,2019-06-06 18:42:00,68 West St, San Francisco,CA,94016 +216779,20in Monitor,1,109.99,2019-06-25 13:43:00,882 14th St, San Francisco,CA,94016 +216780,Bose SoundSport Headphones,1,99.99,2019-06-16 17:10:00,260 Elm St, New York City,NY,10001 +216781,LG Dryer,1,600.0,2019-06-10 23:13:00,219 12th St, Boston,MA,02215 +216782,Apple Airpods Headphones,1,150.0,2019-06-14 11:32:00,558 Park St, New York City,NY,10001 +216783,20in Monitor,1,109.99,2019-06-23 01:01:00,139 Park St, San Francisco,CA,94016 +216784,AA Batteries (4-pack),1,3.84,2019-06-19 11:42:00,904 South St, Austin,TX,73301 +216785,AAA Batteries (4-pack),1,2.99,2019-06-17 19:24:00,926 West St, Los Angeles,CA,90001 +216786,Google Phone,1,600.0,2019-06-23 10:15:00,822 Church St, Austin,TX,73301 +216787,Google Phone,1,600.0,2019-06-06 01:22:00,523 Church St, Austin,TX,73301 +216787,USB-C Charging Cable,1,11.95,2019-06-06 01:22:00,523 Church St, Austin,TX,73301 +216788,USB-C Charging Cable,2,11.95,2019-06-04 06:31:00,70 Lakeview St, Boston,MA,02215 +216789,27in FHD Monitor,1,149.99,2019-06-30 15:00:00,333 5th St, Los Angeles,CA,90001 +216790,Apple Airpods Headphones,1,150.0,2019-06-18 16:30:00,940 Highland St, Seattle,WA,98101 +216791,AA Batteries (4-pack),1,3.84,2019-06-15 12:05:00,368 Park St, Los Angeles,CA,90001 +216792,AAA Batteries (4-pack),6,2.99,2019-06-04 17:23:00,25 Jefferson St, Atlanta,GA,30301 +216793,USB-C Charging Cable,2,11.95,2019-06-24 22:05:00,689 Lake St, Portland,OR,97035 +216794,AAA Batteries (4-pack),1,2.99,2019-06-14 10:24:00,624 6th St, Boston,MA,02215 +216795,AAA Batteries (4-pack),1,2.99,2019-06-27 16:08:00,69 Lakeview St, San Francisco,CA,94016 +216796,34in Ultrawide Monitor,1,379.99,2019-06-28 20:21:00,848 Wilson St, San Francisco,CA,94016 +216797,Bose SoundSport Headphones,1,99.99,2019-06-19 14:24:00,841 Center St, Seattle,WA,98101 +216798,Wired Headphones,1,11.99,2019-06-10 19:26:00,315 Meadow St, San Francisco,CA,94016 +216799,AAA Batteries (4-pack),2,2.99,2019-06-14 20:42:00,90 Adams St, Los Angeles,CA,90001 +216800,AA Batteries (4-pack),1,3.84,2019-06-15 22:28:00,591 Lakeview St, San Francisco,CA,94016 +216801,Apple Airpods Headphones,1,150.0,2019-06-18 11:25:00,538 4th St, Atlanta,GA,30301 +216802,Lightning Charging Cable,1,14.95,2019-06-20 05:57:00,404 1st St, Seattle,WA,98101 +216803,Vareebadd Phone,1,400.0,2019-06-18 14:33:00,549 Highland St, Los Angeles,CA,90001 +216803,Wired Headphones,1,11.99,2019-06-18 14:33:00,549 Highland St, Los Angeles,CA,90001 +216804,LG Washing Machine,1,600.0,2019-06-14 20:20:00,660 Cedar St, Boston,MA,02215 +216804,iPhone,1,700.0,2019-06-14 20:20:00,660 Cedar St, Boston,MA,02215 +216805,Macbook Pro Laptop,1,1700.0,2019-06-09 16:50:00,524 Elm St, Seattle,WA,98101 +216806,Lightning Charging Cable,1,14.95,2019-06-24 11:57:00,18 Hickory St, New York City,NY,10001 +216807,20in Monitor,1,109.99,2019-06-21 14:12:00,939 Maple St, Austin,TX,73301 +216808,Wired Headphones,1,11.99,2019-06-19 12:56:00,108 12th St, Boston,MA,02215 +216809,Apple Airpods Headphones,1,150.0,2019-06-16 19:48:00,670 10th St, San Francisco,CA,94016 +216810,27in 4K Gaming Monitor,1,389.99,2019-06-16 13:20:00,484 Adams St, Dallas,TX,75001 +216811,Wired Headphones,1,11.99,2019-06-06 09:31:00,782 Willow St, Seattle,WA,98101 +216812,Lightning Charging Cable,1,14.95,2019-06-03 21:28:00,30 West St, Seattle,WA,98101 +216813,AAA Batteries (4-pack),3,2.99,2019-06-04 07:05:00,367 5th St, Los Angeles,CA,90001 +216814,Wired Headphones,1,11.99,2019-06-07 11:41:00,274 Main St, Los Angeles,CA,90001 +216815,AAA Batteries (4-pack),4,2.99,2019-06-21 06:39:00,959 1st St, New York City,NY,10001 +216816,Bose SoundSport Headphones,1,99.99,2019-06-21 12:04:00,879 Sunset St, Los Angeles,CA,90001 +216817,Bose SoundSport Headphones,1,99.99,2019-06-19 18:12:00,346 9th St, San Francisco,CA,94016 +216818,Bose SoundSport Headphones,1,99.99,2019-06-25 09:20:00,734 Jackson St, San Francisco,CA,94016 +216819,USB-C Charging Cable,1,11.95,2019-06-27 22:58:00,993 Lake St, Portland,OR,97035 +216820,Flatscreen TV,1,300.0,2019-06-04 10:38:00,666 1st St, Austin,TX,73301 +216821,Lightning Charging Cable,1,14.95,2019-06-25 08:49:00,336 Ridge St, Dallas,TX,75001 +216822,USB-C Charging Cable,1,11.95,2019-06-27 21:41:00,177 Center St, San Francisco,CA,94016 +216823,Macbook Pro Laptop,1,1700.0,2019-06-25 20:40:00,77 Lake St, Austin,TX,73301 +216824,20in Monitor,1,109.99,2019-06-25 21:17:00,932 Washington St, New York City,NY,10001 +216825,ThinkPad Laptop,1,999.99,2019-06-15 13:19:00,204 South St, Boston,MA,02215 +216826,Apple Airpods Headphones,1,150.0,2019-06-09 16:29:00,360 Hill St, New York City,NY,10001 +216827,AAA Batteries (4-pack),1,2.99,2019-06-10 22:37:00,524 Sunset St, San Francisco,CA,94016 +216828,Lightning Charging Cable,1,14.95,2019-06-25 21:06:00,836 Spruce St, San Francisco,CA,94016 +216829,AA Batteries (4-pack),1,3.84,2019-06-12 12:47:00,535 Park St, New York City,NY,10001 +216830,USB-C Charging Cable,1,11.95,2019-06-14 20:18:00,13 River St, Los Angeles,CA,90001 +216831,Bose SoundSport Headphones,1,99.99,2019-06-17 09:54:00,97 Center St, Los Angeles,CA,90001 +216832,AAA Batteries (4-pack),2,2.99,2019-06-12 07:37:00,931 2nd St, San Francisco,CA,94016 +216833,USB-C Charging Cable,1,11.95,2019-06-22 19:49:00,644 Willow St, Portland,ME,04101 +216834,AAA Batteries (4-pack),1,2.99,2019-06-13 10:42:00,850 Hickory St, Austin,TX,73301 +216835,AA Batteries (4-pack),1,3.84,2019-06-24 18:05:00,495 Adams St, Boston,MA,02215 +216836,Lightning Charging Cable,1,14.95,2019-06-10 17:37:00,811 10th St, San Francisco,CA,94016 +216837,27in FHD Monitor,1,149.99,2019-06-12 12:13:00,309 Park St, San Francisco,CA,94016 +216838,USB-C Charging Cable,1,11.95,2019-06-07 14:50:00,636 South St, Los Angeles,CA,90001 +216839,Bose SoundSport Headphones,1,99.99,2019-06-28 12:56:00,630 Center St, Los Angeles,CA,90001 +216840,AAA Batteries (4-pack),1,2.99,2019-06-20 09:54:00,276 Elm St, Atlanta,GA,30301 +216841,20in Monitor,1,109.99,2019-06-22 18:34:00,694 6th St, San Francisco,CA,94016 +216842,AA Batteries (4-pack),1,3.84,2019-06-03 09:30:00,692 Spruce St, Boston,MA,02215 +216843,Lightning Charging Cable,1,14.95,2019-06-05 20:47:00,644 11th St, New York City,NY,10001 +216844,Flatscreen TV,1,300.0,2019-06-07 16:52:00,370 1st St, Los Angeles,CA,90001 +216845,Apple Airpods Headphones,1,150.0,2019-06-15 16:40:00,580 North St, New York City,NY,10001 +216846,Apple Airpods Headphones,1,150.0,2019-06-27 15:24:00,238 Church St, Los Angeles,CA,90001 +216847,AAA Batteries (4-pack),5,2.99,2019-06-11 00:20:00,319 Lake St, Atlanta,GA,30301 +216848,Apple Airpods Headphones,1,150.0,2019-06-28 11:51:00,27 Meadow St, San Francisco,CA,94016 +216849,USB-C Charging Cable,1,11.95,2019-06-26 17:33:00,206 North St, Seattle,WA,98101 +216850,USB-C Charging Cable,1,11.95,2019-06-09 18:36:00,23 1st St, Austin,TX,73301 +216851,USB-C Charging Cable,2,11.95,2019-06-30 15:35:00,774 Main St, San Francisco,CA,94016 +216852,Apple Airpods Headphones,1,150.0,2019-06-02 22:17:00,427 8th St, San Francisco,CA,94016 +216853,USB-C Charging Cable,1,11.95,2019-06-07 11:57:00,9 Wilson St, Boston,MA,02215 +216854,Bose SoundSport Headphones,1,99.99,2019-06-12 14:27:00,555 Wilson St, Portland,OR,97035 +216855,Bose SoundSport Headphones,1,99.99,2019-06-07 19:59:00,76 Highland St, Boston,MA,02215 +216856,27in 4K Gaming Monitor,1,389.99,2019-06-01 11:00:00,450 5th St, Los Angeles,CA,90001 +216857,27in 4K Gaming Monitor,1,389.99,2019-06-15 12:47:00,62 Hickory St, Los Angeles,CA,90001 +216858,Lightning Charging Cable,1,14.95,2019-06-01 10:17:00,791 Adams St, Seattle,WA,98101 +216859,Apple Airpods Headphones,1,150.0,2019-06-04 10:15:00,631 11th St, Dallas,TX,75001 +216860,iPhone,1,700.0,2019-06-05 11:07:00,487 Ridge St, Boston,MA,02215 +216861,AAA Batteries (4-pack),2,2.99,2019-06-13 14:36:00,427 Jackson St, Dallas,TX,75001 +216862,34in Ultrawide Monitor,1,379.99,2019-06-26 15:22:00,998 12th St, Dallas,TX,75001 +216863,USB-C Charging Cable,1,11.95,2019-06-10 17:11:00,957 Dogwood St, Seattle,WA,98101 +216864,Apple Airpods Headphones,1,150.0,2019-06-05 09:52:00,663 Chestnut St, Los Angeles,CA,90001 +216865,AA Batteries (4-pack),1,3.84,2019-06-13 12:53:00,596 Dogwood St, Los Angeles,CA,90001 +216866,Wired Headphones,1,11.99,2019-06-01 17:37:00,342 Church St, Dallas,TX,75001 +216867,AAA Batteries (4-pack),3,2.99,2019-06-17 17:13:00,295 Maple St, Los Angeles,CA,90001 +216868,Wired Headphones,1,11.99,2019-06-08 20:06:00,716 South St, San Francisco,CA,94016 +216869,Lightning Charging Cable,1,14.95,2019-06-01 09:13:00,201 10th St, Boston,MA,02215 +216870,Lightning Charging Cable,1,14.95,2019-06-13 15:39:00,261 Maple St, Los Angeles,CA,90001 +216871,AA Batteries (4-pack),1,3.84,2019-06-18 16:50:00,621 12th St, Atlanta,GA,30301 +216872,AA Batteries (4-pack),2,3.84,2019-06-16 23:59:00,289 Washington St, Portland,OR,97035 +216873,Wired Headphones,1,11.99,2019-06-21 19:43:00,70 10th St, Atlanta,GA,30301 +216874,Google Phone,1,600.0,2019-06-09 19:36:00,92 Forest St, San Francisco,CA,94016 +216875,Wired Headphones,1,11.99,2019-06-16 21:21:00,789 North St, San Francisco,CA,94016 +216876,Google Phone,1,600.0,2019-06-10 15:05:00,653 River St, Seattle,WA,98101 +216877,Flatscreen TV,1,300.0,2019-06-21 14:46:00,624 7th St, Boston,MA,02215 +216878,34in Ultrawide Monitor,1,379.99,2019-06-18 19:36:00,109 Wilson St, Boston,MA,02215 +216879,AA Batteries (4-pack),1,3.84,2019-06-06 12:48:00,278 Johnson St, Dallas,TX,75001 +216880,Lightning Charging Cable,2,14.95,2019-06-12 16:40:00,927 5th St, Atlanta,GA,30301 +216881,AA Batteries (4-pack),2,3.84,2019-06-09 17:16:00,794 4th St, New York City,NY,10001 +216882,USB-C Charging Cable,1,11.95,2019-06-29 15:19:00,986 13th St, San Francisco,CA,94016 +216883,Wired Headphones,1,11.99,2019-06-25 06:46:00,292 Center St, Dallas,TX,75001 +216884,Apple Airpods Headphones,1,150.0,2019-06-06 20:45:00,347 Center St, Los Angeles,CA,90001 +216885,Google Phone,1,600.0,2019-06-01 19:43:00,126 Spruce St, San Francisco,CA,94016 +216886,Wired Headphones,1,11.99,2019-06-25 16:36:00,764 Adams St, San Francisco,CA,94016 +216887,27in 4K Gaming Monitor,1,389.99,2019-06-02 11:47:00,268 Elm St, New York City,NY,10001 +216888,Wired Headphones,1,11.99,2019-06-07 19:30:00,455 Park St, San Francisco,CA,94016 +216889,Apple Airpods Headphones,1,150.0,2019-06-07 10:24:00,267 6th St, Portland,OR,97035 +216890,Macbook Pro Laptop,1,1700.0,2019-06-08 22:02:00,945 4th St, Boston,MA,02215 +216891,AA Batteries (4-pack),1,3.84,2019-06-28 15:09:00,466 North St, Portland,ME,04101 +216892,AA Batteries (4-pack),1,3.84,2019-06-08 19:14:00,553 Willow St, San Francisco,CA,94016 +216893,Wired Headphones,1,11.99,2019-06-15 21:21:00,60 2nd St, New York City,NY,10001 +216894,27in 4K Gaming Monitor,1,389.99,2019-06-14 19:08:00,604 Washington St, New York City,NY,10001 +216895,AAA Batteries (4-pack),2,2.99,2019-06-09 09:23:00,778 Washington St, Austin,TX,73301 +216896,Google Phone,1,600.0,2019-06-16 10:33:00,678 12th St, San Francisco,CA,94016 +216897,34in Ultrawide Monitor,1,379.99,2019-06-05 22:56:00,504 Jackson St, Portland,OR,97035 +216898,34in Ultrawide Monitor,1,379.99,2019-06-02 05:21:00,186 Chestnut St, Los Angeles,CA,90001 +216899,Bose SoundSport Headphones,1,99.99,2019-06-11 15:52:00,796 14th St, San Francisco,CA,94016 +216900,Bose SoundSport Headphones,1,99.99,2019-06-30 15:52:00,938 River St, Atlanta,GA,30301 +216901,Wired Headphones,1,11.99,2019-06-05 06:53:00,393 4th St, New York City,NY,10001 +216902,Wired Headphones,1,11.99,2019-06-02 19:32:00,868 Sunset St, Dallas,TX,75001 +216903,iPhone,1,700.0,2019-06-02 18:37:00,38 12th St, San Francisco,CA,94016 +216904,iPhone,1,700.0,2019-06-10 14:47:00,686 Main St, Dallas,TX,75001 +216905,AA Batteries (4-pack),2,3.84,2019-06-01 11:19:00,256 Lincoln St, New York City,NY,10001 +216906,Flatscreen TV,1,300.0,2019-06-06 21:12:00,444 Spruce St, Los Angeles,CA,90001 +216907,AA Batteries (4-pack),1,3.84,2019-06-17 18:44:00,889 11th St, Boston,MA,02215 +216908,Google Phone,1,600.0,2019-06-14 15:59:00,77 Johnson St, San Francisco,CA,94016 +216909,Macbook Pro Laptop,1,1700.0,2019-06-29 11:14:00,284 River St, Los Angeles,CA,90001 +216910,USB-C Charging Cable,1,11.95,2019-06-02 15:53:00,798 Meadow St, Seattle,WA,98101 +216911,Lightning Charging Cable,1,14.95,2019-06-04 03:38:00,506 Madison St, Austin,TX,73301 +216912,Bose SoundSport Headphones,1,99.99,2019-06-03 16:26:00,291 Lincoln St, San Francisco,CA,94016 +216913,27in FHD Monitor,1,149.99,2019-06-17 11:39:00,676 Spruce St, Seattle,WA,98101 +216914,Lightning Charging Cable,1,14.95,2019-06-09 13:18:00,559 6th St, New York City,NY,10001 +216915,Lightning Charging Cable,1,14.95,2019-06-25 06:22:00,754 5th St, Los Angeles,CA,90001 +216916,AA Batteries (4-pack),2,3.84,2019-06-09 21:50:00,476 11th St, Boston,MA,02215 +216917,27in FHD Monitor,1,149.99,2019-06-07 03:53:00,899 Jackson St, Los Angeles,CA,90001 +216918,AAA Batteries (4-pack),1,2.99,2019-06-21 18:49:00,941 1st St, Atlanta,GA,30301 +216919,USB-C Charging Cable,1,11.95,2019-06-13 18:38:00,289 Lake St, Atlanta,GA,30301 +216920,USB-C Charging Cable,2,11.95,2019-06-02 09:50:00,510 Adams St, New York City,NY,10001 +216921,ThinkPad Laptop,1,999.99,2019-06-01 17:11:00,196 8th St, Austin,TX,73301 +216922,USB-C Charging Cable,1,11.95,2019-06-24 15:48:00,20 14th St, Los Angeles,CA,90001 +216923,Wired Headphones,1,11.99,2019-06-14 11:08:00,80 2nd St, New York City,NY,10001 +216924,Bose SoundSport Headphones,1,99.99,2019-06-26 11:52:00,317 Lakeview St, San Francisco,CA,94016 +216925,Macbook Pro Laptop,1,1700.0,2019-06-17 09:27:00,709 North St, San Francisco,CA,94016 +216926,ThinkPad Laptop,1,999.99,2019-06-27 15:29:00,66 Meadow St, Los Angeles,CA,90001 +216927,Lightning Charging Cable,1,14.95,2019-06-24 23:16:00,865 Willow St, Atlanta,GA,30301 +216928,USB-C Charging Cable,1,11.95,2019-06-16 10:31:00,504 6th St, San Francisco,CA,94016 +216929,USB-C Charging Cable,1,11.95,2019-06-05 18:48:00,640 West St, San Francisco,CA,94016 +216930,USB-C Charging Cable,1,11.95,2019-06-04 17:52:00,586 1st St, San Francisco,CA,94016 +216931,iPhone,1,700.0,2019-06-28 18:14:00,570 Park St, New York City,NY,10001 +216932,USB-C Charging Cable,1,11.95,2019-06-29 18:25:00,556 4th St, New York City,NY,10001 +216933,Macbook Pro Laptop,1,1700.0,2019-06-01 22:41:00,83 Wilson St, New York City,NY,10001 +216934,Flatscreen TV,1,300.0,2019-06-05 15:48:00,105 Lincoln St, Dallas,TX,75001 +216935,Lightning Charging Cable,1,14.95,2019-06-01 15:23:00,666 Cedar St, Atlanta,GA,30301 +216936,Bose SoundSport Headphones,1,99.99,2019-06-30 15:50:00,976 13th St, Dallas,TX,75001 +216937,Lightning Charging Cable,2,14.95,2019-06-15 18:47:00,737 Johnson St, Atlanta,GA,30301 +216938,Bose SoundSport Headphones,1,99.99,2019-06-07 15:16:00,335 11th St, San Francisco,CA,94016 +216939,Lightning Charging Cable,1,14.95,2019-06-02 11:07:00,825 Elm St, San Francisco,CA,94016 +216940,Apple Airpods Headphones,1,150.0,2019-06-30 17:50:00,654 14th St, San Francisco,CA,94016 +216941,iPhone,1,700.0,2019-06-14 11:55:00,740 Hill St, Los Angeles,CA,90001 +216941,34in Ultrawide Monitor,1,379.99,2019-06-14 11:55:00,740 Hill St, Los Angeles,CA,90001 +216942,AAA Batteries (4-pack),2,2.99,2019-06-08 18:18:00,75 Hickory St, New York City,NY,10001 +216943,iPhone,1,700.0,2019-06-12 20:34:00,674 Lakeview St, Atlanta,GA,30301 +216943,Lightning Charging Cable,1,14.95,2019-06-12 20:34:00,674 Lakeview St, Atlanta,GA,30301 +216944,Lightning Charging Cable,1,14.95,2019-06-23 10:15:00,150 Church St, San Francisco,CA,94016 +216945,Google Phone,1,600.0,2019-06-21 13:18:00,817 Wilson St, Dallas,TX,75001 +216946,iPhone,1,700.0,2019-06-14 23:08:00,701 Forest St, San Francisco,CA,94016 +216947,AAA Batteries (4-pack),1,2.99,2019-06-25 17:42:00,452 Forest St, Seattle,WA,98101 +216948,USB-C Charging Cable,1,11.95,2019-06-04 16:54:00,357 Main St, Austin,TX,73301 +216949,ThinkPad Laptop,1,999.99,2019-06-07 21:37:00,287 Meadow St, San Francisco,CA,94016 +216950,27in 4K Gaming Monitor,1,389.99,2019-06-11 09:45:00,785 2nd St, New York City,NY,10001 +216951,Wired Headphones,1,11.99,2019-06-21 20:42:00,469 Pine St, Los Angeles,CA,90001 +216952,20in Monitor,1,109.99,2019-06-13 12:03:00,617 Lake St, Portland,OR,97035 +216953,Google Phone,1,600.0,2019-06-19 21:08:00,18 1st St, San Francisco,CA,94016 +216954,Apple Airpods Headphones,1,150.0,2019-06-13 15:50:00,275 River St, New York City,NY,10001 +216955,USB-C Charging Cable,1,11.95,2019-06-26 15:03:00,16 Hickory St, Austin,TX,73301 +216956,27in FHD Monitor,1,149.99,2019-06-06 21:31:00,973 Highland St, Seattle,WA,98101 +216957,Apple Airpods Headphones,1,150.0,2019-06-23 14:55:00,470 Highland St, San Francisco,CA,94016 +216958,Flatscreen TV,1,300.0,2019-06-28 17:38:00,83 North St, Los Angeles,CA,90001 +216959,Lightning Charging Cable,1,14.95,2019-06-08 23:45:00,382 7th St, New York City,NY,10001 +216960,Wired Headphones,1,11.99,2019-06-27 12:12:00,159 6th St, Los Angeles,CA,90001 +216961,AAA Batteries (4-pack),1,2.99,2019-06-01 21:11:00,844 8th St, New York City,NY,10001 +216962,Flatscreen TV,1,300.0,2019-06-03 10:41:00,249 Chestnut St, Atlanta,GA,30301 +216963,AAA Batteries (4-pack),3,2.99,2019-06-07 11:55:00,47 Cedar St, San Francisco,CA,94016 +216964,AA Batteries (4-pack),1,3.84,2019-06-18 09:31:00,723 Chestnut St, San Francisco,CA,94016 +216965,Lightning Charging Cable,1,14.95,2019-06-21 18:13:00,889 Lake St, Atlanta,GA,30301 +216966,AAA Batteries (4-pack),1,2.99,2019-06-24 11:50:00,641 Hickory St, Austin,TX,73301 +216967,AA Batteries (4-pack),1,3.84,2019-06-06 12:08:00,558 North St, San Francisco,CA,94016 +216968,34in Ultrawide Monitor,1,379.99,2019-06-19 19:04:00,424 1st St, San Francisco,CA,94016 +216969,Vareebadd Phone,1,400.0,2019-06-07 08:36:00,634 Johnson St, Austin,TX,73301 +216970,ThinkPad Laptop,1,999.99,2019-06-25 12:29:00,663 Hill St, Seattle,WA,98101 +216971,AA Batteries (4-pack),1,3.84,2019-06-06 22:31:00,601 Walnut St, San Francisco,CA,94016 +216972,Lightning Charging Cable,1,14.95,2019-06-20 13:37:00,592 Johnson St, Dallas,TX,75001 +216973,iPhone,1,700.0,2019-06-04 19:03:00,692 Meadow St, Los Angeles,CA,90001 +216974,Google Phone,1,600.0,2019-06-10 16:14:00,379 Lakeview St, Dallas,TX,75001 +216974,USB-C Charging Cable,1,11.95,2019-06-10 16:14:00,379 Lakeview St, Dallas,TX,75001 +216975,Bose SoundSport Headphones,1,99.99,2019-06-10 08:30:00,79 Church St, Dallas,TX,75001 +216976,iPhone,1,700.0,2019-06-25 20:39:00,930 Jackson St, Boston,MA,02215 +216976,27in 4K Gaming Monitor,1,389.99,2019-06-25 20:39:00,930 Jackson St, Boston,MA,02215 +216977,Wired Headphones,1,11.99,2019-06-28 19:49:00,44 4th St, San Francisco,CA,94016 +216978,iPhone,1,700.0,2019-06-09 13:11:00,57 Washington St, San Francisco,CA,94016 +216979,AA Batteries (4-pack),1,3.84,2019-06-09 11:46:00,985 Highland St, New York City,NY,10001 +216980,AAA Batteries (4-pack),3,2.99,2019-06-16 23:12:00,209 Adams St, Seattle,WA,98101 +216981,AAA Batteries (4-pack),1,2.99,2019-06-14 18:55:00,20 Church St, Austin,TX,73301 +216982,Wired Headphones,1,11.99,2019-06-29 01:04:00,160 Sunset St, Atlanta,GA,30301 +216983,LG Dryer,1,600.0,2019-06-02 19:17:00,431 7th St, Austin,TX,73301 +216984,Lightning Charging Cable,1,14.95,2019-06-07 23:11:00,255 Wilson St, Los Angeles,CA,90001 +216985,Lightning Charging Cable,1,14.95,2019-06-13 19:46:00,718 Walnut St, New York City,NY,10001 +216986,Wired Headphones,1,11.99,2019-06-28 22:31:00,874 Washington St, Seattle,WA,98101 +216987,Bose SoundSport Headphones,1,99.99,2019-06-17 15:12:00,668 Chestnut St, San Francisco,CA,94016 +216988,Wired Headphones,1,11.99,2019-06-29 14:52:00,976 Forest St, San Francisco,CA,94016 +216989,Apple Airpods Headphones,1,150.0,2019-06-10 20:14:00,579 Park St, Dallas,TX,75001 +216990,27in 4K Gaming Monitor,1,389.99,2019-06-01 11:35:00,623 13th St, San Francisco,CA,94016 +216991,AAA Batteries (4-pack),1,2.99,2019-06-04 18:15:00,9 Highland St, Seattle,WA,98101 +216992,Lightning Charging Cable,1,14.95,2019-06-19 16:38:00,325 2nd St, San Francisco,CA,94016 +216993,34in Ultrawide Monitor,1,379.99,2019-06-07 21:02:00,382 2nd St, San Francisco,CA,94016 +216994,AA Batteries (4-pack),1,3.84,2019-06-05 00:35:00,555 North St, Los Angeles,CA,90001 +216995,AA Batteries (4-pack),1,3.84,2019-06-11 13:06:00,245 West St, Dallas,TX,75001 +216996,27in FHD Monitor,1,149.99,2019-06-03 19:32:00,305 4th St, San Francisco,CA,94016 +216997,Google Phone,1,600.0,2019-06-16 21:39:00,325 Spruce St, Atlanta,GA,30301 +216998,Apple Airpods Headphones,1,150.0,2019-06-06 17:40:00,351 Willow St, Portland,OR,97035 +216999,Bose SoundSport Headphones,1,99.99,2019-06-25 12:53:00,358 Adams St, San Francisco,CA,94016 +217000,Lightning Charging Cable,1,14.95,2019-06-08 14:56:00,217 7th St, Atlanta,GA,30301 +217001,ThinkPad Laptop,1,999.99,2019-06-16 19:15:00,261 Lincoln St, Dallas,TX,75001 +217002,27in FHD Monitor,1,149.99,2019-06-16 18:49:00,598 Center St, Dallas,TX,75001 +217003,AAA Batteries (4-pack),1,2.99,2019-06-21 13:30:00,725 West St, Dallas,TX,75001 +217004,AAA Batteries (4-pack),2,2.99,2019-06-01 17:50:00,363 South St, San Francisco,CA,94016 +217005,AA Batteries (4-pack),1,3.84,2019-06-30 10:31:00,701 Maple St, Boston,MA,02215 +217006,Lightning Charging Cable,2,14.95,2019-06-19 15:23:00,691 Sunset St, Los Angeles,CA,90001 +217007,USB-C Charging Cable,1,11.95,2019-06-21 12:28:00,331 6th St, New York City,NY,10001 +217008,Google Phone,1,600.0,2019-06-11 17:39:00,301 Wilson St, Dallas,TX,75001 +217008,USB-C Charging Cable,1,11.95,2019-06-11 17:39:00,301 Wilson St, Dallas,TX,75001 +217009,Wired Headphones,1,11.99,2019-06-23 11:13:00,334 Walnut St, Portland,OR,97035 +217010,AA Batteries (4-pack),1,3.84,2019-06-21 18:31:00,347 Maple St, New York City,NY,10001 +217011,Wired Headphones,2,11.99,2019-06-03 14:25:00,361 Washington St, Portland,OR,97035 +217012,USB-C Charging Cable,1,11.95,2019-06-21 22:25:00,970 Maple St, Seattle,WA,98101 +217013,Lightning Charging Cable,1,14.95,2019-06-23 19:51:00,198 Cedar St, Atlanta,GA,30301 +217014,Bose SoundSport Headphones,1,99.99,2019-06-13 19:44:00,767 Cherry St, Los Angeles,CA,90001 +217015,AA Batteries (4-pack),2,3.84,2019-06-19 10:07:00,749 2nd St, San Francisco,CA,94016 +217016,34in Ultrawide Monitor,1,379.99,2019-06-27 14:31:00,974 South St, New York City,NY,10001 +217017,Google Phone,1,600.0,2019-06-08 19:11:00,366 Chestnut St, San Francisco,CA,94016 +217018,27in 4K Gaming Monitor,1,389.99,2019-06-07 20:52:00,341 Main St, Los Angeles,CA,90001 +217019,iPhone,1,700.0,2019-06-12 17:02:00,315 Lakeview St, San Francisco,CA,94016 +217020,AA Batteries (4-pack),1,3.84,2019-06-13 18:45:00,564 Hill St, Portland,ME,04101 +217021,AAA Batteries (4-pack),1,2.99,2019-06-23 16:28:00,939 10th St, Seattle,WA,98101 +217022,AAA Batteries (4-pack),1,2.99,2019-06-11 07:54:00,649 11th St, San Francisco,CA,94016 +217023,Google Phone,1,600.0,2019-06-06 23:31:00,1 Sunset St, Seattle,WA,98101 +217023,Wired Headphones,1,11.99,2019-06-06 23:31:00,1 Sunset St, Seattle,WA,98101 +217024,AAA Batteries (4-pack),3,2.99,2019-06-03 11:55:00,996 10th St, Atlanta,GA,30301 +217025,LG Washing Machine,1,600.0,2019-06-11 17:16:00,652 Pine St, Atlanta,GA,30301 +217026,Lightning Charging Cable,1,14.95,2019-06-18 16:23:00,592 Lincoln St, Portland,OR,97035 +217027,Apple Airpods Headphones,1,150.0,2019-06-17 12:16:00,83 7th St, San Francisco,CA,94016 +217028,iPhone,1,700.0,2019-06-11 14:56:00,108 7th St, Boston,MA,02215 +217028,Apple Airpods Headphones,1,150.0,2019-06-11 14:56:00,108 7th St, Boston,MA,02215 +217029,USB-C Charging Cable,1,11.95,2019-06-24 20:38:00,700 10th St, Seattle,WA,98101 +217030,USB-C Charging Cable,1,11.95,2019-06-23 11:59:00,353 2nd St, Los Angeles,CA,90001 +217031,Apple Airpods Headphones,1,150.0,2019-06-04 23:46:00,537 Walnut St, New York City,NY,10001 +217032,34in Ultrawide Monitor,1,379.99,2019-06-06 18:42:00,208 9th St, San Francisco,CA,94016 +217033,AA Batteries (4-pack),1,3.84,2019-06-05 12:25:00,692 13th St, San Francisco,CA,94016 +217034,USB-C Charging Cable,1,11.95,2019-06-24 22:01:00,428 10th St, San Francisco,CA,94016 +217035,USB-C Charging Cable,1,11.95,2019-06-16 16:30:00,968 River St, Boston,MA,02215 +217036,USB-C Charging Cable,1,11.95,2019-06-09 16:22:00,878 Spruce St, Los Angeles,CA,90001 +217037,Apple Airpods Headphones,1,150.0,2019-06-05 09:23:00,543 Willow St, Los Angeles,CA,90001 +217038,Lightning Charging Cable,2,14.95,2019-06-26 08:25:00,460 Maple St, Portland,ME,04101 +217039,34in Ultrawide Monitor,1,379.99,2019-06-27 17:39:00,493 Jackson St, New York City,NY,10001 +217040,AAA Batteries (4-pack),1,2.99,2019-06-02 13:06:00,192 Madison St, San Francisco,CA,94016 +217041,AA Batteries (4-pack),2,3.84,2019-06-12 16:12:00,903 Jackson St, Seattle,WA,98101 +217042,USB-C Charging Cable,1,11.95,2019-06-20 12:49:00,479 6th St, Boston,MA,02215 +217042,Macbook Pro Laptop,1,1700.0,2019-06-20 12:49:00,479 6th St, Boston,MA,02215 +217043,Lightning Charging Cable,1,14.95,2019-06-07 18:51:00,447 12th St, New York City,NY,10001 +217044,USB-C Charging Cable,1,11.95,2019-06-06 20:17:00,784 8th St, Dallas,TX,75001 +217045,AA Batteries (4-pack),1,3.84,2019-06-13 13:21:00,163 West St, Seattle,WA,98101 +217046,27in FHD Monitor,1,149.99,2019-06-17 23:29:00,794 8th St, Austin,TX,73301 +217047,AAA Batteries (4-pack),1,2.99,2019-06-13 23:34:00,947 8th St, Atlanta,GA,30301 +217048,AAA Batteries (4-pack),2,2.99,2019-06-14 12:39:00,179 Walnut St, San Francisco,CA,94016 +217049,iPhone,1,700.0,2019-06-09 17:47:00,140 Park St, San Francisco,CA,94016 +217050,27in 4K Gaming Monitor,1,389.99,2019-06-13 16:01:00,316 Elm St, Boston,MA,02215 +217051,Google Phone,1,600.0,2019-06-27 01:05:00,724 South St, Boston,MA,02215 +217052,Lightning Charging Cable,1,14.95,2019-06-12 13:25:00,91 Spruce St, San Francisco,CA,94016 +217053,Vareebadd Phone,1,400.0,2019-06-14 12:57:00,462 Meadow St, San Francisco,CA,94016 +217054,USB-C Charging Cable,1,11.95,2019-06-01 16:55:00,14 2nd St, San Francisco,CA,94016 +217055,USB-C Charging Cable,1,11.95,2019-06-29 20:04:00,516 Adams St, San Francisco,CA,94016 +217056,27in FHD Monitor,1,149.99,2019-06-10 07:05:00,879 Sunset St, Portland,ME,04101 +217057,Flatscreen TV,1,300.0,2019-06-28 13:24:00,1 5th St, San Francisco,CA,94016 +217058,Lightning Charging Cable,1,14.95,2019-06-24 16:03:00,912 Hickory St, San Francisco,CA,94016 +217059,AA Batteries (4-pack),1,3.84,2019-06-06 14:54:00,443 Main St, Los Angeles,CA,90001 +217060,Lightning Charging Cable,1,14.95,2019-06-14 10:44:00,101 1st St, Los Angeles,CA,90001 +217061,Macbook Pro Laptop,1,1700.0,2019-06-10 07:46:00,753 Hickory St, Los Angeles,CA,90001 +217062,USB-C Charging Cable,1,11.95,2019-06-28 12:03:00,265 Madison St, San Francisco,CA,94016 +217063,LG Washing Machine,1,600.0,2019-06-19 08:35:00,705 6th St, Los Angeles,CA,90001 +217064,Lightning Charging Cable,1,14.95,2019-06-18 11:39:00,950 South St, Dallas,TX,75001 +217065,AAA Batteries (4-pack),1,2.99,2019-06-26 20:00:00,858 Jefferson St, Austin,TX,73301 +217066,Google Phone,1,600.0,2019-06-29 14:42:00,751 Pine St, San Francisco,CA,94016 +217066,Wired Headphones,1,11.99,2019-06-29 14:42:00,751 Pine St, San Francisco,CA,94016 +217067,Vareebadd Phone,1,400.0,2019-06-04 09:40:00,150 Washington St, San Francisco,CA,94016 +217067,USB-C Charging Cable,1,11.95,2019-06-04 09:40:00,150 Washington St, San Francisco,CA,94016 +217068,Bose SoundSport Headphones,1,99.99,2019-06-01 18:10:00,317 Center St, Boston,MA,02215 +217069,AA Batteries (4-pack),1,3.84,2019-06-28 16:55:00,756 Jackson St, Los Angeles,CA,90001 +217070,AA Batteries (4-pack),1,3.84,2019-06-08 08:29:00,549 Meadow St, Los Angeles,CA,90001 +217071,27in FHD Monitor,1,149.99,2019-06-15 10:15:00,841 South St, San Francisco,CA,94016 +217072,Apple Airpods Headphones,1,150.0,2019-06-09 20:13:00,723 11th St, Atlanta,GA,30301 +217073,27in FHD Monitor,1,149.99,2019-06-13 09:28:00,85 Jackson St, San Francisco,CA,94016 +217074,AAA Batteries (4-pack),2,2.99,2019-06-06 18:38:00,608 7th St, San Francisco,CA,94016 +217075,34in Ultrawide Monitor,1,379.99,2019-06-19 09:13:00,999 Walnut St, Atlanta,GA,30301 +217076,Lightning Charging Cable,1,14.95,2019-06-26 10:42:00,341 9th St, Boston,MA,02215 +217077,27in FHD Monitor,1,149.99,2019-06-05 20:39:00,528 Cherry St, Boston,MA,02215 +217078,iPhone,1,700.0,2019-06-14 08:52:00,834 North St, Los Angeles,CA,90001 +217079,AA Batteries (4-pack),1,3.84,2019-06-03 13:41:00,938 Park St, Boston,MA,02215 +217080,AA Batteries (4-pack),2,3.84,2019-06-04 23:00:00,436 8th St, Los Angeles,CA,90001 +217081,Apple Airpods Headphones,1,150.0,2019-06-02 20:44:00,490 5th St, Los Angeles,CA,90001 +217082,Apple Airpods Headphones,1,150.0,2019-06-05 09:42:00,809 North St, Dallas,TX,75001 +217083,AAA Batteries (4-pack),1,2.99,2019-06-25 08:45:00,137 Dogwood St, Atlanta,GA,30301 +217084,34in Ultrawide Monitor,2,379.99,2019-06-29 19:17:00,294 Hill St, Los Angeles,CA,90001 +217085,27in FHD Monitor,1,149.99,2019-06-20 12:31:00,393 Ridge St, San Francisco,CA,94016 +217086,Wired Headphones,1,11.99,2019-06-29 10:22:00,835 Maple St, Portland,ME,04101 +217087,USB-C Charging Cable,1,11.95,2019-06-26 14:30:00,458 Main St, Dallas,TX,75001 +217088,iPhone,1,700.0,2019-06-12 21:06:00,187 Wilson St, San Francisco,CA,94016 +217089,Bose SoundSport Headphones,1,99.99,2019-06-28 22:11:00,629 Park St, San Francisco,CA,94016 +217090,Lightning Charging Cable,1,14.95,2019-06-19 10:57:00,100 Johnson St, Dallas,TX,75001 +217091,ThinkPad Laptop,1,999.99,2019-06-28 07:24:00,247 Park St, Atlanta,GA,30301 +217092,Macbook Pro Laptop,1,1700.0,2019-06-22 08:33:00,85 Washington St, San Francisco,CA,94016 +217093,Wired Headphones,1,11.99,2019-06-13 15:51:00,247 Hill St, San Francisco,CA,94016 +217094,ThinkPad Laptop,1,999.99,2019-06-28 17:47:00,576 West St, San Francisco,CA,94016 +217095,Flatscreen TV,1,300.0,2019-06-20 15:37:00,897 Johnson St, Atlanta,GA,30301 +217096,Wired Headphones,1,11.99,2019-06-14 18:21:00,580 Lake St, Los Angeles,CA,90001 +217097,USB-C Charging Cable,1,11.95,2019-06-21 19:17:00,544 Washington St, San Francisco,CA,94016 +217098,27in 4K Gaming Monitor,1,389.99,2019-06-17 09:53:00,795 River St, Los Angeles,CA,90001 +217099,AAA Batteries (4-pack),1,2.99,2019-06-20 00:35:00,427 8th St, Los Angeles,CA,90001 +217100,Bose SoundSport Headphones,1,99.99,2019-06-19 12:39:00,623 Spruce St, Boston,MA,02215 +217101,AAA Batteries (4-pack),1,2.99,2019-06-19 11:43:00,883 Cherry St, Los Angeles,CA,90001 +217102,AAA Batteries (4-pack),1,2.99,2019-06-22 07:59:00,912 Church St, Los Angeles,CA,90001 +217103,AA Batteries (4-pack),1,3.84,2019-06-19 08:28:00,162 8th St, Atlanta,GA,30301 +217104,USB-C Charging Cable,1,11.95,2019-06-26 16:40:00,411 Main St, Atlanta,GA,30301 +217105,AAA Batteries (4-pack),1,2.99,2019-06-04 12:43:00,216 Cedar St, Dallas,TX,75001 +217106,Lightning Charging Cable,1,14.95,2019-06-02 20:52:00,25 Meadow St, San Francisco,CA,94016 +217107,Wired Headphones,1,11.99,2019-06-07 00:29:00,432 Maple St, San Francisco,CA,94016 +217108,USB-C Charging Cable,1,11.95,2019-06-15 08:51:00,617 1st St, Austin,TX,73301 +217109,USB-C Charging Cable,1,11.95,2019-06-14 10:36:00,587 Park St, Los Angeles,CA,90001 +217110,Lightning Charging Cable,1,14.95,2019-06-29 12:31:00,325 14th St, San Francisco,CA,94016 +217111,Apple Airpods Headphones,1,150.0,2019-06-28 08:54:00,314 South St, Atlanta,GA,30301 +217112,iPhone,1,700.0,2019-06-27 17:05:00,481 10th St, Los Angeles,CA,90001 +217113,AAA Batteries (4-pack),1,2.99,2019-06-13 19:01:00,748 Maple St, Dallas,TX,75001 +217114,AA Batteries (4-pack),1,3.84,2019-06-01 07:16:00,514 Jackson St, Dallas,TX,75001 +217115,Bose SoundSport Headphones,1,99.99,2019-06-12 19:18:00,308 Sunset St, Boston,MA,02215 +217116,AA Batteries (4-pack),1,3.84,2019-06-21 07:02:00,699 9th St, Austin,TX,73301 +217117,Lightning Charging Cable,1,14.95,2019-06-27 11:55:00,348 7th St, Los Angeles,CA,90001 +217118,USB-C Charging Cable,1,11.95,2019-06-01 22:16:00,873 Dogwood St, Atlanta,GA,30301 +217119,USB-C Charging Cable,1,11.95,2019-06-12 17:14:00,26 Wilson St, Boston,MA,02215 +217120,27in FHD Monitor,1,149.99,2019-06-10 13:16:00,453 North St, Atlanta,GA,30301 +217121,34in Ultrawide Monitor,1,379.99,2019-06-09 16:41:00,11 Church St, Dallas,TX,75001 +217122,Macbook Pro Laptop,1,1700.0,2019-06-18 19:31:00,683 Spruce St, Los Angeles,CA,90001 +217123,27in FHD Monitor,1,149.99,2019-06-16 09:16:00,666 South St, New York City,NY,10001 +217124,Wired Headphones,1,11.99,2019-06-09 17:00:00,416 Lakeview St, Seattle,WA,98101 +217125,AAA Batteries (4-pack),1,2.99,2019-06-22 18:47:00,738 North St, Seattle,WA,98101 +217126,Lightning Charging Cable,1,14.95,2019-06-07 23:56:00,667 Wilson St, Atlanta,GA,30301 +217127,Lightning Charging Cable,1,14.95,2019-06-11 21:31:00,188 Dogwood St, Atlanta,GA,30301 +217128,Bose SoundSport Headphones,1,99.99,2019-06-21 22:30:00,345 Jefferson St, Boston,MA,02215 +217129,Macbook Pro Laptop,1,1700.0,2019-06-13 10:28:00,983 13th St, San Francisco,CA,94016 +217130,Flatscreen TV,1,300.0,2019-06-18 12:22:00,220 Madison St, San Francisco,CA,94016 +217131,Vareebadd Phone,1,400.0,2019-06-30 04:01:00,445 Jefferson St, Boston,MA,02215 +217132,AAA Batteries (4-pack),1,2.99,2019-06-03 21:16:00,785 Park St, Dallas,TX,75001 +217133,USB-C Charging Cable,1,11.95,2019-06-10 20:29:00,334 Madison St, New York City,NY,10001 +217134,Flatscreen TV,1,300.0,2019-06-09 08:06:00,104 River St, San Francisco,CA,94016 +217135,Bose SoundSport Headphones,1,99.99,2019-06-01 21:00:00,536 Spruce St, Atlanta,GA,30301 +217136,iPhone,1,700.0,2019-06-21 14:43:00,749 Jackson St, Austin,TX,73301 +217137,Lightning Charging Cable,1,14.95,2019-06-08 14:32:00,378 1st St, San Francisco,CA,94016 +217138,Lightning Charging Cable,1,14.95,2019-06-11 11:44:00,637 Cedar St, New York City,NY,10001 +217139,20in Monitor,1,109.99,2019-06-25 19:52:00,310 4th St, Los Angeles,CA,90001 +217140,ThinkPad Laptop,1,999.99,2019-06-08 12:21:00,313 5th St, Atlanta,GA,30301 +217141,Bose SoundSport Headphones,1,99.99,2019-06-16 18:01:00,505 Center St, Los Angeles,CA,90001 +217142,USB-C Charging Cable,1,11.95,2019-06-16 00:37:00,839 Center St, Seattle,WA,98101 +217143,34in Ultrawide Monitor,1,379.99,2019-06-14 17:30:00,844 Madison St, Austin,TX,73301 +217144,AAA Batteries (4-pack),1,2.99,2019-06-03 07:32:00,268 4th St, San Francisco,CA,94016 +217145,USB-C Charging Cable,1,11.95,2019-06-27 19:40:00,641 4th St, Los Angeles,CA,90001 +217146,Google Phone,1,600.0,2019-06-01 12:53:00,118 Cedar St, Portland,OR,97035 +217147,Apple Airpods Headphones,1,150.0,2019-06-03 10:03:00,75 Center St, Portland,OR,97035 +217148,Lightning Charging Cable,1,14.95,2019-06-20 17:48:00,714 Willow St, Atlanta,GA,30301 +217149,Lightning Charging Cable,1,14.95,2019-06-29 19:02:00,911 South St, Austin,TX,73301 +217150,Bose SoundSport Headphones,1,99.99,2019-06-14 17:56:00,239 North St, Los Angeles,CA,90001 +217151,AAA Batteries (4-pack),1,2.99,2019-06-01 20:23:00,557 Lake St, San Francisco,CA,94016 +217152,Bose SoundSport Headphones,1,99.99,2019-06-29 22:18:00,710 Madison St, Dallas,TX,75001 +217153,20in Monitor,1,109.99,2019-06-19 22:06:00,321 4th St, San Francisco,CA,94016 +217154,27in FHD Monitor,1,149.99,2019-06-03 19:13:00,98 North St, Atlanta,GA,30301 +217155,iPhone,1,700.0,2019-06-30 13:31:00,869 Cedar St, Dallas,TX,75001 +217156,Apple Airpods Headphones,1,150.0,2019-06-18 00:13:00,152 Center St, New York City,NY,10001 +217157,Lightning Charging Cable,1,14.95,2019-06-13 10:20:00,903 Washington St, Atlanta,GA,30301 +217158,34in Ultrawide Monitor,1,379.99,2019-06-21 12:46:00,762 Willow St, Los Angeles,CA,90001 +217159,Bose SoundSport Headphones,1,99.99,2019-06-24 19:44:00,793 Hickory St, New York City,NY,10001 +217160,Bose SoundSport Headphones,1,99.99,2019-06-28 22:58:00,491 Park St, San Francisco,CA,94016 +217161,Bose SoundSport Headphones,1,99.99,2019-06-16 15:31:00,932 Washington St, San Francisco,CA,94016 +217162,AA Batteries (4-pack),5,3.84,2019-06-12 21:06:00,130 Dogwood St, Boston,MA,02215 +217163,Wired Headphones,2,11.99,2019-06-08 22:20:00,127 Hickory St, Dallas,TX,75001 +217164,Wired Headphones,1,11.99,2019-06-29 09:50:00,606 Highland St, San Francisco,CA,94016 +217165,27in 4K Gaming Monitor,1,389.99,2019-06-14 08:10:00,783 Willow St, San Francisco,CA,94016 +217166,Apple Airpods Headphones,1,150.0,2019-06-15 19:25:00,670 Church St, Boston,MA,02215 +217167,USB-C Charging Cable,2,11.95,2019-06-21 23:25:00,707 Hickory St, San Francisco,CA,94016 +217168,AAA Batteries (4-pack),1,2.99,2019-06-01 23:37:00,70 6th St, New York City,NY,10001 +217169,Apple Airpods Headphones,1,150.0,2019-06-27 18:35:00,85 Jackson St, San Francisco,CA,94016 +217169,ThinkPad Laptop,1,999.99,2019-06-27 18:35:00,85 Jackson St, San Francisco,CA,94016 +217170,Apple Airpods Headphones,1,150.0,2019-06-12 16:09:00,993 Lincoln St, Boston,MA,02215 +217171,iPhone,1,700.0,2019-06-05 04:50:00,104 10th St, Boston,MA,02215 +217172,27in FHD Monitor,1,149.99,2019-06-07 08:17:00,51 Cherry St, Austin,TX,73301 +217173,Lightning Charging Cable,1,14.95,2019-06-23 01:53:00,145 9th St, San Francisco,CA,94016 +217174,Lightning Charging Cable,1,14.95,2019-06-21 10:18:00,856 Jackson St, San Francisco,CA,94016 +217175,Flatscreen TV,1,300.0,2019-06-30 11:24:00,847 Highland St, Los Angeles,CA,90001 +217176,USB-C Charging Cable,1,11.95,2019-06-07 14:55:00,263 8th St, San Francisco,CA,94016 +217177,iPhone,1,700.0,2019-06-24 03:13:00,980 Meadow St, San Francisco,CA,94016 +217178,34in Ultrawide Monitor,1,379.99,2019-06-22 10:48:00,751 Adams St, Los Angeles,CA,90001 +217179,Bose SoundSport Headphones,1,99.99,2019-06-16 13:16:00,531 Ridge St, Portland,ME,04101 +217180,USB-C Charging Cable,1,11.95,2019-06-23 23:05:00,77 Jackson St, Boston,MA,02215 +217181,Lightning Charging Cable,1,14.95,2019-06-26 13:01:00,877 7th St, San Francisco,CA,94016 +217182,Wired Headphones,1,11.99,2019-06-02 10:36:00,79 Church St, New York City,NY,10001 +217183,AAA Batteries (4-pack),1,2.99,2019-06-13 19:37:00,53 8th St, San Francisco,CA,94016 +217184,Macbook Pro Laptop,1,1700.0,2019-06-07 18:55:00,688 7th St, Portland,OR,97035 +217185,AAA Batteries (4-pack),2,2.99,2019-06-03 19:28:00,170 6th St, San Francisco,CA,94016 +217185,Bose SoundSport Headphones,1,99.99,2019-06-03 19:28:00,170 6th St, San Francisco,CA,94016 +217186,Apple Airpods Headphones,1,150.0,2019-06-09 16:19:00,551 Main St, San Francisco,CA,94016 +217187,USB-C Charging Cable,1,11.95,2019-06-05 13:32:00,453 Highland St, San Francisco,CA,94016 +217188,Lightning Charging Cable,1,14.95,2019-06-17 10:45:00,236 Jackson St, Dallas,TX,75001 +217189,Lightning Charging Cable,1,14.95,2019-06-24 11:53:00,347 2nd St, Seattle,WA,98101 +217190,Apple Airpods Headphones,1,150.0,2019-06-01 23:20:00,543 Lakeview St, San Francisco,CA,94016 +217191,Lightning Charging Cable,1,14.95,2019-06-17 12:05:00,390 6th St, Los Angeles,CA,90001 +217192,AAA Batteries (4-pack),3,2.99,2019-06-05 14:48:00,611 Washington St, San Francisco,CA,94016 +217193,Apple Airpods Headphones,1,150.0,2019-06-16 16:04:00,612 Dogwood St, Los Angeles,CA,90001 +217194,AAA Batteries (4-pack),3,2.99,2019-06-21 09:35:00,687 Dogwood St, Seattle,WA,98101 +217195,AA Batteries (4-pack),1,3.84,2019-06-26 22:02:00,953 Meadow St, Los Angeles,CA,90001 +217196,AA Batteries (4-pack),2,3.84,2019-06-19 02:46:00,858 Lake St, San Francisco,CA,94016 +217197,iPhone,1,700.0,2019-06-03 11:57:00,339 14th St, Dallas,TX,75001 +217198,iPhone,1,700.0,2019-06-21 11:13:00,15 West St, Austin,TX,73301 +217199,AA Batteries (4-pack),1,3.84,2019-06-04 18:45:00,192 Highland St, San Francisco,CA,94016 +217200,Lightning Charging Cable,1,14.95,2019-06-28 20:47:00,659 Willow St, San Francisco,CA,94016 +217201,Lightning Charging Cable,1,14.95,2019-06-13 21:58:00,718 Forest St, Boston,MA,02215 +217202,USB-C Charging Cable,1,11.95,2019-06-29 22:46:00,491 7th St, Atlanta,GA,30301 +217203,Lightning Charging Cable,1,14.95,2019-06-14 08:37:00,768 Hickory St, Boston,MA,02215 +217204,AA Batteries (4-pack),1,3.84,2019-06-12 15:53:00,336 10th St, San Francisco,CA,94016 +217205,iPhone,1,700.0,2019-06-01 13:09:00,114 Lakeview St, Los Angeles,CA,90001 +217206,AAA Batteries (4-pack),1,2.99,2019-06-13 10:51:00,477 5th St, Dallas,TX,75001 +217207,Wired Headphones,1,11.99,2019-06-15 14:06:00,628 Jefferson St, Atlanta,GA,30301 +217208,Wired Headphones,1,11.99,2019-06-13 22:45:00,963 River St, Boston,MA,02215 +217209,Lightning Charging Cable,1,14.95,2019-06-09 20:08:00,342 11th St, Seattle,WA,98101 +217210,Apple Airpods Headphones,1,150.0,2019-06-11 15:31:00,258 10th St, Boston,MA,02215 +217211,Lightning Charging Cable,1,14.95,2019-06-19 17:48:00,320 Madison St, San Francisco,CA,94016 +217212,27in FHD Monitor,1,149.99,2019-06-21 15:21:00,563 Center St, Portland,OR,97035 +217213,27in 4K Gaming Monitor,1,389.99,2019-06-29 20:13:00,575 7th St, Los Angeles,CA,90001 +217214,iPhone,1,700.0,2019-06-10 10:26:00,505 Chestnut St, Austin,TX,73301 +217215,USB-C Charging Cable,1,11.95,2019-06-11 23:09:00,963 14th St, New York City,NY,10001 +217216,AAA Batteries (4-pack),2,2.99,2019-06-02 13:49:00,742 11th St, San Francisco,CA,94016 +217217,AA Batteries (4-pack),1,3.84,2019-06-23 00:00:00,291 Dogwood St, San Francisco,CA,94016 +217218,Apple Airpods Headphones,1,150.0,2019-06-11 10:32:00,670 11th St, Austin,TX,73301 +217219,Lightning Charging Cable,1,14.95,2019-06-08 20:47:00,821 9th St, San Francisco,CA,94016 +217220,Google Phone,1,600.0,2019-06-21 21:47:00,835 Hill St, Boston,MA,02215 +217221,USB-C Charging Cable,1,11.95,2019-06-01 19:00:00,734 Adams St, San Francisco,CA,94016 +217222,USB-C Charging Cable,1,11.95,2019-06-17 22:31:00,808 River St, Dallas,TX,75001 +217223,27in 4K Gaming Monitor,1,389.99,2019-06-12 20:07:00,347 Willow St, Dallas,TX,75001 +217224,20in Monitor,1,109.99,2019-06-26 11:02:00,639 2nd St, Los Angeles,CA,90001 +217225,Apple Airpods Headphones,1,150.0,2019-06-13 05:26:00,193 Forest St, San Francisco,CA,94016 +217226,Bose SoundSport Headphones,1,99.99,2019-06-02 18:07:00,918 5th St, Boston,MA,02215 +217227,Bose SoundSport Headphones,1,99.99,2019-06-17 19:21:00,322 Hill St, New York City,NY,10001 +217228,Lightning Charging Cable,1,14.95,2019-06-27 18:33:00,702 Forest St, Dallas,TX,75001 +217229,AAA Batteries (4-pack),3,2.99,2019-06-29 16:21:00,616 Center St, San Francisco,CA,94016 +217230,Wired Headphones,1,11.99,2019-06-13 18:48:00,786 13th St, Boston,MA,02215 +217231,Vareebadd Phone,1,400.0,2019-06-18 07:55:00,340 Church St, Boston,MA,02215 +217232,Lightning Charging Cable,1,14.95,2019-06-24 20:23:00,388 Spruce St, Boston,MA,02215 +217233,27in 4K Gaming Monitor,1,389.99,2019-06-22 01:58:00,776 Washington St, Los Angeles,CA,90001 +217234,AA Batteries (4-pack),1,3.84,2019-06-30 08:27:00,567 Maple St, San Francisco,CA,94016 +217235,AAA Batteries (4-pack),3,2.99,2019-06-17 23:55:00,230 Pine St, San Francisco,CA,94016 +217236,AA Batteries (4-pack),1,3.84,2019-06-27 11:49:00,405 6th St, Boston,MA,02215 +217237,AA Batteries (4-pack),2,3.84,2019-06-25 11:00:00,823 Walnut St, New York City,NY,10001 +217238,27in FHD Monitor,1,149.99,2019-06-22 08:26:00,269 River St, Austin,TX,73301 +217239,20in Monitor,1,109.99,2019-06-21 21:04:00,940 Pine St, New York City,NY,10001 +217240,iPhone,1,700.0,2019-06-24 18:55:00,921 Main St, Los Angeles,CA,90001 +217241,AA Batteries (4-pack),1,3.84,2019-06-14 13:52:00,887 11th St, San Francisco,CA,94016 +217242,ThinkPad Laptop,1,999.99,2019-06-28 14:47:00,982 Main St, Los Angeles,CA,90001 +217243,Lightning Charging Cable,1,14.95,2019-06-24 23:38:00,340 Park St, Portland,ME,04101 +217244,USB-C Charging Cable,1,11.95,2019-06-25 13:14:00,746 Lincoln St, New York City,NY,10001 +217245,Bose SoundSport Headphones,1,99.99,2019-06-30 16:21:00,872 Center St, Los Angeles,CA,90001 +217246,AAA Batteries (4-pack),2,2.99,2019-06-25 21:14:00,134 Spruce St, Los Angeles,CA,90001 +217247,AAA Batteries (4-pack),1,2.99,2019-06-29 22:28:00,342 13th St, New York City,NY,10001 +217248,Vareebadd Phone,1,400.0,2019-06-11 21:57:00,243 Lake St, Atlanta,GA,30301 +217249,Wired Headphones,1,11.99,2019-06-20 18:08:00,900 Cedar St, San Francisco,CA,94016 +217250,Lightning Charging Cable,1,14.95,2019-06-13 23:07:00,704 Pine St, New York City,NY,10001 +217251,Bose SoundSport Headphones,1,99.99,2019-06-24 04:59:00,818 South St, Los Angeles,CA,90001 +217252,Apple Airpods Headphones,1,150.0,2019-06-26 09:02:00,832 Hill St, Boston,MA,02215 +217253,Bose SoundSport Headphones,1,99.99,2019-06-12 21:28:00,591 River St, San Francisco,CA,94016 +217254,27in 4K Gaming Monitor,1,389.99,2019-06-05 16:01:00,554 2nd St, Seattle,WA,98101 +217255,Wired Headphones,1,11.99,2019-06-23 10:25:00,50 Jackson St, Seattle,WA,98101 +217256,20in Monitor,1,109.99,2019-06-26 16:06:00,584 River St, Austin,TX,73301 +217257,34in Ultrawide Monitor,1,379.99,2019-06-15 21:40:00,705 12th St, Los Angeles,CA,90001 +217258,USB-C Charging Cable,2,11.95,2019-06-18 12:25:00,336 Hickory St, Los Angeles,CA,90001 +217259,Lightning Charging Cable,1,14.95,2019-06-08 07:18:00,632 Ridge St, Atlanta,GA,30301 +217260,Wired Headphones,1,11.99,2019-06-19 21:03:00,147 Cedar St, Dallas,TX,75001 +217261,AAA Batteries (4-pack),1,2.99,2019-06-20 11:27:00,905 Park St, Seattle,WA,98101 +217262,Apple Airpods Headphones,1,150.0,2019-06-04 11:00:00,487 Jackson St, Dallas,TX,75001 +217263,Macbook Pro Laptop,1,1700.0,2019-06-18 17:08:00,163 Maple St, Dallas,TX,75001 +217264,AA Batteries (4-pack),2,3.84,2019-06-20 10:28:00,452 8th St, Dallas,TX,75001 +217265,iPhone,1,700.0,2019-06-06 00:39:00,766 5th St, San Francisco,CA,94016 +217266,Lightning Charging Cable,1,14.95,2019-06-12 13:30:00,594 2nd St, San Francisco,CA,94016 +217267,Lightning Charging Cable,1,14.95,2019-06-10 19:52:00,791 10th St, Dallas,TX,75001 +217268,Vareebadd Phone,1,400.0,2019-06-25 12:10:00,147 1st St, San Francisco,CA,94016 +217269,Lightning Charging Cable,1,14.95,2019-06-29 09:26:00,899 7th St, Boston,MA,02215 +217270,AA Batteries (4-pack),2,3.84,2019-06-01 19:22:00,575 River St, New York City,NY,10001 +217271,Bose SoundSport Headphones,1,99.99,2019-06-05 12:11:00,231 Adams St, Portland,OR,97035 +217272,AA Batteries (4-pack),1,3.84,2019-06-15 16:16:00,191 Pine St, San Francisco,CA,94016 +217273,Lightning Charging Cable,2,14.95,2019-06-21 14:43:00,201 Washington St, San Francisco,CA,94016 +217274,AAA Batteries (4-pack),1,2.99,2019-06-06 14:46:00,371 River St, Los Angeles,CA,90001 +217274,Wired Headphones,1,11.99,2019-06-06 14:46:00,371 River St, Los Angeles,CA,90001 +217275,Wired Headphones,1,11.99,2019-06-03 20:49:00,174 Spruce St, Los Angeles,CA,90001 +217276,Google Phone,1,600.0,2019-06-03 11:59:00,979 Wilson St, Boston,MA,02215 +217277,AA Batteries (4-pack),1,3.84,2019-06-14 16:46:00,726 5th St, Dallas,TX,75001 +217278,ThinkPad Laptop,1,999.99,2019-06-26 11:58:00,725 Spruce St, Austin,TX,73301 +217279,Wired Headphones,1,11.99,2019-06-10 01:14:00,666 Hickory St, San Francisco,CA,94016 +217280,Wired Headphones,1,11.99,2019-06-03 12:54:00,779 Cedar St, New York City,NY,10001 +217281,Apple Airpods Headphones,1,150.0,2019-06-08 21:13:00,102 7th St, Atlanta,GA,30301 +217282,AA Batteries (4-pack),1,3.84,2019-06-02 20:14:00,455 Dogwood St, San Francisco,CA,94016 +217283,Apple Airpods Headphones,1,150.0,2019-06-09 10:13:00,566 Wilson St, Boston,MA,02215 +217284,Wired Headphones,1,11.99,2019-06-26 12:09:00,223 Cedar St, Portland,OR,97035 +217285,27in 4K Gaming Monitor,1,389.99,2019-06-06 20:22:00,72 Washington St, San Francisco,CA,94016 +217286,Bose SoundSport Headphones,1,99.99,2019-06-29 08:43:00,371 Elm St, San Francisco,CA,94016 +217287,Flatscreen TV,1,300.0,2019-06-03 19:58:00,10 Walnut St, Los Angeles,CA,90001 +217288,20in Monitor,1,109.99,2019-06-05 19:46:00,775 Cedar St, Boston,MA,02215 +217289,Wired Headphones,1,11.99,2019-06-21 22:59:00,487 Church St, Los Angeles,CA,90001 +217290,Wired Headphones,1,11.99,2019-06-23 20:42:00,170 Park St, San Francisco,CA,94016 +217291,USB-C Charging Cable,1,11.95,2019-06-21 11:23:00,715 8th St, San Francisco,CA,94016 +217292,Flatscreen TV,1,300.0,2019-06-23 20:10:00,461 1st St, San Francisco,CA,94016 +217293,Lightning Charging Cable,1,14.95,2019-06-19 19:05:00,996 Forest St, Boston,MA,02215 +217294,34in Ultrawide Monitor,1,379.99,2019-06-05 09:30:00,336 Washington St, Los Angeles,CA,90001 +217295,ThinkPad Laptop,1,999.99,2019-06-13 17:39:00,89 River St, Austin,TX,73301 +217296,Apple Airpods Headphones,1,150.0,2019-06-17 14:00:00,529 Jefferson St, Atlanta,GA,30301 +217297,USB-C Charging Cable,1,11.95,2019-06-26 00:07:00,899 Pine St, San Francisco,CA,94016 +217298,Bose SoundSport Headphones,1,99.99,2019-06-07 23:25:00,132 4th St, Boston,MA,02215 +217299,Bose SoundSport Headphones,1,99.99,2019-06-25 12:01:00,507 Lincoln St, Boston,MA,02215 +217300,Google Phone,1,600.0,2019-06-15 15:35:00,646 Hill St, Dallas,TX,75001 +217301,AAA Batteries (4-pack),1,2.99,2019-06-04 11:48:00,281 Madison St, Dallas,TX,75001 +217302,Vareebadd Phone,1,400.0,2019-06-22 21:48:00,115 North St, Boston,MA,02215 +217302,Bose SoundSport Headphones,1,99.99,2019-06-22 21:48:00,115 North St, Boston,MA,02215 +217303,AAA Batteries (4-pack),2,2.99,2019-06-20 13:31:00,319 Hickory St, Dallas,TX,75001 +217304,USB-C Charging Cable,1,11.95,2019-06-24 18:49:00,761 2nd St, San Francisco,CA,94016 +217305,Lightning Charging Cable,1,14.95,2019-06-07 22:37:00,451 Forest St, Seattle,WA,98101 +217306,AAA Batteries (4-pack),1,2.99,2019-06-05 19:42:00,316 River St, Atlanta,GA,30301 +217307,Lightning Charging Cable,1,14.95,2019-06-27 01:52:00,764 Center St, Seattle,WA,98101 +217308,Bose SoundSport Headphones,1,99.99,2019-06-20 20:58:00,567 Elm St, New York City,NY,10001 +217309,Lightning Charging Cable,1,14.95,2019-06-08 16:54:00,841 Park St, Atlanta,GA,30301 +217310,AA Batteries (4-pack),1,3.84,2019-06-21 23:41:00,495 Church St, Los Angeles,CA,90001 +217311,AA Batteries (4-pack),1,3.84,2019-06-25 18:32:00,588 Cherry St, San Francisco,CA,94016 +217312,Bose SoundSport Headphones,1,99.99,2019-06-01 19:40:00,473 6th St, Austin,TX,73301 +217313,Wired Headphones,1,11.99,2019-06-29 20:37:00,781 Madison St, San Francisco,CA,94016 +217314,Bose SoundSport Headphones,1,99.99,2019-06-10 21:42:00,496 Hickory St, Boston,MA,02215 +217315,Macbook Pro Laptop,1,1700.0,2019-06-11 16:54:00,578 12th St, New York City,NY,10001 +217316,Bose SoundSport Headphones,1,99.99,2019-06-02 11:52:00,967 Ridge St, San Francisco,CA,94016 +217317,AAA Batteries (4-pack),1,2.99,2019-06-19 09:29:00,223 Willow St, Los Angeles,CA,90001 +217318,Bose SoundSport Headphones,1,99.99,2019-06-17 21:59:00,31 13th St, Dallas,TX,75001 +217319,Wired Headphones,1,11.99,2019-06-06 08:09:00,571 14th St, Seattle,WA,98101 +217320,Macbook Pro Laptop,1,1700.0,2019-06-03 19:40:00,169 12th St, Boston,MA,02215 +217321,USB-C Charging Cable,1,11.95,2019-06-22 01:48:00,505 Walnut St, Dallas,TX,75001 +217322,Macbook Pro Laptop,1,1700.0,2019-06-10 19:10:00,744 North St, San Francisco,CA,94016 +217323,Lightning Charging Cable,1,14.95,2019-06-16 22:02:00,761 10th St, Boston,MA,02215 +217324,Lightning Charging Cable,1,14.95,2019-06-15 01:12:00,915 Meadow St, Austin,TX,73301 +217325,USB-C Charging Cable,1,11.95,2019-06-10 16:52:00,162 Cedar St, San Francisco,CA,94016 +217326,Flatscreen TV,1,300.0,2019-06-11 17:29:00,488 12th St, Seattle,WA,98101 +217327,AAA Batteries (4-pack),4,2.99,2019-06-03 11:07:00,862 Center St, Portland,OR,97035 +217328,LG Washing Machine,1,600.0,2019-06-21 12:48:00,136 8th St, New York City,NY,10001 +217329,Lightning Charging Cable,1,14.95,2019-06-02 10:14:00,429 Chestnut St, Boston,MA,02215 +217330,Apple Airpods Headphones,1,150.0,2019-06-24 02:01:00,949 Highland St, Dallas,TX,75001 +217331,USB-C Charging Cable,2,11.95,2019-06-22 16:13:00,413 Spruce St, San Francisco,CA,94016 +217332,AA Batteries (4-pack),1,3.84,2019-06-27 14:40:00,749 Dogwood St, Atlanta,GA,30301 +217333,Lightning Charging Cable,2,14.95,2019-06-19 03:07:00,358 Jefferson St, Boston,MA,02215 +217334,Bose SoundSport Headphones,1,99.99,2019-06-03 19:14:00,26 9th St, New York City,NY,10001 +217335,27in 4K Gaming Monitor,1,389.99,2019-06-06 01:47:00,410 Highland St, Los Angeles,CA,90001 +217336,AAA Batteries (4-pack),2,2.99,2019-06-18 11:17:00,997 Jackson St, Portland,OR,97035 +217337,Wired Headphones,1,11.99,2019-06-02 21:14:00,963 4th St, Portland,OR,97035 +217338,Wired Headphones,1,11.99,2019-06-01 16:23:00,893 7th St, Atlanta,GA,30301 +217339,Bose SoundSport Headphones,1,99.99,2019-06-08 12:54:00,376 Ridge St, Seattle,WA,98101 +217340,Apple Airpods Headphones,1,150.0,2019-06-19 13:54:00,560 Cedar St, San Francisco,CA,94016 +217341,Apple Airpods Headphones,1,150.0,2019-06-28 19:06:00,777 Walnut St, Portland,OR,97035 +217342,Flatscreen TV,1,300.0,2019-06-12 16:56:00,593 Johnson St, Dallas,TX,75001 +217343,AAA Batteries (4-pack),2,2.99,2019-06-06 10:17:00,706 12th St, San Francisco,CA,94016 +217344,USB-C Charging Cable,1,11.95,2019-06-05 09:56:00,401 4th St, Boston,MA,02215 +217345,Macbook Pro Laptop,1,1700.0,2019-06-01 12:17:00,718 Main St, Seattle,WA,98101 +217346,USB-C Charging Cable,1,11.95,2019-06-08 23:39:00,304 Center St, Austin,TX,73301 +217347,AAA Batteries (4-pack),3,2.99,2019-06-05 08:14:00,636 Dogwood St, Dallas,TX,75001 +217348,AA Batteries (4-pack),1,3.84,2019-06-20 23:22:00,690 Hickory St, San Francisco,CA,94016 +217349,AA Batteries (4-pack),1,3.84,2019-06-12 19:20:00,607 1st St, Los Angeles,CA,90001 +217350,AAA Batteries (4-pack),1,2.99,2019-06-28 11:50:00,184 Hill St, Portland,ME,04101 +217351,Macbook Pro Laptop,1,1700.0,2019-06-27 06:47:00,181 14th St, San Francisco,CA,94016 +217352,ThinkPad Laptop,1,999.99,2019-06-18 08:36:00,729 5th St, San Francisco,CA,94016 +217353,27in FHD Monitor,1,149.99,2019-06-15 18:25:00,206 6th St, San Francisco,CA,94016 +217354,Bose SoundSport Headphones,1,99.99,2019-06-16 18:40:00,260 Pine St, San Francisco,CA,94016 +217355,Wired Headphones,1,11.99,2019-06-21 11:14:00,262 Lakeview St, San Francisco,CA,94016 +217356,USB-C Charging Cable,1,11.95,2019-06-23 19:08:00,799 7th St, Boston,MA,02215 +217357,AAA Batteries (4-pack),2,2.99,2019-06-08 20:06:00,544 Main St, Portland,OR,97035 +217358,AAA Batteries (4-pack),3,2.99,2019-06-04 17:53:00,300 Pine St, Portland,OR,97035 +217359,Apple Airpods Headphones,1,150.0,2019-06-03 23:55:00,878 Lake St, Atlanta,GA,30301 +217360,iPhone,1,700.0,2019-06-23 21:53:00,602 Meadow St, Los Angeles,CA,90001 +217360,Apple Airpods Headphones,1,150.0,2019-06-23 21:53:00,602 Meadow St, Los Angeles,CA,90001 +217360,Wired Headphones,1,11.99,2019-06-23 21:53:00,602 Meadow St, Los Angeles,CA,90001 +217361,Lightning Charging Cable,1,14.95,2019-06-03 21:16:00,414 Forest St, Boston,MA,02215 +217362,iPhone,1,700.0,2019-06-23 10:37:00,652 Chestnut St, San Francisco,CA,94016 +217363,AAA Batteries (4-pack),1,2.99,2019-06-01 16:14:00,640 Sunset St, Portland,ME,04101 +217364,Wired Headphones,1,11.99,2019-06-22 16:03:00,510 Lakeview St, New York City,NY,10001 +217365,AA Batteries (4-pack),1,3.84,2019-06-20 08:10:00,91 5th St, Seattle,WA,98101 +217366,34in Ultrawide Monitor,1,379.99,2019-06-20 18:05:00,606 West St, Atlanta,GA,30301 +217367,Lightning Charging Cable,1,14.95,2019-06-28 19:07:00,414 Lakeview St, Dallas,TX,75001 +217368,Macbook Pro Laptop,1,1700.0,2019-06-01 20:41:00,305 14th St, Atlanta,GA,30301 +217369,AA Batteries (4-pack),2,3.84,2019-06-21 11:29:00,122 4th St, San Francisco,CA,94016 +217370,Lightning Charging Cable,2,14.95,2019-06-20 18:11:00,243 5th St, New York City,NY,10001 +217371,USB-C Charging Cable,1,11.95,2019-06-13 16:00:00,771 Cherry St, Atlanta,GA,30301 +217372,Bose SoundSport Headphones,1,99.99,2019-06-19 12:26:00,335 Spruce St, San Francisco,CA,94016 +217373,Wired Headphones,1,11.99,2019-06-30 14:34:00,953 Center St, Boston,MA,02215 +217374,Lightning Charging Cable,2,14.95,2019-06-27 22:14:00,530 12th St, Dallas,TX,75001 +217375,AA Batteries (4-pack),1,3.84,2019-06-20 16:10:00,843 Park St, San Francisco,CA,94016 +217376,AA Batteries (4-pack),1,3.84,2019-06-22 22:09:00,239 2nd St, Dallas,TX,75001 +217377,AAA Batteries (4-pack),1,2.99,2019-06-05 23:28:00,915 Park St, Atlanta,GA,30301 +217378,Apple Airpods Headphones,1,150.0,2019-06-23 07:22:00,370 14th St, Los Angeles,CA,90001 +217379,Apple Airpods Headphones,1,150.0,2019-06-06 21:12:00,488 Cherry St, Portland,OR,97035 +217380,AAA Batteries (4-pack),2,2.99,2019-06-29 07:36:00,216 7th St, Portland,ME,04101 +217381,27in 4K Gaming Monitor,1,389.99,2019-06-25 12:06:00,90 14th St, New York City,NY,10001 +217382,AA Batteries (4-pack),1,3.84,2019-06-14 09:04:00,717 West St, Boston,MA,02215 +217383,Wired Headphones,1,11.99,2019-06-02 18:24:00,81 Forest St, Seattle,WA,98101 +217384,20in Monitor,1,109.99,2019-06-06 09:42:00,502 Maple St, Los Angeles,CA,90001 +217385,Flatscreen TV,1,300.0,2019-06-15 14:25:00,899 Park St, Los Angeles,CA,90001 +217386,USB-C Charging Cable,1,11.95,2019-06-09 02:13:00,586 Willow St, Atlanta,GA,30301 +217387,Lightning Charging Cable,1,14.95,2019-06-18 12:16:00,85 Cherry St, Atlanta,GA,30301 +217388,AAA Batteries (4-pack),2,2.99,2019-06-01 11:47:00,13 Forest St, Portland,OR,97035 +217389,Lightning Charging Cable,1,14.95,2019-06-07 15:35:00,643 Elm St, Austin,TX,73301 +217390,Flatscreen TV,1,300.0,2019-06-28 21:57:00,553 Center St, San Francisco,CA,94016 +217391,27in FHD Monitor,1,149.99,2019-06-26 01:01:00,376 Cedar St, Los Angeles,CA,90001 +217392,27in FHD Monitor,1,149.99,2019-06-14 20:44:00,430 Cherry St, Portland,OR,97035 +217393,AA Batteries (4-pack),1,3.84,2019-06-13 23:44:00,211 South St, Boston,MA,02215 +217394,Bose SoundSport Headphones,1,99.99,2019-06-10 13:00:00,739 Jefferson St, Los Angeles,CA,90001 +217395,Apple Airpods Headphones,1,150.0,2019-06-14 20:57:00,209 11th St, New York City,NY,10001 +217396,Wired Headphones,1,11.99,2019-06-05 21:57:00,767 Cedar St, Seattle,WA,98101 +217397,AA Batteries (4-pack),1,3.84,2019-06-30 09:56:00,846 West St, Seattle,WA,98101 +217398,Apple Airpods Headphones,1,150.0,2019-06-15 22:02:00,30 Washington St, Boston,MA,02215 +217399,Apple Airpods Headphones,1,150.0,2019-06-22 13:26:00,264 Jefferson St, San Francisco,CA,94016 +217400,AA Batteries (4-pack),1,3.84,2019-06-30 21:05:00,715 Church St, Seattle,WA,98101 +217401,AA Batteries (4-pack),1,3.84,2019-06-19 21:30:00,918 South St, New York City,NY,10001 +217402,Flatscreen TV,1,300.0,2019-06-17 00:29:00,472 Lakeview St, New York City,NY,10001 +217403,Wired Headphones,1,11.99,2019-06-13 12:29:00,146 Jefferson St, San Francisco,CA,94016 +217404,AA Batteries (4-pack),1,3.84,2019-06-28 23:08:00,146 Ridge St, San Francisco,CA,94016 +217405,Apple Airpods Headphones,1,150.0,2019-06-10 18:34:00,528 Highland St, Boston,MA,02215 +217406,Vareebadd Phone,1,400.0,2019-06-04 19:06:00,603 Park St, Portland,OR,97035 +217407,AA Batteries (4-pack),1,3.84,2019-06-28 17:34:00,505 Lakeview St, San Francisco,CA,94016 +217408,Flatscreen TV,1,300.0,2019-06-29 13:34:00,354 West St, New York City,NY,10001 +217409,Apple Airpods Headphones,1,150.0,2019-06-22 15:06:00,258 Center St, New York City,NY,10001 +217410,Apple Airpods Headphones,1,150.0,2019-06-05 01:26:00,666 Wilson St, San Francisco,CA,94016 +217411,34in Ultrawide Monitor,1,379.99,2019-06-08 14:06:00,298 14th St, San Francisco,CA,94016 +217412,Bose SoundSport Headphones,1,99.99,2019-06-19 03:36:00,28 7th St, San Francisco,CA,94016 +217413,AAA Batteries (4-pack),2,2.99,2019-06-28 23:06:00,134 River St, Los Angeles,CA,90001 +217414,Wired Headphones,1,11.99,2019-06-04 22:02:00,236 Willow St, Portland,OR,97035 +217415,34in Ultrawide Monitor,1,379.99,2019-06-29 21:29:00,332 Maple St, New York City,NY,10001 +217416,34in Ultrawide Monitor,1,379.99,2019-06-04 08:44:00,271 Center St, Boston,MA,02215 +217417,AAA Batteries (4-pack),1,2.99,2019-06-26 13:26:00,186 Walnut St, New York City,NY,10001 +217418,AA Batteries (4-pack),1,3.84,2019-06-10 10:27:00,438 Sunset St, Portland,OR,97035 +217419,iPhone,1,700.0,2019-06-28 19:38:00,522 South St, Portland,OR,97035 +217420,Google Phone,1,600.0,2019-06-05 22:28:00,443 South St, San Francisco,CA,94016 +217421,Wired Headphones,1,11.99,2019-06-04 11:10:00,660 West St, Atlanta,GA,30301 +217422,Flatscreen TV,1,300.0,2019-06-23 17:35:00,227 Spruce St, Seattle,WA,98101 +217423,iPhone,1,700.0,2019-06-03 01:08:00,148 Dogwood St, Los Angeles,CA,90001 +217424,Lightning Charging Cable,1,14.95,2019-06-29 16:20:00,786 Spruce St, Los Angeles,CA,90001 +217425,Wired Headphones,1,11.99,2019-06-05 19:39:00,514 Jefferson St, San Francisco,CA,94016 +217426,Lightning Charging Cable,1,14.95,2019-06-22 23:08:00,451 Jackson St, Boston,MA,02215 +217427,USB-C Charging Cable,1,11.95,2019-06-20 17:41:00,427 Lake St, Boston,MA,02215 +217428,iPhone,1,700.0,2019-06-25 07:53:00,390 South St, Los Angeles,CA,90001 +217429,AA Batteries (4-pack),1,3.84,2019-06-09 10:45:00,865 Church St, Atlanta,GA,30301 +217430,27in 4K Gaming Monitor,1,389.99,2019-06-03 19:06:00,389 Adams St, Dallas,TX,75001 +217431,iPhone,1,700.0,2019-06-20 16:04:00,277 14th St, Dallas,TX,75001 +217432,AA Batteries (4-pack),4,3.84,2019-06-07 00:45:00,876 7th St, New York City,NY,10001 +217433,20in Monitor,1,109.99,2019-06-08 15:57:00,173 Center St, Boston,MA,02215 +217434,Bose SoundSport Headphones,1,99.99,2019-06-06 08:37:00,584 Maple St, Seattle,WA,98101 +217435,USB-C Charging Cable,1,11.95,2019-06-29 20:21:00,519 Park St, New York City,NY,10001 +217436,iPhone,1,700.0,2019-06-17 15:58:00,733 Ridge St, Atlanta,GA,30301 +217437,ThinkPad Laptop,1,999.99,2019-06-28 18:05:00,887 1st St, San Francisco,CA,94016 +217438,AA Batteries (4-pack),1,3.84,2019-06-21 14:22:00,860 Jackson St, Boston,MA,02215 +217439,Apple Airpods Headphones,1,150.0,2019-06-26 15:42:00,941 Adams St, Los Angeles,CA,90001 +217440,Flatscreen TV,1,300.0,2019-06-27 17:57:00,991 Jackson St, Austin,TX,73301 +217441,Apple Airpods Headphones,1,150.0,2019-06-02 17:57:00,986 6th St, New York City,NY,10001 +217442,Wired Headphones,1,11.99,2019-06-06 13:15:00,121 Chestnut St, Dallas,TX,75001 +217443,27in 4K Gaming Monitor,1,389.99,2019-06-20 22:29:00,212 Dogwood St, San Francisco,CA,94016 +217444,Apple Airpods Headphones,1,150.0,2019-06-23 13:50:00,477 12th St, San Francisco,CA,94016 +217445,27in FHD Monitor,1,149.99,2019-06-07 01:17:00,821 Ridge St, Los Angeles,CA,90001 +217446,AAA Batteries (4-pack),1,2.99,2019-06-25 07:08:00,676 Sunset St, Boston,MA,02215 +217447,Apple Airpods Headphones,1,150.0,2019-06-27 21:06:00,361 4th St, Austin,TX,73301 +217448,AA Batteries (4-pack),1,3.84,2019-06-07 12:25:00,228 Main St, New York City,NY,10001 +217449,AAA Batteries (4-pack),1,2.99,2019-06-14 18:50:00,309 Church St, Seattle,WA,98101 +217450,Bose SoundSport Headphones,1,99.99,2019-06-25 13:42:00,649 Spruce St, Austin,TX,73301 +217451,AAA Batteries (4-pack),1,2.99,2019-06-28 22:13:00,789 14th St, San Francisco,CA,94016 +217452,USB-C Charging Cable,1,11.95,2019-06-17 18:21:00,825 Lakeview St, Boston,MA,02215 +217453,AA Batteries (4-pack),1,3.84,2019-06-28 12:01:00,316 Wilson St, New York City,NY,10001 +217454,USB-C Charging Cable,1,11.95,2019-06-05 14:27:00,177 12th St, Boston,MA,02215 +217455,Bose SoundSport Headphones,1,99.99,2019-06-10 14:51:00,652 Lincoln St, San Francisco,CA,94016 +217456,AA Batteries (4-pack),2,3.84,2019-06-13 22:25:00,399 Cedar St, Austin,TX,73301 +217457,AA Batteries (4-pack),1,3.84,2019-06-06 09:40:00,777 Hickory St, Boston,MA,02215 +217458,Bose SoundSport Headphones,1,99.99,2019-06-05 19:53:00,665 6th St, New York City,NY,10001 +217459,Apple Airpods Headphones,1,150.0,2019-06-23 13:22:00,424 Cedar St, New York City,NY,10001 +217460,Google Phone,1,600.0,2019-06-09 16:19:00,413 8th St, San Francisco,CA,94016 +217460,USB-C Charging Cable,1,11.95,2019-06-09 16:19:00,413 8th St, San Francisco,CA,94016 +217461,iPhone,1,700.0,2019-06-01 12:14:00,592 1st St, Los Angeles,CA,90001 +217462,Wired Headphones,1,11.99,2019-06-06 23:31:00,323 11th St, Los Angeles,CA,90001 +217463,AAA Batteries (4-pack),1,2.99,2019-06-25 10:59:00,533 4th St, San Francisco,CA,94016 +217464,Bose SoundSport Headphones,1,99.99,2019-06-28 21:16:00,944 Willow St, San Francisco,CA,94016 +217465,Apple Airpods Headphones,1,150.0,2019-06-24 15:06:00,307 13th St, San Francisco,CA,94016 +217466,Wired Headphones,1,11.99,2019-06-02 10:06:00,723 Pine St, Los Angeles,CA,90001 +217467,27in 4K Gaming Monitor,1,389.99,2019-06-19 18:52:00,720 8th St, San Francisco,CA,94016 +217468,Lightning Charging Cable,1,14.95,2019-06-24 19:41:00,623 Sunset St, Atlanta,GA,30301 +217469,iPhone,1,700.0,2019-06-15 10:05:00,678 8th St, New York City,NY,10001 +217469,USB-C Charging Cable,1,11.95,2019-06-15 10:05:00,678 8th St, New York City,NY,10001 +217470,iPhone,1,700.0,2019-06-07 19:07:00,626 10th St, Atlanta,GA,30301 +217471,Macbook Pro Laptop,1,1700.0,2019-06-09 00:00:00,844 11th St, Seattle,WA,98101 +217472,iPhone,1,700.0,2019-06-29 11:14:00,315 Jackson St, Austin,TX,73301 +217473,AA Batteries (4-pack),1,3.84,2019-06-17 19:40:00,223 Jefferson St, San Francisco,CA,94016 +217474,AAA Batteries (4-pack),2,2.99,2019-06-09 14:43:00,751 Jefferson St, Los Angeles,CA,90001 +217475,AA Batteries (4-pack),1,3.84,2019-06-27 17:46:00,366 Maple St, Atlanta,GA,30301 +217476,USB-C Charging Cable,1,11.95,2019-06-04 13:18:00,831 Walnut St, San Francisco,CA,94016 +217477,Apple Airpods Headphones,1,150.0,2019-06-18 22:10:00,748 7th St, Los Angeles,CA,90001 +217478,Lightning Charging Cable,1,14.95,2019-06-26 17:52:00,512 12th St, Atlanta,GA,30301 +217479,Lightning Charging Cable,1,14.95,2019-06-27 01:59:00,969 13th St, Los Angeles,CA,90001 +217480,34in Ultrawide Monitor,1,379.99,2019-06-12 19:55:00,577 Highland St, Boston,MA,02215 +217481,ThinkPad Laptop,1,999.99,2019-06-07 14:38:00,663 Adams St, Portland,OR,97035 +217482,27in 4K Gaming Monitor,1,389.99,2019-06-11 20:23:00,430 Walnut St, New York City,NY,10001 +217483,20in Monitor,1,109.99,2019-06-17 10:35:00,965 Church St, Austin,TX,73301 +217484,AA Batteries (4-pack),1,3.84,2019-06-26 19:20:00,829 Cedar St, San Francisco,CA,94016 +217485,AA Batteries (4-pack),1,3.84,2019-06-28 01:10:00,117 4th St, Atlanta,GA,30301 +217486,USB-C Charging Cable,2,11.95,2019-06-03 21:49:00,171 Main St, Boston,MA,02215 +217487,USB-C Charging Cable,1,11.95,2019-06-05 10:35:00,376 7th St, Boston,MA,02215 +217488,AAA Batteries (4-pack),1,2.99,2019-06-24 10:33:00,28 Pine St, New York City,NY,10001 +217489,Wired Headphones,1,11.99,2019-06-01 18:14:00,189 Sunset St, Atlanta,GA,30301 +217490,20in Monitor,1,109.99,2019-06-17 09:42:00,652 River St, Los Angeles,CA,90001 +217491,Apple Airpods Headphones,1,150.0,2019-06-14 12:16:00,183 13th St, San Francisco,CA,94016 +217492,Apple Airpods Headphones,1,150.0,2019-06-04 20:45:00,312 Maple St, Los Angeles,CA,90001 +217493,20in Monitor,1,109.99,2019-06-23 12:30:00,71 Lake St, San Francisco,CA,94016 +217494,Bose SoundSport Headphones,1,99.99,2019-06-05 10:15:00,624 Elm St, San Francisco,CA,94016 +217495,USB-C Charging Cable,1,11.95,2019-06-12 19:51:00,159 Wilson St, Los Angeles,CA,90001 +217496,Lightning Charging Cable,1,14.95,2019-06-10 13:58:00,816 Maple St, Austin,TX,73301 +217497,Lightning Charging Cable,1,14.95,2019-06-17 07:07:00,324 Willow St, Portland,ME,04101 +217498,34in Ultrawide Monitor,1,379.99,2019-06-20 20:49:00,233 12th St, Los Angeles,CA,90001 +217499,Apple Airpods Headphones,1,150.0,2019-06-26 21:06:00,432 Willow St, Seattle,WA,98101 +217500,27in 4K Gaming Monitor,1,389.99,2019-06-04 19:04:00,940 West St, Los Angeles,CA,90001 +217501,Google Phone,1,600.0,2019-06-04 14:08:00,698 South St, Austin,TX,73301 +217502,USB-C Charging Cable,1,11.95,2019-06-19 16:49:00,156 7th St, Austin,TX,73301 +217503,AA Batteries (4-pack),1,3.84,2019-06-26 13:47:00,210 8th St, Los Angeles,CA,90001 +217504,USB-C Charging Cable,1,11.95,2019-06-13 19:16:00,586 Spruce St, Los Angeles,CA,90001 +217505,Wired Headphones,1,11.99,2019-06-24 18:20:00,201 Cherry St, Boston,MA,02215 +217505,Flatscreen TV,1,300.0,2019-06-24 18:20:00,201 Cherry St, Boston,MA,02215 +217506,Google Phone,1,600.0,2019-06-05 11:34:00,355 10th St, New York City,NY,10001 +217507,AAA Batteries (4-pack),1,2.99,2019-06-01 18:21:00,26 Ridge St, San Francisco,CA,94016 +217508,AAA Batteries (4-pack),2,2.99,2019-06-20 00:56:00,983 West St, Atlanta,GA,30301 +217509,AA Batteries (4-pack),1,3.84,2019-06-10 09:57:00,111 10th St, Atlanta,GA,30301 +217510,27in FHD Monitor,1,149.99,2019-06-19 12:51:00,90 Main St, Los Angeles,CA,90001 +217511,27in 4K Gaming Monitor,1,389.99,2019-06-11 14:59:00,187 Forest St, New York City,NY,10001 +217512,iPhone,1,700.0,2019-06-12 07:20:00,970 12th St, Los Angeles,CA,90001 +217513,Wired Headphones,1,11.99,2019-06-10 16:25:00,245 10th St, San Francisco,CA,94016 +217514,Wired Headphones,1,11.99,2019-06-17 12:33:00,546 Cedar St, Boston,MA,02215 +217515,27in FHD Monitor,1,149.99,2019-06-10 20:07:00,529 Sunset St, Seattle,WA,98101 +217516,Bose SoundSport Headphones,1,99.99,2019-06-29 04:47:00,729 Lakeview St, San Francisco,CA,94016 +217517,Lightning Charging Cable,2,14.95,2019-06-07 23:37:00,560 Cherry St, Seattle,WA,98101 +217518,Wired Headphones,2,11.99,2019-06-23 22:19:00,816 North St, Dallas,TX,75001 +217519,USB-C Charging Cable,2,11.95,2019-06-13 11:31:00,690 North St, Portland,OR,97035 +217520,ThinkPad Laptop,1,999.99,2019-06-25 22:20:00,393 13th St, Portland,OR,97035 +217521,Lightning Charging Cable,1,14.95,2019-06-01 21:18:00,298 Elm St, Los Angeles,CA,90001 +217521,Flatscreen TV,1,300.0,2019-06-01 21:18:00,298 Elm St, Los Angeles,CA,90001 +217522,USB-C Charging Cable,1,11.95,2019-06-24 19:53:00,911 Elm St, Portland,OR,97035 +217523,Vareebadd Phone,1,400.0,2019-06-20 10:31:00,547 6th St, Austin,TX,73301 +217524,Apple Airpods Headphones,1,150.0,2019-06-22 19:52:00,726 Dogwood St, San Francisco,CA,94016 +217525,ThinkPad Laptop,1,999.99,2019-06-03 18:30:00,137 Hill St, Seattle,WA,98101 +217526,AA Batteries (4-pack),1,3.84,2019-06-24 10:37:00,394 South St, Los Angeles,CA,90001 +217527,AA Batteries (4-pack),3,3.84,2019-06-28 10:07:00,82 Adams St, New York City,NY,10001 +217528,AAA Batteries (4-pack),2,2.99,2019-06-30 10:45:00,308 Walnut St, Portland,ME,04101 +217529,USB-C Charging Cable,1,11.95,2019-06-18 10:06:00,369 Highland St, San Francisco,CA,94016 +217530,Bose SoundSport Headphones,1,99.99,2019-06-16 19:36:00,809 Maple St, Boston,MA,02215 +217531,USB-C Charging Cable,1,11.95,2019-06-16 22:51:00,897 14th St, Boston,MA,02215 +217532,Apple Airpods Headphones,1,150.0,2019-06-09 23:48:00,758 Jefferson St, Los Angeles,CA,90001 +217533,Bose SoundSport Headphones,1,99.99,2019-06-24 10:04:00,101 Highland St, San Francisco,CA,94016 +217534,Wired Headphones,1,11.99,2019-06-29 18:27:00,360 8th St, San Francisco,CA,94016 +217535,AA Batteries (4-pack),1,3.84,2019-06-05 13:46:00,336 Jackson St, Dallas,TX,75001 +217536,AA Batteries (4-pack),1,3.84,2019-06-01 17:57:00,727 Center St, Portland,ME,04101 +217537,AA Batteries (4-pack),2,3.84,2019-06-28 07:14:00,578 7th St, Portland,ME,04101 +217538,AAA Batteries (4-pack),1,2.99,2019-06-16 11:45:00,357 South St, Boston,MA,02215 +217539,27in FHD Monitor,1,149.99,2019-06-09 12:46:00,853 Walnut St, Atlanta,GA,30301 +217540,iPhone,1,700.0,2019-06-04 20:13:00,87 Hill St, Los Angeles,CA,90001 +217541,AA Batteries (4-pack),1,3.84,2019-06-03 10:20:00,109 Sunset St, Atlanta,GA,30301 +217542,Bose SoundSport Headphones,1,99.99,2019-06-12 12:16:00,805 Hill St, Dallas,TX,75001 +217543,iPhone,1,700.0,2019-06-22 12:23:00,666 Hill St, Atlanta,GA,30301 +217544,Lightning Charging Cable,1,14.95,2019-06-07 13:29:00,457 Spruce St, New York City,NY,10001 +217545,USB-C Charging Cable,1,11.95,2019-06-22 15:31:00,297 River St, Los Angeles,CA,90001 +217546,Wired Headphones,1,11.99,2019-06-09 16:08:00,663 Madison St, Dallas,TX,75001 +217547,27in FHD Monitor,1,149.99,2019-06-13 12:35:00,111 Wilson St, New York City,NY,10001 +217548,AA Batteries (4-pack),3,3.84,2019-06-10 12:18:00,825 1st St, Los Angeles,CA,90001 +217549,USB-C Charging Cable,1,11.95,2019-06-30 04:05:00,61 Sunset St, New York City,NY,10001 +217550,34in Ultrawide Monitor,1,379.99,2019-06-23 15:30:00,711 Forest St, Boston,MA,02215 +217551,USB-C Charging Cable,1,11.95,2019-06-13 13:49:00,72 Hill St, San Francisco,CA,94016 +217552,Wired Headphones,1,11.99,2019-06-24 15:46:00,485 Jackson St, New York City,NY,10001 +217553,ThinkPad Laptop,1,999.99,2019-06-01 09:15:00,29 13th St, Portland,OR,97035 +217554,Apple Airpods Headphones,1,150.0,2019-06-21 11:00:00,175 13th St, San Francisco,CA,94016 +217555,Wired Headphones,1,11.99,2019-06-30 10:15:00,83 Elm St, Portland,OR,97035 +217556,USB-C Charging Cable,1,11.95,2019-06-19 23:31:00,749 Spruce St, Dallas,TX,75001 +217557,AA Batteries (4-pack),1,3.84,2019-06-08 20:29:00,159 Adams St, Dallas,TX,75001 +217558,USB-C Charging Cable,1,11.95,2019-06-14 12:31:00,809 Wilson St, New York City,NY,10001 +217559,Wired Headphones,1,11.99,2019-06-19 08:53:00,133 Cherry St, Los Angeles,CA,90001 +217560,USB-C Charging Cable,1,11.95,2019-06-08 21:33:00,142 Center St, New York City,NY,10001 +217561,iPhone,1,700.0,2019-06-24 18:26:00,937 Center St, Seattle,WA,98101 +217562,Wired Headphones,1,11.99,2019-06-24 08:21:00,280 North St, Seattle,WA,98101 +217563,Bose SoundSport Headphones,1,99.99,2019-06-20 08:25:00,814 Wilson St, Dallas,TX,75001 +217564,34in Ultrawide Monitor,1,379.99,2019-06-06 18:48:00,34 Maple St, Portland,OR,97035 +217565,Lightning Charging Cable,1,14.95,2019-06-22 18:18:00,384 12th St, San Francisco,CA,94016 +217566,Apple Airpods Headphones,1,150.0,2019-06-08 20:54:00,503 Washington St, New York City,NY,10001 +217567,USB-C Charging Cable,1,11.95,2019-06-10 22:54:00,963 Dogwood St, Los Angeles,CA,90001 +217568,Apple Airpods Headphones,1,150.0,2019-06-30 17:47:00,428 Johnson St, Austin,TX,73301 +217569,27in 4K Gaming Monitor,1,389.99,2019-06-18 20:25:00,726 Sunset St, San Francisco,CA,94016 +217570,Macbook Pro Laptop,1,1700.0,2019-06-25 11:04:00,857 Washington St, New York City,NY,10001 +217571,Apple Airpods Headphones,1,150.0,2019-06-19 18:12:00,160 Willow St, New York City,NY,10001 +217572,Apple Airpods Headphones,1,150.0,2019-06-12 12:17:00,47 11th St, Boston,MA,02215 +217573,Apple Airpods Headphones,1,150.0,2019-06-17 16:44:00,869 Cedar St, Atlanta,GA,30301 +217574,AA Batteries (4-pack),1,3.84,2019-06-19 21:38:00,788 Church St, Los Angeles,CA,90001 +217575,AA Batteries (4-pack),1,3.84,2019-06-19 15:11:00,647 Maple St, Austin,TX,73301 +217576,USB-C Charging Cable,1,11.95,2019-06-17 11:18:00,564 Cedar St, Austin,TX,73301 +217577,Bose SoundSport Headphones,1,99.99,2019-06-18 09:46:00,197 Pine St, Seattle,WA,98101 +217578,USB-C Charging Cable,1,11.95,2019-06-18 17:35:00,613 Ridge St, Dallas,TX,75001 +217579,27in 4K Gaming Monitor,1,389.99,2019-06-30 19:32:00,797 Madison St, Seattle,WA,98101 +217580,USB-C Charging Cable,1,11.95,2019-06-03 11:53:00,660 2nd St, Boston,MA,02215 +217581,AA Batteries (4-pack),1,3.84,2019-06-29 11:26:00,484 6th St, Los Angeles,CA,90001 +217582,iPhone,1,700.0,2019-06-17 00:42:00,657 14th St, San Francisco,CA,94016 +217583,27in 4K Gaming Monitor,1,389.99,2019-06-19 18:55:00,973 Hill St, Dallas,TX,75001 +217584,Macbook Pro Laptop,1,1700.0,2019-06-26 17:41:00,454 6th St, Boston,MA,02215 +217585,AA Batteries (4-pack),1,3.84,2019-06-02 18:56:00,114 Washington St, New York City,NY,10001 +217586,Lightning Charging Cable,1,14.95,2019-06-24 12:54:00,600 Cherry St, San Francisco,CA,94016 +217587,Google Phone,1,600.0,2019-06-01 14:02:00,570 Meadow St, Atlanta,GA,30301 +217588,AAA Batteries (4-pack),1,2.99,2019-06-16 22:24:00,644 Lake St, Atlanta,GA,30301 +217589,Apple Airpods Headphones,1,150.0,2019-06-03 10:19:00,853 Johnson St, San Francisco,CA,94016 +217590,USB-C Charging Cable,1,11.95,2019-06-11 16:22:00,158 Wilson St, Atlanta,GA,30301 +217591,27in 4K Gaming Monitor,1,389.99,2019-06-11 20:34:00,469 West St, Seattle,WA,98101 +217592,ThinkPad Laptop,1,999.99,2019-06-21 18:01:00,394 Willow St, San Francisco,CA,94016 +217593,27in FHD Monitor,1,149.99,2019-06-29 00:54:00,93 7th St, Austin,TX,73301 +217594,AAA Batteries (4-pack),1,2.99,2019-06-24 22:55:00,911 South St, Portland,OR,97035 +217595,USB-C Charging Cable,2,11.95,2019-06-28 13:39:00,540 4th St, Los Angeles,CA,90001 +217596,20in Monitor,1,109.99,2019-06-02 23:04:00,57 Hickory St, Atlanta,GA,30301 +217597,AAA Batteries (4-pack),2,2.99,2019-06-02 18:32:00,927 Cedar St, Atlanta,GA,30301 +217598,Apple Airpods Headphones,1,150.0,2019-06-17 12:53:00,907 2nd St, Portland,OR,97035 +217599,Apple Airpods Headphones,1,150.0,2019-06-23 13:26:00,456 Meadow St, Portland,OR,97035 +217600,USB-C Charging Cable,1,11.95,2019-06-27 13:22:00,48 River St, San Francisco,CA,94016 +217601,Lightning Charging Cable,1,14.95,2019-06-24 06:13:00,990 Hickory St, San Francisco,CA,94016 +217602,USB-C Charging Cable,1,11.95,2019-06-11 13:57:00,23 Lake St, Austin,TX,73301 +217603,AA Batteries (4-pack),1,3.84,2019-06-24 11:15:00,466 Walnut St, Boston,MA,02215 +217604,34in Ultrawide Monitor,1,379.99,2019-06-11 23:18:00,971 Spruce St, Los Angeles,CA,90001 +217605,Flatscreen TV,1,300.0,2019-06-16 11:39:00,877 Washington St, Dallas,TX,75001 +217606,27in FHD Monitor,1,149.99,2019-06-11 10:22:00,612 Wilson St, San Francisco,CA,94016 +217607,Bose SoundSport Headphones,1,99.99,2019-06-18 14:47:00,663 Church St, Seattle,WA,98101 +217608,Wired Headphones,1,11.99,2019-06-07 20:15:00,353 Dogwood St, Boston,MA,02215 +217609,AA Batteries (4-pack),2,3.84,2019-06-20 18:25:00,837 11th St, San Francisco,CA,94016 +217610,AA Batteries (4-pack),1,3.84,2019-06-30 20:39:00,67 Spruce St, Los Angeles,CA,90001 +217611,27in FHD Monitor,1,149.99,2019-06-15 15:52:00,990 Wilson St, Atlanta,GA,30301 +217612,Wired Headphones,1,11.99,2019-06-17 16:19:00,583 Elm St, Los Angeles,CA,90001 +217613,Lightning Charging Cable,1,14.95,2019-06-13 23:01:00,986 1st St, Los Angeles,CA,90001 +217614,34in Ultrawide Monitor,1,379.99,2019-06-28 17:47:00,899 8th St, Los Angeles,CA,90001 +217615,Bose SoundSport Headphones,1,99.99,2019-06-17 18:33:00,356 10th St, New York City,NY,10001 +217616,34in Ultrawide Monitor,1,379.99,2019-06-25 20:46:00,149 Spruce St, Los Angeles,CA,90001 +217617,Lightning Charging Cable,2,14.95,2019-06-12 18:18:00,852 Highland St, Dallas,TX,75001 +217618,iPhone,1,700.0,2019-06-15 19:04:00,223 8th St, Seattle,WA,98101 +217618,Wired Headphones,1,11.99,2019-06-15 19:04:00,223 8th St, Seattle,WA,98101 +217619,Apple Airpods Headphones,1,150.0,2019-06-19 18:48:00,862 Chestnut St, Boston,MA,02215 +217620,USB-C Charging Cable,1,11.95,2019-06-20 09:16:00,582 Maple St, San Francisco,CA,94016 +217621,AAA Batteries (4-pack),1,2.99,2019-06-16 12:47:00,791 Spruce St, New York City,NY,10001 +217622,Google Phone,1,600.0,2019-06-24 18:12:00,57 South St, San Francisco,CA,94016 +217623,Macbook Pro Laptop,1,1700.0,2019-06-15 13:00:00,801 Johnson St, Austin,TX,73301 +217624,USB-C Charging Cable,1,11.95,2019-06-06 16:44:00,318 Highland St, Portland,OR,97035 +217625,AAA Batteries (4-pack),1,2.99,2019-06-16 12:06:00,967 Highland St, Dallas,TX,75001 +217626,Lightning Charging Cable,1,14.95,2019-06-04 18:00:00,832 9th St, Los Angeles,CA,90001 +217627,AAA Batteries (4-pack),1,2.99,2019-06-11 00:07:00,609 Forest St, New York City,NY,10001 +217628,AAA Batteries (4-pack),1,2.99,2019-06-07 22:58:00,25 Church St, San Francisco,CA,94016 +217629,Lightning Charging Cable,1,14.95,2019-06-02 20:17:00,245 Center St, Dallas,TX,75001 +217630,iPhone,1,700.0,2019-06-06 15:41:00,266 Highland St, Dallas,TX,75001 +217631,Flatscreen TV,1,300.0,2019-06-03 06:44:00,248 10th St, Boston,MA,02215 +217632,USB-C Charging Cable,1,11.95,2019-06-07 15:13:00,781 Lakeview St, New York City,NY,10001 +217633,Lightning Charging Cable,1,14.95,2019-06-11 16:41:00,936 Jefferson St, Los Angeles,CA,90001 +217634,Wired Headphones,1,11.99,2019-06-24 16:48:00,322 Adams St, Atlanta,GA,30301 +217635,Wired Headphones,1,11.99,2019-06-29 21:06:00,53 Lincoln St, Portland,OR,97035 +217636,Lightning Charging Cable,1,14.95,2019-06-13 18:23:00,244 West St, Portland,ME,04101 +217637,iPhone,1,700.0,2019-06-02 19:13:00,719 Chestnut St, Los Angeles,CA,90001 +217638,20in Monitor,1,109.99,2019-06-30 21:01:00,502 Park St, San Francisco,CA,94016 +217639,iPhone,1,700.0,2019-06-21 12:19:00,213 Dogwood St, San Francisco,CA,94016 +217640,27in FHD Monitor,1,149.99,2019-06-15 20:58:00,687 1st St, Boston,MA,02215 +217641,Bose SoundSport Headphones,1,99.99,2019-06-01 23:37:00,483 2nd St, San Francisco,CA,94016 +217642,AA Batteries (4-pack),2,3.84,2019-06-06 01:25:00,201 5th St, New York City,NY,10001 +217643,USB-C Charging Cable,1,11.95,2019-06-05 16:58:00,251 Lake St, Los Angeles,CA,90001 +217644,AA Batteries (4-pack),2,3.84,2019-06-10 15:05:00,39 Lincoln St, New York City,NY,10001 +217645,20in Monitor,1,109.99,2019-06-03 18:52:00,89 South St, San Francisco,CA,94016 +217646,AAA Batteries (4-pack),1,2.99,2019-06-26 14:11:00,9 Madison St, Boston,MA,02215 +217647,ThinkPad Laptop,1,999.99,2019-06-19 15:44:00,539 6th St, Dallas,TX,75001 +217648,Apple Airpods Headphones,1,150.0,2019-06-18 06:05:00,232 River St, Los Angeles,CA,90001 +217649,27in FHD Monitor,2,149.99,2019-06-30 16:36:00,227 7th St, Los Angeles,CA,90001 +217650,27in FHD Monitor,1,149.99,2019-06-14 15:46:00,339 Spruce St, Seattle,WA,98101 +217651,LG Dryer,1,600.0,2019-06-11 22:46:00,674 Hill St, Portland,ME,04101 +217651,Wired Headphones,1,11.99,2019-06-11 22:46:00,674 Hill St, Portland,ME,04101 +217652,Google Phone,1,600.0,2019-06-30 16:49:00,485 4th St, San Francisco,CA,94016 +217653,Bose SoundSport Headphones,1,99.99,2019-06-15 14:00:00,683 Chestnut St, Dallas,TX,75001 +217654,AAA Batteries (4-pack),2,2.99,2019-06-03 13:01:00,480 Elm St, Los Angeles,CA,90001 +217655,AA Batteries (4-pack),2,3.84,2019-06-17 07:49:00,136 Park St, Atlanta,GA,30301 +217656,Google Phone,1,600.0,2019-06-21 20:05:00,18 Cedar St, Boston,MA,02215 +217657,Bose SoundSport Headphones,1,99.99,2019-06-25 10:29:00,739 1st St, San Francisco,CA,94016 +217658,Lightning Charging Cable,1,14.95,2019-06-17 10:04:00,744 14th St, San Francisco,CA,94016 +217659,USB-C Charging Cable,1,11.95,2019-06-16 22:22:00,802 Center St, Boston,MA,02215 +217660,Apple Airpods Headphones,1,150.0,2019-06-12 18:20:00,603 2nd St, San Francisco,CA,94016 +217661,AA Batteries (4-pack),1,3.84,2019-06-03 13:11:00,320 6th St, Seattle,WA,98101 +217662,34in Ultrawide Monitor,1,379.99,2019-06-29 09:42:00,496 Hickory St, Boston,MA,02215 +217663,AA Batteries (4-pack),1,3.84,2019-06-06 22:34:00,943 Spruce St, Austin,TX,73301 +217664,AAA Batteries (4-pack),1,2.99,2019-06-01 19:46:00,551 9th St, Boston,MA,02215 +217665,Apple Airpods Headphones,1,150.0,2019-06-05 20:05:00,660 Ridge St, San Francisco,CA,94016 +217666,Google Phone,1,600.0,2019-06-30 06:37:00,765 Highland St, San Francisco,CA,94016 +217666,USB-C Charging Cable,1,11.95,2019-06-30 06:37:00,765 Highland St, San Francisco,CA,94016 +217667,20in Monitor,1,109.99,2019-06-25 20:46:00,860 5th St, San Francisco,CA,94016 +217668,Lightning Charging Cable,1,14.95,2019-06-23 20:31:00,820 2nd St, San Francisco,CA,94016 +217669,Wired Headphones,1,11.99,2019-06-26 21:37:00,985 Walnut St, Los Angeles,CA,90001 +217670,USB-C Charging Cable,1,11.95,2019-06-28 18:12:00,108 Jackson St, New York City,NY,10001 +217671,Apple Airpods Headphones,1,150.0,2019-06-27 00:01:00,612 Adams St, Los Angeles,CA,90001 +217672,Lightning Charging Cable,1,14.95,2019-06-22 00:54:00,65 Ridge St, New York City,NY,10001 +217673,Flatscreen TV,1,300.0,2019-06-04 22:05:00,363 2nd St, San Francisco,CA,94016 +217674,Wired Headphones,1,11.99,2019-06-07 17:00:00,743 12th St, Boston,MA,02215 +217675,27in FHD Monitor,1,149.99,2019-06-30 09:31:00,442 9th St, Los Angeles,CA,90001 +217676,AA Batteries (4-pack),2,3.84,2019-06-27 15:18:00,755 Pine St, New York City,NY,10001 +217677,USB-C Charging Cable,1,11.95,2019-06-12 10:56:00,347 Cedar St, New York City,NY,10001 +217678,Google Phone,1,600.0,2019-06-28 04:41:00,542 8th St, New York City,NY,10001 +217679,27in FHD Monitor,1,149.99,2019-06-14 16:32:00,653 Church St, Los Angeles,CA,90001 +217680,Apple Airpods Headphones,1,150.0,2019-06-25 22:31:00,294 Forest St, Seattle,WA,98101 +217681,iPhone,1,700.0,2019-06-22 11:18:00,241 Elm St, Seattle,WA,98101 +217682,Wired Headphones,1,11.99,2019-06-12 11:09:00,435 Lake St, Atlanta,GA,30301 +217683,Flatscreen TV,1,300.0,2019-06-29 22:38:00,805 Hill St, Los Angeles,CA,90001 +217684,27in 4K Gaming Monitor,1,389.99,2019-06-29 16:15:00,487 North St, New York City,NY,10001 +217685,Apple Airpods Headphones,1,150.0,2019-06-21 08:21:00,821 Meadow St, Dallas,TX,75001 +217686,AAA Batteries (4-pack),1,2.99,2019-06-17 17:54:00,134 2nd St, Portland,OR,97035 +217687,20in Monitor,1,109.99,2019-06-12 13:48:00,222 Hill St, New York City,NY,10001 +217688,Wired Headphones,1,11.99,2019-06-24 21:42:00,118 Adams St, New York City,NY,10001 +217689,27in FHD Monitor,1,149.99,2019-06-16 20:09:00,665 8th St, San Francisco,CA,94016 +217690,Lightning Charging Cable,1,14.95,2019-06-04 20:13:00,146 Lake St, New York City,NY,10001 +217691,Wired Headphones,1,11.99,2019-06-21 13:12:00,78 Lakeview St, Portland,OR,97035 +217692,27in 4K Gaming Monitor,1,389.99,2019-06-05 13:33:00,305 6th St, Boston,MA,02215 +217693,ThinkPad Laptop,1,999.99,2019-06-07 14:50:00,103 8th St, San Francisco,CA,94016 +217694,Wired Headphones,1,11.99,2019-06-19 13:53:00,50 Lincoln St, San Francisco,CA,94016 +217695,AAA Batteries (4-pack),1,2.99,2019-06-26 14:46:00,257 South St, Seattle,WA,98101 +217696,iPhone,1,700.0,2019-06-04 18:39:00,659 11th St, San Francisco,CA,94016 +217697,27in FHD Monitor,1,149.99,2019-06-11 16:30:00,86 Adams St, San Francisco,CA,94016 +217698,Apple Airpods Headphones,1,150.0,2019-06-15 23:56:00,207 Cherry St, Los Angeles,CA,90001 +217699,Apple Airpods Headphones,1,150.0,2019-06-26 11:00:00,644 Sunset St, Dallas,TX,75001 +217700,Apple Airpods Headphones,1,150.0,2019-06-07 19:27:00,660 8th St, Boston,MA,02215 +217701,20in Monitor,1,109.99,2019-06-29 20:49:00,164 North St, Dallas,TX,75001 +217702,AA Batteries (4-pack),1,3.84,2019-06-19 22:04:00,216 6th St, New York City,NY,10001 +217703,Wired Headphones,1,11.99,2019-06-13 10:52:00,782 Maple St, Atlanta,GA,30301 +217704,Bose SoundSport Headphones,1,99.99,2019-06-16 17:54:00,118 Park St, New York City,NY,10001 +217705,AA Batteries (4-pack),1,3.84,2019-06-17 18:07:00,862 Lakeview St, Seattle,WA,98101 +217706,Wired Headphones,1,11.99,2019-06-11 21:03:00,261 Walnut St, Portland,OR,97035 +217707,AAA Batteries (4-pack),2,2.99,2019-06-29 09:59:00,99 Forest St, Portland,OR,97035 +217708,USB-C Charging Cable,1,11.95,2019-06-29 22:13:00,803 14th St, San Francisco,CA,94016 +217709,AAA Batteries (4-pack),2,2.99,2019-06-02 19:57:00,141 Willow St, New York City,NY,10001 +217710,AAA Batteries (4-pack),1,2.99,2019-06-26 11:06:00,388 Hickory St, Boston,MA,02215 +217711,27in 4K Gaming Monitor,1,389.99,2019-06-08 10:47:00,785 10th St, San Francisco,CA,94016 +217712,AAA Batteries (4-pack),1,2.99,2019-06-17 18:08:00,656 Meadow St, Austin,TX,73301 +217713,AA Batteries (4-pack),1,3.84,2019-06-25 22:17:00,721 Jackson St, San Francisco,CA,94016 +217714,USB-C Charging Cable,1,11.95,2019-06-07 12:23:00,516 Johnson St, Atlanta,GA,30301 +217715,AA Batteries (4-pack),2,3.84,2019-06-04 22:03:00,455 Wilson St, New York City,NY,10001 +217716,Apple Airpods Headphones,1,150.0,2019-06-05 06:39:00,334 Lincoln St, San Francisco,CA,94016 +217717,AAA Batteries (4-pack),1,2.99,2019-06-30 11:10:00,875 13th St, Boston,MA,02215 +217718,iPhone,1,700.0,2019-06-01 17:26:00,529 8th St, Boston,MA,02215 +217719,27in FHD Monitor,1,149.99,2019-06-21 00:17:00,457 5th St, Seattle,WA,98101 +217720,27in 4K Gaming Monitor,1,389.99,2019-06-08 21:15:00,907 Dogwood St, Seattle,WA,98101 +217721,USB-C Charging Cable,1,11.95,2019-06-02 17:25:00,162 8th St, New York City,NY,10001 +217722,Bose SoundSport Headphones,1,99.99,2019-06-10 15:16:00,548 12th St, San Francisco,CA,94016 +217723,AA Batteries (4-pack),1,3.84,2019-06-08 21:19:00,212 6th St, San Francisco,CA,94016 +217724,Lightning Charging Cable,1,14.95,2019-06-23 10:41:00,177 North St, Los Angeles,CA,90001 +217725,Lightning Charging Cable,1,14.95,2019-06-26 15:26:00,518 Center St, Los Angeles,CA,90001 +217726,USB-C Charging Cable,1,11.95,2019-06-12 19:07:00,341 14th St, Los Angeles,CA,90001 +217727,Wired Headphones,1,11.99,2019-06-17 20:08:00,964 Ridge St, Boston,MA,02215 +217728,27in 4K Gaming Monitor,1,389.99,2019-06-20 09:38:00,615 West St, Los Angeles,CA,90001 +217729,Wired Headphones,1,11.99,2019-06-02 22:54:00,73 Johnson St, Atlanta,GA,30301 +217730,AA Batteries (4-pack),3,3.84,2019-06-16 13:52:00,113 Park St, Los Angeles,CA,90001 +217731,AAA Batteries (4-pack),1,2.99,2019-06-10 13:10:00,837 Walnut St, San Francisco,CA,94016 +217732,AAA Batteries (4-pack),1,2.99,2019-06-23 19:52:00,190 Cherry St, San Francisco,CA,94016 +217733,Google Phone,1,600.0,2019-06-21 14:04:00,251 Elm St, Seattle,WA,98101 +217734,27in FHD Monitor,1,149.99,2019-06-11 07:25:00,893 Wilson St, Boston,MA,02215 +217735,Vareebadd Phone,1,400.0,2019-06-23 21:50:00,507 Jackson St, Boston,MA,02215 +217736,27in 4K Gaming Monitor,1,389.99,2019-06-25 18:28:00,331 South St, Boston,MA,02215 +217737,AA Batteries (4-pack),1,3.84,2019-06-28 05:32:00,978 5th St, San Francisco,CA,94016 +217738,Flatscreen TV,1,300.0,2019-06-19 00:02:00,865 Pine St, New York City,NY,10001 +217739,Macbook Pro Laptop,1,1700.0,2019-06-19 16:41:00,387 11th St, San Francisco,CA,94016 +217740,AAA Batteries (4-pack),1,2.99,2019-06-22 13:40:00,413 Maple St, San Francisco,CA,94016 +217741,AA Batteries (4-pack),1,3.84,2019-06-19 12:43:00,209 North St, Atlanta,GA,30301 +217742,iPhone,1,700.0,2019-06-23 09:52:00,658 Jackson St, Seattle,WA,98101 +217742,Lightning Charging Cable,1,14.95,2019-06-23 09:52:00,658 Jackson St, Seattle,WA,98101 +217743,Lightning Charging Cable,1,14.95,2019-06-13 17:05:00,536 West St, Austin,TX,73301 +217744,ThinkPad Laptop,1,999.99,2019-06-26 15:55:00,933 Hickory St, Atlanta,GA,30301 +217745,AA Batteries (4-pack),1,3.84,2019-06-05 12:24:00,685 Willow St, Boston,MA,02215 +217746,Flatscreen TV,1,300.0,2019-06-29 21:05:00,897 Lakeview St, Portland,OR,97035 +217747,USB-C Charging Cable,1,11.95,2019-06-26 12:49:00,928 Lincoln St, San Francisco,CA,94016 +217748,Wired Headphones,1,11.99,2019-06-08 16:26:00,813 Ridge St, Seattle,WA,98101 +217749,Flatscreen TV,1,300.0,2019-06-26 19:44:00,366 11th St, New York City,NY,10001 +217750,AAA Batteries (4-pack),2,2.99,2019-06-27 14:47:00,211 Maple St, New York City,NY,10001 +217751,34in Ultrawide Monitor,1,379.99,2019-06-26 16:32:00,12 Sunset St, Atlanta,GA,30301 +217752,Lightning Charging Cable,1,14.95,2019-06-06 15:09:00,179 Walnut St, Boston,MA,02215 +217753,iPhone,1,700.0,2019-06-09 22:18:00,803 Chestnut St, San Francisco,CA,94016 +217754,USB-C Charging Cable,1,11.95,2019-06-25 20:56:00,138 River St, San Francisco,CA,94016 +217755,34in Ultrawide Monitor,1,379.99,2019-06-09 22:44:00,544 8th St, New York City,NY,10001 +217756,Apple Airpods Headphones,1,150.0,2019-06-29 11:12:00,682 14th St, Austin,TX,73301 +217757,34in Ultrawide Monitor,1,379.99,2019-06-12 13:17:00,19 Madison St, San Francisco,CA,94016 +217758,Macbook Pro Laptop,1,1700.0,2019-06-09 08:53:00,254 Madison St, New York City,NY,10001 +217759,20in Monitor,1,109.99,2019-06-19 02:29:00,884 Forest St, Boston,MA,02215 +217760,iPhone,1,700.0,2019-06-23 14:17:00,45 14th St, Atlanta,GA,30301 +217761,27in FHD Monitor,1,149.99,2019-06-23 09:42:00,962 Chestnut St, Boston,MA,02215 +217762,Apple Airpods Headphones,1,150.0,2019-06-27 00:19:00,745 South St, San Francisco,CA,94016 +217763,Lightning Charging Cable,1,14.95,2019-06-25 09:57:00,133 Sunset St, New York City,NY,10001 +217764,AAA Batteries (4-pack),1,2.99,2019-06-24 09:19:00,856 Lincoln St, Dallas,TX,75001 +217765,27in FHD Monitor,1,149.99,2019-06-25 10:47:00,655 Jefferson St, Los Angeles,CA,90001 +217766,AAA Batteries (4-pack),1,2.99,2019-06-18 09:00:00,116 West St, San Francisco,CA,94016 +217767,Wired Headphones,1,11.99,2019-06-19 15:26:00,601 2nd St, Los Angeles,CA,90001 +217768,AA Batteries (4-pack),1,3.84,2019-06-26 10:16:00,957 Washington St, San Francisco,CA,94016 +217769,Wired Headphones,1,11.99,2019-06-24 11:25:00,827 Madison St, Boston,MA,02215 +217770,AAA Batteries (4-pack),2,2.99,2019-06-10 16:53:00,450 5th St, Los Angeles,CA,90001 +217771,Lightning Charging Cable,2,14.95,2019-06-28 23:56:00,545 South St, San Francisco,CA,94016 +217772,Macbook Pro Laptop,1,1700.0,2019-06-14 16:14:00,980 Walnut St, San Francisco,CA,94016 +217773,AA Batteries (4-pack),1,3.84,2019-06-25 19:16:00,890 Lakeview St, New York City,NY,10001 +217774,Wired Headphones,1,11.99,2019-06-05 20:21:00,284 Johnson St, New York City,NY,10001 +217775,Google Phone,1,600.0,2019-06-25 18:39:00,224 Spruce St, San Francisco,CA,94016 +217776,ThinkPad Laptop,1,999.99,2019-06-18 12:23:00,744 Jefferson St, New York City,NY,10001 +217777,34in Ultrawide Monitor,1,379.99,2019-06-03 21:00:00,107 14th St, Los Angeles,CA,90001 +217778,USB-C Charging Cable,1,11.95,2019-06-22 12:21:00,148 14th St, Portland,OR,97035 +217779,AAA Batteries (4-pack),1,2.99,2019-06-26 17:54:00,547 Lake St, San Francisco,CA,94016 +217780,20in Monitor,1,109.99,2019-06-06 21:49:00,252 Spruce St, San Francisco,CA,94016 +217781,Macbook Pro Laptop,1,1700.0,2019-06-28 07:24:00,748 Elm St, Los Angeles,CA,90001 +217782,AAA Batteries (4-pack),1,2.99,2019-06-29 09:27:00,682 7th St, Seattle,WA,98101 +217783,AA Batteries (4-pack),1,3.84,2019-06-22 17:36:00,275 4th St, New York City,NY,10001 +217784,USB-C Charging Cable,1,11.95,2019-06-28 16:09:00,515 South St, Portland,ME,04101 +217785,Apple Airpods Headphones,1,150.0,2019-06-28 17:22:00,625 Hickory St, Los Angeles,CA,90001 +217786,Wired Headphones,3,11.99,2019-06-18 20:17:00,556 Dogwood St, Seattle,WA,98101 +217787,Wired Headphones,1,11.99,2019-06-30 08:39:00,78 11th St, Boston,MA,02215 +217788,ThinkPad Laptop,1,999.99,2019-06-10 09:24:00,920 Hill St, Los Angeles,CA,90001 +217789,Bose SoundSport Headphones,1,99.99,2019-06-27 00:08:00,25 Pine St, Boston,MA,02215 +217790,USB-C Charging Cable,1,11.95,2019-06-05 19:53:00,506 Park St, Los Angeles,CA,90001 +217791,AAA Batteries (4-pack),3,2.99,2019-06-28 19:37:00,542 13th St, San Francisco,CA,94016 +217792,AAA Batteries (4-pack),1,2.99,2019-06-28 15:54:00,324 Cedar St, Seattle,WA,98101 +217793,AA Batteries (4-pack),1,3.84,2019-06-01 12:58:00,645 13th St, Austin,TX,73301 +217794,AAA Batteries (4-pack),2,2.99,2019-06-03 15:43:00,539 Center St, Los Angeles,CA,90001 +217795,Apple Airpods Headphones,1,150.0,2019-06-06 14:15:00,402 12th St, Dallas,TX,75001 +217795,Wired Headphones,1,11.99,2019-06-06 14:15:00,402 12th St, Dallas,TX,75001 +217796,Lightning Charging Cable,2,14.95,2019-06-24 10:03:00,562 Center St, New York City,NY,10001 +217797,Apple Airpods Headphones,1,150.0,2019-06-27 19:48:00,725 River St, San Francisco,CA,94016 +217798,27in 4K Gaming Monitor,1,389.99,2019-06-17 08:28:00,168 Wilson St, San Francisco,CA,94016 +217799,Wired Headphones,1,11.99,2019-06-05 05:12:00,120 Church St, Los Angeles,CA,90001 +217800,27in FHD Monitor,1,149.99,2019-06-04 17:04:00,433 Church St, San Francisco,CA,94016 +217801,AAA Batteries (4-pack),1,2.99,2019-06-28 23:59:00,403 Highland St, New York City,NY,10001 +217802,ThinkPad Laptop,1,999.99,2019-06-24 10:20:00,48 Spruce St, San Francisco,CA,94016 +217803,Lightning Charging Cable,1,14.95,2019-06-17 22:31:00,3 Wilson St, Los Angeles,CA,90001 +217804,Wired Headphones,1,11.99,2019-06-14 09:33:00,436 9th St, Los Angeles,CA,90001 +217805,34in Ultrawide Monitor,1,379.99,2019-06-18 18:32:00,668 West St, Portland,ME,04101 +217806,Wired Headphones,1,11.99,2019-06-16 10:18:00,235 Madison St, New York City,NY,10001 +217807,AAA Batteries (4-pack),1,2.99,2019-06-11 13:10:00,868 Pine St, Los Angeles,CA,90001 +217808,34in Ultrawide Monitor,1,379.99,2019-06-02 06:31:00,986 10th St, Seattle,WA,98101 +217809,AA Batteries (4-pack),1,3.84,2019-06-04 21:45:00,467 Forest St, Los Angeles,CA,90001 +217810,AAA Batteries (4-pack),1,2.99,2019-06-06 08:12:00,437 Meadow St, New York City,NY,10001 +217811,AAA Batteries (4-pack),4,2.99,2019-06-25 14:23:00,660 West St, Atlanta,GA,30301 +217812,34in Ultrawide Monitor,1,379.99,2019-06-30 17:41:00,863 Cedar St, New York City,NY,10001 +217813,Lightning Charging Cable,1,14.95,2019-06-10 12:39:00,640 Walnut St, Portland,OR,97035 +217814,27in 4K Gaming Monitor,1,389.99,2019-06-21 21:17:00,988 6th St, Atlanta,GA,30301 +217815,Wired Headphones,1,11.99,2019-06-05 22:23:00,74 Adams St, Austin,TX,73301 +217816,Wired Headphones,1,11.99,2019-06-06 15:57:00,922 Sunset St, New York City,NY,10001 +217817,AAA Batteries (4-pack),1,2.99,2019-06-05 13:35:00,955 1st St, Los Angeles,CA,90001 +217818,USB-C Charging Cable,1,11.95,2019-06-26 15:35:00,829 9th St, Seattle,WA,98101 +217819,USB-C Charging Cable,1,11.95,2019-06-18 21:36:00,472 Jefferson St, Boston,MA,02215 +217820,iPhone,1,700.0,2019-06-23 14:56:00,584 Adams St, Los Angeles,CA,90001 +217820,Apple Airpods Headphones,1,150.0,2019-06-23 14:56:00,584 Adams St, Los Angeles,CA,90001 +217821,34in Ultrawide Monitor,1,379.99,2019-06-02 14:31:00,719 Chestnut St, Atlanta,GA,30301 +217822,Lightning Charging Cable,2,14.95,2019-06-09 13:22:00,794 13th St, Los Angeles,CA,90001 +217823,Flatscreen TV,1,300.0,2019-06-19 09:56:00,77 6th St, San Francisco,CA,94016 +217824,Lightning Charging Cable,1,14.95,2019-06-07 19:16:00,741 Church St, Los Angeles,CA,90001 +217825,34in Ultrawide Monitor,1,379.99,2019-06-18 16:02:00,553 9th St, Portland,OR,97035 +217826,AAA Batteries (4-pack),1,2.99,2019-06-13 00:13:00,834 Meadow St, Atlanta,GA,30301 +217827,USB-C Charging Cable,2,11.95,2019-06-15 18:14:00,355 5th St, San Francisco,CA,94016 +217828,USB-C Charging Cable,2,11.95,2019-06-02 11:01:00,580 Hill St, New York City,NY,10001 +217829,Lightning Charging Cable,1,14.95,2019-06-29 11:02:00,187 14th St, Boston,MA,02215 +217830,USB-C Charging Cable,1,11.95,2019-06-23 05:09:00,957 West St, San Francisco,CA,94016 +217831,AAA Batteries (4-pack),1,2.99,2019-06-13 14:22:00,842 4th St, Dallas,TX,75001 +217832,27in 4K Gaming Monitor,1,389.99,2019-06-14 21:10:00,736 Dogwood St, New York City,NY,10001 +217833,Bose SoundSport Headphones,1,99.99,2019-06-08 20:06:00,4 Hickory St, San Francisco,CA,94016 +217834,Wired Headphones,1,11.99,2019-06-10 18:50:00,215 Spruce St, San Francisco,CA,94016 +217835,27in FHD Monitor,1,149.99,2019-06-02 18:54:00,906 2nd St, Dallas,TX,75001 +217836,USB-C Charging Cable,1,11.95,2019-06-17 12:59:00,837 Highland St, San Francisco,CA,94016 +217837,AA Batteries (4-pack),1,3.84,2019-06-12 17:10:00,541 Washington St, Los Angeles,CA,90001 +217838,Lightning Charging Cable,2,14.95,2019-06-01 13:38:00,557 8th St, Dallas,TX,75001 +217839,iPhone,1,700.0,2019-06-09 14:21:00,191 Cedar St, Los Angeles,CA,90001 +217840,USB-C Charging Cable,1,11.95,2019-06-06 08:25:00,936 Dogwood St, San Francisco,CA,94016 +217841,USB-C Charging Cable,1,11.95,2019-06-02 08:47:00,465 Center St, San Francisco,CA,94016 +217842,Apple Airpods Headphones,1,150.0,2019-06-12 21:06:00,268 7th St, San Francisco,CA,94016 +217843,Apple Airpods Headphones,2,150.0,2019-06-13 03:37:00,350 Wilson St, Austin,TX,73301 +217844,Macbook Pro Laptop,1,1700.0,2019-06-11 02:26:00,350 Elm St, San Francisco,CA,94016 +217845,27in FHD Monitor,1,149.99,2019-06-30 01:25:00,506 6th St, Los Angeles,CA,90001 +217846,ThinkPad Laptop,1,999.99,2019-06-08 09:21:00,692 Maple St, Boston,MA,02215 +217847,AA Batteries (4-pack),3,3.84,2019-06-10 13:27:00,620 Washington St, Austin,TX,73301 +217848,34in Ultrawide Monitor,1,379.99,2019-06-09 09:04:00,227 Forest St, Seattle,WA,98101 +217849,AA Batteries (4-pack),1,3.84,2019-06-17 13:25:00,385 13th St, Los Angeles,CA,90001 +217850,ThinkPad Laptop,1,999.99,2019-06-03 12:54:00,7 North St, Dallas,TX,75001 +217851,Flatscreen TV,1,300.0,2019-06-27 12:52:00,850 Ridge St, Los Angeles,CA,90001 +217852,Lightning Charging Cable,1,14.95,2019-06-09 15:22:00,687 Dogwood St, San Francisco,CA,94016 +217853,27in FHD Monitor,1,149.99,2019-06-14 19:53:00,329 6th St, San Francisco,CA,94016 +217854,Lightning Charging Cable,1,14.95,2019-06-24 13:40:00,571 Meadow St, Portland,OR,97035 +217855,USB-C Charging Cable,1,11.95,2019-06-24 12:35:00,776 7th St, New York City,NY,10001 +217856,Vareebadd Phone,1,400.0,2019-06-15 15:24:00,226 South St, New York City,NY,10001 +217856,Bose SoundSport Headphones,1,99.99,2019-06-15 15:24:00,226 South St, New York City,NY,10001 +217857,Apple Airpods Headphones,1,150.0,2019-06-12 18:52:00,675 Sunset St, San Francisco,CA,94016 +217858,AAA Batteries (4-pack),2,2.99,2019-06-13 00:07:00,555 Sunset St, Portland,OR,97035 +217859,27in FHD Monitor,1,149.99,2019-06-29 12:11:00,367 9th St, Boston,MA,02215 +217860,Apple Airpods Headphones,1,150.0,2019-06-09 12:43:00,747 North St, New York City,NY,10001 +217861,27in 4K Gaming Monitor,1,389.99,2019-06-26 10:44:00,391 Elm St, San Francisco,CA,94016 +217862,Lightning Charging Cable,1,14.95,2019-06-26 14:27:00,881 Maple St, Los Angeles,CA,90001 +217863,AA Batteries (4-pack),1,3.84,2019-06-27 18:09:00,903 Park St, New York City,NY,10001 +217864,ThinkPad Laptop,1,999.99,2019-06-13 07:38:00,320 Lakeview St, Dallas,TX,75001 +217865,Wired Headphones,1,11.99,2019-06-01 14:03:00,540 7th St, Boston,MA,02215 +217866,USB-C Charging Cable,1,11.95,2019-06-18 01:19:00,719 Maple St, San Francisco,CA,94016 +217866,Apple Airpods Headphones,1,150.0,2019-06-18 01:19:00,719 Maple St, San Francisco,CA,94016 +217867,Wired Headphones,1,11.99,2019-06-15 11:28:00,662 Cedar St, Portland,OR,97035 +217868,Google Phone,1,600.0,2019-06-29 12:33:00,353 1st St, New York City,NY,10001 +217868,USB-C Charging Cable,1,11.95,2019-06-29 12:33:00,353 1st St, New York City,NY,10001 +217869,USB-C Charging Cable,1,11.95,2019-06-11 09:39:00,173 Washington St, Portland,OR,97035 +217869,27in FHD Monitor,1,149.99,2019-06-11 09:39:00,173 Washington St, Portland,OR,97035 +217870,Wired Headphones,1,11.99,2019-06-04 13:28:00,792 Elm St, San Francisco,CA,94016 +217871,Wired Headphones,2,11.99,2019-06-06 20:05:00,893 North St, San Francisco,CA,94016 +217872,USB-C Charging Cable,2,11.95,2019-06-26 12:01:00,751 Hill St, New York City,NY,10001 +217873,AA Batteries (4-pack),2,3.84,2019-06-01 13:25:00,798 5th St, New York City,NY,10001 +217874,27in 4K Gaming Monitor,1,389.99,2019-06-07 01:21:00,911 1st St, Los Angeles,CA,90001 +217874,Macbook Pro Laptop,1,1700.0,2019-06-07 01:21:00,911 1st St, Los Angeles,CA,90001 +217875,20in Monitor,1,109.99,2019-06-27 14:48:00,664 Pine St, Seattle,WA,98101 +217876,Flatscreen TV,1,300.0,2019-06-12 11:26:00,499 Meadow St, Portland,OR,97035 +217877,Wired Headphones,1,11.99,2019-06-15 14:05:00,794 Chestnut St, Seattle,WA,98101 +217878,USB-C Charging Cable,1,11.95,2019-06-22 22:35:00,481 North St, Portland,OR,97035 +217879,AA Batteries (4-pack),1,3.84,2019-06-11 09:58:00,739 Park St, Los Angeles,CA,90001 +217880,AAA Batteries (4-pack),1,2.99,2019-06-03 14:04:00,430 Dogwood St, San Francisco,CA,94016 +217881,AA Batteries (4-pack),1,3.84,2019-06-18 18:13:00,220 4th St, New York City,NY,10001 +217882,USB-C Charging Cable,1,11.95,2019-06-18 20:18:00,456 Pine St, Atlanta,GA,30301 +217883,Macbook Pro Laptop,1,1700.0,2019-06-13 13:00:00,998 West St, Atlanta,GA,30301 +217884,AA Batteries (4-pack),1,3.84,2019-06-24 18:31:00,362 13th St, Portland,OR,97035 +217885,27in FHD Monitor,1,149.99,2019-06-19 23:18:00,399 Chestnut St, Boston,MA,02215 +217886,20in Monitor,1,109.99,2019-06-15 14:26:00,344 4th St, San Francisco,CA,94016 +217887,Lightning Charging Cable,1,14.95,2019-06-13 21:35:00,255 Walnut St, San Francisco,CA,94016 +217888,AAA Batteries (4-pack),1,2.99,2019-06-08 11:58:00,435 Center St, Los Angeles,CA,90001 +217889,Wired Headphones,1,11.99,2019-06-02 21:06:00,25 Center St, San Francisco,CA,94016 +217890,ThinkPad Laptop,1,999.99,2019-06-23 15:43:00,846 2nd St, New York City,NY,10001 +217891,AA Batteries (4-pack),1,3.84,2019-06-13 20:03:00,700 10th St, Boston,MA,02215 +217892,AA Batteries (4-pack),1,3.84,2019-06-30 21:38:00,826 Cherry St, Austin,TX,73301 +217893,AAA Batteries (4-pack),1,2.99,2019-06-11 19:29:00,47 Dogwood St, Seattle,WA,98101 +217894,Wired Headphones,1,11.99,2019-06-12 13:18:00,369 10th St, San Francisco,CA,94016 +217895,USB-C Charging Cable,1,11.95,2019-06-02 15:13:00,910 Madison St, Atlanta,GA,30301 +217896,iPhone,1,700.0,2019-06-06 22:10:00,393 Park St, San Francisco,CA,94016 +217897,20in Monitor,1,109.99,2019-06-03 14:13:00,251 Meadow St, Austin,TX,73301 +217898,Lightning Charging Cable,1,14.95,2019-06-30 08:10:00,984 Park St, Los Angeles,CA,90001 +217899,Bose SoundSport Headphones,1,99.99,2019-06-14 01:58:00,775 Cherry St, San Francisco,CA,94016 +217900,AA Batteries (4-pack),1,3.84,2019-06-03 20:21:00,515 River St, Boston,MA,02215 +217901,34in Ultrawide Monitor,1,379.99,2019-06-14 16:03:00,10 13th St, San Francisco,CA,94016 +217902,Google Phone,1,600.0,2019-06-06 18:18:00,161 4th St, Atlanta,GA,30301 +217903,AAA Batteries (4-pack),1,2.99,2019-06-29 22:51:00,960 Ridge St, Atlanta,GA,30301 +217904,AA Batteries (4-pack),1,3.84,2019-06-15 17:48:00,725 North St, Dallas,TX,75001 +217905,AA Batteries (4-pack),1,3.84,2019-06-20 00:07:00,365 Elm St, San Francisco,CA,94016 +217906,27in 4K Gaming Monitor,1,389.99,2019-06-20 13:29:00,195 West St, New York City,NY,10001 +217907,AAA Batteries (4-pack),1,2.99,2019-06-27 18:41:00,129 Elm St, New York City,NY,10001 +217908,Bose SoundSport Headphones,1,99.99,2019-06-03 04:48:00,453 West St, Los Angeles,CA,90001 +217909,AA Batteries (4-pack),1,3.84,2019-06-05 17:30:00,820 Sunset St, San Francisco,CA,94016 +217910,20in Monitor,1,109.99,2019-06-27 20:10:00,178 Cherry St, Los Angeles,CA,90001 +217911,USB-C Charging Cable,1,11.95,2019-06-25 00:03:00,570 10th St, San Francisco,CA,94016 +217912,ThinkPad Laptop,1,999.99,2019-06-23 17:46:00,974 Maple St, New York City,NY,10001 +217913,Macbook Pro Laptop,1,1700.0,2019-06-07 00:47:00,439 Jackson St, Austin,TX,73301 +217914,Lightning Charging Cable,1,14.95,2019-06-18 21:28:00,539 Meadow St, San Francisco,CA,94016 +217915,27in 4K Gaming Monitor,1,389.99,2019-06-13 10:46:00,742 Walnut St, Austin,TX,73301 +217916,Google Phone,1,600.0,2019-06-02 20:27:00,995 Dogwood St, Seattle,WA,98101 +217917,AA Batteries (4-pack),1,3.84,2019-06-16 18:40:00,268 Washington St, Boston,MA,02215 +217918,Lightning Charging Cable,1,14.95,2019-06-20 06:55:00,439 Spruce St, San Francisco,CA,94016 +217919,Bose SoundSport Headphones,1,99.99,2019-06-27 12:12:00,145 Cedar St, Boston,MA,02215 +217920,AAA Batteries (4-pack),2,2.99,2019-06-01 08:10:00,107 Park St, New York City,NY,10001 +217921,Bose SoundSport Headphones,1,99.99,2019-06-01 20:41:00,265 Lake St, New York City,NY,10001 +217922,Flatscreen TV,1,300.0,2019-06-13 02:23:00,933 Spruce St, Boston,MA,02215 +217923,AAA Batteries (4-pack),1,2.99,2019-06-18 10:43:00,861 Walnut St, San Francisco,CA,94016 +217924,AAA Batteries (4-pack),3,2.99,2019-06-13 01:31:00,520 Highland St, San Francisco,CA,94016 +217925,AAA Batteries (4-pack),1,2.99,2019-06-16 17:33:00,793 11th St, New York City,NY,10001 +217926,Lightning Charging Cable,1,14.95,2019-06-29 21:14:00,820 Willow St, Portland,ME,04101 +217927,AA Batteries (4-pack),2,3.84,2019-06-20 18:12:00,603 1st St, Atlanta,GA,30301 +217928,AA Batteries (4-pack),1,3.84,2019-06-29 09:57:00,318 Highland St, Seattle,WA,98101 +217929,34in Ultrawide Monitor,1,379.99,2019-06-07 17:10:00,140 Wilson St, San Francisco,CA,94016 +217930,AA Batteries (4-pack),1,3.84,2019-06-08 12:52:00,701 Highland St, Austin,TX,73301 +217931,34in Ultrawide Monitor,1,379.99,2019-06-04 15:50:00,606 Jackson St, Los Angeles,CA,90001 +217932,Lightning Charging Cable,2,14.95,2019-06-01 04:52:00,653 Forest St, Atlanta,GA,30301 +217933,Lightning Charging Cable,1,14.95,2019-06-03 10:57:00,29 Maple St, Los Angeles,CA,90001 +217934,AA Batteries (4-pack),1,3.84,2019-06-08 09:27:00,213 1st St, Los Angeles,CA,90001 +217935,Wired Headphones,1,11.99,2019-06-05 07:29:00,3 Forest St, Austin,TX,73301 +217936,Google Phone,1,600.0,2019-06-16 17:02:00,183 Main St, Boston,MA,02215 +217937,ThinkPad Laptop,1,999.99,2019-06-11 17:51:00,965 South St, San Francisco,CA,94016 +217938,USB-C Charging Cable,2,11.95,2019-06-24 20:16:00,599 Chestnut St, San Francisco,CA,94016 +217939,Wired Headphones,1,11.99,2019-06-18 12:37:00,977 Highland St, Dallas,TX,75001 +217940,USB-C Charging Cable,1,11.95,2019-06-20 15:43:00,586 River St, Los Angeles,CA,90001 +217941,AAA Batteries (4-pack),3,2.99,2019-06-07 22:42:00,203 8th St, Seattle,WA,98101 +217942,Apple Airpods Headphones,1,150.0,2019-06-02 12:50:00,722 Lakeview St, Boston,MA,02215 +217943,iPhone,1,700.0,2019-06-23 11:37:00,421 8th St, San Francisco,CA,94016 +217944,USB-C Charging Cable,1,11.95,2019-06-25 15:40:00,997 12th St, Seattle,WA,98101 +217945,27in 4K Gaming Monitor,1,389.99,2019-06-09 16:03:00,179 Elm St, Seattle,WA,98101 +217946,USB-C Charging Cable,1,11.95,2019-06-16 13:37:00,308 Walnut St, New York City,NY,10001 +217947,USB-C Charging Cable,1,11.95,2019-06-07 15:32:00,385 Church St, Los Angeles,CA,90001 +217948,Apple Airpods Headphones,1,150.0,2019-06-11 16:05:00,855 Cherry St, Atlanta,GA,30301 +217949,34in Ultrawide Monitor,1,379.99,2019-06-08 18:42:00,300 Hill St, New York City,NY,10001 +217950,Macbook Pro Laptop,1,1700.0,2019-06-21 10:59:00,328 Adams St, Dallas,TX,75001 +217951,Bose SoundSport Headphones,1,99.99,2019-06-23 11:51:00,883 Jackson St, Boston,MA,02215 +217952,Lightning Charging Cable,2,14.95,2019-06-13 06:30:00,891 Walnut St, Austin,TX,73301 +217953,Wired Headphones,1,11.99,2019-06-13 19:39:00,398 Pine St, San Francisco,CA,94016 +217954,Apple Airpods Headphones,1,150.0,2019-06-04 21:16:00,996 Walnut St, Los Angeles,CA,90001 +217955,USB-C Charging Cable,1,11.95,2019-06-05 08:18:00,800 6th St, Boston,MA,02215 +217956,USB-C Charging Cable,1,11.95,2019-06-07 18:57:00,185 1st St, Dallas,TX,75001 +217957,AAA Batteries (4-pack),1,2.99,2019-06-18 14:34:00,61 Lake St, Portland,OR,97035 +217958,Bose SoundSport Headphones,1,99.99,2019-06-17 21:53:00,197 Forest St, Dallas,TX,75001 +217959,AAA Batteries (4-pack),1,2.99,2019-06-20 10:41:00,518 Dogwood St, Austin,TX,73301 +217960,Bose SoundSport Headphones,1,99.99,2019-06-12 18:35:00,544 South St, New York City,NY,10001 +217961,AAA Batteries (4-pack),1,2.99,2019-06-04 22:46:00,628 Madison St, Los Angeles,CA,90001 +217962,34in Ultrawide Monitor,1,379.99,2019-06-16 15:46:00,404 Chestnut St, New York City,NY,10001 +217963,Lightning Charging Cable,1,14.95,2019-06-10 22:16:00,661 Dogwood St, Dallas,TX,75001 +217964,AAA Batteries (4-pack),1,2.99,2019-06-10 09:58:00,949 Lake St, Atlanta,GA,30301 +217965,Wired Headphones,1,11.99,2019-06-29 22:39:00,898 Washington St, Austin,TX,73301 +217966,27in FHD Monitor,1,149.99,2019-06-03 01:26:00,86 6th St, Seattle,WA,98101 +217967,AAA Batteries (4-pack),1,2.99,2019-06-24 17:50:00,183 Spruce St, San Francisco,CA,94016 +217968,Google Phone,1,600.0,2019-06-04 14:51:00,708 Main St, Austin,TX,73301 +217969,Apple Airpods Headphones,1,150.0,2019-06-23 14:14:00,503 Sunset St, San Francisco,CA,94016 +217970,Apple Airpods Headphones,1,150.0,2019-06-22 18:02:00,554 Meadow St, San Francisco,CA,94016 +217971,Wired Headphones,1,11.99,2019-06-14 21:23:00,324 Elm St, San Francisco,CA,94016 +217972,USB-C Charging Cable,1,11.95,2019-06-18 18:37:00,633 Chestnut St, San Francisco,CA,94016 +217973,27in FHD Monitor,1,149.99,2019-06-22 10:45:00,535 11th St, New York City,NY,10001 +217974,ThinkPad Laptop,1,999.99,2019-06-19 17:50:00,101 Walnut St, Seattle,WA,98101 +217975,AAA Batteries (4-pack),1,2.99,2019-06-15 20:51:00,47 11th St, Boston,MA,02215 +217976,iPhone,1,700.0,2019-06-13 09:42:00,620 Lincoln St, San Francisco,CA,94016 +217977,Lightning Charging Cable,1,14.95,2019-06-30 23:28:00,229 Church St, Dallas,TX,75001 +217978,Apple Airpods Headphones,1,150.0,2019-06-28 16:54:00,933 Highland St, Los Angeles,CA,90001 +217979,ThinkPad Laptop,1,999.99,2019-06-12 08:14:00,967 6th St, Dallas,TX,75001 +217980,27in 4K Gaming Monitor,1,389.99,2019-06-20 19:32:00,858 Washington St, Los Angeles,CA,90001 +217980,ThinkPad Laptop,1,999.99,2019-06-20 19:32:00,858 Washington St, Los Angeles,CA,90001 +217981,Bose SoundSport Headphones,1,99.99,2019-06-01 11:53:00,935 Cedar St, Boston,MA,02215 +217982,AA Batteries (4-pack),1,3.84,2019-06-04 10:35:00,462 Chestnut St, New York City,NY,10001 +217983,Bose SoundSport Headphones,1,99.99,2019-06-12 14:32:00,486 Hill St, Portland,OR,97035 +217984,AAA Batteries (4-pack),2,2.99,2019-06-24 23:34:00,245 Adams St, San Francisco,CA,94016 +217985,27in 4K Gaming Monitor,1,389.99,2019-06-18 00:21:00,645 Maple St, New York City,NY,10001 +217986,iPhone,1,700.0,2019-06-25 22:33:00,428 Ridge St, Portland,OR,97035 +217987,Apple Airpods Headphones,1,150.0,2019-06-16 18:12:00,753 North St, San Francisco,CA,94016 +217988,AA Batteries (4-pack),1,3.84,2019-06-30 17:14:00,682 9th St, San Francisco,CA,94016 +217989,Wired Headphones,1,11.99,2019-06-04 11:28:00,488 11th St, Boston,MA,02215 +217990,Wired Headphones,1,11.99,2019-06-21 12:47:00,408 Dogwood St, New York City,NY,10001 +217991,iPhone,1,700.0,2019-06-02 17:17:00,987 14th St, San Francisco,CA,94016 +217992,USB-C Charging Cable,1,11.95,2019-06-16 11:10:00,48 North St, Los Angeles,CA,90001 +217993,USB-C Charging Cable,1,11.95,2019-06-22 14:05:00,194 14th St, San Francisco,CA,94016 +217994,AAA Batteries (4-pack),3,2.99,2019-06-13 16:42:00,574 Lakeview St, Portland,ME,04101 +217995,Vareebadd Phone,1,400.0,2019-06-12 11:42:00,383 Pine St, San Francisco,CA,94016 +217995,Wired Headphones,1,11.99,2019-06-12 11:42:00,383 Pine St, San Francisco,CA,94016 +217996,Lightning Charging Cable,1,14.95,2019-06-02 07:58:00,283 Church St, Austin,TX,73301 +217997,Bose SoundSport Headphones,1,99.99,2019-06-01 19:25:00,767 North St, San Francisco,CA,94016 +217998,Apple Airpods Headphones,1,150.0,2019-06-02 15:37:00,554 Washington St, Dallas,TX,75001 +217999,Google Phone,1,600.0,2019-06-13 14:54:00,533 Park St, Atlanta,GA,30301 +218000,ThinkPad Laptop,1,999.99,2019-06-12 15:41:00,924 Wilson St, San Francisco,CA,94016 +218001,27in FHD Monitor,1,149.99,2019-06-15 22:09:00,33 Johnson St, Los Angeles,CA,90001 +218002,iPhone,1,700.0,2019-06-28 09:45:00,332 Jackson St, New York City,NY,10001 +218003,USB-C Charging Cable,1,11.95,2019-06-10 19:44:00,801 Cherry St, Boston,MA,02215 +218004,Bose SoundSport Headphones,1,99.99,2019-06-16 21:48:00,310 Meadow St, Seattle,WA,98101 +218005,AAA Batteries (4-pack),1,2.99,2019-06-05 11:45:00,550 10th St, San Francisco,CA,94016 +218006,34in Ultrawide Monitor,1,379.99,2019-06-02 17:03:00,473 Jefferson St, Los Angeles,CA,90001 +218007,Wired Headphones,1,11.99,2019-06-06 13:23:00,755 1st St, Atlanta,GA,30301 +218008,AAA Batteries (4-pack),1,2.99,2019-06-02 12:42:00,575 Jefferson St, San Francisco,CA,94016 +218009,AAA Batteries (4-pack),1,2.99,2019-06-03 23:36:00,189 Washington St, Portland,OR,97035 +218010,USB-C Charging Cable,1,11.95,2019-06-03 06:43:00,302 Cherry St, Portland,ME,04101 +218011,Bose SoundSport Headphones,1,99.99,2019-06-06 20:56:00,547 Walnut St, Atlanta,GA,30301 +218012,USB-C Charging Cable,1,11.95,2019-06-23 09:47:00,517 Jackson St, Los Angeles,CA,90001 +218013,Macbook Pro Laptop,1,1700.0,2019-06-08 20:45:00,891 Lakeview St, San Francisco,CA,94016 +218014,Google Phone,1,600.0,2019-06-21 22:19:00,255 River St, Los Angeles,CA,90001 +218015,Bose SoundSport Headphones,1,99.99,2019-06-14 16:16:00,208 Cherry St, Seattle,WA,98101 +218016,27in 4K Gaming Monitor,1,389.99,2019-06-13 12:24:00,325 9th St, San Francisco,CA,94016 +218017,27in 4K Gaming Monitor,1,389.99,2019-06-06 13:31:00,20 5th St, Dallas,TX,75001 +218018,Bose SoundSport Headphones,1,99.99,2019-06-05 19:24:00,43 5th St, Los Angeles,CA,90001 +218019,34in Ultrawide Monitor,1,379.99,2019-06-08 16:24:00,306 11th St, Dallas,TX,75001 +218020,ThinkPad Laptop,1,999.99,2019-06-23 20:21:00,576 Meadow St, New York City,NY,10001 +218021,Apple Airpods Headphones,1,150.0,2019-06-04 16:24:00,983 Pine St, San Francisco,CA,94016 +218022,Apple Airpods Headphones,1,150.0,2019-06-19 12:15:00,808 River St, Austin,TX,73301 +218023,iPhone,1,700.0,2019-06-20 19:47:00,960 Lakeview St, San Francisco,CA,94016 +218023,Lightning Charging Cable,2,14.95,2019-06-20 19:47:00,960 Lakeview St, San Francisco,CA,94016 +218024,27in 4K Gaming Monitor,1,389.99,2019-06-20 14:59:00,764 Elm St, New York City,NY,10001 +218025,Flatscreen TV,1,300.0,2019-06-02 08:17:00,177 Jackson St, New York City,NY,10001 +218026,AAA Batteries (4-pack),1,2.99,2019-06-24 06:59:00,859 Cherry St, Seattle,WA,98101 +218027,Bose SoundSport Headphones,1,99.99,2019-06-07 00:40:00,369 West St, New York City,NY,10001 +218028,USB-C Charging Cable,1,11.95,2019-06-26 20:54:00,449 South St, Seattle,WA,98101 +218029,27in 4K Gaming Monitor,1,389.99,2019-06-15 10:27:00,398 Chestnut St, Dallas,TX,75001 +218030,Lightning Charging Cable,1,14.95,2019-06-10 17:33:00,308 Chestnut St, San Francisco,CA,94016 +218031,Google Phone,1,600.0,2019-06-30 23:56:00,964 Wilson St, San Francisco,CA,94016 +218032,USB-C Charging Cable,1,11.95,2019-06-09 10:08:00,256 14th St, San Francisco,CA,94016 +218033,USB-C Charging Cable,1,11.95,2019-06-09 08:15:00,148 Highland St, Los Angeles,CA,90001 +218034,AA Batteries (4-pack),1,3.84,2019-06-04 14:01:00,357 Elm St, Portland,OR,97035 +218035,iPhone,1,700.0,2019-06-23 17:48:00,606 Sunset St, Seattle,WA,98101 +218036,27in FHD Monitor,1,149.99,2019-06-22 14:35:00,579 West St, New York City,NY,10001 +218037,34in Ultrawide Monitor,1,379.99,2019-06-30 19:39:00,177 11th St, Dallas,TX,75001 +218038,Wired Headphones,1,11.99,2019-06-15 22:02:00,655 13th St, Dallas,TX,75001 +218039,27in 4K Gaming Monitor,1,389.99,2019-06-19 09:52:00,8 8th St, Atlanta,GA,30301 +218040,USB-C Charging Cable,2,11.95,2019-06-30 15:21:00,822 Main St, San Francisco,CA,94016 +218041,Wired Headphones,1,11.99,2019-06-03 18:30:00,273 Highland St, San Francisco,CA,94016 +218042,Apple Airpods Headphones,1,150.0,2019-06-02 13:51:00,964 West St, San Francisco,CA,94016 +218043,Lightning Charging Cable,1,14.95,2019-06-15 09:13:00,695 2nd St, Dallas,TX,75001 +218044,Bose SoundSport Headphones,1,99.99,2019-06-24 13:06:00,485 1st St, Atlanta,GA,30301 +218045,Apple Airpods Headphones,1,150.0,2019-06-26 23:02:00,833 Washington St, Boston,MA,02215 +218046,AA Batteries (4-pack),1,3.84,2019-06-05 20:00:00,917 West St, Portland,ME,04101 +218047,Wired Headphones,1,11.99,2019-06-01 18:12:00,209 Madison St, San Francisco,CA,94016 +218048,20in Monitor,1,109.99,2019-06-17 11:25:00,554 Hickory St, Dallas,TX,75001 +218049,20in Monitor,1,109.99,2019-06-19 14:09:00,289 Lake St, San Francisco,CA,94016 +218050,Lightning Charging Cable,1,14.95,2019-06-13 08:47:00,312 Chestnut St, San Francisco,CA,94016 +218051,Google Phone,1,600.0,2019-06-18 12:30:00,147 Ridge St, San Francisco,CA,94016 +218051,Wired Headphones,1,11.99,2019-06-18 12:30:00,147 Ridge St, San Francisco,CA,94016 +218052,Bose SoundSport Headphones,1,99.99,2019-06-15 23:51:00,672 West St, Portland,OR,97035 +218053,ThinkPad Laptop,1,999.99,2019-06-04 10:24:00,665 7th St, Dallas,TX,75001 +218054,Wired Headphones,1,11.99,2019-06-27 11:33:00,255 13th St, Boston,MA,02215 +218055,ThinkPad Laptop,1,999.99,2019-06-26 21:57:00,442 7th St, Portland,OR,97035 +218056,34in Ultrawide Monitor,1,379.99,2019-06-24 09:42:00,497 11th St, Los Angeles,CA,90001 +218057,Apple Airpods Headphones,1,150.0,2019-06-15 18:29:00,16 Madison St, San Francisco,CA,94016 +218057,AA Batteries (4-pack),1,3.84,2019-06-15 18:29:00,16 Madison St, San Francisco,CA,94016 +218058,AAA Batteries (4-pack),2,2.99,2019-06-28 12:12:00,545 12th St, San Francisco,CA,94016 +218059,Macbook Pro Laptop,1,1700.0,2019-06-18 11:52:00,231 11th St, Atlanta,GA,30301 +218060,AAA Batteries (4-pack),2,2.99,2019-06-14 18:33:00,247 Main St, San Francisco,CA,94016 +218061,Apple Airpods Headphones,1,150.0,2019-06-29 18:23:00,394 Cherry St, Atlanta,GA,30301 +218062,iPhone,1,700.0,2019-06-04 13:37:00,799 Meadow St, San Francisco,CA,94016 +218062,Apple Airpods Headphones,1,150.0,2019-06-04 13:37:00,799 Meadow St, San Francisco,CA,94016 +218063,Wired Headphones,1,11.99,2019-06-15 14:37:00,303 Main St, San Francisco,CA,94016 +218064,AA Batteries (4-pack),1,3.84,2019-06-28 20:10:00,890 River St, New York City,NY,10001 +218065,USB-C Charging Cable,1,11.95,2019-06-13 21:04:00,108 Hickory St, New York City,NY,10001 +218066,Bose SoundSport Headphones,1,99.99,2019-06-24 09:37:00,135 Highland St, Los Angeles,CA,90001 +218067,AAA Batteries (4-pack),1,2.99,2019-06-19 01:03:00,257 2nd St, Atlanta,GA,30301 +218068,Apple Airpods Headphones,1,150.0,2019-06-01 16:27:00,186 Hickory St, Los Angeles,CA,90001 +218069,AA Batteries (4-pack),1,3.84,2019-06-06 16:59:00,88 Madison St, Atlanta,GA,30301 +218070,AAA Batteries (4-pack),1,2.99,2019-06-06 11:03:00,797 Walnut St, Los Angeles,CA,90001 +218071,Lightning Charging Cable,1,14.95,2019-06-18 18:01:00,25 Cherry St, Los Angeles,CA,90001 +218072,AA Batteries (4-pack),1,3.84,2019-06-23 19:34:00,539 10th St, San Francisco,CA,94016 +218073,Bose SoundSport Headphones,1,99.99,2019-06-23 09:38:00,584 Ridge St, Austin,TX,73301 +218074,iPhone,1,700.0,2019-06-06 12:03:00,708 Elm St, New York City,NY,10001 +218075,Bose SoundSport Headphones,1,99.99,2019-06-14 07:24:00,940 8th St, Boston,MA,02215 +218076,AA Batteries (4-pack),2,3.84,2019-06-12 11:38:00,224 1st St, San Francisco,CA,94016 +218077,AAA Batteries (4-pack),1,2.99,2019-06-29 21:59:00,843 Cherry St, New York City,NY,10001 +218078,Bose SoundSport Headphones,1,99.99,2019-06-17 19:49:00,26 River St, Portland,OR,97035 +218079,AAA Batteries (4-pack),1,2.99,2019-06-25 03:29:00,410 Cedar St, San Francisco,CA,94016 +218080,iPhone,1,700.0,2019-06-15 12:56:00,843 Johnson St, New York City,NY,10001 +218080,Lightning Charging Cable,1,14.95,2019-06-15 12:56:00,843 Johnson St, New York City,NY,10001 +218080,Apple Airpods Headphones,1,150.0,2019-06-15 12:56:00,843 Johnson St, New York City,NY,10001 +218081,AA Batteries (4-pack),1,3.84,2019-06-08 16:36:00,511 Cherry St, Atlanta,GA,30301 +218082,iPhone,1,700.0,2019-06-25 21:12:00,488 Elm St, Los Angeles,CA,90001 +218082,Lightning Charging Cable,1,14.95,2019-06-25 21:12:00,488 Elm St, Los Angeles,CA,90001 +218083,iPhone,1,700.0,2019-06-20 18:55:00,83 Elm St, Portland,ME,04101 +218084,AA Batteries (4-pack),1,3.84,2019-06-29 18:52:00,395 Walnut St, San Francisco,CA,94016 +218085,Lightning Charging Cable,1,14.95,2019-06-08 18:56:00,382 Willow St, Seattle,WA,98101 +218086,iPhone,1,700.0,2019-06-14 15:53:00,477 River St, Boston,MA,02215 +218087,AA Batteries (4-pack),1,3.84,2019-06-24 15:56:00,400 Sunset St, Los Angeles,CA,90001 +218088,27in FHD Monitor,1,149.99,2019-06-28 17:56:00,652 Meadow St, Los Angeles,CA,90001 +218089,USB-C Charging Cable,2,11.95,2019-06-14 22:47:00,342 9th St, Seattle,WA,98101 +218090,USB-C Charging Cable,2,11.95,2019-06-01 21:21:00,258 Jefferson St, Boston,MA,02215 +218091,AA Batteries (4-pack),1,3.84,2019-06-09 17:28:00,375 West St, Dallas,TX,75001 +218092,USB-C Charging Cable,1,11.95,2019-06-02 22:44:00,971 Chestnut St, Atlanta,GA,30301 +218093,Lightning Charging Cable,1,14.95,2019-06-01 18:55:00,115 Park St, Atlanta,GA,30301 +218094,Lightning Charging Cable,1,14.95,2019-06-04 18:07:00,852 Highland St, Portland,ME,04101 +218095,Wired Headphones,1,11.99,2019-06-08 16:15:00,739 Cherry St, Portland,OR,97035 +218096,Vareebadd Phone,1,400.0,2019-06-25 16:22:00,684 Dogwood St, New York City,NY,10001 +218097,Wired Headphones,1,11.99,2019-06-24 16:34:00,979 Sunset St, Atlanta,GA,30301 +218098,AAA Batteries (4-pack),2,2.99,2019-06-03 11:39:00,572 Jackson St, Los Angeles,CA,90001 +218099,AAA Batteries (4-pack),1,2.99,2019-06-10 08:59:00,405 Lake St, Dallas,TX,75001 +218100,Wired Headphones,1,11.99,2019-06-06 11:08:00,640 4th St, Atlanta,GA,30301 +218101,Bose SoundSport Headphones,1,99.99,2019-06-15 11:54:00,403 Wilson St, New York City,NY,10001 +218102,27in 4K Gaming Monitor,1,389.99,2019-06-03 14:22:00,94 4th St, Portland,OR,97035 +218103,Flatscreen TV,1,300.0,2019-06-11 20:10:00,349 Jackson St, Austin,TX,73301 +218104,iPhone,1,700.0,2019-06-28 13:26:00,877 10th St, New York City,NY,10001 +218105,AA Batteries (4-pack),1,3.84,2019-06-22 00:23:00,15 5th St, Austin,TX,73301 +218106,27in FHD Monitor,1,149.99,2019-06-03 18:34:00,85 6th St, Austin,TX,73301 +218106,Lightning Charging Cable,1,14.95,2019-06-03 18:34:00,85 6th St, Austin,TX,73301 +218107,AAA Batteries (4-pack),1,2.99,2019-06-22 12:55:00,931 Lakeview St, New York City,NY,10001 +218108,Wired Headphones,1,11.99,2019-06-08 23:06:00,782 4th St, San Francisco,CA,94016 +218109,iPhone,1,700.0,2019-06-25 12:25:00,382 Madison St, Boston,MA,02215 +218109,Lightning Charging Cable,1,14.95,2019-06-25 12:25:00,382 Madison St, Boston,MA,02215 +218109,Wired Headphones,2,11.99,2019-06-25 12:25:00,382 Madison St, Boston,MA,02215 +218110,AAA Batteries (4-pack),1,2.99,2019-06-20 23:20:00,526 Forest St, Dallas,TX,75001 +218111,Wired Headphones,1,11.99,2019-06-05 22:07:00,201 Ridge St, San Francisco,CA,94016 +218112,AAA Batteries (4-pack),1,2.99,2019-06-18 11:29:00,350 4th St, Austin,TX,73301 +218113,USB-C Charging Cable,1,11.95,2019-06-01 17:27:00,91 Maple St, Atlanta,GA,30301 +218114,AA Batteries (4-pack),1,3.84,2019-06-21 18:23:00,984 12th St, San Francisco,CA,94016 +218115,Lightning Charging Cable,1,14.95,2019-06-17 11:44:00,594 Jackson St, Seattle,WA,98101 +218116,iPhone,1,700.0,2019-06-01 12:09:00,163 2nd St, Seattle,WA,98101 +218116,Apple Airpods Headphones,1,150.0,2019-06-01 12:09:00,163 2nd St, Seattle,WA,98101 +218117,27in 4K Gaming Monitor,1,389.99,2019-06-08 21:35:00,1 4th St, Boston,MA,02215 +218118,AA Batteries (4-pack),2,3.84,2019-06-06 17:22:00,416 Forest St, Seattle,WA,98101 +218119,USB-C Charging Cable,1,11.95,2019-06-13 11:24:00,708 South St, New York City,NY,10001 +218120,iPhone,1,700.0,2019-06-08 15:35:00,266 West St, New York City,NY,10001 +218121,34in Ultrawide Monitor,1,379.99,2019-06-30 20:49:00,782 Lincoln St, San Francisco,CA,94016 +218122,AA Batteries (4-pack),2,3.84,2019-06-08 11:59:00,510 Chestnut St, Boston,MA,02215 +218123,AA Batteries (4-pack),2,3.84,2019-06-10 15:25:00,643 11th St, San Francisco,CA,94016 +218124,Apple Airpods Headphones,1,150.0,2019-06-11 11:14:00,592 North St, Los Angeles,CA,90001 +218125,USB-C Charging Cable,1,11.95,2019-06-25 09:47:00,423 Willow St, New York City,NY,10001 +218126,AA Batteries (4-pack),1,3.84,2019-06-03 12:58:00,851 Jefferson St, Boston,MA,02215 +218127,AA Batteries (4-pack),1,3.84,2019-06-16 13:00:00,149 Main St, Austin,TX,73301 +218128,USB-C Charging Cable,1,11.95,2019-06-28 15:17:00,642 7th St, Atlanta,GA,30301 +218129,AAA Batteries (4-pack),1,2.99,2019-06-07 17:27:00,478 Forest St, Los Angeles,CA,90001 +218130,Apple Airpods Headphones,1,150.0,2019-06-14 08:48:00,516 Wilson St, Boston,MA,02215 +218131,USB-C Charging Cable,1,11.95,2019-06-23 11:44:00,831 6th St, San Francisco,CA,94016 +218132,USB-C Charging Cable,1,11.95,2019-06-11 09:11:00,635 4th St, San Francisco,CA,94016 +218133,Google Phone,1,600.0,2019-06-29 23:01:00,944 14th St, San Francisco,CA,94016 +218134,Wired Headphones,1,11.99,2019-06-27 13:03:00,659 Walnut St, Los Angeles,CA,90001 +218135,AA Batteries (4-pack),1,3.84,2019-06-05 12:13:00,419 Meadow St, Boston,MA,02215 +218136,Bose SoundSport Headphones,1,99.99,2019-06-11 19:14:00,89 Hill St, Atlanta,GA,30301 +218137,USB-C Charging Cable,1,11.95,2019-06-24 08:42:00,362 Maple St, Seattle,WA,98101 +218138,27in 4K Gaming Monitor,1,389.99,2019-06-04 09:12:00,865 Johnson St, New York City,NY,10001 +218139,Lightning Charging Cable,1,14.95,2019-06-02 14:24:00,99 Ridge St, San Francisco,CA,94016 +218140,AA Batteries (4-pack),1,3.84,2019-06-25 13:10:00,278 Johnson St, Los Angeles,CA,90001 +218141,Apple Airpods Headphones,1,150.0,2019-06-13 17:33:00,343 5th St, Portland,OR,97035 +218142,AAA Batteries (4-pack),2,2.99,2019-06-04 06:02:00,407 7th St, Boston,MA,02215 +218143,AAA Batteries (4-pack),1,2.99,2019-06-28 13:11:00,4 1st St, New York City,NY,10001 +218144,Bose SoundSport Headphones,1,99.99,2019-06-14 18:30:00,444 Johnson St, Atlanta,GA,30301 +218145,AAA Batteries (4-pack),2,2.99,2019-06-26 22:46:00,583 Elm St, Portland,OR,97035 +218146,Macbook Pro Laptop,1,1700.0,2019-06-11 22:08:00,156 Maple St, San Francisco,CA,94016 +218147,Lightning Charging Cable,1,14.95,2019-06-03 11:55:00,153 13th St, Austin,TX,73301 +218148,AA Batteries (4-pack),2,3.84,2019-06-03 09:52:00,59 12th St, San Francisco,CA,94016 +218149,AAA Batteries (4-pack),2,2.99,2019-06-09 18:07:00,994 Forest St, Seattle,WA,98101 +218150,AA Batteries (4-pack),1,3.84,2019-06-08 19:49:00,929 Highland St, San Francisco,CA,94016 +218151,AAA Batteries (4-pack),2,2.99,2019-06-16 22:38:00,925 Chestnut St, San Francisco,CA,94016 +218152,USB-C Charging Cable,1,11.95,2019-06-16 11:30:00,841 Lake St, Austin,TX,73301 +218153,AA Batteries (4-pack),1,3.84,2019-06-09 20:18:00,257 Sunset St, Austin,TX,73301 +218154,Google Phone,1,600.0,2019-06-10 14:44:00,279 River St, Boston,MA,02215 +218154,USB-C Charging Cable,2,11.95,2019-06-10 14:44:00,279 River St, Boston,MA,02215 +218155,Apple Airpods Headphones,1,150.0,2019-06-11 14:54:00,720 Jackson St, Portland,OR,97035 +218156,27in 4K Gaming Monitor,1,389.99,2019-06-14 14:03:00,412 2nd St, San Francisco,CA,94016 +218157,iPhone,1,700.0,2019-06-19 06:56:00,739 Madison St, New York City,NY,10001 +218158,Bose SoundSport Headphones,1,99.99,2019-06-27 10:39:00,331 2nd St, Los Angeles,CA,90001 +218159,Google Phone,1,600.0,2019-06-20 12:35:00,760 2nd St, Seattle,WA,98101 +218160,Lightning Charging Cable,1,14.95,2019-06-01 20:42:00,938 Center St, Austin,TX,73301 +218161,Apple Airpods Headphones,1,150.0,2019-06-30 11:05:00,216 Hickory St, New York City,NY,10001 +218162,ThinkPad Laptop,1,999.99,2019-06-04 16:18:00,843 Adams St, New York City,NY,10001 +218163,Lightning Charging Cable,1,14.95,2019-06-01 23:26:00,986 11th St, Los Angeles,CA,90001 +218164,AA Batteries (4-pack),2,3.84,2019-06-06 12:53:00,162 Maple St, Dallas,TX,75001 +218165,Lightning Charging Cable,1,14.95,2019-06-28 15:58:00,449 Chestnut St, Portland,OR,97035 +218166,AAA Batteries (4-pack),2,2.99,2019-06-15 19:04:00,592 14th St, New York City,NY,10001 +218167,iPhone,1,700.0,2019-06-18 03:07:00,455 West St, Dallas,TX,75001 +218168,ThinkPad Laptop,1,999.99,2019-06-08 21:47:00,456 11th St, Portland,OR,97035 +218169,USB-C Charging Cable,1,11.95,2019-06-15 16:08:00,465 Sunset St, San Francisco,CA,94016 +218170,Lightning Charging Cable,1,14.95,2019-06-20 13:09:00,687 Forest St, Los Angeles,CA,90001 +218171,Lightning Charging Cable,1,14.95,2019-06-02 17:26:00,466 Wilson St, Seattle,WA,98101 +218172,34in Ultrawide Monitor,1,379.99,2019-06-18 12:36:00,862 Highland St, Atlanta,GA,30301 +218173,Wired Headphones,1,11.99,2019-06-03 20:11:00,982 Ridge St, Seattle,WA,98101 +218174,AAA Batteries (4-pack),1,2.99,2019-06-06 23:08:00,232 Meadow St, Los Angeles,CA,90001 +218175,Wired Headphones,1,11.99,2019-06-09 11:59:00,996 Hickory St, San Francisco,CA,94016 +218176,27in 4K Gaming Monitor,1,389.99,2019-06-26 13:36:00,771 11th St, New York City,NY,10001 +218177,AAA Batteries (4-pack),2,2.99,2019-06-23 23:05:00,9 11th St, Los Angeles,CA,90001 +218178,Bose SoundSport Headphones,1,99.99,2019-06-23 12:46:00,397 Sunset St, San Francisco,CA,94016 +218179,Wired Headphones,1,11.99,2019-06-29 16:48:00,960 Sunset St, Portland,OR,97035 +218180,iPhone,1,700.0,2019-06-24 14:43:00,96 13th St, New York City,NY,10001 +218181,AA Batteries (4-pack),1,3.84,2019-06-03 10:05:00,115 Jefferson St, Boston,MA,02215 +218182,iPhone,1,700.0,2019-06-16 18:58:00,440 Maple St, Boston,MA,02215 +218182,Apple Airpods Headphones,1,150.0,2019-06-16 18:58:00,440 Maple St, Boston,MA,02215 +218183,USB-C Charging Cable,1,11.95,2019-06-26 16:15:00,903 Hill St, Atlanta,GA,30301 +218184,iPhone,1,700.0,2019-06-28 11:05:00,19 2nd St, Los Angeles,CA,90001 +218185,AA Batteries (4-pack),2,3.84,2019-06-06 18:13:00,103 Church St, Boston,MA,02215 +218186,20in Monitor,1,109.99,2019-06-13 19:00:00,223 Adams St, New York City,NY,10001 +218187,27in 4K Gaming Monitor,1,389.99,2019-06-12 19:20:00,529 Sunset St, Boston,MA,02215 +218188,Lightning Charging Cable,1,14.95,2019-06-13 12:25:00,50 8th St, San Francisco,CA,94016 +218189,USB-C Charging Cable,1,11.95,2019-06-01 20:52:00,144 Center St, Portland,OR,97035 +218190,Wired Headphones,1,11.99,2019-06-23 19:29:00,745 Hill St, Dallas,TX,75001 +218191,Lightning Charging Cable,1,14.95,2019-06-03 14:21:00,918 Maple St, Austin,TX,73301 +218192,AAA Batteries (4-pack),1,2.99,2019-06-25 19:21:00,533 Adams St, San Francisco,CA,94016 +218193,AAA Batteries (4-pack),1,2.99,2019-06-05 14:18:00,686 Maple St, Seattle,WA,98101 +218194,Google Phone,1,600.0,2019-06-06 10:37:00,111 Meadow St, Atlanta,GA,30301 +218195,27in 4K Gaming Monitor,1,389.99,2019-06-11 13:05:00,665 Willow St, Seattle,WA,98101 +218196,Apple Airpods Headphones,1,150.0,2019-06-22 11:28:00,123 Highland St, Portland,ME,04101 +218197,AAA Batteries (4-pack),2,2.99,2019-06-23 03:47:00,772 Hill St, New York City,NY,10001 +218198,Lightning Charging Cable,1,14.95,2019-06-18 16:52:00,911 Spruce St, Los Angeles,CA,90001 +218199,34in Ultrawide Monitor,1,379.99,2019-06-12 12:26:00,35 River St, Seattle,WA,98101 +218200,AAA Batteries (4-pack),1,2.99,2019-06-02 21:49:00,121 Hill St, New York City,NY,10001 +218201,Apple Airpods Headphones,1,150.0,2019-06-28 18:32:00,376 Ridge St, Atlanta,GA,30301 +218202,AAA Batteries (4-pack),1,2.99,2019-06-08 21:52:00,499 Center St, Los Angeles,CA,90001 +218203,AA Batteries (4-pack),1,3.84,2019-06-22 06:37:00,73 Madison St, Atlanta,GA,30301 +218204,iPhone,1,700.0,2019-06-19 23:12:00,152 West St, Boston,MA,02215 +218205,ThinkPad Laptop,1,999.99,2019-06-17 00:14:00,130 Elm St, Austin,TX,73301 +218206,Macbook Pro Laptop,1,1700.0,2019-06-28 17:04:00,258 11th St, Boston,MA,02215 +218207,ThinkPad Laptop,1,999.99,2019-06-28 23:32:00,223 9th St, San Francisco,CA,94016 +218208,Lightning Charging Cable,1,14.95,2019-06-29 06:39:00,251 Meadow St, Portland,OR,97035 +218209,Apple Airpods Headphones,1,150.0,2019-06-06 12:05:00,569 5th St, Seattle,WA,98101 +218210,Apple Airpods Headphones,1,150.0,2019-06-16 15:30:00,392 12th St, Atlanta,GA,30301 +218211,Lightning Charging Cable,1,14.95,2019-06-24 11:01:00,814 Madison St, Portland,OR,97035 +218212,27in 4K Gaming Monitor,1,389.99,2019-06-01 11:49:00,350 Highland St, San Francisco,CA,94016 +218213,Bose SoundSport Headphones,1,99.99,2019-06-12 23:48:00,242 Center St, New York City,NY,10001 +218214,AA Batteries (4-pack),2,3.84,2019-06-19 19:27:00,30 10th St, Portland,OR,97035 +218215,Apple Airpods Headphones,1,150.0,2019-06-09 14:03:00,795 Walnut St, Dallas,TX,75001 +218216,27in 4K Gaming Monitor,1,389.99,2019-06-10 20:20:00,647 6th St, Seattle,WA,98101 +218217,AA Batteries (4-pack),2,3.84,2019-06-13 20:54:00,989 Park St, Boston,MA,02215 +218218,AAA Batteries (4-pack),1,2.99,2019-06-08 17:33:00,228 13th St, Atlanta,GA,30301 +218219,Bose SoundSport Headphones,1,99.99,2019-06-02 10:08:00,25 Pine St, San Francisco,CA,94016 +218220,Google Phone,1,600.0,2019-06-21 20:20:00,665 Adams St, Los Angeles,CA,90001 +218221,AAA Batteries (4-pack),1,2.99,2019-06-14 22:43:00,690 10th St, San Francisco,CA,94016 +218222,27in FHD Monitor,1,149.99,2019-06-26 17:19:00,551 Forest St, Boston,MA,02215 +218223,USB-C Charging Cable,2,11.95,2019-06-12 11:53:00,824 Jackson St, Boston,MA,02215 +218224,USB-C Charging Cable,1,11.95,2019-06-29 08:34:00,485 River St, Los Angeles,CA,90001 +218225,27in 4K Gaming Monitor,1,389.99,2019-06-26 12:10:00,61 Lake St, New York City,NY,10001 +218226,USB-C Charging Cable,1,11.95,2019-06-01 08:37:00,639 Highland St, New York City,NY,10001 +218227,iPhone,1,700.0,2019-06-18 15:58:00,742 West St, Atlanta,GA,30301 +218228,USB-C Charging Cable,1,11.95,2019-06-04 20:42:00,327 11th St, San Francisco,CA,94016 +218229,USB-C Charging Cable,1,11.95,2019-06-21 21:38:00,162 Cherry St, San Francisco,CA,94016 +218230,AA Batteries (4-pack),1,3.84,2019-06-21 22:23:00,965 Main St, San Francisco,CA,94016 +218231,USB-C Charging Cable,1,11.95,2019-06-06 10:52:00,761 Elm St, Portland,OR,97035 +218232,AAA Batteries (4-pack),2,2.99,2019-06-26 21:47:00,250 Sunset St, Seattle,WA,98101 +218233,USB-C Charging Cable,2,11.95,2019-06-07 11:17:00,893 Willow St, San Francisco,CA,94016 +218234,Apple Airpods Headphones,1,150.0,2019-06-24 17:27:00,601 Maple St, Los Angeles,CA,90001 +218235,AA Batteries (4-pack),2,3.84,2019-06-26 22:12:00,968 Cedar St, Dallas,TX,75001 +218236,Macbook Pro Laptop,1,1700.0,2019-06-19 23:04:00,924 7th St, Boston,MA,02215 +218237,USB-C Charging Cable,1,11.95,2019-06-05 09:25:00,14 Walnut St, San Francisco,CA,94016 +218238,iPhone,1,700.0,2019-06-06 11:38:00,235 Lincoln St, Boston,MA,02215 +218239,Bose SoundSport Headphones,1,99.99,2019-06-11 21:33:00,63 Johnson St, San Francisco,CA,94016 +218240,AA Batteries (4-pack),1,3.84,2019-06-11 14:02:00,202 Pine St, Los Angeles,CA,90001 +218241,USB-C Charging Cable,1,11.95,2019-06-14 18:26:00,423 Ridge St, San Francisco,CA,94016 +218242,Lightning Charging Cable,1,14.95,2019-06-20 16:30:00,650 Johnson St, Dallas,TX,75001 +218243,AA Batteries (4-pack),3,3.84,2019-06-02 19:40:00,463 14th St, Dallas,TX,75001 +218244,AA Batteries (4-pack),2,3.84,2019-06-06 14:13:00,197 11th St, Los Angeles,CA,90001 +218244,ThinkPad Laptop,1,999.99,2019-06-06 14:13:00,197 11th St, Los Angeles,CA,90001 +218245,iPhone,1,700.0,2019-06-11 01:17:00,703 12th St, Dallas,TX,75001 +218245,Lightning Charging Cable,1,14.95,2019-06-11 01:17:00,703 12th St, Dallas,TX,75001 +218246,AA Batteries (4-pack),1,3.84,2019-06-29 15:09:00,615 Sunset St, Los Angeles,CA,90001 +218247,Bose SoundSport Headphones,1,99.99,2019-06-09 20:22:00,151 6th St, Los Angeles,CA,90001 +218248,Apple Airpods Headphones,1,150.0,2019-06-29 14:16:00,721 Maple St, Los Angeles,CA,90001 +218249,Flatscreen TV,1,300.0,2019-06-16 08:39:00,825 Jackson St, San Francisco,CA,94016 +218250,AAA Batteries (4-pack),3,2.99,2019-06-17 11:16:00,106 Meadow St, Seattle,WA,98101 +218251,Lightning Charging Cable,2,14.95,2019-06-12 11:47:00,990 West St, New York City,NY,10001 +218252,AA Batteries (4-pack),1,3.84,2019-06-26 18:05:00,598 4th St, Dallas,TX,75001 +218253,AA Batteries (4-pack),2,3.84,2019-06-20 23:22:00,298 12th St, San Francisco,CA,94016 +218254,27in 4K Gaming Monitor,1,389.99,2019-06-14 11:16:00,738 South St, San Francisco,CA,94016 +218255,20in Monitor,1,109.99,2019-06-19 11:03:00,880 Pine St, Dallas,TX,75001 +218256,Bose SoundSport Headphones,1,99.99,2019-06-26 14:23:00,741 Highland St, New York City,NY,10001 +218257,Flatscreen TV,1,300.0,2019-06-24 09:41:00,735 12th St, Seattle,WA,98101 +218258,Wired Headphones,1,11.99,2019-06-06 10:06:00,838 Willow St, New York City,NY,10001 +218259,Google Phone,1,600.0,2019-06-24 19:26:00,968 12th St, San Francisco,CA,94016 +218260,Google Phone,1,600.0,2019-06-23 19:24:00,627 Lincoln St, New York City,NY,10001 +218261,ThinkPad Laptop,1,999.99,2019-06-02 13:41:00,588 North St, San Francisco,CA,94016 +218262,Wired Headphones,1,11.99,2019-06-07 15:46:00,569 Park St, Boston,MA,02215 +218263,AA Batteries (4-pack),1,3.84,2019-06-04 08:45:00,862 Washington St, Dallas,TX,75001 +218264,Apple Airpods Headphones,1,150.0,2019-06-18 15:10:00,515 11th St, San Francisco,CA,94016 +218265,USB-C Charging Cable,1,11.95,2019-06-20 14:42:00,505 Hill St, San Francisco,CA,94016 +218266,27in 4K Gaming Monitor,1,389.99,2019-06-18 17:50:00,413 Chestnut St, Seattle,WA,98101 +218267,USB-C Charging Cable,1,11.95,2019-06-26 10:58:00,58 1st St, Dallas,TX,75001 +218268,Apple Airpods Headphones,1,150.0,2019-06-27 10:32:00,884 Spruce St, Los Angeles,CA,90001 +218269,USB-C Charging Cable,1,11.95,2019-06-03 22:29:00,65 Wilson St, San Francisco,CA,94016 +218270,Bose SoundSport Headphones,1,99.99,2019-06-08 23:42:00,19 Lake St, Los Angeles,CA,90001 +218271,Wired Headphones,1,11.99,2019-06-22 06:05:00,91 Park St, Atlanta,GA,30301 +218272,Lightning Charging Cable,1,14.95,2019-06-25 05:40:00,874 Ridge St, San Francisco,CA,94016 +218273,Wired Headphones,1,11.99,2019-06-10 11:44:00,56 2nd St, Seattle,WA,98101 +218274,iPhone,1,700.0,2019-06-30 20:29:00,156 Church St, San Francisco,CA,94016 +218274,Lightning Charging Cable,2,14.95,2019-06-30 20:29:00,156 Church St, San Francisco,CA,94016 +218275,Wired Headphones,1,11.99,2019-06-29 14:54:00,823 Johnson St, San Francisco,CA,94016 +218276,Lightning Charging Cable,1,14.95,2019-06-08 21:05:00,816 South St, San Francisco,CA,94016 +218277,Wired Headphones,1,11.99,2019-06-02 23:04:00,178 2nd St, Atlanta,GA,30301 +218278,27in FHD Monitor,1,149.99,2019-06-06 11:11:00,900 2nd St, San Francisco,CA,94016 +218279,Wired Headphones,1,11.99,2019-06-18 18:41:00,573 Park St, Atlanta,GA,30301 +218280,Lightning Charging Cable,1,14.95,2019-06-18 18:07:00,544 1st St, Boston,MA,02215 +218281,27in FHD Monitor,1,149.99,2019-06-11 13:22:00,548 Pine St, Portland,OR,97035 +218282,34in Ultrawide Monitor,1,379.99,2019-06-03 11:01:00,335 4th St, Seattle,WA,98101 +218283,Apple Airpods Headphones,1,150.0,2019-06-01 08:38:00,1 Hickory St, Boston,MA,02215 +218284,Lightning Charging Cable,1,14.95,2019-06-08 17:45:00,443 Lake St, Portland,OR,97035 +218285,AA Batteries (4-pack),1,3.84,2019-06-09 14:59:00,979 Forest St, Dallas,TX,75001 +218286,Apple Airpods Headphones,1,150.0,2019-06-14 11:10:00,311 1st St, New York City,NY,10001 +218287,USB-C Charging Cable,1,11.95,2019-06-11 22:17:00,230 Dogwood St, Boston,MA,02215 +218288,AAA Batteries (4-pack),2,2.99,2019-06-03 18:00:00,278 North St, New York City,NY,10001 +218289,AA Batteries (4-pack),1,3.84,2019-06-28 09:09:00,989 Pine St, San Francisco,CA,94016 +218290,Lightning Charging Cable,1,14.95,2019-06-24 22:02:00,15 Lincoln St, San Francisco,CA,94016 +218291,Wired Headphones,1,11.99,2019-06-14 10:10:00,367 South St, Los Angeles,CA,90001 +218292,Flatscreen TV,1,300.0,2019-06-16 00:03:00,309 Forest St, New York City,NY,10001 +218293,AA Batteries (4-pack),2,3.84,2019-06-12 20:07:00,523 Lakeview St, Atlanta,GA,30301 +218294,Google Phone,1,600.0,2019-06-05 12:03:00,327 Johnson St, Seattle,WA,98101 +218294,Bose SoundSport Headphones,1,99.99,2019-06-05 12:03:00,327 Johnson St, Seattle,WA,98101 +218295,USB-C Charging Cable,1,11.95,2019-06-01 19:02:00,931 South St, Seattle,WA,98101 +218296,Apple Airpods Headphones,1,150.0,2019-06-17 15:51:00,439 Cherry St, Los Angeles,CA,90001 +218297,AAA Batteries (4-pack),3,2.99,2019-06-04 21:27:00,783 14th St, Dallas,TX,75001 +218298,ThinkPad Laptop,1,999.99,2019-06-13 09:46:00,201 Elm St, Seattle,WA,98101 +218299,AA Batteries (4-pack),2,3.84,2019-06-10 12:41:00,540 Forest St, Atlanta,GA,30301 +218300,Apple Airpods Headphones,1,150.0,2019-06-30 21:21:00,941 11th St, Dallas,TX,75001 +218301,Lightning Charging Cable,1,14.95,2019-06-02 08:43:00,129 9th St, New York City,NY,10001 +218302,Lightning Charging Cable,1,14.95,2019-06-04 13:15:00,664 Jefferson St, Los Angeles,CA,90001 +218303,27in FHD Monitor,1,149.99,2019-06-07 20:09:00,39 Jefferson St, New York City,NY,10001 +218304,Wired Headphones,1,11.99,2019-06-07 13:23:00,623 Washington St, Seattle,WA,98101 +218305,AA Batteries (4-pack),1,3.84,2019-06-10 21:42:00,959 Main St, San Francisco,CA,94016 +218306,AAA Batteries (4-pack),1,2.99,2019-06-06 18:48:00,30 River St, San Francisco,CA,94016 +218307,Macbook Pro Laptop,1,1700.0,2019-06-27 07:19:00,688 Willow St, Portland,OR,97035 +218308,AA Batteries (4-pack),1,3.84,2019-06-17 16:02:00,423 Jackson St, Seattle,WA,98101 +218309,Lightning Charging Cable,1,14.95,2019-06-18 21:52:00,114 Pine St, Portland,OR,97035 +218310,Lightning Charging Cable,1,14.95,2019-06-03 11:57:00,214 2nd St, San Francisco,CA,94016 +218311,27in FHD Monitor,1,149.99,2019-06-16 18:56:00,881 Dogwood St, Atlanta,GA,30301 +218312,Wired Headphones,1,11.99,2019-06-27 17:50:00,609 Center St, Seattle,WA,98101 +218313,AAA Batteries (4-pack),1,2.99,2019-06-10 11:47:00,972 Cherry St, San Francisco,CA,94016 +218314,AA Batteries (4-pack),1,3.84,2019-06-01 13:26:00,371 Chestnut St, Boston,MA,02215 +218315,USB-C Charging Cable,1,11.95,2019-06-06 00:49:00,112 North St, Austin,TX,73301 +218316,Wired Headphones,2,11.99,2019-06-12 14:34:00,811 10th St, New York City,NY,10001 +218317,Lightning Charging Cable,1,14.95,2019-06-10 21:56:00,885 14th St, San Francisco,CA,94016 +218318,27in 4K Gaming Monitor,1,389.99,2019-06-25 18:23:00,236 Lincoln St, Los Angeles,CA,90001 +218319,USB-C Charging Cable,1,11.95,2019-06-15 17:11:00,472 Church St, New York City,NY,10001 +218320,AAA Batteries (4-pack),1,2.99,2019-06-23 17:44:00,567 Ridge St, Los Angeles,CA,90001 +218321,27in FHD Monitor,1,149.99,2019-06-03 16:18:00,237 Lake St, Portland,ME,04101 +218322,Bose SoundSport Headphones,1,99.99,2019-06-02 23:27:00,825 West St, New York City,NY,10001 +218323,AA Batteries (4-pack),2,3.84,2019-06-13 12:32:00,705 Center St, Los Angeles,CA,90001 +218324,Vareebadd Phone,1,400.0,2019-06-09 21:40:00,540 Adams St, Boston,MA,02215 +218324,USB-C Charging Cable,1,11.95,2019-06-09 21:40:00,540 Adams St, Boston,MA,02215 +218325,Lightning Charging Cable,1,14.95,2019-06-20 00:18:00,661 Main St, San Francisco,CA,94016 +218326,USB-C Charging Cable,1,11.95,2019-06-02 21:47:00,451 Cedar St, San Francisco,CA,94016 +218327,AAA Batteries (4-pack),1,2.99,2019-06-02 23:10:00,377 River St, Los Angeles,CA,90001 +218328,Wired Headphones,1,11.99,2019-06-10 12:36:00,378 North St, Portland,OR,97035 +218329,AA Batteries (4-pack),1,3.84,2019-06-24 14:07:00,464 Lake St, San Francisco,CA,94016 +218330,Apple Airpods Headphones,1,150.0,2019-06-12 20:17:00,1 Adams St, Los Angeles,CA,90001 +218331,Lightning Charging Cable,1,14.95,2019-06-21 09:47:00,722 Walnut St, San Francisco,CA,94016 +218332,Lightning Charging Cable,1,14.95,2019-06-12 13:17:00,812 13th St, Los Angeles,CA,90001 +218333,USB-C Charging Cable,1,11.95,2019-06-18 08:57:00,512 Lincoln St, Dallas,TX,75001 +218334,AA Batteries (4-pack),1,3.84,2019-06-12 12:44:00,545 13th St, Austin,TX,73301 +218335,Bose SoundSport Headphones,1,99.99,2019-06-05 17:43:00,729 Cherry St, Seattle,WA,98101 +218336,AAA Batteries (4-pack),4,2.99,2019-06-24 15:14:00,775 Spruce St, Boston,MA,02215 +218337,AAA Batteries (4-pack),2,2.99,2019-06-02 18:09:00,598 Lakeview St, Portland,OR,97035 +218338,USB-C Charging Cable,1,11.95,2019-06-06 01:48:00,9 Main St, Dallas,TX,75001 +218339,AA Batteries (4-pack),1,3.84,2019-06-20 11:59:00,765 Walnut St, San Francisco,CA,94016 +218340,Lightning Charging Cable,1,14.95,2019-06-09 00:54:00,720 Center St, Seattle,WA,98101 +218341,Wired Headphones,1,11.99,2019-06-16 00:12:00,450 Elm St, San Francisco,CA,94016 +218342,AA Batteries (4-pack),1,3.84,2019-06-01 15:05:00,231 Wilson St, Los Angeles,CA,90001 +218343,Lightning Charging Cable,1,14.95,2019-06-28 22:30:00,206 5th St, Boston,MA,02215 +218344,Lightning Charging Cable,2,14.95,2019-06-12 16:53:00,560 Dogwood St, San Francisco,CA,94016 +218345,Apple Airpods Headphones,1,150.0,2019-06-21 08:34:00,382 12th St, Los Angeles,CA,90001 +218346,Macbook Pro Laptop,1,1700.0,2019-06-12 08:38:00,560 13th St, New York City,NY,10001 +218347,AAA Batteries (4-pack),2,2.99,2019-06-06 19:33:00,319 Center St, Portland,ME,04101 +218348,USB-C Charging Cable,1,11.95,2019-06-13 12:02:00,859 Spruce St, San Francisco,CA,94016 +218349,Wired Headphones,1,11.99,2019-06-26 11:17:00,442 Cedar St, Dallas,TX,75001 +218350,Wired Headphones,2,11.99,2019-06-10 12:09:00,177 10th St, Austin,TX,73301 +218351,Vareebadd Phone,1,400.0,2019-06-20 21:40:00,887 9th St, Atlanta,GA,30301 +218352,USB-C Charging Cable,1,11.95,2019-06-24 16:14:00,360 Jefferson St, Seattle,WA,98101 +218353,AAA Batteries (4-pack),1,2.99,2019-06-16 22:01:00,62 Adams St, San Francisco,CA,94016 +218354,USB-C Charging Cable,1,11.95,2019-06-10 23:06:00,214 Lakeview St, San Francisco,CA,94016 +218355,Macbook Pro Laptop,1,1700.0,2019-06-29 13:20:00,259 Lake St, Boston,MA,02215 +218356,Apple Airpods Headphones,1,150.0,2019-06-24 09:28:00,257 11th St, New York City,NY,10001 +218357,34in Ultrawide Monitor,1,379.99,2019-06-03 12:37:00,81 Johnson St, Seattle,WA,98101 +218358,AA Batteries (4-pack),1,3.84,2019-06-18 12:46:00,491 Wilson St, Los Angeles,CA,90001 +218359,Google Phone,1,600.0,2019-06-12 22:50:00,36 River St, New York City,NY,10001 +218360,AA Batteries (4-pack),1,3.84,2019-06-27 14:43:00,449 8th St, Los Angeles,CA,90001 +218361,AA Batteries (4-pack),1,3.84,2019-06-06 13:09:00,246 Washington St, Los Angeles,CA,90001 +218362,Lightning Charging Cable,1,14.95,2019-06-15 11:49:00,350 5th St, Atlanta,GA,30301 +218363,USB-C Charging Cable,1,11.95,2019-06-13 22:37:00,357 Pine St, Los Angeles,CA,90001 +218364,Wired Headphones,1,11.99,2019-06-07 06:16:00,74 Pine St, San Francisco,CA,94016 +218365,AAA Batteries (4-pack),1,2.99,2019-06-28 02:15:00,530 2nd St, Boston,MA,02215 +218366,USB-C Charging Cable,1,11.95,2019-06-18 00:13:00,943 Chestnut St, San Francisco,CA,94016 +218367,USB-C Charging Cable,1,11.95,2019-06-11 14:35:00,443 North St, Atlanta,GA,30301 +218368,USB-C Charging Cable,1,11.95,2019-06-04 18:45:00,550 Lincoln St, Los Angeles,CA,90001 +218369,ThinkPad Laptop,1,999.99,2019-06-09 13:28:00,882 Chestnut St, San Francisco,CA,94016 +218370,Apple Airpods Headphones,1,150.0,2019-06-15 00:49:00,409 Jackson St, Seattle,WA,98101 +218371,34in Ultrawide Monitor,1,379.99,2019-06-18 10:48:00,226 Church St, Austin,TX,73301 +218372,USB-C Charging Cable,1,11.95,2019-06-20 15:17:00,456 7th St, Dallas,TX,75001 +218373,27in FHD Monitor,1,149.99,2019-06-15 20:28:00,857 Jackson St, Dallas,TX,75001 +218374,27in 4K Gaming Monitor,1,389.99,2019-06-08 14:43:00,793 Dogwood St, Boston,MA,02215 +218375,Apple Airpods Headphones,1,150.0,2019-06-03 12:04:00,541 6th St, Los Angeles,CA,90001 +218376,AAA Batteries (4-pack),1,2.99,2019-06-23 21:43:00,106 Highland St, New York City,NY,10001 +218377,Macbook Pro Laptop,1,1700.0,2019-06-15 20:26:00,676 Willow St, Boston,MA,02215 +218378,ThinkPad Laptop,1,999.99,2019-06-28 21:34:00,942 West St, New York City,NY,10001 +218379,Wired Headphones,1,11.99,2019-06-09 18:30:00,714 Chestnut St, Boston,MA,02215 +218380,AA Batteries (4-pack),2,3.84,2019-06-04 19:06:00,4 7th St, Portland,ME,04101 +218381,USB-C Charging Cable,1,11.95,2019-06-15 08:27:00,600 Center St, San Francisco,CA,94016 +218382,20in Monitor,1,109.99,2019-06-15 15:49:00,595 7th St, Dallas,TX,75001 +218383,34in Ultrawide Monitor,1,379.99,2019-06-17 19:51:00,769 Hickory St, Los Angeles,CA,90001 +218383,Lightning Charging Cable,1,14.95,2019-06-17 19:51:00,769 Hickory St, Los Angeles,CA,90001 +218384,USB-C Charging Cable,1,11.95,2019-06-16 11:58:00,956 7th St, San Francisco,CA,94016 +218385,AA Batteries (4-pack),1,3.84,2019-06-10 17:34:00,934 13th St, Atlanta,GA,30301 +218386,AAA Batteries (4-pack),1,2.99,2019-06-15 17:11:00,902 Wilson St, Atlanta,GA,30301 +218387,Wired Headphones,1,11.99,2019-06-15 13:45:00,152 4th St, Atlanta,GA,30301 +218388,34in Ultrawide Monitor,1,379.99,2019-06-15 20:41:00,507 Lake St, San Francisco,CA,94016 +218389,27in FHD Monitor,1,149.99,2019-06-11 10:23:00,473 Adams St, New York City,NY,10001 +218390,Lightning Charging Cable,1,14.95,2019-06-11 14:13:00,248 Church St, San Francisco,CA,94016 +218391,AAA Batteries (4-pack),1,2.99,2019-06-26 09:26:00,330 Church St, Seattle,WA,98101 +218392,Wired Headphones,1,11.99,2019-06-29 17:00:00,415 4th St, San Francisco,CA,94016 +218393,Bose SoundSport Headphones,1,99.99,2019-06-10 06:44:00,418 Hill St, San Francisco,CA,94016 +218394,Flatscreen TV,1,300.0,2019-06-06 18:16:00,677 Forest St, Dallas,TX,75001 +218395,20in Monitor,1,109.99,2019-06-15 14:10:00,676 Washington St, San Francisco,CA,94016 +218396,Apple Airpods Headphones,1,150.0,2019-06-03 18:55:00,442 10th St, Austin,TX,73301 +218397,Wired Headphones,1,11.99,2019-06-16 01:03:00,653 Hill St, New York City,NY,10001 +218398,Apple Airpods Headphones,1,150.0,2019-06-14 13:17:00,325 West St, Boston,MA,02215 +218399,Macbook Pro Laptop,1,1700.0,2019-06-04 19:37:00,694 12th St, Atlanta,GA,30301 +218400,Lightning Charging Cable,1,14.95,2019-06-21 12:50:00,111 Washington St, Portland,OR,97035 +218401,Lightning Charging Cable,1,14.95,2019-06-21 09:18:00,623 West St, San Francisco,CA,94016 +218402,ThinkPad Laptop,1,999.99,2019-06-16 20:51:00,913 Johnson St, Atlanta,GA,30301 +218403,AAA Batteries (4-pack),2,2.99,2019-06-14 11:01:00,635 West St, New York City,NY,10001 +218404,AA Batteries (4-pack),1,3.84,2019-06-27 15:55:00,928 Washington St, San Francisco,CA,94016 +218405,Wired Headphones,1,11.99,2019-06-13 08:08:00,830 Maple St, San Francisco,CA,94016 +218406,AAA Batteries (4-pack),2,2.99,2019-06-18 12:01:00,688 7th St, Seattle,WA,98101 +218407,ThinkPad Laptop,1,999.99,2019-06-09 13:21:00,921 Center St, New York City,NY,10001 +218408,Apple Airpods Headphones,1,150.0,2019-06-01 12:40:00,79 6th St, Portland,ME,04101 +218409,Apple Airpods Headphones,1,150.0,2019-06-27 09:09:00,837 West St, New York City,NY,10001 +218410,34in Ultrawide Monitor,1,379.99,2019-06-26 07:38:00,484 Elm St, Los Angeles,CA,90001 +218411,Google Phone,1,600.0,2019-06-06 12:06:00,182 Maple St, Atlanta,GA,30301 +218412,27in FHD Monitor,1,149.99,2019-06-14 21:16:00,727 Spruce St, Los Angeles,CA,90001 +218413,Apple Airpods Headphones,1,150.0,2019-06-13 19:50:00,495 Lake St, Boston,MA,02215 +218414,AA Batteries (4-pack),1,3.84,2019-06-21 20:41:00,969 Adams St, San Francisco,CA,94016 +218415,Apple Airpods Headphones,1,150.0,2019-06-06 07:12:00,71 Maple St, Los Angeles,CA,90001 +218416,AAA Batteries (4-pack),3,2.99,2019-06-25 21:55:00,109 Jackson St, San Francisco,CA,94016 +218417,AA Batteries (4-pack),1,3.84,2019-06-24 21:46:00,776 6th St, San Francisco,CA,94016 +218418,AA Batteries (4-pack),1,3.84,2019-06-24 14:47:00,575 Main St, Portland,ME,04101 +218419,Bose SoundSport Headphones,1,99.99,2019-06-26 22:20:00,217 Park St, San Francisco,CA,94016 +218420,Lightning Charging Cable,1,14.95,2019-06-22 16:25:00,543 North St, Boston,MA,02215 +218421,AAA Batteries (4-pack),1,2.99,2019-06-22 08:30:00,601 7th St, Atlanta,GA,30301 +218422,Wired Headphones,1,11.99,2019-06-19 22:29:00,128 Jackson St, San Francisco,CA,94016 +218423,USB-C Charging Cable,1,11.95,2019-06-18 18:46:00,348 13th St, Los Angeles,CA,90001 +218424,20in Monitor,1,109.99,2019-06-15 20:30:00,194 6th St, Dallas,TX,75001 +218425,27in FHD Monitor,1,149.99,2019-06-20 07:51:00,9 Forest St, Seattle,WA,98101 +218426,Bose SoundSport Headphones,1,99.99,2019-06-16 09:47:00,281 Adams St, New York City,NY,10001 +218427,Lightning Charging Cable,1,14.95,2019-06-02 05:36:00,453 River St, Los Angeles,CA,90001 +218428,AA Batteries (4-pack),1,3.84,2019-06-07 16:50:00,156 Hill St, Dallas,TX,75001 +218429,LG Washing Machine,1,600.0,2019-06-17 10:11:00,759 10th St, San Francisco,CA,94016 +218430,USB-C Charging Cable,1,11.95,2019-06-03 11:04:00,975 North St, San Francisco,CA,94016 +218431,AAA Batteries (4-pack),1,2.99,2019-06-14 17:54:00,102 Chestnut St, Dallas,TX,75001 +218432,Wired Headphones,2,11.99,2019-06-06 16:42:00,781 10th St, Portland,OR,97035 +218433,USB-C Charging Cable,2,11.95,2019-06-16 01:51:00,558 Chestnut St, Los Angeles,CA,90001 +218434,Bose SoundSport Headphones,1,99.99,2019-06-26 20:53:00,429 Cherry St, Boston,MA,02215 +218435,34in Ultrawide Monitor,1,379.99,2019-06-26 13:41:00,382 North St, Dallas,TX,75001 +218436,Apple Airpods Headphones,1,150.0,2019-06-16 17:47:00,203 Center St, Los Angeles,CA,90001 +218437,Wired Headphones,1,11.99,2019-06-18 19:15:00,32 Church St, Dallas,TX,75001 +218438,AAA Batteries (4-pack),1,2.99,2019-06-09 18:20:00,320 Adams St, Los Angeles,CA,90001 +218439,Macbook Pro Laptop,1,1700.0,2019-06-03 23:55:00,627 Jackson St, Los Angeles,CA,90001 +218439,27in 4K Gaming Monitor,1,389.99,2019-06-03 23:55:00,627 Jackson St, Los Angeles,CA,90001 +218440,Lightning Charging Cable,1,14.95,2019-06-15 20:14:00,924 Johnson St, San Francisco,CA,94016 +218441,Lightning Charging Cable,1,14.95,2019-06-27 13:05:00,263 Center St, Dallas,TX,75001 +218442,Apple Airpods Headphones,1,150.0,2019-06-16 00:06:00,347 Adams St, Seattle,WA,98101 +218443,Lightning Charging Cable,1,14.95,2019-06-24 17:01:00,498 Lincoln St, Los Angeles,CA,90001 +218444,AAA Batteries (4-pack),2,2.99,2019-06-25 11:15:00,471 Lakeview St, Boston,MA,02215 +218445,Apple Airpods Headphones,1,150.0,2019-06-27 18:23:00,556 Ridge St, Atlanta,GA,30301 +218446,Apple Airpods Headphones,1,150.0,2019-06-14 11:28:00,594 Willow St, Boston,MA,02215 +218447,Lightning Charging Cable,1,14.95,2019-06-09 20:42:00,124 Johnson St, Boston,MA,02215 +218448,AA Batteries (4-pack),1,3.84,2019-06-30 05:33:00,536 Forest St, San Francisco,CA,94016 +218449,AAA Batteries (4-pack),2,2.99,2019-06-01 11:36:00,745 Adams St, New York City,NY,10001 +218450,AA Batteries (4-pack),1,3.84,2019-06-06 08:08:00,484 Ridge St, Atlanta,GA,30301 +218451,27in 4K Gaming Monitor,1,389.99,2019-06-03 10:26:00,159 Sunset St, San Francisco,CA,94016 +218452,Macbook Pro Laptop,1,1700.0,2019-06-24 20:15:00,876 Cedar St, New York City,NY,10001 +218453,USB-C Charging Cable,1,11.95,2019-06-07 12:24:00,196 Willow St, Portland,OR,97035 +218454,Lightning Charging Cable,1,14.95,2019-06-17 11:20:00,641 Lakeview St, New York City,NY,10001 +218455,AAA Batteries (4-pack),1,2.99,2019-06-04 16:51:00,460 Dogwood St, Los Angeles,CA,90001 +218456,34in Ultrawide Monitor,1,379.99,2019-06-28 22:33:00,1 Maple St, New York City,NY,10001 +218457,27in 4K Gaming Monitor,1,389.99,2019-07-01 03:09:00,567 Forest St, San Francisco,CA,94016 +218458,AA Batteries (4-pack),2,3.84,2019-06-23 10:57:00,323 1st St, San Francisco,CA,94016 +218459,USB-C Charging Cable,1,11.95,2019-06-23 17:54:00,298 Park St, San Francisco,CA,94016 +218460,AAA Batteries (4-pack),1,2.99,2019-06-15 12:39:00,402 Church St, San Francisco,CA,94016 +218461,USB-C Charging Cable,1,11.95,2019-06-04 08:37:00,3 Washington St, Los Angeles,CA,90001 +218462,USB-C Charging Cable,2,11.95,2019-06-04 17:04:00,442 Dogwood St, Dallas,TX,75001 +218463,Apple Airpods Headphones,1,150.0,2019-06-21 22:06:00,279 Willow St, Los Angeles,CA,90001 +218464,Flatscreen TV,1,300.0,2019-06-09 12:08:00,495 Hickory St, Portland,OR,97035 +218465,Bose SoundSport Headphones,1,99.99,2019-06-05 08:47:00,966 Adams St, Los Angeles,CA,90001 +218466,Apple Airpods Headphones,1,150.0,2019-06-04 09:51:00,295 10th St, Los Angeles,CA,90001 +218467,Bose SoundSport Headphones,2,99.99,2019-06-06 20:49:00,799 4th St, San Francisco,CA,94016 +218468,Bose SoundSport Headphones,1,99.99,2019-06-03 11:15:00,203 Lake St, San Francisco,CA,94016 +218469,USB-C Charging Cable,1,11.95,2019-06-02 19:48:00,52 Washington St, New York City,NY,10001 +218470,Google Phone,1,600.0,2019-06-21 15:51:00,90 Cherry St, Boston,MA,02215 +218471,Lightning Charging Cable,1,14.95,2019-06-28 19:38:00,173 Pine St, Los Angeles,CA,90001 +218472,iPhone,1,700.0,2019-06-13 22:26:00,9 Johnson St, San Francisco,CA,94016 +218473,USB-C Charging Cable,1,11.95,2019-06-18 08:38:00,672 2nd St, San Francisco,CA,94016 +218474,USB-C Charging Cable,1,11.95,2019-06-20 11:59:00,27 Washington St, New York City,NY,10001 +218475,AAA Batteries (4-pack),1,2.99,2019-06-10 19:24:00,764 5th St, Los Angeles,CA,90001 +218476,AAA Batteries (4-pack),1,2.99,2019-06-30 22:32:00,771 North St, Portland,OR,97035 +218477,AAA Batteries (4-pack),1,2.99,2019-06-06 13:33:00,393 Church St, Seattle,WA,98101 +218478,AAA Batteries (4-pack),2,2.99,2019-06-18 23:22:00,296 Cherry St, Los Angeles,CA,90001 +218479,20in Monitor,1,109.99,2019-06-25 06:30:00,207 Park St, Los Angeles,CA,90001 +218480,Apple Airpods Headphones,1,150.0,2019-06-14 12:48:00,823 Pine St, Los Angeles,CA,90001 +218481,Bose SoundSport Headphones,1,99.99,2019-06-15 16:19:00,84 10th St, Austin,TX,73301 +218482,USB-C Charging Cable,2,11.95,2019-07-01 00:48:00,502 Wilson St, Austin,TX,73301 +218483,Wired Headphones,1,11.99,2019-06-07 11:28:00,33 Jackson St, Boston,MA,02215 +218484,Lightning Charging Cable,1,14.95,2019-06-06 14:26:00,612 Jefferson St, Los Angeles,CA,90001 +218485,AAA Batteries (4-pack),1,2.99,2019-06-07 21:13:00,858 7th St, Boston,MA,02215 +218486,Apple Airpods Headphones,1,150.0,2019-06-27 23:22:00,814 Dogwood St, San Francisco,CA,94016 +218487,Bose SoundSport Headphones,1,99.99,2019-06-03 20:46:00,599 6th St, Austin,TX,73301 +218488,27in FHD Monitor,1,149.99,2019-06-27 20:30:00,919 North St, Boston,MA,02215 +218489,Bose SoundSport Headphones,2,99.99,2019-06-02 19:45:00,289 Wilson St, New York City,NY,10001 +218490,Bose SoundSport Headphones,1,99.99,2019-06-08 18:35:00,170 Park St, Austin,TX,73301 +218491,34in Ultrawide Monitor,1,379.99,2019-06-14 10:06:00,702 2nd St, Austin,TX,73301 +218492,Wired Headphones,1,11.99,2019-06-29 16:55:00,357 Cherry St, San Francisco,CA,94016 +218493,Bose SoundSport Headphones,1,99.99,2019-06-11 14:33:00,432 Elm St, New York City,NY,10001 +218494,Lightning Charging Cable,2,14.95,2019-06-26 13:05:00,702 12th St, Boston,MA,02215 +218495,ThinkPad Laptop,1,999.99,2019-06-14 09:06:00,378 Center St, Los Angeles,CA,90001 +218496,USB-C Charging Cable,1,11.95,2019-06-19 15:26:00,612 2nd St, Los Angeles,CA,90001 +218497,Lightning Charging Cable,1,14.95,2019-06-24 06:58:00,522 Johnson St, Dallas,TX,75001 +218498,Bose SoundSport Headphones,1,99.99,2019-06-24 08:07:00,299 1st St, Atlanta,GA,30301 +218499,AA Batteries (4-pack),3,3.84,2019-06-01 18:23:00,246 4th St, Boston,MA,02215 +218500,AA Batteries (4-pack),1,3.84,2019-06-10 09:52:00,51 4th St, San Francisco,CA,94016 +218501,Lightning Charging Cable,1,14.95,2019-06-19 20:09:00,309 Center St, Boston,MA,02215 +218502,27in 4K Gaming Monitor,1,389.99,2019-06-30 20:47:00,930 10th St, Portland,OR,97035 +218503,USB-C Charging Cable,1,11.95,2019-06-23 13:54:00,773 14th St, Los Angeles,CA,90001 +218504,Flatscreen TV,1,300.0,2019-06-01 16:20:00,883 13th St, San Francisco,CA,94016 +218505,USB-C Charging Cable,1,11.95,2019-06-29 14:41:00,690 Cedar St, San Francisco,CA,94016 +218506,AA Batteries (4-pack),2,3.84,2019-06-07 14:20:00,74 Park St, Dallas,TX,75001 +218507,Macbook Pro Laptop,1,1700.0,2019-06-19 10:15:00,557 Washington St, Los Angeles,CA,90001 +218508,iPhone,1,700.0,2019-06-03 13:02:00,842 Park St, Boston,MA,02215 +218508,Lightning Charging Cable,1,14.95,2019-06-03 13:02:00,842 Park St, Boston,MA,02215 +218509,AA Batteries (4-pack),1,3.84,2019-06-03 16:22:00,201 Highland St, San Francisco,CA,94016 +218510,Wired Headphones,1,11.99,2019-06-23 15:41:00,380 Johnson St, Portland,OR,97035 +218511,34in Ultrawide Monitor,1,379.99,2019-06-06 19:43:00,294 Adams St, Seattle,WA,98101 +218512,27in FHD Monitor,1,149.99,2019-06-22 17:22:00,488 9th St, San Francisco,CA,94016 +218513,Wired Headphones,2,11.99,2019-06-12 19:16:00,334 Lake St, San Francisco,CA,94016 +218514,Wired Headphones,1,11.99,2019-06-27 08:24:00,412 Willow St, Atlanta,GA,30301 +218515,Wired Headphones,1,11.99,2019-06-21 21:54:00,585 Dogwood St, Dallas,TX,75001 +218516,AAA Batteries (4-pack),1,2.99,2019-06-07 00:42:00,777 Meadow St, Seattle,WA,98101 +218517,Bose SoundSport Headphones,1,99.99,2019-06-27 20:32:00,226 Hill St, San Francisco,CA,94016 +218518,Bose SoundSport Headphones,1,99.99,2019-06-13 22:57:00,274 Hickory St, Boston,MA,02215 +218519,Flatscreen TV,1,300.0,2019-06-23 22:24:00,245 Lake St, Portland,ME,04101 +218520,USB-C Charging Cable,1,11.95,2019-06-22 22:24:00,395 Madison St, Seattle,WA,98101 +218521,Wired Headphones,1,11.99,2019-06-12 15:47:00,93 Center St, Boston,MA,02215 +218522,USB-C Charging Cable,1,11.95,2019-06-29 12:32:00,118 10th St, Boston,MA,02215 +218523,Wired Headphones,1,11.99,2019-06-22 00:50:00,674 Forest St, Seattle,WA,98101 +218524,AA Batteries (4-pack),1,3.84,2019-06-07 22:19:00,508 Lake St, New York City,NY,10001 +218525,Wired Headphones,2,11.99,2019-06-12 16:54:00,585 Sunset St, Seattle,WA,98101 +218526,Lightning Charging Cable,2,14.95,2019-06-10 17:46:00,950 Lincoln St, Boston,MA,02215 +218527,iPhone,1,700.0,2019-06-01 11:23:00,334 Forest St, San Francisco,CA,94016 +218527,Lightning Charging Cable,1,14.95,2019-06-01 11:23:00,334 Forest St, San Francisco,CA,94016 +218528,USB-C Charging Cable,1,11.95,2019-06-11 22:37:00,601 Pine St, Los Angeles,CA,90001 +218529,Lightning Charging Cable,1,14.95,2019-06-06 20:23:00,82 11th St, Los Angeles,CA,90001 +218530,Vareebadd Phone,1,400.0,2019-06-12 00:22:00,199 Chestnut St, New York City,NY,10001 +218530,USB-C Charging Cable,1,11.95,2019-06-12 00:22:00,199 Chestnut St, New York City,NY,10001 +218530,Wired Headphones,1,11.99,2019-06-12 00:22:00,199 Chestnut St, New York City,NY,10001 +218531,Apple Airpods Headphones,1,150.0,2019-06-13 21:25:00,256 Pine St, Atlanta,GA,30301 +218532,Bose SoundSport Headphones,1,99.99,2019-06-26 18:39:00,330 South St, Austin,TX,73301 +218533,27in 4K Gaming Monitor,1,389.99,2019-06-06 20:56:00,495 Maple St, Dallas,TX,75001 +218534,AAA Batteries (4-pack),1,2.99,2019-06-11 21:44:00,541 Spruce St, San Francisco,CA,94016 +218535,Wired Headphones,1,11.99,2019-06-22 18:59:00,699 13th St, Seattle,WA,98101 +218536,20in Monitor,1,109.99,2019-06-26 16:15:00,772 Pine St, Portland,OR,97035 +218537,Wired Headphones,1,11.99,2019-06-08 17:00:00,989 Willow St, Boston,MA,02215 +218538,Lightning Charging Cable,1,14.95,2019-06-15 14:38:00,253 South St, New York City,NY,10001 +218539,AA Batteries (4-pack),1,3.84,2019-06-15 15:34:00,448 Wilson St, San Francisco,CA,94016 +218540,Macbook Pro Laptop,1,1700.0,2019-06-18 09:21:00,765 10th St, Boston,MA,02215 +218541,Lightning Charging Cable,1,14.95,2019-06-28 23:34:00,650 Adams St, Portland,OR,97035 +218542,AAA Batteries (4-pack),2,2.99,2019-06-01 08:57:00,193 Elm St, Los Angeles,CA,90001 +218543,Lightning Charging Cable,1,14.95,2019-06-02 21:49:00,298 Hickory St, San Francisco,CA,94016 +218544,Apple Airpods Headphones,1,150.0,2019-06-19 14:50:00,718 Madison St, Boston,MA,02215 +218545,Google Phone,1,600.0,2019-06-15 20:49:00,720 Jefferson St, New York City,NY,10001 +218546,iPhone,1,700.0,2019-06-06 14:44:00,642 Maple St, Boston,MA,02215 +218547,34in Ultrawide Monitor,1,379.99,2019-06-21 14:24:00,491 Washington St, Seattle,WA,98101 +218548,AA Batteries (4-pack),1,3.84,2019-06-04 21:21:00,519 Maple St, Boston,MA,02215 +218549,Wired Headphones,1,11.99,2019-06-04 18:15:00,329 Jackson St, Austin,TX,73301 +218550,USB-C Charging Cable,2,11.95,2019-06-24 10:40:00,824 7th St, Austin,TX,73301 +218551,USB-C Charging Cable,1,11.95,2019-06-28 14:10:00,245 Dogwood St, Austin,TX,73301 +218552,Vareebadd Phone,1,400.0,2019-06-19 00:19:00,385 Lincoln St, Los Angeles,CA,90001 +218553,Lightning Charging Cable,1,14.95,2019-06-26 16:23:00,175 Highland St, Atlanta,GA,30301 +218554,Lightning Charging Cable,1,14.95,2019-06-01 12:06:00,759 13th St, San Francisco,CA,94016 +218555,Wired Headphones,1,11.99,2019-06-05 09:46:00,265 Sunset St, San Francisco,CA,94016 +218556,Wired Headphones,1,11.99,2019-06-22 20:57:00,596 1st St, Dallas,TX,75001 +218557,Apple Airpods Headphones,1,150.0,2019-06-12 13:12:00,592 Pine St, San Francisco,CA,94016 +218558,27in FHD Monitor,1,149.99,2019-06-14 14:15:00,915 Forest St, Dallas,TX,75001 +218559,20in Monitor,1,109.99,2019-06-15 20:38:00,522 1st St, Los Angeles,CA,90001 +218560,Vareebadd Phone,1,400.0,2019-06-27 14:38:00,891 Lincoln St, Austin,TX,73301 +218560,USB-C Charging Cable,1,11.95,2019-06-27 14:38:00,891 Lincoln St, Austin,TX,73301 +218561,Lightning Charging Cable,1,14.95,2019-06-12 13:01:00,753 5th St, San Francisco,CA,94016 +218562,Wired Headphones,1,11.99,2019-06-22 15:00:00,470 Johnson St, New York City,NY,10001 +218563,Lightning Charging Cable,1,14.95,2019-06-09 21:08:00,221 Pine St, Dallas,TX,75001 +218564,AA Batteries (4-pack),1,3.84,2019-06-14 14:44:00,909 Walnut St, Seattle,WA,98101 +218565,Wired Headphones,1,11.99,2019-06-12 15:53:00,4 South St, Austin,TX,73301 +218566,Lightning Charging Cable,1,14.95,2019-06-08 17:19:00,34 North St, Dallas,TX,75001 +218567,Bose SoundSport Headphones,1,99.99,2019-06-11 20:02:00,688 Highland St, Seattle,WA,98101 +218568,Macbook Pro Laptop,1,1700.0,2019-06-20 10:45:00,923 Jackson St, San Francisco,CA,94016 +218569,Apple Airpods Headphones,1,150.0,2019-06-07 20:09:00,91 Willow St, Los Angeles,CA,90001 +218570,Apple Airpods Headphones,1,150.0,2019-06-25 04:12:00,32 13th St, New York City,NY,10001 +218571,AAA Batteries (4-pack),2,2.99,2019-06-13 20:26:00,601 Chestnut St, Los Angeles,CA,90001 +218572,Macbook Pro Laptop,1,1700.0,2019-06-25 11:02:00,66 13th St, Boston,MA,02215 +218573,iPhone,1,700.0,2019-06-05 12:42:00,729 Adams St, Atlanta,GA,30301 +218574,Lightning Charging Cable,1,14.95,2019-06-20 19:35:00,767 Madison St, Boston,MA,02215 +218575,27in FHD Monitor,1,149.99,2019-06-12 21:25:00,11 Pine St, Seattle,WA,98101 +218576,Bose SoundSport Headphones,1,99.99,2019-06-29 13:53:00,283 Center St, Los Angeles,CA,90001 +218577,Macbook Pro Laptop,1,1700.0,2019-06-23 19:23:00,556 9th St, Dallas,TX,75001 +218578,USB-C Charging Cable,1,11.95,2019-06-04 09:56:00,540 10th St, Austin,TX,73301 +218579,iPhone,1,700.0,2019-06-16 14:15:00,188 Main St, Austin,TX,73301 +218579,Lightning Charging Cable,1,14.95,2019-06-16 14:15:00,188 Main St, Austin,TX,73301 +218580,USB-C Charging Cable,1,11.95,2019-06-10 21:21:00,999 Jackson St, Boston,MA,02215 +218581,Apple Airpods Headphones,1,150.0,2019-06-30 13:18:00,111 South St, Boston,MA,02215 +218582,20in Monitor,1,109.99,2019-06-06 22:18:00,945 Adams St, Portland,OR,97035 +218583,Apple Airpods Headphones,1,150.0,2019-06-03 14:51:00,998 Ridge St, Portland,OR,97035 +218584,Flatscreen TV,1,300.0,2019-06-16 22:59:00,806 Willow St, San Francisco,CA,94016 +218585,AA Batteries (4-pack),2,3.84,2019-06-11 15:37:00,273 Chestnut St, Los Angeles,CA,90001 +218586,AAA Batteries (4-pack),1,2.99,2019-06-04 23:22:00,577 4th St, Atlanta,GA,30301 +218587,Apple Airpods Headphones,1,150.0,2019-06-17 19:34:00,633 10th St, Los Angeles,CA,90001 +218588,AA Batteries (4-pack),2,3.84,2019-06-13 11:31:00,426 Maple St, Atlanta,GA,30301 +218589,Lightning Charging Cable,1,14.95,2019-06-09 17:48:00,200 Ridge St, Boston,MA,02215 +218590,AAA Batteries (4-pack),3,2.99,2019-06-02 16:11:00,10 Cedar St, Atlanta,GA,30301 +218591,27in 4K Gaming Monitor,1,389.99,2019-06-06 07:27:00,252 Lakeview St, Los Angeles,CA,90001 +218592,27in FHD Monitor,1,149.99,2019-06-26 00:08:00,499 Chestnut St, Boston,MA,02215 +218593,AA Batteries (4-pack),1,3.84,2019-06-26 07:03:00,538 7th St, San Francisco,CA,94016 +218594,Flatscreen TV,1,300.0,2019-06-30 09:49:00,828 Walnut St, Los Angeles,CA,90001 +218595,Google Phone,1,600.0,2019-06-11 17:32:00,911 Park St, Dallas,TX,75001 +218595,USB-C Charging Cable,2,11.95,2019-06-11 17:32:00,911 Park St, Dallas,TX,75001 +218596,27in 4K Gaming Monitor,1,389.99,2019-06-19 21:47:00,690 12th St, Seattle,WA,98101 +218597,34in Ultrawide Monitor,1,379.99,2019-06-11 13:59:00,752 Spruce St, Portland,OR,97035 +218598,iPhone,1,700.0,2019-06-26 12:36:00,198 Cherry St, San Francisco,CA,94016 +218599,Macbook Pro Laptop,1,1700.0,2019-06-30 09:17:00,917 Johnson St, Seattle,WA,98101 +218600,AAA Batteries (4-pack),1,2.99,2019-06-29 10:45:00,799 Spruce St, New York City,NY,10001 +218601,AA Batteries (4-pack),1,3.84,2019-06-27 23:33:00,595 Forest St, Austin,TX,73301 +218602,Wired Headphones,1,11.99,2019-06-24 15:01:00,474 Meadow St, Atlanta,GA,30301 +218603,AA Batteries (4-pack),1,3.84,2019-06-12 01:30:00,826 Main St, Atlanta,GA,30301 +218604,34in Ultrawide Monitor,1,379.99,2019-06-06 18:53:00,825 8th St, Los Angeles,CA,90001 +218605,Apple Airpods Headphones,1,150.0,2019-06-16 10:47:00,767 Maple St, New York City,NY,10001 +218606,AAA Batteries (4-pack),1,2.99,2019-06-10 19:00:00,217 Elm St, San Francisco,CA,94016 +218607,AA Batteries (4-pack),1,3.84,2019-06-07 09:19:00,546 Elm St, Los Angeles,CA,90001 +218608,Lightning Charging Cable,1,14.95,2019-06-10 09:37:00,563 Highland St, San Francisco,CA,94016 +218609,ThinkPad Laptop,1,999.99,2019-06-03 18:02:00,960 5th St, Los Angeles,CA,90001 +218610,Lightning Charging Cable,1,14.95,2019-06-28 13:36:00,867 Willow St, Los Angeles,CA,90001 +218611,iPhone,1,700.0,2019-06-10 21:38:00,1 Highland St, Boston,MA,02215 +218611,Wired Headphones,1,11.99,2019-06-10 21:38:00,1 Highland St, Boston,MA,02215 +218612,ThinkPad Laptop,1,999.99,2019-06-29 12:39:00,919 Pine St, San Francisco,CA,94016 +218613,Apple Airpods Headphones,1,150.0,2019-06-11 09:29:00,991 Johnson St, Austin,TX,73301 +218614,AA Batteries (4-pack),4,3.84,2019-06-30 11:48:00,308 Madison St, Los Angeles,CA,90001 +218615,Wired Headphones,1,11.99,2019-06-10 20:42:00,374 South St, Los Angeles,CA,90001 +218616,iPhone,1,700.0,2019-06-03 09:36:00,846 Church St, Los Angeles,CA,90001 +218616,Lightning Charging Cable,1,14.95,2019-06-03 09:36:00,846 Church St, Los Angeles,CA,90001 +218617,Apple Airpods Headphones,1,150.0,2019-06-26 11:11:00,545 11th St, Dallas,TX,75001 +218618,20in Monitor,1,109.99,2019-06-08 12:35:00,614 Johnson St, Dallas,TX,75001 +218619,34in Ultrawide Monitor,1,379.99,2019-06-14 10:42:00,467 1st St, San Francisco,CA,94016 +218620,Bose SoundSport Headphones,1,99.99,2019-06-20 13:07:00,501 South St, Boston,MA,02215 +218621,Lightning Charging Cable,1,14.95,2019-06-21 13:00:00,750 Spruce St, Seattle,WA,98101 +218622,Apple Airpods Headphones,1,150.0,2019-06-17 13:59:00,209 Jefferson St, Austin,TX,73301 +218623,Wired Headphones,1,11.99,2019-06-16 16:23:00,954 Adams St, New York City,NY,10001 +218624,ThinkPad Laptop,1,999.99,2019-06-28 20:43:00,655 8th St, Boston,MA,02215 +218625,Apple Airpods Headphones,1,150.0,2019-06-25 17:09:00,857 Jackson St, San Francisco,CA,94016 +218626,Lightning Charging Cable,1,14.95,2019-06-11 12:34:00,126 2nd St, New York City,NY,10001 +218627,20in Monitor,1,109.99,2019-06-15 19:42:00,209 Sunset St, Portland,OR,97035 +218628,ThinkPad Laptop,1,999.99,2019-06-02 20:35:00,717 Cedar St, San Francisco,CA,94016 +218629,Apple Airpods Headphones,1,150.0,2019-06-23 22:26:00,874 13th St, Los Angeles,CA,90001 +218630,USB-C Charging Cable,1,11.95,2019-06-04 21:00:00,236 Main St, New York City,NY,10001 +218631,34in Ultrawide Monitor,1,379.99,2019-06-21 18:22:00,131 West St, San Francisco,CA,94016 +218632,Bose SoundSport Headphones,1,99.99,2019-06-01 14:47:00,39 Cherry St, Dallas,TX,75001 +218633,AA Batteries (4-pack),1,3.84,2019-06-07 17:07:00,460 Highland St, Seattle,WA,98101 +218634,USB-C Charging Cable,1,11.95,2019-06-06 11:36:00,917 Pine St, San Francisco,CA,94016 +218635,AAA Batteries (4-pack),2,2.99,2019-06-06 18:39:00,236 Ridge St, Los Angeles,CA,90001 +218636,AA Batteries (4-pack),1,3.84,2019-06-30 20:56:00,909 Elm St, Los Angeles,CA,90001 +218637,Wired Headphones,1,11.99,2019-06-09 20:34:00,330 9th St, Boston,MA,02215 +218638,Bose SoundSport Headphones,1,99.99,2019-06-22 08:45:00,505 Johnson St, Austin,TX,73301 +218639,AAA Batteries (4-pack),2,2.99,2019-06-27 16:31:00,915 1st St, Dallas,TX,75001 +218640,ThinkPad Laptop,1,999.99,2019-06-25 18:35:00,274 Cherry St, Austin,TX,73301 +218640,Lightning Charging Cable,1,14.95,2019-06-25 18:35:00,274 Cherry St, Austin,TX,73301 +218641,AA Batteries (4-pack),1,3.84,2019-06-17 13:41:00,894 Church St, Portland,OR,97035 +218642,USB-C Charging Cable,1,11.95,2019-06-16 12:42:00,594 Center St, Los Angeles,CA,90001 +218643,Wired Headphones,1,11.99,2019-06-22 09:06:00,534 Ridge St, Los Angeles,CA,90001 +218644,Apple Airpods Headphones,1,150.0,2019-06-03 13:56:00,558 Lincoln St, Dallas,TX,75001 +218645,Apple Airpods Headphones,1,150.0,2019-06-19 16:42:00,14 Johnson St, Austin,TX,73301 +218646,AA Batteries (4-pack),1,3.84,2019-06-14 14:28:00,376 Walnut St, New York City,NY,10001 +218647,AA Batteries (4-pack),1,3.84,2019-06-03 17:23:00,994 1st St, Los Angeles,CA,90001 +218648,27in FHD Monitor,1,149.99,2019-06-24 05:51:00,622 Forest St, Portland,OR,97035 +218649,iPhone,1,700.0,2019-06-28 21:40:00,684 Chestnut St, Dallas,TX,75001 +218650,34in Ultrawide Monitor,1,379.99,2019-06-14 10:31:00,633 9th St, Los Angeles,CA,90001 +218651,Lightning Charging Cable,1,14.95,2019-06-29 17:40:00,674 West St, San Francisco,CA,94016 +218652,iPhone,1,700.0,2019-06-16 09:22:00,591 5th St, San Francisco,CA,94016 +218653,AA Batteries (4-pack),1,3.84,2019-06-06 16:41:00,919 North St, Boston,MA,02215 +218654,AA Batteries (4-pack),1,3.84,2019-06-29 05:29:00,260 Dogwood St, New York City,NY,10001 +218655,iPhone,1,700.0,2019-06-05 22:28:00,597 North St, Austin,TX,73301 +218656,Apple Airpods Headphones,1,150.0,2019-06-08 21:05:00,503 Wilson St, Austin,TX,73301 +218657,Apple Airpods Headphones,1,150.0,2019-06-18 14:42:00,178 Maple St, San Francisco,CA,94016 +218658,AAA Batteries (4-pack),1,2.99,2019-06-29 14:51:00,895 Church St, Los Angeles,CA,90001 +218659,iPhone,1,700.0,2019-06-19 09:51:00,793 Maple St, Portland,OR,97035 +218660,20in Monitor,1,109.99,2019-06-02 12:48:00,988 4th St, Boston,MA,02215 +218661,AAA Batteries (4-pack),1,2.99,2019-06-04 15:09:00,15 Sunset St, Los Angeles,CA,90001 +218662,AA Batteries (4-pack),1,3.84,2019-06-14 23:50:00,96 11th St, San Francisco,CA,94016 +218663,34in Ultrawide Monitor,1,379.99,2019-06-30 21:21:00,849 Adams St, Atlanta,GA,30301 +218664,AAA Batteries (4-pack),2,2.99,2019-06-06 00:23:00,654 Adams St, New York City,NY,10001 +218665,AAA Batteries (4-pack),1,2.99,2019-06-08 21:02:00,87 6th St, San Francisco,CA,94016 +218666,Macbook Pro Laptop,1,1700.0,2019-06-15 14:12:00,307 10th St, San Francisco,CA,94016 +218666,Apple Airpods Headphones,1,150.0,2019-06-15 14:12:00,307 10th St, San Francisco,CA,94016 +218667,ThinkPad Laptop,1,999.99,2019-06-19 09:02:00,795 Cherry St, Boston,MA,02215 +218668,27in 4K Gaming Monitor,1,389.99,2019-06-10 17:20:00,134 13th St, Portland,OR,97035 +218669,USB-C Charging Cable,1,11.95,2019-06-16 14:35:00,793 Cherry St, San Francisco,CA,94016 +218670,AAA Batteries (4-pack),3,2.99,2019-06-30 20:47:00,833 Ridge St, Los Angeles,CA,90001 +218671,iPhone,1,700.0,2019-06-14 16:44:00,789 West St, Los Angeles,CA,90001 +218672,iPhone,1,700.0,2019-06-08 00:24:00,165 Highland St, Los Angeles,CA,90001 +218673,AAA Batteries (4-pack),1,2.99,2019-06-18 11:33:00,451 Madison St, San Francisco,CA,94016 +218674,Bose SoundSport Headphones,1,99.99,2019-06-05 19:37:00,277 Jefferson St, Boston,MA,02215 +218675,Google Phone,1,600.0,2019-06-11 18:05:00,720 7th St, San Francisco,CA,94016 +218676,Lightning Charging Cable,1,14.95,2019-06-30 15:38:00,70 Madison St, Dallas,TX,75001 +218677,27in 4K Gaming Monitor,1,389.99,2019-06-22 15:09:00,158 Church St, Austin,TX,73301 +218678,Lightning Charging Cable,1,14.95,2019-06-05 14:24:00,885 River St, San Francisco,CA,94016 +218679,Lightning Charging Cable,1,14.95,2019-06-02 13:15:00,797 10th St, New York City,NY,10001 +218680,Bose SoundSport Headphones,1,99.99,2019-06-26 21:43:00,593 Lakeview St, San Francisco,CA,94016 +218681,AAA Batteries (4-pack),1,2.99,2019-06-24 15:47:00,814 7th St, Austin,TX,73301 +218682,AAA Batteries (4-pack),3,2.99,2019-06-18 00:05:00,982 Highland St, New York City,NY,10001 +218683,Lightning Charging Cable,1,14.95,2019-06-04 21:39:00,440 Center St, Seattle,WA,98101 +218684,Macbook Pro Laptop,1,1700.0,2019-06-01 13:00:00,624 12th St, Atlanta,GA,30301 +218685,Google Phone,1,600.0,2019-06-12 10:25:00,578 9th St, Boston,MA,02215 +218685,USB-C Charging Cable,1,11.95,2019-06-12 10:25:00,578 9th St, Boston,MA,02215 +218686,27in FHD Monitor,1,149.99,2019-06-24 19:11:00,948 Pine St, Los Angeles,CA,90001 +218687,Wired Headphones,1,11.99,2019-06-26 10:20:00,142 13th St, Seattle,WA,98101 +218688,Apple Airpods Headphones,1,150.0,2019-06-01 16:17:00,858 Washington St, Austin,TX,73301 +218689,27in FHD Monitor,1,149.99,2019-06-11 20:46:00,601 Center St, Portland,OR,97035 +218690,27in FHD Monitor,1,149.99,2019-06-27 23:20:00,791 Main St, Los Angeles,CA,90001 +218691,34in Ultrawide Monitor,1,379.99,2019-06-29 12:34:00,364 Church St, San Francisco,CA,94016 +218692,AAA Batteries (4-pack),1,2.99,2019-06-17 18:24:00,515 Hill St, Boston,MA,02215 +218693,USB-C Charging Cable,2,11.95,2019-06-21 12:21:00,909 Ridge St, Seattle,WA,98101 +218694,Wired Headphones,1,11.99,2019-06-19 20:11:00,808 Sunset St, Boston,MA,02215 +218695,ThinkPad Laptop,1,999.99,2019-06-07 17:19:00,847 Chestnut St, San Francisco,CA,94016 +218696,Wired Headphones,1,11.99,2019-06-11 13:01:00,858 Hickory St, San Francisco,CA,94016 +218697,Apple Airpods Headphones,1,150.0,2019-06-06 12:58:00,239 North St, Los Angeles,CA,90001 +218698,27in FHD Monitor,1,149.99,2019-06-16 10:23:00,663 5th St, Los Angeles,CA,90001 +218699,Flatscreen TV,1,300.0,2019-06-27 19:09:00,39 Ridge St, Atlanta,GA,30301 +218700,Macbook Pro Laptop,1,1700.0,2019-06-11 18:21:00,215 4th St, New York City,NY,10001 +218701,Wired Headphones,1,11.99,2019-06-21 17:43:00,614 Madison St, Dallas,TX,75001 +218702,27in FHD Monitor,1,149.99,2019-06-23 11:58:00,358 8th St, Austin,TX,73301 +218703,27in 4K Gaming Monitor,1,389.99,2019-06-28 08:05:00,891 12th St, Dallas,TX,75001 +218704,AA Batteries (4-pack),1,3.84,2019-06-03 22:52:00,161 Park St, Atlanta,GA,30301 +218705,Macbook Pro Laptop,1,1700.0,2019-06-22 20:52:00,739 1st St, Los Angeles,CA,90001 +218706,Macbook Pro Laptop,1,1700.0,2019-06-08 15:37:00,945 Park St, Seattle,WA,98101 +218707,ThinkPad Laptop,1,999.99,2019-06-07 10:41:00,748 Johnson St, Portland,OR,97035 +218708,Google Phone,1,600.0,2019-06-11 17:10:00,156 11th St, Seattle,WA,98101 +218708,USB-C Charging Cable,1,11.95,2019-06-11 17:10:00,156 11th St, Seattle,WA,98101 +218708,Wired Headphones,1,11.99,2019-06-11 17:10:00,156 11th St, Seattle,WA,98101 +218709,Apple Airpods Headphones,1,150.0,2019-06-07 09:49:00,793 2nd St, New York City,NY,10001 +218710,27in FHD Monitor,1,149.99,2019-06-02 23:35:00,284 12th St, Atlanta,GA,30301 +218711,Macbook Pro Laptop,1,1700.0,2019-06-19 19:15:00,46 Cherry St, San Francisco,CA,94016 +218712,Vareebadd Phone,1,400.0,2019-06-05 10:54:00,680 Dogwood St, San Francisco,CA,94016 +218713,AAA Batteries (4-pack),3,2.99,2019-06-22 21:20:00,408 Washington St, Los Angeles,CA,90001 +218714,iPhone,1,700.0,2019-06-24 18:11:00,596 12th St, Dallas,TX,75001 +218715,USB-C Charging Cable,1,11.95,2019-06-04 19:40:00,97 Washington St, San Francisco,CA,94016 +218716,USB-C Charging Cable,1,11.95,2019-06-04 20:57:00,718 Park St, Los Angeles,CA,90001 +218717,Apple Airpods Headphones,1,150.0,2019-06-26 23:33:00,961 12th St, Boston,MA,02215 +218718,Lightning Charging Cable,1,14.95,2019-06-11 14:42:00,705 Highland St, Atlanta,GA,30301 +218719,USB-C Charging Cable,1,11.95,2019-06-29 11:40:00,969 Chestnut St, Atlanta,GA,30301 +218720,Bose SoundSport Headphones,1,99.99,2019-06-30 22:46:00,320 Willow St, San Francisco,CA,94016 +218721,USB-C Charging Cable,1,11.95,2019-06-16 21:07:00,316 River St, Atlanta,GA,30301 +218722,AAA Batteries (4-pack),1,2.99,2019-06-12 23:14:00,900 Dogwood St, Atlanta,GA,30301 +218723,iPhone,1,700.0,2019-06-28 20:31:00,660 6th St, Seattle,WA,98101 +218723,Lightning Charging Cable,1,14.95,2019-06-28 20:31:00,660 6th St, Seattle,WA,98101 +218723,Wired Headphones,1,11.99,2019-06-28 20:31:00,660 6th St, Seattle,WA,98101 +218724,AA Batteries (4-pack),2,3.84,2019-06-14 03:36:00,155 Hill St, San Francisco,CA,94016 +218725,20in Monitor,1,109.99,2019-06-23 19:18:00,352 Cherry St, New York City,NY,10001 +218726,AA Batteries (4-pack),1,3.84,2019-06-25 22:09:00,590 Washington St, San Francisco,CA,94016 +218727,Wired Headphones,1,11.99,2019-06-15 10:48:00,236 Lake St, San Francisco,CA,94016 +218728,27in FHD Monitor,1,149.99,2019-06-05 22:30:00,830 Pine St, Los Angeles,CA,90001 +218729,AA Batteries (4-pack),1,3.84,2019-06-21 08:18:00,867 River St, Boston,MA,02215 +218730,AA Batteries (4-pack),2,3.84,2019-06-12 21:03:00,128 Maple St, Boston,MA,02215 +218731,ThinkPad Laptop,1,999.99,2019-06-02 14:18:00,499 West St, Atlanta,GA,30301 +218732,Lightning Charging Cable,1,14.95,2019-06-09 12:32:00,311 5th St, New York City,NY,10001 +218733,Flatscreen TV,1,300.0,2019-06-08 17:14:00,723 Spruce St, Seattle,WA,98101 +218734,Macbook Pro Laptop,1,1700.0,2019-06-02 18:38:00,158 Lakeview St, Los Angeles,CA,90001 +218735,Wired Headphones,1,11.99,2019-06-25 16:41:00,880 Maple St, New York City,NY,10001 +218736,AA Batteries (4-pack),1,3.84,2019-06-04 17:15:00,802 Chestnut St, San Francisco,CA,94016 +218737,USB-C Charging Cable,1,11.95,2019-06-20 11:25:00,261 Wilson St, New York City,NY,10001 +218738,AAA Batteries (4-pack),2,2.99,2019-06-23 11:12:00,770 Madison St, New York City,NY,10001 +218739,Lightning Charging Cable,1,14.95,2019-06-03 11:19:00,740 Center St, Dallas,TX,75001 +218740,iPhone,1,700.0,2019-06-11 14:19:00,336 Willow St, Dallas,TX,75001 +218741,AA Batteries (4-pack),1,3.84,2019-06-18 10:54:00,35 6th St, New York City,NY,10001 +218742,27in FHD Monitor,1,149.99,2019-06-20 16:32:00,123 Jefferson St, Boston,MA,02215 +218743,Wired Headphones,1,11.99,2019-06-06 11:27:00,244 Elm St, New York City,NY,10001 +218744,Lightning Charging Cable,1,14.95,2019-06-13 18:32:00,726 Adams St, San Francisco,CA,94016 +218745,AA Batteries (4-pack),1,3.84,2019-06-03 15:48:00,16 Cherry St, Dallas,TX,75001 +218746,20in Monitor,1,109.99,2019-06-10 15:37:00,727 Chestnut St, New York City,NY,10001 +218747,USB-C Charging Cable,1,11.95,2019-06-12 11:31:00,314 Maple St, San Francisco,CA,94016 +218748,Lightning Charging Cable,1,14.95,2019-06-17 19:20:00,895 Cedar St, Los Angeles,CA,90001 +218749,Flatscreen TV,1,300.0,2019-06-18 19:08:00,124 Dogwood St, Portland,OR,97035 +218750,USB-C Charging Cable,1,11.95,2019-06-30 16:52:00,881 Forest St, New York City,NY,10001 +218751,Wired Headphones,1,11.99,2019-06-20 13:35:00,708 Jefferson St, Los Angeles,CA,90001 +218752,AA Batteries (4-pack),2,3.84,2019-06-17 16:54:00,770 12th St, San Francisco,CA,94016 +218753,AAA Batteries (4-pack),1,2.99,2019-06-19 19:47:00,925 West St, Atlanta,GA,30301 +218754,AA Batteries (4-pack),1,3.84,2019-06-02 18:27:00,24 Wilson St, Boston,MA,02215 +218755,AA Batteries (4-pack),1,3.84,2019-06-08 10:42:00,804 Madison St, New York City,NY,10001 +218756,AAA Batteries (4-pack),1,2.99,2019-06-11 14:54:00,362 Hickory St, Boston,MA,02215 +218757,27in FHD Monitor,1,149.99,2019-06-19 08:29:00,99 Willow St, New York City,NY,10001 +218758,AAA Batteries (4-pack),1,2.99,2019-06-09 22:31:00,23 Church St, Austin,TX,73301 +218759,AA Batteries (4-pack),1,3.84,2019-06-15 13:06:00,988 12th St, Los Angeles,CA,90001 +218760,Apple Airpods Headphones,1,150.0,2019-06-30 14:28:00,723 Highland St, Portland,OR,97035 +218761,Bose SoundSport Headphones,1,99.99,2019-06-04 07:33:00,910 Hill St, Austin,TX,73301 +218762,iPhone,1,700.0,2019-06-18 14:05:00,776 Cherry St, San Francisco,CA,94016 +218762,Lightning Charging Cable,1,14.95,2019-06-18 14:05:00,776 Cherry St, San Francisco,CA,94016 +218763,AAA Batteries (4-pack),1,2.99,2019-06-27 19:03:00,274 Main St, San Francisco,CA,94016 +218764,AA Batteries (4-pack),1,3.84,2019-06-20 10:43:00,162 2nd St, Austin,TX,73301 +218765,AA Batteries (4-pack),1,3.84,2019-06-09 12:04:00,508 Forest St, Boston,MA,02215 +218766,USB-C Charging Cable,1,11.95,2019-06-10 18:41:00,388 11th St, New York City,NY,10001 +218767,27in 4K Gaming Monitor,1,389.99,2019-06-28 12:35:00,913 Jackson St, Portland,ME,04101 +218768,Lightning Charging Cable,2,14.95,2019-06-08 11:08:00,911 Highland St, Portland,OR,97035 +218769,AA Batteries (4-pack),1,3.84,2019-06-12 09:04:00,786 9th St, Los Angeles,CA,90001 +218770,AA Batteries (4-pack),1,3.84,2019-06-24 13:56:00,187 10th St, Dallas,TX,75001 +218771,Lightning Charging Cable,2,14.95,2019-06-24 21:34:00,983 Pine St, New York City,NY,10001 +218772,AA Batteries (4-pack),1,3.84,2019-06-15 22:12:00,433 7th St, Boston,MA,02215 +218773,Lightning Charging Cable,1,14.95,2019-06-02 03:50:00,897 Center St, Austin,TX,73301 +218774,iPhone,1,700.0,2019-06-10 11:19:00,533 9th St, Dallas,TX,75001 +218774,Lightning Charging Cable,1,14.95,2019-06-10 11:19:00,533 9th St, Dallas,TX,75001 +218774,Wired Headphones,1,11.99,2019-06-10 11:19:00,533 9th St, Dallas,TX,75001 +218775,USB-C Charging Cable,1,11.95,2019-06-05 13:17:00,562 Jackson St, Los Angeles,CA,90001 +218776,Wired Headphones,1,11.99,2019-06-24 19:17:00,946 Maple St, New York City,NY,10001 +218777,AAA Batteries (4-pack),1,2.99,2019-06-15 10:39:00,107 Lake St, Boston,MA,02215 +218778,27in 4K Gaming Monitor,1,389.99,2019-06-03 19:23:00,352 Dogwood St, San Francisco,CA,94016 +218779,Apple Airpods Headphones,1,150.0,2019-06-25 10:42:00,199 Cherry St, Dallas,TX,75001 +218780,USB-C Charging Cable,1,11.95,2019-06-04 12:26:00,847 Jackson St, Boston,MA,02215 +218781,Bose SoundSport Headphones,1,99.99,2019-06-17 18:28:00,98 Jackson St, Seattle,WA,98101 +218782,AAA Batteries (4-pack),3,2.99,2019-06-20 12:34:00,649 11th St, Seattle,WA,98101 +218783,Flatscreen TV,1,300.0,2019-06-05 13:43:00,436 5th St, Atlanta,GA,30301 +218784,Lightning Charging Cable,1,14.95,2019-06-15 16:37:00,992 Wilson St, Portland,OR,97035 +218785,Bose SoundSport Headphones,1,99.99,2019-06-09 11:54:00,541 Forest St, San Francisco,CA,94016 +218786,AA Batteries (4-pack),2,3.84,2019-06-11 13:27:00,169 Hickory St, Seattle,WA,98101 +218787,AAA Batteries (4-pack),2,2.99,2019-06-16 13:53:00,986 Ridge St, Boston,MA,02215 +218788,27in 4K Gaming Monitor,1,389.99,2019-06-30 15:21:00,802 Lakeview St, Atlanta,GA,30301 +218789,AA Batteries (4-pack),1,3.84,2019-06-25 09:32:00,35 7th St, San Francisco,CA,94016 +218790,20in Monitor,1,109.99,2019-06-13 15:29:00,322 Hickory St, San Francisco,CA,94016 +218791,ThinkPad Laptop,1,999.99,2019-06-08 00:21:00,982 14th St, San Francisco,CA,94016 +218792,Bose SoundSport Headphones,1,99.99,2019-06-29 21:27:00,432 Spruce St, San Francisco,CA,94016 +218793,Bose SoundSport Headphones,1,99.99,2019-06-15 20:38:00,159 Madison St, Seattle,WA,98101 +218794,ThinkPad Laptop,1,999.99,2019-06-14 20:07:00,419 South St, New York City,NY,10001 +218795,Flatscreen TV,1,300.0,2019-06-13 11:11:00,929 4th St, Dallas,TX,75001 +218796,AA Batteries (4-pack),1,3.84,2019-06-25 20:46:00,135 Spruce St, Boston,MA,02215 +218797,AAA Batteries (4-pack),2,2.99,2019-06-23 15:20:00,529 Jefferson St, Portland,OR,97035 +218798,Apple Airpods Headphones,1,150.0,2019-06-24 17:34:00,61 Lakeview St, New York City,NY,10001 +218799,AA Batteries (4-pack),1,3.84,2019-06-13 22:47:00,82 Johnson St, San Francisco,CA,94016 +218800,USB-C Charging Cable,1,11.95,2019-06-08 07:25:00,774 Madison St, Boston,MA,02215 +218801,Flatscreen TV,1,300.0,2019-06-11 14:34:00,68 1st St, Dallas,TX,75001 +218802,iPhone,1,700.0,2019-06-27 14:26:00,612 Meadow St, San Francisco,CA,94016 +218802,Apple Airpods Headphones,1,150.0,2019-06-27 14:26:00,612 Meadow St, San Francisco,CA,94016 +218803,AAA Batteries (4-pack),1,2.99,2019-06-28 15:43:00,550 1st St, Los Angeles,CA,90001 +218804,Lightning Charging Cable,1,14.95,2019-06-29 19:58:00,762 Madison St, Los Angeles,CA,90001 +218805,34in Ultrawide Monitor,1,379.99,2019-06-19 14:22:00,619 Spruce St, Los Angeles,CA,90001 +218806,Lightning Charging Cable,1,14.95,2019-06-06 16:54:00,352 Cedar St, New York City,NY,10001 +218807,AAA Batteries (4-pack),2,2.99,2019-06-11 13:58:00,520 Chestnut St, Los Angeles,CA,90001 +218808,AA Batteries (4-pack),1,3.84,2019-06-16 07:24:00,128 9th St, Atlanta,GA,30301 +218809,AA Batteries (4-pack),1,3.84,2019-06-30 17:40:00,724 14th St, San Francisco,CA,94016 +218810,USB-C Charging Cable,2,11.95,2019-06-24 20:19:00,453 4th St, Los Angeles,CA,90001 +218811,iPhone,1,700.0,2019-06-04 11:16:00,422 Highland St, Portland,ME,04101 +218812,Google Phone,1,600.0,2019-06-12 07:53:00,842 Elm St, San Francisco,CA,94016 +218812,Wired Headphones,2,11.99,2019-06-12 07:53:00,842 Elm St, San Francisco,CA,94016 +218813,27in 4K Gaming Monitor,1,389.99,2019-06-16 20:13:00,98 Lincoln St, Boston,MA,02215 +218814,Lightning Charging Cable,1,14.95,2019-06-22 09:06:00,224 Pine St, Boston,MA,02215 +218815,27in 4K Gaming Monitor,1,389.99,2019-06-24 00:52:00,134 5th St, San Francisco,CA,94016 +218816,Lightning Charging Cable,1,14.95,2019-06-01 09:10:00,93 North St, New York City,NY,10001 +218817,Wired Headphones,1,11.99,2019-06-21 13:37:00,475 Meadow St, Austin,TX,73301 +218818,Wired Headphones,1,11.99,2019-06-15 20:29:00,85 Jackson St, Los Angeles,CA,90001 +218819,Apple Airpods Headphones,1,150.0,2019-06-04 20:42:00,881 Sunset St, Los Angeles,CA,90001 +218819,Bose SoundSport Headphones,1,99.99,2019-06-04 20:42:00,881 Sunset St, Los Angeles,CA,90001 +218820,27in 4K Gaming Monitor,1,389.99,2019-06-07 23:12:00,271 Hickory St, New York City,NY,10001 +218821,Wired Headphones,1,11.99,2019-06-12 09:33:00,220 6th St, Dallas,TX,75001 +218822,Google Phone,1,600.0,2019-06-30 11:48:00,624 Jefferson St, Los Angeles,CA,90001 +218823,Apple Airpods Headphones,1,150.0,2019-06-06 09:54:00,580 9th St, New York City,NY,10001 +218824,Wired Headphones,1,11.99,2019-06-21 16:18:00,13 7th St, Atlanta,GA,30301 +218825,Bose SoundSport Headphones,1,99.99,2019-06-18 13:08:00,972 Madison St, Los Angeles,CA,90001 +218826,USB-C Charging Cable,1,11.95,2019-06-29 18:53:00,639 Wilson St, Portland,OR,97035 +218827,Bose SoundSport Headphones,1,99.99,2019-06-24 12:19:00,964 Spruce St, Austin,TX,73301 +218828,34in Ultrawide Monitor,1,379.99,2019-06-27 11:49:00,149 Pine St, Boston,MA,02215 +218829,Google Phone,1,600.0,2019-06-01 21:20:00,443 Spruce St, San Francisco,CA,94016 +218830,Wired Headphones,1,11.99,2019-06-15 09:14:00,552 Lakeview St, Dallas,TX,75001 +218831,ThinkPad Laptop,1,999.99,2019-06-10 08:06:00,702 Main St, Los Angeles,CA,90001 +218832,USB-C Charging Cable,1,11.95,2019-06-11 20:05:00,990 Johnson St, Portland,OR,97035 +218833,Apple Airpods Headphones,1,150.0,2019-06-28 11:59:00,774 1st St, Boston,MA,02215 +218834,iPhone,1,700.0,2019-06-10 15:20:00,207 6th St, Seattle,WA,98101 +218834,Wired Headphones,1,11.99,2019-06-10 15:20:00,207 6th St, Seattle,WA,98101 +218835,USB-C Charging Cable,1,11.95,2019-06-07 13:34:00,484 9th St, Los Angeles,CA,90001 +218836,AAA Batteries (4-pack),1,2.99,2019-06-05 12:20:00,259 Madison St, Los Angeles,CA,90001 +218837,USB-C Charging Cable,2,11.95,2019-06-22 21:47:00,912 South St, Los Angeles,CA,90001 +218838,AA Batteries (4-pack),1,3.84,2019-06-14 09:48:00,630 Ridge St, Los Angeles,CA,90001 +218839,Apple Airpods Headphones,1,150.0,2019-06-13 17:42:00,476 Forest St, Boston,MA,02215 +218840,AAA Batteries (4-pack),1,2.99,2019-06-24 16:46:00,561 Adams St, San Francisco,CA,94016 +218841,Vareebadd Phone,1,400.0,2019-06-03 13:22:00,986 River St, Boston,MA,02215 +218841,USB-C Charging Cable,1,11.95,2019-06-03 13:22:00,986 River St, Boston,MA,02215 +218842,AAA Batteries (4-pack),2,2.99,2019-06-17 22:02:00,759 Forest St, Boston,MA,02215 +218843,AA Batteries (4-pack),2,3.84,2019-06-30 23:13:00,407 4th St, Dallas,TX,75001 +218844,Lightning Charging Cable,1,14.95,2019-06-19 15:58:00,841 Adams St, San Francisco,CA,94016 +218845,Lightning Charging Cable,1,14.95,2019-06-22 20:12:00,322 Jefferson St, Portland,OR,97035 +218846,USB-C Charging Cable,1,11.95,2019-06-14 08:31:00,725 7th St, Los Angeles,CA,90001 +218847,USB-C Charging Cable,1,11.95,2019-06-17 07:34:00,206 Lincoln St, Seattle,WA,98101 +218848,iPhone,1,700.0,2019-06-23 20:40:00,755 Jackson St, Los Angeles,CA,90001 +218848,Lightning Charging Cable,1,14.95,2019-06-23 20:40:00,755 Jackson St, Los Angeles,CA,90001 +218849,LG Dryer,1,600.0,2019-06-02 16:29:00,515 7th St, Austin,TX,73301 +218850,AAA Batteries (4-pack),1,2.99,2019-06-26 10:20:00,367 Washington St, Portland,OR,97035 +218851,AA Batteries (4-pack),1,3.84,2019-06-06 00:23:00,113 Sunset St, San Francisco,CA,94016 +218852,Lightning Charging Cable,1,14.95,2019-06-05 09:23:00,484 Chestnut St, San Francisco,CA,94016 +218853,27in 4K Gaming Monitor,1,389.99,2019-06-29 21:57:00,712 8th St, Los Angeles,CA,90001 +218854,27in FHD Monitor,1,149.99,2019-06-05 10:25:00,558 5th St, San Francisco,CA,94016 +218855,Wired Headphones,1,11.99,2019-06-11 14:10:00,657 7th St, Los Angeles,CA,90001 +218856,Wired Headphones,1,11.99,2019-06-11 09:35:00,397 13th St, San Francisco,CA,94016 +218857,Vareebadd Phone,1,400.0,2019-06-25 21:08:00,886 Jefferson St, Boston,MA,02215 +218858,USB-C Charging Cable,1,11.95,2019-06-02 18:19:00,978 Main St, Boston,MA,02215 +218859,Wired Headphones,1,11.99,2019-06-01 18:11:00,5 Ridge St, Portland,OR,97035 +218860,AAA Batteries (4-pack),1,2.99,2019-06-06 07:33:00,760 Park St, Portland,ME,04101 +218861,Macbook Pro Laptop,1,1700.0,2019-06-28 19:59:00,169 Meadow St, Dallas,TX,75001 +218862,AAA Batteries (4-pack),1,2.99,2019-06-11 22:54:00,344 Jackson St, Dallas,TX,75001 +218863,USB-C Charging Cable,1,11.95,2019-06-07 09:52:00,270 Chestnut St, Los Angeles,CA,90001 +218864,Bose SoundSport Headphones,1,99.99,2019-06-16 10:25:00,397 Jackson St, San Francisco,CA,94016 +218865,Wired Headphones,1,11.99,2019-06-26 18:02:00,953 Center St, Boston,MA,02215 +218866,27in FHD Monitor,1,149.99,2019-06-05 10:58:00,452 Lake St, Seattle,WA,98101 +218867,AA Batteries (4-pack),1,3.84,2019-06-08 15:29:00,107 Lake St, San Francisco,CA,94016 +218868,Lightning Charging Cable,1,14.95,2019-06-04 23:45:00,929 1st St, Dallas,TX,75001 +218869,ThinkPad Laptop,1,999.99,2019-06-14 07:07:00,365 Cherry St, New York City,NY,10001 +218870,USB-C Charging Cable,2,11.95,2019-06-17 21:38:00,781 Lakeview St, Dallas,TX,75001 +218871,AAA Batteries (4-pack),1,2.99,2019-06-10 12:44:00,954 13th St, San Francisco,CA,94016 +218872,27in 4K Gaming Monitor,1,389.99,2019-06-18 12:21:00,673 West St, Atlanta,GA,30301 +218873,34in Ultrawide Monitor,1,379.99,2019-06-29 17:32:00,356 14th St, Boston,MA,02215 +218874,Wired Headphones,1,11.99,2019-06-06 13:28:00,584 Pine St, San Francisco,CA,94016 +218875,Apple Airpods Headphones,1,150.0,2019-06-11 21:37:00,190 Wilson St, San Francisco,CA,94016 +218876,AA Batteries (4-pack),2,3.84,2019-06-15 11:33:00,18 Sunset St, Los Angeles,CA,90001 +218877,Lightning Charging Cable,1,14.95,2019-06-02 14:57:00,244 Walnut St, San Francisco,CA,94016 +218878,USB-C Charging Cable,1,11.95,2019-06-04 13:53:00,489 Washington St, New York City,NY,10001 +218879,AA Batteries (4-pack),2,3.84,2019-06-09 12:11:00,460 Lakeview St, San Francisco,CA,94016 +218880,Wired Headphones,1,11.99,2019-06-20 12:41:00,692 10th St, Los Angeles,CA,90001 +218881,34in Ultrawide Monitor,1,379.99,2019-06-01 07:40:00,410 Elm St, San Francisco,CA,94016 +218882,Flatscreen TV,1,300.0,2019-06-12 03:14:00,27 Hill St, Los Angeles,CA,90001 +218883,27in 4K Gaming Monitor,1,389.99,2019-06-02 21:11:00,330 9th St, Boston,MA,02215 +218884,AA Batteries (4-pack),2,3.84,2019-06-21 13:37:00,646 Meadow St, New York City,NY,10001 +218885,AAA Batteries (4-pack),1,2.99,2019-06-09 00:15:00,222 Cedar St, San Francisco,CA,94016 +218886,Macbook Pro Laptop,1,1700.0,2019-06-18 02:32:00,459 Elm St, San Francisco,CA,94016 +218887,27in FHD Monitor,1,149.99,2019-06-21 14:16:00,927 Johnson St, San Francisco,CA,94016 +218888,Bose SoundSport Headphones,1,99.99,2019-06-23 16:14:00,300 1st St, Portland,OR,97035 +218889,20in Monitor,1,109.99,2019-06-07 00:16:00,136 Church St, Los Angeles,CA,90001 +218890,20in Monitor,1,109.99,2019-06-30 15:42:00,322 Dogwood St, New York City,NY,10001 +218891,Apple Airpods Headphones,1,150.0,2019-06-07 10:38:00,786 Forest St, Dallas,TX,75001 +218892,Lightning Charging Cable,1,14.95,2019-06-16 10:44:00,387 Sunset St, New York City,NY,10001 +218893,USB-C Charging Cable,1,11.95,2019-06-24 21:15:00,314 Center St, Los Angeles,CA,90001 +218894,USB-C Charging Cable,1,11.95,2019-06-20 17:09:00,23 Spruce St, San Francisco,CA,94016 +218895,USB-C Charging Cable,1,11.95,2019-06-04 20:10:00,273 Madison St, Los Angeles,CA,90001 +218896,iPhone,1,700.0,2019-06-19 18:07:00,595 Johnson St, San Francisco,CA,94016 +218897,Lightning Charging Cable,1,14.95,2019-06-04 13:45:00,337 Sunset St, San Francisco,CA,94016 +218898,AA Batteries (4-pack),1,3.84,2019-06-20 13:10:00,968 Adams St, Los Angeles,CA,90001 +218899,Bose SoundSport Headphones,1,99.99,2019-06-19 17:43:00,164 Main St, Dallas,TX,75001 +218900,AAA Batteries (4-pack),2,2.99,2019-06-12 21:03:00,17 Dogwood St, Portland,OR,97035 +218901,Vareebadd Phone,1,400.0,2019-06-22 13:11:00,143 Chestnut St, Los Angeles,CA,90001 +218902,Bose SoundSport Headphones,1,99.99,2019-06-28 14:12:00,894 Lakeview St, Boston,MA,02215 +218903,USB-C Charging Cable,1,11.95,2019-06-21 11:13:00,410 Washington St, Boston,MA,02215 +218904,AA Batteries (4-pack),1,3.84,2019-06-15 11:14:00,953 6th St, San Francisco,CA,94016 +218905,Lightning Charging Cable,1,14.95,2019-06-04 10:36:00,578 Forest St, Seattle,WA,98101 +218906,AAA Batteries (4-pack),1,2.99,2019-06-30 23:04:00,512 Lakeview St, San Francisco,CA,94016 +218907,27in 4K Gaming Monitor,1,389.99,2019-06-28 12:50:00,828 4th St, Boston,MA,02215 +218908,Wired Headphones,1,11.99,2019-06-11 17:22:00,822 Hill St, Los Angeles,CA,90001 +218909,AA Batteries (4-pack),1,3.84,2019-06-07 08:10:00,300 Maple St, Dallas,TX,75001 +218910,AAA Batteries (4-pack),1,2.99,2019-06-30 13:40:00,277 Ridge St, Dallas,TX,75001 +218911,Lightning Charging Cable,1,14.95,2019-06-08 11:11:00,695 Church St, Los Angeles,CA,90001 +218911,Macbook Pro Laptop,1,1700.0,2019-06-08 11:11:00,695 Church St, Los Angeles,CA,90001 +218912,AAA Batteries (4-pack),1,2.99,2019-06-02 10:27:00,917 Madison St, Los Angeles,CA,90001 +218913,ThinkPad Laptop,1,999.99,2019-06-01 18:33:00,726 Lincoln St, Boston,MA,02215 +218914,27in 4K Gaming Monitor,1,389.99,2019-06-26 18:14:00,276 8th St, New York City,NY,10001 +218915,USB-C Charging Cable,1,11.95,2019-06-26 10:44:00,168 Cedar St, Austin,TX,73301 +218916,AAA Batteries (4-pack),3,2.99,2019-06-21 19:35:00,396 4th St, San Francisco,CA,94016 +218917,AA Batteries (4-pack),1,3.84,2019-06-08 17:52:00,57 Jackson St, San Francisco,CA,94016 +218918,USB-C Charging Cable,1,11.95,2019-06-17 13:17:00,56 11th St, New York City,NY,10001 +218919,AAA Batteries (4-pack),3,2.99,2019-06-22 19:53:00,244 Forest St, San Francisco,CA,94016 +218920,Bose SoundSport Headphones,1,99.99,2019-06-24 21:55:00,385 Willow St, Los Angeles,CA,90001 +218921,Wired Headphones,1,11.99,2019-06-07 22:41:00,474 Ridge St, Austin,TX,73301 +218922,Lightning Charging Cable,1,14.95,2019-06-06 18:46:00,137 Jefferson St, Seattle,WA,98101 +218923,USB-C Charging Cable,2,11.95,2019-06-01 20:15:00,846 Forest St, New York City,NY,10001 +218924,Apple Airpods Headphones,1,150.0,2019-06-12 14:32:00,760 Adams St, Los Angeles,CA,90001 +218925,AAA Batteries (4-pack),1,2.99,2019-06-29 21:17:00,528 5th St, Los Angeles,CA,90001 +218926,Lightning Charging Cable,1,14.95,2019-06-04 22:46:00,499 Cherry St, San Francisco,CA,94016 +218927,AAA Batteries (4-pack),1,2.99,2019-06-17 04:09:00,297 Walnut St, Los Angeles,CA,90001 +218928,AA Batteries (4-pack),1,3.84,2019-06-17 13:16:00,399 4th St, New York City,NY,10001 +218929,Apple Airpods Headphones,1,150.0,2019-06-22 18:11:00,491 12th St, Boston,MA,02215 +218930,Google Phone,1,600.0,2019-06-23 23:18:00,478 West St, San Francisco,CA,94016 +218931,LG Washing Machine,1,600.0,2019-06-03 02:16:00,742 Johnson St, San Francisco,CA,94016 +218932,Flatscreen TV,1,300.0,2019-06-10 17:06:00,283 Johnson St, Dallas,TX,75001 +218933,Lightning Charging Cable,1,14.95,2019-06-16 08:38:00,360 11th St, Seattle,WA,98101 +218934,Wired Headphones,1,11.99,2019-06-08 20:19:00,382 6th St, San Francisco,CA,94016 +218935,Flatscreen TV,1,300.0,2019-06-03 18:10:00,935 1st St, Seattle,WA,98101 +218936,Lightning Charging Cable,1,14.95,2019-06-28 20:23:00,504 Hill St, Austin,TX,73301 +218937,34in Ultrawide Monitor,1,379.99,2019-06-12 21:15:00,103 14th St, Boston,MA,02215 +218938,AA Batteries (4-pack),1,3.84,2019-06-03 20:27:00,150 Center St, Los Angeles,CA,90001 +218939,AA Batteries (4-pack),1,3.84,2019-06-28 19:38:00,961 Ridge St, San Francisco,CA,94016 +218940,AAA Batteries (4-pack),1,2.99,2019-06-24 09:05:00,773 Lakeview St, Portland,OR,97035 +218941,AA Batteries (4-pack),1,3.84,2019-06-23 17:35:00,882 River St, Seattle,WA,98101 +218942,Wired Headphones,1,11.99,2019-06-11 11:25:00,944 1st St, San Francisco,CA,94016 +218943,34in Ultrawide Monitor,1,379.99,2019-06-28 20:04:00,298 Wilson St, San Francisco,CA,94016 +218944,USB-C Charging Cable,1,11.95,2019-06-03 20:16:00,602 Pine St, San Francisco,CA,94016 +218945,ThinkPad Laptop,1,999.99,2019-06-23 18:20:00,992 Willow St, New York City,NY,10001 +218946,USB-C Charging Cable,1,11.95,2019-06-14 17:39:00,859 Main St, Dallas,TX,75001 +218947,27in FHD Monitor,1,149.99,2019-06-30 13:19:00,100 4th St, Los Angeles,CA,90001 +218948,iPhone,1,700.0,2019-06-02 13:15:00,772 4th St, New York City,NY,10001 +218949,Bose SoundSport Headphones,1,99.99,2019-06-15 20:47:00,109 Cedar St, New York City,NY,10001 +218950,Lightning Charging Cable,2,14.95,2019-06-18 16:01:00,987 Walnut St, Austin,TX,73301 +218951,Lightning Charging Cable,1,14.95,2019-06-01 17:44:00,725 Church St, Dallas,TX,75001 +218952,Bose SoundSport Headphones,1,99.99,2019-06-07 01:50:00,264 Church St, New York City,NY,10001 +218953,Apple Airpods Headphones,1,150.0,2019-06-08 13:36:00,905 Wilson St, Boston,MA,02215 +218954,Apple Airpods Headphones,1,150.0,2019-06-24 08:57:00,159 Meadow St, San Francisco,CA,94016 +218955,27in FHD Monitor,1,149.99,2019-06-17 16:22:00,538 Main St, San Francisco,CA,94016 +218956,34in Ultrawide Monitor,1,379.99,2019-06-14 16:37:00,815 10th St, Boston,MA,02215 +218957,AAA Batteries (4-pack),2,2.99,2019-06-11 17:23:00,837 Chestnut St, Los Angeles,CA,90001 +218958,iPhone,1,700.0,2019-06-22 19:14:00,416 2nd St, Los Angeles,CA,90001 +218959,Lightning Charging Cable,1,14.95,2019-06-29 21:32:00,16 7th St, New York City,NY,10001 +218960,Bose SoundSport Headphones,1,99.99,2019-06-11 16:18:00,625 Lakeview St, San Francisco,CA,94016 +218960,Wired Headphones,1,11.99,2019-06-11 16:18:00,625 Lakeview St, San Francisco,CA,94016 +218961,Google Phone,1,600.0,2019-06-22 00:08:00,577 Park St, Seattle,WA,98101 +218961,Wired Headphones,2,11.99,2019-06-22 00:08:00,577 Park St, Seattle,WA,98101 +218962,AA Batteries (4-pack),2,3.84,2019-06-10 11:04:00,96 Lake St, Dallas,TX,75001 +218963,27in 4K Gaming Monitor,1,389.99,2019-06-10 13:19:00,632 Forest St, New York City,NY,10001 +218964,Apple Airpods Headphones,1,150.0,2019-06-20 23:19:00,770 Johnson St, Seattle,WA,98101 +218965,Wired Headphones,2,11.99,2019-06-08 15:09:00,626 Dogwood St, New York City,NY,10001 +218966,iPhone,1,700.0,2019-06-01 10:39:00,296 Church St, San Francisco,CA,94016 +218967,Lightning Charging Cable,1,14.95,2019-06-11 20:43:00,492 4th St, Dallas,TX,75001 +218968,AA Batteries (4-pack),1,3.84,2019-06-07 18:36:00,698 1st St, Boston,MA,02215 +218969,Macbook Pro Laptop,1,1700.0,2019-06-22 11:25:00,377 Elm St, Dallas,TX,75001 +218970,Vareebadd Phone,1,400.0,2019-06-20 07:52:00,495 Wilson St, Atlanta,GA,30301 +218971,ThinkPad Laptop,1,999.99,2019-06-17 10:31:00,824 Ridge St, Atlanta,GA,30301 +218972,USB-C Charging Cable,1,11.95,2019-06-10 21:35:00,366 1st St, New York City,NY,10001 +218973,USB-C Charging Cable,1,11.95,2019-06-14 11:37:00,28 7th St, New York City,NY,10001 +218974,27in 4K Gaming Monitor,1,389.99,2019-06-02 20:11:00,556 Jefferson St, Portland,OR,97035 +218974,AAA Batteries (4-pack),1,2.99,2019-06-02 20:11:00,556 Jefferson St, Portland,OR,97035 +218975,Wired Headphones,1,11.99,2019-06-11 14:22:00,55 8th St, San Francisco,CA,94016 +218976,AA Batteries (4-pack),3,3.84,2019-06-18 07:58:00,717 Dogwood St, Boston,MA,02215 +218977,USB-C Charging Cable,1,11.95,2019-06-13 10:46:00,649 12th St, Boston,MA,02215 +218978,iPhone,1,700.0,2019-06-28 13:16:00,949 Ridge St, Atlanta,GA,30301 +218978,Lightning Charging Cable,2,14.95,2019-06-28 13:16:00,949 Ridge St, Atlanta,GA,30301 +218979,Bose SoundSport Headphones,1,99.99,2019-06-12 19:28:00,750 Center St, San Francisco,CA,94016 +218980,Lightning Charging Cable,1,14.95,2019-06-27 08:27:00,234 Center St, Atlanta,GA,30301 +218981,Wired Headphones,2,11.99,2019-06-14 12:34:00,967 Jefferson St, Seattle,WA,98101 +218982,USB-C Charging Cable,2,11.95,2019-06-10 18:53:00,781 5th St, Atlanta,GA,30301 +218983,AAA Batteries (4-pack),1,2.99,2019-06-05 11:50:00,894 Lake St, Los Angeles,CA,90001 +218983,Wired Headphones,1,11.99,2019-06-05 11:50:00,894 Lake St, Los Angeles,CA,90001 +218984,Bose SoundSport Headphones,1,99.99,2019-06-28 02:02:00,476 River St, San Francisco,CA,94016 +218985,Apple Airpods Headphones,1,150.0,2019-06-22 12:04:00,709 1st St, New York City,NY,10001 +218986,AAA Batteries (4-pack),2,2.99,2019-06-16 19:25:00,427 6th St, San Francisco,CA,94016 +218987,USB-C Charging Cable,1,11.95,2019-06-10 12:07:00,494 10th St, Los Angeles,CA,90001 +218988,Lightning Charging Cable,1,14.95,2019-06-11 19:27:00,22 Jefferson St, Austin,TX,73301 +218989,Apple Airpods Headphones,1,150.0,2019-06-01 12:01:00,551 4th St, San Francisco,CA,94016 +218990,Bose SoundSport Headphones,1,99.99,2019-06-29 08:05:00,967 Adams St, San Francisco,CA,94016 +218991,Wired Headphones,1,11.99,2019-06-28 10:05:00,712 Pine St, San Francisco,CA,94016 +218992,AA Batteries (4-pack),1,3.84,2019-06-25 04:21:00,186 Ridge St, Seattle,WA,98101 +218993,iPhone,1,700.0,2019-06-19 21:09:00,678 River St, Portland,OR,97035 +218994,USB-C Charging Cable,1,11.95,2019-06-24 12:18:00,638 Lake St, New York City,NY,10001 +218995,iPhone,1,700.0,2019-06-20 12:51:00,470 4th St, New York City,NY,10001 +218995,Lightning Charging Cable,1,14.95,2019-06-20 12:51:00,470 4th St, New York City,NY,10001 +218995,34in Ultrawide Monitor,1,379.99,2019-06-20 12:51:00,470 4th St, New York City,NY,10001 +218996,Bose SoundSport Headphones,1,99.99,2019-06-23 00:44:00,413 Johnson St, Boston,MA,02215 +218997,AAA Batteries (4-pack),1,2.99,2019-06-09 12:11:00,93 West St, Los Angeles,CA,90001 +218998,Bose SoundSport Headphones,1,99.99,2019-06-01 13:59:00,344 4th St, Los Angeles,CA,90001 +218999,Macbook Pro Laptop,1,1700.0,2019-06-18 19:21:00,576 Willow St, Los Angeles,CA,90001 +219000,27in 4K Gaming Monitor,1,389.99,2019-06-21 09:01:00,27 Washington St, Austin,TX,73301 +219001,Lightning Charging Cable,1,14.95,2019-06-29 09:40:00,416 8th St, San Francisco,CA,94016 +219002,AA Batteries (4-pack),2,3.84,2019-06-12 12:06:00,877 4th St, San Francisco,CA,94016 +219003,AAA Batteries (4-pack),1,2.99,2019-06-26 22:25:00,85 Main St, Boston,MA,02215 +219004,Flatscreen TV,1,300.0,2019-06-19 21:27:00,785 2nd St, San Francisco,CA,94016 +219005,iPhone,1,700.0,2019-06-07 13:50:00,902 Lincoln St, Dallas,TX,75001 +219005,Lightning Charging Cable,1,14.95,2019-06-07 13:50:00,902 Lincoln St, Dallas,TX,75001 +219006,Wired Headphones,1,11.99,2019-06-20 08:21:00,779 Jefferson St, New York City,NY,10001 +219007,AA Batteries (4-pack),1,3.84,2019-06-24 11:16:00,42 8th St, Los Angeles,CA,90001 +219008,AA Batteries (4-pack),2,3.84,2019-06-05 18:38:00,485 West St, Atlanta,GA,30301 +219009,Vareebadd Phone,1,400.0,2019-06-08 12:38:00,903 Jackson St, San Francisco,CA,94016 +219009,USB-C Charging Cable,1,11.95,2019-06-08 12:38:00,903 Jackson St, San Francisco,CA,94016 +219010,USB-C Charging Cable,1,11.95,2019-06-26 22:00:00,838 Chestnut St, Portland,ME,04101 +219011,AA Batteries (4-pack),2,3.84,2019-06-08 11:47:00,715 Jefferson St, San Francisco,CA,94016 +219012,iPhone,1,700.0,2019-06-19 12:23:00,54 Chestnut St, Los Angeles,CA,90001 +219013,Bose SoundSport Headphones,1,99.99,2019-06-02 14:53:00,267 Center St, Atlanta,GA,30301 +219014,USB-C Charging Cable,1,11.95,2019-06-17 01:02:00,340 2nd St, New York City,NY,10001 +219015,USB-C Charging Cable,1,11.95,2019-06-20 22:10:00,629 Cedar St, San Francisco,CA,94016 +219016,27in FHD Monitor,1,149.99,2019-06-29 09:39:00,766 Dogwood St, San Francisco,CA,94016 +219017,AA Batteries (4-pack),1,3.84,2019-06-09 07:38:00,253 Church St, Austin,TX,73301 +219018,Apple Airpods Headphones,1,150.0,2019-06-01 13:01:00,381 4th St, New York City,NY,10001 +219019,USB-C Charging Cable,2,11.95,2019-06-09 19:23:00,922 Highland St, San Francisco,CA,94016 +219020,AAA Batteries (4-pack),1,2.99,2019-06-18 22:22:00,237 Lincoln St, San Francisco,CA,94016 +219021,Bose SoundSport Headphones,1,99.99,2019-06-29 21:59:00,409 Park St, Portland,ME,04101 +219022,USB-C Charging Cable,1,11.95,2019-06-29 15:36:00,437 Lake St, Los Angeles,CA,90001 +219023,20in Monitor,1,109.99,2019-06-19 22:17:00,9 Hickory St, Dallas,TX,75001 +219024,Lightning Charging Cable,1,14.95,2019-06-21 16:32:00,835 Main St, Los Angeles,CA,90001 +219025,Google Phone,1,600.0,2019-06-05 09:32:00,570 8th St, Dallas,TX,75001 +219026,Apple Airpods Headphones,1,150.0,2019-06-20 23:55:00,359 Lincoln St, Seattle,WA,98101 +219027,Apple Airpods Headphones,1,150.0,2019-06-29 11:18:00,512 Washington St, San Francisco,CA,94016 +219028,27in FHD Monitor,1,149.99,2019-06-04 12:55:00,414 6th St, Boston,MA,02215 +219029,Bose SoundSport Headphones,1,99.99,2019-06-29 19:57:00,873 5th St, Dallas,TX,75001 +219030,Lightning Charging Cable,2,14.95,2019-06-04 11:48:00,744 Main St, Los Angeles,CA,90001 +219031,AA Batteries (4-pack),1,3.84,2019-06-04 06:59:00,92 Elm St, Los Angeles,CA,90001 +219032,Wired Headphones,1,11.99,2019-06-19 11:42:00,351 12th St, Dallas,TX,75001 +219033,Vareebadd Phone,1,400.0,2019-06-30 08:48:00,479 Center St, Boston,MA,02215 +219034,AA Batteries (4-pack),1,3.84,2019-06-17 17:12:00,31 Washington St, Atlanta,GA,30301 +219035,Lightning Charging Cable,1,14.95,2019-06-25 13:39:00,728 Cherry St, New York City,NY,10001 +219036,Apple Airpods Headphones,1,150.0,2019-06-14 23:11:00,482 Walnut St, Portland,OR,97035 +219037,Bose SoundSport Headphones,1,99.99,2019-06-18 15:25:00,658 Elm St, San Francisco,CA,94016 +219038,Apple Airpods Headphones,1,150.0,2019-06-17 21:02:00,789 Ridge St, New York City,NY,10001 +219039,Wired Headphones,1,11.99,2019-06-12 10:21:00,803 Park St, Los Angeles,CA,90001 +219040,Apple Airpods Headphones,2,150.0,2019-06-13 15:33:00,78 Madison St, San Francisco,CA,94016 +219041,iPhone,1,700.0,2019-06-19 16:24:00,540 12th St, San Francisco,CA,94016 +219042,27in FHD Monitor,1,149.99,2019-06-06 19:57:00,685 River St, New York City,NY,10001 +219043,Lightning Charging Cable,1,14.95,2019-06-11 08:23:00,257 Dogwood St, New York City,NY,10001 +219044,Flatscreen TV,1,300.0,2019-06-21 21:42:00,714 River St, Los Angeles,CA,90001 +219045,Bose SoundSport Headphones,1,99.99,2019-06-09 10:31:00,721 South St, San Francisco,CA,94016 +219046,Lightning Charging Cable,1,14.95,2019-06-22 16:52:00,310 West St, Boston,MA,02215 +219047,27in 4K Gaming Monitor,1,389.99,2019-06-13 07:53:00,981 Adams St, Seattle,WA,98101 +219048,AA Batteries (4-pack),1,3.84,2019-06-22 15:19:00,358 7th St, Los Angeles,CA,90001 +219049,USB-C Charging Cable,1,11.95,2019-06-27 15:58:00,389 5th St, Boston,MA,02215 +219050,Lightning Charging Cable,1,14.95,2019-06-10 21:30:00,174 West St, San Francisco,CA,94016 +219051,Lightning Charging Cable,1,14.95,2019-06-26 22:16:00,841 Hill St, Atlanta,GA,30301 +219052,Google Phone,1,600.0,2019-06-28 21:46:00,169 Ridge St, Los Angeles,CA,90001 +219053,iPhone,1,700.0,2019-06-23 07:56:00,644 Willow St, Portland,OR,97035 +219053,Apple Airpods Headphones,1,150.0,2019-06-23 07:56:00,644 Willow St, Portland,OR,97035 +219054,USB-C Charging Cable,1,11.95,2019-06-07 15:58:00,483 13th St, Atlanta,GA,30301 +219055,34in Ultrawide Monitor,1,379.99,2019-06-08 12:47:00,780 4th St, San Francisco,CA,94016 +219056,Flatscreen TV,1,300.0,2019-06-16 11:38:00,80 Lakeview St, San Francisco,CA,94016 +219057,Apple Airpods Headphones,1,150.0,2019-06-24 17:39:00,229 Sunset St, Dallas,TX,75001 +219058,Apple Airpods Headphones,1,150.0,2019-06-08 23:18:00,849 Adams St, Atlanta,GA,30301 +219059,20in Monitor,1,109.99,2019-06-03 16:45:00,190 Hickory St, Austin,TX,73301 +219060,AA Batteries (4-pack),1,3.84,2019-06-27 19:52:00,13 Walnut St, New York City,NY,10001 +219061,Apple Airpods Headphones,1,150.0,2019-06-08 21:43:00,296 2nd St, Austin,TX,73301 +219062,AAA Batteries (4-pack),2,2.99,2019-06-10 20:26:00,201 14th St, San Francisco,CA,94016 +219063,Wired Headphones,1,11.99,2019-06-21 16:16:00,968 4th St, New York City,NY,10001 +219064,Wired Headphones,1,11.99,2019-06-19 18:06:00,807 Pine St, Seattle,WA,98101 +219065,AAA Batteries (4-pack),1,2.99,2019-06-03 22:29:00,75 Main St, San Francisco,CA,94016 +219066,Apple Airpods Headphones,1,150.0,2019-06-25 18:17:00,648 Elm St, New York City,NY,10001 +219067,USB-C Charging Cable,1,11.95,2019-06-17 17:59:00,370 Walnut St, San Francisco,CA,94016 +219068,Bose SoundSport Headphones,1,99.99,2019-06-28 22:00:00,3 Jackson St, Seattle,WA,98101 +219069,AAA Batteries (4-pack),3,2.99,2019-06-15 06:38:00,671 Sunset St, Seattle,WA,98101 +219070,Bose SoundSport Headphones,1,99.99,2019-06-18 14:28:00,704 Adams St, Portland,OR,97035 +219071,Wired Headphones,1,11.99,2019-06-20 15:54:00,200 Ridge St, San Francisco,CA,94016 +219072,27in 4K Gaming Monitor,1,389.99,2019-06-30 23:50:00,506 Jefferson St, San Francisco,CA,94016 +219073,Google Phone,1,600.0,2019-06-04 20:45:00,545 1st St, Dallas,TX,75001 +219074,Macbook Pro Laptop,1,1700.0,2019-06-28 23:25:00,268 11th St, San Francisco,CA,94016 +219075,Flatscreen TV,1,300.0,2019-06-09 10:46:00,436 Sunset St, San Francisco,CA,94016 +219076,Wired Headphones,1,11.99,2019-06-07 15:11:00,270 River St, Los Angeles,CA,90001 +219077,Apple Airpods Headphones,2,150.0,2019-06-20 10:53:00,202 West St, Seattle,WA,98101 +219078,AAA Batteries (4-pack),2,2.99,2019-06-13 06:45:00,741 South St, San Francisco,CA,94016 +219079,Lightning Charging Cable,1,14.95,2019-06-18 07:28:00,8 4th St, Dallas,TX,75001 +219080,20in Monitor,1,109.99,2019-06-13 10:19:00,642 North St, Los Angeles,CA,90001 +219081,AAA Batteries (4-pack),1,2.99,2019-06-10 16:01:00,272 Hill St, New York City,NY,10001 +219082,20in Monitor,1,109.99,2019-06-27 11:26:00,509 10th St, Boston,MA,02215 +219083,Wired Headphones,1,11.99,2019-06-22 11:44:00,980 West St, Austin,TX,73301 +219084,Apple Airpods Headphones,1,150.0,2019-06-15 12:35:00,465 Washington St, San Francisco,CA,94016 +219085,AA Batteries (4-pack),1,3.84,2019-06-25 12:06:00,931 9th St, New York City,NY,10001 +219086,34in Ultrawide Monitor,1,379.99,2019-06-18 21:03:00,389 West St, Boston,MA,02215 +219087,iPhone,1,700.0,2019-06-25 12:59:00,423 12th St, Los Angeles,CA,90001 +219087,Lightning Charging Cable,1,14.95,2019-06-25 12:59:00,423 12th St, Los Angeles,CA,90001 +219088,27in 4K Gaming Monitor,1,389.99,2019-06-12 11:34:00,956 Madison St, Los Angeles,CA,90001 +219089,Wired Headphones,1,11.99,2019-06-18 13:48:00,878 12th St, Los Angeles,CA,90001 +219090,Apple Airpods Headphones,1,150.0,2019-06-17 23:04:00,995 Pine St, Los Angeles,CA,90001 +219091,Apple Airpods Headphones,1,150.0,2019-06-21 20:18:00,668 Main St, New York City,NY,10001 +219092,AA Batteries (4-pack),1,3.84,2019-06-21 15:12:00,205 12th St, Los Angeles,CA,90001 +219093,iPhone,1,700.0,2019-06-29 16:29:00,32 9th St, New York City,NY,10001 +219093,Apple Airpods Headphones,1,150.0,2019-06-29 16:29:00,32 9th St, New York City,NY,10001 +219094,USB-C Charging Cable,1,11.95,2019-06-28 19:19:00,678 13th St, Los Angeles,CA,90001 +219095,iPhone,1,700.0,2019-06-01 20:22:00,720 4th St, Los Angeles,CA,90001 +219096,USB-C Charging Cable,1,11.95,2019-06-13 22:46:00,646 Lakeview St, Los Angeles,CA,90001 +219097,27in FHD Monitor,1,149.99,2019-06-07 20:05:00,278 Sunset St, San Francisco,CA,94016 +219098,AAA Batteries (4-pack),2,2.99,2019-06-14 17:07:00,967 4th St, Seattle,WA,98101 +219099,Google Phone,1,600.0,2019-06-23 21:03:00,170 Spruce St, Portland,OR,97035 +219100,AAA Batteries (4-pack),2,2.99,2019-06-20 11:30:00,442 Lakeview St, New York City,NY,10001 +219101,Apple Airpods Headphones,1,150.0,2019-06-22 21:58:00,596 Jefferson St, Atlanta,GA,30301 +219102,iPhone,1,700.0,2019-06-24 07:03:00,470 Willow St, Seattle,WA,98101 +219103,AA Batteries (4-pack),2,3.84,2019-06-07 20:25:00,680 Sunset St, Dallas,TX,75001 +219104,AAA Batteries (4-pack),1,2.99,2019-06-08 12:21:00,939 Maple St, San Francisco,CA,94016 +219105,Wired Headphones,1,11.99,2019-06-26 00:15:00,229 River St, New York City,NY,10001 +219106,Flatscreen TV,1,300.0,2019-06-30 20:47:00,324 Maple St, Austin,TX,73301 +219107,USB-C Charging Cable,2,11.95,2019-06-01 11:16:00,85 Sunset St, Los Angeles,CA,90001 +219108,ThinkPad Laptop,1,999.99,2019-06-18 19:30:00,237 5th St, New York City,NY,10001 +219109,20in Monitor,1,109.99,2019-06-06 15:35:00,335 Jackson St, Atlanta,GA,30301 +219110,Wired Headphones,1,11.99,2019-06-04 07:57:00,48 7th St, New York City,NY,10001 +219111,34in Ultrawide Monitor,1,379.99,2019-06-19 18:35:00,178 Highland St, San Francisco,CA,94016 +219112,USB-C Charging Cable,1,11.95,2019-06-25 09:32:00,388 Adams St, Portland,OR,97035 +219113,AAA Batteries (4-pack),1,2.99,2019-06-17 10:59:00,401 11th St, Atlanta,GA,30301 +219114,USB-C Charging Cable,1,11.95,2019-06-03 21:44:00,565 13th St, San Francisco,CA,94016 +219115,20in Monitor,1,109.99,2019-06-30 15:25:00,47 Main St, Portland,OR,97035 +219116,Bose SoundSport Headphones,1,99.99,2019-06-07 15:56:00,61 Spruce St, Los Angeles,CA,90001 +219117,AA Batteries (4-pack),1,3.84,2019-06-23 13:23:00,628 Cherry St, New York City,NY,10001 +219118,USB-C Charging Cable,1,11.95,2019-06-06 18:55:00,458 Johnson St, New York City,NY,10001 +219119,20in Monitor,1,109.99,2019-06-07 13:39:00,10 North St, Los Angeles,CA,90001 +219120,Macbook Pro Laptop,1,1700.0,2019-06-18 18:23:00,76 Forest St, Los Angeles,CA,90001 +219121,AAA Batteries (4-pack),1,2.99,2019-06-07 21:20:00,181 4th St, San Francisco,CA,94016 +219122,USB-C Charging Cable,2,11.95,2019-06-20 21:20:00,217 Dogwood St, San Francisco,CA,94016 +219123,AA Batteries (4-pack),1,3.84,2019-06-29 10:45:00,579 Jackson St, San Francisco,CA,94016 +219124,AA Batteries (4-pack),2,3.84,2019-06-17 10:28:00,417 Lincoln St, New York City,NY,10001 +219125,Bose SoundSport Headphones,1,99.99,2019-06-02 09:53:00,24 Lakeview St, Portland,OR,97035 +219126,USB-C Charging Cable,1,11.95,2019-06-28 05:38:00,150 6th St, San Francisco,CA,94016 +219127,Apple Airpods Headphones,1,150.0,2019-06-08 08:13:00,573 Lakeview St, Los Angeles,CA,90001 +219128,Wired Headphones,1,11.99,2019-06-22 11:29:00,271 Madison St, Austin,TX,73301 +219129,Macbook Pro Laptop,1,1700.0,2019-06-08 11:26:00,35 Adams St, Atlanta,GA,30301 +219130,Lightning Charging Cable,1,14.95,2019-06-11 19:47:00,430 Church St, San Francisco,CA,94016 +219131,AAA Batteries (4-pack),1,2.99,2019-06-11 16:07:00,42 Highland St, Dallas,TX,75001 +219132,AA Batteries (4-pack),3,3.84,2019-06-17 18:10:00,382 Park St, Dallas,TX,75001 +219133,USB-C Charging Cable,1,11.95,2019-06-05 19:15:00,334 Hill St, San Francisco,CA,94016 +219134,Wired Headphones,1,11.99,2019-06-27 14:46:00,535 11th St, Boston,MA,02215 +219135,Lightning Charging Cable,2,14.95,2019-06-05 10:08:00,468 Main St, New York City,NY,10001 +219136,Apple Airpods Headphones,1,150.0,2019-06-27 12:11:00,456 9th St, Atlanta,GA,30301 +219137,Bose SoundSport Headphones,1,99.99,2019-06-12 15:25:00,428 Chestnut St, San Francisco,CA,94016 +219138,Lightning Charging Cable,1,14.95,2019-06-10 19:47:00,954 Cedar St, San Francisco,CA,94016 +219139,27in FHD Monitor,1,149.99,2019-06-11 18:50:00,577 Cedar St, Portland,ME,04101 +219140,27in 4K Gaming Monitor,1,389.99,2019-06-30 11:47:00,485 Cedar St, Los Angeles,CA,90001 +219141,Apple Airpods Headphones,1,150.0,2019-06-09 22:26:00,499 Chestnut St, Dallas,TX,75001 +219142,Apple Airpods Headphones,1,150.0,2019-06-18 03:30:00,259 4th St, Portland,OR,97035 +219143,27in 4K Gaming Monitor,1,389.99,2019-06-29 15:17:00,123 Cedar St, San Francisco,CA,94016 +219144,AAA Batteries (4-pack),1,2.99,2019-06-19 09:06:00,382 Adams St, Boston,MA,02215 +219145,Apple Airpods Headphones,1,150.0,2019-06-02 18:04:00,963 10th St, Los Angeles,CA,90001 +219146,Bose SoundSport Headphones,1,99.99,2019-06-20 13:24:00,95 Spruce St, Boston,MA,02215 +219147,Bose SoundSport Headphones,1,99.99,2019-06-19 16:59:00,315 Cherry St, San Francisco,CA,94016 +219148,Wired Headphones,1,11.99,2019-06-06 15:13:00,364 7th St, Los Angeles,CA,90001 +219149,Bose SoundSport Headphones,1,99.99,2019-06-16 20:35:00,674 Johnson St, Portland,OR,97035 +219150,USB-C Charging Cable,1,11.95,2019-06-05 13:57:00,166 Jackson St, Boston,MA,02215 +219151,20in Monitor,1,109.99,2019-06-25 11:52:00,911 5th St, New York City,NY,10001 +219152,AAA Batteries (4-pack),3,2.99,2019-06-30 20:48:00,89 Lake St, Atlanta,GA,30301 +219153,Google Phone,1,600.0,2019-06-02 21:29:00,323 4th St, Portland,ME,04101 +219153,USB-C Charging Cable,1,11.95,2019-06-02 21:29:00,323 4th St, Portland,ME,04101 +219153,Bose SoundSport Headphones,1,99.99,2019-06-02 21:29:00,323 4th St, Portland,ME,04101 +219154,34in Ultrawide Monitor,1,379.99,2019-06-29 05:56:00,267 Cedar St, Boston,MA,02215 +219155,AAA Batteries (4-pack),2,2.99,2019-06-08 13:57:00,930 Madison St, Los Angeles,CA,90001 +219156,Wired Headphones,1,11.99,2019-06-28 07:49:00,885 Pine St, Portland,ME,04101 +219157,Lightning Charging Cable,1,14.95,2019-06-03 06:36:00,202 Highland St, Boston,MA,02215 +219158,Wired Headphones,1,11.99,2019-06-04 17:32:00,588 Adams St, San Francisco,CA,94016 +219159,LG Dryer,1,600.0,2019-06-01 19:06:00,142 Cedar St, Dallas,TX,75001 +219160,Apple Airpods Headphones,1,150.0,2019-06-28 08:52:00,657 8th St, Dallas,TX,75001 +219161,Wired Headphones,1,11.99,2019-06-27 11:30:00,147 Pine St, San Francisco,CA,94016 +219162,Lightning Charging Cable,1,14.95,2019-06-27 11:56:00,48 Highland St, New York City,NY,10001 +219163,Flatscreen TV,1,300.0,2019-06-26 11:17:00,463 Johnson St, Portland,OR,97035 +219164,Flatscreen TV,1,300.0,2019-06-06 01:01:00,22 Chestnut St, Seattle,WA,98101 +219165,AA Batteries (4-pack),1,3.84,2019-06-18 18:03:00,877 Hickory St, Portland,ME,04101 +219166,AAA Batteries (4-pack),1,2.99,2019-06-17 22:50:00,560 8th St, San Francisco,CA,94016 +219167,34in Ultrawide Monitor,1,379.99,2019-06-10 09:02:00,445 Park St, San Francisco,CA,94016 +219168,Lightning Charging Cable,2,14.95,2019-06-13 20:29:00,856 Cherry St, Dallas,TX,75001 +219169,AA Batteries (4-pack),3,3.84,2019-06-01 10:51:00,233 Willow St, Portland,OR,97035 +219170,Lightning Charging Cable,1,14.95,2019-06-19 12:33:00,667 Chestnut St, New York City,NY,10001 +219171,AA Batteries (4-pack),1,3.84,2019-06-17 22:32:00,932 9th St, San Francisco,CA,94016 +219172,34in Ultrawide Monitor,1,379.99,2019-06-26 20:33:00,46 Maple St, Los Angeles,CA,90001 +219173,Wired Headphones,1,11.99,2019-06-16 20:28:00,403 Cedar St, San Francisco,CA,94016 +219174,Apple Airpods Headphones,1,150.0,2019-06-01 19:42:00,403 Jackson St, Seattle,WA,98101 +219175,27in FHD Monitor,1,149.99,2019-06-02 21:27:00,990 Cedar St, San Francisco,CA,94016 +219176,34in Ultrawide Monitor,1,379.99,2019-06-20 16:09:00,863 South St, Portland,OR,97035 +219176,Lightning Charging Cable,1,14.95,2019-06-20 16:09:00,863 South St, Portland,OR,97035 +219177,AAA Batteries (4-pack),2,2.99,2019-06-13 22:25:00,867 Washington St, Portland,ME,04101 +219178,27in FHD Monitor,1,149.99,2019-06-28 08:01:00,471 Park St, San Francisco,CA,94016 +219179,20in Monitor,1,109.99,2019-06-15 11:46:00,349 Dogwood St, Atlanta,GA,30301 +219180,USB-C Charging Cable,1,11.95,2019-06-06 11:36:00,422 Jackson St, Portland,OR,97035 +219181,27in 4K Gaming Monitor,1,389.99,2019-06-13 17:02:00,304 Lincoln St, New York City,NY,10001 +219182,AA Batteries (4-pack),1,3.84,2019-06-06 15:12:00,316 14th St, New York City,NY,10001 +219183,AA Batteries (4-pack),1,3.84,2019-06-09 14:37:00,127 Ridge St, San Francisco,CA,94016 +219184,USB-C Charging Cable,1,11.95,2019-06-25 15:01:00,476 Lake St, Portland,OR,97035 +219185,AAA Batteries (4-pack),1,2.99,2019-06-17 16:26:00,404 Cedar St, Los Angeles,CA,90001 +219186,AAA Batteries (4-pack),1,2.99,2019-06-22 11:17:00,650 12th St, San Francisco,CA,94016 +219187,27in 4K Gaming Monitor,1,389.99,2019-06-29 10:30:00,766 Ridge St, New York City,NY,10001 +219188,Lightning Charging Cable,1,14.95,2019-06-01 12:07:00,484 Willow St, Portland,OR,97035 +219189,Apple Airpods Headphones,1,150.0,2019-06-30 22:45:00,446 Highland St, San Francisco,CA,94016 +219190,Wired Headphones,1,11.99,2019-06-18 17:59:00,545 Elm St, San Francisco,CA,94016 +219191,USB-C Charging Cable,1,11.95,2019-06-14 22:55:00,412 Highland St, San Francisco,CA,94016 +219192,AA Batteries (4-pack),2,3.84,2019-06-20 13:31:00,763 Lake St, Atlanta,GA,30301 +219193,Lightning Charging Cable,1,14.95,2019-06-16 18:05:00,357 Church St, Los Angeles,CA,90001 +219194,Apple Airpods Headphones,1,150.0,2019-06-24 22:43:00,413 Johnson St, San Francisco,CA,94016 +219195,Wired Headphones,1,11.99,2019-06-30 14:21:00,593 8th St, New York City,NY,10001 +219196,AAA Batteries (4-pack),1,2.99,2019-06-06 19:35:00,180 Park St, New York City,NY,10001 +219197,27in 4K Gaming Monitor,1,389.99,2019-06-29 07:04:00,365 Wilson St, Los Angeles,CA,90001 +219198,AAA Batteries (4-pack),1,2.99,2019-06-30 17:26:00,699 Cherry St, Atlanta,GA,30301 +219199,AAA Batteries (4-pack),2,2.99,2019-06-01 18:25:00,185 Wilson St, Portland,OR,97035 +219200,USB-C Charging Cable,1,11.95,2019-06-16 20:40:00,868 Church St, Portland,OR,97035 +219201,Wired Headphones,1,11.99,2019-06-27 21:19:00,215 South St, Boston,MA,02215 +219202,AAA Batteries (4-pack),1,2.99,2019-06-21 20:05:00,518 Lincoln St, Portland,OR,97035 +219203,iPhone,1,700.0,2019-06-05 13:35:00,554 11th St, San Francisco,CA,94016 +219204,Lightning Charging Cable,1,14.95,2019-06-25 22:42:00,911 Pine St, San Francisco,CA,94016 +219205,Lightning Charging Cable,1,14.95,2019-06-18 17:23:00,764 Forest St, Boston,MA,02215 +219206,Bose SoundSport Headphones,1,99.99,2019-06-29 17:20:00,949 Sunset St, Austin,TX,73301 +219207,Lightning Charging Cable,1,14.95,2019-06-14 15:04:00,437 Highland St, Portland,ME,04101 +219208,AA Batteries (4-pack),1,3.84,2019-06-25 13:25:00,932 Cedar St, New York City,NY,10001 +219209,Wired Headphones,3,11.99,2019-06-11 16:02:00,85 Adams St, New York City,NY,10001 +219210,USB-C Charging Cable,1,11.95,2019-06-11 18:46:00,952 North St, Atlanta,GA,30301 +219211,Flatscreen TV,1,300.0,2019-06-08 16:10:00,9 Washington St, Los Angeles,CA,90001 +219212,iPhone,1,700.0,2019-06-09 11:35:00,551 Park St, San Francisco,CA,94016 +219213,USB-C Charging Cable,1,11.95,2019-06-16 23:19:00,734 10th St, Portland,OR,97035 +219214,iPhone,1,700.0,2019-06-22 18:19:00,959 Johnson St, Seattle,WA,98101 +219215,Lightning Charging Cable,1,14.95,2019-06-17 17:07:00,694 Pine St, Los Angeles,CA,90001 +219216,Bose SoundSport Headphones,1,99.99,2019-06-17 18:33:00,590 Dogwood St, Los Angeles,CA,90001 +219217,27in FHD Monitor,1,149.99,2019-06-17 20:47:00,488 Jefferson St, San Francisco,CA,94016 +219218,AAA Batteries (4-pack),1,2.99,2019-06-29 13:55:00,235 Chestnut St, Los Angeles,CA,90001 +219218,Wired Headphones,1,11.99,2019-06-29 13:55:00,235 Chestnut St, Los Angeles,CA,90001 +219219,Wired Headphones,1,11.99,2019-06-20 20:49:00,56 Forest St, San Francisco,CA,94016 +219220,USB-C Charging Cable,1,11.95,2019-06-10 22:23:00,140 9th St, Austin,TX,73301 +219221,AA Batteries (4-pack),1,3.84,2019-06-21 20:52:00,460 Main St, Seattle,WA,98101 +219222,27in 4K Gaming Monitor,1,389.99,2019-06-23 21:12:00,454 Lake St, Los Angeles,CA,90001 +219223,AA Batteries (4-pack),2,3.84,2019-06-09 12:44:00,61 Cedar St, Boston,MA,02215 +219224,AAA Batteries (4-pack),3,2.99,2019-06-22 18:56:00,502 West St, San Francisco,CA,94016 +219225,27in 4K Gaming Monitor,1,389.99,2019-06-13 18:00:00,566 Ridge St, Boston,MA,02215 +219226,27in 4K Gaming Monitor,1,389.99,2019-06-26 09:51:00,774 Chestnut St, Austin,TX,73301 +219227,AA Batteries (4-pack),1,3.84,2019-06-19 16:16:00,458 South St, New York City,NY,10001 +219228,Lightning Charging Cable,1,14.95,2019-06-30 21:34:00,281 Chestnut St, New York City,NY,10001 +219229,Wired Headphones,1,11.99,2019-06-18 23:29:00,411 1st St, New York City,NY,10001 +219230,AAA Batteries (4-pack),1,2.99,2019-06-26 13:35:00,213 Willow St, San Francisco,CA,94016 +219231,USB-C Charging Cable,1,11.95,2019-06-12 11:23:00,240 13th St, Los Angeles,CA,90001 +219232,Flatscreen TV,1,300.0,2019-06-15 15:05:00,454 West St, Los Angeles,CA,90001 +219233,34in Ultrawide Monitor,1,379.99,2019-06-29 20:03:00,457 Madison St, Seattle,WA,98101 +219234,USB-C Charging Cable,1,11.95,2019-06-11 16:09:00,217 Maple St, Atlanta,GA,30301 +219235,Apple Airpods Headphones,1,150.0,2019-06-10 23:55:00,843 Maple St, Seattle,WA,98101 +219236,Wired Headphones,2,11.99,2019-06-26 16:29:00,399 Forest St, Los Angeles,CA,90001 +219237,27in FHD Monitor,1,149.99,2019-06-09 13:31:00,866 Elm St, San Francisco,CA,94016 +219238,Lightning Charging Cable,1,14.95,2019-06-04 15:08:00,213 10th St, San Francisco,CA,94016 +219239,iPhone,1,700.0,2019-06-27 13:44:00,31 Willow St, Los Angeles,CA,90001 +219239,Lightning Charging Cable,1,14.95,2019-06-27 13:44:00,31 Willow St, Los Angeles,CA,90001 +219240,iPhone,1,700.0,2019-06-29 12:45:00,374 4th St, New York City,NY,10001 +219241,AAA Batteries (4-pack),2,2.99,2019-06-28 20:09:00,489 Hill St, San Francisco,CA,94016 +219242,Apple Airpods Headphones,1,150.0,2019-06-25 16:11:00,335 Walnut St, Dallas,TX,75001 +219243,AAA Batteries (4-pack),1,2.99,2019-06-23 16:43:00,241 Lincoln St, Los Angeles,CA,90001 +219244,Wired Headphones,1,11.99,2019-06-05 08:18:00,121 Center St, Atlanta,GA,30301 +219245,AA Batteries (4-pack),2,3.84,2019-06-08 22:51:00,888 Highland St, Atlanta,GA,30301 +219246,AA Batteries (4-pack),1,3.84,2019-06-26 23:12:00,472 Main St, San Francisco,CA,94016 +219247,USB-C Charging Cable,1,11.95,2019-06-27 16:35:00,979 River St, Portland,ME,04101 +219248,AAA Batteries (4-pack),1,2.99,2019-06-30 16:39:00,909 Sunset St, San Francisco,CA,94016 +219249,USB-C Charging Cable,1,11.95,2019-06-02 19:11:00,910 Hill St, San Francisco,CA,94016 +219250,Lightning Charging Cable,1,14.95,2019-06-23 13:57:00,273 Washington St, Los Angeles,CA,90001 +219250,Wired Headphones,1,11.99,2019-06-23 13:57:00,273 Washington St, Los Angeles,CA,90001 +219251,USB-C Charging Cable,1,11.95,2019-06-19 21:43:00,544 Johnson St, Seattle,WA,98101 +219252,AAA Batteries (4-pack),3,2.99,2019-06-26 09:28:00,24 Main St, Boston,MA,02215 +219253,AAA Batteries (4-pack),1,2.99,2019-06-12 13:43:00,526 Johnson St, San Francisco,CA,94016 +219254,Macbook Pro Laptop,1,1700.0,2019-06-05 20:44:00,114 Wilson St, New York City,NY,10001 +219255,USB-C Charging Cable,1,11.95,2019-06-29 03:14:00,228 14th St, Los Angeles,CA,90001 +219256,AAA Batteries (4-pack),1,2.99,2019-06-03 21:55:00,813 Main St, Los Angeles,CA,90001 +219257,Wired Headphones,1,11.99,2019-06-08 18:25:00,670 14th St, New York City,NY,10001 +219258,20in Monitor,1,109.99,2019-06-26 07:34:00,316 6th St, Los Angeles,CA,90001 +219259,USB-C Charging Cable,1,11.95,2019-06-25 18:52:00,660 Forest St, San Francisco,CA,94016 +219260,Apple Airpods Headphones,1,150.0,2019-06-15 23:49:00,346 Lincoln St, Los Angeles,CA,90001 +219261,Apple Airpods Headphones,1,150.0,2019-06-23 09:26:00,465 8th St, Los Angeles,CA,90001 +219262,AAA Batteries (4-pack),1,2.99,2019-06-02 13:06:00,828 North St, Seattle,WA,98101 +219263,Google Phone,1,600.0,2019-06-22 08:59:00,726 Hickory St, Atlanta,GA,30301 +219263,USB-C Charging Cable,1,11.95,2019-06-22 08:59:00,726 Hickory St, Atlanta,GA,30301 +219264,ThinkPad Laptop,1,999.99,2019-06-21 11:52:00,636 2nd St, New York City,NY,10001 +219265,Wired Headphones,1,11.99,2019-06-09 12:11:00,586 12th St, San Francisco,CA,94016 +219266,USB-C Charging Cable,1,11.95,2019-06-28 08:19:00,517 4th St, Los Angeles,CA,90001 +219267,Lightning Charging Cable,1,14.95,2019-06-29 14:16:00,122 Chestnut St, Austin,TX,73301 +219268,Lightning Charging Cable,1,14.95,2019-06-14 15:35:00,275 Highland St, Dallas,TX,75001 +219269,ThinkPad Laptop,1,999.99,2019-06-26 14:15:00,25 Wilson St, San Francisco,CA,94016 +219270,USB-C Charging Cable,1,11.95,2019-06-28 20:50:00,784 14th St, Los Angeles,CA,90001 +219271,ThinkPad Laptop,1,999.99,2019-06-25 13:52:00,724 Main St, Boston,MA,02215 +219272,Google Phone,1,600.0,2019-06-01 23:41:00,501 12th St, Seattle,WA,98101 +219273,LG Dryer,1,600.0,2019-06-22 15:05:00,320 Lincoln St, Seattle,WA,98101 +219274,27in 4K Gaming Monitor,1,389.99,2019-06-07 22:03:00,318 Forest St, San Francisco,CA,94016 +219275,Bose SoundSport Headphones,1,99.99,2019-06-02 23:41:00,854 Hickory St, San Francisco,CA,94016 +219276,Bose SoundSport Headphones,1,99.99,2019-06-27 07:50:00,222 Sunset St, Boston,MA,02215 +219277,27in FHD Monitor,1,149.99,2019-06-05 20:10:00,800 Forest St, Los Angeles,CA,90001 +219278,34in Ultrawide Monitor,1,379.99,2019-06-25 16:05:00,790 Cherry St, San Francisco,CA,94016 +219279,USB-C Charging Cable,1,11.95,2019-06-26 11:05:00,614 10th St, Los Angeles,CA,90001 +219280,Lightning Charging Cable,1,14.95,2019-06-23 17:02:00,982 Cherry St, Boston,MA,02215 +219281,27in 4K Gaming Monitor,1,389.99,2019-06-17 09:31:00,250 Cherry St, Los Angeles,CA,90001 +219282,34in Ultrawide Monitor,1,379.99,2019-06-25 15:55:00,932 Main St, San Francisco,CA,94016 +219283,Lightning Charging Cable,1,14.95,2019-06-14 23:35:00,296 5th St, Los Angeles,CA,90001 +219284,34in Ultrawide Monitor,1,379.99,2019-06-13 09:28:00,385 Hickory St, San Francisco,CA,94016 +219285,AAA Batteries (4-pack),2,2.99,2019-06-19 13:19:00,414 Park St, New York City,NY,10001 +219286,AA Batteries (4-pack),1,3.84,2019-06-15 18:19:00,686 Lincoln St, Los Angeles,CA,90001 +219287,34in Ultrawide Monitor,1,379.99,2019-06-06 10:04:00,463 Church St, San Francisco,CA,94016 +219288,Lightning Charging Cable,1,14.95,2019-06-21 08:45:00,652 6th St, Dallas,TX,75001 +219289,27in FHD Monitor,1,149.99,2019-06-16 17:29:00,596 6th St, Seattle,WA,98101 +219290,AA Batteries (4-pack),1,3.84,2019-06-26 06:38:00,893 North St, Seattle,WA,98101 +219291,Bose SoundSport Headphones,1,99.99,2019-06-09 13:03:00,561 West St, San Francisco,CA,94016 +219292,Wired Headphones,1,11.99,2019-06-05 14:15:00,826 Center St, Boston,MA,02215 +219293,AAA Batteries (4-pack),2,2.99,2019-06-05 17:31:00,906 Meadow St, New York City,NY,10001 +219294,Wired Headphones,1,11.99,2019-06-05 10:21:00,436 Chestnut St, Austin,TX,73301 +219295,Wired Headphones,1,11.99,2019-06-21 11:55:00,258 4th St, Portland,OR,97035 +219296,AAA Batteries (4-pack),1,2.99,2019-06-04 15:08:00,921 8th St, San Francisco,CA,94016 +219297,27in FHD Monitor,1,149.99,2019-06-19 03:35:00,615 5th St, Los Angeles,CA,90001 +219298,USB-C Charging Cable,1,11.95,2019-06-14 08:46:00,953 Highland St, Los Angeles,CA,90001 +219299,iPhone,1,700.0,2019-06-27 20:40:00,235 Hill St, San Francisco,CA,94016 +219299,Lightning Charging Cable,1,14.95,2019-06-27 20:40:00,235 Hill St, San Francisco,CA,94016 +219300,Apple Airpods Headphones,1,150.0,2019-06-22 16:26:00,315 Main St, Dallas,TX,75001 +219301,Apple Airpods Headphones,1,150.0,2019-06-06 09:18:00,457 North St, Portland,OR,97035 +219302,Flatscreen TV,1,300.0,2019-06-05 17:46:00,653 Madison St, San Francisco,CA,94016 +219303,27in FHD Monitor,1,149.99,2019-06-16 10:07:00,721 Jackson St, Austin,TX,73301 +219304,Bose SoundSport Headphones,1,99.99,2019-06-09 10:46:00,87 Lincoln St, San Francisco,CA,94016 +219305,USB-C Charging Cable,2,11.95,2019-06-13 18:29:00,17 13th St, New York City,NY,10001 +219306,AAA Batteries (4-pack),2,2.99,2019-06-26 08:23:00,848 Church St, Los Angeles,CA,90001 +219307,AAA Batteries (4-pack),1,2.99,2019-06-01 15:12:00,213 Chestnut St, Austin,TX,73301 +219308,Lightning Charging Cable,1,14.95,2019-06-06 21:42:00,443 Hickory St, Boston,MA,02215 +219309,Lightning Charging Cable,1,14.95,2019-06-21 14:46:00,506 Cherry St, Boston,MA,02215 +219310,34in Ultrawide Monitor,1,379.99,2019-06-03 23:41:00,115 Cherry St, Boston,MA,02215 +219311,Lightning Charging Cable,1,14.95,2019-06-26 09:36:00,693 7th St, Dallas,TX,75001 +219312,Lightning Charging Cable,1,14.95,2019-06-28 22:05:00,238 7th St, Austin,TX,73301 +219313,Apple Airpods Headphones,1,150.0,2019-06-27 22:23:00,336 Lake St, San Francisco,CA,94016 +219314,Flatscreen TV,1,300.0,2019-06-03 10:50:00,712 Madison St, Boston,MA,02215 +219315,AA Batteries (4-pack),2,3.84,2019-06-13 18:42:00,856 Jefferson St, Boston,MA,02215 +219316,Wired Headphones,1,11.99,2019-06-30 09:46:00,495 South St, Austin,TX,73301 +219317,USB-C Charging Cable,1,11.95,2019-06-27 19:29:00,765 North St, San Francisco,CA,94016 +219318,Bose SoundSport Headphones,1,99.99,2019-06-21 22:15:00,975 Lake St, New York City,NY,10001 +219319,AA Batteries (4-pack),2,3.84,2019-06-14 16:24:00,712 Willow St, Seattle,WA,98101 +219320,Wired Headphones,1,11.99,2019-06-07 12:53:00,874 Hill St, Portland,OR,97035 +219321,USB-C Charging Cable,1,11.95,2019-06-21 06:41:00,550 River St, New York City,NY,10001 +219322,iPhone,1,700.0,2019-06-21 12:03:00,349 Jefferson St, Portland,OR,97035 +219322,Lightning Charging Cable,1,14.95,2019-06-21 12:03:00,349 Jefferson St, Portland,OR,97035 +219323,Bose SoundSport Headphones,1,99.99,2019-06-15 07:39:00,443 South St, San Francisco,CA,94016 +219324,AAA Batteries (4-pack),1,2.99,2019-06-15 04:49:00,165 Park St, Dallas,TX,75001 +219325,Lightning Charging Cable,1,14.95,2019-06-13 12:38:00,386 9th St, New York City,NY,10001 +219326,Wired Headphones,1,11.99,2019-06-18 19:02:00,919 River St, New York City,NY,10001 +219327,AA Batteries (4-pack),2,3.84,2019-06-14 12:47:00,840 11th St, Seattle,WA,98101 +219328,20in Monitor,1,109.99,2019-06-15 11:23:00,785 4th St, Los Angeles,CA,90001 +219329,27in FHD Monitor,1,149.99,2019-06-29 18:21:00,687 10th St, Atlanta,GA,30301 +219330,27in FHD Monitor,1,149.99,2019-06-12 13:45:00,331 Forest St, Los Angeles,CA,90001 +219331,USB-C Charging Cable,1,11.95,2019-06-22 22:17:00,105 South St, Los Angeles,CA,90001 +219332,AAA Batteries (4-pack),2,2.99,2019-06-03 19:31:00,365 Cedar St, Atlanta,GA,30301 +219333,Wired Headphones,1,11.99,2019-06-12 21:12:00,228 Wilson St, New York City,NY,10001 +219334,Apple Airpods Headphones,1,150.0,2019-06-21 13:01:00,57 Park St, Portland,OR,97035 +219335,AA Batteries (4-pack),1,3.84,2019-06-17 19:26:00,689 Main St, San Francisco,CA,94016 +219336,27in FHD Monitor,1,149.99,2019-06-15 22:17:00,988 5th St, New York City,NY,10001 +219337,USB-C Charging Cable,1,11.95,2019-06-05 11:32:00,546 West St, Boston,MA,02215 +219338,Lightning Charging Cable,1,14.95,2019-06-16 18:26:00,562 Wilson St, Boston,MA,02215 +219339,USB-C Charging Cable,1,11.95,2019-06-25 19:20:00,803 Jefferson St, Dallas,TX,75001 +219340,Apple Airpods Headphones,1,150.0,2019-06-19 02:37:00,639 Washington St, Dallas,TX,75001 +219340,AAA Batteries (4-pack),1,2.99,2019-06-19 02:37:00,639 Washington St, Dallas,TX,75001 +219341,AA Batteries (4-pack),1,3.84,2019-06-28 23:07:00,93 8th St, Atlanta,GA,30301 +219342,LG Dryer,1,600.0,2019-06-25 17:28:00,580 Hill St, Atlanta,GA,30301 +219343,Wired Headphones,1,11.99,2019-06-08 19:24:00,703 Elm St, Seattle,WA,98101 +219344,Apple Airpods Headphones,1,150.0,2019-06-06 05:32:00,563 Lincoln St, Austin,TX,73301 +219345,Flatscreen TV,1,300.0,2019-06-11 09:26:00,972 4th St, Atlanta,GA,30301 +219346,Apple Airpods Headphones,1,150.0,2019-06-29 13:50:00,246 Jefferson St, Austin,TX,73301 +219347,Wired Headphones,1,11.99,2019-06-02 11:10:00,293 Willow St, Los Angeles,CA,90001 +219348,Flatscreen TV,1,300.0,2019-06-26 14:24:00,119 Maple St, New York City,NY,10001 +219349,Apple Airpods Headphones,1,150.0,2019-06-07 19:10:00,491 Pine St, Los Angeles,CA,90001 +219349,Lightning Charging Cable,1,14.95,2019-06-07 19:10:00,491 Pine St, Los Angeles,CA,90001 +219350,AA Batteries (4-pack),1,3.84,2019-06-02 02:45:00,711 11th St, Dallas,TX,75001 +219351,AA Batteries (4-pack),2,3.84,2019-06-21 23:21:00,824 8th St, New York City,NY,10001 +219352,34in Ultrawide Monitor,1,379.99,2019-06-10 13:03:00,794 9th St, Los Angeles,CA,90001 +219353,Google Phone,1,600.0,2019-06-25 15:06:00,65 Meadow St, Austin,TX,73301 +219354,Apple Airpods Headphones,1,150.0,2019-06-05 11:34:00,950 Adams St, Los Angeles,CA,90001 +219355,Wired Headphones,1,11.99,2019-06-24 14:56:00,980 West St, Atlanta,GA,30301 +219356,Apple Airpods Headphones,1,150.0,2019-06-21 01:10:00,866 Hickory St, New York City,NY,10001 +219357,AA Batteries (4-pack),1,3.84,2019-06-24 15:58:00,160 Jackson St, Seattle,WA,98101 +219358,Lightning Charging Cable,1,14.95,2019-06-29 18:57:00,86 Hickory St, Los Angeles,CA,90001 +219359,ThinkPad Laptop,1,999.99,2019-06-05 12:39:00,931 Church St, Seattle,WA,98101 +219360,27in 4K Gaming Monitor,1,389.99,2019-06-29 03:24:00,711 7th St, San Francisco,CA,94016 +219361,AA Batteries (4-pack),1,3.84,2019-06-05 16:01:00,362 2nd St, Austin,TX,73301 +219362,Vareebadd Phone,1,400.0,2019-06-16 11:04:00,812 8th St, Atlanta,GA,30301 +219363,Apple Airpods Headphones,1,150.0,2019-06-12 19:11:00,999 Wilson St, San Francisco,CA,94016 +219364,Lightning Charging Cable,1,14.95,2019-06-19 19:41:00,207 11th St, New York City,NY,10001 +219365,Google Phone,1,600.0,2019-06-15 17:27:00,679 14th St, Austin,TX,73301 +219366,ThinkPad Laptop,1,999.99,2019-06-20 09:04:00,830 Washington St, Austin,TX,73301 +219367,Bose SoundSport Headphones,1,99.99,2019-06-24 17:42:00,375 7th St, Los Angeles,CA,90001 +219368,Wired Headphones,1,11.99,2019-06-08 10:36:00,238 South St, Los Angeles,CA,90001 +219369,AAA Batteries (4-pack),1,2.99,2019-06-18 11:58:00,905 Church St, New York City,NY,10001 +219370,Lightning Charging Cable,1,14.95,2019-06-30 21:45:00,39 6th St, Los Angeles,CA,90001 +219371,USB-C Charging Cable,1,11.95,2019-06-13 12:40:00,136 Park St, Los Angeles,CA,90001 +219372,Lightning Charging Cable,1,14.95,2019-06-26 15:11:00,677 12th St, New York City,NY,10001 +219373,Apple Airpods Headphones,1,150.0,2019-06-02 14:53:00,234 Lake St, Portland,ME,04101 +219374,USB-C Charging Cable,1,11.95,2019-06-13 09:51:00,485 11th St, Boston,MA,02215 +219375,Lightning Charging Cable,1,14.95,2019-06-04 09:49:00,724 South St, San Francisco,CA,94016 +219376,Google Phone,1,600.0,2019-06-20 17:38:00,184 Ridge St, Los Angeles,CA,90001 +219377,AA Batteries (4-pack),1,3.84,2019-06-28 12:08:00,79 4th St, Portland,OR,97035 +219378,USB-C Charging Cable,1,11.95,2019-06-01 23:16:00,72 Maple St, New York City,NY,10001 +219379,34in Ultrawide Monitor,1,379.99,2019-06-20 04:15:00,287 6th St, Boston,MA,02215 +219380,Lightning Charging Cable,1,14.95,2019-06-03 12:28:00,63 Forest St, Boston,MA,02215 +219381,Lightning Charging Cable,1,14.95,2019-06-09 09:28:00,25 Lakeview St, San Francisco,CA,94016 +219382,ThinkPad Laptop,1,999.99,2019-06-21 23:59:00,798 Washington St, Los Angeles,CA,90001 +219383,Apple Airpods Headphones,1,150.0,2019-06-25 20:51:00,232 Lakeview St, Los Angeles,CA,90001 +219384,ThinkPad Laptop,1,999.99,2019-06-11 07:33:00,859 Walnut St, Los Angeles,CA,90001 +219385,27in 4K Gaming Monitor,1,389.99,2019-06-24 23:03:00,717 Dogwood St, Atlanta,GA,30301 +219386,Wired Headphones,1,11.99,2019-06-14 17:39:00,135 West St, Austin,TX,73301 +219387,USB-C Charging Cable,1,11.95,2019-06-08 18:46:00,19 Willow St, San Francisco,CA,94016 +219388,27in FHD Monitor,1,149.99,2019-06-06 17:01:00,917 River St, Los Angeles,CA,90001 +219389,Wired Headphones,1,11.99,2019-06-22 19:17:00,503 Jackson St, Dallas,TX,75001 +219390,iPhone,1,700.0,2019-06-22 06:55:00,452 11th St, San Francisco,CA,94016 +219390,Lightning Charging Cable,1,14.95,2019-06-22 06:55:00,452 11th St, San Francisco,CA,94016 +219391,AAA Batteries (4-pack),1,2.99,2019-06-23 21:57:00,559 13th St, Portland,ME,04101 +219392,Macbook Pro Laptop,1,1700.0,2019-06-11 09:40:00,235 5th St, San Francisco,CA,94016 +219393,Apple Airpods Headphones,1,150.0,2019-06-02 12:02:00,74 Johnson St, Boston,MA,02215 +219394,AA Batteries (4-pack),2,3.84,2019-06-02 15:04:00,260 Elm St, Boston,MA,02215 +219395,AA Batteries (4-pack),2,3.84,2019-06-02 22:14:00,196 Sunset St, San Francisco,CA,94016 +219396,Bose SoundSport Headphones,1,99.99,2019-06-28 09:27:00,45 1st St, New York City,NY,10001 +219397,27in FHD Monitor,1,149.99,2019-06-29 22:31:00,621 Madison St, Dallas,TX,75001 +219398,AAA Batteries (4-pack),1,2.99,2019-06-22 17:09:00,627 Center St, New York City,NY,10001 +219399,AAA Batteries (4-pack),1,2.99,2019-06-06 04:10:00,969 12th St, Seattle,WA,98101 +219400,Google Phone,1,600.0,2019-06-21 19:53:00,967 Madison St, San Francisco,CA,94016 +219401,USB-C Charging Cable,1,11.95,2019-06-02 08:38:00,974 Hickory St, New York City,NY,10001 +219402,USB-C Charging Cable,1,11.95,2019-06-11 13:57:00,897 Dogwood St, San Francisco,CA,94016 +219403,USB-C Charging Cable,1,11.95,2019-06-28 08:13:00,984 South St, Portland,OR,97035 +219404,Apple Airpods Headphones,1,150.0,2019-06-12 23:32:00,305 6th St, Austin,TX,73301 +219404,Vareebadd Phone,1,400.0,2019-06-12 23:32:00,305 6th St, Austin,TX,73301 +219405,AAA Batteries (4-pack),1,2.99,2019-06-28 20:05:00,465 10th St, San Francisco,CA,94016 +219406,Bose SoundSport Headphones,1,99.99,2019-06-01 11:29:00,718 Ridge St, Los Angeles,CA,90001 +219407,Wired Headphones,1,11.99,2019-06-02 07:10:00,229 6th St, Austin,TX,73301 +219408,USB-C Charging Cable,1,11.95,2019-06-25 23:47:00,758 Center St, San Francisco,CA,94016 +219409,Apple Airpods Headphones,1,150.0,2019-06-05 16:03:00,872 12th St, Atlanta,GA,30301 +219410,Lightning Charging Cable,1,14.95,2019-06-06 08:54:00,12 1st St, New York City,NY,10001 +219411,iPhone,1,700.0,2019-06-08 22:37:00,480 Center St, Seattle,WA,98101 +219412,Macbook Pro Laptop,1,1700.0,2019-06-02 13:54:00,587 West St, Austin,TX,73301 +219413,20in Monitor,1,109.99,2019-06-02 21:34:00,263 Lakeview St, Boston,MA,02215 +219414,Lightning Charging Cable,1,14.95,2019-06-29 08:58:00,410 Johnson St, Atlanta,GA,30301 +219415,27in 4K Gaming Monitor,1,389.99,2019-06-18 21:45:00,586 West St, New York City,NY,10001 +219416,Bose SoundSport Headphones,1,99.99,2019-06-23 14:56:00,181 Park St, Los Angeles,CA,90001 +219417,Lightning Charging Cable,1,14.95,2019-06-11 10:40:00,727 9th St, Los Angeles,CA,90001 +219418,Apple Airpods Headphones,1,150.0,2019-06-09 16:28:00,286 Sunset St, Los Angeles,CA,90001 +219419,Apple Airpods Headphones,1,150.0,2019-06-01 18:54:00,343 12th St, Atlanta,GA,30301 +219420,Apple Airpods Headphones,1,150.0,2019-06-29 15:48:00,479 Forest St, New York City,NY,10001 +219421,Lightning Charging Cable,1,14.95,2019-06-04 13:05:00,968 Washington St, Atlanta,GA,30301 +219422,Wired Headphones,1,11.99,2019-06-20 11:23:00,998 West St, Portland,OR,97035 +219423,AAA Batteries (4-pack),1,2.99,2019-06-21 10:13:00,773 Wilson St, Los Angeles,CA,90001 +219424,27in FHD Monitor,1,149.99,2019-06-11 22:17:00,406 Pine St, Austin,TX,73301 +219425,Lightning Charging Cable,1,14.95,2019-06-17 09:21:00,974 7th St, Los Angeles,CA,90001 +219426,Wired Headphones,1,11.99,2019-06-19 17:45:00,969 Lincoln St, Los Angeles,CA,90001 +219427,34in Ultrawide Monitor,1,379.99,2019-06-28 08:25:00,827 Hickory St, New York City,NY,10001 +219428,Apple Airpods Headphones,1,150.0,2019-06-26 17:47:00,821 Spruce St, San Francisco,CA,94016 +219429,Lightning Charging Cable,1,14.95,2019-06-03 14:41:00,637 Ridge St, New York City,NY,10001 +219430,Bose SoundSport Headphones,1,99.99,2019-06-29 20:00:00,678 Cherry St, New York City,NY,10001 +219431,Lightning Charging Cable,1,14.95,2019-06-05 12:44:00,173 11th St, San Francisco,CA,94016 +219432,Lightning Charging Cable,1,14.95,2019-06-15 11:14:00,213 Ridge St, New York City,NY,10001 +219433,Flatscreen TV,1,300.0,2019-06-14 08:30:00,57 Washington St, San Francisco,CA,94016 +219434,AA Batteries (4-pack),1,3.84,2019-06-02 23:12:00,680 Church St, Los Angeles,CA,90001 +219435,Lightning Charging Cable,1,14.95,2019-06-16 15:06:00,40 Main St, Austin,TX,73301 +219436,AA Batteries (4-pack),1,3.84,2019-06-18 14:00:00,949 Madison St, Dallas,TX,75001 +219437,LG Dryer,1,600.0,2019-06-02 09:31:00,62 10th St, Seattle,WA,98101 +219438,Wired Headphones,1,11.99,2019-06-08 15:22:00,789 13th St, Los Angeles,CA,90001 +219439,Wired Headphones,1,11.99,2019-06-19 17:58:00,330 Willow St, San Francisco,CA,94016 +219440,USB-C Charging Cable,1,11.95,2019-06-05 21:27:00,226 Wilson St, Los Angeles,CA,90001 +219441,20in Monitor,1,109.99,2019-06-03 23:08:00,810 Hill St, Seattle,WA,98101 +219442,27in 4K Gaming Monitor,1,389.99,2019-06-29 12:28:00,987 11th St, New York City,NY,10001 +219443,AA Batteries (4-pack),1,3.84,2019-06-27 11:58:00,283 13th St, San Francisco,CA,94016 +219444,Apple Airpods Headphones,1,150.0,2019-06-08 19:35:00,645 Cherry St, Austin,TX,73301 +219445,Bose SoundSport Headphones,1,99.99,2019-06-02 20:50:00,15 Lincoln St, Austin,TX,73301 +219446,Macbook Pro Laptop,1,1700.0,2019-06-03 19:57:00,306 Park St, Portland,OR,97035 +219447,USB-C Charging Cable,2,11.95,2019-06-10 18:39:00,589 Washington St, Seattle,WA,98101 +219448,AA Batteries (4-pack),2,3.84,2019-06-02 09:20:00,768 Hickory St, San Francisco,CA,94016 +219449,AA Batteries (4-pack),1,3.84,2019-06-26 01:13:00,621 Willow St, Los Angeles,CA,90001 +219450,27in 4K Gaming Monitor,1,389.99,2019-06-08 11:00:00,954 5th St, Boston,MA,02215 +219451,Lightning Charging Cable,1,14.95,2019-06-27 14:55:00,695 Lakeview St, Los Angeles,CA,90001 +219452,Google Phone,1,600.0,2019-06-05 07:16:00,568 Church St, San Francisco,CA,94016 +219452,USB-C Charging Cable,1,11.95,2019-06-05 07:16:00,568 Church St, San Francisco,CA,94016 +219453,iPhone,1,700.0,2019-06-28 13:15:00,857 Madison St, Los Angeles,CA,90001 +219454,Wired Headphones,1,11.99,2019-06-21 18:10:00,462 Highland St, New York City,NY,10001 +219455,iPhone,1,700.0,2019-06-12 21:01:00,814 Madison St, Seattle,WA,98101 +219456,Bose SoundSport Headphones,1,99.99,2019-06-23 11:02:00,261 North St, San Francisco,CA,94016 +219457,iPhone,1,700.0,2019-06-18 08:20:00,543 Johnson St, Dallas,TX,75001 +219458,ThinkPad Laptop,1,999.99,2019-06-18 20:18:00,257 Elm St, San Francisco,CA,94016 +219459,Bose SoundSport Headphones,1,99.99,2019-06-02 19:13:00,364 4th St, Seattle,WA,98101 +219460,USB-C Charging Cable,1,11.95,2019-06-30 17:15:00,755 2nd St, Dallas,TX,75001 +219461,USB-C Charging Cable,1,11.95,2019-06-21 21:02:00,640 South St, Los Angeles,CA,90001 +219462,USB-C Charging Cable,1,11.95,2019-06-16 18:32:00,921 Dogwood St, Los Angeles,CA,90001 +219463,Apple Airpods Headphones,1,150.0,2019-06-20 10:56:00,505 Walnut St, Boston,MA,02215 +219464,Vareebadd Phone,1,400.0,2019-06-15 20:29:00,882 South St, Boston,MA,02215 +219465,LG Washing Machine,1,600.0,2019-06-11 14:34:00,272 Spruce St, New York City,NY,10001 +219466,AA Batteries (4-pack),1,3.84,2019-06-29 13:15:00,672 Center St, Seattle,WA,98101 +219467,Wired Headphones,1,11.99,2019-06-09 14:36:00,952 Chestnut St, Dallas,TX,75001 +219468,Lightning Charging Cable,1,14.95,2019-06-29 11:22:00,752 Dogwood St, Los Angeles,CA,90001 +219469,Wired Headphones,1,11.99,2019-06-28 18:33:00,116 River St, San Francisco,CA,94016 +219470,Macbook Pro Laptop,1,1700.0,2019-06-22 18:57:00,414 Hickory St, Boston,MA,02215 +219471,Google Phone,1,600.0,2019-06-13 17:57:00,985 Washington St, Boston,MA,02215 +219472,AA Batteries (4-pack),1,3.84,2019-06-15 21:33:00,332 2nd St, New York City,NY,10001 +219473,Flatscreen TV,1,300.0,2019-06-11 07:50:00,851 Pine St, San Francisco,CA,94016 +219474,Wired Headphones,2,11.99,2019-06-14 12:00:00,145 South St, San Francisco,CA,94016 +219475,Wired Headphones,1,11.99,2019-06-19 12:00:00,839 11th St, Atlanta,GA,30301 +219476,AAA Batteries (4-pack),1,2.99,2019-06-11 06:52:00,146 1st St, Boston,MA,02215 +219477,Macbook Pro Laptop,1,1700.0,2019-06-13 21:25:00,205 Hill St, Portland,OR,97035 +219478,Google Phone,1,600.0,2019-06-23 11:01:00,951 Willow St, San Francisco,CA,94016 +219479,Lightning Charging Cable,1,14.95,2019-06-29 01:07:00,177 Washington St, Los Angeles,CA,90001 +219480,iPhone,1,700.0,2019-06-17 12:03:00,278 Dogwood St, New York City,NY,10001 +219480,USB-C Charging Cable,2,11.95,2019-06-17 12:03:00,278 Dogwood St, New York City,NY,10001 +219481,Lightning Charging Cable,1,14.95,2019-06-09 21:51:00,524 5th St, Dallas,TX,75001 +219482,Bose SoundSport Headphones,1,99.99,2019-06-12 16:12:00,618 Chestnut St, Dallas,TX,75001 +219483,Apple Airpods Headphones,1,150.0,2019-06-19 10:21:00,456 Lakeview St, New York City,NY,10001 +219484,34in Ultrawide Monitor,1,379.99,2019-06-16 13:03:00,688 Main St, San Francisco,CA,94016 +219485,Apple Airpods Headphones,1,150.0,2019-06-27 11:58:00,774 Willow St, New York City,NY,10001 +219486,Apple Airpods Headphones,1,150.0,2019-06-13 14:24:00,949 1st St, New York City,NY,10001 +219487,34in Ultrawide Monitor,1,379.99,2019-06-26 11:55:00,336 West St, New York City,NY,10001 +219488,USB-C Charging Cable,1,11.95,2019-06-26 20:28:00,52 Hill St, Los Angeles,CA,90001 +219489,ThinkPad Laptop,1,999.99,2019-06-13 13:34:00,350 Willow St, San Francisco,CA,94016 +219489,Flatscreen TV,1,300.0,2019-06-13 13:34:00,350 Willow St, San Francisco,CA,94016 +219490,AAA Batteries (4-pack),4,2.99,2019-06-04 12:05:00,88 14th St, Boston,MA,02215 +219491,USB-C Charging Cable,1,11.95,2019-06-05 08:03:00,742 Forest St, Portland,OR,97035 +219492,Bose SoundSport Headphones,1,99.99,2019-06-06 08:37:00,433 Park St, Seattle,WA,98101 +219493,AAA Batteries (4-pack),3,2.99,2019-06-05 12:21:00,136 Forest St, New York City,NY,10001 +219494,27in 4K Gaming Monitor,1,389.99,2019-06-11 13:13:00,569 Spruce St, Portland,OR,97035 +219495,Bose SoundSport Headphones,1,99.99,2019-06-10 12:18:00,379 4th St, Los Angeles,CA,90001 +219496,AA Batteries (4-pack),1,3.84,2019-06-08 15:50:00,526 Meadow St, Los Angeles,CA,90001 +219497,Lightning Charging Cable,1,14.95,2019-06-16 10:00:00,111 Meadow St, Los Angeles,CA,90001 +219498,Lightning Charging Cable,1,14.95,2019-06-24 13:02:00,700 Hill St, Atlanta,GA,30301 +219499,Lightning Charging Cable,1,14.95,2019-06-19 14:37:00,738 Main St, Los Angeles,CA,90001 +219500,27in FHD Monitor,1,149.99,2019-06-01 14:34:00,810 10th St, Dallas,TX,75001 +219501,AAA Batteries (4-pack),2,2.99,2019-06-27 22:20:00,290 Forest St, Boston,MA,02215 +219502,Lightning Charging Cable,1,14.95,2019-06-07 20:44:00,905 Wilson St, San Francisco,CA,94016 +219503,Wired Headphones,1,11.99,2019-06-25 18:39:00,916 Highland St, Boston,MA,02215 +219504,34in Ultrawide Monitor,1,379.99,2019-06-25 19:34:00,50 Johnson St, Dallas,TX,75001 +219505,USB-C Charging Cable,1,11.95,2019-06-18 20:18:00,128 Walnut St, San Francisco,CA,94016 +219506,ThinkPad Laptop,1,999.99,2019-06-23 07:09:00,216 Ridge St, Dallas,TX,75001 +219507,27in FHD Monitor,1,149.99,2019-06-04 00:17:00,669 14th St, Dallas,TX,75001 +219508,27in 4K Gaming Monitor,1,389.99,2019-06-04 17:46:00,130 Hill St, Atlanta,GA,30301 +219509,Apple Airpods Headphones,2,150.0,2019-06-29 17:59:00,697 13th St, New York City,NY,10001 +219510,Bose SoundSport Headphones,1,99.99,2019-06-24 02:45:00,891 Washington St, Dallas,TX,75001 +219511,Apple Airpods Headphones,1,150.0,2019-06-25 11:53:00,713 Spruce St, Austin,TX,73301 +219512,AA Batteries (4-pack),1,3.84,2019-06-03 17:50:00,161 Maple St, San Francisco,CA,94016 +219513,Wired Headphones,1,11.99,2019-06-30 05:41:00,639 8th St, Boston,MA,02215 +219514,Bose SoundSport Headphones,1,99.99,2019-06-25 23:38:00,945 8th St, Portland,ME,04101 +219515,LG Washing Machine,1,600.0,2019-06-22 13:30:00,566 5th St, Los Angeles,CA,90001 +219516,AAA Batteries (4-pack),2,2.99,2019-06-15 23:13:00,784 14th St, San Francisco,CA,94016 +219517,Apple Airpods Headphones,1,150.0,2019-06-07 12:02:00,643 8th St, San Francisco,CA,94016 +219518,iPhone,1,700.0,2019-06-17 08:43:00,595 Adams St, Austin,TX,73301 +219519,Lightning Charging Cable,1,14.95,2019-06-19 17:48:00,121 Lake St, Boston,MA,02215 +219520,AAA Batteries (4-pack),1,2.99,2019-06-11 18:57:00,496 River St, Los Angeles,CA,90001 +219521,Vareebadd Phone,1,400.0,2019-06-05 00:35:00,845 Highland St, San Francisco,CA,94016 +219522,AAA Batteries (4-pack),2,2.99,2019-06-14 21:06:00,259 North St, Austin,TX,73301 +219523,AA Batteries (4-pack),1,3.84,2019-06-27 20:11:00,796 7th St, New York City,NY,10001 +219524,Apple Airpods Headphones,1,150.0,2019-06-09 11:58:00,616 Ridge St, Atlanta,GA,30301 +219525,iPhone,1,700.0,2019-06-22 19:57:00,598 10th St, San Francisco,CA,94016 +219526,AAA Batteries (4-pack),1,2.99,2019-06-10 20:57:00,853 Pine St, San Francisco,CA,94016 +219527,AA Batteries (4-pack),2,3.84,2019-06-28 07:54:00,425 Main St, Seattle,WA,98101 +219528,Bose SoundSport Headphones,1,99.99,2019-06-27 17:37:00,92 Church St, Atlanta,GA,30301 +219529,AA Batteries (4-pack),2,3.84,2019-06-05 14:23:00,859 South St, Boston,MA,02215 +219530,Wired Headphones,1,11.99,2019-06-17 11:58:00,881 2nd St, San Francisco,CA,94016 +219531,Lightning Charging Cable,1,14.95,2019-06-10 20:26:00,514 Sunset St, Portland,OR,97035 +219532,AAA Batteries (4-pack),2,2.99,2019-06-02 03:49:00,410 South St, Atlanta,GA,30301 +219533,Lightning Charging Cable,1,14.95,2019-06-08 23:47:00,608 Chestnut St, Los Angeles,CA,90001 +219534,ThinkPad Laptop,1,999.99,2019-06-07 12:03:00,501 2nd St, Los Angeles,CA,90001 +219535,Wired Headphones,1,11.99,2019-06-28 11:03:00,464 Maple St, New York City,NY,10001 +219536,Flatscreen TV,1,300.0,2019-06-08 21:36:00,823 7th St, New York City,NY,10001 +219537,AAA Batteries (4-pack),1,2.99,2019-06-19 12:05:00,232 West St, San Francisco,CA,94016 +219538,Lightning Charging Cable,1,14.95,2019-06-11 18:56:00,520 Meadow St, Portland,ME,04101 +219539,27in 4K Gaming Monitor,1,389.99,2019-06-29 19:36:00,85 Pine St, San Francisco,CA,94016 +219540,Google Phone,1,600.0,2019-06-11 23:53:00,848 Madison St, San Francisco,CA,94016 +219541,Bose SoundSport Headphones,1,99.99,2019-06-26 11:30:00,201 Elm St, Austin,TX,73301 +219541,Google Phone,1,600.0,2019-06-26 11:30:00,201 Elm St, Austin,TX,73301 +219542,AA Batteries (4-pack),1,3.84,2019-06-05 00:06:00,33 Highland St, Los Angeles,CA,90001 +219543,USB-C Charging Cable,1,11.95,2019-06-14 11:29:00,224 Jefferson St, San Francisco,CA,94016 +219544,LG Washing Machine,1,600.0,2019-06-10 07:29:00,894 10th St, Atlanta,GA,30301 +219545,AAA Batteries (4-pack),1,2.99,2019-06-02 07:01:00,544 Madison St, Los Angeles,CA,90001 +219546,AA Batteries (4-pack),2,3.84,2019-06-03 13:40:00,266 Madison St, Boston,MA,02215 +219547,Apple Airpods Headphones,1,150.0,2019-06-30 23:09:00,410 Lake St, Portland,OR,97035 +219548,Bose SoundSport Headphones,1,99.99,2019-06-09 13:27:00,717 Dogwood St, Atlanta,GA,30301 +219549,Lightning Charging Cable,1,14.95,2019-06-05 17:23:00,367 Hill St, Dallas,TX,75001 +219550,AA Batteries (4-pack),1,3.84,2019-06-05 15:12:00,816 12th St, San Francisco,CA,94016 +219551,AA Batteries (4-pack),1,3.84,2019-06-09 21:44:00,471 12th St, Austin,TX,73301 +219552,AA Batteries (4-pack),1,3.84,2019-06-15 08:18:00,290 Jackson St, San Francisco,CA,94016 +219553,Wired Headphones,1,11.99,2019-06-24 14:43:00,127 8th St, Austin,TX,73301 +219554,27in FHD Monitor,1,149.99,2019-06-05 23:36:00,257 Willow St, Atlanta,GA,30301 +219555,USB-C Charging Cable,1,11.95,2019-06-21 16:26:00,797 Sunset St, Los Angeles,CA,90001 +219556,USB-C Charging Cable,1,11.95,2019-06-14 08:56:00,137 Park St, San Francisco,CA,94016 +219557,Lightning Charging Cable,1,14.95,2019-06-19 13:36:00,811 Main St, San Francisco,CA,94016 +219558,Google Phone,1,600.0,2019-06-29 13:26:00,827 7th St, Seattle,WA,98101 +219559,27in 4K Gaming Monitor,1,389.99,2019-06-14 02:06:00,550 Lakeview St, New York City,NY,10001 +219560,Macbook Pro Laptop,1,1700.0,2019-06-18 20:37:00,937 6th St, Los Angeles,CA,90001 +219561,Lightning Charging Cable,1,14.95,2019-06-01 11:23:00,310 Washington St, Dallas,TX,75001 +219562,27in FHD Monitor,1,149.99,2019-06-13 00:27:00,859 Sunset St, San Francisco,CA,94016 +219563,Bose SoundSport Headphones,1,99.99,2019-06-05 18:04:00,872 Lincoln St, Los Angeles,CA,90001 +219564,Bose SoundSport Headphones,1,99.99,2019-06-03 17:29:00,488 Johnson St, Dallas,TX,75001 +219564,USB-C Charging Cable,1,11.95,2019-06-03 17:29:00,488 Johnson St, Dallas,TX,75001 +219565,Lightning Charging Cable,3,14.95,2019-06-23 14:39:00,939 Ridge St, San Francisco,CA,94016 +219566,AA Batteries (4-pack),2,3.84,2019-06-23 21:04:00,88 Lakeview St, Boston,MA,02215 +219567,AA Batteries (4-pack),1,3.84,2019-06-21 16:47:00,989 Highland St, New York City,NY,10001 +219567,AAA Batteries (4-pack),1,2.99,2019-06-21 16:47:00,989 Highland St, New York City,NY,10001 +219568,Macbook Pro Laptop,1,1700.0,2019-06-01 16:03:00,955 13th St, Los Angeles,CA,90001 +219569,Bose SoundSport Headphones,1,99.99,2019-06-10 22:14:00,715 Meadow St, New York City,NY,10001 +219570,Lightning Charging Cable,1,14.95,2019-06-02 16:05:00,123 11th St, Boston,MA,02215 +219571,Wired Headphones,1,11.99,2019-06-18 02:34:00,368 Washington St, San Francisco,CA,94016 +219572,Wired Headphones,1,11.99,2019-06-28 13:41:00,388 6th St, San Francisco,CA,94016 +219573,AAA Batteries (4-pack),1,2.99,2019-06-11 09:02:00,908 Adams St, San Francisco,CA,94016 +219574,AAA Batteries (4-pack),1,2.99,2019-06-01 14:57:00,990 South St, New York City,NY,10001 +219575,LG Dryer,1,600.0,2019-06-06 23:37:00,849 1st St, Portland,OR,97035 +219576,USB-C Charging Cable,1,11.95,2019-06-06 11:43:00,229 8th St, Seattle,WA,98101 +219577,Apple Airpods Headphones,1,150.0,2019-06-09 14:25:00,256 Main St, Austin,TX,73301 +219578,iPhone,1,700.0,2019-06-15 17:32:00,568 Adams St, Austin,TX,73301 +219579,34in Ultrawide Monitor,1,379.99,2019-06-21 12:59:00,507 5th St, Atlanta,GA,30301 +219580,34in Ultrawide Monitor,1,379.99,2019-06-12 16:31:00,412 Maple St, Los Angeles,CA,90001 +219581,34in Ultrawide Monitor,1,379.99,2019-06-18 20:34:00,573 Johnson St, New York City,NY,10001 +219582,USB-C Charging Cable,1,11.95,2019-06-22 19:23:00,584 North St, San Francisco,CA,94016 +219583,Vareebadd Phone,1,400.0,2019-06-22 09:39:00,47 Johnson St, Atlanta,GA,30301 +219583,Bose SoundSport Headphones,1,99.99,2019-06-22 09:39:00,47 Johnson St, Atlanta,GA,30301 +219584,27in FHD Monitor,1,149.99,2019-06-05 08:44:00,578 Walnut St, Dallas,TX,75001 +219585,AAA Batteries (4-pack),3,2.99,2019-06-21 21:41:00,678 12th St, Seattle,WA,98101 +219586,Flatscreen TV,1,300.0,2019-06-12 14:25:00,941 Pine St, Dallas,TX,75001 +219587,iPhone,1,700.0,2019-06-10 21:10:00,258 Adams St, Dallas,TX,75001 +219588,34in Ultrawide Monitor,1,379.99,2019-06-17 04:17:00,38 8th St, Atlanta,GA,30301 +219589,iPhone,1,700.0,2019-06-19 01:16:00,502 Dogwood St, Los Angeles,CA,90001 +219589,Lightning Charging Cable,1,14.95,2019-06-19 01:16:00,502 Dogwood St, Los Angeles,CA,90001 +219590,AA Batteries (4-pack),1,3.84,2019-06-21 10:37:00,368 8th St, Portland,OR,97035 +219591,Lightning Charging Cable,1,14.95,2019-06-18 13:08:00,448 4th St, Portland,ME,04101 +219592,AA Batteries (4-pack),1,3.84,2019-06-28 23:34:00,498 13th St, Austin,TX,73301 +219593,USB-C Charging Cable,1,11.95,2019-06-12 17:59:00,288 South St, Portland,ME,04101 +219594,27in FHD Monitor,1,149.99,2019-06-23 11:26:00,969 5th St, Los Angeles,CA,90001 +219595,USB-C Charging Cable,1,11.95,2019-06-25 10:54:00,511 14th St, New York City,NY,10001 +219596,iPhone,1,700.0,2019-06-10 14:57:00,205 River St, New York City,NY,10001 +219596,Lightning Charging Cable,1,14.95,2019-06-10 14:57:00,205 River St, New York City,NY,10001 +219596,Apple Airpods Headphones,1,150.0,2019-06-10 14:57:00,205 River St, New York City,NY,10001 +219597,USB-C Charging Cable,1,11.95,2019-06-30 09:58:00,38 South St, San Francisco,CA,94016 +219598,Bose SoundSport Headphones,1,99.99,2019-06-09 13:03:00,298 Willow St, San Francisco,CA,94016 +219599,iPhone,1,700.0,2019-06-25 23:15:00,704 14th St, New York City,NY,10001 +219600,Lightning Charging Cable,2,14.95,2019-06-28 02:41:00,449 Meadow St, Los Angeles,CA,90001 +219601,AA Batteries (4-pack),1,3.84,2019-06-06 14:47:00,447 Center St, Los Angeles,CA,90001 +219602,AA Batteries (4-pack),2,3.84,2019-06-01 11:28:00,23 Ridge St, San Francisco,CA,94016 +219603,Apple Airpods Headphones,1,150.0,2019-06-06 19:01:00,511 7th St, San Francisco,CA,94016 +219604,34in Ultrawide Monitor,1,379.99,2019-06-14 09:47:00,526 Cedar St, Los Angeles,CA,90001 +219605,AAA Batteries (4-pack),2,2.99,2019-06-02 19:33:00,593 Johnson St, Los Angeles,CA,90001 +219606,Google Phone,1,600.0,2019-06-11 08:51:00,528 Lincoln St, Atlanta,GA,30301 +219607,AA Batteries (4-pack),1,3.84,2019-06-01 17:22:00,815 Meadow St, San Francisco,CA,94016 +219608,ThinkPad Laptop,1,999.99,2019-06-03 14:40:00,658 Sunset St, San Francisco,CA,94016 +219609,AAA Batteries (4-pack),2,2.99,2019-06-24 23:14:00,850 Hickory St, San Francisco,CA,94016 +219610,Flatscreen TV,1,300.0,2019-06-30 12:10:00,759 4th St, Boston,MA,02215 +219611,USB-C Charging Cable,2,11.95,2019-06-11 10:32:00,407 10th St, San Francisco,CA,94016 +219612,AAA Batteries (4-pack),1,2.99,2019-06-09 15:39:00,380 Spruce St, San Francisco,CA,94016 +219613,USB-C Charging Cable,1,11.95,2019-06-09 16:15:00,219 Willow St, Portland,ME,04101 +219614,AA Batteries (4-pack),1,3.84,2019-06-05 21:57:00,472 Adams St, Seattle,WA,98101 +219615,Bose SoundSport Headphones,1,99.99,2019-06-02 14:41:00,121 Cherry St, Boston,MA,02215 +219616,27in FHD Monitor,1,149.99,2019-06-26 20:41:00,275 Ridge St, Dallas,TX,75001 +219617,Google Phone,1,600.0,2019-06-21 08:11:00,954 South St, Atlanta,GA,30301 +219618,USB-C Charging Cable,1,11.95,2019-06-01 14:04:00,444 8th St, Atlanta,GA,30301 +219619,Flatscreen TV,1,300.0,2019-06-25 12:37:00,195 Washington St, Dallas,TX,75001 +219620,Flatscreen TV,1,300.0,2019-06-22 18:06:00,224 West St, Austin,TX,73301 +219621,Bose SoundSport Headphones,1,99.99,2019-06-08 17:46:00,102 River St, Los Angeles,CA,90001 +219622,AAA Batteries (4-pack),2,2.99,2019-06-05 10:50:00,649 Main St, San Francisco,CA,94016 +219623,Vareebadd Phone,1,400.0,2019-06-06 14:46:00,889 Center St, San Francisco,CA,94016 +219624,27in 4K Gaming Monitor,1,389.99,2019-06-06 17:48:00,757 Sunset St, San Francisco,CA,94016 +219625,USB-C Charging Cable,1,11.95,2019-06-16 15:36:00,785 8th St, Los Angeles,CA,90001 +219626,Bose SoundSport Headphones,1,99.99,2019-06-02 12:18:00,498 Park St, San Francisco,CA,94016 +219627,ThinkPad Laptop,1,999.99,2019-06-04 09:56:00,406 5th St, Los Angeles,CA,90001 +219627,Wired Headphones,1,11.99,2019-06-04 09:56:00,406 5th St, Los Angeles,CA,90001 +219628,Apple Airpods Headphones,1,150.0,2019-06-12 13:03:00,140 Church St, New York City,NY,10001 +219629,AA Batteries (4-pack),1,3.84,2019-06-16 18:03:00,216 14th St, Seattle,WA,98101 +219630,Lightning Charging Cable,1,14.95,2019-06-06 15:36:00,787 Cedar St, Austin,TX,73301 +219631,USB-C Charging Cable,2,11.95,2019-06-12 17:23:00,563 Ridge St, San Francisco,CA,94016 +219631,USB-C Charging Cable,1,11.95,2019-06-12 17:23:00,563 Ridge St, San Francisco,CA,94016 +219632,AA Batteries (4-pack),1,3.84,2019-06-12 19:10:00,124 Johnson St, Boston,MA,02215 +219633,Lightning Charging Cable,1,14.95,2019-06-06 15:41:00,455 14th St, Atlanta,GA,30301 +219634,AAA Batteries (4-pack),5,2.99,2019-06-19 12:34:00,191 14th St, Los Angeles,CA,90001 +219635,27in 4K Gaming Monitor,1,389.99,2019-06-26 14:14:00,654 Johnson St, Dallas,TX,75001 +219636,27in FHD Monitor,1,149.99,2019-06-14 18:16:00,366 Forest St, Dallas,TX,75001 +219637,Apple Airpods Headphones,1,150.0,2019-06-04 15:16:00,713 Washington St, New York City,NY,10001 +219638,Apple Airpods Headphones,1,150.0,2019-06-17 13:24:00,233 River St, San Francisco,CA,94016 +219639,AA Batteries (4-pack),1,3.84,2019-06-30 19:35:00,12 6th St, Atlanta,GA,30301 +219640,AAA Batteries (4-pack),1,2.99,2019-06-30 12:58:00,434 Jefferson St, Austin,TX,73301 +219641,AA Batteries (4-pack),1,3.84,2019-06-19 17:34:00,404 Pine St, San Francisco,CA,94016 +219642,20in Monitor,1,109.99,2019-06-13 10:11:00,191 Madison St, New York City,NY,10001 +219643,Lightning Charging Cable,1,14.95,2019-06-28 15:34:00,621 Maple St, Austin,TX,73301 +219644,Bose SoundSport Headphones,1,99.99,2019-06-11 13:46:00,976 2nd St, Atlanta,GA,30301 +219645,AA Batteries (4-pack),2,3.84,2019-06-29 12:03:00,244 Adams St, Dallas,TX,75001 +219646,27in FHD Monitor,1,149.99,2019-06-30 10:38:00,66 Cherry St, Atlanta,GA,30301 +219647,Lightning Charging Cable,1,14.95,2019-06-14 10:41:00,144 2nd St, Dallas,TX,75001 +219648,Apple Airpods Headphones,1,150.0,2019-06-07 03:14:00,103 South St, Portland,OR,97035 +219649,AA Batteries (4-pack),1,3.84,2019-06-02 12:04:00,119 Dogwood St, New York City,NY,10001 +219650,USB-C Charging Cable,1,11.95,2019-06-18 07:46:00,800 Cedar St, San Francisco,CA,94016 +219651,Lightning Charging Cable,1,14.95,2019-06-17 15:28:00,284 Highland St, Los Angeles,CA,90001 +219652,20in Monitor,1,109.99,2019-06-21 17:42:00,408 North St, Los Angeles,CA,90001 +219653,Google Phone,1,600.0,2019-06-30 12:47:00,793 Center St, Los Angeles,CA,90001 +219654,27in FHD Monitor,1,149.99,2019-06-02 16:33:00,967 Hill St, Austin,TX,73301 +219655,AA Batteries (4-pack),1,3.84,2019-06-10 13:04:00,523 6th St, Los Angeles,CA,90001 +219656,AAA Batteries (4-pack),1,2.99,2019-06-03 09:18:00,414 West St, Dallas,TX,75001 +219657,Apple Airpods Headphones,1,150.0,2019-06-25 19:15:00,653 Park St, New York City,NY,10001 +219658,Wired Headphones,1,11.99,2019-06-09 19:43:00,337 Highland St, New York City,NY,10001 +219659,AA Batteries (4-pack),2,3.84,2019-06-25 12:46:00,373 Madison St, San Francisco,CA,94016 +219660,Apple Airpods Headphones,1,150.0,2019-06-08 22:04:00,146 Maple St, Atlanta,GA,30301 +219661,AAA Batteries (4-pack),1,2.99,2019-06-08 03:33:00,637 Meadow St, Portland,ME,04101 +219662,USB-C Charging Cable,2,11.95,2019-06-26 14:39:00,935 North St, Boston,MA,02215 +219663,Apple Airpods Headphones,1,150.0,2019-06-13 20:03:00,219 River St, Dallas,TX,75001 +219664,AA Batteries (4-pack),1,3.84,2019-06-26 16:25:00,759 Jefferson St, Los Angeles,CA,90001 +219665,AA Batteries (4-pack),2,3.84,2019-06-15 15:50:00,940 6th St, Boston,MA,02215 +219666,AA Batteries (4-pack),1,3.84,2019-06-03 16:42:00,597 Washington St, Atlanta,GA,30301 +219667,Lightning Charging Cable,1,14.95,2019-06-02 17:09:00,429 11th St, San Francisco,CA,94016 +219668,Wired Headphones,1,11.99,2019-06-15 08:55:00,220 Adams St, Austin,TX,73301 +219669,ThinkPad Laptop,1,999.99,2019-06-25 07:51:00,965 Jackson St, Seattle,WA,98101 +219670,AAA Batteries (4-pack),1,2.99,2019-06-12 18:53:00,514 8th St, Atlanta,GA,30301 +219671,Bose SoundSport Headphones,1,99.99,2019-06-20 22:25:00,954 12th St, San Francisco,CA,94016 +219672,Apple Airpods Headphones,1,150.0,2019-06-30 13:19:00,427 Willow St, San Francisco,CA,94016 +219673,AAA Batteries (4-pack),1,2.99,2019-06-09 03:31:00,198 Main St, Seattle,WA,98101 +219674,Flatscreen TV,1,300.0,2019-06-29 21:02:00,506 South St, San Francisco,CA,94016 +219675,Lightning Charging Cable,1,14.95,2019-06-04 23:03:00,38 Washington St, San Francisco,CA,94016 +219676,AA Batteries (4-pack),1,3.84,2019-06-11 17:24:00,235 Lake St, New York City,NY,10001 +219677,Lightning Charging Cable,1,14.95,2019-06-28 22:46:00,473 12th St, Dallas,TX,75001 +219678,Flatscreen TV,1,300.0,2019-06-20 19:12:00,526 Madison St, Boston,MA,02215 +219679,USB-C Charging Cable,3,11.95,2019-06-01 18:22:00,610 Lake St, Los Angeles,CA,90001 +219680,Lightning Charging Cable,2,14.95,2019-06-14 08:30:00,313 Cherry St, San Francisco,CA,94016 +219681,USB-C Charging Cable,1,11.95,2019-06-28 06:29:00,538 Hill St, Los Angeles,CA,90001 +219682,27in 4K Gaming Monitor,1,389.99,2019-06-26 17:51:00,336 Johnson St, San Francisco,CA,94016 +219683,USB-C Charging Cable,1,11.95,2019-06-14 18:38:00,803 Willow St, Los Angeles,CA,90001 +219684,Wired Headphones,1,11.99,2019-06-22 11:18:00,15 Walnut St, Dallas,TX,75001 +219685,AAA Batteries (4-pack),1,2.99,2019-06-22 19:12:00,376 North St, Portland,OR,97035 +219686,AAA Batteries (4-pack),1,2.99,2019-06-15 11:33:00,176 Main St, San Francisco,CA,94016 +219687,Google Phone,1,600.0,2019-06-05 00:01:00,139 9th St, Portland,OR,97035 +219688,Apple Airpods Headphones,1,150.0,2019-06-17 00:58:00,229 Spruce St, Los Angeles,CA,90001 +219689,Apple Airpods Headphones,1,150.0,2019-06-17 18:31:00,492 7th St, New York City,NY,10001 +219690,AA Batteries (4-pack),2,3.84,2019-06-21 12:30:00,468 Hickory St, San Francisco,CA,94016 +219691,Lightning Charging Cable,1,14.95,2019-06-27 14:05:00,151 Lakeview St, New York City,NY,10001 +219692,Bose SoundSport Headphones,1,99.99,2019-06-03 20:12:00,643 River St, New York City,NY,10001 +219693,20in Monitor,1,109.99,2019-06-27 15:16:00,385 Cherry St, San Francisco,CA,94016 +219694,AA Batteries (4-pack),1,3.84,2019-06-03 17:15:00,328 Adams St, San Francisco,CA,94016 +219695,AAA Batteries (4-pack),1,2.99,2019-06-27 18:38:00,956 Church St, New York City,NY,10001 +219696,AA Batteries (4-pack),1,3.84,2019-06-07 14:17:00,398 North St, Los Angeles,CA,90001 +219697,AA Batteries (4-pack),5,3.84,2019-06-11 06:53:00,369 South St, New York City,NY,10001 +219698,Apple Airpods Headphones,1,150.0,2019-06-21 01:44:00,31 Dogwood St, Seattle,WA,98101 +219699,Bose SoundSport Headphones,1,99.99,2019-06-29 18:27:00,389 Dogwood St, Atlanta,GA,30301 +219700,Bose SoundSport Headphones,1,99.99,2019-06-08 09:45:00,543 8th St, San Francisco,CA,94016 +219701,AAA Batteries (4-pack),1,2.99,2019-06-30 00:26:00,277 Church St, New York City,NY,10001 +219702,AAA Batteries (4-pack),3,2.99,2019-06-11 18:02:00,476 Willow St, Portland,ME,04101 +219703,AAA Batteries (4-pack),2,2.99,2019-06-09 14:13:00,4 Church St, Dallas,TX,75001 +219704,iPhone,1,700.0,2019-06-02 19:32:00,399 Hill St, San Francisco,CA,94016 +219705,Apple Airpods Headphones,1,150.0,2019-06-06 09:41:00,210 Main St, Boston,MA,02215 +219706,Flatscreen TV,1,300.0,2019-06-20 06:59:00,618 2nd St, San Francisco,CA,94016 +219707,Apple Airpods Headphones,1,150.0,2019-06-09 02:58:00,477 Highland St, Atlanta,GA,30301 +219708,34in Ultrawide Monitor,1,379.99,2019-06-03 19:16:00,4 Cedar St, Austin,TX,73301 +219709,AA Batteries (4-pack),2,3.84,2019-06-15 12:43:00,329 5th St, Seattle,WA,98101 +219710,AAA Batteries (4-pack),1,2.99,2019-06-11 10:48:00,968 1st St, Boston,MA,02215 +219711,Apple Airpods Headphones,1,150.0,2019-06-28 04:59:00,341 Highland St, Seattle,WA,98101 +219712,Lightning Charging Cable,1,14.95,2019-06-12 17:42:00,379 Maple St, Los Angeles,CA,90001 +219713,AAA Batteries (4-pack),1,2.99,2019-06-23 16:16:00,54 Forest St, New York City,NY,10001 +219714,34in Ultrawide Monitor,1,379.99,2019-06-09 20:09:00,249 Highland St, Portland,OR,97035 +219715,Wired Headphones,1,11.99,2019-06-16 12:44:00,65 Park St, Seattle,WA,98101 +219716,27in FHD Monitor,1,149.99,2019-06-23 12:26:00,104 5th St, San Francisco,CA,94016 +219717,Apple Airpods Headphones,1,150.0,2019-06-15 10:22:00,350 North St, San Francisco,CA,94016 +219718,AA Batteries (4-pack),1,3.84,2019-06-17 10:55:00,511 Maple St, San Francisco,CA,94016 +219719,27in 4K Gaming Monitor,1,389.99,2019-06-19 09:46:00,841 Washington St, Los Angeles,CA,90001 +219720,Apple Airpods Headphones,1,150.0,2019-06-28 00:13:00,572 Lake St, New York City,NY,10001 +219721,Bose SoundSport Headphones,1,99.99,2019-06-25 18:27:00,100 11th St, Seattle,WA,98101 +219722,Bose SoundSport Headphones,1,99.99,2019-06-22 15:48:00,865 5th St, Atlanta,GA,30301 +219723,Lightning Charging Cable,1,14.95,2019-06-27 19:02:00,201 Sunset St, San Francisco,CA,94016 +219724,AAA Batteries (4-pack),1,2.99,2019-06-23 06:58:00,571 West St, San Francisco,CA,94016 +219725,USB-C Charging Cable,1,11.95,2019-06-25 16:57:00,30 14th St, Boston,MA,02215 +219726,LG Dryer,1,600.0,2019-06-24 20:27:00,344 4th St, Los Angeles,CA,90001 +219727,AAA Batteries (4-pack),3,2.99,2019-06-12 19:26:00,961 Adams St, Atlanta,GA,30301 +219728,Lightning Charging Cable,1,14.95,2019-06-24 23:48:00,610 Center St, Austin,TX,73301 +219729,USB-C Charging Cable,1,11.95,2019-06-22 08:43:00,61 West St, Austin,TX,73301 +219730,AAA Batteries (4-pack),1,2.99,2019-06-07 09:27:00,532 5th St, New York City,NY,10001 +219731,Apple Airpods Headphones,1,150.0,2019-06-14 22:15:00,413 Ridge St, Los Angeles,CA,90001 +219732,AAA Batteries (4-pack),2,2.99,2019-06-09 12:34:00,33 Ridge St, Boston,MA,02215 +219733,Apple Airpods Headphones,1,150.0,2019-06-26 21:11:00,507 8th St, Dallas,TX,75001 +219734,Bose SoundSport Headphones,1,99.99,2019-06-28 11:55:00,846 West St, New York City,NY,10001 +219735,Lightning Charging Cable,1,14.95,2019-06-25 09:43:00,156 Hickory St, Los Angeles,CA,90001 +219736,Wired Headphones,1,11.99,2019-06-28 12:41:00,614 Ridge St, San Francisco,CA,94016 +219737,Flatscreen TV,1,300.0,2019-06-13 22:11:00,472 4th St, Atlanta,GA,30301 +219738,AA Batteries (4-pack),2,3.84,2019-06-06 11:10:00,668 Wilson St, San Francisco,CA,94016 +219739,Wired Headphones,1,11.99,2019-06-15 22:07:00,394 Cedar St, Dallas,TX,75001 +219740,Flatscreen TV,1,300.0,2019-06-08 12:08:00,248 Forest St, Portland,ME,04101 +219741,Wired Headphones,1,11.99,2019-06-24 15:44:00,392 Walnut St, Atlanta,GA,30301 +219742,Lightning Charging Cable,1,14.95,2019-06-13 21:56:00,755 Maple St, Dallas,TX,75001 +219743,27in 4K Gaming Monitor,1,389.99,2019-06-06 14:46:00,990 9th St, Dallas,TX,75001 +219744,Bose SoundSport Headphones,1,99.99,2019-06-02 12:15:00,181 9th St, Atlanta,GA,30301 +219745,USB-C Charging Cable,1,11.95,2019-06-03 10:51:00,342 7th St, Portland,OR,97035 +219746,USB-C Charging Cable,1,11.95,2019-06-17 20:53:00,700 10th St, Portland,ME,04101 +219747,27in FHD Monitor,1,149.99,2019-06-21 10:32:00,20 5th St, Atlanta,GA,30301 +219748,USB-C Charging Cable,1,11.95,2019-06-11 00:50:00,412 9th St, New York City,NY,10001 +219749,AA Batteries (4-pack),1,3.84,2019-06-29 01:23:00,983 Dogwood St, Los Angeles,CA,90001 +219750,Bose SoundSport Headphones,1,99.99,2019-06-04 22:07:00,321 Chestnut St, New York City,NY,10001 +219751,Vareebadd Phone,1,400.0,2019-06-01 15:44:00,887 4th St, Austin,TX,73301 +219751,USB-C Charging Cable,1,11.95,2019-06-01 15:44:00,887 4th St, Austin,TX,73301 +219752,Lightning Charging Cable,1,14.95,2019-06-25 22:52:00,980 Madison St, San Francisco,CA,94016 +219753,AA Batteries (4-pack),1,3.84,2019-06-01 20:11:00,913 8th St, Dallas,TX,75001 +219754,Bose SoundSport Headphones,1,99.99,2019-06-23 18:15:00,287 Church St, New York City,NY,10001 +219755,20in Monitor,1,109.99,2019-06-30 00:04:00,577 West St, New York City,NY,10001 +219756,Wired Headphones,1,11.99,2019-06-09 10:57:00,255 Spruce St, San Francisco,CA,94016 +219757,Apple Airpods Headphones,1,150.0,2019-06-08 10:29:00,138 Cherry St, Los Angeles,CA,90001 +219758,AA Batteries (4-pack),1,3.84,2019-06-12 20:07:00,773 Jefferson St, San Francisco,CA,94016 +219759,USB-C Charging Cable,1,11.95,2019-06-05 15:22:00,651 8th St, Los Angeles,CA,90001 +219760,USB-C Charging Cable,1,11.95,2019-06-21 23:26:00,515 11th St, Los Angeles,CA,90001 +219761,AAA Batteries (4-pack),3,2.99,2019-06-02 09:01:00,770 Hill St, Boston,MA,02215 +219762,AA Batteries (4-pack),3,3.84,2019-06-11 15:30:00,412 Elm St, Austin,TX,73301 +219763,34in Ultrawide Monitor,1,379.99,2019-06-01 22:05:00,420 Center St, New York City,NY,10001 +219764,20in Monitor,1,109.99,2019-06-14 14:54:00,919 Meadow St, San Francisco,CA,94016 +219765,Apple Airpods Headphones,1,150.0,2019-06-10 17:22:00,122 South St, Portland,OR,97035 +219766,Google Phone,1,600.0,2019-06-22 13:44:00,323 10th St, Dallas,TX,75001 +219766,USB-C Charging Cable,1,11.95,2019-06-22 13:44:00,323 10th St, Dallas,TX,75001 +219767,Apple Airpods Headphones,1,150.0,2019-06-03 07:53:00,506 Main St, Dallas,TX,75001 +219768,USB-C Charging Cable,1,11.95,2019-06-06 18:50:00,47 Cedar St, New York City,NY,10001 +219769,Apple Airpods Headphones,1,150.0,2019-06-23 18:51:00,41 Cedar St, New York City,NY,10001 +219770,USB-C Charging Cable,1,11.95,2019-06-03 07:22:00,727 Park St, Atlanta,GA,30301 +219771,USB-C Charging Cable,1,11.95,2019-06-20 14:03:00,197 2nd St, San Francisco,CA,94016 +219772,Wired Headphones,1,11.99,2019-06-10 19:24:00,273 Highland St, San Francisco,CA,94016 +219773,AAA Batteries (4-pack),1,2.99,2019-06-06 19:03:00,196 1st St, Boston,MA,02215 +219774,34in Ultrawide Monitor,1,379.99,2019-06-16 08:33:00,332 9th St, San Francisco,CA,94016 +219775,AAA Batteries (4-pack),2,2.99,2019-06-16 21:56:00,619 Cherry St, Los Angeles,CA,90001 +219776,Bose SoundSport Headphones,1,99.99,2019-06-19 11:31:00,623 7th St, Seattle,WA,98101 +219777,USB-C Charging Cable,1,11.95,2019-06-05 17:18:00,368 5th St, San Francisco,CA,94016 +219778,Bose SoundSport Headphones,1,99.99,2019-06-05 14:44:00,267 Spruce St, Los Angeles,CA,90001 +219779,Lightning Charging Cable,1,14.95,2019-06-24 12:48:00,591 12th St, Dallas,TX,75001 +219780,34in Ultrawide Monitor,1,379.99,2019-06-06 17:53:00,645 Meadow St, Boston,MA,02215 +219781,27in FHD Monitor,1,149.99,2019-06-11 09:42:00,337 Walnut St, Los Angeles,CA,90001 +219782,iPhone,1,700.0,2019-06-08 16:00:00,376 Johnson St, Seattle,WA,98101 +219782,Lightning Charging Cable,1,14.95,2019-06-08 16:00:00,376 Johnson St, Seattle,WA,98101 +219783,27in FHD Monitor,1,149.99,2019-06-28 00:45:00,209 South St, Austin,TX,73301 +219784,Bose SoundSport Headphones,1,99.99,2019-06-30 13:53:00,670 Lakeview St, Austin,TX,73301 +219785,Apple Airpods Headphones,1,150.0,2019-06-01 19:47:00,189 4th St, Atlanta,GA,30301 +219786,Bose SoundSport Headphones,1,99.99,2019-06-23 08:10:00,98 5th St, New York City,NY,10001 +219787,27in FHD Monitor,1,149.99,2019-06-17 08:24:00,536 Ridge St, San Francisco,CA,94016 +219788,Apple Airpods Headphones,1,150.0,2019-06-10 16:40:00,772 14th St, Austin,TX,73301 +219789,Wired Headphones,1,11.99,2019-06-09 10:36:00,532 11th St, Boston,MA,02215 +219790,Flatscreen TV,1,300.0,2019-06-13 10:05:00,901 8th St, Atlanta,GA,30301 +219791,Bose SoundSport Headphones,1,99.99,2019-06-08 11:31:00,335 River St, Portland,OR,97035 +219792,27in 4K Gaming Monitor,1,389.99,2019-06-24 15:27:00,189 Lake St, San Francisco,CA,94016 +219793,Lightning Charging Cable,1,14.95,2019-06-08 01:03:00,166 Highland St, Dallas,TX,75001 +219794,Google Phone,1,600.0,2019-06-29 19:31:00,866 Walnut St, Atlanta,GA,30301 +219795,USB-C Charging Cable,1,11.95,2019-06-23 09:16:00,633 Cherry St, Los Angeles,CA,90001 +219796,Bose SoundSport Headphones,1,99.99,2019-06-26 16:28:00,233 Cedar St, San Francisco,CA,94016 +219797,USB-C Charging Cable,1,11.95,2019-06-18 21:26:00,119 West St, Portland,OR,97035 +219798,Apple Airpods Headphones,1,150.0,2019-06-08 17:12:00,76 Spruce St, Los Angeles,CA,90001 +219799,AAA Batteries (4-pack),1,2.99,2019-06-23 22:47:00,606 Park St, Dallas,TX,75001 +219800,AA Batteries (4-pack),1,3.84,2019-06-22 21:50:00,210 Willow St, Los Angeles,CA,90001 +219801,AAA Batteries (4-pack),1,2.99,2019-06-20 20:48:00,253 Hickory St, New York City,NY,10001 +219802,USB-C Charging Cable,1,11.95,2019-06-20 22:50:00,793 Hill St, San Francisco,CA,94016 +219803,Wired Headphones,1,11.99,2019-06-08 07:04:00,954 2nd St, Los Angeles,CA,90001 +219804,USB-C Charging Cable,1,11.95,2019-06-04 09:45:00,680 Pine St, San Francisco,CA,94016 +219805,USB-C Charging Cable,1,11.95,2019-06-16 18:39:00,143 River St, San Francisco,CA,94016 +219806,USB-C Charging Cable,1,11.95,2019-06-30 08:34:00,521 West St, Los Angeles,CA,90001 +219807,Lightning Charging Cable,1,14.95,2019-06-30 21:00:00,382 10th St, New York City,NY,10001 +219808,Lightning Charging Cable,1,14.95,2019-06-10 20:01:00,859 West St, San Francisco,CA,94016 +219809,AA Batteries (4-pack),1,3.84,2019-06-16 19:42:00,814 Jackson St, Austin,TX,73301 +219810,Apple Airpods Headphones,1,150.0,2019-06-05 23:15:00,553 7th St, Los Angeles,CA,90001 +219811,Wired Headphones,1,11.99,2019-06-20 21:36:00,939 Meadow St, Austin,TX,73301 +219812,Lightning Charging Cable,2,14.95,2019-06-25 01:30:00,250 13th St, Austin,TX,73301 +219813,Apple Airpods Headphones,1,150.0,2019-06-15 21:48:00,34 Main St, San Francisco,CA,94016 +219814,34in Ultrawide Monitor,1,379.99,2019-06-06 20:55:00,172 7th St, San Francisco,CA,94016 +219815,Apple Airpods Headphones,1,150.0,2019-06-17 09:01:00,819 Walnut St, New York City,NY,10001 +219816,27in FHD Monitor,1,149.99,2019-06-09 07:58:00,847 Dogwood St, Atlanta,GA,30301 +219817,Lightning Charging Cable,2,14.95,2019-07-01 00:31:00,292 Cherry St, Los Angeles,CA,90001 +219818,Google Phone,1,600.0,2019-06-08 17:37:00,619 Jefferson St, Seattle,WA,98101 +219818,USB-C Charging Cable,1,11.95,2019-06-08 17:37:00,619 Jefferson St, Seattle,WA,98101 +219819,USB-C Charging Cable,1,11.95,2019-06-03 21:03:00,71 Church St, Dallas,TX,75001 +219820,AAA Batteries (4-pack),1,2.99,2019-06-18 17:59:00,748 Willow St, Seattle,WA,98101 +219821,USB-C Charging Cable,2,11.95,2019-06-13 17:07:00,599 Elm St, San Francisco,CA,94016 +219822,27in FHD Monitor,1,149.99,2019-06-22 19:11:00,279 Wilson St, San Francisco,CA,94016 +219823,20in Monitor,1,109.99,2019-06-20 05:31:00,29 Chestnut St, New York City,NY,10001 +219824,Macbook Pro Laptop,1,1700.0,2019-06-05 22:04:00,280 Highland St, Los Angeles,CA,90001 +219825,Wired Headphones,1,11.99,2019-06-11 08:25:00,757 2nd St, Los Angeles,CA,90001 +219826,34in Ultrawide Monitor,1,379.99,2019-06-21 20:40:00,386 Spruce St, Atlanta,GA,30301 +219827,Wired Headphones,1,11.99,2019-06-29 14:17:00,148 Elm St, Boston,MA,02215 +219828,Macbook Pro Laptop,1,1700.0,2019-06-14 01:15:00,58 Dogwood St, Los Angeles,CA,90001 +219829,Flatscreen TV,1,300.0,2019-06-09 17:04:00,612 Main St, Dallas,TX,75001 +219830,Bose SoundSport Headphones,1,99.99,2019-06-09 14:52:00,360 Jackson St, San Francisco,CA,94016 +219831,iPhone,1,700.0,2019-06-07 14:54:00,425 North St, Dallas,TX,75001 +219832,AAA Batteries (4-pack),2,2.99,2019-06-14 08:00:00,244 Forest St, Los Angeles,CA,90001 +219833,Wired Headphones,1,11.99,2019-06-06 12:06:00,945 Meadow St, San Francisco,CA,94016 +219834,Wired Headphones,1,11.99,2019-06-15 19:29:00,41 Spruce St, Los Angeles,CA,90001 +219835,Lightning Charging Cable,1,14.95,2019-06-29 15:34:00,860 River St, Los Angeles,CA,90001 +219836,USB-C Charging Cable,1,11.95,2019-06-07 18:12:00,383 11th St, New York City,NY,10001 +219837,Flatscreen TV,1,300.0,2019-06-16 06:59:00,724 Hickory St, New York City,NY,10001 +219838,AA Batteries (4-pack),1,3.84,2019-06-21 12:57:00,627 Spruce St, New York City,NY,10001 +219839,27in 4K Gaming Monitor,1,389.99,2019-06-04 19:22:00,365 Meadow St, Boston,MA,02215 +219840,iPhone,1,700.0,2019-06-15 11:07:00,69 Chestnut St, Dallas,TX,75001 +219841,27in 4K Gaming Monitor,1,389.99,2019-06-11 10:07:00,440 4th St, Seattle,WA,98101 +219842,USB-C Charging Cable,1,11.95,2019-06-08 18:40:00,770 Maple St, New York City,NY,10001 +219843,Lightning Charging Cable,2,14.95,2019-06-29 11:15:00,378 Sunset St, Atlanta,GA,30301 +219844,Bose SoundSport Headphones,1,99.99,2019-06-23 08:20:00,153 Hill St, San Francisco,CA,94016 +219845,Apple Airpods Headphones,1,150.0,2019-06-25 17:43:00,615 8th St, New York City,NY,10001 +219846,AA Batteries (4-pack),2,3.84,2019-06-20 11:07:00,139 Pine St, San Francisco,CA,94016 +219847,Macbook Pro Laptop,1,1700.0,2019-06-11 19:09:00,193 1st St, Portland,OR,97035 +219848,34in Ultrawide Monitor,1,379.99,2019-06-21 08:31:00,911 Maple St, Seattle,WA,98101 +219849,Google Phone,1,600.0,2019-06-16 20:39:00,388 Main St, Los Angeles,CA,90001 +219850,AA Batteries (4-pack),1,3.84,2019-06-30 11:58:00,616 8th St, Seattle,WA,98101 +219851,Bose SoundSport Headphones,1,99.99,2019-06-23 17:46:00,815 River St, Austin,TX,73301 +219852,27in 4K Gaming Monitor,1,389.99,2019-06-04 17:49:00,157 14th St, Austin,TX,73301 +219853,ThinkPad Laptop,1,999.99,2019-06-14 20:16:00,531 Cherry St, Portland,OR,97035 +219854,AA Batteries (4-pack),2,3.84,2019-06-24 18:24:00,596 14th St, Austin,TX,73301 +219855,AA Batteries (4-pack),2,3.84,2019-06-26 21:53:00,800 Washington St, Los Angeles,CA,90001 +219856,Lightning Charging Cable,1,14.95,2019-06-23 11:23:00,954 Dogwood St, Boston,MA,02215 +219857,Wired Headphones,1,11.99,2019-06-19 16:36:00,106 4th St, Los Angeles,CA,90001 +219858,AAA Batteries (4-pack),1,2.99,2019-06-10 22:21:00,164 1st St, Los Angeles,CA,90001 +219859,iPhone,1,700.0,2019-06-14 19:09:00,794 Chestnut St, Portland,OR,97035 +219860,Lightning Charging Cable,1,14.95,2019-06-19 20:02:00,497 1st St, Seattle,WA,98101 +219861,Bose SoundSport Headphones,1,99.99,2019-06-14 11:09:00,845 Willow St, Portland,OR,97035 +219862,AAA Batteries (4-pack),1,2.99,2019-06-22 12:06:00,699 10th St, San Francisco,CA,94016 +219863,Bose SoundSport Headphones,1,99.99,2019-06-30 19:49:00,969 River St, New York City,NY,10001 +219864,AA Batteries (4-pack),1,3.84,2019-06-24 22:01:00,483 12th St, Los Angeles,CA,90001 +219865,AAA Batteries (4-pack),1,2.99,2019-06-24 19:36:00,950 North St, New York City,NY,10001 +219866,iPhone,1,700.0,2019-06-30 14:03:00,804 Church St, San Francisco,CA,94016 +219867,Apple Airpods Headphones,1,150.0,2019-06-05 13:51:00,640 Lake St, Dallas,TX,75001 +219868,Wired Headphones,1,11.99,2019-06-25 09:29:00,824 North St, San Francisco,CA,94016 +219869,34in Ultrawide Monitor,1,379.99,2019-06-13 11:50:00,978 Wilson St, San Francisco,CA,94016 +219870,USB-C Charging Cable,1,11.95,2019-06-27 11:17:00,797 7th St, Seattle,WA,98101 +219871,AAA Batteries (4-pack),2,2.99,2019-06-11 05:44:00,980 Jefferson St, New York City,NY,10001 +219872,Wired Headphones,1,11.99,2019-06-27 13:49:00,846 9th St, Seattle,WA,98101 +219873,AAA Batteries (4-pack),1,2.99,2019-06-18 09:42:00,838 12th St, Los Angeles,CA,90001 +219874,USB-C Charging Cable,1,11.95,2019-06-13 06:40:00,925 Chestnut St, Atlanta,GA,30301 +219875,Wired Headphones,1,11.99,2019-06-13 12:07:00,692 9th St, Boston,MA,02215 +219876,Apple Airpods Headphones,1,150.0,2019-06-12 00:45:00,693 Spruce St, Dallas,TX,75001 +219877,Lightning Charging Cable,1,14.95,2019-06-19 12:38:00,637 Park St, Dallas,TX,75001 +219878,ThinkPad Laptop,1,999.99,2019-06-10 19:05:00,692 Lake St, Boston,MA,02215 +219879,Lightning Charging Cable,1,14.95,2019-06-10 13:26:00,12 13th St, Boston,MA,02215 +219880,AA Batteries (4-pack),1,3.84,2019-06-21 17:41:00,928 12th St, San Francisco,CA,94016 +219881,Lightning Charging Cable,1,14.95,2019-06-27 21:32:00,45 Meadow St, San Francisco,CA,94016 +219882,AAA Batteries (4-pack),1,2.99,2019-06-14 20:28:00,656 9th St, Boston,MA,02215 +219883,AAA Batteries (4-pack),1,2.99,2019-06-17 19:32:00,305 Park St, Boston,MA,02215 +219884,Wired Headphones,2,11.99,2019-06-03 11:40:00,594 Hill St, Boston,MA,02215 +219885,20in Monitor,1,109.99,2019-06-28 14:33:00,381 Hickory St, Dallas,TX,75001 +219886,USB-C Charging Cable,1,11.95,2019-06-26 14:04:00,812 Hill St, Los Angeles,CA,90001 +219887,Lightning Charging Cable,1,14.95,2019-06-18 20:20:00,486 1st St, New York City,NY,10001 +219888,Lightning Charging Cable,1,14.95,2019-06-29 23:31:00,704 6th St, Austin,TX,73301 +219889,34in Ultrawide Monitor,1,379.99,2019-06-27 09:08:00,57 Maple St, New York City,NY,10001 +219890,Lightning Charging Cable,1,14.95,2019-06-21 10:41:00,829 Chestnut St, San Francisco,CA,94016 +219891,Google Phone,1,600.0,2019-06-07 14:54:00,445 River St, Dallas,TX,75001 +219892,Lightning Charging Cable,1,14.95,2019-06-06 14:50:00,353 Wilson St, New York City,NY,10001 +219893,USB-C Charging Cable,1,11.95,2019-06-16 22:42:00,338 Adams St, Austin,TX,73301 +219894,AAA Batteries (4-pack),2,2.99,2019-06-22 15:50:00,490 Maple St, New York City,NY,10001 +219895,27in 4K Gaming Monitor,1,389.99,2019-06-04 20:32:00,848 7th St, Seattle,WA,98101 +219896,Lightning Charging Cable,1,14.95,2019-06-18 13:26:00,636 13th St, Austin,TX,73301 +219897,Wired Headphones,1,11.99,2019-06-29 15:45:00,496 Sunset St, Seattle,WA,98101 +219898,Wired Headphones,1,11.99,2019-06-15 08:34:00,50 6th St, Boston,MA,02215 +219899,USB-C Charging Cable,1,11.95,2019-06-14 11:06:00,672 12th St, Atlanta,GA,30301 +219900,Apple Airpods Headphones,1,150.0,2019-06-06 11:35:00,659 7th St, Los Angeles,CA,90001 +219901,Apple Airpods Headphones,1,150.0,2019-06-08 20:13:00,899 West St, Los Angeles,CA,90001 +219902,USB-C Charging Cable,1,11.95,2019-06-17 14:37:00,181 Lakeview St, Boston,MA,02215 +219903,AA Batteries (4-pack),3,3.84,2019-06-09 12:14:00,954 Maple St, Portland,ME,04101 +219904,iPhone,1,700.0,2019-06-28 16:28:00,79 12th St, Atlanta,GA,30301 +219904,Lightning Charging Cable,1,14.95,2019-06-28 16:28:00,79 12th St, Atlanta,GA,30301 +219905,AA Batteries (4-pack),1,3.84,2019-06-09 11:13:00,843 Wilson St, San Francisco,CA,94016 +219906,Lightning Charging Cable,1,14.95,2019-06-06 10:25:00,338 Lincoln St, Boston,MA,02215 +219907,ThinkPad Laptop,1,999.99,2019-06-24 17:55:00,240 Park St, Boston,MA,02215 +219908,AAA Batteries (4-pack),2,2.99,2019-06-05 09:16:00,93 Ridge St, San Francisco,CA,94016 +219909,27in FHD Monitor,1,149.99,2019-06-04 12:31:00,926 14th St, New York City,NY,10001 +219910,USB-C Charging Cable,1,11.95,2019-06-01 16:59:00,296 Church St, Atlanta,GA,30301 +219911,Apple Airpods Headphones,1,150.0,2019-06-01 23:50:00,208 Center St, San Francisco,CA,94016 +219912,AA Batteries (4-pack),1,3.84,2019-06-21 16:49:00,981 Hill St, Austin,TX,73301 +219913,AAA Batteries (4-pack),1,2.99,2019-06-01 20:17:00,255 South St, San Francisco,CA,94016 +219914,Flatscreen TV,1,300.0,2019-06-15 23:42:00,471 North St, Dallas,TX,75001 +219915,Bose SoundSport Headphones,1,99.99,2019-06-22 20:54:00,213 10th St, Los Angeles,CA,90001 +219916,Apple Airpods Headphones,1,150.0,2019-06-14 09:58:00,416 Center St, Austin,TX,73301 +219917,USB-C Charging Cable,1,11.95,2019-06-01 08:59:00,905 Highland St, Portland,ME,04101 +219918,AA Batteries (4-pack),5,3.84,2019-06-27 17:56:00,203 River St, New York City,NY,10001 +219919,Flatscreen TV,1,300.0,2019-06-23 20:30:00,83 River St, Boston,MA,02215 +219920,34in Ultrawide Monitor,1,379.99,2019-06-06 09:17:00,214 Maple St, New York City,NY,10001 +219921,Wired Headphones,1,11.99,2019-06-21 22:08:00,384 Hill St, Atlanta,GA,30301 +219922,USB-C Charging Cable,1,11.95,2019-06-26 18:49:00,167 Spruce St, Seattle,WA,98101 +219923,Lightning Charging Cable,1,14.95,2019-06-06 08:40:00,360 Spruce St, San Francisco,CA,94016 +219924,USB-C Charging Cable,1,11.95,2019-06-14 12:40:00,190 Main St, Dallas,TX,75001 +219925,USB-C Charging Cable,1,11.95,2019-06-05 12:37:00,857 Cedar St, Atlanta,GA,30301 +219926,27in 4K Gaming Monitor,1,389.99,2019-06-03 22:37:00,848 Center St, Los Angeles,CA,90001 +219927,Bose SoundSport Headphones,1,99.99,2019-06-14 19:09:00,563 Washington St, Dallas,TX,75001 +219928,20in Monitor,1,109.99,2019-06-23 12:35:00,843 Forest St, Boston,MA,02215 +219929,Bose SoundSport Headphones,1,99.99,2019-06-13 12:39:00,671 9th St, Los Angeles,CA,90001 +219930,Apple Airpods Headphones,1,150.0,2019-06-29 19:08:00,859 11th St, Los Angeles,CA,90001 +219931,Google Phone,1,600.0,2019-06-04 10:46:00,471 Madison St, Seattle,WA,98101 +219932,USB-C Charging Cable,1,11.95,2019-06-24 18:42:00,848 1st St, Boston,MA,02215 +219933,iPhone,1,700.0,2019-06-07 14:10:00,347 Lakeview St, San Francisco,CA,94016 +219934,Bose SoundSport Headphones,1,99.99,2019-06-18 17:42:00,313 6th St, San Francisco,CA,94016 +219935,Lightning Charging Cable,1,14.95,2019-06-17 15:16:00,159 Willow St, Los Angeles,CA,90001 +219936,Apple Airpods Headphones,1,150.0,2019-06-16 02:02:00,716 River St, Austin,TX,73301 +219937,Apple Airpods Headphones,1,150.0,2019-06-08 16:05:00,810 6th St, Boston,MA,02215 +219938,Vareebadd Phone,1,400.0,2019-06-11 09:22:00,297 Washington St, Boston,MA,02215 +219939,27in FHD Monitor,1,149.99,2019-06-11 10:52:00,715 South St, New York City,NY,10001 +219940,AAA Batteries (4-pack),3,2.99,2019-06-03 10:22:00,999 Willow St, Boston,MA,02215 +219941,AA Batteries (4-pack),2,3.84,2019-06-10 12:28:00,997 Park St, San Francisco,CA,94016 +219942,USB-C Charging Cable,1,11.95,2019-06-02 21:46:00,83 Walnut St, Los Angeles,CA,90001 +219943,AA Batteries (4-pack),1,3.84,2019-06-02 12:19:00,152 Spruce St, San Francisco,CA,94016 +219944,USB-C Charging Cable,1,11.95,2019-06-13 18:32:00,567 North St, Seattle,WA,98101 +219945,AAA Batteries (4-pack),1,2.99,2019-06-04 14:18:00,151 Ridge St, San Francisco,CA,94016 +219946,Bose SoundSport Headphones,1,99.99,2019-06-24 14:44:00,545 6th St, New York City,NY,10001 +219947,Apple Airpods Headphones,1,150.0,2019-06-19 22:50:00,485 2nd St, New York City,NY,10001 +219948,USB-C Charging Cable,1,11.95,2019-06-21 17:50:00,211 Cedar St, San Francisco,CA,94016 +219949,Google Phone,1,600.0,2019-06-19 22:54:00,524 Washington St, Austin,TX,73301 +219950,Flatscreen TV,1,300.0,2019-06-11 12:45:00,357 Elm St, Austin,TX,73301 +219950,AAA Batteries (4-pack),3,2.99,2019-06-11 12:45:00,357 Elm St, Austin,TX,73301 +219951,AA Batteries (4-pack),2,3.84,2019-06-25 20:01:00,688 West St, Seattle,WA,98101 +219952,27in 4K Gaming Monitor,1,389.99,2019-06-28 15:40:00,580 5th St, San Francisco,CA,94016 +219953,Lightning Charging Cable,2,14.95,2019-06-15 20:34:00,948 Washington St, Atlanta,GA,30301 +219954,ThinkPad Laptop,1,999.99,2019-06-17 20:08:00,805 Spruce St, Boston,MA,02215 +219955,Bose SoundSport Headphones,1,99.99,2019-06-04 11:47:00,695 Ridge St, Atlanta,GA,30301 +219956,AA Batteries (4-pack),1,3.84,2019-06-07 19:02:00,886 Hickory St, San Francisco,CA,94016 +219956,Lightning Charging Cable,1,14.95,2019-06-07 19:02:00,886 Hickory St, San Francisco,CA,94016 +219957,Wired Headphones,1,11.99,2019-06-10 10:11:00,65 Lakeview St, Seattle,WA,98101 +219958,AA Batteries (4-pack),1,3.84,2019-06-02 21:52:00,307 Ridge St, New York City,NY,10001 +219959,AAA Batteries (4-pack),3,2.99,2019-06-30 16:00:00,945 Lake St, Portland,OR,97035 +219960,Lightning Charging Cable,1,14.95,2019-06-18 14:32:00,688 Lincoln St, Atlanta,GA,30301 +219961,USB-C Charging Cable,1,11.95,2019-06-01 21:01:00,845 10th St, Portland,ME,04101 +219962,AAA Batteries (4-pack),1,2.99,2019-06-27 21:07:00,8 Jefferson St, Los Angeles,CA,90001 +219963,USB-C Charging Cable,1,11.95,2019-06-04 11:03:00,905 South St, Boston,MA,02215 +219964,Lightning Charging Cable,1,14.95,2019-06-19 00:26:00,352 2nd St, San Francisco,CA,94016 +219965,iPhone,1,700.0,2019-06-08 17:42:00,170 2nd St, San Francisco,CA,94016 +219966,34in Ultrawide Monitor,1,379.99,2019-06-12 10:36:00,571 Walnut St, Austin,TX,73301 +219967,Bose SoundSport Headphones,1,99.99,2019-06-15 09:00:00,712 Highland St, Atlanta,GA,30301 +219968,27in 4K Gaming Monitor,1,389.99,2019-06-01 16:34:00,255 Sunset St, Portland,OR,97035 +219969,USB-C Charging Cable,1,11.95,2019-06-10 11:12:00,971 5th St, New York City,NY,10001 +219970,Lightning Charging Cable,1,14.95,2019-06-08 12:05:00,975 Highland St, New York City,NY,10001 +219971,Bose SoundSport Headphones,1,99.99,2019-06-17 12:14:00,919 Elm St, Boston,MA,02215 +219972,AA Batteries (4-pack),1,3.84,2019-06-12 23:45:00,869 River St, Los Angeles,CA,90001 +219973,Google Phone,1,600.0,2019-06-01 19:49:00,579 Jefferson St, Los Angeles,CA,90001 +219974,Apple Airpods Headphones,1,150.0,2019-06-18 20:35:00,498 Lakeview St, New York City,NY,10001 +219975,Lightning Charging Cable,1,14.95,2019-06-20 01:53:00,540 5th St, San Francisco,CA,94016 +219976,Vareebadd Phone,1,400.0,2019-06-23 13:19:00,439 Madison St, Seattle,WA,98101 +219977,Lightning Charging Cable,1,14.95,2019-06-21 09:24:00,797 8th St, San Francisco,CA,94016 +219978,Lightning Charging Cable,1,14.95,2019-06-06 14:39:00,805 7th St, New York City,NY,10001 +219979,27in FHD Monitor,1,149.99,2019-06-22 15:58:00,786 9th St, Portland,OR,97035 +219980,AAA Batteries (4-pack),1,2.99,2019-06-06 20:37:00,850 9th St, San Francisco,CA,94016 +219981,Bose SoundSport Headphones,1,99.99,2019-06-28 09:10:00,859 Hickory St, Boston,MA,02215 +219982,AAA Batteries (4-pack),3,2.99,2019-06-03 11:34:00,322 1st St, New York City,NY,10001 +219983,Apple Airpods Headphones,1,150.0,2019-06-18 20:04:00,807 Meadow St, Atlanta,GA,30301 +219984,Lightning Charging Cable,2,14.95,2019-06-07 01:31:00,474 Hickory St, Los Angeles,CA,90001 +219985,Wired Headphones,1,11.99,2019-06-19 21:29:00,456 Chestnut St, Boston,MA,02215 +219986,Wired Headphones,1,11.99,2019-06-09 09:55:00,503 5th St, Atlanta,GA,30301 +219987,Wired Headphones,1,11.99,2019-06-05 11:47:00,626 4th St, Seattle,WA,98101 +219988,Apple Airpods Headphones,1,150.0,2019-06-15 14:39:00,192 Washington St, Los Angeles,CA,90001 +219989,Lightning Charging Cable,1,14.95,2019-06-21 15:48:00,565 7th St, Dallas,TX,75001 +219990,AAA Batteries (4-pack),1,2.99,2019-06-11 01:29:00,757 Forest St, New York City,NY,10001 +219991,Lightning Charging Cable,1,14.95,2019-06-29 22:52:00,100 Church St, San Francisco,CA,94016 +219992,AA Batteries (4-pack),2,3.84,2019-06-26 18:13:00,829 14th St, New York City,NY,10001 +219993,iPhone,1,700.0,2019-06-28 14:40:00,528 Spruce St, Boston,MA,02215 +219994,Flatscreen TV,1,300.0,2019-06-08 06:34:00,679 Cedar St, San Francisco,CA,94016 +219995,iPhone,1,700.0,2019-06-01 20:18:00,130 Park St, Los Angeles,CA,90001 +219996,AA Batteries (4-pack),3,3.84,2019-06-26 08:35:00,396 Lincoln St, New York City,NY,10001 +219997,Wired Headphones,1,11.99,2019-06-21 13:23:00,715 Highland St, Austin,TX,73301 +219998,27in FHD Monitor,1,149.99,2019-06-10 09:16:00,330 Wilson St, New York City,NY,10001 +219999,Lightning Charging Cable,1,14.95,2019-06-08 02:21:00,477 Lake St, Atlanta,GA,30301 +220000,Lightning Charging Cable,1,14.95,2019-06-27 08:31:00,881 10th St, Atlanta,GA,30301 +220001,Lightning Charging Cable,1,14.95,2019-06-26 21:53:00,999 Jackson St, New York City,NY,10001 +220002,Lightning Charging Cable,1,14.95,2019-06-26 22:57:00,307 West St, New York City,NY,10001 +220003,AA Batteries (4-pack),2,3.84,2019-06-08 14:48:00,27 13th St, Seattle,WA,98101 +220004,27in FHD Monitor,1,149.99,2019-06-05 20:09:00,183 Pine St, Seattle,WA,98101 +220005,AAA Batteries (4-pack),2,2.99,2019-06-15 13:40:00,951 6th St, New York City,NY,10001 +220006,AA Batteries (4-pack),1,3.84,2019-06-12 10:28:00,86 Willow St, New York City,NY,10001 +220007,USB-C Charging Cable,1,11.95,2019-06-22 08:51:00,368 2nd St, New York City,NY,10001 +220008,Lightning Charging Cable,1,14.95,2019-06-12 19:32:00,720 Elm St, New York City,NY,10001 +220009,34in Ultrawide Monitor,1,379.99,2019-06-02 17:34:00,601 10th St, Seattle,WA,98101 +220010,Lightning Charging Cable,1,14.95,2019-06-02 13:00:00,591 Willow St, Atlanta,GA,30301 +220011,Lightning Charging Cable,1,14.95,2019-06-07 07:26:00,642 8th St, Boston,MA,02215 +220012,Bose SoundSport Headphones,1,99.99,2019-06-22 10:32:00,295 Hill St, Seattle,WA,98101 +220013,Google Phone,1,600.0,2019-06-27 16:59:00,79 4th St, San Francisco,CA,94016 +220013,Bose SoundSport Headphones,1,99.99,2019-06-27 16:59:00,79 4th St, San Francisco,CA,94016 +220013,27in FHD Monitor,1,149.99,2019-06-27 16:59:00,79 4th St, San Francisco,CA,94016 +220014,Flatscreen TV,1,300.0,2019-06-02 22:47:00,503 Madison St, Los Angeles,CA,90001 +220015,Lightning Charging Cable,1,14.95,2019-06-17 14:42:00,731 Forest St, Atlanta,GA,30301 +220016,AA Batteries (4-pack),3,3.84,2019-06-25 08:43:00,836 Pine St, Dallas,TX,75001 +220017,AAA Batteries (4-pack),1,2.99,2019-06-22 12:52:00,751 Jefferson St, Portland,ME,04101 +220018,AAA Batteries (4-pack),1,2.99,2019-06-25 22:50:00,337 11th St, Seattle,WA,98101 +220019,20in Monitor,1,109.99,2019-06-10 15:25:00,330 West St, Los Angeles,CA,90001 +220020,Bose SoundSport Headphones,1,99.99,2019-06-28 16:10:00,697 West St, Seattle,WA,98101 +220021,USB-C Charging Cable,1,11.95,2019-06-17 14:32:00,992 Park St, New York City,NY,10001 +220022,Lightning Charging Cable,1,14.95,2019-06-07 12:19:00,89 Lake St, Los Angeles,CA,90001 +220023,USB-C Charging Cable,1,11.95,2019-06-13 20:31:00,199 4th St, San Francisco,CA,94016 +220024,34in Ultrawide Monitor,1,379.99,2019-06-12 11:03:00,36 14th St, Dallas,TX,75001 +220025,Macbook Pro Laptop,1,1700.0,2019-06-09 13:23:00,35 5th St, San Francisco,CA,94016 +220026,Wired Headphones,2,11.99,2019-06-02 14:33:00,751 14th St, Boston,MA,02215 +220027,iPhone,1,700.0,2019-06-02 11:38:00,407 Chestnut St, Dallas,TX,75001 +220028,AA Batteries (4-pack),1,3.84,2019-06-19 10:30:00,519 6th St, Dallas,TX,75001 +220029,AA Batteries (4-pack),2,3.84,2019-06-29 15:50:00,505 Hickory St, Portland,OR,97035 +220030,AAA Batteries (4-pack),1,2.99,2019-06-21 10:20:00,161 11th St, Atlanta,GA,30301 +220031,Wired Headphones,1,11.99,2019-06-15 20:21:00,546 9th St, Dallas,TX,75001 +220032,27in 4K Gaming Monitor,1,389.99,2019-06-09 20:52:00,821 South St, Los Angeles,CA,90001 +220033,34in Ultrawide Monitor,1,379.99,2019-06-29 20:21:00,984 Meadow St, Seattle,WA,98101 +220034,34in Ultrawide Monitor,1,379.99,2019-06-19 16:45:00,153 West St, San Francisco,CA,94016 +220035,USB-C Charging Cable,1,11.95,2019-06-03 19:39:00,754 11th St, New York City,NY,10001 +220036,USB-C Charging Cable,1,11.95,2019-06-06 17:22:00,218 Center St, San Francisco,CA,94016 +220037,Lightning Charging Cable,1,14.95,2019-06-22 17:43:00,664 14th St, Austin,TX,73301 +220038,Bose SoundSport Headphones,1,99.99,2019-06-22 21:41:00,181 Pine St, San Francisco,CA,94016 +220039,AAA Batteries (4-pack),2,2.99,2019-06-11 22:08:00,748 Sunset St, New York City,NY,10001 +220040,Apple Airpods Headphones,1,150.0,2019-06-23 09:27:00,908 River St, Austin,TX,73301 +220041,Flatscreen TV,1,300.0,2019-06-21 23:10:00,475 1st St, Seattle,WA,98101 +220042,Wired Headphones,1,11.99,2019-06-12 17:03:00,427 Main St, Los Angeles,CA,90001 +220043,20in Monitor,1,109.99,2019-06-03 22:19:00,184 Lake St, Portland,OR,97035 +220044,AAA Batteries (4-pack),2,2.99,2019-06-18 14:35:00,612 Wilson St, Dallas,TX,75001 +220045,Lightning Charging Cable,1,14.95,2019-06-10 10:25:00,412 Johnson St, New York City,NY,10001 +220046,Macbook Pro Laptop,1,1700.0,2019-06-10 21:53:00,740 Hickory St, Dallas,TX,75001 +220047,27in 4K Gaming Monitor,1,389.99,2019-06-17 13:00:00,284 2nd St, Los Angeles,CA,90001 +220048,Bose SoundSport Headphones,1,99.99,2019-06-15 16:01:00,770 Chestnut St, New York City,NY,10001 +220049,Bose SoundSport Headphones,1,99.99,2019-06-08 09:39:00,892 10th St, San Francisco,CA,94016 +220050,20in Monitor,1,109.99,2019-06-27 17:09:00,875 10th St, Dallas,TX,75001 +220051,20in Monitor,1,109.99,2019-06-09 21:18:00,434 Highland St, Los Angeles,CA,90001 +220052,iPhone,1,700.0,2019-06-11 22:32:00,794 1st St, Boston,MA,02215 +220052,Lightning Charging Cable,1,14.95,2019-06-11 22:32:00,794 1st St, Boston,MA,02215 +220053,USB-C Charging Cable,1,11.95,2019-06-25 16:13:00,138 9th St, San Francisco,CA,94016 +220054,AAA Batteries (4-pack),2,2.99,2019-06-13 15:56:00,200 Highland St, New York City,NY,10001 +220055,Lightning Charging Cable,1,14.95,2019-06-28 22:29:00,929 10th St, Atlanta,GA,30301 +220056,Flatscreen TV,1,300.0,2019-06-17 10:14:00,189 Adams St, San Francisco,CA,94016 +220057,Lightning Charging Cable,1,14.95,2019-06-29 21:17:00,910 9th St, Los Angeles,CA,90001 +220058,Vareebadd Phone,1,400.0,2019-06-04 21:44:00,616 Sunset St, Dallas,TX,75001 +220059,20in Monitor,1,109.99,2019-06-23 14:49:00,391 Cedar St, Los Angeles,CA,90001 +220060,ThinkPad Laptop,1,999.99,2019-06-30 10:21:00,350 Lake St, Seattle,WA,98101 +220061,Wired Headphones,1,11.99,2019-06-26 17:20:00,797 4th St, Portland,OR,97035 +220062,ThinkPad Laptop,1,999.99,2019-06-06 15:51:00,600 Cedar St, Los Angeles,CA,90001 +220063,34in Ultrawide Monitor,1,379.99,2019-06-27 10:22:00,561 7th St, New York City,NY,10001 +220064,Lightning Charging Cable,1,14.95,2019-06-06 17:24:00,800 Jackson St, Boston,MA,02215 +220065,Apple Airpods Headphones,1,150.0,2019-06-28 23:01:00,545 River St, Seattle,WA,98101 +220066,AA Batteries (4-pack),1,3.84,2019-06-17 08:46:00,585 Walnut St, Austin,TX,73301 +220067,27in FHD Monitor,1,149.99,2019-06-14 00:36:00,694 Willow St, Seattle,WA,98101 +220068,AAA Batteries (4-pack),1,2.99,2019-06-25 00:20:00,232 Wilson St, San Francisco,CA,94016 +220069,Macbook Pro Laptop,1,1700.0,2019-06-28 20:21:00,715 Washington St, New York City,NY,10001 +220070,Apple Airpods Headphones,1,150.0,2019-06-16 19:29:00,87 6th St, Los Angeles,CA,90001 +220070,Bose SoundSport Headphones,1,99.99,2019-06-16 19:29:00,87 6th St, Los Angeles,CA,90001 +220071,Flatscreen TV,1,300.0,2019-06-07 10:17:00,639 12th St, Portland,OR,97035 +220072,iPhone,1,700.0,2019-06-09 19:05:00,585 1st St, Seattle,WA,98101 +220073,Flatscreen TV,1,300.0,2019-06-23 22:24:00,280 Meadow St, Austin,TX,73301 +220074,Apple Airpods Headphones,1,150.0,2019-06-28 07:45:00,989 Elm St, Dallas,TX,75001 +220075,Wired Headphones,1,11.99,2019-06-01 11:09:00,751 5th St, Dallas,TX,75001 +220076,AA Batteries (4-pack),2,3.84,2019-06-14 17:57:00,30 Hickory St, New York City,NY,10001 +220077,27in 4K Gaming Monitor,1,389.99,2019-06-02 20:28:00,49 West St, New York City,NY,10001 +220078,27in 4K Gaming Monitor,1,389.99,2019-06-27 10:50:00,302 Cedar St, Los Angeles,CA,90001 +220079,USB-C Charging Cable,1,11.95,2019-06-18 07:49:00,622 Madison St, Seattle,WA,98101 +220080,Lightning Charging Cable,1,14.95,2019-06-19 14:26:00,959 9th St, Austin,TX,73301 +220081,Lightning Charging Cable,1,14.95,2019-06-12 10:33:00,887 Sunset St, New York City,NY,10001 +220082,34in Ultrawide Monitor,1,379.99,2019-06-13 18:07:00,226 Cedar St, Atlanta,GA,30301 +220083,AA Batteries (4-pack),1,3.84,2019-06-24 13:02:00,351 Cherry St, Austin,TX,73301 +220084,USB-C Charging Cable,1,11.95,2019-06-22 14:14:00,994 Spruce St, Seattle,WA,98101 +220085,AAA Batteries (4-pack),2,2.99,2019-06-04 16:58:00,165 Dogwood St, Seattle,WA,98101 +220086,34in Ultrawide Monitor,1,379.99,2019-06-28 13:53:00,568 Lake St, New York City,NY,10001 +220087,Flatscreen TV,1,300.0,2019-06-13 09:11:00,216 Cherry St, Los Angeles,CA,90001 +220088,ThinkPad Laptop,1,999.99,2019-06-30 11:49:00,393 Forest St, Austin,TX,73301 +220089,Wired Headphones,1,11.99,2019-06-21 16:06:00,103 Willow St, San Francisco,CA,94016 +220090,Wired Headphones,1,11.99,2019-06-16 18:26:00,500 Madison St, Los Angeles,CA,90001 +220091,Lightning Charging Cable,1,14.95,2019-06-11 17:11:00,239 Madison St, Boston,MA,02215 +220092,27in 4K Gaming Monitor,1,389.99,2019-06-04 21:33:00,953 Main St, Austin,TX,73301 +220093,27in FHD Monitor,1,149.99,2019-06-07 21:23:00,529 Pine St, San Francisco,CA,94016 +220094,Lightning Charging Cable,1,14.95,2019-06-03 21:18:00,876 Dogwood St, Los Angeles,CA,90001 +220095,USB-C Charging Cable,1,11.95,2019-06-11 21:02:00,986 Maple St, Seattle,WA,98101 +220096,ThinkPad Laptop,1,999.99,2019-06-12 08:14:00,791 Church St, Dallas,TX,75001 +220097,Wired Headphones,1,11.99,2019-06-19 14:25:00,169 8th St, Los Angeles,CA,90001 +220098,USB-C Charging Cable,1,11.95,2019-06-30 13:57:00,147 Cedar St, San Francisco,CA,94016 +220099,Apple Airpods Headphones,1,150.0,2019-06-27 17:20:00,271 Adams St, San Francisco,CA,94016 +220100,Apple Airpods Headphones,1,150.0,2019-06-25 18:18:00,547 Jackson St, Atlanta,GA,30301 +220101,USB-C Charging Cable,1,11.95,2019-06-03 18:18:00,140 Hickory St, Los Angeles,CA,90001 +220102,ThinkPad Laptop,1,999.99,2019-06-21 13:30:00,507 Washington St, Los Angeles,CA,90001 +220103,Apple Airpods Headphones,1,150.0,2019-06-26 12:18:00,288 South St, Austin,TX,73301 +220104,Bose SoundSport Headphones,1,99.99,2019-06-02 09:19:00,280 Lakeview St, San Francisco,CA,94016 +220105,iPhone,1,700.0,2019-06-21 11:29:00,14 Washington St, Austin,TX,73301 +220106,AAA Batteries (4-pack),1,2.99,2019-06-11 19:52:00,285 Forest St, Los Angeles,CA,90001 +220107,USB-C Charging Cable,1,11.95,2019-06-08 21:48:00,327 Main St, Dallas,TX,75001 +220108,Lightning Charging Cable,1,14.95,2019-06-05 12:26:00,390 Lake St, New York City,NY,10001 +220109,Wired Headphones,1,11.99,2019-06-04 23:34:00,34 Chestnut St, Los Angeles,CA,90001 +220110,Apple Airpods Headphones,1,150.0,2019-06-24 08:57:00,179 8th St, Seattle,WA,98101 +220111,27in 4K Gaming Monitor,1,389.99,2019-06-13 20:14:00,356 2nd St, San Francisco,CA,94016 +220112,AAA Batteries (4-pack),1,2.99,2019-06-22 19:48:00,231 Sunset St, San Francisco,CA,94016 +220113,AAA Batteries (4-pack),1,2.99,2019-06-17 18:38:00,80 7th St, San Francisco,CA,94016 +220114,Lightning Charging Cable,1,14.95,2019-07-01 01:31:00,419 Walnut St, Dallas,TX,75001 +220115,Vareebadd Phone,1,400.0,2019-06-16 09:49:00,176 14th St, Dallas,TX,75001 +220116,Bose SoundSport Headphones,1,99.99,2019-06-20 01:36:00,575 7th St, Los Angeles,CA,90001 +220117,Lightning Charging Cable,1,14.95,2019-06-12 14:05:00,854 Lincoln St, New York City,NY,10001 +220118,ThinkPad Laptop,1,999.99,2019-06-19 23:08:00,359 14th St, New York City,NY,10001 +220119,27in 4K Gaming Monitor,1,389.99,2019-06-14 09:16:00,80 7th St, San Francisco,CA,94016 +220120,Bose SoundSport Headphones,1,99.99,2019-06-06 14:27:00,441 Chestnut St, Portland,OR,97035 +220121,20in Monitor,1,109.99,2019-06-22 10:30:00,41 13th St, New York City,NY,10001 +220122,Wired Headphones,1,11.99,2019-06-27 17:10:00,781 Cedar St, New York City,NY,10001 +220123,Wired Headphones,2,11.99,2019-06-17 05:59:00,522 Jackson St, Austin,TX,73301 +220124,USB-C Charging Cable,1,11.95,2019-06-12 21:02:00,525 Jackson St, San Francisco,CA,94016 +220125,Macbook Pro Laptop,1,1700.0,2019-06-06 11:34:00,560 Elm St, San Francisco,CA,94016 +220126,AAA Batteries (4-pack),1,2.99,2019-06-04 16:07:00,174 Wilson St, Dallas,TX,75001 +220127,Wired Headphones,1,11.99,2019-06-10 09:25:00,803 Church St, Los Angeles,CA,90001 +220128,USB-C Charging Cable,1,11.95,2019-06-17 12:58:00,687 Lincoln St, San Francisco,CA,94016 +220129,27in FHD Monitor,1,149.99,2019-06-06 10:06:00,754 11th St, San Francisco,CA,94016 +220130,AAA Batteries (4-pack),1,2.99,2019-06-08 18:44:00,228 South St, Atlanta,GA,30301 +220131,AA Batteries (4-pack),2,3.84,2019-06-06 18:28:00,214 Dogwood St, San Francisco,CA,94016 +220132,20in Monitor,1,109.99,2019-06-02 12:24:00,282 Cedar St, Seattle,WA,98101 +220133,Apple Airpods Headphones,1,150.0,2019-06-18 21:36:00,240 4th St, Los Angeles,CA,90001 +220134,Google Phone,1,600.0,2019-06-28 23:32:00,751 11th St, Atlanta,GA,30301 +220135,20in Monitor,1,109.99,2019-06-21 13:12:00,634 Chestnut St, Atlanta,GA,30301 +220136,AA Batteries (4-pack),3,3.84,2019-06-10 12:19:00,485 Walnut St, Los Angeles,CA,90001 +220137,20in Monitor,1,109.99,2019-06-13 12:24:00,76 13th St, Los Angeles,CA,90001 +220138,AA Batteries (4-pack),1,3.84,2019-06-05 15:41:00,655 Willow St, San Francisco,CA,94016 +220139,AAA Batteries (4-pack),1,2.99,2019-06-04 10:50:00,135 Highland St, Los Angeles,CA,90001 +220140,Macbook Pro Laptop,1,1700.0,2019-06-07 07:49:00,125 Park St, Austin,TX,73301 +220141,27in FHD Monitor,1,149.99,2019-06-03 18:20:00,116 West St, Los Angeles,CA,90001 +220142,27in FHD Monitor,1,149.99,2019-06-23 20:59:00,392 Cherry St, Seattle,WA,98101 +220143,Wired Headphones,1,11.99,2019-06-12 10:42:00,395 11th St, Boston,MA,02215 +220144,Vareebadd Phone,1,400.0,2019-06-06 13:28:00,834 Main St, Boston,MA,02215 +220145,Wired Headphones,1,11.99,2019-06-22 13:43:00,275 5th St, San Francisco,CA,94016 +220146,Apple Airpods Headphones,1,150.0,2019-06-13 21:21:00,288 South St, Seattle,WA,98101 +220147,Lightning Charging Cable,1,14.95,2019-06-30 16:01:00,103 Johnson St, San Francisco,CA,94016 +220148,AA Batteries (4-pack),1,3.84,2019-06-13 20:22:00,479 6th St, San Francisco,CA,94016 +220149,Apple Airpods Headphones,1,150.0,2019-06-15 15:43:00,597 Spruce St, Boston,MA,02215 +220150,AA Batteries (4-pack),2,3.84,2019-06-16 17:17:00,535 Spruce St, Boston,MA,02215 +220151,AAA Batteries (4-pack),1,2.99,2019-06-04 19:06:00,137 Chestnut St, New York City,NY,10001 +220152,Apple Airpods Headphones,1,150.0,2019-06-06 11:18:00,592 Hickory St, San Francisco,CA,94016 +220153,Lightning Charging Cable,1,14.95,2019-06-05 22:08:00,829 North St, San Francisco,CA,94016 +220153,Bose SoundSport Headphones,1,99.99,2019-06-05 22:08:00,829 North St, San Francisco,CA,94016 +220154,34in Ultrawide Monitor,1,379.99,2019-06-22 17:15:00,492 South St, Austin,TX,73301 +220155,iPhone,1,700.0,2019-06-27 22:35:00,163 Washington St, San Francisco,CA,94016 +220155,Apple Airpods Headphones,1,150.0,2019-06-27 22:35:00,163 Washington St, San Francisco,CA,94016 +220156,Lightning Charging Cable,1,14.95,2019-06-04 20:19:00,466 10th St, Dallas,TX,75001 +220157,Bose SoundSport Headphones,1,99.99,2019-06-15 20:46:00,423 Center St, San Francisco,CA,94016 +220158,Macbook Pro Laptop,1,1700.0,2019-06-07 17:38:00,892 Sunset St, Austin,TX,73301 +220159,AAA Batteries (4-pack),2,2.99,2019-06-20 02:23:00,248 Forest St, New York City,NY,10001 +220160,AA Batteries (4-pack),1,3.84,2019-06-22 18:59:00,720 5th St, San Francisco,CA,94016 +220161,AA Batteries (4-pack),2,3.84,2019-06-29 13:56:00,627 Lincoln St, San Francisco,CA,94016 +220162,AAA Batteries (4-pack),4,2.99,2019-06-25 14:57:00,953 1st St, Seattle,WA,98101 +220163,USB-C Charging Cable,1,11.95,2019-06-26 11:12:00,52 Forest St, Atlanta,GA,30301 +220164,20in Monitor,1,109.99,2019-06-25 12:14:00,438 5th St, San Francisco,CA,94016 +220165,27in FHD Monitor,1,149.99,2019-06-26 10:49:00,435 Spruce St, San Francisco,CA,94016 +220166,Bose SoundSport Headphones,1,99.99,2019-06-18 11:02:00,754 12th St, Seattle,WA,98101 +220167,AA Batteries (4-pack),1,3.84,2019-06-25 22:14:00,353 5th St, New York City,NY,10001 +220168,AA Batteries (4-pack),1,3.84,2019-06-15 12:37:00,88 Lincoln St, New York City,NY,10001 +220169,USB-C Charging Cable,1,11.95,2019-06-21 20:57:00,366 Elm St, San Francisco,CA,94016 +220170,Apple Airpods Headphones,1,150.0,2019-06-03 12:05:00,113 Meadow St, Dallas,TX,75001 +220171,AAA Batteries (4-pack),1,2.99,2019-06-01 16:18:00,700 Ridge St, Los Angeles,CA,90001 +220172,AAA Batteries (4-pack),1,2.99,2019-06-29 12:01:00,658 Washington St, Dallas,TX,75001 +220173,Bose SoundSport Headphones,1,99.99,2019-06-26 16:10:00,926 Chestnut St, Los Angeles,CA,90001 +220174,Apple Airpods Headphones,1,150.0,2019-06-24 17:06:00,234 12th St, Dallas,TX,75001 +220175,AAA Batteries (4-pack),1,2.99,2019-06-04 20:28:00,269 South St, Los Angeles,CA,90001 +220176,AAA Batteries (4-pack),2,2.99,2019-06-23 23:34:00,155 4th St, San Francisco,CA,94016 +220177,AA Batteries (4-pack),1,3.84,2019-06-15 08:59:00,410 6th St, San Francisco,CA,94016 +220178,AA Batteries (4-pack),1,3.84,2019-06-11 13:02:00,512 Meadow St, Portland,OR,97035 +220179,AAA Batteries (4-pack),2,2.99,2019-06-18 18:58:00,817 Hill St, Boston,MA,02215 +220180,Wired Headphones,1,11.99,2019-06-24 01:01:00,352 Main St, Portland,ME,04101 +220181,AAA Batteries (4-pack),1,2.99,2019-06-14 20:26:00,554 1st St, San Francisco,CA,94016 +220182,Flatscreen TV,1,300.0,2019-06-23 21:02:00,68 Forest St, Seattle,WA,98101 +220183,Bose SoundSport Headphones,1,99.99,2019-06-23 10:53:00,575 14th St, San Francisco,CA,94016 +220184,Wired Headphones,1,11.99,2019-06-06 22:05:00,144 8th St, New York City,NY,10001 +220185,AAA Batteries (4-pack),2,2.99,2019-06-05 17:22:00,257 8th St, Los Angeles,CA,90001 +220185,Wired Headphones,1,11.99,2019-06-05 17:22:00,257 8th St, Los Angeles,CA,90001 +220186,AA Batteries (4-pack),1,3.84,2019-06-01 19:05:00,431 Lincoln St, Seattle,WA,98101 +220187,Apple Airpods Headphones,1,150.0,2019-06-30 17:30:00,79 10th St, San Francisco,CA,94016 +220188,AAA Batteries (4-pack),1,2.99,2019-06-13 13:30:00,230 Maple St, Los Angeles,CA,90001 +220189,Apple Airpods Headphones,1,150.0,2019-06-21 23:52:00,349 Willow St, Los Angeles,CA,90001 +220190,USB-C Charging Cable,1,11.95,2019-06-16 07:18:00,277 Jackson St, San Francisco,CA,94016 +220191,ThinkPad Laptop,1,999.99,2019-06-17 08:38:00,516 13th St, Seattle,WA,98101 +220192,Apple Airpods Headphones,1,150.0,2019-06-02 16:40:00,963 Hickory St, San Francisco,CA,94016 +220193,Lightning Charging Cable,1,14.95,2019-06-11 07:47:00,764 Hill St, Boston,MA,02215 +220194,Bose SoundSport Headphones,1,99.99,2019-06-02 14:09:00,396 Maple St, San Francisco,CA,94016 +220195,Lightning Charging Cable,1,14.95,2019-06-12 18:50:00,230 Jackson St, San Francisco,CA,94016 +220196,Wired Headphones,1,11.99,2019-06-07 19:35:00,927 Forest St, Los Angeles,CA,90001 +220197,USB-C Charging Cable,1,11.95,2019-06-01 16:19:00,47 Walnut St, San Francisco,CA,94016 +220198,AAA Batteries (4-pack),1,2.99,2019-06-30 11:05:00,408 Elm St, Los Angeles,CA,90001 +220199,Lightning Charging Cable,1,14.95,2019-06-29 00:11:00,843 Hickory St, Los Angeles,CA,90001 +220200,AA Batteries (4-pack),1,3.84,2019-06-22 11:13:00,725 Adams St, Portland,OR,97035 +220201,Flatscreen TV,1,300.0,2019-06-08 08:33:00,239 11th St, San Francisco,CA,94016 +220202,AAA Batteries (4-pack),1,2.99,2019-06-16 07:36:00,865 Lincoln St, Los Angeles,CA,90001 +220203,AA Batteries (4-pack),1,3.84,2019-06-24 20:35:00,928 Ridge St, Boston,MA,02215 +220204,Lightning Charging Cable,1,14.95,2019-06-13 11:05:00,716 Maple St, Portland,OR,97035 +220205,Apple Airpods Headphones,1,150.0,2019-06-27 14:35:00,783 Center St, Los Angeles,CA,90001 +220206,Bose SoundSport Headphones,1,99.99,2019-06-19 21:25:00,315 Center St, Seattle,WA,98101 +220207,Bose SoundSport Headphones,1,99.99,2019-06-13 07:24:00,152 Main St, San Francisco,CA,94016 +220208,iPhone,1,700.0,2019-06-19 10:14:00,569 Hickory St, Los Angeles,CA,90001 +220208,Wired Headphones,1,11.99,2019-06-19 10:14:00,569 Hickory St, Los Angeles,CA,90001 +220209,Apple Airpods Headphones,1,150.0,2019-06-27 21:15:00,769 Park St, New York City,NY,10001 +220210,AAA Batteries (4-pack),2,2.99,2019-06-01 09:13:00,27 Pine St, San Francisco,CA,94016 +220211,Wired Headphones,1,11.99,2019-06-14 23:15:00,914 12th St, Portland,OR,97035 +220212,AAA Batteries (4-pack),1,2.99,2019-06-08 07:53:00,824 Madison St, Portland,OR,97035 +220213,AAA Batteries (4-pack),3,2.99,2019-06-15 21:47:00,839 Main St, New York City,NY,10001 +220214,Wired Headphones,1,11.99,2019-06-09 23:05:00,844 Highland St, San Francisco,CA,94016 +220215,AA Batteries (4-pack),1,3.84,2019-06-06 09:54:00,621 10th St, San Francisco,CA,94016 +220216,Wired Headphones,2,11.99,2019-06-07 11:40:00,989 7th St, San Francisco,CA,94016 +220217,AAA Batteries (4-pack),2,2.99,2019-06-30 18:07:00,166 South St, Boston,MA,02215 +220218,Lightning Charging Cable,1,14.95,2019-06-15 08:02:00,829 Pine St, Boston,MA,02215 +220219,Macbook Pro Laptop,1,1700.0,2019-06-24 08:29:00,569 12th St, Atlanta,GA,30301 +220220,Wired Headphones,2,11.99,2019-06-01 14:15:00,79 South St, Los Angeles,CA,90001 +220221,Bose SoundSport Headphones,1,99.99,2019-06-01 12:22:00,843 12th St, Seattle,WA,98101 +220222,Bose SoundSport Headphones,1,99.99,2019-06-29 12:21:00,755 Center St, San Francisco,CA,94016 +220223,Wired Headphones,2,11.99,2019-06-19 15:20:00,995 Spruce St, Austin,TX,73301 +220223,AAA Batteries (4-pack),3,2.99,2019-06-19 15:20:00,995 Spruce St, Austin,TX,73301 +220224,ThinkPad Laptop,1,999.99,2019-06-18 14:45:00,103 Lincoln St, San Francisco,CA,94016 +220225,Apple Airpods Headphones,1,150.0,2019-06-17 09:03:00,761 Park St, New York City,NY,10001 +220226,27in FHD Monitor,1,149.99,2019-06-02 09:54:00,704 Church St, Los Angeles,CA,90001 +220227,iPhone,1,700.0,2019-06-03 15:04:00,174 Adams St, New York City,NY,10001 +220228,AA Batteries (4-pack),1,3.84,2019-06-03 18:59:00,354 Lake St, Dallas,TX,75001 +220229,Bose SoundSport Headphones,1,99.99,2019-06-12 11:08:00,432 North St, Portland,OR,97035 +220230,Apple Airpods Headphones,1,150.0,2019-06-28 19:29:00,965 10th St, Los Angeles,CA,90001 +220231,iPhone,1,700.0,2019-06-11 14:09:00,66 Cherry St, Austin,TX,73301 +220232,Flatscreen TV,1,300.0,2019-06-11 19:07:00,294 Church St, Dallas,TX,75001 +220233,Lightning Charging Cable,1,14.95,2019-06-18 14:15:00,318 South St, San Francisco,CA,94016 +220234,Wired Headphones,1,11.99,2019-06-03 11:23:00,950 Hill St, Atlanta,GA,30301 +220235,27in FHD Monitor,1,149.99,2019-06-06 18:35:00,778 Elm St, New York City,NY,10001 +220236,Bose SoundSport Headphones,1,99.99,2019-06-21 11:15:00,985 Maple St, San Francisco,CA,94016 +220237,Apple Airpods Headphones,1,150.0,2019-06-09 21:26:00,439 Jackson St, New York City,NY,10001 +220238,ThinkPad Laptop,1,999.99,2019-06-10 12:24:00,986 2nd St, Portland,OR,97035 +220239,USB-C Charging Cable,1,11.95,2019-06-08 17:14:00,146 Hickory St, Boston,MA,02215 +220240,34in Ultrawide Monitor,1,379.99,2019-06-27 20:52:00,266 Johnson St, San Francisco,CA,94016 +220241,Google Phone,1,600.0,2019-06-02 18:47:00,302 West St, San Francisco,CA,94016 +220241,Bose SoundSport Headphones,1,99.99,2019-06-02 18:47:00,302 West St, San Francisco,CA,94016 +220242,AAA Batteries (4-pack),6,2.99,2019-06-28 10:37:00,121 Park St, Seattle,WA,98101 +220243,AAA Batteries (4-pack),1,2.99,2019-06-14 13:41:00,325 Church St, New York City,NY,10001 +220244,Google Phone,1,600.0,2019-06-15 18:43:00,957 North St, Dallas,TX,75001 +220245,Wired Headphones,1,11.99,2019-06-17 21:52:00,801 Jackson St, Portland,OR,97035 +220246,iPhone,1,700.0,2019-06-10 14:11:00,10 Jefferson St, Atlanta,GA,30301 +220246,Apple Airpods Headphones,1,150.0,2019-06-10 14:11:00,10 Jefferson St, Atlanta,GA,30301 +220247,Bose SoundSport Headphones,1,99.99,2019-06-03 10:30:00,228 13th St, Atlanta,GA,30301 +220248,Flatscreen TV,1,300.0,2019-06-13 19:04:00,971 7th St, Boston,MA,02215 +220249,Wired Headphones,1,11.99,2019-06-29 16:03:00,808 Highland St, Austin,TX,73301 +220250,Bose SoundSport Headphones,1,99.99,2019-06-28 15:17:00,934 Lakeview St, Atlanta,GA,30301 +220251,Bose SoundSport Headphones,1,99.99,2019-06-18 22:37:00,882 Cedar St, Los Angeles,CA,90001 +220252,Apple Airpods Headphones,1,150.0,2019-06-04 16:17:00,241 5th St, Atlanta,GA,30301 +220253,Wired Headphones,1,11.99,2019-06-28 17:10:00,321 Walnut St, Boston,MA,02215 +220254,Wired Headphones,2,11.99,2019-06-10 16:04:00,472 Elm St, Austin,TX,73301 +220255,USB-C Charging Cable,1,11.95,2019-06-16 11:05:00,21 Forest St, Seattle,WA,98101 +220256,AAA Batteries (4-pack),2,2.99,2019-06-17 14:41:00,763 Lakeview St, Atlanta,GA,30301 +220257,AAA Batteries (4-pack),1,2.99,2019-06-08 00:09:00,499 Walnut St, New York City,NY,10001 +220258,AA Batteries (4-pack),3,3.84,2019-06-16 00:08:00,880 South St, New York City,NY,10001 +220259,ThinkPad Laptop,1,999.99,2019-06-07 03:23:00,980 River St, San Francisco,CA,94016 +220260,AAA Batteries (4-pack),1,2.99,2019-06-16 11:37:00,819 Walnut St, San Francisco,CA,94016 +220261,Bose SoundSport Headphones,1,99.99,2019-06-16 22:08:00,958 Sunset St, San Francisco,CA,94016 +220262,27in FHD Monitor,1,149.99,2019-06-14 12:58:00,718 9th St, San Francisco,CA,94016 +220263,AAA Batteries (4-pack),3,2.99,2019-06-20 23:37:00,685 13th St, Los Angeles,CA,90001 +220264,iPhone,1,700.0,2019-06-17 15:10:00,471 Hill St, Boston,MA,02215 +220265,AA Batteries (4-pack),2,3.84,2019-06-25 22:47:00,396 Cedar St, Dallas,TX,75001 +220266,AA Batteries (4-pack),1,3.84,2019-06-12 11:11:00,839 Highland St, San Francisco,CA,94016 +220267,Google Phone,1,600.0,2019-06-01 18:47:00,78 Jackson St, Los Angeles,CA,90001 +220267,USB-C Charging Cable,1,11.95,2019-06-01 18:47:00,78 Jackson St, Los Angeles,CA,90001 +220268,Wired Headphones,1,11.99,2019-06-04 00:32:00,328 13th St, Boston,MA,02215 +220269,Bose SoundSport Headphones,1,99.99,2019-06-13 20:41:00,457 Spruce St, San Francisco,CA,94016 +220270,Wired Headphones,1,11.99,2019-06-06 07:05:00,613 7th St, Atlanta,GA,30301 +220271,Lightning Charging Cable,1,14.95,2019-06-27 20:55:00,747 Park St, Dallas,TX,75001 +220272,USB-C Charging Cable,1,11.95,2019-06-13 13:20:00,160 Church St, San Francisco,CA,94016 +220273,Lightning Charging Cable,1,14.95,2019-06-07 12:12:00,423 Jackson St, San Francisco,CA,94016 +220274,Lightning Charging Cable,1,14.95,2019-06-14 10:57:00,864 Willow St, Atlanta,GA,30301 +220275,34in Ultrawide Monitor,1,379.99,2019-06-01 10:20:00,290 Walnut St, Los Angeles,CA,90001 +220276,AA Batteries (4-pack),1,3.84,2019-06-25 21:51:00,336 9th St, Los Angeles,CA,90001 +220276,USB-C Charging Cable,1,11.95,2019-06-25 21:51:00,336 9th St, Los Angeles,CA,90001 +220277,ThinkPad Laptop,1,999.99,2019-06-15 15:34:00,499 Hickory St, Atlanta,GA,30301 +220278,iPhone,1,700.0,2019-06-09 04:43:00,473 Spruce St, Boston,MA,02215 +220279,Vareebadd Phone,1,400.0,2019-06-03 12:38:00,98 Jefferson St, San Francisco,CA,94016 +220280,Wired Headphones,1,11.99,2019-06-26 01:07:00,437 Chestnut St, Atlanta,GA,30301 +220281,AAA Batteries (4-pack),1,2.99,2019-06-18 16:55:00,243 4th St, San Francisco,CA,94016 +220282,USB-C Charging Cable,1,11.95,2019-06-04 23:25:00,787 8th St, Dallas,TX,75001 +220283,AAA Batteries (4-pack),1,2.99,2019-06-16 11:49:00,555 10th St, Atlanta,GA,30301 +220284,Lightning Charging Cable,2,14.95,2019-06-28 15:19:00,896 Adams St, San Francisco,CA,94016 +220285,Macbook Pro Laptop,1,1700.0,2019-06-11 10:52:00,192 10th St, San Francisco,CA,94016 +220286,Wired Headphones,1,11.99,2019-06-07 14:39:00,935 7th St, Boston,MA,02215 +220287,AA Batteries (4-pack),2,3.84,2019-06-14 00:01:00,300 Hill St, Los Angeles,CA,90001 +220288,AA Batteries (4-pack),2,3.84,2019-06-13 13:36:00,765 11th St, Seattle,WA,98101 +220289,Apple Airpods Headphones,1,150.0,2019-06-16 00:03:00,307 Walnut St, Los Angeles,CA,90001 +220290,AA Batteries (4-pack),2,3.84,2019-06-09 20:13:00,329 Elm St, San Francisco,CA,94016 +220291,Google Phone,1,600.0,2019-06-17 13:03:00,528 6th St, San Francisco,CA,94016 +220292,AA Batteries (4-pack),1,3.84,2019-06-02 13:15:00,892 Highland St, Dallas,TX,75001 +220293,AAA Batteries (4-pack),3,2.99,2019-06-04 21:12:00,687 12th St, New York City,NY,10001 +220293,iPhone,1,700.0,2019-06-04 21:12:00,687 12th St, New York City,NY,10001 +220294,Wired Headphones,1,11.99,2019-06-23 10:53:00,200 Maple St, Austin,TX,73301 +220295,20in Monitor,1,109.99,2019-06-07 09:57:00,387 Maple St, San Francisco,CA,94016 +220296,Lightning Charging Cable,1,14.95,2019-06-13 09:53:00,437 Meadow St, Los Angeles,CA,90001 +220297,Apple Airpods Headphones,1,150.0,2019-06-12 22:31:00,457 12th St, Austin,TX,73301 +220298,iPhone,1,700.0,2019-06-10 10:27:00,278 Center St, Los Angeles,CA,90001 +220299,ThinkPad Laptop,1,999.99,2019-06-25 21:34:00,417 Lakeview St, Atlanta,GA,30301 +220300,Apple Airpods Headphones,1,150.0,2019-06-17 17:01:00,450 Lake St, Dallas,TX,75001 +220301,USB-C Charging Cable,1,11.95,2019-06-28 20:16:00,161 6th St, Dallas,TX,75001 +220302,27in FHD Monitor,1,149.99,2019-06-02 13:11:00,532 Lakeview St, Atlanta,GA,30301 +220303,27in FHD Monitor,1,149.99,2019-06-19 17:06:00,949 West St, San Francisco,CA,94016 +220304,iPhone,1,700.0,2019-06-04 09:15:00,431 Wilson St, Portland,OR,97035 +220305,AA Batteries (4-pack),2,3.84,2019-06-28 22:55:00,660 Wilson St, Austin,TX,73301 +220306,34in Ultrawide Monitor,1,379.99,2019-06-28 09:22:00,577 River St, Seattle,WA,98101 +220307,USB-C Charging Cable,1,11.95,2019-06-26 11:14:00,628 Cedar St, San Francisco,CA,94016 +220308,USB-C Charging Cable,1,11.95,2019-06-22 14:25:00,67 Willow St, Los Angeles,CA,90001 +220309,Wired Headphones,1,11.99,2019-06-28 22:06:00,429 Chestnut St, San Francisco,CA,94016 +220310,iPhone,1,700.0,2019-06-28 11:47:00,190 Walnut St, San Francisco,CA,94016 +220310,Wired Headphones,1,11.99,2019-06-28 11:47:00,190 Walnut St, San Francisco,CA,94016 +220311,ThinkPad Laptop,1,999.99,2019-06-05 07:15:00,450 Center St, San Francisco,CA,94016 +220312,AA Batteries (4-pack),1,3.84,2019-06-24 11:48:00,6 Pine St, San Francisco,CA,94016 +220313,AAA Batteries (4-pack),1,2.99,2019-06-02 14:03:00,888 9th St, San Francisco,CA,94016 +220314,Apple Airpods Headphones,1,150.0,2019-06-21 07:05:00,986 Highland St, San Francisco,CA,94016 +220315,34in Ultrawide Monitor,1,379.99,2019-06-01 20:07:00,5 Lincoln St, Portland,OR,97035 +220316,Lightning Charging Cable,1,14.95,2019-06-11 21:07:00,998 Jefferson St, San Francisco,CA,94016 +220317,Wired Headphones,1,11.99,2019-06-11 09:58:00,550 5th St, Dallas,TX,75001 +220318,Apple Airpods Headphones,1,150.0,2019-06-05 11:08:00,819 Adams St, Austin,TX,73301 +220319,Lightning Charging Cable,1,14.95,2019-06-19 20:46:00,809 Walnut St, Boston,MA,02215 +220320,iPhone,1,700.0,2019-06-06 08:49:00,485 4th St, Boston,MA,02215 +220320,Lightning Charging Cable,1,14.95,2019-06-06 08:49:00,485 4th St, Boston,MA,02215 +220321,AAA Batteries (4-pack),1,2.99,2019-06-17 09:57:00,299 South St, Los Angeles,CA,90001 +220322,Lightning Charging Cable,1,14.95,2019-06-20 12:35:00,167 Sunset St, Seattle,WA,98101 +220323,27in FHD Monitor,1,149.99,2019-06-15 13:27:00,367 Meadow St, Seattle,WA,98101 +220324,Apple Airpods Headphones,1,150.0,2019-06-20 15:39:00,63 West St, Portland,ME,04101 +220325,Vareebadd Phone,1,400.0,2019-06-14 13:00:00,765 Lakeview St, San Francisco,CA,94016 +220326,Wired Headphones,1,11.99,2019-06-16 15:10:00,481 Church St, Seattle,WA,98101 +220327,Apple Airpods Headphones,1,150.0,2019-06-12 22:42:00,532 7th St, Los Angeles,CA,90001 +220328,AAA Batteries (4-pack),2,2.99,2019-06-11 17:54:00,324 Dogwood St, San Francisco,CA,94016 +220329,Macbook Pro Laptop,1,1700.0,2019-06-30 13:24:00,169 Lincoln St, Boston,MA,02215 +220330,USB-C Charging Cable,1,11.95,2019-06-27 19:48:00,108 5th St, Los Angeles,CA,90001 +220331,Apple Airpods Headphones,1,150.0,2019-06-05 15:10:00,562 14th St, Seattle,WA,98101 +220332,ThinkPad Laptop,1,999.99,2019-06-06 18:14:00,263 Lakeview St, Seattle,WA,98101 +220333,Apple Airpods Headphones,1,150.0,2019-06-12 08:20:00,954 2nd St, San Francisco,CA,94016 +220334,Google Phone,1,600.0,2019-06-30 05:49:00,633 Chestnut St, New York City,NY,10001 +220335,Flatscreen TV,1,300.0,2019-06-26 18:20:00,856 Adams St, San Francisco,CA,94016 +220336,AAA Batteries (4-pack),1,2.99,2019-06-18 21:12:00,949 5th St, San Francisco,CA,94016 +220337,Wired Headphones,1,11.99,2019-06-13 23:52:00,492 Lake St, Atlanta,GA,30301 +220338,34in Ultrawide Monitor,1,379.99,2019-06-22 07:16:00,243 Madison St, San Francisco,CA,94016 +220339,Wired Headphones,1,11.99,2019-06-23 21:33:00,404 Park St, Seattle,WA,98101 +220340,Apple Airpods Headphones,1,150.0,2019-06-03 00:11:00,905 Lakeview St, Boston,MA,02215 +220341,Apple Airpods Headphones,1,150.0,2019-06-03 09:53:00,589 1st St, Los Angeles,CA,90001 +220342,Apple Airpods Headphones,1,150.0,2019-06-01 13:12:00,229 Dogwood St, Los Angeles,CA,90001 +220343,AAA Batteries (4-pack),1,2.99,2019-06-06 21:47:00,969 Cherry St, Dallas,TX,75001 +220344,AAA Batteries (4-pack),1,2.99,2019-06-22 08:40:00,420 Willow St, San Francisco,CA,94016 +220345,Bose SoundSport Headphones,1,99.99,2019-06-09 22:36:00,327 9th St, Portland,OR,97035 +220346,ThinkPad Laptop,1,999.99,2019-06-09 21:41:00,846 Spruce St, Los Angeles,CA,90001 +220347,Wired Headphones,1,11.99,2019-06-02 18:31:00,760 Lincoln St, Boston,MA,02215 +220348,Bose SoundSport Headphones,1,99.99,2019-06-24 10:09:00,269 Chestnut St, Los Angeles,CA,90001 +220349,Macbook Pro Laptop,1,1700.0,2019-06-06 11:28:00,865 8th St, Austin,TX,73301 +220350,AA Batteries (4-pack),2,3.84,2019-06-15 21:49:00,995 Washington St, New York City,NY,10001 +220351,AA Batteries (4-pack),1,3.84,2019-06-14 12:58:00,889 Cedar St, New York City,NY,10001 +220352,Bose SoundSport Headphones,1,99.99,2019-06-13 21:14:00,432 Lake St, Boston,MA,02215 +220353,Bose SoundSport Headphones,1,99.99,2019-07-01 02:03:00,70 Pine St, New York City,NY,10001 +220354,Lightning Charging Cable,1,14.95,2019-06-16 19:01:00,332 Lakeview St, Seattle,WA,98101 +220355,Apple Airpods Headphones,1,150.0,2019-06-09 22:06:00,314 Highland St, San Francisco,CA,94016 +220356,AA Batteries (4-pack),1,3.84,2019-06-06 14:38:00,570 Center St, Austin,TX,73301 +220357,27in 4K Gaming Monitor,1,389.99,2019-06-12 21:43:00,972 Cedar St, Seattle,WA,98101 +220358,34in Ultrawide Monitor,1,379.99,2019-06-27 08:14:00,725 5th St, New York City,NY,10001 +220359,Bose SoundSport Headphones,1,99.99,2019-06-10 14:36:00,539 Spruce St, Boston,MA,02215 +220360,Bose SoundSport Headphones,1,99.99,2019-06-17 10:40:00,559 6th St, Los Angeles,CA,90001 +220361,AAA Batteries (4-pack),2,2.99,2019-06-29 07:50:00,579 South St, New York City,NY,10001 +220362,AA Batteries (4-pack),1,3.84,2019-06-02 21:51:00,417 Chestnut St, San Francisco,CA,94016 +220363,Apple Airpods Headphones,1,150.0,2019-06-13 20:18:00,618 6th St, New York City,NY,10001 +220364,Apple Airpods Headphones,1,150.0,2019-06-12 23:50:00,379 9th St, Atlanta,GA,30301 +220365,USB-C Charging Cable,1,11.95,2019-06-24 18:24:00,393 Forest St, Boston,MA,02215 +220366,27in FHD Monitor,1,149.99,2019-06-30 19:46:00,255 Johnson St, Boston,MA,02215 +220367,20in Monitor,1,109.99,2019-06-15 22:22:00,938 Hill St, Los Angeles,CA,90001 +220368,Wired Headphones,1,11.99,2019-06-22 10:25:00,631 Jefferson St, San Francisco,CA,94016 +220369,20in Monitor,1,109.99,2019-06-07 16:39:00,635 Jackson St, San Francisco,CA,94016 +220370,Wired Headphones,1,11.99,2019-06-02 10:47:00,725 7th St, San Francisco,CA,94016 +220371,Macbook Pro Laptop,1,1700.0,2019-06-18 16:09:00,637 Hickory St, New York City,NY,10001 +220372,Wired Headphones,1,11.99,2019-06-22 10:25:00,13 Cherry St, San Francisco,CA,94016 +220373,Apple Airpods Headphones,1,150.0,2019-06-23 09:03:00,528 Spruce St, Los Angeles,CA,90001 +220374,Lightning Charging Cable,1,14.95,2019-06-05 09:56:00,578 13th St, Portland,ME,04101 +220374,AAA Batteries (4-pack),2,2.99,2019-06-05 09:56:00,578 13th St, Portland,ME,04101 +220375,USB-C Charging Cable,1,11.95,2019-06-15 20:42:00,657 Adams St, Los Angeles,CA,90001 +220376,AA Batteries (4-pack),1,3.84,2019-06-22 13:43:00,700 Johnson St, San Francisco,CA,94016 +220377,Bose SoundSport Headphones,1,99.99,2019-06-03 09:43:00,498 8th St, Dallas,TX,75001 +220378,Lightning Charging Cable,1,14.95,2019-06-18 09:20:00,405 5th St, Los Angeles,CA,90001 +220379,27in FHD Monitor,1,149.99,2019-06-08 01:24:00,531 5th St, New York City,NY,10001 +220380,AAA Batteries (4-pack),1,2.99,2019-06-01 16:49:00,575 Ridge St, Atlanta,GA,30301 +220381,iPhone,1,700.0,2019-06-26 21:12:00,976 Walnut St, Seattle,WA,98101 +220381,Apple Airpods Headphones,1,150.0,2019-06-26 21:12:00,976 Walnut St, Seattle,WA,98101 +220382,AAA Batteries (4-pack),1,2.99,2019-06-12 18:26:00,895 Washington St, Los Angeles,CA,90001 +220383,27in FHD Monitor,1,149.99,2019-06-29 14:50:00,803 Jackson St, Atlanta,GA,30301 +220384,Lightning Charging Cable,1,14.95,2019-06-04 16:44:00,405 Chestnut St, San Francisco,CA,94016 +220385,Google Phone,1,600.0,2019-06-18 15:04:00,25 Main St, San Francisco,CA,94016 +220386,Lightning Charging Cable,1,14.95,2019-06-03 11:09:00,381 6th St, San Francisco,CA,94016 +220387,AA Batteries (4-pack),1,3.84,2019-06-11 15:08:00,509 Elm St, Austin,TX,73301 +220388,USB-C Charging Cable,1,11.95,2019-06-13 00:37:00,655 14th St, San Francisco,CA,94016 +220389,Lightning Charging Cable,1,14.95,2019-06-09 13:27:00,320 Jackson St, Boston,MA,02215 +220390,AAA Batteries (4-pack),1,2.99,2019-06-15 23:12:00,9 13th St, Los Angeles,CA,90001 +220391,Apple Airpods Headphones,1,150.0,2019-06-02 12:38:00,124 5th St, Portland,OR,97035 +220392,Lightning Charging Cable,1,14.95,2019-06-08 17:13:00,472 8th St, Portland,ME,04101 +220393,Bose SoundSport Headphones,1,99.99,2019-06-21 21:01:00,841 Cedar St, Los Angeles,CA,90001 +220394,AAA Batteries (4-pack),1,2.99,2019-06-13 11:30:00,21 Forest St, Los Angeles,CA,90001 +220395,USB-C Charging Cable,1,11.95,2019-06-24 23:41:00,722 13th St, Austin,TX,73301 +220396,Wired Headphones,1,11.99,2019-06-11 21:26:00,488 Dogwood St, Los Angeles,CA,90001 +220397,AAA Batteries (4-pack),2,2.99,2019-06-02 23:26:00,748 Cherry St, San Francisco,CA,94016 +220398,AA Batteries (4-pack),2,3.84,2019-06-20 17:19:00,402 Johnson St, Dallas,TX,75001 +220399,Apple Airpods Headphones,1,150.0,2019-06-16 18:57:00,91 South St, New York City,NY,10001 +220400,20in Monitor,1,109.99,2019-06-25 18:57:00,618 12th St, New York City,NY,10001 +220401,USB-C Charging Cable,1,11.95,2019-06-11 04:29:00,335 Willow St, San Francisco,CA,94016 +220402,Flatscreen TV,1,300.0,2019-06-17 10:02:00,444 Pine St, San Francisco,CA,94016 +220403,20in Monitor,1,109.99,2019-06-28 10:05:00,407 Spruce St, Boston,MA,02215 +220404,USB-C Charging Cable,1,11.95,2019-06-11 09:20:00,794 Cedar St, Seattle,WA,98101 +220405,USB-C Charging Cable,1,11.95,2019-06-17 22:26:00,488 Spruce St, Austin,TX,73301 +220406,AA Batteries (4-pack),1,3.84,2019-06-15 13:21:00,87 Cedar St, Los Angeles,CA,90001 +220407,Apple Airpods Headphones,1,150.0,2019-06-01 15:11:00,25 Cedar St, San Francisco,CA,94016 +220408,Lightning Charging Cable,1,14.95,2019-06-22 12:43:00,358 5th St, Boston,MA,02215 +220409,Lightning Charging Cable,1,14.95,2019-06-27 20:56:00,132 Wilson St, Los Angeles,CA,90001 +220410,AAA Batteries (4-pack),1,2.99,2019-06-14 19:17:00,516 Church St, Dallas,TX,75001 +220411,Bose SoundSport Headphones,1,99.99,2019-06-02 12:32:00,507 Highland St, Atlanta,GA,30301 +220412,Apple Airpods Headphones,1,150.0,2019-06-17 12:41:00,592 Madison St, San Francisco,CA,94016 +220413,27in FHD Monitor,1,149.99,2019-06-13 12:00:00,567 Chestnut St, Austin,TX,73301 +220414,Bose SoundSport Headphones,1,99.99,2019-06-21 09:34:00,288 Jefferson St, Boston,MA,02215 +220415,Bose SoundSport Headphones,1,99.99,2019-06-14 10:59:00,788 Walnut St, New York City,NY,10001 +220416,Lightning Charging Cable,1,14.95,2019-06-01 18:51:00,975 1st St, San Francisco,CA,94016 +220417,AAA Batteries (4-pack),1,2.99,2019-06-27 10:32:00,184 Park St, Boston,MA,02215 +220418,USB-C Charging Cable,1,11.95,2019-06-28 10:12:00,213 Lakeview St, Los Angeles,CA,90001 +220419,Macbook Pro Laptop,1,1700.0,2019-06-06 11:12:00,162 4th St, San Francisco,CA,94016 +220420,AAA Batteries (4-pack),1,2.99,2019-06-18 16:14:00,905 Pine St, Dallas,TX,75001 +220421,Lightning Charging Cable,1,14.95,2019-06-09 18:49:00,632 8th St, Seattle,WA,98101 +220422,27in 4K Gaming Monitor,1,389.99,2019-06-19 20:39:00,260 Dogwood St, Seattle,WA,98101 +220423,Flatscreen TV,1,300.0,2019-06-23 12:14:00,112 Hill St, Atlanta,GA,30301 +220424,AA Batteries (4-pack),1,3.84,2019-06-25 12:11:00,601 7th St, Atlanta,GA,30301 +220425,Apple Airpods Headphones,1,150.0,2019-06-13 18:57:00,418 Dogwood St, San Francisco,CA,94016 +220426,AA Batteries (4-pack),1,3.84,2019-06-06 09:00:00,417 Dogwood St, San Francisco,CA,94016 +220427,AAA Batteries (4-pack),1,2.99,2019-06-26 14:11:00,217 Sunset St, Dallas,TX,75001 +220428,Apple Airpods Headphones,1,150.0,2019-06-18 19:47:00,983 13th St, New York City,NY,10001 +220429,ThinkPad Laptop,1,999.99,2019-06-18 17:47:00,763 Washington St, San Francisco,CA,94016 +220430,ThinkPad Laptop,1,999.99,2019-06-17 15:22:00,997 6th St, Los Angeles,CA,90001 +220431,AA Batteries (4-pack),2,3.84,2019-06-08 08:07:00,518 South St, New York City,NY,10001 +220432,Wired Headphones,1,11.99,2019-06-15 18:30:00,45 Elm St, San Francisco,CA,94016 +220433,27in 4K Gaming Monitor,1,389.99,2019-06-08 19:38:00,916 7th St, Dallas,TX,75001 +220434,Wired Headphones,1,11.99,2019-06-28 16:50:00,891 Maple St, Boston,MA,02215 +220435,ThinkPad Laptop,1,999.99,2019-06-18 20:01:00,95 6th St, Los Angeles,CA,90001 +220436,AA Batteries (4-pack),1,3.84,2019-06-23 17:16:00,660 Meadow St, San Francisco,CA,94016 +220437,Lightning Charging Cable,1,14.95,2019-06-21 11:53:00,180 12th St, Boston,MA,02215 +220438,20in Monitor,1,109.99,2019-06-07 08:17:00,982 Chestnut St, San Francisco,CA,94016 +220439,AA Batteries (4-pack),2,3.84,2019-06-23 19:03:00,65 10th St, Los Angeles,CA,90001 +220440,34in Ultrawide Monitor,1,379.99,2019-06-13 10:14:00,845 Cedar St, Seattle,WA,98101 +220441,iPhone,1,700.0,2019-06-25 08:36:00,562 Adams St, New York City,NY,10001 +220442,Lightning Charging Cable,1,14.95,2019-06-12 09:18:00,885 Pine St, Seattle,WA,98101 +220443,iPhone,1,700.0,2019-06-18 14:46:00,623 Johnson St, Los Angeles,CA,90001 +220444,Vareebadd Phone,1,400.0,2019-06-26 20:23:00,666 Ridge St, New York City,NY,10001 +220445,27in FHD Monitor,1,149.99,2019-06-29 12:12:00,853 Lakeview St, Los Angeles,CA,90001 +220446,Bose SoundSport Headphones,1,99.99,2019-06-29 18:46:00,139 Pine St, San Francisco,CA,94016 +220447,ThinkPad Laptop,1,999.99,2019-06-04 22:13:00,647 Main St, Portland,OR,97035 +220448,Lightning Charging Cable,1,14.95,2019-06-13 21:48:00,640 South St, San Francisco,CA,94016 +220449,27in 4K Gaming Monitor,1,389.99,2019-06-20 12:15:00,580 Park St, Dallas,TX,75001 +220450,USB-C Charging Cable,1,11.95,2019-06-16 10:47:00,885 Dogwood St, Los Angeles,CA,90001 +220451,USB-C Charging Cable,1,11.95,2019-06-01 17:23:00,730 Hill St, Los Angeles,CA,90001 +220452,USB-C Charging Cable,1,11.95,2019-06-19 03:59:00,460 Spruce St, Boston,MA,02215 +220453,Apple Airpods Headphones,1,150.0,2019-06-20 19:23:00,425 Hickory St, Austin,TX,73301 +220454,AAA Batteries (4-pack),1,2.99,2019-06-05 09:55:00,864 Lincoln St, Dallas,TX,75001 +220455,Lightning Charging Cable,1,14.95,2019-06-09 11:08:00,259 River St, Seattle,WA,98101 +220456,AAA Batteries (4-pack),1,2.99,2019-06-12 20:46:00,219 Pine St, San Francisco,CA,94016 +220457,Google Phone,1,600.0,2019-06-08 21:05:00,66 Sunset St, Los Angeles,CA,90001 +220458,Bose SoundSport Headphones,1,99.99,2019-06-18 00:38:00,603 River St, Atlanta,GA,30301 +220459,Lightning Charging Cable,1,14.95,2019-06-16 16:49:00,903 Hill St, San Francisco,CA,94016 +220460,Apple Airpods Headphones,1,150.0,2019-06-01 10:38:00,602 West St, Atlanta,GA,30301 +220461,Flatscreen TV,1,300.0,2019-06-03 05:20:00,632 1st St, San Francisco,CA,94016 +220462,Apple Airpods Headphones,1,150.0,2019-06-25 21:11:00,869 11th St, New York City,NY,10001 +220463,27in 4K Gaming Monitor,1,389.99,2019-06-25 16:56:00,839 Sunset St, Los Angeles,CA,90001 +220464,AAA Batteries (4-pack),2,2.99,2019-06-07 19:23:00,363 Lake St, Austin,TX,73301 +220465,USB-C Charging Cable,1,11.95,2019-06-15 01:34:00,518 Jackson St, Portland,ME,04101 +220466,iPhone,1,700.0,2019-06-01 16:30:00,233 Ridge St, Los Angeles,CA,90001 +220467,Wired Headphones,1,11.99,2019-06-09 19:26:00,348 Park St, San Francisco,CA,94016 +220468,ThinkPad Laptop,1,999.99,2019-06-26 19:55:00,487 Washington St, Seattle,WA,98101 +220469,Wired Headphones,1,11.99,2019-06-18 06:16:00,625 South St, Boston,MA,02215 +220470,Lightning Charging Cable,1,14.95,2019-06-19 23:15:00,579 2nd St, San Francisco,CA,94016 +220471,Lightning Charging Cable,1,14.95,2019-06-26 16:22:00,848 Park St, San Francisco,CA,94016 +220472,Bose SoundSport Headphones,1,99.99,2019-06-18 14:44:00,624 Dogwood St, Boston,MA,02215 +220473,USB-C Charging Cable,1,11.95,2019-06-06 13:28:00,315 11th St, Portland,OR,97035 +220474,Bose SoundSport Headphones,1,99.99,2019-06-14 17:43:00,272 North St, San Francisco,CA,94016 +220475,Lightning Charging Cable,1,14.95,2019-06-22 10:13:00,167 12th St, Dallas,TX,75001 +220476,Bose SoundSport Headphones,1,99.99,2019-06-02 21:53:00,47 Hickory St, Atlanta,GA,30301 +220477,Wired Headphones,1,11.99,2019-06-14 21:35:00,933 Dogwood St, Dallas,TX,75001 +220478,AAA Batteries (4-pack),3,2.99,2019-06-20 21:50:00,629 Dogwood St, Atlanta,GA,30301 +220479,Vareebadd Phone,1,400.0,2019-06-08 14:05:00,459 Forest St, New York City,NY,10001 +220480,AA Batteries (4-pack),2,3.84,2019-06-03 03:27:00,261 6th St, San Francisco,CA,94016 +220481,Lightning Charging Cable,2,14.95,2019-06-14 20:43:00,596 4th St, San Francisco,CA,94016 +220482,AAA Batteries (4-pack),1,2.99,2019-06-03 03:04:00,742 South St, New York City,NY,10001 +220483,AA Batteries (4-pack),1,3.84,2019-06-17 19:46:00,852 Washington St, New York City,NY,10001 +220484,Apple Airpods Headphones,1,150.0,2019-06-09 14:36:00,123 Willow St, Los Angeles,CA,90001 +220484,AAA Batteries (4-pack),2,2.99,2019-06-09 14:36:00,123 Willow St, Los Angeles,CA,90001 +220485,Lightning Charging Cable,1,14.95,2019-06-17 17:37:00,419 Johnson St, Los Angeles,CA,90001 +220486,27in FHD Monitor,1,149.99,2019-06-30 14:14:00,200 Center St, San Francisco,CA,94016 +220487,Apple Airpods Headphones,1,150.0,2019-06-20 22:47:00,759 Lake St, San Francisco,CA,94016 +220488,Lightning Charging Cable,1,14.95,2019-06-04 17:54:00,159 Church St, San Francisco,CA,94016 +220489,Bose SoundSport Headphones,1,99.99,2019-06-19 09:26:00,550 Hickory St, Seattle,WA,98101 +220490,Vareebadd Phone,1,400.0,2019-06-03 21:55:00,410 Jefferson St, San Francisco,CA,94016 +220491,USB-C Charging Cable,1,11.95,2019-06-16 08:43:00,654 8th St, New York City,NY,10001 +220492,USB-C Charging Cable,1,11.95,2019-06-04 17:30:00,811 Sunset St, Portland,OR,97035 +220493,USB-C Charging Cable,1,11.95,2019-06-17 19:45:00,299 Cedar St, San Francisco,CA,94016 +220494,Bose SoundSport Headphones,1,99.99,2019-06-15 11:42:00,831 5th St, San Francisco,CA,94016 +220495,ThinkPad Laptop,1,999.99,2019-06-29 13:16:00,613 Park St, San Francisco,CA,94016 +220496,20in Monitor,1,109.99,2019-06-20 15:39:00,889 Church St, Los Angeles,CA,90001 +220497,AAA Batteries (4-pack),1,2.99,2019-06-16 13:48:00,105 Madison St, New York City,NY,10001 +220498,Wired Headphones,1,11.99,2019-06-13 06:30:00,202 4th St, Boston,MA,02215 +220499,Lightning Charging Cable,1,14.95,2019-06-12 06:56:00,356 Maple St, Los Angeles,CA,90001 +220500,USB-C Charging Cable,1,11.95,2019-06-05 18:44:00,558 11th St, Los Angeles,CA,90001 +220501,AA Batteries (4-pack),1,3.84,2019-06-08 19:57:00,461 Wilson St, Atlanta,GA,30301 +220502,Lightning Charging Cable,2,14.95,2019-06-12 19:25:00,766 Spruce St, San Francisco,CA,94016 +220503,AA Batteries (4-pack),3,3.84,2019-06-27 12:09:00,907 Spruce St, Dallas,TX,75001 +220504,Bose SoundSport Headphones,1,99.99,2019-06-04 12:00:00,514 Park St, San Francisco,CA,94016 +220505,27in 4K Gaming Monitor,1,389.99,2019-06-21 17:25:00,650 12th St, Seattle,WA,98101 +220506,AAA Batteries (4-pack),1,2.99,2019-06-04 00:22:00,267 8th St, Los Angeles,CA,90001 +220507,USB-C Charging Cable,1,11.95,2019-06-06 17:45:00,686 Elm St, Boston,MA,02215 +220508,Flatscreen TV,1,300.0,2019-06-14 12:41:00,437 10th St, Boston,MA,02215 +220509,Lightning Charging Cable,2,14.95,2019-06-25 10:26:00,103 11th St, Portland,OR,97035 +220510,USB-C Charging Cable,1,11.95,2019-06-27 16:20:00,197 11th St, San Francisco,CA,94016 +220511,AA Batteries (4-pack),1,3.84,2019-06-18 17:50:00,833 Cedar St, Los Angeles,CA,90001 +220512,Lightning Charging Cable,1,14.95,2019-06-27 19:19:00,961 7th St, Los Angeles,CA,90001 +220513,Bose SoundSport Headphones,1,99.99,2019-06-22 21:18:00,947 Walnut St, Atlanta,GA,30301 +220514,AA Batteries (4-pack),1,3.84,2019-06-23 15:55:00,271 Madison St, Los Angeles,CA,90001 +220515,Wired Headphones,1,11.99,2019-06-29 19:16:00,296 Sunset St, Portland,OR,97035 +220516,27in FHD Monitor,1,149.99,2019-06-12 20:49:00,730 North St, San Francisco,CA,94016 +220517,iPhone,1,700.0,2019-06-06 06:57:00,592 Center St, San Francisco,CA,94016 +220518,AAA Batteries (4-pack),2,2.99,2019-06-12 15:36:00,265 Lake St, Boston,MA,02215 +220519,AA Batteries (4-pack),2,3.84,2019-06-09 11:19:00,172 2nd St, New York City,NY,10001 +220520,AA Batteries (4-pack),1,3.84,2019-06-02 12:03:00,244 Madison St, San Francisco,CA,94016 +220521,Apple Airpods Headphones,1,150.0,2019-06-01 10:59:00,482 9th St, New York City,NY,10001 +220522,27in 4K Gaming Monitor,1,389.99,2019-06-03 15:54:00,689 12th St, Atlanta,GA,30301 +220523,Apple Airpods Headphones,1,150.0,2019-06-29 22:40:00,902 Cedar St, Los Angeles,CA,90001 +220524,AA Batteries (4-pack),1,3.84,2019-06-04 17:26:00,670 10th St, Atlanta,GA,30301 +220525,iPhone,1,700.0,2019-06-17 13:58:00,814 9th St, Dallas,TX,75001 +220526,iPhone,1,700.0,2019-06-01 16:23:00,814 6th St, Los Angeles,CA,90001 +220526,Apple Airpods Headphones,1,150.0,2019-06-01 16:23:00,814 6th St, Los Angeles,CA,90001 +220527,AAA Batteries (4-pack),1,2.99,2019-06-29 17:59:00,410 Cherry St, Boston,MA,02215 +220528,Wired Headphones,1,11.99,2019-06-10 11:26:00,745 Forest St, San Francisco,CA,94016 +220529,USB-C Charging Cable,1,11.95,2019-06-19 12:00:00,936 Adams St, Dallas,TX,75001 +220530,AA Batteries (4-pack),4,3.84,2019-06-03 08:28:00,913 Spruce St, Los Angeles,CA,90001 +220531,27in FHD Monitor,1,149.99,2019-06-13 19:14:00,792 Lake St, Boston,MA,02215 +220532,Bose SoundSport Headphones,1,99.99,2019-06-09 15:10:00,688 Dogwood St, San Francisco,CA,94016 +220533,AA Batteries (4-pack),1,3.84,2019-06-27 19:19:00,539 Wilson St, New York City,NY,10001 +220534,Wired Headphones,1,11.99,2019-06-20 18:56:00,224 Center St, Seattle,WA,98101 +220535,ThinkPad Laptop,1,999.99,2019-06-22 22:26:00,901 Main St, New York City,NY,10001 +220536,Bose SoundSport Headphones,1,99.99,2019-06-14 16:06:00,484 Meadow St, Atlanta,GA,30301 +220537,Wired Headphones,1,11.99,2019-06-09 00:00:00,356 8th St, San Francisco,CA,94016 +220538,27in 4K Gaming Monitor,1,389.99,2019-06-26 16:47:00,86 Highland St, New York City,NY,10001 +220539,Wired Headphones,1,11.99,2019-06-02 17:03:00,552 Johnson St, Los Angeles,CA,90001 +220540,Lightning Charging Cable,1,14.95,2019-06-26 07:45:00,15 Ridge St, San Francisco,CA,94016 +220541,Lightning Charging Cable,1,14.95,2019-06-12 14:41:00,400 8th St, San Francisco,CA,94016 +220542,Lightning Charging Cable,2,14.95,2019-06-21 17:44:00,8 Spruce St, Los Angeles,CA,90001 +220543,AAA Batteries (4-pack),1,2.99,2019-06-28 17:58:00,387 Adams St, Los Angeles,CA,90001 +220544,Wired Headphones,1,11.99,2019-06-20 11:54:00,967 Center St, Portland,OR,97035 +220545,USB-C Charging Cable,1,11.95,2019-06-11 09:15:00,675 Elm St, Seattle,WA,98101 +220546,Apple Airpods Headphones,1,150.0,2019-06-02 17:16:00,382 Lakeview St, Atlanta,GA,30301 +220547,Google Phone,1,600.0,2019-06-06 17:33:00,650 Jackson St, San Francisco,CA,94016 +220548,Apple Airpods Headphones,1,150.0,2019-06-10 20:47:00,844 Lincoln St, San Francisco,CA,94016 +220549,Macbook Pro Laptop,1,1700.0,2019-06-09 20:56:00,209 Main St, Seattle,WA,98101 +220550,LG Dryer,1,600.0,2019-06-17 16:55:00,281 Church St, Boston,MA,02215 +220551,USB-C Charging Cable,1,11.95,2019-06-05 18:18:00,868 Washington St, Los Angeles,CA,90001 +220552,USB-C Charging Cable,2,11.95,2019-06-04 10:47:00,186 Hickory St, San Francisco,CA,94016 +220553,AAA Batteries (4-pack),1,2.99,2019-06-01 08:26:00,79 14th St, Boston,MA,02215 +220554,Bose SoundSport Headphones,1,99.99,2019-06-26 14:47:00,726 Meadow St, San Francisco,CA,94016 +220555,Wired Headphones,2,11.99,2019-06-02 16:44:00,95 Cedar St, Portland,OR,97035 +220556,Bose SoundSport Headphones,1,99.99,2019-06-13 12:56:00,710 South St, San Francisco,CA,94016 +220556,Lightning Charging Cable,1,14.95,2019-06-13 12:56:00,710 South St, San Francisco,CA,94016 +220557,AA Batteries (4-pack),2,3.84,2019-06-16 16:45:00,813 Washington St, San Francisco,CA,94016 +220558,Wired Headphones,1,11.99,2019-06-15 09:35:00,499 1st St, Atlanta,GA,30301 +220559,USB-C Charging Cable,1,11.95,2019-06-08 17:12:00,933 Jefferson St, San Francisco,CA,94016 +220560,Lightning Charging Cable,1,14.95,2019-06-19 00:39:00,993 Hill St, Portland,OR,97035 +220561,Bose SoundSport Headphones,1,99.99,2019-06-26 14:51:00,371 4th St, Los Angeles,CA,90001 +220562,Wired Headphones,1,11.99,2019-06-12 20:50:00,724 Center St, San Francisco,CA,94016 +220563,USB-C Charging Cable,1,11.95,2019-06-07 16:54:00,337 South St, San Francisco,CA,94016 +220564,USB-C Charging Cable,1,11.95,2019-06-26 17:38:00,588 Johnson St, Dallas,TX,75001 +220565,Lightning Charging Cable,1,14.95,2019-06-22 08:01:00,921 Washington St, Austin,TX,73301 +220566,Wired Headphones,1,11.99,2019-06-27 19:23:00,166 Dogwood St, Portland,OR,97035 +220567,34in Ultrawide Monitor,1,379.99,2019-06-16 11:41:00,950 Center St, Austin,TX,73301 +220568,Apple Airpods Headphones,1,150.0,2019-06-22 08:27:00,99 8th St, San Francisco,CA,94016 +220569,Wired Headphones,1,11.99,2019-06-27 19:16:00,928 Johnson St, Atlanta,GA,30301 +220570,27in FHD Monitor,1,149.99,2019-06-20 14:11:00,898 Lakeview St, San Francisco,CA,94016 +220571,Apple Airpods Headphones,1,150.0,2019-06-03 21:22:00,924 Adams St, Atlanta,GA,30301 +220572,AAA Batteries (4-pack),1,2.99,2019-06-24 00:43:00,96 Dogwood St, San Francisco,CA,94016 +220573,Wired Headphones,1,11.99,2019-06-20 13:45:00,538 Cedar St, San Francisco,CA,94016 +220574,Bose SoundSport Headphones,1,99.99,2019-06-19 17:29:00,26 Sunset St, San Francisco,CA,94016 +220575,Flatscreen TV,1,300.0,2019-06-20 22:59:00,799 7th St, Boston,MA,02215 +220576,Wired Headphones,2,11.99,2019-06-02 10:27:00,250 8th St, Los Angeles,CA,90001 +220577,AAA Batteries (4-pack),3,2.99,2019-06-05 11:31:00,140 7th St, New York City,NY,10001 +220578,AA Batteries (4-pack),2,3.84,2019-06-18 15:05:00,463 Willow St, Los Angeles,CA,90001 +220579,AAA Batteries (4-pack),1,2.99,2019-06-27 16:01:00,21 6th St, Los Angeles,CA,90001 +220580,Lightning Charging Cable,1,14.95,2019-06-23 15:54:00,553 Park St, San Francisco,CA,94016 +220581,AA Batteries (4-pack),1,3.84,2019-06-19 11:29:00,149 Washington St, San Francisco,CA,94016 +220582,Flatscreen TV,1,300.0,2019-06-07 13:53:00,311 Chestnut St, San Francisco,CA,94016 +220583,Macbook Pro Laptop,1,1700.0,2019-06-29 19:27:00,737 South St, New York City,NY,10001 +220584,Lightning Charging Cable,1,14.95,2019-06-25 09:44:00,13 Willow St, Atlanta,GA,30301 +220585,Apple Airpods Headphones,1,150.0,2019-06-01 05:16:00,158 Dogwood St, New York City,NY,10001 +220586,Wired Headphones,1,11.99,2019-06-04 16:19:00,921 Lake St, Seattle,WA,98101 +220587,Apple Airpods Headphones,1,150.0,2019-06-03 21:47:00,265 9th St, Portland,OR,97035 +220588,Apple Airpods Headphones,1,150.0,2019-06-01 17:50:00,671 5th St, Dallas,TX,75001 +220589,USB-C Charging Cable,1,11.95,2019-06-27 18:06:00,317 7th St, San Francisco,CA,94016 +220590,Apple Airpods Headphones,1,150.0,2019-06-08 19:25:00,117 10th St, Los Angeles,CA,90001 +220591,27in 4K Gaming Monitor,1,389.99,2019-06-03 17:08:00,84 Forest St, San Francisco,CA,94016 +220592,34in Ultrawide Monitor,1,379.99,2019-06-08 11:43:00,513 Main St, San Francisco,CA,94016 +220593,27in 4K Gaming Monitor,1,389.99,2019-06-13 16:38:00,25 Main St, San Francisco,CA,94016 +220594,Lightning Charging Cable,1,14.95,2019-06-06 18:28:00,50 Park St, Los Angeles,CA,90001 +220595,Macbook Pro Laptop,1,1700.0,2019-06-03 06:49:00,114 Pine St, Portland,OR,97035 +220596,Google Phone,1,600.0,2019-06-13 22:35:00,178 Church St, Dallas,TX,75001 +220597,AA Batteries (4-pack),1,3.84,2019-06-11 07:52:00,176 Hickory St, Portland,ME,04101 +220598,AAA Batteries (4-pack),1,2.99,2019-06-01 18:37:00,136 14th St, San Francisco,CA,94016 +220599,Wired Headphones,1,11.99,2019-06-07 20:19:00,882 Dogwood St, Seattle,WA,98101 +220600,27in 4K Gaming Monitor,1,389.99,2019-06-08 23:20:00,277 Jefferson St, Los Angeles,CA,90001 +220601,Bose SoundSport Headphones,1,99.99,2019-06-21 00:13:00,418 Madison St, Dallas,TX,75001 +220602,27in FHD Monitor,1,149.99,2019-06-06 21:36:00,755 Spruce St, San Francisco,CA,94016 +220603,USB-C Charging Cable,1,11.95,2019-06-22 17:39:00,677 Pine St, Boston,MA,02215 +220604,USB-C Charging Cable,1,11.95,2019-06-21 17:55:00,289 13th St, San Francisco,CA,94016 +220605,AA Batteries (4-pack),1,3.84,2019-06-27 03:31:00,994 South St, New York City,NY,10001 +220606,USB-C Charging Cable,1,11.95,2019-06-22 10:29:00,481 5th St, San Francisco,CA,94016 +220607,Lightning Charging Cable,1,14.95,2019-06-01 16:25:00,397 Hickory St, San Francisco,CA,94016 +220608,Lightning Charging Cable,1,14.95,2019-06-24 18:31:00,513 12th St, San Francisco,CA,94016 +220609,AAA Batteries (4-pack),1,2.99,2019-06-19 05:41:00,548 Madison St, New York City,NY,10001 +220610,Apple Airpods Headphones,1,150.0,2019-06-17 13:31:00,866 Adams St, New York City,NY,10001 +220611,Wired Headphones,1,11.99,2019-06-07 12:44:00,746 Lakeview St, Los Angeles,CA,90001 +220612,Bose SoundSport Headphones,1,99.99,2019-06-22 16:23:00,477 Adams St, San Francisco,CA,94016 +220613,Vareebadd Phone,1,400.0,2019-06-28 08:29:00,150 Ridge St, Dallas,TX,75001 +220614,AA Batteries (4-pack),2,3.84,2019-06-13 13:33:00,579 Cherry St, Los Angeles,CA,90001 +220615,AAA Batteries (4-pack),1,2.99,2019-06-13 12:20:00,528 Willow St, Los Angeles,CA,90001 +220616,Wired Headphones,1,11.99,2019-06-19 10:45:00,186 11th St, Portland,OR,97035 +220617,AAA Batteries (4-pack),1,2.99,2019-06-28 21:19:00,46 Hickory St, Boston,MA,02215 +220618,Apple Airpods Headphones,2,150.0,2019-06-22 13:13:00,664 Willow St, San Francisco,CA,94016 +220619,AA Batteries (4-pack),1,3.84,2019-06-14 12:00:00,718 Ridge St, Dallas,TX,75001 +220620,27in FHD Monitor,1,149.99,2019-06-15 13:36:00,671 Elm St, San Francisco,CA,94016 +220621,Bose SoundSport Headphones,1,99.99,2019-06-07 18:30:00,776 10th St, San Francisco,CA,94016 +220622,Wired Headphones,1,11.99,2019-06-19 15:29:00,972 South St, Los Angeles,CA,90001 +220623,AA Batteries (4-pack),1,3.84,2019-06-30 23:12:00,793 8th St, San Francisco,CA,94016 +220624,Lightning Charging Cable,1,14.95,2019-06-23 16:32:00,762 11th St, Los Angeles,CA,90001 +220625,USB-C Charging Cable,1,11.95,2019-06-07 09:04:00,475 Maple St, Seattle,WA,98101 +220626,27in FHD Monitor,1,149.99,2019-06-06 05:09:00,109 Spruce St, Atlanta,GA,30301 +220627,Flatscreen TV,1,300.0,2019-06-11 12:59:00,825 Walnut St, Los Angeles,CA,90001 +220628,AAA Batteries (4-pack),1,2.99,2019-06-14 15:53:00,623 14th St, San Francisco,CA,94016 +220629,AAA Batteries (4-pack),3,2.99,2019-06-11 18:44:00,13 2nd St, Portland,OR,97035 +220630,Apple Airpods Headphones,1,150.0,2019-06-26 21:46:00,630 Pine St, New York City,NY,10001 +220631,AA Batteries (4-pack),1,3.84,2019-06-09 23:49:00,365 Hill St, San Francisco,CA,94016 +220632,27in 4K Gaming Monitor,1,389.99,2019-06-18 19:21:00,252 6th St, Los Angeles,CA,90001 +220633,Vareebadd Phone,1,400.0,2019-06-28 09:11:00,608 12th St, San Francisco,CA,94016 +220634,USB-C Charging Cable,1,11.95,2019-06-07 18:04:00,347 14th St, San Francisco,CA,94016 +220635,USB-C Charging Cable,1,11.95,2019-06-05 09:15:00,578 2nd St, Boston,MA,02215 +220636,Lightning Charging Cable,1,14.95,2019-06-05 09:20:00,159 Jefferson St, Atlanta,GA,30301 +220637,Lightning Charging Cable,2,14.95,2019-06-10 09:54:00,980 7th St, Atlanta,GA,30301 +220638,Wired Headphones,2,11.99,2019-06-17 22:28:00,420 Walnut St, Austin,TX,73301 +220639,Apple Airpods Headphones,1,150.0,2019-06-06 10:14:00,356 South St, San Francisco,CA,94016 +220640,AAA Batteries (4-pack),1,2.99,2019-06-17 10:11:00,788 9th St, New York City,NY,10001 +220641,34in Ultrawide Monitor,1,379.99,2019-06-27 20:51:00,657 Hickory St, San Francisco,CA,94016 +220642,AA Batteries (4-pack),1,3.84,2019-06-11 17:35:00,485 Sunset St, Los Angeles,CA,90001 +220643,34in Ultrawide Monitor,1,379.99,2019-06-30 11:37:00,60 North St, Los Angeles,CA,90001 +220644,AAA Batteries (4-pack),2,2.99,2019-06-22 21:19:00,142 Sunset St, Portland,OR,97035 +220645,AA Batteries (4-pack),2,3.84,2019-06-05 11:40:00,822 4th St, Los Angeles,CA,90001 +220646,Apple Airpods Headphones,1,150.0,2019-06-22 08:51:00,440 Hill St, San Francisco,CA,94016 +220647,Macbook Pro Laptop,1,1700.0,2019-06-01 13:11:00,832 14th St, Austin,TX,73301 +220648,Bose SoundSport Headphones,1,99.99,2019-06-13 20:31:00,262 Church St, Seattle,WA,98101 +220649,LG Washing Machine,1,600.0,2019-06-19 12:11:00,490 Adams St, New York City,NY,10001 +220650,USB-C Charging Cable,1,11.95,2019-06-15 10:12:00,906 River St, Dallas,TX,75001 +220651,Wired Headphones,1,11.99,2019-06-25 20:01:00,204 11th St, San Francisco,CA,94016 +220652,USB-C Charging Cable,1,11.95,2019-06-26 19:48:00,5 River St, Portland,OR,97035 +220653,AA Batteries (4-pack),1,3.84,2019-06-18 11:01:00,111 Center St, San Francisco,CA,94016 +220654,AAA Batteries (4-pack),1,2.99,2019-06-16 14:03:00,399 13th St, San Francisco,CA,94016 +220655,Bose SoundSport Headphones,1,99.99,2019-06-30 22:26:00,889 14th St, Boston,MA,02215 +220656,Wired Headphones,1,11.99,2019-06-30 16:19:00,418 Church St, Dallas,TX,75001 +220657,AAA Batteries (4-pack),1,2.99,2019-06-17 15:04:00,765 Chestnut St, San Francisco,CA,94016 +220658,Vareebadd Phone,1,400.0,2019-06-01 16:59:00,116 Lakeview St, Dallas,TX,75001 +220659,Apple Airpods Headphones,1,150.0,2019-06-11 09:24:00,730 4th St, Atlanta,GA,30301 +220660,USB-C Charging Cable,1,11.95,2019-06-20 10:32:00,53 5th St, Seattle,WA,98101 +220661,USB-C Charging Cable,1,11.95,2019-06-15 06:32:00,765 Sunset St, Portland,OR,97035 +220662,27in FHD Monitor,1,149.99,2019-06-11 10:28:00,481 Washington St, New York City,NY,10001 +220663,Wired Headphones,1,11.99,2019-06-08 09:31:00,360 West St, Los Angeles,CA,90001 +220664,Google Phone,1,600.0,2019-06-20 11:04:00,138 Chestnut St, Portland,OR,97035 +220665,Google Phone,1,600.0,2019-06-10 10:53:00,2 7th St, Atlanta,GA,30301 +220666,Bose SoundSport Headphones,1,99.99,2019-06-17 17:38:00,342 Meadow St, San Francisco,CA,94016 +220667,USB-C Charging Cable,1,11.95,2019-06-03 15:23:00,514 Park St, Atlanta,GA,30301 +220668,USB-C Charging Cable,2,11.95,2019-06-17 00:01:00,120 4th St, Boston,MA,02215 +220669,Wired Headphones,1,11.99,2019-06-30 07:32:00,693 Adams St, New York City,NY,10001 +220670,34in Ultrawide Monitor,1,379.99,2019-06-15 20:26:00,17 Lakeview St, New York City,NY,10001 +220671,AA Batteries (4-pack),1,3.84,2019-06-13 02:50:00,788 Main St, Los Angeles,CA,90001 +220672,Lightning Charging Cable,1,14.95,2019-06-21 15:13:00,163 2nd St, Portland,ME,04101 +220673,USB-C Charging Cable,1,11.95,2019-06-17 19:33:00,878 Forest St, San Francisco,CA,94016 +220674,Bose SoundSport Headphones,1,99.99,2019-06-12 10:06:00,372 Lake St, Atlanta,GA,30301 +220675,Flatscreen TV,1,300.0,2019-06-24 12:22:00,884 11th St, Portland,OR,97035 +220676,AA Batteries (4-pack),2,3.84,2019-06-18 16:42:00,619 Walnut St, Seattle,WA,98101 +220677,27in 4K Gaming Monitor,1,389.99,2019-06-17 12:50:00,644 Cedar St, Los Angeles,CA,90001 +220678,iPhone,1,700.0,2019-06-25 13:06:00,848 Chestnut St, Los Angeles,CA,90001 +220678,Wired Headphones,1,11.99,2019-06-25 13:06:00,848 Chestnut St, Los Angeles,CA,90001 +220679,27in FHD Monitor,1,149.99,2019-06-13 20:37:00,727 11th St, Los Angeles,CA,90001 +220680,Lightning Charging Cable,1,14.95,2019-06-04 15:35:00,659 2nd St, Portland,ME,04101 +220681,iPhone,1,700.0,2019-06-25 11:22:00,70 Hickory St, New York City,NY,10001 +220682,20in Monitor,1,109.99,2019-06-21 07:04:00,710 8th St, New York City,NY,10001 +220683,Bose SoundSport Headphones,1,99.99,2019-06-08 13:39:00,433 7th St, New York City,NY,10001 +220684,Flatscreen TV,1,300.0,2019-06-30 18:39:00,264 Johnson St, Atlanta,GA,30301 +220685,Lightning Charging Cable,1,14.95,2019-06-02 12:13:00,659 Jefferson St, Seattle,WA,98101 +220686,USB-C Charging Cable,1,11.95,2019-06-24 22:03:00,754 7th St, San Francisco,CA,94016 +220687,USB-C Charging Cable,1,11.95,2019-06-21 19:33:00,36 Walnut St, Atlanta,GA,30301 +220688,Bose SoundSport Headphones,1,99.99,2019-06-12 12:34:00,145 Walnut St, San Francisco,CA,94016 +220689,USB-C Charging Cable,1,11.95,2019-06-20 21:19:00,651 Maple St, Los Angeles,CA,90001 +220690,USB-C Charging Cable,1,11.95,2019-06-23 19:30:00,414 Church St, San Francisco,CA,94016 +220691,Wired Headphones,1,11.99,2019-06-17 16:52:00,578 Lake St, San Francisco,CA,94016 +220692,34in Ultrawide Monitor,1,379.99,2019-06-27 12:57:00,169 4th St, Boston,MA,02215 +220693,AAA Batteries (4-pack),1,2.99,2019-06-04 20:03:00,266 Maple St, San Francisco,CA,94016 +220694,Wired Headphones,1,11.99,2019-06-08 12:41:00,572 8th St, San Francisco,CA,94016 +220695,20in Monitor,1,109.99,2019-06-27 08:51:00,945 9th St, Los Angeles,CA,90001 +220696,20in Monitor,1,109.99,2019-06-06 13:33:00,414 5th St, Dallas,TX,75001 +220697,20in Monitor,1,109.99,2019-06-29 06:41:00,840 Chestnut St, Los Angeles,CA,90001 +220698,AAA Batteries (4-pack),1,2.99,2019-06-16 14:48:00,779 Walnut St, San Francisco,CA,94016 +220699,27in 4K Gaming Monitor,1,389.99,2019-06-10 17:30:00,771 Wilson St, Los Angeles,CA,90001 +220700,Wired Headphones,1,11.99,2019-06-28 00:42:00,497 Chestnut St, Portland,OR,97035 +220701,USB-C Charging Cable,1,11.95,2019-06-18 16:45:00,424 Cedar St, Los Angeles,CA,90001 +220702,AA Batteries (4-pack),1,3.84,2019-06-23 09:44:00,468 South St, New York City,NY,10001 +220703,AAA Batteries (4-pack),3,2.99,2019-06-18 18:29:00,969 8th St, Seattle,WA,98101 +220704,AA Batteries (4-pack),2,3.84,2019-06-06 21:39:00,617 Lake St, Boston,MA,02215 +220705,AA Batteries (4-pack),1,3.84,2019-06-05 19:29:00,947 5th St, New York City,NY,10001 +220706,34in Ultrawide Monitor,1,379.99,2019-06-08 19:57:00,146 Cherry St, Portland,OR,97035 +220707,Bose SoundSport Headphones,1,99.99,2019-06-26 02:33:00,446 Jackson St, Los Angeles,CA,90001 +220708,USB-C Charging Cable,1,11.95,2019-06-08 12:57:00,479 Ridge St, Boston,MA,02215 +220709,Macbook Pro Laptop,1,1700.0,2019-06-14 19:43:00,187 North St, San Francisco,CA,94016 +220710,USB-C Charging Cable,1,11.95,2019-06-21 08:15:00,41 Cherry St, Portland,OR,97035 +220711,Wired Headphones,1,11.99,2019-06-12 23:47:00,144 North St, Boston,MA,02215 +220712,Apple Airpods Headphones,1,150.0,2019-06-03 21:29:00,385 Highland St, Los Angeles,CA,90001 +220713,34in Ultrawide Monitor,1,379.99,2019-06-14 15:57:00,566 Center St, San Francisco,CA,94016 +220714,Apple Airpods Headphones,1,150.0,2019-06-11 13:23:00,223 Park St, San Francisco,CA,94016 +220715,Wired Headphones,1,11.99,2019-06-05 23:40:00,967 Center St, San Francisco,CA,94016 +220716,27in 4K Gaming Monitor,1,389.99,2019-06-24 20:15:00,3 13th St, New York City,NY,10001 +220717,Wired Headphones,1,11.99,2019-06-15 08:07:00,569 Church St, Los Angeles,CA,90001 +220718,iPhone,1,700.0,2019-06-25 10:11:00,187 8th St, New York City,NY,10001 +220719,Macbook Pro Laptop,1,1700.0,2019-06-23 11:44:00,869 Church St, Dallas,TX,75001 +220720,Flatscreen TV,1,300.0,2019-06-04 07:37:00,569 Chestnut St, San Francisco,CA,94016 +220721,27in 4K Gaming Monitor,1,389.99,2019-06-01 18:49:00,754 Jefferson St, Austin,TX,73301 +220722,iPhone,1,700.0,2019-06-16 19:21:00,246 1st St, Los Angeles,CA,90001 +220723,Wired Headphones,1,11.99,2019-06-11 20:59:00,410 Highland St, New York City,NY,10001 +220724,USB-C Charging Cable,2,11.95,2019-06-17 11:51:00,36 6th St, Boston,MA,02215 +220725,AA Batteries (4-pack),2,3.84,2019-06-05 21:00:00,741 Johnson St, New York City,NY,10001 +220726,27in FHD Monitor,1,149.99,2019-06-15 13:22:00,106 Sunset St, Boston,MA,02215 +220727,AAA Batteries (4-pack),1,2.99,2019-06-06 12:00:00,687 Church St, Austin,TX,73301 +220728,Wired Headphones,2,11.99,2019-06-20 10:47:00,405 2nd St, New York City,NY,10001 +220729,Bose SoundSport Headphones,1,99.99,2019-06-18 19:44:00,975 9th St, Los Angeles,CA,90001 +220730,Wired Headphones,1,11.99,2019-06-13 18:05:00,150 Jackson St, Atlanta,GA,30301 +220731,Bose SoundSport Headphones,1,99.99,2019-06-02 12:57:00,722 8th St, New York City,NY,10001 +220732,Macbook Pro Laptop,1,1700.0,2019-06-05 21:10:00,80 Meadow St, Los Angeles,CA,90001 +220733,Lightning Charging Cable,1,14.95,2019-06-30 10:54:00,979 10th St, San Francisco,CA,94016 +220734,27in FHD Monitor,1,149.99,2019-06-21 08:36:00,484 Meadow St, San Francisco,CA,94016 +220735,Lightning Charging Cable,1,14.95,2019-06-19 13:02:00,485 Madison St, New York City,NY,10001 +220736,USB-C Charging Cable,1,11.95,2019-06-30 10:40:00,67 Meadow St, San Francisco,CA,94016 +220737,Macbook Pro Laptop,1,1700.0,2019-06-09 13:34:00,392 Madison St, Los Angeles,CA,90001 +220738,AAA Batteries (4-pack),1,2.99,2019-06-26 19:29:00,307 Johnson St, Atlanta,GA,30301 +220739,AAA Batteries (4-pack),2,2.99,2019-06-09 12:06:00,371 Lakeview St, Los Angeles,CA,90001 +220740,27in 4K Gaming Monitor,1,389.99,2019-06-10 20:02:00,315 Adams St, Seattle,WA,98101 +220741,USB-C Charging Cable,1,11.95,2019-06-17 13:45:00,620 Hill St, Austin,TX,73301 +220742,AAA Batteries (4-pack),1,2.99,2019-06-04 18:55:00,222 7th St, Boston,MA,02215 +220743,AA Batteries (4-pack),1,3.84,2019-06-20 22:15:00,988 5th St, Los Angeles,CA,90001 +220744,Apple Airpods Headphones,1,150.0,2019-06-19 16:37:00,968 13th St, Atlanta,GA,30301 +220745,27in FHD Monitor,1,149.99,2019-06-19 21:04:00,856 Johnson St, Los Angeles,CA,90001 +220746,Lightning Charging Cable,1,14.95,2019-06-29 15:09:00,580 Meadow St, Austin,TX,73301 +220747,AA Batteries (4-pack),1,3.84,2019-06-01 12:00:00,955 Jefferson St, San Francisco,CA,94016 +220748,27in 4K Gaming Monitor,1,389.99,2019-06-20 02:23:00,642 Ridge St, San Francisco,CA,94016 +220749,34in Ultrawide Monitor,1,379.99,2019-06-27 11:12:00,966 Wilson St, New York City,NY,10001 +220750,AAA Batteries (4-pack),2,2.99,2019-06-16 20:39:00,317 Chestnut St, Seattle,WA,98101 +220751,Bose SoundSport Headphones,1,99.99,2019-06-06 18:36:00,832 12th St, New York City,NY,10001 +220752,Wired Headphones,1,11.99,2019-06-01 13:09:00,260 Ridge St, Portland,OR,97035 +220753,Wired Headphones,1,11.99,2019-06-04 18:34:00,266 Madison St, Los Angeles,CA,90001 +220754,Flatscreen TV,1,300.0,2019-06-10 20:01:00,757 5th St, Los Angeles,CA,90001 +220755,USB-C Charging Cable,1,11.95,2019-06-24 13:23:00,656 Lake St, Los Angeles,CA,90001 +220756,Bose SoundSport Headphones,1,99.99,2019-06-05 15:47:00,792 Walnut St, Seattle,WA,98101 +220757,20in Monitor,1,109.99,2019-06-21 17:52:00,358 Cedar St, Dallas,TX,75001 +220758,AAA Batteries (4-pack),1,2.99,2019-06-27 14:27:00,666 Church St, Seattle,WA,98101 +220759,USB-C Charging Cable,1,11.95,2019-06-07 20:46:00,143 Jackson St, Los Angeles,CA,90001 +220760,AA Batteries (4-pack),1,3.84,2019-06-28 09:37:00,925 Cherry St, Los Angeles,CA,90001 +220761,Apple Airpods Headphones,1,150.0,2019-06-16 19:44:00,549 Meadow St, Portland,OR,97035 +220762,34in Ultrawide Monitor,1,379.99,2019-06-08 20:57:00,331 Highland St, Boston,MA,02215 +220763,Apple Airpods Headphones,1,150.0,2019-06-06 08:48:00,376 Johnson St, Dallas,TX,75001 +220764,AA Batteries (4-pack),1,3.84,2019-06-25 10:22:00,675 Hickory St, San Francisco,CA,94016 +220764,Apple Airpods Headphones,1,150.0,2019-06-25 10:22:00,675 Hickory St, San Francisco,CA,94016 +220765,USB-C Charging Cable,1,11.95,2019-06-12 11:40:00,860 5th St, Seattle,WA,98101 +220766,AAA Batteries (4-pack),1,2.99,2019-06-29 12:31:00,418 River St, San Francisco,CA,94016 +220767,Bose SoundSport Headphones,1,99.99,2019-06-21 15:22:00,330 Meadow St, Dallas,TX,75001 +220768,Wired Headphones,1,11.99,2019-06-19 12:26:00,899 1st St, Los Angeles,CA,90001 +220769,20in Monitor,1,109.99,2019-06-16 09:29:00,353 Meadow St, Los Angeles,CA,90001 +220770,Wired Headphones,1,11.99,2019-06-26 21:08:00,307 Chestnut St, San Francisco,CA,94016 +220771,AA Batteries (4-pack),1,3.84,2019-06-27 18:51:00,938 Pine St, Los Angeles,CA,90001 +220772,34in Ultrawide Monitor,1,379.99,2019-06-05 16:06:00,103 Washington St, Los Angeles,CA,90001 +220773,Wired Headphones,2,11.99,2019-06-19 13:29:00,862 Lincoln St, Dallas,TX,75001 +220774,27in FHD Monitor,1,149.99,2019-06-24 06:49:00,588 Walnut St, San Francisco,CA,94016 +220775,20in Monitor,1,109.99,2019-06-04 16:00:00,994 Main St, Austin,TX,73301 +220776,Apple Airpods Headphones,1,150.0,2019-06-20 11:44:00,991 Lake St, Los Angeles,CA,90001 +220777,27in 4K Gaming Monitor,1,389.99,2019-06-13 13:10:00,444 4th St, New York City,NY,10001 +220778,AA Batteries (4-pack),1,3.84,2019-06-10 21:22:00,749 Wilson St, New York City,NY,10001 +220779,AAA Batteries (4-pack),2,2.99,2019-06-04 10:14:00,683 Jefferson St, Los Angeles,CA,90001 +220779,Bose SoundSport Headphones,1,99.99,2019-06-04 10:14:00,683 Jefferson St, Los Angeles,CA,90001 +220780,AAA Batteries (4-pack),2,2.99,2019-06-26 10:34:00,520 Maple St, San Francisco,CA,94016 +220781,Lightning Charging Cable,1,14.95,2019-06-15 23:02:00,598 Chestnut St, Boston,MA,02215 +220782,Lightning Charging Cable,1,14.95,2019-06-27 19:37:00,69 Dogwood St, Dallas,TX,75001 +220783,Flatscreen TV,1,300.0,2019-06-14 15:22:00,531 13th St, Los Angeles,CA,90001 +220784,USB-C Charging Cable,1,11.95,2019-06-11 20:28:00,49 Forest St, Seattle,WA,98101 +220785,Lightning Charging Cable,1,14.95,2019-06-02 16:58:00,624 12th St, San Francisco,CA,94016 +220786,20in Monitor,1,109.99,2019-06-28 13:43:00,930 14th St, Austin,TX,73301 +220787,27in FHD Monitor,1,149.99,2019-06-09 12:57:00,683 Park St, Dallas,TX,75001 +220788,Bose SoundSport Headphones,1,99.99,2019-06-02 09:48:00,188 Lakeview St, New York City,NY,10001 +220789,Bose SoundSport Headphones,1,99.99,2019-06-10 06:52:00,449 Park St, San Francisco,CA,94016 +220790,iPhone,1,700.0,2019-06-14 10:42:00,953 8th St, San Francisco,CA,94016 +220791,34in Ultrawide Monitor,1,379.99,2019-06-01 10:01:00,964 Cherry St, Los Angeles,CA,90001 +220792,Google Phone,1,600.0,2019-06-01 10:01:00,381 7th St, Dallas,TX,75001 +220792,Bose SoundSport Headphones,1,99.99,2019-06-01 10:01:00,381 7th St, Dallas,TX,75001 +220793,AAA Batteries (4-pack),1,2.99,2019-06-25 13:09:00,929 Elm St, Austin,TX,73301 +220794,AAA Batteries (4-pack),1,2.99,2019-06-15 12:59:00,200 Ridge St, Dallas,TX,75001 +220795,iPhone,1,700.0,2019-06-08 22:47:00,687 Pine St, Portland,OR,97035 +220795,Lightning Charging Cable,1,14.95,2019-06-08 22:47:00,687 Pine St, Portland,OR,97035 +220796,Lightning Charging Cable,1,14.95,2019-06-07 12:39:00,943 13th St, San Francisco,CA,94016 +220797,Lightning Charging Cable,2,14.95,2019-06-21 13:07:00,282 10th St, San Francisco,CA,94016 +220798,AA Batteries (4-pack),1,3.84,2019-06-18 10:35:00,936 Maple St, Seattle,WA,98101 +220799,Lightning Charging Cable,1,14.95,2019-06-10 21:05:00,532 Hill St, Los Angeles,CA,90001 +220800,USB-C Charging Cable,1,11.95,2019-06-23 06:56:00,599 13th St, San Francisco,CA,94016 +220801,Bose SoundSport Headphones,1,99.99,2019-06-09 09:51:00,680 6th St, San Francisco,CA,94016 +220802,AAA Batteries (4-pack),1,2.99,2019-06-03 16:55:00,621 7th St, Portland,OR,97035 +220803,Apple Airpods Headphones,1,150.0,2019-06-27 19:46:00,367 Elm St, San Francisco,CA,94016 +220804,Lightning Charging Cable,1,14.95,2019-06-23 22:06:00,547 7th St, New York City,NY,10001 +220805,AAA Batteries (4-pack),3,2.99,2019-06-02 17:30:00,597 4th St, Los Angeles,CA,90001 +220806,Flatscreen TV,1,300.0,2019-06-14 06:48:00,653 West St, San Francisco,CA,94016 +220807,USB-C Charging Cable,1,11.95,2019-06-17 15:20:00,396 Maple St, Seattle,WA,98101 +220808,Apple Airpods Headphones,1,150.0,2019-06-26 00:21:00,79 Elm St, Boston,MA,02215 +220809,Apple Airpods Headphones,1,150.0,2019-06-25 00:19:00,987 Church St, New York City,NY,10001 +220810,Google Phone,1,600.0,2019-06-05 16:18:00,253 Elm St, Los Angeles,CA,90001 +220810,Wired Headphones,1,11.99,2019-06-05 16:18:00,253 Elm St, Los Angeles,CA,90001 +220811,USB-C Charging Cable,1,11.95,2019-06-22 23:28:00,615 Main St, New York City,NY,10001 +220812,AAA Batteries (4-pack),1,2.99,2019-06-09 21:50:00,542 6th St, San Francisco,CA,94016 +220813,Wired Headphones,1,11.99,2019-06-26 18:50:00,405 Spruce St, San Francisco,CA,94016 +220814,Wired Headphones,1,11.99,2019-06-21 05:26:00,767 Forest St, Los Angeles,CA,90001 +220815,27in 4K Gaming Monitor,1,389.99,2019-06-26 16:32:00,418 Elm St, New York City,NY,10001 +220816,iPhone,1,700.0,2019-06-08 22:49:00,810 Johnson St, San Francisco,CA,94016 +220817,Apple Airpods Headphones,1,150.0,2019-06-12 12:31:00,942 Pine St, San Francisco,CA,94016 +220818,USB-C Charging Cable,1,11.95,2019-06-18 11:00:00,499 13th St, San Francisco,CA,94016 +220819,Bose SoundSport Headphones,1,99.99,2019-06-18 15:43:00,183 Madison St, Los Angeles,CA,90001 +220820,AA Batteries (4-pack),3,3.84,2019-06-11 18:28:00,16 Sunset St, San Francisco,CA,94016 +220821,Lightning Charging Cable,1,14.95,2019-06-28 19:43:00,335 Forest St, Los Angeles,CA,90001 +220822,Apple Airpods Headphones,1,150.0,2019-06-23 10:12:00,44 Elm St, New York City,NY,10001 +220823,27in 4K Gaming Monitor,1,389.99,2019-06-25 09:19:00,346 River St, San Francisco,CA,94016 +220824,Lightning Charging Cable,1,14.95,2019-06-06 03:24:00,842 Spruce St, Seattle,WA,98101 +220825,AA Batteries (4-pack),1,3.84,2019-06-24 22:08:00,340 Dogwood St, Portland,OR,97035 +220826,Bose SoundSport Headphones,1,99.99,2019-06-22 09:03:00,705 1st St, Boston,MA,02215 +220827,AAA Batteries (4-pack),1,2.99,2019-06-14 19:16:00,853 Cherry St, San Francisco,CA,94016 +220828,AAA Batteries (4-pack),2,2.99,2019-06-28 15:59:00,286 Washington St, New York City,NY,10001 +220829,AA Batteries (4-pack),1,3.84,2019-06-19 20:24:00,348 Church St, Portland,OR,97035 +220830,USB-C Charging Cable,1,11.95,2019-06-14 07:52:00,954 Maple St, Atlanta,GA,30301 +220831,Wired Headphones,1,11.99,2019-06-07 11:26:00,431 Walnut St, Seattle,WA,98101 +220832,ThinkPad Laptop,1,999.99,2019-06-17 22:29:00,539 9th St, Los Angeles,CA,90001 +220833,Wired Headphones,1,11.99,2019-06-12 14:21:00,54 Forest St, New York City,NY,10001 +220834,Lightning Charging Cable,1,14.95,2019-06-15 02:31:00,600 Spruce St, San Francisco,CA,94016 +220835,Lightning Charging Cable,1,14.95,2019-06-10 14:15:00,453 Washington St, Austin,TX,73301 +220836,ThinkPad Laptop,1,999.99,2019-06-10 18:38:00,635 Main St, Atlanta,GA,30301 +220837,iPhone,1,700.0,2019-06-30 11:51:00,573 1st St, Seattle,WA,98101 +220837,Wired Headphones,1,11.99,2019-06-30 11:51:00,573 1st St, Seattle,WA,98101 +220838,AA Batteries (4-pack),2,3.84,2019-06-24 20:06:00,459 4th St, Los Angeles,CA,90001 +220839,Apple Airpods Headphones,1,150.0,2019-06-07 16:40:00,966 Park St, New York City,NY,10001 +220840,ThinkPad Laptop,1,999.99,2019-06-10 23:10:00,438 Jackson St, New York City,NY,10001 +220840,AAA Batteries (4-pack),1,2.99,2019-06-10 23:10:00,438 Jackson St, New York City,NY,10001 +220841,Vareebadd Phone,1,400.0,2019-06-27 11:20:00,528 Madison St, Austin,TX,73301 +220842,Lightning Charging Cable,1,14.95,2019-06-25 22:19:00,620 South St, San Francisco,CA,94016 +220843,Apple Airpods Headphones,1,150.0,2019-06-13 15:54:00,400 8th St, Atlanta,GA,30301 +220844,AA Batteries (4-pack),2,3.84,2019-06-12 00:42:00,407 4th St, San Francisco,CA,94016 +220845,AA Batteries (4-pack),1,3.84,2019-06-02 09:02:00,450 Main St, New York City,NY,10001 +220846,27in FHD Monitor,1,149.99,2019-06-22 22:17:00,894 Lake St, San Francisco,CA,94016 +220847,Flatscreen TV,1,300.0,2019-06-08 18:55:00,988 Jefferson St, New York City,NY,10001 +220848,Apple Airpods Headphones,1,150.0,2019-06-14 09:21:00,601 North St, Atlanta,GA,30301 +220848,Vareebadd Phone,1,400.0,2019-06-14 09:21:00,601 North St, Atlanta,GA,30301 +220849,27in FHD Monitor,1,149.99,2019-06-28 20:13:00,237 River St, Seattle,WA,98101 +220850,USB-C Charging Cable,1,11.95,2019-06-20 20:26:00,798 Forest St, Los Angeles,CA,90001 +220851,Wired Headphones,1,11.99,2019-06-08 21:31:00,999 13th St, Boston,MA,02215 +220852,AA Batteries (4-pack),1,3.84,2019-06-26 16:42:00,42 Hickory St, San Francisco,CA,94016 +220853,Apple Airpods Headphones,1,150.0,2019-06-23 15:36:00,724 Chestnut St, Seattle,WA,98101 +220854,AA Batteries (4-pack),1,3.84,2019-06-07 11:02:00,154 Cedar St, Seattle,WA,98101 +220855,Apple Airpods Headphones,1,150.0,2019-06-06 16:25:00,915 Ridge St, Boston,MA,02215 +220856,Bose SoundSport Headphones,1,99.99,2019-06-04 12:18:00,274 Spruce St, New York City,NY,10001 +220857,AAA Batteries (4-pack),1,2.99,2019-06-05 13:50:00,716 8th St, New York City,NY,10001 +220858,iPhone,1,700.0,2019-06-14 17:49:00,804 Maple St, New York City,NY,10001 +220859,Apple Airpods Headphones,1,150.0,2019-06-09 18:50:00,748 Willow St, Los Angeles,CA,90001 +220860,27in FHD Monitor,1,149.99,2019-06-15 18:10:00,381 1st St, New York City,NY,10001 +220861,AA Batteries (4-pack),1,3.84,2019-06-16 19:05:00,661 Pine St, Los Angeles,CA,90001 +220862,34in Ultrawide Monitor,1,379.99,2019-06-05 13:38:00,366 9th St, Los Angeles,CA,90001 +220863,Lightning Charging Cable,1,14.95,2019-06-19 22:49:00,229 Pine St, New York City,NY,10001 +220864,20in Monitor,1,109.99,2019-06-25 21:50:00,331 Center St, New York City,NY,10001 +220865,AAA Batteries (4-pack),2,2.99,2019-06-12 21:42:00,362 Highland St, Seattle,WA,98101 +220866,Macbook Pro Laptop,1,1700.0,2019-06-16 14:38:00,935 Cedar St, Los Angeles,CA,90001 +220867,AAA Batteries (4-pack),1,2.99,2019-06-02 21:26:00,770 Pine St, Boston,MA,02215 +220868,Apple Airpods Headphones,1,150.0,2019-06-13 01:06:00,143 Cherry St, Los Angeles,CA,90001 +220869,USB-C Charging Cable,1,11.95,2019-06-19 01:10:00,35 Johnson St, Los Angeles,CA,90001 +220870,Vareebadd Phone,1,400.0,2019-06-22 08:15:00,776 Washington St, Boston,MA,02215 +220871,27in 4K Gaming Monitor,1,389.99,2019-06-30 23:47:00,798 Park St, New York City,NY,10001 +220872,AAA Batteries (4-pack),1,2.99,2019-06-20 20:19:00,671 Adams St, Dallas,TX,75001 +220873,AAA Batteries (4-pack),1,2.99,2019-06-05 13:32:00,902 Hickory St, Seattle,WA,98101 +220874,AAA Batteries (4-pack),3,2.99,2019-06-28 20:07:00,491 Maple St, Portland,OR,97035 +220875,AA Batteries (4-pack),1,3.84,2019-06-07 13:18:00,660 Chestnut St, New York City,NY,10001 +220876,27in FHD Monitor,1,149.99,2019-06-25 21:36:00,521 Forest St, New York City,NY,10001 +220877,Lightning Charging Cable,1,14.95,2019-06-05 21:12:00,150 Sunset St, Seattle,WA,98101 +220878,Lightning Charging Cable,1,14.95,2019-06-24 12:06:00,446 Lake St, Dallas,TX,75001 +220879,Lightning Charging Cable,1,14.95,2019-06-02 17:00:00,651 Church St, San Francisco,CA,94016 +220880,Wired Headphones,1,11.99,2019-06-16 03:00:00,504 North St, Los Angeles,CA,90001 +220881,27in FHD Monitor,1,149.99,2019-06-26 20:47:00,465 Chestnut St, New York City,NY,10001 +220882,Lightning Charging Cable,1,14.95,2019-06-13 17:53:00,588 Lake St, Boston,MA,02215 +220883,Lightning Charging Cable,1,14.95,2019-06-15 15:54:00,56 Maple St, Los Angeles,CA,90001 +220884,20in Monitor,1,109.99,2019-06-26 20:42:00,36 Meadow St, Los Angeles,CA,90001 +220885,27in 4K Gaming Monitor,1,389.99,2019-06-02 14:57:00,615 Wilson St, Portland,OR,97035 +220886,Lightning Charging Cable,1,14.95,2019-06-25 17:37:00,366 Washington St, San Francisco,CA,94016 +220887,Apple Airpods Headphones,1,150.0,2019-06-04 10:23:00,340 North St, Dallas,TX,75001 +220888,Wired Headphones,1,11.99,2019-06-14 13:18:00,817 Meadow St, Portland,OR,97035 +220889,AAA Batteries (4-pack),1,2.99,2019-06-16 14:04:00,466 6th St, Austin,TX,73301 +220890,AAA Batteries (4-pack),4,2.99,2019-06-20 20:40:00,519 13th St, Boston,MA,02215 +220891,Lightning Charging Cable,1,14.95,2019-06-22 02:31:00,756 North St, Boston,MA,02215 +220892,Google Phone,1,600.0,2019-06-29 13:03:00,989 11th St, San Francisco,CA,94016 +220893,Wired Headphones,1,11.99,2019-06-26 16:34:00,370 Church St, Austin,TX,73301 +220894,Google Phone,1,600.0,2019-06-21 05:40:00,892 Dogwood St, Boston,MA,02215 +220894,Wired Headphones,1,11.99,2019-06-21 05:40:00,892 Dogwood St, Boston,MA,02215 +220895,AAA Batteries (4-pack),2,2.99,2019-06-10 20:30:00,380 Church St, San Francisco,CA,94016 +220896,34in Ultrawide Monitor,1,379.99,2019-06-27 14:49:00,647 Main St, Dallas,TX,75001 +220897,34in Ultrawide Monitor,1,379.99,2019-06-06 21:48:00,453 Elm St, Austin,TX,73301 +220898,Google Phone,1,600.0,2019-06-13 06:29:00,945 Dogwood St, Los Angeles,CA,90001 +220899,Lightning Charging Cable,1,14.95,2019-06-30 12:17:00,294 8th St, Atlanta,GA,30301 +220900,iPhone,1,700.0,2019-06-14 21:31:00,2 River St, San Francisco,CA,94016 +220901,Bose SoundSport Headphones,1,99.99,2019-06-16 15:09:00,871 Jefferson St, Atlanta,GA,30301 +220902,AA Batteries (4-pack),2,3.84,2019-06-12 12:06:00,679 South St, New York City,NY,10001 +220903,Bose SoundSport Headphones,1,99.99,2019-06-09 07:55:00,271 Pine St, Dallas,TX,75001 +220904,Apple Airpods Headphones,1,150.0,2019-06-07 22:55:00,578 Walnut St, Portland,OR,97035 +220905,Macbook Pro Laptop,1,1700.0,2019-06-23 13:04:00,486 Chestnut St, Los Angeles,CA,90001 +220906,20in Monitor,1,109.99,2019-06-14 18:48:00,392 South St, Dallas,TX,75001 +220907,Flatscreen TV,1,300.0,2019-06-15 21:41:00,342 6th St, Boston,MA,02215 +220908,iPhone,1,700.0,2019-06-15 21:11:00,757 Main St, New York City,NY,10001 +220909,AA Batteries (4-pack),1,3.84,2019-06-25 23:25:00,315 Adams St, Portland,OR,97035 +220910,Apple Airpods Headphones,1,150.0,2019-06-19 23:33:00,935 9th St, Seattle,WA,98101 +220911,iPhone,1,700.0,2019-06-17 18:00:00,166 Walnut St, Boston,MA,02215 +220912,Flatscreen TV,1,300.0,2019-06-06 21:41:00,772 Maple St, Los Angeles,CA,90001 +220913,27in FHD Monitor,1,149.99,2019-06-04 20:09:00,890 Main St, Austin,TX,73301 +220913,Bose SoundSport Headphones,1,99.99,2019-06-04 20:09:00,890 Main St, Austin,TX,73301 +220914,Apple Airpods Headphones,1,150.0,2019-06-30 08:37:00,661 Lake St, Los Angeles,CA,90001 +220915,AAA Batteries (4-pack),2,2.99,2019-06-14 19:17:00,733 West St, Seattle,WA,98101 +220916,Lightning Charging Cable,1,14.95,2019-06-07 17:46:00,526 9th St, San Francisco,CA,94016 +220917,ThinkPad Laptop,1,999.99,2019-06-01 11:19:00,551 Willow St, Portland,ME,04101 +220918,34in Ultrawide Monitor,1,379.99,2019-06-05 06:52:00,706 Madison St, San Francisco,CA,94016 +220919,Lightning Charging Cable,1,14.95,2019-06-20 22:43:00,55 Wilson St, Boston,MA,02215 +220920,AA Batteries (4-pack),1,3.84,2019-06-18 21:13:00,69 Adams St, Austin,TX,73301 +220921,AAA Batteries (4-pack),2,2.99,2019-06-03 09:47:00,362 Pine St, San Francisco,CA,94016 +220922,Apple Airpods Headphones,1,150.0,2019-06-05 11:49:00,544 Ridge St, Portland,OR,97035 +220923,34in Ultrawide Monitor,1,379.99,2019-06-20 00:27:00,761 Pine St, Seattle,WA,98101 +220924,Google Phone,1,600.0,2019-06-09 22:26:00,77 River St, Atlanta,GA,30301 +220924,USB-C Charging Cable,1,11.95,2019-06-09 22:26:00,77 River St, Atlanta,GA,30301 +220925,27in 4K Gaming Monitor,1,389.99,2019-06-18 00:25:00,46 Forest St, San Francisco,CA,94016 +220926,Wired Headphones,1,11.99,2019-06-17 21:32:00,201 Forest St, San Francisco,CA,94016 +220927,AA Batteries (4-pack),4,3.84,2019-06-15 18:36:00,274 West St, Los Angeles,CA,90001 +220928,Wired Headphones,1,11.99,2019-06-09 13:00:00,519 7th St, Dallas,TX,75001 +220929,USB-C Charging Cable,1,11.95,2019-06-26 10:13:00,169 13th St, San Francisco,CA,94016 +220929,AA Batteries (4-pack),2,3.84,2019-06-26 10:13:00,169 13th St, San Francisco,CA,94016 +220930,34in Ultrawide Monitor,1,379.99,2019-06-26 08:30:00,700 Meadow St, San Francisco,CA,94016 +220931,AAA Batteries (4-pack),1,2.99,2019-06-16 20:23:00,220 Highland St, New York City,NY,10001 +220932,AA Batteries (4-pack),1,3.84,2019-06-14 23:02:00,986 Hill St, New York City,NY,10001 +220933,Flatscreen TV,1,300.0,2019-06-19 12:22:00,835 Lakeview St, Atlanta,GA,30301 +220934,Apple Airpods Headphones,1,150.0,2019-06-03 21:34:00,923 West St, New York City,NY,10001 +220935,Apple Airpods Headphones,1,150.0,2019-06-13 20:21:00,805 6th St, Austin,TX,73301 +220936,AAA Batteries (4-pack),1,2.99,2019-06-13 12:47:00,513 Jefferson St, Austin,TX,73301 +220937,Vareebadd Phone,1,400.0,2019-06-05 14:41:00,767 14th St, Seattle,WA,98101 +220937,USB-C Charging Cable,1,11.95,2019-06-05 14:41:00,767 14th St, Seattle,WA,98101 +220938,27in FHD Monitor,1,149.99,2019-06-18 20:57:00,141 Madison St, New York City,NY,10001 +220939,AA Batteries (4-pack),1,3.84,2019-06-16 20:56:00,975 7th St, Boston,MA,02215 +220940,AA Batteries (4-pack),2,3.84,2019-06-06 12:26:00,372 Highland St, Los Angeles,CA,90001 +220941,iPhone,1,700.0,2019-06-15 14:18:00,219 Meadow St, Atlanta,GA,30301 +220942,Wired Headphones,1,11.99,2019-06-29 11:28:00,182 River St, New York City,NY,10001 +220943,Apple Airpods Headphones,1,150.0,2019-06-01 08:08:00,414 12th St, Los Angeles,CA,90001 +220944,Google Phone,1,600.0,2019-06-24 20:33:00,15 Lakeview St, Boston,MA,02215 +220945,Wired Headphones,1,11.99,2019-06-28 13:35:00,228 Meadow St, Portland,OR,97035 +220946,Apple Airpods Headphones,1,150.0,2019-06-19 15:57:00,960 7th St, Dallas,TX,75001 +220947,27in FHD Monitor,1,149.99,2019-06-27 18:07:00,655 Cedar St, San Francisco,CA,94016 +220948,AAA Batteries (4-pack),1,2.99,2019-06-30 20:39:00,399 10th St, San Francisco,CA,94016 +220949,Lightning Charging Cable,1,14.95,2019-06-01 17:46:00,488 Center St, Los Angeles,CA,90001 +220950,AAA Batteries (4-pack),1,2.99,2019-06-01 15:37:00,664 8th St, Seattle,WA,98101 +220951,Wired Headphones,2,11.99,2019-06-16 19:27:00,188 River St, Atlanta,GA,30301 +220952,Bose SoundSport Headphones,1,99.99,2019-06-28 20:48:00,232 1st St, Seattle,WA,98101 +220953,Bose SoundSport Headphones,1,99.99,2019-06-24 06:50:00,516 Lake St, Portland,OR,97035 +220954,Wired Headphones,1,11.99,2019-06-19 09:23:00,176 North St, San Francisco,CA,94016 +220955,Lightning Charging Cable,1,14.95,2019-06-24 11:13:00,244 Lincoln St, Boston,MA,02215 +220956,AAA Batteries (4-pack),1,2.99,2019-06-15 16:47:00,869 8th St, Los Angeles,CA,90001 +220957,AAA Batteries (4-pack),2,2.99,2019-06-10 13:52:00,752 Highland St, New York City,NY,10001 +220958,Apple Airpods Headphones,1,150.0,2019-06-24 07:56:00,792 Spruce St, San Francisco,CA,94016 +220959,Wired Headphones,1,11.99,2019-06-16 07:29:00,112 Main St, San Francisco,CA,94016 +220960,Lightning Charging Cable,1,14.95,2019-06-06 14:07:00,64 Forest St, Atlanta,GA,30301 +220961,Macbook Pro Laptop,1,1700.0,2019-06-20 09:46:00,673 Main St, Los Angeles,CA,90001 +220962,iPhone,1,700.0,2019-06-12 20:27:00,852 8th St, San Francisco,CA,94016 +220963,AA Batteries (4-pack),1,3.84,2019-06-28 17:11:00,628 Lakeview St, Los Angeles,CA,90001 +220964,AAA Batteries (4-pack),1,2.99,2019-06-30 15:54:00,837 Lakeview St, New York City,NY,10001 +220965,27in 4K Gaming Monitor,1,389.99,2019-06-16 19:54:00,560 8th St, Los Angeles,CA,90001 +220966,27in 4K Gaming Monitor,1,389.99,2019-06-09 12:49:00,937 13th St, Portland,OR,97035 +220967,Apple Airpods Headphones,1,150.0,2019-06-19 19:44:00,638 Center St, Seattle,WA,98101 +220968,Lightning Charging Cable,1,14.95,2019-06-28 18:45:00,697 5th St, New York City,NY,10001 +220968,Bose SoundSport Headphones,1,99.99,2019-06-28 18:45:00,697 5th St, New York City,NY,10001 +220969,Apple Airpods Headphones,1,150.0,2019-06-30 18:41:00,992 Madison St, Los Angeles,CA,90001 +220970,ThinkPad Laptop,1,999.99,2019-06-25 23:57:00,857 West St, Atlanta,GA,30301 +220971,Wired Headphones,1,11.99,2019-06-06 15:13:00,323 Cherry St, Boston,MA,02215 +220972,20in Monitor,1,109.99,2019-06-17 09:38:00,925 Willow St, Dallas,TX,75001 +220973,Bose SoundSport Headphones,1,99.99,2019-06-14 13:43:00,614 Hill St, Portland,OR,97035 +220974,AAA Batteries (4-pack),4,2.99,2019-06-09 07:07:00,305 12th St, San Francisco,CA,94016 +220975,Lightning Charging Cable,1,14.95,2019-06-15 14:17:00,86 Willow St, Atlanta,GA,30301 +220976,27in 4K Gaming Monitor,1,389.99,2019-06-18 11:04:00,456 Cedar St, Los Angeles,CA,90001 +220977,Flatscreen TV,1,300.0,2019-06-12 19:47:00,254 South St, Dallas,TX,75001 +220978,Wired Headphones,1,11.99,2019-06-16 20:13:00,665 Forest St, Boston,MA,02215 +220979,AA Batteries (4-pack),2,3.84,2019-06-27 11:03:00,713 Lake St, San Francisco,CA,94016 +220980,27in FHD Monitor,1,149.99,2019-06-14 08:55:00,675 Elm St, Boston,MA,02215 +220981,Wired Headphones,1,11.99,2019-06-10 16:39:00,583 Church St, Los Angeles,CA,90001 +220982,LG Dryer,1,600.0,2019-06-07 23:14:00,997 Lincoln St, Los Angeles,CA,90001 +220983,Bose SoundSport Headphones,1,99.99,2019-06-17 23:30:00,790 7th St, Los Angeles,CA,90001 +220984,AA Batteries (4-pack),1,3.84,2019-06-17 18:30:00,687 Ridge St, Atlanta,GA,30301 +220985,Apple Airpods Headphones,1,150.0,2019-06-20 17:14:00,760 Adams St, Los Angeles,CA,90001 +220986,AAA Batteries (4-pack),1,2.99,2019-06-10 14:49:00,454 Wilson St, Boston,MA,02215 +220987,Macbook Pro Laptop,1,1700.0,2019-06-02 19:27:00,611 2nd St, San Francisco,CA,94016 +220988,AA Batteries (4-pack),1,3.84,2019-06-06 19:46:00,342 Willow St, New York City,NY,10001 +220989,27in 4K Gaming Monitor,1,389.99,2019-06-18 18:17:00,746 Cedar St, Los Angeles,CA,90001 +220990,USB-C Charging Cable,1,11.95,2019-06-11 11:29:00,908 4th St, Dallas,TX,75001 +220991,Lightning Charging Cable,1,14.95,2019-06-30 19:50:00,329 Walnut St, Seattle,WA,98101 +220992,34in Ultrawide Monitor,1,379.99,2019-06-25 15:54:00,701 10th St, Dallas,TX,75001 +220993,Lightning Charging Cable,1,14.95,2019-06-20 10:01:00,743 Maple St, Boston,MA,02215 +220994,AA Batteries (4-pack),1,3.84,2019-06-21 16:44:00,477 Ridge St, San Francisco,CA,94016 +220995,AA Batteries (4-pack),1,3.84,2019-06-05 08:19:00,237 Jackson St, San Francisco,CA,94016 +220996,AA Batteries (4-pack),1,3.84,2019-06-29 12:01:00,104 7th St, Los Angeles,CA,90001 +220997,iPhone,1,700.0,2019-06-21 16:35:00,577 Church St, Dallas,TX,75001 +220997,Lightning Charging Cable,1,14.95,2019-06-21 16:35:00,577 Church St, Dallas,TX,75001 +220998,Flatscreen TV,2,300.0,2019-06-03 14:06:00,953 1st St, Boston,MA,02215 +220999,Bose SoundSport Headphones,1,99.99,2019-06-14 14:17:00,517 Spruce St, San Francisco,CA,94016 +221000,Bose SoundSport Headphones,2,99.99,2019-06-20 13:24:00,703 Walnut St, Boston,MA,02215 +221001,Flatscreen TV,1,300.0,2019-06-12 14:05:00,967 11th St, Boston,MA,02215 +221002,AA Batteries (4-pack),2,3.84,2019-06-17 15:31:00,191 Elm St, Atlanta,GA,30301 +221003,iPhone,1,700.0,2019-06-23 12:37:00,981 Chestnut St, San Francisco,CA,94016 +221004,USB-C Charging Cable,1,11.95,2019-06-12 19:34:00,788 Lakeview St, Portland,OR,97035 +221005,34in Ultrawide Monitor,1,379.99,2019-06-08 13:00:00,366 7th St, Portland,ME,04101 +221006,AA Batteries (4-pack),1,3.84,2019-06-16 18:57:00,757 13th St, San Francisco,CA,94016 +221007,USB-C Charging Cable,1,11.95,2019-06-03 17:09:00,889 6th St, Los Angeles,CA,90001 +221008,34in Ultrawide Monitor,1,379.99,2019-06-01 22:12:00,619 Hickory St, Los Angeles,CA,90001 +221009,Macbook Pro Laptop,1,1700.0,2019-06-13 21:19:00,12 4th St, Seattle,WA,98101 +221010,Lightning Charging Cable,1,14.95,2019-06-20 16:20:00,280 Walnut St, Los Angeles,CA,90001 +221011,AA Batteries (4-pack),2,3.84,2019-06-22 17:50:00,398 Hickory St, San Francisco,CA,94016 +221012,AAA Batteries (4-pack),1,2.99,2019-06-28 20:08:00,969 Center St, Los Angeles,CA,90001 +221013,USB-C Charging Cable,1,11.95,2019-06-14 15:03:00,439 Sunset St, San Francisco,CA,94016 +221014,27in FHD Monitor,1,149.99,2019-06-17 10:33:00,920 2nd St, Atlanta,GA,30301 +221015,iPhone,1,700.0,2019-06-10 10:01:00,722 Cedar St, New York City,NY,10001 +221016,34in Ultrawide Monitor,1,379.99,2019-06-25 10:22:00,948 Highland St, San Francisco,CA,94016 +221017,Macbook Pro Laptop,1,1700.0,2019-06-20 16:21:00,195 Walnut St, Los Angeles,CA,90001 +221018,Wired Headphones,1,11.99,2019-06-23 01:28:00,20 Lincoln St, Atlanta,GA,30301 +221019,Macbook Pro Laptop,1,1700.0,2019-06-02 12:00:00,867 Elm St, Los Angeles,CA,90001 +221020,Flatscreen TV,1,300.0,2019-06-22 11:35:00,61 Hill St, Los Angeles,CA,90001 +221021,LG Washing Machine,1,600.0,2019-06-16 18:11:00,630 9th St, Los Angeles,CA,90001 +221022,Google Phone,1,600.0,2019-06-04 01:33:00,500 13th St, New York City,NY,10001 +221022,USB-C Charging Cable,1,11.95,2019-06-04 01:33:00,500 13th St, New York City,NY,10001 +221023,Wired Headphones,1,11.99,2019-06-11 20:24:00,60 Pine St, San Francisco,CA,94016 +221024,Bose SoundSport Headphones,1,99.99,2019-06-30 17:08:00,287 Dogwood St, Austin,TX,73301 +221025,Apple Airpods Headphones,1,150.0,2019-06-19 21:20:00,125 North St, Dallas,TX,75001 +221026,Bose SoundSport Headphones,1,99.99,2019-06-29 09:41:00,846 Pine St, Seattle,WA,98101 +221027,Apple Airpods Headphones,1,150.0,2019-06-22 18:40:00,628 8th St, San Francisco,CA,94016 +221028,Bose SoundSport Headphones,1,99.99,2019-06-01 19:27:00,179 West St, Los Angeles,CA,90001 +221029,27in FHD Monitor,1,149.99,2019-06-06 17:25:00,641 Lincoln St, Atlanta,GA,30301 +221030,AA Batteries (4-pack),1,3.84,2019-06-05 07:45:00,189 Johnson St, Dallas,TX,75001 +221031,AAA Batteries (4-pack),1,2.99,2019-06-11 07:55:00,972 Pine St, San Francisco,CA,94016 +221032,Lightning Charging Cable,1,14.95,2019-06-07 18:28:00,916 1st St, Los Angeles,CA,90001 +221033,Flatscreen TV,1,300.0,2019-06-20 13:35:00,337 10th St, San Francisco,CA,94016 +221034,Lightning Charging Cable,1,14.95,2019-06-13 21:22:00,193 Adams St, New York City,NY,10001 +221035,Google Phone,1,600.0,2019-06-28 22:24:00,160 South St, San Francisco,CA,94016 +221035,USB-C Charging Cable,1,11.95,2019-06-28 22:24:00,160 South St, San Francisco,CA,94016 +221035,Wired Headphones,1,11.99,2019-06-28 22:24:00,160 South St, San Francisco,CA,94016 +221036,Bose SoundSport Headphones,1,99.99,2019-06-25 19:48:00,30 Pine St, Austin,TX,73301 +221037,Macbook Pro Laptop,1,1700.0,2019-06-08 19:21:00,196 Hill St, Los Angeles,CA,90001 +221038,Bose SoundSport Headphones,1,99.99,2019-06-14 20:39:00,944 Meadow St, Atlanta,GA,30301 +221039,USB-C Charging Cable,1,11.95,2019-06-24 23:58:00,592 14th St, Austin,TX,73301 +221040,Lightning Charging Cable,1,14.95,2019-06-04 08:10:00,584 Hickory St, San Francisco,CA,94016 +221041,AA Batteries (4-pack),1,3.84,2019-06-08 14:45:00,27 13th St, Boston,MA,02215 +221042,ThinkPad Laptop,1,999.99,2019-06-21 18:18:00,787 1st St, Los Angeles,CA,90001 +221043,Lightning Charging Cable,1,14.95,2019-06-06 16:26:00,732 8th St, Seattle,WA,98101 +221044,Wired Headphones,1,11.99,2019-06-27 19:13:00,37 Hill St, Boston,MA,02215 +221045,27in FHD Monitor,1,149.99,2019-06-24 15:24:00,674 2nd St, Boston,MA,02215 +221046,Lightning Charging Cable,1,14.95,2019-06-25 21:52:00,864 Lincoln St, Atlanta,GA,30301 +221047,Lightning Charging Cable,1,14.95,2019-06-17 07:51:00,164 Meadow St, New York City,NY,10001 +221048,AAA Batteries (4-pack),1,2.99,2019-06-08 15:52:00,490 Chestnut St, New York City,NY,10001 +221049,Bose SoundSport Headphones,1,99.99,2019-06-27 12:46:00,757 4th St, Portland,ME,04101 +221050,USB-C Charging Cable,1,11.95,2019-06-20 14:02:00,985 5th St, Los Angeles,CA,90001 +221051,Lightning Charging Cable,1,14.95,2019-06-16 15:28:00,579 West St, New York City,NY,10001 +221052,iPhone,1,700.0,2019-06-11 12:13:00,600 Jackson St, San Francisco,CA,94016 +221053,AA Batteries (4-pack),1,3.84,2019-06-29 09:50:00,335 1st St, Los Angeles,CA,90001 +221054,Macbook Pro Laptop,1,1700.0,2019-06-20 19:21:00,558 Meadow St, Atlanta,GA,30301 +221055,Lightning Charging Cable,1,14.95,2019-06-23 19:45:00,878 11th St, Dallas,TX,75001 +221056,AA Batteries (4-pack),1,3.84,2019-06-03 10:49:00,429 Meadow St, New York City,NY,10001 +221057,Lightning Charging Cable,1,14.95,2019-06-03 12:33:00,258 Spruce St, San Francisco,CA,94016 +221058,USB-C Charging Cable,2,11.95,2019-06-11 18:42:00,953 Madison St, Seattle,WA,98101 +221059,Macbook Pro Laptop,1,1700.0,2019-06-06 18:40:00,724 8th St, Los Angeles,CA,90001 +221060,AA Batteries (4-pack),1,3.84,2019-06-08 22:37:00,262 14th St, Seattle,WA,98101 +221061,34in Ultrawide Monitor,1,379.99,2019-06-24 17:20:00,559 2nd St, Atlanta,GA,30301 +221062,AAA Batteries (4-pack),1,2.99,2019-06-03 16:54:00,345 Sunset St, Austin,TX,73301 +221063,AA Batteries (4-pack),1,3.84,2019-06-30 15:08:00,35 Wilson St, Boston,MA,02215 +221064,Apple Airpods Headphones,1,150.0,2019-06-17 18:19:00,3 Ridge St, Atlanta,GA,30301 +221065,Bose SoundSport Headphones,1,99.99,2019-06-24 22:17:00,649 Ridge St, Portland,ME,04101 +221066,34in Ultrawide Monitor,1,379.99,2019-06-24 14:48:00,160 Maple St, Boston,MA,02215 +221067,Apple Airpods Headphones,1,150.0,2019-06-17 20:19:00,234 South St, Boston,MA,02215 +221068,Apple Airpods Headphones,1,150.0,2019-06-09 21:47:00,948 Elm St, San Francisco,CA,94016 +221069,Wired Headphones,1,11.99,2019-06-05 13:30:00,769 Ridge St, Dallas,TX,75001 +221070,Bose SoundSport Headphones,1,99.99,2019-06-14 22:27:00,837 2nd St, Boston,MA,02215 +221071,Bose SoundSport Headphones,1,99.99,2019-06-13 10:24:00,963 River St, New York City,NY,10001 +221072,Lightning Charging Cable,2,14.95,2019-06-01 19:21:00,388 North St, Dallas,TX,75001 +221073,USB-C Charging Cable,1,11.95,2019-06-06 13:42:00,915 Highland St, San Francisco,CA,94016 +221074,Vareebadd Phone,1,400.0,2019-06-23 07:47:00,924 Jefferson St, San Francisco,CA,94016 +221075,ThinkPad Laptop,1,999.99,2019-06-25 21:22:00,366 Highland St, San Francisco,CA,94016 +221076,Wired Headphones,1,11.99,2019-06-01 11:08:00,964 Jackson St, Dallas,TX,75001 +221077,Apple Airpods Headphones,1,150.0,2019-06-12 08:57:00,519 7th St, Atlanta,GA,30301 +221078,Flatscreen TV,1,300.0,2019-06-21 21:41:00,952 Church St, Austin,TX,73301 +221079,Google Phone,1,600.0,2019-06-25 14:30:00,113 2nd St, Boston,MA,02215 +221079,USB-C Charging Cable,1,11.95,2019-06-25 14:30:00,113 2nd St, Boston,MA,02215 +221080,Macbook Pro Laptop,1,1700.0,2019-06-18 19:37:00,492 Cherry St, San Francisco,CA,94016 +221081,Apple Airpods Headphones,1,150.0,2019-06-08 23:19:00,909 West St, Los Angeles,CA,90001 +221082,USB-C Charging Cable,1,11.95,2019-06-06 23:50:00,922 Wilson St, Los Angeles,CA,90001 +221083,Apple Airpods Headphones,1,150.0,2019-06-01 16:09:00,14 Hill St, New York City,NY,10001 +221084,Bose SoundSport Headphones,1,99.99,2019-06-22 17:15:00,986 Sunset St, San Francisco,CA,94016 +221085,27in 4K Gaming Monitor,1,389.99,2019-06-02 15:58:00,601 Jefferson St, Dallas,TX,75001 +221086,AAA Batteries (4-pack),3,2.99,2019-06-23 15:07:00,737 10th St, Austin,TX,73301 +221087,Apple Airpods Headphones,1,150.0,2019-06-09 07:52:00,586 Forest St, Boston,MA,02215 +221088,34in Ultrawide Monitor,1,379.99,2019-06-01 11:07:00,776 Main St, San Francisco,CA,94016 +221089,27in FHD Monitor,1,149.99,2019-06-09 13:54:00,556 8th St, Boston,MA,02215 +221090,Lightning Charging Cable,1,14.95,2019-06-06 18:53:00,898 Highland St, Los Angeles,CA,90001 +221090,AA Batteries (4-pack),2,3.84,2019-06-06 18:53:00,898 Highland St, Los Angeles,CA,90001 +221091,AA Batteries (4-pack),1,3.84,2019-06-27 14:01:00,217 Walnut St, New York City,NY,10001 +221092,ThinkPad Laptop,1,999.99,2019-06-23 16:08:00,647 Forest St, San Francisco,CA,94016 +221093,Bose SoundSport Headphones,1,99.99,2019-06-20 17:45:00,346 Cedar St, Atlanta,GA,30301 +221094,20in Monitor,1,109.99,2019-06-11 14:27:00,135 7th St, Austin,TX,73301 +221095,Apple Airpods Headphones,1,150.0,2019-06-09 17:04:00,863 Jackson St, Boston,MA,02215 +221096,AAA Batteries (4-pack),1,2.99,2019-06-15 10:19:00,206 South St, Seattle,WA,98101 +221097,AAA Batteries (4-pack),3,2.99,2019-06-05 17:53:00,23 Pine St, Seattle,WA,98101 +221098,AA Batteries (4-pack),1,3.84,2019-06-06 21:41:00,201 8th St, San Francisco,CA,94016 +221099,Wired Headphones,1,11.99,2019-06-29 21:52:00,822 5th St, New York City,NY,10001 +221100,Wired Headphones,1,11.99,2019-06-08 12:19:00,854 Elm St, Seattle,WA,98101 +221101,USB-C Charging Cable,1,11.95,2019-06-30 20:26:00,39 Dogwood St, Los Angeles,CA,90001 +221101,27in 4K Gaming Monitor,1,389.99,2019-06-30 20:26:00,39 Dogwood St, Los Angeles,CA,90001 +221102,AA Batteries (4-pack),1,3.84,2019-06-09 00:25:00,377 9th St, Los Angeles,CA,90001 +221103,Macbook Pro Laptop,1,1700.0,2019-06-22 20:16:00,289 11th St, Los Angeles,CA,90001 +221104,Wired Headphones,1,11.99,2019-06-11 21:41:00,341 Center St, San Francisco,CA,94016 +221105,ThinkPad Laptop,1,999.99,2019-06-05 19:18:00,357 Walnut St, Atlanta,GA,30301 +221106,Macbook Pro Laptop,1,1700.0,2019-06-16 09:38:00,286 River St, Austin,TX,73301 +221107,AA Batteries (4-pack),1,3.84,2019-06-25 11:24:00,359 Church St, Dallas,TX,75001 +221108,Apple Airpods Headphones,1,150.0,2019-06-09 07:29:00,536 Hill St, Seattle,WA,98101 +221109,Bose SoundSport Headphones,1,99.99,2019-06-17 21:26:00,233 2nd St, Boston,MA,02215 +221110,AAA Batteries (4-pack),4,2.99,2019-06-07 19:40:00,319 Walnut St, Dallas,TX,75001 +221111,AA Batteries (4-pack),2,3.84,2019-06-18 07:46:00,45 Maple St, Portland,OR,97035 +221112,Bose SoundSport Headphones,1,99.99,2019-06-28 15:58:00,35 Walnut St, Los Angeles,CA,90001 +221113,Lightning Charging Cable,1,14.95,2019-06-04 18:34:00,503 Church St, Los Angeles,CA,90001 +221114,Bose SoundSport Headphones,1,99.99,2019-06-09 23:15:00,505 Hickory St, San Francisco,CA,94016 +221115,20in Monitor,1,109.99,2019-06-02 16:11:00,557 Hill St, Seattle,WA,98101 +221116,Lightning Charging Cable,1,14.95,2019-06-14 14:10:00,430 8th St, San Francisco,CA,94016 +221117,Lightning Charging Cable,2,14.95,2019-06-20 00:02:00,367 9th St, San Francisco,CA,94016 +221118,Flatscreen TV,1,300.0,2019-06-24 08:33:00,878 River St, New York City,NY,10001 +221119,ThinkPad Laptop,1,999.99,2019-06-07 09:16:00,552 7th St, San Francisco,CA,94016 +221120,Google Phone,1,600.0,2019-06-14 12:10:00,711 Cedar St, Los Angeles,CA,90001 +221121,Lightning Charging Cable,1,14.95,2019-06-08 20:53:00,75 Elm St, Dallas,TX,75001 +221122,20in Monitor,1,109.99,2019-06-20 11:15:00,574 Church St, New York City,NY,10001 +221123,Wired Headphones,1,11.99,2019-06-27 10:26:00,270 West St, San Francisco,CA,94016 +221124,AAA Batteries (4-pack),1,2.99,2019-06-11 15:14:00,7 West St, Los Angeles,CA,90001 +221125,Lightning Charging Cable,1,14.95,2019-06-12 08:04:00,598 North St, Dallas,TX,75001 +221126,Flatscreen TV,1,300.0,2019-06-25 06:17:00,380 Lake St, Boston,MA,02215 +221127,USB-C Charging Cable,1,11.95,2019-06-06 17:59:00,144 Hill St, Atlanta,GA,30301 +221128,USB-C Charging Cable,1,11.95,2019-06-12 09:26:00,780 5th St, Dallas,TX,75001 +221129,27in 4K Gaming Monitor,1,389.99,2019-06-27 09:17:00,217 Washington St, Atlanta,GA,30301 +221130,20in Monitor,1,109.99,2019-06-27 12:52:00,434 Pine St, Portland,ME,04101 +221131,Vareebadd Phone,1,400.0,2019-06-29 13:57:00,538 Elm St, Portland,OR,97035 +221132,Lightning Charging Cable,2,14.95,2019-06-16 10:38:00,940 Dogwood St, Seattle,WA,98101 +221133,iPhone,1,700.0,2019-06-17 15:04:00,647 Jefferson St, New York City,NY,10001 +221134,Lightning Charging Cable,1,14.95,2019-06-10 10:48:00,910 Church St, Atlanta,GA,30301 +221135,Wired Headphones,1,11.99,2019-06-18 17:47:00,739 West St, Seattle,WA,98101 +221136,Lightning Charging Cable,1,14.95,2019-06-30 15:36:00,417 South St, Atlanta,GA,30301 +221137,Flatscreen TV,1,300.0,2019-06-08 08:58:00,195 North St, Boston,MA,02215 +221138,Bose SoundSport Headphones,1,99.99,2019-06-17 10:23:00,586 Hill St, Atlanta,GA,30301 +221139,Wired Headphones,1,11.99,2019-06-16 18:15:00,893 Lincoln St, San Francisco,CA,94016 +221140,Apple Airpods Headphones,1,150.0,2019-06-16 18:40:00,46 Maple St, Atlanta,GA,30301 +221141,AAA Batteries (4-pack),4,2.99,2019-06-02 18:49:00,776 Main St, San Francisco,CA,94016 +221142,Apple Airpods Headphones,1,150.0,2019-06-13 16:02:00,664 Main St, San Francisco,CA,94016 +221143,USB-C Charging Cable,1,11.95,2019-06-02 19:00:00,173 1st St, Boston,MA,02215 +221144,AAA Batteries (4-pack),3,2.99,2019-06-18 17:01:00,240 South St, Atlanta,GA,30301 +221145,Bose SoundSport Headphones,1,99.99,2019-06-19 10:38:00,715 Highland St, Los Angeles,CA,90001 +221146,20in Monitor,1,109.99,2019-06-17 04:42:00,581 North St, Boston,MA,02215 +221147,Lightning Charging Cable,1,14.95,2019-06-12 01:08:00,360 Forest St, Los Angeles,CA,90001 +221148,Google Phone,1,600.0,2019-06-12 11:44:00,543 Dogwood St, San Francisco,CA,94016 +221149,Apple Airpods Headphones,1,150.0,2019-06-17 15:33:00,416 Center St, Dallas,TX,75001 +221150,ThinkPad Laptop,1,999.99,2019-06-25 12:26:00,489 Jackson St, Boston,MA,02215 +221151,Bose SoundSport Headphones,1,99.99,2019-06-15 11:09:00,538 11th St, Los Angeles,CA,90001 +221152,AA Batteries (4-pack),2,3.84,2019-06-09 15:53:00,625 Center St, San Francisco,CA,94016 +221153,Lightning Charging Cable,1,14.95,2019-06-09 16:31:00,428 Cherry St, New York City,NY,10001 +221154,Google Phone,1,600.0,2019-06-15 09:48:00,546 8th St, San Francisco,CA,94016 +221155,AA Batteries (4-pack),1,3.84,2019-06-19 23:31:00,27 Church St, Boston,MA,02215 +221156,Wired Headphones,1,11.99,2019-06-12 08:18:00,197 Elm St, Dallas,TX,75001 +221157,Bose SoundSport Headphones,1,99.99,2019-06-20 21:38:00,300 4th St, Portland,OR,97035 +221158,Wired Headphones,1,11.99,2019-06-08 17:13:00,672 Jackson St, Boston,MA,02215 +221159,iPhone,1,700.0,2019-06-25 21:09:00,63 Sunset St, San Francisco,CA,94016 +221160,Bose SoundSport Headphones,1,99.99,2019-06-13 15:46:00,546 Sunset St, New York City,NY,10001 +221161,Lightning Charging Cable,1,14.95,2019-06-07 21:01:00,576 Cedar St, Atlanta,GA,30301 +221162,34in Ultrawide Monitor,1,379.99,2019-06-19 21:45:00,181 Main St, Atlanta,GA,30301 +221163,Google Phone,1,600.0,2019-06-26 11:36:00,863 Adams St, Atlanta,GA,30301 +221164,LG Washing Machine,1,600.0,2019-06-24 04:45:00,550 Ridge St, Los Angeles,CA,90001 +221165,Google Phone,1,600.0,2019-06-20 20:13:00,769 6th St, New York City,NY,10001 +221166,AAA Batteries (4-pack),1,2.99,2019-06-29 08:02:00,201 14th St, Portland,OR,97035 +221167,Bose SoundSport Headphones,1,99.99,2019-06-08 15:38:00,611 Spruce St, San Francisco,CA,94016 +221168,iPhone,1,700.0,2019-06-03 00:28:00,865 7th St, Los Angeles,CA,90001 +221169,27in 4K Gaming Monitor,1,389.99,2019-06-11 18:55:00,134 Washington St, Dallas,TX,75001 +221170,AA Batteries (4-pack),1,3.84,2019-06-30 10:00:00,806 14th St, San Francisco,CA,94016 +221171,Lightning Charging Cable,1,14.95,2019-06-16 11:07:00,985 Maple St, Atlanta,GA,30301 +221172,Bose SoundSport Headphones,1,99.99,2019-06-10 17:46:00,531 Washington St, Dallas,TX,75001 +221173,AAA Batteries (4-pack),1,2.99,2019-06-09 12:36:00,407 6th St, Austin,TX,73301 +221174,AA Batteries (4-pack),1,3.84,2019-06-17 22:20:00,256 Maple St, Los Angeles,CA,90001 +221175,AAA Batteries (4-pack),1,2.99,2019-06-13 21:28:00,795 12th St, San Francisco,CA,94016 +221176,Google Phone,1,600.0,2019-06-11 06:34:00,538 Lakeview St, Los Angeles,CA,90001 +221177,USB-C Charging Cable,1,11.95,2019-06-19 20:03:00,64 Center St, Los Angeles,CA,90001 +221178,AAA Batteries (4-pack),2,2.99,2019-06-09 20:09:00,833 9th St, Los Angeles,CA,90001 +221179,AA Batteries (4-pack),1,3.84,2019-06-27 11:58:00,492 Jackson St, San Francisco,CA,94016 +221180,Google Phone,1,600.0,2019-06-30 09:33:00,375 Jefferson St, Atlanta,GA,30301 +221180,USB-C Charging Cable,1,11.95,2019-06-30 09:33:00,375 Jefferson St, Atlanta,GA,30301 +221181,ThinkPad Laptop,1,999.99,2019-06-20 16:07:00,191 Sunset St, Atlanta,GA,30301 +221182,Lightning Charging Cable,1,14.95,2019-06-13 12:33:00,416 Chestnut St, San Francisco,CA,94016 +221183,Flatscreen TV,1,300.0,2019-06-21 08:46:00,546 Elm St, Boston,MA,02215 +221184,AAA Batteries (4-pack),1,2.99,2019-06-04 20:51:00,576 Center St, Seattle,WA,98101 +221185,27in FHD Monitor,1,149.99,2019-06-18 14:35:00,57 Park St, Portland,OR,97035 +221186,AA Batteries (4-pack),1,3.84,2019-06-25 10:07:00,592 5th St, Austin,TX,73301 +221187,34in Ultrawide Monitor,1,379.99,2019-06-04 16:22:00,108 4th St, San Francisco,CA,94016 +221188,27in FHD Monitor,1,149.99,2019-06-26 23:26:00,942 9th St, New York City,NY,10001 +221189,Wired Headphones,1,11.99,2019-06-21 09:39:00,317 Ridge St, Seattle,WA,98101 +221190,Lightning Charging Cable,1,14.95,2019-06-21 00:04:00,470 Center St, Dallas,TX,75001 +221191,USB-C Charging Cable,1,11.95,2019-06-21 11:56:00,882 Willow St, San Francisco,CA,94016 +221192,USB-C Charging Cable,1,11.95,2019-06-27 20:09:00,608 11th St, Los Angeles,CA,90001 +221193,iPhone,1,700.0,2019-06-12 12:38:00,576 2nd St, San Francisco,CA,94016 +221194,Lightning Charging Cable,1,14.95,2019-06-18 16:25:00,964 Sunset St, Los Angeles,CA,90001 +221194,USB-C Charging Cable,1,11.95,2019-06-18 16:25:00,964 Sunset St, Los Angeles,CA,90001 +221195,AAA Batteries (4-pack),1,2.99,2019-06-20 12:35:00,472 Forest St, Los Angeles,CA,90001 +221196,Lightning Charging Cable,2,14.95,2019-06-29 11:42:00,153 Main St, San Francisco,CA,94016 +221197,LG Dryer,1,600.0,2019-06-28 12:45:00,475 Hickory St, Boston,MA,02215 +221198,27in 4K Gaming Monitor,1,389.99,2019-06-24 19:57:00,494 14th St, Los Angeles,CA,90001 +221199,AA Batteries (4-pack),1,3.84,2019-06-24 18:49:00,791 Sunset St, Los Angeles,CA,90001 +221200,Macbook Pro Laptop,1,1700.0,2019-06-13 20:06:00,670 Spruce St, Los Angeles,CA,90001 +221201,ThinkPad Laptop,1,999.99,2019-06-06 14:56:00,2 Cedar St, Los Angeles,CA,90001 +221202,AAA Batteries (4-pack),1,2.99,2019-06-12 14:15:00,574 Washington St, New York City,NY,10001 +221203,27in 4K Gaming Monitor,1,389.99,2019-06-26 21:12:00,6 Wilson St, New York City,NY,10001 +221204,Flatscreen TV,1,300.0,2019-06-17 05:47:00,170 13th St, San Francisco,CA,94016 +221205,Bose SoundSport Headphones,1,99.99,2019-06-30 03:07:00,783 Lincoln St, New York City,NY,10001 +221206,AAA Batteries (4-pack),1,2.99,2019-06-16 11:52:00,37 6th St, Seattle,WA,98101 +221207,34in Ultrawide Monitor,1,379.99,2019-06-28 10:51:00,483 West St, Boston,MA,02215 +221208,20in Monitor,1,109.99,2019-06-05 10:23:00,122 South St, Los Angeles,CA,90001 +221209,AAA Batteries (4-pack),2,2.99,2019-06-05 21:40:00,79 Willow St, New York City,NY,10001 +221210,Apple Airpods Headphones,1,150.0,2019-06-04 11:32:00,165 Hill St, San Francisco,CA,94016 +221211,USB-C Charging Cable,1,11.95,2019-06-19 08:47:00,339 2nd St, New York City,NY,10001 +221212,AA Batteries (4-pack),2,3.84,2019-06-29 22:34:00,567 Center St, Dallas,TX,75001 +221213,USB-C Charging Cable,1,11.95,2019-06-20 17:33:00,61 North St, Dallas,TX,75001 +221214,27in FHD Monitor,1,149.99,2019-06-09 09:16:00,731 2nd St, San Francisco,CA,94016 +221215,Apple Airpods Headphones,1,150.0,2019-06-23 02:59:00,6 Lake St, Portland,OR,97035 +221216,Wired Headphones,1,11.99,2019-06-04 09:18:00,235 North St, New York City,NY,10001 +221217,AAA Batteries (4-pack),1,2.99,2019-06-05 08:48:00,536 Forest St, Seattle,WA,98101 +221218,AA Batteries (4-pack),1,3.84,2019-06-17 13:16:00,191 Center St, San Francisco,CA,94016 +221219,Flatscreen TV,1,300.0,2019-06-27 10:59:00,138 11th St, Boston,MA,02215 +221220,USB-C Charging Cable,1,11.95,2019-06-07 12:50:00,623 River St, Atlanta,GA,30301 +221221,AA Batteries (4-pack),1,3.84,2019-06-20 15:42:00,157 Maple St, Boston,MA,02215 +221222,USB-C Charging Cable,1,11.95,2019-06-17 11:28:00,901 River St, Los Angeles,CA,90001 +221223,Google Phone,1,600.0,2019-06-13 15:44:00,756 West St, Los Angeles,CA,90001 +221224,AA Batteries (4-pack),3,3.84,2019-06-10 11:54:00,438 Maple St, New York City,NY,10001 +221225,AAA Batteries (4-pack),1,2.99,2019-06-20 21:45:00,420 Forest St, Seattle,WA,98101 +221226,iPhone,1,700.0,2019-06-07 13:05:00,594 Johnson St, Dallas,TX,75001 +221227,Apple Airpods Headphones,1,150.0,2019-06-13 10:15:00,377 4th St, San Francisco,CA,94016 +221228,AA Batteries (4-pack),2,3.84,2019-06-19 19:48:00,657 Park St, Austin,TX,73301 +221229,iPhone,1,700.0,2019-06-26 20:42:00,687 Lincoln St, New York City,NY,10001 +221229,Lightning Charging Cable,1,14.95,2019-06-26 20:42:00,687 Lincoln St, New York City,NY,10001 +221229,Apple Airpods Headphones,1,150.0,2019-06-26 20:42:00,687 Lincoln St, New York City,NY,10001 +221230,27in 4K Gaming Monitor,1,389.99,2019-06-06 17:29:00,534 5th St, New York City,NY,10001 +221231,AA Batteries (4-pack),1,3.84,2019-06-28 17:31:00,2 10th St, New York City,NY,10001 +221232,Lightning Charging Cable,2,14.95,2019-06-02 18:52:00,344 Pine St, New York City,NY,10001 +221233,iPhone,1,700.0,2019-06-10 17:13:00,784 Main St, San Francisco,CA,94016 +221234,Apple Airpods Headphones,1,150.0,2019-06-02 12:56:00,128 Ridge St, Los Angeles,CA,90001 +221235,27in FHD Monitor,1,149.99,2019-06-01 21:35:00,842 Lincoln St, Portland,OR,97035 +221236,Google Phone,1,600.0,2019-06-17 22:57:00,261 Ridge St, New York City,NY,10001 +221237,USB-C Charging Cable,1,11.95,2019-06-04 13:09:00,356 12th St, Boston,MA,02215 +221238,ThinkPad Laptop,1,999.99,2019-06-25 10:51:00,135 Wilson St, New York City,NY,10001 +221239,AAA Batteries (4-pack),3,2.99,2019-06-16 11:52:00,851 Cherry St, Portland,OR,97035 +221240,Bose SoundSport Headphones,1,99.99,2019-06-26 16:25:00,905 Hill St, Boston,MA,02215 +221241,Google Phone,1,600.0,2019-06-21 04:57:00,685 South St, Los Angeles,CA,90001 +221241,Wired Headphones,1,11.99,2019-06-21 04:57:00,685 South St, Los Angeles,CA,90001 +221242,AAA Batteries (4-pack),1,2.99,2019-06-26 18:11:00,60 14th St, Austin,TX,73301 +221243,27in 4K Gaming Monitor,1,389.99,2019-06-29 09:47:00,929 South St, Atlanta,GA,30301 +221244,AA Batteries (4-pack),2,3.84,2019-06-20 20:22:00,545 6th St, Austin,TX,73301 +221245,Flatscreen TV,1,300.0,2019-06-04 11:27:00,899 Elm St, Atlanta,GA,30301 +221246,Bose SoundSport Headphones,1,99.99,2019-06-13 20:24:00,755 Pine St, New York City,NY,10001 +221247,AAA Batteries (4-pack),2,2.99,2019-06-18 14:02:00,406 Lincoln St, Austin,TX,73301 +221248,Wired Headphones,1,11.99,2019-06-20 11:55:00,33 Church St, Los Angeles,CA,90001 +221249,AAA Batteries (4-pack),1,2.99,2019-06-17 22:33:00,168 Johnson St, Los Angeles,CA,90001 +221250,Bose SoundSport Headphones,1,99.99,2019-06-20 15:00:00,252 1st St, San Francisco,CA,94016 +221251,LG Dryer,1,600.0,2019-06-28 14:21:00,918 14th St, Dallas,TX,75001 +221252,iPhone,1,700.0,2019-06-03 19:46:00,990 4th St, Seattle,WA,98101 +221253,USB-C Charging Cable,1,11.95,2019-06-07 14:01:00,534 Hickory St, Los Angeles,CA,90001 +221254,AAA Batteries (4-pack),1,2.99,2019-06-25 22:43:00,729 Elm St, New York City,NY,10001 +221255,ThinkPad Laptop,1,999.99,2019-06-30 23:06:00,722 Church St, Atlanta,GA,30301 +221256,Flatscreen TV,1,300.0,2019-06-11 13:41:00,345 12th St, Los Angeles,CA,90001 +221257,AA Batteries (4-pack),3,3.84,2019-06-27 00:28:00,472 West St, San Francisco,CA,94016 +221258,ThinkPad Laptop,1,999.99,2019-06-02 15:17:00,189 13th St, Los Angeles,CA,90001 +221259,AA Batteries (4-pack),3,3.84,2019-06-21 19:48:00,801 10th St, Seattle,WA,98101 +221260,Wired Headphones,1,11.99,2019-06-13 07:19:00,340 7th St, Seattle,WA,98101 +221261,Wired Headphones,1,11.99,2019-06-01 19:28:00,652 Cedar St, Los Angeles,CA,90001 +221262,iPhone,1,700.0,2019-06-17 12:36:00,53 4th St, San Francisco,CA,94016 +221262,Apple Airpods Headphones,1,150.0,2019-06-17 12:36:00,53 4th St, San Francisco,CA,94016 +221262,Wired Headphones,1,11.99,2019-06-17 12:36:00,53 4th St, San Francisco,CA,94016 +221263,Google Phone,1,600.0,2019-06-19 17:25:00,967 9th St, Portland,OR,97035 +221264,AAA Batteries (4-pack),1,2.99,2019-06-06 20:25:00,199 Church St, Seattle,WA,98101 +221265,Bose SoundSport Headphones,1,99.99,2019-06-17 20:51:00,679 Adams St, Boston,MA,02215 +221266,AA Batteries (4-pack),1,3.84,2019-06-14 09:52:00,321 5th St, San Francisco,CA,94016 +221267,Wired Headphones,1,11.99,2019-06-21 19:30:00,375 North St, Los Angeles,CA,90001 +221268,Apple Airpods Headphones,1,150.0,2019-06-06 23:10:00,720 Willow St, New York City,NY,10001 +221269,AA Batteries (4-pack),2,3.84,2019-06-21 22:29:00,320 River St, New York City,NY,10001 +221269,Lightning Charging Cable,1,14.95,2019-06-21 22:29:00,320 River St, New York City,NY,10001 +221270,Apple Airpods Headphones,1,150.0,2019-06-11 18:59:00,445 Highland St, New York City,NY,10001 +221271,AAA Batteries (4-pack),1,2.99,2019-06-17 19:13:00,334 Lakeview St, Boston,MA,02215 +221272,AA Batteries (4-pack),1,3.84,2019-06-20 13:09:00,377 Hill St, Los Angeles,CA,90001 +221273,AAA Batteries (4-pack),3,2.99,2019-06-06 11:10:00,309 Chestnut St, Dallas,TX,75001 +221274,USB-C Charging Cable,1,11.95,2019-06-20 00:38:00,990 Park St, San Francisco,CA,94016 +221275,Lightning Charging Cable,1,14.95,2019-06-17 06:46:00,309 Willow St, San Francisco,CA,94016 +221276,Wired Headphones,1,11.99,2019-06-05 13:54:00,607 West St, San Francisco,CA,94016 +221277,Google Phone,1,600.0,2019-06-06 09:40:00,570 Jefferson St, Seattle,WA,98101 +221278,USB-C Charging Cable,2,11.95,2019-06-27 14:08:00,966 Cedar St, San Francisco,CA,94016 +221279,27in FHD Monitor,1,149.99,2019-06-14 14:02:00,302 Park St, Seattle,WA,98101 +221280,AA Batteries (4-pack),2,3.84,2019-06-29 21:51:00,623 Cherry St, San Francisco,CA,94016 +221281,AAA Batteries (4-pack),2,2.99,2019-06-24 23:58:00,594 4th St, Los Angeles,CA,90001 +221282,iPhone,1,700.0,2019-06-13 13:39:00,486 Spruce St, Boston,MA,02215 +221283,Apple Airpods Headphones,1,150.0,2019-06-26 12:31:00,180 9th St, Seattle,WA,98101 +221284,Lightning Charging Cable,1,14.95,2019-06-01 22:30:00,136 Walnut St, Dallas,TX,75001 +221285,Macbook Pro Laptop,1,1700.0,2019-06-15 18:08:00,564 South St, San Francisco,CA,94016 +221286,Lightning Charging Cable,1,14.95,2019-06-03 22:23:00,572 5th St, Los Angeles,CA,90001 +221287,AAA Batteries (4-pack),2,2.99,2019-06-02 13:14:00,228 Madison St, Los Angeles,CA,90001 +221288,Apple Airpods Headphones,1,150.0,2019-06-25 20:36:00,849 Johnson St, San Francisco,CA,94016 +221289,USB-C Charging Cable,1,11.95,2019-06-06 18:56:00,590 Elm St, San Francisco,CA,94016 +221290,iPhone,1,700.0,2019-06-25 18:51:00,306 South St, Los Angeles,CA,90001 +221291,AAA Batteries (4-pack),2,2.99,2019-06-13 07:51:00,298 Spruce St, Boston,MA,02215 +221292,20in Monitor,1,109.99,2019-06-24 21:36:00,124 Pine St, Dallas,TX,75001 +221293,AAA Batteries (4-pack),1,2.99,2019-06-11 16:46:00,680 5th St, Seattle,WA,98101 +221294,Macbook Pro Laptop,1,1700.0,2019-06-05 17:13:00,202 Pine St, Seattle,WA,98101 +221295,Apple Airpods Headphones,1,150.0,2019-06-07 20:01:00,653 Lake St, San Francisco,CA,94016 +221296,Lightning Charging Cable,1,14.95,2019-06-01 07:41:00,843 North St, Dallas,TX,75001 +221297,Google Phone,1,600.0,2019-06-10 08:55:00,569 Cedar St, Boston,MA,02215 +221297,Bose SoundSport Headphones,1,99.99,2019-06-10 08:55:00,569 Cedar St, Boston,MA,02215 +221298,Lightning Charging Cable,1,14.95,2019-06-23 14:25:00,709 Elm St, Atlanta,GA,30301 +221299,iPhone,1,700.0,2019-06-14 10:05:00,761 Park St, Boston,MA,02215 +221300,Bose SoundSport Headphones,1,99.99,2019-06-10 22:45:00,825 Lincoln St, Dallas,TX,75001 +221301,Wired Headphones,3,11.99,2019-06-15 13:15:00,785 Hill St, New York City,NY,10001 +221302,USB-C Charging Cable,1,11.95,2019-06-12 22:02:00,157 8th St, Dallas,TX,75001 +221303,USB-C Charging Cable,1,11.95,2019-06-19 15:08:00,76 10th St, New York City,NY,10001 +221304,Apple Airpods Headphones,1,150.0,2019-06-15 09:19:00,660 7th St, Austin,TX,73301 +221305,USB-C Charging Cable,1,11.95,2019-06-05 15:13:00,133 Lincoln St, San Francisco,CA,94016 +221306,Bose SoundSport Headphones,1,99.99,2019-06-01 12:03:00,882 Maple St, Los Angeles,CA,90001 +221307,Apple Airpods Headphones,1,150.0,2019-06-13 09:00:00,838 Jackson St, Dallas,TX,75001 +221308,Google Phone,1,600.0,2019-06-24 12:50:00,833 9th St, San Francisco,CA,94016 +221309,34in Ultrawide Monitor,1,379.99,2019-06-01 11:39:00,510 Lakeview St, Portland,OR,97035 +221310,AAA Batteries (4-pack),3,2.99,2019-06-05 12:41:00,589 12th St, Atlanta,GA,30301 +221311,Flatscreen TV,1,300.0,2019-06-02 17:59:00,912 West St, Boston,MA,02215 +221312,USB-C Charging Cable,1,11.95,2019-06-13 07:51:00,456 Lincoln St, New York City,NY,10001 +221313,Google Phone,1,600.0,2019-06-01 12:39:00,122 Cedar St, San Francisco,CA,94016 +221314,Wired Headphones,1,11.99,2019-06-28 13:48:00,736 South St, Atlanta,GA,30301 +221315,Lightning Charging Cable,1,14.95,2019-06-27 13:48:00,682 Church St, Austin,TX,73301 +221316,AAA Batteries (4-pack),3,2.99,2019-06-05 11:28:00,992 Meadow St, Seattle,WA,98101 +221317,Lightning Charging Cable,3,14.95,2019-06-05 18:49:00,14 Forest St, San Francisco,CA,94016 +221318,Apple Airpods Headphones,1,150.0,2019-06-15 12:24:00,294 Center St, Boston,MA,02215 +221319,Google Phone,1,600.0,2019-06-08 13:27:00,32 Highland St, San Francisco,CA,94016 +221320,AAA Batteries (4-pack),1,2.99,2019-06-04 18:14:00,576 Maple St, New York City,NY,10001 +221321,AAA Batteries (4-pack),1,2.99,2019-06-13 11:07:00,534 Dogwood St, San Francisco,CA,94016 +221322,USB-C Charging Cable,1,11.95,2019-06-13 13:30:00,220 Main St, Seattle,WA,98101 +221323,USB-C Charging Cable,2,11.95,2019-06-28 22:25:00,193 West St, San Francisco,CA,94016 +221324,Apple Airpods Headphones,1,150.0,2019-06-21 13:08:00,288 Park St, San Francisco,CA,94016 +221325,Wired Headphones,1,11.99,2019-06-30 11:55:00,864 2nd St, San Francisco,CA,94016 +221326,ThinkPad Laptop,1,999.99,2019-06-15 22:14:00,431 Jefferson St, Boston,MA,02215 +221327,AA Batteries (4-pack),2,3.84,2019-06-08 12:40:00,200 Spruce St, New York City,NY,10001 +221328,USB-C Charging Cable,1,11.95,2019-06-25 11:23:00,49 Forest St, Austin,TX,73301 +221329,Google Phone,1,600.0,2019-06-25 13:55:00,267 Madison St, San Francisco,CA,94016 +221329,Wired Headphones,1,11.99,2019-06-25 13:55:00,267 Madison St, San Francisco,CA,94016 +221330,AAA Batteries (4-pack),2,2.99,2019-06-11 13:44:00,647 Chestnut St, Los Angeles,CA,90001 +221331,27in 4K Gaming Monitor,1,389.99,2019-06-18 16:38:00,954 Johnson St, New York City,NY,10001 +221332,iPhone,1,700.0,2019-06-23 11:40:00,904 Lakeview St, Dallas,TX,75001 +221333,Flatscreen TV,1,300.0,2019-06-16 10:48:00,321 8th St, Seattle,WA,98101 +221334,34in Ultrawide Monitor,1,379.99,2019-06-02 19:41:00,53 Johnson St, Portland,OR,97035 +221335,AA Batteries (4-pack),1,3.84,2019-06-19 10:18:00,165 7th St, New York City,NY,10001 +221336,27in FHD Monitor,1,149.99,2019-06-21 16:59:00,440 14th St, New York City,NY,10001 +221337,Lightning Charging Cable,1,14.95,2019-06-18 17:03:00,717 12th St, Boston,MA,02215 +221338,AA Batteries (4-pack),2,3.84,2019-06-26 21:14:00,68 Johnson St, New York City,NY,10001 +221339,USB-C Charging Cable,1,11.95,2019-06-24 16:40:00,746 Jackson St, San Francisco,CA,94016 +221340,20in Monitor,1,109.99,2019-06-01 21:33:00,136 River St, Boston,MA,02215 +221341,USB-C Charging Cable,1,11.95,2019-06-16 02:06:00,501 4th St, San Francisco,CA,94016 +221342,Apple Airpods Headphones,1,150.0,2019-06-24 08:53:00,956 Cherry St, Portland,OR,97035 +221343,Flatscreen TV,1,300.0,2019-06-10 21:14:00,783 Jackson St, Seattle,WA,98101 +221344,USB-C Charging Cable,1,11.95,2019-06-16 20:36:00,947 Main St, New York City,NY,10001 +221345,34in Ultrawide Monitor,1,379.99,2019-06-16 15:27:00,471 Walnut St, Boston,MA,02215 +221346,Google Phone,1,600.0,2019-06-22 18:39:00,18 Johnson St, Atlanta,GA,30301 +221347,Bose SoundSport Headphones,1,99.99,2019-06-28 21:29:00,254 Main St, San Francisco,CA,94016 +221348,AAA Batteries (4-pack),1,2.99,2019-06-09 13:08:00,663 Willow St, New York City,NY,10001 +221349,Wired Headphones,1,11.99,2019-06-14 17:08:00,777 7th St, Boston,MA,02215 +221350,Flatscreen TV,1,300.0,2019-06-08 10:33:00,594 South St, Atlanta,GA,30301 +221351,Wired Headphones,1,11.99,2019-06-23 14:51:00,482 Jefferson St, Portland,OR,97035 +221352,USB-C Charging Cable,1,11.95,2019-06-18 21:03:00,95 Washington St, San Francisco,CA,94016 +221353,Wired Headphones,1,11.99,2019-06-09 17:38:00,294 Lincoln St, Los Angeles,CA,90001 +221354,Apple Airpods Headphones,1,150.0,2019-06-07 11:40:00,963 South St, Portland,OR,97035 +221355,34in Ultrawide Monitor,1,379.99,2019-06-10 09:02:00,426 South St, Seattle,WA,98101 +221356,Wired Headphones,1,11.99,2019-06-07 09:33:00,597 Hill St, New York City,NY,10001 +221357,Wired Headphones,2,11.99,2019-06-29 15:50:00,696 Elm St, New York City,NY,10001 +221358,Wired Headphones,1,11.99,2019-06-10 09:43:00,324 Cherry St, Atlanta,GA,30301 +221359,Bose SoundSport Headphones,1,99.99,2019-06-04 19:18:00,929 Forest St, New York City,NY,10001 +221360,iPhone,1,700.0,2019-06-24 14:10:00,83 Jackson St, Los Angeles,CA,90001 +221361,AAA Batteries (4-pack),1,2.99,2019-06-14 16:15:00,308 Lakeview St, San Francisco,CA,94016 +221362,USB-C Charging Cable,1,11.95,2019-06-22 08:32:00,881 Madison St, Boston,MA,02215 +221363,Lightning Charging Cable,1,14.95,2019-06-30 07:43:00,795 13th St, Seattle,WA,98101 +221364,27in FHD Monitor,1,149.99,2019-06-26 09:08:00,480 North St, Portland,OR,97035 +221365,USB-C Charging Cable,2,11.95,2019-06-28 22:31:00,224 Park St, Dallas,TX,75001 +221366,AA Batteries (4-pack),3,3.84,2019-06-15 18:06:00,2 9th St, Dallas,TX,75001 +221367,Apple Airpods Headphones,1,150.0,2019-06-06 17:19:00,657 Park St, Portland,OR,97035 +221368,Google Phone,1,600.0,2019-06-28 09:18:00,67 5th St, Boston,MA,02215 +221369,USB-C Charging Cable,1,11.95,2019-06-18 00:04:00,534 Dogwood St, San Francisco,CA,94016 +221370,Lightning Charging Cable,1,14.95,2019-06-03 22:52:00,89 Madison St, San Francisco,CA,94016 +221371,AA Batteries (4-pack),1,3.84,2019-06-16 11:43:00,427 Main St, Atlanta,GA,30301 +221372,USB-C Charging Cable,1,11.95,2019-06-24 20:00:00,716 Main St, Los Angeles,CA,90001 +221373,Vareebadd Phone,1,400.0,2019-06-09 11:27:00,163 Jefferson St, San Francisco,CA,94016 +221374,USB-C Charging Cable,1,11.95,2019-06-11 08:57:00,402 11th St, Los Angeles,CA,90001 +221375,USB-C Charging Cable,1,11.95,2019-06-17 06:48:00,842 11th St, San Francisco,CA,94016 +221376,AAA Batteries (4-pack),1,2.99,2019-06-05 14:13:00,152 Chestnut St, Portland,OR,97035 +221377,27in FHD Monitor,1,149.99,2019-06-13 15:25:00,343 7th St, San Francisco,CA,94016 +221377,Bose SoundSport Headphones,1,99.99,2019-06-13 15:25:00,343 7th St, San Francisco,CA,94016 +221378,27in 4K Gaming Monitor,1,389.99,2019-06-05 18:25:00,196 Johnson St, Los Angeles,CA,90001 +221379,Wired Headphones,1,11.99,2019-06-02 13:57:00,69 Washington St, Los Angeles,CA,90001 +221380,Bose SoundSport Headphones,1,99.99,2019-06-24 15:31:00,357 Main St, Los Angeles,CA,90001 +221381,USB-C Charging Cable,1,11.95,2019-06-14 09:45:00,353 Lake St, San Francisco,CA,94016 +221382,Apple Airpods Headphones,1,150.0,2019-06-22 13:22:00,760 Sunset St, Atlanta,GA,30301 +221383,27in 4K Gaming Monitor,1,389.99,2019-06-26 15:41:00,280 Johnson St, Atlanta,GA,30301 +221384,Apple Airpods Headphones,1,150.0,2019-06-08 08:38:00,834 Lincoln St, Boston,MA,02215 +221385,Macbook Pro Laptop,1,1700.0,2019-06-03 21:20:00,171 Wilson St, Los Angeles,CA,90001 +221386,iPhone,1,700.0,2019-06-21 11:22:00,735 Park St, Portland,OR,97035 +221387,Google Phone,1,600.0,2019-06-20 22:47:00,556 Center St, New York City,NY,10001 +221387,USB-C Charging Cable,1,11.95,2019-06-20 22:47:00,556 Center St, New York City,NY,10001 +221388,27in FHD Monitor,1,149.99,2019-06-04 14:31:00,713 Lake St, Portland,OR,97035 +221389,AA Batteries (4-pack),1,3.84,2019-06-03 21:19:00,935 River St, Los Angeles,CA,90001 +221390,AA Batteries (4-pack),1,3.84,2019-06-08 23:08:00,44 4th St, San Francisco,CA,94016 +221391,27in 4K Gaming Monitor,1,389.99,2019-06-10 10:03:00,458 Hickory St, San Francisco,CA,94016 +221392,27in FHD Monitor,1,149.99,2019-06-04 21:19:00,370 13th St, Seattle,WA,98101 +221393,AAA Batteries (4-pack),3,2.99,2019-06-07 13:12:00,245 Ridge St, Austin,TX,73301 +221394,USB-C Charging Cable,3,11.95,2019-06-04 16:10:00,146 Johnson St, San Francisco,CA,94016 +221395,Lightning Charging Cable,1,14.95,2019-06-16 22:31:00,598 Highland St, Seattle,WA,98101 +221396,Bose SoundSport Headphones,1,99.99,2019-06-14 23:08:00,577 7th St, Los Angeles,CA,90001 +221397,Wired Headphones,1,11.99,2019-06-21 15:36:00,613 Spruce St, Boston,MA,02215 +221398,iPhone,1,700.0,2019-06-28 08:39:00,691 Forest St, San Francisco,CA,94016 +221399,Bose SoundSport Headphones,1,99.99,2019-06-07 15:43:00,25 North St, San Francisco,CA,94016 +221400,Wired Headphones,1,11.99,2019-06-28 17:54:00,838 7th St, San Francisco,CA,94016 +221401,USB-C Charging Cable,1,11.95,2019-06-30 19:24:00,198 South St, Portland,OR,97035 +221402,Lightning Charging Cable,1,14.95,2019-06-30 21:01:00,754 Meadow St, Atlanta,GA,30301 +221403,20in Monitor,1,109.99,2019-06-19 08:04:00,498 Jackson St, San Francisco,CA,94016 +221404,Lightning Charging Cable,1,14.95,2019-06-28 07:04:00,659 8th St, San Francisco,CA,94016 +221405,Lightning Charging Cable,1,14.95,2019-06-09 11:38:00,435 14th St, San Francisco,CA,94016 +221406,Lightning Charging Cable,1,14.95,2019-06-29 13:53:00,478 Church St, Boston,MA,02215 +221407,USB-C Charging Cable,1,11.95,2019-06-18 10:55:00,328 Lincoln St, Portland,OR,97035 +221408,Google Phone,1,600.0,2019-06-10 08:10:00,209 Lakeview St, San Francisco,CA,94016 +221409,Lightning Charging Cable,1,14.95,2019-06-13 11:25:00,329 Meadow St, Los Angeles,CA,90001 +221410,27in 4K Gaming Monitor,1,389.99,2019-06-05 16:51:00,446 5th St, San Francisco,CA,94016 +221411,Bose SoundSport Headphones,1,99.99,2019-06-22 19:36:00,609 8th St, San Francisco,CA,94016 +221412,USB-C Charging Cable,1,11.95,2019-06-19 22:46:00,206 Adams St, New York City,NY,10001 +221413,34in Ultrawide Monitor,1,379.99,2019-06-29 19:48:00,982 Maple St, Los Angeles,CA,90001 +221414,iPhone,1,700.0,2019-06-05 10:05:00,517 4th St, San Francisco,CA,94016 +221415,20in Monitor,1,109.99,2019-06-14 15:48:00,362 13th St, San Francisco,CA,94016 +221416,Apple Airpods Headphones,1,150.0,2019-06-10 19:48:00,166 Madison St, New York City,NY,10001 +221417,Lightning Charging Cable,1,14.95,2019-06-16 22:36:00,537 Jefferson St, Los Angeles,CA,90001 +221418,LG Washing Machine,1,600.0,2019-06-04 21:17:00,729 Dogwood St, Los Angeles,CA,90001 +221419,AA Batteries (4-pack),2,3.84,2019-06-30 22:05:00,600 Highland St, San Francisco,CA,94016 +221420,Macbook Pro Laptop,1,1700.0,2019-06-08 04:34:00,200 Lakeview St, Boston,MA,02215 +221421,AA Batteries (4-pack),1,3.84,2019-06-21 23:41:00,597 Hickory St, Boston,MA,02215 +221422,27in FHD Monitor,1,149.99,2019-06-04 11:21:00,677 Highland St, Portland,ME,04101 +221423,USB-C Charging Cable,1,11.95,2019-06-10 21:29:00,885 11th St, San Francisco,CA,94016 +221424,ThinkPad Laptop,1,999.99,2019-06-05 14:51:00,672 River St, Atlanta,GA,30301 +221425,USB-C Charging Cable,1,11.95,2019-06-06 16:15:00,717 West St, Austin,TX,73301 +221426,Macbook Pro Laptop,1,1700.0,2019-06-17 20:29:00,97 Meadow St, Atlanta,GA,30301 +221427,AA Batteries (4-pack),1,3.84,2019-06-09 18:14:00,925 6th St, Los Angeles,CA,90001 +221428,AA Batteries (4-pack),1,3.84,2019-06-18 16:11:00,262 5th St, San Francisco,CA,94016 +221429,AAA Batteries (4-pack),1,2.99,2019-06-02 17:56:00,861 6th St, San Francisco,CA,94016 +221430,AAA Batteries (4-pack),1,2.99,2019-06-29 21:00:00,489 Spruce St, Boston,MA,02215 +221431,Bose SoundSport Headphones,1,99.99,2019-06-19 10:26:00,973 Maple St, New York City,NY,10001 +221432,Bose SoundSport Headphones,1,99.99,2019-06-19 06:52:00,984 7th St, San Francisco,CA,94016 +221433,ThinkPad Laptop,1,999.99,2019-06-10 15:43:00,386 Elm St, Los Angeles,CA,90001 +221434,AA Batteries (4-pack),2,3.84,2019-06-06 13:42:00,714 4th St, Atlanta,GA,30301 +221435,AAA Batteries (4-pack),2,2.99,2019-06-26 19:58:00,719 Lake St, Boston,MA,02215 +221436,AAA Batteries (4-pack),1,2.99,2019-06-28 07:50:00,269 Meadow St, San Francisco,CA,94016 +221437,34in Ultrawide Monitor,1,379.99,2019-06-17 20:30:00,597 Center St, San Francisco,CA,94016 +221438,AAA Batteries (4-pack),2,2.99,2019-06-28 19:19:00,494 Spruce St, Atlanta,GA,30301 +221439,Wired Headphones,1,11.99,2019-06-26 18:07:00,311 Center St, Seattle,WA,98101 +221440,Bose SoundSport Headphones,1,99.99,2019-06-24 17:56:00,367 Jefferson St, Portland,ME,04101 +221441,USB-C Charging Cable,1,11.95,2019-06-16 11:27:00,187 10th St, Los Angeles,CA,90001 +221442,AAA Batteries (4-pack),1,2.99,2019-06-27 18:07:00,238 4th St, Los Angeles,CA,90001 +221443,AA Batteries (4-pack),1,3.84,2019-06-03 13:18:00,915 Forest St, Los Angeles,CA,90001 +221444,iPhone,1,700.0,2019-06-23 12:19:00,299 Ridge St, Seattle,WA,98101 +221445,Apple Airpods Headphones,1,150.0,2019-06-16 20:48:00,837 Main St, Seattle,WA,98101 +221446,Bose SoundSport Headphones,1,99.99,2019-06-21 12:53:00,653 Center St, Los Angeles,CA,90001 +221447,AAA Batteries (4-pack),1,2.99,2019-06-10 08:46:00,247 Jefferson St, San Francisco,CA,94016 +221448,Bose SoundSport Headphones,1,99.99,2019-06-05 12:20:00,837 South St, New York City,NY,10001 +221449,Wired Headphones,1,11.99,2019-06-15 21:09:00,920 Adams St, San Francisco,CA,94016 +221450,Wired Headphones,1,11.99,2019-06-05 18:44:00,552 Sunset St, San Francisco,CA,94016 +221451,Wired Headphones,1,11.99,2019-06-16 15:25:00,275 Lakeview St, Boston,MA,02215 +221452,20in Monitor,1,109.99,2019-06-29 19:03:00,193 Spruce St, Dallas,TX,75001 +221453,Apple Airpods Headphones,1,150.0,2019-06-25 19:33:00,902 9th St, San Francisco,CA,94016 +221454,Apple Airpods Headphones,1,150.0,2019-06-30 12:42:00,887 12th St, Boston,MA,02215 +221455,20in Monitor,1,109.99,2019-06-09 11:24:00,757 River St, San Francisco,CA,94016 +221456,20in Monitor,1,109.99,2019-06-29 14:50:00,827 9th St, Boston,MA,02215 +221457,Bose SoundSport Headphones,1,99.99,2019-06-26 15:36:00,499 Johnson St, Atlanta,GA,30301 +221458,AA Batteries (4-pack),1,3.84,2019-06-19 12:16:00,864 Lakeview St, Boston,MA,02215 +221459,Lightning Charging Cable,1,14.95,2019-06-13 14:15:00,511 14th St, Boston,MA,02215 +221460,USB-C Charging Cable,1,11.95,2019-06-03 17:32:00,19 Sunset St, San Francisco,CA,94016 +221461,USB-C Charging Cable,1,11.95,2019-06-01 21:53:00,549 7th St, Los Angeles,CA,90001 +221462,Macbook Pro Laptop,1,1700.0,2019-06-19 14:27:00,827 Cedar St, San Francisco,CA,94016 +221463,AA Batteries (4-pack),2,3.84,2019-06-26 12:17:00,451 South St, New York City,NY,10001 +221464,Vareebadd Phone,1,400.0,2019-06-04 00:50:00,133 Spruce St, Los Angeles,CA,90001 +221465,iPhone,1,700.0,2019-06-02 18:18:00,994 River St, New York City,NY,10001 +221466,27in 4K Gaming Monitor,1,389.99,2019-06-15 21:10:00,873 West St, San Francisco,CA,94016 +221467,Bose SoundSport Headphones,1,99.99,2019-06-04 20:01:00,90 Cedar St, Atlanta,GA,30301 +221468,Wired Headphones,1,11.99,2019-06-12 16:05:00,384 Main St, Atlanta,GA,30301 +221469,ThinkPad Laptop,1,999.99,2019-06-03 12:02:00,250 Elm St, Atlanta,GA,30301 +221470,AA Batteries (4-pack),1,3.84,2019-06-25 17:24:00,575 12th St, Boston,MA,02215 +221471,ThinkPad Laptop,1,999.99,2019-06-24 17:03:00,530 Highland St, New York City,NY,10001 +221472,Wired Headphones,1,11.99,2019-06-04 20:07:00,110 Willow St, Seattle,WA,98101 +221473,34in Ultrawide Monitor,1,379.99,2019-06-16 11:18:00,127 Spruce St, New York City,NY,10001 +221474,34in Ultrawide Monitor,1,379.99,2019-06-23 19:58:00,158 Washington St, San Francisco,CA,94016 +221475,Apple Airpods Headphones,1,150.0,2019-06-05 19:43:00,412 Spruce St, New York City,NY,10001 +221476,27in 4K Gaming Monitor,1,389.99,2019-06-24 00:22:00,772 1st St, New York City,NY,10001 +221477,USB-C Charging Cable,1,11.95,2019-06-23 20:25:00,899 5th St, Boston,MA,02215 +221478,20in Monitor,1,109.99,2019-06-05 23:26:00,146 Maple St, Atlanta,GA,30301 +221479,AAA Batteries (4-pack),2,2.99,2019-06-04 11:05:00,653 Washington St, Dallas,TX,75001 +221480,Apple Airpods Headphones,1,150.0,2019-06-30 07:30:00,630 Church St, San Francisco,CA,94016 +221481,AAA Batteries (4-pack),1,2.99,2019-06-08 11:29:00,222 Walnut St, Portland,OR,97035 +221482,Lightning Charging Cable,1,14.95,2019-06-11 11:01:00,194 Lake St, Boston,MA,02215 +221483,Lightning Charging Cable,1,14.95,2019-06-21 08:07:00,448 Willow St, Austin,TX,73301 +221484,Wired Headphones,1,11.99,2019-06-04 14:14:00,213 Sunset St, Atlanta,GA,30301 +221484,27in 4K Gaming Monitor,1,389.99,2019-06-04 14:14:00,213 Sunset St, Atlanta,GA,30301 +221485,Vareebadd Phone,1,400.0,2019-06-15 19:37:00,434 12th St, Dallas,TX,75001 +221485,USB-C Charging Cable,1,11.95,2019-06-15 19:37:00,434 12th St, Dallas,TX,75001 +221486,USB-C Charging Cable,1,11.95,2019-06-13 09:25:00,432 Sunset St, Dallas,TX,75001 +221487,USB-C Charging Cable,1,11.95,2019-06-29 14:49:00,300 Lake St, San Francisco,CA,94016 +221488,AA Batteries (4-pack),1,3.84,2019-06-30 18:06:00,721 South St, Portland,OR,97035 +221489,Lightning Charging Cable,1,14.95,2019-06-24 20:21:00,90 Meadow St, Seattle,WA,98101 +221490,20in Monitor,1,109.99,2019-06-19 13:40:00,858 7th St, Los Angeles,CA,90001 +221491,AAA Batteries (4-pack),2,2.99,2019-06-16 19:48:00,325 Dogwood St, San Francisco,CA,94016 +221492,Bose SoundSport Headphones,1,99.99,2019-06-10 02:52:00,661 4th St, Los Angeles,CA,90001 +221493,27in FHD Monitor,1,149.99,2019-06-14 14:22:00,724 Wilson St, San Francisco,CA,94016 +221493,Apple Airpods Headphones,1,150.0,2019-06-14 14:22:00,724 Wilson St, San Francisco,CA,94016 +221494,20in Monitor,1,109.99,2019-06-19 10:46:00,838 Lakeview St, Dallas,TX,75001 +221495,AAA Batteries (4-pack),1,2.99,2019-06-21 23:31:00,347 Willow St, Austin,TX,73301 +221496,ThinkPad Laptop,1,999.99,2019-06-12 14:16:00,828 River St, New York City,NY,10001 +221497,AA Batteries (4-pack),1,3.84,2019-06-16 09:50:00,537 Cherry St, Dallas,TX,75001 +221498,Apple Airpods Headphones,1,150.0,2019-06-13 21:16:00,3 North St, Los Angeles,CA,90001 +221499,Lightning Charging Cable,1,14.95,2019-06-26 09:25:00,203 Chestnut St, Atlanta,GA,30301 +221500,Apple Airpods Headphones,1,150.0,2019-06-10 17:15:00,744 Walnut St, San Francisco,CA,94016 +221501,Vareebadd Phone,1,400.0,2019-06-06 13:15:00,708 Willow St, Los Angeles,CA,90001 +221502,34in Ultrawide Monitor,1,379.99,2019-06-22 15:19:00,496 7th St, Los Angeles,CA,90001 +221503,27in FHD Monitor,1,149.99,2019-06-06 19:39:00,746 Adams St, Seattle,WA,98101 +221504,Google Phone,1,600.0,2019-06-18 15:06:00,81 Lake St, San Francisco,CA,94016 +221505,AAA Batteries (4-pack),1,2.99,2019-06-15 20:47:00,845 Adams St, Seattle,WA,98101 +221506,USB-C Charging Cable,1,11.95,2019-06-12 21:58:00,816 9th St, San Francisco,CA,94016 +221507,USB-C Charging Cable,1,11.95,2019-06-09 20:14:00,241 8th St, Los Angeles,CA,90001 +221508,AAA Batteries (4-pack),1,2.99,2019-06-29 11:59:00,467 14th St, New York City,NY,10001 +221509,20in Monitor,1,109.99,2019-06-25 17:17:00,345 Johnson St, Dallas,TX,75001 +221510,Wired Headphones,2,11.99,2019-06-17 17:12:00,787 Chestnut St, Dallas,TX,75001 +221511,20in Monitor,1,109.99,2019-06-13 23:01:00,608 Chestnut St, Seattle,WA,98101 +221512,27in FHD Monitor,1,149.99,2019-06-03 09:40:00,724 14th St, New York City,NY,10001 +221513,Vareebadd Phone,1,400.0,2019-06-04 13:59:00,341 Maple St, San Francisco,CA,94016 +221514,AA Batteries (4-pack),3,3.84,2019-06-24 10:35:00,55 Lake St, Los Angeles,CA,90001 +221515,USB-C Charging Cable,1,11.95,2019-06-28 14:52:00,539 Washington St, Austin,TX,73301 +221516,Lightning Charging Cable,1,14.95,2019-06-10 21:59:00,718 Cedar St, Atlanta,GA,30301 +221517,iPhone,1,700.0,2019-06-20 00:18:00,876 South St, New York City,NY,10001 +221518,AA Batteries (4-pack),2,3.84,2019-06-16 17:26:00,2 12th St, Portland,ME,04101 +221519,AA Batteries (4-pack),1,3.84,2019-06-17 20:47:00,135 Walnut St, Boston,MA,02215 +221520,Lightning Charging Cable,2,14.95,2019-06-20 16:32:00,546 8th St, Boston,MA,02215 +221521,AAA Batteries (4-pack),1,2.99,2019-06-21 13:33:00,231 Chestnut St, San Francisco,CA,94016 +221522,AA Batteries (4-pack),2,3.84,2019-06-10 15:36:00,289 Hickory St, Atlanta,GA,30301 +221523,Apple Airpods Headphones,1,150.0,2019-06-23 19:25:00,877 Wilson St, Boston,MA,02215 +221524,Google Phone,1,600.0,2019-06-01 15:03:00,281 Johnson St, San Francisco,CA,94016 +221525,20in Monitor,1,109.99,2019-06-12 23:01:00,343 11th St, Austin,TX,73301 +221526,AAA Batteries (4-pack),3,2.99,2019-06-19 11:46:00,186 Church St, Boston,MA,02215 +221527,Flatscreen TV,1,300.0,2019-06-15 10:55:00,135 9th St, Los Angeles,CA,90001 +221528,AAA Batteries (4-pack),1,2.99,2019-06-25 11:38:00,130 1st St, Los Angeles,CA,90001 +221529,Wired Headphones,1,11.99,2019-06-01 23:27:00,335 Wilson St, Portland,OR,97035 +221530,AAA Batteries (4-pack),2,2.99,2019-06-02 00:49:00,191 Meadow St, San Francisco,CA,94016 +221531,Bose SoundSport Headphones,1,99.99,2019-06-15 21:04:00,772 Chestnut St, Boston,MA,02215 +221532,Macbook Pro Laptop,1,1700.0,2019-06-13 22:59:00,90 Cedar St, Austin,TX,73301 +221533,USB-C Charging Cable,1,11.95,2019-06-03 19:24:00,665 Johnson St, Dallas,TX,75001 +221534,Lightning Charging Cable,1,14.95,2019-06-01 12:12:00,216 1st St, Dallas,TX,75001 +221535,34in Ultrawide Monitor,1,379.99,2019-06-12 00:20:00,291 13th St, New York City,NY,10001 +221536,Wired Headphones,1,11.99,2019-06-25 00:22:00,584 Adams St, Seattle,WA,98101 +221537,iPhone,1,700.0,2019-06-06 10:43:00,492 10th St, Los Angeles,CA,90001 +221538,Apple Airpods Headphones,1,150.0,2019-06-10 01:08:00,690 8th St, Los Angeles,CA,90001 +221539,USB-C Charging Cable,1,11.95,2019-06-14 18:02:00,580 Lakeview St, Los Angeles,CA,90001 +221540,Apple Airpods Headphones,1,150.0,2019-06-29 10:02:00,903 Center St, Austin,TX,73301 +221541,Bose SoundSport Headphones,1,99.99,2019-06-04 16:06:00,507 Elm St, Portland,OR,97035 +221542,34in Ultrawide Monitor,1,379.99,2019-06-21 15:23:00,707 Meadow St, Boston,MA,02215 +221543,USB-C Charging Cable,1,11.95,2019-06-02 19:57:00,771 Church St, Portland,OR,97035 +221544,USB-C Charging Cable,1,11.95,2019-06-13 14:57:00,867 11th St, Seattle,WA,98101 +221545,34in Ultrawide Monitor,1,379.99,2019-06-13 13:56:00,865 12th St, Portland,OR,97035 +221546,Lightning Charging Cable,1,14.95,2019-06-16 11:56:00,312 North St, Atlanta,GA,30301 +221547,Apple Airpods Headphones,1,150.0,2019-06-26 18:55:00,464 Highland St, Boston,MA,02215 +221548,Macbook Pro Laptop,1,1700.0,2019-06-14 15:51:00,439 Hill St, Portland,ME,04101 +221549,Wired Headphones,1,11.99,2019-06-01 22:52:00,163 Main St, Los Angeles,CA,90001 +221550,27in FHD Monitor,1,149.99,2019-06-07 19:51:00,699 Forest St, Portland,OR,97035 +221551,Bose SoundSport Headphones,1,99.99,2019-06-23 13:31:00,591 7th St, Austin,TX,73301 +221552,AA Batteries (4-pack),2,3.84,2019-06-06 22:16:00,529 8th St, Boston,MA,02215 +221553,iPhone,1,700.0,2019-06-14 08:49:00,772 Sunset St, Los Angeles,CA,90001 +221553,AA Batteries (4-pack),1,3.84,2019-06-14 08:49:00,772 Sunset St, Los Angeles,CA,90001 +221554,34in Ultrawide Monitor,1,379.99,2019-06-22 20:12:00,73 Center St, Atlanta,GA,30301 +221555,Wired Headphones,1,11.99,2019-06-05 00:07:00,264 Sunset St, San Francisco,CA,94016 +221556,Lightning Charging Cable,1,14.95,2019-06-27 02:59:00,842 Cherry St, Dallas,TX,75001 +221557,Apple Airpods Headphones,1,150.0,2019-06-28 07:59:00,106 Meadow St, Boston,MA,02215 +221558,Lightning Charging Cable,1,14.95,2019-06-01 12:03:00,590 1st St, Boston,MA,02215 +221559,AAA Batteries (4-pack),1,2.99,2019-06-06 16:36:00,468 11th St, New York City,NY,10001 +221560,USB-C Charging Cable,1,11.95,2019-06-23 12:04:00,286 7th St, New York City,NY,10001 +221561,AA Batteries (4-pack),1,3.84,2019-06-10 11:53:00,407 9th St, Boston,MA,02215 +221562,Bose SoundSport Headphones,1,99.99,2019-06-02 08:38:00,520 Spruce St, Boston,MA,02215 +221563,AA Batteries (4-pack),1,3.84,2019-06-21 18:01:00,461 Washington St, Portland,OR,97035 +221564,AAA Batteries (4-pack),3,2.99,2019-06-13 05:45:00,871 7th St, Boston,MA,02215 +221565,AAA Batteries (4-pack),1,2.99,2019-06-30 21:00:00,291 Center St, Austin,TX,73301 +221566,Bose SoundSport Headphones,1,99.99,2019-06-14 01:18:00,165 Dogwood St, Los Angeles,CA,90001 +221567,AAA Batteries (4-pack),1,2.99,2019-06-17 15:31:00,426 Chestnut St, San Francisco,CA,94016 +221568,Google Phone,1,600.0,2019-06-12 15:42:00,537 Lincoln St, San Francisco,CA,94016 +221569,Google Phone,1,600.0,2019-06-07 00:08:00,724 Dogwood St, New York City,NY,10001 +221570,Bose SoundSport Headphones,1,99.99,2019-06-24 21:02:00,40 8th St, New York City,NY,10001 +221571,20in Monitor,1,109.99,2019-06-28 10:31:00,311 7th St, San Francisco,CA,94016 +221572,AAA Batteries (4-pack),1,2.99,2019-06-04 17:29:00,336 Lake St, Seattle,WA,98101 +221573,Lightning Charging Cable,1,14.95,2019-06-27 21:05:00,211 Johnson St, Los Angeles,CA,90001 +221574,AA Batteries (4-pack),1,3.84,2019-06-21 09:27:00,554 Adams St, Dallas,TX,75001 +221575,Apple Airpods Headphones,1,150.0,2019-06-02 15:48:00,6 Church St, Seattle,WA,98101 +221576,Wired Headphones,1,11.99,2019-06-02 18:55:00,18 Ridge St, San Francisco,CA,94016 +221577,Macbook Pro Laptop,1,1700.0,2019-06-23 17:32:00,293 Forest St, Atlanta,GA,30301 +221578,AA Batteries (4-pack),1,3.84,2019-06-03 16:04:00,576 Church St, New York City,NY,10001 +221579,Macbook Pro Laptop,1,1700.0,2019-06-15 08:42:00,132 Elm St, New York City,NY,10001 +221580,Wired Headphones,1,11.99,2019-06-07 20:50:00,820 Highland St, Portland,ME,04101 +221581,27in 4K Gaming Monitor,1,389.99,2019-06-22 21:21:00,218 11th St, New York City,NY,10001 +221582,Google Phone,1,600.0,2019-06-30 07:34:00,20 Walnut St, Los Angeles,CA,90001 +221583,Wired Headphones,1,11.99,2019-06-22 19:31:00,86 South St, Boston,MA,02215 +221584,USB-C Charging Cable,1,11.95,2019-06-15 00:30:00,500 Walnut St, Los Angeles,CA,90001 +221585,Flatscreen TV,1,300.0,2019-06-19 21:55:00,919 Cedar St, New York City,NY,10001 +221586,Lightning Charging Cable,1,14.95,2019-06-30 01:52:00,341 Elm St, New York City,NY,10001 +221587,Wired Headphones,1,11.99,2019-06-18 14:12:00,61 11th St, Portland,OR,97035 +221588,Google Phone,1,600.0,2019-06-03 09:07:00,516 Madison St, New York City,NY,10001 +221588,USB-C Charging Cable,1,11.95,2019-06-03 09:07:00,516 Madison St, New York City,NY,10001 +221589,Lightning Charging Cable,1,14.95,2019-06-20 08:33:00,136 1st St, San Francisco,CA,94016 +221590,USB-C Charging Cable,1,11.95,2019-06-15 13:23:00,292 Maple St, New York City,NY,10001 +221591,Apple Airpods Headphones,1,150.0,2019-06-07 09:56:00,853 River St, Portland,OR,97035 +221592,Google Phone,1,600.0,2019-06-23 12:56:00,121 Church St, San Francisco,CA,94016 +221592,USB-C Charging Cable,1,11.95,2019-06-23 12:56:00,121 Church St, San Francisco,CA,94016 +221593,USB-C Charging Cable,1,11.95,2019-06-07 18:03:00,340 2nd St, New York City,NY,10001 +221594,USB-C Charging Cable,2,11.95,2019-06-25 09:21:00,860 Walnut St, New York City,NY,10001 +221595,AA Batteries (4-pack),1,3.84,2019-06-13 20:44:00,52 Elm St, Dallas,TX,75001 +221596,Wired Headphones,1,11.99,2019-06-27 11:51:00,108 8th St, Los Angeles,CA,90001 +221597,AAA Batteries (4-pack),1,2.99,2019-06-10 13:08:00,610 Highland St, Dallas,TX,75001 +221598,27in 4K Gaming Monitor,1,389.99,2019-06-24 15:33:00,880 10th St, Seattle,WA,98101 +221599,Wired Headphones,2,11.99,2019-06-03 08:29:00,344 Elm St, Los Angeles,CA,90001 +221600,Macbook Pro Laptop,1,1700.0,2019-06-27 17:01:00,688 South St, Los Angeles,CA,90001 +221601,Google Phone,1,600.0,2019-06-20 10:46:00,771 South St, Los Angeles,CA,90001 +221602,iPhone,1,700.0,2019-06-11 21:58:00,939 Pine St, San Francisco,CA,94016 +221603,Lightning Charging Cable,1,14.95,2019-06-09 16:09:00,511 14th St, Austin,TX,73301 +221604,Macbook Pro Laptop,1,1700.0,2019-06-09 23:14:00,598 8th St, Seattle,WA,98101 +221605,Lightning Charging Cable,1,14.95,2019-06-26 13:00:00,865 Spruce St, Los Angeles,CA,90001 +221606,Wired Headphones,1,11.99,2019-06-29 14:08:00,249 Adams St, San Francisco,CA,94016 +221607,27in 4K Gaming Monitor,1,389.99,2019-06-13 13:14:00,508 Madison St, Los Angeles,CA,90001 +221608,ThinkPad Laptop,1,999.99,2019-06-11 12:15:00,563 Church St, Dallas,TX,75001 +221609,LG Dryer,1,600.0,2019-06-26 21:21:00,88 6th St, New York City,NY,10001 +221610,USB-C Charging Cable,1,11.95,2019-06-25 09:25:00,930 Center St, Austin,TX,73301 +221611,AAA Batteries (4-pack),1,2.99,2019-06-13 13:12:00,839 West St, New York City,NY,10001 +221612,AAA Batteries (4-pack),3,2.99,2019-06-15 13:33:00,527 Lake St, Portland,OR,97035 +221613,AAA Batteries (4-pack),2,2.99,2019-06-11 02:31:00,588 Pine St, Boston,MA,02215 +221614,USB-C Charging Cable,1,11.95,2019-06-18 18:59:00,491 Dogwood St, Portland,ME,04101 +221615,AAA Batteries (4-pack),1,2.99,2019-06-16 17:11:00,766 11th St, Boston,MA,02215 +221616,AAA Batteries (4-pack),1,2.99,2019-06-19 16:33:00,556 Meadow St, Atlanta,GA,30301 +221617,Apple Airpods Headphones,1,150.0,2019-06-04 18:43:00,778 South St, San Francisco,CA,94016 +221618,Wired Headphones,1,11.99,2019-06-15 11:20:00,710 Ridge St, New York City,NY,10001 +221619,20in Monitor,1,109.99,2019-06-05 13:45:00,206 14th St, Dallas,TX,75001 +221620,Lightning Charging Cable,1,14.95,2019-06-23 13:04:00,325 8th St, San Francisco,CA,94016 +221621,Flatscreen TV,1,300.0,2019-06-26 12:27:00,487 6th St, Atlanta,GA,30301 +221622,AAA Batteries (4-pack),2,2.99,2019-06-22 11:12:00,225 Washington St, Portland,OR,97035 +221623,Bose SoundSport Headphones,1,99.99,2019-06-05 13:35:00,51 Walnut St, Los Angeles,CA,90001 +221624,USB-C Charging Cable,1,11.95,2019-06-01 12:32:00,65 Madison St, Los Angeles,CA,90001 +221625,27in FHD Monitor,1,149.99,2019-06-09 10:41:00,484 North St, Seattle,WA,98101 +221626,AAA Batteries (4-pack),1,2.99,2019-06-05 06:21:00,384 Elm St, Boston,MA,02215 +221627,20in Monitor,1,109.99,2019-06-16 21:22:00,400 Lake St, New York City,NY,10001 +221628,34in Ultrawide Monitor,1,379.99,2019-06-19 20:53:00,829 4th St, Dallas,TX,75001 +221629,Lightning Charging Cable,1,14.95,2019-06-22 17:30:00,592 Hickory St, Los Angeles,CA,90001 +221630,Bose SoundSport Headphones,1,99.99,2019-06-19 13:08:00,418 Madison St, Austin,TX,73301 +221631,Apple Airpods Headphones,1,150.0,2019-06-07 11:43:00,196 13th St, Austin,TX,73301 +221632,AAA Batteries (4-pack),3,2.99,2019-06-26 18:40:00,225 Hickory St, Portland,OR,97035 +221633,Wired Headphones,1,11.99,2019-06-16 18:52:00,911 Park St, San Francisco,CA,94016 +221634,AAA Batteries (4-pack),1,2.99,2019-06-19 12:28:00,832 13th St, Dallas,TX,75001 +221635,Macbook Pro Laptop,1,1700.0,2019-06-21 15:37:00,698 Highland St, San Francisco,CA,94016 +221636,AA Batteries (4-pack),1,3.84,2019-06-19 18:48:00,385 Sunset St, Boston,MA,02215 +221637,20in Monitor,1,109.99,2019-06-09 12:52:00,661 8th St, Los Angeles,CA,90001 +221638,Bose SoundSport Headphones,1,99.99,2019-06-16 21:42:00,477 9th St, Los Angeles,CA,90001 +221639,Bose SoundSport Headphones,1,99.99,2019-06-20 21:38:00,125 Johnson St, Austin,TX,73301 +221640,Bose SoundSport Headphones,1,99.99,2019-06-30 08:37:00,837 12th St, Boston,MA,02215 +221641,USB-C Charging Cable,1,11.95,2019-06-03 13:12:00,751 13th St, San Francisco,CA,94016 +221642,Apple Airpods Headphones,1,150.0,2019-06-19 17:53:00,778 Washington St, Portland,ME,04101 +221643,27in 4K Gaming Monitor,1,389.99,2019-06-29 12:13:00,314 9th St, Austin,TX,73301 +221643,Google Phone,1,600.0,2019-06-29 12:13:00,314 9th St, Austin,TX,73301 +221644,27in FHD Monitor,1,149.99,2019-06-28 18:57:00,777 Adams St, New York City,NY,10001 +221645,AA Batteries (4-pack),1,3.84,2019-06-24 11:01:00,232 Forest St, Los Angeles,CA,90001 +221646,USB-C Charging Cable,1,11.95,2019-06-05 22:30:00,352 10th St, Boston,MA,02215 +221647,Lightning Charging Cable,1,14.95,2019-06-22 12:28:00,698 Sunset St, Los Angeles,CA,90001 +221648,Vareebadd Phone,1,400.0,2019-06-21 17:28:00,979 Cherry St, Atlanta,GA,30301 +221649,iPhone,1,700.0,2019-06-27 18:38:00,499 2nd St, Atlanta,GA,30301 +221650,Lightning Charging Cable,1,14.95,2019-06-27 11:54:00,546 Hickory St, Austin,TX,73301 +221651,Apple Airpods Headphones,1,150.0,2019-06-17 12:25:00,138 13th St, Austin,TX,73301 +221652,27in 4K Gaming Monitor,1,389.99,2019-06-21 11:14:00,667 Johnson St, San Francisco,CA,94016 +221653,Wired Headphones,1,11.99,2019-06-26 10:03:00,68 Elm St, New York City,NY,10001 +221654,USB-C Charging Cable,1,11.95,2019-06-27 08:18:00,934 Lake St, Los Angeles,CA,90001 +221655,Lightning Charging Cable,1,14.95,2019-06-29 07:39:00,163 13th St, New York City,NY,10001 +221656,Bose SoundSport Headphones,1,99.99,2019-06-18 17:22:00,852 Madison St, Boston,MA,02215 +221657,Apple Airpods Headphones,1,150.0,2019-06-08 10:26:00,657 Maple St, Austin,TX,73301 +221658,Lightning Charging Cable,1,14.95,2019-06-09 20:46:00,582 Church St, Boston,MA,02215 +221659,USB-C Charging Cable,1,11.95,2019-06-19 22:54:00,357 12th St, San Francisco,CA,94016 +221660,27in 4K Gaming Monitor,1,389.99,2019-06-28 10:09:00,434 Park St, Los Angeles,CA,90001 +221661,AA Batteries (4-pack),1,3.84,2019-06-21 19:59:00,65 Elm St, San Francisco,CA,94016 +221662,AA Batteries (4-pack),1,3.84,2019-06-30 09:27:00,829 9th St, San Francisco,CA,94016 +221663,Apple Airpods Headphones,1,150.0,2019-06-19 16:04:00,788 Dogwood St, Boston,MA,02215 +221664,Lightning Charging Cable,1,14.95,2019-06-15 09:58:00,140 7th St, Atlanta,GA,30301 +221665,iPhone,1,700.0,2019-06-28 14:29:00,547 4th St, Atlanta,GA,30301 +221665,Wired Headphones,1,11.99,2019-06-28 14:29:00,547 4th St, Atlanta,GA,30301 +221666,Google Phone,1,600.0,2019-06-15 21:47:00,164 North St, Boston,MA,02215 +221667,Flatscreen TV,1,300.0,2019-06-27 09:30:00,441 Hill St, Dallas,TX,75001 +221668,Wired Headphones,1,11.99,2019-06-16 17:51:00,843 Pine St, Dallas,TX,75001 +221669,USB-C Charging Cable,1,11.95,2019-06-08 13:24:00,512 Cherry St, Atlanta,GA,30301 +221670,Apple Airpods Headphones,1,150.0,2019-06-12 10:30:00,45 11th St, Boston,MA,02215 +221671,AAA Batteries (4-pack),1,2.99,2019-06-10 16:46:00,961 Elm St, San Francisco,CA,94016 +221672,iPhone,1,700.0,2019-06-21 13:01:00,705 Maple St, Atlanta,GA,30301 +221672,Lightning Charging Cable,1,14.95,2019-06-21 13:01:00,705 Maple St, Atlanta,GA,30301 +221673,USB-C Charging Cable,1,11.95,2019-06-18 17:33:00,724 Meadow St, San Francisco,CA,94016 +221674,27in 4K Gaming Monitor,1,389.99,2019-06-05 15:05:00,328 11th St, Portland,OR,97035 +221675,AA Batteries (4-pack),2,3.84,2019-06-09 00:18:00,545 Lakeview St, San Francisco,CA,94016 +221676,Bose SoundSport Headphones,1,99.99,2019-06-19 08:21:00,295 North St, Seattle,WA,98101 +221677,27in 4K Gaming Monitor,1,389.99,2019-06-27 07:50:00,968 Park St, San Francisco,CA,94016 +221678,AA Batteries (4-pack),1,3.84,2019-06-28 21:23:00,767 Main St, Boston,MA,02215 +221679,AA Batteries (4-pack),2,3.84,2019-06-17 10:37:00,32 River St, Los Angeles,CA,90001 +221680,Lightning Charging Cable,2,14.95,2019-06-19 07:16:00,459 1st St, New York City,NY,10001 +221681,Lightning Charging Cable,1,14.95,2019-06-30 06:36:00,933 Sunset St, San Francisco,CA,94016 +221682,34in Ultrawide Monitor,1,379.99,2019-06-09 16:51:00,942 Sunset St, New York City,NY,10001 +221683,Macbook Pro Laptop,1,1700.0,2019-06-11 19:12:00,281 Forest St, Austin,TX,73301 +221684,34in Ultrawide Monitor,1,379.99,2019-06-25 17:20:00,274 Main St, Seattle,WA,98101 +221685,AA Batteries (4-pack),1,3.84,2019-06-13 20:38:00,30 8th St, New York City,NY,10001 +221686,20in Monitor,1,109.99,2019-06-13 11:58:00,53 Chestnut St, Seattle,WA,98101 +221687,AA Batteries (4-pack),2,3.84,2019-06-29 19:03:00,32 13th St, Boston,MA,02215 +221688,AA Batteries (4-pack),1,3.84,2019-06-15 09:41:00,749 Main St, Atlanta,GA,30301 +221689,Lightning Charging Cable,1,14.95,2019-06-08 13:16:00,824 South St, Boston,MA,02215 +221690,AAA Batteries (4-pack),1,2.99,2019-06-07 10:31:00,42 2nd St, San Francisco,CA,94016 +221691,34in Ultrawide Monitor,1,379.99,2019-06-22 08:44:00,24 Lake St, Atlanta,GA,30301 +221692,Apple Airpods Headphones,1,150.0,2019-06-08 16:31:00,994 Dogwood St, San Francisco,CA,94016 +221693,Lightning Charging Cable,1,14.95,2019-06-25 12:18:00,523 2nd St, Los Angeles,CA,90001 +221694,Apple Airpods Headphones,1,150.0,2019-06-06 14:17:00,334 Dogwood St, Dallas,TX,75001 +221695,Apple Airpods Headphones,1,150.0,2019-06-18 15:50:00,610 Walnut St, New York City,NY,10001 +221696,Apple Airpods Headphones,1,150.0,2019-06-20 13:21:00,592 Meadow St, New York City,NY,10001 +221697,AA Batteries (4-pack),1,3.84,2019-06-14 23:38:00,818 Main St, San Francisco,CA,94016 +221698,34in Ultrawide Monitor,1,379.99,2019-06-01 10:16:00,171 Johnson St, San Francisco,CA,94016 +221699,27in FHD Monitor,1,149.99,2019-06-14 19:45:00,603 Elm St, Los Angeles,CA,90001 +221700,Flatscreen TV,1,300.0,2019-06-09 17:38:00,772 6th St, New York City,NY,10001 +221701,34in Ultrawide Monitor,1,379.99,2019-06-20 02:11:00,210 Washington St, Austin,TX,73301 +221702,Lightning Charging Cable,1,14.95,2019-06-11 16:31:00,417 Hill St, Boston,MA,02215 +221703,AAA Batteries (4-pack),1,2.99,2019-06-24 18:23:00,767 Willow St, San Francisco,CA,94016 +221704,Flatscreen TV,1,300.0,2019-06-03 21:52:00,712 Pine St, Seattle,WA,98101 +221705,Apple Airpods Headphones,1,150.0,2019-06-18 22:34:00,33 Johnson St, San Francisco,CA,94016 +221705,AAA Batteries (4-pack),1,2.99,2019-06-18 22:34:00,33 Johnson St, San Francisco,CA,94016 +221706,USB-C Charging Cable,1,11.95,2019-06-20 21:49:00,732 Lakeview St, Austin,TX,73301 +221707,AAA Batteries (4-pack),1,2.99,2019-06-28 17:26:00,692 Cedar St, Los Angeles,CA,90001 +221708,Macbook Pro Laptop,1,1700.0,2019-06-27 16:13:00,338 Cherry St, Austin,TX,73301 +221709,27in FHD Monitor,1,149.99,2019-06-07 12:54:00,76 River St, Boston,MA,02215 +221710,AA Batteries (4-pack),1,3.84,2019-06-05 20:07:00,940 Madison St, Austin,TX,73301 +221711,Bose SoundSport Headphones,1,99.99,2019-06-15 16:36:00,139 West St, New York City,NY,10001 +221712,Lightning Charging Cable,1,14.95,2019-06-27 12:46:00,64 Center St, San Francisco,CA,94016 +221713,AA Batteries (4-pack),1,3.84,2019-06-23 17:21:00,191 Dogwood St, Los Angeles,CA,90001 +221714,Lightning Charging Cable,1,14.95,2019-06-14 12:54:00,480 4th St, New York City,NY,10001 +221715,AAA Batteries (4-pack),1,2.99,2019-06-04 11:08:00,752 Willow St, Austin,TX,73301 +221716,AAA Batteries (4-pack),1,2.99,2019-06-27 18:55:00,621 11th St, Los Angeles,CA,90001 +221717,USB-C Charging Cable,1,11.95,2019-06-06 05:30:00,113 Cherry St, San Francisco,CA,94016 +221718,27in FHD Monitor,1,149.99,2019-06-29 20:51:00,112 12th St, Seattle,WA,98101 +221719,27in 4K Gaming Monitor,1,389.99,2019-06-25 09:19:00,560 14th St, Dallas,TX,75001 +221720,AA Batteries (4-pack),2,3.84,2019-06-12 11:17:00,709 5th St, Portland,OR,97035 +221721,USB-C Charging Cable,1,11.95,2019-06-24 11:08:00,782 Maple St, San Francisco,CA,94016 +221722,Apple Airpods Headphones,2,150.0,2019-06-25 19:26:00,242 Pine St, San Francisco,CA,94016 +221723,AAA Batteries (4-pack),1,2.99,2019-06-23 07:16:00,215 14th St, New York City,NY,10001 +221723,27in 4K Gaming Monitor,1,389.99,2019-06-23 07:16:00,215 14th St, New York City,NY,10001 +221724,Wired Headphones,1,11.99,2019-06-30 10:18:00,624 Spruce St, Los Angeles,CA,90001 +221725,USB-C Charging Cable,1,11.95,2019-06-30 13:01:00,337 Johnson St, Los Angeles,CA,90001 +221726,Apple Airpods Headphones,1,150.0,2019-06-02 10:17:00,540 Lakeview St, Los Angeles,CA,90001 +221727,Bose SoundSport Headphones,1,99.99,2019-06-14 17:35:00,912 Jackson St, San Francisco,CA,94016 +221727,USB-C Charging Cable,1,11.95,2019-06-14 17:35:00,912 Jackson St, San Francisco,CA,94016 +221728,Bose SoundSport Headphones,1,99.99,2019-06-24 19:19:00,696 Hickory St, Boston,MA,02215 +221729,AAA Batteries (4-pack),1,2.99,2019-06-13 06:00:00,3 Spruce St, Los Angeles,CA,90001 +221730,27in 4K Gaming Monitor,1,389.99,2019-06-20 09:19:00,108 Hill St, Dallas,TX,75001 +221731,Lightning Charging Cable,1,14.95,2019-06-13 12:57:00,903 12th St, San Francisco,CA,94016 +221732,Lightning Charging Cable,1,14.95,2019-06-02 20:25:00,265 Maple St, New York City,NY,10001 +221733,27in FHD Monitor,1,149.99,2019-06-09 23:19:00,235 Chestnut St, Austin,TX,73301 +221734,Google Phone,1,600.0,2019-06-01 21:51:00,861 1st St, Los Angeles,CA,90001 +221735,Lightning Charging Cable,2,14.95,2019-06-29 19:07:00,503 Church St, Portland,OR,97035 +221736,USB-C Charging Cable,1,11.95,2019-06-15 20:16:00,603 12th St, Boston,MA,02215 +221736,Vareebadd Phone,1,400.0,2019-06-15 20:16:00,603 12th St, Boston,MA,02215 +221737,Lightning Charging Cable,1,14.95,2019-06-05 14:12:00,571 Cedar St, San Francisco,CA,94016 +221738,Macbook Pro Laptop,1,1700.0,2019-06-02 20:54:00,304 West St, Dallas,TX,75001 +221739,AA Batteries (4-pack),3,3.84,2019-06-25 12:53:00,303 Lake St, Dallas,TX,75001 +221740,Bose SoundSport Headphones,1,99.99,2019-06-10 15:11:00,327 Main St, Boston,MA,02215 +221741,Lightning Charging Cable,1,14.95,2019-06-02 21:29:00,255 Pine St, San Francisco,CA,94016 +221742,USB-C Charging Cable,1,11.95,2019-06-28 18:43:00,248 9th St, San Francisco,CA,94016 +221743,iPhone,1,700.0,2019-06-29 14:45:00,886 Willow St, Boston,MA,02215 +221744,AA Batteries (4-pack),1,3.84,2019-06-09 15:20:00,453 7th St, Los Angeles,CA,90001 +221745,Bose SoundSport Headphones,1,99.99,2019-06-28 10:47:00,721 Elm St, Seattle,WA,98101 +221746,Bose SoundSport Headphones,1,99.99,2019-06-24 19:31:00,958 Forest St, New York City,NY,10001 +221747,Apple Airpods Headphones,1,150.0,2019-06-13 00:22:00,330 7th St, New York City,NY,10001 +221748,Lightning Charging Cable,2,14.95,2019-06-25 13:18:00,726 Spruce St, Boston,MA,02215 +221749,Lightning Charging Cable,1,14.95,2019-06-05 16:55:00,757 Cedar St, San Francisco,CA,94016 +221750,Google Phone,1,600.0,2019-06-06 23:15:00,127 Johnson St, Los Angeles,CA,90001 +221751,Wired Headphones,1,11.99,2019-06-23 16:22:00,664 7th St, San Francisco,CA,94016 +221752,20in Monitor,1,109.99,2019-06-12 17:33:00,343 Hill St, Boston,MA,02215 +221753,AA Batteries (4-pack),1,3.84,2019-06-25 19:12:00,636 South St, New York City,NY,10001 +221754,27in FHD Monitor,1,149.99,2019-06-20 06:30:00,576 Church St, Dallas,TX,75001 +221755,Macbook Pro Laptop,1,1700.0,2019-06-16 19:49:00,498 9th St, San Francisco,CA,94016 +221756,AA Batteries (4-pack),2,3.84,2019-06-17 22:07:00,591 Pine St, Los Angeles,CA,90001 +221757,USB-C Charging Cable,1,11.95,2019-06-03 19:11:00,589 Lincoln St, Los Angeles,CA,90001 +221758,Lightning Charging Cable,1,14.95,2019-06-15 17:32:00,567 Church St, San Francisco,CA,94016 +221759,Lightning Charging Cable,1,14.95,2019-06-12 04:31:00,828 Spruce St, Boston,MA,02215 +221760,AAA Batteries (4-pack),3,2.99,2019-06-02 14:51:00,891 Chestnut St, Portland,OR,97035 +221761,AA Batteries (4-pack),1,3.84,2019-06-21 09:43:00,666 Dogwood St, San Francisco,CA,94016 +221762,Google Phone,1,600.0,2019-06-23 20:22:00,899 Adams St, Boston,MA,02215 +221763,Lightning Charging Cable,1,14.95,2019-06-23 21:27:00,851 Jefferson St, Los Angeles,CA,90001 +221764,AA Batteries (4-pack),2,3.84,2019-06-20 14:37:00,814 8th St, San Francisco,CA,94016 +221765,27in 4K Gaming Monitor,1,389.99,2019-06-23 03:03:00,762 8th St, Seattle,WA,98101 +221766,AAA Batteries (4-pack),2,2.99,2019-06-18 13:12:00,249 9th St, Atlanta,GA,30301 +221767,AA Batteries (4-pack),2,3.84,2019-06-24 10:46:00,856 Church St, Los Angeles,CA,90001 +221768,AA Batteries (4-pack),1,3.84,2019-06-13 04:31:00,599 Highland St, San Francisco,CA,94016 +221769,27in FHD Monitor,1,149.99,2019-06-12 06:04:00,88 Cedar St, San Francisco,CA,94016 +221770,Apple Airpods Headphones,1,150.0,2019-06-29 11:20:00,611 Lincoln St, San Francisco,CA,94016 +221771,AA Batteries (4-pack),2,3.84,2019-06-29 23:36:00,595 Elm St, Seattle,WA,98101 +221772,iPhone,1,700.0,2019-06-21 12:33:00,694 Adams St, Los Angeles,CA,90001 +221773,AAA Batteries (4-pack),1,2.99,2019-06-29 01:47:00,492 12th St, New York City,NY,10001 +221774,Apple Airpods Headphones,1,150.0,2019-06-06 20:11:00,60 Adams St, Seattle,WA,98101 +221775,Wired Headphones,1,11.99,2019-06-03 09:18:00,680 10th St, San Francisco,CA,94016 +221776,AAA Batteries (4-pack),1,2.99,2019-06-19 21:43:00,188 West St, Los Angeles,CA,90001 +221777,Bose SoundSport Headphones,1,99.99,2019-06-16 11:46:00,22 Sunset St, San Francisco,CA,94016 +221778,AA Batteries (4-pack),1,3.84,2019-06-04 22:49:00,310 Johnson St, New York City,NY,10001 +221779,AA Batteries (4-pack),1,3.84,2019-06-14 11:43:00,123 2nd St, Dallas,TX,75001 +221780,27in 4K Gaming Monitor,1,389.99,2019-06-04 23:40:00,780 Jackson St, Portland,OR,97035 +221781,34in Ultrawide Monitor,1,379.99,2019-06-28 15:56:00,521 Lincoln St, Los Angeles,CA,90001 +221782,USB-C Charging Cable,1,11.95,2019-06-09 12:18:00,113 Lincoln St, Los Angeles,CA,90001 +221783,Apple Airpods Headphones,1,150.0,2019-06-13 03:03:00,139 13th St, Boston,MA,02215 +221784,Wired Headphones,1,11.99,2019-06-06 11:48:00,295 Sunset St, New York City,NY,10001 +221785,USB-C Charging Cable,1,11.95,2019-06-27 00:58:00,786 7th St, Los Angeles,CA,90001 +221786,AAA Batteries (4-pack),2,2.99,2019-06-02 09:50:00,425 South St, New York City,NY,10001 +221787,20in Monitor,1,109.99,2019-06-21 20:19:00,479 Walnut St, San Francisco,CA,94016 +221788,Bose SoundSport Headphones,1,99.99,2019-06-26 10:46:00,171 Elm St, Portland,OR,97035 +221789,Bose SoundSport Headphones,1,99.99,2019-06-26 23:28:00,398 Hickory St, San Francisco,CA,94016 +221790,Flatscreen TV,1,300.0,2019-06-19 21:14:00,332 12th St, San Francisco,CA,94016 +221791,27in FHD Monitor,1,149.99,2019-06-07 11:01:00,310 Meadow St, San Francisco,CA,94016 +221791,27in 4K Gaming Monitor,1,389.99,2019-06-07 11:01:00,310 Meadow St, San Francisco,CA,94016 +221792,27in FHD Monitor,1,149.99,2019-06-27 18:08:00,919 West St, Los Angeles,CA,90001 +221793,Bose SoundSport Headphones,1,99.99,2019-06-26 09:29:00,990 Elm St, New York City,NY,10001 +221794,ThinkPad Laptop,1,999.99,2019-06-06 11:59:00,136 12th St, San Francisco,CA,94016 +221795,Bose SoundSport Headphones,1,99.99,2019-06-29 08:57:00,968 8th St, San Francisco,CA,94016 +221796,AA Batteries (4-pack),2,3.84,2019-06-05 15:59:00,392 14th St, Los Angeles,CA,90001 +221797,AAA Batteries (4-pack),1,2.99,2019-06-13 16:10:00,190 Walnut St, San Francisco,CA,94016 +221798,Lightning Charging Cable,1,14.95,2019-06-11 18:12:00,76 Spruce St, Dallas,TX,75001 +221799,27in FHD Monitor,1,149.99,2019-06-18 18:58:00,605 Ridge St, San Francisco,CA,94016 +221800,20in Monitor,1,109.99,2019-06-09 11:43:00,169 Highland St, Atlanta,GA,30301 +221801,AAA Batteries (4-pack),1,2.99,2019-06-28 00:47:00,136 Hickory St, Seattle,WA,98101 +221802,Lightning Charging Cable,1,14.95,2019-06-26 10:15:00,245 6th St, Los Angeles,CA,90001 +221803,AAA Batteries (4-pack),1,2.99,2019-06-22 22:48:00,465 Sunset St, Dallas,TX,75001 +221804,USB-C Charging Cable,1,11.95,2019-06-23 21:38:00,631 River St, Dallas,TX,75001 +221805,Apple Airpods Headphones,1,150.0,2019-06-19 21:29:00,234 Elm St, Atlanta,GA,30301 +221806,Apple Airpods Headphones,1,150.0,2019-06-29 10:04:00,324 Park St, Los Angeles,CA,90001 +221807,USB-C Charging Cable,1,11.95,2019-06-21 15:29:00,396 Highland St, Los Angeles,CA,90001 +221808,USB-C Charging Cable,1,11.95,2019-06-03 13:39:00,772 Wilson St, San Francisco,CA,94016 +221809,AA Batteries (4-pack),1,3.84,2019-06-12 18:01:00,536 Chestnut St, Austin,TX,73301 +221810,Lightning Charging Cable,1,14.95,2019-06-27 00:50:00,602 Madison St, San Francisco,CA,94016 +221811,27in 4K Gaming Monitor,1,389.99,2019-06-13 22:17:00,823 Pine St, Seattle,WA,98101 +221812,AAA Batteries (4-pack),1,2.99,2019-06-24 11:46:00,886 1st St, New York City,NY,10001 +221813,AA Batteries (4-pack),2,3.84,2019-06-05 21:15:00,684 1st St, Austin,TX,73301 +221814,Lightning Charging Cable,1,14.95,2019-06-29 14:46:00,657 2nd St, San Francisco,CA,94016 +221815,AAA Batteries (4-pack),3,2.99,2019-06-16 10:24:00,60 Madison St, Austin,TX,73301 +221816,AAA Batteries (4-pack),2,2.99,2019-06-26 16:01:00,778 5th St, Portland,OR,97035 +221817,Flatscreen TV,1,300.0,2019-06-16 12:19:00,293 6th St, Boston,MA,02215 +221818,AAA Batteries (4-pack),3,2.99,2019-06-08 20:12:00,489 Highland St, Boston,MA,02215 +221819,USB-C Charging Cable,1,11.95,2019-06-04 11:38:00,456 10th St, San Francisco,CA,94016 +221820,ThinkPad Laptop,1,999.99,2019-06-29 12:11:00,491 Center St, San Francisco,CA,94016 +221821,AA Batteries (4-pack),1,3.84,2019-06-15 14:49:00,780 Sunset St, Boston,MA,02215 +221822,Flatscreen TV,1,300.0,2019-06-15 14:55:00,853 Madison St, Los Angeles,CA,90001 +221823,AA Batteries (4-pack),1,3.84,2019-06-30 17:28:00,955 Madison St, Boston,MA,02215 +221824,AAA Batteries (4-pack),2,2.99,2019-06-17 18:12:00,374 10th St, Portland,OR,97035 +221825,iPhone,1,700.0,2019-06-18 12:41:00,694 Lake St, Los Angeles,CA,90001 +221825,Lightning Charging Cable,1,14.95,2019-06-18 12:41:00,694 Lake St, Los Angeles,CA,90001 +221826,Apple Airpods Headphones,1,150.0,2019-06-22 17:46:00,761 Lincoln St, Seattle,WA,98101 +221827,27in 4K Gaming Monitor,1,389.99,2019-06-09 08:43:00,620 Cherry St, Atlanta,GA,30301 +221828,27in 4K Gaming Monitor,1,389.99,2019-06-29 16:09:00,674 Cedar St, Atlanta,GA,30301 +221829,Bose SoundSport Headphones,1,99.99,2019-06-21 21:34:00,73 11th St, Boston,MA,02215 +221830,AA Batteries (4-pack),1,3.84,2019-06-11 12:37:00,665 Hickory St, Dallas,TX,75001 +221831,Google Phone,1,600.0,2019-06-21 21:35:00,546 Washington St, Dallas,TX,75001 +221832,AAA Batteries (4-pack),2,2.99,2019-06-01 15:28:00,657 Highland St, Boston,MA,02215 +221833,USB-C Charging Cable,1,11.95,2019-06-28 18:11:00,886 North St, San Francisco,CA,94016 +221834,Lightning Charging Cable,1,14.95,2019-06-10 15:46:00,174 9th St, San Francisco,CA,94016 +221835,iPhone,1,700.0,2019-06-03 11:40:00,162 Maple St, San Francisco,CA,94016 +221836,20in Monitor,1,109.99,2019-06-24 14:59:00,780 Center St, Austin,TX,73301 +221837,AA Batteries (4-pack),1,3.84,2019-06-19 13:53:00,97 11th St, San Francisco,CA,94016 +221838,AAA Batteries (4-pack),2,2.99,2019-06-08 09:53:00,197 Hill St, Portland,ME,04101 +221839,USB-C Charging Cable,1,11.95,2019-06-16 12:56:00,252 Dogwood St, San Francisco,CA,94016 +221840,USB-C Charging Cable,1,11.95,2019-06-21 11:12:00,513 Maple St, New York City,NY,10001 +221841,Lightning Charging Cable,1,14.95,2019-06-11 22:39:00,928 Walnut St, Portland,ME,04101 +221842,Wired Headphones,1,11.99,2019-06-14 13:03:00,929 Cherry St, Seattle,WA,98101 +221843,27in 4K Gaming Monitor,1,389.99,2019-06-09 20:11:00,421 Elm St, Seattle,WA,98101 +221844,27in FHD Monitor,1,149.99,2019-06-26 17:20:00,24 6th St, Atlanta,GA,30301 +221845,Wired Headphones,1,11.99,2019-06-06 19:19:00,925 Adams St, Los Angeles,CA,90001 +221846,Lightning Charging Cable,1,14.95,2019-06-11 15:26:00,972 Sunset St, San Francisco,CA,94016 +221847,USB-C Charging Cable,1,11.95,2019-06-24 10:43:00,356 Johnson St, Dallas,TX,75001 +221848,AAA Batteries (4-pack),1,2.99,2019-06-29 12:32:00,603 Lake St, Boston,MA,02215 +221849,USB-C Charging Cable,1,11.95,2019-06-25 18:15:00,20 Center St, Dallas,TX,75001 +221850,27in 4K Gaming Monitor,1,389.99,2019-06-10 11:19:00,56 Johnson St, Los Angeles,CA,90001 +221851,USB-C Charging Cable,1,11.95,2019-06-05 10:31:00,434 Center St, Dallas,TX,75001 +221852,27in FHD Monitor,1,149.99,2019-06-02 21:33:00,779 8th St, San Francisco,CA,94016 +221853,USB-C Charging Cable,1,11.95,2019-06-23 15:02:00,384 Main St, Dallas,TX,75001 +221854,AAA Batteries (4-pack),2,2.99,2019-06-13 16:15:00,473 10th St, Los Angeles,CA,90001 +221855,Apple Airpods Headphones,1,150.0,2019-06-30 08:07:00,38 Spruce St, San Francisco,CA,94016 +221856,AA Batteries (4-pack),1,3.84,2019-07-01 01:39:00,840 4th St, Portland,OR,97035 +221857,Lightning Charging Cable,1,14.95,2019-06-12 11:27:00,137 Main St, Los Angeles,CA,90001 +221858,27in FHD Monitor,1,149.99,2019-06-14 03:10:00,31 Cherry St, New York City,NY,10001 +221859,Apple Airpods Headphones,1,150.0,2019-06-10 13:37:00,954 Lake St, Dallas,TX,75001 +221860,AAA Batteries (4-pack),1,2.99,2019-06-11 10:04:00,280 Wilson St, New York City,NY,10001 +221861,Lightning Charging Cable,1,14.95,2019-06-29 17:50:00,806 14th St, Seattle,WA,98101 +221862,20in Monitor,1,109.99,2019-06-07 12:42:00,855 7th St, Seattle,WA,98101 +221862,USB-C Charging Cable,1,11.95,2019-06-07 12:42:00,855 7th St, Seattle,WA,98101 +221863,Bose SoundSport Headphones,1,99.99,2019-06-07 11:54:00,716 Cedar St, Los Angeles,CA,90001 +221864,USB-C Charging Cable,1,11.95,2019-06-30 11:16:00,356 5th St, Boston,MA,02215 +221865,27in 4K Gaming Monitor,1,389.99,2019-06-05 14:41:00,571 Cherry St, Seattle,WA,98101 +221866,iPhone,1,700.0,2019-06-14 15:19:00,561 Highland St, Atlanta,GA,30301 +221867,27in FHD Monitor,1,149.99,2019-06-04 20:50:00,760 South St, Los Angeles,CA,90001 +221868,AA Batteries (4-pack),1,3.84,2019-06-03 21:22:00,795 Dogwood St, Boston,MA,02215 +221869,Google Phone,1,600.0,2019-06-06 22:05:00,892 Lakeview St, New York City,NY,10001 +221869,USB-C Charging Cable,2,11.95,2019-06-06 22:05:00,892 Lakeview St, New York City,NY,10001 +221869,Wired Headphones,1,11.99,2019-06-06 22:05:00,892 Lakeview St, New York City,NY,10001 +221870,USB-C Charging Cable,1,11.95,2019-06-14 00:01:00,762 Madison St, Dallas,TX,75001 +221871,AA Batteries (4-pack),1,3.84,2019-06-18 13:58:00,398 Walnut St, Austin,TX,73301 +221872,Wired Headphones,1,11.99,2019-06-04 13:06:00,499 Park St, San Francisco,CA,94016 +221873,20in Monitor,1,109.99,2019-06-08 04:19:00,472 Main St, New York City,NY,10001 +221874,AA Batteries (4-pack),2,3.84,2019-06-07 18:54:00,7 South St, Portland,ME,04101 +221875,27in 4K Gaming Monitor,1,389.99,2019-06-09 09:54:00,269 Jefferson St, Atlanta,GA,30301 +221876,USB-C Charging Cable,1,11.95,2019-06-13 13:05:00,988 Wilson St, Los Angeles,CA,90001 +221877,34in Ultrawide Monitor,1,379.99,2019-06-08 20:24:00,168 6th St, Los Angeles,CA,90001 +221878,Lightning Charging Cable,1,14.95,2019-06-26 15:30:00,934 Ridge St, San Francisco,CA,94016 +221879,20in Monitor,1,109.99,2019-06-05 16:18:00,512 Lake St, New York City,NY,10001 +221880,27in 4K Gaming Monitor,1,389.99,2019-06-10 15:06:00,231 Park St, Los Angeles,CA,90001 +221881,USB-C Charging Cable,1,11.95,2019-06-11 12:13:00,867 12th St, San Francisco,CA,94016 +221882,AAA Batteries (4-pack),1,2.99,2019-06-25 15:25:00,843 Main St, New York City,NY,10001 +221883,Bose SoundSport Headphones,1,99.99,2019-06-06 09:57:00,374 West St, San Francisco,CA,94016 +221884,USB-C Charging Cable,1,11.95,2019-06-10 20:51:00,843 Hickory St, Los Angeles,CA,90001 +221885,Apple Airpods Headphones,1,150.0,2019-06-14 14:13:00,789 Cherry St, San Francisco,CA,94016 +221886,Wired Headphones,1,11.99,2019-06-05 14:38:00,204 South St, San Francisco,CA,94016 +221887,Apple Airpods Headphones,1,150.0,2019-06-11 08:35:00,25 9th St, Los Angeles,CA,90001 +221888,20in Monitor,1,109.99,2019-06-15 23:14:00,169 Hill St, San Francisco,CA,94016 +221889,AA Batteries (4-pack),1,3.84,2019-06-16 14:09:00,592 Maple St, New York City,NY,10001 +221890,Bose SoundSport Headphones,1,99.99,2019-06-16 21:23:00,297 North St, Boston,MA,02215 +221890,27in FHD Monitor,1,149.99,2019-06-16 21:23:00,297 North St, Boston,MA,02215 +221891,USB-C Charging Cable,1,11.95,2019-06-05 08:06:00,475 Highland St, Seattle,WA,98101 +221892,ThinkPad Laptop,1,999.99,2019-06-27 18:34:00,99 10th St, San Francisco,CA,94016 +221893,AA Batteries (4-pack),1,3.84,2019-06-06 06:20:00,208 Walnut St, Boston,MA,02215 +221894,Bose SoundSport Headphones,1,99.99,2019-06-18 05:27:00,655 Cedar St, New York City,NY,10001 +221895,Apple Airpods Headphones,1,150.0,2019-06-20 10:22:00,421 Highland St, Portland,OR,97035 +221896,USB-C Charging Cable,1,11.95,2019-06-01 14:47:00,850 Hill St, San Francisco,CA,94016 +221897,AA Batteries (4-pack),1,3.84,2019-06-09 17:08:00,541 Chestnut St, San Francisco,CA,94016 +221898,USB-C Charging Cable,1,11.95,2019-06-10 05:42:00,230 Maple St, Los Angeles,CA,90001 +221899,Vareebadd Phone,1,400.0,2019-06-04 00:06:00,814 4th St, Seattle,WA,98101 +221900,USB-C Charging Cable,1,11.95,2019-06-03 09:16:00,105 13th St, Portland,OR,97035 +221901,27in FHD Monitor,1,149.99,2019-06-06 18:05:00,634 Elm St, San Francisco,CA,94016 +221902,Lightning Charging Cable,1,14.95,2019-06-12 18:26:00,583 6th St, San Francisco,CA,94016 +221903,AAA Batteries (4-pack),1,2.99,2019-06-02 04:49:00,962 Meadow St, Los Angeles,CA,90001 +221904,Lightning Charging Cable,1,14.95,2019-06-14 13:32:00,667 13th St, Los Angeles,CA,90001 +221905,USB-C Charging Cable,1,11.95,2019-06-10 09:12:00,554 8th St, New York City,NY,10001 +221906,27in 4K Gaming Monitor,1,389.99,2019-06-27 16:22:00,927 West St, Portland,ME,04101 +221907,AAA Batteries (4-pack),1,2.99,2019-06-21 13:13:00,151 Dogwood St, Seattle,WA,98101 +221908,27in 4K Gaming Monitor,1,389.99,2019-06-03 12:19:00,564 8th St, Los Angeles,CA,90001 +221909,AAA Batteries (4-pack),2,2.99,2019-06-04 19:03:00,547 10th St, Boston,MA,02215 +221910,27in FHD Monitor,1,149.99,2019-06-17 00:22:00,420 Hickory St, Boston,MA,02215 +221911,AAA Batteries (4-pack),1,2.99,2019-06-29 16:51:00,105 8th St, San Francisco,CA,94016 +221912,34in Ultrawide Monitor,1,379.99,2019-06-23 15:16:00,980 Jefferson St, Los Angeles,CA,90001 +221913,34in Ultrawide Monitor,1,379.99,2019-06-19 04:55:00,355 Dogwood St, New York City,NY,10001 +221914,34in Ultrawide Monitor,1,379.99,2019-06-04 12:05:00,731 Forest St, Atlanta,GA,30301 +221915,Bose SoundSport Headphones,1,99.99,2019-06-06 13:38:00,953 8th St, Dallas,TX,75001 +221916,AAA Batteries (4-pack),1,2.99,2019-06-14 13:38:00,255 6th St, Los Angeles,CA,90001 +221917,Wired Headphones,1,11.99,2019-06-26 23:08:00,518 Cedar St, Austin,TX,73301 +221918,AA Batteries (4-pack),1,3.84,2019-06-07 17:09:00,298 4th St, New York City,NY,10001 +221919,Google Phone,1,600.0,2019-06-30 18:10:00,516 River St, Seattle,WA,98101 +221920,Apple Airpods Headphones,1,150.0,2019-06-03 22:53:00,578 8th St, New York City,NY,10001 +221921,ThinkPad Laptop,1,999.99,2019-06-20 19:47:00,230 Walnut St, New York City,NY,10001 +221922,34in Ultrawide Monitor,1,379.99,2019-06-03 16:31:00,26 10th St, San Francisco,CA,94016 +221923,Bose SoundSport Headphones,1,99.99,2019-06-30 14:51:00,304 Washington St, San Francisco,CA,94016 +221924,Google Phone,1,600.0,2019-06-24 17:43:00,85 11th St, San Francisco,CA,94016 +221925,Lightning Charging Cable,1,14.95,2019-06-17 13:05:00,70 Highland St, San Francisco,CA,94016 +221926,Bose SoundSport Headphones,1,99.99,2019-06-02 16:14:00,305 Highland St, San Francisco,CA,94016 +221927,AAA Batteries (4-pack),1,2.99,2019-06-16 11:43:00,764 Adams St, Los Angeles,CA,90001 +221928,AA Batteries (4-pack),1,3.84,2019-06-10 10:43:00,17 Adams St, Boston,MA,02215 +221929,AA Batteries (4-pack),1,3.84,2019-06-17 13:37:00,190 Pine St, Austin,TX,73301 +221930,AA Batteries (4-pack),2,3.84,2019-06-05 10:26:00,858 10th St, San Francisco,CA,94016 +221931,USB-C Charging Cable,1,11.95,2019-06-24 21:16:00,127 Jefferson St, Portland,OR,97035 +221932,Google Phone,1,600.0,2019-06-21 12:10:00,489 South St, Portland,OR,97035 +221932,Wired Headphones,1,11.99,2019-06-21 12:10:00,489 South St, Portland,OR,97035 +221933,Bose SoundSport Headphones,1,99.99,2019-06-27 10:20:00,876 14th St, Austin,TX,73301 +221934,LG Washing Machine,1,600.0,2019-06-19 20:14:00,7 Cedar St, Los Angeles,CA,90001 +221935,Wired Headphones,1,11.99,2019-06-24 12:33:00,295 Highland St, Dallas,TX,75001 +221936,USB-C Charging Cable,2,11.95,2019-06-08 17:29:00,662 4th St, Portland,OR,97035 +221937,Lightning Charging Cable,1,14.95,2019-06-16 08:07:00,552 West St, Atlanta,GA,30301 +221938,USB-C Charging Cable,1,11.95,2019-06-24 18:53:00,800 7th St, Dallas,TX,75001 +221939,AAA Batteries (4-pack),1,2.99,2019-06-30 11:19:00,355 12th St, New York City,NY,10001 +221940,AAA Batteries (4-pack),1,2.99,2019-06-11 11:58:00,806 Washington St, Los Angeles,CA,90001 +221941,34in Ultrawide Monitor,1,379.99,2019-06-26 14:25:00,556 Jefferson St, New York City,NY,10001 +221942,AA Batteries (4-pack),1,3.84,2019-06-03 21:02:00,129 Wilson St, San Francisco,CA,94016 +221943,USB-C Charging Cable,1,11.95,2019-06-07 10:45:00,461 North St, New York City,NY,10001 +221944,Bose SoundSport Headphones,1,99.99,2019-06-09 13:52:00,259 6th St, Boston,MA,02215 +221945,USB-C Charging Cable,1,11.95,2019-06-08 22:53:00,98 2nd St, Austin,TX,73301 +221946,Flatscreen TV,1,300.0,2019-06-08 16:19:00,177 Ridge St, San Francisco,CA,94016 +221947,Wired Headphones,1,11.99,2019-06-12 16:14:00,696 Maple St, San Francisco,CA,94016 +221948,Lightning Charging Cable,1,14.95,2019-06-14 09:56:00,365 Walnut St, Boston,MA,02215 +221949,USB-C Charging Cable,1,11.95,2019-06-18 15:41:00,187 Church St, Austin,TX,73301 +221950,Lightning Charging Cable,1,14.95,2019-06-30 12:29:00,94 Maple St, Los Angeles,CA,90001 +221951,AA Batteries (4-pack),3,3.84,2019-06-12 23:26:00,212 Lakeview St, Atlanta,GA,30301 +221952,Lightning Charging Cable,1,14.95,2019-06-19 03:29:00,556 Madison St, New York City,NY,10001 +221953,27in FHD Monitor,1,149.99,2019-06-18 11:53:00,51 North St, Los Angeles,CA,90001 +221954,AAA Batteries (4-pack),2,2.99,2019-06-02 12:58:00,917 12th St, San Francisco,CA,94016 +221955,Macbook Pro Laptop,1,1700.0,2019-06-17 12:59:00,539 4th St, Dallas,TX,75001 +221956,Apple Airpods Headphones,1,150.0,2019-06-06 15:03:00,302 1st St, New York City,NY,10001 +221957,iPhone,1,700.0,2019-06-04 11:07:00,440 Church St, Dallas,TX,75001 +221958,Bose SoundSport Headphones,1,99.99,2019-06-15 11:19:00,140 Madison St, Atlanta,GA,30301 +221959,USB-C Charging Cable,1,11.95,2019-06-28 07:24:00,607 Pine St, Los Angeles,CA,90001 +221960,Google Phone,1,600.0,2019-06-24 21:37:00,657 Lake St, Dallas,TX,75001 +221960,USB-C Charging Cable,1,11.95,2019-06-24 21:37:00,657 Lake St, Dallas,TX,75001 +221961,iPhone,1,700.0,2019-06-01 11:21:00,51 Hill St, Atlanta,GA,30301 +221962,Wired Headphones,1,11.99,2019-06-29 21:51:00,429 Hill St, Atlanta,GA,30301 +221963,AA Batteries (4-pack),1,3.84,2019-06-14 16:12:00,753 14th St, Los Angeles,CA,90001 +221964,Wired Headphones,1,11.99,2019-06-18 03:30:00,799 Highland St, Seattle,WA,98101 +221965,AAA Batteries (4-pack),1,2.99,2019-06-26 21:30:00,691 Ridge St, Portland,OR,97035 +221966,Flatscreen TV,1,300.0,2019-06-19 21:07:00,326 Washington St, Seattle,WA,98101 +221967,ThinkPad Laptop,1,999.99,2019-06-13 00:11:00,735 Chestnut St, Seattle,WA,98101 +221968,USB-C Charging Cable,1,11.95,2019-06-28 18:35:00,500 Jackson St, Seattle,WA,98101 +221969,ThinkPad Laptop,1,999.99,2019-06-14 10:34:00,336 13th St, Boston,MA,02215 +221970,AAA Batteries (4-pack),2,2.99,2019-06-22 12:54:00,213 Center St, Austin,TX,73301 +221971,27in FHD Monitor,1,149.99,2019-06-16 17:05:00,692 Highland St, Boston,MA,02215 +221972,Wired Headphones,1,11.99,2019-06-04 08:05:00,189 8th St, Dallas,TX,75001 +221973,Bose SoundSport Headphones,1,99.99,2019-06-08 22:55:00,464 Madison St, Portland,ME,04101 +221974,Apple Airpods Headphones,1,150.0,2019-06-19 15:16:00,489 9th St, New York City,NY,10001 +221975,AAA Batteries (4-pack),1,2.99,2019-06-01 18:10:00,985 Spruce St, San Francisco,CA,94016 +221976,Apple Airpods Headphones,1,150.0,2019-06-11 20:21:00,992 Pine St, Boston,MA,02215 +221977,USB-C Charging Cable,1,11.95,2019-06-26 10:34:00,739 West St, Dallas,TX,75001 +221978,USB-C Charging Cable,1,11.95,2019-06-01 16:11:00,84 13th St, New York City,NY,10001 +221979,27in FHD Monitor,1,149.99,2019-06-26 14:53:00,18 Forest St, San Francisco,CA,94016 +221980,Lightning Charging Cable,1,14.95,2019-06-13 22:05:00,959 Lakeview St, Los Angeles,CA,90001 +221980,Apple Airpods Headphones,1,150.0,2019-06-13 22:05:00,959 Lakeview St, Los Angeles,CA,90001 +221981,Wired Headphones,1,11.99,2019-06-09 14:23:00,31 10th St, Los Angeles,CA,90001 +221982,Wired Headphones,1,11.99,2019-06-15 15:58:00,887 Center St, Boston,MA,02215 +221983,Lightning Charging Cable,1,14.95,2019-06-25 15:21:00,797 Highland St, Los Angeles,CA,90001 +221984,Macbook Pro Laptop,1,1700.0,2019-06-14 21:07:00,658 4th St, Seattle,WA,98101 +221985,Macbook Pro Laptop,1,1700.0,2019-06-14 21:53:00,707 Adams St, Seattle,WA,98101 +221986,Lightning Charging Cable,1,14.95,2019-06-19 14:19:00,235 10th St, Atlanta,GA,30301 +221987,LG Dryer,1,600.0,2019-06-29 00:09:00,700 Maple St, Boston,MA,02215 +221988,Flatscreen TV,1,300.0,2019-06-30 10:16:00,790 5th St, Atlanta,GA,30301 +221989,USB-C Charging Cable,1,11.95,2019-06-04 17:58:00,207 Willow St, San Francisco,CA,94016 +221990,Macbook Pro Laptop,1,1700.0,2019-06-18 18:12:00,789 Meadow St, Boston,MA,02215 +221991,Apple Airpods Headphones,1,150.0,2019-06-12 12:13:00,510 9th St, Atlanta,GA,30301 +221992,Lightning Charging Cable,1,14.95,2019-06-06 18:20:00,508 Adams St, New York City,NY,10001 +221993,27in 4K Gaming Monitor,1,389.99,2019-06-15 11:43:00,2 Hill St, San Francisco,CA,94016 +221994,AA Batteries (4-pack),1,3.84,2019-06-14 15:19:00,216 9th St, New York City,NY,10001 +221995,ThinkPad Laptop,1,999.99,2019-06-18 17:11:00,537 Church St, San Francisco,CA,94016 +221996,iPhone,1,700.0,2019-06-20 20:00:00,217 Meadow St, Dallas,TX,75001 +221996,Apple Airpods Headphones,1,150.0,2019-06-20 20:00:00,217 Meadow St, Dallas,TX,75001 +221997,USB-C Charging Cable,1,11.95,2019-06-30 10:06:00,49 Jefferson St, San Francisco,CA,94016 +221998,Apple Airpods Headphones,1,150.0,2019-06-05 18:27:00,14 Center St, Dallas,TX,75001 +221999,27in FHD Monitor,1,149.99,2019-06-18 11:59:00,933 Dogwood St, Dallas,TX,75001 +222000,AAA Batteries (4-pack),1,2.99,2019-06-03 18:34:00,227 14th St, Boston,MA,02215 +222001,USB-C Charging Cable,1,11.95,2019-06-19 23:00:00,243 Jackson St, Portland,OR,97035 +222002,Macbook Pro Laptop,1,1700.0,2019-06-05 20:56:00,432 13th St, San Francisco,CA,94016 +222003,AAA Batteries (4-pack),1,2.99,2019-06-15 18:32:00,300 Jefferson St, Boston,MA,02215 +222004,Apple Airpods Headphones,1,150.0,2019-06-02 21:56:00,26 1st St, Dallas,TX,75001 +222005,Flatscreen TV,1,300.0,2019-06-17 01:42:00,653 5th St, Los Angeles,CA,90001 +222006,Apple Airpods Headphones,1,150.0,2019-06-26 20:08:00,885 Lake St, San Francisco,CA,94016 +222007,AAA Batteries (4-pack),1,2.99,2019-06-22 20:24:00,317 Chestnut St, New York City,NY,10001 +222008,Bose SoundSport Headphones,1,99.99,2019-06-30 22:30:00,767 Madison St, Seattle,WA,98101 +222009,Wired Headphones,1,11.99,2019-06-08 20:07:00,790 Church St, New York City,NY,10001 +222010,USB-C Charging Cable,1,11.95,2019-06-21 15:51:00,729 Johnson St, Dallas,TX,75001 +222011,AAA Batteries (4-pack),2,2.99,2019-06-26 08:19:00,877 Highland St, Boston,MA,02215 +222012,Bose SoundSport Headphones,1,99.99,2019-06-21 12:41:00,262 Sunset St, Los Angeles,CA,90001 +222013,Wired Headphones,1,11.99,2019-06-26 18:32:00,406 Pine St, Boston,MA,02215 +222014,AAA Batteries (4-pack),1,2.99,2019-06-04 19:05:00,205 Meadow St, New York City,NY,10001 +222015,Bose SoundSport Headphones,1,99.99,2019-06-03 11:35:00,699 10th St, Los Angeles,CA,90001 +222016,27in 4K Gaming Monitor,1,389.99,2019-06-24 19:22:00,12 Maple St, Los Angeles,CA,90001 +222017,AA Batteries (4-pack),1,3.84,2019-06-20 10:16:00,159 Forest St, San Francisco,CA,94016 +222018,Lightning Charging Cable,1,14.95,2019-06-21 01:57:00,955 5th St, New York City,NY,10001 +222019,Google Phone,1,600.0,2019-06-08 05:45:00,617 Highland St, Los Angeles,CA,90001 +222020,USB-C Charging Cable,1,11.95,2019-06-06 21:10:00,984 Jackson St, Austin,TX,73301 +222021,34in Ultrawide Monitor,1,379.99,2019-06-17 16:25:00,632 10th St, Los Angeles,CA,90001 +222022,20in Monitor,1,109.99,2019-06-30 08:24:00,238 13th St, Dallas,TX,75001 +222023,AAA Batteries (4-pack),2,2.99,2019-06-27 06:20:00,801 9th St, Los Angeles,CA,90001 +222024,Bose SoundSport Headphones,1,99.99,2019-06-21 15:28:00,485 9th St, New York City,NY,10001 +222025,27in FHD Monitor,1,149.99,2019-06-15 20:06:00,511 Lakeview St, Austin,TX,73301 +222026,AAA Batteries (4-pack),1,2.99,2019-06-06 20:49:00,61 South St, Los Angeles,CA,90001 +222027,AAA Batteries (4-pack),1,2.99,2019-06-06 10:12:00,654 River St, San Francisco,CA,94016 +222028,Bose SoundSport Headphones,1,99.99,2019-06-11 19:10:00,647 Jefferson St, Seattle,WA,98101 +222029,Lightning Charging Cable,1,14.95,2019-06-28 11:01:00,910 Chestnut St, San Francisco,CA,94016 +222030,AA Batteries (4-pack),1,3.84,2019-06-21 19:34:00,11 Adams St, San Francisco,CA,94016 +222031,AA Batteries (4-pack),1,3.84,2019-06-01 15:21:00,954 Madison St, Dallas,TX,75001 +222032,AA Batteries (4-pack),1,3.84,2019-06-17 22:31:00,46 Park St, San Francisco,CA,94016 +222033,AAA Batteries (4-pack),2,2.99,2019-06-18 21:22:00,204 1st St, New York City,NY,10001 +222034,AA Batteries (4-pack),3,3.84,2019-06-21 13:10:00,125 Johnson St, San Francisco,CA,94016 +222035,Lightning Charging Cable,2,14.95,2019-06-23 23:00:00,143 Walnut St, New York City,NY,10001 +222036,AAA Batteries (4-pack),1,2.99,2019-06-12 14:30:00,315 Hill St, San Francisco,CA,94016 +222037,AAA Batteries (4-pack),3,2.99,2019-06-05 13:27:00,697 Chestnut St, Seattle,WA,98101 +222038,Wired Headphones,1,11.99,2019-06-20 19:45:00,226 12th St, Portland,OR,97035 +222039,AA Batteries (4-pack),1,3.84,2019-06-16 09:49:00,698 North St, Los Angeles,CA,90001 +222040,Wired Headphones,1,11.99,2019-06-19 21:24:00,337 Jefferson St, New York City,NY,10001 +222041,27in FHD Monitor,1,149.99,2019-06-18 21:20:00,776 North St, Los Angeles,CA,90001 +222042,Google Phone,1,600.0,2019-06-27 19:19:00,175 South St, Austin,TX,73301 +222043,USB-C Charging Cable,1,11.95,2019-06-30 11:52:00,793 1st St, Boston,MA,02215 +222044,AA Batteries (4-pack),1,3.84,2019-06-10 05:49:00,446 Pine St, Atlanta,GA,30301 +222045,Wired Headphones,1,11.99,2019-06-30 15:45:00,308 10th St, Atlanta,GA,30301 +222046,27in FHD Monitor,1,149.99,2019-06-19 09:50:00,670 Highland St, San Francisco,CA,94016 +222047,LG Dryer,1,600.0,2019-06-10 22:50:00,223 Jefferson St, Los Angeles,CA,90001 +222048,27in 4K Gaming Monitor,1,389.99,2019-06-15 08:14:00,879 Sunset St, Los Angeles,CA,90001 +222049,Wired Headphones,1,11.99,2019-06-28 16:08:00,890 Maple St, San Francisco,CA,94016 +222050,20in Monitor,1,109.99,2019-06-03 16:52:00,31 Forest St, Austin,TX,73301 +222051,Apple Airpods Headphones,1,150.0,2019-06-28 08:48:00,575 Adams St, New York City,NY,10001 +222052,AA Batteries (4-pack),1,3.84,2019-06-27 16:41:00,254 Washington St, Boston,MA,02215 +222053,Macbook Pro Laptop,1,1700.0,2019-06-29 17:24:00,515 Lakeview St, Boston,MA,02215 +222054,AA Batteries (4-pack),1,3.84,2019-06-13 19:58:00,933 Johnson St, San Francisco,CA,94016 +222055,Wired Headphones,2,11.99,2019-06-26 04:30:00,614 9th St, Boston,MA,02215 +222056,USB-C Charging Cable,1,11.95,2019-06-11 17:16:00,367 Center St, Atlanta,GA,30301 +222057,USB-C Charging Cable,1,11.95,2019-06-02 11:26:00,452 Wilson St, Los Angeles,CA,90001 +222058,Google Phone,1,600.0,2019-06-15 08:46:00,918 14th St, New York City,NY,10001 +222058,USB-C Charging Cable,1,11.95,2019-06-15 08:46:00,918 14th St, New York City,NY,10001 +222059,Lightning Charging Cable,1,14.95,2019-06-17 20:16:00,106 Hill St, Los Angeles,CA,90001 +222060,AAA Batteries (4-pack),1,2.99,2019-06-01 08:54:00,44 Cedar St, New York City,NY,10001 +222061,AAA Batteries (4-pack),1,2.99,2019-06-10 22:45:00,163 Spruce St, Los Angeles,CA,90001 +222062,USB-C Charging Cable,1,11.95,2019-06-28 16:30:00,834 Park St, Dallas,TX,75001 +222063,20in Monitor,1,109.99,2019-06-09 14:35:00,536 Sunset St, San Francisco,CA,94016 +222064,Lightning Charging Cable,1,14.95,2019-06-04 06:39:00,991 Walnut St, San Francisco,CA,94016 +222065,iPhone,1,700.0,2019-06-16 11:55:00,476 8th St, Portland,OR,97035 +222065,Wired Headphones,1,11.99,2019-06-16 11:55:00,476 8th St, Portland,OR,97035 +222066,AA Batteries (4-pack),1,3.84,2019-06-25 08:51:00,108 Lincoln St, New York City,NY,10001 +222067,Wired Headphones,1,11.99,2019-06-16 16:09:00,393 Meadow St, Portland,OR,97035 +222068,USB-C Charging Cable,1,11.95,2019-06-25 12:32:00,144 Walnut St, Atlanta,GA,30301 +222068,Wired Headphones,1,11.99,2019-06-25 12:32:00,144 Walnut St, Atlanta,GA,30301 +222069,AAA Batteries (4-pack),2,2.99,2019-06-26 20:03:00,936 4th St, Dallas,TX,75001 +222070,USB-C Charging Cable,1,11.95,2019-06-25 08:10:00,126 Adams St, New York City,NY,10001 +222071,AA Batteries (4-pack),2,3.84,2019-06-09 17:14:00,368 13th St, Portland,OR,97035 +222072,Google Phone,1,600.0,2019-06-16 19:44:00,458 Center St, Seattle,WA,98101 +222073,AA Batteries (4-pack),1,3.84,2019-06-19 16:13:00,643 2nd St, San Francisco,CA,94016 +222074,27in FHD Monitor,1,149.99,2019-06-07 16:40:00,292 Lake St, Los Angeles,CA,90001 +222075,34in Ultrawide Monitor,1,379.99,2019-06-02 22:50:00,880 Johnson St, Atlanta,GA,30301 +222076,ThinkPad Laptop,1,999.99,2019-07-01 00:52:00,878 Park St, Dallas,TX,75001 +222077,Wired Headphones,1,11.99,2019-06-17 07:13:00,61 Lincoln St, Atlanta,GA,30301 +222078,USB-C Charging Cable,1,11.95,2019-06-05 13:17:00,71 North St, New York City,NY,10001 +222079,ThinkPad Laptop,1,999.99,2019-06-06 13:00:00,839 Hill St, Austin,TX,73301 +222080,AA Batteries (4-pack),1,3.84,2019-06-01 13:02:00,553 8th St, Los Angeles,CA,90001 +222081,Apple Airpods Headphones,1,150.0,2019-06-12 08:18:00,846 Elm St, San Francisco,CA,94016 +222082,AAA Batteries (4-pack),3,2.99,2019-06-18 07:48:00,320 River St, Dallas,TX,75001 +222083,AAA Batteries (4-pack),2,2.99,2019-06-15 09:07:00,88 Center St, Boston,MA,02215 +222084,Apple Airpods Headphones,1,150.0,2019-06-03 13:19:00,899 1st St, New York City,NY,10001 +222085,AA Batteries (4-pack),1,3.84,2019-06-13 12:39:00,68 Church St, San Francisco,CA,94016 +222086,Lightning Charging Cable,1,14.95,2019-06-11 21:35:00,721 Lakeview St, Dallas,TX,75001 +222087,Wired Headphones,1,11.99,2019-06-29 06:14:00,586 West St, Portland,OR,97035 +222088,USB-C Charging Cable,3,11.95,2019-06-24 21:07:00,975 Pine St, Los Angeles,CA,90001 +222089,iPhone,1,700.0,2019-06-19 23:38:00,195 Madison St, Los Angeles,CA,90001 +222090,Wired Headphones,2,11.99,2019-06-05 09:28:00,404 7th St, Atlanta,GA,30301 +222091,AAA Batteries (4-pack),1,2.99,2019-06-13 12:27:00,546 Adams St, New York City,NY,10001 +222092,Wired Headphones,1,11.99,2019-06-30 13:49:00,424 Madison St, Seattle,WA,98101 +222093,Bose SoundSport Headphones,1,99.99,2019-06-22 17:55:00,639 River St, Atlanta,GA,30301 +222094,Google Phone,1,600.0,2019-06-02 17:14:00,669 13th St, Los Angeles,CA,90001 +222095,AAA Batteries (4-pack),2,2.99,2019-06-22 07:10:00,928 Pine St, Los Angeles,CA,90001 +222096,Wired Headphones,1,11.99,2019-06-04 16:29:00,10 1st St, Los Angeles,CA,90001 +222097,Bose SoundSport Headphones,1,99.99,2019-06-01 11:03:00,129 Walnut St, San Francisco,CA,94016 +222098,27in 4K Gaming Monitor,1,389.99,2019-06-06 07:47:00,890 Wilson St, New York City,NY,10001 +222099,AA Batteries (4-pack),1,3.84,2019-06-27 15:29:00,568 Chestnut St, Boston,MA,02215 +222100,34in Ultrawide Monitor,1,379.99,2019-06-23 20:59:00,624 12th St, San Francisco,CA,94016 +222101,USB-C Charging Cable,1,11.95,2019-06-01 17:16:00,793 Spruce St, San Francisco,CA,94016 +222102,Macbook Pro Laptop,1,1700.0,2019-06-29 18:29:00,344 Meadow St, San Francisco,CA,94016 +222103,AAA Batteries (4-pack),1,2.99,2019-06-01 20:04:00,783 Center St, Los Angeles,CA,90001 +222104,Lightning Charging Cable,1,14.95,2019-06-02 09:07:00,783 Walnut St, San Francisco,CA,94016 +222104,Bose SoundSport Headphones,1,99.99,2019-06-02 09:07:00,783 Walnut St, San Francisco,CA,94016 +222105,Lightning Charging Cable,1,14.95,2019-06-28 16:03:00,40 River St, San Francisco,CA,94016 +222106,ThinkPad Laptop,1,999.99,2019-06-25 10:07:00,898 Jefferson St, Portland,OR,97035 +222107,Apple Airpods Headphones,1,150.0,2019-06-03 18:48:00,983 Hill St, San Francisco,CA,94016 +222108,Flatscreen TV,1,300.0,2019-06-29 12:10:00,327 8th St, Los Angeles,CA,90001 +222109,Macbook Pro Laptop,1,1700.0,2019-06-20 13:50:00,88 Johnson St, San Francisco,CA,94016 +222110,iPhone,1,700.0,2019-06-10 21:05:00,951 Hill St, Boston,MA,02215 +222110,Wired Headphones,2,11.99,2019-06-10 21:05:00,951 Hill St, Boston,MA,02215 +222111,27in FHD Monitor,1,149.99,2019-06-21 18:20:00,431 Adams St, Seattle,WA,98101 +222112,Google Phone,1,600.0,2019-06-08 13:50:00,163 4th St, San Francisco,CA,94016 +222113,Bose SoundSport Headphones,1,99.99,2019-06-09 14:05:00,928 Sunset St, Seattle,WA,98101 +222114,USB-C Charging Cable,1,11.95,2019-06-12 12:58:00,660 Pine St, Boston,MA,02215 +222115,AA Batteries (4-pack),1,3.84,2019-06-01 14:33:00,366 1st St, Atlanta,GA,30301 +222116,Lightning Charging Cable,1,14.95,2019-06-21 13:36:00,718 12th St, Los Angeles,CA,90001 +222117,Bose SoundSport Headphones,1,99.99,2019-06-01 22:12:00,17 Washington St, Seattle,WA,98101 +222118,27in FHD Monitor,1,149.99,2019-06-22 16:09:00,40 Maple St, Los Angeles,CA,90001 +222119,iPhone,1,700.0,2019-06-30 10:13:00,21 Meadow St, Seattle,WA,98101 +222119,Lightning Charging Cable,1,14.95,2019-06-30 10:13:00,21 Meadow St, Seattle,WA,98101 +222120,Wired Headphones,1,11.99,2019-06-19 19:41:00,710 Meadow St, San Francisco,CA,94016 +222121,AAA Batteries (4-pack),2,2.99,2019-06-24 21:59:00,245 Chestnut St, Dallas,TX,75001 +222122,ThinkPad Laptop,1,999.99,2019-06-14 09:51:00,270 Cherry St, San Francisco,CA,94016 +222123,AA Batteries (4-pack),2,3.84,2019-06-20 14:39:00,774 Cedar St, Seattle,WA,98101 +222124,USB-C Charging Cable,1,11.95,2019-06-18 08:44:00,324 Willow St, Los Angeles,CA,90001 +222125,USB-C Charging Cable,1,11.95,2019-06-12 17:19:00,72 Jackson St, Los Angeles,CA,90001 +222126,USB-C Charging Cable,1,11.95,2019-06-13 23:24:00,862 Lake St, Austin,TX,73301 +222127,Wired Headphones,1,11.99,2019-06-04 21:20:00,938 Dogwood St, San Francisco,CA,94016 +222128,AAA Batteries (4-pack),1,2.99,2019-06-08 14:42:00,337 10th St, Atlanta,GA,30301 +222129,27in FHD Monitor,1,149.99,2019-06-12 10:16:00,311 Lincoln St, Los Angeles,CA,90001 +222130,27in 4K Gaming Monitor,1,389.99,2019-06-03 15:31:00,179 Elm St, San Francisco,CA,94016 +222131,iPhone,1,700.0,2019-06-11 09:30:00,701 8th St, San Francisco,CA,94016 +222132,USB-C Charging Cable,1,11.95,2019-06-27 18:51:00,7 2nd St, Los Angeles,CA,90001 +222133,Wired Headphones,1,11.99,2019-06-07 22:43:00,870 8th St, Los Angeles,CA,90001 +222134,Macbook Pro Laptop,1,1700.0,2019-06-03 15:39:00,581 Adams St, Austin,TX,73301 +222135,AAA Batteries (4-pack),1,2.99,2019-06-12 06:56:00,530 6th St, Los Angeles,CA,90001 +222136,Wired Headphones,1,11.99,2019-06-06 11:44:00,797 Maple St, Dallas,TX,75001 +222137,Apple Airpods Headphones,1,150.0,2019-06-21 11:46:00,691 Cherry St, Seattle,WA,98101 +222138,Flatscreen TV,1,300.0,2019-06-07 20:23:00,287 Walnut St, San Francisco,CA,94016 +222139,USB-C Charging Cable,1,11.95,2019-06-24 20:11:00,525 Park St, Portland,OR,97035 +222140,Google Phone,1,600.0,2019-06-09 15:57:00,535 14th St, San Francisco,CA,94016 +222141,AAA Batteries (4-pack),1,2.99,2019-06-10 21:28:00,396 South St, Dallas,TX,75001 +222142,AA Batteries (4-pack),2,3.84,2019-06-15 13:40:00,849 Meadow St, Boston,MA,02215 +222143,Macbook Pro Laptop,1,1700.0,2019-06-18 18:42:00,425 Elm St, San Francisco,CA,94016 +222144,AAA Batteries (4-pack),1,2.99,2019-06-27 16:05:00,789 Ridge St, New York City,NY,10001 +222145,AA Batteries (4-pack),1,3.84,2019-06-05 13:39:00,952 Lakeview St, Los Angeles,CA,90001 +222146,Lightning Charging Cable,1,14.95,2019-06-11 09:55:00,247 Jackson St, Los Angeles,CA,90001 +222147,Lightning Charging Cable,1,14.95,2019-06-16 14:38:00,849 Park St, Atlanta,GA,30301 +222148,Flatscreen TV,1,300.0,2019-06-07 13:27:00,8 North St, San Francisco,CA,94016 +222149,Lightning Charging Cable,1,14.95,2019-06-13 06:45:00,71 North St, Austin,TX,73301 +222150,27in FHD Monitor,1,149.99,2019-06-28 15:50:00,579 5th St, Boston,MA,02215 +222151,Lightning Charging Cable,1,14.95,2019-06-03 18:10:00,101 4th St, Atlanta,GA,30301 +222152,Wired Headphones,1,11.99,2019-06-08 20:34:00,244 7th St, New York City,NY,10001 +222153,27in FHD Monitor,1,149.99,2019-06-06 21:37:00,989 Wilson St, San Francisco,CA,94016 +222154,AA Batteries (4-pack),1,3.84,2019-06-27 11:05:00,718 Jefferson St, Seattle,WA,98101 +222155,Lightning Charging Cable,1,14.95,2019-06-27 22:17:00,874 Walnut St, Los Angeles,CA,90001 +222156,Macbook Pro Laptop,1,1700.0,2019-06-06 21:53:00,277 9th St, San Francisco,CA,94016 +222157,Lightning Charging Cable,2,14.95,2019-06-29 15:16:00,171 10th St, Boston,MA,02215 +222157,ThinkPad Laptop,1,999.99,2019-06-29 15:16:00,171 10th St, Boston,MA,02215 +222158,Lightning Charging Cable,1,14.95,2019-06-09 11:47:00,37 Maple St, Los Angeles,CA,90001 +222159,Apple Airpods Headphones,1,150.0,2019-06-23 13:05:00,342 11th St, Los Angeles,CA,90001 +222160,Wired Headphones,1,11.99,2019-06-11 17:53:00,673 Spruce St, Atlanta,GA,30301 +222161,27in FHD Monitor,1,149.99,2019-06-16 09:15:00,565 Hickory St, San Francisco,CA,94016 +222162,AAA Batteries (4-pack),1,2.99,2019-06-17 17:37:00,668 5th St, Los Angeles,CA,90001 +222163,AA Batteries (4-pack),2,3.84,2019-06-15 18:18:00,307 Maple St, San Francisco,CA,94016 +222164,Lightning Charging Cable,1,14.95,2019-06-05 05:35:00,847 West St, Los Angeles,CA,90001 +222165,LG Dryer,1,600.0,2019-06-04 11:12:00,970 13th St, Los Angeles,CA,90001 +222166,AAA Batteries (4-pack),3,2.99,2019-06-11 21:41:00,642 Elm St, Austin,TX,73301 +222167,20in Monitor,1,109.99,2019-06-16 19:59:00,464 11th St, San Francisco,CA,94016 +222168,USB-C Charging Cable,1,11.95,2019-06-28 06:04:00,897 13th St, San Francisco,CA,94016 +222169,Lightning Charging Cable,1,14.95,2019-06-05 22:11:00,146 Sunset St, Boston,MA,02215 +222170,iPhone,1,700.0,2019-06-09 13:22:00,142 9th St, New York City,NY,10001 +222171,27in FHD Monitor,1,149.99,2019-06-29 19:18:00,797 Willow St, San Francisco,CA,94016 +222172,Wired Headphones,1,11.99,2019-06-23 11:13:00,839 12th St, Los Angeles,CA,90001 +222173,USB-C Charging Cable,1,11.95,2019-06-16 21:18:00,846 Center St, San Francisco,CA,94016 +222174,Macbook Pro Laptop,1,1700.0,2019-06-04 15:59:00,576 Lincoln St, Portland,OR,97035 +222175,Lightning Charging Cable,1,14.95,2019-06-09 11:53:00,797 13th St, Austin,TX,73301 +222176,Lightning Charging Cable,1,14.95,2019-06-13 17:47:00,172 Spruce St, Los Angeles,CA,90001 +222177,AAA Batteries (4-pack),1,2.99,2019-06-06 16:29:00,396 Willow St, San Francisco,CA,94016 +222178,27in 4K Gaming Monitor,1,389.99,2019-06-10 22:06:00,642 Washington St, Boston,MA,02215 +222179,Flatscreen TV,1,300.0,2019-06-14 18:26:00,857 Park St, Dallas,TX,75001 +222180,Lightning Charging Cable,1,14.95,2019-06-30 15:00:00,541 Park St, San Francisco,CA,94016 +222181,Wired Headphones,1,11.99,2019-06-23 14:35:00,589 9th St, Los Angeles,CA,90001 +222182,Macbook Pro Laptop,1,1700.0,2019-06-21 18:47:00,344 Dogwood St, San Francisco,CA,94016 +222183,Lightning Charging Cable,1,14.95,2019-06-12 21:47:00,646 Meadow St, Los Angeles,CA,90001 +222184,Flatscreen TV,1,300.0,2019-06-25 11:35:00,916 Center St, Los Angeles,CA,90001 +222185,USB-C Charging Cable,1,11.95,2019-06-10 19:15:00,547 Cedar St, San Francisco,CA,94016 +222186,AA Batteries (4-pack),1,3.84,2019-06-21 15:17:00,748 10th St, San Francisco,CA,94016 +222187,Macbook Pro Laptop,1,1700.0,2019-06-27 10:15:00,700 Lincoln St, Seattle,WA,98101 +222188,AAA Batteries (4-pack),2,2.99,2019-06-19 19:09:00,7 Walnut St, San Francisco,CA,94016 +222189,USB-C Charging Cable,1,11.95,2019-06-02 11:56:00,866 Lincoln St, Austin,TX,73301 +222190,Wired Headphones,1,11.99,2019-06-19 19:16:00,125 Wilson St, Portland,OR,97035 +222191,Apple Airpods Headphones,1,150.0,2019-06-15 23:41:00,812 West St, Dallas,TX,75001 +222192,Apple Airpods Headphones,1,150.0,2019-06-26 08:54:00,465 Meadow St, Dallas,TX,75001 +222192,AAA Batteries (4-pack),1,2.99,2019-06-26 08:54:00,465 Meadow St, Dallas,TX,75001 +222193,Bose SoundSport Headphones,1,99.99,2019-06-02 21:40:00,981 Cedar St, Portland,ME,04101 +222194,Bose SoundSport Headphones,1,99.99,2019-06-13 08:54:00,112 West St, San Francisco,CA,94016 +222195,Apple Airpods Headphones,1,150.0,2019-06-25 23:03:00,916 1st St, Portland,OR,97035 +222196,ThinkPad Laptop,1,999.99,2019-06-11 19:35:00,781 Jackson St, Boston,MA,02215 +222197,AAA Batteries (4-pack),2,2.99,2019-06-03 23:24:00,275 Lincoln St, San Francisco,CA,94016 +222198,Lightning Charging Cable,1,14.95,2019-06-20 15:19:00,978 Cedar St, San Francisco,CA,94016 +222199,Lightning Charging Cable,1,14.95,2019-06-07 03:39:00,871 Hill St, Los Angeles,CA,90001 +222200,Apple Airpods Headphones,1,150.0,2019-06-25 18:18:00,218 Spruce St, Boston,MA,02215 +222201,Bose SoundSport Headphones,1,99.99,2019-06-30 12:21:00,350 Walnut St, New York City,NY,10001 +222202,ThinkPad Laptop,1,999.99,2019-06-30 12:00:00,229 Cedar St, San Francisco,CA,94016 +222203,Apple Airpods Headphones,1,150.0,2019-06-21 16:40:00,890 Willow St, Dallas,TX,75001 +222204,34in Ultrawide Monitor,1,379.99,2019-06-15 18:53:00,921 Maple St, San Francisco,CA,94016 +222205,USB-C Charging Cable,1,11.95,2019-06-23 18:22:00,413 Sunset St, Boston,MA,02215 +222205,AAA Batteries (4-pack),1,2.99,2019-06-23 18:22:00,413 Sunset St, Boston,MA,02215 +222206,AA Batteries (4-pack),1,3.84,2019-06-20 21:48:00,190 Johnson St, San Francisco,CA,94016 +222207,iPhone,1,700.0,2019-06-22 14:35:00,859 Meadow St, Austin,TX,73301 +222208,Wired Headphones,1,11.99,2019-06-08 21:48:00,790 10th St, New York City,NY,10001 +222209,AAA Batteries (4-pack),1,2.99,2019-06-22 12:58:00,131 5th St, Boston,MA,02215 +222210,USB-C Charging Cable,1,11.95,2019-06-12 16:22:00,615 Cedar St, New York City,NY,10001 +222211,34in Ultrawide Monitor,1,379.99,2019-06-02 09:59:00,163 Elm St, San Francisco,CA,94016 +222212,AA Batteries (4-pack),1,3.84,2019-06-01 14:27:00,428 Madison St, New York City,NY,10001 +222213,AA Batteries (4-pack),1,3.84,2019-06-23 11:52:00,189 Ridge St, San Francisco,CA,94016 +222214,AAA Batteries (4-pack),1,2.99,2019-06-18 10:54:00,795 Spruce St, New York City,NY,10001 +222215,iPhone,1,700.0,2019-06-21 11:36:00,563 4th St, Los Angeles,CA,90001 +222216,Lightning Charging Cable,1,14.95,2019-06-28 16:06:00,451 4th St, San Francisco,CA,94016 +222217,34in Ultrawide Monitor,1,379.99,2019-06-04 20:59:00,823 2nd St, Austin,TX,73301 +222218,27in 4K Gaming Monitor,1,389.99,2019-06-15 17:34:00,737 Meadow St, Portland,OR,97035 +222219,Wired Headphones,1,11.99,2019-06-18 14:50:00,394 12th St, Portland,OR,97035 +222220,Lightning Charging Cable,1,14.95,2019-06-18 22:40:00,744 Hill St, New York City,NY,10001 +222221,Vareebadd Phone,1,400.0,2019-06-07 16:28:00,79 Washington St, Atlanta,GA,30301 +222221,USB-C Charging Cable,1,11.95,2019-06-07 16:28:00,79 Washington St, Atlanta,GA,30301 +222222,20in Monitor,1,109.99,2019-06-18 14:10:00,685 Dogwood St, Austin,TX,73301 +222223,Wired Headphones,1,11.99,2019-06-02 12:10:00,194 Spruce St, Los Angeles,CA,90001 +222224,27in FHD Monitor,1,149.99,2019-06-09 20:26:00,142 Johnson St, Los Angeles,CA,90001 +222225,Bose SoundSport Headphones,1,99.99,2019-06-10 11:57:00,294 Jackson St, Dallas,TX,75001 +222226,USB-C Charging Cable,2,11.95,2019-06-07 15:06:00,982 River St, Boston,MA,02215 +222227,Apple Airpods Headphones,1,150.0,2019-06-04 21:16:00,969 South St, San Francisco,CA,94016 +222228,Wired Headphones,1,11.99,2019-06-02 16:05:00,819 Hickory St, Dallas,TX,75001 +222229,AAA Batteries (4-pack),1,2.99,2019-06-06 20:50:00,290 13th St, Los Angeles,CA,90001 +222230,Lightning Charging Cable,1,14.95,2019-06-20 11:19:00,675 West St, San Francisco,CA,94016 +222231,Google Phone,1,600.0,2019-06-20 12:35:00,336 Cedar St, Dallas,TX,75001 +222232,ThinkPad Laptop,1,999.99,2019-06-25 19:10:00,855 Meadow St, New York City,NY,10001 +222233,USB-C Charging Cable,1,11.95,2019-06-01 12:18:00,273 Maple St, Austin,TX,73301 +222234,Wired Headphones,1,11.99,2019-06-11 11:07:00,702 Park St, Portland,OR,97035 +222235,AA Batteries (4-pack),1,3.84,2019-06-29 07:40:00,671 Pine St, San Francisco,CA,94016 +222236,AA Batteries (4-pack),1,3.84,2019-06-08 20:03:00,359 Dogwood St, Portland,OR,97035 +222237,AA Batteries (4-pack),1,3.84,2019-06-20 11:09:00,925 River St, Seattle,WA,98101 +222238,AA Batteries (4-pack),1,3.84,2019-06-06 11:58:00,406 Church St, San Francisco,CA,94016 +222239,USB-C Charging Cable,1,11.95,2019-06-30 17:48:00,242 8th St, San Francisco,CA,94016 +222240,Apple Airpods Headphones,1,150.0,2019-06-10 20:22:00,980 Johnson St, Austin,TX,73301 +222241,Lightning Charging Cable,1,14.95,2019-06-21 13:23:00,726 Ridge St, New York City,NY,10001 +222242,27in 4K Gaming Monitor,1,389.99,2019-06-06 17:09:00,12 Main St, Austin,TX,73301 +222243,Flatscreen TV,1,300.0,2019-06-10 10:55:00,511 Lincoln St, Dallas,TX,75001 +222244,ThinkPad Laptop,1,999.99,2019-06-04 15:55:00,950 Pine St, San Francisco,CA,94016 +222245,ThinkPad Laptop,1,999.99,2019-06-29 04:31:00,740 9th St, San Francisco,CA,94016 +222246,Wired Headphones,1,11.99,2019-06-24 12:52:00,455 Elm St, New York City,NY,10001 +222247,Lightning Charging Cable,1,14.95,2019-06-04 16:06:00,959 Jefferson St, Dallas,TX,75001 +222248,AAA Batteries (4-pack),1,2.99,2019-06-12 13:32:00,465 7th St, Atlanta,GA,30301 +222249,AA Batteries (4-pack),1,3.84,2019-06-05 21:13:00,932 Madison St, Atlanta,GA,30301 +222250,iPhone,1,700.0,2019-06-06 13:14:00,673 Elm St, Los Angeles,CA,90001 +222251,Bose SoundSport Headphones,1,99.99,2019-06-25 19:26:00,129 Highland St, Los Angeles,CA,90001 +222252,27in FHD Monitor,1,149.99,2019-06-24 08:47:00,316 Chestnut St, Dallas,TX,75001 +222253,Bose SoundSport Headphones,1,99.99,2019-06-18 16:09:00,897 Main St, Boston,MA,02215 +222254,Macbook Pro Laptop,1,1700.0,2019-06-15 11:57:00,259 Pine St, Los Angeles,CA,90001 +222255,USB-C Charging Cable,1,11.95,2019-06-23 11:10:00,916 10th St, New York City,NY,10001 +222256,Wired Headphones,1,11.99,2019-06-30 19:09:00,880 North St, Los Angeles,CA,90001 +222257,AA Batteries (4-pack),1,3.84,2019-06-15 20:15:00,929 Jackson St, Atlanta,GA,30301 +222258,Bose SoundSport Headphones,1,99.99,2019-06-08 12:07:00,466 Ridge St, New York City,NY,10001 +222259,27in 4K Gaming Monitor,1,389.99,2019-06-06 15:30:00,800 13th St, Atlanta,GA,30301 +222260,AAA Batteries (4-pack),3,2.99,2019-06-17 11:07:00,57 Wilson St, Los Angeles,CA,90001 +222261,Wired Headphones,1,11.99,2019-06-30 14:42:00,436 Highland St, New York City,NY,10001 +222262,34in Ultrawide Monitor,1,379.99,2019-06-02 15:09:00,218 Madison St, New York City,NY,10001 +222263,Bose SoundSport Headphones,1,99.99,2019-06-27 14:23:00,992 11th St, Atlanta,GA,30301 +222264,Lightning Charging Cable,1,14.95,2019-06-30 16:26:00,961 Church St, Seattle,WA,98101 +222265,Wired Headphones,2,11.99,2019-06-16 16:45:00,248 Lincoln St, New York City,NY,10001 +222266,USB-C Charging Cable,1,11.95,2019-06-07 10:37:00,857 Lincoln St, Boston,MA,02215 +222267,Wired Headphones,1,11.99,2019-06-09 06:25:00,19 Spruce St, San Francisco,CA,94016 +222268,Apple Airpods Headphones,1,150.0,2019-06-14 18:47:00,801 Sunset St, San Francisco,CA,94016 +222269,AA Batteries (4-pack),2,3.84,2019-06-25 18:43:00,407 Pine St, Los Angeles,CA,90001 +222270,USB-C Charging Cable,1,11.95,2019-06-03 08:52:00,988 Washington St, New York City,NY,10001 +222271,Lightning Charging Cable,1,14.95,2019-06-25 12:48:00,988 2nd St, Los Angeles,CA,90001 +222272,Apple Airpods Headphones,1,150.0,2019-06-19 19:35:00,529 Main St, Boston,MA,02215 +222273,27in FHD Monitor,1,149.99,2019-06-27 16:48:00,737 Jefferson St, Austin,TX,73301 +222274,Macbook Pro Laptop,1,1700.0,2019-06-15 13:41:00,95 12th St, New York City,NY,10001 +222275,Lightning Charging Cable,1,14.95,2019-06-20 20:33:00,837 Cherry St, San Francisco,CA,94016 +222276,Flatscreen TV,1,300.0,2019-06-26 21:29:00,567 Lincoln St, New York City,NY,10001 +222277,USB-C Charging Cable,1,11.95,2019-06-23 09:10:00,704 Jackson St, Portland,OR,97035 +222278,34in Ultrawide Monitor,1,379.99,2019-06-08 18:45:00,911 Dogwood St, Dallas,TX,75001 +222279,AA Batteries (4-pack),1,3.84,2019-06-04 08:32:00,875 Forest St, Boston,MA,02215 +222280,Apple Airpods Headphones,1,150.0,2019-06-11 15:11:00,78 Pine St, Los Angeles,CA,90001 +222281,AAA Batteries (4-pack),1,2.99,2019-06-15 19:47:00,226 Park St, Los Angeles,CA,90001 +222282,USB-C Charging Cable,1,11.95,2019-06-29 21:03:00,204 14th St, Boston,MA,02215 +222283,Bose SoundSport Headphones,1,99.99,2019-06-22 20:39:00,998 Sunset St, San Francisco,CA,94016 +222284,AA Batteries (4-pack),1,3.84,2019-06-08 18:50:00,36 Jefferson St, San Francisco,CA,94016 +222285,USB-C Charging Cable,1,11.95,2019-06-07 10:36:00,645 Sunset St, Portland,ME,04101 +222286,Apple Airpods Headphones,1,150.0,2019-06-28 18:29:00,63 Sunset St, Portland,OR,97035 +222287,Lightning Charging Cable,1,14.95,2019-06-05 00:12:00,387 Willow St, San Francisco,CA,94016 +222288,AAA Batteries (4-pack),3,2.99,2019-06-28 19:35:00,466 Lincoln St, San Francisco,CA,94016 +222289,Lightning Charging Cable,2,14.95,2019-06-06 20:57:00,481 Meadow St, Boston,MA,02215 +222290,Google Phone,1,600.0,2019-06-20 17:40:00,627 Highland St, San Francisco,CA,94016 +222291,iPhone,1,700.0,2019-06-14 10:31:00,848 7th St, San Francisco,CA,94016 +222292,Lightning Charging Cable,1,14.95,2019-06-06 08:00:00,364 Cedar St, Los Angeles,CA,90001 +222293,AAA Batteries (4-pack),1,2.99,2019-06-05 21:28:00,750 Chestnut St, San Francisco,CA,94016 +222294,Apple Airpods Headphones,1,150.0,2019-06-18 00:34:00,299 Jackson St, Dallas,TX,75001 +222295,Wired Headphones,2,11.99,2019-06-04 18:16:00,922 West St, Boston,MA,02215 +222296,34in Ultrawide Monitor,1,379.99,2019-06-09 23:14:00,688 Wilson St, San Francisco,CA,94016 +222297,27in FHD Monitor,1,149.99,2019-06-16 12:57:00,925 Maple St, San Francisco,CA,94016 +222298,Wired Headphones,1,11.99,2019-06-07 20:26:00,487 Sunset St, Seattle,WA,98101 +222299,AAA Batteries (4-pack),1,2.99,2019-06-24 22:28:00,152 13th St, San Francisco,CA,94016 +222300,Lightning Charging Cable,1,14.95,2019-06-08 12:50:00,122 8th St, Boston,MA,02215 +222301,ThinkPad Laptop,1,999.99,2019-06-03 11:57:00,906 Jackson St, Portland,OR,97035 +222302,AAA Batteries (4-pack),1,2.99,2019-06-07 23:03:00,912 Sunset St, Atlanta,GA,30301 +222303,Flatscreen TV,1,300.0,2019-06-19 18:21:00,586 Church St, Atlanta,GA,30301 +222304,USB-C Charging Cable,2,11.95,2019-06-09 01:21:00,643 Lake St, New York City,NY,10001 +222305,AAA Batteries (4-pack),1,2.99,2019-06-11 21:50:00,293 Lake St, Atlanta,GA,30301 +222306,AAA Batteries (4-pack),3,2.99,2019-06-20 22:06:00,427 14th St, San Francisco,CA,94016 +222307,Google Phone,1,600.0,2019-06-05 14:30:00,75 North St, San Francisco,CA,94016 +222308,USB-C Charging Cable,1,11.95,2019-06-22 00:00:00,573 8th St, San Francisco,CA,94016 +222309,Lightning Charging Cable,2,14.95,2019-06-15 18:28:00,288 South St, Austin,TX,73301 +222310,Lightning Charging Cable,1,14.95,2019-06-29 15:46:00,812 Park St, New York City,NY,10001 +222311,USB-C Charging Cable,1,11.95,2019-06-05 15:12:00,333 Center St, San Francisco,CA,94016 +222312,USB-C Charging Cable,1,11.95,2019-06-08 09:04:00,873 10th St, Los Angeles,CA,90001 +222313,Lightning Charging Cable,1,14.95,2019-06-21 12:08:00,658 Wilson St, Boston,MA,02215 +222314,Bose SoundSport Headphones,1,99.99,2019-06-21 18:47:00,317 Sunset St, New York City,NY,10001 +222315,Wired Headphones,1,11.99,2019-06-09 12:32:00,666 Adams St, New York City,NY,10001 +222316,iPhone,1,700.0,2019-06-25 08:38:00,456 5th St, Atlanta,GA,30301 +222317,AA Batteries (4-pack),1,3.84,2019-06-14 21:58:00,12 Highland St, New York City,NY,10001 +222318,Wired Headphones,1,11.99,2019-06-03 14:41:00,183 Park St, Boston,MA,02215 +222319,34in Ultrawide Monitor,1,379.99,2019-06-28 16:29:00,565 Forest St, Los Angeles,CA,90001 +222320,Bose SoundSport Headphones,1,99.99,2019-06-11 18:14:00,255 4th St, San Francisco,CA,94016 +222321,Lightning Charging Cable,1,14.95,2019-06-04 20:27:00,157 Washington St, San Francisco,CA,94016 +222322,AA Batteries (4-pack),1,3.84,2019-06-27 21:33:00,648 Wilson St, San Francisco,CA,94016 +222323,Bose SoundSport Headphones,1,99.99,2019-06-24 19:51:00,82 Jackson St, Boston,MA,02215 +222324,Bose SoundSport Headphones,1,99.99,2019-06-20 22:16:00,825 5th St, Dallas,TX,75001 +222325,USB-C Charging Cable,1,11.95,2019-06-21 03:16:00,71 Pine St, San Francisco,CA,94016 +222326,Google Phone,1,600.0,2019-06-29 17:45:00,393 2nd St, San Francisco,CA,94016 +222327,AA Batteries (4-pack),1,3.84,2019-06-23 19:56:00,347 North St, Seattle,WA,98101 +222328,Apple Airpods Headphones,1,150.0,2019-06-15 14:50:00,249 West St, Los Angeles,CA,90001 +222329,AAA Batteries (4-pack),1,2.99,2019-06-12 12:52:00,727 Jefferson St, Seattle,WA,98101 +222330,Apple Airpods Headphones,1,150.0,2019-06-16 23:07:00,25 14th St, San Francisco,CA,94016 +222331,Wired Headphones,1,11.99,2019-06-14 08:25:00,486 Sunset St, Dallas,TX,75001 +222332,27in FHD Monitor,1,149.99,2019-06-04 14:22:00,182 Lake St, Los Angeles,CA,90001 +222332,34in Ultrawide Monitor,1,379.99,2019-06-04 14:22:00,182 Lake St, Los Angeles,CA,90001 +222333,AA Batteries (4-pack),1,3.84,2019-06-25 15:10:00,578 Meadow St, Portland,OR,97035 +222334,USB-C Charging Cable,1,11.95,2019-06-05 15:47:00,610 Adams St, New York City,NY,10001 +222335,Wired Headphones,1,11.99,2019-06-04 09:21:00,225 8th St, Boston,MA,02215 +222336,USB-C Charging Cable,1,11.95,2019-06-20 17:34:00,732 River St, Portland,ME,04101 +222337,ThinkPad Laptop,1,999.99,2019-06-09 15:07:00,796 Center St, Atlanta,GA,30301 +222338,27in 4K Gaming Monitor,1,389.99,2019-06-12 10:15:00,857 Wilson St, San Francisco,CA,94016 +222339,27in 4K Gaming Monitor,1,389.99,2019-06-20 11:21:00,143 6th St, San Francisco,CA,94016 +222340,iPhone,1,700.0,2019-06-28 00:32:00,940 Hickory St, New York City,NY,10001 +222341,Lightning Charging Cable,2,14.95,2019-06-02 19:08:00,57 Highland St, Los Angeles,CA,90001 +222342,AAA Batteries (4-pack),2,2.99,2019-06-13 09:58:00,67 Lincoln St, Los Angeles,CA,90001 +222343,Lightning Charging Cable,1,14.95,2019-06-03 20:13:00,841 10th St, Seattle,WA,98101 +222344,27in FHD Monitor,1,149.99,2019-06-17 12:04:00,893 Lake St, Los Angeles,CA,90001 +222344,AAA Batteries (4-pack),2,2.99,2019-06-17 12:04:00,893 Lake St, Los Angeles,CA,90001 +222345,Bose SoundSport Headphones,1,99.99,2019-06-14 14:36:00,984 Hickory St, Seattle,WA,98101 +222346,Lightning Charging Cable,1,14.95,2019-06-10 20:01:00,357 Elm St, New York City,NY,10001 +222347,Apple Airpods Headphones,1,150.0,2019-06-30 03:47:00,549 Sunset St, Los Angeles,CA,90001 +222348,AA Batteries (4-pack),1,3.84,2019-06-14 15:52:00,225 Johnson St, Los Angeles,CA,90001 +222349,AAA Batteries (4-pack),3,2.99,2019-06-10 17:47:00,806 Pine St, San Francisco,CA,94016 +222350,27in 4K Gaming Monitor,1,389.99,2019-06-06 17:44:00,185 West St, Los Angeles,CA,90001 +222351,Apple Airpods Headphones,1,150.0,2019-06-20 14:46:00,314 Washington St, Austin,TX,73301 +222352,27in FHD Monitor,1,149.99,2019-06-03 08:36:00,421 12th St, San Francisco,CA,94016 +222353,LG Dryer,1,600.0,2019-06-03 21:05:00,834 6th St, San Francisco,CA,94016 +222354,USB-C Charging Cable,1,11.95,2019-06-04 12:47:00,48 1st St, Dallas,TX,75001 +222355,Google Phone,1,600.0,2019-06-22 19:30:00,804 9th St, San Francisco,CA,94016 +222355,Bose SoundSport Headphones,1,99.99,2019-06-22 19:30:00,804 9th St, San Francisco,CA,94016 +222356,Wired Headphones,1,11.99,2019-06-12 17:02:00,704 North St, Seattle,WA,98101 +222357,Lightning Charging Cable,1,14.95,2019-06-22 06:59:00,594 Willow St, New York City,NY,10001 +222358,Wired Headphones,1,11.99,2019-06-09 07:33:00,884 Walnut St, New York City,NY,10001 +222359,Bose SoundSport Headphones,1,99.99,2019-06-06 11:55:00,115 12th St, San Francisco,CA,94016 +222360,Wired Headphones,3,11.99,2019-06-10 13:21:00,569 4th St, Portland,OR,97035 +222361,27in 4K Gaming Monitor,1,389.99,2019-06-05 18:54:00,528 13th St, Los Angeles,CA,90001 +222362,27in 4K Gaming Monitor,1,389.99,2019-06-02 09:54:00,710 12th St, San Francisco,CA,94016 +222363,AAA Batteries (4-pack),3,2.99,2019-06-14 10:16:00,99 Walnut St, Portland,OR,97035 +222364,USB-C Charging Cable,1,11.95,2019-06-30 18:12:00,434 Dogwood St, Atlanta,GA,30301 +222365,AAA Batteries (4-pack),2,2.99,2019-06-10 16:57:00,225 Sunset St, Atlanta,GA,30301 +222366,AA Batteries (4-pack),1,3.84,2019-06-22 13:48:00,573 Washington St, San Francisco,CA,94016 +222367,ThinkPad Laptop,1,999.99,2019-06-12 19:48:00,958 Lincoln St, Portland,OR,97035 +222368,27in 4K Gaming Monitor,1,389.99,2019-06-20 22:37:00,744 Highland St, Boston,MA,02215 +222369,Lightning Charging Cable,1,14.95,2019-06-01 15:35:00,129 11th St, San Francisco,CA,94016 +222370,Apple Airpods Headphones,1,150.0,2019-06-03 19:03:00,704 4th St, Boston,MA,02215 +222371,34in Ultrawide Monitor,1,379.99,2019-06-03 23:24:00,164 14th St, Austin,TX,73301 +222372,Vareebadd Phone,1,400.0,2019-06-28 19:42:00,557 South St, San Francisco,CA,94016 +222373,USB-C Charging Cable,1,11.95,2019-06-10 11:28:00,107 9th St, Boston,MA,02215 +222374,27in FHD Monitor,1,149.99,2019-06-21 14:50:00,558 Lincoln St, New York City,NY,10001 +222375,27in 4K Gaming Monitor,1,389.99,2019-06-13 20:52:00,288 Dogwood St, Dallas,TX,75001 +222375,Wired Headphones,1,11.99,2019-06-13 20:52:00,288 Dogwood St, Dallas,TX,75001 +222376,Macbook Pro Laptop,1,1700.0,2019-06-24 17:07:00,729 Ridge St, Los Angeles,CA,90001 +222377,USB-C Charging Cable,2,11.95,2019-06-29 17:04:00,526 Johnson St, San Francisco,CA,94016 +222378,Macbook Pro Laptop,1,1700.0,2019-06-21 17:20:00,930 Ridge St, San Francisco,CA,94016 +222379,Lightning Charging Cable,1,14.95,2019-06-18 14:35:00,842 Ridge St, New York City,NY,10001 +222379,Wired Headphones,1,11.99,2019-06-18 14:35:00,842 Ridge St, New York City,NY,10001 +222380,Google Phone,1,600.0,2019-06-26 22:17:00,808 11th St, San Francisco,CA,94016 +222381,Lightning Charging Cable,1,14.95,2019-06-02 15:35:00,493 Jackson St, San Francisco,CA,94016 +222382,AAA Batteries (4-pack),1,2.99,2019-06-12 14:57:00,591 South St, Dallas,TX,75001 +222383,ThinkPad Laptop,1,999.99,2019-06-06 09:09:00,365 Chestnut St, New York City,NY,10001 +222384,Macbook Pro Laptop,1,1700.0,2019-06-05 11:59:00,74 8th St, San Francisco,CA,94016 +222385,ThinkPad Laptop,1,999.99,2019-06-12 20:10:00,110 North St, New York City,NY,10001 +222386,Wired Headphones,1,11.99,2019-06-01 11:21:00,898 Willow St, San Francisco,CA,94016 +222387,Apple Airpods Headphones,1,150.0,2019-06-26 10:58:00,163 10th St, Portland,OR,97035 +222388,USB-C Charging Cable,1,11.95,2019-06-21 16:07:00,377 Jefferson St, Atlanta,GA,30301 +222389,iPhone,1,700.0,2019-06-04 11:43:00,450 12th St, Los Angeles,CA,90001 +222390,Wired Headphones,1,11.99,2019-06-12 11:16:00,7 Highland St, Boston,MA,02215 +222390,20in Monitor,1,109.99,2019-06-12 11:16:00,7 Highland St, Boston,MA,02215 +222391,Bose SoundSport Headphones,1,99.99,2019-06-03 03:41:00,303 Highland St, Boston,MA,02215 +222392,Macbook Pro Laptop,1,1700.0,2019-06-25 10:41:00,76 Pine St, Dallas,TX,75001 +222393,Wired Headphones,1,11.99,2019-06-06 07:54:00,648 8th St, Boston,MA,02215 +222394,Bose SoundSport Headphones,1,99.99,2019-06-16 18:00:00,621 Jackson St, Seattle,WA,98101 +222395,AAA Batteries (4-pack),1,2.99,2019-06-22 19:30:00,711 Lakeview St, Seattle,WA,98101 +222396,AAA Batteries (4-pack),1,2.99,2019-06-30 15:49:00,944 13th St, Dallas,TX,75001 +222397,Lightning Charging Cable,1,14.95,2019-06-22 19:37:00,504 4th St, Los Angeles,CA,90001 +222398,LG Washing Machine,1,600.0,2019-06-18 20:41:00,705 Wilson St, Los Angeles,CA,90001 +222399,Lightning Charging Cable,1,14.95,2019-06-24 13:27:00,753 Cedar St, Seattle,WA,98101 +222400,20in Monitor,1,109.99,2019-06-13 14:08:00,320 River St, Los Angeles,CA,90001 +222401,Macbook Pro Laptop,1,1700.0,2019-06-22 11:43:00,167 4th St, San Francisco,CA,94016 +222402,Lightning Charging Cable,1,14.95,2019-06-03 21:14:00,301 Ridge St, Dallas,TX,75001 +222403,27in 4K Gaming Monitor,1,389.99,2019-06-27 20:34:00,449 14th St, San Francisco,CA,94016 +222404,20in Monitor,1,109.99,2019-06-05 17:48:00,157 Chestnut St, Dallas,TX,75001 +222405,AA Batteries (4-pack),2,3.84,2019-06-17 21:48:00,901 Meadow St, San Francisco,CA,94016 +222406,AAA Batteries (4-pack),1,2.99,2019-06-21 01:46:00,481 13th St, Atlanta,GA,30301 +222407,Wired Headphones,1,11.99,2019-06-20 08:05:00,415 Walnut St, Dallas,TX,75001 +222408,Macbook Pro Laptop,1,1700.0,2019-06-04 11:40:00,413 Elm St, San Francisco,CA,94016 +222409,AAA Batteries (4-pack),1,2.99,2019-06-10 20:24:00,78 Chestnut St, San Francisco,CA,94016 +222410,AA Batteries (4-pack),1,3.84,2019-06-04 13:34:00,543 Cherry St, Boston,MA,02215 +222411,Lightning Charging Cable,2,14.95,2019-06-29 00:51:00,148 Highland St, New York City,NY,10001 +222412,AAA Batteries (4-pack),1,2.99,2019-06-26 20:11:00,643 Hickory St, Portland,OR,97035 +222413,Lightning Charging Cable,1,14.95,2019-06-03 16:45:00,191 Ridge St, San Francisco,CA,94016 +222414,Wired Headphones,1,11.99,2019-06-24 19:32:00,407 Sunset St, Dallas,TX,75001 +222415,Google Phone,1,600.0,2019-06-06 10:45:00,463 7th St, Seattle,WA,98101 +222415,USB-C Charging Cable,1,11.95,2019-06-06 10:45:00,463 7th St, Seattle,WA,98101 +222415,Wired Headphones,1,11.99,2019-06-06 10:45:00,463 7th St, Seattle,WA,98101 +222416,Lightning Charging Cable,1,14.95,2019-06-14 15:45:00,460 Hickory St, Dallas,TX,75001 +222417,27in FHD Monitor,1,149.99,2019-06-24 21:56:00,960 Washington St, Portland,OR,97035 +222418,AA Batteries (4-pack),1,3.84,2019-06-17 12:38:00,438 Wilson St, San Francisco,CA,94016 +222419,AAA Batteries (4-pack),2,2.99,2019-06-23 19:11:00,257 Hill St, Portland,ME,04101 +222420,27in FHD Monitor,1,149.99,2019-06-16 01:20:00,21 Lincoln St, San Francisco,CA,94016 +222421,Apple Airpods Headphones,1,150.0,2019-06-14 01:05:00,990 Jackson St, San Francisco,CA,94016 +222422,AAA Batteries (4-pack),2,2.99,2019-06-01 14:11:00,689 4th St, San Francisco,CA,94016 +222423,Flatscreen TV,1,300.0,2019-06-08 15:31:00,655 Highland St, San Francisco,CA,94016 +222424,27in FHD Monitor,1,149.99,2019-06-05 16:01:00,903 Wilson St, Boston,MA,02215 +222425,34in Ultrawide Monitor,1,379.99,2019-06-07 13:22:00,209 2nd St, San Francisco,CA,94016 +222426,USB-C Charging Cable,1,11.95,2019-06-01 16:17:00,409 Cherry St, Los Angeles,CA,90001 +222427,Apple Airpods Headphones,1,150.0,2019-06-14 12:49:00,304 Chestnut St, New York City,NY,10001 +222428,Apple Airpods Headphones,1,150.0,2019-06-26 13:08:00,135 Maple St, Portland,OR,97035 +222429,Lightning Charging Cable,1,14.95,2019-06-14 01:17:00,49 Chestnut St, New York City,NY,10001 +222430,USB-C Charging Cable,1,11.95,2019-06-01 19:08:00,479 Park St, New York City,NY,10001 +222431,AA Batteries (4-pack),1,3.84,2019-06-07 12:30:00,668 Adams St, New York City,NY,10001 +222432,Lightning Charging Cable,1,14.95,2019-06-20 00:26:00,378 Center St, New York City,NY,10001 +222433,AA Batteries (4-pack),2,3.84,2019-06-26 22:25:00,690 North St, Seattle,WA,98101 +222434,Macbook Pro Laptop,1,1700.0,2019-06-02 22:59:00,749 Dogwood St, San Francisco,CA,94016 +222435,USB-C Charging Cable,1,11.95,2019-06-17 12:39:00,588 5th St, San Francisco,CA,94016 +222435,AAA Batteries (4-pack),1,2.99,2019-06-17 12:39:00,588 5th St, San Francisco,CA,94016 +222436,Bose SoundSport Headphones,1,99.99,2019-06-23 09:34:00,841 Lakeview St, Atlanta,GA,30301 +222437,AAA Batteries (4-pack),1,2.99,2019-06-26 13:20:00,554 2nd St, Boston,MA,02215 +222438,Lightning Charging Cable,1,14.95,2019-06-30 18:24:00,773 Forest St, Atlanta,GA,30301 +222438,Macbook Pro Laptop,1,1700.0,2019-06-30 18:24:00,773 Forest St, Atlanta,GA,30301 +222439,27in FHD Monitor,1,149.99,2019-06-29 15:20:00,896 Pine St, San Francisco,CA,94016 +222440,Apple Airpods Headphones,1,150.0,2019-06-18 22:05:00,575 Church St, New York City,NY,10001 +222441,Apple Airpods Headphones,1,150.0,2019-06-11 03:55:00,149 1st St, San Francisco,CA,94016 +222442,iPhone,1,700.0,2019-06-11 10:55:00,352 4th St, Boston,MA,02215 +222442,Lightning Charging Cable,1,14.95,2019-06-11 10:55:00,352 4th St, Boston,MA,02215 +222443,USB-C Charging Cable,1,11.95,2019-06-05 15:07:00,243 Chestnut St, New York City,NY,10001 +222444,AAA Batteries (4-pack),1,2.99,2019-06-01 11:11:00,352 Hickory St, Los Angeles,CA,90001 +222445,Bose SoundSport Headphones,1,99.99,2019-06-27 12:53:00,772 Hill St, Dallas,TX,75001 +222446,AAA Batteries (4-pack),1,2.99,2019-06-19 10:11:00,831 1st St, San Francisco,CA,94016 +222447,LG Dryer,1,600.0,2019-06-20 13:02:00,338 Willow St, Seattle,WA,98101 +222448,Lightning Charging Cable,1,14.95,2019-06-18 06:10:00,679 Lincoln St, San Francisco,CA,94016 +222449,Lightning Charging Cable,1,14.95,2019-06-09 11:05:00,323 5th St, Boston,MA,02215 +222450,27in FHD Monitor,1,149.99,2019-06-01 20:53:00,801 Washington St, Atlanta,GA,30301 +222451,iPhone,1,700.0,2019-06-14 21:34:00,465 12th St, Atlanta,GA,30301 +222451,Lightning Charging Cable,1,14.95,2019-06-14 21:34:00,465 12th St, Atlanta,GA,30301 +222452,AA Batteries (4-pack),1,3.84,2019-06-10 08:44:00,522 9th St, Los Angeles,CA,90001 +222453,Lightning Charging Cable,2,14.95,2019-06-08 11:11:00,976 Hill St, New York City,NY,10001 +222454,USB-C Charging Cable,1,11.95,2019-06-30 09:51:00,427 North St, San Francisco,CA,94016 +222455,Flatscreen TV,1,300.0,2019-06-17 00:13:00,308 Lake St, Seattle,WA,98101 +222456,USB-C Charging Cable,1,11.95,2019-06-08 07:00:00,248 5th St, Seattle,WA,98101 +222456,27in FHD Monitor,1,149.99,2019-06-08 07:00:00,248 5th St, Seattle,WA,98101 +222457,USB-C Charging Cable,1,11.95,2019-06-09 17:58:00,485 Spruce St, Austin,TX,73301 +222458,USB-C Charging Cable,1,11.95,2019-06-09 20:11:00,565 Sunset St, San Francisco,CA,94016 +222459,Wired Headphones,2,11.99,2019-06-19 17:05:00,15 Lakeview St, San Francisco,CA,94016 +222460,27in FHD Monitor,1,149.99,2019-06-05 16:20:00,271 Center St, Boston,MA,02215 +222461,Lightning Charging Cable,1,14.95,2019-06-13 22:18:00,449 Elm St, San Francisco,CA,94016 +222462,USB-C Charging Cable,1,11.95,2019-06-13 21:25:00,572 Park St, San Francisco,CA,94016 +222463,Apple Airpods Headphones,1,150.0,2019-06-22 20:03:00,897 Ridge St, Los Angeles,CA,90001 +222464,USB-C Charging Cable,1,11.95,2019-06-04 21:56:00,680 Walnut St, San Francisco,CA,94016 +222464,34in Ultrawide Monitor,1,379.99,2019-06-04 21:56:00,680 Walnut St, San Francisco,CA,94016 +222465,AAA Batteries (4-pack),1,2.99,2019-06-14 15:59:00,407 Center St, Seattle,WA,98101 +222466,Flatscreen TV,1,300.0,2019-06-19 07:33:00,118 14th St, Dallas,TX,75001 +222467,Lightning Charging Cable,1,14.95,2019-06-19 02:08:00,192 8th St, Portland,OR,97035 +222468,AAA Batteries (4-pack),1,2.99,2019-06-29 18:18:00,764 5th St, Atlanta,GA,30301 +222469,iPhone,1,700.0,2019-06-01 06:37:00,633 Center St, New York City,NY,10001 +222469,Lightning Charging Cable,1,14.95,2019-06-01 06:37:00,633 Center St, New York City,NY,10001 +222470,Lightning Charging Cable,1,14.95,2019-06-14 19:34:00,302 Jefferson St, New York City,NY,10001 +222471,Flatscreen TV,1,300.0,2019-06-04 19:19:00,549 10th St, Atlanta,GA,30301 +222472,Flatscreen TV,1,300.0,2019-06-20 18:36:00,897 Adams St, San Francisco,CA,94016 +222473,Google Phone,1,600.0,2019-06-14 13:25:00,983 North St, Seattle,WA,98101 +222473,USB-C Charging Cable,2,11.95,2019-06-14 13:25:00,983 North St, Seattle,WA,98101 +222474,27in 4K Gaming Monitor,1,389.99,2019-06-11 19:13:00,452 10th St, New York City,NY,10001 +222475,Wired Headphones,1,11.99,2019-06-12 10:50:00,199 Main St, Boston,MA,02215 +222476,Google Phone,1,600.0,2019-06-19 18:18:00,479 6th St, Los Angeles,CA,90001 +222477,AA Batteries (4-pack),1,3.84,2019-06-24 18:48:00,615 South St, Los Angeles,CA,90001 +222478,USB-C Charging Cable,1,11.95,2019-06-16 13:04:00,736 Madison St, New York City,NY,10001 +222479,Lightning Charging Cable,1,14.95,2019-06-05 11:45:00,918 Washington St, San Francisco,CA,94016 +222480,27in 4K Gaming Monitor,1,389.99,2019-06-28 19:28:00,218 Center St, Boston,MA,02215 +222481,AA Batteries (4-pack),1,3.84,2019-06-04 21:03:00,920 Center St, Boston,MA,02215 +222482,LG Dryer,1,600.0,2019-06-28 14:24:00,390 Spruce St, Austin,TX,73301 +222483,Flatscreen TV,1,300.0,2019-06-08 21:46:00,362 2nd St, Portland,ME,04101 +222484,AA Batteries (4-pack),1,3.84,2019-06-15 09:28:00,375 Forest St, San Francisco,CA,94016 +222485,Wired Headphones,1,11.99,2019-06-06 00:53:00,359 6th St, Portland,OR,97035 +222486,AAA Batteries (4-pack),1,2.99,2019-06-14 16:50:00,683 2nd St, Portland,OR,97035 +222487,Lightning Charging Cable,1,14.95,2019-06-18 20:06:00,368 Center St, Austin,TX,73301 +222488,Macbook Pro Laptop,1,1700.0,2019-06-08 17:58:00,63 River St, Boston,MA,02215 +222489,Wired Headphones,1,11.99,2019-06-10 15:14:00,68 Jefferson St, Portland,ME,04101 +222490,Macbook Pro Laptop,1,1700.0,2019-06-08 00:17:00,673 South St, New York City,NY,10001 +222491,Flatscreen TV,1,300.0,2019-06-18 08:38:00,746 Lakeview St, New York City,NY,10001 +222492,USB-C Charging Cable,1,11.95,2019-06-19 21:44:00,286 12th St, Los Angeles,CA,90001 +222493,ThinkPad Laptop,1,999.99,2019-06-25 21:15:00,273 11th St, Portland,OR,97035 +222494,27in FHD Monitor,1,149.99,2019-06-02 19:23:00,990 South St, Dallas,TX,75001 +222495,Bose SoundSport Headphones,1,99.99,2019-06-24 08:28:00,967 Spruce St, Los Angeles,CA,90001 +222496,iPhone,1,700.0,2019-06-17 18:38:00,721 5th St, Boston,MA,02215 +222496,Apple Airpods Headphones,1,150.0,2019-06-17 18:38:00,721 5th St, Boston,MA,02215 +222497,Lightning Charging Cable,1,14.95,2019-06-30 15:24:00,823 Lakeview St, Dallas,TX,75001 +222498,LG Washing Machine,1,600.0,2019-06-24 01:15:00,949 Willow St, Atlanta,GA,30301 +222499,27in 4K Gaming Monitor,1,389.99,2019-06-24 22:43:00,685 14th St, Los Angeles,CA,90001 +222500,Lightning Charging Cable,1,14.95,2019-06-10 09:58:00,716 Main St, New York City,NY,10001 +222501,Wired Headphones,1,11.99,2019-06-02 11:44:00,886 Walnut St, Atlanta,GA,30301 +222502,USB-C Charging Cable,2,11.95,2019-06-09 22:10:00,892 Dogwood St, New York City,NY,10001 +222503,27in FHD Monitor,1,149.99,2019-06-02 11:42:00,796 4th St, San Francisco,CA,94016 +222504,Bose SoundSport Headphones,1,99.99,2019-06-21 15:12:00,822 12th St, Los Angeles,CA,90001 +222505,AAA Batteries (4-pack),2,2.99,2019-06-24 18:38:00,573 13th St, Portland,OR,97035 +222506,Lightning Charging Cable,1,14.95,2019-06-30 22:41:00,982 Main St, San Francisco,CA,94016 +222507,Lightning Charging Cable,1,14.95,2019-06-20 12:54:00,815 North St, Atlanta,GA,30301 +222508,Wired Headphones,1,11.99,2019-06-18 20:20:00,366 11th St, San Francisco,CA,94016 +222509,AA Batteries (4-pack),2,3.84,2019-06-20 09:01:00,826 Pine St, San Francisco,CA,94016 +222510,Apple Airpods Headphones,1,150.0,2019-06-01 13:50:00,951 Elm St, San Francisco,CA,94016 +222511,iPhone,1,700.0,2019-06-30 19:53:00,412 Willow St, San Francisco,CA,94016 +222512,27in FHD Monitor,1,149.99,2019-06-18 09:50:00,482 14th St, Seattle,WA,98101 +222513,USB-C Charging Cable,1,11.95,2019-06-14 13:49:00,119 14th St, Portland,OR,97035 +222514,34in Ultrawide Monitor,1,379.99,2019-06-28 14:42:00,558 Highland St, San Francisco,CA,94016 +222515,20in Monitor,1,109.99,2019-06-18 21:46:00,936 9th St, San Francisco,CA,94016 +222516,Wired Headphones,1,11.99,2019-06-25 14:43:00,429 South St, Boston,MA,02215 +222517,Google Phone,1,600.0,2019-06-30 20:37:00,525 9th St, Austin,TX,73301 +222517,USB-C Charging Cable,1,11.95,2019-06-30 20:37:00,525 9th St, Austin,TX,73301 +222518,27in FHD Monitor,1,149.99,2019-06-18 22:22:00,642 Hickory St, Portland,OR,97035 +222519,USB-C Charging Cable,1,11.95,2019-06-25 13:22:00,997 River St, Austin,TX,73301 +222520,AAA Batteries (4-pack),2,2.99,2019-06-12 13:38:00,632 Walnut St, New York City,NY,10001 +222521,AAA Batteries (4-pack),1,2.99,2019-06-09 17:43:00,842 Jackson St, Austin,TX,73301 +222522,Wired Headphones,1,11.99,2019-06-12 14:41:00,306 South St, San Francisco,CA,94016 +222523,AAA Batteries (4-pack),2,2.99,2019-06-22 13:18:00,538 Pine St, New York City,NY,10001 +222524,27in FHD Monitor,1,149.99,2019-06-08 15:05:00,908 8th St, Dallas,TX,75001 +222525,Wired Headphones,1,11.99,2019-06-25 09:58:00,688 10th St, Los Angeles,CA,90001 +222526,27in FHD Monitor,1,149.99,2019-06-04 12:32:00,270 Meadow St, Los Angeles,CA,90001 +222527,Google Phone,1,600.0,2019-06-05 13:47:00,477 Jackson St, Seattle,WA,98101 +222527,USB-C Charging Cable,1,11.95,2019-06-05 13:47:00,477 Jackson St, Seattle,WA,98101 +222527,Bose SoundSport Headphones,1,99.99,2019-06-05 13:47:00,477 Jackson St, Seattle,WA,98101 +222528,AA Batteries (4-pack),1,3.84,2019-06-12 15:26:00,385 Main St, Los Angeles,CA,90001 +222529,Wired Headphones,1,11.99,2019-06-18 09:09:00,179 6th St, Austin,TX,73301 +222530,Bose SoundSport Headphones,1,99.99,2019-06-29 09:53:00,695 Sunset St, Austin,TX,73301 +222531,Vareebadd Phone,1,400.0,2019-06-19 21:57:00,896 1st St, Atlanta,GA,30301 +222531,USB-C Charging Cable,1,11.95,2019-06-19 21:57:00,896 1st St, Atlanta,GA,30301 +222532,27in FHD Monitor,1,149.99,2019-06-18 20:27:00,552 River St, Portland,OR,97035 +222533,AAA Batteries (4-pack),2,2.99,2019-06-24 15:42:00,734 Lake St, San Francisco,CA,94016 +222534,27in 4K Gaming Monitor,1,389.99,2019-06-02 23:54:00,780 Sunset St, Boston,MA,02215 +222535,AA Batteries (4-pack),1,3.84,2019-06-14 20:16:00,700 Park St, Los Angeles,CA,90001 +222536,Apple Airpods Headphones,1,150.0,2019-06-27 13:45:00,814 Washington St, Los Angeles,CA,90001 +222537,AA Batteries (4-pack),1,3.84,2019-06-13 11:55:00,830 14th St, Atlanta,GA,30301 +222538,Apple Airpods Headphones,1,150.0,2019-06-14 09:45:00,240 Cherry St, Seattle,WA,98101 +222539,Wired Headphones,1,11.99,2019-06-10 13:39:00,573 4th St, San Francisco,CA,94016 +222540,AA Batteries (4-pack),1,3.84,2019-06-04 12:21:00,479 1st St, New York City,NY,10001 +222541,27in FHD Monitor,1,149.99,2019-06-12 21:17:00,579 Willow St, Portland,OR,97035 +222542,Apple Airpods Headphones,1,150.0,2019-06-25 20:35:00,466 6th St, San Francisco,CA,94016 +222543,AA Batteries (4-pack),2,3.84,2019-06-27 22:34:00,934 Jackson St, San Francisco,CA,94016 +222544,Lightning Charging Cable,1,14.95,2019-06-15 00:03:00,222 Ridge St, Atlanta,GA,30301 +222545,AAA Batteries (4-pack),1,2.99,2019-06-21 16:50:00,808 Church St, Los Angeles,CA,90001 +222546,Lightning Charging Cable,1,14.95,2019-06-21 11:26:00,354 Forest St, Boston,MA,02215 +222547,Bose SoundSport Headphones,1,99.99,2019-06-21 16:00:00,282 Cedar St, Los Angeles,CA,90001 +222548,AA Batteries (4-pack),1,3.84,2019-06-24 07:34:00,631 West St, Portland,OR,97035 +222549,AA Batteries (4-pack),5,3.84,2019-06-29 18:25:00,555 South St, Los Angeles,CA,90001 +222550,Apple Airpods Headphones,1,150.0,2019-06-03 09:22:00,313 Cedar St, New York City,NY,10001 +222551,USB-C Charging Cable,1,11.95,2019-06-20 21:30:00,718 12th St, Los Angeles,CA,90001 +222552,Wired Headphones,1,11.99,2019-06-11 23:08:00,190 Main St, Seattle,WA,98101 +222553,20in Monitor,1,109.99,2019-06-17 15:37:00,473 Maple St, Los Angeles,CA,90001 +222554,Apple Airpods Headphones,1,150.0,2019-06-08 10:26:00,225 South St, San Francisco,CA,94016 +222555,Vareebadd Phone,1,400.0,2019-06-20 12:23:00,993 Cedar St, New York City,NY,10001 +222555,USB-C Charging Cable,1,11.95,2019-06-20 12:23:00,993 Cedar St, New York City,NY,10001 +222555,Wired Headphones,1,11.99,2019-06-20 12:23:00,993 Cedar St, New York City,NY,10001 +222556,27in FHD Monitor,1,149.99,2019-06-07 23:46:00,36 South St, Portland,OR,97035 +222557,Apple Airpods Headphones,1,150.0,2019-06-07 11:51:00,144 Forest St, San Francisco,CA,94016 +222558,34in Ultrawide Monitor,1,379.99,2019-06-17 16:12:00,658 8th St, Los Angeles,CA,90001 +222559,LG Washing Machine,1,600.0,2019-06-04 18:59:00,468 Madison St, San Francisco,CA,94016 +222560,Bose SoundSport Headphones,1,99.99,2019-06-10 01:09:00,2 Elm St, Boston,MA,02215 +222561,Apple Airpods Headphones,1,150.0,2019-06-01 09:34:00,377 Wilson St, Boston,MA,02215 +222562,iPhone,1,700.0,2019-06-07 17:38:00,374 Dogwood St, Atlanta,GA,30301 +222563,AAA Batteries (4-pack),1,2.99,2019-06-09 00:09:00,647 5th St, San Francisco,CA,94016 +222564,AA Batteries (4-pack),2,3.84,2019-06-11 20:28:00,675 10th St, Seattle,WA,98101 +222565,AAA Batteries (4-pack),1,2.99,2019-06-23 09:55:00,300 Johnson St, Boston,MA,02215 +222566,ThinkPad Laptop,1,999.99,2019-06-20 02:34:00,475 11th St, San Francisco,CA,94016 +222567,Wired Headphones,1,11.99,2019-06-22 09:05:00,375 Dogwood St, Boston,MA,02215 +222568,USB-C Charging Cable,1,11.95,2019-06-03 20:53:00,218 Church St, San Francisco,CA,94016 +222569,Bose SoundSport Headphones,1,99.99,2019-06-15 06:46:00,18 Pine St, Atlanta,GA,30301 +222570,USB-C Charging Cable,1,11.95,2019-06-30 21:04:00,213 Adams St, Los Angeles,CA,90001 +222571,Macbook Pro Laptop,1,1700.0,2019-06-19 16:33:00,501 2nd St, Seattle,WA,98101 +222572,Lightning Charging Cable,2,14.95,2019-06-08 16:28:00,624 Willow St, Seattle,WA,98101 +222573,34in Ultrawide Monitor,1,379.99,2019-06-27 13:20:00,408 Center St, New York City,NY,10001 +222574,Lightning Charging Cable,1,14.95,2019-06-30 19:24:00,804 Jackson St, Portland,OR,97035 +222575,USB-C Charging Cable,1,11.95,2019-06-05 15:18:00,920 Johnson St, Portland,ME,04101 +222576,AA Batteries (4-pack),1,3.84,2019-06-05 00:12:00,39 6th St, San Francisco,CA,94016 +222577,20in Monitor,1,109.99,2019-06-11 08:18:00,857 Jackson St, Atlanta,GA,30301 +222578,Apple Airpods Headphones,1,150.0,2019-06-06 13:36:00,735 Main St, New York City,NY,10001 +222579,Vareebadd Phone,1,400.0,2019-06-14 22:43:00,426 1st St, Seattle,WA,98101 +222580,AA Batteries (4-pack),3,3.84,2019-06-05 18:41:00,54 Hill St, Los Angeles,CA,90001 +222581,Bose SoundSport Headphones,1,99.99,2019-06-20 23:20:00,562 Main St, San Francisco,CA,94016 +222582,USB-C Charging Cable,1,11.95,2019-06-07 16:04:00,949 Church St, San Francisco,CA,94016 +222583,Bose SoundSport Headphones,1,99.99,2019-06-14 07:39:00,768 South St, New York City,NY,10001 +222584,Lightning Charging Cable,1,14.95,2019-06-03 22:24:00,595 Sunset St, Dallas,TX,75001 +222585,USB-C Charging Cable,1,11.95,2019-06-06 10:50:00,885 Walnut St, New York City,NY,10001 +222586,Wired Headphones,1,11.99,2019-06-07 09:12:00,342 Maple St, New York City,NY,10001 +222587,Bose SoundSport Headphones,1,99.99,2019-06-22 13:36:00,491 13th St, San Francisco,CA,94016 +222588,Lightning Charging Cable,1,14.95,2019-06-02 23:29:00,175 7th St, Los Angeles,CA,90001 +222589,Lightning Charging Cable,2,14.95,2019-06-01 16:13:00,567 12th St, San Francisco,CA,94016 +222590,AAA Batteries (4-pack),2,2.99,2019-06-09 12:56:00,484 5th St, San Francisco,CA,94016 +222591,34in Ultrawide Monitor,1,379.99,2019-06-08 08:37:00,853 7th St, New York City,NY,10001 +222592,Lightning Charging Cable,1,14.95,2019-06-10 20:39:00,608 Dogwood St, Atlanta,GA,30301 +222593,USB-C Charging Cable,1,11.95,2019-06-16 13:14:00,165 Dogwood St, San Francisco,CA,94016 +222594,Apple Airpods Headphones,1,150.0,2019-06-04 12:15:00,852 Forest St, Seattle,WA,98101 +222595,27in FHD Monitor,1,149.99,2019-06-08 14:10:00,607 7th St, Dallas,TX,75001 +222596,34in Ultrawide Monitor,1,379.99,2019-06-05 14:41:00,105 Jefferson St, Atlanta,GA,30301 +222597,iPhone,1,700.0,2019-06-21 01:36:00,496 10th St, New York City,NY,10001 +222598,AA Batteries (4-pack),1,3.84,2019-06-26 12:39:00,78 Forest St, Atlanta,GA,30301 +222599,USB-C Charging Cable,1,11.95,2019-06-20 14:20:00,405 14th St, San Francisco,CA,94016 +222600,Flatscreen TV,1,300.0,2019-06-28 20:02:00,985 10th St, San Francisco,CA,94016 +222601,Lightning Charging Cable,1,14.95,2019-06-15 07:12:00,547 Lincoln St, Boston,MA,02215 +222602,Lightning Charging Cable,1,14.95,2019-06-14 13:31:00,241 Johnson St, San Francisco,CA,94016 +222603,20in Monitor,1,109.99,2019-06-22 12:46:00,184 Adams St, San Francisco,CA,94016 +222604,Bose SoundSport Headphones,1,99.99,2019-06-15 18:07:00,43 Highland St, Boston,MA,02215 +222605,27in FHD Monitor,1,149.99,2019-06-23 11:02:00,73 11th St, Boston,MA,02215 +222606,USB-C Charging Cable,1,11.95,2019-06-12 04:44:00,558 8th St, Dallas,TX,75001 +222607,34in Ultrawide Monitor,1,379.99,2019-06-10 22:02:00,871 Spruce St, San Francisco,CA,94016 +222608,USB-C Charging Cable,1,11.95,2019-06-02 17:05:00,339 7th St, San Francisco,CA,94016 +222609,Lightning Charging Cable,1,14.95,2019-06-25 21:32:00,669 Washington St, San Francisco,CA,94016 +222610,Lightning Charging Cable,2,14.95,2019-06-08 21:34:00,501 Dogwood St, New York City,NY,10001 +222611,20in Monitor,1,109.99,2019-06-03 16:40:00,105 Highland St, New York City,NY,10001 +222612,Lightning Charging Cable,1,14.95,2019-06-10 08:44:00,668 Forest St, Portland,OR,97035 +222613,AAA Batteries (4-pack),1,2.99,2019-06-25 13:10:00,159 Hill St, Portland,OR,97035 +222614,Apple Airpods Headphones,1,150.0,2019-06-18 10:34:00,924 Maple St, New York City,NY,10001 +222615,Vareebadd Phone,1,400.0,2019-06-28 21:20:00,229 North St, Seattle,WA,98101 +222616,AAA Batteries (4-pack),3,2.99,2019-06-08 14:00:00,96 Forest St, San Francisco,CA,94016 +222617,ThinkPad Laptop,1,999.99,2019-06-18 10:53:00,761 10th St, Atlanta,GA,30301 +222618,Wired Headphones,1,11.99,2019-06-16 19:46:00,130 5th St, Seattle,WA,98101 +222619,Bose SoundSport Headphones,1,99.99,2019-06-12 14:57:00,563 Sunset St, Portland,OR,97035 +222620,AAA Batteries (4-pack),1,2.99,2019-06-26 19:11:00,591 Jefferson St, Atlanta,GA,30301 +222621,Wired Headphones,1,11.99,2019-06-19 21:46:00,188 6th St, San Francisco,CA,94016 +222622,AA Batteries (4-pack),2,3.84,2019-06-27 08:25:00,282 14th St, Seattle,WA,98101 +222623,AAA Batteries (4-pack),1,2.99,2019-06-15 11:54:00,111 West St, Boston,MA,02215 +222624,Apple Airpods Headphones,1,150.0,2019-06-30 01:49:00,966 Main St, Los Angeles,CA,90001 +222625,iPhone,1,700.0,2019-06-02 11:20:00,510 Center St, Dallas,TX,75001 +222626,Google Phone,1,600.0,2019-06-26 15:25:00,79 2nd St, Atlanta,GA,30301 +222627,Apple Airpods Headphones,1,150.0,2019-06-04 15:07:00,54 Willow St, Atlanta,GA,30301 +222628,AAA Batteries (4-pack),1,2.99,2019-06-01 21:19:00,303 Pine St, New York City,NY,10001 +222629,27in FHD Monitor,1,149.99,2019-06-21 09:00:00,748 13th St, Los Angeles,CA,90001 +222630,AAA Batteries (4-pack),2,2.99,2019-06-11 14:03:00,935 1st St, Boston,MA,02215 +222631,Google Phone,1,600.0,2019-06-07 15:24:00,512 Jefferson St, New York City,NY,10001 +222632,Lightning Charging Cable,2,14.95,2019-06-27 16:26:00,904 Chestnut St, Dallas,TX,75001 +222633,Bose SoundSport Headphones,1,99.99,2019-06-04 10:52:00,405 Forest St, San Francisco,CA,94016 +222634,LG Dryer,1,600.0,2019-06-27 23:47:00,892 West St, Seattle,WA,98101 +222635,iPhone,1,700.0,2019-06-06 21:53:00,890 Ridge St, New York City,NY,10001 +222635,Lightning Charging Cable,1,14.95,2019-06-06 21:53:00,890 Ridge St, New York City,NY,10001 +222636,Apple Airpods Headphones,1,150.0,2019-06-07 21:50:00,368 8th St, New York City,NY,10001 +222637,Bose SoundSport Headphones,1,99.99,2019-06-25 14:23:00,801 Johnson St, Boston,MA,02215 +222638,ThinkPad Laptop,1,999.99,2019-06-20 11:14:00,833 14th St, New York City,NY,10001 +222639,Wired Headphones,1,11.99,2019-06-19 09:21:00,2 Lake St, Atlanta,GA,30301 +222640,Flatscreen TV,1,300.0,2019-06-08 10:35:00,60 Hill St, Boston,MA,02215 +222641,AA Batteries (4-pack),2,3.84,2019-06-18 10:55:00,813 River St, Austin,TX,73301 +222642,Wired Headphones,1,11.99,2019-06-28 16:04:00,169 9th St, Dallas,TX,75001 +222643,Macbook Pro Laptop,1,1700.0,2019-06-04 20:24:00,226 Pine St, San Francisco,CA,94016 +222644,Bose SoundSport Headphones,1,99.99,2019-06-09 18:09:00,162 Lake St, Seattle,WA,98101 +222645,Apple Airpods Headphones,1,150.0,2019-06-30 12:24:00,11 11th St, New York City,NY,10001 +222646,iPhone,1,700.0,2019-06-05 11:49:00,865 Church St, New York City,NY,10001 +222647,Lightning Charging Cable,1,14.95,2019-06-28 11:03:00,655 Park St, Dallas,TX,75001 +222648,20in Monitor,1,109.99,2019-06-06 20:50:00,731 Meadow St, Los Angeles,CA,90001 +222649,AAA Batteries (4-pack),1,2.99,2019-06-01 20:49:00,782 2nd St, Los Angeles,CA,90001 +222650,AA Batteries (4-pack),1,3.84,2019-06-22 11:45:00,465 Forest St, Portland,OR,97035 +222651,Wired Headphones,1,11.99,2019-06-06 14:25:00,369 11th St, Dallas,TX,75001 +222652,USB-C Charging Cable,1,11.95,2019-06-13 18:58:00,365 Highland St, Austin,TX,73301 +222653,Macbook Pro Laptop,1,1700.0,2019-06-19 23:42:00,869 Meadow St, San Francisco,CA,94016 +222654,Apple Airpods Headphones,1,150.0,2019-06-03 13:50:00,96 Cedar St, San Francisco,CA,94016 +222655,USB-C Charging Cable,1,11.95,2019-06-24 07:26:00,214 Hill St, San Francisco,CA,94016 +222656,Bose SoundSport Headphones,1,99.99,2019-06-23 17:01:00,304 Sunset St, San Francisco,CA,94016 +222657,AAA Batteries (4-pack),2,2.99,2019-06-26 13:02:00,780 Sunset St, Portland,OR,97035 +222658,AAA Batteries (4-pack),2,2.99,2019-06-23 08:12:00,93 5th St, Austin,TX,73301 +222659,AAA Batteries (4-pack),1,2.99,2019-06-19 14:57:00,619 10th St, Austin,TX,73301 +222660,Apple Airpods Headphones,1,150.0,2019-06-25 17:54:00,944 8th St, Dallas,TX,75001 +222661,Apple Airpods Headphones,1,150.0,2019-06-26 11:38:00,383 Ridge St, Los Angeles,CA,90001 +222662,Lightning Charging Cable,1,14.95,2019-06-11 13:49:00,806 Jefferson St, Boston,MA,02215 +222663,AAA Batteries (4-pack),2,2.99,2019-06-20 12:06:00,551 Wilson St, Dallas,TX,75001 +222664,27in FHD Monitor,1,149.99,2019-06-07 20:24:00,904 Maple St, San Francisco,CA,94016 +222665,27in FHD Monitor,1,149.99,2019-06-08 12:14:00,303 Cherry St, Boston,MA,02215 +222666,USB-C Charging Cable,1,11.95,2019-06-19 15:16:00,524 Pine St, San Francisco,CA,94016 +222667,Vareebadd Phone,1,400.0,2019-06-13 09:13:00,749 Meadow St, Dallas,TX,75001 +222668,ThinkPad Laptop,1,999.99,2019-06-20 14:18:00,730 Chestnut St, New York City,NY,10001 +222669,Apple Airpods Headphones,1,150.0,2019-06-14 23:30:00,259 Dogwood St, Los Angeles,CA,90001 +222670,USB-C Charging Cable,1,11.95,2019-06-27 04:38:00,959 Maple St, Seattle,WA,98101 +222671,Apple Airpods Headphones,1,150.0,2019-06-17 15:26:00,27 Walnut St, Los Angeles,CA,90001 +222672,AA Batteries (4-pack),1,3.84,2019-06-05 18:52:00,106 Pine St, San Francisco,CA,94016 +222673,Apple Airpods Headphones,1,150.0,2019-06-13 14:01:00,946 5th St, San Francisco,CA,94016 +222674,AAA Batteries (4-pack),4,2.99,2019-06-08 19:42:00,220 Elm St, San Francisco,CA,94016 +222675,Lightning Charging Cable,1,14.95,2019-06-22 23:28:00,389 Jackson St, Los Angeles,CA,90001 +222676,AAA Batteries (4-pack),2,2.99,2019-06-06 16:41:00,343 2nd St, Los Angeles,CA,90001 +222677,AAA Batteries (4-pack),1,2.99,2019-06-24 22:55:00,636 10th St, Boston,MA,02215 +222678,AA Batteries (4-pack),3,3.84,2019-06-07 18:51:00,116 14th St, New York City,NY,10001 +222679,Lightning Charging Cable,1,14.95,2019-06-08 12:34:00,448 Park St, Seattle,WA,98101 +222680,Bose SoundSport Headphones,1,99.99,2019-06-25 20:03:00,129 Chestnut St, San Francisco,CA,94016 +222681,Google Phone,1,600.0,2019-06-22 19:27:00,731 Willow St, Dallas,TX,75001 +222682,iPhone,1,700.0,2019-06-14 20:27:00,235 Lakeview St, Los Angeles,CA,90001 +222683,Google Phone,1,600.0,2019-06-27 20:56:00,152 Church St, Portland,OR,97035 +222684,AAA Batteries (4-pack),1,2.99,2019-06-02 13:55:00,275 Forest St, Boston,MA,02215 +222685,AA Batteries (4-pack),1,3.84,2019-06-26 10:45:00,926 Highland St, San Francisco,CA,94016 +222686,Wired Headphones,1,11.99,2019-06-22 16:50:00,718 Madison St, New York City,NY,10001 +222687,27in FHD Monitor,1,149.99,2019-06-21 18:21:00,900 Wilson St, Boston,MA,02215 +222688,iPhone,1,700.0,2019-06-29 09:05:00,150 Chestnut St, Austin,TX,73301 +222688,Lightning Charging Cable,1,14.95,2019-06-29 09:05:00,150 Chestnut St, Austin,TX,73301 +222689,Wired Headphones,1,11.99,2019-06-21 19:43:00,498 1st St, Boston,MA,02215 +222690,Lightning Charging Cable,1,14.95,2019-06-20 17:04:00,43 Church St, San Francisco,CA,94016 +222691,iPhone,1,700.0,2019-06-19 19:46:00,423 Lakeview St, Portland,OR,97035 +222692,Google Phone,1,600.0,2019-06-19 20:17:00,436 Washington St, Los Angeles,CA,90001 +222693,27in 4K Gaming Monitor,1,389.99,2019-06-06 14:24:00,796 Willow St, San Francisco,CA,94016 +222694,AA Batteries (4-pack),1,3.84,2019-06-29 09:16:00,975 1st St, San Francisco,CA,94016 +222695,USB-C Charging Cable,1,11.95,2019-06-14 08:48:00,730 Johnson St, Los Angeles,CA,90001 +222696,Wired Headphones,1,11.99,2019-06-12 20:21:00,942 11th St, Boston,MA,02215 +222697,Vareebadd Phone,1,400.0,2019-06-12 11:04:00,725 Ridge St, Austin,TX,73301 +222697,USB-C Charging Cable,1,11.95,2019-06-12 11:04:00,725 Ridge St, Austin,TX,73301 +222698,AA Batteries (4-pack),1,3.84,2019-06-28 17:35:00,75 Jackson St, Seattle,WA,98101 +222699,Apple Airpods Headphones,1,150.0,2019-06-11 20:22:00,502 Church St, San Francisco,CA,94016 +222700,USB-C Charging Cable,1,11.95,2019-06-17 13:35:00,488 Jackson St, Seattle,WA,98101 +222701,Lightning Charging Cable,1,14.95,2019-06-12 23:17:00,290 Main St, Dallas,TX,75001 +222702,Lightning Charging Cable,1,14.95,2019-06-12 12:43:00,147 Madison St, Seattle,WA,98101 +222703,Flatscreen TV,1,300.0,2019-06-05 00:26:00,483 Hickory St, New York City,NY,10001 +222704,Wired Headphones,2,11.99,2019-06-26 09:52:00,652 14th St, Boston,MA,02215 +222705,USB-C Charging Cable,1,11.95,2019-06-30 07:45:00,627 11th St, New York City,NY,10001 +222706,Macbook Pro Laptop,1,1700.0,2019-06-11 21:30:00,374 Dogwood St, New York City,NY,10001 +222707,27in FHD Monitor,1,149.99,2019-06-15 21:02:00,769 Hill St, San Francisco,CA,94016 +222708,27in 4K Gaming Monitor,1,389.99,2019-06-29 23:35:00,692 Walnut St, Dallas,TX,75001 +222709,USB-C Charging Cable,1,11.95,2019-06-20 22:53:00,113 Willow St, Seattle,WA,98101 +222710,Macbook Pro Laptop,1,1700.0,2019-06-29 19:23:00,136 Spruce St, Los Angeles,CA,90001 +222711,AAA Batteries (4-pack),1,2.99,2019-06-07 21:21:00,743 Walnut St, New York City,NY,10001 +222712,AAA Batteries (4-pack),4,2.99,2019-06-25 09:13:00,936 Jackson St, Dallas,TX,75001 +222713,USB-C Charging Cable,1,11.95,2019-06-03 18:23:00,64 Forest St, San Francisco,CA,94016 +222714,27in 4K Gaming Monitor,1,389.99,2019-06-20 12:39:00,883 Main St, Los Angeles,CA,90001 +222715,AAA Batteries (4-pack),1,2.99,2019-06-30 19:22:00,864 Forest St, Los Angeles,CA,90001 +222716,Bose SoundSport Headphones,1,99.99,2019-06-30 16:42:00,739 Willow St, New York City,NY,10001 +222717,AA Batteries (4-pack),1,3.84,2019-06-22 21:38:00,879 2nd St, Austin,TX,73301 +222718,Wired Headphones,1,11.99,2019-06-18 15:30:00,30 Elm St, Atlanta,GA,30301 +222719,ThinkPad Laptop,1,999.99,2019-06-29 13:43:00,740 Meadow St, Atlanta,GA,30301 +222720,Flatscreen TV,1,300.0,2019-06-30 21:17:00,875 Lakeview St, New York City,NY,10001 +222721,USB-C Charging Cable,2,11.95,2019-06-29 20:56:00,948 Johnson St, Atlanta,GA,30301 +222722,Macbook Pro Laptop,1,1700.0,2019-06-11 11:45:00,379 Church St, Austin,TX,73301 +222723,ThinkPad Laptop,1,999.99,2019-06-08 08:28:00,506 South St, Los Angeles,CA,90001 +222724,AAA Batteries (4-pack),2,2.99,2019-06-17 22:00:00,41 Lake St, New York City,NY,10001 +222725,Macbook Pro Laptop,1,1700.0,2019-06-19 02:17:00,812 Sunset St, Atlanta,GA,30301 +222726,AAA Batteries (4-pack),2,2.99,2019-06-30 23:07:00,673 Sunset St, Atlanta,GA,30301 +222727,AA Batteries (4-pack),1,3.84,2019-06-11 17:41:00,129 Hill St, Seattle,WA,98101 +222728,Macbook Pro Laptop,1,1700.0,2019-06-13 21:29:00,657 River St, Los Angeles,CA,90001 +222729,AA Batteries (4-pack),1,3.84,2019-06-21 15:24:00,81 West St, San Francisco,CA,94016 +222730,Apple Airpods Headphones,1,150.0,2019-06-12 11:31:00,10 Walnut St, San Francisco,CA,94016 +222731,USB-C Charging Cable,1,11.95,2019-06-28 21:35:00,824 5th St, Portland,OR,97035 +222732,USB-C Charging Cable,1,11.95,2019-06-06 10:56:00,551 Spruce St, Seattle,WA,98101 +222733,AAA Batteries (4-pack),2,2.99,2019-06-07 08:29:00,469 Park St, Dallas,TX,75001 +222734,27in 4K Gaming Monitor,1,389.99,2019-06-16 21:08:00,759 Park St, Los Angeles,CA,90001 +222735,Google Phone,1,600.0,2019-06-07 18:18:00,274 Maple St, San Francisco,CA,94016 +222736,USB-C Charging Cable,1,11.95,2019-06-11 17:03:00,166 North St, San Francisco,CA,94016 +222737,Apple Airpods Headphones,1,150.0,2019-06-10 11:39:00,739 2nd St, Portland,OR,97035 +222738,ThinkPad Laptop,1,999.99,2019-06-28 23:17:00,821 Main St, Los Angeles,CA,90001 +222739,Vareebadd Phone,1,400.0,2019-06-09 22:14:00,736 Meadow St, Los Angeles,CA,90001 +222740,Wired Headphones,1,11.99,2019-07-01 01:35:00,804 Walnut St, New York City,NY,10001 +222741,27in 4K Gaming Monitor,1,389.99,2019-06-28 11:36:00,940 Jackson St, San Francisco,CA,94016 +222741,AAA Batteries (4-pack),1,2.99,2019-06-28 11:36:00,940 Jackson St, San Francisco,CA,94016 +222742,Lightning Charging Cable,2,14.95,2019-06-11 22:11:00,552 West St, San Francisco,CA,94016 +222743,Google Phone,1,600.0,2019-06-02 11:21:00,479 Lakeview St, Boston,MA,02215 +222743,USB-C Charging Cable,1,11.95,2019-06-02 11:21:00,479 Lakeview St, Boston,MA,02215 +222744,Macbook Pro Laptop,1,1700.0,2019-06-11 07:38:00,775 11th St, Los Angeles,CA,90001 +222745,Apple Airpods Headphones,1,150.0,2019-06-08 16:12:00,261 Sunset St, New York City,NY,10001 +222746,Google Phone,1,600.0,2019-06-13 10:37:00,2 2nd St, Boston,MA,02215 +222747,Lightning Charging Cable,1,14.95,2019-06-05 15:29:00,355 Church St, New York City,NY,10001 +222748,LG Dryer,1,600.0,2019-06-15 10:14:00,487 Johnson St, New York City,NY,10001 +222749,27in 4K Gaming Monitor,1,389.99,2019-06-16 08:17:00,634 Jackson St, Boston,MA,02215 +222750,Lightning Charging Cable,2,14.95,2019-06-06 11:46:00,894 Wilson St, Dallas,TX,75001 +222751,AA Batteries (4-pack),1,3.84,2019-06-01 11:14:00,24 12th St, Los Angeles,CA,90001 +222752,Lightning Charging Cable,1,14.95,2019-06-15 19:59:00,605 Pine St, Seattle,WA,98101 +222753,Google Phone,1,600.0,2019-06-05 18:37:00,38 2nd St, Dallas,TX,75001 +222754,20in Monitor,1,109.99,2019-06-04 13:02:00,228 2nd St, New York City,NY,10001 +222755,Flatscreen TV,1,300.0,2019-06-26 14:24:00,489 7th St, San Francisco,CA,94016 +222756,AA Batteries (4-pack),1,3.84,2019-06-16 11:57:00,803 6th St, Atlanta,GA,30301 +222757,AA Batteries (4-pack),1,3.84,2019-06-11 23:35:00,885 Elm St, New York City,NY,10001 +222758,Lightning Charging Cable,2,14.95,2019-06-25 00:02:00,181 North St, Dallas,TX,75001 +222759,Wired Headphones,1,11.99,2019-06-27 15:48:00,428 North St, New York City,NY,10001 +222760,Wired Headphones,2,11.99,2019-06-11 13:58:00,129 Chestnut St, Los Angeles,CA,90001 +222761,34in Ultrawide Monitor,1,379.99,2019-06-17 09:45:00,288 7th St, New York City,NY,10001 +222762,AA Batteries (4-pack),3,3.84,2019-06-21 15:59:00,204 Spruce St, Boston,MA,02215 +222763,AAA Batteries (4-pack),1,2.99,2019-06-08 19:39:00,159 4th St, Atlanta,GA,30301 +222764,AA Batteries (4-pack),1,3.84,2019-06-08 20:19:00,989 Lakeview St, Dallas,TX,75001 +222765,Macbook Pro Laptop,1,1700.0,2019-06-14 21:33:00,319 6th St, Portland,OR,97035 +222766,USB-C Charging Cable,1,11.95,2019-06-26 19:26:00,722 9th St, San Francisco,CA,94016 +222767,Lightning Charging Cable,1,14.95,2019-06-26 13:57:00,425 Willow St, Seattle,WA,98101 +222768,AA Batteries (4-pack),1,3.84,2019-06-06 16:18:00,493 13th St, Los Angeles,CA,90001 +222769,Apple Airpods Headphones,1,150.0,2019-06-18 18:35:00,913 Wilson St, Atlanta,GA,30301 +222770,34in Ultrawide Monitor,1,379.99,2019-06-27 14:55:00,34 Sunset St, San Francisco,CA,94016 +222771,20in Monitor,1,109.99,2019-06-23 19:55:00,512 Sunset St, Dallas,TX,75001 +222772,27in FHD Monitor,1,149.99,2019-06-26 19:17:00,186 North St, Portland,OR,97035 +222773,34in Ultrawide Monitor,1,379.99,2019-06-23 14:35:00,904 Walnut St, New York City,NY,10001 +222774,iPhone,1,700.0,2019-06-17 19:56:00,788 Madison St, Boston,MA,02215 +222775,AA Batteries (4-pack),1,3.84,2019-06-19 17:30:00,731 Adams St, Boston,MA,02215 +222776,Lightning Charging Cable,2,14.95,2019-06-17 15:45:00,380 Park St, San Francisco,CA,94016 +222777,ThinkPad Laptop,1,999.99,2019-06-06 11:14:00,42 Hickory St, Portland,ME,04101 +222778,USB-C Charging Cable,1,11.95,2019-06-13 17:06:00,9 Spruce St, New York City,NY,10001 +222779,Apple Airpods Headphones,1,150.0,2019-06-14 11:04:00,176 Ridge St, Dallas,TX,75001 +222780,20in Monitor,1,109.99,2019-06-27 05:31:00,66 Ridge St, Portland,OR,97035 +222781,AA Batteries (4-pack),1,3.84,2019-06-04 14:43:00,949 Wilson St, Austin,TX,73301 +222782,Vareebadd Phone,1,400.0,2019-06-05 18:23:00,417 Elm St, Los Angeles,CA,90001 +222783,AA Batteries (4-pack),2,3.84,2019-06-11 17:30:00,680 Main St, Atlanta,GA,30301 +222784,Apple Airpods Headphones,1,150.0,2019-06-10 22:45:00,230 12th St, Los Angeles,CA,90001 +222785,Wired Headphones,1,11.99,2019-06-02 07:35:00,247 Center St, San Francisco,CA,94016 +222786,34in Ultrawide Monitor,1,379.99,2019-06-21 13:20:00,875 Johnson St, New York City,NY,10001 +222787,AA Batteries (4-pack),1,3.84,2019-06-03 02:22:00,799 Spruce St, Seattle,WA,98101 +222787,27in 4K Gaming Monitor,1,389.99,2019-06-03 02:22:00,799 Spruce St, Seattle,WA,98101 +222788,27in 4K Gaming Monitor,1,389.99,2019-06-01 22:08:00,494 Jefferson St, Portland,ME,04101 +222789,Google Phone,1,600.0,2019-06-01 09:23:00,407 River St, New York City,NY,10001 +222790,AA Batteries (4-pack),1,3.84,2019-06-01 18:11:00,933 Chestnut St, Boston,MA,02215 +222791,ThinkPad Laptop,1,999.99,2019-06-09 12:54:00,284 Cedar St, Portland,ME,04101 +222792,USB-C Charging Cable,2,11.95,2019-06-22 14:35:00,703 Sunset St, Austin,TX,73301 +222793,Bose SoundSport Headphones,1,99.99,2019-06-28 19:56:00,132 5th St, Portland,OR,97035 +222794,Bose SoundSport Headphones,1,99.99,2019-06-07 19:27:00,590 Cedar St, Los Angeles,CA,90001 +222795,Lightning Charging Cable,1,14.95,2019-06-18 18:55:00,64 11th St, Atlanta,GA,30301 +222796,Apple Airpods Headphones,1,150.0,2019-06-07 10:14:00,200 Maple St, Seattle,WA,98101 +222797,20in Monitor,1,109.99,2019-06-12 09:38:00,609 Lakeview St, Boston,MA,02215 +222798,Apple Airpods Headphones,1,150.0,2019-06-06 10:12:00,47 Chestnut St, Atlanta,GA,30301 +222799,Wired Headphones,1,11.99,2019-06-15 22:28:00,80 Madison St, New York City,NY,10001 +222800,AA Batteries (4-pack),1,3.84,2019-06-30 15:21:00,220 Cedar St, Portland,OR,97035 +222801,Wired Headphones,1,11.99,2019-06-27 12:13:00,717 Spruce St, San Francisco,CA,94016 +222802,Bose SoundSport Headphones,1,99.99,2019-06-27 10:14:00,243 West St, New York City,NY,10001 +222803,Bose SoundSport Headphones,1,99.99,2019-06-12 23:44:00,284 Lake St, New York City,NY,10001 +222804,27in 4K Gaming Monitor,1,389.99,2019-06-08 13:15:00,637 Main St, Boston,MA,02215 +222805,Bose SoundSport Headphones,1,99.99,2019-06-10 11:50:00,701 Cedar St, San Francisco,CA,94016 +222806,AAA Batteries (4-pack),1,2.99,2019-06-11 18:22:00,781 Main St, San Francisco,CA,94016 +222807,34in Ultrawide Monitor,1,379.99,2019-06-26 22:28:00,924 Pine St, New York City,NY,10001 +222808,USB-C Charging Cable,1,11.95,2019-06-21 19:20:00,863 Dogwood St, Dallas,TX,75001 +222809,Wired Headphones,1,11.99,2019-06-25 11:14:00,371 Maple St, Portland,OR,97035 +222810,20in Monitor,1,109.99,2019-06-15 10:23:00,347 Adams St, San Francisco,CA,94016 +222811,Wired Headphones,1,11.99,2019-06-04 18:48:00,507 Johnson St, Portland,OR,97035 +222812,Vareebadd Phone,1,400.0,2019-06-16 13:13:00,567 Meadow St, Los Angeles,CA,90001 +222812,USB-C Charging Cable,1,11.95,2019-06-16 13:13:00,567 Meadow St, Los Angeles,CA,90001 +222812,Wired Headphones,1,11.99,2019-06-16 13:13:00,567 Meadow St, Los Angeles,CA,90001 +222813,AAA Batteries (4-pack),1,2.99,2019-06-30 23:36:00,825 7th St, Los Angeles,CA,90001 +222814,Wired Headphones,2,11.99,2019-06-06 10:49:00,244 Lakeview St, New York City,NY,10001 +222815,Lightning Charging Cable,2,14.95,2019-06-06 23:07:00,315 9th St, Boston,MA,02215 +222816,Flatscreen TV,1,300.0,2019-06-27 21:52:00,65 8th St, San Francisco,CA,94016 +222817,iPhone,1,700.0,2019-06-21 10:27:00,114 7th St, Los Angeles,CA,90001 +222817,Wired Headphones,1,11.99,2019-06-21 10:27:00,114 7th St, Los Angeles,CA,90001 +222818,Wired Headphones,1,11.99,2019-06-22 02:35:00,757 Willow St, New York City,NY,10001 +222819,Lightning Charging Cable,1,14.95,2019-06-07 10:42:00,926 4th St, Dallas,TX,75001 +222820,Google Phone,1,600.0,2019-06-25 18:50:00,764 Madison St, San Francisco,CA,94016 +222821,AAA Batteries (4-pack),2,2.99,2019-06-12 22:08:00,935 Forest St, Portland,OR,97035 +222822,Macbook Pro Laptop,1,1700.0,2019-06-17 00:18:00,393 Willow St, San Francisco,CA,94016 +222823,AA Batteries (4-pack),1,3.84,2019-06-16 13:05:00,994 Center St, Seattle,WA,98101 +222824,Apple Airpods Headphones,1,150.0,2019-06-30 12:54:00,293 Washington St, Seattle,WA,98101 +222825,USB-C Charging Cable,1,11.95,2019-06-09 18:02:00,228 Hill St, Atlanta,GA,30301 +222826,AAA Batteries (4-pack),2,2.99,2019-06-25 08:33:00,208 14th St, San Francisco,CA,94016 +222827,AA Batteries (4-pack),1,3.84,2019-06-23 08:19:00,588 Dogwood St, Austin,TX,73301 +222828,Apple Airpods Headphones,1,150.0,2019-06-21 15:05:00,92 West St, New York City,NY,10001 +222829,USB-C Charging Cable,1,11.95,2019-06-27 09:00:00,55 South St, San Francisco,CA,94016 +222830,AA Batteries (4-pack),1,3.84,2019-06-10 17:25:00,474 Madison St, Seattle,WA,98101 +222831,Flatscreen TV,1,300.0,2019-06-01 18:06:00,565 Madison St, Seattle,WA,98101 +222832,27in 4K Gaming Monitor,1,389.99,2019-06-25 01:09:00,910 4th St, New York City,NY,10001 +222833,AAA Batteries (4-pack),2,2.99,2019-06-13 17:15:00,126 Lake St, Austin,TX,73301 +222834,AAA Batteries (4-pack),2,2.99,2019-06-22 12:34:00,150 8th St, Los Angeles,CA,90001 +222835,LG Washing Machine,1,600.0,2019-06-22 09:46:00,473 Lincoln St, Atlanta,GA,30301 +222836,Bose SoundSport Headphones,1,99.99,2019-06-25 10:11:00,687 Ridge St, New York City,NY,10001 +222837,AAA Batteries (4-pack),1,2.99,2019-06-11 13:59:00,898 13th St, Atlanta,GA,30301 +222838,27in FHD Monitor,1,149.99,2019-06-14 15:57:00,473 10th St, San Francisco,CA,94016 +222839,LG Washing Machine,1,600.0,2019-06-29 09:27:00,592 8th St, Atlanta,GA,30301 +222840,AA Batteries (4-pack),2,3.84,2019-06-22 00:34:00,781 6th St, Austin,TX,73301 +222841,Wired Headphones,3,11.99,2019-06-21 12:34:00,602 River St, San Francisco,CA,94016 +222842,USB-C Charging Cable,1,11.95,2019-06-16 16:32:00,902 Cedar St, Boston,MA,02215 +222843,Google Phone,1,600.0,2019-06-14 19:04:00,845 River St, Los Angeles,CA,90001 +222844,27in FHD Monitor,1,149.99,2019-06-14 00:26:00,265 Adams St, San Francisco,CA,94016 +222845,AA Batteries (4-pack),3,3.84,2019-06-29 08:58:00,589 1st St, Atlanta,GA,30301 +222846,ThinkPad Laptop,1,999.99,2019-06-15 16:19:00,459 Johnson St, Dallas,TX,75001 +222847,Apple Airpods Headphones,1,150.0,2019-06-30 08:49:00,633 Main St, Boston,MA,02215 +222848,Bose SoundSport Headphones,1,99.99,2019-06-22 21:41:00,428 8th St, Los Angeles,CA,90001 +222849,USB-C Charging Cable,2,11.95,2019-06-09 19:09:00,26 9th St, Boston,MA,02215 +222850,Flatscreen TV,1,300.0,2019-06-20 17:11:00,221 Jackson St, Atlanta,GA,30301 +222851,Wired Headphones,1,11.99,2019-06-08 15:33:00,99 14th St, New York City,NY,10001 +222852,USB-C Charging Cable,1,11.95,2019-06-26 20:03:00,97 5th St, San Francisco,CA,94016 +222853,AA Batteries (4-pack),1,3.84,2019-06-28 13:03:00,267 5th St, Seattle,WA,98101 +222854,20in Monitor,1,109.99,2019-06-30 01:06:00,892 4th St, New York City,NY,10001 +222855,AA Batteries (4-pack),1,3.84,2019-06-12 11:35:00,735 Highland St, New York City,NY,10001 +222856,AAA Batteries (4-pack),2,2.99,2019-06-03 13:53:00,164 Johnson St, San Francisco,CA,94016 +222857,AA Batteries (4-pack),2,3.84,2019-06-20 16:09:00,36 West St, Atlanta,GA,30301 +222858,Apple Airpods Headphones,1,150.0,2019-06-14 19:00:00,656 Maple St, Boston,MA,02215 +222859,iPhone,1,700.0,2019-06-04 19:38:00,512 13th St, Atlanta,GA,30301 +222860,Flatscreen TV,1,300.0,2019-06-11 12:14:00,782 Elm St, Boston,MA,02215 +222861,Wired Headphones,2,11.99,2019-06-26 22:16:00,606 Pine St, Portland,OR,97035 +222862,27in FHD Monitor,1,149.99,2019-06-21 07:33:00,159 Maple St, San Francisco,CA,94016 +222863,27in FHD Monitor,1,149.99,2019-06-07 11:05:00,222 Walnut St, Austin,TX,73301 +222863,Bose SoundSport Headphones,1,99.99,2019-06-07 11:05:00,222 Walnut St, Austin,TX,73301 +222864,Apple Airpods Headphones,1,150.0,2019-06-29 19:46:00,382 11th St, San Francisco,CA,94016 +222865,Wired Headphones,1,11.99,2019-06-14 20:01:00,233 7th St, New York City,NY,10001 +222866,AA Batteries (4-pack),1,3.84,2019-06-16 19:55:00,583 Dogwood St, New York City,NY,10001 +222867,AA Batteries (4-pack),1,3.84,2019-06-27 07:57:00,408 Hickory St, San Francisco,CA,94016 +222868,iPhone,1,700.0,2019-06-16 13:53:00,505 North St, New York City,NY,10001 +222868,Apple Airpods Headphones,1,150.0,2019-06-16 13:53:00,505 North St, New York City,NY,10001 +222869,Flatscreen TV,1,300.0,2019-06-30 21:03:00,464 Ridge St, Boston,MA,02215 +222870,AA Batteries (4-pack),2,3.84,2019-06-01 08:47:00,697 Forest St, Dallas,TX,75001 +222871,Lightning Charging Cable,1,14.95,2019-06-09 10:16:00,317 Madison St, Los Angeles,CA,90001 +222872,USB-C Charging Cable,1,11.95,2019-06-17 08:28:00,402 11th St, Boston,MA,02215 +222873,Lightning Charging Cable,1,14.95,2019-06-29 10:20:00,18 Maple St, Boston,MA,02215 +222874,ThinkPad Laptop,1,999.99,2019-06-09 11:14:00,549 Adams St, Los Angeles,CA,90001 +222875,AA Batteries (4-pack),1,3.84,2019-06-07 11:46:00,829 Jackson St, New York City,NY,10001 +222876,LG Washing Machine,1,600.0,2019-06-08 12:31:00,749 Madison St, San Francisco,CA,94016 +222877,Wired Headphones,1,11.99,2019-06-28 21:28:00,745 8th St, Dallas,TX,75001 +222878,Lightning Charging Cable,1,14.95,2019-06-18 18:56:00,371 6th St, Los Angeles,CA,90001 +222879,AA Batteries (4-pack),1,3.84,2019-06-07 19:38:00,997 Meadow St, Dallas,TX,75001 +222880,Lightning Charging Cable,1,14.95,2019-06-28 11:52:00,787 Jackson St, San Francisco,CA,94016 +222881,AA Batteries (4-pack),1,3.84,2019-06-05 16:06:00,620 Park St, Atlanta,GA,30301 +222882,Apple Airpods Headphones,1,150.0,2019-06-18 11:37:00,990 Walnut St, Los Angeles,CA,90001 +222882,AA Batteries (4-pack),1,3.84,2019-06-18 11:37:00,990 Walnut St, Los Angeles,CA,90001 +222883,34in Ultrawide Monitor,1,379.99,2019-06-14 09:12:00,508 West St, San Francisco,CA,94016 +222884,Google Phone,1,600.0,2019-06-04 12:06:00,819 Pine St, New York City,NY,10001 +222884,USB-C Charging Cable,1,11.95,2019-06-04 12:06:00,819 Pine St, New York City,NY,10001 +222885,LG Dryer,1,600.0,2019-06-01 13:22:00,447 Spruce St, New York City,NY,10001 +222886,AA Batteries (4-pack),1,3.84,2019-06-07 12:18:00,703 14th St, Portland,ME,04101 +222887,USB-C Charging Cable,1,11.95,2019-06-14 12:19:00,801 9th St, Austin,TX,73301 +222888,USB-C Charging Cable,1,11.95,2019-06-11 15:59:00,615 Elm St, Boston,MA,02215 +222889,Bose SoundSport Headphones,1,99.99,2019-06-05 06:19:00,448 10th St, Los Angeles,CA,90001 +222890,AAA Batteries (4-pack),1,2.99,2019-06-24 07:54:00,665 South St, San Francisco,CA,94016 +222891,Lightning Charging Cable,1,14.95,2019-06-04 23:55:00,99 Lincoln St, New York City,NY,10001 +222892,AAA Batteries (4-pack),2,2.99,2019-06-21 12:48:00,23 1st St, New York City,NY,10001 +222893,USB-C Charging Cable,1,11.95,2019-06-28 18:50:00,802 Church St, Los Angeles,CA,90001 +222894,USB-C Charging Cable,1,11.95,2019-06-15 16:56:00,449 12th St, Seattle,WA,98101 +222895,34in Ultrawide Monitor,1,379.99,2019-06-29 20:39:00,497 1st St, San Francisco,CA,94016 +222896,Wired Headphones,1,11.99,2019-06-13 19:54:00,594 Meadow St, New York City,NY,10001 +222897,27in 4K Gaming Monitor,1,389.99,2019-06-01 23:58:00,350 10th St, San Francisco,CA,94016 +222898,20in Monitor,1,109.99,2019-06-29 15:08:00,798 Park St, San Francisco,CA,94016 +222899,AAA Batteries (4-pack),1,2.99,2019-06-18 16:34:00,688 1st St, New York City,NY,10001 +222900,Lightning Charging Cable,1,14.95,2019-06-19 20:00:00,590 Wilson St, Los Angeles,CA,90001 +222901,AAA Batteries (4-pack),1,2.99,2019-06-11 04:00:00,891 South St, Atlanta,GA,30301 +222902,Lightning Charging Cable,1,14.95,2019-06-10 17:43:00,847 Main St, Atlanta,GA,30301 +222903,iPhone,1,700.0,2019-06-07 22:21:00,685 Hickory St, New York City,NY,10001 +222903,Lightning Charging Cable,1,14.95,2019-06-07 22:21:00,685 Hickory St, New York City,NY,10001 +222904,Macbook Pro Laptop,1,1700.0,2019-06-09 22:07:00,975 2nd St, Los Angeles,CA,90001 +222905,AAA Batteries (4-pack),1,2.99,2019-06-07 19:02:00,795 Pine St, Boston,MA,02215 +222906,27in FHD Monitor,1,149.99,2019-06-01 19:29:00,495 North St, New York City,NY,10001 +222907,USB-C Charging Cable,1,11.95,2019-06-22 18:57:00,319 Ridge St, San Francisco,CA,94016 +222908,USB-C Charging Cable,1,11.95,2019-06-26 18:35:00,916 Main St, San Francisco,CA,94016 +222909,AAA Batteries (4-pack),1,2.99,2019-06-25 14:33:00,209 11th St, Atlanta,GA,30301 +162009,iPhone,1,700.0,2019-03-28 20:59:00,942 Church St, Austin,TX,73301 +162009,Lightning Charging Cable,1,14.95,2019-03-28 20:59:00,942 Church St, Austin,TX,73301 +162009,Wired Headphones,2,11.99,2019-03-28 20:59:00,942 Church St, Austin,TX,73301 +162010,Bose SoundSport Headphones,1,99.99,2019-03-17 05:39:00,261 10th St, San Francisco,CA,94016 +162011,34in Ultrawide Monitor,1,379.99,2019-03-10 00:01:00,764 13th St, San Francisco,CA,94016 +162012,AA Batteries (4-pack),1,3.84,2019-03-20 21:33:00,187 Ridge St, San Francisco,CA,94016 +162013,34in Ultrawide Monitor,1,379.99,2019-03-15 23:05:00,904 Main St, Austin,TX,73301 +162014,USB-C Charging Cable,1,11.95,2019-03-01 21:33:00,10 13th St, San Francisco,CA,94016 +162015,AA Batteries (4-pack),1,3.84,2019-03-02 08:52:00,949 Jefferson St, Boston,MA,02215 +162016,AAA Batteries (4-pack),5,2.99,2019-03-19 21:10:00,469 Highland St, Atlanta,GA,30301 +162017,Lightning Charging Cable,1,14.95,2019-03-02 13:55:00,449 River St, San Francisco,CA,94016 +162018,USB-C Charging Cable,2,11.95,2019-03-18 11:07:00,925 Maple St, Portland,OR,97035 +162019,AAA Batteries (4-pack),1,2.99,2019-03-05 12:20:00,639 4th St, Atlanta,GA,30301 +162020,LG Washing Machine,1,600.0,2019-03-26 18:17:00,616 Jackson St, Dallas,TX,75001 +162021,Wired Headphones,1,11.99,2019-03-30 12:02:00,645 Wilson St, Los Angeles,CA,90001 +162022,AA Batteries (4-pack),1,3.84,2019-03-17 22:18:00,473 Hill St, New York City,NY,10001 +162023,Apple Airpods Headphones,1,150.0,2019-03-11 20:00:00,404 Park St, San Francisco,CA,94016 +162024,27in 4K Gaming Monitor,1,389.99,2019-03-17 09:22:00,952 Willow St, Atlanta,GA,30301 +162025,AAA Batteries (4-pack),1,2.99,2019-03-07 20:50:00,110 7th St, Boston,MA,02215 +162026,iPhone,1,700.0,2019-03-22 22:31:00,71 Pine St, Austin,TX,73301 +162027,AAA Batteries (4-pack),1,2.99,2019-03-16 20:52:00,421 Main St, Los Angeles,CA,90001 +162028,AAA Batteries (4-pack),3,2.99,2019-03-20 15:23:00,739 1st St, San Francisco,CA,94016 +162029,AAA Batteries (4-pack),1,2.99,2019-03-26 12:17:00,141 North St, Atlanta,GA,30301 +162030,Google Phone,1,600.0,2019-03-09 16:50:00,463 4th St, San Francisco,CA,94016 +162031,Lightning Charging Cable,1,14.95,2019-03-28 17:03:00,131 Johnson St, Boston,MA,02215 +162032,Lightning Charging Cable,1,14.95,2019-03-31 10:39:00,498 4th St, Los Angeles,CA,90001 +162033,iPhone,1,700.0,2019-03-19 11:06:00,267 Johnson St, Dallas,TX,75001 +162034,USB-C Charging Cable,1,11.95,2019-03-26 20:34:00,104 Center St, Seattle,WA,98101 +162035,Macbook Pro Laptop,1,1700.0,2019-03-08 13:07:00,44 4th St, Los Angeles,CA,90001 +162036,Lightning Charging Cable,1,14.95,2019-03-09 19:39:00,905 Spruce St, San Francisco,CA,94016 +162037,iPhone,1,700.0,2019-03-23 02:11:00,277 Elm St, Los Angeles,CA,90001 +162037,Lightning Charging Cable,1,14.95,2019-03-23 02:11:00,277 Elm St, Los Angeles,CA,90001 +162038,AAA Batteries (4-pack),2,2.99,2019-03-18 20:31:00,53 10th St, Atlanta,GA,30301 +162039,AA Batteries (4-pack),1,3.84,2019-03-29 12:01:00,175 West St, San Francisco,CA,94016 +162040,USB-C Charging Cable,1,11.95,2019-03-25 09:11:00,973 North St, Austin,TX,73301 +162041,Apple Airpods Headphones,1,150.0,2019-03-14 01:01:00,633 13th St, Austin,TX,73301 +162042,USB-C Charging Cable,1,11.95,2019-03-09 22:39:00,661 7th St, San Francisco,CA,94016 +162043,AA Batteries (4-pack),1,3.84,2019-03-29 10:59:00,883 Walnut St, Atlanta,GA,30301 +162044,27in FHD Monitor,1,149.99,2019-03-22 10:11:00,469 9th St, Dallas,TX,75001 +162045,Apple Airpods Headphones,1,150.0,2019-03-26 13:31:00,906 Park St, New York City,NY,10001 +162046,AAA Batteries (4-pack),2,2.99,2019-03-20 20:33:00,661 1st St, San Francisco,CA,94016 +162047,Bose SoundSport Headphones,1,99.99,2019-03-08 18:41:00,819 9th St, Austin,TX,73301 +162048,AA Batteries (4-pack),1,3.84,2019-03-31 19:24:00,819 Main St, New York City,NY,10001 +162049,Lightning Charging Cable,1,14.95,2019-03-25 13:35:00,307 Chestnut St, Austin,TX,73301 +162050,AAA Batteries (4-pack),1,2.99,2019-03-26 17:09:00,870 Spruce St, Boston,MA,02215 +162051,AAA Batteries (4-pack),1,2.99,2019-03-12 09:12:00,565 South St, Boston,MA,02215 +162052,Wired Headphones,1,11.99,2019-03-11 09:44:00,971 Washington St, Los Angeles,CA,90001 +162053,iPhone,1,700.0,2019-03-10 18:29:00,660 7th St, Seattle,WA,98101 +162054,Wired Headphones,1,11.99,2019-03-20 00:42:00,358 5th St, San Francisco,CA,94016 +162055,AA Batteries (4-pack),1,3.84,2019-03-29 09:21:00,675 8th St, Los Angeles,CA,90001 +162056,Wired Headphones,1,11.99,2019-03-17 10:24:00,55 Adams St, San Francisco,CA,94016 +162057,Wired Headphones,1,11.99,2019-03-30 18:44:00,485 Maple St, Los Angeles,CA,90001 +162058,27in FHD Monitor,1,149.99,2019-03-30 02:30:00,510 Church St, New York City,NY,10001 +162059,USB-C Charging Cable,1,11.95,2019-03-03 05:47:00,602 Willow St, Seattle,WA,98101 +162060,AAA Batteries (4-pack),3,2.99,2019-03-10 16:04:00,703 Lake St, Seattle,WA,98101 +162061,Wired Headphones,1,11.99,2019-03-01 22:07:00,967 10th St, New York City,NY,10001 +162062,AAA Batteries (4-pack),1,2.99,2019-03-24 03:37:00,235 Park St, Portland,OR,97035 +162063,AAA Batteries (4-pack),2,2.99,2019-03-02 11:58:00,693 12th St, Austin,TX,73301 +162064,Macbook Pro Laptop,1,1700.0,2019-03-05 09:00:00,414 Willow St, San Francisco,CA,94016 +162065,Google Phone,1,600.0,2019-03-02 13:18:00,862 Spruce St, San Francisco,CA,94016 +162066,AA Batteries (4-pack),1,3.84,2019-03-13 13:57:00,602 Pine St, New York City,NY,10001 +162066,USB-C Charging Cable,2,11.95,2019-03-13 13:57:00,602 Pine St, New York City,NY,10001 +162067,ThinkPad Laptop,1,999.99,2019-03-07 23:40:00,4 Cedar St, San Francisco,CA,94016 +162068,Wired Headphones,1,11.99,2019-03-24 12:25:00,117 1st St, Austin,TX,73301 +162069,AA Batteries (4-pack),1,3.84,2019-03-15 16:53:00,853 Park St, Boston,MA,02215 +162070,27in FHD Monitor,1,149.99,2019-03-15 18:19:00,859 South St, Los Angeles,CA,90001 +162071,Vareebadd Phone,1,400.0,2019-03-30 20:23:00,334 Jackson St, Atlanta,GA,30301 +162071,USB-C Charging Cable,1,11.95,2019-03-30 20:23:00,334 Jackson St, Atlanta,GA,30301 +162072,AA Batteries (4-pack),1,3.84,2019-03-02 12:04:00,945 Adams St, New York City,NY,10001 +162073,Bose SoundSport Headphones,1,99.99,2019-03-23 20:52:00,573 Lakeview St, San Francisco,CA,94016 +162074,Apple Airpods Headphones,1,150.0,2019-03-05 12:45:00,928 Dogwood St, San Francisco,CA,94016 +162075,Apple Airpods Headphones,1,150.0,2019-03-11 09:19:00,456 7th St, New York City,NY,10001 +162076,Wired Headphones,1,11.99,2019-03-04 09:12:00,424 Wilson St, Dallas,TX,75001 +162077,AAA Batteries (4-pack),1,2.99,2019-03-22 11:54:00,783 Johnson St, New York City,NY,10001 +162078,Lightning Charging Cable,1,14.95,2019-03-02 16:48:00,167 North St, San Francisco,CA,94016 +162079,Google Phone,1,600.0,2019-03-24 21:36:00,144 West St, Los Angeles,CA,90001 +162080,Apple Airpods Headphones,1,150.0,2019-03-24 09:37:00,245 Chestnut St, Boston,MA,02215 +162081,Lightning Charging Cable,1,14.95,2019-03-26 20:58:00,183 Dogwood St, Los Angeles,CA,90001 +162082,Vareebadd Phone,1,400.0,2019-03-09 14:15:00,401 Wilson St, New York City,NY,10001 +162082,Wired Headphones,1,11.99,2019-03-09 14:15:00,401 Wilson St, New York City,NY,10001 +162083,Wired Headphones,1,11.99,2019-03-27 19:04:00,162 Lakeview St, Atlanta,GA,30301 +162084,iPhone,1,700.0,2019-03-27 12:53:00,585 14th St, Los Angeles,CA,90001 +162085,Lightning Charging Cable,1,14.95,2019-03-24 19:52:00,705 Highland St, San Francisco,CA,94016 +162086,Google Phone,1,600.0,2019-03-18 09:12:00,410 Chestnut St, New York City,NY,10001 +162087,Google Phone,1,600.0,2019-03-18 13:58:00,303 Chestnut St, Boston,MA,02215 +162087,USB-C Charging Cable,1,11.95,2019-03-18 13:58:00,303 Chestnut St, Boston,MA,02215 +162088,Google Phone,1,600.0,2019-03-02 15:50:00,231 Jackson St, Los Angeles,CA,90001 +162089,Wired Headphones,1,11.99,2019-03-07 12:25:00,692 13th St, New York City,NY,10001 +162090,Bose SoundSport Headphones,1,99.99,2019-03-12 13:03:00,747 Wilson St, Austin,TX,73301 +162091,Bose SoundSport Headphones,1,99.99,2019-03-18 08:13:00,926 Main St, Boston,MA,02215 +162092,Flatscreen TV,1,300.0,2019-03-18 11:29:00,477 11th St, Seattle,WA,98101 +162092,AAA Batteries (4-pack),1,2.99,2019-03-18 11:29:00,477 11th St, Seattle,WA,98101 +162093,Vareebadd Phone,1,400.0,2019-03-19 11:32:00,855 Lakeview St, Boston,MA,02215 +162094,ThinkPad Laptop,1,999.99,2019-03-21 03:42:00,959 River St, Atlanta,GA,30301 +162095,Wired Headphones,1,11.99,2019-03-29 13:18:00,628 Lakeview St, Seattle,WA,98101 +162096,Bose SoundSport Headphones,1,99.99,2019-03-04 00:20:00,323 Hill St, New York City,NY,10001 +162097,Flatscreen TV,1,300.0,2019-03-28 13:43:00,929 Elm St, New York City,NY,10001 +162098,Flatscreen TV,1,300.0,2019-03-07 15:44:00,84 Center St, New York City,NY,10001 +162099,USB-C Charging Cable,1,11.95,2019-03-03 00:18:00,598 Washington St, Los Angeles,CA,90001 +162100,Wired Headphones,1,11.99,2019-03-04 00:17:00,635 Spruce St, Boston,MA,02215 +162101,Macbook Pro Laptop,1,1700.0,2019-03-30 10:47:00,253 11th St, Seattle,WA,98101 +162102,Wired Headphones,1,11.99,2019-03-31 19:51:00,69 Center St, New York City,NY,10001 +162103,AAA Batteries (4-pack),1,2.99,2019-03-18 20:50:00,860 Main St, Portland,OR,97035 +162104,Lightning Charging Cable,1,14.95,2019-03-05 15:25:00,572 Walnut St, New York City,NY,10001 +162105,USB-C Charging Cable,1,11.95,2019-03-09 08:45:00,911 South St, Seattle,WA,98101 +162106,AA Batteries (4-pack),1,3.84,2019-03-02 15:25:00,484 Cedar St, Los Angeles,CA,90001 +162107,Wired Headphones,1,11.99,2019-03-29 15:15:00,260 14th St, Austin,TX,73301 +162108,USB-C Charging Cable,2,11.95,2019-03-26 11:38:00,113 7th St, Los Angeles,CA,90001 +162109,Lightning Charging Cable,1,14.95,2019-03-25 11:12:00,686 5th St, New York City,NY,10001 +162110,20in Monitor,1,109.99,2019-03-15 09:05:00,705 South St, Los Angeles,CA,90001 +162111,AA Batteries (4-pack),3,3.84,2019-03-08 16:59:00,561 West St, San Francisco,CA,94016 +162112,34in Ultrawide Monitor,1,379.99,2019-03-15 21:52:00,953 Spruce St, Boston,MA,02215 +162113,Bose SoundSport Headphones,1,99.99,2019-03-27 13:09:00,365 Cherry St, San Francisco,CA,94016 +162114,Lightning Charging Cable,1,14.95,2019-03-21 14:29:00,577 South St, Atlanta,GA,30301 +162115,Flatscreen TV,1,300.0,2019-03-26 08:06:00,93 Sunset St, San Francisco,CA,94016 +162116,USB-C Charging Cable,1,11.95,2019-03-09 11:48:00,446 Adams St, Dallas,TX,75001 +162117,Wired Headphones,1,11.99,2019-03-11 14:12:00,82 Lake St, New York City,NY,10001 +162118,iPhone,1,700.0,2019-03-10 22:32:00,888 13th St, San Francisco,CA,94016 +162119,27in FHD Monitor,1,149.99,2019-03-06 13:46:00,980 2nd St, Austin,TX,73301 +162120,Macbook Pro Laptop,1,1700.0,2019-03-15 18:43:00,969 Washington St, Dallas,TX,75001 +162121,USB-C Charging Cable,1,11.95,2019-03-20 13:05:00,355 Main St, Portland,OR,97035 +162122,AAA Batteries (4-pack),1,2.99,2019-03-06 10:22:00,354 9th St, Seattle,WA,98101 +162123,Bose SoundSport Headphones,1,99.99,2019-03-13 18:02:00,295 South St, San Francisco,CA,94016 +162124,Macbook Pro Laptop,1,1700.0,2019-03-27 09:52:00,8 West St, San Francisco,CA,94016 +162125,27in 4K Gaming Monitor,1,389.99,2019-03-29 12:16:00,987 Chestnut St, San Francisco,CA,94016 +162126,Apple Airpods Headphones,1,150.0,2019-03-17 19:41:00,895 Jefferson St, Los Angeles,CA,90001 +162127,Macbook Pro Laptop,1,1700.0,2019-03-25 13:08:00,603 12th St, San Francisco,CA,94016 +162128,USB-C Charging Cable,1,11.95,2019-03-23 22:59:00,490 Jackson St, Seattle,WA,98101 +162129,AAA Batteries (4-pack),1,2.99,2019-03-11 16:14:00,962 Church St, San Francisco,CA,94016 +162130,USB-C Charging Cable,1,11.95,2019-03-08 12:17:00,211 Pine St, Dallas,TX,75001 +162131,USB-C Charging Cable,1,11.95,2019-03-10 23:29:00,334 Madison St, Boston,MA,02215 +162132,AA Batteries (4-pack),1,3.84,2019-03-15 06:52:00,488 7th St, Boston,MA,02215 +162133,AA Batteries (4-pack),1,3.84,2019-03-10 09:28:00,986 6th St, Seattle,WA,98101 +162134,Vareebadd Phone,1,400.0,2019-03-17 20:36:00,186 North St, Atlanta,GA,30301 +162135,USB-C Charging Cable,1,11.95,2019-03-23 22:58:00,112 Madison St, New York City,NY,10001 +162136,AA Batteries (4-pack),1,3.84,2019-03-28 11:13:00,708 4th St, San Francisco,CA,94016 +162137,Bose SoundSport Headphones,1,99.99,2019-03-14 16:05:00,275 Elm St, New York City,NY,10001 +162138,20in Monitor,1,109.99,2019-03-19 10:10:00,628 Forest St, Seattle,WA,98101 +162139,34in Ultrawide Monitor,1,379.99,2019-03-21 12:21:00,869 9th St, New York City,NY,10001 +162140,ThinkPad Laptop,1,999.99,2019-03-06 23:34:00,622 Meadow St, Seattle,WA,98101 +162141,Lightning Charging Cable,1,14.95,2019-03-08 19:03:00,289 Chestnut St, New York City,NY,10001 +162142,Vareebadd Phone,1,400.0,2019-03-01 12:57:00,479 Maple St, Atlanta,GA,30301 +162142,AA Batteries (4-pack),1,3.84,2019-03-01 12:57:00,479 Maple St, Atlanta,GA,30301 +162143,USB-C Charging Cable,1,11.95,2019-03-09 13:26:00,886 12th St, San Francisco,CA,94016 +162144,Macbook Pro Laptop,1,1700.0,2019-03-24 13:04:00,342 Dogwood St, San Francisco,CA,94016 +162145,Bose SoundSport Headphones,1,99.99,2019-03-11 16:56:00,680 10th St, New York City,NY,10001 +162146,Apple Airpods Headphones,1,150.0,2019-03-11 22:20:00,326 Wilson St, Seattle,WA,98101 +162147,Wired Headphones,1,11.99,2019-03-05 10:53:00,310 Forest St, Austin,TX,73301 +162148,USB-C Charging Cable,1,11.95,2019-03-17 23:55:00,434 4th St, Los Angeles,CA,90001 +162149,Apple Airpods Headphones,1,150.0,2019-03-05 00:36:00,371 Forest St, Austin,TX,73301 +162150,AA Batteries (4-pack),1,3.84,2019-03-28 22:21:00,963 4th St, Boston,MA,02215 +162151,Bose SoundSport Headphones,1,99.99,2019-03-25 20:11:00,53 Washington St, Dallas,TX,75001 +162152,Lightning Charging Cable,1,14.95,2019-03-24 09:42:00,727 Lake St, Atlanta,GA,30301 +162153,27in FHD Monitor,1,149.99,2019-03-08 08:31:00,647 Madison St, New York City,NY,10001 +162154,ThinkPad Laptop,1,999.99,2019-03-30 10:18:00,932 Forest St, Los Angeles,CA,90001 +162155,AA Batteries (4-pack),1,3.84,2019-03-28 16:35:00,706 11th St, Los Angeles,CA,90001 +162156,Wired Headphones,1,11.99,2019-03-01 22:47:00,352 6th St, Portland,OR,97035 +162157,Flatscreen TV,1,300.0,2019-03-27 18:56:00,620 13th St, Boston,MA,02215 +162158,USB-C Charging Cable,1,11.95,2019-03-20 17:50:00,865 Hill St, San Francisco,CA,94016 +162159,Wired Headphones,1,11.99,2019-03-30 13:29:00,776 9th St, Los Angeles,CA,90001 +162160,Apple Airpods Headphones,1,150.0,2019-03-12 19:50:00,414 11th St, San Francisco,CA,94016 +162161,Wired Headphones,1,11.99,2019-03-30 19:20:00,853 14th St, Seattle,WA,98101 +162161,AAA Batteries (4-pack),2,2.99,2019-03-30 19:20:00,853 14th St, Seattle,WA,98101 +162162,Lightning Charging Cable,1,14.95,2019-03-05 08:32:00,435 Hill St, New York City,NY,10001 +162163,Flatscreen TV,1,300.0,2019-03-25 07:48:00,61 Sunset St, Los Angeles,CA,90001 +162164,AA Batteries (4-pack),1,3.84,2019-03-01 16:05:00,954 2nd St, San Francisco,CA,94016 +162165,Macbook Pro Laptop,1,1700.0,2019-03-12 12:32:00,911 Sunset St, San Francisco,CA,94016 +162166,AAA Batteries (4-pack),1,2.99,2019-03-06 21:36:00,989 Ridge St, Los Angeles,CA,90001 +162167,AA Batteries (4-pack),1,3.84,2019-03-02 13:36:00,713 13th St, Dallas,TX,75001 +162168,34in Ultrawide Monitor,1,379.99,2019-03-20 10:26:00,699 11th St, Boston,MA,02215 +162169,27in 4K Gaming Monitor,1,389.99,2019-03-11 13:43:00,500 River St, Dallas,TX,75001 +162170,Wired Headphones,2,11.99,2019-03-16 11:14:00,397 10th St, San Francisco,CA,94016 +162171,Lightning Charging Cable,1,14.95,2019-03-16 12:10:00,597 11th St, New York City,NY,10001 +162172,Wired Headphones,1,11.99,2019-03-03 18:34:00,176 Cherry St, San Francisco,CA,94016 +162173,Bose SoundSport Headphones,1,99.99,2019-03-07 14:09:00,973 14th St, Los Angeles,CA,90001 +162174,27in 4K Gaming Monitor,1,389.99,2019-03-05 18:44:00,844 Main St, Seattle,WA,98101 +162175,Lightning Charging Cable,1,14.95,2019-03-02 11:09:00,510 Forest St, Austin,TX,73301 +162176,Apple Airpods Headphones,1,150.0,2019-03-31 19:38:00,917 Chestnut St, Atlanta,GA,30301 +162177,ThinkPad Laptop,1,999.99,2019-03-22 19:40:00,323 14th St, Los Angeles,CA,90001 +162178,Lightning Charging Cable,1,14.95,2019-03-11 18:11:00,436 Wilson St, Boston,MA,02215 +162179,AAA Batteries (4-pack),1,2.99,2019-03-25 12:40:00,712 Maple St, Seattle,WA,98101 +162180,Flatscreen TV,1,300.0,2019-03-17 14:55:00,945 Willow St, Los Angeles,CA,90001 +162181,Macbook Pro Laptop,1,1700.0,2019-03-03 13:15:00,423 Lake St, Los Angeles,CA,90001 +162182,Google Phone,1,600.0,2019-03-19 13:01:00,455 Church St, Los Angeles,CA,90001 +162183,AA Batteries (4-pack),1,3.84,2019-03-08 16:22:00,427 Adams St, Los Angeles,CA,90001 +162184,AA Batteries (4-pack),1,3.84,2019-03-23 16:51:00,285 Ridge St, San Francisco,CA,94016 +162185,USB-C Charging Cable,1,11.95,2019-03-03 07:26:00,297 12th St, Los Angeles,CA,90001 +162186,AAA Batteries (4-pack),5,2.99,2019-03-05 14:17:00,180 Wilson St, Los Angeles,CA,90001 +162187,Google Phone,1,600.0,2019-03-16 10:34:00,964 9th St, San Francisco,CA,94016 +162187,USB-C Charging Cable,1,11.95,2019-03-16 10:34:00,964 9th St, San Francisco,CA,94016 +162188,AAA Batteries (4-pack),1,2.99,2019-03-02 20:28:00,971 7th St, New York City,NY,10001 +162189,iPhone,1,700.0,2019-03-23 14:06:00,892 11th St, San Francisco,CA,94016 +162189,Lightning Charging Cable,1,14.95,2019-03-23 14:06:00,892 11th St, San Francisco,CA,94016 +162189,27in 4K Gaming Monitor,1,389.99,2019-03-23 14:06:00,892 11th St, San Francisco,CA,94016 +162190,Wired Headphones,1,11.99,2019-03-04 20:47:00,478 Madison St, Boston,MA,02215 +162191,Apple Airpods Headphones,1,150.0,2019-03-05 20:49:00,6 5th St, New York City,NY,10001 +162192,AAA Batteries (4-pack),3,2.99,2019-03-06 18:27:00,269 Highland St, Dallas,TX,75001 +162193,Lightning Charging Cable,1,14.95,2019-03-14 10:27:00,29 Walnut St, San Francisco,CA,94016 +162194,27in FHD Monitor,1,149.99,2019-03-21 21:22:00,224 Cedar St, Austin,TX,73301 +162195,AAA Batteries (4-pack),3,2.99,2019-03-25 07:23:00,439 Madison St, Boston,MA,02215 +162196,AA Batteries (4-pack),1,3.84,2019-03-24 09:22:00,164 Johnson St, Portland,OR,97035 +162197,Macbook Pro Laptop,1,1700.0,2019-03-01 15:30:00,85 Chestnut St, San Francisco,CA,94016 +162198,Bose SoundSport Headphones,1,99.99,2019-03-16 19:18:00,322 Washington St, San Francisco,CA,94016 +162199,Macbook Pro Laptop,1,1700.0,2019-03-03 17:41:00,939 Dogwood St, Seattle,WA,98101 +162200,20in Monitor,1,109.99,2019-03-15 14:50:00,596 Meadow St, San Francisco,CA,94016 +162201,Apple Airpods Headphones,1,150.0,2019-03-29 13:22:00,608 Lincoln St, New York City,NY,10001 +162202,27in FHD Monitor,1,149.99,2019-03-28 23:33:00,975 North St, New York City,NY,10001 +162203,USB-C Charging Cable,1,11.95,2019-03-21 10:24:00,50 Hill St, San Francisco,CA,94016 +162204,Wired Headphones,1,11.99,2019-03-08 12:24:00,555 8th St, Los Angeles,CA,90001 +162205,AAA Batteries (4-pack),3,2.99,2019-03-27 19:28:00,490 Lincoln St, San Francisco,CA,94016 +162206,AA Batteries (4-pack),1,3.84,2019-03-02 19:20:00,482 Meadow St, New York City,NY,10001 +162207,34in Ultrawide Monitor,1,379.99,2019-03-02 12:54:00,69 Adams St, Atlanta,GA,30301 +162208,Lightning Charging Cable,1,14.95,2019-03-11 16:08:00,534 Lakeview St, San Francisco,CA,94016 +162209,AAA Batteries (4-pack),1,2.99,2019-03-18 01:48:00,873 Jefferson St, Atlanta,GA,30301 +162210,USB-C Charging Cable,1,11.95,2019-03-19 17:42:00,331 Lake St, San Francisco,CA,94016 +162211,Wired Headphones,1,11.99,2019-03-15 05:02:00,819 Lake St, Seattle,WA,98101 +162212,USB-C Charging Cable,2,11.95,2019-03-31 12:42:00,700 North St, Boston,MA,02215 +162213,AA Batteries (4-pack),1,3.84,2019-03-21 09:58:00,72 Highland St, Seattle,WA,98101 +162214,AA Batteries (4-pack),1,3.84,2019-03-16 07:09:00,688 Chestnut St, Seattle,WA,98101 +162215,AAA Batteries (4-pack),1,2.99,2019-03-11 12:06:00,688 Hickory St, Los Angeles,CA,90001 +162215,Macbook Pro Laptop,1,1700.0,2019-03-11 12:06:00,688 Hickory St, Los Angeles,CA,90001 +162216,ThinkPad Laptop,1,999.99,2019-03-20 11:03:00,406 Sunset St, Boston,MA,02215 +162217,Wired Headphones,1,11.99,2019-03-07 16:30:00,293 8th St, Los Angeles,CA,90001 +162218,Apple Airpods Headphones,1,150.0,2019-03-05 19:53:00,115 Madison St, Los Angeles,CA,90001 +162219,Apple Airpods Headphones,1,150.0,2019-03-31 21:28:00,63 8th St, Boston,MA,02215 +162220,Bose SoundSport Headphones,1,99.99,2019-03-06 17:33:00,505 Hill St, San Francisco,CA,94016 +162221,Apple Airpods Headphones,1,150.0,2019-03-09 21:44:00,927 Jackson St, New York City,NY,10001 +162222,Bose SoundSport Headphones,1,99.99,2019-03-14 06:36:00,300 Meadow St, Boston,MA,02215 +162223,AAA Batteries (4-pack),1,2.99,2019-03-24 10:47:00,248 12th St, San Francisco,CA,94016 +162224,27in FHD Monitor,1,149.99,2019-03-23 07:28:00,858 Pine St, Atlanta,GA,30301 +162225,AA Batteries (4-pack),2,3.84,2019-03-30 17:01:00,830 Hickory St, Dallas,TX,75001 +162226,AA Batteries (4-pack),2,3.84,2019-03-25 21:36:00,858 5th St, Boston,MA,02215 +162227,AA Batteries (4-pack),3,3.84,2019-03-30 19:45:00,925 Jackson St, San Francisco,CA,94016 +162228,Lightning Charging Cable,1,14.95,2019-03-14 09:46:00,102 Meadow St, San Francisco,CA,94016 +162229,27in FHD Monitor,1,149.99,2019-03-27 13:13:00,823 Lake St, San Francisco,CA,94016 +162230,Lightning Charging Cable,1,14.95,2019-03-30 16:55:00,819 Park St, Los Angeles,CA,90001 +162231,AA Batteries (4-pack),2,3.84,2019-03-04 19:42:00,123 Jefferson St, Dallas,TX,75001 +162232,27in 4K Gaming Monitor,1,389.99,2019-03-09 12:45:00,66 Park St, Los Angeles,CA,90001 +162233,Macbook Pro Laptop,1,1700.0,2019-03-29 19:32:00,944 Ridge St, Seattle,WA,98101 +162234,AA Batteries (4-pack),1,3.84,2019-03-06 13:39:00,250 Johnson St, San Francisco,CA,94016 +162235,27in FHD Monitor,1,149.99,2019-03-11 22:05:00,122 7th St, Dallas,TX,75001 +162236,Wired Headphones,1,11.99,2019-03-28 18:33:00,298 Elm St, Atlanta,GA,30301 +162237,Lightning Charging Cable,2,14.95,2019-03-23 16:22:00,89 Chestnut St, New York City,NY,10001 +162238,AA Batteries (4-pack),1,3.84,2019-03-14 17:16:00,102 Willow St, Dallas,TX,75001 +162239,ThinkPad Laptop,1,999.99,2019-03-10 19:45:00,543 11th St, Austin,TX,73301 +162240,Lightning Charging Cable,1,14.95,2019-03-30 00:13:00,572 Park St, Boston,MA,02215 +162241,Macbook Pro Laptop,1,1700.0,2019-03-30 11:58:00,162 5th St, San Francisco,CA,94016 +162242,AAA Batteries (4-pack),1,2.99,2019-03-14 20:32:00,712 5th St, Portland,OR,97035 +162243,Lightning Charging Cable,1,14.95,2019-03-15 19:18:00,301 Walnut St, San Francisco,CA,94016 +162244,Google Phone,1,600.0,2019-03-23 23:33:00,76 Center St, San Francisco,CA,94016 +162244,USB-C Charging Cable,1,11.95,2019-03-23 23:33:00,76 Center St, San Francisco,CA,94016 +162245,AAA Batteries (4-pack),1,2.99,2019-03-17 18:18:00,238 West St, San Francisco,CA,94016 +162246,27in FHD Monitor,1,149.99,2019-03-01 12:12:00,28 Adams St, Atlanta,GA,30301 +162247,27in FHD Monitor,1,149.99,2019-03-22 15:47:00,10 Elm St, Austin,TX,73301 +162248,Wired Headphones,1,11.99,2019-03-14 16:03:00,685 5th St, San Francisco,CA,94016 +162249,Bose SoundSport Headphones,1,99.99,2019-03-27 19:50:00,951 Forest St, New York City,NY,10001 +162250,Flatscreen TV,1,300.0,2019-03-16 10:47:00,984 8th St, Los Angeles,CA,90001 +162251,27in FHD Monitor,1,149.99,2019-03-29 15:10:00,495 Lake St, San Francisco,CA,94016 +162252,Wired Headphones,2,11.99,2019-03-09 05:31:00,5 Maple St, San Francisco,CA,94016 +162253,USB-C Charging Cable,1,11.95,2019-03-07 22:15:00,574 Walnut St, Boston,MA,02215 +162254,Macbook Pro Laptop,1,1700.0,2019-03-09 10:48:00,786 River St, San Francisco,CA,94016 +162255,27in FHD Monitor,1,149.99,2019-03-06 11:21:00,622 Highland St, Dallas,TX,75001 +162256,20in Monitor,1,109.99,2019-03-15 11:55:00,217 4th St, New York City,NY,10001 +162257,AA Batteries (4-pack),1,3.84,2019-03-30 12:01:00,977 Meadow St, Atlanta,GA,30301 +162258,Bose SoundSport Headphones,1,99.99,2019-03-20 19:09:00,874 Cherry St, New York City,NY,10001 +162259,27in 4K Gaming Monitor,1,389.99,2019-03-14 10:07:00,415 Wilson St, New York City,NY,10001 +162260,Apple Airpods Headphones,1,150.0,2019-03-29 12:08:00,188 North St, Seattle,WA,98101 +162261,Bose SoundSport Headphones,1,99.99,2019-03-24 06:54:00,825 Lakeview St, Dallas,TX,75001 +162262,Wired Headphones,1,11.99,2019-03-08 22:17:00,625 Main St, Atlanta,GA,30301 +162263,Wired Headphones,1,11.99,2019-03-05 22:06:00,230 Elm St, Dallas,TX,75001 +162264,Apple Airpods Headphones,1,150.0,2019-03-13 18:06:00,604 6th St, Portland,OR,97035 +162265,Wired Headphones,1,11.99,2019-03-12 08:12:00,882 Park St, Los Angeles,CA,90001 +162266,AA Batteries (4-pack),1,3.84,2019-03-13 08:34:00,697 Jackson St, New York City,NY,10001 +162267,Bose SoundSport Headphones,1,99.99,2019-03-26 14:07:00,61 10th St, Dallas,TX,75001 +162268,Lightning Charging Cable,1,14.95,2019-03-30 20:26:00,528 Pine St, Los Angeles,CA,90001 +162269,Wired Headphones,1,11.99,2019-03-03 01:30:00,99 Sunset St, San Francisco,CA,94016 +162270,Macbook Pro Laptop,1,1700.0,2019-03-07 11:45:00,98 Elm St, Los Angeles,CA,90001 +162271,Lightning Charging Cable,1,14.95,2019-03-26 10:37:00,557 Hickory St, San Francisco,CA,94016 +162272,Lightning Charging Cable,1,14.95,2019-03-16 09:30:00,322 10th St, Los Angeles,CA,90001 +162273,Google Phone,1,600.0,2019-03-20 18:36:00,368 Washington St, New York City,NY,10001 +162274,Lightning Charging Cable,1,14.95,2019-03-07 09:06:00,152 2nd St, Atlanta,GA,30301 +162275,Wired Headphones,1,11.99,2019-03-12 20:22:00,558 Cherry St, Seattle,WA,98101 +162276,Bose SoundSport Headphones,1,99.99,2019-03-11 06:54:00,882 Jefferson St, Los Angeles,CA,90001 +162277,27in 4K Gaming Monitor,1,389.99,2019-03-26 22:06:00,392 Maple St, Seattle,WA,98101 +162278,Bose SoundSport Headphones,1,99.99,2019-03-23 14:02:00,488 Jackson St, Boston,MA,02215 +162279,Google Phone,1,600.0,2019-03-12 19:03:00,231 Highland St, San Francisco,CA,94016 +162280,Bose SoundSport Headphones,1,99.99,2019-03-05 11:48:00,525 12th St, New York City,NY,10001 +162281,Lightning Charging Cable,2,14.95,2019-03-10 15:31:00,774 4th St, Seattle,WA,98101 +162282,USB-C Charging Cable,1,11.95,2019-03-03 02:06:00,6 10th St, Austin,TX,73301 +162283,AA Batteries (4-pack),1,3.84,2019-03-05 20:33:00,959 12th St, Boston,MA,02215 +162284,Lightning Charging Cable,1,14.95,2019-03-05 22:25:00,544 Elm St, Los Angeles,CA,90001 +162285,27in FHD Monitor,1,149.99,2019-03-13 21:40:00,491 Walnut St, San Francisco,CA,94016 +162286,iPhone,1,700.0,2019-03-25 12:49:00,805 5th St, New York City,NY,10001 +162287,Google Phone,1,600.0,2019-03-30 10:02:00,89 6th St, Atlanta,GA,30301 +162288,20in Monitor,1,109.99,2019-03-01 09:19:00,113 7th St, Dallas,TX,75001 +162289,USB-C Charging Cable,1,11.95,2019-03-18 04:46:00,528 Pine St, Seattle,WA,98101 +162290,27in 4K Gaming Monitor,1,389.99,2019-03-13 20:36:00,809 Ridge St, Dallas,TX,75001 +162291,Lightning Charging Cable,1,14.95,2019-03-12 12:08:00,72 Chestnut St, Los Angeles,CA,90001 +162292,Lightning Charging Cable,1,14.95,2019-03-08 06:56:00,327 Park St, Atlanta,GA,30301 +162293,20in Monitor,1,109.99,2019-03-04 17:57:00,332 2nd St, Dallas,TX,75001 +162294,Vareebadd Phone,1,400.0,2019-03-10 11:57:00,769 8th St, Atlanta,GA,30301 +162295,AAA Batteries (4-pack),1,2.99,2019-03-18 19:17:00,279 Center St, Seattle,WA,98101 +162296,Lightning Charging Cable,1,14.95,2019-03-10 19:12:00,884 River St, Seattle,WA,98101 +162297,Apple Airpods Headphones,1,150.0,2019-03-12 17:48:00,466 Dogwood St, Boston,MA,02215 +162297,20in Monitor,1,109.99,2019-03-12 17:48:00,466 Dogwood St, Boston,MA,02215 +162298,AA Batteries (4-pack),1,3.84,2019-03-15 21:34:00,175 Spruce St, New York City,NY,10001 +162299,27in FHD Monitor,1,149.99,2019-03-03 10:40:00,244 Highland St, Los Angeles,CA,90001 +162300,Lightning Charging Cable,1,14.95,2019-03-12 14:47:00,222 14th St, Austin,TX,73301 +162301,USB-C Charging Cable,1,11.95,2019-03-23 10:49:00,315 2nd St, Austin,TX,73301 +162302,USB-C Charging Cable,2,11.95,2019-03-06 18:30:00,456 1st St, San Francisco,CA,94016 +162303,Wired Headphones,1,11.99,2019-03-06 20:38:00,291 Lincoln St, Seattle,WA,98101 +162304,AA Batteries (4-pack),1,3.84,2019-03-20 22:44:00,215 Washington St, San Francisco,CA,94016 +162305,iPhone,1,700.0,2019-03-26 17:08:00,460 Hickory St, Dallas,TX,75001 +162306,iPhone,1,700.0,2019-03-10 19:33:00,116 Hill St, Seattle,WA,98101 +162307,Wired Headphones,1,11.99,2019-03-29 06:31:00,504 Highland St, San Francisco,CA,94016 +162308,ThinkPad Laptop,1,999.99,2019-03-18 19:25:00,814 Church St, Portland,OR,97035 +162309,USB-C Charging Cable,1,11.95,2019-03-27 13:00:00,678 North St, Boston,MA,02215 +162310,AAA Batteries (4-pack),2,2.99,2019-03-12 11:42:00,782 Adams St, Boston,MA,02215 +162311,27in FHD Monitor,2,149.99,2019-03-29 09:06:00,902 Jackson St, Atlanta,GA,30301 +162312,USB-C Charging Cable,1,11.95,2019-03-09 14:11:00,935 14th St, San Francisco,CA,94016 +162313,ThinkPad Laptop,1,999.99,2019-03-25 10:52:00,956 9th St, San Francisco,CA,94016 +162314,Lightning Charging Cable,1,14.95,2019-03-22 08:47:00,178 Dogwood St, Austin,TX,73301 +162315,27in FHD Monitor,1,149.99,2019-03-12 21:36:00,184 1st St, New York City,NY,10001 +162316,AAA Batteries (4-pack),1,2.99,2019-03-08 13:19:00,739 Lake St, New York City,NY,10001 +162317,AA Batteries (4-pack),1,3.84,2019-03-20 15:31:00,95 River St, Los Angeles,CA,90001 +162318,Lightning Charging Cable,2,14.95,2019-03-13 05:24:00,540 9th St, San Francisco,CA,94016 +162319,USB-C Charging Cable,1,11.95,2019-03-14 16:50:00,636 6th St, Los Angeles,CA,90001 +162320,Lightning Charging Cable,1,14.95,2019-03-24 11:28:00,26 West St, Boston,MA,02215 +162321,USB-C Charging Cable,1,11.95,2019-03-04 12:35:00,546 Church St, Los Angeles,CA,90001 +162322,AA Batteries (4-pack),1,3.84,2019-03-23 20:35:00,752 Sunset St, Portland,OR,97035 +162323,27in FHD Monitor,1,149.99,2019-03-05 11:48:00,667 Elm St, New York City,NY,10001 +162324,Apple Airpods Headphones,1,150.0,2019-03-10 11:58:00,511 Walnut St, Portland,OR,97035 +162325,iPhone,1,700.0,2019-03-26 23:54:00,789 6th St, Los Angeles,CA,90001 +162326,Bose SoundSport Headphones,2,99.99,2019-03-30 19:40:00,639 Church St, San Francisco,CA,94016 +162327,20in Monitor,1,109.99,2019-03-09 01:51:00,100 North St, New York City,NY,10001 +162328,Wired Headphones,1,11.99,2019-03-31 13:06:00,153 10th St, Dallas,TX,75001 +162329,Vareebadd Phone,1,400.0,2019-03-26 14:50:00,42 Sunset St, Boston,MA,02215 +162329,USB-C Charging Cable,1,11.95,2019-03-26 14:50:00,42 Sunset St, Boston,MA,02215 +162330,Macbook Pro Laptop,1,1700.0,2019-03-25 06:04:00,89 Elm St, New York City,NY,10001 +162331,Wired Headphones,1,11.99,2019-03-03 15:40:00,295 Wilson St, Portland,OR,97035 +162332,Flatscreen TV,1,300.0,2019-03-20 14:23:00,925 10th St, Atlanta,GA,30301 +162333,AA Batteries (4-pack),4,3.84,2019-03-28 18:34:00,269 2nd St, Atlanta,GA,30301 +162334,27in 4K Gaming Monitor,1,389.99,2019-03-31 11:16:00,342 Spruce St, San Francisco,CA,94016 +162335,AAA Batteries (4-pack),1,2.99,2019-03-22 22:43:00,495 Cedar St, Boston,MA,02215 +162336,AAA Batteries (4-pack),3,2.99,2019-03-12 20:10:00,689 Maple St, San Francisco,CA,94016 +162337,Bose SoundSport Headphones,1,99.99,2019-03-10 13:10:00,485 Meadow St, Los Angeles,CA,90001 +162338,iPhone,1,700.0,2019-03-22 00:42:00,516 Madison St, Los Angeles,CA,90001 +162339,Wired Headphones,1,11.99,2019-03-22 16:20:00,95 Hickory St, New York City,NY,10001 +162340,AAA Batteries (4-pack),2,2.99,2019-03-13 19:15:00,39 6th St, Portland,OR,97035 +162341,Lightning Charging Cable,1,14.95,2019-03-26 19:33:00,164 Spruce St, Boston,MA,02215 +162342,USB-C Charging Cable,1,11.95,2019-03-15 21:32:00,568 13th St, San Francisco,CA,94016 +162343,AAA Batteries (4-pack),1,2.99,2019-03-02 20:38:00,372 Highland St, New York City,NY,10001 +162344,27in 4K Gaming Monitor,1,389.99,2019-03-24 06:41:00,484 Spruce St, San Francisco,CA,94016 +162345,USB-C Charging Cable,2,11.95,2019-03-28 21:32:00,970 Maple St, San Francisco,CA,94016 +162346,AAA Batteries (4-pack),2,2.99,2019-03-30 10:58:00,179 Jefferson St, New York City,NY,10001 +162347,34in Ultrawide Monitor,1,379.99,2019-03-31 19:04:00,805 Jackson St, Austin,TX,73301 +162347,Lightning Charging Cable,1,14.95,2019-03-31 19:04:00,805 Jackson St, Austin,TX,73301 +162348,USB-C Charging Cable,1,11.95,2019-03-18 13:49:00,616 14th St, New York City,NY,10001 +162349,USB-C Charging Cable,1,11.95,2019-03-08 13:33:00,402 5th St, Los Angeles,CA,90001 +162350,Apple Airpods Headphones,1,150.0,2019-03-20 17:16:00,509 Highland St, Atlanta,GA,30301 +162351,AA Batteries (4-pack),3,3.84,2019-03-22 11:25:00,519 12th St, Austin,TX,73301 +162352,AAA Batteries (4-pack),6,2.99,2019-03-24 22:57:00,319 Cedar St, Dallas,TX,75001 +162352,Bose SoundSport Headphones,1,99.99,2019-03-24 22:57:00,319 Cedar St, Dallas,TX,75001 +162353,Wired Headphones,2,11.99,2019-03-26 14:06:00,858 Lincoln St, New York City,NY,10001 +162354,AA Batteries (4-pack),1,3.84,2019-03-06 18:08:00,653 Johnson St, Dallas,TX,75001 +162355,Lightning Charging Cable,1,14.95,2019-03-04 18:40:00,749 Park St, Los Angeles,CA,90001 +162356,Lightning Charging Cable,1,14.95,2019-03-15 11:55:00,456 11th St, Dallas,TX,75001 +162357,Apple Airpods Headphones,1,150.0,2019-03-03 13:51:00,300 Park St, Atlanta,GA,30301 +162358,Flatscreen TV,1,300.0,2019-04-01 01:11:00,444 12th St, New York City,NY,10001 +162359,Lightning Charging Cable,1,14.95,2019-03-23 18:00:00,260 Cherry St, New York City,NY,10001 +162360,AAA Batteries (4-pack),3,2.99,2019-03-10 21:52:00,764 Lake St, Boston,MA,02215 +162361,Vareebadd Phone,1,400.0,2019-03-04 22:50:00,594 Spruce St, Atlanta,GA,30301 +162361,Wired Headphones,1,11.99,2019-03-04 22:50:00,594 Spruce St, Atlanta,GA,30301 +162362,AAA Batteries (4-pack),1,2.99,2019-03-17 12:44:00,930 Forest St, Atlanta,GA,30301 +162363,Bose SoundSport Headphones,1,99.99,2019-03-10 15:17:00,196 11th St, Los Angeles,CA,90001 +162364,iPhone,1,700.0,2019-03-01 19:42:00,78 South St, Boston,MA,02215 +162364,Lightning Charging Cable,1,14.95,2019-03-01 19:42:00,78 South St, Boston,MA,02215 +162365,Apple Airpods Headphones,1,150.0,2019-03-22 09:20:00,633 Highland St, San Francisco,CA,94016 +162366,USB-C Charging Cable,1,11.95,2019-03-02 18:36:00,848 North St, Portland,OR,97035 +162367,Apple Airpods Headphones,1,150.0,2019-03-23 14:58:00,825 Walnut St, Los Angeles,CA,90001 +162368,Lightning Charging Cable,1,14.95,2019-03-11 18:04:00,82 Park St, San Francisco,CA,94016 +162368,Wired Headphones,1,11.99,2019-03-11 18:04:00,82 Park St, San Francisco,CA,94016 +162369,USB-C Charging Cable,3,11.95,2019-03-08 20:00:00,110 Jefferson St, Dallas,TX,75001 +162370,20in Monitor,1,109.99,2019-03-11 19:53:00,235 Cedar St, Dallas,TX,75001 +162371,AA Batteries (4-pack),1,3.84,2019-03-09 17:57:00,807 Sunset St, Los Angeles,CA,90001 +162372,AA Batteries (4-pack),1,3.84,2019-03-07 15:08:00,17 1st St, Dallas,TX,75001 +162373,AA Batteries (4-pack),1,3.84,2019-03-18 14:41:00,414 South St, New York City,NY,10001 +162374,Flatscreen TV,1,300.0,2019-03-02 20:17:00,400 13th St, Boston,MA,02215 +162375,Lightning Charging Cable,1,14.95,2019-03-25 11:31:00,911 Pine St, Atlanta,GA,30301 +162376,iPhone,1,700.0,2019-03-02 21:09:00,555 Cedar St, Seattle,WA,98101 +162376,Wired Headphones,1,11.99,2019-03-02 21:09:00,555 Cedar St, Seattle,WA,98101 +162377,ThinkPad Laptop,1,999.99,2019-03-20 08:55:00,557 5th St, Austin,TX,73301 +162378,Lightning Charging Cable,1,14.95,2019-03-24 06:00:00,116 Main St, Atlanta,GA,30301 +162379,Lightning Charging Cable,1,14.95,2019-03-31 21:23:00,566 Hill St, Portland,OR,97035 +162380,Lightning Charging Cable,1,14.95,2019-03-20 06:54:00,615 Cedar St, Los Angeles,CA,90001 +162381,AA Batteries (4-pack),1,3.84,2019-03-31 18:32:00,11 11th St, Boston,MA,02215 +162381,iPhone,1,700.0,2019-03-31 18:32:00,11 11th St, Boston,MA,02215 +162382,Google Phone,1,600.0,2019-03-13 11:46:00,239 Cedar St, Los Angeles,CA,90001 +162383,USB-C Charging Cable,1,11.95,2019-03-23 00:45:00,424 Cedar St, New York City,NY,10001 +162384,iPhone,1,700.0,2019-03-17 06:45:00,388 Madison St, San Francisco,CA,94016 +162385,Wired Headphones,1,11.99,2019-03-24 17:46:00,378 West St, Los Angeles,CA,90001 +162386,Lightning Charging Cable,1,14.95,2019-03-11 18:30:00,907 Cedar St, Seattle,WA,98101 +162387,ThinkPad Laptop,1,999.99,2019-03-25 18:39:00,831 River St, New York City,NY,10001 +162388,AA Batteries (4-pack),1,3.84,2019-03-30 13:28:00,87 5th St, San Francisco,CA,94016 +162389,USB-C Charging Cable,1,11.95,2019-03-07 08:40:00,322 South St, San Francisco,CA,94016 +162390,AAA Batteries (4-pack),2,2.99,2019-03-30 09:29:00,454 West St, Boston,MA,02215 +162391,iPhone,1,700.0,2019-03-16 13:24:00,444 Highland St, Dallas,TX,75001 +162391,Apple Airpods Headphones,1,150.0,2019-03-16 13:24:00,444 Highland St, Dallas,TX,75001 +162392,iPhone,1,700.0,2019-03-09 10:55:00,692 6th St, Dallas,TX,75001 +162393,Lightning Charging Cable,1,14.95,2019-03-03 21:07:00,279 Main St, Atlanta,GA,30301 +162394,Google Phone,1,600.0,2019-03-04 18:51:00,608 9th St, San Francisco,CA,94016 +162395,USB-C Charging Cable,1,11.95,2019-03-16 09:52:00,588 5th St, San Francisco,CA,94016 +162396,27in FHD Monitor,1,149.99,2019-03-08 21:42:00,345 Main St, Dallas,TX,75001 +162397,AA Batteries (4-pack),1,3.84,2019-03-31 19:56:00,13 Lincoln St, San Francisco,CA,94016 +162398,AA Batteries (4-pack),3,3.84,2019-03-01 14:36:00,242 Sunset St, Dallas,TX,75001 +162399,Google Phone,1,600.0,2019-03-18 14:26:00,91 Forest St, Austin,TX,73301 +162400,Lightning Charging Cable,1,14.95,2019-03-06 21:23:00,810 West St, Boston,MA,02215 +162401,Bose SoundSport Headphones,1,99.99,2019-03-10 23:25:00,808 Spruce St, Seattle,WA,98101 +162402,Bose SoundSport Headphones,1,99.99,2019-03-09 19:15:00,951 Jefferson St, Seattle,WA,98101 +162403,AA Batteries (4-pack),1,3.84,2019-03-21 20:35:00,53 5th St, Atlanta,GA,30301 +162404,Flatscreen TV,1,300.0,2019-03-30 23:04:00,724 Jefferson St, San Francisco,CA,94016 +162405,AAA Batteries (4-pack),1,2.99,2019-03-27 17:27:00,802 Forest St, Boston,MA,02215 +162406,Google Phone,1,600.0,2019-03-15 17:12:00,471 1st St, Atlanta,GA,30301 +162407,AAA Batteries (4-pack),1,2.99,2019-03-05 17:51:00,921 Chestnut St, Boston,MA,02215 +162408,Google Phone,1,600.0,2019-03-24 23:45:00,392 Ridge St, Los Angeles,CA,90001 +162408,Wired Headphones,1,11.99,2019-03-24 23:45:00,392 Ridge St, Los Angeles,CA,90001 +162409,Apple Airpods Headphones,1,150.0,2019-03-17 19:20:00,811 14th St, San Francisco,CA,94016 +162409,Wired Headphones,1,11.99,2019-03-17 19:20:00,811 14th St, San Francisco,CA,94016 +162410,Apple Airpods Headphones,1,150.0,2019-03-05 12:18:00,777 South St, Atlanta,GA,30301 +162411,AAA Batteries (4-pack),1,2.99,2019-03-20 09:46:00,704 7th St, San Francisco,CA,94016 +162412,Apple Airpods Headphones,1,150.0,2019-03-22 19:20:00,564 2nd St, New York City,NY,10001 +162413,34in Ultrawide Monitor,1,379.99,2019-03-18 12:52:00,210 Main St, Los Angeles,CA,90001 +162414,iPhone,1,700.0,2019-03-17 10:48:00,262 9th St, Boston,MA,02215 +162415,Wired Headphones,1,11.99,2019-03-20 19:40:00,416 1st St, Austin,TX,73301 +162416,Wired Headphones,1,11.99,2019-03-30 08:19:00,542 Dogwood St, New York City,NY,10001 +162417,USB-C Charging Cable,1,11.95,2019-03-01 18:46:00,113 Wilson St, Los Angeles,CA,90001 +162418,Wired Headphones,1,11.99,2019-03-04 11:57:00,911 West St, Los Angeles,CA,90001 +162419,USB-C Charging Cable,2,11.95,2019-03-21 18:20:00,715 Jackson St, Los Angeles,CA,90001 +162420,Lightning Charging Cable,1,14.95,2019-03-19 22:47:00,396 South St, Dallas,TX,75001 +162421,AA Batteries (4-pack),2,3.84,2019-03-31 14:12:00,802 Lincoln St, New York City,NY,10001 +162422,Lightning Charging Cable,1,14.95,2019-03-26 00:10:00,477 12th St, New York City,NY,10001 +162423,Macbook Pro Laptop,1,1700.0,2019-03-03 15:13:00,552 Adams St, Portland,OR,97035 +162424,AA Batteries (4-pack),1,3.84,2019-03-04 19:35:00,747 Chestnut St, Austin,TX,73301 +162425,AAA Batteries (4-pack),2,2.99,2019-03-27 11:41:00,930 9th St, Los Angeles,CA,90001 +162426,USB-C Charging Cable,1,11.95,2019-03-17 19:54:00,569 Hickory St, San Francisco,CA,94016 +162427,27in FHD Monitor,1,149.99,2019-03-27 20:52:00,7 2nd St, San Francisco,CA,94016 +162428,Wired Headphones,1,11.99,2019-03-15 17:39:00,170 Madison St, Seattle,WA,98101 +162429,USB-C Charging Cable,1,11.95,2019-03-29 22:54:00,356 7th St, Portland,OR,97035 +162430,Apple Airpods Headphones,1,150.0,2019-03-25 22:01:00,730 2nd St, San Francisco,CA,94016 +162431,Apple Airpods Headphones,1,150.0,2019-03-16 15:18:00,454 5th St, Portland,OR,97035 +162432,AAA Batteries (4-pack),1,2.99,2019-03-06 12:16:00,648 13th St, Atlanta,GA,30301 +162433,iPhone,1,700.0,2019-03-29 19:14:00,857 11th St, Los Angeles,CA,90001 +162434,AA Batteries (4-pack),1,3.84,2019-03-15 10:46:00,554 Jefferson St, Boston,MA,02215 +162435,USB-C Charging Cable,1,11.95,2019-03-14 20:16:00,445 Ridge St, Boston,MA,02215 +162436,Apple Airpods Headphones,1,150.0,2019-03-31 10:49:00,406 Johnson St, Austin,TX,73301 +162437,Lightning Charging Cable,1,14.95,2019-03-13 14:14:00,916 13th St, Los Angeles,CA,90001 +162438,Lightning Charging Cable,1,14.95,2019-03-11 22:03:00,187 South St, San Francisco,CA,94016 +162439,USB-C Charging Cable,1,11.95,2019-03-13 18:47:00,96 Main St, San Francisco,CA,94016 +162440,Wired Headphones,1,11.99,2019-03-04 23:49:00,347 Cedar St, Los Angeles,CA,90001 +162441,AAA Batteries (4-pack),2,2.99,2019-03-27 10:36:00,939 Pine St, Los Angeles,CA,90001 +162442,Macbook Pro Laptop,1,1700.0,2019-03-06 19:19:00,512 Willow St, Los Angeles,CA,90001 +162443,Lightning Charging Cable,1,14.95,2019-03-24 07:33:00,600 North St, Seattle,WA,98101 +162444,AA Batteries (4-pack),1,3.84,2019-03-10 22:45:00,174 Adams St, San Francisco,CA,94016 +162445,Apple Airpods Headphones,1,150.0,2019-03-24 15:42:00,358 West St, New York City,NY,10001 +162446,27in FHD Monitor,1,149.99,2019-03-28 10:27:00,384 South St, New York City,NY,10001 +162447,34in Ultrawide Monitor,1,379.99,2019-03-17 16:37:00,133 South St, Los Angeles,CA,90001 +162448,Bose SoundSport Headphones,1,99.99,2019-03-04 13:04:00,777 Main St, Dallas,TX,75001 +162449,AA Batteries (4-pack),1,3.84,2019-03-11 19:54:00,995 1st St, San Francisco,CA,94016 +162450,USB-C Charging Cable,1,11.95,2019-03-12 10:53:00,269 1st St, Dallas,TX,75001 +162451,AA Batteries (4-pack),3,3.84,2019-03-22 08:59:00,25 Adams St, Seattle,WA,98101 +162452,27in FHD Monitor,1,149.99,2019-03-02 07:28:00,632 7th St, Portland,ME,04101 +162453,AAA Batteries (4-pack),1,2.99,2019-03-29 04:37:00,934 Ridge St, Atlanta,GA,30301 +162454,AAA Batteries (4-pack),1,2.99,2019-03-02 14:10:00,309 Sunset St, Atlanta,GA,30301 +162455,34in Ultrawide Monitor,1,379.99,2019-03-14 10:52:00,425 Lake St, Seattle,WA,98101 +162456,Wired Headphones,1,11.99,2019-03-19 09:13:00,59 Dogwood St, Atlanta,GA,30301 +162457,ThinkPad Laptop,1,999.99,2019-03-04 17:32:00,77 Willow St, Boston,MA,02215 +162458,Apple Airpods Headphones,1,150.0,2019-03-11 16:15:00,149 Spruce St, Portland,ME,04101 +162459,AAA Batteries (4-pack),1,2.99,2019-03-09 08:17:00,609 Washington St, Austin,TX,73301 +162460,Bose SoundSport Headphones,1,99.99,2019-03-27 08:05:00,904 Hickory St, San Francisco,CA,94016 +162461,Wired Headphones,1,11.99,2019-03-12 20:19:00,34 North St, Los Angeles,CA,90001 +162462,USB-C Charging Cable,1,11.95,2019-03-18 11:58:00,834 14th St, Portland,OR,97035 +162463,iPhone,1,700.0,2019-03-26 20:40:00,883 7th St, Boston,MA,02215 +162463,Lightning Charging Cable,1,14.95,2019-03-26 20:40:00,883 7th St, Boston,MA,02215 +162464,iPhone,1,700.0,2019-03-23 17:03:00,45 West St, San Francisco,CA,94016 +162465,Apple Airpods Headphones,1,150.0,2019-03-08 21:43:00,603 Willow St, New York City,NY,10001 +162466,iPhone,1,700.0,2019-03-30 11:46:00,309 Adams St, Los Angeles,CA,90001 +162467,Wired Headphones,1,11.99,2019-03-30 11:02:00,122 Johnson St, Seattle,WA,98101 +162468,AA Batteries (4-pack),1,3.84,2019-03-18 11:24:00,654 4th St, Los Angeles,CA,90001 +162469,27in FHD Monitor,1,149.99,2019-03-30 23:28:00,531 Spruce St, Los Angeles,CA,90001 +162470,USB-C Charging Cable,1,11.95,2019-03-12 16:58:00,93 Lake St, Los Angeles,CA,90001 +162471,ThinkPad Laptop,1,999.99,2019-03-04 08:59:00,69 Spruce St, Boston,MA,02215 +162472,Vareebadd Phone,1,400.0,2019-03-05 23:55:00,505 Hickory St, Seattle,WA,98101 +162473,Wired Headphones,1,11.99,2019-03-23 12:37:00,270 South St, Portland,OR,97035 +162474,AAA Batteries (4-pack),1,2.99,2019-03-21 08:26:00,254 Pine St, San Francisco,CA,94016 +162475,Lightning Charging Cable,1,14.95,2019-03-29 15:39:00,310 North St, Los Angeles,CA,90001 +162476,Flatscreen TV,1,300.0,2019-03-27 19:09:00,962 Highland St, Atlanta,GA,30301 +162477,USB-C Charging Cable,1,11.95,2019-03-17 15:38:00,827 Cherry St, Atlanta,GA,30301 +162478,USB-C Charging Cable,1,11.95,2019-03-28 11:53:00,506 Spruce St, New York City,NY,10001 +162479,27in 4K Gaming Monitor,1,389.99,2019-03-15 19:09:00,92 Walnut St, Los Angeles,CA,90001 +162480,USB-C Charging Cable,1,11.95,2019-03-23 13:01:00,597 12th St, San Francisco,CA,94016 +162481,AAA Batteries (4-pack),3,2.99,2019-03-24 22:00:00,556 5th St, Los Angeles,CA,90001 +162482,34in Ultrawide Monitor,1,379.99,2019-03-23 20:42:00,722 Church St, Los Angeles,CA,90001 +162483,34in Ultrawide Monitor,1,379.99,2019-03-12 14:26:00,893 Dogwood St, San Francisco,CA,94016 +162484,Bose SoundSport Headphones,1,99.99,2019-03-05 08:12:00,195 4th St, Portland,ME,04101 +162485,USB-C Charging Cable,1,11.95,2019-03-25 09:20:00,682 Cedar St, San Francisco,CA,94016 +162486,iPhone,1,700.0,2019-03-04 11:46:00,594 1st St, San Francisco,CA,94016 +162486,Lightning Charging Cable,1,14.95,2019-03-04 11:46:00,594 1st St, San Francisco,CA,94016 +162487,USB-C Charging Cable,3,11.95,2019-03-09 14:42:00,631 Church St, Portland,OR,97035 +162488,AA Batteries (4-pack),1,3.84,2019-03-30 09:14:00,554 West St, San Francisco,CA,94016 +162489,27in 4K Gaming Monitor,1,389.99,2019-03-30 01:01:00,397 Highland St, Seattle,WA,98101 +162490,Google Phone,1,600.0,2019-03-12 00:56:00,27 West St, Atlanta,GA,30301 +162490,USB-C Charging Cable,1,11.95,2019-03-12 00:56:00,27 West St, Atlanta,GA,30301 +162491,Bose SoundSport Headphones,1,99.99,2019-03-05 20:00:00,881 1st St, San Francisco,CA,94016 +162492,iPhone,1,700.0,2019-03-20 10:00:00,534 10th St, Seattle,WA,98101 +162493,AAA Batteries (4-pack),1,2.99,2019-03-23 21:16:00,392 Wilson St, San Francisco,CA,94016 +162494,27in FHD Monitor,1,149.99,2019-03-31 19:57:00,896 Spruce St, Los Angeles,CA,90001 +162495,Macbook Pro Laptop,1,1700.0,2019-03-02 11:38:00,292 Cherry St, Los Angeles,CA,90001 +162496,AA Batteries (4-pack),1,3.84,2019-03-27 11:55:00,68 West St, Atlanta,GA,30301 +162497,AA Batteries (4-pack),2,3.84,2019-03-22 23:42:00,919 Jefferson St, San Francisco,CA,94016 +162498,Wired Headphones,1,11.99,2019-03-13 10:28:00,743 5th St, Austin,TX,73301 +162499,AA Batteries (4-pack),3,3.84,2019-03-28 12:20:00,623 Chestnut St, New York City,NY,10001 +162500,Wired Headphones,1,11.99,2019-03-27 21:17:00,33 Elm St, San Francisco,CA,94016 +162501,Bose SoundSport Headphones,1,99.99,2019-03-31 16:00:00,170 6th St, Boston,MA,02215 +162502,Flatscreen TV,1,300.0,2019-03-15 16:20:00,700 South St, Boston,MA,02215 +162503,AAA Batteries (4-pack),2,2.99,2019-03-03 20:31:00,615 Cherry St, Dallas,TX,75001 +162504,34in Ultrawide Monitor,1,379.99,2019-03-04 17:42:00,146 Willow St, Atlanta,GA,30301 +162505,27in FHD Monitor,1,149.99,2019-03-13 08:31:00,827 Hickory St, Boston,MA,02215 +162506,USB-C Charging Cable,1,11.95,2019-03-08 15:50:00,718 Adams St, San Francisco,CA,94016 +162507,20in Monitor,1,109.99,2019-03-18 09:00:00,358 Hickory St, San Francisco,CA,94016 +162508,iPhone,1,700.0,2019-03-25 11:21:00,894 Johnson St, Seattle,WA,98101 +162508,Lightning Charging Cable,1,14.95,2019-03-25 11:21:00,894 Johnson St, Seattle,WA,98101 +162509,AAA Batteries (4-pack),1,2.99,2019-03-09 19:21:00,629 Meadow St, Boston,MA,02215 +162510,Macbook Pro Laptop,1,1700.0,2019-03-13 13:03:00,417 10th St, Portland,OR,97035 +162511,Wired Headphones,1,11.99,2019-03-17 23:08:00,615 Pine St, Seattle,WA,98101 +162512,USB-C Charging Cable,1,11.95,2019-03-06 20:30:00,433 Johnson St, San Francisco,CA,94016 +162513,Bose SoundSport Headphones,1,99.99,2019-03-11 09:20:00,849 Ridge St, New York City,NY,10001 +162514,Bose SoundSport Headphones,1,99.99,2019-03-11 12:15:00,763 Main St, Seattle,WA,98101 +162515,AA Batteries (4-pack),3,3.84,2019-03-06 18:30:00,976 Lake St, New York City,NY,10001 +162516,AA Batteries (4-pack),4,3.84,2019-03-10 11:31:00,896 Elm St, Dallas,TX,75001 +162517,Wired Headphones,1,11.99,2019-03-16 15:47:00,780 9th St, Los Angeles,CA,90001 +162518,USB-C Charging Cable,1,11.95,2019-03-08 11:24:00,281 River St, San Francisco,CA,94016 +162519,Vareebadd Phone,1,400.0,2019-03-04 06:57:00,516 Cherry St, New York City,NY,10001 +162520,AA Batteries (4-pack),1,3.84,2019-03-24 11:16:00,308 Johnson St, New York City,NY,10001 +162521,Flatscreen TV,1,300.0,2019-03-30 08:12:00,304 Hickory St, Seattle,WA,98101 +162522,Lightning Charging Cable,1,14.95,2019-03-03 21:18:00,618 Dogwood St, Seattle,WA,98101 +162523,Wired Headphones,1,11.99,2019-03-26 15:23:00,156 Hickory St, San Francisco,CA,94016 +162524,AA Batteries (4-pack),1,3.84,2019-03-21 13:14:00,372 Elm St, San Francisco,CA,94016 +162525,34in Ultrawide Monitor,1,379.99,2019-03-10 19:00:00,415 Forest St, San Francisco,CA,94016 +162526,Wired Headphones,2,11.99,2019-03-30 15:12:00,744 Wilson St, Atlanta,GA,30301 +162527,ThinkPad Laptop,1,999.99,2019-03-03 14:42:00,775 12th St, Dallas,TX,75001 +162528,27in FHD Monitor,1,149.99,2019-03-11 08:15:00,776 11th St, San Francisco,CA,94016 +162529,iPhone,1,700.0,2019-03-15 20:25:00,3 Dogwood St, Seattle,WA,98101 +162530,AAA Batteries (4-pack),1,2.99,2019-03-24 12:09:00,552 Main St, Boston,MA,02215 +162531,27in 4K Gaming Monitor,1,389.99,2019-03-27 08:12:00,383 Pine St, Atlanta,GA,30301 +162532,27in 4K Gaming Monitor,1,389.99,2019-03-25 19:40:00,802 Hickory St, Boston,MA,02215 +162533,iPhone,1,700.0,2019-03-12 19:48:00,361 Ridge St, San Francisco,CA,94016 +162534,Bose SoundSport Headphones,1,99.99,2019-03-29 21:06:00,392 13th St, Portland,OR,97035 +162535,AAA Batteries (4-pack),1,2.99,2019-03-03 18:44:00,749 Madison St, Atlanta,GA,30301 +162536,Wired Headphones,1,11.99,2019-03-27 00:42:00,899 13th St, San Francisco,CA,94016 +162537,AA Batteries (4-pack),2,3.84,2019-03-16 20:00:00,382 Park St, New York City,NY,10001 +162538,34in Ultrawide Monitor,1,379.99,2019-03-22 19:06:00,434 Elm St, Seattle,WA,98101 +162539,AA Batteries (4-pack),1,3.84,2019-03-31 21:31:00,279 14th St, San Francisco,CA,94016 +162540,Bose SoundSport Headphones,1,99.99,2019-03-20 23:01:00,376 7th St, San Francisco,CA,94016 +162541,AAA Batteries (4-pack),2,2.99,2019-04-01 01:15:00,672 2nd St, Atlanta,GA,30301 +162542,USB-C Charging Cable,1,11.95,2019-03-08 17:50:00,602 6th St, Seattle,WA,98101 +162543,AA Batteries (4-pack),2,3.84,2019-03-06 13:03:00,99 13th St, Atlanta,GA,30301 +162544,Apple Airpods Headphones,2,150.0,2019-03-10 12:40:00,190 Maple St, New York City,NY,10001 +162545,Google Phone,1,600.0,2019-03-23 17:22:00,466 Church St, San Francisco,CA,94016 +162546,Macbook Pro Laptop,1,1700.0,2019-03-05 00:39:00,114 1st St, New York City,NY,10001 +162547,27in 4K Gaming Monitor,1,389.99,2019-03-18 21:55:00,156 Forest St, Los Angeles,CA,90001 +162548,ThinkPad Laptop,1,999.99,2019-03-11 11:30:00,872 Church St, Austin,TX,73301 +162549,Macbook Pro Laptop,1,1700.0,2019-03-26 08:09:00,303 6th St, Portland,OR,97035 +162550,Wired Headphones,1,11.99,2019-03-03 20:11:00,464 Meadow St, Portland,OR,97035 +162551,iPhone,1,700.0,2019-03-27 10:48:00,510 Madison St, Boston,MA,02215 +162552,USB-C Charging Cable,1,11.95,2019-03-10 17:05:00,775 1st St, New York City,NY,10001 +162553,Bose SoundSport Headphones,1,99.99,2019-03-08 12:01:00,949 River St, Seattle,WA,98101 +162554,iPhone,1,700.0,2019-03-29 15:30:00,567 7th St, Seattle,WA,98101 +162554,Wired Headphones,1,11.99,2019-03-29 15:30:00,567 7th St, Seattle,WA,98101 +162555,Lightning Charging Cable,1,14.95,2019-03-30 11:59:00,212 Dogwood St, Seattle,WA,98101 +162556,Flatscreen TV,1,300.0,2019-03-31 19:47:00,72 2nd St, San Francisco,CA,94016 +162557,iPhone,1,700.0,2019-03-22 12:50:00,813 1st St, Atlanta,GA,30301 +162557,Lightning Charging Cable,2,14.95,2019-03-22 12:50:00,813 1st St, Atlanta,GA,30301 +162558,Lightning Charging Cable,1,14.95,2019-03-03 18:36:00,171 Washington St, Los Angeles,CA,90001 +162559,Wired Headphones,1,11.99,2019-03-21 09:24:00,929 Park St, Boston,MA,02215 +162560,AA Batteries (4-pack),1,3.84,2019-03-10 23:56:00,618 Washington St, San Francisco,CA,94016 +162561,Wired Headphones,1,11.99,2019-03-12 07:58:00,499 4th St, Austin,TX,73301 +162562,AA Batteries (4-pack),1,3.84,2019-03-29 21:16:00,96 Park St, Austin,TX,73301 +162563,27in FHD Monitor,1,149.99,2019-03-12 15:51:00,769 1st St, Seattle,WA,98101 +162564,Apple Airpods Headphones,1,150.0,2019-03-19 14:55:00,1 12th St, Los Angeles,CA,90001 +162565,USB-C Charging Cable,1,11.95,2019-03-29 00:25:00,961 10th St, Dallas,TX,75001 +162566,Macbook Pro Laptop,1,1700.0,2019-03-08 22:13:00,681 Ridge St, Boston,MA,02215 +162567,AA Batteries (4-pack),1,3.84,2019-03-08 11:41:00,196 10th St, San Francisco,CA,94016 +162568,USB-C Charging Cable,2,11.95,2019-03-02 20:41:00,628 Walnut St, San Francisco,CA,94016 +162569,34in Ultrawide Monitor,1,379.99,2019-03-27 12:16:00,196 Church St, New York City,NY,10001 +162570,Lightning Charging Cable,2,14.95,2019-03-17 23:22:00,55 Adams St, Austin,TX,73301 +162571,AA Batteries (4-pack),1,3.84,2019-03-29 21:01:00,422 Maple St, Los Angeles,CA,90001 +162572,Lightning Charging Cable,1,14.95,2019-03-10 14:41:00,732 Highland St, Boston,MA,02215 +162573,Google Phone,1,600.0,2019-03-02 11:34:00,673 2nd St, Portland,OR,97035 +162574,AAA Batteries (4-pack),3,2.99,2019-03-08 12:14:00,194 Jackson St, San Francisco,CA,94016 +162575,iPhone,1,700.0,2019-03-25 12:56:00,590 Park St, Los Angeles,CA,90001 +162576,Bose SoundSport Headphones,2,99.99,2019-03-21 23:07:00,634 Cedar St, Boston,MA,02215 +162577,AAA Batteries (4-pack),1,2.99,2019-03-19 19:54:00,547 Ridge St, Atlanta,GA,30301 +162578,Bose SoundSport Headphones,1,99.99,2019-03-20 13:58:00,56 Adams St, Atlanta,GA,30301 +162579,AA Batteries (4-pack),2,3.84,2019-03-13 12:20:00,40 13th St, San Francisco,CA,94016 +162580,AAA Batteries (4-pack),1,2.99,2019-03-11 18:00:00,680 Jefferson St, Portland,OR,97035 +162581,Flatscreen TV,1,300.0,2019-03-05 15:07:00,903 8th St, Dallas,TX,75001 +162582,Flatscreen TV,1,300.0,2019-03-16 11:45:00,97 9th St, New York City,NY,10001 +162583,Apple Airpods Headphones,1,150.0,2019-03-20 21:52:00,36 Main St, Seattle,WA,98101 +162584,34in Ultrawide Monitor,1,379.99,2019-03-25 23:04:00,459 Hill St, New York City,NY,10001 +162585,27in 4K Gaming Monitor,1,389.99,2019-03-03 08:39:00,182 Chestnut St, San Francisco,CA,94016 +162586,USB-C Charging Cable,1,11.95,2019-03-20 08:50:00,499 Cherry St, Austin,TX,73301 +162587,LG Washing Machine,1,600.0,2019-03-20 12:58:00,66 Lakeview St, San Francisco,CA,94016 +162588,AAA Batteries (4-pack),1,2.99,2019-03-29 09:03:00,568 Meadow St, Austin,TX,73301 +162589,AA Batteries (4-pack),2,3.84,2019-03-23 00:37:00,13 5th St, Boston,MA,02215 +162590,27in FHD Monitor,1,149.99,2019-03-15 16:50:00,611 Washington St, Boston,MA,02215 +162591,USB-C Charging Cable,1,11.95,2019-03-30 19:10:00,884 Pine St, Portland,ME,04101 +162592,Bose SoundSport Headphones,1,99.99,2019-03-05 15:10:00,595 Jefferson St, San Francisco,CA,94016 +162593,Bose SoundSport Headphones,1,99.99,2019-03-24 15:06:00,247 Jefferson St, San Francisco,CA,94016 +162594,Lightning Charging Cable,2,14.95,2019-03-03 10:49:00,504 13th St, Seattle,WA,98101 +162595,AAA Batteries (4-pack),1,2.99,2019-03-10 10:07:00,916 13th St, New York City,NY,10001 +162596,Wired Headphones,1,11.99,2019-03-27 12:30:00,698 Johnson St, Atlanta,GA,30301 +162597,34in Ultrawide Monitor,1,379.99,2019-03-14 09:15:00,901 Ridge St, Portland,OR,97035 +162598,USB-C Charging Cable,1,11.95,2019-03-31 18:07:00,353 11th St, Atlanta,GA,30301 +162599,Apple Airpods Headphones,1,150.0,2019-03-09 19:22:00,380 Maple St, San Francisco,CA,94016 +162600,34in Ultrawide Monitor,1,379.99,2019-03-18 10:48:00,198 Jefferson St, Dallas,TX,75001 +162601,Bose SoundSport Headphones,1,99.99,2019-03-13 19:00:00,465 Highland St, Boston,MA,02215 +162602,Lightning Charging Cable,1,14.95,2019-03-19 13:29:00,359 Lincoln St, Seattle,WA,98101 +162603,20in Monitor,1,109.99,2019-03-30 13:34:00,794 North St, Austin,TX,73301 +162604,Wired Headphones,1,11.99,2019-03-03 13:56:00,933 Willow St, New York City,NY,10001 +162605,Vareebadd Phone,1,400.0,2019-03-16 16:43:00,807 Wilson St, San Francisco,CA,94016 +162606,AA Batteries (4-pack),2,3.84,2019-03-21 18:06:00,446 Adams St, New York City,NY,10001 +162607,Apple Airpods Headphones,1,150.0,2019-03-31 10:18:00,485 Center St, Los Angeles,CA,90001 +162608,Google Phone,1,600.0,2019-03-13 09:05:00,925 Lake St, Boston,MA,02215 +162609,Bose SoundSport Headphones,1,99.99,2019-03-17 12:32:00,823 Wilson St, Atlanta,GA,30301 +162610,USB-C Charging Cable,1,11.95,2019-03-02 15:59:00,90 Hill St, San Francisco,CA,94016 +162611,AA Batteries (4-pack),1,3.84,2019-03-05 10:21:00,97 Meadow St, Los Angeles,CA,90001 +162612,Wired Headphones,1,11.99,2019-03-11 11:18:00,357 Hickory St, Austin,TX,73301 +162612,USB-C Charging Cable,1,11.95,2019-03-11 11:18:00,357 Hickory St, Austin,TX,73301 +162613,Bose SoundSport Headphones,1,99.99,2019-03-12 15:21:00,53 6th St, Los Angeles,CA,90001 +162614,Lightning Charging Cable,1,14.95,2019-03-17 13:22:00,804 6th St, Los Angeles,CA,90001 +162615,AA Batteries (4-pack),1,3.84,2019-03-22 12:43:00,322 11th St, Seattle,WA,98101 +162616,Vareebadd Phone,1,400.0,2019-03-31 13:00:00,287 Adams St, Dallas,TX,75001 +162617,AAA Batteries (4-pack),2,2.99,2019-03-19 08:12:00,809 Forest St, San Francisco,CA,94016 +162618,Lightning Charging Cable,1,14.95,2019-03-09 12:08:00,266 Church St, San Francisco,CA,94016 +162619,27in FHD Monitor,1,149.99,2019-03-30 18:41:00,349 Wilson St, Los Angeles,CA,90001 +162620,27in FHD Monitor,1,149.99,2019-03-02 02:11:00,60 Maple St, Boston,MA,02215 +162621,USB-C Charging Cable,1,11.95,2019-03-07 09:44:00,282 13th St, Austin,TX,73301 +162622,Lightning Charging Cable,1,14.95,2019-03-17 14:31:00,815 Cherry St, Boston,MA,02215 +162623,AAA Batteries (4-pack),1,2.99,2019-03-25 17:34:00,821 Dogwood St, San Francisco,CA,94016 +162623,AA Batteries (4-pack),1,3.84,2019-03-25 17:34:00,821 Dogwood St, San Francisco,CA,94016 +162624,USB-C Charging Cable,1,11.95,2019-03-01 11:42:00,878 Highland St, San Francisco,CA,94016 +162625,Lightning Charging Cable,1,14.95,2019-03-09 20:49:00,524 Ridge St, New York City,NY,10001 +162626,27in FHD Monitor,1,149.99,2019-03-09 23:47:00,113 Cherry St, San Francisco,CA,94016 +162627,Apple Airpods Headphones,1,150.0,2019-03-24 11:42:00,461 11th St, Los Angeles,CA,90001 +162628,USB-C Charging Cable,1,11.95,2019-03-26 14:56:00,867 Lake St, Seattle,WA,98101 +162629,27in 4K Gaming Monitor,1,389.99,2019-03-27 09:58:00,427 Elm St, San Francisco,CA,94016 +162630,34in Ultrawide Monitor,1,379.99,2019-03-09 00:36:00,418 7th St, Boston,MA,02215 +162631,Bose SoundSport Headphones,1,99.99,2019-03-19 22:27:00,395 Willow St, San Francisco,CA,94016 +162632,AAA Batteries (4-pack),1,2.99,2019-03-18 12:10:00,992 Highland St, New York City,NY,10001 +162633,27in FHD Monitor,1,149.99,2019-03-29 14:42:00,498 Jefferson St, Austin,TX,73301 +162634,Apple Airpods Headphones,1,150.0,2019-03-13 16:42:00,477 14th St, Portland,OR,97035 +162635,27in FHD Monitor,1,149.99,2019-03-08 13:24:00,99 14th St, Austin,TX,73301 +162636,USB-C Charging Cable,1,11.95,2019-03-05 22:49:00,510 Chestnut St, Dallas,TX,75001 +162637,Apple Airpods Headphones,1,150.0,2019-03-10 07:17:00,969 11th St, Los Angeles,CA,90001 +162638,Apple Airpods Headphones,1,150.0,2019-03-19 14:06:00,556 7th St, Seattle,WA,98101 +162639,27in 4K Gaming Monitor,1,389.99,2019-03-07 23:44:00,925 Willow St, Dallas,TX,75001 +162640,27in FHD Monitor,1,149.99,2019-03-20 21:29:00,383 Adams St, Los Angeles,CA,90001 +162641,Apple Airpods Headphones,1,150.0,2019-03-10 11:50:00,155 Wilson St, Los Angeles,CA,90001 +162642,AAA Batteries (4-pack),4,2.99,2019-03-17 18:44:00,962 Maple St, San Francisco,CA,94016 +162643,AAA Batteries (4-pack),1,2.99,2019-03-09 14:56:00,467 Center St, Atlanta,GA,30301 +162644,AAA Batteries (4-pack),1,2.99,2019-03-20 02:15:00,564 Johnson St, Los Angeles,CA,90001 +162645,iPhone,1,700.0,2019-03-25 21:26:00,362 Park St, San Francisco,CA,94016 +162646,Apple Airpods Headphones,1,150.0,2019-03-08 18:11:00,174 Madison St, Dallas,TX,75001 +162647,AAA Batteries (4-pack),1,2.99,2019-03-24 13:47:00,206 Adams St, Atlanta,GA,30301 +162648,AAA Batteries (4-pack),2,2.99,2019-03-26 09:29:00,576 Meadow St, San Francisco,CA,94016 +162649,AAA Batteries (4-pack),1,2.99,2019-03-08 19:04:00,158 Lake St, Seattle,WA,98101 +162650,USB-C Charging Cable,1,11.95,2019-03-11 20:05:00,187 Madison St, New York City,NY,10001 +162651,USB-C Charging Cable,1,11.95,2019-03-04 19:06:00,251 Ridge St, Seattle,WA,98101 +162652,Macbook Pro Laptop,1,1700.0,2019-03-21 20:49:00,165 Church St, Boston,MA,02215 +162653,AAA Batteries (4-pack),2,2.99,2019-03-13 14:51:00,907 Cedar St, San Francisco,CA,94016 +162654,Lightning Charging Cable,1,14.95,2019-03-02 13:40:00,724 Spruce St, San Francisco,CA,94016 +162655,Wired Headphones,1,11.99,2019-03-05 15:54:00,364 1st St, Boston,MA,02215 +162656,Apple Airpods Headphones,2,150.0,2019-03-12 12:30:00,426 Maple St, Los Angeles,CA,90001 +162657,34in Ultrawide Monitor,1,379.99,2019-03-13 07:40:00,326 9th St, San Francisco,CA,94016 +162658,AA Batteries (4-pack),1,3.84,2019-03-06 17:53:00,743 Lake St, Atlanta,GA,30301 +162659,Flatscreen TV,1,300.0,2019-03-02 23:26:00,945 13th St, San Francisco,CA,94016 +162660,AAA Batteries (4-pack),1,2.99,2019-03-14 14:26:00,591 Pine St, New York City,NY,10001 +162661,Lightning Charging Cable,1,14.95,2019-03-04 20:53:00,556 Park St, Austin,TX,73301 +162661,Apple Airpods Headphones,1,150.0,2019-03-04 20:53:00,556 Park St, Austin,TX,73301 +162662,AA Batteries (4-pack),1,3.84,2019-03-06 18:06:00,621 10th St, San Francisco,CA,94016 +162663,Lightning Charging Cable,1,14.95,2019-03-28 15:04:00,253 River St, Austin,TX,73301 +162664,Lightning Charging Cable,1,14.95,2019-03-02 15:59:00,48 13th St, San Francisco,CA,94016 +162665,AAA Batteries (4-pack),3,2.99,2019-03-12 21:22:00,515 Madison St, Los Angeles,CA,90001 +162666,USB-C Charging Cable,1,11.95,2019-03-10 15:19:00,184 Adams St, Dallas,TX,75001 +162667,USB-C Charging Cable,1,11.95,2019-03-21 13:23:00,281 Meadow St, Dallas,TX,75001 +162668,iPhone,1,700.0,2019-03-06 20:17:00,16 Hill St, Los Angeles,CA,90001 +162669,Lightning Charging Cable,1,14.95,2019-03-28 15:29:00,504 Jefferson St, Boston,MA,02215 +162670,AAA Batteries (4-pack),1,2.99,2019-03-09 00:50:00,908 5th St, New York City,NY,10001 +162671,USB-C Charging Cable,1,11.95,2019-03-02 18:34:00,463 13th St, Boston,MA,02215 +162672,20in Monitor,1,109.99,2019-03-05 11:42:00,762 Pine St, Atlanta,GA,30301 +162673,Apple Airpods Headphones,1,150.0,2019-03-03 12:24:00,543 Sunset St, New York City,NY,10001 +162674,Bose SoundSport Headphones,1,99.99,2019-03-16 18:31:00,593 9th St, San Francisco,CA,94016 +162675,27in FHD Monitor,1,149.99,2019-03-28 12:41:00,956 Lake St, Portland,OR,97035 +162676,Apple Airpods Headphones,1,150.0,2019-03-06 20:04:00,854 Park St, Boston,MA,02215 +162677,iPhone,1,700.0,2019-03-31 21:16:00,50 Park St, New York City,NY,10001 +162678,Bose SoundSport Headphones,1,99.99,2019-03-02 17:01:00,256 13th St, Dallas,TX,75001 +162679,Apple Airpods Headphones,1,150.0,2019-03-14 11:53:00,754 Chestnut St, San Francisco,CA,94016 +162680,USB-C Charging Cable,1,11.95,2019-03-29 10:59:00,413 Jefferson St, Los Angeles,CA,90001 +162681,ThinkPad Laptop,1,999.99,2019-03-25 11:26:00,79 Park St, Austin,TX,73301 +162682,Vareebadd Phone,1,400.0,2019-03-12 17:04:00,846 Cherry St, San Francisco,CA,94016 +162683,Google Phone,1,600.0,2019-03-23 19:01:00,587 North St, Los Angeles,CA,90001 +162684,Flatscreen TV,1,300.0,2019-03-09 17:42:00,81 5th St, Los Angeles,CA,90001 +162685,iPhone,1,700.0,2019-03-31 16:23:00,201 Highland St, San Francisco,CA,94016 +162686,AA Batteries (4-pack),1,3.84,2019-03-28 11:21:00,169 Meadow St, Los Angeles,CA,90001 +162687,AAA Batteries (4-pack),1,2.99,2019-03-19 21:59:00,207 Meadow St, Dallas,TX,75001 +162688,Wired Headphones,1,11.99,2019-03-12 10:57:00,849 Adams St, New York City,NY,10001 +162689,USB-C Charging Cable,1,11.95,2019-03-13 12:43:00,279 Walnut St, Boston,MA,02215 +162690,27in FHD Monitor,1,149.99,2019-03-19 08:40:00,121 7th St, San Francisco,CA,94016 +162691,Bose SoundSport Headphones,1,99.99,2019-03-08 14:05:00,108 Park St, Dallas,TX,75001 +162692,Lightning Charging Cable,1,14.95,2019-03-28 14:54:00,824 River St, Dallas,TX,75001 +162693,AAA Batteries (4-pack),2,2.99,2019-03-05 18:59:00,211 12th St, Boston,MA,02215 +162694,AA Batteries (4-pack),1,3.84,2019-03-15 16:35:00,239 Willow St, New York City,NY,10001 +162695,Apple Airpods Headphones,1,150.0,2019-03-12 19:13:00,162 Walnut St, Los Angeles,CA,90001 +162696,Macbook Pro Laptop,1,1700.0,2019-03-06 21:47:00,846 Elm St, Portland,OR,97035 +162697,Macbook Pro Laptop,1,1700.0,2019-03-09 18:27:00,186 4th St, Austin,TX,73301 +162698,Bose SoundSport Headphones,1,99.99,2019-03-13 10:07:00,812 8th St, New York City,NY,10001 +162699,Wired Headphones,1,11.99,2019-03-31 20:22:00,196 Church St, Boston,MA,02215 +162700,Lightning Charging Cable,2,14.95,2019-03-12 14:52:00,571 Sunset St, Boston,MA,02215 +162701,AA Batteries (4-pack),1,3.84,2019-03-27 18:10:00,752 8th St, Atlanta,GA,30301 +162702,Google Phone,1,600.0,2019-03-17 15:38:00,904 River St, Atlanta,GA,30301 +162703,Bose SoundSport Headphones,1,99.99,2019-03-31 11:21:00,980 South St, Seattle,WA,98101 +162704,Macbook Pro Laptop,1,1700.0,2019-03-11 20:06:00,587 Jackson St, Los Angeles,CA,90001 +162705,AAA Batteries (4-pack),3,2.99,2019-03-08 22:09:00,306 Lakeview St, New York City,NY,10001 +162706,Wired Headphones,2,11.99,2019-03-02 06:33:00,935 6th St, Boston,MA,02215 +162707,27in 4K Gaming Monitor,1,389.99,2019-03-16 13:01:00,669 Hill St, Boston,MA,02215 +162708,Lightning Charging Cable,1,14.95,2019-03-22 20:28:00,883 West St, Boston,MA,02215 +162709,AAA Batteries (4-pack),1,2.99,2019-03-26 13:16:00,456 10th St, San Francisco,CA,94016 +162710,USB-C Charging Cable,1,11.95,2019-03-22 13:05:00,580 Pine St, Los Angeles,CA,90001 +162711,Wired Headphones,1,11.99,2019-03-12 13:10:00,76 12th St, San Francisco,CA,94016 +162712,34in Ultrawide Monitor,1,379.99,2019-03-07 20:33:00,608 Center St, Seattle,WA,98101 +162713,AAA Batteries (4-pack),2,2.99,2019-03-06 06:20:00,116 Wilson St, San Francisco,CA,94016 +162714,20in Monitor,1,109.99,2019-03-02 20:04:00,401 11th St, Portland,OR,97035 +162715,ThinkPad Laptop,1,999.99,2019-03-24 10:14:00,956 Lakeview St, Seattle,WA,98101 +162716,20in Monitor,1,109.99,2019-03-11 19:52:00,941 Forest St, Seattle,WA,98101 +162717,AAA Batteries (4-pack),1,2.99,2019-03-28 09:13:00,498 Cedar St, Austin,TX,73301 +162718,Bose SoundSport Headphones,1,99.99,2019-03-04 19:33:00,744 7th St, Los Angeles,CA,90001 +162719,34in Ultrawide Monitor,1,379.99,2019-03-18 12:25:00,270 Church St, San Francisco,CA,94016 +162720,Bose SoundSport Headphones,1,99.99,2019-03-04 15:50:00,435 West St, Austin,TX,73301 +162721,AAA Batteries (4-pack),1,2.99,2019-03-13 02:27:00,682 Wilson St, Los Angeles,CA,90001 +162722,AA Batteries (4-pack),2,3.84,2019-03-14 11:27:00,851 Willow St, San Francisco,CA,94016 +162723,Wired Headphones,1,11.99,2019-03-08 00:34:00,568 11th St, Portland,ME,04101 +162724,Lightning Charging Cable,2,14.95,2019-03-01 18:07:00,274 Cedar St, San Francisco,CA,94016 +162725,Bose SoundSport Headphones,1,99.99,2019-03-02 18:53:00,199 Spruce St, San Francisco,CA,94016 +162726,Macbook Pro Laptop,1,1700.0,2019-03-15 08:45:00,180 12th St, Atlanta,GA,30301 +162727,27in FHD Monitor,1,149.99,2019-03-12 18:33:00,138 Chestnut St, Los Angeles,CA,90001 +162728,Google Phone,1,600.0,2019-03-01 23:38:00,836 Hill St, Boston,MA,02215 +162729,34in Ultrawide Monitor,1,379.99,2019-03-16 19:21:00,744 Washington St, New York City,NY,10001 +162730,Wired Headphones,1,11.99,2019-03-01 10:17:00,673 4th St, Los Angeles,CA,90001 +162731,Wired Headphones,1,11.99,2019-03-25 11:24:00,610 Sunset St, Portland,OR,97035 +162732,Bose SoundSport Headphones,1,99.99,2019-03-01 22:01:00,307 2nd St, Boston,MA,02215 +162733,AAA Batteries (4-pack),2,2.99,2019-03-02 21:46:00,517 Forest St, New York City,NY,10001 +162734,Lightning Charging Cable,1,14.95,2019-03-07 22:34:00,753 Dogwood St, Dallas,TX,75001 +162735,Lightning Charging Cable,1,14.95,2019-03-11 11:26:00,991 Lakeview St, Los Angeles,CA,90001 +162736,Apple Airpods Headphones,1,150.0,2019-03-26 16:27:00,993 River St, San Francisco,CA,94016 +162737,27in FHD Monitor,1,149.99,2019-03-11 16:21:00,207 Wilson St, Austin,TX,73301 +162738,Apple Airpods Headphones,1,150.0,2019-03-16 14:15:00,657 14th St, Dallas,TX,75001 +162739,Google Phone,1,600.0,2019-03-18 11:41:00,305 Madison St, Los Angeles,CA,90001 +162739,USB-C Charging Cable,1,11.95,2019-03-18 11:41:00,305 Madison St, Los Angeles,CA,90001 +162740,Google Phone,1,600.0,2019-03-13 20:18:00,923 Lakeview St, Boston,MA,02215 +162741,Vareebadd Phone,1,400.0,2019-03-01 11:32:00,698 Willow St, Los Angeles,CA,90001 +162741,USB-C Charging Cable,1,11.95,2019-03-01 11:32:00,698 Willow St, Los Angeles,CA,90001 +162742,Apple Airpods Headphones,1,150.0,2019-03-17 10:17:00,393 Pine St, San Francisco,CA,94016 +162743,LG Dryer,1,600.0,2019-03-04 20:11:00,162 13th St, Austin,TX,73301 +162744,Lightning Charging Cable,1,14.95,2019-03-19 17:22:00,733 Ridge St, San Francisco,CA,94016 +162745,Bose SoundSport Headphones,1,99.99,2019-03-12 10:52:00,177 Hickory St, New York City,NY,10001 +162746,AAA Batteries (4-pack),5,2.99,2019-03-25 13:22:00,767 Washington St, San Francisco,CA,94016 +162747,Macbook Pro Laptop,1,1700.0,2019-03-28 12:00:00,125 13th St, Portland,OR,97035 +162748,AAA Batteries (4-pack),1,2.99,2019-03-11 23:13:00,646 11th St, Austin,TX,73301 +162749,Wired Headphones,1,11.99,2019-03-03 21:27:00,155 14th St, New York City,NY,10001 +162750,AAA Batteries (4-pack),2,2.99,2019-03-18 20:24:00,838 Madison St, Boston,MA,02215 +162751,AAA Batteries (4-pack),1,2.99,2019-03-24 23:50:00,430 12th St, Portland,OR,97035 +162752,Bose SoundSport Headphones,1,99.99,2019-03-20 02:06:00,645 Highland St, Los Angeles,CA,90001 +162753,AA Batteries (4-pack),1,3.84,2019-03-30 08:50:00,141 Sunset St, Seattle,WA,98101 +162754,Wired Headphones,1,11.99,2019-03-17 10:29:00,880 Wilson St, Los Angeles,CA,90001 +162755,27in FHD Monitor,1,149.99,2019-03-03 17:55:00,10 Forest St, New York City,NY,10001 +162756,ThinkPad Laptop,1,999.99,2019-03-21 10:07:00,437 14th St, San Francisco,CA,94016 +162757,Google Phone,1,600.0,2019-03-11 20:25:00,843 Cherry St, Boston,MA,02215 +162758,USB-C Charging Cable,1,11.95,2019-03-23 21:39:00,90 5th St, San Francisco,CA,94016 +162759,Vareebadd Phone,1,400.0,2019-03-31 19:30:00,985 Madison St, Atlanta,GA,30301 +162759,Wired Headphones,1,11.99,2019-03-31 19:30:00,985 Madison St, Atlanta,GA,30301 +162760,Apple Airpods Headphones,1,150.0,2019-03-14 11:03:00,346 Hickory St, Boston,MA,02215 +162761,AAA Batteries (4-pack),1,2.99,2019-03-18 09:49:00,712 Lincoln St, Boston,MA,02215 +162762,Wired Headphones,1,11.99,2019-03-17 06:50:00,775 14th St, New York City,NY,10001 +162763,AA Batteries (4-pack),1,3.84,2019-03-24 15:38:00,825 Main St, Los Angeles,CA,90001 +162764,AAA Batteries (4-pack),2,2.99,2019-03-07 18:37:00,271 Ridge St, Boston,MA,02215 +162765,AAA Batteries (4-pack),1,2.99,2019-03-01 20:54:00,991 8th St, Los Angeles,CA,90001 +162766,AAA Batteries (4-pack),2,2.99,2019-03-28 18:23:00,518 10th St, New York City,NY,10001 +162767,AAA Batteries (4-pack),1,2.99,2019-03-31 17:49:00,667 Washington St, Atlanta,GA,30301 +162768,AAA Batteries (4-pack),1,2.99,2019-03-31 10:35:00,312 1st St, Portland,OR,97035 +162769,Flatscreen TV,1,300.0,2019-03-07 10:13:00,711 South St, San Francisco,CA,94016 +162770,Flatscreen TV,1,300.0,2019-03-30 17:54:00,749 2nd St, San Francisco,CA,94016 +162771,Google Phone,1,600.0,2019-03-01 09:08:00,198 Center St, San Francisco,CA,94016 +162772,Wired Headphones,1,11.99,2019-03-03 09:53:00,894 14th St, Boston,MA,02215 +162773,Bose SoundSport Headphones,1,99.99,2019-03-28 08:17:00,933 9th St, San Francisco,CA,94016 +162774,Wired Headphones,1,11.99,2019-03-25 19:09:00,891 4th St, Boston,MA,02215 +162775,USB-C Charging Cable,1,11.95,2019-03-31 13:23:00,158 7th St, Portland,OR,97035 +162776,USB-C Charging Cable,1,11.95,2019-03-04 16:31:00,333 Highland St, Los Angeles,CA,90001 +162777,AA Batteries (4-pack),1,3.84,2019-03-15 18:56:00,531 Sunset St, Dallas,TX,75001 +162778,AA Batteries (4-pack),1,3.84,2019-03-13 23:39:00,264 River St, Portland,OR,97035 +162779,USB-C Charging Cable,1,11.95,2019-03-18 12:57:00,424 Highland St, Dallas,TX,75001 +162780,AA Batteries (4-pack),1,3.84,2019-03-20 12:20:00,468 Jackson St, New York City,NY,10001 +162781,AAA Batteries (4-pack),1,2.99,2019-03-28 12:49:00,278 Hickory St, Los Angeles,CA,90001 +162782,iPhone,1,700.0,2019-03-31 13:13:00,931 Jefferson St, Dallas,TX,75001 +162783,Lightning Charging Cable,1,14.95,2019-03-31 12:23:00,690 Willow St, Atlanta,GA,30301 +162784,Bose SoundSport Headphones,1,99.99,2019-03-08 13:25:00,229 9th St, Dallas,TX,75001 +162785,Wired Headphones,1,11.99,2019-03-02 19:17:00,501 Wilson St, Portland,OR,97035 +162786,Lightning Charging Cable,1,14.95,2019-03-09 06:00:00,107 5th St, New York City,NY,10001 +162786,Bose SoundSport Headphones,1,99.99,2019-03-09 06:00:00,107 5th St, New York City,NY,10001 +162787,Wired Headphones,1,11.99,2019-03-23 13:42:00,657 Walnut St, Portland,OR,97035 +162788,Bose SoundSport Headphones,1,99.99,2019-03-15 17:22:00,927 13th St, Los Angeles,CA,90001 +162788,Apple Airpods Headphones,1,150.0,2019-03-15 17:22:00,927 13th St, Los Angeles,CA,90001 +162789,AA Batteries (4-pack),1,3.84,2019-03-23 19:17:00,362 Forest St, Dallas,TX,75001 +162790,Lightning Charging Cable,1,14.95,2019-03-22 14:01:00,216 River St, San Francisco,CA,94016 +162791,Lightning Charging Cable,1,14.95,2019-03-01 22:54:00,82 4th St, Los Angeles,CA,90001 +162792,Wired Headphones,1,11.99,2019-03-08 12:48:00,3 Chestnut St, San Francisco,CA,94016 +162793,USB-C Charging Cable,1,11.95,2019-03-28 10:03:00,159 Johnson St, Los Angeles,CA,90001 +162794,AA Batteries (4-pack),1,3.84,2019-03-28 11:37:00,970 6th St, Atlanta,GA,30301 +162795,AA Batteries (4-pack),1,3.84,2019-03-03 11:58:00,647 9th St, Seattle,WA,98101 +162796,Wired Headphones,1,11.99,2019-03-03 05:45:00,130 Hickory St, Los Angeles,CA,90001 +162797,Lightning Charging Cable,1,14.95,2019-03-05 19:07:00,918 5th St, Portland,OR,97035 +162798,20in Monitor,1,109.99,2019-03-20 07:52:00,591 9th St, San Francisco,CA,94016 +162799,27in 4K Gaming Monitor,1,389.99,2019-03-01 12:03:00,491 Ridge St, Boston,MA,02215 +162800,Lightning Charging Cable,1,14.95,2019-03-28 15:36:00,474 Washington St, Dallas,TX,75001 +162801,iPhone,1,700.0,2019-03-19 17:41:00,408 River St, New York City,NY,10001 +162801,Apple Airpods Headphones,1,150.0,2019-03-19 17:41:00,408 River St, New York City,NY,10001 +162802,Wired Headphones,1,11.99,2019-03-20 15:29:00,790 5th St, Los Angeles,CA,90001 +162803,USB-C Charging Cable,1,11.95,2019-03-03 09:59:00,614 7th St, Austin,TX,73301 +162804,AA Batteries (4-pack),1,3.84,2019-03-13 21:30:00,711 13th St, Portland,OR,97035 +162805,AAA Batteries (4-pack),2,2.99,2019-03-11 23:15:00,40 14th St, Boston,MA,02215 +162806,27in 4K Gaming Monitor,1,389.99,2019-03-03 19:57:00,773 South St, San Francisco,CA,94016 +162807,Lightning Charging Cable,1,14.95,2019-03-19 17:40:00,574 Maple St, San Francisco,CA,94016 +162808,AA Batteries (4-pack),1,3.84,2019-03-20 09:55:00,899 Main St, Portland,OR,97035 +162809,Bose SoundSport Headphones,1,99.99,2019-03-22 17:34:00,690 River St, San Francisco,CA,94016 +162810,Flatscreen TV,1,300.0,2019-03-26 14:12:00,503 Cherry St, Atlanta,GA,30301 +162811,20in Monitor,1,109.99,2019-03-30 15:30:00,147 Adams St, Boston,MA,02215 +162812,Lightning Charging Cable,1,14.95,2019-03-23 13:13:00,839 Center St, New York City,NY,10001 +162813,27in FHD Monitor,1,149.99,2019-03-13 17:37:00,865 Adams St, Portland,ME,04101 +162814,Apple Airpods Headphones,1,150.0,2019-03-29 20:40:00,742 Spruce St, Dallas,TX,75001 +162814,USB-C Charging Cable,1,11.95,2019-03-29 20:40:00,742 Spruce St, Dallas,TX,75001 +162815,Wired Headphones,1,11.99,2019-03-07 13:21:00,619 6th St, Boston,MA,02215 +162816,Wired Headphones,1,11.99,2019-03-08 15:59:00,650 Forest St, Los Angeles,CA,90001 +162817,AAA Batteries (4-pack),2,2.99,2019-03-24 11:58:00,120 Forest St, San Francisco,CA,94016 +162818,USB-C Charging Cable,1,11.95,2019-03-30 18:39:00,923 Center St, Seattle,WA,98101 +162819,Bose SoundSport Headphones,1,99.99,2019-03-26 17:52:00,936 Forest St, Atlanta,GA,30301 +162820,Wired Headphones,1,11.99,2019-03-07 21:56:00,6 Ridge St, Los Angeles,CA,90001 +162821,Lightning Charging Cable,1,14.95,2019-03-10 16:28:00,71 Spruce St, Seattle,WA,98101 +162822,Lightning Charging Cable,2,14.95,2019-03-02 13:22:00,61 Hill St, San Francisco,CA,94016 +162823,Lightning Charging Cable,2,14.95,2019-03-03 19:30:00,840 6th St, Boston,MA,02215 +162824,Lightning Charging Cable,1,14.95,2019-03-24 21:26:00,242 West St, Boston,MA,02215 +162825,USB-C Charging Cable,1,11.95,2019-03-05 14:10:00,484 1st St, New York City,NY,10001 +162826,USB-C Charging Cable,2,11.95,2019-03-22 11:30:00,172 Park St, Seattle,WA,98101 +162827,AA Batteries (4-pack),1,3.84,2019-03-12 09:25:00,91 Forest St, Boston,MA,02215 +162828,Apple Airpods Headphones,1,150.0,2019-03-28 12:35:00,255 Forest St, Portland,OR,97035 +162829,ThinkPad Laptop,1,999.99,2019-03-02 14:53:00,743 Walnut St, Los Angeles,CA,90001 +162830,Bose SoundSport Headphones,1,99.99,2019-03-20 08:42:00,284 Chestnut St, Boston,MA,02215 +162831,Wired Headphones,1,11.99,2019-03-05 19:53:00,943 Ridge St, Seattle,WA,98101 +162832,Apple Airpods Headphones,1,150.0,2019-03-13 22:35:00,946 Center St, Los Angeles,CA,90001 +162833,Flatscreen TV,1,300.0,2019-03-28 20:49:00,764 Sunset St, Boston,MA,02215 +162834,Bose SoundSport Headphones,1,99.99,2019-03-05 09:24:00,743 1st St, San Francisco,CA,94016 +162835,Apple Airpods Headphones,1,150.0,2019-03-15 12:31:00,190 Chestnut St, Portland,OR,97035 +162836,Google Phone,1,600.0,2019-03-26 21:18:00,562 9th St, New York City,NY,10001 +162837,USB-C Charging Cable,2,11.95,2019-03-05 22:41:00,63 Walnut St, Los Angeles,CA,90001 +162838,Wired Headphones,2,11.99,2019-03-02 22:33:00,306 Walnut St, New York City,NY,10001 +162839,USB-C Charging Cable,1,11.95,2019-03-30 07:52:00,201 Chestnut St, Austin,TX,73301 +162840,Wired Headphones,1,11.99,2019-03-13 15:27:00,137 Sunset St, San Francisco,CA,94016 +162841,Wired Headphones,1,11.99,2019-03-12 12:57:00,867 River St, Atlanta,GA,30301 +162842,Flatscreen TV,1,300.0,2019-03-14 14:17:00,882 South St, New York City,NY,10001 +162843,Bose SoundSport Headphones,1,99.99,2019-03-29 08:53:00,721 Sunset St, Dallas,TX,75001 +162844,Lightning Charging Cable,1,14.95,2019-03-02 08:31:00,991 Pine St, Los Angeles,CA,90001 +162845,Apple Airpods Headphones,1,150.0,2019-03-04 18:24:00,68 Park St, San Francisco,CA,94016 +162846,Bose SoundSport Headphones,1,99.99,2019-03-17 12:24:00,410 Lincoln St, Dallas,TX,75001 +162847,Lightning Charging Cable,1,14.95,2019-03-03 19:58:00,674 2nd St, Atlanta,GA,30301 +162848,Lightning Charging Cable,1,14.95,2019-03-10 21:16:00,685 Highland St, San Francisco,CA,94016 +162849,Macbook Pro Laptop,1,1700.0,2019-03-17 09:13:00,409 Lake St, San Francisco,CA,94016 +162850,Lightning Charging Cable,1,14.95,2019-03-08 17:13:00,454 Adams St, Los Angeles,CA,90001 +162851,Apple Airpods Headphones,1,150.0,2019-03-07 11:36:00,763 Highland St, Boston,MA,02215 +162852,27in FHD Monitor,1,149.99,2019-03-17 15:55:00,575 Johnson St, Los Angeles,CA,90001 +162853,Wired Headphones,1,11.99,2019-03-14 23:10:00,696 Jefferson St, Boston,MA,02215 +162854,iPhone,1,700.0,2019-03-15 10:42:00,648 Hickory St, Los Angeles,CA,90001 +162854,Lightning Charging Cable,2,14.95,2019-03-15 10:42:00,648 Hickory St, Los Angeles,CA,90001 +162855,Apple Airpods Headphones,1,150.0,2019-03-22 08:56:00,376 Adams St, Atlanta,GA,30301 +162856,Lightning Charging Cable,1,14.95,2019-03-19 09:25:00,79 Main St, Austin,TX,73301 +162857,34in Ultrawide Monitor,1,379.99,2019-03-05 00:08:00,15 Madison St, Los Angeles,CA,90001 +162857,AA Batteries (4-pack),1,3.84,2019-03-05 00:08:00,15 Madison St, Los Angeles,CA,90001 +162858,USB-C Charging Cable,1,11.95,2019-03-19 23:20:00,127 Chestnut St, San Francisco,CA,94016 +162859,Bose SoundSport Headphones,1,99.99,2019-03-27 18:57:00,969 Walnut St, Los Angeles,CA,90001 +162860,USB-C Charging Cable,1,11.95,2019-03-04 14:12:00,153 Chestnut St, San Francisco,CA,94016 +162861,Apple Airpods Headphones,1,150.0,2019-03-19 19:11:00,769 5th St, New York City,NY,10001 +162862,Lightning Charging Cable,1,14.95,2019-03-23 07:21:00,265 1st St, Boston,MA,02215 +162863,USB-C Charging Cable,2,11.95,2019-03-08 16:43:00,44 2nd St, New York City,NY,10001 +162864,AA Batteries (4-pack),2,3.84,2019-03-31 17:46:00,792 Adams St, San Francisco,CA,94016 +162865,Wired Headphones,1,11.99,2019-03-27 01:36:00,533 Pine St, San Francisco,CA,94016 +162866,AAA Batteries (4-pack),1,2.99,2019-03-26 09:24:00,43 Hickory St, San Francisco,CA,94016 +162867,USB-C Charging Cable,1,11.95,2019-03-31 13:37:00,880 Spruce St, Dallas,TX,75001 +162868,27in FHD Monitor,1,149.99,2019-03-04 00:39:00,106 Willow St, Los Angeles,CA,90001 +162869,AA Batteries (4-pack),1,3.84,2019-03-31 13:27:00,626 Lake St, New York City,NY,10001 +162870,Wired Headphones,1,11.99,2019-03-23 08:12:00,782 Adams St, Austin,TX,73301 +162871,Bose SoundSport Headphones,1,99.99,2019-03-16 10:06:00,606 Chestnut St, New York City,NY,10001 +162872,USB-C Charging Cable,1,11.95,2019-03-18 09:22:00,881 Adams St, Atlanta,GA,30301 +162873,Flatscreen TV,1,300.0,2019-03-20 16:07:00,719 2nd St, New York City,NY,10001 +162874,Apple Airpods Headphones,1,150.0,2019-03-19 15:15:00,842 10th St, San Francisco,CA,94016 +162875,Macbook Pro Laptop,1,1700.0,2019-03-27 22:03:00,896 Cedar St, Seattle,WA,98101 +162876,AAA Batteries (4-pack),1,2.99,2019-03-11 08:29:00,671 12th St, San Francisco,CA,94016 +162877,Google Phone,1,600.0,2019-03-29 11:26:00,305 Spruce St, New York City,NY,10001 +162877,Bose SoundSport Headphones,1,99.99,2019-03-29 11:26:00,305 Spruce St, New York City,NY,10001 +162878,Lightning Charging Cable,1,14.95,2019-03-22 18:48:00,362 Adams St, New York City,NY,10001 +162879,Apple Airpods Headphones,1,150.0,2019-03-14 17:45:00,612 Ridge St, Austin,TX,73301 +162880,Wired Headphones,1,11.99,2019-03-17 15:02:00,927 Pine St, Boston,MA,02215 +162881,Google Phone,1,600.0,2019-03-02 15:07:00,403 Chestnut St, Dallas,TX,75001 +162882,34in Ultrawide Monitor,1,379.99,2019-03-12 23:10:00,345 Forest St, Portland,OR,97035 +162883,Vareebadd Phone,1,400.0,2019-03-24 14:19:00,349 Walnut St, New York City,NY,10001 +162883,USB-C Charging Cable,1,11.95,2019-03-24 14:19:00,349 Walnut St, New York City,NY,10001 +162884,AAA Batteries (4-pack),2,2.99,2019-03-12 19:03:00,155 Hill St, Seattle,WA,98101 +162885,AAA Batteries (4-pack),3,2.99,2019-03-31 23:28:00,784 Elm St, Atlanta,GA,30301 +162886,USB-C Charging Cable,2,11.95,2019-03-20 10:13:00,231 7th St, Los Angeles,CA,90001 +162887,Lightning Charging Cable,1,14.95,2019-03-09 17:04:00,958 11th St, Atlanta,GA,30301 +162888,USB-C Charging Cable,3,11.95,2019-03-24 08:55:00,156 West St, Los Angeles,CA,90001 +162889,Bose SoundSport Headphones,1,99.99,2019-03-14 14:06:00,199 1st St, Atlanta,GA,30301 +162890,Flatscreen TV,1,300.0,2019-03-24 20:59:00,956 Park St, San Francisco,CA,94016 +162891,AAA Batteries (4-pack),1,2.99,2019-03-27 04:01:00,992 Pine St, Seattle,WA,98101 +162892,AA Batteries (4-pack),1,3.84,2019-03-12 10:58:00,753 Adams St, Portland,ME,04101 +162893,Apple Airpods Headphones,1,150.0,2019-03-19 12:37:00,722 Jackson St, San Francisco,CA,94016 +162894,AA Batteries (4-pack),2,3.84,2019-03-18 23:05:00,191 Meadow St, Seattle,WA,98101 +162895,Bose SoundSport Headphones,1,99.99,2019-03-15 20:06:00,924 Church St, San Francisco,CA,94016 +162896,Wired Headphones,1,11.99,2019-03-14 18:01:00,847 Center St, Boston,MA,02215 +162897,Bose SoundSport Headphones,1,99.99,2019-03-09 13:06:00,883 Jackson St, San Francisco,CA,94016 +162898,USB-C Charging Cable,1,11.95,2019-03-07 12:01:00,272 Ridge St, Atlanta,GA,30301 +162899,34in Ultrawide Monitor,1,379.99,2019-03-17 19:42:00,577 Lincoln St, Dallas,TX,75001 +162900,27in FHD Monitor,1,149.99,2019-03-27 05:38:00,300 Church St, Seattle,WA,98101 +162901,Lightning Charging Cable,1,14.95,2019-03-13 23:24:00,803 12th St, Atlanta,GA,30301 +162902,Google Phone,1,600.0,2019-03-20 10:21:00,160 Pine St, San Francisco,CA,94016 +162903,AAA Batteries (4-pack),2,2.99,2019-03-27 12:02:00,901 Lake St, San Francisco,CA,94016 +162904,AA Batteries (4-pack),1,3.84,2019-03-14 17:06:00,77 River St, New York City,NY,10001 +162905,Apple Airpods Headphones,1,150.0,2019-03-20 18:09:00,842 Washington St, Boston,MA,02215 +162906,27in FHD Monitor,1,149.99,2019-03-07 18:49:00,993 2nd St, Boston,MA,02215 +162907,AA Batteries (4-pack),1,3.84,2019-03-06 10:25:00,126 Ridge St, Seattle,WA,98101 +162908,Macbook Pro Laptop,1,1700.0,2019-03-23 09:57:00,507 1st St, Los Angeles,CA,90001 +162909,27in FHD Monitor,1,149.99,2019-03-17 17:50:00,319 Lake St, Seattle,WA,98101 +162910,iPhone,1,700.0,2019-03-10 12:42:00,816 Pine St, Seattle,WA,98101 +162911,AAA Batteries (4-pack),1,2.99,2019-03-28 13:49:00,501 Pine St, Los Angeles,CA,90001 +162912,Bose SoundSport Headphones,1,99.99,2019-03-02 22:56:00,326 4th St, Boston,MA,02215 +162913,AA Batteries (4-pack),3,3.84,2019-03-30 19:47:00,701 Highland St, New York City,NY,10001 +162914,Google Phone,1,600.0,2019-03-26 17:53:00,728 Pine St, New York City,NY,10001 +162915,USB-C Charging Cable,1,11.95,2019-03-11 10:09:00,905 Meadow St, New York City,NY,10001 +162916,Flatscreen TV,1,300.0,2019-03-10 19:22:00,485 South St, New York City,NY,10001 +162917,Apple Airpods Headphones,1,150.0,2019-03-10 12:07:00,654 River St, Atlanta,GA,30301 +162918,AA Batteries (4-pack),1,3.84,2019-03-16 08:46:00,247 Lake St, Austin,TX,73301 +162919,27in FHD Monitor,1,149.99,2019-03-02 14:21:00,432 Chestnut St, Los Angeles,CA,90001 +162920,AA Batteries (4-pack),1,3.84,2019-03-26 22:43:00,723 Pine St, Austin,TX,73301 +162921,AAA Batteries (4-pack),1,2.99,2019-03-25 18:59:00,308 Maple St, Boston,MA,02215 +162922,Bose SoundSport Headphones,1,99.99,2019-03-28 15:04:00,788 Maple St, Los Angeles,CA,90001 +162923,34in Ultrawide Monitor,1,379.99,2019-03-09 00:17:00,746 Lakeview St, Atlanta,GA,30301 +162924,AAA Batteries (4-pack),1,2.99,2019-03-02 20:27:00,971 River St, San Francisco,CA,94016 +162925,Bose SoundSport Headphones,1,99.99,2019-03-24 08:15:00,994 West St, Los Angeles,CA,90001 +162926,Apple Airpods Headphones,1,150.0,2019-03-30 21:34:00,558 South St, Portland,OR,97035 +162927,Apple Airpods Headphones,1,150.0,2019-03-24 19:20:00,800 Sunset St, New York City,NY,10001 +162928,AA Batteries (4-pack),1,3.84,2019-03-26 22:23:00,292 Cedar St, San Francisco,CA,94016 +162929,AAA Batteries (4-pack),2,2.99,2019-03-26 15:43:00,17 Hickory St, San Francisco,CA,94016 +162930,27in FHD Monitor,1,149.99,2019-03-22 14:22:00,715 12th St, San Francisco,CA,94016 +162931,Wired Headphones,1,11.99,2019-03-24 18:48:00,867 Spruce St, Seattle,WA,98101 +162932,Apple Airpods Headphones,1,150.0,2019-03-04 08:41:00,227 5th St, Los Angeles,CA,90001 +162933,Bose SoundSport Headphones,1,99.99,2019-03-12 12:05:00,464 2nd St, Atlanta,GA,30301 +162934,Vareebadd Phone,1,400.0,2019-03-11 10:10:00,787 Ridge St, San Francisco,CA,94016 +162934,USB-C Charging Cable,1,11.95,2019-03-11 10:10:00,787 Ridge St, San Francisco,CA,94016 +162935,USB-C Charging Cable,1,11.95,2019-03-15 12:47:00,527 Forest St, Atlanta,GA,30301 +162936,AAA Batteries (4-pack),2,2.99,2019-03-13 12:46:00,900 12th St, San Francisco,CA,94016 +162937,Apple Airpods Headphones,1,150.0,2019-03-10 12:54:00,698 Lake St, Seattle,WA,98101 +162938,AAA Batteries (4-pack),1,2.99,2019-03-25 06:39:00,877 14th St, Los Angeles,CA,90001 +162939,34in Ultrawide Monitor,1,379.99,2019-03-24 10:34:00,885 4th St, Los Angeles,CA,90001 +162940,ThinkPad Laptop,1,999.99,2019-03-04 16:36:00,426 Highland St, San Francisco,CA,94016 +162941,AA Batteries (4-pack),2,3.84,2019-03-07 07:35:00,241 1st St, San Francisco,CA,94016 +162942,Wired Headphones,1,11.99,2019-03-21 13:58:00,623 7th St, Boston,MA,02215 +162943,iPhone,1,700.0,2019-03-22 19:49:00,746 Jefferson St, San Francisco,CA,94016 +162944,27in 4K Gaming Monitor,1,389.99,2019-03-24 05:05:00,799 Center St, New York City,NY,10001 +162945,Wired Headphones,1,11.99,2019-03-15 17:50:00,377 Chestnut St, Los Angeles,CA,90001 +162946,Google Phone,1,600.0,2019-03-19 11:12:00,709 Walnut St, San Francisco,CA,94016 +162947,Lightning Charging Cable,1,14.95,2019-03-12 13:55:00,213 Jefferson St, New York City,NY,10001 +162948,Google Phone,1,600.0,2019-03-13 11:24:00,508 Chestnut St, Boston,MA,02215 +162949,Flatscreen TV,1,300.0,2019-03-17 17:16:00,390 12th St, New York City,NY,10001 +162950,27in 4K Gaming Monitor,1,389.99,2019-03-14 10:15:00,618 West St, Austin,TX,73301 +162951,USB-C Charging Cable,1,11.95,2019-03-19 09:00:00,991 Cherry St, San Francisco,CA,94016 +162952,Apple Airpods Headphones,1,150.0,2019-03-05 12:57:00,95 6th St, New York City,NY,10001 +162953,Wired Headphones,1,11.99,2019-03-19 15:14:00,865 Chestnut St, Austin,TX,73301 +162954,USB-C Charging Cable,1,11.95,2019-03-16 12:07:00,102 Jackson St, San Francisco,CA,94016 +162955,iPhone,1,700.0,2019-03-01 17:56:00,151 South St, Seattle,WA,98101 +162955,Lightning Charging Cable,1,14.95,2019-03-01 17:56:00,151 South St, Seattle,WA,98101 +162956,AAA Batteries (4-pack),1,2.99,2019-03-11 17:21:00,569 Elm St, Atlanta,GA,30301 +162957,Apple Airpods Headphones,1,150.0,2019-03-08 11:13:00,399 South St, Atlanta,GA,30301 +162958,AAA Batteries (4-pack),2,2.99,2019-03-26 18:01:00,31 River St, Boston,MA,02215 +162959,Wired Headphones,1,11.99,2019-03-01 23:21:00,52 Sunset St, Atlanta,GA,30301 +162960,USB-C Charging Cable,1,11.95,2019-03-20 18:17:00,71 Madison St, Los Angeles,CA,90001 +162961,AAA Batteries (4-pack),2,2.99,2019-03-17 14:16:00,573 7th St, Portland,OR,97035 +162962,AA Batteries (4-pack),2,3.84,2019-03-12 19:33:00,669 Washington St, Dallas,TX,75001 +162963,Bose SoundSport Headphones,1,99.99,2019-03-18 14:29:00,695 1st St, Portland,OR,97035 +162964,AAA Batteries (4-pack),1,2.99,2019-03-27 17:14:00,395 Johnson St, New York City,NY,10001 +162965,Lightning Charging Cable,1,14.95,2019-03-06 16:00:00,40 Center St, San Francisco,CA,94016 +162966,Wired Headphones,1,11.99,2019-03-20 18:13:00,115 Center St, San Francisco,CA,94016 +162967,Bose SoundSport Headphones,1,99.99,2019-03-29 13:48:00,173 5th St, Seattle,WA,98101 +162968,AAA Batteries (4-pack),1,2.99,2019-03-25 15:31:00,891 14th St, Austin,TX,73301 +162969,Lightning Charging Cable,1,14.95,2019-03-12 12:46:00,903 Jackson St, San Francisco,CA,94016 +162970,USB-C Charging Cable,1,11.95,2019-03-29 18:48:00,43 2nd St, Los Angeles,CA,90001 +162971,AAA Batteries (4-pack),2,2.99,2019-03-29 19:07:00,294 Willow St, Atlanta,GA,30301 +162972,USB-C Charging Cable,1,11.95,2019-03-03 18:53:00,697 Lakeview St, Portland,ME,04101 +162973,AA Batteries (4-pack),5,3.84,2019-03-04 00:08:00,650 8th St, Portland,OR,97035 +162974,27in 4K Gaming Monitor,1,389.99,2019-03-29 18:43:00,879 Meadow St, Seattle,WA,98101 +162975,Lightning Charging Cable,1,14.95,2019-03-08 13:53:00,721 Main St, New York City,NY,10001 +162976,20in Monitor,1,109.99,2019-03-17 02:54:00,497 4th St, New York City,NY,10001 +162977,Flatscreen TV,1,300.0,2019-03-25 07:24:00,940 South St, Boston,MA,02215 +162978,USB-C Charging Cable,1,11.95,2019-03-21 09:27:00,310 5th St, Portland,OR,97035 +162979,iPhone,1,700.0,2019-03-22 11:41:00,791 13th St, Los Angeles,CA,90001 +162980,AA Batteries (4-pack),1,3.84,2019-03-24 19:53:00,466 West St, Austin,TX,73301 +162981,AAA Batteries (4-pack),2,2.99,2019-03-08 11:08:00,743 Sunset St, New York City,NY,10001 +162982,Lightning Charging Cable,1,14.95,2019-03-09 05:58:00,605 Main St, Portland,OR,97035 +162983,USB-C Charging Cable,1,11.95,2019-03-30 14:40:00,22 Forest St, Dallas,TX,75001 +162984,Flatscreen TV,1,300.0,2019-03-06 11:51:00,675 Pine St, New York City,NY,10001 +162985,Wired Headphones,1,11.99,2019-03-22 16:25:00,489 Forest St, Los Angeles,CA,90001 +162986,Apple Airpods Headphones,1,150.0,2019-03-22 01:15:00,269 Walnut St, Los Angeles,CA,90001 +162987,AA Batteries (4-pack),1,3.84,2019-03-18 14:55:00,514 River St, New York City,NY,10001 +162988,Google Phone,1,600.0,2019-03-27 17:49:00,493 Walnut St, New York City,NY,10001 +162988,Wired Headphones,1,11.99,2019-03-27 17:49:00,493 Walnut St, New York City,NY,10001 +162989,Wired Headphones,1,11.99,2019-03-06 15:46:00,683 9th St, Austin,TX,73301 +162990,Google Phone,1,600.0,2019-03-21 10:22:00,306 North St, Austin,TX,73301 +162991,Wired Headphones,3,11.99,2019-03-03 09:09:00,810 Center St, San Francisco,CA,94016 +162992,USB-C Charging Cable,1,11.95,2019-03-04 19:19:00,720 South St, Dallas,TX,75001 +162993,27in FHD Monitor,1,149.99,2019-03-10 20:15:00,267 6th St, San Francisco,CA,94016 +162994,Flatscreen TV,1,300.0,2019-03-14 21:37:00,981 9th St, Boston,MA,02215 +162995,USB-C Charging Cable,1,11.95,2019-03-18 12:38:00,178 South St, Los Angeles,CA,90001 +162996,27in 4K Gaming Monitor,1,389.99,2019-03-27 16:53:00,649 8th St, Atlanta,GA,30301 +162997,Lightning Charging Cable,1,14.95,2019-03-22 23:45:00,801 9th St, New York City,NY,10001 +162998,Lightning Charging Cable,1,14.95,2019-03-31 14:32:00,118 14th St, New York City,NY,10001 +162999,Lightning Charging Cable,1,14.95,2019-03-03 17:37:00,340 Highland St, San Francisco,CA,94016 +163000,AA Batteries (4-pack),1,3.84,2019-03-13 14:29:00,80 Willow St, San Francisco,CA,94016 +163001,AAA Batteries (4-pack),3,2.99,2019-03-31 14:43:00,433 Jefferson St, Los Angeles,CA,90001 +163002,Google Phone,1,600.0,2019-03-08 13:19:00,896 Church St, Los Angeles,CA,90001 +163002,USB-C Charging Cable,1,11.95,2019-03-08 13:19:00,896 Church St, Los Angeles,CA,90001 +163003,USB-C Charging Cable,1,11.95,2019-03-22 20:42:00,304 West St, Atlanta,GA,30301 +163004,AAA Batteries (4-pack),1,2.99,2019-03-16 08:25:00,966 Center St, Portland,OR,97035 +163005,AA Batteries (4-pack),1,3.84,2019-03-23 19:26:00,339 Hill St, New York City,NY,10001 +163006,Macbook Pro Laptop,1,1700.0,2019-03-20 14:53:00,792 12th St, Atlanta,GA,30301 +163007,Macbook Pro Laptop,1,1700.0,2019-03-29 11:26:00,981 Elm St, Los Angeles,CA,90001 +163008,Lightning Charging Cable,1,14.95,2019-03-22 21:07:00,740 11th St, Seattle,WA,98101 +163009,Wired Headphones,1,11.99,2019-03-19 22:01:00,181 Chestnut St, Seattle,WA,98101 +163010,AAA Batteries (4-pack),1,2.99,2019-03-10 23:02:00,514 Washington St, Dallas,TX,75001 +163011,Wired Headphones,3,11.99,2019-03-05 18:28:00,594 Forest St, Boston,MA,02215 +163012,USB-C Charging Cable,1,11.95,2019-03-30 01:13:00,74 Meadow St, Austin,TX,73301 +163013,Lightning Charging Cable,1,14.95,2019-03-23 18:29:00,885 4th St, Los Angeles,CA,90001 +163014,Flatscreen TV,1,300.0,2019-03-27 10:12:00,85 North St, San Francisco,CA,94016 +163015,AAA Batteries (4-pack),2,2.99,2019-03-04 14:46:00,451 Center St, Seattle,WA,98101 +163016,27in FHD Monitor,1,149.99,2019-03-15 20:38:00,3 West St, Portland,OR,97035 +163017,Lightning Charging Cable,1,14.95,2019-03-23 22:42:00,380 Highland St, Atlanta,GA,30301 +163018,AAA Batteries (4-pack),1,2.99,2019-03-17 14:10:00,694 Cedar St, Seattle,WA,98101 +163019,Lightning Charging Cable,1,14.95,2019-03-18 15:37:00,27 Lake St, San Francisco,CA,94016 +163019,34in Ultrawide Monitor,1,379.99,2019-03-18 15:37:00,27 Lake St, San Francisco,CA,94016 +163020,34in Ultrawide Monitor,1,379.99,2019-03-15 09:27:00,851 Hill St, Los Angeles,CA,90001 +163021,Apple Airpods Headphones,1,150.0,2019-03-30 21:40:00,854 2nd St, Seattle,WA,98101 +163022,Macbook Pro Laptop,1,1700.0,2019-03-26 21:13:00,66 Johnson St, New York City,NY,10001 +163023,Flatscreen TV,1,300.0,2019-03-22 19:49:00,12 Jefferson St, Los Angeles,CA,90001 +163024,USB-C Charging Cable,1,11.95,2019-03-29 14:52:00,580 Lincoln St, Dallas,TX,75001 +163025,iPhone,1,700.0,2019-03-19 14:59:00,561 7th St, San Francisco,CA,94016 +163026,Google Phone,1,600.0,2019-03-04 09:27:00,976 Willow St, Dallas,TX,75001 +163027,AA Batteries (4-pack),1,3.84,2019-03-21 19:31:00,212 7th St, Seattle,WA,98101 +163028,27in 4K Gaming Monitor,1,389.99,2019-03-28 20:45:00,596 Cherry St, Dallas,TX,75001 +163029,iPhone,1,700.0,2019-03-08 20:58:00,155 Church St, New York City,NY,10001 +163030,Wired Headphones,1,11.99,2019-03-19 20:13:00,313 Ridge St, Los Angeles,CA,90001 +163031,27in FHD Monitor,1,149.99,2019-03-21 14:56:00,220 Center St, Los Angeles,CA,90001 +163032,Lightning Charging Cable,1,14.95,2019-03-08 14:21:00,50 Dogwood St, Boston,MA,02215 +163033,27in FHD Monitor,1,149.99,2019-03-20 11:58:00,253 9th St, Boston,MA,02215 +163034,Apple Airpods Headphones,1,150.0,2019-03-06 14:38:00,860 Lincoln St, San Francisco,CA,94016 +163035,AAA Batteries (4-pack),1,2.99,2019-03-27 18:10:00,725 Maple St, Austin,TX,73301 +163036,34in Ultrawide Monitor,1,379.99,2019-03-01 22:05:00,452 Meadow St, Los Angeles,CA,90001 +163037,AAA Batteries (4-pack),1,2.99,2019-03-07 19:20:00,264 Adams St, Dallas,TX,75001 +163038,Macbook Pro Laptop,1,1700.0,2019-03-07 10:23:00,700 Pine St, San Francisco,CA,94016 +163039,AAA Batteries (4-pack),2,2.99,2019-03-06 18:10:00,382 Cherry St, Boston,MA,02215 +163040,LG Washing Machine,1,600.0,2019-03-27 16:01:00,86 Madison St, Los Angeles,CA,90001 +163041,USB-C Charging Cable,2,11.95,2019-03-23 10:13:00,130 Wilson St, Seattle,WA,98101 +163042,ThinkPad Laptop,1,999.99,2019-03-16 16:43:00,781 Park St, San Francisco,CA,94016 +163043,Wired Headphones,1,11.99,2019-03-19 08:35:00,5 Main St, Portland,OR,97035 +163044,Lightning Charging Cable,1,14.95,2019-03-21 15:36:00,829 Dogwood St, Austin,TX,73301 +163045,USB-C Charging Cable,1,11.95,2019-03-02 16:07:00,761 Maple St, Los Angeles,CA,90001 +163046,AA Batteries (4-pack),2,3.84,2019-03-11 11:05:00,329 Wilson St, Dallas,TX,75001 +163047,AA Batteries (4-pack),1,3.84,2019-03-13 21:39:00,140 4th St, San Francisco,CA,94016 +163048,USB-C Charging Cable,1,11.95,2019-03-18 12:22:00,485 Madison St, Atlanta,GA,30301 +163049,Bose SoundSport Headphones,1,99.99,2019-03-23 11:14:00,806 10th St, Seattle,WA,98101 +163050,Wired Headphones,1,11.99,2019-03-09 09:52:00,207 Walnut St, San Francisco,CA,94016 +163051,Wired Headphones,1,11.99,2019-03-02 05:40:00,537 Elm St, San Francisco,CA,94016 +163052,Lightning Charging Cable,1,14.95,2019-03-19 21:33:00,774 Cherry St, San Francisco,CA,94016 +163053,USB-C Charging Cable,1,11.95,2019-03-26 20:05:00,77 Johnson St, San Francisco,CA,94016 +163054,Flatscreen TV,1,300.0,2019-03-03 14:14:00,327 13th St, San Francisco,CA,94016 +163055,Bose SoundSport Headphones,1,99.99,2019-03-29 14:13:00,785 Ridge St, New York City,NY,10001 +163056,iPhone,1,700.0,2019-03-20 12:35:00,357 Meadow St, San Francisco,CA,94016 +163056,Lightning Charging Cable,1,14.95,2019-03-20 12:35:00,357 Meadow St, San Francisco,CA,94016 +163057,Apple Airpods Headphones,1,150.0,2019-03-27 10:17:00,407 9th St, Atlanta,GA,30301 +163058,34in Ultrawide Monitor,1,379.99,2019-03-05 10:43:00,425 Forest St, San Francisco,CA,94016 +163059,Lightning Charging Cable,1,14.95,2019-03-07 12:24:00,923 Spruce St, Boston,MA,02215 +163060,USB-C Charging Cable,1,11.95,2019-03-11 13:36:00,220 Cedar St, Los Angeles,CA,90001 +163061,Bose SoundSport Headphones,1,99.99,2019-03-16 22:29:00,117 Church St, New York City,NY,10001 +163062,Bose SoundSport Headphones,1,99.99,2019-03-13 13:50:00,178 Sunset St, Dallas,TX,75001 +163063,AA Batteries (4-pack),1,3.84,2019-03-10 12:22:00,207 Main St, Portland,OR,97035 +163064,Wired Headphones,1,11.99,2019-03-25 05:42:00,780 Forest St, Austin,TX,73301 +163065,Bose SoundSport Headphones,1,99.99,2019-03-29 09:15:00,628 Madison St, Boston,MA,02215 +163066,Lightning Charging Cable,1,14.95,2019-03-02 20:48:00,743 Center St, Boston,MA,02215 +163067,AA Batteries (4-pack),4,3.84,2019-03-22 06:29:00,70 12th St, San Francisco,CA,94016 +163068,USB-C Charging Cable,1,11.95,2019-03-03 21:04:00,981 Lakeview St, Atlanta,GA,30301 +163069,Apple Airpods Headphones,1,150.0,2019-03-26 21:14:00,980 Church St, Seattle,WA,98101 +163070,Wired Headphones,1,11.99,2019-03-15 13:03:00,850 Lake St, San Francisco,CA,94016 +163071,27in 4K Gaming Monitor,1,389.99,2019-03-31 20:43:00,902 Lincoln St, New York City,NY,10001 +163072,USB-C Charging Cable,1,11.95,2019-03-18 17:19:00,224 Lake St, Seattle,WA,98101 +163073,Google Phone,1,600.0,2019-03-02 18:28:00,85 Adams St, Portland,ME,04101 +163074,AAA Batteries (4-pack),1,2.99,2019-03-31 19:56:00,857 Willow St, Atlanta,GA,30301 +163075,USB-C Charging Cable,1,11.95,2019-03-27 16:32:00,511 Highland St, San Francisco,CA,94016 +163076,USB-C Charging Cable,1,11.95,2019-03-30 16:32:00,73 Washington St, Los Angeles,CA,90001 +163077,AAA Batteries (4-pack),1,2.99,2019-03-16 14:23:00,317 Forest St, New York City,NY,10001 +163078,34in Ultrawide Monitor,1,379.99,2019-03-14 11:41:00,601 14th St, New York City,NY,10001 +163079,Lightning Charging Cable,1,14.95,2019-03-12 20:35:00,551 14th St, Los Angeles,CA,90001 +163080,Wired Headphones,1,11.99,2019-03-23 15:52:00,83 Main St, Dallas,TX,75001 +163081,AA Batteries (4-pack),1,3.84,2019-03-13 22:45:00,280 Wilson St, Portland,OR,97035 +163082,AA Batteries (4-pack),2,3.84,2019-03-27 12:59:00,936 Lake St, Los Angeles,CA,90001 +163083,Apple Airpods Headphones,1,150.0,2019-03-24 17:08:00,34 6th St, Boston,MA,02215 +163084,Google Phone,1,600.0,2019-03-06 08:40:00,594 South St, Boston,MA,02215 +163085,AA Batteries (4-pack),3,3.84,2019-03-28 09:32:00,354 Pine St, New York City,NY,10001 +163086,USB-C Charging Cable,1,11.95,2019-03-22 09:39:00,715 Washington St, Los Angeles,CA,90001 +163087,Lightning Charging Cable,1,14.95,2019-03-15 16:22:00,718 Highland St, Atlanta,GA,30301 +163088,Apple Airpods Headphones,1,150.0,2019-03-12 07:52:00,493 Elm St, Boston,MA,02215 +163089,20in Monitor,1,109.99,2019-03-28 03:43:00,299 Lake St, Dallas,TX,75001 +163090,27in FHD Monitor,1,149.99,2019-03-01 18:05:00,792 9th St, San Francisco,CA,94016 +163091,AA Batteries (4-pack),1,3.84,2019-03-21 20:15:00,536 Park St, San Francisco,CA,94016 +163092,AA Batteries (4-pack),1,3.84,2019-03-04 23:10:00,587 13th St, New York City,NY,10001 +163093,27in FHD Monitor,1,149.99,2019-03-11 01:16:00,610 Adams St, San Francisco,CA,94016 +163094,AA Batteries (4-pack),1,3.84,2019-03-14 13:18:00,734 Meadow St, New York City,NY,10001 +163095,LG Washing Machine,1,600.0,2019-03-01 17:20:00,317 9th St, San Francisco,CA,94016 +163096,AAA Batteries (4-pack),1,2.99,2019-03-14 16:34:00,254 11th St, Los Angeles,CA,90001 +163097,Macbook Pro Laptop,1,1700.0,2019-03-01 17:55:00,340 Lincoln St, New York City,NY,10001 +163098,AA Batteries (4-pack),3,3.84,2019-03-06 13:36:00,760 Jefferson St, Los Angeles,CA,90001 +163099,AAA Batteries (4-pack),1,2.99,2019-03-26 21:21:00,641 Cherry St, Dallas,TX,75001 +163100,Apple Airpods Headphones,1,150.0,2019-03-30 07:45:00,324 River St, Dallas,TX,75001 +163101,AA Batteries (4-pack),1,3.84,2019-03-31 17:04:00,297 Wilson St, New York City,NY,10001 +163102,Bose SoundSport Headphones,1,99.99,2019-03-21 07:03:00,132 7th St, Dallas,TX,75001 +163103,Apple Airpods Headphones,1,150.0,2019-03-10 09:52:00,409 Lincoln St, Boston,MA,02215 +163104,AA Batteries (4-pack),1,3.84,2019-03-20 16:03:00,75 North St, Los Angeles,CA,90001 +163105,Macbook Pro Laptop,1,1700.0,2019-03-13 12:41:00,433 9th St, Portland,OR,97035 +163106,USB-C Charging Cable,1,11.95,2019-03-13 03:10:00,46 Madison St, Austin,TX,73301 +163107,Wired Headphones,1,11.99,2019-03-03 17:50:00,827 Washington St, Los Angeles,CA,90001 +163108,USB-C Charging Cable,1,11.95,2019-03-12 17:27:00,250 Walnut St, Portland,OR,97035 +163109,Wired Headphones,1,11.99,2019-03-22 19:53:00,996 10th St, Portland,ME,04101 +163110,Apple Airpods Headphones,1,150.0,2019-03-11 17:36:00,866 Wilson St, Los Angeles,CA,90001 +163111,34in Ultrawide Monitor,1,379.99,2019-03-23 12:19:00,728 Jackson St, San Francisco,CA,94016 +163112,Macbook Pro Laptop,1,1700.0,2019-03-28 21:14:00,783 Meadow St, Atlanta,GA,30301 +163113,Flatscreen TV,1,300.0,2019-03-19 22:18:00,842 Hill St, Boston,MA,02215 +163114,Wired Headphones,1,11.99,2019-03-16 08:42:00,605 West St, Austin,TX,73301 +163115,Google Phone,1,600.0,2019-03-21 18:12:00,585 Center St, Boston,MA,02215 +163116,Google Phone,1,600.0,2019-03-01 10:46:00,692 North St, Boston,MA,02215 +163117,Wired Headphones,1,11.99,2019-03-11 18:52:00,661 Highland St, Austin,TX,73301 +163118,27in 4K Gaming Monitor,1,389.99,2019-03-27 20:52:00,793 4th St, Austin,TX,73301 +163119,AA Batteries (4-pack),1,3.84,2019-03-15 09:19:00,196 Lakeview St, San Francisco,CA,94016 +163120,Wired Headphones,1,11.99,2019-03-31 11:15:00,336 Park St, San Francisco,CA,94016 +163121,USB-C Charging Cable,1,11.95,2019-03-09 17:19:00,777 7th St, Boston,MA,02215 +163122,AAA Batteries (4-pack),1,2.99,2019-03-21 05:20:00,649 River St, Portland,OR,97035 +163123,AAA Batteries (4-pack),2,2.99,2019-03-11 22:15:00,760 Lake St, Seattle,WA,98101 +163124,Bose SoundSport Headphones,1,99.99,2019-03-09 17:55:00,207 8th St, Seattle,WA,98101 +163125,AA Batteries (4-pack),3,3.84,2019-03-21 23:10:00,991 13th St, Portland,OR,97035 +163126,AA Batteries (4-pack),1,3.84,2019-03-23 20:29:00,701 4th St, Portland,ME,04101 +163127,Wired Headphones,1,11.99,2019-03-08 21:44:00,415 Hill St, Boston,MA,02215 +163128,AA Batteries (4-pack),1,3.84,2019-03-22 13:21:00,344 12th St, Dallas,TX,75001 +163129,USB-C Charging Cable,1,11.95,2019-03-07 03:22:00,481 Willow St, San Francisco,CA,94016 +163130,Flatscreen TV,1,300.0,2019-03-03 19:49:00,341 South St, Boston,MA,02215 +163131,Macbook Pro Laptop,1,1700.0,2019-03-04 21:51:00,554 Adams St, Portland,OR,97035 +163132,AA Batteries (4-pack),1,3.84,2019-03-29 18:51:00,312 Meadow St, Los Angeles,CA,90001 +163133,Lightning Charging Cable,1,14.95,2019-03-08 16:27:00,267 Highland St, New York City,NY,10001 +163133,USB-C Charging Cable,1,11.95,2019-03-08 16:27:00,267 Highland St, New York City,NY,10001 +163134,AA Batteries (4-pack),1,3.84,2019-03-02 08:34:00,772 Willow St, San Francisco,CA,94016 +163135,34in Ultrawide Monitor,1,379.99,2019-03-03 16:11:00,290 13th St, Seattle,WA,98101 +163136,Lightning Charging Cable,1,14.95,2019-03-26 13:17:00,862 2nd St, Atlanta,GA,30301 +163137,Lightning Charging Cable,1,14.95,2019-03-09 11:13:00,796 Forest St, Austin,TX,73301 +163138,USB-C Charging Cable,1,11.95,2019-03-06 16:14:00,392 Lincoln St, Portland,OR,97035 +163139,Macbook Pro Laptop,1,1700.0,2019-03-24 10:44:00,150 Highland St, New York City,NY,10001 +163140,AA Batteries (4-pack),2,3.84,2019-03-30 22:51:00,892 Johnson St, San Francisco,CA,94016 +163141,AAA Batteries (4-pack),1,2.99,2019-03-17 01:38:00,145 Spruce St, San Francisco,CA,94016 +163142,iPhone,1,700.0,2019-03-11 08:57:00,255 Elm St, New York City,NY,10001 +163143,AA Batteries (4-pack),1,3.84,2019-03-03 11:16:00,699 North St, Atlanta,GA,30301 +163144,iPhone,1,700.0,2019-03-27 23:50:00,160 West St, Dallas,TX,75001 +163144,Lightning Charging Cable,1,14.95,2019-03-27 23:50:00,160 West St, Dallas,TX,75001 +163145,AAA Batteries (4-pack),1,2.99,2019-03-10 21:43:00,664 Hill St, San Francisco,CA,94016 +163146,34in Ultrawide Monitor,1,379.99,2019-03-10 06:18:00,184 South St, Dallas,TX,75001 +163147,AAA Batteries (4-pack),1,2.99,2019-03-01 15:19:00,759 7th St, Seattle,WA,98101 +163148,27in FHD Monitor,1,149.99,2019-03-31 18:51:00,448 Spruce St, Los Angeles,CA,90001 +163149,Google Phone,1,600.0,2019-03-29 20:36:00,426 Elm St, Boston,MA,02215 +163149,USB-C Charging Cable,1,11.95,2019-03-29 20:36:00,426 Elm St, Boston,MA,02215 +163149,Bose SoundSport Headphones,1,99.99,2019-03-29 20:36:00,426 Elm St, Boston,MA,02215 +163150,AA Batteries (4-pack),2,3.84,2019-03-08 12:50:00,121 Washington St, San Francisco,CA,94016 +163151,27in FHD Monitor,1,149.99,2019-03-04 19:21:00,609 6th St, Boston,MA,02215 +163152,Lightning Charging Cable,2,14.95,2019-03-23 10:36:00,849 Washington St, New York City,NY,10001 +163153,USB-C Charging Cable,1,11.95,2019-03-19 17:29:00,107 12th St, Dallas,TX,75001 +163154,AA Batteries (4-pack),1,3.84,2019-03-01 10:20:00,538 Lincoln St, Seattle,WA,98101 +163155,27in 4K Gaming Monitor,1,389.99,2019-03-21 13:44:00,265 1st St, Dallas,TX,75001 +163156,Macbook Pro Laptop,1,1700.0,2019-03-11 13:25:00,635 Church St, Los Angeles,CA,90001 +163157,Lightning Charging Cable,1,14.95,2019-03-05 11:29:00,123 Walnut St, San Francisco,CA,94016 +163158,USB-C Charging Cable,2,11.95,2019-03-21 17:34:00,989 5th St, San Francisco,CA,94016 +163159,USB-C Charging Cable,1,11.95,2019-03-29 13:34:00,849 Lakeview St, Atlanta,GA,30301 +163160,Lightning Charging Cable,1,14.95,2019-03-27 19:17:00,28 Spruce St, Austin,TX,73301 +163161,Google Phone,1,600.0,2019-03-12 18:09:00,259 Park St, Portland,OR,97035 +163162,USB-C Charging Cable,1,11.95,2019-03-11 13:18:00,823 Walnut St, San Francisco,CA,94016 +163163,Google Phone,1,600.0,2019-03-14 18:26:00,805 Lakeview St, Boston,MA,02215 +163164,Wired Headphones,1,11.99,2019-03-26 01:53:00,724 Lake St, San Francisco,CA,94016 +163164,ThinkPad Laptop,1,999.99,2019-03-26 01:53:00,724 Lake St, San Francisco,CA,94016 +163165,Wired Headphones,2,11.99,2019-03-24 18:18:00,206 Highland St, Atlanta,GA,30301 +163166,34in Ultrawide Monitor,1,379.99,2019-03-19 23:08:00,176 9th St, San Francisco,CA,94016 +163167,Lightning Charging Cable,1,14.95,2019-03-13 23:02:00,240 Walnut St, Atlanta,GA,30301 +163168,AAA Batteries (4-pack),1,2.99,2019-03-24 14:06:00,801 Johnson St, San Francisco,CA,94016 +163169,Wired Headphones,1,11.99,2019-03-13 22:30:00,839 Cherry St, San Francisco,CA,94016 +163170,34in Ultrawide Monitor,1,379.99,2019-03-02 11:28:00,575 Spruce St, San Francisco,CA,94016 +163171,Wired Headphones,2,11.99,2019-03-29 08:51:00,974 West St, Austin,TX,73301 +163171,Flatscreen TV,1,300.0,2019-03-29 08:51:00,974 West St, Austin,TX,73301 +163172,AA Batteries (4-pack),1,3.84,2019-03-13 13:52:00,411 Lincoln St, Los Angeles,CA,90001 +163173,Macbook Pro Laptop,1,1700.0,2019-03-22 16:12:00,387 1st St, San Francisco,CA,94016 +163174,34in Ultrawide Monitor,1,379.99,2019-03-31 11:53:00,379 Jackson St, Seattle,WA,98101 +163175,USB-C Charging Cable,1,11.95,2019-03-24 17:14:00,683 Meadow St, San Francisco,CA,94016 +163176,ThinkPad Laptop,1,999.99,2019-03-21 20:49:00,142 Hickory St, Los Angeles,CA,90001 +163177,Lightning Charging Cable,1,14.95,2019-03-05 13:33:00,528 Lakeview St, New York City,NY,10001 +163178,AA Batteries (4-pack),1,3.84,2019-03-01 12:07:00,636 6th St, Atlanta,GA,30301 +163179,AA Batteries (4-pack),1,3.84,2019-03-01 19:36:00,255 6th St, Austin,TX,73301 +163180,27in FHD Monitor,1,149.99,2019-03-29 14:21:00,482 Cherry St, New York City,NY,10001 +163181,34in Ultrawide Monitor,1,379.99,2019-03-15 21:51:00,45 13th St, Portland,OR,97035 +163182,Lightning Charging Cable,1,14.95,2019-03-01 23:56:00,331 Maple St, San Francisco,CA,94016 +163183,USB-C Charging Cable,2,11.95,2019-03-21 21:35:00,96 Chestnut St, San Francisco,CA,94016 +163184,Lightning Charging Cable,1,14.95,2019-03-29 20:41:00,883 Lakeview St, New York City,NY,10001 +163185,Lightning Charging Cable,1,14.95,2019-03-22 02:25:00,655 4th St, San Francisco,CA,94016 +163186,AA Batteries (4-pack),1,3.84,2019-03-14 11:58:00,428 2nd St, Boston,MA,02215 +163187,Flatscreen TV,1,300.0,2019-03-29 19:37:00,989 Spruce St, San Francisco,CA,94016 +163188,USB-C Charging Cable,1,11.95,2019-03-02 10:58:00,144 6th St, New York City,NY,10001 +163189,Bose SoundSport Headphones,1,99.99,2019-03-03 11:33:00,688 5th St, Dallas,TX,75001 +163190,Bose SoundSport Headphones,1,99.99,2019-03-06 20:58:00,22 Willow St, San Francisco,CA,94016 +163191,Apple Airpods Headphones,1,150.0,2019-03-16 11:22:00,965 7th St, Los Angeles,CA,90001 +163192,AA Batteries (4-pack),1,3.84,2019-03-23 13:27:00,785 9th St, Dallas,TX,75001 +163193,USB-C Charging Cable,1,11.95,2019-03-09 09:01:00,499 Willow St, San Francisco,CA,94016 +163194,Wired Headphones,1,11.99,2019-03-15 19:24:00,275 11th St, Boston,MA,02215 +163195,iPhone,1,700.0,2019-03-17 23:34:00,289 11th St, San Francisco,CA,94016 +163196,Lightning Charging Cable,1,14.95,2019-03-25 12:30:00,666 1st St, Boston,MA,02215 +163197,AAA Batteries (4-pack),1,2.99,2019-03-20 17:06:00,300 1st St, San Francisco,CA,94016 +163198,Apple Airpods Headphones,1,150.0,2019-03-17 11:45:00,944 Hickory St, Atlanta,GA,30301 +163199,Lightning Charging Cable,1,14.95,2019-03-17 14:19:00,963 Dogwood St, New York City,NY,10001 +163200,AA Batteries (4-pack),3,3.84,2019-03-20 16:23:00,788 Cedar St, New York City,NY,10001 +163201,Vareebadd Phone,1,400.0,2019-03-06 16:37:00,78 Johnson St, Seattle,WA,98101 +163201,USB-C Charging Cable,1,11.95,2019-03-06 16:37:00,78 Johnson St, Seattle,WA,98101 +163202,Wired Headphones,1,11.99,2019-03-04 17:58:00,483 13th St, San Francisco,CA,94016 +163203,27in 4K Gaming Monitor,1,389.99,2019-03-24 17:15:00,47 Jackson St, New York City,NY,10001 +163204,27in FHD Monitor,1,149.99,2019-03-20 13:27:00,325 Main St, Los Angeles,CA,90001 +163205,USB-C Charging Cable,1,11.95,2019-03-15 18:00:00,803 Park St, Dallas,TX,75001 +163206,AA Batteries (4-pack),2,3.84,2019-03-15 08:05:00,47 Cherry St, Boston,MA,02215 +163207,Lightning Charging Cable,1,14.95,2019-03-15 18:28:00,931 Maple St, Los Angeles,CA,90001 +163208,USB-C Charging Cable,1,11.95,2019-03-08 14:28:00,752 Willow St, Seattle,WA,98101 +163208,34in Ultrawide Monitor,1,379.99,2019-03-08 14:28:00,752 Willow St, Seattle,WA,98101 +163209,Bose SoundSport Headphones,1,99.99,2019-03-24 20:17:00,866 14th St, Boston,MA,02215 +163210,USB-C Charging Cable,1,11.95,2019-03-21 21:54:00,956 River St, Los Angeles,CA,90001 +163211,iPhone,1,700.0,2019-03-31 18:41:00,231 North St, Seattle,WA,98101 +163211,Wired Headphones,1,11.99,2019-03-31 18:41:00,231 North St, Seattle,WA,98101 +163212,AAA Batteries (4-pack),1,2.99,2019-03-08 12:38:00,218 Cedar St, Los Angeles,CA,90001 +163213,Bose SoundSport Headphones,1,99.99,2019-03-29 18:18:00,542 Sunset St, Dallas,TX,75001 +163213,27in FHD Monitor,1,149.99,2019-03-29 18:18:00,542 Sunset St, Dallas,TX,75001 +163214,Flatscreen TV,1,300.0,2019-03-04 19:43:00,3 Spruce St, New York City,NY,10001 +163215,Apple Airpods Headphones,1,150.0,2019-03-18 14:53:00,636 Wilson St, New York City,NY,10001 +163216,iPhone,1,700.0,2019-03-12 21:10:00,184 Chestnut St, Seattle,WA,98101 +163217,Wired Headphones,2,11.99,2019-03-09 16:59:00,467 1st St, Portland,OR,97035 +163218,USB-C Charging Cable,1,11.95,2019-03-10 19:41:00,589 Ridge St, San Francisco,CA,94016 +163219,AA Batteries (4-pack),2,3.84,2019-03-09 23:45:00,929 Spruce St, New York City,NY,10001 +163220,Google Phone,1,600.0,2019-03-01 17:42:00,380 Lakeview St, Seattle,WA,98101 +163221,AAA Batteries (4-pack),3,2.99,2019-03-17 09:57:00,167 Highland St, Los Angeles,CA,90001 +163222,20in Monitor,1,109.99,2019-03-03 12:18:00,399 South St, Seattle,WA,98101 +163223,AA Batteries (4-pack),1,3.84,2019-03-07 16:07:00,777 Dogwood St, Austin,TX,73301 +163224,27in 4K Gaming Monitor,1,389.99,2019-03-10 22:11:00,508 13th St, Boston,MA,02215 +163225,Lightning Charging Cable,1,14.95,2019-03-13 21:02:00,712 8th St, Austin,TX,73301 +163226,Lightning Charging Cable,1,14.95,2019-03-10 18:25:00,735 Cherry St, Atlanta,GA,30301 +163227,AA Batteries (4-pack),1,3.84,2019-03-23 11:34:00,136 Spruce St, Boston,MA,02215 +163228,Wired Headphones,2,11.99,2019-03-17 08:40:00,337 Ridge St, Boston,MA,02215 +163229,USB-C Charging Cable,1,11.95,2019-03-19 12:58:00,594 South St, Boston,MA,02215 +163230,Flatscreen TV,1,300.0,2019-03-11 14:52:00,115 Ridge St, San Francisco,CA,94016 +163231,20in Monitor,1,109.99,2019-03-16 19:14:00,121 North St, San Francisco,CA,94016 +163232,27in FHD Monitor,1,149.99,2019-03-13 10:04:00,922 Wilson St, San Francisco,CA,94016 +163233,AA Batteries (4-pack),1,3.84,2019-03-10 09:16:00,302 Church St, San Francisco,CA,94016 +163234,Lightning Charging Cable,1,14.95,2019-03-28 12:02:00,432 Pine St, San Francisco,CA,94016 +163235,Google Phone,1,600.0,2019-03-17 03:17:00,739 7th St, San Francisco,CA,94016 +163236,Google Phone,1,600.0,2019-03-10 20:26:00,663 2nd St, Portland,OR,97035 +163236,Bose SoundSport Headphones,1,99.99,2019-03-10 20:26:00,663 2nd St, Portland,OR,97035 +163237,AA Batteries (4-pack),1,3.84,2019-03-17 04:33:00,489 Park St, Boston,MA,02215 +163238,AA Batteries (4-pack),1,3.84,2019-03-07 20:29:00,621 10th St, Seattle,WA,98101 +163239,Bose SoundSport Headphones,1,99.99,2019-03-04 00:46:00,193 8th St, San Francisco,CA,94016 +163240,Bose SoundSport Headphones,1,99.99,2019-03-14 15:21:00,754 12th St, Seattle,WA,98101 +163241,AA Batteries (4-pack),1,3.84,2019-03-18 13:48:00,506 11th St, Dallas,TX,75001 +163242,USB-C Charging Cable,1,11.95,2019-03-14 14:53:00,76 Washington St, Seattle,WA,98101 +163243,Lightning Charging Cable,1,14.95,2019-03-14 22:06:00,769 Sunset St, San Francisco,CA,94016 +163244,Google Phone,1,600.0,2019-03-05 09:09:00,174 7th St, San Francisco,CA,94016 +163245,Google Phone,1,600.0,2019-03-24 07:08:00,473 13th St, New York City,NY,10001 +163246,AAA Batteries (4-pack),2,2.99,2019-03-31 16:49:00,614 Park St, Los Angeles,CA,90001 +163247,Flatscreen TV,1,300.0,2019-03-25 14:58:00,18 Maple St, Atlanta,GA,30301 +163248,iPhone,1,700.0,2019-03-12 20:27:00,315 14th St, Austin,TX,73301 +163249,AA Batteries (4-pack),1,3.84,2019-03-22 07:55:00,464 1st St, New York City,NY,10001 +163250,34in Ultrawide Monitor,1,379.99,2019-03-10 16:32:00,733 7th St, New York City,NY,10001 +163251,Macbook Pro Laptop,1,1700.0,2019-03-14 15:13:00,316 Cherry St, Dallas,TX,75001 +163252,USB-C Charging Cable,1,11.95,2019-03-02 19:01:00,105 Willow St, Atlanta,GA,30301 +163253,27in FHD Monitor,1,149.99,2019-03-20 18:04:00,706 Madison St, Boston,MA,02215 +163254,AAA Batteries (4-pack),1,2.99,2019-03-06 19:56:00,630 1st St, San Francisco,CA,94016 +163255,USB-C Charging Cable,1,11.95,2019-03-13 17:44:00,973 South St, San Francisco,CA,94016 +163256,Lightning Charging Cable,1,14.95,2019-03-23 21:01:00,669 Washington St, San Francisco,CA,94016 +163257,iPhone,1,700.0,2019-03-05 15:18:00,647 12th St, San Francisco,CA,94016 +163257,Apple Airpods Headphones,1,150.0,2019-03-05 15:18:00,647 12th St, San Francisco,CA,94016 +163257,Wired Headphones,1,11.99,2019-03-05 15:18:00,647 12th St, San Francisco,CA,94016 +163258,Wired Headphones,1,11.99,2019-03-27 11:34:00,394 14th St, San Francisco,CA,94016 +163259,Wired Headphones,1,11.99,2019-03-17 18:26:00,348 Washington St, Boston,MA,02215 +163260,Apple Airpods Headphones,1,150.0,2019-03-11 11:40:00,460 2nd St, New York City,NY,10001 +163261,USB-C Charging Cable,1,11.95,2019-03-13 12:50:00,447 Meadow St, Atlanta,GA,30301 +163262,AA Batteries (4-pack),1,3.84,2019-03-08 12:41:00,216 Church St, New York City,NY,10001 +163263,Apple Airpods Headphones,1,150.0,2019-03-20 11:58:00,395 Cherry St, Boston,MA,02215 +163264,USB-C Charging Cable,1,11.95,2019-03-28 14:47:00,732 13th St, Portland,OR,97035 +163265,AA Batteries (4-pack),1,3.84,2019-03-04 16:41:00,883 6th St, San Francisco,CA,94016 +163266,27in 4K Gaming Monitor,1,389.99,2019-03-24 20:18:00,951 Lincoln St, Seattle,WA,98101 +163267,AAA Batteries (4-pack),1,2.99,2019-03-02 06:14:00,857 Highland St, Austin,TX,73301 +163268,AAA Batteries (4-pack),1,2.99,2019-03-21 18:24:00,482 13th St, San Francisco,CA,94016 +163269,USB-C Charging Cable,1,11.95,2019-03-16 20:17:00,935 North St, San Francisco,CA,94016 +163270,AAA Batteries (4-pack),1,2.99,2019-03-05 16:58:00,943 Hickory St, New York City,NY,10001 +163271,USB-C Charging Cable,1,11.95,2019-03-12 01:50:00,651 11th St, Seattle,WA,98101 +163272,USB-C Charging Cable,1,11.95,2019-03-06 10:54:00,451 14th St, Atlanta,GA,30301 +163273,AA Batteries (4-pack),2,3.84,2019-03-04 20:07:00,79 Ridge St, Los Angeles,CA,90001 +163274,USB-C Charging Cable,1,11.95,2019-03-11 19:07:00,826 Center St, San Francisco,CA,94016 +163275,27in FHD Monitor,1,149.99,2019-03-27 11:09:00,618 14th St, San Francisco,CA,94016 +163276,Wired Headphones,1,11.99,2019-03-26 16:52:00,204 5th St, San Francisco,CA,94016 +163277,AA Batteries (4-pack),2,3.84,2019-03-30 10:02:00,95 Elm St, Los Angeles,CA,90001 +163278,Bose SoundSport Headphones,1,99.99,2019-03-18 16:59:00,457 Maple St, San Francisco,CA,94016 +163279,Wired Headphones,1,11.99,2019-03-27 12:33:00,332 5th St, Boston,MA,02215 +163280,USB-C Charging Cable,1,11.95,2019-03-01 14:46:00,526 Elm St, San Francisco,CA,94016 +163281,Lightning Charging Cable,1,14.95,2019-03-05 12:34:00,600 4th St, Austin,TX,73301 +163282,AAA Batteries (4-pack),1,2.99,2019-03-25 21:13:00,870 Lakeview St, San Francisco,CA,94016 +163283,27in 4K Gaming Monitor,1,389.99,2019-03-29 19:43:00,112 Lincoln St, Los Angeles,CA,90001 +163284,AA Batteries (4-pack),1,3.84,2019-03-16 13:16:00,671 Jefferson St, Los Angeles,CA,90001 +163285,USB-C Charging Cable,1,11.95,2019-03-06 18:55:00,754 13th St, Boston,MA,02215 +163286,Wired Headphones,1,11.99,2019-03-21 03:17:00,398 1st St, San Francisco,CA,94016 +163287,AAA Batteries (4-pack),1,2.99,2019-03-01 13:10:00,811 4th St, San Francisco,CA,94016 +163288,20in Monitor,1,109.99,2019-03-07 12:47:00,136 North St, San Francisco,CA,94016 +163289,iPhone,1,700.0,2019-03-10 09:22:00,851 6th St, Austin,TX,73301 +163290,USB-C Charging Cable,1,11.95,2019-03-28 15:08:00,500 10th St, San Francisco,CA,94016 +163291,AAA Batteries (4-pack),1,2.99,2019-03-02 19:13:00,656 Jefferson St, San Francisco,CA,94016 +163292,AAA Batteries (4-pack),1,2.99,2019-03-23 11:17:00,469 10th St, San Francisco,CA,94016 +163293,AAA Batteries (4-pack),1,2.99,2019-03-29 11:54:00,209 Jackson St, San Francisco,CA,94016 +163294,Wired Headphones,1,11.99,2019-03-17 20:40:00,996 Forest St, Dallas,TX,75001 +163295,AA Batteries (4-pack),1,3.84,2019-03-16 11:03:00,535 West St, San Francisco,CA,94016 +163296,Wired Headphones,1,11.99,2019-03-08 17:03:00,137 Jefferson St, Atlanta,GA,30301 +163297,AA Batteries (4-pack),1,3.84,2019-03-07 01:12:00,184 12th St, San Francisco,CA,94016 +163298,Macbook Pro Laptop,1,1700.0,2019-03-22 16:10:00,796 Hickory St, San Francisco,CA,94016 +163299,27in 4K Gaming Monitor,1,389.99,2019-03-26 12:55:00,613 7th St, Dallas,TX,75001 +163300,AA Batteries (4-pack),3,3.84,2019-03-06 22:26:00,651 Jackson St, Dallas,TX,75001 +163301,Bose SoundSport Headphones,1,99.99,2019-03-31 09:36:00,84 Washington St, Atlanta,GA,30301 +163302,AA Batteries (4-pack),1,3.84,2019-03-03 12:03:00,812 Park St, Atlanta,GA,30301 +163303,AAA Batteries (4-pack),2,2.99,2019-03-05 11:43:00,166 Lake St, Atlanta,GA,30301 +163304,AA Batteries (4-pack),1,3.84,2019-03-24 19:41:00,660 North St, San Francisco,CA,94016 +163305,Lightning Charging Cable,1,14.95,2019-03-24 17:05:00,676 12th St, Seattle,WA,98101 +163306,AA Batteries (4-pack),1,3.84,2019-03-17 18:29:00,75 Maple St, Los Angeles,CA,90001 +163307,AA Batteries (4-pack),1,3.84,2019-03-14 10:30:00,956 6th St, Los Angeles,CA,90001 +163308,AA Batteries (4-pack),2,3.84,2019-03-05 12:21:00,831 Lincoln St, Boston,MA,02215 +163309,AA Batteries (4-pack),1,3.84,2019-03-23 08:17:00,417 5th St, Dallas,TX,75001 +163310,Lightning Charging Cable,1,14.95,2019-03-30 13:36:00,824 1st St, Boston,MA,02215 +163311,iPhone,1,700.0,2019-03-28 13:12:00,46 Washington St, San Francisco,CA,94016 +163312,AA Batteries (4-pack),1,3.84,2019-03-08 13:33:00,653 Willow St, New York City,NY,10001 +163313,Lightning Charging Cable,1,14.95,2019-03-14 09:15:00,575 West St, San Francisco,CA,94016 +163314,Wired Headphones,1,11.99,2019-03-06 21:45:00,566 Sunset St, Seattle,WA,98101 +163315,Lightning Charging Cable,1,14.95,2019-03-15 20:42:00,312 Highland St, New York City,NY,10001 +163316,Bose SoundSport Headphones,1,99.99,2019-03-03 13:49:00,714 North St, Atlanta,GA,30301 +163317,Bose SoundSport Headphones,1,99.99,2019-03-25 16:22:00,262 Lake St, Boston,MA,02215 +163318,Macbook Pro Laptop,1,1700.0,2019-03-31 19:19:00,736 Adams St, San Francisco,CA,94016 +163319,Wired Headphones,1,11.99,2019-03-20 14:23:00,58 14th St, Seattle,WA,98101 +163320,USB-C Charging Cable,1,11.95,2019-03-09 19:06:00,459 Dogwood St, New York City,NY,10001 +163321,AAA Batteries (4-pack),1,2.99,2019-03-22 08:34:00,31 12th St, San Francisco,CA,94016 +163322,Bose SoundSport Headphones,1,99.99,2019-03-14 13:53:00,814 8th St, Dallas,TX,75001 +163323,Bose SoundSport Headphones,1,99.99,2019-03-27 19:33:00,539 4th St, Portland,OR,97035 +163324,Wired Headphones,2,11.99,2019-03-15 17:32:00,855 Washington St, Seattle,WA,98101 +163325,27in FHD Monitor,1,149.99,2019-03-10 23:13:00,178 Lincoln St, San Francisco,CA,94016 +163326,Lightning Charging Cable,1,14.95,2019-03-07 02:25:00,591 4th St, Dallas,TX,75001 +163327,Bose SoundSport Headphones,1,99.99,2019-03-03 08:11:00,949 Jackson St, San Francisco,CA,94016 +163328,Lightning Charging Cable,1,14.95,2019-03-11 16:09:00,656 Lake St, New York City,NY,10001 +163329,AA Batteries (4-pack),1,3.84,2019-03-08 17:40:00,556 10th St, Atlanta,GA,30301 +163330,USB-C Charging Cable,1,11.95,2019-03-23 21:34:00,292 12th St, Los Angeles,CA,90001 +163331,Google Phone,1,600.0,2019-03-17 15:32:00,71 Ridge St, New York City,NY,10001 +163332,USB-C Charging Cable,1,11.95,2019-03-01 14:37:00,114 Pine St, San Francisco,CA,94016 +163333,ThinkPad Laptop,1,999.99,2019-03-02 21:03:00,929 Jefferson St, San Francisco,CA,94016 +163334,iPhone,1,700.0,2019-03-19 22:47:00,213 Willow St, Boston,MA,02215 +163335,AA Batteries (4-pack),2,3.84,2019-03-12 03:11:00,217 Washington St, Los Angeles,CA,90001 +163336,Bose SoundSport Headphones,1,99.99,2019-03-16 13:22:00,349 Main St, New York City,NY,10001 +163337,34in Ultrawide Monitor,1,379.99,2019-03-20 16:41:00,92 Chestnut St, San Francisco,CA,94016 +163338,Lightning Charging Cable,1,14.95,2019-03-10 10:35:00,8 Elm St, Atlanta,GA,30301 +163339,USB-C Charging Cable,1,11.95,2019-03-05 21:39:00,475 Center St, Los Angeles,CA,90001 +163340,USB-C Charging Cable,1,11.95,2019-03-18 13:11:00,781 Washington St, New York City,NY,10001 +163341,Lightning Charging Cable,1,14.95,2019-03-31 15:07:00,956 Lake St, New York City,NY,10001 +163342,USB-C Charging Cable,1,11.95,2019-03-17 09:20:00,88 Washington St, Boston,MA,02215 +163343,Google Phone,1,600.0,2019-03-21 06:25:00,543 Elm St, San Francisco,CA,94016 +163343,USB-C Charging Cable,1,11.95,2019-03-21 06:25:00,543 Elm St, San Francisco,CA,94016 +163344,Lightning Charging Cable,1,14.95,2019-03-05 21:18:00,88 Sunset St, Los Angeles,CA,90001 +163345,Apple Airpods Headphones,1,150.0,2019-03-09 07:41:00,583 Washington St, Portland,OR,97035 +163346,Apple Airpods Headphones,1,150.0,2019-03-06 13:25:00,661 5th St, Boston,MA,02215 +163347,Apple Airpods Headphones,1,150.0,2019-03-14 22:25:00,229 Lakeview St, Portland,OR,97035 +163348,AA Batteries (4-pack),2,3.84,2019-03-04 14:16:00,786 Madison St, San Francisco,CA,94016 +163349,Lightning Charging Cable,1,14.95,2019-03-14 18:46:00,267 Center St, Dallas,TX,75001 +163350,20in Monitor,1,109.99,2019-03-08 15:53:00,715 Hill St, Atlanta,GA,30301 +163351,AAA Batteries (4-pack),1,2.99,2019-03-02 16:52:00,602 Elm St, Atlanta,GA,30301 +163352,AAA Batteries (4-pack),6,2.99,2019-03-26 19:42:00,439 Park St, San Francisco,CA,94016 +163353,AAA Batteries (4-pack),1,2.99,2019-03-29 20:28:00,104 Madison St, Seattle,WA,98101 +163354,Wired Headphones,2,11.99,2019-03-25 07:48:00,353 6th St, New York City,NY,10001 +163355,Bose SoundSport Headphones,1,99.99,2019-03-20 18:15:00,914 Lake St, Seattle,WA,98101 +163356,Apple Airpods Headphones,1,150.0,2019-03-01 15:52:00,144 Hickory St, Boston,MA,02215 +163357,AAA Batteries (4-pack),5,2.99,2019-03-27 16:59:00,540 2nd St, San Francisco,CA,94016 +163358,AAA Batteries (4-pack),1,2.99,2019-03-24 17:43:00,526 Maple St, San Francisco,CA,94016 +163359,AA Batteries (4-pack),1,3.84,2019-03-12 10:29:00,58 Walnut St, San Francisco,CA,94016 +163360,Macbook Pro Laptop,1,1700.0,2019-03-16 19:30:00,518 Cherry St, Boston,MA,02215 +163361,Wired Headphones,1,11.99,2019-03-15 14:58:00,295 Spruce St, San Francisco,CA,94016 +163362,AAA Batteries (4-pack),1,2.99,2019-03-21 23:51:00,988 7th St, New York City,NY,10001 +163363,AAA Batteries (4-pack),1,2.99,2019-03-31 19:09:00,798 10th St, Seattle,WA,98101 +163364,iPhone,1,700.0,2019-03-15 11:26:00,573 12th St, Los Angeles,CA,90001 +163365,AAA Batteries (4-pack),1,2.99,2019-03-05 13:23:00,496 Meadow St, Portland,ME,04101 +163366,Apple Airpods Headphones,1,150.0,2019-03-11 12:52:00,202 Cherry St, Boston,MA,02215 +163367,iPhone,1,700.0,2019-03-07 09:44:00,397 1st St, Boston,MA,02215 +163368,AAA Batteries (4-pack),1,2.99,2019-03-14 16:10:00,492 Church St, Los Angeles,CA,90001 +163369,AA Batteries (4-pack),2,3.84,2019-03-09 14:41:00,244 Jackson St, Boston,MA,02215 +163370,27in FHD Monitor,1,149.99,2019-03-24 21:07:00,376 Park St, New York City,NY,10001 +163371,Apple Airpods Headphones,1,150.0,2019-03-20 08:17:00,870 Jefferson St, Seattle,WA,98101 +163372,iPhone,1,700.0,2019-03-09 00:20:00,371 Main St, San Francisco,CA,94016 +163373,ThinkPad Laptop,1,999.99,2019-03-27 09:08:00,947 Hickory St, New York City,NY,10001 +163374,34in Ultrawide Monitor,1,379.99,2019-03-17 09:39:00,470 Ridge St, Boston,MA,02215 +163375,iPhone,1,700.0,2019-03-06 22:30:00,79 Lakeview St, San Francisco,CA,94016 +163375,Lightning Charging Cable,3,14.95,2019-03-06 22:30:00,79 Lakeview St, San Francisco,CA,94016 +163375,Apple Airpods Headphones,1,150.0,2019-03-06 22:30:00,79 Lakeview St, San Francisco,CA,94016 +163376,iPhone,1,700.0,2019-03-04 15:51:00,694 11th St, Dallas,TX,75001 +163377,Lightning Charging Cable,1,14.95,2019-03-06 21:25:00,538 Dogwood St, Atlanta,GA,30301 +163378,AA Batteries (4-pack),1,3.84,2019-03-08 16:49:00,338 Ridge St, Austin,TX,73301 +163379,Wired Headphones,1,11.99,2019-03-23 20:08:00,918 West St, Los Angeles,CA,90001 +163380,AA Batteries (4-pack),1,3.84,2019-03-21 00:48:00,394 Highland St, San Francisco,CA,94016 +163381,Lightning Charging Cable,1,14.95,2019-03-07 17:24:00,523 Elm St, Boston,MA,02215 +163382,USB-C Charging Cable,1,11.95,2019-03-29 18:01:00,21 Adams St, Austin,TX,73301 +163383,Wired Headphones,1,11.99,2019-03-28 05:46:00,226 Cedar St, San Francisco,CA,94016 +163384,20in Monitor,1,109.99,2019-03-14 15:25:00,594 9th St, Atlanta,GA,30301 +163385,Apple Airpods Headphones,1,150.0,2019-03-15 19:54:00,314 4th St, Los Angeles,CA,90001 +163386,27in FHD Monitor,1,149.99,2019-03-21 04:32:00,523 Spruce St, San Francisco,CA,94016 +163387,Wired Headphones,1,11.99,2019-03-18 20:12:00,63 1st St, New York City,NY,10001 +163388,27in 4K Gaming Monitor,1,389.99,2019-03-27 08:18:00,864 14th St, Los Angeles,CA,90001 +163389,Apple Airpods Headphones,1,150.0,2019-03-11 12:24:00,576 6th St, Austin,TX,73301 +163390,AA Batteries (4-pack),1,3.84,2019-03-10 14:21:00,307 Jefferson St, Atlanta,GA,30301 +163391,Lightning Charging Cable,1,14.95,2019-03-31 07:22:00,276 Forest St, Seattle,WA,98101 +163392,AAA Batteries (4-pack),1,2.99,2019-03-13 11:20:00,488 Spruce St, San Francisco,CA,94016 +163393,USB-C Charging Cable,1,11.95,2019-03-23 22:38:00,590 Hill St, San Francisco,CA,94016 +163394,AAA Batteries (4-pack),1,2.99,2019-03-23 10:06:00,296 Meadow St, New York City,NY,10001 +163395,27in 4K Gaming Monitor,1,389.99,2019-03-31 21:32:00,330 Park St, Dallas,TX,75001 +163396,Lightning Charging Cable,2,14.95,2019-03-30 18:26:00,867 1st St, New York City,NY,10001 +163397,Flatscreen TV,1,300.0,2019-03-31 15:37:00,208 2nd St, Los Angeles,CA,90001 +163398,Google Phone,1,600.0,2019-03-16 17:43:00,590 5th St, Boston,MA,02215 +163399,Lightning Charging Cable,1,14.95,2019-03-09 08:20:00,513 2nd St, Atlanta,GA,30301 +163400,Bose SoundSport Headphones,1,99.99,2019-03-17 18:54:00,266 6th St, New York City,NY,10001 +163401,AA Batteries (4-pack),1,3.84,2019-03-21 03:32:00,294 Park St, Seattle,WA,98101 +163402,USB-C Charging Cable,1,11.95,2019-03-08 10:01:00,873 Main St, Los Angeles,CA,90001 +163403,34in Ultrawide Monitor,1,379.99,2019-03-30 10:27:00,51 11th St, Los Angeles,CA,90001 +163404,AA Batteries (4-pack),1,3.84,2019-03-11 21:14:00,615 12th St, Dallas,TX,75001 +163405,Wired Headphones,2,11.99,2019-03-24 18:55:00,431 Lakeview St, New York City,NY,10001 +163406,USB-C Charging Cable,1,11.95,2019-03-31 10:53:00,335 Pine St, Los Angeles,CA,90001 +163407,27in 4K Gaming Monitor,1,389.99,2019-03-05 04:49:00,543 7th St, Boston,MA,02215 +163408,34in Ultrawide Monitor,1,379.99,2019-03-27 21:57:00,104 Lake St, Dallas,TX,75001 +163409,USB-C Charging Cable,1,11.95,2019-03-10 13:12:00,456 Dogwood St, Boston,MA,02215 +163410,27in FHD Monitor,1,149.99,2019-03-14 14:40:00,694 13th St, Boston,MA,02215 +163411,Lightning Charging Cable,1,14.95,2019-03-08 13:36:00,923 11th St, Los Angeles,CA,90001 +163412,Bose SoundSport Headphones,1,99.99,2019-03-23 21:16:00,679 Center St, Los Angeles,CA,90001 +163413,USB-C Charging Cable,1,11.95,2019-03-08 14:04:00,125 1st St, Seattle,WA,98101 +163414,iPhone,1,700.0,2019-03-11 16:13:00,630 Lake St, Dallas,TX,75001 +163415,iPhone,1,700.0,2019-03-10 23:24:00,641 Meadow St, Atlanta,GA,30301 +163416,34in Ultrawide Monitor,1,379.99,2019-03-05 12:28:00,557 Chestnut St, Seattle,WA,98101 +163417,AA Batteries (4-pack),2,3.84,2019-03-25 11:46:00,607 South St, Los Angeles,CA,90001 +163418,Lightning Charging Cable,1,14.95,2019-03-16 21:45:00,311 6th St, Seattle,WA,98101 +163419,27in 4K Gaming Monitor,1,389.99,2019-03-20 16:33:00,888 Dogwood St, New York City,NY,10001 +163420,Bose SoundSport Headphones,1,99.99,2019-03-24 18:22:00,685 Lake St, Los Angeles,CA,90001 +163421,Wired Headphones,1,11.99,2019-03-20 18:53:00,303 Johnson St, Seattle,WA,98101 +163422,USB-C Charging Cable,1,11.95,2019-03-02 10:56:00,479 11th St, San Francisco,CA,94016 +163423,34in Ultrawide Monitor,1,379.99,2019-03-13 21:45:00,15 13th St, New York City,NY,10001 +163424,20in Monitor,1,109.99,2019-03-26 20:19:00,87 12th St, Portland,OR,97035 +163425,Wired Headphones,1,11.99,2019-03-20 01:57:00,160 Elm St, San Francisco,CA,94016 +163426,Macbook Pro Laptop,1,1700.0,2019-03-06 22:57:00,619 1st St, Austin,TX,73301 +163427,Lightning Charging Cable,1,14.95,2019-03-01 20:44:00,441 Church St, Portland,ME,04101 +163428,Macbook Pro Laptop,1,1700.0,2019-03-22 13:21:00,432 North St, San Francisco,CA,94016 +163429,Apple Airpods Headphones,1,150.0,2019-03-01 17:20:00,382 Cedar St, San Francisco,CA,94016 +163430,Wired Headphones,1,11.99,2019-03-12 13:07:00,11 10th St, Portland,ME,04101 +163431,AAA Batteries (4-pack),1,2.99,2019-03-08 15:50:00,731 South St, Dallas,TX,75001 +163432,USB-C Charging Cable,1,11.95,2019-03-09 11:48:00,241 Johnson St, Los Angeles,CA,90001 +163433,Lightning Charging Cable,1,14.95,2019-03-17 18:16:00,885 River St, Dallas,TX,75001 +163434,Apple Airpods Headphones,1,150.0,2019-03-02 21:42:00,847 Dogwood St, Seattle,WA,98101 +163435,Apple Airpods Headphones,1,150.0,2019-03-27 16:25:00,135 Lakeview St, San Francisco,CA,94016 +163436,AAA Batteries (4-pack),1,2.99,2019-03-09 19:59:00,193 Church St, Los Angeles,CA,90001 +163437,Lightning Charging Cable,2,14.95,2019-03-22 16:08:00,20 Lakeview St, San Francisco,CA,94016 +163438,Wired Headphones,1,11.99,2019-03-28 18:11:00,64 14th St, Atlanta,GA,30301 +163439,AAA Batteries (4-pack),1,2.99,2019-03-26 17:09:00,359 Chestnut St, Boston,MA,02215 +163440,Apple Airpods Headphones,1,150.0,2019-03-23 23:25:00,236 2nd St, Los Angeles,CA,90001 +163441,iPhone,1,700.0,2019-03-08 17:26:00,360 Ridge St, Atlanta,GA,30301 +163442,Flatscreen TV,1,300.0,2019-03-24 23:49:00,393 Washington St, Seattle,WA,98101 +163443,Flatscreen TV,1,300.0,2019-03-11 12:33:00,365 Lincoln St, Portland,ME,04101 +163444,27in 4K Gaming Monitor,1,389.99,2019-03-26 17:04:00,896 Walnut St, Austin,TX,73301 +163445,USB-C Charging Cable,1,11.95,2019-03-30 08:18:00,417 Lake St, Dallas,TX,75001 +163446,Bose SoundSport Headphones,1,99.99,2019-03-17 22:54:00,319 14th St, New York City,NY,10001 +163447,Bose SoundSport Headphones,1,99.99,2019-03-09 20:10:00,833 6th St, Boston,MA,02215 +163448,Apple Airpods Headphones,1,150.0,2019-03-02 20:43:00,725 Main St, Portland,OR,97035 +163449,Wired Headphones,1,11.99,2019-03-26 16:59:00,11 Chestnut St, San Francisco,CA,94016 +163450,Wired Headphones,1,11.99,2019-03-20 02:48:00,902 Dogwood St, Atlanta,GA,30301 +163451,Lightning Charging Cable,1,14.95,2019-03-02 11:47:00,215 Spruce St, San Francisco,CA,94016 +163452,20in Monitor,1,109.99,2019-03-29 22:55:00,436 Ridge St, Los Angeles,CA,90001 +163453,Wired Headphones,1,11.99,2019-03-03 14:58:00,17 6th St, Los Angeles,CA,90001 +163454,34in Ultrawide Monitor,1,379.99,2019-03-12 21:01:00,712 South St, Los Angeles,CA,90001 +163455,AA Batteries (4-pack),1,3.84,2019-03-04 20:43:00,316 10th St, Austin,TX,73301 +163456,Wired Headphones,1,11.99,2019-03-17 12:06:00,20 11th St, New York City,NY,10001 +163457,USB-C Charging Cable,1,11.95,2019-03-31 16:15:00,998 9th St, Boston,MA,02215 +163458,USB-C Charging Cable,1,11.95,2019-03-02 00:03:00,546 Walnut St, Seattle,WA,98101 +163459,Lightning Charging Cable,1,14.95,2019-03-31 18:07:00,354 Main St, San Francisco,CA,94016 +163460,AAA Batteries (4-pack),3,2.99,2019-03-23 13:43:00,580 Wilson St, New York City,NY,10001 +163461,AAA Batteries (4-pack),1,2.99,2019-03-21 12:49:00,990 12th St, San Francisco,CA,94016 +163462,27in FHD Monitor,1,149.99,2019-03-04 11:00:00,502 Walnut St, Dallas,TX,75001 +163463,Lightning Charging Cable,1,14.95,2019-03-05 00:17:00,154 7th St, Los Angeles,CA,90001 +163464,34in Ultrawide Monitor,1,379.99,2019-03-14 21:46:00,490 8th St, Atlanta,GA,30301 +163465,Wired Headphones,1,11.99,2019-03-21 12:11:00,147 Meadow St, Los Angeles,CA,90001 +163466,Lightning Charging Cable,1,14.95,2019-03-05 10:31:00,968 8th St, Atlanta,GA,30301 +163467,27in 4K Gaming Monitor,1,389.99,2019-03-22 12:24:00,495 Center St, Boston,MA,02215 +163468,AA Batteries (4-pack),1,3.84,2019-03-04 14:28:00,312 Church St, Austin,TX,73301 +163469,USB-C Charging Cable,1,11.95,2019-03-24 17:52:00,84 North St, Dallas,TX,75001 +163470,AA Batteries (4-pack),1,3.84,2019-03-29 14:56:00,594 Walnut St, Los Angeles,CA,90001 +163471,AAA Batteries (4-pack),1,2.99,2019-03-14 14:54:00,78 Church St, Dallas,TX,75001 +163472,AA Batteries (4-pack),1,3.84,2019-03-08 21:44:00,538 2nd St, New York City,NY,10001 +163473,ThinkPad Laptop,1,999.99,2019-03-07 19:29:00,808 Hickory St, Boston,MA,02215 +163474,27in FHD Monitor,1,149.99,2019-03-02 18:35:00,32 North St, Dallas,TX,75001 +163475,34in Ultrawide Monitor,1,379.99,2019-03-24 15:34:00,604 4th St, San Francisco,CA,94016 +163476,AA Batteries (4-pack),1,3.84,2019-03-14 14:39:00,952 Forest St, Los Angeles,CA,90001 +163477,34in Ultrawide Monitor,1,379.99,2019-03-30 01:20:00,104 Cedar St, Boston,MA,02215 +163478,Bose SoundSport Headphones,1,99.99,2019-03-26 20:44:00,707 Park St, Portland,ME,04101 +163479,Lightning Charging Cable,1,14.95,2019-03-06 13:24:00,959 Lincoln St, New York City,NY,10001 +163480,iPhone,1,700.0,2019-03-02 13:48:00,206 Hill St, Seattle,WA,98101 +163480,Lightning Charging Cable,1,14.95,2019-03-02 13:48:00,206 Hill St, Seattle,WA,98101 +163481,Bose SoundSport Headphones,1,99.99,2019-03-04 15:21:00,891 Maple St, Los Angeles,CA,90001 +163482,34in Ultrawide Monitor,1,379.99,2019-03-02 13:26:00,636 Pine St, San Francisco,CA,94016 +163483,AA Batteries (4-pack),1,3.84,2019-03-30 18:11:00,120 Highland St, Los Angeles,CA,90001 +163484,20in Monitor,1,109.99,2019-03-20 02:24:00,784 Meadow St, San Francisco,CA,94016 +163485,USB-C Charging Cable,1,11.95,2019-03-21 19:18:00,800 Jackson St, Boston,MA,02215 +163486,Apple Airpods Headphones,1,150.0,2019-03-23 16:32:00,405 Lake St, Atlanta,GA,30301 +163487,Lightning Charging Cable,1,14.95,2019-03-11 10:42:00,747 Chestnut St, Seattle,WA,98101 +163488,Lightning Charging Cable,1,14.95,2019-03-15 12:43:00,122 10th St, Dallas,TX,75001 +163489,Wired Headphones,1,11.99,2019-03-10 12:11:00,88 Center St, New York City,NY,10001 +163490,AAA Batteries (4-pack),1,2.99,2019-03-01 21:27:00,858 Meadow St, Atlanta,GA,30301 +163491,Google Phone,1,600.0,2019-03-14 11:14:00,698 Jackson St, New York City,NY,10001 +163492,Bose SoundSport Headphones,1,99.99,2019-03-27 10:17:00,953 Park St, New York City,NY,10001 +163493,34in Ultrawide Monitor,1,379.99,2019-03-24 18:29:00,685 Meadow St, Los Angeles,CA,90001 +163494,Flatscreen TV,1,300.0,2019-03-14 19:16:00,758 5th St, Boston,MA,02215 +163495,27in FHD Monitor,1,149.99,2019-03-07 20:33:00,901 Adams St, Boston,MA,02215 +163496,Lightning Charging Cable,1,14.95,2019-03-10 18:26:00,841 Park St, San Francisco,CA,94016 +163497,Apple Airpods Headphones,1,150.0,2019-03-18 12:20:00,15 Spruce St, New York City,NY,10001 +163498,Bose SoundSport Headphones,1,99.99,2019-03-30 23:29:00,809 5th St, Los Angeles,CA,90001 +163499,USB-C Charging Cable,1,11.95,2019-03-09 16:06:00,418 10th St, Seattle,WA,98101 +163500,Wired Headphones,1,11.99,2019-03-26 19:48:00,871 Sunset St, Seattle,WA,98101 +163501,34in Ultrawide Monitor,1,379.99,2019-03-28 21:19:00,781 5th St, New York City,NY,10001 +163502,Vareebadd Phone,1,400.0,2019-03-27 17:21:00,195 11th St, Los Angeles,CA,90001 +163502,Bose SoundSport Headphones,1,99.99,2019-03-27 17:21:00,195 11th St, Los Angeles,CA,90001 +163503,Wired Headphones,1,11.99,2019-03-01 21:18:00,869 Forest St, New York City,NY,10001 +163504,AAA Batteries (4-pack),1,2.99,2019-03-22 10:11:00,310 Madison St, San Francisco,CA,94016 +163505,Lightning Charging Cable,1,14.95,2019-03-29 17:21:00,824 Jackson St, San Francisco,CA,94016 +163506,USB-C Charging Cable,1,11.95,2019-03-02 15:07:00,159 Johnson St, Los Angeles,CA,90001 +163507,Vareebadd Phone,1,400.0,2019-03-22 14:52:00,673 Maple St, Seattle,WA,98101 +163508,Bose SoundSport Headphones,1,99.99,2019-03-06 18:22:00,885 North St, Dallas,TX,75001 +163509,AAA Batteries (4-pack),2,2.99,2019-03-06 13:17:00,954 Pine St, Seattle,WA,98101 +163510,Apple Airpods Headphones,1,150.0,2019-03-27 17:07:00,55 Wilson St, San Francisco,CA,94016 +163510,Macbook Pro Laptop,1,1700.0,2019-03-27 17:07:00,55 Wilson St, San Francisco,CA,94016 +163511,34in Ultrawide Monitor,1,379.99,2019-03-28 16:05:00,356 Adams St, Seattle,WA,98101 +163512,AAA Batteries (4-pack),1,2.99,2019-03-26 11:46:00,47 6th St, Los Angeles,CA,90001 +163513,Bose SoundSport Headphones,1,99.99,2019-03-04 17:45:00,713 10th St, Seattle,WA,98101 +163514,Lightning Charging Cable,1,14.95,2019-03-20 13:08:00,871 Cherry St, Dallas,TX,75001 +163515,Apple Airpods Headphones,1,150.0,2019-03-22 21:25:00,112 2nd St, Boston,MA,02215 +163516,Wired Headphones,1,11.99,2019-03-13 17:11:00,715 Spruce St, Seattle,WA,98101 +163517,AAA Batteries (4-pack),1,2.99,2019-03-26 16:16:00,926 10th St, Atlanta,GA,30301 +163518,USB-C Charging Cable,1,11.95,2019-03-14 13:09:00,17 Lincoln St, San Francisco,CA,94016 +163519,AAA Batteries (4-pack),1,2.99,2019-03-07 19:31:00,313 Lakeview St, San Francisco,CA,94016 +163520,USB-C Charging Cable,1,11.95,2019-03-10 20:14:00,413 11th St, Los Angeles,CA,90001 +163521,Wired Headphones,1,11.99,2019-03-07 09:58:00,81 10th St, San Francisco,CA,94016 +163522,AAA Batteries (4-pack),1,2.99,2019-03-16 14:39:00,34 4th St, Los Angeles,CA,90001 +163523,Apple Airpods Headphones,1,150.0,2019-03-23 11:41:00,295 6th St, Atlanta,GA,30301 +163524,USB-C Charging Cable,1,11.95,2019-03-27 21:53:00,991 Lake St, San Francisco,CA,94016 +163525,AAA Batteries (4-pack),1,2.99,2019-03-05 09:38:00,866 5th St, Boston,MA,02215 +163526,Apple Airpods Headphones,1,150.0,2019-03-12 16:22:00,774 Elm St, San Francisco,CA,94016 +163527,34in Ultrawide Monitor,1,379.99,2019-03-22 15:21:00,542 North St, Atlanta,GA,30301 +163528,Google Phone,1,600.0,2019-03-21 18:28:00,509 North St, San Francisco,CA,94016 +163529,Apple Airpods Headphones,1,150.0,2019-03-21 06:13:00,657 Church St, San Francisco,CA,94016 +163530,AAA Batteries (4-pack),1,2.99,2019-03-13 15:23:00,482 Meadow St, San Francisco,CA,94016 +163531,USB-C Charging Cable,1,11.95,2019-03-29 19:01:00,346 9th St, Austin,TX,73301 +163532,Bose SoundSport Headphones,1,99.99,2019-03-07 15:49:00,120 Cedar St, Los Angeles,CA,90001 +163533,Google Phone,1,600.0,2019-03-03 15:40:00,454 11th St, Los Angeles,CA,90001 +163534,ThinkPad Laptop,1,999.99,2019-03-23 18:43:00,327 Ridge St, Boston,MA,02215 +163535,Apple Airpods Headphones,1,150.0,2019-03-26 17:51:00,505 9th St, Atlanta,GA,30301 +163536,Macbook Pro Laptop,1,1700.0,2019-03-08 16:44:00,413 8th St, San Francisco,CA,94016 +163537,Lightning Charging Cable,1,14.95,2019-03-18 06:20:00,852 10th St, San Francisco,CA,94016 +163538,Lightning Charging Cable,1,14.95,2019-03-23 11:03:00,882 Wilson St, San Francisco,CA,94016 +163539,Wired Headphones,1,11.99,2019-03-04 15:43:00,556 Main St, San Francisco,CA,94016 +163540,Apple Airpods Headphones,1,150.0,2019-03-02 20:37:00,962 10th St, Los Angeles,CA,90001 +163541,USB-C Charging Cable,1,11.95,2019-03-21 09:05:00,114 Pine St, Dallas,TX,75001 +163542,iPhone,1,700.0,2019-03-29 15:50:00,155 South St, San Francisco,CA,94016 +163543,USB-C Charging Cable,1,11.95,2019-03-31 12:44:00,93 Walnut St, Atlanta,GA,30301 +163544,Lightning Charging Cable,1,14.95,2019-03-01 22:10:00,739 Johnson St, Dallas,TX,75001 +163545,Google Phone,1,600.0,2019-03-02 10:15:00,302 1st St, San Francisco,CA,94016 +163546,ThinkPad Laptop,1,999.99,2019-03-31 20:58:00,327 Hickory St, Dallas,TX,75001 +163547,USB-C Charging Cable,2,11.95,2019-03-04 18:47:00,2 6th St, New York City,NY,10001 +163547,AA Batteries (4-pack),2,3.84,2019-03-04 18:47:00,2 6th St, New York City,NY,10001 +163548,Bose SoundSport Headphones,1,99.99,2019-03-02 17:06:00,650 Jackson St, Seattle,WA,98101 +163549,Macbook Pro Laptop,1,1700.0,2019-03-14 11:23:00,735 Lincoln St, New York City,NY,10001 +163550,Lightning Charging Cable,1,14.95,2019-03-18 12:51:00,72 Spruce St, Los Angeles,CA,90001 +163551,Lightning Charging Cable,1,14.95,2019-03-19 14:26:00,636 North St, Seattle,WA,98101 +163552,Lightning Charging Cable,1,14.95,2019-03-20 05:19:00,365 Elm St, Dallas,TX,75001 +163553,Lightning Charging Cable,1,14.95,2019-03-27 23:40:00,647 Johnson St, Boston,MA,02215 +163554,Apple Airpods Headphones,1,150.0,2019-03-13 09:54:00,751 Wilson St, San Francisco,CA,94016 +163555,USB-C Charging Cable,1,11.95,2019-03-04 01:16:00,960 Lakeview St, San Francisco,CA,94016 +163556,Apple Airpods Headphones,1,150.0,2019-03-27 19:09:00,911 Walnut St, New York City,NY,10001 +163557,Lightning Charging Cable,1,14.95,2019-03-22 22:48:00,998 Dogwood St, San Francisco,CA,94016 +163558,USB-C Charging Cable,1,11.95,2019-03-03 20:06:00,84 Cedar St, Dallas,TX,75001 +163559,Bose SoundSport Headphones,1,99.99,2019-03-25 11:06:00,391 Highland St, New York City,NY,10001 +163560,AA Batteries (4-pack),1,3.84,2019-03-24 14:12:00,500 5th St, Portland,ME,04101 +163561,Bose SoundSport Headphones,1,99.99,2019-03-31 20:39:00,417 River St, San Francisco,CA,94016 +163562,20in Monitor,1,109.99,2019-03-09 18:28:00,909 Meadow St, Seattle,WA,98101 +163563,ThinkPad Laptop,1,999.99,2019-03-01 18:44:00,157 South St, San Francisco,CA,94016 +163564,Bose SoundSport Headphones,1,99.99,2019-03-30 18:27:00,131 Washington St, San Francisco,CA,94016 +163565,AA Batteries (4-pack),1,3.84,2019-03-19 22:12:00,324 Sunset St, Austin,TX,73301 +163566,Bose SoundSport Headphones,1,99.99,2019-03-14 20:57:00,356 Cherry St, Portland,OR,97035 +163567,AA Batteries (4-pack),1,3.84,2019-03-04 12:11:00,904 Pine St, Austin,TX,73301 +163568,Bose SoundSport Headphones,1,99.99,2019-03-14 16:33:00,934 Highland St, San Francisco,CA,94016 +163569,Lightning Charging Cable,1,14.95,2019-03-23 21:16:00,627 Center St, Portland,OR,97035 +163570,Bose SoundSport Headphones,1,99.99,2019-03-25 13:36:00,291 Wilson St, New York City,NY,10001 +163571,AA Batteries (4-pack),1,3.84,2019-03-30 01:05:00,60 Washington St, Dallas,TX,75001 +163572,Bose SoundSport Headphones,1,99.99,2019-03-21 14:33:00,996 Willow St, San Francisco,CA,94016 +163573,ThinkPad Laptop,1,999.99,2019-03-21 15:51:00,388 Ridge St, Portland,ME,04101 +163574,AAA Batteries (4-pack),3,2.99,2019-03-23 20:23:00,560 Center St, Atlanta,GA,30301 +163575,Bose SoundSport Headphones,1,99.99,2019-03-08 23:36:00,761 Jefferson St, Seattle,WA,98101 +163576,34in Ultrawide Monitor,1,379.99,2019-03-26 19:34:00,633 13th St, Los Angeles,CA,90001 +163577,AA Batteries (4-pack),1,3.84,2019-03-09 19:08:00,801 Hill St, San Francisco,CA,94016 +163578,AA Batteries (4-pack),2,3.84,2019-03-27 13:58:00,57 Adams St, Boston,MA,02215 +163578,AA Batteries (4-pack),1,3.84,2019-03-27 13:58:00,57 Adams St, Boston,MA,02215 +163579,Lightning Charging Cable,1,14.95,2019-03-25 09:23:00,993 Highland St, Austin,TX,73301 +163580,AAA Batteries (4-pack),1,2.99,2019-03-24 15:45:00,169 Wilson St, Atlanta,GA,30301 +163581,Apple Airpods Headphones,1,150.0,2019-03-27 21:37:00,678 Sunset St, San Francisco,CA,94016 +163582,ThinkPad Laptop,1,999.99,2019-03-03 13:12:00,303 Lake St, San Francisco,CA,94016 +163583,AAA Batteries (4-pack),1,2.99,2019-03-10 13:02:00,36 10th St, New York City,NY,10001 +163584,Flatscreen TV,1,300.0,2019-03-18 23:57:00,634 Maple St, Austin,TX,73301 +163585,Apple Airpods Headphones,1,150.0,2019-03-05 16:51:00,128 Lincoln St, Dallas,TX,75001 +163586,Lightning Charging Cable,1,14.95,2019-03-22 08:52:00,960 Lakeview St, Austin,TX,73301 +163587,Wired Headphones,1,11.99,2019-03-26 06:46:00,367 Sunset St, New York City,NY,10001 +163588,Bose SoundSport Headphones,1,99.99,2019-03-21 09:03:00,4 6th St, New York City,NY,10001 +163589,AA Batteries (4-pack),1,3.84,2019-03-01 09:54:00,402 Lakeview St, Dallas,TX,75001 +163590,iPhone,1,700.0,2019-03-27 20:24:00,25 Jackson St, New York City,NY,10001 +163590,Lightning Charging Cable,1,14.95,2019-03-27 20:24:00,25 Jackson St, New York City,NY,10001 +163591,USB-C Charging Cable,1,11.95,2019-03-23 14:51:00,128 Meadow St, San Francisco,CA,94016 +163592,AA Batteries (4-pack),1,3.84,2019-03-15 17:38:00,938 Washington St, Atlanta,GA,30301 +163593,Apple Airpods Headphones,1,150.0,2019-03-24 20:31:00,44 11th St, Atlanta,GA,30301 +163594,Bose SoundSport Headphones,1,99.99,2019-03-08 15:18:00,380 1st St, San Francisco,CA,94016 +163595,Lightning Charging Cable,1,14.95,2019-03-21 23:54:00,37 Adams St, Los Angeles,CA,90001 +163596,Apple Airpods Headphones,1,150.0,2019-03-19 19:22:00,777 12th St, Seattle,WA,98101 +163597,iPhone,1,700.0,2019-03-09 05:00:00,85 13th St, Los Angeles,CA,90001 +163598,34in Ultrawide Monitor,1,379.99,2019-03-31 01:46:00,819 Hill St, Seattle,WA,98101 +163599,Bose SoundSport Headphones,1,99.99,2019-03-22 12:43:00,833 Park St, San Francisco,CA,94016 +163600,Bose SoundSport Headphones,1,99.99,2019-03-07 17:27:00,199 West St, Los Angeles,CA,90001 +163601,Lightning Charging Cable,1,14.95,2019-03-11 19:52:00,582 7th St, San Francisco,CA,94016 +163602,Flatscreen TV,1,300.0,2019-03-26 16:39:00,277 12th St, New York City,NY,10001 +163603,Macbook Pro Laptop,1,1700.0,2019-03-29 18:48:00,803 Cedar St, Seattle,WA,98101 +163604,USB-C Charging Cable,1,11.95,2019-03-11 21:53:00,426 12th St, Los Angeles,CA,90001 +163605,Lightning Charging Cable,1,14.95,2019-03-11 13:11:00,839 13th St, San Francisco,CA,94016 +163606,Google Phone,1,600.0,2019-03-01 09:24:00,598 11th St, Portland,OR,97035 +163606,USB-C Charging Cable,1,11.95,2019-03-01 09:24:00,598 11th St, Portland,OR,97035 +163607,AAA Batteries (4-pack),1,2.99,2019-03-15 07:35:00,155 Lincoln St, New York City,NY,10001 +163608,Bose SoundSport Headphones,1,99.99,2019-03-02 21:16:00,461 Adams St, Boston,MA,02215 +163609,LG Washing Machine,1,600.0,2019-03-25 10:30:00,64 Elm St, Los Angeles,CA,90001 +163610,ThinkPad Laptop,1,999.99,2019-03-01 19:54:00,423 Main St, Austin,TX,73301 +163611,Wired Headphones,1,11.99,2019-03-11 08:55:00,752 Washington St, Boston,MA,02215 +163612,AAA Batteries (4-pack),2,2.99,2019-03-27 08:10:00,915 4th St, New York City,NY,10001 +163613,Bose SoundSport Headphones,1,99.99,2019-03-16 10:32:00,830 Cedar St, Boston,MA,02215 +163614,AA Batteries (4-pack),1,3.84,2019-03-31 10:38:00,619 River St, Seattle,WA,98101 +163615,AAA Batteries (4-pack),1,2.99,2019-03-19 16:03:00,531 Washington St, Los Angeles,CA,90001 +163616,Google Phone,1,600.0,2019-03-04 01:23:00,976 4th St, New York City,NY,10001 +163617,USB-C Charging Cable,1,11.95,2019-03-26 10:05:00,47 Hill St, Boston,MA,02215 +163618,Apple Airpods Headphones,1,150.0,2019-03-14 11:39:00,251 South St, Los Angeles,CA,90001 +163619,LG Washing Machine,1,600.0,2019-03-18 20:18:00,470 12th St, Atlanta,GA,30301 +163620,USB-C Charging Cable,1,11.95,2019-03-01 18:47:00,685 1st St, Los Angeles,CA,90001 +163621,iPhone,1,700.0,2019-03-27 14:20:00,797 Chestnut St, New York City,NY,10001 +163622,Apple Airpods Headphones,1,150.0,2019-03-18 22:13:00,604 10th St, Dallas,TX,75001 +163623,27in FHD Monitor,1,149.99,2019-03-08 06:07:00,665 1st St, Portland,OR,97035 +163624,USB-C Charging Cable,1,11.95,2019-03-05 14:06:00,88 Jefferson St, Boston,MA,02215 +163625,Wired Headphones,1,11.99,2019-03-02 14:46:00,312 Madison St, San Francisco,CA,94016 +163626,AA Batteries (4-pack),1,3.84,2019-03-27 23:29:00,738 6th St, San Francisco,CA,94016 +163627,USB-C Charging Cable,1,11.95,2019-03-13 20:56:00,228 10th St, Seattle,WA,98101 +163628,AA Batteries (4-pack),1,3.84,2019-03-03 21:26:00,261 Dogwood St, Dallas,TX,75001 +163629,Google Phone,1,600.0,2019-03-22 18:31:00,189 9th St, Los Angeles,CA,90001 +163630,Wired Headphones,1,11.99,2019-03-04 15:52:00,357 Madison St, San Francisco,CA,94016 +163631,AAA Batteries (4-pack),3,2.99,2019-03-15 16:02:00,204 12th St, New York City,NY,10001 +163632,Macbook Pro Laptop,1,1700.0,2019-03-27 19:08:00,287 Dogwood St, Dallas,TX,75001 +163633,Apple Airpods Headphones,1,150.0,2019-03-30 16:46:00,126 Highland St, San Francisco,CA,94016 +163634,Wired Headphones,1,11.99,2019-03-02 10:27:00,950 West St, Austin,TX,73301 +163635,Bose SoundSport Headphones,1,99.99,2019-03-06 22:48:00,402 9th St, Atlanta,GA,30301 +163636,AAA Batteries (4-pack),1,2.99,2019-03-28 22:31:00,17 Johnson St, Dallas,TX,75001 +163637,Lightning Charging Cable,1,14.95,2019-03-10 11:26:00,486 West St, Seattle,WA,98101 +163638,Wired Headphones,1,11.99,2019-03-01 23:45:00,683 Madison St, Los Angeles,CA,90001 +163639,27in 4K Gaming Monitor,1,389.99,2019-03-01 22:16:00,716 Cherry St, Dallas,TX,75001 +163640,Bose SoundSport Headphones,1,99.99,2019-03-02 14:46:00,539 Hill St, Portland,OR,97035 +163641,ThinkPad Laptop,1,999.99,2019-03-07 12:14:00,707 Highland St, Austin,TX,73301 +163642,Wired Headphones,1,11.99,2019-03-29 19:11:00,891 2nd St, Los Angeles,CA,90001 +163643,Lightning Charging Cable,1,14.95,2019-03-09 19:33:00,535 Chestnut St, Los Angeles,CA,90001 +163644,27in FHD Monitor,1,149.99,2019-03-14 10:17:00,81 Main St, Austin,TX,73301 +163645,USB-C Charging Cable,1,11.95,2019-03-04 10:38:00,895 Hickory St, San Francisco,CA,94016 +163646,Wired Headphones,1,11.99,2019-03-18 21:49:00,532 Elm St, Dallas,TX,75001 +163647,AAA Batteries (4-pack),1,2.99,2019-03-22 10:50:00,101 Lake St, San Francisco,CA,94016 +163648,Wired Headphones,1,11.99,2019-03-02 20:07:00,410 Cedar St, Boston,MA,02215 +163649,AA Batteries (4-pack),1,3.84,2019-03-28 11:41:00,702 1st St, Los Angeles,CA,90001 +163650,Apple Airpods Headphones,1,150.0,2019-03-09 20:58:00,14 Willow St, Seattle,WA,98101 +163651,27in FHD Monitor,1,149.99,2019-03-22 12:55:00,252 Meadow St, Los Angeles,CA,90001 +163652,iPhone,1,700.0,2019-03-31 06:28:00,284 Lakeview St, San Francisco,CA,94016 +163653,iPhone,1,700.0,2019-03-31 17:42:00,845 Church St, Dallas,TX,75001 +163653,Lightning Charging Cable,1,14.95,2019-03-31 17:42:00,845 Church St, Dallas,TX,75001 +163654,USB-C Charging Cable,1,11.95,2019-03-01 08:42:00,448 Lincoln St, Boston,MA,02215 +163655,20in Monitor,1,109.99,2019-03-16 14:35:00,116 Madison St, Portland,OR,97035 +163656,ThinkPad Laptop,1,999.99,2019-03-16 11:42:00,156 8th St, Atlanta,GA,30301 +163657,Lightning Charging Cable,1,14.95,2019-03-31 09:46:00,576 13th St, New York City,NY,10001 +163658,Apple Airpods Headphones,1,150.0,2019-03-17 22:29:00,422 Maple St, New York City,NY,10001 +163658,iPhone,1,700.0,2019-03-17 22:29:00,422 Maple St, New York City,NY,10001 +163659,AA Batteries (4-pack),1,3.84,2019-03-19 07:03:00,343 Sunset St, San Francisco,CA,94016 +163660,iPhone,1,700.0,2019-03-05 21:01:00,982 6th St, San Francisco,CA,94016 +163661,34in Ultrawide Monitor,1,379.99,2019-03-04 21:28:00,910 7th St, San Francisco,CA,94016 +163662,27in FHD Monitor,1,149.99,2019-03-15 14:50:00,484 Cherry St, San Francisco,CA,94016 +163663,Lightning Charging Cable,1,14.95,2019-03-23 10:08:00,9 Ridge St, San Francisco,CA,94016 +163664,USB-C Charging Cable,1,11.95,2019-03-30 10:49:00,310 North St, Austin,TX,73301 +163665,Flatscreen TV,1,300.0,2019-03-19 12:51:00,296 Main St, Dallas,TX,75001 +163666,AAA Batteries (4-pack),1,2.99,2019-03-27 21:48:00,973 Washington St, New York City,NY,10001 +163667,Apple Airpods Headphones,1,150.0,2019-03-04 18:09:00,23 13th St, Atlanta,GA,30301 +163668,27in FHD Monitor,1,149.99,2019-03-09 19:56:00,154 Sunset St, San Francisco,CA,94016 +163669,Lightning Charging Cable,1,14.95,2019-03-09 13:07:00,170 6th St, New York City,NY,10001 +163670,34in Ultrawide Monitor,1,379.99,2019-03-29 09:05:00,67 Park St, Boston,MA,02215 +163671,Wired Headphones,1,11.99,2019-03-12 11:55:00,226 Maple St, Boston,MA,02215 +163672,AA Batteries (4-pack),1,3.84,2019-03-23 11:06:00,777 Highland St, New York City,NY,10001 +163673,Wired Headphones,1,11.99,2019-03-14 10:02:00,327 West St, Boston,MA,02215 +163674,AA Batteries (4-pack),1,3.84,2019-03-04 11:24:00,300 Pine St, Atlanta,GA,30301 +163675,Wired Headphones,1,11.99,2019-03-29 19:07:00,605 Lincoln St, San Francisco,CA,94016 +163676,Wired Headphones,1,11.99,2019-03-20 23:24:00,4 Church St, New York City,NY,10001 +163677,Apple Airpods Headphones,1,150.0,2019-03-13 20:12:00,69 Wilson St, Seattle,WA,98101 +163678,AAA Batteries (4-pack),1,2.99,2019-03-04 21:50:00,741 Walnut St, Boston,MA,02215 +163679,27in FHD Monitor,1,149.99,2019-03-15 13:11:00,710 9th St, Dallas,TX,75001 +163680,Google Phone,1,600.0,2019-03-22 15:30:00,113 North St, San Francisco,CA,94016 +163680,USB-C Charging Cable,1,11.95,2019-03-22 15:30:00,113 North St, San Francisco,CA,94016 +163681,Apple Airpods Headphones,1,150.0,2019-03-16 16:00:00,450 Cherry St, Atlanta,GA,30301 +163682,Vareebadd Phone,1,400.0,2019-03-19 19:41:00,356 6th St, Los Angeles,CA,90001 +163682,Wired Headphones,1,11.99,2019-03-19 19:41:00,356 6th St, Los Angeles,CA,90001 +163683,Bose SoundSport Headphones,1,99.99,2019-03-30 03:55:00,498 8th St, San Francisco,CA,94016 +163684,AA Batteries (4-pack),1,3.84,2019-03-27 02:40:00,237 Hill St, Dallas,TX,75001 +163685,Flatscreen TV,1,300.0,2019-03-06 06:41:00,897 14th St, San Francisco,CA,94016 +163686,AA Batteries (4-pack),1,3.84,2019-03-19 18:46:00,273 Dogwood St, Boston,MA,02215 +163687,Wired Headphones,1,11.99,2019-03-29 21:57:00,408 Walnut St, Portland,ME,04101 +163688,27in 4K Gaming Monitor,1,389.99,2019-03-04 12:33:00,15 Wilson St, San Francisco,CA,94016 +163689,Vareebadd Phone,1,400.0,2019-03-08 13:24:00,373 Chestnut St, Seattle,WA,98101 +163690,34in Ultrawide Monitor,1,379.99,2019-03-05 20:38:00,925 Dogwood St, Boston,MA,02215 +163691,USB-C Charging Cable,1,11.95,2019-03-04 15:55:00,236 Center St, San Francisco,CA,94016 +163692,ThinkPad Laptop,1,999.99,2019-03-19 23:16:00,346 9th St, San Francisco,CA,94016 +163693,20in Monitor,1,109.99,2019-03-31 08:15:00,523 2nd St, Los Angeles,CA,90001 +163694,AA Batteries (4-pack),1,3.84,2019-03-17 10:33:00,244 Hickory St, Seattle,WA,98101 +163695,Wired Headphones,1,11.99,2019-03-12 16:50:00,810 Center St, Atlanta,GA,30301 +163696,34in Ultrawide Monitor,1,379.99,2019-03-07 18:44:00,467 Chestnut St, Los Angeles,CA,90001 +163697,Wired Headphones,1,11.99,2019-03-28 18:29:00,7 6th St, New York City,NY,10001 +163698,USB-C Charging Cable,1,11.95,2019-03-17 20:50:00,85 Highland St, Los Angeles,CA,90001 +163699,20in Monitor,1,109.99,2019-03-01 14:04:00,434 Dogwood St, Boston,MA,02215 +163700,27in FHD Monitor,1,149.99,2019-03-10 08:27:00,199 Hill St, Seattle,WA,98101 +163701,Apple Airpods Headphones,1,150.0,2019-03-24 12:43:00,708 4th St, Portland,OR,97035 +163702,Google Phone,1,600.0,2019-03-12 15:39:00,713 Johnson St, Dallas,TX,75001 +163703,AA Batteries (4-pack),1,3.84,2019-03-20 11:36:00,50 Washington St, Atlanta,GA,30301 +163704,AA Batteries (4-pack),2,3.84,2019-03-08 19:20:00,401 Spruce St, Boston,MA,02215 +163705,iPhone,1,700.0,2019-03-17 17:54:00,61 Hickory St, New York City,NY,10001 +163706,27in 4K Gaming Monitor,1,389.99,2019-03-11 21:16:00,403 Park St, Los Angeles,CA,90001 +163707,Google Phone,1,600.0,2019-03-01 10:26:00,328 Center St, New York City,NY,10001 +163708,Flatscreen TV,1,300.0,2019-03-22 12:38:00,210 Park St, Seattle,WA,98101 +163709,USB-C Charging Cable,2,11.95,2019-03-27 08:08:00,261 Center St, Portland,OR,97035 +163710,Google Phone,1,600.0,2019-03-26 14:12:00,191 Cedar St, Boston,MA,02215 +163710,USB-C Charging Cable,1,11.95,2019-03-26 14:12:00,191 Cedar St, Boston,MA,02215 +163711,Wired Headphones,1,11.99,2019-03-14 21:33:00,180 Lincoln St, San Francisco,CA,94016 +163712,AA Batteries (4-pack),1,3.84,2019-03-23 19:34:00,967 North St, Boston,MA,02215 +163713,Bose SoundSport Headphones,1,99.99,2019-03-24 18:55:00,995 1st St, San Francisco,CA,94016 +163714,AA Batteries (4-pack),1,3.84,2019-03-29 14:30:00,941 Lakeview St, Boston,MA,02215 +163715,AAA Batteries (4-pack),2,2.99,2019-03-01 15:26:00,180 Lincoln St, Seattle,WA,98101 +163716,Lightning Charging Cable,1,14.95,2019-03-09 18:50:00,638 Main St, New York City,NY,10001 +163717,Lightning Charging Cable,1,14.95,2019-03-14 20:18:00,440 Hickory St, San Francisco,CA,94016 +163718,34in Ultrawide Monitor,1,379.99,2019-03-23 10:58:00,901 Sunset St, San Francisco,CA,94016 +163719,AA Batteries (4-pack),1,3.84,2019-03-13 15:12:00,776 Elm St, Austin,TX,73301 +163720,AAA Batteries (4-pack),2,2.99,2019-03-19 19:32:00,215 5th St, Austin,TX,73301 +163721,27in FHD Monitor,1,149.99,2019-03-28 18:23:00,300 Adams St, San Francisco,CA,94016 +163722,iPhone,1,700.0,2019-03-16 07:22:00,541 Dogwood St, New York City,NY,10001 +163723,USB-C Charging Cable,3,11.95,2019-03-23 19:31:00,359 Meadow St, San Francisco,CA,94016 +163724,AAA Batteries (4-pack),1,2.99,2019-03-29 21:15:00,145 Ridge St, Atlanta,GA,30301 +163725,ThinkPad Laptop,1,999.99,2019-03-30 20:46:00,705 Center St, Dallas,TX,75001 +163726,27in FHD Monitor,1,149.99,2019-03-28 21:07:00,257 Hickory St, Los Angeles,CA,90001 +163727,27in FHD Monitor,1,149.99,2019-03-07 17:38:00,837 Forest St, Dallas,TX,75001 +163728,AA Batteries (4-pack),1,3.84,2019-03-08 09:06:00,438 Center St, Dallas,TX,75001 +163729,Wired Headphones,1,11.99,2019-03-06 16:39:00,606 Adams St, Atlanta,GA,30301 +163730,USB-C Charging Cable,1,11.95,2019-03-16 13:33:00,384 Cherry St, San Francisco,CA,94016 +163731,Wired Headphones,1,11.99,2019-03-15 10:49:00,458 South St, New York City,NY,10001 +163732,Google Phone,1,600.0,2019-03-25 05:13:00,675 Ridge St, New York City,NY,10001 +163733,34in Ultrawide Monitor,1,379.99,2019-03-22 18:40:00,57 River St, New York City,NY,10001 +163734,AA Batteries (4-pack),1,3.84,2019-03-01 17:31:00,336 8th St, Portland,ME,04101 +163735,Lightning Charging Cable,1,14.95,2019-03-07 12:41:00,23 8th St, San Francisco,CA,94016 +163736,AA Batteries (4-pack),1,3.84,2019-03-22 20:05:00,759 North St, Los Angeles,CA,90001 +163737,Apple Airpods Headphones,1,150.0,2019-03-05 01:05:00,391 Cherry St, Atlanta,GA,30301 +163738,Apple Airpods Headphones,1,150.0,2019-03-06 17:42:00,793 South St, Austin,TX,73301 +163739,Google Phone,1,600.0,2019-03-26 04:25:00,105 Hickory St, New York City,NY,10001 +163740,Lightning Charging Cable,1,14.95,2019-03-14 08:31:00,856 Jefferson St, San Francisco,CA,94016 +163741,Bose SoundSport Headphones,1,99.99,2019-03-03 18:48:00,759 9th St, Atlanta,GA,30301 +163742,Flatscreen TV,1,300.0,2019-03-03 12:29:00,468 11th St, New York City,NY,10001 +163743,iPhone,1,700.0,2019-03-31 11:35:00,541 11th St, San Francisco,CA,94016 +163744,USB-C Charging Cable,1,11.95,2019-03-31 18:48:00,455 Chestnut St, New York City,NY,10001 +163745,27in FHD Monitor,1,149.99,2019-03-20 08:50:00,630 River St, San Francisco,CA,94016 +163746,Flatscreen TV,1,300.0,2019-03-13 21:01:00,299 Main St, New York City,NY,10001 +163747,iPhone,1,700.0,2019-03-06 21:32:00,489 6th St, San Francisco,CA,94016 +163748,USB-C Charging Cable,2,11.95,2019-03-07 18:22:00,754 Elm St, Los Angeles,CA,90001 +163749,Bose SoundSport Headphones,1,99.99,2019-03-29 07:37:00,749 Maple St, San Francisco,CA,94016 +163750,Flatscreen TV,1,300.0,2019-03-28 20:02:00,399 10th St, Boston,MA,02215 +163751,Bose SoundSport Headphones,1,99.99,2019-03-09 17:00:00,653 Johnson St, Seattle,WA,98101 +163752,AA Batteries (4-pack),1,3.84,2019-03-04 00:28:00,90 Johnson St, Dallas,TX,75001 +163753,Lightning Charging Cable,1,14.95,2019-03-14 16:36:00,117 9th St, San Francisco,CA,94016 +163754,Bose SoundSport Headphones,1,99.99,2019-03-25 22:27:00,336 North St, Boston,MA,02215 +163755,Bose SoundSport Headphones,1,99.99,2019-03-20 21:31:00,419 2nd St, Boston,MA,02215 +163756,ThinkPad Laptop,1,999.99,2019-03-17 22:25:00,392 Ridge St, New York City,NY,10001 +163757,AA Batteries (4-pack),1,3.84,2019-03-09 16:11:00,251 Forest St, San Francisco,CA,94016 +163758,iPhone,1,700.0,2019-03-14 18:31:00,587 2nd St, New York City,NY,10001 +163759,AAA Batteries (4-pack),1,2.99,2019-03-21 15:53:00,225 Hickory St, Austin,TX,73301 +163760,Lightning Charging Cable,1,14.95,2019-03-13 21:49:00,319 Lincoln St, Boston,MA,02215 +163761,Lightning Charging Cable,2,14.95,2019-03-28 15:25:00,33 Lake St, Boston,MA,02215 +163762,USB-C Charging Cable,1,11.95,2019-03-21 12:05:00,141 Jefferson St, Boston,MA,02215 +163763,20in Monitor,1,109.99,2019-03-26 16:55:00,727 2nd St, Atlanta,GA,30301 +163764,Bose SoundSport Headphones,1,99.99,2019-03-16 15:36:00,287 River St, Los Angeles,CA,90001 +163765,USB-C Charging Cable,1,11.95,2019-03-30 11:21:00,586 Meadow St, New York City,NY,10001 +163766,Apple Airpods Headphones,1,150.0,2019-03-24 02:24:00,53 1st St, San Francisco,CA,94016 +163767,AAA Batteries (4-pack),3,2.99,2019-03-02 18:35:00,320 10th St, Seattle,WA,98101 +163768,Flatscreen TV,1,300.0,2019-03-21 20:23:00,487 Main St, San Francisco,CA,94016 +163769,Apple Airpods Headphones,1,150.0,2019-03-17 17:11:00,180 Hickory St, San Francisco,CA,94016 +163770,AA Batteries (4-pack),2,3.84,2019-03-01 12:00:00,996 12th St, San Francisco,CA,94016 +163771,AAA Batteries (4-pack),2,2.99,2019-03-23 14:41:00,353 Maple St, Los Angeles,CA,90001 +163772,Wired Headphones,1,11.99,2019-03-05 11:09:00,15 Hickory St, Los Angeles,CA,90001 +163773,Google Phone,1,600.0,2019-03-07 10:57:00,615 5th St, Atlanta,GA,30301 +163774,27in FHD Monitor,1,149.99,2019-03-01 22:27:00,640 Elm St, San Francisco,CA,94016 +163775,iPhone,1,700.0,2019-03-13 13:37:00,635 6th St, San Francisco,CA,94016 +163776,Lightning Charging Cable,1,14.95,2019-03-13 07:44:00,567 Hill St, New York City,NY,10001 +163777,AAA Batteries (4-pack),2,2.99,2019-03-15 01:35:00,579 Church St, Atlanta,GA,30301 +163778,AAA Batteries (4-pack),2,2.99,2019-03-23 21:25:00,192 6th St, Dallas,TX,75001 +163779,USB-C Charging Cable,1,11.95,2019-03-09 08:09:00,433 Johnson St, Boston,MA,02215 +163780,ThinkPad Laptop,1,999.99,2019-03-30 19:44:00,732 Adams St, San Francisco,CA,94016 +163781,USB-C Charging Cable,1,11.95,2019-03-26 20:49:00,695 Forest St, San Francisco,CA,94016 +163782,27in FHD Monitor,1,149.99,2019-03-10 17:33:00,643 Elm St, New York City,NY,10001 +163783,27in FHD Monitor,1,149.99,2019-03-10 08:58:00,617 North St, New York City,NY,10001 +163783,Apple Airpods Headphones,1,150.0,2019-03-10 08:58:00,617 North St, New York City,NY,10001 +163784,Lightning Charging Cable,1,14.95,2019-03-03 18:22:00,293 South St, San Francisco,CA,94016 +163785,Lightning Charging Cable,1,14.95,2019-03-14 12:03:00,130 Hill St, San Francisco,CA,94016 +163786,AAA Batteries (4-pack),2,2.99,2019-03-19 11:24:00,284 12th St, New York City,NY,10001 +163787,ThinkPad Laptop,1,999.99,2019-03-20 22:34:00,358 Church St, Los Angeles,CA,90001 +163788,Lightning Charging Cable,1,14.95,2019-03-21 08:14:00,995 Jackson St, Los Angeles,CA,90001 +163789,27in FHD Monitor,1,149.99,2019-03-02 22:17:00,457 River St, Los Angeles,CA,90001 +163790,Apple Airpods Headphones,1,150.0,2019-03-23 18:37:00,611 Center St, Dallas,TX,75001 +163791,AAA Batteries (4-pack),1,2.99,2019-03-21 12:10:00,802 14th St, San Francisco,CA,94016 +163792,Apple Airpods Headphones,1,150.0,2019-03-25 09:16:00,456 Cedar St, Boston,MA,02215 +163793,AA Batteries (4-pack),1,3.84,2019-03-26 19:53:00,387 Maple St, Boston,MA,02215 +163794,AAA Batteries (4-pack),1,2.99,2019-03-28 11:49:00,820 Ridge St, San Francisco,CA,94016 +163795,Flatscreen TV,1,300.0,2019-03-21 20:19:00,387 Willow St, Los Angeles,CA,90001 +163796,USB-C Charging Cable,1,11.95,2019-03-07 11:16:00,80 14th St, Atlanta,GA,30301 +163797,USB-C Charging Cable,1,11.95,2019-03-11 17:55:00,669 Johnson St, Boston,MA,02215 +163798,Wired Headphones,1,11.99,2019-03-04 08:19:00,768 8th St, San Francisco,CA,94016 +163799,Lightning Charging Cable,1,14.95,2019-03-04 16:57:00,111 Lake St, San Francisco,CA,94016 +163800,Lightning Charging Cable,1,14.95,2019-03-02 16:39:00,930 Spruce St, Atlanta,GA,30301 +163801,Wired Headphones,2,11.99,2019-03-11 09:14:00,674 1st St, Seattle,WA,98101 +163802,34in Ultrawide Monitor,1,379.99,2019-03-13 17:29:00,888 1st St, San Francisco,CA,94016 +163802,27in FHD Monitor,1,149.99,2019-03-13 17:29:00,888 1st St, San Francisco,CA,94016 +163803,27in 4K Gaming Monitor,1,389.99,2019-03-20 10:39:00,518 14th St, Boston,MA,02215 +163804,27in FHD Monitor,1,149.99,2019-03-13 10:30:00,493 14th St, Boston,MA,02215 +163805,AAA Batteries (4-pack),1,2.99,2019-03-27 17:46:00,698 6th St, Austin,TX,73301 +163806,Wired Headphones,1,11.99,2019-03-13 14:58:00,253 Willow St, San Francisco,CA,94016 +163807,AAA Batteries (4-pack),1,2.99,2019-03-23 18:52:00,588 North St, New York City,NY,10001 +163808,AAA Batteries (4-pack),1,2.99,2019-03-31 10:59:00,501 Madison St, Austin,TX,73301 +163809,Wired Headphones,1,11.99,2019-03-23 20:26:00,172 Sunset St, Atlanta,GA,30301 +163810,AA Batteries (4-pack),1,3.84,2019-03-04 13:06:00,87 4th St, Atlanta,GA,30301 +163811,Lightning Charging Cable,1,14.95,2019-03-11 12:25:00,785 Highland St, San Francisco,CA,94016 +163812,Lightning Charging Cable,1,14.95,2019-03-21 07:05:00,57 Forest St, New York City,NY,10001 +163813,Apple Airpods Headphones,1,150.0,2019-03-14 22:58:00,275 Sunset St, Los Angeles,CA,90001 +163814,AAA Batteries (4-pack),2,2.99,2019-03-26 21:44:00,168 Church St, Atlanta,GA,30301 +163815,AA Batteries (4-pack),4,3.84,2019-03-19 16:50:00,679 Park St, Boston,MA,02215 +163816,Lightning Charging Cable,1,14.95,2019-03-02 11:22:00,480 Church St, Los Angeles,CA,90001 +163817,USB-C Charging Cable,1,11.95,2019-03-16 12:17:00,675 Church St, Los Angeles,CA,90001 +163818,Bose SoundSport Headphones,1,99.99,2019-03-30 11:06:00,673 Dogwood St, San Francisco,CA,94016 +163819,USB-C Charging Cable,1,11.95,2019-03-07 12:26:00,395 13th St, Los Angeles,CA,90001 +163820,iPhone,1,700.0,2019-03-14 17:18:00,578 Main St, Seattle,WA,98101 +163821,Apple Airpods Headphones,1,150.0,2019-03-05 06:56:00,496 Church St, San Francisco,CA,94016 +163822,Google Phone,1,600.0,2019-03-11 14:19:00,866 14th St, Seattle,WA,98101 +163823,Wired Headphones,1,11.99,2019-03-22 16:33:00,400 River St, Dallas,TX,75001 +163824,Lightning Charging Cable,1,14.95,2019-03-17 16:01:00,323 Washington St, Boston,MA,02215 +163825,Bose SoundSport Headphones,1,99.99,2019-03-25 11:30:00,338 Maple St, San Francisco,CA,94016 +163826,iPhone,1,700.0,2019-03-21 16:02:00,726 Hickory St, New York City,NY,10001 +163826,Lightning Charging Cable,1,14.95,2019-03-21 16:02:00,726 Hickory St, New York City,NY,10001 +163827,Lightning Charging Cable,1,14.95,2019-03-12 14:02:00,277 Forest St, Boston,MA,02215 +163828,iPhone,1,700.0,2019-03-31 14:12:00,999 5th St, San Francisco,CA,94016 +163829,Flatscreen TV,1,300.0,2019-03-09 22:35:00,323 7th St, New York City,NY,10001 +163830,AAA Batteries (4-pack),3,2.99,2019-03-19 09:51:00,951 Adams St, Los Angeles,CA,90001 +163831,AA Batteries (4-pack),1,3.84,2019-03-27 21:40:00,87 Main St, San Francisco,CA,94016 +163832,AA Batteries (4-pack),1,3.84,2019-03-11 12:21:00,625 Maple St, Los Angeles,CA,90001 +163833,AA Batteries (4-pack),1,3.84,2019-03-10 09:25:00,476 10th St, San Francisco,CA,94016 +163834,LG Washing Machine,1,600.0,2019-03-04 18:54:00,336 South St, Atlanta,GA,30301 +163835,Lightning Charging Cable,1,14.95,2019-03-10 19:00:00,23 14th St, Dallas,TX,75001 +163836,AA Batteries (4-pack),1,3.84,2019-03-02 09:33:00,959 8th St, Boston,MA,02215 +163837,AA Batteries (4-pack),2,3.84,2019-03-29 23:05:00,175 Pine St, Los Angeles,CA,90001 +163838,Lightning Charging Cable,1,14.95,2019-03-21 21:53:00,45 13th St, New York City,NY,10001 +163839,Wired Headphones,1,11.99,2019-03-14 17:20:00,605 12th St, San Francisco,CA,94016 +163840,34in Ultrawide Monitor,1,379.99,2019-03-09 16:11:00,809 4th St, Boston,MA,02215 +163841,Bose SoundSport Headphones,1,99.99,2019-03-03 15:18:00,196 River St, Los Angeles,CA,90001 +163842,Wired Headphones,1,11.99,2019-03-17 15:04:00,727 7th St, Los Angeles,CA,90001 +163843,AAA Batteries (4-pack),1,2.99,2019-03-22 19:42:00,977 9th St, Austin,TX,73301 +163844,AA Batteries (4-pack),1,3.84,2019-03-18 14:55:00,871 9th St, Dallas,TX,75001 +163845,AAA Batteries (4-pack),1,2.99,2019-03-13 13:48:00,154 13th St, San Francisco,CA,94016 +163846,Macbook Pro Laptop,1,1700.0,2019-03-23 12:33:00,998 13th St, Seattle,WA,98101 +163847,34in Ultrawide Monitor,1,379.99,2019-03-13 18:52:00,802 West St, San Francisco,CA,94016 +163848,Lightning Charging Cable,1,14.95,2019-03-14 13:21:00,624 Walnut St, New York City,NY,10001 +163849,AA Batteries (4-pack),1,3.84,2019-03-03 21:12:00,531 River St, Seattle,WA,98101 +163850,Wired Headphones,1,11.99,2019-03-17 08:04:00,600 7th St, Atlanta,GA,30301 +163851,Wired Headphones,1,11.99,2019-03-01 15:05:00,496 Forest St, Boston,MA,02215 +163852,USB-C Charging Cable,1,11.95,2019-03-28 16:59:00,630 South St, Los Angeles,CA,90001 +163853,Bose SoundSport Headphones,1,99.99,2019-03-06 03:54:00,289 Meadow St, San Francisco,CA,94016 +163854,AA Batteries (4-pack),1,3.84,2019-03-31 20:42:00,51 Forest St, Atlanta,GA,30301 +163855,Wired Headphones,1,11.99,2019-03-01 14:35:00,293 Lake St, San Francisco,CA,94016 +163856,AAA Batteries (4-pack),1,2.99,2019-03-20 22:58:00,687 Spruce St, New York City,NY,10001 +163857,Apple Airpods Headphones,1,150.0,2019-03-28 09:37:00,226 Highland St, New York City,NY,10001 +163858,Wired Headphones,1,11.99,2019-03-05 20:24:00,76 Lincoln St, Dallas,TX,75001 +163859,Apple Airpods Headphones,1,150.0,2019-03-11 18:15:00,327 5th St, Boston,MA,02215 +163860,27in 4K Gaming Monitor,1,389.99,2019-03-24 21:18:00,997 Pine St, Portland,OR,97035 +163861,Bose SoundSport Headphones,1,99.99,2019-03-11 03:17:00,508 Jackson St, New York City,NY,10001 +163862,AAA Batteries (4-pack),1,2.99,2019-03-21 15:36:00,175 Dogwood St, Boston,MA,02215 +163862,Lightning Charging Cable,1,14.95,2019-03-21 15:36:00,175 Dogwood St, Boston,MA,02215 +163863,Lightning Charging Cable,1,14.95,2019-03-22 16:37:00,201 Washington St, Atlanta,GA,30301 +163864,AA Batteries (4-pack),2,3.84,2019-03-07 20:11:00,233 River St, Portland,OR,97035 +163865,Wired Headphones,1,11.99,2019-03-16 01:42:00,314 14th St, New York City,NY,10001 +163866,Wired Headphones,1,11.99,2019-03-14 15:00:00,779 Chestnut St, San Francisco,CA,94016 +163867,AA Batteries (4-pack),1,3.84,2019-03-24 19:24:00,229 Johnson St, Boston,MA,02215 +163868,AA Batteries (4-pack),1,3.84,2019-03-07 10:00:00,807 9th St, Seattle,WA,98101 +163869,USB-C Charging Cable,1,11.95,2019-03-31 08:00:00,291 Chestnut St, Dallas,TX,75001 +163870,USB-C Charging Cable,1,11.95,2019-03-03 17:19:00,114 12th St, New York City,NY,10001 +163871,USB-C Charging Cable,1,11.95,2019-03-23 10:31:00,326 Chestnut St, San Francisco,CA,94016 +163872,Apple Airpods Headphones,1,150.0,2019-03-15 08:56:00,186 Lincoln St, Boston,MA,02215 +163873,AA Batteries (4-pack),1,3.84,2019-03-26 16:42:00,787 6th St, Boston,MA,02215 +163874,Bose SoundSport Headphones,1,99.99,2019-03-11 21:38:00,407 River St, San Francisco,CA,94016 +163875,Apple Airpods Headphones,1,150.0,2019-03-13 10:23:00,820 Main St, Seattle,WA,98101 +163876,AA Batteries (4-pack),1,3.84,2019-03-19 11:03:00,458 Ridge St, Austin,TX,73301 +163877,Bose SoundSport Headphones,1,99.99,2019-03-17 06:38:00,872 Center St, Seattle,WA,98101 +163878,AAA Batteries (4-pack),1,2.99,2019-03-28 11:39:00,349 Walnut St, Boston,MA,02215 +163879,USB-C Charging Cable,1,11.95,2019-03-31 16:42:00,710 Maple St, Boston,MA,02215 +163880,Lightning Charging Cable,1,14.95,2019-03-24 06:03:00,935 Lakeview St, Atlanta,GA,30301 +163881,ThinkPad Laptop,1,999.99,2019-03-18 09:44:00,692 Johnson St, Austin,TX,73301 +163882,iPhone,1,700.0,2019-03-18 09:12:00,76 Lakeview St, Portland,OR,97035 +163883,Bose SoundSport Headphones,1,99.99,2019-03-23 06:09:00,55 River St, Boston,MA,02215 +163884,Google Phone,1,600.0,2019-03-04 18:44:00,7 2nd St, Los Angeles,CA,90001 +163885,Bose SoundSport Headphones,1,99.99,2019-03-24 18:14:00,288 West St, Seattle,WA,98101 +163886,Lightning Charging Cable,1,14.95,2019-03-09 11:44:00,738 Willow St, Seattle,WA,98101 +163887,Bose SoundSport Headphones,1,99.99,2019-03-30 16:47:00,836 Lakeview St, Los Angeles,CA,90001 +163888,iPhone,1,700.0,2019-03-28 11:14:00,534 Lakeview St, Austin,TX,73301 +163889,Wired Headphones,1,11.99,2019-03-25 23:21:00,770 Hill St, Atlanta,GA,30301 +163890,Bose SoundSport Headphones,1,99.99,2019-03-26 08:37:00,706 Adams St, San Francisco,CA,94016 +163891,34in Ultrawide Monitor,1,379.99,2019-03-17 15:54:00,433 10th St, Portland,OR,97035 +163892,iPhone,1,700.0,2019-03-03 23:58:00,688 12th St, Seattle,WA,98101 +163893,Wired Headphones,1,11.99,2019-03-02 10:23:00,95 Cherry St, Portland,OR,97035 +163894,iPhone,1,700.0,2019-03-01 08:02:00,330 Adams St, Seattle,WA,98101 +163895,Lightning Charging Cable,1,14.95,2019-03-22 22:04:00,91 Wilson St, San Francisco,CA,94016 +163896,USB-C Charging Cable,1,11.95,2019-03-08 10:28:00,557 Main St, San Francisco,CA,94016 +163897,AAA Batteries (4-pack),4,2.99,2019-03-01 17:33:00,635 West St, Portland,OR,97035 +163898,Lightning Charging Cable,1,14.95,2019-03-17 06:45:00,217 Cedar St, Los Angeles,CA,90001 +163899,LG Dryer,1,600.0,2019-03-29 16:13:00,781 Lakeview St, Boston,MA,02215 +163900,Apple Airpods Headphones,1,150.0,2019-03-19 14:41:00,188 8th St, San Francisco,CA,94016 +163901,Lightning Charging Cable,1,14.95,2019-03-05 15:38:00,457 West St, New York City,NY,10001 +163902,Vareebadd Phone,1,400.0,2019-03-04 22:08:00,185 Meadow St, San Francisco,CA,94016 +163903,Vareebadd Phone,1,400.0,2019-03-10 16:25:00,690 Lincoln St, San Francisco,CA,94016 +163904,USB-C Charging Cable,1,11.95,2019-03-14 15:49:00,844 Lake St, Portland,ME,04101 +163905,AA Batteries (4-pack),2,3.84,2019-03-27 23:33:00,922 Dogwood St, San Francisco,CA,94016 +163906,Apple Airpods Headphones,1,150.0,2019-03-17 12:35:00,195 Wilson St, San Francisco,CA,94016 +163907,Flatscreen TV,1,300.0,2019-03-23 20:28:00,164 Washington St, San Francisco,CA,94016 +163908,AAA Batteries (4-pack),2,2.99,2019-03-11 19:43:00,201 Lake St, New York City,NY,10001 +163909,USB-C Charging Cable,1,11.95,2019-03-06 12:45:00,531 Washington St, New York City,NY,10001 +163910,AAA Batteries (4-pack),1,2.99,2019-03-28 20:02:00,841 4th St, Portland,OR,97035 +163911,iPhone,1,700.0,2019-03-20 08:37:00,396 Hill St, New York City,NY,10001 +163912,20in Monitor,1,109.99,2019-03-09 14:44:00,427 Cedar St, San Francisco,CA,94016 +163913,Bose SoundSport Headphones,1,99.99,2019-03-24 12:20:00,131 7th St, Boston,MA,02215 +163913,Flatscreen TV,1,300.0,2019-03-24 12:20:00,131 7th St, Boston,MA,02215 +163914,iPhone,1,700.0,2019-03-24 12:58:00,232 2nd St, San Francisco,CA,94016 +163915,20in Monitor,1,109.99,2019-03-20 16:42:00,184 Jefferson St, Austin,TX,73301 +163916,Wired Headphones,1,11.99,2019-03-18 21:35:00,108 Lakeview St, San Francisco,CA,94016 +163917,Apple Airpods Headphones,1,150.0,2019-03-13 23:10:00,254 Johnson St, Atlanta,GA,30301 +163918,USB-C Charging Cable,1,11.95,2019-03-02 16:40:00,351 11th St, New York City,NY,10001 +163919,AAA Batteries (4-pack),1,2.99,2019-03-25 14:40:00,159 14th St, Atlanta,GA,30301 +163920,27in FHD Monitor,1,149.99,2019-03-07 21:28:00,317 Meadow St, Dallas,TX,75001 +163921,ThinkPad Laptop,1,999.99,2019-03-06 23:17:00,336 Lakeview St, Seattle,WA,98101 +163922,Flatscreen TV,1,300.0,2019-03-30 11:50:00,609 West St, Los Angeles,CA,90001 +163923,Flatscreen TV,1,300.0,2019-03-08 19:25:00,871 River St, Dallas,TX,75001 +163924,27in 4K Gaming Monitor,1,389.99,2019-03-05 10:45:00,154 10th St, Portland,OR,97035 +163925,Apple Airpods Headphones,1,150.0,2019-03-15 20:41:00,572 Church St, Austin,TX,73301 +163926,AAA Batteries (4-pack),1,2.99,2019-03-21 13:33:00,847 North St, New York City,NY,10001 +163927,AAA Batteries (4-pack),1,2.99,2019-03-07 21:10:00,825 Sunset St, Atlanta,GA,30301 +163928,Wired Headphones,1,11.99,2019-03-07 15:23:00,762 Cedar St, Boston,MA,02215 +163929,Wired Headphones,1,11.99,2019-03-05 13:42:00,748 North St, San Francisco,CA,94016 +163930,Lightning Charging Cable,1,14.95,2019-03-20 13:13:00,618 Lincoln St, Austin,TX,73301 +163931,AAA Batteries (4-pack),1,2.99,2019-03-26 09:31:00,735 Pine St, San Francisco,CA,94016 +163932,Flatscreen TV,1,300.0,2019-03-20 15:32:00,488 Walnut St, New York City,NY,10001 +163933,27in FHD Monitor,1,149.99,2019-03-04 18:30:00,627 Sunset St, Boston,MA,02215 +163934,Lightning Charging Cable,1,14.95,2019-03-14 20:18:00,124 Cherry St, Seattle,WA,98101 +163935,AAA Batteries (4-pack),2,2.99,2019-03-25 18:22:00,310 Johnson St, San Francisco,CA,94016 +163936,Apple Airpods Headphones,1,150.0,2019-03-25 11:36:00,132 Maple St, Portland,ME,04101 +163937,Google Phone,1,600.0,2019-03-06 18:31:00,860 Lakeview St, Dallas,TX,75001 +163938,AAA Batteries (4-pack),2,2.99,2019-03-05 11:06:00,78 Center St, Los Angeles,CA,90001 +163939,USB-C Charging Cable,1,11.95,2019-03-29 13:49:00,149 West St, Seattle,WA,98101 +163940,Lightning Charging Cable,1,14.95,2019-03-25 20:12:00,125 Walnut St, Boston,MA,02215 +163941,USB-C Charging Cable,1,11.95,2019-03-09 11:35:00,238 North St, Los Angeles,CA,90001 +163942,AA Batteries (4-pack),2,3.84,2019-03-03 09:47:00,145 Center St, Los Angeles,CA,90001 +163943,Lightning Charging Cable,1,14.95,2019-03-04 09:17:00,774 Dogwood St, San Francisco,CA,94016 +163944,Wired Headphones,1,11.99,2019-03-08 17:16:00,538 North St, Dallas,TX,75001 +163945,20in Monitor,1,109.99,2019-03-15 17:46:00,11 1st St, Los Angeles,CA,90001 +163946,Lightning Charging Cable,1,14.95,2019-03-08 17:23:00,477 Willow St, San Francisco,CA,94016 +163947,AA Batteries (4-pack),3,3.84,2019-03-10 00:19:00,844 Cherry St, Seattle,WA,98101 +163948,Bose SoundSport Headphones,1,99.99,2019-03-11 11:04:00,499 6th St, San Francisco,CA,94016 +163949,Lightning Charging Cable,1,14.95,2019-03-10 19:00:00,808 River St, San Francisco,CA,94016 +163950,AA Batteries (4-pack),3,3.84,2019-03-10 22:30:00,404 Willow St, San Francisco,CA,94016 +163951,Vareebadd Phone,1,400.0,2019-03-14 14:46:00,572 Main St, San Francisco,CA,94016 +163952,34in Ultrawide Monitor,1,379.99,2019-03-19 18:38:00,463 Elm St, Los Angeles,CA,90001 +163953,Flatscreen TV,1,300.0,2019-03-10 15:01:00,132 River St, Boston,MA,02215 +163954,Lightning Charging Cable,1,14.95,2019-03-01 22:28:00,154 Washington St, Portland,OR,97035 +163955,Lightning Charging Cable,1,14.95,2019-03-15 15:11:00,773 Ridge St, Los Angeles,CA,90001 +163956,AAA Batteries (4-pack),2,2.99,2019-03-28 12:19:00,526 Meadow St, New York City,NY,10001 +163957,AA Batteries (4-pack),2,3.84,2019-03-20 17:35:00,993 North St, Austin,TX,73301 +163958,AAA Batteries (4-pack),1,2.99,2019-03-06 13:16:00,931 13th St, Austin,TX,73301 +163959,Bose SoundSport Headphones,1,99.99,2019-03-13 07:51:00,520 Madison St, Boston,MA,02215 +163960,iPhone,1,700.0,2019-03-27 00:21:00,658 Jackson St, New York City,NY,10001 +163961,AAA Batteries (4-pack),2,2.99,2019-03-27 12:13:00,860 Highland St, Portland,OR,97035 +163962,USB-C Charging Cable,1,11.95,2019-03-27 21:06:00,76 Pine St, Los Angeles,CA,90001 +163963,27in FHD Monitor,1,149.99,2019-03-31 19:16:00,213 Maple St, Austin,TX,73301 +163964,Macbook Pro Laptop,1,1700.0,2019-03-05 23:06:00,725 Park St, Los Angeles,CA,90001 +163965,USB-C Charging Cable,1,11.95,2019-03-20 00:46:00,687 Meadow St, Dallas,TX,75001 +163966,AAA Batteries (4-pack),2,2.99,2019-03-12 13:05:00,915 Elm St, Austin,TX,73301 +163967,Google Phone,1,600.0,2019-03-21 19:33:00,172 Cherry St, Los Angeles,CA,90001 +163968,AA Batteries (4-pack),2,3.84,2019-03-25 07:16:00,194 13th St, Los Angeles,CA,90001 +163969,AA Batteries (4-pack),1,3.84,2019-03-26 06:50:00,796 Main St, Seattle,WA,98101 +163970,iPhone,1,700.0,2019-03-13 12:18:00,665 Meadow St, Los Angeles,CA,90001 +163971,Macbook Pro Laptop,1,1700.0,2019-03-22 20:11:00,121 Main St, Boston,MA,02215 +163972,AA Batteries (4-pack),1,3.84,2019-03-25 13:42:00,793 Johnson St, San Francisco,CA,94016 +163973,AA Batteries (4-pack),2,3.84,2019-03-26 10:16:00,972 Willow St, Los Angeles,CA,90001 +163974,20in Monitor,1,109.99,2019-03-25 03:39:00,496 Wilson St, Los Angeles,CA,90001 +163975,Apple Airpods Headphones,1,150.0,2019-03-22 13:13:00,264 Highland St, San Francisco,CA,94016 +163976,Bose SoundSport Headphones,1,99.99,2019-03-07 15:20:00,826 Church St, Seattle,WA,98101 +163977,Apple Airpods Headphones,1,150.0,2019-03-29 13:00:00,870 5th St, San Francisco,CA,94016 +163978,Apple Airpods Headphones,1,150.0,2019-03-03 10:14:00,839 Hickory St, San Francisco,CA,94016 +163979,Apple Airpods Headphones,1,150.0,2019-03-01 07:37:00,945 Adams St, Boston,MA,02215 +163980,ThinkPad Laptop,1,999.99,2019-03-10 21:21:00,621 Main St, San Francisco,CA,94016 +163981,USB-C Charging Cable,1,11.95,2019-03-14 16:41:00,721 1st St, San Francisco,CA,94016 +163982,AA Batteries (4-pack),1,3.84,2019-03-13 15:02:00,328 1st St, Dallas,TX,75001 +163983,USB-C Charging Cable,1,11.95,2019-03-05 10:51:00,683 Hickory St, New York City,NY,10001 +163983,iPhone,1,700.0,2019-03-05 10:51:00,683 Hickory St, New York City,NY,10001 +163984,Lightning Charging Cable,1,14.95,2019-03-13 19:43:00,448 Dogwood St, Boston,MA,02215 +163984,USB-C Charging Cable,1,11.95,2019-03-13 19:43:00,448 Dogwood St, Boston,MA,02215 +163985,27in 4K Gaming Monitor,1,389.99,2019-03-09 16:28:00,195 10th St, Seattle,WA,98101 +163986,AAA Batteries (4-pack),2,2.99,2019-03-27 16:37:00,172 6th St, San Francisco,CA,94016 +163987,AA Batteries (4-pack),1,3.84,2019-03-27 14:34:00,21 West St, Los Angeles,CA,90001 +163988,Bose SoundSport Headphones,1,99.99,2019-03-07 10:17:00,227 Church St, Los Angeles,CA,90001 +163989,Lightning Charging Cable,1,14.95,2019-03-31 16:12:00,69 Sunset St, Dallas,TX,75001 +163990,USB-C Charging Cable,1,11.95,2019-03-28 10:11:00,863 Church St, Boston,MA,02215 +163991,Google Phone,1,600.0,2019-03-03 10:46:00,497 Ridge St, San Francisco,CA,94016 +163991,Wired Headphones,1,11.99,2019-03-03 10:46:00,497 Ridge St, San Francisco,CA,94016 +163992,USB-C Charging Cable,1,11.95,2019-03-14 21:20:00,566 Ridge St, Portland,OR,97035 +163993,Vareebadd Phone,1,400.0,2019-03-21 13:16:00,66 Lincoln St, San Francisco,CA,94016 +163993,27in 4K Gaming Monitor,1,389.99,2019-03-21 13:16:00,66 Lincoln St, San Francisco,CA,94016 +163994,Lightning Charging Cable,1,14.95,2019-03-11 22:04:00,658 11th St, San Francisco,CA,94016 +163995,Google Phone,1,600.0,2019-03-13 10:57:00,541 Pine St, Los Angeles,CA,90001 +163996,Bose SoundSport Headphones,1,99.99,2019-03-09 17:19:00,498 14th St, Boston,MA,02215 +163997,AA Batteries (4-pack),1,3.84,2019-03-10 13:53:00,67 6th St, San Francisco,CA,94016 +163998,LG Dryer,1,600.0,2019-03-17 18:27:00,452 7th St, Seattle,WA,98101 +163999,AAA Batteries (4-pack),1,2.99,2019-03-11 09:09:00,595 6th St, San Francisco,CA,94016 +164000,USB-C Charging Cable,2,11.95,2019-03-19 22:48:00,549 10th St, Dallas,TX,75001 +164001,AA Batteries (4-pack),2,3.84,2019-03-09 07:35:00,610 Elm St, Boston,MA,02215 +164002,27in 4K Gaming Monitor,1,389.99,2019-03-14 16:18:00,48 Jefferson St, Atlanta,GA,30301 +164003,AA Batteries (4-pack),3,3.84,2019-03-06 21:31:00,294 Wilson St, Boston,MA,02215 +164004,AA Batteries (4-pack),1,3.84,2019-03-19 10:29:00,463 Hill St, New York City,NY,10001 +164005,iPhone,1,700.0,2019-03-04 22:57:00,887 12th St, Los Angeles,CA,90001 +164006,Google Phone,1,600.0,2019-03-07 00:13:00,532 Cedar St, Los Angeles,CA,90001 +164006,USB-C Charging Cable,1,11.95,2019-03-07 00:13:00,532 Cedar St, Los Angeles,CA,90001 +164007,USB-C Charging Cable,1,11.95,2019-03-25 09:08:00,2 5th St, Austin,TX,73301 +164008,Apple Airpods Headphones,1,150.0,2019-03-09 13:30:00,551 Wilson St, Boston,MA,02215 +164009,34in Ultrawide Monitor,1,379.99,2019-03-05 14:40:00,4 Ridge St, Boston,MA,02215 +164010,Wired Headphones,1,11.99,2019-03-10 17:22:00,85 Chestnut St, New York City,NY,10001 +164011,Macbook Pro Laptop,1,1700.0,2019-03-16 08:13:00,884 Elm St, Seattle,WA,98101 +164012,Wired Headphones,1,11.99,2019-03-26 20:52:00,764 Hill St, Atlanta,GA,30301 +164013,AA Batteries (4-pack),1,3.84,2019-03-16 19:19:00,880 1st St, Boston,MA,02215 +164014,Wired Headphones,2,11.99,2019-03-05 09:03:00,685 Highland St, Los Angeles,CA,90001 +164015,Lightning Charging Cable,1,14.95,2019-03-08 17:29:00,633 Jefferson St, San Francisco,CA,94016 +164016,Wired Headphones,1,11.99,2019-03-11 15:33:00,647 Hill St, Boston,MA,02215 +164017,34in Ultrawide Monitor,1,379.99,2019-03-01 18:47:00,302 Lincoln St, Los Angeles,CA,90001 +164018,Wired Headphones,1,11.99,2019-03-11 11:23:00,541 Jackson St, Los Angeles,CA,90001 +164019,ThinkPad Laptop,1,999.99,2019-03-24 15:14:00,9 Jackson St, San Francisco,CA,94016 +164020,Apple Airpods Headphones,1,150.0,2019-03-12 10:19:00,785 Madison St, Seattle,WA,98101 +164021,Wired Headphones,1,11.99,2019-03-11 21:54:00,548 South St, Los Angeles,CA,90001 +164022,AAA Batteries (4-pack),1,2.99,2019-03-30 12:37:00,376 Wilson St, Los Angeles,CA,90001 +164023,USB-C Charging Cable,1,11.95,2019-03-30 14:22:00,236 Church St, Los Angeles,CA,90001 +164024,Bose SoundSport Headphones,1,99.99,2019-03-24 11:22:00,792 Hickory St, Los Angeles,CA,90001 +164025,Wired Headphones,1,11.99,2019-03-21 14:10:00,188 Main St, Boston,MA,02215 +164026,Apple Airpods Headphones,1,150.0,2019-03-14 19:09:00,927 11th St, Portland,OR,97035 +164027,USB-C Charging Cable,1,11.95,2019-03-29 19:45:00,919 1st St, San Francisco,CA,94016 +164028,USB-C Charging Cable,1,11.95,2019-03-27 21:04:00,877 River St, Seattle,WA,98101 +164029,Wired Headphones,1,11.99,2019-03-10 12:05:00,303 Lake St, San Francisco,CA,94016 +164030,Apple Airpods Headphones,1,150.0,2019-03-26 11:26:00,393 13th St, Boston,MA,02215 +164031,Wired Headphones,1,11.99,2019-03-03 02:12:00,334 Lincoln St, New York City,NY,10001 +164032,34in Ultrawide Monitor,1,379.99,2019-03-31 17:33:00,329 Johnson St, San Francisco,CA,94016 +164033,20in Monitor,1,109.99,2019-03-19 10:32:00,778 6th St, Austin,TX,73301 +164034,USB-C Charging Cable,1,11.95,2019-03-26 23:33:00,534 11th St, Austin,TX,73301 +164035,Wired Headphones,1,11.99,2019-03-03 22:57:00,808 Lake St, Seattle,WA,98101 +164036,Apple Airpods Headphones,1,150.0,2019-03-18 18:11:00,612 Walnut St, Los Angeles,CA,90001 +164037,Lightning Charging Cable,1,14.95,2019-03-30 14:42:00,327 Church St, Los Angeles,CA,90001 +164038,Wired Headphones,1,11.99,2019-03-24 10:21:00,749 Hill St, Seattle,WA,98101 +164039,Wired Headphones,1,11.99,2019-03-31 01:00:00,995 Lincoln St, Los Angeles,CA,90001 +164040,Apple Airpods Headphones,1,150.0,2019-03-24 12:09:00,185 Park St, New York City,NY,10001 +164041,Bose SoundSport Headphones,1,99.99,2019-03-01 22:56:00,860 Washington St, Austin,TX,73301 +164042,ThinkPad Laptop,1,999.99,2019-03-18 21:20:00,965 6th St, Portland,OR,97035 +164043,Lightning Charging Cable,1,14.95,2019-03-14 19:58:00,690 Dogwood St, Seattle,WA,98101 +164044,ThinkPad Laptop,1,999.99,2019-03-10 19:46:00,911 Ridge St, Boston,MA,02215 +164045,AA Batteries (4-pack),1,3.84,2019-03-19 11:16:00,226 Jefferson St, San Francisco,CA,94016 +164046,Bose SoundSport Headphones,1,99.99,2019-03-17 20:44:00,837 Dogwood St, San Francisco,CA,94016 +164047,Apple Airpods Headphones,1,150.0,2019-03-26 19:41:00,154 Forest St, Los Angeles,CA,90001 +164048,Lightning Charging Cable,1,14.95,2019-03-28 19:31:00,420 River St, Atlanta,GA,30301 +164049,34in Ultrawide Monitor,1,379.99,2019-03-25 21:06:00,772 Jackson St, San Francisco,CA,94016 +164050,27in 4K Gaming Monitor,1,389.99,2019-03-30 17:00:00,955 6th St, Seattle,WA,98101 +164051,Wired Headphones,1,11.99,2019-03-28 19:18:00,812 Maple St, Boston,MA,02215 +164052,34in Ultrawide Monitor,1,379.99,2019-03-10 11:33:00,927 Dogwood St, San Francisco,CA,94016 +164053,20in Monitor,1,109.99,2019-03-19 17:37:00,491 Spruce St, Seattle,WA,98101 +164054,Wired Headphones,1,11.99,2019-03-11 15:41:00,122 Ridge St, Portland,OR,97035 +164055,AAA Batteries (4-pack),1,2.99,2019-03-02 22:32:00,450 Forest St, Austin,TX,73301 +164056,Wired Headphones,1,11.99,2019-03-09 19:13:00,91 13th St, Los Angeles,CA,90001 +164057,AAA Batteries (4-pack),1,2.99,2019-03-06 06:50:00,149 Hickory St, Seattle,WA,98101 +164058,USB-C Charging Cable,1,11.95,2019-03-19 14:56:00,320 West St, Austin,TX,73301 +164059,Wired Headphones,1,11.99,2019-03-23 18:18:00,556 Main St, Los Angeles,CA,90001 +164060,USB-C Charging Cable,1,11.95,2019-03-05 14:49:00,679 South St, New York City,NY,10001 +164061,Lightning Charging Cable,1,14.95,2019-03-22 15:35:00,424 Center St, Portland,ME,04101 +164061,AAA Batteries (4-pack),2,2.99,2019-03-22 15:35:00,424 Center St, Portland,ME,04101 +164062,Lightning Charging Cable,1,14.95,2019-03-07 16:32:00,623 Wilson St, San Francisco,CA,94016 +164063,AAA Batteries (4-pack),3,2.99,2019-03-02 20:38:00,48 Ridge St, San Francisco,CA,94016 +164064,Macbook Pro Laptop,1,1700.0,2019-03-12 00:22:00,875 10th St, New York City,NY,10001 +164065,34in Ultrawide Monitor,1,379.99,2019-03-10 23:16:00,217 4th St, New York City,NY,10001 +164066,AA Batteries (4-pack),1,3.84,2019-03-09 08:37:00,471 Park St, New York City,NY,10001 +164067,Apple Airpods Headphones,1,150.0,2019-03-30 13:15:00,601 Spruce St, Austin,TX,73301 +164068,Wired Headphones,1,11.99,2019-03-22 20:58:00,413 Pine St, Seattle,WA,98101 +164069,20in Monitor,1,109.99,2019-03-18 08:18:00,181 2nd St, Boston,MA,02215 +164070,Wired Headphones,1,11.99,2019-03-16 16:21:00,830 Jackson St, Boston,MA,02215 +164071,AA Batteries (4-pack),1,3.84,2019-03-16 14:56:00,758 Hickory St, New York City,NY,10001 +164072,AA Batteries (4-pack),1,3.84,2019-03-14 11:02:00,575 Jackson St, San Francisco,CA,94016 +164072,USB-C Charging Cable,1,11.95,2019-03-14 11:02:00,575 Jackson St, San Francisco,CA,94016 +164073,iPhone,1,700.0,2019-03-24 17:34:00,628 6th St, Boston,MA,02215 +164074,AAA Batteries (4-pack),2,2.99,2019-03-12 20:09:00,921 West St, San Francisco,CA,94016 +164075,AA Batteries (4-pack),1,3.84,2019-03-17 12:12:00,1 9th St, San Francisco,CA,94016 +164076,Macbook Pro Laptop,1,1700.0,2019-03-09 11:21:00,908 Forest St, San Francisco,CA,94016 +164077,AAA Batteries (4-pack),1,2.99,2019-03-31 14:06:00,80 4th St, San Francisco,CA,94016 +164078,Lightning Charging Cable,1,14.95,2019-03-23 12:24:00,906 Lakeview St, San Francisco,CA,94016 +164079,AAA Batteries (4-pack),1,2.99,2019-03-16 10:08:00,222 Washington St, Seattle,WA,98101 +164080,Lightning Charging Cable,1,14.95,2019-03-25 14:01:00,543 9th St, San Francisco,CA,94016 +164081,Flatscreen TV,1,300.0,2019-03-22 11:18:00,202 Wilson St, New York City,NY,10001 +164082,USB-C Charging Cable,1,11.95,2019-03-12 14:24:00,246 Ridge St, San Francisco,CA,94016 +164083,Apple Airpods Headphones,1,150.0,2019-03-03 09:24:00,136 Center St, Austin,TX,73301 +164084,Lightning Charging Cable,1,14.95,2019-03-21 18:17:00,95 Lake St, Dallas,TX,75001 +164085,AAA Batteries (4-pack),1,2.99,2019-03-11 22:04:00,243 Elm St, Austin,TX,73301 +164086,USB-C Charging Cable,1,11.95,2019-03-31 15:00:00,29 Park St, Dallas,TX,75001 +164087,Wired Headphones,1,11.99,2019-03-31 22:03:00,450 5th St, Los Angeles,CA,90001 +164088,USB-C Charging Cable,1,11.95,2019-03-18 18:13:00,304 6th St, Los Angeles,CA,90001 +164089,AAA Batteries (4-pack),1,2.99,2019-03-22 16:49:00,96 Johnson St, San Francisco,CA,94016 +164090,Lightning Charging Cable,1,14.95,2019-03-03 22:45:00,898 Lincoln St, Los Angeles,CA,90001 +164091,Apple Airpods Headphones,1,150.0,2019-03-05 20:25:00,244 Pine St, Boston,MA,02215 +164092,Lightning Charging Cable,1,14.95,2019-03-20 19:42:00,710 Madison St, Los Angeles,CA,90001 +164093,AA Batteries (4-pack),1,3.84,2019-03-11 22:04:00,55 Walnut St, New York City,NY,10001 +164094,AAA Batteries (4-pack),1,2.99,2019-03-29 10:45:00,160 Jackson St, New York City,NY,10001 +164095,AA Batteries (4-pack),2,3.84,2019-03-07 16:34:00,795 Hill St, Portland,OR,97035 +164096,34in Ultrawide Monitor,1,379.99,2019-03-22 20:36:00,707 Center St, New York City,NY,10001 +164097,AA Batteries (4-pack),1,3.84,2019-03-26 19:28:00,384 4th St, Dallas,TX,75001 +164098,Lightning Charging Cable,1,14.95,2019-03-16 10:36:00,86 Maple St, Los Angeles,CA,90001 +164099,27in 4K Gaming Monitor,1,389.99,2019-03-01 21:58:00,374 Hill St, San Francisco,CA,94016 +164100,27in 4K Gaming Monitor,1,389.99,2019-03-13 11:32:00,571 Church St, Atlanta,GA,30301 +164101,AAA Batteries (4-pack),3,2.99,2019-03-26 00:14:00,154 Cherry St, San Francisco,CA,94016 +164102,34in Ultrawide Monitor,1,379.99,2019-03-11 08:26:00,508 West St, New York City,NY,10001 +164103,27in FHD Monitor,1,149.99,2019-03-21 09:30:00,62 Lake St, Los Angeles,CA,90001 +164104,AAA Batteries (4-pack),2,2.99,2019-03-10 11:05:00,802 Adams St, Los Angeles,CA,90001 +164105,iPhone,1,700.0,2019-03-02 15:54:00,374 Cherry St, Seattle,WA,98101 +164106,Flatscreen TV,1,300.0,2019-03-31 13:37:00,414 Wilson St, New York City,NY,10001 +164107,Apple Airpods Headphones,1,150.0,2019-03-16 20:41:00,874 Main St, Boston,MA,02215 +164108,USB-C Charging Cable,1,11.95,2019-03-15 10:48:00,872 Meadow St, Atlanta,GA,30301 +164109,AA Batteries (4-pack),1,3.84,2019-03-23 09:48:00,572 Center St, San Francisco,CA,94016 +164110,AA Batteries (4-pack),1,3.84,2019-03-06 12:24:00,744 Wilson St, Los Angeles,CA,90001 +164111,Wired Headphones,1,11.99,2019-03-12 16:19:00,838 Spruce St, Boston,MA,02215 +164112,Lightning Charging Cable,1,14.95,2019-03-11 09:07:00,660 Spruce St, Seattle,WA,98101 +164113,Wired Headphones,1,11.99,2019-03-21 16:50:00,688 Elm St, San Francisco,CA,94016 +164114,Lightning Charging Cable,1,14.95,2019-03-16 18:36:00,144 South St, New York City,NY,10001 +164115,AA Batteries (4-pack),1,3.84,2019-03-28 11:57:00,134 Lincoln St, New York City,NY,10001 +164116,iPhone,1,700.0,2019-03-20 12:18:00,607 Spruce St, New York City,NY,10001 +164117,27in 4K Gaming Monitor,1,389.99,2019-03-30 11:40:00,857 Madison St, Boston,MA,02215 +164118,Macbook Pro Laptop,1,1700.0,2019-03-13 20:39:00,167 Hill St, Portland,OR,97035 +164119,Wired Headphones,1,11.99,2019-03-29 22:01:00,372 Johnson St, Los Angeles,CA,90001 +164120,AAA Batteries (4-pack),1,2.99,2019-03-05 14:11:00,359 Willow St, San Francisco,CA,94016 +164121,Google Phone,1,600.0,2019-03-07 21:30:00,581 1st St, San Francisco,CA,94016 +164122,Lightning Charging Cable,1,14.95,2019-03-25 00:10:00,918 Lake St, San Francisco,CA,94016 +164123,Lightning Charging Cable,1,14.95,2019-03-18 21:57:00,908 Spruce St, Dallas,TX,75001 +164124,Lightning Charging Cable,1,14.95,2019-03-20 18:47:00,613 Forest St, Boston,MA,02215 +164125,Wired Headphones,1,11.99,2019-03-12 10:57:00,160 Park St, New York City,NY,10001 +164126,Lightning Charging Cable,1,14.95,2019-03-23 18:13:00,226 1st St, Austin,TX,73301 +164127,Apple Airpods Headphones,1,150.0,2019-03-20 17:14:00,255 Highland St, Austin,TX,73301 +164128,AA Batteries (4-pack),1,3.84,2019-03-29 17:45:00,703 9th St, Portland,OR,97035 +164129,USB-C Charging Cable,1,11.95,2019-03-26 12:48:00,827 North St, Los Angeles,CA,90001 +164130,AAA Batteries (4-pack),1,2.99,2019-03-19 07:01:00,338 Lakeview St, Atlanta,GA,30301 +164131,Lightning Charging Cable,1,14.95,2019-03-16 16:28:00,628 Lakeview St, Dallas,TX,75001 +164132,AA Batteries (4-pack),1,3.84,2019-03-20 16:19:00,636 Lakeview St, San Francisco,CA,94016 +164133,Macbook Pro Laptop,1,1700.0,2019-03-21 14:07:00,685 Lakeview St, Dallas,TX,75001 +164134,AA Batteries (4-pack),1,3.84,2019-03-26 21:16:00,255 Madison St, Los Angeles,CA,90001 +164135,iPhone,1,700.0,2019-03-06 18:22:00,885 12th St, San Francisco,CA,94016 +164136,27in FHD Monitor,1,149.99,2019-03-08 11:20:00,670 Johnson St, Seattle,WA,98101 +164137,34in Ultrawide Monitor,1,379.99,2019-03-05 22:09:00,181 Dogwood St, Los Angeles,CA,90001 +164138,AA Batteries (4-pack),1,3.84,2019-03-02 05:59:00,646 Spruce St, New York City,NY,10001 +164139,Bose SoundSport Headphones,1,99.99,2019-03-06 11:03:00,741 14th St, San Francisco,CA,94016 +164140,ThinkPad Laptop,1,999.99,2019-03-16 21:59:00,875 Chestnut St, Austin,TX,73301 +164141,Apple Airpods Headphones,1,150.0,2019-03-17 21:07:00,18 14th St, Boston,MA,02215 +164142,USB-C Charging Cable,1,11.95,2019-03-12 14:26:00,770 Church St, San Francisco,CA,94016 +164143,AAA Batteries (4-pack),1,2.99,2019-03-02 13:23:00,719 14th St, Austin,TX,73301 +164144,Apple Airpods Headphones,1,150.0,2019-03-13 21:16:00,696 Washington St, Portland,ME,04101 +164145,USB-C Charging Cable,1,11.95,2019-03-16 21:33:00,368 Lake St, Los Angeles,CA,90001 +164146,27in FHD Monitor,1,149.99,2019-03-09 11:26:00,44 Cherry St, Boston,MA,02215 +164147,Bose SoundSport Headphones,1,99.99,2019-03-06 14:16:00,217 Sunset St, Portland,OR,97035 +164148,AAA Batteries (4-pack),2,2.99,2019-03-20 23:15:00,710 7th St, Boston,MA,02215 +164149,AAA Batteries (4-pack),1,2.99,2019-03-11 19:10:00,707 9th St, Boston,MA,02215 +164150,AA Batteries (4-pack),1,3.84,2019-03-30 08:49:00,456 Johnson St, Austin,TX,73301 +164151,iPhone,1,700.0,2019-03-19 19:56:00,718 South St, Atlanta,GA,30301 +164152,27in FHD Monitor,1,149.99,2019-03-20 20:34:00,438 Cedar St, New York City,NY,10001 +164153,Wired Headphones,1,11.99,2019-03-11 22:28:00,184 Pine St, New York City,NY,10001 +164154,Wired Headphones,1,11.99,2019-03-06 08:34:00,521 Lakeview St, Los Angeles,CA,90001 +164155,AA Batteries (4-pack),1,3.84,2019-03-28 12:53:00,88 Sunset St, San Francisco,CA,94016 +164156,Wired Headphones,2,11.99,2019-03-29 13:08:00,447 Lake St, Los Angeles,CA,90001 +164157,Wired Headphones,1,11.99,2019-03-29 06:44:00,965 Cedar St, Portland,ME,04101 +164158,USB-C Charging Cable,1,11.95,2019-03-17 20:07:00,860 Forest St, New York City,NY,10001 +164159,AA Batteries (4-pack),2,3.84,2019-03-21 19:55:00,747 Park St, Los Angeles,CA,90001 +164160,34in Ultrawide Monitor,1,379.99,2019-03-30 16:25:00,493 Sunset St, Los Angeles,CA,90001 +164161,AAA Batteries (4-pack),1,2.99,2019-03-05 12:27:00,193 Cherry St, San Francisco,CA,94016 +164162,27in FHD Monitor,1,149.99,2019-03-16 17:48:00,472 Cedar St, New York City,NY,10001 +164163,27in FHD Monitor,1,149.99,2019-03-22 11:03:00,249 Sunset St, Boston,MA,02215 +164164,Bose SoundSport Headphones,1,99.99,2019-03-18 11:10:00,215 Highland St, New York City,NY,10001 +164165,Vareebadd Phone,1,400.0,2019-03-15 15:54:00,720 Meadow St, San Francisco,CA,94016 +164166,Macbook Pro Laptop,1,1700.0,2019-03-26 13:49:00,899 Sunset St, San Francisco,CA,94016 +164167,USB-C Charging Cable,1,11.95,2019-03-07 20:57:00,26 14th St, San Francisco,CA,94016 +164168,AAA Batteries (4-pack),3,2.99,2019-03-31 00:07:00,398 Center St, Austin,TX,73301 +164169,USB-C Charging Cable,1,11.95,2019-03-05 21:28:00,983 Cherry St, San Francisco,CA,94016 +164170,27in 4K Gaming Monitor,1,389.99,2019-03-17 11:47:00,2 Hill St, San Francisco,CA,94016 +164171,Wired Headphones,1,11.99,2019-03-30 09:17:00,54 Hickory St, Los Angeles,CA,90001 +164172,Bose SoundSport Headphones,1,99.99,2019-03-14 14:17:00,385 Lincoln St, New York City,NY,10001 +164173,LG Dryer,1,600.0,2019-03-24 14:46:00,388 Lake St, New York City,NY,10001 +164174,iPhone,1,700.0,2019-03-27 22:16:00,483 Cherry St, Dallas,TX,75001 +164175,Lightning Charging Cable,1,14.95,2019-03-04 16:25:00,89 4th St, Austin,TX,73301 +164176,USB-C Charging Cable,1,11.95,2019-03-02 22:34:00,4 Wilson St, Seattle,WA,98101 +164177,AA Batteries (4-pack),1,3.84,2019-03-05 18:04:00,121 Chestnut St, Los Angeles,CA,90001 +164178,AA Batteries (4-pack),1,3.84,2019-03-02 11:52:00,742 2nd St, Portland,ME,04101 +164179,AA Batteries (4-pack),1,3.84,2019-03-07 19:23:00,527 Washington St, Austin,TX,73301 +164180,Lightning Charging Cable,1,14.95,2019-03-01 07:57:00,150 Hickory St, Atlanta,GA,30301 +164181,Apple Airpods Headphones,1,150.0,2019-03-23 10:28:00,319 14th St, San Francisco,CA,94016 +164182,Wired Headphones,1,11.99,2019-03-30 12:54:00,376 Meadow St, Boston,MA,02215 +164183,AA Batteries (4-pack),1,3.84,2019-03-07 14:26:00,120 Center St, San Francisco,CA,94016 +164184,20in Monitor,1,109.99,2019-03-04 19:19:00,452 5th St, Los Angeles,CA,90001 +164185,Wired Headphones,1,11.99,2019-03-15 11:26:00,168 14th St, Boston,MA,02215 +164186,iPhone,1,700.0,2019-03-15 22:25:00,297 12th St, Los Angeles,CA,90001 +164187,USB-C Charging Cable,1,11.95,2019-03-26 13:40:00,780 13th St, Seattle,WA,98101 +164188,USB-C Charging Cable,1,11.95,2019-03-02 18:16:00,947 Center St, Los Angeles,CA,90001 +164189,Lightning Charging Cable,1,14.95,2019-03-22 10:57:00,5 13th St, Austin,TX,73301 +164190,Wired Headphones,1,11.99,2019-03-28 22:57:00,225 Cedar St, Atlanta,GA,30301 +164191,Lightning Charging Cable,1,14.95,2019-03-17 18:35:00,208 Maple St, Seattle,WA,98101 +164192,ThinkPad Laptop,1,999.99,2019-03-28 20:11:00,79 Ridge St, San Francisco,CA,94016 +164193,Bose SoundSport Headphones,1,99.99,2019-03-03 12:08:00,742 Spruce St, San Francisco,CA,94016 +164194,Lightning Charging Cable,1,14.95,2019-03-05 23:11:00,443 10th St, San Francisco,CA,94016 +164195,Apple Airpods Headphones,1,150.0,2019-03-26 12:28:00,658 Sunset St, Boston,MA,02215 +164196,AAA Batteries (4-pack),1,2.99,2019-03-03 12:57:00,354 Lakeview St, San Francisco,CA,94016 +164197,USB-C Charging Cable,1,11.95,2019-03-05 13:29:00,637 Park St, San Francisco,CA,94016 +164198,34in Ultrawide Monitor,1,379.99,2019-03-15 13:12:00,156 7th St, San Francisco,CA,94016 +164199,Bose SoundSport Headphones,1,99.99,2019-03-08 21:02:00,550 Cedar St, Los Angeles,CA,90001 +164200,AA Batteries (4-pack),2,3.84,2019-03-14 22:58:00,871 Cherry St, San Francisco,CA,94016 +164201,Apple Airpods Headphones,1,150.0,2019-03-02 11:24:00,962 8th St, New York City,NY,10001 +164202,AA Batteries (4-pack),1,3.84,2019-03-11 11:00:00,755 Cedar St, Boston,MA,02215 +164203,AA Batteries (4-pack),1,3.84,2019-03-20 01:56:00,495 12th St, San Francisco,CA,94016 +164204,Apple Airpods Headphones,1,150.0,2019-03-21 13:02:00,217 9th St, Atlanta,GA,30301 +164205,27in FHD Monitor,1,149.99,2019-03-08 18:35:00,700 Pine St, Los Angeles,CA,90001 +164206,Wired Headphones,1,11.99,2019-03-03 15:54:00,971 11th St, San Francisco,CA,94016 +164207,AA Batteries (4-pack),1,3.84,2019-03-08 19:20:00,107 Hill St, San Francisco,CA,94016 +164208,AA Batteries (4-pack),1,3.84,2019-03-29 13:16:00,995 Dogwood St, Portland,ME,04101 +164209,Bose SoundSport Headphones,1,99.99,2019-03-15 07:56:00,766 Johnson St, San Francisco,CA,94016 +164210,iPhone,1,700.0,2019-03-07 16:44:00,914 Meadow St, San Francisco,CA,94016 +164211,27in FHD Monitor,1,149.99,2019-03-11 20:10:00,541 10th St, Portland,OR,97035 +164212,Bose SoundSport Headphones,1,99.99,2019-03-22 18:08:00,55 Spruce St, Portland,OR,97035 +164213,AAA Batteries (4-pack),1,2.99,2019-03-06 13:25:00,800 Maple St, Dallas,TX,75001 +164214,Lightning Charging Cable,1,14.95,2019-03-23 15:16:00,78 Washington St, Seattle,WA,98101 +164215,iPhone,1,700.0,2019-03-03 19:46:00,951 Maple St, Portland,OR,97035 +164216,AA Batteries (4-pack),1,3.84,2019-03-24 20:14:00,761 Willow St, Atlanta,GA,30301 +164217,AA Batteries (4-pack),1,3.84,2019-03-21 19:46:00,363 Wilson St, Boston,MA,02215 +164218,Wired Headphones,1,11.99,2019-03-15 10:40:00,841 2nd St, Los Angeles,CA,90001 +164219,Macbook Pro Laptop,1,1700.0,2019-03-09 11:28:00,153 6th St, Los Angeles,CA,90001 +164220,Bose SoundSport Headphones,1,99.99,2019-03-28 21:54:00,816 Center St, Seattle,WA,98101 +164221,USB-C Charging Cable,1,11.95,2019-03-10 16:54:00,71 Chestnut St, Atlanta,GA,30301 +164222,AAA Batteries (4-pack),2,2.99,2019-03-15 13:28:00,52 Elm St, Seattle,WA,98101 +164223,20in Monitor,1,109.99,2019-03-05 17:30:00,507 8th St, Atlanta,GA,30301 +164224,Wired Headphones,1,11.99,2019-03-08 20:06:00,904 1st St, Boston,MA,02215 +164225,Bose SoundSport Headphones,1,99.99,2019-03-29 16:15:00,52 Pine St, Portland,OR,97035 +164226,AAA Batteries (4-pack),1,2.99,2019-03-01 13:25:00,378 Johnson St, Atlanta,GA,30301 +164227,AA Batteries (4-pack),3,3.84,2019-03-25 23:29:00,890 Forest St, Atlanta,GA,30301 +164228,Wired Headphones,1,11.99,2019-03-05 14:53:00,808 Chestnut St, Seattle,WA,98101 +164229,Google Phone,1,600.0,2019-03-30 14:12:00,787 Lakeview St, Dallas,TX,75001 +164230,27in 4K Gaming Monitor,1,389.99,2019-03-30 10:41:00,971 8th St, Los Angeles,CA,90001 +164231,34in Ultrawide Monitor,1,379.99,2019-03-14 10:38:00,598 8th St, Los Angeles,CA,90001 +164232,Wired Headphones,1,11.99,2019-03-21 08:58:00,771 Hill St, Boston,MA,02215 +164233,Google Phone,1,600.0,2019-03-21 19:59:00,30 Lincoln St, New York City,NY,10001 +164233,USB-C Charging Cable,1,11.95,2019-03-21 19:59:00,30 Lincoln St, New York City,NY,10001 +164234,AAA Batteries (4-pack),2,2.99,2019-03-09 21:54:00,226 5th St, New York City,NY,10001 +164235,AA Batteries (4-pack),2,3.84,2019-03-23 11:01:00,329 9th St, Seattle,WA,98101 +164236,USB-C Charging Cable,1,11.95,2019-03-07 06:49:00,931 12th St, Seattle,WA,98101 +164237,AAA Batteries (4-pack),1,2.99,2019-03-16 09:51:00,905 Cherry St, Atlanta,GA,30301 +164238,USB-C Charging Cable,1,11.95,2019-03-30 20:55:00,969 Cedar St, Los Angeles,CA,90001 +164239,Lightning Charging Cable,1,14.95,2019-03-24 14:28:00,34 Park St, San Francisco,CA,94016 +164240,Apple Airpods Headphones,1,150.0,2019-03-13 18:45:00,521 5th St, Dallas,TX,75001 +164241,USB-C Charging Cable,1,11.95,2019-03-24 09:43:00,118 Park St, Boston,MA,02215 +164242,34in Ultrawide Monitor,1,379.99,2019-03-25 21:26:00,373 4th St, Portland,ME,04101 +164242,AA Batteries (4-pack),1,3.84,2019-03-25 21:26:00,373 4th St, Portland,ME,04101 +164243,Lightning Charging Cable,1,14.95,2019-03-31 22:08:00,335 10th St, Boston,MA,02215 +164244,Lightning Charging Cable,1,14.95,2019-03-04 11:47:00,427 9th St, San Francisco,CA,94016 +164245,34in Ultrawide Monitor,1,379.99,2019-03-12 13:29:00,447 Cedar St, San Francisco,CA,94016 +164246,AAA Batteries (4-pack),5,2.99,2019-03-17 15:45:00,673 Willow St, Los Angeles,CA,90001 +164247,34in Ultrawide Monitor,1,379.99,2019-03-18 18:18:00,215 14th St, San Francisco,CA,94016 +164248,27in 4K Gaming Monitor,1,389.99,2019-03-28 18:01:00,155 Lakeview St, Los Angeles,CA,90001 +164249,USB-C Charging Cable,1,11.95,2019-03-20 09:35:00,495 Jackson St, Atlanta,GA,30301 +164250,Apple Airpods Headphones,1,150.0,2019-03-31 08:56:00,109 Jackson St, Atlanta,GA,30301 +164251,USB-C Charging Cable,1,11.95,2019-03-09 15:39:00,658 13th St, Los Angeles,CA,90001 +164252,AA Batteries (4-pack),3,3.84,2019-03-11 18:51:00,745 Lakeview St, Dallas,TX,75001 +164253,Apple Airpods Headphones,1,150.0,2019-03-01 16:01:00,615 Forest St, San Francisco,CA,94016 +164254,34in Ultrawide Monitor,1,379.99,2019-03-26 08:44:00,885 South St, Seattle,WA,98101 +164255,20in Monitor,1,109.99,2019-03-25 22:33:00,44 12th St, Boston,MA,02215 +164256,34in Ultrawide Monitor,1,379.99,2019-03-25 09:46:00,325 Maple St, Los Angeles,CA,90001 +164257,USB-C Charging Cable,2,11.95,2019-03-23 21:22:00,544 Willow St, Boston,MA,02215 +164258,Wired Headphones,1,11.99,2019-03-23 14:08:00,951 Sunset St, Los Angeles,CA,90001 +164259,27in 4K Gaming Monitor,1,389.99,2019-03-25 22:54:00,384 5th St, Austin,TX,73301 +164260,AAA Batteries (4-pack),3,2.99,2019-03-21 11:31:00,749 Highland St, San Francisco,CA,94016 +164261,27in 4K Gaming Monitor,1,389.99,2019-03-13 14:30:00,797 Jefferson St, Los Angeles,CA,90001 +164262,Lightning Charging Cable,1,14.95,2019-03-08 14:05:00,331 Sunset St, Los Angeles,CA,90001 +164263,Lightning Charging Cable,1,14.95,2019-03-08 21:31:00,8 5th St, Seattle,WA,98101 +164264,27in 4K Gaming Monitor,1,389.99,2019-03-25 19:24:00,328 2nd St, San Francisco,CA,94016 +164265,Lightning Charging Cable,1,14.95,2019-03-31 00:42:00,362 Hill St, Los Angeles,CA,90001 +164265,Flatscreen TV,1,300.0,2019-03-31 00:42:00,362 Hill St, Los Angeles,CA,90001 +164266,Macbook Pro Laptop,1,1700.0,2019-03-22 22:51:00,887 Hickory St, Boston,MA,02215 +164267,Lightning Charging Cable,1,14.95,2019-03-18 06:37:00,343 River St, Los Angeles,CA,90001 +164268,34in Ultrawide Monitor,1,379.99,2019-03-19 11:23:00,656 14th St, New York City,NY,10001 +164269,Wired Headphones,1,11.99,2019-03-07 08:34:00,662 4th St, Los Angeles,CA,90001 +164270,iPhone,1,700.0,2019-03-31 15:54:00,228 River St, San Francisco,CA,94016 +164271,Google Phone,1,600.0,2019-03-19 09:47:00,350 7th St, Portland,OR,97035 +164272,LG Washing Machine,1,600.0,2019-03-20 12:51:00,707 11th St, San Francisco,CA,94016 +164273,iPhone,1,700.0,2019-03-15 10:57:00,915 Highland St, San Francisco,CA,94016 +164273,Lightning Charging Cable,1,14.95,2019-03-15 10:57:00,915 Highland St, San Francisco,CA,94016 +164274,Wired Headphones,1,11.99,2019-03-25 20:29:00,597 4th St, Los Angeles,CA,90001 +164275,AA Batteries (4-pack),2,3.84,2019-03-29 22:51:00,580 7th St, Los Angeles,CA,90001 +164276,27in FHD Monitor,1,149.99,2019-03-31 23:13:00,961 Spruce St, Austin,TX,73301 +164277,AAA Batteries (4-pack),1,2.99,2019-03-22 19:36:00,410 Hickory St, San Francisco,CA,94016 +164278,34in Ultrawide Monitor,1,379.99,2019-03-14 08:31:00,26 Hickory St, Boston,MA,02215 +164279,USB-C Charging Cable,1,11.95,2019-03-12 11:09:00,709 12th St, Dallas,TX,75001 +164280,34in Ultrawide Monitor,1,379.99,2019-03-01 23:46:00,476 Park St, Los Angeles,CA,90001 +164281,Wired Headphones,1,11.99,2019-03-05 11:28:00,700 4th St, Portland,OR,97035 +164282,Lightning Charging Cable,2,14.95,2019-03-31 13:27:00,223 West St, San Francisco,CA,94016 +164283,AA Batteries (4-pack),1,3.84,2019-03-15 14:17:00,118 Elm St, Atlanta,GA,30301 +164284,27in FHD Monitor,1,149.99,2019-03-21 11:16:00,963 Spruce St, New York City,NY,10001 +164285,20in Monitor,1,109.99,2019-03-24 18:56:00,132 Lincoln St, Portland,ME,04101 +164286,USB-C Charging Cable,1,11.95,2019-03-18 22:55:00,199 Jackson St, San Francisco,CA,94016 +164287,34in Ultrawide Monitor,1,379.99,2019-03-23 16:29:00,706 Church St, Dallas,TX,75001 +164288,AAA Batteries (4-pack),1,2.99,2019-03-19 17:47:00,196 Chestnut St, New York City,NY,10001 +164289,USB-C Charging Cable,1,11.95,2019-03-19 11:33:00,168 4th St, Austin,TX,73301 +164290,Bose SoundSport Headphones,1,99.99,2019-03-29 05:38:00,878 Johnson St, Los Angeles,CA,90001 +164291,USB-C Charging Cable,1,11.95,2019-03-06 12:18:00,294 South St, Portland,OR,97035 +164292,Apple Airpods Headphones,1,150.0,2019-03-28 21:34:00,209 6th St, New York City,NY,10001 +164293,20in Monitor,1,109.99,2019-03-28 07:58:00,397 Jackson St, Los Angeles,CA,90001 +164294,Lightning Charging Cable,1,14.95,2019-03-18 20:31:00,928 Park St, San Francisco,CA,94016 +164295,AA Batteries (4-pack),2,3.84,2019-03-07 18:36:00,838 Hickory St, Portland,OR,97035 +164296,Wired Headphones,1,11.99,2019-03-25 20:40:00,923 Main St, San Francisco,CA,94016 +164297,Google Phone,1,600.0,2019-03-03 18:23:00,699 Forest St, Austin,TX,73301 +164298,ThinkPad Laptop,1,999.99,2019-03-05 19:46:00,693 Pine St, Los Angeles,CA,90001 +164299,Apple Airpods Headphones,1,150.0,2019-03-18 03:43:00,720 Main St, Seattle,WA,98101 +164300,AA Batteries (4-pack),1,3.84,2019-03-28 16:52:00,386 Ridge St, San Francisco,CA,94016 +164301,Wired Headphones,1,11.99,2019-03-22 08:48:00,624 8th St, San Francisco,CA,94016 +164302,Lightning Charging Cable,1,14.95,2019-03-26 20:41:00,722 2nd St, Portland,OR,97035 +164303,Lightning Charging Cable,1,14.95,2019-03-25 15:09:00,216 North St, Los Angeles,CA,90001 +164304,AA Batteries (4-pack),1,3.84,2019-03-06 17:47:00,495 6th St, San Francisco,CA,94016 +164305,Apple Airpods Headphones,1,150.0,2019-03-16 11:06:00,435 Cedar St, Atlanta,GA,30301 +164306,Apple Airpods Headphones,1,150.0,2019-03-01 17:02:00,827 Chestnut St, Boston,MA,02215 +164307,Apple Airpods Headphones,1,150.0,2019-03-15 12:12:00,762 Johnson St, Los Angeles,CA,90001 +164308,Bose SoundSport Headphones,1,99.99,2019-03-21 17:43:00,719 North St, San Francisco,CA,94016 +164309,Wired Headphones,1,11.99,2019-03-06 17:27:00,239 10th St, New York City,NY,10001 +164309,AAA Batteries (4-pack),3,2.99,2019-03-06 17:27:00,239 10th St, New York City,NY,10001 +164310,AAA Batteries (4-pack),1,2.99,2019-03-01 17:29:00,158 13th St, Austin,TX,73301 +164311,AA Batteries (4-pack),1,3.84,2019-03-19 18:35:00,504 Highland St, San Francisco,CA,94016 +164312,Apple Airpods Headphones,1,150.0,2019-03-13 18:34:00,111 Walnut St, San Francisco,CA,94016 +164313,AAA Batteries (4-pack),1,2.99,2019-03-26 09:24:00,998 Lincoln St, Los Angeles,CA,90001 +164314,Bose SoundSport Headphones,1,99.99,2019-03-24 19:26:00,799 2nd St, San Francisco,CA,94016 +164315,27in 4K Gaming Monitor,1,389.99,2019-03-19 19:53:00,929 Meadow St, New York City,NY,10001 +164316,Wired Headphones,1,11.99,2019-03-02 17:28:00,385 Johnson St, Portland,OR,97035 +164317,USB-C Charging Cable,1,11.95,2019-03-02 13:47:00,234 Jefferson St, Dallas,TX,75001 +164318,Wired Headphones,1,11.99,2019-03-22 21:38:00,888 Ridge St, Dallas,TX,75001 +164319,Apple Airpods Headphones,1,150.0,2019-03-06 13:53:00,479 Lake St, Atlanta,GA,30301 +164320,Bose SoundSport Headphones,1,99.99,2019-03-23 14:24:00,598 Hill St, Los Angeles,CA,90001 +164321,Google Phone,1,600.0,2019-03-24 07:36:00,492 Johnson St, San Francisco,CA,94016 +164322,AAA Batteries (4-pack),1,2.99,2019-03-02 16:33:00,42 Adams St, San Francisco,CA,94016 +164323,USB-C Charging Cable,1,11.95,2019-03-15 21:08:00,14 Lincoln St, Dallas,TX,75001 +164324,AAA Batteries (4-pack),2,2.99,2019-03-28 20:03:00,196 2nd St, San Francisco,CA,94016 +164325,27in 4K Gaming Monitor,1,389.99,2019-03-17 18:40:00,561 Ridge St, Seattle,WA,98101 +164326,Bose SoundSport Headphones,1,99.99,2019-03-19 12:52:00,220 Elm St, New York City,NY,10001 +164327,AA Batteries (4-pack),1,3.84,2019-03-10 14:27:00,715 14th St, Portland,OR,97035 +164328,Lightning Charging Cable,1,14.95,2019-03-23 15:05:00,572 7th St, San Francisco,CA,94016 +164329,LG Washing Machine,1,600.0,2019-03-17 16:20:00,387 Ridge St, Boston,MA,02215 +164330,AA Batteries (4-pack),2,3.84,2019-03-20 18:37:00,353 South St, Los Angeles,CA,90001 +164331,Apple Airpods Headphones,1,150.0,2019-03-27 17:42:00,496 7th St, San Francisco,CA,94016 +164331,20in Monitor,1,109.99,2019-03-27 17:42:00,496 7th St, San Francisco,CA,94016 +164332,AA Batteries (4-pack),2,3.84,2019-03-20 16:51:00,742 Cherry St, Dallas,TX,75001 +164333,27in FHD Monitor,1,149.99,2019-03-31 10:01:00,203 11th St, San Francisco,CA,94016 +164334,34in Ultrawide Monitor,1,379.99,2019-03-18 10:27:00,468 Chestnut St, San Francisco,CA,94016 +164335,Apple Airpods Headphones,1,150.0,2019-03-21 11:56:00,654 4th St, Los Angeles,CA,90001 +164336,ThinkPad Laptop,1,999.99,2019-03-22 14:23:00,233 2nd St, San Francisco,CA,94016 +164337,iPhone,1,700.0,2019-03-08 09:26:00,460 Willow St, San Francisco,CA,94016 +164337,Lightning Charging Cable,1,14.95,2019-03-08 09:26:00,460 Willow St, San Francisco,CA,94016 +164338,AA Batteries (4-pack),2,3.84,2019-03-03 11:54:00,541 Sunset St, Austin,TX,73301 +164339,Google Phone,1,600.0,2019-03-08 13:28:00,914 5th St, San Francisco,CA,94016 +164340,Apple Airpods Headphones,1,150.0,2019-03-28 21:21:00,545 Center St, Boston,MA,02215 +164341,AA Batteries (4-pack),3,3.84,2019-03-19 10:52:00,864 Pine St, New York City,NY,10001 +164342,Wired Headphones,1,11.99,2019-03-07 08:17:00,988 Jefferson St, Boston,MA,02215 +164343,Bose SoundSport Headphones,1,99.99,2019-03-05 18:04:00,92 Lincoln St, New York City,NY,10001 +164344,27in FHD Monitor,1,149.99,2019-03-13 17:36:00,11 Lincoln St, San Francisco,CA,94016 +164345,Flatscreen TV,1,300.0,2019-03-13 18:49:00,698 Pine St, Boston,MA,02215 +164346,27in FHD Monitor,1,149.99,2019-03-25 11:21:00,865 Center St, San Francisco,CA,94016 +164347,Bose SoundSport Headphones,1,99.99,2019-03-02 19:06:00,175 Maple St, New York City,NY,10001 +164348,iPhone,1,700.0,2019-03-02 09:27:00,570 Johnson St, Dallas,TX,75001 +164348,Wired Headphones,1,11.99,2019-03-02 09:27:00,570 Johnson St, Dallas,TX,75001 +164349,USB-C Charging Cable,1,11.95,2019-03-14 18:54:00,943 West St, Los Angeles,CA,90001 +164350,Lightning Charging Cable,1,14.95,2019-03-24 10:26:00,334 Willow St, Dallas,TX,75001 +164351,iPhone,1,700.0,2019-03-14 14:55:00,32 Dogwood St, San Francisco,CA,94016 +164351,Lightning Charging Cable,1,14.95,2019-03-14 14:55:00,32 Dogwood St, San Francisco,CA,94016 +164351,Wired Headphones,1,11.99,2019-03-14 14:55:00,32 Dogwood St, San Francisco,CA,94016 +164352,Bose SoundSport Headphones,1,99.99,2019-03-23 12:00:00,524 Main St, Dallas,TX,75001 +164353,Apple Airpods Headphones,1,150.0,2019-03-10 14:31:00,736 Madison St, Atlanta,GA,30301 +164354,USB-C Charging Cable,1,11.95,2019-03-11 00:02:00,657 North St, Los Angeles,CA,90001 +164355,Lightning Charging Cable,1,14.95,2019-03-15 22:20:00,694 Hill St, New York City,NY,10001 +164356,ThinkPad Laptop,1,999.99,2019-03-05 11:41:00,352 Meadow St, New York City,NY,10001 +164357,USB-C Charging Cable,1,11.95,2019-03-23 19:14:00,188 Forest St, San Francisco,CA,94016 +164358,Lightning Charging Cable,1,14.95,2019-03-25 13:34:00,379 Madison St, Boston,MA,02215 +164359,Apple Airpods Headphones,1,150.0,2019-03-10 16:50:00,140 Wilson St, Atlanta,GA,30301 +164360,Wired Headphones,2,11.99,2019-03-09 12:56:00,880 6th St, San Francisco,CA,94016 +164361,iPhone,1,700.0,2019-03-11 00:13:00,670 South St, Seattle,WA,98101 +164361,Wired Headphones,1,11.99,2019-03-11 00:13:00,670 South St, Seattle,WA,98101 +164362,Wired Headphones,1,11.99,2019-03-24 14:32:00,132 Adams St, Boston,MA,02215 +164363,Lightning Charging Cable,1,14.95,2019-03-22 22:57:00,449 River St, Boston,MA,02215 +164363,Bose SoundSport Headphones,1,99.99,2019-03-22 22:57:00,449 River St, Boston,MA,02215 +164364,Lightning Charging Cable,1,14.95,2019-03-29 21:53:00,608 Cedar St, Los Angeles,CA,90001 +164365,34in Ultrawide Monitor,1,379.99,2019-03-13 00:54:00,687 7th St, Los Angeles,CA,90001 +164366,27in FHD Monitor,1,149.99,2019-03-30 18:30:00,806 Center St, Atlanta,GA,30301 +164367,20in Monitor,1,109.99,2019-03-16 14:08:00,950 7th St, Los Angeles,CA,90001 +164368,AA Batteries (4-pack),1,3.84,2019-03-16 20:05:00,966 West St, Los Angeles,CA,90001 +164369,34in Ultrawide Monitor,1,379.99,2019-03-10 20:40:00,182 Adams St, San Francisco,CA,94016 +164370,ThinkPad Laptop,1,999.99,2019-03-05 08:15:00,403 Johnson St, Los Angeles,CA,90001 +164371,AA Batteries (4-pack),2,3.84,2019-03-24 21:33:00,157 11th St, Boston,MA,02215 +164372,Bose SoundSport Headphones,1,99.99,2019-03-28 13:09:00,605 Spruce St, New York City,NY,10001 +164373,USB-C Charging Cable,1,11.95,2019-03-18 19:11:00,445 7th St, Los Angeles,CA,90001 +164374,AAA Batteries (4-pack),2,2.99,2019-03-29 11:28:00,772 Pine St, New York City,NY,10001 +164375,Apple Airpods Headphones,1,150.0,2019-03-28 14:26:00,563 River St, San Francisco,CA,94016 +164376,Lightning Charging Cable,1,14.95,2019-03-19 07:25:00,373 North St, Seattle,WA,98101 +164377,USB-C Charging Cable,1,11.95,2019-03-19 20:35:00,49 South St, Dallas,TX,75001 +164378,Macbook Pro Laptop,1,1700.0,2019-03-03 14:13:00,80 Maple St, Portland,OR,97035 +164379,Lightning Charging Cable,1,14.95,2019-03-10 21:48:00,857 Hill St, Boston,MA,02215 +164380,Flatscreen TV,1,300.0,2019-03-31 13:10:00,947 Church St, San Francisco,CA,94016 +164381,USB-C Charging Cable,1,11.95,2019-03-09 14:05:00,702 6th St, San Francisco,CA,94016 +164382,Wired Headphones,1,11.99,2019-03-29 18:45:00,976 10th St, Boston,MA,02215 +164383,USB-C Charging Cable,1,11.95,2019-03-15 20:54:00,734 4th St, Boston,MA,02215 +164384,Macbook Pro Laptop,1,1700.0,2019-03-18 18:18:00,734 8th St, Los Angeles,CA,90001 +164385,27in 4K Gaming Monitor,1,389.99,2019-03-05 22:57:00,605 Wilson St, Dallas,TX,75001 +164386,USB-C Charging Cable,1,11.95,2019-03-29 21:12:00,518 Adams St, Los Angeles,CA,90001 +164387,AAA Batteries (4-pack),1,2.99,2019-03-08 14:47:00,251 2nd St, New York City,NY,10001 +164388,Bose SoundSport Headphones,1,99.99,2019-03-17 20:39:00,348 2nd St, Boston,MA,02215 +164389,AA Batteries (4-pack),1,3.84,2019-03-31 13:24:00,411 6th St, Dallas,TX,75001 +164390,AA Batteries (4-pack),1,3.84,2019-03-15 13:57:00,13 Madison St, New York City,NY,10001 +164391,iPhone,1,700.0,2019-03-28 21:06:00,675 Pine St, Dallas,TX,75001 +164392,USB-C Charging Cable,1,11.95,2019-03-13 22:05:00,295 Madison St, Boston,MA,02215 +164393,Apple Airpods Headphones,1,150.0,2019-03-25 09:33:00,912 Maple St, Atlanta,GA,30301 +164394,Bose SoundSport Headphones,1,99.99,2019-03-08 09:08:00,647 12th St, San Francisco,CA,94016 +164395,Bose SoundSport Headphones,1,99.99,2019-03-09 21:30:00,351 Meadow St, San Francisco,CA,94016 +164396,Wired Headphones,1,11.99,2019-03-15 23:16:00,617 Lakeview St, Dallas,TX,75001 +164397,Google Phone,1,600.0,2019-03-03 19:56:00,170 Church St, Los Angeles,CA,90001 +164398,Macbook Pro Laptop,1,1700.0,2019-03-07 19:07:00,791 North St, San Francisco,CA,94016 +164399,AA Batteries (4-pack),2,3.84,2019-03-21 22:09:00,585 Walnut St, Seattle,WA,98101 +164400,Bose SoundSport Headphones,1,99.99,2019-03-31 05:53:00,43 Chestnut St, New York City,NY,10001 +164401,iPhone,1,700.0,2019-03-01 14:04:00,69 13th St, Los Angeles,CA,90001 +164402,AA Batteries (4-pack),1,3.84,2019-03-19 00:34:00,435 Madison St, Atlanta,GA,30301 +164403,Wired Headphones,1,11.99,2019-03-09 19:04:00,438 12th St, Boston,MA,02215 +164404,AA Batteries (4-pack),1,3.84,2019-03-29 16:14:00,771 12th St, San Francisco,CA,94016 +164405,AAA Batteries (4-pack),1,2.99,2019-03-11 19:19:00,837 Lake St, Los Angeles,CA,90001 +164406,AA Batteries (4-pack),1,3.84,2019-03-24 19:32:00,882 12th St, Dallas,TX,75001 +164407,27in FHD Monitor,1,149.99,2019-03-09 13:42:00,850 Jefferson St, New York City,NY,10001 +164408,AAA Batteries (4-pack),1,2.99,2019-03-02 11:56:00,965 Willow St, Atlanta,GA,30301 +164409,Google Phone,1,600.0,2019-03-26 19:43:00,841 River St, Los Angeles,CA,90001 +164410,iPhone,1,700.0,2019-03-08 17:00:00,623 7th St, San Francisco,CA,94016 +164411,iPhone,1,700.0,2019-03-14 18:41:00,907 Jackson St, San Francisco,CA,94016 +164412,Apple Airpods Headphones,1,150.0,2019-03-01 17:48:00,758 2nd St, Los Angeles,CA,90001 +164413,AA Batteries (4-pack),1,3.84,2019-03-29 21:07:00,994 South St, Portland,OR,97035 +164414,USB-C Charging Cable,1,11.95,2019-03-06 14:03:00,194 Lakeview St, Los Angeles,CA,90001 +164415,USB-C Charging Cable,1,11.95,2019-03-28 19:48:00,200 8th St, New York City,NY,10001 +164416,USB-C Charging Cable,1,11.95,2019-03-04 03:21:00,777 West St, Seattle,WA,98101 +164417,USB-C Charging Cable,1,11.95,2019-03-07 01:25:00,634 4th St, Boston,MA,02215 +164418,34in Ultrawide Monitor,1,379.99,2019-03-26 10:23:00,336 Dogwood St, Atlanta,GA,30301 +164419,AA Batteries (4-pack),1,3.84,2019-03-31 00:24:00,316 Johnson St, San Francisco,CA,94016 +164420,Bose SoundSport Headphones,1,99.99,2019-03-14 12:01:00,251 Walnut St, Los Angeles,CA,90001 +164421,27in FHD Monitor,1,149.99,2019-03-28 12:04:00,726 7th St, Portland,OR,97035 +164422,AA Batteries (4-pack),1,3.84,2019-03-10 14:43:00,55 10th St, Atlanta,GA,30301 +164423,27in 4K Gaming Monitor,1,389.99,2019-03-15 20:33:00,496 South St, New York City,NY,10001 +164424,27in FHD Monitor,1,149.99,2019-03-02 10:44:00,903 10th St, Los Angeles,CA,90001 +164425,Lightning Charging Cable,1,14.95,2019-03-09 17:42:00,917 Lincoln St, New York City,NY,10001 +164426,Wired Headphones,1,11.99,2019-03-27 08:02:00,879 Madison St, San Francisco,CA,94016 +164427,ThinkPad Laptop,1,999.99,2019-03-08 19:04:00,587 Main St, San Francisco,CA,94016 +164428,ThinkPad Laptop,1,999.99,2019-03-21 13:47:00,314 Park St, New York City,NY,10001 +164429,AAA Batteries (4-pack),1,2.99,2019-03-27 13:43:00,619 Ridge St, Boston,MA,02215 +164430,Bose SoundSport Headphones,1,99.99,2019-03-14 06:39:00,629 Madison St, San Francisco,CA,94016 +164431,USB-C Charging Cable,2,11.95,2019-03-08 00:02:00,534 Jefferson St, Portland,ME,04101 +164432,AA Batteries (4-pack),1,3.84,2019-03-18 09:50:00,125 Lake St, Atlanta,GA,30301 +164433,USB-C Charging Cable,1,11.95,2019-03-19 19:01:00,571 1st St, San Francisco,CA,94016 +164434,AAA Batteries (4-pack),1,2.99,2019-03-21 11:47:00,888 Pine St, Los Angeles,CA,90001 +164435,Apple Airpods Headphones,1,150.0,2019-03-24 12:37:00,112 Adams St, Atlanta,GA,30301 +164436,Macbook Pro Laptop,1,1700.0,2019-03-12 09:51:00,503 Walnut St, Atlanta,GA,30301 +164437,27in FHD Monitor,1,149.99,2019-03-02 21:00:00,826 14th St, San Francisco,CA,94016 +164438,AA Batteries (4-pack),2,3.84,2019-03-29 11:08:00,834 Park St, Dallas,TX,75001 +164439,USB-C Charging Cable,1,11.95,2019-03-23 20:49:00,994 North St, Los Angeles,CA,90001 +164440,Lightning Charging Cable,1,14.95,2019-03-09 20:37:00,901 Johnson St, San Francisco,CA,94016 +164441,iPhone,1,700.0,2019-03-19 19:54:00,990 Willow St, New York City,NY,10001 +164441,Lightning Charging Cable,1,14.95,2019-03-19 19:54:00,990 Willow St, New York City,NY,10001 +164442,AA Batteries (4-pack),1,3.84,2019-03-27 10:32:00,674 Cherry St, Atlanta,GA,30301 +164443,USB-C Charging Cable,1,11.95,2019-03-27 19:08:00,624 Park St, Los Angeles,CA,90001 +164444,USB-C Charging Cable,1,11.95,2019-03-22 11:59:00,640 Pine St, Dallas,TX,75001 +164445,AAA Batteries (4-pack),2,2.99,2019-03-26 07:33:00,838 6th St, San Francisco,CA,94016 +164446,Wired Headphones,1,11.99,2019-03-01 09:51:00,27 Church St, San Francisco,CA,94016 +164447,USB-C Charging Cable,1,11.95,2019-03-08 20:47:00,182 Pine St, Seattle,WA,98101 +164448,34in Ultrawide Monitor,1,379.99,2019-03-04 20:43:00,555 5th St, Seattle,WA,98101 +164449,USB-C Charging Cable,1,11.95,2019-03-13 22:16:00,305 Walnut St, New York City,NY,10001 +164450,USB-C Charging Cable,1,11.95,2019-03-11 07:45:00,332 Walnut St, New York City,NY,10001 +164451,Apple Airpods Headphones,1,150.0,2019-03-09 01:40:00,210 6th St, San Francisco,CA,94016 +164452,USB-C Charging Cable,1,11.95,2019-03-20 00:48:00,143 Jackson St, San Francisco,CA,94016 +164453,USB-C Charging Cable,1,11.95,2019-03-01 20:03:00,183 7th St, Los Angeles,CA,90001 +164454,Google Phone,1,600.0,2019-03-23 07:11:00,42 11th St, Atlanta,GA,30301 +164454,Bose SoundSport Headphones,1,99.99,2019-03-23 07:11:00,42 11th St, Atlanta,GA,30301 +164455,Lightning Charging Cable,1,14.95,2019-03-09 08:49:00,890 Highland St, Los Angeles,CA,90001 +164456,27in FHD Monitor,1,149.99,2019-03-17 19:37:00,677 Hickory St, New York City,NY,10001 +164457,Wired Headphones,1,11.99,2019-03-27 21:24:00,835 West St, New York City,NY,10001 +164458,Lightning Charging Cable,1,14.95,2019-03-01 10:16:00,598 4th St, New York City,NY,10001 +164459,AAA Batteries (4-pack),1,2.99,2019-03-29 16:00:00,520 Adams St, San Francisco,CA,94016 +164460,Wired Headphones,1,11.99,2019-03-15 10:11:00,553 13th St, Seattle,WA,98101 +164461,AAA Batteries (4-pack),1,2.99,2019-03-10 21:27:00,932 14th St, San Francisco,CA,94016 +164462,Bose SoundSport Headphones,1,99.99,2019-03-04 08:27:00,520 Sunset St, Portland,OR,97035 +164463,USB-C Charging Cable,2,11.95,2019-03-07 21:39:00,657 8th St, New York City,NY,10001 +164464,Lightning Charging Cable,1,14.95,2019-03-13 10:42:00,787 Dogwood St, San Francisco,CA,94016 +164465,USB-C Charging Cable,1,11.95,2019-03-05 16:48:00,628 Lakeview St, San Francisco,CA,94016 +164466,AA Batteries (4-pack),1,3.84,2019-03-09 17:42:00,799 Elm St, Atlanta,GA,30301 +164467,Lightning Charging Cable,1,14.95,2019-03-31 14:08:00,149 Cedar St, Los Angeles,CA,90001 +164468,Google Phone,1,600.0,2019-03-06 19:06:00,572 4th St, Los Angeles,CA,90001 +164468,Wired Headphones,1,11.99,2019-03-06 19:06:00,572 4th St, Los Angeles,CA,90001 +164469,Wired Headphones,1,11.99,2019-03-29 18:32:00,412 9th St, Dallas,TX,75001 +164470,AA Batteries (4-pack),2,3.84,2019-03-12 15:48:00,19 2nd St, Boston,MA,02215 +164471,USB-C Charging Cable,1,11.95,2019-03-07 21:26:00,691 Washington St, San Francisco,CA,94016 +164472,34in Ultrawide Monitor,1,379.99,2019-03-27 21:07:00,618 River St, Seattle,WA,98101 +164473,AAA Batteries (4-pack),2,2.99,2019-03-14 20:08:00,708 Sunset St, Los Angeles,CA,90001 +164474,Apple Airpods Headphones,1,150.0,2019-03-25 21:32:00,727 River St, Dallas,TX,75001 +164475,Bose SoundSport Headphones,1,99.99,2019-03-23 21:59:00,627 12th St, San Francisco,CA,94016 +164476,27in 4K Gaming Monitor,1,389.99,2019-03-12 09:07:00,680 Madison St, Dallas,TX,75001 +164477,AAA Batteries (4-pack),1,2.99,2019-03-11 22:10:00,452 Chestnut St, Portland,OR,97035 +164477,Wired Headphones,1,11.99,2019-03-11 22:10:00,452 Chestnut St, Portland,OR,97035 +164478,Apple Airpods Headphones,1,150.0,2019-03-23 13:45:00,284 Washington St, Atlanta,GA,30301 +164479,LG Washing Machine,1,600.0,2019-03-10 10:26:00,855 13th St, San Francisco,CA,94016 +164480,Lightning Charging Cable,1,14.95,2019-03-29 18:28:00,593 Ridge St, Austin,TX,73301 +164481,AAA Batteries (4-pack),1,2.99,2019-03-01 14:36:00,547 Center St, Boston,MA,02215 +164482,Apple Airpods Headphones,1,150.0,2019-03-22 16:53:00,564 6th St, Austin,TX,73301 +164483,AA Batteries (4-pack),1,3.84,2019-03-05 21:59:00,524 Walnut St, Los Angeles,CA,90001 +164484,Google Phone,1,600.0,2019-03-31 16:10:00,214 14th St, Los Angeles,CA,90001 +164484,USB-C Charging Cable,1,11.95,2019-03-31 16:10:00,214 14th St, Los Angeles,CA,90001 +164485,AA Batteries (4-pack),2,3.84,2019-03-17 13:57:00,770 Main St, Austin,TX,73301 +164486,Bose SoundSport Headphones,1,99.99,2019-03-04 21:03:00,753 Johnson St, Atlanta,GA,30301 +164487,AA Batteries (4-pack),1,3.84,2019-03-14 20:43:00,320 Chestnut St, New York City,NY,10001 +164488,34in Ultrawide Monitor,1,379.99,2019-03-26 20:35:00,460 Hill St, Seattle,WA,98101 +164489,Flatscreen TV,1,300.0,2019-03-14 15:08:00,655 Cherry St, San Francisco,CA,94016 +164490,Bose SoundSport Headphones,1,99.99,2019-03-17 18:35:00,835 14th St, Los Angeles,CA,90001 +164491,ThinkPad Laptop,1,999.99,2019-03-04 11:45:00,147 Highland St, Boston,MA,02215 +164492,AA Batteries (4-pack),2,3.84,2019-03-24 14:51:00,974 Jefferson St, San Francisco,CA,94016 +164493,Bose SoundSport Headphones,1,99.99,2019-03-25 18:33:00,986 Forest St, New York City,NY,10001 +164494,AA Batteries (4-pack),1,3.84,2019-03-30 16:46:00,612 11th St, San Francisco,CA,94016 +164495,Lightning Charging Cable,1,14.95,2019-03-23 15:10:00,606 Hill St, Seattle,WA,98101 +164496,Wired Headphones,1,11.99,2019-03-10 07:30:00,99 Main St, Portland,ME,04101 +164497,34in Ultrawide Monitor,1,379.99,2019-03-29 10:11:00,82 Hickory St, Atlanta,GA,30301 +164498,Lightning Charging Cable,1,14.95,2019-03-26 12:53:00,642 Park St, San Francisco,CA,94016 +164499,Google Phone,1,600.0,2019-03-09 22:42:00,900 Hickory St, Boston,MA,02215 +164500,AA Batteries (4-pack),1,3.84,2019-03-06 21:44:00,557 8th St, Los Angeles,CA,90001 +164501,20in Monitor,1,109.99,2019-03-22 14:28:00,263 2nd St, Los Angeles,CA,90001 +164502,Apple Airpods Headphones,1,150.0,2019-03-30 19:48:00,791 Park St, San Francisco,CA,94016 +164503,Lightning Charging Cable,1,14.95,2019-03-06 20:02:00,664 North St, San Francisco,CA,94016 +164504,Bose SoundSport Headphones,1,99.99,2019-03-21 03:10:00,302 Cedar St, Los Angeles,CA,90001 +164505,20in Monitor,1,109.99,2019-03-19 12:53:00,257 Maple St, Dallas,TX,75001 +164506,Bose SoundSport Headphones,1,99.99,2019-03-09 11:54:00,128 Sunset St, Boston,MA,02215 +164507,USB-C Charging Cable,1,11.95,2019-03-09 17:16:00,357 Adams St, Atlanta,GA,30301 +164508,27in 4K Gaming Monitor,1,389.99,2019-03-23 09:18:00,352 Center St, San Francisco,CA,94016 +164509,27in 4K Gaming Monitor,1,389.99,2019-03-22 10:08:00,467 11th St, Austin,TX,73301 +164510,AA Batteries (4-pack),1,3.84,2019-03-12 13:04:00,128 Hill St, San Francisco,CA,94016 +164511,Lightning Charging Cable,2,14.95,2019-03-07 11:46:00,972 River St, San Francisco,CA,94016 +164512,27in FHD Monitor,1,149.99,2019-03-14 16:30:00,783 Hickory St, New York City,NY,10001 +164513,AAA Batteries (4-pack),1,2.99,2019-03-03 16:51:00,930 Maple St, Los Angeles,CA,90001 +164514,27in FHD Monitor,1,149.99,2019-03-16 09:55:00,854 12th St, New York City,NY,10001 +164515,Macbook Pro Laptop,1,1700.0,2019-03-02 17:07:00,995 West St, San Francisco,CA,94016 +164516,Apple Airpods Headphones,1,150.0,2019-03-16 18:06:00,250 River St, Dallas,TX,75001 +164517,AAA Batteries (4-pack),1,2.99,2019-03-15 18:12:00,522 13th St, Austin,TX,73301 +164518,AAA Batteries (4-pack),2,2.99,2019-03-15 20:10:00,670 Adams St, San Francisco,CA,94016 +164519,Macbook Pro Laptop,1,1700.0,2019-03-07 12:44:00,247 1st St, San Francisco,CA,94016 +164520,Bose SoundSport Headphones,1,99.99,2019-03-13 12:47:00,890 10th St, Los Angeles,CA,90001 +164521,Bose SoundSport Headphones,1,99.99,2019-03-04 11:25:00,565 Main St, San Francisco,CA,94016 +164521,Flatscreen TV,1,300.0,2019-03-04 11:25:00,565 Main St, San Francisco,CA,94016 +164522,20in Monitor,1,109.99,2019-03-29 23:20:00,201 Lincoln St, Los Angeles,CA,90001 +164523,Apple Airpods Headphones,1,150.0,2019-03-16 11:42:00,395 11th St, Los Angeles,CA,90001 +164524,34in Ultrawide Monitor,1,379.99,2019-03-15 12:32:00,462 West St, Boston,MA,02215 +164525,USB-C Charging Cable,1,11.95,2019-03-28 18:57:00,493 Highland St, San Francisco,CA,94016 +164526,Lightning Charging Cable,1,14.95,2019-03-30 21:08:00,349 10th St, Seattle,WA,98101 +164527,USB-C Charging Cable,1,11.95,2019-03-13 05:28:00,257 Madison St, Dallas,TX,75001 +164528,Vareebadd Phone,1,400.0,2019-03-16 06:52:00,723 7th St, Los Angeles,CA,90001 +164529,Lightning Charging Cable,1,14.95,2019-03-30 20:21:00,923 Willow St, New York City,NY,10001 +164530,Bose SoundSport Headphones,1,99.99,2019-03-01 20:32:00,406 Pine St, San Francisco,CA,94016 +164531,AAA Batteries (4-pack),2,2.99,2019-03-06 22:24:00,426 12th St, San Francisco,CA,94016 +164532,Flatscreen TV,1,300.0,2019-03-10 21:47:00,929 Cedar St, Atlanta,GA,30301 +164533,AAA Batteries (4-pack),1,2.99,2019-03-03 12:42:00,369 Church St, Portland,OR,97035 +164534,USB-C Charging Cable,1,11.95,2019-03-18 18:40:00,625 Ridge St, Los Angeles,CA,90001 +164535,AA Batteries (4-pack),1,3.84,2019-03-30 10:21:00,801 Lincoln St, Dallas,TX,75001 +164536,AAA Batteries (4-pack),3,2.99,2019-03-27 09:38:00,913 Ridge St, Boston,MA,02215 +164537,27in 4K Gaming Monitor,1,389.99,2019-03-04 10:06:00,550 Adams St, San Francisco,CA,94016 +164538,USB-C Charging Cable,1,11.95,2019-03-27 14:21:00,425 Adams St, Atlanta,GA,30301 +164539,iPhone,1,700.0,2019-03-01 13:21:00,74 Elm St, San Francisco,CA,94016 +164540,27in 4K Gaming Monitor,1,389.99,2019-03-30 15:16:00,556 Spruce St, Boston,MA,02215 +164541,Google Phone,1,600.0,2019-03-11 20:22:00,987 7th St, Atlanta,GA,30301 +164541,USB-C Charging Cable,2,11.95,2019-03-11 20:22:00,987 7th St, Atlanta,GA,30301 +164542,27in 4K Gaming Monitor,1,389.99,2019-03-15 12:33:00,965 River St, Boston,MA,02215 +164543,27in 4K Gaming Monitor,1,389.99,2019-03-31 13:34:00,776 7th St, New York City,NY,10001 +164544,AA Batteries (4-pack),1,3.84,2019-03-25 16:08:00,596 Madison St, Boston,MA,02215 +164545,AAA Batteries (4-pack),1,2.99,2019-03-12 22:20:00,629 7th St, Boston,MA,02215 +164546,27in 4K Gaming Monitor,1,389.99,2019-03-17 21:58:00,268 11th St, San Francisco,CA,94016 +164547,AA Batteries (4-pack),2,3.84,2019-03-13 08:41:00,536 7th St, Portland,ME,04101 +164548,AA Batteries (4-pack),1,3.84,2019-03-23 09:02:00,503 Cherry St, Los Angeles,CA,90001 +164549,27in 4K Gaming Monitor,1,389.99,2019-03-19 14:25:00,237 Elm St, San Francisco,CA,94016 +164550,AAA Batteries (4-pack),2,2.99,2019-03-15 17:22:00,577 North St, Portland,OR,97035 +164551,Bose SoundSport Headphones,1,99.99,2019-03-20 22:13:00,547 Center St, San Francisco,CA,94016 +164552,27in FHD Monitor,1,149.99,2019-03-12 01:37:00,756 Lincoln St, Portland,ME,04101 +164553,AA Batteries (4-pack),1,3.84,2019-03-06 11:35:00,523 Washington St, Los Angeles,CA,90001 +164553,Bose SoundSport Headphones,1,99.99,2019-03-06 11:35:00,523 Washington St, Los Angeles,CA,90001 +164554,Lightning Charging Cable,1,14.95,2019-03-09 11:49:00,160 5th St, San Francisco,CA,94016 +164555,AAA Batteries (4-pack),2,2.99,2019-03-12 07:55:00,854 Maple St, San Francisco,CA,94016 +164555,USB-C Charging Cable,1,11.95,2019-03-12 07:55:00,854 Maple St, San Francisco,CA,94016 +164556,Lightning Charging Cable,1,14.95,2019-03-04 18:05:00,318 13th St, Boston,MA,02215 +164557,34in Ultrawide Monitor,1,379.99,2019-03-07 17:20:00,855 Church St, San Francisco,CA,94016 +164558,USB-C Charging Cable,1,11.95,2019-03-17 18:39:00,359 Lakeview St, Atlanta,GA,30301 +164559,AAA Batteries (4-pack),4,2.99,2019-03-25 17:20:00,585 Hickory St, Los Angeles,CA,90001 +164560,Google Phone,1,600.0,2019-03-30 22:22:00,215 Johnson St, Boston,MA,02215 +164561,34in Ultrawide Monitor,1,379.99,2019-03-01 14:25:00,548 13th St, New York City,NY,10001 +164562,34in Ultrawide Monitor,1,379.99,2019-03-03 12:51:00,305 Meadow St, Boston,MA,02215 +164563,Macbook Pro Laptop,1,1700.0,2019-03-25 23:46:00,122 Main St, Seattle,WA,98101 +164564,Bose SoundSport Headphones,1,99.99,2019-03-12 19:45:00,501 14th St, New York City,NY,10001 +164565,34in Ultrawide Monitor,1,379.99,2019-03-30 10:49:00,194 Willow St, San Francisco,CA,94016 +164566,Google Phone,1,600.0,2019-03-17 14:39:00,803 14th St, Dallas,TX,75001 +164567,USB-C Charging Cable,1,11.95,2019-03-18 13:22:00,105 Sunset St, Los Angeles,CA,90001 +164568,Lightning Charging Cable,1,14.95,2019-03-27 20:09:00,525 Spruce St, San Francisco,CA,94016 +164569,USB-C Charging Cable,1,11.95,2019-03-18 09:21:00,760 Lakeview St, New York City,NY,10001 +164570,Lightning Charging Cable,2,14.95,2019-03-31 19:32:00,359 11th St, New York City,NY,10001 +164571,27in FHD Monitor,1,149.99,2019-03-02 16:13:00,209 Pine St, San Francisco,CA,94016 +164572,27in FHD Monitor,1,149.99,2019-03-05 20:48:00,828 Jefferson St, Boston,MA,02215 +164573,27in 4K Gaming Monitor,1,389.99,2019-03-20 13:51:00,712 North St, New York City,NY,10001 +164574,Lightning Charging Cable,3,14.95,2019-03-29 11:51:00,503 9th St, Dallas,TX,75001 +164575,USB-C Charging Cable,1,11.95,2019-03-27 19:12:00,435 2nd St, Austin,TX,73301 +164576,Apple Airpods Headphones,1,150.0,2019-03-21 16:52:00,121 Jefferson St, San Francisco,CA,94016 +164577,USB-C Charging Cable,1,11.95,2019-03-10 18:57:00,728 6th St, Austin,TX,73301 +164578,20in Monitor,1,109.99,2019-03-10 23:45:00,313 11th St, San Francisco,CA,94016 +164579,27in FHD Monitor,1,149.99,2019-03-01 12:31:00,12 1st St, Atlanta,GA,30301 +164580,27in 4K Gaming Monitor,1,389.99,2019-03-13 18:16:00,987 Highland St, Los Angeles,CA,90001 +164581,Wired Headphones,1,11.99,2019-03-15 22:37:00,942 South St, San Francisco,CA,94016 +164582,34in Ultrawide Monitor,1,379.99,2019-03-17 18:48:00,114 13th St, San Francisco,CA,94016 +164583,Wired Headphones,1,11.99,2019-03-24 22:03:00,232 Main St, Boston,MA,02215 +164584,USB-C Charging Cable,1,11.95,2019-03-20 09:19:00,147 Main St, Austin,TX,73301 +164585,Lightning Charging Cable,1,14.95,2019-03-12 12:20:00,167 Wilson St, Atlanta,GA,30301 +164586,Apple Airpods Headphones,1,150.0,2019-03-24 16:34:00,343 Hill St, New York City,NY,10001 +164587,Lightning Charging Cable,1,14.95,2019-03-16 16:36:00,565 Hill St, Los Angeles,CA,90001 +164588,Bose SoundSport Headphones,1,99.99,2019-03-04 16:52:00,445 Jackson St, Boston,MA,02215 +164589,Lightning Charging Cable,1,14.95,2019-03-13 11:40:00,662 4th St, Seattle,WA,98101 +164590,Lightning Charging Cable,1,14.95,2019-03-27 16:48:00,963 Church St, Los Angeles,CA,90001 +164591,Flatscreen TV,1,300.0,2019-03-21 20:39:00,51 Wilson St, Los Angeles,CA,90001 +164592,AA Batteries (4-pack),1,3.84,2019-03-21 22:13:00,251 1st St, San Francisco,CA,94016 +164593,Bose SoundSport Headphones,1,99.99,2019-03-16 11:49:00,188 Center St, San Francisco,CA,94016 +164594,USB-C Charging Cable,1,11.95,2019-03-06 21:53:00,651 Cherry St, Los Angeles,CA,90001 +164595,Apple Airpods Headphones,1,150.0,2019-03-10 22:15:00,718 Walnut St, Austin,TX,73301 +164596,AA Batteries (4-pack),1,3.84,2019-03-21 13:31:00,140 Spruce St, Los Angeles,CA,90001 +164597,AA Batteries (4-pack),1,3.84,2019-03-19 08:28:00,19 Wilson St, Atlanta,GA,30301 +164598,iPhone,1,700.0,2019-03-13 08:50:00,124 Lakeview St, Boston,MA,02215 +164599,AA Batteries (4-pack),1,3.84,2019-03-23 22:28:00,662 2nd St, San Francisco,CA,94016 +164600,Lightning Charging Cable,1,14.95,2019-03-01 12:07:00,406 Hill St, Dallas,TX,75001 +164601,Lightning Charging Cable,1,14.95,2019-03-10 19:38:00,511 Sunset St, San Francisco,CA,94016 +164602,USB-C Charging Cable,1,11.95,2019-03-02 22:27:00,35 8th St, Atlanta,GA,30301 +164603,Apple Airpods Headphones,1,150.0,2019-03-22 08:37:00,943 Maple St, Los Angeles,CA,90001 +164604,Flatscreen TV,1,300.0,2019-03-03 03:48:00,154 2nd St, Portland,OR,97035 +164605,AA Batteries (4-pack),1,3.84,2019-03-29 14:14:00,237 1st St, Los Angeles,CA,90001 +164606,20in Monitor,1,109.99,2019-03-01 13:05:00,630 Spruce St, Boston,MA,02215 +164607,iPhone,1,700.0,2019-03-06 15:34:00,242 Maple St, New York City,NY,10001 +164608,Bose SoundSport Headphones,1,99.99,2019-03-24 17:38:00,584 Dogwood St, Dallas,TX,75001 +164609,AA Batteries (4-pack),1,3.84,2019-03-30 16:55:00,539 7th St, San Francisco,CA,94016 +164610,27in FHD Monitor,1,149.99,2019-03-24 22:42:00,966 Main St, Los Angeles,CA,90001 +164611,AAA Batteries (4-pack),1,2.99,2019-03-08 15:30:00,749 Ridge St, Atlanta,GA,30301 +164611,USB-C Charging Cable,1,11.95,2019-03-08 15:30:00,749 Ridge St, Atlanta,GA,30301 +164612,iPhone,1,700.0,2019-03-22 16:14:00,747 Elm St, New York City,NY,10001 +164613,USB-C Charging Cable,1,11.95,2019-03-29 15:02:00,63 14th St, Los Angeles,CA,90001 +164614,AA Batteries (4-pack),1,3.84,2019-03-01 09:23:00,801 Chestnut St, Los Angeles,CA,90001 +164615,USB-C Charging Cable,1,11.95,2019-03-17 18:19:00,498 Park St, San Francisco,CA,94016 +164616,AAA Batteries (4-pack),1,2.99,2019-03-22 19:57:00,577 Wilson St, Los Angeles,CA,90001 +164617,Flatscreen TV,1,300.0,2019-03-16 16:35:00,362 Hickory St, San Francisco,CA,94016 +164618,Bose SoundSport Headphones,1,99.99,2019-03-01 13:18:00,537 14th St, Dallas,TX,75001 +164619,iPhone,1,700.0,2019-03-26 06:42:00,859 Highland St, Atlanta,GA,30301 +164620,iPhone,1,700.0,2019-03-25 18:02:00,841 2nd St, Dallas,TX,75001 +164621,AAA Batteries (4-pack),2,2.99,2019-03-30 14:46:00,273 Willow St, Seattle,WA,98101 +164622,34in Ultrawide Monitor,1,379.99,2019-03-28 18:54:00,802 11th St, Atlanta,GA,30301 +164623,AA Batteries (4-pack),2,3.84,2019-03-20 13:04:00,243 Johnson St, Portland,OR,97035 +164624,AAA Batteries (4-pack),2,2.99,2019-03-31 21:01:00,690 11th St, New York City,NY,10001 +164625,Apple Airpods Headphones,1,150.0,2019-03-28 19:43:00,404 Walnut St, San Francisco,CA,94016 +164626,Lightning Charging Cable,1,14.95,2019-03-10 16:44:00,218 River St, Atlanta,GA,30301 +164627,AAA Batteries (4-pack),1,2.99,2019-03-03 09:22:00,90 Jackson St, New York City,NY,10001 +164628,20in Monitor,1,109.99,2019-03-24 13:06:00,925 Cherry St, San Francisco,CA,94016 +164629,27in 4K Gaming Monitor,1,389.99,2019-03-13 09:37:00,972 Washington St, San Francisco,CA,94016 +164630,20in Monitor,1,109.99,2019-03-08 10:34:00,761 Adams St, Los Angeles,CA,90001 +164631,Wired Headphones,1,11.99,2019-03-16 08:14:00,90 Center St, Los Angeles,CA,90001 +164632,Bose SoundSport Headphones,1,99.99,2019-03-23 10:32:00,83 Meadow St, Portland,OR,97035 +164633,USB-C Charging Cable,1,11.95,2019-03-08 21:13:00,445 Lincoln St, San Francisco,CA,94016 +164634,Wired Headphones,1,11.99,2019-03-07 21:18:00,124 Hill St, Atlanta,GA,30301 +164635,Lightning Charging Cable,1,14.95,2019-03-03 20:35:00,892 Pine St, New York City,NY,10001 +164635,34in Ultrawide Monitor,1,379.99,2019-03-03 20:35:00,892 Pine St, New York City,NY,10001 +164636,Macbook Pro Laptop,1,1700.0,2019-03-22 21:40:00,893 Madison St, Boston,MA,02215 +164637,AAA Batteries (4-pack),1,2.99,2019-03-26 18:21:00,804 6th St, Los Angeles,CA,90001 +164638,USB-C Charging Cable,1,11.95,2019-03-19 13:25:00,83 Forest St, San Francisco,CA,94016 +164639,Vareebadd Phone,1,400.0,2019-03-12 19:45:00,857 Center St, Boston,MA,02215 +164640,Apple Airpods Headphones,1,150.0,2019-03-24 11:23:00,277 Spruce St, Austin,TX,73301 +164641,USB-C Charging Cable,1,11.95,2019-03-20 11:06:00,218 Cedar St, Los Angeles,CA,90001 +164642,Vareebadd Phone,1,400.0,2019-03-17 11:11:00,147 Center St, Atlanta,GA,30301 +164643,Wired Headphones,1,11.99,2019-03-04 15:22:00,91 West St, Los Angeles,CA,90001 +164644,Macbook Pro Laptop,1,1700.0,2019-03-08 16:37:00,963 Park St, Austin,TX,73301 +164645,AAA Batteries (4-pack),1,2.99,2019-03-14 22:17:00,83 Madison St, New York City,NY,10001 +164646,AAA Batteries (4-pack),1,2.99,2019-03-06 16:17:00,512 Johnson St, Boston,MA,02215 +164647,USB-C Charging Cable,1,11.95,2019-03-23 03:51:00,922 Willow St, Portland,OR,97035 +164648,AA Batteries (4-pack),1,3.84,2019-03-15 18:29:00,732 9th St, New York City,NY,10001 +164649,AAA Batteries (4-pack),1,2.99,2019-03-31 13:49:00,171 Dogwood St, Austin,TX,73301 +164650,Lightning Charging Cable,2,14.95,2019-03-26 10:20:00,871 Highland St, Los Angeles,CA,90001 +164651,Apple Airpods Headphones,1,150.0,2019-03-17 18:55:00,147 9th St, San Francisco,CA,94016 +164652,USB-C Charging Cable,1,11.95,2019-03-16 17:31:00,899 Meadow St, Seattle,WA,98101 +164653,Lightning Charging Cable,1,14.95,2019-03-17 18:46:00,82 Sunset St, Portland,OR,97035 +164654,Bose SoundSport Headphones,1,99.99,2019-03-22 04:28:00,307 Johnson St, San Francisco,CA,94016 +164655,27in FHD Monitor,1,149.99,2019-03-22 11:06:00,334 9th St, Atlanta,GA,30301 +164656,Lightning Charging Cable,1,14.95,2019-03-10 19:45:00,357 West St, Los Angeles,CA,90001 +164657,AA Batteries (4-pack),1,3.84,2019-03-27 11:34:00,946 8th St, San Francisco,CA,94016 +164658,USB-C Charging Cable,1,11.95,2019-03-21 00:03:00,99 Washington St, San Francisco,CA,94016 +164659,AAA Batteries (4-pack),2,2.99,2019-03-25 10:05:00,625 West St, New York City,NY,10001 +164659,USB-C Charging Cable,1,11.95,2019-03-25 10:05:00,625 West St, New York City,NY,10001 +164660,20in Monitor,1,109.99,2019-03-02 18:56:00,397 Cedar St, San Francisco,CA,94016 +164661,Apple Airpods Headphones,1,150.0,2019-03-31 14:21:00,15 Adams St, New York City,NY,10001 +164662,AAA Batteries (4-pack),2,2.99,2019-03-11 22:58:00,170 5th St, Atlanta,GA,30301 +164663,AA Batteries (4-pack),1,3.84,2019-03-25 14:41:00,228 11th St, Boston,MA,02215 +164664,Bose SoundSport Headphones,1,99.99,2019-03-27 07:20:00,380 Hill St, Seattle,WA,98101 +164665,Wired Headphones,1,11.99,2019-03-13 08:28:00,618 Chestnut St, San Francisco,CA,94016 +164666,Lightning Charging Cable,1,14.95,2019-03-20 17:19:00,299 7th St, Boston,MA,02215 +164667,Lightning Charging Cable,2,14.95,2019-03-21 09:32:00,989 West St, San Francisco,CA,94016 +164668,iPhone,1,700.0,2019-03-21 21:06:00,344 Hill St, San Francisco,CA,94016 +164669,AAA Batteries (4-pack),2,2.99,2019-03-01 13:56:00,505 10th St, Boston,MA,02215 +164670,AA Batteries (4-pack),1,3.84,2019-03-07 12:33:00,623 Sunset St, Austin,TX,73301 +164671,Lightning Charging Cable,1,14.95,2019-03-12 21:39:00,516 14th St, Los Angeles,CA,90001 +164672,Apple Airpods Headphones,1,150.0,2019-03-18 08:51:00,8 Pine St, Atlanta,GA,30301 +164673,LG Dryer,1,600.0,2019-03-29 19:02:00,895 Meadow St, Seattle,WA,98101 +164674,AAA Batteries (4-pack),1,2.99,2019-03-29 17:21:00,941 Wilson St, New York City,NY,10001 +164675,Flatscreen TV,1,300.0,2019-03-28 19:56:00,337 Hill St, San Francisco,CA,94016 +164676,20in Monitor,1,109.99,2019-03-14 10:45:00,970 Church St, Atlanta,GA,30301 +164677,Google Phone,1,600.0,2019-03-04 12:32:00,578 Washington St, New York City,NY,10001 +164677,USB-C Charging Cable,1,11.95,2019-03-04 12:32:00,578 Washington St, New York City,NY,10001 +164678,27in 4K Gaming Monitor,1,389.99,2019-03-07 11:14:00,617 Center St, Seattle,WA,98101 +164679,Google Phone,1,600.0,2019-03-04 20:14:00,604 Cherry St, San Francisco,CA,94016 +164680,20in Monitor,1,109.99,2019-03-06 17:35:00,387 Walnut St, San Francisco,CA,94016 +164681,Wired Headphones,1,11.99,2019-03-27 19:13:00,451 Highland St, Portland,OR,97035 +164682,Apple Airpods Headphones,1,150.0,2019-03-22 18:27:00,544 Church St, Austin,TX,73301 +164683,Apple Airpods Headphones,1,150.0,2019-03-28 14:19:00,983 Center St, Los Angeles,CA,90001 +164684,AA Batteries (4-pack),1,3.84,2019-03-25 18:26:00,13 13th St, Seattle,WA,98101 +164685,34in Ultrawide Monitor,1,379.99,2019-03-31 11:06:00,691 10th St, Los Angeles,CA,90001 +164686,20in Monitor,1,109.99,2019-03-29 19:38:00,266 Maple St, Seattle,WA,98101 +164687,Apple Airpods Headphones,1,150.0,2019-03-05 15:00:00,796 Elm St, San Francisco,CA,94016 +164688,AAA Batteries (4-pack),2,2.99,2019-03-12 14:10:00,331 Johnson St, Portland,OR,97035 +164689,Google Phone,1,600.0,2019-03-03 21:46:00,478 Highland St, Los Angeles,CA,90001 +164689,USB-C Charging Cable,1,11.95,2019-03-03 21:46:00,478 Highland St, Los Angeles,CA,90001 +164689,Bose SoundSport Headphones,1,99.99,2019-03-03 21:46:00,478 Highland St, Los Angeles,CA,90001 +164690,Lightning Charging Cable,1,14.95,2019-03-11 16:02:00,309 13th St, Dallas,TX,75001 +164691,Lightning Charging Cable,1,14.95,2019-03-03 23:45:00,774 1st St, Boston,MA,02215 +164692,34in Ultrawide Monitor,1,379.99,2019-03-10 13:23:00,828 Church St, Dallas,TX,75001 +164693,Lightning Charging Cable,1,14.95,2019-03-08 13:32:00,243 Washington St, San Francisco,CA,94016 +164694,Macbook Pro Laptop,1,1700.0,2019-03-10 11:57:00,195 Park St, San Francisco,CA,94016 +164695,Wired Headphones,1,11.99,2019-03-28 09:51:00,568 Adams St, Boston,MA,02215 +164696,Wired Headphones,1,11.99,2019-03-15 19:36:00,829 Dogwood St, Atlanta,GA,30301 +164697,20in Monitor,1,109.99,2019-03-24 08:51:00,544 Elm St, Dallas,TX,75001 +164698,USB-C Charging Cable,1,11.95,2019-03-07 09:55:00,911 Lincoln St, Atlanta,GA,30301 +164699,Wired Headphones,1,11.99,2019-03-13 10:50:00,555 Forest St, Dallas,TX,75001 +164700,Bose SoundSport Headphones,1,99.99,2019-03-09 23:02:00,988 Johnson St, Dallas,TX,75001 +164701,USB-C Charging Cable,1,11.95,2019-03-16 17:06:00,227 North St, Los Angeles,CA,90001 +164702,20in Monitor,1,109.99,2019-03-11 09:56:00,59 1st St, Boston,MA,02215 +164703,Wired Headphones,1,11.99,2019-03-19 14:19:00,72 Elm St, Austin,TX,73301 +164704,USB-C Charging Cable,1,11.95,2019-03-26 15:19:00,703 Hickory St, Seattle,WA,98101 +164705,Flatscreen TV,1,300.0,2019-03-26 02:09:00,900 Madison St, San Francisco,CA,94016 +164706,USB-C Charging Cable,1,11.95,2019-03-06 00:58:00,220 Cedar St, Seattle,WA,98101 +164707,USB-C Charging Cable,1,11.95,2019-03-03 18:09:00,554 9th St, Los Angeles,CA,90001 +164708,USB-C Charging Cable,2,11.95,2019-03-25 14:12:00,752 Sunset St, Los Angeles,CA,90001 +164709,AA Batteries (4-pack),2,3.84,2019-03-13 06:58:00,210 14th St, Seattle,WA,98101 +164710,Apple Airpods Headphones,1,150.0,2019-03-23 11:49:00,846 13th St, San Francisco,CA,94016 +164710,Bose SoundSport Headphones,1,99.99,2019-03-23 11:49:00,846 13th St, San Francisco,CA,94016 +164711,Wired Headphones,2,11.99,2019-03-09 14:26:00,671 14th St, Dallas,TX,75001 +164712,AAA Batteries (4-pack),3,2.99,2019-03-29 13:49:00,930 2nd St, Austin,TX,73301 +164713,Google Phone,1,600.0,2019-03-31 20:01:00,474 1st St, San Francisco,CA,94016 +164713,Bose SoundSport Headphones,1,99.99,2019-03-31 20:01:00,474 1st St, San Francisco,CA,94016 +164714,Apple Airpods Headphones,1,150.0,2019-03-11 11:33:00,681 13th St, Atlanta,GA,30301 +164715,Flatscreen TV,1,300.0,2019-03-04 13:54:00,476 Jackson St, San Francisco,CA,94016 +164716,AAA Batteries (4-pack),2,2.99,2019-03-13 09:23:00,82 Sunset St, Portland,OR,97035 +164717,AA Batteries (4-pack),1,3.84,2019-03-10 15:24:00,433 Highland St, San Francisco,CA,94016 +164717,AAA Batteries (4-pack),1,2.99,2019-03-10 15:24:00,433 Highland St, San Francisco,CA,94016 +164718,USB-C Charging Cable,1,11.95,2019-03-04 17:23:00,978 Church St, Dallas,TX,75001 +164719,AA Batteries (4-pack),2,3.84,2019-03-08 09:01:00,777 2nd St, Boston,MA,02215 +164720,Wired Headphones,1,11.99,2019-03-14 17:15:00,134 Lakeview St, San Francisco,CA,94016 +164721,Lightning Charging Cable,1,14.95,2019-03-01 20:32:00,647 6th St, Boston,MA,02215 +164722,27in 4K Gaming Monitor,1,389.99,2019-03-04 07:23:00,318 North St, Los Angeles,CA,90001 +164723,Macbook Pro Laptop,1,1700.0,2019-03-31 08:55:00,303 Highland St, San Francisco,CA,94016 +164724,AAA Batteries (4-pack),1,2.99,2019-03-18 18:49:00,538 Walnut St, San Francisco,CA,94016 +164725,Wired Headphones,1,11.99,2019-03-27 21:19:00,279 Center St, Seattle,WA,98101 +164726,AAA Batteries (4-pack),1,2.99,2019-03-06 09:39:00,413 Lake St, San Francisco,CA,94016 +164727,Lightning Charging Cable,1,14.95,2019-03-31 11:10:00,257 Jackson St, Boston,MA,02215 +164728,USB-C Charging Cable,3,11.95,2019-03-25 16:16:00,863 Forest St, San Francisco,CA,94016 +164729,Bose SoundSport Headphones,1,99.99,2019-03-25 17:43:00,29 5th St, Seattle,WA,98101 +164730,USB-C Charging Cable,1,11.95,2019-03-27 22:57:00,152 Johnson St, San Francisco,CA,94016 +164731,Wired Headphones,1,11.99,2019-03-10 16:17:00,373 Johnson St, Portland,OR,97035 +164732,20in Monitor,1,109.99,2019-03-22 06:18:00,95 6th St, Dallas,TX,75001 +164733,USB-C Charging Cable,1,11.95,2019-03-09 11:40:00,749 Washington St, Boston,MA,02215 +164734,20in Monitor,1,109.99,2019-03-27 18:38:00,195 12th St, Boston,MA,02215 +164735,USB-C Charging Cable,1,11.95,2019-03-04 17:33:00,367 Maple St, Atlanta,GA,30301 +164736,AAA Batteries (4-pack),1,2.99,2019-03-18 11:10:00,509 2nd St, Seattle,WA,98101 +164737,Google Phone,1,600.0,2019-03-14 22:16:00,275 Spruce St, Los Angeles,CA,90001 +164737,USB-C Charging Cable,1,11.95,2019-03-14 22:16:00,275 Spruce St, Los Angeles,CA,90001 +164738,Wired Headphones,1,11.99,2019-03-19 23:14:00,615 Highland St, New York City,NY,10001 +164739,27in 4K Gaming Monitor,1,389.99,2019-03-25 19:15:00,416 Church St, San Francisco,CA,94016 +164740,AA Batteries (4-pack),1,3.84,2019-03-24 14:54:00,950 Cedar St, San Francisco,CA,94016 +164741,Google Phone,1,600.0,2019-03-25 17:18:00,507 Johnson St, San Francisco,CA,94016 +164742,Google Phone,1,600.0,2019-03-23 14:56:00,93 Johnson St, San Francisco,CA,94016 +164743,Wired Headphones,1,11.99,2019-03-20 01:10:00,249 Forest St, Austin,TX,73301 +164744,Vareebadd Phone,1,400.0,2019-03-07 16:44:00,320 North St, Los Angeles,CA,90001 +164745,Apple Airpods Headphones,1,150.0,2019-03-10 11:13:00,608 14th St, Dallas,TX,75001 +164746,Wired Headphones,1,11.99,2019-03-14 16:17:00,737 Main St, New York City,NY,10001 +164747,Wired Headphones,1,11.99,2019-03-06 14:52:00,206 Willow St, San Francisco,CA,94016 +164748,USB-C Charging Cable,1,11.95,2019-03-09 17:10:00,23 Walnut St, New York City,NY,10001 +164749,Wired Headphones,2,11.99,2019-03-28 20:06:00,46 Park St, Los Angeles,CA,90001 +164750,34in Ultrawide Monitor,1,379.99,2019-03-31 17:14:00,243 Walnut St, Los Angeles,CA,90001 +164750,AA Batteries (4-pack),1,3.84,2019-03-31 17:14:00,243 Walnut St, Los Angeles,CA,90001 +164751,AA Batteries (4-pack),1,3.84,2019-03-22 19:01:00,408 Main St, Los Angeles,CA,90001 +164752,27in FHD Monitor,1,149.99,2019-03-11 12:49:00,255 1st St, San Francisco,CA,94016 +164753,USB-C Charging Cable,1,11.95,2019-03-10 11:44:00,188 6th St, San Francisco,CA,94016 +164754,LG Dryer,1,600.0,2019-03-18 15:38:00,131 7th St, Los Angeles,CA,90001 +164755,Google Phone,1,600.0,2019-03-29 13:29:00,918 West St, New York City,NY,10001 +164755,USB-C Charging Cable,1,11.95,2019-03-29 13:29:00,918 West St, New York City,NY,10001 +164756,ThinkPad Laptop,1,999.99,2019-03-04 20:55:00,265 North St, Portland,OR,97035 +164757,USB-C Charging Cable,1,11.95,2019-03-02 19:32:00,437 West St, Dallas,TX,75001 +164758,Wired Headphones,1,11.99,2019-03-21 23:49:00,485 7th St, Boston,MA,02215 +164759,Google Phone,1,600.0,2019-03-04 19:29:00,693 River St, Atlanta,GA,30301 +164759,USB-C Charging Cable,1,11.95,2019-03-04 19:29:00,693 River St, Atlanta,GA,30301 +164760,Wired Headphones,1,11.99,2019-03-19 10:18:00,504 Lakeview St, Los Angeles,CA,90001 +164761,Lightning Charging Cable,1,14.95,2019-03-15 10:00:00,890 Park St, Los Angeles,CA,90001 +164762,AAA Batteries (4-pack),1,2.99,2019-03-05 08:57:00,631 South St, Los Angeles,CA,90001 +164763,Google Phone,1,600.0,2019-03-11 18:43:00,944 Main St, San Francisco,CA,94016 +164764,Wired Headphones,1,11.99,2019-03-23 19:29:00,972 14th St, Seattle,WA,98101 +164765,20in Monitor,1,109.99,2019-03-25 10:15:00,747 8th St, San Francisco,CA,94016 +164766,Macbook Pro Laptop,1,1700.0,2019-03-08 12:31:00,434 Ridge St, Austin,TX,73301 +164767,USB-C Charging Cable,1,11.95,2019-03-20 18:22:00,567 Jefferson St, Los Angeles,CA,90001 +164768,Apple Airpods Headphones,1,150.0,2019-03-20 16:34:00,376 6th St, Atlanta,GA,30301 +164769,34in Ultrawide Monitor,1,379.99,2019-03-27 08:57:00,765 Park St, Portland,OR,97035 +164770,Google Phone,1,600.0,2019-03-26 17:59:00,211 Elm St, Atlanta,GA,30301 +164770,USB-C Charging Cable,1,11.95,2019-03-26 17:59:00,211 Elm St, Atlanta,GA,30301 +164771,iPhone,1,700.0,2019-03-17 18:20:00,574 9th St, San Francisco,CA,94016 +164772,AA Batteries (4-pack),2,3.84,2019-03-08 16:12:00,938 Hickory St, Portland,OR,97035 +164773,Bose SoundSport Headphones,1,99.99,2019-03-30 21:15:00,141 4th St, San Francisco,CA,94016 +164774,USB-C Charging Cable,1,11.95,2019-03-14 20:14:00,696 Sunset St, Los Angeles,CA,90001 +164775,Apple Airpods Headphones,1,150.0,2019-03-08 08:17:00,790 Lincoln St, Boston,MA,02215 +164776,34in Ultrawide Monitor,1,379.99,2019-03-13 13:23:00,512 Church St, Seattle,WA,98101 +164777,Lightning Charging Cable,1,14.95,2019-03-18 08:03:00,453 Walnut St, Dallas,TX,75001 +164778,AA Batteries (4-pack),1,3.84,2019-03-03 11:39:00,653 14th St, Los Angeles,CA,90001 +164779,Apple Airpods Headphones,1,150.0,2019-03-02 14:40:00,443 2nd St, Los Angeles,CA,90001 +164780,27in 4K Gaming Monitor,1,389.99,2019-03-07 17:17:00,137 North St, Austin,TX,73301 +164781,Apple Airpods Headphones,1,150.0,2019-03-04 19:48:00,461 Dogwood St, San Francisco,CA,94016 +164782,AAA Batteries (4-pack),1,2.99,2019-03-24 08:02:00,375 8th St, Los Angeles,CA,90001 +164783,Google Phone,1,600.0,2019-03-22 13:59:00,897 Jackson St, Atlanta,GA,30301 +164784,USB-C Charging Cable,1,11.95,2019-03-01 12:30:00,998 Park St, Seattle,WA,98101 +164785,ThinkPad Laptop,1,999.99,2019-03-14 21:05:00,649 2nd St, New York City,NY,10001 +164786,Wired Headphones,1,11.99,2019-03-27 20:04:00,170 Jefferson St, Boston,MA,02215 +164787,Wired Headphones,1,11.99,2019-03-22 02:15:00,133 Madison St, San Francisco,CA,94016 +164788,Lightning Charging Cable,1,14.95,2019-03-22 07:25:00,652 Cedar St, Atlanta,GA,30301 +164789,AA Batteries (4-pack),1,3.84,2019-03-16 17:42:00,790 4th St, New York City,NY,10001 +164790,Lightning Charging Cable,1,14.95,2019-03-03 20:25:00,627 Elm St, Boston,MA,02215 +164791,USB-C Charging Cable,2,11.95,2019-03-26 09:20:00,816 12th St, Boston,MA,02215 +164792,Vareebadd Phone,1,400.0,2019-03-28 22:52:00,410 Chestnut St, Atlanta,GA,30301 +164793,Google Phone,1,600.0,2019-03-09 10:58:00,207 Wilson St, Boston,MA,02215 +164793,USB-C Charging Cable,2,11.95,2019-03-09 10:58:00,207 Wilson St, Boston,MA,02215 +164794,USB-C Charging Cable,1,11.95,2019-03-27 18:55:00,692 River St, San Francisco,CA,94016 +164795,AA Batteries (4-pack),3,3.84,2019-03-06 20:12:00,41 Lincoln St, Los Angeles,CA,90001 +164796,USB-C Charging Cable,1,11.95,2019-03-04 14:23:00,300 Meadow St, Boston,MA,02215 +164797,Google Phone,1,600.0,2019-03-22 13:03:00,545 12th St, Seattle,WA,98101 +164798,AA Batteries (4-pack),1,3.84,2019-03-07 08:23:00,691 8th St, Los Angeles,CA,90001 +164799,Lightning Charging Cable,1,14.95,2019-03-02 12:05:00,779 Sunset St, Atlanta,GA,30301 +164800,AA Batteries (4-pack),1,3.84,2019-03-23 08:00:00,993 14th St, San Francisco,CA,94016 +164801,Apple Airpods Headphones,1,150.0,2019-03-23 12:25:00,406 Center St, New York City,NY,10001 +164802,Apple Airpods Headphones,1,150.0,2019-03-09 12:07:00,978 Adams St, Los Angeles,CA,90001 +164803,AA Batteries (4-pack),1,3.84,2019-03-21 01:07:00,443 North St, Portland,ME,04101 +164804,Google Phone,1,600.0,2019-03-25 18:08:00,944 Jackson St, Seattle,WA,98101 +164804,USB-C Charging Cable,1,11.95,2019-03-25 18:08:00,944 Jackson St, Seattle,WA,98101 +164805,Apple Airpods Headphones,1,150.0,2019-03-15 18:59:00,983 Maple St, Austin,TX,73301 +164806,Bose SoundSport Headphones,1,99.99,2019-03-03 12:20:00,804 Forest St, Dallas,TX,75001 +164807,Google Phone,1,600.0,2019-03-07 21:07:00,680 Chestnut St, Austin,TX,73301 +164808,Lightning Charging Cable,1,14.95,2019-03-26 10:18:00,915 Lake St, Boston,MA,02215 +164809,AA Batteries (4-pack),3,3.84,2019-03-19 20:09:00,513 Lake St, Boston,MA,02215 +164810,Lightning Charging Cable,1,14.95,2019-03-20 02:31:00,689 Dogwood St, Los Angeles,CA,90001 +164811,Lightning Charging Cable,1,14.95,2019-03-28 14:41:00,219 Washington St, New York City,NY,10001 +164812,iPhone,1,700.0,2019-03-08 11:59:00,892 Forest St, San Francisco,CA,94016 +164812,Wired Headphones,1,11.99,2019-03-08 11:59:00,892 Forest St, San Francisco,CA,94016 +164813,AAA Batteries (4-pack),1,2.99,2019-03-10 23:41:00,694 West St, Dallas,TX,75001 +164814,Wired Headphones,1,11.99,2019-03-23 20:16:00,438 5th St, Boston,MA,02215 +164815,34in Ultrawide Monitor,1,379.99,2019-03-06 12:09:00,296 Church St, San Francisco,CA,94016 +164816,USB-C Charging Cable,1,11.95,2019-03-18 11:55:00,481 Sunset St, Seattle,WA,98101 +164817,Bose SoundSport Headphones,1,99.99,2019-03-18 00:51:00,183 2nd St, New York City,NY,10001 +164817,Apple Airpods Headphones,1,150.0,2019-03-18 00:51:00,183 2nd St, New York City,NY,10001 +164818,Lightning Charging Cable,1,14.95,2019-03-11 06:09:00,750 6th St, San Francisco,CA,94016 +164819,USB-C Charging Cable,1,11.95,2019-03-28 20:12:00,742 Highland St, Boston,MA,02215 +164820,Apple Airpods Headphones,1,150.0,2019-03-20 12:31:00,663 Dogwood St, Seattle,WA,98101 +164821,AA Batteries (4-pack),1,3.84,2019-03-08 10:49:00,220 Dogwood St, Los Angeles,CA,90001 +164822,AA Batteries (4-pack),4,3.84,2019-03-11 10:58:00,81 6th St, San Francisco,CA,94016 +164823,34in Ultrawide Monitor,1,379.99,2019-03-04 07:51:00,567 11th St, Dallas,TX,75001 +164824,Wired Headphones,2,11.99,2019-03-14 17:28:00,221 Elm St, New York City,NY,10001 +164825,Lightning Charging Cable,1,14.95,2019-03-23 18:51:00,34 Pine St, San Francisco,CA,94016 +164826,Bose SoundSport Headphones,1,99.99,2019-03-02 18:00:00,336 Jackson St, New York City,NY,10001 +164827,Apple Airpods Headphones,1,150.0,2019-03-14 21:06:00,431 Center St, Los Angeles,CA,90001 +164828,ThinkPad Laptop,1,999.99,2019-03-16 13:30:00,600 Maple St, Seattle,WA,98101 +164829,Apple Airpods Headphones,1,150.0,2019-03-06 00:58:00,279 Chestnut St, Seattle,WA,98101 +164830,AAA Batteries (4-pack),1,2.99,2019-03-25 10:31:00,326 10th St, Portland,OR,97035 +164831,Apple Airpods Headphones,1,150.0,2019-03-15 12:17:00,746 Highland St, San Francisco,CA,94016 +164832,AAA Batteries (4-pack),1,2.99,2019-03-09 10:36:00,803 North St, Los Angeles,CA,90001 +164833,USB-C Charging Cable,1,11.95,2019-03-24 00:43:00,580 Ridge St, Los Angeles,CA,90001 +164834,Lightning Charging Cable,1,14.95,2019-03-25 01:42:00,454 Church St, New York City,NY,10001 +164835,Bose SoundSport Headphones,1,99.99,2019-03-29 16:07:00,861 Washington St, San Francisco,CA,94016 +164836,AA Batteries (4-pack),2,3.84,2019-03-24 10:41:00,96 11th St, Atlanta,GA,30301 +164837,Wired Headphones,1,11.99,2019-03-30 23:20:00,361 Madison St, Los Angeles,CA,90001 +164838,Bose SoundSport Headphones,1,99.99,2019-03-18 12:53:00,847 12th St, Atlanta,GA,30301 +164839,Wired Headphones,1,11.99,2019-03-20 21:35:00,565 Maple St, San Francisco,CA,94016 +164840,20in Monitor,1,109.99,2019-03-04 18:45:00,463 Ridge St, San Francisco,CA,94016 +164841,AAA Batteries (4-pack),1,2.99,2019-03-18 12:59:00,163 4th St, San Francisco,CA,94016 +164842,USB-C Charging Cable,1,11.95,2019-03-04 19:38:00,713 7th St, Dallas,TX,75001 +164843,34in Ultrawide Monitor,1,379.99,2019-03-02 08:50:00,158 Lakeview St, Boston,MA,02215 +164844,AAA Batteries (4-pack),1,2.99,2019-03-11 22:23:00,309 Hickory St, Portland,OR,97035 +164845,Lightning Charging Cable,1,14.95,2019-03-27 06:41:00,322 Jackson St, San Francisco,CA,94016 +164846,Lightning Charging Cable,1,14.95,2019-03-07 18:57:00,443 4th St, Austin,TX,73301 +164847,iPhone,1,700.0,2019-03-09 07:16:00,263 Spruce St, San Francisco,CA,94016 +164848,USB-C Charging Cable,1,11.95,2019-03-08 09:23:00,905 Willow St, Atlanta,GA,30301 +164849,AA Batteries (4-pack),1,3.84,2019-03-08 16:01:00,194 Hickory St, Los Angeles,CA,90001 +164850,AAA Batteries (4-pack),1,2.99,2019-03-10 19:58:00,236 Walnut St, Atlanta,GA,30301 +164851,ThinkPad Laptop,1,999.99,2019-03-04 09:01:00,738 6th St, Boston,MA,02215 +164852,Lightning Charging Cable,1,14.95,2019-03-20 14:06:00,646 Madison St, Atlanta,GA,30301 +164853,AA Batteries (4-pack),3,3.84,2019-03-07 14:48:00,35 Elm St, New York City,NY,10001 +164854,AA Batteries (4-pack),1,3.84,2019-03-08 08:40:00,608 9th St, Boston,MA,02215 +164855,AA Batteries (4-pack),1,3.84,2019-03-10 00:41:00,390 Madison St, San Francisco,CA,94016 +164856,Lightning Charging Cable,1,14.95,2019-03-02 11:08:00,994 South St, New York City,NY,10001 +164857,Lightning Charging Cable,1,14.95,2019-03-22 19:54:00,520 Walnut St, San Francisco,CA,94016 +164857,Macbook Pro Laptop,1,1700.0,2019-03-22 19:54:00,520 Walnut St, San Francisco,CA,94016 +164858,AAA Batteries (4-pack),1,2.99,2019-03-30 20:35:00,444 11th St, Los Angeles,CA,90001 +164859,Wired Headphones,1,11.99,2019-03-19 02:40:00,4 6th St, Los Angeles,CA,90001 +164860,AA Batteries (4-pack),1,3.84,2019-03-16 15:00:00,288 Center St, Los Angeles,CA,90001 +164861,Apple Airpods Headphones,1,150.0,2019-03-30 20:07:00,796 4th St, Dallas,TX,75001 +164862,iPhone,1,700.0,2019-03-17 10:05:00,234 Cedar St, San Francisco,CA,94016 +164863,USB-C Charging Cable,1,11.95,2019-03-11 20:30:00,143 Hill St, San Francisco,CA,94016 +164864,20in Monitor,1,109.99,2019-03-15 16:54:00,166 Walnut St, Los Angeles,CA,90001 +164865,Macbook Pro Laptop,1,1700.0,2019-03-27 09:50:00,770 Spruce St, Portland,OR,97035 +164866,LG Washing Machine,1,600.0,2019-03-07 20:51:00,849 4th St, Austin,TX,73301 +164867,AAA Batteries (4-pack),2,2.99,2019-03-16 18:12:00,710 9th St, Atlanta,GA,30301 +164868,USB-C Charging Cable,1,11.95,2019-03-01 21:35:00,83 Sunset St, Los Angeles,CA,90001 +164869,USB-C Charging Cable,1,11.95,2019-03-15 21:47:00,91 10th St, San Francisco,CA,94016 +164870,20in Monitor,1,109.99,2019-03-01 19:03:00,102 Lake St, Los Angeles,CA,90001 +164871,AAA Batteries (4-pack),1,2.99,2019-03-24 22:16:00,951 Elm St, Boston,MA,02215 +164872,Macbook Pro Laptop,1,1700.0,2019-03-15 11:08:00,462 Johnson St, Atlanta,GA,30301 +164873,AA Batteries (4-pack),1,3.84,2019-03-15 17:55:00,668 12th St, Seattle,WA,98101 +164874,Flatscreen TV,1,300.0,2019-03-04 08:13:00,750 5th St, San Francisco,CA,94016 +164875,Flatscreen TV,1,300.0,2019-03-29 15:20:00,349 13th St, Austin,TX,73301 +164876,Wired Headphones,1,11.99,2019-03-15 17:36:00,632 South St, San Francisco,CA,94016 +164877,Bose SoundSport Headphones,1,99.99,2019-03-26 07:46:00,327 Dogwood St, Portland,OR,97035 +164878,AA Batteries (4-pack),5,3.84,2019-03-05 14:49:00,661 Madison St, Dallas,TX,75001 +164879,Apple Airpods Headphones,1,150.0,2019-03-07 19:21:00,199 4th St, Atlanta,GA,30301 +164880,Wired Headphones,1,11.99,2019-03-10 22:21:00,533 9th St, Seattle,WA,98101 +164880,Vareebadd Phone,1,400.0,2019-03-10 22:21:00,533 9th St, Seattle,WA,98101 +164881,Apple Airpods Headphones,1,150.0,2019-03-13 19:36:00,80 Walnut St, San Francisco,CA,94016 +164882,Bose SoundSport Headphones,1,99.99,2019-03-20 16:59:00,156 Ridge St, New York City,NY,10001 +164883,Bose SoundSport Headphones,1,99.99,2019-03-02 05:43:00,280 9th St, Los Angeles,CA,90001 +164884,Lightning Charging Cable,1,14.95,2019-03-05 18:41:00,600 Pine St, Atlanta,GA,30301 +164885,AA Batteries (4-pack),1,3.84,2019-03-02 17:01:00,189 Jackson St, New York City,NY,10001 +164886,Lightning Charging Cable,1,14.95,2019-03-12 09:48:00,826 Church St, Seattle,WA,98101 +164887,Bose SoundSport Headphones,1,99.99,2019-03-28 15:25:00,358 2nd St, New York City,NY,10001 +164888,Wired Headphones,1,11.99,2019-03-06 12:35:00,825 Hickory St, Boston,MA,02215 +164889,ThinkPad Laptop,1,999.99,2019-03-10 15:49:00,676 River St, San Francisco,CA,94016 +164890,USB-C Charging Cable,1,11.95,2019-03-15 18:19:00,340 Washington St, Los Angeles,CA,90001 +164891,Apple Airpods Headphones,1,150.0,2019-03-23 15:58:00,137 Maple St, San Francisco,CA,94016 +164892,Wired Headphones,1,11.99,2019-03-31 22:59:00,467 Spruce St, New York City,NY,10001 +164893,Flatscreen TV,1,300.0,2019-03-08 19:29:00,926 Main St, Austin,TX,73301 +164894,Bose SoundSport Headphones,1,99.99,2019-03-05 06:44:00,920 Chestnut St, Los Angeles,CA,90001 +164895,20in Monitor,1,109.99,2019-03-13 18:13:00,339 12th St, New York City,NY,10001 +164896,AA Batteries (4-pack),2,3.84,2019-03-15 13:15:00,570 Park St, Boston,MA,02215 +164897,AA Batteries (4-pack),1,3.84,2019-03-12 22:20:00,755 Main St, New York City,NY,10001 +164898,AAA Batteries (4-pack),2,2.99,2019-03-25 17:55:00,991 Church St, Los Angeles,CA,90001 +164899,AAA Batteries (4-pack),1,2.99,2019-03-04 19:33:00,517 5th St, San Francisco,CA,94016 +164900,Lightning Charging Cable,1,14.95,2019-03-09 20:27:00,135 Center St, New York City,NY,10001 +164901,20in Monitor,1,109.99,2019-03-26 22:07:00,488 10th St, San Francisco,CA,94016 +164902,Google Phone,1,600.0,2019-03-05 07:44:00,450 Elm St, San Francisco,CA,94016 +164903,Apple Airpods Headphones,1,150.0,2019-03-02 05:11:00,360 Washington St, San Francisco,CA,94016 +164903,AA Batteries (4-pack),2,3.84,2019-03-02 05:11:00,360 Washington St, San Francisco,CA,94016 +164904,Bose SoundSport Headphones,1,99.99,2019-03-14 22:17:00,771 11th St, Los Angeles,CA,90001 +164905,Lightning Charging Cable,1,14.95,2019-03-31 19:34:00,325 Hickory St, San Francisco,CA,94016 +164906,USB-C Charging Cable,1,11.95,2019-03-21 20:47:00,406 Dogwood St, San Francisco,CA,94016 +164907,AA Batteries (4-pack),2,3.84,2019-03-01 18:16:00,333 Hill St, Dallas,TX,75001 +164908,27in FHD Monitor,1,149.99,2019-03-13 18:42:00,648 Walnut St, Seattle,WA,98101 +164909,Apple Airpods Headphones,1,150.0,2019-03-03 10:40:00,454 Forest St, San Francisco,CA,94016 +164910,AAA Batteries (4-pack),1,2.99,2019-03-31 01:05:00,951 10th St, San Francisco,CA,94016 +164911,Wired Headphones,1,11.99,2019-03-04 11:39:00,861 Ridge St, Los Angeles,CA,90001 +164912,Apple Airpods Headphones,1,150.0,2019-03-15 08:54:00,384 5th St, New York City,NY,10001 +164913,Bose SoundSport Headphones,1,99.99,2019-03-18 14:55:00,27 13th St, Austin,TX,73301 +164914,AAA Batteries (4-pack),1,2.99,2019-03-22 16:44:00,911 12th St, Austin,TX,73301 +164915,Wired Headphones,1,11.99,2019-03-07 07:27:00,704 6th St, Seattle,WA,98101 +164916,20in Monitor,1,109.99,2019-03-09 21:10:00,546 Pine St, San Francisco,CA,94016 +164917,USB-C Charging Cable,1,11.95,2019-03-10 20:52:00,448 Jackson St, Austin,TX,73301 +164918,Lightning Charging Cable,1,14.95,2019-03-06 22:57:00,544 13th St, San Francisco,CA,94016 +164919,Flatscreen TV,1,300.0,2019-03-14 09:18:00,437 Center St, San Francisco,CA,94016 +164920,Wired Headphones,1,11.99,2019-03-10 18:11:00,304 14th St, San Francisco,CA,94016 +164921,Flatscreen TV,1,300.0,2019-03-24 17:36:00,125 Lincoln St, San Francisco,CA,94016 +164922,AAA Batteries (4-pack),2,2.99,2019-03-28 13:03:00,684 11th St, Los Angeles,CA,90001 +164923,ThinkPad Laptop,1,999.99,2019-03-24 10:06:00,781 South St, New York City,NY,10001 +164924,AAA Batteries (4-pack),1,2.99,2019-03-20 13:25:00,30 Elm St, Seattle,WA,98101 +164925,Lightning Charging Cable,1,14.95,2019-03-19 14:59:00,335 Maple St, San Francisco,CA,94016 +164926,Macbook Pro Laptop,1,1700.0,2019-03-12 17:46:00,232 7th St, Portland,OR,97035 +164927,Lightning Charging Cable,1,14.95,2019-03-11 07:24:00,447 Maple St, Los Angeles,CA,90001 +164928,Lightning Charging Cable,1,14.95,2019-03-06 14:52:00,212 Walnut St, Boston,MA,02215 +164928,AA Batteries (4-pack),2,3.84,2019-03-06 14:52:00,212 Walnut St, Boston,MA,02215 +164929,AAA Batteries (4-pack),1,2.99,2019-03-15 13:11:00,145 Dogwood St, Austin,TX,73301 +164930,34in Ultrawide Monitor,1,379.99,2019-03-06 07:00:00,780 Washington St, San Francisco,CA,94016 +164931,Wired Headphones,1,11.99,2019-03-09 19:27:00,474 11th St, Boston,MA,02215 +164932,34in Ultrawide Monitor,1,379.99,2019-03-05 18:24:00,895 Madison St, Seattle,WA,98101 +164933,Wired Headphones,2,11.99,2019-03-26 17:01:00,271 Main St, Seattle,WA,98101 +164934,Apple Airpods Headphones,1,150.0,2019-03-05 12:51:00,370 12th St, Atlanta,GA,30301 +164935,Apple Airpods Headphones,1,150.0,2019-03-09 13:12:00,431 6th St, Portland,OR,97035 +164936,Wired Headphones,1,11.99,2019-03-22 13:22:00,87 Pine St, Los Angeles,CA,90001 +164937,Macbook Pro Laptop,1,1700.0,2019-03-08 13:12:00,290 Washington St, Los Angeles,CA,90001 +164938,AAA Batteries (4-pack),1,2.99,2019-03-07 09:40:00,122 South St, Dallas,TX,75001 +164939,Wired Headphones,1,11.99,2019-03-17 02:15:00,975 5th St, Los Angeles,CA,90001 +164940,ThinkPad Laptop,1,999.99,2019-03-06 15:25:00,447 North St, Los Angeles,CA,90001 +164941,USB-C Charging Cable,1,11.95,2019-03-07 21:19:00,249 Lakeview St, Boston,MA,02215 +164942,Lightning Charging Cable,1,14.95,2019-03-14 17:33:00,636 Lincoln St, New York City,NY,10001 +164943,Apple Airpods Headphones,1,150.0,2019-03-05 21:37:00,942 Sunset St, Dallas,TX,75001 +164944,USB-C Charging Cable,2,11.95,2019-03-21 12:48:00,738 Sunset St, Los Angeles,CA,90001 +164945,Google Phone,1,600.0,2019-03-20 09:38:00,914 Lakeview St, San Francisco,CA,94016 +164946,Macbook Pro Laptop,1,1700.0,2019-03-01 19:28:00,229 Johnson St, Portland,OR,97035 +164947,iPhone,1,700.0,2019-03-28 12:21:00,704 8th St, Seattle,WA,98101 +164948,Macbook Pro Laptop,1,1700.0,2019-03-22 11:02:00,753 4th St, Dallas,TX,75001 +164949,Wired Headphones,2,11.99,2019-03-06 05:38:00,666 Meadow St, New York City,NY,10001 +164950,AA Batteries (4-pack),1,3.84,2019-03-20 14:42:00,81 5th St, Dallas,TX,75001 +164951,Lightning Charging Cable,1,14.95,2019-03-25 12:28:00,994 Walnut St, Los Angeles,CA,90001 +164952,Wired Headphones,1,11.99,2019-03-12 08:56:00,829 Maple St, San Francisco,CA,94016 +164953,27in FHD Monitor,1,149.99,2019-03-26 16:21:00,19 13th St, Portland,OR,97035 +164954,AAA Batteries (4-pack),2,2.99,2019-03-29 05:41:00,956 Jackson St, Atlanta,GA,30301 +164955,Bose SoundSport Headphones,1,99.99,2019-03-12 18:42:00,6 14th St, New York City,NY,10001 +164956,USB-C Charging Cable,1,11.95,2019-03-09 12:27:00,633 Cherry St, New York City,NY,10001 +164957,Flatscreen TV,1,300.0,2019-03-13 20:07:00,586 Park St, Atlanta,GA,30301 +164958,AAA Batteries (4-pack),1,2.99,2019-03-07 14:50:00,620 14th St, Los Angeles,CA,90001 +164959,AAA Batteries (4-pack),1,2.99,2019-03-13 22:19:00,330 Adams St, Los Angeles,CA,90001 +164960,AA Batteries (4-pack),1,3.84,2019-03-06 16:53:00,657 South St, San Francisco,CA,94016 +164961,AAA Batteries (4-pack),1,2.99,2019-03-05 06:42:00,816 Cherry St, New York City,NY,10001 +164962,LG Washing Machine,1,600.0,2019-03-26 21:04:00,817 Washington St, Seattle,WA,98101 +164963,Wired Headphones,1,11.99,2019-03-21 10:07:00,801 Center St, Seattle,WA,98101 +164964,Wired Headphones,1,11.99,2019-03-07 23:27:00,379 Spruce St, Atlanta,GA,30301 +164965,27in FHD Monitor,1,149.99,2019-03-02 12:14:00,930 Pine St, Seattle,WA,98101 +164966,AA Batteries (4-pack),2,3.84,2019-03-10 12:01:00,18 Dogwood St, Atlanta,GA,30301 +164967,Apple Airpods Headphones,1,150.0,2019-03-30 23:23:00,755 Chestnut St, Dallas,TX,75001 +164968,LG Washing Machine,1,600.0,2019-03-07 10:00:00,627 Pine St, Atlanta,GA,30301 +164969,AAA Batteries (4-pack),1,2.99,2019-03-03 08:14:00,488 Walnut St, New York City,NY,10001 +164970,AA Batteries (4-pack),1,3.84,2019-03-07 18:37:00,785 Lincoln St, Dallas,TX,75001 +164971,AAA Batteries (4-pack),1,2.99,2019-03-09 23:04:00,308 1st St, Los Angeles,CA,90001 +164972,20in Monitor,1,109.99,2019-03-14 22:45:00,343 10th St, San Francisco,CA,94016 +164973,AAA Batteries (4-pack),2,2.99,2019-03-21 08:49:00,71 Cedar St, Los Angeles,CA,90001 +164974,Lightning Charging Cable,1,14.95,2019-03-24 14:37:00,180 Hickory St, New York City,NY,10001 +164975,Lightning Charging Cable,1,14.95,2019-03-17 22:29:00,986 North St, Los Angeles,CA,90001 +164976,Wired Headphones,1,11.99,2019-03-18 19:02:00,875 Madison St, Austin,TX,73301 +164977,iPhone,1,700.0,2019-03-23 17:19:00,283 Meadow St, San Francisco,CA,94016 +164977,Lightning Charging Cable,1,14.95,2019-03-23 17:19:00,283 Meadow St, San Francisco,CA,94016 +164978,Apple Airpods Headphones,1,150.0,2019-03-04 13:40:00,535 South St, Atlanta,GA,30301 +164979,AAA Batteries (4-pack),2,2.99,2019-03-06 05:27:00,222 2nd St, Atlanta,GA,30301 +164980,USB-C Charging Cable,1,11.95,2019-03-02 03:17:00,918 Jackson St, Portland,OR,97035 +164981,Wired Headphones,1,11.99,2019-03-18 23:15:00,55 Walnut St, Los Angeles,CA,90001 +164982,Macbook Pro Laptop,1,1700.0,2019-03-16 17:20:00,353 Washington St, San Francisco,CA,94016 +164983,27in FHD Monitor,1,149.99,2019-03-17 21:33:00,161 Church St, Boston,MA,02215 +164984,Bose SoundSport Headphones,1,99.99,2019-03-04 22:59:00,41 River St, Los Angeles,CA,90001 +164985,Google Phone,1,600.0,2019-03-21 14:27:00,247 7th St, Los Angeles,CA,90001 +164985,Wired Headphones,1,11.99,2019-03-21 14:27:00,247 7th St, Los Angeles,CA,90001 +164986,LG Dryer,1,600.0,2019-03-06 08:40:00,731 13th St, Portland,OR,97035 +164987,Lightning Charging Cable,2,14.95,2019-03-13 14:39:00,553 Washington St, Seattle,WA,98101 +164988,AAA Batteries (4-pack),2,2.99,2019-03-30 19:49:00,627 Pine St, New York City,NY,10001 +164989,ThinkPad Laptop,1,999.99,2019-03-30 14:46:00,796 Maple St, Dallas,TX,75001 +164990,AA Batteries (4-pack),1,3.84,2019-03-10 21:19:00,348 14th St, New York City,NY,10001 +164991,Flatscreen TV,1,300.0,2019-03-07 18:25:00,983 Willow St, San Francisco,CA,94016 +164992,Flatscreen TV,1,300.0,2019-03-22 19:20:00,256 Spruce St, Los Angeles,CA,90001 +164993,USB-C Charging Cable,1,11.95,2019-03-09 19:39:00,473 14th St, Portland,OR,97035 +164994,Bose SoundSport Headphones,1,99.99,2019-03-21 11:29:00,335 Hickory St, Portland,ME,04101 +164995,Bose SoundSport Headphones,1,99.99,2019-03-26 04:47:00,824 Washington St, San Francisco,CA,94016 +164996,Lightning Charging Cable,1,14.95,2019-03-21 09:19:00,360 Hickory St, Portland,OR,97035 +164997,Vareebadd Phone,1,400.0,2019-03-05 22:09:00,25 Cedar St, Seattle,WA,98101 +164998,iPhone,1,700.0,2019-03-31 12:17:00,54 Adams St, Los Angeles,CA,90001 +164999,34in Ultrawide Monitor,1,379.99,2019-03-11 14:07:00,651 Cedar St, Portland,OR,97035 +165000,Macbook Pro Laptop,1,1700.0,2019-03-24 20:07:00,630 Washington St, New York City,NY,10001 +165001,34in Ultrawide Monitor,1,379.99,2019-03-25 11:51:00,733 11th St, Seattle,WA,98101 +165002,ThinkPad Laptop,1,999.99,2019-03-22 23:36:00,456 Lincoln St, Seattle,WA,98101 +165003,27in 4K Gaming Monitor,1,389.99,2019-03-21 12:09:00,241 1st St, Los Angeles,CA,90001 +165004,USB-C Charging Cable,1,11.95,2019-03-23 20:48:00,421 11th St, Atlanta,GA,30301 +165005,LG Washing Machine,1,600.0,2019-03-25 16:22:00,964 Willow St, Boston,MA,02215 +165006,Wired Headphones,1,11.99,2019-03-15 17:45:00,158 Wilson St, New York City,NY,10001 +165007,34in Ultrawide Monitor,1,379.99,2019-04-01 00:12:00,389 Willow St, New York City,NY,10001 +165008,Apple Airpods Headphones,1,150.0,2019-03-23 20:04:00,89 Cedar St, New York City,NY,10001 +165009,Wired Headphones,1,11.99,2019-03-25 11:23:00,370 Church St, San Francisco,CA,94016 +165010,Lightning Charging Cable,1,14.95,2019-03-28 11:35:00,548 Center St, Austin,TX,73301 +165011,Apple Airpods Headphones,1,150.0,2019-03-12 10:44:00,250 Park St, San Francisco,CA,94016 +165012,iPhone,1,700.0,2019-03-25 13:22:00,375 Willow St, New York City,NY,10001 +165013,AAA Batteries (4-pack),2,2.99,2019-03-12 18:17:00,860 Hickory St, San Francisco,CA,94016 +165014,Apple Airpods Headphones,1,150.0,2019-03-23 20:09:00,798 South St, San Francisco,CA,94016 +165015,Apple Airpods Headphones,1,150.0,2019-03-17 00:40:00,370 Jackson St, New York City,NY,10001 +165016,Lightning Charging Cable,1,14.95,2019-03-30 10:57:00,104 Willow St, San Francisco,CA,94016 +165017,27in FHD Monitor,1,149.99,2019-03-22 21:45:00,294 South St, New York City,NY,10001 +165018,Wired Headphones,1,11.99,2019-03-29 18:25:00,909 Lincoln St, San Francisco,CA,94016 +165019,USB-C Charging Cable,1,11.95,2019-03-20 20:08:00,538 Main St, San Francisco,CA,94016 +165020,Google Phone,1,600.0,2019-03-02 10:33:00,840 1st St, Dallas,TX,75001 +165021,ThinkPad Laptop,1,999.99,2019-03-19 13:01:00,225 Church St, New York City,NY,10001 +165022,AAA Batteries (4-pack),1,2.99,2019-03-17 11:53:00,586 Washington St, San Francisco,CA,94016 +165023,Apple Airpods Headphones,1,150.0,2019-03-10 21:05:00,102 Sunset St, New York City,NY,10001 +165024,AAA Batteries (4-pack),2,2.99,2019-03-15 18:13:00,121 Park St, San Francisco,CA,94016 +165025,AAA Batteries (4-pack),1,2.99,2019-03-19 16:28:00,61 Highland St, San Francisco,CA,94016 +165026,AAA Batteries (4-pack),3,2.99,2019-03-21 13:06:00,629 Chestnut St, New York City,NY,10001 +165027,Lightning Charging Cable,1,14.95,2019-03-03 11:10:00,411 North St, Los Angeles,CA,90001 +165028,Apple Airpods Headphones,1,150.0,2019-03-13 16:37:00,806 Maple St, Los Angeles,CA,90001 +165029,AA Batteries (4-pack),1,3.84,2019-03-04 16:44:00,157 Willow St, Los Angeles,CA,90001 +165030,AAA Batteries (4-pack),1,2.99,2019-03-13 17:21:00,478 West St, Austin,TX,73301 +165031,AAA Batteries (4-pack),2,2.99,2019-03-04 11:50:00,270 Meadow St, Seattle,WA,98101 +165032,Apple Airpods Headphones,1,150.0,2019-03-26 11:40:00,109 Willow St, Dallas,TX,75001 +165033,iPhone,1,700.0,2019-03-20 00:38:00,889 7th St, San Francisco,CA,94016 +165034,AA Batteries (4-pack),2,3.84,2019-03-27 13:57:00,406 Elm St, Boston,MA,02215 +165035,ThinkPad Laptop,1,999.99,2019-03-02 08:48:00,337 8th St, Dallas,TX,75001 +165036,27in 4K Gaming Monitor,1,389.99,2019-03-21 21:13:00,112 Johnson St, Austin,TX,73301 +165037,Lightning Charging Cable,1,14.95,2019-03-01 09:00:00,965 Washington St, San Francisco,CA,94016 +165038,USB-C Charging Cable,1,11.95,2019-03-09 18:26:00,397 Lake St, Austin,TX,73301 +165039,34in Ultrawide Monitor,1,379.99,2019-03-08 20:44:00,802 Chestnut St, Boston,MA,02215 +165040,AA Batteries (4-pack),1,3.84,2019-03-15 22:41:00,430 Meadow St, Dallas,TX,75001 +165041,LG Washing Machine,1,600.0,2019-03-18 09:31:00,848 Elm St, Atlanta,GA,30301 +165042,Apple Airpods Headphones,1,150.0,2019-03-04 21:35:00,419 Hill St, Dallas,TX,75001 +165043,27in FHD Monitor,1,149.99,2019-03-04 14:29:00,654 Chestnut St, San Francisco,CA,94016 +165044,Google Phone,1,600.0,2019-03-24 08:25:00,471 Park St, New York City,NY,10001 +165045,USB-C Charging Cable,1,11.95,2019-03-10 20:03:00,772 2nd St, Portland,OR,97035 +165046,Bose SoundSport Headphones,1,99.99,2019-03-18 13:23:00,328 Center St, Atlanta,GA,30301 +165047,Bose SoundSport Headphones,1,99.99,2019-03-03 19:11:00,351 Hill St, Boston,MA,02215 +165048,AA Batteries (4-pack),1,3.84,2019-03-16 11:23:00,486 Jefferson St, Portland,OR,97035 +165049,AAA Batteries (4-pack),2,2.99,2019-03-22 22:28:00,993 Hickory St, New York City,NY,10001 +165050,Google Phone,1,600.0,2019-03-25 21:31:00,15 Jackson St, Los Angeles,CA,90001 +165051,Vareebadd Phone,1,400.0,2019-03-16 00:07:00,554 Chestnut St, San Francisco,CA,94016 +165051,USB-C Charging Cable,1,11.95,2019-03-16 00:07:00,554 Chestnut St, San Francisco,CA,94016 +165052,Apple Airpods Headphones,1,150.0,2019-03-07 10:51:00,368 North St, Los Angeles,CA,90001 +165053,20in Monitor,1,109.99,2019-03-11 13:23:00,809 Hill St, Los Angeles,CA,90001 +165054,USB-C Charging Cable,1,11.95,2019-03-27 12:09:00,227 8th St, Boston,MA,02215 +165055,Lightning Charging Cable,1,14.95,2019-03-04 20:44:00,382 1st St, Los Angeles,CA,90001 +165056,AA Batteries (4-pack),2,3.84,2019-03-24 23:31:00,945 14th St, San Francisco,CA,94016 +165057,ThinkPad Laptop,1,999.99,2019-03-21 23:09:00,930 Dogwood St, New York City,NY,10001 +165058,27in 4K Gaming Monitor,1,389.99,2019-03-31 10:17:00,796 10th St, San Francisco,CA,94016 +165059,AAA Batteries (4-pack),3,2.99,2019-03-11 09:52:00,140 Sunset St, Portland,ME,04101 +165060,Bose SoundSport Headphones,1,99.99,2019-03-17 17:42:00,859 Main St, Seattle,WA,98101 +165061,Wired Headphones,1,11.99,2019-03-29 10:40:00,83 Adams St, San Francisco,CA,94016 +165062,AA Batteries (4-pack),1,3.84,2019-03-31 20:46:00,601 Maple St, San Francisco,CA,94016 +165063,AAA Batteries (4-pack),1,2.99,2019-03-13 20:43:00,156 Cherry St, San Francisco,CA,94016 +165064,Wired Headphones,1,11.99,2019-03-08 19:36:00,938 4th St, San Francisco,CA,94016 +165065,27in FHD Monitor,1,149.99,2019-03-17 09:54:00,558 Cherry St, Austin,TX,73301 +165066,AA Batteries (4-pack),1,3.84,2019-03-10 12:24:00,495 11th St, San Francisco,CA,94016 +165067,AA Batteries (4-pack),2,3.84,2019-03-17 20:54:00,184 Cherry St, Los Angeles,CA,90001 +165068,Apple Airpods Headphones,1,150.0,2019-03-17 20:58:00,623 11th St, Los Angeles,CA,90001 +165069,AAA Batteries (4-pack),1,2.99,2019-03-22 16:20:00,357 South St, Boston,MA,02215 +165070,AA Batteries (4-pack),3,3.84,2019-03-29 17:37:00,679 Ridge St, New York City,NY,10001 +165071,AA Batteries (4-pack),1,3.84,2019-03-31 13:02:00,142 Forest St, New York City,NY,10001 +165072,USB-C Charging Cable,1,11.95,2019-03-28 20:22:00,412 West St, Atlanta,GA,30301 +165073,27in FHD Monitor,1,149.99,2019-03-14 21:37:00,953 13th St, San Francisco,CA,94016 +165074,AAA Batteries (4-pack),1,2.99,2019-03-04 16:40:00,761 Cherry St, Los Angeles,CA,90001 +165075,34in Ultrawide Monitor,1,379.99,2019-03-22 23:09:00,495 South St, Seattle,WA,98101 +165076,USB-C Charging Cable,1,11.95,2019-03-13 11:47:00,149 Church St, San Francisco,CA,94016 +165077,Wired Headphones,1,11.99,2019-03-21 23:38:00,393 South St, Atlanta,GA,30301 +165078,Wired Headphones,1,11.99,2019-03-26 14:08:00,957 Adams St, Los Angeles,CA,90001 +165079,AA Batteries (4-pack),1,3.84,2019-03-24 19:17:00,953 Johnson St, Boston,MA,02215 +165080,AAA Batteries (4-pack),1,2.99,2019-03-05 15:37:00,826 Walnut St, Austin,TX,73301 +165081,iPhone,1,700.0,2019-03-08 14:42:00,549 Lake St, Austin,TX,73301 +165082,AAA Batteries (4-pack),1,2.99,2019-03-13 11:31:00,697 2nd St, Boston,MA,02215 +165083,Google Phone,1,600.0,2019-03-12 18:38:00,914 Willow St, Los Angeles,CA,90001 +165084,Bose SoundSport Headphones,1,99.99,2019-03-10 15:12:00,134 Ridge St, Boston,MA,02215 +165085,Wired Headphones,1,11.99,2019-03-07 14:31:00,239 Elm St, Atlanta,GA,30301 +165086,AAA Batteries (4-pack),1,2.99,2019-03-02 18:02:00,617 Jackson St, San Francisco,CA,94016 +165087,AA Batteries (4-pack),1,3.84,2019-03-22 12:31:00,689 1st St, Los Angeles,CA,90001 +165088,Vareebadd Phone,1,400.0,2019-03-26 18:24:00,158 Madison St, San Francisco,CA,94016 +165089,Wired Headphones,1,11.99,2019-03-18 04:42:00,128 South St, New York City,NY,10001 +165090,Google Phone,1,600.0,2019-03-05 13:59:00,607 Center St, San Francisco,CA,94016 +165091,Bose SoundSport Headphones,1,99.99,2019-03-15 19:38:00,958 South St, San Francisco,CA,94016 +165092,USB-C Charging Cable,2,11.95,2019-03-26 12:25:00,15 Ridge St, Atlanta,GA,30301 +165093,27in FHD Monitor,1,149.99,2019-03-06 14:17:00,389 Elm St, Los Angeles,CA,90001 +165094,USB-C Charging Cable,1,11.95,2019-03-08 18:50:00,449 Maple St, Boston,MA,02215 +165095,Apple Airpods Headphones,1,150.0,2019-03-09 19:52:00,670 Chestnut St, Austin,TX,73301 +165096,Wired Headphones,1,11.99,2019-03-08 16:13:00,854 Walnut St, Portland,OR,97035 +165097,Wired Headphones,1,11.99,2019-03-03 18:46:00,975 Center St, Boston,MA,02215 +165098,AAA Batteries (4-pack),2,2.99,2019-03-16 10:01:00,991 Madison St, Atlanta,GA,30301 +165099,Apple Airpods Headphones,1,150.0,2019-03-07 19:29:00,218 10th St, Atlanta,GA,30301 +165100,ThinkPad Laptop,1,999.99,2019-03-12 21:31:00,870 Center St, New York City,NY,10001 +165101,Bose SoundSport Headphones,1,99.99,2019-03-17 13:40:00,795 Pine St, Los Angeles,CA,90001 +165102,AAA Batteries (4-pack),1,2.99,2019-03-01 12:25:00,588 Main St, Los Angeles,CA,90001 +165103,AA Batteries (4-pack),1,3.84,2019-03-06 19:20:00,140 Cherry St, Dallas,TX,75001 +165103,Google Phone,1,600.0,2019-03-06 19:20:00,140 Cherry St, Dallas,TX,75001 +165104,Macbook Pro Laptop,1,1700.0,2019-03-29 23:58:00,437 North St, San Francisco,CA,94016 +165105,AAA Batteries (4-pack),1,2.99,2019-03-09 13:06:00,653 Jackson St, Los Angeles,CA,90001 +165106,AAA Batteries (4-pack),1,2.99,2019-03-22 20:36:00,839 Elm St, Los Angeles,CA,90001 +165107,AA Batteries (4-pack),2,3.84,2019-03-12 07:58:00,665 Lakeview St, Austin,TX,73301 +165108,Wired Headphones,1,11.99,2019-03-05 16:00:00,855 Madison St, San Francisco,CA,94016 +165109,Bose SoundSport Headphones,1,99.99,2019-03-08 08:05:00,403 10th St, Seattle,WA,98101 +165110,AAA Batteries (4-pack),2,2.99,2019-03-10 11:23:00,133 Walnut St, Boston,MA,02215 +165111,27in FHD Monitor,1,149.99,2019-03-08 11:37:00,849 13th St, Atlanta,GA,30301 +165112,AAA Batteries (4-pack),2,2.99,2019-03-01 18:48:00,232 Hill St, Los Angeles,CA,90001 +165113,AAA Batteries (4-pack),1,2.99,2019-03-12 15:12:00,755 Spruce St, San Francisco,CA,94016 +165114,27in 4K Gaming Monitor,1,389.99,2019-03-09 23:14:00,977 West St, Portland,OR,97035 +165115,Google Phone,1,600.0,2019-03-22 22:37:00,52 6th St, New York City,NY,10001 +165115,Bose SoundSport Headphones,1,99.99,2019-03-22 22:37:00,52 6th St, New York City,NY,10001 +165116,AAA Batteries (4-pack),1,2.99,2019-03-08 10:52:00,607 4th St, Portland,OR,97035 +165117,AAA Batteries (4-pack),1,2.99,2019-03-01 09:15:00,29 7th St, New York City,NY,10001 +165118,AA Batteries (4-pack),1,3.84,2019-03-07 23:24:00,68 Lincoln St, Austin,TX,73301 +165119,Macbook Pro Laptop,1,1700.0,2019-03-11 09:58:00,770 Cedar St, Los Angeles,CA,90001 +165120,Lightning Charging Cable,1,14.95,2019-03-22 09:48:00,117 5th St, New York City,NY,10001 +165121,iPhone,1,700.0,2019-03-30 16:20:00,597 11th St, Dallas,TX,75001 +165122,USB-C Charging Cable,1,11.95,2019-03-29 21:29:00,87 Adams St, Seattle,WA,98101 +165122,Apple Airpods Headphones,1,150.0,2019-03-29 21:29:00,87 Adams St, Seattle,WA,98101 +165123,Wired Headphones,2,11.99,2019-03-18 14:42:00,748 Meadow St, San Francisco,CA,94016 +165123,Lightning Charging Cable,1,14.95,2019-03-18 14:42:00,748 Meadow St, San Francisco,CA,94016 +165124,ThinkPad Laptop,1,999.99,2019-03-27 20:29:00,546 Wilson St, New York City,NY,10001 +165125,AA Batteries (4-pack),1,3.84,2019-03-27 07:10:00,278 Cherry St, Los Angeles,CA,90001 +165126,AAA Batteries (4-pack),1,2.99,2019-03-21 22:20:00,138 River St, Seattle,WA,98101 +165127,AAA Batteries (4-pack),3,2.99,2019-03-23 19:34:00,857 8th St, San Francisco,CA,94016 +165128,27in FHD Monitor,1,149.99,2019-03-07 18:30:00,926 West St, Atlanta,GA,30301 +165129,USB-C Charging Cable,1,11.95,2019-03-02 09:11:00,772 Wilson St, San Francisco,CA,94016 +165129,iPhone,1,700.0,2019-03-02 09:11:00,772 Wilson St, San Francisco,CA,94016 +165130,AA Batteries (4-pack),2,3.84,2019-03-26 06:28:00,538 River St, Boston,MA,02215 +165131,Flatscreen TV,1,300.0,2019-03-12 11:00:00,187 4th St, Los Angeles,CA,90001 +165132,iPhone,1,700.0,2019-03-16 20:27:00,443 11th St, San Francisco,CA,94016 +165133,Wired Headphones,1,11.99,2019-03-29 13:58:00,190 12th St, Portland,OR,97035 +165134,Google Phone,1,600.0,2019-03-22 22:55:00,82 South St, Boston,MA,02215 +165135,LG Dryer,1,600.0,2019-03-12 13:19:00,274 Center St, San Francisco,CA,94016 +165136,USB-C Charging Cable,1,11.95,2019-03-16 06:20:00,720 Highland St, San Francisco,CA,94016 +165137,27in FHD Monitor,1,149.99,2019-03-21 22:28:00,82 Church St, Seattle,WA,98101 +165138,Bose SoundSport Headphones,1,99.99,2019-03-15 17:07:00,141 4th St, Dallas,TX,75001 +165139,AA Batteries (4-pack),1,3.84,2019-03-25 12:51:00,724 7th St, Atlanta,GA,30301 +165140,Lightning Charging Cable,1,14.95,2019-03-16 12:29:00,654 Elm St, New York City,NY,10001 +165141,Wired Headphones,1,11.99,2019-03-23 10:59:00,10 5th St, Austin,TX,73301 +165142,AA Batteries (4-pack),1,3.84,2019-03-31 19:44:00,211 Johnson St, Dallas,TX,75001 +165143,AAA Batteries (4-pack),2,2.99,2019-03-31 02:46:00,754 Lincoln St, New York City,NY,10001 +165144,AAA Batteries (4-pack),2,2.99,2019-03-26 20:46:00,875 Elm St, Atlanta,GA,30301 +165145,20in Monitor,1,109.99,2019-03-24 13:02:00,992 Cedar St, San Francisco,CA,94016 +165146,iPhone,1,700.0,2019-03-04 18:39:00,319 Wilson St, Atlanta,GA,30301 +165147,Lightning Charging Cable,1,14.95,2019-03-19 19:36:00,884 12th St, Seattle,WA,98101 +165148,iPhone,1,700.0,2019-03-02 22:42:00,112 Cedar St, San Francisco,CA,94016 +165149,Apple Airpods Headphones,1,150.0,2019-03-18 21:57:00,707 Lincoln St, New York City,NY,10001 +165150,USB-C Charging Cable,1,11.95,2019-03-29 14:34:00,173 9th St, Los Angeles,CA,90001 +165151,AA Batteries (4-pack),2,3.84,2019-03-01 09:21:00,923 Park St, Portland,OR,97035 +165152,Apple Airpods Headphones,1,150.0,2019-03-12 00:10:00,508 12th St, Los Angeles,CA,90001 +165153,Lightning Charging Cable,1,14.95,2019-03-08 15:04:00,4 Lakeview St, Los Angeles,CA,90001 +165154,AAA Batteries (4-pack),1,2.99,2019-03-17 09:34:00,699 14th St, San Francisco,CA,94016 +165155,USB-C Charging Cable,1,11.95,2019-03-28 23:01:00,409 11th St, San Francisco,CA,94016 +165156,Lightning Charging Cable,1,14.95,2019-03-16 12:53:00,562 Highland St, Los Angeles,CA,90001 +165157,Bose SoundSport Headphones,1,99.99,2019-03-14 13:09:00,390 8th St, New York City,NY,10001 +165158,iPhone,1,700.0,2019-03-11 11:58:00,91 Sunset St, New York City,NY,10001 +165158,Lightning Charging Cable,1,14.95,2019-03-11 11:58:00,91 Sunset St, New York City,NY,10001 +165159,Google Phone,1,600.0,2019-03-21 18:40:00,254 4th St, Austin,TX,73301 +165160,Apple Airpods Headphones,1,150.0,2019-03-03 19:06:00,976 2nd St, Portland,OR,97035 +165161,Wired Headphones,1,11.99,2019-03-19 23:31:00,322 Center St, Seattle,WA,98101 +165162,Lightning Charging Cable,1,14.95,2019-03-21 10:49:00,50 14th St, Seattle,WA,98101 +165163,Lightning Charging Cable,1,14.95,2019-03-09 13:46:00,225 Park St, San Francisco,CA,94016 +165164,AAA Batteries (4-pack),1,2.99,2019-03-08 00:47:00,523 2nd St, New York City,NY,10001 +165165,27in FHD Monitor,1,149.99,2019-03-22 20:15:00,476 South St, Austin,TX,73301 +165166,AA Batteries (4-pack),2,3.84,2019-03-17 15:50:00,918 Forest St, Los Angeles,CA,90001 +165167,Bose SoundSport Headphones,1,99.99,2019-03-08 19:32:00,492 Johnson St, Dallas,TX,75001 +165168,Apple Airpods Headphones,1,150.0,2019-03-01 12:51:00,384 Dogwood St, Dallas,TX,75001 +165169,27in 4K Gaming Monitor,1,389.99,2019-03-26 20:48:00,273 Main St, Atlanta,GA,30301 +165170,Vareebadd Phone,1,400.0,2019-03-13 18:07:00,690 Park St, San Francisco,CA,94016 +165171,Lightning Charging Cable,1,14.95,2019-03-12 14:38:00,927 Elm St, San Francisco,CA,94016 +165172,Lightning Charging Cable,1,14.95,2019-03-18 21:28:00,307 Elm St, New York City,NY,10001 +165173,AA Batteries (4-pack),1,3.84,2019-03-19 16:47:00,345 2nd St, New York City,NY,10001 +165174,LG Dryer,1,600.0,2019-03-24 18:03:00,714 1st St, San Francisco,CA,94016 +165175,Apple Airpods Headphones,1,150.0,2019-03-14 12:50:00,942 Dogwood St, Seattle,WA,98101 +165176,AAA Batteries (4-pack),1,2.99,2019-03-15 20:38:00,33 2nd St, Los Angeles,CA,90001 +165177,LG Dryer,1,600.0,2019-03-07 18:41:00,428 Pine St, San Francisco,CA,94016 +165178,Lightning Charging Cable,1,14.95,2019-03-06 18:45:00,690 Maple St, San Francisco,CA,94016 +165179,USB-C Charging Cable,1,11.95,2019-03-30 13:25:00,311 Walnut St, Atlanta,GA,30301 +165180,Lightning Charging Cable,1,14.95,2019-03-24 12:57:00,597 5th St, Seattle,WA,98101 +165181,Bose SoundSport Headphones,1,99.99,2019-03-06 20:37:00,722 North St, Boston,MA,02215 +165182,AAA Batteries (4-pack),1,2.99,2019-03-10 10:24:00,477 Main St, Austin,TX,73301 +165183,iPhone,1,700.0,2019-03-15 13:49:00,206 Forest St, New York City,NY,10001 +165184,USB-C Charging Cable,1,11.95,2019-03-08 19:03:00,696 Forest St, Boston,MA,02215 +165185,27in 4K Gaming Monitor,1,389.99,2019-03-18 09:32:00,71 Chestnut St, Dallas,TX,75001 +165186,Wired Headphones,1,11.99,2019-03-03 14:07:00,481 6th St, Portland,OR,97035 +165187,Wired Headphones,1,11.99,2019-03-12 19:38:00,446 Jackson St, Seattle,WA,98101 +165188,iPhone,1,700.0,2019-03-20 18:48:00,253 Ridge St, Boston,MA,02215 +165189,Apple Airpods Headphones,1,150.0,2019-03-06 19:41:00,323 Sunset St, Atlanta,GA,30301 +165190,AA Batteries (4-pack),3,3.84,2019-03-31 17:48:00,799 Center St, Dallas,TX,75001 +165191,AA Batteries (4-pack),1,3.84,2019-03-04 09:26:00,288 Adams St, San Francisco,CA,94016 +165192,34in Ultrawide Monitor,1,379.99,2019-03-18 10:37:00,283 Jefferson St, Portland,OR,97035 +165193,AA Batteries (4-pack),1,3.84,2019-03-29 08:35:00,436 West St, Dallas,TX,75001 +165194,AAA Batteries (4-pack),1,2.99,2019-03-13 12:53:00,646 Park St, New York City,NY,10001 +165195,27in FHD Monitor,1,149.99,2019-03-04 13:48:00,355 Pine St, Atlanta,GA,30301 +165196,Lightning Charging Cable,2,14.95,2019-03-29 08:31:00,305 Pine St, Austin,TX,73301 +165197,Apple Airpods Headphones,1,150.0,2019-03-22 22:44:00,653 River St, Atlanta,GA,30301 +165197,Macbook Pro Laptop,1,1700.0,2019-03-22 22:44:00,653 River St, Atlanta,GA,30301 +165198,AAA Batteries (4-pack),1,2.99,2019-03-13 18:43:00,718 11th St, Los Angeles,CA,90001 +165199,USB-C Charging Cable,1,11.95,2019-03-23 11:33:00,428 Walnut St, San Francisco,CA,94016 +165200,USB-C Charging Cable,2,11.95,2019-03-25 14:41:00,329 Washington St, Austin,TX,73301 +165201,iPhone,1,700.0,2019-03-11 10:19:00,741 5th St, San Francisco,CA,94016 +165202,Bose SoundSport Headphones,1,99.99,2019-03-04 20:20:00,316 Jackson St, San Francisco,CA,94016 +165203,27in 4K Gaming Monitor,1,389.99,2019-03-07 22:11:00,586 Elm St, San Francisco,CA,94016 +165204,Bose SoundSport Headphones,1,99.99,2019-03-21 12:16:00,728 West St, Los Angeles,CA,90001 +165205,27in FHD Monitor,1,149.99,2019-03-13 12:07:00,500 Johnson St, Seattle,WA,98101 +165206,USB-C Charging Cable,1,11.95,2019-03-07 23:41:00,530 Center St, San Francisco,CA,94016 +165207,Lightning Charging Cable,1,14.95,2019-03-20 09:25:00,317 West St, Seattle,WA,98101 +165208,Flatscreen TV,1,300.0,2019-03-27 18:13:00,292 Forest St, San Francisco,CA,94016 +165209,Flatscreen TV,1,300.0,2019-03-08 00:53:00,539 Church St, Atlanta,GA,30301 +165210,34in Ultrawide Monitor,1,379.99,2019-03-29 16:15:00,383 Cedar St, Boston,MA,02215 +165211,Wired Headphones,1,11.99,2019-03-03 13:37:00,270 Cherry St, San Francisco,CA,94016 +165212,AA Batteries (4-pack),1,3.84,2019-03-29 21:09:00,33 Cedar St, San Francisco,CA,94016 +165213,Wired Headphones,1,11.99,2019-03-18 17:21:00,86 Main St, San Francisco,CA,94016 +165214,AA Batteries (4-pack),2,3.84,2019-03-16 15:37:00,958 Meadow St, Los Angeles,CA,90001 +165215,AAA Batteries (4-pack),1,2.99,2019-03-08 23:21:00,434 Chestnut St, Seattle,WA,98101 +165216,USB-C Charging Cable,1,11.95,2019-03-17 20:24:00,538 Lakeview St, Los Angeles,CA,90001 +165217,USB-C Charging Cable,2,11.95,2019-03-10 12:56:00,245 Willow St, Boston,MA,02215 +165217,ThinkPad Laptop,1,999.99,2019-03-10 12:56:00,245 Willow St, Boston,MA,02215 +165218,Bose SoundSport Headphones,1,99.99,2019-03-23 10:29:00,566 Hill St, New York City,NY,10001 +165219,34in Ultrawide Monitor,1,379.99,2019-03-03 19:20:00,919 13th St, San Francisco,CA,94016 +165220,AAA Batteries (4-pack),3,2.99,2019-03-08 09:46:00,169 Lake St, Los Angeles,CA,90001 +165221,Apple Airpods Headphones,1,150.0,2019-03-12 07:39:00,599 8th St, San Francisco,CA,94016 +165222,Apple Airpods Headphones,1,150.0,2019-03-15 12:44:00,877 5th St, San Francisco,CA,94016 +165223,iPhone,1,700.0,2019-03-04 06:01:00,917 12th St, San Francisco,CA,94016 +165224,AAA Batteries (4-pack),1,2.99,2019-03-21 20:50:00,584 Main St, Boston,MA,02215 +165225,USB-C Charging Cable,1,11.95,2019-03-17 07:00:00,948 1st St, Los Angeles,CA,90001 +165226,Wired Headphones,1,11.99,2019-03-03 10:54:00,214 Spruce St, Portland,ME,04101 +165227,Bose SoundSport Headphones,1,99.99,2019-03-03 15:17:00,376 10th St, Dallas,TX,75001 +165228,AAA Batteries (4-pack),3,2.99,2019-03-27 09:28:00,812 Sunset St, Boston,MA,02215 +165229,Wired Headphones,1,11.99,2019-03-03 16:00:00,374 Washington St, Los Angeles,CA,90001 +165230,Apple Airpods Headphones,1,150.0,2019-03-16 02:16:00,403 Wilson St, Los Angeles,CA,90001 +165231,USB-C Charging Cable,2,11.95,2019-03-15 14:36:00,696 River St, Boston,MA,02215 +165232,27in FHD Monitor,1,149.99,2019-03-09 04:58:00,551 10th St, San Francisco,CA,94016 +165233,USB-C Charging Cable,1,11.95,2019-03-14 07:57:00,1 11th St, Atlanta,GA,30301 +165234,AAA Batteries (4-pack),1,2.99,2019-03-07 23:40:00,218 Ridge St, Portland,OR,97035 +165235,Lightning Charging Cable,1,14.95,2019-03-23 11:02:00,796 South St, Atlanta,GA,30301 +165236,Lightning Charging Cable,1,14.95,2019-03-09 15:28:00,432 Hickory St, New York City,NY,10001 +165237,Lightning Charging Cable,1,14.95,2019-03-16 19:26:00,218 9th St, Atlanta,GA,30301 +165238,AAA Batteries (4-pack),1,2.99,2019-03-19 01:27:00,620 Willow St, Los Angeles,CA,90001 +165239,Apple Airpods Headphones,1,150.0,2019-03-22 14:49:00,232 Lake St, Seattle,WA,98101 +165240,Lightning Charging Cable,1,14.95,2019-03-14 08:20:00,504 Church St, Los Angeles,CA,90001 +165241,Google Phone,1,600.0,2019-03-07 19:47:00,396 8th St, Los Angeles,CA,90001 +165241,USB-C Charging Cable,2,11.95,2019-03-07 19:47:00,396 8th St, Los Angeles,CA,90001 +165242,Bose SoundSport Headphones,1,99.99,2019-03-28 08:50:00,41 5th St, Portland,OR,97035 +165243,AAA Batteries (4-pack),1,2.99,2019-03-23 06:25:00,283 13th St, San Francisco,CA,94016 +165244,iPhone,1,700.0,2019-03-15 20:10:00,382 13th St, Atlanta,GA,30301 +165244,AA Batteries (4-pack),1,3.84,2019-03-15 20:10:00,382 13th St, Atlanta,GA,30301 +165245,AAA Batteries (4-pack),1,2.99,2019-03-17 12:02:00,287 5th St, Austin,TX,73301 +165246,USB-C Charging Cable,1,11.95,2019-03-19 11:14:00,173 Chestnut St, Austin,TX,73301 +165247,AA Batteries (4-pack),2,3.84,2019-03-24 09:21:00,644 South St, San Francisco,CA,94016 +165248,27in FHD Monitor,1,149.99,2019-03-11 12:45:00,782 Spruce St, Dallas,TX,75001 +165248,Lightning Charging Cable,1,14.95,2019-03-11 12:45:00,782 Spruce St, Dallas,TX,75001 +165249,Bose SoundSport Headphones,1,99.99,2019-03-18 11:29:00,637 4th St, Boston,MA,02215 +165250,USB-C Charging Cable,1,11.95,2019-03-03 05:23:00,430 South St, San Francisco,CA,94016 +165251,AA Batteries (4-pack),1,3.84,2019-03-10 11:20:00,880 Hill St, San Francisco,CA,94016 +165252,USB-C Charging Cable,1,11.95,2019-03-13 15:31:00,960 12th St, Austin,TX,73301 +165253,iPhone,1,700.0,2019-03-15 21:17:00,704 Church St, Los Angeles,CA,90001 +165254,AA Batteries (4-pack),1,3.84,2019-03-30 20:53:00,872 West St, Portland,OR,97035 +165255,Vareebadd Phone,1,400.0,2019-03-09 18:46:00,400 Center St, San Francisco,CA,94016 +165256,Macbook Pro Laptop,1,1700.0,2019-03-05 17:41:00,808 8th St, Boston,MA,02215 +165257,USB-C Charging Cable,1,11.95,2019-03-05 10:20:00,583 6th St, San Francisco,CA,94016 +165258,AA Batteries (4-pack),1,3.84,2019-03-18 13:39:00,64 Church St, Portland,OR,97035 +165259,Apple Airpods Headphones,1,150.0,2019-03-11 19:51:00,214 10th St, Atlanta,GA,30301 +165260,34in Ultrawide Monitor,1,379.99,2019-03-03 17:22:00,716 Washington St, San Francisco,CA,94016 +165261,AA Batteries (4-pack),3,3.84,2019-03-27 01:01:00,627 Jackson St, San Francisco,CA,94016 +165262,Wired Headphones,1,11.99,2019-03-08 19:05:00,642 Cedar St, New York City,NY,10001 +165263,AA Batteries (4-pack),2,3.84,2019-03-13 19:06:00,711 Highland St, New York City,NY,10001 +165264,iPhone,1,700.0,2019-03-27 13:33:00,926 Spruce St, Dallas,TX,75001 +165265,27in 4K Gaming Monitor,1,389.99,2019-03-06 02:10:00,115 South St, San Francisco,CA,94016 +165266,27in 4K Gaming Monitor,1,389.99,2019-03-01 21:37:00,941 Main St, San Francisco,CA,94016 +165267,AA Batteries (4-pack),1,3.84,2019-03-23 10:46:00,812 12th St, San Francisco,CA,94016 +165268,Wired Headphones,2,11.99,2019-03-17 22:48:00,72 13th St, San Francisco,CA,94016 +165269,AAA Batteries (4-pack),1,2.99,2019-03-24 12:01:00,465 Willow St, Portland,ME,04101 +165270,Google Phone,1,600.0,2019-03-27 03:04:00,192 Cherry St, Los Angeles,CA,90001 +165270,USB-C Charging Cable,1,11.95,2019-03-27 03:04:00,192 Cherry St, Los Angeles,CA,90001 +165271,Flatscreen TV,1,300.0,2019-03-12 21:45:00,244 South St, New York City,NY,10001 +165272,AAA Batteries (4-pack),1,2.99,2019-03-03 13:57:00,688 10th St, Austin,TX,73301 +165273,AAA Batteries (4-pack),1,2.99,2019-03-29 00:38:00,212 Hill St, Los Angeles,CA,90001 +165274,Flatscreen TV,1,300.0,2019-03-21 17:45:00,397 South St, San Francisco,CA,94016 +165275,Wired Headphones,1,11.99,2019-03-22 10:47:00,794 Johnson St, San Francisco,CA,94016 +165276,AA Batteries (4-pack),1,3.84,2019-03-23 15:44:00,60 Washington St, Los Angeles,CA,90001 +165277,USB-C Charging Cable,1,11.95,2019-03-01 23:43:00,222 Washington St, Boston,MA,02215 +165278,Google Phone,1,600.0,2019-03-05 15:48:00,224 5th St, New York City,NY,10001 +165279,Macbook Pro Laptop,1,1700.0,2019-03-16 13:21:00,761 Pine St, Austin,TX,73301 +165280,AA Batteries (4-pack),1,3.84,2019-03-19 19:49:00,510 Ridge St, Los Angeles,CA,90001 +165281,AA Batteries (4-pack),1,3.84,2019-03-30 16:50:00,629 Willow St, Atlanta,GA,30301 +165282,AAA Batteries (4-pack),1,2.99,2019-03-17 17:50:00,128 2nd St, Los Angeles,CA,90001 +165283,27in FHD Monitor,1,149.99,2019-03-15 12:22:00,334 Elm St, San Francisco,CA,94016 +165284,Wired Headphones,1,11.99,2019-03-17 13:07:00,884 2nd St, Seattle,WA,98101 +165285,Wired Headphones,1,11.99,2019-03-05 08:57:00,982 Walnut St, Boston,MA,02215 +165286,20in Monitor,1,109.99,2019-03-26 18:00:00,133 9th St, San Francisco,CA,94016 +165287,AA Batteries (4-pack),1,3.84,2019-03-17 00:22:00,791 South St, San Francisco,CA,94016 +165288,AAA Batteries (4-pack),3,2.99,2019-03-11 22:41:00,700 6th St, San Francisco,CA,94016 +165289,AA Batteries (4-pack),1,3.84,2019-03-22 11:13:00,308 6th St, Portland,OR,97035 +165290,34in Ultrawide Monitor,1,379.99,2019-03-20 16:49:00,616 9th St, San Francisco,CA,94016 +165291,Bose SoundSport Headphones,1,99.99,2019-03-25 12:47:00,730 Chestnut St, San Francisco,CA,94016 +165292,Lightning Charging Cable,2,14.95,2019-03-08 11:33:00,934 Spruce St, Boston,MA,02215 +165293,Wired Headphones,1,11.99,2019-03-16 21:57:00,670 11th St, Dallas,TX,75001 +165294,USB-C Charging Cable,1,11.95,2019-03-26 13:13:00,436 Lakeview St, Boston,MA,02215 +165295,AAA Batteries (4-pack),2,2.99,2019-03-23 08:54:00,752 14th St, Los Angeles,CA,90001 +165296,AAA Batteries (4-pack),1,2.99,2019-03-12 15:52:00,733 Sunset St, San Francisco,CA,94016 +165297,AAA Batteries (4-pack),2,2.99,2019-03-08 11:34:00,623 Madison St, San Francisco,CA,94016 +165298,Apple Airpods Headphones,1,150.0,2019-03-19 17:46:00,409 Jackson St, Seattle,WA,98101 +165299,Lightning Charging Cable,1,14.95,2019-03-18 19:22:00,7 Cherry St, Dallas,TX,75001 +165300,Google Phone,1,600.0,2019-03-19 14:05:00,816 Adams St, Portland,OR,97035 +165301,AAA Batteries (4-pack),3,2.99,2019-03-08 15:42:00,767 Cedar St, San Francisco,CA,94016 +165302,27in 4K Gaming Monitor,1,389.99,2019-03-14 11:55:00,489 Lakeview St, Atlanta,GA,30301 +165303,USB-C Charging Cable,1,11.95,2019-03-03 23:02:00,678 Lake St, Atlanta,GA,30301 +165304,ThinkPad Laptop,1,999.99,2019-03-30 20:39:00,562 River St, San Francisco,CA,94016 +165305,Vareebadd Phone,1,400.0,2019-03-05 19:24:00,393 Highland St, San Francisco,CA,94016 +165306,USB-C Charging Cable,1,11.95,2019-03-02 22:58:00,444 4th St, Dallas,TX,75001 +165307,Wired Headphones,2,11.99,2019-03-22 12:42:00,74 8th St, Dallas,TX,75001 +165308,Wired Headphones,1,11.99,2019-03-30 19:56:00,867 9th St, San Francisco,CA,94016 +165309,27in 4K Gaming Monitor,1,389.99,2019-03-26 20:49:00,399 Center St, Boston,MA,02215 +165310,Apple Airpods Headphones,1,150.0,2019-03-03 04:47:00,105 West St, Boston,MA,02215 +165311,AAA Batteries (4-pack),1,2.99,2019-03-23 20:52:00,268 Walnut St, Los Angeles,CA,90001 +165312,Lightning Charging Cable,1,14.95,2019-03-06 19:17:00,479 6th St, Austin,TX,73301 +165313,USB-C Charging Cable,1,11.95,2019-03-28 13:05:00,525 Spruce St, Seattle,WA,98101 +165314,Lightning Charging Cable,1,14.95,2019-03-23 17:35:00,886 11th St, Los Angeles,CA,90001 +165315,USB-C Charging Cable,1,11.95,2019-03-14 20:22:00,354 Hill St, San Francisco,CA,94016 +165316,iPhone,1,700.0,2019-03-29 04:42:00,886 North St, Boston,MA,02215 +165317,Lightning Charging Cable,1,14.95,2019-03-24 08:50:00,848 Cherry St, Seattle,WA,98101 +165318,Macbook Pro Laptop,1,1700.0,2019-03-29 21:08:00,676 Madison St, Boston,MA,02215 +165319,Bose SoundSport Headphones,1,99.99,2019-03-18 19:19:00,797 Johnson St, Dallas,TX,75001 +165320,34in Ultrawide Monitor,1,379.99,2019-03-30 23:45:00,541 Hickory St, Dallas,TX,75001 +165321,Apple Airpods Headphones,1,150.0,2019-03-09 10:04:00,128 8th St, Atlanta,GA,30301 +165322,34in Ultrawide Monitor,1,379.99,2019-03-24 13:59:00,854 Chestnut St, Seattle,WA,98101 +165323,Bose SoundSport Headphones,1,99.99,2019-03-21 09:05:00,183 2nd St, Boston,MA,02215 +165324,USB-C Charging Cable,1,11.95,2019-03-31 09:21:00,572 4th St, Los Angeles,CA,90001 +165325,34in Ultrawide Monitor,1,379.99,2019-03-20 19:41:00,156 Pine St, San Francisco,CA,94016 +165326,Bose SoundSport Headphones,1,99.99,2019-03-29 06:06:00,787 Lakeview St, New York City,NY,10001 +165327,Lightning Charging Cable,1,14.95,2019-03-18 19:12:00,300 Highland St, Austin,TX,73301 +165328,AAA Batteries (4-pack),1,2.99,2019-03-29 13:42:00,576 Meadow St, Austin,TX,73301 +165329,AAA Batteries (4-pack),1,2.99,2019-03-17 20:20:00,695 10th St, Atlanta,GA,30301 +165330,Flatscreen TV,1,300.0,2019-03-07 03:54:00,313 Sunset St, Los Angeles,CA,90001 +165331,Lightning Charging Cable,1,14.95,2019-03-10 10:50:00,534 North St, San Francisco,CA,94016 +165332,27in 4K Gaming Monitor,1,389.99,2019-03-18 16:28:00,190 River St, Portland,OR,97035 +165333,Bose SoundSport Headphones,1,99.99,2019-03-04 10:45:00,832 Forest St, Austin,TX,73301 +165334,34in Ultrawide Monitor,1,379.99,2019-03-31 21:55:00,484 Highland St, Los Angeles,CA,90001 +165335,AAA Batteries (4-pack),1,2.99,2019-03-29 18:08:00,753 7th St, New York City,NY,10001 +165336,Lightning Charging Cable,1,14.95,2019-03-10 12:20:00,567 Cherry St, Los Angeles,CA,90001 +165337,ThinkPad Laptop,1,999.99,2019-03-12 23:00:00,357 Willow St, Los Angeles,CA,90001 +165338,Vareebadd Phone,1,400.0,2019-03-19 20:23:00,152 1st St, Atlanta,GA,30301 +165339,27in FHD Monitor,1,149.99,2019-03-09 15:37:00,845 Lake St, New York City,NY,10001 +165340,34in Ultrawide Monitor,1,379.99,2019-03-26 19:15:00,762 Lake St, New York City,NY,10001 +165341,27in FHD Monitor,1,149.99,2019-03-15 18:23:00,699 Cherry St, Dallas,TX,75001 +165342,USB-C Charging Cable,1,11.95,2019-03-21 07:14:00,219 North St, New York City,NY,10001 +165343,USB-C Charging Cable,1,11.95,2019-03-31 06:31:00,435 Spruce St, Seattle,WA,98101 +165344,Macbook Pro Laptop,1,1700.0,2019-03-19 21:53:00,942 Cherry St, Atlanta,GA,30301 +165345,AAA Batteries (4-pack),1,2.99,2019-03-16 19:14:00,598 Jackson St, Seattle,WA,98101 +165346,Apple Airpods Headphones,1,150.0,2019-03-30 17:34:00,336 Lincoln St, Boston,MA,02215 +165347,Lightning Charging Cable,1,14.95,2019-03-25 12:34:00,717 Jefferson St, Portland,OR,97035 +165348,Flatscreen TV,1,300.0,2019-03-31 18:03:00,786 Cedar St, Portland,OR,97035 +165349,Wired Headphones,1,11.99,2019-03-02 08:28:00,942 Hill St, Austin,TX,73301 +165350,USB-C Charging Cable,1,11.95,2019-03-31 17:43:00,429 5th St, New York City,NY,10001 +165351,AAA Batteries (4-pack),1,2.99,2019-03-22 15:08:00,241 10th St, Seattle,WA,98101 +165352,USB-C Charging Cable,1,11.95,2019-03-25 22:58:00,486 Lakeview St, New York City,NY,10001 +165353,Wired Headphones,1,11.99,2019-03-10 14:18:00,690 Ridge St, Seattle,WA,98101 +165354,Lightning Charging Cable,1,14.95,2019-03-02 00:12:00,175 River St, Boston,MA,02215 +165355,AAA Batteries (4-pack),1,2.99,2019-03-28 06:05:00,881 Hill St, Dallas,TX,75001 +165356,iPhone,1,700.0,2019-03-22 20:32:00,282 7th St, Atlanta,GA,30301 +165357,Wired Headphones,1,11.99,2019-03-01 10:24:00,570 Walnut St, Portland,OR,97035 +165358,Apple Airpods Headphones,1,150.0,2019-03-08 12:48:00,502 Sunset St, Dallas,TX,75001 +165359,Lightning Charging Cable,1,14.95,2019-03-11 18:57:00,185 Hill St, Seattle,WA,98101 +165360,AAA Batteries (4-pack),2,2.99,2019-03-08 17:32:00,515 Washington St, San Francisco,CA,94016 +165361,Lightning Charging Cable,2,14.95,2019-03-04 10:41:00,40 Hickory St, Dallas,TX,75001 +165362,Lightning Charging Cable,1,14.95,2019-03-14 00:39:00,208 Cedar St, New York City,NY,10001 +165363,27in 4K Gaming Monitor,1,389.99,2019-03-07 09:53:00,915 11th St, New York City,NY,10001 +165364,iPhone,1,700.0,2019-03-15 19:08:00,541 Cedar St, San Francisco,CA,94016 +165365,AAA Batteries (4-pack),1,2.99,2019-03-28 20:06:00,626 13th St, San Francisco,CA,94016 +165366,27in 4K Gaming Monitor,1,389.99,2019-03-07 18:24:00,520 Willow St, San Francisco,CA,94016 +165367,AA Batteries (4-pack),1,3.84,2019-03-05 22:29:00,89 6th St, Boston,MA,02215 +165368,34in Ultrawide Monitor,1,379.99,2019-03-17 23:18:00,596 Lake St, Los Angeles,CA,90001 +165369,27in FHD Monitor,1,149.99,2019-03-07 16:52:00,240 Washington St, New York City,NY,10001 +165370,USB-C Charging Cable,1,11.95,2019-03-14 12:03:00,237 River St, Austin,TX,73301 +165371,USB-C Charging Cable,1,11.95,2019-03-03 19:39:00,640 Main St, Seattle,WA,98101 +165372,Macbook Pro Laptop,1,1700.0,2019-03-20 21:50:00,258 Elm St, San Francisco,CA,94016 +165373,iPhone,1,700.0,2019-03-24 13:00:00,214 12th St, Seattle,WA,98101 +165374,Wired Headphones,1,11.99,2019-03-26 13:34:00,145 10th St, San Francisco,CA,94016 +165375,Bose SoundSport Headphones,2,99.99,2019-03-13 11:07:00,874 Adams St, San Francisco,CA,94016 +165376,USB-C Charging Cable,1,11.95,2019-03-13 11:42:00,61 Pine St, Austin,TX,73301 +165377,34in Ultrawide Monitor,1,379.99,2019-03-02 17:25:00,913 Madison St, San Francisco,CA,94016 +165378,AAA Batteries (4-pack),1,2.99,2019-03-13 15:37:00,981 West St, Portland,OR,97035 +165379,Apple Airpods Headphones,1,150.0,2019-03-27 23:26:00,812 14th St, Portland,OR,97035 +165380,AA Batteries (4-pack),1,3.84,2019-03-03 20:11:00,281 14th St, Portland,OR,97035 +165381,AA Batteries (4-pack),1,3.84,2019-03-07 18:05:00,640 4th St, Los Angeles,CA,90001 +165382,Bose SoundSport Headphones,1,99.99,2019-03-16 09:57:00,659 Cedar St, San Francisco,CA,94016 +165383,Lightning Charging Cable,1,14.95,2019-03-16 17:10:00,344 Adams St, San Francisco,CA,94016 +165384,AAA Batteries (4-pack),1,2.99,2019-03-18 14:13:00,586 Adams St, New York City,NY,10001 +165385,Lightning Charging Cable,1,14.95,2019-03-04 12:10:00,589 Cedar St, Atlanta,GA,30301 +165386,27in FHD Monitor,1,149.99,2019-03-17 17:12:00,668 Madison St, Los Angeles,CA,90001 +165387,Flatscreen TV,1,300.0,2019-03-24 17:17:00,17 Lake St, San Francisco,CA,94016 +165388,Wired Headphones,1,11.99,2019-03-10 12:01:00,205 South St, New York City,NY,10001 +165389,20in Monitor,1,109.99,2019-03-04 16:43:00,633 West St, Atlanta,GA,30301 +165390,ThinkPad Laptop,1,999.99,2019-03-12 02:01:00,5 Hickory St, San Francisco,CA,94016 +165391,Lightning Charging Cable,1,14.95,2019-03-02 04:36:00,64 Hill St, Los Angeles,CA,90001 +165392,Wired Headphones,1,11.99,2019-03-18 09:31:00,157 Spruce St, Los Angeles,CA,90001 +165393,USB-C Charging Cable,1,11.95,2019-03-17 09:27:00,523 Center St, Atlanta,GA,30301 +165394,AAA Batteries (4-pack),1,2.99,2019-03-13 12:25:00,53 Madison St, Boston,MA,02215 +165395,Google Phone,1,600.0,2019-03-26 14:36:00,419 Pine St, Los Angeles,CA,90001 +165396,Apple Airpods Headphones,1,150.0,2019-03-19 10:00:00,357 Pine St, Boston,MA,02215 +165397,20in Monitor,1,109.99,2019-03-24 11:37:00,16 4th St, San Francisco,CA,94016 +165398,ThinkPad Laptop,1,999.99,2019-03-30 13:51:00,572 Cedar St, Atlanta,GA,30301 +165399,Bose SoundSport Headphones,2,99.99,2019-03-11 18:56:00,510 Maple St, New York City,NY,10001 +165400,USB-C Charging Cable,2,11.95,2019-03-12 23:49:00,794 Lake St, Portland,OR,97035 +165401,AA Batteries (4-pack),1,3.84,2019-03-01 09:55:00,114 Ridge St, New York City,NY,10001 +165402,27in FHD Monitor,1,149.99,2019-03-20 18:17:00,720 Washington St, Boston,MA,02215 +165403,Bose SoundSport Headphones,1,99.99,2019-03-08 17:09:00,100 Highland St, Austin,TX,73301 +165404,Lightning Charging Cable,1,14.95,2019-03-12 13:07:00,295 8th St, Dallas,TX,75001 +165405,AA Batteries (4-pack),1,3.84,2019-03-31 11:30:00,754 8th St, San Francisco,CA,94016 +165406,27in FHD Monitor,1,149.99,2019-03-23 18:50:00,939 North St, Los Angeles,CA,90001 +165407,20in Monitor,1,109.99,2019-03-08 18:16:00,62 Center St, San Francisco,CA,94016 +165408,Wired Headphones,1,11.99,2019-03-09 13:00:00,116 Church St, Boston,MA,02215 +165409,27in 4K Gaming Monitor,1,389.99,2019-03-09 12:02:00,274 Lincoln St, Los Angeles,CA,90001 +165410,USB-C Charging Cable,1,11.95,2019-03-20 14:42:00,422 Spruce St, Atlanta,GA,30301 +165410,AAA Batteries (4-pack),1,2.99,2019-03-20 14:42:00,422 Spruce St, Atlanta,GA,30301 +165411,USB-C Charging Cable,1,11.95,2019-03-10 21:20:00,343 Walnut St, Los Angeles,CA,90001 +165412,Lightning Charging Cable,1,14.95,2019-03-02 13:48:00,471 Johnson St, Dallas,TX,75001 +165413,USB-C Charging Cable,1,11.95,2019-03-27 07:25:00,290 12th St, Portland,OR,97035 +165414,AAA Batteries (4-pack),1,2.99,2019-03-30 00:09:00,640 1st St, Boston,MA,02215 +165415,AAA Batteries (4-pack),2,2.99,2019-03-28 10:25:00,567 2nd St, Dallas,TX,75001 +165416,ThinkPad Laptop,1,999.99,2019-03-22 14:21:00,178 Willow St, Austin,TX,73301 +165417,AA Batteries (4-pack),1,3.84,2019-03-28 19:13:00,10 6th St, San Francisco,CA,94016 +165418,AAA Batteries (4-pack),1,2.99,2019-03-22 20:20:00,911 Jackson St, New York City,NY,10001 +165419,USB-C Charging Cable,1,11.95,2019-03-21 08:55:00,959 Johnson St, Seattle,WA,98101 +165420,27in FHD Monitor,1,149.99,2019-03-06 15:59:00,242 10th St, Seattle,WA,98101 +165421,AAA Batteries (4-pack),1,2.99,2019-03-27 12:58:00,174 Jefferson St, Portland,ME,04101 +165422,Lightning Charging Cable,1,14.95,2019-03-03 23:24:00,465 7th St, Austin,TX,73301 +165423,USB-C Charging Cable,1,11.95,2019-03-05 09:42:00,123 Willow St, Atlanta,GA,30301 +165424,USB-C Charging Cable,1,11.95,2019-03-03 19:03:00,641 Forest St, New York City,NY,10001 +165425,AAA Batteries (4-pack),2,2.99,2019-03-25 16:49:00,828 Highland St, Los Angeles,CA,90001 +165426,AA Batteries (4-pack),1,3.84,2019-03-04 18:07:00,348 7th St, Dallas,TX,75001 +165427,Macbook Pro Laptop,1,1700.0,2019-03-01 18:50:00,670 Madison St, Portland,OR,97035 +165428,20in Monitor,1,109.99,2019-03-23 12:32:00,535 Madison St, San Francisco,CA,94016 +165429,Lightning Charging Cable,1,14.95,2019-03-25 20:30:00,167 Elm St, Boston,MA,02215 +165430,AA Batteries (4-pack),1,3.84,2019-03-21 22:41:00,633 Cherry St, Austin,TX,73301 +165431,Apple Airpods Headphones,1,150.0,2019-03-13 10:34:00,343 Main St, Los Angeles,CA,90001 +165432,AA Batteries (4-pack),1,3.84,2019-03-27 19:20:00,653 Center St, Seattle,WA,98101 +165433,Lightning Charging Cable,3,14.95,2019-03-13 18:51:00,130 Forest St, Los Angeles,CA,90001 +165434,AA Batteries (4-pack),3,3.84,2019-03-04 09:50:00,596 Spruce St, Boston,MA,02215 +165435,27in FHD Monitor,1,149.99,2019-03-10 20:02:00,668 Center St, San Francisco,CA,94016 +165436,Apple Airpods Headphones,1,150.0,2019-03-07 04:19:00,607 Adams St, New York City,NY,10001 +165437,Lightning Charging Cable,1,14.95,2019-03-19 14:12:00,865 Sunset St, New York City,NY,10001 +165438,Apple Airpods Headphones,1,150.0,2019-03-10 19:16:00,69 5th St, New York City,NY,10001 +165439,Apple Airpods Headphones,1,150.0,2019-03-23 11:53:00,444 Center St, San Francisco,CA,94016 +165440,Google Phone,1,600.0,2019-03-15 18:02:00,557 7th St, Dallas,TX,75001 +165441,AA Batteries (4-pack),2,3.84,2019-03-29 21:49:00,908 Maple St, Dallas,TX,75001 +165442,Wired Headphones,1,11.99,2019-03-25 22:03:00,312 Sunset St, San Francisco,CA,94016 +165443,Lightning Charging Cable,1,14.95,2019-03-18 01:34:00,309 Maple St, Seattle,WA,98101 +165444,Apple Airpods Headphones,1,150.0,2019-03-22 06:53:00,147 8th St, San Francisco,CA,94016 +165445,AA Batteries (4-pack),2,3.84,2019-03-17 11:13:00,686 13th St, San Francisco,CA,94016 +165446,AAA Batteries (4-pack),3,2.99,2019-03-04 00:03:00,694 Lincoln St, Boston,MA,02215 +165447,Wired Headphones,1,11.99,2019-03-25 15:14:00,828 Cedar St, San Francisco,CA,94016 +165448,Wired Headphones,1,11.99,2019-03-17 23:13:00,670 Hill St, Seattle,WA,98101 +165449,USB-C Charging Cable,1,11.95,2019-03-06 19:36:00,335 Walnut St, Los Angeles,CA,90001 +165450,34in Ultrawide Monitor,1,379.99,2019-03-20 14:45:00,174 Park St, Austin,TX,73301 +165451,AAA Batteries (4-pack),1,2.99,2019-03-27 19:13:00,440 Walnut St, Atlanta,GA,30301 +165452,Apple Airpods Headphones,1,150.0,2019-03-12 15:10:00,270 West St, Boston,MA,02215 +165453,34in Ultrawide Monitor,1,379.99,2019-03-27 00:10:00,46 Hickory St, Seattle,WA,98101 +165454,34in Ultrawide Monitor,1,379.99,2019-03-14 21:22:00,605 12th St, San Francisco,CA,94016 +165455,27in 4K Gaming Monitor,1,389.99,2019-03-11 18:13:00,240 2nd St, New York City,NY,10001 +165456,Wired Headphones,1,11.99,2019-03-13 20:11:00,739 Lake St, Los Angeles,CA,90001 +165457,AAA Batteries (4-pack),3,2.99,2019-03-24 23:01:00,276 2nd St, Seattle,WA,98101 +165458,Wired Headphones,1,11.99,2019-03-20 11:14:00,419 6th St, San Francisco,CA,94016 +165459,27in 4K Gaming Monitor,1,389.99,2019-03-08 19:31:00,331 Dogwood St, Los Angeles,CA,90001 +165460,LG Washing Machine,1,600.0,2019-03-06 11:38:00,814 Lincoln St, Los Angeles,CA,90001 +165461,ThinkPad Laptop,1,999.99,2019-03-09 18:40:00,498 Ridge St, San Francisco,CA,94016 +165462,Google Phone,1,600.0,2019-03-14 16:56:00,238 Main St, Atlanta,GA,30301 +165462,Wired Headphones,2,11.99,2019-03-14 16:56:00,238 Main St, Atlanta,GA,30301 +165463,AA Batteries (4-pack),1,3.84,2019-03-27 23:21:00,930 13th St, San Francisco,CA,94016 +165464,Bose SoundSport Headphones,1,99.99,2019-03-18 09:12:00,471 Main St, San Francisco,CA,94016 +165465,27in 4K Gaming Monitor,1,389.99,2019-03-23 16:52:00,117 Spruce St, Portland,OR,97035 +165466,AA Batteries (4-pack),1,3.84,2019-03-22 15:39:00,796 Meadow St, Boston,MA,02215 +165467,20in Monitor,1,109.99,2019-03-23 13:01:00,222 South St, New York City,NY,10001 +165468,AA Batteries (4-pack),1,3.84,2019-03-10 09:21:00,540 Dogwood St, Dallas,TX,75001 +165469,Bose SoundSport Headphones,1,99.99,2019-03-23 15:59:00,903 Cedar St, San Francisco,CA,94016 +165470,Lightning Charging Cable,1,14.95,2019-03-28 15:02:00,167 Chestnut St, Boston,MA,02215 +165471,Wired Headphones,1,11.99,2019-03-25 22:58:00,232 Washington St, Los Angeles,CA,90001 +165471,AAA Batteries (4-pack),1,2.99,2019-03-25 22:58:00,232 Washington St, Los Angeles,CA,90001 +165472,AAA Batteries (4-pack),2,2.99,2019-03-09 22:29:00,124 9th St, Portland,OR,97035 +165473,Wired Headphones,1,11.99,2019-03-02 22:43:00,339 2nd St, Portland,OR,97035 +165474,Bose SoundSport Headphones,1,99.99,2019-03-28 13:07:00,788 Hill St, San Francisco,CA,94016 +165475,AA Batteries (4-pack),1,3.84,2019-03-01 05:41:00,344 1st St, San Francisco,CA,94016 +165476,iPhone,1,700.0,2019-03-26 17:24:00,957 6th St, San Francisco,CA,94016 +165477,Apple Airpods Headphones,1,150.0,2019-03-05 15:38:00,85 Wilson St, Boston,MA,02215 +165478,Flatscreen TV,1,300.0,2019-03-10 17:11:00,350 Cedar St, Seattle,WA,98101 +165479,Google Phone,1,600.0,2019-03-31 16:42:00,193 West St, New York City,NY,10001 +165480,USB-C Charging Cable,1,11.95,2019-03-09 08:54:00,988 Cedar St, New York City,NY,10001 +165481,Apple Airpods Headphones,1,150.0,2019-03-19 18:55:00,422 4th St, Los Angeles,CA,90001 +165482,AA Batteries (4-pack),2,3.84,2019-03-16 18:13:00,247 Lake St, Boston,MA,02215 +165483,Apple Airpods Headphones,1,150.0,2019-03-10 21:01:00,169 Johnson St, San Francisco,CA,94016 +165484,USB-C Charging Cable,1,11.95,2019-03-05 18:09:00,238 2nd St, San Francisco,CA,94016 +165485,Lightning Charging Cable,1,14.95,2019-03-17 11:28:00,689 Walnut St, San Francisco,CA,94016 +165486,Bose SoundSport Headphones,1,99.99,2019-03-25 17:16:00,198 Park St, Seattle,WA,98101 +165487,USB-C Charging Cable,1,11.95,2019-03-01 09:15:00,475 Lake St, New York City,NY,10001 +165488,AAA Batteries (4-pack),2,2.99,2019-03-11 12:02:00,755 Meadow St, Los Angeles,CA,90001 +165489,Wired Headphones,1,11.99,2019-03-02 19:17:00,677 Church St, Seattle,WA,98101 +165490,Wired Headphones,1,11.99,2019-03-27 18:04:00,330 Cedar St, San Francisco,CA,94016 +165491,Lightning Charging Cable,1,14.95,2019-03-20 07:39:00,301 River St, San Francisco,CA,94016 +165492,20in Monitor,1,109.99,2019-03-16 11:46:00,839 8th St, Portland,ME,04101 +165493,AA Batteries (4-pack),1,3.84,2019-03-15 19:49:00,427 5th St, Portland,OR,97035 +165494,AAA Batteries (4-pack),2,2.99,2019-03-03 13:19:00,684 Spruce St, Atlanta,GA,30301 +165495,Bose SoundSport Headphones,1,99.99,2019-03-16 10:27:00,543 Park St, Los Angeles,CA,90001 +165496,AA Batteries (4-pack),2,3.84,2019-03-22 21:56:00,792 West St, Dallas,TX,75001 +165497,Flatscreen TV,1,300.0,2019-03-04 19:34:00,931 13th St, Los Angeles,CA,90001 +165498,AA Batteries (4-pack),1,3.84,2019-03-13 07:53:00,227 South St, San Francisco,CA,94016 +165499,27in 4K Gaming Monitor,1,389.99,2019-03-07 20:35:00,150 Main St, Los Angeles,CA,90001 +165500,Wired Headphones,1,11.99,2019-03-03 20:51:00,835 Center St, Atlanta,GA,30301 +165501,USB-C Charging Cable,1,11.95,2019-03-01 10:35:00,797 Spruce St, New York City,NY,10001 +165502,AA Batteries (4-pack),1,3.84,2019-03-14 20:04:00,824 Lincoln St, San Francisco,CA,94016 +165503,Apple Airpods Headphones,1,150.0,2019-03-18 14:38:00,615 Highland St, Dallas,TX,75001 +165504,34in Ultrawide Monitor,1,379.99,2019-03-26 06:44:00,299 Ridge St, Los Angeles,CA,90001 +165505,AA Batteries (4-pack),2,3.84,2019-03-17 09:09:00,69 River St, Portland,OR,97035 +165506,AA Batteries (4-pack),1,3.84,2019-03-17 11:00:00,459 1st St, San Francisco,CA,94016 +165507,AA Batteries (4-pack),2,3.84,2019-03-31 19:56:00,130 Wilson St, Austin,TX,73301 +165508,Lightning Charging Cable,1,14.95,2019-03-14 03:09:00,673 Willow St, Los Angeles,CA,90001 +165509,Vareebadd Phone,1,400.0,2019-03-30 14:59:00,987 Lake St, San Francisco,CA,94016 +165510,Lightning Charging Cable,1,14.95,2019-03-23 15:37:00,872 North St, Los Angeles,CA,90001 +165511,iPhone,1,700.0,2019-03-08 19:10:00,750 Forest St, Los Angeles,CA,90001 +165511,Lightning Charging Cable,1,14.95,2019-03-08 19:10:00,750 Forest St, Los Angeles,CA,90001 +165512,Wired Headphones,1,11.99,2019-03-03 07:10:00,270 Jackson St, Portland,ME,04101 +165513,34in Ultrawide Monitor,1,379.99,2019-03-19 02:18:00,610 11th St, Atlanta,GA,30301 +165514,AA Batteries (4-pack),1,3.84,2019-03-07 09:23:00,467 Adams St, Los Angeles,CA,90001 +165514,Lightning Charging Cable,1,14.95,2019-03-07 09:23:00,467 Adams St, Los Angeles,CA,90001 +165515,AAA Batteries (4-pack),1,2.99,2019-03-13 10:44:00,633 Willow St, Portland,OR,97035 +165516,Lightning Charging Cable,1,14.95,2019-03-09 22:26:00,922 Ridge St, New York City,NY,10001 +165517,AAA Batteries (4-pack),1,2.99,2019-03-26 18:57:00,288 Adams St, San Francisco,CA,94016 +165518,AA Batteries (4-pack),1,3.84,2019-03-28 15:53:00,104 Chestnut St, Boston,MA,02215 +165519,USB-C Charging Cable,1,11.95,2019-03-19 14:16:00,328 Lincoln St, San Francisco,CA,94016 +165520,Apple Airpods Headphones,1,150.0,2019-03-20 10:52:00,849 Chestnut St, New York City,NY,10001 +165521,USB-C Charging Cable,1,11.95,2019-03-04 20:16:00,365 Walnut St, Boston,MA,02215 +165522,AAA Batteries (4-pack),2,2.99,2019-03-02 08:01:00,446 Main St, Boston,MA,02215 +165523,20in Monitor,1,109.99,2019-03-05 15:44:00,783 Jackson St, San Francisco,CA,94016 +165524,Wired Headphones,1,11.99,2019-03-03 15:47:00,518 4th St, Los Angeles,CA,90001 +165525,AAA Batteries (4-pack),1,2.99,2019-03-08 13:33:00,527 Church St, Seattle,WA,98101 +165526,AA Batteries (4-pack),1,3.84,2019-03-12 16:52:00,335 Cherry St, Dallas,TX,75001 +165527,Lightning Charging Cable,1,14.95,2019-03-29 18:31:00,187 14th St, Boston,MA,02215 +165528,AA Batteries (4-pack),1,3.84,2019-03-23 19:50:00,660 6th St, New York City,NY,10001 +165529,Apple Airpods Headphones,1,150.0,2019-03-28 18:35:00,244 Meadow St, New York City,NY,10001 +165530,ThinkPad Laptop,1,999.99,2019-03-04 11:58:00,159 7th St, Seattle,WA,98101 +165531,Apple Airpods Headphones,1,150.0,2019-03-16 17:51:00,494 Wilson St, Los Angeles,CA,90001 +165532,AA Batteries (4-pack),1,3.84,2019-03-02 20:52:00,111 Adams St, San Francisco,CA,94016 +165533,Google Phone,1,600.0,2019-03-29 08:55:00,653 Maple St, Austin,TX,73301 +165534,Lightning Charging Cable,1,14.95,2019-03-13 07:23:00,35 Park St, Portland,OR,97035 +165535,AAA Batteries (4-pack),1,2.99,2019-03-16 12:11:00,470 Ridge St, San Francisco,CA,94016 +165536,Bose SoundSport Headphones,1,99.99,2019-03-01 14:36:00,440 12th St, San Francisco,CA,94016 +165537,Wired Headphones,4,11.99,2019-03-13 18:02:00,472 Cherry St, Seattle,WA,98101 +165538,Apple Airpods Headphones,1,150.0,2019-03-17 04:31:00,204 Ridge St, Los Angeles,CA,90001 +165539,Wired Headphones,1,11.99,2019-03-22 10:38:00,154 7th St, San Francisco,CA,94016 +165540,iPhone,1,700.0,2019-03-10 10:25:00,880 Ridge St, Los Angeles,CA,90001 +165541,iPhone,1,700.0,2019-03-22 12:21:00,91 1st St, San Francisco,CA,94016 +165542,Apple Airpods Headphones,1,150.0,2019-03-12 19:15:00,685 Wilson St, Seattle,WA,98101 +165543,Google Phone,1,600.0,2019-03-26 19:55:00,367 Washington St, Atlanta,GA,30301 +165544,USB-C Charging Cable,3,11.95,2019-03-20 14:44:00,360 Jackson St, San Francisco,CA,94016 +165545,AA Batteries (4-pack),1,3.84,2019-03-23 13:15:00,612 Adams St, Austin,TX,73301 +165546,Lightning Charging Cable,1,14.95,2019-03-05 10:51:00,618 11th St, New York City,NY,10001 +165547,Apple Airpods Headphones,1,150.0,2019-03-18 03:19:00,796 Wilson St, Atlanta,GA,30301 +165548,AAA Batteries (4-pack),3,2.99,2019-03-11 13:30:00,777 Willow St, Portland,OR,97035 +165549,27in FHD Monitor,1,149.99,2019-03-21 11:15:00,691 Lake St, Portland,ME,04101 +165550,Bose SoundSport Headphones,1,99.99,2019-03-10 12:40:00,88 Jackson St, Austin,TX,73301 +165551,Lightning Charging Cable,1,14.95,2019-03-30 16:59:00,98 Elm St, Boston,MA,02215 +165552,Flatscreen TV,1,300.0,2019-03-30 08:41:00,247 Madison St, New York City,NY,10001 +165553,Lightning Charging Cable,1,14.95,2019-03-03 22:05:00,471 Cedar St, Portland,OR,97035 +165554,Apple Airpods Headphones,1,150.0,2019-03-10 11:25:00,104 Hill St, Boston,MA,02215 +165555,AA Batteries (4-pack),1,3.84,2019-03-31 15:03:00,736 10th St, Boston,MA,02215 +165556,Apple Airpods Headphones,1,150.0,2019-03-29 17:36:00,934 Chestnut St, Boston,MA,02215 +165557,Wired Headphones,1,11.99,2019-03-29 21:16:00,783 Sunset St, Boston,MA,02215 +165558,AA Batteries (4-pack),2,3.84,2019-03-11 05:30:00,811 Walnut St, Seattle,WA,98101 +165559,AA Batteries (4-pack),1,3.84,2019-03-16 10:51:00,239 Wilson St, Seattle,WA,98101 +165560,Apple Airpods Headphones,1,150.0,2019-03-20 09:41:00,666 Pine St, San Francisco,CA,94016 +165561,Flatscreen TV,1,300.0,2019-03-07 11:58:00,134 11th St, New York City,NY,10001 +165562,Lightning Charging Cable,1,14.95,2019-03-29 19:39:00,547 Park St, Los Angeles,CA,90001 +165563,Apple Airpods Headphones,1,150.0,2019-03-08 20:37:00,728 Hill St, Boston,MA,02215 +165564,27in FHD Monitor,1,149.99,2019-03-25 03:34:00,277 Dogwood St, Los Angeles,CA,90001 +165565,USB-C Charging Cable,1,11.95,2019-03-06 11:14:00,995 Hill St, Seattle,WA,98101 +165566,Apple Airpods Headphones,1,150.0,2019-03-16 20:17:00,951 5th St, Los Angeles,CA,90001 +165567,34in Ultrawide Monitor,1,379.99,2019-03-21 08:53:00,729 Ridge St, Portland,ME,04101 +165568,Apple Airpods Headphones,1,150.0,2019-03-05 11:01:00,736 Maple St, Dallas,TX,75001 +165569,AA Batteries (4-pack),1,3.84,2019-03-13 07:27:00,741 Highland St, Boston,MA,02215 +165570,Lightning Charging Cable,1,14.95,2019-03-08 04:07:00,829 Forest St, Seattle,WA,98101 +165571,20in Monitor,1,109.99,2019-03-23 22:26:00,71 Wilson St, Los Angeles,CA,90001 +165572,Lightning Charging Cable,1,14.95,2019-03-12 17:14:00,14 River St, Los Angeles,CA,90001 +165573,AAA Batteries (4-pack),1,2.99,2019-03-03 12:27:00,901 Pine St, San Francisco,CA,94016 +165574,Wired Headphones,1,11.99,2019-03-23 11:35:00,818 Maple St, Los Angeles,CA,90001 +165575,ThinkPad Laptop,1,999.99,2019-03-08 22:29:00,705 Highland St, Atlanta,GA,30301 +165576,AAA Batteries (4-pack),1,2.99,2019-03-05 14:18:00,410 Park St, Portland,OR,97035 +165577,USB-C Charging Cable,1,11.95,2019-03-23 08:04:00,399 Ridge St, San Francisco,CA,94016 +165578,Google Phone,1,600.0,2019-03-24 21:41:00,51 Johnson St, San Francisco,CA,94016 +165579,AAA Batteries (4-pack),1,2.99,2019-03-15 14:04:00,627 North St, Boston,MA,02215 +165580,AAA Batteries (4-pack),2,2.99,2019-03-13 18:13:00,651 2nd St, Dallas,TX,75001 +165581,Apple Airpods Headphones,1,150.0,2019-03-11 22:28:00,550 13th St, Los Angeles,CA,90001 +165582,Lightning Charging Cable,1,14.95,2019-03-03 16:41:00,187 Park St, Los Angeles,CA,90001 +165583,AA Batteries (4-pack),1,3.84,2019-03-28 16:39:00,363 Dogwood St, Seattle,WA,98101 +165584,Lightning Charging Cable,1,14.95,2019-03-13 17:19:00,310 Lake St, Austin,TX,73301 +165584,Apple Airpods Headphones,1,150.0,2019-03-13 17:19:00,310 Lake St, Austin,TX,73301 +165585,34in Ultrawide Monitor,1,379.99,2019-03-11 07:44:00,549 9th St, New York City,NY,10001 +165586,Wired Headphones,1,11.99,2019-03-16 20:51:00,206 North St, Atlanta,GA,30301 +165587,27in 4K Gaming Monitor,1,389.99,2019-03-27 19:49:00,244 Hill St, San Francisco,CA,94016 +165588,34in Ultrawide Monitor,1,379.99,2019-03-28 22:16:00,231 Cherry St, San Francisco,CA,94016 +165589,27in FHD Monitor,1,149.99,2019-03-29 15:17:00,402 Lakeview St, Seattle,WA,98101 +165590,Wired Headphones,1,11.99,2019-03-01 11:32:00,43 Main St, Dallas,TX,75001 +165591,Apple Airpods Headphones,1,150.0,2019-03-03 21:03:00,920 14th St, Atlanta,GA,30301 +165592,Flatscreen TV,1,300.0,2019-03-01 16:40:00,852 Cherry St, Los Angeles,CA,90001 +165593,AA Batteries (4-pack),1,3.84,2019-03-06 07:02:00,87 Lakeview St, Atlanta,GA,30301 +165594,Wired Headphones,1,11.99,2019-03-04 22:37:00,503 Sunset St, Los Angeles,CA,90001 +165595,AA Batteries (4-pack),1,3.84,2019-03-14 12:48:00,424 Madison St, San Francisco,CA,94016 +165596,20in Monitor,1,109.99,2019-03-09 18:45:00,368 1st St, New York City,NY,10001 +165597,AAA Batteries (4-pack),1,2.99,2019-03-25 22:11:00,607 Lincoln St, Seattle,WA,98101 +165598,27in FHD Monitor,1,149.99,2019-03-08 17:53:00,229 River St, Austin,TX,73301 +165599,AAA Batteries (4-pack),1,2.99,2019-03-05 21:18:00,541 10th St, Boston,MA,02215 +165600,Lightning Charging Cable,1,14.95,2019-03-04 10:41:00,398 Washington St, Portland,OR,97035 +165601,iPhone,1,700.0,2019-03-13 15:19:00,817 Center St, New York City,NY,10001 +165601,Apple Airpods Headphones,1,150.0,2019-03-13 15:19:00,817 Center St, New York City,NY,10001 +165602,Google Phone,1,600.0,2019-03-19 20:37:00,477 13th St, San Francisco,CA,94016 +165603,Apple Airpods Headphones,1,150.0,2019-03-02 14:22:00,897 Adams St, Atlanta,GA,30301 +165604,ThinkPad Laptop,1,999.99,2019-03-28 20:35:00,621 6th St, San Francisco,CA,94016 +165605,AA Batteries (4-pack),4,3.84,2019-03-15 21:06:00,232 1st St, Los Angeles,CA,90001 +165606,20in Monitor,1,109.99,2019-03-11 14:03:00,884 Dogwood St, Boston,MA,02215 +165607,USB-C Charging Cable,1,11.95,2019-03-11 23:15:00,165 Lake St, New York City,NY,10001 +165608,Wired Headphones,1,11.99,2019-03-06 12:01:00,917 Jefferson St, New York City,NY,10001 +165609,Lightning Charging Cable,1,14.95,2019-03-12 20:10:00,494 Cedar St, Boston,MA,02215 +165610,Wired Headphones,1,11.99,2019-03-14 15:20:00,144 Chestnut St, Seattle,WA,98101 +165611,USB-C Charging Cable,1,11.95,2019-03-20 11:22:00,209 Lincoln St, San Francisco,CA,94016 +165612,Bose SoundSport Headphones,1,99.99,2019-03-11 23:03:00,269 Johnson St, Austin,TX,73301 +165613,34in Ultrawide Monitor,1,379.99,2019-03-27 15:16:00,913 Hickory St, New York City,NY,10001 +165614,AAA Batteries (4-pack),2,2.99,2019-03-31 11:24:00,762 5th St, Portland,OR,97035 +165615,USB-C Charging Cable,1,11.95,2019-03-28 11:57:00,825 Johnson St, Dallas,TX,75001 +165616,USB-C Charging Cable,1,11.95,2019-03-12 15:09:00,905 Madison St, San Francisco,CA,94016 +165617,AA Batteries (4-pack),2,3.84,2019-03-12 07:34:00,166 West St, Portland,ME,04101 +165618,iPhone,1,700.0,2019-03-07 20:02:00,350 South St, Atlanta,GA,30301 +165618,Lightning Charging Cable,1,14.95,2019-03-07 20:02:00,350 South St, Atlanta,GA,30301 +165619,Lightning Charging Cable,1,14.95,2019-03-19 19:40:00,805 Washington St, San Francisco,CA,94016 +165620,USB-C Charging Cable,1,11.95,2019-03-15 13:34:00,257 Wilson St, Los Angeles,CA,90001 +165621,USB-C Charging Cable,1,11.95,2019-03-11 12:07:00,577 Adams St, San Francisco,CA,94016 +165622,Lightning Charging Cable,1,14.95,2019-04-01 02:59:00,65 Madison St, Boston,MA,02215 +165623,LG Dryer,1,600.0,2019-03-26 09:22:00,969 Cherry St, San Francisco,CA,94016 +165624,ThinkPad Laptop,1,999.99,2019-03-04 16:07:00,103 West St, Boston,MA,02215 +165625,Lightning Charging Cable,1,14.95,2019-03-02 18:02:00,7 Highland St, Boston,MA,02215 +165626,Apple Airpods Headphones,1,150.0,2019-03-01 20:02:00,338 Adams St, San Francisco,CA,94016 +165627,20in Monitor,1,109.99,2019-03-11 12:21:00,685 Madison St, Atlanta,GA,30301 +165628,Lightning Charging Cable,1,14.95,2019-03-17 02:01:00,135 Dogwood St, Boston,MA,02215 +165629,ThinkPad Laptop,1,999.99,2019-03-14 16:55:00,489 Forest St, San Francisco,CA,94016 +165630,AA Batteries (4-pack),1,3.84,2019-03-03 20:44:00,460 2nd St, Dallas,TX,75001 +165631,AA Batteries (4-pack),1,3.84,2019-03-27 06:41:00,419 13th St, Dallas,TX,75001 +165632,ThinkPad Laptop,1,999.99,2019-03-13 12:34:00,610 14th St, Los Angeles,CA,90001 +165633,Bose SoundSport Headphones,1,99.99,2019-03-20 10:37:00,543 7th St, Austin,TX,73301 +165634,20in Monitor,1,109.99,2019-03-04 00:10:00,524 Walnut St, New York City,NY,10001 +165635,Apple Airpods Headphones,1,150.0,2019-03-24 22:41:00,212 Center St, San Francisco,CA,94016 +165636,Lightning Charging Cable,1,14.95,2019-03-07 16:18:00,341 South St, Atlanta,GA,30301 +165637,Lightning Charging Cable,1,14.95,2019-03-18 20:34:00,670 Adams St, San Francisco,CA,94016 +165638,Lightning Charging Cable,1,14.95,2019-03-31 12:56:00,486 13th St, Los Angeles,CA,90001 +165639,27in FHD Monitor,1,149.99,2019-03-14 11:15:00,599 Lakeview St, Los Angeles,CA,90001 +165640,27in 4K Gaming Monitor,1,389.99,2019-03-28 06:04:00,241 4th St, Los Angeles,CA,90001 +165641,AA Batteries (4-pack),1,3.84,2019-03-08 19:38:00,569 River St, Los Angeles,CA,90001 +165642,Flatscreen TV,1,300.0,2019-03-19 08:03:00,85 1st St, New York City,NY,10001 +165643,Bose SoundSport Headphones,1,99.99,2019-03-13 14:02:00,960 Meadow St, Austin,TX,73301 +165644,Apple Airpods Headphones,1,150.0,2019-03-20 08:17:00,861 Highland St, Los Angeles,CA,90001 +165645,Wired Headphones,1,11.99,2019-03-26 17:13:00,667 Church St, Seattle,WA,98101 +165646,Lightning Charging Cable,1,14.95,2019-03-01 08:56:00,611 Hickory St, Seattle,WA,98101 +165647,Google Phone,1,600.0,2019-03-21 13:33:00,132 6th St, Atlanta,GA,30301 +165648,AA Batteries (4-pack),1,3.84,2019-03-20 20:54:00,764 Elm St, Boston,MA,02215 +165649,USB-C Charging Cable,1,11.95,2019-03-29 22:16:00,179 Jackson St, Atlanta,GA,30301 +165650,Lightning Charging Cable,1,14.95,2019-03-06 13:58:00,963 Jackson St, Boston,MA,02215 +165651,Lightning Charging Cable,1,14.95,2019-03-09 14:36:00,831 Dogwood St, Portland,OR,97035 +165652,Lightning Charging Cable,1,14.95,2019-03-26 22:13:00,329 Hill St, New York City,NY,10001 +165653,Apple Airpods Headphones,1,150.0,2019-03-24 17:23:00,634 Pine St, New York City,NY,10001 +165654,Lightning Charging Cable,1,14.95,2019-03-23 21:21:00,919 8th St, New York City,NY,10001 +165655,AA Batteries (4-pack),1,3.84,2019-03-02 23:30:00,345 Madison St, New York City,NY,10001 +165656,AA Batteries (4-pack),3,3.84,2019-03-08 20:25:00,140 Wilson St, New York City,NY,10001 +165657,27in 4K Gaming Monitor,1,389.99,2019-03-14 03:09:00,227 7th St, Dallas,TX,75001 +165658,AAA Batteries (4-pack),1,2.99,2019-03-12 23:48:00,232 13th St, Boston,MA,02215 +165659,Google Phone,1,600.0,2019-03-06 12:38:00,479 Dogwood St, Los Angeles,CA,90001 +165660,27in 4K Gaming Monitor,1,389.99,2019-03-16 14:11:00,921 Chestnut St, San Francisco,CA,94016 +165661,Lightning Charging Cable,1,14.95,2019-03-26 16:44:00,296 5th St, Los Angeles,CA,90001 +165662,Google Phone,1,600.0,2019-03-31 09:20:00,118 Hill St, New York City,NY,10001 +165663,Bose SoundSport Headphones,1,99.99,2019-03-02 09:27:00,606 Elm St, Boston,MA,02215 +165664,iPhone,1,700.0,2019-03-13 19:42:00,138 Lakeview St, Atlanta,GA,30301 +165665,Google Phone,1,600.0,2019-03-01 17:48:00,755 Main St, Los Angeles,CA,90001 +165665,USB-C Charging Cable,1,11.95,2019-03-01 17:48:00,755 Main St, Los Angeles,CA,90001 +165665,Wired Headphones,1,11.99,2019-03-01 17:48:00,755 Main St, Los Angeles,CA,90001 +165665,AA Batteries (4-pack),1,3.84,2019-03-01 17:48:00,755 Main St, Los Angeles,CA,90001 +165666,Apple Airpods Headphones,1,150.0,2019-03-03 10:24:00,475 Sunset St, San Francisco,CA,94016 +165667,27in 4K Gaming Monitor,1,389.99,2019-03-29 04:57:00,72 11th St, Los Angeles,CA,90001 +165668,34in Ultrawide Monitor,1,379.99,2019-03-27 11:28:00,386 Jackson St, San Francisco,CA,94016 +165669,USB-C Charging Cable,1,11.95,2019-03-15 13:23:00,973 Madison St, New York City,NY,10001 +165670,Google Phone,1,600.0,2019-03-12 09:32:00,588 2nd St, San Francisco,CA,94016 +165671,AAA Batteries (4-pack),1,2.99,2019-03-22 16:44:00,696 Willow St, Los Angeles,CA,90001 +165672,Lightning Charging Cable,1,14.95,2019-03-07 23:55:00,853 Church St, Boston,MA,02215 +165673,AAA Batteries (4-pack),1,2.99,2019-03-09 10:59:00,290 Pine St, San Francisco,CA,94016 +165674,AAA Batteries (4-pack),1,2.99,2019-03-24 06:53:00,700 Hill St, Boston,MA,02215 +165675,Wired Headphones,1,11.99,2019-03-23 18:34:00,390 Church St, Atlanta,GA,30301 +165676,USB-C Charging Cable,1,11.95,2019-03-30 16:27:00,898 Cherry St, Los Angeles,CA,90001 +165677,34in Ultrawide Monitor,1,379.99,2019-03-11 11:44:00,902 11th St, Seattle,WA,98101 +165678,USB-C Charging Cable,1,11.95,2019-03-30 11:53:00,296 5th St, Boston,MA,02215 +165679,Apple Airpods Headphones,1,150.0,2019-03-27 16:19:00,734 Walnut St, Austin,TX,73301 +165680,AAA Batteries (4-pack),1,2.99,2019-03-22 19:47:00,565 12th St, Los Angeles,CA,90001 +165681,27in 4K Gaming Monitor,1,389.99,2019-03-26 17:22:00,839 Ridge St, Los Angeles,CA,90001 +165682,USB-C Charging Cable,1,11.95,2019-03-31 09:41:00,666 8th St, Seattle,WA,98101 +165683,Lightning Charging Cable,1,14.95,2019-03-24 14:28:00,456 Washington St, San Francisco,CA,94016 +165684,27in FHD Monitor,1,149.99,2019-03-20 13:13:00,944 Forest St, San Francisco,CA,94016 +165685,Macbook Pro Laptop,1,1700.0,2019-03-24 14:04:00,328 Park St, San Francisco,CA,94016 +165686,AAA Batteries (4-pack),1,2.99,2019-03-12 19:43:00,204 14th St, Boston,MA,02215 +165687,27in 4K Gaming Monitor,1,389.99,2019-03-27 14:40:00,933 Sunset St, New York City,NY,10001 +165688,Lightning Charging Cable,2,14.95,2019-03-15 12:04:00,450 2nd St, New York City,NY,10001 +165689,USB-C Charging Cable,1,11.95,2019-03-21 21:22:00,899 9th St, New York City,NY,10001 +165690,USB-C Charging Cable,1,11.95,2019-03-28 23:12:00,489 Lake St, Dallas,TX,75001 +165691,Lightning Charging Cable,1,14.95,2019-03-07 22:40:00,256 Pine St, Boston,MA,02215 +165692,USB-C Charging Cable,1,11.95,2019-03-21 13:16:00,345 6th St, San Francisco,CA,94016 +165693,Google Phone,1,600.0,2019-03-12 14:34:00,967 11th St, Los Angeles,CA,90001 +165694,27in FHD Monitor,1,149.99,2019-03-25 16:12:00,830 North St, San Francisco,CA,94016 +165695,USB-C Charging Cable,1,11.95,2019-03-10 18:43:00,248 Cherry St, San Francisco,CA,94016 +165696,Wired Headphones,1,11.99,2019-03-17 16:36:00,824 Hickory St, Los Angeles,CA,90001 +165697,USB-C Charging Cable,1,11.95,2019-03-20 19:51:00,539 Church St, Los Angeles,CA,90001 +165698,Apple Airpods Headphones,1,150.0,2019-03-02 23:37:00,151 Maple St, Seattle,WA,98101 +165699,AAA Batteries (4-pack),1,2.99,2019-03-04 17:38:00,928 Ridge St, Boston,MA,02215 +165700,Lightning Charging Cable,1,14.95,2019-03-01 12:18:00,3 Ridge St, San Francisco,CA,94016 +165701,Wired Headphones,1,11.99,2019-03-17 18:32:00,119 Walnut St, San Francisco,CA,94016 +165702,Apple Airpods Headphones,1,150.0,2019-03-13 16:38:00,771 Forest St, Austin,TX,73301 +165703,USB-C Charging Cable,1,11.95,2019-03-26 21:02:00,732 Lincoln St, San Francisco,CA,94016 +165704,Wired Headphones,1,11.99,2019-03-01 15:20:00,682 Hickory St, Boston,MA,02215 +165705,Macbook Pro Laptop,1,1700.0,2019-03-10 19:00:00,172 Hill St, New York City,NY,10001 +165706,Wired Headphones,1,11.99,2019-03-24 08:30:00,152 Washington St, Dallas,TX,75001 +165707,Apple Airpods Headphones,1,150.0,2019-03-04 20:48:00,731 North St, San Francisco,CA,94016 +165708,AA Batteries (4-pack),1,3.84,2019-03-16 13:34:00,717 West St, San Francisco,CA,94016 +165709,Bose SoundSport Headphones,1,99.99,2019-03-17 16:44:00,314 Dogwood St, Dallas,TX,75001 +165710,Flatscreen TV,1,300.0,2019-03-18 00:56:00,413 North St, Portland,OR,97035 +165711,iPhone,1,700.0,2019-03-12 23:49:00,891 14th St, Austin,TX,73301 +165712,Wired Headphones,1,11.99,2019-03-16 08:35:00,302 Hickory St, Boston,MA,02215 +165713,Wired Headphones,2,11.99,2019-03-07 17:21:00,417 Spruce St, Boston,MA,02215 +165714,Wired Headphones,1,11.99,2019-03-02 10:06:00,302 North St, New York City,NY,10001 +165715,AA Batteries (4-pack),1,3.84,2019-03-02 23:21:00,290 14th St, Austin,TX,73301 +165716,Bose SoundSport Headphones,1,99.99,2019-03-27 09:42:00,978 12th St, New York City,NY,10001 +165717,34in Ultrawide Monitor,1,379.99,2019-03-23 09:05:00,476 Ridge St, New York City,NY,10001 +165718,34in Ultrawide Monitor,1,379.99,2019-03-14 20:47:00,152 Madison St, Portland,OR,97035 +165719,Apple Airpods Headphones,1,150.0,2019-03-01 18:04:00,976 Washington St, New York City,NY,10001 +165720,AAA Batteries (4-pack),1,2.99,2019-03-09 00:25:00,254 Hill St, San Francisco,CA,94016 +165721,20in Monitor,1,109.99,2019-03-01 20:35:00,746 6th St, San Francisco,CA,94016 +165722,Wired Headphones,2,11.99,2019-03-10 20:58:00,196 Washington St, Boston,MA,02215 +165723,20in Monitor,1,109.99,2019-03-03 14:38:00,786 4th St, San Francisco,CA,94016 +165724,iPhone,1,700.0,2019-03-27 15:47:00,776 Church St, New York City,NY,10001 +165725,AAA Batteries (4-pack),1,2.99,2019-03-12 19:57:00,944 Adams St, San Francisco,CA,94016 +165726,Lightning Charging Cable,2,14.95,2019-03-10 23:43:00,564 Willow St, New York City,NY,10001 +165727,Apple Airpods Headphones,1,150.0,2019-03-18 11:32:00,601 Walnut St, Atlanta,GA,30301 +165728,USB-C Charging Cable,1,11.95,2019-03-21 16:43:00,974 Elm St, New York City,NY,10001 +165729,34in Ultrawide Monitor,1,379.99,2019-03-23 19:24:00,217 Walnut St, Los Angeles,CA,90001 +165730,34in Ultrawide Monitor,1,379.99,2019-03-08 21:16:00,769 Meadow St, New York City,NY,10001 +165731,Apple Airpods Headphones,1,150.0,2019-03-08 18:57:00,352 Hill St, Seattle,WA,98101 +165732,AAA Batteries (4-pack),2,2.99,2019-03-25 11:05:00,408 Park St, Boston,MA,02215 +165732,AAA Batteries (4-pack),1,2.99,2019-03-25 11:05:00,408 Park St, Boston,MA,02215 +165733,Apple Airpods Headphones,1,150.0,2019-03-16 21:22:00,893 Forest St, San Francisco,CA,94016 +165734,AA Batteries (4-pack),4,3.84,2019-03-21 16:47:00,142 River St, Austin,TX,73301 +165735,Wired Headphones,1,11.99,2019-03-17 18:29:00,234 Jefferson St, Seattle,WA,98101 +165736,Bose SoundSport Headphones,1,99.99,2019-03-02 16:09:00,944 14th St, Portland,OR,97035 +165737,AA Batteries (4-pack),1,3.84,2019-03-23 11:25:00,222 Hill St, New York City,NY,10001 +165738,AAA Batteries (4-pack),1,2.99,2019-03-17 11:21:00,185 Ridge St, New York City,NY,10001 +165739,AA Batteries (4-pack),1,3.84,2019-03-28 15:10:00,600 Meadow St, New York City,NY,10001 +165740,Wired Headphones,1,11.99,2019-03-22 14:35:00,712 Main St, New York City,NY,10001 +165741,Bose SoundSport Headphones,1,99.99,2019-03-10 15:31:00,421 West St, Portland,OR,97035 +165742,Bose SoundSport Headphones,1,99.99,2019-03-27 20:11:00,502 Jackson St, Boston,MA,02215 +165743,AAA Batteries (4-pack),2,2.99,2019-03-05 13:00:00,184 Jefferson St, Los Angeles,CA,90001 +165744,Wired Headphones,1,11.99,2019-03-15 13:46:00,112 8th St, San Francisco,CA,94016 +165745,Apple Airpods Headphones,1,150.0,2019-03-13 11:50:00,607 Chestnut St, Seattle,WA,98101 +165746,AA Batteries (4-pack),1,3.84,2019-03-06 18:06:00,479 Lake St, Los Angeles,CA,90001 +165747,Wired Headphones,1,11.99,2019-03-10 14:07:00,196 4th St, Boston,MA,02215 +165748,Lightning Charging Cable,1,14.95,2019-03-11 22:47:00,374 5th St, Boston,MA,02215 +165749,AA Batteries (4-pack),3,3.84,2019-03-12 10:10:00,614 9th St, Seattle,WA,98101 +165750,Bose SoundSport Headphones,1,99.99,2019-03-08 07:03:00,931 Lake St, New York City,NY,10001 +165751,Bose SoundSport Headphones,1,99.99,2019-03-04 16:18:00,591 South St, Portland,ME,04101 +165752,ThinkPad Laptop,1,999.99,2019-03-01 10:13:00,697 Spruce St, New York City,NY,10001 +165753,20in Monitor,1,109.99,2019-03-26 08:21:00,994 13th St, New York City,NY,10001 +165754,Google Phone,1,600.0,2019-03-09 13:38:00,329 Sunset St, Atlanta,GA,30301 +165754,Wired Headphones,1,11.99,2019-03-09 13:38:00,329 Sunset St, Atlanta,GA,30301 +165755,AA Batteries (4-pack),3,3.84,2019-03-27 07:07:00,350 Church St, Atlanta,GA,30301 +165756,Wired Headphones,1,11.99,2019-03-25 13:19:00,223 Elm St, Los Angeles,CA,90001 +165756,AAA Batteries (4-pack),3,2.99,2019-03-25 13:19:00,223 Elm St, Los Angeles,CA,90001 +165757,Flatscreen TV,1,300.0,2019-03-02 11:10:00,980 Lincoln St, Boston,MA,02215 +165758,USB-C Charging Cable,1,11.95,2019-03-14 11:55:00,390 Wilson St, San Francisco,CA,94016 +165759,AAA Batteries (4-pack),2,2.99,2019-03-04 06:57:00,595 Washington St, San Francisco,CA,94016 +165760,AA Batteries (4-pack),1,3.84,2019-03-17 07:12:00,895 Hickory St, Los Angeles,CA,90001 +165761,Wired Headphones,1,11.99,2019-03-20 21:54:00,6 8th St, Atlanta,GA,30301 +165762,Wired Headphones,1,11.99,2019-03-15 14:41:00,717 West St, New York City,NY,10001 +165763,Vareebadd Phone,1,400.0,2019-03-08 21:12:00,585 Chestnut St, San Francisco,CA,94016 +165764,27in FHD Monitor,1,149.99,2019-03-13 09:53:00,898 Chestnut St, Atlanta,GA,30301 +165765,Wired Headphones,1,11.99,2019-03-19 20:43:00,244 2nd St, San Francisco,CA,94016 +165766,AAA Batteries (4-pack),1,2.99,2019-03-09 12:15:00,181 Madison St, San Francisco,CA,94016 +165767,ThinkPad Laptop,1,999.99,2019-03-01 20:05:00,775 Maple St, San Francisco,CA,94016 +165768,iPhone,1,700.0,2019-03-17 12:49:00,888 7th St, Austin,TX,73301 +165768,Lightning Charging Cable,1,14.95,2019-03-17 12:49:00,888 7th St, Austin,TX,73301 +165769,AAA Batteries (4-pack),1,2.99,2019-03-24 18:42:00,940 11th St, Atlanta,GA,30301 +165770,USB-C Charging Cable,1,11.95,2019-03-13 10:11:00,461 2nd St, San Francisco,CA,94016 +165771,Macbook Pro Laptop,1,1700.0,2019-03-11 18:40:00,659 Church St, New York City,NY,10001 +165772,AAA Batteries (4-pack),1,2.99,2019-03-19 12:31:00,414 Lincoln St, New York City,NY,10001 +165773,Wired Headphones,2,11.99,2019-03-09 14:05:00,948 Jefferson St, Austin,TX,73301 +165774,AAA Batteries (4-pack),2,2.99,2019-03-07 16:54:00,837 11th St, Los Angeles,CA,90001 +165775,Wired Headphones,1,11.99,2019-03-24 00:36:00,602 Walnut St, San Francisco,CA,94016 +165776,27in FHD Monitor,1,149.99,2019-03-28 20:41:00,470 Willow St, Atlanta,GA,30301 +165777,AAA Batteries (4-pack),1,2.99,2019-03-02 11:04:00,183 Lincoln St, Boston,MA,02215 +165778,Lightning Charging Cable,1,14.95,2019-03-01 12:14:00,753 Center St, New York City,NY,10001 +165779,Macbook Pro Laptop,1,1700.0,2019-03-21 18:54:00,227 Jefferson St, Portland,ME,04101 +165780,AAA Batteries (4-pack),1,2.99,2019-03-28 13:47:00,746 Forest St, Los Angeles,CA,90001 +165781,20in Monitor,1,109.99,2019-03-24 12:45:00,99 10th St, Atlanta,GA,30301 +165782,Vareebadd Phone,1,400.0,2019-03-27 21:25:00,712 Meadow St, Boston,MA,02215 +165782,AA Batteries (4-pack),1,3.84,2019-03-27 21:25:00,712 Meadow St, Boston,MA,02215 +165783,iPhone,1,700.0,2019-03-23 11:40:00,361 Spruce St, San Francisco,CA,94016 +165784,Flatscreen TV,1,300.0,2019-03-06 19:07:00,975 7th St, Austin,TX,73301 +165785,USB-C Charging Cable,1,11.95,2019-03-04 14:37:00,896 Cedar St, Atlanta,GA,30301 +165786,AAA Batteries (4-pack),1,2.99,2019-03-07 09:59:00,842 Meadow St, New York City,NY,10001 +165787,LG Dryer,1,600.0,2019-03-19 19:40:00,282 Wilson St, San Francisco,CA,94016 +165788,20in Monitor,1,109.99,2019-03-21 16:37:00,878 Spruce St, San Francisco,CA,94016 +165789,Bose SoundSport Headphones,1,99.99,2019-03-18 15:51:00,708 Lakeview St, Seattle,WA,98101 +165790,AA Batteries (4-pack),1,3.84,2019-03-09 20:45:00,226 Lincoln St, Portland,OR,97035 +165791,Apple Airpods Headphones,1,150.0,2019-03-15 15:33:00,78 Chestnut St, Boston,MA,02215 +165792,Bose SoundSport Headphones,1,99.99,2019-03-22 15:05:00,765 Lake St, Dallas,TX,75001 +165792,Wired Headphones,1,11.99,2019-03-22 15:05:00,765 Lake St, Dallas,TX,75001 +165793,AAA Batteries (4-pack),4,2.99,2019-03-31 22:30:00,741 12th St, San Francisco,CA,94016 +165794,Lightning Charging Cable,1,14.95,2019-03-12 17:11:00,411 Jefferson St, New York City,NY,10001 +165795,iPhone,1,700.0,2019-03-07 15:49:00,41 11th St, Atlanta,GA,30301 +165796,USB-C Charging Cable,1,11.95,2019-03-23 07:21:00,779 Meadow St, Los Angeles,CA,90001 +165797,Lightning Charging Cable,1,14.95,2019-03-03 16:47:00,328 Adams St, Dallas,TX,75001 +165798,Vareebadd Phone,1,400.0,2019-03-03 10:22:00,184 West St, Dallas,TX,75001 +165799,LG Dryer,1,600.0,2019-03-08 13:13:00,155 1st St, Atlanta,GA,30301 +165800,Bose SoundSport Headphones,1,99.99,2019-03-09 10:35:00,175 Willow St, Boston,MA,02215 +165801,27in 4K Gaming Monitor,1,389.99,2019-03-06 13:49:00,808 Washington St, Portland,OR,97035 +165802,Lightning Charging Cable,1,14.95,2019-03-02 11:48:00,180 7th St, Los Angeles,CA,90001 +165803,AAA Batteries (4-pack),2,2.99,2019-03-02 10:21:00,174 6th St, Atlanta,GA,30301 +165804,AAA Batteries (4-pack),1,2.99,2019-03-03 18:04:00,447 8th St, San Francisco,CA,94016 +165805,20in Monitor,1,109.99,2019-03-28 06:15:00,771 4th St, New York City,NY,10001 +165806,USB-C Charging Cable,1,11.95,2019-03-01 19:35:00,701 Hickory St, Los Angeles,CA,90001 +165807,Flatscreen TV,1,300.0,2019-03-12 17:42:00,610 12th St, Dallas,TX,75001 +165808,USB-C Charging Cable,1,11.95,2019-03-10 20:29:00,237 14th St, Dallas,TX,75001 +165809,Wired Headphones,1,11.99,2019-03-31 11:57:00,777 West St, Los Angeles,CA,90001 +165810,Bose SoundSport Headphones,1,99.99,2019-03-24 12:15:00,748 4th St, Boston,MA,02215 +165811,Google Phone,1,600.0,2019-03-26 08:35:00,8 6th St, San Francisco,CA,94016 +165812,iPhone,1,700.0,2019-03-30 19:18:00,313 Jefferson St, Portland,OR,97035 +165812,Lightning Charging Cable,1,14.95,2019-03-30 19:18:00,313 Jefferson St, Portland,OR,97035 +165813,AAA Batteries (4-pack),1,2.99,2019-03-06 19:47:00,486 6th St, Seattle,WA,98101 +165814,AAA Batteries (4-pack),1,2.99,2019-03-18 11:35:00,866 11th St, San Francisco,CA,94016 +165815,Apple Airpods Headphones,1,150.0,2019-03-05 15:50:00,158 Willow St, San Francisco,CA,94016 +165816,AA Batteries (4-pack),1,3.84,2019-03-31 17:02:00,804 1st St, Portland,OR,97035 +165817,AAA Batteries (4-pack),3,2.99,2019-03-23 13:03:00,706 North St, New York City,NY,10001 +165818,Bose SoundSport Headphones,1,99.99,2019-03-14 14:19:00,936 River St, Portland,ME,04101 +165819,AA Batteries (4-pack),1,3.84,2019-03-13 11:23:00,979 Maple St, San Francisco,CA,94016 +165820,Apple Airpods Headphones,1,150.0,2019-03-20 01:02:00,925 Main St, Los Angeles,CA,90001 +165821,USB-C Charging Cable,1,11.95,2019-03-21 18:09:00,924 7th St, Atlanta,GA,30301 +165822,USB-C Charging Cable,1,11.95,2019-03-18 23:31:00,426 Forest St, Seattle,WA,98101 +165823,Bose SoundSport Headphones,1,99.99,2019-03-09 16:34:00,150 Lincoln St, Seattle,WA,98101 +165824,Bose SoundSport Headphones,1,99.99,2019-03-05 17:38:00,818 River St, Los Angeles,CA,90001 +165825,Wired Headphones,1,11.99,2019-03-21 17:25:00,204 13th St, San Francisco,CA,94016 +165826,Flatscreen TV,1,300.0,2019-03-02 11:55:00,876 5th St, Boston,MA,02215 +165827,Vareebadd Phone,1,400.0,2019-03-02 00:16:00,6 Hill St, New York City,NY,10001 +165828,Bose SoundSport Headphones,1,99.99,2019-03-22 14:15:00,945 Church St, New York City,NY,10001 +165829,Apple Airpods Headphones,1,150.0,2019-03-28 19:12:00,674 13th St, New York City,NY,10001 +165830,AAA Batteries (4-pack),1,2.99,2019-03-22 11:59:00,827 Cherry St, Austin,TX,73301 +165831,AAA Batteries (4-pack),2,2.99,2019-03-30 21:29:00,544 North St, Los Angeles,CA,90001 +165832,Bose SoundSport Headphones,1,99.99,2019-03-08 19:22:00,342 Wilson St, San Francisco,CA,94016 +165833,AAA Batteries (4-pack),2,2.99,2019-03-23 15:15:00,415 Cedar St, San Francisco,CA,94016 +165834,USB-C Charging Cable,1,11.95,2019-03-08 13:15:00,150 7th St, San Francisco,CA,94016 +165835,27in FHD Monitor,1,149.99,2019-03-16 16:57:00,266 West St, Boston,MA,02215 +165836,AA Batteries (4-pack),1,3.84,2019-03-29 21:56:00,249 West St, San Francisco,CA,94016 +165837,iPhone,1,700.0,2019-03-26 16:30:00,677 Sunset St, Boston,MA,02215 +165838,USB-C Charging Cable,1,11.95,2019-03-14 21:10:00,942 Lakeview St, Boston,MA,02215 +165839,AAA Batteries (4-pack),1,2.99,2019-03-26 12:05:00,35 11th St, Atlanta,GA,30301 +165840,Flatscreen TV,1,300.0,2019-03-01 08:59:00,223 4th St, Atlanta,GA,30301 +165841,Apple Airpods Headphones,1,150.0,2019-03-12 09:45:00,525 Spruce St, San Francisco,CA,94016 +165842,20in Monitor,1,109.99,2019-03-19 10:38:00,722 Cherry St, San Francisco,CA,94016 +165843,Wired Headphones,1,11.99,2019-03-30 12:20:00,865 Center St, Atlanta,GA,30301 +165844,Wired Headphones,1,11.99,2019-03-26 11:32:00,954 11th St, Boston,MA,02215 +165845,AA Batteries (4-pack),1,3.84,2019-03-01 17:17:00,575 Meadow St, Boston,MA,02215 +165846,USB-C Charging Cable,1,11.95,2019-03-21 17:46:00,535 14th St, San Francisco,CA,94016 +165847,ThinkPad Laptop,1,999.99,2019-03-17 19:19:00,981 Sunset St, New York City,NY,10001 +165848,27in 4K Gaming Monitor,1,389.99,2019-03-22 11:21:00,512 Elm St, Seattle,WA,98101 +165849,AA Batteries (4-pack),1,3.84,2019-03-30 07:47:00,962 2nd St, Atlanta,GA,30301 +165850,Bose SoundSport Headphones,1,99.99,2019-03-19 14:47:00,626 Highland St, Los Angeles,CA,90001 +165851,20in Monitor,1,109.99,2019-03-16 16:39:00,804 Hickory St, Los Angeles,CA,90001 +165852,AAA Batteries (4-pack),1,2.99,2019-03-30 14:24:00,664 Jackson St, San Francisco,CA,94016 +165853,USB-C Charging Cable,1,11.95,2019-03-31 22:27:00,988 9th St, Austin,TX,73301 +165854,Google Phone,1,600.0,2019-03-11 14:18:00,775 Main St, Atlanta,GA,30301 +165855,USB-C Charging Cable,1,11.95,2019-03-03 10:10:00,852 Maple St, Dallas,TX,75001 +165856,AAA Batteries (4-pack),2,2.99,2019-03-01 10:43:00,271 13th St, New York City,NY,10001 +165857,AAA Batteries (4-pack),1,2.99,2019-03-20 10:16:00,128 Dogwood St, New York City,NY,10001 +165858,27in 4K Gaming Monitor,1,389.99,2019-03-06 21:35:00,95 Center St, Boston,MA,02215 +165859,Google Phone,1,600.0,2019-03-12 10:09:00,354 2nd St, New York City,NY,10001 +165859,27in FHD Monitor,1,149.99,2019-03-12 10:09:00,354 2nd St, New York City,NY,10001 +165860,iPhone,1,700.0,2019-03-27 21:01:00,118 11th St, Los Angeles,CA,90001 +165861,AA Batteries (4-pack),1,3.84,2019-03-07 10:54:00,751 Jefferson St, Atlanta,GA,30301 +165862,Wired Headphones,1,11.99,2019-03-09 11:10:00,935 5th St, Los Angeles,CA,90001 +165862,Apple Airpods Headphones,1,150.0,2019-03-09 11:10:00,935 5th St, Los Angeles,CA,90001 +165863,Wired Headphones,1,11.99,2019-03-16 10:50:00,385 Cherry St, San Francisco,CA,94016 +165864,Apple Airpods Headphones,1,150.0,2019-03-03 20:28:00,426 Forest St, Dallas,TX,75001 +165865,AAA Batteries (4-pack),2,2.99,2019-03-25 21:25:00,856 Washington St, Portland,OR,97035 +165866,Apple Airpods Headphones,1,150.0,2019-03-11 16:29:00,538 4th St, Boston,MA,02215 +165867,27in 4K Gaming Monitor,1,389.99,2019-03-31 19:56:00,715 South St, Seattle,WA,98101 +165868,20in Monitor,1,109.99,2019-03-06 10:46:00,464 Forest St, San Francisco,CA,94016 +165869,Wired Headphones,1,11.99,2019-03-22 06:57:00,787 1st St, New York City,NY,10001 +165870,ThinkPad Laptop,1,999.99,2019-03-19 17:07:00,916 Lakeview St, Los Angeles,CA,90001 +165871,Lightning Charging Cable,1,14.95,2019-03-10 00:38:00,543 Elm St, San Francisco,CA,94016 +165872,Lightning Charging Cable,1,14.95,2019-03-14 21:47:00,888 Spruce St, San Francisco,CA,94016 +165873,AA Batteries (4-pack),2,3.84,2019-03-18 19:39:00,799 Hill St, Seattle,WA,98101 +165874,27in 4K Gaming Monitor,1,389.99,2019-03-27 07:59:00,544 Maple St, Atlanta,GA,30301 +165875,USB-C Charging Cable,1,11.95,2019-03-09 18:53:00,488 Jackson St, Seattle,WA,98101 +165876,27in FHD Monitor,1,149.99,2019-03-06 08:10:00,601 4th St, Seattle,WA,98101 +165877,Bose SoundSport Headphones,1,99.99,2019-03-08 14:47:00,410 6th St, San Francisco,CA,94016 +165878,Flatscreen TV,1,300.0,2019-03-23 20:24:00,786 Ridge St, Portland,OR,97035 +165879,Apple Airpods Headphones,1,150.0,2019-03-03 10:46:00,979 11th St, Seattle,WA,98101 +165880,iPhone,1,700.0,2019-03-03 12:32:00,895 West St, Los Angeles,CA,90001 +165881,USB-C Charging Cable,2,11.95,2019-03-31 15:35:00,730 North St, San Francisco,CA,94016 +165882,ThinkPad Laptop,1,999.99,2019-03-14 21:01:00,353 1st St, New York City,NY,10001 +165883,27in FHD Monitor,1,149.99,2019-03-04 22:27:00,677 Pine St, Los Angeles,CA,90001 +165884,27in FHD Monitor,1,149.99,2019-03-29 05:39:00,541 River St, Dallas,TX,75001 +165885,USB-C Charging Cable,3,11.95,2019-03-21 05:38:00,964 Lincoln St, San Francisco,CA,94016 +165886,AAA Batteries (4-pack),1,2.99,2019-03-10 12:47:00,58 Forest St, Portland,OR,97035 +165887,iPhone,1,700.0,2019-03-26 20:26:00,589 11th St, Austin,TX,73301 +165888,Bose SoundSport Headphones,1,99.99,2019-03-06 18:02:00,557 Center St, New York City,NY,10001 +165889,Apple Airpods Headphones,1,150.0,2019-03-10 08:06:00,932 Dogwood St, San Francisco,CA,94016 +165890,AA Batteries (4-pack),1,3.84,2019-03-31 18:39:00,955 12th St, San Francisco,CA,94016 +165890,Wired Headphones,1,11.99,2019-03-31 18:39:00,955 12th St, San Francisco,CA,94016 +165891,Bose SoundSport Headphones,1,99.99,2019-03-04 11:19:00,446 West St, San Francisco,CA,94016 +165892,iPhone,1,700.0,2019-03-07 17:57:00,418 1st St, Los Angeles,CA,90001 +165893,Wired Headphones,1,11.99,2019-03-17 19:55:00,337 Madison St, San Francisco,CA,94016 +165894,LG Washing Machine,1,600.0,2019-03-22 15:12:00,272 11th St, New York City,NY,10001 +165895,34in Ultrawide Monitor,1,379.99,2019-03-05 12:53:00,781 Center St, New York City,NY,10001 +165896,Apple Airpods Headphones,1,150.0,2019-03-13 19:14:00,63 2nd St, Los Angeles,CA,90001 +165897,Apple Airpods Headphones,1,150.0,2019-03-28 08:21:00,312 Lakeview St, Atlanta,GA,30301 +165898,Flatscreen TV,1,300.0,2019-03-18 14:32:00,918 Lincoln St, Boston,MA,02215 +165899,AAA Batteries (4-pack),1,2.99,2019-03-31 11:16:00,796 Cherry St, San Francisco,CA,94016 +165900,Lightning Charging Cable,1,14.95,2019-03-23 19:42:00,883 Wilson St, Portland,OR,97035 +165901,Lightning Charging Cable,1,14.95,2019-03-25 07:05:00,476 Jackson St, New York City,NY,10001 +165902,Lightning Charging Cable,1,14.95,2019-03-11 21:53:00,337 10th St, Portland,OR,97035 +165903,AAA Batteries (4-pack),2,2.99,2019-03-09 09:50:00,625 8th St, Seattle,WA,98101 +165904,USB-C Charging Cable,1,11.95,2019-03-11 19:00:00,404 1st St, Boston,MA,02215 +165905,USB-C Charging Cable,1,11.95,2019-03-29 21:22:00,67 West St, Austin,TX,73301 +165906,AA Batteries (4-pack),1,3.84,2019-03-28 09:48:00,637 Walnut St, Atlanta,GA,30301 +165907,AA Batteries (4-pack),4,3.84,2019-03-28 07:52:00,273 Hill St, Los Angeles,CA,90001 +165908,27in FHD Monitor,1,149.99,2019-03-29 23:19:00,962 Pine St, Atlanta,GA,30301 +165909,AA Batteries (4-pack),1,3.84,2019-03-09 22:50:00,645 Johnson St, San Francisco,CA,94016 +165910,USB-C Charging Cable,1,11.95,2019-03-20 15:02:00,317 River St, Los Angeles,CA,90001 +165911,iPhone,1,700.0,2019-03-15 12:52:00,232 Forest St, San Francisco,CA,94016 +165911,Lightning Charging Cable,1,14.95,2019-03-15 12:52:00,232 Forest St, San Francisco,CA,94016 +165912,USB-C Charging Cable,1,11.95,2019-03-15 07:33:00,328 Park St, New York City,NY,10001 +165913,USB-C Charging Cable,1,11.95,2019-03-24 20:28:00,342 Main St, San Francisco,CA,94016 +165914,Vareebadd Phone,1,400.0,2019-03-04 11:20:00,910 Johnson St, Seattle,WA,98101 +165914,Wired Headphones,1,11.99,2019-03-04 11:20:00,910 Johnson St, Seattle,WA,98101 +165915,Macbook Pro Laptop,1,1700.0,2019-03-17 21:25:00,613 Maple St, Atlanta,GA,30301 +165916,Apple Airpods Headphones,1,150.0,2019-03-21 22:17:00,375 Lincoln St, New York City,NY,10001 +165917,Wired Headphones,1,11.99,2019-03-08 20:59:00,403 Meadow St, Los Angeles,CA,90001 +165918,Bose SoundSport Headphones,1,99.99,2019-03-09 15:31:00,150 West St, Boston,MA,02215 +165919,27in FHD Monitor,1,149.99,2019-03-19 12:11:00,470 Hill St, Atlanta,GA,30301 +165920,AA Batteries (4-pack),1,3.84,2019-03-05 08:50:00,472 2nd St, Seattle,WA,98101 +165921,Wired Headphones,1,11.99,2019-03-30 10:15:00,498 Park St, Boston,MA,02215 +165922,Bose SoundSport Headphones,1,99.99,2019-03-31 23:38:00,948 Willow St, San Francisco,CA,94016 +165923,Wired Headphones,2,11.99,2019-03-15 19:24:00,343 South St, Boston,MA,02215 +165924,Apple Airpods Headphones,1,150.0,2019-03-14 16:27:00,466 8th St, Los Angeles,CA,90001 +165925,AAA Batteries (4-pack),1,2.99,2019-03-05 20:45:00,155 Washington St, Dallas,TX,75001 +165926,Apple Airpods Headphones,1,150.0,2019-03-31 13:50:00,962 4th St, Seattle,WA,98101 +165927,iPhone,1,700.0,2019-03-21 22:48:00,610 Cedar St, Atlanta,GA,30301 +165928,Vareebadd Phone,1,400.0,2019-03-25 19:31:00,33 Maple St, Los Angeles,CA,90001 +165928,USB-C Charging Cable,2,11.95,2019-03-25 19:31:00,33 Maple St, Los Angeles,CA,90001 +165929,AAA Batteries (4-pack),1,2.99,2019-03-28 13:33:00,498 Highland St, San Francisco,CA,94016 +165930,Wired Headphones,1,11.99,2019-03-29 12:08:00,34 5th St, Los Angeles,CA,90001 +165931,Apple Airpods Headphones,1,150.0,2019-03-09 11:39:00,126 Johnson St, Seattle,WA,98101 +165932,Lightning Charging Cable,1,14.95,2019-03-31 10:02:00,574 12th St, Dallas,TX,75001 +165933,AAA Batteries (4-pack),1,2.99,2019-03-09 23:12:00,292 Pine St, Seattle,WA,98101 +165934,USB-C Charging Cable,1,11.95,2019-03-24 08:25:00,521 Forest St, Seattle,WA,98101 +165935,Apple Airpods Headphones,1,150.0,2019-03-11 17:49:00,243 West St, Atlanta,GA,30301 +165936,USB-C Charging Cable,1,11.95,2019-03-15 21:23:00,658 10th St, Atlanta,GA,30301 +165937,AA Batteries (4-pack),1,3.84,2019-03-25 22:14:00,938 West St, Seattle,WA,98101 +165938,Google Phone,1,600.0,2019-03-30 11:51:00,761 Forest St, Dallas,TX,75001 +165938,USB-C Charging Cable,1,11.95,2019-03-30 11:51:00,761 Forest St, Dallas,TX,75001 +165938,Wired Headphones,1,11.99,2019-03-30 11:51:00,761 Forest St, Dallas,TX,75001 +165939,AA Batteries (4-pack),1,3.84,2019-03-15 19:32:00,870 Chestnut St, Atlanta,GA,30301 +165940,Apple Airpods Headphones,1,150.0,2019-03-31 13:32:00,739 River St, New York City,NY,10001 +165941,Bose SoundSport Headphones,1,99.99,2019-03-14 13:58:00,543 Dogwood St, New York City,NY,10001 +165942,AA Batteries (4-pack),1,3.84,2019-03-02 18:57:00,854 Cherry St, Boston,MA,02215 +165943,Bose SoundSport Headphones,1,99.99,2019-03-03 09:33:00,40 Jefferson St, Los Angeles,CA,90001 +165944,Wired Headphones,1,11.99,2019-03-19 08:19:00,163 Sunset St, San Francisco,CA,94016 +165945,Wired Headphones,1,11.99,2019-03-19 16:38:00,532 Ridge St, Dallas,TX,75001 +165946,Apple Airpods Headphones,1,150.0,2019-03-21 02:53:00,480 14th St, Los Angeles,CA,90001 +165947,27in FHD Monitor,1,149.99,2019-03-12 01:04:00,525 Willow St, San Francisco,CA,94016 +165948,34in Ultrawide Monitor,1,379.99,2019-03-24 18:01:00,663 Center St, San Francisco,CA,94016 +165948,Bose SoundSport Headphones,1,99.99,2019-03-24 18:01:00,663 Center St, San Francisco,CA,94016 +165949,Google Phone,1,600.0,2019-03-11 09:56:00,52 Chestnut St, Dallas,TX,75001 +165950,Apple Airpods Headphones,1,150.0,2019-03-12 19:49:00,212 Adams St, Los Angeles,CA,90001 +165951,AAA Batteries (4-pack),1,2.99,2019-03-18 09:48:00,271 Main St, Boston,MA,02215 +165952,Apple Airpods Headphones,1,150.0,2019-03-13 20:03:00,514 North St, Los Angeles,CA,90001 +165953,Bose SoundSport Headphones,1,99.99,2019-03-04 11:47:00,954 River St, Seattle,WA,98101 +165954,Flatscreen TV,1,300.0,2019-03-07 18:26:00,310 14th St, Atlanta,GA,30301 +165955,USB-C Charging Cable,1,11.95,2019-03-05 13:30:00,119 1st St, San Francisco,CA,94016 +165956,Lightning Charging Cable,1,14.95,2019-03-12 17:52:00,153 12th St, Austin,TX,73301 +165957,27in FHD Monitor,1,149.99,2019-03-26 13:00:00,101 Jefferson St, Atlanta,GA,30301 +165958,Bose SoundSport Headphones,1,99.99,2019-03-03 12:27:00,14 11th St, San Francisco,CA,94016 +165959,AAA Batteries (4-pack),1,2.99,2019-03-15 17:04:00,574 Highland St, Portland,OR,97035 +165960,Apple Airpods Headphones,1,150.0,2019-03-17 22:31:00,583 7th St, Austin,TX,73301 +165961,Lightning Charging Cable,1,14.95,2019-03-11 11:00:00,589 7th St, San Francisco,CA,94016 +165962,Lightning Charging Cable,1,14.95,2019-03-29 09:35:00,350 South St, Portland,OR,97035 +165963,Wired Headphones,1,11.99,2019-03-25 21:05:00,522 Meadow St, Atlanta,GA,30301 +165964,USB-C Charging Cable,1,11.95,2019-03-28 17:25:00,51 Cherry St, Dallas,TX,75001 +165965,Bose SoundSport Headphones,1,99.99,2019-03-21 18:20:00,838 12th St, Dallas,TX,75001 +165966,AAA Batteries (4-pack),1,2.99,2019-03-17 19:42:00,989 Ridge St, Dallas,TX,75001 +165967,USB-C Charging Cable,1,11.95,2019-03-30 20:41:00,692 1st St, Boston,MA,02215 +165968,USB-C Charging Cable,1,11.95,2019-03-19 21:03:00,52 Park St, San Francisco,CA,94016 +165969,Apple Airpods Headphones,1,150.0,2019-03-02 11:13:00,448 Spruce St, Los Angeles,CA,90001 +165970,34in Ultrawide Monitor,1,379.99,2019-03-26 12:32:00,842 2nd St, San Francisco,CA,94016 +165971,20in Monitor,1,109.99,2019-03-11 13:59:00,486 Ridge St, San Francisco,CA,94016 +165972,Lightning Charging Cable,1,14.95,2019-03-10 09:28:00,349 Chestnut St, Los Angeles,CA,90001 +165973,Apple Airpods Headphones,1,150.0,2019-03-27 15:02:00,944 Washington St, San Francisco,CA,94016 +165974,Apple Airpods Headphones,1,150.0,2019-03-16 18:42:00,95 South St, Dallas,TX,75001 +165975,Lightning Charging Cable,1,14.95,2019-03-26 16:10:00,331 Center St, San Francisco,CA,94016 +165976,Lightning Charging Cable,1,14.95,2019-03-11 12:32:00,804 North St, Dallas,TX,75001 +165977,Bose SoundSport Headphones,1,99.99,2019-03-21 10:26:00,491 Ridge St, Austin,TX,73301 +165978,USB-C Charging Cable,1,11.95,2019-03-07 23:31:00,203 9th St, Boston,MA,02215 +165979,Wired Headphones,1,11.99,2019-03-09 14:02:00,357 13th St, Portland,OR,97035 +165980,Apple Airpods Headphones,1,150.0,2019-03-18 10:44:00,199 Hill St, Austin,TX,73301 +165981,Apple Airpods Headphones,1,150.0,2019-03-28 20:04:00,281 14th St, San Francisco,CA,94016 +165982,20in Monitor,1,109.99,2019-03-17 12:09:00,53 Lakeview St, San Francisco,CA,94016 +165983,Macbook Pro Laptop,1,1700.0,2019-03-14 13:28:00,38 9th St, San Francisco,CA,94016 +165984,USB-C Charging Cable,1,11.95,2019-03-25 23:09:00,126 Church St, Dallas,TX,75001 +165985,Apple Airpods Headphones,1,150.0,2019-03-19 19:19:00,832 Cherry St, Austin,TX,73301 +165986,AAA Batteries (4-pack),1,2.99,2019-03-13 19:41:00,103 Dogwood St, Boston,MA,02215 +165987,USB-C Charging Cable,1,11.95,2019-03-11 00:05:00,95 North St, Portland,ME,04101 +165988,AA Batteries (4-pack),1,3.84,2019-03-07 17:22:00,645 11th St, Los Angeles,CA,90001 +165989,AA Batteries (4-pack),1,3.84,2019-03-08 23:18:00,972 5th St, Portland,ME,04101 +165990,USB-C Charging Cable,1,11.95,2019-03-06 17:56:00,235 Chestnut St, New York City,NY,10001 +165991,27in 4K Gaming Monitor,1,389.99,2019-03-25 16:37:00,503 Lincoln St, Los Angeles,CA,90001 +165992,Wired Headphones,1,11.99,2019-03-02 09:39:00,317 Chestnut St, New York City,NY,10001 +165993,Lightning Charging Cable,1,14.95,2019-03-19 11:41:00,627 Elm St, San Francisco,CA,94016 +165994,USB-C Charging Cable,1,11.95,2019-03-18 11:06:00,630 Pine St, Seattle,WA,98101 +165995,AAA Batteries (4-pack),3,2.99,2019-03-16 23:11:00,757 7th St, Los Angeles,CA,90001 +165996,AAA Batteries (4-pack),2,2.99,2019-03-03 11:17:00,937 12th St, Atlanta,GA,30301 +165997,20in Monitor,1,109.99,2019-03-19 10:35:00,604 Meadow St, Boston,MA,02215 +165998,AA Batteries (4-pack),1,3.84,2019-03-02 14:30:00,320 Main St, San Francisco,CA,94016 +165999,Wired Headphones,2,11.99,2019-03-02 16:25:00,500 2nd St, Portland,OR,97035 +166000,Wired Headphones,1,11.99,2019-03-16 08:24:00,540 Chestnut St, San Francisco,CA,94016 +166001,Vareebadd Phone,1,400.0,2019-03-15 13:19:00,316 Center St, New York City,NY,10001 +166001,USB-C Charging Cable,1,11.95,2019-03-15 13:19:00,316 Center St, New York City,NY,10001 +166002,Macbook Pro Laptop,1,1700.0,2019-03-03 17:25:00,552 Johnson St, San Francisco,CA,94016 +166003,Flatscreen TV,1,300.0,2019-03-18 11:11:00,225 Pine St, Dallas,TX,75001 +166004,LG Dryer,1,600.0,2019-03-30 12:49:00,555 Lincoln St, San Francisco,CA,94016 +166005,AAA Batteries (4-pack),1,2.99,2019-03-27 15:30:00,882 4th St, San Francisco,CA,94016 +166006,Lightning Charging Cable,1,14.95,2019-03-06 11:40:00,357 14th St, San Francisco,CA,94016 +166007,AAA Batteries (4-pack),1,2.99,2019-03-31 13:56:00,760 Cherry St, San Francisco,CA,94016 +166008,AAA Batteries (4-pack),1,2.99,2019-03-30 12:38:00,978 7th St, Atlanta,GA,30301 +166009,Bose SoundSport Headphones,1,99.99,2019-03-26 20:00:00,710 2nd St, Boston,MA,02215 +166010,AA Batteries (4-pack),1,3.84,2019-03-30 22:12:00,178 North St, Seattle,WA,98101 +166011,Lightning Charging Cable,1,14.95,2019-03-30 15:44:00,325 South St, Austin,TX,73301 +166012,Bose SoundSport Headphones,1,99.99,2019-03-02 23:52:00,765 9th St, Los Angeles,CA,90001 +166013,Bose SoundSport Headphones,1,99.99,2019-03-01 13:24:00,846 Hill St, New York City,NY,10001 +166014,34in Ultrawide Monitor,1,379.99,2019-03-28 06:59:00,853 Madison St, Dallas,TX,75001 +166015,Apple Airpods Headphones,1,150.0,2019-03-18 17:12:00,247 Spruce St, Atlanta,GA,30301 +166016,iPhone,1,700.0,2019-03-04 19:26:00,684 Washington St, San Francisco,CA,94016 +166017,LG Washing Machine,1,600.0,2019-03-18 06:16:00,459 Spruce St, New York City,NY,10001 +166018,USB-C Charging Cable,1,11.95,2019-03-21 07:46:00,451 Sunset St, Boston,MA,02215 +166019,USB-C Charging Cable,1,11.95,2019-03-14 22:13:00,821 Maple St, Seattle,WA,98101 +166020,USB-C Charging Cable,1,11.95,2019-03-04 16:53:00,701 Madison St, Dallas,TX,75001 +166021,USB-C Charging Cable,1,11.95,2019-03-24 12:02:00,661 Wilson St, Atlanta,GA,30301 +166022,Macbook Pro Laptop,1,1700.0,2019-03-18 11:59:00,889 Chestnut St, Portland,OR,97035 +166023,Bose SoundSport Headphones,1,99.99,2019-03-06 08:23:00,485 Jefferson St, Boston,MA,02215 +166024,Wired Headphones,1,11.99,2019-03-09 09:36:00,119 Cherry St, New York City,NY,10001 +166025,27in 4K Gaming Monitor,1,389.99,2019-03-03 13:21:00,423 Hill St, Boston,MA,02215 +166026,AAA Batteries (4-pack),2,2.99,2019-03-13 21:30:00,903 Hill St, New York City,NY,10001 +166027,Lightning Charging Cable,1,14.95,2019-03-22 14:16:00,376 Spruce St, Portland,OR,97035 +166028,AA Batteries (4-pack),1,3.84,2019-03-17 17:34:00,471 Cedar St, Atlanta,GA,30301 +166029,Vareebadd Phone,1,400.0,2019-03-28 17:47:00,236 Church St, Los Angeles,CA,90001 +166030,Lightning Charging Cable,1,14.95,2019-03-25 12:12:00,372 12th St, San Francisco,CA,94016 +166031,AAA Batteries (4-pack),1,2.99,2019-03-14 13:31:00,156 Adams St, San Francisco,CA,94016 +166032,AAA Batteries (4-pack),1,2.99,2019-03-30 16:47:00,390 13th St, San Francisco,CA,94016 +166033,Wired Headphones,1,11.99,2019-03-30 11:56:00,841 5th St, Atlanta,GA,30301 +166034,Lightning Charging Cable,2,14.95,2019-03-24 16:24:00,39 Hill St, Los Angeles,CA,90001 +166035,Lightning Charging Cable,1,14.95,2019-03-22 09:39:00,403 River St, Atlanta,GA,30301 +166036,27in FHD Monitor,1,149.99,2019-03-18 21:38:00,771 Maple St, San Francisco,CA,94016 +166037,27in 4K Gaming Monitor,1,389.99,2019-03-16 17:08:00,393 10th St, Portland,OR,97035 +166038,AAA Batteries (4-pack),2,2.99,2019-03-23 13:02:00,577 Jackson St, Boston,MA,02215 +166039,Apple Airpods Headphones,1,150.0,2019-03-26 12:16:00,923 7th St, Austin,TX,73301 +166040,AAA Batteries (4-pack),1,2.99,2019-03-19 14:04:00,166 10th St, New York City,NY,10001 +166041,Lightning Charging Cable,1,14.95,2019-03-03 18:08:00,312 Highland St, Los Angeles,CA,90001 +166042,27in 4K Gaming Monitor,1,389.99,2019-03-07 21:07:00,923 Lincoln St, Boston,MA,02215 +166043,27in FHD Monitor,1,149.99,2019-03-11 09:21:00,76 Jefferson St, New York City,NY,10001 +166044,Lightning Charging Cable,1,14.95,2019-03-08 14:12:00,179 River St, New York City,NY,10001 +166045,LG Washing Machine,1,600.0,2019-03-15 19:56:00,425 7th St, Los Angeles,CA,90001 +166046,Wired Headphones,1,11.99,2019-03-17 21:03:00,112 Washington St, Los Angeles,CA,90001 +166047,20in Monitor,1,109.99,2019-03-14 20:15:00,356 Forest St, Portland,OR,97035 +166048,Wired Headphones,1,11.99,2019-03-11 17:45:00,970 9th St, Dallas,TX,75001 +166049,Wired Headphones,1,11.99,2019-03-15 21:36:00,798 Highland St, Atlanta,GA,30301 +166050,Apple Airpods Headphones,1,150.0,2019-03-13 11:04:00,865 5th St, San Francisco,CA,94016 +166051,AAA Batteries (4-pack),1,2.99,2019-03-26 22:32:00,730 Meadow St, Atlanta,GA,30301 +166052,27in FHD Monitor,1,149.99,2019-03-10 08:41:00,433 Walnut St, New York City,NY,10001 +166053,Wired Headphones,2,11.99,2019-03-15 16:51:00,935 Jefferson St, Los Angeles,CA,90001 +166054,USB-C Charging Cable,1,11.95,2019-03-28 13:26:00,791 4th St, San Francisco,CA,94016 +166055,USB-C Charging Cable,1,11.95,2019-03-19 10:13:00,551 12th St, New York City,NY,10001 +166056,USB-C Charging Cable,1,11.95,2019-03-15 11:06:00,822 Park St, New York City,NY,10001 +166057,Apple Airpods Headphones,1,150.0,2019-03-28 08:46:00,109 12th St, Boston,MA,02215 +166058,Flatscreen TV,1,300.0,2019-03-19 12:31:00,77 2nd St, Portland,OR,97035 +166059,AA Batteries (4-pack),1,3.84,2019-03-29 12:23:00,96 Cherry St, Dallas,TX,75001 +166060,Wired Headphones,1,11.99,2019-03-14 18:01:00,282 Sunset St, Los Angeles,CA,90001 +166061,20in Monitor,1,109.99,2019-03-19 03:48:00,30 Hickory St, Los Angeles,CA,90001 +166062,Wired Headphones,1,11.99,2019-03-29 21:25:00,523 Cherry St, Dallas,TX,75001 +166063,Flatscreen TV,1,300.0,2019-03-24 17:13:00,491 North St, Atlanta,GA,30301 +166064,Lightning Charging Cable,1,14.95,2019-03-05 20:10:00,785 Church St, San Francisco,CA,94016 +166065,27in FHD Monitor,1,149.99,2019-03-18 11:48:00,658 Pine St, San Francisco,CA,94016 +166066,Bose SoundSport Headphones,1,99.99,2019-03-20 00:35:00,229 Center St, San Francisco,CA,94016 +166067,AA Batteries (4-pack),1,3.84,2019-03-07 00:26:00,982 Hill St, San Francisco,CA,94016 +166068,Bose SoundSport Headphones,1,99.99,2019-03-27 16:19:00,588 11th St, San Francisco,CA,94016 +166069,27in FHD Monitor,1,149.99,2019-03-25 18:21:00,707 5th St, San Francisco,CA,94016 +166070,AA Batteries (4-pack),1,3.84,2019-03-19 20:00:00,845 Sunset St, San Francisco,CA,94016 +166071,USB-C Charging Cable,1,11.95,2019-03-03 11:31:00,497 10th St, Portland,OR,97035 +166072,Macbook Pro Laptop,1,1700.0,2019-03-19 20:03:00,860 Forest St, San Francisco,CA,94016 +166073,Lightning Charging Cable,1,14.95,2019-03-07 21:27:00,497 6th St, San Francisco,CA,94016 +166074,Wired Headphones,1,11.99,2019-03-09 15:58:00,533 Pine St, New York City,NY,10001 +166075,Bose SoundSport Headphones,1,99.99,2019-03-23 08:21:00,451 Johnson St, Portland,OR,97035 +166076,USB-C Charging Cable,1,11.95,2019-03-06 10:27:00,337 4th St, San Francisco,CA,94016 +166077,AAA Batteries (4-pack),1,2.99,2019-03-22 18:29:00,938 Highland St, Los Angeles,CA,90001 +166078,Bose SoundSport Headphones,1,99.99,2019-03-20 19:26:00,853 Center St, Atlanta,GA,30301 +166079,AAA Batteries (4-pack),1,2.99,2019-03-04 11:58:00,544 Lake St, Los Angeles,CA,90001 +166080,ThinkPad Laptop,1,999.99,2019-03-01 23:22:00,19 Wilson St, San Francisco,CA,94016 +166081,AA Batteries (4-pack),1,3.84,2019-03-06 21:32:00,429 Lake St, Los Angeles,CA,90001 +166082,iPhone,1,700.0,2019-03-28 20:05:00,823 Highland St, San Francisco,CA,94016 +166082,Apple Airpods Headphones,1,150.0,2019-03-28 20:05:00,823 Highland St, San Francisco,CA,94016 +166083,LG Dryer,1,600.0,2019-03-12 15:18:00,958 Sunset St, Portland,OR,97035 +166084,Bose SoundSport Headphones,1,99.99,2019-03-04 22:17:00,833 Washington St, San Francisco,CA,94016 +166085,Bose SoundSport Headphones,1,99.99,2019-03-17 18:37:00,275 Jackson St, San Francisco,CA,94016 +166086,Apple Airpods Headphones,1,150.0,2019-03-15 19:17:00,102 7th St, Atlanta,GA,30301 +166087,34in Ultrawide Monitor,1,379.99,2019-03-27 15:49:00,133 Johnson St, Austin,TX,73301 +166088,Wired Headphones,1,11.99,2019-03-14 18:38:00,627 Hickory St, New York City,NY,10001 +166089,USB-C Charging Cable,1,11.95,2019-03-08 00:21:00,501 Jackson St, Portland,OR,97035 +166090,Lightning Charging Cable,1,14.95,2019-03-28 18:50:00,836 14th St, New York City,NY,10001 +166091,Wired Headphones,2,11.99,2019-03-06 22:14:00,942 Wilson St, Atlanta,GA,30301 +166092,Apple Airpods Headphones,1,150.0,2019-03-13 07:15:00,92 Center St, Portland,OR,97035 +166093,iPhone,1,700.0,2019-03-11 12:44:00,677 Elm St, New York City,NY,10001 +166094,27in 4K Gaming Monitor,1,389.99,2019-03-26 18:54:00,868 Highland St, Los Angeles,CA,90001 +166095,27in 4K Gaming Monitor,1,389.99,2019-03-19 16:10:00,717 Spruce St, Dallas,TX,75001 +166096,ThinkPad Laptop,1,999.99,2019-03-18 17:57:00,453 Adams St, San Francisco,CA,94016 +166097,AAA Batteries (4-pack),2,2.99,2019-03-24 14:40:00,442 Elm St, Los Angeles,CA,90001 +166098,USB-C Charging Cable,2,11.95,2019-03-30 15:58:00,434 Pine St, San Francisco,CA,94016 +166099,Lightning Charging Cable,1,14.95,2019-03-08 01:05:00,210 14th St, San Francisco,CA,94016 +166100,Apple Airpods Headphones,1,150.0,2019-03-27 09:05:00,79 Forest St, New York City,NY,10001 +166101,Apple Airpods Headphones,1,150.0,2019-03-06 20:48:00,321 Lake St, Los Angeles,CA,90001 +166102,Bose SoundSport Headphones,1,99.99,2019-03-18 20:39:00,313 8th St, Los Angeles,CA,90001 +166103,27in 4K Gaming Monitor,1,389.99,2019-03-28 18:20:00,986 Chestnut St, Los Angeles,CA,90001 +166104,AA Batteries (4-pack),2,3.84,2019-03-29 00:19:00,20 Main St, New York City,NY,10001 +166105,Google Phone,1,600.0,2019-03-19 11:07:00,15 Meadow St, Los Angeles,CA,90001 +166105,Wired Headphones,1,11.99,2019-03-19 11:07:00,15 Meadow St, Los Angeles,CA,90001 +166106,Apple Airpods Headphones,1,150.0,2019-03-13 22:14:00,231 River St, Seattle,WA,98101 +166107,Vareebadd Phone,1,400.0,2019-03-06 11:49:00,113 Meadow St, New York City,NY,10001 +166108,AA Batteries (4-pack),3,3.84,2019-03-23 12:54:00,642 12th St, Boston,MA,02215 +166109,USB-C Charging Cable,1,11.95,2019-03-29 14:50:00,530 Ridge St, Boston,MA,02215 +166110,Wired Headphones,1,11.99,2019-03-08 19:01:00,689 Dogwood St, Dallas,TX,75001 +166111,Bose SoundSport Headphones,1,99.99,2019-03-23 15:19:00,657 Dogwood St, Boston,MA,02215 +166112,Flatscreen TV,1,300.0,2019-03-06 13:17:00,54 Elm St, Atlanta,GA,30301 +166113,27in 4K Gaming Monitor,1,389.99,2019-03-11 23:20:00,885 Jackson St, Los Angeles,CA,90001 +166114,27in 4K Gaming Monitor,1,389.99,2019-03-15 10:22:00,969 7th St, Los Angeles,CA,90001 +166115,USB-C Charging Cable,1,11.95,2019-03-18 20:03:00,433 Church St, San Francisco,CA,94016 +166116,USB-C Charging Cable,1,11.95,2019-03-29 18:10:00,64 8th St, New York City,NY,10001 +166117,27in FHD Monitor,1,149.99,2019-03-27 19:30:00,248 6th St, Atlanta,GA,30301 +166118,Lightning Charging Cable,1,14.95,2019-03-02 08:35:00,452 Chestnut St, Portland,OR,97035 +166119,USB-C Charging Cable,1,11.95,2019-03-05 11:08:00,276 6th St, San Francisco,CA,94016 +166120,AA Batteries (4-pack),1,3.84,2019-03-16 13:22:00,378 Main St, New York City,NY,10001 +166121,27in FHD Monitor,1,149.99,2019-03-27 11:20:00,33 Willow St, Seattle,WA,98101 +166122,AA Batteries (4-pack),1,3.84,2019-03-21 23:36:00,479 Highland St, Seattle,WA,98101 +166123,Bose SoundSport Headphones,1,99.99,2019-03-21 22:04:00,611 Washington St, New York City,NY,10001 +166124,Wired Headphones,1,11.99,2019-03-12 20:45:00,341 1st St, Los Angeles,CA,90001 +166125,AAA Batteries (4-pack),1,2.99,2019-03-13 11:16:00,518 South St, San Francisco,CA,94016 +166126,Wired Headphones,1,11.99,2019-03-18 10:52:00,598 Lakeview St, Dallas,TX,75001 +166127,iPhone,1,700.0,2019-03-14 15:21:00,536 Meadow St, San Francisco,CA,94016 +166127,Lightning Charging Cable,1,14.95,2019-03-14 15:21:00,536 Meadow St, San Francisco,CA,94016 +166128,Bose SoundSport Headphones,1,99.99,2019-03-25 21:26:00,133 Willow St, San Francisco,CA,94016 +166129,Bose SoundSport Headphones,1,99.99,2019-03-28 13:32:00,792 Lakeview St, Austin,TX,73301 +166130,27in 4K Gaming Monitor,1,389.99,2019-03-30 23:33:00,461 Lake St, New York City,NY,10001 +166131,Wired Headphones,1,11.99,2019-03-15 11:14:00,54 Cedar St, Dallas,TX,75001 +166132,Lightning Charging Cable,2,14.95,2019-03-13 21:55:00,531 Elm St, Dallas,TX,75001 +166133,Lightning Charging Cable,1,14.95,2019-03-20 14:02:00,636 4th St, San Francisco,CA,94016 +166134,Macbook Pro Laptop,1,1700.0,2019-03-09 21:35:00,957 Highland St, Seattle,WA,98101 +166135,27in 4K Gaming Monitor,1,389.99,2019-03-02 21:46:00,765 Cherry St, San Francisco,CA,94016 +166136,Macbook Pro Laptop,1,1700.0,2019-03-18 18:44:00,623 South St, Boston,MA,02215 +166137,27in FHD Monitor,1,149.99,2019-03-15 13:18:00,898 Lakeview St, Los Angeles,CA,90001 +166138,27in 4K Gaming Monitor,1,389.99,2019-03-07 14:02:00,540 13th St, New York City,NY,10001 +166139,AAA Batteries (4-pack),1,2.99,2019-03-04 17:03:00,132 Chestnut St, Los Angeles,CA,90001 +166140,Bose SoundSport Headphones,1,99.99,2019-03-08 13:55:00,739 Dogwood St, Atlanta,GA,30301 +166141,Wired Headphones,1,11.99,2019-03-07 14:13:00,637 Ridge St, Atlanta,GA,30301 +166142,34in Ultrawide Monitor,1,379.99,2019-03-11 13:35:00,387 14th St, Atlanta,GA,30301 +166143,Flatscreen TV,2,300.0,2019-03-01 15:07:00,781 Johnson St, San Francisco,CA,94016 +166144,Wired Headphones,1,11.99,2019-03-02 17:23:00,257 8th St, Austin,TX,73301 +166145,USB-C Charging Cable,1,11.95,2019-03-15 11:23:00,76 Madison St, New York City,NY,10001 +166146,Lightning Charging Cable,1,14.95,2019-03-05 16:07:00,142 1st St, Atlanta,GA,30301 +166147,Lightning Charging Cable,1,14.95,2019-03-16 18:39:00,619 5th St, New York City,NY,10001 +166148,Apple Airpods Headphones,1,150.0,2019-03-18 10:29:00,502 Adams St, Boston,MA,02215 +166149,27in FHD Monitor,1,149.99,2019-03-26 09:15:00,970 Meadow St, Los Angeles,CA,90001 +166150,USB-C Charging Cable,1,11.95,2019-03-07 21:27:00,144 North St, Portland,OR,97035 +166151,Lightning Charging Cable,1,14.95,2019-03-05 13:54:00,801 Hickory St, Boston,MA,02215 +166152,34in Ultrawide Monitor,1,379.99,2019-03-28 11:53:00,337 Johnson St, Dallas,TX,75001 +166153,Apple Airpods Headphones,1,150.0,2019-03-01 18:37:00,817 Sunset St, Atlanta,GA,30301 +166154,Macbook Pro Laptop,1,1700.0,2019-03-15 12:49:00,727 Wilson St, San Francisco,CA,94016 +166155,AAA Batteries (4-pack),1,2.99,2019-03-30 18:49:00,965 6th St, Portland,OR,97035 +166156,AA Batteries (4-pack),2,3.84,2019-03-12 04:51:00,219 Lake St, Atlanta,GA,30301 +166157,USB-C Charging Cable,1,11.95,2019-03-25 18:36:00,334 4th St, San Francisco,CA,94016 +166158,USB-C Charging Cable,1,11.95,2019-03-02 11:50:00,8 Willow St, Dallas,TX,75001 +166159,USB-C Charging Cable,1,11.95,2019-03-20 19:49:00,468 Park St, Seattle,WA,98101 +166160,ThinkPad Laptop,1,999.99,2019-03-25 22:53:00,820 13th St, San Francisco,CA,94016 +166161,Google Phone,1,600.0,2019-03-29 18:07:00,857 8th St, Los Angeles,CA,90001 +166161,Wired Headphones,1,11.99,2019-03-29 18:07:00,857 8th St, Los Angeles,CA,90001 +166162,Bose SoundSport Headphones,1,99.99,2019-03-01 19:19:00,131 1st St, Seattle,WA,98101 +166163,AAA Batteries (4-pack),1,2.99,2019-03-20 20:20:00,622 West St, Dallas,TX,75001 +166163,Lightning Charging Cable,1,14.95,2019-03-20 20:20:00,622 West St, Dallas,TX,75001 +166164,USB-C Charging Cable,1,11.95,2019-03-04 20:57:00,240 River St, Los Angeles,CA,90001 +166165,ThinkPad Laptop,1,999.99,2019-03-04 16:17:00,657 Highland St, San Francisco,CA,94016 +166166,34in Ultrawide Monitor,1,379.99,2019-03-23 16:25:00,614 Forest St, San Francisco,CA,94016 +166167,USB-C Charging Cable,2,11.95,2019-03-16 20:40:00,37 Main St, Portland,OR,97035 +166168,USB-C Charging Cable,1,11.95,2019-03-22 11:18:00,581 Jefferson St, Los Angeles,CA,90001 +166169,Bose SoundSport Headphones,1,99.99,2019-03-30 18:27:00,385 Jefferson St, San Francisco,CA,94016 +166170,AA Batteries (4-pack),1,3.84,2019-03-09 08:12:00,878 Main St, Portland,ME,04101 +166171,USB-C Charging Cable,1,11.95,2019-03-17 14:29:00,811 North St, Austin,TX,73301 +166172,27in FHD Monitor,1,149.99,2019-03-03 03:41:00,874 Forest St, San Francisco,CA,94016 +166173,AA Batteries (4-pack),1,3.84,2019-03-24 13:19:00,378 Wilson St, Los Angeles,CA,90001 +166174,Apple Airpods Headphones,1,150.0,2019-03-01 10:44:00,910 Walnut St, Los Angeles,CA,90001 +166175,Lightning Charging Cable,1,14.95,2019-03-23 09:19:00,618 Main St, Atlanta,GA,30301 +166176,USB-C Charging Cable,2,11.95,2019-03-16 17:35:00,899 Dogwood St, Austin,TX,73301 +166177,Apple Airpods Headphones,1,150.0,2019-03-25 16:04:00,348 North St, Austin,TX,73301 +166178,Bose SoundSport Headphones,1,99.99,2019-03-29 17:56:00,705 1st St, San Francisco,CA,94016 +166179,AAA Batteries (4-pack),1,2.99,2019-03-27 12:16:00,433 Forest St, Portland,OR,97035 +166180,ThinkPad Laptop,1,999.99,2019-03-14 11:00:00,779 4th St, New York City,NY,10001 +166181,USB-C Charging Cable,1,11.95,2019-03-02 13:50:00,65 11th St, Portland,ME,04101 +166182,AA Batteries (4-pack),1,3.84,2019-03-12 11:35:00,629 2nd St, Seattle,WA,98101 +166183,ThinkPad Laptop,1,999.99,2019-03-21 17:52:00,848 2nd St, Atlanta,GA,30301 +166184,27in FHD Monitor,1,149.99,2019-03-09 22:10:00,111 Wilson St, San Francisco,CA,94016 +166185,20in Monitor,1,109.99,2019-03-24 20:38:00,945 Meadow St, San Francisco,CA,94016 +166186,AA Batteries (4-pack),2,3.84,2019-03-01 21:07:00,534 Sunset St, Atlanta,GA,30301 +166187,AA Batteries (4-pack),2,3.84,2019-03-31 12:54:00,37 Sunset St, Los Angeles,CA,90001 +166188,Google Phone,1,600.0,2019-03-11 23:37:00,416 Lake St, San Francisco,CA,94016 +166189,Apple Airpods Headphones,1,150.0,2019-03-04 14:35:00,872 Adams St, San Francisco,CA,94016 +166190,Wired Headphones,1,11.99,2019-03-20 16:16:00,988 Lincoln St, New York City,NY,10001 +166191,USB-C Charging Cable,2,11.95,2019-03-01 11:00:00,15 Highland St, Boston,MA,02215 +166192,Wired Headphones,2,11.99,2019-03-02 14:39:00,337 Chestnut St, Dallas,TX,75001 +166193,Lightning Charging Cable,1,14.95,2019-03-03 09:12:00,224 Chestnut St, Los Angeles,CA,90001 +166194,Wired Headphones,1,11.99,2019-03-20 18:26:00,749 Center St, Austin,TX,73301 +166195,USB-C Charging Cable,1,11.95,2019-03-25 23:46:00,761 7th St, San Francisco,CA,94016 +166196,Google Phone,1,600.0,2019-03-31 15:31:00,355 6th St, Los Angeles,CA,90001 +166197,USB-C Charging Cable,1,11.95,2019-03-09 20:14:00,607 Madison St, San Francisco,CA,94016 +166198,AA Batteries (4-pack),3,3.84,2019-03-16 08:39:00,396 Hill St, Portland,OR,97035 +166199,AAA Batteries (4-pack),2,2.99,2019-03-17 12:27:00,926 4th St, Los Angeles,CA,90001 +166200,Wired Headphones,1,11.99,2019-03-05 09:41:00,305 Forest St, Los Angeles,CA,90001 +166201,20in Monitor,1,109.99,2019-03-18 08:47:00,323 South St, San Francisco,CA,94016 +166202,iPhone,1,700.0,2019-03-29 17:52:00,572 14th St, Boston,MA,02215 +166203,USB-C Charging Cable,1,11.95,2019-03-07 13:44:00,830 Cedar St, Atlanta,GA,30301 +166204,Wired Headphones,2,11.99,2019-03-04 16:02:00,553 Hickory St, San Francisco,CA,94016 +166205,Wired Headphones,1,11.99,2019-03-12 16:49:00,692 Elm St, Austin,TX,73301 +166206,Wired Headphones,1,11.99,2019-03-09 16:16:00,247 11th St, New York City,NY,10001 +166207,20in Monitor,1,109.99,2019-03-12 10:22:00,57 Highland St, Los Angeles,CA,90001 +166208,AA Batteries (4-pack),1,3.84,2019-03-11 18:09:00,582 9th St, Los Angeles,CA,90001 +166209,Lightning Charging Cable,1,14.95,2019-03-19 11:32:00,878 Jefferson St, Seattle,WA,98101 +166210,AA Batteries (4-pack),1,3.84,2019-03-13 20:21:00,699 10th St, Austin,TX,73301 +166211,Flatscreen TV,1,300.0,2019-03-30 02:44:00,444 Wilson St, Atlanta,GA,30301 +166212,Lightning Charging Cable,1,14.95,2019-03-16 23:25:00,348 Maple St, San Francisco,CA,94016 +166213,ThinkPad Laptop,1,999.99,2019-03-25 09:27:00,796 Ridge St, Seattle,WA,98101 +166214,USB-C Charging Cable,1,11.95,2019-03-25 13:51:00,356 Center St, San Francisco,CA,94016 +166215,Wired Headphones,1,11.99,2019-03-18 01:46:00,658 10th St, Portland,OR,97035 +166216,Lightning Charging Cable,1,14.95,2019-03-05 17:03:00,460 11th St, Austin,TX,73301 +166217,Vareebadd Phone,1,400.0,2019-03-30 20:50:00,950 Main St, San Francisco,CA,94016 +166218,AAA Batteries (4-pack),1,2.99,2019-03-10 09:49:00,84 5th St, Austin,TX,73301 +166219,Apple Airpods Headphones,1,150.0,2019-03-30 21:00:00,984 Spruce St, Atlanta,GA,30301 +166220,27in 4K Gaming Monitor,1,389.99,2019-03-11 13:06:00,956 Dogwood St, Portland,OR,97035 +166221,iPhone,1,700.0,2019-03-10 10:50:00,229 13th St, Los Angeles,CA,90001 +166222,AA Batteries (4-pack),1,3.84,2019-03-29 09:55:00,257 South St, Boston,MA,02215 +166223,Lightning Charging Cable,1,14.95,2019-03-26 12:41:00,509 2nd St, San Francisco,CA,94016 +166224,Bose SoundSport Headphones,1,99.99,2019-03-27 23:27:00,116 Main St, Dallas,TX,75001 +166225,34in Ultrawide Monitor,1,379.99,2019-03-01 11:05:00,587 West St, San Francisco,CA,94016 +166226,ThinkPad Laptop,1,999.99,2019-03-15 12:20:00,331 Forest St, Los Angeles,CA,90001 +166227,Lightning Charging Cable,1,14.95,2019-03-14 22:50:00,849 Wilson St, Atlanta,GA,30301 +166228,Lightning Charging Cable,1,14.95,2019-03-30 11:28:00,22 Highland St, Los Angeles,CA,90001 +166229,Bose SoundSport Headphones,1,99.99,2019-03-09 16:23:00,832 Willow St, New York City,NY,10001 +166230,Wired Headphones,1,11.99,2019-03-14 19:56:00,881 Lakeview St, Boston,MA,02215 +166231,AA Batteries (4-pack),1,3.84,2019-03-04 11:18:00,759 Lakeview St, Los Angeles,CA,90001 +166232,Wired Headphones,1,11.99,2019-03-25 08:00:00,906 West St, Portland,ME,04101 +166233,Wired Headphones,1,11.99,2019-03-29 10:01:00,889 Sunset St, New York City,NY,10001 +166234,AAA Batteries (4-pack),3,2.99,2019-03-16 13:50:00,319 River St, Boston,MA,02215 +166235,Bose SoundSport Headphones,1,99.99,2019-03-16 11:16:00,573 12th St, Boston,MA,02215 +166236,AAA Batteries (4-pack),1,2.99,2019-03-15 09:34:00,639 Forest St, Portland,OR,97035 +166237,Flatscreen TV,1,300.0,2019-03-29 14:17:00,884 Forest St, Atlanta,GA,30301 +166238,USB-C Charging Cable,1,11.95,2019-03-27 20:06:00,468 1st St, San Francisco,CA,94016 +166239,34in Ultrawide Monitor,1,379.99,2019-03-19 14:30:00,860 Hill St, Atlanta,GA,30301 +166240,iPhone,1,700.0,2019-03-03 10:42:00,536 Center St, Los Angeles,CA,90001 +166241,27in FHD Monitor,1,149.99,2019-03-19 17:23:00,952 Maple St, Dallas,TX,75001 +166242,Wired Headphones,1,11.99,2019-03-26 08:51:00,169 1st St, Boston,MA,02215 +166243,34in Ultrawide Monitor,1,379.99,2019-03-12 17:46:00,910 7th St, Boston,MA,02215 +166244,Bose SoundSport Headphones,1,99.99,2019-03-24 10:06:00,340 5th St, Los Angeles,CA,90001 +166245,AA Batteries (4-pack),1,3.84,2019-03-23 18:42:00,236 9th St, Seattle,WA,98101 +166246,Apple Airpods Headphones,1,150.0,2019-03-31 09:14:00,824 Center St, San Francisco,CA,94016 +166247,iPhone,1,700.0,2019-03-03 11:43:00,455 7th St, San Francisco,CA,94016 +166248,Apple Airpods Headphones,1,150.0,2019-03-15 22:48:00,244 13th St, Los Angeles,CA,90001 +166249,Wired Headphones,1,11.99,2019-03-26 16:48:00,970 Spruce St, Los Angeles,CA,90001 +166250,Lightning Charging Cable,1,14.95,2019-04-01 00:11:00,159 Walnut St, Los Angeles,CA,90001 +166251,Apple Airpods Headphones,1,150.0,2019-03-11 10:58:00,874 Maple St, New York City,NY,10001 +166252,Apple Airpods Headphones,1,150.0,2019-03-04 08:26:00,918 12th St, New York City,NY,10001 +166253,AA Batteries (4-pack),1,3.84,2019-03-29 08:46:00,445 Jackson St, Los Angeles,CA,90001 +166254,34in Ultrawide Monitor,1,379.99,2019-03-11 15:44:00,487 10th St, Atlanta,GA,30301 +166255,Lightning Charging Cable,1,14.95,2019-03-27 11:10:00,716 5th St, San Francisco,CA,94016 +166256,Apple Airpods Headphones,1,150.0,2019-03-26 21:08:00,784 Chestnut St, San Francisco,CA,94016 +166257,iPhone,1,700.0,2019-03-28 20:56:00,528 Forest St, Boston,MA,02215 +166258,Apple Airpods Headphones,1,150.0,2019-03-27 18:29:00,795 Cherry St, New York City,NY,10001 +166259,Bose SoundSport Headphones,1,99.99,2019-03-13 22:49:00,752 Ridge St, New York City,NY,10001 +166260,USB-C Charging Cable,3,11.95,2019-03-12 11:58:00,259 Center St, Portland,OR,97035 +166260,Lightning Charging Cable,1,14.95,2019-03-12 11:58:00,259 Center St, Portland,OR,97035 +166261,AA Batteries (4-pack),2,3.84,2019-03-09 13:06:00,773 Chestnut St, Portland,ME,04101 +166262,USB-C Charging Cable,2,11.95,2019-03-12 18:15:00,388 12th St, Atlanta,GA,30301 +166263,Bose SoundSport Headphones,1,99.99,2019-03-06 22:22:00,328 Park St, Atlanta,GA,30301 +166264,Bose SoundSport Headphones,1,99.99,2019-03-27 13:00:00,74 Maple St, Los Angeles,CA,90001 +166265,34in Ultrawide Monitor,1,379.99,2019-03-23 11:31:00,134 South St, Los Angeles,CA,90001 +166266,AAA Batteries (4-pack),1,2.99,2019-03-07 21:19:00,851 Pine St, Atlanta,GA,30301 +166267,USB-C Charging Cable,1,11.95,2019-03-08 07:47:00,565 Center St, Portland,ME,04101 +166268,LG Washing Machine,1,600.0,2019-03-23 12:52:00,807 12th St, Seattle,WA,98101 +166269,Apple Airpods Headphones,1,150.0,2019-03-27 12:02:00,496 Johnson St, Seattle,WA,98101 +166270,Lightning Charging Cable,1,14.95,2019-03-05 06:11:00,612 Center St, Atlanta,GA,30301 +166271,27in 4K Gaming Monitor,1,389.99,2019-03-30 09:05:00,548 8th St, Portland,OR,97035 +166272,USB-C Charging Cable,1,11.95,2019-03-04 18:54:00,322 8th St, Dallas,TX,75001 +166273,20in Monitor,1,109.99,2019-03-28 01:02:00,29 West St, Los Angeles,CA,90001 +166274,AAA Batteries (4-pack),1,2.99,2019-03-13 09:32:00,240 North St, San Francisco,CA,94016 +166275,Flatscreen TV,1,300.0,2019-03-19 18:14:00,771 Church St, San Francisco,CA,94016 +166276,27in FHD Monitor,1,149.99,2019-03-11 17:35:00,791 2nd St, Boston,MA,02215 +166277,Wired Headphones,1,11.99,2019-03-01 13:26:00,874 North St, San Francisco,CA,94016 +166278,ThinkPad Laptop,1,999.99,2019-03-20 16:57:00,622 Johnson St, Los Angeles,CA,90001 +166279,27in FHD Monitor,1,149.99,2019-03-11 12:57:00,269 Johnson St, San Francisco,CA,94016 +166280,AAA Batteries (4-pack),2,2.99,2019-03-05 22:54:00,499 South St, Los Angeles,CA,90001 +166281,USB-C Charging Cable,1,11.95,2019-03-16 23:52:00,424 5th St, Boston,MA,02215 +166282,Wired Headphones,1,11.99,2019-03-19 10:09:00,528 8th St, Dallas,TX,75001 +166283,Bose SoundSport Headphones,1,99.99,2019-03-21 07:42:00,395 West St, Los Angeles,CA,90001 +166284,ThinkPad Laptop,1,999.99,2019-03-05 11:46:00,723 1st St, Dallas,TX,75001 +166284,Lightning Charging Cable,1,14.95,2019-03-05 11:46:00,723 1st St, Dallas,TX,75001 +166285,AA Batteries (4-pack),1,3.84,2019-03-13 09:53:00,725 Washington St, Los Angeles,CA,90001 +166286,USB-C Charging Cable,1,11.95,2019-03-09 15:09:00,38 Chestnut St, Boston,MA,02215 +166287,USB-C Charging Cable,1,11.95,2019-03-30 20:17:00,830 Madison St, Los Angeles,CA,90001 +166288,AA Batteries (4-pack),1,3.84,2019-03-04 10:31:00,566 Highland St, Portland,OR,97035 +166289,USB-C Charging Cable,1,11.95,2019-03-29 09:14:00,592 Washington St, New York City,NY,10001 +166290,AA Batteries (4-pack),1,3.84,2019-03-01 08:57:00,89 4th St, New York City,NY,10001 +166291,20in Monitor,1,109.99,2019-03-25 18:08:00,566 North St, Los Angeles,CA,90001 +166292,Bose SoundSport Headphones,1,99.99,2019-03-29 22:07:00,242 Spruce St, Atlanta,GA,30301 +166293,USB-C Charging Cable,1,11.95,2019-03-13 21:08:00,345 Church St, Portland,OR,97035 +166294,20in Monitor,1,109.99,2019-03-02 12:32:00,545 1st St, Austin,TX,73301 +166295,Apple Airpods Headphones,1,150.0,2019-03-10 21:07:00,638 Spruce St, Los Angeles,CA,90001 +166296,AAA Batteries (4-pack),4,2.99,2019-03-08 06:07:00,389 Sunset St, Los Angeles,CA,90001 +166297,Apple Airpods Headphones,1,150.0,2019-03-08 00:49:00,940 Johnson St, Los Angeles,CA,90001 +166298,AA Batteries (4-pack),1,3.84,2019-03-08 11:57:00,916 11th St, San Francisco,CA,94016 +166299,27in FHD Monitor,1,149.99,2019-03-25 19:24:00,311 Park St, San Francisco,CA,94016 +166300,Wired Headphones,1,11.99,2019-03-18 11:33:00,999 Pine St, Seattle,WA,98101 +166301,AAA Batteries (4-pack),1,2.99,2019-03-21 22:23:00,941 6th St, Los Angeles,CA,90001 +166302,iPhone,1,700.0,2019-03-25 07:34:00,647 6th St, Seattle,WA,98101 +166302,Wired Headphones,1,11.99,2019-03-25 07:34:00,647 6th St, Seattle,WA,98101 +166303,Bose SoundSport Headphones,1,99.99,2019-03-02 16:00:00,828 South St, Atlanta,GA,30301 +166304,AA Batteries (4-pack),1,3.84,2019-03-30 14:23:00,396 North St, New York City,NY,10001 +166305,Bose SoundSport Headphones,1,99.99,2019-03-12 21:41:00,510 13th St, Atlanta,GA,30301 +166306,AA Batteries (4-pack),2,3.84,2019-03-12 13:44:00,411 1st St, San Francisco,CA,94016 +166307,Lightning Charging Cable,1,14.95,2019-03-18 23:46:00,507 Lake St, Los Angeles,CA,90001 +166308,AAA Batteries (4-pack),1,2.99,2019-03-21 00:01:00,514 Johnson St, Los Angeles,CA,90001 +166309,AA Batteries (4-pack),1,3.84,2019-04-01 01:32:00,2 Church St, Seattle,WA,98101 +166310,Lightning Charging Cable,1,14.95,2019-03-23 14:00:00,695 9th St, New York City,NY,10001 +166311,USB-C Charging Cable,1,11.95,2019-03-26 18:13:00,648 10th St, Portland,OR,97035 +166312,AA Batteries (4-pack),2,3.84,2019-03-21 20:19:00,784 Cedar St, Boston,MA,02215 +166313,AAA Batteries (4-pack),1,2.99,2019-03-24 19:05:00,198 11th St, Atlanta,GA,30301 +166314,Wired Headphones,1,11.99,2019-03-16 02:10:00,408 8th St, Seattle,WA,98101 +166315,ThinkPad Laptop,1,999.99,2019-03-31 13:58:00,212 Johnson St, Atlanta,GA,30301 +166316,34in Ultrawide Monitor,1,379.99,2019-03-17 17:35:00,369 Park St, New York City,NY,10001 +166317,AAA Batteries (4-pack),1,2.99,2019-03-22 17:02:00,908 6th St, San Francisco,CA,94016 +166318,Wired Headphones,1,11.99,2019-03-22 08:27:00,539 Adams St, New York City,NY,10001 +166319,Wired Headphones,1,11.99,2019-03-11 19:28:00,723 Pine St, New York City,NY,10001 +166320,Wired Headphones,1,11.99,2019-03-14 14:05:00,945 Jackson St, Portland,OR,97035 +166321,27in FHD Monitor,1,149.99,2019-03-28 21:04:00,701 12th St, Seattle,WA,98101 +166322,Apple Airpods Headphones,1,150.0,2019-03-23 13:26:00,572 Cherry St, Boston,MA,02215 +166323,AA Batteries (4-pack),1,3.84,2019-03-23 16:49:00,589 Dogwood St, Atlanta,GA,30301 +166324,27in FHD Monitor,1,149.99,2019-03-15 20:18:00,342 Lake St, Los Angeles,CA,90001 +166325,AAA Batteries (4-pack),1,2.99,2019-03-15 12:58:00,620 Lake St, Austin,TX,73301 +166326,27in FHD Monitor,1,149.99,2019-03-11 23:13:00,884 Sunset St, Los Angeles,CA,90001 +166326,Vareebadd Phone,1,400.0,2019-03-11 23:13:00,884 Sunset St, Los Angeles,CA,90001 +166327,Bose SoundSport Headphones,1,99.99,2019-03-25 16:34:00,439 Cherry St, Dallas,TX,75001 +166328,USB-C Charging Cable,1,11.95,2019-03-18 09:20:00,295 Spruce St, Los Angeles,CA,90001 +166329,Macbook Pro Laptop,1,1700.0,2019-03-17 23:50:00,821 Chestnut St, Atlanta,GA,30301 +166330,Bose SoundSport Headphones,1,99.99,2019-03-12 06:11:00,527 North St, San Francisco,CA,94016 +166331,Bose SoundSport Headphones,1,99.99,2019-03-17 14:23:00,151 South St, Seattle,WA,98101 +166332,Lightning Charging Cable,1,14.95,2019-03-31 17:53:00,170 Lincoln St, Dallas,TX,75001 +166333,AA Batteries (4-pack),1,3.84,2019-03-01 16:27:00,16 Hill St, Seattle,WA,98101 +166334,Google Phone,1,600.0,2019-03-03 12:50:00,702 Elm St, New York City,NY,10001 +166334,Bose SoundSport Headphones,1,99.99,2019-03-03 12:50:00,702 Elm St, New York City,NY,10001 +166335,Apple Airpods Headphones,1,150.0,2019-03-17 12:12:00,58 Elm St, Portland,ME,04101 +166336,AA Batteries (4-pack),1,3.84,2019-03-30 01:24:00,797 10th St, New York City,NY,10001 +166337,Google Phone,1,600.0,2019-03-03 19:48:00,107 Willow St, San Francisco,CA,94016 +166337,USB-C Charging Cable,1,11.95,2019-03-03 19:48:00,107 Willow St, San Francisco,CA,94016 +166338,Wired Headphones,1,11.99,2019-03-03 10:13:00,868 Johnson St, New York City,NY,10001 +166339,27in 4K Gaming Monitor,1,389.99,2019-03-23 09:21:00,67 Pine St, San Francisco,CA,94016 +166340,34in Ultrawide Monitor,1,379.99,2019-03-25 11:25:00,377 Jackson St, Boston,MA,02215 +166341,AAA Batteries (4-pack),1,2.99,2019-03-02 00:27:00,747 Highland St, Los Angeles,CA,90001 +166342,USB-C Charging Cable,1,11.95,2019-03-31 13:40:00,130 Washington St, San Francisco,CA,94016 +166343,Wired Headphones,1,11.99,2019-03-28 09:55:00,745 Lincoln St, San Francisco,CA,94016 +166344,Lightning Charging Cable,1,14.95,2019-03-20 17:14:00,245 13th St, San Francisco,CA,94016 +166345,AA Batteries (4-pack),1,3.84,2019-03-26 10:31:00,558 Spruce St, New York City,NY,10001 +166346,Wired Headphones,1,11.99,2019-03-26 21:25:00,560 Willow St, Boston,MA,02215 +166347,Lightning Charging Cable,1,14.95,2019-03-27 11:46:00,234 Cherry St, Seattle,WA,98101 +166348,Apple Airpods Headphones,1,150.0,2019-03-04 08:00:00,289 Forest St, San Francisco,CA,94016 +166349,AA Batteries (4-pack),1,3.84,2019-03-25 14:48:00,74 Dogwood St, Los Angeles,CA,90001 +166350,iPhone,1,700.0,2019-03-24 03:53:00,263 Lincoln St, San Francisco,CA,94016 +166351,34in Ultrawide Monitor,1,379.99,2019-03-15 10:42:00,457 Elm St, Atlanta,GA,30301 +166352,20in Monitor,1,109.99,2019-03-11 18:56:00,138 River St, Austin,TX,73301 +166353,AAA Batteries (4-pack),1,2.99,2019-03-13 14:33:00,907 Washington St, San Francisco,CA,94016 +166354,Lightning Charging Cable,1,14.95,2019-03-24 14:08:00,14 Church St, Seattle,WA,98101 +166355,Lightning Charging Cable,1,14.95,2019-03-29 14:12:00,143 5th St, San Francisco,CA,94016 +166356,34in Ultrawide Monitor,1,379.99,2019-03-24 17:01:00,394 Main St, Seattle,WA,98101 +166357,Lightning Charging Cable,1,14.95,2019-03-10 23:23:00,845 Forest St, Dallas,TX,75001 +166358,AA Batteries (4-pack),1,3.84,2019-03-14 22:15:00,721 Hickory St, Los Angeles,CA,90001 +166359,27in 4K Gaming Monitor,1,389.99,2019-03-08 14:17:00,568 11th St, San Francisco,CA,94016 +166360,Lightning Charging Cable,1,14.95,2019-03-28 22:04:00,286 Cedar St, San Francisco,CA,94016 +166361,Wired Headphones,1,11.99,2019-03-10 06:11:00,408 Adams St, Portland,ME,04101 +166362,27in FHD Monitor,1,149.99,2019-03-10 10:00:00,156 Hill St, New York City,NY,10001 +166363,20in Monitor,1,109.99,2019-03-28 07:37:00,280 Jackson St, New York City,NY,10001 +166364,Google Phone,1,600.0,2019-03-07 12:06:00,475 Cherry St, Dallas,TX,75001 +166365,USB-C Charging Cable,1,11.95,2019-03-04 20:52:00,292 Wilson St, Seattle,WA,98101 +166366,USB-C Charging Cable,1,11.95,2019-03-23 16:18:00,594 5th St, San Francisco,CA,94016 +166367,Apple Airpods Headphones,1,150.0,2019-03-16 18:04:00,508 Madison St, Austin,TX,73301 +166368,Wired Headphones,1,11.99,2019-03-26 11:54:00,340 14th St, San Francisco,CA,94016 +166369,ThinkPad Laptop,1,999.99,2019-03-10 17:02:00,123 Hill St, Dallas,TX,75001 +166370,27in FHD Monitor,1,149.99,2019-03-30 19:58:00,173 13th St, New York City,NY,10001 +166371,AA Batteries (4-pack),1,3.84,2019-03-20 10:56:00,846 Dogwood St, San Francisco,CA,94016 +166372,USB-C Charging Cable,1,11.95,2019-03-17 12:36:00,835 2nd St, Seattle,WA,98101 +166373,Lightning Charging Cable,1,14.95,2019-03-03 07:46:00,180 River St, Boston,MA,02215 +166374,iPhone,1,700.0,2019-03-06 01:02:00,208 Walnut St, Boston,MA,02215 +166375,Bose SoundSport Headphones,1,99.99,2019-03-28 07:14:00,908 9th St, Boston,MA,02215 +166376,AA Batteries (4-pack),1,3.84,2019-03-09 00:31:00,527 Forest St, Seattle,WA,98101 +166377,Lightning Charging Cable,1,14.95,2019-03-24 17:10:00,500 Spruce St, San Francisco,CA,94016 +166378,Wired Headphones,1,11.99,2019-03-30 09:18:00,120 Willow St, Seattle,WA,98101 +166379,USB-C Charging Cable,1,11.95,2019-03-02 19:05:00,279 Cherry St, Boston,MA,02215 +166380,27in FHD Monitor,1,149.99,2019-03-13 10:50:00,737 7th St, Boston,MA,02215 +166381,AAA Batteries (4-pack),1,2.99,2019-03-23 09:02:00,702 2nd St, Boston,MA,02215 +166382,Apple Airpods Headphones,1,150.0,2019-03-09 13:48:00,873 Elm St, Dallas,TX,75001 +166383,Macbook Pro Laptop,1,1700.0,2019-03-04 12:30:00,250 Dogwood St, Dallas,TX,75001 +166384,AA Batteries (4-pack),1,3.84,2019-03-02 00:37:00,80 Main St, Los Angeles,CA,90001 +166385,USB-C Charging Cable,1,11.95,2019-03-02 07:19:00,724 Main St, Atlanta,GA,30301 +166386,Google Phone,1,600.0,2019-03-29 16:00:00,997 Chestnut St, Portland,OR,97035 +166387,Apple Airpods Headphones,1,150.0,2019-03-17 19:49:00,753 Sunset St, San Francisco,CA,94016 +166388,Lightning Charging Cable,2,14.95,2019-03-15 22:03:00,289 14th St, San Francisco,CA,94016 +166389,AAA Batteries (4-pack),1,2.99,2019-03-05 18:30:00,980 Cherry St, Seattle,WA,98101 +166390,USB-C Charging Cable,1,11.95,2019-03-11 10:48:00,284 West St, Seattle,WA,98101 +166391,27in FHD Monitor,1,149.99,2019-03-27 01:07:00,419 Center St, San Francisco,CA,94016 +166392,AAA Batteries (4-pack),1,2.99,2019-03-18 19:31:00,299 South St, Atlanta,GA,30301 +166393,Vareebadd Phone,1,400.0,2019-03-04 13:26:00,42 North St, Portland,ME,04101 +166393,Wired Headphones,1,11.99,2019-03-04 13:26:00,42 North St, Portland,ME,04101 +166394,27in 4K Gaming Monitor,1,389.99,2019-03-08 21:48:00,844 1st St, San Francisco,CA,94016 +166395,AAA Batteries (4-pack),2,2.99,2019-03-30 18:17:00,648 Washington St, Boston,MA,02215 +166396,Bose SoundSport Headphones,1,99.99,2019-03-09 21:12:00,817 2nd St, Atlanta,GA,30301 +166397,Apple Airpods Headphones,1,150.0,2019-03-31 21:02:00,20 11th St, Dallas,TX,75001 +166398,Wired Headphones,1,11.99,2019-03-09 15:12:00,36 4th St, Boston,MA,02215 +166399,27in 4K Gaming Monitor,1,389.99,2019-03-28 14:59:00,706 Park St, Los Angeles,CA,90001 +166400,USB-C Charging Cable,2,11.95,2019-03-01 23:19:00,907 7th St, Los Angeles,CA,90001 +166401,Macbook Pro Laptop,1,1700.0,2019-03-31 10:12:00,792 Spruce St, Los Angeles,CA,90001 +166402,Apple Airpods Headphones,1,150.0,2019-03-27 18:49:00,583 Wilson St, San Francisco,CA,94016 +166403,20in Monitor,1,109.99,2019-03-23 11:18:00,105 Lake St, New York City,NY,10001 +166404,Wired Headphones,1,11.99,2019-03-31 14:12:00,78 River St, New York City,NY,10001 +166405,AA Batteries (4-pack),1,3.84,2019-03-18 19:18:00,875 Adams St, New York City,NY,10001 +166406,AAA Batteries (4-pack),1,2.99,2019-03-08 10:01:00,933 Madison St, Los Angeles,CA,90001 +166407,Wired Headphones,2,11.99,2019-03-30 23:03:00,891 Lincoln St, Dallas,TX,75001 +166408,Bose SoundSport Headphones,1,99.99,2019-03-07 09:27:00,135 West St, San Francisco,CA,94016 +166409,iPhone,1,700.0,2019-03-09 19:15:00,506 Church St, Los Angeles,CA,90001 +166410,AAA Batteries (4-pack),2,2.99,2019-03-22 15:57:00,129 4th St, Los Angeles,CA,90001 +166411,USB-C Charging Cable,1,11.95,2019-03-12 13:48:00,780 Johnson St, Seattle,WA,98101 +166412,USB-C Charging Cable,1,11.95,2019-03-11 11:08:00,250 Pine St, Atlanta,GA,30301 +166413,Wired Headphones,1,11.99,2019-03-27 07:42:00,676 Willow St, Atlanta,GA,30301 +166414,Apple Airpods Headphones,1,150.0,2019-03-12 19:23:00,625 7th St, San Francisco,CA,94016 +166415,Apple Airpods Headphones,1,150.0,2019-03-20 11:14:00,142 Chestnut St, Seattle,WA,98101 +166416,27in FHD Monitor,1,149.99,2019-03-17 16:50:00,541 Lincoln St, Los Angeles,CA,90001 +166417,20in Monitor,1,109.99,2019-03-09 11:22:00,915 Sunset St, Boston,MA,02215 +166418,Wired Headphones,1,11.99,2019-03-28 18:35:00,132 2nd St, Seattle,WA,98101 +166419,Bose SoundSport Headphones,1,99.99,2019-03-14 22:51:00,127 9th St, Boston,MA,02215 +166420,Wired Headphones,1,11.99,2019-03-27 19:36:00,362 2nd St, San Francisco,CA,94016 +166421,Macbook Pro Laptop,1,1700.0,2019-03-01 17:23:00,333 Johnson St, San Francisco,CA,94016 +166422,iPhone,1,700.0,2019-03-12 18:50:00,997 5th St, Seattle,WA,98101 +166423,27in FHD Monitor,1,149.99,2019-03-07 11:28:00,308 West St, San Francisco,CA,94016 +166424,USB-C Charging Cable,1,11.95,2019-03-21 13:10:00,508 Washington St, San Francisco,CA,94016 +166425,AAA Batteries (4-pack),1,2.99,2019-03-03 13:10:00,817 Hickory St, Boston,MA,02215 +166426,27in 4K Gaming Monitor,1,389.99,2019-03-07 17:41:00,427 11th St, New York City,NY,10001 +166427,Apple Airpods Headphones,1,150.0,2019-03-25 16:09:00,29 Lakeview St, Boston,MA,02215 +166428,Apple Airpods Headphones,1,150.0,2019-03-16 00:14:00,802 Chestnut St, Seattle,WA,98101 +166429,Lightning Charging Cable,1,14.95,2019-03-29 22:10:00,804 Washington St, San Francisco,CA,94016 +166430,Google Phone,1,600.0,2019-03-31 12:05:00,994 Pine St, Los Angeles,CA,90001 +166430,USB-C Charging Cable,1,11.95,2019-03-31 12:05:00,994 Pine St, Los Angeles,CA,90001 +166431,Vareebadd Phone,1,400.0,2019-03-12 08:46:00,940 9th St, Dallas,TX,75001 +166432,Wired Headphones,1,11.99,2019-03-15 23:21:00,990 Elm St, San Francisco,CA,94016 +166433,Apple Airpods Headphones,1,150.0,2019-03-06 12:04:00,614 10th St, Austin,TX,73301 +166434,Apple Airpods Headphones,1,150.0,2019-03-17 17:13:00,586 11th St, New York City,NY,10001 +166435,Wired Headphones,1,11.99,2019-03-13 15:45:00,268 Dogwood St, Austin,TX,73301 +166436,Lightning Charging Cable,2,14.95,2019-03-13 12:40:00,168 Adams St, Portland,OR,97035 +166437,Lightning Charging Cable,1,14.95,2019-03-07 12:30:00,464 Adams St, Los Angeles,CA,90001 +166438,Wired Headphones,2,11.99,2019-03-30 20:42:00,223 Maple St, Austin,TX,73301 +166439,USB-C Charging Cable,3,11.95,2019-03-23 12:31:00,898 River St, Atlanta,GA,30301 +166440,USB-C Charging Cable,1,11.95,2019-03-01 19:57:00,22 Hill St, Portland,OR,97035 +166441,Apple Airpods Headphones,1,150.0,2019-03-13 08:09:00,99 7th St, San Francisco,CA,94016 +166442,AAA Batteries (4-pack),1,2.99,2019-03-10 17:46:00,620 2nd St, Boston,MA,02215 +166443,27in FHD Monitor,1,149.99,2019-03-25 10:55:00,784 Willow St, Dallas,TX,75001 +166444,20in Monitor,1,109.99,2019-03-23 09:48:00,103 Wilson St, Portland,OR,97035 +166445,27in 4K Gaming Monitor,1,389.99,2019-03-23 12:47:00,439 West St, Los Angeles,CA,90001 +166446,LG Washing Machine,1,600.0,2019-03-14 15:46:00,142 Sunset St, San Francisco,CA,94016 +166447,AAA Batteries (4-pack),3,2.99,2019-03-17 19:01:00,356 Johnson St, New York City,NY,10001 +166448,Wired Headphones,1,11.99,2019-03-17 20:12:00,153 Jefferson St, San Francisco,CA,94016 +166448,Lightning Charging Cable,1,14.95,2019-03-17 20:12:00,153 Jefferson St, San Francisco,CA,94016 +166449,Wired Headphones,1,11.99,2019-03-30 09:16:00,403 13th St, New York City,NY,10001 +166450,Lightning Charging Cable,1,14.95,2019-03-15 02:03:00,425 Wilson St, Dallas,TX,75001 +166451,USB-C Charging Cable,1,11.95,2019-03-15 21:25:00,372 North St, Austin,TX,73301 +166452,USB-C Charging Cable,2,11.95,2019-03-11 15:12:00,754 Meadow St, New York City,NY,10001 +166453,27in 4K Gaming Monitor,1,389.99,2019-03-08 14:05:00,806 Jefferson St, Boston,MA,02215 +166454,AA Batteries (4-pack),1,3.84,2019-03-29 01:25:00,316 12th St, Los Angeles,CA,90001 +166455,Lightning Charging Cable,1,14.95,2019-03-24 12:26:00,164 Main St, San Francisco,CA,94016 +166456,27in FHD Monitor,1,149.99,2019-03-25 08:59:00,924 Chestnut St, Boston,MA,02215 +166457,Wired Headphones,1,11.99,2019-03-03 10:06:00,792 Lakeview St, Los Angeles,CA,90001 +166458,ThinkPad Laptop,1,999.99,2019-03-25 00:02:00,434 Lincoln St, Los Angeles,CA,90001 +166459,Lightning Charging Cable,1,14.95,2019-03-07 12:12:00,322 Hill St, Dallas,TX,75001 +166460,AAA Batteries (4-pack),4,2.99,2019-03-11 20:05:00,275 Madison St, New York City,NY,10001 +166461,Vareebadd Phone,1,400.0,2019-03-11 14:45:00,332 Spruce St, Boston,MA,02215 +166462,Lightning Charging Cable,1,14.95,2019-03-12 14:20:00,670 Main St, Austin,TX,73301 +166463,Wired Headphones,1,11.99,2019-03-22 12:13:00,275 Ridge St, Boston,MA,02215 +166464,AAA Batteries (4-pack),2,2.99,2019-03-28 20:23:00,478 Cedar St, San Francisco,CA,94016 +166465,Apple Airpods Headphones,1,150.0,2019-03-03 16:48:00,306 Meadow St, Boston,MA,02215 +166466,AAA Batteries (4-pack),1,2.99,2019-03-26 21:36:00,347 Park St, Los Angeles,CA,90001 +166467,iPhone,1,700.0,2019-03-13 15:02:00,530 Maple St, San Francisco,CA,94016 +166468,20in Monitor,1,109.99,2019-03-01 21:20:00,313 River St, Portland,ME,04101 +166469,Wired Headphones,1,11.99,2019-03-30 20:43:00,40 Johnson St, Los Angeles,CA,90001 +166470,Vareebadd Phone,1,400.0,2019-03-21 15:02:00,986 Washington St, Atlanta,GA,30301 +166471,Google Phone,1,600.0,2019-03-09 19:21:00,301 North St, San Francisco,CA,94016 +166472,Bose SoundSport Headphones,1,99.99,2019-03-12 23:38:00,307 Highland St, San Francisco,CA,94016 +166473,27in 4K Gaming Monitor,1,389.99,2019-03-13 17:37:00,557 Highland St, New York City,NY,10001 +166474,Lightning Charging Cable,1,14.95,2019-03-02 20:19:00,201 Lakeview St, San Francisco,CA,94016 +166475,ThinkPad Laptop,1,999.99,2019-03-19 10:03:00,432 2nd St, San Francisco,CA,94016 +166476,27in FHD Monitor,1,149.99,2019-03-03 16:01:00,437 1st St, Austin,TX,73301 +166477,Macbook Pro Laptop,1,1700.0,2019-03-05 20:28:00,424 Hickory St, Los Angeles,CA,90001 +166478,Macbook Pro Laptop,1,1700.0,2019-03-27 20:11:00,506 8th St, San Francisco,CA,94016 +166479,Lightning Charging Cable,1,14.95,2019-03-31 09:24:00,112 Jackson St, Atlanta,GA,30301 +166480,USB-C Charging Cable,1,11.95,2019-03-07 10:07:00,451 Hill St, San Francisco,CA,94016 +166481,Bose SoundSport Headphones,1,99.99,2019-03-23 16:33:00,216 Ridge St, San Francisco,CA,94016 +166482,AAA Batteries (4-pack),2,2.99,2019-03-06 15:20:00,928 Willow St, San Francisco,CA,94016 +166483,USB-C Charging Cable,1,11.95,2019-03-15 03:51:00,875 10th St, San Francisco,CA,94016 +166484,34in Ultrawide Monitor,1,379.99,2019-03-29 09:02:00,761 Cedar St, Atlanta,GA,30301 +166485,Macbook Pro Laptop,1,1700.0,2019-03-12 10:39:00,552 Church St, Los Angeles,CA,90001 +166486,Bose SoundSport Headphones,1,99.99,2019-03-03 14:21:00,951 Sunset St, Portland,OR,97035 +166487,Macbook Pro Laptop,1,1700.0,2019-03-05 14:38:00,724 Dogwood St, Portland,OR,97035 +166488,USB-C Charging Cable,1,11.95,2019-03-26 09:50:00,361 Dogwood St, Los Angeles,CA,90001 +166489,Apple Airpods Headphones,1,150.0,2019-03-29 13:06:00,322 Spruce St, Atlanta,GA,30301 +166490,27in FHD Monitor,1,149.99,2019-03-09 09:46:00,100 8th St, Los Angeles,CA,90001 +166491,Bose SoundSport Headphones,1,99.99,2019-03-28 14:05:00,605 River St, Dallas,TX,75001 +166492,27in FHD Monitor,1,149.99,2019-03-28 20:15:00,781 10th St, San Francisco,CA,94016 +166493,Flatscreen TV,1,300.0,2019-03-20 13:51:00,430 Jefferson St, Austin,TX,73301 +166494,Wired Headphones,1,11.99,2019-03-15 12:54:00,941 Sunset St, San Francisco,CA,94016 +166495,Lightning Charging Cable,1,14.95,2019-03-16 08:32:00,286 Lakeview St, Portland,OR,97035 +166496,AAA Batteries (4-pack),2,2.99,2019-03-15 11:46:00,268 8th St, San Francisco,CA,94016 +166497,Lightning Charging Cable,1,14.95,2019-03-14 14:00:00,399 Main St, San Francisco,CA,94016 +166498,27in FHD Monitor,1,149.99,2019-03-14 18:28:00,743 Cherry St, San Francisco,CA,94016 +166499,AAA Batteries (4-pack),1,2.99,2019-03-01 13:50:00,809 9th St, Austin,TX,73301 +166500,Lightning Charging Cable,1,14.95,2019-03-05 18:47:00,816 Church St, Dallas,TX,75001 +166501,Wired Headphones,1,11.99,2019-03-21 08:11:00,948 South St, Austin,TX,73301 +166502,27in FHD Monitor,1,149.99,2019-03-21 13:45:00,764 14th St, Los Angeles,CA,90001 +166503,Lightning Charging Cable,1,14.95,2019-03-10 08:45:00,407 6th St, New York City,NY,10001 +166504,20in Monitor,1,109.99,2019-03-07 19:59:00,81 8th St, Seattle,WA,98101 +166505,Apple Airpods Headphones,1,150.0,2019-03-19 12:13:00,415 Lakeview St, New York City,NY,10001 +166506,AA Batteries (4-pack),2,3.84,2019-03-22 08:17:00,96 Ridge St, Seattle,WA,98101 +166507,Wired Headphones,1,11.99,2019-03-28 19:26:00,707 Maple St, Los Angeles,CA,90001 +166508,Bose SoundSport Headphones,1,99.99,2019-03-30 20:30:00,324 South St, Atlanta,GA,30301 +166509,20in Monitor,1,109.99,2019-03-06 17:39:00,400 Park St, Austin,TX,73301 +166510,20in Monitor,1,109.99,2019-03-15 23:18:00,45 Hickory St, New York City,NY,10001 +166511,Wired Headphones,2,11.99,2019-03-16 19:58:00,246 Jefferson St, Atlanta,GA,30301 +166512,20in Monitor,1,109.99,2019-03-17 22:17:00,560 Lakeview St, Boston,MA,02215 +166513,AA Batteries (4-pack),1,3.84,2019-03-07 23:37:00,266 Ridge St, New York City,NY,10001 +166514,27in 4K Gaming Monitor,1,389.99,2019-03-12 11:10:00,830 Highland St, San Francisco,CA,94016 +166515,Wired Headphones,1,11.99,2019-03-07 00:52:00,332 West St, Los Angeles,CA,90001 +166516,34in Ultrawide Monitor,1,379.99,2019-03-05 20:38:00,195 Hickory St, New York City,NY,10001 +166517,Bose SoundSport Headphones,1,99.99,2019-03-22 15:28:00,352 Adams St, New York City,NY,10001 +166518,Macbook Pro Laptop,1,1700.0,2019-03-26 15:53:00,177 Sunset St, Austin,TX,73301 +166519,34in Ultrawide Monitor,1,379.99,2019-03-13 12:44:00,219 Church St, Seattle,WA,98101 +166520,USB-C Charging Cable,1,11.95,2019-03-06 17:51:00,891 Main St, San Francisco,CA,94016 +166521,Flatscreen TV,1,300.0,2019-03-03 15:43:00,642 Pine St, Atlanta,GA,30301 +166522,Lightning Charging Cable,1,14.95,2019-03-21 08:10:00,10 Walnut St, Boston,MA,02215 +166523,iPhone,1,700.0,2019-03-13 23:27:00,582 6th St, Boston,MA,02215 +166524,AAA Batteries (4-pack),2,2.99,2019-03-10 13:51:00,494 Spruce St, Los Angeles,CA,90001 +166525,Macbook Pro Laptop,1,1700.0,2019-03-27 01:23:00,501 Church St, New York City,NY,10001 +166526,USB-C Charging Cable,1,11.95,2019-03-26 12:19:00,122 Cherry St, Los Angeles,CA,90001 +166527,Bose SoundSport Headphones,1,99.99,2019-03-19 09:34:00,137 Wilson St, Boston,MA,02215 +166528,Apple Airpods Headphones,1,150.0,2019-03-10 06:14:00,393 North St, Portland,OR,97035 +166529,Bose SoundSport Headphones,1,99.99,2019-03-22 07:32:00,102 Park St, Portland,OR,97035 +166530,AAA Batteries (4-pack),2,2.99,2019-03-03 00:01:00,475 Madison St, Boston,MA,02215 +166531,27in FHD Monitor,1,149.99,2019-03-29 09:12:00,322 Highland St, New York City,NY,10001 +166532,Wired Headphones,1,11.99,2019-03-05 11:28:00,684 Dogwood St, Dallas,TX,75001 +166533,AAA Batteries (4-pack),1,2.99,2019-03-26 10:07:00,167 13th St, Los Angeles,CA,90001 +166534,Lightning Charging Cable,1,14.95,2019-03-13 12:36:00,913 4th St, San Francisco,CA,94016 +166535,AAA Batteries (4-pack),1,2.99,2019-03-13 15:53:00,672 9th St, San Francisco,CA,94016 +166536,USB-C Charging Cable,1,11.95,2019-03-21 18:42:00,833 West St, San Francisco,CA,94016 +166537,27in 4K Gaming Monitor,1,389.99,2019-03-15 01:15:00,116 Church St, Seattle,WA,98101 +166538,USB-C Charging Cable,1,11.95,2019-03-29 06:27:00,687 West St, Boston,MA,02215 +166539,Wired Headphones,2,11.99,2019-03-19 21:01:00,430 Jackson St, Austin,TX,73301 +166540,iPhone,1,700.0,2019-03-11 21:07:00,164 West St, Portland,OR,97035 +166541,USB-C Charging Cable,1,11.95,2019-03-17 19:37:00,868 Adams St, Atlanta,GA,30301 +166542,27in FHD Monitor,1,149.99,2019-03-09 03:01:00,130 13th St, New York City,NY,10001 +166543,AAA Batteries (4-pack),1,2.99,2019-03-06 13:27:00,56 Johnson St, Los Angeles,CA,90001 +166544,Lightning Charging Cable,1,14.95,2019-03-28 06:37:00,45 Chestnut St, Atlanta,GA,30301 +166545,27in FHD Monitor,1,149.99,2019-03-30 13:09:00,49 Lake St, Dallas,TX,75001 +166546,Bose SoundSport Headphones,1,99.99,2019-03-03 15:15:00,517 Meadow St, Boston,MA,02215 +166547,Lightning Charging Cable,1,14.95,2019-03-10 22:02:00,399 Washington St, Atlanta,GA,30301 +166548,Apple Airpods Headphones,1,150.0,2019-03-16 12:19:00,873 Cedar St, Austin,TX,73301 +166549,Bose SoundSport Headphones,1,99.99,2019-03-07 20:13:00,248 7th St, San Francisco,CA,94016 +166550,Macbook Pro Laptop,1,1700.0,2019-03-21 10:16:00,407 Washington St, Portland,OR,97035 +166551,Apple Airpods Headphones,1,150.0,2019-03-08 10:20:00,709 13th St, New York City,NY,10001 +166552,27in 4K Gaming Monitor,1,389.99,2019-03-21 14:19:00,840 1st St, San Francisco,CA,94016 +166553,USB-C Charging Cable,1,11.95,2019-03-25 22:07:00,501 Church St, San Francisco,CA,94016 +166554,USB-C Charging Cable,1,11.95,2019-03-14 18:09:00,933 Hill St, Seattle,WA,98101 +166555,Vareebadd Phone,1,400.0,2019-03-03 13:46:00,780 West St, San Francisco,CA,94016 +166556,Wired Headphones,1,11.99,2019-03-22 23:49:00,227 Hill St, Los Angeles,CA,90001 +166557,iPhone,1,700.0,2019-03-13 18:05:00,303 10th St, Seattle,WA,98101 +166558,Flatscreen TV,1,300.0,2019-03-20 10:04:00,921 Wilson St, Seattle,WA,98101 +166559,Google Phone,1,600.0,2019-03-05 23:16:00,366 West St, Dallas,TX,75001 +166560,USB-C Charging Cable,1,11.95,2019-03-15 20:54:00,882 Park St, Boston,MA,02215 +166561,Google Phone,1,600.0,2019-03-18 22:11:00,584 13th St, Boston,MA,02215 +166562,AA Batteries (4-pack),1,3.84,2019-03-22 10:44:00,947 Elm St, New York City,NY,10001 +166563,AA Batteries (4-pack),1,3.84,2019-03-24 09:15:00,604 Cherry St, Atlanta,GA,30301 +166564,Vareebadd Phone,1,400.0,2019-03-27 13:34:00,405 South St, Boston,MA,02215 +166565,AA Batteries (4-pack),2,3.84,2019-03-07 18:11:00,418 Walnut St, Atlanta,GA,30301 +166566,AA Batteries (4-pack),1,3.84,2019-03-09 15:52:00,613 Ridge St, Seattle,WA,98101 +166567,34in Ultrawide Monitor,1,379.99,2019-04-01 00:12:00,937 Cedar St, New York City,NY,10001 +166568,Apple Airpods Headphones,1,150.0,2019-03-15 09:28:00,518 4th St, San Francisco,CA,94016 +166569,Lightning Charging Cable,1,14.95,2019-03-10 13:56:00,793 Ridge St, Seattle,WA,98101 +166570,AAA Batteries (4-pack),1,2.99,2019-03-28 06:13:00,585 8th St, San Francisco,CA,94016 +166571,AAA Batteries (4-pack),1,2.99,2019-03-26 11:51:00,153 9th St, Atlanta,GA,30301 +166572,Apple Airpods Headphones,1,150.0,2019-03-02 03:57:00,971 West St, San Francisco,CA,94016 +166573,AA Batteries (4-pack),1,3.84,2019-03-15 12:03:00,901 10th St, San Francisco,CA,94016 +166574,27in 4K Gaming Monitor,1,389.99,2019-03-21 07:30:00,263 River St, San Francisco,CA,94016 +166575,Lightning Charging Cable,1,14.95,2019-03-21 20:27:00,11 13th St, New York City,NY,10001 +166576,AAA Batteries (4-pack),4,2.99,2019-03-03 11:24:00,531 Cedar St, Dallas,TX,75001 +166577,Lightning Charging Cable,1,14.95,2019-03-31 07:45:00,468 Meadow St, San Francisco,CA,94016 +166578,Bose SoundSport Headphones,1,99.99,2019-03-29 18:36:00,561 4th St, San Francisco,CA,94016 +166579,USB-C Charging Cable,1,11.95,2019-03-16 12:21:00,343 Madison St, Los Angeles,CA,90001 +166580,27in FHD Monitor,1,149.99,2019-03-13 20:21:00,161 13th St, Atlanta,GA,30301 +166581,Lightning Charging Cable,1,14.95,2019-03-05 18:31:00,471 Walnut St, New York City,NY,10001 +166582,Vareebadd Phone,1,400.0,2019-03-23 20:02:00,905 Highland St, Dallas,TX,75001 +166583,Wired Headphones,1,11.99,2019-03-25 21:11:00,822 7th St, Austin,TX,73301 +166584,27in 4K Gaming Monitor,1,389.99,2019-03-10 13:48:00,420 14th St, San Francisco,CA,94016 +166585,AAA Batteries (4-pack),3,2.99,2019-03-30 16:53:00,304 7th St, Portland,OR,97035 +166586,Wired Headphones,1,11.99,2019-03-02 18:47:00,595 Forest St, San Francisco,CA,94016 +166587,Apple Airpods Headphones,1,150.0,2019-03-14 22:57:00,536 Cherry St, San Francisco,CA,94016 +166588,Bose SoundSport Headphones,1,99.99,2019-03-19 06:06:00,586 Pine St, San Francisco,CA,94016 +166589,AA Batteries (4-pack),1,3.84,2019-03-20 15:19:00,958 Elm St, Los Angeles,CA,90001 +166590,Lightning Charging Cable,1,14.95,2019-03-04 19:49:00,136 Wilson St, Seattle,WA,98101 +166591,Apple Airpods Headphones,1,150.0,2019-03-04 19:14:00,464 West St, Los Angeles,CA,90001 +166592,Lightning Charging Cable,1,14.95,2019-03-11 18:21:00,47 Chestnut St, Austin,TX,73301 +166593,AA Batteries (4-pack),1,3.84,2019-03-05 12:23:00,435 Washington St, Seattle,WA,98101 +166594,20in Monitor,1,109.99,2019-03-20 17:03:00,564 Lakeview St, New York City,NY,10001 +166595,Apple Airpods Headphones,1,150.0,2019-03-31 20:40:00,480 Pine St, San Francisco,CA,94016 +166595,Wired Headphones,3,11.99,2019-03-31 20:40:00,480 Pine St, San Francisco,CA,94016 +166596,Bose SoundSport Headphones,1,99.99,2019-03-01 14:36:00,130 Adams St, New York City,NY,10001 +166597,ThinkPad Laptop,1,999.99,2019-03-19 20:37:00,913 13th St, San Francisco,CA,94016 +166598,Wired Headphones,2,11.99,2019-03-17 16:21:00,444 5th St, New York City,NY,10001 +166599,AAA Batteries (4-pack),1,2.99,2019-03-24 15:13:00,956 Lake St, Dallas,TX,75001 +166600,34in Ultrawide Monitor,1,379.99,2019-03-12 08:56:00,532 Hickory St, Dallas,TX,75001 +166601,34in Ultrawide Monitor,1,379.99,2019-03-29 16:21:00,779 Hill St, Los Angeles,CA,90001 +166602,Lightning Charging Cable,1,14.95,2019-03-10 12:20:00,490 Hill St, Dallas,TX,75001 +166603,Wired Headphones,1,11.99,2019-03-29 11:20:00,336 Adams St, San Francisco,CA,94016 +166604,USB-C Charging Cable,1,11.95,2019-03-01 10:01:00,475 Walnut St, New York City,NY,10001 +166605,Bose SoundSport Headphones,1,99.99,2019-03-22 10:49:00,370 Jackson St, Boston,MA,02215 +166606,AA Batteries (4-pack),1,3.84,2019-03-27 08:50:00,559 Hill St, Los Angeles,CA,90001 +166607,Wired Headphones,1,11.99,2019-03-11 06:54:00,469 Johnson St, Atlanta,GA,30301 +166608,Apple Airpods Headphones,1,150.0,2019-03-22 09:09:00,365 Jackson St, New York City,NY,10001 +166609,USB-C Charging Cable,1,11.95,2019-03-10 12:30:00,900 Main St, Atlanta,GA,30301 +166610,USB-C Charging Cable,1,11.95,2019-03-22 11:57:00,880 Cherry St, San Francisco,CA,94016 +166611,iPhone,1,700.0,2019-03-29 12:25:00,758 9th St, Seattle,WA,98101 +166612,USB-C Charging Cable,1,11.95,2019-03-26 12:34:00,700 Willow St, New York City,NY,10001 +166613,Bose SoundSport Headphones,1,99.99,2019-03-13 14:07:00,440 Lake St, Seattle,WA,98101 +166614,27in 4K Gaming Monitor,1,389.99,2019-03-07 12:13:00,501 Lincoln St, Portland,OR,97035 +166615,USB-C Charging Cable,1,11.95,2019-03-25 19:29:00,278 North St, Boston,MA,02215 +166616,USB-C Charging Cable,1,11.95,2019-03-18 00:44:00,34 Highland St, Atlanta,GA,30301 +166617,Bose SoundSport Headphones,1,99.99,2019-03-29 17:23:00,240 9th St, Los Angeles,CA,90001 +166618,34in Ultrawide Monitor,1,379.99,2019-03-22 14:12:00,490 Wilson St, Austin,TX,73301 +166619,Google Phone,1,600.0,2019-03-31 11:51:00,126 2nd St, Atlanta,GA,30301 +166620,Wired Headphones,1,11.99,2019-03-13 02:36:00,203 10th St, Los Angeles,CA,90001 +166621,Wired Headphones,1,11.99,2019-03-19 09:01:00,864 Lakeview St, New York City,NY,10001 +166622,USB-C Charging Cable,1,11.95,2019-03-18 13:31:00,721 Forest St, San Francisco,CA,94016 +166623,USB-C Charging Cable,1,11.95,2019-03-04 11:08:00,785 Sunset St, Boston,MA,02215 +166624,ThinkPad Laptop,1,999.99,2019-03-23 13:29:00,372 Chestnut St, New York City,NY,10001 +166625,Wired Headphones,1,11.99,2019-03-06 15:16:00,921 Forest St, New York City,NY,10001 +166626,Wired Headphones,1,11.99,2019-03-15 13:37:00,380 Meadow St, San Francisco,CA,94016 +166627,Bose SoundSport Headphones,1,99.99,2019-03-18 08:21:00,95 2nd St, New York City,NY,10001 +166628,AA Batteries (4-pack),1,3.84,2019-03-15 07:57:00,72 Johnson St, San Francisco,CA,94016 +166629,AA Batteries (4-pack),1,3.84,2019-03-07 17:17:00,576 Lincoln St, Los Angeles,CA,90001 +166630,AAA Batteries (4-pack),1,2.99,2019-03-17 00:27:00,688 9th St, Los Angeles,CA,90001 +166631,Bose SoundSport Headphones,1,99.99,2019-03-01 16:33:00,336 7th St, Dallas,TX,75001 +166632,Apple Airpods Headphones,1,150.0,2019-03-26 21:16:00,461 Park St, Boston,MA,02215 +166633,27in FHD Monitor,1,149.99,2019-03-29 17:33:00,477 Cedar St, New York City,NY,10001 +166634,Wired Headphones,1,11.99,2019-03-03 11:40:00,650 9th St, Dallas,TX,75001 +166635,AA Batteries (4-pack),1,3.84,2019-03-21 14:27:00,859 Jackson St, New York City,NY,10001 +166636,Lightning Charging Cable,1,14.95,2019-03-17 14:41:00,830 1st St, Portland,OR,97035 +166637,AA Batteries (4-pack),1,3.84,2019-03-02 13:29:00,332 Sunset St, Portland,ME,04101 +166638,27in 4K Gaming Monitor,1,389.99,2019-03-22 15:38:00,516 8th St, San Francisco,CA,94016 +166639,Wired Headphones,1,11.99,2019-03-05 19:03:00,782 Main St, Los Angeles,CA,90001 +166639,27in FHD Monitor,1,149.99,2019-03-05 19:03:00,782 Main St, Los Angeles,CA,90001 +166640,Wired Headphones,1,11.99,2019-03-02 15:28:00,563 Wilson St, Boston,MA,02215 +166641,USB-C Charging Cable,1,11.95,2019-03-11 20:30:00,24 2nd St, San Francisco,CA,94016 +166642,34in Ultrawide Monitor,1,379.99,2019-03-22 13:55:00,375 Lake St, Los Angeles,CA,90001 +166643,USB-C Charging Cable,1,11.95,2019-03-24 01:57:00,937 4th St, Los Angeles,CA,90001 +166644,AAA Batteries (4-pack),3,2.99,2019-03-22 01:35:00,115 Dogwood St, Austin,TX,73301 +166645,ThinkPad Laptop,1,999.99,2019-03-19 10:02:00,189 Sunset St, Los Angeles,CA,90001 +166645,Bose SoundSport Headphones,1,99.99,2019-03-19 10:02:00,189 Sunset St, Los Angeles,CA,90001 +166646,27in 4K Gaming Monitor,1,389.99,2019-03-02 18:01:00,883 West St, Seattle,WA,98101 +166647,USB-C Charging Cable,1,11.95,2019-03-31 12:23:00,639 10th St, Dallas,TX,75001 +166648,Bose SoundSport Headphones,1,99.99,2019-03-18 11:09:00,388 4th St, Austin,TX,73301 +166649,AA Batteries (4-pack),1,3.84,2019-03-21 13:18:00,806 Washington St, Portland,OR,97035 +166650,AAA Batteries (4-pack),1,2.99,2019-03-31 21:32:00,332 West St, San Francisco,CA,94016 +166651,27in FHD Monitor,1,149.99,2019-03-28 01:26:00,415 Hickory St, San Francisco,CA,94016 +166652,Bose SoundSport Headphones,1,99.99,2019-03-12 20:59:00,341 8th St, Portland,OR,97035 +166653,27in FHD Monitor,1,149.99,2019-03-27 21:51:00,798 8th St, New York City,NY,10001 +166654,27in 4K Gaming Monitor,1,389.99,2019-03-01 06:13:00,803 Madison St, Los Angeles,CA,90001 +166655,AAA Batteries (4-pack),1,2.99,2019-03-19 12:16:00,415 Hickory St, Dallas,TX,75001 +166656,Apple Airpods Headphones,1,150.0,2019-03-16 07:42:00,423 Wilson St, New York City,NY,10001 +166657,34in Ultrawide Monitor,1,379.99,2019-03-19 08:50:00,940 Willow St, Los Angeles,CA,90001 +166658,USB-C Charging Cable,1,11.95,2019-03-05 14:01:00,275 7th St, Seattle,WA,98101 +166659,27in FHD Monitor,1,149.99,2019-03-04 10:13:00,891 8th St, New York City,NY,10001 +166660,Apple Airpods Headphones,1,150.0,2019-03-31 19:38:00,469 Main St, New York City,NY,10001 +166661,AA Batteries (4-pack),1,3.84,2019-03-01 09:32:00,581 14th St, San Francisco,CA,94016 +166662,AA Batteries (4-pack),1,3.84,2019-03-19 09:44:00,357 10th St, Atlanta,GA,30301 +166663,Macbook Pro Laptop,1,1700.0,2019-03-29 21:17:00,411 Highland St, Los Angeles,CA,90001 +166664,AA Batteries (4-pack),1,3.84,2019-03-22 20:00:00,436 Meadow St, Los Angeles,CA,90001 +166665,Bose SoundSport Headphones,1,99.99,2019-03-30 19:51:00,271 Highland St, Portland,OR,97035 +166666,Lightning Charging Cable,1,14.95,2019-03-18 20:16:00,789 13th St, San Francisco,CA,94016 +166666,Apple Airpods Headphones,1,150.0,2019-03-18 20:16:00,789 13th St, San Francisco,CA,94016 +166667,AAA Batteries (4-pack),1,2.99,2019-03-03 06:53:00,249 8th St, Portland,OR,97035 +166668,Google Phone,1,600.0,2019-03-10 21:22:00,861 Jefferson St, Seattle,WA,98101 +166669,USB-C Charging Cable,1,11.95,2019-03-12 22:07:00,556 South St, Los Angeles,CA,90001 +166670,Lightning Charging Cable,1,14.95,2019-03-06 19:04:00,828 2nd St, San Francisco,CA,94016 +166671,Bose SoundSport Headphones,1,99.99,2019-03-27 12:03:00,894 11th St, Boston,MA,02215 +166672,Lightning Charging Cable,1,14.95,2019-03-09 03:18:00,415 14th St, Seattle,WA,98101 +166673,Lightning Charging Cable,1,14.95,2019-03-19 19:15:00,274 2nd St, Los Angeles,CA,90001 +166674,Lightning Charging Cable,1,14.95,2019-03-23 19:59:00,633 6th St, New York City,NY,10001 +166675,Lightning Charging Cable,1,14.95,2019-03-20 14:03:00,924 13th St, San Francisco,CA,94016 +166676,34in Ultrawide Monitor,1,379.99,2019-03-07 10:27:00,349 Wilson St, San Francisco,CA,94016 +166677,Lightning Charging Cable,1,14.95,2019-03-13 19:02:00,630 Madison St, Dallas,TX,75001 +166678,Flatscreen TV,1,300.0,2019-03-20 12:15:00,579 River St, Los Angeles,CA,90001 +166679,Wired Headphones,1,11.99,2019-03-09 09:46:00,218 Walnut St, San Francisco,CA,94016 +166680,27in 4K Gaming Monitor,1,389.99,2019-03-20 21:30:00,582 13th St, New York City,NY,10001 +166681,Wired Headphones,1,11.99,2019-03-21 22:33:00,511 13th St, Los Angeles,CA,90001 +166682,Flatscreen TV,1,300.0,2019-03-04 08:53:00,679 Lakeview St, Seattle,WA,98101 +166683,Apple Airpods Headphones,1,150.0,2019-03-21 11:37:00,125 4th St, San Francisco,CA,94016 +166684,AA Batteries (4-pack),2,3.84,2019-03-29 10:15:00,883 Lincoln St, Austin,TX,73301 +166685,Apple Airpods Headphones,1,150.0,2019-03-22 02:05:00,924 Hickory St, New York City,NY,10001 +166686,USB-C Charging Cable,1,11.95,2019-03-08 14:50:00,480 Maple St, Atlanta,GA,30301 +166687,Apple Airpods Headphones,1,150.0,2019-03-28 21:13:00,320 Hill St, Dallas,TX,75001 +166688,Bose SoundSport Headphones,1,99.99,2019-03-18 16:25:00,254 Maple St, Dallas,TX,75001 +166689,27in FHD Monitor,1,149.99,2019-03-26 07:42:00,841 10th St, Los Angeles,CA,90001 +166690,AA Batteries (4-pack),1,3.84,2019-03-14 14:19:00,376 Hill St, New York City,NY,10001 +166691,Wired Headphones,1,11.99,2019-03-05 12:06:00,372 14th St, Boston,MA,02215 +166692,20in Monitor,1,109.99,2019-03-15 21:53:00,423 Church St, San Francisco,CA,94016 +166693,Wired Headphones,1,11.99,2019-03-07 17:37:00,713 Maple St, San Francisco,CA,94016 +166694,Apple Airpods Headphones,1,150.0,2019-03-10 13:43:00,930 Sunset St, Austin,TX,73301 +166695,Lightning Charging Cable,1,14.95,2019-03-23 23:15:00,570 Forest St, San Francisco,CA,94016 +166696,AAA Batteries (4-pack),1,2.99,2019-03-23 10:22:00,93 Highland St, Los Angeles,CA,90001 +166697,USB-C Charging Cable,1,11.95,2019-03-25 20:11:00,200 West St, Atlanta,GA,30301 +166698,27in FHD Monitor,1,149.99,2019-03-02 19:31:00,839 14th St, Boston,MA,02215 +166699,AAA Batteries (4-pack),2,2.99,2019-03-19 23:03:00,297 Forest St, Los Angeles,CA,90001 +166700,iPhone,1,700.0,2019-03-17 09:08:00,682 4th St, Boston,MA,02215 +166701,Lightning Charging Cable,1,14.95,2019-03-06 15:22:00,365 Madison St, San Francisco,CA,94016 +166702,AAA Batteries (4-pack),1,2.99,2019-03-15 17:27:00,879 Wilson St, Atlanta,GA,30301 +166703,Lightning Charging Cable,1,14.95,2019-03-24 00:16:00,929 5th St, Los Angeles,CA,90001 +166704,34in Ultrawide Monitor,1,379.99,2019-03-03 11:51:00,550 Lincoln St, Seattle,WA,98101 +166705,AAA Batteries (4-pack),3,2.99,2019-03-31 14:27:00,154 Spruce St, Atlanta,GA,30301 +166706,Lightning Charging Cable,1,14.95,2019-03-25 12:08:00,376 11th St, Austin,TX,73301 +166707,ThinkPad Laptop,1,999.99,2019-03-20 14:39:00,719 Lake St, San Francisco,CA,94016 +166708,Apple Airpods Headphones,1,150.0,2019-03-15 19:50:00,393 Lakeview St, Dallas,TX,75001 +166709,LG Washing Machine,1,600.0,2019-03-23 21:04:00,271 Ridge St, New York City,NY,10001 +166710,Google Phone,1,600.0,2019-03-11 17:56:00,732 Main St, Atlanta,GA,30301 +166710,USB-C Charging Cable,1,11.95,2019-03-11 17:56:00,732 Main St, Atlanta,GA,30301 +166711,Bose SoundSport Headphones,1,99.99,2019-03-23 17:43:00,51 2nd St, New York City,NY,10001 +166712,Vareebadd Phone,1,400.0,2019-03-16 18:48:00,755 1st St, San Francisco,CA,94016 +166713,USB-C Charging Cable,1,11.95,2019-03-08 11:18:00,141 North St, Atlanta,GA,30301 +166714,AAA Batteries (4-pack),1,2.99,2019-03-14 16:38:00,7 Sunset St, Los Angeles,CA,90001 +166715,USB-C Charging Cable,1,11.95,2019-03-31 19:18:00,865 2nd St, Boston,MA,02215 +166716,Wired Headphones,1,11.99,2019-03-06 11:42:00,55 Park St, New York City,NY,10001 +166717,USB-C Charging Cable,1,11.95,2019-03-27 09:05:00,601 5th St, Portland,OR,97035 +166718,Bose SoundSport Headphones,1,99.99,2019-03-05 10:26:00,223 7th St, San Francisco,CA,94016 +166719,AAA Batteries (4-pack),1,2.99,2019-03-27 10:56:00,845 6th St, Seattle,WA,98101 +166720,Apple Airpods Headphones,1,150.0,2019-03-11 22:01:00,117 Jackson St, Seattle,WA,98101 +166721,Google Phone,1,600.0,2019-03-13 13:38:00,209 Church St, Dallas,TX,75001 +166722,Lightning Charging Cable,1,14.95,2019-03-10 18:58:00,895 Washington St, Dallas,TX,75001 +166723,AA Batteries (4-pack),1,3.84,2019-03-30 13:17:00,390 14th St, Atlanta,GA,30301 +166724,Vareebadd Phone,1,400.0,2019-03-02 16:45:00,673 Forest St, Atlanta,GA,30301 +166725,iPhone,1,700.0,2019-03-09 15:07:00,907 13th St, Los Angeles,CA,90001 +166726,Macbook Pro Laptop,1,1700.0,2019-03-07 20:19:00,573 7th St, Seattle,WA,98101 +166727,34in Ultrawide Monitor,1,379.99,2019-03-23 19:14:00,148 Dogwood St, Seattle,WA,98101 +166728,Lightning Charging Cable,1,14.95,2019-03-16 19:59:00,578 4th St, Los Angeles,CA,90001 +166729,Wired Headphones,1,11.99,2019-03-02 00:52:00,691 Madison St, San Francisco,CA,94016 +166730,ThinkPad Laptop,1,999.99,2019-03-10 12:16:00,20 14th St, Portland,OR,97035 +166731,Apple Airpods Headphones,1,150.0,2019-03-24 21:00:00,73 2nd St, San Francisco,CA,94016 +166732,Macbook Pro Laptop,1,1700.0,2019-03-02 18:03:00,895 Jefferson St, Los Angeles,CA,90001 +166733,USB-C Charging Cable,1,11.95,2019-03-05 12:36:00,558 Hickory St, New York City,NY,10001 +166734,Wired Headphones,1,11.99,2019-03-31 08:22:00,44 2nd St, Atlanta,GA,30301 +166735,Wired Headphones,1,11.99,2019-03-12 07:21:00,193 Center St, San Francisco,CA,94016 +166736,Lightning Charging Cable,1,14.95,2019-03-09 00:00:00,104 Cedar St, Los Angeles,CA,90001 +166737,iPhone,1,700.0,2019-03-14 14:31:00,625 Cedar St, Portland,OR,97035 +166737,Lightning Charging Cable,1,14.95,2019-03-14 14:31:00,625 Cedar St, Portland,OR,97035 +166738,Wired Headphones,1,11.99,2019-03-23 10:31:00,209 2nd St, Los Angeles,CA,90001 +166739,Lightning Charging Cable,1,14.95,2019-03-05 09:12:00,659 Main St, San Francisco,CA,94016 +166740,iPhone,1,700.0,2019-03-04 21:36:00,399 Sunset St, San Francisco,CA,94016 +166740,AAA Batteries (4-pack),3,2.99,2019-03-04 21:36:00,399 Sunset St, San Francisco,CA,94016 +166741,Lightning Charging Cable,1,14.95,2019-03-24 09:04:00,433 7th St, Austin,TX,73301 +166742,AAA Batteries (4-pack),1,2.99,2019-03-02 19:59:00,856 Elm St, San Francisco,CA,94016 +166743,AA Batteries (4-pack),1,3.84,2019-03-09 15:00:00,300 4th St, Los Angeles,CA,90001 +166744,USB-C Charging Cable,1,11.95,2019-03-15 10:41:00,60 4th St, San Francisco,CA,94016 +166745,AAA Batteries (4-pack),1,2.99,2019-03-17 07:28:00,258 Hill St, San Francisco,CA,94016 +166745,AA Batteries (4-pack),1,3.84,2019-03-17 07:28:00,258 Hill St, San Francisco,CA,94016 +166746,Apple Airpods Headphones,1,150.0,2019-03-14 12:49:00,180 Church St, Los Angeles,CA,90001 +166747,AA Batteries (4-pack),1,3.84,2019-03-17 22:36:00,908 12th St, San Francisco,CA,94016 +166748,AA Batteries (4-pack),2,3.84,2019-03-29 20:43:00,969 Main St, Portland,OR,97035 +166749,Bose SoundSport Headphones,1,99.99,2019-03-08 18:33:00,330 Lakeview St, Boston,MA,02215 +166750,Bose SoundSport Headphones,1,99.99,2019-03-27 20:44:00,694 1st St, Los Angeles,CA,90001 +166751,iPhone,1,700.0,2019-03-09 17:13:00,988 Hill St, Austin,TX,73301 +166752,AAA Batteries (4-pack),1,2.99,2019-03-09 15:02:00,488 Adams St, New York City,NY,10001 +166752,Wired Headphones,1,11.99,2019-03-09 15:02:00,488 Adams St, New York City,NY,10001 +166753,Bose SoundSport Headphones,1,99.99,2019-03-29 16:35:00,248 8th St, San Francisco,CA,94016 +166754,AA Batteries (4-pack),1,3.84,2019-03-13 16:34:00,376 Lincoln St, Los Angeles,CA,90001 +166755,Apple Airpods Headphones,1,150.0,2019-03-24 11:10:00,64 North St, Atlanta,GA,30301 +166756,AA Batteries (4-pack),2,3.84,2019-03-30 14:00:00,684 Lake St, Austin,TX,73301 +166757,AA Batteries (4-pack),1,3.84,2019-03-08 00:00:00,637 Pine St, Portland,OR,97035 +166758,AA Batteries (4-pack),1,3.84,2019-03-11 14:01:00,537 South St, Seattle,WA,98101 +166759,AA Batteries (4-pack),1,3.84,2019-03-25 19:56:00,83 Center St, Los Angeles,CA,90001 +166760,27in 4K Gaming Monitor,1,389.99,2019-03-09 18:13:00,848 Highland St, Boston,MA,02215 +166761,AAA Batteries (4-pack),1,2.99,2019-03-29 19:37:00,711 11th St, Austin,TX,73301 +166762,AA Batteries (4-pack),1,3.84,2019-03-16 17:17:00,507 8th St, Austin,TX,73301 +166763,USB-C Charging Cable,1,11.95,2019-03-02 11:20:00,870 Hickory St, Portland,OR,97035 +166764,20in Monitor,1,109.99,2019-03-10 14:20:00,580 5th St, Los Angeles,CA,90001 +166765,USB-C Charging Cable,1,11.95,2019-03-10 11:39:00,897 Church St, New York City,NY,10001 +166766,Bose SoundSport Headphones,1,99.99,2019-03-08 10:48:00,6 Willow St, San Francisco,CA,94016 +166767,Apple Airpods Headphones,1,150.0,2019-03-10 11:14:00,329 Center St, Los Angeles,CA,90001 +166768,Google Phone,1,600.0,2019-03-01 16:40:00,440 Adams St, Portland,OR,97035 +166769,USB-C Charging Cable,1,11.95,2019-03-28 21:09:00,894 Cherry St, Los Angeles,CA,90001 +166770,iPhone,1,700.0,2019-03-04 20:17:00,430 Chestnut St, Boston,MA,02215 +166771,27in FHD Monitor,1,149.99,2019-03-17 22:45:00,263 Walnut St, San Francisco,CA,94016 +166772,27in FHD Monitor,1,149.99,2019-03-26 20:11:00,950 Elm St, San Francisco,CA,94016 +166773,AA Batteries (4-pack),1,3.84,2019-03-06 13:22:00,443 Highland St, Los Angeles,CA,90001 +166774,Lightning Charging Cable,1,14.95,2019-03-18 23:40:00,59 Johnson St, Austin,TX,73301 +166775,Lightning Charging Cable,1,14.95,2019-03-01 20:30:00,909 Highland St, Seattle,WA,98101 +166776,iPhone,1,700.0,2019-03-20 15:25:00,753 Willow St, Austin,TX,73301 +166776,Lightning Charging Cable,1,14.95,2019-03-20 15:25:00,753 Willow St, Austin,TX,73301 +166777,Wired Headphones,1,11.99,2019-03-28 06:41:00,180 Spruce St, San Francisco,CA,94016 +166778,iPhone,1,700.0,2019-03-18 11:26:00,28 12th St, Portland,OR,97035 +166779,USB-C Charging Cable,1,11.95,2019-03-07 13:07:00,409 Johnson St, Boston,MA,02215 +166780,27in 4K Gaming Monitor,1,389.99,2019-03-28 19:32:00,348 Adams St, San Francisco,CA,94016 +166781,Apple Airpods Headphones,1,150.0,2019-03-30 09:58:00,448 Elm St, New York City,NY,10001 +166782,Wired Headphones,1,11.99,2019-03-01 10:40:00,633 West St, Atlanta,GA,30301 +166783,Bose SoundSport Headphones,1,99.99,2019-03-05 19:32:00,18 Walnut St, Los Angeles,CA,90001 +166784,Wired Headphones,1,11.99,2019-03-13 00:46:00,139 Johnson St, Boston,MA,02215 +166785,Lightning Charging Cable,1,14.95,2019-03-03 18:22:00,690 4th St, Atlanta,GA,30301 +166786,AA Batteries (4-pack),1,3.84,2019-03-28 22:35:00,740 South St, San Francisco,CA,94016 +166787,USB-C Charging Cable,1,11.95,2019-03-09 18:24:00,651 Sunset St, San Francisco,CA,94016 +166788,Wired Headphones,1,11.99,2019-03-15 20:30:00,998 Lake St, Dallas,TX,75001 +166789,Lightning Charging Cable,1,14.95,2019-03-12 07:44:00,965 Highland St, Austin,TX,73301 +166790,Flatscreen TV,1,300.0,2019-03-25 16:03:00,437 7th St, Seattle,WA,98101 +166791,AA Batteries (4-pack),6,3.84,2019-03-30 08:50:00,118 Madison St, Dallas,TX,75001 +166792,34in Ultrawide Monitor,1,379.99,2019-03-24 18:16:00,60 Madison St, Seattle,WA,98101 +166793,Lightning Charging Cable,1,14.95,2019-03-01 14:08:00,117 Center St, New York City,NY,10001 +166794,iPhone,1,700.0,2019-03-09 14:48:00,893 Adams St, Los Angeles,CA,90001 +166794,Lightning Charging Cable,2,14.95,2019-03-09 14:48:00,893 Adams St, Los Angeles,CA,90001 +166795,Wired Headphones,1,11.99,2019-03-31 12:23:00,373 Park St, Boston,MA,02215 +166796,Bose SoundSport Headphones,1,99.99,2019-03-14 16:04:00,879 6th St, Seattle,WA,98101 +166797,Wired Headphones,1,11.99,2019-03-20 22:35:00,487 Lake St, Portland,ME,04101 +166798,AAA Batteries (4-pack),1,2.99,2019-03-02 13:04:00,456 South St, Los Angeles,CA,90001 +166799,Apple Airpods Headphones,1,150.0,2019-03-08 15:21:00,448 Adams St, Seattle,WA,98101 +166800,Lightning Charging Cable,1,14.95,2019-03-26 11:52:00,750 River St, Dallas,TX,75001 +166801,AAA Batteries (4-pack),1,2.99,2019-03-29 14:21:00,352 2nd St, Austin,TX,73301 +166802,27in FHD Monitor,1,149.99,2019-03-30 16:08:00,476 5th St, Austin,TX,73301 +166803,AAA Batteries (4-pack),1,2.99,2019-03-07 17:19:00,712 Hickory St, Dallas,TX,75001 +166804,Lightning Charging Cable,1,14.95,2019-03-02 10:39:00,789 Willow St, Portland,OR,97035 +166805,AAA Batteries (4-pack),1,2.99,2019-03-27 16:40:00,996 West St, New York City,NY,10001 +166806,AA Batteries (4-pack),1,3.84,2019-03-28 11:35:00,103 Meadow St, Los Angeles,CA,90001 +166807,ThinkPad Laptop,1,999.99,2019-03-08 09:51:00,269 Spruce St, San Francisco,CA,94016 +166808,Lightning Charging Cable,1,14.95,2019-03-17 07:32:00,461 Walnut St, Seattle,WA,98101 +166809,Wired Headphones,1,11.99,2019-03-06 16:05:00,927 Willow St, San Francisco,CA,94016 +166810,Lightning Charging Cable,1,14.95,2019-03-13 04:54:00,434 Chestnut St, San Francisco,CA,94016 +166811,Apple Airpods Headphones,1,150.0,2019-03-27 19:26:00,757 Pine St, Los Angeles,CA,90001 +166812,27in 4K Gaming Monitor,1,389.99,2019-03-01 18:01:00,102 Chestnut St, Dallas,TX,75001 +166813,27in FHD Monitor,1,149.99,2019-03-30 20:15:00,961 Church St, New York City,NY,10001 +166814,Lightning Charging Cable,1,14.95,2019-03-13 14:40:00,210 11th St, Seattle,WA,98101 +166815,ThinkPad Laptop,1,999.99,2019-03-08 12:32:00,285 Pine St, San Francisco,CA,94016 +166816,Lightning Charging Cable,1,14.95,2019-03-10 18:02:00,867 10th St, Atlanta,GA,30301 +166817,iPhone,1,700.0,2019-03-28 12:35:00,782 13th St, San Francisco,CA,94016 +166818,Bose SoundSport Headphones,1,99.99,2019-03-12 20:44:00,24 Wilson St, Seattle,WA,98101 +166819,Lightning Charging Cable,1,14.95,2019-03-25 13:43:00,722 7th St, Seattle,WA,98101 +166820,Apple Airpods Headphones,1,150.0,2019-03-16 01:09:00,572 Hickory St, Boston,MA,02215 +166821,Wired Headphones,1,11.99,2019-03-11 23:52:00,804 River St, Boston,MA,02215 +166822,Apple Airpods Headphones,1,150.0,2019-03-26 08:49:00,398 Madison St, Seattle,WA,98101 +166823,AAA Batteries (4-pack),1,2.99,2019-03-20 13:08:00,151 South St, San Francisco,CA,94016 +166824,iPhone,1,700.0,2019-03-25 12:54:00,934 Johnson St, New York City,NY,10001 +166824,Apple Airpods Headphones,1,150.0,2019-03-25 12:54:00,934 Johnson St, New York City,NY,10001 +166825,ThinkPad Laptop,1,999.99,2019-03-17 16:38:00,470 West St, Los Angeles,CA,90001 +166826,USB-C Charging Cable,1,11.95,2019-03-09 11:41:00,366 8th St, New York City,NY,10001 +166827,AA Batteries (4-pack),2,3.84,2019-03-08 12:53:00,222 Center St, San Francisco,CA,94016 +166828,AA Batteries (4-pack),1,3.84,2019-03-24 19:39:00,147 Johnson St, San Francisco,CA,94016 +166829,Lightning Charging Cable,1,14.95,2019-03-20 13:37:00,182 Madison St, Dallas,TX,75001 +166830,27in 4K Gaming Monitor,1,389.99,2019-03-12 15:36:00,321 Hill St, New York City,NY,10001 +166831,Apple Airpods Headphones,1,150.0,2019-03-13 19:42:00,109 Lincoln St, New York City,NY,10001 +166832,Lightning Charging Cable,1,14.95,2019-03-30 19:32:00,202 Johnson St, Boston,MA,02215 +166833,Lightning Charging Cable,1,14.95,2019-03-09 22:55:00,744 Park St, Los Angeles,CA,90001 +166834,Apple Airpods Headphones,1,150.0,2019-03-05 13:53:00,224 Elm St, New York City,NY,10001 +166835,ThinkPad Laptop,1,999.99,2019-03-17 11:43:00,826 Sunset St, Dallas,TX,75001 +166836,Macbook Pro Laptop,1,1700.0,2019-03-19 12:06:00,848 West St, Boston,MA,02215 +166837,Apple Airpods Headphones,1,150.0,2019-03-24 19:50:00,181 Highland St, Seattle,WA,98101 +166838,Wired Headphones,1,11.99,2019-03-18 22:46:00,369 Church St, Los Angeles,CA,90001 +166839,Lightning Charging Cable,1,14.95,2019-03-04 15:20:00,483 10th St, New York City,NY,10001 +166840,27in FHD Monitor,1,149.99,2019-03-15 23:19:00,727 Meadow St, Dallas,TX,75001 +166841,Apple Airpods Headphones,1,150.0,2019-03-09 12:56:00,979 Dogwood St, San Francisco,CA,94016 +166842,27in 4K Gaming Monitor,1,389.99,2019-03-12 17:35:00,817 Ridge St, Atlanta,GA,30301 +166842,AA Batteries (4-pack),1,3.84,2019-03-12 17:35:00,817 Ridge St, Atlanta,GA,30301 +166843,AA Batteries (4-pack),1,3.84,2019-03-01 15:43:00,418 Willow St, Austin,TX,73301 +166844,AA Batteries (4-pack),1,3.84,2019-03-05 10:28:00,804 10th St, Los Angeles,CA,90001 +166845,USB-C Charging Cable,1,11.95,2019-03-27 11:05:00,820 Main St, San Francisco,CA,94016 +166846,AAA Batteries (4-pack),1,2.99,2019-03-15 15:07:00,526 Chestnut St, Dallas,TX,75001 +166847,Apple Airpods Headphones,1,150.0,2019-03-14 17:59:00,211 9th St, Boston,MA,02215 +166848,AA Batteries (4-pack),1,3.84,2019-03-11 20:27:00,902 Elm St, San Francisco,CA,94016 +166849,AA Batteries (4-pack),1,3.84,2019-03-05 07:34:00,96 Jackson St, Portland,OR,97035 +166850,AAA Batteries (4-pack),1,2.99,2019-03-09 06:47:00,876 River St, New York City,NY,10001 +166851,ThinkPad Laptop,1,999.99,2019-03-20 08:18:00,471 Lakeview St, Seattle,WA,98101 +166852,Wired Headphones,1,11.99,2019-03-18 15:56:00,149 Ridge St, Austin,TX,73301 +166853,34in Ultrawide Monitor,1,379.99,2019-03-13 06:09:00,384 River St, Seattle,WA,98101 +166854,20in Monitor,1,109.99,2019-03-09 07:05:00,284 10th St, San Francisco,CA,94016 +166855,34in Ultrawide Monitor,1,379.99,2019-03-30 18:27:00,782 7th St, San Francisco,CA,94016 +166856,34in Ultrawide Monitor,1,379.99,2019-03-14 07:06:00,908 Park St, Atlanta,GA,30301 +166857,AAA Batteries (4-pack),1,2.99,2019-03-13 15:56:00,713 Ridge St, San Francisco,CA,94016 +166858,Wired Headphones,1,11.99,2019-03-21 07:36:00,788 2nd St, Los Angeles,CA,90001 +166859,Lightning Charging Cable,1,14.95,2019-03-08 22:05:00,436 Johnson St, Seattle,WA,98101 +166860,27in FHD Monitor,1,149.99,2019-03-10 20:02:00,998 5th St, San Francisco,CA,94016 +166861,AA Batteries (4-pack),1,3.84,2019-03-08 19:32:00,465 Chestnut St, Boston,MA,02215 +166862,ThinkPad Laptop,1,999.99,2019-03-06 20:13:00,163 Hill St, Dallas,TX,75001 +166863,Lightning Charging Cable,1,14.95,2019-03-28 15:29:00,295 South St, Los Angeles,CA,90001 +166864,USB-C Charging Cable,1,11.95,2019-03-24 08:00:00,759 Sunset St, San Francisco,CA,94016 +166865,34in Ultrawide Monitor,1,379.99,2019-03-01 08:46:00,638 Dogwood St, Seattle,WA,98101 +166866,Flatscreen TV,1,300.0,2019-03-25 20:16:00,927 13th St, Seattle,WA,98101 +166867,Lightning Charging Cable,1,14.95,2019-03-13 20:47:00,381 River St, Seattle,WA,98101 +166868,34in Ultrawide Monitor,1,379.99,2019-03-28 19:02:00,916 Center St, San Francisco,CA,94016 +166869,Apple Airpods Headphones,1,150.0,2019-03-23 23:06:00,105 River St, Los Angeles,CA,90001 +166870,Google Phone,1,600.0,2019-03-17 17:47:00,494 13th St, New York City,NY,10001 +166871,LG Dryer,1,600.0,2019-03-04 12:01:00,793 Johnson St, Seattle,WA,98101 +166872,AAA Batteries (4-pack),1,2.99,2019-03-04 05:46:00,930 Dogwood St, Seattle,WA,98101 +166873,AAA Batteries (4-pack),1,2.99,2019-03-30 18:41:00,110 Washington St, Portland,OR,97035 +166874,USB-C Charging Cable,1,11.95,2019-03-16 13:19:00,73 Church St, Dallas,TX,75001 +166875,AA Batteries (4-pack),1,3.84,2019-03-13 00:04:00,918 6th St, Atlanta,GA,30301 +166876,AA Batteries (4-pack),1,3.84,2019-03-05 11:20:00,494 Lakeview St, Boston,MA,02215 +166877,Wired Headphones,1,11.99,2019-03-09 16:09:00,688 Jackson St, San Francisco,CA,94016 +166878,20in Monitor,1,109.99,2019-03-21 10:02:00,840 7th St, Dallas,TX,75001 +166878,USB-C Charging Cable,1,11.95,2019-03-21 10:02:00,840 7th St, Dallas,TX,75001 +166879,USB-C Charging Cable,1,11.95,2019-03-11 02:54:00,393 North St, San Francisco,CA,94016 +166880,27in FHD Monitor,1,149.99,2019-03-22 15:28:00,861 Main St, Atlanta,GA,30301 +166881,34in Ultrawide Monitor,1,379.99,2019-03-07 15:44:00,137 Center St, Los Angeles,CA,90001 +166882,Apple Airpods Headphones,1,150.0,2019-03-08 00:29:00,333 Maple St, Boston,MA,02215 +166883,Wired Headphones,1,11.99,2019-03-07 14:37:00,108 Meadow St, San Francisco,CA,94016 +166884,USB-C Charging Cable,1,11.95,2019-03-10 16:38:00,342 9th St, San Francisco,CA,94016 +166885,Lightning Charging Cable,1,14.95,2019-03-16 12:22:00,590 Pine St, San Francisco,CA,94016 +166886,USB-C Charging Cable,1,11.95,2019-03-08 17:35:00,32 West St, New York City,NY,10001 +166887,27in FHD Monitor,1,149.99,2019-03-13 16:21:00,532 Adams St, Dallas,TX,75001 +166888,AA Batteries (4-pack),1,3.84,2019-03-17 21:07:00,23 Maple St, Dallas,TX,75001 +166889,27in 4K Gaming Monitor,1,389.99,2019-03-02 12:03:00,809 Walnut St, Los Angeles,CA,90001 +166890,Macbook Pro Laptop,1,1700.0,2019-03-27 20:07:00,933 Walnut St, New York City,NY,10001 +166891,Bose SoundSport Headphones,1,99.99,2019-03-02 09:42:00,176 Forest St, New York City,NY,10001 +166892,34in Ultrawide Monitor,1,379.99,2019-03-30 19:47:00,853 Sunset St, Portland,OR,97035 +166893,AAA Batteries (4-pack),1,2.99,2019-03-11 22:07:00,367 West St, New York City,NY,10001 +166894,USB-C Charging Cable,1,11.95,2019-03-15 20:30:00,87 Jackson St, Austin,TX,73301 +166895,Google Phone,1,600.0,2019-03-17 10:24:00,22 Highland St, New York City,NY,10001 +166896,Lightning Charging Cable,1,14.95,2019-03-29 08:49:00,694 Church St, San Francisco,CA,94016 +166897,USB-C Charging Cable,1,11.95,2019-03-09 20:49:00,79 Spruce St, Boston,MA,02215 +166898,20in Monitor,1,109.99,2019-03-03 15:26:00,915 Main St, San Francisco,CA,94016 +166899,AAA Batteries (4-pack),1,2.99,2019-03-15 18:48:00,1 4th St, Seattle,WA,98101 +166900,27in 4K Gaming Monitor,1,389.99,2019-03-12 21:24:00,349 Willow St, San Francisco,CA,94016 +166901,USB-C Charging Cable,1,11.95,2019-03-07 21:38:00,153 Willow St, Seattle,WA,98101 +166902,Wired Headphones,1,11.99,2019-03-20 21:18:00,844 Highland St, San Francisco,CA,94016 +166903,Flatscreen TV,1,300.0,2019-03-31 01:48:00,402 Forest St, Boston,MA,02215 +166904,Wired Headphones,2,11.99,2019-03-12 10:04:00,654 Chestnut St, Seattle,WA,98101 +166905,AAA Batteries (4-pack),1,2.99,2019-03-27 21:46:00,610 Forest St, Los Angeles,CA,90001 +166906,27in FHD Monitor,1,149.99,2019-03-19 12:07:00,899 Chestnut St, San Francisco,CA,94016 +166907,ThinkPad Laptop,1,999.99,2019-03-08 13:44:00,271 Adams St, San Francisco,CA,94016 +166908,Bose SoundSport Headphones,1,99.99,2019-03-16 14:17:00,153 Park St, New York City,NY,10001 +166909,Macbook Pro Laptop,1,1700.0,2019-03-18 18:50:00,995 Wilson St, Boston,MA,02215 +166910,AA Batteries (4-pack),1,3.84,2019-03-02 13:59:00,673 Lakeview St, San Francisco,CA,94016 +166911,27in 4K Gaming Monitor,1,389.99,2019-03-21 16:20:00,964 Lake St, Dallas,TX,75001 +166912,Wired Headphones,1,11.99,2019-03-06 10:57:00,549 Maple St, Dallas,TX,75001 +166913,Macbook Pro Laptop,1,1700.0,2019-03-21 20:32:00,780 Hickory St, Los Angeles,CA,90001 +166914,Bose SoundSport Headphones,1,99.99,2019-03-19 13:41:00,264 Lincoln St, New York City,NY,10001 +166915,Wired Headphones,1,11.99,2019-03-13 14:31:00,431 Madison St, Atlanta,GA,30301 +166916,27in 4K Gaming Monitor,1,389.99,2019-03-11 14:24:00,647 Center St, San Francisco,CA,94016 +166917,Google Phone,1,600.0,2019-03-15 12:44:00,262 Maple St, Los Angeles,CA,90001 +166918,AA Batteries (4-pack),2,3.84,2019-03-14 10:50:00,226 Jackson St, Seattle,WA,98101 +166919,Wired Headphones,1,11.99,2019-03-24 21:23:00,130 Jackson St, San Francisco,CA,94016 +166920,Google Phone,1,600.0,2019-03-03 16:44:00,460 Jackson St, Boston,MA,02215 +166921,USB-C Charging Cable,1,11.95,2019-03-24 10:47:00,319 Willow St, Dallas,TX,75001 +166922,AA Batteries (4-pack),1,3.84,2019-03-02 19:21:00,73 Madison St, Los Angeles,CA,90001 +166923,AA Batteries (4-pack),1,3.84,2019-03-31 17:07:00,947 13th St, San Francisco,CA,94016 +166924,Apple Airpods Headphones,1,150.0,2019-03-19 10:43:00,314 Dogwood St, Atlanta,GA,30301 +166925,27in FHD Monitor,1,149.99,2019-03-08 17:18:00,453 Meadow St, Atlanta,GA,30301 +166926,AAA Batteries (4-pack),1,2.99,2019-03-13 13:55:00,606 Lakeview St, San Francisco,CA,94016 +166927,Macbook Pro Laptop,1,1700.0,2019-03-20 18:05:00,994 Lincoln St, Seattle,WA,98101 +166928,Lightning Charging Cable,1,14.95,2019-03-26 21:45:00,857 2nd St, Los Angeles,CA,90001 +166929,Wired Headphones,1,11.99,2019-03-18 14:37:00,792 Elm St, San Francisco,CA,94016 +166930,AAA Batteries (4-pack),2,2.99,2019-03-25 00:16:00,332 Jackson St, Dallas,TX,75001 +166931,USB-C Charging Cable,1,11.95,2019-03-01 15:44:00,543 Meadow St, San Francisco,CA,94016 +166932,AAA Batteries (4-pack),1,2.99,2019-03-02 19:46:00,168 10th St, Portland,OR,97035 +166933,Wired Headphones,2,11.99,2019-03-26 10:11:00,150 14th St, Boston,MA,02215 +166934,AAA Batteries (4-pack),1,2.99,2019-03-21 07:47:00,389 Walnut St, San Francisco,CA,94016 +166935,Wired Headphones,1,11.99,2019-03-03 19:38:00,975 Cherry St, Dallas,TX,75001 +166936,Lightning Charging Cable,1,14.95,2019-03-17 21:51:00,322 9th St, San Francisco,CA,94016 +166937,Vareebadd Phone,1,400.0,2019-03-17 22:21:00,320 Lakeview St, San Francisco,CA,94016 +166938,USB-C Charging Cable,1,11.95,2019-03-25 16:47:00,301 4th St, Los Angeles,CA,90001 +166939,Bose SoundSport Headphones,1,99.99,2019-03-07 10:10:00,558 Hickory St, Boston,MA,02215 +166940,Lightning Charging Cable,1,14.95,2019-03-02 13:47:00,762 Pine St, Boston,MA,02215 +166941,AA Batteries (4-pack),3,3.84,2019-03-04 08:01:00,404 North St, Los Angeles,CA,90001 +166942,iPhone,1,700.0,2019-03-01 19:56:00,472 Adams St, San Francisco,CA,94016 +166942,Apple Airpods Headphones,1,150.0,2019-03-01 19:56:00,472 Adams St, San Francisco,CA,94016 +166943,Apple Airpods Headphones,1,150.0,2019-03-25 16:50:00,760 Park St, Los Angeles,CA,90001 +166944,USB-C Charging Cable,1,11.95,2019-03-08 19:56:00,782 2nd St, Atlanta,GA,30301 +166945,USB-C Charging Cable,1,11.95,2019-03-25 19:56:00,691 6th St, Boston,MA,02215 +166946,USB-C Charging Cable,1,11.95,2019-03-06 00:07:00,555 9th St, Seattle,WA,98101 +166947,iPhone,1,700.0,2019-03-15 11:53:00,535 Washington St, Atlanta,GA,30301 +166948,34in Ultrawide Monitor,1,379.99,2019-03-18 15:02:00,401 Walnut St, Austin,TX,73301 +166949,34in Ultrawide Monitor,1,379.99,2019-03-21 01:05:00,85 Jackson St, Boston,MA,02215 +166950,Wired Headphones,1,11.99,2019-03-05 11:38:00,237 5th St, Austin,TX,73301 +166951,AA Batteries (4-pack),1,3.84,2019-03-19 12:25:00,374 Highland St, San Francisco,CA,94016 +166952,34in Ultrawide Monitor,1,379.99,2019-03-14 08:19:00,571 Jackson St, New York City,NY,10001 +166953,AAA Batteries (4-pack),4,2.99,2019-03-24 11:30:00,337 Main St, San Francisco,CA,94016 +166954,Macbook Pro Laptop,1,1700.0,2019-03-14 22:25:00,802 Madison St, San Francisco,CA,94016 +166955,Apple Airpods Headphones,1,150.0,2019-03-30 12:36:00,462 River St, Seattle,WA,98101 +166956,Wired Headphones,1,11.99,2019-03-30 06:47:00,281 11th St, Los Angeles,CA,90001 +166957,27in FHD Monitor,1,149.99,2019-03-27 09:28:00,168 Washington St, Atlanta,GA,30301 +166958,Apple Airpods Headphones,1,150.0,2019-03-27 11:40:00,573 13th St, Los Angeles,CA,90001 +166959,Apple Airpods Headphones,1,150.0,2019-03-26 17:10:00,963 Highland St, San Francisco,CA,94016 +166960,Wired Headphones,1,11.99,2019-03-17 08:42:00,901 Meadow St, San Francisco,CA,94016 +166961,27in 4K Gaming Monitor,1,389.99,2019-03-17 19:40:00,159 Wilson St, San Francisco,CA,94016 +166962,USB-C Charging Cable,1,11.95,2019-03-16 18:03:00,530 10th St, Austin,TX,73301 +166963,Apple Airpods Headphones,1,150.0,2019-03-30 17:43:00,235 Willow St, Seattle,WA,98101 +166964,Lightning Charging Cable,1,14.95,2019-03-15 13:36:00,376 2nd St, Portland,OR,97035 +166965,Apple Airpods Headphones,1,150.0,2019-03-24 18:54:00,948 5th St, San Francisco,CA,94016 +166966,AAA Batteries (4-pack),1,2.99,2019-03-08 21:29:00,293 9th St, Los Angeles,CA,90001 +166967,AA Batteries (4-pack),1,3.84,2019-03-06 22:36:00,542 Forest St, New York City,NY,10001 +166968,LG Washing Machine,1,600.0,2019-03-27 22:16:00,782 Lincoln St, Portland,OR,97035 +166968,27in 4K Gaming Monitor,1,389.99,2019-03-27 22:16:00,782 Lincoln St, Portland,OR,97035 +166969,iPhone,1,700.0,2019-03-18 22:07:00,919 Walnut St, Boston,MA,02215 +166970,Apple Airpods Headphones,1,150.0,2019-03-24 17:08:00,622 Pine St, Dallas,TX,75001 +166971,Lightning Charging Cable,1,14.95,2019-03-21 14:09:00,246 Elm St, Dallas,TX,75001 +166972,Macbook Pro Laptop,1,1700.0,2019-03-17 14:40:00,615 Pine St, New York City,NY,10001 +166973,AA Batteries (4-pack),1,3.84,2019-03-25 16:54:00,168 Ridge St, Boston,MA,02215 +166974,Macbook Pro Laptop,1,1700.0,2019-03-28 08:50:00,983 12th St, Atlanta,GA,30301 +166975,USB-C Charging Cable,1,11.95,2019-03-27 16:04:00,489 Lincoln St, Los Angeles,CA,90001 +166976,AAA Batteries (4-pack),5,2.99,2019-03-25 12:18:00,333 7th St, Los Angeles,CA,90001 +166977,27in FHD Monitor,1,149.99,2019-03-20 17:12:00,269 Center St, New York City,NY,10001 +166978,iPhone,1,700.0,2019-03-25 17:08:00,201 Jefferson St, Austin,TX,73301 +166979,AA Batteries (4-pack),1,3.84,2019-03-15 09:41:00,333 7th St, Boston,MA,02215 +166980,Flatscreen TV,1,300.0,2019-03-25 20:28:00,533 9th St, Atlanta,GA,30301 +166981,AAA Batteries (4-pack),1,2.99,2019-03-31 01:40:00,557 Wilson St, Dallas,TX,75001 +166982,Lightning Charging Cable,1,14.95,2019-03-29 20:00:00,691 8th St, New York City,NY,10001 +166983,Bose SoundSport Headphones,1,99.99,2019-03-13 15:48:00,956 Chestnut St, San Francisco,CA,94016 +166984,AAA Batteries (4-pack),3,2.99,2019-03-03 10:01:00,513 Highland St, Seattle,WA,98101 +166985,AA Batteries (4-pack),1,3.84,2019-03-03 00:15:00,927 Lakeview St, San Francisco,CA,94016 +166986,Bose SoundSport Headphones,1,99.99,2019-03-20 20:22:00,583 11th St, San Francisco,CA,94016 +166987,Lightning Charging Cable,1,14.95,2019-03-12 23:17:00,654 Church St, Portland,OR,97035 +166988,Lightning Charging Cable,1,14.95,2019-03-17 18:47:00,90 River St, New York City,NY,10001 +166989,Google Phone,1,600.0,2019-03-28 10:35:00,239 9th St, Boston,MA,02215 +166990,AA Batteries (4-pack),1,3.84,2019-03-23 19:11:00,29 South St, New York City,NY,10001 +166991,Flatscreen TV,1,300.0,2019-03-15 12:02:00,745 6th St, Boston,MA,02215 +166992,Apple Airpods Headphones,1,150.0,2019-03-26 10:28:00,639 10th St, Seattle,WA,98101 +166993,Lightning Charging Cable,1,14.95,2019-03-28 21:27:00,373 Ridge St, Atlanta,GA,30301 +166994,34in Ultrawide Monitor,1,379.99,2019-03-17 17:37:00,992 Maple St, New York City,NY,10001 +166995,AAA Batteries (4-pack),2,2.99,2019-03-27 22:05:00,172 4th St, San Francisco,CA,94016 +166996,Apple Airpods Headphones,1,150.0,2019-03-27 14:44:00,910 10th St, New York City,NY,10001 +166997,USB-C Charging Cable,1,11.95,2019-03-23 20:02:00,14 11th St, Los Angeles,CA,90001 +166998,USB-C Charging Cable,1,11.95,2019-03-31 13:26:00,786 Jefferson St, Atlanta,GA,30301 +166999,USB-C Charging Cable,1,11.95,2019-03-01 07:39:00,948 Jefferson St, San Francisco,CA,94016 +167000,Wired Headphones,1,11.99,2019-03-23 11:41:00,650 Pine St, Boston,MA,02215 +167001,Lightning Charging Cable,1,14.95,2019-03-29 14:47:00,590 Jefferson St, Seattle,WA,98101 +167002,Wired Headphones,1,11.99,2019-03-20 15:51:00,422 13th St, New York City,NY,10001 +167003,27in FHD Monitor,1,149.99,2019-03-07 20:58:00,477 Hill St, Portland,OR,97035 +167004,USB-C Charging Cable,1,11.95,2019-03-31 13:22:00,818 South St, Los Angeles,CA,90001 +167005,Wired Headphones,1,11.99,2019-03-27 13:33:00,136 Elm St, Boston,MA,02215 +167006,Flatscreen TV,1,300.0,2019-03-24 15:34:00,975 1st St, Portland,OR,97035 +167007,27in 4K Gaming Monitor,1,389.99,2019-03-22 10:10:00,506 North St, San Francisco,CA,94016 +167008,AA Batteries (4-pack),1,3.84,2019-03-21 15:06:00,679 Dogwood St, Los Angeles,CA,90001 +167009,Flatscreen TV,1,300.0,2019-03-25 18:23:00,540 Dogwood St, Boston,MA,02215 +167010,USB-C Charging Cable,1,11.95,2019-03-11 02:48:00,249 Sunset St, New York City,NY,10001 +167011,USB-C Charging Cable,1,11.95,2019-03-15 19:51:00,988 Hickory St, San Francisco,CA,94016 +167012,AA Batteries (4-pack),1,3.84,2019-03-16 12:48:00,115 11th St, Seattle,WA,98101 +167013,AAA Batteries (4-pack),1,2.99,2019-03-05 17:18:00,67 Jefferson St, Los Angeles,CA,90001 +167014,iPhone,1,700.0,2019-03-09 22:04:00,560 6th St, San Francisco,CA,94016 +167014,Apple Airpods Headphones,1,150.0,2019-03-09 22:04:00,560 6th St, San Francisco,CA,94016 +167015,Lightning Charging Cable,1,14.95,2019-03-20 10:56:00,20 8th St, Atlanta,GA,30301 +167016,Apple Airpods Headphones,1,150.0,2019-03-27 17:22:00,775 Wilson St, Seattle,WA,98101 +167017,ThinkPad Laptop,1,999.99,2019-03-13 20:23:00,629 Walnut St, Portland,OR,97035 +167018,34in Ultrawide Monitor,1,379.99,2019-03-22 12:37:00,963 Washington St, San Francisco,CA,94016 +167019,LG Washing Machine,1,600.0,2019-03-06 22:51:00,203 9th St, New York City,NY,10001 +167020,Lightning Charging Cable,1,14.95,2019-03-16 20:41:00,976 7th St, Dallas,TX,75001 +167021,Apple Airpods Headphones,1,150.0,2019-03-14 16:52:00,233 Lincoln St, New York City,NY,10001 +167022,Wired Headphones,1,11.99,2019-03-03 19:54:00,7 Chestnut St, San Francisco,CA,94016 +167023,iPhone,1,700.0,2019-03-17 21:02:00,662 Ridge St, Los Angeles,CA,90001 +167023,Lightning Charging Cable,1,14.95,2019-03-17 21:02:00,662 Ridge St, Los Angeles,CA,90001 +167024,Wired Headphones,1,11.99,2019-03-02 15:06:00,298 Elm St, Portland,OR,97035 +167025,Apple Airpods Headphones,1,150.0,2019-03-11 15:13:00,615 Jackson St, Boston,MA,02215 +167026,iPhone,1,700.0,2019-03-21 22:30:00,217 Highland St, Boston,MA,02215 +167026,Lightning Charging Cable,1,14.95,2019-03-21 22:30:00,217 Highland St, Boston,MA,02215 +167027,iPhone,1,700.0,2019-03-05 22:55:00,108 Chestnut St, San Francisco,CA,94016 +167028,AA Batteries (4-pack),1,3.84,2019-03-17 08:27:00,807 5th St, Austin,TX,73301 +167029,Macbook Pro Laptop,1,1700.0,2019-03-28 15:40:00,802 Meadow St, San Francisco,CA,94016 +167030,Apple Airpods Headphones,1,150.0,2019-03-14 11:29:00,442 5th St, San Francisco,CA,94016 +167031,27in 4K Gaming Monitor,1,389.99,2019-03-12 16:39:00,196 Highland St, Boston,MA,02215 +167032,Bose SoundSport Headphones,1,99.99,2019-03-23 22:37:00,784 Dogwood St, San Francisco,CA,94016 +167033,Lightning Charging Cable,1,14.95,2019-03-13 12:32:00,563 Highland St, Atlanta,GA,30301 +167034,USB-C Charging Cable,1,11.95,2019-03-21 10:35:00,747 Jackson St, Seattle,WA,98101 +167035,Apple Airpods Headphones,1,150.0,2019-03-07 19:13:00,8 Highland St, San Francisco,CA,94016 +167036,27in 4K Gaming Monitor,1,389.99,2019-03-31 16:39:00,595 Jackson St, Dallas,TX,75001 +167037,Bose SoundSport Headphones,1,99.99,2019-03-18 13:02:00,214 4th St, Seattle,WA,98101 +167038,AA Batteries (4-pack),1,3.84,2019-03-16 18:48:00,620 Dogwood St, Seattle,WA,98101 +167039,AAA Batteries (4-pack),1,2.99,2019-03-09 17:19:00,767 Dogwood St, San Francisco,CA,94016 +167040,iPhone,1,700.0,2019-03-02 10:31:00,467 Maple St, San Francisco,CA,94016 +167041,34in Ultrawide Monitor,1,379.99,2019-03-23 18:50:00,779 Hill St, Atlanta,GA,30301 +167042,Lightning Charging Cable,1,14.95,2019-03-16 07:57:00,218 11th St, Dallas,TX,75001 +167043,Wired Headphones,1,11.99,2019-03-28 10:45:00,452 Cherry St, San Francisco,CA,94016 +167044,20in Monitor,1,109.99,2019-03-24 09:43:00,39 Meadow St, Los Angeles,CA,90001 +167045,AAA Batteries (4-pack),2,2.99,2019-03-07 02:30:00,970 6th St, Austin,TX,73301 +167046,Google Phone,1,600.0,2019-03-31 21:53:00,407 Hickory St, San Francisco,CA,94016 +167047,Flatscreen TV,1,300.0,2019-03-09 16:09:00,252 Main St, San Francisco,CA,94016 +167048,Google Phone,1,600.0,2019-03-22 15:48:00,402 Adams St, San Francisco,CA,94016 +167049,AAA Batteries (4-pack),3,2.99,2019-03-12 14:02:00,632 South St, Austin,TX,73301 +167050,Lightning Charging Cable,1,14.95,2019-03-13 19:33:00,967 Park St, San Francisco,CA,94016 +167051,20in Monitor,1,109.99,2019-03-15 04:59:00,373 13th St, New York City,NY,10001 +167052,Lightning Charging Cable,1,14.95,2019-03-21 21:18:00,782 Main St, Portland,OR,97035 +167053,Wired Headphones,1,11.99,2019-03-27 20:54:00,381 10th St, Los Angeles,CA,90001 +167054,Wired Headphones,1,11.99,2019-03-31 19:36:00,961 Jefferson St, Seattle,WA,98101 +167055,Flatscreen TV,1,300.0,2019-03-11 00:08:00,535 Cedar St, Dallas,TX,75001 +167056,Bose SoundSport Headphones,1,99.99,2019-03-30 14:22:00,457 4th St, Dallas,TX,75001 +167057,Wired Headphones,1,11.99,2019-03-28 10:21:00,296 8th St, Dallas,TX,75001 +167058,Wired Headphones,1,11.99,2019-03-05 10:28:00,595 14th St, Boston,MA,02215 +167059,27in 4K Gaming Monitor,1,389.99,2019-03-29 10:29:00,429 9th St, Atlanta,GA,30301 +167060,Macbook Pro Laptop,1,1700.0,2019-03-04 11:55:00,266 Walnut St, Los Angeles,CA,90001 +167061,AA Batteries (4-pack),1,3.84,2019-03-31 13:33:00,949 Jefferson St, New York City,NY,10001 +167062,AAA Batteries (4-pack),1,2.99,2019-03-22 03:56:00,143 11th St, Los Angeles,CA,90001 +167063,USB-C Charging Cable,1,11.95,2019-03-09 13:25:00,605 Lincoln St, Los Angeles,CA,90001 +167064,AA Batteries (4-pack),1,3.84,2019-03-21 20:14:00,381 Johnson St, Dallas,TX,75001 +167065,34in Ultrawide Monitor,1,379.99,2019-03-15 18:11:00,403 Park St, Austin,TX,73301 +167066,USB-C Charging Cable,1,11.95,2019-03-02 18:28:00,253 2nd St, New York City,NY,10001 +167067,AA Batteries (4-pack),2,3.84,2019-03-21 16:42:00,559 Highland St, San Francisco,CA,94016 +167068,USB-C Charging Cable,1,11.95,2019-03-05 07:29:00,100 7th St, Los Angeles,CA,90001 +167069,USB-C Charging Cable,1,11.95,2019-03-20 17:45:00,990 14th St, San Francisco,CA,94016 +167070,Wired Headphones,1,11.99,2019-03-16 19:48:00,389 Chestnut St, Boston,MA,02215 +167071,34in Ultrawide Monitor,1,379.99,2019-03-04 19:21:00,383 Johnson St, Los Angeles,CA,90001 +167072,AA Batteries (4-pack),1,3.84,2019-03-08 15:56:00,608 Adams St, Atlanta,GA,30301 +167073,Bose SoundSport Headphones,1,99.99,2019-03-06 14:47:00,250 2nd St, San Francisco,CA,94016 +167074,Lightning Charging Cable,1,14.95,2019-03-30 18:04:00,390 Meadow St, Seattle,WA,98101 +167075,Bose SoundSport Headphones,1,99.99,2019-03-10 01:32:00,852 5th St, Seattle,WA,98101 +167076,Flatscreen TV,1,300.0,2019-03-31 18:41:00,796 Johnson St, Los Angeles,CA,90001 +167077,Wired Headphones,1,11.99,2019-03-08 19:09:00,406 Cedar St, San Francisco,CA,94016 +167078,Wired Headphones,1,11.99,2019-03-19 23:57:00,400 12th St, Atlanta,GA,30301 +167079,Bose SoundSport Headphones,1,99.99,2019-03-14 10:11:00,427 Highland St, Austin,TX,73301 +167080,USB-C Charging Cable,1,11.95,2019-03-23 11:17:00,552 Ridge St, San Francisco,CA,94016 +167081,Macbook Pro Laptop,1,1700.0,2019-03-17 19:28:00,796 Park St, San Francisco,CA,94016 +167082,Macbook Pro Laptop,1,1700.0,2019-03-06 23:37:00,561 Cherry St, San Francisco,CA,94016 +167083,AAA Batteries (4-pack),3,2.99,2019-03-11 21:03:00,491 Jefferson St, New York City,NY,10001 +167084,AA Batteries (4-pack),1,3.84,2019-03-16 15:11:00,15 Jefferson St, Los Angeles,CA,90001 +167084,Bose SoundSport Headphones,1,99.99,2019-03-16 15:11:00,15 Jefferson St, Los Angeles,CA,90001 +167085,AAA Batteries (4-pack),2,2.99,2019-03-18 11:39:00,969 Johnson St, San Francisco,CA,94016 +167086,USB-C Charging Cable,1,11.95,2019-03-25 14:00:00,805 Madison St, Los Angeles,CA,90001 +167087,Apple Airpods Headphones,1,150.0,2019-03-19 16:22:00,524 Chestnut St, New York City,NY,10001 +167088,USB-C Charging Cable,1,11.95,2019-03-17 23:01:00,962 South St, Los Angeles,CA,90001 +167089,USB-C Charging Cable,1,11.95,2019-03-28 10:06:00,990 Lake St, Boston,MA,02215 +167090,Lightning Charging Cable,1,14.95,2019-03-24 13:30:00,963 Elm St, San Francisco,CA,94016 +167091,Apple Airpods Headphones,1,150.0,2019-03-19 16:00:00,861 Madison St, Los Angeles,CA,90001 +167092,27in FHD Monitor,1,149.99,2019-03-10 12:35:00,637 6th St, Dallas,TX,75001 +167093,Google Phone,1,600.0,2019-03-22 08:57:00,467 Madison St, Seattle,WA,98101 +167094,Lightning Charging Cable,1,14.95,2019-03-09 13:15:00,972 11th St, New York City,NY,10001 +167095,Bose SoundSport Headphones,1,99.99,2019-03-14 13:25:00,154 Jackson St, Seattle,WA,98101 +167096,Bose SoundSport Headphones,1,99.99,2019-03-22 14:12:00,196 Jefferson St, San Francisco,CA,94016 +167097,Apple Airpods Headphones,1,150.0,2019-03-16 19:05:00,138 8th St, San Francisco,CA,94016 +167098,AA Batteries (4-pack),1,3.84,2019-03-03 20:16:00,949 9th St, Los Angeles,CA,90001 +167099,Apple Airpods Headphones,1,150.0,2019-03-02 19:34:00,705 Chestnut St, Los Angeles,CA,90001 +167100,27in 4K Gaming Monitor,1,389.99,2019-03-04 20:43:00,33 Jackson St, Seattle,WA,98101 +167101,27in 4K Gaming Monitor,1,389.99,2019-03-12 01:53:00,861 Madison St, Boston,MA,02215 +167102,Macbook Pro Laptop,1,1700.0,2019-03-30 12:46:00,222 Dogwood St, Austin,TX,73301 +167103,AA Batteries (4-pack),1,3.84,2019-03-30 12:33:00,605 Hickory St, Seattle,WA,98101 +167104,Bose SoundSport Headphones,1,99.99,2019-03-17 15:36:00,455 4th St, San Francisco,CA,94016 +167105,iPhone,1,700.0,2019-03-14 13:00:00,605 North St, New York City,NY,10001 +167106,Macbook Pro Laptop,1,1700.0,2019-03-10 15:26:00,947 Sunset St, San Francisco,CA,94016 +167107,iPhone,1,700.0,2019-03-27 18:43:00,493 1st St, San Francisco,CA,94016 +167108,USB-C Charging Cable,1,11.95,2019-03-30 16:40:00,409 Lakeview St, Los Angeles,CA,90001 +167109,ThinkPad Laptop,1,999.99,2019-03-03 14:34:00,187 Adams St, New York City,NY,10001 +167110,AA Batteries (4-pack),1,3.84,2019-03-10 14:55:00,338 7th St, Seattle,WA,98101 +167111,iPhone,1,700.0,2019-03-19 13:41:00,863 Wilson St, Dallas,TX,75001 +167112,Bose SoundSport Headphones,1,99.99,2019-03-18 00:35:00,872 Cherry St, Portland,OR,97035 +167113,Lightning Charging Cable,1,14.95,2019-03-02 22:55:00,612 7th St, Portland,OR,97035 +167114,Wired Headphones,1,11.99,2019-03-24 17:37:00,450 Park St, Dallas,TX,75001 +167115,Apple Airpods Headphones,1,150.0,2019-03-06 19:02:00,188 Church St, Los Angeles,CA,90001 +167116,Wired Headphones,1,11.99,2019-03-24 23:37:00,517 6th St, San Francisco,CA,94016 +167117,Wired Headphones,1,11.99,2019-03-06 17:26:00,279 Sunset St, Los Angeles,CA,90001 +167118,Flatscreen TV,1,300.0,2019-03-25 13:34:00,118 Church St, Los Angeles,CA,90001 +167119,LG Dryer,1,600.0,2019-03-22 08:48:00,857 North St, Dallas,TX,75001 +167120,Lightning Charging Cable,1,14.95,2019-03-31 09:47:00,947 12th St, San Francisco,CA,94016 +167121,Macbook Pro Laptop,1,1700.0,2019-03-08 08:24:00,439 Lincoln St, Atlanta,GA,30301 +167122,AA Batteries (4-pack),1,3.84,2019-03-11 22:32:00,166 Center St, Los Angeles,CA,90001 +167123,Wired Headphones,1,11.99,2019-03-10 09:04:00,220 Forest St, Portland,OR,97035 +167124,Flatscreen TV,1,300.0,2019-03-20 09:20:00,666 Adams St, Seattle,WA,98101 +167124,ThinkPad Laptop,1,999.99,2019-03-20 09:20:00,666 Adams St, Seattle,WA,98101 +167125,Lightning Charging Cable,1,14.95,2019-03-05 22:17:00,516 12th St, Los Angeles,CA,90001 +167126,LG Washing Machine,1,600.0,2019-03-13 12:58:00,628 North St, Seattle,WA,98101 +167127,Lightning Charging Cable,1,14.95,2019-03-02 13:56:00,150 Washington St, Atlanta,GA,30301 +167128,Apple Airpods Headphones,1,150.0,2019-03-03 15:54:00,610 Main St, Atlanta,GA,30301 +167129,27in FHD Monitor,1,149.99,2019-03-02 18:47:00,211 Main St, Boston,MA,02215 +167130,Lightning Charging Cable,1,14.95,2019-03-11 20:07:00,129 Spruce St, Atlanta,GA,30301 +167131,AA Batteries (4-pack),3,3.84,2019-03-05 13:11:00,594 Lincoln St, San Francisco,CA,94016 +167132,34in Ultrawide Monitor,1,379.99,2019-03-24 09:25:00,566 Church St, Seattle,WA,98101 +167133,Macbook Pro Laptop,1,1700.0,2019-03-25 17:10:00,407 Walnut St, Atlanta,GA,30301 +167134,Wired Headphones,2,11.99,2019-03-07 19:32:00,753 5th St, Atlanta,GA,30301 +167135,27in FHD Monitor,1,149.99,2019-03-07 19:43:00,175 8th St, San Francisco,CA,94016 +167136,Bose SoundSport Headphones,1,99.99,2019-03-24 19:17:00,85 Hickory St, San Francisco,CA,94016 +167137,Lightning Charging Cable,1,14.95,2019-03-16 12:34:00,105 12th St, Portland,OR,97035 +167138,Apple Airpods Headphones,1,150.0,2019-03-14 15:58:00,219 Main St, Boston,MA,02215 +167139,AAA Batteries (4-pack),1,2.99,2019-03-19 15:34:00,782 Willow St, San Francisco,CA,94016 +167140,Bose SoundSport Headphones,1,99.99,2019-03-15 12:48:00,206 6th St, New York City,NY,10001 +167141,Bose SoundSport Headphones,1,99.99,2019-03-29 11:17:00,871 Ridge St, New York City,NY,10001 +167142,AAA Batteries (4-pack),1,2.99,2019-03-20 09:44:00,452 9th St, Portland,OR,97035 +167143,Bose SoundSport Headphones,1,99.99,2019-03-04 13:16:00,709 Lakeview St, Portland,OR,97035 +167144,AAA Batteries (4-pack),1,2.99,2019-03-01 17:07:00,947 Walnut St, Boston,MA,02215 +167145,Wired Headphones,1,11.99,2019-03-19 14:00:00,817 6th St, San Francisco,CA,94016 +167146,Bose SoundSport Headphones,1,99.99,2019-03-21 22:03:00,861 Willow St, Austin,TX,73301 +167147,iPhone,1,700.0,2019-03-22 21:39:00,218 Willow St, Atlanta,GA,30301 +167148,Apple Airpods Headphones,1,150.0,2019-03-15 12:11:00,835 North St, New York City,NY,10001 +167149,20in Monitor,1,109.99,2019-03-04 01:59:00,241 Meadow St, San Francisco,CA,94016 +167150,LG Dryer,1,600.0,2019-03-30 05:15:00,414 1st St, Austin,TX,73301 +167151,AA Batteries (4-pack),1,3.84,2019-03-13 08:48:00,104 Walnut St, New York City,NY,10001 +167152,USB-C Charging Cable,1,11.95,2019-03-19 13:22:00,189 Adams St, Dallas,TX,75001 +167153,34in Ultrawide Monitor,1,379.99,2019-03-28 20:06:00,129 Jefferson St, Boston,MA,02215 +167154,34in Ultrawide Monitor,1,379.99,2019-03-06 10:40:00,264 Johnson St, San Francisco,CA,94016 +167155,AAA Batteries (4-pack),2,2.99,2019-03-16 19:23:00,319 West St, Dallas,TX,75001 +167156,AAA Batteries (4-pack),2,2.99,2019-03-01 11:44:00,485 4th St, Los Angeles,CA,90001 +167157,USB-C Charging Cable,1,11.95,2019-03-18 11:33:00,924 Center St, San Francisco,CA,94016 +167158,Lightning Charging Cable,1,14.95,2019-03-12 13:33:00,493 13th St, Los Angeles,CA,90001 +167159,Google Phone,1,600.0,2019-03-31 19:52:00,406 Forest St, San Francisco,CA,94016 +167159,AA Batteries (4-pack),1,3.84,2019-03-31 19:52:00,406 Forest St, San Francisco,CA,94016 +167160,Apple Airpods Headphones,1,150.0,2019-03-26 17:34:00,365 West St, San Francisco,CA,94016 +167161,AAA Batteries (4-pack),2,2.99,2019-03-25 21:29:00,268 Forest St, Atlanta,GA,30301 +167162,AA Batteries (4-pack),2,3.84,2019-03-10 22:46:00,833 Spruce St, New York City,NY,10001 +167163,AA Batteries (4-pack),1,3.84,2019-03-03 12:49:00,350 12th St, San Francisco,CA,94016 +167164,USB-C Charging Cable,1,11.95,2019-03-23 00:53:00,400 Hickory St, New York City,NY,10001 +167165,27in FHD Monitor,1,149.99,2019-03-26 23:56:00,749 Chestnut St, Seattle,WA,98101 +167166,Lightning Charging Cable,1,14.95,2019-03-28 00:35:00,199 Pine St, Atlanta,GA,30301 +167167,USB-C Charging Cable,1,11.95,2019-03-18 16:37:00,416 Sunset St, Portland,OR,97035 +167168,AA Batteries (4-pack),1,3.84,2019-03-27 12:14:00,759 6th St, Atlanta,GA,30301 +167169,AA Batteries (4-pack),1,3.84,2019-03-31 13:12:00,256 12th St, San Francisco,CA,94016 +167170,AAA Batteries (4-pack),1,2.99,2019-03-14 14:15:00,529 Church St, San Francisco,CA,94016 +167171,Vareebadd Phone,1,400.0,2019-03-20 19:00:00,992 1st St, New York City,NY,10001 +167172,Wired Headphones,1,11.99,2019-03-03 10:06:00,195 Cherry St, Dallas,TX,75001 +167173,Google Phone,1,600.0,2019-03-29 19:10:00,371 Spruce St, Boston,MA,02215 +167174,Apple Airpods Headphones,1,150.0,2019-03-27 11:04:00,545 South St, Boston,MA,02215 +167175,Lightning Charging Cable,1,14.95,2019-03-13 22:01:00,803 Pine St, San Francisco,CA,94016 +167176,Lightning Charging Cable,1,14.95,2019-03-21 15:20:00,183 Meadow St, Boston,MA,02215 +167177,Apple Airpods Headphones,1,150.0,2019-03-24 15:26:00,510 Meadow St, Los Angeles,CA,90001 +167178,Lightning Charging Cable,1,14.95,2019-03-02 22:26:00,892 Jefferson St, San Francisco,CA,94016 +167179,USB-C Charging Cable,1,11.95,2019-03-05 18:13:00,180 13th St, Atlanta,GA,30301 +167180,Wired Headphones,1,11.99,2019-03-22 11:47:00,700 Ridge St, Portland,ME,04101 +167181,AA Batteries (4-pack),1,3.84,2019-03-16 19:28:00,388 Spruce St, Portland,ME,04101 +167182,Wired Headphones,1,11.99,2019-03-16 21:52:00,708 Washington St, New York City,NY,10001 +167183,Apple Airpods Headphones,1,150.0,2019-03-25 00:42:00,72 5th St, San Francisco,CA,94016 +167184,27in 4K Gaming Monitor,1,389.99,2019-03-20 20:27:00,807 8th St, New York City,NY,10001 +167185,Lightning Charging Cable,1,14.95,2019-03-20 20:49:00,487 10th St, San Francisco,CA,94016 +167186,Apple Airpods Headphones,1,150.0,2019-03-06 16:50:00,663 Chestnut St, San Francisco,CA,94016 +167187,Wired Headphones,1,11.99,2019-03-21 12:28:00,873 Main St, San Francisco,CA,94016 +167188,Lightning Charging Cable,1,14.95,2019-03-20 10:43:00,655 Elm St, San Francisco,CA,94016 +167189,AAA Batteries (4-pack),1,2.99,2019-03-02 13:41:00,903 Adams St, Los Angeles,CA,90001 +167190,Lightning Charging Cable,1,14.95,2019-03-21 19:02:00,495 1st St, Los Angeles,CA,90001 +167191,Lightning Charging Cable,1,14.95,2019-03-22 17:46:00,159 Sunset St, Boston,MA,02215 +167192,Google Phone,1,600.0,2019-03-17 14:09:00,74 South St, Atlanta,GA,30301 +167193,AA Batteries (4-pack),1,3.84,2019-03-09 11:08:00,464 9th St, Austin,TX,73301 +167194,20in Monitor,1,109.99,2019-03-30 14:21:00,491 Lincoln St, San Francisco,CA,94016 +167195,iPhone,1,700.0,2019-03-22 18:35:00,42 Meadow St, Portland,OR,97035 +167196,AA Batteries (4-pack),1,3.84,2019-03-06 23:09:00,517 6th St, Dallas,TX,75001 +167197,USB-C Charging Cable,1,11.95,2019-03-16 00:03:00,789 Sunset St, Dallas,TX,75001 +167198,34in Ultrawide Monitor,1,379.99,2019-03-31 22:35:00,464 South St, New York City,NY,10001 +167199,AA Batteries (4-pack),1,3.84,2019-03-03 17:13:00,417 10th St, Los Angeles,CA,90001 +167200,27in FHD Monitor,1,149.99,2019-03-24 20:57:00,838 2nd St, Los Angeles,CA,90001 +167201,34in Ultrawide Monitor,1,379.99,2019-03-14 15:49:00,643 Pine St, Atlanta,GA,30301 +167202,Bose SoundSport Headphones,1,99.99,2019-03-21 18:31:00,606 Madison St, Los Angeles,CA,90001 +167203,27in 4K Gaming Monitor,1,389.99,2019-03-01 11:12:00,110 Johnson St, New York City,NY,10001 +167204,Flatscreen TV,1,300.0,2019-03-08 19:28:00,156 Maple St, Portland,OR,97035 +167205,AAA Batteries (4-pack),1,2.99,2019-03-10 18:48:00,133 Dogwood St, San Francisco,CA,94016 +167206,20in Monitor,1,109.99,2019-03-07 12:40:00,521 Forest St, Los Angeles,CA,90001 +167207,Wired Headphones,1,11.99,2019-03-17 09:57:00,211 Main St, Atlanta,GA,30301 +167208,Bose SoundSport Headphones,1,99.99,2019-03-27 13:43:00,353 11th St, Portland,ME,04101 +167209,AA Batteries (4-pack),1,3.84,2019-03-18 19:38:00,253 Forest St, San Francisco,CA,94016 +167210,27in FHD Monitor,1,149.99,2019-03-31 14:41:00,246 Center St, Portland,OR,97035 +167211,AAA Batteries (4-pack),1,2.99,2019-03-23 14:29:00,196 Highland St, New York City,NY,10001 +167212,AA Batteries (4-pack),1,3.84,2019-03-26 20:36:00,204 Madison St, Austin,TX,73301 +167213,AA Batteries (4-pack),1,3.84,2019-03-18 20:26:00,823 Johnson St, Dallas,TX,75001 +167214,AAA Batteries (4-pack),3,2.99,2019-03-28 18:39:00,528 9th St, San Francisco,CA,94016 +167215,USB-C Charging Cable,1,11.95,2019-03-19 08:53:00,494 10th St, San Francisco,CA,94016 +167216,Lightning Charging Cable,1,14.95,2019-03-15 23:08:00,498 12th St, Los Angeles,CA,90001 +167217,AAA Batteries (4-pack),1,2.99,2019-03-21 15:28:00,396 Forest St, Seattle,WA,98101 +167218,ThinkPad Laptop,1,999.99,2019-03-06 17:32:00,153 Madison St, Los Angeles,CA,90001 +167219,AA Batteries (4-pack),1,3.84,2019-03-30 16:18:00,308 Johnson St, New York City,NY,10001 +167220,AA Batteries (4-pack),1,3.84,2019-03-30 21:36:00,853 Spruce St, Portland,OR,97035 +167220,iPhone,1,700.0,2019-03-30 21:36:00,853 Spruce St, Portland,OR,97035 +167221,27in 4K Gaming Monitor,1,389.99,2019-03-17 17:53:00,234 12th St, San Francisco,CA,94016 +167222,AAA Batteries (4-pack),2,2.99,2019-03-30 15:36:00,662 Center St, New York City,NY,10001 +167222,ThinkPad Laptop,1,999.99,2019-03-30 15:36:00,662 Center St, New York City,NY,10001 +167223,Lightning Charging Cable,1,14.95,2019-03-29 22:36:00,300 Madison St, Atlanta,GA,30301 +167224,Wired Headphones,1,11.99,2019-03-07 22:05:00,21 Ridge St, New York City,NY,10001 +167225,LG Dryer,1,600.0,2019-03-10 23:02:00,809 West St, San Francisco,CA,94016 +167226,Vareebadd Phone,1,400.0,2019-03-05 19:01:00,978 Meadow St, Portland,OR,97035 +167227,27in 4K Gaming Monitor,1,389.99,2019-03-18 19:19:00,884 Spruce St, Los Angeles,CA,90001 +167228,Lightning Charging Cable,1,14.95,2019-03-19 19:33:00,860 Lakeview St, Portland,OR,97035 +167229,Bose SoundSport Headphones,1,99.99,2019-03-08 21:23:00,565 Ridge St, San Francisco,CA,94016 +167230,ThinkPad Laptop,1,999.99,2019-03-19 11:56:00,53 Hill St, New York City,NY,10001 +167231,AAA Batteries (4-pack),1,2.99,2019-04-01 01:19:00,689 Hill St, San Francisco,CA,94016 +167232,AA Batteries (4-pack),1,3.84,2019-03-27 19:16:00,181 Park St, San Francisco,CA,94016 +167233,Apple Airpods Headphones,1,150.0,2019-03-11 01:14:00,886 Lake St, Portland,OR,97035 +167234,Wired Headphones,1,11.99,2019-03-24 22:00:00,460 Church St, Los Angeles,CA,90001 +167235,LG Dryer,1,600.0,2019-03-19 22:25:00,146 Willow St, San Francisco,CA,94016 +167236,AAA Batteries (4-pack),1,2.99,2019-03-15 19:15:00,505 Main St, Portland,OR,97035 +167237,27in FHD Monitor,1,149.99,2019-03-03 19:41:00,781 Meadow St, Boston,MA,02215 +167238,Lightning Charging Cable,1,14.95,2019-03-23 19:57:00,404 6th St, Boston,MA,02215 +167239,Bose SoundSport Headphones,1,99.99,2019-03-12 12:07:00,893 6th St, New York City,NY,10001 +167240,Google Phone,1,600.0,2019-03-06 10:26:00,790 Highland St, San Francisco,CA,94016 +167241,AAA Batteries (4-pack),1,2.99,2019-03-04 15:24:00,999 10th St, Boston,MA,02215 +167242,AA Batteries (4-pack),1,3.84,2019-03-19 19:01:00,123 10th St, New York City,NY,10001 +167243,AAA Batteries (4-pack),1,2.99,2019-03-07 03:00:00,797 Hickory St, New York City,NY,10001 +167244,Vareebadd Phone,1,400.0,2019-03-17 12:38:00,920 Sunset St, San Francisco,CA,94016 +167245,AAA Batteries (4-pack),1,2.99,2019-03-05 17:08:00,194 Elm St, Boston,MA,02215 +167246,Bose SoundSport Headphones,1,99.99,2019-03-15 12:41:00,486 4th St, New York City,NY,10001 +167247,AA Batteries (4-pack),2,3.84,2019-03-26 14:43:00,218 Cedar St, Seattle,WA,98101 +167248,AAA Batteries (4-pack),2,2.99,2019-03-03 16:54:00,621 Willow St, Dallas,TX,75001 +167249,Wired Headphones,1,11.99,2019-03-30 23:02:00,268 7th St, New York City,NY,10001 +167250,20in Monitor,1,109.99,2019-03-26 20:45:00,302 8th St, San Francisco,CA,94016 +167251,AA Batteries (4-pack),1,3.84,2019-03-01 12:06:00,242 Elm St, Atlanta,GA,30301 +167252,Apple Airpods Headphones,1,150.0,2019-03-24 09:43:00,177 Spruce St, Austin,TX,73301 +167253,Apple Airpods Headphones,1,150.0,2019-03-16 18:31:00,181 Maple St, Seattle,WA,98101 +167254,Apple Airpods Headphones,1,150.0,2019-03-24 11:31:00,379 West St, New York City,NY,10001 +167255,USB-C Charging Cable,1,11.95,2019-03-15 17:50:00,487 Spruce St, San Francisco,CA,94016 +167256,AA Batteries (4-pack),1,3.84,2019-03-15 22:22:00,693 South St, Portland,OR,97035 +167257,AAA Batteries (4-pack),1,2.99,2019-03-15 11:03:00,820 Lake St, San Francisco,CA,94016 +167258,Google Phone,1,600.0,2019-03-28 13:20:00,520 Washington St, San Francisco,CA,94016 +167258,USB-C Charging Cable,1,11.95,2019-03-28 13:20:00,520 Washington St, San Francisco,CA,94016 +167259,Lightning Charging Cable,1,14.95,2019-03-02 07:03:00,678 8th St, Los Angeles,CA,90001 +167260,Apple Airpods Headphones,1,150.0,2019-03-22 21:25:00,431 Ridge St, Seattle,WA,98101 +167261,Google Phone,1,600.0,2019-03-22 14:42:00,900 West St, New York City,NY,10001 +167261,USB-C Charging Cable,1,11.95,2019-03-22 14:42:00,900 West St, New York City,NY,10001 +167261,Wired Headphones,1,11.99,2019-03-22 14:42:00,900 West St, New York City,NY,10001 +167262,Apple Airpods Headphones,1,150.0,2019-03-03 18:46:00,447 Willow St, Boston,MA,02215 +167263,AA Batteries (4-pack),1,3.84,2019-03-08 11:36:00,971 Jefferson St, San Francisco,CA,94016 +167264,AA Batteries (4-pack),1,3.84,2019-03-22 02:27:00,857 Jefferson St, Los Angeles,CA,90001 +167265,USB-C Charging Cable,1,11.95,2019-03-06 13:48:00,630 West St, Boston,MA,02215 +167266,27in FHD Monitor,1,149.99,2019-03-08 20:13:00,512 Walnut St, Boston,MA,02215 +167267,AAA Batteries (4-pack),2,2.99,2019-03-25 13:52:00,362 Lakeview St, Boston,MA,02215 +167268,AA Batteries (4-pack),1,3.84,2019-03-25 17:36:00,692 Adams St, Atlanta,GA,30301 +167269,Lightning Charging Cable,1,14.95,2019-03-17 11:24:00,846 14th St, New York City,NY,10001 +167270,Wired Headphones,1,11.99,2019-03-07 14:19:00,584 Hickory St, Dallas,TX,75001 +167271,27in FHD Monitor,1,149.99,2019-03-06 20:23:00,507 1st St, Dallas,TX,75001 +167272,Lightning Charging Cable,1,14.95,2019-03-17 12:44:00,739 7th St, Dallas,TX,75001 +167273,USB-C Charging Cable,1,11.95,2019-03-06 19:29:00,715 Walnut St, Los Angeles,CA,90001 +167274,AAA Batteries (4-pack),1,2.99,2019-03-05 21:19:00,146 Hill St, Austin,TX,73301 +167275,iPhone,1,700.0,2019-03-30 14:32:00,227 Sunset St, Seattle,WA,98101 +167275,ThinkPad Laptop,1,999.99,2019-03-30 14:32:00,227 Sunset St, Seattle,WA,98101 +167276,Flatscreen TV,1,300.0,2019-03-12 13:08:00,63 Wilson St, Los Angeles,CA,90001 +167277,Wired Headphones,1,11.99,2019-03-21 19:56:00,604 Cedar St, Austin,TX,73301 +167278,AAA Batteries (4-pack),1,2.99,2019-03-31 10:41:00,426 Ridge St, San Francisco,CA,94016 +167279,Wired Headphones,1,11.99,2019-03-10 22:48:00,778 Main St, Los Angeles,CA,90001 +167280,Apple Airpods Headphones,1,150.0,2019-03-29 14:39:00,483 North St, Seattle,WA,98101 +167281,AA Batteries (4-pack),2,3.84,2019-03-19 22:00:00,916 Adams St, Atlanta,GA,30301 +167282,Wired Headphones,1,11.99,2019-03-16 19:58:00,634 Adams St, Atlanta,GA,30301 +167283,27in FHD Monitor,1,149.99,2019-03-17 17:25:00,542 8th St, Dallas,TX,75001 +167284,Vareebadd Phone,1,400.0,2019-03-06 19:33:00,977 River St, San Francisco,CA,94016 +167284,USB-C Charging Cable,1,11.95,2019-03-06 19:33:00,977 River St, San Francisco,CA,94016 +167285,AA Batteries (4-pack),2,3.84,2019-03-19 21:19:00,997 Highland St, New York City,NY,10001 +167286,ThinkPad Laptop,1,999.99,2019-03-01 14:14:00,822 Church St, Atlanta,GA,30301 +167287,Apple Airpods Headphones,1,150.0,2019-03-04 16:05:00,342 5th St, Los Angeles,CA,90001 +167288,AA Batteries (4-pack),1,3.84,2019-03-20 08:41:00,747 Lakeview St, New York City,NY,10001 +167289,AA Batteries (4-pack),2,3.84,2019-03-05 01:04:00,963 Adams St, Austin,TX,73301 +167290,AA Batteries (4-pack),2,3.84,2019-03-23 10:16:00,796 1st St, Atlanta,GA,30301 +167291,Flatscreen TV,1,300.0,2019-03-05 08:50:00,308 Forest St, Los Angeles,CA,90001 +167292,Bose SoundSport Headphones,1,99.99,2019-03-10 00:10:00,456 Main St, San Francisco,CA,94016 +167293,Macbook Pro Laptop,1,1700.0,2019-03-30 17:54:00,790 Adams St, Portland,OR,97035 +167294,iPhone,1,700.0,2019-03-04 01:01:00,762 Maple St, San Francisco,CA,94016 +167294,Wired Headphones,1,11.99,2019-03-04 01:01:00,762 Maple St, San Francisco,CA,94016 +167295,Wired Headphones,1,11.99,2019-03-25 19:18:00,50 Lake St, New York City,NY,10001 +167296,Apple Airpods Headphones,1,150.0,2019-03-13 14:04:00,929 Washington St, New York City,NY,10001 +167297,Wired Headphones,1,11.99,2019-03-01 10:25:00,180 Spruce St, Los Angeles,CA,90001 +167298,Apple Airpods Headphones,1,150.0,2019-03-03 14:14:00,904 10th St, San Francisco,CA,94016 +167299,Flatscreen TV,1,300.0,2019-03-28 15:07:00,158 Willow St, Boston,MA,02215 +167300,Apple Airpods Headphones,1,150.0,2019-03-19 15:38:00,426 Washington St, Dallas,TX,75001 +167301,Apple Airpods Headphones,1,150.0,2019-03-21 10:52:00,463 North St, New York City,NY,10001 +167302,Wired Headphones,1,11.99,2019-03-11 18:23:00,975 1st St, Seattle,WA,98101 +167303,Bose SoundSport Headphones,1,99.99,2019-03-06 15:10:00,753 4th St, New York City,NY,10001 +167304,USB-C Charging Cable,1,11.95,2019-03-07 21:32:00,925 Lakeview St, Dallas,TX,75001 +167305,USB-C Charging Cable,1,11.95,2019-03-12 09:13:00,330 Madison St, New York City,NY,10001 +167306,Wired Headphones,1,11.99,2019-03-04 10:36:00,451 13th St, San Francisco,CA,94016 +167307,Lightning Charging Cable,1,14.95,2019-03-02 11:17:00,14 Highland St, Austin,TX,73301 +167308,27in 4K Gaming Monitor,1,389.99,2019-03-11 19:55:00,473 7th St, San Francisco,CA,94016 +167309,Lightning Charging Cable,1,14.95,2019-03-31 11:47:00,667 Meadow St, Seattle,WA,98101 +167310,34in Ultrawide Monitor,1,379.99,2019-03-21 09:58:00,156 Jefferson St, Dallas,TX,75001 +167311,iPhone,1,700.0,2019-03-24 17:36:00,980 Main St, Atlanta,GA,30301 +167312,Bose SoundSport Headphones,1,99.99,2019-03-06 16:07:00,181 10th St, New York City,NY,10001 +167313,Bose SoundSport Headphones,1,99.99,2019-03-03 20:18:00,805 Washington St, Dallas,TX,75001 +167314,AA Batteries (4-pack),1,3.84,2019-03-28 18:19:00,220 Dogwood St, Dallas,TX,75001 +167315,AA Batteries (4-pack),1,3.84,2019-03-23 16:57:00,456 Cedar St, Austin,TX,73301 +167316,Flatscreen TV,1,300.0,2019-03-02 14:07:00,436 9th St, Boston,MA,02215 +167317,Apple Airpods Headphones,1,150.0,2019-03-30 14:19:00,555 Jefferson St, Boston,MA,02215 +167318,Wired Headphones,4,11.99,2019-03-16 17:09:00,462 13th St, Austin,TX,73301 +167319,Wired Headphones,1,11.99,2019-03-15 22:50:00,510 Highland St, Boston,MA,02215 +167320,AAA Batteries (4-pack),1,2.99,2019-03-15 09:40:00,15 Cherry St, San Francisco,CA,94016 +167321,Vareebadd Phone,1,400.0,2019-03-26 00:13:00,689 Washington St, Austin,TX,73301 +167322,Wired Headphones,1,11.99,2019-03-31 20:00:00,381 Washington St, Seattle,WA,98101 +167323,34in Ultrawide Monitor,1,379.99,2019-03-14 09:14:00,252 Park St, Dallas,TX,75001 +167324,AA Batteries (4-pack),1,3.84,2019-03-12 18:33:00,308 Elm St, New York City,NY,10001 +167324,Lightning Charging Cable,1,14.95,2019-03-12 18:33:00,308 Elm St, New York City,NY,10001 +167325,Wired Headphones,1,11.99,2019-03-13 21:50:00,97 Adams St, New York City,NY,10001 +167326,Flatscreen TV,1,300.0,2019-03-20 21:34:00,119 Madison St, Seattle,WA,98101 +167327,Lightning Charging Cable,1,14.95,2019-03-13 09:03:00,104 9th St, New York City,NY,10001 +167328,USB-C Charging Cable,1,11.95,2019-03-07 19:14:00,603 Sunset St, Los Angeles,CA,90001 +167329,Bose SoundSport Headphones,1,99.99,2019-03-09 17:54:00,825 6th St, San Francisco,CA,94016 +167330,Lightning Charging Cable,1,14.95,2019-03-11 18:09:00,376 Lincoln St, Austin,TX,73301 +167331,AAA Batteries (4-pack),1,2.99,2019-03-14 17:32:00,146 6th St, Boston,MA,02215 +167332,27in 4K Gaming Monitor,1,389.99,2019-03-27 17:11:00,925 Walnut St, Dallas,TX,75001 +167333,27in 4K Gaming Monitor,1,389.99,2019-03-03 10:27:00,717 Church St, Dallas,TX,75001 +167334,34in Ultrawide Monitor,1,379.99,2019-03-20 17:02:00,852 Johnson St, San Francisco,CA,94016 +167335,27in 4K Gaming Monitor,1,389.99,2019-03-31 14:23:00,338 5th St, New York City,NY,10001 +167336,Wired Headphones,1,11.99,2019-03-27 10:46:00,340 Madison St, San Francisco,CA,94016 +167337,27in 4K Gaming Monitor,1,389.99,2019-03-15 12:38:00,374 Adams St, Austin,TX,73301 +167338,34in Ultrawide Monitor,1,379.99,2019-03-08 17:51:00,457 Willow St, Los Angeles,CA,90001 +167339,Lightning Charging Cable,2,14.95,2019-03-23 16:40:00,748 South St, New York City,NY,10001 +167340,Bose SoundSport Headphones,1,99.99,2019-03-13 19:29:00,651 Elm St, San Francisco,CA,94016 +167341,Apple Airpods Headphones,1,150.0,2019-03-14 15:21:00,266 Lincoln St, Los Angeles,CA,90001 +167342,ThinkPad Laptop,1,999.99,2019-03-27 13:17:00,267 Washington St, Dallas,TX,75001 +167343,Apple Airpods Headphones,1,150.0,2019-03-02 16:19:00,257 5th St, New York City,NY,10001 +167344,Bose SoundSport Headphones,1,99.99,2019-03-27 21:00:00,912 6th St, Los Angeles,CA,90001 +167345,20in Monitor,1,109.99,2019-03-03 19:09:00,11 5th St, Los Angeles,CA,90001 +167346,AA Batteries (4-pack),1,3.84,2019-03-15 09:17:00,806 Center St, Los Angeles,CA,90001 +167347,27in FHD Monitor,1,149.99,2019-03-20 11:56:00,774 Church St, Seattle,WA,98101 +167348,Bose SoundSport Headphones,1,99.99,2019-03-07 18:50:00,661 13th St, Boston,MA,02215 +167348,AA Batteries (4-pack),1,3.84,2019-03-07 18:50:00,661 13th St, Boston,MA,02215 +167349,27in FHD Monitor,1,149.99,2019-03-29 12:45:00,95 Jefferson St, Seattle,WA,98101 +167350,AA Batteries (4-pack),2,3.84,2019-03-24 13:54:00,61 4th St, Seattle,WA,98101 +167351,27in 4K Gaming Monitor,1,389.99,2019-03-04 07:48:00,409 West St, Boston,MA,02215 +167352,Wired Headphones,1,11.99,2019-03-13 18:03:00,598 Jackson St, New York City,NY,10001 +167353,AAA Batteries (4-pack),1,2.99,2019-03-20 21:53:00,557 Lakeview St, Los Angeles,CA,90001 +167354,USB-C Charging Cable,1,11.95,2019-03-19 09:42:00,118 Washington St, Atlanta,GA,30301 +167355,Macbook Pro Laptop,1,1700.0,2019-03-01 10:14:00,399 Pine St, Los Angeles,CA,90001 +167356,Wired Headphones,1,11.99,2019-03-06 15:18:00,508 West St, Seattle,WA,98101 +167357,Apple Airpods Headphones,1,150.0,2019-03-11 20:49:00,62 Forest St, New York City,NY,10001 +167358,iPhone,1,700.0,2019-03-19 09:35:00,606 Maple St, New York City,NY,10001 +167359,Flatscreen TV,1,300.0,2019-03-07 22:02:00,110 13th St, Austin,TX,73301 +167360,iPhone,1,700.0,2019-03-12 23:13:00,392 North St, San Francisco,CA,94016 +167360,Wired Headphones,1,11.99,2019-03-12 23:13:00,392 North St, San Francisco,CA,94016 +167361,34in Ultrawide Monitor,1,379.99,2019-03-27 18:54:00,971 Lake St, San Francisco,CA,94016 +167362,27in FHD Monitor,1,149.99,2019-03-22 22:54:00,559 Main St, Dallas,TX,75001 +167363,27in FHD Monitor,1,149.99,2019-03-01 19:09:00,989 5th St, Los Angeles,CA,90001 +167364,Apple Airpods Headphones,1,150.0,2019-03-25 15:49:00,616 10th St, San Francisco,CA,94016 +167365,Google Phone,1,600.0,2019-03-21 07:51:00,899 7th St, San Francisco,CA,94016 +167366,27in 4K Gaming Monitor,1,389.99,2019-03-14 21:27:00,10 4th St, Los Angeles,CA,90001 +167367,Apple Airpods Headphones,1,150.0,2019-03-10 18:21:00,176 Park St, Los Angeles,CA,90001 +167368,Wired Headphones,1,11.99,2019-03-09 12:22:00,686 9th St, Dallas,TX,75001 +167369,iPhone,1,700.0,2019-03-22 05:30:00,626 Dogwood St, Atlanta,GA,30301 +167370,AAA Batteries (4-pack),1,2.99,2019-03-11 19:57:00,132 Johnson St, New York City,NY,10001 +167371,Lightning Charging Cable,3,14.95,2019-03-03 16:03:00,916 Highland St, Atlanta,GA,30301 +167372,Macbook Pro Laptop,1,1700.0,2019-03-31 22:25:00,225 Maple St, Boston,MA,02215 +167373,AAA Batteries (4-pack),1,2.99,2019-03-25 10:50:00,832 14th St, Austin,TX,73301 +167374,Flatscreen TV,1,300.0,2019-03-27 08:02:00,57 Maple St, New York City,NY,10001 +167375,27in FHD Monitor,1,149.99,2019-03-07 07:07:00,482 Lincoln St, San Francisco,CA,94016 +167376,34in Ultrawide Monitor,1,379.99,2019-03-31 18:48:00,301 5th St, Boston,MA,02215 +167377,27in 4K Gaming Monitor,1,389.99,2019-03-28 09:19:00,68 Washington St, Atlanta,GA,30301 +167378,Apple Airpods Headphones,1,150.0,2019-03-28 14:19:00,942 Jackson St, Dallas,TX,75001 +167379,USB-C Charging Cable,1,11.95,2019-03-02 18:35:00,680 6th St, New York City,NY,10001 +167380,Bose SoundSport Headphones,1,99.99,2019-03-14 11:39:00,424 1st St, Portland,OR,97035 +167381,Apple Airpods Headphones,1,150.0,2019-03-03 21:44:00,342 South St, Dallas,TX,75001 +167382,Flatscreen TV,1,300.0,2019-03-29 04:54:00,523 Sunset St, San Francisco,CA,94016 +167383,USB-C Charging Cable,1,11.95,2019-03-12 12:00:00,259 Jackson St, San Francisco,CA,94016 +167384,Bose SoundSport Headphones,2,99.99,2019-03-26 12:05:00,875 Center St, San Francisco,CA,94016 +167385,AAA Batteries (4-pack),3,2.99,2019-03-13 13:56:00,323 Cherry St, Seattle,WA,98101 +167386,20in Monitor,1,109.99,2019-03-10 18:35:00,423 Jackson St, San Francisco,CA,94016 +167387,Wired Headphones,1,11.99,2019-03-06 11:01:00,241 Cherry St, Boston,MA,02215 +167388,Apple Airpods Headphones,1,150.0,2019-03-24 17:34:00,117 Dogwood St, Boston,MA,02215 +167388,27in 4K Gaming Monitor,1,389.99,2019-03-24 17:34:00,117 Dogwood St, Boston,MA,02215 +167389,Wired Headphones,1,11.99,2019-03-12 18:35:00,631 Willow St, Austin,TX,73301 +167390,AAA Batteries (4-pack),1,2.99,2019-03-02 08:26:00,484 Walnut St, Atlanta,GA,30301 +167391,iPhone,1,700.0,2019-03-02 15:47:00,2 Lakeview St, New York City,NY,10001 +167392,AAA Batteries (4-pack),1,2.99,2019-03-26 16:11:00,102 South St, New York City,NY,10001 +167393,Lightning Charging Cable,1,14.95,2019-03-29 09:27:00,79 2nd St, New York City,NY,10001 +167394,34in Ultrawide Monitor,1,379.99,2019-03-07 19:27:00,796 Sunset St, Los Angeles,CA,90001 +167395,USB-C Charging Cable,1,11.95,2019-03-16 15:43:00,80 Center St, Atlanta,GA,30301 +167396,USB-C Charging Cable,2,11.95,2019-03-09 14:05:00,876 Hill St, Los Angeles,CA,90001 +167397,Macbook Pro Laptop,1,1700.0,2019-03-22 12:49:00,130 Center St, New York City,NY,10001 +167398,AA Batteries (4-pack),1,3.84,2019-03-20 20:19:00,7 Lincoln St, Los Angeles,CA,90001 +167399,USB-C Charging Cable,1,11.95,2019-03-24 15:09:00,977 Lakeview St, Dallas,TX,75001 +167400,USB-C Charging Cable,1,11.95,2019-03-09 23:02:00,10 12th St, San Francisco,CA,94016 +167401,USB-C Charging Cable,1,11.95,2019-03-17 00:08:00,723 River St, Boston,MA,02215 +167402,Apple Airpods Headphones,1,150.0,2019-03-14 19:22:00,567 Park St, New York City,NY,10001 +167403,Macbook Pro Laptop,1,1700.0,2019-03-13 07:41:00,343 Sunset St, Boston,MA,02215 +167404,AAA Batteries (4-pack),3,2.99,2019-03-12 03:38:00,406 River St, New York City,NY,10001 +167405,Lightning Charging Cable,2,14.95,2019-03-07 10:07:00,119 Center St, Boston,MA,02215 +167406,USB-C Charging Cable,1,11.95,2019-03-08 18:03:00,549 9th St, San Francisco,CA,94016 +167407,27in FHD Monitor,1,149.99,2019-03-11 10:04:00,898 Meadow St, Dallas,TX,75001 +167408,Lightning Charging Cable,1,14.95,2019-03-28 21:53:00,397 Forest St, Seattle,WA,98101 +167409,AA Batteries (4-pack),1,3.84,2019-03-06 19:23:00,528 6th St, San Francisco,CA,94016 +167410,Lightning Charging Cable,1,14.95,2019-03-08 04:37:00,566 Highland St, San Francisco,CA,94016 +167411,Wired Headphones,1,11.99,2019-03-24 17:20:00,963 1st St, Los Angeles,CA,90001 +167412,USB-C Charging Cable,1,11.95,2019-03-20 12:16:00,991 8th St, Boston,MA,02215 +167413,Lightning Charging Cable,1,14.95,2019-03-06 17:09:00,502 Johnson St, Dallas,TX,75001 +167414,AAA Batteries (4-pack),1,2.99,2019-03-29 18:59:00,409 6th St, Austin,TX,73301 +167415,27in FHD Monitor,1,149.99,2019-03-06 12:27:00,26 Walnut St, Dallas,TX,75001 +167416,AAA Batteries (4-pack),2,2.99,2019-03-13 22:13:00,551 7th St, Boston,MA,02215 +167417,ThinkPad Laptop,1,999.99,2019-03-26 13:23:00,36 Willow St, San Francisco,CA,94016 +167418,Macbook Pro Laptop,1,1700.0,2019-03-18 09:01:00,463 11th St, Dallas,TX,75001 +167419,AA Batteries (4-pack),1,3.84,2019-03-18 13:32:00,297 Elm St, San Francisco,CA,94016 +167420,Bose SoundSport Headphones,1,99.99,2019-03-29 21:15:00,82 Ridge St, New York City,NY,10001 +167421,Apple Airpods Headphones,1,150.0,2019-03-12 00:05:00,410 River St, Seattle,WA,98101 +167422,AAA Batteries (4-pack),1,2.99,2019-03-09 17:06:00,801 Ridge St, Boston,MA,02215 +167423,Lightning Charging Cable,1,14.95,2019-03-25 22:01:00,279 West St, Boston,MA,02215 +167424,USB-C Charging Cable,1,11.95,2019-03-18 15:13:00,611 Lakeview St, San Francisco,CA,94016 +167425,Vareebadd Phone,1,400.0,2019-03-22 12:25:00,174 Ridge St, San Francisco,CA,94016 +167426,Bose SoundSport Headphones,1,99.99,2019-03-17 22:36:00,236 10th St, Boston,MA,02215 +167427,Wired Headphones,1,11.99,2019-03-22 18:06:00,18 Walnut St, Los Angeles,CA,90001 +167428,AAA Batteries (4-pack),2,2.99,2019-03-23 13:29:00,492 Lakeview St, New York City,NY,10001 +167429,Lightning Charging Cable,1,14.95,2019-03-27 05:05:00,430 Lake St, San Francisco,CA,94016 +167430,Lightning Charging Cable,1,14.95,2019-03-06 19:42:00,900 14th St, Dallas,TX,75001 +167431,Lightning Charging Cable,1,14.95,2019-03-19 20:47:00,904 Meadow St, Portland,ME,04101 +167432,34in Ultrawide Monitor,1,379.99,2019-03-24 19:14:00,515 Cedar St, Dallas,TX,75001 +167433,27in 4K Gaming Monitor,1,389.99,2019-03-15 07:48:00,391 2nd St, Atlanta,GA,30301 +167433,Lightning Charging Cable,1,14.95,2019-03-15 07:48:00,391 2nd St, Atlanta,GA,30301 +167434,Apple Airpods Headphones,1,150.0,2019-03-19 07:28:00,836 West St, San Francisco,CA,94016 +167435,USB-C Charging Cable,2,11.95,2019-03-31 08:52:00,608 Wilson St, San Francisco,CA,94016 +167436,Bose SoundSport Headphones,1,99.99,2019-03-02 20:03:00,13 Main St, Portland,OR,97035 +167437,USB-C Charging Cable,1,11.95,2019-03-08 19:06:00,713 1st St, San Francisco,CA,94016 +167438,USB-C Charging Cable,1,11.95,2019-03-15 11:47:00,115 2nd St, San Francisco,CA,94016 +167439,Lightning Charging Cable,1,14.95,2019-03-23 14:00:00,39 South St, Boston,MA,02215 +167440,Lightning Charging Cable,1,14.95,2019-03-23 20:24:00,512 Washington St, Los Angeles,CA,90001 +167441,27in 4K Gaming Monitor,1,389.99,2019-03-11 16:31:00,384 Lakeview St, Dallas,TX,75001 +167441,Flatscreen TV,1,300.0,2019-03-11 16:31:00,384 Lakeview St, Dallas,TX,75001 +167442,Wired Headphones,1,11.99,2019-03-24 19:56:00,997 1st St, San Francisco,CA,94016 +167443,AA Batteries (4-pack),1,3.84,2019-03-05 09:44:00,944 Park St, San Francisco,CA,94016 +167444,Wired Headphones,1,11.99,2019-03-10 18:44:00,20 2nd St, Atlanta,GA,30301 +167445,Wired Headphones,1,11.99,2019-03-11 20:45:00,137 Pine St, Portland,OR,97035 +167446,AA Batteries (4-pack),1,3.84,2019-03-29 17:11:00,465 Cherry St, San Francisco,CA,94016 +167447,iPhone,1,700.0,2019-03-24 23:17:00,707 Washington St, Boston,MA,02215 +167447,Wired Headphones,1,11.99,2019-03-24 23:17:00,707 Washington St, Boston,MA,02215 +167448,Flatscreen TV,1,300.0,2019-03-03 20:41:00,918 Lake St, New York City,NY,10001 +167449,Lightning Charging Cable,1,14.95,2019-03-05 11:44:00,484 River St, Seattle,WA,98101 +167450,Apple Airpods Headphones,1,150.0,2019-03-12 12:49:00,712 Elm St, Austin,TX,73301 +167451,Wired Headphones,1,11.99,2019-03-21 15:53:00,306 1st St, San Francisco,CA,94016 +167452,AA Batteries (4-pack),1,3.84,2019-03-02 11:32:00,93 13th St, New York City,NY,10001 +167453,Lightning Charging Cable,1,14.95,2019-03-05 06:58:00,389 Main St, Portland,OR,97035 +167454,27in 4K Gaming Monitor,1,389.99,2019-03-04 12:00:00,611 Wilson St, Austin,TX,73301 +167455,Apple Airpods Headphones,1,150.0,2019-03-23 00:19:00,478 Park St, Atlanta,GA,30301 +167456,AAA Batteries (4-pack),1,2.99,2019-03-30 23:20:00,732 7th St, San Francisco,CA,94016 +167457,ThinkPad Laptop,1,999.99,2019-03-29 15:07:00,867 12th St, Los Angeles,CA,90001 +167458,Apple Airpods Headphones,1,150.0,2019-03-03 17:54:00,176 5th St, Boston,MA,02215 +167459,ThinkPad Laptop,1,999.99,2019-03-26 11:59:00,659 Lakeview St, Atlanta,GA,30301 +167460,AAA Batteries (4-pack),2,2.99,2019-03-06 19:19:00,142 Jackson St, San Francisco,CA,94016 +167461,34in Ultrawide Monitor,1,379.99,2019-03-30 19:32:00,241 2nd St, Atlanta,GA,30301 +167462,Lightning Charging Cable,1,14.95,2019-03-14 01:28:00,527 Forest St, Austin,TX,73301 +167463,AA Batteries (4-pack),2,3.84,2019-03-08 13:39:00,835 Hickory St, Seattle,WA,98101 +167464,20in Monitor,1,109.99,2019-03-19 18:59:00,791 10th St, Dallas,TX,75001 +167465,AA Batteries (4-pack),1,3.84,2019-03-23 20:53:00,765 2nd St, Dallas,TX,75001 +167466,USB-C Charging Cable,1,11.95,2019-03-10 00:43:00,654 Jackson St, Dallas,TX,75001 +167467,Google Phone,1,600.0,2019-03-18 10:13:00,190 Wilson St, Atlanta,GA,30301 +167468,Apple Airpods Headphones,1,150.0,2019-03-31 11:24:00,697 Hill St, Atlanta,GA,30301 +167469,Google Phone,1,600.0,2019-03-03 11:22:00,603 Highland St, New York City,NY,10001 +167469,USB-C Charging Cable,1,11.95,2019-03-03 11:22:00,603 Highland St, New York City,NY,10001 +167470,AA Batteries (4-pack),1,3.84,2019-03-22 18:16:00,22 Cherry St, Los Angeles,CA,90001 +167471,27in FHD Monitor,1,149.99,2019-03-04 20:39:00,935 Maple St, San Francisco,CA,94016 +167472,AA Batteries (4-pack),1,3.84,2019-03-30 11:28:00,25 Willow St, Portland,OR,97035 +167473,Macbook Pro Laptop,1,1700.0,2019-03-18 07:18:00,833 Park St, Dallas,TX,75001 +167474,Wired Headphones,1,11.99,2019-03-06 19:55:00,278 Jackson St, Austin,TX,73301 +167475,iPhone,1,700.0,2019-03-25 12:37:00,400 Lincoln St, San Francisco,CA,94016 +167476,Bose SoundSport Headphones,1,99.99,2019-03-28 19:18:00,923 Maple St, Dallas,TX,75001 +167477,AA Batteries (4-pack),1,3.84,2019-03-14 19:15:00,780 Meadow St, Boston,MA,02215 +167478,Google Phone,1,600.0,2019-03-02 07:46:00,426 North St, Boston,MA,02215 +167479,Wired Headphones,1,11.99,2019-03-15 17:45:00,323 13th St, Atlanta,GA,30301 +167480,Lightning Charging Cable,1,14.95,2019-03-07 20:05:00,86 Adams St, New York City,NY,10001 +167481,Lightning Charging Cable,1,14.95,2019-03-23 10:12:00,360 Forest St, Seattle,WA,98101 +167482,USB-C Charging Cable,1,11.95,2019-03-01 16:36:00,249 Center St, Atlanta,GA,30301 +167483,Bose SoundSport Headphones,1,99.99,2019-03-23 22:16:00,934 1st St, San Francisco,CA,94016 +167484,27in FHD Monitor,1,149.99,2019-03-11 14:52:00,790 Pine St, Boston,MA,02215 +167485,LG Washing Machine,1,600.0,2019-03-31 23:28:00,549 Ridge St, San Francisco,CA,94016 +167486,AAA Batteries (4-pack),1,2.99,2019-03-27 00:02:00,826 7th St, New York City,NY,10001 +167487,AAA Batteries (4-pack),4,2.99,2019-03-13 07:22:00,218 Madison St, Los Angeles,CA,90001 +167488,iPhone,1,700.0,2019-03-19 18:21:00,687 Elm St, New York City,NY,10001 +167488,Lightning Charging Cable,1,14.95,2019-03-19 18:21:00,687 Elm St, New York City,NY,10001 +167489,Apple Airpods Headphones,1,150.0,2019-03-10 11:47:00,352 8th St, San Francisco,CA,94016 +167490,LG Dryer,1,600.0,2019-03-02 14:32:00,565 Jackson St, San Francisco,CA,94016 +167491,USB-C Charging Cable,1,11.95,2019-03-29 15:03:00,430 5th St, Portland,OR,97035 +167492,Bose SoundSport Headphones,1,99.99,2019-03-19 12:11:00,628 Wilson St, Atlanta,GA,30301 +167493,Bose SoundSport Headphones,1,99.99,2019-03-21 14:50:00,324 Jackson St, San Francisco,CA,94016 +167494,USB-C Charging Cable,1,11.95,2019-03-16 19:36:00,998 West St, Los Angeles,CA,90001 +167495,ThinkPad Laptop,1,999.99,2019-03-27 10:16:00,524 Walnut St, Dallas,TX,75001 +167496,34in Ultrawide Monitor,1,379.99,2019-03-27 16:13:00,569 14th St, Seattle,WA,98101 +167497,AAA Batteries (4-pack),2,2.99,2019-03-29 10:41:00,351 Highland St, Los Angeles,CA,90001 +167498,Wired Headphones,1,11.99,2019-03-17 10:46:00,465 Main St, Portland,OR,97035 +167499,34in Ultrawide Monitor,1,379.99,2019-03-11 08:56:00,766 12th St, Portland,OR,97035 +167500,AA Batteries (4-pack),1,3.84,2019-03-27 10:07:00,774 Spruce St, Los Angeles,CA,90001 +167501,Bose SoundSport Headphones,1,99.99,2019-03-20 18:59:00,525 14th St, New York City,NY,10001 +167502,27in FHD Monitor,1,149.99,2019-03-12 13:38:00,60 6th St, Atlanta,GA,30301 +167503,USB-C Charging Cable,1,11.95,2019-03-26 14:06:00,970 Wilson St, Dallas,TX,75001 +167504,AA Batteries (4-pack),1,3.84,2019-03-25 17:39:00,853 Hickory St, Seattle,WA,98101 +167505,AAA Batteries (4-pack),1,2.99,2019-03-19 10:39:00,26 Ridge St, San Francisco,CA,94016 +167506,Lightning Charging Cable,1,14.95,2019-03-26 21:30:00,885 13th St, Los Angeles,CA,90001 +167507,USB-C Charging Cable,1,11.95,2019-03-13 22:34:00,268 Willow St, San Francisco,CA,94016 +167508,Lightning Charging Cable,1,14.95,2019-03-29 18:32:00,257 Willow St, Dallas,TX,75001 +167509,USB-C Charging Cable,1,11.95,2019-03-24 20:26:00,809 Sunset St, Austin,TX,73301 +167510,Lightning Charging Cable,2,14.95,2019-03-06 22:11:00,88 Willow St, Portland,OR,97035 +167511,Macbook Pro Laptop,1,1700.0,2019-03-12 09:16:00,150 12th St, Seattle,WA,98101 +167512,AA Batteries (4-pack),1,3.84,2019-03-17 21:29:00,542 Jackson St, San Francisco,CA,94016 +167513,AAA Batteries (4-pack),1,2.99,2019-03-15 09:46:00,548 Walnut St, San Francisco,CA,94016 +167514,20in Monitor,1,109.99,2019-03-14 09:18:00,34 Willow St, Seattle,WA,98101 +167515,34in Ultrawide Monitor,1,379.99,2019-03-02 16:34:00,86 Cedar St, Atlanta,GA,30301 +167516,Lightning Charging Cable,1,14.95,2019-03-11 04:39:00,334 Dogwood St, San Francisco,CA,94016 +167517,Lightning Charging Cable,1,14.95,2019-03-19 22:01:00,270 Adams St, Portland,OR,97035 +167518,Lightning Charging Cable,1,14.95,2019-03-05 20:54:00,801 13th St, Los Angeles,CA,90001 +167519,Lightning Charging Cable,1,14.95,2019-03-30 18:23:00,978 Adams St, San Francisco,CA,94016 +167520,Wired Headphones,2,11.99,2019-03-03 18:17:00,332 Hickory St, San Francisco,CA,94016 +167521,Apple Airpods Headphones,1,150.0,2019-03-23 17:23:00,300 Washington St, New York City,NY,10001 +167522,27in FHD Monitor,1,149.99,2019-03-23 14:40:00,980 Chestnut St, Seattle,WA,98101 +167523,AA Batteries (4-pack),1,3.84,2019-03-02 01:42:00,640 West St, Atlanta,GA,30301 +167524,Wired Headphones,1,11.99,2019-03-29 11:38:00,174 Lincoln St, Los Angeles,CA,90001 +167525,AAA Batteries (4-pack),4,2.99,2019-03-16 11:52:00,143 Dogwood St, San Francisco,CA,94016 +167526,Macbook Pro Laptop,1,1700.0,2019-03-09 16:10:00,725 Park St, Boston,MA,02215 +167527,USB-C Charging Cable,1,11.95,2019-03-29 12:52:00,726 Johnson St, Seattle,WA,98101 +167528,Apple Airpods Headphones,1,150.0,2019-03-11 14:01:00,794 Chestnut St, San Francisco,CA,94016 +167529,USB-C Charging Cable,1,11.95,2019-03-19 06:54:00,100 Hickory St, Dallas,TX,75001 +167530,Lightning Charging Cable,1,14.95,2019-03-09 12:01:00,427 West St, Austin,TX,73301 +167531,Lightning Charging Cable,1,14.95,2019-03-18 23:12:00,266 Washington St, Austin,TX,73301 +167532,iPhone,1,700.0,2019-03-05 08:02:00,952 Main St, San Francisco,CA,94016 +167532,Apple Airpods Headphones,1,150.0,2019-03-05 08:02:00,952 Main St, San Francisco,CA,94016 +167533,27in FHD Monitor,1,149.99,2019-03-05 21:24:00,260 Dogwood St, San Francisco,CA,94016 +167534,Bose SoundSport Headphones,1,99.99,2019-03-31 20:51:00,551 Maple St, San Francisco,CA,94016 +167535,Lightning Charging Cable,1,14.95,2019-03-11 19:05:00,498 1st St, Los Angeles,CA,90001 +167536,Apple Airpods Headphones,1,150.0,2019-03-25 18:59:00,284 Highland St, San Francisco,CA,94016 +167537,20in Monitor,1,109.99,2019-03-03 09:47:00,620 Main St, Los Angeles,CA,90001 +167538,Lightning Charging Cable,1,14.95,2019-03-20 10:30:00,161 Meadow St, San Francisco,CA,94016 +167539,Apple Airpods Headphones,1,150.0,2019-03-17 11:16:00,805 Meadow St, Austin,TX,73301 +167540,USB-C Charging Cable,1,11.95,2019-03-13 12:44:00,117 Lincoln St, Dallas,TX,75001 +167541,Bose SoundSport Headphones,1,99.99,2019-03-29 17:56:00,96 Lincoln St, Los Angeles,CA,90001 +167542,Lightning Charging Cable,1,14.95,2019-03-20 08:37:00,716 River St, Seattle,WA,98101 +167543,Apple Airpods Headphones,1,150.0,2019-03-05 13:09:00,921 Washington St, Portland,OR,97035 +167544,Lightning Charging Cable,1,14.95,2019-03-15 20:08:00,245 Forest St, Seattle,WA,98101 +167545,27in FHD Monitor,1,149.99,2019-03-14 17:45:00,599 Hill St, San Francisco,CA,94016 +167546,Google Phone,1,600.0,2019-03-27 18:00:00,252 Elm St, New York City,NY,10001 +167547,AA Batteries (4-pack),2,3.84,2019-03-04 23:30:00,835 West St, Atlanta,GA,30301 +167548,AA Batteries (4-pack),1,3.84,2019-03-27 13:16:00,322 14th St, New York City,NY,10001 +167549,Flatscreen TV,1,300.0,2019-03-27 08:47:00,30 8th St, Portland,OR,97035 +167550,34in Ultrawide Monitor,1,379.99,2019-03-20 10:45:00,310 Madison St, San Francisco,CA,94016 +167551,AA Batteries (4-pack),1,3.84,2019-03-31 20:22:00,884 Hill St, Los Angeles,CA,90001 +167552,Lightning Charging Cable,1,14.95,2019-03-28 16:27:00,796 Chestnut St, Seattle,WA,98101 +167553,Wired Headphones,1,11.99,2019-03-16 12:27:00,632 Center St, San Francisco,CA,94016 +167554,AA Batteries (4-pack),1,3.84,2019-03-25 14:01:00,264 Johnson St, New York City,NY,10001 +167555,Apple Airpods Headphones,1,150.0,2019-03-14 10:54:00,619 5th St, San Francisco,CA,94016 +167556,Wired Headphones,2,11.99,2019-03-13 06:37:00,376 12th St, Seattle,WA,98101 +167557,AA Batteries (4-pack),2,3.84,2019-03-13 20:03:00,114 12th St, Boston,MA,02215 +167558,Lightning Charging Cable,1,14.95,2019-03-09 19:00:00,355 Cherry St, Portland,OR,97035 +167559,USB-C Charging Cable,1,11.95,2019-03-31 19:41:00,270 4th St, New York City,NY,10001 +167560,AA Batteries (4-pack),1,3.84,2019-03-06 22:09:00,535 Dogwood St, San Francisco,CA,94016 +167561,AA Batteries (4-pack),1,3.84,2019-03-26 21:55:00,532 4th St, Dallas,TX,75001 +167562,USB-C Charging Cable,1,11.95,2019-03-31 12:06:00,292 North St, Dallas,TX,75001 +167563,USB-C Charging Cable,1,11.95,2019-03-09 13:35:00,856 Cedar St, Los Angeles,CA,90001 +167564,27in FHD Monitor,1,149.99,2019-03-23 10:08:00,357 Lakeview St, San Francisco,CA,94016 +167565,34in Ultrawide Monitor,1,379.99,2019-03-18 06:06:00,468 Forest St, Dallas,TX,75001 +167566,27in FHD Monitor,1,149.99,2019-03-07 09:18:00,590 9th St, San Francisco,CA,94016 +167567,Macbook Pro Laptop,1,1700.0,2019-03-03 15:42:00,787 Sunset St, New York City,NY,10001 +167567,Lightning Charging Cable,1,14.95,2019-03-03 15:42:00,787 Sunset St, New York City,NY,10001 +167568,Apple Airpods Headphones,1,150.0,2019-03-07 22:11:00,843 Ridge St, Los Angeles,CA,90001 +167569,USB-C Charging Cable,1,11.95,2019-03-16 20:28:00,713 Elm St, Atlanta,GA,30301 +167570,USB-C Charging Cable,1,11.95,2019-03-22 09:54:00,207 Hickory St, San Francisco,CA,94016 +167571,AAA Batteries (4-pack),1,2.99,2019-03-21 19:50:00,781 Wilson St, Los Angeles,CA,90001 +167572,Apple Airpods Headphones,1,150.0,2019-03-18 12:54:00,88 Wilson St, Los Angeles,CA,90001 +167573,Wired Headphones,1,11.99,2019-03-15 16:39:00,681 Main St, San Francisco,CA,94016 +167574,Lightning Charging Cable,1,14.95,2019-03-14 09:02:00,894 12th St, Los Angeles,CA,90001 +167575,AA Batteries (4-pack),1,3.84,2019-03-20 11:20:00,596 Forest St, San Francisco,CA,94016 +167576,ThinkPad Laptop,1,999.99,2019-03-18 19:18:00,821 North St, New York City,NY,10001 +167577,AAA Batteries (4-pack),1,2.99,2019-03-27 14:10:00,229 2nd St, San Francisco,CA,94016 +167578,ThinkPad Laptop,1,999.99,2019-03-04 10:01:00,987 Lake St, Los Angeles,CA,90001 +167579,Wired Headphones,1,11.99,2019-03-10 16:16:00,295 Church St, Seattle,WA,98101 +167580,Wired Headphones,1,11.99,2019-03-08 13:39:00,632 Main St, New York City,NY,10001 +167581,AA Batteries (4-pack),1,3.84,2019-03-30 20:24:00,663 5th St, Dallas,TX,75001 +167582,Wired Headphones,1,11.99,2019-03-26 15:28:00,268 Dogwood St, Los Angeles,CA,90001 +167583,Google Phone,1,600.0,2019-03-15 09:51:00,612 Madison St, San Francisco,CA,94016 +167584,Lightning Charging Cable,1,14.95,2019-03-01 13:05:00,150 Maple St, New York City,NY,10001 +167585,34in Ultrawide Monitor,1,379.99,2019-03-02 01:43:00,25 South St, Portland,OR,97035 +167586,Apple Airpods Headphones,1,150.0,2019-03-30 21:27:00,5 Willow St, New York City,NY,10001 +167587,Lightning Charging Cable,1,14.95,2019-03-25 16:05:00,807 10th St, New York City,NY,10001 +167588,Lightning Charging Cable,1,14.95,2019-03-24 22:24:00,527 Cherry St, Portland,OR,97035 +167589,USB-C Charging Cable,1,11.95,2019-03-10 21:29:00,192 Elm St, Portland,ME,04101 +167590,USB-C Charging Cable,1,11.95,2019-03-06 12:49:00,144 1st St, New York City,NY,10001 +167591,Lightning Charging Cable,1,14.95,2019-03-18 22:24:00,138 Cedar St, Boston,MA,02215 +167591,Apple Airpods Headphones,1,150.0,2019-03-18 22:24:00,138 Cedar St, Boston,MA,02215 +167592,Lightning Charging Cable,1,14.95,2019-03-16 15:48:00,632 Adams St, San Francisco,CA,94016 +167593,Flatscreen TV,1,300.0,2019-03-09 19:21:00,797 10th St, Portland,OR,97035 +167594,AA Batteries (4-pack),1,3.84,2019-03-04 18:29:00,993 Cherry St, San Francisco,CA,94016 +167595,34in Ultrawide Monitor,1,379.99,2019-03-24 13:14:00,351 North St, San Francisco,CA,94016 +167596,34in Ultrawide Monitor,1,379.99,2019-03-31 20:19:00,206 Washington St, Los Angeles,CA,90001 +167597,USB-C Charging Cable,1,11.95,2019-03-15 13:18:00,885 Main St, Seattle,WA,98101 +167598,Vareebadd Phone,1,400.0,2019-03-28 22:29:00,105 River St, San Francisco,CA,94016 +167598,Wired Headphones,1,11.99,2019-03-28 22:29:00,105 River St, San Francisco,CA,94016 +167599,USB-C Charging Cable,1,11.95,2019-03-18 11:00:00,259 Jefferson St, Dallas,TX,75001 +167600,AAA Batteries (4-pack),2,2.99,2019-03-18 19:38:00,903 Hickory St, New York City,NY,10001 +167601,Bose SoundSport Headphones,1,99.99,2019-03-23 16:18:00,528 Jackson St, Dallas,TX,75001 +167602,USB-C Charging Cable,1,11.95,2019-03-15 14:41:00,471 Willow St, Los Angeles,CA,90001 +167603,Wired Headphones,2,11.99,2019-03-28 11:33:00,63 6th St, Los Angeles,CA,90001 +167604,Wired Headphones,1,11.99,2019-03-05 13:03:00,984 Elm St, Los Angeles,CA,90001 +167605,27in FHD Monitor,1,149.99,2019-03-26 11:10:00,452 Spruce St, Dallas,TX,75001 +167606,USB-C Charging Cable,1,11.95,2019-03-30 14:05:00,904 South St, Atlanta,GA,30301 +167607,AAA Batteries (4-pack),2,2.99,2019-03-15 10:44:00,766 Adams St, San Francisco,CA,94016 +167608,Google Phone,1,600.0,2019-03-09 17:25:00,703 Spruce St, New York City,NY,10001 +167609,Wired Headphones,1,11.99,2019-03-14 08:12:00,80 Walnut St, Dallas,TX,75001 +167610,USB-C Charging Cable,1,11.95,2019-03-09 11:30:00,352 Pine St, San Francisco,CA,94016 +167611,AA Batteries (4-pack),1,3.84,2019-03-19 20:27:00,203 North St, San Francisco,CA,94016 +167612,Wired Headphones,1,11.99,2019-03-08 12:51:00,697 Spruce St, New York City,NY,10001 +167613,Lightning Charging Cable,1,14.95,2019-03-24 13:42:00,443 Willow St, Los Angeles,CA,90001 +167614,Google Phone,1,600.0,2019-03-24 18:47:00,659 13th St, Boston,MA,02215 +167615,Apple Airpods Headphones,1,150.0,2019-03-22 11:13:00,786 Main St, Seattle,WA,98101 +167616,USB-C Charging Cable,1,11.95,2019-03-27 14:57:00,286 5th St, Boston,MA,02215 +167617,AA Batteries (4-pack),1,3.84,2019-03-16 18:25:00,136 Walnut St, Seattle,WA,98101 +167618,AAA Batteries (4-pack),1,2.99,2019-03-25 18:34:00,842 Elm St, Boston,MA,02215 +167619,AAA Batteries (4-pack),1,2.99,2019-03-05 15:04:00,235 5th St, New York City,NY,10001 +167620,Wired Headphones,1,11.99,2019-03-16 13:55:00,239 9th St, Los Angeles,CA,90001 +167621,Wired Headphones,1,11.99,2019-03-07 08:03:00,959 5th St, Seattle,WA,98101 +167622,34in Ultrawide Monitor,1,379.99,2019-03-26 20:59:00,680 10th St, Dallas,TX,75001 +167623,AAA Batteries (4-pack),1,2.99,2019-03-26 12:13:00,369 South St, Dallas,TX,75001 +167624,Lightning Charging Cable,1,14.95,2019-03-14 18:13:00,388 North St, Boston,MA,02215 +167625,LG Dryer,1,600.0,2019-03-20 17:38:00,877 Dogwood St, Los Angeles,CA,90001 +167626,Macbook Pro Laptop,1,1700.0,2019-03-21 17:26:00,820 Johnson St, Seattle,WA,98101 +167627,Lightning Charging Cable,1,14.95,2019-03-12 12:37:00,914 Johnson St, San Francisco,CA,94016 +167628,Lightning Charging Cable,1,14.95,2019-03-15 20:03:00,757 Main St, Los Angeles,CA,90001 +167629,iPhone,1,700.0,2019-03-30 22:03:00,302 Hickory St, Seattle,WA,98101 +167630,AAA Batteries (4-pack),1,2.99,2019-03-08 16:25:00,305 5th St, Los Angeles,CA,90001 +167631,AA Batteries (4-pack),1,3.84,2019-03-21 20:31:00,26 1st St, San Francisco,CA,94016 +167632,27in FHD Monitor,2,149.99,2019-03-18 10:19:00,534 Church St, Dallas,TX,75001 +167633,AAA Batteries (4-pack),1,2.99,2019-03-07 11:48:00,367 1st St, Boston,MA,02215 +167634,Wired Headphones,1,11.99,2019-03-25 20:06:00,810 Sunset St, Los Angeles,CA,90001 +167635,Macbook Pro Laptop,1,1700.0,2019-03-29 22:02:00,14 13th St, Austin,TX,73301 +167636,iPhone,1,700.0,2019-03-18 00:46:00,208 Lakeview St, Los Angeles,CA,90001 +167637,AA Batteries (4-pack),1,3.84,2019-03-11 22:22:00,774 Spruce St, New York City,NY,10001 +167638,USB-C Charging Cable,1,11.95,2019-03-29 10:21:00,416 Meadow St, Dallas,TX,75001 +167639,Wired Headphones,1,11.99,2019-03-06 18:53:00,86 Walnut St, San Francisco,CA,94016 +167640,Apple Airpods Headphones,1,150.0,2019-03-17 15:04:00,370 Hickory St, San Francisco,CA,94016 +167641,27in FHD Monitor,1,149.99,2019-03-05 09:04:00,367 Church St, Portland,OR,97035 +167642,Lightning Charging Cable,1,14.95,2019-03-26 20:08:00,90 Jefferson St, New York City,NY,10001 +167643,Google Phone,1,600.0,2019-03-30 11:31:00,811 4th St, Los Angeles,CA,90001 +167643,USB-C Charging Cable,1,11.95,2019-03-30 11:31:00,811 4th St, Los Angeles,CA,90001 +167644,Google Phone,1,600.0,2019-03-27 20:49:00,12 9th St, Atlanta,GA,30301 +167645,AA Batteries (4-pack),2,3.84,2019-03-11 19:23:00,856 Maple St, Los Angeles,CA,90001 +167646,Bose SoundSport Headphones,1,99.99,2019-03-18 05:39:00,346 West St, Atlanta,GA,30301 +167647,Wired Headphones,1,11.99,2019-03-06 12:00:00,394 5th St, Los Angeles,CA,90001 +167648,Apple Airpods Headphones,1,150.0,2019-03-18 23:33:00,75 6th St, Dallas,TX,75001 +167649,Wired Headphones,1,11.99,2019-03-19 17:59:00,996 7th St, Portland,OR,97035 +167650,Wired Headphones,1,11.99,2019-03-30 05:14:00,319 Forest St, San Francisco,CA,94016 +167651,27in 4K Gaming Monitor,1,389.99,2019-03-24 12:02:00,385 Forest St, Dallas,TX,75001 +167652,AA Batteries (4-pack),1,3.84,2019-03-31 11:05:00,387 Walnut St, Boston,MA,02215 +167653,Vareebadd Phone,1,400.0,2019-03-11 03:06:00,639 Lake St, San Francisco,CA,94016 +167654,27in FHD Monitor,1,149.99,2019-03-29 15:10:00,654 5th St, Portland,OR,97035 +167655,Lightning Charging Cable,1,14.95,2019-03-15 01:11:00,249 11th St, Los Angeles,CA,90001 +167656,AA Batteries (4-pack),1,3.84,2019-03-31 15:57:00,93 Park St, Seattle,WA,98101 +167657,20in Monitor,1,109.99,2019-03-26 20:15:00,329 11th St, San Francisco,CA,94016 +167658,AA Batteries (4-pack),1,3.84,2019-03-14 14:37:00,63 7th St, San Francisco,CA,94016 +167659,Vareebadd Phone,1,400.0,2019-03-12 07:28:00,11 Park St, Austin,TX,73301 +167659,USB-C Charging Cable,1,11.95,2019-03-12 07:28:00,11 Park St, Austin,TX,73301 +167660,27in FHD Monitor,1,149.99,2019-03-11 14:09:00,679 11th St, Los Angeles,CA,90001 +167661,20in Monitor,1,109.99,2019-03-12 12:50:00,316 Hill St, Boston,MA,02215 +167662,AA Batteries (4-pack),1,3.84,2019-03-08 23:04:00,735 South St, Seattle,WA,98101 +167663,Bose SoundSport Headphones,1,99.99,2019-03-28 11:52:00,386 Elm St, New York City,NY,10001 +167664,27in 4K Gaming Monitor,1,389.99,2019-03-31 13:50:00,274 Main St, San Francisco,CA,94016 +167665,iPhone,1,700.0,2019-03-10 23:00:00,967 4th St, San Francisco,CA,94016 +167666,AAA Batteries (4-pack),1,2.99,2019-03-13 21:32:00,865 Willow St, Atlanta,GA,30301 +167667,AAA Batteries (4-pack),1,2.99,2019-03-15 17:57:00,852 8th St, Dallas,TX,75001 +167668,Google Phone,1,600.0,2019-03-25 15:55:00,981 Jackson St, Boston,MA,02215 +167669,AA Batteries (4-pack),1,3.84,2019-03-21 08:59:00,265 7th St, San Francisco,CA,94016 +167670,27in FHD Monitor,1,149.99,2019-03-27 19:35:00,556 Madison St, Austin,TX,73301 +167671,Lightning Charging Cable,1,14.95,2019-03-29 12:26:00,277 Lincoln St, New York City,NY,10001 +167672,Bose SoundSport Headphones,1,99.99,2019-03-30 11:12:00,865 Cedar St, New York City,NY,10001 +167673,Wired Headphones,1,11.99,2019-03-13 10:23:00,973 Meadow St, New York City,NY,10001 +167674,27in FHD Monitor,1,149.99,2019-03-14 10:23:00,875 Cedar St, Seattle,WA,98101 +167675,Apple Airpods Headphones,1,150.0,2019-03-04 14:39:00,600 North St, New York City,NY,10001 +167676,27in 4K Gaming Monitor,1,389.99,2019-03-04 16:58:00,73 West St, San Francisco,CA,94016 +167677,Lightning Charging Cable,1,14.95,2019-03-24 11:29:00,262 1st St, Los Angeles,CA,90001 +167678,Lightning Charging Cable,1,14.95,2019-03-16 13:08:00,880 Adams St, Portland,OR,97035 +167679,AAA Batteries (4-pack),1,2.99,2019-03-10 19:33:00,442 7th St, San Francisco,CA,94016 +167680,iPhone,1,700.0,2019-03-27 10:39:00,848 South St, Los Angeles,CA,90001 +167681,AAA Batteries (4-pack),2,2.99,2019-03-02 08:27:00,50 Dogwood St, Atlanta,GA,30301 +167682,Vareebadd Phone,1,400.0,2019-03-09 18:08:00,837 Hickory St, Los Angeles,CA,90001 +167683,Bose SoundSport Headphones,1,99.99,2019-03-04 21:58:00,670 Madison St, Portland,OR,97035 +167684,AA Batteries (4-pack),2,3.84,2019-03-12 12:27:00,636 Hill St, Dallas,TX,75001 +167685,Lightning Charging Cable,1,14.95,2019-03-17 21:32:00,78 Walnut St, Atlanta,GA,30301 +167686,27in FHD Monitor,1,149.99,2019-03-05 17:37:00,505 Jackson St, Portland,ME,04101 +167687,Wired Headphones,1,11.99,2019-03-17 19:18:00,611 Madison St, Portland,OR,97035 +167688,Lightning Charging Cable,1,14.95,2019-03-13 08:46:00,394 Highland St, Austin,TX,73301 +167689,AA Batteries (4-pack),3,3.84,2019-03-22 08:44:00,155 Lincoln St, Boston,MA,02215 +167690,Flatscreen TV,1,300.0,2019-03-29 21:54:00,18 2nd St, New York City,NY,10001 +167691,Wired Headphones,1,11.99,2019-03-14 22:20:00,809 Forest St, New York City,NY,10001 +167692,Bose SoundSport Headphones,1,99.99,2019-03-17 10:49:00,102 Main St, Portland,OR,97035 +167693,Apple Airpods Headphones,1,150.0,2019-03-14 18:18:00,689 10th St, Austin,TX,73301 +167694,LG Washing Machine,1,600.0,2019-03-30 19:59:00,893 Cedar St, Dallas,TX,75001 +167695,AAA Batteries (4-pack),1,2.99,2019-03-24 21:43:00,279 Sunset St, San Francisco,CA,94016 +167696,AAA Batteries (4-pack),1,2.99,2019-03-21 14:42:00,236 North St, Los Angeles,CA,90001 +167697,Bose SoundSport Headphones,1,99.99,2019-03-07 15:36:00,356 Maple St, Austin,TX,73301 +167698,AA Batteries (4-pack),1,3.84,2019-03-22 09:56:00,5 6th St, Atlanta,GA,30301 +167699,AA Batteries (4-pack),1,3.84,2019-03-23 18:48:00,998 Willow St, Portland,OR,97035 +167700,Bose SoundSport Headphones,1,99.99,2019-03-10 23:03:00,839 North St, San Francisco,CA,94016 +167701,Apple Airpods Headphones,1,150.0,2019-03-27 21:34:00,679 4th St, Portland,OR,97035 +167702,Wired Headphones,1,11.99,2019-03-22 19:35:00,404 12th St, Portland,OR,97035 +167702,AA Batteries (4-pack),1,3.84,2019-03-22 19:35:00,404 12th St, Portland,OR,97035 +167703,Wired Headphones,1,11.99,2019-03-24 20:40:00,469 Center St, Boston,MA,02215 +167704,27in 4K Gaming Monitor,1,389.99,2019-03-20 09:18:00,14 Willow St, Dallas,TX,75001 +167705,Lightning Charging Cable,1,14.95,2019-03-07 11:59:00,900 Wilson St, San Francisco,CA,94016 +167706,Apple Airpods Headphones,1,150.0,2019-03-03 11:14:00,112 Madison St, Los Angeles,CA,90001 +167707,Wired Headphones,1,11.99,2019-03-10 19:07:00,272 Elm St, Boston,MA,02215 +167708,Wired Headphones,1,11.99,2019-03-30 18:48:00,697 13th St, Seattle,WA,98101 +167709,Google Phone,1,600.0,2019-03-28 17:13:00,397 River St, San Francisco,CA,94016 +167709,USB-C Charging Cable,1,11.95,2019-03-28 17:13:00,397 River St, San Francisco,CA,94016 +167710,iPhone,1,700.0,2019-03-24 11:51:00,268 Center St, New York City,NY,10001 +167711,Lightning Charging Cable,1,14.95,2019-03-13 23:59:00,574 9th St, Austin,TX,73301 +167712,Macbook Pro Laptop,1,1700.0,2019-03-05 00:57:00,651 North St, Atlanta,GA,30301 +167713,USB-C Charging Cable,1,11.95,2019-03-02 15:56:00,711 Forest St, Boston,MA,02215 +167714,Apple Airpods Headphones,1,150.0,2019-03-01 09:59:00,948 11th St, San Francisco,CA,94016 +167715,Apple Airpods Headphones,1,150.0,2019-03-05 01:05:00,774 Chestnut St, San Francisco,CA,94016 +167716,34in Ultrawide Monitor,1,379.99,2019-03-23 09:46:00,864 Spruce St, New York City,NY,10001 +167717,Bose SoundSport Headphones,1,99.99,2019-03-03 09:12:00,391 9th St, New York City,NY,10001 +167718,AA Batteries (4-pack),1,3.84,2019-03-20 23:08:00,155 1st St, Austin,TX,73301 +167719,USB-C Charging Cable,1,11.95,2019-03-12 22:53:00,610 Hill St, New York City,NY,10001 +167720,AAA Batteries (4-pack),2,2.99,2019-03-17 17:52:00,617 River St, Dallas,TX,75001 +167721,Google Phone,1,600.0,2019-03-18 22:15:00,344 Spruce St, Los Angeles,CA,90001 +167721,USB-C Charging Cable,1,11.95,2019-03-18 22:15:00,344 Spruce St, Los Angeles,CA,90001 +167722,iPhone,1,700.0,2019-03-31 18:39:00,394 South St, San Francisco,CA,94016 +167723,AA Batteries (4-pack),1,3.84,2019-03-02 14:51:00,25 Ridge St, Atlanta,GA,30301 +167724,Apple Airpods Headphones,1,150.0,2019-03-26 15:53:00,243 Center St, San Francisco,CA,94016 +167725,iPhone,1,700.0,2019-03-22 20:33:00,597 Wilson St, Los Angeles,CA,90001 +167726,34in Ultrawide Monitor,1,379.99,2019-03-24 15:09:00,706 Dogwood St, Seattle,WA,98101 +167727,AAA Batteries (4-pack),1,2.99,2019-03-10 12:10:00,671 Ridge St, New York City,NY,10001 +167728,Vareebadd Phone,1,400.0,2019-03-27 15:33:00,328 13th St, Austin,TX,73301 +167729,Lightning Charging Cable,1,14.95,2019-03-16 14:23:00,814 Maple St, Los Angeles,CA,90001 +167730,Lightning Charging Cable,1,14.95,2019-03-22 06:38:00,235 Hickory St, New York City,NY,10001 +167731,Apple Airpods Headphones,1,150.0,2019-03-23 10:32:00,581 Maple St, San Francisco,CA,94016 +167732,AAA Batteries (4-pack),5,2.99,2019-03-16 21:33:00,701 Adams St, Portland,OR,97035 +167733,AA Batteries (4-pack),1,3.84,2019-03-28 22:25:00,307 1st St, San Francisco,CA,94016 +167734,USB-C Charging Cable,1,11.95,2019-03-10 09:38:00,295 Maple St, New York City,NY,10001 +167735,iPhone,1,700.0,2019-03-23 17:46:00,29 Spruce St, San Francisco,CA,94016 +167736,Lightning Charging Cable,1,14.95,2019-03-07 23:50:00,169 11th St, Dallas,TX,75001 +167737,AAA Batteries (4-pack),1,2.99,2019-03-28 16:48:00,385 2nd St, Dallas,TX,75001 +167738,USB-C Charging Cable,1,11.95,2019-03-22 20:22:00,179 Meadow St, San Francisco,CA,94016 +167739,Bose SoundSport Headphones,1,99.99,2019-03-07 20:51:00,784 8th St, Boston,MA,02215 +167740,Bose SoundSport Headphones,1,99.99,2019-03-31 15:48:00,608 10th St, Los Angeles,CA,90001 +167741,iPhone,1,700.0,2019-03-21 23:47:00,664 North St, New York City,NY,10001 +167742,Google Phone,1,600.0,2019-03-03 19:26:00,164 Cherry St, Los Angeles,CA,90001 +167743,Bose SoundSport Headphones,1,99.99,2019-03-03 22:01:00,490 Church St, Boston,MA,02215 +167744,27in 4K Gaming Monitor,1,389.99,2019-03-31 20:45:00,670 Ridge St, San Francisco,CA,94016 +167745,Macbook Pro Laptop,1,1700.0,2019-03-01 19:27:00,995 2nd St, Austin,TX,73301 +167746,iPhone,1,700.0,2019-03-06 15:54:00,773 5th St, Portland,OR,97035 +167747,AA Batteries (4-pack),1,3.84,2019-03-09 07:14:00,926 Lincoln St, San Francisco,CA,94016 +167748,Lightning Charging Cable,1,14.95,2019-03-03 10:31:00,916 2nd St, Los Angeles,CA,90001 +167749,iPhone,1,700.0,2019-03-11 21:41:00,361 Main St, Los Angeles,CA,90001 +167750,Apple Airpods Headphones,1,150.0,2019-03-04 22:15:00,745 Center St, Dallas,TX,75001 +167751,34in Ultrawide Monitor,1,379.99,2019-03-05 10:19:00,559 Washington St, Atlanta,GA,30301 +167752,Lightning Charging Cable,2,14.95,2019-03-14 11:56:00,708 Lincoln St, Los Angeles,CA,90001 +167753,Macbook Pro Laptop,1,1700.0,2019-03-31 15:42:00,498 Washington St, Portland,ME,04101 +167754,AA Batteries (4-pack),2,3.84,2019-03-19 15:13:00,594 10th St, New York City,NY,10001 +167755,USB-C Charging Cable,1,11.95,2019-03-30 19:13:00,969 North St, Los Angeles,CA,90001 +167756,34in Ultrawide Monitor,1,379.99,2019-03-16 01:15:00,127 Dogwood St, Los Angeles,CA,90001 +167757,AAA Batteries (4-pack),2,2.99,2019-03-22 15:53:00,755 Cherry St, Boston,MA,02215 +167758,Wired Headphones,1,11.99,2019-03-08 13:58:00,607 South St, San Francisco,CA,94016 +167759,Bose SoundSport Headphones,1,99.99,2019-03-05 18:20:00,701 8th St, Austin,TX,73301 +167760,Bose SoundSport Headphones,1,99.99,2019-03-12 10:45:00,681 Highland St, Dallas,TX,75001 +167761,iPhone,1,700.0,2019-03-07 17:48:00,530 Center St, Dallas,TX,75001 +167762,Bose SoundSport Headphones,1,99.99,2019-03-06 19:27:00,756 Lakeview St, Los Angeles,CA,90001 +167763,Bose SoundSport Headphones,1,99.99,2019-03-24 01:30:00,411 1st St, San Francisco,CA,94016 +167764,Wired Headphones,1,11.99,2019-03-01 18:15:00,696 Willow St, Boston,MA,02215 +167765,Bose SoundSport Headphones,1,99.99,2019-03-18 12:25:00,365 Johnson St, Boston,MA,02215 +167766,27in 4K Gaming Monitor,1,389.99,2019-03-11 22:11:00,873 Adams St, San Francisco,CA,94016 +167767,AA Batteries (4-pack),1,3.84,2019-03-18 10:45:00,201 Meadow St, Portland,ME,04101 +167768,Lightning Charging Cable,2,14.95,2019-03-28 19:35:00,520 Lakeview St, New York City,NY,10001 +167769,27in 4K Gaming Monitor,1,389.99,2019-03-16 15:15:00,485 Highland St, Austin,TX,73301 +167770,AAA Batteries (4-pack),2,2.99,2019-03-20 19:00:00,488 Walnut St, Seattle,WA,98101 +167771,ThinkPad Laptop,1,999.99,2019-03-14 13:21:00,495 Wilson St, Boston,MA,02215 +167772,34in Ultrawide Monitor,1,379.99,2019-03-16 17:34:00,670 West St, Dallas,TX,75001 +167773,iPhone,1,700.0,2019-03-26 09:19:00,444 Maple St, Atlanta,GA,30301 +167774,USB-C Charging Cable,1,11.95,2019-03-04 22:46:00,635 Chestnut St, Seattle,WA,98101 +167775,AAA Batteries (4-pack),1,2.99,2019-03-07 23:02:00,585 West St, Los Angeles,CA,90001 +167776,AA Batteries (4-pack),1,3.84,2019-03-13 14:58:00,718 Adams St, San Francisco,CA,94016 +167777,Apple Airpods Headphones,1,150.0,2019-03-08 11:23:00,650 6th St, New York City,NY,10001 +167778,Lightning Charging Cable,1,14.95,2019-03-01 18:23:00,76 Park St, Dallas,TX,75001 +167779,AAA Batteries (4-pack),1,2.99,2019-03-10 11:34:00,289 Pine St, Los Angeles,CA,90001 +167780,Lightning Charging Cable,1,14.95,2019-03-17 10:55:00,992 8th St, Atlanta,GA,30301 +167781,USB-C Charging Cable,2,11.95,2019-03-26 14:36:00,868 Madison St, New York City,NY,10001 +167782,AA Batteries (4-pack),1,3.84,2019-03-05 14:25:00,511 Madison St, San Francisco,CA,94016 +167783,Lightning Charging Cable,1,14.95,2019-03-10 17:32:00,965 Maple St, Portland,OR,97035 +167784,Bose SoundSport Headphones,1,99.99,2019-03-16 13:30:00,539 South St, Boston,MA,02215 +167785,Bose SoundSport Headphones,1,99.99,2019-03-16 00:57:00,637 Chestnut St, Dallas,TX,75001 +167786,Bose SoundSport Headphones,1,99.99,2019-03-07 21:27:00,291 Jefferson St, Los Angeles,CA,90001 +167787,AA Batteries (4-pack),2,3.84,2019-03-25 07:47:00,118 Church St, Austin,TX,73301 +167788,Macbook Pro Laptop,1,1700.0,2019-03-18 09:18:00,685 Elm St, Los Angeles,CA,90001 +167789,AAA Batteries (4-pack),5,2.99,2019-03-26 14:09:00,661 Madison St, Boston,MA,02215 +167790,Apple Airpods Headphones,1,150.0,2019-03-24 06:24:00,86 10th St, San Francisco,CA,94016 +167791,AAA Batteries (4-pack),1,2.99,2019-03-31 20:57:00,512 Johnson St, Boston,MA,02215 +167792,USB-C Charging Cable,1,11.95,2019-03-12 11:42:00,608 Lakeview St, San Francisco,CA,94016 +167793,Apple Airpods Headphones,1,150.0,2019-03-09 15:29:00,509 Meadow St, San Francisco,CA,94016 +167794,Bose SoundSport Headphones,1,99.99,2019-03-19 23:27:00,560 Main St, New York City,NY,10001 +167795,27in FHD Monitor,1,149.99,2019-03-23 22:04:00,734 8th St, Boston,MA,02215 +167796,27in FHD Monitor,1,149.99,2019-03-11 13:22:00,281 Ridge St, Atlanta,GA,30301 +167797,USB-C Charging Cable,1,11.95,2019-03-20 10:15:00,483 11th St, San Francisco,CA,94016 +167798,AAA Batteries (4-pack),2,2.99,2019-03-31 06:28:00,464 Cedar St, Boston,MA,02215 +167799,AAA Batteries (4-pack),2,2.99,2019-03-04 05:54:00,708 Meadow St, New York City,NY,10001 +167800,27in 4K Gaming Monitor,1,389.99,2019-03-08 19:30:00,863 North St, San Francisco,CA,94016 +167801,USB-C Charging Cable,1,11.95,2019-03-28 21:15:00,415 Hickory St, Dallas,TX,75001 +167802,Flatscreen TV,1,300.0,2019-03-31 22:37:00,538 Spruce St, Los Angeles,CA,90001 +167803,Lightning Charging Cable,1,14.95,2019-03-21 22:03:00,276 5th St, San Francisco,CA,94016 +167804,Lightning Charging Cable,1,14.95,2019-03-08 11:16:00,583 Johnson St, San Francisco,CA,94016 +167805,USB-C Charging Cable,1,11.95,2019-03-23 09:00:00,857 Maple St, Los Angeles,CA,90001 +167806,Flatscreen TV,1,300.0,2019-03-03 12:21:00,46 Wilson St, Boston,MA,02215 +167807,AA Batteries (4-pack),1,3.84,2019-03-05 22:27:00,892 13th St, San Francisco,CA,94016 +167808,USB-C Charging Cable,1,11.95,2019-03-07 12:47:00,471 1st St, Boston,MA,02215 +167809,AAA Batteries (4-pack),1,2.99,2019-03-20 10:58:00,110 South St, San Francisco,CA,94016 +167810,Vareebadd Phone,1,400.0,2019-03-20 17:01:00,222 Chestnut St, Atlanta,GA,30301 +167811,Bose SoundSport Headphones,1,99.99,2019-03-03 10:52:00,465 Cedar St, New York City,NY,10001 +167812,iPhone,1,700.0,2019-03-18 09:57:00,537 Wilson St, Portland,OR,97035 +167813,27in 4K Gaming Monitor,1,389.99,2019-04-01 02:42:00,840 11th St, Seattle,WA,98101 +167814,20in Monitor,1,109.99,2019-03-17 18:13:00,400 Dogwood St, New York City,NY,10001 +167815,USB-C Charging Cable,1,11.95,2019-03-01 11:05:00,29 Dogwood St, Dallas,TX,75001 +167816,AA Batteries (4-pack),1,3.84,2019-03-02 12:24:00,845 Ridge St, Los Angeles,CA,90001 +167817,USB-C Charging Cable,2,11.95,2019-03-18 22:59:00,574 Dogwood St, New York City,NY,10001 +167818,iPhone,1,700.0,2019-03-30 10:22:00,965 Meadow St, Austin,TX,73301 +167819,27in 4K Gaming Monitor,1,389.99,2019-03-07 13:39:00,397 11th St, Dallas,TX,75001 +167820,34in Ultrawide Monitor,1,379.99,2019-03-11 23:39:00,310 Lincoln St, New York City,NY,10001 +167821,Lightning Charging Cable,1,14.95,2019-03-04 12:57:00,91 Cedar St, Boston,MA,02215 +167822,Lightning Charging Cable,1,14.95,2019-03-18 11:49:00,377 10th St, Boston,MA,02215 +167823,AA Batteries (4-pack),1,3.84,2019-03-20 19:21:00,268 Elm St, Seattle,WA,98101 +167824,Wired Headphones,1,11.99,2019-03-12 17:04:00,767 Chestnut St, Los Angeles,CA,90001 +167825,AA Batteries (4-pack),1,3.84,2019-03-26 08:48:00,267 Lakeview St, San Francisco,CA,94016 +167826,AAA Batteries (4-pack),1,2.99,2019-03-07 20:15:00,198 14th St, New York City,NY,10001 +167827,Wired Headphones,1,11.99,2019-03-15 14:02:00,472 Church St, Los Angeles,CA,90001 +167828,AAA Batteries (4-pack),5,2.99,2019-03-17 19:13:00,622 Lakeview St, Los Angeles,CA,90001 +167829,USB-C Charging Cable,1,11.95,2019-03-24 20:56:00,748 1st St, Austin,TX,73301 +167830,AA Batteries (4-pack),1,3.84,2019-03-16 11:37:00,629 Highland St, New York City,NY,10001 +167831,Lightning Charging Cable,1,14.95,2019-03-22 15:46:00,578 Maple St, San Francisco,CA,94016 +167832,Lightning Charging Cable,3,14.95,2019-03-29 09:29:00,90 Highland St, Los Angeles,CA,90001 +167833,iPhone,1,700.0,2019-03-11 12:59:00,977 Pine St, Austin,TX,73301 +167833,Apple Airpods Headphones,1,150.0,2019-03-11 12:59:00,977 Pine St, Austin,TX,73301 +167834,Lightning Charging Cable,1,14.95,2019-03-11 20:27:00,176 Church St, New York City,NY,10001 +167835,Lightning Charging Cable,1,14.95,2019-03-28 19:14:00,154 Walnut St, Atlanta,GA,30301 +167836,Wired Headphones,1,11.99,2019-03-10 11:34:00,620 7th St, New York City,NY,10001 +167837,Google Phone,1,600.0,2019-03-26 11:52:00,552 West St, Los Angeles,CA,90001 +167837,USB-C Charging Cable,1,11.95,2019-03-26 11:52:00,552 West St, Los Angeles,CA,90001 +167838,USB-C Charging Cable,1,11.95,2019-03-11 09:10:00,756 Ridge St, Los Angeles,CA,90001 +167839,Vareebadd Phone,1,400.0,2019-03-28 11:31:00,408 Jackson St, Austin,TX,73301 +167839,Bose SoundSport Headphones,1,99.99,2019-03-28 11:31:00,408 Jackson St, Austin,TX,73301 +167840,USB-C Charging Cable,1,11.95,2019-03-02 16:11:00,503 Elm St, Los Angeles,CA,90001 +167841,AA Batteries (4-pack),1,3.84,2019-03-21 12:27:00,548 West St, Los Angeles,CA,90001 +167842,34in Ultrawide Monitor,1,379.99,2019-03-28 10:33:00,771 Lincoln St, Los Angeles,CA,90001 +167843,Lightning Charging Cable,1,14.95,2019-03-20 09:10:00,800 4th St, San Francisco,CA,94016 +167844,Apple Airpods Headphones,1,150.0,2019-03-26 20:37:00,963 Hill St, Los Angeles,CA,90001 +167845,AAA Batteries (4-pack),2,2.99,2019-03-03 17:57:00,518 6th St, Seattle,WA,98101 +167846,Wired Headphones,1,11.99,2019-03-11 22:44:00,464 Center St, San Francisco,CA,94016 +167847,Apple Airpods Headphones,1,150.0,2019-03-04 22:21:00,113 Ridge St, San Francisco,CA,94016 +167848,Macbook Pro Laptop,1,1700.0,2019-03-08 17:11:00,124 Pine St, Los Angeles,CA,90001 +167849,AAA Batteries (4-pack),1,2.99,2019-03-22 12:37:00,852 Adams St, San Francisco,CA,94016 +167850,AA Batteries (4-pack),1,3.84,2019-03-21 09:56:00,552 Highland St, Los Angeles,CA,90001 +167851,Lightning Charging Cable,2,14.95,2019-03-03 13:50:00,983 River St, San Francisco,CA,94016 +167852,Google Phone,1,600.0,2019-03-11 05:43:00,873 Johnson St, Dallas,TX,75001 +167853,USB-C Charging Cable,1,11.95,2019-03-11 17:40:00,104 North St, Los Angeles,CA,90001 +167854,Google Phone,1,600.0,2019-03-09 15:40:00,240 North St, San Francisco,CA,94016 +167855,Flatscreen TV,1,300.0,2019-03-14 17:12:00,503 Adams St, New York City,NY,10001 +167856,Apple Airpods Headphones,1,150.0,2019-03-09 23:08:00,999 Lincoln St, New York City,NY,10001 +167857,AA Batteries (4-pack),1,3.84,2019-03-26 21:54:00,612 Hickory St, Atlanta,GA,30301 +167858,USB-C Charging Cable,1,11.95,2019-03-13 23:44:00,729 Forest St, San Francisco,CA,94016 +167859,USB-C Charging Cable,1,11.95,2019-03-16 10:57:00,472 6th St, Los Angeles,CA,90001 +167860,Lightning Charging Cable,1,14.95,2019-03-19 13:50:00,930 Dogwood St, San Francisco,CA,94016 +167861,Bose SoundSport Headphones,1,99.99,2019-03-20 10:18:00,989 Wilson St, New York City,NY,10001 +167862,AA Batteries (4-pack),1,3.84,2019-03-12 08:31:00,276 Hickory St, Los Angeles,CA,90001 +167863,LG Dryer,1,600.0,2019-03-16 15:44:00,421 Meadow St, New York City,NY,10001 +167864,Lightning Charging Cable,1,14.95,2019-03-27 13:34:00,236 Walnut St, San Francisco,CA,94016 +167865,AA Batteries (4-pack),1,3.84,2019-03-23 16:09:00,571 Ridge St, Los Angeles,CA,90001 +167866,34in Ultrawide Monitor,1,379.99,2019-03-06 15:37:00,710 Elm St, San Francisco,CA,94016 +167867,Wired Headphones,1,11.99,2019-03-08 11:36:00,975 Hickory St, San Francisco,CA,94016 +167868,AAA Batteries (4-pack),1,2.99,2019-03-07 08:28:00,20 North St, San Francisco,CA,94016 +167869,LG Washing Machine,1,600.0,2019-03-29 20:44:00,811 13th St, San Francisco,CA,94016 +167870,AA Batteries (4-pack),1,3.84,2019-03-02 12:41:00,126 11th St, Boston,MA,02215 +167871,Wired Headphones,1,11.99,2019-03-31 17:47:00,810 5th St, Los Angeles,CA,90001 +167872,Lightning Charging Cable,1,14.95,2019-03-10 22:02:00,566 5th St, San Francisco,CA,94016 +167873,LG Washing Machine,1,600.0,2019-03-31 12:56:00,761 Forest St, San Francisco,CA,94016 +167874,Lightning Charging Cable,1,14.95,2019-03-05 17:19:00,959 Chestnut St, New York City,NY,10001 +167875,Wired Headphones,1,11.99,2019-03-03 14:29:00,642 Washington St, Austin,TX,73301 +167876,ThinkPad Laptop,1,999.99,2019-03-03 23:10:00,18 Lincoln St, Austin,TX,73301 +167877,AA Batteries (4-pack),1,3.84,2019-03-10 11:55:00,689 Johnson St, Boston,MA,02215 +167878,Lightning Charging Cable,1,14.95,2019-03-11 18:42:00,765 Washington St, Seattle,WA,98101 +167879,USB-C Charging Cable,1,11.95,2019-03-24 02:35:00,410 8th St, New York City,NY,10001 +167880,AA Batteries (4-pack),1,3.84,2019-03-05 22:53:00,631 Park St, Dallas,TX,75001 +167881,27in FHD Monitor,1,149.99,2019-03-02 11:18:00,114 1st St, Seattle,WA,98101 +167882,Macbook Pro Laptop,1,1700.0,2019-03-05 21:26:00,418 Sunset St, San Francisco,CA,94016 +167883,Macbook Pro Laptop,1,1700.0,2019-03-05 21:25:00,356 2nd St, New York City,NY,10001 +167884,Lightning Charging Cable,1,14.95,2019-03-16 19:09:00,903 River St, Dallas,TX,75001 +167885,27in FHD Monitor,1,149.99,2019-03-27 22:24:00,756 Park St, Dallas,TX,75001 +167886,AAA Batteries (4-pack),2,2.99,2019-03-16 19:53:00,481 Meadow St, Los Angeles,CA,90001 +167887,AAA Batteries (4-pack),1,2.99,2019-03-03 16:19:00,773 Meadow St, New York City,NY,10001 +167888,Lightning Charging Cable,2,14.95,2019-03-10 08:42:00,665 Forest St, Los Angeles,CA,90001 +167889,USB-C Charging Cable,1,11.95,2019-03-11 20:14:00,702 North St, Los Angeles,CA,90001 +167890,Apple Airpods Headphones,1,150.0,2019-03-13 11:02:00,168 Ridge St, Portland,OR,97035 +167891,Google Phone,1,600.0,2019-03-10 08:59:00,28 9th St, San Francisco,CA,94016 +167891,USB-C Charging Cable,1,11.95,2019-03-10 08:59:00,28 9th St, San Francisco,CA,94016 +167892,Lightning Charging Cable,1,14.95,2019-03-04 14:15:00,704 13th St, Atlanta,GA,30301 +167893,Lightning Charging Cable,1,14.95,2019-03-30 16:20:00,529 8th St, Atlanta,GA,30301 +167894,34in Ultrawide Monitor,1,379.99,2019-03-17 18:44:00,407 8th St, Seattle,WA,98101 +167895,Lightning Charging Cable,1,14.95,2019-03-25 15:29:00,922 Jackson St, New York City,NY,10001 +167896,Lightning Charging Cable,1,14.95,2019-03-26 20:01:00,677 Walnut St, San Francisco,CA,94016 +167897,iPhone,1,700.0,2019-03-29 00:09:00,235 11th St, San Francisco,CA,94016 +167898,27in FHD Monitor,1,149.99,2019-03-15 15:25:00,940 Center St, San Francisco,CA,94016 +167899,AAA Batteries (4-pack),1,2.99,2019-03-14 14:28:00,247 Chestnut St, Seattle,WA,98101 +167900,AAA Batteries (4-pack),3,2.99,2019-03-05 16:57:00,431 Sunset St, Atlanta,GA,30301 +167901,USB-C Charging Cable,2,11.95,2019-03-25 18:28:00,478 Washington St, San Francisco,CA,94016 +167902,Google Phone,1,600.0,2019-03-06 15:43:00,480 Lincoln St, Los Angeles,CA,90001 +167903,Flatscreen TV,1,300.0,2019-03-11 12:56:00,967 4th St, Los Angeles,CA,90001 +167904,Lightning Charging Cable,1,14.95,2019-03-30 06:03:00,753 8th St, San Francisco,CA,94016 +167905,Lightning Charging Cable,1,14.95,2019-03-03 19:37:00,658 Wilson St, San Francisco,CA,94016 +167906,Apple Airpods Headphones,1,150.0,2019-03-04 13:17:00,461 Maple St, Portland,OR,97035 +167907,iPhone,1,700.0,2019-03-09 19:10:00,543 7th St, Atlanta,GA,30301 +167908,Wired Headphones,1,11.99,2019-03-30 08:22:00,749 Dogwood St, Los Angeles,CA,90001 +167909,34in Ultrawide Monitor,1,379.99,2019-03-06 23:00:00,861 Hill St, Dallas,TX,75001 +167910,Wired Headphones,1,11.99,2019-03-04 22:40:00,596 Church St, Austin,TX,73301 +167911,AAA Batteries (4-pack),2,2.99,2019-03-12 10:39:00,334 Jefferson St, Boston,MA,02215 +167912,34in Ultrawide Monitor,1,379.99,2019-03-01 18:34:00,298 Hill St, Dallas,TX,75001 +167913,Bose SoundSport Headphones,1,99.99,2019-03-11 21:24:00,710 Cedar St, Boston,MA,02215 +167914,ThinkPad Laptop,1,999.99,2019-03-25 15:46:00,816 Hickory St, San Francisco,CA,94016 +167915,27in 4K Gaming Monitor,1,389.99,2019-03-16 16:43:00,354 7th St, Los Angeles,CA,90001 +167916,USB-C Charging Cable,1,11.95,2019-03-10 12:04:00,150 Walnut St, San Francisco,CA,94016 +167917,Bose SoundSport Headphones,1,99.99,2019-03-14 10:50:00,258 11th St, Dallas,TX,75001 +167918,USB-C Charging Cable,1,11.95,2019-03-27 19:16:00,823 River St, San Francisco,CA,94016 +167919,Flatscreen TV,1,300.0,2019-03-08 16:43:00,82 Jefferson St, San Francisco,CA,94016 +167920,Lightning Charging Cable,1,14.95,2019-03-11 10:36:00,638 Elm St, Los Angeles,CA,90001 +167921,Wired Headphones,1,11.99,2019-03-08 09:37:00,898 Cedar St, San Francisco,CA,94016 +167922,AAA Batteries (4-pack),1,2.99,2019-03-03 21:38:00,679 5th St, New York City,NY,10001 +167923,AA Batteries (4-pack),1,3.84,2019-03-25 22:57:00,398 Meadow St, Los Angeles,CA,90001 +167924,Google Phone,1,600.0,2019-03-29 06:01:00,95 Ridge St, New York City,NY,10001 +167924,USB-C Charging Cable,1,11.95,2019-03-29 06:01:00,95 Ridge St, New York City,NY,10001 +167925,AA Batteries (4-pack),1,3.84,2019-03-28 16:23:00,94 Highland St, San Francisco,CA,94016 +167926,20in Monitor,1,109.99,2019-03-24 17:01:00,241 Dogwood St, Seattle,WA,98101 +167927,AA Batteries (4-pack),2,3.84,2019-03-28 21:39:00,335 Wilson St, New York City,NY,10001 +167928,Wired Headphones,1,11.99,2019-03-19 10:49:00,603 Cedar St, Dallas,TX,75001 +167929,Apple Airpods Headphones,1,150.0,2019-03-16 17:00:00,848 Elm St, Austin,TX,73301 +167930,Apple Airpods Headphones,1,150.0,2019-03-11 09:20:00,780 Walnut St, New York City,NY,10001 +167931,Bose SoundSport Headphones,1,99.99,2019-03-22 16:07:00,428 Main St, Austin,TX,73301 +167931,USB-C Charging Cable,1,11.95,2019-03-22 16:07:00,428 Main St, Austin,TX,73301 +167932,Flatscreen TV,1,300.0,2019-03-15 22:20:00,525 Jackson St, San Francisco,CA,94016 +167933,USB-C Charging Cable,1,11.95,2019-03-05 13:24:00,418 Adams St, San Francisco,CA,94016 +167934,Google Phone,1,600.0,2019-03-31 11:36:00,918 9th St, Dallas,TX,75001 +167934,USB-C Charging Cable,1,11.95,2019-03-31 11:36:00,918 9th St, Dallas,TX,75001 +167935,Apple Airpods Headphones,1,150.0,2019-03-25 08:15:00,216 Highland St, Portland,OR,97035 +167936,Apple Airpods Headphones,1,150.0,2019-03-13 19:20:00,331 Dogwood St, Dallas,TX,75001 +167937,27in 4K Gaming Monitor,1,389.99,2019-03-20 13:49:00,253 Highland St, Austin,TX,73301 +167938,Apple Airpods Headphones,1,150.0,2019-03-21 15:27:00,54 South St, Los Angeles,CA,90001 +167939,USB-C Charging Cable,1,11.95,2019-03-18 13:48:00,773 Spruce St, Boston,MA,02215 +167940,Macbook Pro Laptop,1,1700.0,2019-03-05 09:48:00,947 7th St, Los Angeles,CA,90001 +167941,AAA Batteries (4-pack),1,2.99,2019-03-21 19:22:00,194 Cedar St, Boston,MA,02215 +167942,AA Batteries (4-pack),1,3.84,2019-03-23 14:51:00,62 River St, Portland,OR,97035 +167943,AA Batteries (4-pack),2,3.84,2019-03-02 14:42:00,707 Center St, Boston,MA,02215 +167944,Lightning Charging Cable,1,14.95,2019-03-15 18:14:00,705 Jackson St, Los Angeles,CA,90001 +167945,ThinkPad Laptop,1,999.99,2019-03-11 06:36:00,880 Jefferson St, Boston,MA,02215 +167946,AA Batteries (4-pack),2,3.84,2019-03-15 18:05:00,77 Center St, Austin,TX,73301 +167947,Macbook Pro Laptop,1,1700.0,2019-03-18 11:00:00,920 9th St, Dallas,TX,75001 +167948,Lightning Charging Cable,1,14.95,2019-03-05 13:49:00,702 Chestnut St, Boston,MA,02215 +167949,Google Phone,1,600.0,2019-03-12 09:35:00,757 Church St, San Francisco,CA,94016 +167950,34in Ultrawide Monitor,1,379.99,2019-03-12 19:41:00,336 South St, Atlanta,GA,30301 +167951,Apple Airpods Headphones,1,150.0,2019-03-18 09:47:00,937 4th St, San Francisco,CA,94016 +167952,27in 4K Gaming Monitor,1,389.99,2019-03-14 17:49:00,648 14th St, New York City,NY,10001 +167953,Wired Headphones,1,11.99,2019-03-19 18:18:00,62 North St, Los Angeles,CA,90001 +167954,USB-C Charging Cable,1,11.95,2019-03-04 16:08:00,867 Spruce St, Dallas,TX,75001 +167955,iPhone,1,700.0,2019-03-29 14:11:00,945 Spruce St, Portland,ME,04101 +167955,Apple Airpods Headphones,1,150.0,2019-03-29 14:11:00,945 Spruce St, Portland,ME,04101 +167956,Lightning Charging Cable,1,14.95,2019-03-02 18:56:00,212 8th St, Dallas,TX,75001 +167957,Lightning Charging Cable,1,14.95,2019-03-02 20:39:00,761 13th St, San Francisco,CA,94016 +167958,Google Phone,1,600.0,2019-03-18 14:06:00,747 14th St, Atlanta,GA,30301 +167958,USB-C Charging Cable,1,11.95,2019-03-18 14:06:00,747 14th St, Atlanta,GA,30301 +167959,AA Batteries (4-pack),1,3.84,2019-03-04 21:24:00,282 7th St, Dallas,TX,75001 +167960,USB-C Charging Cable,1,11.95,2019-03-18 21:24:00,61 Park St, Austin,TX,73301 +167961,Bose SoundSport Headphones,1,99.99,2019-03-31 06:48:00,370 2nd St, Boston,MA,02215 +167962,USB-C Charging Cable,1,11.95,2019-03-20 05:49:00,196 Adams St, San Francisco,CA,94016 +167963,27in 4K Gaming Monitor,1,389.99,2019-03-02 08:04:00,309 9th St, Los Angeles,CA,90001 +167964,AA Batteries (4-pack),1,3.84,2019-03-09 15:13:00,969 North St, San Francisco,CA,94016 +167965,AA Batteries (4-pack),2,3.84,2019-03-02 14:24:00,551 Hill St, Boston,MA,02215 +167966,AAA Batteries (4-pack),1,2.99,2019-03-30 20:15:00,881 9th St, San Francisco,CA,94016 +167967,Bose SoundSport Headphones,1,99.99,2019-03-20 18:36:00,997 1st St, Los Angeles,CA,90001 +167968,Wired Headphones,1,11.99,2019-03-27 21:37:00,499 Pine St, San Francisco,CA,94016 +167969,Apple Airpods Headphones,1,150.0,2019-03-09 01:16:00,134 Sunset St, San Francisco,CA,94016 +167970,AA Batteries (4-pack),1,3.84,2019-03-15 17:21:00,945 Jackson St, Los Angeles,CA,90001 +167971,Bose SoundSport Headphones,1,99.99,2019-03-19 16:40:00,664 10th St, Boston,MA,02215 +167972,USB-C Charging Cable,2,11.95,2019-03-09 22:00:00,183 Pine St, Boston,MA,02215 +167973,Lightning Charging Cable,1,14.95,2019-03-13 18:44:00,977 Madison St, Los Angeles,CA,90001 +167974,Google Phone,1,600.0,2019-03-22 20:34:00,890 Hill St, San Francisco,CA,94016 +167975,AAA Batteries (4-pack),4,2.99,2019-03-31 20:48:00,113 West St, New York City,NY,10001 +167976,Apple Airpods Headphones,1,150.0,2019-03-30 10:49:00,397 Park St, New York City,NY,10001 +167977,Google Phone,1,600.0,2019-03-10 01:29:00,476 Wilson St, New York City,NY,10001 +167977,Wired Headphones,1,11.99,2019-03-10 01:29:00,476 Wilson St, New York City,NY,10001 +167978,Apple Airpods Headphones,1,150.0,2019-03-07 19:09:00,24 Meadow St, Austin,TX,73301 +167979,Wired Headphones,1,11.99,2019-03-25 08:32:00,448 Main St, San Francisco,CA,94016 +167980,Wired Headphones,1,11.99,2019-03-10 18:22:00,697 9th St, Los Angeles,CA,90001 +167981,AA Batteries (4-pack),1,3.84,2019-03-31 13:55:00,41 Willow St, Atlanta,GA,30301 +167982,Wired Headphones,1,11.99,2019-03-13 15:41:00,831 9th St, New York City,NY,10001 +167983,27in 4K Gaming Monitor,1,389.99,2019-03-31 11:16:00,643 7th St, New York City,NY,10001 +167984,Macbook Pro Laptop,1,1700.0,2019-03-29 11:00:00,269 9th St, San Francisco,CA,94016 +167985,Apple Airpods Headphones,1,150.0,2019-03-08 23:44:00,531 Pine St, Portland,OR,97035 +167986,Wired Headphones,1,11.99,2019-03-30 21:31:00,479 Main St, Seattle,WA,98101 +167987,27in 4K Gaming Monitor,1,389.99,2019-03-04 16:22:00,726 Ridge St, Dallas,TX,75001 +167988,Lightning Charging Cable,1,14.95,2019-03-19 11:33:00,362 West St, San Francisco,CA,94016 +167989,Wired Headphones,1,11.99,2019-03-14 18:15:00,223 Elm St, Los Angeles,CA,90001 +167990,Wired Headphones,1,11.99,2019-03-10 14:43:00,263 6th St, San Francisco,CA,94016 +167991,27in FHD Monitor,1,149.99,2019-03-19 11:51:00,871 Jackson St, Boston,MA,02215 +167992,AA Batteries (4-pack),1,3.84,2019-03-18 21:52:00,16 Ridge St, New York City,NY,10001 +167993,Wired Headphones,2,11.99,2019-03-28 21:13:00,826 1st St, San Francisco,CA,94016 +167994,AAA Batteries (4-pack),1,2.99,2019-03-01 07:15:00,620 Lakeview St, San Francisco,CA,94016 +167995,Apple Airpods Headphones,1,150.0,2019-03-06 21:57:00,269 Madison St, Dallas,TX,75001 +167996,Lightning Charging Cable,1,14.95,2019-03-21 18:00:00,489 10th St, San Francisco,CA,94016 +167997,USB-C Charging Cable,1,11.95,2019-03-19 16:48:00,386 Wilson St, San Francisco,CA,94016 +167998,Lightning Charging Cable,1,14.95,2019-03-02 19:38:00,239 2nd St, Los Angeles,CA,90001 +167999,Wired Headphones,1,11.99,2019-03-03 12:06:00,232 Park St, New York City,NY,10001 +168000,Lightning Charging Cable,1,14.95,2019-03-18 20:37:00,49 Hill St, Seattle,WA,98101 +168001,AA Batteries (4-pack),1,3.84,2019-03-28 15:43:00,158 Sunset St, Los Angeles,CA,90001 +168002,USB-C Charging Cable,2,11.95,2019-03-28 10:18:00,771 River St, San Francisco,CA,94016 +168003,Lightning Charging Cable,1,14.95,2019-03-30 00:20:00,360 Lakeview St, Los Angeles,CA,90001 +168004,AAA Batteries (4-pack),1,2.99,2019-03-15 12:40:00,952 Lakeview St, San Francisco,CA,94016 +168005,27in 4K Gaming Monitor,1,389.99,2019-03-13 12:22:00,396 Center St, Los Angeles,CA,90001 +168006,Apple Airpods Headphones,1,150.0,2019-03-06 15:42:00,966 Forest St, San Francisco,CA,94016 +168007,Lightning Charging Cable,1,14.95,2019-03-01 14:03:00,705 4th St, Portland,ME,04101 +168008,Bose SoundSport Headphones,1,99.99,2019-03-23 06:57:00,653 Pine St, Dallas,TX,75001 +168009,Wired Headphones,2,11.99,2019-03-24 20:59:00,672 Cedar St, Seattle,WA,98101 +168010,AAA Batteries (4-pack),1,2.99,2019-03-12 16:17:00,568 Main St, Los Angeles,CA,90001 +168011,Flatscreen TV,1,300.0,2019-03-15 11:51:00,102 North St, San Francisco,CA,94016 +168012,20in Monitor,1,109.99,2019-03-20 12:03:00,515 Hickory St, San Francisco,CA,94016 +168013,34in Ultrawide Monitor,1,379.99,2019-03-24 19:53:00,248 Jefferson St, Seattle,WA,98101 +168014,Flatscreen TV,1,300.0,2019-03-25 03:55:00,333 Madison St, New York City,NY,10001 +168015,AAA Batteries (4-pack),1,2.99,2019-03-05 17:10:00,330 Jackson St, San Francisco,CA,94016 +168016,ThinkPad Laptop,1,999.99,2019-03-16 13:17:00,76 Lakeview St, Seattle,WA,98101 +168017,Apple Airpods Headphones,1,150.0,2019-03-12 07:16:00,248 Park St, Dallas,TX,75001 +168018,Apple Airpods Headphones,2,150.0,2019-03-21 18:50:00,119 Lake St, Los Angeles,CA,90001 +168019,AA Batteries (4-pack),1,3.84,2019-03-15 20:47:00,20 10th St, Atlanta,GA,30301 +168020,27in FHD Monitor,1,149.99,2019-03-08 16:54:00,739 Adams St, Los Angeles,CA,90001 +168021,Lightning Charging Cable,1,14.95,2019-03-15 19:09:00,321 Adams St, Boston,MA,02215 +168022,AA Batteries (4-pack),1,3.84,2019-03-06 19:42:00,3 Ridge St, Los Angeles,CA,90001 +168023,27in 4K Gaming Monitor,1,389.99,2019-03-05 04:29:00,731 4th St, Dallas,TX,75001 +168024,Flatscreen TV,1,300.0,2019-03-29 00:30:00,801 Pine St, New York City,NY,10001 +168025,AA Batteries (4-pack),2,3.84,2019-03-18 17:11:00,266 West St, Los Angeles,CA,90001 +168026,Wired Headphones,2,11.99,2019-03-13 09:54:00,863 Lakeview St, San Francisco,CA,94016 +168027,Apple Airpods Headphones,1,150.0,2019-03-18 12:40:00,897 Walnut St, San Francisco,CA,94016 +168028,USB-C Charging Cable,1,11.95,2019-03-29 21:23:00,965 Cherry St, Boston,MA,02215 +168029,Wired Headphones,1,11.99,2019-03-21 18:22:00,420 Ridge St, Seattle,WA,98101 +168030,AA Batteries (4-pack),1,3.84,2019-03-07 21:51:00,524 Center St, Los Angeles,CA,90001 +168031,Lightning Charging Cable,1,14.95,2019-03-01 19:49:00,471 Hill St, Austin,TX,73301 +168032,Bose SoundSport Headphones,1,99.99,2019-03-12 14:27:00,933 Lincoln St, Boston,MA,02215 +168033,27in 4K Gaming Monitor,1,389.99,2019-03-20 07:53:00,293 9th St, Los Angeles,CA,90001 +168034,Macbook Pro Laptop,1,1700.0,2019-03-01 22:24:00,522 Ridge St, Dallas,TX,75001 +168035,Vareebadd Phone,1,400.0,2019-03-08 23:51:00,394 6th St, Boston,MA,02215 +168036,LG Washing Machine,1,600.0,2019-03-02 10:44:00,123 6th St, Los Angeles,CA,90001 +168037,Lightning Charging Cable,1,14.95,2019-03-02 10:16:00,616 Meadow St, New York City,NY,10001 +168037,USB-C Charging Cable,1,11.95,2019-03-02 10:16:00,616 Meadow St, New York City,NY,10001 +168038,AAA Batteries (4-pack),1,2.99,2019-03-04 06:46:00,847 Washington St, Los Angeles,CA,90001 +168039,AAA Batteries (4-pack),2,2.99,2019-03-07 21:16:00,971 Johnson St, San Francisco,CA,94016 +168040,Bose SoundSport Headphones,1,99.99,2019-03-10 18:30:00,211 Park St, Boston,MA,02215 +168041,Lightning Charging Cable,1,14.95,2019-03-15 18:12:00,564 Cedar St, Boston,MA,02215 +168042,USB-C Charging Cable,1,11.95,2019-03-03 11:23:00,215 5th St, Austin,TX,73301 +168043,27in FHD Monitor,1,149.99,2019-03-14 23:17:00,158 1st St, Dallas,TX,75001 +168044,Wired Headphones,1,11.99,2019-03-25 19:40:00,918 8th St, Boston,MA,02215 +168045,Wired Headphones,1,11.99,2019-03-05 13:07:00,753 Cherry St, Los Angeles,CA,90001 +168046,AAA Batteries (4-pack),1,2.99,2019-03-31 18:11:00,972 Lincoln St, Austin,TX,73301 +168047,20in Monitor,1,109.99,2019-03-06 10:56:00,423 Madison St, Austin,TX,73301 +168048,USB-C Charging Cable,1,11.95,2019-03-10 22:23:00,162 Pine St, Los Angeles,CA,90001 +168049,USB-C Charging Cable,1,11.95,2019-03-08 23:30:00,256 West St, Seattle,WA,98101 +168050,USB-C Charging Cable,1,11.95,2019-03-01 20:52:00,544 Highland St, Boston,MA,02215 +168051,Wired Headphones,1,11.99,2019-03-21 23:31:00,353 Main St, New York City,NY,10001 +168052,34in Ultrawide Monitor,1,379.99,2019-03-21 10:17:00,945 Highland St, Dallas,TX,75001 +168053,AAA Batteries (4-pack),1,2.99,2019-03-18 12:51:00,906 Main St, Atlanta,GA,30301 +168054,AA Batteries (4-pack),2,3.84,2019-03-13 20:13:00,138 Johnson St, Boston,MA,02215 +168055,Lightning Charging Cable,1,14.95,2019-03-21 04:02:00,527 10th St, San Francisco,CA,94016 +168056,Apple Airpods Headphones,1,150.0,2019-03-12 20:45:00,795 12th St, San Francisco,CA,94016 +168057,34in Ultrawide Monitor,1,379.99,2019-03-10 16:59:00,741 Lake St, San Francisco,CA,94016 +168058,Wired Headphones,1,11.99,2019-03-23 20:19:00,236 Cedar St, Los Angeles,CA,90001 +168059,Lightning Charging Cable,1,14.95,2019-03-31 01:06:00,744 5th St, San Francisco,CA,94016 +168060,Wired Headphones,1,11.99,2019-03-18 13:52:00,222 Hill St, Austin,TX,73301 +168061,Lightning Charging Cable,1,14.95,2019-03-16 12:29:00,542 9th St, Dallas,TX,75001 +168062,Apple Airpods Headphones,1,150.0,2019-03-24 18:42:00,271 Elm St, Los Angeles,CA,90001 +168063,Bose SoundSport Headphones,1,99.99,2019-03-25 22:18:00,468 Hill St, San Francisco,CA,94016 +168064,Google Phone,1,600.0,2019-03-31 10:15:00,213 West St, Dallas,TX,75001 +168065,Wired Headphones,1,11.99,2019-03-04 13:32:00,537 South St, Austin,TX,73301 +168066,Apple Airpods Headphones,1,150.0,2019-03-16 22:16:00,118 South St, Boston,MA,02215 +168067,27in FHD Monitor,1,149.99,2019-03-21 16:03:00,258 North St, New York City,NY,10001 +168068,Bose SoundSport Headphones,1,99.99,2019-03-18 13:10:00,427 7th St, Dallas,TX,75001 +168069,Lightning Charging Cable,1,14.95,2019-03-07 10:59:00,57 Elm St, San Francisco,CA,94016 +168070,AAA Batteries (4-pack),1,2.99,2019-03-16 14:42:00,992 5th St, Los Angeles,CA,90001 +168071,Wired Headphones,1,11.99,2019-03-04 16:36:00,555 South St, Boston,MA,02215 +168072,ThinkPad Laptop,1,999.99,2019-03-03 18:50:00,907 North St, Boston,MA,02215 +168073,Lightning Charging Cable,1,14.95,2019-03-19 10:47:00,294 Spruce St, San Francisco,CA,94016 +168074,27in 4K Gaming Monitor,1,389.99,2019-03-19 12:19:00,546 Madison St, San Francisco,CA,94016 +168075,iPhone,1,700.0,2019-03-24 12:40:00,419 13th St, Los Angeles,CA,90001 +168076,AAA Batteries (4-pack),4,2.99,2019-03-16 08:30:00,25 13th St, Boston,MA,02215 +168077,27in FHD Monitor,1,149.99,2019-03-10 20:52:00,627 Jackson St, San Francisco,CA,94016 +168078,Bose SoundSport Headphones,1,99.99,2019-03-18 19:07:00,643 13th St, Portland,OR,97035 +168079,iPhone,1,700.0,2019-03-30 19:17:00,403 8th St, San Francisco,CA,94016 +168080,Google Phone,1,600.0,2019-03-05 00:25:00,951 7th St, Boston,MA,02215 +168080,USB-C Charging Cable,1,11.95,2019-03-05 00:25:00,951 7th St, Boston,MA,02215 +168081,USB-C Charging Cable,1,11.95,2019-03-01 14:55:00,536 Maple St, San Francisco,CA,94016 +168082,AA Batteries (4-pack),2,3.84,2019-03-29 11:27:00,684 Meadow St, Los Angeles,CA,90001 +168083,USB-C Charging Cable,1,11.95,2019-03-30 11:02:00,689 12th St, Boston,MA,02215 +168084,Wired Headphones,1,11.99,2019-03-02 07:14:00,366 Sunset St, Atlanta,GA,30301 +168085,USB-C Charging Cable,1,11.95,2019-03-01 10:35:00,796 Wilson St, Portland,OR,97035 +168086,Apple Airpods Headphones,1,150.0,2019-03-30 20:01:00,47 Lincoln St, Atlanta,GA,30301 +168087,iPhone,1,700.0,2019-03-26 15:24:00,726 11th St, Austin,TX,73301 +168088,Wired Headphones,1,11.99,2019-03-25 14:32:00,361 Jefferson St, Los Angeles,CA,90001 +168089,Wired Headphones,1,11.99,2019-03-07 21:09:00,909 11th St, Atlanta,GA,30301 +168090,Apple Airpods Headphones,1,150.0,2019-03-21 11:58:00,692 4th St, Boston,MA,02215 +168091,Bose SoundSport Headphones,1,99.99,2019-03-01 12:55:00,769 Madison St, Los Angeles,CA,90001 +168092,Bose SoundSport Headphones,1,99.99,2019-03-29 12:04:00,849 Jefferson St, Portland,OR,97035 +168093,AA Batteries (4-pack),1,3.84,2019-03-11 14:05:00,589 10th St, New York City,NY,10001 +168094,Apple Airpods Headphones,1,150.0,2019-03-02 11:04:00,869 6th St, Austin,TX,73301 +168095,AA Batteries (4-pack),1,3.84,2019-03-21 12:39:00,143 6th St, New York City,NY,10001 +168096,AAA Batteries (4-pack),3,2.99,2019-03-31 11:14:00,886 1st St, Dallas,TX,75001 +168097,AA Batteries (4-pack),1,3.84,2019-03-11 19:18:00,812 Dogwood St, Atlanta,GA,30301 +168098,USB-C Charging Cable,1,11.95,2019-03-01 11:25:00,432 South St, New York City,NY,10001 +168099,27in 4K Gaming Monitor,1,389.99,2019-03-26 11:01:00,63 Cherry St, San Francisco,CA,94016 +168100,Google Phone,1,600.0,2019-03-16 12:32:00,249 Madison St, Boston,MA,02215 +168101,Flatscreen TV,1,300.0,2019-03-19 11:40:00,593 Maple St, Atlanta,GA,30301 +168102,Lightning Charging Cable,1,14.95,2019-03-10 13:35:00,800 South St, Los Angeles,CA,90001 +168103,27in FHD Monitor,1,149.99,2019-03-07 17:15:00,293 7th St, Seattle,WA,98101 +168104,USB-C Charging Cable,1,11.95,2019-03-30 22:11:00,175 14th St, Dallas,TX,75001 +168105,27in 4K Gaming Monitor,1,389.99,2019-03-12 12:06:00,865 North St, Austin,TX,73301 +168106,20in Monitor,1,109.99,2019-03-08 12:59:00,414 12th St, San Francisco,CA,94016 +168107,Apple Airpods Headphones,1,150.0,2019-03-04 16:18:00,173 River St, Atlanta,GA,30301 +168108,Apple Airpods Headphones,1,150.0,2019-03-02 18:07:00,575 Lincoln St, Dallas,TX,75001 +168109,Vareebadd Phone,1,400.0,2019-03-24 14:17:00,415 Dogwood St, San Francisco,CA,94016 +168110,AA Batteries (4-pack),1,3.84,2019-03-14 21:48:00,321 Jackson St, Los Angeles,CA,90001 +168111,Vareebadd Phone,1,400.0,2019-03-20 13:32:00,850 Wilson St, Dallas,TX,75001 +168112,Wired Headphones,1,11.99,2019-03-18 20:39:00,547 Cherry St, San Francisco,CA,94016 +168113,34in Ultrawide Monitor,1,379.99,2019-03-26 23:10:00,290 12th St, Boston,MA,02215 +168114,Lightning Charging Cable,1,14.95,2019-03-10 15:00:00,659 Main St, San Francisco,CA,94016 +168115,Apple Airpods Headphones,1,150.0,2019-03-14 09:44:00,282 Cherry St, Austin,TX,73301 +168116,Bose SoundSport Headphones,1,99.99,2019-03-19 16:52:00,819 7th St, Atlanta,GA,30301 +168117,Wired Headphones,1,11.99,2019-03-04 10:55:00,448 Highland St, Portland,OR,97035 +168118,USB-C Charging Cable,1,11.95,2019-03-07 10:03:00,953 Willow St, San Francisco,CA,94016 +168119,USB-C Charging Cable,1,11.95,2019-03-18 14:11:00,110 Hill St, San Francisco,CA,94016 +168120,AA Batteries (4-pack),2,3.84,2019-03-16 09:24:00,560 11th St, Austin,TX,73301 +168121,iPhone,1,700.0,2019-03-02 22:55:00,258 Church St, San Francisco,CA,94016 +168122,AA Batteries (4-pack),1,3.84,2019-03-11 18:27:00,951 Pine St, New York City,NY,10001 +168123,AA Batteries (4-pack),1,3.84,2019-03-06 07:53:00,689 11th St, Seattle,WA,98101 +168124,Wired Headphones,1,11.99,2019-03-20 20:40:00,197 Pine St, Los Angeles,CA,90001 +168125,Flatscreen TV,1,300.0,2019-03-18 07:10:00,341 Ridge St, Austin,TX,73301 +168126,AAA Batteries (4-pack),1,2.99,2019-03-28 20:25:00,470 Pine St, Boston,MA,02215 +168127,Lightning Charging Cable,1,14.95,2019-03-29 22:26:00,894 7th St, San Francisco,CA,94016 +168128,27in 4K Gaming Monitor,1,389.99,2019-03-14 09:58:00,115 11th St, San Francisco,CA,94016 +168129,Wired Headphones,1,11.99,2019-03-03 12:15:00,78 Jackson St, New York City,NY,10001 +168130,USB-C Charging Cable,1,11.95,2019-03-04 19:25:00,155 Willow St, Boston,MA,02215 +168131,iPhone,1,700.0,2019-03-28 19:22:00,424 Meadow St, San Francisco,CA,94016 +168132,Bose SoundSport Headphones,1,99.99,2019-03-13 20:44:00,820 River St, Seattle,WA,98101 +168133,USB-C Charging Cable,1,11.95,2019-03-27 11:50:00,963 Pine St, Portland,OR,97035 +168134,Macbook Pro Laptop,1,1700.0,2019-03-29 12:16:00,499 Pine St, San Francisco,CA,94016 +168135,Wired Headphones,1,11.99,2019-03-28 06:57:00,100 Ridge St, San Francisco,CA,94016 +168136,Apple Airpods Headphones,1,150.0,2019-03-29 07:25:00,492 Hill St, New York City,NY,10001 +168137,Lightning Charging Cable,1,14.95,2019-03-08 15:48:00,533 Willow St, Seattle,WA,98101 +168138,Wired Headphones,1,11.99,2019-03-09 16:22:00,996 1st St, San Francisco,CA,94016 +168139,34in Ultrawide Monitor,1,379.99,2019-03-01 21:59:00,51 Lake St, Atlanta,GA,30301 +168140,Macbook Pro Laptop,1,1700.0,2019-03-01 11:04:00,636 Wilson St, Austin,TX,73301 +168141,AAA Batteries (4-pack),1,2.99,2019-03-30 23:21:00,876 Lake St, New York City,NY,10001 +168142,USB-C Charging Cable,1,11.95,2019-03-23 18:41:00,664 Jefferson St, San Francisco,CA,94016 +168143,Apple Airpods Headphones,1,150.0,2019-03-10 17:23:00,270 14th St, San Francisco,CA,94016 +168144,Bose SoundSport Headphones,1,99.99,2019-03-10 14:46:00,681 Cedar St, San Francisco,CA,94016 +168145,ThinkPad Laptop,1,999.99,2019-03-29 02:54:00,902 4th St, Atlanta,GA,30301 +168146,Bose SoundSport Headphones,1,99.99,2019-03-14 23:13:00,419 West St, San Francisco,CA,94016 +168147,27in FHD Monitor,1,149.99,2019-03-22 22:30:00,843 West St, New York City,NY,10001 +168148,Wired Headphones,1,11.99,2019-03-07 09:07:00,697 6th St, San Francisco,CA,94016 +168149,Lightning Charging Cable,1,14.95,2019-03-06 11:20:00,745 4th St, San Francisco,CA,94016 +168150,Apple Airpods Headphones,1,150.0,2019-03-14 15:17:00,793 Church St, Portland,OR,97035 +168151,34in Ultrawide Monitor,1,379.99,2019-03-01 12:29:00,435 Spruce St, Boston,MA,02215 +168152,USB-C Charging Cable,1,11.95,2019-03-04 08:44:00,580 Lincoln St, Boston,MA,02215 +168153,Lightning Charging Cable,1,14.95,2019-03-17 22:11:00,229 Hickory St, San Francisco,CA,94016 +168154,Wired Headphones,1,11.99,2019-03-08 21:13:00,872 Jefferson St, Boston,MA,02215 +168155,Wired Headphones,1,11.99,2019-03-28 20:02:00,508 Center St, New York City,NY,10001 +168156,Flatscreen TV,1,300.0,2019-03-16 11:47:00,236 7th St, Atlanta,GA,30301 +168157,USB-C Charging Cable,1,11.95,2019-03-17 22:35:00,796 14th St, San Francisco,CA,94016 +168158,Apple Airpods Headphones,1,150.0,2019-03-07 16:54:00,549 Adams St, Boston,MA,02215 +168159,Apple Airpods Headphones,1,150.0,2019-03-26 10:16:00,265 Park St, San Francisco,CA,94016 +168160,USB-C Charging Cable,1,11.95,2019-03-06 08:44:00,418 Lincoln St, San Francisco,CA,94016 +168161,Google Phone,1,600.0,2019-03-25 20:33:00,155 Walnut St, Boston,MA,02215 +168162,USB-C Charging Cable,1,11.95,2019-03-06 22:51:00,356 Jefferson St, Boston,MA,02215 +168163,Lightning Charging Cable,1,14.95,2019-03-02 10:02:00,775 Lakeview St, New York City,NY,10001 +168164,27in 4K Gaming Monitor,1,389.99,2019-03-06 08:59:00,531 10th St, San Francisco,CA,94016 +168165,Lightning Charging Cable,1,14.95,2019-03-29 11:01:00,619 14th St, Boston,MA,02215 +168166,USB-C Charging Cable,1,11.95,2019-03-10 14:33:00,782 12th St, Boston,MA,02215 +168167,Apple Airpods Headphones,1,150.0,2019-03-24 04:39:00,783 Elm St, New York City,NY,10001 +168168,AA Batteries (4-pack),1,3.84,2019-03-09 11:23:00,316 Center St, San Francisco,CA,94016 +168169,Bose SoundSport Headphones,1,99.99,2019-03-04 11:15:00,285 13th St, San Francisco,CA,94016 +168170,27in FHD Monitor,1,149.99,2019-03-19 12:49:00,898 Adams St, San Francisco,CA,94016 +168171,AAA Batteries (4-pack),1,2.99,2019-03-16 10:31:00,400 Cedar St, New York City,NY,10001 +168172,USB-C Charging Cable,2,11.95,2019-03-06 23:25:00,422 Church St, San Francisco,CA,94016 +168173,34in Ultrawide Monitor,1,379.99,2019-03-24 16:51:00,930 Wilson St, Boston,MA,02215 +168173,AAA Batteries (4-pack),1,2.99,2019-03-24 16:51:00,930 Wilson St, Boston,MA,02215 +168174,Bose SoundSport Headphones,1,99.99,2019-03-28 07:15:00,258 13th St, Seattle,WA,98101 +168175,AAA Batteries (4-pack),1,2.99,2019-03-17 20:22:00,203 12th St, Atlanta,GA,30301 +168176,ThinkPad Laptop,1,999.99,2019-03-02 19:05:00,803 12th St, Boston,MA,02215 +168177,AA Batteries (4-pack),3,3.84,2019-03-12 09:58:00,180 Park St, Los Angeles,CA,90001 +168178,34in Ultrawide Monitor,1,379.99,2019-03-22 07:52:00,6 10th St, Boston,MA,02215 +168179,USB-C Charging Cable,1,11.95,2019-03-21 09:40:00,36 Jefferson St, Portland,OR,97035 +168180,Lightning Charging Cable,1,14.95,2019-03-18 20:50:00,201 1st St, Austin,TX,73301 +168181,ThinkPad Laptop,1,999.99,2019-03-25 19:42:00,798 Ridge St, San Francisco,CA,94016 +168182,Wired Headphones,1,11.99,2019-03-17 21:21:00,463 9th St, Los Angeles,CA,90001 +168183,Apple Airpods Headphones,1,150.0,2019-03-30 19:59:00,500 5th St, Dallas,TX,75001 +168184,Wired Headphones,1,11.99,2019-03-01 20:20:00,377 Chestnut St, San Francisco,CA,94016 +168185,USB-C Charging Cable,1,11.95,2019-03-02 21:01:00,391 Lincoln St, Portland,ME,04101 +168186,Wired Headphones,1,11.99,2019-03-23 11:08:00,452 Pine St, New York City,NY,10001 +168187,iPhone,1,700.0,2019-03-23 02:59:00,396 Lake St, Portland,OR,97035 +168187,Lightning Charging Cable,1,14.95,2019-03-23 02:59:00,396 Lake St, Portland,OR,97035 +168188,USB-C Charging Cable,1,11.95,2019-03-20 00:39:00,391 Cherry St, New York City,NY,10001 +168189,AAA Batteries (4-pack),1,2.99,2019-03-31 02:31:00,30 Dogwood St, Austin,TX,73301 +168190,USB-C Charging Cable,1,11.95,2019-03-17 11:27:00,663 Forest St, San Francisco,CA,94016 +168191,USB-C Charging Cable,1,11.95,2019-03-16 23:31:00,928 Lakeview St, Boston,MA,02215 +168192,Lightning Charging Cable,1,14.95,2019-03-31 00:22:00,191 Cedar St, Portland,OR,97035 +168193,AAA Batteries (4-pack),2,2.99,2019-03-20 20:27:00,996 South St, New York City,NY,10001 +168194,Bose SoundSport Headphones,1,99.99,2019-03-28 20:00:00,328 Elm St, Atlanta,GA,30301 +168195,Apple Airpods Headphones,1,150.0,2019-03-26 10:14:00,772 Meadow St, Dallas,TX,75001 +168196,34in Ultrawide Monitor,1,379.99,2019-03-03 20:11:00,157 Lakeview St, Portland,OR,97035 +168197,20in Monitor,1,109.99,2019-03-30 21:43:00,107 1st St, San Francisco,CA,94016 +168198,34in Ultrawide Monitor,1,379.99,2019-03-29 20:59:00,436 Lincoln St, Portland,OR,97035 +168199,USB-C Charging Cable,1,11.95,2019-03-04 10:19:00,221 Wilson St, New York City,NY,10001 +168200,iPhone,1,700.0,2019-03-18 17:11:00,238 Adams St, San Francisco,CA,94016 +168201,USB-C Charging Cable,2,11.95,2019-03-06 20:02:00,158 6th St, San Francisco,CA,94016 +168202,Wired Headphones,1,11.99,2019-03-18 15:16:00,761 Pine St, Dallas,TX,75001 +168203,AAA Batteries (4-pack),1,2.99,2019-03-16 13:32:00,726 Park St, San Francisco,CA,94016 +168204,20in Monitor,1,109.99,2019-03-31 13:20:00,813 10th St, Los Angeles,CA,90001 +168205,AA Batteries (4-pack),1,3.84,2019-03-20 10:21:00,979 Main St, Los Angeles,CA,90001 +168206,Flatscreen TV,1,300.0,2019-03-19 09:08:00,382 Willow St, San Francisco,CA,94016 +168207,Flatscreen TV,1,300.0,2019-03-04 09:32:00,184 Cedar St, San Francisco,CA,94016 +168208,Lightning Charging Cable,1,14.95,2019-03-14 12:10:00,874 4th St, Boston,MA,02215 +168209,Lightning Charging Cable,1,14.95,2019-03-28 21:48:00,565 8th St, Boston,MA,02215 +168210,27in FHD Monitor,1,149.99,2019-03-18 00:13:00,705 13th St, Dallas,TX,75001 +168211,AA Batteries (4-pack),1,3.84,2019-03-30 13:07:00,63 Ridge St, Los Angeles,CA,90001 +168212,AA Batteries (4-pack),1,3.84,2019-03-03 10:43:00,175 10th St, Dallas,TX,75001 +168213,iPhone,1,700.0,2019-03-03 17:31:00,283 2nd St, Atlanta,GA,30301 +168213,Lightning Charging Cable,1,14.95,2019-03-03 17:31:00,283 2nd St, Atlanta,GA,30301 +168214,Lightning Charging Cable,1,14.95,2019-03-08 15:53:00,459 Jefferson St, Atlanta,GA,30301 +168215,USB-C Charging Cable,1,11.95,2019-03-01 14:04:00,293 8th St, Atlanta,GA,30301 +168215,AA Batteries (4-pack),1,3.84,2019-03-01 14:04:00,293 8th St, Atlanta,GA,30301 +168216,Lightning Charging Cable,1,14.95,2019-03-09 15:14:00,473 Park St, Portland,OR,97035 +168217,Bose SoundSport Headphones,1,99.99,2019-03-25 01:46:00,525 Madison St, San Francisco,CA,94016 +168218,Lightning Charging Cable,1,14.95,2019-03-19 13:00:00,437 14th St, San Francisco,CA,94016 +168219,USB-C Charging Cable,1,11.95,2019-03-20 07:51:00,991 1st St, Los Angeles,CA,90001 +168220,AAA Batteries (4-pack),2,2.99,2019-03-20 17:39:00,451 Park St, New York City,NY,10001 +168221,AA Batteries (4-pack),1,3.84,2019-03-27 12:36:00,485 Elm St, San Francisco,CA,94016 +168222,Lightning Charging Cable,1,14.95,2019-03-26 10:11:00,271 Jackson St, Austin,TX,73301 +168223,Wired Headphones,1,11.99,2019-03-22 18:28:00,144 Jefferson St, Seattle,WA,98101 +168224,AA Batteries (4-pack),1,3.84,2019-03-26 13:56:00,789 Park St, Atlanta,GA,30301 +168225,Lightning Charging Cable,1,14.95,2019-03-02 15:59:00,609 Highland St, New York City,NY,10001 +168226,AAA Batteries (4-pack),1,2.99,2019-03-20 11:24:00,620 4th St, New York City,NY,10001 +168227,AAA Batteries (4-pack),2,2.99,2019-03-04 12:38:00,507 West St, Boston,MA,02215 +168228,Macbook Pro Laptop,1,1700.0,2019-03-03 16:44:00,100 8th St, Dallas,TX,75001 +168229,Bose SoundSport Headphones,1,99.99,2019-03-22 11:37:00,126 Washington St, Boston,MA,02215 +168230,USB-C Charging Cable,1,11.95,2019-03-20 19:58:00,790 1st St, Dallas,TX,75001 +168231,27in 4K Gaming Monitor,1,389.99,2019-03-03 16:37:00,681 Hill St, San Francisco,CA,94016 +168232,Lightning Charging Cable,1,14.95,2019-03-22 07:07:00,702 Park St, New York City,NY,10001 +168233,34in Ultrawide Monitor,1,379.99,2019-03-19 19:50:00,792 West St, Los Angeles,CA,90001 +168234,20in Monitor,1,109.99,2019-03-16 11:42:00,826 Lake St, New York City,NY,10001 +168235,Lightning Charging Cable,2,14.95,2019-03-12 16:17:00,853 12th St, Dallas,TX,75001 +168236,Google Phone,1,600.0,2019-03-04 10:01:00,237 Maple St, Los Angeles,CA,90001 +168236,Wired Headphones,2,11.99,2019-03-04 10:01:00,237 Maple St, Los Angeles,CA,90001 +168237,Wired Headphones,1,11.99,2019-03-07 19:18:00,490 Church St, San Francisco,CA,94016 +168238,Lightning Charging Cable,1,14.95,2019-03-04 12:02:00,646 13th St, San Francisco,CA,94016 +168239,LG Washing Machine,1,600.0,2019-03-07 19:00:00,500 North St, Boston,MA,02215 +168240,AA Batteries (4-pack),1,3.84,2019-03-11 21:36:00,745 Hill St, Portland,OR,97035 +168241,Lightning Charging Cable,1,14.95,2019-03-27 19:11:00,385 2nd St, San Francisco,CA,94016 +168242,27in 4K Gaming Monitor,1,389.99,2019-03-25 11:13:00,233 Elm St, Los Angeles,CA,90001 +168243,AAA Batteries (4-pack),1,2.99,2019-03-06 21:09:00,79 6th St, New York City,NY,10001 +168244,34in Ultrawide Monitor,1,379.99,2019-03-30 20:51:00,828 Madison St, New York City,NY,10001 +168245,34in Ultrawide Monitor,1,379.99,2019-03-01 09:10:00,102 Main St, Atlanta,GA,30301 +168246,Google Phone,1,600.0,2019-03-30 00:17:00,500 Elm St, San Francisco,CA,94016 +168247,Bose SoundSport Headphones,1,99.99,2019-03-31 18:32:00,618 North St, San Francisco,CA,94016 +168248,AAA Batteries (4-pack),1,2.99,2019-03-21 17:24:00,200 8th St, Los Angeles,CA,90001 +168249,Flatscreen TV,1,300.0,2019-03-07 18:12:00,65 Lincoln St, Dallas,TX,75001 +168250,USB-C Charging Cable,1,11.95,2019-03-21 23:35:00,980 7th St, San Francisco,CA,94016 +168251,Flatscreen TV,1,300.0,2019-03-11 18:32:00,505 Wilson St, Seattle,WA,98101 +168252,AA Batteries (4-pack),1,3.84,2019-03-23 17:14:00,483 River St, San Francisco,CA,94016 +168253,Wired Headphones,1,11.99,2019-03-29 11:25:00,33 Adams St, New York City,NY,10001 +168254,20in Monitor,1,109.99,2019-03-01 16:09:00,390 Madison St, Boston,MA,02215 +168255,iPhone,1,700.0,2019-03-23 12:47:00,110 Highland St, Los Angeles,CA,90001 +168256,AA Batteries (4-pack),2,3.84,2019-03-07 00:12:00,693 Dogwood St, New York City,NY,10001 +168257,USB-C Charging Cable,1,11.95,2019-03-10 12:18:00,377 Jefferson St, Dallas,TX,75001 +168258,AAA Batteries (4-pack),1,2.99,2019-03-22 20:30:00,47 River St, Austin,TX,73301 +168259,Apple Airpods Headphones,1,150.0,2019-03-30 14:34:00,396 11th St, San Francisco,CA,94016 +168260,Lightning Charging Cable,1,14.95,2019-03-18 22:30:00,508 Sunset St, San Francisco,CA,94016 +168261,34in Ultrawide Monitor,1,379.99,2019-03-15 20:54:00,12 South St, San Francisco,CA,94016 +168262,AAA Batteries (4-pack),1,2.99,2019-03-15 16:46:00,400 2nd St, Austin,TX,73301 +168263,Macbook Pro Laptop,1,1700.0,2019-03-12 20:54:00,990 Wilson St, San Francisco,CA,94016 +168264,27in FHD Monitor,1,149.99,2019-03-31 13:35:00,204 Jackson St, Boston,MA,02215 +168265,iPhone,1,700.0,2019-03-01 07:55:00,185 Lakeview St, Atlanta,GA,30301 +168266,AA Batteries (4-pack),1,3.84,2019-03-17 14:33:00,367 Adams St, San Francisco,CA,94016 +168267,Apple Airpods Headphones,1,150.0,2019-03-16 16:34:00,581 Center St, Atlanta,GA,30301 +168268,Lightning Charging Cable,1,14.95,2019-03-06 10:09:00,491 Maple St, Boston,MA,02215 +168269,Apple Airpods Headphones,1,150.0,2019-03-29 20:53:00,160 Chestnut St, New York City,NY,10001 +168270,Bose SoundSport Headphones,1,99.99,2019-03-01 05:46:00,343 Chestnut St, San Francisco,CA,94016 +168271,AA Batteries (4-pack),1,3.84,2019-03-29 22:00:00,842 Madison St, Austin,TX,73301 +168272,27in FHD Monitor,1,149.99,2019-03-05 17:42:00,339 Forest St, Portland,OR,97035 +168273,Wired Headphones,2,11.99,2019-03-15 08:29:00,901 12th St, Atlanta,GA,30301 +168274,Apple Airpods Headphones,1,150.0,2019-03-18 15:57:00,59 14th St, Boston,MA,02215 +168275,AA Batteries (4-pack),1,3.84,2019-03-11 15:26:00,175 Washington St, Dallas,TX,75001 +168276,Bose SoundSport Headphones,1,99.99,2019-03-11 09:16:00,438 Willow St, Atlanta,GA,30301 +168277,Apple Airpods Headphones,1,150.0,2019-03-18 16:01:00,458 Willow St, San Francisco,CA,94016 +168278,Wired Headphones,1,11.99,2019-03-14 20:04:00,332 11th St, Seattle,WA,98101 +168279,34in Ultrawide Monitor,1,379.99,2019-03-19 19:25:00,18 Center St, Los Angeles,CA,90001 +168280,Lightning Charging Cable,1,14.95,2019-03-23 16:52:00,317 Lincoln St, Seattle,WA,98101 +168281,Apple Airpods Headphones,1,150.0,2019-03-03 16:22:00,985 Lincoln St, San Francisco,CA,94016 +168282,USB-C Charging Cable,1,11.95,2019-03-16 11:58:00,198 Madison St, Boston,MA,02215 +168282,Flatscreen TV,2,300.0,2019-03-16 11:58:00,198 Madison St, Boston,MA,02215 +168283,Apple Airpods Headphones,1,150.0,2019-03-15 13:11:00,632 Willow St, Boston,MA,02215 +168284,Wired Headphones,1,11.99,2019-03-25 19:27:00,654 Center St, Seattle,WA,98101 +168285,ThinkPad Laptop,1,999.99,2019-03-08 18:52:00,580 Adams St, Los Angeles,CA,90001 +168286,Bose SoundSport Headphones,1,99.99,2019-03-15 13:04:00,781 Adams St, Atlanta,GA,30301 +168287,AAA Batteries (4-pack),1,2.99,2019-03-06 17:55:00,795 South St, Boston,MA,02215 +168288,USB-C Charging Cable,1,11.95,2019-03-27 21:47:00,470 Main St, Los Angeles,CA,90001 +168289,AA Batteries (4-pack),1,3.84,2019-03-24 08:58:00,452 Lakeview St, Boston,MA,02215 +168290,AAA Batteries (4-pack),1,2.99,2019-03-19 16:12:00,660 Center St, Los Angeles,CA,90001 +168291,Bose SoundSport Headphones,1,99.99,2019-03-15 22:08:00,337 Dogwood St, Seattle,WA,98101 +168292,Lightning Charging Cable,1,14.95,2019-03-20 17:00:00,706 Hickory St, Los Angeles,CA,90001 +168293,34in Ultrawide Monitor,1,379.99,2019-03-14 00:54:00,379 Sunset St, Portland,ME,04101 +168294,AA Batteries (4-pack),1,3.84,2019-03-30 16:21:00,234 Park St, Boston,MA,02215 +168295,Lightning Charging Cable,1,14.95,2019-03-10 21:17:00,275 Jefferson St, San Francisco,CA,94016 +168296,AAA Batteries (4-pack),1,2.99,2019-03-02 21:14:00,409 Willow St, San Francisco,CA,94016 +168297,Bose SoundSport Headphones,1,99.99,2019-03-06 11:57:00,903 North St, San Francisco,CA,94016 +168298,USB-C Charging Cable,1,11.95,2019-03-20 14:31:00,372 6th St, Dallas,TX,75001 +168299,AAA Batteries (4-pack),1,2.99,2019-03-31 10:38:00,212 Jefferson St, Los Angeles,CA,90001 +168300,AA Batteries (4-pack),1,3.84,2019-03-06 11:01:00,617 1st St, Boston,MA,02215 +168301,USB-C Charging Cable,1,11.95,2019-03-15 10:26:00,18 Maple St, Seattle,WA,98101 +168302,Wired Headphones,1,11.99,2019-03-25 20:52:00,10 Sunset St, New York City,NY,10001 +168303,USB-C Charging Cable,1,11.95,2019-03-06 15:11:00,68 Main St, Atlanta,GA,30301 +168304,Bose SoundSport Headphones,1,99.99,2019-03-17 09:00:00,229 Hickory St, Portland,OR,97035 +168305,AAA Batteries (4-pack),1,2.99,2019-03-01 14:54:00,281 Park St, Los Angeles,CA,90001 +168306,AA Batteries (4-pack),1,3.84,2019-03-25 12:39:00,445 Pine St, Los Angeles,CA,90001 +168307,AAA Batteries (4-pack),2,2.99,2019-03-16 19:57:00,140 5th St, Los Angeles,CA,90001 +168308,Lightning Charging Cable,1,14.95,2019-03-04 17:52:00,344 14th St, Boston,MA,02215 +168309,Apple Airpods Headphones,1,150.0,2019-03-26 21:32:00,86 Ridge St, New York City,NY,10001 +168310,Vareebadd Phone,1,400.0,2019-03-12 10:07:00,400 Adams St, Los Angeles,CA,90001 +168311,USB-C Charging Cable,1,11.95,2019-03-28 12:26:00,243 5th St, Los Angeles,CA,90001 +168312,Wired Headphones,1,11.99,2019-03-31 22:26:00,580 Washington St, Los Angeles,CA,90001 +168313,Flatscreen TV,1,300.0,2019-03-09 10:44:00,914 12th St, San Francisco,CA,94016 +168314,USB-C Charging Cable,1,11.95,2019-03-09 11:06:00,403 2nd St, San Francisco,CA,94016 +168315,AA Batteries (4-pack),2,3.84,2019-03-15 14:18:00,80 Pine St, Portland,OR,97035 +168316,AAA Batteries (4-pack),2,2.99,2019-03-06 02:20:00,982 Walnut St, Austin,TX,73301 +168317,Lightning Charging Cable,1,14.95,2019-03-27 22:18:00,660 Main St, New York City,NY,10001 +168318,Lightning Charging Cable,1,14.95,2019-03-01 09:20:00,478 Lake St, Boston,MA,02215 +168319,27in 4K Gaming Monitor,1,389.99,2019-03-02 17:04:00,818 Dogwood St, Seattle,WA,98101 +168320,27in FHD Monitor,1,149.99,2019-03-02 19:32:00,530 13th St, Los Angeles,CA,90001 +168321,AA Batteries (4-pack),1,3.84,2019-03-31 21:51:00,410 Ridge St, San Francisco,CA,94016 +168322,AAA Batteries (4-pack),1,2.99,2019-03-28 13:56:00,400 Madison St, Los Angeles,CA,90001 +168323,AAA Batteries (4-pack),1,2.99,2019-03-11 13:15:00,691 Chestnut St, Los Angeles,CA,90001 +168324,27in FHD Monitor,1,149.99,2019-03-27 14:29:00,528 7th St, Los Angeles,CA,90001 +168325,AA Batteries (4-pack),1,3.84,2019-03-23 20:56:00,589 2nd St, San Francisco,CA,94016 +168326,Bose SoundSport Headphones,1,99.99,2019-03-01 16:19:00,404 Dogwood St, Dallas,TX,75001 +168327,Apple Airpods Headphones,1,150.0,2019-03-19 13:23:00,956 Madison St, San Francisco,CA,94016 +168328,USB-C Charging Cable,1,11.95,2019-03-11 13:46:00,595 Walnut St, San Francisco,CA,94016 +168329,USB-C Charging Cable,1,11.95,2019-03-10 12:10:00,231 Willow St, Portland,OR,97035 +168330,Flatscreen TV,1,300.0,2019-03-02 01:14:00,274 4th St, Los Angeles,CA,90001 +168331,AAA Batteries (4-pack),2,2.99,2019-03-16 16:05:00,62 12th St, Los Angeles,CA,90001 +168332,Lightning Charging Cable,1,14.95,2019-03-11 10:30:00,280 Sunset St, San Francisco,CA,94016 +168333,Apple Airpods Headphones,1,150.0,2019-03-28 17:54:00,422 Jackson St, San Francisco,CA,94016 +168333,AAA Batteries (4-pack),1,2.99,2019-03-28 17:54:00,422 Jackson St, San Francisco,CA,94016 +168334,USB-C Charging Cable,2,11.95,2019-03-18 15:32:00,300 Cherry St, Austin,TX,73301 +168335,Wired Headphones,1,11.99,2019-03-29 18:37:00,457 Wilson St, Los Angeles,CA,90001 +168336,Apple Airpods Headphones,1,150.0,2019-03-20 22:54:00,184 Ridge St, New York City,NY,10001 +168337,Lightning Charging Cable,1,14.95,2019-03-01 12:38:00,40 2nd St, San Francisco,CA,94016 +168338,27in 4K Gaming Monitor,1,389.99,2019-03-29 14:17:00,872 Lincoln St, Austin,TX,73301 +168339,Lightning Charging Cable,1,14.95,2019-03-30 13:32:00,955 9th St, Boston,MA,02215 +168340,Bose SoundSport Headphones,1,99.99,2019-03-02 13:42:00,19 5th St, Dallas,TX,75001 +168341,Bose SoundSport Headphones,1,99.99,2019-03-02 14:26:00,117 Meadow St, San Francisco,CA,94016 +168342,AAA Batteries (4-pack),2,2.99,2019-03-14 16:30:00,374 Church St, Boston,MA,02215 +168343,Lightning Charging Cable,1,14.95,2019-03-08 09:57:00,107 Walnut St, San Francisco,CA,94016 +168344,AA Batteries (4-pack),1,3.84,2019-03-19 13:52:00,41 Madison St, Atlanta,GA,30301 +168345,AA Batteries (4-pack),1,3.84,2019-03-26 20:53:00,747 Walnut St, San Francisco,CA,94016 +168346,USB-C Charging Cable,1,11.95,2019-03-01 23:45:00,319 Washington St, San Francisco,CA,94016 +168347,AAA Batteries (4-pack),4,2.99,2019-03-16 02:07:00,476 Walnut St, Los Angeles,CA,90001 +168348,AAA Batteries (4-pack),1,2.99,2019-03-10 11:18:00,943 Jefferson St, Atlanta,GA,30301 +168349,AAA Batteries (4-pack),2,2.99,2019-03-03 08:56:00,113 Center St, Boston,MA,02215 +168350,USB-C Charging Cable,1,11.95,2019-03-31 23:03:00,863 River St, San Francisco,CA,94016 +168351,USB-C Charging Cable,1,11.95,2019-03-25 15:06:00,325 Wilson St, San Francisco,CA,94016 +168352,27in FHD Monitor,1,149.99,2019-03-10 07:49:00,76 1st St, New York City,NY,10001 +168353,Macbook Pro Laptop,1,1700.0,2019-03-20 12:49:00,915 Spruce St, Atlanta,GA,30301 +168354,Apple Airpods Headphones,1,150.0,2019-03-23 19:01:00,784 5th St, Los Angeles,CA,90001 +168355,ThinkPad Laptop,1,999.99,2019-03-11 20:26:00,383 South St, Seattle,WA,98101 +168356,Apple Airpods Headphones,1,150.0,2019-03-04 16:44:00,239 Cherry St, Austin,TX,73301 +168357,AAA Batteries (4-pack),1,2.99,2019-03-13 14:39:00,511 Maple St, San Francisco,CA,94016 +168358,Macbook Pro Laptop,1,1700.0,2019-03-06 10:58:00,53 Pine St, San Francisco,CA,94016 +168359,iPhone,1,700.0,2019-03-12 17:10:00,520 Washington St, Atlanta,GA,30301 +168360,Lightning Charging Cable,1,14.95,2019-03-19 13:50:00,618 Maple St, Los Angeles,CA,90001 +168361,27in FHD Monitor,1,149.99,2019-03-13 12:08:00,237 Jackson St, New York City,NY,10001 +168362,Bose SoundSport Headphones,1,99.99,2019-03-11 20:56:00,338 North St, New York City,NY,10001 +168363,Wired Headphones,2,11.99,2019-03-05 21:28:00,49 Main St, Atlanta,GA,30301 +168364,Bose SoundSport Headphones,1,99.99,2019-03-11 16:39:00,832 Jackson St, Boston,MA,02215 +168365,AAA Batteries (4-pack),1,2.99,2019-03-10 17:25:00,777 Lakeview St, Portland,OR,97035 +168366,iPhone,1,700.0,2019-03-12 15:41:00,258 5th St, Dallas,TX,75001 +168367,Wired Headphones,2,11.99,2019-03-03 17:28:00,8 11th St, Seattle,WA,98101 +168368,Apple Airpods Headphones,1,150.0,2019-03-05 13:51:00,653 10th St, Seattle,WA,98101 +168369,Lightning Charging Cable,2,14.95,2019-03-10 18:12:00,680 Chestnut St, San Francisco,CA,94016 +168370,Wired Headphones,1,11.99,2019-03-08 18:11:00,959 Washington St, Boston,MA,02215 +168371,ThinkPad Laptop,1,999.99,2019-03-05 21:02:00,699 12th St, Los Angeles,CA,90001 +168372,Apple Airpods Headphones,1,150.0,2019-03-16 18:18:00,629 12th St, Dallas,TX,75001 +168373,USB-C Charging Cable,1,11.95,2019-03-23 16:00:00,251 Wilson St, San Francisco,CA,94016 +168374,Flatscreen TV,1,300.0,2019-03-25 12:09:00,611 Wilson St, Boston,MA,02215 +168375,Apple Airpods Headphones,1,150.0,2019-03-24 13:00:00,673 Willow St, San Francisco,CA,94016 +168376,iPhone,1,700.0,2019-03-28 22:42:00,625 Cherry St, Los Angeles,CA,90001 +168376,Apple Airpods Headphones,1,150.0,2019-03-28 22:42:00,625 Cherry St, Los Angeles,CA,90001 +168377,Macbook Pro Laptop,1,1700.0,2019-03-09 21:37:00,585 Ridge St, Los Angeles,CA,90001 +168378,Wired Headphones,1,11.99,2019-03-03 21:10:00,489 Willow St, Dallas,TX,75001 +168379,AA Batteries (4-pack),2,3.84,2019-03-08 15:09:00,281 Elm St, Los Angeles,CA,90001 +168380,Lightning Charging Cable,1,14.95,2019-03-29 17:03:00,829 Hickory St, Seattle,WA,98101 +168380,AAA Batteries (4-pack),2,2.99,2019-03-29 17:03:00,829 Hickory St, Seattle,WA,98101 +168381,27in 4K Gaming Monitor,1,389.99,2019-03-29 19:55:00,435 Adams St, San Francisco,CA,94016 +168382,Vareebadd Phone,1,400.0,2019-03-04 16:31:00,339 Pine St, Seattle,WA,98101 +168382,USB-C Charging Cable,1,11.95,2019-03-04 16:31:00,339 Pine St, Seattle,WA,98101 +168383,USB-C Charging Cable,1,11.95,2019-03-28 06:51:00,214 Church St, Boston,MA,02215 +168384,Lightning Charging Cable,2,14.95,2019-03-09 22:01:00,784 Johnson St, Boston,MA,02215 +168385,AA Batteries (4-pack),2,3.84,2019-03-23 11:47:00,734 South St, Los Angeles,CA,90001 +168386,Macbook Pro Laptop,1,1700.0,2019-03-02 23:59:00,865 West St, Los Angeles,CA,90001 +168387,AA Batteries (4-pack),1,3.84,2019-03-20 05:51:00,791 Main St, New York City,NY,10001 +168388,Lightning Charging Cable,1,14.95,2019-03-24 13:35:00,886 2nd St, San Francisco,CA,94016 +168389,USB-C Charging Cable,1,11.95,2019-03-17 20:42:00,925 Willow St, San Francisco,CA,94016 +168390,Lightning Charging Cable,1,14.95,2019-03-24 16:46:00,239 Madison St, Seattle,WA,98101 +168391,Bose SoundSport Headphones,1,99.99,2019-03-16 12:15:00,558 Madison St, Atlanta,GA,30301 +168392,Bose SoundSport Headphones,1,99.99,2019-03-09 09:30:00,583 Jefferson St, San Francisco,CA,94016 +168393,27in 4K Gaming Monitor,1,389.99,2019-03-02 17:52:00,864 10th St, San Francisco,CA,94016 +168394,Apple Airpods Headphones,1,150.0,2019-03-28 11:16:00,731 Adams St, Boston,MA,02215 +168395,AAA Batteries (4-pack),3,2.99,2019-03-15 20:11:00,946 10th St, Austin,TX,73301 +168396,Macbook Pro Laptop,1,1700.0,2019-03-13 16:17:00,252 Cherry St, Boston,MA,02215 +168397,USB-C Charging Cable,1,11.95,2019-03-26 18:27:00,258 Chestnut St, Los Angeles,CA,90001 +168398,USB-C Charging Cable,1,11.95,2019-03-03 13:07:00,920 5th St, San Francisco,CA,94016 +168399,Lightning Charging Cable,1,14.95,2019-03-20 15:40:00,516 8th St, Portland,OR,97035 +168400,Flatscreen TV,1,300.0,2019-03-24 23:27:00,10 Spruce St, Dallas,TX,75001 +168401,Google Phone,1,600.0,2019-03-24 16:55:00,162 Cherry St, Austin,TX,73301 +168402,Apple Airpods Headphones,1,150.0,2019-03-09 13:31:00,224 Highland St, Los Angeles,CA,90001 +168403,Lightning Charging Cable,1,14.95,2019-03-29 14:37:00,758 Johnson St, Los Angeles,CA,90001 +168404,AA Batteries (4-pack),1,3.84,2019-03-05 08:13:00,997 Forest St, Boston,MA,02215 +168405,USB-C Charging Cable,1,11.95,2019-03-11 16:57:00,10 10th St, Atlanta,GA,30301 +168406,AA Batteries (4-pack),1,3.84,2019-03-12 10:20:00,489 Hill St, San Francisco,CA,94016 +168407,USB-C Charging Cable,1,11.95,2019-03-12 12:02:00,717 South St, Seattle,WA,98101 +168408,Lightning Charging Cable,1,14.95,2019-03-30 19:06:00,639 Hickory St, San Francisco,CA,94016 +168409,Apple Airpods Headphones,1,150.0,2019-03-15 12:26:00,754 Spruce St, San Francisco,CA,94016 +168410,AAA Batteries (4-pack),1,2.99,2019-03-21 10:07:00,198 11th St, Austin,TX,73301 +168411,Google Phone,1,600.0,2019-03-07 18:19:00,281 7th St, Los Angeles,CA,90001 +168412,AA Batteries (4-pack),1,3.84,2019-03-10 21:46:00,24 Main St, New York City,NY,10001 +168413,Apple Airpods Headphones,1,150.0,2019-03-10 22:54:00,154 West St, Seattle,WA,98101 +168414,Bose SoundSport Headphones,1,99.99,2019-03-23 12:01:00,948 4th St, San Francisco,CA,94016 +168415,Lightning Charging Cable,1,14.95,2019-03-13 12:19:00,719 North St, New York City,NY,10001 +168416,USB-C Charging Cable,1,11.95,2019-03-12 17:13:00,741 Maple St, San Francisco,CA,94016 +168417,iPhone,1,700.0,2019-03-15 01:20:00,398 Pine St, New York City,NY,10001 +168418,USB-C Charging Cable,1,11.95,2019-03-14 15:28:00,377 6th St, Boston,MA,02215 +168419,27in 4K Gaming Monitor,1,389.99,2019-03-04 15:34:00,380 Dogwood St, San Francisco,CA,94016 +168420,Bose SoundSport Headphones,1,99.99,2019-03-27 07:22:00,993 Wilson St, Austin,TX,73301 +168421,AA Batteries (4-pack),1,3.84,2019-03-07 12:18:00,477 6th St, Los Angeles,CA,90001 +168422,34in Ultrawide Monitor,1,379.99,2019-03-28 06:42:00,535 Lakeview St, Atlanta,GA,30301 +168423,Lightning Charging Cable,1,14.95,2019-03-15 19:33:00,671 Ridge St, New York City,NY,10001 +168424,Flatscreen TV,1,300.0,2019-03-05 16:30:00,487 2nd St, Atlanta,GA,30301 +168425,27in 4K Gaming Monitor,1,389.99,2019-03-08 22:52:00,942 2nd St, Dallas,TX,75001 +168426,USB-C Charging Cable,1,11.95,2019-03-11 20:37:00,812 Walnut St, Seattle,WA,98101 +168427,Wired Headphones,1,11.99,2019-03-31 20:44:00,766 River St, Los Angeles,CA,90001 +168428,27in 4K Gaming Monitor,1,389.99,2019-03-09 17:03:00,106 Hickory St, San Francisco,CA,94016 +168429,27in FHD Monitor,1,149.99,2019-03-14 20:27:00,682 Washington St, Austin,TX,73301 +168430,Lightning Charging Cable,1,14.95,2019-03-05 11:24:00,467 South St, San Francisco,CA,94016 +168431,AAA Batteries (4-pack),2,2.99,2019-03-20 09:33:00,638 13th St, Seattle,WA,98101 +168432,AAA Batteries (4-pack),1,2.99,2019-03-24 17:00:00,479 Sunset St, San Francisco,CA,94016 +168433,Bose SoundSport Headphones,1,99.99,2019-03-01 22:11:00,132 Meadow St, San Francisco,CA,94016 +168434,34in Ultrawide Monitor,1,379.99,2019-03-22 10:11:00,787 Park St, San Francisco,CA,94016 +168435,AAA Batteries (4-pack),2,2.99,2019-03-20 14:36:00,907 Cherry St, Seattle,WA,98101 +168436,Lightning Charging Cable,1,14.95,2019-03-16 11:56:00,621 2nd St, San Francisco,CA,94016 +168436,Bose SoundSport Headphones,1,99.99,2019-03-16 11:56:00,621 2nd St, San Francisco,CA,94016 +168437,Bose SoundSport Headphones,1,99.99,2019-03-26 22:03:00,906 Meadow St, Boston,MA,02215 +168438,Google Phone,1,600.0,2019-03-13 21:27:00,570 Lake St, New York City,NY,10001 +168439,Lightning Charging Cable,1,14.95,2019-03-18 21:20:00,878 6th St, Portland,OR,97035 +168440,34in Ultrawide Monitor,1,379.99,2019-03-19 17:06:00,334 5th St, Atlanta,GA,30301 +168441,27in FHD Monitor,1,149.99,2019-03-16 22:09:00,135 1st St, San Francisco,CA,94016 +168442,Wired Headphones,1,11.99,2019-03-13 16:16:00,642 4th St, Boston,MA,02215 +168443,27in 4K Gaming Monitor,1,389.99,2019-03-13 21:46:00,145 Ridge St, San Francisco,CA,94016 +168444,Apple Airpods Headphones,1,150.0,2019-03-04 21:56:00,547 Lakeview St, Los Angeles,CA,90001 +168445,Apple Airpods Headphones,1,150.0,2019-03-15 10:41:00,832 West St, Portland,OR,97035 +168446,ThinkPad Laptop,1,999.99,2019-03-06 20:50:00,398 Center St, San Francisco,CA,94016 +168447,Wired Headphones,2,11.99,2019-03-30 21:08:00,514 Center St, Los Angeles,CA,90001 +168448,AA Batteries (4-pack),1,3.84,2019-03-10 14:19:00,645 8th St, Seattle,WA,98101 +168449,Wired Headphones,2,11.99,2019-03-23 18:08:00,798 8th St, Austin,TX,73301 +168450,27in 4K Gaming Monitor,1,389.99,2019-03-26 13:06:00,577 13th St, New York City,NY,10001 +168451,34in Ultrawide Monitor,1,379.99,2019-03-27 11:03:00,969 Ridge St, New York City,NY,10001 +168452,Macbook Pro Laptop,1,1700.0,2019-03-18 23:10:00,212 Walnut St, Austin,TX,73301 +168453,Lightning Charging Cable,2,14.95,2019-03-23 10:15:00,277 Lake St, New York City,NY,10001 +168454,iPhone,1,700.0,2019-03-27 20:22:00,492 9th St, San Francisco,CA,94016 +168455,Google Phone,1,600.0,2019-03-04 08:19:00,987 5th St, New York City,NY,10001 +168456,AA Batteries (4-pack),2,3.84,2019-03-14 20:43:00,965 Highland St, Portland,OR,97035 +168457,34in Ultrawide Monitor,1,379.99,2019-03-27 20:21:00,799 Wilson St, New York City,NY,10001 +168458,Apple Airpods Headphones,1,150.0,2019-03-05 14:10:00,240 14th St, San Francisco,CA,94016 +168459,Apple Airpods Headphones,1,150.0,2019-03-10 12:25:00,692 Spruce St, Dallas,TX,75001 +168460,Google Phone,1,600.0,2019-03-03 21:38:00,268 Ridge St, San Francisco,CA,94016 +168461,27in 4K Gaming Monitor,1,389.99,2019-03-26 23:11:00,953 11th St, Los Angeles,CA,90001 +168462,iPhone,1,700.0,2019-03-01 20:59:00,406 River St, San Francisco,CA,94016 +168463,Lightning Charging Cable,1,14.95,2019-03-15 22:20:00,700 River St, New York City,NY,10001 +168464,AAA Batteries (4-pack),1,2.99,2019-03-24 21:26:00,842 10th St, San Francisco,CA,94016 +168465,iPhone,1,700.0,2019-03-11 16:57:00,975 4th St, Seattle,WA,98101 +168466,AA Batteries (4-pack),1,3.84,2019-03-06 13:56:00,675 6th St, New York City,NY,10001 +168467,AAA Batteries (4-pack),1,2.99,2019-03-02 02:40:00,60 Lakeview St, San Francisco,CA,94016 +168468,Flatscreen TV,1,300.0,2019-03-19 18:39:00,886 Sunset St, San Francisco,CA,94016 +168469,27in FHD Monitor,1,149.99,2019-03-19 20:30:00,899 Church St, Portland,ME,04101 +168470,AAA Batteries (4-pack),2,2.99,2019-03-05 10:45:00,165 Park St, Seattle,WA,98101 +168471,27in FHD Monitor,1,149.99,2019-03-20 22:17:00,730 Spruce St, Atlanta,GA,30301 +168472,Wired Headphones,1,11.99,2019-03-03 19:52:00,805 13th St, Portland,OR,97035 +168473,USB-C Charging Cable,1,11.95,2019-03-20 23:41:00,889 Walnut St, Los Angeles,CA,90001 +168474,USB-C Charging Cable,1,11.95,2019-03-11 20:48:00,144 Cherry St, Seattle,WA,98101 +168475,27in 4K Gaming Monitor,1,389.99,2019-03-17 13:02:00,174 1st St, San Francisco,CA,94016 +168476,Google Phone,1,600.0,2019-03-27 12:41:00,633 Adams St, Los Angeles,CA,90001 +168477,34in Ultrawide Monitor,1,379.99,2019-03-06 09:10:00,471 Johnson St, Los Angeles,CA,90001 +168478,AAA Batteries (4-pack),1,2.99,2019-03-06 15:47:00,947 8th St, Portland,OR,97035 +168479,AA Batteries (4-pack),1,3.84,2019-03-20 23:05:00,952 Madison St, Portland,OR,97035 +168480,27in FHD Monitor,1,149.99,2019-03-17 17:04:00,346 Meadow St, San Francisco,CA,94016 +168481,Apple Airpods Headphones,1,150.0,2019-03-16 11:08:00,105 4th St, Seattle,WA,98101 +168482,27in FHD Monitor,1,149.99,2019-03-08 14:15:00,466 Lake St, Boston,MA,02215 +168483,Wired Headphones,1,11.99,2019-03-27 19:06:00,421 Park St, Los Angeles,CA,90001 +168484,27in FHD Monitor,1,149.99,2019-03-15 23:21:00,74 Cedar St, New York City,NY,10001 +168485,20in Monitor,1,109.99,2019-03-02 21:38:00,742 Forest St, Atlanta,GA,30301 +168486,Apple Airpods Headphones,1,150.0,2019-03-16 21:24:00,321 4th St, Atlanta,GA,30301 +168487,AA Batteries (4-pack),1,3.84,2019-03-25 22:57:00,939 Hickory St, Portland,OR,97035 +168488,Bose SoundSport Headphones,1,99.99,2019-03-06 18:40:00,7 Church St, San Francisco,CA,94016 +168489,USB-C Charging Cable,1,11.95,2019-03-18 14:48:00,466 9th St, Los Angeles,CA,90001 +168490,Lightning Charging Cable,1,14.95,2019-03-22 20:51:00,97 Church St, Los Angeles,CA,90001 +168491,20in Monitor,1,109.99,2019-03-05 16:25:00,243 1st St, Seattle,WA,98101 +168492,AAA Batteries (4-pack),2,2.99,2019-03-17 22:17:00,965 Center St, Los Angeles,CA,90001 +168493,Lightning Charging Cable,1,14.95,2019-03-16 11:03:00,850 2nd St, Los Angeles,CA,90001 +168494,AAA Batteries (4-pack),1,2.99,2019-03-04 17:39:00,396 Church St, Atlanta,GA,30301 +168495,USB-C Charging Cable,1,11.95,2019-03-07 09:55:00,552 13th St, Seattle,WA,98101 +168496,Google Phone,1,600.0,2019-03-07 09:57:00,368 Adams St, San Francisco,CA,94016 +168497,AAA Batteries (4-pack),3,2.99,2019-03-09 18:26:00,630 4th St, Portland,OR,97035 +168498,Lightning Charging Cable,1,14.95,2019-03-12 15:17:00,360 2nd St, San Francisco,CA,94016 +168499,Wired Headphones,1,11.99,2019-03-21 18:02:00,638 Spruce St, New York City,NY,10001 +168500,Lightning Charging Cable,1,14.95,2019-03-31 12:08:00,718 Church St, San Francisco,CA,94016 +168501,Bose SoundSport Headphones,1,99.99,2019-03-12 08:25:00,46 Johnson St, San Francisco,CA,94016 +168502,AAA Batteries (4-pack),1,2.99,2019-03-24 11:57:00,16 Pine St, San Francisco,CA,94016 +168503,AA Batteries (4-pack),1,3.84,2019-03-02 23:20:00,774 Spruce St, San Francisco,CA,94016 +168504,Apple Airpods Headphones,1,150.0,2019-03-11 16:00:00,688 Lakeview St, Dallas,TX,75001 +168505,AA Batteries (4-pack),1,3.84,2019-03-11 14:04:00,249 11th St, Boston,MA,02215 +168506,AA Batteries (4-pack),2,3.84,2019-03-19 15:38:00,957 Walnut St, Los Angeles,CA,90001 +168507,AA Batteries (4-pack),1,3.84,2019-03-29 13:24:00,481 Lakeview St, Dallas,TX,75001 +168508,Wired Headphones,1,11.99,2019-03-13 15:23:00,630 Washington St, San Francisco,CA,94016 +168509,AA Batteries (4-pack),1,3.84,2019-03-10 12:42:00,351 Cherry St, Austin,TX,73301 +168510,AAA Batteries (4-pack),1,2.99,2019-03-02 20:14:00,227 Meadow St, San Francisco,CA,94016 +168511,USB-C Charging Cable,1,11.95,2019-03-13 22:43:00,184 Ridge St, Boston,MA,02215 +168512,Apple Airpods Headphones,1,150.0,2019-03-30 17:35:00,982 Lakeview St, Austin,TX,73301 +168513,Macbook Pro Laptop,1,1700.0,2019-03-28 15:08:00,172 4th St, Los Angeles,CA,90001 +168514,Apple Airpods Headphones,1,150.0,2019-03-25 18:23:00,290 Church St, Austin,TX,73301 +168515,Wired Headphones,1,11.99,2019-03-12 18:59:00,88 Highland St, San Francisco,CA,94016 +168516,LG Dryer,1,600.0,2019-03-31 13:15:00,699 11th St, Atlanta,GA,30301 +168517,Apple Airpods Headphones,2,150.0,2019-03-25 11:33:00,408 Walnut St, New York City,NY,10001 +168518,Lightning Charging Cable,1,14.95,2019-03-25 22:05:00,511 5th St, New York City,NY,10001 +168519,AA Batteries (4-pack),1,3.84,2019-03-19 15:48:00,504 Spruce St, Boston,MA,02215 +168520,Lightning Charging Cable,1,14.95,2019-03-07 12:11:00,432 1st St, Los Angeles,CA,90001 +168521,AAA Batteries (4-pack),1,2.99,2019-03-24 02:10:00,389 West St, Dallas,TX,75001 +168522,AA Batteries (4-pack),2,3.84,2019-03-14 20:36:00,537 Sunset St, Portland,OR,97035 +168523,Lightning Charging Cable,1,14.95,2019-03-31 12:46:00,385 Lincoln St, Boston,MA,02215 +168524,27in FHD Monitor,1,149.99,2019-03-21 19:58:00,41 Highland St, Atlanta,GA,30301 +168525,Lightning Charging Cable,1,14.95,2019-03-06 19:27:00,14 2nd St, New York City,NY,10001 +168526,Bose SoundSport Headphones,1,99.99,2019-03-14 11:05:00,10 Pine St, San Francisco,CA,94016 +168527,iPhone,1,700.0,2019-03-02 19:43:00,67 Jackson St, Boston,MA,02215 +168528,AAA Batteries (4-pack),3,2.99,2019-03-24 17:48:00,264 Cedar St, Los Angeles,CA,90001 +168529,Bose SoundSport Headphones,1,99.99,2019-03-23 19:32:00,609 6th St, San Francisco,CA,94016 +168530,Lightning Charging Cable,1,14.95,2019-03-12 10:56:00,206 Adams St, Seattle,WA,98101 +168531,20in Monitor,1,109.99,2019-03-03 13:55:00,913 Park St, New York City,NY,10001 +168532,20in Monitor,1,109.99,2019-03-04 10:30:00,527 Cedar St, Dallas,TX,75001 +168533,34in Ultrawide Monitor,1,379.99,2019-03-28 18:16:00,107 13th St, San Francisco,CA,94016 +168534,ThinkPad Laptop,1,999.99,2019-03-05 19:48:00,449 Church St, San Francisco,CA,94016 +168535,Wired Headphones,2,11.99,2019-03-20 16:47:00,129 8th St, Atlanta,GA,30301 +168536,AA Batteries (4-pack),1,3.84,2019-03-25 23:54:00,688 Hill St, Los Angeles,CA,90001 +168537,Macbook Pro Laptop,1,1700.0,2019-03-06 20:18:00,161 North St, San Francisco,CA,94016 +168538,Apple Airpods Headphones,1,150.0,2019-03-30 07:32:00,901 Wilson St, Los Angeles,CA,90001 +168539,AA Batteries (4-pack),1,3.84,2019-03-01 13:27:00,101 12th St, San Francisco,CA,94016 +168540,Lightning Charging Cable,1,14.95,2019-03-06 08:17:00,657 6th St, Portland,OR,97035 +168541,Google Phone,1,600.0,2019-03-28 13:34:00,644 Wilson St, San Francisco,CA,94016 +168542,34in Ultrawide Monitor,1,379.99,2019-03-09 01:16:00,740 7th St, Austin,TX,73301 +168543,AAA Batteries (4-pack),1,2.99,2019-03-09 03:28:00,923 North St, San Francisco,CA,94016 +168544,AAA Batteries (4-pack),1,2.99,2019-03-17 22:04:00,315 Washington St, Boston,MA,02215 +168545,USB-C Charging Cable,1,11.95,2019-03-18 12:57:00,185 Adams St, Atlanta,GA,30301 +168546,Flatscreen TV,1,300.0,2019-03-19 07:56:00,670 Hickory St, Dallas,TX,75001 +168547,Bose SoundSport Headphones,1,99.99,2019-03-20 11:49:00,577 4th St, Dallas,TX,75001 +168548,Wired Headphones,1,11.99,2019-03-20 16:41:00,201 Lincoln St, Dallas,TX,75001 +168549,Apple Airpods Headphones,1,150.0,2019-03-05 21:35:00,612 West St, San Francisco,CA,94016 +168550,34in Ultrawide Monitor,1,379.99,2019-03-21 15:00:00,358 Ridge St, Seattle,WA,98101 +168551,Google Phone,1,600.0,2019-03-06 15:16:00,429 13th St, Los Angeles,CA,90001 +168552,AAA Batteries (4-pack),1,2.99,2019-03-08 17:17:00,223 Madison St, Boston,MA,02215 +168553,ThinkPad Laptop,1,999.99,2019-03-17 12:10:00,746 Johnson St, San Francisco,CA,94016 +168554,iPhone,1,700.0,2019-03-22 22:52:00,857 Pine St, Atlanta,GA,30301 +168555,Wired Headphones,1,11.99,2019-03-01 08:47:00,751 Elm St, San Francisco,CA,94016 +168556,20in Monitor,1,109.99,2019-03-10 09:03:00,528 Hickory St, Boston,MA,02215 +168557,Apple Airpods Headphones,1,150.0,2019-03-12 20:18:00,787 Dogwood St, New York City,NY,10001 +168558,Apple Airpods Headphones,1,150.0,2019-03-03 18:09:00,205 Center St, Boston,MA,02215 +168559,AA Batteries (4-pack),1,3.84,2019-03-12 08:07:00,782 Cherry St, Seattle,WA,98101 +168560,iPhone,1,700.0,2019-03-09 07:52:00,214 5th St, Atlanta,GA,30301 +168561,iPhone,1,700.0,2019-03-27 22:23:00,702 5th St, San Francisco,CA,94016 +168561,Lightning Charging Cable,1,14.95,2019-03-27 22:23:00,702 5th St, San Francisco,CA,94016 +168562,Lightning Charging Cable,1,14.95,2019-03-03 20:10:00,448 Hickory St, Austin,TX,73301 +168563,Wired Headphones,2,11.99,2019-03-27 13:45:00,914 South St, Boston,MA,02215 +168564,AA Batteries (4-pack),1,3.84,2019-03-11 19:51:00,120 Willow St, San Francisco,CA,94016 +168565,Wired Headphones,1,11.99,2019-03-17 13:54:00,160 Meadow St, San Francisco,CA,94016 +168566,Lightning Charging Cable,1,14.95,2019-03-30 17:05:00,748 Ridge St, Seattle,WA,98101 +168567,Apple Airpods Headphones,1,150.0,2019-03-26 12:30:00,828 Cherry St, Portland,OR,97035 +168568,20in Monitor,1,109.99,2019-03-31 02:01:00,262 Elm St, Austin,TX,73301 +168569,iPhone,1,700.0,2019-03-27 13:31:00,241 Hill St, Austin,TX,73301 +168570,27in FHD Monitor,1,149.99,2019-03-22 00:30:00,956 Dogwood St, Atlanta,GA,30301 +168571,Apple Airpods Headphones,1,150.0,2019-03-25 11:00:00,472 Johnson St, Portland,OR,97035 +168572,AA Batteries (4-pack),1,3.84,2019-03-10 17:33:00,183 Spruce St, Seattle,WA,98101 +168573,Lightning Charging Cable,1,14.95,2019-03-27 06:41:00,516 Walnut St, New York City,NY,10001 +168574,Lightning Charging Cable,1,14.95,2019-03-13 12:01:00,362 4th St, San Francisco,CA,94016 +168575,AA Batteries (4-pack),1,3.84,2019-03-12 10:13:00,818 Johnson St, San Francisco,CA,94016 +168576,AA Batteries (4-pack),4,3.84,2019-03-06 10:44:00,165 4th St, Los Angeles,CA,90001 +168577,Apple Airpods Headphones,1,150.0,2019-03-11 15:07:00,809 Adams St, San Francisco,CA,94016 +168578,Macbook Pro Laptop,1,1700.0,2019-03-25 09:11:00,848 Church St, Los Angeles,CA,90001 +168579,Bose SoundSport Headphones,1,99.99,2019-03-04 12:32:00,876 Hickory St, Portland,OR,97035 +168580,USB-C Charging Cable,1,11.95,2019-03-12 11:29:00,745 9th St, New York City,NY,10001 +168581,USB-C Charging Cable,1,11.95,2019-03-21 15:54:00,558 Willow St, Los Angeles,CA,90001 +168582,27in FHD Monitor,1,149.99,2019-03-27 14:42:00,202 Chestnut St, Los Angeles,CA,90001 +168583,Wired Headphones,1,11.99,2019-03-30 09:20:00,19 Walnut St, San Francisco,CA,94016 +168584,AAA Batteries (4-pack),3,2.99,2019-03-14 19:56:00,631 9th St, Los Angeles,CA,90001 +168585,AAA Batteries (4-pack),2,2.99,2019-03-01 10:51:00,171 5th St, Atlanta,GA,30301 +168586,AA Batteries (4-pack),1,3.84,2019-03-12 01:00:00,367 Lake St, Atlanta,GA,30301 +168587,27in FHD Monitor,1,149.99,2019-03-22 00:26:00,54 7th St, San Francisco,CA,94016 +168588,Apple Airpods Headphones,1,150.0,2019-03-20 21:28:00,829 4th St, Boston,MA,02215 +168589,AAA Batteries (4-pack),1,2.99,2019-03-04 11:09:00,877 13th St, Austin,TX,73301 +168590,Google Phone,1,600.0,2019-03-16 10:21:00,521 Main St, New York City,NY,10001 +168591,Wired Headphones,1,11.99,2019-03-20 21:33:00,955 Spruce St, Los Angeles,CA,90001 +168592,Wired Headphones,2,11.99,2019-03-21 21:01:00,602 Jackson St, Los Angeles,CA,90001 +168593,Bose SoundSport Headphones,1,99.99,2019-03-22 07:46:00,804 Hickory St, Boston,MA,02215 +168594,Google Phone,1,600.0,2019-03-16 08:47:00,569 Walnut St, Los Angeles,CA,90001 +168595,27in FHD Monitor,1,149.99,2019-03-09 15:39:00,944 14th St, Boston,MA,02215 +168596,27in FHD Monitor,1,149.99,2019-03-21 18:29:00,987 13th St, Los Angeles,CA,90001 +168597,Google Phone,1,600.0,2019-03-03 12:22:00,802 River St, San Francisco,CA,94016 +168598,USB-C Charging Cable,1,11.95,2019-03-18 15:39:00,339 14th St, San Francisco,CA,94016 +168599,Lightning Charging Cable,1,14.95,2019-03-02 13:53:00,387 Wilson St, Atlanta,GA,30301 +168600,USB-C Charging Cable,1,11.95,2019-03-23 19:09:00,593 Spruce St, Seattle,WA,98101 +168601,Lightning Charging Cable,1,14.95,2019-03-06 11:09:00,881 Hickory St, Boston,MA,02215 +168602,Wired Headphones,1,11.99,2019-03-30 12:28:00,165 River St, Portland,OR,97035 +168603,Google Phone,1,600.0,2019-03-15 15:38:00,380 Cherry St, San Francisco,CA,94016 +168604,Google Phone,1,600.0,2019-03-25 11:10:00,762 4th St, Los Angeles,CA,90001 +168604,USB-C Charging Cable,1,11.95,2019-03-25 11:10:00,762 4th St, Los Angeles,CA,90001 +168605,Apple Airpods Headphones,1,150.0,2019-03-17 23:40:00,625 Chestnut St, San Francisco,CA,94016 +168606,USB-C Charging Cable,1,11.95,2019-03-05 20:25:00,775 Highland St, Portland,OR,97035 +168607,iPhone,1,700.0,2019-03-20 08:42:00,68 Pine St, Dallas,TX,75001 +168607,Apple Airpods Headphones,1,150.0,2019-03-20 08:42:00,68 Pine St, Dallas,TX,75001 +168607,Bose SoundSport Headphones,1,99.99,2019-03-20 08:42:00,68 Pine St, Dallas,TX,75001 +168608,AA Batteries (4-pack),1,3.84,2019-03-25 21:32:00,999 2nd St, Portland,OR,97035 +168609,Vareebadd Phone,1,400.0,2019-03-11 14:03:00,26 Spruce St, Atlanta,GA,30301 +168610,Bose SoundSport Headphones,1,99.99,2019-03-04 16:08:00,512 11th St, Boston,MA,02215 +168611,AA Batteries (4-pack),1,3.84,2019-03-24 06:12:00,408 West St, Boston,MA,02215 +168612,AA Batteries (4-pack),2,3.84,2019-03-07 16:19:00,47 6th St, New York City,NY,10001 +168613,27in FHD Monitor,1,149.99,2019-03-13 18:46:00,74 7th St, Portland,OR,97035 +168614,Flatscreen TV,1,300.0,2019-03-15 16:51:00,944 Wilson St, Boston,MA,02215 +168615,ThinkPad Laptop,1,999.99,2019-03-12 10:33:00,236 Meadow St, Atlanta,GA,30301 +168616,Wired Headphones,1,11.99,2019-03-06 18:34:00,481 12th St, Dallas,TX,75001 +168617,27in 4K Gaming Monitor,1,389.99,2019-03-18 06:02:00,73 Madison St, New York City,NY,10001 +168618,Lightning Charging Cable,1,14.95,2019-03-25 22:10:00,39 Wilson St, New York City,NY,10001 +168619,Vareebadd Phone,1,400.0,2019-03-21 11:25:00,185 Jefferson St, Los Angeles,CA,90001 +168619,USB-C Charging Cable,1,11.95,2019-03-21 11:25:00,185 Jefferson St, Los Angeles,CA,90001 +168620,USB-C Charging Cable,1,11.95,2019-03-03 16:12:00,262 South St, Atlanta,GA,30301 +168621,ThinkPad Laptop,1,999.99,2019-03-23 17:53:00,574 6th St, San Francisco,CA,94016 +168622,AAA Batteries (4-pack),2,2.99,2019-03-09 09:35:00,945 Church St, Portland,OR,97035 +168623,Wired Headphones,1,11.99,2019-03-28 09:37:00,356 Lincoln St, San Francisco,CA,94016 +168624,AAA Batteries (4-pack),1,2.99,2019-03-03 14:33:00,757 Cedar St, Atlanta,GA,30301 +168625,USB-C Charging Cable,1,11.95,2019-03-19 17:02:00,452 Sunset St, Dallas,TX,75001 +168626,27in FHD Monitor,1,149.99,2019-03-03 11:07:00,510 Center St, New York City,NY,10001 +168627,AA Batteries (4-pack),1,3.84,2019-03-13 19:58:00,242 8th St, San Francisco,CA,94016 +168628,Flatscreen TV,1,300.0,2019-03-14 18:08:00,542 Meadow St, San Francisco,CA,94016 +168629,27in FHD Monitor,1,149.99,2019-03-17 14:52:00,406 Center St, Seattle,WA,98101 +168630,27in 4K Gaming Monitor,1,389.99,2019-03-21 16:06:00,657 Cedar St, Seattle,WA,98101 +168631,Lightning Charging Cable,1,14.95,2019-03-07 21:15:00,533 1st St, Los Angeles,CA,90001 +168631,20in Monitor,1,109.99,2019-03-07 21:15:00,533 1st St, Los Angeles,CA,90001 +168632,AAA Batteries (4-pack),1,2.99,2019-03-31 20:22:00,776 13th St, Los Angeles,CA,90001 +168633,Flatscreen TV,1,300.0,2019-03-27 22:41:00,751 Park St, Atlanta,GA,30301 +168634,Google Phone,1,600.0,2019-03-08 15:02:00,251 8th St, San Francisco,CA,94016 +168635,Macbook Pro Laptop,1,1700.0,2019-03-29 14:50:00,605 Johnson St, Los Angeles,CA,90001 +168636,ThinkPad Laptop,1,999.99,2019-03-06 12:43:00,756 Sunset St, New York City,NY,10001 +168637,AAA Batteries (4-pack),1,2.99,2019-03-31 21:39:00,41 Center St, Boston,MA,02215 +168638,AAA Batteries (4-pack),1,2.99,2019-03-12 18:27:00,448 9th St, Los Angeles,CA,90001 +168639,AA Batteries (4-pack),1,3.84,2019-03-13 15:32:00,61 Dogwood St, Los Angeles,CA,90001 +168640,ThinkPad Laptop,1,999.99,2019-03-15 12:29:00,287 11th St, Los Angeles,CA,90001 +168641,USB-C Charging Cable,1,11.95,2019-03-28 20:52:00,441 West St, Boston,MA,02215 +168642,Lightning Charging Cable,1,14.95,2019-03-26 19:12:00,380 Wilson St, San Francisco,CA,94016 +168643,34in Ultrawide Monitor,1,379.99,2019-03-29 09:51:00,840 Spruce St, New York City,NY,10001 +168644,27in FHD Monitor,1,149.99,2019-03-15 03:00:00,295 10th St, Boston,MA,02215 +168645,Bose SoundSport Headphones,1,99.99,2019-03-19 22:46:00,463 Madison St, Portland,OR,97035 +168646,Bose SoundSport Headphones,1,99.99,2019-03-08 23:57:00,500 Elm St, San Francisco,CA,94016 +168647,AAA Batteries (4-pack),4,2.99,2019-03-10 01:03:00,806 Johnson St, San Francisco,CA,94016 +168648,AAA Batteries (4-pack),1,2.99,2019-03-19 08:11:00,93 13th St, San Francisco,CA,94016 +168649,Lightning Charging Cable,1,14.95,2019-03-19 19:37:00,861 Johnson St, Los Angeles,CA,90001 +168650,AAA Batteries (4-pack),1,2.99,2019-03-15 23:59:00,999 Center St, Los Angeles,CA,90001 +168651,AA Batteries (4-pack),5,3.84,2019-03-07 21:07:00,219 Elm St, Seattle,WA,98101 +168652,Bose SoundSport Headphones,1,99.99,2019-03-06 09:22:00,647 Willow St, Atlanta,GA,30301 +168653,Macbook Pro Laptop,1,1700.0,2019-03-26 21:52:00,369 Chestnut St, Seattle,WA,98101 +168654,Lightning Charging Cable,1,14.95,2019-03-22 11:41:00,106 Hickory St, Atlanta,GA,30301 +168655,Bose SoundSport Headphones,1,99.99,2019-03-28 10:56:00,840 Spruce St, Atlanta,GA,30301 +168656,34in Ultrawide Monitor,1,379.99,2019-03-25 19:34:00,109 12th St, New York City,NY,10001 +168657,USB-C Charging Cable,1,11.95,2019-03-19 22:28:00,968 Spruce St, Los Angeles,CA,90001 +168658,Lightning Charging Cable,1,14.95,2019-03-08 17:42:00,890 Lincoln St, New York City,NY,10001 +168659,USB-C Charging Cable,1,11.95,2019-03-25 20:06:00,607 Cherry St, San Francisco,CA,94016 +168660,Lightning Charging Cable,1,14.95,2019-03-07 18:02:00,704 Lake St, New York City,NY,10001 +168661,AAA Batteries (4-pack),1,2.99,2019-03-26 18:11:00,753 Walnut St, San Francisco,CA,94016 +168662,Apple Airpods Headphones,1,150.0,2019-03-26 10:06:00,939 Lincoln St, Los Angeles,CA,90001 +168663,27in FHD Monitor,1,149.99,2019-03-16 05:55:00,702 10th St, Portland,OR,97035 +168664,ThinkPad Laptop,1,999.99,2019-03-10 08:37:00,672 Maple St, San Francisco,CA,94016 +168665,AAA Batteries (4-pack),1,2.99,2019-03-17 23:23:00,706 Lincoln St, Atlanta,GA,30301 +168666,USB-C Charging Cable,1,11.95,2019-03-17 19:09:00,244 Walnut St, Boston,MA,02215 +168667,Bose SoundSport Headphones,1,99.99,2019-03-29 18:02:00,587 7th St, San Francisco,CA,94016 +168668,Lightning Charging Cable,1,14.95,2019-03-05 15:13:00,695 Ridge St, Atlanta,GA,30301 +168669,AAA Batteries (4-pack),1,2.99,2019-03-29 13:35:00,834 Chestnut St, Los Angeles,CA,90001 +168670,USB-C Charging Cable,1,11.95,2019-03-17 19:34:00,786 Lakeview St, Atlanta,GA,30301 +168671,Wired Headphones,1,11.99,2019-03-30 09:56:00,358 10th St, Seattle,WA,98101 +168672,Apple Airpods Headphones,1,150.0,2019-03-03 00:08:00,626 Adams St, San Francisco,CA,94016 +168673,Bose SoundSport Headphones,1,99.99,2019-03-07 10:31:00,468 Spruce St, Los Angeles,CA,90001 +168674,Google Phone,1,600.0,2019-03-03 09:48:00,658 Cedar St, Seattle,WA,98101 +168674,USB-C Charging Cable,1,11.95,2019-03-03 09:48:00,658 Cedar St, Seattle,WA,98101 +168675,Flatscreen TV,1,300.0,2019-03-30 13:20:00,110 Chestnut St, Seattle,WA,98101 +168676,27in FHD Monitor,1,149.99,2019-03-02 18:36:00,708 Johnson St, Seattle,WA,98101 +168677,USB-C Charging Cable,1,11.95,2019-03-23 12:46:00,300 8th St, San Francisco,CA,94016 +168678,AA Batteries (4-pack),2,3.84,2019-03-20 15:39:00,212 Highland St, Seattle,WA,98101 +168679,Lightning Charging Cable,1,14.95,2019-03-18 20:46:00,166 Cedar St, Austin,TX,73301 +168680,Wired Headphones,1,11.99,2019-03-26 19:27:00,711 Adams St, San Francisco,CA,94016 +168681,iPhone,1,700.0,2019-03-22 18:39:00,308 Washington St, New York City,NY,10001 +168682,20in Monitor,1,109.99,2019-03-20 23:49:00,147 14th St, New York City,NY,10001 +168683,Bose SoundSport Headphones,1,99.99,2019-03-14 20:33:00,817 Sunset St, Seattle,WA,98101 +168684,AA Batteries (4-pack),2,3.84,2019-03-20 00:12:00,206 Willow St, New York City,NY,10001 +168685,AAA Batteries (4-pack),1,2.99,2019-03-22 13:26:00,217 6th St, San Francisco,CA,94016 +168686,USB-C Charging Cable,1,11.95,2019-03-03 20:34:00,881 Lake St, Los Angeles,CA,90001 +168687,Apple Airpods Headphones,1,150.0,2019-03-11 16:35:00,111 Willow St, Dallas,TX,75001 +168688,AA Batteries (4-pack),1,3.84,2019-03-26 21:12:00,15 Elm St, Los Angeles,CA,90001 +168689,Wired Headphones,1,11.99,2019-03-25 07:24:00,658 Cherry St, Boston,MA,02215 +168690,AAA Batteries (4-pack),1,2.99,2019-03-23 17:22:00,750 13th St, San Francisco,CA,94016 +168691,AA Batteries (4-pack),1,3.84,2019-03-14 17:06:00,363 Madison St, San Francisco,CA,94016 +168692,34in Ultrawide Monitor,1,379.99,2019-03-22 12:17:00,953 Pine St, Atlanta,GA,30301 +168693,Flatscreen TV,1,300.0,2019-03-08 19:16:00,332 Maple St, San Francisco,CA,94016 +168694,Bose SoundSport Headphones,1,99.99,2019-03-16 18:21:00,629 Elm St, Seattle,WA,98101 +168694,Wired Headphones,1,11.99,2019-03-16 18:21:00,629 Elm St, Seattle,WA,98101 +168695,USB-C Charging Cable,1,11.95,2019-03-06 12:43:00,820 Church St, Los Angeles,CA,90001 +168696,Wired Headphones,1,11.99,2019-03-30 21:22:00,657 5th St, Dallas,TX,75001 +168697,27in 4K Gaming Monitor,1,389.99,2019-03-08 12:12:00,322 Adams St, Boston,MA,02215 +168698,iPhone,1,700.0,2019-03-30 10:35:00,562 Church St, Dallas,TX,75001 +168699,Apple Airpods Headphones,1,150.0,2019-03-02 15:51:00,657 Adams St, Los Angeles,CA,90001 +168700,Macbook Pro Laptop,1,1700.0,2019-03-06 19:50:00,186 Sunset St, Portland,OR,97035 +168701,ThinkPad Laptop,1,999.99,2019-03-01 11:25:00,706 6th St, Austin,TX,73301 +168702,27in 4K Gaming Monitor,1,389.99,2019-03-14 09:54:00,541 11th St, Los Angeles,CA,90001 +168703,AA Batteries (4-pack),1,3.84,2019-03-15 14:17:00,936 Center St, Boston,MA,02215 +168704,Google Phone,1,600.0,2019-03-01 13:27:00,34 Spruce St, Boston,MA,02215 +168705,AAA Batteries (4-pack),1,2.99,2019-03-02 15:28:00,346 Jefferson St, Dallas,TX,75001 +168706,AAA Batteries (4-pack),1,2.99,2019-03-09 12:48:00,754 1st St, Los Angeles,CA,90001 +168707,iPhone,1,700.0,2019-03-13 23:53:00,729 12th St, New York City,NY,10001 +168708,34in Ultrawide Monitor,1,379.99,2019-03-07 08:21:00,741 Adams St, San Francisco,CA,94016 +168709,AA Batteries (4-pack),5,3.84,2019-03-13 18:28:00,243 8th St, Los Angeles,CA,90001 +168710,Bose SoundSport Headphones,1,99.99,2019-03-01 15:39:00,413 Highland St, Dallas,TX,75001 +168711,AAA Batteries (4-pack),1,2.99,2019-03-02 21:10:00,877 Dogwood St, Los Angeles,CA,90001 +168712,AAA Batteries (4-pack),1,2.99,2019-03-26 16:25:00,627 6th St, San Francisco,CA,94016 +168713,Wired Headphones,1,11.99,2019-03-15 20:13:00,642 North St, Dallas,TX,75001 +168714,AAA Batteries (4-pack),2,2.99,2019-03-02 11:25:00,465 South St, Boston,MA,02215 +168715,AA Batteries (4-pack),1,3.84,2019-03-22 17:52:00,518 Highland St, New York City,NY,10001 +168716,Wired Headphones,1,11.99,2019-03-10 18:36:00,388 Park St, Atlanta,GA,30301 +168717,27in FHD Monitor,1,149.99,2019-03-23 22:10:00,316 Johnson St, Boston,MA,02215 +168718,AAA Batteries (4-pack),2,2.99,2019-03-05 13:39:00,708 River St, San Francisco,CA,94016 +168719,AAA Batteries (4-pack),1,2.99,2019-03-22 20:54:00,168 Washington St, Seattle,WA,98101 +168720,USB-C Charging Cable,1,11.95,2019-03-02 07:54:00,237 West St, San Francisco,CA,94016 +168721,Apple Airpods Headphones,1,150.0,2019-03-31 16:28:00,6 Hill St, San Francisco,CA,94016 +168722,USB-C Charging Cable,1,11.95,2019-03-18 12:36:00,785 Lincoln St, New York City,NY,10001 +168723,USB-C Charging Cable,1,11.95,2019-03-08 22:18:00,979 Washington St, Boston,MA,02215 +168724,Apple Airpods Headphones,1,150.0,2019-03-13 11:25:00,552 Park St, Los Angeles,CA,90001 +168725,USB-C Charging Cable,1,11.95,2019-03-04 22:18:00,571 Cherry St, New York City,NY,10001 +168726,Bose SoundSport Headphones,1,99.99,2019-03-15 15:06:00,641 4th St, Dallas,TX,75001 +168727,34in Ultrawide Monitor,1,379.99,2019-03-22 00:34:00,693 14th St, Los Angeles,CA,90001 +168728,Lightning Charging Cable,1,14.95,2019-03-18 17:53:00,227 4th St, New York City,NY,10001 +168729,AAA Batteries (4-pack),1,2.99,2019-03-31 13:56:00,377 Madison St, New York City,NY,10001 +168730,27in 4K Gaming Monitor,1,389.99,2019-03-19 12:36:00,636 Hill St, Dallas,TX,75001 +168731,27in FHD Monitor,1,149.99,2019-03-20 05:05:00,257 South St, San Francisco,CA,94016 +168732,27in 4K Gaming Monitor,1,389.99,2019-03-31 11:35:00,95 Madison St, Seattle,WA,98101 +168733,Macbook Pro Laptop,1,1700.0,2019-03-22 19:30:00,970 4th St, Los Angeles,CA,90001 +168734,Lightning Charging Cable,1,14.95,2019-03-13 15:33:00,987 Cedar St, Austin,TX,73301 +168735,Lightning Charging Cable,1,14.95,2019-03-24 17:33:00,429 Church St, Seattle,WA,98101 +168736,Apple Airpods Headphones,1,150.0,2019-03-27 15:03:00,407 Maple St, New York City,NY,10001 +168737,Lightning Charging Cable,1,14.95,2019-03-17 20:53:00,616 2nd St, Los Angeles,CA,90001 +168738,Wired Headphones,1,11.99,2019-03-20 18:15:00,9 Cedar St, Atlanta,GA,30301 +168739,AA Batteries (4-pack),1,3.84,2019-03-13 19:39:00,991 Chestnut St, New York City,NY,10001 +168740,27in FHD Monitor,1,149.99,2019-03-29 23:28:00,181 Elm St, San Francisco,CA,94016 +168741,Bose SoundSport Headphones,1,99.99,2019-03-13 14:30:00,707 Sunset St, Portland,OR,97035 +168742,34in Ultrawide Monitor,1,379.99,2019-03-07 22:34:00,953 Lincoln St, Dallas,TX,75001 +168743,Wired Headphones,1,11.99,2019-03-17 18:39:00,194 Hill St, Boston,MA,02215 +168744,AA Batteries (4-pack),1,3.84,2019-03-19 21:39:00,112 Adams St, Boston,MA,02215 +168745,AA Batteries (4-pack),1,3.84,2019-03-01 18:44:00,176 River St, Boston,MA,02215 +168746,USB-C Charging Cable,1,11.95,2019-03-23 12:14:00,112 14th St, Atlanta,GA,30301 +168747,AA Batteries (4-pack),1,3.84,2019-03-18 01:33:00,785 Wilson St, Boston,MA,02215 +168748,Macbook Pro Laptop,1,1700.0,2019-03-20 17:45:00,251 Main St, Los Angeles,CA,90001 +168749,Apple Airpods Headphones,1,150.0,2019-03-24 14:11:00,603 Cedar St, Seattle,WA,98101 +168750,Wired Headphones,1,11.99,2019-03-18 17:07:00,312 9th St, New York City,NY,10001 +168751,Lightning Charging Cable,1,14.95,2019-03-16 09:47:00,199 Chestnut St, Los Angeles,CA,90001 +168752,USB-C Charging Cable,1,11.95,2019-03-11 15:58:00,939 Cherry St, San Francisco,CA,94016 +168753,Lightning Charging Cable,1,14.95,2019-03-15 23:53:00,650 Lincoln St, Portland,OR,97035 +168754,Wired Headphones,1,11.99,2019-03-24 09:42:00,526 Spruce St, San Francisco,CA,94016 +168755,Vareebadd Phone,1,400.0,2019-03-16 10:23:00,790 Hill St, Portland,OR,97035 +168756,34in Ultrawide Monitor,1,379.99,2019-03-14 19:59:00,247 Lincoln St, San Francisco,CA,94016 +168757,ThinkPad Laptop,1,999.99,2019-03-18 20:08:00,609 Main St, San Francisco,CA,94016 +168758,AAA Batteries (4-pack),3,2.99,2019-03-30 10:57:00,134 Elm St, Los Angeles,CA,90001 +168759,Wired Headphones,1,11.99,2019-03-26 10:03:00,238 Jackson St, Atlanta,GA,30301 +168760,AA Batteries (4-pack),1,3.84,2019-03-08 10:09:00,75 Spruce St, San Francisco,CA,94016 +168761,Google Phone,1,600.0,2019-03-04 23:40:00,128 Wilson St, San Francisco,CA,94016 +168762,Lightning Charging Cable,1,14.95,2019-03-30 16:27:00,863 Chestnut St, New York City,NY,10001 +168763,Wired Headphones,1,11.99,2019-03-27 21:30:00,336 Park St, San Francisco,CA,94016 +168764,Bose SoundSport Headphones,1,99.99,2019-03-23 20:52:00,961 North St, Dallas,TX,75001 +168765,AA Batteries (4-pack),2,3.84,2019-03-04 11:42:00,343 6th St, Los Angeles,CA,90001 +168766,Wired Headphones,1,11.99,2019-03-13 19:38:00,310 Ridge St, Austin,TX,73301 +168767,Wired Headphones,1,11.99,2019-03-03 23:10:00,107 Lake St, Seattle,WA,98101 +168768,27in FHD Monitor,1,149.99,2019-03-10 00:52:00,474 Madison St, Los Angeles,CA,90001 +168769,Apple Airpods Headphones,1,150.0,2019-03-28 19:17:00,442 West St, Atlanta,GA,30301 +168770,Bose SoundSport Headphones,1,99.99,2019-03-20 15:01:00,165 Walnut St, Los Angeles,CA,90001 +168771,20in Monitor,1,109.99,2019-03-02 18:25:00,396 Sunset St, Los Angeles,CA,90001 +168772,Bose SoundSport Headphones,1,99.99,2019-03-13 20:46:00,88 Lakeview St, Boston,MA,02215 +168773,Lightning Charging Cable,1,14.95,2019-03-11 20:44:00,720 Madison St, Los Angeles,CA,90001 +168774,AA Batteries (4-pack),1,3.84,2019-03-09 16:54:00,983 Maple St, Boston,MA,02215 +168775,Lightning Charging Cable,1,14.95,2019-03-25 09:33:00,290 Hill St, New York City,NY,10001 +168776,Lightning Charging Cable,1,14.95,2019-03-21 08:54:00,450 Jackson St, Dallas,TX,75001 +168777,iPhone,1,700.0,2019-03-07 14:55:00,247 Pine St, San Francisco,CA,94016 +168777,Lightning Charging Cable,1,14.95,2019-03-07 14:55:00,247 Pine St, San Francisco,CA,94016 +168778,Bose SoundSport Headphones,1,99.99,2019-03-08 15:31:00,874 Church St, Seattle,WA,98101 +168778,27in FHD Monitor,1,149.99,2019-03-08 15:31:00,874 Church St, Seattle,WA,98101 +168779,AAA Batteries (4-pack),1,2.99,2019-03-05 19:53:00,908 North St, New York City,NY,10001 +168780,LG Washing Machine,1,600.0,2019-03-08 12:16:00,766 Pine St, Portland,OR,97035 +168781,27in 4K Gaming Monitor,1,389.99,2019-03-30 10:35:00,581 Hickory St, Boston,MA,02215 +168782,AA Batteries (4-pack),1,3.84,2019-03-31 21:37:00,956 Dogwood St, Boston,MA,02215 +168783,Wired Headphones,1,11.99,2019-03-14 18:30:00,35 South St, Atlanta,GA,30301 +168784,USB-C Charging Cable,1,11.95,2019-03-07 09:29:00,43 Johnson St, Austin,TX,73301 +168785,Bose SoundSport Headphones,1,99.99,2019-03-24 20:48:00,366 Hickory St, New York City,NY,10001 +168786,Lightning Charging Cable,1,14.95,2019-03-20 01:18:00,55 Wilson St, San Francisco,CA,94016 +168787,USB-C Charging Cable,1,11.95,2019-03-13 18:55:00,877 Dogwood St, San Francisco,CA,94016 +168788,AAA Batteries (4-pack),2,2.99,2019-03-26 14:16:00,902 5th St, Boston,MA,02215 +168789,AA Batteries (4-pack),3,3.84,2019-03-22 11:26:00,555 11th St, New York City,NY,10001 +168790,Apple Airpods Headphones,1,150.0,2019-03-26 20:14:00,121 West St, Boston,MA,02215 +168791,ThinkPad Laptop,1,999.99,2019-03-22 14:28:00,665 Maple St, San Francisco,CA,94016 +168792,27in FHD Monitor,1,149.99,2019-03-17 12:44:00,325 South St, San Francisco,CA,94016 +168793,Wired Headphones,1,11.99,2019-03-27 07:37:00,484 River St, Los Angeles,CA,90001 +168794,27in FHD Monitor,1,149.99,2019-03-26 13:54:00,124 Highland St, Dallas,TX,75001 +168795,iPhone,1,700.0,2019-03-24 16:57:00,807 9th St, New York City,NY,10001 +168796,Google Phone,1,600.0,2019-03-07 01:17:00,947 Main St, Dallas,TX,75001 +168797,Bose SoundSport Headphones,1,99.99,2019-03-02 18:45:00,211 12th St, Portland,OR,97035 +168798,Apple Airpods Headphones,1,150.0,2019-03-08 14:07:00,155 Forest St, New York City,NY,10001 +168799,Apple Airpods Headphones,1,150.0,2019-03-04 13:41:00,285 Center St, Austin,TX,73301 +168800,AAA Batteries (4-pack),1,2.99,2019-03-07 18:18:00,422 North St, Los Angeles,CA,90001 +168801,Apple Airpods Headphones,1,150.0,2019-03-12 23:18:00,749 Meadow St, New York City,NY,10001 +168802,Lightning Charging Cable,1,14.95,2019-03-09 20:25:00,197 Forest St, Atlanta,GA,30301 +168803,AAA Batteries (4-pack),1,2.99,2019-03-15 16:26:00,395 Madison St, Seattle,WA,98101 +168804,Lightning Charging Cable,1,14.95,2019-03-19 19:24:00,282 Forest St, Los Angeles,CA,90001 +168805,AA Batteries (4-pack),1,3.84,2019-03-20 13:09:00,29 Spruce St, Austin,TX,73301 +168806,iPhone,1,700.0,2019-03-31 16:55:00,81 Center St, Los Angeles,CA,90001 +168806,Lightning Charging Cable,1,14.95,2019-03-31 16:55:00,81 Center St, Los Angeles,CA,90001 +168807,AAA Batteries (4-pack),1,2.99,2019-03-24 19:05:00,872 8th St, New York City,NY,10001 +168808,USB-C Charging Cable,1,11.95,2019-03-17 22:22:00,830 12th St, San Francisco,CA,94016 +168809,AA Batteries (4-pack),1,3.84,2019-03-12 19:19:00,623 14th St, San Francisco,CA,94016 +168810,Bose SoundSport Headphones,1,99.99,2019-03-26 14:45:00,664 Forest St, Los Angeles,CA,90001 +168811,34in Ultrawide Monitor,1,379.99,2019-03-17 18:18:00,723 River St, San Francisco,CA,94016 +168812,27in FHD Monitor,1,149.99,2019-03-29 18:53:00,775 Elm St, San Francisco,CA,94016 +168813,AA Batteries (4-pack),4,3.84,2019-03-21 14:09:00,430 Pine St, New York City,NY,10001 +168814,Apple Airpods Headphones,1,150.0,2019-03-13 10:04:00,155 Hill St, Portland,OR,97035 +168815,Apple Airpods Headphones,1,150.0,2019-03-06 17:27:00,156 Dogwood St, Boston,MA,02215 +168816,Bose SoundSport Headphones,1,99.99,2019-03-16 15:57:00,485 Hill St, New York City,NY,10001 +168817,AA Batteries (4-pack),1,3.84,2019-03-19 18:04:00,757 8th St, San Francisco,CA,94016 +168818,AAA Batteries (4-pack),1,2.99,2019-03-15 01:05:00,762 River St, Los Angeles,CA,90001 +168818,AA Batteries (4-pack),1,3.84,2019-03-15 01:05:00,762 River St, Los Angeles,CA,90001 +168819,Bose SoundSport Headphones,1,99.99,2019-03-27 12:43:00,288 Chestnut St, San Francisco,CA,94016 +168820,Wired Headphones,4,11.99,2019-03-16 00:02:00,591 14th St, Atlanta,GA,30301 +168821,27in FHD Monitor,1,149.99,2019-03-05 12:07:00,852 Madison St, New York City,NY,10001 +168822,Macbook Pro Laptop,1,1700.0,2019-03-16 14:01:00,502 6th St, Los Angeles,CA,90001 +168823,USB-C Charging Cable,1,11.95,2019-03-22 10:57:00,101 Highland St, San Francisco,CA,94016 +168824,AA Batteries (4-pack),1,3.84,2019-03-27 10:10:00,57 Adams St, Dallas,TX,75001 +168825,USB-C Charging Cable,1,11.95,2019-03-15 15:02:00,900 Meadow St, New York City,NY,10001 +168826,USB-C Charging Cable,1,11.95,2019-03-25 22:20:00,991 Johnson St, Los Angeles,CA,90001 +168827,27in 4K Gaming Monitor,1,389.99,2019-03-29 13:53:00,52 Cedar St, Dallas,TX,75001 +168828,Apple Airpods Headphones,1,150.0,2019-03-02 08:50:00,195 6th St, New York City,NY,10001 +168829,Vareebadd Phone,1,400.0,2019-03-17 10:09:00,337 Cedar St, Boston,MA,02215 +168830,USB-C Charging Cable,1,11.95,2019-03-19 07:44:00,572 10th St, San Francisco,CA,94016 +168831,Bose SoundSport Headphones,2,99.99,2019-03-23 08:44:00,594 Washington St, Austin,TX,73301 +168832,AA Batteries (4-pack),1,3.84,2019-03-23 13:03:00,483 Pine St, Dallas,TX,75001 +168833,AA Batteries (4-pack),1,3.84,2019-03-10 15:11:00,352 North St, San Francisco,CA,94016 +168834,Google Phone,1,600.0,2019-03-01 23:04:00,166 Lincoln St, Dallas,TX,75001 +168835,USB-C Charging Cable,1,11.95,2019-03-31 10:40:00,388 Madison St, San Francisco,CA,94016 +168836,AA Batteries (4-pack),2,3.84,2019-03-31 11:13:00,146 Cherry St, New York City,NY,10001 +168837,Apple Airpods Headphones,1,150.0,2019-03-30 21:05:00,886 Maple St, Seattle,WA,98101 +168838,Bose SoundSport Headphones,1,99.99,2019-03-20 11:24:00,497 Wilson St, Dallas,TX,75001 +168839,iPhone,1,700.0,2019-03-18 21:31:00,810 Jefferson St, Austin,TX,73301 +168840,USB-C Charging Cable,1,11.95,2019-03-17 11:59:00,724 South St, Boston,MA,02215 +168841,USB-C Charging Cable,1,11.95,2019-03-03 11:58:00,206 Washington St, San Francisco,CA,94016 +168842,AA Batteries (4-pack),3,3.84,2019-03-24 16:38:00,598 Dogwood St, Boston,MA,02215 +168843,27in 4K Gaming Monitor,1,389.99,2019-03-26 21:15:00,409 Spruce St, New York City,NY,10001 +168844,Wired Headphones,1,11.99,2019-03-06 13:27:00,871 Washington St, Dallas,TX,75001 +168845,AA Batteries (4-pack),1,3.84,2019-03-16 09:08:00,328 Center St, Los Angeles,CA,90001 +168846,Macbook Pro Laptop,1,1700.0,2019-03-26 19:39:00,589 10th St, San Francisco,CA,94016 +168847,Flatscreen TV,1,300.0,2019-03-04 13:16:00,645 Chestnut St, San Francisco,CA,94016 +168848,AA Batteries (4-pack),1,3.84,2019-03-16 09:23:00,171 Forest St, New York City,NY,10001 +168849,27in FHD Monitor,1,149.99,2019-03-16 19:47:00,320 10th St, New York City,NY,10001 +168850,Flatscreen TV,1,300.0,2019-03-04 14:50:00,877 Cherry St, San Francisco,CA,94016 +168851,USB-C Charging Cable,1,11.95,2019-03-17 12:47:00,423 4th St, New York City,NY,10001 +168852,Bose SoundSport Headphones,1,99.99,2019-03-17 13:39:00,443 Hill St, New York City,NY,10001 +168853,Bose SoundSport Headphones,1,99.99,2019-03-28 17:03:00,848 12th St, San Francisco,CA,94016 +168854,27in 4K Gaming Monitor,1,389.99,2019-03-20 15:45:00,175 Hickory St, Los Angeles,CA,90001 +168855,Lightning Charging Cable,1,14.95,2019-03-01 21:48:00,49 1st St, New York City,NY,10001 +168856,Macbook Pro Laptop,1,1700.0,2019-03-16 13:11:00,848 Church St, Portland,OR,97035 +168857,LG Washing Machine,1,600.0,2019-03-07 18:15:00,118 North St, Portland,ME,04101 +168858,USB-C Charging Cable,1,11.95,2019-03-15 22:58:00,175 Jackson St, Atlanta,GA,30301 +168859,AA Batteries (4-pack),1,3.84,2019-03-28 19:19:00,890 6th St, Los Angeles,CA,90001 +168860,AA Batteries (4-pack),1,3.84,2019-03-23 09:16:00,212 Hickory St, Seattle,WA,98101 +168861,34in Ultrawide Monitor,1,379.99,2019-03-03 09:13:00,92 Jackson St, New York City,NY,10001 +168862,Flatscreen TV,1,300.0,2019-03-13 15:36:00,153 Cedar St, New York City,NY,10001 +168863,USB-C Charging Cable,1,11.95,2019-03-20 12:59:00,702 Washington St, San Francisco,CA,94016 +168864,27in 4K Gaming Monitor,1,389.99,2019-03-06 19:28:00,632 Willow St, Austin,TX,73301 +168865,34in Ultrawide Monitor,1,379.99,2019-03-01 15:33:00,414 2nd St, San Francisco,CA,94016 +168866,Wired Headphones,1,11.99,2019-03-16 21:48:00,458 Park St, Boston,MA,02215 +168867,iPhone,1,700.0,2019-03-23 06:41:00,994 Park St, Los Angeles,CA,90001 +168868,Apple Airpods Headphones,1,150.0,2019-03-09 18:35:00,476 12th St, Boston,MA,02215 +168869,AAA Batteries (4-pack),4,2.99,2019-03-27 10:15:00,501 Main St, San Francisco,CA,94016 +168870,Bose SoundSport Headphones,1,99.99,2019-03-15 19:37:00,931 West St, Dallas,TX,75001 +168871,Lightning Charging Cable,2,14.95,2019-03-14 22:16:00,609 Highland St, New York City,NY,10001 +168872,Google Phone,1,600.0,2019-03-15 17:11:00,314 7th St, Atlanta,GA,30301 +168873,AA Batteries (4-pack),2,3.84,2019-03-24 13:15:00,139 Adams St, Austin,TX,73301 +168874,AA Batteries (4-pack),1,3.84,2019-03-25 19:45:00,869 2nd St, Los Angeles,CA,90001 +168875,Apple Airpods Headphones,1,150.0,2019-03-01 22:30:00,445 Church St, Boston,MA,02215 +168876,AAA Batteries (4-pack),1,2.99,2019-03-15 20:36:00,748 River St, San Francisco,CA,94016 +168877,USB-C Charging Cable,1,11.95,2019-03-12 15:59:00,303 Lincoln St, New York City,NY,10001 +168878,iPhone,1,700.0,2019-03-29 14:48:00,490 2nd St, Portland,OR,97035 +168879,Apple Airpods Headphones,1,150.0,2019-03-15 12:30:00,703 10th St, San Francisco,CA,94016 +168880,Macbook Pro Laptop,1,1700.0,2019-03-28 07:36:00,835 14th St, Dallas,TX,75001 +168881,ThinkPad Laptop,1,999.99,2019-03-13 22:51:00,423 2nd St, New York City,NY,10001 +168882,Wired Headphones,1,11.99,2019-03-11 18:04:00,52 13th St, San Francisco,CA,94016 +168883,USB-C Charging Cable,1,11.95,2019-03-24 09:28:00,877 Sunset St, New York City,NY,10001 +168884,Bose SoundSport Headphones,1,99.99,2019-03-15 09:00:00,22 7th St, Austin,TX,73301 +168885,USB-C Charging Cable,1,11.95,2019-03-30 19:17:00,522 Spruce St, San Francisco,CA,94016 +168886,Wired Headphones,2,11.99,2019-03-08 13:28:00,946 Lincoln St, Los Angeles,CA,90001 +168887,Apple Airpods Headphones,1,150.0,2019-03-22 18:19:00,666 10th St, Seattle,WA,98101 +168888,AA Batteries (4-pack),1,3.84,2019-03-18 14:26:00,815 Hill St, Los Angeles,CA,90001 +168889,Bose SoundSport Headphones,1,99.99,2019-03-09 01:10:00,362 Hill St, Los Angeles,CA,90001 +168890,AAA Batteries (4-pack),1,2.99,2019-03-05 15:27:00,827 1st St, Atlanta,GA,30301 +168890,Wired Headphones,3,11.99,2019-03-05 15:27:00,827 1st St, Atlanta,GA,30301 +168891,Google Phone,1,600.0,2019-03-28 12:44:00,506 West St, San Francisco,CA,94016 +168892,USB-C Charging Cable,1,11.95,2019-03-31 12:58:00,640 11th St, Austin,TX,73301 +168893,Apple Airpods Headphones,1,150.0,2019-03-10 21:56:00,538 Chestnut St, Portland,OR,97035 +168894,34in Ultrawide Monitor,1,379.99,2019-03-08 15:02:00,534 Pine St, Seattle,WA,98101 +168895,Bose SoundSport Headphones,1,99.99,2019-03-28 14:34:00,101 Maple St, New York City,NY,10001 +168896,27in 4K Gaming Monitor,1,389.99,2019-03-12 11:08:00,411 Cherry St, New York City,NY,10001 +168897,Bose SoundSport Headphones,1,99.99,2019-03-29 09:17:00,452 5th St, Portland,OR,97035 +168898,20in Monitor,1,109.99,2019-03-08 12:02:00,617 Maple St, Los Angeles,CA,90001 +168899,AAA Batteries (4-pack),1,2.99,2019-03-04 16:48:00,796 5th St, Portland,OR,97035 +168900,AAA Batteries (4-pack),1,2.99,2019-03-25 15:55:00,623 West St, Los Angeles,CA,90001 +168900,Lightning Charging Cable,1,14.95,2019-03-25 15:55:00,623 West St, Los Angeles,CA,90001 +168901,Macbook Pro Laptop,1,1700.0,2019-03-18 10:30:00,502 13th St, Los Angeles,CA,90001 +168902,AAA Batteries (4-pack),2,2.99,2019-03-02 07:50:00,208 Ridge St, Dallas,TX,75001 +168903,USB-C Charging Cable,2,11.95,2019-03-12 07:46:00,949 Highland St, San Francisco,CA,94016 +168904,AA Batteries (4-pack),1,3.84,2019-03-25 10:05:00,490 9th St, San Francisco,CA,94016 +168905,USB-C Charging Cable,1,11.95,2019-04-01 01:00:00,241 Spruce St, Boston,MA,02215 +168905,ThinkPad Laptop,1,999.99,2019-04-01 01:00:00,241 Spruce St, Boston,MA,02215 +168906,Macbook Pro Laptop,1,1700.0,2019-03-30 21:05:00,417 North St, Los Angeles,CA,90001 +168907,Bose SoundSport Headphones,1,99.99,2019-03-11 17:42:00,427 Elm St, San Francisco,CA,94016 +168908,AA Batteries (4-pack),1,3.84,2019-03-26 22:23:00,413 Main St, Austin,TX,73301 +168909,Lightning Charging Cable,1,14.95,2019-03-28 16:14:00,692 2nd St, Atlanta,GA,30301 +168910,27in 4K Gaming Monitor,1,389.99,2019-03-22 15:40:00,682 Dogwood St, Dallas,TX,75001 +168910,Lightning Charging Cable,1,14.95,2019-03-22 15:40:00,682 Dogwood St, Dallas,TX,75001 +168911,AA Batteries (4-pack),2,3.84,2019-03-02 12:31:00,109 2nd St, Boston,MA,02215 +168912,Wired Headphones,1,11.99,2019-03-24 17:02:00,559 2nd St, Seattle,WA,98101 +168913,27in FHD Monitor,1,149.99,2019-03-16 23:49:00,200 4th St, Los Angeles,CA,90001 +168914,AAA Batteries (4-pack),1,2.99,2019-03-14 16:36:00,865 Center St, New York City,NY,10001 +168915,Apple Airpods Headphones,1,150.0,2019-03-12 22:14:00,819 14th St, New York City,NY,10001 +168916,Macbook Pro Laptop,1,1700.0,2019-03-27 15:30:00,220 Forest St, San Francisco,CA,94016 +168917,Bose SoundSport Headphones,1,99.99,2019-03-03 14:02:00,238 Adams St, New York City,NY,10001 +168918,AA Batteries (4-pack),1,3.84,2019-03-23 10:22:00,31 5th St, Boston,MA,02215 +168919,Flatscreen TV,1,300.0,2019-03-19 06:49:00,293 Lakeview St, Los Angeles,CA,90001 +168920,Lightning Charging Cable,1,14.95,2019-03-16 22:39:00,189 Center St, New York City,NY,10001 +168921,AAA Batteries (4-pack),1,2.99,2019-03-12 18:31:00,590 7th St, Boston,MA,02215 +168922,USB-C Charging Cable,1,11.95,2019-03-06 22:49:00,207 Ridge St, San Francisco,CA,94016 +168923,Flatscreen TV,1,300.0,2019-03-01 12:28:00,862 Spruce St, Los Angeles,CA,90001 +168924,USB-C Charging Cable,1,11.95,2019-03-14 11:05:00,82 Elm St, San Francisco,CA,94016 +168925,iPhone,1,700.0,2019-03-17 11:53:00,499 Lincoln St, Los Angeles,CA,90001 +168926,iPhone,1,700.0,2019-03-19 14:42:00,212 Spruce St, Los Angeles,CA,90001 +168927,iPhone,1,700.0,2019-03-25 21:12:00,93 Spruce St, Atlanta,GA,30301 +168928,AAA Batteries (4-pack),1,2.99,2019-03-31 14:44:00,578 Lake St, San Francisco,CA,94016 +168929,ThinkPad Laptop,1,999.99,2019-03-31 22:20:00,253 North St, Austin,TX,73301 +168930,Lightning Charging Cable,1,14.95,2019-03-17 12:08:00,697 North St, San Francisco,CA,94016 +168931,AA Batteries (4-pack),2,3.84,2019-03-20 18:30:00,284 Center St, San Francisco,CA,94016 +168932,Apple Airpods Headphones,1,150.0,2019-03-22 16:10:00,521 Hickory St, San Francisco,CA,94016 +168933,Apple Airpods Headphones,1,150.0,2019-03-24 12:11:00,67 Church St, New York City,NY,10001 +168934,Flatscreen TV,1,300.0,2019-03-06 04:39:00,627 Chestnut St, Los Angeles,CA,90001 +168935,AAA Batteries (4-pack),2,2.99,2019-03-05 00:14:00,182 Madison St, San Francisco,CA,94016 +168936,ThinkPad Laptop,1,999.99,2019-03-18 10:31:00,749 Madison St, Boston,MA,02215 +168937,AAA Batteries (4-pack),3,2.99,2019-03-09 14:39:00,867 Main St, New York City,NY,10001 +168938,iPhone,1,700.0,2019-03-02 14:42:00,203 South St, San Francisco,CA,94016 +168938,Lightning Charging Cable,1,14.95,2019-03-02 14:42:00,203 South St, San Francisco,CA,94016 +168938,Wired Headphones,1,11.99,2019-03-02 14:42:00,203 South St, San Francisco,CA,94016 +168939,USB-C Charging Cable,1,11.95,2019-03-11 13:45:00,740 Main St, Los Angeles,CA,90001 +168940,USB-C Charging Cable,1,11.95,2019-03-10 13:04:00,427 Maple St, New York City,NY,10001 +168941,Apple Airpods Headphones,1,150.0,2019-03-19 09:40:00,409 1st St, New York City,NY,10001 +168942,Flatscreen TV,1,300.0,2019-03-20 09:08:00,826 Spruce St, Seattle,WA,98101 +168943,ThinkPad Laptop,1,999.99,2019-03-30 09:30:00,277 North St, Los Angeles,CA,90001 +168944,27in FHD Monitor,1,149.99,2019-03-18 08:28:00,830 Lincoln St, Austin,TX,73301 +168945,Apple Airpods Headphones,1,150.0,2019-03-03 01:14:00,105 Lincoln St, Boston,MA,02215 +168946,Lightning Charging Cable,1,14.95,2019-03-20 11:07:00,906 Park St, Los Angeles,CA,90001 +168947,20in Monitor,1,109.99,2019-03-28 15:53:00,485 10th St, Atlanta,GA,30301 +168948,USB-C Charging Cable,1,11.95,2019-03-26 06:33:00,206 Lake St, Boston,MA,02215 +168949,Bose SoundSport Headphones,1,99.99,2019-03-26 17:02:00,895 5th St, Portland,OR,97035 +168950,AAA Batteries (4-pack),3,2.99,2019-03-05 17:25:00,810 Pine St, San Francisco,CA,94016 +168951,27in FHD Monitor,1,149.99,2019-03-01 13:56:00,822 Willow St, Portland,OR,97035 +168952,AAA Batteries (4-pack),2,2.99,2019-03-12 20:10:00,986 Hill St, Portland,OR,97035 +168953,AAA Batteries (4-pack),1,2.99,2019-03-19 13:58:00,675 Willow St, Los Angeles,CA,90001 +168954,AA Batteries (4-pack),2,3.84,2019-03-30 20:47:00,99 11th St, Los Angeles,CA,90001 +168955,USB-C Charging Cable,1,11.95,2019-03-03 19:14:00,230 Ridge St, San Francisco,CA,94016 +168956,Google Phone,1,600.0,2019-03-11 16:56:00,410 Spruce St, Dallas,TX,75001 +168957,Lightning Charging Cable,1,14.95,2019-03-19 19:00:00,301 Spruce St, Dallas,TX,75001 +168958,Apple Airpods Headphones,1,150.0,2019-03-24 11:48:00,280 1st St, Atlanta,GA,30301 +168959,USB-C Charging Cable,1,11.95,2019-03-23 20:37:00,625 13th St, Los Angeles,CA,90001 +168960,20in Monitor,1,109.99,2019-03-26 15:27:00,110 Adams St, New York City,NY,10001 +168961,AAA Batteries (4-pack),1,2.99,2019-03-17 16:52:00,800 Meadow St, Dallas,TX,75001 +168962,AA Batteries (4-pack),2,3.84,2019-03-21 17:13:00,935 Lincoln St, San Francisco,CA,94016 +168963,USB-C Charging Cable,1,11.95,2019-03-29 13:39:00,452 4th St, New York City,NY,10001 +168964,34in Ultrawide Monitor,1,379.99,2019-03-17 14:11:00,545 Hill St, Los Angeles,CA,90001 +168965,27in FHD Monitor,1,149.99,2019-03-05 18:22:00,544 Cherry St, San Francisco,CA,94016 +168966,34in Ultrawide Monitor,1,379.99,2019-03-03 21:57:00,216 Wilson St, Austin,TX,73301 +168967,USB-C Charging Cable,1,11.95,2019-03-01 10:26:00,480 Center St, Boston,MA,02215 +168968,20in Monitor,1,109.99,2019-03-26 19:49:00,264 Cedar St, Boston,MA,02215 +168969,34in Ultrawide Monitor,1,379.99,2019-03-20 16:57:00,129 Walnut St, San Francisco,CA,94016 +168970,Bose SoundSport Headphones,1,99.99,2019-03-07 13:34:00,340 Hill St, Dallas,TX,75001 +168971,Flatscreen TV,1,300.0,2019-03-28 22:45:00,481 Ridge St, San Francisco,CA,94016 +168972,Wired Headphones,1,11.99,2019-03-09 09:00:00,533 8th St, New York City,NY,10001 +168973,27in 4K Gaming Monitor,1,389.99,2019-03-29 19:41:00,821 Jackson St, Seattle,WA,98101 +168974,27in FHD Monitor,1,149.99,2019-03-23 12:47:00,191 Sunset St, Los Angeles,CA,90001 +168975,USB-C Charging Cable,2,11.95,2019-03-17 16:08:00,375 4th St, Atlanta,GA,30301 +168976,USB-C Charging Cable,1,11.95,2019-03-14 08:46:00,400 Spruce St, Seattle,WA,98101 +168977,Lightning Charging Cable,1,14.95,2019-03-07 08:50:00,302 River St, New York City,NY,10001 +168978,Wired Headphones,1,11.99,2019-03-30 12:27:00,52 5th St, San Francisco,CA,94016 +168979,Lightning Charging Cable,1,14.95,2019-03-14 16:41:00,260 5th St, Seattle,WA,98101 +168980,Apple Airpods Headphones,1,150.0,2019-03-10 12:03:00,526 Walnut St, San Francisco,CA,94016 +168981,AAA Batteries (4-pack),1,2.99,2019-03-22 00:28:00,483 Jackson St, Los Angeles,CA,90001 +168982,AA Batteries (4-pack),2,3.84,2019-03-26 11:20:00,265 12th St, Boston,MA,02215 +168983,AAA Batteries (4-pack),1,2.99,2019-03-10 20:36:00,670 Chestnut St, Boston,MA,02215 +168984,Lightning Charging Cable,1,14.95,2019-03-16 17:36:00,317 11th St, Los Angeles,CA,90001 +168985,Bose SoundSport Headphones,1,99.99,2019-03-18 12:08:00,460 8th St, San Francisco,CA,94016 +168986,AA Batteries (4-pack),2,3.84,2019-03-16 18:26:00,670 Forest St, New York City,NY,10001 +168987,Apple Airpods Headphones,1,150.0,2019-03-20 02:02:00,896 Hill St, Portland,OR,97035 +168988,USB-C Charging Cable,1,11.95,2019-03-20 12:07:00,69 Cedar St, San Francisco,CA,94016 +168989,AA Batteries (4-pack),1,3.84,2019-03-07 21:42:00,804 Adams St, Seattle,WA,98101 +168990,Wired Headphones,1,11.99,2019-04-01 00:00:00,790 10th St, Boston,MA,02215 +168991,ThinkPad Laptop,1,999.99,2019-03-05 10:47:00,536 5th St, Boston,MA,02215 +168992,AA Batteries (4-pack),1,3.84,2019-03-11 18:20:00,575 10th St, Seattle,WA,98101 +168993,USB-C Charging Cable,2,11.95,2019-03-24 13:45:00,345 Sunset St, San Francisco,CA,94016 +168994,27in 4K Gaming Monitor,1,389.99,2019-03-22 20:38:00,298 Madison St, Portland,OR,97035 +168995,Bose SoundSport Headphones,1,99.99,2019-03-31 18:01:00,251 Maple St, San Francisco,CA,94016 +168996,34in Ultrawide Monitor,1,379.99,2019-03-15 14:34:00,723 River St, Dallas,TX,75001 +168997,20in Monitor,1,109.99,2019-03-29 20:45:00,856 2nd St, New York City,NY,10001 +168998,iPhone,1,700.0,2019-03-07 20:44:00,242 Johnson St, San Francisco,CA,94016 +168999,iPhone,1,700.0,2019-03-11 17:37:00,221 5th St, New York City,NY,10001 +169000,Apple Airpods Headphones,1,150.0,2019-03-27 07:56:00,708 Highland St, San Francisco,CA,94016 +169001,Apple Airpods Headphones,1,150.0,2019-03-22 14:05:00,843 Washington St, Los Angeles,CA,90001 +169002,27in FHD Monitor,1,149.99,2019-03-29 14:20:00,749 Lake St, Los Angeles,CA,90001 +169003,USB-C Charging Cable,1,11.95,2019-03-17 13:04:00,620 Lakeview St, Los Angeles,CA,90001 +169004,USB-C Charging Cable,1,11.95,2019-03-18 13:04:00,592 Park St, San Francisco,CA,94016 +169005,USB-C Charging Cable,1,11.95,2019-03-07 20:55:00,143 7th St, Atlanta,GA,30301 +169006,Flatscreen TV,1,300.0,2019-03-05 07:55:00,287 Lincoln St, Boston,MA,02215 +169007,Apple Airpods Headphones,1,150.0,2019-03-20 19:10:00,891 Park St, Austin,TX,73301 +169008,AAA Batteries (4-pack),3,2.99,2019-03-20 20:23:00,891 Chestnut St, San Francisco,CA,94016 +169009,Vareebadd Phone,1,400.0,2019-03-12 14:59:00,30 Walnut St, Dallas,TX,75001 +169010,Lightning Charging Cable,1,14.95,2019-03-04 20:57:00,395 Meadow St, Boston,MA,02215 +169011,Lightning Charging Cable,1,14.95,2019-03-16 18:25:00,23 Lincoln St, New York City,NY,10001 +169012,ThinkPad Laptop,1,999.99,2019-03-12 16:47:00,8 Church St, Seattle,WA,98101 +169013,ThinkPad Laptop,1,999.99,2019-03-03 18:42:00,744 Elm St, San Francisco,CA,94016 +169014,Bose SoundSport Headphones,1,99.99,2019-03-28 15:23:00,871 Hickory St, Los Angeles,CA,90001 +169015,Lightning Charging Cable,1,14.95,2019-03-17 12:32:00,690 Church St, Seattle,WA,98101 +169016,27in 4K Gaming Monitor,1,389.99,2019-03-17 13:33:00,372 Lake St, New York City,NY,10001 +169017,Apple Airpods Headphones,1,150.0,2019-03-25 12:17:00,360 Wilson St, Boston,MA,02215 +169018,27in 4K Gaming Monitor,1,389.99,2019-03-27 15:18:00,34 5th St, Dallas,TX,75001 +169019,USB-C Charging Cable,1,11.95,2019-03-28 15:06:00,654 Hickory St, Portland,OR,97035 +169020,USB-C Charging Cable,1,11.95,2019-03-02 12:38:00,97 Pine St, San Francisco,CA,94016 +169021,Bose SoundSport Headphones,1,99.99,2019-03-09 11:45:00,214 Highland St, Seattle,WA,98101 +169022,Google Phone,1,600.0,2019-03-05 00:27:00,805 Spruce St, Los Angeles,CA,90001 +169022,USB-C Charging Cable,1,11.95,2019-03-05 00:27:00,805 Spruce St, Los Angeles,CA,90001 +169023,20in Monitor,1,109.99,2019-03-31 22:02:00,404 Chestnut St, San Francisco,CA,94016 +169024,Apple Airpods Headphones,1,150.0,2019-03-30 16:58:00,603 8th St, San Francisco,CA,94016 +169025,AA Batteries (4-pack),1,3.84,2019-03-02 20:44:00,787 Meadow St, Dallas,TX,75001 +169026,27in 4K Gaming Monitor,1,389.99,2019-03-02 21:55:00,182 South St, San Francisco,CA,94016 +169027,Apple Airpods Headphones,1,150.0,2019-03-08 11:28:00,528 Lincoln St, Dallas,TX,75001 +169028,Lightning Charging Cable,1,14.95,2019-03-20 07:15:00,241 Elm St, San Francisco,CA,94016 +169029,ThinkPad Laptop,1,999.99,2019-03-13 19:57:00,83 North St, Boston,MA,02215 +169030,Apple Airpods Headphones,1,150.0,2019-03-23 12:00:00,424 South St, Seattle,WA,98101 +169031,Wired Headphones,1,11.99,2019-03-17 22:13:00,696 Wilson St, Dallas,TX,75001 +169032,AAA Batteries (4-pack),1,2.99,2019-03-13 13:02:00,203 Church St, Los Angeles,CA,90001 +169033,USB-C Charging Cable,1,11.95,2019-03-26 21:56:00,192 14th St, Los Angeles,CA,90001 +169034,AAA Batteries (4-pack),1,2.99,2019-03-17 18:14:00,949 4th St, Los Angeles,CA,90001 +169035,Wired Headphones,1,11.99,2019-03-21 16:50:00,700 Park St, San Francisco,CA,94016 +169036,AA Batteries (4-pack),1,3.84,2019-03-16 13:49:00,471 Sunset St, Atlanta,GA,30301 +169037,AA Batteries (4-pack),1,3.84,2019-03-12 16:18:00,917 Lincoln St, Boston,MA,02215 +169038,20in Monitor,1,109.99,2019-03-28 13:01:00,841 Adams St, Seattle,WA,98101 +169039,iPhone,1,700.0,2019-03-26 23:16:00,2 Lake St, New York City,NY,10001 +169040,Lightning Charging Cable,1,14.95,2019-03-04 02:46:00,576 Jackson St, Atlanta,GA,30301 +169041,USB-C Charging Cable,1,11.95,2019-03-23 10:21:00,76 Cherry St, San Francisco,CA,94016 +169042,Wired Headphones,1,11.99,2019-03-03 09:39:00,366 Pine St, Austin,TX,73301 +169043,Google Phone,1,600.0,2019-03-21 20:30:00,948 River St, Seattle,WA,98101 +169044,Wired Headphones,1,11.99,2019-03-19 19:53:00,313 9th St, Boston,MA,02215 +169045,AA Batteries (4-pack),1,3.84,2019-03-13 12:41:00,948 7th St, Portland,OR,97035 +169046,Bose SoundSport Headphones,1,99.99,2019-03-29 03:39:00,221 South St, Los Angeles,CA,90001 +169047,Lightning Charging Cable,1,14.95,2019-03-21 15:49:00,96 Adams St, Dallas,TX,75001 +169048,USB-C Charging Cable,1,11.95,2019-03-05 16:37:00,178 Maple St, Seattle,WA,98101 +169049,Flatscreen TV,1,300.0,2019-03-10 11:31:00,706 Maple St, Atlanta,GA,30301 +169050,Apple Airpods Headphones,1,150.0,2019-03-29 11:09:00,418 Center St, San Francisco,CA,94016 +169051,Wired Headphones,1,11.99,2019-03-07 14:41:00,333 South St, San Francisco,CA,94016 +169052,USB-C Charging Cable,1,11.95,2019-03-28 13:10:00,960 Jackson St, San Francisco,CA,94016 +169053,AA Batteries (4-pack),1,3.84,2019-03-13 01:26:00,956 11th St, Boston,MA,02215 +169054,Lightning Charging Cable,1,14.95,2019-03-18 17:16:00,326 14th St, San Francisco,CA,94016 +169055,Lightning Charging Cable,1,14.95,2019-03-27 10:37:00,177 Park St, New York City,NY,10001 +169056,AAA Batteries (4-pack),1,2.99,2019-03-15 00:40:00,733 Highland St, Atlanta,GA,30301 +169057,Apple Airpods Headphones,1,150.0,2019-03-25 09:44:00,238 North St, Austin,TX,73301 +169058,USB-C Charging Cable,1,11.95,2019-03-16 17:26:00,383 West St, New York City,NY,10001 +169059,USB-C Charging Cable,1,11.95,2019-03-01 21:40:00,681 Center St, New York City,NY,10001 +169060,Google Phone,1,600.0,2019-03-05 09:09:00,162 Madison St, Atlanta,GA,30301 +169061,Wired Headphones,1,11.99,2019-03-31 19:15:00,723 West St, New York City,NY,10001 +169062,AA Batteries (4-pack),1,3.84,2019-03-25 12:35:00,205 South St, Portland,OR,97035 +169063,Apple Airpods Headphones,2,150.0,2019-03-20 09:46:00,379 14th St, Portland,ME,04101 +169064,27in FHD Monitor,1,149.99,2019-03-24 10:58:00,794 11th St, Los Angeles,CA,90001 +169065,USB-C Charging Cable,1,11.95,2019-03-13 22:36:00,985 Ridge St, New York City,NY,10001 +169066,Wired Headphones,1,11.99,2019-03-21 08:47:00,169 North St, New York City,NY,10001 +169067,27in 4K Gaming Monitor,1,389.99,2019-03-17 13:33:00,838 Madison St, Seattle,WA,98101 +169068,20in Monitor,1,109.99,2019-03-07 13:09:00,697 Jackson St, Boston,MA,02215 +169069,34in Ultrawide Monitor,1,379.99,2019-03-19 06:22:00,503 Johnson St, Dallas,TX,75001 +169070,34in Ultrawide Monitor,1,379.99,2019-03-11 21:05:00,96 5th St, Boston,MA,02215 +169071,Wired Headphones,1,11.99,2019-03-22 20:42:00,250 Maple St, Los Angeles,CA,90001 +169072,Apple Airpods Headphones,1,150.0,2019-03-20 16:19:00,362 Forest St, Boston,MA,02215 +169073,34in Ultrawide Monitor,1,379.99,2019-03-20 12:26:00,797 Church St, Seattle,WA,98101 +169074,Wired Headphones,1,11.99,2019-03-15 14:53:00,53 Willow St, Portland,OR,97035 +169075,USB-C Charging Cable,1,11.95,2019-03-09 19:53:00,492 11th St, Boston,MA,02215 +169076,Apple Airpods Headphones,1,150.0,2019-03-20 23:24:00,884 Jackson St, Austin,TX,73301 +169076,AA Batteries (4-pack),1,3.84,2019-03-20 23:24:00,884 Jackson St, Austin,TX,73301 +169077,USB-C Charging Cable,4,11.95,2019-03-07 15:10:00,975 Chestnut St, Boston,MA,02215 +169078,Apple Airpods Headphones,1,150.0,2019-03-19 21:48:00,452 Lake St, Portland,OR,97035 +169079,Apple Airpods Headphones,1,150.0,2019-03-29 07:39:00,12 Lake St, San Francisco,CA,94016 +169080,Lightning Charging Cable,1,14.95,2019-03-21 17:46:00,586 Jefferson St, Boston,MA,02215 +169081,Google Phone,1,600.0,2019-03-25 16:03:00,608 Lincoln St, San Francisco,CA,94016 +169082,AAA Batteries (4-pack),1,2.99,2019-03-23 11:04:00,886 9th St, Los Angeles,CA,90001 +169083,Apple Airpods Headphones,1,150.0,2019-03-17 12:27:00,933 12th St, Seattle,WA,98101 +169084,Lightning Charging Cable,1,14.95,2019-03-05 16:54:00,135 Meadow St, San Francisco,CA,94016 +169085,20in Monitor,1,109.99,2019-03-07 18:34:00,249 South St, San Francisco,CA,94016 +169086,34in Ultrawide Monitor,1,379.99,2019-03-24 20:03:00,272 River St, New York City,NY,10001 +169087,Apple Airpods Headphones,1,150.0,2019-03-04 18:44:00,586 Jackson St, Portland,OR,97035 +169088,USB-C Charging Cable,1,11.95,2019-03-22 13:51:00,278 Sunset St, San Francisco,CA,94016 +169089,AA Batteries (4-pack),1,3.84,2019-03-28 13:07:00,350 5th St, Boston,MA,02215 +169090,USB-C Charging Cable,1,11.95,2019-03-12 13:57:00,312 13th St, Austin,TX,73301 +169091,Macbook Pro Laptop,1,1700.0,2019-03-19 00:54:00,44 Johnson St, Los Angeles,CA,90001 +169092,Wired Headphones,1,11.99,2019-03-20 14:54:00,170 Jackson St, Los Angeles,CA,90001 +169093,AAA Batteries (4-pack),2,2.99,2019-03-10 19:56:00,959 14th St, Atlanta,GA,30301 +169094,27in 4K Gaming Monitor,1,389.99,2019-03-15 23:45:00,672 5th St, Dallas,TX,75001 +169095,Bose SoundSport Headphones,1,99.99,2019-03-18 20:48:00,709 Center St, Portland,OR,97035 +169096,USB-C Charging Cable,1,11.95,2019-03-05 18:31:00,253 14th St, San Francisco,CA,94016 +169097,27in FHD Monitor,1,149.99,2019-03-20 11:16:00,2 2nd St, Portland,OR,97035 +169098,Bose SoundSport Headphones,1,99.99,2019-03-12 20:53:00,148 Hill St, San Francisco,CA,94016 +169099,20in Monitor,1,109.99,2019-03-12 15:53:00,636 Park St, Portland,ME,04101 +169100,34in Ultrawide Monitor,1,379.99,2019-03-21 21:42:00,5 7th St, Dallas,TX,75001 +169101,AA Batteries (4-pack),2,3.84,2019-03-05 10:53:00,983 10th St, Atlanta,GA,30301 +169102,AAA Batteries (4-pack),1,2.99,2019-03-01 06:00:00,554 North St, Dallas,TX,75001 +169103,Flatscreen TV,1,300.0,2019-03-26 16:08:00,8 4th St, Los Angeles,CA,90001 +169104,AA Batteries (4-pack),1,3.84,2019-03-28 23:49:00,858 Spruce St, Austin,TX,73301 +169105,USB-C Charging Cable,1,11.95,2019-03-24 15:13:00,345 Hickory St, Portland,OR,97035 +169106,AAA Batteries (4-pack),1,2.99,2019-03-10 23:36:00,148 2nd St, New York City,NY,10001 +169107,Macbook Pro Laptop,1,1700.0,2019-03-15 01:34:00,507 Willow St, Atlanta,GA,30301 +169108,Lightning Charging Cable,1,14.95,2019-03-30 12:06:00,226 Washington St, Austin,TX,73301 +169109,LG Dryer,1,600.0,2019-03-29 04:54:00,870 Dogwood St, San Francisco,CA,94016 +169110,Wired Headphones,1,11.99,2019-03-18 15:55:00,290 Chestnut St, San Francisco,CA,94016 +169111,USB-C Charging Cable,1,11.95,2019-03-14 12:15:00,993 West St, New York City,NY,10001 +169112,USB-C Charging Cable,1,11.95,2019-03-02 14:06:00,777 Cedar St, New York City,NY,10001 +169113,Lightning Charging Cable,1,14.95,2019-03-14 01:27:00,460 River St, San Francisco,CA,94016 +169114,Apple Airpods Headphones,1,150.0,2019-03-20 21:29:00,92 Madison St, Atlanta,GA,30301 +169115,34in Ultrawide Monitor,1,379.99,2019-03-20 12:43:00,22 Spruce St, Los Angeles,CA,90001 +169116,Bose SoundSport Headphones,1,99.99,2019-03-08 14:43:00,463 Highland St, Atlanta,GA,30301 +169116,Lightning Charging Cable,1,14.95,2019-03-08 14:43:00,463 Highland St, Atlanta,GA,30301 +169117,Google Phone,1,600.0,2019-03-04 09:13:00,511 1st St, New York City,NY,10001 +169118,Apple Airpods Headphones,1,150.0,2019-03-10 00:25:00,445 West St, Los Angeles,CA,90001 +169119,AA Batteries (4-pack),2,3.84,2019-03-05 03:22:00,589 7th St, Dallas,TX,75001 +169120,AAA Batteries (4-pack),2,2.99,2019-03-31 12:20:00,85 11th St, Seattle,WA,98101 +169121,AAA Batteries (4-pack),1,2.99,2019-03-16 21:23:00,756 Wilson St, Dallas,TX,75001 +169122,AA Batteries (4-pack),1,3.84,2019-03-20 18:51:00,584 Lake St, New York City,NY,10001 +169123,Lightning Charging Cable,1,14.95,2019-03-10 20:01:00,345 Cherry St, Los Angeles,CA,90001 +169124,27in 4K Gaming Monitor,1,389.99,2019-03-06 01:49:00,330 West St, Atlanta,GA,30301 +169125,27in FHD Monitor,1,149.99,2019-03-05 18:23:00,374 Johnson St, Boston,MA,02215 +169126,34in Ultrawide Monitor,1,379.99,2019-03-09 20:53:00,202 Park St, Portland,OR,97035 +169127,AA Batteries (4-pack),2,3.84,2019-03-26 11:34:00,12 West St, Los Angeles,CA,90001 +169128,Macbook Pro Laptop,1,1700.0,2019-03-07 13:13:00,422 Center St, Boston,MA,02215 +169129,AAA Batteries (4-pack),1,2.99,2019-03-21 18:14:00,77 11th St, New York City,NY,10001 +169130,AAA Batteries (4-pack),1,2.99,2019-03-20 18:46:00,685 Walnut St, Seattle,WA,98101 +169131,Flatscreen TV,1,300.0,2019-03-27 19:43:00,358 Madison St, Dallas,TX,75001 +169132,27in FHD Monitor,1,149.99,2019-03-23 09:58:00,54 Chestnut St, Boston,MA,02215 +169133,AAA Batteries (4-pack),1,2.99,2019-03-24 12:33:00,66 North St, Seattle,WA,98101 +169134,27in FHD Monitor,1,149.99,2019-03-27 15:25:00,739 4th St, Boston,MA,02215 +169135,USB-C Charging Cable,1,11.95,2019-03-08 13:06:00,903 Johnson St, Atlanta,GA,30301 +169136,Bose SoundSport Headphones,1,99.99,2019-03-18 20:00:00,675 13th St, Austin,TX,73301 +169137,USB-C Charging Cable,3,11.95,2019-03-03 10:12:00,732 5th St, Boston,MA,02215 +169138,AA Batteries (4-pack),1,3.84,2019-03-13 20:18:00,361 Highland St, Boston,MA,02215 +169139,Bose SoundSport Headphones,1,99.99,2019-03-06 18:09:00,219 12th St, Seattle,WA,98101 +169140,USB-C Charging Cable,3,11.95,2019-03-02 19:29:00,851 Washington St, Dallas,TX,75001 +169141,AAA Batteries (4-pack),1,2.99,2019-03-28 12:35:00,275 Washington St, Atlanta,GA,30301 +169142,Wired Headphones,1,11.99,2019-03-02 13:28:00,896 9th St, Boston,MA,02215 +169143,AA Batteries (4-pack),1,3.84,2019-03-11 08:15:00,31 North St, San Francisco,CA,94016 +169144,iPhone,1,700.0,2019-03-18 08:00:00,908 Main St, Portland,ME,04101 +169145,20in Monitor,1,109.99,2019-03-07 16:07:00,920 11th St, Dallas,TX,75001 +169146,iPhone,1,700.0,2019-03-08 05:49:00,375 Hill St, Atlanta,GA,30301 +169147,Wired Headphones,1,11.99,2019-03-27 07:33:00,480 Pine St, Los Angeles,CA,90001 +169148,Bose SoundSport Headphones,1,99.99,2019-03-28 09:53:00,267 South St, Seattle,WA,98101 +169149,Wired Headphones,1,11.99,2019-03-24 02:07:00,385 1st St, San Francisco,CA,94016 +169150,Vareebadd Phone,1,400.0,2019-03-17 18:44:00,344 Lake St, Dallas,TX,75001 +169151,Vareebadd Phone,1,400.0,2019-03-31 20:44:00,389 Forest St, Dallas,TX,75001 +169152,Lightning Charging Cable,1,14.95,2019-03-14 16:10:00,317 North St, Atlanta,GA,30301 +169153,Bose SoundSport Headphones,1,99.99,2019-03-22 11:54:00,931 Jefferson St, Atlanta,GA,30301 +169154,34in Ultrawide Monitor,1,379.99,2019-03-06 16:56:00,21 Johnson St, San Francisco,CA,94016 +169155,Wired Headphones,1,11.99,2019-03-10 08:26:00,764 5th St, San Francisco,CA,94016 +169156,Lightning Charging Cable,2,14.95,2019-03-21 15:13:00,727 7th St, Austin,TX,73301 +169157,iPhone,1,700.0,2019-03-06 18:28:00,714 4th St, New York City,NY,10001 +169158,27in FHD Monitor,1,149.99,2019-03-01 08:55:00,688 Sunset St, New York City,NY,10001 +169159,AA Batteries (4-pack),1,3.84,2019-03-28 16:38:00,419 13th St, Portland,ME,04101 +169160,Vareebadd Phone,1,400.0,2019-03-07 17:44:00,426 14th St, San Francisco,CA,94016 +169160,ThinkPad Laptop,1,999.99,2019-03-07 17:44:00,426 14th St, San Francisco,CA,94016 +169161,Apple Airpods Headphones,1,150.0,2019-03-31 15:33:00,976 Walnut St, San Francisco,CA,94016 +169162,20in Monitor,1,109.99,2019-03-18 10:54:00,692 13th St, Portland,OR,97035 +169163,34in Ultrawide Monitor,1,379.99,2019-03-17 07:37:00,372 Jackson St, Seattle,WA,98101 +169164,USB-C Charging Cable,1,11.95,2019-03-17 02:15:00,785 Chestnut St, Los Angeles,CA,90001 +169165,Lightning Charging Cable,1,14.95,2019-03-12 06:40:00,962 Pine St, New York City,NY,10001 +169166,Apple Airpods Headphones,1,150.0,2019-03-02 11:34:00,509 Lincoln St, Atlanta,GA,30301 +169167,Google Phone,1,600.0,2019-03-28 17:01:00,836 10th St, New York City,NY,10001 +169167,USB-C Charging Cable,2,11.95,2019-03-28 17:01:00,836 10th St, New York City,NY,10001 +169168,AA Batteries (4-pack),1,3.84,2019-03-08 10:16:00,175 Ridge St, Atlanta,GA,30301 +169169,AAA Batteries (4-pack),1,2.99,2019-03-20 10:09:00,742 9th St, Portland,OR,97035 +169170,34in Ultrawide Monitor,1,379.99,2019-03-28 14:13:00,566 13th St, New York City,NY,10001 +169171,Apple Airpods Headphones,1,150.0,2019-03-28 13:24:00,936 Church St, San Francisco,CA,94016 +169172,USB-C Charging Cable,1,11.95,2019-03-08 18:10:00,105 Center St, Atlanta,GA,30301 +169173,20in Monitor,1,109.99,2019-03-02 21:45:00,889 Center St, Dallas,TX,75001 +169174,20in Monitor,1,109.99,2019-03-16 16:10:00,117 Lincoln St, San Francisco,CA,94016 +169175,Bose SoundSport Headphones,1,99.99,2019-03-27 14:05:00,791 Cedar St, New York City,NY,10001 +169176,Google Phone,1,600.0,2019-03-25 22:21:00,98 6th St, Austin,TX,73301 +169177,Macbook Pro Laptop,1,1700.0,2019-04-01 01:20:00,220 1st St, New York City,NY,10001 +169178,Lightning Charging Cable,1,14.95,2019-03-14 11:40:00,835 Jefferson St, Los Angeles,CA,90001 +169179,34in Ultrawide Monitor,1,379.99,2019-03-30 15:01:00,677 12th St, San Francisco,CA,94016 +169180,Wired Headphones,1,11.99,2019-03-20 01:16:00,757 Willow St, San Francisco,CA,94016 +169181,AAA Batteries (4-pack),1,2.99,2019-03-29 20:24:00,355 Main St, San Francisco,CA,94016 +169182,ThinkPad Laptop,1,999.99,2019-03-21 11:46:00,771 9th St, Atlanta,GA,30301 +169183,Wired Headphones,1,11.99,2019-03-06 20:53:00,750 2nd St, Atlanta,GA,30301 +169184,AAA Batteries (4-pack),1,2.99,2019-03-06 16:38:00,127 8th St, Los Angeles,CA,90001 +169185,AA Batteries (4-pack),1,3.84,2019-03-26 12:09:00,631 North St, San Francisco,CA,94016 +169186,AAA Batteries (4-pack),3,2.99,2019-03-03 15:47:00,999 6th St, New York City,NY,10001 +169187,ThinkPad Laptop,1,999.99,2019-03-05 11:40:00,319 Adams St, Seattle,WA,98101 +169188,20in Monitor,1,109.99,2019-03-14 19:28:00,170 14th St, Atlanta,GA,30301 +169189,Bose SoundSport Headphones,1,99.99,2019-03-08 01:15:00,3 Park St, Atlanta,GA,30301 +169190,34in Ultrawide Monitor,1,379.99,2019-03-26 10:02:00,600 1st St, Boston,MA,02215 +169191,27in FHD Monitor,1,149.99,2019-04-01 00:42:00,310 Cherry St, Los Angeles,CA,90001 +169192,iPhone,1,700.0,2019-03-28 09:38:00,344 Washington St, Dallas,TX,75001 +169192,Lightning Charging Cable,1,14.95,2019-03-28 09:38:00,344 Washington St, Dallas,TX,75001 +169193,AA Batteries (4-pack),3,3.84,2019-03-31 05:52:00,829 Cedar St, Portland,OR,97035 +169194,Lightning Charging Cable,1,14.95,2019-03-29 13:14:00,672 South St, New York City,NY,10001 +169195,34in Ultrawide Monitor,1,379.99,2019-03-29 22:31:00,76 Cherry St, San Francisco,CA,94016 +169196,AA Batteries (4-pack),1,3.84,2019-03-14 21:33:00,720 Ridge St, Dallas,TX,75001 +169197,Bose SoundSport Headphones,1,99.99,2019-03-24 23:02:00,997 12th St, San Francisco,CA,94016 +169198,27in 4K Gaming Monitor,1,389.99,2019-03-15 20:33:00,810 Chestnut St, Los Angeles,CA,90001 +169199,Bose SoundSport Headphones,1,99.99,2019-03-19 17:23:00,154 Ridge St, San Francisco,CA,94016 +169200,Wired Headphones,1,11.99,2019-03-11 20:22:00,828 Cedar St, Dallas,TX,75001 +169201,AAA Batteries (4-pack),1,2.99,2019-03-02 20:23:00,794 13th St, Portland,OR,97035 +169202,Bose SoundSport Headphones,1,99.99,2019-03-10 00:22:00,445 10th St, Austin,TX,73301 +169203,Apple Airpods Headphones,1,150.0,2019-03-10 17:41:00,336 Hill St, San Francisco,CA,94016 +169204,Macbook Pro Laptop,1,1700.0,2019-03-05 02:20:00,790 8th St, Portland,OR,97035 +169205,20in Monitor,1,109.99,2019-03-04 18:08:00,225 Lakeview St, San Francisco,CA,94016 +169206,Apple Airpods Headphones,1,150.0,2019-03-09 08:24:00,69 West St, Seattle,WA,98101 +169207,iPhone,1,700.0,2019-03-04 11:31:00,572 13th St, New York City,NY,10001 +169207,Lightning Charging Cable,1,14.95,2019-03-04 11:31:00,572 13th St, New York City,NY,10001 +169208,Apple Airpods Headphones,1,150.0,2019-03-28 23:57:00,968 South St, New York City,NY,10001 +169209,AAA Batteries (4-pack),1,2.99,2019-03-07 12:38:00,123 Chestnut St, Dallas,TX,75001 +169210,Macbook Pro Laptop,1,1700.0,2019-03-26 17:26:00,750 West St, Austin,TX,73301 +169211,27in FHD Monitor,1,149.99,2019-03-15 15:54:00,283 Church St, San Francisco,CA,94016 +169212,Wired Headphones,1,11.99,2019-03-30 08:46:00,419 Church St, Austin,TX,73301 +169213,ThinkPad Laptop,1,999.99,2019-03-29 12:11:00,658 Hickory St, Boston,MA,02215 +169214,USB-C Charging Cable,2,11.95,2019-03-25 22:34:00,357 Cherry St, San Francisco,CA,94016 +169215,USB-C Charging Cable,1,11.95,2019-03-20 21:06:00,442 14th St, Seattle,WA,98101 +169216,Bose SoundSport Headphones,1,99.99,2019-03-01 17:47:00,441 Lake St, San Francisco,CA,94016 +169217,Wired Headphones,1,11.99,2019-03-17 13:50:00,507 Meadow St, San Francisco,CA,94016 +169218,Apple Airpods Headphones,1,150.0,2019-03-21 10:49:00,836 Dogwood St, San Francisco,CA,94016 +169219,20in Monitor,1,109.99,2019-03-02 08:58:00,527 Ridge St, Boston,MA,02215 +169220,ThinkPad Laptop,1,999.99,2019-03-30 12:53:00,467 7th St, Atlanta,GA,30301 +169221,Wired Headphones,1,11.99,2019-03-12 19:24:00,513 Forest St, Boston,MA,02215 +169221,Lightning Charging Cable,1,14.95,2019-03-12 19:24:00,513 Forest St, Boston,MA,02215 +169222,Flatscreen TV,1,300.0,2019-03-02 15:12:00,309 12th St, San Francisco,CA,94016 +169223,LG Washing Machine,1,600.0,2019-03-21 16:26:00,164 8th St, San Francisco,CA,94016 +169224,Bose SoundSport Headphones,1,99.99,2019-03-08 09:52:00,531 7th St, Atlanta,GA,30301 +169225,Lightning Charging Cable,1,14.95,2019-03-21 21:24:00,988 Hill St, Los Angeles,CA,90001 +169226,USB-C Charging Cable,1,11.95,2019-03-23 16:38:00,456 Church St, New York City,NY,10001 +169227,AAA Batteries (4-pack),5,2.99,2019-03-12 02:08:00,147 Adams St, Seattle,WA,98101 +169228,Google Phone,1,600.0,2019-03-22 00:19:00,124 Sunset St, Austin,TX,73301 +169229,AA Batteries (4-pack),1,3.84,2019-03-26 15:32:00,600 Elm St, Portland,OR,97035 +169230,AA Batteries (4-pack),1,3.84,2019-03-07 22:43:00,625 Cherry St, Austin,TX,73301 +169231,USB-C Charging Cable,1,11.95,2019-03-16 09:17:00,311 6th St, New York City,NY,10001 +169232,Lightning Charging Cable,1,14.95,2019-03-08 17:15:00,623 Adams St, New York City,NY,10001 +169233,27in FHD Monitor,1,149.99,2019-03-05 16:25:00,558 Ridge St, Portland,OR,97035 +169234,AA Batteries (4-pack),1,3.84,2019-03-30 13:40:00,787 14th St, Boston,MA,02215 +169235,USB-C Charging Cable,1,11.95,2019-03-07 14:11:00,865 10th St, Los Angeles,CA,90001 +169236,Wired Headphones,1,11.99,2019-03-08 19:53:00,317 Lakeview St, Los Angeles,CA,90001 +169237,34in Ultrawide Monitor,1,379.99,2019-03-14 21:56:00,681 Lincoln St, San Francisco,CA,94016 +169238,Bose SoundSport Headphones,1,99.99,2019-03-04 18:35:00,136 Elm St, Boston,MA,02215 +169239,AAA Batteries (4-pack),6,2.99,2019-03-19 18:43:00,329 Hill St, Boston,MA,02215 +169240,Apple Airpods Headphones,1,150.0,2019-03-19 10:20:00,785 River St, San Francisco,CA,94016 +169241,AA Batteries (4-pack),2,3.84,2019-03-10 23:49:00,477 Park St, Los Angeles,CA,90001 +169242,USB-C Charging Cable,1,11.95,2019-03-12 14:50:00,817 Center St, Boston,MA,02215 +169243,Bose SoundSport Headphones,1,99.99,2019-03-10 18:52:00,443 5th St, San Francisco,CA,94016 +169244,Lightning Charging Cable,1,14.95,2019-03-04 12:44:00,483 Washington St, Portland,OR,97035 +169245,AA Batteries (4-pack),1,3.84,2019-03-18 17:35:00,277 Lincoln St, New York City,NY,10001 +169246,AA Batteries (4-pack),1,3.84,2019-03-29 21:46:00,889 5th St, Portland,OR,97035 +169247,AA Batteries (4-pack),1,3.84,2019-03-18 14:23:00,713 5th St, Los Angeles,CA,90001 +169248,AAA Batteries (4-pack),1,2.99,2019-03-04 12:09:00,59 Maple St, Seattle,WA,98101 +169249,AA Batteries (4-pack),2,3.84,2019-03-16 19:37:00,182 Jackson St, Los Angeles,CA,90001 +169250,USB-C Charging Cable,1,11.95,2019-03-07 10:51:00,467 Spruce St, Los Angeles,CA,90001 +169251,USB-C Charging Cable,1,11.95,2019-03-01 09:18:00,623 1st St, Los Angeles,CA,90001 +169252,AA Batteries (4-pack),2,3.84,2019-03-17 06:32:00,298 Park St, Boston,MA,02215 +169253,Apple Airpods Headphones,1,150.0,2019-03-22 22:35:00,410 Park St, Seattle,WA,98101 +169254,AA Batteries (4-pack),1,3.84,2019-03-31 14:53:00,926 6th St, Portland,OR,97035 +169255,Wired Headphones,1,11.99,2019-03-29 17:49:00,297 Spruce St, Los Angeles,CA,90001 +169256,USB-C Charging Cable,1,11.95,2019-03-07 09:08:00,199 Wilson St, New York City,NY,10001 +169257,Lightning Charging Cable,2,14.95,2019-03-04 23:30:00,131 7th St, San Francisco,CA,94016 +169258,iPhone,1,700.0,2019-03-02 20:53:00,537 Walnut St, Atlanta,GA,30301 +169259,Wired Headphones,1,11.99,2019-03-15 19:45:00,978 Lakeview St, New York City,NY,10001 +169259,USB-C Charging Cable,1,11.95,2019-03-15 19:45:00,978 Lakeview St, New York City,NY,10001 +169260,USB-C Charging Cable,1,11.95,2019-03-06 19:40:00,191 Ridge St, New York City,NY,10001 +169261,27in 4K Gaming Monitor,1,389.99,2019-03-02 15:19:00,618 Jackson St, Boston,MA,02215 +169262,Apple Airpods Headphones,1,150.0,2019-03-01 21:15:00,63 Meadow St, Los Angeles,CA,90001 +169263,ThinkPad Laptop,1,999.99,2019-03-30 06:26:00,351 Ridge St, Boston,MA,02215 +169264,Google Phone,1,600.0,2019-03-01 15:00:00,100 9th St, Atlanta,GA,30301 +169265,27in FHD Monitor,1,149.99,2019-03-03 13:29:00,561 Forest St, Dallas,TX,75001 +169266,iPhone,1,700.0,2019-03-10 19:58:00,182 Chestnut St, Dallas,TX,75001 +169266,Lightning Charging Cable,1,14.95,2019-03-10 19:58:00,182 Chestnut St, Dallas,TX,75001 +169266,Google Phone,1,600.0,2019-03-10 19:58:00,182 Chestnut St, Dallas,TX,75001 +169267,Lightning Charging Cable,1,14.95,2019-03-01 15:55:00,915 Pine St, Portland,OR,97035 +169268,Apple Airpods Headphones,1,150.0,2019-03-28 18:09:00,718 7th St, Boston,MA,02215 +169268,Bose SoundSport Headphones,2,99.99,2019-03-28 18:09:00,718 7th St, Boston,MA,02215 +169269,34in Ultrawide Monitor,1,379.99,2019-03-29 19:47:00,740 Cedar St, Seattle,WA,98101 +169270,Bose SoundSport Headphones,1,99.99,2019-03-13 08:40:00,713 River St, Atlanta,GA,30301 +169271,27in FHD Monitor,1,149.99,2019-03-24 11:18:00,475 Pine St, New York City,NY,10001 +169272,LG Dryer,1,600.0,2019-03-23 11:26:00,455 South St, San Francisco,CA,94016 +169273,Wired Headphones,1,11.99,2019-03-28 14:45:00,595 13th St, San Francisco,CA,94016 +169274,Apple Airpods Headphones,1,150.0,2019-03-06 21:11:00,268 Maple St, Dallas,TX,75001 +169275,Lightning Charging Cable,1,14.95,2019-03-22 18:28:00,154 Wilson St, Los Angeles,CA,90001 +169276,USB-C Charging Cable,1,11.95,2019-03-11 20:33:00,757 Cedar St, Boston,MA,02215 +169277,AA Batteries (4-pack),2,3.84,2019-03-14 20:47:00,338 Park St, New York City,NY,10001 +169278,Vareebadd Phone,1,400.0,2019-03-29 13:18:00,699 Chestnut St, New York City,NY,10001 +169279,Bose SoundSport Headphones,1,99.99,2019-03-30 09:12:00,142 Willow St, San Francisco,CA,94016 +169280,Wired Headphones,1,11.99,2019-03-21 21:39:00,821 Jackson St, San Francisco,CA,94016 +169281,AAA Batteries (4-pack),1,2.99,2019-03-01 17:14:00,197 Elm St, Portland,ME,04101 +169282,Wired Headphones,1,11.99,2019-03-30 11:05:00,507 6th St, Portland,OR,97035 +169283,AAA Batteries (4-pack),1,2.99,2019-03-03 13:17:00,586 River St, New York City,NY,10001 +169284,34in Ultrawide Monitor,1,379.99,2019-03-06 23:44:00,136 1st St, Los Angeles,CA,90001 +169285,ThinkPad Laptop,1,999.99,2019-03-04 22:41:00,745 Hickory St, Atlanta,GA,30301 +169286,Apple Airpods Headphones,1,150.0,2019-03-13 07:24:00,191 Jackson St, San Francisco,CA,94016 +169287,iPhone,1,700.0,2019-03-15 16:40:00,455 Center St, New York City,NY,10001 +169288,Wired Headphones,1,11.99,2019-03-25 09:20:00,996 Maple St, Portland,OR,97035 +169289,LG Dryer,1,600.0,2019-03-11 17:01:00,59 Hill St, Seattle,WA,98101 +169290,34in Ultrawide Monitor,1,379.99,2019-03-28 05:22:00,957 5th St, Los Angeles,CA,90001 +169291,Lightning Charging Cable,2,14.95,2019-03-08 02:12:00,425 Lake St, Seattle,WA,98101 +169292,34in Ultrawide Monitor,1,379.99,2019-03-03 09:56:00,656 Jackson St, San Francisco,CA,94016 +169293,Lightning Charging Cable,1,14.95,2019-03-10 10:30:00,259 Forest St, Dallas,TX,75001 +169294,AAA Batteries (4-pack),1,2.99,2019-03-29 00:26:00,926 Walnut St, New York City,NY,10001 +169295,Bose SoundSport Headphones,1,99.99,2019-03-26 15:39:00,976 5th St, San Francisco,CA,94016 +169296,USB-C Charging Cable,1,11.95,2019-03-28 15:45:00,349 Madison St, Los Angeles,CA,90001 +169297,Google Phone,1,600.0,2019-03-24 22:26:00,460 Elm St, Los Angeles,CA,90001 +169297,Wired Headphones,1,11.99,2019-03-24 22:26:00,460 Elm St, Los Angeles,CA,90001 +169298,AAA Batteries (4-pack),1,2.99,2019-03-22 10:33:00,697 1st St, New York City,NY,10001 +169299,USB-C Charging Cable,1,11.95,2019-03-22 09:36:00,847 Church St, Portland,OR,97035 +169300,AA Batteries (4-pack),2,3.84,2019-03-28 11:19:00,48 10th St, Los Angeles,CA,90001 +169301,USB-C Charging Cable,1,11.95,2019-03-25 21:46:00,547 Dogwood St, New York City,NY,10001 +169302,Bose SoundSport Headphones,1,99.99,2019-03-04 14:44:00,190 Lake St, Dallas,TX,75001 +169303,USB-C Charging Cable,1,11.95,2019-03-26 15:53:00,96 Forest St, Seattle,WA,98101 +169304,Lightning Charging Cable,1,14.95,2019-03-01 22:53:00,243 1st St, New York City,NY,10001 +169305,AAA Batteries (4-pack),1,2.99,2019-03-24 00:13:00,516 6th St, Portland,OR,97035 +169306,Apple Airpods Headphones,1,150.0,2019-03-07 11:53:00,533 Elm St, New York City,NY,10001 +169307,Bose SoundSport Headphones,1,99.99,2019-03-28 22:35:00,263 Pine St, Atlanta,GA,30301 +169308,Lightning Charging Cable,1,14.95,2019-03-31 19:37:00,8 Park St, Dallas,TX,75001 +169309,Google Phone,1,600.0,2019-03-23 21:41:00,465 Center St, San Francisco,CA,94016 +169310,Lightning Charging Cable,1,14.95,2019-03-08 11:40:00,75 4th St, Portland,OR,97035 +169311,20in Monitor,1,109.99,2019-03-29 15:42:00,115 Lincoln St, Los Angeles,CA,90001 +169312,Apple Airpods Headphones,1,150.0,2019-03-11 09:09:00,982 Johnson St, New York City,NY,10001 +169313,Wired Headphones,2,11.99,2019-03-03 10:23:00,271 Park St, San Francisco,CA,94016 +169314,AAA Batteries (4-pack),1,2.99,2019-03-14 14:50:00,229 North St, San Francisco,CA,94016 +169315,USB-C Charging Cable,1,11.95,2019-03-16 17:49:00,56 5th St, San Francisco,CA,94016 +169316,Bose SoundSport Headphones,1,99.99,2019-03-15 12:17:00,392 North St, Atlanta,GA,30301 +169317,AA Batteries (4-pack),1,3.84,2019-03-06 22:30:00,186 Sunset St, Austin,TX,73301 +169318,Wired Headphones,1,11.99,2019-03-21 11:37:00,521 Main St, Austin,TX,73301 +169319,AAA Batteries (4-pack),1,2.99,2019-03-21 20:12:00,527 14th St, Boston,MA,02215 +169320,AA Batteries (4-pack),1,3.84,2019-03-08 16:59:00,87 5th St, San Francisco,CA,94016 +169321,ThinkPad Laptop,1,999.99,2019-03-05 00:13:00,577 Hickory St, Los Angeles,CA,90001 +169322,Lightning Charging Cable,1,14.95,2019-03-01 21:13:00,92 Madison St, New York City,NY,10001 +169323,Apple Airpods Headphones,1,150.0,2019-03-14 23:48:00,370 Maple St, Los Angeles,CA,90001 +169324,iPhone,1,700.0,2019-03-27 16:28:00,418 9th St, Boston,MA,02215 +169324,Lightning Charging Cable,1,14.95,2019-03-27 16:28:00,418 9th St, Boston,MA,02215 +169325,Vareebadd Phone,1,400.0,2019-03-02 13:31:00,555 Cedar St, Los Angeles,CA,90001 +169326,Bose SoundSport Headphones,1,99.99,2019-03-29 02:43:00,156 South St, Dallas,TX,75001 +169327,AAA Batteries (4-pack),3,2.99,2019-03-25 17:56:00,984 West St, Los Angeles,CA,90001 +169328,AAA Batteries (4-pack),2,2.99,2019-03-20 16:41:00,81 Lake St, New York City,NY,10001 +169329,AAA Batteries (4-pack),1,2.99,2019-03-20 22:06:00,3 8th St, Boston,MA,02215 +169330,Vareebadd Phone,1,400.0,2019-03-22 16:34:00,352 13th St, Dallas,TX,75001 +169331,Google Phone,1,600.0,2019-03-24 18:56:00,624 River St, San Francisco,CA,94016 +169332,34in Ultrawide Monitor,1,379.99,2019-03-09 23:42:00,458 14th St, New York City,NY,10001 +169333,AA Batteries (4-pack),1,3.84,2019-03-17 11:44:00,526 Forest St, Boston,MA,02215 +169334,Wired Headphones,1,11.99,2019-03-07 13:13:00,39 Adams St, Los Angeles,CA,90001 +169335,Wired Headphones,1,11.99,2019-03-22 11:32:00,457 Washington St, Atlanta,GA,30301 +169336,Wired Headphones,1,11.99,2019-03-24 18:20:00,822 Center St, San Francisco,CA,94016 +169337,Apple Airpods Headphones,1,150.0,2019-03-31 21:20:00,898 10th St, New York City,NY,10001 +169338,Lightning Charging Cable,1,14.95,2019-03-31 18:11:00,897 Lakeview St, Boston,MA,02215 +169339,Apple Airpods Headphones,1,150.0,2019-03-15 22:37:00,630 River St, New York City,NY,10001 +169340,AA Batteries (4-pack),1,3.84,2019-03-02 20:01:00,551 Main St, Seattle,WA,98101 +169341,Apple Airpods Headphones,1,150.0,2019-03-29 11:34:00,615 7th St, Seattle,WA,98101 +169342,USB-C Charging Cable,1,11.95,2019-03-12 09:33:00,956 Main St, Seattle,WA,98101 +169343,AAA Batteries (4-pack),1,2.99,2019-03-27 17:22:00,127 Hill St, Los Angeles,CA,90001 +169344,Google Phone,1,600.0,2019-03-20 11:02:00,712 West St, Seattle,WA,98101 +169344,34in Ultrawide Monitor,1,379.99,2019-03-20 11:02:00,712 West St, Seattle,WA,98101 +169345,Lightning Charging Cable,1,14.95,2019-03-28 15:03:00,781 South St, Dallas,TX,75001 +169346,AA Batteries (4-pack),1,3.84,2019-03-21 19:40:00,630 Church St, Portland,OR,97035 +169347,iPhone,1,700.0,2019-03-11 11:46:00,547 9th St, Atlanta,GA,30301 +169348,Wired Headphones,1,11.99,2019-03-31 15:59:00,762 Chestnut St, Portland,OR,97035 +169349,AA Batteries (4-pack),1,3.84,2019-03-15 17:13:00,661 West St, Los Angeles,CA,90001 +169350,AAA Batteries (4-pack),1,2.99,2019-03-12 22:42:00,522 Lincoln St, Los Angeles,CA,90001 +169351,Lightning Charging Cable,3,14.95,2019-03-01 21:16:00,294 Adams St, San Francisco,CA,94016 +169352,LG Dryer,1,600.0,2019-03-07 22:01:00,55 Main St, Seattle,WA,98101 +169353,Apple Airpods Headphones,1,150.0,2019-03-12 12:39:00,16 Ridge St, Portland,OR,97035 +169354,USB-C Charging Cable,1,11.95,2019-03-29 16:04:00,333 14th St, Dallas,TX,75001 +169355,USB-C Charging Cable,1,11.95,2019-03-09 11:35:00,921 10th St, Los Angeles,CA,90001 +169356,Apple Airpods Headphones,1,150.0,2019-03-19 18:59:00,657 8th St, Seattle,WA,98101 +169357,Wired Headphones,2,11.99,2019-03-20 19:30:00,337 Washington St, Atlanta,GA,30301 +169358,AAA Batteries (4-pack),2,2.99,2019-03-08 19:40:00,663 Elm St, San Francisco,CA,94016 +169359,AAA Batteries (4-pack),2,2.99,2019-03-20 11:42:00,310 Jefferson St, Dallas,TX,75001 +169360,AAA Batteries (4-pack),7,2.99,2019-03-10 14:34:00,724 13th St, Boston,MA,02215 +169361,Apple Airpods Headphones,1,150.0,2019-03-14 11:07:00,97 Wilson St, New York City,NY,10001 +169362,Wired Headphones,1,11.99,2019-03-05 19:28:00,959 Chestnut St, New York City,NY,10001 +169363,USB-C Charging Cable,1,11.95,2019-03-01 15:37:00,349 6th St, Los Angeles,CA,90001 +169364,Bose SoundSport Headphones,1,99.99,2019-03-17 20:01:00,72 Chestnut St, Boston,MA,02215 +169365,AA Batteries (4-pack),1,3.84,2019-03-08 14:44:00,703 Johnson St, New York City,NY,10001 +169366,Wired Headphones,1,11.99,2019-03-21 21:52:00,872 Forest St, Austin,TX,73301 +169367,Apple Airpods Headphones,1,150.0,2019-03-28 07:48:00,530 Adams St, Los Angeles,CA,90001 +169368,Google Phone,1,600.0,2019-03-17 10:02:00,784 9th St, Portland,ME,04101 +169369,Macbook Pro Laptop,1,1700.0,2019-03-30 18:34:00,986 Cedar St, Austin,TX,73301 +169370,Apple Airpods Headphones,1,150.0,2019-03-15 19:55:00,65 Center St, San Francisco,CA,94016 +169371,Wired Headphones,1,11.99,2019-03-11 15:33:00,58 11th St, New York City,NY,10001 +169372,USB-C Charging Cable,1,11.95,2019-03-21 16:19:00,258 5th St, Boston,MA,02215 +169373,AAA Batteries (4-pack),1,2.99,2019-03-16 19:13:00,509 Dogwood St, New York City,NY,10001 +169374,Macbook Pro Laptop,1,1700.0,2019-03-06 13:15:00,692 Willow St, San Francisco,CA,94016 +169375,Lightning Charging Cable,1,14.95,2019-03-13 15:26:00,508 2nd St, San Francisco,CA,94016 +169376,iPhone,1,700.0,2019-03-10 16:45:00,435 Willow St, Atlanta,GA,30301 +169377,AAA Batteries (4-pack),1,2.99,2019-03-30 11:02:00,635 Johnson St, San Francisco,CA,94016 +169378,Apple Airpods Headphones,1,150.0,2019-03-13 20:12:00,369 Walnut St, Seattle,WA,98101 +169379,ThinkPad Laptop,1,999.99,2019-03-12 12:17:00,176 Lincoln St, San Francisco,CA,94016 +169380,AAA Batteries (4-pack),1,2.99,2019-03-20 00:36:00,229 Lake St, New York City,NY,10001 +169381,USB-C Charging Cable,1,11.95,2019-03-30 21:51:00,741 Hill St, New York City,NY,10001 +169382,27in FHD Monitor,1,149.99,2019-03-20 13:41:00,208 13th St, Los Angeles,CA,90001 +169383,Wired Headphones,3,11.99,2019-03-30 16:21:00,591 Hickory St, New York City,NY,10001 +169384,Google Phone,1,600.0,2019-03-21 11:28:00,712 Center St, Atlanta,GA,30301 +169385,Macbook Pro Laptop,1,1700.0,2019-03-08 19:08:00,725 11th St, Dallas,TX,75001 +169386,ThinkPad Laptop,1,999.99,2019-03-13 12:33:00,330 Hickory St, Seattle,WA,98101 +169387,Bose SoundSport Headphones,1,99.99,2019-03-10 15:22:00,6 Chestnut St, San Francisco,CA,94016 +169388,Bose SoundSport Headphones,1,99.99,2019-03-17 16:45:00,473 Church St, Seattle,WA,98101 +169389,LG Dryer,1,600.0,2019-03-06 15:55:00,327 Johnson St, San Francisco,CA,94016 +169390,Bose SoundSport Headphones,1,99.99,2019-03-13 12:40:00,320 Highland St, San Francisco,CA,94016 +169391,AA Batteries (4-pack),2,3.84,2019-03-05 09:11:00,611 14th St, Austin,TX,73301 +169392,Lightning Charging Cable,1,14.95,2019-03-31 06:32:00,29 Pine St, Los Angeles,CA,90001 +169393,USB-C Charging Cable,1,11.95,2019-03-04 10:57:00,758 Chestnut St, San Francisco,CA,94016 +169394,AA Batteries (4-pack),1,3.84,2019-03-12 13:26:00,223 Church St, Dallas,TX,75001 +169395,Wired Headphones,1,11.99,2019-03-21 17:05:00,812 12th St, Los Angeles,CA,90001 +169396,USB-C Charging Cable,1,11.95,2019-03-22 10:03:00,839 Hill St, Dallas,TX,75001 +169397,USB-C Charging Cable,3,11.95,2019-03-16 13:40:00,240 Dogwood St, Seattle,WA,98101 +169398,USB-C Charging Cable,1,11.95,2019-03-17 12:46:00,595 Washington St, Dallas,TX,75001 +169399,Wired Headphones,2,11.99,2019-03-29 23:24:00,747 14th St, Atlanta,GA,30301 +169400,iPhone,1,700.0,2019-03-01 19:13:00,412 River St, New York City,NY,10001 +169401,Flatscreen TV,1,300.0,2019-03-21 11:42:00,256 7th St, Los Angeles,CA,90001 +169402,Wired Headphones,1,11.99,2019-03-18 15:15:00,529 12th St, Los Angeles,CA,90001 +169403,USB-C Charging Cable,1,11.95,2019-03-12 09:47:00,757 Sunset St, Los Angeles,CA,90001 +169404,AAA Batteries (4-pack),3,2.99,2019-03-02 22:25:00,312 8th St, Dallas,TX,75001 +169405,Bose SoundSport Headphones,1,99.99,2019-03-20 21:23:00,396 5th St, New York City,NY,10001 +169406,Bose SoundSport Headphones,1,99.99,2019-03-08 10:26:00,892 Walnut St, New York City,NY,10001 +169407,27in FHD Monitor,1,149.99,2019-03-09 19:37:00,210 Washington St, Boston,MA,02215 +169408,Wired Headphones,1,11.99,2019-03-02 23:15:00,65 Forest St, Boston,MA,02215 +169409,AA Batteries (4-pack),1,3.84,2019-03-08 10:31:00,115 Lake St, Austin,TX,73301 +169410,Lightning Charging Cable,1,14.95,2019-03-06 16:10:00,180 Elm St, Atlanta,GA,30301 +169411,Wired Headphones,1,11.99,2019-03-28 11:26:00,874 Chestnut St, San Francisco,CA,94016 +169412,AA Batteries (4-pack),1,3.84,2019-03-29 21:46:00,558 14th St, New York City,NY,10001 +169413,Google Phone,1,600.0,2019-03-29 11:00:00,559 5th St, Dallas,TX,75001 +169414,AA Batteries (4-pack),2,3.84,2019-03-20 16:23:00,388 4th St, Los Angeles,CA,90001 +169415,AAA Batteries (4-pack),1,2.99,2019-03-15 09:48:00,458 Pine St, Los Angeles,CA,90001 +169416,Flatscreen TV,1,300.0,2019-03-19 14:09:00,311 Washington St, Boston,MA,02215 +169417,Bose SoundSport Headphones,1,99.99,2019-03-13 20:21:00,782 Washington St, Los Angeles,CA,90001 +169418,USB-C Charging Cable,1,11.95,2019-03-28 13:21:00,842 1st St, New York City,NY,10001 +169419,Wired Headphones,1,11.99,2019-03-23 09:17:00,831 Cedar St, Boston,MA,02215 +169420,Macbook Pro Laptop,1,1700.0,2019-03-07 19:46:00,88 1st St, Atlanta,GA,30301 +169421,Apple Airpods Headphones,1,150.0,2019-03-05 19:01:00,723 Madison St, Boston,MA,02215 +169421,USB-C Charging Cable,1,11.95,2019-03-05 19:01:00,723 Madison St, Boston,MA,02215 +169422,Macbook Pro Laptop,1,1700.0,2019-03-18 15:17:00,510 8th St, New York City,NY,10001 +169423,34in Ultrawide Monitor,1,379.99,2019-03-18 22:58:00,26 Lincoln St, Austin,TX,73301 +169424,AAA Batteries (4-pack),1,2.99,2019-03-16 20:46:00,15 Wilson St, Seattle,WA,98101 +169424,Apple Airpods Headphones,1,150.0,2019-03-16 20:46:00,15 Wilson St, Seattle,WA,98101 +169425,Bose SoundSport Headphones,1,99.99,2019-03-28 09:39:00,439 2nd St, Atlanta,GA,30301 +169426,AA Batteries (4-pack),1,3.84,2019-03-18 12:26:00,218 12th St, Seattle,WA,98101 +169427,AAA Batteries (4-pack),2,2.99,2019-03-30 12:05:00,492 Washington St, Los Angeles,CA,90001 +169428,Lightning Charging Cable,1,14.95,2019-03-07 17:27:00,210 Meadow St, Boston,MA,02215 +169429,Bose SoundSport Headphones,1,99.99,2019-03-29 18:45:00,553 Hill St, New York City,NY,10001 +169430,AAA Batteries (4-pack),1,2.99,2019-03-05 11:24:00,660 Adams St, Seattle,WA,98101 +169431,USB-C Charging Cable,1,11.95,2019-03-30 19:42:00,222 1st St, Seattle,WA,98101 +169432,Google Phone,1,600.0,2019-03-14 09:23:00,744 Pine St, Portland,OR,97035 +169433,Wired Headphones,1,11.99,2019-03-11 12:49:00,583 Dogwood St, Los Angeles,CA,90001 +169434,Wired Headphones,1,11.99,2019-03-25 17:00:00,644 6th St, Los Angeles,CA,90001 +169435,AA Batteries (4-pack),1,3.84,2019-03-23 11:23:00,277 Ridge St, Boston,MA,02215 +169436,USB-C Charging Cable,1,11.95,2019-03-19 00:42:00,889 Cherry St, Los Angeles,CA,90001 +169437,Wired Headphones,1,11.99,2019-03-18 18:42:00,879 Pine St, San Francisco,CA,94016 +169438,Lightning Charging Cable,1,14.95,2019-03-01 14:00:00,421 South St, Atlanta,GA,30301 +169439,USB-C Charging Cable,1,11.95,2019-03-10 23:50:00,845 8th St, New York City,NY,10001 +169440,USB-C Charging Cable,2,11.95,2019-03-11 21:51:00,314 Dogwood St, Dallas,TX,75001 +169441,iPhone,1,700.0,2019-03-17 19:15:00,131 Hickory St, Boston,MA,02215 +169442,Bose SoundSport Headphones,1,99.99,2019-03-28 16:03:00,58 Ridge St, Boston,MA,02215 +169443,Lightning Charging Cable,1,14.95,2019-03-29 01:04:00,978 Jefferson St, Boston,MA,02215 +169444,20in Monitor,1,109.99,2019-03-07 12:19:00,744 South St, Seattle,WA,98101 +169445,Lightning Charging Cable,1,14.95,2019-03-11 14:50:00,705 Johnson St, San Francisco,CA,94016 +169446,USB-C Charging Cable,1,11.95,2019-03-18 13:31:00,698 Hill St, San Francisco,CA,94016 +169447,Apple Airpods Headphones,1,150.0,2019-03-04 10:54:00,111 Willow St, New York City,NY,10001 +169448,iPhone,1,700.0,2019-03-25 15:12:00,818 1st St, Atlanta,GA,30301 +169449,Lightning Charging Cable,1,14.95,2019-03-12 15:52:00,187 Willow St, Atlanta,GA,30301 +169450,Wired Headphones,1,11.99,2019-03-22 19:59:00,842 1st St, San Francisco,CA,94016 +169451,Bose SoundSport Headphones,1,99.99,2019-03-30 11:21:00,628 South St, Los Angeles,CA,90001 +169452,AA Batteries (4-pack),2,3.84,2019-03-29 11:24:00,270 Walnut St, Atlanta,GA,30301 +169453,Lightning Charging Cable,1,14.95,2019-03-21 10:32:00,528 North St, San Francisco,CA,94016 +169454,AA Batteries (4-pack),1,3.84,2019-03-18 18:46:00,35 4th St, Los Angeles,CA,90001 +169455,AA Batteries (4-pack),2,3.84,2019-03-06 06:43:00,120 7th St, Austin,TX,73301 +169456,Apple Airpods Headphones,1,150.0,2019-03-13 22:07:00,887 Wilson St, Dallas,TX,75001 +169457,USB-C Charging Cable,1,11.95,2019-03-25 09:55:00,447 Park St, San Francisco,CA,94016 +169458,20in Monitor,1,109.99,2019-03-22 16:38:00,810 7th St, Portland,OR,97035 +169459,Lightning Charging Cable,1,14.95,2019-03-29 08:49:00,680 Lake St, Boston,MA,02215 +169460,Wired Headphones,1,11.99,2019-03-17 11:21:00,651 4th St, New York City,NY,10001 +169461,27in FHD Monitor,1,149.99,2019-03-14 19:10:00,1 Cedar St, Portland,OR,97035 +169462,Apple Airpods Headphones,1,150.0,2019-03-21 19:41:00,333 River St, New York City,NY,10001 +169463,AA Batteries (4-pack),1,3.84,2019-03-26 09:28:00,522 Main St, Los Angeles,CA,90001 +169464,Wired Headphones,1,11.99,2019-03-11 14:14:00,530 12th St, Boston,MA,02215 +169465,Apple Airpods Headphones,1,150.0,2019-03-11 18:24:00,776 14th St, San Francisco,CA,94016 +169466,Apple Airpods Headphones,1,150.0,2019-03-15 13:53:00,603 Lake St, San Francisco,CA,94016 +169467,Apple Airpods Headphones,1,150.0,2019-03-11 21:08:00,72 Forest St, New York City,NY,10001 +169468,ThinkPad Laptop,1,999.99,2019-03-05 18:40:00,641 Adams St, New York City,NY,10001 +169469,34in Ultrawide Monitor,1,379.99,2019-03-06 23:11:00,20 Cedar St, Seattle,WA,98101 +169470,USB-C Charging Cable,2,11.95,2019-03-06 18:22:00,881 11th St, San Francisco,CA,94016 +169471,Flatscreen TV,1,300.0,2019-03-24 21:33:00,72 Lakeview St, San Francisco,CA,94016 +169472,AA Batteries (4-pack),1,3.84,2019-03-23 19:48:00,810 7th St, Portland,OR,97035 +169473,AA Batteries (4-pack),1,3.84,2019-03-12 10:58:00,2 13th St, Los Angeles,CA,90001 +169474,Lightning Charging Cable,1,14.95,2019-03-22 15:24:00,533 Jackson St, Seattle,WA,98101 +169475,AA Batteries (4-pack),1,3.84,2019-03-07 21:05:00,283 13th St, Seattle,WA,98101 +169476,Wired Headphones,1,11.99,2019-03-18 16:25:00,68 Cedar St, Los Angeles,CA,90001 +169477,Lightning Charging Cable,1,14.95,2019-03-09 11:57:00,623 Sunset St, Dallas,TX,75001 +169478,USB-C Charging Cable,1,11.95,2019-03-16 23:43:00,280 Wilson St, Dallas,TX,75001 +169479,USB-C Charging Cable,1,11.95,2019-03-17 14:25:00,800 Willow St, San Francisco,CA,94016 +169480,AAA Batteries (4-pack),1,2.99,2019-03-05 07:48:00,66 Walnut St, Los Angeles,CA,90001 +169481,AA Batteries (4-pack),2,3.84,2019-03-06 07:12:00,875 Center St, San Francisco,CA,94016 +169482,AA Batteries (4-pack),2,3.84,2019-03-04 10:44:00,50 Dogwood St, Seattle,WA,98101 +169483,Wired Headphones,1,11.99,2019-03-24 10:55:00,348 Elm St, San Francisco,CA,94016 +169484,Apple Airpods Headphones,1,150.0,2019-03-29 07:15:00,478 Forest St, Portland,OR,97035 +169485,AA Batteries (4-pack),1,3.84,2019-03-11 11:14:00,110 Hickory St, San Francisco,CA,94016 +169486,Apple Airpods Headphones,1,150.0,2019-03-05 00:16:00,395 Washington St, San Francisco,CA,94016 +169487,Bose SoundSport Headphones,1,99.99,2019-03-26 21:03:00,648 Church St, Dallas,TX,75001 +169488,34in Ultrawide Monitor,1,379.99,2019-03-04 15:36:00,554 North St, Seattle,WA,98101 +169489,Lightning Charging Cable,1,14.95,2019-03-24 18:10:00,309 North St, Los Angeles,CA,90001 +169490,Wired Headphones,2,11.99,2019-03-07 15:03:00,889 Pine St, San Francisco,CA,94016 +169491,AA Batteries (4-pack),1,3.84,2019-03-01 08:50:00,984 Sunset St, San Francisco,CA,94016 +169492,27in FHD Monitor,1,149.99,2019-03-04 10:51:00,782 Hickory St, Austin,TX,73301 +169493,AAA Batteries (4-pack),3,2.99,2019-03-22 12:54:00,883 North St, New York City,NY,10001 +169494,AA Batteries (4-pack),2,3.84,2019-03-18 22:54:00,23 West St, Seattle,WA,98101 +169495,Flatscreen TV,1,300.0,2019-03-15 13:58:00,652 Madison St, San Francisco,CA,94016 +169496,AA Batteries (4-pack),4,3.84,2019-03-04 21:17:00,135 Adams St, Los Angeles,CA,90001 +169497,20in Monitor,1,109.99,2019-03-23 06:54:00,485 Lakeview St, Los Angeles,CA,90001 +169498,AA Batteries (4-pack),1,3.84,2019-03-02 18:19:00,806 8th St, San Francisco,CA,94016 +169499,20in Monitor,1,109.99,2019-03-21 19:57:00,733 Madison St, Los Angeles,CA,90001 +169500,Apple Airpods Headphones,1,150.0,2019-03-22 13:34:00,185 7th St, Seattle,WA,98101 +169501,Lightning Charging Cable,1,14.95,2019-03-01 11:10:00,981 6th St, Dallas,TX,75001 +169502,27in 4K Gaming Monitor,1,389.99,2019-03-28 01:41:00,4 Lincoln St, Portland,OR,97035 +169503,AAA Batteries (4-pack),1,2.99,2019-03-10 13:14:00,809 River St, San Francisco,CA,94016 +169504,20in Monitor,1,109.99,2019-03-31 19:38:00,338 Meadow St, Los Angeles,CA,90001 +169505,Wired Headphones,1,11.99,2019-03-10 15:21:00,779 South St, Boston,MA,02215 +169506,AA Batteries (4-pack),2,3.84,2019-03-13 15:43:00,987 1st St, Austin,TX,73301 +169507,USB-C Charging Cable,1,11.95,2019-03-15 22:55:00,784 9th St, New York City,NY,10001 +169508,iPhone,1,700.0,2019-03-05 11:52:00,654 Cedar St, Los Angeles,CA,90001 +169509,AA Batteries (4-pack),1,3.84,2019-03-07 12:53:00,76 West St, Boston,MA,02215 +169510,AAA Batteries (4-pack),1,2.99,2019-03-12 17:18:00,371 Washington St, Los Angeles,CA,90001 +169511,AAA Batteries (4-pack),3,2.99,2019-03-28 00:00:00,387 Lincoln St, San Francisco,CA,94016 +169512,ThinkPad Laptop,1,999.99,2019-03-13 11:00:00,336 River St, Austin,TX,73301 +169513,Apple Airpods Headphones,1,150.0,2019-03-09 09:53:00,727 10th St, New York City,NY,10001 +169514,AAA Batteries (4-pack),5,2.99,2019-03-15 21:15:00,26 9th St, Portland,OR,97035 +169515,Apple Airpods Headphones,1,150.0,2019-03-03 13:03:00,467 Madison St, Seattle,WA,98101 +169516,Bose SoundSport Headphones,1,99.99,2019-03-02 13:19:00,572 Forest St, San Francisco,CA,94016 +169517,Bose SoundSport Headphones,1,99.99,2019-03-29 14:14:00,187 Spruce St, Austin,TX,73301 +169518,Bose SoundSport Headphones,1,99.99,2019-03-19 11:58:00,558 Cedar St, New York City,NY,10001 +169519,AAA Batteries (4-pack),1,2.99,2019-03-18 11:12:00,774 Forest St, New York City,NY,10001 +169520,Lightning Charging Cable,1,14.95,2019-03-24 13:44:00,406 Wilson St, Portland,OR,97035 +169521,ThinkPad Laptop,1,999.99,2019-03-04 22:07:00,185 Main St, New York City,NY,10001 +169522,AAA Batteries (4-pack),1,2.99,2019-03-27 10:29:00,67 Johnson St, Los Angeles,CA,90001 +169523,Macbook Pro Laptop,1,1700.0,2019-03-23 06:36:00,870 12th St, Los Angeles,CA,90001 +169524,AA Batteries (4-pack),1,3.84,2019-03-16 16:17:00,837 Maple St, San Francisco,CA,94016 +169525,34in Ultrawide Monitor,1,379.99,2019-03-29 13:03:00,655 Forest St, New York City,NY,10001 +169526,Wired Headphones,1,11.99,2019-03-20 12:06:00,732 Hickory St, Portland,OR,97035 +169527,AAA Batteries (4-pack),2,2.99,2019-03-06 21:45:00,495 Chestnut St, Dallas,TX,75001 +169528,34in Ultrawide Monitor,1,379.99,2019-03-07 20:50:00,265 Ridge St, Portland,ME,04101 +169529,Lightning Charging Cable,1,14.95,2019-03-12 14:54:00,566 6th St, Portland,OR,97035 +169530,AAA Batteries (4-pack),1,2.99,2019-03-23 14:59:00,369 1st St, Austin,TX,73301 +169531,AA Batteries (4-pack),1,3.84,2019-03-22 23:01:00,792 Walnut St, Dallas,TX,75001 +169532,USB-C Charging Cable,1,11.95,2019-03-10 13:21:00,867 Spruce St, Dallas,TX,75001 +169533,Apple Airpods Headphones,1,150.0,2019-03-28 18:12:00,573 Sunset St, Austin,TX,73301 +169534,Apple Airpods Headphones,1,150.0,2019-03-27 09:27:00,164 10th St, Los Angeles,CA,90001 +169535,Bose SoundSport Headphones,1,99.99,2019-03-05 17:39:00,426 8th St, San Francisco,CA,94016 +169536,AAA Batteries (4-pack),1,2.99,2019-03-12 18:47:00,87 11th St, Portland,ME,04101 +169537,Lightning Charging Cable,1,14.95,2019-03-19 19:57:00,654 Elm St, San Francisco,CA,94016 +169538,Apple Airpods Headphones,2,150.0,2019-03-13 09:27:00,848 Elm St, Dallas,TX,75001 +169539,Bose SoundSport Headphones,1,99.99,2019-03-15 15:15:00,162 Lincoln St, New York City,NY,10001 +169540,AA Batteries (4-pack),1,3.84,2019-03-05 02:57:00,62 13th St, Portland,OR,97035 +169541,AAA Batteries (4-pack),2,2.99,2019-03-12 10:06:00,743 Jefferson St, Boston,MA,02215 +169542,20in Monitor,1,109.99,2019-03-05 15:39:00,964 Hill St, Boston,MA,02215 +169543,Apple Airpods Headphones,1,150.0,2019-03-28 20:43:00,733 12th St, San Francisco,CA,94016 +169544,AA Batteries (4-pack),1,3.84,2019-03-11 10:31:00,320 Pine St, Los Angeles,CA,90001 +169545,Google Phone,1,600.0,2019-03-13 18:34:00,320 Hill St, Los Angeles,CA,90001 +169545,USB-C Charging Cable,1,11.95,2019-03-13 18:34:00,320 Hill St, Los Angeles,CA,90001 +169545,Wired Headphones,1,11.99,2019-03-13 18:34:00,320 Hill St, Los Angeles,CA,90001 +169546,USB-C Charging Cable,2,11.95,2019-03-27 22:05:00,66 Maple St, Dallas,TX,75001 +169547,Macbook Pro Laptop,1,1700.0,2019-03-19 22:33:00,825 Wilson St, New York City,NY,10001 +169548,20in Monitor,1,109.99,2019-03-31 05:39:00,345 Main St, Austin,TX,73301 +169549,Bose SoundSport Headphones,1,99.99,2019-03-29 17:47:00,828 Center St, Dallas,TX,75001 +169550,27in 4K Gaming Monitor,1,389.99,2019-03-28 22:43:00,843 Highland St, Boston,MA,02215 +169550,iPhone,1,700.0,2019-03-28 22:43:00,843 Highland St, Boston,MA,02215 +169551,Google Phone,1,600.0,2019-03-16 10:31:00,40 12th St, Austin,TX,73301 +169551,USB-C Charging Cable,1,11.95,2019-03-16 10:31:00,40 12th St, Austin,TX,73301 +169552,Bose SoundSport Headphones,1,99.99,2019-03-24 00:29:00,856 Lincoln St, Austin,TX,73301 +169553,Flatscreen TV,2,300.0,2019-03-18 13:42:00,455 Washington St, San Francisco,CA,94016 +169554,34in Ultrawide Monitor,1,379.99,2019-03-09 18:43:00,637 11th St, Atlanta,GA,30301 +169555,AA Batteries (4-pack),1,3.84,2019-03-06 15:27:00,526 Sunset St, Boston,MA,02215 +169556,AA Batteries (4-pack),2,3.84,2019-03-18 13:40:00,654 6th St, San Francisco,CA,94016 +169557,Bose SoundSport Headphones,1,99.99,2019-03-08 10:44:00,953 Jackson St, Los Angeles,CA,90001 +169558,USB-C Charging Cable,1,11.95,2019-03-05 21:38:00,751 Pine St, San Francisco,CA,94016 +169559,Flatscreen TV,1,300.0,2019-03-20 07:29:00,814 13th St, San Francisco,CA,94016 +169560,ThinkPad Laptop,1,999.99,2019-03-12 11:56:00,537 7th St, Los Angeles,CA,90001 +169561,Flatscreen TV,1,300.0,2019-03-11 19:44:00,629 Madison St, San Francisco,CA,94016 +169562,Wired Headphones,1,11.99,2019-03-30 13:16:00,80 Church St, Los Angeles,CA,90001 +169563,Lightning Charging Cable,2,14.95,2019-03-23 14:28:00,879 Hill St, Dallas,TX,75001 +169564,iPhone,1,700.0,2019-03-27 05:08:00,96 6th St, San Francisco,CA,94016 +169564,Apple Airpods Headphones,1,150.0,2019-03-27 05:08:00,96 6th St, San Francisco,CA,94016 +169565,Wired Headphones,1,11.99,2019-03-05 07:03:00,928 Hill St, Portland,OR,97035 +169566,34in Ultrawide Monitor,1,379.99,2019-03-28 22:27:00,340 2nd St, Atlanta,GA,30301 +169567,34in Ultrawide Monitor,1,379.99,2019-03-01 18:36:00,916 Forest St, San Francisco,CA,94016 +169568,AA Batteries (4-pack),2,3.84,2019-03-28 16:37:00,381 Lake St, Los Angeles,CA,90001 +169569,Bose SoundSport Headphones,1,99.99,2019-03-31 21:26:00,725 Willow St, Austin,TX,73301 +169570,LG Washing Machine,1,600.0,2019-03-09 17:51:00,535 Hickory St, Austin,TX,73301 +169571,34in Ultrawide Monitor,1,379.99,2019-03-19 19:34:00,929 Madison St, San Francisco,CA,94016 +169572,27in FHD Monitor,1,149.99,2019-03-09 02:32:00,818 Meadow St, San Francisco,CA,94016 +169573,Lightning Charging Cable,1,14.95,2019-03-27 14:44:00,733 Wilson St, Portland,OR,97035 +169574,AAA Batteries (4-pack),1,2.99,2019-03-10 17:12:00,126 Willow St, Boston,MA,02215 +169575,34in Ultrawide Monitor,1,379.99,2019-03-09 19:54:00,764 14th St, Austin,TX,73301 +169576,Wired Headphones,1,11.99,2019-03-04 19:56:00,158 4th St, San Francisco,CA,94016 +169577,USB-C Charging Cable,1,11.95,2019-03-25 16:48:00,177 8th St, San Francisco,CA,94016 +169578,iPhone,1,700.0,2019-03-08 15:25:00,848 11th St, Boston,MA,02215 +169579,Lightning Charging Cable,1,14.95,2019-03-07 16:59:00,994 Elm St, Los Angeles,CA,90001 +169580,Google Phone,1,600.0,2019-03-09 21:49:00,231 South St, Boston,MA,02215 +169581,AA Batteries (4-pack),2,3.84,2019-03-17 19:15:00,785 Cedar St, San Francisco,CA,94016 +169582,USB-C Charging Cable,1,11.95,2019-03-19 09:00:00,866 Hill St, Seattle,WA,98101 +169583,Bose SoundSport Headphones,1,99.99,2019-03-21 11:01:00,363 Church St, Seattle,WA,98101 +169584,AA Batteries (4-pack),1,3.84,2019-03-14 17:56:00,706 North St, Los Angeles,CA,90001 +169585,Bose SoundSport Headphones,1,99.99,2019-03-28 15:02:00,136 South St, Los Angeles,CA,90001 +169586,AA Batteries (4-pack),1,3.84,2019-03-11 20:36:00,121 Cherry St, Portland,OR,97035 +169587,Lightning Charging Cable,1,14.95,2019-03-03 00:30:00,357 11th St, Los Angeles,CA,90001 +169588,AAA Batteries (4-pack),1,2.99,2019-03-19 12:59:00,474 8th St, Los Angeles,CA,90001 +169589,Apple Airpods Headphones,1,150.0,2019-03-20 06:39:00,433 Jefferson St, Atlanta,GA,30301 +169590,Bose SoundSport Headphones,1,99.99,2019-03-04 17:10:00,982 6th St, Los Angeles,CA,90001 +169591,Wired Headphones,1,11.99,2019-03-24 19:32:00,945 Cherry St, Los Angeles,CA,90001 +169592,Macbook Pro Laptop,1,1700.0,2019-03-28 20:30:00,304 Sunset St, New York City,NY,10001 +169593,Bose SoundSport Headphones,1,99.99,2019-03-18 16:27:00,913 Sunset St, New York City,NY,10001 +169594,AA Batteries (4-pack),1,3.84,2019-03-06 19:03:00,978 Madison St, New York City,NY,10001 +169595,Bose SoundSport Headphones,1,99.99,2019-03-06 10:08:00,575 14th St, Boston,MA,02215 +169596,Lightning Charging Cable,1,14.95,2019-03-24 14:54:00,561 Elm St, Austin,TX,73301 +169597,Lightning Charging Cable,1,14.95,2019-03-07 11:48:00,769 Lakeview St, Los Angeles,CA,90001 +169598,Apple Airpods Headphones,1,150.0,2019-03-31 21:16:00,63 Adams St, San Francisco,CA,94016 +169599,27in 4K Gaming Monitor,1,389.99,2019-03-11 18:22:00,905 Willow St, San Francisco,CA,94016 +169600,Wired Headphones,1,11.99,2019-03-10 11:12:00,839 Cedar St, New York City,NY,10001 +169601,Wired Headphones,3,11.99,2019-03-22 16:02:00,94 Hickory St, Boston,MA,02215 +169602,AAA Batteries (4-pack),4,2.99,2019-03-25 12:12:00,590 Madison St, Boston,MA,02215 +169603,AAA Batteries (4-pack),2,2.99,2019-03-20 11:51:00,185 7th St, San Francisco,CA,94016 +169604,AAA Batteries (4-pack),5,2.99,2019-03-08 20:47:00,940 Park St, Portland,OR,97035 +169605,27in 4K Gaming Monitor,1,389.99,2019-03-16 10:20:00,11 12th St, Los Angeles,CA,90001 +169606,Bose SoundSport Headphones,1,99.99,2019-03-06 23:23:00,399 Jefferson St, Portland,OR,97035 +169607,AA Batteries (4-pack),1,3.84,2019-03-01 20:01:00,846 River St, New York City,NY,10001 +169608,Lightning Charging Cable,1,14.95,2019-03-13 18:29:00,61 Pine St, Boston,MA,02215 +169609,Lightning Charging Cable,1,14.95,2019-03-18 21:23:00,825 Lincoln St, San Francisco,CA,94016 +169610,LG Washing Machine,1,600.0,2019-03-13 11:43:00,101 Madison St, San Francisco,CA,94016 +169611,Flatscreen TV,1,300.0,2019-03-17 11:33:00,498 Wilson St, New York City,NY,10001 +169612,Flatscreen TV,1,300.0,2019-03-18 16:07:00,125 Cherry St, Seattle,WA,98101 +169613,AAA Batteries (4-pack),2,2.99,2019-03-24 17:20:00,984 Church St, Los Angeles,CA,90001 +169614,AA Batteries (4-pack),4,3.84,2019-03-10 12:29:00,914 Chestnut St, Boston,MA,02215 +169615,USB-C Charging Cable,1,11.95,2019-03-13 21:29:00,981 Lincoln St, Los Angeles,CA,90001 +169616,USB-C Charging Cable,2,11.95,2019-03-03 11:25:00,893 Jefferson St, Los Angeles,CA,90001 +169617,Bose SoundSport Headphones,1,99.99,2019-03-17 12:08:00,106 Walnut St, San Francisco,CA,94016 +169618,AA Batteries (4-pack),1,3.84,2019-03-03 14:37:00,931 Lake St, San Francisco,CA,94016 +169619,USB-C Charging Cable,1,11.95,2019-03-12 21:36:00,995 Wilson St, Atlanta,GA,30301 +169620,Wired Headphones,2,11.99,2019-03-24 12:40:00,994 Adams St, Boston,MA,02215 +169621,AA Batteries (4-pack),3,3.84,2019-03-22 14:20:00,784 Chestnut St, Seattle,WA,98101 +169622,20in Monitor,1,109.99,2019-03-22 09:57:00,111 Elm St, Portland,OR,97035 +169623,Flatscreen TV,1,300.0,2019-03-16 19:26:00,779 2nd St, San Francisco,CA,94016 +169624,Bose SoundSport Headphones,1,99.99,2019-03-22 09:46:00,524 Forest St, Los Angeles,CA,90001 +169625,Bose SoundSport Headphones,1,99.99,2019-03-20 16:21:00,540 Cedar St, Dallas,TX,75001 +169626,USB-C Charging Cable,1,11.95,2019-03-20 22:43:00,665 Main St, Los Angeles,CA,90001 +169627,AAA Batteries (4-pack),4,2.99,2019-03-26 17:33:00,289 Lakeview St, Los Angeles,CA,90001 +169628,AA Batteries (4-pack),1,3.84,2019-03-05 13:05:00,842 Willow St, San Francisco,CA,94016 +169629,AA Batteries (4-pack),1,3.84,2019-03-07 11:48:00,316 8th St, San Francisco,CA,94016 +169630,USB-C Charging Cable,1,11.95,2019-03-18 11:00:00,418 Forest St, Austin,TX,73301 +169631,Bose SoundSport Headphones,1,99.99,2019-03-08 19:41:00,868 Washington St, Seattle,WA,98101 +169632,Apple Airpods Headphones,1,150.0,2019-03-19 16:29:00,645 River St, Los Angeles,CA,90001 +169633,USB-C Charging Cable,1,11.95,2019-03-30 12:20:00,269 Forest St, New York City,NY,10001 +169634,Apple Airpods Headphones,1,150.0,2019-03-06 07:51:00,817 West St, New York City,NY,10001 +169635,Bose SoundSport Headphones,1,99.99,2019-03-18 17:35:00,191 Meadow St, San Francisco,CA,94016 +169636,AA Batteries (4-pack),1,3.84,2019-03-17 10:54:00,291 9th St, New York City,NY,10001 +169637,Wired Headphones,1,11.99,2019-03-15 23:24:00,684 Madison St, New York City,NY,10001 +169638,USB-C Charging Cable,1,11.95,2019-03-01 19:43:00,151 Washington St, New York City,NY,10001 +169639,AA Batteries (4-pack),2,3.84,2019-03-09 21:30:00,294 South St, Los Angeles,CA,90001 +169640,27in 4K Gaming Monitor,1,389.99,2019-03-09 17:33:00,168 Adams St, Atlanta,GA,30301 +169641,Wired Headphones,1,11.99,2019-03-18 13:29:00,523 Lakeview St, Atlanta,GA,30301 +169642,Bose SoundSport Headphones,1,99.99,2019-03-10 00:08:00,193 Jefferson St, San Francisco,CA,94016 +169643,Google Phone,1,600.0,2019-03-19 21:18:00,79 10th St, San Francisco,CA,94016 +169643,Bose SoundSport Headphones,1,99.99,2019-03-19 21:18:00,79 10th St, San Francisco,CA,94016 +169644,Lightning Charging Cable,1,14.95,2019-03-19 14:45:00,613 Madison St, San Francisco,CA,94016 +169645,Flatscreen TV,1,300.0,2019-03-02 10:13:00,543 Main St, San Francisco,CA,94016 +169646,Google Phone,1,600.0,2019-03-29 09:24:00,627 9th St, Seattle,WA,98101 +169647,Apple Airpods Headphones,1,150.0,2019-03-16 12:41:00,153 South St, Portland,OR,97035 +169648,AA Batteries (4-pack),1,3.84,2019-03-15 14:45:00,646 7th St, Dallas,TX,75001 +169649,AA Batteries (4-pack),1,3.84,2019-03-17 18:35:00,940 Dogwood St, Los Angeles,CA,90001 +169650,AAA Batteries (4-pack),2,2.99,2019-03-28 20:12:00,315 Park St, New York City,NY,10001 +169651,AAA Batteries (4-pack),1,2.99,2019-03-20 20:21:00,657 11th St, Los Angeles,CA,90001 +169652,AAA Batteries (4-pack),1,2.99,2019-03-29 00:04:00,388 South St, San Francisco,CA,94016 +169653,Flatscreen TV,1,300.0,2019-03-01 15:13:00,483 Church St, Los Angeles,CA,90001 +169654,AAA Batteries (4-pack),1,2.99,2019-03-04 07:00:00,459 2nd St, Portland,OR,97035 +169655,AAA Batteries (4-pack),2,2.99,2019-03-25 16:08:00,738 Spruce St, San Francisco,CA,94016 +169656,34in Ultrawide Monitor,1,379.99,2019-03-09 12:22:00,682 Forest St, Dallas,TX,75001 +169657,Apple Airpods Headphones,1,150.0,2019-03-10 07:20:00,32 Maple St, Seattle,WA,98101 +169658,Lightning Charging Cable,1,14.95,2019-03-17 23:23:00,140 Hill St, San Francisco,CA,94016 +169659,Bose SoundSport Headphones,1,99.99,2019-03-22 16:56:00,680 Forest St, Seattle,WA,98101 +169660,USB-C Charging Cable,1,11.95,2019-03-30 16:38:00,331 Meadow St, Los Angeles,CA,90001 +169661,27in 4K Gaming Monitor,1,389.99,2019-03-29 21:48:00,23 12th St, Seattle,WA,98101 +169662,Google Phone,1,600.0,2019-03-05 11:36:00,350 River St, San Francisco,CA,94016 +169663,Vareebadd Phone,1,400.0,2019-03-19 08:13:00,155 Highland St, New York City,NY,10001 +169664,Wired Headphones,1,11.99,2019-03-18 23:18:00,483 Maple St, New York City,NY,10001 +169665,27in 4K Gaming Monitor,1,389.99,2019-03-24 09:44:00,303 10th St, San Francisco,CA,94016 +169666,Google Phone,1,600.0,2019-03-28 08:05:00,513 4th St, Atlanta,GA,30301 +169666,Bose SoundSport Headphones,1,99.99,2019-03-28 08:05:00,513 4th St, Atlanta,GA,30301 +169667,AA Batteries (4-pack),1,3.84,2019-03-13 20:29:00,752 Center St, Los Angeles,CA,90001 +169668,Bose SoundSport Headphones,1,99.99,2019-03-31 23:20:00,924 13th St, San Francisco,CA,94016 +169668,Lightning Charging Cable,1,14.95,2019-03-31 23:20:00,924 13th St, San Francisco,CA,94016 +169669,USB-C Charging Cable,1,11.95,2019-03-06 22:15:00,824 Dogwood St, Los Angeles,CA,90001 +169670,Lightning Charging Cable,1,14.95,2019-03-05 18:46:00,949 Jefferson St, Boston,MA,02215 +169671,Wired Headphones,1,11.99,2019-03-14 09:12:00,209 Washington St, San Francisco,CA,94016 +169672,Wired Headphones,1,11.99,2019-03-12 15:30:00,729 Hill St, New York City,NY,10001 +169673,ThinkPad Laptop,1,999.99,2019-03-05 14:08:00,411 13th St, San Francisco,CA,94016 +169674,Apple Airpods Headphones,1,150.0,2019-03-18 06:51:00,808 Park St, Atlanta,GA,30301 +169675,AAA Batteries (4-pack),1,2.99,2019-03-28 11:53:00,908 2nd St, Austin,TX,73301 +169676,27in FHD Monitor,1,149.99,2019-03-10 22:56:00,540 Lakeview St, Dallas,TX,75001 +169677,27in 4K Gaming Monitor,1,389.99,2019-03-08 08:22:00,777 Johnson St, Atlanta,GA,30301 +169678,Lightning Charging Cable,1,14.95,2019-03-07 19:29:00,831 Ridge St, San Francisco,CA,94016 +169679,Google Phone,1,600.0,2019-03-11 16:24:00,102 Ridge St, Dallas,TX,75001 +169680,USB-C Charging Cable,2,11.95,2019-03-30 15:49:00,312 Church St, Boston,MA,02215 +169681,ThinkPad Laptop,1,999.99,2019-03-07 10:16:00,7 Spruce St, Los Angeles,CA,90001 +169681,Apple Airpods Headphones,1,150.0,2019-03-07 10:16:00,7 Spruce St, Los Angeles,CA,90001 +169682,27in 4K Gaming Monitor,1,389.99,2019-03-03 02:00:00,109 Lincoln St, San Francisco,CA,94016 +169683,Google Phone,1,600.0,2019-03-10 11:51:00,403 South St, Seattle,WA,98101 +169683,USB-C Charging Cable,1,11.95,2019-03-10 11:51:00,403 South St, Seattle,WA,98101 +169684,Bose SoundSport Headphones,1,99.99,2019-03-19 12:02:00,111 Walnut St, Dallas,TX,75001 +169685,Wired Headphones,1,11.99,2019-03-29 14:18:00,661 Church St, San Francisco,CA,94016 +169686,Lightning Charging Cable,1,14.95,2019-03-09 21:51:00,863 Lakeview St, San Francisco,CA,94016 +169687,AAA Batteries (4-pack),1,2.99,2019-03-24 14:37:00,976 Hill St, Seattle,WA,98101 +169687,Lightning Charging Cable,1,14.95,2019-03-24 14:37:00,976 Hill St, Seattle,WA,98101 +169688,AAA Batteries (4-pack),1,2.99,2019-03-10 20:32:00,352 Willow St, Los Angeles,CA,90001 +169689,27in FHD Monitor,1,149.99,2019-03-25 09:57:00,843 Madison St, Dallas,TX,75001 +169690,Apple Airpods Headphones,1,150.0,2019-03-10 11:37:00,168 Ridge St, Dallas,TX,75001 +169691,iPhone,1,700.0,2019-03-03 09:24:00,439 Highland St, New York City,NY,10001 +169692,34in Ultrawide Monitor,1,379.99,2019-03-16 11:51:00,738 Elm St, Atlanta,GA,30301 +169693,Wired Headphones,1,11.99,2019-03-10 12:24:00,38 Elm St, San Francisco,CA,94016 +169694,Wired Headphones,1,11.99,2019-03-07 17:18:00,868 Jefferson St, Boston,MA,02215 +169695,Flatscreen TV,1,300.0,2019-03-21 10:50:00,248 Wilson St, Boston,MA,02215 +169696,20in Monitor,1,109.99,2019-03-05 11:21:00,128 Cherry St, Dallas,TX,75001 +169697,Wired Headphones,1,11.99,2019-03-06 19:49:00,22 Adams St, San Francisco,CA,94016 +169698,iPhone,1,700.0,2019-03-13 22:44:00,363 Lake St, Boston,MA,02215 +169698,Lightning Charging Cable,1,14.95,2019-03-13 22:44:00,363 Lake St, Boston,MA,02215 +169699,34in Ultrawide Monitor,1,379.99,2019-03-28 12:57:00,268 Lake St, New York City,NY,10001 +169700,34in Ultrawide Monitor,1,379.99,2019-03-10 11:55:00,35 Ridge St, Seattle,WA,98101 +169701,Flatscreen TV,1,300.0,2019-03-29 19:02:00,351 Forest St, Atlanta,GA,30301 +169702,Lightning Charging Cable,1,14.95,2019-03-01 17:47:00,926 Sunset St, San Francisco,CA,94016 +169703,Lightning Charging Cable,1,14.95,2019-03-28 12:52:00,228 Madison St, Los Angeles,CA,90001 +169704,Lightning Charging Cable,1,14.95,2019-03-12 04:51:00,822 North St, Los Angeles,CA,90001 +169705,USB-C Charging Cable,1,11.95,2019-03-05 12:11:00,989 Hickory St, Austin,TX,73301 +169706,Flatscreen TV,1,300.0,2019-03-28 11:11:00,700 12th St, Boston,MA,02215 +169707,Apple Airpods Headphones,1,150.0,2019-03-01 18:47:00,127 Ridge St, Portland,OR,97035 +169708,AA Batteries (4-pack),1,3.84,2019-03-22 09:03:00,626 Cherry St, Boston,MA,02215 +169709,USB-C Charging Cable,1,11.95,2019-03-05 19:29:00,576 River St, Dallas,TX,75001 +169710,Flatscreen TV,1,300.0,2019-03-17 12:03:00,461 Pine St, Seattle,WA,98101 +169711,AAA Batteries (4-pack),1,2.99,2019-03-15 07:41:00,75 Sunset St, Austin,TX,73301 +169712,Lightning Charging Cable,1,14.95,2019-03-23 09:49:00,212 Cherry St, Atlanta,GA,30301 +169713,Vareebadd Phone,1,400.0,2019-03-24 16:19:00,219 Chestnut St, Los Angeles,CA,90001 +169714,Lightning Charging Cable,1,14.95,2019-03-27 19:27:00,907 Walnut St, Seattle,WA,98101 +169715,Bose SoundSport Headphones,1,99.99,2019-03-19 16:49:00,21 Center St, Boston,MA,02215 +169716,USB-C Charging Cable,1,11.95,2019-03-26 11:52:00,331 River St, San Francisco,CA,94016 +169717,USB-C Charging Cable,1,11.95,2019-03-24 13:10:00,89 Jefferson St, New York City,NY,10001 +169718,Macbook Pro Laptop,1,1700.0,2019-03-18 10:09:00,289 12th St, Los Angeles,CA,90001 +169719,Wired Headphones,1,11.99,2019-03-25 18:35:00,183 Meadow St, Austin,TX,73301 +169720,iPhone,1,700.0,2019-03-01 13:33:00,566 North St, Portland,ME,04101 +169720,Lightning Charging Cable,1,14.95,2019-03-01 13:33:00,566 North St, Portland,ME,04101 +169721,Wired Headphones,3,11.99,2019-03-15 18:46:00,490 Lake St, Atlanta,GA,30301 +169722,USB-C Charging Cable,1,11.95,2019-03-24 10:47:00,545 Main St, Atlanta,GA,30301 +169723,AA Batteries (4-pack),1,3.84,2019-03-28 20:23:00,362 Hill St, Los Angeles,CA,90001 +169724,AAA Batteries (4-pack),1,2.99,2019-03-18 13:30:00,599 10th St, San Francisco,CA,94016 +169725,Lightning Charging Cable,1,14.95,2019-03-06 10:39:00,477 Adams St, San Francisco,CA,94016 +169726,AAA Batteries (4-pack),2,2.99,2019-03-13 19:34:00,50 South St, Atlanta,GA,30301 +169727,AA Batteries (4-pack),1,3.84,2019-03-23 16:39:00,194 4th St, Austin,TX,73301 +169728,Apple Airpods Headphones,1,150.0,2019-03-03 21:27:00,97 Chestnut St, Seattle,WA,98101 +169729,Bose SoundSport Headphones,1,99.99,2019-03-08 20:59:00,363 West St, Boston,MA,02215 +169730,USB-C Charging Cable,1,11.95,2019-03-12 11:10:00,768 Pine St, Austin,TX,73301 +169731,AA Batteries (4-pack),1,3.84,2019-03-11 21:19:00,655 Ridge St, San Francisco,CA,94016 +169732,AAA Batteries (4-pack),1,2.99,2019-03-31 20:12:00,437 Forest St, Los Angeles,CA,90001 +169733,Flatscreen TV,1,300.0,2019-03-11 01:45:00,400 4th St, Austin,TX,73301 +169734,Lightning Charging Cable,1,14.95,2019-03-25 14:51:00,535 Adams St, Boston,MA,02215 +169735,27in FHD Monitor,1,149.99,2019-03-02 08:32:00,504 Center St, Austin,TX,73301 +169736,Lightning Charging Cable,1,14.95,2019-03-17 18:56:00,707 5th St, Austin,TX,73301 +169737,AA Batteries (4-pack),1,3.84,2019-03-11 19:07:00,204 Johnson St, Dallas,TX,75001 +169738,iPhone,1,700.0,2019-03-02 13:12:00,962 11th St, San Francisco,CA,94016 +169738,Lightning Charging Cable,1,14.95,2019-03-02 13:12:00,962 11th St, San Francisco,CA,94016 +169739,AA Batteries (4-pack),1,3.84,2019-03-25 15:27:00,143 8th St, Atlanta,GA,30301 +169740,USB-C Charging Cable,1,11.95,2019-03-01 16:15:00,936 Center St, Los Angeles,CA,90001 +169741,Wired Headphones,1,11.99,2019-03-23 14:26:00,493 Spruce St, Seattle,WA,98101 +169742,Flatscreen TV,1,300.0,2019-03-01 20:19:00,394 Cherry St, Portland,OR,97035 +169743,Lightning Charging Cable,1,14.95,2019-03-11 21:21:00,772 12th St, Portland,OR,97035 +169744,Lightning Charging Cable,2,14.95,2019-03-20 19:20:00,211 7th St, Seattle,WA,98101 +169745,Lightning Charging Cable,2,14.95,2019-03-13 09:14:00,514 Center St, Dallas,TX,75001 +169746,Bose SoundSport Headphones,1,99.99,2019-03-03 21:37:00,167 Park St, New York City,NY,10001 +169747,Bose SoundSport Headphones,1,99.99,2019-03-21 09:11:00,198 6th St, Portland,ME,04101 +169748,27in FHD Monitor,1,149.99,2019-03-08 00:30:00,815 12th St, Dallas,TX,75001 +169749,AA Batteries (4-pack),2,3.84,2019-03-06 00:07:00,477 Walnut St, Boston,MA,02215 +169750,Lightning Charging Cable,1,14.95,2019-03-24 17:52:00,176 Forest St, San Francisco,CA,94016 +169751,AAA Batteries (4-pack),1,2.99,2019-03-16 11:06:00,911 Madison St, New York City,NY,10001 +169752,Lightning Charging Cable,1,14.95,2019-03-21 17:21:00,731 6th St, Los Angeles,CA,90001 +169753,Apple Airpods Headphones,1,150.0,2019-03-02 16:32:00,105 Church St, Boston,MA,02215 +169754,ThinkPad Laptop,1,999.99,2019-03-28 16:21:00,228 Willow St, Seattle,WA,98101 +169755,27in FHD Monitor,1,149.99,2019-03-06 21:18:00,305 6th St, San Francisco,CA,94016 +169756,AA Batteries (4-pack),1,3.84,2019-03-22 12:02:00,500 14th St, Atlanta,GA,30301 +169757,Bose SoundSport Headphones,1,99.99,2019-03-21 10:45:00,667 Cherry St, Los Angeles,CA,90001 +169758,20in Monitor,1,109.99,2019-03-04 17:33:00,63 Cedar St, San Francisco,CA,94016 +169759,Apple Airpods Headphones,1,150.0,2019-03-18 15:23:00,815 Walnut St, San Francisco,CA,94016 +169760,Apple Airpods Headphones,1,150.0,2019-03-03 22:27:00,172 5th St, San Francisco,CA,94016 +169761,Wired Headphones,1,11.99,2019-03-05 15:19:00,289 Walnut St, Atlanta,GA,30301 +169762,Apple Airpods Headphones,1,150.0,2019-03-25 10:14:00,727 Cedar St, New York City,NY,10001 +169763,AAA Batteries (4-pack),2,2.99,2019-03-02 12:59:00,487 Church St, San Francisco,CA,94016 +169764,Lightning Charging Cable,1,14.95,2019-03-13 20:38:00,691 Lake St, Seattle,WA,98101 +169765,USB-C Charging Cable,1,11.95,2019-03-20 22:54:00,597 Walnut St, Dallas,TX,75001 +169765,Wired Headphones,1,11.99,2019-03-20 22:54:00,597 Walnut St, Dallas,TX,75001 +169766,AAA Batteries (4-pack),1,2.99,2019-03-17 22:16:00,785 5th St, Boston,MA,02215 +169767,USB-C Charging Cable,1,11.95,2019-03-18 22:19:00,248 Main St, San Francisco,CA,94016 +169768,AAA Batteries (4-pack),1,2.99,2019-03-15 19:55:00,246 Forest St, Los Angeles,CA,90001 +169769,AA Batteries (4-pack),1,3.84,2019-03-30 10:14:00,43 Park St, Los Angeles,CA,90001 +169770,34in Ultrawide Monitor,1,379.99,2019-03-12 21:17:00,404 Main St, Dallas,TX,75001 +169771,Flatscreen TV,1,300.0,2019-03-05 19:45:00,168 Chestnut St, Boston,MA,02215 +169772,Apple Airpods Headphones,1,150.0,2019-03-28 20:22:00,899 1st St, Atlanta,GA,30301 +169773,AA Batteries (4-pack),1,3.84,2019-03-13 11:54:00,530 12th St, Boston,MA,02215 +169774,ThinkPad Laptop,1,999.99,2019-03-15 17:11:00,415 Cedar St, New York City,NY,10001 +169775,27in FHD Monitor,1,149.99,2019-03-11 14:45:00,216 6th St, Los Angeles,CA,90001 +169776,Google Phone,1,600.0,2019-03-31 09:26:00,840 Adams St, New York City,NY,10001 +169777,Google Phone,1,600.0,2019-03-21 15:06:00,270 Chestnut St, San Francisco,CA,94016 +169778,Apple Airpods Headphones,1,150.0,2019-03-14 23:13:00,304 Maple St, Portland,OR,97035 +169779,AAA Batteries (4-pack),1,2.99,2019-03-05 19:10:00,824 2nd St, San Francisco,CA,94016 +169780,Apple Airpods Headphones,1,150.0,2019-03-01 21:35:00,467 Lakeview St, Seattle,WA,98101 +169780,Lightning Charging Cable,1,14.95,2019-03-01 21:35:00,467 Lakeview St, Seattle,WA,98101 +169781,Apple Airpods Headphones,1,150.0,2019-03-03 11:37:00,549 9th St, Seattle,WA,98101 +169782,AA Batteries (4-pack),1,3.84,2019-03-24 08:33:00,831 12th St, San Francisco,CA,94016 +169783,20in Monitor,1,109.99,2019-03-23 09:58:00,668 Lake St, Los Angeles,CA,90001 +169784,34in Ultrawide Monitor,1,379.99,2019-03-11 17:07:00,544 South St, San Francisco,CA,94016 +169785,Google Phone,1,600.0,2019-03-06 13:52:00,449 8th St, San Francisco,CA,94016 +169786,Wired Headphones,1,11.99,2019-03-26 23:08:00,143 Adams St, Boston,MA,02215 +169787,USB-C Charging Cable,1,11.95,2019-03-15 19:24:00,411 Johnson St, Boston,MA,02215 +169788,Lightning Charging Cable,1,14.95,2019-03-21 11:05:00,918 Forest St, Los Angeles,CA,90001 +169789,Apple Airpods Headphones,1,150.0,2019-03-22 08:27:00,762 Adams St, San Francisco,CA,94016 +169790,Lightning Charging Cable,1,14.95,2019-03-14 15:52:00,979 Wilson St, Los Angeles,CA,90001 +169791,Apple Airpods Headphones,1,150.0,2019-03-27 23:34:00,96 7th St, Boston,MA,02215 +169792,AA Batteries (4-pack),2,3.84,2019-03-27 13:40:00,677 North St, Boston,MA,02215 +169793,20in Monitor,1,109.99,2019-03-09 12:43:00,3 Maple St, Atlanta,GA,30301 +169794,USB-C Charging Cable,1,11.95,2019-03-08 15:10:00,57 8th St, Los Angeles,CA,90001 +169795,Wired Headphones,1,11.99,2019-03-11 21:26:00,151 Lincoln St, Boston,MA,02215 +169796,AA Batteries (4-pack),1,3.84,2019-03-15 10:24:00,75 9th St, San Francisco,CA,94016 +169797,Apple Airpods Headphones,1,150.0,2019-03-29 12:55:00,139 South St, Dallas,TX,75001 +169798,27in FHD Monitor,1,149.99,2019-03-27 14:16:00,854 11th St, New York City,NY,10001 +169799,Google Phone,1,600.0,2019-03-24 19:27:00,129 Elm St, San Francisco,CA,94016 +169800,iPhone,1,700.0,2019-03-26 15:30:00,682 4th St, New York City,NY,10001 +169800,Apple Airpods Headphones,1,150.0,2019-03-26 15:30:00,682 4th St, New York City,NY,10001 +169801,USB-C Charging Cable,1,11.95,2019-03-27 19:24:00,450 Lakeview St, San Francisco,CA,94016 +169802,Bose SoundSport Headphones,1,99.99,2019-03-09 10:46:00,241 Johnson St, Los Angeles,CA,90001 +169803,AA Batteries (4-pack),1,3.84,2019-03-09 17:39:00,188 4th St, Portland,OR,97035 +169804,Google Phone,1,600.0,2019-03-26 00:16:00,793 Walnut St, Austin,TX,73301 +169805,Bose SoundSport Headphones,1,99.99,2019-03-08 20:41:00,844 Ridge St, Portland,OR,97035 +169806,AA Batteries (4-pack),1,3.84,2019-03-23 21:25:00,920 Cherry St, New York City,NY,10001 +169807,Apple Airpods Headphones,1,150.0,2019-03-10 22:34:00,674 Ridge St, Boston,MA,02215 +169808,AAA Batteries (4-pack),2,2.99,2019-03-17 06:37:00,724 12th St, Los Angeles,CA,90001 +169809,Bose SoundSport Headphones,1,99.99,2019-03-06 23:30:00,696 Ridge St, Seattle,WA,98101 +169810,27in FHD Monitor,1,149.99,2019-03-05 19:37:00,937 Chestnut St, San Francisco,CA,94016 +169811,27in 4K Gaming Monitor,1,389.99,2019-03-12 14:47:00,258 8th St, Seattle,WA,98101 +169812,27in 4K Gaming Monitor,1,389.99,2019-03-28 17:42:00,14 Highland St, Boston,MA,02215 +169813,AA Batteries (4-pack),1,3.84,2019-03-31 05:21:00,999 2nd St, Atlanta,GA,30301 +169814,Lightning Charging Cable,1,14.95,2019-03-18 00:23:00,179 Cedar St, Los Angeles,CA,90001 +169815,Bose SoundSport Headphones,1,99.99,2019-03-30 23:08:00,295 Dogwood St, Seattle,WA,98101 +169816,ThinkPad Laptop,1,999.99,2019-03-13 10:46:00,258 2nd St, San Francisco,CA,94016 +169817,Wired Headphones,1,11.99,2019-03-13 22:10:00,791 11th St, San Francisco,CA,94016 +169818,AA Batteries (4-pack),1,3.84,2019-03-20 22:07:00,572 8th St, San Francisco,CA,94016 +169819,AA Batteries (4-pack),1,3.84,2019-03-21 09:18:00,88 Willow St, Los Angeles,CA,90001 +169820,AAA Batteries (4-pack),1,2.99,2019-03-11 12:27:00,117 Willow St, Boston,MA,02215 +169821,AAA Batteries (4-pack),1,2.99,2019-03-19 09:52:00,390 Johnson St, Austin,TX,73301 +169822,AAA Batteries (4-pack),2,2.99,2019-03-02 06:43:00,964 Johnson St, Austin,TX,73301 +169823,Wired Headphones,1,11.99,2019-03-19 20:22:00,847 Washington St, Austin,TX,73301 +169824,Macbook Pro Laptop,1,1700.0,2019-03-08 18:39:00,8 West St, San Francisco,CA,94016 +169825,Wired Headphones,2,11.99,2019-03-12 09:48:00,606 Hickory St, Portland,OR,97035 +169826,Lightning Charging Cable,1,14.95,2019-03-13 11:19:00,318 Adams St, Boston,MA,02215 +169827,27in 4K Gaming Monitor,1,389.99,2019-03-06 20:32:00,170 7th St, San Francisco,CA,94016 +169828,AAA Batteries (4-pack),1,2.99,2019-03-14 18:44:00,371 12th St, Austin,TX,73301 +169829,Flatscreen TV,1,300.0,2019-03-16 13:35:00,412 Hickory St, Los Angeles,CA,90001 +169830,Google Phone,1,600.0,2019-03-30 14:56:00,879 West St, New York City,NY,10001 +169830,USB-C Charging Cable,2,11.95,2019-03-30 14:56:00,879 West St, New York City,NY,10001 +169831,USB-C Charging Cable,1,11.95,2019-03-09 12:07:00,611 North St, Atlanta,GA,30301 +169832,Bose SoundSport Headphones,1,99.99,2019-03-21 19:26:00,365 Elm St, Atlanta,GA,30301 +169833,Macbook Pro Laptop,1,1700.0,2019-03-30 10:47:00,659 Jackson St, San Francisco,CA,94016 +169834,Wired Headphones,1,11.99,2019-03-19 11:31:00,301 Willow St, New York City,NY,10001 +169835,Apple Airpods Headphones,1,150.0,2019-03-14 14:46:00,560 South St, New York City,NY,10001 +169836,34in Ultrawide Monitor,1,379.99,2019-03-22 15:58:00,726 11th St, Dallas,TX,75001 +169837,Lightning Charging Cable,1,14.95,2019-03-22 10:15:00,238 Church St, Boston,MA,02215 +169838,AA Batteries (4-pack),1,3.84,2019-03-14 20:33:00,724 West St, Los Angeles,CA,90001 +169839,Lightning Charging Cable,1,14.95,2019-03-13 20:44:00,511 Willow St, San Francisco,CA,94016 +169840,Flatscreen TV,1,300.0,2019-03-23 15:30:00,744 Wilson St, Atlanta,GA,30301 +169841,USB-C Charging Cable,1,11.95,2019-03-07 13:17:00,461 Chestnut St, New York City,NY,10001 +169842,Lightning Charging Cable,1,14.95,2019-03-14 22:19:00,870 Highland St, San Francisco,CA,94016 +169843,USB-C Charging Cable,1,11.95,2019-03-02 21:34:00,188 Ridge St, Portland,ME,04101 +169844,USB-C Charging Cable,1,11.95,2019-03-04 12:22:00,259 Washington St, Atlanta,GA,30301 +169845,Bose SoundSport Headphones,1,99.99,2019-03-02 18:56:00,488 Hill St, San Francisco,CA,94016 +169846,Apple Airpods Headphones,1,150.0,2019-03-23 17:43:00,411 Cherry St, New York City,NY,10001 +169847,AA Batteries (4-pack),2,3.84,2019-03-31 06:59:00,658 Lakeview St, San Francisco,CA,94016 +169848,AAA Batteries (4-pack),2,2.99,2019-03-23 15:55:00,851 Pine St, Boston,MA,02215 +169849,Lightning Charging Cable,3,14.95,2019-03-03 19:00:00,628 Center St, New York City,NY,10001 +169850,34in Ultrawide Monitor,1,379.99,2019-03-26 16:15:00,904 Main St, Seattle,WA,98101 +169851,Google Phone,1,600.0,2019-03-22 21:40:00,35 Lincoln St, San Francisco,CA,94016 +169852,AA Batteries (4-pack),1,3.84,2019-03-24 17:37:00,397 North St, Dallas,TX,75001 +169853,AA Batteries (4-pack),1,3.84,2019-03-24 18:04:00,156 Church St, Los Angeles,CA,90001 +169854,AA Batteries (4-pack),1,3.84,2019-03-05 20:55:00,181 Maple St, Austin,TX,73301 +169855,Vareebadd Phone,1,400.0,2019-03-21 14:05:00,536 Madison St, Boston,MA,02215 +169856,Lightning Charging Cable,1,14.95,2019-03-05 20:34:00,387 Main St, San Francisco,CA,94016 +169857,AAA Batteries (4-pack),1,2.99,2019-03-12 23:52:00,763 Jefferson St, San Francisco,CA,94016 +169858,Lightning Charging Cable,1,14.95,2019-03-04 09:40:00,824 Washington St, Los Angeles,CA,90001 +169859,27in FHD Monitor,1,149.99,2019-03-14 11:00:00,748 Church St, New York City,NY,10001 +169860,AA Batteries (4-pack),2,3.84,2019-03-03 03:17:00,404 Elm St, Seattle,WA,98101 +169861,USB-C Charging Cable,1,11.95,2019-03-18 09:53:00,561 Chestnut St, Dallas,TX,75001 +169862,27in 4K Gaming Monitor,1,389.99,2019-03-24 18:59:00,537 5th St, Dallas,TX,75001 +169863,AAA Batteries (4-pack),1,2.99,2019-03-19 02:48:00,927 Elm St, San Francisco,CA,94016 +169864,20in Monitor,1,109.99,2019-03-11 20:39:00,517 9th St, San Francisco,CA,94016 +169865,Bose SoundSport Headphones,1,99.99,2019-03-23 19:42:00,455 2nd St, Los Angeles,CA,90001 +169866,Wired Headphones,1,11.99,2019-03-25 12:02:00,379 Maple St, Seattle,WA,98101 +169867,Google Phone,1,600.0,2019-03-25 18:28:00,570 Hill St, Dallas,TX,75001 +169868,Wired Headphones,1,11.99,2019-03-30 10:01:00,213 Cherry St, Seattle,WA,98101 +169869,Bose SoundSport Headphones,1,99.99,2019-03-08 19:28:00,296 Meadow St, San Francisco,CA,94016 +169870,AA Batteries (4-pack),1,3.84,2019-03-05 19:54:00,858 Lakeview St, San Francisco,CA,94016 +169871,AAA Batteries (4-pack),1,2.99,2019-03-18 00:42:00,140 Spruce St, San Francisco,CA,94016 +169872,27in 4K Gaming Monitor,1,389.99,2019-03-18 14:14:00,215 Main St, Austin,TX,73301 +169873,AAA Batteries (4-pack),1,2.99,2019-03-15 11:22:00,441 Lake St, Atlanta,GA,30301 +169874,iPhone,1,700.0,2019-03-27 16:48:00,53 Main St, San Francisco,CA,94016 +169875,27in FHD Monitor,1,149.99,2019-03-25 21:44:00,801 Pine St, Los Angeles,CA,90001 +169876,ThinkPad Laptop,1,999.99,2019-03-29 11:09:00,401 Sunset St, Portland,OR,97035 +169877,Bose SoundSport Headphones,1,99.99,2019-03-29 16:03:00,80 1st St, San Francisco,CA,94016 +169878,Bose SoundSport Headphones,1,99.99,2019-03-22 09:57:00,789 Wilson St, Dallas,TX,75001 +169879,Lightning Charging Cable,1,14.95,2019-03-19 07:03:00,34 Highland St, San Francisco,CA,94016 +169880,USB-C Charging Cable,1,11.95,2019-03-18 13:15:00,335 Ridge St, San Francisco,CA,94016 +169881,AA Batteries (4-pack),1,3.84,2019-03-18 00:57:00,663 Madison St, Los Angeles,CA,90001 +169882,USB-C Charging Cable,1,11.95,2019-03-12 21:24:00,750 Lincoln St, San Francisco,CA,94016 +169883,Google Phone,1,600.0,2019-03-02 11:10:00,285 Ridge St, Boston,MA,02215 +169883,Bose SoundSport Headphones,1,99.99,2019-03-02 11:10:00,285 Ridge St, Boston,MA,02215 +169884,Wired Headphones,2,11.99,2019-03-04 07:35:00,302 8th St, Los Angeles,CA,90001 +169885,Google Phone,1,600.0,2019-03-03 18:55:00,916 Lincoln St, Boston,MA,02215 +169886,20in Monitor,1,109.99,2019-03-27 14:29:00,677 12th St, Seattle,WA,98101 +169887,AA Batteries (4-pack),1,3.84,2019-03-09 20:58:00,275 Highland St, Los Angeles,CA,90001 +169888,USB-C Charging Cable,1,11.95,2019-03-23 00:11:00,681 Sunset St, Portland,OR,97035 +169889,AA Batteries (4-pack),1,3.84,2019-03-11 14:05:00,591 5th St, San Francisco,CA,94016 +169890,USB-C Charging Cable,1,11.95,2019-03-22 21:56:00,582 2nd St, Austin,TX,73301 +169891,AA Batteries (4-pack),1,3.84,2019-03-08 18:13:00,668 8th St, Seattle,WA,98101 +169892,AAA Batteries (4-pack),1,2.99,2019-03-11 10:02:00,955 Lake St, New York City,NY,10001 +169893,ThinkPad Laptop,1,999.99,2019-03-25 10:04:00,40 2nd St, Los Angeles,CA,90001 +169894,Wired Headphones,1,11.99,2019-03-27 09:13:00,107 8th St, Dallas,TX,75001 +169895,Flatscreen TV,1,300.0,2019-03-10 19:18:00,913 12th St, Portland,OR,97035 +169896,AA Batteries (4-pack),1,3.84,2019-03-31 21:28:00,857 Main St, New York City,NY,10001 +169897,AAA Batteries (4-pack),2,2.99,2019-03-27 14:54:00,239 Hickory St, Dallas,TX,75001 +169898,Flatscreen TV,1,300.0,2019-03-27 19:27:00,618 Sunset St, Boston,MA,02215 +169899,Macbook Pro Laptop,1,1700.0,2019-03-23 08:28:00,604 Lakeview St, Boston,MA,02215 +169900,Lightning Charging Cable,1,14.95,2019-03-25 13:09:00,594 Willow St, San Francisco,CA,94016 +169901,27in 4K Gaming Monitor,1,389.99,2019-03-14 19:38:00,659 4th St, San Francisco,CA,94016 +169902,Flatscreen TV,1,300.0,2019-03-16 13:52:00,545 2nd St, Atlanta,GA,30301 +169903,USB-C Charging Cable,1,11.95,2019-03-03 05:15:00,844 Forest St, San Francisco,CA,94016 +169904,AAA Batteries (4-pack),1,2.99,2019-03-18 18:43:00,911 Hickory St, Los Angeles,CA,90001 +169905,Apple Airpods Headphones,1,150.0,2019-03-01 18:42:00,135 9th St, San Francisco,CA,94016 +169906,Apple Airpods Headphones,1,150.0,2019-03-21 21:04:00,926 North St, Portland,OR,97035 +169907,USB-C Charging Cable,1,11.95,2019-03-23 08:47:00,276 Hill St, Los Angeles,CA,90001 +169908,Apple Airpods Headphones,1,150.0,2019-03-17 00:29:00,130 Pine St, Dallas,TX,75001 +169909,Wired Headphones,1,11.99,2019-03-11 20:42:00,837 12th St, Los Angeles,CA,90001 +169910,Lightning Charging Cable,2,14.95,2019-03-14 12:29:00,809 West St, Los Angeles,CA,90001 +169911,Apple Airpods Headphones,1,150.0,2019-03-28 14:33:00,789 Jackson St, Boston,MA,02215 +169912,Lightning Charging Cable,1,14.95,2019-03-26 13:02:00,866 Sunset St, Dallas,TX,75001 +169913,USB-C Charging Cable,1,11.95,2019-03-19 14:33:00,28 8th St, New York City,NY,10001 +169914,Macbook Pro Laptop,1,1700.0,2019-03-23 10:34:00,706 Hill St, Dallas,TX,75001 +169915,AA Batteries (4-pack),1,3.84,2019-03-31 08:19:00,935 Hickory St, Los Angeles,CA,90001 +169916,AA Batteries (4-pack),1,3.84,2019-03-14 07:20:00,936 Lincoln St, Seattle,WA,98101 +169917,Google Phone,1,600.0,2019-03-04 21:05:00,571 6th St, New York City,NY,10001 +169918,27in FHD Monitor,1,149.99,2019-03-22 20:30:00,429 Center St, New York City,NY,10001 +169919,ThinkPad Laptop,1,999.99,2019-03-16 10:36:00,626 Lincoln St, Portland,OR,97035 +169920,27in FHD Monitor,1,149.99,2019-03-06 12:00:00,805 North St, San Francisco,CA,94016 +169921,AA Batteries (4-pack),2,3.84,2019-03-20 18:16:00,52 Park St, Dallas,TX,75001 +169922,LG Washing Machine,1,600.0,2019-03-08 12:41:00,309 Maple St, Dallas,TX,75001 +169923,AA Batteries (4-pack),1,3.84,2019-03-17 16:43:00,532 5th St, Atlanta,GA,30301 +169924,AAA Batteries (4-pack),1,2.99,2019-03-09 17:40:00,796 Walnut St, New York City,NY,10001 +169925,Lightning Charging Cable,1,14.95,2019-03-29 18:45:00,899 Park St, Seattle,WA,98101 +169926,AAA Batteries (4-pack),2,2.99,2019-03-05 19:49:00,714 River St, Los Angeles,CA,90001 +169927,AA Batteries (4-pack),1,3.84,2019-03-09 16:07:00,655 Dogwood St, Los Angeles,CA,90001 +169928,USB-C Charging Cable,1,11.95,2019-03-11 20:44:00,300 Dogwood St, Boston,MA,02215 +169929,Apple Airpods Headphones,1,150.0,2019-03-29 21:56:00,665 Jackson St, Atlanta,GA,30301 +169930,AA Batteries (4-pack),1,3.84,2019-03-13 12:55:00,397 4th St, Seattle,WA,98101 +169931,Bose SoundSport Headphones,1,99.99,2019-03-21 21:54:00,363 Highland St, Portland,OR,97035 +169932,Apple Airpods Headphones,1,150.0,2019-03-22 20:26:00,631 South St, San Francisco,CA,94016 +169933,Macbook Pro Laptop,1,1700.0,2019-03-28 18:11:00,848 4th St, Los Angeles,CA,90001 +169934,USB-C Charging Cable,1,11.95,2019-03-05 13:28:00,30 8th St, Boston,MA,02215 +169935,Apple Airpods Headphones,1,150.0,2019-03-24 22:45:00,274 14th St, San Francisco,CA,94016 +169936,Vareebadd Phone,1,400.0,2019-03-07 19:29:00,546 River St, New York City,NY,10001 +169937,ThinkPad Laptop,1,999.99,2019-03-23 12:33:00,24 Madison St, New York City,NY,10001 +169938,Wired Headphones,1,11.99,2019-03-15 17:43:00,222 Adams St, Atlanta,GA,30301 +169939,27in 4K Gaming Monitor,1,389.99,2019-03-28 17:53:00,781 Maple St, Seattle,WA,98101 +169940,Apple Airpods Headphones,1,150.0,2019-03-11 22:28:00,481 Jackson St, Los Angeles,CA,90001 +169941,Apple Airpods Headphones,1,150.0,2019-03-10 09:43:00,934 Highland St, Seattle,WA,98101 +169942,AA Batteries (4-pack),1,3.84,2019-03-30 20:31:00,817 Madison St, Portland,ME,04101 +169943,Apple Airpods Headphones,1,150.0,2019-03-27 22:43:00,512 Park St, Seattle,WA,98101 +169944,Macbook Pro Laptop,1,1700.0,2019-03-05 15:42:00,311 Maple St, San Francisco,CA,94016 +169945,AA Batteries (4-pack),1,3.84,2019-03-10 19:27:00,472 North St, Seattle,WA,98101 +169946,20in Monitor,1,109.99,2019-03-28 21:04:00,499 Pine St, Boston,MA,02215 +169947,Bose SoundSport Headphones,1,99.99,2019-03-28 13:05:00,414 4th St, New York City,NY,10001 +169948,Apple Airpods Headphones,1,150.0,2019-03-12 08:51:00,943 12th St, New York City,NY,10001 +169949,LG Washing Machine,1,600.0,2019-03-30 14:28:00,856 Spruce St, Boston,MA,02215 +169949,AAA Batteries (4-pack),1,2.99,2019-03-30 14:28:00,856 Spruce St, Boston,MA,02215 +169950,Lightning Charging Cable,1,14.95,2019-03-17 16:07:00,651 8th St, Los Angeles,CA,90001 +169951,iPhone,1,700.0,2019-03-10 17:12:00,730 14th St, San Francisco,CA,94016 +169952,AAA Batteries (4-pack),1,2.99,2019-03-19 21:37:00,442 Dogwood St, Seattle,WA,98101 +169953,Bose SoundSport Headphones,1,99.99,2019-03-29 14:56:00,44 11th St, Dallas,TX,75001 +169954,LG Washing Machine,1,600.0,2019-03-03 20:53:00,57 Ridge St, San Francisco,CA,94016 +169955,USB-C Charging Cable,1,11.95,2019-03-07 12:13:00,498 Meadow St, Boston,MA,02215 +169956,Google Phone,1,600.0,2019-03-28 23:16:00,663 10th St, Atlanta,GA,30301 +169956,iPhone,1,700.0,2019-03-28 23:16:00,663 10th St, Atlanta,GA,30301 +169957,AA Batteries (4-pack),1,3.84,2019-03-07 14:17:00,843 Hill St, Los Angeles,CA,90001 +169958,AA Batteries (4-pack),1,3.84,2019-03-01 20:54:00,887 Pine St, Seattle,WA,98101 +169959,iPhone,1,700.0,2019-03-23 09:51:00,420 1st St, Atlanta,GA,30301 +169959,Wired Headphones,2,11.99,2019-03-23 09:51:00,420 1st St, Atlanta,GA,30301 +169960,Wired Headphones,1,11.99,2019-03-06 14:26:00,772 7th St, Portland,OR,97035 +169961,Google Phone,1,600.0,2019-03-05 17:38:00,115 Church St, Los Angeles,CA,90001 +169961,Wired Headphones,1,11.99,2019-03-05 17:38:00,115 Church St, Los Angeles,CA,90001 +169962,ThinkPad Laptop,1,999.99,2019-03-12 16:59:00,724 Main St, Boston,MA,02215 +169963,Wired Headphones,2,11.99,2019-03-09 21:40:00,194 13th St, San Francisco,CA,94016 +169964,Wired Headphones,1,11.99,2019-03-28 21:30:00,583 North St, Seattle,WA,98101 +169965,Bose SoundSport Headphones,1,99.99,2019-03-04 11:48:00,593 Center St, New York City,NY,10001 +169966,Flatscreen TV,1,300.0,2019-03-08 21:47:00,327 Elm St, Boston,MA,02215 +169967,AAA Batteries (4-pack),1,2.99,2019-03-08 09:14:00,908 Lake St, Dallas,TX,75001 +169968,iPhone,1,700.0,2019-03-12 00:20:00,9 Lincoln St, New York City,NY,10001 +169969,AA Batteries (4-pack),2,3.84,2019-03-12 13:56:00,282 2nd St, Dallas,TX,75001 +169970,Apple Airpods Headphones,1,150.0,2019-03-25 12:55:00,945 Park St, San Francisco,CA,94016 +169971,USB-C Charging Cable,1,11.95,2019-03-24 18:17:00,776 1st St, San Francisco,CA,94016 +169972,AA Batteries (4-pack),2,3.84,2019-03-09 15:49:00,806 10th St, San Francisco,CA,94016 +169973,34in Ultrawide Monitor,1,379.99,2019-03-22 14:41:00,654 Meadow St, San Francisco,CA,94016 +169974,USB-C Charging Cable,2,11.95,2019-03-28 15:42:00,176 5th St, Dallas,TX,75001 +169975,27in 4K Gaming Monitor,1,389.99,2019-03-17 10:47:00,219 Main St, Atlanta,GA,30301 +169976,LG Washing Machine,1,600.0,2019-03-05 23:25:00,486 2nd St, Los Angeles,CA,90001 +169977,27in FHD Monitor,1,149.99,2019-03-04 23:19:00,776 8th St, Seattle,WA,98101 +169978,USB-C Charging Cable,1,11.95,2019-03-24 18:51:00,856 Cherry St, New York City,NY,10001 +169979,Apple Airpods Headphones,1,150.0,2019-03-28 11:34:00,218 Adams St, Portland,ME,04101 +169980,iPhone,1,700.0,2019-03-16 13:51:00,135 1st St, San Francisco,CA,94016 +169981,34in Ultrawide Monitor,1,379.99,2019-03-11 21:14:00,693 9th St, Portland,ME,04101 +169982,USB-C Charging Cable,1,11.95,2019-03-04 14:42:00,169 Cedar St, Los Angeles,CA,90001 +169983,Google Phone,1,600.0,2019-03-16 22:48:00,311 Lakeview St, Dallas,TX,75001 +169983,Bose SoundSport Headphones,1,99.99,2019-03-16 22:48:00,311 Lakeview St, Dallas,TX,75001 +169984,Bose SoundSport Headphones,1,99.99,2019-03-06 11:42:00,371 South St, Portland,ME,04101 +169985,Lightning Charging Cable,1,14.95,2019-03-27 14:23:00,171 Chestnut St, San Francisco,CA,94016 +169986,AA Batteries (4-pack),1,3.84,2019-03-02 14:28:00,875 North St, New York City,NY,10001 +169987,Wired Headphones,1,11.99,2019-03-21 16:44:00,868 13th St, New York City,NY,10001 +169988,Wired Headphones,1,11.99,2019-03-21 16:31:00,217 7th St, Los Angeles,CA,90001 +169989,USB-C Charging Cable,1,11.95,2019-03-13 23:39:00,888 Forest St, Boston,MA,02215 +169990,34in Ultrawide Monitor,1,379.99,2019-03-08 17:06:00,391 Maple St, Seattle,WA,98101 +169991,Lightning Charging Cable,1,14.95,2019-03-21 08:09:00,596 Highland St, Dallas,TX,75001 +169992,Lightning Charging Cable,1,14.95,2019-03-07 21:20:00,2 Meadow St, Boston,MA,02215 +169993,AAA Batteries (4-pack),1,2.99,2019-03-10 13:48:00,517 4th St, Atlanta,GA,30301 +169994,Wired Headphones,1,11.99,2019-03-23 10:53:00,901 Johnson St, Los Angeles,CA,90001 +169995,AA Batteries (4-pack),1,3.84,2019-03-08 08:20:00,162 Church St, San Francisco,CA,94016 +169996,USB-C Charging Cable,1,11.95,2019-03-12 20:47:00,19 Elm St, San Francisco,CA,94016 +169997,AAA Batteries (4-pack),1,2.99,2019-03-20 08:48:00,76 Spruce St, Boston,MA,02215 +169998,USB-C Charging Cable,1,11.95,2019-03-07 09:03:00,67 Maple St, Los Angeles,CA,90001 +169999,Lightning Charging Cable,1,14.95,2019-03-28 18:58:00,132 Washington St, Boston,MA,02215 +170000,20in Monitor,1,109.99,2019-03-06 17:12:00,398 Adams St, Portland,ME,04101 +170001,AAA Batteries (4-pack),1,2.99,2019-03-13 13:43:00,847 Ridge St, Atlanta,GA,30301 +170002,Bose SoundSport Headphones,1,99.99,2019-03-17 05:59:00,609 Elm St, San Francisco,CA,94016 +170003,AAA Batteries (4-pack),1,2.99,2019-03-24 20:59:00,214 Wilson St, San Francisco,CA,94016 +170004,34in Ultrawide Monitor,1,379.99,2019-03-12 14:57:00,61 Maple St, Boston,MA,02215 +170005,34in Ultrawide Monitor,1,379.99,2019-03-07 16:11:00,252 South St, Austin,TX,73301 +170006,Bose SoundSport Headphones,1,99.99,2019-03-29 00:28:00,44 7th St, Boston,MA,02215 +170007,Lightning Charging Cable,1,14.95,2019-03-31 21:55:00,342 Cedar St, New York City,NY,10001 +170008,27in FHD Monitor,1,149.99,2019-03-29 23:40:00,906 Main St, Seattle,WA,98101 +170009,Wired Headphones,2,11.99,2019-03-04 23:54:00,296 11th St, Seattle,WA,98101 +170010,Wired Headphones,1,11.99,2019-03-04 09:18:00,205 4th St, San Francisco,CA,94016 +170011,Apple Airpods Headphones,1,150.0,2019-03-05 21:41:00,5 South St, Atlanta,GA,30301 +170012,27in FHD Monitor,1,149.99,2019-03-10 20:32:00,244 Elm St, Los Angeles,CA,90001 +170013,27in FHD Monitor,1,149.99,2019-03-30 13:21:00,755 Cedar St, New York City,NY,10001 +170014,27in 4K Gaming Monitor,1,389.99,2019-03-25 15:16:00,76 14th St, San Francisco,CA,94016 +170015,ThinkPad Laptop,1,999.99,2019-03-02 15:59:00,654 Ridge St, Portland,OR,97035 +170016,Lightning Charging Cable,1,14.95,2019-03-15 08:35:00,522 Adams St, Los Angeles,CA,90001 +170017,Wired Headphones,1,11.99,2019-03-23 11:54:00,96 11th St, San Francisco,CA,94016 +170018,AA Batteries (4-pack),2,3.84,2019-03-29 18:20:00,234 11th St, Atlanta,GA,30301 +170019,AAA Batteries (4-pack),1,2.99,2019-03-18 11:17:00,939 Highland St, New York City,NY,10001 +170020,USB-C Charging Cable,1,11.95,2019-03-18 17:30:00,749 Hickory St, Los Angeles,CA,90001 +170021,Vareebadd Phone,1,400.0,2019-03-13 18:15:00,917 Cherry St, Seattle,WA,98101 +170022,USB-C Charging Cable,3,11.95,2019-03-26 12:14:00,616 Walnut St, Dallas,TX,75001 +170023,AA Batteries (4-pack),2,3.84,2019-03-10 14:19:00,984 Pine St, San Francisco,CA,94016 +170024,USB-C Charging Cable,1,11.95,2019-03-15 13:49:00,438 9th St, San Francisco,CA,94016 +170025,Wired Headphones,1,11.99,2019-03-22 23:42:00,700 Sunset St, Dallas,TX,75001 +170026,USB-C Charging Cable,1,11.95,2019-03-24 23:37:00,551 Willow St, Los Angeles,CA,90001 +170027,LG Washing Machine,1,600.0,2019-03-26 09:47:00,924 Adams St, Los Angeles,CA,90001 +170027,Apple Airpods Headphones,1,150.0,2019-03-26 09:47:00,924 Adams St, Los Angeles,CA,90001 +170028,27in FHD Monitor,1,149.99,2019-03-16 10:33:00,689 Madison St, New York City,NY,10001 +170029,Apple Airpods Headphones,1,150.0,2019-03-31 21:47:00,629 13th St, New York City,NY,10001 +170030,AA Batteries (4-pack),1,3.84,2019-03-12 07:35:00,168 North St, San Francisco,CA,94016 +170031,USB-C Charging Cable,1,11.95,2019-03-16 20:09:00,65 Madison St, Los Angeles,CA,90001 +170032,USB-C Charging Cable,1,11.95,2019-03-12 15:55:00,132 Chestnut St, San Francisco,CA,94016 +170033,USB-C Charging Cable,1,11.95,2019-03-08 18:39:00,949 Dogwood St, Austin,TX,73301 +170034,Lightning Charging Cable,1,14.95,2019-03-04 06:32:00,18 Hill St, San Francisco,CA,94016 +170035,34in Ultrawide Monitor,1,379.99,2019-03-09 15:16:00,43 Meadow St, Los Angeles,CA,90001 +170036,Vareebadd Phone,1,400.0,2019-03-28 09:01:00,342 Maple St, Boston,MA,02215 +170036,USB-C Charging Cable,1,11.95,2019-03-28 09:01:00,342 Maple St, Boston,MA,02215 +170037,Lightning Charging Cable,1,14.95,2019-03-10 16:54:00,448 14th St, Los Angeles,CA,90001 +170038,AAA Batteries (4-pack),1,2.99,2019-03-31 19:41:00,46 Meadow St, San Francisco,CA,94016 +170039,34in Ultrawide Monitor,1,379.99,2019-03-26 12:22:00,727 Washington St, New York City,NY,10001 +170040,Bose SoundSport Headphones,1,99.99,2019-03-12 16:02:00,614 7th St, San Francisco,CA,94016 +170041,USB-C Charging Cable,1,11.95,2019-03-25 17:31:00,274 7th St, New York City,NY,10001 +170042,Macbook Pro Laptop,1,1700.0,2019-03-13 13:02:00,190 5th St, New York City,NY,10001 +170043,Apple Airpods Headphones,1,150.0,2019-03-21 12:37:00,658 Cedar St, Boston,MA,02215 +170044,34in Ultrawide Monitor,1,379.99,2019-03-17 20:19:00,559 Ridge St, Portland,OR,97035 +170045,AA Batteries (4-pack),1,3.84,2019-03-31 00:23:00,405 Johnson St, Boston,MA,02215 +170046,AAA Batteries (4-pack),4,2.99,2019-03-22 17:25:00,182 Sunset St, Boston,MA,02215 +170047,Apple Airpods Headphones,1,150.0,2019-03-21 02:08:00,402 Lakeview St, San Francisco,CA,94016 +170048,AAA Batteries (4-pack),1,2.99,2019-03-26 19:16:00,513 13th St, Seattle,WA,98101 +170049,AAA Batteries (4-pack),1,2.99,2019-03-15 13:07:00,49 2nd St, San Francisco,CA,94016 +170050,AAA Batteries (4-pack),2,2.99,2019-03-24 02:21:00,680 12th St, San Francisco,CA,94016 +170051,Bose SoundSport Headphones,1,99.99,2019-03-01 11:57:00,996 Pine St, Boston,MA,02215 +170052,Apple Airpods Headphones,1,150.0,2019-03-08 13:41:00,812 8th St, Seattle,WA,98101 +170053,AAA Batteries (4-pack),1,2.99,2019-03-27 08:54:00,209 Cedar St, Portland,OR,97035 +170054,AAA Batteries (4-pack),1,2.99,2019-03-07 17:02:00,998 Meadow St, Austin,TX,73301 +170055,AAA Batteries (4-pack),1,2.99,2019-03-22 19:48:00,761 North St, Boston,MA,02215 +170056,Lightning Charging Cable,1,14.95,2019-03-17 23:48:00,453 Lincoln St, Atlanta,GA,30301 +170057,AAA Batteries (4-pack),3,2.99,2019-03-05 07:42:00,899 12th St, Los Angeles,CA,90001 +170058,27in 4K Gaming Monitor,1,389.99,2019-03-05 17:41:00,475 Wilson St, Boston,MA,02215 +170059,Lightning Charging Cable,1,14.95,2019-03-05 08:24:00,416 Lakeview St, Los Angeles,CA,90001 +170060,Lightning Charging Cable,1,14.95,2019-03-12 16:43:00,76 Sunset St, Austin,TX,73301 +170061,AA Batteries (4-pack),1,3.84,2019-03-17 18:18:00,10 1st St, Boston,MA,02215 +170062,AAA Batteries (4-pack),2,2.99,2019-03-28 16:37:00,361 Wilson St, New York City,NY,10001 +170063,AA Batteries (4-pack),1,3.84,2019-03-06 10:56:00,672 West St, Seattle,WA,98101 +170064,AAA Batteries (4-pack),1,2.99,2019-03-13 21:20:00,367 2nd St, Atlanta,GA,30301 +170065,ThinkPad Laptop,1,999.99,2019-03-31 09:33:00,319 Dogwood St, San Francisco,CA,94016 +170066,USB-C Charging Cable,1,11.95,2019-03-29 10:20:00,926 7th St, New York City,NY,10001 +170067,AAA Batteries (4-pack),2,2.99,2019-03-15 12:59:00,780 West St, Los Angeles,CA,90001 +170068,AAA Batteries (4-pack),1,2.99,2019-03-09 19:49:00,257 Hickory St, San Francisco,CA,94016 +170069,iPhone,1,700.0,2019-03-17 11:09:00,659 River St, Atlanta,GA,30301 +170069,Apple Airpods Headphones,1,150.0,2019-03-17 11:09:00,659 River St, Atlanta,GA,30301 +170070,iPhone,1,700.0,2019-03-02 12:11:00,623 South St, Los Angeles,CA,90001 +170071,Wired Headphones,1,11.99,2019-03-17 00:12:00,757 4th St, New York City,NY,10001 +170072,27in 4K Gaming Monitor,1,389.99,2019-03-20 05:13:00,156 Cedar St, Boston,MA,02215 +170073,AA Batteries (4-pack),2,3.84,2019-03-24 18:09:00,818 Walnut St, New York City,NY,10001 +170074,Lightning Charging Cable,1,14.95,2019-03-01 18:05:00,307 5th St, Dallas,TX,75001 +170075,Lightning Charging Cable,1,14.95,2019-03-09 18:40:00,398 Ridge St, New York City,NY,10001 +170076,iPhone,1,700.0,2019-03-25 20:36:00,647 4th St, San Francisco,CA,94016 +170077,AAA Batteries (4-pack),1,2.99,2019-03-04 17:55:00,59 Center St, San Francisco,CA,94016 +170078,Apple Airpods Headphones,1,150.0,2019-03-27 12:51:00,269 Madison St, San Francisco,CA,94016 +170079,Wired Headphones,1,11.99,2019-03-21 19:19:00,351 Forest St, Boston,MA,02215 +170080,iPhone,1,700.0,2019-03-20 16:05:00,386 South St, Los Angeles,CA,90001 +170081,AAA Batteries (4-pack),2,2.99,2019-03-23 06:51:00,956 5th St, Los Angeles,CA,90001 +170082,Bose SoundSport Headphones,1,99.99,2019-03-10 18:43:00,958 14th St, New York City,NY,10001 +170082,Google Phone,1,600.0,2019-03-10 18:43:00,958 14th St, New York City,NY,10001 +170083,Lightning Charging Cable,1,14.95,2019-03-03 19:59:00,811 1st St, New York City,NY,10001 +170084,Wired Headphones,2,11.99,2019-03-16 10:23:00,666 11th St, Austin,TX,73301 +170085,27in 4K Gaming Monitor,1,389.99,2019-03-12 14:21:00,485 14th St, Los Angeles,CA,90001 +170086,27in FHD Monitor,1,149.99,2019-03-02 18:11:00,884 Meadow St, Los Angeles,CA,90001 +170087,iPhone,1,700.0,2019-03-25 20:52:00,22 5th St, Boston,MA,02215 +170088,27in 4K Gaming Monitor,1,389.99,2019-03-23 10:27:00,442 Adams St, Dallas,TX,75001 +170089,USB-C Charging Cable,2,11.95,2019-03-03 10:46:00,538 13th St, Dallas,TX,75001 +170090,27in 4K Gaming Monitor,1,389.99,2019-03-04 21:27:00,787 Chestnut St, Los Angeles,CA,90001 +170091,AA Batteries (4-pack),1,3.84,2019-03-23 09:26:00,580 North St, Portland,OR,97035 +170092,Lightning Charging Cable,1,14.95,2019-03-19 10:37:00,610 Main St, Austin,TX,73301 +170093,AAA Batteries (4-pack),1,2.99,2019-03-04 12:15:00,217 Dogwood St, San Francisco,CA,94016 +170094,USB-C Charging Cable,1,11.95,2019-03-13 22:47:00,823 Walnut St, New York City,NY,10001 +170095,Bose SoundSport Headphones,1,99.99,2019-03-22 02:13:00,395 River St, San Francisco,CA,94016 +170096,Wired Headphones,2,11.99,2019-03-29 11:37:00,542 Washington St, San Francisco,CA,94016 +170097,Google Phone,1,600.0,2019-03-04 18:50:00,872 1st St, Dallas,TX,75001 +170098,Apple Airpods Headphones,1,150.0,2019-03-22 12:46:00,449 11th St, Dallas,TX,75001 +170099,ThinkPad Laptop,1,999.99,2019-03-25 18:06:00,82 1st St, Austin,TX,73301 +170100,AAA Batteries (4-pack),1,2.99,2019-03-07 23:52:00,401 12th St, Seattle,WA,98101 +170101,Wired Headphones,1,11.99,2019-03-02 19:09:00,783 8th St, New York City,NY,10001 +170102,USB-C Charging Cable,2,11.95,2019-03-20 22:26:00,353 West St, San Francisco,CA,94016 +170103,Lightning Charging Cable,1,14.95,2019-03-11 21:17:00,409 Ridge St, Portland,OR,97035 +170104,ThinkPad Laptop,1,999.99,2019-03-16 06:27:00,77 14th St, San Francisco,CA,94016 +170105,Flatscreen TV,1,300.0,2019-03-15 20:43:00,662 Forest St, San Francisco,CA,94016 +170106,Vareebadd Phone,1,400.0,2019-03-11 18:54:00,992 Center St, Los Angeles,CA,90001 +170107,AA Batteries (4-pack),1,3.84,2019-03-05 18:26:00,431 Jackson St, San Francisco,CA,94016 +170108,Lightning Charging Cable,1,14.95,2019-03-06 20:49:00,863 2nd St, Boston,MA,02215 +170109,Apple Airpods Headphones,1,150.0,2019-03-16 13:35:00,462 Meadow St, Seattle,WA,98101 +170110,20in Monitor,1,109.99,2019-03-27 13:18:00,739 Center St, San Francisco,CA,94016 +170111,AA Batteries (4-pack),1,3.84,2019-03-22 00:59:00,160 Cherry St, San Francisco,CA,94016 +170112,USB-C Charging Cable,1,11.95,2019-03-04 10:52:00,185 Main St, New York City,NY,10001 +170113,Apple Airpods Headphones,1,150.0,2019-03-08 14:19:00,952 Elm St, New York City,NY,10001 +170114,AA Batteries (4-pack),1,3.84,2019-03-15 22:05:00,424 5th St, Portland,OR,97035 +170115,Google Phone,1,600.0,2019-03-12 11:35:00,636 Center St, Boston,MA,02215 +170116,USB-C Charging Cable,1,11.95,2019-03-05 17:10:00,555 River St, Portland,OR,97035 +170117,Apple Airpods Headphones,1,150.0,2019-03-28 10:59:00,856 13th St, Portland,OR,97035 +170118,USB-C Charging Cable,1,11.95,2019-03-04 19:43:00,265 Lincoln St, Los Angeles,CA,90001 +170119,Wired Headphones,1,11.99,2019-03-09 23:00:00,199 Lincoln St, Atlanta,GA,30301 +170120,Bose SoundSport Headphones,1,99.99,2019-03-29 21:18:00,113 Lincoln St, Los Angeles,CA,90001 +170121,Lightning Charging Cable,1,14.95,2019-03-13 17:18:00,628 2nd St, New York City,NY,10001 +170122,ThinkPad Laptop,1,999.99,2019-03-19 09:10:00,496 Jefferson St, Dallas,TX,75001 +170123,Bose SoundSport Headphones,1,99.99,2019-03-05 12:27:00,869 Jefferson St, New York City,NY,10001 +170124,Lightning Charging Cable,1,14.95,2019-03-14 12:51:00,986 Cedar St, San Francisco,CA,94016 +170125,iPhone,1,700.0,2019-03-02 12:36:00,814 6th St, Dallas,TX,75001 +170126,27in FHD Monitor,1,149.99,2019-03-10 15:13:00,569 7th St, Los Angeles,CA,90001 +170127,Bose SoundSport Headphones,1,99.99,2019-03-10 22:33:00,609 12th St, Los Angeles,CA,90001 +170128,Wired Headphones,1,11.99,2019-03-29 19:33:00,352 Cherry St, San Francisco,CA,94016 +170129,Bose SoundSport Headphones,1,99.99,2019-03-12 00:36:00,58 Lakeview St, Portland,OR,97035 +170130,ThinkPad Laptop,1,999.99,2019-03-15 02:15:00,121 Cherry St, San Francisco,CA,94016 +170131,34in Ultrawide Monitor,1,379.99,2019-03-29 15:21:00,860 4th St, Los Angeles,CA,90001 +170132,Apple Airpods Headphones,1,150.0,2019-03-26 20:24:00,329 9th St, Atlanta,GA,30301 +170133,iPhone,1,700.0,2019-03-09 09:50:00,815 Chestnut St, Atlanta,GA,30301 +170134,AAA Batteries (4-pack),2,2.99,2019-03-22 17:42:00,310 Main St, Dallas,TX,75001 +170135,Flatscreen TV,1,300.0,2019-03-26 12:23:00,607 Hickory St, Los Angeles,CA,90001 +170136,Wired Headphones,1,11.99,2019-03-02 13:34:00,67 2nd St, San Francisco,CA,94016 +170137,Bose SoundSport Headphones,1,99.99,2019-03-22 13:05:00,275 Jefferson St, San Francisco,CA,94016 +170138,27in 4K Gaming Monitor,1,389.99,2019-03-07 11:41:00,728 Forest St, Atlanta,GA,30301 +170138,34in Ultrawide Monitor,1,379.99,2019-03-07 11:41:00,728 Forest St, Atlanta,GA,30301 +170139,Wired Headphones,1,11.99,2019-03-07 11:16:00,328 1st St, San Francisco,CA,94016 +170140,AAA Batteries (4-pack),1,2.99,2019-03-07 23:50:00,904 2nd St, Dallas,TX,75001 +170141,Wired Headphones,1,11.99,2019-03-13 20:58:00,190 Wilson St, San Francisco,CA,94016 +170142,AA Batteries (4-pack),1,3.84,2019-03-28 14:56:00,173 Pine St, Dallas,TX,75001 +170143,Lightning Charging Cable,1,14.95,2019-03-15 11:07:00,228 Lake St, Los Angeles,CA,90001 +170144,Lightning Charging Cable,1,14.95,2019-03-26 13:08:00,230 Center St, San Francisco,CA,94016 +170145,AAA Batteries (4-pack),1,2.99,2019-03-03 08:42:00,626 River St, San Francisco,CA,94016 +170146,Bose SoundSport Headphones,1,99.99,2019-03-19 23:04:00,861 River St, San Francisco,CA,94016 +170147,AA Batteries (4-pack),1,3.84,2019-03-13 15:27:00,317 Lincoln St, Los Angeles,CA,90001 +170148,USB-C Charging Cable,1,11.95,2019-03-09 11:29:00,706 West St, San Francisco,CA,94016 +170149,iPhone,1,700.0,2019-03-12 18:16:00,399 Jackson St, Boston,MA,02215 +170150,AA Batteries (4-pack),1,3.84,2019-03-15 16:12:00,112 Church St, New York City,NY,10001 +170151,USB-C Charging Cable,1,11.95,2019-03-15 20:13:00,455 Wilson St, Portland,OR,97035 +170152,Lightning Charging Cable,1,14.95,2019-03-13 12:27:00,538 Washington St, San Francisco,CA,94016 +170153,34in Ultrawide Monitor,1,379.99,2019-03-23 12:47:00,42 Washington St, New York City,NY,10001 +170154,Apple Airpods Headphones,1,150.0,2019-03-21 13:16:00,936 11th St, Dallas,TX,75001 +170155,Bose SoundSport Headphones,1,99.99,2019-03-22 16:47:00,60 River St, Boston,MA,02215 +170156,AA Batteries (4-pack),1,3.84,2019-03-09 11:40:00,244 13th St, Seattle,WA,98101 +170156,USB-C Charging Cable,1,11.95,2019-03-09 11:40:00,244 13th St, Seattle,WA,98101 +170157,USB-C Charging Cable,1,11.95,2019-03-01 17:50:00,824 Forest St, Atlanta,GA,30301 +170158,Lightning Charging Cable,1,14.95,2019-03-18 20:30:00,126 Elm St, Austin,TX,73301 +170159,USB-C Charging Cable,1,11.95,2019-03-17 19:24:00,813 Johnson St, San Francisco,CA,94016 +170160,USB-C Charging Cable,1,11.95,2019-03-05 17:31:00,817 9th St, Los Angeles,CA,90001 +170161,AA Batteries (4-pack),1,3.84,2019-03-20 12:45:00,912 Lake St, Austin,TX,73301 +170162,AAA Batteries (4-pack),1,2.99,2019-03-19 18:12:00,560 Lakeview St, Seattle,WA,98101 +170163,20in Monitor,1,109.99,2019-03-09 14:23:00,31 Ridge St, Los Angeles,CA,90001 +170164,27in FHD Monitor,1,149.99,2019-03-28 10:14:00,218 Meadow St, Dallas,TX,75001 +170165,Google Phone,1,600.0,2019-03-23 17:47:00,370 Ridge St, Boston,MA,02215 +170166,AA Batteries (4-pack),2,3.84,2019-03-12 10:41:00,967 River St, Seattle,WA,98101 +170167,27in 4K Gaming Monitor,1,389.99,2019-03-01 17:55:00,104 9th St, New York City,NY,10001 +170168,USB-C Charging Cable,1,11.95,2019-03-09 16:58:00,923 13th St, Los Angeles,CA,90001 +170169,34in Ultrawide Monitor,1,379.99,2019-03-17 22:04:00,482 Chestnut St, Atlanta,GA,30301 +170170,Apple Airpods Headphones,1,150.0,2019-03-22 23:32:00,113 Lakeview St, Austin,TX,73301 +170171,AA Batteries (4-pack),1,3.84,2019-03-07 22:40:00,227 14th St, Boston,MA,02215 +170172,Bose SoundSport Headphones,1,99.99,2019-03-01 14:12:00,776 6th St, San Francisco,CA,94016 +170173,34in Ultrawide Monitor,1,379.99,2019-03-20 23:21:00,285 Hickory St, Seattle,WA,98101 +170174,Lightning Charging Cable,1,14.95,2019-03-09 13:27:00,654 11th St, New York City,NY,10001 +170175,Bose SoundSport Headphones,1,99.99,2019-03-27 21:38:00,703 14th St, San Francisco,CA,94016 +170176,Flatscreen TV,1,300.0,2019-03-02 21:33:00,948 Forest St, New York City,NY,10001 +170177,AAA Batteries (4-pack),1,2.99,2019-03-26 23:16:00,501 Hickory St, Dallas,TX,75001 +170178,USB-C Charging Cable,1,11.95,2019-03-13 18:37:00,251 10th St, Boston,MA,02215 +170179,AAA Batteries (4-pack),1,2.99,2019-03-17 14:23:00,418 Park St, Austin,TX,73301 +170180,AAA Batteries (4-pack),1,2.99,2019-03-23 18:43:00,234 6th St, New York City,NY,10001 +170181,Apple Airpods Headphones,1,150.0,2019-03-18 13:45:00,354 4th St, New York City,NY,10001 +170182,Apple Airpods Headphones,1,150.0,2019-03-10 21:27:00,332 9th St, Austin,TX,73301 +170183,Bose SoundSport Headphones,1,99.99,2019-03-06 17:11:00,605 Washington St, San Francisco,CA,94016 +170184,Apple Airpods Headphones,1,150.0,2019-03-18 18:25:00,498 Meadow St, Los Angeles,CA,90001 +170185,USB-C Charging Cable,1,11.95,2019-03-08 13:00:00,774 Hill St, San Francisco,CA,94016 +170186,Apple Airpods Headphones,1,150.0,2019-03-02 20:49:00,532 7th St, Atlanta,GA,30301 +170187,ThinkPad Laptop,1,999.99,2019-03-03 13:06:00,315 Hickory St, Boston,MA,02215 +170188,20in Monitor,1,109.99,2019-03-14 10:40:00,466 Ridge St, Portland,OR,97035 +170189,AA Batteries (4-pack),1,3.84,2019-03-03 23:28:00,494 North St, Portland,OR,97035 +170190,ThinkPad Laptop,1,999.99,2019-03-24 13:36:00,24 13th St, Atlanta,GA,30301 +170191,AA Batteries (4-pack),1,3.84,2019-03-11 21:42:00,916 Elm St, Los Angeles,CA,90001 +170192,AA Batteries (4-pack),1,3.84,2019-03-27 13:23:00,448 Cedar St, Los Angeles,CA,90001 +170193,AAA Batteries (4-pack),1,2.99,2019-03-17 11:59:00,937 Walnut St, New York City,NY,10001 +170194,Apple Airpods Headphones,1,150.0,2019-03-30 16:22:00,178 4th St, Austin,TX,73301 +170195,27in 4K Gaming Monitor,1,389.99,2019-03-06 14:21:00,194 Sunset St, New York City,NY,10001 +170196,LG Washing Machine,1,600.0,2019-03-23 17:20:00,67 Church St, Seattle,WA,98101 +170196,AAA Batteries (4-pack),1,2.99,2019-03-23 17:20:00,67 Church St, Seattle,WA,98101 +170197,Apple Airpods Headphones,1,150.0,2019-03-07 14:00:00,87 Hickory St, Portland,OR,97035 +170198,ThinkPad Laptop,1,999.99,2019-03-01 08:28:00,29 Ridge St, San Francisco,CA,94016 +170199,Lightning Charging Cable,1,14.95,2019-03-16 13:46:00,535 Maple St, Seattle,WA,98101 +170200,Bose SoundSport Headphones,1,99.99,2019-03-03 08:40:00,217 4th St, Atlanta,GA,30301 +170201,AAA Batteries (4-pack),1,2.99,2019-03-10 02:43:00,659 1st St, New York City,NY,10001 +170202,34in Ultrawide Monitor,1,379.99,2019-03-20 18:32:00,58 Pine St, Seattle,WA,98101 +170203,USB-C Charging Cable,1,11.95,2019-03-17 17:05:00,913 West St, Los Angeles,CA,90001 +170204,Wired Headphones,1,11.99,2019-03-22 23:14:00,854 Madison St, Seattle,WA,98101 +170205,Wired Headphones,1,11.99,2019-03-27 15:10:00,487 9th St, New York City,NY,10001 +170206,Wired Headphones,1,11.99,2019-03-15 17:12:00,910 2nd St, Seattle,WA,98101 +170207,iPhone,1,700.0,2019-03-23 13:19:00,701 Sunset St, Dallas,TX,75001 +170207,Lightning Charging Cable,1,14.95,2019-03-23 13:19:00,701 Sunset St, Dallas,TX,75001 +170208,Lightning Charging Cable,1,14.95,2019-03-09 06:18:00,842 South St, San Francisco,CA,94016 +170209,Bose SoundSport Headphones,1,99.99,2019-03-31 20:02:00,628 Maple St, Atlanta,GA,30301 +170210,Vareebadd Phone,1,400.0,2019-03-23 23:48:00,761 Pine St, Boston,MA,02215 +170211,Lightning Charging Cable,1,14.95,2019-03-27 16:42:00,576 Ridge St, San Francisco,CA,94016 +170212,Wired Headphones,1,11.99,2019-03-17 06:13:00,506 Forest St, San Francisco,CA,94016 +170213,USB-C Charging Cable,1,11.95,2019-03-21 19:48:00,548 9th St, New York City,NY,10001 +170214,AAA Batteries (4-pack),1,2.99,2019-03-28 13:54:00,352 1st St, Los Angeles,CA,90001 +170215,Google Phone,1,600.0,2019-03-04 10:57:00,3 Cherry St, San Francisco,CA,94016 +170215,USB-C Charging Cable,2,11.95,2019-03-04 10:57:00,3 Cherry St, San Francisco,CA,94016 +170216,27in 4K Gaming Monitor,1,389.99,2019-03-16 20:21:00,68 Forest St, San Francisco,CA,94016 +170216,Lightning Charging Cable,1,14.95,2019-03-16 20:21:00,68 Forest St, San Francisco,CA,94016 +170217,34in Ultrawide Monitor,1,379.99,2019-03-13 14:12:00,795 14th St, New York City,NY,10001 +170218,USB-C Charging Cable,1,11.95,2019-03-25 17:30:00,527 Ridge St, Boston,MA,02215 +170219,Wired Headphones,1,11.99,2019-03-06 19:26:00,814 Washington St, New York City,NY,10001 +170220,Apple Airpods Headphones,1,150.0,2019-03-22 09:40:00,283 Center St, San Francisco,CA,94016 +170221,USB-C Charging Cable,1,11.95,2019-03-18 07:57:00,840 West St, Los Angeles,CA,90001 +170222,Lightning Charging Cable,1,14.95,2019-03-13 16:37:00,172 Adams St, Los Angeles,CA,90001 +170223,AA Batteries (4-pack),1,3.84,2019-03-11 12:19:00,936 Johnson St, New York City,NY,10001 +170224,Apple Airpods Headphones,1,150.0,2019-03-07 19:12:00,303 Hill St, New York City,NY,10001 +170225,AA Batteries (4-pack),2,3.84,2019-03-14 10:11:00,923 Jefferson St, New York City,NY,10001 +170226,USB-C Charging Cable,1,11.95,2019-03-08 23:41:00,933 Jackson St, San Francisco,CA,94016 +170227,AA Batteries (4-pack),1,3.84,2019-03-19 19:32:00,193 River St, Atlanta,GA,30301 +170228,Apple Airpods Headphones,1,150.0,2019-03-13 22:12:00,921 Ridge St, San Francisco,CA,94016 +170229,AAA Batteries (4-pack),2,2.99,2019-03-23 21:47:00,345 12th St, Atlanta,GA,30301 +170230,Flatscreen TV,1,300.0,2019-03-27 13:19:00,405 Lake St, New York City,NY,10001 +170231,AAA Batteries (4-pack),1,2.99,2019-03-23 13:17:00,547 12th St, Los Angeles,CA,90001 +170232,Vareebadd Phone,1,400.0,2019-03-30 11:47:00,899 14th St, New York City,NY,10001 +170233,USB-C Charging Cable,1,11.95,2019-03-12 23:45:00,882 Walnut St, San Francisco,CA,94016 +170234,Bose SoundSport Headphones,1,99.99,2019-03-02 18:01:00,921 7th St, Los Angeles,CA,90001 +170235,27in FHD Monitor,1,149.99,2019-03-09 19:53:00,111 Johnson St, Boston,MA,02215 +170236,USB-C Charging Cable,1,11.95,2019-03-06 12:44:00,288 Sunset St, New York City,NY,10001 +170237,27in 4K Gaming Monitor,1,389.99,2019-03-31 10:09:00,677 5th St, Los Angeles,CA,90001 +170238,Apple Airpods Headphones,1,150.0,2019-03-15 21:23:00,538 North St, New York City,NY,10001 +170239,AA Batteries (4-pack),1,3.84,2019-03-30 23:37:00,553 Walnut St, Portland,OR,97035 +170240,Wired Headphones,1,11.99,2019-03-19 10:33:00,522 Main St, San Francisco,CA,94016 +170241,iPhone,1,700.0,2019-03-12 17:32:00,581 Adams St, San Francisco,CA,94016 +170241,Lightning Charging Cable,1,14.95,2019-03-12 17:32:00,581 Adams St, San Francisco,CA,94016 +170241,Wired Headphones,1,11.99,2019-03-12 17:32:00,581 Adams St, San Francisco,CA,94016 +170242,Apple Airpods Headphones,1,150.0,2019-03-25 18:48:00,383 Hickory St, San Francisco,CA,94016 +170243,Lightning Charging Cable,1,14.95,2019-03-15 01:24:00,622 Wilson St, Atlanta,GA,30301 +170244,Wired Headphones,1,11.99,2019-03-05 05:03:00,21 Dogwood St, Atlanta,GA,30301 +170245,USB-C Charging Cable,1,11.95,2019-03-15 08:53:00,519 River St, Seattle,WA,98101 +170246,USB-C Charging Cable,1,11.95,2019-03-03 20:04:00,615 Main St, San Francisco,CA,94016 +170247,Google Phone,1,600.0,2019-03-14 19:30:00,588 Church St, San Francisco,CA,94016 +170247,USB-C Charging Cable,1,11.95,2019-03-14 19:30:00,588 Church St, San Francisco,CA,94016 +170248,Wired Headphones,2,11.99,2019-03-28 10:59:00,213 9th St, New York City,NY,10001 +170249,Bose SoundSport Headphones,1,99.99,2019-03-16 10:28:00,899 Washington St, Atlanta,GA,30301 +170250,AA Batteries (4-pack),1,3.84,2019-03-21 20:17:00,253 Lake St, Portland,OR,97035 +170251,Bose SoundSport Headphones,1,99.99,2019-03-04 15:21:00,502 1st St, Los Angeles,CA,90001 +170252,USB-C Charging Cable,1,11.95,2019-03-10 08:39:00,365 Park St, New York City,NY,10001 +170253,USB-C Charging Cable,1,11.95,2019-03-08 18:59:00,862 West St, Boston,MA,02215 +170254,27in FHD Monitor,1,149.99,2019-03-08 11:00:00,567 6th St, Los Angeles,CA,90001 +170255,iPhone,1,700.0,2019-03-23 23:47:00,117 1st St, Boston,MA,02215 +170256,USB-C Charging Cable,1,11.95,2019-03-30 10:08:00,818 Main St, New York City,NY,10001 +170257,AA Batteries (4-pack),1,3.84,2019-03-30 22:20:00,511 Cherry St, San Francisco,CA,94016 +170258,Google Phone,1,600.0,2019-03-07 12:46:00,248 4th St, Boston,MA,02215 +170259,Vareebadd Phone,1,400.0,2019-03-06 08:57:00,893 Spruce St, Dallas,TX,75001 +170260,Macbook Pro Laptop,1,1700.0,2019-03-02 07:16:00,181 Johnson St, San Francisco,CA,94016 +170261,Lightning Charging Cable,1,14.95,2019-03-12 12:40:00,313 South St, Dallas,TX,75001 +170262,Bose SoundSport Headphones,1,99.99,2019-03-07 16:05:00,141 South St, Los Angeles,CA,90001 +170263,AAA Batteries (4-pack),1,2.99,2019-03-11 14:47:00,941 Johnson St, Portland,OR,97035 +170264,AA Batteries (4-pack),3,3.84,2019-03-03 15:31:00,437 Center St, San Francisco,CA,94016 +170265,USB-C Charging Cable,1,11.95,2019-03-31 09:45:00,638 9th St, San Francisco,CA,94016 +170266,AA Batteries (4-pack),1,3.84,2019-03-16 19:29:00,281 7th St, Portland,OR,97035 +170267,USB-C Charging Cable,1,11.95,2019-03-08 09:51:00,633 Lake St, Seattle,WA,98101 +170268,27in 4K Gaming Monitor,1,389.99,2019-03-02 13:10:00,877 Adams St, San Francisco,CA,94016 +170269,Apple Airpods Headphones,1,150.0,2019-03-06 20:44:00,967 5th St, Boston,MA,02215 +170270,Google Phone,1,600.0,2019-03-19 07:21:00,645 7th St, New York City,NY,10001 +170271,iPhone,1,700.0,2019-03-16 09:55:00,221 Hickory St, Boston,MA,02215 +170272,ThinkPad Laptop,1,999.99,2019-03-03 11:19:00,790 Church St, Los Angeles,CA,90001 +170273,Wired Headphones,2,11.99,2019-03-07 16:33:00,175 Maple St, San Francisco,CA,94016 +170274,AAA Batteries (4-pack),3,2.99,2019-03-01 16:48:00,337 South St, Austin,TX,73301 +170275,Wired Headphones,1,11.99,2019-03-13 13:58:00,206 14th St, Austin,TX,73301 +170276,AAA Batteries (4-pack),1,2.99,2019-03-17 14:37:00,520 Ridge St, San Francisco,CA,94016 +170277,Apple Airpods Headphones,1,150.0,2019-03-28 13:38:00,316 4th St, Los Angeles,CA,90001 +170278,iPhone,1,700.0,2019-03-08 22:36:00,589 Main St, New York City,NY,10001 +170278,Lightning Charging Cable,1,14.95,2019-03-08 22:36:00,589 Main St, New York City,NY,10001 +170279,AA Batteries (4-pack),1,3.84,2019-03-26 22:57:00,591 11th St, New York City,NY,10001 +170280,Lightning Charging Cable,1,14.95,2019-03-14 20:32:00,311 Lakeview St, Dallas,TX,75001 +170281,AAA Batteries (4-pack),1,2.99,2019-03-21 19:16:00,164 Johnson St, San Francisco,CA,94016 +170282,Bose SoundSport Headphones,1,99.99,2019-03-30 22:49:00,817 Church St, San Francisco,CA,94016 +170283,27in 4K Gaming Monitor,1,389.99,2019-03-09 18:53:00,292 Highland St, Boston,MA,02215 +170284,27in FHD Monitor,1,149.99,2019-03-08 21:55:00,246 Johnson St, Dallas,TX,75001 +170285,Bose SoundSport Headphones,1,99.99,2019-03-13 16:32:00,575 North St, Los Angeles,CA,90001 +170286,AAA Batteries (4-pack),1,2.99,2019-03-11 15:17:00,859 4th St, San Francisco,CA,94016 +170287,iPhone,2,700.0,2019-03-30 14:33:00,408 Madison St, Portland,OR,97035 +170288,Lightning Charging Cable,1,14.95,2019-03-25 22:50:00,379 Sunset St, San Francisco,CA,94016 +170289,AA Batteries (4-pack),1,3.84,2019-03-06 19:11:00,83 Ridge St, New York City,NY,10001 +170290,Bose SoundSport Headphones,1,99.99,2019-03-13 16:05:00,910 Forest St, San Francisco,CA,94016 +170291,Apple Airpods Headphones,1,150.0,2019-03-30 19:43:00,405 Jackson St, Boston,MA,02215 +170292,Bose SoundSport Headphones,2,99.99,2019-03-30 13:28:00,230 11th St, New York City,NY,10001 +170293,Macbook Pro Laptop,1,1700.0,2019-03-15 00:08:00,887 Wilson St, Portland,OR,97035 +170294,Apple Airpods Headphones,1,150.0,2019-03-06 18:20:00,24 Hill St, Los Angeles,CA,90001 +170295,Wired Headphones,1,11.99,2019-03-09 08:35:00,218 Main St, San Francisco,CA,94016 +170296,ThinkPad Laptop,1,999.99,2019-03-02 08:41:00,590 Lake St, San Francisco,CA,94016 +170297,AA Batteries (4-pack),1,3.84,2019-03-16 17:30:00,481 Jefferson St, New York City,NY,10001 +170298,27in 4K Gaming Monitor,1,389.99,2019-03-27 09:20:00,906 9th St, New York City,NY,10001 +170299,AA Batteries (4-pack),1,3.84,2019-03-23 08:59:00,448 Wilson St, Boston,MA,02215 +170300,Apple Airpods Headphones,1,150.0,2019-03-18 15:54:00,138 River St, Dallas,TX,75001 +170301,AAA Batteries (4-pack),1,2.99,2019-03-20 14:16:00,996 Forest St, New York City,NY,10001 +170302,AA Batteries (4-pack),1,3.84,2019-03-01 16:31:00,984 13th St, Los Angeles,CA,90001 +170303,Wired Headphones,1,11.99,2019-03-30 19:53:00,177 Elm St, Austin,TX,73301 +170304,Bose SoundSport Headphones,1,99.99,2019-03-05 17:57:00,934 Chestnut St, New York City,NY,10001 +170305,USB-C Charging Cable,2,11.95,2019-03-02 10:07:00,142 Sunset St, Austin,TX,73301 +170306,Apple Airpods Headphones,1,150.0,2019-03-09 12:33:00,726 Center St, Los Angeles,CA,90001 +170307,iPhone,1,700.0,2019-03-05 20:22:00,179 Hickory St, Los Angeles,CA,90001 +170308,Wired Headphones,2,11.99,2019-03-30 08:53:00,946 14th St, San Francisco,CA,94016 +170309,27in FHD Monitor,1,149.99,2019-03-11 15:34:00,879 Sunset St, San Francisco,CA,94016 +170310,Lightning Charging Cable,1,14.95,2019-03-26 18:03:00,308 Meadow St, Los Angeles,CA,90001 +170311,AA Batteries (4-pack),1,3.84,2019-03-24 08:03:00,141 Jackson St, San Francisco,CA,94016 +170312,Apple Airpods Headphones,1,150.0,2019-03-24 14:51:00,348 Sunset St, Dallas,TX,75001 +170313,AAA Batteries (4-pack),1,2.99,2019-03-31 20:42:00,361 Walnut St, San Francisco,CA,94016 +170314,34in Ultrawide Monitor,1,379.99,2019-03-28 20:59:00,768 Jackson St, San Francisco,CA,94016 +170315,Lightning Charging Cable,1,14.95,2019-03-28 14:29:00,554 Church St, San Francisco,CA,94016 +170316,AA Batteries (4-pack),1,3.84,2019-03-25 17:15:00,713 Spruce St, San Francisco,CA,94016 +170317,Lightning Charging Cable,1,14.95,2019-03-20 09:47:00,933 Sunset St, New York City,NY,10001 +170318,Apple Airpods Headphones,1,150.0,2019-03-11 15:47:00,481 9th St, Los Angeles,CA,90001 +170319,USB-C Charging Cable,1,11.95,2019-03-30 13:13:00,626 13th St, Los Angeles,CA,90001 +170319,Google Phone,1,600.0,2019-03-30 13:13:00,626 13th St, Los Angeles,CA,90001 +170320,Lightning Charging Cable,1,14.95,2019-03-02 17:39:00,364 Adams St, San Francisco,CA,94016 +170321,Macbook Pro Laptop,1,1700.0,2019-03-23 10:17:00,892 Highland St, Dallas,TX,75001 +170322,Bose SoundSport Headphones,1,99.99,2019-03-05 19:57:00,701 Jackson St, Los Angeles,CA,90001 +170323,Bose SoundSport Headphones,1,99.99,2019-03-04 11:41:00,212 Dogwood St, Portland,OR,97035 +170324,iPhone,1,700.0,2019-03-01 19:53:00,275 Willow St, Atlanta,GA,30301 +170325,Lightning Charging Cable,1,14.95,2019-03-09 20:27:00,500 Lincoln St, Seattle,WA,98101 +170326,USB-C Charging Cable,1,11.95,2019-03-24 23:38:00,969 Meadow St, Los Angeles,CA,90001 +170327,34in Ultrawide Monitor,1,379.99,2019-03-08 17:08:00,745 10th St, Boston,MA,02215 +170328,27in FHD Monitor,1,149.99,2019-03-01 16:26:00,292 River St, Los Angeles,CA,90001 +170329,AAA Batteries (4-pack),1,2.99,2019-03-02 09:08:00,69 Park St, Boston,MA,02215 +170330,27in FHD Monitor,1,149.99,2019-03-17 06:06:00,498 Spruce St, Seattle,WA,98101 +170331,Lightning Charging Cable,1,14.95,2019-03-27 21:09:00,296 13th St, San Francisco,CA,94016 +170332,Bose SoundSport Headphones,1,99.99,2019-03-23 14:13:00,659 1st St, San Francisco,CA,94016 +170333,27in FHD Monitor,1,149.99,2019-03-19 10:39:00,811 Forest St, Atlanta,GA,30301 +170334,Bose SoundSport Headphones,1,99.99,2019-03-20 12:58:00,604 Hickory St, Boston,MA,02215 +170335,AA Batteries (4-pack),1,3.84,2019-03-12 12:16:00,937 Meadow St, Dallas,TX,75001 +170336,Macbook Pro Laptop,1,1700.0,2019-03-08 09:06:00,111 Johnson St, Boston,MA,02215 +170337,USB-C Charging Cable,1,11.95,2019-03-18 16:35:00,352 Lakeview St, Atlanta,GA,30301 +170338,Lightning Charging Cable,1,14.95,2019-03-02 04:46:00,583 7th St, San Francisco,CA,94016 +170339,Apple Airpods Headphones,1,150.0,2019-03-21 23:56:00,249 Walnut St, Portland,ME,04101 +170340,27in 4K Gaming Monitor,1,389.99,2019-03-09 06:32:00,191 11th St, Boston,MA,02215 +170341,Wired Headphones,2,11.99,2019-03-25 21:35:00,635 10th St, Atlanta,GA,30301 +170342,Apple Airpods Headphones,1,150.0,2019-03-30 11:43:00,125 Jackson St, New York City,NY,10001 +170343,LG Dryer,1,600.0,2019-03-16 09:43:00,99 6th St, New York City,NY,10001 +170344,ThinkPad Laptop,1,999.99,2019-03-16 14:30:00,33 Center St, New York City,NY,10001 +170345,Bose SoundSport Headphones,1,99.99,2019-03-25 09:54:00,189 Maple St, Los Angeles,CA,90001 +170346,Bose SoundSport Headphones,1,99.99,2019-03-16 16:26:00,807 Park St, Boston,MA,02215 +170347,Lightning Charging Cable,1,14.95,2019-03-21 00:16:00,248 Pine St, Los Angeles,CA,90001 +170348,USB-C Charging Cable,1,11.95,2019-03-29 11:44:00,686 13th St, Los Angeles,CA,90001 +170349,LG Washing Machine,1,600.0,2019-03-30 12:29:00,436 Johnson St, San Francisco,CA,94016 +170350,USB-C Charging Cable,1,11.95,2019-03-02 15:53:00,661 12th St, San Francisco,CA,94016 +170351,AA Batteries (4-pack),1,3.84,2019-03-19 09:40:00,457 Maple St, Atlanta,GA,30301 +170352,34in Ultrawide Monitor,1,379.99,2019-03-31 22:07:00,48 Pine St, San Francisco,CA,94016 +170353,Flatscreen TV,1,300.0,2019-03-30 17:39:00,617 Walnut St, Los Angeles,CA,90001 +170354,Macbook Pro Laptop,1,1700.0,2019-03-30 17:31:00,692 Sunset St, Austin,TX,73301 +170355,iPhone,1,700.0,2019-03-06 19:44:00,829 9th St, Boston,MA,02215 +170356,34in Ultrawide Monitor,1,379.99,2019-03-27 19:37:00,483 North St, San Francisco,CA,94016 +170357,Bose SoundSport Headphones,1,99.99,2019-03-29 17:47:00,109 Spruce St, Atlanta,GA,30301 +170358,AA Batteries (4-pack),1,3.84,2019-03-26 14:49:00,246 Spruce St, New York City,NY,10001 +170359,iPhone,1,700.0,2019-03-26 19:34:00,925 7th St, Austin,TX,73301 +170360,USB-C Charging Cable,1,11.95,2019-03-11 08:40:00,214 Hill St, New York City,NY,10001 +170361,Flatscreen TV,1,300.0,2019-03-15 12:29:00,474 Highland St, Dallas,TX,75001 +170361,Lightning Charging Cable,1,14.95,2019-03-15 12:29:00,474 Highland St, Dallas,TX,75001 +170362,Wired Headphones,1,11.99,2019-03-19 12:57:00,326 6th St, Boston,MA,02215 +170363,USB-C Charging Cable,1,11.95,2019-03-03 00:19:00,799 Maple St, Austin,TX,73301 +170364,27in FHD Monitor,1,149.99,2019-03-09 19:34:00,801 Cedar St, Portland,OR,97035 +170365,AA Batteries (4-pack),1,3.84,2019-03-08 11:38:00,514 Elm St, San Francisco,CA,94016 +170366,Lightning Charging Cable,1,14.95,2019-03-25 11:08:00,541 Lake St, New York City,NY,10001 +170367,Bose SoundSport Headphones,1,99.99,2019-03-29 11:31:00,961 8th St, Seattle,WA,98101 +170368,USB-C Charging Cable,1,11.95,2019-03-15 21:49:00,812 River St, Los Angeles,CA,90001 +170369,Lightning Charging Cable,1,14.95,2019-03-10 20:40:00,716 11th St, Atlanta,GA,30301 +170370,AAA Batteries (4-pack),1,2.99,2019-03-30 12:33:00,916 West St, San Francisco,CA,94016 +170371,Bose SoundSport Headphones,1,99.99,2019-03-14 15:47:00,560 South St, Dallas,TX,75001 +170372,Macbook Pro Laptop,1,1700.0,2019-03-14 13:36:00,192 Highland St, San Francisco,CA,94016 +170373,AAA Batteries (4-pack),1,2.99,2019-03-23 19:27:00,735 Johnson St, Dallas,TX,75001 +170374,Google Phone,1,600.0,2019-03-04 05:59:00,337 7th St, San Francisco,CA,94016 +170375,Wired Headphones,1,11.99,2019-03-07 11:30:00,982 South St, Dallas,TX,75001 +170376,Apple Airpods Headphones,1,150.0,2019-03-20 07:53:00,916 Lakeview St, San Francisco,CA,94016 +170377,AA Batteries (4-pack),1,3.84,2019-03-10 20:36:00,787 6th St, New York City,NY,10001 +170378,Lightning Charging Cable,1,14.95,2019-03-09 22:26:00,904 Madison St, Atlanta,GA,30301 +170379,Bose SoundSport Headphones,1,99.99,2019-03-19 12:41:00,232 Pine St, Los Angeles,CA,90001 +170380,iPhone,1,700.0,2019-03-03 10:14:00,701 Lake St, Los Angeles,CA,90001 +170381,Wired Headphones,1,11.99,2019-03-22 10:36:00,992 South St, Los Angeles,CA,90001 +170382,20in Monitor,1,109.99,2019-03-20 21:32:00,209 River St, New York City,NY,10001 +170383,Wired Headphones,1,11.99,2019-03-19 19:03:00,6 6th St, Austin,TX,73301 +170384,Wired Headphones,1,11.99,2019-03-02 22:18:00,901 2nd St, Los Angeles,CA,90001 +170385,Wired Headphones,1,11.99,2019-03-24 10:18:00,567 Maple St, Los Angeles,CA,90001 +170386,Macbook Pro Laptop,1,1700.0,2019-03-03 12:17:00,3 Park St, New York City,NY,10001 +170387,AAA Batteries (4-pack),1,2.99,2019-03-19 09:39:00,98 Cherry St, Dallas,TX,75001 +170388,AA Batteries (4-pack),1,3.84,2019-03-06 12:08:00,795 Highland St, Los Angeles,CA,90001 +170389,Wired Headphones,1,11.99,2019-03-05 08:27:00,93 2nd St, Dallas,TX,75001 +170390,Bose SoundSport Headphones,1,99.99,2019-03-05 11:18:00,645 West St, Los Angeles,CA,90001 +170391,AA Batteries (4-pack),1,3.84,2019-03-22 08:07:00,132 Cedar St, Los Angeles,CA,90001 +170392,iPhone,1,700.0,2019-03-26 11:57:00,361 1st St, Seattle,WA,98101 +170393,AAA Batteries (4-pack),1,2.99,2019-03-07 13:11:00,645 North St, New York City,NY,10001 +170394,27in FHD Monitor,1,149.99,2019-03-16 11:22:00,206 Church St, Los Angeles,CA,90001 +170395,Bose SoundSport Headphones,1,99.99,2019-03-05 21:35:00,957 Lakeview St, San Francisco,CA,94016 +170396,AA Batteries (4-pack),1,3.84,2019-03-23 15:54:00,124 Pine St, Los Angeles,CA,90001 +170397,AAA Batteries (4-pack),1,2.99,2019-03-27 19:38:00,450 Lincoln St, New York City,NY,10001 +170398,USB-C Charging Cable,3,11.95,2019-03-06 08:24:00,918 Hickory St, New York City,NY,10001 +170399,Apple Airpods Headphones,1,150.0,2019-03-16 16:59:00,700 13th St, San Francisco,CA,94016 +170400,AAA Batteries (4-pack),2,2.99,2019-03-21 14:21:00,168 Johnson St, San Francisco,CA,94016 +170401,USB-C Charging Cable,1,11.95,2019-03-18 16:14:00,608 Forest St, Austin,TX,73301 +170402,AA Batteries (4-pack),1,3.84,2019-03-22 20:55:00,529 Chestnut St, Dallas,TX,75001 +170403,27in 4K Gaming Monitor,1,389.99,2019-03-12 19:25:00,555 West St, Boston,MA,02215 +170404,27in 4K Gaming Monitor,1,389.99,2019-03-28 01:53:00,644 10th St, New York City,NY,10001 +170405,Flatscreen TV,1,300.0,2019-03-09 14:15:00,992 Johnson St, San Francisco,CA,94016 +170406,Apple Airpods Headphones,1,150.0,2019-03-13 08:10:00,909 West St, San Francisco,CA,94016 +170407,USB-C Charging Cable,1,11.95,2019-03-14 12:39:00,102 10th St, Austin,TX,73301 +170408,Wired Headphones,1,11.99,2019-03-17 08:14:00,41 Center St, San Francisco,CA,94016 +170409,Wired Headphones,2,11.99,2019-03-20 13:26:00,819 Chestnut St, New York City,NY,10001 +170410,AAA Batteries (4-pack),1,2.99,2019-03-27 14:32:00,865 Forest St, San Francisco,CA,94016 +170411,Wired Headphones,1,11.99,2019-03-01 04:23:00,427 Wilson St, Los Angeles,CA,90001 +170412,ThinkPad Laptop,1,999.99,2019-03-04 13:15:00,883 Lincoln St, Atlanta,GA,30301 +170413,34in Ultrawide Monitor,1,379.99,2019-03-21 00:23:00,733 Madison St, Los Angeles,CA,90001 +170414,Lightning Charging Cable,1,14.95,2019-03-05 12:50:00,41 Highland St, Dallas,TX,75001 +170415,USB-C Charging Cable,1,11.95,2019-03-08 13:34:00,187 Willow St, Atlanta,GA,30301 +170416,Lightning Charging Cable,1,14.95,2019-03-27 14:42:00,290 Lincoln St, Portland,OR,97035 +170417,Lightning Charging Cable,1,14.95,2019-03-09 12:38:00,595 7th St, New York City,NY,10001 +170418,Lightning Charging Cable,1,14.95,2019-03-28 21:50:00,575 Hill St, Los Angeles,CA,90001 +170419,ThinkPad Laptop,1,999.99,2019-03-17 22:05:00,372 Center St, San Francisco,CA,94016 +170420,AA Batteries (4-pack),2,3.84,2019-03-08 23:29:00,973 Pine St, Austin,TX,73301 +170421,USB-C Charging Cable,1,11.95,2019-03-01 15:25:00,951 9th St, Seattle,WA,98101 +170422,AA Batteries (4-pack),1,3.84,2019-03-10 15:47:00,265 West St, Dallas,TX,75001 +170423,Bose SoundSport Headphones,1,99.99,2019-03-01 09:10:00,61 Washington St, Austin,TX,73301 +170424,USB-C Charging Cable,1,11.95,2019-03-17 21:05:00,727 River St, Atlanta,GA,30301 +170425,AA Batteries (4-pack),1,3.84,2019-03-04 14:29:00,224 6th St, Boston,MA,02215 +170426,Lightning Charging Cable,1,14.95,2019-03-07 22:01:00,655 Lincoln St, New York City,NY,10001 +170427,27in 4K Gaming Monitor,1,389.99,2019-03-07 18:58:00,991 5th St, San Francisco,CA,94016 +170428,Bose SoundSport Headphones,1,99.99,2019-03-31 23:26:00,860 10th St, New York City,NY,10001 +170429,Lightning Charging Cable,2,14.95,2019-03-30 16:29:00,602 4th St, Seattle,WA,98101 +170430,Flatscreen TV,1,300.0,2019-03-06 17:49:00,192 Wilson St, Dallas,TX,75001 +170431,AA Batteries (4-pack),1,3.84,2019-03-12 06:41:00,844 14th St, San Francisco,CA,94016 +170432,Bose SoundSport Headphones,1,99.99,2019-03-06 09:46:00,517 Main St, San Francisco,CA,94016 +170432,20in Monitor,1,109.99,2019-03-06 09:46:00,517 Main St, San Francisco,CA,94016 +170433,USB-C Charging Cable,1,11.95,2019-03-11 13:36:00,63 1st St, New York City,NY,10001 +170434,AAA Batteries (4-pack),1,2.99,2019-03-22 18:48:00,557 West St, Los Angeles,CA,90001 +170435,Bose SoundSport Headphones,1,99.99,2019-03-10 13:37:00,891 4th St, Atlanta,GA,30301 +170436,AA Batteries (4-pack),1,3.84,2019-03-25 23:59:00,882 Sunset St, Austin,TX,73301 +170437,34in Ultrawide Monitor,1,379.99,2019-03-06 21:13:00,9 Lakeview St, Dallas,TX,75001 +170438,Lightning Charging Cable,2,14.95,2019-03-07 15:43:00,567 10th St, New York City,NY,10001 +170439,Wired Headphones,1,11.99,2019-03-12 10:30:00,557 Willow St, Dallas,TX,75001 +170440,AA Batteries (4-pack),2,3.84,2019-03-29 17:05:00,114 6th St, Los Angeles,CA,90001 +170441,Apple Airpods Headphones,1,150.0,2019-03-09 13:22:00,336 9th St, Portland,OR,97035 +170442,Lightning Charging Cable,1,14.95,2019-03-18 20:26:00,824 5th St, Seattle,WA,98101 +170443,Lightning Charging Cable,1,14.95,2019-03-25 11:30:00,638 Center St, Dallas,TX,75001 +170444,Apple Airpods Headphones,1,150.0,2019-03-06 00:21:00,495 Center St, Los Angeles,CA,90001 +170445,Apple Airpods Headphones,1,150.0,2019-03-23 15:50:00,406 Walnut St, San Francisco,CA,94016 +170446,USB-C Charging Cable,1,11.95,2019-03-13 22:03:00,137 11th St, Portland,OR,97035 +170447,AAA Batteries (4-pack),2,2.99,2019-03-21 20:48:00,944 Maple St, Los Angeles,CA,90001 +170448,USB-C Charging Cable,1,11.95,2019-03-20 17:45:00,49 Ridge St, San Francisco,CA,94016 +170449,Lightning Charging Cable,1,14.95,2019-03-12 21:24:00,237 2nd St, Portland,ME,04101 +170450,Wired Headphones,1,11.99,2019-03-31 23:24:00,767 Forest St, San Francisco,CA,94016 +170451,Apple Airpods Headphones,1,150.0,2019-03-06 10:16:00,836 Maple St, Los Angeles,CA,90001 +170452,Apple Airpods Headphones,1,150.0,2019-03-25 13:59:00,172 Lakeview St, New York City,NY,10001 +170453,Lightning Charging Cable,1,14.95,2019-03-28 19:41:00,624 Main St, Austin,TX,73301 +170454,AA Batteries (4-pack),1,3.84,2019-03-16 14:29:00,125 Forest St, Atlanta,GA,30301 +170455,LG Dryer,1,600.0,2019-03-14 06:12:00,556 Center St, Boston,MA,02215 +170456,34in Ultrawide Monitor,1,379.99,2019-03-03 22:27:00,540 Wilson St, San Francisco,CA,94016 +170457,AA Batteries (4-pack),1,3.84,2019-03-28 09:33:00,196 Ridge St, Los Angeles,CA,90001 +170458,AAA Batteries (4-pack),1,2.99,2019-03-30 13:29:00,388 6th St, San Francisco,CA,94016 +170459,27in FHD Monitor,1,149.99,2019-03-08 12:43:00,535 6th St, Atlanta,GA,30301 +170460,AAA Batteries (4-pack),1,2.99,2019-03-19 12:36:00,21 Jefferson St, Los Angeles,CA,90001 +170461,AA Batteries (4-pack),1,3.84,2019-03-22 12:46:00,811 5th St, Atlanta,GA,30301 +170462,iPhone,1,700.0,2019-03-06 16:10:00,614 Meadow St, Seattle,WA,98101 +170463,Wired Headphones,1,11.99,2019-03-24 15:08:00,609 Adams St, Portland,OR,97035 +170464,iPhone,1,700.0,2019-03-19 15:52:00,92 Park St, Seattle,WA,98101 +170465,AAA Batteries (4-pack),4,2.99,2019-03-13 17:43:00,903 7th St, Dallas,TX,75001 +170466,27in 4K Gaming Monitor,1,389.99,2019-03-03 16:37:00,494 11th St, San Francisco,CA,94016 +170467,Bose SoundSport Headphones,1,99.99,2019-03-10 17:04:00,512 Lake St, Portland,OR,97035 +170468,34in Ultrawide Monitor,1,379.99,2019-03-11 17:23:00,561 Madison St, San Francisco,CA,94016 +170469,20in Monitor,1,109.99,2019-03-06 13:33:00,555 Madison St, New York City,NY,10001 +170470,Lightning Charging Cable,1,14.95,2019-03-25 17:46:00,239 Dogwood St, Boston,MA,02215 +170471,Wired Headphones,1,11.99,2019-03-23 20:52:00,451 Meadow St, Los Angeles,CA,90001 +170472,USB-C Charging Cable,1,11.95,2019-03-19 01:49:00,336 Park St, Austin,TX,73301 +170473,Wired Headphones,1,11.99,2019-03-23 20:52:00,765 Willow St, San Francisco,CA,94016 +170474,Apple Airpods Headphones,1,150.0,2019-03-29 20:21:00,846 10th St, Los Angeles,CA,90001 +170475,Lightning Charging Cable,1,14.95,2019-03-22 11:02:00,700 Maple St, Portland,OR,97035 +170476,Wired Headphones,2,11.99,2019-03-02 15:03:00,174 Cedar St, Dallas,TX,75001 +170477,Lightning Charging Cable,1,14.95,2019-03-06 22:35:00,140 Sunset St, Boston,MA,02215 +170478,AAA Batteries (4-pack),3,2.99,2019-03-10 08:35:00,771 Sunset St, Seattle,WA,98101 +170479,Wired Headphones,1,11.99,2019-03-11 21:39:00,772 Washington St, Los Angeles,CA,90001 +170480,Apple Airpods Headphones,1,150.0,2019-03-01 11:45:00,413 Adams St, Seattle,WA,98101 +170481,AAA Batteries (4-pack),2,2.99,2019-03-21 14:12:00,164 Highland St, San Francisco,CA,94016 +170482,Wired Headphones,1,11.99,2019-03-07 10:44:00,963 Forest St, Los Angeles,CA,90001 +170483,Wired Headphones,1,11.99,2019-03-10 09:49:00,658 Jefferson St, San Francisco,CA,94016 +170484,Apple Airpods Headphones,1,150.0,2019-03-09 13:38:00,801 8th St, Los Angeles,CA,90001 +170485,20in Monitor,1,109.99,2019-03-21 02:49:00,88 Park St, Boston,MA,02215 +170486,Flatscreen TV,1,300.0,2019-03-30 21:56:00,504 1st St, Austin,TX,73301 +170487,27in FHD Monitor,1,149.99,2019-03-13 15:14:00,89 8th St, Atlanta,GA,30301 +170488,Apple Airpods Headphones,1,150.0,2019-03-17 17:56:00,252 Washington St, San Francisco,CA,94016 +170489,USB-C Charging Cable,1,11.95,2019-03-17 13:09:00,302 12th St, New York City,NY,10001 +170490,AA Batteries (4-pack),1,3.84,2019-03-13 03:51:00,234 Cedar St, Portland,OR,97035 +170491,Flatscreen TV,1,300.0,2019-03-24 16:23:00,617 River St, San Francisco,CA,94016 +170492,AA Batteries (4-pack),1,3.84,2019-03-21 06:59:00,622 Lake St, Portland,ME,04101 +170493,Bose SoundSport Headphones,1,99.99,2019-03-13 11:19:00,217 6th St, San Francisco,CA,94016 +170494,Apple Airpods Headphones,1,150.0,2019-03-10 11:11:00,414 1st St, Boston,MA,02215 +170495,AAA Batteries (4-pack),4,2.99,2019-03-20 18:29:00,707 Adams St, Portland,OR,97035 +170496,Wired Headphones,1,11.99,2019-03-11 13:09:00,983 13th St, San Francisco,CA,94016 +170497,Wired Headphones,1,11.99,2019-03-29 05:48:00,253 Wilson St, Portland,OR,97035 +170498,AAA Batteries (4-pack),1,2.99,2019-03-06 06:25:00,425 Hickory St, Los Angeles,CA,90001 +170499,Bose SoundSport Headphones,1,99.99,2019-03-10 21:20:00,241 Johnson St, Seattle,WA,98101 +170500,Wired Headphones,1,11.99,2019-03-31 21:35:00,117 9th St, Boston,MA,02215 +170501,AAA Batteries (4-pack),1,2.99,2019-03-17 21:56:00,3 Park St, Boston,MA,02215 +170502,AAA Batteries (4-pack),1,2.99,2019-03-02 18:54:00,82 Jefferson St, Boston,MA,02215 +170503,USB-C Charging Cable,1,11.95,2019-03-13 18:05:00,681 West St, San Francisco,CA,94016 +170504,27in FHD Monitor,1,149.99,2019-03-28 22:01:00,535 Highland St, Dallas,TX,75001 +170505,iPhone,1,700.0,2019-03-16 16:36:00,374 Jackson St, Atlanta,GA,30301 +170505,Lightning Charging Cable,1,14.95,2019-03-16 16:36:00,374 Jackson St, Atlanta,GA,30301 +170506,Lightning Charging Cable,1,14.95,2019-03-16 23:02:00,145 5th St, Los Angeles,CA,90001 +170507,Bose SoundSport Headphones,1,99.99,2019-03-24 11:06:00,308 Johnson St, New York City,NY,10001 +170508,Lightning Charging Cable,1,14.95,2019-03-24 10:28:00,109 Wilson St, San Francisco,CA,94016 +170508,Bose SoundSport Headphones,1,99.99,2019-03-24 10:28:00,109 Wilson St, San Francisco,CA,94016 +170509,Google Phone,1,600.0,2019-03-23 16:46:00,838 Spruce St, San Francisco,CA,94016 +170510,USB-C Charging Cable,1,11.95,2019-03-28 14:06:00,240 11th St, San Francisco,CA,94016 +170511,Flatscreen TV,1,300.0,2019-03-18 15:56:00,562 Wilson St, Seattle,WA,98101 +170512,34in Ultrawide Monitor,1,379.99,2019-03-09 13:13:00,592 Jefferson St, Boston,MA,02215 +170513,Lightning Charging Cable,1,14.95,2019-03-17 22:29:00,234 Lake St, Atlanta,GA,30301 +170514,Bose SoundSport Headphones,1,99.99,2019-03-25 19:04:00,376 Ridge St, San Francisco,CA,94016 +170515,AA Batteries (4-pack),1,3.84,2019-03-18 19:19:00,576 Lincoln St, Seattle,WA,98101 +170516,27in 4K Gaming Monitor,1,389.99,2019-03-24 12:59:00,61 Willow St, Atlanta,GA,30301 +170517,Lightning Charging Cable,1,14.95,2019-03-09 12:40:00,625 11th St, San Francisco,CA,94016 +170518,USB-C Charging Cable,1,11.95,2019-03-04 19:13:00,27 Wilson St, New York City,NY,10001 +170519,34in Ultrawide Monitor,1,379.99,2019-03-03 11:45:00,301 9th St, Boston,MA,02215 +170520,USB-C Charging Cable,1,11.95,2019-03-28 16:30:00,675 7th St, Austin,TX,73301 +170521,USB-C Charging Cable,1,11.95,2019-03-12 10:17:00,953 Hill St, San Francisco,CA,94016 +170522,Wired Headphones,1,11.99,2019-03-16 21:27:00,882 Walnut St, Seattle,WA,98101 +170523,iPhone,1,700.0,2019-03-07 14:51:00,523 4th St, San Francisco,CA,94016 +170524,AA Batteries (4-pack),1,3.84,2019-03-11 18:28:00,345 Dogwood St, Seattle,WA,98101 +170525,Apple Airpods Headphones,1,150.0,2019-03-15 13:31:00,416 Jackson St, San Francisco,CA,94016 +170526,Lightning Charging Cable,1,14.95,2019-03-10 20:25:00,584 11th St, Atlanta,GA,30301 +170527,AAA Batteries (4-pack),1,2.99,2019-03-18 13:26:00,970 Jackson St, San Francisco,CA,94016 +170528,iPhone,1,700.0,2019-03-29 16:54:00,148 Maple St, Austin,TX,73301 +170529,34in Ultrawide Monitor,1,379.99,2019-03-25 14:46:00,892 Adams St, Los Angeles,CA,90001 +170530,Lightning Charging Cable,1,14.95,2019-03-13 12:06:00,555 Willow St, New York City,NY,10001 +170531,ThinkPad Laptop,1,999.99,2019-03-18 13:36:00,410 Meadow St, New York City,NY,10001 +170532,Bose SoundSport Headphones,1,99.99,2019-03-25 18:09:00,321 Center St, Los Angeles,CA,90001 +170533,Bose SoundSport Headphones,1,99.99,2019-03-16 14:23:00,58 Adams St, Seattle,WA,98101 +170534,AA Batteries (4-pack),2,3.84,2019-03-04 22:20:00,120 River St, Boston,MA,02215 +170534,Flatscreen TV,1,300.0,2019-03-04 22:20:00,120 River St, Boston,MA,02215 +170535,Lightning Charging Cable,1,14.95,2019-03-17 13:48:00,870 Jefferson St, Los Angeles,CA,90001 +170536,USB-C Charging Cable,1,11.95,2019-03-25 22:00:00,233 Madison St, San Francisco,CA,94016 +170537,Apple Airpods Headphones,1,150.0,2019-03-11 19:57:00,224 Johnson St, San Francisco,CA,94016 +170538,Apple Airpods Headphones,1,150.0,2019-03-13 19:09:00,259 5th St, New York City,NY,10001 +170539,USB-C Charging Cable,1,11.95,2019-03-07 07:35:00,371 Ridge St, Boston,MA,02215 +170540,AAA Batteries (4-pack),1,2.99,2019-03-19 18:04:00,24 Adams St, Dallas,TX,75001 +170541,27in FHD Monitor,1,149.99,2019-03-15 15:54:00,450 Jefferson St, San Francisco,CA,94016 +170542,Bose SoundSport Headphones,1,99.99,2019-03-23 20:19:00,646 North St, Boston,MA,02215 +170543,AA Batteries (4-pack),1,3.84,2019-03-06 18:32:00,587 West St, San Francisco,CA,94016 +170544,34in Ultrawide Monitor,1,379.99,2019-03-05 16:25:00,732 10th St, Los Angeles,CA,90001 +170545,Lightning Charging Cable,1,14.95,2019-03-26 13:23:00,740 14th St, San Francisco,CA,94016 +170546,AAA Batteries (4-pack),2,2.99,2019-03-25 14:52:00,978 Madison St, Austin,TX,73301 +170547,Wired Headphones,1,11.99,2019-03-07 12:52:00,169 Washington St, Los Angeles,CA,90001 +170548,AAA Batteries (4-pack),1,2.99,2019-03-03 15:02:00,807 Chestnut St, Austin,TX,73301 +170549,AA Batteries (4-pack),1,3.84,2019-03-15 21:31:00,522 2nd St, San Francisco,CA,94016 +170550,Apple Airpods Headphones,1,150.0,2019-03-31 01:19:00,19 14th St, Dallas,TX,75001 +170551,Google Phone,1,600.0,2019-03-27 18:53:00,229 Sunset St, Atlanta,GA,30301 +170552,USB-C Charging Cable,1,11.95,2019-03-12 08:52:00,891 11th St, San Francisco,CA,94016 +170553,AA Batteries (4-pack),1,3.84,2019-03-06 19:15:00,127 South St, New York City,NY,10001 +170554,AA Batteries (4-pack),1,3.84,2019-03-04 12:19:00,955 1st St, New York City,NY,10001 +170555,Apple Airpods Headphones,1,150.0,2019-03-15 09:39:00,210 14th St, San Francisco,CA,94016 +170556,Bose SoundSport Headphones,1,99.99,2019-03-20 18:34:00,938 4th St, Boston,MA,02215 +170557,AA Batteries (4-pack),2,3.84,2019-03-03 10:46:00,520 Main St, Portland,OR,97035 +170558,AAA Batteries (4-pack),1,2.99,2019-03-22 16:03:00,99 Forest St, Dallas,TX,75001 +170559,Flatscreen TV,1,300.0,2019-03-10 00:29:00,863 Park St, Atlanta,GA,30301 +170560,AA Batteries (4-pack),1,3.84,2019-03-27 10:53:00,2 Madison St, Atlanta,GA,30301 +170561,Apple Airpods Headphones,1,150.0,2019-03-30 19:02:00,229 Wilson St, New York City,NY,10001 +170562,AA Batteries (4-pack),1,3.84,2019-03-20 10:34:00,912 12th St, San Francisco,CA,94016 +170563,Google Phone,1,600.0,2019-03-28 20:06:00,694 Willow St, New York City,NY,10001 +170564,Flatscreen TV,1,300.0,2019-03-02 14:48:00,785 Pine St, Austin,TX,73301 +170565,27in FHD Monitor,1,149.99,2019-03-09 18:38:00,363 Cedar St, Los Angeles,CA,90001 +170566,Macbook Pro Laptop,1,1700.0,2019-03-25 20:09:00,247 2nd St, Austin,TX,73301 +170567,Macbook Pro Laptop,1,1700.0,2019-03-09 15:13:00,226 9th St, San Francisco,CA,94016 +170568,USB-C Charging Cable,1,11.95,2019-03-31 17:14:00,210 Ridge St, Boston,MA,02215 +170569,USB-C Charging Cable,1,11.95,2019-03-23 10:52:00,999 Maple St, Los Angeles,CA,90001 +170570,AA Batteries (4-pack),2,3.84,2019-03-01 10:24:00,706 6th St, San Francisco,CA,94016 +170571,Apple Airpods Headphones,1,150.0,2019-03-01 13:20:00,767 7th St, San Francisco,CA,94016 +170572,27in FHD Monitor,1,149.99,2019-03-05 21:23:00,123 7th St, Los Angeles,CA,90001 +170573,USB-C Charging Cable,1,11.95,2019-03-18 19:10:00,493 Jackson St, Los Angeles,CA,90001 +170574,34in Ultrawide Monitor,1,379.99,2019-03-23 09:05:00,690 Adams St, Seattle,WA,98101 +170575,AAA Batteries (4-pack),1,2.99,2019-03-09 10:28:00,518 Washington St, San Francisco,CA,94016 +170576,AAA Batteries (4-pack),1,2.99,2019-03-15 14:21:00,515 Spruce St, Los Angeles,CA,90001 +170577,Wired Headphones,1,11.99,2019-03-10 11:03:00,298 Highland St, San Francisco,CA,94016 +170578,Apple Airpods Headphones,1,150.0,2019-03-11 13:25:00,869 Cedar St, San Francisco,CA,94016 +170579,20in Monitor,1,109.99,2019-03-23 07:10:00,443 River St, New York City,NY,10001 +170580,AAA Batteries (4-pack),1,2.99,2019-03-11 12:08:00,830 14th St, New York City,NY,10001 +170581,34in Ultrawide Monitor,1,379.99,2019-03-25 22:07:00,182 Walnut St, Atlanta,GA,30301 +170582,Bose SoundSport Headphones,1,99.99,2019-03-08 18:20:00,366 Cherry St, San Francisco,CA,94016 +170583,AA Batteries (4-pack),1,3.84,2019-03-01 12:19:00,760 Chestnut St, New York City,NY,10001 +170584,Google Phone,1,600.0,2019-03-08 12:03:00,652 Chestnut St, Austin,TX,73301 +170585,Wired Headphones,2,11.99,2019-03-31 12:02:00,458 12th St, Atlanta,GA,30301 +170586,ThinkPad Laptop,1,999.99,2019-03-11 10:35:00,20 Hickory St, Austin,TX,73301 +170587,34in Ultrawide Monitor,1,379.99,2019-03-18 12:39:00,494 Maple St, San Francisco,CA,94016 +170588,Apple Airpods Headphones,1,150.0,2019-03-11 19:51:00,833 Hickory St, San Francisco,CA,94016 +170589,iPhone,1,700.0,2019-03-25 13:16:00,170 Johnson St, San Francisco,CA,94016 +170589,Lightning Charging Cable,1,14.95,2019-03-25 13:16:00,170 Johnson St, San Francisco,CA,94016 +170590,iPhone,1,700.0,2019-03-14 07:16:00,764 12th St, Los Angeles,CA,90001 +170591,Lightning Charging Cable,1,14.95,2019-03-15 08:40:00,925 Elm St, Dallas,TX,75001 +170592,USB-C Charging Cable,1,11.95,2019-03-22 22:44:00,512 1st St, Los Angeles,CA,90001 +170593,Wired Headphones,1,11.99,2019-03-28 08:24:00,534 Cherry St, Seattle,WA,98101 +170594,Vareebadd Phone,1,400.0,2019-03-23 07:10:00,502 Jefferson St, Dallas,TX,75001 +170595,Vareebadd Phone,1,400.0,2019-03-31 18:06:00,458 Highland St, New York City,NY,10001 +170596,27in FHD Monitor,1,149.99,2019-03-06 21:11:00,356 Jefferson St, Portland,OR,97035 +170597,AAA Batteries (4-pack),2,2.99,2019-03-08 14:46:00,244 7th St, San Francisco,CA,94016 +170598,Lightning Charging Cable,1,14.95,2019-03-23 11:52:00,161 Forest St, New York City,NY,10001 +170599,USB-C Charging Cable,1,11.95,2019-03-10 21:32:00,513 Ridge St, San Francisco,CA,94016 +170600,AAA Batteries (4-pack),1,2.99,2019-03-09 07:51:00,385 South St, San Francisco,CA,94016 +170601,27in FHD Monitor,1,149.99,2019-03-18 11:29:00,788 8th St, San Francisco,CA,94016 +170602,AAA Batteries (4-pack),2,2.99,2019-03-09 01:54:00,107 4th St, Boston,MA,02215 +170603,AAA Batteries (4-pack),1,2.99,2019-03-11 21:20:00,705 12th St, San Francisco,CA,94016 +170604,Macbook Pro Laptop,1,1700.0,2019-03-05 19:59:00,316 Sunset St, Los Angeles,CA,90001 +170605,AAA Batteries (4-pack),2,2.99,2019-03-05 09:46:00,572 14th St, Dallas,TX,75001 +170606,Google Phone,1,600.0,2019-03-27 23:37:00,218 Hickory St, Seattle,WA,98101 +170607,Vareebadd Phone,1,400.0,2019-03-24 10:09:00,236 Sunset St, New York City,NY,10001 +170607,USB-C Charging Cable,1,11.95,2019-03-24 10:09:00,236 Sunset St, New York City,NY,10001 +170608,Lightning Charging Cable,1,14.95,2019-03-27 06:07:00,658 River St, Seattle,WA,98101 +170609,AAA Batteries (4-pack),1,2.99,2019-03-03 22:37:00,36 14th St, San Francisco,CA,94016 +170610,Wired Headphones,1,11.99,2019-03-05 19:36:00,409 Johnson St, New York City,NY,10001 +170611,Bose SoundSport Headphones,1,99.99,2019-03-30 21:33:00,910 5th St, San Francisco,CA,94016 +170612,27in 4K Gaming Monitor,1,389.99,2019-03-13 23:08:00,197 Washington St, San Francisco,CA,94016 +170613,AA Batteries (4-pack),1,3.84,2019-03-19 18:33:00,858 14th St, Dallas,TX,75001 +170614,Lightning Charging Cable,1,14.95,2019-03-18 18:45:00,142 Madison St, New York City,NY,10001 +170615,Lightning Charging Cable,1,14.95,2019-03-05 12:51:00,949 Ridge St, Atlanta,GA,30301 +170616,Bose SoundSport Headphones,1,99.99,2019-03-06 14:04:00,362 14th St, New York City,NY,10001 +170617,USB-C Charging Cable,1,11.95,2019-03-30 07:28:00,145 13th St, Seattle,WA,98101 +170618,iPhone,1,700.0,2019-03-18 13:34:00,917 7th St, Boston,MA,02215 +170619,AA Batteries (4-pack),1,3.84,2019-03-14 10:59:00,769 Washington St, Boston,MA,02215 +170620,USB-C Charging Cable,1,11.95,2019-03-26 12:31:00,446 Wilson St, San Francisco,CA,94016 +170621,Flatscreen TV,1,300.0,2019-03-20 12:20:00,669 Meadow St, San Francisco,CA,94016 +170622,Apple Airpods Headphones,1,150.0,2019-03-23 13:11:00,579 Walnut St, Atlanta,GA,30301 +170623,Lightning Charging Cable,1,14.95,2019-03-18 14:13:00,90 Lake St, New York City,NY,10001 +170623,Apple Airpods Headphones,1,150.0,2019-03-18 14:13:00,90 Lake St, New York City,NY,10001 +170624,AAA Batteries (4-pack),3,2.99,2019-03-29 13:38:00,664 Spruce St, Seattle,WA,98101 +170625,Lightning Charging Cable,1,14.95,2019-03-15 15:25:00,326 Highland St, Los Angeles,CA,90001 +170626,AAA Batteries (4-pack),1,2.99,2019-03-29 12:42:00,764 13th St, Seattle,WA,98101 +170627,27in 4K Gaming Monitor,1,389.99,2019-03-07 23:01:00,426 Center St, San Francisco,CA,94016 +170628,Wired Headphones,1,11.99,2019-03-20 15:41:00,242 7th St, Boston,MA,02215 +170629,USB-C Charging Cable,1,11.95,2019-03-27 11:59:00,643 Pine St, New York City,NY,10001 +170630,Lightning Charging Cable,1,14.95,2019-03-31 15:18:00,398 13th St, Los Angeles,CA,90001 +170631,AAA Batteries (4-pack),1,2.99,2019-03-31 23:35:00,59 River St, Los Angeles,CA,90001 +170632,Wired Headphones,1,11.99,2019-03-18 00:42:00,551 Madison St, New York City,NY,10001 +170633,AAA Batteries (4-pack),2,2.99,2019-03-04 18:46:00,80 11th St, Seattle,WA,98101 +170634,Wired Headphones,1,11.99,2019-03-09 12:40:00,708 Washington St, Dallas,TX,75001 +170635,USB-C Charging Cable,1,11.95,2019-03-12 20:41:00,212 Lakeview St, Los Angeles,CA,90001 +170636,Apple Airpods Headphones,1,150.0,2019-03-26 15:19:00,162 Jackson St, Atlanta,GA,30301 +170637,AAA Batteries (4-pack),1,2.99,2019-03-24 13:11:00,396 Lakeview St, Dallas,TX,75001 +170638,Wired Headphones,1,11.99,2019-03-14 13:49:00,618 Wilson St, Atlanta,GA,30301 +170639,Bose SoundSport Headphones,1,99.99,2019-03-19 12:29:00,310 Jefferson St, Los Angeles,CA,90001 +170640,20in Monitor,1,109.99,2019-03-23 16:05:00,181 Pine St, San Francisco,CA,94016 +170641,34in Ultrawide Monitor,1,379.99,2019-03-28 01:30:00,879 14th St, Seattle,WA,98101 +170642,34in Ultrawide Monitor,1,379.99,2019-03-20 19:48:00,686 West St, New York City,NY,10001 +170643,AAA Batteries (4-pack),1,2.99,2019-03-14 09:55:00,615 Cherry St, Los Angeles,CA,90001 +170644,AAA Batteries (4-pack),2,2.99,2019-03-06 15:42:00,19 Main St, Dallas,TX,75001 +170645,27in 4K Gaming Monitor,1,389.99,2019-03-29 17:57:00,672 Hill St, San Francisco,CA,94016 +170646,20in Monitor,1,109.99,2019-03-29 21:23:00,197 Adams St, San Francisco,CA,94016 +170647,AAA Batteries (4-pack),1,2.99,2019-03-07 06:29:00,778 Wilson St, New York City,NY,10001 +170647,Lightning Charging Cable,1,14.95,2019-03-07 06:29:00,778 Wilson St, New York City,NY,10001 +170648,20in Monitor,1,109.99,2019-03-21 22:37:00,808 Chestnut St, Boston,MA,02215 +170649,AAA Batteries (4-pack),1,2.99,2019-03-11 20:37:00,805 Spruce St, San Francisco,CA,94016 +170650,USB-C Charging Cable,1,11.95,2019-03-12 11:52:00,470 West St, San Francisco,CA,94016 +170651,Wired Headphones,1,11.99,2019-03-14 15:12:00,597 Church St, Boston,MA,02215 +170652,Wired Headphones,1,11.99,2019-03-14 10:55:00,221 Hill St, San Francisco,CA,94016 +170653,Bose SoundSport Headphones,1,99.99,2019-03-24 14:38:00,149 10th St, Atlanta,GA,30301 +170654,Lightning Charging Cable,1,14.95,2019-03-31 10:23:00,133 Cedar St, Portland,ME,04101 +170655,27in FHD Monitor,1,149.99,2019-03-06 10:53:00,724 Meadow St, San Francisco,CA,94016 +170656,Apple Airpods Headphones,1,150.0,2019-03-10 00:20:00,734 Meadow St, Boston,MA,02215 +170657,Lightning Charging Cable,1,14.95,2019-03-20 18:47:00,910 Madison St, Austin,TX,73301 +170658,AA Batteries (4-pack),3,3.84,2019-03-03 22:38:00,980 Lakeview St, Boston,MA,02215 +170659,Wired Headphones,1,11.99,2019-03-26 20:02:00,373 Lakeview St, Los Angeles,CA,90001 +170660,Flatscreen TV,1,300.0,2019-03-03 22:49:00,279 Jackson St, Atlanta,GA,30301 +170661,Lightning Charging Cable,1,14.95,2019-03-19 13:45:00,922 Cherry St, Atlanta,GA,30301 +170662,Apple Airpods Headphones,1,150.0,2019-03-28 18:55:00,829 Park St, Dallas,TX,75001 +170663,USB-C Charging Cable,1,11.95,2019-03-14 19:59:00,668 5th St, San Francisco,CA,94016 +170664,Macbook Pro Laptop,1,1700.0,2019-03-24 16:59:00,629 8th St, Dallas,TX,75001 +170665,AA Batteries (4-pack),1,3.84,2019-03-02 18:39:00,590 8th St, New York City,NY,10001 +170666,Lightning Charging Cable,1,14.95,2019-03-16 00:31:00,319 Meadow St, Seattle,WA,98101 +170667,AA Batteries (4-pack),1,3.84,2019-03-06 13:05:00,734 North St, Atlanta,GA,30301 +170668,Apple Airpods Headphones,1,150.0,2019-03-14 14:32:00,180 South St, Austin,TX,73301 +170669,Bose SoundSport Headphones,1,99.99,2019-03-28 14:53:00,403 Adams St, Los Angeles,CA,90001 +170670,USB-C Charging Cable,1,11.95,2019-03-18 09:21:00,921 South St, San Francisco,CA,94016 +170671,Lightning Charging Cable,1,14.95,2019-03-28 17:04:00,58 Lakeview St, Atlanta,GA,30301 +170672,USB-C Charging Cable,1,11.95,2019-03-05 09:32:00,144 Lakeview St, San Francisco,CA,94016 +170673,AAA Batteries (4-pack),1,2.99,2019-03-10 22:43:00,176 Willow St, Seattle,WA,98101 +170674,USB-C Charging Cable,1,11.95,2019-03-12 16:01:00,734 2nd St, Boston,MA,02215 +170675,Macbook Pro Laptop,1,1700.0,2019-03-31 15:44:00,758 Spruce St, Boston,MA,02215 +170676,Lightning Charging Cable,1,14.95,2019-03-07 17:29:00,464 Sunset St, Seattle,WA,98101 +170677,AAA Batteries (4-pack),1,2.99,2019-03-28 13:32:00,379 1st St, Dallas,TX,75001 +170678,Lightning Charging Cable,1,14.95,2019-03-19 20:14:00,127 Park St, Dallas,TX,75001 +170679,Apple Airpods Headphones,1,150.0,2019-03-22 12:26:00,28 Sunset St, Dallas,TX,75001 +170680,Google Phone,1,600.0,2019-03-14 16:38:00,722 Chestnut St, Los Angeles,CA,90001 +170681,Macbook Pro Laptop,1,1700.0,2019-03-20 11:57:00,760 West St, New York City,NY,10001 +170682,AA Batteries (4-pack),1,3.84,2019-03-30 11:27:00,27 Elm St, New York City,NY,10001 +170683,Lightning Charging Cable,1,14.95,2019-03-22 23:39:00,223 5th St, Austin,TX,73301 +170684,Apple Airpods Headphones,1,150.0,2019-03-01 19:51:00,297 1st St, New York City,NY,10001 +170685,Wired Headphones,1,11.99,2019-03-13 16:39:00,903 Lake St, Los Angeles,CA,90001 +170686,Macbook Pro Laptop,1,1700.0,2019-03-09 08:09:00,872 2nd St, Boston,MA,02215 +170687,iPhone,1,700.0,2019-03-21 23:11:00,538 6th St, San Francisco,CA,94016 +170688,Lightning Charging Cable,1,14.95,2019-03-28 15:41:00,937 Walnut St, Seattle,WA,98101 +170689,Lightning Charging Cable,1,14.95,2019-03-22 18:03:00,703 4th St, San Francisco,CA,94016 +170690,34in Ultrawide Monitor,1,379.99,2019-03-16 20:39:00,215 South St, Atlanta,GA,30301 +170691,AA Batteries (4-pack),1,3.84,2019-03-10 16:59:00,401 Hickory St, San Francisco,CA,94016 +170692,Apple Airpods Headphones,1,150.0,2019-03-04 23:57:00,606 5th St, Boston,MA,02215 +170693,34in Ultrawide Monitor,1,379.99,2019-03-16 10:41:00,556 Main St, New York City,NY,10001 +170694,Wired Headphones,1,11.99,2019-03-21 18:02:00,694 North St, Seattle,WA,98101 +170695,Apple Airpods Headphones,1,150.0,2019-03-08 11:46:00,484 Willow St, Los Angeles,CA,90001 +170696,Lightning Charging Cable,1,14.95,2019-03-20 12:58:00,862 Meadow St, New York City,NY,10001 +170697,AA Batteries (4-pack),1,3.84,2019-03-26 05:35:00,929 10th St, Boston,MA,02215 +170698,Apple Airpods Headphones,1,150.0,2019-03-13 10:51:00,446 Main St, San Francisco,CA,94016 +170699,20in Monitor,1,109.99,2019-03-25 12:17:00,855 Madison St, Los Angeles,CA,90001 +170700,Bose SoundSport Headphones,1,99.99,2019-03-24 18:52:00,579 Highland St, Atlanta,GA,30301 +170701,Wired Headphones,1,11.99,2019-03-28 20:11:00,435 Church St, Los Angeles,CA,90001 +170702,iPhone,1,700.0,2019-03-02 12:16:00,914 Wilson St, San Francisco,CA,94016 +170703,Flatscreen TV,1,300.0,2019-03-27 17:51:00,155 13th St, Los Angeles,CA,90001 +170704,27in 4K Gaming Monitor,1,389.99,2019-03-26 12:49:00,230 West St, Austin,TX,73301 +170705,34in Ultrawide Monitor,1,379.99,2019-03-22 21:53:00,743 Center St, Boston,MA,02215 +170706,27in FHD Monitor,1,149.99,2019-03-21 19:12:00,614 9th St, Los Angeles,CA,90001 +170707,AAA Batteries (4-pack),1,2.99,2019-03-28 19:12:00,704 West St, Atlanta,GA,30301 +170707,USB-C Charging Cable,1,11.95,2019-03-28 19:12:00,704 West St, Atlanta,GA,30301 +170708,USB-C Charging Cable,1,11.95,2019-03-25 00:43:00,255 6th St, Atlanta,GA,30301 +170709,USB-C Charging Cable,1,11.95,2019-03-22 11:08:00,442 South St, New York City,NY,10001 +170710,Flatscreen TV,1,300.0,2019-03-27 13:05:00,65 Ridge St, Los Angeles,CA,90001 +170711,AAA Batteries (4-pack),1,2.99,2019-03-11 12:50:00,819 Ridge St, Boston,MA,02215 +170712,AAA Batteries (4-pack),4,2.99,2019-03-06 19:18:00,932 Spruce St, San Francisco,CA,94016 +170713,AAA Batteries (4-pack),3,2.99,2019-03-30 11:22:00,316 Cherry St, San Francisco,CA,94016 +170714,AA Batteries (4-pack),2,3.84,2019-03-05 11:17:00,442 Highland St, Austin,TX,73301 +170715,AAA Batteries (4-pack),1,2.99,2019-03-09 18:29:00,99 Meadow St, New York City,NY,10001 +170716,ThinkPad Laptop,1,999.99,2019-03-20 13:11:00,681 Pine St, Dallas,TX,75001 +170717,AA Batteries (4-pack),1,3.84,2019-03-15 14:59:00,253 Jefferson St, Atlanta,GA,30301 +170718,34in Ultrawide Monitor,1,379.99,2019-03-04 18:56:00,669 Hickory St, Boston,MA,02215 +170719,ThinkPad Laptop,1,999.99,2019-03-07 12:03:00,714 Main St, Seattle,WA,98101 +170720,Lightning Charging Cable,1,14.95,2019-03-11 13:40:00,247 Walnut St, San Francisco,CA,94016 +170721,Apple Airpods Headphones,1,150.0,2019-03-05 20:28:00,953 Wilson St, Atlanta,GA,30301 +170721,Wired Headphones,1,11.99,2019-03-05 20:28:00,953 Wilson St, Atlanta,GA,30301 +170722,AA Batteries (4-pack),1,3.84,2019-03-16 21:22:00,35 Chestnut St, Los Angeles,CA,90001 +170723,Wired Headphones,1,11.99,2019-03-21 13:20:00,167 Church St, Los Angeles,CA,90001 +170724,Apple Airpods Headphones,1,150.0,2019-03-14 18:39:00,726 2nd St, Portland,ME,04101 +170725,USB-C Charging Cable,1,11.95,2019-03-24 16:23:00,137 Willow St, Boston,MA,02215 +170726,AAA Batteries (4-pack),4,2.99,2019-03-02 12:02:00,593 Spruce St, San Francisco,CA,94016 +170727,Lightning Charging Cable,1,14.95,2019-03-23 12:25:00,98 Lakeview St, Los Angeles,CA,90001 +170728,Lightning Charging Cable,1,14.95,2019-03-15 15:09:00,426 13th St, New York City,NY,10001 +170729,ThinkPad Laptop,1,999.99,2019-03-10 13:23:00,566 North St, Austin,TX,73301 +170730,AA Batteries (4-pack),1,3.84,2019-03-17 18:09:00,288 13th St, Los Angeles,CA,90001 +170731,AAA Batteries (4-pack),1,2.99,2019-03-07 13:23:00,28 Hickory St, Atlanta,GA,30301 +170732,Lightning Charging Cable,1,14.95,2019-03-25 17:22:00,646 Center St, Portland,OR,97035 +170733,Apple Airpods Headphones,1,150.0,2019-03-24 16:05:00,184 Walnut St, Boston,MA,02215 +170734,AA Batteries (4-pack),1,3.84,2019-03-14 23:16:00,748 Adams St, New York City,NY,10001 +170735,USB-C Charging Cable,1,11.95,2019-03-27 00:12:00,104 Washington St, Los Angeles,CA,90001 +170736,Vareebadd Phone,1,400.0,2019-03-13 09:14:00,751 Pine St, Portland,OR,97035 +170737,Wired Headphones,1,11.99,2019-03-23 13:48:00,387 1st St, Austin,TX,73301 +170738,20in Monitor,1,109.99,2019-03-09 18:35:00,789 River St, Atlanta,GA,30301 +170739,USB-C Charging Cable,1,11.95,2019-03-15 20:16:00,224 Main St, San Francisco,CA,94016 +170740,AA Batteries (4-pack),1,3.84,2019-03-26 01:13:00,332 Adams St, Atlanta,GA,30301 +170741,Flatscreen TV,1,300.0,2019-03-22 23:59:00,303 Johnson St, Seattle,WA,98101 +170742,AAA Batteries (4-pack),1,2.99,2019-03-26 18:14:00,809 Washington St, San Francisco,CA,94016 +170742,Apple Airpods Headphones,1,150.0,2019-03-26 18:14:00,809 Washington St, San Francisco,CA,94016 +170743,iPhone,1,700.0,2019-03-02 09:49:00,407 Sunset St, San Francisco,CA,94016 +170744,27in 4K Gaming Monitor,1,389.99,2019-03-07 02:52:00,23 10th St, Atlanta,GA,30301 +170745,Wired Headphones,1,11.99,2019-03-29 15:28:00,324 Hickory St, San Francisco,CA,94016 +170746,Vareebadd Phone,1,400.0,2019-03-05 19:30:00,979 West St, San Francisco,CA,94016 +170746,USB-C Charging Cable,1,11.95,2019-03-05 19:30:00,979 West St, San Francisco,CA,94016 +170747,Bose SoundSport Headphones,1,99.99,2019-03-08 20:26:00,905 River St, Austin,TX,73301 +170748,USB-C Charging Cable,2,11.95,2019-03-02 21:17:00,475 Dogwood St, San Francisco,CA,94016 +170749,AAA Batteries (4-pack),2,2.99,2019-03-22 13:58:00,359 North St, San Francisco,CA,94016 +170749,USB-C Charging Cable,1,11.95,2019-03-22 13:58:00,359 North St, San Francisco,CA,94016 +170750,Wired Headphones,1,11.99,2019-03-23 14:59:00,530 Ridge St, San Francisco,CA,94016 +170751,Flatscreen TV,1,300.0,2019-03-25 11:04:00,157 Hickory St, San Francisco,CA,94016 +170752,Bose SoundSport Headphones,1,99.99,2019-03-23 13:23:00,502 12th St, Boston,MA,02215 +170753,27in 4K Gaming Monitor,1,389.99,2019-03-18 11:28:00,736 11th St, Boston,MA,02215 +170754,27in FHD Monitor,1,149.99,2019-03-06 10:06:00,652 West St, San Francisco,CA,94016 +170755,Lightning Charging Cable,1,14.95,2019-03-11 15:04:00,544 Washington St, Austin,TX,73301 +170756,USB-C Charging Cable,1,11.95,2019-03-13 20:30:00,352 West St, Dallas,TX,75001 +170757,USB-C Charging Cable,1,11.95,2019-03-27 20:07:00,822 Hickory St, Boston,MA,02215 +170758,AAA Batteries (4-pack),4,2.99,2019-03-25 21:10:00,117 1st St, San Francisco,CA,94016 +170759,AAA Batteries (4-pack),1,2.99,2019-03-03 22:06:00,432 Hickory St, San Francisco,CA,94016 +170760,Lightning Charging Cable,1,14.95,2019-03-19 15:52:00,891 13th St, Seattle,WA,98101 +170761,USB-C Charging Cable,1,11.95,2019-03-08 20:32:00,700 12th St, Portland,OR,97035 +170762,ThinkPad Laptop,1,999.99,2019-03-21 13:37:00,255 14th St, Portland,OR,97035 +170763,AAA Batteries (4-pack),1,2.99,2019-03-28 18:30:00,820 Jackson St, San Francisco,CA,94016 +170764,Lightning Charging Cable,1,14.95,2019-03-17 20:14:00,225 West St, Dallas,TX,75001 +170765,Apple Airpods Headphones,1,150.0,2019-03-06 17:46:00,774 Center St, Atlanta,GA,30301 +170765,AAA Batteries (4-pack),1,2.99,2019-03-06 17:46:00,774 Center St, Atlanta,GA,30301 +170766,Lightning Charging Cable,1,14.95,2019-03-12 08:31:00,671 13th St, San Francisco,CA,94016 +170767,AA Batteries (4-pack),1,3.84,2019-03-07 18:01:00,165 14th St, Los Angeles,CA,90001 +170768,AA Batteries (4-pack),1,3.84,2019-03-06 09:17:00,816 Spruce St, Atlanta,GA,30301 +170769,Wired Headphones,1,11.99,2019-03-07 02:09:00,502 Hickory St, New York City,NY,10001 +170770,Lightning Charging Cable,2,14.95,2019-03-21 08:15:00,31 Johnson St, Los Angeles,CA,90001 +170771,iPhone,1,700.0,2019-03-23 07:03:00,76 Lakeview St, New York City,NY,10001 +170771,Lightning Charging Cable,1,14.95,2019-03-23 07:03:00,76 Lakeview St, New York City,NY,10001 +170772,AAA Batteries (4-pack),1,2.99,2019-03-14 13:51:00,170 11th St, San Francisco,CA,94016 +170773,27in 4K Gaming Monitor,1,389.99,2019-03-05 21:26:00,78 Maple St, Los Angeles,CA,90001 +170774,Apple Airpods Headphones,1,150.0,2019-03-28 23:37:00,764 Walnut St, Boston,MA,02215 +170775,27in FHD Monitor,1,149.99,2019-03-20 20:53:00,112 Lake St, San Francisco,CA,94016 +170776,USB-C Charging Cable,1,11.95,2019-03-01 09:58:00,338 7th St, New York City,NY,10001 +170777,Apple Airpods Headphones,1,150.0,2019-03-24 15:07:00,199 Johnson St, Los Angeles,CA,90001 +170778,Bose SoundSport Headphones,1,99.99,2019-03-22 15:26:00,806 Meadow St, New York City,NY,10001 +170779,Wired Headphones,1,11.99,2019-03-22 20:13:00,991 Church St, San Francisco,CA,94016 +170780,Bose SoundSport Headphones,1,99.99,2019-03-27 21:16:00,500 6th St, San Francisco,CA,94016 +170781,Lightning Charging Cable,1,14.95,2019-03-19 21:56:00,319 Cherry St, Austin,TX,73301 +170781,AA Batteries (4-pack),2,3.84,2019-03-19 21:56:00,319 Cherry St, Austin,TX,73301 +170782,ThinkPad Laptop,1,999.99,2019-03-01 15:50:00,57 Forest St, San Francisco,CA,94016 +170783,20in Monitor,1,109.99,2019-03-20 10:08:00,366 Lake St, Los Angeles,CA,90001 +170784,AA Batteries (4-pack),2,3.84,2019-03-15 12:01:00,18 South St, Atlanta,GA,30301 +170785,Lightning Charging Cable,1,14.95,2019-03-06 12:46:00,323 Walnut St, New York City,NY,10001 +170786,27in FHD Monitor,1,149.99,2019-03-02 18:24:00,129 Johnson St, Boston,MA,02215 +170786,34in Ultrawide Monitor,1,379.99,2019-03-02 18:24:00,129 Johnson St, Boston,MA,02215 +170787,Google Phone,1,600.0,2019-03-07 10:16:00,195 8th St, Los Angeles,CA,90001 +170788,Bose SoundSport Headphones,1,99.99,2019-03-31 07:39:00,369 North St, San Francisco,CA,94016 +170789,Wired Headphones,1,11.99,2019-03-06 13:32:00,399 Cherry St, Los Angeles,CA,90001 +170790,USB-C Charging Cable,1,11.95,2019-03-13 22:08:00,141 Lincoln St, New York City,NY,10001 +170791,Bose SoundSport Headphones,1,99.99,2019-03-19 21:04:00,927 11th St, Atlanta,GA,30301 +170792,AA Batteries (4-pack),1,3.84,2019-03-22 15:49:00,473 6th St, New York City,NY,10001 +170793,Flatscreen TV,1,300.0,2019-03-06 18:59:00,577 Spruce St, Boston,MA,02215 +170794,Bose SoundSport Headphones,1,99.99,2019-03-09 16:17:00,934 2nd St, Los Angeles,CA,90001 +170795,AAA Batteries (4-pack),2,2.99,2019-03-20 07:31:00,567 13th St, San Francisco,CA,94016 +170796,AAA Batteries (4-pack),1,2.99,2019-03-19 11:32:00,576 Church St, San Francisco,CA,94016 +170797,Apple Airpods Headphones,1,150.0,2019-03-13 10:51:00,400 1st St, New York City,NY,10001 +170798,Wired Headphones,1,11.99,2019-03-07 11:42:00,689 7th St, Portland,OR,97035 +170799,AA Batteries (4-pack),1,3.84,2019-03-06 13:05:00,813 10th St, San Francisco,CA,94016 +170800,Wired Headphones,1,11.99,2019-03-07 16:42:00,682 West St, Los Angeles,CA,90001 +170801,Wired Headphones,1,11.99,2019-03-24 10:59:00,261 1st St, Dallas,TX,75001 +170802,Google Phone,1,600.0,2019-03-23 21:05:00,844 Meadow St, Dallas,TX,75001 +170803,27in FHD Monitor,1,149.99,2019-03-30 23:34:00,414 Jefferson St, San Francisco,CA,94016 +170804,AA Batteries (4-pack),1,3.84,2019-03-02 10:29:00,303 Madison St, Seattle,WA,98101 +170805,Lightning Charging Cable,2,14.95,2019-03-03 08:18:00,474 10th St, Los Angeles,CA,90001 +170806,Bose SoundSport Headphones,1,99.99,2019-03-11 13:39:00,900 Lakeview St, Los Angeles,CA,90001 +170807,Wired Headphones,1,11.99,2019-03-08 08:45:00,967 Adams St, Atlanta,GA,30301 +170808,AAA Batteries (4-pack),1,2.99,2019-03-13 20:05:00,321 13th St, Boston,MA,02215 +170809,Lightning Charging Cable,1,14.95,2019-03-10 10:14:00,383 Elm St, Los Angeles,CA,90001 +170810,Apple Airpods Headphones,1,150.0,2019-03-31 23:21:00,177 Madison St, New York City,NY,10001 +170811,AAA Batteries (4-pack),1,2.99,2019-03-13 21:33:00,396 Main St, San Francisco,CA,94016 +170812,iPhone,1,700.0,2019-03-06 19:43:00,353 Walnut St, Los Angeles,CA,90001 +170813,Lightning Charging Cable,1,14.95,2019-03-09 11:14:00,616 Forest St, Seattle,WA,98101 +170814,Apple Airpods Headphones,1,150.0,2019-03-19 17:03:00,476 12th St, Los Angeles,CA,90001 +170815,LG Washing Machine,1,600.0,2019-03-23 15:40:00,743 Hickory St, San Francisco,CA,94016 +170816,AAA Batteries (4-pack),1,2.99,2019-03-31 23:17:00,739 Jefferson St, Boston,MA,02215 +170817,USB-C Charging Cable,2,11.95,2019-03-10 10:29:00,961 1st St, New York City,NY,10001 +170818,Macbook Pro Laptop,1,1700.0,2019-03-13 20:54:00,587 North St, Austin,TX,73301 +170819,USB-C Charging Cable,1,11.95,2019-03-18 14:47:00,610 1st St, San Francisco,CA,94016 +170819,Google Phone,1,600.0,2019-03-18 14:47:00,610 1st St, San Francisco,CA,94016 +170820,Apple Airpods Headphones,1,150.0,2019-03-29 17:48:00,96 North St, New York City,NY,10001 +170821,AAA Batteries (4-pack),1,2.99,2019-03-17 09:05:00,16 4th St, San Francisco,CA,94016 +170822,Lightning Charging Cable,1,14.95,2019-03-11 10:55:00,700 Washington St, Atlanta,GA,30301 +170823,Wired Headphones,1,11.99,2019-03-12 14:19:00,499 8th St, San Francisco,CA,94016 +170824,iPhone,1,700.0,2019-03-10 14:26:00,649 12th St, Los Angeles,CA,90001 +170825,AA Batteries (4-pack),1,3.84,2019-03-25 13:23:00,240 Park St, Boston,MA,02215 +170826,Apple Airpods Headphones,1,150.0,2019-03-06 14:35:00,574 Hickory St, San Francisco,CA,94016 +170827,Lightning Charging Cable,1,14.95,2019-03-08 12:17:00,939 7th St, Los Angeles,CA,90001 +170828,Wired Headphones,1,11.99,2019-03-07 10:33:00,288 Lakeview St, Atlanta,GA,30301 +170829,USB-C Charging Cable,1,11.95,2019-03-20 15:44:00,922 Maple St, Dallas,TX,75001 +170830,Lightning Charging Cable,1,14.95,2019-03-25 18:10:00,617 13th St, Boston,MA,02215 +170831,Apple Airpods Headphones,1,150.0,2019-03-12 13:39:00,378 Meadow St, San Francisco,CA,94016 +170832,Lightning Charging Cable,1,14.95,2019-03-02 11:46:00,902 Elm St, New York City,NY,10001 +170833,AAA Batteries (4-pack),1,2.99,2019-03-05 13:15:00,346 Johnson St, New York City,NY,10001 +170834,34in Ultrawide Monitor,1,379.99,2019-03-26 20:50:00,170 Meadow St, Portland,OR,97035 +170835,USB-C Charging Cable,1,11.95,2019-03-20 22:19:00,471 Cedar St, Boston,MA,02215 +170836,Macbook Pro Laptop,1,1700.0,2019-03-26 14:51:00,932 Sunset St, Seattle,WA,98101 +170837,Bose SoundSport Headphones,1,99.99,2019-03-03 12:16:00,929 Walnut St, New York City,NY,10001 +170838,Lightning Charging Cable,1,14.95,2019-03-07 23:23:00,787 Wilson St, Atlanta,GA,30301 +170839,AAA Batteries (4-pack),1,2.99,2019-03-29 18:55:00,452 8th St, New York City,NY,10001 +170840,27in 4K Gaming Monitor,1,389.99,2019-03-10 18:11:00,926 7th St, Boston,MA,02215 +170841,27in FHD Monitor,1,149.99,2019-03-08 16:18:00,954 Lake St, San Francisco,CA,94016 +170842,Bose SoundSport Headphones,1,99.99,2019-03-19 22:07:00,745 5th St, New York City,NY,10001 +170843,AAA Batteries (4-pack),1,2.99,2019-03-25 13:46:00,426 Lake St, New York City,NY,10001 +170844,Wired Headphones,1,11.99,2019-03-16 18:16:00,946 Cedar St, Los Angeles,CA,90001 +170845,Bose SoundSport Headphones,1,99.99,2019-03-29 16:44:00,662 Lake St, Austin,TX,73301 +170846,27in FHD Monitor,1,149.99,2019-03-24 09:22:00,921 12th St, New York City,NY,10001 +170847,27in FHD Monitor,1,149.99,2019-03-04 19:00:00,200 Washington St, New York City,NY,10001 +170848,Apple Airpods Headphones,1,150.0,2019-03-27 12:39:00,61 Wilson St, New York City,NY,10001 +170849,Lightning Charging Cable,1,14.95,2019-03-31 06:45:00,675 7th St, Boston,MA,02215 +170850,Wired Headphones,1,11.99,2019-03-17 05:54:00,83 Hickory St, San Francisco,CA,94016 +170851,USB-C Charging Cable,1,11.95,2019-03-12 21:46:00,554 Lincoln St, Seattle,WA,98101 +170852,USB-C Charging Cable,1,11.95,2019-03-26 22:23:00,707 Washington St, Portland,OR,97035 +170853,USB-C Charging Cable,1,11.95,2019-03-10 00:22:00,75 Spruce St, Los Angeles,CA,90001 +170854,ThinkPad Laptop,1,999.99,2019-03-07 08:44:00,908 Spruce St, San Francisco,CA,94016 +170855,Flatscreen TV,1,300.0,2019-03-28 15:52:00,451 Pine St, Atlanta,GA,30301 +170856,USB-C Charging Cable,1,11.95,2019-03-08 15:50:00,500 South St, Seattle,WA,98101 +170857,Macbook Pro Laptop,1,1700.0,2019-03-31 17:38:00,232 5th St, Los Angeles,CA,90001 +170858,USB-C Charging Cable,1,11.95,2019-03-16 19:16:00,853 Center St, Portland,ME,04101 +170859,Lightning Charging Cable,1,14.95,2019-03-11 19:48:00,414 4th St, Los Angeles,CA,90001 +170860,AAA Batteries (4-pack),1,2.99,2019-03-08 23:42:00,14 Jackson St, Boston,MA,02215 +170861,AA Batteries (4-pack),1,3.84,2019-03-15 00:25:00,932 Church St, Los Angeles,CA,90001 +170862,Macbook Pro Laptop,1,1700.0,2019-03-26 20:58:00,791 Wilson St, Los Angeles,CA,90001 +170863,Lightning Charging Cable,1,14.95,2019-03-25 15:03:00,112 Center St, San Francisco,CA,94016 +170864,AAA Batteries (4-pack),1,2.99,2019-03-19 21:26:00,485 Spruce St, Austin,TX,73301 +170865,iPhone,1,700.0,2019-03-02 10:23:00,43 Jefferson St, Los Angeles,CA,90001 +170866,Bose SoundSport Headphones,2,99.99,2019-03-12 19:22:00,500 Hill St, Boston,MA,02215 +170867,AA Batteries (4-pack),1,3.84,2019-03-18 20:26:00,357 Cherry St, Austin,TX,73301 +170868,ThinkPad Laptop,1,999.99,2019-03-14 18:35:00,331 Sunset St, San Francisco,CA,94016 +170869,Lightning Charging Cable,2,14.95,2019-03-26 11:22:00,138 Lakeview St, New York City,NY,10001 +170870,20in Monitor,1,109.99,2019-03-10 12:39:00,908 Elm St, Boston,MA,02215 +170871,USB-C Charging Cable,1,11.95,2019-03-06 17:04:00,943 Wilson St, San Francisco,CA,94016 +170872,27in 4K Gaming Monitor,1,389.99,2019-03-19 12:45:00,590 Ridge St, Austin,TX,73301 +170873,Flatscreen TV,1,300.0,2019-03-21 10:21:00,559 Lincoln St, Los Angeles,CA,90001 +170874,20in Monitor,1,109.99,2019-03-05 13:45:00,136 Adams St, Dallas,TX,75001 +170875,Macbook Pro Laptop,1,1700.0,2019-03-19 18:46:00,745 1st St, Dallas,TX,75001 +170876,27in 4K Gaming Monitor,1,389.99,2019-03-01 21:20:00,869 Hickory St, Portland,OR,97035 +170877,27in 4K Gaming Monitor,1,389.99,2019-03-11 13:29:00,729 Madison St, Atlanta,GA,30301 +170878,Wired Headphones,1,11.99,2019-03-20 12:07:00,985 13th St, San Francisco,CA,94016 +170879,AA Batteries (4-pack),3,3.84,2019-03-10 09:09:00,192 7th St, Boston,MA,02215 +170880,ThinkPad Laptop,1,999.99,2019-03-07 21:59:00,540 North St, San Francisco,CA,94016 +170881,Wired Headphones,1,11.99,2019-03-28 14:07:00,736 8th St, Los Angeles,CA,90001 +170882,USB-C Charging Cable,1,11.95,2019-03-17 21:21:00,231 Walnut St, Seattle,WA,98101 +170883,Google Phone,1,600.0,2019-03-31 21:10:00,931 Chestnut St, Boston,MA,02215 +170884,ThinkPad Laptop,1,999.99,2019-03-28 16:17:00,925 Elm St, San Francisco,CA,94016 +170885,ThinkPad Laptop,1,999.99,2019-03-25 08:32:00,37 5th St, Portland,OR,97035 +170886,27in 4K Gaming Monitor,1,389.99,2019-03-28 08:07:00,762 Elm St, Los Angeles,CA,90001 +170887,AA Batteries (4-pack),1,3.84,2019-03-15 18:43:00,261 Wilson St, Atlanta,GA,30301 +170888,AA Batteries (4-pack),2,3.84,2019-03-17 21:32:00,944 Chestnut St, Boston,MA,02215 +170889,Macbook Pro Laptop,1,1700.0,2019-03-22 07:28:00,909 1st St, Seattle,WA,98101 +170890,USB-C Charging Cable,1,11.95,2019-03-02 19:27:00,50 1st St, Austin,TX,73301 +170891,ThinkPad Laptop,1,999.99,2019-03-22 01:15:00,884 Johnson St, San Francisco,CA,94016 +170892,LG Dryer,1,600.0,2019-03-10 10:42:00,824 Maple St, Dallas,TX,75001 +170893,27in FHD Monitor,1,149.99,2019-03-06 13:59:00,222 Highland St, Dallas,TX,75001 +170894,ThinkPad Laptop,1,999.99,2019-03-13 12:02:00,65 8th St, Los Angeles,CA,90001 +170895,Apple Airpods Headphones,1,150.0,2019-03-29 20:06:00,98 Wilson St, Portland,OR,97035 +170896,Lightning Charging Cable,1,14.95,2019-03-07 05:13:00,761 Jefferson St, San Francisco,CA,94016 +170897,Google Phone,1,600.0,2019-03-17 18:12:00,355 Pine St, Los Angeles,CA,90001 +170898,27in 4K Gaming Monitor,1,389.99,2019-03-26 15:39:00,986 Elm St, San Francisco,CA,94016 +170899,Apple Airpods Headphones,1,150.0,2019-03-02 12:55:00,742 South St, Dallas,TX,75001 +170900,AA Batteries (4-pack),2,3.84,2019-03-05 20:36:00,790 West St, Portland,ME,04101 +170901,Lightning Charging Cable,1,14.95,2019-03-21 12:02:00,145 Jefferson St, Austin,TX,73301 +170902,AAA Batteries (4-pack),3,2.99,2019-03-31 13:29:00,57 Pine St, Atlanta,GA,30301 +170903,AAA Batteries (4-pack),1,2.99,2019-03-27 18:11:00,683 12th St, Dallas,TX,75001 +170904,Google Phone,1,600.0,2019-03-16 16:48:00,927 Lakeview St, Boston,MA,02215 +170904,Bose SoundSport Headphones,1,99.99,2019-03-16 16:48:00,927 Lakeview St, Boston,MA,02215 +170905,Bose SoundSport Headphones,1,99.99,2019-03-11 02:05:00,265 1st St, San Francisco,CA,94016 +170906,AAA Batteries (4-pack),1,2.99,2019-03-22 17:38:00,436 Park St, Dallas,TX,75001 +170907,Wired Headphones,1,11.99,2019-03-07 20:12:00,396 Lincoln St, Austin,TX,73301 +170908,Apple Airpods Headphones,1,150.0,2019-03-19 21:48:00,461 Lincoln St, Boston,MA,02215 +170909,20in Monitor,1,109.99,2019-03-27 12:20:00,365 North St, Portland,OR,97035 +170910,Apple Airpods Headphones,1,150.0,2019-03-26 11:09:00,894 9th St, Portland,OR,97035 +170911,AA Batteries (4-pack),1,3.84,2019-03-30 21:08:00,989 8th St, Seattle,WA,98101 +170912,Wired Headphones,1,11.99,2019-03-09 10:39:00,137 11th St, Portland,ME,04101 +170913,Bose SoundSport Headphones,1,99.99,2019-03-18 21:42:00,249 Lake St, Portland,OR,97035 +170914,AAA Batteries (4-pack),1,2.99,2019-03-11 17:48:00,381 Jefferson St, Austin,TX,73301 +170915,Wired Headphones,1,11.99,2019-03-19 09:01:00,262 Willow St, Boston,MA,02215 +170916,USB-C Charging Cable,1,11.95,2019-03-13 10:20:00,857 Hill St, New York City,NY,10001 +170917,ThinkPad Laptop,1,999.99,2019-03-18 14:29:00,79 Wilson St, San Francisco,CA,94016 +170918,Lightning Charging Cable,2,14.95,2019-03-29 12:05:00,750 8th St, Boston,MA,02215 +170919,Wired Headphones,1,11.99,2019-03-25 07:51:00,562 Johnson St, San Francisco,CA,94016 +170920,Wired Headphones,1,11.99,2019-03-09 06:17:00,195 Elm St, Seattle,WA,98101 +170921,27in 4K Gaming Monitor,1,389.99,2019-03-16 13:15:00,143 Madison St, New York City,NY,10001 +170922,27in FHD Monitor,1,149.99,2019-03-25 21:34:00,491 7th St, Los Angeles,CA,90001 +170923,Bose SoundSport Headphones,1,99.99,2019-03-20 13:39:00,272 12th St, Atlanta,GA,30301 +170924,USB-C Charging Cable,1,11.95,2019-03-26 17:29:00,695 Lakeview St, Dallas,TX,75001 +170925,Lightning Charging Cable,1,14.95,2019-03-01 11:15:00,328 Center St, Boston,MA,02215 +170926,Macbook Pro Laptop,1,1700.0,2019-03-11 10:12:00,260 Walnut St, Austin,TX,73301 +170927,Lightning Charging Cable,1,14.95,2019-03-18 20:42:00,136 Center St, Seattle,WA,98101 +170928,34in Ultrawide Monitor,1,379.99,2019-03-18 13:50:00,173 Lakeview St, Los Angeles,CA,90001 +170929,AAA Batteries (4-pack),1,2.99,2019-03-28 07:37:00,822 Highland St, San Francisco,CA,94016 +170930,Apple Airpods Headphones,1,150.0,2019-03-01 13:21:00,554 Forest St, San Francisco,CA,94016 +170931,Bose SoundSport Headphones,1,99.99,2019-03-30 05:49:00,522 Sunset St, Los Angeles,CA,90001 +170932,Macbook Pro Laptop,1,1700.0,2019-03-05 11:52:00,330 Lake St, Atlanta,GA,30301 +170933,AAA Batteries (4-pack),1,2.99,2019-03-06 08:26:00,703 Adams St, Atlanta,GA,30301 +170934,AAA Batteries (4-pack),1,2.99,2019-03-10 16:49:00,694 5th St, Seattle,WA,98101 +170935,Lightning Charging Cable,1,14.95,2019-03-20 20:44:00,511 Chestnut St, New York City,NY,10001 +170936,AA Batteries (4-pack),1,3.84,2019-03-01 09:09:00,512 Meadow St, New York City,NY,10001 +170937,AA Batteries (4-pack),1,3.84,2019-03-14 20:04:00,683 10th St, Seattle,WA,98101 +170938,AAA Batteries (4-pack),1,2.99,2019-03-04 03:17:00,708 7th St, San Francisco,CA,94016 +170939,Lightning Charging Cable,1,14.95,2019-03-18 22:05:00,139 7th St, New York City,NY,10001 +170940,iPhone,1,700.0,2019-03-20 17:33:00,251 Spruce St, Dallas,TX,75001 +170941,Lightning Charging Cable,1,14.95,2019-03-31 14:30:00,400 Hill St, Los Angeles,CA,90001 +170942,Lightning Charging Cable,1,14.95,2019-03-10 20:55:00,265 West St, San Francisco,CA,94016 +170943,AA Batteries (4-pack),1,3.84,2019-03-18 09:33:00,163 Cherry St, Atlanta,GA,30301 +170944,USB-C Charging Cable,1,11.95,2019-03-20 08:46:00,95 Lakeview St, San Francisco,CA,94016 +170945,USB-C Charging Cable,1,11.95,2019-03-02 18:06:00,17 Center St, Los Angeles,CA,90001 +170946,AA Batteries (4-pack),1,3.84,2019-03-23 19:51:00,346 Hill St, Portland,OR,97035 +170947,Apple Airpods Headphones,1,150.0,2019-03-07 00:26:00,404 Adams St, Los Angeles,CA,90001 +170948,Wired Headphones,1,11.99,2019-03-20 13:54:00,444 Spruce St, Atlanta,GA,30301 +170949,Bose SoundSport Headphones,1,99.99,2019-03-09 10:12:00,162 Spruce St, Seattle,WA,98101 +170950,Lightning Charging Cable,1,14.95,2019-03-18 12:33:00,761 Jackson St, Los Angeles,CA,90001 +170951,Apple Airpods Headphones,1,150.0,2019-03-20 18:41:00,488 14th St, Los Angeles,CA,90001 +170952,Macbook Pro Laptop,1,1700.0,2019-03-25 20:13:00,96 Hickory St, Dallas,TX,75001 +170953,Google Phone,1,600.0,2019-03-04 21:49:00,85 Washington St, San Francisco,CA,94016 +170954,AAA Batteries (4-pack),1,2.99,2019-03-19 21:50:00,335 Washington St, San Francisco,CA,94016 +170955,USB-C Charging Cable,1,11.95,2019-03-22 18:32:00,149 Main St, Austin,TX,73301 +170956,Wired Headphones,1,11.99,2019-03-13 10:55:00,870 Church St, Atlanta,GA,30301 +170957,Bose SoundSport Headphones,1,99.99,2019-03-06 19:08:00,364 Cherry St, Seattle,WA,98101 +170958,AA Batteries (4-pack),1,3.84,2019-03-25 22:36:00,993 Washington St, Los Angeles,CA,90001 +170959,Wired Headphones,1,11.99,2019-03-29 17:29:00,176 Center St, Boston,MA,02215 +170960,USB-C Charging Cable,1,11.95,2019-03-05 23:21:00,117 River St, Boston,MA,02215 +170961,27in FHD Monitor,1,149.99,2019-03-27 17:18:00,862 Washington St, Portland,OR,97035 +170962,AAA Batteries (4-pack),1,2.99,2019-03-05 15:10:00,805 12th St, New York City,NY,10001 +170963,Apple Airpods Headphones,1,150.0,2019-03-27 09:54:00,497 7th St, Boston,MA,02215 +170964,Apple Airpods Headphones,1,150.0,2019-03-13 22:53:00,322 Lincoln St, San Francisco,CA,94016 +170964,Google Phone,1,600.0,2019-03-13 22:53:00,322 Lincoln St, San Francisco,CA,94016 +170965,Apple Airpods Headphones,1,150.0,2019-03-26 11:23:00,128 Park St, Los Angeles,CA,90001 +170966,27in FHD Monitor,1,149.99,2019-03-02 11:35:00,562 4th St, Dallas,TX,75001 +170967,Bose SoundSport Headphones,1,99.99,2019-03-22 06:45:00,884 South St, New York City,NY,10001 +170968,ThinkPad Laptop,1,999.99,2019-03-18 19:21:00,555 13th St, New York City,NY,10001 +170969,Wired Headphones,1,11.99,2019-03-12 15:09:00,161 Cedar St, Los Angeles,CA,90001 +170970,Flatscreen TV,1,300.0,2019-03-12 11:41:00,58 8th St, New York City,NY,10001 +170971,Lightning Charging Cable,1,14.95,2019-03-29 16:09:00,593 8th St, San Francisco,CA,94016 +170972,27in FHD Monitor,1,149.99,2019-03-11 18:25:00,155 12th St, Portland,ME,04101 +170973,Apple Airpods Headphones,1,150.0,2019-03-22 00:27:00,223 Jefferson St, Boston,MA,02215 +170974,AAA Batteries (4-pack),2,2.99,2019-03-31 11:35:00,102 Cherry St, San Francisco,CA,94016 +170975,AA Batteries (4-pack),2,3.84,2019-03-10 06:58:00,808 12th St, San Francisco,CA,94016 +170976,27in FHD Monitor,1,149.99,2019-03-01 20:05:00,879 Church St, Seattle,WA,98101 +170977,USB-C Charging Cable,1,11.95,2019-03-18 13:03:00,229 Jackson St, Boston,MA,02215 +170978,USB-C Charging Cable,1,11.95,2019-03-12 22:55:00,909 Adams St, Austin,TX,73301 +170979,AA Batteries (4-pack),1,3.84,2019-03-29 11:18:00,351 Walnut St, Boston,MA,02215 +170979,Macbook Pro Laptop,1,1700.0,2019-03-29 11:18:00,351 Walnut St, Boston,MA,02215 +170980,Lightning Charging Cable,1,14.95,2019-03-21 20:03:00,638 Forest St, Atlanta,GA,30301 +170981,USB-C Charging Cable,1,11.95,2019-03-31 19:53:00,63 Elm St, Los Angeles,CA,90001 +170982,AAA Batteries (4-pack),3,2.99,2019-03-07 15:30:00,676 West St, New York City,NY,10001 +170983,Wired Headphones,1,11.99,2019-03-10 10:30:00,737 Forest St, Dallas,TX,75001 +170984,34in Ultrawide Monitor,1,379.99,2019-03-24 15:38:00,254 8th St, Austin,TX,73301 +170984,USB-C Charging Cable,1,11.95,2019-03-24 15:38:00,254 8th St, Austin,TX,73301 +170985,USB-C Charging Cable,1,11.95,2019-03-14 06:13:00,2 Pine St, Seattle,WA,98101 +170986,Google Phone,1,600.0,2019-03-08 13:05:00,499 Lakeview St, San Francisco,CA,94016 +170986,USB-C Charging Cable,1,11.95,2019-03-08 13:05:00,499 Lakeview St, San Francisco,CA,94016 +170987,Lightning Charging Cable,1,14.95,2019-03-30 01:50:00,986 6th St, Austin,TX,73301 +170988,Apple Airpods Headphones,1,150.0,2019-03-20 17:27:00,984 Walnut St, San Francisco,CA,94016 +170989,34in Ultrawide Monitor,1,379.99,2019-03-17 17:12:00,435 Jackson St, Los Angeles,CA,90001 +170990,AA Batteries (4-pack),1,3.84,2019-03-17 13:30:00,830 Pine St, New York City,NY,10001 +170991,iPhone,1,700.0,2019-03-18 18:11:00,493 Sunset St, New York City,NY,10001 +170992,Apple Airpods Headphones,1,150.0,2019-03-01 15:39:00,133 Cherry St, Austin,TX,73301 +170993,USB-C Charging Cable,1,11.95,2019-03-23 18:53:00,839 Cherry St, Los Angeles,CA,90001 +170994,AA Batteries (4-pack),2,3.84,2019-03-04 23:26:00,539 South St, San Francisco,CA,94016 +170995,Wired Headphones,1,11.99,2019-03-30 15:39:00,402 Hickory St, San Francisco,CA,94016 +170996,27in 4K Gaming Monitor,1,389.99,2019-03-08 14:28:00,572 5th St, New York City,NY,10001 +170997,USB-C Charging Cable,1,11.95,2019-03-20 11:38:00,653 11th St, Atlanta,GA,30301 +170998,Bose SoundSport Headphones,1,99.99,2019-03-02 20:38:00,369 Meadow St, Los Angeles,CA,90001 +170999,Bose SoundSport Headphones,1,99.99,2019-03-09 09:52:00,885 Cherry St, Dallas,TX,75001 +171000,27in 4K Gaming Monitor,1,389.99,2019-03-05 06:22:00,225 Adams St, San Francisco,CA,94016 +171001,AAA Batteries (4-pack),1,2.99,2019-03-27 19:06:00,914 Dogwood St, Boston,MA,02215 +171002,AAA Batteries (4-pack),1,2.99,2019-03-04 09:15:00,125 1st St, Los Angeles,CA,90001 +171003,Lightning Charging Cable,1,14.95,2019-03-18 10:51:00,747 7th St, Portland,OR,97035 +171004,Bose SoundSport Headphones,1,99.99,2019-03-07 20:37:00,440 Church St, Los Angeles,CA,90001 +171005,Google Phone,1,600.0,2019-03-16 13:07:00,713 Ridge St, Los Angeles,CA,90001 +171006,AA Batteries (4-pack),1,3.84,2019-03-23 08:28:00,573 2nd St, Austin,TX,73301 +171007,iPhone,1,700.0,2019-03-22 16:12:00,512 Elm St, San Francisco,CA,94016 +171008,AA Batteries (4-pack),2,3.84,2019-03-03 10:01:00,754 9th St, San Francisco,CA,94016 +171009,Apple Airpods Headphones,1,150.0,2019-03-25 08:58:00,735 Walnut St, Austin,TX,73301 +171010,Wired Headphones,1,11.99,2019-03-23 08:57:00,788 South St, Los Angeles,CA,90001 +171011,USB-C Charging Cable,1,11.95,2019-03-07 14:36:00,32 Cedar St, San Francisco,CA,94016 +171012,Wired Headphones,1,11.99,2019-03-13 22:15:00,477 5th St, San Francisco,CA,94016 +171013,Apple Airpods Headphones,1,150.0,2019-03-25 23:52:00,610 Church St, San Francisco,CA,94016 +171014,AA Batteries (4-pack),1,3.84,2019-03-02 08:47:00,634 1st St, Boston,MA,02215 +171015,27in FHD Monitor,1,149.99,2019-03-19 14:17:00,930 Pine St, Atlanta,GA,30301 +171016,Flatscreen TV,1,300.0,2019-03-05 02:36:00,393 8th St, San Francisco,CA,94016 +171017,Apple Airpods Headphones,1,150.0,2019-03-14 13:20:00,611 Wilson St, San Francisco,CA,94016 +171017,Lightning Charging Cable,1,14.95,2019-03-14 13:20:00,611 Wilson St, San Francisco,CA,94016 +171018,Wired Headphones,2,11.99,2019-03-22 09:37:00,616 2nd St, Austin,TX,73301 +171019,Flatscreen TV,1,300.0,2019-03-14 23:02:00,959 Willow St, Portland,OR,97035 +171020,AAA Batteries (4-pack),2,2.99,2019-03-15 09:52:00,137 River St, Dallas,TX,75001 +171021,iPhone,1,700.0,2019-03-16 21:02:00,582 West St, Los Angeles,CA,90001 +171022,Lightning Charging Cable,1,14.95,2019-03-21 19:07:00,244 Adams St, New York City,NY,10001 +171023,USB-C Charging Cable,1,11.95,2019-03-13 12:37:00,189 1st St, Los Angeles,CA,90001 +171024,AAA Batteries (4-pack),3,2.99,2019-03-25 15:32:00,980 Lake St, Austin,TX,73301 +171025,Apple Airpods Headphones,1,150.0,2019-03-29 20:19:00,238 West St, Dallas,TX,75001 +171026,USB-C Charging Cable,1,11.95,2019-03-07 12:34:00,736 Cedar St, Los Angeles,CA,90001 +171026,AAA Batteries (4-pack),2,2.99,2019-03-07 12:34:00,736 Cedar St, Los Angeles,CA,90001 +171027,Macbook Pro Laptop,1,1700.0,2019-03-22 08:12:00,840 Hickory St, San Francisco,CA,94016 +171028,Lightning Charging Cable,1,14.95,2019-03-17 18:55:00,849 Center St, Los Angeles,CA,90001 +171029,AAA Batteries (4-pack),1,2.99,2019-03-08 19:35:00,816 Lakeview St, San Francisco,CA,94016 +171030,AAA Batteries (4-pack),1,2.99,2019-03-18 19:20:00,560 Chestnut St, Los Angeles,CA,90001 +171031,Lightning Charging Cable,1,14.95,2019-03-31 09:49:00,472 Pine St, San Francisco,CA,94016 +171032,Macbook Pro Laptop,1,1700.0,2019-03-25 14:40:00,825 Jefferson St, Portland,ME,04101 +171033,AA Batteries (4-pack),1,3.84,2019-03-23 14:56:00,886 Ridge St, Dallas,TX,75001 +171034,27in FHD Monitor,1,149.99,2019-03-06 19:47:00,945 4th St, San Francisco,CA,94016 +171035,AAA Batteries (4-pack),1,2.99,2019-03-21 18:41:00,224 7th St, New York City,NY,10001 +171036,Bose SoundSport Headphones,1,99.99,2019-03-23 11:47:00,771 7th St, Los Angeles,CA,90001 +171037,AAA Batteries (4-pack),1,2.99,2019-03-16 12:29:00,719 Main St, Portland,OR,97035 +171038,iPhone,1,700.0,2019-03-15 17:15:00,828 South St, Austin,TX,73301 +171039,Lightning Charging Cable,1,14.95,2019-03-16 15:32:00,377 Park St, San Francisco,CA,94016 +171040,LG Washing Machine,1,600.0,2019-03-27 19:48:00,170 14th St, Los Angeles,CA,90001 +171041,iPhone,1,700.0,2019-03-11 12:23:00,581 Jackson St, Portland,OR,97035 +171042,USB-C Charging Cable,2,11.95,2019-03-19 20:46:00,763 West St, New York City,NY,10001 +171043,Bose SoundSport Headphones,1,99.99,2019-03-23 21:52:00,208 12th St, Seattle,WA,98101 +171044,Lightning Charging Cable,1,14.95,2019-03-02 18:51:00,750 Church St, New York City,NY,10001 +171045,Lightning Charging Cable,1,14.95,2019-03-28 15:59:00,423 Meadow St, Boston,MA,02215 +171046,27in FHD Monitor,1,149.99,2019-03-03 14:32:00,196 6th St, San Francisco,CA,94016 +171047,Bose SoundSport Headphones,1,99.99,2019-03-09 19:38:00,764 4th St, Austin,TX,73301 +171048,Wired Headphones,1,11.99,2019-03-04 12:38:00,227 South St, Dallas,TX,75001 +171049,USB-C Charging Cable,1,11.95,2019-03-04 18:05:00,220 1st St, Portland,OR,97035 +171050,27in FHD Monitor,1,149.99,2019-03-04 12:53:00,895 Cherry St, Seattle,WA,98101 +171051,Wired Headphones,2,11.99,2019-03-15 14:56:00,459 Dogwood St, Atlanta,GA,30301 +171052,USB-C Charging Cable,1,11.95,2019-03-15 13:58:00,526 6th St, Los Angeles,CA,90001 +171053,USB-C Charging Cable,1,11.95,2019-03-09 20:14:00,995 11th St, Dallas,TX,75001 +171054,iPhone,1,700.0,2019-03-13 13:34:00,748 Jackson St, New York City,NY,10001 +171055,Lightning Charging Cable,1,14.95,2019-03-04 20:20:00,964 10th St, Los Angeles,CA,90001 +171056,AAA Batteries (4-pack),3,2.99,2019-03-30 21:16:00,369 Spruce St, San Francisco,CA,94016 +171057,27in 4K Gaming Monitor,1,389.99,2019-03-28 00:07:00,179 Park St, New York City,NY,10001 +171058,USB-C Charging Cable,1,11.95,2019-03-20 10:31:00,526 Sunset St, San Francisco,CA,94016 +171059,Wired Headphones,1,11.99,2019-03-07 11:53:00,720 Lakeview St, Boston,MA,02215 +171060,Lightning Charging Cable,1,14.95,2019-03-27 12:04:00,419 Ridge St, Los Angeles,CA,90001 +171061,Apple Airpods Headphones,1,150.0,2019-03-24 09:23:00,657 Forest St, Portland,OR,97035 +171062,USB-C Charging Cable,1,11.95,2019-03-09 21:24:00,640 6th St, Austin,TX,73301 +171063,Vareebadd Phone,1,400.0,2019-03-13 11:26:00,726 South St, San Francisco,CA,94016 +171064,Bose SoundSport Headphones,1,99.99,2019-03-02 12:59:00,310 North St, Los Angeles,CA,90001 +171065,Bose SoundSport Headphones,1,99.99,2019-03-27 22:19:00,885 10th St, Atlanta,GA,30301 +171066,Lightning Charging Cable,1,14.95,2019-03-23 10:32:00,523 Maple St, San Francisco,CA,94016 +171067,27in 4K Gaming Monitor,1,389.99,2019-03-04 10:38:00,794 13th St, Atlanta,GA,30301 +171068,USB-C Charging Cable,1,11.95,2019-03-26 10:19:00,817 Chestnut St, Atlanta,GA,30301 +171069,AAA Batteries (4-pack),1,2.99,2019-03-07 14:01:00,558 Madison St, New York City,NY,10001 +171070,AAA Batteries (4-pack),2,2.99,2019-03-06 10:05:00,760 Lakeview St, Boston,MA,02215 +171071,USB-C Charging Cable,1,11.95,2019-03-06 23:41:00,311 9th St, New York City,NY,10001 +171072,Lightning Charging Cable,1,14.95,2019-03-08 23:11:00,790 Johnson St, Los Angeles,CA,90001 +171073,Lightning Charging Cable,1,14.95,2019-03-24 02:16:00,59 River St, Portland,OR,97035 +171074,Google Phone,1,600.0,2019-03-29 20:58:00,408 Pine St, Los Angeles,CA,90001 +171074,USB-C Charging Cable,1,11.95,2019-03-29 20:58:00,408 Pine St, Los Angeles,CA,90001 +171075,Wired Headphones,1,11.99,2019-03-11 06:28:00,692 Dogwood St, San Francisco,CA,94016 +171076,Apple Airpods Headphones,1,150.0,2019-03-04 14:39:00,164 13th St, Los Angeles,CA,90001 +171076,iPhone,1,700.0,2019-03-04 14:39:00,164 13th St, Los Angeles,CA,90001 +171077,27in 4K Gaming Monitor,1,389.99,2019-03-04 20:33:00,791 Jackson St, Seattle,WA,98101 +171078,Lightning Charging Cable,1,14.95,2019-03-19 15:54:00,376 Highland St, San Francisco,CA,94016 +171079,Lightning Charging Cable,2,14.95,2019-03-22 19:18:00,774 10th St, Austin,TX,73301 +171080,AAA Batteries (4-pack),5,2.99,2019-03-26 15:38:00,858 Ridge St, Boston,MA,02215 +171081,AA Batteries (4-pack),3,3.84,2019-03-12 12:42:00,622 Pine St, Los Angeles,CA,90001 +171082,USB-C Charging Cable,2,11.95,2019-03-18 11:12:00,809 Johnson St, Dallas,TX,75001 +171083,Wired Headphones,1,11.99,2019-03-13 07:54:00,196 Jackson St, Austin,TX,73301 +171084,Apple Airpods Headphones,1,150.0,2019-03-21 13:08:00,642 North St, Portland,ME,04101 +171085,Bose SoundSport Headphones,1,99.99,2019-03-25 12:40:00,439 Ridge St, Los Angeles,CA,90001 +171086,Wired Headphones,1,11.99,2019-03-23 22:20:00,203 9th St, New York City,NY,10001 +171087,AA Batteries (4-pack),2,3.84,2019-03-11 17:15:00,221 Spruce St, Los Angeles,CA,90001 +171088,AA Batteries (4-pack),1,3.84,2019-03-31 20:17:00,704 Johnson St, San Francisco,CA,94016 +171089,Lightning Charging Cable,2,14.95,2019-03-16 16:21:00,390 13th St, San Francisco,CA,94016 +171090,27in FHD Monitor,1,149.99,2019-03-12 16:58:00,23 Johnson St, Seattle,WA,98101 +171091,USB-C Charging Cable,1,11.95,2019-03-08 00:30:00,839 Center St, Portland,ME,04101 +171092,34in Ultrawide Monitor,1,379.99,2019-03-27 10:05:00,538 Jackson St, Seattle,WA,98101 +171093,USB-C Charging Cable,1,11.95,2019-03-20 12:01:00,176 Sunset St, Los Angeles,CA,90001 +171094,27in 4K Gaming Monitor,1,389.99,2019-03-16 21:25:00,734 Walnut St, New York City,NY,10001 +171094,Flatscreen TV,1,300.0,2019-03-16 21:25:00,734 Walnut St, New York City,NY,10001 +171095,Wired Headphones,1,11.99,2019-03-31 09:33:00,285 Jefferson St, Los Angeles,CA,90001 +171096,USB-C Charging Cable,1,11.95,2019-03-11 17:04:00,446 Forest St, Dallas,TX,75001 +171097,AAA Batteries (4-pack),1,2.99,2019-03-17 10:04:00,716 Main St, San Francisco,CA,94016 +171098,27in 4K Gaming Monitor,1,389.99,2019-03-07 14:24:00,983 Adams St, San Francisco,CA,94016 +171099,Wired Headphones,1,11.99,2019-03-25 12:13:00,855 Meadow St, New York City,NY,10001 +171100,USB-C Charging Cable,1,11.95,2019-03-04 18:39:00,523 4th St, San Francisco,CA,94016 +171101,Bose SoundSport Headphones,1,99.99,2019-03-30 21:02:00,426 9th St, Boston,MA,02215 +171102,27in 4K Gaming Monitor,1,389.99,2019-03-21 14:19:00,339 Dogwood St, San Francisco,CA,94016 +171103,Wired Headphones,1,11.99,2019-03-22 20:48:00,75 Adams St, Los Angeles,CA,90001 +171104,USB-C Charging Cable,1,11.95,2019-03-29 23:24:00,527 Chestnut St, Seattle,WA,98101 +171105,AAA Batteries (4-pack),1,2.99,2019-03-20 23:22:00,711 Ridge St, San Francisco,CA,94016 +171106,34in Ultrawide Monitor,1,379.99,2019-03-15 12:27:00,110 14th St, Dallas,TX,75001 +171107,Lightning Charging Cable,1,14.95,2019-03-21 13:01:00,268 Maple St, New York City,NY,10001 +171108,AAA Batteries (4-pack),1,2.99,2019-03-03 09:23:00,691 2nd St, New York City,NY,10001 +171109,AAA Batteries (4-pack),1,2.99,2019-03-21 14:00:00,245 Sunset St, Portland,OR,97035 +171110,AA Batteries (4-pack),1,3.84,2019-03-03 19:41:00,82 7th St, Los Angeles,CA,90001 +171111,Lightning Charging Cable,1,14.95,2019-03-29 13:21:00,650 River St, San Francisco,CA,94016 +171112,AA Batteries (4-pack),1,3.84,2019-03-02 16:59:00,47 12th St, Atlanta,GA,30301 +171113,Flatscreen TV,1,300.0,2019-03-04 10:02:00,512 River St, San Francisco,CA,94016 +171114,iPhone,1,700.0,2019-03-07 09:14:00,458 Church St, Dallas,TX,75001 +171114,Lightning Charging Cable,1,14.95,2019-03-07 09:14:00,458 Church St, Dallas,TX,75001 +171115,27in 4K Gaming Monitor,1,389.99,2019-03-19 15:33:00,937 Washington St, Seattle,WA,98101 +171116,Bose SoundSport Headphones,1,99.99,2019-03-27 20:22:00,86 Hill St, San Francisco,CA,94016 +171117,AAA Batteries (4-pack),1,2.99,2019-03-26 18:23:00,265 Lake St, New York City,NY,10001 +171118,AA Batteries (4-pack),3,3.84,2019-03-28 19:18:00,863 Willow St, Los Angeles,CA,90001 +171119,iPhone,1,700.0,2019-03-31 16:00:00,723 6th St, Los Angeles,CA,90001 +171120,AA Batteries (4-pack),1,3.84,2019-03-29 22:57:00,994 Lincoln St, Seattle,WA,98101 +171121,AAA Batteries (4-pack),1,2.99,2019-03-31 18:11:00,652 Highland St, Seattle,WA,98101 +171122,Lightning Charging Cable,1,14.95,2019-03-08 13:07:00,861 Chestnut St, San Francisco,CA,94016 +171123,Wired Headphones,1,11.99,2019-03-14 21:27:00,766 North St, Portland,ME,04101 +171124,LG Washing Machine,1,600.0,2019-03-22 22:45:00,425 Center St, Atlanta,GA,30301 +171125,USB-C Charging Cable,2,11.95,2019-03-13 11:39:00,741 12th St, Dallas,TX,75001 +171126,Bose SoundSport Headphones,1,99.99,2019-03-09 10:22:00,41 2nd St, Seattle,WA,98101 +171127,Lightning Charging Cable,1,14.95,2019-03-01 23:46:00,231 11th St, San Francisco,CA,94016 +171128,USB-C Charging Cable,1,11.95,2019-03-19 12:07:00,492 Hickory St, San Francisco,CA,94016 +171129,AA Batteries (4-pack),1,3.84,2019-03-31 16:57:00,296 9th St, Austin,TX,73301 +171130,iPhone,1,700.0,2019-03-25 11:32:00,956 Hill St, Seattle,WA,98101 +171131,USB-C Charging Cable,1,11.95,2019-03-23 14:32:00,2 14th St, Los Angeles,CA,90001 +171132,AAA Batteries (4-pack),2,2.99,2019-03-11 15:14:00,118 Washington St, San Francisco,CA,94016 +171133,Macbook Pro Laptop,1,1700.0,2019-03-26 13:18:00,207 Church St, Portland,ME,04101 +171134,Wired Headphones,1,11.99,2019-03-09 03:45:00,883 River St, Los Angeles,CA,90001 +171135,USB-C Charging Cable,1,11.95,2019-03-30 13:24:00,73 Wilson St, New York City,NY,10001 +171136,USB-C Charging Cable,1,11.95,2019-03-01 18:57:00,401 Dogwood St, New York City,NY,10001 +171137,iPhone,1,700.0,2019-03-19 16:28:00,211 Chestnut St, Portland,OR,97035 +171138,AAA Batteries (4-pack),2,2.99,2019-03-19 16:33:00,459 Cherry St, New York City,NY,10001 +171139,Bose SoundSport Headphones,1,99.99,2019-03-11 21:28:00,972 Willow St, Austin,TX,73301 +171140,AAA Batteries (4-pack),1,2.99,2019-03-05 15:33:00,633 Center St, Dallas,TX,75001 +171141,USB-C Charging Cable,1,11.95,2019-03-29 19:22:00,156 10th St, San Francisco,CA,94016 +171142,USB-C Charging Cable,2,11.95,2019-03-01 10:34:00,464 Lake St, Los Angeles,CA,90001 +171143,27in 4K Gaming Monitor,1,389.99,2019-03-19 20:41:00,843 12th St, Los Angeles,CA,90001 +171144,Wired Headphones,1,11.99,2019-03-11 14:19:00,883 Hickory St, Boston,MA,02215 +171145,Wired Headphones,1,11.99,2019-03-27 23:09:00,818 River St, Portland,OR,97035 +171146,USB-C Charging Cable,1,11.95,2019-03-25 19:05:00,679 Hill St, New York City,NY,10001 +171147,Apple Airpods Headphones,1,150.0,2019-03-27 09:05:00,317 Ridge St, Dallas,TX,75001 +171148,Bose SoundSport Headphones,1,99.99,2019-03-30 13:15:00,505 14th St, New York City,NY,10001 +171149,34in Ultrawide Monitor,1,379.99,2019-03-01 11:52:00,756 Center St, Dallas,TX,75001 +171150,iPhone,1,700.0,2019-03-03 10:45:00,931 13th St, Los Angeles,CA,90001 +171151,27in 4K Gaming Monitor,1,389.99,2019-03-21 10:55:00,236 Dogwood St, Boston,MA,02215 +171152,AA Batteries (4-pack),1,3.84,2019-03-14 20:54:00,931 Lincoln St, Portland,OR,97035 +171153,Lightning Charging Cable,1,14.95,2019-03-27 23:13:00,510 Spruce St, San Francisco,CA,94016 +171154,27in FHD Monitor,1,149.99,2019-03-10 20:56:00,482 Lincoln St, Boston,MA,02215 +171155,Bose SoundSport Headphones,1,99.99,2019-03-14 13:13:00,827 South St, Austin,TX,73301 +171156,Bose SoundSport Headphones,1,99.99,2019-03-27 09:50:00,977 1st St, Los Angeles,CA,90001 +171157,Wired Headphones,1,11.99,2019-03-29 12:05:00,10 Center St, Atlanta,GA,30301 +171158,27in 4K Gaming Monitor,1,389.99,2019-03-13 09:20:00,454 Church St, Seattle,WA,98101 +171159,AAA Batteries (4-pack),1,2.99,2019-03-19 10:27:00,899 7th St, New York City,NY,10001 +171160,Flatscreen TV,1,300.0,2019-03-22 21:44:00,528 10th St, San Francisco,CA,94016 +171161,AAA Batteries (4-pack),1,2.99,2019-03-23 13:38:00,300 Forest St, Dallas,TX,75001 +171162,AA Batteries (4-pack),3,3.84,2019-03-24 19:49:00,738 Madison St, Los Angeles,CA,90001 +171163,iPhone,1,700.0,2019-03-05 16:29:00,162 North St, San Francisco,CA,94016 +171164,AA Batteries (4-pack),3,3.84,2019-03-21 13:54:00,344 Main St, San Francisco,CA,94016 +171165,Flatscreen TV,1,300.0,2019-03-01 22:26:00,157 Chestnut St, Los Angeles,CA,90001 +171166,AA Batteries (4-pack),2,3.84,2019-03-13 09:11:00,828 Church St, Atlanta,GA,30301 +171167,Lightning Charging Cable,1,14.95,2019-03-03 11:07:00,585 Main St, San Francisco,CA,94016 +171168,Bose SoundSport Headphones,1,99.99,2019-03-09 14:23:00,149 Church St, Dallas,TX,75001 +171169,Bose SoundSport Headphones,1,99.99,2019-03-13 13:27:00,218 Lakeview St, Atlanta,GA,30301 +171170,27in 4K Gaming Monitor,1,389.99,2019-03-23 18:12:00,234 6th St, Seattle,WA,98101 +171171,iPhone,1,700.0,2019-03-24 11:32:00,737 Lakeview St, Boston,MA,02215 +171171,Apple Airpods Headphones,1,150.0,2019-03-24 11:32:00,737 Lakeview St, Boston,MA,02215 +171172,Bose SoundSport Headphones,1,99.99,2019-03-29 18:26:00,140 Cherry St, Boston,MA,02215 +171173,Lightning Charging Cable,1,14.95,2019-03-17 13:47:00,612 Wilson St, San Francisco,CA,94016 +171174,AA Batteries (4-pack),1,3.84,2019-03-16 08:49:00,851 River St, San Francisco,CA,94016 +171175,Wired Headphones,1,11.99,2019-03-07 11:39:00,101 Main St, Dallas,TX,75001 +171176,27in FHD Monitor,1,149.99,2019-03-11 00:13:00,700 Madison St, San Francisco,CA,94016 +171176,27in 4K Gaming Monitor,1,389.99,2019-03-11 00:13:00,700 Madison St, San Francisco,CA,94016 +171177,Macbook Pro Laptop,1,1700.0,2019-03-29 19:04:00,362 1st St, San Francisco,CA,94016 +171178,USB-C Charging Cable,1,11.95,2019-03-17 01:04:00,655 11th St, San Francisco,CA,94016 +171179,Lightning Charging Cable,1,14.95,2019-03-04 11:35:00,336 4th St, Seattle,WA,98101 +171180,Bose SoundSport Headphones,1,99.99,2019-03-29 13:58:00,868 Chestnut St, Atlanta,GA,30301 +171181,Vareebadd Phone,1,400.0,2019-03-15 12:33:00,44 Madison St, Atlanta,GA,30301 +171182,Macbook Pro Laptop,1,1700.0,2019-03-18 18:03:00,952 14th St, Seattle,WA,98101 +171183,AAA Batteries (4-pack),1,2.99,2019-03-27 11:04:00,864 14th St, Atlanta,GA,30301 +171184,Lightning Charging Cable,1,14.95,2019-03-21 21:18:00,879 Center St, Atlanta,GA,30301 +171185,Wired Headphones,1,11.99,2019-03-27 12:33:00,930 Meadow St, Dallas,TX,75001 +171186,ThinkPad Laptop,1,999.99,2019-03-01 10:25:00,736 North St, Dallas,TX,75001 +171187,27in 4K Gaming Monitor,1,389.99,2019-03-16 15:11:00,633 Maple St, San Francisco,CA,94016 +171188,AA Batteries (4-pack),1,3.84,2019-03-11 20:44:00,153 9th St, San Francisco,CA,94016 +171189,Lightning Charging Cable,1,14.95,2019-03-09 18:40:00,774 10th St, Los Angeles,CA,90001 +171190,Lightning Charging Cable,1,14.95,2019-03-25 13:54:00,971 2nd St, Los Angeles,CA,90001 +171191,AAA Batteries (4-pack),4,2.99,2019-03-27 18:17:00,376 Spruce St, San Francisco,CA,94016 +171192,34in Ultrawide Monitor,1,379.99,2019-03-26 20:29:00,193 Johnson St, San Francisco,CA,94016 +171193,20in Monitor,1,109.99,2019-03-20 20:16:00,556 Wilson St, Seattle,WA,98101 +171194,AA Batteries (4-pack),1,3.84,2019-03-15 06:37:00,471 Lake St, San Francisco,CA,94016 +171195,Wired Headphones,1,11.99,2019-03-26 21:11:00,413 2nd St, Dallas,TX,75001 +171196,AA Batteries (4-pack),1,3.84,2019-03-06 19:15:00,783 Johnson St, Seattle,WA,98101 +171197,USB-C Charging Cable,1,11.95,2019-03-23 20:44:00,567 Main St, New York City,NY,10001 +171198,AAA Batteries (4-pack),3,2.99,2019-03-17 15:39:00,991 4th St, Austin,TX,73301 +171199,Lightning Charging Cable,1,14.95,2019-03-31 16:07:00,772 Jackson St, Los Angeles,CA,90001 +171200,Wired Headphones,1,11.99,2019-03-21 01:06:00,542 Chestnut St, San Francisco,CA,94016 +171201,Apple Airpods Headphones,1,150.0,2019-03-20 10:08:00,358 Dogwood St, Boston,MA,02215 +171202,Lightning Charging Cable,1,14.95,2019-03-28 20:37:00,748 Adams St, San Francisco,CA,94016 +171203,USB-C Charging Cable,1,11.95,2019-03-06 09:43:00,169 Jackson St, San Francisco,CA,94016 +171204,USB-C Charging Cable,1,11.95,2019-03-19 14:34:00,719 Walnut St, Los Angeles,CA,90001 +171205,iPhone,1,700.0,2019-03-19 16:20:00,249 6th St, San Francisco,CA,94016 +171206,27in 4K Gaming Monitor,1,389.99,2019-03-13 16:09:00,374 Cedar St, Boston,MA,02215 +171207,Apple Airpods Headphones,1,150.0,2019-03-25 12:11:00,514 6th St, Dallas,TX,75001 +171208,34in Ultrawide Monitor,1,379.99,2019-03-19 19:49:00,752 Center St, Los Angeles,CA,90001 +171209,USB-C Charging Cable,1,11.95,2019-03-17 14:37:00,806 12th St, Los Angeles,CA,90001 +171210,Google Phone,1,600.0,2019-03-11 13:28:00,928 10th St, San Francisco,CA,94016 +171211,34in Ultrawide Monitor,1,379.99,2019-03-10 11:35:00,337 Meadow St, San Francisco,CA,94016 +171212,Lightning Charging Cable,1,14.95,2019-03-24 22:33:00,207 Washington St, Atlanta,GA,30301 +171213,USB-C Charging Cable,1,11.95,2019-03-21 17:52:00,343 14th St, Los Angeles,CA,90001 +171214,AA Batteries (4-pack),1,3.84,2019-03-06 17:39:00,907 Willow St, Boston,MA,02215 +171215,27in FHD Monitor,1,149.99,2019-03-22 18:36:00,752 Wilson St, San Francisco,CA,94016 +171216,Wired Headphones,1,11.99,2019-03-19 20:30:00,392 Elm St, Boston,MA,02215 +171217,USB-C Charging Cable,3,11.95,2019-03-19 18:46:00,737 North St, Los Angeles,CA,90001 +171218,USB-C Charging Cable,1,11.95,2019-03-01 04:42:00,498 5th St, Austin,TX,73301 +171219,USB-C Charging Cable,1,11.95,2019-03-20 20:50:00,879 Dogwood St, Los Angeles,CA,90001 +171220,AAA Batteries (4-pack),1,2.99,2019-03-05 14:59:00,776 11th St, New York City,NY,10001 +171221,AAA Batteries (4-pack),1,2.99,2019-03-18 13:56:00,609 Spruce St, Seattle,WA,98101 +171222,Wired Headphones,1,11.99,2019-03-25 08:28:00,961 Pine St, Atlanta,GA,30301 +171223,ThinkPad Laptop,1,999.99,2019-03-08 23:49:00,818 Jefferson St, Dallas,TX,75001 +171224,AAA Batteries (4-pack),2,2.99,2019-03-02 01:43:00,440 Spruce St, Atlanta,GA,30301 +171225,Macbook Pro Laptop,1,1700.0,2019-03-31 08:28:00,425 Forest St, Austin,TX,73301 +171226,Google Phone,1,600.0,2019-03-15 21:05:00,738 1st St, San Francisco,CA,94016 +171226,USB-C Charging Cable,1,11.95,2019-03-15 21:05:00,738 1st St, San Francisco,CA,94016 +171227,USB-C Charging Cable,1,11.95,2019-03-21 18:03:00,791 Madison St, Portland,OR,97035 +171228,AAA Batteries (4-pack),1,2.99,2019-03-09 20:20:00,491 Chestnut St, Boston,MA,02215 +171229,27in FHD Monitor,1,149.99,2019-03-28 20:26:00,419 8th St, Atlanta,GA,30301 +171230,34in Ultrawide Monitor,1,379.99,2019-03-30 23:18:00,682 Park St, San Francisco,CA,94016 +171231,AAA Batteries (4-pack),1,2.99,2019-03-17 16:59:00,996 Jackson St, Seattle,WA,98101 +171232,27in FHD Monitor,1,149.99,2019-03-27 16:44:00,842 Church St, Los Angeles,CA,90001 +171233,AAA Batteries (4-pack),2,2.99,2019-03-20 06:59:00,867 West St, San Francisco,CA,94016 +171234,AAA Batteries (4-pack),1,2.99,2019-03-16 17:17:00,448 Walnut St, New York City,NY,10001 +171235,AAA Batteries (4-pack),1,2.99,2019-03-16 18:28:00,305 14th St, Boston,MA,02215 +171236,Bose SoundSport Headphones,1,99.99,2019-03-07 10:21:00,395 1st St, Dallas,TX,75001 +171237,AA Batteries (4-pack),1,3.84,2019-03-19 00:12:00,969 Hickory St, Los Angeles,CA,90001 +171238,Google Phone,1,600.0,2019-03-23 06:32:00,555 North St, Dallas,TX,75001 +171239,27in FHD Monitor,1,149.99,2019-03-30 15:12:00,582 Elm St, Atlanta,GA,30301 +171240,Apple Airpods Headphones,1,150.0,2019-03-23 06:45:00,971 Highland St, Portland,OR,97035 +171241,AAA Batteries (4-pack),2,2.99,2019-03-26 21:07:00,751 5th St, Boston,MA,02215 +171242,AAA Batteries (4-pack),2,2.99,2019-03-25 20:28:00,662 10th St, Los Angeles,CA,90001 +171243,Apple Airpods Headphones,1,150.0,2019-03-17 09:25:00,527 Main St, Seattle,WA,98101 +171244,Google Phone,1,600.0,2019-03-11 19:25:00,176 14th St, Portland,ME,04101 +171245,USB-C Charging Cable,1,11.95,2019-03-10 20:19:00,622 Wilson St, Los Angeles,CA,90001 +171246,Lightning Charging Cable,1,14.95,2019-03-30 04:37:00,864 Cherry St, Portland,OR,97035 +171247,Lightning Charging Cable,1,14.95,2019-03-20 01:03:00,686 Ridge St, San Francisco,CA,94016 +171248,Wired Headphones,1,11.99,2019-03-03 18:44:00,400 9th St, San Francisco,CA,94016 +171249,27in 4K Gaming Monitor,1,389.99,2019-03-17 06:15:00,183 11th St, New York City,NY,10001 +171250,34in Ultrawide Monitor,1,379.99,2019-03-14 22:19:00,148 Spruce St, Dallas,TX,75001 +171251,Apple Airpods Headphones,1,150.0,2019-03-13 14:01:00,281 10th St, San Francisco,CA,94016 +171252,AAA Batteries (4-pack),1,2.99,2019-03-11 17:19:00,60 Washington St, Dallas,TX,75001 +171253,Lightning Charging Cable,1,14.95,2019-03-25 23:40:00,782 12th St, San Francisco,CA,94016 +171254,AAA Batteries (4-pack),1,2.99,2019-03-31 08:57:00,322 Main St, San Francisco,CA,94016 +171255,AAA Batteries (4-pack),1,2.99,2019-03-14 13:44:00,850 Chestnut St, Portland,OR,97035 +171256,Wired Headphones,1,11.99,2019-03-02 20:45:00,804 Park St, Dallas,TX,75001 +171257,Bose SoundSport Headphones,1,99.99,2019-03-04 08:07:00,706 South St, Boston,MA,02215 +171258,AAA Batteries (4-pack),1,2.99,2019-03-14 09:16:00,280 South St, Los Angeles,CA,90001 +171259,AAA Batteries (4-pack),1,2.99,2019-03-16 08:39:00,217 Lincoln St, Boston,MA,02215 +171260,AAA Batteries (4-pack),1,2.99,2019-03-30 16:57:00,963 Washington St, San Francisco,CA,94016 +171261,Apple Airpods Headphones,1,150.0,2019-03-31 19:53:00,704 9th St, Los Angeles,CA,90001 +171262,iPhone,1,700.0,2019-03-06 20:15:00,579 11th St, San Francisco,CA,94016 +171263,Lightning Charging Cable,1,14.95,2019-03-29 17:30:00,385 6th St, Los Angeles,CA,90001 +171264,iPhone,1,700.0,2019-03-08 19:04:00,48 Washington St, New York City,NY,10001 +171265,Bose SoundSport Headphones,1,99.99,2019-03-27 13:22:00,468 Park St, Austin,TX,73301 +171266,Macbook Pro Laptop,1,1700.0,2019-03-31 08:01:00,554 Ridge St, San Francisco,CA,94016 +171267,Apple Airpods Headphones,1,150.0,2019-03-16 12:35:00,74 Lakeview St, New York City,NY,10001 +171268,AA Batteries (4-pack),1,3.84,2019-03-23 15:50:00,617 Ridge St, Seattle,WA,98101 +171269,AA Batteries (4-pack),1,3.84,2019-03-23 13:31:00,539 Washington St, New York City,NY,10001 +171270,USB-C Charging Cable,1,11.95,2019-03-05 13:38:00,346 7th St, New York City,NY,10001 +171271,Wired Headphones,1,11.99,2019-03-02 07:25:00,822 2nd St, Los Angeles,CA,90001 +171272,AAA Batteries (4-pack),1,2.99,2019-03-11 13:15:00,644 Willow St, Los Angeles,CA,90001 +171273,Apple Airpods Headphones,1,150.0,2019-03-26 00:01:00,454 Willow St, Atlanta,GA,30301 +171274,34in Ultrawide Monitor,1,379.99,2019-03-17 16:27:00,839 Walnut St, San Francisco,CA,94016 +171275,27in FHD Monitor,1,149.99,2019-03-22 12:17:00,775 Cedar St, Los Angeles,CA,90001 +171276,AAA Batteries (4-pack),1,2.99,2019-03-20 23:17:00,303 River St, San Francisco,CA,94016 +171277,iPhone,1,700.0,2019-03-19 20:57:00,566 Hill St, San Francisco,CA,94016 +171277,Lightning Charging Cable,1,14.95,2019-03-19 20:57:00,566 Hill St, San Francisco,CA,94016 +171278,Bose SoundSport Headphones,1,99.99,2019-03-08 05:59:00,149 13th St, New York City,NY,10001 +171279,27in FHD Monitor,1,149.99,2019-03-17 16:35:00,362 Cherry St, San Francisco,CA,94016 +171280,Wired Headphones,1,11.99,2019-03-04 17:43:00,919 Johnson St, San Francisco,CA,94016 +171281,USB-C Charging Cable,1,11.95,2019-03-31 21:10:00,37 Lake St, Portland,OR,97035 +171282,Flatscreen TV,1,300.0,2019-03-11 13:31:00,719 Willow St, San Francisco,CA,94016 +171283,Google Phone,1,600.0,2019-03-21 11:06:00,614 North St, Atlanta,GA,30301 +171284,AA Batteries (4-pack),1,3.84,2019-03-26 09:15:00,397 Cedar St, San Francisco,CA,94016 +171285,Wired Headphones,1,11.99,2019-03-27 18:40:00,878 Pine St, Boston,MA,02215 +171286,27in 4K Gaming Monitor,1,389.99,2019-03-31 19:48:00,775 Spruce St, Atlanta,GA,30301 +171287,LG Washing Machine,1,600.0,2019-03-30 22:33:00,181 Lakeview St, San Francisco,CA,94016 +171288,AAA Batteries (4-pack),1,2.99,2019-03-03 01:05:00,180 Washington St, Portland,OR,97035 +171289,Bose SoundSport Headphones,1,99.99,2019-03-13 20:30:00,481 9th St, Seattle,WA,98101 +171290,Wired Headphones,1,11.99,2019-03-12 15:43:00,28 Maple St, Los Angeles,CA,90001 +171291,Bose SoundSport Headphones,1,99.99,2019-03-04 14:45:00,883 8th St, Dallas,TX,75001 +171292,20in Monitor,1,109.99,2019-03-18 15:50:00,257 14th St, San Francisco,CA,94016 +171293,Lightning Charging Cable,2,14.95,2019-03-31 09:03:00,236 2nd St, Dallas,TX,75001 +171294,27in FHD Monitor,1,149.99,2019-03-14 10:10:00,177 13th St, Portland,ME,04101 +171295,Lightning Charging Cable,1,14.95,2019-03-31 11:19:00,633 Hickory St, San Francisco,CA,94016 +171296,Macbook Pro Laptop,1,1700.0,2019-03-04 14:49:00,751 6th St, Portland,OR,97035 +171297,Apple Airpods Headphones,1,150.0,2019-03-30 10:25:00,228 Walnut St, San Francisco,CA,94016 +171298,AA Batteries (4-pack),1,3.84,2019-03-21 16:42:00,609 Wilson St, Seattle,WA,98101 +171299,Apple Airpods Headphones,1,150.0,2019-03-02 16:23:00,387 Wilson St, Seattle,WA,98101 +171300,27in 4K Gaming Monitor,1,389.99,2019-03-08 13:46:00,600 Jefferson St, Seattle,WA,98101 +171301,27in 4K Gaming Monitor,1,389.99,2019-03-31 19:11:00,666 Hickory St, New York City,NY,10001 +171302,Lightning Charging Cable,1,14.95,2019-03-31 22:17:00,840 Pine St, Los Angeles,CA,90001 +171303,Wired Headphones,1,11.99,2019-03-20 18:31:00,379 West St, Seattle,WA,98101 +171304,AAA Batteries (4-pack),1,2.99,2019-03-12 13:07:00,941 Lincoln St, Portland,OR,97035 +171305,Macbook Pro Laptop,1,1700.0,2019-03-07 22:07:00,147 Main St, Seattle,WA,98101 +171306,Bose SoundSport Headphones,1,99.99,2019-03-06 13:19:00,142 8th St, New York City,NY,10001 +171307,AA Batteries (4-pack),1,3.84,2019-03-18 20:02:00,649 Cherry St, Boston,MA,02215 +171308,Apple Airpods Headphones,1,150.0,2019-03-02 11:11:00,483 Adams St, Boston,MA,02215 +171309,Lightning Charging Cable,1,14.95,2019-03-15 13:35:00,215 Meadow St, San Francisco,CA,94016 +171310,Wired Headphones,2,11.99,2019-03-15 11:43:00,129 Spruce St, Seattle,WA,98101 +171311,Apple Airpods Headphones,1,150.0,2019-03-07 13:45:00,626 Dogwood St, San Francisco,CA,94016 +171312,ThinkPad Laptop,1,999.99,2019-03-11 12:07:00,354 Dogwood St, San Francisco,CA,94016 +171313,Google Phone,1,600.0,2019-03-27 13:24:00,999 Spruce St, New York City,NY,10001 +171314,Bose SoundSport Headphones,1,99.99,2019-03-18 22:48:00,506 Park St, New York City,NY,10001 +171315,ThinkPad Laptop,1,999.99,2019-03-22 20:12:00,973 9th St, Los Angeles,CA,90001 +171316,AA Batteries (4-pack),2,3.84,2019-03-01 16:35:00,835 South St, Atlanta,GA,30301 +171317,Bose SoundSport Headphones,1,99.99,2019-03-21 04:02:00,125 Lake St, Boston,MA,02215 +171318,Bose SoundSport Headphones,1,99.99,2019-03-11 13:05:00,478 Cherry St, Austin,TX,73301 +171319,Apple Airpods Headphones,1,150.0,2019-03-19 14:50:00,824 River St, Los Angeles,CA,90001 +171320,AAA Batteries (4-pack),1,2.99,2019-03-22 12:28:00,563 9th St, Los Angeles,CA,90001 +171321,USB-C Charging Cable,1,11.95,2019-03-20 20:05:00,592 2nd St, New York City,NY,10001 +171322,20in Monitor,1,109.99,2019-03-15 13:45:00,357 Meadow St, Portland,ME,04101 +171323,USB-C Charging Cable,1,11.95,2019-03-10 08:50:00,66 Meadow St, New York City,NY,10001 +171324,USB-C Charging Cable,1,11.95,2019-03-11 15:37:00,393 Chestnut St, New York City,NY,10001 +171325,Wired Headphones,1,11.99,2019-03-17 19:20:00,196 Church St, Dallas,TX,75001 +171326,Bose SoundSport Headphones,1,99.99,2019-03-27 22:08:00,815 Park St, Boston,MA,02215 +171327,Lightning Charging Cable,1,14.95,2019-03-14 05:08:00,518 Forest St, Atlanta,GA,30301 +171328,Google Phone,1,600.0,2019-03-14 16:40:00,489 4th St, Los Angeles,CA,90001 +171329,USB-C Charging Cable,2,11.95,2019-03-22 11:54:00,720 Church St, Boston,MA,02215 +171330,27in FHD Monitor,1,149.99,2019-03-27 00:47:00,552 8th St, Austin,TX,73301 +171331,AAA Batteries (4-pack),2,2.99,2019-03-19 13:05:00,60 Highland St, San Francisco,CA,94016 +171332,AA Batteries (4-pack),1,3.84,2019-03-23 11:29:00,943 Spruce St, Los Angeles,CA,90001 +171333,Macbook Pro Laptop,1,1700.0,2019-03-25 16:50:00,198 Spruce St, Portland,ME,04101 +171334,iPhone,1,700.0,2019-03-17 12:10:00,611 Center St, Dallas,TX,75001 +171335,Apple Airpods Headphones,1,150.0,2019-03-17 01:30:00,16 Highland St, Los Angeles,CA,90001 +171336,USB-C Charging Cable,1,11.95,2019-03-28 20:05:00,783 Forest St, Los Angeles,CA,90001 +171337,Apple Airpods Headphones,1,150.0,2019-03-20 12:33:00,781 Wilson St, San Francisco,CA,94016 +171338,Lightning Charging Cable,1,14.95,2019-03-17 17:28:00,973 Maple St, Atlanta,GA,30301 +171339,AA Batteries (4-pack),1,3.84,2019-03-05 14:22:00,738 4th St, Portland,ME,04101 +171340,Bose SoundSport Headphones,1,99.99,2019-03-06 17:13:00,9 6th St, San Francisco,CA,94016 +171341,27in FHD Monitor,1,149.99,2019-03-05 14:19:00,395 Wilson St, Los Angeles,CA,90001 +171342,Bose SoundSport Headphones,1,99.99,2019-03-13 15:02:00,745 Walnut St, Seattle,WA,98101 +171343,Wired Headphones,1,11.99,2019-03-06 17:16:00,773 10th St, Los Angeles,CA,90001 +171344,AA Batteries (4-pack),1,3.84,2019-03-29 15:41:00,895 Cherry St, Portland,OR,97035 +171345,USB-C Charging Cable,1,11.95,2019-03-02 10:55:00,839 Forest St, San Francisco,CA,94016 +171346,AA Batteries (4-pack),1,3.84,2019-03-20 12:57:00,613 Willow St, Los Angeles,CA,90001 +171347,AAA Batteries (4-pack),1,2.99,2019-03-15 19:12:00,210 Johnson St, Dallas,TX,75001 +171348,Google Phone,1,600.0,2019-03-26 22:33:00,419 Willow St, Los Angeles,CA,90001 +171349,Wired Headphones,1,11.99,2019-03-29 10:59:00,378 Wilson St, Los Angeles,CA,90001 +171350,AAA Batteries (4-pack),1,2.99,2019-03-25 11:16:00,701 7th St, New York City,NY,10001 +171351,Lightning Charging Cable,1,14.95,2019-03-18 14:07:00,505 Washington St, Atlanta,GA,30301 +171352,AA Batteries (4-pack),1,3.84,2019-03-11 20:14:00,148 Church St, Boston,MA,02215 +171353,27in 4K Gaming Monitor,1,389.99,2019-03-29 14:49:00,700 6th St, Dallas,TX,75001 +171354,Bose SoundSport Headphones,1,99.99,2019-03-08 18:30:00,87 10th St, Boston,MA,02215 +171355,Apple Airpods Headphones,1,150.0,2019-03-26 16:28:00,255 11th St, Atlanta,GA,30301 +171356,Apple Airpods Headphones,1,150.0,2019-03-07 22:36:00,74 Lakeview St, Los Angeles,CA,90001 +171357,Wired Headphones,1,11.99,2019-03-03 10:42:00,676 Cedar St, Seattle,WA,98101 +171358,Lightning Charging Cable,1,14.95,2019-03-07 11:28:00,735 1st St, San Francisco,CA,94016 +171359,Lightning Charging Cable,1,14.95,2019-03-30 19:48:00,981 River St, San Francisco,CA,94016 +171360,Vareebadd Phone,1,400.0,2019-03-26 13:10:00,124 Spruce St, San Francisco,CA,94016 +171361,Macbook Pro Laptop,1,1700.0,2019-03-26 17:08:00,431 Main St, New York City,NY,10001 +171362,USB-C Charging Cable,1,11.95,2019-03-01 08:45:00,810 North St, San Francisco,CA,94016 +171363,Bose SoundSport Headphones,1,99.99,2019-03-05 10:36:00,69 Jackson St, Los Angeles,CA,90001 +171364,Bose SoundSport Headphones,1,99.99,2019-03-06 20:14:00,420 Main St, Atlanta,GA,30301 +171365,Lightning Charging Cable,1,14.95,2019-03-25 13:25:00,40 Wilson St, Seattle,WA,98101 +171366,iPhone,1,700.0,2019-03-29 14:51:00,170 Ridge St, Atlanta,GA,30301 +171367,USB-C Charging Cable,1,11.95,2019-03-13 17:44:00,245 8th St, Seattle,WA,98101 +171368,USB-C Charging Cable,1,11.95,2019-03-17 14:43:00,882 13th St, Los Angeles,CA,90001 +171369,USB-C Charging Cable,1,11.95,2019-03-02 01:03:00,821 2nd St, New York City,NY,10001 +171370,27in FHD Monitor,1,149.99,2019-03-27 16:53:00,945 Cedar St, New York City,NY,10001 +171371,Lightning Charging Cable,1,14.95,2019-03-01 19:28:00,59 Adams St, Austin,TX,73301 +171372,34in Ultrawide Monitor,1,379.99,2019-03-18 21:22:00,180 10th St, Los Angeles,CA,90001 +171373,AA Batteries (4-pack),2,3.84,2019-03-23 22:20:00,49 Sunset St, Austin,TX,73301 +171374,AA Batteries (4-pack),2,3.84,2019-03-31 18:00:00,482 Center St, San Francisco,CA,94016 +171375,Google Phone,1,600.0,2019-03-19 21:14:00,598 Lakeview St, San Francisco,CA,94016 +171375,USB-C Charging Cable,1,11.95,2019-03-19 21:14:00,598 Lakeview St, San Francisco,CA,94016 +171376,Apple Airpods Headphones,1,150.0,2019-03-31 07:50:00,789 River St, Atlanta,GA,30301 +171377,Wired Headphones,1,11.99,2019-03-04 17:46:00,114 Lincoln St, San Francisco,CA,94016 +171378,Apple Airpods Headphones,1,150.0,2019-03-06 15:48:00,53 Pine St, Los Angeles,CA,90001 +171379,AA Batteries (4-pack),1,3.84,2019-03-21 21:55:00,174 Adams St, Los Angeles,CA,90001 +171380,USB-C Charging Cable,1,11.95,2019-03-22 15:21:00,401 South St, Portland,OR,97035 +171381,AA Batteries (4-pack),1,3.84,2019-03-02 13:48:00,624 Jefferson St, Portland,OR,97035 +171382,AAA Batteries (4-pack),1,2.99,2019-03-19 09:10:00,592 14th St, San Francisco,CA,94016 +171383,27in FHD Monitor,1,149.99,2019-03-12 11:17:00,962 West St, New York City,NY,10001 +171384,AAA Batteries (4-pack),1,2.99,2019-03-29 07:34:00,827 Cedar St, Los Angeles,CA,90001 +171385,34in Ultrawide Monitor,1,379.99,2019-03-24 23:41:00,653 6th St, Seattle,WA,98101 +171386,Lightning Charging Cable,1,14.95,2019-03-03 13:21:00,547 Wilson St, Boston,MA,02215 +171387,AA Batteries (4-pack),1,3.84,2019-03-25 16:34:00,404 Hickory St, New York City,NY,10001 +171388,iPhone,1,700.0,2019-03-30 10:51:00,448 Forest St, San Francisco,CA,94016 +171389,AAA Batteries (4-pack),1,2.99,2019-03-03 09:14:00,643 Elm St, Boston,MA,02215 +171390,Apple Airpods Headphones,1,150.0,2019-03-29 09:00:00,44 Chestnut St, New York City,NY,10001 +171391,Wired Headphones,1,11.99,2019-03-21 14:07:00,449 Forest St, San Francisco,CA,94016 +171392,AA Batteries (4-pack),2,3.84,2019-03-24 18:42:00,973 2nd St, San Francisco,CA,94016 +171393,27in FHD Monitor,1,149.99,2019-03-01 19:06:00,806 2nd St, San Francisco,CA,94016 +171394,Wired Headphones,1,11.99,2019-03-07 13:59:00,457 Church St, New York City,NY,10001 +171395,Macbook Pro Laptop,1,1700.0,2019-03-09 14:20:00,636 Lake St, Atlanta,GA,30301 +171396,27in FHD Monitor,1,149.99,2019-03-28 21:00:00,787 Center St, Seattle,WA,98101 +171397,AAA Batteries (4-pack),1,2.99,2019-03-08 11:53:00,80 Park St, Austin,TX,73301 +171398,AA Batteries (4-pack),1,3.84,2019-03-28 12:35:00,373 Dogwood St, Los Angeles,CA,90001 +171399,Bose SoundSport Headphones,1,99.99,2019-03-23 09:02:00,608 Highland St, New York City,NY,10001 +171400,iPhone,1,700.0,2019-03-08 19:20:00,267 7th St, San Francisco,CA,94016 +171400,Apple Airpods Headphones,1,150.0,2019-03-08 19:20:00,267 7th St, San Francisco,CA,94016 +171401,iPhone,1,700.0,2019-03-16 13:40:00,457 North St, Boston,MA,02215 +171402,27in FHD Monitor,1,149.99,2019-03-01 22:49:00,282 Center St, San Francisco,CA,94016 +171403,AA Batteries (4-pack),1,3.84,2019-03-14 21:33:00,437 Cherry St, New York City,NY,10001 +171404,20in Monitor,1,109.99,2019-03-18 00:09:00,146 Lake St, Atlanta,GA,30301 +171405,AA Batteries (4-pack),1,3.84,2019-03-23 22:27:00,102 Chestnut St, Boston,MA,02215 +171406,AAA Batteries (4-pack),1,2.99,2019-03-18 22:18:00,758 River St, Boston,MA,02215 +171407,27in 4K Gaming Monitor,1,389.99,2019-03-07 10:46:00,985 Johnson St, San Francisco,CA,94016 +171408,27in 4K Gaming Monitor,1,389.99,2019-03-08 02:33:00,276 7th St, Los Angeles,CA,90001 +171409,Lightning Charging Cable,1,14.95,2019-03-30 12:06:00,777 Pine St, Seattle,WA,98101 +171410,AAA Batteries (4-pack),1,2.99,2019-03-18 23:13:00,762 5th St, Seattle,WA,98101 +171411,USB-C Charging Cable,1,11.95,2019-03-02 06:49:00,659 Dogwood St, Los Angeles,CA,90001 +171412,Bose SoundSport Headphones,1,99.99,2019-03-15 19:03:00,948 Lake St, Los Angeles,CA,90001 +171413,Google Phone,1,600.0,2019-03-07 20:43:00,336 Sunset St, New York City,NY,10001 +171414,Apple Airpods Headphones,1,150.0,2019-03-30 14:49:00,153 Hill St, Dallas,TX,75001 +171415,iPhone,1,700.0,2019-03-09 14:57:00,454 Spruce St, New York City,NY,10001 +171416,34in Ultrawide Monitor,1,379.99,2019-03-31 06:48:00,575 Church St, Boston,MA,02215 +171417,AA Batteries (4-pack),1,3.84,2019-03-09 10:57:00,213 Lake St, San Francisco,CA,94016 +171417,34in Ultrawide Monitor,1,379.99,2019-03-09 10:57:00,213 Lake St, San Francisco,CA,94016 +171418,Apple Airpods Headphones,1,150.0,2019-03-11 19:09:00,729 Wilson St, Los Angeles,CA,90001 +171419,USB-C Charging Cable,1,11.95,2019-03-24 13:13:00,108 14th St, San Francisco,CA,94016 +171420,27in FHD Monitor,1,149.99,2019-03-23 17:57:00,872 12th St, Dallas,TX,75001 +171421,20in Monitor,1,109.99,2019-03-04 13:04:00,544 Pine St, Atlanta,GA,30301 +171422,Wired Headphones,1,11.99,2019-03-08 14:59:00,540 Sunset St, Portland,OR,97035 +171423,iPhone,1,700.0,2019-03-15 15:12:00,80 Cedar St, New York City,NY,10001 +171424,USB-C Charging Cable,1,11.95,2019-03-01 21:54:00,213 Cherry St, Seattle,WA,98101 +171425,AA Batteries (4-pack),1,3.84,2019-03-23 08:42:00,568 8th St, New York City,NY,10001 +171426,Lightning Charging Cable,1,14.95,2019-03-25 15:48:00,470 Hill St, Austin,TX,73301 +171427,AA Batteries (4-pack),2,3.84,2019-03-29 22:21:00,577 7th St, Los Angeles,CA,90001 +171428,34in Ultrawide Monitor,1,379.99,2019-03-09 10:19:00,211 Adams St, Los Angeles,CA,90001 +171429,AA Batteries (4-pack),2,3.84,2019-03-01 15:18:00,547 9th St, Los Angeles,CA,90001 +171430,Google Phone,1,600.0,2019-03-16 22:16:00,533 13th St, Los Angeles,CA,90001 +171431,Bose SoundSport Headphones,1,99.99,2019-03-29 13:02:00,540 Meadow St, Los Angeles,CA,90001 +171432,Wired Headphones,1,11.99,2019-03-06 12:02:00,932 Elm St, San Francisco,CA,94016 +171433,Wired Headphones,1,11.99,2019-03-27 12:06:00,845 Johnson St, San Francisco,CA,94016 +171434,20in Monitor,1,109.99,2019-03-17 14:23:00,630 4th St, San Francisco,CA,94016 +171435,Lightning Charging Cable,1,14.95,2019-03-18 09:42:00,780 9th St, Boston,MA,02215 +171436,Apple Airpods Headphones,1,150.0,2019-03-26 16:37:00,519 Park St, Dallas,TX,75001 +171437,27in FHD Monitor,1,149.99,2019-03-05 17:57:00,175 Madison St, Boston,MA,02215 +171438,AA Batteries (4-pack),2,3.84,2019-03-18 23:25:00,480 West St, Boston,MA,02215 +171439,AA Batteries (4-pack),1,3.84,2019-03-15 21:10:00,168 Lakeview St, Seattle,WA,98101 +171440,USB-C Charging Cable,1,11.95,2019-03-07 14:27:00,281 Cedar St, Austin,TX,73301 +171441,iPhone,1,700.0,2019-03-26 20:29:00,707 6th St, San Francisco,CA,94016 +171442,ThinkPad Laptop,1,999.99,2019-03-11 14:51:00,519 Meadow St, Los Angeles,CA,90001 +171443,20in Monitor,1,109.99,2019-03-19 12:07:00,136 Spruce St, New York City,NY,10001 +171444,Macbook Pro Laptop,1,1700.0,2019-03-29 15:26:00,860 Walnut St, New York City,NY,10001 +171445,Google Phone,1,600.0,2019-03-24 18:32:00,387 Dogwood St, Los Angeles,CA,90001 +171446,USB-C Charging Cable,1,11.95,2019-03-27 21:24:00,115 North St, Seattle,WA,98101 +171447,Bose SoundSport Headphones,1,99.99,2019-03-28 18:13:00,241 Sunset St, Dallas,TX,75001 +171448,AA Batteries (4-pack),1,3.84,2019-03-20 21:13:00,317 7th St, New York City,NY,10001 +171449,Apple Airpods Headphones,1,150.0,2019-03-30 21:25:00,156 Lincoln St, Atlanta,GA,30301 +171450,Wired Headphones,1,11.99,2019-03-22 09:23:00,387 Park St, San Francisco,CA,94016 +171451,Flatscreen TV,1,300.0,2019-03-06 14:51:00,735 River St, Dallas,TX,75001 +171452,27in FHD Monitor,1,149.99,2019-03-21 19:10:00,774 Elm St, Boston,MA,02215 +171453,Apple Airpods Headphones,1,150.0,2019-03-06 08:41:00,895 13th St, San Francisco,CA,94016 +171454,AAA Batteries (4-pack),1,2.99,2019-03-23 00:33:00,239 8th St, San Francisco,CA,94016 +171455,Vareebadd Phone,1,400.0,2019-03-06 08:39:00,641 Pine St, Los Angeles,CA,90001 +171456,Wired Headphones,1,11.99,2019-03-02 21:33:00,20 Ridge St, Seattle,WA,98101 +171457,Wired Headphones,1,11.99,2019-03-03 22:27:00,785 Park St, Portland,OR,97035 +171458,Lightning Charging Cable,1,14.95,2019-03-09 01:05:00,819 Johnson St, San Francisco,CA,94016 +171459,Lightning Charging Cable,1,14.95,2019-03-13 10:57:00,427 Elm St, San Francisco,CA,94016 +171460,Apple Airpods Headphones,1,150.0,2019-03-18 05:48:00,334 Jackson St, San Francisco,CA,94016 +171461,Lightning Charging Cable,1,14.95,2019-03-07 06:39:00,855 8th St, Austin,TX,73301 +171462,Lightning Charging Cable,1,14.95,2019-03-06 16:20:00,622 Cedar St, Atlanta,GA,30301 +171463,ThinkPad Laptop,1,999.99,2019-03-21 14:21:00,178 South St, Austin,TX,73301 +171464,AAA Batteries (4-pack),2,2.99,2019-03-06 08:16:00,169 Jackson St, San Francisco,CA,94016 +171465,Lightning Charging Cable,1,14.95,2019-03-21 19:50:00,822 Washington St, Atlanta,GA,30301 +171466,Bose SoundSport Headphones,1,99.99,2019-03-05 15:45:00,594 Lakeview St, San Francisco,CA,94016 +171467,Apple Airpods Headphones,1,150.0,2019-03-22 12:04:00,776 Chestnut St, Portland,ME,04101 +171468,Wired Headphones,1,11.99,2019-03-07 13:42:00,519 Cherry St, Boston,MA,02215 +171469,Wired Headphones,1,11.99,2019-03-22 21:00:00,811 Pine St, San Francisco,CA,94016 +171470,AA Batteries (4-pack),1,3.84,2019-03-31 09:18:00,34 14th St, Boston,MA,02215 +171471,USB-C Charging Cable,2,11.95,2019-03-25 18:34:00,820 Hickory St, San Francisco,CA,94016 +171472,Google Phone,1,600.0,2019-03-06 19:43:00,422 River St, Dallas,TX,75001 +171473,Bose SoundSport Headphones,1,99.99,2019-03-17 16:31:00,594 4th St, New York City,NY,10001 +171474,Lightning Charging Cable,1,14.95,2019-03-28 08:45:00,411 Walnut St, Los Angeles,CA,90001 +171475,AAA Batteries (4-pack),1,2.99,2019-03-11 09:22:00,75 Hickory St, San Francisco,CA,94016 +171476,Wired Headphones,1,11.99,2019-03-17 12:17:00,872 Johnson St, San Francisco,CA,94016 +171477,Lightning Charging Cable,1,14.95,2019-03-21 03:04:00,149 14th St, Los Angeles,CA,90001 +171478,ThinkPad Laptop,1,999.99,2019-03-17 10:59:00,731 Washington St, Dallas,TX,75001 +171479,Lightning Charging Cable,1,14.95,2019-03-20 19:36:00,987 11th St, Boston,MA,02215 +171480,AAA Batteries (4-pack),1,2.99,2019-03-22 16:03:00,182 Sunset St, Boston,MA,02215 +171481,Apple Airpods Headphones,1,150.0,2019-03-28 23:40:00,423 Chestnut St, Atlanta,GA,30301 +171482,Lightning Charging Cable,1,14.95,2019-03-05 22:42:00,2 Willow St, Dallas,TX,75001 +171483,Wired Headphones,1,11.99,2019-03-16 20:08:00,690 Johnson St, San Francisco,CA,94016 +171484,USB-C Charging Cable,1,11.95,2019-03-21 07:22:00,333 4th St, Dallas,TX,75001 +171485,Apple Airpods Headphones,1,150.0,2019-03-28 08:00:00,852 11th St, Atlanta,GA,30301 +171486,Flatscreen TV,1,300.0,2019-03-13 18:38:00,968 7th St, New York City,NY,10001 +171487,ThinkPad Laptop,1,999.99,2019-03-20 12:54:00,351 Spruce St, Austin,TX,73301 +171488,27in FHD Monitor,1,149.99,2019-03-30 20:35:00,777 Hill St, Portland,OR,97035 +171489,Google Phone,1,600.0,2019-03-06 11:39:00,281 8th St, Boston,MA,02215 +171490,USB-C Charging Cable,1,11.95,2019-03-12 07:42:00,613 Lakeview St, San Francisco,CA,94016 +171491,Apple Airpods Headphones,1,150.0,2019-03-03 15:16:00,139 Lincoln St, Atlanta,GA,30301 +171492,Google Phone,1,600.0,2019-03-21 21:57:00,425 Chestnut St, New York City,NY,10001 +171493,AA Batteries (4-pack),3,3.84,2019-03-12 18:05:00,811 4th St, New York City,NY,10001 +171494,20in Monitor,1,109.99,2019-03-10 23:24:00,263 5th St, Atlanta,GA,30301 +171495,27in FHD Monitor,1,149.99,2019-03-13 11:19:00,40 Chestnut St, San Francisco,CA,94016 +171496,USB-C Charging Cable,1,11.95,2019-03-31 08:25:00,487 Ridge St, Boston,MA,02215 +171497,34in Ultrawide Monitor,1,379.99,2019-03-24 12:37:00,656 9th St, Austin,TX,73301 +171498,Wired Headphones,1,11.99,2019-03-16 17:38:00,630 Center St, San Francisco,CA,94016 +171499,Wired Headphones,1,11.99,2019-03-11 20:14:00,229 Spruce St, Los Angeles,CA,90001 +171500,Flatscreen TV,1,300.0,2019-03-09 18:40:00,474 Elm St, New York City,NY,10001 +171501,AA Batteries (4-pack),1,3.84,2019-03-27 16:44:00,2 Hickory St, Boston,MA,02215 +171502,Wired Headphones,1,11.99,2019-03-18 17:56:00,998 Ridge St, New York City,NY,10001 +171503,AA Batteries (4-pack),1,3.84,2019-03-11 14:20:00,729 Washington St, Los Angeles,CA,90001 +171504,Wired Headphones,1,11.99,2019-03-01 17:29:00,595 4th St, Los Angeles,CA,90001 +171505,Lightning Charging Cable,1,14.95,2019-03-26 21:02:00,536 Lincoln St, New York City,NY,10001 +171506,AAA Batteries (4-pack),1,2.99,2019-03-24 12:35:00,986 8th St, Seattle,WA,98101 +171506,Wired Headphones,1,11.99,2019-03-24 12:35:00,986 8th St, Seattle,WA,98101 +171507,27in FHD Monitor,1,149.99,2019-03-09 14:37:00,735 12th St, New York City,NY,10001 +171508,iPhone,1,700.0,2019-03-03 11:31:00,103 Dogwood St, San Francisco,CA,94016 +171509,AA Batteries (4-pack),1,3.84,2019-03-26 22:26:00,251 West St, Portland,ME,04101 +171510,Apple Airpods Headphones,1,150.0,2019-03-09 22:45:00,234 Cherry St, New York City,NY,10001 +171511,USB-C Charging Cable,1,11.95,2019-03-17 17:59:00,747 Willow St, Dallas,TX,75001 +171512,20in Monitor,1,109.99,2019-03-11 14:50:00,663 Lake St, New York City,NY,10001 +171513,iPhone,1,700.0,2019-03-06 13:12:00,200 Spruce St, Atlanta,GA,30301 +171514,Macbook Pro Laptop,1,1700.0,2019-03-31 07:21:00,741 Church St, New York City,NY,10001 +171515,AA Batteries (4-pack),3,3.84,2019-03-20 14:45:00,862 7th St, New York City,NY,10001 +171516,20in Monitor,1,109.99,2019-03-05 21:10:00,926 Maple St, Los Angeles,CA,90001 +171517,AAA Batteries (4-pack),1,2.99,2019-03-29 18:54:00,969 Lakeview St, Los Angeles,CA,90001 +171518,ThinkPad Laptop,1,999.99,2019-03-30 12:59:00,143 Johnson St, Los Angeles,CA,90001 +171519,34in Ultrawide Monitor,1,379.99,2019-03-19 15:17:00,799 Hill St, San Francisco,CA,94016 +171520,AA Batteries (4-pack),1,3.84,2019-03-29 23:29:00,91 Walnut St, San Francisco,CA,94016 +171521,Apple Airpods Headphones,1,150.0,2019-03-22 13:35:00,735 Pine St, San Francisco,CA,94016 +171521,34in Ultrawide Monitor,1,379.99,2019-03-22 13:35:00,735 Pine St, San Francisco,CA,94016 +171522,Bose SoundSport Headphones,1,99.99,2019-03-22 23:07:00,350 Johnson St, San Francisco,CA,94016 +171523,Wired Headphones,1,11.99,2019-03-11 01:06:00,594 12th St, Atlanta,GA,30301 +171524,AA Batteries (4-pack),3,3.84,2019-03-19 22:29:00,719 Center St, Boston,MA,02215 +171525,iPhone,1,700.0,2019-03-29 09:46:00,635 Spruce St, Austin,TX,73301 +171526,AAA Batteries (4-pack),1,2.99,2019-03-02 17:20:00,750 Walnut St, Boston,MA,02215 +171527,Lightning Charging Cable,1,14.95,2019-03-27 15:40:00,203 Adams St, Atlanta,GA,30301 +171528,Macbook Pro Laptop,1,1700.0,2019-03-09 16:43:00,16 Willow St, San Francisco,CA,94016 +171529,27in FHD Monitor,1,149.99,2019-03-14 16:58:00,296 8th St, Portland,OR,97035 +171530,Lightning Charging Cable,1,14.95,2019-03-22 13:33:00,790 Church St, Dallas,TX,75001 +171531,Lightning Charging Cable,1,14.95,2019-03-06 09:48:00,463 Cherry St, Portland,OR,97035 +171532,Wired Headphones,1,11.99,2019-03-08 12:49:00,390 Meadow St, San Francisco,CA,94016 +171533,Wired Headphones,1,11.99,2019-03-26 20:41:00,298 Willow St, Portland,OR,97035 +171534,34in Ultrawide Monitor,1,379.99,2019-03-26 12:14:00,534 Park St, Portland,OR,97035 +171535,Lightning Charging Cable,1,14.95,2019-03-13 12:21:00,315 Johnson St, Portland,OR,97035 +171536,Lightning Charging Cable,1,14.95,2019-03-18 16:07:00,444 South St, Atlanta,GA,30301 +171537,Apple Airpods Headphones,1,150.0,2019-03-30 22:53:00,5 Lakeview St, San Francisco,CA,94016 +171538,Google Phone,1,600.0,2019-03-08 19:56:00,494 Wilson St, Atlanta,GA,30301 +171539,Apple Airpods Headphones,1,150.0,2019-03-06 10:05:00,168 Elm St, Los Angeles,CA,90001 +171540,Flatscreen TV,1,300.0,2019-03-31 18:41:00,94 Washington St, Atlanta,GA,30301 +171541,USB-C Charging Cable,1,11.95,2019-03-06 18:30:00,897 Forest St, Atlanta,GA,30301 +171542,USB-C Charging Cable,1,11.95,2019-03-14 15:14:00,436 Lake St, Los Angeles,CA,90001 +171543,27in FHD Monitor,1,149.99,2019-03-31 15:24:00,777 Highland St, Dallas,TX,75001 +171544,USB-C Charging Cable,1,11.95,2019-03-07 22:42:00,961 Johnson St, San Francisco,CA,94016 +171545,27in 4K Gaming Monitor,1,389.99,2019-03-13 19:30:00,743 Highland St, San Francisco,CA,94016 +171546,AA Batteries (4-pack),1,3.84,2019-03-09 14:02:00,411 Lake St, Boston,MA,02215 +171547,Vareebadd Phone,1,400.0,2019-03-25 11:51:00,610 8th St, New York City,NY,10001 +171548,Bose SoundSport Headphones,1,99.99,2019-03-07 20:35:00,347 9th St, Dallas,TX,75001 +171549,AAA Batteries (4-pack),1,2.99,2019-03-19 10:06:00,995 Willow St, New York City,NY,10001 +171550,Apple Airpods Headphones,1,150.0,2019-03-17 11:41:00,61 Chestnut St, Boston,MA,02215 +171551,AAA Batteries (4-pack),1,2.99,2019-03-29 02:32:00,108 1st St, Seattle,WA,98101 +171552,AAA Batteries (4-pack),1,2.99,2019-03-25 12:05:00,323 6th St, San Francisco,CA,94016 +171553,Google Phone,1,600.0,2019-03-25 18:56:00,865 Johnson St, Austin,TX,73301 +171553,USB-C Charging Cable,3,11.95,2019-03-25 18:56:00,865 Johnson St, Austin,TX,73301 +171554,AAA Batteries (4-pack),1,2.99,2019-03-22 19:45:00,253 Pine St, Los Angeles,CA,90001 +171555,ThinkPad Laptop,1,999.99,2019-03-08 18:21:00,577 Meadow St, Los Angeles,CA,90001 +171556,Lightning Charging Cable,1,14.95,2019-03-20 14:33:00,179 Dogwood St, San Francisco,CA,94016 +171557,27in FHD Monitor,1,149.99,2019-03-10 07:50:00,916 River St, San Francisco,CA,94016 +171558,Lightning Charging Cable,1,14.95,2019-03-03 08:31:00,563 Forest St, Dallas,TX,75001 +171559,27in FHD Monitor,1,149.99,2019-03-26 20:18:00,973 Meadow St, Dallas,TX,75001 +171560,Wired Headphones,1,11.99,2019-03-01 18:53:00,449 South St, San Francisco,CA,94016 +171561,AA Batteries (4-pack),2,3.84,2019-03-04 10:03:00,413 West St, San Francisco,CA,94016 +171562,USB-C Charging Cable,1,11.95,2019-03-19 13:22:00,529 Chestnut St, San Francisco,CA,94016 +171563,Bose SoundSport Headphones,1,99.99,2019-03-04 21:53:00,728 Dogwood St, Seattle,WA,98101 +171564,ThinkPad Laptop,1,999.99,2019-03-18 00:10:00,936 Madison St, San Francisco,CA,94016 +171565,AAA Batteries (4-pack),3,2.99,2019-03-19 15:56:00,485 Cedar St, Boston,MA,02215 +171566,USB-C Charging Cable,1,11.95,2019-03-24 23:14:00,277 North St, San Francisco,CA,94016 +171567,Flatscreen TV,1,300.0,2019-03-03 10:45:00,96 Highland St, San Francisco,CA,94016 +171568,AAA Batteries (4-pack),1,2.99,2019-03-09 22:30:00,156 Elm St, New York City,NY,10001 +171569,Apple Airpods Headphones,1,150.0,2019-03-22 01:09:00,531 North St, San Francisco,CA,94016 +171570,AAA Batteries (4-pack),1,2.99,2019-03-14 13:27:00,677 Meadow St, New York City,NY,10001 +171571,34in Ultrawide Monitor,1,379.99,2019-03-13 14:44:00,649 Meadow St, San Francisco,CA,94016 +171572,Wired Headphones,2,11.99,2019-03-30 17:39:00,19 Maple St, Boston,MA,02215 +171573,AAA Batteries (4-pack),3,2.99,2019-03-12 17:44:00,996 Wilson St, San Francisco,CA,94016 +171574,Lightning Charging Cable,3,14.95,2019-03-27 20:23:00,976 Lincoln St, Seattle,WA,98101 +171575,Apple Airpods Headphones,1,150.0,2019-03-13 19:43:00,458 Madison St, New York City,NY,10001 +171576,Bose SoundSport Headphones,1,99.99,2019-03-30 12:44:00,981 Hickory St, New York City,NY,10001 +171577,AAA Batteries (4-pack),1,2.99,2019-03-07 06:14:00,926 Chestnut St, Los Angeles,CA,90001 +171578,Bose SoundSport Headphones,1,99.99,2019-03-04 05:14:00,786 Wilson St, Los Angeles,CA,90001 +171579,Lightning Charging Cable,2,14.95,2019-03-12 10:43:00,803 Center St, Los Angeles,CA,90001 +171580,AAA Batteries (4-pack),3,2.99,2019-03-09 12:42:00,704 Forest St, New York City,NY,10001 +171581,Bose SoundSport Headphones,1,99.99,2019-03-08 12:46:00,836 Spruce St, Boston,MA,02215 +171582,Bose SoundSport Headphones,1,99.99,2019-03-21 11:38:00,119 Sunset St, Austin,TX,73301 +171583,USB-C Charging Cable,1,11.95,2019-03-14 13:41:00,476 North St, Portland,OR,97035 +171584,iPhone,1,700.0,2019-03-08 20:12:00,253 Willow St, San Francisco,CA,94016 +171585,Google Phone,1,600.0,2019-03-12 21:42:00,761 Adams St, Atlanta,GA,30301 +171586,Bose SoundSport Headphones,1,99.99,2019-03-11 11:43:00,678 Lincoln St, Seattle,WA,98101 +171587,Flatscreen TV,1,300.0,2019-03-25 13:46:00,779 1st St, Dallas,TX,75001 +171588,Vareebadd Phone,1,400.0,2019-03-25 10:03:00,946 2nd St, Portland,ME,04101 +171589,iPhone,1,700.0,2019-03-03 12:07:00,901 Madison St, Los Angeles,CA,90001 +171589,Lightning Charging Cable,1,14.95,2019-03-03 12:07:00,901 Madison St, Los Angeles,CA,90001 +171590,USB-C Charging Cable,1,11.95,2019-03-15 10:35:00,512 13th St, San Francisco,CA,94016 +171591,USB-C Charging Cable,1,11.95,2019-03-29 11:31:00,630 Highland St, San Francisco,CA,94016 +171592,USB-C Charging Cable,2,11.95,2019-03-02 18:34:00,129 Spruce St, San Francisco,CA,94016 +171593,Bose SoundSport Headphones,1,99.99,2019-03-28 11:29:00,486 Cedar St, San Francisco,CA,94016 +171594,27in 4K Gaming Monitor,1,389.99,2019-03-03 18:49:00,684 4th St, New York City,NY,10001 +171595,Flatscreen TV,1,300.0,2019-03-04 12:23:00,816 Spruce St, San Francisco,CA,94016 +171596,iPhone,1,700.0,2019-03-14 05:52:00,822 Willow St, Seattle,WA,98101 +171597,27in 4K Gaming Monitor,1,389.99,2019-03-07 20:23:00,1 Church St, San Francisco,CA,94016 +171598,USB-C Charging Cable,1,11.95,2019-03-26 13:55:00,586 10th St, New York City,NY,10001 +171599,Macbook Pro Laptop,1,1700.0,2019-03-23 13:22:00,945 West St, Los Angeles,CA,90001 +171600,27in FHD Monitor,1,149.99,2019-03-12 20:35:00,32 Park St, Dallas,TX,75001 +171601,Lightning Charging Cable,1,14.95,2019-03-29 20:18:00,553 South St, San Francisco,CA,94016 +171602,Lightning Charging Cable,1,14.95,2019-03-01 18:36:00,662 Hickory St, San Francisco,CA,94016 +171603,Bose SoundSport Headphones,1,99.99,2019-03-31 11:12:00,317 Park St, Boston,MA,02215 +171604,AA Batteries (4-pack),1,3.84,2019-03-18 17:33:00,336 Wilson St, Los Angeles,CA,90001 +171605,Apple Airpods Headphones,1,150.0,2019-03-05 19:10:00,708 South St, San Francisco,CA,94016 +171606,USB-C Charging Cable,1,11.95,2019-03-12 16:24:00,780 Walnut St, Portland,OR,97035 +171607,Apple Airpods Headphones,1,150.0,2019-03-24 01:03:00,653 West St, Dallas,TX,75001 +171608,Bose SoundSport Headphones,1,99.99,2019-03-28 10:15:00,921 Hickory St, Atlanta,GA,30301 +171609,20in Monitor,1,109.99,2019-03-29 22:09:00,52 Park St, Los Angeles,CA,90001 +171610,AA Batteries (4-pack),1,3.84,2019-03-29 19:12:00,337 Lake St, Los Angeles,CA,90001 +171611,Lightning Charging Cable,1,14.95,2019-03-23 18:31:00,170 Lakeview St, Portland,ME,04101 +171612,Lightning Charging Cable,1,14.95,2019-03-22 19:55:00,949 Madison St, San Francisco,CA,94016 +171613,Macbook Pro Laptop,1,1700.0,2019-03-09 07:42:00,778 Highland St, Los Angeles,CA,90001 +171614,Wired Headphones,1,11.99,2019-03-27 18:33:00,984 Lake St, Los Angeles,CA,90001 +171615,AAA Batteries (4-pack),2,2.99,2019-03-20 19:26:00,71 Meadow St, Los Angeles,CA,90001 +171616,AA Batteries (4-pack),1,3.84,2019-03-07 23:19:00,894 1st St, Atlanta,GA,30301 +171617,34in Ultrawide Monitor,1,379.99,2019-03-10 17:40:00,205 Main St, New York City,NY,10001 +171618,20in Monitor,1,109.99,2019-03-14 04:44:00,258 Spruce St, San Francisco,CA,94016 +171619,27in FHD Monitor,1,149.99,2019-03-08 21:43:00,899 West St, Atlanta,GA,30301 +171620,Lightning Charging Cable,1,14.95,2019-03-05 10:33:00,703 2nd St, Boston,MA,02215 +171621,Bose SoundSport Headphones,1,99.99,2019-03-17 12:27:00,928 13th St, New York City,NY,10001 +171622,Google Phone,1,600.0,2019-03-04 15:58:00,402 2nd St, Los Angeles,CA,90001 +171622,USB-C Charging Cable,1,11.95,2019-03-04 15:58:00,402 2nd St, Los Angeles,CA,90001 +171623,Flatscreen TV,1,300.0,2019-03-16 15:04:00,623 Lakeview St, Dallas,TX,75001 +171624,Wired Headphones,1,11.99,2019-03-01 16:46:00,381 Sunset St, Seattle,WA,98101 +171625,34in Ultrawide Monitor,1,379.99,2019-03-31 10:22:00,398 Walnut St, Dallas,TX,75001 +171626,AAA Batteries (4-pack),1,2.99,2019-03-25 12:57:00,260 Sunset St, Austin,TX,73301 +171627,Lightning Charging Cable,1,14.95,2019-03-13 15:38:00,274 Washington St, New York City,NY,10001 +171628,34in Ultrawide Monitor,1,379.99,2019-03-06 17:39:00,130 1st St, Seattle,WA,98101 +171629,Lightning Charging Cable,1,14.95,2019-03-08 07:04:00,168 8th St, Boston,MA,02215 +171630,AAA Batteries (4-pack),1,2.99,2019-03-04 09:53:00,682 South St, Atlanta,GA,30301 +171631,ThinkPad Laptop,1,999.99,2019-03-18 11:26:00,979 12th St, Seattle,WA,98101 +171632,Bose SoundSport Headphones,1,99.99,2019-03-13 07:41:00,473 Johnson St, Portland,OR,97035 +171633,Bose SoundSport Headphones,1,99.99,2019-03-27 17:21:00,493 Cedar St, Los Angeles,CA,90001 +171634,Wired Headphones,1,11.99,2019-03-02 11:44:00,35 4th St, New York City,NY,10001 +171635,Apple Airpods Headphones,1,150.0,2019-03-30 15:31:00,738 Johnson St, Seattle,WA,98101 +171636,27in 4K Gaming Monitor,1,389.99,2019-03-09 18:55:00,345 Hill St, San Francisco,CA,94016 +171637,AA Batteries (4-pack),1,3.84,2019-03-24 13:59:00,47 5th St, Boston,MA,02215 +171638,Apple Airpods Headphones,1,150.0,2019-03-17 12:50:00,480 Forest St, San Francisco,CA,94016 +171639,AAA Batteries (4-pack),5,2.99,2019-03-19 06:54:00,486 Center St, Boston,MA,02215 +171639,AA Batteries (4-pack),1,3.84,2019-03-19 06:54:00,486 Center St, Boston,MA,02215 +171640,34in Ultrawide Monitor,1,379.99,2019-03-28 12:18:00,624 Lakeview St, New York City,NY,10001 +171641,AA Batteries (4-pack),4,3.84,2019-03-23 11:45:00,301 South St, San Francisco,CA,94016 +171642,Lightning Charging Cable,1,14.95,2019-03-12 22:54:00,709 Ridge St, New York City,NY,10001 +171643,27in 4K Gaming Monitor,1,389.99,2019-03-03 23:04:00,665 Hill St, Atlanta,GA,30301 +171644,ThinkPad Laptop,1,999.99,2019-03-11 09:38:00,991 Main St, Boston,MA,02215 +171645,iPhone,1,700.0,2019-03-17 20:40:00,869 Hickory St, Atlanta,GA,30301 +171645,Lightning Charging Cable,1,14.95,2019-03-17 20:40:00,869 Hickory St, Atlanta,GA,30301 +171646,27in 4K Gaming Monitor,1,389.99,2019-03-22 16:06:00,599 Meadow St, Boston,MA,02215 +171647,Wired Headphones,1,11.99,2019-03-26 17:55:00,321 5th St, Los Angeles,CA,90001 +171648,Wired Headphones,2,11.99,2019-03-17 14:28:00,339 9th St, Seattle,WA,98101 +171649,Lightning Charging Cable,1,14.95,2019-03-18 18:04:00,622 10th St, New York City,NY,10001 +171650,27in 4K Gaming Monitor,1,389.99,2019-03-28 14:17:00,465 10th St, Dallas,TX,75001 +171651,Apple Airpods Headphones,1,150.0,2019-03-10 21:07:00,119 Willow St, Los Angeles,CA,90001 +171652,Apple Airpods Headphones,1,150.0,2019-03-29 02:09:00,206 Lincoln St, Los Angeles,CA,90001 +171653,Wired Headphones,2,11.99,2019-03-22 08:40:00,196 Madison St, San Francisco,CA,94016 +171654,AA Batteries (4-pack),2,3.84,2019-03-24 09:44:00,402 River St, Los Angeles,CA,90001 +171655,USB-C Charging Cable,1,11.95,2019-03-07 23:01:00,646 River St, Boston,MA,02215 +171656,Wired Headphones,1,11.99,2019-03-16 21:30:00,709 Park St, Austin,TX,73301 +171657,Vareebadd Phone,1,400.0,2019-03-30 17:55:00,687 Sunset St, Portland,OR,97035 +171658,Google Phone,1,600.0,2019-03-23 18:35:00,766 Center St, San Francisco,CA,94016 +171658,Wired Headphones,1,11.99,2019-03-23 18:35:00,766 Center St, San Francisco,CA,94016 +171659,AAA Batteries (4-pack),2,2.99,2019-03-25 14:02:00,728 Pine St, Austin,TX,73301 +171660,USB-C Charging Cable,1,11.95,2019-03-28 12:14:00,395 7th St, San Francisco,CA,94016 +171661,20in Monitor,1,109.99,2019-03-29 11:35:00,857 6th St, Atlanta,GA,30301 +171662,Flatscreen TV,1,300.0,2019-03-26 10:33:00,413 Johnson St, Austin,TX,73301 +171663,27in 4K Gaming Monitor,1,389.99,2019-03-28 04:18:00,496 West St, Los Angeles,CA,90001 +171664,27in FHD Monitor,1,149.99,2019-03-27 19:06:00,75 Ridge St, Portland,OR,97035 +171665,Flatscreen TV,1,300.0,2019-03-27 23:23:00,581 River St, Seattle,WA,98101 +171666,Bose SoundSport Headphones,1,99.99,2019-03-09 13:35:00,946 Hill St, Dallas,TX,75001 +171667,AAA Batteries (4-pack),2,2.99,2019-03-18 13:37:00,550 South St, San Francisco,CA,94016 +171668,USB-C Charging Cable,1,11.95,2019-03-03 06:55:00,777 8th St, New York City,NY,10001 +171669,Wired Headphones,1,11.99,2019-03-18 17:07:00,369 Church St, Los Angeles,CA,90001 +171670,USB-C Charging Cable,1,11.95,2019-03-10 13:42:00,853 Washington St, New York City,NY,10001 +171671,34in Ultrawide Monitor,1,379.99,2019-03-09 02:23:00,438 North St, San Francisco,CA,94016 +171672,AA Batteries (4-pack),1,3.84,2019-03-04 14:19:00,496 Lake St, New York City,NY,10001 +171673,AAA Batteries (4-pack),1,2.99,2019-03-11 11:33:00,667 11th St, Atlanta,GA,30301 +171674,Lightning Charging Cable,1,14.95,2019-03-13 16:45:00,142 Park St, Los Angeles,CA,90001 +171675,USB-C Charging Cable,1,11.95,2019-03-12 09:15:00,723 2nd St, Boston,MA,02215 +171676,USB-C Charging Cable,1,11.95,2019-03-25 15:46:00,875 Maple St, Austin,TX,73301 +171677,AAA Batteries (4-pack),1,2.99,2019-03-12 15:40:00,52 Spruce St, New York City,NY,10001 +171678,27in FHD Monitor,1,149.99,2019-03-05 16:27:00,168 Washington St, San Francisco,CA,94016 +171679,ThinkPad Laptop,1,999.99,2019-03-09 13:15:00,930 2nd St, Los Angeles,CA,90001 +171680,27in 4K Gaming Monitor,2,389.99,2019-03-09 13:26:00,697 River St, Atlanta,GA,30301 +171681,Bose SoundSport Headphones,1,99.99,2019-03-08 14:05:00,238 6th St, Boston,MA,02215 +171682,Wired Headphones,1,11.99,2019-03-30 23:23:00,987 13th St, Atlanta,GA,30301 +171683,Wired Headphones,1,11.99,2019-03-07 09:42:00,647 Highland St, New York City,NY,10001 +171684,USB-C Charging Cable,1,11.95,2019-03-04 16:16:00,721 10th St, San Francisco,CA,94016 +171685,Wired Headphones,1,11.99,2019-03-17 20:45:00,725 Chestnut St, Los Angeles,CA,90001 +171686,USB-C Charging Cable,1,11.95,2019-03-08 11:58:00,13 Jackson St, Los Angeles,CA,90001 +171687,27in FHD Monitor,1,149.99,2019-03-30 18:54:00,430 South St, New York City,NY,10001 +171688,USB-C Charging Cable,2,11.95,2019-03-14 20:44:00,173 Sunset St, New York City,NY,10001 +171689,Bose SoundSport Headphones,1,99.99,2019-03-23 13:09:00,549 Spruce St, Boston,MA,02215 +171690,AAA Batteries (4-pack),6,2.99,2019-03-14 19:58:00,965 Washington St, San Francisco,CA,94016 +171691,AA Batteries (4-pack),1,3.84,2019-03-07 01:29:00,73 1st St, Atlanta,GA,30301 +171692,27in FHD Monitor,1,149.99,2019-03-23 21:34:00,968 Washington St, San Francisco,CA,94016 +171693,Bose SoundSport Headphones,1,99.99,2019-03-04 12:42:00,380 South St, Dallas,TX,75001 +171694,iPhone,1,700.0,2019-03-02 18:12:00,283 Church St, San Francisco,CA,94016 +171695,Lightning Charging Cable,1,14.95,2019-03-08 17:30:00,971 7th St, Boston,MA,02215 +171696,Lightning Charging Cable,1,14.95,2019-03-21 12:33:00,548 River St, Los Angeles,CA,90001 +171697,20in Monitor,1,109.99,2019-03-13 17:25:00,330 Cherry St, San Francisco,CA,94016 +171698,Bose SoundSport Headphones,1,99.99,2019-03-25 18:29:00,824 8th St, San Francisco,CA,94016 +171699,27in 4K Gaming Monitor,1,389.99,2019-03-19 13:06:00,480 12th St, Dallas,TX,75001 +171700,AAA Batteries (4-pack),2,2.99,2019-03-29 14:50:00,209 1st St, San Francisco,CA,94016 +171701,USB-C Charging Cable,1,11.95,2019-03-10 15:23:00,70 Adams St, New York City,NY,10001 +171702,Macbook Pro Laptop,1,1700.0,2019-03-24 13:06:00,757 Washington St, Seattle,WA,98101 +171703,Apple Airpods Headphones,1,150.0,2019-03-19 09:51:00,413 Forest St, Seattle,WA,98101 +171704,Lightning Charging Cable,1,14.95,2019-03-12 20:51:00,385 Dogwood St, Boston,MA,02215 +171705,iPhone,1,700.0,2019-03-01 20:30:00,161 8th St, San Francisco,CA,94016 +171706,AA Batteries (4-pack),3,3.84,2019-03-16 17:46:00,886 Meadow St, San Francisco,CA,94016 +171707,Macbook Pro Laptop,1,1700.0,2019-03-30 20:45:00,614 Ridge St, San Francisco,CA,94016 +171708,Bose SoundSport Headphones,1,99.99,2019-03-09 10:30:00,189 Walnut St, Austin,TX,73301 +171709,27in FHD Monitor,1,149.99,2019-03-01 06:39:00,436 Maple St, Portland,OR,97035 +171710,Lightning Charging Cable,1,14.95,2019-03-10 12:58:00,694 9th St, San Francisco,CA,94016 +171711,Google Phone,1,600.0,2019-03-02 12:31:00,63 Main St, Seattle,WA,98101 +171711,Wired Headphones,1,11.99,2019-03-02 12:31:00,63 Main St, Seattle,WA,98101 +171712,Bose SoundSport Headphones,1,99.99,2019-03-23 01:17:00,466 Maple St, Seattle,WA,98101 +171713,AAA Batteries (4-pack),5,2.99,2019-03-12 13:43:00,601 Park St, San Francisco,CA,94016 +171714,Wired Headphones,1,11.99,2019-03-05 18:23:00,732 Highland St, Portland,OR,97035 +171715,AAA Batteries (4-pack),1,2.99,2019-03-28 00:18:00,170 11th St, Portland,OR,97035 +171716,Macbook Pro Laptop,1,1700.0,2019-03-18 16:30:00,77 5th St, Los Angeles,CA,90001 +171717,AAA Batteries (4-pack),1,2.99,2019-03-18 21:34:00,692 Lincoln St, Los Angeles,CA,90001 +171718,AA Batteries (4-pack),1,3.84,2019-03-26 19:10:00,236 12th St, Portland,OR,97035 +171719,34in Ultrawide Monitor,1,379.99,2019-03-28 00:28:00,223 Lake St, Austin,TX,73301 +171720,27in 4K Gaming Monitor,1,389.99,2019-03-21 22:25:00,929 Willow St, San Francisco,CA,94016 +171721,Lightning Charging Cable,1,14.95,2019-03-11 16:14:00,623 Maple St, San Francisco,CA,94016 +171722,Lightning Charging Cable,1,14.95,2019-03-15 12:58:00,177 Center St, Atlanta,GA,30301 +171723,Bose SoundSport Headphones,1,99.99,2019-03-06 11:20:00,469 13th St, Atlanta,GA,30301 +171724,Vareebadd Phone,1,400.0,2019-03-20 22:03:00,729 Main St, Dallas,TX,75001 +171725,iPhone,1,700.0,2019-03-14 15:54:00,821 Jefferson St, San Francisco,CA,94016 +171726,34in Ultrawide Monitor,1,379.99,2019-03-27 13:29:00,771 12th St, Dallas,TX,75001 +171727,Lightning Charging Cable,1,14.95,2019-03-07 15:25:00,954 4th St, Austin,TX,73301 +171728,27in 4K Gaming Monitor,1,389.99,2019-03-09 19:20:00,350 7th St, Austin,TX,73301 +171729,Lightning Charging Cable,1,14.95,2019-03-08 10:11:00,540 Meadow St, Los Angeles,CA,90001 +171730,ThinkPad Laptop,1,999.99,2019-03-30 19:09:00,525 Adams St, Boston,MA,02215 +171731,Apple Airpods Headphones,1,150.0,2019-03-20 12:10:00,236 Forest St, Los Angeles,CA,90001 +171732,AAA Batteries (4-pack),1,2.99,2019-03-25 12:51:00,99 Maple St, Seattle,WA,98101 +171733,Apple Airpods Headphones,1,150.0,2019-03-26 00:15:00,152 Ridge St, Seattle,WA,98101 +171734,27in FHD Monitor,1,149.99,2019-03-19 21:37:00,405 11th St, Austin,TX,73301 +171735,27in 4K Gaming Monitor,1,389.99,2019-03-13 23:34:00,652 Ridge St, Seattle,WA,98101 +171736,AA Batteries (4-pack),3,3.84,2019-03-14 11:34:00,560 Main St, San Francisco,CA,94016 +171737,34in Ultrawide Monitor,1,379.99,2019-03-09 20:05:00,60 6th St, Portland,OR,97035 +171738,Bose SoundSport Headphones,1,99.99,2019-03-21 21:35:00,885 Meadow St, San Francisco,CA,94016 +171739,Google Phone,1,600.0,2019-03-29 15:20:00,899 Adams St, New York City,NY,10001 +171740,Wired Headphones,1,11.99,2019-03-27 15:27:00,744 Lake St, Portland,ME,04101 +171741,Bose SoundSport Headphones,1,99.99,2019-03-09 12:48:00,396 8th St, Los Angeles,CA,90001 +171742,AA Batteries (4-pack),1,3.84,2019-03-25 22:46:00,240 2nd St, Boston,MA,02215 +171743,20in Monitor,1,109.99,2019-03-23 18:50:00,965 Madison St, Portland,OR,97035 +171744,AAA Batteries (4-pack),2,2.99,2019-03-24 14:21:00,597 Jackson St, Seattle,WA,98101 +171745,Apple Airpods Headphones,1,150.0,2019-03-31 17:45:00,341 Center St, Atlanta,GA,30301 +171746,AA Batteries (4-pack),2,3.84,2019-03-19 13:09:00,535 Adams St, Los Angeles,CA,90001 +171747,AAA Batteries (4-pack),1,2.99,2019-03-20 13:02:00,867 Madison St, Los Angeles,CA,90001 +171748,34in Ultrawide Monitor,1,379.99,2019-03-10 22:44:00,697 Jackson St, Seattle,WA,98101 +171749,AAA Batteries (4-pack),1,2.99,2019-03-07 19:34:00,965 Lincoln St, Dallas,TX,75001 +171750,AAA Batteries (4-pack),1,2.99,2019-03-15 19:07:00,215 Cherry St, Dallas,TX,75001 +171751,Lightning Charging Cable,1,14.95,2019-03-17 13:05:00,245 Highland St, Portland,OR,97035 +171752,AAA Batteries (4-pack),1,2.99,2019-03-31 17:37:00,681 Pine St, Atlanta,GA,30301 +171753,Wired Headphones,1,11.99,2019-03-24 19:04:00,743 8th St, Atlanta,GA,30301 +171754,Apple Airpods Headphones,1,150.0,2019-03-08 21:01:00,353 Hill St, Boston,MA,02215 +171755,Lightning Charging Cable,1,14.95,2019-03-23 14:05:00,353 Jefferson St, Los Angeles,CA,90001 +171756,Bose SoundSport Headphones,1,99.99,2019-03-30 13:00:00,90 Pine St, Dallas,TX,75001 +171757,Apple Airpods Headphones,1,150.0,2019-03-06 23:31:00,403 Madison St, Austin,TX,73301 +171758,Apple Airpods Headphones,2,150.0,2019-03-05 19:41:00,668 4th St, Boston,MA,02215 +171759,Lightning Charging Cable,1,14.95,2019-03-26 09:17:00,148 11th St, San Francisco,CA,94016 +171760,AA Batteries (4-pack),1,3.84,2019-03-07 23:54:00,923 Chestnut St, New York City,NY,10001 +171761,Apple Airpods Headphones,1,150.0,2019-03-06 17:12:00,711 Main St, New York City,NY,10001 +171762,AAA Batteries (4-pack),1,2.99,2019-03-23 14:33:00,21 11th St, Los Angeles,CA,90001 +171763,20in Monitor,1,109.99,2019-03-26 18:55:00,113 North St, New York City,NY,10001 +171764,Lightning Charging Cable,1,14.95,2019-03-02 11:06:00,265 Church St, San Francisco,CA,94016 +171765,AAA Batteries (4-pack),1,2.99,2019-03-24 16:35:00,811 Cherry St, Seattle,WA,98101 +171766,ThinkPad Laptop,1,999.99,2019-03-04 16:18:00,382 Willow St, San Francisco,CA,94016 +171767,27in FHD Monitor,1,149.99,2019-03-09 19:34:00,301 Park St, New York City,NY,10001 +171768,USB-C Charging Cable,1,11.95,2019-03-07 19:54:00,252 6th St, Seattle,WA,98101 +171769,Lightning Charging Cable,1,14.95,2019-03-23 14:50:00,616 Park St, Seattle,WA,98101 +171770,AA Batteries (4-pack),1,3.84,2019-03-19 13:07:00,193 9th St, Los Angeles,CA,90001 +171771,Bose SoundSport Headphones,1,99.99,2019-03-01 12:54:00,24 Highland St, San Francisco,CA,94016 +171772,Vareebadd Phone,1,400.0,2019-03-23 08:27:00,722 Chestnut St, Portland,OR,97035 +171773,AAA Batteries (4-pack),1,2.99,2019-03-29 19:44:00,515 Johnson St, Portland,ME,04101 +171774,AA Batteries (4-pack),1,3.84,2019-03-19 20:11:00,495 Willow St, San Francisco,CA,94016 +171775,USB-C Charging Cable,1,11.95,2019-03-27 04:19:00,554 Johnson St, Seattle,WA,98101 +171776,USB-C Charging Cable,1,11.95,2019-03-08 19:24:00,338 4th St, Seattle,WA,98101 +171777,Lightning Charging Cable,1,14.95,2019-03-24 08:59:00,163 Sunset St, Los Angeles,CA,90001 +171778,Bose SoundSport Headphones,1,99.99,2019-03-08 19:29:00,898 10th St, New York City,NY,10001 +171779,Apple Airpods Headphones,1,150.0,2019-03-14 17:40:00,17 11th St, Los Angeles,CA,90001 +171780,Apple Airpods Headphones,1,150.0,2019-03-21 16:27:00,543 12th St, San Francisco,CA,94016 +171781,27in 4K Gaming Monitor,1,389.99,2019-03-15 09:14:00,516 Meadow St, New York City,NY,10001 +171782,AAA Batteries (4-pack),3,2.99,2019-03-19 08:38:00,868 7th St, Dallas,TX,75001 +171783,Wired Headphones,1,11.99,2019-03-23 15:55:00,776 Church St, Boston,MA,02215 +171784,Apple Airpods Headphones,1,150.0,2019-03-16 13:04:00,85 Lincoln St, San Francisco,CA,94016 +171785,AA Batteries (4-pack),1,3.84,2019-03-12 11:52:00,951 Main St, Atlanta,GA,30301 +171786,34in Ultrawide Monitor,1,379.99,2019-03-16 21:41:00,199 River St, Boston,MA,02215 +171787,AAA Batteries (4-pack),1,2.99,2019-03-14 04:12:00,873 Jackson St, Atlanta,GA,30301 +171788,Lightning Charging Cable,1,14.95,2019-03-06 18:47:00,225 Park St, New York City,NY,10001 +171789,Wired Headphones,1,11.99,2019-03-12 21:26:00,957 Park St, Boston,MA,02215 +171790,AAA Batteries (4-pack),2,2.99,2019-03-21 20:30:00,925 Johnson St, Atlanta,GA,30301 +171791,Apple Airpods Headphones,1,150.0,2019-03-27 07:42:00,371 Adams St, Boston,MA,02215 +171792,Bose SoundSport Headphones,1,99.99,2019-03-12 17:29:00,313 Hill St, San Francisco,CA,94016 +171793,USB-C Charging Cable,1,11.95,2019-03-12 12:19:00,212 Cherry St, Dallas,TX,75001 +171794,Macbook Pro Laptop,1,1700.0,2019-03-17 14:08:00,438 Meadow St, San Francisco,CA,94016 +171795,Bose SoundSport Headphones,1,99.99,2019-03-20 08:49:00,568 1st St, Seattle,WA,98101 +171796,Lightning Charging Cable,1,14.95,2019-03-31 12:55:00,959 Walnut St, Portland,OR,97035 +171797,Wired Headphones,1,11.99,2019-03-01 12:21:00,463 Cherry St, San Francisco,CA,94016 +171798,Apple Airpods Headphones,1,150.0,2019-03-27 17:13:00,301 9th St, Boston,MA,02215 +171799,USB-C Charging Cable,1,11.95,2019-03-04 03:02:00,360 Washington St, Boston,MA,02215 +171800,AAA Batteries (4-pack),1,2.99,2019-03-01 17:41:00,11 Highland St, Los Angeles,CA,90001 +171801,iPhone,1,700.0,2019-03-31 07:15:00,599 Cedar St, San Francisco,CA,94016 +171801,Apple Airpods Headphones,1,150.0,2019-03-31 07:15:00,599 Cedar St, San Francisco,CA,94016 +171802,Apple Airpods Headphones,1,150.0,2019-03-11 22:12:00,664 Cherry St, Austin,TX,73301 +171803,Apple Airpods Headphones,1,150.0,2019-03-03 13:31:00,677 Jefferson St, San Francisco,CA,94016 +171804,AA Batteries (4-pack),1,3.84,2019-03-26 07:19:00,872 Chestnut St, Dallas,TX,75001 +171805,AA Batteries (4-pack),1,3.84,2019-03-15 21:54:00,313 Jefferson St, San Francisco,CA,94016 +171806,iPhone,1,700.0,2019-03-06 11:29:00,98 4th St, San Francisco,CA,94016 +171806,Lightning Charging Cable,1,14.95,2019-03-06 11:29:00,98 4th St, San Francisco,CA,94016 +171807,USB-C Charging Cable,1,11.95,2019-03-22 12:33:00,621 Forest St, Boston,MA,02215 +171808,Bose SoundSport Headphones,1,99.99,2019-03-07 20:59:00,945 Main St, Boston,MA,02215 +171809,USB-C Charging Cable,1,11.95,2019-03-10 21:56:00,305 7th St, New York City,NY,10001 +171810,USB-C Charging Cable,2,11.95,2019-03-12 14:12:00,546 Spruce St, Austin,TX,73301 +171811,Lightning Charging Cable,1,14.95,2019-03-05 10:03:00,67 Pine St, Atlanta,GA,30301 +171812,USB-C Charging Cable,1,11.95,2019-03-03 07:12:00,839 Maple St, San Francisco,CA,94016 +171813,27in FHD Monitor,1,149.99,2019-03-06 15:44:00,863 River St, Portland,OR,97035 +171814,Apple Airpods Headphones,1,150.0,2019-03-10 16:53:00,830 Jefferson St, Boston,MA,02215 +171815,iPhone,1,700.0,2019-03-18 18:47:00,266 Hickory St, New York City,NY,10001 +171816,AA Batteries (4-pack),1,3.84,2019-03-24 13:17:00,439 Madison St, San Francisco,CA,94016 +171817,Vareebadd Phone,1,400.0,2019-03-27 14:04:00,73 14th St, San Francisco,CA,94016 +171818,AAA Batteries (4-pack),1,2.99,2019-03-19 09:09:00,5 Lakeview St, New York City,NY,10001 +171819,AAA Batteries (4-pack),1,2.99,2019-03-12 15:23:00,284 Wilson St, Boston,MA,02215 +171820,AA Batteries (4-pack),2,3.84,2019-03-05 15:20:00,325 Forest St, Atlanta,GA,30301 +171821,AA Batteries (4-pack),1,3.84,2019-03-27 14:19:00,293 13th St, Dallas,TX,75001 +171822,Lightning Charging Cable,1,14.95,2019-03-12 10:57:00,979 Chestnut St, San Francisco,CA,94016 +171823,Wired Headphones,2,11.99,2019-03-27 16:46:00,961 8th St, New York City,NY,10001 +171824,AAA Batteries (4-pack),1,2.99,2019-03-02 18:59:00,747 12th St, Seattle,WA,98101 +171825,iPhone,1,700.0,2019-03-03 20:57:00,442 Hickory St, San Francisco,CA,94016 +171825,Lightning Charging Cable,1,14.95,2019-03-03 20:57:00,442 Hickory St, San Francisco,CA,94016 +171826,27in 4K Gaming Monitor,1,389.99,2019-03-21 12:54:00,887 Spruce St, San Francisco,CA,94016 +171827,Bose SoundSport Headphones,1,99.99,2019-03-03 05:45:00,160 Highland St, New York City,NY,10001 +171828,AA Batteries (4-pack),3,3.84,2019-03-13 19:54:00,875 Cedar St, Portland,ME,04101 +171829,AAA Batteries (4-pack),1,2.99,2019-03-11 13:58:00,494 Johnson St, Dallas,TX,75001 +171830,Wired Headphones,1,11.99,2019-03-08 13:25:00,711 Hill St, Dallas,TX,75001 +171831,AAA Batteries (4-pack),4,2.99,2019-03-11 11:22:00,352 6th St, San Francisco,CA,94016 +171832,Lightning Charging Cable,1,14.95,2019-03-05 12:23:00,941 Jefferson St, San Francisco,CA,94016 +171833,27in 4K Gaming Monitor,1,389.99,2019-03-21 10:47:00,672 Lake St, New York City,NY,10001 +171834,AAA Batteries (4-pack),1,2.99,2019-03-15 16:35:00,40 Walnut St, Dallas,TX,75001 +171835,Apple Airpods Headphones,1,150.0,2019-03-08 12:23:00,657 Main St, Seattle,WA,98101 +171836,Flatscreen TV,1,300.0,2019-03-15 19:28:00,364 13th St, New York City,NY,10001 +171837,AA Batteries (4-pack),1,3.84,2019-03-27 11:10:00,935 River St, New York City,NY,10001 +171838,USB-C Charging Cable,1,11.95,2019-03-14 16:28:00,960 Chestnut St, Portland,OR,97035 +171839,Apple Airpods Headphones,1,150.0,2019-03-13 07:09:00,994 Johnson St, Los Angeles,CA,90001 +171840,USB-C Charging Cable,1,11.95,2019-03-08 14:53:00,287 Forest St, Seattle,WA,98101 +171841,Lightning Charging Cable,1,14.95,2019-03-15 19:47:00,242 Highland St, Atlanta,GA,30301 +171842,ThinkPad Laptop,1,999.99,2019-03-16 17:33:00,241 13th St, Boston,MA,02215 +171843,Google Phone,1,600.0,2019-03-05 07:34:00,159 Wilson St, New York City,NY,10001 +171843,Bose SoundSport Headphones,1,99.99,2019-03-05 07:34:00,159 Wilson St, New York City,NY,10001 +171844,Lightning Charging Cable,1,14.95,2019-03-19 18:19:00,170 Adams St, Los Angeles,CA,90001 +171845,Apple Airpods Headphones,1,150.0,2019-03-31 09:44:00,819 6th St, San Francisco,CA,94016 +171846,Google Phone,1,600.0,2019-03-21 00:20:00,575 Adams St, Austin,TX,73301 +171847,Apple Airpods Headphones,1,150.0,2019-03-03 08:31:00,581 Cedar St, Boston,MA,02215 +171848,Apple Airpods Headphones,1,150.0,2019-03-30 21:25:00,745 Main St, Portland,OR,97035 +171849,ThinkPad Laptop,1,999.99,2019-03-25 13:31:00,529 12th St, San Francisco,CA,94016 +171850,AAA Batteries (4-pack),2,2.99,2019-03-05 13:45:00,801 Johnson St, Los Angeles,CA,90001 +171851,ThinkPad Laptop,1,999.99,2019-03-02 16:50:00,370 Adams St, Boston,MA,02215 +171852,27in 4K Gaming Monitor,1,389.99,2019-03-15 09:51:00,332 10th St, San Francisco,CA,94016 +171853,AAA Batteries (4-pack),2,2.99,2019-03-09 19:36:00,846 Main St, New York City,NY,10001 +171854,Bose SoundSport Headphones,1,99.99,2019-03-31 10:20:00,452 South St, Boston,MA,02215 +171855,USB-C Charging Cable,2,11.95,2019-03-28 21:51:00,269 West St, Dallas,TX,75001 +171856,Bose SoundSport Headphones,1,99.99,2019-03-13 23:16:00,960 Lakeview St, Los Angeles,CA,90001 +171857,USB-C Charging Cable,2,11.95,2019-03-31 16:14:00,829 Highland St, San Francisco,CA,94016 +171858,27in 4K Gaming Monitor,1,389.99,2019-03-26 13:12:00,412 6th St, Los Angeles,CA,90001 +171859,27in 4K Gaming Monitor,1,389.99,2019-03-20 12:27:00,486 Hickory St, San Francisco,CA,94016 +171860,USB-C Charging Cable,1,11.95,2019-03-13 23:00:00,218 Ridge St, San Francisco,CA,94016 +171861,AAA Batteries (4-pack),1,2.99,2019-03-23 23:16:00,62 Hickory St, Los Angeles,CA,90001 +171862,AAA Batteries (4-pack),2,2.99,2019-03-11 14:32:00,567 6th St, Los Angeles,CA,90001 +171863,27in FHD Monitor,1,149.99,2019-03-13 11:16:00,912 Chestnut St, Atlanta,GA,30301 +171864,27in 4K Gaming Monitor,1,389.99,2019-03-21 17:11:00,750 2nd St, New York City,NY,10001 +171865,USB-C Charging Cable,1,11.95,2019-03-25 18:26:00,350 Church St, San Francisco,CA,94016 +171866,AA Batteries (4-pack),2,3.84,2019-03-25 02:26:00,803 10th St, Los Angeles,CA,90001 +171867,Bose SoundSport Headphones,1,99.99,2019-03-10 21:29:00,143 Hill St, Atlanta,GA,30301 +171868,Lightning Charging Cable,1,14.95,2019-03-13 14:00:00,74 Cedar St, San Francisco,CA,94016 +171869,ThinkPad Laptop,1,999.99,2019-03-25 18:22:00,736 North St, Los Angeles,CA,90001 +171870,AAA Batteries (4-pack),2,2.99,2019-03-23 15:27:00,573 9th St, San Francisco,CA,94016 +171871,Lightning Charging Cable,1,14.95,2019-03-07 10:04:00,207 Lake St, Dallas,TX,75001 +171872,20in Monitor,1,109.99,2019-03-31 13:57:00,466 Pine St, San Francisco,CA,94016 +171873,20in Monitor,1,109.99,2019-03-02 20:52:00,937 Forest St, Los Angeles,CA,90001 +171874,AA Batteries (4-pack),1,3.84,2019-03-24 11:27:00,438 Pine St, Boston,MA,02215 +171875,USB-C Charging Cable,1,11.95,2019-03-10 12:51:00,697 9th St, San Francisco,CA,94016 +171876,Lightning Charging Cable,1,14.95,2019-03-14 15:43:00,760 2nd St, San Francisco,CA,94016 +171877,AAA Batteries (4-pack),1,2.99,2019-03-05 06:26:00,141 Jackson St, Austin,TX,73301 +171878,Wired Headphones,1,11.99,2019-03-21 21:29:00,736 Jefferson St, Dallas,TX,75001 +171879,Wired Headphones,1,11.99,2019-03-27 10:10:00,613 14th St, Seattle,WA,98101 +171880,Flatscreen TV,1,300.0,2019-03-22 22:15:00,288 Madison St, Atlanta,GA,30301 +171881,AA Batteries (4-pack),1,3.84,2019-03-19 11:22:00,961 1st St, New York City,NY,10001 +171882,AAA Batteries (4-pack),2,2.99,2019-03-05 15:16:00,895 5th St, Austin,TX,73301 +171883,34in Ultrawide Monitor,1,379.99,2019-03-23 08:10:00,883 North St, Atlanta,GA,30301 +171884,34in Ultrawide Monitor,1,379.99,2019-03-18 15:49:00,899 Willow St, Dallas,TX,75001 +171885,Wired Headphones,1,11.99,2019-03-26 19:10:00,400 Park St, Atlanta,GA,30301 +171886,Bose SoundSport Headphones,1,99.99,2019-03-01 18:04:00,779 7th St, Boston,MA,02215 +171887,27in 4K Gaming Monitor,1,389.99,2019-03-20 09:58:00,900 Center St, Atlanta,GA,30301 +171888,USB-C Charging Cable,1,11.95,2019-03-09 09:13:00,730 13th St, New York City,NY,10001 +171889,AA Batteries (4-pack),1,3.84,2019-03-23 17:56:00,102 Madison St, Los Angeles,CA,90001 +171890,iPhone,1,700.0,2019-03-08 00:52:00,162 Sunset St, New York City,NY,10001 +171891,Macbook Pro Laptop,1,1700.0,2019-03-12 20:36:00,502 Maple St, New York City,NY,10001 +171892,Macbook Pro Laptop,1,1700.0,2019-03-05 17:53:00,353 Jefferson St, Boston,MA,02215 +171893,27in FHD Monitor,1,149.99,2019-03-08 10:59:00,797 4th St, San Francisco,CA,94016 +171894,AAA Batteries (4-pack),3,2.99,2019-03-01 12:01:00,825 Church St, San Francisco,CA,94016 +171895,Bose SoundSport Headphones,1,99.99,2019-03-29 21:03:00,724 14th St, San Francisco,CA,94016 +171896,Vareebadd Phone,1,400.0,2019-03-18 05:03:00,77 Lincoln St, San Francisco,CA,94016 +171896,USB-C Charging Cable,1,11.95,2019-03-18 05:03:00,77 Lincoln St, San Francisco,CA,94016 +171897,USB-C Charging Cable,1,11.95,2019-03-28 13:08:00,432 Adams St, Boston,MA,02215 +171898,USB-C Charging Cable,1,11.95,2019-03-27 02:17:00,55 South St, San Francisco,CA,94016 +171899,Wired Headphones,1,11.99,2019-03-12 13:12:00,235 Jefferson St, Portland,OR,97035 +171900,ThinkPad Laptop,1,999.99,2019-03-23 23:09:00,945 12th St, New York City,NY,10001 +171901,Bose SoundSport Headphones,1,99.99,2019-03-30 08:01:00,479 11th St, Portland,OR,97035 +171902,USB-C Charging Cable,2,11.95,2019-03-03 23:18:00,287 Chestnut St, San Francisco,CA,94016 +171903,AA Batteries (4-pack),2,3.84,2019-03-13 20:23:00,318 Forest St, Seattle,WA,98101 +171904,27in 4K Gaming Monitor,1,389.99,2019-03-04 14:32:00,74 North St, Boston,MA,02215 +171904,Lightning Charging Cable,1,14.95,2019-03-04 14:32:00,74 North St, Boston,MA,02215 +171905,Bose SoundSport Headphones,1,99.99,2019-03-07 10:43:00,975 9th St, New York City,NY,10001 +171906,27in 4K Gaming Monitor,1,389.99,2019-03-12 14:10:00,136 Spruce St, Los Angeles,CA,90001 +171907,Lightning Charging Cable,2,14.95,2019-03-16 16:53:00,582 Church St, Los Angeles,CA,90001 +171908,20in Monitor,2,109.99,2019-03-06 14:38:00,864 Lincoln St, Austin,TX,73301 +171909,Bose SoundSport Headphones,1,99.99,2019-03-26 22:41:00,239 5th St, New York City,NY,10001 +171910,Flatscreen TV,1,300.0,2019-03-12 12:46:00,760 Washington St, Boston,MA,02215 +171911,AA Batteries (4-pack),2,3.84,2019-03-19 10:29:00,23 Dogwood St, San Francisco,CA,94016 +171912,Bose SoundSport Headphones,1,99.99,2019-03-19 16:16:00,68 Cedar St, San Francisco,CA,94016 +171912,USB-C Charging Cable,1,11.95,2019-03-19 16:16:00,68 Cedar St, San Francisco,CA,94016 +171913,27in FHD Monitor,1,149.99,2019-03-31 07:52:00,887 West St, New York City,NY,10001 +171914,Flatscreen TV,1,300.0,2019-03-13 18:06:00,662 Park St, Los Angeles,CA,90001 +171915,27in 4K Gaming Monitor,1,389.99,2019-03-24 17:07:00,388 Center St, Portland,ME,04101 +171916,Lightning Charging Cable,1,14.95,2019-03-12 12:39:00,318 Sunset St, New York City,NY,10001 +171917,Wired Headphones,2,11.99,2019-03-24 13:03:00,812 Washington St, Dallas,TX,75001 +171918,AA Batteries (4-pack),1,3.84,2019-03-06 11:21:00,921 7th St, San Francisco,CA,94016 +171919,AA Batteries (4-pack),1,3.84,2019-03-07 19:09:00,280 6th St, New York City,NY,10001 +171920,27in FHD Monitor,1,149.99,2019-03-16 19:24:00,990 Spruce St, Dallas,TX,75001 +171921,Bose SoundSport Headphones,1,99.99,2019-03-09 00:34:00,344 13th St, Portland,OR,97035 +171922,20in Monitor,1,109.99,2019-03-17 11:32:00,762 Hickory St, San Francisco,CA,94016 +171923,Flatscreen TV,1,300.0,2019-03-18 11:25:00,922 North St, Dallas,TX,75001 +171924,AA Batteries (4-pack),1,3.84,2019-03-04 11:48:00,669 Maple St, Austin,TX,73301 +171925,AA Batteries (4-pack),1,3.84,2019-03-24 16:57:00,484 Jefferson St, Boston,MA,02215 +171926,AA Batteries (4-pack),1,3.84,2019-03-08 09:58:00,491 Hickory St, Seattle,WA,98101 +171927,27in 4K Gaming Monitor,1,389.99,2019-03-15 08:44:00,130 Center St, New York City,NY,10001 +171928,AAA Batteries (4-pack),1,2.99,2019-03-20 11:33:00,426 Pine St, Los Angeles,CA,90001 +171929,AA Batteries (4-pack),1,3.84,2019-03-07 19:30:00,870 Walnut St, New York City,NY,10001 +171930,Wired Headphones,1,11.99,2019-03-22 08:09:00,843 9th St, New York City,NY,10001 +171931,Vareebadd Phone,1,400.0,2019-03-19 21:02:00,364 Lincoln St, New York City,NY,10001 +171932,USB-C Charging Cable,1,11.95,2019-03-24 15:04:00,736 Walnut St, New York City,NY,10001 +171933,Apple Airpods Headphones,1,150.0,2019-03-24 11:57:00,221 5th St, Los Angeles,CA,90001 +171934,AA Batteries (4-pack),1,3.84,2019-03-08 11:56:00,60 North St, San Francisco,CA,94016 +171935,LG Washing Machine,1,600.0,2019-03-14 16:42:00,871 South St, Los Angeles,CA,90001 +171935,AAA Batteries (4-pack),2,2.99,2019-03-14 16:42:00,871 South St, Los Angeles,CA,90001 +171936,34in Ultrawide Monitor,1,379.99,2019-03-18 19:26:00,585 9th St, Portland,OR,97035 +171937,AA Batteries (4-pack),1,3.84,2019-03-24 20:11:00,632 Lake St, Seattle,WA,98101 +171938,Lightning Charging Cable,1,14.95,2019-03-02 13:39:00,894 Hill St, Boston,MA,02215 +171939,AA Batteries (4-pack),1,3.84,2019-03-13 22:02:00,606 Chestnut St, Seattle,WA,98101 +171940,Wired Headphones,3,11.99,2019-03-12 19:03:00,233 Church St, Dallas,TX,75001 +171941,ThinkPad Laptop,1,999.99,2019-03-31 11:39:00,19 Wilson St, Boston,MA,02215 +171942,27in 4K Gaming Monitor,1,389.99,2019-03-20 14:15:00,998 Highland St, Los Angeles,CA,90001 +171943,AA Batteries (4-pack),2,3.84,2019-03-06 15:10:00,789 Main St, Seattle,WA,98101 +171944,Lightning Charging Cable,1,14.95,2019-03-31 11:17:00,281 12th St, Austin,TX,73301 +171945,Lightning Charging Cable,2,14.95,2019-03-29 21:17:00,803 10th St, Atlanta,GA,30301 +171945,Macbook Pro Laptop,1,1700.0,2019-03-29 21:17:00,803 10th St, Atlanta,GA,30301 +171946,Apple Airpods Headphones,1,150.0,2019-03-07 10:39:00,503 Lincoln St, Austin,TX,73301 +171947,34in Ultrawide Monitor,1,379.99,2019-03-25 00:43:00,783 1st St, Seattle,WA,98101 +171948,USB-C Charging Cable,1,11.95,2019-03-31 06:13:00,728 North St, San Francisco,CA,94016 +171949,Apple Airpods Headphones,1,150.0,2019-03-17 13:25:00,707 Cedar St, Dallas,TX,75001 +171950,Apple Airpods Headphones,1,150.0,2019-03-05 11:27:00,924 Washington St, Los Angeles,CA,90001 +171951,34in Ultrawide Monitor,1,379.99,2019-03-03 18:18:00,184 Lincoln St, Los Angeles,CA,90001 +171952,AA Batteries (4-pack),1,3.84,2019-03-27 16:25:00,307 Pine St, Seattle,WA,98101 +171953,Wired Headphones,4,11.99,2019-03-31 10:11:00,787 Sunset St, Austin,TX,73301 +171954,AA Batteries (4-pack),1,3.84,2019-03-19 11:30:00,924 5th St, San Francisco,CA,94016 +171955,iPhone,1,700.0,2019-03-27 14:43:00,353 Dogwood St, Austin,TX,73301 +171956,34in Ultrawide Monitor,1,379.99,2019-03-23 13:35:00,442 Hill St, New York City,NY,10001 +171957,34in Ultrawide Monitor,1,379.99,2019-03-27 06:28:00,46 Lake St, Dallas,TX,75001 +171958,AA Batteries (4-pack),2,3.84,2019-03-14 19:06:00,684 Wilson St, Los Angeles,CA,90001 +171959,Wired Headphones,1,11.99,2019-03-29 16:53:00,472 Washington St, New York City,NY,10001 +171960,Lightning Charging Cable,1,14.95,2019-03-01 08:30:00,66 2nd St, New York City,NY,10001 +171961,AAA Batteries (4-pack),1,2.99,2019-03-11 19:02:00,300 Walnut St, San Francisco,CA,94016 +171962,Apple Airpods Headphones,1,150.0,2019-03-01 12:35:00,715 Willow St, San Francisco,CA,94016 +171963,Bose SoundSport Headphones,1,99.99,2019-03-17 15:48:00,848 South St, New York City,NY,10001 +171964,Wired Headphones,1,11.99,2019-03-08 18:13:00,871 Dogwood St, Dallas,TX,75001 +171965,AAA Batteries (4-pack),1,2.99,2019-03-25 22:17:00,890 14th St, Atlanta,GA,30301 +171966,AAA Batteries (4-pack),1,2.99,2019-03-19 22:50:00,210 Church St, Boston,MA,02215 +171967,Vareebadd Phone,1,400.0,2019-03-14 14:59:00,344 Main St, San Francisco,CA,94016 +171968,AA Batteries (4-pack),1,3.84,2019-03-07 08:52:00,397 1st St, San Francisco,CA,94016 +171969,USB-C Charging Cable,1,11.95,2019-03-03 07:04:00,411 Pine St, Los Angeles,CA,90001 +171970,Lightning Charging Cable,1,14.95,2019-03-22 16:15:00,730 South St, Los Angeles,CA,90001 +171971,USB-C Charging Cable,1,11.95,2019-03-13 15:40:00,681 Wilson St, Dallas,TX,75001 +171972,Lightning Charging Cable,1,14.95,2019-03-28 18:46:00,451 Wilson St, Austin,TX,73301 +171973,Macbook Pro Laptop,1,1700.0,2019-03-15 17:33:00,959 Forest St, Atlanta,GA,30301 +171974,AA Batteries (4-pack),1,3.84,2019-03-24 00:06:00,477 Wilson St, Portland,ME,04101 +171975,27in 4K Gaming Monitor,1,389.99,2019-03-10 00:46:00,512 Dogwood St, Austin,TX,73301 +171976,AA Batteries (4-pack),1,3.84,2019-03-28 11:09:00,708 Jackson St, Boston,MA,02215 +171977,Apple Airpods Headphones,1,150.0,2019-03-17 21:57:00,656 Meadow St, New York City,NY,10001 +171978,Wired Headphones,1,11.99,2019-03-10 21:58:00,476 13th St, San Francisco,CA,94016 +171979,34in Ultrawide Monitor,1,379.99,2019-03-13 16:12:00,980 South St, Dallas,TX,75001 +171980,USB-C Charging Cable,1,11.95,2019-03-21 20:16:00,67 River St, Los Angeles,CA,90001 +171981,Lightning Charging Cable,1,14.95,2019-03-01 09:37:00,282 River St, Seattle,WA,98101 +171982,Bose SoundSport Headphones,1,99.99,2019-03-17 09:21:00,140 Park St, Dallas,TX,75001 +171983,USB-C Charging Cable,1,11.95,2019-03-25 14:20:00,623 Center St, Portland,OR,97035 +171984,Flatscreen TV,1,300.0,2019-03-14 20:15:00,961 Spruce St, Seattle,WA,98101 +171985,Macbook Pro Laptop,1,1700.0,2019-03-29 22:25:00,81 South St, San Francisco,CA,94016 +171986,iPhone,1,700.0,2019-03-23 10:00:00,403 Church St, San Francisco,CA,94016 +171987,27in 4K Gaming Monitor,1,389.99,2019-03-10 12:30:00,859 Madison St, New York City,NY,10001 +171988,AAA Batteries (4-pack),2,2.99,2019-03-03 22:39:00,846 6th St, Los Angeles,CA,90001 +171989,iPhone,1,700.0,2019-03-19 21:47:00,182 7th St, Seattle,WA,98101 +171990,27in FHD Monitor,1,149.99,2019-03-16 20:33:00,612 Dogwood St, San Francisco,CA,94016 +171991,USB-C Charging Cable,1,11.95,2019-03-21 03:31:00,323 10th St, Atlanta,GA,30301 +171992,ThinkPad Laptop,1,999.99,2019-03-17 11:44:00,539 Wilson St, Los Angeles,CA,90001 +171993,AAA Batteries (4-pack),1,2.99,2019-03-04 23:01:00,58 Main St, Dallas,TX,75001 +171994,AA Batteries (4-pack),1,3.84,2019-03-19 09:04:00,792 Sunset St, Los Angeles,CA,90001 +171995,AA Batteries (4-pack),1,3.84,2019-03-22 19:43:00,352 Maple St, Seattle,WA,98101 +171996,Lightning Charging Cable,1,14.95,2019-03-28 17:28:00,980 6th St, New York City,NY,10001 +171997,Apple Airpods Headphones,1,150.0,2019-03-07 02:25:00,97 11th St, Portland,ME,04101 +171998,Bose SoundSport Headphones,1,99.99,2019-03-23 11:50:00,234 West St, San Francisco,CA,94016 +171999,AA Batteries (4-pack),1,3.84,2019-03-23 14:56:00,766 River St, New York City,NY,10001 +172000,27in 4K Gaming Monitor,1,389.99,2019-03-31 14:50:00,222 Main St, New York City,NY,10001 +172001,Bose SoundSport Headphones,1,99.99,2019-03-31 00:48:00,752 Elm St, San Francisco,CA,94016 +172002,Wired Headphones,1,11.99,2019-03-20 18:25:00,152 Adams St, San Francisco,CA,94016 +172003,AAA Batteries (4-pack),2,2.99,2019-03-19 17:28:00,966 West St, Los Angeles,CA,90001 +172004,Apple Airpods Headphones,1,150.0,2019-03-04 00:40:00,942 Church St, Los Angeles,CA,90001 +172005,USB-C Charging Cable,1,11.95,2019-03-06 12:24:00,212 Jefferson St, San Francisco,CA,94016 +172006,Apple Airpods Headphones,1,150.0,2019-03-23 14:01:00,494 Pine St, Atlanta,GA,30301 +172007,27in FHD Monitor,1,149.99,2019-03-03 13:12:00,27 4th St, Los Angeles,CA,90001 +172008,Lightning Charging Cable,1,14.95,2019-03-01 21:22:00,935 West St, Boston,MA,02215 +172009,iPhone,1,700.0,2019-03-25 22:55:00,956 River St, Dallas,TX,75001 +172010,Bose SoundSport Headphones,1,99.99,2019-03-22 21:52:00,880 13th St, San Francisco,CA,94016 +172011,Bose SoundSport Headphones,1,99.99,2019-03-09 19:43:00,531 6th St, New York City,NY,10001 +172012,AAA Batteries (4-pack),1,2.99,2019-03-26 18:25:00,752 Madison St, Seattle,WA,98101 +172013,Wired Headphones,2,11.99,2019-03-03 18:03:00,596 Center St, San Francisco,CA,94016 +172014,Flatscreen TV,1,300.0,2019-03-10 14:45:00,45 Willow St, San Francisco,CA,94016 +172015,Bose SoundSport Headphones,1,99.99,2019-03-22 15:12:00,183 Main St, New York City,NY,10001 +172016,AAA Batteries (4-pack),1,2.99,2019-03-02 15:42:00,640 Hill St, Seattle,WA,98101 +172017,USB-C Charging Cable,1,11.95,2019-03-17 09:06:00,187 Hill St, New York City,NY,10001 +172018,USB-C Charging Cable,1,11.95,2019-03-02 19:26:00,704 Church St, New York City,NY,10001 +172019,AA Batteries (4-pack),1,3.84,2019-03-25 21:41:00,694 Madison St, Los Angeles,CA,90001 +172020,USB-C Charging Cable,1,11.95,2019-03-31 16:47:00,972 Walnut St, Dallas,TX,75001 +172021,Lightning Charging Cable,1,14.95,2019-03-14 18:12:00,585 13th St, Dallas,TX,75001 +172022,USB-C Charging Cable,1,11.95,2019-03-15 08:21:00,767 Main St, New York City,NY,10001 +172023,USB-C Charging Cable,1,11.95,2019-03-11 16:21:00,723 Park St, Los Angeles,CA,90001 +172024,Lightning Charging Cable,1,14.95,2019-03-26 13:44:00,142 Church St, Los Angeles,CA,90001 +172025,Lightning Charging Cable,1,14.95,2019-03-05 12:39:00,922 Sunset St, San Francisco,CA,94016 +172026,AA Batteries (4-pack),1,3.84,2019-03-03 12:56:00,974 Dogwood St, Boston,MA,02215 +172027,27in 4K Gaming Monitor,1,389.99,2019-03-05 11:09:00,193 Jefferson St, New York City,NY,10001 +172028,Apple Airpods Headphones,1,150.0,2019-03-07 13:49:00,421 Center St, San Francisco,CA,94016 +172029,iPhone,1,700.0,2019-03-14 11:40:00,191 Sunset St, San Francisco,CA,94016 +172029,Wired Headphones,1,11.99,2019-03-14 11:40:00,191 Sunset St, San Francisco,CA,94016 +172030,Lightning Charging Cable,1,14.95,2019-03-09 21:22:00,497 Cherry St, Seattle,WA,98101 +172031,Flatscreen TV,1,300.0,2019-03-14 18:43:00,423 2nd St, New York City,NY,10001 +172032,Google Phone,1,600.0,2019-03-22 14:17:00,954 13th St, Los Angeles,CA,90001 +172033,USB-C Charging Cable,1,11.95,2019-03-05 21:28:00,35 10th St, Boston,MA,02215 +172034,AAA Batteries (4-pack),3,2.99,2019-03-20 18:36:00,431 Highland St, San Francisco,CA,94016 +172035,Bose SoundSport Headphones,1,99.99,2019-03-21 14:24:00,510 Lincoln St, Los Angeles,CA,90001 +172036,AA Batteries (4-pack),1,3.84,2019-03-29 17:58:00,55 Hill St, Portland,OR,97035 +172037,AA Batteries (4-pack),1,3.84,2019-03-27 12:39:00,250 Wilson St, Los Angeles,CA,90001 +172038,27in FHD Monitor,1,149.99,2019-03-03 14:14:00,705 Lincoln St, San Francisco,CA,94016 +172039,AA Batteries (4-pack),2,3.84,2019-03-10 18:48:00,789 South St, San Francisco,CA,94016 +172040,AAA Batteries (4-pack),1,2.99,2019-03-09 18:47:00,600 Lincoln St, San Francisco,CA,94016 +172040,Wired Headphones,1,11.99,2019-03-09 18:47:00,600 Lincoln St, San Francisco,CA,94016 +172041,AAA Batteries (4-pack),2,2.99,2019-03-15 10:34:00,81 North St, San Francisco,CA,94016 +172042,27in 4K Gaming Monitor,1,389.99,2019-03-03 07:57:00,268 Lincoln St, Boston,MA,02215 +172043,AA Batteries (4-pack),1,3.84,2019-03-16 11:20:00,566 12th St, New York City,NY,10001 +172044,ThinkPad Laptop,1,999.99,2019-03-19 18:58:00,260 Jackson St, New York City,NY,10001 +172045,Bose SoundSport Headphones,1,99.99,2019-03-22 11:56:00,318 8th St, San Francisco,CA,94016 +172046,AA Batteries (4-pack),1,3.84,2019-03-24 21:14:00,553 13th St, New York City,NY,10001 +172047,27in 4K Gaming Monitor,1,389.99,2019-03-15 13:00:00,729 Johnson St, New York City,NY,10001 +172048,AAA Batteries (4-pack),3,2.99,2019-03-20 19:25:00,211 Maple St, Portland,ME,04101 +172049,Lightning Charging Cable,1,14.95,2019-03-14 23:39:00,218 Hill St, Seattle,WA,98101 +172050,AA Batteries (4-pack),2,3.84,2019-03-21 03:04:00,701 11th St, San Francisco,CA,94016 +172051,Wired Headphones,2,11.99,2019-03-15 21:35:00,563 West St, Boston,MA,02215 +172052,ThinkPad Laptop,1,999.99,2019-03-22 15:15:00,102 Wilson St, New York City,NY,10001 +172053,Lightning Charging Cable,1,14.95,2019-03-26 21:46:00,770 Adams St, San Francisco,CA,94016 +172054,USB-C Charging Cable,1,11.95,2019-03-04 13:44:00,925 6th St, Los Angeles,CA,90001 +172055,Lightning Charging Cable,1,14.95,2019-03-10 13:14:00,330 West St, Los Angeles,CA,90001 +172056,20in Monitor,1,109.99,2019-03-10 23:31:00,476 Chestnut St, New York City,NY,10001 +172057,AA Batteries (4-pack),1,3.84,2019-03-25 08:27:00,198 Washington St, Atlanta,GA,30301 +172058,LG Washing Machine,1,600.0,2019-03-07 14:27:00,923 6th St, Dallas,TX,75001 +172059,AA Batteries (4-pack),1,3.84,2019-03-30 10:48:00,331 Forest St, Dallas,TX,75001 +172060,USB-C Charging Cable,1,11.95,2019-03-27 14:03:00,64 Forest St, Boston,MA,02215 +172061,27in 4K Gaming Monitor,1,389.99,2019-03-28 14:34:00,592 Forest St, San Francisco,CA,94016 +172062,Wired Headphones,1,11.99,2019-03-23 11:53:00,824 9th St, San Francisco,CA,94016 +172063,AA Batteries (4-pack),1,3.84,2019-03-03 16:42:00,314 2nd St, San Francisco,CA,94016 +172064,Wired Headphones,1,11.99,2019-03-24 09:30:00,52 12th St, Los Angeles,CA,90001 +172065,AAA Batteries (4-pack),1,2.99,2019-03-28 09:53:00,698 Cedar St, Atlanta,GA,30301 +172066,Bose SoundSport Headphones,1,99.99,2019-03-19 12:42:00,561 Jefferson St, Portland,OR,97035 +172067,Apple Airpods Headphones,1,150.0,2019-03-21 16:28:00,694 Highland St, Austin,TX,73301 +172068,27in 4K Gaming Monitor,1,389.99,2019-03-18 19:29:00,582 Pine St, San Francisco,CA,94016 +172069,Wired Headphones,1,11.99,2019-03-10 13:04:00,507 1st St, Portland,OR,97035 +172070,20in Monitor,1,109.99,2019-03-08 22:32:00,51 14th St, Los Angeles,CA,90001 +172070,Lightning Charging Cable,1,14.95,2019-03-08 22:32:00,51 14th St, Los Angeles,CA,90001 +172071,34in Ultrawide Monitor,1,379.99,2019-03-19 08:21:00,463 North St, Portland,OR,97035 +172072,USB-C Charging Cable,1,11.95,2019-03-05 09:44:00,947 Cedar St, Boston,MA,02215 +172073,AAA Batteries (4-pack),1,2.99,2019-03-08 00:18:00,706 2nd St, Atlanta,GA,30301 +172074,AAA Batteries (4-pack),1,2.99,2019-03-10 10:37:00,969 11th St, San Francisco,CA,94016 +172075,Lightning Charging Cable,1,14.95,2019-03-13 19:17:00,626 11th St, Seattle,WA,98101 +172076,AAA Batteries (4-pack),5,2.99,2019-03-28 18:03:00,851 Center St, Portland,OR,97035 +172077,AA Batteries (4-pack),2,3.84,2019-03-11 19:53:00,135 Church St, New York City,NY,10001 +172078,27in FHD Monitor,1,149.99,2019-03-12 11:34:00,222 5th St, Seattle,WA,98101 +172079,Lightning Charging Cable,1,14.95,2019-03-12 11:06:00,839 Lincoln St, Los Angeles,CA,90001 +172080,Bose SoundSport Headphones,1,99.99,2019-03-07 17:38:00,973 5th St, Boston,MA,02215 +172081,ThinkPad Laptop,1,999.99,2019-03-26 22:27:00,761 11th St, San Francisco,CA,94016 +172082,USB-C Charging Cable,1,11.95,2019-03-25 19:13:00,285 4th St, Atlanta,GA,30301 +172083,Lightning Charging Cable,1,14.95,2019-03-10 16:40:00,101 14th St, Dallas,TX,75001 +172084,Apple Airpods Headphones,1,150.0,2019-03-13 12:36:00,337 Pine St, Dallas,TX,75001 +172085,Apple Airpods Headphones,1,150.0,2019-03-21 16:20:00,787 9th St, San Francisco,CA,94016 +172086,Wired Headphones,1,11.99,2019-03-13 12:30:00,713 Walnut St, New York City,NY,10001 +172087,Lightning Charging Cable,1,14.95,2019-03-14 19:23:00,419 North St, Los Angeles,CA,90001 +172088,Apple Airpods Headphones,1,150.0,2019-03-09 12:15:00,163 Center St, Los Angeles,CA,90001 +172089,Apple Airpods Headphones,1,150.0,2019-03-09 09:35:00,794 Pine St, San Francisco,CA,94016 +172090,Bose SoundSport Headphones,1,99.99,2019-03-12 13:30:00,105 1st St, Austin,TX,73301 +172091,Bose SoundSport Headphones,1,99.99,2019-03-29 18:41:00,694 Main St, New York City,NY,10001 +172092,ThinkPad Laptop,1,999.99,2019-03-29 16:54:00,627 1st St, San Francisco,CA,94016 +172093,USB-C Charging Cable,1,11.95,2019-03-31 19:50:00,394 Johnson St, Atlanta,GA,30301 +172094,AAA Batteries (4-pack),1,2.99,2019-03-22 19:24:00,947 Chestnut St, Austin,TX,73301 +172095,AAA Batteries (4-pack),2,2.99,2019-03-03 23:36:00,689 2nd St, San Francisco,CA,94016 +172096,USB-C Charging Cable,1,11.95,2019-03-05 16:24:00,884 6th St, Seattle,WA,98101 +172097,USB-C Charging Cable,1,11.95,2019-03-12 15:05:00,582 Meadow St, Los Angeles,CA,90001 +172098,AA Batteries (4-pack),1,3.84,2019-03-17 12:10:00,683 8th St, Los Angeles,CA,90001 +172099,AA Batteries (4-pack),1,3.84,2019-03-18 16:38:00,782 6th St, New York City,NY,10001 +172100,Lightning Charging Cable,1,14.95,2019-03-28 20:26:00,648 Meadow St, San Francisco,CA,94016 +172101,AAA Batteries (4-pack),2,2.99,2019-03-13 08:55:00,975 Johnson St, Los Angeles,CA,90001 +172102,USB-C Charging Cable,2,11.95,2019-03-16 13:21:00,232 1st St, Portland,OR,97035 +172103,Apple Airpods Headphones,1,150.0,2019-03-06 20:06:00,72 4th St, Seattle,WA,98101 +172104,Wired Headphones,1,11.99,2019-03-24 18:26:00,708 6th St, Dallas,TX,75001 +172105,Bose SoundSport Headphones,1,99.99,2019-03-15 12:59:00,254 9th St, Boston,MA,02215 +172106,USB-C Charging Cable,1,11.95,2019-03-15 20:30:00,949 Wilson St, New York City,NY,10001 +172107,20in Monitor,1,109.99,2019-03-16 20:45:00,226 Hill St, Seattle,WA,98101 +172108,Lightning Charging Cable,1,14.95,2019-03-29 17:56:00,499 Church St, Dallas,TX,75001 +172109,Bose SoundSport Headphones,1,99.99,2019-03-14 14:16:00,199 Lakeview St, San Francisco,CA,94016 +172110,Google Phone,1,600.0,2019-03-27 21:28:00,608 Center St, Atlanta,GA,30301 +172111,Lightning Charging Cable,1,14.95,2019-03-03 10:10:00,845 Lincoln St, San Francisco,CA,94016 +172112,Wired Headphones,1,11.99,2019-03-26 10:40:00,747 North St, San Francisco,CA,94016 +172113,USB-C Charging Cable,1,11.95,2019-03-23 14:44:00,784 Church St, Dallas,TX,75001 +172114,AA Batteries (4-pack),1,3.84,2019-03-03 18:34:00,70 Willow St, San Francisco,CA,94016 +172115,Lightning Charging Cable,1,14.95,2019-03-05 16:26:00,549 Main St, San Francisco,CA,94016 +172116,20in Monitor,1,109.99,2019-03-15 16:15:00,720 4th St, New York City,NY,10001 +172117,USB-C Charging Cable,1,11.95,2019-03-02 07:05:00,693 Meadow St, San Francisco,CA,94016 +172118,USB-C Charging Cable,1,11.95,2019-03-21 03:24:00,199 13th St, San Francisco,CA,94016 +172119,Apple Airpods Headphones,1,150.0,2019-03-05 16:41:00,631 North St, San Francisco,CA,94016 +172120,Lightning Charging Cable,1,14.95,2019-03-02 21:45:00,202 Forest St, Atlanta,GA,30301 +172121,USB-C Charging Cable,1,11.95,2019-03-06 18:19:00,113 Cedar St, San Francisco,CA,94016 +172122,USB-C Charging Cable,1,11.95,2019-03-19 20:37:00,929 7th St, Los Angeles,CA,90001 +172123,AAA Batteries (4-pack),2,2.99,2019-03-14 23:13:00,594 Spruce St, Boston,MA,02215 +172123,Wired Headphones,1,11.99,2019-03-14 23:13:00,594 Spruce St, Boston,MA,02215 +172124,Wired Headphones,1,11.99,2019-03-28 20:01:00,462 Jackson St, Seattle,WA,98101 +172125,Lightning Charging Cable,1,14.95,2019-03-12 11:47:00,885 Jackson St, Los Angeles,CA,90001 +172126,Bose SoundSport Headphones,1,99.99,2019-03-15 19:31:00,362 Elm St, San Francisco,CA,94016 +172127,USB-C Charging Cable,1,11.95,2019-03-28 17:58:00,128 9th St, Boston,MA,02215 +172128,20in Monitor,1,109.99,2019-03-04 18:00:00,657 Johnson St, San Francisco,CA,94016 +172129,iPhone,1,700.0,2019-03-20 05:59:00,132 14th St, Los Angeles,CA,90001 +172130,AA Batteries (4-pack),1,3.84,2019-03-02 07:15:00,45 9th St, Seattle,WA,98101 +172131,Bose SoundSport Headphones,1,99.99,2019-03-05 12:55:00,671 Jackson St, San Francisco,CA,94016 +172132,USB-C Charging Cable,1,11.95,2019-03-19 20:51:00,260 Chestnut St, Seattle,WA,98101 +172133,AA Batteries (4-pack),1,3.84,2019-03-29 21:53:00,541 Wilson St, Los Angeles,CA,90001 +172134,27in FHD Monitor,1,149.99,2019-03-19 10:44:00,882 2nd St, Dallas,TX,75001 +172135,Apple Airpods Headphones,1,150.0,2019-03-02 11:42:00,609 South St, Boston,MA,02215 +172136,Apple Airpods Headphones,1,150.0,2019-03-22 00:09:00,258 Willow St, Los Angeles,CA,90001 +172137,Wired Headphones,1,11.99,2019-03-11 14:41:00,28 Lakeview St, New York City,NY,10001 +172138,AAA Batteries (4-pack),1,2.99,2019-03-30 08:49:00,965 Dogwood St, New York City,NY,10001 +172139,AAA Batteries (4-pack),1,2.99,2019-03-10 18:36:00,466 West St, Boston,MA,02215 +172140,USB-C Charging Cable,1,11.95,2019-03-06 13:19:00,493 Lakeview St, Dallas,TX,75001 +172141,27in 4K Gaming Monitor,1,389.99,2019-03-19 14:40:00,227 Lincoln St, Atlanta,GA,30301 +172142,AA Batteries (4-pack),1,3.84,2019-03-30 14:57:00,754 Dogwood St, San Francisco,CA,94016 +172143,Lightning Charging Cable,1,14.95,2019-03-24 20:02:00,231 Willow St, Atlanta,GA,30301 +172144,USB-C Charging Cable,1,11.95,2019-03-20 15:26:00,86 Jackson St, Portland,ME,04101 +172145,ThinkPad Laptop,1,999.99,2019-03-07 19:22:00,458 Lincoln St, New York City,NY,10001 +172146,AA Batteries (4-pack),1,3.84,2019-03-21 14:54:00,21 Pine St, Dallas,TX,75001 +172147,Wired Headphones,1,11.99,2019-03-23 10:34:00,582 Wilson St, New York City,NY,10001 +172148,27in FHD Monitor,1,149.99,2019-03-27 22:32:00,988 Center St, New York City,NY,10001 +172149,Bose SoundSport Headphones,1,99.99,2019-03-01 22:34:00,967 6th St, Los Angeles,CA,90001 +172150,Apple Airpods Headphones,1,150.0,2019-03-27 00:09:00,349 Ridge St, Austin,TX,73301 +172151,Bose SoundSport Headphones,1,99.99,2019-03-26 11:28:00,469 Lakeview St, Los Angeles,CA,90001 +172152,Vareebadd Phone,1,400.0,2019-03-16 12:25:00,123 Jefferson St, Boston,MA,02215 +172153,USB-C Charging Cable,1,11.95,2019-03-01 18:58:00,387 Johnson St, Portland,OR,97035 +172154,Lightning Charging Cable,1,14.95,2019-03-14 21:56:00,747 Church St, New York City,NY,10001 +172155,USB-C Charging Cable,1,11.95,2019-03-11 23:08:00,712 1st St, New York City,NY,10001 +172156,iPhone,1,700.0,2019-03-16 04:16:00,463 Center St, San Francisco,CA,94016 +172157,27in FHD Monitor,1,149.99,2019-03-17 19:27:00,759 Main St, Portland,OR,97035 +172158,USB-C Charging Cable,1,11.95,2019-03-13 18:18:00,528 Spruce St, Los Angeles,CA,90001 +172159,34in Ultrawide Monitor,1,379.99,2019-03-06 19:58:00,23 Willow St, San Francisco,CA,94016 +172160,Lightning Charging Cable,1,14.95,2019-03-17 19:34:00,936 Cedar St, Los Angeles,CA,90001 +172161,USB-C Charging Cable,1,11.95,2019-03-21 02:56:00,853 7th St, Atlanta,GA,30301 +172162,Bose SoundSport Headphones,1,99.99,2019-03-16 08:27:00,605 14th St, Los Angeles,CA,90001 +172163,Flatscreen TV,1,300.0,2019-03-03 11:36:00,70 Washington St, Los Angeles,CA,90001 +172164,AAA Batteries (4-pack),1,2.99,2019-03-21 10:29:00,941 Hill St, Los Angeles,CA,90001 +172165,AA Batteries (4-pack),1,3.84,2019-03-24 17:48:00,157 Dogwood St, Seattle,WA,98101 +172166,Wired Headphones,1,11.99,2019-03-02 09:06:00,895 11th St, Boston,MA,02215 +172167,AA Batteries (4-pack),2,3.84,2019-03-29 15:56:00,288 Adams St, Dallas,TX,75001 +172168,Wired Headphones,1,11.99,2019-03-19 05:50:00,25 Highland St, Boston,MA,02215 +172169,AA Batteries (4-pack),1,3.84,2019-03-13 12:22:00,793 Hickory St, San Francisco,CA,94016 +172170,Vareebadd Phone,1,400.0,2019-03-14 13:33:00,196 South St, Atlanta,GA,30301 +172171,Flatscreen TV,1,300.0,2019-03-23 20:39:00,3 Ridge St, San Francisco,CA,94016 +172171,27in FHD Monitor,1,149.99,2019-03-23 20:39:00,3 Ridge St, San Francisco,CA,94016 +172172,Macbook Pro Laptop,1,1700.0,2019-03-07 13:37:00,528 Johnson St, Boston,MA,02215 +172173,Bose SoundSport Headphones,1,99.99,2019-03-26 13:21:00,220 Center St, Dallas,TX,75001 +172174,27in 4K Gaming Monitor,1,389.99,2019-03-23 10:17:00,483 Highland St, New York City,NY,10001 +172175,Google Phone,1,600.0,2019-03-02 15:34:00,131 Chestnut St, Los Angeles,CA,90001 +172175,USB-C Charging Cable,1,11.95,2019-03-02 15:34:00,131 Chestnut St, Los Angeles,CA,90001 +172176,Google Phone,1,600.0,2019-03-26 08:49:00,983 Hill St, Boston,MA,02215 +172176,USB-C Charging Cable,1,11.95,2019-03-26 08:49:00,983 Hill St, Boston,MA,02215 +172177,AAA Batteries (4-pack),1,2.99,2019-03-08 18:08:00,225 Cedar St, San Francisco,CA,94016 +172177,Wired Headphones,1,11.99,2019-03-08 18:08:00,225 Cedar St, San Francisco,CA,94016 +172178,Lightning Charging Cable,1,14.95,2019-03-29 19:25:00,383 Lincoln St, Los Angeles,CA,90001 +172179,iPhone,1,700.0,2019-03-24 13:04:00,72 Lakeview St, New York City,NY,10001 +172180,Apple Airpods Headphones,1,150.0,2019-03-03 04:52:00,623 Lake St, San Francisco,CA,94016 +172181,AA Batteries (4-pack),1,3.84,2019-03-27 20:10:00,753 7th St, Boston,MA,02215 +172182,USB-C Charging Cable,1,11.95,2019-03-23 16:05:00,650 Wilson St, Los Angeles,CA,90001 +172183,Bose SoundSport Headphones,1,99.99,2019-03-27 13:58:00,488 West St, Dallas,TX,75001 +172183,AAA Batteries (4-pack),3,2.99,2019-03-27 13:58:00,488 West St, Dallas,TX,75001 +172184,Flatscreen TV,1,300.0,2019-03-03 18:36:00,45 Spruce St, Austin,TX,73301 +172185,Wired Headphones,1,11.99,2019-03-13 23:59:00,261 Hill St, Dallas,TX,75001 +172186,27in 4K Gaming Monitor,1,389.99,2019-03-01 10:19:00,842 Dogwood St, San Francisco,CA,94016 +172187,Lightning Charging Cable,1,14.95,2019-03-07 14:28:00,512 12th St, Boston,MA,02215 +172188,Bose SoundSport Headphones,1,99.99,2019-03-17 15:44:00,6 12th St, Austin,TX,73301 +172189,AA Batteries (4-pack),1,3.84,2019-03-12 08:51:00,716 Johnson St, San Francisco,CA,94016 +172190,Lightning Charging Cable,1,14.95,2019-03-13 14:38:00,358 Cedar St, New York City,NY,10001 +172191,34in Ultrawide Monitor,1,379.99,2019-03-18 13:04:00,908 5th St, Los Angeles,CA,90001 +172192,27in FHD Monitor,1,149.99,2019-03-05 22:17:00,157 Lake St, Boston,MA,02215 +172193,34in Ultrawide Monitor,1,379.99,2019-03-01 21:31:00,132 Johnson St, Los Angeles,CA,90001 +172194,Bose SoundSport Headphones,1,99.99,2019-03-17 13:07:00,490 5th St, New York City,NY,10001 +172195,AA Batteries (4-pack),1,3.84,2019-03-11 18:46:00,253 Hickory St, Los Angeles,CA,90001 +172196,27in FHD Monitor,1,149.99,2019-03-23 02:11:00,91 Maple St, San Francisco,CA,94016 +172197,Apple Airpods Headphones,1,150.0,2019-03-05 22:27:00,889 Jackson St, Los Angeles,CA,90001 +172198,AAA Batteries (4-pack),1,2.99,2019-03-13 16:40:00,504 10th St, Boston,MA,02215 +172199,Bose SoundSport Headphones,1,99.99,2019-03-14 19:18:00,73 Walnut St, Atlanta,GA,30301 +172200,Apple Airpods Headphones,1,150.0,2019-03-30 11:03:00,109 Meadow St, San Francisco,CA,94016 +172201,Google Phone,1,600.0,2019-03-17 12:24:00,987 13th St, Atlanta,GA,30301 +172201,Wired Headphones,1,11.99,2019-03-17 12:24:00,987 13th St, Atlanta,GA,30301 +172202,Apple Airpods Headphones,1,150.0,2019-03-18 21:44:00,818 Main St, Boston,MA,02215 +172203,27in FHD Monitor,1,149.99,2019-03-29 15:38:00,544 Lakeview St, Boston,MA,02215 +172204,Bose SoundSport Headphones,1,99.99,2019-03-18 08:23:00,267 Hill St, Boston,MA,02215 +172205,iPhone,1,700.0,2019-03-20 19:07:00,751 Lakeview St, Austin,TX,73301 +172205,Apple Airpods Headphones,1,150.0,2019-03-20 19:07:00,751 Lakeview St, Austin,TX,73301 +172206,AA Batteries (4-pack),1,3.84,2019-03-15 15:31:00,132 5th St, Atlanta,GA,30301 +172207,ThinkPad Laptop,1,999.99,2019-03-20 23:53:00,581 Hill St, New York City,NY,10001 +172208,Google Phone,1,600.0,2019-03-30 15:47:00,451 11th St, Atlanta,GA,30301 +172208,USB-C Charging Cable,1,11.95,2019-03-30 15:47:00,451 11th St, Atlanta,GA,30301 +172209,AAA Batteries (4-pack),2,2.99,2019-03-30 08:38:00,484 Elm St, Portland,OR,97035 +172210,Lightning Charging Cable,1,14.95,2019-03-18 21:18:00,671 Johnson St, Austin,TX,73301 +172211,AA Batteries (4-pack),1,3.84,2019-03-16 20:13:00,818 Center St, San Francisco,CA,94016 +172212,AAA Batteries (4-pack),2,2.99,2019-03-06 15:58:00,540 Maple St, San Francisco,CA,94016 +172213,Lightning Charging Cable,1,14.95,2019-03-17 09:23:00,948 Meadow St, San Francisco,CA,94016 +172214,27in FHD Monitor,1,149.99,2019-03-07 23:42:00,670 Maple St, San Francisco,CA,94016 +172215,20in Monitor,1,109.99,2019-03-14 16:11:00,101 River St, San Francisco,CA,94016 +172216,AAA Batteries (4-pack),1,2.99,2019-03-16 09:49:00,843 7th St, Atlanta,GA,30301 +172217,ThinkPad Laptop,1,999.99,2019-03-27 12:02:00,623 Walnut St, New York City,NY,10001 +172218,AAA Batteries (4-pack),1,2.99,2019-03-03 21:03:00,622 Center St, Boston,MA,02215 +172219,Lightning Charging Cable,1,14.95,2019-03-30 01:57:00,524 Forest St, New York City,NY,10001 +172220,USB-C Charging Cable,1,11.95,2019-03-27 12:21:00,992 Church St, Seattle,WA,98101 +172221,AA Batteries (4-pack),1,3.84,2019-03-06 12:59:00,367 2nd St, San Francisco,CA,94016 +172222,Apple Airpods Headphones,1,150.0,2019-03-23 10:43:00,741 Wilson St, San Francisco,CA,94016 +172223,iPhone,1,700.0,2019-03-27 06:38:00,678 Chestnut St, Boston,MA,02215 +172223,Lightning Charging Cable,1,14.95,2019-03-27 06:38:00,678 Chestnut St, Boston,MA,02215 +172224,AAA Batteries (4-pack),1,2.99,2019-03-08 08:55:00,35 Elm St, Los Angeles,CA,90001 +172225,20in Monitor,1,109.99,2019-03-08 11:01:00,64 River St, Atlanta,GA,30301 +172226,ThinkPad Laptop,1,999.99,2019-03-09 09:10:00,37 Park St, Boston,MA,02215 +172227,USB-C Charging Cable,1,11.95,2019-03-06 16:19:00,319 Sunset St, Seattle,WA,98101 +172228,Apple Airpods Headphones,1,150.0,2019-03-09 21:59:00,950 2nd St, Los Angeles,CA,90001 +172229,Google Phone,1,600.0,2019-03-20 20:19:00,773 Park St, San Francisco,CA,94016 +172230,Apple Airpods Headphones,1,150.0,2019-03-26 16:02:00,329 6th St, New York City,NY,10001 +172231,Bose SoundSport Headphones,1,99.99,2019-03-16 18:21:00,505 River St, Portland,OR,97035 +172232,Bose SoundSport Headphones,1,99.99,2019-03-29 23:00:00,832 Jackson St, New York City,NY,10001 +172233,27in FHD Monitor,1,149.99,2019-03-09 19:52:00,271 Hickory St, Portland,OR,97035 +172234,27in 4K Gaming Monitor,1,389.99,2019-03-27 13:32:00,250 Hickory St, Dallas,TX,75001 +172235,Macbook Pro Laptop,1,1700.0,2019-03-09 18:46:00,826 6th St, San Francisco,CA,94016 +172236,iPhone,1,700.0,2019-03-02 08:07:00,975 Willow St, Los Angeles,CA,90001 +172237,AA Batteries (4-pack),1,3.84,2019-03-01 18:49:00,114 9th St, Dallas,TX,75001 +172238,20in Monitor,1,109.99,2019-03-20 15:01:00,653 11th St, Los Angeles,CA,90001 +172239,Wired Headphones,1,11.99,2019-03-04 16:11:00,686 Maple St, New York City,NY,10001 +172240,Bose SoundSport Headphones,1,99.99,2019-03-31 17:45:00,284 Hill St, Seattle,WA,98101 +172241,20in Monitor,1,109.99,2019-03-13 12:11:00,498 Madison St, New York City,NY,10001 +172241,Wired Headphones,1,11.99,2019-03-13 12:11:00,498 Madison St, New York City,NY,10001 +172242,AA Batteries (4-pack),1,3.84,2019-03-17 09:39:00,936 Forest St, Seattle,WA,98101 +172243,34in Ultrawide Monitor,1,379.99,2019-03-30 18:43:00,564 1st St, Boston,MA,02215 +172244,Bose SoundSport Headphones,1,99.99,2019-03-05 09:02:00,282 Pine St, Boston,MA,02215 +172245,Wired Headphones,1,11.99,2019-03-27 17:52:00,948 Church St, New York City,NY,10001 +172246,AA Batteries (4-pack),2,3.84,2019-03-13 11:02:00,308 Cherry St, Atlanta,GA,30301 +172247,USB-C Charging Cable,1,11.95,2019-03-09 13:27:00,922 Madison St, Dallas,TX,75001 +172248,USB-C Charging Cable,1,11.95,2019-03-23 18:34:00,850 Willow St, Austin,TX,73301 +172249,AAA Batteries (4-pack),1,2.99,2019-03-09 20:37:00,679 10th St, San Francisco,CA,94016 +172250,Lightning Charging Cable,1,14.95,2019-03-01 20:54:00,264 6th St, Atlanta,GA,30301 +172251,Wired Headphones,1,11.99,2019-03-29 20:52:00,600 Lake St, Boston,MA,02215 +172252,Bose SoundSport Headphones,1,99.99,2019-03-24 16:41:00,529 Jackson St, Boston,MA,02215 +172253,Wired Headphones,1,11.99,2019-03-26 07:42:00,862 14th St, New York City,NY,10001 +172254,AAA Batteries (4-pack),1,2.99,2019-03-11 10:37:00,415 11th St, San Francisco,CA,94016 +172255,Bose SoundSport Headphones,1,99.99,2019-03-18 20:01:00,271 1st St, New York City,NY,10001 +172256,Apple Airpods Headphones,1,150.0,2019-03-19 11:58:00,311 Park St, San Francisco,CA,94016 +172257,AA Batteries (4-pack),2,3.84,2019-03-04 09:49:00,851 1st St, Los Angeles,CA,90001 +172258,AA Batteries (4-pack),1,3.84,2019-03-01 22:10:00,584 Jackson St, New York City,NY,10001 +172259,AA Batteries (4-pack),1,3.84,2019-03-03 11:55:00,192 West St, New York City,NY,10001 +172260,Google Phone,1,600.0,2019-03-05 15:12:00,672 14th St, Los Angeles,CA,90001 +172261,Bose SoundSport Headphones,2,99.99,2019-03-20 20:51:00,349 Wilson St, Seattle,WA,98101 +172262,AA Batteries (4-pack),1,3.84,2019-03-14 16:40:00,31 2nd St, Seattle,WA,98101 +172263,USB-C Charging Cable,2,11.95,2019-03-21 12:55:00,839 5th St, Dallas,TX,75001 +172264,AAA Batteries (4-pack),1,2.99,2019-03-21 13:19:00,52 Adams St, New York City,NY,10001 +172265,Google Phone,1,600.0,2019-03-02 17:25:00,999 South St, Boston,MA,02215 +172265,Bose SoundSport Headphones,1,99.99,2019-03-02 17:25:00,999 South St, Boston,MA,02215 +172266,USB-C Charging Cable,1,11.95,2019-03-31 09:10:00,920 13th St, San Francisco,CA,94016 +172267,Wired Headphones,1,11.99,2019-03-25 10:12:00,473 Ridge St, Atlanta,GA,30301 +172267,Macbook Pro Laptop,1,1700.0,2019-03-25 10:12:00,473 Ridge St, Atlanta,GA,30301 +172268,Lightning Charging Cable,1,14.95,2019-03-06 12:02:00,936 Wilson St, Seattle,WA,98101 +172269,AAA Batteries (4-pack),1,2.99,2019-03-11 11:36:00,299 Pine St, Seattle,WA,98101 +172270,27in FHD Monitor,1,149.99,2019-03-09 18:58:00,205 Meadow St, Dallas,TX,75001 +172271,Apple Airpods Headphones,1,150.0,2019-03-09 20:20:00,512 Meadow St, Dallas,TX,75001 +172272,AA Batteries (4-pack),1,3.84,2019-03-19 14:57:00,866 Spruce St, San Francisco,CA,94016 +172273,Bose SoundSport Headphones,1,99.99,2019-03-08 19:24:00,979 7th St, Los Angeles,CA,90001 +172274,Bose SoundSport Headphones,1,99.99,2019-03-29 13:16:00,904 River St, San Francisco,CA,94016 +172275,Lightning Charging Cable,1,14.95,2019-03-21 15:09:00,813 13th St, New York City,NY,10001 +172276,AAA Batteries (4-pack),2,2.99,2019-03-07 16:47:00,175 Elm St, San Francisco,CA,94016 +172277,AA Batteries (4-pack),3,3.84,2019-03-05 12:03:00,118 Ridge St, Los Angeles,CA,90001 +172278,AAA Batteries (4-pack),3,2.99,2019-03-09 13:29:00,648 Main St, New York City,NY,10001 +172279,Flatscreen TV,1,300.0,2019-03-27 13:52:00,487 Willow St, Los Angeles,CA,90001 +172280,USB-C Charging Cable,2,11.95,2019-03-16 21:13:00,365 Chestnut St, New York City,NY,10001 +172281,34in Ultrawide Monitor,1,379.99,2019-03-18 17:09:00,940 6th St, Portland,OR,97035 +172282,Vareebadd Phone,1,400.0,2019-03-27 17:16:00,526 Cedar St, New York City,NY,10001 +172283,Bose SoundSport Headphones,1,99.99,2019-03-09 17:14:00,340 West St, Seattle,WA,98101 +172284,AA Batteries (4-pack),1,3.84,2019-03-20 16:31:00,941 12th St, Austin,TX,73301 +172285,ThinkPad Laptop,1,999.99,2019-03-22 12:41:00,540 Ridge St, Los Angeles,CA,90001 +172286,Wired Headphones,1,11.99,2019-03-13 21:25:00,285 Lake St, Los Angeles,CA,90001 +172287,Wired Headphones,1,11.99,2019-03-07 23:55:00,918 2nd St, New York City,NY,10001 +172288,Bose SoundSport Headphones,1,99.99,2019-03-15 13:28:00,236 Chestnut St, San Francisco,CA,94016 +172289,Vareebadd Phone,1,400.0,2019-03-02 10:10:00,999 Sunset St, Los Angeles,CA,90001 +172290,Wired Headphones,1,11.99,2019-03-22 23:07:00,57 Wilson St, Los Angeles,CA,90001 +172291,Apple Airpods Headphones,1,150.0,2019-03-05 19:37:00,130 Ridge St, New York City,NY,10001 +172292,Lightning Charging Cable,1,14.95,2019-03-03 21:15:00,365 Church St, New York City,NY,10001 +172293,Google Phone,1,600.0,2019-03-01 11:05:00,397 Hickory St, Boston,MA,02215 +172293,USB-C Charging Cable,1,11.95,2019-03-01 11:05:00,397 Hickory St, Boston,MA,02215 +172294,Lightning Charging Cable,1,14.95,2019-03-16 16:58:00,220 6th St, Atlanta,GA,30301 +172295,Bose SoundSport Headphones,1,99.99,2019-03-21 09:30:00,783 Main St, Dallas,TX,75001 +172296,Lightning Charging Cable,1,14.95,2019-03-29 19:12:00,36 13th St, Dallas,TX,75001 +172297,Wired Headphones,1,11.99,2019-03-20 07:39:00,863 Main St, Los Angeles,CA,90001 +172298,USB-C Charging Cable,1,11.95,2019-03-02 08:16:00,893 Forest St, Dallas,TX,75001 +172299,Lightning Charging Cable,1,14.95,2019-03-27 13:58:00,879 Washington St, Boston,MA,02215 +172300,AAA Batteries (4-pack),1,2.99,2019-03-17 14:09:00,805 12th St, Los Angeles,CA,90001 +172301,USB-C Charging Cable,1,11.95,2019-03-14 16:50:00,115 12th St, Boston,MA,02215 +172302,USB-C Charging Cable,1,11.95,2019-03-15 22:15:00,771 14th St, New York City,NY,10001 +172303,Lightning Charging Cable,1,14.95,2019-03-21 12:30:00,456 1st St, Austin,TX,73301 +172304,Wired Headphones,1,11.99,2019-03-07 14:52:00,462 Jefferson St, Atlanta,GA,30301 +172305,Apple Airpods Headphones,1,150.0,2019-03-22 11:41:00,865 West St, San Francisco,CA,94016 +172306,USB-C Charging Cable,1,11.95,2019-03-31 09:05:00,559 Johnson St, San Francisco,CA,94016 +172307,34in Ultrawide Monitor,1,379.99,2019-03-02 17:50:00,745 North St, Atlanta,GA,30301 +172308,Macbook Pro Laptop,1,1700.0,2019-03-07 16:38:00,79 Lake St, San Francisco,CA,94016 +172309,Apple Airpods Headphones,1,150.0,2019-03-31 10:16:00,258 Pine St, Boston,MA,02215 +172310,Lightning Charging Cable,1,14.95,2019-03-04 11:03:00,781 4th St, Boston,MA,02215 +172311,Lightning Charging Cable,1,14.95,2019-03-24 13:01:00,407 Highland St, Dallas,TX,75001 +172312,Apple Airpods Headphones,1,150.0,2019-03-02 12:59:00,675 Park St, Dallas,TX,75001 +172313,27in FHD Monitor,1,149.99,2019-03-04 21:50:00,267 12th St, New York City,NY,10001 +172314,AAA Batteries (4-pack),1,2.99,2019-03-18 10:06:00,818 Center St, Los Angeles,CA,90001 +172315,Apple Airpods Headphones,1,150.0,2019-03-26 14:57:00,530 Forest St, Austin,TX,73301 +172316,Flatscreen TV,1,300.0,2019-03-06 21:13:00,917 Meadow St, New York City,NY,10001 +172317,AAA Batteries (4-pack),2,2.99,2019-03-23 11:49:00,933 10th St, San Francisco,CA,94016 +172318,Lightning Charging Cable,1,14.95,2019-03-23 12:31:00,718 8th St, Seattle,WA,98101 +172319,AA Batteries (4-pack),1,3.84,2019-03-27 18:21:00,650 Chestnut St, Los Angeles,CA,90001 +172320,27in FHD Monitor,1,149.99,2019-03-07 18:23:00,794 Spruce St, San Francisco,CA,94016 +172321,AAA Batteries (4-pack),1,2.99,2019-03-20 23:25:00,619 Pine St, New York City,NY,10001 +172322,Lightning Charging Cable,1,14.95,2019-03-03 19:26:00,981 Jackson St, New York City,NY,10001 +172323,USB-C Charging Cable,1,11.95,2019-03-27 16:25:00,833 Willow St, San Francisco,CA,94016 +172324,AA Batteries (4-pack),3,3.84,2019-03-21 08:38:00,995 13th St, Los Angeles,CA,90001 +172325,Apple Airpods Headphones,1,150.0,2019-03-10 00:41:00,116 Center St, New York City,NY,10001 +172326,AAA Batteries (4-pack),1,2.99,2019-03-17 12:04:00,498 Hickory St, San Francisco,CA,94016 +172327,USB-C Charging Cable,1,11.95,2019-03-24 18:12:00,697 2nd St, Seattle,WA,98101 +172327,Lightning Charging Cable,1,14.95,2019-03-24 18:12:00,697 2nd St, Seattle,WA,98101 +172328,AAA Batteries (4-pack),1,2.99,2019-03-09 12:42:00,94 Elm St, San Francisco,CA,94016 +172329,AA Batteries (4-pack),1,3.84,2019-03-11 20:56:00,520 South St, Boston,MA,02215 +172330,Lightning Charging Cable,2,14.95,2019-03-04 11:47:00,486 Chestnut St, Atlanta,GA,30301 +172331,Macbook Pro Laptop,1,1700.0,2019-03-24 15:15:00,959 4th St, Austin,TX,73301 +172332,USB-C Charging Cable,1,11.95,2019-03-08 12:51:00,842 2nd St, Los Angeles,CA,90001 +172333,Flatscreen TV,1,300.0,2019-03-05 19:44:00,483 North St, New York City,NY,10001 +172334,Wired Headphones,1,11.99,2019-03-31 22:39:00,996 North St, Seattle,WA,98101 +172335,Wired Headphones,1,11.99,2019-03-30 00:20:00,163 Hill St, Atlanta,GA,30301 +172336,27in 4K Gaming Monitor,1,389.99,2019-03-29 18:09:00,932 Wilson St, San Francisco,CA,94016 +172337,20in Monitor,1,109.99,2019-03-27 18:55:00,587 1st St, New York City,NY,10001 +172338,Bose SoundSport Headphones,1,99.99,2019-03-01 09:26:00,224 Lake St, San Francisco,CA,94016 +172339,Lightning Charging Cable,1,14.95,2019-03-19 23:11:00,968 Willow St, New York City,NY,10001 +172340,Lightning Charging Cable,1,14.95,2019-03-08 23:26:00,62 Chestnut St, Boston,MA,02215 +172341,Apple Airpods Headphones,1,150.0,2019-03-10 16:55:00,818 Center St, Portland,OR,97035 +172342,AAA Batteries (4-pack),3,2.99,2019-03-21 19:56:00,560 7th St, Los Angeles,CA,90001 +172343,Wired Headphones,1,11.99,2019-03-27 16:11:00,491 South St, New York City,NY,10001 +172344,Apple Airpods Headphones,1,150.0,2019-03-18 02:21:00,206 7th St, Atlanta,GA,30301 +172345,27in 4K Gaming Monitor,1,389.99,2019-03-05 11:02:00,260 Cedar St, Los Angeles,CA,90001 +172346,Apple Airpods Headphones,1,150.0,2019-03-26 11:55:00,441 Dogwood St, New York City,NY,10001 +172347,Bose SoundSport Headphones,1,99.99,2019-03-29 20:08:00,718 Jefferson St, San Francisco,CA,94016 +172348,27in 4K Gaming Monitor,1,389.99,2019-03-04 16:35:00,221 Spruce St, Atlanta,GA,30301 +172349,Wired Headphones,1,11.99,2019-03-02 23:00:00,128 6th St, Los Angeles,CA,90001 +172350,Lightning Charging Cable,1,14.95,2019-03-18 09:35:00,249 14th St, San Francisco,CA,94016 +172351,Flatscreen TV,1,300.0,2019-03-05 16:06:00,577 South St, San Francisco,CA,94016 +172352,Lightning Charging Cable,1,14.95,2019-03-31 08:27:00,795 River St, Los Angeles,CA,90001 +172353,27in FHD Monitor,1,149.99,2019-03-01 21:34:00,254 North St, New York City,NY,10001 +172354,Lightning Charging Cable,1,14.95,2019-03-05 11:17:00,475 Jefferson St, San Francisco,CA,94016 +172355,Wired Headphones,1,11.99,2019-03-19 13:23:00,589 Lake St, Dallas,TX,75001 +172356,AA Batteries (4-pack),1,3.84,2019-03-14 18:01:00,589 9th St, New York City,NY,10001 +172357,Vareebadd Phone,1,400.0,2019-03-02 21:33:00,244 5th St, Portland,OR,97035 +172357,USB-C Charging Cable,1,11.95,2019-03-02 21:33:00,244 5th St, Portland,OR,97035 +172358,Apple Airpods Headphones,1,150.0,2019-03-30 07:39:00,78 Jackson St, Seattle,WA,98101 +172359,AA Batteries (4-pack),1,3.84,2019-03-08 13:20:00,979 Madison St, Austin,TX,73301 +172360,AA Batteries (4-pack),1,3.84,2019-03-27 03:25:00,416 Church St, Austin,TX,73301 +172361,Lightning Charging Cable,1,14.95,2019-03-25 17:16:00,269 5th St, Los Angeles,CA,90001 +172362,iPhone,1,700.0,2019-03-20 19:46:00,555 Elm St, Boston,MA,02215 +172362,Lightning Charging Cable,1,14.95,2019-03-20 19:46:00,555 Elm St, Boston,MA,02215 +172363,AAA Batteries (4-pack),1,2.99,2019-03-13 17:05:00,303 Meadow St, San Francisco,CA,94016 +172364,Bose SoundSport Headphones,1,99.99,2019-03-26 21:37:00,222 Elm St, Seattle,WA,98101 +172365,Apple Airpods Headphones,1,150.0,2019-03-26 01:24:00,110 2nd St, San Francisco,CA,94016 +172366,Wired Headphones,1,11.99,2019-03-17 18:00:00,536 Meadow St, San Francisco,CA,94016 +172367,Bose SoundSport Headphones,1,99.99,2019-03-19 19:41:00,985 Church St, San Francisco,CA,94016 +172368,27in 4K Gaming Monitor,1,389.99,2019-03-30 22:22:00,368 Hill St, San Francisco,CA,94016 +172369,Vareebadd Phone,1,400.0,2019-03-15 14:13:00,375 2nd St, San Francisco,CA,94016 +172369,USB-C Charging Cable,1,11.95,2019-03-15 14:13:00,375 2nd St, San Francisco,CA,94016 +172370,USB-C Charging Cable,1,11.95,2019-03-16 18:47:00,602 14th St, San Francisco,CA,94016 +172371,Bose SoundSport Headphones,1,99.99,2019-03-10 11:17:00,277 Chestnut St, Seattle,WA,98101 +172372,Lightning Charging Cable,1,14.95,2019-03-10 22:53:00,199 6th St, San Francisco,CA,94016 +172373,USB-C Charging Cable,1,11.95,2019-03-24 19:51:00,346 Hickory St, San Francisco,CA,94016 +172374,AA Batteries (4-pack),1,3.84,2019-03-24 19:23:00,807 Walnut St, San Francisco,CA,94016 +172375,AA Batteries (4-pack),1,3.84,2019-03-27 18:28:00,160 12th St, Atlanta,GA,30301 +172376,27in FHD Monitor,1,149.99,2019-03-11 12:43:00,595 South St, Atlanta,GA,30301 +172377,AA Batteries (4-pack),1,3.84,2019-03-22 07:46:00,271 Elm St, Los Angeles,CA,90001 +172378,Lightning Charging Cable,1,14.95,2019-03-27 01:15:00,248 River St, Boston,MA,02215 +172379,AAA Batteries (4-pack),6,2.99,2019-03-08 18:09:00,919 8th St, Austin,TX,73301 +172380,Lightning Charging Cable,1,14.95,2019-03-20 01:35:00,31 4th St, Los Angeles,CA,90001 +172381,Lightning Charging Cable,1,14.95,2019-03-24 18:09:00,253 River St, Los Angeles,CA,90001 +172382,Apple Airpods Headphones,1,150.0,2019-03-28 10:34:00,434 Wilson St, Dallas,TX,75001 +172383,27in 4K Gaming Monitor,1,389.99,2019-03-14 22:15:00,901 6th St, San Francisco,CA,94016 +172384,USB-C Charging Cable,1,11.95,2019-03-18 22:46:00,112 Wilson St, Seattle,WA,98101 +172385,AA Batteries (4-pack),1,3.84,2019-03-20 16:27:00,662 Chestnut St, Portland,OR,97035 +172386,Wired Headphones,1,11.99,2019-03-20 03:56:00,239 Lincoln St, Dallas,TX,75001 +172387,AAA Batteries (4-pack),1,2.99,2019-03-06 11:49:00,162 Elm St, Austin,TX,73301 +172387,Wired Headphones,1,11.99,2019-03-06 11:49:00,162 Elm St, Austin,TX,73301 +172388,AAA Batteries (4-pack),3,2.99,2019-03-22 07:39:00,3 Wilson St, Los Angeles,CA,90001 +172389,Wired Headphones,1,11.99,2019-03-28 12:11:00,594 12th St, Los Angeles,CA,90001 +172390,iPhone,1,700.0,2019-03-14 20:04:00,449 9th St, San Francisco,CA,94016 +172391,USB-C Charging Cable,1,11.95,2019-03-09 17:44:00,831 Spruce St, Portland,OR,97035 +172392,Bose SoundSport Headphones,1,99.99,2019-03-20 10:39:00,566 Park St, Los Angeles,CA,90001 +172393,Google Phone,1,600.0,2019-03-19 18:14:00,121 Park St, San Francisco,CA,94016 +172394,Google Phone,1,600.0,2019-03-08 09:58:00,809 Hill St, Seattle,WA,98101 +172395,AA Batteries (4-pack),1,3.84,2019-03-12 13:53:00,862 Adams St, New York City,NY,10001 +172396,AAA Batteries (4-pack),1,2.99,2019-03-14 13:49:00,586 8th St, Boston,MA,02215 +172397,Macbook Pro Laptop,1,1700.0,2019-03-21 12:54:00,599 11th St, San Francisco,CA,94016 +172398,AA Batteries (4-pack),2,3.84,2019-03-31 20:16:00,56 North St, San Francisco,CA,94016 +172399,AA Batteries (4-pack),1,3.84,2019-03-02 22:22:00,115 Meadow St, San Francisco,CA,94016 +172400,Apple Airpods Headphones,1,150.0,2019-03-31 16:29:00,257 Highland St, San Francisco,CA,94016 +172401,Macbook Pro Laptop,1,1700.0,2019-03-19 12:23:00,753 Washington St, Los Angeles,CA,90001 +172402,27in FHD Monitor,1,149.99,2019-03-04 09:35:00,718 Walnut St, Dallas,TX,75001 +172403,Wired Headphones,1,11.99,2019-03-09 06:57:00,945 Hill St, Seattle,WA,98101 +172404,Lightning Charging Cable,1,14.95,2019-03-30 13:46:00,577 Cedar St, Los Angeles,CA,90001 +172404,USB-C Charging Cable,1,11.95,2019-03-30 13:46:00,577 Cedar St, Los Angeles,CA,90001 +172405,Bose SoundSport Headphones,1,99.99,2019-03-21 18:25:00,537 Dogwood St, New York City,NY,10001 +172406,Lightning Charging Cable,1,14.95,2019-03-31 16:11:00,362 Cedar St, Los Angeles,CA,90001 +172407,AAA Batteries (4-pack),1,2.99,2019-03-08 12:14:00,883 5th St, New York City,NY,10001 +172408,Macbook Pro Laptop,1,1700.0,2019-03-25 08:41:00,649 Ridge St, Boston,MA,02215 +172409,Apple Airpods Headphones,1,150.0,2019-03-22 19:39:00,451 Dogwood St, Portland,OR,97035 +172410,Vareebadd Phone,1,400.0,2019-03-14 08:37:00,282 6th St, Boston,MA,02215 +172411,USB-C Charging Cable,1,11.95,2019-03-30 19:43:00,280 North St, Dallas,TX,75001 +172412,AA Batteries (4-pack),1,3.84,2019-03-16 13:04:00,92 Willow St, San Francisco,CA,94016 +172413,iPhone,1,700.0,2019-03-23 14:08:00,71 Hickory St, Boston,MA,02215 +172414,Lightning Charging Cable,1,14.95,2019-03-06 17:37:00,690 Spruce St, New York City,NY,10001 +172415,Wired Headphones,1,11.99,2019-03-14 16:56:00,653 River St, New York City,NY,10001 +172416,Wired Headphones,1,11.99,2019-03-06 09:49:00,956 Lincoln St, Los Angeles,CA,90001 +172417,AA Batteries (4-pack),2,3.84,2019-03-02 13:01:00,520 North St, Dallas,TX,75001 +172418,Lightning Charging Cable,1,14.95,2019-03-12 19:02:00,562 Spruce St, Dallas,TX,75001 +172419,iPhone,1,700.0,2019-03-14 19:25:00,278 Adams St, Seattle,WA,98101 +172420,27in FHD Monitor,1,149.99,2019-03-23 19:28:00,373 Chestnut St, Dallas,TX,75001 +172421,AAA Batteries (4-pack),1,2.99,2019-03-03 17:24:00,394 Ridge St, San Francisco,CA,94016 +172422,AAA Batteries (4-pack),1,2.99,2019-03-05 20:34:00,690 Madison St, Los Angeles,CA,90001 +172423,27in FHD Monitor,1,149.99,2019-03-24 16:20:00,756 1st St, New York City,NY,10001 +172424,27in 4K Gaming Monitor,1,389.99,2019-03-12 19:58:00,983 Chestnut St, Atlanta,GA,30301 +172425,AA Batteries (4-pack),2,3.84,2019-03-08 18:26:00,373 Chestnut St, San Francisco,CA,94016 +172426,Google Phone,1,600.0,2019-03-18 12:49:00,655 Johnson St, San Francisco,CA,94016 +172426,USB-C Charging Cable,1,11.95,2019-03-18 12:49:00,655 Johnson St, San Francisco,CA,94016 +172427,27in 4K Gaming Monitor,1,389.99,2019-03-29 23:17:00,683 13th St, Atlanta,GA,30301 +172428,AAA Batteries (4-pack),1,2.99,2019-03-05 17:52:00,536 Hill St, Seattle,WA,98101 +172429,Vareebadd Phone,1,400.0,2019-03-18 12:33:00,779 11th St, San Francisco,CA,94016 +172430,Bose SoundSport Headphones,1,99.99,2019-03-16 19:09:00,600 7th St, San Francisco,CA,94016 +172431,Flatscreen TV,1,300.0,2019-03-29 08:58:00,494 4th St, Atlanta,GA,30301 +172432,AA Batteries (4-pack),1,3.84,2019-03-24 21:15:00,309 Hill St, New York City,NY,10001 +172433,20in Monitor,1,109.99,2019-03-02 15:13:00,80 Lincoln St, Austin,TX,73301 +172434,Google Phone,1,600.0,2019-03-08 21:12:00,373 Madison St, Atlanta,GA,30301 +172435,USB-C Charging Cable,1,11.95,2019-03-29 15:00:00,84 Lakeview St, Dallas,TX,75001 +172436,Bose SoundSport Headphones,1,99.99,2019-03-19 16:11:00,28 Wilson St, Dallas,TX,75001 +172437,AA Batteries (4-pack),1,3.84,2019-03-20 18:12:00,927 4th St, Atlanta,GA,30301 +172438,AAA Batteries (4-pack),1,2.99,2019-03-19 21:40:00,217 8th St, Los Angeles,CA,90001 +172439,27in 4K Gaming Monitor,1,389.99,2019-03-11 02:24:00,90 Center St, New York City,NY,10001 +172440,AA Batteries (4-pack),2,3.84,2019-03-14 16:48:00,750 Hill St, San Francisco,CA,94016 +172441,27in FHD Monitor,1,149.99,2019-03-07 16:38:00,236 Spruce St, San Francisco,CA,94016 +172442,AAA Batteries (4-pack),2,2.99,2019-03-04 07:35:00,831 Adams St, Los Angeles,CA,90001 +172443,Lightning Charging Cable,1,14.95,2019-03-29 16:20:00,963 Adams St, Seattle,WA,98101 +172444,AA Batteries (4-pack),1,3.84,2019-03-23 18:22:00,546 Chestnut St, Austin,TX,73301 +172445,AAA Batteries (4-pack),1,2.99,2019-03-09 11:07:00,317 Jefferson St, San Francisco,CA,94016 +172446,USB-C Charging Cable,1,11.95,2019-03-21 19:36:00,186 1st St, Boston,MA,02215 +172447,27in FHD Monitor,1,149.99,2019-03-15 19:37:00,516 11th St, Los Angeles,CA,90001 +172448,AA Batteries (4-pack),1,3.84,2019-03-23 06:32:00,442 Washington St, San Francisco,CA,94016 +172449,ThinkPad Laptop,1,999.99,2019-03-29 16:40:00,278 8th St, Boston,MA,02215 +172450,Bose SoundSport Headphones,1,99.99,2019-03-20 14:41:00,398 South St, San Francisco,CA,94016 +172451,AAA Batteries (4-pack),1,2.99,2019-03-20 09:41:00,742 Johnson St, New York City,NY,10001 +172452,Wired Headphones,1,11.99,2019-03-13 17:12:00,339 Lakeview St, New York City,NY,10001 +172453,AA Batteries (4-pack),1,3.84,2019-03-29 17:11:00,672 Cedar St, Boston,MA,02215 +172454,AA Batteries (4-pack),1,3.84,2019-03-23 11:36:00,206 Hill St, Dallas,TX,75001 +172455,Vareebadd Phone,1,400.0,2019-03-31 16:30:00,555 1st St, Seattle,WA,98101 +172456,USB-C Charging Cable,1,11.95,2019-03-17 12:30:00,702 Church St, San Francisco,CA,94016 +172457,USB-C Charging Cable,1,11.95,2019-03-14 07:54:00,810 14th St, Los Angeles,CA,90001 +172458,iPhone,1,700.0,2019-03-16 05:05:00,399 Lincoln St, Boston,MA,02215 +172459,27in 4K Gaming Monitor,1,389.99,2019-03-20 22:29:00,766 Jefferson St, New York City,NY,10001 +172460,AA Batteries (4-pack),1,3.84,2019-03-08 20:00:00,457 Center St, Dallas,TX,75001 +172461,Lightning Charging Cable,1,14.95,2019-03-05 19:17:00,441 4th St, New York City,NY,10001 +172462,AAA Batteries (4-pack),1,2.99,2019-03-16 13:11:00,649 North St, Atlanta,GA,30301 +172463,AAA Batteries (4-pack),1,2.99,2019-03-26 18:57:00,235 Ridge St, San Francisco,CA,94016 +172464,Bose SoundSport Headphones,1,99.99,2019-03-14 10:57:00,192 13th St, San Francisco,CA,94016 +172465,USB-C Charging Cable,1,11.95,2019-03-26 22:12:00,134 Lake St, San Francisco,CA,94016 +172466,Flatscreen TV,1,300.0,2019-03-29 11:47:00,993 12th St, Los Angeles,CA,90001 +172467,AAA Batteries (4-pack),1,2.99,2019-03-18 20:16:00,776 5th St, Portland,OR,97035 +172468,AA Batteries (4-pack),3,3.84,2019-03-04 10:36:00,500 Willow St, Dallas,TX,75001 +172469,AA Batteries (4-pack),1,3.84,2019-03-13 12:42:00,734 Chestnut St, Dallas,TX,75001 +172470,Google Phone,1,600.0,2019-03-26 15:17:00,413 Elm St, San Francisco,CA,94016 +172471,Wired Headphones,1,11.99,2019-03-01 11:35:00,176 Cedar St, Los Angeles,CA,90001 +172472,Wired Headphones,1,11.99,2019-03-18 19:21:00,616 Johnson St, New York City,NY,10001 +172473,20in Monitor,1,109.99,2019-03-02 12:58:00,12 Cedar St, Los Angeles,CA,90001 +172474,Bose SoundSport Headphones,1,99.99,2019-03-13 08:44:00,279 Madison St, San Francisco,CA,94016 +172475,34in Ultrawide Monitor,1,379.99,2019-03-02 16:55:00,784 Adams St, San Francisco,CA,94016 +172476,AA Batteries (4-pack),1,3.84,2019-03-26 14:33:00,381 Jackson St, Los Angeles,CA,90001 +172477,34in Ultrawide Monitor,1,379.99,2019-03-14 14:00:00,617 Highland St, Austin,TX,73301 +172478,Macbook Pro Laptop,1,1700.0,2019-03-28 12:13:00,773 6th St, New York City,NY,10001 +172479,AAA Batteries (4-pack),1,2.99,2019-03-28 21:25:00,369 7th St, Los Angeles,CA,90001 +172480,Apple Airpods Headphones,1,150.0,2019-03-07 17:15:00,28 Forest St, San Francisco,CA,94016 +172481,Apple Airpods Headphones,1,150.0,2019-03-13 01:56:00,855 6th St, San Francisco,CA,94016 +172482,Macbook Pro Laptop,1,1700.0,2019-03-25 23:07:00,127 Park St, Los Angeles,CA,90001 +172483,20in Monitor,1,109.99,2019-03-03 22:31:00,853 Center St, San Francisco,CA,94016 +172484,34in Ultrawide Monitor,1,379.99,2019-03-15 20:57:00,917 Johnson St, New York City,NY,10001 +172485,Lightning Charging Cable,1,14.95,2019-03-16 18:00:00,40 Church St, Boston,MA,02215 +172486,Apple Airpods Headphones,1,150.0,2019-03-16 11:22:00,740 North St, Los Angeles,CA,90001 +172487,Apple Airpods Headphones,1,150.0,2019-03-07 19:46:00,388 13th St, San Francisco,CA,94016 +172488,27in 4K Gaming Monitor,1,389.99,2019-03-02 14:33:00,105 2nd St, Atlanta,GA,30301 +172489,Lightning Charging Cable,1,14.95,2019-03-05 18:49:00,587 14th St, Dallas,TX,75001 +172490,Bose SoundSport Headphones,1,99.99,2019-03-05 20:39:00,25 Lincoln St, Boston,MA,02215 +172491,AAA Batteries (4-pack),1,2.99,2019-03-08 00:52:00,762 8th St, Los Angeles,CA,90001 +172492,USB-C Charging Cable,1,11.95,2019-03-06 20:32:00,993 Chestnut St, San Francisco,CA,94016 +172492,Wired Headphones,1,11.99,2019-03-06 20:32:00,993 Chestnut St, San Francisco,CA,94016 +172493,iPhone,1,700.0,2019-03-26 12:27:00,372 Madison St, Boston,MA,02215 +172493,Wired Headphones,1,11.99,2019-03-26 12:27:00,372 Madison St, Boston,MA,02215 +172494,20in Monitor,1,109.99,2019-03-01 21:08:00,184 1st St, New York City,NY,10001 +172495,Lightning Charging Cable,1,14.95,2019-03-08 14:05:00,916 Chestnut St, Boston,MA,02215 +172495,USB-C Charging Cable,1,11.95,2019-03-08 14:05:00,916 Chestnut St, Boston,MA,02215 +172496,Wired Headphones,1,11.99,2019-03-27 00:35:00,540 2nd St, San Francisco,CA,94016 +172497,AAA Batteries (4-pack),1,2.99,2019-03-22 21:47:00,933 West St, Atlanta,GA,30301 +172498,Apple Airpods Headphones,1,150.0,2019-03-13 13:27:00,155 Lake St, Austin,TX,73301 +172499,Macbook Pro Laptop,1,1700.0,2019-03-03 22:08:00,427 Cedar St, Seattle,WA,98101 +172500,Lightning Charging Cable,1,14.95,2019-03-05 19:42:00,639 9th St, New York City,NY,10001 +172501,Bose SoundSport Headphones,1,99.99,2019-03-05 15:46:00,993 Jefferson St, Dallas,TX,75001 +172502,AA Batteries (4-pack),2,3.84,2019-03-13 16:55:00,318 7th St, San Francisco,CA,94016 +172503,Wired Headphones,1,11.99,2019-03-28 16:46:00,854 Church St, Seattle,WA,98101 +172504,Lightning Charging Cable,1,14.95,2019-03-25 20:36:00,703 Dogwood St, Los Angeles,CA,90001 +172505,Bose SoundSport Headphones,1,99.99,2019-03-05 15:16:00,130 Sunset St, Boston,MA,02215 +172506,Apple Airpods Headphones,1,150.0,2019-03-08 16:17:00,74 West St, San Francisco,CA,94016 +172507,27in FHD Monitor,1,149.99,2019-03-03 10:32:00,165 Jackson St, Portland,OR,97035 +172508,AA Batteries (4-pack),2,3.84,2019-03-18 21:45:00,41 Pine St, Los Angeles,CA,90001 +172509,Wired Headphones,1,11.99,2019-03-29 10:49:00,213 Ridge St, San Francisco,CA,94016 +172510,AA Batteries (4-pack),1,3.84,2019-03-28 15:56:00,737 Park St, Atlanta,GA,30301 +172511,Macbook Pro Laptop,1,1700.0,2019-03-10 17:36:00,99 Wilson St, Los Angeles,CA,90001 +172512,AA Batteries (4-pack),1,3.84,2019-03-14 19:10:00,355 13th St, San Francisco,CA,94016 +172513,AAA Batteries (4-pack),1,2.99,2019-03-24 20:57:00,117 Jackson St, Seattle,WA,98101 +172514,AAA Batteries (4-pack),1,2.99,2019-03-12 14:05:00,837 8th St, Boston,MA,02215 +172515,27in 4K Gaming Monitor,1,389.99,2019-03-10 16:35:00,383 2nd St, Los Angeles,CA,90001 +172516,AA Batteries (4-pack),1,3.84,2019-03-19 16:48:00,793 9th St, San Francisco,CA,94016 +172516,Wired Headphones,1,11.99,2019-03-19 16:48:00,793 9th St, San Francisco,CA,94016 +172517,USB-C Charging Cable,1,11.95,2019-03-12 17:21:00,283 Sunset St, Los Angeles,CA,90001 +172518,Apple Airpods Headphones,1,150.0,2019-03-31 17:20:00,827 Chestnut St, San Francisco,CA,94016 +172519,Lightning Charging Cable,1,14.95,2019-03-31 13:04:00,955 1st St, Atlanta,GA,30301 +172520,Wired Headphones,1,11.99,2019-03-14 13:14:00,554 7th St, Los Angeles,CA,90001 +172521,27in FHD Monitor,1,149.99,2019-03-01 12:30:00,136 8th St, Austin,TX,73301 +172522,27in FHD Monitor,1,149.99,2019-03-09 21:25:00,140 Cherry St, New York City,NY,10001 +172523,Apple Airpods Headphones,1,150.0,2019-03-24 01:07:00,174 10th St, New York City,NY,10001 +172524,AAA Batteries (4-pack),1,2.99,2019-03-19 13:46:00,766 Church St, Seattle,WA,98101 +172525,ThinkPad Laptop,1,999.99,2019-03-11 13:45:00,823 7th St, Austin,TX,73301 +172526,AA Batteries (4-pack),1,3.84,2019-03-13 11:25:00,358 Hickory St, Dallas,TX,75001 +172527,Wired Headphones,1,11.99,2019-03-09 17:51:00,912 Elm St, San Francisco,CA,94016 +172528,AA Batteries (4-pack),1,3.84,2019-03-25 18:40:00,874 Adams St, Portland,OR,97035 +172528,LG Dryer,1,600.0,2019-03-25 18:40:00,874 Adams St, Portland,OR,97035 +172529,AAA Batteries (4-pack),1,2.99,2019-03-16 13:25:00,724 Highland St, New York City,NY,10001 +172530,Macbook Pro Laptop,1,1700.0,2019-03-02 08:11:00,377 Park St, Austin,TX,73301 +172531,AAA Batteries (4-pack),1,2.99,2019-03-06 07:22:00,127 2nd St, San Francisco,CA,94016 +172532,USB-C Charging Cable,1,11.95,2019-03-27 12:18:00,635 Wilson St, New York City,NY,10001 +172533,Apple Airpods Headphones,1,150.0,2019-03-08 13:32:00,141 Jefferson St, Dallas,TX,75001 +172534,AA Batteries (4-pack),1,3.84,2019-03-21 12:35:00,650 Spruce St, Atlanta,GA,30301 +172535,Lightning Charging Cable,1,14.95,2019-03-20 10:33:00,88 Jefferson St, Los Angeles,CA,90001 +172536,iPhone,1,700.0,2019-03-12 21:19:00,660 Lake St, San Francisco,CA,94016 +172537,AAA Batteries (4-pack),1,2.99,2019-03-19 11:53:00,591 11th St, Austin,TX,73301 +172538,Bose SoundSport Headphones,1,99.99,2019-03-01 16:18:00,211 11th St, Seattle,WA,98101 +172539,iPhone,1,700.0,2019-03-20 11:45:00,975 2nd St, New York City,NY,10001 +172540,Bose SoundSport Headphones,1,99.99,2019-03-25 12:08:00,419 Forest St, San Francisco,CA,94016 +172541,20in Monitor,1,109.99,2019-03-04 10:59:00,936 Willow St, San Francisco,CA,94016 +172542,AA Batteries (4-pack),1,3.84,2019-03-09 21:10:00,450 Center St, Los Angeles,CA,90001 +172543,27in 4K Gaming Monitor,1,389.99,2019-03-12 13:05:00,308 Cedar St, San Francisco,CA,94016 +172544,AAA Batteries (4-pack),2,2.99,2019-03-02 18:52:00,140 Center St, San Francisco,CA,94016 +172545,USB-C Charging Cable,1,11.95,2019-03-21 09:27:00,244 10th St, Dallas,TX,75001 +172546,Flatscreen TV,1,300.0,2019-03-03 18:21:00,957 11th St, Boston,MA,02215 +172547,27in 4K Gaming Monitor,1,389.99,2019-03-11 02:17:00,226 Spruce St, Seattle,WA,98101 +172548,Apple Airpods Headphones,1,150.0,2019-03-02 17:57:00,523 1st St, New York City,NY,10001 +172549,AAA Batteries (4-pack),1,2.99,2019-03-21 11:07:00,200 South St, San Francisco,CA,94016 +172550,USB-C Charging Cable,1,11.95,2019-03-30 11:28:00,111 Hickory St, Austin,TX,73301 +172551,USB-C Charging Cable,1,11.95,2019-03-12 14:29:00,680 North St, San Francisco,CA,94016 +172552,AA Batteries (4-pack),1,3.84,2019-03-23 14:18:00,222 Hickory St, Los Angeles,CA,90001 +172553,34in Ultrawide Monitor,1,379.99,2019-03-27 00:41:00,949 Maple St, New York City,NY,10001 +172554,USB-C Charging Cable,2,11.95,2019-03-21 22:13:00,914 10th St, Atlanta,GA,30301 +172555,Wired Headphones,1,11.99,2019-03-09 10:10:00,831 Lake St, Portland,OR,97035 +172556,AAA Batteries (4-pack),2,2.99,2019-03-03 19:12:00,751 14th St, Dallas,TX,75001 +172557,Google Phone,1,600.0,2019-03-08 10:58:00,367 8th St, Dallas,TX,75001 +172557,USB-C Charging Cable,1,11.95,2019-03-08 10:58:00,367 8th St, Dallas,TX,75001 +172557,Bose SoundSport Headphones,1,99.99,2019-03-08 10:58:00,367 8th St, Dallas,TX,75001 +172558,USB-C Charging Cable,1,11.95,2019-03-27 12:13:00,410 14th St, Seattle,WA,98101 +172559,Apple Airpods Headphones,1,150.0,2019-03-08 05:48:00,551 Center St, Dallas,TX,75001 +172560,USB-C Charging Cable,1,11.95,2019-03-23 06:10:00,792 River St, San Francisco,CA,94016 +172561,AAA Batteries (4-pack),2,2.99,2019-03-08 21:22:00,238 Lake St, San Francisco,CA,94016 +172562,Wired Headphones,1,11.99,2019-03-19 19:19:00,993 Jefferson St, San Francisco,CA,94016 +172563,Macbook Pro Laptop,1,1700.0,2019-03-15 17:25:00,398 13th St, Los Angeles,CA,90001 +172564,USB-C Charging Cable,1,11.95,2019-03-21 21:20:00,315 West St, New York City,NY,10001 +172565,Wired Headphones,1,11.99,2019-03-02 16:06:00,12 8th St, Austin,TX,73301 +172566,Wired Headphones,1,11.99,2019-03-10 09:18:00,465 8th St, San Francisco,CA,94016 +172567,iPhone,1,700.0,2019-03-26 19:37:00,996 Center St, San Francisco,CA,94016 +172568,Apple Airpods Headphones,1,150.0,2019-03-03 12:35:00,575 Dogwood St, Atlanta,GA,30301 +172569,USB-C Charging Cable,1,11.95,2019-03-22 17:02:00,259 2nd St, San Francisco,CA,94016 +172570,Wired Headphones,1,11.99,2019-03-17 18:20:00,97 Pine St, Portland,OR,97035 +172571,Bose SoundSport Headphones,1,99.99,2019-03-03 18:09:00,352 River St, San Francisco,CA,94016 +172572,Apple Airpods Headphones,1,150.0,2019-03-17 09:10:00,160 7th St, Boston,MA,02215 +172573,Lightning Charging Cable,1,14.95,2019-03-10 16:21:00,542 12th St, Los Angeles,CA,90001 +172574,AAA Batteries (4-pack),2,2.99,2019-03-14 12:34:00,928 Lincoln St, Austin,TX,73301 +172575,Wired Headphones,1,11.99,2019-03-01 11:05:00,510 Pine St, Seattle,WA,98101 +172576,27in FHD Monitor,1,149.99,2019-03-15 17:20:00,275 Elm St, Los Angeles,CA,90001 +172577,USB-C Charging Cable,1,11.95,2019-03-09 15:58:00,317 Spruce St, San Francisco,CA,94016 +172578,Google Phone,1,600.0,2019-03-13 11:26:00,969 7th St, Boston,MA,02215 +172579,Macbook Pro Laptop,1,1700.0,2019-03-24 18:43:00,755 Lakeview St, Los Angeles,CA,90001 +172580,34in Ultrawide Monitor,1,379.99,2019-03-14 13:35:00,807 Washington St, Los Angeles,CA,90001 +172581,Google Phone,1,600.0,2019-03-30 13:37:00,211 Church St, Portland,OR,97035 +172582,Lightning Charging Cable,1,14.95,2019-03-07 17:41:00,407 Main St, Los Angeles,CA,90001 +172583,34in Ultrawide Monitor,1,379.99,2019-03-10 18:50:00,799 11th St, San Francisco,CA,94016 +172584,Lightning Charging Cable,1,14.95,2019-03-17 17:20:00,768 Ridge St, New York City,NY,10001 +172585,Wired Headphones,1,11.99,2019-03-14 17:39:00,843 Church St, San Francisco,CA,94016 +172586,27in 4K Gaming Monitor,1,389.99,2019-03-04 01:29:00,862 Pine St, Los Angeles,CA,90001 +172587,Bose SoundSport Headphones,1,99.99,2019-03-19 17:29:00,895 8th St, San Francisco,CA,94016 +172588,Lightning Charging Cable,1,14.95,2019-03-17 09:31:00,326 Dogwood St, New York City,NY,10001 +172589,AAA Batteries (4-pack),1,2.99,2019-03-13 09:57:00,306 South St, Los Angeles,CA,90001 +172590,USB-C Charging Cable,1,11.95,2019-03-17 16:52:00,273 South St, San Francisco,CA,94016 +172591,34in Ultrawide Monitor,1,379.99,2019-03-16 09:33:00,382 North St, Portland,OR,97035 +172592,Wired Headphones,2,11.99,2019-03-13 16:25:00,263 Hickory St, Atlanta,GA,30301 +172593,Macbook Pro Laptop,1,1700.0,2019-03-25 19:13:00,81 Lakeview St, San Francisco,CA,94016 +172594,Bose SoundSport Headphones,1,99.99,2019-03-10 18:11:00,522 6th St, Los Angeles,CA,90001 +172595,ThinkPad Laptop,1,999.99,2019-03-11 09:38:00,273 Lincoln St, Boston,MA,02215 +172596,Lightning Charging Cable,1,14.95,2019-03-19 13:42:00,467 Center St, Dallas,TX,75001 +172597,Macbook Pro Laptop,1,1700.0,2019-03-03 14:41:00,276 9th St, Boston,MA,02215 +172598,Lightning Charging Cable,1,14.95,2019-03-28 08:36:00,625 Main St, Atlanta,GA,30301 +172599,27in FHD Monitor,1,149.99,2019-03-11 21:03:00,453 Cherry St, San Francisco,CA,94016 +172600,LG Washing Machine,1,600.0,2019-03-24 14:42:00,448 Lakeview St, Austin,TX,73301 +172601,Lightning Charging Cable,1,14.95,2019-03-16 07:46:00,683 2nd St, San Francisco,CA,94016 +172602,Apple Airpods Headphones,1,150.0,2019-03-29 01:37:00,461 Church St, San Francisco,CA,94016 +172603,Apple Airpods Headphones,1,150.0,2019-03-10 16:27:00,542 Elm St, Atlanta,GA,30301 +172604,Wired Headphones,1,11.99,2019-03-21 09:09:00,166 South St, Portland,OR,97035 +172605,27in FHD Monitor,1,149.99,2019-03-24 15:34:00,156 6th St, Los Angeles,CA,90001 +172606,27in FHD Monitor,1,149.99,2019-03-10 12:31:00,595 Walnut St, Atlanta,GA,30301 +172607,Lightning Charging Cable,1,14.95,2019-03-22 07:18:00,396 14th St, San Francisco,CA,94016 +172608,USB-C Charging Cable,1,11.95,2019-03-30 19:46:00,277 Johnson St, Portland,OR,97035 +172609,USB-C Charging Cable,1,11.95,2019-03-10 21:04:00,986 4th St, Boston,MA,02215 +172610,Google Phone,1,600.0,2019-03-19 13:16:00,567 Madison St, Boston,MA,02215 +172611,Lightning Charging Cable,1,14.95,2019-03-22 13:17:00,210 Highland St, Portland,OR,97035 +172612,iPhone,1,700.0,2019-03-26 07:53:00,741 Jefferson St, Los Angeles,CA,90001 +172613,Google Phone,1,600.0,2019-03-29 12:52:00,246 Highland St, Atlanta,GA,30301 +172614,Wired Headphones,1,11.99,2019-03-14 15:52:00,213 Dogwood St, Atlanta,GA,30301 +172615,Lightning Charging Cable,1,14.95,2019-03-29 20:14:00,225 Willow St, San Francisco,CA,94016 +172616,Bose SoundSport Headphones,1,99.99,2019-03-13 20:26:00,106 Main St, Boston,MA,02215 +172617,Wired Headphones,1,11.99,2019-03-09 08:46:00,618 Maple St, Portland,OR,97035 +172618,Apple Airpods Headphones,1,150.0,2019-03-16 15:42:00,127 Dogwood St, Los Angeles,CA,90001 +172619,AAA Batteries (4-pack),1,2.99,2019-03-29 16:52:00,719 South St, San Francisco,CA,94016 +172620,Bose SoundSport Headphones,1,99.99,2019-03-21 16:12:00,343 5th St, San Francisco,CA,94016 +172621,Wired Headphones,1,11.99,2019-03-03 23:35:00,546 9th St, Los Angeles,CA,90001 +172622,34in Ultrawide Monitor,1,379.99,2019-03-12 07:25:00,72 4th St, Portland,OR,97035 +172623,Lightning Charging Cable,1,14.95,2019-03-11 22:47:00,991 Adams St, Los Angeles,CA,90001 +172624,USB-C Charging Cable,1,11.95,2019-03-13 10:11:00,145 Sunset St, New York City,NY,10001 +172625,USB-C Charging Cable,1,11.95,2019-03-08 11:53:00,668 Main St, San Francisco,CA,94016 +172626,USB-C Charging Cable,1,11.95,2019-03-16 14:51:00,460 West St, Seattle,WA,98101 +172627,Wired Headphones,1,11.99,2019-03-15 23:47:00,662 Cedar St, Los Angeles,CA,90001 +172628,Wired Headphones,1,11.99,2019-03-16 13:18:00,375 Chestnut St, Austin,TX,73301 +172629,AA Batteries (4-pack),1,3.84,2019-03-20 08:22:00,416 Pine St, Boston,MA,02215 +172630,AAA Batteries (4-pack),2,2.99,2019-03-08 12:00:00,197 North St, Atlanta,GA,30301 +172631,Apple Airpods Headphones,1,150.0,2019-03-26 10:20:00,696 Walnut St, Dallas,TX,75001 +172632,AAA Batteries (4-pack),1,2.99,2019-03-07 17:33:00,615 Willow St, Los Angeles,CA,90001 +172633,Bose SoundSport Headphones,1,99.99,2019-03-19 12:34:00,967 9th St, Atlanta,GA,30301 +172634,AAA Batteries (4-pack),1,2.99,2019-03-28 23:28:00,138 4th St, Los Angeles,CA,90001 +172635,27in 4K Gaming Monitor,1,389.99,2019-03-15 12:39:00,413 Sunset St, Los Angeles,CA,90001 +172636,Bose SoundSport Headphones,1,99.99,2019-03-17 17:49:00,944 Madison St, Portland,ME,04101 +172637,ThinkPad Laptop,1,999.99,2019-03-31 11:41:00,210 12th St, Boston,MA,02215 +172638,Lightning Charging Cable,1,14.95,2019-03-06 15:07:00,949 Spruce St, Seattle,WA,98101 +172639,AAA Batteries (4-pack),3,2.99,2019-03-05 12:35:00,125 Lake St, San Francisco,CA,94016 +172640,USB-C Charging Cable,1,11.95,2019-03-22 22:32:00,535 Cherry St, Boston,MA,02215 +172641,34in Ultrawide Monitor,1,379.99,2019-03-04 20:24:00,890 Sunset St, Atlanta,GA,30301 +172642,LG Dryer,1,600.0,2019-03-24 11:08:00,294 Ridge St, San Francisco,CA,94016 +172643,Wired Headphones,1,11.99,2019-03-09 19:03:00,925 Center St, New York City,NY,10001 +172644,Lightning Charging Cable,1,14.95,2019-03-29 20:48:00,92 1st St, Dallas,TX,75001 +172645,Lightning Charging Cable,1,14.95,2019-03-24 13:38:00,926 Highland St, Austin,TX,73301 +172646,Bose SoundSport Headphones,1,99.99,2019-03-09 12:29:00,490 Jefferson St, Los Angeles,CA,90001 +172647,iPhone,1,700.0,2019-03-07 15:15:00,14 West St, San Francisco,CA,94016 +172648,AAA Batteries (4-pack),3,2.99,2019-03-02 18:14:00,822 Hickory St, San Francisco,CA,94016 +172649,AAA Batteries (4-pack),1,2.99,2019-03-03 11:18:00,654 Elm St, Portland,OR,97035 +172650,Lightning Charging Cable,1,14.95,2019-03-16 10:52:00,689 South St, Los Angeles,CA,90001 +172651,Wired Headphones,1,11.99,2019-03-26 15:11:00,471 Wilson St, Boston,MA,02215 +172652,27in 4K Gaming Monitor,1,389.99,2019-03-17 07:36:00,899 Pine St, Atlanta,GA,30301 +172653,Apple Airpods Headphones,1,150.0,2019-03-05 15:04:00,320 Pine St, San Francisco,CA,94016 +172654,iPhone,1,700.0,2019-03-05 21:20:00,615 Meadow St, Austin,TX,73301 +172654,Lightning Charging Cable,1,14.95,2019-03-05 21:20:00,615 Meadow St, Austin,TX,73301 +172655,Apple Airpods Headphones,1,150.0,2019-03-08 10:59:00,227 Main St, San Francisco,CA,94016 +172656,Bose SoundSport Headphones,1,99.99,2019-03-05 12:53:00,668 Lakeview St, Dallas,TX,75001 +172657,AAA Batteries (4-pack),2,2.99,2019-03-13 12:15:00,898 North St, Los Angeles,CA,90001 +172658,AA Batteries (4-pack),1,3.84,2019-03-22 20:44:00,719 Maple St, Boston,MA,02215 +172659,Apple Airpods Headphones,1,150.0,2019-03-03 17:51:00,358 2nd St, Seattle,WA,98101 +172660,AA Batteries (4-pack),1,3.84,2019-03-11 08:25:00,142 Church St, Los Angeles,CA,90001 +172661,Wired Headphones,1,11.99,2019-03-07 13:34:00,223 Willow St, San Francisco,CA,94016 +172662,AAA Batteries (4-pack),1,2.99,2019-03-25 16:57:00,357 13th St, Los Angeles,CA,90001 +172663,Apple Airpods Headphones,2,150.0,2019-03-15 10:50:00,637 Adams St, San Francisco,CA,94016 +172664,Wired Headphones,1,11.99,2019-03-28 20:21:00,481 West St, Los Angeles,CA,90001 +172665,iPhone,1,700.0,2019-03-25 11:12:00,612 Park St, Boston,MA,02215 +172666,Apple Airpods Headphones,1,150.0,2019-03-14 09:42:00,53 4th St, Los Angeles,CA,90001 +172667,27in 4K Gaming Monitor,1,389.99,2019-03-22 16:04:00,685 West St, Atlanta,GA,30301 +172668,AAA Batteries (4-pack),1,2.99,2019-03-05 23:00:00,790 Lakeview St, Atlanta,GA,30301 +172669,20in Monitor,1,109.99,2019-03-03 21:29:00,926 Pine St, Boston,MA,02215 +172670,Bose SoundSport Headphones,1,99.99,2019-03-03 20:57:00,457 Center St, New York City,NY,10001 +172671,Apple Airpods Headphones,1,150.0,2019-03-18 15:31:00,457 Meadow St, Los Angeles,CA,90001 +172672,USB-C Charging Cable,1,11.95,2019-03-02 14:55:00,590 Cedar St, New York City,NY,10001 +172673,AA Batteries (4-pack),1,3.84,2019-03-25 14:24:00,83 2nd St, Atlanta,GA,30301 +172674,Bose SoundSport Headphones,1,99.99,2019-03-09 12:07:00,605 2nd St, Dallas,TX,75001 +172675,iPhone,1,700.0,2019-03-07 14:13:00,942 Park St, Boston,MA,02215 +172676,AAA Batteries (4-pack),1,2.99,2019-03-09 11:05:00,224 7th St, Boston,MA,02215 +172677,Bose SoundSport Headphones,1,99.99,2019-03-10 22:04:00,270 Hill St, Portland,OR,97035 +172678,AA Batteries (4-pack),2,3.84,2019-03-01 18:15:00,760 Wilson St, San Francisco,CA,94016 +172679,Bose SoundSport Headphones,1,99.99,2019-03-14 16:32:00,388 Wilson St, New York City,NY,10001 +172680,iPhone,1,700.0,2019-03-09 13:30:00,192 Chestnut St, Los Angeles,CA,90001 +172681,Flatscreen TV,1,300.0,2019-03-21 18:10:00,175 1st St, San Francisco,CA,94016 +172682,Bose SoundSport Headphones,1,99.99,2019-03-11 17:35:00,734 Spruce St, Dallas,TX,75001 +172683,20in Monitor,1,109.99,2019-03-25 19:46:00,688 2nd St, Atlanta,GA,30301 +172684,Wired Headphones,1,11.99,2019-03-16 18:55:00,253 Madison St, New York City,NY,10001 +172685,AAA Batteries (4-pack),1,2.99,2019-03-23 20:24:00,191 Church St, Boston,MA,02215 +172686,Bose SoundSport Headphones,1,99.99,2019-03-17 20:23:00,12 Madison St, New York City,NY,10001 +172687,Wired Headphones,1,11.99,2019-03-18 12:31:00,730 Lincoln St, New York City,NY,10001 +172688,Apple Airpods Headphones,1,150.0,2019-03-05 10:25:00,927 Cherry St, Boston,MA,02215 +172689,27in 4K Gaming Monitor,1,389.99,2019-03-11 18:20:00,866 Dogwood St, New York City,NY,10001 +172690,Lightning Charging Cable,1,14.95,2019-03-11 18:07:00,611 Spruce St, Seattle,WA,98101 +172691,34in Ultrawide Monitor,1,379.99,2019-03-14 11:21:00,510 Spruce St, San Francisco,CA,94016 +172692,Vareebadd Phone,1,400.0,2019-03-23 16:53:00,109 River St, Los Angeles,CA,90001 +172692,Wired Headphones,1,11.99,2019-03-23 16:53:00,109 River St, Los Angeles,CA,90001 +172693,Google Phone,1,600.0,2019-03-22 05:54:00,880 Hickory St, Portland,ME,04101 +172694,Bose SoundSport Headphones,1,99.99,2019-03-16 18:40:00,981 Maple St, New York City,NY,10001 +172695,Apple Airpods Headphones,1,150.0,2019-03-31 12:03:00,499 11th St, San Francisco,CA,94016 +172696,Apple Airpods Headphones,1,150.0,2019-03-12 17:07:00,594 West St, Boston,MA,02215 +172697,Bose SoundSport Headphones,1,99.99,2019-03-22 09:24:00,819 Wilson St, Los Angeles,CA,90001 +172698,USB-C Charging Cable,1,11.95,2019-03-21 14:48:00,928 Ridge St, San Francisco,CA,94016 +172699,Lightning Charging Cable,1,14.95,2019-03-04 08:14:00,948 Walnut St, Seattle,WA,98101 +172700,34in Ultrawide Monitor,1,379.99,2019-03-18 12:19:00,612 Maple St, Dallas,TX,75001 +172701,Lightning Charging Cable,1,14.95,2019-03-18 07:21:00,113 Johnson St, Seattle,WA,98101 +172702,20in Monitor,1,109.99,2019-03-02 20:54:00,5 Walnut St, Portland,OR,97035 +172703,Lightning Charging Cable,1,14.95,2019-03-23 13:07:00,930 River St, Los Angeles,CA,90001 +172704,Bose SoundSport Headphones,1,99.99,2019-03-12 13:37:00,990 Hickory St, San Francisco,CA,94016 +172705,Lightning Charging Cable,1,14.95,2019-03-03 13:00:00,550 12th St, Boston,MA,02215 +172706,iPhone,1,700.0,2019-03-14 14:33:00,462 5th St, San Francisco,CA,94016 +172706,Apple Airpods Headphones,1,150.0,2019-03-14 14:33:00,462 5th St, San Francisco,CA,94016 +172707,Lightning Charging Cable,1,14.95,2019-03-16 10:00:00,101 Meadow St, Austin,TX,73301 +172708,AA Batteries (4-pack),1,3.84,2019-03-02 00:29:00,147 5th St, Los Angeles,CA,90001 +172709,27in 4K Gaming Monitor,1,389.99,2019-03-17 22:10:00,151 12th St, San Francisco,CA,94016 +172710,Wired Headphones,1,11.99,2019-03-03 22:52:00,117 Lake St, New York City,NY,10001 +172711,AAA Batteries (4-pack),1,2.99,2019-03-17 08:26:00,712 14th St, Seattle,WA,98101 +172712,Apple Airpods Headphones,1,150.0,2019-03-20 10:38:00,227 Lake St, Austin,TX,73301 +172713,Wired Headphones,1,11.99,2019-03-16 18:05:00,217 Hickory St, Boston,MA,02215 +172714,20in Monitor,1,109.99,2019-03-25 10:14:00,807 West St, San Francisco,CA,94016 +172715,Wired Headphones,1,11.99,2019-03-30 19:29:00,987 2nd St, Seattle,WA,98101 +172716,iPhone,1,700.0,2019-03-07 08:34:00,392 Hill St, Atlanta,GA,30301 +172716,Lightning Charging Cable,1,14.95,2019-03-07 08:34:00,392 Hill St, Atlanta,GA,30301 +172717,AAA Batteries (4-pack),1,2.99,2019-03-04 09:56:00,36 Wilson St, Los Angeles,CA,90001 +172718,Lightning Charging Cable,1,14.95,2019-03-23 08:26:00,912 Lincoln St, Atlanta,GA,30301 +172719,AA Batteries (4-pack),1,3.84,2019-03-07 21:26:00,156 5th St, Atlanta,GA,30301 +172720,34in Ultrawide Monitor,1,379.99,2019-03-15 09:42:00,617 Jefferson St, New York City,NY,10001 +172721,Bose SoundSport Headphones,1,99.99,2019-03-22 18:06:00,135 Spruce St, Portland,OR,97035 +172722,AAA Batteries (4-pack),1,2.99,2019-03-13 12:24:00,878 10th St, New York City,NY,10001 +172723,Apple Airpods Headphones,1,150.0,2019-03-24 20:37:00,278 Sunset St, San Francisco,CA,94016 +172724,27in 4K Gaming Monitor,1,389.99,2019-03-20 22:58:00,19 Madison St, Austin,TX,73301 +172725,34in Ultrawide Monitor,1,379.99,2019-03-19 09:32:00,192 1st St, San Francisco,CA,94016 +172725,AA Batteries (4-pack),1,3.84,2019-03-19 09:32:00,192 1st St, San Francisco,CA,94016 +172726,AAA Batteries (4-pack),1,2.99,2019-03-23 12:54:00,876 12th St, San Francisco,CA,94016 +172727,Google Phone,1,600.0,2019-03-12 12:34:00,704 River St, San Francisco,CA,94016 +172728,Apple Airpods Headphones,1,150.0,2019-03-16 11:53:00,520 1st St, San Francisco,CA,94016 +172729,Wired Headphones,1,11.99,2019-03-02 00:40:00,145 Main St, Atlanta,GA,30301 +172730,AA Batteries (4-pack),2,3.84,2019-03-08 12:34:00,88 Hickory St, San Francisco,CA,94016 +172731,USB-C Charging Cable,1,11.95,2019-03-29 15:47:00,895 Adams St, Portland,OR,97035 +172732,Lightning Charging Cable,1,14.95,2019-03-28 12:32:00,301 Wilson St, Atlanta,GA,30301 +172733,Wired Headphones,1,11.99,2019-03-05 17:44:00,563 Lakeview St, Austin,TX,73301 +172734,AA Batteries (4-pack),3,3.84,2019-03-25 15:08:00,481 10th St, Boston,MA,02215 +172735,27in 4K Gaming Monitor,1,389.99,2019-03-20 22:14:00,335 Hickory St, Boston,MA,02215 +172736,AA Batteries (4-pack),1,3.84,2019-03-13 18:30:00,317 10th St, Boston,MA,02215 +172737,ThinkPad Laptop,1,999.99,2019-03-20 10:58:00,770 Highland St, Seattle,WA,98101 +172738,Apple Airpods Headphones,1,150.0,2019-03-20 19:50:00,197 Hill St, Boston,MA,02215 +172739,Wired Headphones,1,11.99,2019-03-18 21:55:00,96 Chestnut St, Dallas,TX,75001 +172740,AAA Batteries (4-pack),2,2.99,2019-03-16 19:22:00,824 Main St, Boston,MA,02215 +172741,Lightning Charging Cable,2,14.95,2019-03-07 11:00:00,681 Forest St, Austin,TX,73301 +172742,Wired Headphones,1,11.99,2019-03-23 08:46:00,874 10th St, New York City,NY,10001 +172743,Apple Airpods Headphones,1,150.0,2019-03-22 18:00:00,625 Cherry St, New York City,NY,10001 +172744,20in Monitor,1,109.99,2019-03-31 16:37:00,476 Jefferson St, San Francisco,CA,94016 +172745,AA Batteries (4-pack),2,3.84,2019-03-30 13:17:00,56 4th St, San Francisco,CA,94016 +172746,34in Ultrawide Monitor,1,379.99,2019-03-05 18:40:00,742 Lincoln St, Seattle,WA,98101 +172747,Lightning Charging Cable,1,14.95,2019-03-10 13:40:00,103 Hickory St, Portland,OR,97035 +172748,AAA Batteries (4-pack),4,2.99,2019-03-03 08:04:00,453 9th St, San Francisco,CA,94016 +172749,USB-C Charging Cable,1,11.95,2019-03-27 08:56:00,766 Cedar St, San Francisco,CA,94016 +172750,Wired Headphones,1,11.99,2019-03-02 22:33:00,339 Lake St, Los Angeles,CA,90001 +172751,Bose SoundSport Headphones,1,99.99,2019-03-23 19:04:00,82 4th St, Los Angeles,CA,90001 +172752,27in FHD Monitor,1,149.99,2019-03-26 10:05:00,354 6th St, San Francisco,CA,94016 +172753,Lightning Charging Cable,1,14.95,2019-03-25 14:30:00,450 Madison St, Dallas,TX,75001 +172754,AAA Batteries (4-pack),3,2.99,2019-03-15 21:27:00,89 South St, Portland,OR,97035 +172755,Flatscreen TV,1,300.0,2019-03-18 13:11:00,409 12th St, Dallas,TX,75001 +172756,AA Batteries (4-pack),1,3.84,2019-03-09 07:54:00,180 12th St, San Francisco,CA,94016 +172757,AAA Batteries (4-pack),3,2.99,2019-03-01 16:04:00,181 8th St, Los Angeles,CA,90001 +172758,20in Monitor,1,109.99,2019-03-22 17:06:00,684 Pine St, Atlanta,GA,30301 +172759,Bose SoundSport Headphones,1,99.99,2019-03-22 00:11:00,475 Willow St, San Francisco,CA,94016 +172760,AA Batteries (4-pack),1,3.84,2019-03-26 21:21:00,506 Cedar St, Los Angeles,CA,90001 +172761,AA Batteries (4-pack),1,3.84,2019-03-29 18:08:00,822 5th St, Atlanta,GA,30301 +172762,Apple Airpods Headphones,1,150.0,2019-03-26 08:42:00,317 10th St, Portland,OR,97035 +172763,USB-C Charging Cable,1,11.95,2019-03-01 11:52:00,673 13th St, Boston,MA,02215 +172764,Macbook Pro Laptop,1,1700.0,2019-03-07 14:22:00,74 Lake St, San Francisco,CA,94016 +172765,Wired Headphones,2,11.99,2019-03-27 22:14:00,119 Washington St, Boston,MA,02215 +172766,Apple Airpods Headphones,1,150.0,2019-03-23 15:42:00,984 14th St, San Francisco,CA,94016 +172767,Bose SoundSport Headphones,1,99.99,2019-03-27 20:40:00,344 Church St, Boston,MA,02215 +172768,Apple Airpods Headphones,1,150.0,2019-03-13 21:09:00,309 Madison St, San Francisco,CA,94016 +172769,Wired Headphones,1,11.99,2019-03-28 21:44:00,97 Sunset St, Los Angeles,CA,90001 +172770,USB-C Charging Cable,1,11.95,2019-03-02 10:07:00,917 10th St, Los Angeles,CA,90001 +172771,AA Batteries (4-pack),1,3.84,2019-03-29 21:03:00,629 Park St, Seattle,WA,98101 +172772,27in 4K Gaming Monitor,1,389.99,2019-03-17 12:01:00,962 14th St, Los Angeles,CA,90001 +172773,27in 4K Gaming Monitor,1,389.99,2019-03-14 10:37:00,323 Ridge St, San Francisco,CA,94016 +172774,ThinkPad Laptop,1,999.99,2019-03-21 11:56:00,351 Walnut St, Seattle,WA,98101 +172775,Lightning Charging Cable,1,14.95,2019-03-08 22:37:00,421 5th St, Boston,MA,02215 +172776,Apple Airpods Headphones,1,150.0,2019-03-06 12:51:00,757 2nd St, Dallas,TX,75001 +172777,AA Batteries (4-pack),2,3.84,2019-03-28 20:02:00,433 Meadow St, Seattle,WA,98101 +172778,Wired Headphones,2,11.99,2019-03-06 07:41:00,695 8th St, Austin,TX,73301 +172779,20in Monitor,1,109.99,2019-03-15 22:46:00,851 Chestnut St, San Francisco,CA,94016 +172780,USB-C Charging Cable,2,11.95,2019-03-18 16:25:00,994 Pine St, Atlanta,GA,30301 +172781,USB-C Charging Cable,1,11.95,2019-03-04 01:13:00,957 Center St, Atlanta,GA,30301 +172782,USB-C Charging Cable,1,11.95,2019-03-16 19:20:00,707 Highland St, San Francisco,CA,94016 +172782,AA Batteries (4-pack),2,3.84,2019-03-16 19:20:00,707 Highland St, San Francisco,CA,94016 +172783,USB-C Charging Cable,1,11.95,2019-03-04 22:14:00,363 Hill St, Boston,MA,02215 +172784,Macbook Pro Laptop,1,1700.0,2019-03-18 23:28:00,80 Johnson St, San Francisco,CA,94016 +172785,AA Batteries (4-pack),1,3.84,2019-03-23 18:08:00,2 Highland St, San Francisco,CA,94016 +172786,Bose SoundSport Headphones,1,99.99,2019-03-05 09:40:00,318 Madison St, Los Angeles,CA,90001 +172787,USB-C Charging Cable,1,11.95,2019-03-25 19:11:00,254 Wilson St, Seattle,WA,98101 +172788,Wired Headphones,1,11.99,2019-03-19 10:03:00,998 9th St, Atlanta,GA,30301 +172788,27in 4K Gaming Monitor,1,389.99,2019-03-19 10:03:00,998 9th St, Atlanta,GA,30301 +172789,Lightning Charging Cable,1,14.95,2019-03-08 13:20:00,692 Jefferson St, Los Angeles,CA,90001 +172790,Wired Headphones,1,11.99,2019-03-21 18:41:00,144 Maple St, Los Angeles,CA,90001 +172791,Wired Headphones,1,11.99,2019-03-08 14:20:00,542 South St, Boston,MA,02215 +172792,AAA Batteries (4-pack),1,2.99,2019-03-12 15:50:00,512 South St, San Francisco,CA,94016 +172793,27in 4K Gaming Monitor,1,389.99,2019-03-09 20:13:00,732 Lake St, Seattle,WA,98101 +172794,Apple Airpods Headphones,1,150.0,2019-03-11 15:13:00,246 Lakeview St, San Francisco,CA,94016 +172795,Wired Headphones,1,11.99,2019-03-06 22:59:00,727 14th St, Atlanta,GA,30301 +172796,USB-C Charging Cable,1,11.95,2019-03-09 10:09:00,440 8th St, Boston,MA,02215 +172797,Wired Headphones,1,11.99,2019-03-23 13:43:00,377 Forest St, San Francisco,CA,94016 +172798,Lightning Charging Cable,1,14.95,2019-03-29 11:01:00,866 12th St, Austin,TX,73301 +172799,AAA Batteries (4-pack),1,2.99,2019-03-02 12:04:00,280 Main St, San Francisco,CA,94016 +172800,Google Phone,1,600.0,2019-03-13 21:07:00,321 Hill St, Austin,TX,73301 +172800,USB-C Charging Cable,1,11.95,2019-03-13 21:07:00,321 Hill St, Austin,TX,73301 +172801,Lightning Charging Cable,2,14.95,2019-03-17 02:49:00,354 Walnut St, Seattle,WA,98101 +172802,Wired Headphones,1,11.99,2019-03-17 13:04:00,839 Pine St, Los Angeles,CA,90001 +172803,Bose SoundSport Headphones,1,99.99,2019-03-19 09:40:00,306 13th St, Seattle,WA,98101 +172804,Apple Airpods Headphones,1,150.0,2019-03-15 10:11:00,319 Chestnut St, New York City,NY,10001 +172805,AA Batteries (4-pack),2,3.84,2019-03-14 19:20:00,453 Hill St, Atlanta,GA,30301 +172805,Bose SoundSport Headphones,1,99.99,2019-03-14 19:20:00,453 Hill St, Atlanta,GA,30301 +172806,20in Monitor,1,109.99,2019-03-06 16:12:00,97 9th St, San Francisco,CA,94016 +172807,Apple Airpods Headphones,1,150.0,2019-03-24 16:33:00,76 West St, San Francisco,CA,94016 +172808,Macbook Pro Laptop,1,1700.0,2019-03-08 05:43:00,906 12th St, San Francisco,CA,94016 +172809,27in FHD Monitor,1,149.99,2019-03-09 19:52:00,529 Jefferson St, New York City,NY,10001 +172810,Lightning Charging Cable,1,14.95,2019-03-10 23:40:00,133 8th St, Portland,OR,97035 +172811,Macbook Pro Laptop,1,1700.0,2019-03-25 14:53:00,483 Jackson St, Los Angeles,CA,90001 +172812,Google Phone,1,600.0,2019-03-01 10:53:00,40 Adams St, Austin,TX,73301 +172813,Bose SoundSport Headphones,1,99.99,2019-03-13 11:27:00,196 2nd St, Portland,OR,97035 +172814,AAA Batteries (4-pack),1,2.99,2019-03-10 17:47:00,11 Johnson St, Los Angeles,CA,90001 +172815,Lightning Charging Cable,1,14.95,2019-03-24 11:08:00,281 Madison St, Portland,OR,97035 +172816,Bose SoundSport Headphones,1,99.99,2019-03-06 13:33:00,531 Hill St, Seattle,WA,98101 +172817,Apple Airpods Headphones,1,150.0,2019-03-07 18:25:00,158 Meadow St, Dallas,TX,75001 +172818,Lightning Charging Cable,1,14.95,2019-03-10 01:44:00,684 South St, Dallas,TX,75001 +172819,Wired Headphones,1,11.99,2019-03-30 16:15:00,325 River St, Seattle,WA,98101 +172820,Apple Airpods Headphones,1,150.0,2019-03-15 12:14:00,798 9th St, Austin,TX,73301 +172821,Lightning Charging Cable,1,14.95,2019-03-25 22:36:00,859 5th St, Seattle,WA,98101 +172822,27in FHD Monitor,1,149.99,2019-03-09 11:10:00,530 Center St, Dallas,TX,75001 +172823,Lightning Charging Cable,2,14.95,2019-03-22 06:52:00,36 Hickory St, New York City,NY,10001 +172824,20in Monitor,1,109.99,2019-03-28 21:19:00,370 Willow St, Atlanta,GA,30301 +172825,AAA Batteries (4-pack),1,2.99,2019-03-10 10:37:00,778 Elm St, New York City,NY,10001 +172826,Bose SoundSport Headphones,1,99.99,2019-03-21 23:16:00,40 Ridge St, Los Angeles,CA,90001 +172827,USB-C Charging Cable,1,11.95,2019-03-01 17:17:00,938 10th St, Seattle,WA,98101 +172828,Apple Airpods Headphones,1,150.0,2019-03-29 21:44:00,389 14th St, San Francisco,CA,94016 +172828,Lightning Charging Cable,1,14.95,2019-03-29 21:44:00,389 14th St, San Francisco,CA,94016 +172829,USB-C Charging Cable,1,11.95,2019-03-25 21:56:00,727 West St, New York City,NY,10001 +172830,USB-C Charging Cable,1,11.95,2019-03-05 23:49:00,5 South St, Los Angeles,CA,90001 +172831,USB-C Charging Cable,1,11.95,2019-03-30 11:58:00,270 Lakeview St, Atlanta,GA,30301 +172832,Lightning Charging Cable,1,14.95,2019-03-12 19:01:00,35 Cherry St, San Francisco,CA,94016 +172833,27in FHD Monitor,1,149.99,2019-03-02 16:04:00,69 Dogwood St, Boston,MA,02215 +172834,AAA Batteries (4-pack),2,2.99,2019-03-09 12:49:00,945 Lincoln St, Boston,MA,02215 +172835,27in 4K Gaming Monitor,1,389.99,2019-03-21 23:12:00,859 Walnut St, Seattle,WA,98101 +172836,ThinkPad Laptop,1,999.99,2019-03-23 23:35:00,305 North St, San Francisco,CA,94016 +172837,USB-C Charging Cable,1,11.95,2019-03-04 13:09:00,407 Walnut St, Seattle,WA,98101 +172838,Wired Headphones,1,11.99,2019-03-05 18:53:00,193 River St, San Francisco,CA,94016 +172839,AA Batteries (4-pack),2,3.84,2019-03-18 13:49:00,372 Elm St, Seattle,WA,98101 +172840,Lightning Charging Cable,1,14.95,2019-03-01 11:06:00,172 Dogwood St, Dallas,TX,75001 +172841,Bose SoundSport Headphones,1,99.99,2019-03-24 17:02:00,809 9th St, Austin,TX,73301 +172842,AA Batteries (4-pack),1,3.84,2019-03-26 21:44:00,793 9th St, Portland,ME,04101 +172843,Bose SoundSport Headphones,1,99.99,2019-03-25 09:40:00,102 Highland St, Los Angeles,CA,90001 +172844,AA Batteries (4-pack),1,3.84,2019-03-23 09:06:00,588 Spruce St, Austin,TX,73301 +172845,AA Batteries (4-pack),1,3.84,2019-03-02 16:24:00,135 Center St, Dallas,TX,75001 +172846,AAA Batteries (4-pack),2,2.99,2019-03-14 11:28:00,675 Cherry St, Atlanta,GA,30301 +172847,Google Phone,1,600.0,2019-03-30 17:06:00,828 Lake St, New York City,NY,10001 +172847,Wired Headphones,1,11.99,2019-03-30 17:06:00,828 Lake St, New York City,NY,10001 +172848,Lightning Charging Cable,1,14.95,2019-03-22 19:10:00,75 Lincoln St, San Francisco,CA,94016 +172849,USB-C Charging Cable,1,11.95,2019-03-03 16:28:00,774 13th St, San Francisco,CA,94016 +172850,AA Batteries (4-pack),1,3.84,2019-03-07 07:48:00,344 2nd St, Austin,TX,73301 +172851,Wired Headphones,1,11.99,2019-03-19 17:11:00,821 Spruce St, San Francisco,CA,94016 +172852,Lightning Charging Cable,1,14.95,2019-03-23 03:03:00,339 Forest St, San Francisco,CA,94016 +172853,AAA Batteries (4-pack),1,2.99,2019-03-06 10:02:00,163 Highland St, Dallas,TX,75001 +172854,Wired Headphones,1,11.99,2019-03-14 15:26:00,979 2nd St, Atlanta,GA,30301 +172855,27in 4K Gaming Monitor,1,389.99,2019-03-23 15:23:00,208 Sunset St, San Francisco,CA,94016 +172856,AA Batteries (4-pack),2,3.84,2019-03-07 17:17:00,934 4th St, Portland,OR,97035 +172857,Lightning Charging Cable,1,14.95,2019-03-29 17:51:00,439 Willow St, Boston,MA,02215 +172858,AAA Batteries (4-pack),1,2.99,2019-03-03 11:30:00,318 Meadow St, New York City,NY,10001 +172859,USB-C Charging Cable,1,11.95,2019-03-18 10:59:00,249 River St, Boston,MA,02215 +172860,iPhone,1,700.0,2019-03-15 03:45:00,408 Maple St, Boston,MA,02215 +172861,Vareebadd Phone,1,400.0,2019-03-06 11:42:00,212 Lake St, Boston,MA,02215 +172861,Wired Headphones,2,11.99,2019-03-06 11:42:00,212 Lake St, Boston,MA,02215 +172862,Apple Airpods Headphones,1,150.0,2019-03-26 10:15:00,493 Johnson St, San Francisco,CA,94016 +172863,AAA Batteries (4-pack),1,2.99,2019-03-09 17:35:00,589 Jefferson St, Boston,MA,02215 +172864,Apple Airpods Headphones,1,150.0,2019-03-23 08:02:00,308 Chestnut St, San Francisco,CA,94016 +172865,20in Monitor,1,109.99,2019-03-22 00:14:00,347 10th St, Los Angeles,CA,90001 +172866,iPhone,1,700.0,2019-03-27 20:07:00,765 9th St, Los Angeles,CA,90001 +172867,Apple Airpods Headphones,1,150.0,2019-03-19 23:25:00,823 Walnut St, Boston,MA,02215 +172867,Google Phone,1,600.0,2019-03-19 23:25:00,823 Walnut St, Boston,MA,02215 +172868,Google Phone,1,600.0,2019-03-24 01:43:00,692 6th St, Dallas,TX,75001 +172869,USB-C Charging Cable,1,11.95,2019-03-07 07:34:00,738 Lake St, Seattle,WA,98101 +172870,Bose SoundSport Headphones,1,99.99,2019-03-27 10:05:00,191 10th St, Portland,OR,97035 +172871,Bose SoundSport Headphones,1,99.99,2019-03-14 12:43:00,597 6th St, New York City,NY,10001 +172872,Wired Headphones,1,11.99,2019-03-11 15:48:00,755 6th St, New York City,NY,10001 +172873,27in FHD Monitor,1,149.99,2019-03-02 19:32:00,144 Jefferson St, San Francisco,CA,94016 +172874,Apple Airpods Headphones,1,150.0,2019-03-03 10:33:00,552 2nd St, Atlanta,GA,30301 +172875,Macbook Pro Laptop,1,1700.0,2019-03-02 22:07:00,306 Spruce St, Los Angeles,CA,90001 +172876,iPhone,1,700.0,2019-03-02 06:40:00,972 Center St, Austin,TX,73301 +172877,Wired Headphones,1,11.99,2019-03-29 20:16:00,972 10th St, Los Angeles,CA,90001 +172878,20in Monitor,1,109.99,2019-03-25 02:11:00,69 Madison St, New York City,NY,10001 +172879,20in Monitor,1,109.99,2019-03-04 15:17:00,970 12th St, Atlanta,GA,30301 +172880,AA Batteries (4-pack),1,3.84,2019-03-18 10:25:00,541 Adams St, Portland,OR,97035 +172881,AAA Batteries (4-pack),1,2.99,2019-03-04 21:14:00,999 14th St, Seattle,WA,98101 +172882,AA Batteries (4-pack),2,3.84,2019-03-16 20:56:00,868 Washington St, Dallas,TX,75001 +172883,Apple Airpods Headphones,1,150.0,2019-03-28 12:54:00,587 7th St, Austin,TX,73301 +172884,Apple Airpods Headphones,1,150.0,2019-03-08 15:49:00,894 Highland St, Dallas,TX,75001 +172885,Wired Headphones,1,11.99,2019-03-03 09:41:00,916 Willow St, Dallas,TX,75001 +172886,Apple Airpods Headphones,1,150.0,2019-03-16 16:24:00,849 Sunset St, Seattle,WA,98101 +172887,Lightning Charging Cable,1,14.95,2019-03-28 23:35:00,200 Washington St, Austin,TX,73301 +172888,Google Phone,1,600.0,2019-03-03 14:45:00,656 Hickory St, San Francisco,CA,94016 +172889,iPhone,1,700.0,2019-03-15 14:57:00,10 Dogwood St, Seattle,WA,98101 +172890,USB-C Charging Cable,1,11.95,2019-03-14 10:07:00,224 Willow St, Boston,MA,02215 +172891,AAA Batteries (4-pack),1,2.99,2019-03-16 21:30:00,931 Highland St, New York City,NY,10001 +172892,Vareebadd Phone,1,400.0,2019-03-30 20:38:00,511 13th St, Dallas,TX,75001 +172892,Bose SoundSport Headphones,1,99.99,2019-03-30 20:38:00,511 13th St, Dallas,TX,75001 +172893,Lightning Charging Cable,1,14.95,2019-03-05 13:59:00,323 Chestnut St, San Francisco,CA,94016 +172894,USB-C Charging Cable,1,11.95,2019-03-01 16:45:00,862 Center St, San Francisco,CA,94016 +172895,Wired Headphones,2,11.99,2019-03-22 13:03:00,383 North St, San Francisco,CA,94016 +172896,34in Ultrawide Monitor,1,379.99,2019-03-22 12:58:00,182 Ridge St, Atlanta,GA,30301 +172897,AAA Batteries (4-pack),1,2.99,2019-03-04 14:34:00,448 Madison St, New York City,NY,10001 +172898,iPhone,1,700.0,2019-03-12 15:19:00,140 12th St, Los Angeles,CA,90001 +172898,Lightning Charging Cable,1,14.95,2019-03-12 15:19:00,140 12th St, Los Angeles,CA,90001 +172899,AAA Batteries (4-pack),1,2.99,2019-03-21 11:33:00,322 9th St, San Francisco,CA,94016 +172900,27in 4K Gaming Monitor,1,389.99,2019-03-15 19:58:00,808 5th St, New York City,NY,10001 +172901,AAA Batteries (4-pack),1,2.99,2019-03-25 20:44:00,808 11th St, San Francisco,CA,94016 +172902,Lightning Charging Cable,1,14.95,2019-03-26 18:20:00,339 Chestnut St, San Francisco,CA,94016 +172903,27in FHD Monitor,1,149.99,2019-03-11 06:48:00,850 Elm St, Austin,TX,73301 +172904,AAA Batteries (4-pack),1,2.99,2019-03-02 13:51:00,746 Madison St, Los Angeles,CA,90001 +172905,USB-C Charging Cable,1,11.95,2019-03-19 21:46:00,601 Maple St, San Francisco,CA,94016 +172906,Bose SoundSport Headphones,1,99.99,2019-03-04 07:01:00,8 5th St, San Francisco,CA,94016 +172907,Apple Airpods Headphones,1,150.0,2019-03-28 10:11:00,749 Pine St, San Francisco,CA,94016 +172908,USB-C Charging Cable,1,11.95,2019-03-17 11:57:00,857 Main St, San Francisco,CA,94016 +172909,AA Batteries (4-pack),1,3.84,2019-03-09 22:57:00,660 Willow St, New York City,NY,10001 +172910,Apple Airpods Headphones,1,150.0,2019-03-21 10:43:00,661 4th St, San Francisco,CA,94016 +172911,Apple Airpods Headphones,1,150.0,2019-03-21 10:46:00,379 6th St, Seattle,WA,98101 +172912,iPhone,1,700.0,2019-03-06 07:43:00,656 Main St, San Francisco,CA,94016 +172912,Lightning Charging Cable,1,14.95,2019-03-06 07:43:00,656 Main St, San Francisco,CA,94016 +172913,Lightning Charging Cable,1,14.95,2019-03-11 12:27:00,288 Washington St, San Francisco,CA,94016 +172914,27in 4K Gaming Monitor,1,389.99,2019-03-08 22:45:00,295 Cherry St, New York City,NY,10001 +172915,Lightning Charging Cable,1,14.95,2019-03-28 15:52:00,191 Jackson St, Austin,TX,73301 +172916,Macbook Pro Laptop,1,1700.0,2019-03-23 04:15:00,159 Dogwood St, Boston,MA,02215 +172917,Google Phone,1,600.0,2019-03-13 16:18:00,896 14th St, Los Angeles,CA,90001 +172918,USB-C Charging Cable,1,11.95,2019-03-04 18:24:00,771 Sunset St, Seattle,WA,98101 +172919,Bose SoundSport Headphones,1,99.99,2019-03-04 13:17:00,627 North St, Boston,MA,02215 +172920,AAA Batteries (4-pack),3,2.99,2019-03-22 08:29:00,737 Cherry St, Dallas,TX,75001 +172921,Lightning Charging Cable,1,14.95,2019-03-23 20:28:00,550 Hill St, Portland,OR,97035 +172922,AAA Batteries (4-pack),1,2.99,2019-03-12 11:26:00,903 Adams St, New York City,NY,10001 +172923,Google Phone,1,600.0,2019-03-06 14:35:00,472 Walnut St, Portland,OR,97035 +172924,AAA Batteries (4-pack),1,2.99,2019-03-15 18:22:00,541 Ridge St, New York City,NY,10001 +172925,Lightning Charging Cable,1,14.95,2019-03-11 15:02:00,813 Main St, Portland,OR,97035 +172926,Lightning Charging Cable,1,14.95,2019-03-31 17:46:00,600 Highland St, San Francisco,CA,94016 +172927,AAA Batteries (4-pack),1,2.99,2019-03-27 19:51:00,776 12th St, New York City,NY,10001 +172928,34in Ultrawide Monitor,1,379.99,2019-03-23 17:47:00,294 Walnut St, San Francisco,CA,94016 +172929,AA Batteries (4-pack),1,3.84,2019-03-24 11:03:00,86 Willow St, Portland,OR,97035 +172930,Bose SoundSport Headphones,1,99.99,2019-03-05 10:36:00,95 4th St, Los Angeles,CA,90001 +172931,Wired Headphones,1,11.99,2019-03-31 13:29:00,132 13th St, Seattle,WA,98101 +172932,Lightning Charging Cable,1,14.95,2019-03-01 08:22:00,449 Madison St, Boston,MA,02215 +172933,Wired Headphones,1,11.99,2019-03-04 14:49:00,975 13th St, Los Angeles,CA,90001 +172934,Google Phone,1,600.0,2019-03-23 20:07:00,170 Hickory St, New York City,NY,10001 +172935,iPhone,1,700.0,2019-03-05 17:48:00,969 11th St, Seattle,WA,98101 +172935,Apple Airpods Headphones,1,150.0,2019-03-05 17:48:00,969 11th St, Seattle,WA,98101 +172936,Wired Headphones,1,11.99,2019-03-13 17:01:00,663 Sunset St, Boston,MA,02215 +172937,USB-C Charging Cable,1,11.95,2019-03-11 17:49:00,93 10th St, San Francisco,CA,94016 +172938,27in FHD Monitor,1,149.99,2019-03-30 20:10:00,397 Adams St, Los Angeles,CA,90001 +172939,Apple Airpods Headphones,1,150.0,2019-03-31 05:10:00,546 4th St, New York City,NY,10001 +172940,AA Batteries (4-pack),1,3.84,2019-03-11 11:40:00,68 2nd St, Los Angeles,CA,90001 +172941,Lightning Charging Cable,1,14.95,2019-03-29 18:30:00,152 14th St, San Francisco,CA,94016 +172942,AA Batteries (4-pack),1,3.84,2019-03-09 12:23:00,858 8th St, San Francisco,CA,94016 +172943,AAA Batteries (4-pack),1,2.99,2019-03-17 18:06:00,313 Pine St, San Francisco,CA,94016 +172944,iPhone,1,700.0,2019-03-09 22:43:00,603 Church St, San Francisco,CA,94016 +172945,Lightning Charging Cable,1,14.95,2019-03-10 10:29:00,705 Lake St, New York City,NY,10001 +172946,USB-C Charging Cable,1,11.95,2019-03-11 19:28:00,209 4th St, Atlanta,GA,30301 +172947,Lightning Charging Cable,1,14.95,2019-03-02 11:43:00,919 River St, Seattle,WA,98101 +172948,Wired Headphones,1,11.99,2019-03-05 12:07:00,567 Hickory St, San Francisco,CA,94016 +172949,ThinkPad Laptop,1,999.99,2019-03-30 12:44:00,848 10th St, New York City,NY,10001 +172950,AA Batteries (4-pack),1,3.84,2019-03-25 16:45:00,603 13th St, Austin,TX,73301 +172951,AAA Batteries (4-pack),1,2.99,2019-03-26 12:32:00,317 11th St, San Francisco,CA,94016 +172952,Bose SoundSport Headphones,1,99.99,2019-03-22 08:18:00,346 Jefferson St, New York City,NY,10001 +172953,AA Batteries (4-pack),1,3.84,2019-03-25 18:42:00,809 9th St, Los Angeles,CA,90001 +172954,34in Ultrawide Monitor,1,379.99,2019-03-13 07:15:00,500 Madison St, Atlanta,GA,30301 +172955,Wired Headphones,1,11.99,2019-03-28 13:06:00,149 Jackson St, San Francisco,CA,94016 +172956,USB-C Charging Cable,1,11.95,2019-03-16 12:08:00,989 Spruce St, Atlanta,GA,30301 +172957,Wired Headphones,1,11.99,2019-03-17 15:54:00,370 Meadow St, New York City,NY,10001 +172958,27in 4K Gaming Monitor,1,389.99,2019-03-09 19:44:00,471 2nd St, New York City,NY,10001 +172959,Wired Headphones,1,11.99,2019-03-23 18:20:00,351 Madison St, Los Angeles,CA,90001 +172960,Lightning Charging Cable,2,14.95,2019-03-03 12:25:00,612 Cherry St, Los Angeles,CA,90001 +172961,Google Phone,1,600.0,2019-03-08 14:10:00,605 South St, Los Angeles,CA,90001 +172962,Apple Airpods Headphones,1,150.0,2019-03-26 15:10:00,488 Chestnut St, San Francisco,CA,94016 +172963,USB-C Charging Cable,1,11.95,2019-03-07 23:09:00,140 6th St, Seattle,WA,98101 +172964,Wired Headphones,1,11.99,2019-03-20 23:01:00,519 North St, Los Angeles,CA,90001 +172965,AA Batteries (4-pack),2,3.84,2019-03-24 18:10:00,631 13th St, San Francisco,CA,94016 +172966,Apple Airpods Headphones,1,150.0,2019-03-10 13:51:00,826 Ridge St, Los Angeles,CA,90001 +172967,USB-C Charging Cable,1,11.95,2019-03-15 14:33:00,916 Madison St, San Francisco,CA,94016 +172968,Bose SoundSport Headphones,1,99.99,2019-03-19 20:34:00,546 Wilson St, San Francisco,CA,94016 +172969,Flatscreen TV,1,300.0,2019-03-08 13:42:00,887 Cedar St, San Francisco,CA,94016 +172970,USB-C Charging Cable,1,11.95,2019-03-19 17:45:00,171 14th St, Portland,OR,97035 +172971,AAA Batteries (4-pack),1,2.99,2019-03-06 14:33:00,610 7th St, New York City,NY,10001 +172972,34in Ultrawide Monitor,1,379.99,2019-03-01 08:04:00,92 Church St, New York City,NY,10001 +172973,USB-C Charging Cable,1,11.95,2019-03-27 20:57:00,72 Cherry St, Portland,OR,97035 +172974,AA Batteries (4-pack),1,3.84,2019-03-16 12:18:00,803 Park St, Dallas,TX,75001 +172975,Wired Headphones,1,11.99,2019-03-30 09:45:00,295 Highland St, New York City,NY,10001 +172976,iPhone,1,700.0,2019-03-07 17:15:00,659 South St, San Francisco,CA,94016 +172977,27in FHD Monitor,1,149.99,2019-03-15 22:24:00,415 12th St, Boston,MA,02215 +172978,Lightning Charging Cable,1,14.95,2019-03-29 12:34:00,550 Lake St, Boston,MA,02215 +172979,Lightning Charging Cable,1,14.95,2019-03-14 14:43:00,953 Elm St, San Francisco,CA,94016 +172980,Lightning Charging Cable,1,14.95,2019-03-01 11:14:00,279 4th St, Boston,MA,02215 +172981,Lightning Charging Cable,1,14.95,2019-03-11 13:37:00,528 Church St, Los Angeles,CA,90001 +172982,Apple Airpods Headphones,1,150.0,2019-03-28 07:45:00,819 Jackson St, Boston,MA,02215 +172983,AA Batteries (4-pack),1,3.84,2019-03-22 10:37:00,480 4th St, San Francisco,CA,94016 +172984,27in 4K Gaming Monitor,1,389.99,2019-03-09 17:16:00,497 Cedar St, San Francisco,CA,94016 +172985,AA Batteries (4-pack),1,3.84,2019-03-09 20:58:00,671 South St, Dallas,TX,75001 +172986,USB-C Charging Cable,1,11.95,2019-03-14 00:13:00,462 South St, New York City,NY,10001 +172987,Wired Headphones,1,11.99,2019-03-02 11:29:00,981 South St, Los Angeles,CA,90001 +172988,27in 4K Gaming Monitor,1,389.99,2019-03-31 14:25:00,297 1st St, New York City,NY,10001 +172989,Apple Airpods Headphones,1,150.0,2019-03-09 11:36:00,543 7th St, Dallas,TX,75001 +172990,AA Batteries (4-pack),2,3.84,2019-03-18 16:28:00,772 11th St, San Francisco,CA,94016 +172991,Lightning Charging Cable,1,14.95,2019-03-19 01:38:00,217 Cherry St, San Francisco,CA,94016 +172992,Lightning Charging Cable,1,14.95,2019-03-24 15:51:00,602 Cedar St, San Francisco,CA,94016 +172993,Lightning Charging Cable,1,14.95,2019-03-20 20:26:00,456 Hickory St, Portland,OR,97035 +172994,AAA Batteries (4-pack),1,2.99,2019-03-26 10:32:00,994 5th St, Dallas,TX,75001 +172995,USB-C Charging Cable,1,11.95,2019-03-02 14:05:00,241 Walnut St, Los Angeles,CA,90001 +172996,Lightning Charging Cable,1,14.95,2019-03-20 11:06:00,926 Hickory St, New York City,NY,10001 +172997,Apple Airpods Headphones,1,150.0,2019-03-03 18:49:00,115 North St, New York City,NY,10001 +172998,Lightning Charging Cable,1,14.95,2019-03-14 17:23:00,970 Sunset St, Austin,TX,73301 +172999,AA Batteries (4-pack),1,3.84,2019-03-05 20:43:00,211 Lakeview St, Boston,MA,02215 +173000,27in 4K Gaming Monitor,1,389.99,2019-03-06 23:28:00,155 Lake St, San Francisco,CA,94016 +173001,20in Monitor,1,109.99,2019-03-21 01:10:00,670 8th St, New York City,NY,10001 +173002,Vareebadd Phone,1,400.0,2019-03-07 05:32:00,235 West St, Los Angeles,CA,90001 +173002,Wired Headphones,1,11.99,2019-03-07 05:32:00,235 West St, Los Angeles,CA,90001 +173003,34in Ultrawide Monitor,1,379.99,2019-03-16 16:33:00,222 Spruce St, New York City,NY,10001 +173004,AAA Batteries (4-pack),1,2.99,2019-03-01 20:57:00,628 Jackson St, Seattle,WA,98101 +173005,Lightning Charging Cable,1,14.95,2019-03-25 12:38:00,227 Elm St, Boston,MA,02215 +173006,Bose SoundSport Headphones,1,99.99,2019-03-21 16:44:00,166 West St, New York City,NY,10001 +173007,Flatscreen TV,1,300.0,2019-03-02 08:53:00,856 Washington St, New York City,NY,10001 +173008,AA Batteries (4-pack),1,3.84,2019-03-18 10:33:00,580 12th St, Atlanta,GA,30301 +173009,Apple Airpods Headphones,1,150.0,2019-03-01 19:46:00,142 Spruce St, San Francisco,CA,94016 +173010,Macbook Pro Laptop,1,1700.0,2019-03-26 20:19:00,222 West St, Seattle,WA,98101 +173011,AA Batteries (4-pack),3,3.84,2019-03-02 15:42:00,18 Chestnut St, Seattle,WA,98101 +173012,20in Monitor,1,109.99,2019-03-04 13:32:00,189 Center St, Seattle,WA,98101 +173013,Flatscreen TV,1,300.0,2019-03-21 23:52:00,670 Washington St, San Francisco,CA,94016 +173014,Google Phone,1,600.0,2019-03-12 11:23:00,44 Cedar St, Boston,MA,02215 +173015,Lightning Charging Cable,2,14.95,2019-03-05 12:20:00,567 Lake St, San Francisco,CA,94016 +173016,AA Batteries (4-pack),2,3.84,2019-03-10 12:08:00,355 8th St, Seattle,WA,98101 +173017,Apple Airpods Headphones,1,150.0,2019-03-10 02:04:00,804 Meadow St, Austin,TX,73301 +173018,Lightning Charging Cable,1,14.95,2019-03-30 09:47:00,497 Lincoln St, Portland,OR,97035 +173019,AA Batteries (4-pack),2,3.84,2019-03-06 15:43:00,338 Willow St, San Francisco,CA,94016 +173020,Bose SoundSport Headphones,1,99.99,2019-03-25 16:30:00,429 Willow St, New York City,NY,10001 +173021,Flatscreen TV,1,300.0,2019-03-25 20:05:00,595 Walnut St, New York City,NY,10001 +173022,USB-C Charging Cable,1,11.95,2019-03-14 16:26:00,2 West St, Los Angeles,CA,90001 +173023,Lightning Charging Cable,2,14.95,2019-03-09 09:49:00,159 13th St, Austin,TX,73301 +173024,Lightning Charging Cable,1,14.95,2019-03-23 16:14:00,611 Hickory St, Atlanta,GA,30301 +173025,Lightning Charging Cable,1,14.95,2019-03-22 20:16:00,203 Elm St, Los Angeles,CA,90001 +173026,Wired Headphones,1,11.99,2019-03-13 05:16:00,341 West St, Dallas,TX,75001 +173027,Lightning Charging Cable,1,14.95,2019-03-06 12:10:00,784 Ridge St, Dallas,TX,75001 +173028,Wired Headphones,1,11.99,2019-03-16 13:47:00,595 Highland St, New York City,NY,10001 +173029,Google Phone,1,600.0,2019-03-11 19:34:00,566 Lakeview St, Los Angeles,CA,90001 +173030,ThinkPad Laptop,1,999.99,2019-03-28 23:56:00,370 Madison St, Boston,MA,02215 +173031,Bose SoundSport Headphones,1,99.99,2019-03-10 20:12:00,783 River St, New York City,NY,10001 +173032,Wired Headphones,1,11.99,2019-03-11 07:47:00,239 Johnson St, New York City,NY,10001 +173033,Apple Airpods Headphones,1,150.0,2019-03-04 17:29:00,950 10th St, Austin,TX,73301 +173034,USB-C Charging Cable,1,11.95,2019-03-23 23:52:00,479 Jackson St, Los Angeles,CA,90001 +173035,AAA Batteries (4-pack),1,2.99,2019-03-01 21:05:00,623 4th St, San Francisco,CA,94016 +173036,AAA Batteries (4-pack),3,2.99,2019-03-08 14:19:00,587 Forest St, Portland,ME,04101 +173037,Bose SoundSport Headphones,1,99.99,2019-03-31 13:08:00,934 Willow St, San Francisco,CA,94016 +173038,Lightning Charging Cable,1,14.95,2019-03-11 10:45:00,463 Cedar St, San Francisco,CA,94016 +173039,Lightning Charging Cable,1,14.95,2019-03-30 08:50:00,764 Hill St, San Francisco,CA,94016 +173040,USB-C Charging Cable,1,11.95,2019-03-24 18:03:00,969 Johnson St, Seattle,WA,98101 +173041,Lightning Charging Cable,1,14.95,2019-03-06 22:15:00,716 Highland St, San Francisco,CA,94016 +173042,27in 4K Gaming Monitor,1,389.99,2019-03-31 22:38:00,815 13th St, Austin,TX,73301 +173043,Wired Headphones,1,11.99,2019-03-23 13:16:00,457 Center St, Boston,MA,02215 +173044,27in FHD Monitor,1,149.99,2019-03-22 19:10:00,591 2nd St, San Francisco,CA,94016 +173045,27in FHD Monitor,1,149.99,2019-03-05 19:44:00,68 Madison St, Los Angeles,CA,90001 +173046,27in FHD Monitor,1,149.99,2019-03-03 18:18:00,872 7th St, Los Angeles,CA,90001 +173047,USB-C Charging Cable,1,11.95,2019-03-08 18:02:00,228 6th St, Seattle,WA,98101 +173048,Wired Headphones,1,11.99,2019-03-16 20:31:00,346 Cedar St, Los Angeles,CA,90001 +173049,Bose SoundSport Headphones,1,99.99,2019-03-13 09:07:00,329 6th St, Austin,TX,73301 +173050,AA Batteries (4-pack),1,3.84,2019-03-15 22:08:00,651 Madison St, Seattle,WA,98101 +173051,USB-C Charging Cable,1,11.95,2019-03-19 10:26:00,984 10th St, New York City,NY,10001 +173052,27in FHD Monitor,1,149.99,2019-03-16 09:32:00,889 Main St, Austin,TX,73301 +173053,Flatscreen TV,1,300.0,2019-03-16 22:16:00,767 Cherry St, Boston,MA,02215 +173054,ThinkPad Laptop,1,999.99,2019-03-30 20:21:00,78 Spruce St, Portland,OR,97035 +173055,Apple Airpods Headphones,1,150.0,2019-03-23 15:33:00,269 1st St, New York City,NY,10001 +173055,Wired Headphones,1,11.99,2019-03-23 15:33:00,269 1st St, New York City,NY,10001 +173056,AA Batteries (4-pack),3,3.84,2019-03-12 19:22:00,421 9th St, Atlanta,GA,30301 +173056,Wired Headphones,1,11.99,2019-03-12 19:22:00,421 9th St, Atlanta,GA,30301 +173057,iPhone,1,700.0,2019-03-01 05:40:00,256 1st St, Atlanta,GA,30301 +173058,Bose SoundSport Headphones,1,99.99,2019-03-10 15:52:00,474 14th St, San Francisco,CA,94016 +173059,Bose SoundSport Headphones,1,99.99,2019-03-03 10:30:00,705 12th St, Portland,OR,97035 +173060,USB-C Charging Cable,1,11.95,2019-03-09 14:09:00,704 Pine St, Seattle,WA,98101 +173061,AA Batteries (4-pack),2,3.84,2019-03-03 13:09:00,520 Washington St, New York City,NY,10001 +173062,AAA Batteries (4-pack),1,2.99,2019-03-02 09:50:00,933 2nd St, San Francisco,CA,94016 +173063,Wired Headphones,2,11.99,2019-03-25 15:07:00,355 North St, San Francisco,CA,94016 +173064,27in FHD Monitor,1,149.99,2019-03-08 23:59:00,982 Cedar St, San Francisco,CA,94016 +173065,AAA Batteries (4-pack),2,2.99,2019-03-23 21:59:00,101 Jackson St, Atlanta,GA,30301 +173066,Vareebadd Phone,1,400.0,2019-03-11 13:50:00,380 10th St, New York City,NY,10001 +173066,USB-C Charging Cable,1,11.95,2019-03-11 13:50:00,380 10th St, New York City,NY,10001 +173066,Wired Headphones,1,11.99,2019-03-11 13:50:00,380 10th St, New York City,NY,10001 +173067,Bose SoundSport Headphones,1,99.99,2019-03-13 17:55:00,771 Cedar St, Los Angeles,CA,90001 +173068,AAA Batteries (4-pack),1,2.99,2019-03-04 09:08:00,266 West St, San Francisco,CA,94016 +173069,27in FHD Monitor,1,149.99,2019-03-01 13:34:00,571 13th St, New York City,NY,10001 +173070,Lightning Charging Cable,2,14.95,2019-03-22 16:09:00,977 Highland St, Atlanta,GA,30301 +173071,AAA Batteries (4-pack),2,2.99,2019-03-03 18:49:00,188 Chestnut St, New York City,NY,10001 +173072,Bose SoundSport Headphones,1,99.99,2019-03-30 14:38:00,875 Hill St, Boston,MA,02215 +173073,Wired Headphones,1,11.99,2019-03-17 05:51:00,903 Cedar St, Portland,OR,97035 +173074,AA Batteries (4-pack),1,3.84,2019-03-24 18:22:00,620 Sunset St, Austin,TX,73301 +173075,AAA Batteries (4-pack),2,2.99,2019-03-11 18:35:00,758 Highland St, New York City,NY,10001 +173076,AAA Batteries (4-pack),2,2.99,2019-03-29 16:48:00,129 Madison St, New York City,NY,10001 +173077,USB-C Charging Cable,1,11.95,2019-03-26 07:10:00,268 8th St, San Francisco,CA,94016 +173078,USB-C Charging Cable,1,11.95,2019-03-03 09:54:00,512 14th St, Portland,OR,97035 +173079,Apple Airpods Headphones,1,150.0,2019-03-21 20:30:00,542 Lakeview St, Dallas,TX,75001 +173080,Lightning Charging Cable,1,14.95,2019-03-11 12:09:00,533 Jackson St, Los Angeles,CA,90001 +173081,Apple Airpods Headphones,1,150.0,2019-03-26 21:22:00,771 9th St, Dallas,TX,75001 +173082,Wired Headphones,1,11.99,2019-03-30 19:37:00,774 Hill St, Los Angeles,CA,90001 +173083,Bose SoundSport Headphones,1,99.99,2019-03-29 17:36:00,682 8th St, Los Angeles,CA,90001 +173084,iPhone,1,700.0,2019-03-04 22:40:00,289 7th St, Atlanta,GA,30301 +173084,Lightning Charging Cable,1,14.95,2019-03-04 22:40:00,289 7th St, Atlanta,GA,30301 +173085,Wired Headphones,1,11.99,2019-03-21 08:30:00,537 Lakeview St, Portland,OR,97035 +173086,Lightning Charging Cable,1,14.95,2019-03-07 12:06:00,870 Forest St, Los Angeles,CA,90001 +173086,34in Ultrawide Monitor,1,379.99,2019-03-07 12:06:00,870 Forest St, Los Angeles,CA,90001 +173087,Lightning Charging Cable,1,14.95,2019-03-06 21:05:00,275 Jackson St, Los Angeles,CA,90001 +173088,Wired Headphones,1,11.99,2019-03-23 17:20:00,493 11th St, Dallas,TX,75001 +173089,USB-C Charging Cable,3,11.95,2019-03-13 13:51:00,209 Ridge St, Seattle,WA,98101 +173090,AAA Batteries (4-pack),1,2.99,2019-03-31 00:07:00,10 9th St, New York City,NY,10001 +173091,AA Batteries (4-pack),2,3.84,2019-03-22 13:21:00,368 Maple St, New York City,NY,10001 +173092,AAA Batteries (4-pack),1,2.99,2019-03-24 12:14:00,835 5th St, Los Angeles,CA,90001 +173093,34in Ultrawide Monitor,1,379.99,2019-03-02 15:05:00,882 Ridge St, Austin,TX,73301 +173094,AA Batteries (4-pack),1,3.84,2019-03-31 22:03:00,65 Maple St, Boston,MA,02215 +173095,AA Batteries (4-pack),4,3.84,2019-03-22 22:53:00,599 12th St, Austin,TX,73301 +173096,Apple Airpods Headphones,1,150.0,2019-03-04 06:51:00,526 2nd St, San Francisco,CA,94016 +173097,AAA Batteries (4-pack),1,2.99,2019-03-06 16:12:00,882 Maple St, Boston,MA,02215 +173098,Bose SoundSport Headphones,1,99.99,2019-03-12 19:13:00,567 Madison St, San Francisco,CA,94016 +173099,Apple Airpods Headphones,1,150.0,2019-03-02 00:55:00,673 Elm St, Los Angeles,CA,90001 +173100,USB-C Charging Cable,1,11.95,2019-03-07 14:01:00,992 Center St, San Francisco,CA,94016 +173101,Vareebadd Phone,1,400.0,2019-03-09 12:46:00,90 Lakeview St, Dallas,TX,75001 +173102,20in Monitor,1,109.99,2019-03-25 14:27:00,249 Lincoln St, New York City,NY,10001 +173103,Bose SoundSport Headphones,1,99.99,2019-03-03 19:53:00,336 Lake St, Boston,MA,02215 +173104,USB-C Charging Cable,1,11.95,2019-03-26 14:41:00,46 9th St, San Francisco,CA,94016 +173105,AAA Batteries (4-pack),2,2.99,2019-03-24 18:56:00,348 Meadow St, New York City,NY,10001 +173106,Lightning Charging Cable,1,14.95,2019-03-04 11:30:00,916 14th St, New York City,NY,10001 +173107,Lightning Charging Cable,1,14.95,2019-03-21 14:13:00,234 Washington St, New York City,NY,10001 +173108,Wired Headphones,2,11.99,2019-03-05 16:17:00,269 Highland St, Dallas,TX,75001 +173109,Apple Airpods Headphones,1,150.0,2019-03-25 19:16:00,27 Washington St, Boston,MA,02215 +173110,AA Batteries (4-pack),1,3.84,2019-03-11 14:36:00,411 Adams St, Austin,TX,73301 +173111,34in Ultrawide Monitor,1,379.99,2019-03-06 07:22:00,34 12th St, San Francisco,CA,94016 +173112,ThinkPad Laptop,1,999.99,2019-03-01 15:31:00,457 Forest St, New York City,NY,10001 +173113,AAA Batteries (4-pack),2,2.99,2019-03-18 16:52:00,999 Church St, San Francisco,CA,94016 +173114,AA Batteries (4-pack),2,3.84,2019-03-15 12:12:00,33 7th St, San Francisco,CA,94016 +173115,Flatscreen TV,1,300.0,2019-03-13 09:02:00,420 12th St, Seattle,WA,98101 +173116,AA Batteries (4-pack),1,3.84,2019-03-01 06:45:00,61 8th St, San Francisco,CA,94016 +173117,Apple Airpods Headphones,1,150.0,2019-03-07 20:33:00,5 Forest St, Seattle,WA,98101 +173118,Apple Airpods Headphones,1,150.0,2019-03-04 07:45:00,197 Lake St, Seattle,WA,98101 +173118,27in FHD Monitor,1,149.99,2019-03-04 07:45:00,197 Lake St, Seattle,WA,98101 +173119,27in FHD Monitor,1,149.99,2019-03-07 18:46:00,148 7th St, New York City,NY,10001 +173120,27in 4K Gaming Monitor,1,389.99,2019-03-01 10:41:00,551 West St, Seattle,WA,98101 +173121,20in Monitor,1,109.99,2019-03-28 19:29:00,889 Cedar St, Atlanta,GA,30301 +173122,USB-C Charging Cable,2,11.95,2019-03-19 18:49:00,553 9th St, Los Angeles,CA,90001 +173123,USB-C Charging Cable,1,11.95,2019-03-10 07:45:00,912 Lakeview St, Boston,MA,02215 +173124,AA Batteries (4-pack),1,3.84,2019-03-19 11:10:00,159 9th St, New York City,NY,10001 +173125,Wired Headphones,1,11.99,2019-03-25 04:14:00,469 River St, Seattle,WA,98101 +173126,USB-C Charging Cable,1,11.95,2019-03-01 14:10:00,62 Adams St, Boston,MA,02215 +173127,Bose SoundSport Headphones,1,99.99,2019-03-18 16:54:00,478 6th St, San Francisco,CA,94016 +173128,Macbook Pro Laptop,1,1700.0,2019-03-02 14:45:00,86 Chestnut St, Los Angeles,CA,90001 +173129,Apple Airpods Headphones,1,150.0,2019-03-11 01:06:00,734 Cedar St, Dallas,TX,75001 +173130,AAA Batteries (4-pack),1,2.99,2019-03-29 15:11:00,436 Ridge St, Los Angeles,CA,90001 +173131,AA Batteries (4-pack),1,3.84,2019-03-26 13:02:00,456 Church St, San Francisco,CA,94016 +173132,Apple Airpods Headphones,1,150.0,2019-03-23 08:49:00,615 Center St, San Francisco,CA,94016 +173133,Apple Airpods Headphones,1,150.0,2019-03-15 21:19:00,481 Jackson St, Boston,MA,02215 +173134,27in 4K Gaming Monitor,1,389.99,2019-03-11 19:55:00,205 Elm St, Los Angeles,CA,90001 +173134,Lightning Charging Cable,1,14.95,2019-03-11 19:55:00,205 Elm St, Los Angeles,CA,90001 +173135,Lightning Charging Cable,2,14.95,2019-03-21 23:34:00,711 12th St, Seattle,WA,98101 +173136,AAA Batteries (4-pack),6,2.99,2019-03-25 04:51:00,759 10th St, New York City,NY,10001 +173137,Bose SoundSport Headphones,1,99.99,2019-03-15 21:14:00,35 7th St, Portland,OR,97035 +173138,USB-C Charging Cable,1,11.95,2019-03-25 15:14:00,624 7th St, Los Angeles,CA,90001 +173139,Google Phone,1,600.0,2019-03-11 22:09:00,593 Willow St, San Francisco,CA,94016 +173139,USB-C Charging Cable,1,11.95,2019-03-11 22:09:00,593 Willow St, San Francisco,CA,94016 +173140,Lightning Charging Cable,1,14.95,2019-03-02 20:43:00,902 Dogwood St, Atlanta,GA,30301 +173141,Bose SoundSport Headphones,1,99.99,2019-03-03 18:51:00,431 Park St, San Francisco,CA,94016 +173142,Lightning Charging Cable,1,14.95,2019-03-08 18:46:00,652 Hickory St, Portland,OR,97035 +173143,27in 4K Gaming Monitor,1,389.99,2019-03-04 12:07:00,272 Cherry St, San Francisco,CA,94016 +173144,ThinkPad Laptop,1,999.99,2019-03-23 20:54:00,540 2nd St, Portland,OR,97035 +173145,Bose SoundSport Headphones,1,99.99,2019-03-24 11:03:00,899 Pine St, Boston,MA,02215 +173146,USB-C Charging Cable,2,11.95,2019-03-14 12:26:00,358 Dogwood St, San Francisco,CA,94016 +173147,Bose SoundSport Headphones,1,99.99,2019-03-09 12:04:00,602 Center St, Los Angeles,CA,90001 +173148,USB-C Charging Cable,1,11.95,2019-03-26 22:56:00,714 Dogwood St, Los Angeles,CA,90001 +173149,Macbook Pro Laptop,1,1700.0,2019-03-26 17:34:00,705 Center St, Boston,MA,02215 +173150,Lightning Charging Cable,1,14.95,2019-03-03 23:11:00,13 10th St, Portland,ME,04101 +173151,Lightning Charging Cable,1,14.95,2019-03-31 14:29:00,638 Ridge St, San Francisco,CA,94016 +173152,Lightning Charging Cable,1,14.95,2019-03-25 11:52:00,493 2nd St, San Francisco,CA,94016 +173153,ThinkPad Laptop,1,999.99,2019-03-29 22:26:00,409 South St, Seattle,WA,98101 +173154,AA Batteries (4-pack),1,3.84,2019-03-12 20:00:00,197 Walnut St, New York City,NY,10001 +173155,27in FHD Monitor,1,149.99,2019-03-04 20:15:00,2 Jefferson St, San Francisco,CA,94016 +173156,USB-C Charging Cable,1,11.95,2019-03-12 17:38:00,969 10th St, Los Angeles,CA,90001 +173157,Wired Headphones,1,11.99,2019-03-22 13:11:00,195 10th St, New York City,NY,10001 +173158,Macbook Pro Laptop,1,1700.0,2019-03-22 19:48:00,339 Lake St, San Francisco,CA,94016 +173159,USB-C Charging Cable,1,11.95,2019-03-02 18:52:00,592 Lincoln St, New York City,NY,10001 +173160,Flatscreen TV,1,300.0,2019-03-29 21:16:00,394 Chestnut St, Portland,ME,04101 +173161,Bose SoundSport Headphones,1,99.99,2019-03-13 15:57:00,582 Park St, Los Angeles,CA,90001 +173162,ThinkPad Laptop,1,999.99,2019-03-31 21:18:00,960 Highland St, New York City,NY,10001 +173163,Lightning Charging Cable,1,14.95,2019-03-07 22:53:00,220 River St, San Francisco,CA,94016 +173164,Flatscreen TV,1,300.0,2019-03-24 11:30:00,171 Washington St, Los Angeles,CA,90001 +173165,27in 4K Gaming Monitor,1,389.99,2019-03-13 20:10:00,627 Washington St, Dallas,TX,75001 +173166,Wired Headphones,1,11.99,2019-03-16 21:39:00,484 Washington St, Portland,ME,04101 +173167,AAA Batteries (4-pack),1,2.99,2019-03-03 20:42:00,997 Lake St, Los Angeles,CA,90001 +173168,Lightning Charging Cable,1,14.95,2019-03-11 20:42:00,579 South St, Boston,MA,02215 +173169,AAA Batteries (4-pack),1,2.99,2019-03-24 10:55:00,947 Church St, Portland,OR,97035 +173170,27in 4K Gaming Monitor,1,389.99,2019-03-10 17:34:00,305 Willow St, San Francisco,CA,94016 +173171,Apple Airpods Headphones,1,150.0,2019-03-21 17:58:00,956 7th St, Portland,OR,97035 +173172,Bose SoundSport Headphones,1,99.99,2019-03-26 19:01:00,908 Sunset St, Boston,MA,02215 +173173,ThinkPad Laptop,1,999.99,2019-03-06 06:17:00,938 Johnson St, Los Angeles,CA,90001 +173174,27in 4K Gaming Monitor,1,389.99,2019-03-19 22:30:00,385 Willow St, Seattle,WA,98101 +173175,34in Ultrawide Monitor,1,379.99,2019-03-06 18:55:00,914 11th St, Austin,TX,73301 +173176,Lightning Charging Cable,1,14.95,2019-03-21 11:03:00,770 9th St, New York City,NY,10001 +173177,USB-C Charging Cable,1,11.95,2019-03-24 15:21:00,787 North St, Dallas,TX,75001 +173178,Bose SoundSport Headphones,1,99.99,2019-03-07 14:03:00,828 6th St, San Francisco,CA,94016 +173179,Apple Airpods Headphones,1,150.0,2019-03-14 22:08:00,68 7th St, Portland,OR,97035 +173179,AA Batteries (4-pack),2,3.84,2019-03-14 22:08:00,68 7th St, Portland,OR,97035 +173180,Google Phone,1,600.0,2019-03-15 18:36:00,559 Dogwood St, Austin,TX,73301 +173181,34in Ultrawide Monitor,1,379.99,2019-03-28 19:29:00,894 Jefferson St, Dallas,TX,75001 +173182,Wired Headphones,1,11.99,2019-03-05 12:29:00,871 9th St, San Francisco,CA,94016 +173183,Wired Headphones,1,11.99,2019-03-20 17:53:00,712 Main St, Los Angeles,CA,90001 +173184,Wired Headphones,1,11.99,2019-03-14 17:18:00,577 North St, San Francisco,CA,94016 +173185,Bose SoundSport Headphones,1,99.99,2019-03-18 20:29:00,459 Hill St, New York City,NY,10001 +173186,AA Batteries (4-pack),1,3.84,2019-03-13 11:18:00,155 6th St, Atlanta,GA,30301 +173187,AA Batteries (4-pack),1,3.84,2019-03-15 15:00:00,436 Maple St, Portland,OR,97035 +173188,AA Batteries (4-pack),2,3.84,2019-03-07 14:29:00,272 Hickory St, New York City,NY,10001 +173189,Google Phone,1,600.0,2019-03-20 11:47:00,614 Johnson St, Portland,OR,97035 +173190,Apple Airpods Headphones,1,150.0,2019-03-05 15:10:00,839 Madison St, New York City,NY,10001 +173191,Apple Airpods Headphones,1,150.0,2019-03-07 15:50:00,46 9th St, Seattle,WA,98101 +173192,Apple Airpods Headphones,1,150.0,2019-03-13 12:01:00,990 Maple St, San Francisco,CA,94016 +173193,AA Batteries (4-pack),1,3.84,2019-03-26 21:30:00,509 10th St, Seattle,WA,98101 +173194,AAA Batteries (4-pack),3,2.99,2019-03-17 23:33:00,892 9th St, New York City,NY,10001 +173195,Wired Headphones,1,11.99,2019-03-28 08:20:00,379 Sunset St, New York City,NY,10001 +173196,Apple Airpods Headphones,1,150.0,2019-03-12 10:13:00,984 Lake St, Seattle,WA,98101 +173197,AA Batteries (4-pack),1,3.84,2019-03-19 08:29:00,717 6th St, Seattle,WA,98101 +173198,Wired Headphones,1,11.99,2019-03-10 14:01:00,66 Washington St, Seattle,WA,98101 +173199,USB-C Charging Cable,1,11.95,2019-03-16 10:11:00,490 Lincoln St, Dallas,TX,75001 +173200,Wired Headphones,1,11.99,2019-03-14 03:55:00,142 8th St, Los Angeles,CA,90001 +173201,USB-C Charging Cable,1,11.95,2019-03-04 20:45:00,163 Main St, Austin,TX,73301 +173202,AAA Batteries (4-pack),1,2.99,2019-03-19 01:43:00,968 Lake St, Austin,TX,73301 +173203,Wired Headphones,1,11.99,2019-03-02 14:27:00,650 Jackson St, Los Angeles,CA,90001 +173204,Wired Headphones,1,11.99,2019-03-09 20:55:00,366 Chestnut St, Los Angeles,CA,90001 +173205,iPhone,1,700.0,2019-03-27 08:46:00,227 Hickory St, Atlanta,GA,30301 +173206,Lightning Charging Cable,1,14.95,2019-03-04 11:19:00,837 Sunset St, Portland,OR,97035 +173207,Vareebadd Phone,1,400.0,2019-03-05 22:07:00,176 14th St, Los Angeles,CA,90001 +173208,Lightning Charging Cable,1,14.95,2019-03-21 23:14:00,385 2nd St, San Francisco,CA,94016 +173209,Bose SoundSport Headphones,1,99.99,2019-03-09 17:16:00,443 Maple St, Los Angeles,CA,90001 +173210,USB-C Charging Cable,1,11.95,2019-03-18 14:44:00,385 Spruce St, Portland,OR,97035 +173211,USB-C Charging Cable,1,11.95,2019-03-12 14:35:00,179 Cherry St, San Francisco,CA,94016 +173212,Wired Headphones,1,11.99,2019-03-18 13:43:00,619 Hill St, Portland,OR,97035 +173213,Wired Headphones,2,11.99,2019-03-29 07:09:00,853 Main St, Boston,MA,02215 +173214,AA Batteries (4-pack),1,3.84,2019-03-20 18:01:00,942 Maple St, San Francisco,CA,94016 +173215,ThinkPad Laptop,1,999.99,2019-03-10 18:12:00,815 Hill St, Atlanta,GA,30301 +173216,ThinkPad Laptop,1,999.99,2019-03-07 12:43:00,678 Lincoln St, Dallas,TX,75001 +173217,34in Ultrawide Monitor,1,379.99,2019-03-14 00:14:00,118 Hill St, San Francisco,CA,94016 +173218,USB-C Charging Cable,1,11.95,2019-03-26 16:34:00,19 Church St, Atlanta,GA,30301 +173219,AA Batteries (4-pack),3,3.84,2019-03-07 23:19:00,438 6th St, Atlanta,GA,30301 +173220,Bose SoundSport Headphones,1,99.99,2019-03-03 17:17:00,320 Main St, Los Angeles,CA,90001 +173221,Lightning Charging Cable,1,14.95,2019-03-17 22:48:00,309 Main St, Atlanta,GA,30301 +173222,Apple Airpods Headphones,1,150.0,2019-03-01 17:04:00,744 11th St, New York City,NY,10001 +173223,Wired Headphones,1,11.99,2019-03-20 22:56:00,63 Johnson St, San Francisco,CA,94016 +173224,Wired Headphones,1,11.99,2019-03-24 09:08:00,614 1st St, Austin,TX,73301 +173225,iPhone,1,700.0,2019-03-27 14:01:00,755 Madison St, San Francisco,CA,94016 +173225,Lightning Charging Cable,1,14.95,2019-03-27 14:01:00,755 Madison St, San Francisco,CA,94016 +173226,Lightning Charging Cable,1,14.95,2019-03-08 00:04:00,15 Adams St, San Francisco,CA,94016 +173227,Wired Headphones,1,11.99,2019-03-16 20:16:00,173 Jefferson St, New York City,NY,10001 +173228,20in Monitor,1,109.99,2019-03-09 19:28:00,261 14th St, Seattle,WA,98101 +173229,Wired Headphones,1,11.99,2019-03-04 22:07:00,392 10th St, San Francisco,CA,94016 +173230,USB-C Charging Cable,1,11.95,2019-03-09 10:42:00,818 Lakeview St, Austin,TX,73301 +173231,AA Batteries (4-pack),1,3.84,2019-03-03 08:47:00,43 Maple St, San Francisco,CA,94016 +173232,AA Batteries (4-pack),2,3.84,2019-03-07 03:13:00,29 4th St, Austin,TX,73301 +173233,Bose SoundSport Headphones,1,99.99,2019-03-15 13:30:00,746 Lake St, Portland,OR,97035 +173234,iPhone,1,700.0,2019-03-27 12:50:00,256 Church St, San Francisco,CA,94016 +173235,27in FHD Monitor,1,149.99,2019-03-22 06:22:00,489 9th St, Dallas,TX,75001 +173236,Apple Airpods Headphones,1,150.0,2019-03-10 08:34:00,789 12th St, Dallas,TX,75001 +173237,Macbook Pro Laptop,1,1700.0,2019-03-18 15:42:00,941 River St, Boston,MA,02215 +173238,ThinkPad Laptop,1,999.99,2019-03-05 11:01:00,619 Lake St, Atlanta,GA,30301 +173239,Wired Headphones,1,11.99,2019-03-01 19:59:00,279 6th St, Boston,MA,02215 +173240,27in 4K Gaming Monitor,1,389.99,2019-03-05 07:39:00,817 11th St, San Francisco,CA,94016 +173241,USB-C Charging Cable,1,11.95,2019-03-24 20:28:00,89 11th St, San Francisco,CA,94016 +173242,Bose SoundSport Headphones,1,99.99,2019-03-05 20:05:00,461 4th St, Atlanta,GA,30301 +173243,AAA Batteries (4-pack),1,2.99,2019-03-03 13:42:00,443 Walnut St, San Francisco,CA,94016 +173244,Macbook Pro Laptop,1,1700.0,2019-03-31 10:12:00,726 9th St, Seattle,WA,98101 +173245,USB-C Charging Cable,2,11.95,2019-03-13 14:35:00,159 Lake St, San Francisco,CA,94016 +173246,Apple Airpods Headphones,1,150.0,2019-03-16 15:46:00,940 Main St, New York City,NY,10001 +173247,Lightning Charging Cable,1,14.95,2019-03-28 05:35:00,272 Sunset St, Atlanta,GA,30301 +173248,iPhone,1,700.0,2019-03-19 21:19:00,175 Forest St, Los Angeles,CA,90001 +173248,Lightning Charging Cable,1,14.95,2019-03-19 21:19:00,175 Forest St, Los Angeles,CA,90001 +173249,USB-C Charging Cable,2,11.95,2019-03-30 09:29:00,496 South St, New York City,NY,10001 +173250,AAA Batteries (4-pack),1,2.99,2019-03-22 21:19:00,139 Elm St, San Francisco,CA,94016 +173251,ThinkPad Laptop,1,999.99,2019-03-26 18:42:00,896 Adams St, Portland,OR,97035 +173252,Lightning Charging Cable,1,14.95,2019-03-23 18:39:00,154 8th St, Boston,MA,02215 +173253,Wired Headphones,1,11.99,2019-03-04 13:58:00,699 Johnson St, Seattle,WA,98101 +173254,AAA Batteries (4-pack),3,2.99,2019-03-12 09:32:00,395 11th St, Portland,OR,97035 +173255,Wired Headphones,1,11.99,2019-03-08 19:17:00,339 Wilson St, San Francisco,CA,94016 +173256,AAA Batteries (4-pack),1,2.99,2019-03-16 22:15:00,889 Lake St, Atlanta,GA,30301 +173257,AA Batteries (4-pack),2,3.84,2019-03-29 22:02:00,679 South St, New York City,NY,10001 +173258,Lightning Charging Cable,1,14.95,2019-03-31 20:06:00,499 12th St, Dallas,TX,75001 +173259,AA Batteries (4-pack),3,3.84,2019-03-21 11:29:00,588 10th St, New York City,NY,10001 +173260,AAA Batteries (4-pack),1,2.99,2019-03-30 17:31:00,714 Main St, Los Angeles,CA,90001 +173261,AAA Batteries (4-pack),1,2.99,2019-03-27 16:12:00,276 6th St, Atlanta,GA,30301 +173262,Apple Airpods Headphones,1,150.0,2019-03-10 20:01:00,949 Pine St, San Francisco,CA,94016 +173263,34in Ultrawide Monitor,1,379.99,2019-03-16 13:01:00,622 Lakeview St, Los Angeles,CA,90001 +173264,AA Batteries (4-pack),1,3.84,2019-03-03 22:56:00,10 Elm St, Seattle,WA,98101 +173265,Apple Airpods Headphones,1,150.0,2019-03-25 13:36:00,189 Dogwood St, Los Angeles,CA,90001 +173266,AAA Batteries (4-pack),1,2.99,2019-03-26 21:06:00,45 Lake St, Austin,TX,73301 +173267,AAA Batteries (4-pack),1,2.99,2019-03-30 18:00:00,949 Lincoln St, Los Angeles,CA,90001 +173268,34in Ultrawide Monitor,1,379.99,2019-03-26 08:48:00,258 5th St, San Francisco,CA,94016 +173269,AA Batteries (4-pack),1,3.84,2019-03-19 13:17:00,159 Willow St, Boston,MA,02215 +173270,AAA Batteries (4-pack),2,2.99,2019-03-28 18:18:00,995 Lake St, Portland,OR,97035 +173271,Lightning Charging Cable,3,14.95,2019-03-28 22:06:00,547 1st St, San Francisco,CA,94016 +173272,Wired Headphones,2,11.99,2019-03-13 18:04:00,311 Forest St, Atlanta,GA,30301 +173273,Bose SoundSport Headphones,1,99.99,2019-03-06 14:17:00,264 Adams St, San Francisco,CA,94016 +173274,Bose SoundSport Headphones,1,99.99,2019-03-06 21:07:00,197 Meadow St, Los Angeles,CA,90001 +173275,USB-C Charging Cable,1,11.95,2019-03-13 21:44:00,339 Lake St, Los Angeles,CA,90001 +173276,iPhone,1,700.0,2019-03-15 08:35:00,460 Park St, Dallas,TX,75001 +173277,USB-C Charging Cable,2,11.95,2019-03-02 12:00:00,645 12th St, San Francisco,CA,94016 +173278,Apple Airpods Headphones,1,150.0,2019-03-19 07:42:00,975 Forest St, San Francisco,CA,94016 +173279,AAA Batteries (4-pack),3,2.99,2019-03-14 16:10:00,827 10th St, San Francisco,CA,94016 +173280,USB-C Charging Cable,1,11.95,2019-03-24 11:01:00,332 Jefferson St, San Francisco,CA,94016 +173281,Lightning Charging Cable,1,14.95,2019-03-16 21:29:00,4 Spruce St, San Francisco,CA,94016 +173282,AAA Batteries (4-pack),1,2.99,2019-03-08 15:19:00,355 Washington St, Atlanta,GA,30301 +173283,Macbook Pro Laptop,1,1700.0,2019-03-09 22:37:00,485 Church St, Boston,MA,02215 +173284,Apple Airpods Headphones,1,150.0,2019-03-17 00:32:00,135 7th St, Los Angeles,CA,90001 +173285,AAA Batteries (4-pack),2,2.99,2019-03-14 23:16:00,799 Lake St, Los Angeles,CA,90001 +173286,Bose SoundSport Headphones,1,99.99,2019-03-11 14:51:00,378 Cedar St, New York City,NY,10001 +173287,USB-C Charging Cable,1,11.95,2019-03-27 20:17:00,850 Maple St, Los Angeles,CA,90001 +173288,Lightning Charging Cable,1,14.95,2019-03-29 17:16:00,267 12th St, Seattle,WA,98101 +173289,AA Batteries (4-pack),3,3.84,2019-03-01 22:59:00,567 7th St, Los Angeles,CA,90001 +173290,Wired Headphones,1,11.99,2019-03-07 11:15:00,707 Church St, Atlanta,GA,30301 +173290,Lightning Charging Cable,1,14.95,2019-03-07 11:15:00,707 Church St, Atlanta,GA,30301 +173291,USB-C Charging Cable,1,11.95,2019-03-03 14:55:00,81 Willow St, Atlanta,GA,30301 +173292,AAA Batteries (4-pack),2,2.99,2019-03-25 20:19:00,785 Johnson St, Boston,MA,02215 +173293,USB-C Charging Cable,1,11.95,2019-03-04 18:02:00,298 Highland St, Boston,MA,02215 +173294,Lightning Charging Cable,1,14.95,2019-03-02 17:47:00,389 Elm St, Los Angeles,CA,90001 +173294,Bose SoundSport Headphones,1,99.99,2019-03-02 17:47:00,389 Elm St, Los Angeles,CA,90001 +173295,USB-C Charging Cable,1,11.95,2019-03-02 16:14:00,636 Johnson St, Los Angeles,CA,90001 +173296,AA Batteries (4-pack),1,3.84,2019-03-23 13:09:00,584 Park St, Los Angeles,CA,90001 +173297,Lightning Charging Cable,1,14.95,2019-03-19 11:52:00,22 7th St, Atlanta,GA,30301 +173298,Bose SoundSport Headphones,1,99.99,2019-03-29 10:42:00,264 Center St, Dallas,TX,75001 +173299,AA Batteries (4-pack),2,3.84,2019-03-10 11:20:00,584 Ridge St, Boston,MA,02215 +173300,Lightning Charging Cable,1,14.95,2019-03-06 16:15:00,390 2nd St, Dallas,TX,75001 +173301,34in Ultrawide Monitor,1,379.99,2019-03-19 15:20:00,902 Adams St, Los Angeles,CA,90001 +173302,Bose SoundSport Headphones,1,99.99,2019-03-17 21:58:00,944 4th St, Seattle,WA,98101 +173303,Wired Headphones,1,11.99,2019-03-25 16:58:00,42 Pine St, New York City,NY,10001 +173304,Apple Airpods Headphones,1,150.0,2019-03-06 19:20:00,588 Cherry St, Boston,MA,02215 +173305,AAA Batteries (4-pack),1,2.99,2019-03-07 14:03:00,827 Cherry St, Dallas,TX,75001 +173306,Apple Airpods Headphones,1,150.0,2019-03-04 17:28:00,175 Highland St, Los Angeles,CA,90001 +173307,USB-C Charging Cable,1,11.95,2019-03-11 21:43:00,981 10th St, San Francisco,CA,94016 +173308,Lightning Charging Cable,1,14.95,2019-03-30 01:43:00,339 9th St, Los Angeles,CA,90001 +173309,27in 4K Gaming Monitor,1,389.99,2019-03-29 12:24:00,976 Johnson St, Seattle,WA,98101 +173310,Wired Headphones,1,11.99,2019-03-09 06:46:00,264 Hill St, San Francisco,CA,94016 +173311,Wired Headphones,1,11.99,2019-03-21 20:28:00,332 Church St, San Francisco,CA,94016 +173312,ThinkPad Laptop,1,999.99,2019-03-26 06:05:00,744 6th St, Los Angeles,CA,90001 +173313,USB-C Charging Cable,1,11.95,2019-03-04 22:41:00,538 9th St, Portland,OR,97035 +173314,27in 4K Gaming Monitor,1,389.99,2019-03-05 14:28:00,603 Park St, New York City,NY,10001 +173315,Lightning Charging Cable,1,14.95,2019-03-05 18:44:00,152 Washington St, San Francisco,CA,94016 +173316,AAA Batteries (4-pack),1,2.99,2019-03-05 15:00:00,206 Adams St, New York City,NY,10001 +173317,Wired Headphones,1,11.99,2019-03-08 23:48:00,377 Adams St, Boston,MA,02215 +173318,ThinkPad Laptop,1,999.99,2019-03-19 17:12:00,846 West St, Atlanta,GA,30301 +173319,Wired Headphones,1,11.99,2019-03-25 07:34:00,681 Forest St, Dallas,TX,75001 +173320,Apple Airpods Headphones,1,150.0,2019-03-16 17:12:00,248 12th St, San Francisco,CA,94016 +173320,Lightning Charging Cable,1,14.95,2019-03-16 17:12:00,248 12th St, San Francisco,CA,94016 +173321,Wired Headphones,1,11.99,2019-03-21 20:00:00,159 Chestnut St, Portland,OR,97035 +173322,AA Batteries (4-pack),2,3.84,2019-03-11 17:46:00,784 Cedar St, San Francisco,CA,94016 +173323,AAA Batteries (4-pack),3,2.99,2019-03-21 22:46:00,669 Sunset St, New York City,NY,10001 +173324,AA Batteries (4-pack),1,3.84,2019-03-03 13:39:00,128 7th St, San Francisco,CA,94016 +173325,Apple Airpods Headphones,1,150.0,2019-03-04 08:48:00,682 Madison St, Atlanta,GA,30301 +173326,Wired Headphones,2,11.99,2019-03-20 11:34:00,664 Cherry St, Boston,MA,02215 +173327,AAA Batteries (4-pack),2,2.99,2019-03-01 21:16:00,38 Sunset St, Seattle,WA,98101 +173328,Apple Airpods Headphones,1,150.0,2019-03-24 23:39:00,677 4th St, Dallas,TX,75001 +173329,AA Batteries (4-pack),2,3.84,2019-03-24 13:44:00,798 Ridge St, San Francisco,CA,94016 +173330,Wired Headphones,1,11.99,2019-03-10 19:20:00,529 Willow St, Portland,ME,04101 +173331,Vareebadd Phone,1,400.0,2019-03-30 15:02:00,673 Wilson St, Dallas,TX,75001 +173332,iPhone,1,700.0,2019-03-19 13:46:00,544 River St, Los Angeles,CA,90001 +173333,Lightning Charging Cable,1,14.95,2019-03-08 19:31:00,318 8th St, Los Angeles,CA,90001 +173334,27in FHD Monitor,1,149.99,2019-03-02 23:42:00,844 Main St, Los Angeles,CA,90001 +173335,AA Batteries (4-pack),1,3.84,2019-03-01 15:43:00,801 Pine St, Dallas,TX,75001 +173336,27in FHD Monitor,1,149.99,2019-03-10 18:12:00,460 Park St, Portland,OR,97035 +173337,Macbook Pro Laptop,1,1700.0,2019-03-24 14:14:00,749 6th St, New York City,NY,10001 +173338,AA Batteries (4-pack),3,3.84,2019-03-24 19:20:00,621 Johnson St, Los Angeles,CA,90001 +173339,34in Ultrawide Monitor,1,379.99,2019-03-22 19:27:00,641 12th St, Los Angeles,CA,90001 +173340,iPhone,1,700.0,2019-03-07 14:03:00,780 Forest St, Boston,MA,02215 +173341,Google Phone,1,600.0,2019-03-29 20:06:00,947 1st St, Austin,TX,73301 +173342,USB-C Charging Cable,1,11.95,2019-03-15 10:29:00,168 Johnson St, San Francisco,CA,94016 +173343,Lightning Charging Cable,1,14.95,2019-03-28 13:22:00,822 Spruce St, San Francisco,CA,94016 +173344,Lightning Charging Cable,1,14.95,2019-03-18 23:01:00,763 Pine St, Boston,MA,02215 +173345,AAA Batteries (4-pack),1,2.99,2019-03-14 12:33:00,251 Forest St, Portland,OR,97035 +173346,ThinkPad Laptop,1,999.99,2019-03-22 11:55:00,289 Chestnut St, Los Angeles,CA,90001 +173347,AA Batteries (4-pack),1,3.84,2019-03-01 19:56:00,483 13th St, New York City,NY,10001 +173348,Lightning Charging Cable,1,14.95,2019-03-05 21:27:00,285 Main St, Los Angeles,CA,90001 +173349,27in FHD Monitor,1,149.99,2019-03-02 21:14:00,140 Lincoln St, Atlanta,GA,30301 +173350,34in Ultrawide Monitor,1,379.99,2019-03-05 09:30:00,578 Cedar St, Dallas,TX,75001 +173351,Apple Airpods Headphones,1,150.0,2019-03-29 22:15:00,352 Jefferson St, Seattle,WA,98101 +173352,AA Batteries (4-pack),1,3.84,2019-03-03 20:23:00,429 Highland St, Portland,ME,04101 +173353,Lightning Charging Cable,1,14.95,2019-03-17 20:05:00,232 Johnson St, San Francisco,CA,94016 +173354,AA Batteries (4-pack),1,3.84,2019-03-08 19:43:00,8 Church St, San Francisco,CA,94016 +173355,Wired Headphones,1,11.99,2019-03-24 19:36:00,809 Main St, Portland,OR,97035 +173356,27in FHD Monitor,1,149.99,2019-03-19 09:19:00,753 Center St, Los Angeles,CA,90001 +173357,USB-C Charging Cable,1,11.95,2019-03-25 13:26:00,462 Washington St, Seattle,WA,98101 +173358,AA Batteries (4-pack),1,3.84,2019-03-17 09:04:00,204 Willow St, New York City,NY,10001 +173359,AA Batteries (4-pack),1,3.84,2019-03-31 18:11:00,121 Adams St, San Francisco,CA,94016 +173360,AAA Batteries (4-pack),1,2.99,2019-03-22 10:16:00,702 Lincoln St, Dallas,TX,75001 +173361,USB-C Charging Cable,1,11.95,2019-03-23 09:16:00,429 14th St, Boston,MA,02215 +173362,20in Monitor,1,109.99,2019-03-30 18:28:00,767 River St, San Francisco,CA,94016 +173363,AAA Batteries (4-pack),1,2.99,2019-03-23 11:06:00,920 Washington St, New York City,NY,10001 +173364,Google Phone,1,600.0,2019-03-23 15:57:00,47 North St, Atlanta,GA,30301 +173365,Bose SoundSport Headphones,1,99.99,2019-03-01 17:52:00,615 Hill St, San Francisco,CA,94016 +173366,ThinkPad Laptop,1,999.99,2019-03-02 17:46:00,816 Chestnut St, Boston,MA,02215 +173367,AA Batteries (4-pack),1,3.84,2019-03-25 23:37:00,775 Walnut St, San Francisco,CA,94016 +173368,Lightning Charging Cable,1,14.95,2019-03-04 11:29:00,158 Hickory St, Los Angeles,CA,90001 +173369,Wired Headphones,1,11.99,2019-03-18 16:18:00,192 6th St, Austin,TX,73301 +173370,Lightning Charging Cable,1,14.95,2019-03-28 09:22:00,579 Park St, San Francisco,CA,94016 +173371,USB-C Charging Cable,1,11.95,2019-03-15 11:56:00,862 Maple St, San Francisco,CA,94016 +173372,AA Batteries (4-pack),1,3.84,2019-03-26 07:20:00,680 Jackson St, Atlanta,GA,30301 +173373,iPhone,1,700.0,2019-03-06 17:24:00,695 9th St, Los Angeles,CA,90001 +173373,Wired Headphones,1,11.99,2019-03-06 17:24:00,695 9th St, Los Angeles,CA,90001 +173374,Lightning Charging Cable,1,14.95,2019-03-28 22:53:00,798 Ridge St, Atlanta,GA,30301 +173375,AA Batteries (4-pack),1,3.84,2019-03-09 13:43:00,569 West St, Portland,OR,97035 +173376,27in 4K Gaming Monitor,1,389.99,2019-03-27 11:49:00,484 Wilson St, San Francisco,CA,94016 +173377,Wired Headphones,1,11.99,2019-03-02 21:59:00,136 6th St, Portland,OR,97035 +173377,USB-C Charging Cable,1,11.95,2019-03-02 21:59:00,136 6th St, Portland,OR,97035 +173378,AAA Batteries (4-pack),1,2.99,2019-03-22 01:23:00,389 14th St, New York City,NY,10001 +173379,USB-C Charging Cable,1,11.95,2019-03-29 22:53:00,90 Ridge St, San Francisco,CA,94016 +173380,Apple Airpods Headphones,1,150.0,2019-03-10 20:41:00,150 River St, San Francisco,CA,94016 +173381,AAA Batteries (4-pack),4,2.99,2019-03-21 14:59:00,505 South St, Los Angeles,CA,90001 +173382,AA Batteries (4-pack),1,3.84,2019-03-31 13:57:00,833 8th St, Los Angeles,CA,90001 +173383,USB-C Charging Cable,1,11.95,2019-03-10 10:44:00,114 12th St, Los Angeles,CA,90001 +173384,Apple Airpods Headphones,1,150.0,2019-03-28 23:50:00,181 Highland St, Los Angeles,CA,90001 +173385,Wired Headphones,1,11.99,2019-03-09 18:41:00,875 Highland St, Seattle,WA,98101 +173386,ThinkPad Laptop,1,999.99,2019-03-01 12:17:00,803 Willow St, San Francisco,CA,94016 +173387,USB-C Charging Cable,1,11.95,2019-03-06 16:02:00,182 11th St, Los Angeles,CA,90001 +173388,Bose SoundSport Headphones,1,99.99,2019-03-21 15:31:00,96 Cherry St, San Francisco,CA,94016 +173389,Wired Headphones,1,11.99,2019-03-23 19:45:00,488 Madison St, Los Angeles,CA,90001 +173390,Bose SoundSport Headphones,1,99.99,2019-03-09 18:50:00,939 Highland St, Los Angeles,CA,90001 +173391,USB-C Charging Cable,1,11.95,2019-03-18 18:31:00,891 Cherry St, New York City,NY,10001 +173392,AA Batteries (4-pack),1,3.84,2019-03-03 15:22:00,110 West St, San Francisco,CA,94016 +173393,AA Batteries (4-pack),4,3.84,2019-03-21 10:50:00,744 Madison St, San Francisco,CA,94016 +173394,AA Batteries (4-pack),1,3.84,2019-03-09 18:26:00,184 6th St, New York City,NY,10001 +173395,Bose SoundSport Headphones,1,99.99,2019-03-16 15:47:00,489 River St, Los Angeles,CA,90001 +173396,USB-C Charging Cable,1,11.95,2019-03-10 13:52:00,270 Lakeview St, San Francisco,CA,94016 +173397,Apple Airpods Headphones,1,150.0,2019-03-29 23:42:00,969 Madison St, Portland,OR,97035 +173398,Wired Headphones,1,11.99,2019-03-17 19:17:00,721 West St, Los Angeles,CA,90001 +173399,Lightning Charging Cable,1,14.95,2019-03-23 23:47:00,54 Jackson St, Los Angeles,CA,90001 +173400,AAA Batteries (4-pack),2,2.99,2019-03-17 22:00:00,72 Willow St, Atlanta,GA,30301 +173401,AAA Batteries (4-pack),1,2.99,2019-03-15 09:57:00,331 Washington St, San Francisco,CA,94016 +173402,Vareebadd Phone,1,400.0,2019-03-03 08:18:00,672 10th St, Portland,OR,97035 +173403,USB-C Charging Cable,1,11.95,2019-03-15 09:34:00,857 Lakeview St, San Francisco,CA,94016 +173404,Vareebadd Phone,1,400.0,2019-03-13 11:04:00,676 Jefferson St, Boston,MA,02215 +173404,Bose SoundSport Headphones,1,99.99,2019-03-13 11:04:00,676 Jefferson St, Boston,MA,02215 +173405,Lightning Charging Cable,1,14.95,2019-03-17 08:23:00,841 Willow St, Portland,OR,97035 +173406,Apple Airpods Headphones,1,150.0,2019-03-13 19:24:00,775 Elm St, San Francisco,CA,94016 +173407,Wired Headphones,1,11.99,2019-03-02 16:23:00,135 Hickory St, Los Angeles,CA,90001 +173408,Wired Headphones,1,11.99,2019-03-22 13:34:00,926 Willow St, Boston,MA,02215 +173409,AA Batteries (4-pack),1,3.84,2019-03-19 22:49:00,814 Madison St, Dallas,TX,75001 +173410,Lightning Charging Cable,3,14.95,2019-03-08 08:57:00,458 Adams St, San Francisco,CA,94016 +173411,iPhone,1,700.0,2019-03-08 08:44:00,399 Washington St, San Francisco,CA,94016 +173412,AA Batteries (4-pack),1,3.84,2019-03-06 16:55:00,42 Washington St, Portland,OR,97035 +173413,Wired Headphones,1,11.99,2019-03-12 23:52:00,704 Cherry St, Atlanta,GA,30301 +173414,AA Batteries (4-pack),1,3.84,2019-03-21 11:05:00,682 5th St, Seattle,WA,98101 +173415,AA Batteries (4-pack),1,3.84,2019-03-16 11:49:00,152 Lakeview St, Portland,OR,97035 +173416,Apple Airpods Headphones,1,150.0,2019-03-11 10:49:00,382 Spruce St, Los Angeles,CA,90001 +173417,USB-C Charging Cable,1,11.95,2019-03-07 10:06:00,531 North St, San Francisco,CA,94016 +173418,Lightning Charging Cable,1,14.95,2019-03-17 17:37:00,667 Sunset St, San Francisco,CA,94016 +173419,34in Ultrawide Monitor,1,379.99,2019-03-07 17:35:00,888 7th St, San Francisco,CA,94016 +173420,Google Phone,1,600.0,2019-03-08 21:57:00,559 Lake St, Atlanta,GA,30301 +173421,Bose SoundSport Headphones,2,99.99,2019-03-22 10:27:00,520 2nd St, Portland,OR,97035 +173421,iPhone,1,700.0,2019-03-22 10:27:00,520 2nd St, Portland,OR,97035 +173422,AA Batteries (4-pack),2,3.84,2019-03-22 15:36:00,90 Johnson St, Austin,TX,73301 +173423,AA Batteries (4-pack),1,3.84,2019-03-17 11:01:00,824 Johnson St, Los Angeles,CA,90001 +173424,Apple Airpods Headphones,1,150.0,2019-03-15 20:06:00,455 2nd St, Boston,MA,02215 +173425,Macbook Pro Laptop,1,1700.0,2019-03-02 08:03:00,123 Madison St, Dallas,TX,75001 +173426,Google Phone,1,600.0,2019-03-17 21:58:00,262 7th St, Boston,MA,02215 +173427,Macbook Pro Laptop,1,1700.0,2019-03-13 16:33:00,654 Hill St, Los Angeles,CA,90001 +173428,Vareebadd Phone,1,400.0,2019-03-08 00:01:00,183 Hill St, Portland,OR,97035 +173428,USB-C Charging Cable,1,11.95,2019-03-08 00:01:00,183 Hill St, Portland,OR,97035 +173429,USB-C Charging Cable,1,11.95,2019-03-01 11:22:00,156 Elm St, San Francisco,CA,94016 +173430,USB-C Charging Cable,1,11.95,2019-03-09 09:16:00,917 River St, San Francisco,CA,94016 +173431,USB-C Charging Cable,1,11.95,2019-03-03 20:24:00,347 Dogwood St, San Francisco,CA,94016 +173432,USB-C Charging Cable,1,11.95,2019-03-08 16:13:00,47 2nd St, Austin,TX,73301 +173433,Bose SoundSport Headphones,1,99.99,2019-03-25 22:36:00,580 Lakeview St, San Francisco,CA,94016 +173434,AAA Batteries (4-pack),1,2.99,2019-03-13 11:55:00,551 Pine St, Boston,MA,02215 +173435,Google Phone,1,600.0,2019-03-08 19:02:00,729 Cherry St, Dallas,TX,75001 +173436,Apple Airpods Headphones,1,150.0,2019-03-25 21:17:00,899 10th St, Atlanta,GA,30301 +173437,Lightning Charging Cable,1,14.95,2019-03-10 09:55:00,445 9th St, Boston,MA,02215 +173438,AA Batteries (4-pack),1,3.84,2019-03-10 14:36:00,162 Adams St, Portland,ME,04101 +173438,AAA Batteries (4-pack),2,2.99,2019-03-10 14:36:00,162 Adams St, Portland,ME,04101 +173439,Vareebadd Phone,1,400.0,2019-03-16 11:59:00,902 Center St, Boston,MA,02215 +173440,AA Batteries (4-pack),1,3.84,2019-03-25 07:55:00,463 6th St, Portland,OR,97035 +173441,Lightning Charging Cable,1,14.95,2019-03-27 04:48:00,54 Elm St, New York City,NY,10001 +173442,Bose SoundSport Headphones,1,99.99,2019-03-10 14:09:00,495 Forest St, Boston,MA,02215 +173443,Lightning Charging Cable,1,14.95,2019-03-30 12:21:00,91 Church St, San Francisco,CA,94016 +173444,Wired Headphones,1,11.99,2019-03-16 22:31:00,50 Maple St, Seattle,WA,98101 +173445,27in FHD Monitor,1,149.99,2019-03-04 12:49:00,715 South St, San Francisco,CA,94016 +173446,Lightning Charging Cable,1,14.95,2019-03-04 08:32:00,608 14th St, Dallas,TX,75001 +173447,Apple Airpods Headphones,1,150.0,2019-03-02 15:43:00,713 2nd St, San Francisco,CA,94016 +173448,Lightning Charging Cable,1,14.95,2019-03-20 06:28:00,997 South St, Boston,MA,02215 +173449,AA Batteries (4-pack),3,3.84,2019-03-15 08:00:00,990 Cherry St, Austin,TX,73301 +173450,Lightning Charging Cable,1,14.95,2019-03-23 13:42:00,576 Walnut St, Los Angeles,CA,90001 +173451,20in Monitor,1,109.99,2019-03-22 18:23:00,834 South St, Austin,TX,73301 +173452,34in Ultrawide Monitor,1,379.99,2019-03-11 18:08:00,158 Lake St, Dallas,TX,75001 +173453,USB-C Charging Cable,1,11.95,2019-03-10 23:09:00,625 North St, New York City,NY,10001 +173454,USB-C Charging Cable,2,11.95,2019-03-29 21:10:00,604 Wilson St, San Francisco,CA,94016 +173455,Apple Airpods Headphones,1,150.0,2019-03-24 12:20:00,569 4th St, San Francisco,CA,94016 +173456,iPhone,1,700.0,2019-03-29 00:52:00,235 6th St, New York City,NY,10001 +173457,AA Batteries (4-pack),1,3.84,2019-03-13 13:02:00,76 Dogwood St, Boston,MA,02215 +173458,Macbook Pro Laptop,1,1700.0,2019-03-13 08:22:00,307 Church St, San Francisco,CA,94016 +173459,AA Batteries (4-pack),2,3.84,2019-03-29 14:40:00,720 Church St, Dallas,TX,75001 +173460,Apple Airpods Headphones,1,150.0,2019-03-29 22:49:00,585 Walnut St, San Francisco,CA,94016 +173461,AA Batteries (4-pack),2,3.84,2019-03-15 16:40:00,82 Chestnut St, Boston,MA,02215 +173462,Google Phone,1,600.0,2019-03-05 21:35:00,109 Chestnut St, Seattle,WA,98101 +173463,Lightning Charging Cable,2,14.95,2019-03-27 11:27:00,362 Washington St, Seattle,WA,98101 +173464,27in FHD Monitor,1,149.99,2019-03-19 19:52:00,53 North St, Dallas,TX,75001 +173465,ThinkPad Laptop,1,999.99,2019-03-15 12:34:00,792 Chestnut St, Los Angeles,CA,90001 +173466,27in 4K Gaming Monitor,1,389.99,2019-03-22 06:50:00,158 8th St, Boston,MA,02215 +173467,Apple Airpods Headphones,1,150.0,2019-03-08 13:22:00,994 Maple St, Boston,MA,02215 +173468,AA Batteries (4-pack),1,3.84,2019-03-27 10:49:00,847 Hickory St, Austin,TX,73301 +173469,USB-C Charging Cable,2,11.95,2019-03-14 18:11:00,884 Church St, Seattle,WA,98101 +173470,27in 4K Gaming Monitor,1,389.99,2019-03-15 13:43:00,96 Park St, Boston,MA,02215 +173471,Wired Headphones,2,11.99,2019-03-16 15:22:00,625 Washington St, Austin,TX,73301 +173472,iPhone,1,700.0,2019-03-08 23:10:00,145 5th St, San Francisco,CA,94016 +173472,Wired Headphones,1,11.99,2019-03-08 23:10:00,145 5th St, San Francisco,CA,94016 +173473,27in 4K Gaming Monitor,1,389.99,2019-03-15 11:33:00,843 Cherry St, San Francisco,CA,94016 +173474,USB-C Charging Cable,1,11.95,2019-03-02 19:43:00,518 4th St, Dallas,TX,75001 +173475,Apple Airpods Headphones,1,150.0,2019-03-13 18:32:00,438 Jefferson St, Portland,OR,97035 +173476,USB-C Charging Cable,1,11.95,2019-03-19 00:18:00,223 14th St, San Francisco,CA,94016 +173477,Macbook Pro Laptop,1,1700.0,2019-03-15 19:23:00,262 2nd St, Atlanta,GA,30301 +173478,Wired Headphones,1,11.99,2019-03-01 21:10:00,747 Highland St, Los Angeles,CA,90001 +173479,USB-C Charging Cable,1,11.95,2019-03-26 14:29:00,604 Jackson St, Los Angeles,CA,90001 +173480,34in Ultrawide Monitor,1,379.99,2019-03-13 09:08:00,553 5th St, San Francisco,CA,94016 +173481,Google Phone,1,600.0,2019-03-01 14:50:00,676 11th St, Seattle,WA,98101 +173482,Apple Airpods Headphones,1,150.0,2019-03-21 11:45:00,86 5th St, Los Angeles,CA,90001 +173483,Google Phone,1,600.0,2019-03-09 12:34:00,716 6th St, San Francisco,CA,94016 +173484,Apple Airpods Headphones,1,150.0,2019-03-05 18:26:00,922 7th St, Seattle,WA,98101 +173485,Google Phone,1,600.0,2019-03-02 11:20:00,415 Meadow St, Boston,MA,02215 +173485,Wired Headphones,1,11.99,2019-03-02 11:20:00,415 Meadow St, Boston,MA,02215 +173486,Wired Headphones,1,11.99,2019-03-22 19:37:00,639 6th St, San Francisco,CA,94016 +173486,USB-C Charging Cable,2,11.95,2019-03-22 19:37:00,639 6th St, San Francisco,CA,94016 +173487,iPhone,1,700.0,2019-03-25 12:11:00,948 Ridge St, Portland,OR,97035 +173488,Macbook Pro Laptop,1,1700.0,2019-03-10 19:05:00,627 Main St, New York City,NY,10001 +173489,Flatscreen TV,1,300.0,2019-03-12 01:21:00,98 10th St, New York City,NY,10001 +173489,Bose SoundSport Headphones,1,99.99,2019-03-12 01:21:00,98 10th St, New York City,NY,10001 +173490,USB-C Charging Cable,1,11.95,2019-03-16 18:51:00,134 9th St, San Francisco,CA,94016 +173491,iPhone,1,700.0,2019-03-15 17:51:00,738 Center St, San Francisco,CA,94016 +173492,Lightning Charging Cable,1,14.95,2019-03-31 09:56:00,284 Cherry St, Los Angeles,CA,90001 +173493,Wired Headphones,1,11.99,2019-03-27 23:32:00,2 Pine St, Los Angeles,CA,90001 +173493,27in 4K Gaming Monitor,1,389.99,2019-03-27 23:32:00,2 Pine St, Los Angeles,CA,90001 +173494,Apple Airpods Headphones,1,150.0,2019-03-24 02:22:00,200 Church St, Boston,MA,02215 +173495,34in Ultrawide Monitor,1,379.99,2019-03-13 19:39:00,639 Lincoln St, Los Angeles,CA,90001 +173496,Lightning Charging Cable,1,14.95,2019-03-31 18:41:00,641 Adams St, San Francisco,CA,94016 +173497,iPhone,1,700.0,2019-03-18 13:43:00,690 Hill St, Portland,ME,04101 +173498,iPhone,1,700.0,2019-03-08 23:36:00,411 Washington St, New York City,NY,10001 +173499,27in FHD Monitor,1,149.99,2019-03-23 13:38:00,509 Jackson St, Boston,MA,02215 +173500,Wired Headphones,1,11.99,2019-03-31 19:28:00,839 14th St, Atlanta,GA,30301 +173501,AAA Batteries (4-pack),1,2.99,2019-03-08 13:14:00,508 Lakeview St, Los Angeles,CA,90001 +173502,AAA Batteries (4-pack),1,2.99,2019-03-19 13:36:00,261 Lincoln St, Los Angeles,CA,90001 +173503,AA Batteries (4-pack),1,3.84,2019-03-07 07:24:00,155 Pine St, San Francisco,CA,94016 +173504,iPhone,1,700.0,2019-03-28 11:15:00,983 Elm St, Boston,MA,02215 +173504,Lightning Charging Cable,1,14.95,2019-03-28 11:15:00,983 Elm St, Boston,MA,02215 +173505,Apple Airpods Headphones,1,150.0,2019-03-31 17:52:00,254 Lakeview St, San Francisco,CA,94016 +173506,AAA Batteries (4-pack),1,2.99,2019-03-22 21:00:00,369 Lake St, Austin,TX,73301 +173507,AA Batteries (4-pack),1,3.84,2019-03-03 06:53:00,542 Walnut St, New York City,NY,10001 +173508,Bose SoundSport Headphones,1,99.99,2019-03-22 13:20:00,968 Madison St, San Francisco,CA,94016 +173509,AA Batteries (4-pack),1,3.84,2019-03-30 02:23:00,367 Forest St, San Francisco,CA,94016 +173510,27in FHD Monitor,1,149.99,2019-03-05 19:36:00,937 Madison St, Portland,ME,04101 +173511,27in 4K Gaming Monitor,1,389.99,2019-03-04 22:22:00,983 South St, San Francisco,CA,94016 +173512,Lightning Charging Cable,1,14.95,2019-03-28 20:48:00,854 Adams St, Dallas,TX,75001 +173513,AAA Batteries (4-pack),2,2.99,2019-03-26 18:33:00,152 Spruce St, Austin,TX,73301 +173514,Lightning Charging Cable,1,14.95,2019-03-30 18:15:00,584 Ridge St, Seattle,WA,98101 +173515,Wired Headphones,1,11.99,2019-03-14 12:55:00,977 Elm St, Portland,ME,04101 +173516,Macbook Pro Laptop,1,1700.0,2019-03-19 21:28:00,921 13th St, Atlanta,GA,30301 +173517,Lightning Charging Cable,1,14.95,2019-03-12 22:15:00,708 Meadow St, San Francisco,CA,94016 +173518,Wired Headphones,1,11.99,2019-03-14 18:29:00,478 9th St, Los Angeles,CA,90001 +173519,Bose SoundSport Headphones,1,99.99,2019-03-09 15:15:00,765 River St, San Francisco,CA,94016 +173520,Google Phone,1,600.0,2019-03-16 17:58:00,776 Adams St, San Francisco,CA,94016 +173521,AA Batteries (4-pack),2,3.84,2019-03-28 11:35:00,222 Cherry St, Los Angeles,CA,90001 +173522,AAA Batteries (4-pack),1,2.99,2019-03-31 10:24:00,325 Willow St, Portland,OR,97035 +173523,27in FHD Monitor,1,149.99,2019-03-24 21:50:00,615 Maple St, New York City,NY,10001 +173524,AAA Batteries (4-pack),1,2.99,2019-03-30 21:55:00,744 Forest St, Dallas,TX,75001 +173525,Lightning Charging Cable,1,14.95,2019-03-22 12:12:00,666 Pine St, Atlanta,GA,30301 +173526,AAA Batteries (4-pack),1,2.99,2019-03-22 05:33:00,125 7th St, Dallas,TX,75001 +173526,AA Batteries (4-pack),1,3.84,2019-03-22 05:33:00,125 7th St, Dallas,TX,75001 +173527,AAA Batteries (4-pack),1,2.99,2019-03-24 19:08:00,346 Elm St, San Francisco,CA,94016 +173528,Apple Airpods Headphones,1,150.0,2019-03-07 22:02:00,294 Jefferson St, Boston,MA,02215 +173529,Apple Airpods Headphones,1,150.0,2019-03-15 00:38:00,96 Highland St, Atlanta,GA,30301 +173530,Bose SoundSport Headphones,1,99.99,2019-03-05 20:10:00,193 7th St, Los Angeles,CA,90001 +173531,Wired Headphones,1,11.99,2019-03-03 11:03:00,27 River St, New York City,NY,10001 +173532,Apple Airpods Headphones,1,150.0,2019-03-12 17:14:00,72 Hill St, San Francisco,CA,94016 +173533,ThinkPad Laptop,1,999.99,2019-03-23 12:44:00,288 8th St, Boston,MA,02215 +173533,AAA Batteries (4-pack),1,2.99,2019-03-23 12:44:00,288 8th St, Boston,MA,02215 +173534,AAA Batteries (4-pack),1,2.99,2019-03-04 10:48:00,254 Wilson St, Los Angeles,CA,90001 +173535,ThinkPad Laptop,1,999.99,2019-03-04 21:03:00,96 Hickory St, San Francisco,CA,94016 +173536,AA Batteries (4-pack),3,3.84,2019-03-15 14:39:00,780 Jefferson St, Los Angeles,CA,90001 +173537,AA Batteries (4-pack),1,3.84,2019-03-04 20:39:00,610 Jefferson St, San Francisco,CA,94016 +173538,Vareebadd Phone,1,400.0,2019-03-05 09:45:00,757 Cedar St, Boston,MA,02215 +173539,Apple Airpods Headphones,1,150.0,2019-03-31 16:43:00,501 4th St, Seattle,WA,98101 +173540,Wired Headphones,2,11.99,2019-03-05 20:48:00,899 Pine St, New York City,NY,10001 +173541,Apple Airpods Headphones,1,150.0,2019-03-12 03:40:00,226 Ridge St, San Francisco,CA,94016 +173542,USB-C Charging Cable,1,11.95,2019-03-13 10:10:00,304 Sunset St, San Francisco,CA,94016 +173543,USB-C Charging Cable,1,11.95,2019-03-07 16:36:00,665 Chestnut St, Dallas,TX,75001 +173544,Lightning Charging Cable,1,14.95,2019-03-28 14:24:00,602 Meadow St, Los Angeles,CA,90001 +173545,AA Batteries (4-pack),1,3.84,2019-03-04 22:12:00,987 Hickory St, Los Angeles,CA,90001 +173546,Wired Headphones,2,11.99,2019-03-14 10:27:00,370 South St, Atlanta,GA,30301 +173547,USB-C Charging Cable,1,11.95,2019-03-21 10:16:00,156 7th St, New York City,NY,10001 +173548,Bose SoundSport Headphones,1,99.99,2019-03-27 13:53:00,448 Jackson St, San Francisco,CA,94016 +173549,USB-C Charging Cable,2,11.95,2019-03-12 13:04:00,21 Wilson St, Portland,OR,97035 +173550,Google Phone,1,600.0,2019-03-02 13:41:00,504 14th St, Boston,MA,02215 +173551,AA Batteries (4-pack),3,3.84,2019-03-18 08:28:00,841 9th St, New York City,NY,10001 +173552,Apple Airpods Headphones,1,150.0,2019-03-08 19:52:00,868 Wilson St, Boston,MA,02215 +173553,Lightning Charging Cable,2,14.95,2019-03-10 11:58:00,241 Washington St, Los Angeles,CA,90001 +173554,Apple Airpods Headphones,1,150.0,2019-03-28 21:15:00,159 Jefferson St, New York City,NY,10001 +173555,AA Batteries (4-pack),1,3.84,2019-03-19 16:53:00,915 Chestnut St, San Francisco,CA,94016 +173556,Bose SoundSport Headphones,1,99.99,2019-03-17 16:29:00,71 Madison St, Dallas,TX,75001 +173557,AAA Batteries (4-pack),1,2.99,2019-03-30 15:14:00,888 Cedar St, Boston,MA,02215 +173558,AA Batteries (4-pack),3,3.84,2019-03-27 19:21:00,680 Madison St, Dallas,TX,75001 +173559,USB-C Charging Cable,1,11.95,2019-03-12 07:16:00,366 Dogwood St, Los Angeles,CA,90001 +173559,Bose SoundSport Headphones,1,99.99,2019-03-12 07:16:00,366 Dogwood St, Los Angeles,CA,90001 +173560,USB-C Charging Cable,1,11.95,2019-03-28 12:35:00,762 1st St, Seattle,WA,98101 +173561,LG Washing Machine,1,600.0,2019-03-21 10:54:00,284 Dogwood St, Los Angeles,CA,90001 +173562,Lightning Charging Cable,1,14.95,2019-03-19 22:12:00,449 4th St, New York City,NY,10001 +173563,AAA Batteries (4-pack),1,2.99,2019-03-18 16:14:00,725 9th St, New York City,NY,10001 +173564,AAA Batteries (4-pack),1,2.99,2019-03-01 14:00:00,500 Main St, New York City,NY,10001 +173565,Bose SoundSport Headphones,1,99.99,2019-03-16 02:39:00,473 Hickory St, Boston,MA,02215 +173566,Lightning Charging Cable,1,14.95,2019-03-30 21:42:00,639 Meadow St, Los Angeles,CA,90001 +173567,AAA Batteries (4-pack),1,2.99,2019-03-08 01:38:00,855 Main St, New York City,NY,10001 +173568,27in FHD Monitor,1,149.99,2019-03-18 21:56:00,86 Dogwood St, New York City,NY,10001 +173569,AAA Batteries (4-pack),1,2.99,2019-03-29 00:09:00,516 14th St, Seattle,WA,98101 +173570,Wired Headphones,1,11.99,2019-03-09 17:16:00,698 Center St, San Francisco,CA,94016 +173571,Bose SoundSport Headphones,1,99.99,2019-03-07 19:31:00,362 Dogwood St, San Francisco,CA,94016 +173572,Wired Headphones,1,11.99,2019-03-04 21:33:00,329 11th St, Seattle,WA,98101 +173573,USB-C Charging Cable,1,11.95,2019-03-12 19:40:00,544 4th St, Portland,ME,04101 +173574,Flatscreen TV,1,300.0,2019-03-23 08:48:00,92 Adams St, Boston,MA,02215 +173575,Bose SoundSport Headphones,1,99.99,2019-03-03 22:40:00,790 Jefferson St, San Francisco,CA,94016 +173576,Wired Headphones,2,11.99,2019-03-22 16:34:00,986 Willow St, New York City,NY,10001 +173577,Macbook Pro Laptop,1,1700.0,2019-03-14 14:43:00,76 10th St, Dallas,TX,75001 +173578,AAA Batteries (4-pack),3,2.99,2019-03-09 12:28:00,517 Highland St, Boston,MA,02215 +173579,20in Monitor,1,109.99,2019-03-22 00:58:00,920 Elm St, San Francisco,CA,94016 +173580,USB-C Charging Cable,1,11.95,2019-03-15 13:03:00,329 Maple St, Austin,TX,73301 +173581,AA Batteries (4-pack),1,3.84,2019-03-13 23:17:00,54 8th St, Dallas,TX,75001 +173582,iPhone,1,700.0,2019-03-02 22:26:00,936 Meadow St, New York City,NY,10001 +173583,USB-C Charging Cable,1,11.95,2019-03-15 22:10:00,63 Lake St, New York City,NY,10001 +173584,AAA Batteries (4-pack),1,2.99,2019-03-09 20:37:00,637 13th St, San Francisco,CA,94016 +173585,Bose SoundSport Headphones,1,99.99,2019-03-09 15:15:00,640 Adams St, New York City,NY,10001 +173586,27in FHD Monitor,1,149.99,2019-03-07 12:17:00,706 1st St, Austin,TX,73301 +173587,Bose SoundSport Headphones,1,99.99,2019-03-23 21:08:00,729 West St, San Francisco,CA,94016 +173588,AA Batteries (4-pack),1,3.84,2019-03-03 17:31:00,415 Lake St, San Francisco,CA,94016 +173589,Lightning Charging Cable,2,14.95,2019-03-07 14:37:00,972 South St, Atlanta,GA,30301 +173590,Lightning Charging Cable,1,14.95,2019-03-27 13:02:00,563 Cherry St, San Francisco,CA,94016 +173591,AA Batteries (4-pack),2,3.84,2019-03-08 21:42:00,246 Dogwood St, San Francisco,CA,94016 +173592,27in 4K Gaming Monitor,1,389.99,2019-03-23 10:13:00,659 5th St, New York City,NY,10001 +173593,AA Batteries (4-pack),1,3.84,2019-03-21 00:16:00,492 Cedar St, San Francisco,CA,94016 +173594,Apple Airpods Headphones,1,150.0,2019-03-04 13:11:00,599 Adams St, Seattle,WA,98101 +173595,27in FHD Monitor,1,149.99,2019-03-10 15:41:00,347 Maple St, Los Angeles,CA,90001 +173596,Lightning Charging Cable,1,14.95,2019-03-20 02:57:00,489 7th St, Dallas,TX,75001 +173597,AAA Batteries (4-pack),3,2.99,2019-03-18 20:56:00,355 Sunset St, New York City,NY,10001 +173598,Lightning Charging Cable,1,14.95,2019-03-04 11:45:00,611 Wilson St, Los Angeles,CA,90001 +173599,Apple Airpods Headphones,1,150.0,2019-03-28 17:27:00,892 Lincoln St, San Francisco,CA,94016 +173600,Google Phone,1,600.0,2019-03-10 23:05:00,552 Jefferson St, Atlanta,GA,30301 +173601,Lightning Charging Cable,1,14.95,2019-03-26 12:11:00,712 Hill St, Atlanta,GA,30301 +173602,iPhone,1,700.0,2019-03-09 11:13:00,695 Wilson St, Atlanta,GA,30301 +173603,27in 4K Gaming Monitor,1,389.99,2019-03-20 13:38:00,708 7th St, Los Angeles,CA,90001 +173604,Apple Airpods Headphones,1,150.0,2019-03-18 22:07:00,262 Main St, Dallas,TX,75001 +173605,AA Batteries (4-pack),1,3.84,2019-03-20 16:40:00,55 Jackson St, San Francisco,CA,94016 +173606,Wired Headphones,1,11.99,2019-03-29 10:47:00,536 11th St, Atlanta,GA,30301 +173607,34in Ultrawide Monitor,1,379.99,2019-03-21 19:08:00,262 Lake St, New York City,NY,10001 +173608,Lightning Charging Cable,1,14.95,2019-03-19 10:13:00,32 Pine St, Los Angeles,CA,90001 +173609,USB-C Charging Cable,1,11.95,2019-03-08 18:08:00,758 Lake St, Los Angeles,CA,90001 +173610,Apple Airpods Headphones,1,150.0,2019-03-20 16:48:00,103 7th St, San Francisco,CA,94016 +173611,Lightning Charging Cable,1,14.95,2019-03-16 14:32:00,424 5th St, Los Angeles,CA,90001 +173612,27in FHD Monitor,1,149.99,2019-03-02 18:44:00,15 South St, Dallas,TX,75001 +173613,AAA Batteries (4-pack),1,2.99,2019-03-11 10:53:00,568 Lincoln St, Los Angeles,CA,90001 +173614,Google Phone,1,600.0,2019-03-13 12:50:00,322 Pine St, New York City,NY,10001 +173615,Apple Airpods Headphones,1,150.0,2019-03-18 13:56:00,237 Park St, San Francisco,CA,94016 +173616,Apple Airpods Headphones,1,150.0,2019-03-23 10:11:00,570 River St, Austin,TX,73301 +173617,Lightning Charging Cable,1,14.95,2019-03-03 19:35:00,569 9th St, Los Angeles,CA,90001 +173618,Google Phone,1,600.0,2019-03-20 23:44:00,582 Walnut St, New York City,NY,10001 +173619,AAA Batteries (4-pack),1,2.99,2019-03-12 19:50:00,25 11th St, Austin,TX,73301 +173620,AAA Batteries (4-pack),1,2.99,2019-03-18 10:50:00,922 South St, San Francisco,CA,94016 +173621,Macbook Pro Laptop,1,1700.0,2019-03-15 16:13:00,806 Wilson St, New York City,NY,10001 +173622,Wired Headphones,1,11.99,2019-03-20 08:58:00,988 South St, San Francisco,CA,94016 +173623,Lightning Charging Cable,1,14.95,2019-03-28 18:01:00,322 Dogwood St, Dallas,TX,75001 +173624,Macbook Pro Laptop,1,1700.0,2019-03-07 10:59:00,639 9th St, New York City,NY,10001 +173625,Wired Headphones,1,11.99,2019-03-16 12:11:00,30 Dogwood St, Austin,TX,73301 +173626,USB-C Charging Cable,2,11.95,2019-03-09 20:10:00,205 2nd St, San Francisco,CA,94016 +173627,Wired Headphones,1,11.99,2019-03-22 19:22:00,959 Church St, San Francisco,CA,94016 +173628,Apple Airpods Headphones,1,150.0,2019-03-15 12:58:00,257 Highland St, Atlanta,GA,30301 +173629,Lightning Charging Cable,1,14.95,2019-03-12 19:50:00,214 5th St, New York City,NY,10001 +173630,AA Batteries (4-pack),1,3.84,2019-03-06 00:13:00,668 Main St, Los Angeles,CA,90001 +173631,Macbook Pro Laptop,1,1700.0,2019-03-03 11:05:00,852 Pine St, Los Angeles,CA,90001 +173632,Lightning Charging Cable,1,14.95,2019-03-11 19:54:00,253 South St, Dallas,TX,75001 +173633,Bose SoundSport Headphones,1,99.99,2019-03-30 00:23:00,227 Ridge St, Atlanta,GA,30301 +173634,Lightning Charging Cable,1,14.95,2019-03-23 17:38:00,114 Meadow St, Los Angeles,CA,90001 +173635,Lightning Charging Cable,1,14.95,2019-03-19 15:10:00,509 11th St, Dallas,TX,75001 +173636,USB-C Charging Cable,1,11.95,2019-03-17 13:12:00,346 Lakeview St, New York City,NY,10001 +173637,27in FHD Monitor,1,149.99,2019-03-23 17:13:00,153 Wilson St, San Francisco,CA,94016 +173638,AA Batteries (4-pack),2,3.84,2019-03-10 19:02:00,550 Forest St, Dallas,TX,75001 +173639,Apple Airpods Headphones,1,150.0,2019-03-07 01:56:00,716 Madison St, Atlanta,GA,30301 +173640,Wired Headphones,1,11.99,2019-03-07 18:52:00,157 Cedar St, New York City,NY,10001 +173641,USB-C Charging Cable,1,11.95,2019-03-17 21:47:00,728 14th St, San Francisco,CA,94016 +173642,ThinkPad Laptop,1,999.99,2019-03-17 19:25:00,503 6th St, New York City,NY,10001 +173643,Lightning Charging Cable,1,14.95,2019-03-14 15:53:00,685 Lincoln St, Boston,MA,02215 +173644,Apple Airpods Headphones,1,150.0,2019-03-29 21:14:00,149 12th St, Atlanta,GA,30301 +173645,Bose SoundSport Headphones,1,99.99,2019-03-17 19:17:00,457 Lakeview St, New York City,NY,10001 +173646,27in 4K Gaming Monitor,1,389.99,2019-03-21 09:06:00,659 Adams St, San Francisco,CA,94016 +173647,Vareebadd Phone,1,400.0,2019-03-14 14:21:00,310 Cedar St, Atlanta,GA,30301 +173647,Bose SoundSport Headphones,1,99.99,2019-03-14 14:21:00,310 Cedar St, Atlanta,GA,30301 +173647,Wired Headphones,1,11.99,2019-03-14 14:21:00,310 Cedar St, Atlanta,GA,30301 +173648,Wired Headphones,1,11.99,2019-03-29 22:13:00,95 2nd St, Atlanta,GA,30301 +173649,Flatscreen TV,1,300.0,2019-03-18 10:17:00,303 Johnson St, San Francisco,CA,94016 +173650,Lightning Charging Cable,1,14.95,2019-03-04 21:31:00,725 Sunset St, San Francisco,CA,94016 +173651,AAA Batteries (4-pack),1,2.99,2019-03-23 20:47:00,878 Ridge St, Los Angeles,CA,90001 +173652,27in 4K Gaming Monitor,1,389.99,2019-03-28 22:01:00,42 Cherry St, Seattle,WA,98101 +173653,AAA Batteries (4-pack),2,2.99,2019-03-27 22:23:00,820 5th St, New York City,NY,10001 +173654,AAA Batteries (4-pack),2,2.99,2019-03-07 21:59:00,230 Elm St, Seattle,WA,98101 +173655,Apple Airpods Headphones,1,150.0,2019-03-17 05:43:00,204 12th St, Los Angeles,CA,90001 +173656,Lightning Charging Cable,4,14.95,2019-03-03 13:45:00,705 River St, Boston,MA,02215 +173657,USB-C Charging Cable,1,11.95,2019-03-27 15:59:00,932 Forest St, San Francisco,CA,94016 +173658,ThinkPad Laptop,1,999.99,2019-03-30 06:31:00,228 Forest St, New York City,NY,10001 +173659,AAA Batteries (4-pack),1,2.99,2019-03-28 16:59:00,375 Madison St, New York City,NY,10001 +173660,Apple Airpods Headphones,1,150.0,2019-03-27 23:56:00,887 9th St, Boston,MA,02215 +173661,Macbook Pro Laptop,1,1700.0,2019-03-28 12:31:00,613 9th St, Atlanta,GA,30301 +173662,AAA Batteries (4-pack),1,2.99,2019-03-08 19:50:00,882 12th St, Dallas,TX,75001 +173663,Wired Headphones,1,11.99,2019-03-23 13:58:00,279 Dogwood St, Los Angeles,CA,90001 +173664,AAA Batteries (4-pack),1,2.99,2019-03-27 21:13:00,710 11th St, Atlanta,GA,30301 +173665,Wired Headphones,1,11.99,2019-03-17 13:35:00,785 West St, Dallas,TX,75001 +173666,Apple Airpods Headphones,1,150.0,2019-03-26 13:30:00,351 9th St, San Francisco,CA,94016 +173667,20in Monitor,1,109.99,2019-03-09 20:43:00,25 Meadow St, Los Angeles,CA,90001 +173668,Lightning Charging Cable,1,14.95,2019-03-20 21:06:00,29 Church St, Boston,MA,02215 +173669,USB-C Charging Cable,1,11.95,2019-03-07 13:24:00,779 Hill St, New York City,NY,10001 +173670,AA Batteries (4-pack),1,3.84,2019-03-23 23:04:00,410 Ridge St, New York City,NY,10001 +173671,AAA Batteries (4-pack),3,2.99,2019-03-28 21:48:00,895 Main St, Austin,TX,73301 +173672,Wired Headphones,1,11.99,2019-03-16 16:41:00,881 Main St, Seattle,WA,98101 +173673,Bose SoundSport Headphones,1,99.99,2019-03-20 18:16:00,408 Sunset St, Los Angeles,CA,90001 +173674,Apple Airpods Headphones,1,150.0,2019-03-02 16:01:00,353 9th St, Los Angeles,CA,90001 +173675,AAA Batteries (4-pack),5,2.99,2019-03-26 18:14:00,897 9th St, Boston,MA,02215 +173676,AAA Batteries (4-pack),1,2.99,2019-03-01 10:56:00,516 Jackson St, Seattle,WA,98101 +173677,Wired Headphones,1,11.99,2019-03-19 20:23:00,647 Pine St, New York City,NY,10001 +173678,Bose SoundSport Headphones,1,99.99,2019-03-02 07:27:00,771 South St, Los Angeles,CA,90001 +173679,Vareebadd Phone,1,400.0,2019-03-28 13:43:00,801 1st St, San Francisco,CA,94016 +173680,AA Batteries (4-pack),1,3.84,2019-03-16 15:49:00,973 Wilson St, San Francisco,CA,94016 +173681,Wired Headphones,1,11.99,2019-03-30 11:49:00,905 Willow St, Atlanta,GA,30301 +173682,Lightning Charging Cable,1,14.95,2019-03-01 18:50:00,451 Adams St, New York City,NY,10001 +173683,USB-C Charging Cable,1,11.95,2019-03-14 16:38:00,681 Ridge St, Boston,MA,02215 +173684,AA Batteries (4-pack),2,3.84,2019-03-03 19:01:00,769 North St, Dallas,TX,75001 +173685,iPhone,1,700.0,2019-03-11 12:39:00,743 11th St, San Francisco,CA,94016 +173686,27in FHD Monitor,1,149.99,2019-03-30 16:15:00,747 Church St, New York City,NY,10001 +173687,34in Ultrawide Monitor,1,379.99,2019-03-19 12:35:00,600 Madison St, New York City,NY,10001 +173688,Lightning Charging Cable,1,14.95,2019-03-11 00:31:00,258 Ridge St, Atlanta,GA,30301 +173689,27in 4K Gaming Monitor,1,389.99,2019-03-17 12:51:00,270 14th St, New York City,NY,10001 +173690,USB-C Charging Cable,1,11.95,2019-03-31 19:18:00,579 Jackson St, Atlanta,GA,30301 +173691,Google Phone,1,600.0,2019-03-28 22:42:00,562 Dogwood St, San Francisco,CA,94016 +173692,USB-C Charging Cable,1,11.95,2019-03-24 11:30:00,507 South St, Austin,TX,73301 +173693,USB-C Charging Cable,2,11.95,2019-03-12 09:17:00,459 Ridge St, San Francisco,CA,94016 +173694,Lightning Charging Cable,1,14.95,2019-03-18 10:49:00,768 Hill St, Dallas,TX,75001 +173695,AA Batteries (4-pack),1,3.84,2019-03-27 12:51:00,350 Main St, Dallas,TX,75001 +173695,Wired Headphones,1,11.99,2019-03-27 12:51:00,350 Main St, Dallas,TX,75001 +173696,Apple Airpods Headphones,1,150.0,2019-03-20 12:50:00,460 Forest St, Atlanta,GA,30301 +173697,AAA Batteries (4-pack),1,2.99,2019-03-23 01:03:00,377 Pine St, Atlanta,GA,30301 +173698,USB-C Charging Cable,1,11.95,2019-03-28 11:06:00,990 Jackson St, San Francisco,CA,94016 +173699,Macbook Pro Laptop,1,1700.0,2019-03-08 13:45:00,593 7th St, Portland,OR,97035 +173700,iPhone,1,700.0,2019-03-14 07:06:00,269 Walnut St, New York City,NY,10001 +173700,Lightning Charging Cable,1,14.95,2019-03-14 07:06:00,269 Walnut St, New York City,NY,10001 +173701,AAA Batteries (4-pack),1,2.99,2019-03-12 14:04:00,92 12th St, Atlanta,GA,30301 +173702,Wired Headphones,1,11.99,2019-03-10 18:36:00,534 Ridge St, Atlanta,GA,30301 +173703,AAA Batteries (4-pack),2,2.99,2019-03-21 02:25:00,789 Jackson St, Los Angeles,CA,90001 +173704,34in Ultrawide Monitor,1,379.99,2019-03-25 22:00:00,4 South St, Boston,MA,02215 +173705,USB-C Charging Cable,1,11.95,2019-03-25 23:41:00,900 Cherry St, Austin,TX,73301 +173706,AA Batteries (4-pack),2,3.84,2019-03-11 20:08:00,36 Walnut St, Boston,MA,02215 +173707,AA Batteries (4-pack),1,3.84,2019-03-05 19:42:00,265 Lake St, Austin,TX,73301 +173708,27in FHD Monitor,1,149.99,2019-03-17 10:51:00,863 6th St, Seattle,WA,98101 +173709,27in FHD Monitor,1,149.99,2019-03-03 20:59:00,198 River St, Boston,MA,02215 +173710,USB-C Charging Cable,1,11.95,2019-03-05 14:44:00,350 Ridge St, Dallas,TX,75001 +173711,Apple Airpods Headphones,1,150.0,2019-03-21 20:07:00,844 Church St, New York City,NY,10001 +173712,USB-C Charging Cable,1,11.95,2019-03-20 06:46:00,208 Sunset St, Austin,TX,73301 +173713,Apple Airpods Headphones,1,150.0,2019-03-13 05:10:00,27 11th St, Atlanta,GA,30301 +173714,AA Batteries (4-pack),1,3.84,2019-03-21 18:16:00,357 Pine St, San Francisco,CA,94016 +173715,Flatscreen TV,1,300.0,2019-03-02 07:28:00,117 Park St, San Francisco,CA,94016 +173716,Apple Airpods Headphones,1,150.0,2019-03-06 11:27:00,303 Center St, Dallas,TX,75001 +173716,iPhone,1,700.0,2019-03-06 11:27:00,303 Center St, Dallas,TX,75001 +173717,AA Batteries (4-pack),2,3.84,2019-03-16 17:00:00,893 14th St, Portland,OR,97035 +173718,USB-C Charging Cable,1,11.95,2019-03-08 07:49:00,115 Washington St, New York City,NY,10001 +173719,Lightning Charging Cable,1,14.95,2019-03-05 20:12:00,873 Lincoln St, Seattle,WA,98101 +173720,Wired Headphones,1,11.99,2019-03-16 03:26:00,191 Adams St, Seattle,WA,98101 +173721,Bose SoundSport Headphones,1,99.99,2019-03-19 16:53:00,871 West St, Portland,OR,97035 +173722,Apple Airpods Headphones,1,150.0,2019-03-20 19:37:00,709 Madison St, New York City,NY,10001 +173723,USB-C Charging Cable,1,11.95,2019-03-11 11:46:00,597 Spruce St, Los Angeles,CA,90001 +173724,AAA Batteries (4-pack),1,2.99,2019-03-22 10:31:00,38 Lake St, San Francisco,CA,94016 +173725,USB-C Charging Cable,1,11.95,2019-03-20 13:07:00,325 Jefferson St, Los Angeles,CA,90001 +173726,AAA Batteries (4-pack),1,2.99,2019-03-11 14:57:00,407 River St, Austin,TX,73301 +173727,Apple Airpods Headphones,1,150.0,2019-03-13 21:55:00,598 Pine St, New York City,NY,10001 +173728,Wired Headphones,1,11.99,2019-03-26 14:13:00,284 Elm St, San Francisco,CA,94016 +173729,20in Monitor,1,109.99,2019-03-06 07:17:00,25 Meadow St, Atlanta,GA,30301 +173730,Wired Headphones,1,11.99,2019-03-05 15:55:00,965 Chestnut St, New York City,NY,10001 +173731,AAA Batteries (4-pack),3,2.99,2019-03-16 18:14:00,471 Madison St, Austin,TX,73301 +173732,AAA Batteries (4-pack),3,2.99,2019-03-30 19:51:00,125 Washington St, San Francisco,CA,94016 +173733,Vareebadd Phone,1,400.0,2019-03-08 10:07:00,799 Wilson St, San Francisco,CA,94016 +173733,USB-C Charging Cable,1,11.95,2019-03-08 10:07:00,799 Wilson St, San Francisco,CA,94016 +173734,USB-C Charging Cable,1,11.95,2019-03-15 11:00:00,656 7th St, Portland,OR,97035 +173735,Wired Headphones,1,11.99,2019-03-03 16:33:00,421 Elm St, Los Angeles,CA,90001 +173736,AA Batteries (4-pack),1,3.84,2019-03-07 20:21:00,986 Highland St, Portland,OR,97035 +173737,Wired Headphones,1,11.99,2019-03-14 21:23:00,273 Lincoln St, New York City,NY,10001 +173738,Flatscreen TV,1,300.0,2019-03-23 16:42:00,630 Church St, Boston,MA,02215 +173739,Apple Airpods Headphones,1,150.0,2019-03-26 23:34:00,27 11th St, New York City,NY,10001 +173740,Bose SoundSport Headphones,1,99.99,2019-03-11 20:17:00,725 Ridge St, San Francisco,CA,94016 +173740,Apple Airpods Headphones,1,150.0,2019-03-11 20:17:00,725 Ridge St, San Francisco,CA,94016 +173741,Apple Airpods Headphones,1,150.0,2019-03-15 20:28:00,805 Walnut St, Austin,TX,73301 +173742,AA Batteries (4-pack),1,3.84,2019-03-24 18:13:00,560 Main St, Los Angeles,CA,90001 +173743,LG Dryer,1,600.0,2019-03-09 11:18:00,261 Hill St, San Francisco,CA,94016 +173744,Apple Airpods Headphones,1,150.0,2019-03-06 18:39:00,126 Hill St, Portland,ME,04101 +173745,AAA Batteries (4-pack),1,2.99,2019-03-04 16:08:00,81 Hickory St, San Francisco,CA,94016 +173746,Macbook Pro Laptop,1,1700.0,2019-03-20 17:30:00,621 11th St, New York City,NY,10001 +173747,Lightning Charging Cable,1,14.95,2019-03-27 10:36:00,466 4th St, Dallas,TX,75001 +173748,ThinkPad Laptop,1,999.99,2019-03-09 21:08:00,68 Hickory St, New York City,NY,10001 +173749,AA Batteries (4-pack),1,3.84,2019-03-21 16:00:00,46 1st St, Atlanta,GA,30301 +173750,AAA Batteries (4-pack),2,2.99,2019-03-12 18:48:00,307 Maple St, Boston,MA,02215 +173751,AAA Batteries (4-pack),1,2.99,2019-03-20 18:30:00,712 West St, San Francisco,CA,94016 +173752,AAA Batteries (4-pack),1,2.99,2019-03-04 21:27:00,323 Lakeview St, New York City,NY,10001 +173753,Lightning Charging Cable,1,14.95,2019-03-08 16:48:00,216 4th St, New York City,NY,10001 +173754,34in Ultrawide Monitor,1,379.99,2019-03-24 22:05:00,901 12th St, Portland,OR,97035 +173755,AA Batteries (4-pack),2,3.84,2019-03-24 18:08:00,889 7th St, Dallas,TX,75001 +173756,27in FHD Monitor,1,149.99,2019-03-05 16:29:00,216 Ridge St, San Francisco,CA,94016 +173757,Apple Airpods Headphones,1,150.0,2019-03-14 22:33:00,98 Sunset St, Seattle,WA,98101 +173758,Lightning Charging Cable,1,14.95,2019-03-20 12:34:00,100 Johnson St, Los Angeles,CA,90001 +173759,USB-C Charging Cable,1,11.95,2019-03-05 17:53:00,225 Walnut St, Boston,MA,02215 +173760,20in Monitor,1,109.99,2019-03-18 15:34:00,279 4th St, San Francisco,CA,94016 +173761,AA Batteries (4-pack),1,3.84,2019-03-24 22:47:00,906 Park St, Boston,MA,02215 +173762,Wired Headphones,1,11.99,2019-03-19 23:01:00,560 Ridge St, San Francisco,CA,94016 +173763,Lightning Charging Cable,1,14.95,2019-03-13 09:31:00,300 Lake St, Austin,TX,73301 +173764,Bose SoundSport Headphones,1,99.99,2019-03-17 10:21:00,682 West St, Boston,MA,02215 +173765,USB-C Charging Cable,1,11.95,2019-03-07 13:16:00,441 Lakeview St, Los Angeles,CA,90001 +173766,AAA Batteries (4-pack),1,2.99,2019-03-13 04:03:00,428 Madison St, New York City,NY,10001 +173767,Wired Headphones,1,11.99,2019-03-09 10:28:00,750 Lincoln St, San Francisco,CA,94016 +173768,AAA Batteries (4-pack),1,2.99,2019-03-03 21:27:00,356 Hickory St, Los Angeles,CA,90001 +173769,Bose SoundSport Headphones,1,99.99,2019-03-14 01:14:00,782 Cedar St, San Francisco,CA,94016 +173770,Google Phone,1,600.0,2019-03-02 13:24:00,425 Meadow St, Los Angeles,CA,90001 +173770,Wired Headphones,1,11.99,2019-03-02 13:24:00,425 Meadow St, Los Angeles,CA,90001 +173771,AA Batteries (4-pack),1,3.84,2019-03-06 12:52:00,619 Church St, Atlanta,GA,30301 +173772,AAA Batteries (4-pack),2,2.99,2019-03-26 21:51:00,291 Spruce St, San Francisco,CA,94016 +173773,27in FHD Monitor,1,149.99,2019-03-04 18:31:00,555 Jackson St, Los Angeles,CA,90001 +173774,Apple Airpods Headphones,1,150.0,2019-03-17 20:33:00,519 Walnut St, San Francisco,CA,94016 +173775,Apple Airpods Headphones,1,150.0,2019-03-16 01:27:00,359 Park St, San Francisco,CA,94016 +173776,iPhone,1,700.0,2019-03-04 10:23:00,116 Lincoln St, San Francisco,CA,94016 +173777,Apple Airpods Headphones,1,150.0,2019-03-13 09:08:00,99 4th St, Los Angeles,CA,90001 +173778,AA Batteries (4-pack),3,3.84,2019-03-01 14:24:00,444 Madison St, San Francisco,CA,94016 +173779,AAA Batteries (4-pack),1,2.99,2019-03-03 10:34:00,713 11th St, New York City,NY,10001 +173780,27in FHD Monitor,1,149.99,2019-03-08 12:33:00,600 12th St, Austin,TX,73301 +173781,iPhone,1,700.0,2019-03-14 20:08:00,981 Wilson St, Atlanta,GA,30301 +173781,Lightning Charging Cable,1,14.95,2019-03-14 20:08:00,981 Wilson St, Atlanta,GA,30301 +173782,Macbook Pro Laptop,1,1700.0,2019-03-26 17:35:00,855 Jefferson St, Atlanta,GA,30301 +173783,iPhone,1,700.0,2019-03-03 21:23:00,439 Lake St, San Francisco,CA,94016 +173784,Apple Airpods Headphones,1,150.0,2019-03-27 23:20:00,419 Maple St, Seattle,WA,98101 +173785,USB-C Charging Cable,1,11.95,2019-03-26 14:41:00,154 Walnut St, Dallas,TX,75001 +173786,Lightning Charging Cable,1,14.95,2019-03-24 21:17:00,850 13th St, New York City,NY,10001 +173787,Apple Airpods Headphones,1,150.0,2019-03-12 14:37:00,623 Meadow St, Portland,OR,97035 +173788,AA Batteries (4-pack),2,3.84,2019-03-23 00:17:00,748 5th St, New York City,NY,10001 +173789,ThinkPad Laptop,1,999.99,2019-03-01 20:30:00,885 13th St, Boston,MA,02215 +173790,27in FHD Monitor,1,149.99,2019-03-22 07:33:00,16 2nd St, San Francisco,CA,94016 +173791,Apple Airpods Headphones,1,150.0,2019-03-17 11:43:00,415 Washington St, New York City,NY,10001 +173792,Apple Airpods Headphones,1,150.0,2019-03-12 02:15:00,400 Center St, Atlanta,GA,30301 +173793,USB-C Charging Cable,1,11.95,2019-03-05 18:26:00,617 Chestnut St, Boston,MA,02215 +173794,Google Phone,1,600.0,2019-03-25 07:21:00,579 7th St, Seattle,WA,98101 +173795,Bose SoundSport Headphones,1,99.99,2019-03-17 20:35:00,673 Walnut St, Los Angeles,CA,90001 +173796,Macbook Pro Laptop,1,1700.0,2019-03-31 17:03:00,519 5th St, New York City,NY,10001 +173797,AA Batteries (4-pack),1,3.84,2019-03-16 22:25:00,738 Adams St, San Francisco,CA,94016 +173798,Bose SoundSport Headphones,1,99.99,2019-03-28 09:05:00,859 Lincoln St, Los Angeles,CA,90001 +173799,Wired Headphones,2,11.99,2019-03-31 15:09:00,52 Hill St, Los Angeles,CA,90001 +173800,ThinkPad Laptop,1,999.99,2019-03-11 13:14:00,518 1st St, San Francisco,CA,94016 +173801,34in Ultrawide Monitor,1,379.99,2019-03-20 15:35:00,434 9th St, Atlanta,GA,30301 +173802,Wired Headphones,2,11.99,2019-03-14 00:21:00,803 Hill St, San Francisco,CA,94016 +173803,USB-C Charging Cable,2,11.95,2019-03-24 15:29:00,791 4th St, San Francisco,CA,94016 +173803,USB-C Charging Cable,1,11.95,2019-03-24 15:29:00,791 4th St, San Francisco,CA,94016 +173804,27in 4K Gaming Monitor,1,389.99,2019-03-26 14:17:00,769 Willow St, Los Angeles,CA,90001 +173805,Lightning Charging Cable,1,14.95,2019-03-30 03:25:00,686 11th St, Boston,MA,02215 +173806,AAA Batteries (4-pack),1,2.99,2019-03-02 20:09:00,806 Meadow St, Atlanta,GA,30301 +173807,Lightning Charging Cable,1,14.95,2019-03-05 21:55:00,387 Pine St, Austin,TX,73301 +173808,AAA Batteries (4-pack),1,2.99,2019-03-18 23:09:00,945 Jackson St, Los Angeles,CA,90001 +173809,ThinkPad Laptop,1,999.99,2019-03-22 11:55:00,215 Center St, New York City,NY,10001 +173810,AAA Batteries (4-pack),1,2.99,2019-03-05 18:27:00,51 6th St, Los Angeles,CA,90001 +173811,Wired Headphones,1,11.99,2019-03-27 12:44:00,932 Jefferson St, San Francisco,CA,94016 +173812,20in Monitor,1,109.99,2019-03-08 13:32:00,320 Maple St, Los Angeles,CA,90001 +173813,Lightning Charging Cable,1,14.95,2019-03-04 18:39:00,538 2nd St, Los Angeles,CA,90001 +173814,USB-C Charging Cable,1,11.95,2019-03-24 18:09:00,71 Highland St, Los Angeles,CA,90001 +173815,Lightning Charging Cable,1,14.95,2019-03-17 18:27:00,921 14th St, Los Angeles,CA,90001 +173816,USB-C Charging Cable,1,11.95,2019-03-23 13:50:00,784 Washington St, Boston,MA,02215 +173817,27in FHD Monitor,1,149.99,2019-03-10 15:13:00,22 Chestnut St, Portland,OR,97035 +173818,USB-C Charging Cable,2,11.95,2019-03-05 19:31:00,52 Madison St, Boston,MA,02215 +173819,USB-C Charging Cable,1,11.95,2019-03-22 16:21:00,283 River St, San Francisco,CA,94016 +173820,AAA Batteries (4-pack),2,2.99,2019-03-05 17:48:00,486 Chestnut St, New York City,NY,10001 +173821,AAA Batteries (4-pack),1,2.99,2019-03-26 11:34:00,290 6th St, Austin,TX,73301 +173822,Wired Headphones,1,11.99,2019-03-22 13:31:00,693 2nd St, Atlanta,GA,30301 +173823,USB-C Charging Cable,1,11.95,2019-03-17 22:01:00,369 Dogwood St, New York City,NY,10001 +173824,AAA Batteries (4-pack),1,2.99,2019-03-25 09:48:00,799 Wilson St, New York City,NY,10001 +173825,USB-C Charging Cable,1,11.95,2019-03-27 18:07:00,228 4th St, San Francisco,CA,94016 +173826,Macbook Pro Laptop,1,1700.0,2019-03-06 13:46:00,263 Lincoln St, San Francisco,CA,94016 +173827,Wired Headphones,1,11.99,2019-03-07 09:21:00,527 13th St, Los Angeles,CA,90001 +173828,USB-C Charging Cable,1,11.95,2019-03-09 17:32:00,71 Ridge St, Austin,TX,73301 +173829,AA Batteries (4-pack),1,3.84,2019-03-03 19:02:00,510 10th St, San Francisco,CA,94016 +173830,ThinkPad Laptop,1,999.99,2019-03-29 11:26:00,755 Hill St, Portland,OR,97035 +173831,USB-C Charging Cable,1,11.95,2019-03-08 20:36:00,462 Adams St, Dallas,TX,75001 +173832,Bose SoundSport Headphones,1,99.99,2019-03-30 18:10:00,617 Cedar St, Dallas,TX,75001 +173833,Lightning Charging Cable,1,14.95,2019-03-14 09:45:00,348 11th St, Los Angeles,CA,90001 +173834,Flatscreen TV,1,300.0,2019-03-23 18:35:00,726 Forest St, San Francisco,CA,94016 +173835,AAA Batteries (4-pack),2,2.99,2019-03-01 17:58:00,61 10th St, Portland,ME,04101 +173836,AA Batteries (4-pack),1,3.84,2019-03-16 12:29:00,601 Spruce St, Portland,OR,97035 +173837,AA Batteries (4-pack),2,3.84,2019-03-30 20:14:00,704 Jackson St, New York City,NY,10001 +173838,Apple Airpods Headphones,1,150.0,2019-03-13 19:16:00,95 Ridge St, San Francisco,CA,94016 +173839,iPhone,1,700.0,2019-03-12 13:19:00,216 Meadow St, San Francisco,CA,94016 +173840,USB-C Charging Cable,1,11.95,2019-03-27 11:24:00,298 8th St, Los Angeles,CA,90001 +173841,AAA Batteries (4-pack),4,2.99,2019-03-18 20:18:00,927 7th St, Dallas,TX,75001 +173842,USB-C Charging Cable,1,11.95,2019-03-13 23:39:00,773 Walnut St, Los Angeles,CA,90001 +173843,AA Batteries (4-pack),1,3.84,2019-03-28 08:03:00,646 Forest St, Portland,OR,97035 +173844,Apple Airpods Headphones,1,150.0,2019-03-05 17:27:00,460 Cherry St, San Francisco,CA,94016 +173845,Bose SoundSport Headphones,1,99.99,2019-03-30 13:48:00,207 11th St, New York City,NY,10001 +173846,20in Monitor,1,109.99,2019-03-31 10:52:00,190 Willow St, Dallas,TX,75001 +173847,LG Dryer,1,600.0,2019-03-21 15:41:00,625 11th St, Atlanta,GA,30301 +173848,Apple Airpods Headphones,1,150.0,2019-03-26 11:29:00,46 Meadow St, Dallas,TX,75001 +173849,Bose SoundSport Headphones,1,99.99,2019-03-28 16:07:00,602 Forest St, Los Angeles,CA,90001 +173850,Lightning Charging Cable,1,14.95,2019-03-03 13:16:00,544 West St, Los Angeles,CA,90001 +173851,AAA Batteries (4-pack),4,2.99,2019-03-23 18:23:00,71 Church St, Dallas,TX,75001 +173852,Flatscreen TV,1,300.0,2019-03-25 15:10:00,164 1st St, San Francisco,CA,94016 +173853,AA Batteries (4-pack),2,3.84,2019-03-24 23:07:00,290 Cedar St, San Francisco,CA,94016 +173854,Lightning Charging Cable,1,14.95,2019-03-21 17:39:00,872 North St, New York City,NY,10001 +173855,Apple Airpods Headphones,1,150.0,2019-03-16 12:48:00,30 Walnut St, Boston,MA,02215 +173856,AA Batteries (4-pack),2,3.84,2019-03-12 06:30:00,955 Spruce St, Boston,MA,02215 +173857,AAA Batteries (4-pack),1,2.99,2019-03-06 12:33:00,687 Meadow St, Los Angeles,CA,90001 +173858,AAA Batteries (4-pack),2,2.99,2019-03-06 19:39:00,636 Lakeview St, Boston,MA,02215 +173859,Bose SoundSport Headphones,1,99.99,2019-03-02 15:11:00,47 Washington St, Portland,OR,97035 +173860,27in FHD Monitor,1,149.99,2019-03-28 07:54:00,669 Walnut St, Los Angeles,CA,90001 +173861,Lightning Charging Cable,1,14.95,2019-03-14 18:30:00,316 Main St, Los Angeles,CA,90001 +173862,Lightning Charging Cable,1,14.95,2019-03-24 11:44:00,316 6th St, Los Angeles,CA,90001 +173863,AAA Batteries (4-pack),2,2.99,2019-03-13 15:59:00,156 Lake St, New York City,NY,10001 +173864,Bose SoundSport Headphones,1,99.99,2019-03-24 09:12:00,243 Sunset St, Portland,OR,97035 +173865,AAA Batteries (4-pack),1,2.99,2019-03-14 17:39:00,308 Wilson St, San Francisco,CA,94016 +173866,AAA Batteries (4-pack),1,2.99,2019-03-24 12:57:00,770 Dogwood St, San Francisco,CA,94016 +173867,Lightning Charging Cable,1,14.95,2019-03-13 00:41:00,729 Meadow St, Seattle,WA,98101 +173868,Lightning Charging Cable,1,14.95,2019-03-15 22:51:00,169 1st St, Los Angeles,CA,90001 +173869,Google Phone,1,600.0,2019-03-04 11:29:00,28 Dogwood St, Seattle,WA,98101 +173869,USB-C Charging Cable,1,11.95,2019-03-04 11:29:00,28 Dogwood St, Seattle,WA,98101 +173870,USB-C Charging Cable,1,11.95,2019-03-27 13:59:00,824 Jefferson St, Seattle,WA,98101 +173871,USB-C Charging Cable,1,11.95,2019-03-30 10:49:00,797 Walnut St, Boston,MA,02215 +173872,Wired Headphones,1,11.99,2019-03-14 21:19:00,381 2nd St, Dallas,TX,75001 +173873,USB-C Charging Cable,1,11.95,2019-03-22 08:19:00,870 10th St, San Francisco,CA,94016 +173874,Lightning Charging Cable,1,14.95,2019-03-03 10:45:00,423 Johnson St, New York City,NY,10001 +173875,Macbook Pro Laptop,1,1700.0,2019-03-27 11:03:00,387 1st St, Portland,OR,97035 +173876,USB-C Charging Cable,1,11.95,2019-03-13 09:43:00,740 Main St, Austin,TX,73301 +173877,27in FHD Monitor,1,149.99,2019-03-23 10:41:00,812 12th St, Los Angeles,CA,90001 +173878,Google Phone,1,600.0,2019-03-29 11:48:00,305 Forest St, Dallas,TX,75001 +173879,Wired Headphones,1,11.99,2019-03-03 00:03:00,487 13th St, Atlanta,GA,30301 +173880,AAA Batteries (4-pack),1,2.99,2019-03-06 12:02:00,429 Washington St, San Francisco,CA,94016 +173881,Flatscreen TV,1,300.0,2019-03-26 17:29:00,960 Dogwood St, Seattle,WA,98101 +173882,Bose SoundSport Headphones,1,99.99,2019-03-23 11:55:00,396 Jackson St, San Francisco,CA,94016 +173883,iPhone,1,700.0,2019-03-27 11:58:00,85 5th St, Seattle,WA,98101 +173884,Lightning Charging Cable,1,14.95,2019-03-13 09:54:00,229 Center St, Portland,OR,97035 +173885,AAA Batteries (4-pack),1,2.99,2019-03-08 20:11:00,724 Willow St, New York City,NY,10001 +173886,34in Ultrawide Monitor,1,379.99,2019-03-31 15:53:00,855 Wilson St, San Francisco,CA,94016 +173887,Bose SoundSport Headphones,1,99.99,2019-03-29 11:21:00,126 Church St, Dallas,TX,75001 +173888,LG Dryer,1,600.0,2019-03-21 13:56:00,716 6th St, Los Angeles,CA,90001 +173889,Macbook Pro Laptop,1,1700.0,2019-03-06 12:00:00,167 North St, San Francisco,CA,94016 +173890,AAA Batteries (4-pack),2,2.99,2019-03-18 09:05:00,350 Lake St, Boston,MA,02215 +173891,AA Batteries (4-pack),1,3.84,2019-03-02 21:28:00,662 Willow St, Atlanta,GA,30301 +173892,Lightning Charging Cable,1,14.95,2019-03-13 22:25:00,623 5th St, Los Angeles,CA,90001 +173893,Flatscreen TV,1,300.0,2019-03-29 22:53:00,139 Johnson St, New York City,NY,10001 +173894,Macbook Pro Laptop,1,1700.0,2019-03-05 09:46:00,333 Sunset St, Portland,OR,97035 +173895,Wired Headphones,1,11.99,2019-03-28 16:17:00,316 9th St, Austin,TX,73301 +173896,20in Monitor,1,109.99,2019-03-07 17:41:00,743 Hill St, Dallas,TX,75001 +173897,AA Batteries (4-pack),1,3.84,2019-03-28 09:45:00,801 Wilson St, Portland,ME,04101 +173898,Bose SoundSport Headphones,1,99.99,2019-03-27 08:25:00,992 6th St, New York City,NY,10001 +173899,Flatscreen TV,1,300.0,2019-03-04 16:47:00,409 1st St, Dallas,TX,75001 +173900,Wired Headphones,1,11.99,2019-03-24 11:27:00,416 Jackson St, San Francisco,CA,94016 +173901,AAA Batteries (4-pack),1,2.99,2019-03-23 13:11:00,316 1st St, New York City,NY,10001 +173902,AAA Batteries (4-pack),2,2.99,2019-03-28 20:29:00,319 7th St, San Francisco,CA,94016 +173903,USB-C Charging Cable,2,11.95,2019-03-29 09:12:00,88 6th St, Los Angeles,CA,90001 +173904,Wired Headphones,1,11.99,2019-03-04 21:45:00,520 Main St, San Francisco,CA,94016 +173905,34in Ultrawide Monitor,1,379.99,2019-03-09 17:19:00,48 Lincoln St, San Francisco,CA,94016 +173906,USB-C Charging Cable,1,11.95,2019-03-28 08:11:00,451 7th St, San Francisco,CA,94016 +173907,USB-C Charging Cable,1,11.95,2019-03-29 15:17:00,579 8th St, Atlanta,GA,30301 +173908,USB-C Charging Cable,1,11.95,2019-03-13 10:50:00,814 1st St, Seattle,WA,98101 +173909,AA Batteries (4-pack),2,3.84,2019-03-05 09:19:00,278 Meadow St, Austin,TX,73301 +173910,LG Dryer,1,600.0,2019-03-18 12:47:00,535 13th St, Portland,ME,04101 +173911,Apple Airpods Headphones,1,150.0,2019-03-04 20:04:00,505 Washington St, Seattle,WA,98101 +173912,Lightning Charging Cable,1,14.95,2019-03-13 22:54:00,354 Cedar St, Seattle,WA,98101 +173913,Bose SoundSport Headphones,1,99.99,2019-03-30 12:33:00,333 Elm St, New York City,NY,10001 +173914,AAA Batteries (4-pack),1,2.99,2019-03-15 09:24:00,876 Johnson St, Austin,TX,73301 +173915,AA Batteries (4-pack),2,3.84,2019-03-02 18:40:00,4 Cedar St, Portland,OR,97035 +173916,Wired Headphones,1,11.99,2019-03-19 13:13:00,844 2nd St, Los Angeles,CA,90001 +173917,20in Monitor,1,109.99,2019-03-23 19:23:00,600 Adams St, Portland,ME,04101 +173918,Bose SoundSport Headphones,1,99.99,2019-03-21 22:15:00,42 Elm St, San Francisco,CA,94016 +173918,Wired Headphones,1,11.99,2019-03-21 22:15:00,42 Elm St, San Francisco,CA,94016 +173919,27in FHD Monitor,1,149.99,2019-03-26 17:46:00,113 9th St, Los Angeles,CA,90001 +173920,Lightning Charging Cable,1,14.95,2019-03-07 16:02:00,130 7th St, Portland,OR,97035 +173921,Wired Headphones,1,11.99,2019-03-30 19:33:00,564 13th St, Boston,MA,02215 +173922,Lightning Charging Cable,1,14.95,2019-03-10 19:46:00,631 7th St, Portland,OR,97035 +173923,Lightning Charging Cable,1,14.95,2019-03-14 17:24:00,741 Forest St, Dallas,TX,75001 +173924,Wired Headphones,1,11.99,2019-03-12 21:20:00,105 7th St, New York City,NY,10001 +173925,AA Batteries (4-pack),1,3.84,2019-03-27 20:55:00,874 Wilson St, San Francisco,CA,94016 +173926,AAA Batteries (4-pack),1,2.99,2019-03-29 19:08:00,884 8th St, Los Angeles,CA,90001 +173927,20in Monitor,1,109.99,2019-03-27 19:50:00,134 Johnson St, Los Angeles,CA,90001 +173928,iPhone,1,700.0,2019-03-21 00:23:00,208 Highland St, Atlanta,GA,30301 +173929,Flatscreen TV,1,300.0,2019-03-04 18:17:00,553 Madison St, Dallas,TX,75001 +173930,Wired Headphones,1,11.99,2019-03-17 11:27:00,211 4th St, Los Angeles,CA,90001 +173931,Lightning Charging Cable,1,14.95,2019-03-19 13:59:00,542 Cherry St, New York City,NY,10001 +173932,USB-C Charging Cable,1,11.95,2019-03-11 18:51:00,1 Madison St, Atlanta,GA,30301 +173933,AA Batteries (4-pack),1,3.84,2019-03-05 07:36:00,146 Jefferson St, Seattle,WA,98101 +173934,Lightning Charging Cable,1,14.95,2019-03-01 12:55:00,674 12th St, Los Angeles,CA,90001 +173935,Flatscreen TV,1,300.0,2019-03-17 11:39:00,139 2nd St, Atlanta,GA,30301 +173936,AAA Batteries (4-pack),1,2.99,2019-03-08 15:42:00,724 Ridge St, Dallas,TX,75001 +173936,Apple Airpods Headphones,1,150.0,2019-03-08 15:42:00,724 Ridge St, Dallas,TX,75001 +173937,27in 4K Gaming Monitor,1,389.99,2019-03-29 17:06:00,273 7th St, Los Angeles,CA,90001 +173937,LG Dryer,1,600.0,2019-03-29 17:06:00,273 7th St, Los Angeles,CA,90001 +173938,Lightning Charging Cable,2,14.95,2019-03-20 09:20:00,482 North St, New York City,NY,10001 +173939,AA Batteries (4-pack),1,3.84,2019-03-05 16:54:00,705 River St, San Francisco,CA,94016 +173940,ThinkPad Laptop,1,999.99,2019-03-21 18:26:00,658 Jackson St, Seattle,WA,98101 +173941,27in 4K Gaming Monitor,1,389.99,2019-03-22 20:47:00,127 Church St, San Francisco,CA,94016 +173942,USB-C Charging Cable,1,11.95,2019-03-27 19:03:00,75 5th St, San Francisco,CA,94016 +173943,USB-C Charging Cable,1,11.95,2019-03-13 19:44:00,556 North St, Boston,MA,02215 +173944,AA Batteries (4-pack),1,3.84,2019-03-15 18:04:00,715 Cherry St, Atlanta,GA,30301 +173945,Wired Headphones,1,11.99,2019-03-08 10:59:00,726 Adams St, San Francisco,CA,94016 +173946,27in 4K Gaming Monitor,1,389.99,2019-03-24 20:30:00,560 Center St, San Francisco,CA,94016 +173947,AA Batteries (4-pack),1,3.84,2019-03-07 18:54:00,616 6th St, Dallas,TX,75001 +173948,Apple Airpods Headphones,1,150.0,2019-03-26 21:23:00,454 6th St, Dallas,TX,75001 +173949,Bose SoundSport Headphones,1,99.99,2019-03-28 21:46:00,840 Park St, Boston,MA,02215 +173950,iPhone,1,700.0,2019-03-03 23:07:00,767 6th St, San Francisco,CA,94016 +173951,USB-C Charging Cable,1,11.95,2019-03-07 21:38:00,834 10th St, New York City,NY,10001 +173952,20in Monitor,1,109.99,2019-03-12 12:17:00,301 Church St, Atlanta,GA,30301 +173953,Lightning Charging Cable,1,14.95,2019-03-21 13:29:00,745 Maple St, New York City,NY,10001 +173954,Wired Headphones,1,11.99,2019-03-22 11:59:00,78 Maple St, San Francisco,CA,94016 +173955,AAA Batteries (4-pack),1,2.99,2019-03-17 07:32:00,254 8th St, Austin,TX,73301 +173956,Lightning Charging Cable,1,14.95,2019-03-22 08:59:00,687 Adams St, Los Angeles,CA,90001 +173957,Google Phone,1,600.0,2019-03-24 18:02:00,285 2nd St, New York City,NY,10001 +173958,AAA Batteries (4-pack),1,2.99,2019-03-21 17:34:00,214 1st St, Seattle,WA,98101 +173959,20in Monitor,1,109.99,2019-03-19 08:22:00,642 Elm St, New York City,NY,10001 +173960,Apple Airpods Headphones,1,150.0,2019-03-05 12:48:00,77 Hickory St, Portland,OR,97035 +173961,Lightning Charging Cable,1,14.95,2019-03-17 00:33:00,52 1st St, New York City,NY,10001 +173962,Lightning Charging Cable,1,14.95,2019-03-10 17:26:00,198 Cedar St, Boston,MA,02215 +173963,27in FHD Monitor,1,149.99,2019-03-21 19:15:00,460 Forest St, New York City,NY,10001 +173964,Bose SoundSport Headphones,1,99.99,2019-03-22 00:08:00,705 Dogwood St, Seattle,WA,98101 +173965,Lightning Charging Cable,1,14.95,2019-03-26 06:44:00,41 Main St, Dallas,TX,75001 +173966,Wired Headphones,1,11.99,2019-03-27 21:08:00,741 Church St, Dallas,TX,75001 +173967,AAA Batteries (4-pack),1,2.99,2019-03-09 09:29:00,488 Maple St, Atlanta,GA,30301 +173968,27in 4K Gaming Monitor,1,389.99,2019-03-03 20:05:00,443 River St, Boston,MA,02215 +173969,Wired Headphones,1,11.99,2019-03-04 17:28:00,477 Jackson St, San Francisco,CA,94016 +173969,27in FHD Monitor,1,149.99,2019-03-04 17:28:00,477 Jackson St, San Francisco,CA,94016 +173970,Wired Headphones,2,11.99,2019-03-14 19:21:00,635 Hill St, Los Angeles,CA,90001 +173971,USB-C Charging Cable,1,11.95,2019-03-29 07:56:00,249 Wilson St, San Francisco,CA,94016 +173972,Macbook Pro Laptop,1,1700.0,2019-03-04 11:39:00,896 6th St, Dallas,TX,75001 +173973,AAA Batteries (4-pack),3,2.99,2019-03-10 21:12:00,461 Forest St, Los Angeles,CA,90001 +173974,AA Batteries (4-pack),1,3.84,2019-03-13 12:31:00,338 Johnson St, Portland,OR,97035 +173975,Wired Headphones,1,11.99,2019-03-18 06:49:00,561 Spruce St, Portland,ME,04101 +173976,Apple Airpods Headphones,1,150.0,2019-03-22 22:03:00,236 11th St, Portland,ME,04101 +173977,Apple Airpods Headphones,1,150.0,2019-03-20 13:43:00,941 8th St, Los Angeles,CA,90001 +173978,USB-C Charging Cable,1,11.95,2019-03-09 08:38:00,652 1st St, Los Angeles,CA,90001 +173979,AAA Batteries (4-pack),1,2.99,2019-03-28 17:45:00,305 Lincoln St, Dallas,TX,75001 +173980,Google Phone,1,600.0,2019-03-29 06:28:00,903 Forest St, Boston,MA,02215 +173980,USB-C Charging Cable,1,11.95,2019-03-29 06:28:00,903 Forest St, Boston,MA,02215 +173981,USB-C Charging Cable,1,11.95,2019-03-01 12:24:00,755 Sunset St, New York City,NY,10001 +173982,USB-C Charging Cable,1,11.95,2019-03-16 11:03:00,425 Church St, San Francisco,CA,94016 +173983,Lightning Charging Cable,1,14.95,2019-03-03 19:46:00,238 Cherry St, Portland,OR,97035 +173984,Apple Airpods Headphones,1,150.0,2019-03-05 08:33:00,397 Meadow St, New York City,NY,10001 +173985,ThinkPad Laptop,1,999.99,2019-03-08 18:20:00,741 South St, Atlanta,GA,30301 +173986,Flatscreen TV,1,300.0,2019-03-28 19:38:00,123 12th St, Dallas,TX,75001 +173987,AAA Batteries (4-pack),1,2.99,2019-03-29 17:31:00,279 Meadow St, Los Angeles,CA,90001 +173988,AA Batteries (4-pack),1,3.84,2019-03-09 17:53:00,865 Hickory St, Los Angeles,CA,90001 +173989,AAA Batteries (4-pack),1,2.99,2019-03-25 11:56:00,556 8th St, Austin,TX,73301 +173990,LG Dryer,1,600.0,2019-03-30 22:10:00,449 Ridge St, Dallas,TX,75001 +173991,AA Batteries (4-pack),1,3.84,2019-03-09 19:25:00,85 10th St, Los Angeles,CA,90001 +173992,AA Batteries (4-pack),1,3.84,2019-03-11 18:25:00,787 Walnut St, San Francisco,CA,94016 +173993,AAA Batteries (4-pack),1,2.99,2019-03-29 11:23:00,640 Ridge St, New York City,NY,10001 +173994,AA Batteries (4-pack),1,3.84,2019-03-09 18:47:00,904 5th St, Los Angeles,CA,90001 +173995,Wired Headphones,1,11.99,2019-03-03 22:20:00,548 4th St, Dallas,TX,75001 +173996,AAA Batteries (4-pack),1,2.99,2019-03-06 21:05:00,205 Highland St, Boston,MA,02215 +173997,27in FHD Monitor,1,149.99,2019-03-06 00:27:00,272 Meadow St, New York City,NY,10001 +173998,AAA Batteries (4-pack),1,2.99,2019-03-19 08:11:00,795 Highland St, San Francisco,CA,94016 +173999,iPhone,1,700.0,2019-03-04 13:56:00,951 Meadow St, Austin,TX,73301 +174000,Google Phone,1,600.0,2019-03-31 10:59:00,541 Washington St, San Francisco,CA,94016 +174001,USB-C Charging Cable,1,11.95,2019-03-13 05:51:00,141 River St, New York City,NY,10001 +174002,AAA Batteries (4-pack),1,2.99,2019-03-13 15:41:00,879 Main St, San Francisco,CA,94016 +174003,AA Batteries (4-pack),1,3.84,2019-03-07 08:45:00,559 Hickory St, San Francisco,CA,94016 +174004,Apple Airpods Headphones,1,150.0,2019-03-23 11:19:00,611 Sunset St, Los Angeles,CA,90001 +174005,20in Monitor,1,109.99,2019-03-30 12:55:00,899 8th St, Los Angeles,CA,90001 +174006,AAA Batteries (4-pack),1,2.99,2019-03-19 09:33:00,641 Highland St, Seattle,WA,98101 +174007,34in Ultrawide Monitor,1,379.99,2019-03-04 13:22:00,621 Walnut St, San Francisco,CA,94016 +174008,AA Batteries (4-pack),1,3.84,2019-03-03 21:23:00,284 Madison St, Dallas,TX,75001 +174009,AAA Batteries (4-pack),1,2.99,2019-03-14 20:14:00,190 13th St, Los Angeles,CA,90001 +174010,AAA Batteries (4-pack),2,2.99,2019-03-16 12:16:00,839 Wilson St, New York City,NY,10001 +174011,AAA Batteries (4-pack),1,2.99,2019-03-08 22:18:00,147 Madison St, San Francisco,CA,94016 +174012,Google Phone,1,600.0,2019-03-19 13:32:00,291 Hill St, San Francisco,CA,94016 +174013,USB-C Charging Cable,1,11.95,2019-03-23 22:07:00,690 South St, Dallas,TX,75001 +174014,AA Batteries (4-pack),1,3.84,2019-03-19 03:55:00,17 Spruce St, Dallas,TX,75001 +174015,Lightning Charging Cable,1,14.95,2019-03-06 11:51:00,452 Willow St, Atlanta,GA,30301 +174016,AA Batteries (4-pack),1,3.84,2019-03-08 16:01:00,108 8th St, Dallas,TX,75001 +174017,AAA Batteries (4-pack),1,2.99,2019-03-19 15:10:00,316 7th St, San Francisco,CA,94016 +174018,AA Batteries (4-pack),2,3.84,2019-03-27 16:46:00,174 Elm St, Atlanta,GA,30301 +174019,USB-C Charging Cable,1,11.95,2019-03-14 10:22:00,203 Meadow St, Los Angeles,CA,90001 +174020,Wired Headphones,1,11.99,2019-03-31 06:04:00,389 Jackson St, Dallas,TX,75001 +174021,AA Batteries (4-pack),3,3.84,2019-03-15 21:22:00,518 Highland St, San Francisco,CA,94016 +174022,27in FHD Monitor,1,149.99,2019-03-16 10:58:00,247 Elm St, Los Angeles,CA,90001 +174023,USB-C Charging Cable,1,11.95,2019-03-20 15:09:00,664 2nd St, San Francisco,CA,94016 +174024,AAA Batteries (4-pack),1,2.99,2019-03-08 11:39:00,730 Walnut St, Boston,MA,02215 +174025,AA Batteries (4-pack),2,3.84,2019-03-19 08:47:00,532 Church St, Dallas,TX,75001 +174026,Apple Airpods Headphones,1,150.0,2019-03-13 19:26:00,19 Walnut St, Boston,MA,02215 +174027,Wired Headphones,1,11.99,2019-03-13 11:41:00,201 12th St, San Francisco,CA,94016 +174028,USB-C Charging Cable,2,11.95,2019-03-30 17:47:00,431 West St, San Francisco,CA,94016 +174029,34in Ultrawide Monitor,1,379.99,2019-03-12 12:22:00,151 Lakeview St, Boston,MA,02215 +174030,USB-C Charging Cable,1,11.95,2019-03-02 12:31:00,849 12th St, Seattle,WA,98101 +174031,Apple Airpods Headphones,1,150.0,2019-03-09 19:02:00,196 River St, Los Angeles,CA,90001 +174032,Bose SoundSport Headphones,1,99.99,2019-03-14 06:13:00,954 Cherry St, Boston,MA,02215 +174033,Apple Airpods Headphones,1,150.0,2019-03-07 15:50:00,217 Wilson St, Austin,TX,73301 +174034,Wired Headphones,1,11.99,2019-03-28 20:19:00,989 Hill St, Dallas,TX,75001 +174035,AA Batteries (4-pack),2,3.84,2019-03-02 10:27:00,178 Dogwood St, Boston,MA,02215 +174036,Wired Headphones,1,11.99,2019-03-08 11:29:00,223 Lake St, San Francisco,CA,94016 +174037,Lightning Charging Cable,1,14.95,2019-03-30 18:16:00,375 Lake St, Atlanta,GA,30301 +174038,Wired Headphones,1,11.99,2019-03-15 13:52:00,321 West St, Los Angeles,CA,90001 +174039,Bose SoundSport Headphones,1,99.99,2019-03-16 20:05:00,81 14th St, Atlanta,GA,30301 +174040,ThinkPad Laptop,1,999.99,2019-03-04 15:28:00,456 Lincoln St, San Francisco,CA,94016 +174041,Wired Headphones,1,11.99,2019-03-15 20:55:00,883 River St, Austin,TX,73301 +174042,USB-C Charging Cable,1,11.95,2019-03-19 20:05:00,523 Cedar St, New York City,NY,10001 +174043,AAA Batteries (4-pack),2,2.99,2019-03-19 09:08:00,372 1st St, New York City,NY,10001 +174044,Google Phone,1,600.0,2019-03-30 17:07:00,176 Jefferson St, New York City,NY,10001 +174045,USB-C Charging Cable,3,11.95,2019-03-26 22:29:00,936 4th St, New York City,NY,10001 +174046,AA Batteries (4-pack),1,3.84,2019-03-15 00:04:00,589 Forest St, Seattle,WA,98101 +174047,AA Batteries (4-pack),1,3.84,2019-03-25 20:33:00,155 North St, Atlanta,GA,30301 +174048,ThinkPad Laptop,1,999.99,2019-03-13 10:51:00,960 Highland St, New York City,NY,10001 +174049,Apple Airpods Headphones,1,150.0,2019-03-24 15:43:00,611 Ridge St, Austin,TX,73301 +174050,AA Batteries (4-pack),1,3.84,2019-03-31 13:34:00,50 9th St, San Francisco,CA,94016 +174051,Apple Airpods Headphones,1,150.0,2019-03-08 16:22:00,755 12th St, Seattle,WA,98101 +174052,AAA Batteries (4-pack),2,2.99,2019-03-17 13:27:00,293 2nd St, Dallas,TX,75001 +174053,Bose SoundSport Headphones,1,99.99,2019-03-10 10:57:00,246 Wilson St, New York City,NY,10001 +174054,USB-C Charging Cable,1,11.95,2019-03-23 19:49:00,96 10th St, Boston,MA,02215 +174055,Lightning Charging Cable,1,14.95,2019-03-19 09:41:00,405 Jefferson St, Dallas,TX,75001 +174056,AAA Batteries (4-pack),2,2.99,2019-03-25 00:00:00,147 6th St, Los Angeles,CA,90001 +174057,AAA Batteries (4-pack),1,2.99,2019-03-22 09:29:00,799 4th St, Boston,MA,02215 +174058,AAA Batteries (4-pack),1,2.99,2019-03-06 17:50:00,43 Elm St, Los Angeles,CA,90001 +174059,AA Batteries (4-pack),1,3.84,2019-03-22 20:25:00,4 7th St, New York City,NY,10001 +174060,AA Batteries (4-pack),3,3.84,2019-03-18 16:45:00,712 Chestnut St, San Francisco,CA,94016 +174061,AA Batteries (4-pack),1,3.84,2019-03-23 17:33:00,888 Church St, Los Angeles,CA,90001 +174062,AA Batteries (4-pack),1,3.84,2019-03-31 12:02:00,176 Meadow St, San Francisco,CA,94016 +174063,AA Batteries (4-pack),1,3.84,2019-03-24 18:01:00,406 River St, New York City,NY,10001 +174064,Macbook Pro Laptop,1,1700.0,2019-03-20 17:05:00,525 Elm St, San Francisco,CA,94016 +174065,27in 4K Gaming Monitor,1,389.99,2019-03-21 22:06:00,184 Dogwood St, San Francisco,CA,94016 +174066,Flatscreen TV,1,300.0,2019-03-22 10:04:00,217 Park St, San Francisco,CA,94016 +174067,AA Batteries (4-pack),1,3.84,2019-03-18 19:14:00,447 Jefferson St, Dallas,TX,75001 +174068,Lightning Charging Cable,1,14.95,2019-03-20 19:23:00,840 Washington St, Dallas,TX,75001 +174069,AA Batteries (4-pack),2,3.84,2019-03-18 18:29:00,162 Sunset St, Seattle,WA,98101 +174070,Lightning Charging Cable,1,14.95,2019-03-23 16:16:00,321 Dogwood St, Portland,OR,97035 +174071,Apple Airpods Headphones,1,150.0,2019-03-30 14:12:00,482 Madison St, Boston,MA,02215 +174072,ThinkPad Laptop,1,999.99,2019-03-14 16:21:00,758 Forest St, Seattle,WA,98101 +174073,Wired Headphones,1,11.99,2019-03-22 14:22:00,994 Forest St, New York City,NY,10001 +174074,AA Batteries (4-pack),1,3.84,2019-03-10 16:40:00,81 Willow St, Dallas,TX,75001 +174075,USB-C Charging Cable,1,11.95,2019-03-10 14:17:00,984 Walnut St, Boston,MA,02215 +174076,Wired Headphones,1,11.99,2019-03-03 18:47:00,155 14th St, Boston,MA,02215 +174077,Bose SoundSport Headphones,1,99.99,2019-03-02 04:48:00,104 North St, Seattle,WA,98101 +174078,Wired Headphones,1,11.99,2019-03-18 20:12:00,545 River St, Atlanta,GA,30301 +174079,Bose SoundSport Headphones,1,99.99,2019-03-11 07:46:00,459 1st St, San Francisco,CA,94016 +174080,Wired Headphones,1,11.99,2019-03-23 12:31:00,623 South St, New York City,NY,10001 +174081,AAA Batteries (4-pack),1,2.99,2019-03-27 15:20:00,406 Lakeview St, Boston,MA,02215 +174082,AAA Batteries (4-pack),1,2.99,2019-03-25 12:34:00,850 4th St, Los Angeles,CA,90001 +174083,Bose SoundSport Headphones,1,99.99,2019-03-09 14:36:00,745 Walnut St, Boston,MA,02215 +174084,AA Batteries (4-pack),2,3.84,2019-03-27 15:56:00,721 6th St, Los Angeles,CA,90001 +174085,Lightning Charging Cable,1,14.95,2019-03-07 19:26:00,142 Adams St, Los Angeles,CA,90001 +174086,34in Ultrawide Monitor,1,379.99,2019-03-09 20:15:00,595 Main St, Los Angeles,CA,90001 +174087,AAA Batteries (4-pack),2,2.99,2019-03-05 22:28:00,530 5th St, Los Angeles,CA,90001 +174088,Lightning Charging Cable,1,14.95,2019-03-10 10:40:00,589 Hickory St, Atlanta,GA,30301 +174089,Macbook Pro Laptop,1,1700.0,2019-03-18 00:28:00,606 Wilson St, San Francisco,CA,94016 +174090,AAA Batteries (4-pack),2,2.99,2019-03-18 12:13:00,153 Wilson St, Los Angeles,CA,90001 +174091,Wired Headphones,1,11.99,2019-03-17 19:56:00,205 Washington St, San Francisco,CA,94016 +174092,Bose SoundSport Headphones,1,99.99,2019-03-02 09:44:00,87 River St, Los Angeles,CA,90001 +174093,AA Batteries (4-pack),1,3.84,2019-03-30 10:30:00,385 8th St, Portland,ME,04101 +174094,Flatscreen TV,1,300.0,2019-03-15 00:05:00,788 9th St, Los Angeles,CA,90001 +174095,AA Batteries (4-pack),1,3.84,2019-03-27 10:17:00,660 Hill St, New York City,NY,10001 +174096,Lightning Charging Cable,1,14.95,2019-03-07 23:18:00,83 11th St, Boston,MA,02215 +174097,AAA Batteries (4-pack),1,2.99,2019-03-05 16:05:00,201 11th St, Portland,OR,97035 +174098,USB-C Charging Cable,2,11.95,2019-03-30 18:54:00,96 Wilson St, Boston,MA,02215 +174099,20in Monitor,1,109.99,2019-03-07 11:45:00,275 Maple St, Dallas,TX,75001 +174100,USB-C Charging Cable,2,11.95,2019-03-11 09:58:00,448 Chestnut St, San Francisco,CA,94016 +174101,Bose SoundSport Headphones,1,99.99,2019-03-14 21:39:00,35 Lakeview St, Atlanta,GA,30301 +174102,ThinkPad Laptop,1,999.99,2019-03-17 08:27:00,790 Lake St, Boston,MA,02215 +174103,27in FHD Monitor,1,149.99,2019-03-20 20:41:00,719 Lake St, Dallas,TX,75001 +174104,Apple Airpods Headphones,1,150.0,2019-03-28 20:55:00,846 8th St, Portland,OR,97035 +174105,Apple Airpods Headphones,1,150.0,2019-03-25 08:37:00,900 Center St, Boston,MA,02215 +174106,Apple Airpods Headphones,1,150.0,2019-03-29 12:49:00,761 Jackson St, San Francisco,CA,94016 +174107,Lightning Charging Cable,1,14.95,2019-03-02 18:05:00,260 2nd St, San Francisco,CA,94016 +174108,34in Ultrawide Monitor,1,379.99,2019-03-05 09:51:00,705 Jefferson St, San Francisco,CA,94016 +174109,AAA Batteries (4-pack),1,2.99,2019-03-01 20:59:00,114 Walnut St, San Francisco,CA,94016 +174110,Wired Headphones,1,11.99,2019-03-13 19:12:00,57 14th St, Boston,MA,02215 +174111,20in Monitor,1,109.99,2019-03-23 22:38:00,824 8th St, Portland,OR,97035 +174112,34in Ultrawide Monitor,1,379.99,2019-03-07 19:49:00,788 Madison St, Seattle,WA,98101 +174113,Apple Airpods Headphones,1,150.0,2019-03-25 10:59:00,689 Cedar St, San Francisco,CA,94016 +174114,Lightning Charging Cable,1,14.95,2019-03-02 20:38:00,487 Main St, Seattle,WA,98101 +174115,Flatscreen TV,1,300.0,2019-03-27 15:25:00,728 Jackson St, Seattle,WA,98101 +174116,Wired Headphones,1,11.99,2019-03-30 08:43:00,503 12th St, Los Angeles,CA,90001 +174117,AAA Batteries (4-pack),1,2.99,2019-03-15 09:42:00,542 14th St, Austin,TX,73301 +174118,AAA Batteries (4-pack),1,2.99,2019-03-29 12:49:00,256 Church St, Dallas,TX,75001 +174119,Lightning Charging Cable,2,14.95,2019-03-10 12:24:00,170 Cedar St, New York City,NY,10001 +174120,AA Batteries (4-pack),1,3.84,2019-03-22 14:47:00,57 Main St, San Francisco,CA,94016 +174121,AA Batteries (4-pack),1,3.84,2019-03-16 22:56:00,898 Forest St, Los Angeles,CA,90001 +174122,Apple Airpods Headphones,1,150.0,2019-03-08 08:48:00,221 Pine St, Austin,TX,73301 +174123,34in Ultrawide Monitor,1,379.99,2019-03-25 14:16:00,583 Walnut St, Boston,MA,02215 +174124,Apple Airpods Headphones,1,150.0,2019-03-31 14:49:00,141 Madison St, Dallas,TX,75001 +174125,27in 4K Gaming Monitor,1,389.99,2019-03-12 14:52:00,721 Highland St, Los Angeles,CA,90001 +174126,27in 4K Gaming Monitor,1,389.99,2019-03-15 19:38:00,362 9th St, San Francisco,CA,94016 +174127,27in FHD Monitor,1,149.99,2019-03-03 17:36:00,919 11th St, Dallas,TX,75001 +174128,AAA Batteries (4-pack),1,2.99,2019-03-15 22:39:00,181 Pine St, Atlanta,GA,30301 +174129,USB-C Charging Cable,1,11.95,2019-03-30 15:03:00,676 7th St, San Francisco,CA,94016 +174130,Bose SoundSport Headphones,1,99.99,2019-03-18 19:25:00,742 Lake St, San Francisco,CA,94016 +174131,AA Batteries (4-pack),1,3.84,2019-03-30 12:13:00,214 Ridge St, Atlanta,GA,30301 +174132,Apple Airpods Headphones,1,150.0,2019-03-07 20:35:00,262 Johnson St, Boston,MA,02215 +174133,Google Phone,1,600.0,2019-03-17 16:30:00,133 14th St, San Francisco,CA,94016 +174134,20in Monitor,1,109.99,2019-03-03 14:27:00,859 Hill St, Los Angeles,CA,90001 +174135,Lightning Charging Cable,1,14.95,2019-03-26 14:20:00,233 Sunset St, San Francisco,CA,94016 +174136,USB-C Charging Cable,1,11.95,2019-03-24 14:16:00,436 Church St, Los Angeles,CA,90001 +174137,20in Monitor,1,109.99,2019-03-04 08:18:00,78 Lake St, Seattle,WA,98101 +174137,LG Washing Machine,1,600.0,2019-03-04 08:18:00,78 Lake St, Seattle,WA,98101 +174138,AAA Batteries (4-pack),1,2.99,2019-03-21 09:45:00,7 Hill St, Dallas,TX,75001 +174139,Wired Headphones,1,11.99,2019-03-11 11:18:00,907 Lakeview St, San Francisco,CA,94016 +174140,Lightning Charging Cable,1,14.95,2019-03-31 12:28:00,758 Sunset St, Austin,TX,73301 +174141,Lightning Charging Cable,1,14.95,2019-03-19 17:05:00,901 Wilson St, San Francisco,CA,94016 +174142,AA Batteries (4-pack),2,3.84,2019-03-21 13:08:00,206 Washington St, Portland,ME,04101 +174143,AAA Batteries (4-pack),1,2.99,2019-03-12 13:02:00,987 Church St, Boston,MA,02215 +174144,AA Batteries (4-pack),2,3.84,2019-03-15 12:28:00,911 Hill St, New York City,NY,10001 +174145,20in Monitor,1,109.99,2019-03-07 06:36:00,99 Pine St, Seattle,WA,98101 +174146,iPhone,1,700.0,2019-03-01 21:47:00,516 1st St, New York City,NY,10001 +174147,Lightning Charging Cable,1,14.95,2019-03-01 11:32:00,226 9th St, San Francisco,CA,94016 +174148,AA Batteries (4-pack),1,3.84,2019-03-14 06:35:00,699 2nd St, Austin,TX,73301 +174149,Apple Airpods Headphones,1,150.0,2019-03-31 01:40:00,823 8th St, Los Angeles,CA,90001 +174150,34in Ultrawide Monitor,1,379.99,2019-03-22 21:57:00,966 2nd St, San Francisco,CA,94016 +174151,ThinkPad Laptop,1,999.99,2019-03-11 07:03:00,316 Wilson St, Dallas,TX,75001 +174152,Wired Headphones,1,11.99,2019-03-16 13:02:00,904 Church St, Los Angeles,CA,90001 +174152,LG Washing Machine,1,600.0,2019-03-16 13:02:00,904 Church St, Los Angeles,CA,90001 +174153,Apple Airpods Headphones,1,150.0,2019-03-22 23:29:00,320 5th St, Seattle,WA,98101 +174154,Wired Headphones,1,11.99,2019-03-11 08:33:00,369 Maple St, Los Angeles,CA,90001 +174155,Bose SoundSport Headphones,1,99.99,2019-03-27 20:27:00,488 1st St, San Francisco,CA,94016 +174156,AAA Batteries (4-pack),2,2.99,2019-03-09 15:47:00,684 Ridge St, Austin,TX,73301 +174157,Bose SoundSport Headphones,1,99.99,2019-03-10 00:26:00,348 Center St, Atlanta,GA,30301 +174158,ThinkPad Laptop,1,999.99,2019-03-06 12:05:00,164 Lake St, Dallas,TX,75001 +174159,AA Batteries (4-pack),3,3.84,2019-03-04 19:25:00,698 11th St, San Francisco,CA,94016 +174160,USB-C Charging Cable,1,11.95,2019-03-02 16:59:00,812 Johnson St, New York City,NY,10001 +174161,Wired Headphones,1,11.99,2019-03-29 11:28:00,3 Walnut St, San Francisco,CA,94016 +174162,27in 4K Gaming Monitor,1,389.99,2019-03-10 10:10:00,919 Pine St, Seattle,WA,98101 +174163,Google Phone,1,600.0,2019-03-06 18:46:00,518 4th St, Los Angeles,CA,90001 +174164,AA Batteries (4-pack),2,3.84,2019-03-03 09:31:00,349 West St, Portland,OR,97035 +174165,Apple Airpods Headphones,1,150.0,2019-03-23 06:35:00,503 West St, New York City,NY,10001 +174166,Wired Headphones,1,11.99,2019-03-09 19:03:00,953 8th St, Boston,MA,02215 +174167,AA Batteries (4-pack),1,3.84,2019-03-02 13:34:00,361 Highland St, Boston,MA,02215 +174168,Lightning Charging Cable,1,14.95,2019-03-19 13:09:00,37 Elm St, San Francisco,CA,94016 +174169,Lightning Charging Cable,3,14.95,2019-03-10 17:43:00,975 9th St, San Francisco,CA,94016 +174170,AAA Batteries (4-pack),1,2.99,2019-03-16 01:04:00,778 North St, Portland,ME,04101 +174171,Lightning Charging Cable,1,14.95,2019-03-18 23:48:00,458 10th St, Boston,MA,02215 +174172,Flatscreen TV,1,300.0,2019-03-13 19:14:00,131 Lincoln St, San Francisco,CA,94016 +174173,27in FHD Monitor,1,149.99,2019-03-12 12:19:00,612 Center St, Seattle,WA,98101 +174174,Lightning Charging Cable,1,14.95,2019-03-23 13:29:00,251 Church St, Los Angeles,CA,90001 +174175,Lightning Charging Cable,1,14.95,2019-03-13 14:10:00,405 Washington St, Portland,ME,04101 +174176,AAA Batteries (4-pack),1,2.99,2019-03-09 20:58:00,637 10th St, Dallas,TX,75001 +174177,Bose SoundSport Headphones,1,99.99,2019-03-14 16:56:00,845 North St, Los Angeles,CA,90001 +174178,Apple Airpods Headphones,1,150.0,2019-03-22 14:35:00,582 2nd St, Los Angeles,CA,90001 +174179,USB-C Charging Cable,1,11.95,2019-03-14 22:26:00,430 8th St, Seattle,WA,98101 +174180,20in Monitor,1,109.99,2019-03-25 07:37:00,395 Madison St, Austin,TX,73301 +174181,Wired Headphones,1,11.99,2019-03-14 11:20:00,792 Highland St, Dallas,TX,75001 +174182,Lightning Charging Cable,1,14.95,2019-03-08 11:03:00,331 West St, New York City,NY,10001 +174183,USB-C Charging Cable,2,11.95,2019-03-13 20:14:00,232 West St, Boston,MA,02215 +174184,Wired Headphones,2,11.99,2019-03-19 18:16:00,396 11th St, Los Angeles,CA,90001 +174185,Lightning Charging Cable,1,14.95,2019-03-31 13:55:00,694 River St, Atlanta,GA,30301 +174186,Lightning Charging Cable,1,14.95,2019-03-29 09:53:00,263 Center St, Seattle,WA,98101 +174187,Macbook Pro Laptop,1,1700.0,2019-03-03 12:24:00,717 Madison St, Boston,MA,02215 +174188,Wired Headphones,1,11.99,2019-03-25 15:13:00,894 Willow St, San Francisco,CA,94016 +174189,AA Batteries (4-pack),2,3.84,2019-03-21 13:31:00,454 14th St, Atlanta,GA,30301 +174190,34in Ultrawide Monitor,1,379.99,2019-03-21 01:07:00,385 13th St, San Francisco,CA,94016 +174191,ThinkPad Laptop,1,999.99,2019-03-13 19:21:00,610 4th St, Boston,MA,02215 +174192,AAA Batteries (4-pack),1,2.99,2019-03-05 09:18:00,123 Spruce St, Boston,MA,02215 +174193,AA Batteries (4-pack),1,3.84,2019-03-17 18:24:00,825 West St, Los Angeles,CA,90001 +174194,USB-C Charging Cable,1,11.95,2019-03-07 14:00:00,370 Hickory St, San Francisco,CA,94016 +174195,LG Washing Machine,1,600.0,2019-03-23 16:41:00,442 Madison St, San Francisco,CA,94016 +174196,Macbook Pro Laptop,1,1700.0,2019-03-10 20:48:00,964 Madison St, San Francisco,CA,94016 +174197,USB-C Charging Cable,1,11.95,2019-03-16 11:40:00,202 Chestnut St, Austin,TX,73301 +174198,Google Phone,1,600.0,2019-03-03 12:12:00,115 Cedar St, Seattle,WA,98101 +174199,27in FHD Monitor,1,149.99,2019-03-30 16:45:00,908 Sunset St, San Francisco,CA,94016 +174200,USB-C Charging Cable,1,11.95,2019-03-22 23:15:00,623 Jefferson St, Seattle,WA,98101 +174201,Bose SoundSport Headphones,1,99.99,2019-03-07 16:08:00,848 Main St, New York City,NY,10001 +174202,Wired Headphones,1,11.99,2019-03-19 15:54:00,850 Adams St, New York City,NY,10001 +174203,AAA Batteries (4-pack),1,2.99,2019-03-20 15:47:00,250 Hickory St, San Francisco,CA,94016 +174204,Wired Headphones,1,11.99,2019-03-25 07:00:00,417 Lakeview St, Austin,TX,73301 +174205,Flatscreen TV,1,300.0,2019-03-29 19:17:00,22 Washington St, Boston,MA,02215 +174206,Wired Headphones,1,11.99,2019-03-09 16:42:00,673 Park St, Dallas,TX,75001 +174207,USB-C Charging Cable,1,11.95,2019-03-24 00:42:00,129 Main St, San Francisco,CA,94016 +174208,27in FHD Monitor,1,149.99,2019-03-23 19:43:00,286 North St, New York City,NY,10001 +174209,USB-C Charging Cable,1,11.95,2019-03-28 22:55:00,827 Lakeview St, San Francisco,CA,94016 +174210,Bose SoundSport Headphones,1,99.99,2019-03-20 08:12:00,762 Maple St, Austin,TX,73301 +174211,Lightning Charging Cable,1,14.95,2019-03-30 10:41:00,285 Jefferson St, Los Angeles,CA,90001 +174212,USB-C Charging Cable,1,11.95,2019-03-22 09:09:00,639 Cedar St, San Francisco,CA,94016 +174213,Lightning Charging Cable,1,14.95,2019-03-22 19:45:00,946 5th St, San Francisco,CA,94016 +174213,iPhone,1,700.0,2019-03-22 19:45:00,946 5th St, San Francisco,CA,94016 +174214,iPhone,1,700.0,2019-03-20 18:38:00,822 Lake St, San Francisco,CA,94016 +174215,AA Batteries (4-pack),1,3.84,2019-03-17 16:57:00,256 6th St, Los Angeles,CA,90001 +174216,Lightning Charging Cable,1,14.95,2019-03-03 14:18:00,50 8th St, Portland,OR,97035 +174217,27in 4K Gaming Monitor,1,389.99,2019-03-12 04:59:00,392 Elm St, San Francisco,CA,94016 +174218,Lightning Charging Cable,1,14.95,2019-03-15 17:42:00,25 Wilson St, Boston,MA,02215 +174219,AAA Batteries (4-pack),3,2.99,2019-03-05 15:24:00,589 Sunset St, Atlanta,GA,30301 +174220,AAA Batteries (4-pack),1,2.99,2019-03-27 08:34:00,75 10th St, Boston,MA,02215 +174221,Google Phone,1,600.0,2019-03-10 15:48:00,291 Center St, Los Angeles,CA,90001 +174222,AA Batteries (4-pack),1,3.84,2019-03-11 09:37:00,98 Madison St, Boston,MA,02215 +174223,USB-C Charging Cable,1,11.95,2019-03-27 16:09:00,936 8th St, Los Angeles,CA,90001 +174224,Wired Headphones,1,11.99,2019-03-28 15:10:00,896 Jefferson St, Portland,ME,04101 +174225,ThinkPad Laptop,1,999.99,2019-03-27 00:04:00,754 Wilson St, Seattle,WA,98101 +174226,20in Monitor,1,109.99,2019-03-26 20:53:00,666 11th St, Los Angeles,CA,90001 +174227,iPhone,1,700.0,2019-03-28 14:16:00,639 8th St, Dallas,TX,75001 +174227,Lightning Charging Cable,1,14.95,2019-03-28 14:16:00,639 8th St, Dallas,TX,75001 +174228,34in Ultrawide Monitor,1,379.99,2019-03-26 08:19:00,64 Spruce St, Los Angeles,CA,90001 +174229,AAA Batteries (4-pack),1,2.99,2019-03-19 19:42:00,25 Park St, Portland,ME,04101 +174230,Google Phone,1,600.0,2019-03-12 14:49:00,469 6th St, New York City,NY,10001 +174231,Wired Headphones,1,11.99,2019-03-27 10:55:00,31 14th St, Austin,TX,73301 +174232,AA Batteries (4-pack),1,3.84,2019-03-08 20:21:00,830 Pine St, Boston,MA,02215 +174233,AAA Batteries (4-pack),1,2.99,2019-03-11 19:31:00,111 West St, Seattle,WA,98101 +174234,Bose SoundSport Headphones,1,99.99,2019-03-22 17:37:00,797 Cherry St, Portland,OR,97035 +174235,AA Batteries (4-pack),1,3.84,2019-03-22 13:16:00,855 River St, Portland,OR,97035 +174236,Lightning Charging Cable,1,14.95,2019-03-10 08:57:00,271 Highland St, Los Angeles,CA,90001 +174237,Wired Headphones,1,11.99,2019-03-20 21:31:00,885 14th St, Boston,MA,02215 +174238,27in 4K Gaming Monitor,1,389.99,2019-03-11 21:22:00,648 Madison St, Dallas,TX,75001 +174239,AA Batteries (4-pack),1,3.84,2019-03-19 13:27:00,637 Wilson St, Los Angeles,CA,90001 +174240,Lightning Charging Cable,1,14.95,2019-03-28 11:57:00,528 2nd St, Atlanta,GA,30301 +174241,Google Phone,1,600.0,2019-03-01 09:10:00,602 Park St, Dallas,TX,75001 +174241,USB-C Charging Cable,1,11.95,2019-03-01 09:10:00,602 Park St, Dallas,TX,75001 +174242,AAA Batteries (4-pack),1,2.99,2019-03-13 00:28:00,614 11th St, Dallas,TX,75001 +174243,iPhone,1,700.0,2019-03-03 21:28:00,806 Church St, Austin,TX,73301 +174243,Wired Headphones,1,11.99,2019-03-03 21:28:00,806 Church St, Austin,TX,73301 +174244,20in Monitor,1,109.99,2019-03-12 14:02:00,710 Hickory St, San Francisco,CA,94016 +174245,Lightning Charging Cable,1,14.95,2019-03-02 13:01:00,924 Sunset St, San Francisco,CA,94016 +174246,Lightning Charging Cable,2,14.95,2019-03-02 11:38:00,97 7th St, Dallas,TX,75001 +174247,34in Ultrawide Monitor,1,379.99,2019-03-16 19:51:00,392 Hickory St, Atlanta,GA,30301 +174248,Bose SoundSport Headphones,1,99.99,2019-03-29 20:45:00,62 13th St, New York City,NY,10001 +174249,34in Ultrawide Monitor,1,379.99,2019-03-20 09:08:00,795 Washington St, Portland,OR,97035 +174250,Lightning Charging Cable,1,14.95,2019-03-30 15:09:00,413 Ridge St, San Francisco,CA,94016 +174251,AAA Batteries (4-pack),2,2.99,2019-03-30 22:05:00,356 Walnut St, New York City,NY,10001 +174252,34in Ultrawide Monitor,1,379.99,2019-03-16 22:42:00,382 Jackson St, Boston,MA,02215 +174253,AAA Batteries (4-pack),1,2.99,2019-03-06 21:12:00,471 Highland St, Dallas,TX,75001 +174254,Bose SoundSport Headphones,1,99.99,2019-03-23 15:42:00,692 Adams St, Los Angeles,CA,90001 +174255,Macbook Pro Laptop,1,1700.0,2019-03-24 19:51:00,315 1st St, Dallas,TX,75001 +174256,Apple Airpods Headphones,1,150.0,2019-03-25 19:03:00,247 Johnson St, New York City,NY,10001 +174257,AAA Batteries (4-pack),2,2.99,2019-03-26 01:48:00,710 Washington St, Boston,MA,02215 +174258,Bose SoundSport Headphones,1,99.99,2019-03-05 07:59:00,149 13th St, San Francisco,CA,94016 +174259,AA Batteries (4-pack),1,3.84,2019-03-17 10:16:00,626 Sunset St, San Francisco,CA,94016 +174260,USB-C Charging Cable,1,11.95,2019-03-03 11:37:00,788 Lakeview St, New York City,NY,10001 +174261,Wired Headphones,1,11.99,2019-03-22 07:52:00,980 Walnut St, Seattle,WA,98101 +174262,34in Ultrawide Monitor,1,379.99,2019-03-11 22:06:00,243 11th St, New York City,NY,10001 +174263,USB-C Charging Cable,1,11.95,2019-03-17 19:52:00,918 Main St, Seattle,WA,98101 +174264,Lightning Charging Cable,1,14.95,2019-03-30 21:45:00,959 North St, New York City,NY,10001 +174265,34in Ultrawide Monitor,1,379.99,2019-03-24 10:12:00,258 South St, Seattle,WA,98101 +174266,Bose SoundSport Headphones,1,99.99,2019-03-24 18:56:00,997 Park St, New York City,NY,10001 +174267,27in 4K Gaming Monitor,1,389.99,2019-03-11 09:50:00,80 North St, San Francisco,CA,94016 +174268,Wired Headphones,1,11.99,2019-03-07 17:42:00,611 Forest St, Dallas,TX,75001 +174269,Macbook Pro Laptop,1,1700.0,2019-03-15 18:40:00,279 Park St, Dallas,TX,75001 +174270,34in Ultrawide Monitor,1,379.99,2019-03-21 11:20:00,215 Center St, Atlanta,GA,30301 +174271,AA Batteries (4-pack),2,3.84,2019-03-19 17:16:00,216 12th St, Austin,TX,73301 +174272,Wired Headphones,1,11.99,2019-03-22 11:43:00,674 13th St, Dallas,TX,75001 +174273,LG Dryer,1,600.0,2019-03-17 08:46:00,295 Spruce St, Austin,TX,73301 +174274,AAA Batteries (4-pack),2,2.99,2019-03-21 10:59:00,741 Lake St, Los Angeles,CA,90001 +174275,Lightning Charging Cable,1,14.95,2019-03-26 10:06:00,936 Elm St, Austin,TX,73301 +174276,27in FHD Monitor,1,149.99,2019-03-05 21:26:00,370 Lake St, San Francisco,CA,94016 +174277,27in 4K Gaming Monitor,1,389.99,2019-03-19 23:06:00,836 Lakeview St, Dallas,TX,75001 +174278,Google Phone,1,600.0,2019-03-19 20:35:00,696 Madison St, Portland,OR,97035 +174278,USB-C Charging Cable,1,11.95,2019-03-19 20:35:00,696 Madison St, Portland,OR,97035 +174279,Apple Airpods Headphones,1,150.0,2019-03-28 18:42:00,67 Park St, Los Angeles,CA,90001 +174280,Bose SoundSport Headphones,1,99.99,2019-03-27 12:08:00,636 Cherry St, Los Angeles,CA,90001 +174281,Wired Headphones,1,11.99,2019-03-27 01:02:00,620 Sunset St, San Francisco,CA,94016 +174282,AA Batteries (4-pack),1,3.84,2019-03-27 12:32:00,839 River St, San Francisco,CA,94016 +174283,27in 4K Gaming Monitor,1,389.99,2019-03-05 13:58:00,668 Highland St, Atlanta,GA,30301 +174284,Bose SoundSport Headphones,1,99.99,2019-03-10 22:14:00,417 Church St, San Francisco,CA,94016 +174285,AA Batteries (4-pack),1,3.84,2019-03-22 18:06:00,617 Washington St, Dallas,TX,75001 +174286,USB-C Charging Cable,1,11.95,2019-03-03 21:35:00,163 Chestnut St, San Francisco,CA,94016 +174287,AA Batteries (4-pack),1,3.84,2019-03-29 13:35:00,870 5th St, New York City,NY,10001 +174288,Macbook Pro Laptop,1,1700.0,2019-03-26 16:13:00,458 Willow St, San Francisco,CA,94016 +174289,Wired Headphones,1,11.99,2019-03-10 20:39:00,49 Church St, Boston,MA,02215 +174290,AAA Batteries (4-pack),2,2.99,2019-03-05 19:43:00,226 Dogwood St, San Francisco,CA,94016 +174291,Apple Airpods Headphones,1,150.0,2019-03-07 00:09:00,882 Dogwood St, New York City,NY,10001 +174292,Apple Airpods Headphones,1,150.0,2019-03-18 03:25:00,554 11th St, Dallas,TX,75001 +174293,AA Batteries (4-pack),1,3.84,2019-03-09 02:23:00,74 Adams St, Portland,OR,97035 +174294,Wired Headphones,1,11.99,2019-03-04 17:41:00,776 Hickory St, Atlanta,GA,30301 +174294,Google Phone,1,600.0,2019-03-04 17:41:00,776 Hickory St, Atlanta,GA,30301 +174295,Bose SoundSport Headphones,1,99.99,2019-03-27 12:18:00,301 14th St, Los Angeles,CA,90001 +174296,ThinkPad Laptop,1,999.99,2019-03-08 22:02:00,405 Madison St, Los Angeles,CA,90001 +174297,Lightning Charging Cable,1,14.95,2019-03-23 20:05:00,555 Center St, Seattle,WA,98101 +174298,AA Batteries (4-pack),2,3.84,2019-03-27 12:20:00,464 5th St, Los Angeles,CA,90001 +174299,Lightning Charging Cable,1,14.95,2019-03-22 15:30:00,22 South St, New York City,NY,10001 +174300,AAA Batteries (4-pack),2,2.99,2019-03-21 11:01:00,339 13th St, Los Angeles,CA,90001 +174301,USB-C Charging Cable,1,11.95,2019-03-28 23:03:00,800 14th St, San Francisco,CA,94016 +174302,27in FHD Monitor,1,149.99,2019-03-08 20:50:00,882 5th St, New York City,NY,10001 +174303,Flatscreen TV,1,300.0,2019-03-13 18:36:00,601 Hill St, Los Angeles,CA,90001 +174304,USB-C Charging Cable,3,11.95,2019-03-29 22:59:00,513 Elm St, Boston,MA,02215 +174305,AA Batteries (4-pack),1,3.84,2019-03-29 11:11:00,939 Cherry St, Atlanta,GA,30301 +174306,AAA Batteries (4-pack),2,2.99,2019-03-17 09:47:00,651 Church St, Boston,MA,02215 +174307,Lightning Charging Cable,1,14.95,2019-03-28 08:03:00,68 West St, New York City,NY,10001 +174308,Lightning Charging Cable,1,14.95,2019-03-07 10:28:00,642 Willow St, Portland,OR,97035 +174309,34in Ultrawide Monitor,1,379.99,2019-03-12 17:14:00,733 Center St, San Francisco,CA,94016 +174310,Wired Headphones,1,11.99,2019-03-15 16:46:00,975 13th St, Atlanta,GA,30301 +174311,USB-C Charging Cable,1,11.95,2019-03-24 15:16:00,102 West St, San Francisco,CA,94016 +174312,27in FHD Monitor,1,149.99,2019-03-26 21:39:00,177 Lake St, Los Angeles,CA,90001 +174313,27in FHD Monitor,1,149.99,2019-03-08 01:36:00,550 Madison St, San Francisco,CA,94016 +174314,27in 4K Gaming Monitor,1,389.99,2019-03-22 00:47:00,253 6th St, Seattle,WA,98101 +174315,Lightning Charging Cable,1,14.95,2019-03-19 23:39:00,83 Adams St, San Francisco,CA,94016 +174316,AAA Batteries (4-pack),2,2.99,2019-03-12 14:35:00,485 Jefferson St, Dallas,TX,75001 +174317,Lightning Charging Cable,1,14.95,2019-03-12 10:45:00,627 Johnson St, Dallas,TX,75001 +174318,Flatscreen TV,1,300.0,2019-03-17 11:09:00,79 Center St, Dallas,TX,75001 +174319,USB-C Charging Cable,1,11.95,2019-03-02 10:41:00,243 Lakeview St, New York City,NY,10001 +174320,LG Washing Machine,1,600.0,2019-03-22 15:07:00,376 River St, New York City,NY,10001 +174321,USB-C Charging Cable,1,11.95,2019-03-16 12:43:00,513 Main St, San Francisco,CA,94016 +174322,Bose SoundSport Headphones,1,99.99,2019-03-21 18:35:00,154 Pine St, New York City,NY,10001 +174323,Apple Airpods Headphones,1,150.0,2019-03-25 12:59:00,351 11th St, Boston,MA,02215 +174324,AA Batteries (4-pack),1,3.84,2019-03-15 01:10:00,61 2nd St, New York City,NY,10001 +174325,Lightning Charging Cable,2,14.95,2019-03-11 19:29:00,594 Highland St, Seattle,WA,98101 +174326,27in FHD Monitor,1,149.99,2019-03-29 20:38:00,539 13th St, San Francisco,CA,94016 +174327,34in Ultrawide Monitor,1,379.99,2019-03-19 18:50:00,668 6th St, New York City,NY,10001 +174328,AA Batteries (4-pack),1,3.84,2019-03-17 15:02:00,973 Elm St, Los Angeles,CA,90001 +174329,AA Batteries (4-pack),4,3.84,2019-03-11 11:25:00,782 Walnut St, San Francisco,CA,94016 +174330,Bose SoundSport Headphones,1,99.99,2019-03-28 15:32:00,722 Elm St, Austin,TX,73301 +174331,Flatscreen TV,1,300.0,2019-03-10 17:00:00,151 Washington St, New York City,NY,10001 +174332,Wired Headphones,1,11.99,2019-03-03 17:36:00,626 Cedar St, San Francisco,CA,94016 +174333,USB-C Charging Cable,1,11.95,2019-03-04 00:14:00,591 8th St, San Francisco,CA,94016 +174334,Bose SoundSport Headphones,1,99.99,2019-03-04 14:48:00,63 Cherry St, Los Angeles,CA,90001 +174335,Apple Airpods Headphones,1,150.0,2019-03-08 07:06:00,521 North St, Seattle,WA,98101 +174336,Lightning Charging Cable,1,14.95,2019-03-15 18:15:00,535 Lakeview St, San Francisco,CA,94016 +174337,Vareebadd Phone,1,400.0,2019-03-02 16:15:00,635 6th St, Boston,MA,02215 +174338,34in Ultrawide Monitor,1,379.99,2019-03-03 20:31:00,464 Wilson St, Atlanta,GA,30301 +174339,Apple Airpods Headphones,1,150.0,2019-03-20 13:56:00,738 Highland St, Boston,MA,02215 +174340,AAA Batteries (4-pack),1,2.99,2019-03-12 07:48:00,661 12th St, San Francisco,CA,94016 +174341,iPhone,1,700.0,2019-03-31 18:20:00,124 Maple St, Los Angeles,CA,90001 +174342,AAA Batteries (4-pack),2,2.99,2019-03-28 13:27:00,687 12th St, Boston,MA,02215 +174343,AAA Batteries (4-pack),3,2.99,2019-03-17 15:36:00,764 6th St, Boston,MA,02215 +174344,AA Batteries (4-pack),1,3.84,2019-03-29 22:40:00,560 Ridge St, San Francisco,CA,94016 +174345,Lightning Charging Cable,1,14.95,2019-03-13 09:57:00,789 South St, San Francisco,CA,94016 +174346,Wired Headphones,1,11.99,2019-03-13 11:42:00,713 Lakeview St, New York City,NY,10001 +174347,Wired Headphones,1,11.99,2019-03-14 09:44:00,644 Forest St, Los Angeles,CA,90001 +174348,Google Phone,1,600.0,2019-03-30 07:04:00,53 8th St, New York City,NY,10001 +174349,USB-C Charging Cable,1,11.95,2019-03-25 20:50:00,120 Madison St, San Francisco,CA,94016 +174350,Bose SoundSport Headphones,1,99.99,2019-03-31 17:09:00,256 Spruce St, San Francisco,CA,94016 +174351,USB-C Charging Cable,1,11.95,2019-03-06 11:23:00,7 Pine St, Seattle,WA,98101 +174352,27in FHD Monitor,1,149.99,2019-03-02 03:47:00,381 Sunset St, San Francisco,CA,94016 +174353,ThinkPad Laptop,1,999.99,2019-03-13 20:37:00,44 Cherry St, Los Angeles,CA,90001 +174354,Macbook Pro Laptop,1,1700.0,2019-03-14 20:27:00,611 Wilson St, San Francisco,CA,94016 +174355,Bose SoundSport Headphones,1,99.99,2019-03-19 20:31:00,806 Jefferson St, Atlanta,GA,30301 +174356,Wired Headphones,1,11.99,2019-03-01 09:45:00,14 Cherry St, Seattle,WA,98101 +174357,Wired Headphones,1,11.99,2019-03-20 15:00:00,53 Dogwood St, Dallas,TX,75001 +174358,Macbook Pro Laptop,1,1700.0,2019-03-28 20:20:00,290 14th St, Boston,MA,02215 +174359,USB-C Charging Cable,1,11.95,2019-03-17 14:04:00,336 West St, Los Angeles,CA,90001 +174360,iPhone,1,700.0,2019-03-12 19:05:00,362 Washington St, Atlanta,GA,30301 +174360,Apple Airpods Headphones,1,150.0,2019-03-12 19:05:00,362 Washington St, Atlanta,GA,30301 +174361,Macbook Pro Laptop,1,1700.0,2019-03-09 14:16:00,170 Lakeview St, Los Angeles,CA,90001 +174362,USB-C Charging Cable,2,11.95,2019-03-12 18:07:00,157 Church St, Portland,OR,97035 +174363,AA Batteries (4-pack),2,3.84,2019-03-12 16:31:00,746 Johnson St, Boston,MA,02215 +174364,AA Batteries (4-pack),1,3.84,2019-03-26 13:29:00,285 Adams St, Boston,MA,02215 +174365,AA Batteries (4-pack),1,3.84,2019-03-09 16:44:00,43 North St, San Francisco,CA,94016 +174366,AA Batteries (4-pack),2,3.84,2019-03-04 11:03:00,499 Jefferson St, San Francisco,CA,94016 +174367,AAA Batteries (4-pack),2,2.99,2019-03-20 11:06:00,597 Adams St, Los Angeles,CA,90001 +174368,34in Ultrawide Monitor,1,379.99,2019-03-10 16:09:00,702 9th St, Portland,OR,97035 +174369,AA Batteries (4-pack),1,3.84,2019-03-13 20:46:00,542 Maple St, Atlanta,GA,30301 +174370,Bose SoundSport Headphones,1,99.99,2019-03-12 14:03:00,604 Lincoln St, Seattle,WA,98101 +174371,Wired Headphones,1,11.99,2019-03-22 13:38:00,303 4th St, Atlanta,GA,30301 +174372,ThinkPad Laptop,1,999.99,2019-03-28 20:58:00,423 Cedar St, Los Angeles,CA,90001 +174373,Wired Headphones,1,11.99,2019-03-06 07:52:00,718 Washington St, Dallas,TX,75001 +174374,AAA Batteries (4-pack),1,2.99,2019-03-28 14:52:00,900 Adams St, New York City,NY,10001 +174375,AA Batteries (4-pack),1,3.84,2019-03-23 10:04:00,154 1st St, Los Angeles,CA,90001 +174376,AAA Batteries (4-pack),2,2.99,2019-03-25 13:06:00,635 Madison St, Dallas,TX,75001 +174377,20in Monitor,1,109.99,2019-03-21 12:56:00,123 Hickory St, Atlanta,GA,30301 +174378,USB-C Charging Cable,1,11.95,2019-03-01 14:55:00,545 Maple St, Boston,MA,02215 +174379,USB-C Charging Cable,1,11.95,2019-03-19 21:57:00,969 Lincoln St, Los Angeles,CA,90001 +174380,Wired Headphones,1,11.99,2019-03-26 16:08:00,117 Chestnut St, Boston,MA,02215 +174381,iPhone,1,700.0,2019-03-26 16:36:00,448 6th St, Austin,TX,73301 +174382,Macbook Pro Laptop,1,1700.0,2019-03-17 13:06:00,967 Forest St, Seattle,WA,98101 +174383,Bose SoundSport Headphones,1,99.99,2019-03-01 23:12:00,345 Ridge St, Seattle,WA,98101 +174384,ThinkPad Laptop,1,999.99,2019-03-11 16:27:00,203 North St, New York City,NY,10001 +174385,20in Monitor,1,109.99,2019-03-25 12:39:00,226 North St, San Francisco,CA,94016 +174386,AA Batteries (4-pack),1,3.84,2019-03-17 18:59:00,403 South St, New York City,NY,10001 +174387,20in Monitor,1,109.99,2019-03-18 12:19:00,539 11th St, Boston,MA,02215 +174388,USB-C Charging Cable,1,11.95,2019-03-28 12:28:00,326 Sunset St, San Francisco,CA,94016 +174389,27in FHD Monitor,1,149.99,2019-03-04 15:45:00,166 Lincoln St, Dallas,TX,75001 +174390,USB-C Charging Cable,1,11.95,2019-03-14 13:37:00,65 Lakeview St, Austin,TX,73301 +174391,USB-C Charging Cable,1,11.95,2019-03-26 13:31:00,306 7th St, Los Angeles,CA,90001 +174392,Wired Headphones,1,11.99,2019-03-25 17:30:00,415 Adams St, Austin,TX,73301 +174393,Wired Headphones,1,11.99,2019-03-14 20:33:00,348 2nd St, Boston,MA,02215 +174394,Lightning Charging Cable,1,14.95,2019-03-16 16:49:00,24 Highland St, Dallas,TX,75001 +174395,Bose SoundSport Headphones,1,99.99,2019-03-01 11:01:00,776 Lincoln St, Dallas,TX,75001 +174396,Lightning Charging Cable,1,14.95,2019-03-22 15:33:00,512 North St, San Francisco,CA,94016 +174397,Macbook Pro Laptop,1,1700.0,2019-03-21 13:45:00,476 6th St, San Francisco,CA,94016 +174398,Bose SoundSport Headphones,1,99.99,2019-03-27 10:15:00,331 Ridge St, Boston,MA,02215 +174398,Wired Headphones,1,11.99,2019-03-27 10:15:00,331 Ridge St, Boston,MA,02215 +174399,34in Ultrawide Monitor,1,379.99,2019-03-13 11:56:00,734 Pine St, Austin,TX,73301 +174400,AAA Batteries (4-pack),2,2.99,2019-03-06 15:23:00,623 10th St, Austin,TX,73301 +174401,Bose SoundSport Headphones,1,99.99,2019-03-11 17:49:00,848 Dogwood St, Portland,ME,04101 +174402,Lightning Charging Cable,1,14.95,2019-03-23 06:31:00,365 13th St, New York City,NY,10001 +174403,iPhone,1,700.0,2019-03-23 09:57:00,711 Jefferson St, Boston,MA,02215 +174403,Lightning Charging Cable,1,14.95,2019-03-23 09:57:00,711 Jefferson St, Boston,MA,02215 +174404,Lightning Charging Cable,2,14.95,2019-03-22 19:14:00,48 11th St, Portland,OR,97035 +174404,Wired Headphones,1,11.99,2019-03-22 19:14:00,48 11th St, Portland,OR,97035 +174405,27in 4K Gaming Monitor,1,389.99,2019-03-26 10:58:00,498 Lake St, Boston,MA,02215 +174406,USB-C Charging Cable,3,11.95,2019-03-18 10:35:00,452 Washington St, New York City,NY,10001 +174407,Apple Airpods Headphones,1,150.0,2019-03-19 15:11:00,281 Hill St, Austin,TX,73301 +174408,Lightning Charging Cable,1,14.95,2019-03-27 13:07:00,289 7th St, New York City,NY,10001 +174409,AA Batteries (4-pack),1,3.84,2019-03-05 07:40:00,648 Park St, New York City,NY,10001 +174410,Apple Airpods Headphones,1,150.0,2019-03-15 09:43:00,751 14th St, Atlanta,GA,30301 +174411,Bose SoundSport Headphones,1,99.99,2019-03-17 19:54:00,416 6th St, Boston,MA,02215 +174412,Apple Airpods Headphones,1,150.0,2019-03-03 23:52:00,89 Sunset St, Los Angeles,CA,90001 +174413,USB-C Charging Cable,1,11.95,2019-03-17 17:42:00,553 Johnson St, San Francisco,CA,94016 +174414,Google Phone,1,600.0,2019-03-24 18:09:00,540 River St, Boston,MA,02215 +174415,Apple Airpods Headphones,1,150.0,2019-03-02 00:53:00,326 Adams St, Dallas,TX,75001 +174416,Bose SoundSport Headphones,2,99.99,2019-03-13 19:59:00,4 1st St, New York City,NY,10001 +174417,34in Ultrawide Monitor,1,379.99,2019-03-30 15:15:00,423 Church St, Dallas,TX,75001 +174418,27in FHD Monitor,1,149.99,2019-03-28 14:06:00,717 Cedar St, Seattle,WA,98101 +174419,27in FHD Monitor,1,149.99,2019-03-25 13:08:00,691 12th St, San Francisco,CA,94016 +174420,ThinkPad Laptop,1,999.99,2019-03-30 16:43:00,447 12th St, San Francisco,CA,94016 +174421,AA Batteries (4-pack),1,3.84,2019-03-31 17:24:00,525 Willow St, San Francisco,CA,94016 +174422,Apple Airpods Headphones,1,150.0,2019-03-06 12:15:00,575 11th St, New York City,NY,10001 +174423,Vareebadd Phone,1,400.0,2019-03-14 15:25:00,373 Dogwood St, Dallas,TX,75001 +174423,Wired Headphones,1,11.99,2019-03-14 15:25:00,373 Dogwood St, Dallas,TX,75001 +174424,AAA Batteries (4-pack),3,2.99,2019-03-05 13:22:00,21 Cedar St, Atlanta,GA,30301 +174425,27in FHD Monitor,1,149.99,2019-03-15 13:02:00,291 Spruce St, Los Angeles,CA,90001 +174426,iPhone,1,700.0,2019-03-01 12:40:00,497 Johnson St, Atlanta,GA,30301 +174427,Lightning Charging Cable,1,14.95,2019-03-23 22:14:00,975 Church St, Dallas,TX,75001 +174428,USB-C Charging Cable,1,11.95,2019-03-25 01:37:00,569 Forest St, New York City,NY,10001 +174429,USB-C Charging Cable,1,11.95,2019-03-26 20:16:00,518 2nd St, Los Angeles,CA,90001 +174430,AA Batteries (4-pack),1,3.84,2019-03-05 09:05:00,174 Ridge St, Dallas,TX,75001 +174431,Wired Headphones,1,11.99,2019-03-06 17:25:00,578 Hill St, Seattle,WA,98101 +174432,Bose SoundSport Headphones,1,99.99,2019-03-10 20:29:00,926 Adams St, Boston,MA,02215 +174433,Apple Airpods Headphones,1,150.0,2019-03-01 10:34:00,250 6th St, New York City,NY,10001 +174434,Wired Headphones,1,11.99,2019-03-26 14:39:00,213 Center St, Los Angeles,CA,90001 +174435,Google Phone,1,600.0,2019-03-22 11:50:00,812 Willow St, Austin,TX,73301 +174435,Bose SoundSport Headphones,1,99.99,2019-03-22 11:50:00,812 Willow St, Austin,TX,73301 +174436,Lightning Charging Cable,1,14.95,2019-03-31 17:34:00,814 Chestnut St, New York City,NY,10001 +174437,Wired Headphones,1,11.99,2019-03-27 07:48:00,286 Washington St, Portland,ME,04101 +174438,AAA Batteries (4-pack),1,2.99,2019-03-14 17:22:00,575 Main St, New York City,NY,10001 +174439,USB-C Charging Cable,1,11.95,2019-03-19 19:09:00,4 Lake St, Portland,OR,97035 +174440,27in FHD Monitor,1,149.99,2019-03-04 21:56:00,122 Elm St, Dallas,TX,75001 +174441,AAA Batteries (4-pack),2,2.99,2019-03-10 11:03:00,636 Dogwood St, Seattle,WA,98101 +174442,AAA Batteries (4-pack),2,2.99,2019-03-29 15:08:00,376 13th St, New York City,NY,10001 +174443,iPhone,1,700.0,2019-03-06 17:53:00,230 Wilson St, San Francisco,CA,94016 +174444,27in 4K Gaming Monitor,1,389.99,2019-03-27 18:09:00,983 River St, Los Angeles,CA,90001 +174445,AA Batteries (4-pack),1,3.84,2019-03-31 15:59:00,961 Maple St, Dallas,TX,75001 +174446,Lightning Charging Cable,1,14.95,2019-03-03 09:33:00,941 5th St, Boston,MA,02215 +174447,Wired Headphones,1,11.99,2019-03-26 08:33:00,773 Church St, Seattle,WA,98101 +174448,Bose SoundSport Headphones,1,99.99,2019-03-16 11:24:00,118 7th St, San Francisco,CA,94016 +174449,Flatscreen TV,1,300.0,2019-03-05 21:50:00,603 Jefferson St, San Francisco,CA,94016 +174450,Apple Airpods Headphones,1,150.0,2019-03-14 14:00:00,205 1st St, New York City,NY,10001 +174451,LG Washing Machine,1,600.0,2019-03-02 09:48:00,412 4th St, Austin,TX,73301 +174452,34in Ultrawide Monitor,1,379.99,2019-03-30 20:27:00,517 7th St, San Francisco,CA,94016 +174453,Lightning Charging Cable,1,14.95,2019-03-27 13:34:00,161 4th St, San Francisco,CA,94016 +174454,Wired Headphones,1,11.99,2019-03-24 10:44:00,945 Madison St, Los Angeles,CA,90001 +174455,34in Ultrawide Monitor,1,379.99,2019-03-15 13:39:00,357 4th St, San Francisco,CA,94016 +174456,27in FHD Monitor,1,149.99,2019-03-20 13:13:00,607 Chestnut St, Dallas,TX,75001 +174457,27in FHD Monitor,1,149.99,2019-03-30 02:46:00,473 1st St, Dallas,TX,75001 +174458,27in FHD Monitor,1,149.99,2019-03-11 11:54:00,834 13th St, New York City,NY,10001 +174459,Wired Headphones,1,11.99,2019-03-27 22:07:00,267 Johnson St, New York City,NY,10001 +174460,Bose SoundSport Headphones,1,99.99,2019-03-12 21:08:00,575 Forest St, Seattle,WA,98101 +174461,27in 4K Gaming Monitor,1,389.99,2019-03-21 15:59:00,531 Cedar St, Seattle,WA,98101 +174462,AA Batteries (4-pack),1,3.84,2019-03-29 09:53:00,471 Main St, Dallas,TX,75001 +174463,Lightning Charging Cable,1,14.95,2019-03-15 12:15:00,848 Willow St, Boston,MA,02215 +174464,USB-C Charging Cable,1,11.95,2019-03-14 19:28:00,974 South St, San Francisco,CA,94016 +174465,Apple Airpods Headphones,1,150.0,2019-03-14 16:42:00,300 Center St, New York City,NY,10001 +174466,AAA Batteries (4-pack),2,2.99,2019-03-30 20:56:00,935 Jefferson St, San Francisco,CA,94016 +174467,AA Batteries (4-pack),1,3.84,2019-03-06 18:39:00,793 Walnut St, San Francisco,CA,94016 +174468,AA Batteries (4-pack),1,3.84,2019-03-10 06:00:00,237 Hickory St, New York City,NY,10001 +174469,AAA Batteries (4-pack),1,2.99,2019-03-16 12:56:00,774 2nd St, Seattle,WA,98101 +174470,Lightning Charging Cable,1,14.95,2019-03-14 21:34:00,892 Walnut St, Dallas,TX,75001 +174471,27in 4K Gaming Monitor,1,389.99,2019-03-09 17:22:00,18 North St, San Francisco,CA,94016 +174472,27in 4K Gaming Monitor,1,389.99,2019-03-04 15:50:00,713 Ridge St, Boston,MA,02215 +174473,iPhone,1,700.0,2019-03-09 17:31:00,100 11th St, Austin,TX,73301 +174474,27in FHD Monitor,1,149.99,2019-03-31 13:00:00,462 River St, Atlanta,GA,30301 +174475,AAA Batteries (4-pack),1,2.99,2019-03-12 12:06:00,562 Adams St, Seattle,WA,98101 +174476,Flatscreen TV,1,300.0,2019-03-09 22:16:00,481 7th St, Atlanta,GA,30301 +174477,34in Ultrawide Monitor,1,379.99,2019-03-01 17:31:00,570 Meadow St, San Francisco,CA,94016 +174478,USB-C Charging Cable,1,11.95,2019-03-17 22:17:00,935 Adams St, Los Angeles,CA,90001 +174479,Flatscreen TV,1,300.0,2019-03-22 13:36:00,687 Ridge St, Boston,MA,02215 +174480,Bose SoundSport Headphones,1,99.99,2019-03-31 22:29:00,527 10th St, Los Angeles,CA,90001 +174481,USB-C Charging Cable,1,11.95,2019-03-22 20:08:00,267 Center St, Austin,TX,73301 +174482,Lightning Charging Cable,1,14.95,2019-03-16 09:22:00,109 12th St, Atlanta,GA,30301 +174483,AA Batteries (4-pack),1,3.84,2019-03-12 21:34:00,275 13th St, Seattle,WA,98101 +174484,Bose SoundSport Headphones,1,99.99,2019-03-11 16:28:00,739 Spruce St, Los Angeles,CA,90001 +174485,AAA Batteries (4-pack),4,2.99,2019-03-16 21:09:00,793 Meadow St, New York City,NY,10001 +174486,Apple Airpods Headphones,1,150.0,2019-03-08 10:01:00,460 Forest St, Los Angeles,CA,90001 +174487,27in 4K Gaming Monitor,1,389.99,2019-03-23 23:41:00,94 Hill St, Los Angeles,CA,90001 +174488,Apple Airpods Headphones,1,150.0,2019-03-06 20:37:00,843 12th St, Los Angeles,CA,90001 +174489,Bose SoundSport Headphones,1,99.99,2019-03-06 01:42:00,426 Cedar St, San Francisco,CA,94016 +174490,Wired Headphones,1,11.99,2019-03-21 21:05:00,946 13th St, New York City,NY,10001 +174491,Lightning Charging Cable,1,14.95,2019-03-02 18:30:00,587 Spruce St, San Francisco,CA,94016 +174492,27in FHD Monitor,1,149.99,2019-03-10 17:37:00,493 Sunset St, Boston,MA,02215 +174493,Wired Headphones,1,11.99,2019-03-19 07:55:00,109 Sunset St, New York City,NY,10001 +174494,Bose SoundSport Headphones,1,99.99,2019-03-11 10:58:00,55 14th St, Seattle,WA,98101 +174495,ThinkPad Laptop,1,999.99,2019-03-12 21:22:00,622 Elm St, San Francisco,CA,94016 +174496,Google Phone,1,600.0,2019-03-19 19:33:00,346 Meadow St, San Francisco,CA,94016 +174496,USB-C Charging Cable,1,11.95,2019-03-19 19:33:00,346 Meadow St, San Francisco,CA,94016 +174497,AA Batteries (4-pack),2,3.84,2019-03-01 17:37:00,857 West St, Boston,MA,02215 +174498,Macbook Pro Laptop,1,1700.0,2019-03-25 12:30:00,38 Walnut St, New York City,NY,10001 +174499,27in FHD Monitor,1,149.99,2019-03-19 10:20:00,689 Wilson St, Boston,MA,02215 +174500,USB-C Charging Cable,1,11.95,2019-03-10 20:42:00,757 Cedar St, Boston,MA,02215 +174501,Wired Headphones,1,11.99,2019-03-01 21:45:00,307 Willow St, Seattle,WA,98101 +174502,AAA Batteries (4-pack),2,2.99,2019-03-24 16:27:00,182 Church St, Portland,OR,97035 +174503,AA Batteries (4-pack),1,3.84,2019-03-13 20:48:00,224 Sunset St, Portland,OR,97035 +174504,USB-C Charging Cable,1,11.95,2019-03-23 10:51:00,934 Johnson St, Boston,MA,02215 +174505,Bose SoundSport Headphones,1,99.99,2019-03-05 09:13:00,413 Dogwood St, Los Angeles,CA,90001 +174506,Lightning Charging Cable,1,14.95,2019-03-11 12:27:00,353 Jefferson St, Portland,OR,97035 +174506,20in Monitor,1,109.99,2019-03-11 12:27:00,353 Jefferson St, Portland,OR,97035 +174507,Lightning Charging Cable,1,14.95,2019-03-06 22:20:00,495 Wilson St, Dallas,TX,75001 +174508,USB-C Charging Cable,1,11.95,2019-03-10 22:56:00,789 Washington St, San Francisco,CA,94016 +174509,Wired Headphones,1,11.99,2019-03-30 19:29:00,442 Jefferson St, New York City,NY,10001 +174509,USB-C Charging Cable,1,11.95,2019-03-30 19:29:00,442 Jefferson St, New York City,NY,10001 +174510,Lightning Charging Cable,1,14.95,2019-03-23 21:36:00,655 Pine St, Atlanta,GA,30301 +174511,Apple Airpods Headphones,1,150.0,2019-03-04 11:31:00,63 Lake St, Seattle,WA,98101 +174512,AA Batteries (4-pack),1,3.84,2019-03-12 22:28:00,890 Jackson St, Seattle,WA,98101 +174513,USB-C Charging Cable,1,11.95,2019-03-16 12:53:00,632 North St, New York City,NY,10001 +174514,Lightning Charging Cable,1,14.95,2019-03-05 15:10:00,972 Hill St, San Francisco,CA,94016 +174515,Vareebadd Phone,1,400.0,2019-03-22 10:19:00,829 Sunset St, San Francisco,CA,94016 +174515,USB-C Charging Cable,1,11.95,2019-03-22 10:19:00,829 Sunset St, San Francisco,CA,94016 +174516,iPhone,1,700.0,2019-03-08 10:33:00,647 Hill St, Portland,OR,97035 +174517,Flatscreen TV,1,300.0,2019-03-11 17:11:00,187 Lakeview St, Dallas,TX,75001 +174518,iPhone,1,700.0,2019-03-05 20:43:00,95 Main St, New York City,NY,10001 +174519,Lightning Charging Cable,1,14.95,2019-03-26 15:53:00,575 9th St, Boston,MA,02215 +174520,Wired Headphones,1,11.99,2019-03-23 10:59:00,197 Jackson St, Los Angeles,CA,90001 +174521,27in FHD Monitor,1,149.99,2019-03-04 14:04:00,778 8th St, Boston,MA,02215 +174522,Apple Airpods Headphones,1,150.0,2019-03-14 23:43:00,450 Walnut St, Los Angeles,CA,90001 +174523,Bose SoundSport Headphones,1,99.99,2019-03-29 11:50:00,19 Hill St, San Francisco,CA,94016 +174524,iPhone,1,700.0,2019-03-14 15:24:00,277 River St, Los Angeles,CA,90001 +174525,USB-C Charging Cable,1,11.95,2019-03-05 11:13:00,786 Lakeview St, New York City,NY,10001 +174526,AAA Batteries (4-pack),1,2.99,2019-03-21 13:34:00,920 Jefferson St, San Francisco,CA,94016 +174527,USB-C Charging Cable,1,11.95,2019-03-21 18:26:00,547 Chestnut St, New York City,NY,10001 +174527,27in FHD Monitor,1,149.99,2019-03-21 18:26:00,547 Chestnut St, New York City,NY,10001 +174528,27in FHD Monitor,1,149.99,2019-03-01 16:53:00,985 11th St, New York City,NY,10001 +174529,Lightning Charging Cable,1,14.95,2019-03-18 19:58:00,888 4th St, Los Angeles,CA,90001 +174530,Macbook Pro Laptop,1,1700.0,2019-03-22 00:00:00,428 Lakeview St, Dallas,TX,75001 +174531,Lightning Charging Cable,2,14.95,2019-03-23 17:44:00,481 South St, Dallas,TX,75001 +174531,20in Monitor,1,109.99,2019-03-23 17:44:00,481 South St, Dallas,TX,75001 +174532,Wired Headphones,1,11.99,2019-03-09 20:13:00,501 Chestnut St, Boston,MA,02215 +174533,AAA Batteries (4-pack),1,2.99,2019-03-20 22:25:00,661 Highland St, San Francisco,CA,94016 +174534,Wired Headphones,1,11.99,2019-03-01 09:37:00,526 2nd St, Boston,MA,02215 +174535,AA Batteries (4-pack),1,3.84,2019-03-20 11:39:00,840 9th St, Atlanta,GA,30301 +174536,AA Batteries (4-pack),1,3.84,2019-03-07 21:29:00,455 Lakeview St, New York City,NY,10001 +174537,Apple Airpods Headphones,1,150.0,2019-03-23 11:12:00,520 Forest St, San Francisco,CA,94016 +174538,USB-C Charging Cable,1,11.95,2019-03-13 13:46:00,499 Madison St, Atlanta,GA,30301 +174539,AAA Batteries (4-pack),1,2.99,2019-03-22 22:26:00,109 Spruce St, San Francisco,CA,94016 +174540,34in Ultrawide Monitor,1,379.99,2019-03-07 09:14:00,171 Lake St, Austin,TX,73301 +174541,AA Batteries (4-pack),1,3.84,2019-03-04 15:19:00,567 8th St, Atlanta,GA,30301 +174542,Wired Headphones,1,11.99,2019-03-12 14:31:00,448 Ridge St, Portland,OR,97035 +174543,USB-C Charging Cable,1,11.95,2019-03-01 20:26:00,928 Church St, Boston,MA,02215 +174544,Wired Headphones,1,11.99,2019-03-26 16:15:00,450 Madison St, Austin,TX,73301 +174545,Flatscreen TV,1,300.0,2019-03-09 17:00:00,90 Spruce St, Boston,MA,02215 +174546,Apple Airpods Headphones,1,150.0,2019-03-21 14:37:00,869 Chestnut St, San Francisco,CA,94016 +174547,Apple Airpods Headphones,1,150.0,2019-03-20 16:35:00,599 13th St, New York City,NY,10001 +174548,27in FHD Monitor,1,149.99,2019-03-09 11:27:00,344 Spruce St, Dallas,TX,75001 +174549,27in FHD Monitor,1,149.99,2019-03-21 09:08:00,960 Meadow St, New York City,NY,10001 +174550,Bose SoundSport Headphones,1,99.99,2019-03-11 14:31:00,845 Meadow St, Boston,MA,02215 +174551,Vareebadd Phone,1,400.0,2019-03-19 10:16:00,35 Chestnut St, Portland,OR,97035 +174552,27in 4K Gaming Monitor,1,389.99,2019-03-14 11:05:00,652 Ridge St, Portland,OR,97035 +174553,AA Batteries (4-pack),1,3.84,2019-03-05 01:08:00,323 10th St, Dallas,TX,75001 +174554,Apple Airpods Headphones,1,150.0,2019-03-22 12:10:00,579 5th St, New York City,NY,10001 +174555,Google Phone,1,600.0,2019-03-09 18:57:00,214 Hill St, Seattle,WA,98101 +174555,USB-C Charging Cable,1,11.95,2019-03-09 18:57:00,214 Hill St, Seattle,WA,98101 +174556,Apple Airpods Headphones,1,150.0,2019-03-31 17:50:00,85 10th St, Boston,MA,02215 +174557,Wired Headphones,1,11.99,2019-03-11 16:26:00,838 Lincoln St, Dallas,TX,75001 +174558,Lightning Charging Cable,1,14.95,2019-03-31 14:18:00,641 Church St, San Francisco,CA,94016 +174558,Bose SoundSport Headphones,1,99.99,2019-03-31 14:18:00,641 Church St, San Francisco,CA,94016 +174559,AA Batteries (4-pack),1,3.84,2019-03-23 14:49:00,959 11th St, Los Angeles,CA,90001 +174560,USB-C Charging Cable,2,11.95,2019-03-29 19:36:00,596 Park St, Portland,OR,97035 +174561,20in Monitor,1,109.99,2019-03-31 19:38:00,337 River St, Portland,OR,97035 +174562,Apple Airpods Headphones,1,150.0,2019-03-02 18:09:00,425 Highland St, Portland,OR,97035 +174563,27in FHD Monitor,1,149.99,2019-03-25 13:38:00,628 Jefferson St, Seattle,WA,98101 +174564,Lightning Charging Cable,1,14.95,2019-03-25 14:31:00,748 Maple St, Portland,OR,97035 +174565,27in 4K Gaming Monitor,1,389.99,2019-03-18 18:19:00,736 4th St, Atlanta,GA,30301 +174566,Apple Airpods Headphones,1,150.0,2019-03-08 19:42:00,220 11th St, Los Angeles,CA,90001 +174567,20in Monitor,1,109.99,2019-03-21 09:45:00,664 Hill St, San Francisco,CA,94016 +174568,Apple Airpods Headphones,1,150.0,2019-03-10 10:26:00,647 Highland St, Seattle,WA,98101 +174569,Wired Headphones,1,11.99,2019-03-17 13:00:00,231 9th St, Seattle,WA,98101 +174570,Wired Headphones,1,11.99,2019-03-31 12:44:00,57 Adams St, Atlanta,GA,30301 +174571,AAA Batteries (4-pack),1,2.99,2019-03-31 23:46:00,58 River St, Seattle,WA,98101 +174572,Flatscreen TV,1,300.0,2019-03-09 17:40:00,697 Lake St, New York City,NY,10001 +174573,Apple Airpods Headphones,1,150.0,2019-03-30 12:41:00,52 South St, Boston,MA,02215 +174574,27in 4K Gaming Monitor,1,389.99,2019-03-19 15:57:00,36 Wilson St, Austin,TX,73301 +174575,AA Batteries (4-pack),1,3.84,2019-04-01 03:21:00,969 Adams St, Boston,MA,02215 +174576,AA Batteries (4-pack),1,3.84,2019-03-10 11:24:00,92 Chestnut St, Portland,OR,97035 +174577,AAA Batteries (4-pack),1,2.99,2019-03-27 08:07:00,68 Maple St, Los Angeles,CA,90001 +174578,Macbook Pro Laptop,1,1700.0,2019-03-28 08:06:00,663 Hill St, New York City,NY,10001 +174579,AA Batteries (4-pack),1,3.84,2019-03-27 09:18:00,201 Lincoln St, New York City,NY,10001 +174580,Vareebadd Phone,1,400.0,2019-03-13 21:37:00,35 Spruce St, San Francisco,CA,94016 +174581,20in Monitor,1,109.99,2019-03-14 09:50:00,46 Wilson St, New York City,NY,10001 +174582,Wired Headphones,1,11.99,2019-03-10 22:17:00,28 Walnut St, Los Angeles,CA,90001 +174583,27in FHD Monitor,1,149.99,2019-03-22 00:21:00,925 Pine St, San Francisco,CA,94016 +174584,Wired Headphones,1,11.99,2019-03-10 13:58:00,155 Wilson St, Dallas,TX,75001 +174585,AAA Batteries (4-pack),3,2.99,2019-03-24 13:31:00,423 4th St, San Francisco,CA,94016 +174586,AA Batteries (4-pack),3,3.84,2019-03-26 16:48:00,94 Washington St, Austin,TX,73301 +174587,AA Batteries (4-pack),1,3.84,2019-03-19 07:34:00,497 Lincoln St, San Francisco,CA,94016 +174588,AA Batteries (4-pack),2,3.84,2019-03-10 22:31:00,88 Ridge St, San Francisco,CA,94016 +174589,27in FHD Monitor,1,149.99,2019-03-23 10:25:00,38 Lincoln St, New York City,NY,10001 +174590,Lightning Charging Cable,1,14.95,2019-03-03 16:17:00,885 9th St, Boston,MA,02215 +174591,USB-C Charging Cable,4,11.95,2019-03-27 20:10:00,437 Main St, New York City,NY,10001 +174592,AA Batteries (4-pack),2,3.84,2019-03-09 21:37:00,518 4th St, San Francisco,CA,94016 +174593,Apple Airpods Headphones,1,150.0,2019-03-23 09:34:00,28 12th St, Atlanta,GA,30301 +174594,ThinkPad Laptop,1,999.99,2019-03-25 18:39:00,644 Lakeview St, Boston,MA,02215 +174595,Lightning Charging Cable,2,14.95,2019-03-01 16:22:00,447 Highland St, Dallas,TX,75001 +174596,Lightning Charging Cable,2,14.95,2019-03-26 10:15:00,936 11th St, Seattle,WA,98101 +174597,AA Batteries (4-pack),2,3.84,2019-03-31 13:25:00,403 Main St, San Francisco,CA,94016 +174598,Bose SoundSport Headphones,1,99.99,2019-03-16 13:47:00,40 Sunset St, Los Angeles,CA,90001 +174599,Lightning Charging Cable,1,14.95,2019-03-10 16:45:00,602 West St, Atlanta,GA,30301 +174600,Macbook Pro Laptop,1,1700.0,2019-03-22 12:38:00,697 Sunset St, Portland,ME,04101 +174601,LG Washing Machine,1,600.0,2019-03-08 12:54:00,373 12th St, New York City,NY,10001 +174602,ThinkPad Laptop,1,999.99,2019-03-07 20:50:00,821 North St, Portland,OR,97035 +174603,Google Phone,1,600.0,2019-03-14 14:48:00,514 Main St, Los Angeles,CA,90001 +174604,AAA Batteries (4-pack),2,2.99,2019-03-17 23:08:00,289 14th St, New York City,NY,10001 +174605,Bose SoundSport Headphones,1,99.99,2019-03-28 14:37:00,978 Lincoln St, Boston,MA,02215 +174606,Lightning Charging Cable,1,14.95,2019-03-02 22:52:00,910 9th St, San Francisco,CA,94016 +174607,Bose SoundSport Headphones,1,99.99,2019-03-01 18:52:00,890 14th St, San Francisco,CA,94016 +174608,AA Batteries (4-pack),1,3.84,2019-03-07 04:12:00,537 Jefferson St, Los Angeles,CA,90001 +174609,Macbook Pro Laptop,1,1700.0,2019-03-07 18:26:00,100 Spruce St, Dallas,TX,75001 +174610,Wired Headphones,2,11.99,2019-03-04 16:28:00,18 Lakeview St, Portland,ME,04101 +174611,Lightning Charging Cable,1,14.95,2019-03-06 22:08:00,812 8th St, San Francisco,CA,94016 +174612,Apple Airpods Headphones,1,150.0,2019-03-28 01:11:00,588 5th St, Los Angeles,CA,90001 +174613,USB-C Charging Cable,1,11.95,2019-03-24 20:44:00,341 13th St, Atlanta,GA,30301 +174614,Wired Headphones,1,11.99,2019-03-04 21:24:00,780 Adams St, Los Angeles,CA,90001 +174615,27in FHD Monitor,1,149.99,2019-03-29 11:42:00,130 5th St, New York City,NY,10001 +174616,USB-C Charging Cable,2,11.95,2019-03-22 11:20:00,269 11th St, San Francisco,CA,94016 +174617,AAA Batteries (4-pack),1,2.99,2019-03-26 15:30:00,352 9th St, New York City,NY,10001 +174618,USB-C Charging Cable,1,11.95,2019-03-22 14:05:00,411 6th St, Boston,MA,02215 +174619,Vareebadd Phone,1,400.0,2019-03-05 12:40:00,118 2nd St, Dallas,TX,75001 +174620,Apple Airpods Headphones,1,150.0,2019-03-31 18:13:00,92 7th St, Atlanta,GA,30301 +174621,Wired Headphones,1,11.99,2019-03-13 22:34:00,127 Adams St, San Francisco,CA,94016 +174622,20in Monitor,1,109.99,2019-03-12 15:21:00,18 Maple St, Los Angeles,CA,90001 +174623,Wired Headphones,1,11.99,2019-03-08 19:41:00,229 Highland St, Dallas,TX,75001 +174624,Apple Airpods Headphones,1,150.0,2019-03-12 22:54:00,101 River St, San Francisco,CA,94016 +174625,Lightning Charging Cable,1,14.95,2019-03-18 09:49:00,439 14th St, San Francisco,CA,94016 +174626,AAA Batteries (4-pack),2,2.99,2019-03-23 16:30:00,968 Lake St, Atlanta,GA,30301 +174627,Apple Airpods Headphones,1,150.0,2019-03-20 07:37:00,600 4th St, Seattle,WA,98101 +174628,Lightning Charging Cable,1,14.95,2019-03-03 13:21:00,483 9th St, Los Angeles,CA,90001 +174629,AAA Batteries (4-pack),1,2.99,2019-03-21 19:55:00,508 12th St, Los Angeles,CA,90001 +174630,20in Monitor,1,109.99,2019-03-21 18:06:00,296 Hill St, San Francisco,CA,94016 +174631,AAA Batteries (4-pack),2,2.99,2019-03-12 10:52:00,734 Pine St, Boston,MA,02215 +174632,Lightning Charging Cable,1,14.95,2019-03-10 20:16:00,407 Willow St, Seattle,WA,98101 +174633,Lightning Charging Cable,1,14.95,2019-03-15 16:28:00,376 8th St, Austin,TX,73301 +174634,Google Phone,1,600.0,2019-03-21 15:15:00,688 Ridge St, San Francisco,CA,94016 +174635,Lightning Charging Cable,1,14.95,2019-03-04 07:50:00,91 10th St, New York City,NY,10001 +174636,Lightning Charging Cable,1,14.95,2019-03-22 11:41:00,170 Washington St, San Francisco,CA,94016 +174637,Apple Airpods Headphones,1,150.0,2019-03-06 11:23:00,817 Hickory St, Atlanta,GA,30301 +174638,Macbook Pro Laptop,1,1700.0,2019-03-10 01:07:00,701 Pine St, Atlanta,GA,30301 +174639,Apple Airpods Headphones,1,150.0,2019-03-18 17:58:00,217 Church St, San Francisco,CA,94016 +174640,Lightning Charging Cable,1,14.95,2019-03-06 09:02:00,636 2nd St, San Francisco,CA,94016 +174641,Lightning Charging Cable,1,14.95,2019-03-23 13:51:00,636 Pine St, San Francisco,CA,94016 +174642,Macbook Pro Laptop,1,1700.0,2019-03-30 09:18:00,78 7th St, Portland,OR,97035 +174643,AA Batteries (4-pack),5,3.84,2019-03-03 11:06:00,408 Elm St, Atlanta,GA,30301 +174644,Bose SoundSport Headphones,1,99.99,2019-03-29 18:48:00,702 Main St, Dallas,TX,75001 +174645,AA Batteries (4-pack),1,3.84,2019-03-20 20:46:00,824 5th St, Los Angeles,CA,90001 +174646,Apple Airpods Headphones,1,150.0,2019-03-07 18:31:00,876 14th St, Los Angeles,CA,90001 +174647,AA Batteries (4-pack),1,3.84,2019-03-19 19:59:00,869 North St, Boston,MA,02215 +174648,Bose SoundSport Headphones,1,99.99,2019-03-25 23:00:00,92 10th St, Los Angeles,CA,90001 +174649,Apple Airpods Headphones,1,150.0,2019-03-07 19:56:00,576 Elm St, San Francisco,CA,94016 +174650,Lightning Charging Cable,1,14.95,2019-03-30 07:56:00,52 Madison St, Los Angeles,CA,90001 +174651,Bose SoundSport Headphones,1,99.99,2019-03-28 11:51:00,204 Jackson St, Los Angeles,CA,90001 +174652,Wired Headphones,1,11.99,2019-03-05 16:42:00,65 River St, Boston,MA,02215 +174653,27in 4K Gaming Monitor,1,389.99,2019-03-13 03:36:00,78 4th St, Seattle,WA,98101 +174654,Apple Airpods Headphones,1,150.0,2019-03-11 11:13:00,108 Highland St, Los Angeles,CA,90001 +174655,Bose SoundSport Headphones,1,99.99,2019-03-19 14:23:00,24 Main St, Boston,MA,02215 +174655,USB-C Charging Cable,1,11.95,2019-03-19 14:23:00,24 Main St, Boston,MA,02215 +174656,Wired Headphones,1,11.99,2019-03-11 13:35:00,878 Jefferson St, Los Angeles,CA,90001 +174657,Wired Headphones,2,11.99,2019-03-28 01:22:00,45 Adams St, Los Angeles,CA,90001 +174658,Lightning Charging Cable,1,14.95,2019-03-07 13:20:00,207 2nd St, Boston,MA,02215 +174659,Wired Headphones,3,11.99,2019-03-21 21:50:00,179 Lincoln St, Boston,MA,02215 +174660,Apple Airpods Headphones,1,150.0,2019-03-21 09:21:00,336 10th St, San Francisco,CA,94016 +174661,USB-C Charging Cable,1,11.95,2019-03-10 22:19:00,308 Wilson St, Los Angeles,CA,90001 +174662,iPhone,1,700.0,2019-03-29 08:56:00,517 Ridge St, San Francisco,CA,94016 +174662,Wired Headphones,1,11.99,2019-03-29 08:56:00,517 Ridge St, San Francisco,CA,94016 +174663,AA Batteries (4-pack),1,3.84,2019-03-13 19:02:00,632 Lake St, Boston,MA,02215 +174663,Lightning Charging Cable,1,14.95,2019-03-13 19:02:00,632 Lake St, Boston,MA,02215 +174664,USB-C Charging Cable,1,11.95,2019-03-22 11:18:00,564 Wilson St, Portland,OR,97035 +174665,Bose SoundSport Headphones,1,99.99,2019-03-11 14:40:00,578 Elm St, Dallas,TX,75001 +174666,AAA Batteries (4-pack),1,2.99,2019-03-14 17:46:00,590 11th St, Boston,MA,02215 +174667,Google Phone,1,600.0,2019-03-25 18:02:00,270 Wilson St, Atlanta,GA,30301 +174667,USB-C Charging Cable,1,11.95,2019-03-25 18:02:00,270 Wilson St, Atlanta,GA,30301 +174668,USB-C Charging Cable,1,11.95,2019-03-27 15:56:00,602 Lakeview St, San Francisco,CA,94016 +174669,USB-C Charging Cable,1,11.95,2019-03-22 00:56:00,755 6th St, Atlanta,GA,30301 +174670,Flatscreen TV,1,300.0,2019-03-09 11:42:00,157 Willow St, San Francisco,CA,94016 +174671,Vareebadd Phone,1,400.0,2019-03-27 23:36:00,969 Meadow St, Atlanta,GA,30301 +174672,Lightning Charging Cable,1,14.95,2019-03-13 12:19:00,26 5th St, Boston,MA,02215 +174673,Bose SoundSport Headphones,1,99.99,2019-03-10 07:41:00,4 Meadow St, San Francisco,CA,94016 +174674,AAA Batteries (4-pack),1,2.99,2019-03-29 20:10:00,453 Madison St, San Francisco,CA,94016 +174675,Flatscreen TV,1,300.0,2019-03-22 17:14:00,76 1st St, Seattle,WA,98101 +174676,27in FHD Monitor,1,149.99,2019-03-11 17:50:00,274 4th St, Boston,MA,02215 +174677,Bose SoundSport Headphones,1,99.99,2019-03-04 17:51:00,488 5th St, Los Angeles,CA,90001 +174678,AAA Batteries (4-pack),1,2.99,2019-03-21 13:56:00,596 6th St, Atlanta,GA,30301 +174679,AA Batteries (4-pack),1,3.84,2019-03-10 19:15:00,643 Adams St, Los Angeles,CA,90001 +174680,Flatscreen TV,1,300.0,2019-03-09 09:13:00,840 Hill St, Austin,TX,73301 +174681,iPhone,1,700.0,2019-03-15 20:27:00,652 Hill St, New York City,NY,10001 +174682,Flatscreen TV,1,300.0,2019-03-29 18:52:00,197 7th St, Los Angeles,CA,90001 +174683,Google Phone,1,600.0,2019-03-19 16:16:00,503 Meadow St, Dallas,TX,75001 +174683,Bose SoundSport Headphones,1,99.99,2019-03-19 16:16:00,503 Meadow St, Dallas,TX,75001 +174684,Flatscreen TV,1,300.0,2019-03-02 21:56:00,756 Hill St, Atlanta,GA,30301 +174685,27in 4K Gaming Monitor,1,389.99,2019-03-18 13:21:00,469 5th St, Los Angeles,CA,90001 +174686,AA Batteries (4-pack),1,3.84,2019-03-11 20:40:00,541 Main St, San Francisco,CA,94016 +174687,USB-C Charging Cable,1,11.95,2019-03-09 20:27:00,937 1st St, Atlanta,GA,30301 +174688,AAA Batteries (4-pack),3,2.99,2019-03-17 12:37:00,760 Jefferson St, Dallas,TX,75001 +174689,27in 4K Gaming Monitor,1,389.99,2019-03-16 13:43:00,4 Washington St, Boston,MA,02215 +174690,AA Batteries (4-pack),1,3.84,2019-03-10 22:38:00,834 Sunset St, San Francisco,CA,94016 +174691,Apple Airpods Headphones,1,150.0,2019-03-17 13:22:00,672 Highland St, Seattle,WA,98101 +174692,USB-C Charging Cable,2,11.95,2019-03-25 12:54:00,819 Lincoln St, Los Angeles,CA,90001 +174693,27in FHD Monitor,1,149.99,2019-03-25 10:08:00,605 Wilson St, San Francisco,CA,94016 +174694,34in Ultrawide Monitor,1,379.99,2019-03-11 15:47:00,689 Lincoln St, Austin,TX,73301 +174695,AAA Batteries (4-pack),1,2.99,2019-03-06 17:48:00,429 Cherry St, San Francisco,CA,94016 +174696,Wired Headphones,1,11.99,2019-03-08 14:59:00,583 11th St, Seattle,WA,98101 +174697,Apple Airpods Headphones,1,150.0,2019-03-12 13:37:00,558 Cherry St, San Francisco,CA,94016 +174698,Apple Airpods Headphones,1,150.0,2019-03-11 19:45:00,483 South St, New York City,NY,10001 +174699,Bose SoundSport Headphones,1,99.99,2019-03-14 09:38:00,621 Johnson St, San Francisco,CA,94016 +174700,Lightning Charging Cable,1,14.95,2019-03-11 15:20:00,188 8th St, Dallas,TX,75001 +174701,Macbook Pro Laptop,1,1700.0,2019-03-18 21:52:00,936 Cherry St, San Francisco,CA,94016 +174702,AAA Batteries (4-pack),1,2.99,2019-03-16 13:45:00,416 6th St, Atlanta,GA,30301 +174703,AA Batteries (4-pack),1,3.84,2019-03-15 11:34:00,766 Walnut St, Dallas,TX,75001 +174704,Wired Headphones,1,11.99,2019-03-16 18:08:00,893 2nd St, Boston,MA,02215 +174705,20in Monitor,1,109.99,2019-03-29 12:04:00,235 Jefferson St, Boston,MA,02215 +174706,ThinkPad Laptop,1,999.99,2019-03-31 20:05:00,700 Cherry St, Los Angeles,CA,90001 +174707,Apple Airpods Headphones,1,150.0,2019-03-19 21:13:00,800 Main St, Los Angeles,CA,90001 +174708,34in Ultrawide Monitor,1,379.99,2019-03-28 15:44:00,54 4th St, Boston,MA,02215 +174709,AA Batteries (4-pack),1,3.84,2019-03-06 21:39:00,312 4th St, San Francisco,CA,94016 +174710,Wired Headphones,1,11.99,2019-03-11 16:34:00,660 Lincoln St, Boston,MA,02215 +174710,Lightning Charging Cable,1,14.95,2019-03-11 16:34:00,660 Lincoln St, Boston,MA,02215 +174711,AA Batteries (4-pack),1,3.84,2019-03-05 17:41:00,344 13th St, Los Angeles,CA,90001 +174712,AAA Batteries (4-pack),1,2.99,2019-03-27 20:24:00,127 5th St, Dallas,TX,75001 +174713,AAA Batteries (4-pack),1,2.99,2019-03-06 19:42:00,465 2nd St, San Francisco,CA,94016 +174714,iPhone,1,700.0,2019-03-09 09:20:00,743 Lakeview St, New York City,NY,10001 +174715,Lightning Charging Cable,1,14.95,2019-03-31 22:02:00,877 Chestnut St, Dallas,TX,75001 +174716,Wired Headphones,1,11.99,2019-03-06 12:06:00,539 8th St, San Francisco,CA,94016 +174717,Bose SoundSport Headphones,2,99.99,2019-03-30 12:34:00,868 Park St, Los Angeles,CA,90001 +174718,AAA Batteries (4-pack),1,2.99,2019-03-23 13:40:00,691 West St, Atlanta,GA,30301 +174719,LG Washing Machine,1,600.0,2019-03-14 15:01:00,147 5th St, San Francisco,CA,94016 +174720,USB-C Charging Cable,1,11.95,2019-03-22 19:05:00,467 North St, Austin,TX,73301 +174721,AA Batteries (4-pack),1,3.84,2019-03-27 18:49:00,633 Elm St, Los Angeles,CA,90001 +174722,Bose SoundSport Headphones,1,99.99,2019-03-27 14:23:00,961 Chestnut St, Boston,MA,02215 +174723,USB-C Charging Cable,1,11.95,2019-03-11 02:06:00,727 Church St, New York City,NY,10001 +174724,34in Ultrawide Monitor,1,379.99,2019-03-31 20:04:00,228 Spruce St, Austin,TX,73301 +174725,Apple Airpods Headphones,1,150.0,2019-03-22 10:03:00,940 Cedar St, Dallas,TX,75001 +174726,Wired Headphones,1,11.99,2019-03-23 20:22:00,941 Lakeview St, Atlanta,GA,30301 +174727,AA Batteries (4-pack),2,3.84,2019-03-11 09:01:00,308 Highland St, San Francisco,CA,94016 +174728,AA Batteries (4-pack),1,3.84,2019-03-20 08:41:00,469 Jefferson St, San Francisco,CA,94016 +174729,Wired Headphones,1,11.99,2019-03-01 07:14:00,825 Dogwood St, Dallas,TX,75001 +174730,USB-C Charging Cable,1,11.95,2019-03-01 19:35:00,528 Elm St, San Francisco,CA,94016 +174731,34in Ultrawide Monitor,1,379.99,2019-03-27 12:33:00,431 Chestnut St, San Francisco,CA,94016 +174732,Lightning Charging Cable,1,14.95,2019-03-24 23:42:00,466 Hill St, Austin,TX,73301 +174733,34in Ultrawide Monitor,1,379.99,2019-03-18 23:00:00,576 Hill St, San Francisco,CA,94016 +174734,Bose SoundSport Headphones,1,99.99,2019-03-01 15:31:00,291 1st St, Boston,MA,02215 +174735,USB-C Charging Cable,1,11.95,2019-03-21 17:27:00,728 12th St, Portland,OR,97035 +174736,AAA Batteries (4-pack),4,2.99,2019-03-23 19:10:00,568 Maple St, Seattle,WA,98101 +174737,AA Batteries (4-pack),1,3.84,2019-03-21 16:41:00,780 Pine St, Boston,MA,02215 +174738,Bose SoundSport Headphones,1,99.99,2019-03-30 16:01:00,768 Lincoln St, Atlanta,GA,30301 +174739,AAA Batteries (4-pack),1,2.99,2019-03-12 11:15:00,247 Pine St, Boston,MA,02215 +174740,Wired Headphones,1,11.99,2019-03-12 22:48:00,299 Ridge St, Atlanta,GA,30301 +174741,Apple Airpods Headphones,1,150.0,2019-03-24 17:50:00,314 4th St, San Francisco,CA,94016 +174742,Google Phone,1,600.0,2019-03-14 17:02:00,506 10th St, Seattle,WA,98101 +174742,USB-C Charging Cable,1,11.95,2019-03-14 17:02:00,506 10th St, Seattle,WA,98101 +174743,AAA Batteries (4-pack),1,2.99,2019-03-09 12:41:00,338 Cherry St, Los Angeles,CA,90001 +174744,Bose SoundSport Headphones,1,99.99,2019-03-06 17:52:00,478 Jackson St, Portland,OR,97035 +174745,USB-C Charging Cable,1,11.95,2019-03-18 10:18:00,292 4th St, Los Angeles,CA,90001 +174746,Google Phone,1,600.0,2019-03-08 09:05:00,872 Wilson St, New York City,NY,10001 +174746,USB-C Charging Cable,3,11.95,2019-03-08 09:05:00,872 Wilson St, New York City,NY,10001 +174747,Lightning Charging Cable,1,14.95,2019-03-07 08:09:00,720 Chestnut St, San Francisco,CA,94016 +174748,Apple Airpods Headphones,1,150.0,2019-03-04 20:45:00,471 North St, Austin,TX,73301 +174748,LG Dryer,1,600.0,2019-03-04 20:45:00,471 North St, Austin,TX,73301 +174749,Macbook Pro Laptop,1,1700.0,2019-03-23 18:00:00,51 6th St, San Francisco,CA,94016 +174750,Apple Airpods Headphones,1,150.0,2019-03-08 13:51:00,354 Adams St, San Francisco,CA,94016 +174751,AAA Batteries (4-pack),2,2.99,2019-03-22 08:43:00,861 2nd St, Seattle,WA,98101 +174752,USB-C Charging Cable,1,11.95,2019-03-04 17:48:00,222 Adams St, Los Angeles,CA,90001 +174753,AAA Batteries (4-pack),4,2.99,2019-03-22 23:02:00,647 10th St, Los Angeles,CA,90001 +174754,Google Phone,1,600.0,2019-03-02 18:54:00,124 Sunset St, Austin,TX,73301 +174755,AAA Batteries (4-pack),1,2.99,2019-03-08 09:26:00,138 Park St, Portland,ME,04101 +174756,Lightning Charging Cable,2,14.95,2019-03-15 10:47:00,915 Maple St, Boston,MA,02215 +174757,AAA Batteries (4-pack),1,2.99,2019-03-09 08:53:00,22 Center St, Los Angeles,CA,90001 +174758,iPhone,1,700.0,2019-03-30 11:06:00,55 Chestnut St, New York City,NY,10001 +174759,Apple Airpods Headphones,1,150.0,2019-03-07 09:17:00,741 9th St, San Francisco,CA,94016 +174760,Lightning Charging Cable,1,14.95,2019-03-24 22:44:00,272 Johnson St, San Francisco,CA,94016 +174761,Lightning Charging Cable,1,14.95,2019-03-24 15:37:00,844 1st St, Portland,OR,97035 +174762,Google Phone,1,600.0,2019-03-11 21:14:00,423 Lakeview St, Dallas,TX,75001 +174763,27in 4K Gaming Monitor,1,389.99,2019-03-07 19:37:00,462 Jackson St, San Francisco,CA,94016 +174764,AAA Batteries (4-pack),1,2.99,2019-03-02 22:02:00,847 Forest St, Los Angeles,CA,90001 +174765,ThinkPad Laptop,1,999.99,2019-03-04 13:19:00,9 Church St, San Francisco,CA,94016 +174766,Lightning Charging Cable,2,14.95,2019-03-13 01:49:00,385 1st St, San Francisco,CA,94016 +174767,AAA Batteries (4-pack),1,2.99,2019-03-21 20:27:00,815 Highland St, New York City,NY,10001 +174768,27in 4K Gaming Monitor,1,389.99,2019-03-31 00:11:00,992 North St, Seattle,WA,98101 +174769,AAA Batteries (4-pack),1,2.99,2019-03-22 17:27:00,384 Main St, New York City,NY,10001 +174770,iPhone,1,700.0,2019-03-29 18:47:00,636 Johnson St, San Francisco,CA,94016 +174770,Lightning Charging Cable,1,14.95,2019-03-29 18:47:00,636 Johnson St, San Francisco,CA,94016 +174771,AA Batteries (4-pack),1,3.84,2019-03-02 18:51:00,821 8th St, San Francisco,CA,94016 +174772,Lightning Charging Cable,1,14.95,2019-03-31 14:29:00,206 6th St, Boston,MA,02215 +174773,Bose SoundSport Headphones,1,99.99,2019-03-19 18:17:00,387 9th St, Boston,MA,02215 +174774,Apple Airpods Headphones,1,150.0,2019-03-09 17:46:00,102 Walnut St, Los Angeles,CA,90001 +174775,AAA Batteries (4-pack),1,2.99,2019-03-27 14:12:00,340 Jefferson St, New York City,NY,10001 +174776,Bose SoundSport Headphones,1,99.99,2019-03-11 12:36:00,196 Jackson St, Dallas,TX,75001 +174777,27in FHD Monitor,1,149.99,2019-03-27 18:10:00,915 Maple St, Los Angeles,CA,90001 +174778,34in Ultrawide Monitor,1,379.99,2019-03-12 00:27:00,579 Church St, San Francisco,CA,94016 +174779,USB-C Charging Cable,1,11.95,2019-03-07 16:46:00,645 Center St, Austin,TX,73301 +174780,27in FHD Monitor,1,149.99,2019-03-18 18:39:00,627 7th St, New York City,NY,10001 +174781,Lightning Charging Cable,1,14.95,2019-03-07 20:22:00,613 14th St, Austin,TX,73301 +174782,34in Ultrawide Monitor,1,379.99,2019-03-13 18:50:00,411 Jackson St, Atlanta,GA,30301 +174783,USB-C Charging Cable,1,11.95,2019-03-18 18:47:00,440 7th St, San Francisco,CA,94016 +174784,Apple Airpods Headphones,1,150.0,2019-03-26 16:50:00,988 Cedar St, San Francisco,CA,94016 +174785,USB-C Charging Cable,1,11.95,2019-03-24 19:11:00,467 Wilson St, Dallas,TX,75001 +174786,AAA Batteries (4-pack),1,2.99,2019-03-26 15:00:00,913 6th St, Los Angeles,CA,90001 +174787,AAA Batteries (4-pack),1,2.99,2019-03-28 19:48:00,752 Willow St, San Francisco,CA,94016 +174788,Bose SoundSport Headphones,1,99.99,2019-03-22 08:45:00,457 2nd St, New York City,NY,10001 +174789,Google Phone,1,600.0,2019-03-05 13:18:00,340 1st St, Atlanta,GA,30301 +174790,Wired Headphones,1,11.99,2019-03-25 09:18:00,375 West St, Dallas,TX,75001 +174791,Apple Airpods Headphones,1,150.0,2019-03-17 11:02:00,253 2nd St, New York City,NY,10001 +174792,LG Dryer,1,600.0,2019-03-24 14:34:00,53 9th St, New York City,NY,10001 +174793,USB-C Charging Cable,1,11.95,2019-03-20 16:09:00,911 Lake St, San Francisco,CA,94016 +174794,Lightning Charging Cable,1,14.95,2019-03-23 23:09:00,130 4th St, Atlanta,GA,30301 +174795,USB-C Charging Cable,1,11.95,2019-03-13 10:06:00,342 14th St, Boston,MA,02215 +174796,Apple Airpods Headphones,1,150.0,2019-03-14 12:05:00,359 13th St, San Francisco,CA,94016 +174797,Apple Airpods Headphones,1,150.0,2019-03-07 13:21:00,68 Willow St, Los Angeles,CA,90001 +174798,Google Phone,1,600.0,2019-03-06 08:49:00,317 Hickory St, San Francisco,CA,94016 +174799,ThinkPad Laptop,1,999.99,2019-03-23 15:09:00,422 Chestnut St, Portland,ME,04101 +174800,USB-C Charging Cable,1,11.95,2019-03-18 19:03:00,77 Highland St, Boston,MA,02215 +174801,Vareebadd Phone,1,400.0,2019-03-10 02:28:00,913 River St, San Francisco,CA,94016 +174802,Lightning Charging Cable,1,14.95,2019-03-21 07:52:00,568 Church St, San Francisco,CA,94016 +174803,Wired Headphones,1,11.99,2019-03-07 10:32:00,504 Pine St, San Francisco,CA,94016 +174804,34in Ultrawide Monitor,1,379.99,2019-03-27 09:27:00,872 North St, Atlanta,GA,30301 +174805,Lightning Charging Cable,1,14.95,2019-03-20 15:05:00,566 Sunset St, Boston,MA,02215 +174806,USB-C Charging Cable,2,11.95,2019-03-19 19:50:00,46 Meadow St, Dallas,TX,75001 +174807,Lightning Charging Cable,1,14.95,2019-03-20 14:00:00,428 4th St, Austin,TX,73301 +174808,Lightning Charging Cable,1,14.95,2019-03-30 20:33:00,271 Cedar St, New York City,NY,10001 +174809,AA Batteries (4-pack),2,3.84,2019-03-08 12:09:00,635 14th St, San Francisco,CA,94016 +174810,ThinkPad Laptop,1,999.99,2019-03-10 01:07:00,744 Pine St, New York City,NY,10001 +174811,Bose SoundSport Headphones,1,99.99,2019-03-12 09:28:00,802 Center St, Atlanta,GA,30301 +174812,Apple Airpods Headphones,1,150.0,2019-03-02 15:01:00,821 Hickory St, San Francisco,CA,94016 +174813,AAA Batteries (4-pack),1,2.99,2019-03-29 19:58:00,704 Jackson St, Los Angeles,CA,90001 +174814,Wired Headphones,1,11.99,2019-03-02 20:15:00,735 7th St, San Francisco,CA,94016 +174815,Macbook Pro Laptop,1,1700.0,2019-03-01 15:25:00,397 Elm St, New York City,NY,10001 +174816,AA Batteries (4-pack),5,3.84,2019-03-25 21:15:00,156 Jefferson St, San Francisco,CA,94016 +174817,34in Ultrawide Monitor,1,379.99,2019-03-16 11:07:00,241 Willow St, Portland,OR,97035 +174818,AA Batteries (4-pack),1,3.84,2019-03-26 21:35:00,611 Lake St, Portland,ME,04101 +174819,34in Ultrawide Monitor,1,379.99,2019-03-25 13:13:00,890 Lincoln St, Portland,OR,97035 +174820,USB-C Charging Cable,1,11.95,2019-03-29 19:16:00,181 Madison St, San Francisco,CA,94016 +174821,34in Ultrawide Monitor,1,379.99,2019-03-30 19:54:00,349 8th St, Los Angeles,CA,90001 +174822,Apple Airpods Headphones,1,150.0,2019-03-13 10:27:00,47 9th St, Austin,TX,73301 +174823,AA Batteries (4-pack),1,3.84,2019-03-16 09:39:00,804 5th St, San Francisco,CA,94016 +174824,Bose SoundSport Headphones,1,99.99,2019-03-15 20:51:00,729 11th St, Dallas,TX,75001 +174825,27in FHD Monitor,1,149.99,2019-03-03 15:09:00,665 Sunset St, San Francisco,CA,94016 +174826,Lightning Charging Cable,1,14.95,2019-03-22 17:39:00,633 Washington St, New York City,NY,10001 +174827,Wired Headphones,2,11.99,2019-03-18 05:58:00,928 5th St, New York City,NY,10001 +174828,AAA Batteries (4-pack),1,2.99,2019-03-03 08:40:00,922 North St, Seattle,WA,98101 +174829,27in FHD Monitor,1,149.99,2019-03-31 18:39:00,793 Lakeview St, San Francisco,CA,94016 +174830,Lightning Charging Cable,1,14.95,2019-03-02 18:25:00,456 Johnson St, Boston,MA,02215 +174831,Apple Airpods Headphones,1,150.0,2019-03-15 13:11:00,296 Walnut St, San Francisco,CA,94016 +174832,USB-C Charging Cable,1,11.95,2019-03-26 19:42:00,479 Lakeview St, Boston,MA,02215 +174833,AAA Batteries (4-pack),1,2.99,2019-03-30 10:51:00,648 13th St, Austin,TX,73301 +174834,27in 4K Gaming Monitor,1,389.99,2019-03-17 21:45:00,333 Highland St, Portland,OR,97035 +174835,USB-C Charging Cable,1,11.95,2019-03-19 10:30:00,601 Hickory St, Dallas,TX,75001 +174836,AAA Batteries (4-pack),2,2.99,2019-03-19 21:58:00,409 10th St, Dallas,TX,75001 +174837,Bose SoundSport Headphones,1,99.99,2019-03-10 15:12:00,912 13th St, Los Angeles,CA,90001 +174838,USB-C Charging Cable,2,11.95,2019-03-01 05:52:00,129 7th St, Boston,MA,02215 +174839,Vareebadd Phone,1,400.0,2019-03-10 16:39:00,136 Chestnut St, Boston,MA,02215 +174840,Flatscreen TV,1,300.0,2019-03-22 14:30:00,951 Lake St, Los Angeles,CA,90001 +174841,Wired Headphones,1,11.99,2019-03-01 23:54:00,396 Center St, Los Angeles,CA,90001 +174842,Bose SoundSport Headphones,1,99.99,2019-03-07 08:26:00,258 2nd St, San Francisco,CA,94016 +174843,Wired Headphones,1,11.99,2019-03-10 04:39:00,294 11th St, Los Angeles,CA,90001 +174844,Bose SoundSport Headphones,1,99.99,2019-03-14 13:28:00,788 Center St, Austin,TX,73301 +174845,34in Ultrawide Monitor,1,379.99,2019-03-28 18:58:00,912 West St, Dallas,TX,75001 +174846,Apple Airpods Headphones,1,150.0,2019-03-07 20:12:00,37 Washington St, Boston,MA,02215 +174847,ThinkPad Laptop,1,999.99,2019-03-20 11:06:00,936 Wilson St, Boston,MA,02215 +174848,34in Ultrawide Monitor,1,379.99,2019-03-09 22:42:00,628 Lakeview St, San Francisco,CA,94016 +174849,Flatscreen TV,1,300.0,2019-03-22 17:45:00,870 Johnson St, New York City,NY,10001 +174850,Bose SoundSport Headphones,1,99.99,2019-03-05 21:16:00,337 North St, San Francisco,CA,94016 +174851,AA Batteries (4-pack),1,3.84,2019-03-14 16:51:00,827 4th St, San Francisco,CA,94016 +174852,USB-C Charging Cable,1,11.95,2019-03-28 16:33:00,662 Cedar St, Dallas,TX,75001 +174853,AAA Batteries (4-pack),1,2.99,2019-03-10 22:07:00,464 Washington St, Boston,MA,02215 +174854,AA Batteries (4-pack),1,3.84,2019-03-28 11:02:00,179 Cedar St, Los Angeles,CA,90001 +174855,34in Ultrawide Monitor,1,379.99,2019-03-25 14:37:00,659 Cherry St, Seattle,WA,98101 +174856,Apple Airpods Headphones,1,150.0,2019-03-26 12:11:00,723 Johnson St, Dallas,TX,75001 +174857,27in FHD Monitor,1,149.99,2019-03-29 20:35:00,205 13th St, New York City,NY,10001 +174858,Wired Headphones,1,11.99,2019-03-03 15:25:00,937 South St, Los Angeles,CA,90001 +174859,Lightning Charging Cable,1,14.95,2019-03-13 20:49:00,167 Elm St, San Francisco,CA,94016 +174860,Apple Airpods Headphones,1,150.0,2019-03-09 06:48:00,228 Walnut St, New York City,NY,10001 +174861,Macbook Pro Laptop,1,1700.0,2019-03-07 14:28:00,338 Church St, San Francisco,CA,94016 +174862,Google Phone,1,600.0,2019-03-02 18:02:00,173 13th St, Boston,MA,02215 +174863,Apple Airpods Headphones,1,150.0,2019-03-06 10:46:00,272 7th St, Dallas,TX,75001 +174864,34in Ultrawide Monitor,1,379.99,2019-03-19 08:39:00,329 Johnson St, San Francisco,CA,94016 +174865,AAA Batteries (4-pack),1,2.99,2019-03-26 08:34:00,901 Lakeview St, San Francisco,CA,94016 +174866,AAA Batteries (4-pack),1,2.99,2019-03-29 16:30:00,109 Willow St, Seattle,WA,98101 +174867,AAA Batteries (4-pack),1,2.99,2019-03-04 18:31:00,219 West St, San Francisco,CA,94016 +174868,USB-C Charging Cable,1,11.95,2019-03-27 15:32:00,191 Church St, Los Angeles,CA,90001 +174869,20in Monitor,1,109.99,2019-03-04 19:11:00,240 River St, Austin,TX,73301 +174870,LG Dryer,1,600.0,2019-03-16 00:00:00,310 Sunset St, Seattle,WA,98101 +174871,Flatscreen TV,1,300.0,2019-03-26 17:42:00,151 North St, San Francisco,CA,94016 +174872,ThinkPad Laptop,1,999.99,2019-03-03 12:31:00,235 Lake St, Seattle,WA,98101 +174873,Vareebadd Phone,1,400.0,2019-03-18 13:52:00,685 Maple St, San Francisco,CA,94016 +174873,USB-C Charging Cable,1,11.95,2019-03-18 13:52:00,685 Maple St, San Francisco,CA,94016 +174874,USB-C Charging Cable,2,11.95,2019-03-21 17:23:00,165 5th St, Los Angeles,CA,90001 +174875,AAA Batteries (4-pack),1,2.99,2019-03-10 08:07:00,520 Hill St, New York City,NY,10001 +174876,iPhone,1,700.0,2019-03-12 16:31:00,804 8th St, San Francisco,CA,94016 +174877,Lightning Charging Cable,1,14.95,2019-03-02 15:17:00,188 Spruce St, Los Angeles,CA,90001 +174878,Macbook Pro Laptop,1,1700.0,2019-03-16 20:22:00,849 Church St, Portland,OR,97035 +174879,AA Batteries (4-pack),2,3.84,2019-03-05 09:24:00,684 Highland St, Dallas,TX,75001 +174880,AA Batteries (4-pack),1,3.84,2019-03-04 07:12:00,408 Spruce St, San Francisco,CA,94016 +174881,Bose SoundSport Headphones,1,99.99,2019-03-29 10:03:00,108 Willow St, Los Angeles,CA,90001 +174882,Bose SoundSport Headphones,1,99.99,2019-03-04 09:37:00,924 Adams St, San Francisco,CA,94016 +174883,Apple Airpods Headphones,1,150.0,2019-03-17 21:04:00,236 Elm St, Portland,OR,97035 +174884,USB-C Charging Cable,1,11.95,2019-03-29 06:15:00,528 River St, New York City,NY,10001 +174885,Apple Airpods Headphones,1,150.0,2019-03-04 18:26:00,57 Cherry St, Boston,MA,02215 +174886,USB-C Charging Cable,1,11.95,2019-03-02 15:32:00,6 7th St, Dallas,TX,75001 +174887,AAA Batteries (4-pack),2,2.99,2019-03-31 11:42:00,31 Highland St, Portland,OR,97035 +174888,Wired Headphones,1,11.99,2019-03-02 20:50:00,717 Willow St, Los Angeles,CA,90001 +174889,27in 4K Gaming Monitor,1,389.99,2019-03-18 11:47:00,934 12th St, Seattle,WA,98101 +174890,27in 4K Gaming Monitor,1,389.99,2019-03-10 22:31:00,529 Wilson St, Austin,TX,73301 +174891,Lightning Charging Cable,1,14.95,2019-03-20 09:38:00,730 Willow St, Atlanta,GA,30301 +174892,Macbook Pro Laptop,1,1700.0,2019-03-12 09:06:00,349 Lincoln St, San Francisco,CA,94016 +174893,Apple Airpods Headphones,1,150.0,2019-03-12 13:39:00,769 Dogwood St, Austin,TX,73301 +174894,iPhone,1,700.0,2019-03-30 22:53:00,971 Johnson St, Los Angeles,CA,90001 +174895,Flatscreen TV,1,300.0,2019-03-26 17:56:00,129 River St, Boston,MA,02215 +174896,USB-C Charging Cable,2,11.95,2019-03-09 21:22:00,209 8th St, San Francisco,CA,94016 +174897,USB-C Charging Cable,1,11.95,2019-03-18 12:39:00,231 Washington St, Los Angeles,CA,90001 +174898,27in FHD Monitor,1,149.99,2019-03-10 15:04:00,61 Sunset St, Portland,OR,97035 +174899,Lightning Charging Cable,1,14.95,2019-03-19 13:02:00,729 Chestnut St, San Francisco,CA,94016 +174900,Flatscreen TV,1,300.0,2019-03-22 12:55:00,649 Center St, Boston,MA,02215 +174901,iPhone,1,700.0,2019-03-02 14:41:00,689 12th St, San Francisco,CA,94016 +174902,Apple Airpods Headphones,1,150.0,2019-03-20 19:24:00,972 Spruce St, Los Angeles,CA,90001 +174903,Google Phone,1,600.0,2019-03-12 18:37:00,796 Chestnut St, New York City,NY,10001 +174904,AAA Batteries (4-pack),1,2.99,2019-03-08 14:01:00,280 Ridge St, Los Angeles,CA,90001 +174905,20in Monitor,1,109.99,2019-03-23 01:35:00,792 Chestnut St, Austin,TX,73301 +174906,34in Ultrawide Monitor,1,379.99,2019-03-26 16:07:00,621 Dogwood St, Dallas,TX,75001 +174907,Wired Headphones,1,11.99,2019-03-01 23:12:00,282 Elm St, Dallas,TX,75001 +174908,27in 4K Gaming Monitor,1,389.99,2019-03-19 15:41:00,644 West St, San Francisco,CA,94016 +174909,Apple Airpods Headphones,1,150.0,2019-03-17 08:35:00,140 Elm St, San Francisco,CA,94016 +174910,AAA Batteries (4-pack),1,2.99,2019-03-05 15:03:00,764 14th St, San Francisco,CA,94016 +174911,AAA Batteries (4-pack),1,2.99,2019-03-25 19:31:00,394 Church St, Atlanta,GA,30301 +174912,Wired Headphones,1,11.99,2019-03-15 14:50:00,815 10th St, Los Angeles,CA,90001 +174913,AA Batteries (4-pack),1,3.84,2019-03-25 16:28:00,203 Lakeview St, Los Angeles,CA,90001 +174914,Bose SoundSport Headphones,1,99.99,2019-03-06 19:00:00,145 Ridge St, Dallas,TX,75001 +174915,USB-C Charging Cable,1,11.95,2019-03-05 17:20:00,267 West St, Portland,OR,97035 +174916,USB-C Charging Cable,1,11.95,2019-03-18 20:17:00,31 Lake St, Dallas,TX,75001 +174917,27in FHD Monitor,1,149.99,2019-03-30 12:02:00,531 Main St, New York City,NY,10001 +174918,AA Batteries (4-pack),1,3.84,2019-03-26 21:07:00,940 Johnson St, Seattle,WA,98101 +174919,Wired Headphones,1,11.99,2019-03-01 23:48:00,57 Church St, Los Angeles,CA,90001 +174920,Apple Airpods Headphones,1,150.0,2019-03-13 15:21:00,599 Cherry St, San Francisco,CA,94016 +174921,Apple Airpods Headphones,1,150.0,2019-03-28 13:28:00,325 Elm St, San Francisco,CA,94016 +174922,Bose SoundSport Headphones,1,99.99,2019-03-12 23:50:00,339 1st St, San Francisco,CA,94016 +174923,USB-C Charging Cable,1,11.95,2019-03-11 18:38:00,373 Spruce St, New York City,NY,10001 +174924,AAA Batteries (4-pack),1,2.99,2019-03-17 15:26:00,134 Hickory St, Seattle,WA,98101 +174925,USB-C Charging Cable,1,11.95,2019-03-02 18:18:00,931 West St, Austin,TX,73301 +174926,27in FHD Monitor,1,149.99,2019-03-18 19:56:00,720 West St, Boston,MA,02215 +174927,Bose SoundSport Headphones,1,99.99,2019-03-02 22:11:00,293 Cedar St, San Francisco,CA,94016 +174928,Bose SoundSport Headphones,1,99.99,2019-03-30 14:35:00,568 Main St, San Francisco,CA,94016 +174929,AAA Batteries (4-pack),4,2.99,2019-03-17 17:32:00,70 West St, Atlanta,GA,30301 +174930,iPhone,1,700.0,2019-03-06 10:42:00,237 Adams St, San Francisco,CA,94016 +174930,Lightning Charging Cable,1,14.95,2019-03-06 10:42:00,237 Adams St, San Francisco,CA,94016 +174931,Apple Airpods Headphones,1,150.0,2019-03-02 22:01:00,904 Washington St, Los Angeles,CA,90001 +174932,Google Phone,1,600.0,2019-03-15 19:32:00,10 Lake St, Boston,MA,02215 +174932,Bose SoundSport Headphones,1,99.99,2019-03-15 19:32:00,10 Lake St, Boston,MA,02215 +174933,Wired Headphones,1,11.99,2019-03-16 19:56:00,727 South St, Atlanta,GA,30301 +174933,Lightning Charging Cable,1,14.95,2019-03-16 19:56:00,727 South St, Atlanta,GA,30301 +174934,ThinkPad Laptop,1,999.99,2019-03-08 23:48:00,536 Willow St, Atlanta,GA,30301 +174935,Google Phone,1,600.0,2019-03-10 19:42:00,83 2nd St, San Francisco,CA,94016 +174936,AA Batteries (4-pack),1,3.84,2019-03-18 20:38:00,373 Chestnut St, San Francisco,CA,94016 +174937,iPhone,1,700.0,2019-03-23 00:26:00,284 14th St, Austin,TX,73301 +174938,Lightning Charging Cable,1,14.95,2019-03-13 21:56:00,417 Washington St, Portland,OR,97035 +174939,Flatscreen TV,1,300.0,2019-03-10 15:11:00,822 9th St, Los Angeles,CA,90001 +174940,Bose SoundSport Headphones,1,99.99,2019-03-24 17:02:00,113 Pine St, Boston,MA,02215 +174941,Wired Headphones,1,11.99,2019-03-27 15:43:00,14 West St, Atlanta,GA,30301 +174942,27in FHD Monitor,1,149.99,2019-03-01 18:32:00,219 River St, New York City,NY,10001 +174943,Wired Headphones,1,11.99,2019-03-02 15:06:00,617 Willow St, Boston,MA,02215 +174944,Lightning Charging Cable,1,14.95,2019-03-30 12:02:00,569 Dogwood St, Los Angeles,CA,90001 +174945,27in 4K Gaming Monitor,1,389.99,2019-03-25 17:26:00,543 Highland St, San Francisco,CA,94016 +174946,AA Batteries (4-pack),1,3.84,2019-03-19 20:11:00,304 14th St, Atlanta,GA,30301 +174947,AAA Batteries (4-pack),2,2.99,2019-03-30 21:02:00,534 Cedar St, Dallas,TX,75001 +174948,AA Batteries (4-pack),1,3.84,2019-03-22 20:42:00,766 10th St, Atlanta,GA,30301 +174949,Bose SoundSport Headphones,1,99.99,2019-03-26 14:07:00,360 2nd St, Boston,MA,02215 +174950,27in 4K Gaming Monitor,1,389.99,2019-03-11 20:46:00,476 Meadow St, Los Angeles,CA,90001 +174951,Wired Headphones,1,11.99,2019-03-19 18:13:00,584 14th St, New York City,NY,10001 +174952,34in Ultrawide Monitor,1,379.99,2019-03-10 17:28:00,233 12th St, Austin,TX,73301 +174953,Vareebadd Phone,1,400.0,2019-03-14 20:55:00,394 Church St, Portland,OR,97035 +174954,34in Ultrawide Monitor,1,379.99,2019-03-16 11:36:00,30 Cedar St, Los Angeles,CA,90001 +174955,AAA Batteries (4-pack),1,2.99,2019-03-05 18:54:00,762 Spruce St, San Francisco,CA,94016 +174956,AA Batteries (4-pack),1,3.84,2019-03-02 12:15:00,463 9th St, New York City,NY,10001 +174957,27in FHD Monitor,1,149.99,2019-03-26 10:32:00,562 4th St, Seattle,WA,98101 +174958,Lightning Charging Cable,1,14.95,2019-03-11 08:17:00,778 Park St, Dallas,TX,75001 +174959,Bose SoundSport Headphones,1,99.99,2019-04-01 00:52:00,288 Lincoln St, New York City,NY,10001 +174960,USB-C Charging Cable,1,11.95,2019-03-12 08:52:00,389 9th St, Austin,TX,73301 +174961,Bose SoundSport Headphones,1,99.99,2019-03-29 19:44:00,875 Highland St, Atlanta,GA,30301 +174962,AAA Batteries (4-pack),2,2.99,2019-03-10 16:30:00,630 Walnut St, Dallas,TX,75001 +174963,27in FHD Monitor,1,149.99,2019-03-06 19:08:00,251 Hill St, Los Angeles,CA,90001 +174964,AAA Batteries (4-pack),1,2.99,2019-03-16 10:28:00,45 Elm St, San Francisco,CA,94016 +174965,USB-C Charging Cable,1,11.95,2019-03-14 21:50:00,276 South St, San Francisco,CA,94016 +174966,AA Batteries (4-pack),1,3.84,2019-03-07 15:58:00,3 Maple St, Los Angeles,CA,90001 +174967,USB-C Charging Cable,1,11.95,2019-03-17 22:58:00,2 Adams St, San Francisco,CA,94016 +174968,Apple Airpods Headphones,1,150.0,2019-03-24 14:37:00,474 Willow St, San Francisco,CA,94016 +174969,Apple Airpods Headphones,1,150.0,2019-03-10 12:20:00,719 1st St, Atlanta,GA,30301 +174970,AAA Batteries (4-pack),1,2.99,2019-03-14 16:35:00,6 North St, Los Angeles,CA,90001 +174971,Wired Headphones,1,11.99,2019-03-31 14:25:00,584 11th St, Los Angeles,CA,90001 +174972,USB-C Charging Cable,1,11.95,2019-03-26 23:02:00,389 10th St, New York City,NY,10001 +174973,Wired Headphones,1,11.99,2019-03-16 21:48:00,396 Sunset St, Boston,MA,02215 +174974,AAA Batteries (4-pack),1,2.99,2019-03-20 08:36:00,626 River St, San Francisco,CA,94016 +174975,AAA Batteries (4-pack),2,2.99,2019-03-24 07:19:00,953 Sunset St, Portland,OR,97035 +174976,LG Dryer,1,600.0,2019-03-26 17:53:00,134 Highland St, New York City,NY,10001 +174976,Google Phone,1,600.0,2019-03-26 17:53:00,134 Highland St, New York City,NY,10001 +174977,AAA Batteries (4-pack),1,2.99,2019-03-25 18:09:00,380 Chestnut St, San Francisco,CA,94016 +174978,Lightning Charging Cable,1,14.95,2019-03-30 13:24:00,592 Park St, Los Angeles,CA,90001 +174979,ThinkPad Laptop,1,999.99,2019-03-07 11:12:00,274 Meadow St, New York City,NY,10001 +174980,USB-C Charging Cable,1,11.95,2019-03-09 08:17:00,557 Highland St, Los Angeles,CA,90001 +174981,27in FHD Monitor,1,149.99,2019-03-07 12:04:00,50 Lake St, New York City,NY,10001 +174982,AAA Batteries (4-pack),1,2.99,2019-03-02 11:08:00,149 1st St, Los Angeles,CA,90001 +174983,AAA Batteries (4-pack),1,2.99,2019-03-08 14:21:00,666 Willow St, Dallas,TX,75001 +174984,Bose SoundSport Headphones,1,99.99,2019-03-21 11:55:00,805 Washington St, San Francisco,CA,94016 +174985,AAA Batteries (4-pack),1,2.99,2019-03-29 21:02:00,698 Wilson St, Portland,ME,04101 +174986,AA Batteries (4-pack),1,3.84,2019-03-07 21:20:00,649 River St, Austin,TX,73301 +174987,AAA Batteries (4-pack),1,2.99,2019-03-16 16:39:00,608 6th St, Portland,OR,97035 +174988,AAA Batteries (4-pack),1,2.99,2019-03-06 10:15:00,544 6th St, New York City,NY,10001 +174989,AA Batteries (4-pack),1,3.84,2019-03-15 22:05:00,274 11th St, San Francisco,CA,94016 +174990,Bose SoundSport Headphones,1,99.99,2019-03-26 09:00:00,474 12th St, San Francisco,CA,94016 +174991,AA Batteries (4-pack),1,3.84,2019-03-23 15:41:00,151 2nd St, Dallas,TX,75001 +174992,AAA Batteries (4-pack),1,2.99,2019-03-20 16:33:00,363 Forest St, San Francisco,CA,94016 +174993,Wired Headphones,1,11.99,2019-03-13 10:10:00,217 Ridge St, San Francisco,CA,94016 +174993,Apple Airpods Headphones,1,150.0,2019-03-13 10:10:00,217 Ridge St, San Francisco,CA,94016 +174994,Lightning Charging Cable,1,14.95,2019-03-01 06:59:00,209 13th St, Los Angeles,CA,90001 +174995,Wired Headphones,1,11.99,2019-03-08 23:03:00,200 Willow St, Austin,TX,73301 +174996,AAA Batteries (4-pack),1,2.99,2019-03-16 23:08:00,111 Cherry St, New York City,NY,10001 +174997,USB-C Charging Cable,1,11.95,2019-03-07 13:49:00,77 Highland St, New York City,NY,10001 +174998,27in 4K Gaming Monitor,1,389.99,2019-03-19 22:13:00,99 8th St, San Francisco,CA,94016 +174999,Apple Airpods Headphones,1,150.0,2019-03-28 16:02:00,757 Spruce St, San Francisco,CA,94016 +175000,USB-C Charging Cable,2,11.95,2019-03-03 17:07:00,341 12th St, San Francisco,CA,94016 +175001,ThinkPad Laptop,1,999.99,2019-03-23 18:07:00,928 9th St, San Francisco,CA,94016 +175002,27in 4K Gaming Monitor,1,389.99,2019-03-13 17:45:00,947 6th St, Seattle,WA,98101 +175003,USB-C Charging Cable,1,11.95,2019-03-15 12:31:00,483 Spruce St, San Francisco,CA,94016 +175004,USB-C Charging Cable,1,11.95,2019-03-07 20:22:00,908 Cherry St, Boston,MA,02215 +175005,iPhone,1,700.0,2019-03-10 07:01:00,912 Ridge St, San Francisco,CA,94016 +175006,Wired Headphones,1,11.99,2019-03-29 17:49:00,290 Forest St, Austin,TX,73301 +175007,Apple Airpods Headphones,1,150.0,2019-03-18 16:56:00,835 Washington St, New York City,NY,10001 +175008,27in 4K Gaming Monitor,1,389.99,2019-03-05 18:25:00,218 Johnson St, Dallas,TX,75001 +175008,Lightning Charging Cable,1,14.95,2019-03-05 18:25:00,218 Johnson St, Dallas,TX,75001 +175009,AA Batteries (4-pack),1,3.84,2019-03-30 11:34:00,935 Park St, Los Angeles,CA,90001 +175010,27in FHD Monitor,1,149.99,2019-03-14 04:35:00,326 4th St, Seattle,WA,98101 +175011,Apple Airpods Headphones,1,150.0,2019-03-09 14:13:00,854 2nd St, Los Angeles,CA,90001 +175012,Bose SoundSport Headphones,1,99.99,2019-03-24 10:32:00,38 7th St, Portland,ME,04101 +175013,USB-C Charging Cable,1,11.95,2019-03-03 21:30:00,829 13th St, Portland,ME,04101 +175014,Macbook Pro Laptop,1,1700.0,2019-03-20 13:42:00,424 Jefferson St, New York City,NY,10001 +175015,iPhone,1,700.0,2019-03-12 16:56:00,161 Lake St, San Francisco,CA,94016 +175016,Bose SoundSport Headphones,1,99.99,2019-03-14 11:09:00,717 Dogwood St, Los Angeles,CA,90001 +175017,Macbook Pro Laptop,1,1700.0,2019-03-30 12:50:00,16 Cedar St, San Francisco,CA,94016 +175018,USB-C Charging Cable,1,11.95,2019-03-06 05:34:00,731 Wilson St, Los Angeles,CA,90001 +175019,AA Batteries (4-pack),1,3.84,2019-03-06 01:21:00,91 Church St, New York City,NY,10001 +175020,USB-C Charging Cable,1,11.95,2019-03-31 17:11:00,76 Highland St, San Francisco,CA,94016 +175021,AA Batteries (4-pack),1,3.84,2019-03-14 18:59:00,780 Walnut St, San Francisco,CA,94016 +175022,Macbook Pro Laptop,1,1700.0,2019-03-21 13:09:00,646 North St, Los Angeles,CA,90001 +175023,AA Batteries (4-pack),1,3.84,2019-03-12 09:45:00,809 River St, San Francisco,CA,94016 +175024,Apple Airpods Headphones,1,150.0,2019-03-24 10:30:00,618 10th St, San Francisco,CA,94016 +175025,USB-C Charging Cable,1,11.95,2019-03-08 10:29:00,889 Ridge St, Seattle,WA,98101 +175026,USB-C Charging Cable,1,11.95,2019-03-02 18:47:00,610 Chestnut St, Los Angeles,CA,90001 +175027,USB-C Charging Cable,1,11.95,2019-03-15 15:46:00,599 Forest St, Dallas,TX,75001 +175028,Lightning Charging Cable,1,14.95,2019-03-10 22:00:00,997 River St, Boston,MA,02215 +175029,Wired Headphones,1,11.99,2019-03-19 21:26:00,563 South St, Boston,MA,02215 +175030,Wired Headphones,1,11.99,2019-03-11 10:02:00,830 Cherry St, Los Angeles,CA,90001 +175031,Google Phone,1,600.0,2019-03-10 19:29:00,900 8th St, San Francisco,CA,94016 +175031,Bose SoundSport Headphones,1,99.99,2019-03-10 19:29:00,900 8th St, San Francisco,CA,94016 +175032,Flatscreen TV,1,300.0,2019-03-06 17:58:00,730 Sunset St, Los Angeles,CA,90001 +175033,Wired Headphones,1,11.99,2019-03-25 23:53:00,482 Cedar St, Boston,MA,02215 +175034,Lightning Charging Cable,1,14.95,2019-03-29 22:30:00,773 11th St, Austin,TX,73301 +175035,Lightning Charging Cable,1,14.95,2019-03-23 07:53:00,840 Main St, Austin,TX,73301 +175036,Apple Airpods Headphones,1,150.0,2019-03-13 18:04:00,749 6th St, Boston,MA,02215 +175037,AAA Batteries (4-pack),3,2.99,2019-03-07 18:46:00,616 Church St, Los Angeles,CA,90001 +175038,iPhone,1,700.0,2019-03-15 20:04:00,997 4th St, New York City,NY,10001 +175039,iPhone,1,700.0,2019-03-26 18:19:00,205 West St, Seattle,WA,98101 +175040,AAA Batteries (4-pack),1,2.99,2019-03-28 05:48:00,387 Park St, Seattle,WA,98101 +175041,iPhone,1,700.0,2019-03-27 15:23:00,996 Church St, Atlanta,GA,30301 +175041,Lightning Charging Cable,1,14.95,2019-03-27 15:23:00,996 Church St, Atlanta,GA,30301 +175042,Lightning Charging Cable,1,14.95,2019-03-04 02:22:00,618 Wilson St, San Francisco,CA,94016 +175043,Apple Airpods Headphones,1,150.0,2019-03-01 09:43:00,886 Main St, San Francisco,CA,94016 +175044,Bose SoundSport Headphones,1,99.99,2019-03-28 17:03:00,304 North St, Portland,OR,97035 +175045,USB-C Charging Cable,1,11.95,2019-03-01 03:15:00,233 Jefferson St, New York City,NY,10001 +175046,Lightning Charging Cable,1,14.95,2019-03-26 15:13:00,84 River St, San Francisco,CA,94016 +175047,AAA Batteries (4-pack),2,2.99,2019-03-10 20:55:00,98 Church St, Los Angeles,CA,90001 +175048,27in FHD Monitor,1,149.99,2019-03-18 14:51:00,729 Elm St, New York City,NY,10001 +175049,27in FHD Monitor,1,149.99,2019-03-23 12:14:00,98 Johnson St, Dallas,TX,75001 +175050,Google Phone,1,600.0,2019-03-28 00:42:00,142 9th St, Dallas,TX,75001 +175051,Google Phone,1,600.0,2019-03-11 23:53:00,81 6th St, New York City,NY,10001 +175052,Wired Headphones,1,11.99,2019-03-27 10:38:00,261 Center St, Atlanta,GA,30301 +175053,AAA Batteries (4-pack),3,2.99,2019-03-27 11:14:00,135 Dogwood St, Portland,ME,04101 +175054,Wired Headphones,1,11.99,2019-03-15 00:18:00,805 Jackson St, Dallas,TX,75001 +175055,ThinkPad Laptop,1,999.99,2019-03-08 23:58:00,990 2nd St, Austin,TX,73301 +175056,34in Ultrawide Monitor,1,379.99,2019-03-08 15:17:00,579 Dogwood St, Boston,MA,02215 +175057,Lightning Charging Cable,1,14.95,2019-03-25 13:28:00,421 Walnut St, San Francisco,CA,94016 +175058,Bose SoundSport Headphones,1,99.99,2019-03-03 01:03:00,952 Jefferson St, Boston,MA,02215 +175059,Google Phone,1,600.0,2019-03-18 05:40:00,776 Willow St, Los Angeles,CA,90001 +175060,Bose SoundSport Headphones,1,99.99,2019-03-23 17:09:00,826 Johnson St, Los Angeles,CA,90001 +175061,AAA Batteries (4-pack),1,2.99,2019-03-14 23:21:00,397 6th St, Atlanta,GA,30301 +175062,AA Batteries (4-pack),2,3.84,2019-03-14 13:12:00,632 Hickory St, Los Angeles,CA,90001 +175063,USB-C Charging Cable,1,11.95,2019-03-07 14:24:00,799 River St, San Francisco,CA,94016 +175064,USB-C Charging Cable,1,11.95,2019-03-20 15:54:00,595 Cherry St, San Francisco,CA,94016 +175065,AAA Batteries (4-pack),1,2.99,2019-03-05 17:59:00,911 Dogwood St, Atlanta,GA,30301 +175066,Flatscreen TV,1,300.0,2019-03-04 15:10:00,652 11th St, San Francisco,CA,94016 +175067,Wired Headphones,1,11.99,2019-03-09 13:17:00,348 2nd St, New York City,NY,10001 +175068,Apple Airpods Headphones,1,150.0,2019-03-01 21:02:00,932 Willow St, Seattle,WA,98101 +175069,Google Phone,1,600.0,2019-03-08 15:50:00,565 4th St, Boston,MA,02215 +175070,Bose SoundSport Headphones,1,99.99,2019-03-01 16:47:00,583 Adams St, San Francisco,CA,94016 +175071,Wired Headphones,1,11.99,2019-03-18 15:30:00,74 2nd St, Los Angeles,CA,90001 +175072,Bose SoundSport Headphones,1,99.99,2019-03-13 22:40:00,812 8th St, San Francisco,CA,94016 +175073,27in FHD Monitor,1,149.99,2019-03-05 19:29:00,625 Lake St, Los Angeles,CA,90001 +175074,USB-C Charging Cable,1,11.95,2019-03-28 21:43:00,896 Madison St, San Francisco,CA,94016 +175075,Lightning Charging Cable,1,14.95,2019-03-09 09:27:00,851 Hill St, Seattle,WA,98101 +175076,AA Batteries (4-pack),1,3.84,2019-03-27 19:06:00,338 Sunset St, San Francisco,CA,94016 +175077,Lightning Charging Cable,1,14.95,2019-03-21 14:30:00,573 7th St, Austin,TX,73301 +175078,Lightning Charging Cable,1,14.95,2019-03-24 12:51:00,468 South St, Boston,MA,02215 +175079,27in 4K Gaming Monitor,1,389.99,2019-03-05 16:54:00,430 Willow St, San Francisco,CA,94016 +175080,AAA Batteries (4-pack),1,2.99,2019-03-28 18:34:00,157 Forest St, Los Angeles,CA,90001 +175081,AA Batteries (4-pack),4,3.84,2019-03-29 17:39:00,868 8th St, Portland,ME,04101 +175082,AAA Batteries (4-pack),1,2.99,2019-03-14 13:40:00,549 Main St, Atlanta,GA,30301 +175083,AA Batteries (4-pack),1,3.84,2019-03-20 19:12:00,6 Main St, Los Angeles,CA,90001 +175084,Wired Headphones,1,11.99,2019-03-09 07:51:00,455 5th St, Los Angeles,CA,90001 +175085,Wired Headphones,1,11.99,2019-03-11 12:59:00,640 11th St, Portland,ME,04101 +175086,Lightning Charging Cable,2,14.95,2019-03-07 10:24:00,25 Sunset St, Boston,MA,02215 +175087,Bose SoundSport Headphones,1,99.99,2019-03-14 09:40:00,75 7th St, San Francisco,CA,94016 +175088,Lightning Charging Cable,1,14.95,2019-03-21 10:49:00,925 10th St, Los Angeles,CA,90001 +175089,AA Batteries (4-pack),1,3.84,2019-03-20 23:46:00,413 4th St, Austin,TX,73301 +175090,Bose SoundSport Headphones,1,99.99,2019-03-15 18:21:00,430 Jackson St, Boston,MA,02215 +175091,Apple Airpods Headphones,1,150.0,2019-03-09 19:09:00,143 North St, San Francisco,CA,94016 +175092,USB-C Charging Cable,1,11.95,2019-03-09 01:12:00,844 Sunset St, San Francisco,CA,94016 +175093,AA Batteries (4-pack),2,3.84,2019-03-21 14:30:00,149 7th St, San Francisco,CA,94016 +175094,Lightning Charging Cable,1,14.95,2019-03-21 23:03:00,276 Elm St, Austin,TX,73301 +175095,Google Phone,1,600.0,2019-03-22 13:42:00,301 13th St, San Francisco,CA,94016 +175096,AAA Batteries (4-pack),2,2.99,2019-03-12 21:07:00,510 Jefferson St, New York City,NY,10001 +175097,AAA Batteries (4-pack),2,2.99,2019-03-05 18:36:00,954 14th St, New York City,NY,10001 +175098,20in Monitor,1,109.99,2019-03-03 13:56:00,388 Lake St, Atlanta,GA,30301 +175099,AAA Batteries (4-pack),1,2.99,2019-03-16 13:03:00,61 Cedar St, San Francisco,CA,94016 +175100,Flatscreen TV,1,300.0,2019-03-24 12:37:00,505 14th St, San Francisco,CA,94016 +175101,USB-C Charging Cable,1,11.95,2019-03-13 14:53:00,634 Jefferson St, San Francisco,CA,94016 +175102,USB-C Charging Cable,1,11.95,2019-03-11 19:16:00,68 Sunset St, Atlanta,GA,30301 +175103,AAA Batteries (4-pack),3,2.99,2019-03-08 20:36:00,777 Park St, New York City,NY,10001 +175104,iPhone,1,700.0,2019-03-21 21:27:00,885 Church St, Austin,TX,73301 +175105,Macbook Pro Laptop,1,1700.0,2019-03-03 15:56:00,758 7th St, San Francisco,CA,94016 +175106,AAA Batteries (4-pack),1,2.99,2019-03-30 13:00:00,272 12th St, San Francisco,CA,94016 +175107,Macbook Pro Laptop,1,1700.0,2019-03-01 16:47:00,992 Pine St, Los Angeles,CA,90001 +175108,USB-C Charging Cable,1,11.95,2019-03-19 19:25:00,245 Center St, Boston,MA,02215 +175109,iPhone,1,700.0,2019-03-30 11:13:00,459 11th St, Los Angeles,CA,90001 +175109,Lightning Charging Cable,1,14.95,2019-03-30 11:13:00,459 11th St, Los Angeles,CA,90001 +175110,Apple Airpods Headphones,1,150.0,2019-03-09 22:16:00,160 Washington St, New York City,NY,10001 +175111,Bose SoundSport Headphones,1,99.99,2019-03-20 12:02:00,794 8th St, Dallas,TX,75001 +175112,Google Phone,1,600.0,2019-03-05 09:41:00,621 Adams St, Dallas,TX,75001 +175113,20in Monitor,1,109.99,2019-03-14 12:16:00,669 Jefferson St, San Francisco,CA,94016 +175114,AA Batteries (4-pack),2,3.84,2019-03-18 19:36:00,270 Meadow St, San Francisco,CA,94016 +175115,27in 4K Gaming Monitor,1,389.99,2019-03-13 14:25:00,933 1st St, Portland,OR,97035 +175116,Lightning Charging Cable,1,14.95,2019-03-25 13:02:00,953 Hill St, New York City,NY,10001 +175117,AAA Batteries (4-pack),1,2.99,2019-03-29 20:25:00,161 Cedar St, Los Angeles,CA,90001 +175118,Apple Airpods Headphones,1,150.0,2019-03-22 19:20:00,535 4th St, Los Angeles,CA,90001 +175119,Apple Airpods Headphones,1,150.0,2019-03-24 17:02:00,385 Spruce St, Los Angeles,CA,90001 +175120,Bose SoundSport Headphones,1,99.99,2019-03-22 17:37:00,745 South St, Austin,TX,73301 +175121,Apple Airpods Headphones,1,150.0,2019-03-17 17:08:00,97 12th St, Atlanta,GA,30301 +175122,Macbook Pro Laptop,1,1700.0,2019-03-22 19:31:00,149 13th St, Los Angeles,CA,90001 +175123,Wired Headphones,1,11.99,2019-03-08 10:52:00,328 Washington St, Los Angeles,CA,90001 +175124,Vareebadd Phone,1,400.0,2019-03-01 20:06:00,328 4th St, San Francisco,CA,94016 +175125,Apple Airpods Headphones,1,150.0,2019-03-20 10:43:00,947 2nd St, San Francisco,CA,94016 +175126,Bose SoundSport Headphones,1,99.99,2019-03-02 08:22:00,461 West St, Atlanta,GA,30301 +175127,Lightning Charging Cable,1,14.95,2019-03-07 08:57:00,600 14th St, Boston,MA,02215 +175128,Bose SoundSport Headphones,1,99.99,2019-03-28 14:45:00,956 2nd St, Los Angeles,CA,90001 +175129,Lightning Charging Cable,1,14.95,2019-03-22 16:24:00,212 South St, Los Angeles,CA,90001 +175130,USB-C Charging Cable,1,11.95,2019-03-02 17:29:00,709 5th St, New York City,NY,10001 +175131,Bose SoundSport Headphones,1,99.99,2019-03-27 21:04:00,302 Lakeview St, Atlanta,GA,30301 +175132,20in Monitor,1,109.99,2019-03-24 00:15:00,327 Willow St, Los Angeles,CA,90001 +175133,AA Batteries (4-pack),1,3.84,2019-03-31 19:13:00,484 Ridge St, Boston,MA,02215 +175134,Lightning Charging Cable,1,14.95,2019-03-25 14:10:00,901 Adams St, Los Angeles,CA,90001 +175135,AAA Batteries (4-pack),1,2.99,2019-03-05 22:28:00,587 Hill St, Austin,TX,73301 +175136,27in FHD Monitor,1,149.99,2019-03-07 16:46:00,415 Spruce St, Los Angeles,CA,90001 +175137,Lightning Charging Cable,1,14.95,2019-03-07 14:41:00,651 River St, Seattle,WA,98101 +175138,27in FHD Monitor,1,149.99,2019-03-11 08:37:00,663 Lincoln St, Dallas,TX,75001 +175139,AA Batteries (4-pack),1,3.84,2019-03-14 21:25:00,798 7th St, New York City,NY,10001 +175140,USB-C Charging Cable,1,11.95,2019-03-01 13:14:00,947 Cherry St, Seattle,WA,98101 +175141,Google Phone,1,600.0,2019-03-26 14:58:00,785 West St, Austin,TX,73301 +175142,Lightning Charging Cable,1,14.95,2019-03-22 21:34:00,688 4th St, Atlanta,GA,30301 +175143,Wired Headphones,1,11.99,2019-03-16 01:30:00,104 Lincoln St, San Francisco,CA,94016 +175144,Flatscreen TV,1,300.0,2019-03-13 15:20:00,764 Hickory St, Boston,MA,02215 +175145,20in Monitor,1,109.99,2019-03-24 09:07:00,460 West St, Seattle,WA,98101 +175146,Wired Headphones,1,11.99,2019-03-25 20:07:00,456 Church St, Austin,TX,73301 +175147,Lightning Charging Cable,1,14.95,2019-03-11 20:34:00,925 Maple St, New York City,NY,10001 +175148,AA Batteries (4-pack),1,3.84,2019-03-21 22:36:00,692 Lakeview St, Dallas,TX,75001 +175149,Wired Headphones,1,11.99,2019-03-23 10:07:00,667 8th St, San Francisco,CA,94016 +175150,Google Phone,1,600.0,2019-03-18 18:02:00,179 9th St, Dallas,TX,75001 +175151,27in FHD Monitor,1,149.99,2019-03-02 00:24:00,786 River St, San Francisco,CA,94016 +175152,27in FHD Monitor,1,149.99,2019-03-25 06:05:00,495 Lake St, Los Angeles,CA,90001 +175153,Google Phone,1,600.0,2019-03-28 21:06:00,895 9th St, San Francisco,CA,94016 +175154,AA Batteries (4-pack),1,3.84,2019-03-14 08:34:00,860 Highland St, Los Angeles,CA,90001 +175155,Apple Airpods Headphones,1,150.0,2019-03-09 18:54:00,74 Hickory St, San Francisco,CA,94016 +175156,USB-C Charging Cable,1,11.95,2019-03-31 18:11:00,276 6th St, Austin,TX,73301 +175157,AAA Batteries (4-pack),2,2.99,2019-03-16 15:20:00,664 Willow St, Portland,OR,97035 +175158,AA Batteries (4-pack),2,3.84,2019-03-16 11:19:00,23 Lakeview St, Austin,TX,73301 +175159,Wired Headphones,1,11.99,2019-03-03 10:05:00,900 Main St, Los Angeles,CA,90001 +175160,Google Phone,1,600.0,2019-03-07 17:32:00,826 9th St, Dallas,TX,75001 +175161,Flatscreen TV,1,300.0,2019-03-04 00:38:00,847 Highland St, San Francisco,CA,94016 +175162,USB-C Charging Cable,1,11.95,2019-03-12 21:32:00,613 4th St, San Francisco,CA,94016 +175163,Bose SoundSport Headphones,1,99.99,2019-03-04 09:42:00,466 4th St, New York City,NY,10001 +175164,27in FHD Monitor,1,149.99,2019-03-08 22:10:00,359 Spruce St, Boston,MA,02215 +175165,USB-C Charging Cable,1,11.95,2019-03-15 13:58:00,195 4th St, Dallas,TX,75001 +175166,Bose SoundSport Headphones,1,99.99,2019-03-03 08:46:00,263 8th St, San Francisco,CA,94016 +175167,Google Phone,1,600.0,2019-03-31 11:30:00,475 Dogwood St, Portland,OR,97035 +175168,27in FHD Monitor,1,149.99,2019-03-24 09:30:00,837 Main St, San Francisco,CA,94016 +175169,Apple Airpods Headphones,1,150.0,2019-03-12 11:40:00,183 West St, Portland,ME,04101 +175170,AA Batteries (4-pack),3,3.84,2019-03-02 16:10:00,661 Madison St, San Francisco,CA,94016 +175171,Macbook Pro Laptop,1,1700.0,2019-03-25 13:45:00,737 Jefferson St, Dallas,TX,75001 +175172,ThinkPad Laptop,1,999.99,2019-03-09 01:52:00,718 8th St, Seattle,WA,98101 +175173,27in FHD Monitor,1,149.99,2019-03-16 00:12:00,975 Hickory St, San Francisco,CA,94016 +175174,Bose SoundSport Headphones,1,99.99,2019-03-19 18:50:00,575 Jefferson St, Austin,TX,73301 +175175,Lightning Charging Cable,1,14.95,2019-03-24 13:14:00,452 North St, Seattle,WA,98101 +175176,Bose SoundSport Headphones,1,99.99,2019-03-10 22:10:00,328 Chestnut St, Austin,TX,73301 +175177,AA Batteries (4-pack),1,3.84,2019-03-28 20:27:00,796 2nd St, San Francisco,CA,94016 +175178,USB-C Charging Cable,1,11.95,2019-03-12 07:23:00,116 13th St, San Francisco,CA,94016 +175179,27in FHD Monitor,1,149.99,2019-03-09 14:02:00,273 14th St, San Francisco,CA,94016 +175180,27in FHD Monitor,1,149.99,2019-03-06 17:10:00,979 Washington St, San Francisco,CA,94016 +175181,Wired Headphones,1,11.99,2019-03-11 14:03:00,5 Main St, New York City,NY,10001 +175182,AA Batteries (4-pack),1,3.84,2019-03-10 18:01:00,975 Jackson St, San Francisco,CA,94016 +175183,Lightning Charging Cable,1,14.95,2019-03-18 12:41:00,133 Chestnut St, Boston,MA,02215 +175184,Flatscreen TV,1,300.0,2019-03-10 20:16:00,640 Wilson St, Boston,MA,02215 +175185,34in Ultrawide Monitor,1,379.99,2019-03-27 20:14:00,596 1st St, Boston,MA,02215 +175186,Lightning Charging Cable,1,14.95,2019-03-17 11:01:00,978 14th St, New York City,NY,10001 +175187,AAA Batteries (4-pack),2,2.99,2019-03-01 14:57:00,522 Main St, New York City,NY,10001 +175188,Wired Headphones,1,11.99,2019-03-23 22:14:00,606 Chestnut St, Los Angeles,CA,90001 +175188,AAA Batteries (4-pack),1,2.99,2019-03-23 22:14:00,606 Chestnut St, Los Angeles,CA,90001 +175189,iPhone,1,700.0,2019-03-15 11:50:00,727 13th St, Seattle,WA,98101 +175190,USB-C Charging Cable,1,11.95,2019-03-07 17:13:00,316 13th St, Portland,OR,97035 +175191,34in Ultrawide Monitor,1,379.99,2019-03-03 10:25:00,625 7th St, Portland,OR,97035 +175192,AAA Batteries (4-pack),1,2.99,2019-03-12 09:27:00,802 Wilson St, New York City,NY,10001 +175193,27in FHD Monitor,1,149.99,2019-03-20 08:50:00,469 Forest St, San Francisco,CA,94016 +175194,AA Batteries (4-pack),1,3.84,2019-03-18 15:55:00,849 Park St, Seattle,WA,98101 +175195,AAA Batteries (4-pack),2,2.99,2019-03-07 10:18:00,126 10th St, Boston,MA,02215 +175196,Macbook Pro Laptop,1,1700.0,2019-03-17 15:30:00,644 10th St, Dallas,TX,75001 +175197,AAA Batteries (4-pack),1,2.99,2019-03-27 08:56:00,168 North St, Portland,OR,97035 +175198,USB-C Charging Cable,1,11.95,2019-03-06 13:15:00,206 Johnson St, San Francisco,CA,94016 +175199,Lightning Charging Cable,1,14.95,2019-03-27 19:22:00,185 Pine St, New York City,NY,10001 +175200,Apple Airpods Headphones,1,150.0,2019-03-23 12:06:00,594 Park St, Los Angeles,CA,90001 +175201,Macbook Pro Laptop,1,1700.0,2019-03-29 13:58:00,75 Chestnut St, Boston,MA,02215 +175202,Lightning Charging Cable,1,14.95,2019-03-01 07:10:00,217 North St, Portland,OR,97035 +175203,Lightning Charging Cable,2,14.95,2019-03-29 15:09:00,567 Cedar St, Austin,TX,73301 +175204,Apple Airpods Headphones,1,150.0,2019-03-19 06:36:00,67 12th St, Los Angeles,CA,90001 +175205,Lightning Charging Cable,1,14.95,2019-03-19 18:43:00,699 Willow St, New York City,NY,10001 +175206,USB-C Charging Cable,1,11.95,2019-03-15 11:03:00,749 Chestnut St, Boston,MA,02215 +175207,Lightning Charging Cable,1,14.95,2019-03-20 15:49:00,593 Cedar St, Seattle,WA,98101 +175208,AAA Batteries (4-pack),2,2.99,2019-03-15 13:16:00,956 Center St, New York City,NY,10001 +175209,27in 4K Gaming Monitor,1,389.99,2019-03-24 15:08:00,250 Center St, Seattle,WA,98101 +175210,Bose SoundSport Headphones,1,99.99,2019-03-19 10:40:00,187 Main St, Los Angeles,CA,90001 +175211,Flatscreen TV,1,300.0,2019-03-09 15:27:00,91 14th St, Atlanta,GA,30301 +175212,AA Batteries (4-pack),2,3.84,2019-03-14 21:46:00,498 Highland St, Dallas,TX,75001 +175213,AA Batteries (4-pack),1,3.84,2019-03-23 13:57:00,263 9th St, San Francisco,CA,94016 +175214,27in FHD Monitor,1,149.99,2019-03-08 22:45:00,202 Maple St, Atlanta,GA,30301 +175215,AAA Batteries (4-pack),3,2.99,2019-03-08 18:43:00,158 4th St, Los Angeles,CA,90001 +175216,Apple Airpods Headphones,1,150.0,2019-03-28 04:52:00,910 Cedar St, Dallas,TX,75001 +175217,Google Phone,1,600.0,2019-03-25 10:45:00,870 Lake St, Los Angeles,CA,90001 +175217,USB-C Charging Cable,1,11.95,2019-03-25 10:45:00,870 Lake St, Los Angeles,CA,90001 +175218,Lightning Charging Cable,1,14.95,2019-03-17 11:31:00,908 Madison St, San Francisco,CA,94016 +175219,USB-C Charging Cable,2,11.95,2019-03-21 10:35:00,907 South St, New York City,NY,10001 +175220,Wired Headphones,1,11.99,2019-03-03 09:46:00,854 Jefferson St, Dallas,TX,75001 +175221,Bose SoundSport Headphones,1,99.99,2019-03-04 01:07:00,7 Hill St, San Francisco,CA,94016 +175222,Vareebadd Phone,1,400.0,2019-03-23 06:44:00,916 Forest St, San Francisco,CA,94016 +175223,AA Batteries (4-pack),1,3.84,2019-03-20 12:45:00,208 Park St, Los Angeles,CA,90001 +175224,USB-C Charging Cable,1,11.95,2019-03-31 12:57:00,372 West St, New York City,NY,10001 +175225,AAA Batteries (4-pack),1,2.99,2019-03-26 20:50:00,507 5th St, Seattle,WA,98101 +175226,AAA Batteries (4-pack),1,2.99,2019-03-01 13:44:00,696 6th St, Atlanta,GA,30301 +175227,27in FHD Monitor,1,149.99,2019-03-19 02:39:00,99 West St, Dallas,TX,75001 +175228,AA Batteries (4-pack),1,3.84,2019-03-15 21:36:00,868 River St, Los Angeles,CA,90001 +175229,Apple Airpods Headphones,1,150.0,2019-03-02 07:00:00,271 North St, Atlanta,GA,30301 +175230,Wired Headphones,1,11.99,2019-03-09 22:28:00,594 Cherry St, San Francisco,CA,94016 +175231,AA Batteries (4-pack),1,3.84,2019-03-01 18:18:00,893 4th St, Boston,MA,02215 +175232,iPhone,1,700.0,2019-03-28 22:49:00,572 Johnson St, Seattle,WA,98101 +175233,Wired Headphones,1,11.99,2019-03-12 14:55:00,481 Adams St, Atlanta,GA,30301 +175234,Apple Airpods Headphones,1,150.0,2019-03-29 11:28:00,573 Pine St, Seattle,WA,98101 +175235,AA Batteries (4-pack),1,3.84,2019-03-01 11:32:00,634 Adams St, Boston,MA,02215 +175236,Apple Airpods Headphones,1,150.0,2019-03-11 15:33:00,998 Jefferson St, Boston,MA,02215 +175237,AA Batteries (4-pack),1,3.84,2019-03-31 18:38:00,732 Lake St, New York City,NY,10001 +175238,USB-C Charging Cable,1,11.95,2019-03-15 09:31:00,243 Lakeview St, San Francisco,CA,94016 +175239,Lightning Charging Cable,1,14.95,2019-03-10 13:04:00,646 Washington St, Austin,TX,73301 +175240,USB-C Charging Cable,1,11.95,2019-03-15 16:02:00,208 Sunset St, Los Angeles,CA,90001 +175241,Lightning Charging Cable,1,14.95,2019-03-01 12:48:00,762 Highland St, Los Angeles,CA,90001 +175242,USB-C Charging Cable,1,11.95,2019-03-12 10:20:00,560 Main St, San Francisco,CA,94016 +175243,Google Phone,1,600.0,2019-03-17 19:22:00,601 Washington St, Boston,MA,02215 +175244,Wired Headphones,1,11.99,2019-03-29 13:22:00,37 Ridge St, Dallas,TX,75001 +175245,34in Ultrawide Monitor,1,379.99,2019-03-12 19:25:00,907 Forest St, Portland,OR,97035 +175246,AAA Batteries (4-pack),1,2.99,2019-03-17 09:09:00,391 Maple St, Atlanta,GA,30301 +175247,Bose SoundSport Headphones,1,99.99,2019-03-07 12:16:00,626 5th St, Dallas,TX,75001 +175248,AA Batteries (4-pack),3,3.84,2019-03-06 10:20:00,605 Madison St, Atlanta,GA,30301 +175249,Macbook Pro Laptop,1,1700.0,2019-03-15 13:10:00,554 13th St, San Francisco,CA,94016 +175250,USB-C Charging Cable,1,11.95,2019-03-01 15:57:00,599 Lakeview St, San Francisco,CA,94016 +175251,Bose SoundSport Headphones,1,99.99,2019-03-05 12:38:00,962 Ridge St, New York City,NY,10001 +175252,USB-C Charging Cable,2,11.95,2019-03-10 09:57:00,491 Meadow St, Dallas,TX,75001 +175253,27in FHD Monitor,1,149.99,2019-03-26 14:15:00,271 Meadow St, San Francisco,CA,94016 +175254,AA Batteries (4-pack),3,3.84,2019-03-08 13:14:00,827 Washington St, San Francisco,CA,94016 +175255,27in 4K Gaming Monitor,1,389.99,2019-03-02 06:56:00,859 West St, Boston,MA,02215 +175256,USB-C Charging Cable,1,11.95,2019-03-04 05:14:00,763 10th St, Los Angeles,CA,90001 +175257,Bose SoundSport Headphones,1,99.99,2019-03-04 21:10:00,687 Jefferson St, Boston,MA,02215 +175258,Apple Airpods Headphones,1,150.0,2019-03-01 07:01:00,786 4th St, Boston,MA,02215 +175259,Lightning Charging Cable,1,14.95,2019-03-28 13:28:00,90 14th St, San Francisco,CA,94016 +175260,Macbook Pro Laptop,1,1700.0,2019-03-12 11:10:00,65 Cherry St, San Francisco,CA,94016 +175261,Lightning Charging Cable,1,14.95,2019-03-20 11:36:00,153 Dogwood St, Los Angeles,CA,90001 +175262,Bose SoundSport Headphones,1,99.99,2019-03-19 20:41:00,187 Hill St, Los Angeles,CA,90001 +175263,ThinkPad Laptop,1,999.99,2019-03-28 21:21:00,602 River St, San Francisco,CA,94016 +175264,Apple Airpods Headphones,1,150.0,2019-03-23 12:11:00,230 Lakeview St, Los Angeles,CA,90001 +175265,Wired Headphones,1,11.99,2019-03-20 23:24:00,29 Ridge St, New York City,NY,10001 +175266,Bose SoundSport Headphones,1,99.99,2019-03-10 16:24:00,759 2nd St, New York City,NY,10001 +175267,iPhone,1,700.0,2019-03-05 14:45:00,254 Hickory St, Atlanta,GA,30301 +175267,Wired Headphones,1,11.99,2019-03-05 14:45:00,254 Hickory St, Atlanta,GA,30301 +175268,USB-C Charging Cable,1,11.95,2019-03-27 01:42:00,114 Willow St, San Francisco,CA,94016 +175269,Bose SoundSport Headphones,1,99.99,2019-03-03 17:57:00,66 Cherry St, Boston,MA,02215 +175270,Lightning Charging Cable,1,14.95,2019-03-15 13:28:00,348 Highland St, Los Angeles,CA,90001 +175271,Wired Headphones,1,11.99,2019-03-30 14:54:00,107 Forest St, Portland,OR,97035 +175272,USB-C Charging Cable,1,11.95,2019-03-13 12:29:00,570 Madison St, Los Angeles,CA,90001 +175273,USB-C Charging Cable,2,11.95,2019-03-01 19:56:00,893 Washington St, Seattle,WA,98101 +175274,ThinkPad Laptop,1,999.99,2019-03-05 21:58:00,634 8th St, Seattle,WA,98101 +175275,34in Ultrawide Monitor,1,379.99,2019-03-07 10:27:00,933 Chestnut St, Boston,MA,02215 +175276,USB-C Charging Cable,1,11.95,2019-03-15 14:43:00,819 Highland St, Los Angeles,CA,90001 +175277,Macbook Pro Laptop,1,1700.0,2019-03-15 22:04:00,629 Forest St, Seattle,WA,98101 +175278,Apple Airpods Headphones,1,150.0,2019-03-08 16:48:00,808 Hill St, Dallas,TX,75001 +175279,27in 4K Gaming Monitor,1,389.99,2019-03-12 18:08:00,65 Church St, New York City,NY,10001 +175280,USB-C Charging Cable,1,11.95,2019-03-26 23:37:00,961 Church St, Boston,MA,02215 +175281,LG Dryer,1,600.0,2019-03-23 12:11:00,312 Madison St, Portland,OR,97035 +175282,Apple Airpods Headphones,1,150.0,2019-03-16 22:22:00,629 8th St, Los Angeles,CA,90001 +175283,Wired Headphones,1,11.99,2019-03-03 12:14:00,4 Lakeview St, San Francisco,CA,94016 +175284,AA Batteries (4-pack),1,3.84,2019-03-29 15:47:00,798 12th St, San Francisco,CA,94016 +175285,AAA Batteries (4-pack),1,2.99,2019-03-03 22:28:00,761 Center St, San Francisco,CA,94016 +175286,iPhone,1,700.0,2019-03-26 23:16:00,987 Madison St, San Francisco,CA,94016 +175286,Lightning Charging Cable,1,14.95,2019-03-26 23:16:00,987 Madison St, San Francisco,CA,94016 +175287,Bose SoundSport Headphones,1,99.99,2019-03-14 06:44:00,967 Center St, Boston,MA,02215 +175288,USB-C Charging Cable,1,11.95,2019-03-15 10:17:00,780 9th St, Atlanta,GA,30301 +175289,ThinkPad Laptop,1,999.99,2019-03-19 12:53:00,698 Cedar St, Portland,OR,97035 +175290,AA Batteries (4-pack),1,3.84,2019-03-15 19:38:00,548 2nd St, Seattle,WA,98101 +175291,USB-C Charging Cable,1,11.95,2019-03-10 20:01:00,581 Lakeview St, Los Angeles,CA,90001 +175292,AA Batteries (4-pack),1,3.84,2019-03-08 11:55:00,988 Johnson St, Austin,TX,73301 +175293,20in Monitor,1,109.99,2019-03-03 09:44:00,510 Church St, Seattle,WA,98101 +175294,27in FHD Monitor,1,149.99,2019-03-29 21:44:00,920 11th St, San Francisco,CA,94016 +175295,AA Batteries (4-pack),1,3.84,2019-03-04 18:50:00,701 13th St, New York City,NY,10001 +175296,AAA Batteries (4-pack),1,2.99,2019-03-23 20:56:00,323 4th St, Dallas,TX,75001 +175297,Apple Airpods Headphones,1,150.0,2019-03-17 19:40:00,830 Adams St, Atlanta,GA,30301 +175298,Lightning Charging Cable,1,14.95,2019-03-16 11:09:00,7 Chestnut St, San Francisco,CA,94016 +175299,USB-C Charging Cable,2,11.95,2019-03-25 23:39:00,375 Lincoln St, Dallas,TX,75001 +175299,AAA Batteries (4-pack),2,2.99,2019-03-25 23:39:00,375 Lincoln St, Dallas,TX,75001 +175300,Apple Airpods Headphones,1,150.0,2019-03-20 09:06:00,94 11th St, Los Angeles,CA,90001 +175301,Lightning Charging Cable,1,14.95,2019-03-13 19:22:00,397 Johnson St, New York City,NY,10001 +175302,27in 4K Gaming Monitor,1,389.99,2019-03-15 23:18:00,249 Maple St, Seattle,WA,98101 +175303,ThinkPad Laptop,1,999.99,2019-03-13 14:22:00,957 Lincoln St, New York City,NY,10001 +175304,20in Monitor,1,109.99,2019-03-18 22:09:00,720 Cherry St, Atlanta,GA,30301 +175305,Wired Headphones,1,11.99,2019-03-26 22:00:00,413 1st St, Los Angeles,CA,90001 +175306,Wired Headphones,1,11.99,2019-03-02 15:20:00,585 Center St, Atlanta,GA,30301 +175307,Flatscreen TV,1,300.0,2019-03-15 15:41:00,361 Lake St, New York City,NY,10001 +175308,Lightning Charging Cable,1,14.95,2019-03-30 20:16:00,138 Forest St, Portland,OR,97035 +175309,Wired Headphones,1,11.99,2019-03-07 14:13:00,621 2nd St, Atlanta,GA,30301 +175310,AAA Batteries (4-pack),1,2.99,2019-03-29 16:19:00,891 11th St, San Francisco,CA,94016 +175311,Google Phone,1,600.0,2019-03-01 22:18:00,233 5th St, Dallas,TX,75001 +175312,Bose SoundSport Headphones,1,99.99,2019-03-24 17:36:00,664 Jackson St, Austin,TX,73301 +175313,Bose SoundSport Headphones,1,99.99,2019-03-27 18:19:00,446 10th St, San Francisco,CA,94016 +175314,USB-C Charging Cable,1,11.95,2019-03-01 09:56:00,142 Sunset St, Atlanta,GA,30301 +175315,Wired Headphones,1,11.99,2019-03-12 11:49:00,973 Hickory St, Los Angeles,CA,90001 +175316,AAA Batteries (4-pack),1,2.99,2019-03-26 11:37:00,475 Ridge St, San Francisco,CA,94016 +175317,Wired Headphones,1,11.99,2019-03-16 17:05:00,858 Jefferson St, Boston,MA,02215 +175318,USB-C Charging Cable,1,11.95,2019-03-03 19:23:00,52 6th St, San Francisco,CA,94016 +175319,AA Batteries (4-pack),2,3.84,2019-03-16 23:20:00,323 South St, Los Angeles,CA,90001 +175320,Wired Headphones,1,11.99,2019-03-16 09:50:00,547 Willow St, Boston,MA,02215 +175321,Bose SoundSport Headphones,1,99.99,2019-03-28 22:30:00,429 Madison St, San Francisco,CA,94016 +175322,USB-C Charging Cable,1,11.95,2019-03-03 19:27:00,11 2nd St, Los Angeles,CA,90001 +175323,Wired Headphones,1,11.99,2019-03-26 17:25:00,643 Highland St, Austin,TX,73301 +175324,AAA Batteries (4-pack),2,2.99,2019-03-01 19:33:00,819 River St, Los Angeles,CA,90001 +175325,Wired Headphones,1,11.99,2019-03-13 12:00:00,919 Cherry St, Boston,MA,02215 +175326,AA Batteries (4-pack),1,3.84,2019-03-31 13:58:00,14 Maple St, Seattle,WA,98101 +175327,Bose SoundSport Headphones,1,99.99,2019-03-05 20:52:00,574 Main St, San Francisco,CA,94016 +175328,34in Ultrawide Monitor,1,379.99,2019-03-28 15:22:00,318 South St, Los Angeles,CA,90001 +175329,Bose SoundSport Headphones,1,99.99,2019-03-04 11:48:00,305 7th St, San Francisco,CA,94016 +175330,AA Batteries (4-pack),1,3.84,2019-03-29 10:13:00,789 Jackson St, San Francisco,CA,94016 +175331,USB-C Charging Cable,1,11.95,2019-03-31 07:46:00,158 Washington St, Atlanta,GA,30301 +175332,iPhone,1,700.0,2019-03-21 20:40:00,622 Wilson St, San Francisco,CA,94016 +175332,Lightning Charging Cable,2,14.95,2019-03-21 20:40:00,622 Wilson St, San Francisco,CA,94016 +175333,34in Ultrawide Monitor,1,379.99,2019-03-05 18:53:00,761 Highland St, Austin,TX,73301 +175334,Bose SoundSport Headphones,1,99.99,2019-03-19 13:38:00,208 Washington St, Seattle,WA,98101 +175335,ThinkPad Laptop,1,999.99,2019-03-11 06:55:00,279 Forest St, Los Angeles,CA,90001 +175336,Wired Headphones,1,11.99,2019-03-16 17:48:00,268 South St, Dallas,TX,75001 +175337,Google Phone,1,600.0,2019-03-06 15:58:00,236 5th St, New York City,NY,10001 +175338,AAA Batteries (4-pack),3,2.99,2019-03-20 21:18:00,615 10th St, Boston,MA,02215 +175339,Macbook Pro Laptop,1,1700.0,2019-03-29 01:17:00,332 Willow St, San Francisco,CA,94016 +175340,AA Batteries (4-pack),1,3.84,2019-03-16 04:47:00,211 Highland St, Dallas,TX,75001 +175341,Google Phone,1,600.0,2019-03-28 19:24:00,843 Jefferson St, Austin,TX,73301 +175342,Bose SoundSport Headphones,1,99.99,2019-03-05 01:01:00,304 Walnut St, Seattle,WA,98101 +175343,USB-C Charging Cable,1,11.95,2019-03-10 14:49:00,342 Hill St, Seattle,WA,98101 +175344,34in Ultrawide Monitor,1,379.99,2019-03-13 13:32:00,936 Lake St, Atlanta,GA,30301 +175345,27in FHD Monitor,1,149.99,2019-03-19 12:26:00,452 Hickory St, Portland,OR,97035 +175346,AAA Batteries (4-pack),2,2.99,2019-03-30 18:46:00,709 Elm St, Portland,ME,04101 +175347,Bose SoundSport Headphones,1,99.99,2019-03-04 11:08:00,998 Willow St, Dallas,TX,75001 +175348,Bose SoundSport Headphones,1,99.99,2019-03-30 12:56:00,348 Spruce St, San Francisco,CA,94016 +175349,Apple Airpods Headphones,1,150.0,2019-03-25 18:17:00,123 6th St, New York City,NY,10001 +175350,Apple Airpods Headphones,1,150.0,2019-03-06 09:15:00,103 Washington St, Atlanta,GA,30301 +175351,AA Batteries (4-pack),1,3.84,2019-03-23 16:43:00,791 Jackson St, Boston,MA,02215 +175352,Bose SoundSport Headphones,1,99.99,2019-03-03 16:39:00,224 Washington St, Austin,TX,73301 +175353,Lightning Charging Cable,1,14.95,2019-03-24 15:35:00,868 Park St, San Francisco,CA,94016 +175354,ThinkPad Laptop,1,999.99,2019-03-02 17:31:00,410 1st St, San Francisco,CA,94016 +175355,Wired Headphones,1,11.99,2019-03-30 17:05:00,738 Sunset St, New York City,NY,10001 +175356,iPhone,1,700.0,2019-03-22 13:41:00,117 Sunset St, Atlanta,GA,30301 +175357,AA Batteries (4-pack),1,3.84,2019-03-10 12:03:00,680 Jefferson St, Los Angeles,CA,90001 +175358,Bose SoundSport Headphones,1,99.99,2019-03-09 11:19:00,715 14th St, Boston,MA,02215 +175359,AA Batteries (4-pack),1,3.84,2019-03-23 11:07:00,93 Pine St, Boston,MA,02215 +175360,Google Phone,1,600.0,2019-03-23 21:12:00,72 Lake St, Boston,MA,02215 +175361,Bose SoundSport Headphones,1,99.99,2019-03-24 01:52:00,36 7th St, Los Angeles,CA,90001 +175362,AA Batteries (4-pack),1,3.84,2019-03-23 16:18:00,144 4th St, Boston,MA,02215 +175363,Bose SoundSport Headphones,1,99.99,2019-03-20 23:28:00,708 14th St, Atlanta,GA,30301 +175364,AAA Batteries (4-pack),3,2.99,2019-03-17 14:51:00,636 Church St, Seattle,WA,98101 +175365,Apple Airpods Headphones,1,150.0,2019-03-30 13:47:00,280 Wilson St, Atlanta,GA,30301 +175366,AA Batteries (4-pack),1,3.84,2019-03-13 16:36:00,354 Church St, Los Angeles,CA,90001 +175366,Macbook Pro Laptop,1,1700.0,2019-03-13 16:36:00,354 Church St, Los Angeles,CA,90001 +175367,Lightning Charging Cable,1,14.95,2019-03-28 16:36:00,199 Chestnut St, Los Angeles,CA,90001 +175367,AAA Batteries (4-pack),1,2.99,2019-03-28 16:36:00,199 Chestnut St, Los Angeles,CA,90001 +175368,Bose SoundSport Headphones,1,99.99,2019-03-18 09:00:00,105 Wilson St, Portland,ME,04101 +175369,AA Batteries (4-pack),1,3.84,2019-03-10 21:55:00,86 Cherry St, Austin,TX,73301 +175370,Lightning Charging Cable,1,14.95,2019-03-15 20:25:00,134 Lakeview St, Atlanta,GA,30301 +175371,Lightning Charging Cable,1,14.95,2019-03-18 10:37:00,493 12th St, Los Angeles,CA,90001 +175372,Wired Headphones,1,11.99,2019-03-17 09:45:00,975 Dogwood St, San Francisco,CA,94016 +175373,27in FHD Monitor,1,149.99,2019-03-16 16:40:00,340 Center St, Los Angeles,CA,90001 +175374,USB-C Charging Cable,1,11.95,2019-03-27 07:44:00,427 9th St, Boston,MA,02215 +175375,AAA Batteries (4-pack),2,2.99,2019-03-28 12:22:00,768 Johnson St, San Francisco,CA,94016 +175376,Bose SoundSport Headphones,1,99.99,2019-03-26 17:02:00,448 Elm St, San Francisco,CA,94016 +175377,iPhone,1,700.0,2019-03-29 13:11:00,853 5th St, Dallas,TX,75001 +175378,27in 4K Gaming Monitor,1,389.99,2019-03-02 18:35:00,748 Adams St, Los Angeles,CA,90001 +175379,USB-C Charging Cable,1,11.95,2019-03-16 14:42:00,445 Lakeview St, Seattle,WA,98101 +175380,Google Phone,1,600.0,2019-03-27 19:15:00,318 River St, Portland,OR,97035 +175381,Wired Headphones,1,11.99,2019-03-05 16:39:00,719 Pine St, San Francisco,CA,94016 +175382,Lightning Charging Cable,1,14.95,2019-03-28 15:38:00,987 1st St, San Francisco,CA,94016 +175383,USB-C Charging Cable,1,11.95,2019-03-26 13:17:00,731 12th St, San Francisco,CA,94016 +175384,USB-C Charging Cable,1,11.95,2019-03-07 18:25:00,938 Lake St, Austin,TX,73301 +175385,USB-C Charging Cable,1,11.95,2019-03-11 10:54:00,161 Hickory St, Seattle,WA,98101 +175386,Lightning Charging Cable,1,14.95,2019-03-29 11:13:00,32 Lakeview St, Austin,TX,73301 +175387,AA Batteries (4-pack),1,3.84,2019-03-08 16:19:00,308 Maple St, Dallas,TX,75001 +175388,Wired Headphones,1,11.99,2019-03-13 15:47:00,601 Pine St, Los Angeles,CA,90001 +175389,34in Ultrawide Monitor,1,379.99,2019-03-30 11:21:00,315 Elm St, San Francisco,CA,94016 +175390,Bose SoundSport Headphones,1,99.99,2019-03-18 23:44:00,170 Jackson St, San Francisco,CA,94016 +175391,AA Batteries (4-pack),1,3.84,2019-03-23 13:40:00,144 Hickory St, Dallas,TX,75001 +175392,34in Ultrawide Monitor,1,379.99,2019-03-11 11:42:00,187 Church St, Atlanta,GA,30301 +175393,USB-C Charging Cable,1,11.95,2019-03-12 14:46:00,486 11th St, Boston,MA,02215 +175394,Google Phone,1,600.0,2019-03-07 18:48:00,674 Wilson St, Boston,MA,02215 +175395,Vareebadd Phone,1,400.0,2019-03-16 14:09:00,761 Willow St, San Francisco,CA,94016 +175396,Apple Airpods Headphones,1,150.0,2019-03-18 10:07:00,708 Hickory St, New York City,NY,10001 +175397,Apple Airpods Headphones,1,150.0,2019-03-02 20:19:00,313 Spruce St, San Francisco,CA,94016 +175398,USB-C Charging Cable,1,11.95,2019-03-18 08:39:00,481 1st St, Portland,ME,04101 +175399,Macbook Pro Laptop,1,1700.0,2019-03-31 08:36:00,605 2nd St, Dallas,TX,75001 +175400,USB-C Charging Cable,2,11.95,2019-03-13 14:20:00,192 Lake St, Austin,TX,73301 +175401,20in Monitor,2,109.99,2019-03-05 11:15:00,214 West St, Los Angeles,CA,90001 +175402,USB-C Charging Cable,1,11.95,2019-03-01 16:11:00,901 Dogwood St, Atlanta,GA,30301 +175403,Apple Airpods Headphones,1,150.0,2019-03-15 15:58:00,694 4th St, New York City,NY,10001 +175404,Flatscreen TV,1,300.0,2019-03-24 19:42:00,195 Spruce St, Los Angeles,CA,90001 +175405,Flatscreen TV,1,300.0,2019-03-04 20:05:00,726 Elm St, San Francisco,CA,94016 +175406,AA Batteries (4-pack),1,3.84,2019-03-28 12:17:00,675 8th St, San Francisco,CA,94016 +175407,Google Phone,1,600.0,2019-03-16 10:58:00,104 2nd St, New York City,NY,10001 +175407,USB-C Charging Cable,1,11.95,2019-03-16 10:58:00,104 2nd St, New York City,NY,10001 +175407,Bose SoundSport Headphones,1,99.99,2019-03-16 10:58:00,104 2nd St, New York City,NY,10001 +175408,20in Monitor,1,109.99,2019-03-07 14:20:00,371 6th St, Los Angeles,CA,90001 +175409,USB-C Charging Cable,1,11.95,2019-03-10 19:40:00,992 North St, Atlanta,GA,30301 +175410,ThinkPad Laptop,1,999.99,2019-03-19 21:12:00,776 Jefferson St, New York City,NY,10001 +175411,34in Ultrawide Monitor,1,379.99,2019-03-27 19:30:00,713 Dogwood St, Los Angeles,CA,90001 +175412,Wired Headphones,1,11.99,2019-03-14 08:14:00,476 9th St, San Francisco,CA,94016 +175413,AA Batteries (4-pack),1,3.84,2019-03-14 14:37:00,529 7th St, Boston,MA,02215 +175414,Lightning Charging Cable,1,14.95,2019-03-24 17:38:00,313 Walnut St, Atlanta,GA,30301 +175415,Bose SoundSport Headphones,1,99.99,2019-03-09 11:27:00,768 Park St, New York City,NY,10001 +175416,AA Batteries (4-pack),1,3.84,2019-03-31 19:14:00,946 2nd St, Boston,MA,02215 +175417,Wired Headphones,1,11.99,2019-03-22 16:37:00,158 Lincoln St, Los Angeles,CA,90001 +175418,Lightning Charging Cable,1,14.95,2019-03-12 15:15:00,27 Washington St, San Francisco,CA,94016 +175419,Macbook Pro Laptop,1,1700.0,2019-03-09 14:06:00,343 Lakeview St, New York City,NY,10001 +175420,AAA Batteries (4-pack),1,2.99,2019-03-09 12:22:00,587 Elm St, San Francisco,CA,94016 +175421,Lightning Charging Cable,2,14.95,2019-03-24 09:34:00,612 5th St, New York City,NY,10001 +175422,AA Batteries (4-pack),1,3.84,2019-03-02 14:18:00,238 Cherry St, San Francisco,CA,94016 +175423,AAA Batteries (4-pack),1,2.99,2019-03-11 13:45:00,240 2nd St, Boston,MA,02215 +175424,USB-C Charging Cable,1,11.95,2019-03-07 22:20:00,420 Washington St, Los Angeles,CA,90001 +175425,iPhone,1,700.0,2019-03-25 16:19:00,568 5th St, Los Angeles,CA,90001 +175426,AA Batteries (4-pack),1,3.84,2019-03-02 07:43:00,8 13th St, Dallas,TX,75001 +175427,USB-C Charging Cable,1,11.95,2019-03-10 15:20:00,351 10th St, Austin,TX,73301 +175428,ThinkPad Laptop,1,999.99,2019-03-27 15:34:00,28 Walnut St, Boston,MA,02215 +175429,AAA Batteries (4-pack),1,2.99,2019-03-16 19:00:00,724 Hill St, San Francisco,CA,94016 +175430,AAA Batteries (4-pack),1,2.99,2019-03-06 13:01:00,114 Meadow St, San Francisco,CA,94016 +175431,USB-C Charging Cable,1,11.95,2019-03-16 04:54:00,55 Maple St, Seattle,WA,98101 +175432,USB-C Charging Cable,1,11.95,2019-03-12 22:20:00,9 Wilson St, Dallas,TX,75001 +175433,Apple Airpods Headphones,1,150.0,2019-03-28 11:04:00,87 Cherry St, Boston,MA,02215 +175434,USB-C Charging Cable,1,11.95,2019-03-11 11:53:00,404 Church St, Boston,MA,02215 +175435,27in 4K Gaming Monitor,1,389.99,2019-03-18 17:14:00,678 Highland St, Dallas,TX,75001 +175436,Wired Headphones,1,11.99,2019-03-07 13:41:00,691 Willow St, Boston,MA,02215 +175437,Lightning Charging Cable,1,14.95,2019-03-01 08:50:00,861 Meadow St, Seattle,WA,98101 +175438,Lightning Charging Cable,1,14.95,2019-03-17 11:30:00,546 Highland St, Atlanta,GA,30301 +175439,AAA Batteries (4-pack),1,2.99,2019-03-14 08:46:00,784 Walnut St, Los Angeles,CA,90001 +175440,34in Ultrawide Monitor,2,379.99,2019-03-24 13:19:00,300 2nd St, Atlanta,GA,30301 +175441,AA Batteries (4-pack),1,3.84,2019-03-23 15:24:00,830 Main St, Los Angeles,CA,90001 +175442,Apple Airpods Headphones,1,150.0,2019-03-26 14:19:00,767 Adams St, New York City,NY,10001 +175443,Wired Headphones,1,11.99,2019-03-28 15:01:00,409 6th St, Boston,MA,02215 +175444,27in 4K Gaming Monitor,1,389.99,2019-03-03 12:48:00,518 Cherry St, Atlanta,GA,30301 +175445,20in Monitor,1,109.99,2019-03-15 19:05:00,949 Elm St, Dallas,TX,75001 +175446,USB-C Charging Cable,1,11.95,2019-03-09 19:28:00,422 Park St, Boston,MA,02215 +175447,Macbook Pro Laptop,1,1700.0,2019-03-25 07:00:00,325 Center St, San Francisco,CA,94016 +175448,USB-C Charging Cable,1,11.95,2019-03-06 16:45:00,381 14th St, Dallas,TX,75001 +175449,Bose SoundSport Headphones,1,99.99,2019-03-01 13:54:00,629 Walnut St, Boston,MA,02215 +175450,AAA Batteries (4-pack),2,2.99,2019-03-29 20:32:00,96 Meadow St, Los Angeles,CA,90001 +175451,USB-C Charging Cable,1,11.95,2019-03-01 17:17:00,688 10th St, Dallas,TX,75001 +175452,Lightning Charging Cable,1,14.95,2019-03-21 00:16:00,995 Cedar St, Portland,OR,97035 +175453,Bose SoundSport Headphones,1,99.99,2019-03-09 16:18:00,227 11th St, Portland,ME,04101 +175454,AAA Batteries (4-pack),1,2.99,2019-03-11 23:49:00,223 Main St, Boston,MA,02215 +175455,Wired Headphones,1,11.99,2019-03-15 11:33:00,764 7th St, San Francisco,CA,94016 +175456,Wired Headphones,1,11.99,2019-03-13 15:04:00,398 Dogwood St, Los Angeles,CA,90001 +175457,Bose SoundSport Headphones,1,99.99,2019-03-30 12:28:00,262 Madison St, Los Angeles,CA,90001 +175458,Wired Headphones,1,11.99,2019-03-05 10:27:00,596 Dogwood St, Los Angeles,CA,90001 +175459,20in Monitor,1,109.99,2019-03-10 10:36:00,496 Park St, New York City,NY,10001 +175460,Wired Headphones,1,11.99,2019-03-09 21:44:00,772 Park St, Los Angeles,CA,90001 +175461,Wired Headphones,1,11.99,2019-03-22 08:48:00,67 13th St, San Francisco,CA,94016 +175462,20in Monitor,1,109.99,2019-03-19 17:08:00,542 West St, San Francisco,CA,94016 +175463,Bose SoundSport Headphones,1,99.99,2019-03-27 18:23:00,208 South St, San Francisco,CA,94016 +175464,USB-C Charging Cable,1,11.95,2019-03-25 16:40:00,292 1st St, New York City,NY,10001 +175465,27in FHD Monitor,1,149.99,2019-03-12 07:47:00,924 14th St, Los Angeles,CA,90001 +175466,AA Batteries (4-pack),2,3.84,2019-03-15 14:55:00,691 River St, San Francisco,CA,94016 +175467,34in Ultrawide Monitor,1,379.99,2019-03-03 11:45:00,130 14th St, Los Angeles,CA,90001 +175468,Apple Airpods Headphones,1,150.0,2019-03-05 09:34:00,154 Cherry St, San Francisco,CA,94016 +175469,AAA Batteries (4-pack),2,2.99,2019-03-05 09:32:00,374 Church St, Boston,MA,02215 +175470,Wired Headphones,1,11.99,2019-03-11 18:02:00,279 14th St, Atlanta,GA,30301 +175471,Google Phone,1,600.0,2019-03-29 21:31:00,104 Spruce St, San Francisco,CA,94016 +175472,27in 4K Gaming Monitor,1,389.99,2019-03-11 19:48:00,696 Madison St, Seattle,WA,98101 +175473,USB-C Charging Cable,1,11.95,2019-03-06 13:15:00,321 Johnson St, Boston,MA,02215 +175474,iPhone,1,700.0,2019-03-19 22:20:00,585 10th St, Boston,MA,02215 +175475,AAA Batteries (4-pack),2,2.99,2019-03-30 20:55:00,971 14th St, Los Angeles,CA,90001 +175476,AAA Batteries (4-pack),1,2.99,2019-03-19 14:08:00,325 Chestnut St, Portland,OR,97035 +175477,Lightning Charging Cable,2,14.95,2019-03-16 08:10:00,444 Maple St, New York City,NY,10001 +175478,Bose SoundSport Headphones,1,99.99,2019-03-13 12:09:00,752 8th St, San Francisco,CA,94016 +175479,Lightning Charging Cable,1,14.95,2019-03-22 18:31:00,951 Jackson St, San Francisco,CA,94016 +175480,27in FHD Monitor,1,149.99,2019-03-03 17:18:00,842 9th St, Portland,ME,04101 +175481,Flatscreen TV,1,300.0,2019-03-20 15:03:00,90 Cherry St, New York City,NY,10001 +175482,Vareebadd Phone,1,400.0,2019-03-16 12:39:00,223 Hill St, New York City,NY,10001 +175483,Flatscreen TV,1,300.0,2019-03-04 10:11:00,284 Ridge St, Los Angeles,CA,90001 +175484,Bose SoundSport Headphones,1,99.99,2019-03-08 02:52:00,464 2nd St, Atlanta,GA,30301 +175485,ThinkPad Laptop,1,999.99,2019-03-23 13:59:00,258 Highland St, Portland,OR,97035 +175486,AAA Batteries (4-pack),1,2.99,2019-03-01 07:56:00,195 12th St, Los Angeles,CA,90001 +175487,Lightning Charging Cable,1,14.95,2019-03-31 10:58:00,229 South St, San Francisco,CA,94016 +175488,Wired Headphones,1,11.99,2019-03-17 19:33:00,528 2nd St, Los Angeles,CA,90001 +175489,Wired Headphones,1,11.99,2019-03-30 11:50:00,663 8th St, San Francisco,CA,94016 +175490,Apple Airpods Headphones,1,150.0,2019-03-31 16:31:00,97 North St, Austin,TX,73301 +175491,Wired Headphones,1,11.99,2019-03-21 13:32:00,1 13th St, San Francisco,CA,94016 +175492,Apple Airpods Headphones,1,150.0,2019-03-03 11:33:00,804 Madison St, Portland,OR,97035 +175493,27in 4K Gaming Monitor,1,389.99,2019-03-24 19:46:00,703 Johnson St, Los Angeles,CA,90001 +175494,Lightning Charging Cable,1,14.95,2019-03-24 21:22:00,955 Elm St, Dallas,TX,75001 +175495,Bose SoundSport Headphones,1,99.99,2019-03-24 21:28:00,780 10th St, San Francisco,CA,94016 +175496,iPhone,1,700.0,2019-03-12 12:36:00,370 10th St, Los Angeles,CA,90001 +175497,Bose SoundSport Headphones,1,99.99,2019-03-25 19:10:00,117 Hill St, New York City,NY,10001 +175498,Wired Headphones,1,11.99,2019-03-11 07:24:00,241 Chestnut St, Atlanta,GA,30301 +175499,iPhone,1,700.0,2019-03-10 09:50:00,775 Center St, San Francisco,CA,94016 +175500,Wired Headphones,1,11.99,2019-03-01 17:54:00,804 Elm St, Boston,MA,02215 +175501,AAA Batteries (4-pack),1,2.99,2019-03-08 01:08:00,717 Cherry St, San Francisco,CA,94016 +175502,USB-C Charging Cable,1,11.95,2019-03-08 18:43:00,91 Dogwood St, Dallas,TX,75001 +175503,20in Monitor,1,109.99,2019-03-02 15:14:00,615 Church St, San Francisco,CA,94016 +175504,USB-C Charging Cable,2,11.95,2019-03-04 16:58:00,189 Chestnut St, San Francisco,CA,94016 +175505,Lightning Charging Cable,1,14.95,2019-03-18 11:26:00,787 Cedar St, San Francisco,CA,94016 +175506,Macbook Pro Laptop,1,1700.0,2019-03-12 11:44:00,15 Highland St, San Francisco,CA,94016 +175507,Vareebadd Phone,1,400.0,2019-03-25 17:32:00,971 Dogwood St, New York City,NY,10001 +175507,USB-C Charging Cable,1,11.95,2019-03-25 17:32:00,971 Dogwood St, New York City,NY,10001 +175508,Macbook Pro Laptop,1,1700.0,2019-03-27 16:34:00,309 Sunset St, San Francisco,CA,94016 +175509,Bose SoundSport Headphones,1,99.99,2019-03-17 20:30:00,74 Cherry St, Atlanta,GA,30301 +175510,Wired Headphones,2,11.99,2019-03-28 18:16:00,197 4th St, Boston,MA,02215 +175511,AAA Batteries (4-pack),1,2.99,2019-03-23 08:49:00,43 Jefferson St, Portland,OR,97035 +175511,USB-C Charging Cable,1,11.95,2019-03-23 08:49:00,43 Jefferson St, Portland,OR,97035 +175512,USB-C Charging Cable,1,11.95,2019-03-20 17:17:00,213 Park St, Los Angeles,CA,90001 +175513,Flatscreen TV,1,300.0,2019-03-15 19:57:00,325 12th St, Dallas,TX,75001 +175514,Lightning Charging Cable,1,14.95,2019-03-11 12:55:00,624 Hill St, Los Angeles,CA,90001 +175515,Lightning Charging Cable,1,14.95,2019-03-18 22:42:00,357 Forest St, San Francisco,CA,94016 +175516,Bose SoundSport Headphones,1,99.99,2019-03-13 17:47:00,333 Hill St, Dallas,TX,75001 +175517,iPhone,1,700.0,2019-03-24 19:51:00,222 12th St, San Francisco,CA,94016 +175518,AAA Batteries (4-pack),1,2.99,2019-03-03 19:39:00,193 4th St, Seattle,WA,98101 +175519,AA Batteries (4-pack),1,3.84,2019-03-02 17:07:00,737 River St, Dallas,TX,75001 +175520,AA Batteries (4-pack),1,3.84,2019-03-30 09:24:00,314 Hill St, Dallas,TX,75001 +175521,27in 4K Gaming Monitor,1,389.99,2019-03-24 21:09:00,42 Pine St, Boston,MA,02215 +175522,Flatscreen TV,1,300.0,2019-03-05 11:11:00,312 Maple St, San Francisco,CA,94016 +175523,27in FHD Monitor,1,149.99,2019-03-09 16:57:00,176 Dogwood St, Los Angeles,CA,90001 +175524,Apple Airpods Headphones,1,150.0,2019-03-02 10:57:00,763 Elm St, Los Angeles,CA,90001 +175525,AA Batteries (4-pack),1,3.84,2019-03-29 14:48:00,166 Dogwood St, San Francisco,CA,94016 +175526,Lightning Charging Cable,1,14.95,2019-03-02 10:57:00,486 Walnut St, San Francisco,CA,94016 +175527,AAA Batteries (4-pack),1,2.99,2019-03-27 13:44:00,972 12th St, New York City,NY,10001 +175528,27in FHD Monitor,1,149.99,2019-03-23 08:44:00,755 Ridge St, Boston,MA,02215 +175529,Lightning Charging Cable,1,14.95,2019-03-27 23:11:00,481 Hickory St, Dallas,TX,75001 +175530,AA Batteries (4-pack),1,3.84,2019-03-20 22:18:00,818 Jefferson St, San Francisco,CA,94016 +175531,Macbook Pro Laptop,1,1700.0,2019-03-16 13:32:00,124 Lake St, Seattle,WA,98101 +175532,AAA Batteries (4-pack),2,2.99,2019-03-07 21:09:00,243 7th St, Los Angeles,CA,90001 +175533,Lightning Charging Cable,1,14.95,2019-03-09 18:01:00,434 Maple St, New York City,NY,10001 +175534,Lightning Charging Cable,1,14.95,2019-03-30 13:38:00,768 Walnut St, Boston,MA,02215 +175535,Vareebadd Phone,1,400.0,2019-03-10 19:49:00,572 Pine St, Austin,TX,73301 +175536,iPhone,1,700.0,2019-03-14 12:59:00,845 10th St, San Francisco,CA,94016 +175537,20in Monitor,1,109.99,2019-03-18 23:11:00,457 Meadow St, San Francisco,CA,94016 +175538,AAA Batteries (4-pack),1,2.99,2019-03-28 21:50:00,512 Cedar St, Seattle,WA,98101 +175539,AAA Batteries (4-pack),1,2.99,2019-03-23 11:48:00,235 Chestnut St, Atlanta,GA,30301 +175540,Macbook Pro Laptop,1,1700.0,2019-03-05 21:25:00,628 Meadow St, Portland,OR,97035 +175541,USB-C Charging Cable,1,11.95,2019-03-02 12:16:00,315 Ridge St, Los Angeles,CA,90001 +175542,iPhone,1,700.0,2019-03-27 01:51:00,979 Madison St, Boston,MA,02215 +175543,Macbook Pro Laptop,1,1700.0,2019-03-11 18:20:00,220 Main St, Seattle,WA,98101 +175544,AAA Batteries (4-pack),1,2.99,2019-03-12 09:33:00,13 Meadow St, Atlanta,GA,30301 +175545,USB-C Charging Cable,1,11.95,2019-03-11 23:30:00,242 2nd St, Boston,MA,02215 +175545,Lightning Charging Cable,1,14.95,2019-03-11 23:30:00,242 2nd St, Boston,MA,02215 +175546,AA Batteries (4-pack),1,3.84,2019-03-28 07:59:00,231 Lakeview St, Dallas,TX,75001 +175547,Bose SoundSport Headphones,1,99.99,2019-03-26 12:17:00,361 Maple St, San Francisco,CA,94016 +175548,iPhone,1,700.0,2019-03-31 19:03:00,886 13th St, Portland,OR,97035 +175549,Wired Headphones,1,11.99,2019-03-28 17:19:00,518 5th St, Los Angeles,CA,90001 +175550,AA Batteries (4-pack),2,3.84,2019-03-10 20:19:00,703 Hickory St, New York City,NY,10001 +175551,AAA Batteries (4-pack),2,2.99,2019-03-27 14:14:00,608 2nd St, Atlanta,GA,30301 +175552,USB-C Charging Cable,1,11.95,2019-03-22 19:36:00,74 Hill St, San Francisco,CA,94016 +175553,ThinkPad Laptop,1,999.99,2019-03-18 19:42:00,399 Cedar St, Boston,MA,02215 +175554,ThinkPad Laptop,1,999.99,2019-03-11 21:57:00,613 Sunset St, Austin,TX,73301 +175555,iPhone,1,700.0,2019-03-03 11:51:00,496 Hill St, Portland,ME,04101 +175556,AA Batteries (4-pack),1,3.84,2019-03-02 17:53:00,291 Center St, San Francisco,CA,94016 +175557,Wired Headphones,1,11.99,2019-03-27 05:28:00,818 Madison St, Los Angeles,CA,90001 +175558,Wired Headphones,1,11.99,2019-03-21 20:37:00,882 6th St, Portland,OR,97035 +175559,Google Phone,1,600.0,2019-03-26 22:49:00,142 Dogwood St, Austin,TX,73301 +175559,USB-C Charging Cable,1,11.95,2019-03-26 22:49:00,142 Dogwood St, Austin,TX,73301 +175560,Lightning Charging Cable,1,14.95,2019-03-07 16:52:00,770 Park St, Dallas,TX,75001 +175561,Lightning Charging Cable,1,14.95,2019-03-27 22:12:00,937 Walnut St, Los Angeles,CA,90001 +175562,Apple Airpods Headphones,1,150.0,2019-03-07 19:20:00,775 Maple St, Seattle,WA,98101 +175563,Apple Airpods Headphones,1,150.0,2019-03-17 07:35:00,240 2nd St, Austin,TX,73301 +175564,USB-C Charging Cable,1,11.95,2019-03-02 16:36:00,583 Park St, San Francisco,CA,94016 +175565,Wired Headphones,1,11.99,2019-03-30 14:16:00,451 Elm St, Dallas,TX,75001 +175566,AA Batteries (4-pack),1,3.84,2019-03-03 15:59:00,421 Dogwood St, San Francisco,CA,94016 +175567,20in Monitor,1,109.99,2019-03-06 13:33:00,553 2nd St, San Francisco,CA,94016 +175568,iPhone,1,700.0,2019-03-23 02:39:00,155 2nd St, Los Angeles,CA,90001 +175569,Apple Airpods Headphones,1,150.0,2019-03-29 12:36:00,661 Lincoln St, San Francisco,CA,94016 +175570,Wired Headphones,2,11.99,2019-03-18 17:53:00,935 Church St, Dallas,TX,75001 +175571,USB-C Charging Cable,2,11.95,2019-03-09 15:09:00,824 9th St, San Francisco,CA,94016 +175572,Bose SoundSport Headphones,1,99.99,2019-03-13 05:44:00,926 6th St, Dallas,TX,75001 +175573,Bose SoundSport Headphones,1,99.99,2019-03-13 20:29:00,355 1st St, New York City,NY,10001 +175574,Bose SoundSport Headphones,1,99.99,2019-03-03 22:41:00,551 Main St, San Francisco,CA,94016 +175575,Bose SoundSport Headphones,1,99.99,2019-03-26 10:16:00,545 Jackson St, Portland,ME,04101 +175576,Apple Airpods Headphones,1,150.0,2019-03-04 18:59:00,833 6th St, Los Angeles,CA,90001 +175577,Lightning Charging Cable,1,14.95,2019-03-14 14:36:00,731 River St, San Francisco,CA,94016 +175578,Wired Headphones,1,11.99,2019-03-07 17:02:00,664 5th St, Dallas,TX,75001 +175579,Lightning Charging Cable,1,14.95,2019-03-12 17:19:00,241 Church St, Seattle,WA,98101 +175580,Bose SoundSport Headphones,1,99.99,2019-03-21 16:07:00,546 Lincoln St, Seattle,WA,98101 +175581,Vareebadd Phone,1,400.0,2019-03-12 16:48:00,760 Center St, Los Angeles,CA,90001 +175582,AA Batteries (4-pack),1,3.84,2019-03-03 15:19:00,807 Cedar St, Los Angeles,CA,90001 +175583,Apple Airpods Headphones,1,150.0,2019-03-21 10:56:00,18 1st St, Los Angeles,CA,90001 +175584,Wired Headphones,1,11.99,2019-03-09 15:49:00,143 7th St, Dallas,TX,75001 +175585,Apple Airpods Headphones,1,150.0,2019-03-26 20:44:00,250 Willow St, Atlanta,GA,30301 +175586,Bose SoundSport Headphones,1,99.99,2019-03-04 11:32:00,243 Pine St, Los Angeles,CA,90001 +175587,AAA Batteries (4-pack),1,2.99,2019-03-31 13:31:00,301 Hill St, San Francisco,CA,94016 +175588,Bose SoundSport Headphones,1,99.99,2019-03-13 19:51:00,142 Elm St, New York City,NY,10001 +175589,Apple Airpods Headphones,1,150.0,2019-03-17 14:02:00,823 Lakeview St, San Francisco,CA,94016 +175590,Apple Airpods Headphones,1,150.0,2019-03-04 09:51:00,566 Dogwood St, Atlanta,GA,30301 +175591,iPhone,1,700.0,2019-03-20 12:47:00,903 South St, Los Angeles,CA,90001 +175592,Google Phone,1,600.0,2019-03-29 22:12:00,177 Johnson St, Los Angeles,CA,90001 +175592,USB-C Charging Cable,1,11.95,2019-03-29 22:12:00,177 Johnson St, Los Angeles,CA,90001 +175592,Bose SoundSport Headphones,1,99.99,2019-03-29 22:12:00,177 Johnson St, Los Angeles,CA,90001 +175593,AAA Batteries (4-pack),2,2.99,2019-03-14 00:36:00,526 Spruce St, Boston,MA,02215 +175594,iPhone,1,700.0,2019-03-07 16:26:00,246 Dogwood St, Dallas,TX,75001 +175595,Apple Airpods Headphones,1,150.0,2019-03-09 16:14:00,293 Adams St, New York City,NY,10001 +175596,Lightning Charging Cable,1,14.95,2019-03-26 23:18:00,51 2nd St, San Francisco,CA,94016 +175597,27in 4K Gaming Monitor,1,389.99,2019-03-24 16:14:00,930 Jackson St, Seattle,WA,98101 +175598,Bose SoundSport Headphones,1,99.99,2019-03-20 11:12:00,412 11th St, Portland,OR,97035 +175599,ThinkPad Laptop,1,999.99,2019-03-25 13:52:00,482 5th St, Atlanta,GA,30301 +175600,Wired Headphones,1,11.99,2019-03-15 08:16:00,970 Lakeview St, Los Angeles,CA,90001 +175601,AA Batteries (4-pack),1,3.84,2019-03-25 21:35:00,31 Lakeview St, Boston,MA,02215 +175602,AA Batteries (4-pack),1,3.84,2019-03-18 13:59:00,983 Jackson St, San Francisco,CA,94016 +175603,USB-C Charging Cable,1,11.95,2019-03-20 00:56:00,177 13th St, New York City,NY,10001 +175604,AAA Batteries (4-pack),1,2.99,2019-03-02 14:36:00,7 9th St, San Francisco,CA,94016 +175605,Google Phone,1,600.0,2019-03-23 11:44:00,54 Sunset St, New York City,NY,10001 +175606,27in FHD Monitor,1,149.99,2019-03-20 11:39:00,160 13th St, Los Angeles,CA,90001 +175607,Apple Airpods Headphones,1,150.0,2019-03-01 09:13:00,884 River St, Boston,MA,02215 +175608,USB-C Charging Cable,1,11.95,2019-03-23 18:00:00,952 2nd St, Portland,OR,97035 +175609,Apple Airpods Headphones,1,150.0,2019-03-28 07:06:00,467 River St, San Francisco,CA,94016 +175610,USB-C Charging Cable,1,11.95,2019-03-02 14:50:00,883 Center St, Portland,OR,97035 +175611,Macbook Pro Laptop,1,1700.0,2019-03-20 12:41:00,619 7th St, Boston,MA,02215 +175612,AA Batteries (4-pack),1,3.84,2019-03-15 12:21:00,566 Adams St, San Francisco,CA,94016 +175613,USB-C Charging Cable,1,11.95,2019-03-14 11:59:00,89 11th St, San Francisco,CA,94016 +175614,Lightning Charging Cable,1,14.95,2019-03-21 19:12:00,756 Jefferson St, Los Angeles,CA,90001 +175615,27in FHD Monitor,1,149.99,2019-03-20 20:30:00,25 Lakeview St, New York City,NY,10001 +175616,20in Monitor,1,109.99,2019-03-23 17:41:00,545 9th St, Portland,ME,04101 +175617,AAA Batteries (4-pack),3,2.99,2019-03-05 11:06:00,955 Walnut St, San Francisco,CA,94016 +175618,AAA Batteries (4-pack),1,2.99,2019-03-11 00:34:00,175 Cedar St, Dallas,TX,75001 +175619,Wired Headphones,1,11.99,2019-03-09 21:32:00,949 10th St, Dallas,TX,75001 +175620,Wired Headphones,1,11.99,2019-03-22 01:32:00,883 6th St, Los Angeles,CA,90001 +175621,AAA Batteries (4-pack),3,2.99,2019-03-19 11:43:00,385 2nd St, Los Angeles,CA,90001 +175622,AA Batteries (4-pack),1,3.84,2019-03-19 15:59:00,368 6th St, Dallas,TX,75001 +175623,AA Batteries (4-pack),1,3.84,2019-03-09 00:33:00,814 8th St, Boston,MA,02215 +175624,AAA Batteries (4-pack),1,2.99,2019-03-28 01:18:00,195 Dogwood St, Boston,MA,02215 +175625,Apple Airpods Headphones,2,150.0,2019-03-05 10:35:00,854 4th St, New York City,NY,10001 +175626,Apple Airpods Headphones,1,150.0,2019-03-03 13:57:00,249 Forest St, New York City,NY,10001 +175627,Lightning Charging Cable,1,14.95,2019-03-25 08:49:00,830 6th St, San Francisco,CA,94016 +175628,AA Batteries (4-pack),1,3.84,2019-03-04 09:15:00,319 Cedar St, San Francisco,CA,94016 +175629,AA Batteries (4-pack),3,3.84,2019-03-09 21:18:00,362 Cedar St, Portland,OR,97035 +175630,USB-C Charging Cable,1,11.95,2019-03-02 10:41:00,954 Highland St, Seattle,WA,98101 +175631,20in Monitor,1,109.99,2019-03-16 02:43:00,144 Madison St, San Francisco,CA,94016 +175632,Lightning Charging Cable,1,14.95,2019-03-24 13:47:00,111 6th St, Seattle,WA,98101 +175633,Flatscreen TV,1,300.0,2019-03-19 14:36:00,209 Spruce St, Portland,OR,97035 +175634,USB-C Charging Cable,1,11.95,2019-03-12 12:01:00,639 5th St, Boston,MA,02215 +175635,USB-C Charging Cable,1,11.95,2019-03-04 15:40:00,634 Walnut St, Los Angeles,CA,90001 +175636,27in 4K Gaming Monitor,1,389.99,2019-03-25 17:40:00,588 Willow St, Portland,OR,97035 +175637,USB-C Charging Cable,1,11.95,2019-03-21 21:15:00,172 Sunset St, San Francisco,CA,94016 +175638,27in FHD Monitor,1,149.99,2019-03-16 19:00:00,57 12th St, Boston,MA,02215 +175639,Lightning Charging Cable,1,14.95,2019-03-15 21:56:00,331 Chestnut St, Seattle,WA,98101 +175640,27in FHD Monitor,1,149.99,2019-03-08 09:51:00,858 Forest St, Boston,MA,02215 +175641,Macbook Pro Laptop,1,1700.0,2019-03-21 07:24:00,811 9th St, New York City,NY,10001 +175642,AAA Batteries (4-pack),1,2.99,2019-03-07 17:16:00,253 South St, New York City,NY,10001 +175643,Apple Airpods Headphones,1,150.0,2019-03-22 19:08:00,479 Lake St, Austin,TX,73301 +175644,Macbook Pro Laptop,1,1700.0,2019-03-23 13:39:00,517 11th St, Boston,MA,02215 +175645,Apple Airpods Headphones,1,150.0,2019-03-27 15:44:00,394 Wilson St, San Francisco,CA,94016 +175646,AAA Batteries (4-pack),2,2.99,2019-03-14 12:45:00,873 Lakeview St, Boston,MA,02215 +175647,AAA Batteries (4-pack),1,2.99,2019-03-12 18:12:00,497 6th St, San Francisco,CA,94016 +175648,Apple Airpods Headphones,1,150.0,2019-03-04 15:56:00,751 Dogwood St, San Francisco,CA,94016 +175649,Apple Airpods Headphones,1,150.0,2019-03-15 10:49:00,404 Madison St, New York City,NY,10001 +175650,Flatscreen TV,1,300.0,2019-03-14 12:45:00,766 Dogwood St, Dallas,TX,75001 +175651,Macbook Pro Laptop,1,1700.0,2019-03-13 21:21:00,764 South St, Dallas,TX,75001 +175652,27in 4K Gaming Monitor,1,389.99,2019-03-28 09:45:00,647 2nd St, Dallas,TX,75001 +175653,Wired Headphones,1,11.99,2019-03-19 16:02:00,462 11th St, San Francisco,CA,94016 +175654,Wired Headphones,3,11.99,2019-03-03 19:37:00,147 Hill St, Atlanta,GA,30301 +175655,AAA Batteries (4-pack),2,2.99,2019-03-12 10:16:00,319 Dogwood St, San Francisco,CA,94016 +175656,Apple Airpods Headphones,1,150.0,2019-03-03 23:05:00,885 11th St, Austin,TX,73301 +175657,34in Ultrawide Monitor,1,379.99,2019-03-26 21:09:00,878 Ridge St, Los Angeles,CA,90001 +175658,AAA Batteries (4-pack),1,2.99,2019-03-02 22:34:00,142 West St, Boston,MA,02215 +175659,Flatscreen TV,1,300.0,2019-03-10 18:58:00,505 Hickory St, New York City,NY,10001 +175660,ThinkPad Laptop,1,999.99,2019-03-01 09:01:00,127 Main St, Boston,MA,02215 +175661,Apple Airpods Headphones,1,150.0,2019-03-22 18:46:00,850 Maple St, Austin,TX,73301 +175662,27in FHD Monitor,1,149.99,2019-03-18 23:15:00,663 1st St, Seattle,WA,98101 +175663,USB-C Charging Cable,1,11.95,2019-03-12 13:28:00,404 1st St, San Francisco,CA,94016 +175664,34in Ultrawide Monitor,1,379.99,2019-03-27 18:33:00,76 1st St, Los Angeles,CA,90001 +175665,20in Monitor,1,109.99,2019-03-20 18:38:00,895 9th St, New York City,NY,10001 +175666,USB-C Charging Cable,1,11.95,2019-03-24 09:55:00,47 13th St, Boston,MA,02215 +175667,Lightning Charging Cable,1,14.95,2019-03-25 08:20:00,605 Spruce St, Dallas,TX,75001 +175668,Apple Airpods Headphones,1,150.0,2019-03-14 16:07:00,50 Hickory St, Boston,MA,02215 +175669,AAA Batteries (4-pack),2,2.99,2019-03-27 20:33:00,885 Lakeview St, Seattle,WA,98101 +175670,Google Phone,1,600.0,2019-03-29 15:23:00,325 2nd St, New York City,NY,10001 +175671,AAA Batteries (4-pack),2,2.99,2019-03-12 08:18:00,407 5th St, San Francisco,CA,94016 +175672,AAA Batteries (4-pack),2,2.99,2019-03-14 14:57:00,942 6th St, New York City,NY,10001 +175673,ThinkPad Laptop,1,999.99,2019-03-06 17:07:00,537 Lincoln St, Boston,MA,02215 +175673,Apple Airpods Headphones,1,150.0,2019-03-06 17:07:00,537 Lincoln St, Boston,MA,02215 +175674,Bose SoundSport Headphones,1,99.99,2019-03-30 23:26:00,789 North St, Seattle,WA,98101 +175675,USB-C Charging Cable,1,11.95,2019-03-30 07:11:00,74 10th St, Los Angeles,CA,90001 +175676,Wired Headphones,1,11.99,2019-03-05 12:16:00,997 9th St, Seattle,WA,98101 +175677,Lightning Charging Cable,1,14.95,2019-03-19 10:50:00,549 12th St, Los Angeles,CA,90001 +175678,AA Batteries (4-pack),1,3.84,2019-03-01 12:15:00,686 Maple St, Los Angeles,CA,90001 +175679,27in FHD Monitor,1,149.99,2019-03-04 15:04:00,651 North St, Atlanta,GA,30301 +175680,AA Batteries (4-pack),1,3.84,2019-03-17 15:37:00,923 Adams St, New York City,NY,10001 +175681,Google Phone,1,600.0,2019-03-29 23:08:00,867 Jefferson St, Dallas,TX,75001 +175681,USB-C Charging Cable,1,11.95,2019-03-29 23:08:00,867 Jefferson St, Dallas,TX,75001 +175682,AAA Batteries (4-pack),1,2.99,2019-03-30 20:44:00,931 Madison St, Los Angeles,CA,90001 +175683,USB-C Charging Cable,1,11.95,2019-03-07 20:54:00,108 Spruce St, New York City,NY,10001 +175684,USB-C Charging Cable,1,11.95,2019-03-25 00:17:00,14 9th St, Boston,MA,02215 +175685,AAA Batteries (4-pack),5,2.99,2019-03-09 04:33:00,977 Maple St, San Francisco,CA,94016 +175686,AAA Batteries (4-pack),1,2.99,2019-03-16 18:11:00,607 12th St, Los Angeles,CA,90001 +175687,Bose SoundSport Headphones,1,99.99,2019-03-30 16:47:00,285 Jefferson St, Los Angeles,CA,90001 +175688,AAA Batteries (4-pack),2,2.99,2019-03-07 08:16:00,335 Main St, Seattle,WA,98101 +175689,Lightning Charging Cable,1,14.95,2019-03-29 19:23:00,38 Lincoln St, Boston,MA,02215 +175690,USB-C Charging Cable,1,11.95,2019-03-04 20:30:00,275 Dogwood St, Los Angeles,CA,90001 +175691,Apple Airpods Headphones,1,150.0,2019-03-02 16:22:00,797 13th St, Los Angeles,CA,90001 +175692,AAA Batteries (4-pack),1,2.99,2019-03-26 16:35:00,935 Ridge St, New York City,NY,10001 +175693,Apple Airpods Headphones,1,150.0,2019-03-27 15:03:00,915 Ridge St, Atlanta,GA,30301 +175694,Macbook Pro Laptop,1,1700.0,2019-03-28 11:22:00,882 1st St, San Francisco,CA,94016 +175695,AAA Batteries (4-pack),2,2.99,2019-03-12 20:14:00,503 Madison St, Boston,MA,02215 +175696,Vareebadd Phone,1,400.0,2019-03-16 22:55:00,561 6th St, San Francisco,CA,94016 +175697,Apple Airpods Headphones,1,150.0,2019-03-25 13:11:00,939 Adams St, New York City,NY,10001 +175698,Bose SoundSport Headphones,1,99.99,2019-03-03 21:51:00,658 Hickory St, New York City,NY,10001 +175699,AAA Batteries (4-pack),2,2.99,2019-03-30 19:16:00,967 Spruce St, Boston,MA,02215 +175700,Wired Headphones,1,11.99,2019-03-31 03:36:00,848 Ridge St, Atlanta,GA,30301 +175701,USB-C Charging Cable,1,11.95,2019-03-26 20:50:00,522 South St, Dallas,TX,75001 +175702,USB-C Charging Cable,1,11.95,2019-03-02 22:05:00,97 Madison St, San Francisco,CA,94016 +175703,Lightning Charging Cable,1,14.95,2019-03-04 10:34:00,970 Main St, Boston,MA,02215 +175704,27in FHD Monitor,1,149.99,2019-03-07 08:29:00,206 4th St, Seattle,WA,98101 +175705,Bose SoundSport Headphones,1,99.99,2019-03-27 23:09:00,355 Center St, Austin,TX,73301 +175706,AAA Batteries (4-pack),1,2.99,2019-03-27 11:41:00,300 Main St, San Francisco,CA,94016 +175707,Bose SoundSport Headphones,1,99.99,2019-03-30 15:20:00,626 Meadow St, Seattle,WA,98101 +175708,AA Batteries (4-pack),1,3.84,2019-03-21 11:36:00,859 2nd St, Portland,OR,97035 +175709,USB-C Charging Cable,1,11.95,2019-03-30 11:22:00,486 1st St, San Francisco,CA,94016 +175710,Apple Airpods Headphones,1,150.0,2019-03-24 10:58:00,810 12th St, Los Angeles,CA,90001 +175711,34in Ultrawide Monitor,1,379.99,2019-03-02 11:19:00,222 Wilson St, New York City,NY,10001 +175712,USB-C Charging Cable,1,11.95,2019-03-29 19:36:00,321 West St, Boston,MA,02215 +175713,Lightning Charging Cable,1,14.95,2019-03-22 23:12:00,3 Meadow St, Atlanta,GA,30301 +175714,USB-C Charging Cable,1,11.95,2019-03-18 10:58:00,460 Church St, Los Angeles,CA,90001 +175715,USB-C Charging Cable,1,11.95,2019-03-16 12:55:00,10 West St, Boston,MA,02215 +175716,Lightning Charging Cable,1,14.95,2019-03-10 09:06:00,469 12th St, San Francisco,CA,94016 +175717,Vareebadd Phone,1,400.0,2019-03-02 18:20:00,123 Washington St, Boston,MA,02215 +175718,27in FHD Monitor,1,149.99,2019-03-13 19:17:00,439 Madison St, San Francisco,CA,94016 +175719,27in FHD Monitor,1,149.99,2019-03-29 19:07:00,969 1st St, Atlanta,GA,30301 +175720,USB-C Charging Cable,1,11.95,2019-03-15 16:04:00,542 1st St, Los Angeles,CA,90001 +175721,Lightning Charging Cable,1,14.95,2019-03-15 11:43:00,443 Lakeview St, Los Angeles,CA,90001 +175722,Lightning Charging Cable,1,14.95,2019-03-05 12:22:00,168 Park St, New York City,NY,10001 +175723,Apple Airpods Headphones,1,150.0,2019-03-21 17:06:00,633 Hill St, Dallas,TX,75001 +175724,34in Ultrawide Monitor,1,379.99,2019-03-10 13:50:00,638 Park St, San Francisco,CA,94016 +175725,Google Phone,1,600.0,2019-03-30 20:21:00,217 4th St, Atlanta,GA,30301 +175726,34in Ultrawide Monitor,1,379.99,2019-03-14 09:58:00,625 River St, Dallas,TX,75001 +175727,AA Batteries (4-pack),2,3.84,2019-03-03 19:33:00,451 Cherry St, Austin,TX,73301 +175728,AAA Batteries (4-pack),2,2.99,2019-03-20 22:01:00,158 12th St, Los Angeles,CA,90001 +175729,Lightning Charging Cable,1,14.95,2019-03-26 11:01:00,935 6th St, San Francisco,CA,94016 +175730,AA Batteries (4-pack),1,3.84,2019-03-03 21:27:00,658 Lake St, Los Angeles,CA,90001 +175731,Bose SoundSport Headphones,1,99.99,2019-03-20 15:18:00,463 Highland St, Atlanta,GA,30301 +175732,Macbook Pro Laptop,1,1700.0,2019-03-08 21:22:00,741 Washington St, New York City,NY,10001 +175733,Lightning Charging Cable,1,14.95,2019-03-01 11:26:00,711 Cherry St, Los Angeles,CA,90001 +175734,Flatscreen TV,1,300.0,2019-03-15 11:48:00,727 Forest St, Atlanta,GA,30301 +175735,AA Batteries (4-pack),1,3.84,2019-03-03 19:56:00,85 2nd St, Seattle,WA,98101 +175736,ThinkPad Laptop,1,999.99,2019-03-08 09:39:00,396 1st St, Portland,OR,97035 +175737,Lightning Charging Cable,1,14.95,2019-03-13 11:58:00,906 Forest St, Atlanta,GA,30301 +175737,AAA Batteries (4-pack),1,2.99,2019-03-13 11:58:00,906 Forest St, Atlanta,GA,30301 +175738,Wired Headphones,1,11.99,2019-03-11 15:15:00,722 North St, New York City,NY,10001 +175739,Bose SoundSport Headphones,1,99.99,2019-03-08 17:48:00,692 Meadow St, San Francisco,CA,94016 +175740,AA Batteries (4-pack),1,3.84,2019-03-25 16:01:00,427 Lincoln St, Los Angeles,CA,90001 +175741,Bose SoundSport Headphones,1,99.99,2019-03-09 17:23:00,973 9th St, Boston,MA,02215 +175742,34in Ultrawide Monitor,1,379.99,2019-03-20 17:14:00,281 Adams St, Los Angeles,CA,90001 +175743,Apple Airpods Headphones,1,150.0,2019-03-12 21:45:00,383 Adams St, Seattle,WA,98101 +175744,AA Batteries (4-pack),1,3.84,2019-03-03 17:07:00,407 Ridge St, Seattle,WA,98101 +175745,Bose SoundSport Headphones,1,99.99,2019-03-21 01:48:00,63 Ridge St, Los Angeles,CA,90001 +175746,Lightning Charging Cable,1,14.95,2019-03-05 20:27:00,344 Hickory St, Austin,TX,73301 +175747,34in Ultrawide Monitor,1,379.99,2019-03-12 19:27:00,62 Hill St, Boston,MA,02215 +175748,Apple Airpods Headphones,1,150.0,2019-03-12 21:55:00,322 Lincoln St, Austin,TX,73301 +175749,USB-C Charging Cable,1,11.95,2019-03-12 21:27:00,314 1st St, Portland,OR,97035 +175750,USB-C Charging Cable,1,11.95,2019-03-21 21:54:00,402 Walnut St, San Francisco,CA,94016 +175751,USB-C Charging Cable,1,11.95,2019-03-08 17:09:00,312 Adams St, Atlanta,GA,30301 +175752,20in Monitor,1,109.99,2019-03-23 13:33:00,132 North St, Seattle,WA,98101 +175753,AAA Batteries (4-pack),3,2.99,2019-03-18 22:17:00,728 Jackson St, Boston,MA,02215 +175754,USB-C Charging Cable,1,11.95,2019-03-13 22:30:00,753 Madison St, Dallas,TX,75001 +175755,USB-C Charging Cable,1,11.95,2019-03-16 12:11:00,520 8th St, Boston,MA,02215 +175756,AA Batteries (4-pack),1,3.84,2019-03-07 16:26:00,124 8th St, Portland,ME,04101 +175757,Lightning Charging Cable,1,14.95,2019-03-03 12:27:00,400 Willow St, San Francisco,CA,94016 +175758,Lightning Charging Cable,2,14.95,2019-03-05 13:21:00,267 4th St, San Francisco,CA,94016 +175759,20in Monitor,1,109.99,2019-03-11 22:59:00,800 Jefferson St, New York City,NY,10001 +175760,AAA Batteries (4-pack),1,2.99,2019-03-31 17:37:00,70 Church St, Portland,OR,97035 +175761,iPhone,1,700.0,2019-03-13 05:25:00,356 North St, Portland,OR,97035 +175761,Wired Headphones,1,11.99,2019-03-13 05:25:00,356 North St, Portland,OR,97035 +175762,USB-C Charging Cable,1,11.95,2019-03-01 20:57:00,475 Johnson St, Austin,TX,73301 +175763,20in Monitor,1,109.99,2019-03-05 14:19:00,918 Hill St, Dallas,TX,75001 +175764,Apple Airpods Headphones,1,150.0,2019-03-11 13:41:00,485 West St, Portland,OR,97035 +175765,Apple Airpods Headphones,1,150.0,2019-03-09 08:20:00,537 Wilson St, Boston,MA,02215 +175766,Apple Airpods Headphones,1,150.0,2019-03-22 11:58:00,832 Ridge St, Seattle,WA,98101 +175767,Lightning Charging Cable,1,14.95,2019-03-09 22:06:00,489 Sunset St, Seattle,WA,98101 +175768,Lightning Charging Cable,1,14.95,2019-03-05 08:30:00,114 4th St, Boston,MA,02215 +175769,Bose SoundSport Headphones,1,99.99,2019-04-01 02:22:00,974 13th St, New York City,NY,10001 +175770,20in Monitor,1,109.99,2019-03-04 22:57:00,146 13th St, Portland,OR,97035 +175771,AAA Batteries (4-pack),2,2.99,2019-03-14 09:48:00,420 Chestnut St, San Francisco,CA,94016 +175772,AA Batteries (4-pack),1,3.84,2019-03-03 19:27:00,360 Maple St, New York City,NY,10001 +175773,Lightning Charging Cable,2,14.95,2019-03-11 13:35:00,107 6th St, Los Angeles,CA,90001 +175774,USB-C Charging Cable,1,11.95,2019-03-22 17:29:00,656 Pine St, New York City,NY,10001 +175775,Bose SoundSport Headphones,1,99.99,2019-03-17 15:06:00,492 Walnut St, Boston,MA,02215 +175776,Bose SoundSport Headphones,1,99.99,2019-03-13 12:32:00,232 Main St, Seattle,WA,98101 +175777,AA Batteries (4-pack),1,3.84,2019-03-05 10:30:00,416 Hill St, Los Angeles,CA,90001 +175778,Lightning Charging Cable,1,14.95,2019-03-14 22:10:00,189 Jefferson St, Portland,OR,97035 +175779,AAA Batteries (4-pack),1,2.99,2019-03-17 19:00:00,100 Elm St, Los Angeles,CA,90001 +175780,Macbook Pro Laptop,1,1700.0,2019-03-31 11:47:00,790 Ridge St, Los Angeles,CA,90001 +175781,Apple Airpods Headphones,1,150.0,2019-03-02 11:18:00,958 Center St, Los Angeles,CA,90001 +175782,Apple Airpods Headphones,1,150.0,2019-03-23 08:01:00,627 1st St, New York City,NY,10001 +175783,AA Batteries (4-pack),1,3.84,2019-03-01 18:34:00,658 5th St, San Francisco,CA,94016 +175784,LG Washing Machine,1,600.0,2019-03-31 16:27:00,293 14th St, San Francisco,CA,94016 +175785,AAA Batteries (4-pack),1,2.99,2019-03-27 15:04:00,993 9th St, Boston,MA,02215 +175786,20in Monitor,1,109.99,2019-03-01 18:52:00,886 South St, San Francisco,CA,94016 +175787,Bose SoundSport Headphones,1,99.99,2019-03-15 13:45:00,140 Lake St, San Francisco,CA,94016 +175788,Wired Headphones,1,11.99,2019-03-27 10:57:00,278 Dogwood St, Austin,TX,73301 +175789,Apple Airpods Headphones,1,150.0,2019-03-06 16:16:00,631 Madison St, Boston,MA,02215 +175790,AA Batteries (4-pack),1,3.84,2019-03-10 12:31:00,418 14th St, San Francisco,CA,94016 +175791,Lightning Charging Cable,1,14.95,2019-03-10 22:23:00,432 Lake St, Seattle,WA,98101 +175792,AAA Batteries (4-pack),1,2.99,2019-03-29 16:26:00,724 Johnson St, San Francisco,CA,94016 +175793,Wired Headphones,2,11.99,2019-03-19 22:53:00,801 12th St, Seattle,WA,98101 +175794,Google Phone,1,600.0,2019-03-01 20:28:00,534 Highland St, Seattle,WA,98101 +175794,USB-C Charging Cable,1,11.95,2019-03-01 20:28:00,534 Highland St, Seattle,WA,98101 +175795,AAA Batteries (4-pack),1,2.99,2019-03-20 09:21:00,996 5th St, Boston,MA,02215 +175796,Lightning Charging Cable,1,14.95,2019-03-19 16:52:00,510 Jefferson St, Dallas,TX,75001 +175797,ThinkPad Laptop,1,999.99,2019-03-02 02:44:00,529 Washington St, Atlanta,GA,30301 +175798,ThinkPad Laptop,1,999.99,2019-03-31 22:20:00,9 Hickory St, San Francisco,CA,94016 +175799,AA Batteries (4-pack),1,3.84,2019-03-25 23:48:00,658 Forest St, San Francisco,CA,94016 +175800,Google Phone,1,600.0,2019-03-16 06:29:00,126 7th St, Boston,MA,02215 +175800,Bose SoundSport Headphones,1,99.99,2019-03-16 06:29:00,126 7th St, Boston,MA,02215 +175801,ThinkPad Laptop,1,999.99,2019-03-10 19:07:00,99 Lake St, Boston,MA,02215 +175802,Apple Airpods Headphones,1,150.0,2019-03-16 18:56:00,721 South St, New York City,NY,10001 +175803,Wired Headphones,1,11.99,2019-03-27 07:35:00,208 Lincoln St, Austin,TX,73301 +175804,27in 4K Gaming Monitor,1,389.99,2019-03-05 17:46:00,673 Main St, New York City,NY,10001 +175805,Wired Headphones,1,11.99,2019-03-14 18:06:00,337 River St, New York City,NY,10001 +175806,Macbook Pro Laptop,1,1700.0,2019-03-27 17:37:00,7 Johnson St, New York City,NY,10001 +175807,Vareebadd Phone,1,400.0,2019-03-16 15:08:00,5 11th St, Atlanta,GA,30301 +175807,USB-C Charging Cable,1,11.95,2019-03-16 15:08:00,5 11th St, Atlanta,GA,30301 +175808,USB-C Charging Cable,1,11.95,2019-03-04 21:39:00,764 Maple St, Atlanta,GA,30301 +175809,Flatscreen TV,1,300.0,2019-03-21 19:22:00,120 8th St, San Francisco,CA,94016 +175810,Wired Headphones,1,11.99,2019-03-17 17:49:00,586 Lake St, San Francisco,CA,94016 +175811,AA Batteries (4-pack),1,3.84,2019-03-05 17:41:00,500 12th St, Seattle,WA,98101 +175812,Apple Airpods Headphones,1,150.0,2019-03-27 14:01:00,967 13th St, New York City,NY,10001 +175813,20in Monitor,1,109.99,2019-03-22 14:24:00,433 West St, San Francisco,CA,94016 +175814,USB-C Charging Cable,1,11.95,2019-03-04 12:25:00,389 2nd St, Boston,MA,02215 +175815,Wired Headphones,1,11.99,2019-03-19 16:37:00,498 14th St, Boston,MA,02215 +175816,ThinkPad Laptop,1,999.99,2019-03-28 12:20:00,676 Spruce St, San Francisco,CA,94016 +175817,Lightning Charging Cable,1,14.95,2019-03-12 19:16:00,123 Cherry St, Seattle,WA,98101 +175818,Apple Airpods Headphones,1,150.0,2019-03-07 10:59:00,884 Chestnut St, San Francisco,CA,94016 +175819,LG Washing Machine,1,600.0,2019-03-02 16:10:00,918 13th St, Dallas,TX,75001 +175820,Flatscreen TV,1,300.0,2019-03-02 17:28:00,895 11th St, Seattle,WA,98101 +175821,Bose SoundSport Headphones,1,99.99,2019-03-31 20:03:00,525 Main St, New York City,NY,10001 +175822,Bose SoundSport Headphones,1,99.99,2019-03-30 18:45:00,514 Cherry St, Dallas,TX,75001 +175823,27in 4K Gaming Monitor,1,389.99,2019-03-02 13:04:00,906 Chestnut St, Los Angeles,CA,90001 +175824,Macbook Pro Laptop,1,1700.0,2019-03-05 09:55:00,277 Hill St, San Francisco,CA,94016 +175825,Apple Airpods Headphones,1,150.0,2019-03-06 16:20:00,74 Church St, New York City,NY,10001 +175826,Apple Airpods Headphones,1,150.0,2019-03-07 11:12:00,775 Madison St, Boston,MA,02215 +175827,Apple Airpods Headphones,1,150.0,2019-03-31 08:17:00,499 Willow St, Boston,MA,02215 +175828,USB-C Charging Cable,1,11.95,2019-03-14 16:11:00,754 Jefferson St, Los Angeles,CA,90001 +175829,Bose SoundSport Headphones,1,99.99,2019-03-12 11:30:00,135 South St, San Francisco,CA,94016 +175830,AAA Batteries (4-pack),1,2.99,2019-03-20 11:34:00,161 4th St, New York City,NY,10001 +175831,Apple Airpods Headphones,1,150.0,2019-03-03 20:03:00,975 Center St, New York City,NY,10001 +175832,iPhone,1,700.0,2019-03-26 16:59:00,626 13th St, Dallas,TX,75001 +175833,Flatscreen TV,1,300.0,2019-03-11 21:14:00,727 6th St, New York City,NY,10001 +175833,Wired Headphones,1,11.99,2019-03-11 21:14:00,727 6th St, New York City,NY,10001 +175834,Lightning Charging Cable,1,14.95,2019-03-09 20:57:00,547 Walnut St, San Francisco,CA,94016 +175835,Lightning Charging Cable,1,14.95,2019-03-16 13:36:00,257 Jackson St, New York City,NY,10001 +175836,AAA Batteries (4-pack),2,2.99,2019-03-28 16:55:00,357 Madison St, Boston,MA,02215 +175837,Google Phone,1,600.0,2019-03-30 18:23:00,326 7th St, San Francisco,CA,94016 +175838,AAA Batteries (4-pack),3,2.99,2019-03-16 13:25:00,383 Main St, Los Angeles,CA,90001 +175839,Flatscreen TV,1,300.0,2019-03-01 16:16:00,819 Highland St, New York City,NY,10001 +175840,27in FHD Monitor,1,149.99,2019-03-24 04:31:00,603 West St, New York City,NY,10001 +175841,Bose SoundSport Headphones,1,99.99,2019-03-07 20:20:00,990 Main St, Austin,TX,73301 +175842,Lightning Charging Cable,1,14.95,2019-03-02 17:18:00,466 Hill St, Los Angeles,CA,90001 +175843,AAA Batteries (4-pack),1,2.99,2019-03-23 23:39:00,404 5th St, Portland,OR,97035 +175844,USB-C Charging Cable,1,11.95,2019-03-07 05:54:00,683 4th St, San Francisco,CA,94016 +175845,AA Batteries (4-pack),1,3.84,2019-03-14 19:21:00,141 11th St, Seattle,WA,98101 +175846,AA Batteries (4-pack),2,3.84,2019-03-22 19:14:00,794 Ridge St, San Francisco,CA,94016 +175847,Lightning Charging Cable,1,14.95,2019-03-31 10:16:00,768 Wilson St, New York City,NY,10001 +175848,Wired Headphones,1,11.99,2019-03-12 11:46:00,475 1st St, Atlanta,GA,30301 +175849,Wired Headphones,1,11.99,2019-03-17 22:24:00,103 Jefferson St, Dallas,TX,75001 +175850,27in FHD Monitor,1,149.99,2019-03-15 20:17:00,1 Dogwood St, New York City,NY,10001 +175851,27in FHD Monitor,1,149.99,2019-03-21 16:04:00,767 Washington St, San Francisco,CA,94016 +175852,ThinkPad Laptop,1,999.99,2019-03-11 00:59:00,978 13th St, Los Angeles,CA,90001 +175853,Google Phone,1,600.0,2019-03-23 11:17:00,775 Wilson St, Atlanta,GA,30301 +175854,AA Batteries (4-pack),1,3.84,2019-03-03 14:00:00,745 Lincoln St, Seattle,WA,98101 +175855,27in FHD Monitor,1,149.99,2019-03-21 21:12:00,629 Cherry St, New York City,NY,10001 +175856,Google Phone,1,600.0,2019-03-12 16:52:00,734 11th St, Los Angeles,CA,90001 +175857,AA Batteries (4-pack),1,3.84,2019-03-28 23:54:00,805 Center St, Austin,TX,73301 +175858,Apple Airpods Headphones,1,150.0,2019-03-23 17:53:00,977 Jefferson St, Seattle,WA,98101 +175859,Apple Airpods Headphones,1,150.0,2019-03-14 21:46:00,939 Hickory St, Seattle,WA,98101 +175860,Vareebadd Phone,1,400.0,2019-03-06 22:20:00,773 6th St, San Francisco,CA,94016 +175861,Wired Headphones,1,11.99,2019-03-22 16:12:00,595 River St, Atlanta,GA,30301 +175862,Wired Headphones,1,11.99,2019-03-14 10:54:00,928 Cherry St, Atlanta,GA,30301 +175863,iPhone,1,700.0,2019-03-09 22:53:00,842 9th St, Portland,OR,97035 +175864,AAA Batteries (4-pack),3,2.99,2019-03-23 23:42:00,320 Park St, Seattle,WA,98101 +175865,Bose SoundSport Headphones,1,99.99,2019-03-16 17:24:00,855 10th St, New York City,NY,10001 +175866,iPhone,1,700.0,2019-03-26 18:07:00,133 Adams St, New York City,NY,10001 +175867,AA Batteries (4-pack),1,3.84,2019-03-14 22:36:00,360 Sunset St, Boston,MA,02215 +175868,27in 4K Gaming Monitor,1,389.99,2019-03-11 21:19:00,840 Lakeview St, Los Angeles,CA,90001 +175868,Bose SoundSport Headphones,1,99.99,2019-03-11 21:19:00,840 Lakeview St, Los Angeles,CA,90001 +175869,27in 4K Gaming Monitor,1,389.99,2019-03-18 18:44:00,681 Lake St, San Francisco,CA,94016 +175870,LG Dryer,1,600.0,2019-03-08 14:55:00,740 Lakeview St, Seattle,WA,98101 +175871,USB-C Charging Cable,1,11.95,2019-03-30 19:46:00,19 Hickory St, Dallas,TX,75001 +175872,iPhone,1,700.0,2019-03-21 08:30:00,36 Park St, Los Angeles,CA,90001 +175873,Wired Headphones,1,11.99,2019-03-03 07:46:00,789 Meadow St, New York City,NY,10001 +175874,Wired Headphones,1,11.99,2019-03-27 17:18:00,479 West St, Los Angeles,CA,90001 +175875,Apple Airpods Headphones,1,150.0,2019-03-13 13:28:00,630 4th St, Los Angeles,CA,90001 +175876,Lightning Charging Cable,1,14.95,2019-03-25 13:54:00,24 11th St, Dallas,TX,75001 +175877,AAA Batteries (4-pack),1,2.99,2019-03-03 14:51:00,719 12th St, Los Angeles,CA,90001 +175878,AAA Batteries (4-pack),3,2.99,2019-03-15 18:49:00,8 Lincoln St, Portland,OR,97035 +175879,Macbook Pro Laptop,1,1700.0,2019-03-18 02:12:00,759 Cedar St, Dallas,TX,75001 +175880,Bose SoundSport Headphones,1,99.99,2019-03-19 05:36:00,507 13th St, Portland,OR,97035 +175881,Flatscreen TV,1,300.0,2019-03-07 08:23:00,68 Main St, San Francisco,CA,94016 +175882,Lightning Charging Cable,1,14.95,2019-03-28 18:58:00,555 2nd St, San Francisco,CA,94016 +175883,27in FHD Monitor,1,149.99,2019-03-16 17:40:00,818 12th St, Boston,MA,02215 +175884,Lightning Charging Cable,1,14.95,2019-03-15 13:52:00,873 Maple St, New York City,NY,10001 +175885,Flatscreen TV,1,300.0,2019-03-11 08:49:00,259 7th St, Atlanta,GA,30301 +175886,Macbook Pro Laptop,1,1700.0,2019-03-21 13:20:00,855 1st St, San Francisco,CA,94016 +175887,Lightning Charging Cable,1,14.95,2019-03-11 22:10:00,559 Dogwood St, Portland,ME,04101 +175888,AA Batteries (4-pack),1,3.84,2019-03-22 18:50:00,652 Center St, Los Angeles,CA,90001 +175889,Lightning Charging Cable,1,14.95,2019-03-01 15:14:00,516 Walnut St, New York City,NY,10001 +175890,ThinkPad Laptop,1,999.99,2019-03-10 18:18:00,140 Madison St, New York City,NY,10001 +175891,USB-C Charging Cable,1,11.95,2019-03-28 11:25:00,191 South St, Seattle,WA,98101 +175892,Bose SoundSport Headphones,1,99.99,2019-03-12 06:16:00,173 4th St, Dallas,TX,75001 +175893,AAA Batteries (4-pack),1,2.99,2019-03-17 10:27:00,333 Hill St, Seattle,WA,98101 +175894,ThinkPad Laptop,1,999.99,2019-03-17 23:34:00,849 12th St, Boston,MA,02215 +175895,Wired Headphones,1,11.99,2019-03-01 15:14:00,560 9th St, San Francisco,CA,94016 +175896,Lightning Charging Cable,1,14.95,2019-03-26 16:57:00,182 2nd St, San Francisco,CA,94016 +175897,27in FHD Monitor,1,149.99,2019-03-06 21:38:00,448 Pine St, New York City,NY,10001 +175898,34in Ultrawide Monitor,1,379.99,2019-03-13 14:01:00,176 Church St, Boston,MA,02215 +175899,27in FHD Monitor,1,149.99,2019-03-31 06:23:00,293 9th St, San Francisco,CA,94016 +175900,Lightning Charging Cable,1,14.95,2019-03-13 09:20:00,478 Ridge St, New York City,NY,10001 +175901,AAA Batteries (4-pack),1,2.99,2019-03-20 21:09:00,766 13th St, Los Angeles,CA,90001 +175902,Apple Airpods Headphones,1,150.0,2019-03-07 22:06:00,13 Lake St, Atlanta,GA,30301 +175903,AA Batteries (4-pack),2,3.84,2019-03-23 14:50:00,870 Dogwood St, Atlanta,GA,30301 +175904,Apple Airpods Headphones,1,150.0,2019-03-08 06:40:00,479 2nd St, Los Angeles,CA,90001 +175905,ThinkPad Laptop,1,999.99,2019-03-02 18:21:00,678 Johnson St, Boston,MA,02215 +175906,34in Ultrawide Monitor,1,379.99,2019-03-12 15:39:00,79 1st St, Boston,MA,02215 +175907,Wired Headphones,1,11.99,2019-03-16 00:11:00,573 Hickory St, Los Angeles,CA,90001 +175908,Bose SoundSport Headphones,1,99.99,2019-03-27 07:21:00,797 11th St, Dallas,TX,75001 +175909,AA Batteries (4-pack),1,3.84,2019-03-11 11:56:00,951 South St, Dallas,TX,75001 +175910,27in 4K Gaming Monitor,1,389.99,2019-03-30 13:40:00,205 Meadow St, Boston,MA,02215 +175911,Wired Headphones,2,11.99,2019-03-25 16:15:00,683 6th St, Austin,TX,73301 +175912,USB-C Charging Cable,1,11.95,2019-03-18 18:25:00,957 5th St, San Francisco,CA,94016 +175913,Lightning Charging Cable,1,14.95,2019-03-13 01:04:00,525 9th St, Los Angeles,CA,90001 +175914,Wired Headphones,1,11.99,2019-03-20 14:58:00,195 Willow St, Atlanta,GA,30301 +175915,Bose SoundSport Headphones,1,99.99,2019-03-19 13:09:00,145 River St, San Francisco,CA,94016 +175916,Bose SoundSport Headphones,1,99.99,2019-03-28 15:34:00,273 Main St, Portland,OR,97035 +175916,AA Batteries (4-pack),1,3.84,2019-03-28 15:34:00,273 Main St, Portland,OR,97035 +175917,Google Phone,1,600.0,2019-03-21 19:49:00,532 7th St, San Francisco,CA,94016 +175917,Wired Headphones,1,11.99,2019-03-21 19:49:00,532 7th St, San Francisco,CA,94016 +175918,Apple Airpods Headphones,1,150.0,2019-03-28 06:02:00,421 Hill St, Austin,TX,73301 +175919,USB-C Charging Cable,1,11.95,2019-03-15 16:07:00,275 11th St, Austin,TX,73301 +175920,Bose SoundSport Headphones,1,99.99,2019-03-26 13:21:00,498 Sunset St, Seattle,WA,98101 +175921,Apple Airpods Headphones,1,150.0,2019-03-11 19:40:00,213 Spruce St, Los Angeles,CA,90001 +175922,Macbook Pro Laptop,1,1700.0,2019-03-12 08:54:00,467 14th St, San Francisco,CA,94016 +175923,34in Ultrawide Monitor,1,379.99,2019-03-18 21:48:00,520 1st St, Los Angeles,CA,90001 +175924,Lightning Charging Cable,1,14.95,2019-03-27 09:24:00,850 Meadow St, San Francisco,CA,94016 +175925,AAA Batteries (4-pack),1,2.99,2019-03-03 14:10:00,654 Maple St, Los Angeles,CA,90001 +175926,Wired Headphones,1,11.99,2019-03-22 20:15:00,340 Maple St, New York City,NY,10001 +175927,Wired Headphones,1,11.99,2019-03-24 15:43:00,598 Cedar St, San Francisco,CA,94016 +175928,Flatscreen TV,1,300.0,2019-03-24 15:11:00,108 Maple St, Boston,MA,02215 +175929,USB-C Charging Cable,1,11.95,2019-03-07 14:42:00,867 Church St, Dallas,TX,75001 +175930,27in FHD Monitor,1,149.99,2019-03-18 21:23:00,685 4th St, New York City,NY,10001 +175931,27in FHD Monitor,1,149.99,2019-03-29 21:32:00,757 14th St, Austin,TX,73301 +175932,Wired Headphones,1,11.99,2019-03-13 11:52:00,604 Walnut St, San Francisco,CA,94016 +175933,iPhone,1,700.0,2019-03-17 15:23:00,653 Meadow St, Portland,OR,97035 +175933,27in 4K Gaming Monitor,1,389.99,2019-03-17 15:23:00,653 Meadow St, Portland,OR,97035 +175934,AAA Batteries (4-pack),2,2.99,2019-03-18 19:26:00,120 5th St, San Francisco,CA,94016 +175935,Bose SoundSport Headphones,1,99.99,2019-03-12 12:15:00,410 Spruce St, Los Angeles,CA,90001 +175936,Bose SoundSport Headphones,1,99.99,2019-03-08 16:28:00,378 Spruce St, San Francisco,CA,94016 +175937,AAA Batteries (4-pack),2,2.99,2019-03-30 22:22:00,786 Elm St, Los Angeles,CA,90001 +175938,Vareebadd Phone,1,400.0,2019-03-03 13:44:00,962 South St, Los Angeles,CA,90001 +175939,27in 4K Gaming Monitor,1,389.99,2019-03-14 11:20:00,61 Jackson St, Los Angeles,CA,90001 +175940,Wired Headphones,1,11.99,2019-03-04 10:54:00,951 Meadow St, Seattle,WA,98101 +175941,Google Phone,1,600.0,2019-03-26 18:53:00,44 Highland St, Dallas,TX,75001 +175942,Wired Headphones,1,11.99,2019-03-09 16:07:00,740 Elm St, Seattle,WA,98101 +175943,iPhone,1,700.0,2019-03-25 19:34:00,904 Sunset St, San Francisco,CA,94016 +175944,Vareebadd Phone,1,400.0,2019-03-18 11:00:00,209 Johnson St, Austin,TX,73301 +175945,Lightning Charging Cable,2,14.95,2019-03-11 23:49:00,611 11th St, New York City,NY,10001 +175946,Lightning Charging Cable,1,14.95,2019-03-28 11:16:00,678 4th St, San Francisco,CA,94016 +175947,Flatscreen TV,1,300.0,2019-03-19 11:52:00,250 Dogwood St, San Francisco,CA,94016 +175948,Apple Airpods Headphones,1,150.0,2019-03-23 14:50:00,298 Hickory St, Boston,MA,02215 +175949,27in FHD Monitor,1,149.99,2019-03-03 16:04:00,547 Meadow St, San Francisco,CA,94016 +175950,27in FHD Monitor,1,149.99,2019-03-09 20:56:00,677 Madison St, Boston,MA,02215 +175951,LG Dryer,1,600.0,2019-04-01 00:04:00,469 Walnut St, Dallas,TX,75001 +175952,27in 4K Gaming Monitor,1,389.99,2019-03-21 19:28:00,434 Jackson St, Austin,TX,73301 +175953,Lightning Charging Cable,1,14.95,2019-03-27 02:42:00,247 Highland St, Seattle,WA,98101 +175954,AA Batteries (4-pack),1,3.84,2019-03-20 11:40:00,959 Hill St, Atlanta,GA,30301 +175955,USB-C Charging Cable,1,11.95,2019-03-30 22:59:00,101 7th St, San Francisco,CA,94016 +175956,AA Batteries (4-pack),2,3.84,2019-03-11 22:07:00,856 Adams St, Atlanta,GA,30301 +175957,USB-C Charging Cable,1,11.95,2019-03-16 18:17:00,286 11th St, Dallas,TX,75001 +175958,Lightning Charging Cable,1,14.95,2019-03-18 11:40:00,492 Chestnut St, San Francisco,CA,94016 +175959,Lightning Charging Cable,1,14.95,2019-03-02 14:59:00,289 7th St, New York City,NY,10001 +175960,Wired Headphones,1,11.99,2019-03-16 13:46:00,271 Pine St, Los Angeles,CA,90001 +175961,Google Phone,1,600.0,2019-03-15 23:09:00,936 Maple St, Dallas,TX,75001 +175962,USB-C Charging Cable,1,11.95,2019-03-13 15:52:00,750 Hill St, New York City,NY,10001 +175963,USB-C Charging Cable,1,11.95,2019-03-06 20:42:00,276 14th St, Portland,ME,04101 +175964,AA Batteries (4-pack),1,3.84,2019-03-05 13:10:00,861 Maple St, San Francisco,CA,94016 +175965,iPhone,1,700.0,2019-03-14 19:18:00,912 Park St, San Francisco,CA,94016 +175965,Lightning Charging Cable,1,14.95,2019-03-14 19:18:00,912 Park St, San Francisco,CA,94016 +175966,Wired Headphones,1,11.99,2019-03-29 13:22:00,269 Maple St, Austin,TX,73301 +175967,Lightning Charging Cable,1,14.95,2019-03-06 10:56:00,126 Lakeview St, Boston,MA,02215 +175968,Wired Headphones,1,11.99,2019-03-17 11:21:00,324 Adams St, Seattle,WA,98101 +175969,iPhone,1,700.0,2019-03-01 14:30:00,551 Lincoln St, New York City,NY,10001 +175970,AAA Batteries (4-pack),1,2.99,2019-03-28 07:07:00,47 Main St, Boston,MA,02215 +175971,USB-C Charging Cable,1,11.95,2019-03-05 19:16:00,713 1st St, Boston,MA,02215 +175972,Wired Headphones,1,11.99,2019-03-23 23:23:00,240 Park St, Boston,MA,02215 +175973,Bose SoundSport Headphones,1,99.99,2019-03-13 18:03:00,378 Walnut St, Atlanta,GA,30301 +175974,ThinkPad Laptop,1,999.99,2019-03-16 01:37:00,281 Pine St, Los Angeles,CA,90001 +175975,AA Batteries (4-pack),1,3.84,2019-03-25 20:15:00,175 Park St, Portland,ME,04101 +175976,Apple Airpods Headphones,1,150.0,2019-03-17 09:15:00,544 1st St, Dallas,TX,75001 +175977,USB-C Charging Cable,1,11.95,2019-03-20 19:26:00,94 7th St, Los Angeles,CA,90001 +175978,Bose SoundSport Headphones,1,99.99,2019-03-06 22:11:00,479 Johnson St, Los Angeles,CA,90001 +175979,Wired Headphones,1,11.99,2019-03-09 13:45:00,130 Sunset St, Portland,ME,04101 +175980,Apple Airpods Headphones,1,150.0,2019-03-12 07:38:00,418 13th St, Los Angeles,CA,90001 +175981,AAA Batteries (4-pack),1,2.99,2019-03-23 17:56:00,783 Pine St, San Francisco,CA,94016 +175982,Wired Headphones,1,11.99,2019-03-06 19:41:00,319 Willow St, San Francisco,CA,94016 +175983,Macbook Pro Laptop,1,1700.0,2019-03-20 14:04:00,200 Hill St, Austin,TX,73301 +175984,Lightning Charging Cable,1,14.95,2019-03-22 21:53:00,684 Willow St, Boston,MA,02215 +175985,Bose SoundSport Headphones,1,99.99,2019-03-21 21:35:00,885 Maple St, Portland,OR,97035 +175986,ThinkPad Laptop,1,999.99,2019-03-25 09:55:00,141 Walnut St, New York City,NY,10001 +175987,Apple Airpods Headphones,1,150.0,2019-03-17 17:03:00,208 Hill St, Atlanta,GA,30301 +175988,Lightning Charging Cable,1,14.95,2019-03-10 06:18:00,859 Sunset St, Austin,TX,73301 +175989,Wired Headphones,1,11.99,2019-03-17 04:16:00,524 7th St, Los Angeles,CA,90001 +175990,20in Monitor,1,109.99,2019-03-10 14:25:00,620 Willow St, San Francisco,CA,94016 +175991,AAA Batteries (4-pack),1,2.99,2019-03-23 11:48:00,29 Cherry St, Los Angeles,CA,90001 +175992,Apple Airpods Headphones,1,150.0,2019-03-30 14:53:00,88 Main St, New York City,NY,10001 +175993,Flatscreen TV,1,300.0,2019-03-11 07:18:00,956 Jefferson St, Austin,TX,73301 +175994,Bose SoundSport Headphones,1,99.99,2019-03-08 13:13:00,715 Park St, Los Angeles,CA,90001 +175995,USB-C Charging Cable,2,11.95,2019-03-01 12:50:00,571 10th St, Atlanta,GA,30301 +175996,AAA Batteries (4-pack),1,2.99,2019-03-15 18:42:00,241 Hickory St, Portland,OR,97035 +175997,Wired Headphones,2,11.99,2019-03-07 18:30:00,832 11th St, Boston,MA,02215 +175998,Lightning Charging Cable,1,14.95,2019-03-01 12:44:00,948 14th St, New York City,NY,10001 +175999,AAA Batteries (4-pack),2,2.99,2019-03-25 20:50:00,600 Madison St, Dallas,TX,75001 +176000,AAA Batteries (4-pack),4,2.99,2019-03-20 12:48:00,852 Sunset St, Los Angeles,CA,90001 +176001,USB-C Charging Cable,1,11.95,2019-03-26 21:11:00,257 Ridge St, San Francisco,CA,94016 +176002,Bose SoundSport Headphones,1,99.99,2019-03-10 22:16:00,475 Highland St, San Francisco,CA,94016 +176003,AAA Batteries (4-pack),1,2.99,2019-03-13 16:18:00,574 Meadow St, New York City,NY,10001 +176004,Google Phone,1,600.0,2019-03-08 11:41:00,653 Park St, Seattle,WA,98101 +176005,USB-C Charging Cable,1,11.95,2019-03-02 23:36:00,810 Pine St, New York City,NY,10001 +176006,LG Dryer,1,600.0,2019-03-05 15:48:00,988 5th St, San Francisco,CA,94016 +176007,Wired Headphones,1,11.99,2019-03-15 21:03:00,362 1st St, Boston,MA,02215 +176008,Macbook Pro Laptop,1,1700.0,2019-03-09 20:05:00,122 Chestnut St, Portland,OR,97035 +176009,Bose SoundSport Headphones,1,99.99,2019-03-05 13:36:00,80 Madison St, Dallas,TX,75001 +176010,20in Monitor,1,109.99,2019-03-07 20:10:00,557 Meadow St, Austin,TX,73301 +176011,AA Batteries (4-pack),1,3.84,2019-03-31 15:43:00,942 Highland St, Los Angeles,CA,90001 +176012,Wired Headphones,1,11.99,2019-03-31 19:02:00,760 River St, Boston,MA,02215 +176013,AA Batteries (4-pack),1,3.84,2019-03-11 13:19:00,924 5th St, Los Angeles,CA,90001 +176014,Bose SoundSport Headphones,1,99.99,2019-03-27 19:44:00,60 Jackson St, Austin,TX,73301 +176015,AA Batteries (4-pack),3,3.84,2019-03-23 13:26:00,589 8th St, Seattle,WA,98101 +176016,AA Batteries (4-pack),1,3.84,2019-03-08 18:31:00,659 4th St, San Francisco,CA,94016 +176017,Wired Headphones,1,11.99,2019-03-16 14:19:00,916 Jefferson St, Portland,OR,97035 +176018,Lightning Charging Cable,1,14.95,2019-03-27 00:40:00,547 Ridge St, Portland,ME,04101 +176019,USB-C Charging Cable,1,11.95,2019-03-25 17:37:00,387 14th St, New York City,NY,10001 +176020,AA Batteries (4-pack),1,3.84,2019-03-24 19:30:00,940 9th St, New York City,NY,10001 +176021,Lightning Charging Cable,1,14.95,2019-03-26 11:45:00,12 Maple St, San Francisco,CA,94016 +176022,Wired Headphones,1,11.99,2019-03-04 14:37:00,59 5th St, Seattle,WA,98101 +176023,Apple Airpods Headphones,1,150.0,2019-03-17 14:09:00,805 Lake St, San Francisco,CA,94016 +176024,AAA Batteries (4-pack),1,2.99,2019-03-05 20:34:00,366 14th St, San Francisco,CA,94016 +176025,AAA Batteries (4-pack),1,2.99,2019-03-20 19:39:00,795 13th St, Atlanta,GA,30301 +176026,Macbook Pro Laptop,1,1700.0,2019-03-12 18:05:00,503 14th St, New York City,NY,10001 +176027,AAA Batteries (4-pack),1,2.99,2019-03-12 11:34:00,234 Main St, Boston,MA,02215 +176028,AA Batteries (4-pack),1,3.84,2019-03-03 18:08:00,681 10th St, San Francisco,CA,94016 +176029,Lightning Charging Cable,1,14.95,2019-03-04 13:24:00,902 Meadow St, Dallas,TX,75001 +176030,AAA Batteries (4-pack),1,2.99,2019-03-12 05:16:00,951 Cedar St, Seattle,WA,98101 +176031,AA Batteries (4-pack),1,3.84,2019-03-07 13:24:00,74 1st St, Portland,ME,04101 +176032,AA Batteries (4-pack),1,3.84,2019-03-26 01:34:00,598 Cherry St, Seattle,WA,98101 +176033,Macbook Pro Laptop,1,1700.0,2019-03-10 11:33:00,332 South St, Los Angeles,CA,90001 +176034,27in 4K Gaming Monitor,1,389.99,2019-03-20 15:05:00,740 Meadow St, Austin,TX,73301 +176035,Apple Airpods Headphones,1,150.0,2019-03-14 13:55:00,401 Main St, San Francisco,CA,94016 +176036,Macbook Pro Laptop,1,1700.0,2019-03-16 19:21:00,504 11th St, Portland,OR,97035 +176037,27in 4K Gaming Monitor,1,389.99,2019-03-26 21:22:00,332 10th St, New York City,NY,10001 +176038,Lightning Charging Cable,1,14.95,2019-03-18 10:33:00,945 5th St, Atlanta,GA,30301 +176039,Macbook Pro Laptop,1,1700.0,2019-03-28 15:20:00,521 Forest St, New York City,NY,10001 +176040,Wired Headphones,1,11.99,2019-03-06 13:27:00,23 Ridge St, New York City,NY,10001 +176041,34in Ultrawide Monitor,1,379.99,2019-03-16 23:46:00,541 7th St, Dallas,TX,75001 +176042,27in FHD Monitor,1,149.99,2019-03-09 22:01:00,795 9th St, San Francisco,CA,94016 +176043,Google Phone,1,600.0,2019-03-21 22:07:00,795 Washington St, New York City,NY,10001 +176044,AAA Batteries (4-pack),2,2.99,2019-03-11 13:25:00,504 Center St, San Francisco,CA,94016 +176045,Bose SoundSport Headphones,1,99.99,2019-03-11 13:07:00,675 Chestnut St, Atlanta,GA,30301 +176046,Wired Headphones,1,11.99,2019-03-16 16:09:00,865 7th St, Boston,MA,02215 +176047,AA Batteries (4-pack),1,3.84,2019-03-17 15:19:00,871 Pine St, San Francisco,CA,94016 +176048,Wired Headphones,1,11.99,2019-03-24 12:12:00,623 5th St, Portland,ME,04101 +176049,Wired Headphones,2,11.99,2019-03-28 12:24:00,773 Main St, Boston,MA,02215 +176050,USB-C Charging Cable,1,11.95,2019-03-21 23:03:00,511 West St, New York City,NY,10001 +176051,USB-C Charging Cable,1,11.95,2019-03-02 09:22:00,119 Hickory St, Los Angeles,CA,90001 +176052,Macbook Pro Laptop,1,1700.0,2019-03-01 20:25:00,849 Park St, San Francisco,CA,94016 +176053,iPhone,1,700.0,2019-03-18 13:41:00,797 8th St, Boston,MA,02215 +176054,AA Batteries (4-pack),1,3.84,2019-03-23 13:19:00,955 9th St, San Francisco,CA,94016 +176055,Flatscreen TV,1,300.0,2019-03-16 13:41:00,943 South St, Austin,TX,73301 +176056,AA Batteries (4-pack),1,3.84,2019-03-18 08:08:00,406 Willow St, Boston,MA,02215 +176057,Wired Headphones,1,11.99,2019-03-29 17:26:00,781 4th St, Dallas,TX,75001 +176058,Bose SoundSport Headphones,2,99.99,2019-03-17 16:00:00,929 8th St, Los Angeles,CA,90001 +176059,Apple Airpods Headphones,1,150.0,2019-03-12 19:22:00,974 Walnut St, San Francisco,CA,94016 +176060,AA Batteries (4-pack),3,3.84,2019-03-24 13:04:00,893 Walnut St, New York City,NY,10001 +176060,AAA Batteries (4-pack),1,2.99,2019-03-24 13:04:00,893 Walnut St, New York City,NY,10001 +176061,AAA Batteries (4-pack),4,2.99,2019-03-20 22:54:00,985 Maple St, San Francisco,CA,94016 +176062,Apple Airpods Headphones,1,150.0,2019-03-17 13:40:00,158 Maple St, San Francisco,CA,94016 +176063,Wired Headphones,1,11.99,2019-03-03 17:21:00,687 Hill St, New York City,NY,10001 +176064,AA Batteries (4-pack),1,3.84,2019-03-13 16:39:00,198 Johnson St, Los Angeles,CA,90001 +176065,Bose SoundSport Headphones,1,99.99,2019-03-22 21:57:00,60 7th St, San Francisco,CA,94016 +176066,AAA Batteries (4-pack),1,2.99,2019-03-07 22:45:00,910 13th St, San Francisco,CA,94016 +176067,Wired Headphones,1,11.99,2019-03-27 11:24:00,64 Adams St, New York City,NY,10001 +176068,Macbook Pro Laptop,1,1700.0,2019-03-04 13:28:00,94 Meadow St, New York City,NY,10001 +176069,27in 4K Gaming Monitor,1,389.99,2019-03-07 20:03:00,804 South St, Seattle,WA,98101 +176070,AAA Batteries (4-pack),2,2.99,2019-03-28 19:51:00,331 Forest St, San Francisco,CA,94016 +176071,AAA Batteries (4-pack),1,2.99,2019-03-02 18:47:00,194 Dogwood St, Atlanta,GA,30301 +176072,Google Phone,1,600.0,2019-03-09 18:36:00,784 14th St, Los Angeles,CA,90001 +176073,Vareebadd Phone,1,400.0,2019-03-06 14:07:00,631 9th St, Los Angeles,CA,90001 +176074,Bose SoundSport Headphones,1,99.99,2019-03-02 17:55:00,473 Walnut St, Boston,MA,02215 +176075,AA Batteries (4-pack),1,3.84,2019-03-23 16:22:00,329 Spruce St, Seattle,WA,98101 +176076,USB-C Charging Cable,1,11.95,2019-03-06 14:50:00,76 Madison St, Austin,TX,73301 +176077,Lightning Charging Cable,1,14.95,2019-03-16 16:02:00,225 Jackson St, Dallas,TX,75001 +176078,Vareebadd Phone,1,400.0,2019-03-27 12:25:00,698 Chestnut St, Portland,OR,97035 +176079,27in FHD Monitor,1,149.99,2019-03-25 14:05:00,154 Main St, New York City,NY,10001 +176080,AA Batteries (4-pack),3,3.84,2019-03-05 12:55:00,766 Ridge St, Atlanta,GA,30301 +176081,Wired Headphones,1,11.99,2019-03-22 19:47:00,525 11th St, San Francisco,CA,94016 +176082,Google Phone,1,600.0,2019-03-14 11:27:00,713 Lincoln St, Portland,OR,97035 +176083,AA Batteries (4-pack),1,3.84,2019-03-06 17:33:00,735 Lincoln St, Boston,MA,02215 +176084,AA Batteries (4-pack),1,3.84,2019-03-15 21:42:00,385 Adams St, Seattle,WA,98101 +176085,ThinkPad Laptop,1,999.99,2019-03-02 23:50:00,534 Lakeview St, Los Angeles,CA,90001 +176086,Flatscreen TV,1,300.0,2019-03-15 21:26:00,291 Jackson St, San Francisco,CA,94016 +176087,Google Phone,1,600.0,2019-03-18 10:17:00,500 Cedar St, Los Angeles,CA,90001 +176087,Wired Headphones,1,11.99,2019-03-18 10:17:00,500 Cedar St, Los Angeles,CA,90001 +176088,USB-C Charging Cable,1,11.95,2019-03-14 11:13:00,629 Lincoln St, Los Angeles,CA,90001 +176089,USB-C Charging Cable,1,11.95,2019-03-03 08:41:00,64 14th St, Los Angeles,CA,90001 +176090,USB-C Charging Cable,1,11.95,2019-03-18 00:18:00,546 Dogwood St, Seattle,WA,98101 +176091,Bose SoundSport Headphones,1,99.99,2019-03-07 18:13:00,279 Spruce St, Los Angeles,CA,90001 +176092,Bose SoundSport Headphones,1,99.99,2019-03-24 22:27:00,240 Wilson St, Atlanta,GA,30301 +176093,Wired Headphones,1,11.99,2019-03-09 18:36:00,478 4th St, Los Angeles,CA,90001 +176094,27in FHD Monitor,1,149.99,2019-03-01 09:34:00,779 12th St, San Francisco,CA,94016 +176095,Bose SoundSport Headphones,1,99.99,2019-03-08 21:48:00,743 West St, New York City,NY,10001 +176096,Lightning Charging Cable,1,14.95,2019-03-22 10:59:00,486 10th St, Seattle,WA,98101 +176096,AA Batteries (4-pack),1,3.84,2019-03-22 10:59:00,486 10th St, Seattle,WA,98101 +176097,Bose SoundSport Headphones,1,99.99,2019-03-17 09:54:00,502 North St, Los Angeles,CA,90001 +176098,Google Phone,1,600.0,2019-03-06 16:17:00,499 Walnut St, San Francisco,CA,94016 +176098,USB-C Charging Cable,1,11.95,2019-03-06 16:17:00,499 Walnut St, San Francisco,CA,94016 +176099,AA Batteries (4-pack),1,3.84,2019-03-22 13:14:00,675 9th St, San Francisco,CA,94016 +176100,USB-C Charging Cable,1,11.95,2019-03-14 11:29:00,282 Cedar St, New York City,NY,10001 +176101,Vareebadd Phone,1,400.0,2019-03-18 18:25:00,796 Cedar St, Seattle,WA,98101 +176102,iPhone,1,700.0,2019-03-21 09:04:00,813 7th St, San Francisco,CA,94016 +176103,AAA Batteries (4-pack),2,2.99,2019-03-31 17:05:00,478 11th St, Los Angeles,CA,90001 +176104,LG Washing Machine,1,600.0,2019-03-12 10:54:00,297 River St, Boston,MA,02215 +176105,ThinkPad Laptop,1,999.99,2019-03-05 12:33:00,290 Lake St, Boston,MA,02215 +176106,Vareebadd Phone,1,400.0,2019-03-03 14:31:00,107 Spruce St, Dallas,TX,75001 +176107,Apple Airpods Headphones,1,150.0,2019-03-22 10:50:00,935 Pine St, San Francisco,CA,94016 +176108,27in FHD Monitor,1,149.99,2019-03-20 09:40:00,982 Lincoln St, New York City,NY,10001 +176109,Google Phone,1,600.0,2019-03-30 11:45:00,477 Hill St, Boston,MA,02215 +176110,Lightning Charging Cable,1,14.95,2019-03-22 06:24:00,916 Sunset St, Boston,MA,02215 +176111,USB-C Charging Cable,1,11.95,2019-03-01 18:50:00,699 1st St, New York City,NY,10001 +176112,USB-C Charging Cable,1,11.95,2019-03-02 10:35:00,317 Hill St, New York City,NY,10001 +176113,Wired Headphones,1,11.99,2019-03-10 17:30:00,426 Park St, San Francisco,CA,94016 +176114,USB-C Charging Cable,1,11.95,2019-03-03 13:17:00,407 Spruce St, San Francisco,CA,94016 +176115,AAA Batteries (4-pack),1,2.99,2019-03-18 23:12:00,946 12th St, Portland,OR,97035 +176116,USB-C Charging Cable,1,11.95,2019-03-10 11:59:00,644 Park St, San Francisco,CA,94016 +176117,Wired Headphones,1,11.99,2019-03-31 18:08:00,279 Chestnut St, Los Angeles,CA,90001 +176118,Bose SoundSport Headphones,1,99.99,2019-03-11 19:18:00,914 Sunset St, Boston,MA,02215 +176119,AAA Batteries (4-pack),2,2.99,2019-03-06 16:04:00,398 West St, Los Angeles,CA,90001 +176120,Lightning Charging Cable,1,14.95,2019-03-01 22:07:00,245 Chestnut St, Los Angeles,CA,90001 +176121,20in Monitor,1,109.99,2019-03-14 17:30:00,412 Forest St, San Francisco,CA,94016 +176122,Bose SoundSport Headphones,1,99.99,2019-03-19 14:45:00,530 Meadow St, San Francisco,CA,94016 +176123,Bose SoundSport Headphones,1,99.99,2019-03-27 21:37:00,278 South St, New York City,NY,10001 +176124,Bose SoundSport Headphones,1,99.99,2019-03-12 17:39:00,21 Forest St, Atlanta,GA,30301 +176125,Lightning Charging Cable,1,14.95,2019-03-05 12:10:00,717 Park St, San Francisco,CA,94016 +176126,USB-C Charging Cable,1,11.95,2019-03-09 23:37:00,820 Lincoln St, San Francisco,CA,94016 +176127,Lightning Charging Cable,1,14.95,2019-03-18 09:30:00,828 10th St, San Francisco,CA,94016 +176128,AA Batteries (4-pack),2,3.84,2019-03-23 11:21:00,979 Sunset St, Atlanta,GA,30301 +176129,iPhone,1,700.0,2019-03-16 17:44:00,546 Highland St, Los Angeles,CA,90001 +176130,AAA Batteries (4-pack),1,2.99,2019-03-11 19:41:00,468 11th St, Portland,OR,97035 +176131,AAA Batteries (4-pack),1,2.99,2019-03-16 23:09:00,888 Hickory St, Los Angeles,CA,90001 +176132,Apple Airpods Headphones,1,150.0,2019-03-24 17:36:00,328 Madison St, New York City,NY,10001 +176133,Bose SoundSport Headphones,1,99.99,2019-03-07 16:47:00,107 Hickory St, Portland,OR,97035 +176134,Lightning Charging Cable,1,14.95,2019-03-22 13:48:00,852 Sunset St, Los Angeles,CA,90001 +176135,AAA Batteries (4-pack),2,2.99,2019-03-05 18:29:00,431 Adams St, Seattle,WA,98101 +176136,27in FHD Monitor,1,149.99,2019-03-18 19:35:00,468 Cedar St, Los Angeles,CA,90001 +176137,AA Batteries (4-pack),2,3.84,2019-03-14 20:48:00,502 Dogwood St, San Francisco,CA,94016 +176138,Apple Airpods Headphones,1,150.0,2019-03-01 20:36:00,582 Cherry St, San Francisco,CA,94016 +176139,USB-C Charging Cable,1,11.95,2019-03-10 11:54:00,825 Hickory St, Dallas,TX,75001 +176140,34in Ultrawide Monitor,1,379.99,2019-03-25 13:46:00,475 Chestnut St, New York City,NY,10001 +176141,Apple Airpods Headphones,1,150.0,2019-03-11 02:03:00,881 8th St, Seattle,WA,98101 +176142,Lightning Charging Cable,1,14.95,2019-03-15 14:04:00,618 Park St, Atlanta,GA,30301 +176143,USB-C Charging Cable,2,11.95,2019-03-31 09:35:00,158 4th St, Seattle,WA,98101 +176143,iPhone,1,700.0,2019-03-31 09:35:00,158 4th St, Seattle,WA,98101 +176144,Apple Airpods Headphones,1,150.0,2019-03-22 10:40:00,205 Center St, Los Angeles,CA,90001 +176145,Bose SoundSport Headphones,1,99.99,2019-03-07 12:05:00,301 1st St, Boston,MA,02215 +176146,iPhone,1,700.0,2019-03-16 21:41:00,31 Wilson St, New York City,NY,10001 +176147,Lightning Charging Cable,1,14.95,2019-03-08 18:02:00,62 Church St, Los Angeles,CA,90001 +176148,Apple Airpods Headphones,1,150.0,2019-03-06 00:16:00,714 Park St, San Francisco,CA,94016 +176149,Bose SoundSport Headphones,1,99.99,2019-03-13 22:29:00,109 Chestnut St, Los Angeles,CA,90001 +176150,AA Batteries (4-pack),1,3.84,2019-03-07 00:42:00,183 13th St, Seattle,WA,98101 +176151,Lightning Charging Cable,1,14.95,2019-03-12 13:46:00,483 6th St, New York City,NY,10001 +176152,Lightning Charging Cable,1,14.95,2019-03-08 11:11:00,453 Maple St, Austin,TX,73301 +176153,AA Batteries (4-pack),1,3.84,2019-03-21 23:27:00,694 Center St, Austin,TX,73301 +176154,AA Batteries (4-pack),1,3.84,2019-03-06 09:19:00,877 Jackson St, Seattle,WA,98101 +176155,iPhone,1,700.0,2019-03-25 11:38:00,73 11th St, Seattle,WA,98101 +176155,Wired Headphones,1,11.99,2019-03-25 11:38:00,73 11th St, Seattle,WA,98101 +176156,Google Phone,1,600.0,2019-03-14 16:02:00,934 2nd St, Boston,MA,02215 +176157,34in Ultrawide Monitor,1,379.99,2019-03-11 01:12:00,35 Washington St, Portland,OR,97035 +176158,Bose SoundSport Headphones,1,99.99,2019-03-23 17:25:00,853 West St, Portland,OR,97035 +176159,AAA Batteries (4-pack),3,2.99,2019-03-27 05:39:00,741 6th St, San Francisco,CA,94016 +176160,AAA Batteries (4-pack),1,2.99,2019-03-24 23:00:00,904 Cherry St, Atlanta,GA,30301 +176161,Wired Headphones,1,11.99,2019-03-04 05:01:00,995 13th St, New York City,NY,10001 +176162,AAA Batteries (4-pack),2,2.99,2019-03-30 20:30:00,551 Jackson St, New York City,NY,10001 +176163,Lightning Charging Cable,1,14.95,2019-03-09 19:45:00,597 10th St, Los Angeles,CA,90001 +176164,AA Batteries (4-pack),1,3.84,2019-03-31 18:15:00,951 Pine St, Seattle,WA,98101 +176165,AAA Batteries (4-pack),1,2.99,2019-03-12 21:56:00,426 Washington St, Dallas,TX,75001 +176166,Bose SoundSport Headphones,1,99.99,2019-03-05 19:07:00,576 Elm St, Portland,ME,04101 +176167,Wired Headphones,1,11.99,2019-03-03 16:25:00,486 Cherry St, New York City,NY,10001 +176168,27in FHD Monitor,1,149.99,2019-03-19 21:14:00,765 10th St, San Francisco,CA,94016 +176169,USB-C Charging Cable,1,11.95,2019-03-17 12:45:00,906 Hill St, Los Angeles,CA,90001 +176170,Bose SoundSport Headphones,1,99.99,2019-03-18 21:35:00,562 Maple St, San Francisco,CA,94016 +176171,Wired Headphones,1,11.99,2019-03-09 15:39:00,612 11th St, Los Angeles,CA,90001 +176172,Apple Airpods Headphones,1,150.0,2019-03-26 08:39:00,78 Wilson St, Austin,TX,73301 +176173,USB-C Charging Cable,1,11.95,2019-03-10 20:46:00,156 5th St, Seattle,WA,98101 +176174,USB-C Charging Cable,1,11.95,2019-03-05 12:30:00,1 Dogwood St, Boston,MA,02215 +176175,Wired Headphones,1,11.99,2019-03-05 18:54:00,638 Jackson St, Atlanta,GA,30301 +176176,AA Batteries (4-pack),2,3.84,2019-03-12 23:28:00,788 Cedar St, Boston,MA,02215 +176177,Lightning Charging Cable,1,14.95,2019-03-17 21:15:00,819 Meadow St, Los Angeles,CA,90001 +176178,AA Batteries (4-pack),1,3.84,2019-03-10 17:01:00,685 Highland St, Atlanta,GA,30301 +176179,Macbook Pro Laptop,1,1700.0,2019-03-22 13:58:00,742 North St, Los Angeles,CA,90001 +176180,Google Phone,1,600.0,2019-03-22 18:34:00,221 11th St, New York City,NY,10001 +176181,Google Phone,1,600.0,2019-03-18 19:52:00,701 9th St, New York City,NY,10001 +176182,AA Batteries (4-pack),1,3.84,2019-03-28 18:18:00,211 North St, New York City,NY,10001 +176183,34in Ultrawide Monitor,1,379.99,2019-03-02 12:47:00,511 Main St, Atlanta,GA,30301 +176184,Apple Airpods Headphones,1,150.0,2019-03-13 19:55:00,608 River St, San Francisco,CA,94016 +176185,USB-C Charging Cable,1,11.95,2019-03-21 00:20:00,467 Washington St, Boston,MA,02215 +176186,USB-C Charging Cable,1,11.95,2019-03-23 13:58:00,58 Elm St, San Francisco,CA,94016 +176187,27in FHD Monitor,1,149.99,2019-03-29 18:14:00,660 5th St, Austin,TX,73301 +176188,Wired Headphones,1,11.99,2019-03-06 16:26:00,589 North St, New York City,NY,10001 +176189,ThinkPad Laptop,1,999.99,2019-03-28 12:28:00,739 Sunset St, Atlanta,GA,30301 +176190,Macbook Pro Laptop,1,1700.0,2019-03-02 20:26:00,246 Church St, Boston,MA,02215 +176191,AA Batteries (4-pack),2,3.84,2019-03-05 21:06:00,488 Chestnut St, Austin,TX,73301 +176192,iPhone,1,700.0,2019-03-07 22:40:00,315 River St, Los Angeles,CA,90001 +176192,Lightning Charging Cable,1,14.95,2019-03-07 22:40:00,315 River St, Los Angeles,CA,90001 +176193,iPhone,1,700.0,2019-03-10 01:11:00,443 4th St, Dallas,TX,75001 +176194,34in Ultrawide Monitor,1,379.99,2019-03-23 18:20:00,157 Park St, Austin,TX,73301 +176195,27in FHD Monitor,1,149.99,2019-03-09 05:52:00,249 Highland St, New York City,NY,10001 +176195,AAA Batteries (4-pack),1,2.99,2019-03-09 05:52:00,249 Highland St, New York City,NY,10001 +176196,AA Batteries (4-pack),1,3.84,2019-03-15 15:56:00,686 Jefferson St, Seattle,WA,98101 +176197,AA Batteries (4-pack),1,3.84,2019-03-28 19:33:00,198 13th St, New York City,NY,10001 +176198,34in Ultrawide Monitor,1,379.99,2019-03-11 09:44:00,974 8th St, Boston,MA,02215 +176199,Wired Headphones,1,11.99,2019-03-02 16:35:00,435 Main St, New York City,NY,10001 +176200,Apple Airpods Headphones,1,150.0,2019-03-06 14:55:00,419 Jackson St, Seattle,WA,98101 +176201,Lightning Charging Cable,1,14.95,2019-03-29 07:56:00,367 14th St, San Francisco,CA,94016 +176202,AA Batteries (4-pack),2,3.84,2019-03-12 21:22:00,868 9th St, San Francisco,CA,94016 +176203,Lightning Charging Cable,1,14.95,2019-03-04 17:16:00,800 Elm St, San Francisco,CA,94016 +176204,Wired Headphones,1,11.99,2019-03-23 01:06:00,137 Hickory St, Boston,MA,02215 +176205,Apple Airpods Headphones,1,150.0,2019-03-04 02:16:00,21 12th St, San Francisco,CA,94016 +176206,AAA Batteries (4-pack),1,2.99,2019-03-27 13:33:00,164 2nd St, San Francisco,CA,94016 +176207,Flatscreen TV,1,300.0,2019-03-25 19:06:00,868 South St, New York City,NY,10001 +176208,Bose SoundSport Headphones,1,99.99,2019-03-02 23:48:00,595 Adams St, New York City,NY,10001 +176209,AAA Batteries (4-pack),2,2.99,2019-03-20 08:35:00,250 Meadow St, Los Angeles,CA,90001 +176210,Bose SoundSport Headphones,1,99.99,2019-03-21 15:37:00,989 Hill St, Dallas,TX,75001 +176211,Bose SoundSport Headphones,1,99.99,2019-03-21 10:51:00,641 Johnson St, Los Angeles,CA,90001 +176212,USB-C Charging Cable,1,11.95,2019-03-09 19:19:00,746 Cherry St, New York City,NY,10001 +176213,Bose SoundSport Headphones,1,99.99,2019-03-14 03:49:00,668 Jefferson St, Atlanta,GA,30301 +176214,27in FHD Monitor,1,149.99,2019-03-05 16:31:00,223 Willow St, New York City,NY,10001 +176215,AAA Batteries (4-pack),1,2.99,2019-03-03 12:37:00,866 Sunset St, San Francisco,CA,94016 +176216,AA Batteries (4-pack),1,3.84,2019-03-06 15:34:00,576 Main St, San Francisco,CA,94016 +176217,iPhone,1,700.0,2019-03-09 12:25:00,633 Center St, San Francisco,CA,94016 +176217,Lightning Charging Cable,1,14.95,2019-03-09 12:25:00,633 Center St, San Francisco,CA,94016 +176218,USB-C Charging Cable,2,11.95,2019-03-07 12:44:00,827 Adams St, San Francisco,CA,94016 +176219,Bose SoundSport Headphones,1,99.99,2019-03-23 21:25:00,260 Main St, Boston,MA,02215 +176220,AA Batteries (4-pack),2,3.84,2019-03-18 00:19:00,491 River St, San Francisco,CA,94016 +176221,AA Batteries (4-pack),1,3.84,2019-03-11 21:44:00,182 8th St, Los Angeles,CA,90001 +176222,Lightning Charging Cable,1,14.95,2019-03-07 14:56:00,379 Park St, Los Angeles,CA,90001 +176223,Bose SoundSport Headphones,1,99.99,2019-03-15 20:26:00,861 Cherry St, New York City,NY,10001 +176224,Google Phone,1,600.0,2019-03-15 11:10:00,592 River St, Atlanta,GA,30301 +176224,USB-C Charging Cable,1,11.95,2019-03-15 11:10:00,592 River St, Atlanta,GA,30301 +176225,Vareebadd Phone,1,400.0,2019-03-25 22:41:00,650 13th St, San Francisco,CA,94016 +176226,AA Batteries (4-pack),1,3.84,2019-03-17 10:19:00,928 6th St, Dallas,TX,75001 +176227,34in Ultrawide Monitor,1,379.99,2019-03-15 14:55:00,823 North St, Dallas,TX,75001 +176228,LG Dryer,1,600.0,2019-03-31 08:54:00,281 Johnson St, Boston,MA,02215 +176229,ThinkPad Laptop,1,999.99,2019-03-31 14:44:00,62 8th St, Seattle,WA,98101 +176230,34in Ultrawide Monitor,1,379.99,2019-03-27 06:43:00,873 Dogwood St, Atlanta,GA,30301 +176231,AAA Batteries (4-pack),1,2.99,2019-03-17 22:48:00,739 Hickory St, San Francisco,CA,94016 +176232,27in 4K Gaming Monitor,1,389.99,2019-03-24 23:24:00,202 10th St, Boston,MA,02215 +176233,Google Phone,1,600.0,2019-03-30 20:39:00,275 Center St, Dallas,TX,75001 +176234,Apple Airpods Headphones,1,150.0,2019-03-23 07:28:00,457 7th St, Portland,ME,04101 +176235,Wired Headphones,1,11.99,2019-03-24 17:08:00,72 1st St, New York City,NY,10001 +176236,USB-C Charging Cable,1,11.95,2019-03-16 02:05:00,888 7th St, San Francisco,CA,94016 +176237,USB-C Charging Cable,1,11.95,2019-03-30 18:34:00,850 Madison St, San Francisco,CA,94016 +176238,Apple Airpods Headphones,1,150.0,2019-03-17 12:36:00,129 Lakeview St, Los Angeles,CA,90001 +176239,Lightning Charging Cable,1,14.95,2019-03-19 16:56:00,480 Johnson St, Los Angeles,CA,90001 +176240,USB-C Charging Cable,1,11.95,2019-03-24 23:53:00,230 Madison St, Austin,TX,73301 +176241,iPhone,1,700.0,2019-03-18 10:28:00,117 Meadow St, Boston,MA,02215 +176241,Wired Headphones,1,11.99,2019-03-18 10:28:00,117 Meadow St, Boston,MA,02215 +176242,Apple Airpods Headphones,1,150.0,2019-03-24 19:41:00,860 Elm St, Los Angeles,CA,90001 +176243,Apple Airpods Headphones,1,150.0,2019-03-25 19:44:00,387 Jackson St, Los Angeles,CA,90001 +176244,AAA Batteries (4-pack),2,2.99,2019-03-27 15:50:00,935 14th St, New York City,NY,10001 +176245,Wired Headphones,1,11.99,2019-03-08 19:25:00,399 Johnson St, Atlanta,GA,30301 +176246,Apple Airpods Headphones,1,150.0,2019-03-23 14:44:00,301 5th St, Portland,OR,97035 +176247,iPhone,1,700.0,2019-03-12 00:07:00,845 Forest St, Los Angeles,CA,90001 +176248,AAA Batteries (4-pack),1,2.99,2019-03-27 11:01:00,945 12th St, San Francisco,CA,94016 +176249,AA Batteries (4-pack),2,3.84,2019-03-23 00:11:00,687 Johnson St, Portland,OR,97035 +176250,AAA Batteries (4-pack),2,2.99,2019-03-21 16:28:00,123 Pine St, San Francisco,CA,94016 +176251,AAA Batteries (4-pack),1,2.99,2019-03-31 00:29:00,965 Church St, New York City,NY,10001 +176251,20in Monitor,1,109.99,2019-03-31 00:29:00,965 Church St, New York City,NY,10001 +176252,34in Ultrawide Monitor,1,379.99,2019-03-14 11:51:00,396 2nd St, Los Angeles,CA,90001 +176253,ThinkPad Laptop,1,999.99,2019-03-21 18:31:00,767 Willow St, San Francisco,CA,94016 +176254,AA Batteries (4-pack),1,3.84,2019-03-08 19:17:00,333 Cherry St, Boston,MA,02215 +176255,USB-C Charging Cable,1,11.95,2019-03-13 12:22:00,231 Elm St, San Francisco,CA,94016 +176256,Vareebadd Phone,1,400.0,2019-03-25 20:43:00,430 9th St, Atlanta,GA,30301 +176257,Bose SoundSport Headphones,1,99.99,2019-03-16 11:07:00,757 Sunset St, San Francisco,CA,94016 +176258,Bose SoundSport Headphones,1,99.99,2019-03-05 13:41:00,777 9th St, San Francisco,CA,94016 +176259,Bose SoundSport Headphones,1,99.99,2019-03-02 21:12:00,53 Cherry St, Dallas,TX,75001 +176260,AA Batteries (4-pack),1,3.84,2019-03-30 20:05:00,84 Spruce St, Boston,MA,02215 +176261,USB-C Charging Cable,1,11.95,2019-03-16 20:22:00,37 Madison St, Portland,OR,97035 +176262,Wired Headphones,1,11.99,2019-03-18 12:08:00,333 Chestnut St, San Francisco,CA,94016 +176263,Bose SoundSport Headphones,1,99.99,2019-03-22 18:33:00,236 Wilson St, Atlanta,GA,30301 +176264,Wired Headphones,1,11.99,2019-03-29 13:43:00,799 Lincoln St, New York City,NY,10001 +176265,AAA Batteries (4-pack),2,2.99,2019-03-03 18:51:00,241 Meadow St, San Francisco,CA,94016 +176266,Wired Headphones,1,11.99,2019-03-21 04:27:00,503 Ridge St, Portland,OR,97035 +176267,USB-C Charging Cable,1,11.95,2019-03-04 20:07:00,126 Church St, Atlanta,GA,30301 +176268,USB-C Charging Cable,1,11.95,2019-03-05 07:06:00,399 West St, Austin,TX,73301 +176269,Bose SoundSport Headphones,1,99.99,2019-03-03 00:10:00,378 Spruce St, Dallas,TX,75001 +176270,AAA Batteries (4-pack),1,2.99,2019-03-05 18:31:00,762 Hill St, Boston,MA,02215 +176271,ThinkPad Laptop,1,999.99,2019-03-23 06:56:00,949 14th St, Boston,MA,02215 +176271,Lightning Charging Cable,1,14.95,2019-03-23 06:56:00,949 14th St, Boston,MA,02215 +176272,AAA Batteries (4-pack),2,2.99,2019-03-19 14:28:00,265 Washington St, Portland,ME,04101 +176273,Wired Headphones,1,11.99,2019-03-20 07:30:00,359 Cedar St, Portland,OR,97035 +176274,34in Ultrawide Monitor,1,379.99,2019-03-20 19:55:00,740 Lakeview St, San Francisco,CA,94016 +176275,27in 4K Gaming Monitor,1,389.99,2019-03-07 10:18:00,830 Chestnut St, Seattle,WA,98101 +176276,AAA Batteries (4-pack),1,2.99,2019-03-09 09:43:00,296 Dogwood St, San Francisco,CA,94016 +176277,Google Phone,1,600.0,2019-03-14 19:21:00,647 Dogwood St, New York City,NY,10001 +176278,USB-C Charging Cable,2,11.95,2019-03-23 07:58:00,286 10th St, New York City,NY,10001 +176279,Wired Headphones,1,11.99,2019-03-10 09:48:00,141 Hickory St, Los Angeles,CA,90001 +176280,Lightning Charging Cable,1,14.95,2019-03-17 12:51:00,426 Forest St, Los Angeles,CA,90001 +176281,27in 4K Gaming Monitor,1,389.99,2019-03-21 23:59:00,135 Jefferson St, New York City,NY,10001 +176282,Flatscreen TV,1,300.0,2019-03-16 10:26:00,968 14th St, Dallas,TX,75001 +176283,Macbook Pro Laptop,1,1700.0,2019-03-14 18:19:00,724 Cedar St, Dallas,TX,75001 +176284,USB-C Charging Cable,1,11.95,2019-03-08 17:55:00,991 Jackson St, Seattle,WA,98101 +176285,AA Batteries (4-pack),1,3.84,2019-03-20 20:30:00,966 North St, Seattle,WA,98101 +176286,Bose SoundSport Headphones,1,99.99,2019-03-09 16:33:00,469 7th St, San Francisco,CA,94016 +176287,AA Batteries (4-pack),1,3.84,2019-03-11 18:55:00,341 12th St, Boston,MA,02215 +176288,Wired Headphones,1,11.99,2019-03-05 21:45:00,199 River St, San Francisco,CA,94016 +176289,Wired Headphones,1,11.99,2019-03-25 09:35:00,854 Park St, New York City,NY,10001 +176290,Google Phone,1,600.0,2019-03-30 11:06:00,860 Johnson St, New York City,NY,10001 +176290,USB-C Charging Cable,1,11.95,2019-03-30 11:06:00,860 Johnson St, New York City,NY,10001 +176291,Google Phone,1,600.0,2019-03-10 15:15:00,289 Forest St, Atlanta,GA,30301 +176292,ThinkPad Laptop,1,999.99,2019-03-16 13:17:00,754 Wilson St, New York City,NY,10001 +176292,Apple Airpods Headphones,1,150.0,2019-03-16 13:17:00,754 Wilson St, New York City,NY,10001 +176293,Lightning Charging Cable,2,14.95,2019-03-30 13:40:00,877 Pine St, San Francisco,CA,94016 +176294,Lightning Charging Cable,1,14.95,2019-03-21 14:32:00,113 Jackson St, Austin,TX,73301 +176295,Apple Airpods Headphones,1,150.0,2019-03-08 07:31:00,879 Main St, Los Angeles,CA,90001 +176296,Lightning Charging Cable,1,14.95,2019-03-11 08:09:00,23 4th St, Los Angeles,CA,90001 +176297,34in Ultrawide Monitor,1,379.99,2019-03-17 19:27:00,718 Maple St, New York City,NY,10001 +176298,Apple Airpods Headphones,1,150.0,2019-03-19 23:02:00,723 Elm St, Los Angeles,CA,90001 +176299,USB-C Charging Cable,1,11.95,2019-03-11 16:04:00,691 Ridge St, New York City,NY,10001 +176300,Apple Airpods Headphones,1,150.0,2019-03-23 05:16:00,488 Adams St, New York City,NY,10001 +176301,LG Washing Machine,1,600.0,2019-03-12 19:28:00,863 Lincoln St, Boston,MA,02215 +176302,Bose SoundSport Headphones,1,99.99,2019-03-27 10:16:00,391 1st St, San Francisco,CA,94016 +176303,AAA Batteries (4-pack),3,2.99,2019-03-02 23:23:00,598 Dogwood St, Portland,OR,97035 +176304,Lightning Charging Cable,1,14.95,2019-03-25 07:50:00,233 Adams St, Los Angeles,CA,90001 +176305,Bose SoundSport Headphones,1,99.99,2019-03-10 11:28:00,166 Main St, San Francisco,CA,94016 +176306,Apple Airpods Headphones,1,150.0,2019-03-22 09:26:00,474 2nd St, San Francisco,CA,94016 +176307,Lightning Charging Cable,1,14.95,2019-03-23 21:44:00,966 Cedar St, New York City,NY,10001 +176308,Lightning Charging Cable,1,14.95,2019-03-28 17:14:00,226 Cherry St, Los Angeles,CA,90001 +176309,AAA Batteries (4-pack),1,2.99,2019-03-17 22:18:00,622 Sunset St, New York City,NY,10001 +176310,Bose SoundSport Headphones,1,99.99,2019-03-15 21:36:00,233 11th St, Atlanta,GA,30301 +176311,34in Ultrawide Monitor,1,379.99,2019-03-29 21:02:00,451 West St, Boston,MA,02215 +176312,AAA Batteries (4-pack),1,2.99,2019-03-16 13:08:00,666 6th St, San Francisco,CA,94016 +176313,AAA Batteries (4-pack),2,2.99,2019-03-16 08:40:00,42 North St, San Francisco,CA,94016 +176314,27in 4K Gaming Monitor,1,389.99,2019-03-27 14:58:00,143 Jefferson St, San Francisco,CA,94016 +176315,Flatscreen TV,1,300.0,2019-03-11 09:47:00,335 North St, Atlanta,GA,30301 +176316,AAA Batteries (4-pack),2,2.99,2019-03-14 12:05:00,691 7th St, San Francisco,CA,94016 +176317,Wired Headphones,1,11.99,2019-03-18 21:13:00,794 Willow St, Portland,OR,97035 +176318,34in Ultrawide Monitor,1,379.99,2019-03-13 22:13:00,433 Main St, Los Angeles,CA,90001 +176319,Wired Headphones,2,11.99,2019-03-30 19:30:00,867 Dogwood St, Boston,MA,02215 +176320,iPhone,1,700.0,2019-03-01 11:57:00,385 Spruce St, Atlanta,GA,30301 +176320,Lightning Charging Cable,1,14.95,2019-03-01 11:57:00,385 Spruce St, Atlanta,GA,30301 +176321,Bose SoundSport Headphones,1,99.99,2019-03-13 19:36:00,598 Chestnut St, San Francisco,CA,94016 +176322,Wired Headphones,1,11.99,2019-03-04 13:25:00,247 Jefferson St, Los Angeles,CA,90001 +176323,27in FHD Monitor,1,149.99,2019-03-03 09:29:00,140 Washington St, Atlanta,GA,30301 +176324,Lightning Charging Cable,1,14.95,2019-03-17 22:23:00,488 9th St, San Francisco,CA,94016 +176325,Wired Headphones,1,11.99,2019-03-10 14:59:00,405 Dogwood St, New York City,NY,10001 +176326,USB-C Charging Cable,1,11.95,2019-03-30 22:43:00,777 6th St, Austin,TX,73301 +176327,USB-C Charging Cable,1,11.95,2019-03-22 11:13:00,345 Johnson St, Dallas,TX,75001 +176328,34in Ultrawide Monitor,1,379.99,2019-03-09 15:55:00,446 Jefferson St, Seattle,WA,98101 +176329,AA Batteries (4-pack),3,3.84,2019-03-12 08:00:00,561 Jackson St, New York City,NY,10001 +176330,Apple Airpods Headphones,1,150.0,2019-03-10 20:20:00,970 12th St, Atlanta,GA,30301 +176331,AA Batteries (4-pack),2,3.84,2019-03-23 17:57:00,291 Lincoln St, Los Angeles,CA,90001 +176332,AA Batteries (4-pack),2,3.84,2019-03-22 13:09:00,330 4th St, Atlanta,GA,30301 +176333,AA Batteries (4-pack),2,3.84,2019-03-19 15:34:00,809 Spruce St, Seattle,WA,98101 +176334,Wired Headphones,1,11.99,2019-03-10 10:37:00,682 5th St, Los Angeles,CA,90001 +176335,AAA Batteries (4-pack),1,2.99,2019-03-27 11:17:00,113 5th St, San Francisco,CA,94016 +176336,AAA Batteries (4-pack),3,2.99,2019-03-05 20:20:00,107 14th St, Portland,OR,97035 +176337,Lightning Charging Cable,1,14.95,2019-03-24 17:42:00,410 Forest St, Los Angeles,CA,90001 +176338,AA Batteries (4-pack),1,3.84,2019-03-09 15:37:00,761 7th St, Atlanta,GA,30301 +176339,Lightning Charging Cable,1,14.95,2019-03-07 12:39:00,526 Hickory St, Austin,TX,73301 +176340,USB-C Charging Cable,1,11.95,2019-03-10 14:41:00,708 Walnut St, San Francisco,CA,94016 +176341,Lightning Charging Cable,1,14.95,2019-03-21 15:04:00,178 9th St, Boston,MA,02215 +176342,Apple Airpods Headphones,1,150.0,2019-03-29 02:50:00,865 Lincoln St, Portland,OR,97035 +176343,USB-C Charging Cable,1,11.95,2019-03-03 08:26:00,462 Maple St, San Francisco,CA,94016 +176344,USB-C Charging Cable,1,11.95,2019-03-30 20:55:00,33 Park St, Boston,MA,02215 +176345,27in 4K Gaming Monitor,1,389.99,2019-03-09 16:50:00,33 11th St, New York City,NY,10001 +176346,USB-C Charging Cable,1,11.95,2019-03-18 16:55:00,726 2nd St, Atlanta,GA,30301 +176347,Lightning Charging Cable,1,14.95,2019-03-09 16:52:00,830 South St, Boston,MA,02215 +176348,AAA Batteries (4-pack),2,2.99,2019-03-15 20:40:00,940 Meadow St, Seattle,WA,98101 +176349,Wired Headphones,1,11.99,2019-03-11 11:07:00,47 4th St, Boston,MA,02215 +176350,USB-C Charging Cable,1,11.95,2019-03-09 12:43:00,676 2nd St, Boston,MA,02215 +176351,AAA Batteries (4-pack),2,2.99,2019-03-02 20:59:00,957 1st St, Portland,OR,97035 +176352,Wired Headphones,1,11.99,2019-03-15 14:36:00,347 Willow St, San Francisco,CA,94016 +176353,USB-C Charging Cable,1,11.95,2019-03-25 17:21:00,258 Center St, New York City,NY,10001 +176354,ThinkPad Laptop,1,999.99,2019-03-28 21:09:00,836 Main St, Portland,OR,97035 +176355,AA Batteries (4-pack),1,3.84,2019-03-26 11:24:00,336 Dogwood St, New York City,NY,10001 +176356,27in 4K Gaming Monitor,1,389.99,2019-03-20 11:29:00,207 Jackson St, Seattle,WA,98101 +176357,USB-C Charging Cable,1,11.95,2019-03-12 12:42:00,299 River St, Los Angeles,CA,90001 +176358,AAA Batteries (4-pack),1,2.99,2019-03-26 08:24:00,146 14th St, Dallas,TX,75001 +176359,USB-C Charging Cable,1,11.95,2019-03-13 17:57:00,5 Park St, Atlanta,GA,30301 +176360,27in FHD Monitor,1,149.99,2019-03-11 10:00:00,117 4th St, San Francisco,CA,94016 +176361,34in Ultrawide Monitor,1,379.99,2019-03-20 16:39:00,937 Johnson St, Seattle,WA,98101 +176362,Wired Headphones,1,11.99,2019-03-02 23:39:00,499 River St, Dallas,TX,75001 +176363,AA Batteries (4-pack),1,3.84,2019-03-31 12:59:00,795 Sunset St, Dallas,TX,75001 +176364,Wired Headphones,1,11.99,2019-03-11 19:54:00,525 9th St, New York City,NY,10001 +176365,Apple Airpods Headphones,1,150.0,2019-03-01 19:40:00,732 North St, San Francisco,CA,94016 +176366,Bose SoundSport Headphones,1,99.99,2019-03-01 21:25:00,758 Hickory St, San Francisco,CA,94016 +176367,Bose SoundSport Headphones,1,99.99,2019-03-01 13:48:00,935 Highland St, Dallas,TX,75001 +176368,USB-C Charging Cable,1,11.95,2019-03-11 05:22:00,3 Pine St, Atlanta,GA,30301 +176369,AA Batteries (4-pack),1,3.84,2019-03-01 13:17:00,767 Lincoln St, Atlanta,GA,30301 +176370,ThinkPad Laptop,1,999.99,2019-03-30 19:02:00,713 West St, Seattle,WA,98101 +176371,AA Batteries (4-pack),1,3.84,2019-03-18 14:00:00,404 Ridge St, Boston,MA,02215 +176372,USB-C Charging Cable,1,11.95,2019-03-29 00:31:00,56 10th St, Portland,OR,97035 +176373,Google Phone,1,600.0,2019-03-05 07:08:00,650 Johnson St, Dallas,TX,75001 +176374,Apple Airpods Headphones,1,150.0,2019-03-18 10:12:00,98 8th St, Boston,MA,02215 +176375,Wired Headphones,1,11.99,2019-03-04 22:57:00,541 4th St, San Francisco,CA,94016 +176376,AAA Batteries (4-pack),2,2.99,2019-03-22 11:35:00,294 Ridge St, Los Angeles,CA,90001 +176377,USB-C Charging Cable,1,11.95,2019-03-27 11:51:00,649 Ridge St, New York City,NY,10001 +176378,USB-C Charging Cable,1,11.95,2019-03-30 05:16:00,909 12th St, Los Angeles,CA,90001 +176379,Wired Headphones,1,11.99,2019-03-11 20:16:00,748 Sunset St, Portland,OR,97035 +176380,USB-C Charging Cable,1,11.95,2019-03-31 11:16:00,229 2nd St, Los Angeles,CA,90001 +176381,AAA Batteries (4-pack),1,2.99,2019-03-30 08:24:00,65 Spruce St, San Francisco,CA,94016 +176382,AA Batteries (4-pack),1,3.84,2019-03-30 08:00:00,787 Washington St, Dallas,TX,75001 +176383,Flatscreen TV,1,300.0,2019-03-10 12:48:00,70 North St, Dallas,TX,75001 +176384,AAA Batteries (4-pack),1,2.99,2019-03-05 20:19:00,274 Chestnut St, Los Angeles,CA,90001 +176385,AA Batteries (4-pack),1,3.84,2019-03-19 14:23:00,375 10th St, Seattle,WA,98101 +176386,AAA Batteries (4-pack),1,2.99,2019-03-11 13:35:00,134 12th St, Atlanta,GA,30301 +176387,Lightning Charging Cable,1,14.95,2019-03-19 19:30:00,591 Park St, Los Angeles,CA,90001 +176388,iPhone,1,700.0,2019-03-17 15:49:00,212 Walnut St, New York City,NY,10001 +176389,34in Ultrawide Monitor,1,379.99,2019-03-23 15:44:00,936 12th St, San Francisco,CA,94016 +176390,USB-C Charging Cable,1,11.95,2019-03-07 11:22:00,948 9th St, New York City,NY,10001 +176391,AA Batteries (4-pack),1,3.84,2019-03-27 09:41:00,774 Cedar St, Dallas,TX,75001 +176392,Apple Airpods Headphones,1,150.0,2019-03-14 11:11:00,269 Main St, San Francisco,CA,94016 +176393,Wired Headphones,1,11.99,2019-03-31 22:26:00,367 Willow St, Portland,OR,97035 +176394,AAA Batteries (4-pack),3,2.99,2019-03-16 13:00:00,462 Hickory St, San Francisco,CA,94016 +176395,USB-C Charging Cable,1,11.95,2019-03-22 22:09:00,207 Lincoln St, Austin,TX,73301 +176396,AA Batteries (4-pack),4,3.84,2019-03-23 07:19:00,344 14th St, Boston,MA,02215 +176397,AA Batteries (4-pack),1,3.84,2019-03-01 18:44:00,967 Adams St, Los Angeles,CA,90001 +176398,Bose SoundSport Headphones,1,99.99,2019-03-16 10:56:00,696 Main St, San Francisco,CA,94016 +176399,USB-C Charging Cable,1,11.95,2019-03-25 09:49:00,645 8th St, Los Angeles,CA,90001 +176400,Lightning Charging Cable,1,14.95,2019-03-02 13:23:00,725 Lincoln St, Los Angeles,CA,90001 +176401,34in Ultrawide Monitor,1,379.99,2019-03-22 18:20:00,709 1st St, San Francisco,CA,94016 +176402,34in Ultrawide Monitor,1,379.99,2019-03-18 12:03:00,340 Jackson St, Los Angeles,CA,90001 +176403,Wired Headphones,1,11.99,2019-03-02 14:00:00,782 8th St, Los Angeles,CA,90001 +176404,20in Monitor,1,109.99,2019-03-07 17:42:00,741 Forest St, Los Angeles,CA,90001 +176405,Lightning Charging Cable,1,14.95,2019-03-14 22:18:00,159 12th St, Atlanta,GA,30301 +176406,AA Batteries (4-pack),1,3.84,2019-03-01 07:49:00,849 Madison St, Los Angeles,CA,90001 +176407,Lightning Charging Cable,1,14.95,2019-03-15 11:59:00,321 7th St, San Francisco,CA,94016 +176408,Bose SoundSport Headphones,1,99.99,2019-03-27 20:23:00,512 Pine St, Portland,OR,97035 +176409,Wired Headphones,1,11.99,2019-03-19 13:19:00,728 1st St, Seattle,WA,98101 +176410,Apple Airpods Headphones,1,150.0,2019-03-02 23:51:00,336 4th St, San Francisco,CA,94016 +176411,34in Ultrawide Monitor,1,379.99,2019-03-25 06:55:00,76 Chestnut St, Boston,MA,02215 +176412,ThinkPad Laptop,1,999.99,2019-03-01 18:57:00,679 West St, Seattle,WA,98101 +176413,AA Batteries (4-pack),1,3.84,2019-03-15 20:26:00,2 Sunset St, New York City,NY,10001 +176414,AA Batteries (4-pack),1,3.84,2019-03-12 19:15:00,507 Park St, Atlanta,GA,30301 +176415,AAA Batteries (4-pack),4,2.99,2019-03-15 20:12:00,804 Wilson St, New York City,NY,10001 +176416,AA Batteries (4-pack),1,3.84,2019-03-27 22:47:00,924 West St, Seattle,WA,98101 +176417,AAA Batteries (4-pack),1,2.99,2019-03-11 17:24:00,619 1st St, Dallas,TX,75001 +176418,27in FHD Monitor,1,149.99,2019-03-12 09:10:00,450 7th St, Los Angeles,CA,90001 +176419,AAA Batteries (4-pack),1,2.99,2019-03-08 16:51:00,224 Wilson St, New York City,NY,10001 +176420,USB-C Charging Cable,1,11.95,2019-03-10 09:50:00,810 Elm St, New York City,NY,10001 +176421,Apple Airpods Headphones,1,150.0,2019-03-12 06:16:00,958 Lake St, Portland,OR,97035 +176422,Wired Headphones,1,11.99,2019-03-05 16:29:00,669 Washington St, Los Angeles,CA,90001 +176423,27in FHD Monitor,1,149.99,2019-03-14 19:09:00,898 Maple St, Atlanta,GA,30301 +176424,Apple Airpods Headphones,1,150.0,2019-03-11 19:22:00,830 Pine St, Los Angeles,CA,90001 +176425,Flatscreen TV,1,300.0,2019-03-31 12:23:00,70 Highland St, San Francisco,CA,94016 +176426,Wired Headphones,1,11.99,2019-03-08 21:55:00,349 Sunset St, Los Angeles,CA,90001 +176427,Google Phone,1,600.0,2019-03-06 08:41:00,425 Cherry St, Austin,TX,73301 +176428,27in FHD Monitor,1,149.99,2019-03-06 08:28:00,607 10th St, San Francisco,CA,94016 +176429,Lightning Charging Cable,1,14.95,2019-03-27 11:22:00,481 Main St, Portland,OR,97035 +176430,Wired Headphones,1,11.99,2019-03-14 17:53:00,909 6th St, New York City,NY,10001 +176431,AAA Batteries (4-pack),1,2.99,2019-03-02 23:32:00,944 South St, Seattle,WA,98101 +176432,27in FHD Monitor,1,149.99,2019-03-27 10:16:00,51 Maple St, Seattle,WA,98101 +176433,USB-C Charging Cable,2,11.95,2019-03-23 19:30:00,676 Pine St, San Francisco,CA,94016 +176434,Lightning Charging Cable,1,14.95,2019-03-14 20:11:00,528 Willow St, Los Angeles,CA,90001 +176435,Wired Headphones,1,11.99,2019-03-19 17:07:00,177 Sunset St, Seattle,WA,98101 +176436,Lightning Charging Cable,1,14.95,2019-03-31 22:04:00,23 5th St, Boston,MA,02215 +176437,Wired Headphones,1,11.99,2019-03-03 12:19:00,949 12th St, Los Angeles,CA,90001 +176438,USB-C Charging Cable,1,11.95,2019-03-19 11:49:00,382 Washington St, Los Angeles,CA,90001 +176439,AAA Batteries (4-pack),2,2.99,2019-03-12 19:42:00,405 Lake St, San Francisco,CA,94016 +176440,Bose SoundSport Headphones,1,99.99,2019-03-20 21:21:00,253 Cherry St, Boston,MA,02215 +176441,Flatscreen TV,1,300.0,2019-03-16 16:22:00,751 Sunset St, Dallas,TX,75001 +176442,iPhone,1,700.0,2019-03-26 10:11:00,809 13th St, San Francisco,CA,94016 +176442,Lightning Charging Cable,1,14.95,2019-03-26 10:11:00,809 13th St, San Francisco,CA,94016 +176443,USB-C Charging Cable,1,11.95,2019-03-18 12:05:00,943 Hill St, New York City,NY,10001 +176444,27in FHD Monitor,1,149.99,2019-03-13 13:25:00,725 7th St, New York City,NY,10001 +176445,AAA Batteries (4-pack),2,2.99,2019-03-30 14:52:00,400 Sunset St, Seattle,WA,98101 +176446,AA Batteries (4-pack),1,3.84,2019-03-03 21:53:00,306 7th St, Dallas,TX,75001 +176447,Lightning Charging Cable,1,14.95,2019-03-27 09:33:00,476 Wilson St, New York City,NY,10001 +176448,27in FHD Monitor,1,149.99,2019-03-28 15:15:00,237 Spruce St, Boston,MA,02215 +176449,AA Batteries (4-pack),1,3.84,2019-03-01 22:39:00,413 West St, San Francisco,CA,94016 +176450,AA Batteries (4-pack),1,3.84,2019-03-14 16:58:00,706 Lincoln St, Portland,OR,97035 +176451,iPhone,1,700.0,2019-03-10 16:51:00,651 11th St, Austin,TX,73301 +176452,AA Batteries (4-pack),3,3.84,2019-03-04 12:31:00,20 Maple St, San Francisco,CA,94016 +176453,27in FHD Monitor,1,149.99,2019-03-30 15:22:00,397 14th St, New York City,NY,10001 +176454,Bose SoundSport Headphones,1,99.99,2019-03-30 13:13:00,793 Washington St, Los Angeles,CA,90001 +176455,34in Ultrawide Monitor,1,379.99,2019-03-16 19:55:00,601 River St, Austin,TX,73301 +176456,Bose SoundSport Headphones,1,99.99,2019-03-23 15:40:00,489 1st St, Seattle,WA,98101 +176457,Bose SoundSport Headphones,1,99.99,2019-03-22 16:35:00,265 Pine St, San Francisco,CA,94016 +176458,27in FHD Monitor,1,149.99,2019-03-11 11:44:00,213 Chestnut St, Los Angeles,CA,90001 +176459,Lightning Charging Cable,1,14.95,2019-03-01 18:51:00,33 Highland St, Austin,TX,73301 +176460,Macbook Pro Laptop,1,1700.0,2019-03-26 14:12:00,159 Highland St, Atlanta,GA,30301 +176461,iPhone,1,700.0,2019-03-26 07:46:00,136 7th St, Atlanta,GA,30301 +176462,AA Batteries (4-pack),1,3.84,2019-03-02 20:12:00,941 Washington St, Dallas,TX,75001 +176463,USB-C Charging Cable,1,11.95,2019-03-28 08:38:00,728 14th St, Portland,OR,97035 +176464,AAA Batteries (4-pack),3,2.99,2019-03-25 20:45:00,281 Hill St, Los Angeles,CA,90001 +176465,AAA Batteries (4-pack),1,2.99,2019-03-17 17:17:00,228 Johnson St, Seattle,WA,98101 +176466,Apple Airpods Headphones,1,150.0,2019-03-06 18:54:00,547 Cedar St, San Francisco,CA,94016 +176467,USB-C Charging Cable,1,11.95,2019-03-26 21:02:00,465 2nd St, Seattle,WA,98101 +176468,20in Monitor,1,109.99,2019-03-23 11:33:00,491 Lakeview St, Atlanta,GA,30301 +176469,AA Batteries (4-pack),1,3.84,2019-03-18 11:28:00,104 Maple St, Los Angeles,CA,90001 +176470,AAA Batteries (4-pack),1,2.99,2019-03-15 00:33:00,97 Chestnut St, New York City,NY,10001 +176471,AA Batteries (4-pack),1,3.84,2019-03-24 13:27:00,565 5th St, Boston,MA,02215 +176472,AAA Batteries (4-pack),3,2.99,2019-03-06 17:30:00,98 Jackson St, San Francisco,CA,94016 +176473,Lightning Charging Cable,2,14.95,2019-03-11 12:00:00,481 14th St, New York City,NY,10001 +176474,Lightning Charging Cable,1,14.95,2019-03-09 19:43:00,100 Highland St, Austin,TX,73301 +176475,Apple Airpods Headphones,1,150.0,2019-03-01 21:06:00,303 14th St, Austin,TX,73301 +176476,USB-C Charging Cable,1,11.95,2019-03-01 09:39:00,446 Elm St, San Francisco,CA,94016 +176477,27in 4K Gaming Monitor,1,389.99,2019-03-04 13:13:00,64 9th St, Los Angeles,CA,90001 +176478,Apple Airpods Headphones,1,150.0,2019-03-01 14:37:00,585 Center St, Boston,MA,02215 +176479,iPhone,1,700.0,2019-03-29 14:42:00,666 Lake St, Los Angeles,CA,90001 +176480,27in 4K Gaming Monitor,1,389.99,2019-03-14 10:53:00,859 7th St, Portland,OR,97035 +176481,AAA Batteries (4-pack),2,2.99,2019-03-09 12:48:00,131 Church St, Seattle,WA,98101 +176482,Bose SoundSport Headphones,1,99.99,2019-03-12 12:28:00,261 6th St, Seattle,WA,98101 +176483,Lightning Charging Cable,1,14.95,2019-03-19 23:12:00,217 Johnson St, New York City,NY,10001 +176484,iPhone,1,700.0,2019-03-17 15:59:00,985 Willow St, San Francisco,CA,94016 +176484,Wired Headphones,1,11.99,2019-03-17 15:59:00,985 Willow St, San Francisco,CA,94016 +176485,Flatscreen TV,1,300.0,2019-03-01 22:25:00,870 Ridge St, Boston,MA,02215 +176486,Bose SoundSport Headphones,1,99.99,2019-03-02 20:37:00,94 Lincoln St, Boston,MA,02215 +176486,Apple Airpods Headphones,1,150.0,2019-03-02 20:37:00,94 Lincoln St, Boston,MA,02215 +176487,iPhone,1,700.0,2019-03-14 14:46:00,92 Johnson St, Los Angeles,CA,90001 +176487,Lightning Charging Cable,1,14.95,2019-03-14 14:46:00,92 Johnson St, Los Angeles,CA,90001 +176488,Apple Airpods Headphones,1,150.0,2019-03-30 13:25:00,281 Chestnut St, San Francisco,CA,94016 +176489,Google Phone,1,600.0,2019-03-10 19:19:00,880 Hickory St, New York City,NY,10001 +176490,USB-C Charging Cable,1,11.95,2019-03-01 07:06:00,583 South St, New York City,NY,10001 +176491,27in FHD Monitor,1,149.99,2019-03-03 19:02:00,285 11th St, New York City,NY,10001 +176492,Apple Airpods Headphones,1,150.0,2019-03-24 21:30:00,802 River St, San Francisco,CA,94016 +176493,20in Monitor,1,109.99,2019-03-19 10:17:00,127 Highland St, Los Angeles,CA,90001 +176494,USB-C Charging Cable,1,11.95,2019-03-28 19:51:00,215 North St, Dallas,TX,75001 +176495,20in Monitor,1,109.99,2019-03-19 18:48:00,493 Cedar St, Portland,OR,97035 +176496,AAA Batteries (4-pack),2,2.99,2019-03-25 12:22:00,551 Cedar St, Seattle,WA,98101 +176497,20in Monitor,1,109.99,2019-03-12 17:37:00,95 Dogwood St, New York City,NY,10001 +176498,27in 4K Gaming Monitor,1,389.99,2019-03-08 13:24:00,292 Walnut St, New York City,NY,10001 +176499,AAA Batteries (4-pack),2,2.99,2019-03-11 19:56:00,511 Main St, Dallas,TX,75001 +176500,20in Monitor,1,109.99,2019-03-15 23:22:00,866 9th St, Atlanta,GA,30301 +176501,Wired Headphones,2,11.99,2019-03-08 14:29:00,110 Maple St, Los Angeles,CA,90001 +176502,20in Monitor,1,109.99,2019-03-08 21:31:00,413 Adams St, Portland,OR,97035 +176503,Bose SoundSport Headphones,1,99.99,2019-03-15 21:33:00,763 Sunset St, Boston,MA,02215 +176504,27in FHD Monitor,1,149.99,2019-03-01 16:58:00,851 Wilson St, San Francisco,CA,94016 +176505,Lightning Charging Cable,1,14.95,2019-03-16 16:55:00,887 Cedar St, San Francisco,CA,94016 +176506,Bose SoundSport Headphones,1,99.99,2019-03-11 15:50:00,120 West St, Boston,MA,02215 +176507,USB-C Charging Cable,1,11.95,2019-03-06 14:18:00,266 Johnson St, Los Angeles,CA,90001 +176508,USB-C Charging Cable,1,11.95,2019-03-14 14:42:00,603 Elm St, San Francisco,CA,94016 +176509,Apple Airpods Headphones,1,150.0,2019-03-27 19:50:00,707 Hickory St, Dallas,TX,75001 +176510,Bose SoundSport Headphones,1,99.99,2019-03-25 16:14:00,929 Lakeview St, San Francisco,CA,94016 +176511,USB-C Charging Cable,1,11.95,2019-03-31 07:57:00,929 Elm St, Seattle,WA,98101 +176512,Apple Airpods Headphones,1,150.0,2019-03-12 12:36:00,554 5th St, Boston,MA,02215 +176513,USB-C Charging Cable,1,11.95,2019-03-06 21:08:00,485 Madison St, Dallas,TX,75001 +176514,LG Washing Machine,1,600.0,2019-03-13 19:35:00,567 Main St, New York City,NY,10001 +176515,Lightning Charging Cable,1,14.95,2019-03-07 19:00:00,317 Lake St, Austin,TX,73301 +176516,34in Ultrawide Monitor,1,379.99,2019-03-27 06:58:00,277 2nd St, Portland,OR,97035 +176517,AAA Batteries (4-pack),2,2.99,2019-03-25 02:25:00,233 North St, Atlanta,GA,30301 +176518,Bose SoundSport Headphones,1,99.99,2019-03-20 18:25:00,222 Jackson St, San Francisco,CA,94016 +176519,27in 4K Gaming Monitor,1,389.99,2019-03-26 19:41:00,708 Church St, Portland,OR,97035 +176520,AAA Batteries (4-pack),1,2.99,2019-03-24 22:12:00,652 Meadow St, Los Angeles,CA,90001 +176521,27in 4K Gaming Monitor,1,389.99,2019-03-11 12:58:00,101 2nd St, Dallas,TX,75001 +176522,ThinkPad Laptop,1,999.99,2019-03-06 08:22:00,919 Spruce St, Seattle,WA,98101 +176523,USB-C Charging Cable,1,11.95,2019-03-24 19:30:00,874 9th St, New York City,NY,10001 +176524,20in Monitor,1,109.99,2019-03-26 19:22:00,710 River St, Seattle,WA,98101 +176525,AAA Batteries (4-pack),1,2.99,2019-03-03 13:37:00,698 9th St, New York City,NY,10001 +176526,AAA Batteries (4-pack),2,2.99,2019-03-25 10:41:00,577 13th St, Los Angeles,CA,90001 +176527,USB-C Charging Cable,1,11.95,2019-03-11 14:29:00,873 Dogwood St, Austin,TX,73301 +176528,USB-C Charging Cable,1,11.95,2019-03-23 20:16:00,268 Park St, Boston,MA,02215 +176529,AA Batteries (4-pack),1,3.84,2019-03-04 21:40:00,227 4th St, San Francisco,CA,94016 +176530,34in Ultrawide Monitor,1,379.99,2019-03-30 19:17:00,652 Spruce St, San Francisco,CA,94016 +176531,27in FHD Monitor,1,149.99,2019-03-30 10:21:00,890 Willow St, Atlanta,GA,30301 +176532,27in 4K Gaming Monitor,1,389.99,2019-03-25 21:46:00,492 12th St, Portland,OR,97035 +176533,USB-C Charging Cable,1,11.95,2019-03-31 09:49:00,997 Highland St, Dallas,TX,75001 +176534,Lightning Charging Cable,1,14.95,2019-03-31 13:06:00,963 Wilson St, Los Angeles,CA,90001 +176535,USB-C Charging Cable,1,11.95,2019-03-23 18:43:00,892 Walnut St, Dallas,TX,75001 +176536,Lightning Charging Cable,1,14.95,2019-03-31 17:31:00,645 Spruce St, Atlanta,GA,30301 +176537,Apple Airpods Headphones,1,150.0,2019-03-12 07:33:00,80 Church St, Austin,TX,73301 +176538,USB-C Charging Cable,1,11.95,2019-03-13 10:22:00,962 Lake St, Portland,OR,97035 +176539,AAA Batteries (4-pack),3,2.99,2019-03-23 09:46:00,460 4th St, Dallas,TX,75001 +176540,Lightning Charging Cable,1,14.95,2019-03-23 15:16:00,142 4th St, Austin,TX,73301 +176541,Bose SoundSport Headphones,1,99.99,2019-03-11 17:44:00,674 Hickory St, Boston,MA,02215 +176542,Apple Airpods Headphones,1,150.0,2019-03-26 15:34:00,802 Lakeview St, Los Angeles,CA,90001 +176543,Flatscreen TV,1,300.0,2019-03-09 15:49:00,776 Spruce St, Los Angeles,CA,90001 +176544,Lightning Charging Cable,2,14.95,2019-03-15 11:08:00,436 8th St, Dallas,TX,75001 +176545,AAA Batteries (4-pack),2,2.99,2019-03-21 10:59:00,515 Center St, San Francisco,CA,94016 +176546,Wired Headphones,1,11.99,2019-03-21 16:06:00,3 Church St, Los Angeles,CA,90001 +176547,Wired Headphones,2,11.99,2019-03-01 16:39:00,998 Pine St, Boston,MA,02215 +176548,AAA Batteries (4-pack),1,2.99,2019-03-16 15:36:00,9 Sunset St, Portland,OR,97035 +176549,iPhone,1,700.0,2019-03-20 01:24:00,604 Park St, Los Angeles,CA,90001 +176550,Wired Headphones,1,11.99,2019-03-01 22:30:00,16 Sunset St, San Francisco,CA,94016 +176551,LG Washing Machine,1,600.0,2019-03-20 23:49:00,567 River St, San Francisco,CA,94016 +176552,Apple Airpods Headphones,1,150.0,2019-03-08 14:07:00,578 Main St, Los Angeles,CA,90001 +176553,USB-C Charging Cable,1,11.95,2019-03-02 22:27:00,437 Washington St, New York City,NY,10001 +176554,Lightning Charging Cable,1,14.95,2019-03-24 11:14:00,672 12th St, San Francisco,CA,94016 +176555,27in FHD Monitor,1,149.99,2019-03-22 20:27:00,42 4th St, San Francisco,CA,94016 +176556,AAA Batteries (4-pack),3,2.99,2019-03-14 10:29:00,871 7th St, Los Angeles,CA,90001 +176557,iPhone,1,700.0,2019-03-30 12:32:00,83 Washington St, San Francisco,CA,94016 +176557,Lightning Charging Cable,1,14.95,2019-03-30 12:32:00,83 Washington St, San Francisco,CA,94016 +194095,Wired Headphones,1,11.99,2019-05-16 17:14:00,669 2nd St, New York City,NY,10001 +194096,AA Batteries (4-pack),1,3.84,2019-05-19 14:43:00,844 Walnut St, Dallas,TX,75001 +194097,27in FHD Monitor,1,149.99,2019-05-24 11:36:00,164 Madison St, New York City,NY,10001 +194098,Wired Headphones,1,11.99,2019-05-02 20:40:00,622 Meadow St, Dallas,TX,75001 +194099,AAA Batteries (4-pack),2,2.99,2019-05-11 22:55:00,17 Church St, Seattle,WA,98101 +194100,iPhone,1,700.0,2019-05-10 19:44:00,81 Jefferson St, San Francisco,CA,94016 +194101,USB-C Charging Cable,1,11.95,2019-05-11 22:44:00,354 Meadow St, Boston,MA,02215 +194102,Lightning Charging Cable,1,14.95,2019-05-07 12:49:00,166 4th St, Dallas,TX,75001 +194103,27in FHD Monitor,1,149.99,2019-05-24 18:28:00,759 Pine St, Seattle,WA,98101 +194104,Wired Headphones,1,11.99,2019-05-04 18:38:00,330 1st St, Seattle,WA,98101 +194105,ThinkPad Laptop,1,999.99,2019-05-13 09:07:00,928 Hill St, Atlanta,GA,30301 +194106,USB-C Charging Cable,1,11.95,2019-05-12 10:07:00,261 Jackson St, San Francisco,CA,94016 +194107,34in Ultrawide Monitor,1,379.99,2019-05-19 17:52:00,451 Walnut St, New York City,NY,10001 +194108,AA Batteries (4-pack),1,3.84,2019-05-22 18:15:00,832 Lakeview St, Austin,TX,73301 +194109,AAA Batteries (4-pack),1,2.99,2019-05-15 14:00:00,202 11th St, Los Angeles,CA,90001 +194110,Google Phone,1,600.0,2019-05-31 18:07:00,498 14th St, Los Angeles,CA,90001 +194110,Wired Headphones,1,11.99,2019-05-31 18:07:00,498 14th St, Los Angeles,CA,90001 +194111,27in FHD Monitor,1,149.99,2019-05-04 15:08:00,99 Dogwood St, Dallas,TX,75001 +194112,Google Phone,1,600.0,2019-05-29 21:13:00,853 West St, Austin,TX,73301 +194113,Apple Airpods Headphones,1,150.0,2019-05-10 22:33:00,29 Adams St, Los Angeles,CA,90001 +194114,Wired Headphones,1,11.99,2019-05-20 01:57:00,857 River St, Atlanta,GA,30301 +194115,AAA Batteries (4-pack),1,2.99,2019-05-30 20:29:00,159 Lincoln St, Los Angeles,CA,90001 +194116,Lightning Charging Cable,1,14.95,2019-05-19 23:19:00,486 6th St, Boston,MA,02215 +194117,Lightning Charging Cable,1,14.95,2019-05-12 08:44:00,239 Madison St, Austin,TX,73301 +194118,AA Batteries (4-pack),1,3.84,2019-05-18 22:54:00,762 Maple St, Boston,MA,02215 +194119,Wired Headphones,3,11.99,2019-05-07 07:15:00,531 Jackson St, New York City,NY,10001 +194120,AAA Batteries (4-pack),1,2.99,2019-05-11 21:53:00,492 Washington St, Los Angeles,CA,90001 +194121,LG Dryer,1,600.0,2019-05-10 20:41:00,911 Hill St, Los Angeles,CA,90001 +194122,Wired Headphones,1,11.99,2019-05-27 16:18:00,573 Spruce St, Dallas,TX,75001 +194123,Apple Airpods Headphones,1,150.0,2019-05-24 00:34:00,546 Meadow St, Atlanta,GA,30301 +194124,iPhone,1,700.0,2019-05-04 23:40:00,937 North St, Portland,OR,97035 +194125,Bose SoundSport Headphones,1,99.99,2019-05-19 21:33:00,613 Lake St, San Francisco,CA,94016 +194126,AAA Batteries (4-pack),2,2.99,2019-05-19 21:28:00,549 Willow St, Los Angeles,CA,90001 +194127,Wired Headphones,1,11.99,2019-05-15 14:46:00,320 River St, Seattle,WA,98101 +194128,AAA Batteries (4-pack),2,2.99,2019-05-03 18:15:00,851 Wilson St, San Francisco,CA,94016 +194129,AA Batteries (4-pack),2,3.84,2019-05-05 11:51:00,487 Dogwood St, Seattle,WA,98101 +194130,34in Ultrawide Monitor,1,379.99,2019-05-09 15:57:00,847 Lakeview St, San Francisco,CA,94016 +194131,Bose SoundSport Headphones,1,99.99,2019-05-07 10:44:00,742 Jackson St, Seattle,WA,98101 +194132,iPhone,1,700.0,2019-05-22 21:35:00,478 Pine St, Seattle,WA,98101 +194133,Bose SoundSport Headphones,1,99.99,2019-05-03 09:45:00,776 Hill St, San Francisco,CA,94016 +194134,USB-C Charging Cable,1,11.95,2019-05-27 18:22:00,190 1st St, Los Angeles,CA,90001 +194135,Bose SoundSport Headphones,1,99.99,2019-05-09 20:06:00,589 10th St, Seattle,WA,98101 +194136,Wired Headphones,1,11.99,2019-05-23 19:58:00,702 14th St, Dallas,TX,75001 +194137,27in FHD Monitor,1,149.99,2019-05-14 04:13:00,666 Adams St, San Francisco,CA,94016 +194138,Lightning Charging Cable,1,14.95,2019-05-01 21:55:00,259 Center St, San Francisco,CA,94016 +194139,Apple Airpods Headphones,1,150.0,2019-05-12 23:13:00,362 2nd St, San Francisco,CA,94016 +194140,Lightning Charging Cable,1,14.95,2019-05-07 23:57:00,870 4th St, Austin,TX,73301 +194141,Wired Headphones,1,11.99,2019-05-13 14:09:00,807 Highland St, Boston,MA,02215 +194142,27in FHD Monitor,1,149.99,2019-05-11 19:08:00,48 Hickory St, Los Angeles,CA,90001 +194143,Apple Airpods Headphones,1,150.0,2019-05-09 21:58:00,87 Park St, San Francisco,CA,94016 +194144,USB-C Charging Cable,1,11.95,2019-05-11 20:12:00,550 5th St, Portland,OR,97035 +194145,AA Batteries (4-pack),1,3.84,2019-05-23 12:27:00,393 South St, New York City,NY,10001 +194146,AAA Batteries (4-pack),2,2.99,2019-05-23 20:31:00,164 Maple St, Atlanta,GA,30301 +194147,Flatscreen TV,1,300.0,2019-05-18 10:18:00,963 2nd St, New York City,NY,10001 +194148,27in 4K Gaming Monitor,1,389.99,2019-05-21 07:37:00,312 Church St, San Francisco,CA,94016 +194149,27in FHD Monitor,1,149.99,2019-05-23 21:32:00,585 8th St, San Francisco,CA,94016 +194150,Google Phone,1,600.0,2019-05-04 20:34:00,35 Willow St, Atlanta,GA,30301 +194151,AA Batteries (4-pack),1,3.84,2019-05-28 23:03:00,660 12th St, Los Angeles,CA,90001 +194152,USB-C Charging Cable,1,11.95,2019-05-06 11:27:00,859 Park St, Dallas,TX,75001 +194153,iPhone,1,700.0,2019-05-12 11:11:00,274 Sunset St, New York City,NY,10001 +194154,Bose SoundSport Headphones,1,99.99,2019-05-20 10:38:00,33 Wilson St, Austin,TX,73301 +194155,Apple Airpods Headphones,1,150.0,2019-05-22 10:53:00,50 11th St, San Francisco,CA,94016 +194156,Macbook Pro Laptop,1,1700.0,2019-05-20 18:32:00,67 12th St, Boston,MA,02215 +194157,AA Batteries (4-pack),1,3.84,2019-05-30 00:21:00,622 West St, Dallas,TX,75001 +194158,Lightning Charging Cable,1,14.95,2019-05-13 15:47:00,667 Jefferson St, Portland,OR,97035 +194159,Lightning Charging Cable,1,14.95,2019-05-24 07:30:00,976 1st St, Portland,OR,97035 +194160,Bose SoundSport Headphones,1,99.99,2019-05-29 15:23:00,31 Main St, Austin,TX,73301 +194161,Bose SoundSport Headphones,1,99.99,2019-05-31 10:46:00,643 Jackson St, Los Angeles,CA,90001 +194162,AA Batteries (4-pack),1,3.84,2019-05-07 23:12:00,956 Main St, Dallas,TX,75001 +194163,20in Monitor,1,109.99,2019-05-03 12:51:00,268 River St, Atlanta,GA,30301 +194164,34in Ultrawide Monitor,1,379.99,2019-05-28 14:00:00,755 Dogwood St, New York City,NY,10001 +194165,Apple Airpods Headphones,1,150.0,2019-05-29 20:16:00,725 Church St, San Francisco,CA,94016 +194166,Macbook Pro Laptop,1,1700.0,2019-05-06 13:30:00,435 North St, San Francisco,CA,94016 +194167,AA Batteries (4-pack),1,3.84,2019-05-24 22:36:00,187 Dogwood St, San Francisco,CA,94016 +194168,USB-C Charging Cable,2,11.95,2019-05-20 13:16:00,583 12th St, Portland,OR,97035 +194169,USB-C Charging Cable,1,11.95,2019-05-01 18:01:00,49 Lake St, Atlanta,GA,30301 +194170,Google Phone,1,600.0,2019-05-30 12:30:00,711 Maple St, San Francisco,CA,94016 +194170,USB-C Charging Cable,2,11.95,2019-05-30 12:30:00,711 Maple St, San Francisco,CA,94016 +194171,Vareebadd Phone,1,400.0,2019-05-06 15:18:00,498 Elm St, Atlanta,GA,30301 +194172,USB-C Charging Cable,2,11.95,2019-05-08 09:21:00,728 5th St, San Francisco,CA,94016 +194173,USB-C Charging Cable,1,11.95,2019-05-30 14:09:00,960 Lakeview St, Portland,OR,97035 +194174,iPhone,1,700.0,2019-05-04 23:08:00,37 North St, Seattle,WA,98101 +194174,Lightning Charging Cable,1,14.95,2019-05-04 23:08:00,37 North St, Seattle,WA,98101 +194174,Wired Headphones,2,11.99,2019-05-04 23:08:00,37 North St, Seattle,WA,98101 +194175,20in Monitor,1,109.99,2019-05-26 17:08:00,651 Cedar St, Austin,TX,73301 +194176,AA Batteries (4-pack),1,3.84,2019-05-05 18:30:00,154 Center St, San Francisco,CA,94016 +194177,Apple Airpods Headphones,1,150.0,2019-05-22 20:51:00,2 Highland St, New York City,NY,10001 +194178,Lightning Charging Cable,1,14.95,2019-05-15 07:35:00,441 Dogwood St, New York City,NY,10001 +194179,Flatscreen TV,1,300.0,2019-05-10 22:51:00,143 Spruce St, Boston,MA,02215 +194179,AAA Batteries (4-pack),2,2.99,2019-05-10 22:51:00,143 Spruce St, Boston,MA,02215 +194180,Bose SoundSport Headphones,1,99.99,2019-05-06 17:21:00,909 Ridge St, San Francisco,CA,94016 +194181,Macbook Pro Laptop,1,1700.0,2019-05-21 21:50:00,99 Jefferson St, New York City,NY,10001 +194182,Lightning Charging Cable,1,14.95,2019-05-22 12:11:00,272 11th St, Los Angeles,CA,90001 +194183,USB-C Charging Cable,1,11.95,2019-05-20 16:48:00,669 Lakeview St, Dallas,TX,75001 +194184,Lightning Charging Cable,1,14.95,2019-05-18 10:57:00,709 Center St, Dallas,TX,75001 +194185,Google Phone,1,600.0,2019-05-05 20:34:00,709 West St, San Francisco,CA,94016 +194186,iPhone,1,700.0,2019-05-10 22:44:00,495 Wilson St, Seattle,WA,98101 +194187,Macbook Pro Laptop,1,1700.0,2019-05-09 18:06:00,227 Hickory St, San Francisco,CA,94016 +194188,Apple Airpods Headphones,1,150.0,2019-05-26 11:17:00,622 Chestnut St, Los Angeles,CA,90001 +194189,AAA Batteries (4-pack),1,2.99,2019-05-20 18:34:00,684 Ridge St, New York City,NY,10001 +194190,27in FHD Monitor,1,149.99,2019-05-05 12:29:00,184 Jefferson St, New York City,NY,10001 +194191,27in 4K Gaming Monitor,1,389.99,2019-05-22 10:20:00,576 Willow St, San Francisco,CA,94016 +194192,Wired Headphones,1,11.99,2019-05-14 18:00:00,137 Jackson St, San Francisco,CA,94016 +194192,Bose SoundSport Headphones,1,99.99,2019-05-14 18:00:00,137 Jackson St, San Francisco,CA,94016 +194193,Bose SoundSport Headphones,1,99.99,2019-05-04 11:32:00,613 Sunset St, New York City,NY,10001 +194194,Wired Headphones,1,11.99,2019-05-14 19:38:00,110 Jackson St, Seattle,WA,98101 +194195,AAA Batteries (4-pack),1,2.99,2019-05-06 10:01:00,996 Jefferson St, Los Angeles,CA,90001 +194196,Wired Headphones,1,11.99,2019-05-29 21:27:00,741 Walnut St, Boston,MA,02215 +194197,AA Batteries (4-pack),3,3.84,2019-05-28 20:20:00,523 Spruce St, Los Angeles,CA,90001 +194198,Lightning Charging Cable,1,14.95,2019-05-03 21:24:00,370 10th St, Los Angeles,CA,90001 +194199,Lightning Charging Cable,1,14.95,2019-05-18 11:51:00,597 12th St, Seattle,WA,98101 +194200,AA Batteries (4-pack),1,3.84,2019-05-22 20:33:00,491 9th St, San Francisco,CA,94016 +194201,USB-C Charging Cable,1,11.95,2019-05-03 17:06:00,298 6th St, Portland,OR,97035 +194202,Apple Airpods Headphones,1,150.0,2019-05-25 13:22:00,341 4th St, Seattle,WA,98101 +194203,iPhone,1,700.0,2019-05-10 16:38:00,339 Cedar St, Portland,OR,97035 +194203,Lightning Charging Cable,1,14.95,2019-05-10 16:38:00,339 Cedar St, Portland,OR,97035 +194204,iPhone,1,700.0,2019-05-07 21:18:00,53 Highland St, Portland,OR,97035 +194205,iPhone,1,700.0,2019-05-26 20:35:00,920 Madison St, San Francisco,CA,94016 +194205,Wired Headphones,1,11.99,2019-05-26 20:35:00,920 Madison St, San Francisco,CA,94016 +194206,AA Batteries (4-pack),1,3.84,2019-05-29 14:52:00,853 Ridge St, Austin,TX,73301 +194207,USB-C Charging Cable,1,11.95,2019-05-04 10:38:00,728 Walnut St, New York City,NY,10001 +194208,Apple Airpods Headphones,1,150.0,2019-05-16 10:40:00,203 Madison St, Boston,MA,02215 +194209,ThinkPad Laptop,1,999.99,2019-05-09 21:06:00,800 Sunset St, Dallas,TX,75001 +194210,AAA Batteries (4-pack),2,2.99,2019-05-23 18:37:00,728 Dogwood St, New York City,NY,10001 +194211,Lightning Charging Cable,1,14.95,2019-05-08 13:40:00,107 Jackson St, Los Angeles,CA,90001 +194212,LG Washing Machine,1,600.0,2019-05-22 20:40:00,665 2nd St, Portland,ME,04101 +194213,Google Phone,1,600.0,2019-05-09 10:18:00,941 7th St, Dallas,TX,75001 +194214,AAA Batteries (4-pack),4,2.99,2019-05-05 09:21:00,866 9th St, Los Angeles,CA,90001 +194215,AAA Batteries (4-pack),1,2.99,2019-05-16 23:11:00,795 Pine St, Boston,MA,02215 +194216,Vareebadd Phone,1,400.0,2019-05-26 15:02:00,972 7th St, New York City,NY,10001 +194217,Flatscreen TV,1,300.0,2019-05-11 19:50:00,562 13th St, New York City,NY,10001 +194218,ThinkPad Laptop,1,999.99,2019-05-31 14:38:00,981 Washington St, Boston,MA,02215 +194219,Lightning Charging Cable,2,14.95,2019-05-31 06:45:00,276 Walnut St, San Francisco,CA,94016 +194220,Bose SoundSport Headphones,1,99.99,2019-05-24 23:47:00,990 10th St, Austin,TX,73301 +194221,27in 4K Gaming Monitor,1,389.99,2019-05-23 09:59:00,431 8th St, Los Angeles,CA,90001 +194222,AA Batteries (4-pack),2,3.84,2019-05-14 16:02:00,297 Johnson St, San Francisco,CA,94016 +194223,Flatscreen TV,1,300.0,2019-05-16 04:53:00,228 Wilson St, Portland,ME,04101 +194224,20in Monitor,1,109.99,2019-05-27 16:25:00,360 Highland St, San Francisco,CA,94016 +194225,Bose SoundSport Headphones,1,99.99,2019-05-09 17:22:00,958 Maple St, Boston,MA,02215 +194226,USB-C Charging Cable,1,11.95,2019-05-16 00:10:00,883 Sunset St, New York City,NY,10001 +194227,AAA Batteries (4-pack),1,2.99,2019-05-29 19:36:00,680 Johnson St, New York City,NY,10001 +194228,iPhone,1,700.0,2019-05-20 11:52:00,558 1st St, New York City,NY,10001 +194229,Vareebadd Phone,1,400.0,2019-05-09 18:22:00,815 Chestnut St, New York City,NY,10001 +194230,USB-C Charging Cable,1,11.95,2019-05-30 20:03:00,605 Hickory St, San Francisco,CA,94016 +194231,Wired Headphones,1,11.99,2019-05-02 13:41:00,949 10th St, Portland,OR,97035 +194232,27in 4K Gaming Monitor,1,389.99,2019-05-07 07:53:00,145 9th St, New York City,NY,10001 +194233,Apple Airpods Headphones,1,150.0,2019-05-04 17:16:00,616 Sunset St, San Francisco,CA,94016 +194234,AA Batteries (4-pack),1,3.84,2019-05-04 17:21:00,949 Cedar St, San Francisco,CA,94016 +194235,Apple Airpods Headphones,1,150.0,2019-05-16 12:51:00,506 Chestnut St, Seattle,WA,98101 +194236,USB-C Charging Cable,1,11.95,2019-05-16 16:44:00,95 7th St, Seattle,WA,98101 +194237,USB-C Charging Cable,1,11.95,2019-05-29 16:29:00,342 8th St, Austin,TX,73301 +194238,27in FHD Monitor,1,149.99,2019-05-14 13:11:00,816 Forest St, San Francisco,CA,94016 +194239,USB-C Charging Cable,1,11.95,2019-05-17 20:22:00,349 Walnut St, San Francisco,CA,94016 +194240,USB-C Charging Cable,1,11.95,2019-05-21 20:36:00,909 11th St, New York City,NY,10001 +194241,USB-C Charging Cable,1,11.95,2019-05-16 13:55:00,104 South St, New York City,NY,10001 +194242,20in Monitor,1,109.99,2019-05-24 20:18:00,252 Johnson St, San Francisco,CA,94016 +194243,Apple Airpods Headphones,1,150.0,2019-05-06 21:33:00,206 Forest St, Los Angeles,CA,90001 +194244,Wired Headphones,1,11.99,2019-05-18 12:04:00,610 Ridge St, Portland,OR,97035 +194245,Macbook Pro Laptop,1,1700.0,2019-05-26 16:50:00,93 Hickory St, Los Angeles,CA,90001 +194246,27in 4K Gaming Monitor,1,389.99,2019-05-10 17:34:00,675 Main St, San Francisco,CA,94016 +194247,USB-C Charging Cable,1,11.95,2019-05-23 17:26:00,661 Sunset St, Los Angeles,CA,90001 +194248,AA Batteries (4-pack),2,3.84,2019-05-04 11:56:00,484 6th St, San Francisco,CA,94016 +194249,AAA Batteries (4-pack),1,2.99,2019-05-30 23:53:00,400 Washington St, San Francisco,CA,94016 +194250,AAA Batteries (4-pack),1,2.99,2019-05-11 01:10:00,991 Cherry St, Austin,TX,73301 +194251,Bose SoundSport Headphones,1,99.99,2019-05-17 22:25:00,100 Washington St, Seattle,WA,98101 +194252,Apple Airpods Headphones,1,150.0,2019-05-09 08:53:00,172 Elm St, New York City,NY,10001 +194253,iPhone,1,700.0,2019-05-07 09:42:00,108 Adams St, Austin,TX,73301 +194253,Lightning Charging Cable,1,14.95,2019-05-07 09:42:00,108 Adams St, Austin,TX,73301 +194253,Wired Headphones,1,11.99,2019-05-07 09:42:00,108 Adams St, Austin,TX,73301 +194253,USB-C Charging Cable,1,11.95,2019-05-07 09:42:00,108 Adams St, Austin,TX,73301 +194254,AAA Batteries (4-pack),1,2.99,2019-05-13 13:17:00,899 Main St, San Francisco,CA,94016 +194255,AA Batteries (4-pack),1,3.84,2019-05-29 21:45:00,127 Lake St, Austin,TX,73301 +194256,Bose SoundSport Headphones,1,99.99,2019-05-03 13:11:00,89 Pine St, Dallas,TX,75001 +194257,27in 4K Gaming Monitor,1,389.99,2019-05-19 15:19:00,317 Forest St, San Francisco,CA,94016 +194258,Macbook Pro Laptop,1,1700.0,2019-05-24 18:17:00,454 12th St, New York City,NY,10001 +194259,USB-C Charging Cable,1,11.95,2019-05-28 16:24:00,356 Park St, Los Angeles,CA,90001 +194260,Apple Airpods Headphones,1,150.0,2019-05-21 11:07:00,252 Dogwood St, Los Angeles,CA,90001 +194261,Bose SoundSport Headphones,1,99.99,2019-05-14 16:48:00,689 10th St, New York City,NY,10001 +194262,Wired Headphones,1,11.99,2019-05-04 20:50:00,888 Hill St, Seattle,WA,98101 +194263,USB-C Charging Cable,2,11.95,2019-05-29 19:53:00,865 Center St, Seattle,WA,98101 +194264,Wired Headphones,1,11.99,2019-05-28 23:01:00,996 Johnson St, Portland,OR,97035 +194265,AAA Batteries (4-pack),1,2.99,2019-05-18 12:24:00,65 Pine St, New York City,NY,10001 +194266,USB-C Charging Cable,1,11.95,2019-05-22 21:15:00,187 Park St, Atlanta,GA,30301 +194267,27in 4K Gaming Monitor,1,389.99,2019-05-17 22:08:00,299 Adams St, Atlanta,GA,30301 +194268,Lightning Charging Cable,1,14.95,2019-05-13 11:18:00,711 10th St, Austin,TX,73301 +194269,Lightning Charging Cable,1,14.95,2019-05-08 13:03:00,750 Pine St, Los Angeles,CA,90001 +194270,27in FHD Monitor,1,149.99,2019-05-30 19:20:00,902 Cherry St, New York City,NY,10001 +194271,Wired Headphones,1,11.99,2019-05-28 22:37:00,673 Jackson St, Los Angeles,CA,90001 +194272,Apple Airpods Headphones,1,150.0,2019-05-06 14:23:00,817 2nd St, Los Angeles,CA,90001 +194273,AAA Batteries (4-pack),4,2.99,2019-05-22 20:14:00,789 Cherry St, Seattle,WA,98101 +194274,AA Batteries (4-pack),1,3.84,2019-05-04 11:04:00,626 Spruce St, Los Angeles,CA,90001 +194275,Lightning Charging Cable,1,14.95,2019-05-14 17:49:00,258 4th St, Dallas,TX,75001 +194276,34in Ultrawide Monitor,1,379.99,2019-05-02 17:21:00,632 Church St, New York City,NY,10001 +194277,27in FHD Monitor,1,149.99,2019-05-10 09:41:00,751 8th St, New York City,NY,10001 +194278,20in Monitor,1,109.99,2019-05-18 21:27:00,553 Walnut St, Portland,ME,04101 +194279,USB-C Charging Cable,1,11.95,2019-05-06 15:51:00,739 Center St, Los Angeles,CA,90001 +194280,AA Batteries (4-pack),1,3.84,2019-05-08 09:20:00,905 7th St, New York City,NY,10001 +194281,Lightning Charging Cable,1,14.95,2019-05-13 12:08:00,71 Adams St, Boston,MA,02215 +194282,34in Ultrawide Monitor,1,379.99,2019-05-25 06:32:00,319 Walnut St, Boston,MA,02215 +194283,USB-C Charging Cable,1,11.95,2019-05-13 19:09:00,395 5th St, San Francisco,CA,94016 +194284,Apple Airpods Headphones,1,150.0,2019-05-21 09:46:00,345 Spruce St, Seattle,WA,98101 +194285,Apple Airpods Headphones,1,150.0,2019-05-30 22:18:00,838 Elm St, San Francisco,CA,94016 +194286,20in Monitor,1,109.99,2019-05-20 10:17:00,629 Washington St, Dallas,TX,75001 +194287,Apple Airpods Headphones,1,150.0,2019-05-12 21:04:00,899 Elm St, Seattle,WA,98101 +194288,AA Batteries (4-pack),1,3.84,2019-05-25 20:16:00,164 4th St, Los Angeles,CA,90001 +194289,iPhone,1,700.0,2019-05-28 21:05:00,974 Cedar St, Dallas,TX,75001 +194290,Lightning Charging Cable,1,14.95,2019-05-01 17:00:00,884 West St, Los Angeles,CA,90001 +194291,Apple Airpods Headphones,1,150.0,2019-05-23 07:54:00,589 Walnut St, Seattle,WA,98101 +194292,USB-C Charging Cable,1,11.95,2019-05-27 11:19:00,223 Maple St, San Francisco,CA,94016 +194293,34in Ultrawide Monitor,1,379.99,2019-05-16 19:09:00,910 Madison St, Boston,MA,02215 +194294,Macbook Pro Laptop,1,1700.0,2019-05-31 20:44:00,365 Ridge St, New York City,NY,10001 +194294,Bose SoundSport Headphones,1,99.99,2019-05-31 20:44:00,365 Ridge St, New York City,NY,10001 +194295,Wired Headphones,1,11.99,2019-05-20 21:02:00,547 9th St, Atlanta,GA,30301 +194296,AAA Batteries (4-pack),1,2.99,2019-05-24 16:59:00,678 Chestnut St, New York City,NY,10001 +194297,Lightning Charging Cable,1,14.95,2019-05-29 13:20:00,779 Washington St, San Francisco,CA,94016 +194298,Lightning Charging Cable,1,14.95,2019-05-14 20:28:00,628 Jefferson St, Seattle,WA,98101 +194299,USB-C Charging Cable,1,11.95,2019-05-08 21:21:00,826 Dogwood St, Seattle,WA,98101 +194300,Bose SoundSport Headphones,1,99.99,2019-05-12 10:06:00,989 Hill St, New York City,NY,10001 +194301,Wired Headphones,1,11.99,2019-05-10 18:17:00,397 Cedar St, Los Angeles,CA,90001 +194302,Apple Airpods Headphones,1,150.0,2019-05-06 05:41:00,834 Adams St, San Francisco,CA,94016 +194303,iPhone,1,700.0,2019-05-07 19:31:00,596 West St, New York City,NY,10001 +194304,LG Dryer,1,600.0,2019-05-27 16:59:00,796 West St, Dallas,TX,75001 +194305,AAA Batteries (4-pack),4,2.99,2019-05-25 11:04:00,818 Wilson St, Los Angeles,CA,90001 +194306,Bose SoundSport Headphones,1,99.99,2019-05-28 14:49:00,918 1st St, San Francisco,CA,94016 +194307,Macbook Pro Laptop,1,1700.0,2019-05-25 15:30:00,300 Elm St, San Francisco,CA,94016 +194308,USB-C Charging Cable,1,11.95,2019-05-18 08:02:00,980 Willow St, Los Angeles,CA,90001 +194309,27in 4K Gaming Monitor,1,389.99,2019-05-14 18:28:00,450 Church St, Atlanta,GA,30301 +194310,AA Batteries (4-pack),2,3.84,2019-05-05 09:57:00,126 Church St, Seattle,WA,98101 +194311,Apple Airpods Headphones,1,150.0,2019-05-19 12:06:00,631 14th St, New York City,NY,10001 +194312,AAA Batteries (4-pack),1,2.99,2019-05-08 19:09:00,658 Church St, Portland,OR,97035 +194313,Wired Headphones,1,11.99,2019-05-30 18:24:00,39 5th St, Seattle,WA,98101 +194314,Google Phone,1,600.0,2019-05-04 11:11:00,941 8th St, New York City,NY,10001 +194314,USB-C Charging Cable,1,11.95,2019-05-04 11:11:00,941 8th St, New York City,NY,10001 +194314,Wired Headphones,1,11.99,2019-05-04 11:11:00,941 8th St, New York City,NY,10001 +194315,iPhone,1,700.0,2019-05-16 00:50:00,2 Center St, Austin,TX,73301 +194316,34in Ultrawide Monitor,1,379.99,2019-05-20 15:06:00,663 Elm St, Los Angeles,CA,90001 +194317,Flatscreen TV,1,300.0,2019-05-31 21:30:00,493 Lincoln St, New York City,NY,10001 +194318,AA Batteries (4-pack),1,3.84,2019-05-18 21:53:00,342 1st St, San Francisco,CA,94016 +194319,AAA Batteries (4-pack),1,2.99,2019-05-14 21:00:00,68 12th St, Seattle,WA,98101 +194320,iPhone,1,700.0,2019-05-17 05:53:00,180 Adams St, New York City,NY,10001 +194320,Lightning Charging Cable,1,14.95,2019-05-17 05:53:00,180 Adams St, New York City,NY,10001 +194321,LG Washing Machine,1,600.0,2019-05-14 06:59:00,761 Lakeview St, Portland,OR,97035 +194322,Bose SoundSport Headphones,1,99.99,2019-05-10 10:58:00,793 5th St, Boston,MA,02215 +194323,Apple Airpods Headphones,1,150.0,2019-05-08 14:48:00,185 River St, Austin,TX,73301 +194324,Wired Headphones,1,11.99,2019-05-11 08:39:00,141 1st St, Boston,MA,02215 +194325,Wired Headphones,1,11.99,2019-05-23 18:18:00,960 Park St, San Francisco,CA,94016 +194326,AA Batteries (4-pack),1,3.84,2019-05-14 21:37:00,428 13th St, Boston,MA,02215 +194327,iPhone,1,700.0,2019-05-10 17:42:00,984 6th St, Austin,TX,73301 +194328,LG Dryer,1,600.0,2019-05-31 14:01:00,844 Cedar St, Atlanta,GA,30301 +194329,AAA Batteries (4-pack),1,2.99,2019-05-22 14:15:00,515 Church St, San Francisco,CA,94016 +194330,Wired Headphones,1,11.99,2019-05-25 22:35:00,273 Walnut St, San Francisco,CA,94016 +194331,USB-C Charging Cable,1,11.95,2019-05-17 20:35:00,526 Lake St, Boston,MA,02215 +194332,Lightning Charging Cable,1,14.95,2019-05-27 15:10:00,912 Willow St, San Francisco,CA,94016 +194333,Google Phone,1,600.0,2019-05-23 21:40:00,383 2nd St, Portland,OR,97035 +194334,AA Batteries (4-pack),1,3.84,2019-05-04 15:48:00,494 2nd St, Atlanta,GA,30301 +194335,Macbook Pro Laptop,1,1700.0,2019-05-16 12:05:00,53 Ridge St, Portland,OR,97035 +194336,Wired Headphones,1,11.99,2019-05-30 05:04:00,361 11th St, Los Angeles,CA,90001 +194337,34in Ultrawide Monitor,1,379.99,2019-05-30 12:45:00,176 7th St, Atlanta,GA,30301 +194338,AA Batteries (4-pack),1,3.84,2019-05-01 16:38:00,139 11th St, New York City,NY,10001 +194339,27in 4K Gaming Monitor,1,389.99,2019-05-04 14:57:00,910 Lincoln St, New York City,NY,10001 +194340,USB-C Charging Cable,1,11.95,2019-05-22 17:35:00,597 Washington St, San Francisco,CA,94016 +194341,20in Monitor,1,109.99,2019-05-21 11:30:00,659 Highland St, Atlanta,GA,30301 +194342,27in 4K Gaming Monitor,1,389.99,2019-05-23 17:01:00,460 Wilson St, Los Angeles,CA,90001 +194343,AAA Batteries (4-pack),2,2.99,2019-05-28 17:26:00,21 Highland St, San Francisco,CA,94016 +194343,AA Batteries (4-pack),1,3.84,2019-05-28 17:26:00,21 Highland St, San Francisco,CA,94016 +194344,Wired Headphones,1,11.99,2019-05-08 08:44:00,287 Church St, New York City,NY,10001 +194345,AA Batteries (4-pack),2,3.84,2019-05-16 09:25:00,734 Hickory St, New York City,NY,10001 +194346,Wired Headphones,1,11.99,2019-05-29 18:00:00,366 Jackson St, Los Angeles,CA,90001 +194347,Wired Headphones,1,11.99,2019-05-26 00:22:00,196 Jefferson St, Atlanta,GA,30301 +194348,20in Monitor,1,109.99,2019-05-18 20:03:00,153 10th St, New York City,NY,10001 +194349,ThinkPad Laptop,1,999.99,2019-05-11 21:09:00,186 Jackson St, Dallas,TX,75001 +194350,AAA Batteries (4-pack),2,2.99,2019-05-10 12:00:00,564 Sunset St, San Francisco,CA,94016 +194351,Macbook Pro Laptop,1,1700.0,2019-05-01 13:23:00,853 Willow St, Austin,TX,73301 +194352,ThinkPad Laptop,1,999.99,2019-05-21 16:09:00,11 6th St, San Francisco,CA,94016 +194353,27in FHD Monitor,1,149.99,2019-05-05 12:58:00,297 12th St, Austin,TX,73301 +194354,Bose SoundSport Headphones,1,99.99,2019-05-06 12:49:00,844 Madison St, New York City,NY,10001 +194355,27in FHD Monitor,1,149.99,2019-05-27 15:55:00,196 Cherry St, Portland,OR,97035 +194356,Bose SoundSport Headphones,1,99.99,2019-05-07 22:16:00,773 Cherry St, Austin,TX,73301 +194357,USB-C Charging Cable,1,11.95,2019-05-08 10:24:00,601 West St, San Francisco,CA,94016 +194358,ThinkPad Laptop,1,999.99,2019-05-30 12:02:00,135 Jackson St, Seattle,WA,98101 +194359,AAA Batteries (4-pack),1,2.99,2019-05-07 12:53:00,442 Park St, Dallas,TX,75001 +194360,AA Batteries (4-pack),1,3.84,2019-05-17 07:32:00,768 Walnut St, Los Angeles,CA,90001 +194361,USB-C Charging Cable,1,11.95,2019-05-14 18:54:00,316 11th St, New York City,NY,10001 +194362,iPhone,1,700.0,2019-05-22 18:56:00,988 Cherry St, New York City,NY,10001 +194363,Wired Headphones,1,11.99,2019-05-23 15:27:00,841 Lincoln St, Boston,MA,02215 +194364,Flatscreen TV,1,300.0,2019-05-01 12:01:00,672 5th St, San Francisco,CA,94016 +194365,AA Batteries (4-pack),3,3.84,2019-05-14 20:57:00,924 13th St, Los Angeles,CA,90001 +194366,34in Ultrawide Monitor,1,379.99,2019-05-16 23:43:00,642 Elm St, Atlanta,GA,30301 +194367,Lightning Charging Cable,1,14.95,2019-05-02 20:03:00,99 Jackson St, San Francisco,CA,94016 +194368,AA Batteries (4-pack),2,3.84,2019-05-08 16:36:00,831 Walnut St, Los Angeles,CA,90001 +194369,AAA Batteries (4-pack),3,2.99,2019-05-22 07:29:00,298 4th St, Austin,TX,73301 +194370,iPhone,1,700.0,2019-05-29 08:41:00,697 Maple St, Los Angeles,CA,90001 +194370,ThinkPad Laptop,1,999.99,2019-05-29 08:41:00,697 Maple St, Los Angeles,CA,90001 +194371,Wired Headphones,1,11.99,2019-05-04 19:37:00,817 Dogwood St, San Francisco,CA,94016 +194372,iPhone,1,700.0,2019-05-27 07:58:00,240 Spruce St, Austin,TX,73301 +194373,AAA Batteries (4-pack),1,2.99,2019-05-07 22:51:00,500 Chestnut St, Seattle,WA,98101 +194374,AA Batteries (4-pack),1,3.84,2019-05-20 20:03:00,215 Hill St, Atlanta,GA,30301 +194375,20in Monitor,1,109.99,2019-05-25 16:05:00,602 Washington St, New York City,NY,10001 +194376,Bose SoundSport Headphones,1,99.99,2019-05-02 14:32:00,304 7th St, Los Angeles,CA,90001 +194377,iPhone,1,700.0,2019-05-27 19:21:00,565 Wilson St, San Francisco,CA,94016 +194378,Google Phone,1,600.0,2019-05-23 16:07:00,865 Jackson St, San Francisco,CA,94016 +194378,Bose SoundSport Headphones,1,99.99,2019-05-23 16:07:00,865 Jackson St, San Francisco,CA,94016 +194379,Wired Headphones,1,11.99,2019-05-03 18:46:00,197 Dogwood St, Los Angeles,CA,90001 +194380,Apple Airpods Headphones,1,150.0,2019-05-05 12:05:00,589 2nd St, Los Angeles,CA,90001 +194381,USB-C Charging Cable,1,11.95,2019-05-23 01:57:00,853 Hickory St, San Francisco,CA,94016 +194382,Vareebadd Phone,1,400.0,2019-05-20 14:54:00,897 Wilson St, San Francisco,CA,94016 +194382,Bose SoundSport Headphones,1,99.99,2019-05-20 14:54:00,897 Wilson St, San Francisco,CA,94016 +194383,USB-C Charging Cable,1,11.95,2019-05-09 20:31:00,384 Ridge St, San Francisco,CA,94016 +194384,Lightning Charging Cable,1,14.95,2019-05-07 04:18:00,181 Meadow St, Boston,MA,02215 +194385,Bose SoundSport Headphones,1,99.99,2019-05-31 19:13:00,399 12th St, San Francisco,CA,94016 +194386,Lightning Charging Cable,1,14.95,2019-05-13 19:10:00,110 Church St, Boston,MA,02215 +194387,Bose SoundSport Headphones,1,99.99,2019-05-25 11:31:00,477 Highland St, Los Angeles,CA,90001 +194388,27in 4K Gaming Monitor,1,389.99,2019-05-19 13:24:00,724 Wilson St, Los Angeles,CA,90001 +194389,AA Batteries (4-pack),2,3.84,2019-05-30 10:13:00,7 9th St, Seattle,WA,98101 +194390,Lightning Charging Cable,1,14.95,2019-05-20 18:51:00,83 Chestnut St, New York City,NY,10001 +194391,iPhone,1,700.0,2019-05-01 13:38:00,906 4th St, New York City,NY,10001 +194392,Bose SoundSport Headphones,1,99.99,2019-05-06 18:11:00,640 South St, Boston,MA,02215 +194393,Lightning Charging Cable,1,14.95,2019-05-24 18:45:00,852 Center St, Boston,MA,02215 +194394,iPhone,1,700.0,2019-05-10 17:14:00,888 Spruce St, San Francisco,CA,94016 +194395,Wired Headphones,1,11.99,2019-05-20 09:57:00,434 Pine St, Seattle,WA,98101 +194396,Apple Airpods Headphones,1,150.0,2019-05-14 02:41:00,788 8th St, San Francisco,CA,94016 +194397,AA Batteries (4-pack),1,3.84,2019-05-16 03:03:00,542 North St, San Francisco,CA,94016 +194398,AAA Batteries (4-pack),1,2.99,2019-05-07 20:03:00,513 Washington St, Portland,OR,97035 +194399,Lightning Charging Cable,2,14.95,2019-05-22 18:58:00,569 Forest St, San Francisco,CA,94016 +194400,AAA Batteries (4-pack),2,2.99,2019-05-31 11:37:00,860 Cherry St, Los Angeles,CA,90001 +194401,Apple Airpods Headphones,1,150.0,2019-05-22 09:47:00,475 9th St, Los Angeles,CA,90001 +194402,AAA Batteries (4-pack),1,2.99,2019-05-29 09:28:00,408 Lake St, San Francisco,CA,94016 +194403,iPhone,1,700.0,2019-05-08 20:21:00,197 11th St, Los Angeles,CA,90001 +194404,AA Batteries (4-pack),1,3.84,2019-05-10 20:59:00,744 Lincoln St, Austin,TX,73301 +194405,Lightning Charging Cable,1,14.95,2019-05-25 10:19:00,91 Lake St, Dallas,TX,75001 +194406,AA Batteries (4-pack),3,3.84,2019-05-15 16:06:00,127 Johnson St, San Francisco,CA,94016 +194407,Lightning Charging Cable,1,14.95,2019-05-11 09:47:00,191 Center St, Portland,OR,97035 +194408,Bose SoundSport Headphones,1,99.99,2019-05-24 15:59:00,523 Park St, Boston,MA,02215 +194409,AAA Batteries (4-pack),2,2.99,2019-05-15 20:19:00,325 North St, Los Angeles,CA,90001 +194410,AAA Batteries (4-pack),1,2.99,2019-05-14 17:07:00,702 Elm St, Seattle,WA,98101 +194411,27in 4K Gaming Monitor,1,389.99,2019-05-08 10:45:00,593 4th St, Seattle,WA,98101 +194412,AA Batteries (4-pack),1,3.84,2019-05-12 10:32:00,942 6th St, Dallas,TX,75001 +194413,27in FHD Monitor,1,149.99,2019-05-14 11:55:00,612 2nd St, Los Angeles,CA,90001 +194414,USB-C Charging Cable,3,11.95,2019-05-22 09:06:00,609 Meadow St, Los Angeles,CA,90001 +194415,AA Batteries (4-pack),1,3.84,2019-05-17 13:44:00,824 Pine St, San Francisco,CA,94016 +194416,Google Phone,1,600.0,2019-05-03 08:35:00,992 Sunset St, New York City,NY,10001 +194416,USB-C Charging Cable,1,11.95,2019-05-03 08:35:00,992 Sunset St, New York City,NY,10001 +194417,27in FHD Monitor,1,149.99,2019-05-04 06:27:00,87 Cherry St, San Francisco,CA,94016 +194418,USB-C Charging Cable,2,11.95,2019-05-25 17:32:00,651 Pine St, Portland,ME,04101 +194419,Wired Headphones,1,11.99,2019-05-23 06:51:00,360 Cedar St, New York City,NY,10001 +194420,Apple Airpods Headphones,1,150.0,2019-05-09 11:05:00,27 South St, New York City,NY,10001 +194421,AAA Batteries (4-pack),1,2.99,2019-05-12 07:45:00,823 Jefferson St, Austin,TX,73301 +194422,Apple Airpods Headphones,1,150.0,2019-05-31 14:01:00,319 Walnut St, Dallas,TX,75001 +194423,27in FHD Monitor,1,149.99,2019-05-22 19:54:00,212 Chestnut St, New York City,NY,10001 +194424,Apple Airpods Headphones,1,150.0,2019-05-30 08:17:00,228 Pine St, Portland,OR,97035 +194425,Wired Headphones,1,11.99,2019-05-15 15:02:00,577 South St, Atlanta,GA,30301 +194426,Google Phone,1,600.0,2019-05-04 14:40:00,783 Sunset St, Dallas,TX,75001 +194426,Bose SoundSport Headphones,1,99.99,2019-05-04 14:40:00,783 Sunset St, Dallas,TX,75001 +194427,Bose SoundSport Headphones,1,99.99,2019-05-01 15:33:00,467 Meadow St, Portland,OR,97035 +194428,Macbook Pro Laptop,1,1700.0,2019-05-04 16:37:00,699 Elm St, Boston,MA,02215 +194429,AA Batteries (4-pack),1,3.84,2019-05-29 19:21:00,563 2nd St, Los Angeles,CA,90001 +194430,Vareebadd Phone,1,400.0,2019-05-04 10:35:00,234 Main St, Seattle,WA,98101 +194431,Bose SoundSport Headphones,1,99.99,2019-05-02 13:15:00,902 Adams St, Boston,MA,02215 +194432,Lightning Charging Cable,1,14.95,2019-05-05 08:27:00,569 Church St, New York City,NY,10001 +194433,Flatscreen TV,1,300.0,2019-05-31 16:36:00,611 Madison St, San Francisco,CA,94016 +194434,Apple Airpods Headphones,1,150.0,2019-05-30 19:10:00,309 8th St, New York City,NY,10001 +194435,Apple Airpods Headphones,1,150.0,2019-05-08 15:43:00,865 9th St, San Francisco,CA,94016 +194436,Bose SoundSport Headphones,1,99.99,2019-05-29 13:27:00,115 West St, Boston,MA,02215 +194437,AAA Batteries (4-pack),4,2.99,2019-05-27 21:50:00,963 Willow St, New York City,NY,10001 +194438,AAA Batteries (4-pack),2,2.99,2019-05-10 08:29:00,321 11th St, Seattle,WA,98101 +194439,27in 4K Gaming Monitor,1,389.99,2019-05-13 13:59:00,105 8th St, San Francisco,CA,94016 +194440,AAA Batteries (4-pack),2,2.99,2019-05-01 18:58:00,741 Hill St, Boston,MA,02215 +194441,Bose SoundSport Headphones,1,99.99,2019-05-14 19:48:00,996 Meadow St, Boston,MA,02215 +194442,Google Phone,1,600.0,2019-05-14 21:17:00,179 9th St, Atlanta,GA,30301 +194443,20in Monitor,1,109.99,2019-05-05 16:10:00,109 Ridge St, Dallas,TX,75001 +194444,AA Batteries (4-pack),1,3.84,2019-05-15 08:50:00,251 Sunset St, Austin,TX,73301 +194445,USB-C Charging Cable,1,11.95,2019-05-15 08:07:00,950 12th St, Austin,TX,73301 +194446,Flatscreen TV,1,300.0,2019-05-02 07:54:00,383 5th St, Los Angeles,CA,90001 +194447,USB-C Charging Cable,1,11.95,2019-05-14 09:55:00,562 Hill St, New York City,NY,10001 +194448,USB-C Charging Cable,1,11.95,2019-05-01 12:39:00,10 Jefferson St, Boston,MA,02215 +194449,Bose SoundSport Headphones,1,99.99,2019-05-08 12:05:00,379 Walnut St, San Francisco,CA,94016 +194450,Wired Headphones,2,11.99,2019-05-06 12:36:00,404 Forest St, San Francisco,CA,94016 +194451,Wired Headphones,1,11.99,2019-05-22 04:37:00,779 Spruce St, Atlanta,GA,30301 +194452,iPhone,1,700.0,2019-05-19 23:02:00,188 12th St, Portland,OR,97035 +194453,USB-C Charging Cable,1,11.95,2019-05-13 10:35:00,904 Maple St, Boston,MA,02215 +194454,USB-C Charging Cable,2,11.95,2019-05-05 15:45:00,890 Cherry St, Los Angeles,CA,90001 +194455,AAA Batteries (4-pack),3,2.99,2019-05-31 19:31:00,527 8th St, Boston,MA,02215 +194456,AAA Batteries (4-pack),3,2.99,2019-05-04 14:18:00,139 Hickory St, Seattle,WA,98101 +194457,Lightning Charging Cable,1,14.95,2019-05-28 13:59:00,800 Walnut St, San Francisco,CA,94016 +194458,AA Batteries (4-pack),1,3.84,2019-05-04 08:56:00,846 Spruce St, New York City,NY,10001 +194459,Lightning Charging Cable,1,14.95,2019-05-29 22:07:00,389 Church St, San Francisco,CA,94016 +194460,Vareebadd Phone,1,400.0,2019-05-08 11:17:00,936 Elm St, Atlanta,GA,30301 +194461,Bose SoundSport Headphones,1,99.99,2019-05-08 10:24:00,646 8th St, San Francisco,CA,94016 +194462,Bose SoundSport Headphones,1,99.99,2019-05-31 18:35:00,796 Jefferson St, Atlanta,GA,30301 +194463,USB-C Charging Cable,1,11.95,2019-05-22 11:33:00,244 Lincoln St, San Francisco,CA,94016 +194464,27in 4K Gaming Monitor,1,389.99,2019-05-26 15:41:00,281 Dogwood St, Austin,TX,73301 +194465,Flatscreen TV,1,300.0,2019-05-06 23:19:00,944 Lakeview St, Atlanta,GA,30301 +194466,Flatscreen TV,1,300.0,2019-05-24 19:22:00,29 11th St, Seattle,WA,98101 +194467,Bose SoundSport Headphones,1,99.99,2019-05-25 22:37:00,440 Washington St, Los Angeles,CA,90001 +194468,Apple Airpods Headphones,1,150.0,2019-05-01 20:57:00,565 West St, Boston,MA,02215 +194469,27in FHD Monitor,1,149.99,2019-05-09 16:33:00,187 12th St, New York City,NY,10001 +194470,27in FHD Monitor,1,149.99,2019-05-31 06:40:00,99 Meadow St, Dallas,TX,75001 +194471,USB-C Charging Cable,1,11.95,2019-05-05 13:38:00,348 Highland St, Boston,MA,02215 +194472,Lightning Charging Cable,1,14.95,2019-05-08 13:48:00,937 North St, Seattle,WA,98101 +194473,Wired Headphones,1,11.99,2019-05-28 16:47:00,702 Lakeview St, San Francisco,CA,94016 +194474,Wired Headphones,1,11.99,2019-05-09 07:49:00,281 Chestnut St, San Francisco,CA,94016 +194474,USB-C Charging Cable,1,11.95,2019-05-09 07:49:00,281 Chestnut St, San Francisco,CA,94016 +194475,AAA Batteries (4-pack),3,2.99,2019-05-24 23:09:00,413 Hill St, Austin,TX,73301 +194476,Wired Headphones,1,11.99,2019-05-24 20:21:00,320 Park St, San Francisco,CA,94016 +194477,Flatscreen TV,1,300.0,2019-05-09 15:20:00,717 12th St, Seattle,WA,98101 +194478,Lightning Charging Cable,1,14.95,2019-05-08 18:29:00,509 Lincoln St, New York City,NY,10001 +194479,USB-C Charging Cable,1,11.95,2019-05-04 10:05:00,947 Jefferson St, Boston,MA,02215 +194480,iPhone,1,700.0,2019-05-19 06:34:00,27 7th St, Atlanta,GA,30301 +194481,USB-C Charging Cable,1,11.95,2019-05-25 20:07:00,532 Church St, Dallas,TX,75001 +194482,LG Dryer,1,600.0,2019-05-01 19:31:00,316 2nd St, Los Angeles,CA,90001 +194483,Bose SoundSport Headphones,1,99.99,2019-05-20 23:05:00,671 Church St, Atlanta,GA,30301 +194484,27in 4K Gaming Monitor,1,389.99,2019-05-07 17:11:00,4 11th St, Atlanta,GA,30301 +194485,Lightning Charging Cable,2,14.95,2019-05-08 20:08:00,841 River St, Los Angeles,CA,90001 +194486,Wired Headphones,1,11.99,2019-05-11 17:12:00,344 Lincoln St, San Francisco,CA,94016 +194487,Apple Airpods Headphones,1,150.0,2019-05-25 12:17:00,62 Madison St, New York City,NY,10001 +194488,AA Batteries (4-pack),2,3.84,2019-05-09 15:55:00,878 1st St, Atlanta,GA,30301 +194489,AAA Batteries (4-pack),2,2.99,2019-05-20 06:52:00,229 Cedar St, Boston,MA,02215 +194490,Lightning Charging Cable,1,14.95,2019-05-29 15:31:00,344 Ridge St, Los Angeles,CA,90001 +194491,Lightning Charging Cable,1,14.95,2019-05-02 23:35:00,776 8th St, San Francisco,CA,94016 +194492,USB-C Charging Cable,2,11.95,2019-05-16 12:11:00,112 South St, San Francisco,CA,94016 +194493,27in 4K Gaming Monitor,1,389.99,2019-05-21 18:24:00,601 Maple St, Los Angeles,CA,90001 +194494,Google Phone,1,600.0,2019-05-22 13:48:00,903 Center St, Boston,MA,02215 +194494,Wired Headphones,1,11.99,2019-05-22 13:48:00,903 Center St, Boston,MA,02215 +194495,LG Washing Machine,1,600.0,2019-05-30 21:43:00,911 South St, San Francisco,CA,94016 +194496,Google Phone,1,600.0,2019-05-02 11:07:00,577 Spruce St, San Francisco,CA,94016 +194497,AAA Batteries (4-pack),3,2.99,2019-05-28 15:23:00,954 Lincoln St, Los Angeles,CA,90001 +194498,AAA Batteries (4-pack),1,2.99,2019-05-15 16:36:00,287 Wilson St, San Francisco,CA,94016 +194499,USB-C Charging Cable,1,11.95,2019-05-13 18:37:00,653 5th St, Seattle,WA,98101 +194500,20in Monitor,1,109.99,2019-05-03 13:02:00,414 Dogwood St, Portland,OR,97035 +194501,34in Ultrawide Monitor,1,379.99,2019-05-09 15:50:00,1 Chestnut St, San Francisco,CA,94016 +194502,AAA Batteries (4-pack),2,2.99,2019-05-14 19:47:00,471 Forest St, Dallas,TX,75001 +194503,34in Ultrawide Monitor,1,379.99,2019-05-09 23:17:00,947 Madison St, Portland,OR,97035 +194504,AAA Batteries (4-pack),2,2.99,2019-05-26 12:47:00,709 Ridge St, Los Angeles,CA,90001 +194505,AAA Batteries (4-pack),1,2.99,2019-05-04 07:07:00,850 Highland St, Austin,TX,73301 +194506,AAA Batteries (4-pack),2,2.99,2019-05-17 14:17:00,470 Spruce St, New York City,NY,10001 +194507,Bose SoundSport Headphones,1,99.99,2019-05-10 10:53:00,222 Jefferson St, Austin,TX,73301 +194508,34in Ultrawide Monitor,1,379.99,2019-05-08 14:40:00,503 River St, New York City,NY,10001 +194509,Apple Airpods Headphones,1,150.0,2019-05-24 18:32:00,609 Center St, Boston,MA,02215 +194509,Lightning Charging Cable,1,14.95,2019-05-24 18:32:00,609 Center St, Boston,MA,02215 +194510,20in Monitor,1,109.99,2019-05-25 12:49:00,566 Forest St, Los Angeles,CA,90001 +194511,Google Phone,1,600.0,2019-05-26 19:13:00,956 Walnut St, New York City,NY,10001 +194511,USB-C Charging Cable,1,11.95,2019-05-26 19:13:00,956 Walnut St, New York City,NY,10001 +194512,Wired Headphones,1,11.99,2019-05-15 07:34:00,268 Maple St, Boston,MA,02215 +194513,AAA Batteries (4-pack),3,2.99,2019-05-31 13:20:00,45 Wilson St, Austin,TX,73301 +194514,Bose SoundSport Headphones,1,99.99,2019-05-28 12:39:00,368 South St, San Francisco,CA,94016 +194515,Apple Airpods Headphones,1,150.0,2019-05-29 18:34:00,918 Lakeview St, Los Angeles,CA,90001 +194516,27in FHD Monitor,1,149.99,2019-05-09 18:50:00,156 Dogwood St, Los Angeles,CA,90001 +194517,AAA Batteries (4-pack),1,2.99,2019-05-14 10:14:00,80 1st St, Los Angeles,CA,90001 +194518,27in 4K Gaming Monitor,1,389.99,2019-05-26 14:17:00,190 North St, Portland,ME,04101 +194519,Google Phone,1,600.0,2019-05-23 13:13:00,70 4th St, Los Angeles,CA,90001 +194520,USB-C Charging Cable,1,11.95,2019-05-29 22:31:00,841 Ridge St, Dallas,TX,75001 +194521,Wired Headphones,1,11.99,2019-05-14 18:14:00,606 Johnson St, New York City,NY,10001 +194522,USB-C Charging Cable,1,11.95,2019-05-26 20:12:00,346 Maple St, San Francisco,CA,94016 +194523,Wired Headphones,1,11.99,2019-05-03 13:19:00,439 Maple St, Boston,MA,02215 +194524,Lightning Charging Cable,1,14.95,2019-05-30 12:02:00,258 8th St, Boston,MA,02215 +194525,AAA Batteries (4-pack),1,2.99,2019-05-15 13:36:00,608 Jefferson St, San Francisco,CA,94016 +194526,AAA Batteries (4-pack),1,2.99,2019-05-14 12:04:00,983 11th St, San Francisco,CA,94016 +194527,AAA Batteries (4-pack),1,2.99,2019-05-25 11:32:00,770 Jackson St, Seattle,WA,98101 +194528,27in FHD Monitor,1,149.99,2019-05-26 17:15:00,79 8th St, Dallas,TX,75001 +194529,AA Batteries (4-pack),2,3.84,2019-05-13 13:07:00,928 Willow St, Dallas,TX,75001 +194530,AAA Batteries (4-pack),1,2.99,2019-05-24 20:59:00,43 Cedar St, San Francisco,CA,94016 +194531,USB-C Charging Cable,1,11.95,2019-05-31 23:49:00,716 North St, Austin,TX,73301 +194532,Google Phone,1,600.0,2019-05-19 13:19:00,516 Chestnut St, San Francisco,CA,94016 +194533,AA Batteries (4-pack),1,3.84,2019-05-16 14:39:00,830 Meadow St, San Francisco,CA,94016 +194534,AA Batteries (4-pack),1,3.84,2019-05-27 11:58:00,482 Pine St, Boston,MA,02215 +194535,AA Batteries (4-pack),1,3.84,2019-05-14 14:45:00,26 Meadow St, San Francisco,CA,94016 +194536,USB-C Charging Cable,1,11.95,2019-05-19 10:19:00,74 Lincoln St, New York City,NY,10001 +194537,USB-C Charging Cable,2,11.95,2019-05-21 18:44:00,822 2nd St, Boston,MA,02215 +194538,Wired Headphones,1,11.99,2019-05-28 23:56:00,212 Lakeview St, Atlanta,GA,30301 +194539,Apple Airpods Headphones,1,150.0,2019-05-15 04:38:00,738 Willow St, Portland,ME,04101 +194540,USB-C Charging Cable,1,11.95,2019-05-08 10:20:00,498 Washington St, Seattle,WA,98101 +194541,ThinkPad Laptop,1,999.99,2019-05-07 19:44:00,736 5th St, Portland,ME,04101 +194542,Bose SoundSport Headphones,1,99.99,2019-05-24 15:44:00,311 4th St, Los Angeles,CA,90001 +194543,Wired Headphones,1,11.99,2019-05-04 20:46:00,280 West St, San Francisco,CA,94016 +194544,20in Monitor,1,109.99,2019-05-12 11:14:00,876 Highland St, San Francisco,CA,94016 +194545,Wired Headphones,1,11.99,2019-05-23 11:35:00,310 West St, Los Angeles,CA,90001 +194546,Apple Airpods Headphones,1,150.0,2019-05-25 11:57:00,438 11th St, Los Angeles,CA,90001 +194547,USB-C Charging Cable,1,11.95,2019-05-26 15:01:00,573 Johnson St, Portland,OR,97035 +194548,AAA Batteries (4-pack),1,2.99,2019-05-25 01:49:00,810 Jackson St, Dallas,TX,75001 +194549,AA Batteries (4-pack),1,3.84,2019-05-26 07:17:00,807 North St, Seattle,WA,98101 +194550,Bose SoundSport Headphones,1,99.99,2019-05-05 00:19:00,98 12th St, San Francisco,CA,94016 +194551,USB-C Charging Cable,1,11.95,2019-05-24 13:51:00,180 8th St, Boston,MA,02215 +194552,Vareebadd Phone,1,400.0,2019-05-14 15:25:00,651 Madison St, Dallas,TX,75001 +194553,Flatscreen TV,1,300.0,2019-05-31 13:16:00,150 Dogwood St, Los Angeles,CA,90001 +194554,AA Batteries (4-pack),1,3.84,2019-05-17 15:03:00,944 North St, New York City,NY,10001 +194555,LG Washing Machine,1,600.0,2019-05-06 10:31:00,583 South St, San Francisco,CA,94016 +194556,Flatscreen TV,1,300.0,2019-05-15 00:05:00,711 Hill St, Portland,ME,04101 +194557,AA Batteries (4-pack),1,3.84,2019-05-28 07:03:00,762 Willow St, New York City,NY,10001 +194558,27in FHD Monitor,1,149.99,2019-05-10 11:54:00,791 9th St, San Francisco,CA,94016 +194559,ThinkPad Laptop,1,999.99,2019-05-22 19:38:00,746 Pine St, Austin,TX,73301 +194560,USB-C Charging Cable,1,11.95,2019-05-19 10:08:00,370 Maple St, Atlanta,GA,30301 +194561,Bose SoundSport Headphones,1,99.99,2019-05-31 13:05:00,73 Meadow St, Portland,OR,97035 +194562,USB-C Charging Cable,2,11.95,2019-05-20 12:24:00,500 Pine St, San Francisco,CA,94016 +194563,27in 4K Gaming Monitor,1,389.99,2019-05-01 20:50:00,333 Highland St, Los Angeles,CA,90001 +194564,AA Batteries (4-pack),1,3.84,2019-05-27 09:58:00,945 5th St, New York City,NY,10001 +194565,Wired Headphones,1,11.99,2019-05-08 19:58:00,200 Madison St, New York City,NY,10001 +194566,Google Phone,1,600.0,2019-05-02 18:12:00,680 Church St, San Francisco,CA,94016 +194566,Bose SoundSport Headphones,1,99.99,2019-05-02 18:12:00,680 Church St, San Francisco,CA,94016 +194567,Apple Airpods Headphones,1,150.0,2019-05-09 10:03:00,521 Park St, San Francisco,CA,94016 +194568,Apple Airpods Headphones,1,150.0,2019-05-10 23:12:00,91 Walnut St, Atlanta,GA,30301 +194569,Macbook Pro Laptop,1,1700.0,2019-05-12 21:08:00,407 Walnut St, Austin,TX,73301 +194570,Lightning Charging Cable,1,14.95,2019-05-08 12:23:00,517 North St, Boston,MA,02215 +194571,AAA Batteries (4-pack),1,2.99,2019-05-22 12:34:00,153 14th St, Boston,MA,02215 +194572,Macbook Pro Laptop,1,1700.0,2019-05-18 12:07:00,213 6th St, Portland,OR,97035 +194573,ThinkPad Laptop,1,999.99,2019-05-21 21:42:00,706 Chestnut St, San Francisco,CA,94016 +194574,Vareebadd Phone,1,400.0,2019-05-26 09:32:00,369 North St, Los Angeles,CA,90001 +194575,AA Batteries (4-pack),2,3.84,2019-05-10 11:24:00,474 Forest St, Los Angeles,CA,90001 +194575,AAA Batteries (4-pack),2,2.99,2019-05-10 11:24:00,474 Forest St, Los Angeles,CA,90001 +194576,34in Ultrawide Monitor,1,379.99,2019-05-26 20:54:00,622 Church St, Seattle,WA,98101 +194577,AA Batteries (4-pack),1,3.84,2019-05-02 20:19:00,222 14th St, Seattle,WA,98101 +194578,Lightning Charging Cable,1,14.95,2019-05-09 17:57:00,243 Ridge St, Boston,MA,02215 +194579,Bose SoundSport Headphones,1,99.99,2019-05-26 15:50:00,130 1st St, Atlanta,GA,30301 +194580,AAA Batteries (4-pack),3,2.99,2019-05-28 08:13:00,516 6th St, San Francisco,CA,94016 +194581,Lightning Charging Cable,1,14.95,2019-05-10 14:31:00,463 1st St, San Francisco,CA,94016 +194582,AA Batteries (4-pack),1,3.84,2019-05-01 10:22:00,271 Walnut St, Atlanta,GA,30301 +194583,Lightning Charging Cable,1,14.95,2019-05-15 11:50:00,497 Hickory St, Boston,MA,02215 +194584,Bose SoundSport Headphones,1,99.99,2019-05-02 18:26:00,587 North St, Los Angeles,CA,90001 +194585,20in Monitor,1,109.99,2019-05-12 20:29:00,186 Jackson St, San Francisco,CA,94016 +194586,AA Batteries (4-pack),2,3.84,2019-05-25 20:57:00,852 Cedar St, San Francisco,CA,94016 +194587,AAA Batteries (4-pack),1,2.99,2019-05-26 17:26:00,433 Center St, Dallas,TX,75001 +194588,ThinkPad Laptop,1,999.99,2019-05-27 07:57:00,87 Jefferson St, San Francisco,CA,94016 +194588,AAA Batteries (4-pack),2,2.99,2019-05-27 07:57:00,87 Jefferson St, San Francisco,CA,94016 +194589,AAA Batteries (4-pack),1,2.99,2019-05-12 01:48:00,395 River St, Los Angeles,CA,90001 +194590,USB-C Charging Cable,2,11.95,2019-05-25 12:42:00,320 1st St, Atlanta,GA,30301 +194591,Bose SoundSport Headphones,1,99.99,2019-05-19 19:30:00,368 4th St, Los Angeles,CA,90001 +194592,AAA Batteries (4-pack),1,2.99,2019-05-08 23:17:00,249 10th St, Los Angeles,CA,90001 +194593,AAA Batteries (4-pack),1,2.99,2019-05-30 12:37:00,72 Lincoln St, San Francisco,CA,94016 +194594,iPhone,1,700.0,2019-05-08 14:34:00,689 Meadow St, Dallas,TX,75001 +194595,AAA Batteries (4-pack),1,2.99,2019-05-29 15:42:00,329 Hickory St, Los Angeles,CA,90001 +194596,AAA Batteries (4-pack),1,2.99,2019-05-30 20:54:00,413 Jackson St, San Francisco,CA,94016 +194597,Macbook Pro Laptop,1,1700.0,2019-05-20 13:17:00,873 South St, New York City,NY,10001 +194598,AAA Batteries (4-pack),3,2.99,2019-05-29 21:14:00,210 Sunset St, San Francisco,CA,94016 +194599,27in 4K Gaming Monitor,1,389.99,2019-05-11 20:44:00,561 12th St, Dallas,TX,75001 +194600,Lightning Charging Cable,1,14.95,2019-05-22 11:57:00,310 Spruce St, Dallas,TX,75001 +194600,27in FHD Monitor,1,149.99,2019-05-22 11:57:00,310 Spruce St, Dallas,TX,75001 +194601,Wired Headphones,1,11.99,2019-05-31 19:28:00,559 9th St, San Francisco,CA,94016 +194602,27in FHD Monitor,1,149.99,2019-05-05 16:37:00,755 Sunset St, New York City,NY,10001 +194603,Lightning Charging Cable,1,14.95,2019-05-28 21:28:00,81 Ridge St, Los Angeles,CA,90001 +194604,27in 4K Gaming Monitor,1,389.99,2019-05-22 13:00:00,469 Ridge St, Seattle,WA,98101 +194605,USB-C Charging Cable,1,11.95,2019-05-05 20:49:00,874 Maple St, San Francisco,CA,94016 +194606,AA Batteries (4-pack),1,3.84,2019-05-31 17:01:00,54 11th St, Boston,MA,02215 +194607,Bose SoundSport Headphones,1,99.99,2019-05-16 22:26:00,691 Spruce St, Los Angeles,CA,90001 +194608,Lightning Charging Cable,1,14.95,2019-05-22 23:35:00,258 Walnut St, San Francisco,CA,94016 +194609,Lightning Charging Cable,1,14.95,2019-05-13 05:47:00,268 Main St, San Francisco,CA,94016 +194610,34in Ultrawide Monitor,1,379.99,2019-05-22 13:45:00,297 14th St, New York City,NY,10001 +194611,Wired Headphones,1,11.99,2019-05-02 04:46:00,996 Jefferson St, San Francisco,CA,94016 +194612,Bose SoundSport Headphones,1,99.99,2019-05-30 11:35:00,180 Willow St, Los Angeles,CA,90001 +194613,Apple Airpods Headphones,1,150.0,2019-05-27 23:58:00,538 7th St, San Francisco,CA,94016 +194614,AAA Batteries (4-pack),2,2.99,2019-05-31 17:23:00,940 Hill St, Portland,OR,97035 +194615,Lightning Charging Cable,1,14.95,2019-05-26 00:51:00,28 Walnut St, New York City,NY,10001 +194616,Google Phone,1,600.0,2019-05-15 22:48:00,521 Ridge St, New York City,NY,10001 +194617,Flatscreen TV,1,300.0,2019-05-30 16:39:00,783 Jefferson St, Portland,ME,04101 +194618,27in FHD Monitor,1,149.99,2019-05-03 18:48:00,329 Maple St, Boston,MA,02215 +194619,Wired Headphones,1,11.99,2019-05-30 18:36:00,312 13th St, San Francisco,CA,94016 +194620,Lightning Charging Cable,1,14.95,2019-05-01 12:16:00,932 Hickory St, San Francisco,CA,94016 +194621,AA Batteries (4-pack),1,3.84,2019-05-07 20:39:00,967 Lake St, San Francisco,CA,94016 +194622,AAA Batteries (4-pack),3,2.99,2019-05-04 20:19:00,187 Lincoln St, Los Angeles,CA,90001 +194623,Apple Airpods Headphones,1,150.0,2019-05-14 13:54:00,824 West St, Los Angeles,CA,90001 +194624,Bose SoundSport Headphones,1,99.99,2019-05-16 10:54:00,550 Hickory St, Los Angeles,CA,90001 +194625,Lightning Charging Cable,1,14.95,2019-05-09 21:26:00,178 10th St, Boston,MA,02215 +194626,AAA Batteries (4-pack),1,2.99,2019-05-06 19:29:00,137 Washington St, San Francisco,CA,94016 +194627,Bose SoundSport Headphones,1,99.99,2019-05-24 21:06:00,905 North St, Seattle,WA,98101 +194628,AA Batteries (4-pack),1,3.84,2019-05-02 18:16:00,203 Hickory St, Boston,MA,02215 +194629,AA Batteries (4-pack),3,3.84,2019-05-18 22:22:00,140 Spruce St, Portland,ME,04101 +194630,Bose SoundSport Headphones,1,99.99,2019-05-10 19:29:00,534 Cherry St, Dallas,TX,75001 +194631,Bose SoundSport Headphones,1,99.99,2019-05-19 21:38:00,232 1st St, Atlanta,GA,30301 +194632,USB-C Charging Cable,1,11.95,2019-05-14 21:03:00,897 Jackson St, Boston,MA,02215 +194633,AA Batteries (4-pack),1,3.84,2019-05-17 19:00:00,581 Spruce St, Portland,OR,97035 +194634,Bose SoundSport Headphones,1,99.99,2019-05-14 13:18:00,545 Hickory St, Atlanta,GA,30301 +194635,AA Batteries (4-pack),2,3.84,2019-05-05 10:04:00,976 Cedar St, Boston,MA,02215 +194636,AAA Batteries (4-pack),1,2.99,2019-05-04 11:42:00,603 Dogwood St, New York City,NY,10001 +194637,USB-C Charging Cable,1,11.95,2019-05-16 09:15:00,534 Lakeview St, Boston,MA,02215 +194638,AA Batteries (4-pack),1,3.84,2019-05-08 19:03:00,250 Cherry St, Atlanta,GA,30301 +194639,Google Phone,1,600.0,2019-05-04 13:25:00,34 Sunset St, Portland,OR,97035 +194640,ThinkPad Laptop,1,999.99,2019-05-04 01:05:00,852 Hickory St, San Francisco,CA,94016 +194641,Lightning Charging Cable,1,14.95,2019-05-28 20:33:00,892 North St, Atlanta,GA,30301 +194642,Lightning Charging Cable,1,14.95,2019-05-06 13:29:00,836 Cherry St, Boston,MA,02215 +194643,34in Ultrawide Monitor,1,379.99,2019-05-08 01:03:00,422 Church St, Seattle,WA,98101 +194644,Google Phone,1,600.0,2019-05-17 20:58:00,381 Cedar St, Los Angeles,CA,90001 +194645,AA Batteries (4-pack),1,3.84,2019-05-22 11:40:00,783 Cedar St, Portland,OR,97035 +194646,AAA Batteries (4-pack),1,2.99,2019-05-08 11:42:00,779 5th St, Los Angeles,CA,90001 +194647,Wired Headphones,1,11.99,2019-05-08 17:38:00,336 14th St, Austin,TX,73301 +194648,AA Batteries (4-pack),1,3.84,2019-05-31 20:15:00,959 Chestnut St, Dallas,TX,75001 +194649,Bose SoundSport Headphones,1,99.99,2019-05-12 13:31:00,737 Lincoln St, Boston,MA,02215 +194650,Wired Headphones,1,11.99,2019-05-10 13:21:00,24 2nd St, Portland,ME,04101 +194651,Macbook Pro Laptop,1,1700.0,2019-05-07 14:46:00,695 Lakeview St, New York City,NY,10001 +194652,AAA Batteries (4-pack),4,2.99,2019-05-25 12:19:00,480 Forest St, Atlanta,GA,30301 +194653,Apple Airpods Headphones,1,150.0,2019-05-27 07:42:00,739 5th St, San Francisco,CA,94016 +194654,iPhone,1,700.0,2019-05-05 02:28:00,314 Jackson St, Los Angeles,CA,90001 +194655,Apple Airpods Headphones,2,150.0,2019-05-11 19:19:00,878 Cedar St, Boston,MA,02215 +194656,Wired Headphones,1,11.99,2019-05-15 14:32:00,166 Walnut St, Atlanta,GA,30301 +194657,ThinkPad Laptop,1,999.99,2019-05-25 08:51:00,476 Center St, Boston,MA,02215 +194658,Google Phone,1,600.0,2019-05-06 14:32:00,837 Madison St, Atlanta,GA,30301 +194659,Apple Airpods Headphones,1,150.0,2019-05-07 15:02:00,328 11th St, San Francisco,CA,94016 +194660,AAA Batteries (4-pack),1,2.99,2019-05-14 14:59:00,727 Madison St, Los Angeles,CA,90001 +194661,Apple Airpods Headphones,1,150.0,2019-05-18 21:04:00,927 Dogwood St, Austin,TX,73301 +194662,USB-C Charging Cable,1,11.95,2019-05-06 21:44:00,544 5th St, New York City,NY,10001 +194663,AAA Batteries (4-pack),2,2.99,2019-05-17 17:32:00,19 2nd St, New York City,NY,10001 +194664,USB-C Charging Cable,1,11.95,2019-05-22 08:03:00,681 13th St, New York City,NY,10001 +194665,AA Batteries (4-pack),1,3.84,2019-05-10 20:15:00,81 Lakeview St, Boston,MA,02215 +194666,AAA Batteries (4-pack),4,2.99,2019-05-14 08:53:00,717 Dogwood St, Los Angeles,CA,90001 +194667,27in FHD Monitor,1,149.99,2019-05-17 19:06:00,14 Willow St, Atlanta,GA,30301 +194668,AA Batteries (4-pack),1,3.84,2019-05-07 21:04:00,247 Jackson St, Portland,OR,97035 +194669,34in Ultrawide Monitor,1,379.99,2019-05-16 18:01:00,678 Johnson St, Los Angeles,CA,90001 +194670,AA Batteries (4-pack),1,3.84,2019-05-20 10:49:00,228 1st St, Los Angeles,CA,90001 +194671,Macbook Pro Laptop,1,1700.0,2019-05-09 11:36:00,221 10th St, San Francisco,CA,94016 +194672,Macbook Pro Laptop,1,1700.0,2019-05-18 07:01:00,555 North St, Austin,TX,73301 +194673,LG Washing Machine,1,600.0,2019-05-12 12:50:00,963 Maple St, Seattle,WA,98101 +194674,Lightning Charging Cable,1,14.95,2019-05-16 08:29:00,533 7th St, Dallas,TX,75001 +194675,AA Batteries (4-pack),1,3.84,2019-05-14 21:13:00,688 Highland St, San Francisco,CA,94016 +194676,AAA Batteries (4-pack),1,2.99,2019-05-27 17:15:00,794 6th St, San Francisco,CA,94016 +194677,Bose SoundSport Headphones,1,99.99,2019-05-24 10:16:00,529 North St, Los Angeles,CA,90001 +194678,Lightning Charging Cable,1,14.95,2019-05-04 21:00:00,506 Jackson St, New York City,NY,10001 +194679,AA Batteries (4-pack),1,3.84,2019-05-23 14:28:00,184 4th St, Los Angeles,CA,90001 +194680,Lightning Charging Cable,1,14.95,2019-05-16 22:45:00,100 North St, Boston,MA,02215 +194681,Google Phone,1,600.0,2019-05-14 19:16:00,926 14th St, Atlanta,GA,30301 +194682,AAA Batteries (4-pack),4,2.99,2019-05-25 21:45:00,413 Lake St, San Francisco,CA,94016 +194683,AA Batteries (4-pack),2,3.84,2019-05-25 16:04:00,601 West St, Boston,MA,02215 +194684,AA Batteries (4-pack),1,3.84,2019-05-21 09:10:00,646 14th St, New York City,NY,10001 +194685,27in 4K Gaming Monitor,1,389.99,2019-05-09 01:17:00,687 Walnut St, Seattle,WA,98101 +194686,Lightning Charging Cable,1,14.95,2019-05-21 12:24:00,305 10th St, San Francisco,CA,94016 +194687,Apple Airpods Headphones,1,150.0,2019-05-06 10:16:00,119 14th St, Atlanta,GA,30301 +194688,Macbook Pro Laptop,1,1700.0,2019-05-28 11:16:00,635 Washington St, San Francisco,CA,94016 +194689,Lightning Charging Cable,1,14.95,2019-05-18 22:00:00,443 7th St, Los Angeles,CA,90001 +194690,Wired Headphones,1,11.99,2019-05-09 19:40:00,256 Church St, Seattle,WA,98101 +194691,Google Phone,1,600.0,2019-05-01 14:22:00,130 5th St, Boston,MA,02215 +194692,AAA Batteries (4-pack),1,2.99,2019-05-20 16:12:00,360 Maple St, Boston,MA,02215 +194693,USB-C Charging Cable,1,11.95,2019-05-03 18:49:00,453 Maple St, Portland,OR,97035 +194694,USB-C Charging Cable,1,11.95,2019-05-20 23:32:00,378 5th St, Atlanta,GA,30301 +194695,Wired Headphones,1,11.99,2019-05-08 12:38:00,716 Jefferson St, Los Angeles,CA,90001 +194696,Lightning Charging Cable,1,14.95,2019-05-15 22:23:00,148 7th St, Atlanta,GA,30301 +194697,Apple Airpods Headphones,1,150.0,2019-05-11 14:52:00,627 Park St, Portland,OR,97035 +194698,Macbook Pro Laptop,1,1700.0,2019-05-09 14:20:00,946 Highland St, Los Angeles,CA,90001 +194699,20in Monitor,1,109.99,2019-05-09 15:36:00,65 12th St, Los Angeles,CA,90001 +194700,AA Batteries (4-pack),2,3.84,2019-05-19 12:22:00,961 Lincoln St, Seattle,WA,98101 +194701,Google Phone,1,600.0,2019-05-17 22:35:00,957 11th St, Los Angeles,CA,90001 +194702,Wired Headphones,1,11.99,2019-05-16 06:59:00,876 2nd St, San Francisco,CA,94016 +194703,AAA Batteries (4-pack),2,2.99,2019-05-28 19:20:00,454 Cedar St, Austin,TX,73301 +194704,USB-C Charging Cable,1,11.95,2019-05-06 23:24:00,570 7th St, Los Angeles,CA,90001 +194705,AAA Batteries (4-pack),2,2.99,2019-05-15 18:24:00,738 Hill St, Boston,MA,02215 +194706,Apple Airpods Headphones,1,150.0,2019-05-26 16:22:00,614 12th St, Los Angeles,CA,90001 +194707,Bose SoundSport Headphones,1,99.99,2019-05-07 19:20:00,843 Johnson St, Los Angeles,CA,90001 +194708,AAA Batteries (4-pack),1,2.99,2019-05-31 18:47:00,64 Main St, Boston,MA,02215 +194709,27in 4K Gaming Monitor,1,389.99,2019-05-06 11:08:00,804 10th St, Los Angeles,CA,90001 +194710,AA Batteries (4-pack),1,3.84,2019-05-20 18:18:00,750 Hickory St, Boston,MA,02215 +194710,Wired Headphones,1,11.99,2019-05-20 18:18:00,750 Hickory St, Boston,MA,02215 +194711,Bose SoundSport Headphones,1,99.99,2019-05-04 20:50:00,308 2nd St, Dallas,TX,75001 +194712,AAA Batteries (4-pack),1,2.99,2019-05-19 19:27:00,670 2nd St, Los Angeles,CA,90001 +194713,Wired Headphones,1,11.99,2019-05-30 17:35:00,987 Washington St, Dallas,TX,75001 +194714,Wired Headphones,1,11.99,2019-05-07 14:45:00,629 4th St, San Francisco,CA,94016 +194715,AAA Batteries (4-pack),1,2.99,2019-05-29 12:20:00,645 Wilson St, Boston,MA,02215 +194716,Lightning Charging Cable,1,14.95,2019-05-20 08:34:00,169 10th St, Seattle,WA,98101 +194717,AA Batteries (4-pack),2,3.84,2019-05-21 15:55:00,174 7th St, New York City,NY,10001 +194718,AAA Batteries (4-pack),1,2.99,2019-05-19 09:15:00,826 Church St, Los Angeles,CA,90001 +194719,Apple Airpods Headphones,1,150.0,2019-05-21 15:02:00,206 11th St, Boston,MA,02215 +194720,AAA Batteries (4-pack),3,2.99,2019-05-03 05:42:00,961 Willow St, Portland,OR,97035 +194721,AAA Batteries (4-pack),1,2.99,2019-05-22 18:44:00,206 12th St, Boston,MA,02215 +194722,iPhone,1,700.0,2019-05-29 14:46:00,184 Adams St, Austin,TX,73301 +194723,Lightning Charging Cable,1,14.95,2019-05-21 11:59:00,920 Center St, San Francisco,CA,94016 +194724,Wired Headphones,1,11.99,2019-05-26 16:32:00,472 Chestnut St, New York City,NY,10001 +194725,27in 4K Gaming Monitor,1,389.99,2019-05-16 11:50:00,90 11th St, San Francisco,CA,94016 +194726,AA Batteries (4-pack),1,3.84,2019-05-09 14:00:00,635 Walnut St, Portland,OR,97035 +194727,Bose SoundSport Headphones,1,99.99,2019-05-17 11:19:00,262 Meadow St, San Francisco,CA,94016 +194728,AAA Batteries (4-pack),1,2.99,2019-05-09 15:05:00,399 13th St, Atlanta,GA,30301 +194729,Wired Headphones,1,11.99,2019-05-06 18:30:00,199 Cherry St, Los Angeles,CA,90001 +194730,27in 4K Gaming Monitor,1,389.99,2019-05-25 14:19:00,48 Washington St, San Francisco,CA,94016 +194731,Wired Headphones,1,11.99,2019-05-09 21:25:00,401 Main St, Dallas,TX,75001 +194731,AAA Batteries (4-pack),1,2.99,2019-05-09 21:25:00,401 Main St, Dallas,TX,75001 +194732,20in Monitor,1,109.99,2019-05-18 18:12:00,264 9th St, New York City,NY,10001 +194733,20in Monitor,1,109.99,2019-05-11 21:12:00,914 13th St, Los Angeles,CA,90001 +194734,Lightning Charging Cable,1,14.95,2019-05-16 21:17:00,404 Maple St, New York City,NY,10001 +194735,AA Batteries (4-pack),1,3.84,2019-05-14 22:20:00,178 Park St, Austin,TX,73301 +194736,AAA Batteries (4-pack),2,2.99,2019-05-24 20:04:00,360 Lakeview St, Atlanta,GA,30301 +194737,Apple Airpods Headphones,1,150.0,2019-05-24 08:05:00,246 10th St, New York City,NY,10001 +194738,Apple Airpods Headphones,1,150.0,2019-05-24 13:54:00,387 Cedar St, Los Angeles,CA,90001 +194739,Flatscreen TV,1,300.0,2019-05-17 13:59:00,92 Pine St, Los Angeles,CA,90001 +194740,Apple Airpods Headphones,1,150.0,2019-05-22 22:07:00,823 12th St, Los Angeles,CA,90001 +194741,USB-C Charging Cable,1,11.95,2019-05-12 08:44:00,73 Elm St, San Francisco,CA,94016 +194742,AA Batteries (4-pack),1,3.84,2019-05-17 01:20:00,296 Cherry St, San Francisco,CA,94016 +194743,Lightning Charging Cable,1,14.95,2019-05-12 00:25:00,559 Walnut St, Boston,MA,02215 +194744,Lightning Charging Cable,1,14.95,2019-05-01 21:34:00,665 Wilson St, Dallas,TX,75001 +194745,34in Ultrawide Monitor,1,379.99,2019-05-28 16:59:00,164 6th St, Los Angeles,CA,90001 +194746,AA Batteries (4-pack),1,3.84,2019-05-19 08:59:00,398 11th St, Atlanta,GA,30301 +194747,Lightning Charging Cable,1,14.95,2019-05-24 17:19:00,562 Johnson St, Dallas,TX,75001 +194748,Bose SoundSport Headphones,1,99.99,2019-05-21 18:31:00,184 1st St, Dallas,TX,75001 +194749,Wired Headphones,1,11.99,2019-05-31 22:24:00,555 Hill St, Los Angeles,CA,90001 +194749,Lightning Charging Cable,1,14.95,2019-05-31 22:24:00,555 Hill St, Los Angeles,CA,90001 +194750,Wired Headphones,1,11.99,2019-05-04 14:20:00,349 Cedar St, Atlanta,GA,30301 +194751,20in Monitor,1,109.99,2019-05-30 14:44:00,494 Center St, San Francisco,CA,94016 +194752,Wired Headphones,1,11.99,2019-05-04 20:36:00,68 North St, Seattle,WA,98101 +194753,Wired Headphones,1,11.99,2019-05-20 16:06:00,439 5th St, Los Angeles,CA,90001 +194754,Bose SoundSport Headphones,1,99.99,2019-05-26 17:18:00,942 10th St, Los Angeles,CA,90001 +194754,34in Ultrawide Monitor,1,379.99,2019-05-26 17:18:00,942 10th St, Los Angeles,CA,90001 +194755,Vareebadd Phone,1,400.0,2019-05-08 12:44:00,681 Ridge St, Boston,MA,02215 +194756,27in FHD Monitor,1,149.99,2019-05-31 10:20:00,686 14th St, New York City,NY,10001 +194757,AAA Batteries (4-pack),1,2.99,2019-05-29 23:03:00,631 Hill St, Austin,TX,73301 +194758,Apple Airpods Headphones,1,150.0,2019-05-15 23:20:00,23 9th St, Seattle,WA,98101 +194759,27in FHD Monitor,1,149.99,2019-05-27 18:49:00,486 4th St, San Francisco,CA,94016 +194760,34in Ultrawide Monitor,1,379.99,2019-05-04 16:36:00,964 Hill St, Seattle,WA,98101 +194761,USB-C Charging Cable,1,11.95,2019-05-17 18:38:00,429 Jackson St, Los Angeles,CA,90001 +194762,20in Monitor,1,109.99,2019-05-20 17:20:00,202 8th St, New York City,NY,10001 +194762,AAA Batteries (4-pack),1,2.99,2019-05-20 17:20:00,202 8th St, New York City,NY,10001 +194763,27in FHD Monitor,1,149.99,2019-05-25 18:58:00,401 Johnson St, San Francisco,CA,94016 +194764,Apple Airpods Headphones,1,150.0,2019-05-24 08:30:00,774 Madison St, Los Angeles,CA,90001 +194765,27in 4K Gaming Monitor,1,389.99,2019-05-10 12:12:00,335 North St, Dallas,TX,75001 +194766,AA Batteries (4-pack),1,3.84,2019-05-15 16:49:00,45 Meadow St, New York City,NY,10001 +194767,Lightning Charging Cable,1,14.95,2019-05-05 14:02:00,373 Meadow St, New York City,NY,10001 +194768,AA Batteries (4-pack),2,3.84,2019-05-25 20:14:00,822 Jefferson St, San Francisco,CA,94016 +194769,Apple Airpods Headphones,1,150.0,2019-05-24 16:00:00,84 11th St, Los Angeles,CA,90001 +194770,USB-C Charging Cable,1,11.95,2019-05-10 10:50:00,673 Willow St, Los Angeles,CA,90001 +194771,Apple Airpods Headphones,1,150.0,2019-05-19 12:09:00,222 West St, San Francisco,CA,94016 +194772,34in Ultrawide Monitor,1,379.99,2019-05-04 12:14:00,340 Lincoln St, Seattle,WA,98101 +194773,27in 4K Gaming Monitor,1,389.99,2019-05-21 18:23:00,321 Wilson St, Los Angeles,CA,90001 +194774,Vareebadd Phone,1,400.0,2019-05-30 17:37:00,961 Ridge St, New York City,NY,10001 +194774,27in FHD Monitor,2,149.99,2019-05-30 17:37:00,961 Ridge St, New York City,NY,10001 +194775,27in 4K Gaming Monitor,1,389.99,2019-05-30 19:48:00,468 Dogwood St, New York City,NY,10001 +194776,iPhone,1,700.0,2019-05-16 18:55:00,808 Elm St, Los Angeles,CA,90001 +194777,Wired Headphones,1,11.99,2019-05-21 11:56:00,28 Highland St, Seattle,WA,98101 +194778,Wired Headphones,1,11.99,2019-05-20 19:36:00,182 Ridge St, Boston,MA,02215 +194779,AAA Batteries (4-pack),2,2.99,2019-05-27 08:29:00,402 Cherry St, San Francisco,CA,94016 +194780,Google Phone,1,600.0,2019-05-29 12:26:00,997 Forest St, Los Angeles,CA,90001 +194780,Wired Headphones,1,11.99,2019-05-29 12:26:00,997 Forest St, Los Angeles,CA,90001 +194781,AA Batteries (4-pack),1,3.84,2019-05-25 07:38:00,933 Elm St, Los Angeles,CA,90001 +194782,USB-C Charging Cable,1,11.95,2019-05-10 11:09:00,230 Cedar St, San Francisco,CA,94016 +194783,Bose SoundSport Headphones,1,99.99,2019-05-27 18:49:00,114 Chestnut St, New York City,NY,10001 +194784,Apple Airpods Headphones,1,150.0,2019-05-08 14:34:00,303 13th St, Austin,TX,73301 +194785,Lightning Charging Cable,1,14.95,2019-05-11 14:24:00,295 Meadow St, Atlanta,GA,30301 +194786,Apple Airpods Headphones,1,150.0,2019-05-17 19:58:00,257 Main St, San Francisco,CA,94016 +194786,27in 4K Gaming Monitor,1,389.99,2019-05-17 19:58:00,257 Main St, San Francisco,CA,94016 +194787,Lightning Charging Cable,1,14.95,2019-05-12 12:12:00,970 Madison St, Portland,OR,97035 +194788,Apple Airpods Headphones,1,150.0,2019-05-11 13:45:00,928 Chestnut St, New York City,NY,10001 +194789,Macbook Pro Laptop,1,1700.0,2019-05-10 17:39:00,737 4th St, Boston,MA,02215 +194790,AA Batteries (4-pack),1,3.84,2019-05-01 20:26:00,442 Madison St, New York City,NY,10001 +194791,Wired Headphones,1,11.99,2019-05-09 13:09:00,28 11th St, Boston,MA,02215 +194791,20in Monitor,1,109.99,2019-05-09 13:09:00,28 11th St, Boston,MA,02215 +194792,Wired Headphones,1,11.99,2019-05-01 21:44:00,246 11th St, Dallas,TX,75001 +194793,Lightning Charging Cable,1,14.95,2019-05-29 19:02:00,863 Spruce St, Los Angeles,CA,90001 +194794,AA Batteries (4-pack),4,3.84,2019-05-30 19:17:00,185 Lincoln St, Los Angeles,CA,90001 +194795,Bose SoundSport Headphones,1,99.99,2019-05-28 10:24:00,690 12th St, Atlanta,GA,30301 +194796,Apple Airpods Headphones,1,150.0,2019-05-06 12:56:00,268 Cherry St, San Francisco,CA,94016 +194797,AA Batteries (4-pack),1,3.84,2019-05-13 13:19:00,594 Willow St, Los Angeles,CA,90001 +194798,27in FHD Monitor,1,149.99,2019-05-22 22:41:00,601 Chestnut St, Portland,ME,04101 +194799,20in Monitor,1,109.99,2019-05-30 08:05:00,863 Center St, San Francisco,CA,94016 +194800,Macbook Pro Laptop,1,1700.0,2019-05-25 21:26:00,143 Hill St, Seattle,WA,98101 +194801,AA Batteries (4-pack),1,3.84,2019-05-16 07:27:00,889 Forest St, Boston,MA,02215 +194802,Vareebadd Phone,1,400.0,2019-05-02 12:57:00,971 Jefferson St, San Francisco,CA,94016 +194803,AA Batteries (4-pack),1,3.84,2019-05-16 13:43:00,712 Park St, Portland,OR,97035 +194804,AAA Batteries (4-pack),3,2.99,2019-05-13 11:16:00,312 Church St, New York City,NY,10001 +194805,27in FHD Monitor,1,149.99,2019-05-20 22:09:00,600 4th St, San Francisco,CA,94016 +194806,Wired Headphones,1,11.99,2019-05-11 02:21:00,329 Pine St, Seattle,WA,98101 +194807,Lightning Charging Cable,1,14.95,2019-05-17 17:02:00,882 Forest St, San Francisco,CA,94016 +194808,Bose SoundSport Headphones,1,99.99,2019-05-08 15:13:00,626 Willow St, Dallas,TX,75001 +194809,Wired Headphones,1,11.99,2019-05-03 17:13:00,617 Jackson St, Atlanta,GA,30301 +194810,Lightning Charging Cable,1,14.95,2019-05-26 17:22:00,139 Madison St, Dallas,TX,75001 +194811,Flatscreen TV,1,300.0,2019-05-20 06:17:00,875 Maple St, Seattle,WA,98101 +194812,AA Batteries (4-pack),1,3.84,2019-05-27 19:47:00,905 Lincoln St, Los Angeles,CA,90001 +194813,USB-C Charging Cable,1,11.95,2019-05-07 22:58:00,99 Madison St, San Francisco,CA,94016 +194814,Wired Headphones,1,11.99,2019-05-09 21:23:00,696 Highland St, Dallas,TX,75001 +194815,AA Batteries (4-pack),4,3.84,2019-05-23 14:27:00,440 Center St, New York City,NY,10001 +194815,USB-C Charging Cable,1,11.95,2019-05-23 14:27:00,440 Center St, New York City,NY,10001 +194816,Apple Airpods Headphones,1,150.0,2019-05-18 07:46:00,29 Lake St, San Francisco,CA,94016 +194817,USB-C Charging Cable,1,11.95,2019-05-24 13:14:00,635 Walnut St, Los Angeles,CA,90001 +194818,AA Batteries (4-pack),1,3.84,2019-05-22 19:51:00,945 Washington St, New York City,NY,10001 +194819,USB-C Charging Cable,1,11.95,2019-05-03 07:15:00,267 South St, Boston,MA,02215 +194820,Flatscreen TV,1,300.0,2019-05-05 10:18:00,497 7th St, Portland,ME,04101 +194821,AA Batteries (4-pack),1,3.84,2019-05-08 21:18:00,738 Wilson St, Austin,TX,73301 +194822,Wired Headphones,1,11.99,2019-05-06 23:05:00,482 Hickory St, San Francisco,CA,94016 +194823,iPhone,1,700.0,2019-05-13 08:54:00,949 Elm St, San Francisco,CA,94016 +194823,Lightning Charging Cable,1,14.95,2019-05-13 08:54:00,949 Elm St, San Francisco,CA,94016 +194824,AA Batteries (4-pack),1,3.84,2019-05-18 08:54:00,690 Lakeview St, Los Angeles,CA,90001 +194825,27in FHD Monitor,1,149.99,2019-05-11 13:39:00,126 Madison St, Dallas,TX,75001 +194826,Lightning Charging Cable,1,14.95,2019-05-29 14:05:00,139 4th St, San Francisco,CA,94016 +194827,USB-C Charging Cable,1,11.95,2019-05-29 16:25:00,480 Maple St, San Francisco,CA,94016 +194828,ThinkPad Laptop,1,999.99,2019-05-11 19:13:00,844 Lincoln St, San Francisco,CA,94016 +194829,USB-C Charging Cable,1,11.95,2019-05-30 08:56:00,749 Spruce St, San Francisco,CA,94016 +194830,AA Batteries (4-pack),1,3.84,2019-05-10 17:32:00,289 Elm St, New York City,NY,10001 +194831,Lightning Charging Cable,1,14.95,2019-05-16 13:00:00,494 8th St, New York City,NY,10001 +194832,Lightning Charging Cable,1,14.95,2019-05-14 22:50:00,220 Sunset St, San Francisco,CA,94016 +194833,ThinkPad Laptop,1,999.99,2019-05-24 18:31:00,341 9th St, San Francisco,CA,94016 +194834,AA Batteries (4-pack),1,3.84,2019-05-01 08:21:00,374 Forest St, Portland,OR,97035 +194835,Flatscreen TV,1,300.0,2019-05-21 11:07:00,70 Adams St, Los Angeles,CA,90001 +194836,AAA Batteries (4-pack),3,2.99,2019-05-24 17:15:00,667 Hickory St, New York City,NY,10001 +194837,Flatscreen TV,1,300.0,2019-05-14 11:31:00,405 4th St, Dallas,TX,75001 +194838,Wired Headphones,1,11.99,2019-05-22 20:48:00,824 Maple St, Portland,OR,97035 +194839,27in 4K Gaming Monitor,1,389.99,2019-05-05 01:01:00,353 14th St, Los Angeles,CA,90001 +194840,Google Phone,1,600.0,2019-05-04 21:39:00,917 Church St, New York City,NY,10001 +194840,Wired Headphones,1,11.99,2019-05-04 21:39:00,917 Church St, New York City,NY,10001 +194841,AAA Batteries (4-pack),1,2.99,2019-05-27 07:06:00,939 Madison St, Boston,MA,02215 +194842,Wired Headphones,1,11.99,2019-05-14 09:47:00,732 Highland St, New York City,NY,10001 +194843,USB-C Charging Cable,1,11.95,2019-05-10 08:17:00,986 Forest St, Los Angeles,CA,90001 +194844,USB-C Charging Cable,1,11.95,2019-05-30 16:12:00,335 Main St, Dallas,TX,75001 +194845,Macbook Pro Laptop,1,1700.0,2019-05-26 20:38:00,550 Meadow St, Atlanta,GA,30301 +194846,AAA Batteries (4-pack),1,2.99,2019-05-27 08:26:00,899 Walnut St, San Francisco,CA,94016 +194847,USB-C Charging Cable,1,11.95,2019-05-29 12:49:00,293 Lincoln St, San Francisco,CA,94016 +194848,iPhone,1,700.0,2019-05-14 14:56:00,696 12th St, Dallas,TX,75001 +194849,AA Batteries (4-pack),1,3.84,2019-05-23 08:13:00,651 Ridge St, Atlanta,GA,30301 +194850,AA Batteries (4-pack),1,3.84,2019-05-26 12:34:00,901 Lincoln St, Boston,MA,02215 +194851,Wired Headphones,2,11.99,2019-05-05 12:30:00,558 Ridge St, New York City,NY,10001 +194852,AAA Batteries (4-pack),2,2.99,2019-05-14 08:36:00,625 Hickory St, San Francisco,CA,94016 +194853,Bose SoundSport Headphones,1,99.99,2019-05-18 13:42:00,868 1st St, New York City,NY,10001 +194854,Google Phone,1,600.0,2019-05-27 19:42:00,447 West St, New York City,NY,10001 +194854,Wired Headphones,1,11.99,2019-05-27 19:42:00,447 West St, New York City,NY,10001 +194855,Lightning Charging Cable,1,14.95,2019-05-22 18:23:00,862 Center St, Austin,TX,73301 +194856,USB-C Charging Cable,2,11.95,2019-05-11 21:26:00,835 Johnson St, Dallas,TX,75001 +194857,Wired Headphones,1,11.99,2019-05-19 17:47:00,322 Johnson St, San Francisco,CA,94016 +194858,iPhone,1,700.0,2019-05-12 09:17:00,733 Hickory St, Portland,ME,04101 +194859,34in Ultrawide Monitor,1,379.99,2019-05-23 09:37:00,866 Cedar St, New York City,NY,10001 +194860,USB-C Charging Cable,1,11.95,2019-05-13 23:22:00,292 South St, Austin,TX,73301 +194861,ThinkPad Laptop,1,999.99,2019-05-12 11:19:00,227 Jefferson St, New York City,NY,10001 +194862,Vareebadd Phone,1,400.0,2019-05-19 09:01:00,466 Dogwood St, San Francisco,CA,94016 +194863,USB-C Charging Cable,1,11.95,2019-05-06 20:31:00,927 Meadow St, Portland,OR,97035 +194864,USB-C Charging Cable,1,11.95,2019-05-28 19:48:00,905 West St, Austin,TX,73301 +194865,USB-C Charging Cable,1,11.95,2019-05-28 16:55:00,624 11th St, San Francisco,CA,94016 +194866,Apple Airpods Headphones,1,150.0,2019-05-08 14:29:00,200 Lakeview St, Boston,MA,02215 +194867,ThinkPad Laptop,1,999.99,2019-05-11 11:36:00,939 River St, San Francisco,CA,94016 +194868,AAA Batteries (4-pack),3,2.99,2019-05-14 16:43:00,182 Lincoln St, Dallas,TX,75001 +194869,USB-C Charging Cable,1,11.95,2019-05-28 12:31:00,871 7th St, Austin,TX,73301 +194870,20in Monitor,1,109.99,2019-05-20 19:14:00,820 12th St, Los Angeles,CA,90001 +194871,27in 4K Gaming Monitor,1,389.99,2019-05-11 21:44:00,852 13th St, Portland,ME,04101 +194872,Wired Headphones,1,11.99,2019-05-18 10:03:00,723 9th St, Austin,TX,73301 +194873,LG Washing Machine,1,600.0,2019-05-29 13:44:00,56 5th St, Atlanta,GA,30301 +194874,AAA Batteries (4-pack),1,2.99,2019-05-14 17:24:00,204 Center St, New York City,NY,10001 +194875,27in 4K Gaming Monitor,1,389.99,2019-05-07 14:23:00,960 Adams St, San Francisco,CA,94016 +194876,USB-C Charging Cable,1,11.95,2019-05-22 13:26:00,715 11th St, Boston,MA,02215 +194877,USB-C Charging Cable,1,11.95,2019-05-20 11:50:00,879 Johnson St, Boston,MA,02215 +194878,Lightning Charging Cable,1,14.95,2019-05-24 19:45:00,456 4th St, Atlanta,GA,30301 +194879,Bose SoundSport Headphones,1,99.99,2019-05-11 20:00:00,365 Jackson St, Boston,MA,02215 +194880,Lightning Charging Cable,1,14.95,2019-05-24 15:00:00,804 Chestnut St, Boston,MA,02215 +194881,AAA Batteries (4-pack),1,2.99,2019-05-18 17:22:00,273 6th St, Portland,OR,97035 +194882,Wired Headphones,2,11.99,2019-05-18 06:52:00,973 Jefferson St, New York City,NY,10001 +194883,USB-C Charging Cable,1,11.95,2019-05-15 13:04:00,743 Lincoln St, Boston,MA,02215 +194884,USB-C Charging Cable,1,11.95,2019-05-17 14:02:00,698 5th St, Dallas,TX,75001 +194885,Apple Airpods Headphones,1,150.0,2019-05-06 10:01:00,728 North St, Austin,TX,73301 +194886,Apple Airpods Headphones,1,150.0,2019-05-07 08:26:00,960 Sunset St, Dallas,TX,75001 +194887,AAA Batteries (4-pack),5,2.99,2019-05-16 15:07:00,923 Jackson St, San Francisco,CA,94016 +194888,iPhone,1,700.0,2019-05-01 19:39:00,713 14th St, Dallas,TX,75001 +194889,Macbook Pro Laptop,1,1700.0,2019-05-11 12:53:00,581 4th St, Austin,TX,73301 +194890,Lightning Charging Cable,1,14.95,2019-05-15 20:52:00,266 7th St, Los Angeles,CA,90001 +194891,Wired Headphones,1,11.99,2019-05-04 22:09:00,978 2nd St, Portland,OR,97035 +194892,Apple Airpods Headphones,1,150.0,2019-05-18 01:25:00,572 Madison St, Los Angeles,CA,90001 +194893,USB-C Charging Cable,1,11.95,2019-05-13 18:41:00,793 11th St, Los Angeles,CA,90001 +194894,iPhone,1,700.0,2019-05-15 15:20:00,528 Dogwood St, San Francisco,CA,94016 +194894,Lightning Charging Cable,1,14.95,2019-05-15 15:20:00,528 Dogwood St, San Francisco,CA,94016 +194895,Vareebadd Phone,1,400.0,2019-05-01 14:53:00,547 8th St, Seattle,WA,98101 +194896,Apple Airpods Headphones,1,150.0,2019-05-13 14:02:00,432 4th St, New York City,NY,10001 +194897,AA Batteries (4-pack),1,3.84,2019-05-03 14:58:00,479 Forest St, Seattle,WA,98101 +194898,AA Batteries (4-pack),1,3.84,2019-05-24 18:16:00,942 North St, Austin,TX,73301 +194899,Bose SoundSport Headphones,1,99.99,2019-05-14 10:29:00,21 Lake St, Los Angeles,CA,90001 +194900,27in 4K Gaming Monitor,1,389.99,2019-05-18 12:27:00,237 Lincoln St, New York City,NY,10001 +194901,AA Batteries (4-pack),1,3.84,2019-05-28 19:21:00,450 1st St, San Francisco,CA,94016 +194902,USB-C Charging Cable,1,11.95,2019-05-27 17:19:00,72 6th St, Austin,TX,73301 +194903,USB-C Charging Cable,1,11.95,2019-05-29 20:27:00,283 Madison St, San Francisco,CA,94016 +194904,AA Batteries (4-pack),1,3.84,2019-05-08 15:04:00,11 Ridge St, Atlanta,GA,30301 +194905,Wired Headphones,1,11.99,2019-05-04 22:59:00,955 Main St, Austin,TX,73301 +194906,AA Batteries (4-pack),2,3.84,2019-05-27 20:57:00,767 5th St, Los Angeles,CA,90001 +194907,Google Phone,1,600.0,2019-05-30 00:22:00,341 Ridge St, Atlanta,GA,30301 +194908,Flatscreen TV,1,300.0,2019-05-31 17:25:00,731 Church St, Los Angeles,CA,90001 +194909,iPhone,1,700.0,2019-05-14 18:17:00,261 Lakeview St, New York City,NY,10001 +194909,Lightning Charging Cable,1,14.95,2019-05-14 18:17:00,261 Lakeview St, New York City,NY,10001 +194910,Apple Airpods Headphones,1,150.0,2019-05-02 20:53:00,997 Adams St, Boston,MA,02215 +194911,iPhone,1,700.0,2019-05-13 14:38:00,539 1st St, Seattle,WA,98101 +194912,AAA Batteries (4-pack),1,2.99,2019-05-22 18:36:00,797 10th St, Dallas,TX,75001 +194913,Bose SoundSport Headphones,1,99.99,2019-05-26 12:18:00,143 12th St, Dallas,TX,75001 +194914,27in 4K Gaming Monitor,1,389.99,2019-05-01 18:22:00,97 1st St, New York City,NY,10001 +194915,AA Batteries (4-pack),1,3.84,2019-05-19 16:32:00,670 Highland St, Los Angeles,CA,90001 +194916,34in Ultrawide Monitor,1,379.99,2019-05-30 17:41:00,7 4th St, Seattle,WA,98101 +194917,LG Dryer,1,600.0,2019-05-22 20:22:00,767 Walnut St, San Francisco,CA,94016 +194918,AAA Batteries (4-pack),2,2.99,2019-05-18 20:54:00,767 Lincoln St, San Francisco,CA,94016 +194919,Apple Airpods Headphones,1,150.0,2019-05-24 20:12:00,602 Cedar St, Seattle,WA,98101 +194920,AAA Batteries (4-pack),1,2.99,2019-05-10 14:11:00,839 Dogwood St, Los Angeles,CA,90001 +194921,ThinkPad Laptop,1,999.99,2019-05-10 00:04:00,257 Willow St, San Francisco,CA,94016 +194922,Wired Headphones,1,11.99,2019-05-03 12:57:00,511 Church St, New York City,NY,10001 +194923,Google Phone,1,600.0,2019-05-30 14:43:00,544 Meadow St, San Francisco,CA,94016 +194924,Bose SoundSport Headphones,1,99.99,2019-05-16 10:58:00,707 Highland St, New York City,NY,10001 +194925,AA Batteries (4-pack),1,3.84,2019-05-09 12:16:00,179 Johnson St, San Francisco,CA,94016 +194926,Bose SoundSport Headphones,1,99.99,2019-05-28 11:57:00,805 River St, Los Angeles,CA,90001 +194927,Wired Headphones,1,11.99,2019-05-22 11:22:00,570 6th St, San Francisco,CA,94016 +194927,AAA Batteries (4-pack),1,2.99,2019-05-22 11:22:00,570 6th St, San Francisco,CA,94016 +194928,Lightning Charging Cable,1,14.95,2019-05-09 06:13:00,504 Spruce St, San Francisco,CA,94016 +194929,iPhone,1,700.0,2019-05-27 22:04:00,348 Spruce St, Los Angeles,CA,90001 +194930,Wired Headphones,1,11.99,2019-05-31 22:51:00,741 Maple St, Los Angeles,CA,90001 +194931,AAA Batteries (4-pack),1,2.99,2019-05-07 12:00:00,159 Highland St, Dallas,TX,75001 +194932,20in Monitor,1,109.99,2019-05-22 18:13:00,889 Washington St, Boston,MA,02215 +194933,Flatscreen TV,1,300.0,2019-05-05 16:00:00,895 Walnut St, Atlanta,GA,30301 +194934,Macbook Pro Laptop,1,1700.0,2019-05-12 12:13:00,66 Jackson St, San Francisco,CA,94016 +194935,iPhone,1,700.0,2019-05-04 10:00:00,491 Jackson St, Dallas,TX,75001 +194935,Lightning Charging Cable,1,14.95,2019-05-04 10:00:00,491 Jackson St, Dallas,TX,75001 +194936,34in Ultrawide Monitor,1,379.99,2019-05-02 17:33:00,930 Hickory St, Seattle,WA,98101 +194937,Apple Airpods Headphones,1,150.0,2019-05-28 07:11:00,552 Washington St, Austin,TX,73301 +194938,Apple Airpods Headphones,1,150.0,2019-05-09 16:35:00,560 9th St, San Francisco,CA,94016 +194939,Wired Headphones,1,11.99,2019-05-14 18:03:00,447 Spruce St, Portland,OR,97035 +194940,AA Batteries (4-pack),2,3.84,2019-05-01 14:37:00,342 Adams St, Atlanta,GA,30301 +194941,20in Monitor,1,109.99,2019-05-29 02:02:00,311 Hill St, Atlanta,GA,30301 +194942,Vareebadd Phone,1,400.0,2019-05-22 17:20:00,428 Spruce St, San Francisco,CA,94016 +194943,27in 4K Gaming Monitor,1,389.99,2019-05-06 16:14:00,889 Dogwood St, Atlanta,GA,30301 +194944,Apple Airpods Headphones,1,150.0,2019-05-19 12:36:00,186 9th St, Atlanta,GA,30301 +194945,Wired Headphones,1,11.99,2019-05-02 18:48:00,280 Willow St, Los Angeles,CA,90001 +194946,USB-C Charging Cable,1,11.95,2019-05-13 20:52:00,589 North St, Los Angeles,CA,90001 +194947,Apple Airpods Headphones,1,150.0,2019-05-15 15:44:00,94 Meadow St, San Francisco,CA,94016 +194948,Wired Headphones,1,11.99,2019-05-08 22:22:00,2 14th St, San Francisco,CA,94016 +194949,AAA Batteries (4-pack),3,2.99,2019-05-25 11:05:00,110 River St, Boston,MA,02215 +194950,27in 4K Gaming Monitor,1,389.99,2019-05-13 21:19:00,590 Walnut St, Boston,MA,02215 +194951,Lightning Charging Cable,1,14.95,2019-05-24 20:02:00,484 12th St, San Francisco,CA,94016 +194952,AAA Batteries (4-pack),1,2.99,2019-05-15 10:37:00,725 Adams St, Los Angeles,CA,90001 +194953,AA Batteries (4-pack),2,3.84,2019-05-16 17:30:00,424 Ridge St, Los Angeles,CA,90001 +194954,Wired Headphones,1,11.99,2019-05-01 14:02:00,269 Willow St, Los Angeles,CA,90001 +194955,AAA Batteries (4-pack),2,2.99,2019-05-08 14:26:00,500 Spruce St, San Francisco,CA,94016 +194956,AA Batteries (4-pack),1,3.84,2019-05-21 14:07:00,494 Wilson St, Atlanta,GA,30301 +194957,AA Batteries (4-pack),1,3.84,2019-05-14 11:53:00,198 Jackson St, Boston,MA,02215 +194958,AA Batteries (4-pack),1,3.84,2019-05-18 20:17:00,774 Jefferson St, Seattle,WA,98101 +194959,Apple Airpods Headphones,1,150.0,2019-05-20 11:20:00,641 8th St, New York City,NY,10001 +194960,Lightning Charging Cable,1,14.95,2019-05-13 10:39:00,793 4th St, Seattle,WA,98101 +194961,AAA Batteries (4-pack),1,2.99,2019-05-16 19:53:00,636 Maple St, Los Angeles,CA,90001 +194962,AA Batteries (4-pack),2,3.84,2019-05-24 11:05:00,509 Johnson St, Boston,MA,02215 +194963,Lightning Charging Cable,1,14.95,2019-05-18 09:40:00,620 Highland St, Los Angeles,CA,90001 +194964,Flatscreen TV,1,300.0,2019-05-08 18:39:00,14 14th St, Boston,MA,02215 +194965,USB-C Charging Cable,1,11.95,2019-05-21 15:10:00,768 Center St, New York City,NY,10001 +194966,AA Batteries (4-pack),1,3.84,2019-05-01 13:45:00,843 9th St, San Francisco,CA,94016 +194967,USB-C Charging Cable,1,11.95,2019-05-08 08:52:00,90 Cherry St, San Francisco,CA,94016 +194968,Apple Airpods Headphones,1,150.0,2019-05-09 19:31:00,951 Dogwood St, Atlanta,GA,30301 +194969,Lightning Charging Cable,1,14.95,2019-05-22 12:41:00,180 Lincoln St, Atlanta,GA,30301 +194970,USB-C Charging Cable,1,11.95,2019-05-17 20:49:00,612 Cedar St, Boston,MA,02215 +194971,Macbook Pro Laptop,1,1700.0,2019-05-20 07:17:00,29 Church St, San Francisco,CA,94016 +194972,AA Batteries (4-pack),2,3.84,2019-05-19 20:21:00,171 River St, San Francisco,CA,94016 +194973,Vareebadd Phone,1,400.0,2019-05-16 19:18:00,12 13th St, New York City,NY,10001 +194974,AA Batteries (4-pack),1,3.84,2019-05-12 18:43:00,508 North St, Boston,MA,02215 +194974,Apple Airpods Headphones,1,150.0,2019-05-12 18:43:00,508 North St, Boston,MA,02215 +194975,AA Batteries (4-pack),1,3.84,2019-05-23 00:54:00,671 7th St, Dallas,TX,75001 +194976,AAA Batteries (4-pack),1,2.99,2019-05-26 22:04:00,867 Elm St, San Francisco,CA,94016 +194977,Bose SoundSport Headphones,1,99.99,2019-05-21 19:34:00,623 Sunset St, San Francisco,CA,94016 +194978,Wired Headphones,1,11.99,2019-05-14 15:40:00,950 Washington St, Boston,MA,02215 +194979,USB-C Charging Cable,1,11.95,2019-05-29 12:13:00,623 West St, Boston,MA,02215 +194980,AA Batteries (4-pack),2,3.84,2019-05-29 13:09:00,711 6th St, New York City,NY,10001 +194981,Lightning Charging Cable,1,14.95,2019-05-21 11:39:00,40 10th St, Los Angeles,CA,90001 +194982,LG Washing Machine,1,600.0,2019-05-16 13:09:00,652 Meadow St, New York City,NY,10001 +194983,LG Dryer,1,600.0,2019-05-08 09:51:00,424 1st St, New York City,NY,10001 +194984,27in 4K Gaming Monitor,1,389.99,2019-05-09 05:52:00,230 Park St, Los Angeles,CA,90001 +194985,Lightning Charging Cable,2,14.95,2019-05-16 10:44:00,4 14th St, San Francisco,CA,94016 +194986,Apple Airpods Headphones,1,150.0,2019-05-26 00:26:00,438 Pine St, Austin,TX,73301 +194987,AAA Batteries (4-pack),1,2.99,2019-05-22 12:45:00,923 Madison St, Seattle,WA,98101 +194988,Lightning Charging Cable,1,14.95,2019-05-30 16:29:00,218 8th St, Los Angeles,CA,90001 +194989,Bose SoundSport Headphones,1,99.99,2019-05-17 01:19:00,559 Highland St, Portland,OR,97035 +194990,AA Batteries (4-pack),1,3.84,2019-05-06 19:39:00,995 13th St, Austin,TX,73301 +194991,34in Ultrawide Monitor,1,379.99,2019-05-26 12:19:00,504 Lincoln St, New York City,NY,10001 +194992,Bose SoundSport Headphones,1,99.99,2019-05-21 20:33:00,144 North St, Los Angeles,CA,90001 +194993,Lightning Charging Cable,1,14.95,2019-05-29 13:39:00,98 Highland St, Dallas,TX,75001 +194994,Lightning Charging Cable,1,14.95,2019-05-11 13:18:00,259 Lincoln St, Portland,ME,04101 +194995,USB-C Charging Cable,1,11.95,2019-05-08 21:38:00,144 Park St, San Francisco,CA,94016 +194996,AAA Batteries (4-pack),1,2.99,2019-05-17 10:15:00,769 Sunset St, Los Angeles,CA,90001 +194997,AAA Batteries (4-pack),2,2.99,2019-05-28 05:42:00,279 13th St, Los Angeles,CA,90001 +194998,34in Ultrawide Monitor,1,379.99,2019-05-30 11:43:00,272 Cherry St, Los Angeles,CA,90001 +194999,AA Batteries (4-pack),1,3.84,2019-05-15 10:14:00,143 12th St, Los Angeles,CA,90001 +195000,AA Batteries (4-pack),1,3.84,2019-05-29 20:33:00,275 14th St, Atlanta,GA,30301 +195001,Lightning Charging Cable,1,14.95,2019-05-12 13:08:00,339 Hill St, Los Angeles,CA,90001 +195002,USB-C Charging Cable,2,11.95,2019-05-04 12:49:00,267 Elm St, Boston,MA,02215 +195003,AA Batteries (4-pack),1,3.84,2019-05-17 16:39:00,166 Hickory St, Atlanta,GA,30301 +195004,iPhone,1,700.0,2019-05-28 11:54:00,576 Park St, Los Angeles,CA,90001 +195005,Vareebadd Phone,1,400.0,2019-05-08 05:32:00,939 Walnut St, Portland,OR,97035 +195005,Wired Headphones,1,11.99,2019-05-08 05:32:00,939 Walnut St, Portland,OR,97035 +195006,USB-C Charging Cable,1,11.95,2019-05-07 17:23:00,618 Spruce St, San Francisco,CA,94016 +195007,iPhone,1,700.0,2019-05-14 08:45:00,757 Meadow St, Portland,OR,97035 +195008,iPhone,1,700.0,2019-05-09 10:29:00,305 Lake St, Seattle,WA,98101 +195009,Bose SoundSport Headphones,1,99.99,2019-05-05 07:54:00,688 Cherry St, San Francisco,CA,94016 +195010,USB-C Charging Cable,2,11.95,2019-05-05 22:29:00,543 River St, Los Angeles,CA,90001 +195011,Wired Headphones,1,11.99,2019-05-13 13:43:00,440 Walnut St, New York City,NY,10001 +195012,Bose SoundSport Headphones,1,99.99,2019-05-15 16:53:00,365 Hill St, New York City,NY,10001 +195013,USB-C Charging Cable,1,11.95,2019-05-17 10:26:00,162 Wilson St, San Francisco,CA,94016 +195014,Flatscreen TV,1,300.0,2019-05-27 13:47:00,852 Johnson St, San Francisco,CA,94016 +195015,Lightning Charging Cable,1,14.95,2019-05-06 10:28:00,219 Sunset St, Los Angeles,CA,90001 +195016,Lightning Charging Cable,1,14.95,2019-05-01 22:29:00,282 West St, Los Angeles,CA,90001 +195017,AAA Batteries (4-pack),2,2.99,2019-05-14 07:16:00,804 Lincoln St, San Francisco,CA,94016 +195018,AAA Batteries (4-pack),1,2.99,2019-05-08 11:22:00,389 River St, Seattle,WA,98101 +195019,27in FHD Monitor,1,149.99,2019-05-06 12:18:00,842 14th St, Seattle,WA,98101 +195019,Lightning Charging Cable,1,14.95,2019-05-06 12:18:00,842 14th St, Seattle,WA,98101 +195020,USB-C Charging Cable,1,11.95,2019-05-15 19:32:00,228 Maple St, Los Angeles,CA,90001 +195021,Apple Airpods Headphones,1,150.0,2019-05-31 22:42:00,566 Highland St, Los Angeles,CA,90001 +195022,AA Batteries (4-pack),1,3.84,2019-05-23 19:54:00,804 Elm St, San Francisco,CA,94016 +195023,27in FHD Monitor,1,149.99,2019-05-19 19:07:00,846 Wilson St, Portland,OR,97035 +195024,AAA Batteries (4-pack),3,2.99,2019-05-24 14:44:00,930 West St, Boston,MA,02215 +195025,Wired Headphones,1,11.99,2019-05-26 12:29:00,376 North St, Dallas,TX,75001 +195026,Apple Airpods Headphones,1,150.0,2019-05-05 12:08:00,587 Maple St, Los Angeles,CA,90001 +195027,Google Phone,1,600.0,2019-05-15 21:05:00,189 12th St, San Francisco,CA,94016 +195028,20in Monitor,1,109.99,2019-05-07 20:19:00,747 Johnson St, San Francisco,CA,94016 +195029,Lightning Charging Cable,1,14.95,2019-05-04 10:42:00,702 West St, Austin,TX,73301 +195030,Wired Headphones,1,11.99,2019-05-25 12:45:00,553 12th St, Los Angeles,CA,90001 +195031,34in Ultrawide Monitor,1,379.99,2019-05-21 08:26:00,323 Jackson St, Dallas,TX,75001 +195032,USB-C Charging Cable,1,11.95,2019-05-09 23:41:00,471 11th St, New York City,NY,10001 +195033,Lightning Charging Cable,1,14.95,2019-05-04 15:35:00,962 Cedar St, San Francisco,CA,94016 +195034,Wired Headphones,1,11.99,2019-05-30 08:46:00,889 9th St, Los Angeles,CA,90001 +195035,27in FHD Monitor,1,149.99,2019-05-26 11:16:00,812 Lakeview St, San Francisco,CA,94016 +195036,Apple Airpods Headphones,1,150.0,2019-05-23 21:40:00,756 Walnut St, Seattle,WA,98101 +195037,AAA Batteries (4-pack),1,2.99,2019-05-26 19:15:00,234 Adams St, New York City,NY,10001 +195038,AAA Batteries (4-pack),2,2.99,2019-05-19 19:14:00,890 Madison St, New York City,NY,10001 +195039,AA Batteries (4-pack),2,3.84,2019-05-18 07:56:00,534 Cherry St, New York City,NY,10001 +195040,AAA Batteries (4-pack),1,2.99,2019-05-14 08:48:00,173 Cedar St, Seattle,WA,98101 +195041,AAA Batteries (4-pack),1,2.99,2019-05-07 18:31:00,177 Chestnut St, New York City,NY,10001 +195042,AAA Batteries (4-pack),1,2.99,2019-05-13 20:02:00,763 Maple St, Los Angeles,CA,90001 +195043,34in Ultrawide Monitor,1,379.99,2019-05-02 10:29:00,508 West St, San Francisco,CA,94016 +195044,Wired Headphones,1,11.99,2019-05-23 13:54:00,389 10th St, Boston,MA,02215 +195045,Wired Headphones,1,11.99,2019-05-24 02:22:00,95 Jefferson St, Atlanta,GA,30301 +195046,AAA Batteries (4-pack),2,2.99,2019-05-29 14:04:00,616 13th St, San Francisco,CA,94016 +195047,AA Batteries (4-pack),2,3.84,2019-05-12 21:18:00,129 1st St, Seattle,WA,98101 +195048,AA Batteries (4-pack),1,3.84,2019-05-19 18:01:00,815 Chestnut St, San Francisco,CA,94016 +195049,Wired Headphones,1,11.99,2019-05-08 13:36:00,124 Main St, Seattle,WA,98101 +195050,Wired Headphones,1,11.99,2019-05-08 08:44:00,469 5th St, Los Angeles,CA,90001 +195051,AAA Batteries (4-pack),3,2.99,2019-05-14 20:20:00,146 Hill St, San Francisco,CA,94016 +195052,AAA Batteries (4-pack),2,2.99,2019-05-17 15:20:00,568 Jefferson St, New York City,NY,10001 +195053,Flatscreen TV,1,300.0,2019-05-22 22:24:00,404 Highland St, Los Angeles,CA,90001 +195054,AAA Batteries (4-pack),1,2.99,2019-05-12 20:22:00,503 Lakeview St, Dallas,TX,75001 +195055,AA Batteries (4-pack),1,3.84,2019-05-17 22:23:00,979 Center St, San Francisco,CA,94016 +195056,Lightning Charging Cable,1,14.95,2019-05-17 11:54:00,239 Elm St, Boston,MA,02215 +195057,AAA Batteries (4-pack),2,2.99,2019-05-21 09:46:00,155 West St, Portland,OR,97035 +195058,USB-C Charging Cable,1,11.95,2019-05-28 16:09:00,887 Hickory St, San Francisco,CA,94016 +195059,Wired Headphones,2,11.99,2019-05-27 18:25:00,856 12th St, New York City,NY,10001 +195059,27in FHD Monitor,1,149.99,2019-05-27 18:25:00,856 12th St, New York City,NY,10001 +195060,USB-C Charging Cable,2,11.95,2019-05-31 14:39:00,306 Cherry St, San Francisco,CA,94016 +195061,27in FHD Monitor,1,149.99,2019-05-16 09:39:00,626 Johnson St, San Francisco,CA,94016 +195062,Google Phone,1,600.0,2019-05-02 17:03:00,514 Walnut St, Boston,MA,02215 +195063,Apple Airpods Headphones,1,150.0,2019-05-07 21:33:00,306 14th St, San Francisco,CA,94016 +195064,USB-C Charging Cable,1,11.95,2019-05-18 23:46:00,393 Wilson St, San Francisco,CA,94016 +195065,Lightning Charging Cable,1,14.95,2019-05-08 14:31:00,270 Meadow St, New York City,NY,10001 +195066,iPhone,1,700.0,2019-05-16 11:01:00,195 North St, Atlanta,GA,30301 +195066,Lightning Charging Cable,1,14.95,2019-05-16 11:01:00,195 North St, Atlanta,GA,30301 +195067,USB-C Charging Cable,1,11.95,2019-05-20 14:42:00,306 Dogwood St, Atlanta,GA,30301 +195068,USB-C Charging Cable,1,11.95,2019-05-01 14:28:00,42 1st St, Austin,TX,73301 +195069,Bose SoundSport Headphones,1,99.99,2019-05-17 18:53:00,347 Highland St, San Francisco,CA,94016 +195070,Apple Airpods Headphones,1,150.0,2019-05-03 23:27:00,964 West St, Atlanta,GA,30301 +195071,ThinkPad Laptop,1,999.99,2019-05-20 17:04:00,858 Chestnut St, Los Angeles,CA,90001 +195072,AAA Batteries (4-pack),1,2.99,2019-05-22 07:43:00,926 Church St, New York City,NY,10001 +195073,ThinkPad Laptop,1,999.99,2019-05-07 11:32:00,779 Meadow St, Los Angeles,CA,90001 +195074,Apple Airpods Headphones,1,150.0,2019-05-23 10:03:00,993 11th St, Portland,OR,97035 +195075,Vareebadd Phone,1,400.0,2019-05-13 10:43:00,85 South St, New York City,NY,10001 +195076,20in Monitor,1,109.99,2019-05-02 17:38:00,179 Hickory St, Portland,OR,97035 +195077,20in Monitor,1,109.99,2019-05-10 20:16:00,541 Park St, Seattle,WA,98101 +195078,Flatscreen TV,1,300.0,2019-05-25 22:08:00,629 Meadow St, San Francisco,CA,94016 +195079,USB-C Charging Cable,1,11.95,2019-05-29 22:06:00,586 14th St, Los Angeles,CA,90001 +195080,AAA Batteries (4-pack),1,2.99,2019-05-14 11:17:00,368 Spruce St, Los Angeles,CA,90001 +195081,27in FHD Monitor,1,149.99,2019-05-13 10:00:00,526 Spruce St, Boston,MA,02215 +195082,Apple Airpods Headphones,1,150.0,2019-05-25 12:50:00,616 Maple St, Boston,MA,02215 +195083,Lightning Charging Cable,1,14.95,2019-05-28 18:39:00,968 8th St, Dallas,TX,75001 +195084,AA Batteries (4-pack),1,3.84,2019-05-02 07:36:00,678 River St, Boston,MA,02215 +195085,Flatscreen TV,1,300.0,2019-05-05 09:15:00,244 Highland St, San Francisco,CA,94016 +195086,Wired Headphones,1,11.99,2019-05-07 16:11:00,5 Spruce St, Seattle,WA,98101 +195087,Lightning Charging Cable,1,14.95,2019-05-18 08:16:00,481 Dogwood St, San Francisco,CA,94016 +195088,Bose SoundSport Headphones,1,99.99,2019-05-06 17:49:00,753 Forest St, New York City,NY,10001 +195089,Flatscreen TV,1,300.0,2019-05-28 21:53:00,177 Center St, New York City,NY,10001 +195090,USB-C Charging Cable,1,11.95,2019-05-06 01:53:00,680 13th St, Seattle,WA,98101 +195091,Apple Airpods Headphones,2,150.0,2019-05-15 17:44:00,189 South St, New York City,NY,10001 +195092,Bose SoundSport Headphones,1,99.99,2019-05-06 08:43:00,405 Wilson St, Los Angeles,CA,90001 +195093,Google Phone,1,600.0,2019-05-07 09:29:00,200 Walnut St, Seattle,WA,98101 +195094,Macbook Pro Laptop,1,1700.0,2019-05-05 06:01:00,501 8th St, San Francisco,CA,94016 +195095,Wired Headphones,1,11.99,2019-05-05 16:07:00,241 Wilson St, Portland,OR,97035 +195096,Bose SoundSport Headphones,1,99.99,2019-05-27 11:45:00,795 4th St, Los Angeles,CA,90001 +195097,iPhone,1,700.0,2019-05-23 08:52:00,78 Forest St, Dallas,TX,75001 +195097,Lightning Charging Cable,1,14.95,2019-05-23 08:52:00,78 Forest St, Dallas,TX,75001 +195097,Apple Airpods Headphones,1,150.0,2019-05-23 08:52:00,78 Forest St, Dallas,TX,75001 +195098,AAA Batteries (4-pack),1,2.99,2019-05-21 14:35:00,487 11th St, New York City,NY,10001 +195099,iPhone,1,700.0,2019-05-30 18:51:00,233 Cherry St, San Francisco,CA,94016 +195100,Google Phone,1,600.0,2019-05-22 21:20:00,822 Main St, Los Angeles,CA,90001 +195101,Google Phone,1,600.0,2019-05-17 21:16:00,978 Sunset St, Atlanta,GA,30301 +195102,USB-C Charging Cable,2,11.95,2019-05-14 07:33:00,681 14th St, Portland,OR,97035 +195103,AA Batteries (4-pack),1,3.84,2019-05-29 22:59:00,128 Elm St, Portland,OR,97035 +195104,iPhone,1,700.0,2019-05-07 20:29:00,897 Lake St, Austin,TX,73301 +195104,Lightning Charging Cable,1,14.95,2019-05-07 20:29:00,897 Lake St, Austin,TX,73301 +195105,Apple Airpods Headphones,1,150.0,2019-05-16 13:07:00,374 Highland St, San Francisco,CA,94016 +195106,Apple Airpods Headphones,1,150.0,2019-05-31 20:54:00,908 Chestnut St, San Francisco,CA,94016 +195107,AAA Batteries (4-pack),1,2.99,2019-05-15 19:38:00,386 Pine St, Los Angeles,CA,90001 +195108,Apple Airpods Headphones,1,150.0,2019-05-12 17:52:00,25 Cherry St, Atlanta,GA,30301 +195109,Bose SoundSport Headphones,1,99.99,2019-05-31 17:32:00,971 Highland St, Portland,OR,97035 +195110,27in 4K Gaming Monitor,1,389.99,2019-05-21 13:18:00,841 Ridge St, Los Angeles,CA,90001 +195111,34in Ultrawide Monitor,1,379.99,2019-05-25 08:05:00,328 Elm St, Austin,TX,73301 +195112,Wired Headphones,1,11.99,2019-05-21 17:08:00,799 Elm St, Boston,MA,02215 +195113,Wired Headphones,1,11.99,2019-05-22 00:16:00,267 Madison St, Los Angeles,CA,90001 +195114,Lightning Charging Cable,1,14.95,2019-05-05 14:15:00,943 7th St, Portland,OR,97035 +195115,Flatscreen TV,1,300.0,2019-05-27 21:31:00,607 Wilson St, New York City,NY,10001 +195116,AAA Batteries (4-pack),1,2.99,2019-05-25 14:15:00,584 Forest St, San Francisco,CA,94016 +195117,Lightning Charging Cable,1,14.95,2019-05-30 21:16:00,707 Cedar St, Los Angeles,CA,90001 +195118,USB-C Charging Cable,2,11.95,2019-05-19 06:34:00,794 Cherry St, Seattle,WA,98101 +195119,Lightning Charging Cable,1,14.95,2019-05-31 09:12:00,107 Johnson St, San Francisco,CA,94016 +195120,Apple Airpods Headphones,1,150.0,2019-05-08 13:54:00,596 Cedar St, Austin,TX,73301 +195121,AA Batteries (4-pack),1,3.84,2019-05-25 22:45:00,105 Maple St, Atlanta,GA,30301 +195122,27in FHD Monitor,1,149.99,2019-05-30 09:39:00,6 Forest St, San Francisco,CA,94016 +195123,27in 4K Gaming Monitor,1,389.99,2019-05-17 23:36:00,597 North St, San Francisco,CA,94016 +195123,AAA Batteries (4-pack),1,2.99,2019-05-17 23:36:00,597 North St, San Francisco,CA,94016 +195124,iPhone,1,700.0,2019-05-29 14:37:00,540 Maple St, Portland,OR,97035 +195124,Wired Headphones,1,11.99,2019-05-29 14:37:00,540 Maple St, Portland,OR,97035 +195125,Bose SoundSport Headphones,1,99.99,2019-05-03 15:58:00,935 Chestnut St, Austin,TX,73301 +195126,USB-C Charging Cable,2,11.95,2019-05-24 12:35:00,212 Jackson St, San Francisco,CA,94016 +195127,LG Dryer,1,600.0,2019-05-20 15:50:00,999 Park St, Los Angeles,CA,90001 +195128,20in Monitor,1,109.99,2019-05-05 13:17:00,904 Sunset St, Seattle,WA,98101 +195129,27in FHD Monitor,1,149.99,2019-05-01 13:29:00,885 Jefferson St, San Francisco,CA,94016 +195130,AAA Batteries (4-pack),1,2.99,2019-05-08 15:38:00,444 Hill St, New York City,NY,10001 +195131,Lightning Charging Cable,2,14.95,2019-05-06 17:16:00,655 Elm St, New York City,NY,10001 +195132,Apple Airpods Headphones,2,150.0,2019-05-19 22:36:00,260 4th St, Los Angeles,CA,90001 +195133,Google Phone,1,600.0,2019-05-12 18:18:00,683 West St, New York City,NY,10001 +195134,Wired Headphones,1,11.99,2019-05-14 20:37:00,880 Lake St, Portland,OR,97035 +195135,AAA Batteries (4-pack),2,2.99,2019-05-07 22:00:00,424 South St, Los Angeles,CA,90001 +195136,AA Batteries (4-pack),2,3.84,2019-05-31 15:07:00,213 Park St, San Francisco,CA,94016 +195136,Vareebadd Phone,1,400.0,2019-05-31 15:07:00,213 Park St, San Francisco,CA,94016 +195137,AA Batteries (4-pack),1,3.84,2019-05-29 09:32:00,623 Willow St, New York City,NY,10001 +195138,27in 4K Gaming Monitor,1,389.99,2019-05-02 09:23:00,376 7th St, Los Angeles,CA,90001 +195139,USB-C Charging Cable,1,11.95,2019-05-15 21:45:00,410 9th St, Los Angeles,CA,90001 +195140,Macbook Pro Laptop,1,1700.0,2019-05-07 21:35:00,308 12th St, Dallas,TX,75001 +195141,Lightning Charging Cable,1,14.95,2019-05-22 22:25:00,677 Hill St, Seattle,WA,98101 +195142,USB-C Charging Cable,1,11.95,2019-05-13 18:43:00,924 Hickory St, San Francisco,CA,94016 +195143,AAA Batteries (4-pack),1,2.99,2019-05-14 08:42:00,613 Forest St, Los Angeles,CA,90001 +195144,Vareebadd Phone,1,400.0,2019-05-29 11:52:00,814 Center St, San Francisco,CA,94016 +195145,AA Batteries (4-pack),1,3.84,2019-05-16 07:32:00,242 10th St, Los Angeles,CA,90001 +195146,AAA Batteries (4-pack),3,2.99,2019-05-04 16:09:00,137 7th St, Boston,MA,02215 +195147,Macbook Pro Laptop,1,1700.0,2019-05-02 09:48:00,247 Lake St, San Francisco,CA,94016 +195148,Apple Airpods Headphones,1,150.0,2019-05-07 13:33:00,145 Park St, New York City,NY,10001 +195149,Lightning Charging Cable,1,14.95,2019-05-23 06:55:00,831 Main St, San Francisco,CA,94016 +195150,AA Batteries (4-pack),1,3.84,2019-05-02 21:17:00,748 Center St, San Francisco,CA,94016 +195151,27in FHD Monitor,1,149.99,2019-05-06 07:32:00,287 Elm St, Los Angeles,CA,90001 +195152,27in 4K Gaming Monitor,1,389.99,2019-05-19 09:05:00,449 Adams St, Austin,TX,73301 +195153,AAA Batteries (4-pack),2,2.99,2019-05-28 15:45:00,424 Walnut St, Dallas,TX,75001 +195154,Bose SoundSport Headphones,1,99.99,2019-05-17 13:30:00,828 Walnut St, New York City,NY,10001 +195155,AAA Batteries (4-pack),1,2.99,2019-05-23 08:40:00,674 Highland St, Boston,MA,02215 +195156,AA Batteries (4-pack),4,3.84,2019-05-07 11:49:00,250 Meadow St, San Francisco,CA,94016 +195157,AAA Batteries (4-pack),1,2.99,2019-05-30 09:50:00,272 Park St, San Francisco,CA,94016 +195158,AAA Batteries (4-pack),2,2.99,2019-05-01 23:43:00,290 Johnson St, San Francisco,CA,94016 +195159,27in FHD Monitor,1,149.99,2019-05-25 18:32:00,968 Center St, New York City,NY,10001 +195160,Bose SoundSport Headphones,1,99.99,2019-05-14 15:00:00,218 Lincoln St, New York City,NY,10001 +195161,USB-C Charging Cable,1,11.95,2019-05-03 15:37:00,697 Cedar St, New York City,NY,10001 +195162,Google Phone,1,600.0,2019-05-21 17:44:00,587 13th St, Austin,TX,73301 +195163,USB-C Charging Cable,1,11.95,2019-05-07 13:52:00,115 Jackson St, Atlanta,GA,30301 +195164,Bose SoundSport Headphones,1,99.99,2019-05-09 10:47:00,546 Ridge St, Portland,OR,97035 +195165,Bose SoundSport Headphones,1,99.99,2019-05-10 13:10:00,708 Hickory St, Austin,TX,73301 +195166,AAA Batteries (4-pack),1,2.99,2019-05-13 07:44:00,528 7th St, Los Angeles,CA,90001 +195167,ThinkPad Laptop,1,999.99,2019-05-21 07:15:00,747 Church St, Atlanta,GA,30301 +195168,USB-C Charging Cable,1,11.95,2019-05-16 17:07:00,664 2nd St, New York City,NY,10001 +195169,Lightning Charging Cable,1,14.95,2019-05-22 19:48:00,637 Park St, Portland,OR,97035 +195170,Macbook Pro Laptop,1,1700.0,2019-05-10 13:13:00,963 9th St, San Francisco,CA,94016 +195171,Wired Headphones,2,11.99,2019-05-20 22:46:00,30 9th St, Atlanta,GA,30301 +195172,Apple Airpods Headphones,1,150.0,2019-05-15 20:19:00,294 Pine St, Los Angeles,CA,90001 +195173,Apple Airpods Headphones,1,150.0,2019-05-02 21:33:00,256 10th St, Seattle,WA,98101 +195174,Bose SoundSport Headphones,1,99.99,2019-05-22 08:43:00,951 Chestnut St, Los Angeles,CA,90001 +195175,Bose SoundSport Headphones,1,99.99,2019-05-14 17:06:00,633 1st St, Los Angeles,CA,90001 +195176,Google Phone,1,600.0,2019-05-09 07:46:00,554 Highland St, Los Angeles,CA,90001 +195177,AA Batteries (4-pack),1,3.84,2019-05-29 14:05:00,104 14th St, Atlanta,GA,30301 +195178,Lightning Charging Cable,1,14.95,2019-05-12 22:13:00,103 6th St, Austin,TX,73301 +195179,20in Monitor,1,109.99,2019-05-29 14:12:00,993 Willow St, New York City,NY,10001 +195180,Bose SoundSport Headphones,1,99.99,2019-05-31 20:05:00,949 7th St, Atlanta,GA,30301 +195181,Bose SoundSport Headphones,1,99.99,2019-05-18 12:12:00,258 Chestnut St, New York City,NY,10001 +195182,Macbook Pro Laptop,1,1700.0,2019-05-27 22:14:00,826 7th St, Dallas,TX,75001 +195183,AA Batteries (4-pack),1,3.84,2019-05-22 12:06:00,184 Jackson St, New York City,NY,10001 +195184,AA Batteries (4-pack),1,3.84,2019-05-13 08:38:00,410 Lincoln St, Dallas,TX,75001 +195185,iPhone,1,700.0,2019-05-27 19:37:00,355 Jackson St, Los Angeles,CA,90001 +195186,AA Batteries (4-pack),1,3.84,2019-05-29 09:25:00,824 1st St, Austin,TX,73301 +195187,Lightning Charging Cable,1,14.95,2019-05-15 10:25:00,872 Forest St, Dallas,TX,75001 +195188,AAA Batteries (4-pack),1,2.99,2019-05-05 13:13:00,9 West St, San Francisco,CA,94016 +195188,Bose SoundSport Headphones,1,99.99,2019-05-05 13:13:00,9 West St, San Francisco,CA,94016 +195189,USB-C Charging Cable,1,11.95,2019-05-16 18:43:00,584 8th St, Boston,MA,02215 +195190,Wired Headphones,1,11.99,2019-05-25 12:21:00,653 North St, Seattle,WA,98101 +195191,AA Batteries (4-pack),2,3.84,2019-05-28 11:29:00,430 Hill St, Los Angeles,CA,90001 +195192,Macbook Pro Laptop,1,1700.0,2019-05-21 12:17:00,510 West St, Los Angeles,CA,90001 +195192,AA Batteries (4-pack),3,3.84,2019-05-21 12:17:00,510 West St, Los Angeles,CA,90001 +195193,Lightning Charging Cable,1,14.95,2019-05-24 11:38:00,42 Walnut St, Seattle,WA,98101 +195194,Apple Airpods Headphones,1,150.0,2019-05-16 03:41:00,16 Washington St, Los Angeles,CA,90001 +195195,AAA Batteries (4-pack),2,2.99,2019-05-19 22:55:00,913 4th St, San Francisco,CA,94016 +195196,AA Batteries (4-pack),1,3.84,2019-05-02 12:13:00,877 Sunset St, New York City,NY,10001 +195197,AAA Batteries (4-pack),2,2.99,2019-05-22 23:56:00,279 Jefferson St, Los Angeles,CA,90001 +195198,ThinkPad Laptop,1,999.99,2019-05-22 12:31:00,632 Sunset St, Los Angeles,CA,90001 +195199,Lightning Charging Cable,1,14.95,2019-05-09 22:16:00,560 Walnut St, Dallas,TX,75001 +195200,Lightning Charging Cable,1,14.95,2019-05-30 12:53:00,14 Main St, Atlanta,GA,30301 +195201,Wired Headphones,1,11.99,2019-05-30 16:54:00,964 11th St, New York City,NY,10001 +195202,Wired Headphones,1,11.99,2019-05-15 18:58:00,194 Sunset St, New York City,NY,10001 +195203,USB-C Charging Cable,1,11.95,2019-05-23 21:38:00,411 6th St, San Francisco,CA,94016 +195204,Google Phone,1,600.0,2019-05-04 14:47:00,447 Hickory St, Boston,MA,02215 +195205,Apple Airpods Headphones,1,150.0,2019-05-24 14:06:00,856 1st St, Atlanta,GA,30301 +195206,Apple Airpods Headphones,1,150.0,2019-05-22 10:53:00,158 Cherry St, Los Angeles,CA,90001 +195207,Bose SoundSport Headphones,1,99.99,2019-05-18 00:08:00,574 8th St, Boston,MA,02215 +195208,Bose SoundSport Headphones,1,99.99,2019-05-11 19:11:00,354 14th St, San Francisco,CA,94016 +195209,Bose SoundSport Headphones,1,99.99,2019-05-12 13:19:00,255 Elm St, Austin,TX,73301 +195210,AAA Batteries (4-pack),2,2.99,2019-05-23 08:46:00,197 8th St, Dallas,TX,75001 +195211,AA Batteries (4-pack),1,3.84,2019-05-28 21:15:00,12 Cherry St, San Francisco,CA,94016 +195212,Google Phone,1,600.0,2019-05-23 01:07:00,87 Wilson St, New York City,NY,10001 +195213,Wired Headphones,1,11.99,2019-05-01 17:29:00,996 Ridge St, Atlanta,GA,30301 +195214,Flatscreen TV,1,300.0,2019-05-24 23:15:00,725 Chestnut St, Dallas,TX,75001 +195215,AA Batteries (4-pack),1,3.84,2019-05-12 15:28:00,566 11th St, San Francisco,CA,94016 +195216,AA Batteries (4-pack),1,3.84,2019-05-07 15:48:00,47 Wilson St, Dallas,TX,75001 +195217,Lightning Charging Cable,1,14.95,2019-05-12 20:10:00,733 Lakeview St, Portland,OR,97035 +195218,Lightning Charging Cable,1,14.95,2019-05-26 14:43:00,203 Main St, Los Angeles,CA,90001 +195219,Bose SoundSport Headphones,1,99.99,2019-05-23 14:34:00,418 6th St, New York City,NY,10001 +195220,AAA Batteries (4-pack),1,2.99,2019-05-21 10:37:00,810 Lake St, Dallas,TX,75001 +195221,20in Monitor,1,109.99,2019-05-12 13:35:00,411 Church St, New York City,NY,10001 +195222,AA Batteries (4-pack),1,3.84,2019-05-03 19:32:00,530 Jackson St, Portland,OR,97035 +195223,AA Batteries (4-pack),1,3.84,2019-05-12 10:06:00,166 Lake St, Seattle,WA,98101 +195224,iPhone,1,700.0,2019-05-13 14:00:00,463 10th St, Dallas,TX,75001 +195224,Lightning Charging Cable,1,14.95,2019-05-13 14:00:00,463 10th St, Dallas,TX,75001 +195225,AAA Batteries (4-pack),1,2.99,2019-05-24 05:40:00,719 Maple St, New York City,NY,10001 +195226,Google Phone,1,600.0,2019-05-29 12:22:00,875 Park St, San Francisco,CA,94016 +195227,Lightning Charging Cable,1,14.95,2019-05-29 18:56:00,810 Dogwood St, Austin,TX,73301 +195228,USB-C Charging Cable,1,11.95,2019-05-01 11:19:00,739 7th St, Los Angeles,CA,90001 +195229,Bose SoundSport Headphones,1,99.99,2019-05-22 21:57:00,728 Walnut St, Boston,MA,02215 +195230,iPhone,1,700.0,2019-05-05 10:23:00,535 9th St, Boston,MA,02215 +195231,ThinkPad Laptop,1,999.99,2019-05-29 23:06:00,49 Lakeview St, Boston,MA,02215 +195232,Apple Airpods Headphones,1,150.0,2019-05-30 11:11:00,736 Spruce St, Los Angeles,CA,90001 +195233,AA Batteries (4-pack),1,3.84,2019-05-18 22:03:00,571 14th St, Atlanta,GA,30301 +195234,Bose SoundSport Headphones,1,99.99,2019-05-21 12:25:00,63 12th St, Dallas,TX,75001 +195235,27in 4K Gaming Monitor,1,389.99,2019-05-21 11:55:00,597 River St, New York City,NY,10001 +195236,AA Batteries (4-pack),1,3.84,2019-05-26 01:46:00,264 Ridge St, Dallas,TX,75001 +195237,Apple Airpods Headphones,1,150.0,2019-05-09 23:57:00,841 Forest St, San Francisco,CA,94016 +195238,USB-C Charging Cable,1,11.95,2019-05-29 15:18:00,497 8th St, San Francisco,CA,94016 +195239,Google Phone,1,600.0,2019-05-15 09:39:00,331 14th St, Dallas,TX,75001 +195240,Lightning Charging Cable,1,14.95,2019-05-20 10:36:00,911 4th St, Boston,MA,02215 +195241,AA Batteries (4-pack),1,3.84,2019-05-31 17:07:00,917 Dogwood St, Boston,MA,02215 +195242,Lightning Charging Cable,1,14.95,2019-05-13 15:44:00,277 Wilson St, Seattle,WA,98101 +195243,Lightning Charging Cable,1,14.95,2019-05-23 16:08:00,635 8th St, Portland,OR,97035 +195244,AA Batteries (4-pack),1,3.84,2019-05-18 04:29:00,378 Elm St, Los Angeles,CA,90001 +195245,34in Ultrawide Monitor,1,379.99,2019-05-04 18:21:00,274 Meadow St, Los Angeles,CA,90001 +195246,AA Batteries (4-pack),1,3.84,2019-05-16 21:02:00,722 Chestnut St, Dallas,TX,75001 +195247,iPhone,1,700.0,2019-05-11 14:46:00,473 11th St, San Francisco,CA,94016 +195247,Lightning Charging Cable,1,14.95,2019-05-11 14:46:00,473 11th St, San Francisco,CA,94016 +195248,Flatscreen TV,1,300.0,2019-05-03 01:14:00,194 Elm St, Boston,MA,02215 +195249,AA Batteries (4-pack),2,3.84,2019-05-23 14:57:00,28 Hickory St, Seattle,WA,98101 +195250,34in Ultrawide Monitor,1,379.99,2019-05-16 11:05:00,722 Washington St, San Francisco,CA,94016 +195251,Apple Airpods Headphones,1,150.0,2019-05-19 14:36:00,401 Maple St, Atlanta,GA,30301 +195252,Apple Airpods Headphones,1,150.0,2019-05-01 11:29:00,731 7th St, Seattle,WA,98101 +195253,Lightning Charging Cable,1,14.95,2019-05-11 00:11:00,811 Park St, Portland,ME,04101 +195254,Apple Airpods Headphones,1,150.0,2019-05-04 20:09:00,628 Main St, Dallas,TX,75001 +195255,Flatscreen TV,1,300.0,2019-05-09 19:16:00,856 Jackson St, Dallas,TX,75001 +195256,Google Phone,1,600.0,2019-05-04 20:40:00,621 Hill St, Los Angeles,CA,90001 +195256,USB-C Charging Cable,1,11.95,2019-05-04 20:40:00,621 Hill St, Los Angeles,CA,90001 +195257,Lightning Charging Cable,1,14.95,2019-05-22 09:39:00,518 Hill St, Dallas,TX,75001 +195258,Apple Airpods Headphones,1,150.0,2019-05-06 17:26:00,242 Center St, Dallas,TX,75001 +195259,iPhone,1,700.0,2019-05-02 11:19:00,949 Adams St, Seattle,WA,98101 +195260,Apple Airpods Headphones,1,150.0,2019-05-29 10:34:00,823 Cedar St, Los Angeles,CA,90001 +195261,Wired Headphones,1,11.99,2019-05-18 18:01:00,563 Washington St, Boston,MA,02215 +195262,AA Batteries (4-pack),1,3.84,2019-05-13 22:41:00,287 Walnut St, New York City,NY,10001 +195263,Lightning Charging Cable,1,14.95,2019-05-19 21:58:00,415 Lakeview St, Atlanta,GA,30301 +195264,AA Batteries (4-pack),2,3.84,2019-05-05 14:47:00,453 9th St, Atlanta,GA,30301 +195265,AA Batteries (4-pack),1,3.84,2019-05-27 22:15:00,751 Cedar St, Austin,TX,73301 +195266,USB-C Charging Cable,2,11.95,2019-05-17 10:12:00,648 Meadow St, Boston,MA,02215 +195267,Bose SoundSport Headphones,1,99.99,2019-05-06 11:49:00,322 Pine St, New York City,NY,10001 +195268,Google Phone,1,600.0,2019-05-31 22:15:00,726 Walnut St, Seattle,WA,98101 +195269,Google Phone,1,600.0,2019-05-07 08:35:00,181 Hickory St, New York City,NY,10001 +195270,Wired Headphones,1,11.99,2019-05-01 21:56:00,126 Washington St, Los Angeles,CA,90001 +195271,AA Batteries (4-pack),1,3.84,2019-05-11 14:44:00,323 9th St, Boston,MA,02215 +195272,Bose SoundSport Headphones,1,99.99,2019-05-01 10:32:00,301 South St, San Francisco,CA,94016 +195273,USB-C Charging Cable,1,11.95,2019-05-18 14:40:00,205 Cherry St, Dallas,TX,75001 +195274,ThinkPad Laptop,1,999.99,2019-05-03 15:23:00,543 Church St, San Francisco,CA,94016 +195275,27in FHD Monitor,1,149.99,2019-05-10 11:27:00,828 5th St, Portland,OR,97035 +195276,Wired Headphones,2,11.99,2019-05-13 06:52:00,654 Highland St, Austin,TX,73301 +195277,Apple Airpods Headphones,1,150.0,2019-05-20 23:25:00,104 6th St, San Francisco,CA,94016 +195278,Wired Headphones,1,11.99,2019-05-11 17:14:00,437 Maple St, Seattle,WA,98101 +195279,Wired Headphones,1,11.99,2019-05-09 20:01:00,445 West St, Atlanta,GA,30301 +195280,34in Ultrawide Monitor,1,379.99,2019-05-21 13:47:00,531 1st St, San Francisco,CA,94016 +195281,Google Phone,1,600.0,2019-05-10 09:15:00,709 Maple St, San Francisco,CA,94016 +195282,USB-C Charging Cable,1,11.95,2019-05-28 20:51:00,117 Main St, New York City,NY,10001 +195283,iPhone,1,700.0,2019-05-28 12:45:00,514 2nd St, Seattle,WA,98101 +195283,Lightning Charging Cable,1,14.95,2019-05-28 12:45:00,514 2nd St, Seattle,WA,98101 +195284,Macbook Pro Laptop,1,1700.0,2019-05-18 12:27:00,386 Madison St, Portland,ME,04101 +195285,Google Phone,1,600.0,2019-05-30 11:15:00,974 12th St, Austin,TX,73301 +195286,20in Monitor,1,109.99,2019-05-28 20:00:00,775 5th St, Atlanta,GA,30301 +195287,ThinkPad Laptop,1,999.99,2019-05-06 14:27:00,407 Church St, Portland,OR,97035 +195288,Macbook Pro Laptop,1,1700.0,2019-05-12 18:57:00,176 Lakeview St, San Francisco,CA,94016 +195289,Lightning Charging Cable,1,14.95,2019-05-31 10:12:00,417 Elm St, Boston,MA,02215 +195290,AAA Batteries (4-pack),1,2.99,2019-05-05 18:59:00,318 Lincoln St, New York City,NY,10001 +195291,USB-C Charging Cable,1,11.95,2019-05-23 12:52:00,304 Chestnut St, Seattle,WA,98101 +195292,Lightning Charging Cable,1,14.95,2019-05-06 20:40:00,112 Hickory St, Boston,MA,02215 +195293,AA Batteries (4-pack),1,3.84,2019-05-05 00:13:00,852 Jefferson St, Seattle,WA,98101 +195294,AA Batteries (4-pack),1,3.84,2019-05-21 18:48:00,803 Main St, Boston,MA,02215 +195295,Flatscreen TV,1,300.0,2019-05-10 12:47:00,821 South St, Dallas,TX,75001 +195296,ThinkPad Laptop,1,999.99,2019-05-16 11:27:00,55 Lakeview St, San Francisco,CA,94016 +195296,Bose SoundSport Headphones,1,99.99,2019-05-16 11:27:00,55 Lakeview St, San Francisco,CA,94016 +195297,27in FHD Monitor,1,149.99,2019-05-30 17:49:00,298 Church St, Dallas,TX,75001 +195298,AA Batteries (4-pack),1,3.84,2019-05-11 20:04:00,245 Hickory St, Boston,MA,02215 +195299,Lightning Charging Cable,1,14.95,2019-05-30 19:33:00,237 North St, Dallas,TX,75001 +195300,AA Batteries (4-pack),1,3.84,2019-05-30 22:20:00,380 5th St, San Francisco,CA,94016 +195301,Lightning Charging Cable,1,14.95,2019-05-09 15:01:00,878 Ridge St, San Francisco,CA,94016 +195302,AAA Batteries (4-pack),2,2.99,2019-05-30 07:05:00,610 Meadow St, Dallas,TX,75001 +195303,AA Batteries (4-pack),1,3.84,2019-05-22 18:54:00,169 Johnson St, San Francisco,CA,94016 +195304,iPhone,1,700.0,2019-05-01 12:28:00,922 Washington St, San Francisco,CA,94016 +195305,AAA Batteries (4-pack),2,2.99,2019-05-29 10:20:00,320 Cedar St, Boston,MA,02215 +195306,Wired Headphones,1,11.99,2019-05-02 11:08:00,347 Chestnut St, New York City,NY,10001 +195307,USB-C Charging Cable,1,11.95,2019-05-25 17:23:00,762 Jackson St, Dallas,TX,75001 +195308,iPhone,1,700.0,2019-05-05 12:05:00,180 Willow St, New York City,NY,10001 +195309,Wired Headphones,1,11.99,2019-05-22 23:03:00,823 2nd St, Los Angeles,CA,90001 +195310,34in Ultrawide Monitor,2,379.99,2019-05-14 19:27:00,612 Jackson St, New York City,NY,10001 +195311,AAA Batteries (4-pack),1,2.99,2019-05-01 15:47:00,393 Center St, Dallas,TX,75001 +195312,Macbook Pro Laptop,1,1700.0,2019-05-25 19:32:00,419 Hickory St, Dallas,TX,75001 +195313,AAA Batteries (4-pack),4,2.99,2019-05-09 13:45:00,182 10th St, Dallas,TX,75001 +195314,Apple Airpods Headphones,1,150.0,2019-05-14 10:35:00,636 14th St, Atlanta,GA,30301 +195315,27in FHD Monitor,1,149.99,2019-05-26 13:31:00,850 Maple St, Los Angeles,CA,90001 +195316,Lightning Charging Cable,1,14.95,2019-05-21 12:57:00,395 6th St, San Francisco,CA,94016 +195317,iPhone,1,700.0,2019-05-10 16:03:00,845 Willow St, Atlanta,GA,30301 +195318,Apple Airpods Headphones,1,150.0,2019-05-26 18:58:00,924 Center St, Portland,OR,97035 +195319,AAA Batteries (4-pack),1,2.99,2019-05-10 12:46:00,275 Chestnut St, Dallas,TX,75001 +195320,20in Monitor,1,109.99,2019-05-03 16:48:00,172 2nd St, San Francisco,CA,94016 +195321,27in 4K Gaming Monitor,1,389.99,2019-05-08 09:56:00,646 5th St, Seattle,WA,98101 +195322,USB-C Charging Cable,1,11.95,2019-05-29 14:40:00,879 10th St, New York City,NY,10001 +195323,34in Ultrawide Monitor,1,379.99,2019-05-11 10:17:00,236 Walnut St, Portland,OR,97035 +195324,Wired Headphones,1,11.99,2019-05-01 20:59:00,784 Ridge St, Seattle,WA,98101 +195325,AA Batteries (4-pack),1,3.84,2019-05-11 14:02:00,274 Pine St, Atlanta,GA,30301 +195326,Apple Airpods Headphones,1,150.0,2019-05-20 17:23:00,784 Lakeview St, San Francisco,CA,94016 +195327,AA Batteries (4-pack),2,3.84,2019-05-17 20:01:00,875 Main St, Austin,TX,73301 +195328,Google Phone,1,600.0,2019-05-03 13:30:00,589 Walnut St, Boston,MA,02215 +195328,USB-C Charging Cable,1,11.95,2019-05-03 13:30:00,589 Walnut St, Boston,MA,02215 +195329,Flatscreen TV,1,300.0,2019-05-23 08:05:00,121 13th St, San Francisco,CA,94016 +195330,Lightning Charging Cable,1,14.95,2019-05-17 09:37:00,370 8th St, Portland,OR,97035 +195331,AAA Batteries (4-pack),1,2.99,2019-05-01 16:15:00,224 Hickory St, Los Angeles,CA,90001 +195332,Apple Airpods Headphones,1,150.0,2019-05-11 11:54:00,438 9th St, Los Angeles,CA,90001 +195333,AA Batteries (4-pack),1,3.84,2019-05-14 22:12:00,745 Walnut St, Portland,OR,97035 +195334,USB-C Charging Cable,1,11.95,2019-05-02 12:44:00,398 4th St, San Francisco,CA,94016 +195335,AA Batteries (4-pack),3,3.84,2019-05-07 13:09:00,740 North St, New York City,NY,10001 +195336,iPhone,1,700.0,2019-05-27 14:12:00,399 11th St, Boston,MA,02215 +195337,USB-C Charging Cable,1,11.95,2019-05-09 18:20:00,926 Cherry St, San Francisco,CA,94016 +195338,Bose SoundSport Headphones,1,99.99,2019-05-17 18:29:00,630 9th St, Dallas,TX,75001 +195339,27in FHD Monitor,1,149.99,2019-05-13 18:54:00,886 1st St, Boston,MA,02215 +195340,AAA Batteries (4-pack),2,2.99,2019-05-06 14:19:00,354 6th St, Los Angeles,CA,90001 +195341,USB-C Charging Cable,1,11.95,2019-05-20 20:59:00,974 1st St, Dallas,TX,75001 +195342,Bose SoundSport Headphones,1,99.99,2019-05-23 17:08:00,290 11th St, Los Angeles,CA,90001 +195343,AA Batteries (4-pack),1,3.84,2019-05-27 22:25:00,627 Jefferson St, Dallas,TX,75001 +195344,27in FHD Monitor,1,149.99,2019-05-08 09:27:00,968 Hill St, Los Angeles,CA,90001 +195345,AAA Batteries (4-pack),2,2.99,2019-05-15 21:26:00,299 Willow St, Dallas,TX,75001 +195346,Apple Airpods Headphones,1,150.0,2019-05-06 13:34:00,267 6th St, Austin,TX,73301 +195347,ThinkPad Laptop,1,999.99,2019-05-29 11:44:00,425 Hickory St, Los Angeles,CA,90001 +195348,Lightning Charging Cable,1,14.95,2019-05-08 20:07:00,160 West St, Atlanta,GA,30301 +195349,27in FHD Monitor,1,149.99,2019-05-27 12:03:00,60 West St, San Francisco,CA,94016 +195350,Bose SoundSport Headphones,1,99.99,2019-05-10 17:12:00,204 Lincoln St, Dallas,TX,75001 +195351,Lightning Charging Cable,1,14.95,2019-05-11 07:59:00,853 Main St, San Francisco,CA,94016 +195352,27in FHD Monitor,1,149.99,2019-05-28 18:51:00,826 South St, Los Angeles,CA,90001 +195353,USB-C Charging Cable,1,11.95,2019-05-19 20:51:00,939 Cedar St, Portland,ME,04101 +195354,AA Batteries (4-pack),1,3.84,2019-05-07 21:13:00,920 Jackson St, Boston,MA,02215 +195355,Bose SoundSport Headphones,1,99.99,2019-05-28 20:17:00,789 North St, Portland,OR,97035 +195356,Lightning Charging Cable,1,14.95,2019-05-16 22:22:00,93 Chestnut St, Boston,MA,02215 +195357,AA Batteries (4-pack),1,3.84,2019-05-22 19:03:00,501 Jackson St, Portland,OR,97035 +195358,Google Phone,1,600.0,2019-05-15 18:17:00,103 13th St, Boston,MA,02215 +195359,AA Batteries (4-pack),1,3.84,2019-05-09 12:56:00,676 Jefferson St, San Francisco,CA,94016 +195360,Wired Headphones,1,11.99,2019-05-13 16:45:00,48 Adams St, Los Angeles,CA,90001 +195361,Wired Headphones,1,11.99,2019-05-16 13:10:00,67 Adams St, Los Angeles,CA,90001 +195362,27in 4K Gaming Monitor,1,389.99,2019-05-25 13:37:00,763 Lakeview St, Dallas,TX,75001 +195363,AAA Batteries (4-pack),2,2.99,2019-05-22 14:32:00,876 Church St, Boston,MA,02215 +195364,AA Batteries (4-pack),1,3.84,2019-05-15 15:22:00,564 Cedar St, Seattle,WA,98101 +195365,AAA Batteries (4-pack),3,2.99,2019-05-30 13:39:00,569 Center St, San Francisco,CA,94016 +195366,27in 4K Gaming Monitor,1,389.99,2019-05-25 23:50:00,131 Wilson St, New York City,NY,10001 +195367,Macbook Pro Laptop,1,1700.0,2019-05-11 17:19:00,269 Sunset St, Seattle,WA,98101 +195368,Wired Headphones,1,11.99,2019-05-13 11:49:00,454 8th St, New York City,NY,10001 +195369,Lightning Charging Cable,1,14.95,2019-05-01 21:38:00,120 Lake St, San Francisco,CA,94016 +195370,ThinkPad Laptop,1,999.99,2019-05-20 18:40:00,806 5th St, San Francisco,CA,94016 +195371,AAA Batteries (4-pack),1,2.99,2019-05-11 10:12:00,924 Forest St, San Francisco,CA,94016 +195372,Lightning Charging Cable,1,14.95,2019-05-27 15:15:00,376 West St, Boston,MA,02215 +195373,AAA Batteries (4-pack),1,2.99,2019-05-27 16:36:00,279 Lakeview St, New York City,NY,10001 +195374,27in 4K Gaming Monitor,1,389.99,2019-05-25 12:45:00,996 River St, New York City,NY,10001 +195375,34in Ultrawide Monitor,1,379.99,2019-05-28 08:43:00,215 Chestnut St, New York City,NY,10001 +195376,20in Monitor,1,109.99,2019-05-22 16:02:00,727 South St, Seattle,WA,98101 +195377,Google Phone,1,600.0,2019-05-29 14:32:00,97 5th St, Los Angeles,CA,90001 +195377,USB-C Charging Cable,1,11.95,2019-05-29 14:32:00,97 5th St, Los Angeles,CA,90001 +195378,AAA Batteries (4-pack),2,2.99,2019-05-12 13:54:00,361 Church St, San Francisco,CA,94016 +195379,USB-C Charging Cable,1,11.95,2019-05-23 21:04:00,759 Forest St, Atlanta,GA,30301 +195380,27in 4K Gaming Monitor,1,389.99,2019-05-02 17:43:00,614 12th St, Dallas,TX,75001 +195381,AAA Batteries (4-pack),1,2.99,2019-05-08 17:08:00,893 5th St, Boston,MA,02215 +195382,Wired Headphones,1,11.99,2019-05-28 11:17:00,27 South St, Los Angeles,CA,90001 +195383,USB-C Charging Cable,1,11.95,2019-05-19 16:14:00,64 8th St, Boston,MA,02215 +195384,Lightning Charging Cable,1,14.95,2019-05-23 22:53:00,910 Highland St, Boston,MA,02215 +195385,USB-C Charging Cable,1,11.95,2019-05-04 08:36:00,325 Madison St, Portland,OR,97035 +195386,Lightning Charging Cable,1,14.95,2019-05-07 22:26:00,501 Maple St, San Francisco,CA,94016 +195387,AA Batteries (4-pack),1,3.84,2019-05-08 18:51:00,985 Jefferson St, Portland,ME,04101 +195388,Wired Headphones,1,11.99,2019-05-02 18:20:00,512 13th St, Boston,MA,02215 +195389,USB-C Charging Cable,1,11.95,2019-05-13 13:53:00,492 South St, New York City,NY,10001 +195390,USB-C Charging Cable,1,11.95,2019-05-09 19:25:00,485 Park St, Dallas,TX,75001 +195391,iPhone,1,700.0,2019-05-28 10:01:00,338 Hickory St, San Francisco,CA,94016 +195392,AA Batteries (4-pack),1,3.84,2019-05-24 20:55:00,727 9th St, San Francisco,CA,94016 +195393,AAA Batteries (4-pack),1,2.99,2019-05-28 14:21:00,933 Washington St, San Francisco,CA,94016 +195394,27in 4K Gaming Monitor,1,389.99,2019-05-16 22:13:00,316 Cherry St, San Francisco,CA,94016 +195395,AAA Batteries (4-pack),2,2.99,2019-05-03 13:39:00,563 Hill St, Boston,MA,02215 +195396,AAA Batteries (4-pack),1,2.99,2019-05-29 04:01:00,509 Main St, San Francisco,CA,94016 +195397,20in Monitor,1,109.99,2019-05-24 08:42:00,724 4th St, San Francisco,CA,94016 +195398,USB-C Charging Cable,1,11.95,2019-05-01 23:58:00,527 Lakeview St, Boston,MA,02215 +195399,USB-C Charging Cable,1,11.95,2019-05-10 13:42:00,329 Forest St, Atlanta,GA,30301 +195400,iPhone,1,700.0,2019-05-01 23:31:00,10 Maple St, Los Angeles,CA,90001 +195400,Lightning Charging Cable,1,14.95,2019-05-01 23:31:00,10 Maple St, Los Angeles,CA,90001 +195401,27in 4K Gaming Monitor,1,389.99,2019-05-05 09:08:00,126 Hill St, San Francisco,CA,94016 +195402,Apple Airpods Headphones,1,150.0,2019-05-14 13:26:00,279 Pine St, Atlanta,GA,30301 +195403,Bose SoundSport Headphones,1,99.99,2019-05-12 09:31:00,985 Spruce St, Dallas,TX,75001 +195404,Apple Airpods Headphones,1,150.0,2019-05-02 22:02:00,401 Chestnut St, Atlanta,GA,30301 +195404,Google Phone,1,600.0,2019-05-02 22:02:00,401 Chestnut St, Atlanta,GA,30301 +195405,iPhone,1,700.0,2019-05-28 15:25:00,869 Dogwood St, Atlanta,GA,30301 +195405,Lightning Charging Cable,1,14.95,2019-05-28 15:25:00,869 Dogwood St, Atlanta,GA,30301 +195406,iPhone,1,700.0,2019-05-09 12:12:00,202 Church St, Los Angeles,CA,90001 +195407,Bose SoundSport Headphones,1,99.99,2019-05-08 13:15:00,583 9th St, Los Angeles,CA,90001 +195408,ThinkPad Laptop,1,999.99,2019-05-11 23:02:00,35 Chestnut St, Atlanta,GA,30301 +195409,27in 4K Gaming Monitor,1,389.99,2019-05-22 18:46:00,668 Park St, Atlanta,GA,30301 +195410,AA Batteries (4-pack),3,3.84,2019-05-09 12:59:00,380 Main St, New York City,NY,10001 +195411,34in Ultrawide Monitor,1,379.99,2019-05-02 20:38:00,345 Walnut St, Seattle,WA,98101 +195412,Bose SoundSport Headphones,1,99.99,2019-05-25 20:16:00,980 West St, Austin,TX,73301 +195413,LG Dryer,1,600.0,2019-05-17 12:49:00,70 Lakeview St, San Francisco,CA,94016 +195414,AA Batteries (4-pack),1,3.84,2019-05-14 13:55:00,641 10th St, Los Angeles,CA,90001 +195415,AAA Batteries (4-pack),1,2.99,2019-05-19 10:38:00,79 Dogwood St, San Francisco,CA,94016 +195416,Apple Airpods Headphones,1,150.0,2019-05-22 13:33:00,44 South St, Atlanta,GA,30301 +195417,Vareebadd Phone,1,400.0,2019-05-05 09:51:00,510 11th St, San Francisco,CA,94016 +195417,Bose SoundSport Headphones,1,99.99,2019-05-05 09:51:00,510 11th St, San Francisco,CA,94016 +195418,Wired Headphones,1,11.99,2019-05-10 08:05:00,516 12th St, Dallas,TX,75001 +195419,Lightning Charging Cable,2,14.95,2019-05-21 18:04:00,135 Chestnut St, San Francisco,CA,94016 +195420,Wired Headphones,1,11.99,2019-05-29 23:21:00,56 Walnut St, Seattle,WA,98101 +195421,27in FHD Monitor,1,149.99,2019-05-24 00:02:00,978 Sunset St, Boston,MA,02215 +195422,Lightning Charging Cable,1,14.95,2019-05-06 10:32:00,493 Chestnut St, Atlanta,GA,30301 +195423,34in Ultrawide Monitor,1,379.99,2019-05-06 10:26:00,517 Pine St, Los Angeles,CA,90001 +195424,LG Washing Machine,1,600.0,2019-05-05 17:56:00,692 13th St, Atlanta,GA,30301 +195425,AAA Batteries (4-pack),1,2.99,2019-05-28 21:40:00,22 Dogwood St, Portland,OR,97035 +195426,iPhone,1,700.0,2019-05-05 14:08:00,17 Lakeview St, Boston,MA,02215 +195426,Lightning Charging Cable,1,14.95,2019-05-05 14:08:00,17 Lakeview St, Boston,MA,02215 +195427,Wired Headphones,1,11.99,2019-05-12 10:08:00,79 Meadow St, New York City,NY,10001 +195428,Apple Airpods Headphones,1,150.0,2019-05-26 10:55:00,528 Pine St, Los Angeles,CA,90001 +195429,USB-C Charging Cable,1,11.95,2019-05-17 12:53:00,590 Adams St, Boston,MA,02215 +195430,AAA Batteries (4-pack),2,2.99,2019-05-11 14:04:00,542 Johnson St, Los Angeles,CA,90001 +195431,Apple Airpods Headphones,1,150.0,2019-05-12 12:51:00,740 Ridge St, New York City,NY,10001 +195432,AAA Batteries (4-pack),3,2.99,2019-05-13 12:31:00,881 13th St, Atlanta,GA,30301 +195433,AAA Batteries (4-pack),1,2.99,2019-05-26 13:02:00,513 West St, Dallas,TX,75001 +195434,Lightning Charging Cable,1,14.95,2019-05-07 23:01:00,957 1st St, Atlanta,GA,30301 +195435,Google Phone,1,600.0,2019-05-16 18:39:00,164 Jackson St, Los Angeles,CA,90001 +195436,20in Monitor,1,109.99,2019-05-14 18:18:00,240 6th St, Boston,MA,02215 +195437,Wired Headphones,1,11.99,2019-05-04 11:14:00,856 7th St, Boston,MA,02215 +195438,AAA Batteries (4-pack),1,2.99,2019-05-21 14:03:00,96 Walnut St, Seattle,WA,98101 +195439,LG Dryer,1,600.0,2019-05-20 21:13:00,176 12th St, Seattle,WA,98101 +195440,Macbook Pro Laptop,1,1700.0,2019-05-05 22:49:00,986 13th St, San Francisco,CA,94016 +195441,Lightning Charging Cable,1,14.95,2019-05-05 22:32:00,401 Cherry St, New York City,NY,10001 +195442,Lightning Charging Cable,2,14.95,2019-05-30 04:34:00,102 Meadow St, Los Angeles,CA,90001 +195443,Bose SoundSport Headphones,2,99.99,2019-05-19 13:47:00,587 Elm St, San Francisco,CA,94016 +195444,Lightning Charging Cable,1,14.95,2019-05-26 21:50:00,382 Jefferson St, San Francisco,CA,94016 +195445,Google Phone,1,600.0,2019-05-30 19:35:00,298 Lincoln St, New York City,NY,10001 +195446,USB-C Charging Cable,1,11.95,2019-05-06 11:07:00,488 Walnut St, Los Angeles,CA,90001 +195447,AA Batteries (4-pack),1,3.84,2019-05-03 21:10:00,831 14th St, San Francisco,CA,94016 +195448,Lightning Charging Cable,1,14.95,2019-05-18 17:44:00,529 Maple St, New York City,NY,10001 +195449,34in Ultrawide Monitor,1,379.99,2019-05-21 06:08:00,696 5th St, San Francisco,CA,94016 +195450,Bose SoundSport Headphones,1,99.99,2019-05-18 09:01:00,204 5th St, Dallas,TX,75001 +195451,LG Dryer,1,600.0,2019-05-28 15:52:00,498 Chestnut St, Los Angeles,CA,90001 +195452,iPhone,1,700.0,2019-05-16 09:24:00,760 Hickory St, Los Angeles,CA,90001 +195453,Bose SoundSport Headphones,1,99.99,2019-05-02 20:04:00,371 Center St, Los Angeles,CA,90001 +195454,Wired Headphones,1,11.99,2019-05-16 00:52:00,243 Park St, Dallas,TX,75001 +195455,iPhone,1,700.0,2019-05-01 14:52:00,804 Spruce St, San Francisco,CA,94016 +195456,USB-C Charging Cable,1,11.95,2019-05-25 00:31:00,114 Willow St, Seattle,WA,98101 +195457,Lightning Charging Cable,1,14.95,2019-05-30 10:27:00,938 Park St, San Francisco,CA,94016 +195458,Apple Airpods Headphones,1,150.0,2019-05-02 11:26:00,292 Willow St, Los Angeles,CA,90001 +195459,Wired Headphones,2,11.99,2019-05-31 21:53:00,531 Cedar St, Portland,OR,97035 +195460,34in Ultrawide Monitor,1,379.99,2019-05-23 14:33:00,125 Jackson St, San Francisco,CA,94016 +195461,iPhone,1,700.0,2019-05-08 15:50:00,972 Sunset St, Los Angeles,CA,90001 +195461,Wired Headphones,1,11.99,2019-05-08 15:50:00,972 Sunset St, Los Angeles,CA,90001 +195462,27in FHD Monitor,1,149.99,2019-05-10 13:15:00,222 11th St, New York City,NY,10001 +195463,AA Batteries (4-pack),1,3.84,2019-05-21 19:25:00,110 South St, Dallas,TX,75001 +195464,AA Batteries (4-pack),1,3.84,2019-05-28 20:33:00,606 2nd St, Dallas,TX,75001 +195465,AAA Batteries (4-pack),3,2.99,2019-05-27 23:45:00,366 River St, New York City,NY,10001 +195466,AAA Batteries (4-pack),1,2.99,2019-05-19 20:06:00,463 10th St, Seattle,WA,98101 +195467,USB-C Charging Cable,3,11.95,2019-05-20 20:42:00,656 Ridge St, Portland,OR,97035 +195468,AAA Batteries (4-pack),1,2.99,2019-05-30 19:28:00,941 West St, Seattle,WA,98101 +195468,27in FHD Monitor,1,149.99,2019-05-30 19:28:00,941 West St, Seattle,WA,98101 +195469,Lightning Charging Cable,1,14.95,2019-05-14 22:18:00,146 Highland St, New York City,NY,10001 +195470,Lightning Charging Cable,2,14.95,2019-05-22 13:14:00,388 River St, Los Angeles,CA,90001 +195471,AA Batteries (4-pack),1,3.84,2019-05-01 19:45:00,416 Hill St, Atlanta,GA,30301 +195472,27in 4K Gaming Monitor,1,389.99,2019-05-31 17:00:00,916 Madison St, Dallas,TX,75001 +195473,Bose SoundSport Headphones,1,99.99,2019-05-05 12:36:00,302 Washington St, Dallas,TX,75001 +195474,USB-C Charging Cable,1,11.95,2019-05-15 12:16:00,308 River St, New York City,NY,10001 +195475,iPhone,1,700.0,2019-05-19 09:30:00,566 2nd St, San Francisco,CA,94016 +195475,Lightning Charging Cable,1,14.95,2019-05-19 09:30:00,566 2nd St, San Francisco,CA,94016 +195475,Wired Headphones,2,11.99,2019-05-19 09:30:00,566 2nd St, San Francisco,CA,94016 +195476,USB-C Charging Cable,1,11.95,2019-05-09 08:45:00,804 13th St, San Francisco,CA,94016 +195477,LG Washing Machine,1,600.0,2019-05-24 19:55:00,474 13th St, Dallas,TX,75001 +195478,20in Monitor,1,109.99,2019-05-29 09:56:00,424 Elm St, Austin,TX,73301 +195479,Lightning Charging Cable,1,14.95,2019-05-28 16:33:00,672 River St, San Francisco,CA,94016 +195480,Macbook Pro Laptop,1,1700.0,2019-05-15 20:44:00,546 11th St, Austin,TX,73301 +195481,AA Batteries (4-pack),1,3.84,2019-05-10 21:34:00,527 Hill St, Seattle,WA,98101 +195482,Bose SoundSport Headphones,1,99.99,2019-05-27 11:59:00,231 9th St, San Francisco,CA,94016 +195483,Wired Headphones,1,11.99,2019-05-27 12:40:00,636 Wilson St, Atlanta,GA,30301 +195484,Lightning Charging Cable,1,14.95,2019-05-29 07:02:00,885 Madison St, New York City,NY,10001 +195485,AAA Batteries (4-pack),4,2.99,2019-05-26 19:17:00,119 Center St, San Francisco,CA,94016 +195486,Google Phone,1,600.0,2019-05-08 16:23:00,40 Washington St, Austin,TX,73301 +195486,USB-C Charging Cable,1,11.95,2019-05-08 16:23:00,40 Washington St, Austin,TX,73301 +195487,iPhone,1,700.0,2019-05-24 05:50:00,256 Highland St, San Francisco,CA,94016 +195487,Lightning Charging Cable,4,14.95,2019-05-24 05:50:00,256 Highland St, San Francisco,CA,94016 +195488,USB-C Charging Cable,1,11.95,2019-05-25 22:15:00,621 7th St, Portland,OR,97035 +195489,ThinkPad Laptop,1,999.99,2019-05-26 19:06:00,996 Pine St, Seattle,WA,98101 +195490,Bose SoundSport Headphones,1,99.99,2019-05-14 12:19:00,286 6th St, San Francisco,CA,94016 +195491,Wired Headphones,1,11.99,2019-05-06 19:49:00,779 Pine St, Boston,MA,02215 +195492,AA Batteries (4-pack),2,3.84,2019-05-17 08:16:00,757 West St, Dallas,TX,75001 +195493,27in 4K Gaming Monitor,1,389.99,2019-05-26 18:53:00,458 Church St, Boston,MA,02215 +195494,AA Batteries (4-pack),1,3.84,2019-05-19 09:41:00,116 Chestnut St, New York City,NY,10001 +195495,Bose SoundSport Headphones,1,99.99,2019-05-04 14:28:00,541 North St, Atlanta,GA,30301 +195496,27in FHD Monitor,1,149.99,2019-05-12 21:02:00,392 8th St, San Francisco,CA,94016 +195497,Lightning Charging Cable,1,14.95,2019-05-18 13:25:00,87 Lakeview St, Austin,TX,73301 +195498,20in Monitor,1,109.99,2019-05-01 16:14:00,51 11th St, New York City,NY,10001 +195499,AAA Batteries (4-pack),3,2.99,2019-05-01 16:06:00,190 Sunset St, San Francisco,CA,94016 +195500,AA Batteries (4-pack),1,3.84,2019-05-05 10:49:00,761 11th St, San Francisco,CA,94016 +195501,34in Ultrawide Monitor,1,379.99,2019-05-06 13:08:00,278 11th St, Dallas,TX,75001 +195502,Apple Airpods Headphones,1,150.0,2019-05-09 18:21:00,200 Johnson St, Portland,OR,97035 +195503,Wired Headphones,1,11.99,2019-05-09 13:31:00,930 Church St, San Francisco,CA,94016 +195504,Bose SoundSport Headphones,1,99.99,2019-05-23 11:22:00,462 Lake St, Portland,OR,97035 +195505,AAA Batteries (4-pack),4,2.99,2019-05-25 14:27:00,388 5th St, Austin,TX,73301 +195506,Lightning Charging Cable,1,14.95,2019-05-16 15:24:00,626 Chestnut St, San Francisco,CA,94016 +195507,Bose SoundSport Headphones,1,99.99,2019-05-17 23:12:00,576 Adams St, New York City,NY,10001 +195508,AA Batteries (4-pack),1,3.84,2019-05-13 16:55:00,633 7th St, Portland,OR,97035 +195509,Lightning Charging Cable,1,14.95,2019-05-06 23:09:00,461 Lincoln St, Dallas,TX,75001 +195510,27in FHD Monitor,1,149.99,2019-05-15 01:51:00,991 Maple St, Dallas,TX,75001 +195511,Vareebadd Phone,1,400.0,2019-05-04 14:58:00,769 Church St, Los Angeles,CA,90001 +195512,Google Phone,1,600.0,2019-05-20 19:46:00,336 13th St, San Francisco,CA,94016 +195513,34in Ultrawide Monitor,1,379.99,2019-05-04 22:03:00,619 Dogwood St, Los Angeles,CA,90001 +195514,ThinkPad Laptop,1,999.99,2019-05-19 16:40:00,796 Church St, Boston,MA,02215 +195515,AA Batteries (4-pack),2,3.84,2019-05-17 10:38:00,607 13th St, Austin,TX,73301 +195516,AAA Batteries (4-pack),1,2.99,2019-05-05 18:42:00,296 5th St, Los Angeles,CA,90001 +195517,AA Batteries (4-pack),1,3.84,2019-05-24 19:50:00,224 Adams St, San Francisco,CA,94016 +195518,Flatscreen TV,1,300.0,2019-05-25 22:49:00,507 River St, Los Angeles,CA,90001 +195519,Lightning Charging Cable,1,14.95,2019-05-06 09:31:00,519 Cherry St, Los Angeles,CA,90001 +195520,Bose SoundSport Headphones,1,99.99,2019-05-04 13:59:00,377 13th St, San Francisco,CA,94016 +195521,Macbook Pro Laptop,1,1700.0,2019-05-14 10:18:00,729 5th St, Austin,TX,73301 +195522,Bose SoundSport Headphones,1,99.99,2019-05-27 12:16:00,483 Chestnut St, Los Angeles,CA,90001 +195523,AA Batteries (4-pack),2,3.84,2019-05-19 19:31:00,105 2nd St, New York City,NY,10001 +195524,Wired Headphones,2,11.99,2019-05-20 19:01:00,853 West St, Boston,MA,02215 +195525,AAA Batteries (4-pack),1,2.99,2019-05-26 02:57:00,647 1st St, San Francisco,CA,94016 +195526,AA Batteries (4-pack),2,3.84,2019-05-29 10:57:00,760 Ridge St, Seattle,WA,98101 +195527,Apple Airpods Headphones,1,150.0,2019-05-11 15:39:00,347 Meadow St, San Francisco,CA,94016 +195528,Wired Headphones,1,11.99,2019-05-03 18:09:00,245 Park St, Boston,MA,02215 +195529,Lightning Charging Cable,1,14.95,2019-05-01 16:52:00,984 Dogwood St, Boston,MA,02215 +195530,AA Batteries (4-pack),1,3.84,2019-05-01 16:44:00,641 Willow St, Dallas,TX,75001 +195531,AAA Batteries (4-pack),1,2.99,2019-05-02 12:03:00,163 4th St, New York City,NY,10001 +195532,AA Batteries (4-pack),1,3.84,2019-05-04 17:24:00,765 Pine St, Los Angeles,CA,90001 +195533,Lightning Charging Cable,2,14.95,2019-05-09 22:11:00,68 Hill St, Boston,MA,02215 +195534,Bose SoundSport Headphones,1,99.99,2019-05-17 13:05:00,541 6th St, San Francisco,CA,94016 +195535,Lightning Charging Cable,1,14.95,2019-05-02 12:34:00,991 Wilson St, San Francisco,CA,94016 +195536,34in Ultrawide Monitor,1,379.99,2019-05-27 08:49:00,263 Lake St, San Francisco,CA,94016 +195537,Wired Headphones,1,11.99,2019-05-01 12:59:00,95 Center St, Los Angeles,CA,90001 +195538,LG Dryer,1,600.0,2019-05-24 06:28:00,220 Adams St, Atlanta,GA,30301 +195539,AAA Batteries (4-pack),2,2.99,2019-05-13 11:40:00,450 Willow St, New York City,NY,10001 +195540,USB-C Charging Cable,2,11.95,2019-05-19 10:43:00,293 12th St, San Francisco,CA,94016 +195541,34in Ultrawide Monitor,1,379.99,2019-05-06 14:56:00,683 Pine St, Seattle,WA,98101 +195542,Lightning Charging Cable,1,14.95,2019-05-14 16:38:00,216 Adams St, Boston,MA,02215 +195543,Wired Headphones,1,11.99,2019-05-27 22:19:00,929 14th St, Dallas,TX,75001 +195544,AAA Batteries (4-pack),1,2.99,2019-05-28 11:00:00,957 Wilson St, Portland,OR,97035 +195545,USB-C Charging Cable,1,11.95,2019-05-26 20:41:00,265 Walnut St, Los Angeles,CA,90001 +195546,34in Ultrawide Monitor,1,379.99,2019-05-24 22:03:00,837 8th St, Seattle,WA,98101 +195547,27in 4K Gaming Monitor,1,389.99,2019-05-19 10:04:00,951 Washington St, Los Angeles,CA,90001 +195548,AA Batteries (4-pack),1,3.84,2019-05-03 20:42:00,127 Sunset St, San Francisco,CA,94016 +195549,AA Batteries (4-pack),1,3.84,2019-05-28 15:41:00,590 Willow St, Atlanta,GA,30301 +195550,27in 4K Gaming Monitor,1,389.99,2019-05-21 23:02:00,345 Pine St, Seattle,WA,98101 +195551,20in Monitor,1,109.99,2019-05-24 15:03:00,693 Meadow St, Los Angeles,CA,90001 +195552,AAA Batteries (4-pack),1,2.99,2019-05-19 22:17:00,856 Wilson St, Seattle,WA,98101 +195553,34in Ultrawide Monitor,1,379.99,2019-05-01 07:00:00,908 Lake St, Dallas,TX,75001 +195554,Apple Airpods Headphones,1,150.0,2019-05-22 19:44:00,222 River St, Atlanta,GA,30301 +195555,AA Batteries (4-pack),1,3.84,2019-05-27 09:53:00,177 1st St, Seattle,WA,98101 +195556,34in Ultrawide Monitor,1,379.99,2019-05-23 13:50:00,237 Hickory St, New York City,NY,10001 +195557,iPhone,1,700.0,2019-05-20 12:04:00,566 Forest St, Portland,OR,97035 +195557,Lightning Charging Cable,1,14.95,2019-05-20 12:04:00,566 Forest St, Portland,OR,97035 +195557,Wired Headphones,1,11.99,2019-05-20 12:04:00,566 Forest St, Portland,OR,97035 +195558,34in Ultrawide Monitor,1,379.99,2019-05-22 12:39:00,732 12th St, Portland,OR,97035 +195559,Wired Headphones,1,11.99,2019-05-13 11:04:00,780 Highland St, San Francisco,CA,94016 +195560,Lightning Charging Cable,1,14.95,2019-05-19 13:40:00,134 Cherry St, Los Angeles,CA,90001 +195561,34in Ultrawide Monitor,1,379.99,2019-05-24 17:28:00,111 Hill St, New York City,NY,10001 +195562,USB-C Charging Cable,1,11.95,2019-05-14 17:40:00,160 9th St, San Francisco,CA,94016 +195563,Bose SoundSport Headphones,1,99.99,2019-05-03 19:23:00,439 Hill St, San Francisco,CA,94016 +195564,Wired Headphones,2,11.99,2019-05-28 01:13:00,34 Willow St, San Francisco,CA,94016 +195565,AA Batteries (4-pack),1,3.84,2019-05-06 14:19:00,460 Jefferson St, Austin,TX,73301 +195566,Apple Airpods Headphones,1,150.0,2019-05-04 17:24:00,20 7th St, Dallas,TX,75001 +195567,Wired Headphones,1,11.99,2019-05-17 10:07:00,863 Elm St, Los Angeles,CA,90001 +195568,AAA Batteries (4-pack),1,2.99,2019-05-19 07:52:00,622 North St, San Francisco,CA,94016 +195569,Wired Headphones,1,11.99,2019-05-31 12:36:00,70 Maple St, Portland,OR,97035 +195570,Wired Headphones,1,11.99,2019-05-25 13:45:00,511 Jefferson St, Los Angeles,CA,90001 +195571,Lightning Charging Cable,2,14.95,2019-05-29 09:18:00,625 11th St, Dallas,TX,75001 +195572,Bose SoundSport Headphones,1,99.99,2019-05-03 12:11:00,578 North St, San Francisco,CA,94016 +195573,Lightning Charging Cable,1,14.95,2019-05-27 23:10:00,247 6th St, Austin,TX,73301 +195574,Wired Headphones,1,11.99,2019-05-23 19:51:00,270 Forest St, Austin,TX,73301 +195575,USB-C Charging Cable,1,11.95,2019-05-08 14:32:00,868 Jackson St, New York City,NY,10001 +195576,AA Batteries (4-pack),1,3.84,2019-05-07 20:11:00,454 Main St, Los Angeles,CA,90001 +195577,Lightning Charging Cable,1,14.95,2019-05-19 09:20:00,293 Highland St, New York City,NY,10001 +195578,Wired Headphones,1,11.99,2019-05-30 20:48:00,585 Madison St, Austin,TX,73301 +195579,Bose SoundSport Headphones,1,99.99,2019-05-19 16:46:00,913 14th St, Los Angeles,CA,90001 +195580,iPhone,1,700.0,2019-05-05 15:08:00,478 10th St, Seattle,WA,98101 +195581,Lightning Charging Cable,1,14.95,2019-05-27 16:59:00,804 South St, Dallas,TX,75001 +195582,Lightning Charging Cable,1,14.95,2019-05-03 19:08:00,555 Forest St, Dallas,TX,75001 +195583,USB-C Charging Cable,1,11.95,2019-05-19 10:08:00,422 Walnut St, Los Angeles,CA,90001 +195584,Lightning Charging Cable,1,14.95,2019-05-19 18:33:00,772 Maple St, Dallas,TX,75001 +195585,Apple Airpods Headphones,1,150.0,2019-05-24 00:58:00,735 Spruce St, Seattle,WA,98101 +195586,Bose SoundSport Headphones,1,99.99,2019-05-19 11:59:00,785 North St, Boston,MA,02215 +195587,AA Batteries (4-pack),1,3.84,2019-05-06 18:19:00,660 Lincoln St, Seattle,WA,98101 +195588,AAA Batteries (4-pack),1,2.99,2019-05-07 10:42:00,261 Maple St, San Francisco,CA,94016 +195589,AAA Batteries (4-pack),1,2.99,2019-05-27 08:32:00,927 Lincoln St, New York City,NY,10001 +195590,AAA Batteries (4-pack),1,2.99,2019-05-20 17:55:00,795 1st St, Portland,OR,97035 +195591,USB-C Charging Cable,1,11.95,2019-05-23 12:15:00,180 8th St, Boston,MA,02215 +195592,Google Phone,1,600.0,2019-05-07 17:55:00,567 14th St, New York City,NY,10001 +195593,AAA Batteries (4-pack),1,2.99,2019-05-28 19:06:00,213 River St, New York City,NY,10001 +195594,AAA Batteries (4-pack),1,2.99,2019-05-29 19:26:00,529 Jackson St, Los Angeles,CA,90001 +195595,Wired Headphones,1,11.99,2019-05-01 15:45:00,975 Jackson St, Austin,TX,73301 +195596,AA Batteries (4-pack),1,3.84,2019-05-22 21:54:00,717 Willow St, Atlanta,GA,30301 +195597,34in Ultrawide Monitor,1,379.99,2019-05-22 17:38:00,812 Main St, Dallas,TX,75001 +195598,AAA Batteries (4-pack),1,2.99,2019-05-22 19:44:00,326 Cherry St, San Francisco,CA,94016 +195599,27in 4K Gaming Monitor,1,389.99,2019-05-09 14:45:00,991 Jackson St, Dallas,TX,75001 +195600,USB-C Charging Cable,1,11.95,2019-05-28 19:18:00,26 Sunset St, Boston,MA,02215 +195601,Wired Headphones,2,11.99,2019-05-16 09:37:00,429 Willow St, New York City,NY,10001 +195602,iPhone,1,700.0,2019-05-22 12:11:00,37 1st St, San Francisco,CA,94016 +195603,Lightning Charging Cable,1,14.95,2019-05-01 22:42:00,569 Dogwood St, Austin,TX,73301 +195604,AAA Batteries (4-pack),1,2.99,2019-05-24 14:30:00,54 5th St, Dallas,TX,75001 +195605,20in Monitor,1,109.99,2019-05-01 11:11:00,737 Maple St, Los Angeles,CA,90001 +195606,USB-C Charging Cable,1,11.95,2019-05-09 22:04:00,374 5th St, Boston,MA,02215 +195607,AAA Batteries (4-pack),1,2.99,2019-05-03 20:53:00,654 Maple St, New York City,NY,10001 +195608,AAA Batteries (4-pack),2,2.99,2019-05-02 19:16:00,845 Wilson St, Dallas,TX,75001 +195609,AAA Batteries (4-pack),1,2.99,2019-05-26 13:01:00,140 Maple St, New York City,NY,10001 +195610,Macbook Pro Laptop,1,1700.0,2019-05-20 11:51:00,176 10th St, Boston,MA,02215 +195611,Wired Headphones,2,11.99,2019-05-09 19:04:00,907 Jackson St, Atlanta,GA,30301 +195612,27in FHD Monitor,1,149.99,2019-05-22 17:48:00,918 Center St, Los Angeles,CA,90001 +195613,Flatscreen TV,1,300.0,2019-05-24 19:36:00,248 Lake St, Austin,TX,73301 +195614,Macbook Pro Laptop,1,1700.0,2019-05-31 17:07:00,590 Pine St, Portland,OR,97035 +195615,Lightning Charging Cable,1,14.95,2019-05-13 22:17:00,574 River St, Boston,MA,02215 +195616,34in Ultrawide Monitor,1,379.99,2019-05-07 11:59:00,212 Washington St, Dallas,TX,75001 +195617,Apple Airpods Headphones,1,150.0,2019-05-13 23:00:00,909 Elm St, New York City,NY,10001 +195618,AAA Batteries (4-pack),2,2.99,2019-05-31 00:46:00,290 9th St, Los Angeles,CA,90001 +195619,AAA Batteries (4-pack),3,2.99,2019-05-18 09:25:00,58 Hill St, Dallas,TX,75001 +195619,Apple Airpods Headphones,1,150.0,2019-05-18 09:25:00,58 Hill St, Dallas,TX,75001 +195620,AA Batteries (4-pack),1,3.84,2019-05-13 09:52:00,744 Madison St, San Francisco,CA,94016 +195621,Wired Headphones,1,11.99,2019-05-13 20:26:00,296 9th St, San Francisco,CA,94016 +195622,Wired Headphones,1,11.99,2019-05-09 08:56:00,814 4th St, New York City,NY,10001 +195623,34in Ultrawide Monitor,1,379.99,2019-05-25 09:55:00,83 10th St, New York City,NY,10001 +195624,AA Batteries (4-pack),3,3.84,2019-05-14 11:19:00,443 Forest St, San Francisco,CA,94016 +195625,Apple Airpods Headphones,1,150.0,2019-05-23 17:52:00,84 Jefferson St, San Francisco,CA,94016 +195626,AA Batteries (4-pack),1,3.84,2019-05-12 22:34:00,836 Spruce St, Atlanta,GA,30301 +195627,AA Batteries (4-pack),2,3.84,2019-05-11 11:09:00,948 Elm St, Dallas,TX,75001 +195628,27in 4K Gaming Monitor,1,389.99,2019-05-14 08:59:00,634 Lake St, Los Angeles,CA,90001 +195629,34in Ultrawide Monitor,1,379.99,2019-05-17 15:44:00,215 5th St, Los Angeles,CA,90001 +195630,Lightning Charging Cable,1,14.95,2019-05-24 20:36:00,346 North St, Dallas,TX,75001 +195631,27in FHD Monitor,1,149.99,2019-05-21 00:22:00,348 Hickory St, Boston,MA,02215 +195632,Wired Headphones,1,11.99,2019-05-02 09:40:00,550 Elm St, San Francisco,CA,94016 +195633,34in Ultrawide Monitor,1,379.99,2019-05-13 20:29:00,501 Jackson St, Seattle,WA,98101 +195634,20in Monitor,1,109.99,2019-05-06 12:31:00,126 Church St, San Francisco,CA,94016 +195635,USB-C Charging Cable,1,11.95,2019-05-23 14:11:00,6 4th St, Austin,TX,73301 +195636,ThinkPad Laptop,1,999.99,2019-05-27 21:58:00,502 Dogwood St, Portland,ME,04101 +195637,Apple Airpods Headphones,1,150.0,2019-05-07 17:26:00,148 Lakeview St, Portland,OR,97035 +195638,AA Batteries (4-pack),2,3.84,2019-05-04 19:19:00,820 1st St, Boston,MA,02215 +195639,Lightning Charging Cable,1,14.95,2019-05-14 15:04:00,29 River St, New York City,NY,10001 +195640,Macbook Pro Laptop,1,1700.0,2019-05-11 19:16:00,715 Park St, Dallas,TX,75001 +195641,iPhone,1,700.0,2019-05-17 15:03:00,697 Willow St, Dallas,TX,75001 +195642,27in FHD Monitor,1,149.99,2019-05-08 22:42:00,420 Lakeview St, San Francisco,CA,94016 +195643,Apple Airpods Headphones,1,150.0,2019-05-04 19:08:00,583 Cherry St, Seattle,WA,98101 +195644,Lightning Charging Cable,1,14.95,2019-05-24 17:41:00,411 Sunset St, Seattle,WA,98101 +195645,AAA Batteries (4-pack),1,2.99,2019-05-17 13:54:00,770 Wilson St, Los Angeles,CA,90001 +195646,Lightning Charging Cable,1,14.95,2019-05-22 10:09:00,174 10th St, Portland,OR,97035 +195646,Bose SoundSport Headphones,1,99.99,2019-05-22 10:09:00,174 10th St, Portland,OR,97035 +195647,iPhone,1,700.0,2019-05-12 16:25:00,131 6th St, San Francisco,CA,94016 +195648,27in FHD Monitor,1,149.99,2019-05-03 21:33:00,938 10th St, Los Angeles,CA,90001 +195649,USB-C Charging Cable,1,11.95,2019-05-14 15:37:00,183 Hill St, Atlanta,GA,30301 +195650,Bose SoundSport Headphones,1,99.99,2019-05-28 18:27:00,529 7th St, San Francisco,CA,94016 +195651,Lightning Charging Cable,1,14.95,2019-05-25 03:05:00,604 Elm St, Seattle,WA,98101 +195652,27in FHD Monitor,1,149.99,2019-05-25 15:56:00,867 Dogwood St, New York City,NY,10001 +195653,27in FHD Monitor,1,149.99,2019-05-18 15:29:00,207 14th St, New York City,NY,10001 +195654,27in 4K Gaming Monitor,1,389.99,2019-05-13 09:53:00,111 Ridge St, Atlanta,GA,30301 +195655,Lightning Charging Cable,1,14.95,2019-05-18 10:50:00,751 12th St, Los Angeles,CA,90001 +195656,USB-C Charging Cable,3,11.95,2019-05-02 10:38:00,632 Lake St, Los Angeles,CA,90001 +195657,Bose SoundSport Headphones,1,99.99,2019-05-17 08:50:00,69 1st St, Portland,OR,97035 +195658,USB-C Charging Cable,1,11.95,2019-05-15 20:15:00,352 Chestnut St, Dallas,TX,75001 +195659,USB-C Charging Cable,1,11.95,2019-05-15 17:24:00,32 9th St, Austin,TX,73301 +195660,iPhone,1,700.0,2019-05-20 09:17:00,67 10th St, New York City,NY,10001 +195661,AA Batteries (4-pack),1,3.84,2019-05-28 09:50:00,354 Jefferson St, Portland,OR,97035 +195662,USB-C Charging Cable,1,11.95,2019-05-31 20:59:00,840 North St, New York City,NY,10001 +195663,34in Ultrawide Monitor,1,379.99,2019-05-17 20:36:00,485 Washington St, New York City,NY,10001 +195664,Lightning Charging Cable,1,14.95,2019-05-07 12:20:00,256 Maple St, Seattle,WA,98101 +195665,Lightning Charging Cable,1,14.95,2019-05-30 13:48:00,840 Cedar St, Dallas,TX,75001 +195666,Lightning Charging Cable,1,14.95,2019-05-24 09:11:00,820 Chestnut St, Dallas,TX,75001 +195667,20in Monitor,1,109.99,2019-05-20 18:27:00,169 Lake St, Seattle,WA,98101 +195668,iPhone,1,700.0,2019-05-16 01:52:00,735 6th St, Austin,TX,73301 +195669,USB-C Charging Cable,1,11.95,2019-05-04 09:03:00,350 8th St, San Francisco,CA,94016 +195670,LG Dryer,1,600.0,2019-05-04 13:25:00,364 Adams St, Los Angeles,CA,90001 +195671,Wired Headphones,1,11.99,2019-05-15 23:29:00,309 Johnson St, Los Angeles,CA,90001 +195672,Flatscreen TV,1,300.0,2019-05-25 12:30:00,498 Adams St, Los Angeles,CA,90001 +195673,Google Phone,1,600.0,2019-05-10 12:23:00,684 6th St, Portland,OR,97035 +195674,AA Batteries (4-pack),1,3.84,2019-05-29 19:29:00,980 5th St, Los Angeles,CA,90001 +195675,Wired Headphones,1,11.99,2019-05-06 15:45:00,396 Willow St, Seattle,WA,98101 +195676,Apple Airpods Headphones,1,150.0,2019-05-29 22:12:00,809 9th St, Seattle,WA,98101 +195677,Wired Headphones,1,11.99,2019-05-13 13:00:00,348 Elm St, Los Angeles,CA,90001 +195678,USB-C Charging Cable,1,11.95,2019-05-28 21:38:00,321 Washington St, Portland,OR,97035 +195679,Bose SoundSport Headphones,1,99.99,2019-05-26 13:21:00,92 Wilson St, Boston,MA,02215 +195680,Apple Airpods Headphones,1,150.0,2019-05-30 22:40:00,688 Willow St, New York City,NY,10001 +195681,AAA Batteries (4-pack),2,2.99,2019-05-29 22:50:00,520 8th St, Dallas,TX,75001 +195682,Lightning Charging Cable,1,14.95,2019-05-16 11:08:00,998 Maple St, New York City,NY,10001 +195683,20in Monitor,1,109.99,2019-05-02 20:31:00,999 River St, New York City,NY,10001 +195684,AAA Batteries (4-pack),1,2.99,2019-05-21 14:21:00,962 Center St, Los Angeles,CA,90001 +195685,Google Phone,1,600.0,2019-05-30 18:06:00,728 Maple St, Los Angeles,CA,90001 +195686,Wired Headphones,1,11.99,2019-05-13 10:23:00,388 4th St, New York City,NY,10001 +195686,Apple Airpods Headphones,1,150.0,2019-05-13 10:23:00,388 4th St, New York City,NY,10001 +195687,USB-C Charging Cable,1,11.95,2019-05-29 14:09:00,749 Madison St, San Francisco,CA,94016 +195688,Macbook Pro Laptop,1,1700.0,2019-05-21 04:10:00,345 Park St, Los Angeles,CA,90001 +195689,AAA Batteries (4-pack),2,2.99,2019-05-10 16:54:00,168 10th St, Dallas,TX,75001 +195690,AA Batteries (4-pack),1,3.84,2019-05-17 20:13:00,519 West St, San Francisco,CA,94016 +195691,Macbook Pro Laptop,1,1700.0,2019-05-10 10:44:00,330 Main St, New York City,NY,10001 +195692,AA Batteries (4-pack),1,3.84,2019-05-13 16:23:00,415 Forest St, Los Angeles,CA,90001 +195693,Bose SoundSport Headphones,1,99.99,2019-05-21 20:42:00,790 Main St, New York City,NY,10001 +195694,USB-C Charging Cable,1,11.95,2019-05-30 19:58:00,880 Walnut St, Los Angeles,CA,90001 +195695,AA Batteries (4-pack),1,3.84,2019-05-11 23:25:00,693 Spruce St, San Francisco,CA,94016 +195696,USB-C Charging Cable,1,11.95,2019-05-04 18:52:00,627 Hickory St, San Francisco,CA,94016 +195697,Apple Airpods Headphones,1,150.0,2019-05-18 11:03:00,758 6th St, New York City,NY,10001 +195698,AAA Batteries (4-pack),2,2.99,2019-05-17 14:52:00,420 2nd St, Los Angeles,CA,90001 +195699,Lightning Charging Cable,1,14.95,2019-05-08 15:06:00,18 Center St, San Francisco,CA,94016 +195700,Google Phone,1,600.0,2019-05-22 00:05:00,378 Hickory St, San Francisco,CA,94016 +195700,USB-C Charging Cable,2,11.95,2019-05-22 00:05:00,378 Hickory St, San Francisco,CA,94016 +195701,Google Phone,1,600.0,2019-05-30 19:42:00,997 Walnut St, Los Angeles,CA,90001 +195702,Wired Headphones,1,11.99,2019-05-27 10:51:00,150 Maple St, Dallas,TX,75001 +195703,Bose SoundSport Headphones,1,99.99,2019-05-30 13:25:00,382 13th St, New York City,NY,10001 +195704,Flatscreen TV,1,300.0,2019-05-19 19:37:00,428 Hill St, Los Angeles,CA,90001 +195705,ThinkPad Laptop,1,999.99,2019-05-28 08:39:00,653 4th St, Austin,TX,73301 +195706,AA Batteries (4-pack),1,3.84,2019-05-25 12:20:00,111 Pine St, Seattle,WA,98101 +195707,AA Batteries (4-pack),1,3.84,2019-05-15 00:11:00,551 6th St, San Francisco,CA,94016 +195708,Wired Headphones,1,11.99,2019-05-09 10:13:00,860 Madison St, San Francisco,CA,94016 +195709,Lightning Charging Cable,1,14.95,2019-05-25 16:17:00,400 Walnut St, San Francisco,CA,94016 +195710,27in FHD Monitor,1,149.99,2019-05-20 13:28:00,643 Willow St, Boston,MA,02215 +195711,27in FHD Monitor,1,149.99,2019-05-14 09:51:00,105 Ridge St, New York City,NY,10001 +195712,Lightning Charging Cable,1,14.95,2019-05-12 00:15:00,348 Dogwood St, Boston,MA,02215 +195713,Wired Headphones,1,11.99,2019-05-28 16:28:00,242 Sunset St, Dallas,TX,75001 +195714,27in FHD Monitor,1,149.99,2019-05-05 22:36:00,756 Ridge St, San Francisco,CA,94016 +195714,AAA Batteries (4-pack),1,2.99,2019-05-05 22:36:00,756 Ridge St, San Francisco,CA,94016 +195715,USB-C Charging Cable,1,11.95,2019-05-13 10:22:00,794 South St, Atlanta,GA,30301 +195716,34in Ultrawide Monitor,1,379.99,2019-05-15 08:19:00,624 9th St, Boston,MA,02215 +195717,USB-C Charging Cable,1,11.95,2019-05-13 18:19:00,800 Dogwood St, Austin,TX,73301 +195718,Lightning Charging Cable,1,14.95,2019-05-16 13:04:00,411 Center St, Boston,MA,02215 +195719,Lightning Charging Cable,1,14.95,2019-05-11 07:53:00,241 Park St, Boston,MA,02215 +195720,Bose SoundSport Headphones,1,99.99,2019-05-15 10:17:00,241 Hickory St, Los Angeles,CA,90001 +195721,Bose SoundSport Headphones,1,99.99,2019-05-31 11:54:00,134 South St, San Francisco,CA,94016 +195722,Bose SoundSport Headphones,1,99.99,2019-05-24 18:24:00,79 Wilson St, Los Angeles,CA,90001 +195723,USB-C Charging Cable,1,11.95,2019-05-20 20:43:00,987 Wilson St, San Francisco,CA,94016 +195724,AA Batteries (4-pack),1,3.84,2019-05-18 12:36:00,942 South St, New York City,NY,10001 +195725,Vareebadd Phone,1,400.0,2019-05-21 09:47:00,280 Dogwood St, San Francisco,CA,94016 +195726,Bose SoundSport Headphones,1,99.99,2019-05-24 15:52:00,550 Washington St, Portland,ME,04101 +195727,AAA Batteries (4-pack),1,2.99,2019-05-13 22:25:00,977 Forest St, Dallas,TX,75001 +195728,Lightning Charging Cable,1,14.95,2019-05-25 02:18:00,747 Highland St, Austin,TX,73301 +195729,AAA Batteries (4-pack),1,2.99,2019-05-29 00:16:00,9 13th St, Atlanta,GA,30301 +195730,Wired Headphones,1,11.99,2019-05-30 15:35:00,394 Wilson St, Boston,MA,02215 +195731,AAA Batteries (4-pack),2,2.99,2019-05-18 20:24:00,51 Center St, New York City,NY,10001 +195732,34in Ultrawide Monitor,1,379.99,2019-05-25 11:49:00,35 10th St, San Francisco,CA,94016 +195733,AA Batteries (4-pack),1,3.84,2019-05-23 21:01:00,930 Lakeview St, Seattle,WA,98101 +195734,27in FHD Monitor,1,149.99,2019-05-21 08:37:00,414 10th St, Los Angeles,CA,90001 +195735,AA Batteries (4-pack),1,3.84,2019-05-06 18:07:00,131 Cedar St, Los Angeles,CA,90001 +195736,Macbook Pro Laptop,1,1700.0,2019-05-14 09:37:00,333 14th St, Atlanta,GA,30301 +195737,Apple Airpods Headphones,1,150.0,2019-05-10 07:55:00,959 Hill St, Boston,MA,02215 +195738,20in Monitor,1,109.99,2019-05-24 17:28:00,736 10th St, Los Angeles,CA,90001 +195739,USB-C Charging Cable,1,11.95,2019-05-19 15:12:00,534 Dogwood St, Austin,TX,73301 +195740,Lightning Charging Cable,1,14.95,2019-05-17 18:43:00,557 7th St, Atlanta,GA,30301 +195741,AAA Batteries (4-pack),2,2.99,2019-05-08 09:07:00,245 Chestnut St, Austin,TX,73301 +195742,Macbook Pro Laptop,1,1700.0,2019-05-17 16:36:00,17 9th St, New York City,NY,10001 +195743,Apple Airpods Headphones,1,150.0,2019-05-08 15:20:00,984 Walnut St, Atlanta,GA,30301 +195744,iPhone,1,700.0,2019-05-25 02:19:00,480 Main St, San Francisco,CA,94016 +195745,27in FHD Monitor,1,149.99,2019-05-23 07:35:00,422 14th St, New York City,NY,10001 +195746,AAA Batteries (4-pack),1,2.99,2019-05-22 23:02:00,388 Lake St, Los Angeles,CA,90001 +195747,AAA Batteries (4-pack),1,2.99,2019-05-11 09:27:00,366 Spruce St, Dallas,TX,75001 +195748,27in FHD Monitor,1,149.99,2019-06-01 03:26:00,856 Elm St, San Francisco,CA,94016 +195749,AA Batteries (4-pack),2,3.84,2019-05-01 07:30:00,462 Washington St, Atlanta,GA,30301 +195750,AAA Batteries (4-pack),1,2.99,2019-05-25 23:43:00,181 Center St, San Francisco,CA,94016 +195751,AA Batteries (4-pack),1,3.84,2019-05-24 18:12:00,549 14th St, Dallas,TX,75001 +195752,AAA Batteries (4-pack),1,2.99,2019-05-01 20:38:00,44 Cedar St, San Francisco,CA,94016 +195753,Google Phone,1,600.0,2019-05-12 08:25:00,647 North St, Seattle,WA,98101 +195753,USB-C Charging Cable,1,11.95,2019-05-12 08:25:00,647 North St, Seattle,WA,98101 +195753,Wired Headphones,1,11.99,2019-05-12 08:25:00,647 North St, Seattle,WA,98101 +195754,27in FHD Monitor,1,149.99,2019-05-06 11:49:00,11 West St, San Francisco,CA,94016 +195755,Apple Airpods Headphones,1,150.0,2019-05-14 12:23:00,351 Walnut St, Dallas,TX,75001 +195756,Wired Headphones,1,11.99,2019-05-13 14:23:00,460 12th St, Boston,MA,02215 +195756,Bose SoundSport Headphones,1,99.99,2019-05-13 14:23:00,460 12th St, Boston,MA,02215 +195757,Apple Airpods Headphones,1,150.0,2019-05-15 08:25:00,97 Wilson St, Austin,TX,73301 +195758,Vareebadd Phone,1,400.0,2019-05-10 23:35:00,112 6th St, Portland,OR,97035 +195758,Wired Headphones,1,11.99,2019-05-10 23:35:00,112 6th St, Portland,OR,97035 +195759,Google Phone,1,600.0,2019-05-11 18:37:00,3 Wilson St, New York City,NY,10001 +195759,USB-C Charging Cable,1,11.95,2019-05-11 18:37:00,3 Wilson St, New York City,NY,10001 +195760,Apple Airpods Headphones,1,150.0,2019-05-19 11:09:00,314 Meadow St, San Francisco,CA,94016 +195761,Apple Airpods Headphones,1,150.0,2019-05-16 12:39:00,87 Ridge St, Los Angeles,CA,90001 +195762,Macbook Pro Laptop,1,1700.0,2019-05-06 07:11:00,213 Willow St, San Francisco,CA,94016 +195763,Apple Airpods Headphones,1,150.0,2019-05-28 17:48:00,96 Maple St, Atlanta,GA,30301 +195764,34in Ultrawide Monitor,1,379.99,2019-05-01 11:27:00,680 1st St, Seattle,WA,98101 +195765,AA Batteries (4-pack),2,3.84,2019-05-14 10:52:00,173 River St, New York City,NY,10001 +195766,iPhone,1,700.0,2019-05-31 20:30:00,699 11th St, Portland,ME,04101 +195767,Bose SoundSport Headphones,1,99.99,2019-05-17 15:18:00,176 Madison St, New York City,NY,10001 +195768,USB-C Charging Cable,1,11.95,2019-05-27 22:24:00,641 13th St, Boston,MA,02215 +195769,iPhone,1,700.0,2019-05-25 10:36:00,839 Cherry St, San Francisco,CA,94016 +195770,27in FHD Monitor,1,149.99,2019-05-16 14:26:00,708 7th St, New York City,NY,10001 +195771,iPhone,1,700.0,2019-05-30 12:20:00,816 Lake St, New York City,NY,10001 +195771,Wired Headphones,1,11.99,2019-05-30 12:20:00,816 Lake St, New York City,NY,10001 +195772,Wired Headphones,1,11.99,2019-05-16 12:14:00,835 Johnson St, San Francisco,CA,94016 +195773,AA Batteries (4-pack),1,3.84,2019-05-14 14:59:00,646 Dogwood St, Dallas,TX,75001 +195774,27in 4K Gaming Monitor,1,389.99,2019-05-11 09:50:00,374 River St, Boston,MA,02215 +195775,AAA Batteries (4-pack),1,2.99,2019-05-13 22:24:00,160 Walnut St, New York City,NY,10001 +195776,iPhone,1,700.0,2019-05-21 18:32:00,544 Forest St, Seattle,WA,98101 +195777,Google Phone,1,600.0,2019-05-09 01:47:00,332 Johnson St, Austin,TX,73301 +195778,Bose SoundSport Headphones,1,99.99,2019-05-24 06:51:00,495 Park St, Dallas,TX,75001 +195779,34in Ultrawide Monitor,1,379.99,2019-05-02 17:18:00,378 Walnut St, Portland,ME,04101 +195780,AA Batteries (4-pack),2,3.84,2019-05-07 18:23:00,5 Forest St, Boston,MA,02215 +195781,AAA Batteries (4-pack),1,2.99,2019-05-08 21:55:00,399 Maple St, San Francisco,CA,94016 +195782,34in Ultrawide Monitor,1,379.99,2019-05-10 20:42:00,951 Park St, New York City,NY,10001 +195783,USB-C Charging Cable,1,11.95,2019-05-07 12:36:00,37 Hill St, San Francisco,CA,94016 +195784,AA Batteries (4-pack),3,3.84,2019-05-31 19:06:00,488 Hickory St, Portland,OR,97035 +195785,USB-C Charging Cable,1,11.95,2019-05-15 13:36:00,752 Lake St, New York City,NY,10001 +195785,Lightning Charging Cable,1,14.95,2019-05-15 13:36:00,752 Lake St, New York City,NY,10001 +195786,AA Batteries (4-pack),1,3.84,2019-05-21 15:03:00,921 Lake St, Seattle,WA,98101 +195787,27in 4K Gaming Monitor,1,389.99,2019-05-04 11:36:00,230 Ridge St, New York City,NY,10001 +195787,Lightning Charging Cable,1,14.95,2019-05-04 11:36:00,230 Ridge St, New York City,NY,10001 +195788,Flatscreen TV,1,300.0,2019-05-13 11:48:00,834 Madison St, Atlanta,GA,30301 +195789,Wired Headphones,1,11.99,2019-05-28 11:49:00,931 Johnson St, Portland,OR,97035 +195790,Macbook Pro Laptop,1,1700.0,2019-05-22 21:35:00,427 South St, San Francisco,CA,94016 +195791,Lightning Charging Cable,1,14.95,2019-05-02 12:03:00,877 Sunset St, Dallas,TX,75001 +195792,Apple Airpods Headphones,1,150.0,2019-05-25 12:04:00,352 Jackson St, Atlanta,GA,30301 +195793,ThinkPad Laptop,1,999.99,2019-05-18 17:29:00,911 4th St, Seattle,WA,98101 +195794,AA Batteries (4-pack),1,3.84,2019-05-26 00:10:00,145 Cedar St, Atlanta,GA,30301 +195795,20in Monitor,1,109.99,2019-05-11 10:05:00,583 Meadow St, Dallas,TX,75001 +195796,USB-C Charging Cable,2,11.95,2019-05-26 23:30:00,890 2nd St, San Francisco,CA,94016 +195797,Wired Headphones,1,11.99,2019-05-17 13:51:00,907 Pine St, Boston,MA,02215 +195798,AAA Batteries (4-pack),1,2.99,2019-05-09 11:37:00,701 Highland St, Boston,MA,02215 +195799,Apple Airpods Headphones,1,150.0,2019-05-21 22:47:00,484 Main St, Dallas,TX,75001 +195800,AA Batteries (4-pack),1,3.84,2019-05-24 11:32:00,379 Jackson St, New York City,NY,10001 +195801,iPhone,1,700.0,2019-05-24 12:06:00,458 8th St, Los Angeles,CA,90001 +195802,Apple Airpods Headphones,1,150.0,2019-05-23 22:23:00,159 Washington St, Los Angeles,CA,90001 +195803,USB-C Charging Cable,2,11.95,2019-05-16 21:57:00,918 13th St, New York City,NY,10001 +195804,Apple Airpods Headphones,1,150.0,2019-05-14 19:01:00,388 Willow St, Boston,MA,02215 +195805,34in Ultrawide Monitor,1,379.99,2019-05-20 12:38:00,805 Willow St, Austin,TX,73301 +195806,AAA Batteries (4-pack),1,2.99,2019-05-04 23:22:00,729 Hickory St, Portland,ME,04101 +195807,Macbook Pro Laptop,1,1700.0,2019-05-28 20:41:00,639 4th St, Portland,ME,04101 +195808,Lightning Charging Cable,1,14.95,2019-05-17 13:54:00,244 River St, Atlanta,GA,30301 +195809,Flatscreen TV,1,300.0,2019-05-17 08:23:00,375 Maple St, Atlanta,GA,30301 +195810,AA Batteries (4-pack),2,3.84,2019-05-24 19:37:00,498 Madison St, San Francisco,CA,94016 +195811,USB-C Charging Cable,1,11.95,2019-05-21 10:49:00,953 Johnson St, New York City,NY,10001 +195812,USB-C Charging Cable,1,11.95,2019-05-01 22:03:00,724 11th St, New York City,NY,10001 +195813,Wired Headphones,1,11.99,2019-05-11 09:24:00,644 9th St, Boston,MA,02215 +195814,AAA Batteries (4-pack),1,2.99,2019-05-10 00:27:00,466 Jefferson St, San Francisco,CA,94016 +195815,AAA Batteries (4-pack),6,2.99,2019-05-24 14:02:00,483 Wilson St, Atlanta,GA,30301 +195816,Wired Headphones,1,11.99,2019-05-09 15:36:00,302 9th St, Los Angeles,CA,90001 +195817,27in FHD Monitor,1,149.99,2019-05-07 14:32:00,334 Adams St, San Francisco,CA,94016 +195818,Apple Airpods Headphones,1,150.0,2019-05-15 15:19:00,588 Church St, Dallas,TX,75001 +195819,AA Batteries (4-pack),1,3.84,2019-05-15 12:37:00,333 10th St, Dallas,TX,75001 +195820,Flatscreen TV,1,300.0,2019-05-24 02:24:00,442 West St, Los Angeles,CA,90001 +195821,AAA Batteries (4-pack),2,2.99,2019-05-23 10:07:00,112 8th St, Los Angeles,CA,90001 +195822,Apple Airpods Headphones,1,150.0,2019-05-26 10:23:00,705 2nd St, San Francisco,CA,94016 +195823,Apple Airpods Headphones,1,150.0,2019-05-21 06:49:00,431 Cherry St, Austin,TX,73301 +195824,AAA Batteries (4-pack),3,2.99,2019-05-15 19:18:00,82 8th St, Dallas,TX,75001 +195825,27in FHD Monitor,1,149.99,2019-05-20 22:02:00,198 11th St, Boston,MA,02215 +195826,27in FHD Monitor,1,149.99,2019-05-23 01:33:00,104 Cherry St, Los Angeles,CA,90001 +195827,Wired Headphones,1,11.99,2019-05-18 12:50:00,673 West St, Portland,OR,97035 +195828,iPhone,1,700.0,2019-05-23 23:12:00,3 Main St, Los Angeles,CA,90001 +195829,Bose SoundSport Headphones,1,99.99,2019-05-06 20:53:00,551 Jackson St, Boston,MA,02215 +195830,Wired Headphones,1,11.99,2019-05-03 11:34:00,566 Pine St, San Francisco,CA,94016 +195831,AA Batteries (4-pack),1,3.84,2019-05-06 19:14:00,518 5th St, Los Angeles,CA,90001 +195832,iPhone,1,700.0,2019-05-16 23:49:00,973 River St, Boston,MA,02215 +195832,Google Phone,1,600.0,2019-05-16 23:49:00,973 River St, Boston,MA,02215 +195833,Macbook Pro Laptop,1,1700.0,2019-05-27 17:01:00,914 Elm St, Boston,MA,02215 +195834,Apple Airpods Headphones,1,150.0,2019-05-20 10:39:00,282 River St, Portland,OR,97035 +195835,AAA Batteries (4-pack),1,2.99,2019-05-10 08:18:00,505 1st St, San Francisco,CA,94016 +195836,Lightning Charging Cable,1,14.95,2019-05-22 14:25:00,81 Maple St, Dallas,TX,75001 +195837,Wired Headphones,1,11.99,2019-05-29 12:46:00,498 Madison St, Boston,MA,02215 +195838,Wired Headphones,1,11.99,2019-05-13 11:07:00,775 Elm St, Atlanta,GA,30301 +195839,USB-C Charging Cable,1,11.95,2019-05-18 14:41:00,313 Park St, Atlanta,GA,30301 +195840,AAA Batteries (4-pack),1,2.99,2019-05-11 10:19:00,764 Jackson St, Atlanta,GA,30301 +195841,AAA Batteries (4-pack),5,2.99,2019-05-16 10:03:00,321 Church St, Dallas,TX,75001 +195842,AAA Batteries (4-pack),1,2.99,2019-05-29 21:04:00,349 2nd St, Boston,MA,02215 +195843,Bose SoundSport Headphones,1,99.99,2019-05-18 18:32:00,692 North St, Los Angeles,CA,90001 +195844,Lightning Charging Cable,1,14.95,2019-05-25 09:40:00,622 Wilson St, San Francisco,CA,94016 +195845,AA Batteries (4-pack),1,3.84,2019-05-30 13:12:00,857 Sunset St, Atlanta,GA,30301 +195846,Apple Airpods Headphones,1,150.0,2019-05-03 12:13:00,107 Center St, Seattle,WA,98101 +195847,Lightning Charging Cable,1,14.95,2019-05-13 19:35:00,434 7th St, San Francisco,CA,94016 +195848,Google Phone,1,600.0,2019-05-09 14:51:00,394 12th St, Atlanta,GA,30301 +195849,27in 4K Gaming Monitor,1,389.99,2019-05-20 16:56:00,781 Main St, Portland,OR,97035 +195850,Apple Airpods Headphones,1,150.0,2019-05-27 00:26:00,316 Sunset St, Austin,TX,73301 +195851,Wired Headphones,1,11.99,2019-05-19 19:58:00,419 North St, San Francisco,CA,94016 +195852,iPhone,1,700.0,2019-05-13 19:34:00,799 Dogwood St, New York City,NY,10001 +195853,Macbook Pro Laptop,1,1700.0,2019-05-13 17:16:00,887 14th St, New York City,NY,10001 +195854,Wired Headphones,1,11.99,2019-05-18 12:33:00,845 Lincoln St, San Francisco,CA,94016 +195855,USB-C Charging Cable,1,11.95,2019-05-20 07:20:00,534 2nd St, Los Angeles,CA,90001 +195856,iPhone,1,700.0,2019-05-10 18:23:00,649 Main St, Los Angeles,CA,90001 +195857,AAA Batteries (4-pack),1,2.99,2019-05-07 14:49:00,54 Maple St, Los Angeles,CA,90001 +195858,AA Batteries (4-pack),1,3.84,2019-05-29 08:14:00,378 Willow St, San Francisco,CA,94016 +195859,27in 4K Gaming Monitor,1,389.99,2019-05-04 09:58:00,981 10th St, New York City,NY,10001 +195860,Bose SoundSport Headphones,1,99.99,2019-05-31 17:00:00,778 Church St, New York City,NY,10001 +195861,USB-C Charging Cable,1,11.95,2019-05-07 11:38:00,382 Lincoln St, Seattle,WA,98101 +195862,USB-C Charging Cable,1,11.95,2019-05-16 12:18:00,987 1st St, New York City,NY,10001 +195863,iPhone,1,700.0,2019-05-29 11:26:00,560 1st St, Los Angeles,CA,90001 +195864,20in Monitor,1,109.99,2019-05-17 16:35:00,365 Willow St, Seattle,WA,98101 +195865,Wired Headphones,1,11.99,2019-05-21 21:52:00,423 13th St, Atlanta,GA,30301 +195866,Lightning Charging Cable,1,14.95,2019-05-25 10:17:00,755 Lakeview St, Portland,OR,97035 +195867,USB-C Charging Cable,1,11.95,2019-05-22 23:02:00,570 Main St, New York City,NY,10001 +195868,Apple Airpods Headphones,1,150.0,2019-05-10 21:25:00,728 Forest St, Austin,TX,73301 +195869,AAA Batteries (4-pack),1,2.99,2019-06-01 01:06:00,877 Center St, Dallas,TX,75001 +195870,iPhone,1,700.0,2019-05-24 12:06:00,639 Madison St, New York City,NY,10001 +195870,Apple Airpods Headphones,1,150.0,2019-05-24 12:06:00,639 Madison St, New York City,NY,10001 +195871,Lightning Charging Cable,1,14.95,2019-05-28 20:06:00,49 Park St, Austin,TX,73301 +195872,USB-C Charging Cable,1,11.95,2019-05-13 20:02:00,483 Cedar St, New York City,NY,10001 +195873,AAA Batteries (4-pack),2,2.99,2019-05-01 12:48:00,376 Hickory St, San Francisco,CA,94016 +195874,Google Phone,1,600.0,2019-05-20 00:44:00,910 Church St, San Francisco,CA,94016 +195875,USB-C Charging Cable,1,11.95,2019-05-09 19:51:00,142 14th St, Boston,MA,02215 +195876,AA Batteries (4-pack),1,3.84,2019-05-25 10:06:00,872 Ridge St, San Francisco,CA,94016 +195877,Bose SoundSport Headphones,1,99.99,2019-05-27 13:13:00,389 Meadow St, Atlanta,GA,30301 +195877,Wired Headphones,1,11.99,2019-05-27 13:13:00,389 Meadow St, Atlanta,GA,30301 +195878,Lightning Charging Cable,3,14.95,2019-05-22 16:28:00,974 Wilson St, Los Angeles,CA,90001 +195879,AA Batteries (4-pack),2,3.84,2019-05-09 22:04:00,63 Ridge St, New York City,NY,10001 +195880,Lightning Charging Cable,1,14.95,2019-05-20 21:04:00,824 Willow St, Boston,MA,02215 +195881,AA Batteries (4-pack),2,3.84,2019-05-21 13:01:00,640 West St, Los Angeles,CA,90001 +195882,AAA Batteries (4-pack),2,2.99,2019-05-16 20:47:00,492 Elm St, Los Angeles,CA,90001 +195883,Google Phone,1,600.0,2019-05-03 08:45:00,283 West St, San Francisco,CA,94016 +195883,USB-C Charging Cable,1,11.95,2019-05-03 08:45:00,283 West St, San Francisco,CA,94016 +195884,Bose SoundSport Headphones,1,99.99,2019-05-01 17:24:00,704 13th St, San Francisco,CA,94016 +195885,Bose SoundSport Headphones,1,99.99,2019-05-28 09:25:00,620 Meadow St, Portland,OR,97035 +195886,Vareebadd Phone,1,400.0,2019-05-07 22:20:00,85 Lake St, Los Angeles,CA,90001 +195887,AA Batteries (4-pack),1,3.84,2019-05-22 11:29:00,75 11th St, Boston,MA,02215 +195888,27in 4K Gaming Monitor,1,389.99,2019-05-01 18:46:00,462 Cedar St, Dallas,TX,75001 +195889,Lightning Charging Cable,1,14.95,2019-05-04 09:21:00,145 Hill St, New York City,NY,10001 +195890,Bose SoundSport Headphones,1,99.99,2019-05-15 20:45:00,628 Maple St, Austin,TX,73301 +195891,Lightning Charging Cable,1,14.95,2019-05-28 17:01:00,610 Jefferson St, New York City,NY,10001 +195892,Bose SoundSport Headphones,1,99.99,2019-05-29 19:23:00,47 Adams St, Los Angeles,CA,90001 +195893,AA Batteries (4-pack),2,3.84,2019-05-26 12:47:00,845 8th St, Atlanta,GA,30301 +195894,AAA Batteries (4-pack),1,2.99,2019-05-24 12:25:00,561 8th St, Los Angeles,CA,90001 +195895,USB-C Charging Cable,1,11.95,2019-05-17 14:46:00,34 Lakeview St, San Francisco,CA,94016 +195896,Wired Headphones,2,11.99,2019-05-24 13:05:00,118 Hickory St, Boston,MA,02215 +195897,AA Batteries (4-pack),2,3.84,2019-05-11 10:06:00,320 Madison St, Los Angeles,CA,90001 +195898,USB-C Charging Cable,1,11.95,2019-05-11 07:54:00,848 5th St, Boston,MA,02215 +195899,AAA Batteries (4-pack),1,2.99,2019-05-25 09:37:00,2 Dogwood St, San Francisco,CA,94016 +195900,Apple Airpods Headphones,1,150.0,2019-05-02 10:16:00,470 Sunset St, Los Angeles,CA,90001 +195901,AAA Batteries (4-pack),1,2.99,2019-05-01 10:51:00,6 2nd St, Atlanta,GA,30301 +195902,Lightning Charging Cable,1,14.95,2019-05-14 13:01:00,7 Walnut St, New York City,NY,10001 +195903,ThinkPad Laptop,1,999.99,2019-05-13 19:36:00,655 2nd St, San Francisco,CA,94016 +195904,Wired Headphones,1,11.99,2019-05-02 14:07:00,134 Highland St, Dallas,TX,75001 +195905,Macbook Pro Laptop,1,1700.0,2019-05-23 22:43:00,309 Center St, New York City,NY,10001 +195906,AAA Batteries (4-pack),1,2.99,2019-05-05 11:55:00,739 Main St, Los Angeles,CA,90001 +195907,AA Batteries (4-pack),1,3.84,2019-05-11 12:57:00,128 Hill St, Boston,MA,02215 +195908,ThinkPad Laptop,1,999.99,2019-05-25 16:55:00,682 1st St, New York City,NY,10001 +195908,27in 4K Gaming Monitor,1,389.99,2019-05-25 16:55:00,682 1st St, New York City,NY,10001 +195909,AA Batteries (4-pack),1,3.84,2019-05-10 20:29:00,422 Center St, Boston,MA,02215 +195910,27in FHD Monitor,1,149.99,2019-05-12 19:27:00,339 Chestnut St, New York City,NY,10001 +195910,AA Batteries (4-pack),1,3.84,2019-05-12 19:27:00,339 Chestnut St, New York City,NY,10001 +195911,Bose SoundSport Headphones,1,99.99,2019-05-11 09:47:00,845 Lincoln St, Los Angeles,CA,90001 +195912,Apple Airpods Headphones,1,150.0,2019-05-22 12:50:00,78 Washington St, Los Angeles,CA,90001 +195913,27in FHD Monitor,1,149.99,2019-05-23 17:19:00,388 13th St, Los Angeles,CA,90001 +195914,27in 4K Gaming Monitor,1,389.99,2019-05-18 13:58:00,750 14th St, Los Angeles,CA,90001 +195915,Wired Headphones,1,11.99,2019-05-11 12:29:00,60 Jefferson St, Dallas,TX,75001 +195916,AA Batteries (4-pack),1,3.84,2019-05-05 13:17:00,458 Spruce St, San Francisco,CA,94016 +195917,AAA Batteries (4-pack),1,2.99,2019-05-05 14:42:00,349 Willow St, San Francisco,CA,94016 +195918,27in 4K Gaming Monitor,1,389.99,2019-05-08 12:03:00,250 11th St, Boston,MA,02215 +195919,AA Batteries (4-pack),1,3.84,2019-05-10 12:00:00,199 Highland St, Seattle,WA,98101 +195920,Vareebadd Phone,1,400.0,2019-05-02 20:40:00,328 9th St, San Francisco,CA,94016 +195920,USB-C Charging Cable,1,11.95,2019-05-02 20:40:00,328 9th St, San Francisco,CA,94016 +195921,Apple Airpods Headphones,1,150.0,2019-05-16 21:52:00,280 Willow St, Dallas,TX,75001 +195922,AA Batteries (4-pack),1,3.84,2019-05-03 05:15:00,239 Walnut St, Los Angeles,CA,90001 +195923,Wired Headphones,1,11.99,2019-05-15 10:53:00,973 6th St, Los Angeles,CA,90001 +195924,USB-C Charging Cable,1,11.95,2019-05-28 16:16:00,245 Ridge St, Los Angeles,CA,90001 +195925,Bose SoundSport Headphones,1,99.99,2019-05-31 13:03:00,312 Hill St, New York City,NY,10001 +195926,AAA Batteries (4-pack),1,2.99,2019-05-19 16:13:00,297 13th St, Austin,TX,73301 +195927,AAA Batteries (4-pack),1,2.99,2019-05-04 22:15:00,89 Lake St, Atlanta,GA,30301 +195928,Lightning Charging Cable,1,14.95,2019-05-09 16:38:00,117 Walnut St, Boston,MA,02215 +195929,Bose SoundSport Headphones,1,99.99,2019-05-20 07:23:00,878 Lake St, Los Angeles,CA,90001 +195930,USB-C Charging Cable,1,11.95,2019-05-14 15:59:00,997 Walnut St, San Francisco,CA,94016 +195931,34in Ultrawide Monitor,1,379.99,2019-05-07 12:04:00,831 Chestnut St, Portland,OR,97035 +195932,USB-C Charging Cable,1,11.95,2019-05-11 23:42:00,799 7th St, Seattle,WA,98101 +195933,20in Monitor,1,109.99,2019-05-03 07:19:00,229 Park St, Dallas,TX,75001 +195934,USB-C Charging Cable,1,11.95,2019-05-12 18:16:00,250 Lake St, Portland,ME,04101 +195935,Lightning Charging Cable,1,14.95,2019-05-19 10:20:00,584 14th St, Portland,OR,97035 +195936,Bose SoundSport Headphones,1,99.99,2019-05-31 15:18:00,332 Park St, Portland,OR,97035 +195937,AA Batteries (4-pack),1,3.84,2019-05-26 20:42:00,92 8th St, San Francisco,CA,94016 +195938,ThinkPad Laptop,1,999.99,2019-05-03 18:05:00,965 Chestnut St, San Francisco,CA,94016 +195939,34in Ultrawide Monitor,1,379.99,2019-05-27 17:33:00,739 Sunset St, San Francisco,CA,94016 +195940,Bose SoundSport Headphones,1,99.99,2019-05-27 06:38:00,331 6th St, Dallas,TX,75001 +195941,Flatscreen TV,1,300.0,2019-05-31 19:18:00,349 Cedar St, Portland,OR,97035 +195942,ThinkPad Laptop,1,999.99,2019-05-22 12:08:00,554 Wilson St, San Francisco,CA,94016 +195943,AAA Batteries (4-pack),3,2.99,2019-05-16 08:40:00,573 Main St, San Francisco,CA,94016 +195944,AA Batteries (4-pack),2,3.84,2019-05-27 18:43:00,284 North St, San Francisco,CA,94016 +195945,AAA Batteries (4-pack),1,2.99,2019-05-13 14:13:00,223 Hill St, Portland,OR,97035 +195946,Bose SoundSport Headphones,1,99.99,2019-05-05 19:04:00,673 Meadow St, New York City,NY,10001 +195947,Wired Headphones,1,11.99,2019-05-22 19:54:00,824 Willow St, San Francisco,CA,94016 +195948,Lightning Charging Cable,1,14.95,2019-05-18 15:34:00,654 11th St, New York City,NY,10001 +195949,Macbook Pro Laptop,1,1700.0,2019-05-06 11:11:00,300 Madison St, Boston,MA,02215 +195950,Flatscreen TV,1,300.0,2019-05-19 17:24:00,997 Spruce St, Los Angeles,CA,90001 +195951,Google Phone,1,600.0,2019-05-14 08:18:00,629 South St, San Francisco,CA,94016 +195952,AA Batteries (4-pack),1,3.84,2019-05-08 12:03:00,949 Sunset St, Boston,MA,02215 +195953,Lightning Charging Cable,1,14.95,2019-05-27 20:40:00,559 Dogwood St, San Francisco,CA,94016 +195954,Wired Headphones,1,11.99,2019-05-23 11:51:00,945 5th St, Seattle,WA,98101 +195955,Wired Headphones,1,11.99,2019-05-20 21:16:00,20 Sunset St, Los Angeles,CA,90001 +195956,AAA Batteries (4-pack),1,2.99,2019-05-17 19:37:00,246 Lakeview St, New York City,NY,10001 +195957,Apple Airpods Headphones,1,150.0,2019-05-31 15:18:00,972 Meadow St, Portland,OR,97035 +195958,Lightning Charging Cable,1,14.95,2019-05-08 17:45:00,334 13th St, Dallas,TX,75001 +195959,Bose SoundSport Headphones,1,99.99,2019-05-30 08:35:00,126 10th St, Los Angeles,CA,90001 +195960,27in 4K Gaming Monitor,1,389.99,2019-05-24 10:59:00,68 North St, Dallas,TX,75001 +195961,Bose SoundSport Headphones,1,99.99,2019-05-06 22:19:00,369 11th St, Dallas,TX,75001 +195962,20in Monitor,1,109.99,2019-05-14 16:47:00,884 Spruce St, Seattle,WA,98101 +195963,USB-C Charging Cable,1,11.95,2019-05-04 19:45:00,933 6th St, New York City,NY,10001 +195964,ThinkPad Laptop,1,999.99,2019-05-08 19:16:00,614 14th St, New York City,NY,10001 +195965,USB-C Charging Cable,1,11.95,2019-05-08 11:24:00,558 Elm St, Boston,MA,02215 +195966,Apple Airpods Headphones,1,150.0,2019-05-19 09:15:00,322 Jackson St, Boston,MA,02215 +195967,AAA Batteries (4-pack),1,2.99,2019-05-23 17:49:00,695 7th St, Atlanta,GA,30301 +195968,Apple Airpods Headphones,1,150.0,2019-05-11 08:10:00,412 9th St, Seattle,WA,98101 +195969,Lightning Charging Cable,1,14.95,2019-05-24 22:34:00,556 Park St, Boston,MA,02215 +195970,Bose SoundSport Headphones,1,99.99,2019-05-08 22:24:00,476 Jefferson St, Los Angeles,CA,90001 +195971,27in FHD Monitor,1,149.99,2019-05-06 15:52:00,401 Lake St, New York City,NY,10001 +195972,USB-C Charging Cable,1,11.95,2019-05-18 23:52:00,211 Lakeview St, Dallas,TX,75001 +195973,Lightning Charging Cable,1,14.95,2019-05-14 21:04:00,352 6th St, Dallas,TX,75001 +195974,27in 4K Gaming Monitor,1,389.99,2019-05-14 08:44:00,186 13th St, Los Angeles,CA,90001 +195975,Wired Headphones,1,11.99,2019-05-05 11:26:00,136 Pine St, Austin,TX,73301 +195976,Wired Headphones,1,11.99,2019-05-31 19:40:00,517 Lakeview St, Dallas,TX,75001 +195977,Macbook Pro Laptop,1,1700.0,2019-05-30 16:42:00,948 Church St, San Francisco,CA,94016 +195978,AA Batteries (4-pack),1,3.84,2019-05-20 21:41:00,729 Lincoln St, San Francisco,CA,94016 +195979,ThinkPad Laptop,1,999.99,2019-05-30 19:04:00,706 Hill St, San Francisco,CA,94016 +195980,USB-C Charging Cable,1,11.95,2019-05-25 22:17:00,211 Main St, New York City,NY,10001 +195981,iPhone,1,700.0,2019-05-21 15:02:00,451 5th St, Atlanta,GA,30301 +195982,AAA Batteries (4-pack),1,2.99,2019-05-19 03:34:00,429 5th St, Los Angeles,CA,90001 +195983,Bose SoundSport Headphones,1,99.99,2019-05-25 18:32:00,488 Park St, Los Angeles,CA,90001 +195984,ThinkPad Laptop,1,999.99,2019-05-22 19:21:00,646 13th St, Portland,OR,97035 +195985,AA Batteries (4-pack),1,3.84,2019-05-11 15:36:00,452 Meadow St, San Francisco,CA,94016 +195986,Lightning Charging Cable,1,14.95,2019-05-25 17:38:00,431 Maple St, Boston,MA,02215 +195987,Lightning Charging Cable,1,14.95,2019-05-07 18:49:00,656 River St, Boston,MA,02215 +195988,27in 4K Gaming Monitor,1,389.99,2019-05-22 04:26:00,442 Hill St, San Francisco,CA,94016 +195989,AA Batteries (4-pack),1,3.84,2019-05-10 19:34:00,795 Washington St, San Francisco,CA,94016 +195990,Bose SoundSport Headphones,1,99.99,2019-05-07 20:42:00,855 11th St, San Francisco,CA,94016 +195991,AAA Batteries (4-pack),1,2.99,2019-05-21 03:52:00,295 10th St, Seattle,WA,98101 +195992,Wired Headphones,1,11.99,2019-05-27 14:22:00,929 Dogwood St, New York City,NY,10001 +195993,Wired Headphones,1,11.99,2019-05-20 20:22:00,67 4th St, Seattle,WA,98101 +195994,USB-C Charging Cable,1,11.95,2019-05-06 20:37:00,267 Meadow St, San Francisco,CA,94016 +195995,Bose SoundSport Headphones,1,99.99,2019-05-07 06:33:00,256 Madison St, San Francisco,CA,94016 +195996,27in 4K Gaming Monitor,1,389.99,2019-05-13 15:38:00,531 14th St, Dallas,TX,75001 +195997,ThinkPad Laptop,1,999.99,2019-05-27 15:58:00,676 Chestnut St, New York City,NY,10001 +195998,AAA Batteries (4-pack),1,2.99,2019-05-03 11:40:00,196 Center St, Atlanta,GA,30301 +195999,iPhone,1,700.0,2019-05-11 16:39:00,297 Main St, Atlanta,GA,30301 +196000,AA Batteries (4-pack),1,3.84,2019-05-04 09:42:00,873 Johnson St, San Francisco,CA,94016 +196001,AAA Batteries (4-pack),2,2.99,2019-05-23 21:51:00,577 Walnut St, Los Angeles,CA,90001 +196002,AA Batteries (4-pack),1,3.84,2019-05-07 19:55:00,517 Cherry St, Boston,MA,02215 +196003,iPhone,1,700.0,2019-05-03 14:29:00,33 13th St, San Francisco,CA,94016 +196004,USB-C Charging Cable,1,11.95,2019-05-31 22:41:00,408 6th St, San Francisco,CA,94016 +196005,USB-C Charging Cable,1,11.95,2019-05-23 18:53:00,828 West St, Boston,MA,02215 +196006,27in 4K Gaming Monitor,1,389.99,2019-05-15 10:06:00,111 West St, Los Angeles,CA,90001 +196007,Bose SoundSport Headphones,1,99.99,2019-05-29 14:49:00,156 South St, New York City,NY,10001 +196008,ThinkPad Laptop,1,999.99,2019-05-22 22:33:00,795 13th St, Austin,TX,73301 +196009,20in Monitor,1,109.99,2019-05-25 12:07:00,337 Jackson St, Los Angeles,CA,90001 +196010,Wired Headphones,1,11.99,2019-05-26 20:02:00,718 Lincoln St, San Francisco,CA,94016 +196011,USB-C Charging Cable,1,11.95,2019-05-10 13:15:00,868 Madison St, Los Angeles,CA,90001 +196012,Lightning Charging Cable,2,14.95,2019-05-10 20:39:00,772 5th St, San Francisco,CA,94016 +196013,34in Ultrawide Monitor,1,379.99,2019-05-29 14:39:00,186 Jefferson St, New York City,NY,10001 +196014,iPhone,1,700.0,2019-05-16 11:49:00,872 Wilson St, Atlanta,GA,30301 +196014,Lightning Charging Cable,1,14.95,2019-05-16 11:49:00,872 Wilson St, Atlanta,GA,30301 +196014,Apple Airpods Headphones,1,150.0,2019-05-16 11:49:00,872 Wilson St, Atlanta,GA,30301 +196015,USB-C Charging Cable,1,11.95,2019-05-17 18:35:00,93 7th St, San Francisco,CA,94016 +196016,27in FHD Monitor,1,149.99,2019-05-04 08:43:00,492 11th St, San Francisco,CA,94016 +196017,27in FHD Monitor,1,149.99,2019-05-05 12:16:00,239 12th St, New York City,NY,10001 +196018,Apple Airpods Headphones,1,150.0,2019-05-18 19:05:00,591 9th St, New York City,NY,10001 +196019,AA Batteries (4-pack),1,3.84,2019-05-19 22:09:00,546 Washington St, Boston,MA,02215 +196020,Vareebadd Phone,1,400.0,2019-05-26 16:25:00,543 Washington St, Boston,MA,02215 +196021,AAA Batteries (4-pack),1,2.99,2019-05-04 16:55:00,174 Chestnut St, Seattle,WA,98101 +196022,Bose SoundSport Headphones,1,99.99,2019-05-29 10:25:00,330 South St, Boston,MA,02215 +196023,Wired Headphones,1,11.99,2019-05-15 10:02:00,668 1st St, Dallas,TX,75001 +196024,iPhone,1,700.0,2019-05-07 21:15:00,489 14th St, Seattle,WA,98101 +196024,Lightning Charging Cable,1,14.95,2019-05-07 21:15:00,489 14th St, Seattle,WA,98101 +196025,27in FHD Monitor,1,149.99,2019-05-13 11:01:00,253 Sunset St, New York City,NY,10001 +196026,34in Ultrawide Monitor,1,379.99,2019-05-06 18:04:00,158 11th St, Portland,OR,97035 +196027,Bose SoundSport Headphones,1,99.99,2019-05-07 08:35:00,796 Sunset St, New York City,NY,10001 +196028,Apple Airpods Headphones,1,150.0,2019-05-21 11:37:00,254 Wilson St, Austin,TX,73301 +196029,Flatscreen TV,1,300.0,2019-05-09 16:20:00,415 Jackson St, San Francisco,CA,94016 +196030,Wired Headphones,1,11.99,2019-05-02 13:55:00,181 South St, Portland,OR,97035 +196031,AAA Batteries (4-pack),1,2.99,2019-05-28 08:14:00,689 5th St, Dallas,TX,75001 +196032,AAA Batteries (4-pack),2,2.99,2019-05-08 10:04:00,391 14th St, Atlanta,GA,30301 +196033,AAA Batteries (4-pack),1,2.99,2019-05-19 14:36:00,269 Ridge St, Seattle,WA,98101 +196034,USB-C Charging Cable,1,11.95,2019-05-15 12:58:00,570 5th St, San Francisco,CA,94016 +196035,AA Batteries (4-pack),1,3.84,2019-05-27 12:12:00,987 Adams St, Los Angeles,CA,90001 +196036,USB-C Charging Cable,1,11.95,2019-05-03 20:48:00,83 Lincoln St, Los Angeles,CA,90001 +196037,Flatscreen TV,1,300.0,2019-05-18 21:25:00,689 Sunset St, New York City,NY,10001 +196038,34in Ultrawide Monitor,1,379.99,2019-05-18 13:32:00,469 Willow St, Atlanta,GA,30301 +196039,Wired Headphones,1,11.99,2019-05-24 20:46:00,685 Adams St, Portland,OR,97035 +196040,USB-C Charging Cable,1,11.95,2019-05-24 21:07:00,701 Hickory St, San Francisco,CA,94016 +196041,AA Batteries (4-pack),1,3.84,2019-05-19 11:11:00,370 Jefferson St, San Francisco,CA,94016 +196042,27in FHD Monitor,1,149.99,2019-05-03 22:50:00,214 South St, Los Angeles,CA,90001 +196043,Apple Airpods Headphones,1,150.0,2019-05-18 20:08:00,720 Center St, San Francisco,CA,94016 +196044,AAA Batteries (4-pack),1,2.99,2019-05-18 10:22:00,541 Church St, San Francisco,CA,94016 +196045,20in Monitor,1,109.99,2019-05-02 07:18:00,617 7th St, San Francisco,CA,94016 +196046,Lightning Charging Cable,1,14.95,2019-05-03 15:24:00,505 Chestnut St, Boston,MA,02215 +196047,Apple Airpods Headphones,1,150.0,2019-05-30 23:47:00,612 Madison St, Los Angeles,CA,90001 +196048,Flatscreen TV,1,300.0,2019-05-12 13:47:00,518 Wilson St, Seattle,WA,98101 +196049,AA Batteries (4-pack),1,3.84,2019-05-02 20:33:00,514 9th St, New York City,NY,10001 +196050,Bose SoundSport Headphones,1,99.99,2019-05-24 22:57:00,650 9th St, Dallas,TX,75001 +196051,34in Ultrawide Monitor,1,379.99,2019-05-15 23:17:00,267 8th St, Portland,OR,97035 +196052,Bose SoundSport Headphones,1,99.99,2019-05-21 16:28:00,288 8th St, Seattle,WA,98101 +196053,Google Phone,1,600.0,2019-05-25 19:23:00,639 5th St, San Francisco,CA,94016 +196054,34in Ultrawide Monitor,1,379.99,2019-05-30 18:48:00,920 Meadow St, Dallas,TX,75001 +196055,Bose SoundSport Headphones,1,99.99,2019-05-08 00:05:00,587 Dogwood St, Los Angeles,CA,90001 +196056,Wired Headphones,1,11.99,2019-05-20 16:15:00,679 10th St, Austin,TX,73301 +196057,AAA Batteries (4-pack),1,2.99,2019-05-16 16:18:00,719 Jackson St, New York City,NY,10001 +196058,Bose SoundSport Headphones,1,99.99,2019-05-21 18:32:00,24 Elm St, Los Angeles,CA,90001 +196059,Apple Airpods Headphones,1,150.0,2019-05-10 16:45:00,237 Main St, Boston,MA,02215 +196060,Apple Airpods Headphones,1,150.0,2019-05-02 18:29:00,396 Jefferson St, Los Angeles,CA,90001 +196061,Google Phone,1,600.0,2019-05-19 19:56:00,238 Hickory St, Atlanta,GA,30301 +196061,USB-C Charging Cable,1,11.95,2019-05-19 19:56:00,238 Hickory St, Atlanta,GA,30301 +196062,Lightning Charging Cable,1,14.95,2019-05-21 10:42:00,360 6th St, Boston,MA,02215 +196063,USB-C Charging Cable,1,11.95,2019-05-14 00:29:00,235 Dogwood St, San Francisco,CA,94016 +196064,Wired Headphones,1,11.99,2019-05-09 12:04:00,98 Park St, New York City,NY,10001 +196065,Bose SoundSport Headphones,1,99.99,2019-05-16 12:50:00,241 Ridge St, Atlanta,GA,30301 +196066,27in FHD Monitor,1,149.99,2019-05-12 21:24:00,486 8th St, Seattle,WA,98101 +196067,Vareebadd Phone,1,400.0,2019-05-23 21:03:00,309 Washington St, Los Angeles,CA,90001 +196068,Lightning Charging Cable,1,14.95,2019-05-27 20:54:00,234 West St, Austin,TX,73301 +196069,Apple Airpods Headphones,1,150.0,2019-05-09 14:23:00,771 Jackson St, San Francisco,CA,94016 +196070,USB-C Charging Cable,1,11.95,2019-05-06 10:30:00,221 1st St, Atlanta,GA,30301 +196071,Apple Airpods Headphones,1,150.0,2019-05-07 09:16:00,313 Johnson St, Seattle,WA,98101 +196072,Lightning Charging Cable,1,14.95,2019-06-01 00:18:00,594 Willow St, San Francisco,CA,94016 +196073,Bose SoundSport Headphones,1,99.99,2019-05-20 21:21:00,78 Highland St, San Francisco,CA,94016 +196074,AA Batteries (4-pack),2,3.84,2019-05-07 12:16:00,4 Church St, Seattle,WA,98101 +196075,34in Ultrawide Monitor,1,379.99,2019-05-05 12:04:00,639 Willow St, Los Angeles,CA,90001 +196076,USB-C Charging Cable,1,11.95,2019-05-07 22:22:00,733 Cedar St, San Francisco,CA,94016 +196077,Lightning Charging Cable,1,14.95,2019-05-26 10:15:00,808 Jefferson St, Los Angeles,CA,90001 +196078,AA Batteries (4-pack),1,3.84,2019-05-01 06:54:00,422 Madison St, Los Angeles,CA,90001 +196079,27in 4K Gaming Monitor,1,389.99,2019-05-12 10:56:00,84 Spruce St, Los Angeles,CA,90001 +196080,USB-C Charging Cable,1,11.95,2019-05-22 14:26:00,463 Wilson St, San Francisco,CA,94016 +196081,AAA Batteries (4-pack),1,2.99,2019-05-28 16:41:00,701 1st St, New York City,NY,10001 +196082,iPhone,1,700.0,2019-05-06 16:58:00,888 Spruce St, Los Angeles,CA,90001 +196083,iPhone,1,700.0,2019-05-19 20:38:00,428 4th St, Portland,OR,97035 +196084,Flatscreen TV,1,300.0,2019-05-17 09:51:00,100 South St, San Francisco,CA,94016 +196085,USB-C Charging Cable,1,11.95,2019-05-25 10:10:00,920 South St, Austin,TX,73301 +196086,AAA Batteries (4-pack),1,2.99,2019-05-14 14:02:00,855 13th St, San Francisco,CA,94016 +196087,iPhone,1,700.0,2019-05-12 20:41:00,449 Johnson St, San Francisco,CA,94016 +196088,27in 4K Gaming Monitor,1,389.99,2019-05-08 17:41:00,739 Washington St, Los Angeles,CA,90001 +196089,Lightning Charging Cable,1,14.95,2019-05-02 20:34:00,991 Lakeview St, Dallas,TX,75001 +196090,iPhone,1,700.0,2019-05-15 19:41:00,518 Park St, San Francisco,CA,94016 +196090,Apple Airpods Headphones,1,150.0,2019-05-15 19:41:00,518 Park St, San Francisco,CA,94016 +196091,27in 4K Gaming Monitor,1,389.99,2019-05-14 14:38:00,802 Main St, Boston,MA,02215 +196092,27in FHD Monitor,1,149.99,2019-05-23 17:45:00,980 Jefferson St, Los Angeles,CA,90001 +196093,USB-C Charging Cable,1,11.95,2019-05-05 15:37:00,488 North St, Boston,MA,02215 +196094,AAA Batteries (4-pack),1,2.99,2019-05-04 16:30:00,839 Adams St, Seattle,WA,98101 +196095,Bose SoundSport Headphones,1,99.99,2019-05-03 14:19:00,690 Chestnut St, San Francisco,CA,94016 +196096,Lightning Charging Cable,1,14.95,2019-05-30 23:16:00,255 Pine St, San Francisco,CA,94016 +196097,USB-C Charging Cable,1,11.95,2019-05-23 18:46:00,53 12th St, Atlanta,GA,30301 +196098,27in 4K Gaming Monitor,1,389.99,2019-05-02 08:10:00,675 Church St, Boston,MA,02215 +196099,AA Batteries (4-pack),1,3.84,2019-05-19 12:14:00,833 13th St, Los Angeles,CA,90001 +196100,iPhone,1,700.0,2019-05-21 13:06:00,69 Main St, Atlanta,GA,30301 +196101,Bose SoundSport Headphones,1,99.99,2019-05-11 22:07:00,848 2nd St, Austin,TX,73301 +196102,iPhone,1,700.0,2019-05-06 19:30:00,432 Lakeview St, Atlanta,GA,30301 +196103,AAA Batteries (4-pack),2,2.99,2019-05-22 12:27:00,724 Chestnut St, Seattle,WA,98101 +196104,27in FHD Monitor,1,149.99,2019-05-02 00:05:00,333 12th St, New York City,NY,10001 +196105,AAA Batteries (4-pack),1,2.99,2019-05-16 05:29:00,64 Main St, New York City,NY,10001 +196106,Flatscreen TV,1,300.0,2019-05-03 04:57:00,67 Madison St, Seattle,WA,98101 +196107,Lightning Charging Cable,1,14.95,2019-05-01 09:36:00,539 Maple St, San Francisco,CA,94016 +196108,34in Ultrawide Monitor,1,379.99,2019-05-30 21:00:00,638 8th St, New York City,NY,10001 +196109,27in 4K Gaming Monitor,1,389.99,2019-05-25 18:19:00,759 11th St, Dallas,TX,75001 +196110,Wired Headphones,1,11.99,2019-05-23 12:10:00,454 West St, Los Angeles,CA,90001 +196111,Wired Headphones,1,11.99,2019-05-21 16:13:00,333 Johnson St, Los Angeles,CA,90001 +196112,27in FHD Monitor,1,149.99,2019-05-16 23:21:00,816 Forest St, New York City,NY,10001 +196113,27in FHD Monitor,1,149.99,2019-05-19 21:43:00,868 North St, San Francisco,CA,94016 +196114,AAA Batteries (4-pack),1,2.99,2019-05-30 23:36:00,172 Forest St, Dallas,TX,75001 +196115,Wired Headphones,1,11.99,2019-05-28 12:20:00,903 South St, New York City,NY,10001 +196116,Bose SoundSport Headphones,1,99.99,2019-05-16 10:47:00,879 Jackson St, Austin,TX,73301 +196117,Lightning Charging Cable,1,14.95,2019-05-24 20:22:00,805 Lakeview St, Los Angeles,CA,90001 +196118,USB-C Charging Cable,1,11.95,2019-05-24 17:36:00,504 Johnson St, Portland,OR,97035 +196119,Wired Headphones,1,11.99,2019-05-17 09:21:00,101 Ridge St, New York City,NY,10001 +196120,AA Batteries (4-pack),2,3.84,2019-05-28 06:37:00,296 Wilson St, San Francisco,CA,94016 +196121,AAA Batteries (4-pack),1,2.99,2019-05-13 23:11:00,740 7th St, Atlanta,GA,30301 +196122,USB-C Charging Cable,1,11.95,2019-05-01 14:05:00,677 13th St, San Francisco,CA,94016 +196123,Vareebadd Phone,1,400.0,2019-05-12 19:14:00,898 Willow St, San Francisco,CA,94016 +196123,USB-C Charging Cable,1,11.95,2019-05-12 19:14:00,898 Willow St, San Francisco,CA,94016 +196124,Apple Airpods Headphones,1,150.0,2019-05-09 19:53:00,19 South St, San Francisco,CA,94016 +196125,USB-C Charging Cable,2,11.95,2019-05-17 16:50:00,935 Lakeview St, New York City,NY,10001 +196126,Macbook Pro Laptop,1,1700.0,2019-05-08 16:51:00,510 Cedar St, Los Angeles,CA,90001 +196127,27in 4K Gaming Monitor,1,389.99,2019-05-19 11:30:00,931 Washington St, San Francisco,CA,94016 +196128,Google Phone,1,600.0,2019-05-06 18:37:00,848 2nd St, San Francisco,CA,94016 +196128,USB-C Charging Cable,1,11.95,2019-05-06 18:37:00,848 2nd St, San Francisco,CA,94016 +196129,iPhone,1,700.0,2019-05-09 15:02:00,401 14th St, San Francisco,CA,94016 +196130,AA Batteries (4-pack),1,3.84,2019-05-30 22:07:00,927 Lake St, Dallas,TX,75001 +196131,USB-C Charging Cable,1,11.95,2019-05-05 14:34:00,635 Johnson St, Los Angeles,CA,90001 +196132,Lightning Charging Cable,1,14.95,2019-06-01 02:48:00,998 10th St, San Francisco,CA,94016 +196133,AAA Batteries (4-pack),1,2.99,2019-05-07 21:20:00,5 13th St, Boston,MA,02215 +196134,Wired Headphones,1,11.99,2019-05-23 16:07:00,737 Hickory St, Los Angeles,CA,90001 +196135,Apple Airpods Headphones,1,150.0,2019-05-16 19:53:00,263 Pine St, Boston,MA,02215 +196136,iPhone,1,700.0,2019-05-23 20:50:00,748 1st St, Los Angeles,CA,90001 +196136,Lightning Charging Cable,2,14.95,2019-05-23 20:50:00,748 1st St, Los Angeles,CA,90001 +196137,Apple Airpods Headphones,1,150.0,2019-05-30 15:52:00,285 Madison St, Los Angeles,CA,90001 +196138,AAA Batteries (4-pack),1,2.99,2019-05-05 17:33:00,167 Highland St, New York City,NY,10001 +196139,AAA Batteries (4-pack),1,2.99,2019-05-06 14:56:00,633 Hickory St, Austin,TX,73301 +196140,Lightning Charging Cable,1,14.95,2019-05-19 20:44:00,954 10th St, New York City,NY,10001 +196141,USB-C Charging Cable,1,11.95,2019-05-28 07:09:00,158 River St, Portland,OR,97035 +196142,Bose SoundSport Headphones,1,99.99,2019-05-05 12:32:00,180 2nd St, New York City,NY,10001 +196143,Flatscreen TV,1,300.0,2019-05-11 20:01:00,134 Jefferson St, New York City,NY,10001 +196144,Lightning Charging Cable,1,14.95,2019-05-01 19:08:00,385 6th St, Boston,MA,02215 +196145,Lightning Charging Cable,2,14.95,2019-05-12 18:29:00,966 Center St, Portland,OR,97035 +196146,20in Monitor,1,109.99,2019-05-05 17:26:00,7 Main St, San Francisco,CA,94016 +196147,AAA Batteries (4-pack),1,2.99,2019-05-08 21:21:00,719 Pine St, Boston,MA,02215 +196148,USB-C Charging Cable,2,11.95,2019-05-27 03:02:00,752 Church St, San Francisco,CA,94016 +196149,USB-C Charging Cable,1,11.95,2019-05-19 16:15:00,154 Lakeview St, Atlanta,GA,30301 +196150,USB-C Charging Cable,1,11.95,2019-05-04 15:17:00,595 Spruce St, Dallas,TX,75001 +196151,LG Dryer,1,600.0,2019-05-24 11:43:00,2 5th St, Los Angeles,CA,90001 +196152,Bose SoundSport Headphones,1,99.99,2019-05-16 16:11:00,240 5th St, Dallas,TX,75001 +196153,USB-C Charging Cable,1,11.95,2019-05-06 19:48:00,889 Dogwood St, Dallas,TX,75001 +196154,AA Batteries (4-pack),1,3.84,2019-05-11 21:16:00,956 1st St, San Francisco,CA,94016 +196155,USB-C Charging Cable,1,11.95,2019-05-14 09:50:00,986 Main St, Los Angeles,CA,90001 +196156,AAA Batteries (4-pack),1,2.99,2019-05-19 09:27:00,102 Church St, Seattle,WA,98101 +196157,27in FHD Monitor,1,149.99,2019-05-12 22:22:00,901 Pine St, New York City,NY,10001 +196158,Apple Airpods Headphones,1,150.0,2019-05-21 22:45:00,784 5th St, Boston,MA,02215 +196159,AAA Batteries (4-pack),1,2.99,2019-05-10 07:59:00,529 Hill St, San Francisco,CA,94016 +196160,AA Batteries (4-pack),1,3.84,2019-05-19 13:27:00,700 Church St, Los Angeles,CA,90001 +196161,Apple Airpods Headphones,1,150.0,2019-05-31 08:05:00,403 River St, Los Angeles,CA,90001 +196162,Bose SoundSport Headphones,1,99.99,2019-05-05 10:26:00,283 4th St, San Francisco,CA,94016 +196163,AA Batteries (4-pack),2,3.84,2019-05-29 11:49:00,912 Madison St, Seattle,WA,98101 +196164,Lightning Charging Cable,1,14.95,2019-05-22 11:34:00,8 Madison St, Boston,MA,02215 +196165,Google Phone,1,600.0,2019-05-07 23:19:00,107 Highland St, San Francisco,CA,94016 +196165,USB-C Charging Cable,1,11.95,2019-05-07 23:19:00,107 Highland St, San Francisco,CA,94016 +196166,Lightning Charging Cable,1,14.95,2019-05-19 16:50:00,326 Hickory St, Boston,MA,02215 +196167,USB-C Charging Cable,1,11.95,2019-05-20 18:00:00,536 Willow St, San Francisco,CA,94016 +196168,USB-C Charging Cable,1,11.95,2019-05-27 16:32:00,870 Lakeview St, New York City,NY,10001 +196169,USB-C Charging Cable,1,11.95,2019-05-16 18:49:00,734 14th St, Boston,MA,02215 +196170,USB-C Charging Cable,1,11.95,2019-05-23 20:21:00,667 Jefferson St, Atlanta,GA,30301 +196171,Lightning Charging Cable,1,14.95,2019-05-06 21:02:00,179 Main St, Atlanta,GA,30301 +196172,AAA Batteries (4-pack),2,2.99,2019-05-26 15:05:00,508 River St, Austin,TX,73301 +196173,AA Batteries (4-pack),1,3.84,2019-05-21 15:31:00,426 Hill St, Dallas,TX,75001 +196174,34in Ultrawide Monitor,1,379.99,2019-05-29 17:01:00,758 5th St, Los Angeles,CA,90001 +196175,Wired Headphones,1,11.99,2019-05-02 08:06:00,176 Meadow St, San Francisco,CA,94016 +196176,AAA Batteries (4-pack),1,2.99,2019-05-23 23:51:00,680 2nd St, Portland,OR,97035 +196177,Lightning Charging Cable,1,14.95,2019-05-16 13:23:00,882 Forest St, New York City,NY,10001 +196178,Wired Headphones,1,11.99,2019-05-13 12:08:00,765 Walnut St, Dallas,TX,75001 +196179,AA Batteries (4-pack),1,3.84,2019-05-03 18:10:00,373 Highland St, Austin,TX,73301 +196180,AA Batteries (4-pack),1,3.84,2019-05-23 00:30:00,283 11th St, Los Angeles,CA,90001 +196181,AA Batteries (4-pack),1,3.84,2019-05-26 10:14:00,400 4th St, Los Angeles,CA,90001 +196182,Apple Airpods Headphones,1,150.0,2019-05-21 20:02:00,645 Forest St, New York City,NY,10001 +196183,Apple Airpods Headphones,1,150.0,2019-05-04 23:45:00,155 Lincoln St, Portland,OR,97035 +196184,USB-C Charging Cable,1,11.95,2019-05-27 14:29:00,895 7th St, Seattle,WA,98101 +196185,ThinkPad Laptop,1,999.99,2019-05-05 10:43:00,43 Cherry St, San Francisco,CA,94016 +196186,27in 4K Gaming Monitor,1,389.99,2019-05-30 19:35:00,607 Highland St, New York City,NY,10001 +196187,AAA Batteries (4-pack),1,2.99,2019-05-13 08:24:00,215 12th St, Los Angeles,CA,90001 +196188,USB-C Charging Cable,1,11.95,2019-05-23 19:24:00,445 Elm St, San Francisco,CA,94016 +196189,LG Washing Machine,1,600.0,2019-05-30 13:48:00,894 10th St, Los Angeles,CA,90001 +196190,AAA Batteries (4-pack),2,2.99,2019-05-26 10:46:00,167 Elm St, Austin,TX,73301 +196191,AA Batteries (4-pack),2,3.84,2019-05-26 10:58:00,335 Lakeview St, Los Angeles,CA,90001 +196192,iPhone,1,700.0,2019-05-09 16:24:00,240 Main St, New York City,NY,10001 +196193,USB-C Charging Cable,1,11.95,2019-05-08 20:40:00,698 Church St, Boston,MA,02215 +196194,27in 4K Gaming Monitor,1,389.99,2019-05-21 13:54:00,605 Adams St, New York City,NY,10001 +196195,AA Batteries (4-pack),1,3.84,2019-05-25 15:00:00,573 Elm St, San Francisco,CA,94016 +196196,20in Monitor,1,109.99,2019-05-28 22:49:00,614 Lake St, San Francisco,CA,94016 +196197,Lightning Charging Cable,1,14.95,2019-05-03 18:47:00,657 Center St, Boston,MA,02215 +196198,Apple Airpods Headphones,1,150.0,2019-05-02 18:35:00,916 10th St, San Francisco,CA,94016 +196199,AA Batteries (4-pack),1,3.84,2019-05-29 16:46:00,822 Forest St, San Francisco,CA,94016 +196200,Apple Airpods Headphones,1,150.0,2019-05-13 22:57:00,848 Maple St, Los Angeles,CA,90001 +196201,USB-C Charging Cable,1,11.95,2019-05-26 18:46:00,52 Adams St, San Francisco,CA,94016 +196202,27in FHD Monitor,1,149.99,2019-05-27 17:02:00,744 8th St, Atlanta,GA,30301 +196203,Google Phone,1,600.0,2019-05-22 11:09:00,542 Jefferson St, New York City,NY,10001 +196204,Wired Headphones,1,11.99,2019-05-31 11:25:00,18 13th St, New York City,NY,10001 +196205,Lightning Charging Cable,1,14.95,2019-05-22 19:41:00,532 Center St, Atlanta,GA,30301 +196206,AA Batteries (4-pack),1,3.84,2019-05-09 10:36:00,393 Maple St, Boston,MA,02215 +196207,Bose SoundSport Headphones,1,99.99,2019-05-21 23:55:00,241 Johnson St, Los Angeles,CA,90001 +196208,Lightning Charging Cable,1,14.95,2019-05-20 19:19:00,563 Main St, Atlanta,GA,30301 +196209,Bose SoundSport Headphones,1,99.99,2019-05-17 13:19:00,537 Spruce St, Dallas,TX,75001 +196210,iPhone,1,700.0,2019-05-07 18:45:00,634 6th St, Los Angeles,CA,90001 +196211,Apple Airpods Headphones,1,150.0,2019-05-18 07:30:00,247 6th St, Austin,TX,73301 +196212,AA Batteries (4-pack),1,3.84,2019-05-12 15:52:00,804 Sunset St, San Francisco,CA,94016 +196213,20in Monitor,1,109.99,2019-05-17 10:01:00,98 9th St, New York City,NY,10001 +196214,AAA Batteries (4-pack),1,2.99,2019-05-10 22:11:00,996 14th St, San Francisco,CA,94016 +196215,AA Batteries (4-pack),1,3.84,2019-05-09 15:07:00,778 River St, Los Angeles,CA,90001 +196216,USB-C Charging Cable,1,11.95,2019-05-20 15:40:00,874 Main St, San Francisco,CA,94016 +196217,AA Batteries (4-pack),1,3.84,2019-05-28 19:23:00,420 Johnson St, Atlanta,GA,30301 +196218,USB-C Charging Cable,1,11.95,2019-05-19 13:05:00,681 Lake St, San Francisco,CA,94016 +196219,AAA Batteries (4-pack),2,2.99,2019-05-14 10:46:00,564 Chestnut St, Los Angeles,CA,90001 +196220,Apple Airpods Headphones,1,150.0,2019-05-03 13:00:00,654 Chestnut St, Boston,MA,02215 +196221,Bose SoundSport Headphones,1,99.99,2019-05-23 12:34:00,735 Madison St, Dallas,TX,75001 +196222,Lightning Charging Cable,1,14.95,2019-05-08 09:06:00,135 Johnson St, San Francisco,CA,94016 +196223,Wired Headphones,1,11.99,2019-05-16 11:56:00,546 7th St, San Francisco,CA,94016 +196224,AA Batteries (4-pack),1,3.84,2019-05-25 22:35:00,606 Washington St, New York City,NY,10001 +196225,USB-C Charging Cable,1,11.95,2019-05-21 18:30:00,210 10th St, Los Angeles,CA,90001 +196226,34in Ultrawide Monitor,1,379.99,2019-05-21 18:37:00,179 Church St, Portland,OR,97035 +196227,Lightning Charging Cable,2,14.95,2019-05-23 09:40:00,373 11th St, Atlanta,GA,30301 +196228,iPhone,1,700.0,2019-05-19 09:02:00,370 13th St, New York City,NY,10001 +196229,AA Batteries (4-pack),1,3.84,2019-05-21 23:46:00,531 Meadow St, San Francisco,CA,94016 +196230,27in 4K Gaming Monitor,1,389.99,2019-05-02 12:29:00,937 Chestnut St, Seattle,WA,98101 +196231,Lightning Charging Cable,1,14.95,2019-05-17 13:14:00,89 Hill St, Dallas,TX,75001 +196232,Wired Headphones,1,11.99,2019-05-25 17:11:00,330 Church St, Dallas,TX,75001 +196233,AA Batteries (4-pack),1,3.84,2019-05-13 17:17:00,79 10th St, San Francisco,CA,94016 +196234,Bose SoundSport Headphones,1,99.99,2019-05-12 08:50:00,442 Church St, Boston,MA,02215 +196235,Wired Headphones,1,11.99,2019-05-18 08:30:00,841 1st St, Boston,MA,02215 +196236,AA Batteries (4-pack),2,3.84,2019-05-13 14:13:00,59 Ridge St, Boston,MA,02215 +196237,Wired Headphones,1,11.99,2019-05-14 13:39:00,97 Washington St, Los Angeles,CA,90001 +196238,AA Batteries (4-pack),1,3.84,2019-05-05 17:01:00,356 11th St, San Francisco,CA,94016 +196239,Wired Headphones,1,11.99,2019-05-05 18:28:00,112 Johnson St, Seattle,WA,98101 +196240,Lightning Charging Cable,1,14.95,2019-05-02 13:47:00,597 Wilson St, Boston,MA,02215 +196241,AAA Batteries (4-pack),3,2.99,2019-05-20 18:04:00,399 North St, Boston,MA,02215 +196242,AAA Batteries (4-pack),1,2.99,2019-05-16 18:49:00,308 Washington St, San Francisco,CA,94016 +196243,Lightning Charging Cable,1,14.95,2019-05-10 12:30:00,137 8th St, Los Angeles,CA,90001 +196244,AAA Batteries (4-pack),1,2.99,2019-05-06 22:57:00,843 Forest St, Dallas,TX,75001 +196245,AA Batteries (4-pack),1,3.84,2019-05-01 12:54:00,247 8th St, San Francisco,CA,94016 +196246,USB-C Charging Cable,1,11.95,2019-05-11 20:38:00,243 10th St, San Francisco,CA,94016 +196247,Wired Headphones,1,11.99,2019-05-20 21:08:00,336 Wilson St, Los Angeles,CA,90001 +196248,Lightning Charging Cable,1,14.95,2019-05-25 10:44:00,365 Sunset St, San Francisco,CA,94016 +196249,Lightning Charging Cable,1,14.95,2019-05-04 19:18:00,489 14th St, San Francisco,CA,94016 +196250,Wired Headphones,1,11.99,2019-05-26 14:10:00,370 2nd St, San Francisco,CA,94016 +196251,Apple Airpods Headphones,1,150.0,2019-05-25 22:01:00,723 Johnson St, Dallas,TX,75001 +196252,USB-C Charging Cable,1,11.95,2019-05-25 23:21:00,562 South St, Atlanta,GA,30301 +196253,AAA Batteries (4-pack),1,2.99,2019-05-01 13:16:00,730 1st St, San Francisco,CA,94016 +196254,Google Phone,1,600.0,2019-05-28 09:21:00,575 8th St, Los Angeles,CA,90001 +196255,Bose SoundSport Headphones,1,99.99,2019-05-20 10:49:00,544 Dogwood St, San Francisco,CA,94016 +196256,AAA Batteries (4-pack),3,2.99,2019-05-17 17:40:00,108 11th St, San Francisco,CA,94016 +196257,27in FHD Monitor,1,149.99,2019-05-14 14:02:00,773 Cedar St, San Francisco,CA,94016 +196258,AAA Batteries (4-pack),1,2.99,2019-05-12 17:19:00,940 12th St, Boston,MA,02215 +196259,34in Ultrawide Monitor,1,379.99,2019-05-29 17:40:00,425 Highland St, Seattle,WA,98101 +196260,AA Batteries (4-pack),2,3.84,2019-05-29 15:51:00,422 8th St, San Francisco,CA,94016 +196260,Wired Headphones,1,11.99,2019-05-29 15:51:00,422 8th St, San Francisco,CA,94016 +196261,AAA Batteries (4-pack),1,2.99,2019-05-01 11:21:00,597 9th St, San Francisco,CA,94016 +196262,Apple Airpods Headphones,1,150.0,2019-05-04 16:22:00,482 Lincoln St, New York City,NY,10001 +196263,AAA Batteries (4-pack),1,2.99,2019-05-07 10:59:00,805 Walnut St, Atlanta,GA,30301 +196264,USB-C Charging Cable,1,11.95,2019-05-21 19:41:00,923 Main St, Los Angeles,CA,90001 +196265,AAA Batteries (4-pack),2,2.99,2019-05-11 21:27:00,402 Wilson St, Los Angeles,CA,90001 +196266,USB-C Charging Cable,1,11.95,2019-05-07 19:32:00,325 Adams St, Atlanta,GA,30301 +196267,Bose SoundSport Headphones,1,99.99,2019-05-08 22:15:00,663 4th St, Los Angeles,CA,90001 +196268,AAA Batteries (4-pack),2,2.99,2019-05-11 02:17:00,743 12th St, San Francisco,CA,94016 +196269,USB-C Charging Cable,1,11.95,2019-05-30 12:47:00,93 Hill St, New York City,NY,10001 +196270,34in Ultrawide Monitor,1,379.99,2019-05-20 14:45:00,925 Hill St, New York City,NY,10001 +196271,iPhone,1,700.0,2019-05-09 21:24:00,619 Hill St, Portland,OR,97035 +196272,Apple Airpods Headphones,1,150.0,2019-05-14 19:43:00,524 Sunset St, Atlanta,GA,30301 +196273,20in Monitor,1,109.99,2019-05-11 10:39:00,563 Jefferson St, San Francisco,CA,94016 +196274,20in Monitor,1,109.99,2019-05-01 09:37:00,784 South St, San Francisco,CA,94016 +196275,AA Batteries (4-pack),1,3.84,2019-05-14 09:31:00,865 Hill St, Boston,MA,02215 +196276,34in Ultrawide Monitor,1,379.99,2019-05-16 00:28:00,171 Cherry St, Austin,TX,73301 +196277,Lightning Charging Cable,1,14.95,2019-05-13 20:36:00,866 13th St, Boston,MA,02215 +196278,AAA Batteries (4-pack),1,2.99,2019-05-04 12:24:00,201 10th St, San Francisco,CA,94016 +196279,Bose SoundSport Headphones,1,99.99,2019-05-03 11:43:00,210 Jackson St, Portland,ME,04101 +196280,AAA Batteries (4-pack),2,2.99,2019-05-19 15:57:00,781 14th St, San Francisco,CA,94016 +196281,USB-C Charging Cable,1,11.95,2019-05-10 23:21:00,227 Church St, Boston,MA,02215 +196282,AAA Batteries (4-pack),1,2.99,2019-05-19 17:52:00,533 Ridge St, Atlanta,GA,30301 +196283,Wired Headphones,1,11.99,2019-05-31 11:07:00,731 Hill St, Boston,MA,02215 +196284,Lightning Charging Cable,1,14.95,2019-05-15 11:02:00,828 South St, Los Angeles,CA,90001 +196285,Lightning Charging Cable,1,14.95,2019-05-17 19:31:00,122 Washington St, Boston,MA,02215 +196286,AA Batteries (4-pack),1,3.84,2019-05-15 09:49:00,365 Chestnut St, San Francisco,CA,94016 +196287,iPhone,1,700.0,2019-05-17 09:50:00,827 8th St, San Francisco,CA,94016 +196288,27in 4K Gaming Monitor,1,389.99,2019-05-09 07:28:00,318 12th St, Atlanta,GA,30301 +196289,AAA Batteries (4-pack),2,2.99,2019-05-07 11:10:00,297 Dogwood St, Dallas,TX,75001 +196290,USB-C Charging Cable,1,11.95,2019-05-03 19:24:00,169 5th St, Atlanta,GA,30301 +196291,Wired Headphones,1,11.99,2019-05-12 16:11:00,444 North St, San Francisco,CA,94016 +196292,iPhone,1,700.0,2019-05-07 10:08:00,530 5th St, Boston,MA,02215 +196293,AA Batteries (4-pack),1,3.84,2019-05-15 14:21:00,984 12th St, Los Angeles,CA,90001 +196294,USB-C Charging Cable,2,11.95,2019-05-12 18:28:00,658 Spruce St, San Francisco,CA,94016 +196295,iPhone,1,700.0,2019-05-02 10:14:00,485 Center St, San Francisco,CA,94016 +196296,27in FHD Monitor,1,149.99,2019-05-29 12:29:00,731 Spruce St, Boston,MA,02215 +196297,AA Batteries (4-pack),1,3.84,2019-05-24 22:04:00,86 Highland St, San Francisco,CA,94016 +196298,Bose SoundSport Headphones,1,99.99,2019-05-16 21:04:00,380 Main St, Boston,MA,02215 +196299,AAA Batteries (4-pack),1,2.99,2019-05-04 08:02:00,191 Lakeview St, Seattle,WA,98101 +196300,iPhone,1,700.0,2019-05-01 19:27:00,131 10th St, San Francisco,CA,94016 +196301,Lightning Charging Cable,1,14.95,2019-05-21 12:00:00,595 Center St, San Francisco,CA,94016 +196302,AA Batteries (4-pack),1,3.84,2019-05-21 12:03:00,732 Washington St, San Francisco,CA,94016 +196303,Wired Headphones,1,11.99,2019-05-20 13:24:00,902 Wilson St, New York City,NY,10001 +196304,Wired Headphones,1,11.99,2019-05-15 15:10:00,480 10th St, Los Angeles,CA,90001 +196305,Wired Headphones,2,11.99,2019-05-31 16:04:00,569 Center St, New York City,NY,10001 +196306,AAA Batteries (4-pack),3,2.99,2019-05-05 01:10:00,1 Adams St, San Francisco,CA,94016 +196307,AA Batteries (4-pack),1,3.84,2019-05-24 11:06:00,583 Hill St, San Francisco,CA,94016 +196308,AA Batteries (4-pack),1,3.84,2019-05-10 09:18:00,356 South St, Portland,OR,97035 +196309,34in Ultrawide Monitor,1,379.99,2019-05-23 19:54:00,831 Lincoln St, San Francisco,CA,94016 +196310,AA Batteries (4-pack),1,3.84,2019-05-01 19:48:00,51 Hickory St, San Francisco,CA,94016 +196311,Google Phone,1,600.0,2019-05-25 13:15:00,413 13th St, Portland,OR,97035 +196311,Wired Headphones,1,11.99,2019-05-25 13:15:00,413 13th St, Portland,OR,97035 +196312,Lightning Charging Cable,1,14.95,2019-05-04 14:08:00,290 Walnut St, Boston,MA,02215 +196313,Apple Airpods Headphones,1,150.0,2019-05-18 10:01:00,299 Lincoln St, Portland,OR,97035 +196314,Google Phone,1,600.0,2019-05-13 10:40:00,512 Lakeview St, Los Angeles,CA,90001 +196315,AA Batteries (4-pack),1,3.84,2019-05-06 17:52:00,895 South St, Austin,TX,73301 +196316,AAA Batteries (4-pack),1,2.99,2019-05-31 11:07:00,54 Johnson St, Los Angeles,CA,90001 +196317,Wired Headphones,1,11.99,2019-05-23 21:06:00,663 Highland St, Austin,TX,73301 +196318,Google Phone,1,600.0,2019-05-17 14:36:00,729 Dogwood St, Seattle,WA,98101 +196319,AA Batteries (4-pack),2,3.84,2019-05-04 12:13:00,926 Cedar St, Portland,ME,04101 +196320,Lightning Charging Cable,1,14.95,2019-05-26 18:34:00,432 Johnson St, Seattle,WA,98101 +196321,Apple Airpods Headphones,1,150.0,2019-05-01 23:30:00,370 Jefferson St, New York City,NY,10001 +196322,AA Batteries (4-pack),1,3.84,2019-05-05 09:33:00,210 Jefferson St, San Francisco,CA,94016 +196323,Bose SoundSport Headphones,1,99.99,2019-05-06 09:16:00,544 Main St, Los Angeles,CA,90001 +196324,USB-C Charging Cable,1,11.95,2019-05-24 01:40:00,96 2nd St, San Francisco,CA,94016 +196325,Apple Airpods Headphones,1,150.0,2019-05-19 00:30:00,606 Sunset St, Atlanta,GA,30301 +196326,AAA Batteries (4-pack),1,2.99,2019-05-01 07:14:00,369 Main St, San Francisco,CA,94016 +196327,Google Phone,1,600.0,2019-05-13 14:08:00,793 River St, Portland,OR,97035 +196327,Wired Headphones,1,11.99,2019-05-13 14:08:00,793 River St, Portland,OR,97035 +196328,27in FHD Monitor,1,149.99,2019-05-15 10:46:00,706 Chestnut St, New York City,NY,10001 +196329,Bose SoundSport Headphones,1,99.99,2019-05-17 21:52:00,680 10th St, Seattle,WA,98101 +196330,27in FHD Monitor,1,149.99,2019-05-12 19:49:00,277 River St, Atlanta,GA,30301 +196331,AA Batteries (4-pack),1,3.84,2019-05-17 15:22:00,862 14th St, San Francisco,CA,94016 +196332,iPhone,1,700.0,2019-05-11 10:04:00,653 Cherry St, Austin,TX,73301 +196333,AA Batteries (4-pack),2,3.84,2019-05-16 20:09:00,692 Adams St, Austin,TX,73301 +196334,AAA Batteries (4-pack),1,2.99,2019-05-24 20:46:00,58 Forest St, San Francisco,CA,94016 +196335,Apple Airpods Headphones,1,150.0,2019-05-16 09:10:00,264 Elm St, Seattle,WA,98101 +196336,AAA Batteries (4-pack),1,2.99,2019-05-30 19:25:00,753 6th St, San Francisco,CA,94016 +196337,Wired Headphones,1,11.99,2019-05-20 19:54:00,15 2nd St, New York City,NY,10001 +196338,AA Batteries (4-pack),1,3.84,2019-05-30 11:19:00,732 Meadow St, Austin,TX,73301 +196339,Bose SoundSport Headphones,1,99.99,2019-05-01 18:00:00,159 12th St, Los Angeles,CA,90001 +196340,AAA Batteries (4-pack),2,2.99,2019-05-22 21:45:00,795 Hickory St, Atlanta,GA,30301 +196341,USB-C Charging Cable,1,11.95,2019-05-09 12:55:00,136 Meadow St, San Francisco,CA,94016 +196342,Wired Headphones,1,11.99,2019-05-06 15:32:00,242 13th St, Boston,MA,02215 +196343,Wired Headphones,1,11.99,2019-05-10 19:07:00,165 Sunset St, Atlanta,GA,30301 +196344,Wired Headphones,1,11.99,2019-05-21 22:11:00,369 River St, Dallas,TX,75001 +196345,AA Batteries (4-pack),1,3.84,2019-05-12 17:28:00,319 11th St, Boston,MA,02215 +196346,AA Batteries (4-pack),1,3.84,2019-05-15 21:12:00,861 Forest St, San Francisco,CA,94016 +196347,USB-C Charging Cable,1,11.95,2019-05-12 18:51:00,732 Cedar St, Seattle,WA,98101 +196348,34in Ultrawide Monitor,1,379.99,2019-05-25 11:31:00,825 Elm St, San Francisco,CA,94016 +196349,27in FHD Monitor,1,149.99,2019-05-01 13:16:00,172 Pine St, New York City,NY,10001 +196350,AAA Batteries (4-pack),1,2.99,2019-05-17 11:09:00,234 Hill St, San Francisco,CA,94016 +196351,USB-C Charging Cable,1,11.95,2019-05-17 16:40:00,766 Washington St, Portland,OR,97035 +196352,USB-C Charging Cable,1,11.95,2019-05-02 14:51:00,162 Cedar St, Atlanta,GA,30301 +196353,AAA Batteries (4-pack),1,2.99,2019-05-03 09:11:00,725 Hickory St, San Francisco,CA,94016 +196354,Wired Headphones,1,11.99,2019-05-17 12:47:00,690 Johnson St, New York City,NY,10001 +196355,20in Monitor,1,109.99,2019-05-29 20:31:00,719 Adams St, Atlanta,GA,30301 +196356,Apple Airpods Headphones,1,150.0,2019-05-14 07:55:00,432 Park St, Los Angeles,CA,90001 +196357,Apple Airpods Headphones,1,150.0,2019-05-08 12:56:00,987 10th St, Dallas,TX,75001 +196358,Wired Headphones,1,11.99,2019-05-23 18:42:00,165 5th St, San Francisco,CA,94016 +196359,Wired Headphones,2,11.99,2019-05-01 10:19:00,336 5th St, Dallas,TX,75001 +196360,Wired Headphones,1,11.99,2019-05-22 12:18:00,984 Lincoln St, Los Angeles,CA,90001 +196361,AAA Batteries (4-pack),2,2.99,2019-05-17 19:44:00,60 Madison St, New York City,NY,10001 +196362,Apple Airpods Headphones,1,150.0,2019-05-29 23:54:00,386 Center St, San Francisco,CA,94016 +196363,USB-C Charging Cable,2,11.95,2019-05-26 13:46:00,350 Highland St, San Francisco,CA,94016 +196364,Wired Headphones,1,11.99,2019-05-29 01:24:00,534 Jefferson St, San Francisco,CA,94016 +196365,Lightning Charging Cable,1,14.95,2019-05-15 20:57:00,725 Walnut St, Boston,MA,02215 +196366,USB-C Charging Cable,1,11.95,2019-05-13 16:50:00,266 Ridge St, Boston,MA,02215 +196367,USB-C Charging Cable,1,11.95,2019-05-22 12:32:00,655 Chestnut St, Portland,OR,97035 +196368,Google Phone,1,600.0,2019-05-17 16:14:00,446 Park St, Atlanta,GA,30301 +196368,Bose SoundSport Headphones,1,99.99,2019-05-17 16:14:00,446 Park St, Atlanta,GA,30301 +196369,Lightning Charging Cable,1,14.95,2019-05-07 11:33:00,971 Adams St, Atlanta,GA,30301 +196370,USB-C Charging Cable,1,11.95,2019-05-09 08:29:00,285 2nd St, Dallas,TX,75001 +196371,Apple Airpods Headphones,1,150.0,2019-05-07 07:49:00,653 Highland St, Boston,MA,02215 +196372,Apple Airpods Headphones,1,150.0,2019-05-10 13:03:00,514 Highland St, Boston,MA,02215 +196373,Apple Airpods Headphones,1,150.0,2019-05-17 10:30:00,597 14th St, San Francisco,CA,94016 +196374,AA Batteries (4-pack),1,3.84,2019-05-29 10:58:00,386 Jefferson St, Portland,ME,04101 +196375,LG Washing Machine,1,600.0,2019-05-28 07:12:00,400 Ridge St, Los Angeles,CA,90001 +196376,Lightning Charging Cable,1,14.95,2019-05-21 11:52:00,908 4th St, Boston,MA,02215 +196377,Flatscreen TV,1,300.0,2019-05-30 20:27:00,50 Walnut St, New York City,NY,10001 +196378,AAA Batteries (4-pack),4,2.99,2019-05-20 21:01:00,671 Hill St, San Francisco,CA,94016 +196379,27in FHD Monitor,1,149.99,2019-05-19 12:36:00,687 Maple St, New York City,NY,10001 +196380,Wired Headphones,1,11.99,2019-05-02 15:05:00,268 Hickory St, Los Angeles,CA,90001 +196381,AA Batteries (4-pack),1,3.84,2019-05-27 14:09:00,44 Chestnut St, Atlanta,GA,30301 +196382,AA Batteries (4-pack),1,3.84,2019-05-30 22:05:00,594 Lake St, Boston,MA,02215 +196383,27in FHD Monitor,1,149.99,2019-05-23 15:11:00,338 13th St, San Francisco,CA,94016 +196384,AA Batteries (4-pack),1,3.84,2019-05-05 14:43:00,770 7th St, San Francisco,CA,94016 +196385,Lightning Charging Cable,1,14.95,2019-05-25 07:21:00,868 11th St, Austin,TX,73301 +196386,USB-C Charging Cable,1,11.95,2019-05-26 12:31:00,692 Adams St, Dallas,TX,75001 +196386,34in Ultrawide Monitor,1,379.99,2019-05-26 12:31:00,692 Adams St, Dallas,TX,75001 +196387,27in FHD Monitor,1,149.99,2019-05-19 18:07:00,951 1st St, San Francisco,CA,94016 +196388,27in FHD Monitor,1,149.99,2019-05-25 11:27:00,831 Hickory St, San Francisco,CA,94016 +196389,AAA Batteries (4-pack),3,2.99,2019-05-01 20:52:00,759 North St, Dallas,TX,75001 +196390,Lightning Charging Cable,1,14.95,2019-05-31 12:01:00,874 Main St, Seattle,WA,98101 +196391,27in FHD Monitor,1,149.99,2019-05-25 16:57:00,457 Spruce St, San Francisco,CA,94016 +196392,Lightning Charging Cable,3,14.95,2019-05-07 21:52:00,411 Park St, San Francisco,CA,94016 +196393,27in FHD Monitor,1,149.99,2019-05-25 16:21:00,965 Park St, San Francisco,CA,94016 +196394,Bose SoundSport Headphones,1,99.99,2019-05-22 14:20:00,980 Maple St, Los Angeles,CA,90001 +196395,Google Phone,1,600.0,2019-05-24 16:36:00,391 Ridge St, Los Angeles,CA,90001 +196395,USB-C Charging Cable,1,11.95,2019-05-24 16:36:00,391 Ridge St, Los Angeles,CA,90001 +196396,Google Phone,1,600.0,2019-05-27 14:22:00,233 Chestnut St, Dallas,TX,75001 +196397,Apple Airpods Headphones,1,150.0,2019-05-27 10:31:00,563 12th St, Portland,ME,04101 +196398,Lightning Charging Cable,1,14.95,2019-05-22 18:45:00,449 Forest St, San Francisco,CA,94016 +196399,27in FHD Monitor,1,149.99,2019-05-12 14:41:00,324 6th St, Seattle,WA,98101 +196400,USB-C Charging Cable,1,11.95,2019-05-07 06:01:00,757 Chestnut St, Boston,MA,02215 +196401,Apple Airpods Headphones,1,150.0,2019-05-18 09:52:00,85 7th St, New York City,NY,10001 +196402,Lightning Charging Cable,1,14.95,2019-05-28 14:12:00,240 2nd St, New York City,NY,10001 +196403,Apple Airpods Headphones,1,150.0,2019-05-04 12:03:00,590 Main St, San Francisco,CA,94016 +196404,USB-C Charging Cable,1,11.95,2019-05-15 10:17:00,370 Center St, Boston,MA,02215 +196405,USB-C Charging Cable,1,11.95,2019-05-27 00:31:00,44 Park St, New York City,NY,10001 +196406,USB-C Charging Cable,1,11.95,2019-05-10 09:21:00,681 4th St, Los Angeles,CA,90001 +196407,Lightning Charging Cable,1,14.95,2019-05-02 10:58:00,837 Cedar St, San Francisco,CA,94016 +196408,Wired Headphones,1,11.99,2019-05-09 21:59:00,711 Wilson St, San Francisco,CA,94016 +196409,Apple Airpods Headphones,1,150.0,2019-05-16 13:00:00,110 Wilson St, Boston,MA,02215 +196410,Wired Headphones,2,11.99,2019-05-07 09:48:00,680 Pine St, San Francisco,CA,94016 +196411,Lightning Charging Cable,1,14.95,2019-05-24 11:37:00,623 Sunset St, Boston,MA,02215 +196412,Apple Airpods Headphones,1,150.0,2019-05-16 21:05:00,212 Pine St, San Francisco,CA,94016 +196413,AAA Batteries (4-pack),3,2.99,2019-05-22 18:03:00,339 River St, Dallas,TX,75001 +196414,AA Batteries (4-pack),1,3.84,2019-05-27 22:41:00,506 Elm St, Seattle,WA,98101 +196415,Lightning Charging Cable,1,14.95,2019-05-01 14:49:00,32 Ridge St, Austin,TX,73301 +196416,Wired Headphones,1,11.99,2019-05-31 09:16:00,115 River St, Seattle,WA,98101 +196417,USB-C Charging Cable,1,11.95,2019-05-13 16:26:00,322 Lake St, San Francisco,CA,94016 +196418,AAA Batteries (4-pack),1,2.99,2019-05-13 09:53:00,152 Willow St, New York City,NY,10001 +196419,27in 4K Gaming Monitor,1,389.99,2019-05-01 08:09:00,628 Chestnut St, Seattle,WA,98101 +196420,AAA Batteries (4-pack),1,2.99,2019-05-09 17:45:00,10 Jackson St, Los Angeles,CA,90001 +196421,USB-C Charging Cable,1,11.95,2019-05-27 14:05:00,25 Willow St, Los Angeles,CA,90001 +196422,Apple Airpods Headphones,1,150.0,2019-05-10 19:11:00,541 7th St, Portland,OR,97035 +196423,AAA Batteries (4-pack),1,2.99,2019-05-11 18:38:00,135 10th St, Los Angeles,CA,90001 +196424,Lightning Charging Cable,1,14.95,2019-05-21 12:09:00,780 Cedar St, San Francisco,CA,94016 +196425,Bose SoundSport Headphones,1,99.99,2019-05-04 17:31:00,501 Hickory St, Los Angeles,CA,90001 +196426,Lightning Charging Cable,1,14.95,2019-05-04 15:04:00,630 Hill St, San Francisco,CA,94016 +196427,USB-C Charging Cable,1,11.95,2019-05-23 14:01:00,703 Willow St, San Francisco,CA,94016 +196428,USB-C Charging Cable,1,11.95,2019-05-24 16:06:00,318 Highland St, New York City,NY,10001 +196429,AAA Batteries (4-pack),1,2.99,2019-05-30 17:30:00,966 11th St, New York City,NY,10001 +196430,Apple Airpods Headphones,1,150.0,2019-05-02 10:53:00,903 12th St, Los Angeles,CA,90001 +196431,Apple Airpods Headphones,1,150.0,2019-05-05 14:09:00,317 West St, Portland,OR,97035 +196432,AAA Batteries (4-pack),1,2.99,2019-05-25 10:50:00,150 Hill St, Atlanta,GA,30301 +196433,Lightning Charging Cable,1,14.95,2019-05-31 22:26:00,80 10th St, Austin,TX,73301 +196434,Lightning Charging Cable,1,14.95,2019-05-30 10:32:00,967 13th St, Dallas,TX,75001 +196435,27in FHD Monitor,1,149.99,2019-05-28 10:39:00,710 Wilson St, San Francisco,CA,94016 +196436,AA Batteries (4-pack),3,3.84,2019-05-13 16:47:00,58 West St, New York City,NY,10001 +196437,Wired Headphones,1,11.99,2019-05-25 18:31:00,587 Spruce St, San Francisco,CA,94016 +196438,Lightning Charging Cable,2,14.95,2019-05-11 18:13:00,515 Spruce St, New York City,NY,10001 +196439,AA Batteries (4-pack),1,3.84,2019-05-28 10:59:00,572 14th St, San Francisco,CA,94016 +196440,Google Phone,1,600.0,2019-05-29 19:08:00,691 Wilson St, San Francisco,CA,94016 +196441,AAA Batteries (4-pack),1,2.99,2019-05-01 19:18:00,4 Spruce St, Los Angeles,CA,90001 +196442,USB-C Charging Cable,1,11.95,2019-05-27 18:36:00,240 13th St, Los Angeles,CA,90001 +196443,Apple Airpods Headphones,1,150.0,2019-05-15 14:50:00,847 11th St, San Francisco,CA,94016 +196444,AA Batteries (4-pack),2,3.84,2019-05-13 17:23:00,977 Ridge St, San Francisco,CA,94016 +196445,Lightning Charging Cable,1,14.95,2019-05-11 10:45:00,92 Meadow St, Atlanta,GA,30301 +196446,Wired Headphones,1,11.99,2019-05-26 20:00:00,758 Walnut St, Dallas,TX,75001 +196447,iPhone,1,700.0,2019-05-12 13:24:00,786 Cedar St, Seattle,WA,98101 +196447,Lightning Charging Cable,1,14.95,2019-05-12 13:24:00,786 Cedar St, Seattle,WA,98101 +196448,USB-C Charging Cable,1,11.95,2019-05-17 10:07:00,978 Pine St, Los Angeles,CA,90001 +196449,Bose SoundSport Headphones,1,99.99,2019-05-29 14:47:00,64 Forest St, San Francisco,CA,94016 +196450,Macbook Pro Laptop,1,1700.0,2019-05-26 12:05:00,318 Main St, Los Angeles,CA,90001 +196451,Apple Airpods Headphones,1,150.0,2019-05-29 09:44:00,790 Jackson St, New York City,NY,10001 +196452,USB-C Charging Cable,1,11.95,2019-05-12 14:24:00,651 8th St, San Francisco,CA,94016 +196453,AAA Batteries (4-pack),1,2.99,2019-05-27 18:18:00,398 Maple St, Atlanta,GA,30301 +196454,Lightning Charging Cable,1,14.95,2019-05-16 15:13:00,812 Willow St, Atlanta,GA,30301 +196455,Macbook Pro Laptop,1,1700.0,2019-05-26 16:48:00,566 Maple St, Los Angeles,CA,90001 +196456,Lightning Charging Cable,1,14.95,2019-05-28 02:49:00,576 Cherry St, San Francisco,CA,94016 +196457,Bose SoundSport Headphones,1,99.99,2019-05-18 10:30:00,597 8th St, Seattle,WA,98101 +196458,Apple Airpods Headphones,1,150.0,2019-05-30 19:28:00,780 Hill St, San Francisco,CA,94016 +196459,Wired Headphones,1,11.99,2019-05-30 18:06:00,118 North St, Boston,MA,02215 +196460,iPhone,1,700.0,2019-05-23 07:45:00,97 Sunset St, Dallas,TX,75001 +196461,iPhone,1,700.0,2019-05-19 21:26:00,297 8th St, New York City,NY,10001 +196462,Wired Headphones,1,11.99,2019-05-04 21:47:00,965 North St, New York City,NY,10001 +196463,Lightning Charging Cable,1,14.95,2019-05-15 14:21:00,854 Adams St, Portland,OR,97035 +196464,Wired Headphones,1,11.99,2019-05-05 19:46:00,787 Adams St, Dallas,TX,75001 +196465,Flatscreen TV,1,300.0,2019-05-30 20:20:00,467 Willow St, New York City,NY,10001 +196466,Lightning Charging Cable,1,14.95,2019-05-31 06:25:00,241 Spruce St, San Francisco,CA,94016 +196467,ThinkPad Laptop,1,999.99,2019-05-30 01:23:00,520 Cherry St, New York City,NY,10001 +196468,AAA Batteries (4-pack),1,2.99,2019-05-28 21:11:00,709 Main St, Boston,MA,02215 +196469,USB-C Charging Cable,1,11.95,2019-05-10 21:04:00,845 South St, Seattle,WA,98101 +196469,Wired Headphones,2,11.99,2019-05-10 21:04:00,845 South St, Seattle,WA,98101 +196470,AA Batteries (4-pack),2,3.84,2019-05-02 16:40:00,260 7th St, Los Angeles,CA,90001 +196471,27in FHD Monitor,1,149.99,2019-05-04 18:07:00,550 9th St, San Francisco,CA,94016 +196472,27in 4K Gaming Monitor,1,389.99,2019-05-06 10:25:00,31 Willow St, San Francisco,CA,94016 +196473,Lightning Charging Cable,1,14.95,2019-05-28 22:33:00,962 Hickory St, San Francisco,CA,94016 +196474,AAA Batteries (4-pack),1,2.99,2019-05-18 00:29:00,948 Cherry St, Los Angeles,CA,90001 +196475,Wired Headphones,1,11.99,2019-05-11 21:30:00,574 Lake St, Boston,MA,02215 +196476,AA Batteries (4-pack),2,3.84,2019-05-05 21:02:00,265 4th St, San Francisco,CA,94016 +196477,ThinkPad Laptop,1,999.99,2019-05-10 14:16:00,144 8th St, New York City,NY,10001 +196478,Wired Headphones,3,11.99,2019-05-09 09:13:00,193 Chestnut St, Dallas,TX,75001 +196478,ThinkPad Laptop,1,999.99,2019-05-09 09:13:00,193 Chestnut St, Dallas,TX,75001 +196479,Bose SoundSport Headphones,1,99.99,2019-05-24 18:10:00,868 Hickory St, Los Angeles,CA,90001 +196480,Vareebadd Phone,1,400.0,2019-05-28 19:23:00,196 Forest St, Boston,MA,02215 +196481,20in Monitor,1,109.99,2019-05-21 23:59:00,779 1st St, Los Angeles,CA,90001 +196482,Lightning Charging Cable,1,14.95,2019-05-11 15:47:00,117 South St, Boston,MA,02215 +196483,ThinkPad Laptop,1,999.99,2019-05-09 08:46:00,671 Main St, Dallas,TX,75001 +196484,USB-C Charging Cable,1,11.95,2019-05-14 14:19:00,961 Lakeview St, Atlanta,GA,30301 +196485,AAA Batteries (4-pack),1,2.99,2019-05-04 12:45:00,175 13th St, New York City,NY,10001 +196486,ThinkPad Laptop,1,999.99,2019-05-31 14:07:00,865 Jefferson St, San Francisco,CA,94016 +196487,Lightning Charging Cable,1,14.95,2019-05-31 10:29:00,168 Washington St, Seattle,WA,98101 +196488,Lightning Charging Cable,1,14.95,2019-05-06 18:20:00,168 Adams St, Portland,OR,97035 +196489,Wired Headphones,1,11.99,2019-05-28 23:11:00,932 Hill St, San Francisco,CA,94016 +196490,Wired Headphones,1,11.99,2019-05-29 14:48:00,302 Johnson St, Dallas,TX,75001 +196491,AA Batteries (4-pack),1,3.84,2019-05-30 15:32:00,53 Sunset St, Seattle,WA,98101 +196492,AAA Batteries (4-pack),4,2.99,2019-05-17 12:12:00,508 West St, Los Angeles,CA,90001 +196493,Lightning Charging Cable,1,14.95,2019-05-01 18:10:00,848 9th St, New York City,NY,10001 +196493,AAA Batteries (4-pack),1,2.99,2019-05-01 18:10:00,848 9th St, New York City,NY,10001 +196494,Lightning Charging Cable,1,14.95,2019-05-24 22:07:00,346 Lincoln St, New York City,NY,10001 +196495,Bose SoundSport Headphones,1,99.99,2019-05-26 17:38:00,769 Hill St, Los Angeles,CA,90001 +196496,Flatscreen TV,1,300.0,2019-05-20 18:43:00,369 11th St, Portland,OR,97035 +196497,Wired Headphones,1,11.99,2019-05-27 13:30:00,971 West St, Austin,TX,73301 +196498,Wired Headphones,1,11.99,2019-05-28 15:19:00,30 6th St, New York City,NY,10001 +196499,AA Batteries (4-pack),1,3.84,2019-05-24 08:23:00,556 Forest St, San Francisco,CA,94016 +196500,Macbook Pro Laptop,1,1700.0,2019-05-10 18:33:00,871 Church St, Portland,OR,97035 +196501,Lightning Charging Cable,1,14.95,2019-05-01 13:25:00,310 Lake St, San Francisco,CA,94016 +196502,AAA Batteries (4-pack),1,2.99,2019-05-28 16:18:00,968 Pine St, Atlanta,GA,30301 +196503,Wired Headphones,1,11.99,2019-05-28 13:28:00,366 Jackson St, San Francisco,CA,94016 +196504,20in Monitor,1,109.99,2019-05-22 19:33:00,539 Spruce St, Boston,MA,02215 +196505,USB-C Charging Cable,1,11.95,2019-05-09 18:30:00,353 Pine St, Seattle,WA,98101 +196506,34in Ultrawide Monitor,1,379.99,2019-05-14 11:03:00,129 Sunset St, Austin,TX,73301 +196507,27in 4K Gaming Monitor,1,389.99,2019-05-01 18:05:00,562 Jackson St, San Francisco,CA,94016 +196508,LG Dryer,1,600.0,2019-05-08 15:39:00,35 Meadow St, San Francisco,CA,94016 +196509,LG Dryer,1,600.0,2019-05-07 14:19:00,343 1st St, Dallas,TX,75001 +196510,Wired Headphones,1,11.99,2019-05-11 17:38:00,889 14th St, New York City,NY,10001 +196511,Lightning Charging Cable,1,14.95,2019-05-20 13:38:00,706 Lincoln St, Los Angeles,CA,90001 +196512,27in 4K Gaming Monitor,1,389.99,2019-05-24 13:21:00,548 2nd St, San Francisco,CA,94016 +196513,Apple Airpods Headphones,1,150.0,2019-05-24 11:39:00,746 12th St, New York City,NY,10001 +196514,AA Batteries (4-pack),1,3.84,2019-05-23 18:11:00,363 Sunset St, Seattle,WA,98101 +196515,Bose SoundSport Headphones,1,99.99,2019-05-17 13:04:00,582 7th St, San Francisco,CA,94016 +196516,27in FHD Monitor,1,149.99,2019-05-18 15:41:00,925 4th St, New York City,NY,10001 +196517,AA Batteries (4-pack),1,3.84,2019-05-23 10:38:00,288 North St, San Francisco,CA,94016 +196518,Macbook Pro Laptop,1,1700.0,2019-05-31 09:47:00,299 Ridge St, San Francisco,CA,94016 +196519,Apple Airpods Headphones,1,150.0,2019-05-14 11:25:00,246 7th St, New York City,NY,10001 +196520,AAA Batteries (4-pack),1,2.99,2019-05-02 18:43:00,91 13th St, Seattle,WA,98101 +196521,Bose SoundSport Headphones,1,99.99,2019-05-31 19:29:00,211 Hill St, San Francisco,CA,94016 +196522,Bose SoundSport Headphones,1,99.99,2019-05-22 20:44:00,983 Hickory St, San Francisco,CA,94016 +196523,iPhone,1,700.0,2019-05-18 20:49:00,12 Ridge St, San Francisco,CA,94016 +196524,USB-C Charging Cable,1,11.95,2019-05-20 02:22:00,106 2nd St, Los Angeles,CA,90001 +196525,ThinkPad Laptop,1,999.99,2019-05-18 16:02:00,269 6th St, Boston,MA,02215 +196526,Google Phone,1,600.0,2019-05-29 19:24:00,829 5th St, Boston,MA,02215 +196527,USB-C Charging Cable,1,11.95,2019-05-02 09:11:00,925 Lincoln St, Atlanta,GA,30301 +196528,USB-C Charging Cable,1,11.95,2019-05-02 08:38:00,882 Jefferson St, Boston,MA,02215 +196529,AAA Batteries (4-pack),1,2.99,2019-05-20 02:14:00,648 2nd St, San Francisco,CA,94016 +196530,34in Ultrawide Monitor,1,379.99,2019-05-22 14:54:00,64 4th St, Boston,MA,02215 +196531,AAA Batteries (4-pack),1,2.99,2019-05-06 20:50:00,269 Jackson St, Los Angeles,CA,90001 +196532,Macbook Pro Laptop,1,1700.0,2019-05-11 12:37:00,828 Lake St, Dallas,TX,75001 +196533,USB-C Charging Cable,1,11.95,2019-05-21 19:58:00,761 Madison St, Dallas,TX,75001 +196534,USB-C Charging Cable,1,11.95,2019-05-02 18:55:00,422 Park St, Seattle,WA,98101 +196535,AAA Batteries (4-pack),1,2.99,2019-05-07 16:25:00,541 1st St, Dallas,TX,75001 +196536,27in FHD Monitor,1,149.99,2019-05-13 13:03:00,214 Cedar St, Seattle,WA,98101 +196537,34in Ultrawide Monitor,1,379.99,2019-05-28 20:50:00,986 Park St, New York City,NY,10001 +196538,27in FHD Monitor,1,149.99,2019-05-27 13:17:00,954 11th St, Seattle,WA,98101 +196539,AA Batteries (4-pack),1,3.84,2019-05-04 16:06:00,630 1st St, Boston,MA,02215 +196540,Flatscreen TV,1,300.0,2019-05-15 18:23:00,800 11th St, Portland,OR,97035 +196541,USB-C Charging Cable,2,11.95,2019-05-25 20:49:00,961 2nd St, Atlanta,GA,30301 +196542,34in Ultrawide Monitor,1,379.99,2019-05-18 18:59:00,573 Walnut St, Los Angeles,CA,90001 +196543,USB-C Charging Cable,1,11.95,2019-05-21 14:12:00,446 River St, San Francisco,CA,94016 +196544,Wired Headphones,1,11.99,2019-05-04 20:46:00,178 Johnson St, Austin,TX,73301 +196545,Wired Headphones,1,11.99,2019-05-19 13:40:00,93 12th St, Seattle,WA,98101 +196546,Wired Headphones,1,11.99,2019-05-23 02:44:00,652 Cherry St, New York City,NY,10001 +196547,Macbook Pro Laptop,1,1700.0,2019-05-18 12:40:00,722 Elm St, Seattle,WA,98101 +196548,AA Batteries (4-pack),2,3.84,2019-05-22 09:32:00,127 7th St, Atlanta,GA,30301 +196549,USB-C Charging Cable,1,11.95,2019-05-23 09:46:00,237 Dogwood St, Seattle,WA,98101 +196550,AAA Batteries (4-pack),1,2.99,2019-05-31 14:50:00,60 Lakeview St, San Francisco,CA,94016 +196551,AA Batteries (4-pack),1,3.84,2019-05-30 10:32:00,426 Church St, San Francisco,CA,94016 +196552,27in 4K Gaming Monitor,1,389.99,2019-05-20 08:47:00,619 Dogwood St, New York City,NY,10001 +196553,27in 4K Gaming Monitor,1,389.99,2019-05-23 19:03:00,553 Jefferson St, Atlanta,GA,30301 +196554,Wired Headphones,1,11.99,2019-05-27 17:12:00,879 Wilson St, San Francisco,CA,94016 +196555,Apple Airpods Headphones,1,150.0,2019-05-28 12:11:00,518 Hickory St, Atlanta,GA,30301 +196556,USB-C Charging Cable,1,11.95,2019-05-16 17:59:00,110 River St, New York City,NY,10001 +196557,Bose SoundSport Headphones,1,99.99,2019-05-05 18:59:00,453 Hickory St, San Francisco,CA,94016 +196558,Lightning Charging Cable,1,14.95,2019-05-10 13:09:00,252 Walnut St, Dallas,TX,75001 +196559,Macbook Pro Laptop,1,1700.0,2019-05-19 19:45:00,589 9th St, Los Angeles,CA,90001 +196560,Flatscreen TV,1,300.0,2019-05-18 17:02:00,463 Main St, Boston,MA,02215 +196561,USB-C Charging Cable,1,11.95,2019-05-03 12:51:00,347 Lincoln St, New York City,NY,10001 +196562,AAA Batteries (4-pack),2,2.99,2019-05-17 12:00:00,834 Cherry St, Los Angeles,CA,90001 +196563,Wired Headphones,1,11.99,2019-05-03 17:52:00,104 Cedar St, Los Angeles,CA,90001 +196564,27in FHD Monitor,1,149.99,2019-05-18 14:32:00,898 5th St, Boston,MA,02215 +196565,Wired Headphones,1,11.99,2019-05-02 19:12:00,967 5th St, Dallas,TX,75001 +196566,AA Batteries (4-pack),1,3.84,2019-05-21 21:11:00,513 Adams St, Boston,MA,02215 +196567,Flatscreen TV,1,300.0,2019-05-14 10:24:00,480 6th St, Portland,ME,04101 +196568,20in Monitor,1,109.99,2019-05-05 20:27:00,84 10th St, Austin,TX,73301 +196569,Bose SoundSport Headphones,1,99.99,2019-05-03 20:20:00,231 Washington St, San Francisco,CA,94016 +196570,Macbook Pro Laptop,1,1700.0,2019-05-09 20:44:00,965 Adams St, Portland,ME,04101 +196571,Bose SoundSport Headphones,1,99.99,2019-05-09 16:58:00,295 Madison St, Seattle,WA,98101 +196572,iPhone,1,700.0,2019-05-21 12:08:00,43 2nd St, Seattle,WA,98101 +196573,Lightning Charging Cable,1,14.95,2019-05-09 22:17:00,368 Walnut St, San Francisco,CA,94016 +196574,27in 4K Gaming Monitor,1,389.99,2019-05-18 18:05:00,914 South St, Los Angeles,CA,90001 +196575,ThinkPad Laptop,1,999.99,2019-05-04 10:48:00,144 Lakeview St, Dallas,TX,75001 +196576,Apple Airpods Headphones,1,150.0,2019-05-02 00:15:00,425 5th St, Los Angeles,CA,90001 +196577,Apple Airpods Headphones,1,150.0,2019-05-13 13:36:00,398 10th St, Portland,ME,04101 +196578,Apple Airpods Headphones,1,150.0,2019-05-09 13:01:00,439 8th St, Boston,MA,02215 +196579,Lightning Charging Cable,2,14.95,2019-05-26 21:52:00,242 Johnson St, Los Angeles,CA,90001 +196580,iPhone,1,700.0,2019-05-27 04:55:00,429 Jackson St, San Francisco,CA,94016 +196581,AAA Batteries (4-pack),1,2.99,2019-05-21 14:11:00,68 Elm St, Austin,TX,73301 +196582,AAA Batteries (4-pack),3,2.99,2019-05-23 20:55:00,972 1st St, Dallas,TX,75001 +196583,Flatscreen TV,1,300.0,2019-05-11 12:17:00,401 Church St, San Francisco,CA,94016 +196584,iPhone,1,700.0,2019-05-15 19:47:00,500 Forest St, New York City,NY,10001 +196584,Wired Headphones,1,11.99,2019-05-15 19:47:00,500 Forest St, New York City,NY,10001 +196585,LG Dryer,1,600.0,2019-05-06 00:22:00,782 River St, Seattle,WA,98101 +196586,Bose SoundSport Headphones,1,99.99,2019-05-01 14:02:00,83 River St, New York City,NY,10001 +196587,Wired Headphones,1,11.99,2019-05-19 13:01:00,406 Ridge St, San Francisco,CA,94016 +196588,ThinkPad Laptop,1,999.99,2019-05-26 09:14:00,875 Dogwood St, Boston,MA,02215 +196589,AA Batteries (4-pack),1,3.84,2019-05-06 14:08:00,775 South St, Boston,MA,02215 +196590,20in Monitor,1,109.99,2019-05-24 23:22:00,988 12th St, San Francisco,CA,94016 +196591,AA Batteries (4-pack),1,3.84,2019-05-02 15:01:00,945 Cherry St, Austin,TX,73301 +196592,USB-C Charging Cable,1,11.95,2019-05-30 22:10:00,297 Adams St, New York City,NY,10001 +196593,USB-C Charging Cable,1,11.95,2019-05-19 12:04:00,154 Main St, San Francisco,CA,94016 +196594,34in Ultrawide Monitor,1,379.99,2019-05-07 15:59:00,327 Park St, New York City,NY,10001 +196595,AAA Batteries (4-pack),1,2.99,2019-05-22 12:09:00,794 River St, New York City,NY,10001 +196596,Bose SoundSport Headphones,1,99.99,2019-05-10 09:51:00,761 13th St, Seattle,WA,98101 +196597,Apple Airpods Headphones,1,150.0,2019-05-23 10:26:00,276 Sunset St, Seattle,WA,98101 +196598,ThinkPad Laptop,1,999.99,2019-05-06 09:50:00,393 Cedar St, Los Angeles,CA,90001 +196599,27in FHD Monitor,1,149.99,2019-05-25 18:39:00,280 14th St, Dallas,TX,75001 +196600,34in Ultrawide Monitor,1,379.99,2019-05-14 00:31:00,582 Lake St, Portland,OR,97035 +196601,AA Batteries (4-pack),1,3.84,2019-05-25 15:24:00,694 Sunset St, San Francisco,CA,94016 +196602,AAA Batteries (4-pack),3,2.99,2019-05-29 19:17:00,63 Ridge St, San Francisco,CA,94016 +196603,34in Ultrawide Monitor,1,379.99,2019-05-05 21:02:00,375 Main St, Los Angeles,CA,90001 +196604,Lightning Charging Cable,1,14.95,2019-05-16 13:38:00,941 Highland St, San Francisco,CA,94016 +196605,Macbook Pro Laptop,1,1700.0,2019-05-11 22:19:00,201 Park St, Boston,MA,02215 +196606,Lightning Charging Cable,1,14.95,2019-05-19 06:34:00,318 Main St, San Francisco,CA,94016 +196607,34in Ultrawide Monitor,1,379.99,2019-05-15 17:48:00,150 Lakeview St, Los Angeles,CA,90001 +196607,Lightning Charging Cable,1,14.95,2019-05-15 17:48:00,150 Lakeview St, Los Angeles,CA,90001 +196608,27in 4K Gaming Monitor,1,389.99,2019-05-21 18:41:00,803 Cedar St, Los Angeles,CA,90001 +196609,ThinkPad Laptop,1,999.99,2019-05-26 15:40:00,81 4th St, San Francisco,CA,94016 +196610,AAA Batteries (4-pack),1,2.99,2019-05-02 19:22:00,176 1st St, Portland,OR,97035 +196611,Wired Headphones,1,11.99,2019-05-15 15:03:00,383 Cedar St, Portland,OR,97035 +196612,USB-C Charging Cable,1,11.95,2019-05-21 16:46:00,512 2nd St, Los Angeles,CA,90001 +196613,27in 4K Gaming Monitor,1,389.99,2019-05-11 08:18:00,898 11th St, San Francisco,CA,94016 +196614,Lightning Charging Cable,1,14.95,2019-05-17 22:30:00,196 12th St, Los Angeles,CA,90001 +196615,Google Phone,1,600.0,2019-05-08 19:29:00,656 Spruce St, San Francisco,CA,94016 +196615,USB-C Charging Cable,1,11.95,2019-05-08 19:29:00,656 Spruce St, San Francisco,CA,94016 +196615,Bose SoundSport Headphones,1,99.99,2019-05-08 19:29:00,656 Spruce St, San Francisco,CA,94016 +196615,Wired Headphones,1,11.99,2019-05-08 19:29:00,656 Spruce St, San Francisco,CA,94016 +196616,Apple Airpods Headphones,1,150.0,2019-05-22 11:39:00,718 Main St, Atlanta,GA,30301 +196617,AA Batteries (4-pack),1,3.84,2019-05-28 11:37:00,575 10th St, Los Angeles,CA,90001 +196618,Wired Headphones,1,11.99,2019-05-31 14:31:00,735 South St, Atlanta,GA,30301 +196619,ThinkPad Laptop,1,999.99,2019-05-10 20:52:00,495 Main St, Los Angeles,CA,90001 +196620,USB-C Charging Cable,1,11.95,2019-05-31 09:44:00,270 Elm St, Portland,OR,97035 +196621,Apple Airpods Headphones,1,150.0,2019-05-26 16:23:00,501 Forest St, Atlanta,GA,30301 +196622,Apple Airpods Headphones,1,150.0,2019-05-25 20:45:00,752 Wilson St, Boston,MA,02215 +196623,Apple Airpods Headphones,1,150.0,2019-05-11 20:43:00,458 Lake St, Dallas,TX,75001 +196624,Apple Airpods Headphones,1,150.0,2019-05-12 13:05:00,231 10th St, San Francisco,CA,94016 +196625,Bose SoundSport Headphones,1,99.99,2019-05-12 22:50:00,207 Lakeview St, San Francisco,CA,94016 +196626,27in FHD Monitor,1,149.99,2019-05-28 14:09:00,121 13th St, Atlanta,GA,30301 +196627,Wired Headphones,1,11.99,2019-05-31 11:50:00,243 River St, San Francisco,CA,94016 +196628,LG Washing Machine,1,600.0,2019-05-08 08:56:00,990 5th St, Atlanta,GA,30301 +196629,iPhone,1,700.0,2019-05-24 17:19:00,569 4th St, San Francisco,CA,94016 +196630,AAA Batteries (4-pack),1,2.99,2019-05-12 03:44:00,41 7th St, Los Angeles,CA,90001 +196631,Flatscreen TV,1,300.0,2019-05-29 14:53:00,449 Spruce St, San Francisco,CA,94016 +196632,27in 4K Gaming Monitor,1,389.99,2019-05-13 17:05:00,969 7th St, Austin,TX,73301 +196633,Vareebadd Phone,1,400.0,2019-05-15 20:28:00,20 Lincoln St, New York City,NY,10001 +196634,Macbook Pro Laptop,1,1700.0,2019-05-28 20:45:00,865 12th St, Los Angeles,CA,90001 +196635,Wired Headphones,1,11.99,2019-05-04 13:04:00,49 Walnut St, Los Angeles,CA,90001 +196636,Wired Headphones,1,11.99,2019-05-02 15:54:00,845 Cherry St, Boston,MA,02215 +196637,Apple Airpods Headphones,1,150.0,2019-05-19 07:33:00,8 13th St, Los Angeles,CA,90001 +196638,Vareebadd Phone,1,400.0,2019-06-01 01:51:00,612 North St, Atlanta,GA,30301 +196639,USB-C Charging Cable,1,11.95,2019-06-01 00:18:00,972 13th St, New York City,NY,10001 +196640,27in 4K Gaming Monitor,1,389.99,2019-05-17 13:30:00,513 Center St, San Francisco,CA,94016 +196641,Flatscreen TV,1,300.0,2019-05-02 21:12:00,763 1st St, Los Angeles,CA,90001 +196642,Wired Headphones,1,11.99,2019-05-27 14:18:00,347 Hill St, Los Angeles,CA,90001 +196643,Bose SoundSport Headphones,1,99.99,2019-05-31 00:45:00,465 Chestnut St, Dallas,TX,75001 +196644,USB-C Charging Cable,4,11.95,2019-05-22 12:17:00,52 Main St, New York City,NY,10001 +196644,USB-C Charging Cable,1,11.95,2019-05-22 12:17:00,52 Main St, New York City,NY,10001 +196645,Bose SoundSport Headphones,1,99.99,2019-05-23 19:56:00,791 Center St, Atlanta,GA,30301 +196646,27in FHD Monitor,1,149.99,2019-05-30 18:23:00,716 11th St, Portland,OR,97035 +196647,27in 4K Gaming Monitor,1,389.99,2019-05-21 11:10:00,667 Wilson St, New York City,NY,10001 +196648,Flatscreen TV,1,300.0,2019-05-31 21:10:00,103 Washington St, Boston,MA,02215 +196649,iPhone,1,700.0,2019-05-16 14:11:00,600 Forest St, San Francisco,CA,94016 +196650,AAA Batteries (4-pack),2,2.99,2019-05-11 20:33:00,535 4th St, Dallas,TX,75001 +196651,AA Batteries (4-pack),2,3.84,2019-05-28 14:12:00,309 12th St, Portland,OR,97035 +196652,AAA Batteries (4-pack),1,2.99,2019-05-11 15:21:00,198 Spruce St, Boston,MA,02215 +196653,AAA Batteries (4-pack),2,2.99,2019-05-27 00:14:00,672 Dogwood St, New York City,NY,10001 +196654,Wired Headphones,1,11.99,2019-05-05 13:56:00,479 5th St, Los Angeles,CA,90001 +196654,iPhone,1,700.0,2019-05-05 13:56:00,479 5th St, Los Angeles,CA,90001 +196655,20in Monitor,1,109.99,2019-05-08 12:16:00,140 Wilson St, Dallas,TX,75001 +196656,Lightning Charging Cable,1,14.95,2019-05-08 00:23:00,192 Main St, New York City,NY,10001 +196657,27in 4K Gaming Monitor,1,389.99,2019-05-14 11:55:00,946 Sunset St, San Francisco,CA,94016 +196658,Bose SoundSport Headphones,1,99.99,2019-05-09 20:43:00,310 Johnson St, Los Angeles,CA,90001 +196659,Apple Airpods Headphones,1,150.0,2019-05-28 18:00:00,391 1st St, Atlanta,GA,30301 +196660,AAA Batteries (4-pack),1,2.99,2019-05-31 07:08:00,49 Church St, Los Angeles,CA,90001 +196661,Apple Airpods Headphones,1,150.0,2019-05-28 19:25:00,451 Church St, San Francisco,CA,94016 +196662,AA Batteries (4-pack),1,3.84,2019-05-08 08:24:00,2 North St, Boston,MA,02215 +196663,AAA Batteries (4-pack),1,2.99,2019-05-18 18:03:00,702 South St, Austin,TX,73301 +196664,Bose SoundSport Headphones,1,99.99,2019-05-31 20:19:00,427 Madison St, Dallas,TX,75001 +196665,iPhone,1,700.0,2019-05-04 16:59:00,439 5th St, New York City,NY,10001 +196666,Macbook Pro Laptop,1,1700.0,2019-05-22 11:30:00,33 Ridge St, Boston,MA,02215 +196667,Lightning Charging Cable,1,14.95,2019-05-09 19:48:00,114 Jefferson St, New York City,NY,10001 +196668,Macbook Pro Laptop,1,1700.0,2019-05-24 15:58:00,93 12th St, San Francisco,CA,94016 +196669,34in Ultrawide Monitor,1,379.99,2019-05-31 11:44:00,793 11th St, Atlanta,GA,30301 +196670,Wired Headphones,1,11.99,2019-05-17 20:46:00,992 12th St, Dallas,TX,75001 +196671,AA Batteries (4-pack),2,3.84,2019-05-03 00:20:00,839 Chestnut St, San Francisco,CA,94016 +196672,Apple Airpods Headphones,2,150.0,2019-05-08 17:31:00,79 Jefferson St, Los Angeles,CA,90001 +196673,Wired Headphones,2,11.99,2019-05-20 16:20:00,599 West St, New York City,NY,10001 +196674,AAA Batteries (4-pack),1,2.99,2019-05-21 07:40:00,359 Johnson St, New York City,NY,10001 +196675,Apple Airpods Headphones,1,150.0,2019-05-18 12:24:00,408 9th St, San Francisco,CA,94016 +196676,Wired Headphones,1,11.99,2019-05-18 20:12:00,104 North St, Seattle,WA,98101 +196677,Wired Headphones,1,11.99,2019-05-12 21:31:00,893 Hill St, Austin,TX,73301 +196678,Wired Headphones,1,11.99,2019-05-05 11:41:00,358 14th St, San Francisco,CA,94016 +196679,Wired Headphones,1,11.99,2019-05-24 12:21:00,400 Park St, Portland,ME,04101 +196680,Lightning Charging Cable,2,14.95,2019-05-21 14:42:00,931 1st St, Los Angeles,CA,90001 +196681,USB-C Charging Cable,1,11.95,2019-05-30 20:06:00,265 14th St, Seattle,WA,98101 +196682,Lightning Charging Cable,1,14.95,2019-05-18 20:18:00,227 Walnut St, New York City,NY,10001 +196683,Bose SoundSport Headphones,1,99.99,2019-05-06 23:07:00,606 Chestnut St, New York City,NY,10001 +196684,27in FHD Monitor,1,149.99,2019-05-14 12:11:00,949 Dogwood St, Atlanta,GA,30301 +196685,Wired Headphones,1,11.99,2019-05-19 21:24:00,226 Forest St, Dallas,TX,75001 +196686,AA Batteries (4-pack),2,3.84,2019-05-21 19:17:00,33 Hill St, Austin,TX,73301 +196687,Wired Headphones,1,11.99,2019-05-03 03:03:00,659 Center St, Boston,MA,02215 +196688,USB-C Charging Cable,1,11.95,2019-05-12 20:28:00,846 Lakeview St, San Francisco,CA,94016 +196689,USB-C Charging Cable,1,11.95,2019-05-15 16:00:00,818 13th St, Portland,OR,97035 +196690,Apple Airpods Headphones,1,150.0,2019-05-12 13:30:00,280 Walnut St, Dallas,TX,75001 +196691,27in FHD Monitor,1,149.99,2019-05-06 00:31:00,50 9th St, San Francisco,CA,94016 +196692,Apple Airpods Headphones,1,150.0,2019-05-02 15:41:00,744 10th St, Austin,TX,73301 +196693,USB-C Charging Cable,1,11.95,2019-05-12 13:23:00,233 Ridge St, Los Angeles,CA,90001 +196694,Wired Headphones,1,11.99,2019-05-14 17:35:00,427 Lakeview St, Boston,MA,02215 +196695,Lightning Charging Cable,1,14.95,2019-05-05 19:35:00,736 5th St, Boston,MA,02215 +196696,Lightning Charging Cable,1,14.95,2019-05-12 20:59:00,263 Ridge St, New York City,NY,10001 +196697,Google Phone,1,600.0,2019-05-23 15:54:00,846 7th St, San Francisco,CA,94016 +196697,USB-C Charging Cable,1,11.95,2019-05-23 15:54:00,846 7th St, San Francisco,CA,94016 +196698,Wired Headphones,1,11.99,2019-05-28 10:14:00,767 Washington St, Dallas,TX,75001 +196699,AA Batteries (4-pack),1,3.84,2019-05-06 14:27:00,375 1st St, Los Angeles,CA,90001 +196700,27in FHD Monitor,1,149.99,2019-05-16 12:52:00,795 Ridge St, Los Angeles,CA,90001 +196701,Wired Headphones,1,11.99,2019-05-08 22:15:00,354 Dogwood St, Boston,MA,02215 +196702,Lightning Charging Cable,1,14.95,2019-05-16 13:38:00,523 13th St, New York City,NY,10001 +196703,iPhone,1,700.0,2019-05-31 14:33:00,921 River St, Portland,OR,97035 +196704,USB-C Charging Cable,1,11.95,2019-05-10 16:55:00,677 Elm St, Seattle,WA,98101 +196705,Lightning Charging Cable,1,14.95,2019-05-03 08:29:00,379 11th St, Boston,MA,02215 +196706,Lightning Charging Cable,1,14.95,2019-05-30 15:47:00,65 Washington St, Atlanta,GA,30301 +196707,Lightning Charging Cable,1,14.95,2019-05-27 11:12:00,903 10th St, San Francisco,CA,94016 +196708,Google Phone,1,600.0,2019-05-19 00:30:00,144 Cherry St, New York City,NY,10001 +196709,Bose SoundSport Headphones,1,99.99,2019-05-14 09:46:00,678 Willow St, New York City,NY,10001 +196710,27in 4K Gaming Monitor,1,389.99,2019-05-20 15:28:00,660 Chestnut St, Seattle,WA,98101 +196711,AA Batteries (4-pack),1,3.84,2019-05-31 09:50:00,114 12th St, Seattle,WA,98101 +196712,Lightning Charging Cable,1,14.95,2019-05-02 17:02:00,89 14th St, Boston,MA,02215 +196713,USB-C Charging Cable,1,11.95,2019-05-13 18:49:00,53 Main St, Dallas,TX,75001 +196714,Macbook Pro Laptop,1,1700.0,2019-05-24 12:56:00,957 Park St, New York City,NY,10001 +196715,AA Batteries (4-pack),2,3.84,2019-05-05 15:57:00,921 11th St, Dallas,TX,75001 +196716,Lightning Charging Cable,2,14.95,2019-05-01 08:16:00,83 Lakeview St, Atlanta,GA,30301 +196717,Flatscreen TV,1,300.0,2019-05-21 14:24:00,992 4th St, Los Angeles,CA,90001 +196718,USB-C Charging Cable,1,11.95,2019-05-04 21:48:00,47 9th St, Dallas,TX,75001 +196719,iPhone,1,700.0,2019-05-24 13:45:00,586 Jackson St, Portland,ME,04101 +196720,Lightning Charging Cable,1,14.95,2019-05-29 09:27:00,627 Cedar St, New York City,NY,10001 +196721,Google Phone,1,600.0,2019-05-09 20:59:00,419 11th St, New York City,NY,10001 +196721,Wired Headphones,1,11.99,2019-05-09 20:59:00,419 11th St, New York City,NY,10001 +196722,Wired Headphones,2,11.99,2019-05-23 19:35:00,887 Highland St, Los Angeles,CA,90001 +196723,Lightning Charging Cable,1,14.95,2019-05-05 16:22:00,922 Maple St, Los Angeles,CA,90001 +196724,27in 4K Gaming Monitor,1,389.99,2019-05-09 12:10:00,461 Church St, San Francisco,CA,94016 +196725,27in FHD Monitor,1,149.99,2019-05-06 18:42:00,651 Hickory St, Boston,MA,02215 +196726,20in Monitor,1,109.99,2019-05-25 20:28:00,566 Sunset St, San Francisco,CA,94016 +196727,Lightning Charging Cable,1,14.95,2019-05-02 19:25:00,134 4th St, Portland,OR,97035 +196728,Macbook Pro Laptop,1,1700.0,2019-05-13 09:31:00,748 Church St, New York City,NY,10001 +196729,AA Batteries (4-pack),1,3.84,2019-05-02 12:13:00,253 Walnut St, San Francisco,CA,94016 +196730,27in 4K Gaming Monitor,1,389.99,2019-05-09 12:22:00,671 Washington St, San Francisco,CA,94016 +196731,AA Batteries (4-pack),1,3.84,2019-05-07 14:13:00,359 Jefferson St, Dallas,TX,75001 +196732,USB-C Charging Cable,2,11.95,2019-05-07 21:06:00,911 6th St, Portland,OR,97035 +196733,AAA Batteries (4-pack),2,2.99,2019-05-30 10:20:00,792 River St, New York City,NY,10001 +196734,27in FHD Monitor,1,149.99,2019-05-19 16:06:00,543 Main St, San Francisco,CA,94016 +196735,AAA Batteries (4-pack),1,2.99,2019-05-21 19:18:00,594 Hill St, Boston,MA,02215 +196736,Lightning Charging Cable,1,14.95,2019-05-13 20:22:00,695 Lakeview St, New York City,NY,10001 +196737,iPhone,1,700.0,2019-05-05 21:14:00,309 Wilson St, San Francisco,CA,94016 +196737,Lightning Charging Cable,1,14.95,2019-05-05 21:14:00,309 Wilson St, San Francisco,CA,94016 +196738,Flatscreen TV,1,300.0,2019-05-30 12:47:00,988 Forest St, New York City,NY,10001 +196739,Vareebadd Phone,1,400.0,2019-05-28 01:01:00,956 Sunset St, San Francisco,CA,94016 +196740,AAA Batteries (4-pack),3,2.99,2019-05-31 13:36:00,155 Willow St, Atlanta,GA,30301 +196741,AA Batteries (4-pack),1,3.84,2019-05-12 23:42:00,755 2nd St, Dallas,TX,75001 +196742,USB-C Charging Cable,1,11.95,2019-05-05 17:37:00,177 Lincoln St, New York City,NY,10001 +196743,Bose SoundSport Headphones,1,99.99,2019-05-19 20:03:00,722 Elm St, Boston,MA,02215 +196744,Bose SoundSport Headphones,1,99.99,2019-05-13 12:23:00,758 1st St, Atlanta,GA,30301 +196745,Apple Airpods Headphones,1,150.0,2019-05-07 10:27:00,365 Madison St, Austin,TX,73301 +196746,USB-C Charging Cable,1,11.95,2019-05-19 02:09:00,279 Center St, Austin,TX,73301 +196747,34in Ultrawide Monitor,1,379.99,2019-05-28 10:52:00,194 1st St, San Francisco,CA,94016 +196748,Apple Airpods Headphones,1,150.0,2019-05-17 09:15:00,682 14th St, San Francisco,CA,94016 +196749,Wired Headphones,1,11.99,2019-05-24 15:51:00,58 Maple St, Boston,MA,02215 +196750,AAA Batteries (4-pack),1,2.99,2019-05-05 18:21:00,521 Pine St, Atlanta,GA,30301 +196751,AAA Batteries (4-pack),1,2.99,2019-05-15 15:49:00,820 Park St, New York City,NY,10001 +196752,LG Washing Machine,1,600.0,2019-05-06 20:21:00,728 10th St, Boston,MA,02215 +196753,27in 4K Gaming Monitor,1,389.99,2019-05-18 17:12:00,568 Ridge St, New York City,NY,10001 +196754,27in 4K Gaming Monitor,1,389.99,2019-05-13 14:08:00,874 Wilson St, Atlanta,GA,30301 +196755,27in FHD Monitor,1,149.99,2019-05-28 12:29:00,514 Cedar St, Boston,MA,02215 +196756,Bose SoundSport Headphones,1,99.99,2019-05-04 10:41:00,373 Jefferson St, Dallas,TX,75001 +196757,Apple Airpods Headphones,1,150.0,2019-05-07 20:50:00,554 Johnson St, San Francisco,CA,94016 +196758,iPhone,1,700.0,2019-05-21 09:27:00,815 Hill St, Dallas,TX,75001 +196759,AAA Batteries (4-pack),1,2.99,2019-05-06 12:34:00,626 Church St, Los Angeles,CA,90001 +196760,Apple Airpods Headphones,1,150.0,2019-05-16 09:39:00,346 Cherry St, San Francisco,CA,94016 +196761,Apple Airpods Headphones,1,150.0,2019-05-04 21:52:00,826 North St, Portland,OR,97035 +196762,Lightning Charging Cable,1,14.95,2019-05-28 20:50:00,742 Elm St, Boston,MA,02215 +196763,iPhone,1,700.0,2019-05-17 21:40:00,514 1st St, Atlanta,GA,30301 +196764,20in Monitor,1,109.99,2019-05-29 22:47:00,730 Church St, San Francisco,CA,94016 +196765,27in 4K Gaming Monitor,1,389.99,2019-05-19 12:59:00,585 Jackson St, San Francisco,CA,94016 +196766,34in Ultrawide Monitor,1,379.99,2019-05-03 12:04:00,131 12th St, San Francisco,CA,94016 +196767,AA Batteries (4-pack),3,3.84,2019-05-21 14:34:00,458 13th St, Atlanta,GA,30301 +196768,LG Dryer,1,600.0,2019-05-29 17:17:00,158 12th St, New York City,NY,10001 +196769,Lightning Charging Cable,1,14.95,2019-05-05 23:16:00,509 Cedar St, Portland,OR,97035 +196770,27in 4K Gaming Monitor,1,389.99,2019-05-11 14:02:00,502 Chestnut St, Portland,ME,04101 +196771,Bose SoundSport Headphones,1,99.99,2019-05-10 17:13:00,863 4th St, Los Angeles,CA,90001 +196772,Apple Airpods Headphones,1,150.0,2019-05-16 18:44:00,553 2nd St, Seattle,WA,98101 +196773,Apple Airpods Headphones,1,150.0,2019-05-25 23:27:00,668 Washington St, San Francisco,CA,94016 +196774,Lightning Charging Cable,1,14.95,2019-05-28 17:53:00,761 Madison St, New York City,NY,10001 +196775,Wired Headphones,1,11.99,2019-05-18 19:32:00,811 Washington St, Austin,TX,73301 +196776,Flatscreen TV,1,300.0,2019-05-20 13:30:00,149 Cherry St, Dallas,TX,75001 +196777,20in Monitor,1,109.99,2019-05-09 17:59:00,665 7th St, Boston,MA,02215 +196777,Bose SoundSport Headphones,1,99.99,2019-05-09 17:59:00,665 7th St, Boston,MA,02215 +196778,Apple Airpods Headphones,1,150.0,2019-05-18 22:05:00,724 11th St, San Francisco,CA,94016 +196778,Flatscreen TV,1,300.0,2019-05-18 22:05:00,724 11th St, San Francisco,CA,94016 +196779,Lightning Charging Cable,1,14.95,2019-05-31 12:55:00,180 Adams St, Portland,OR,97035 +196780,Macbook Pro Laptop,1,1700.0,2019-05-31 10:42:00,265 Adams St, Boston,MA,02215 +196781,ThinkPad Laptop,1,999.99,2019-05-10 00:24:00,658 Ridge St, New York City,NY,10001 +196782,Google Phone,1,600.0,2019-05-10 00:23:00,952 4th St, Boston,MA,02215 +196783,iPhone,1,700.0,2019-05-02 08:33:00,279 Lakeview St, San Francisco,CA,94016 +196784,AAA Batteries (4-pack),2,2.99,2019-05-31 01:03:00,213 Maple St, Atlanta,GA,30301 +196785,27in 4K Gaming Monitor,1,389.99,2019-05-22 23:36:00,710 7th St, Los Angeles,CA,90001 +196786,Lightning Charging Cable,1,14.95,2019-05-02 20:55:00,531 7th St, San Francisco,CA,94016 +196787,Bose SoundSport Headphones,1,99.99,2019-05-01 18:50:00,835 Hickory St, San Francisco,CA,94016 +196788,USB-C Charging Cable,1,11.95,2019-05-07 09:25:00,276 12th St, Boston,MA,02215 +196789,AA Batteries (4-pack),1,3.84,2019-05-11 12:33:00,168 Madison St, San Francisco,CA,94016 +196790,Lightning Charging Cable,1,14.95,2019-05-08 18:08:00,901 Main St, San Francisco,CA,94016 +196791,Apple Airpods Headphones,1,150.0,2019-05-27 13:36:00,648 Meadow St, Boston,MA,02215 +196792,Google Phone,1,600.0,2019-05-19 21:24:00,865 Elm St, New York City,NY,10001 +196792,USB-C Charging Cable,1,11.95,2019-05-19 21:24:00,865 Elm St, New York City,NY,10001 +196793,Google Phone,1,600.0,2019-05-04 22:19:00,48 Walnut St, Los Angeles,CA,90001 +196794,Macbook Pro Laptop,1,1700.0,2019-05-02 22:19:00,104 Walnut St, San Francisco,CA,94016 +196795,Apple Airpods Headphones,1,150.0,2019-05-26 13:54:00,22 Ridge St, San Francisco,CA,94016 +196796,Wired Headphones,1,11.99,2019-05-21 18:49:00,475 Jackson St, Atlanta,GA,30301 +196797,USB-C Charging Cable,1,11.95,2019-05-11 14:12:00,355 Washington St, San Francisco,CA,94016 +196798,AA Batteries (4-pack),1,3.84,2019-05-24 14:54:00,364 Sunset St, San Francisco,CA,94016 +196799,Bose SoundSport Headphones,1,99.99,2019-05-22 14:58:00,381 14th St, Boston,MA,02215 +196800,ThinkPad Laptop,1,999.99,2019-05-26 15:43:00,194 Johnson St, New York City,NY,10001 +196801,34in Ultrawide Monitor,1,379.99,2019-05-16 10:48:00,204 7th St, San Francisco,CA,94016 +196801,Apple Airpods Headphones,1,150.0,2019-05-16 10:48:00,204 7th St, San Francisco,CA,94016 +196802,AA Batteries (4-pack),2,3.84,2019-05-15 10:35:00,978 Hickory St, Los Angeles,CA,90001 +196803,AAA Batteries (4-pack),1,2.99,2019-05-02 11:58:00,145 2nd St, Boston,MA,02215 +196804,Flatscreen TV,1,300.0,2019-05-20 09:12:00,680 Park St, Boston,MA,02215 +196805,34in Ultrawide Monitor,1,379.99,2019-05-15 10:47:00,286 Highland St, Austin,TX,73301 +196806,Lightning Charging Cable,1,14.95,2019-05-11 20:36:00,185 West St, San Francisco,CA,94016 +196807,ThinkPad Laptop,1,999.99,2019-05-28 16:27:00,293 South St, New York City,NY,10001 +196808,Bose SoundSport Headphones,1,99.99,2019-05-30 20:54:00,32 6th St, Los Angeles,CA,90001 +196809,27in 4K Gaming Monitor,1,389.99,2019-05-15 12:38:00,242 Center St, Portland,OR,97035 +196810,27in 4K Gaming Monitor,1,389.99,2019-05-14 17:35:00,899 4th St, Los Angeles,CA,90001 +196811,Apple Airpods Headphones,1,150.0,2019-05-04 18:40:00,241 Willow St, New York City,NY,10001 +196812,Apple Airpods Headphones,1,150.0,2019-05-02 15:07:00,357 10th St, Atlanta,GA,30301 +196813,Lightning Charging Cable,1,14.95,2019-05-28 13:20:00,491 Jefferson St, San Francisco,CA,94016 +196814,34in Ultrawide Monitor,1,379.99,2019-05-03 09:51:00,745 Sunset St, Dallas,TX,75001 +196815,Google Phone,1,600.0,2019-05-09 19:14:00,863 Cherry St, Los Angeles,CA,90001 +196816,USB-C Charging Cable,1,11.95,2019-05-13 00:23:00,986 Jefferson St, San Francisco,CA,94016 +196817,27in 4K Gaming Monitor,1,389.99,2019-05-10 17:22:00,64 Church St, Los Angeles,CA,90001 +196818,Wired Headphones,2,11.99,2019-05-03 11:52:00,441 Center St, Portland,ME,04101 +196819,Wired Headphones,1,11.99,2019-05-12 17:33:00,801 14th St, San Francisco,CA,94016 +196820,Lightning Charging Cable,1,14.95,2019-05-17 13:08:00,464 10th St, San Francisco,CA,94016 +196821,Apple Airpods Headphones,1,150.0,2019-05-05 09:46:00,983 4th St, Atlanta,GA,30301 +196822,Bose SoundSport Headphones,1,99.99,2019-05-23 23:18:00,84 Church St, Dallas,TX,75001 +196823,AAA Batteries (4-pack),1,2.99,2019-05-21 21:28:00,892 Chestnut St, San Francisco,CA,94016 +196824,20in Monitor,1,109.99,2019-05-06 20:00:00,487 Highland St, Los Angeles,CA,90001 +196825,USB-C Charging Cable,1,11.95,2019-05-14 08:33:00,250 9th St, Atlanta,GA,30301 +196826,Lightning Charging Cable,1,14.95,2019-05-10 19:50:00,54 Main St, San Francisco,CA,94016 +196827,Apple Airpods Headphones,1,150.0,2019-05-01 09:03:00,68 Jefferson St, Los Angeles,CA,90001 +196828,USB-C Charging Cable,1,11.95,2019-05-05 15:24:00,100 Willow St, Los Angeles,CA,90001 +196829,AAA Batteries (4-pack),1,2.99,2019-05-05 21:12:00,813 Wilson St, Austin,TX,73301 +196830,Lightning Charging Cable,1,14.95,2019-05-13 13:24:00,144 Pine St, Los Angeles,CA,90001 +196831,Wired Headphones,1,11.99,2019-05-24 21:39:00,835 Washington St, San Francisco,CA,94016 +196832,AAA Batteries (4-pack),1,2.99,2019-05-30 09:34:00,389 8th St, Los Angeles,CA,90001 +196833,Lightning Charging Cable,1,14.95,2019-05-20 00:57:00,332 8th St, Seattle,WA,98101 +196834,AAA Batteries (4-pack),1,2.99,2019-05-11 20:16:00,400 Madison St, New York City,NY,10001 +196835,Wired Headphones,1,11.99,2019-05-23 09:23:00,518 11th St, Atlanta,GA,30301 +196836,Lightning Charging Cable,1,14.95,2019-05-08 19:35:00,334 6th St, Dallas,TX,75001 +196837,AA Batteries (4-pack),1,3.84,2019-05-17 08:53:00,928 Hickory St, Los Angeles,CA,90001 +196838,34in Ultrawide Monitor,1,379.99,2019-05-25 00:35:00,725 9th St, San Francisco,CA,94016 +196839,27in FHD Monitor,1,149.99,2019-05-19 12:01:00,626 Ridge St, New York City,NY,10001 +196840,20in Monitor,1,109.99,2019-05-12 09:02:00,505 6th St, New York City,NY,10001 +196841,Macbook Pro Laptop,1,1700.0,2019-05-28 15:36:00,117 7th St, San Francisco,CA,94016 +196842,USB-C Charging Cable,1,11.95,2019-05-05 23:18:00,283 Lake St, New York City,NY,10001 +196843,34in Ultrawide Monitor,1,379.99,2019-05-05 17:36:00,37 Forest St, Atlanta,GA,30301 +196844,Wired Headphones,1,11.99,2019-05-30 20:22:00,959 8th St, Los Angeles,CA,90001 +196845,USB-C Charging Cable,1,11.95,2019-05-09 17:07:00,752 Lakeview St, Dallas,TX,75001 +196846,34in Ultrawide Monitor,1,379.99,2019-05-02 20:18:00,52 Dogwood St, Atlanta,GA,30301 +196847,AAA Batteries (4-pack),1,2.99,2019-05-12 13:07:00,739 Spruce St, San Francisco,CA,94016 +196848,Flatscreen TV,1,300.0,2019-05-10 16:07:00,252 Lincoln St, Los Angeles,CA,90001 +196849,Google Phone,1,600.0,2019-05-13 22:31:00,617 River St, Seattle,WA,98101 +196850,AAA Batteries (4-pack),1,2.99,2019-05-25 14:42:00,466 River St, San Francisco,CA,94016 +196851,USB-C Charging Cable,1,11.95,2019-05-18 16:42:00,175 Wilson St, Los Angeles,CA,90001 +196852,Apple Airpods Headphones,1,150.0,2019-05-15 21:09:00,238 Adams St, Seattle,WA,98101 +196853,Wired Headphones,1,11.99,2019-05-13 18:08:00,40 Washington St, Los Angeles,CA,90001 +196854,iPhone,1,700.0,2019-05-14 11:32:00,326 Wilson St, Boston,MA,02215 +196855,27in 4K Gaming Monitor,1,389.99,2019-05-04 10:27:00,334 Park St, Los Angeles,CA,90001 +196856,AAA Batteries (4-pack),1,2.99,2019-05-13 20:06:00,398 11th St, San Francisco,CA,94016 +196857,27in FHD Monitor,1,149.99,2019-05-18 17:17:00,302 Willow St, Atlanta,GA,30301 +196858,AA Batteries (4-pack),1,3.84,2019-05-09 10:05:00,553 Center St, Atlanta,GA,30301 +196859,Flatscreen TV,1,300.0,2019-05-15 10:44:00,936 Sunset St, Dallas,TX,75001 +196860,Wired Headphones,2,11.99,2019-05-29 13:26:00,132 West St, Atlanta,GA,30301 +196861,Lightning Charging Cable,1,14.95,2019-05-31 18:38:00,754 Lake St, Dallas,TX,75001 +196862,ThinkPad Laptop,1,999.99,2019-05-09 22:25:00,324 South St, Atlanta,GA,30301 +196863,27in FHD Monitor,1,149.99,2019-05-23 15:51:00,833 Cedar St, San Francisco,CA,94016 +196864,Macbook Pro Laptop,1,1700.0,2019-05-06 11:39:00,553 South St, San Francisco,CA,94016 +196865,Google Phone,1,600.0,2019-05-17 20:27:00,404 Elm St, Austin,TX,73301 +196866,27in FHD Monitor,1,149.99,2019-05-11 21:07:00,180 Park St, Dallas,TX,75001 +196867,USB-C Charging Cable,1,11.95,2019-05-19 13:01:00,161 Lincoln St, New York City,NY,10001 +196868,27in 4K Gaming Monitor,1,389.99,2019-05-12 10:01:00,790 6th St, Seattle,WA,98101 +196868,Macbook Pro Laptop,1,1700.0,2019-05-12 10:01:00,790 6th St, Seattle,WA,98101 +196869,Macbook Pro Laptop,1,1700.0,2019-05-12 15:09:00,925 Meadow St, Seattle,WA,98101 +196870,Flatscreen TV,1,300.0,2019-05-22 15:23:00,901 8th St, Seattle,WA,98101 +196871,Bose SoundSport Headphones,1,99.99,2019-05-15 17:22:00,287 5th St, Portland,ME,04101 +196872,Apple Airpods Headphones,1,150.0,2019-05-22 17:52:00,279 11th St, Los Angeles,CA,90001 +196872,27in FHD Monitor,1,149.99,2019-05-22 17:52:00,279 11th St, Los Angeles,CA,90001 +196873,27in FHD Monitor,1,149.99,2019-05-03 16:16:00,931 Park St, New York City,NY,10001 +196874,34in Ultrawide Monitor,1,379.99,2019-05-23 19:26:00,337 1st St, Portland,OR,97035 +196875,USB-C Charging Cable,1,11.95,2019-05-16 15:22:00,304 1st St, San Francisco,CA,94016 +196875,Apple Airpods Headphones,1,150.0,2019-05-16 15:22:00,304 1st St, San Francisco,CA,94016 +196876,Lightning Charging Cable,1,14.95,2019-05-26 00:22:00,558 7th St, Los Angeles,CA,90001 +196877,USB-C Charging Cable,1,11.95,2019-05-23 09:59:00,448 6th St, New York City,NY,10001 +196878,Wired Headphones,1,11.99,2019-05-31 18:36:00,255 Adams St, Dallas,TX,75001 +196879,Wired Headphones,1,11.99,2019-05-18 13:32:00,223 Willow St, New York City,NY,10001 +196880,Macbook Pro Laptop,1,1700.0,2019-05-10 10:31:00,991 Dogwood St, Portland,OR,97035 +196881,AA Batteries (4-pack),1,3.84,2019-05-20 21:16:00,358 Willow St, San Francisco,CA,94016 +196882,Bose SoundSport Headphones,1,99.99,2019-05-05 21:05:00,460 Johnson St, Atlanta,GA,30301 +196883,USB-C Charging Cable,1,11.95,2019-05-16 07:42:00,560 4th St, Portland,OR,97035 +196884,Lightning Charging Cable,1,14.95,2019-05-15 13:02:00,133 Park St, Boston,MA,02215 +196885,AA Batteries (4-pack),1,3.84,2019-05-20 09:47:00,261 5th St, New York City,NY,10001 +196886,Wired Headphones,1,11.99,2019-05-27 13:51:00,484 Park St, Boston,MA,02215 +196887,Macbook Pro Laptop,1,1700.0,2019-05-03 17:20:00,432 Hickory St, San Francisco,CA,94016 +196888,Macbook Pro Laptop,1,1700.0,2019-05-04 15:23:00,973 Johnson St, New York City,NY,10001 +196889,ThinkPad Laptop,1,999.99,2019-05-31 00:05:00,938 Cherry St, Portland,OR,97035 +196890,Wired Headphones,1,11.99,2019-05-25 11:30:00,969 12th St, Austin,TX,73301 +196891,Apple Airpods Headphones,1,150.0,2019-05-31 00:19:00,995 Willow St, New York City,NY,10001 +196892,27in 4K Gaming Monitor,1,389.99,2019-05-30 20:45:00,845 Cedar St, Los Angeles,CA,90001 +196893,AAA Batteries (4-pack),2,2.99,2019-05-05 10:12:00,831 Hickory St, Los Angeles,CA,90001 +196894,Bose SoundSport Headphones,1,99.99,2019-05-22 09:47:00,528 Hill St, Dallas,TX,75001 +196895,USB-C Charging Cable,2,11.95,2019-05-31 17:15:00,301 Lakeview St, Boston,MA,02215 +196896,27in FHD Monitor,1,149.99,2019-05-20 14:38:00,870 Highland St, New York City,NY,10001 +196897,Bose SoundSport Headphones,1,99.99,2019-05-08 16:54:00,454 North St, San Francisco,CA,94016 +196898,Wired Headphones,1,11.99,2019-05-30 18:16:00,818 Lakeview St, Austin,TX,73301 +196899,AA Batteries (4-pack),1,3.84,2019-05-26 20:20:00,431 Center St, Austin,TX,73301 +196900,Bose SoundSport Headphones,1,99.99,2019-05-27 11:50:00,887 6th St, Atlanta,GA,30301 +196901,Lightning Charging Cable,2,14.95,2019-05-07 20:41:00,680 Spruce St, Los Angeles,CA,90001 +196902,Lightning Charging Cable,1,14.95,2019-05-19 15:01:00,436 Willow St, San Francisco,CA,94016 +196903,Google Phone,1,600.0,2019-05-16 08:33:00,764 River St, Boston,MA,02215 +196904,Lightning Charging Cable,1,14.95,2019-05-23 13:37:00,804 South St, Los Angeles,CA,90001 +196905,Wired Headphones,1,11.99,2019-05-15 20:15:00,294 1st St, San Francisco,CA,94016 +196906,27in 4K Gaming Monitor,1,389.99,2019-05-22 17:12:00,738 Chestnut St, San Francisco,CA,94016 +196907,ThinkPad Laptop,1,999.99,2019-05-02 15:45:00,239 Hill St, Dallas,TX,75001 +196908,USB-C Charging Cable,1,11.95,2019-05-08 09:54:00,19 Lake St, Seattle,WA,98101 +196909,Lightning Charging Cable,1,14.95,2019-05-23 08:58:00,365 Dogwood St, San Francisco,CA,94016 +196910,USB-C Charging Cable,1,11.95,2019-05-08 15:35:00,537 Jefferson St, Portland,OR,97035 +196911,AAA Batteries (4-pack),3,2.99,2019-05-31 09:51:00,879 13th St, Boston,MA,02215 +196912,USB-C Charging Cable,1,11.95,2019-05-02 20:03:00,998 Church St, Atlanta,GA,30301 +196913,Macbook Pro Laptop,1,1700.0,2019-05-15 21:16:00,919 West St, Seattle,WA,98101 +196914,Wired Headphones,1,11.99,2019-05-28 16:04:00,803 4th St, Boston,MA,02215 +196915,Google Phone,1,600.0,2019-05-20 16:39:00,235 Park St, Atlanta,GA,30301 +196916,AAA Batteries (4-pack),1,2.99,2019-05-27 22:44:00,842 Johnson St, Dallas,TX,75001 +196917,USB-C Charging Cable,1,11.95,2019-05-24 23:33:00,94 Center St, San Francisco,CA,94016 +196917,AA Batteries (4-pack),1,3.84,2019-05-24 23:33:00,94 Center St, San Francisco,CA,94016 +196918,AAA Batteries (4-pack),2,2.99,2019-05-08 12:59:00,76 Park St, Dallas,TX,75001 +196919,Wired Headphones,1,11.99,2019-05-26 10:19:00,209 12th St, San Francisco,CA,94016 +196920,USB-C Charging Cable,1,11.95,2019-05-10 15:15:00,110 Center St, Los Angeles,CA,90001 +196920,Lightning Charging Cable,1,14.95,2019-05-10 15:15:00,110 Center St, Los Angeles,CA,90001 +196921,USB-C Charging Cable,1,11.95,2019-05-20 08:54:00,248 Jackson St, Austin,TX,73301 +196922,27in 4K Gaming Monitor,1,389.99,2019-05-16 19:34:00,928 Forest St, Austin,TX,73301 +196923,AA Batteries (4-pack),1,3.84,2019-05-24 18:40:00,750 West St, Dallas,TX,75001 +196924,AA Batteries (4-pack),1,3.84,2019-05-08 17:20:00,335 6th St, Seattle,WA,98101 +196925,AAA Batteries (4-pack),2,2.99,2019-05-23 17:06:00,154 Johnson St, San Francisco,CA,94016 +196926,USB-C Charging Cable,1,11.95,2019-05-03 17:37:00,334 Maple St, San Francisco,CA,94016 +196927,Lightning Charging Cable,1,14.95,2019-05-05 20:47:00,878 South St, Portland,OR,97035 +196928,Apple Airpods Headphones,1,150.0,2019-05-28 16:22:00,404 Dogwood St, Dallas,TX,75001 +196929,USB-C Charging Cable,1,11.95,2019-05-23 21:27:00,622 Jackson St, Atlanta,GA,30301 +196930,Bose SoundSport Headphones,1,99.99,2019-05-20 20:50:00,542 Lake St, Atlanta,GA,30301 +196931,Lightning Charging Cable,1,14.95,2019-05-16 01:09:00,367 2nd St, Los Angeles,CA,90001 +196932,Wired Headphones,1,11.99,2019-05-10 18:31:00,367 Ridge St, New York City,NY,10001 +196933,Lightning Charging Cable,1,14.95,2019-05-04 16:52:00,231 Lincoln St, Austin,TX,73301 +196934,34in Ultrawide Monitor,1,379.99,2019-05-17 22:50:00,477 River St, Portland,ME,04101 +196935,USB-C Charging Cable,1,11.95,2019-05-18 11:34:00,197 Highland St, Los Angeles,CA,90001 +196936,ThinkPad Laptop,1,999.99,2019-05-16 12:56:00,148 Center St, San Francisco,CA,94016 +196937,34in Ultrawide Monitor,1,379.99,2019-05-02 12:00:00,344 Meadow St, Los Angeles,CA,90001 +196938,Lightning Charging Cable,1,14.95,2019-05-18 22:22:00,663 Lake St, Boston,MA,02215 +196939,Lightning Charging Cable,1,14.95,2019-05-21 15:19:00,570 Lake St, San Francisco,CA,94016 +196940,27in FHD Monitor,1,149.99,2019-05-11 07:52:00,326 Jefferson St, New York City,NY,10001 +196941,AA Batteries (4-pack),2,3.84,2019-05-02 22:46:00,23 Church St, Boston,MA,02215 +196942,Wired Headphones,1,11.99,2019-05-31 20:31:00,724 Spruce St, Los Angeles,CA,90001 +196943,Wired Headphones,1,11.99,2019-05-09 14:50:00,961 Meadow St, Dallas,TX,75001 +196944,27in FHD Monitor,1,149.99,2019-05-26 11:09:00,784 Madison St, Los Angeles,CA,90001 +196945,Google Phone,1,600.0,2019-05-30 15:55:00,133 Ridge St, Austin,TX,73301 +196946,USB-C Charging Cable,1,11.95,2019-05-23 16:03:00,957 Meadow St, Dallas,TX,75001 +196947,USB-C Charging Cable,1,11.95,2019-05-28 20:31:00,510 Lincoln St, New York City,NY,10001 +196948,27in 4K Gaming Monitor,1,389.99,2019-05-08 22:41:00,252 6th St, Boston,MA,02215 +196949,AAA Batteries (4-pack),2,2.99,2019-05-26 15:11:00,730 13th St, San Francisco,CA,94016 +196950,Wired Headphones,1,11.99,2019-05-07 14:47:00,402 Main St, New York City,NY,10001 +196951,Apple Airpods Headphones,1,150.0,2019-05-28 10:27:00,214 Meadow St, San Francisco,CA,94016 +196952,USB-C Charging Cable,1,11.95,2019-05-03 10:53:00,244 Main St, Los Angeles,CA,90001 +196953,iPhone,1,700.0,2019-05-03 01:30:00,264 13th St, New York City,NY,10001 +196954,Bose SoundSport Headphones,1,99.99,2019-05-16 12:45:00,595 Elm St, San Francisco,CA,94016 +196955,34in Ultrawide Monitor,1,379.99,2019-05-14 11:26:00,842 Walnut St, Dallas,TX,75001 +196956,AAA Batteries (4-pack),2,2.99,2019-05-14 21:28:00,949 West St, Atlanta,GA,30301 +196957,AAA Batteries (4-pack),2,2.99,2019-05-27 12:00:00,299 Cherry St, Los Angeles,CA,90001 +196958,Apple Airpods Headphones,1,150.0,2019-05-01 23:29:00,620 Madison St, Dallas,TX,75001 +196959,Lightning Charging Cable,1,14.95,2019-05-04 17:18:00,360 South St, Portland,OR,97035 +196960,Wired Headphones,1,11.99,2019-05-02 22:56:00,635 Hickory St, Los Angeles,CA,90001 +196961,Apple Airpods Headphones,1,150.0,2019-05-18 06:58:00,637 Adams St, Los Angeles,CA,90001 +196962,Lightning Charging Cable,1,14.95,2019-05-31 10:12:00,659 6th St, Austin,TX,73301 +196963,Macbook Pro Laptop,1,1700.0,2019-05-20 07:34:00,987 10th St, New York City,NY,10001 +196964,27in FHD Monitor,1,149.99,2019-05-09 18:39:00,692 7th St, San Francisco,CA,94016 +196965,Macbook Pro Laptop,1,1700.0,2019-05-19 20:03:00,937 Johnson St, San Francisco,CA,94016 +196966,AA Batteries (4-pack),2,3.84,2019-05-09 14:06:00,333 Forest St, Boston,MA,02215 +196967,Bose SoundSport Headphones,1,99.99,2019-05-16 21:29:00,365 11th St, Boston,MA,02215 +196968,AA Batteries (4-pack),1,3.84,2019-05-06 12:11:00,47 Main St, Seattle,WA,98101 +196969,Wired Headphones,1,11.99,2019-05-21 15:18:00,234 Johnson St, San Francisco,CA,94016 +196970,AAA Batteries (4-pack),1,2.99,2019-05-28 22:24:00,137 Elm St, Los Angeles,CA,90001 +196971,Macbook Pro Laptop,1,1700.0,2019-05-23 22:47:00,561 North St, Los Angeles,CA,90001 +196972,Apple Airpods Headphones,1,150.0,2019-05-22 16:56:00,682 Pine St, Boston,MA,02215 +196973,Wired Headphones,1,11.99,2019-05-25 10:29:00,794 Chestnut St, Boston,MA,02215 +196974,AA Batteries (4-pack),1,3.84,2019-05-09 13:51:00,319 Adams St, Atlanta,GA,30301 +196975,Apple Airpods Headphones,1,150.0,2019-05-27 11:48:00,781 Hickory St, Portland,ME,04101 +196976,AAA Batteries (4-pack),2,2.99,2019-05-17 21:18:00,742 8th St, San Francisco,CA,94016 +196977,USB-C Charging Cable,1,11.95,2019-05-04 22:40:00,190 Cherry St, New York City,NY,10001 +196978,Google Phone,1,600.0,2019-05-14 09:51:00,76 9th St, Atlanta,GA,30301 +196979,Bose SoundSport Headphones,1,99.99,2019-05-12 19:34:00,273 Adams St, New York City,NY,10001 +196980,USB-C Charging Cable,1,11.95,2019-05-04 12:15:00,543 Wilson St, Los Angeles,CA,90001 +196981,iPhone,1,700.0,2019-05-01 10:15:00,703 Sunset St, San Francisco,CA,94016 +196982,Wired Headphones,1,11.99,2019-05-03 18:48:00,533 Spruce St, San Francisco,CA,94016 +196983,Wired Headphones,2,11.99,2019-05-02 13:34:00,370 Washington St, Dallas,TX,75001 +196984,AA Batteries (4-pack),1,3.84,2019-05-12 16:13:00,602 Walnut St, San Francisco,CA,94016 +196985,Google Phone,1,600.0,2019-05-03 18:56:00,99 Center St, New York City,NY,10001 +196985,Wired Headphones,1,11.99,2019-05-03 18:56:00,99 Center St, New York City,NY,10001 +196986,Apple Airpods Headphones,1,150.0,2019-05-05 22:05:00,43 Pine St, Seattle,WA,98101 +196987,Macbook Pro Laptop,1,1700.0,2019-05-06 11:23:00,157 10th St, San Francisco,CA,94016 +196988,AA Batteries (4-pack),4,3.84,2019-05-05 18:06:00,376 Highland St, Seattle,WA,98101 +196989,AA Batteries (4-pack),1,3.84,2019-05-15 19:46:00,568 Johnson St, New York City,NY,10001 +196990,AA Batteries (4-pack),1,3.84,2019-05-29 08:32:00,126 Ridge St, Atlanta,GA,30301 +196990,iPhone,1,700.0,2019-05-29 08:32:00,126 Ridge St, Atlanta,GA,30301 +196991,AAA Batteries (4-pack),1,2.99,2019-05-23 21:21:00,62 Jackson St, San Francisco,CA,94016 +196992,Macbook Pro Laptop,1,1700.0,2019-05-21 03:09:00,722 Lakeview St, Boston,MA,02215 +196993,Apple Airpods Headphones,1,150.0,2019-05-07 12:26:00,360 Cherry St, Austin,TX,73301 +196994,AA Batteries (4-pack),1,3.84,2019-05-11 11:54:00,598 Spruce St, San Francisco,CA,94016 +196995,iPhone,1,700.0,2019-05-17 10:30:00,487 Jefferson St, Los Angeles,CA,90001 +196996,AA Batteries (4-pack),1,3.84,2019-05-31 21:10:00,994 Sunset St, Dallas,TX,75001 +196997,Apple Airpods Headphones,1,150.0,2019-05-03 20:49:00,246 Wilson St, San Francisco,CA,94016 +196998,Bose SoundSport Headphones,1,99.99,2019-05-02 12:42:00,957 Main St, San Francisco,CA,94016 +196999,USB-C Charging Cable,1,11.95,2019-05-12 15:24:00,850 6th St, New York City,NY,10001 +197000,AAA Batteries (4-pack),1,2.99,2019-05-02 12:00:00,549 Sunset St, San Francisco,CA,94016 +197001,AAA Batteries (4-pack),1,2.99,2019-05-22 12:13:00,163 12th St, San Francisco,CA,94016 +197002,Wired Headphones,2,11.99,2019-05-10 11:56:00,749 Highland St, New York City,NY,10001 +197003,27in FHD Monitor,1,149.99,2019-05-11 14:00:00,509 Pine St, Los Angeles,CA,90001 +197004,AA Batteries (4-pack),1,3.84,2019-05-31 02:06:00,544 Main St, New York City,NY,10001 +197004,20in Monitor,1,109.99,2019-05-31 02:06:00,544 Main St, New York City,NY,10001 +197005,20in Monitor,1,109.99,2019-05-02 11:56:00,682 Sunset St, Portland,OR,97035 +197006,Apple Airpods Headphones,1,150.0,2019-05-04 15:27:00,240 8th St, Austin,TX,73301 +197007,USB-C Charging Cable,1,11.95,2019-05-24 23:01:00,333 North St, Portland,OR,97035 +197008,Lightning Charging Cable,2,14.95,2019-05-09 19:41:00,375 13th St, New York City,NY,10001 +197009,LG Washing Machine,1,600.0,2019-05-04 19:08:00,152 River St, Austin,TX,73301 +197010,27in 4K Gaming Monitor,1,389.99,2019-05-30 20:41:00,610 Walnut St, New York City,NY,10001 +197011,Lightning Charging Cable,1,14.95,2019-05-26 09:32:00,886 Main St, Seattle,WA,98101 +197012,AA Batteries (4-pack),2,3.84,2019-05-18 11:27:00,371 Chestnut St, Boston,MA,02215 +197013,Google Phone,1,600.0,2019-05-30 09:05:00,470 South St, New York City,NY,10001 +197014,AAA Batteries (4-pack),1,2.99,2019-05-15 12:27:00,517 Cedar St, Dallas,TX,75001 +197015,27in FHD Monitor,1,149.99,2019-05-15 08:14:00,396 Jefferson St, Austin,TX,73301 +197016,Lightning Charging Cable,1,14.95,2019-05-24 19:08:00,348 Johnson St, Seattle,WA,98101 +197017,Google Phone,1,600.0,2019-05-04 21:12:00,439 Forest St, San Francisco,CA,94016 +197018,AA Batteries (4-pack),1,3.84,2019-05-30 15:00:00,48 Chestnut St, San Francisco,CA,94016 +197019,Wired Headphones,1,11.99,2019-05-31 13:13:00,14 8th St, San Francisco,CA,94016 +197020,27in FHD Monitor,1,149.99,2019-05-04 14:57:00,428 1st St, New York City,NY,10001 +197021,AAA Batteries (4-pack),1,2.99,2019-05-30 18:45:00,553 11th St, Dallas,TX,75001 +197022,Wired Headphones,1,11.99,2019-05-12 20:17:00,3 Chestnut St, Austin,TX,73301 +197023,LG Washing Machine,1,600.0,2019-05-05 12:38:00,783 2nd St, Los Angeles,CA,90001 +197024,Flatscreen TV,1,300.0,2019-05-23 12:36:00,217 Chestnut St, San Francisco,CA,94016 +197025,AA Batteries (4-pack),1,3.84,2019-05-01 12:51:00,370 River St, Los Angeles,CA,90001 +197026,Flatscreen TV,1,300.0,2019-05-04 12:59:00,577 8th St, Dallas,TX,75001 +197027,iPhone,1,700.0,2019-05-31 10:24:00,906 Lake St, Los Angeles,CA,90001 +197028,AA Batteries (4-pack),1,3.84,2019-05-25 11:34:00,551 8th St, New York City,NY,10001 +197029,Lightning Charging Cable,1,14.95,2019-05-09 23:52:00,345 Lincoln St, Atlanta,GA,30301 +197030,27in FHD Monitor,1,149.99,2019-05-07 17:27:00,654 13th St, Portland,OR,97035 +197031,AA Batteries (4-pack),1,3.84,2019-05-21 14:46:00,908 North St, Portland,OR,97035 +197032,27in 4K Gaming Monitor,1,389.99,2019-05-29 15:54:00,557 North St, Austin,TX,73301 +197033,AAA Batteries (4-pack),1,2.99,2019-05-04 15:45:00,209 Meadow St, New York City,NY,10001 +197034,Apple Airpods Headphones,1,150.0,2019-05-10 18:37:00,626 Jackson St, Portland,ME,04101 +197035,Apple Airpods Headphones,1,150.0,2019-05-10 18:35:00,473 Jefferson St, San Francisco,CA,94016 +197036,Bose SoundSport Headphones,1,99.99,2019-05-31 00:35:00,849 Sunset St, Portland,OR,97035 +197037,Bose SoundSport Headphones,1,99.99,2019-05-03 10:24:00,613 South St, Los Angeles,CA,90001 +197038,AAA Batteries (4-pack),1,2.99,2019-05-26 08:54:00,331 Maple St, Dallas,TX,75001 +197039,AA Batteries (4-pack),2,3.84,2019-05-18 19:32:00,865 Elm St, San Francisco,CA,94016 +197040,34in Ultrawide Monitor,1,379.99,2019-05-22 19:02:00,986 Jefferson St, New York City,NY,10001 +197041,Google Phone,1,600.0,2019-05-09 16:34:00,824 9th St, Dallas,TX,75001 +197041,USB-C Charging Cable,1,11.95,2019-05-09 16:34:00,824 9th St, Dallas,TX,75001 +197042,USB-C Charging Cable,1,11.95,2019-05-14 08:21:00,531 Church St, Portland,ME,04101 +197043,Bose SoundSport Headphones,1,99.99,2019-05-12 19:20:00,549 1st St, Los Angeles,CA,90001 +197044,AA Batteries (4-pack),1,3.84,2019-05-31 19:18:00,301 South St, Seattle,WA,98101 +197045,Bose SoundSport Headphones,1,99.99,2019-05-25 09:02:00,537 Spruce St, Dallas,TX,75001 +197046,AAA Batteries (4-pack),1,2.99,2019-05-29 11:22:00,734 Park St, Boston,MA,02215 +197047,AAA Batteries (4-pack),3,2.99,2019-05-20 01:52:00,934 Elm St, New York City,NY,10001 +197048,Lightning Charging Cable,1,14.95,2019-05-18 01:22:00,267 2nd St, Dallas,TX,75001 +197049,Flatscreen TV,1,300.0,2019-05-27 15:08:00,77 South St, New York City,NY,10001 +197050,Lightning Charging Cable,1,14.95,2019-05-21 09:12:00,423 Lincoln St, San Francisco,CA,94016 +197051,ThinkPad Laptop,1,999.99,2019-05-04 15:35:00,231 Willow St, Dallas,TX,75001 +197052,iPhone,1,700.0,2019-05-11 18:52:00,380 13th St, Los Angeles,CA,90001 +197053,AA Batteries (4-pack),1,3.84,2019-05-21 13:09:00,443 Madison St, Los Angeles,CA,90001 +197054,ThinkPad Laptop,1,999.99,2019-05-13 19:28:00,750 Sunset St, Los Angeles,CA,90001 +197055,Lightning Charging Cable,1,14.95,2019-05-22 23:57:00,118 5th St, Los Angeles,CA,90001 +197056,27in 4K Gaming Monitor,1,389.99,2019-05-12 21:30:00,904 Spruce St, Los Angeles,CA,90001 +197057,AAA Batteries (4-pack),2,2.99,2019-05-19 13:06:00,302 2nd St, New York City,NY,10001 +197058,Bose SoundSport Headphones,1,99.99,2019-05-05 18:21:00,463 Hickory St, San Francisco,CA,94016 +197059,Bose SoundSport Headphones,1,99.99,2019-05-16 14:33:00,775 Wilson St, Atlanta,GA,30301 +197060,Apple Airpods Headphones,1,150.0,2019-05-21 16:24:00,509 2nd St, Boston,MA,02215 +197061,USB-C Charging Cable,1,11.95,2019-05-31 18:51:00,726 Lincoln St, Los Angeles,CA,90001 +197062,Wired Headphones,1,11.99,2019-05-31 13:39:00,801 Maple St, Dallas,TX,75001 +197063,Apple Airpods Headphones,1,150.0,2019-05-31 20:52:00,164 Church St, Boston,MA,02215 +197064,USB-C Charging Cable,1,11.95,2019-05-27 11:07:00,965 Willow St, New York City,NY,10001 +197065,USB-C Charging Cable,1,11.95,2019-05-04 20:55:00,737 4th St, Seattle,WA,98101 +197066,27in FHD Monitor,1,149.99,2019-05-31 17:13:00,293 Cherry St, Portland,ME,04101 +197067,AAA Batteries (4-pack),1,2.99,2019-05-02 19:11:00,258 Park St, New York City,NY,10001 +197068,AA Batteries (4-pack),2,3.84,2019-05-03 17:44:00,582 Pine St, New York City,NY,10001 +197069,Vareebadd Phone,1,400.0,2019-05-18 13:14:00,71 Center St, San Francisco,CA,94016 +197070,USB-C Charging Cable,1,11.95,2019-05-22 12:42:00,480 Meadow St, Los Angeles,CA,90001 +197071,AA Batteries (4-pack),4,3.84,2019-05-15 23:34:00,594 Walnut St, San Francisco,CA,94016 +197072,Lightning Charging Cable,1,14.95,2019-05-20 17:12:00,737 Dogwood St, San Francisco,CA,94016 +197073,Google Phone,1,600.0,2019-05-24 19:25:00,853 Johnson St, New York City,NY,10001 +197074,Lightning Charging Cable,1,14.95,2019-05-31 09:04:00,165 South St, New York City,NY,10001 +197075,Bose SoundSport Headphones,1,99.99,2019-05-01 14:04:00,375 Chestnut St, San Francisco,CA,94016 +197076,AAA Batteries (4-pack),2,2.99,2019-05-09 12:07:00,760 River St, Portland,OR,97035 +197076,AAA Batteries (4-pack),1,2.99,2019-05-09 12:07:00,760 River St, Portland,OR,97035 +197077,Apple Airpods Headphones,1,150.0,2019-05-10 08:51:00,749 Hickory St, Boston,MA,02215 +197078,Bose SoundSport Headphones,1,99.99,2019-05-19 17:49:00,758 West St, New York City,NY,10001 +197079,Lightning Charging Cable,1,14.95,2019-05-02 13:51:00,79 Meadow St, Seattle,WA,98101 +197080,AA Batteries (4-pack),1,3.84,2019-05-06 12:20:00,625 6th St, Seattle,WA,98101 +197081,Lightning Charging Cable,1,14.95,2019-05-15 15:05:00,228 11th St, New York City,NY,10001 +197082,Google Phone,1,600.0,2019-05-14 21:24:00,226 Wilson St, Los Angeles,CA,90001 +197082,Bose SoundSport Headphones,1,99.99,2019-05-14 21:24:00,226 Wilson St, Los Angeles,CA,90001 +197082,Wired Headphones,1,11.99,2019-05-14 21:24:00,226 Wilson St, Los Angeles,CA,90001 +197083,AA Batteries (4-pack),1,3.84,2019-05-22 03:50:00,792 Chestnut St, Dallas,TX,75001 +197084,27in FHD Monitor,1,149.99,2019-05-06 22:46:00,581 Elm St, Dallas,TX,75001 +197085,Wired Headphones,1,11.99,2019-05-02 11:09:00,109 Walnut St, San Francisco,CA,94016 +197086,Apple Airpods Headphones,1,150.0,2019-05-16 14:32:00,808 Johnson St, Los Angeles,CA,90001 +197087,Apple Airpods Headphones,1,150.0,2019-05-07 09:05:00,443 12th St, Dallas,TX,75001 +197088,USB-C Charging Cable,1,11.95,2019-05-31 22:01:00,240 10th St, Dallas,TX,75001 +197089,Macbook Pro Laptop,1,1700.0,2019-05-09 12:54:00,179 Willow St, San Francisco,CA,94016 +197090,Flatscreen TV,1,300.0,2019-05-07 10:19:00,415 River St, Seattle,WA,98101 +197091,AAA Batteries (4-pack),1,2.99,2019-05-29 10:47:00,207 Dogwood St, New York City,NY,10001 +197092,Wired Headphones,1,11.99,2019-05-16 15:04:00,559 Chestnut St, Dallas,TX,75001 +197093,AA Batteries (4-pack),1,3.84,2019-05-10 22:09:00,764 Sunset St, Portland,OR,97035 +197094,Bose SoundSport Headphones,1,99.99,2019-05-27 18:19:00,924 Lincoln St, Dallas,TX,75001 +197095,Wired Headphones,1,11.99,2019-05-09 22:24:00,640 River St, San Francisco,CA,94016 +197096,Macbook Pro Laptop,1,1700.0,2019-05-06 13:32:00,908 Lake St, Dallas,TX,75001 +197097,Flatscreen TV,1,300.0,2019-05-06 14:38:00,587 Forest St, San Francisco,CA,94016 +197098,Apple Airpods Headphones,1,150.0,2019-05-15 19:22:00,966 11th St, Atlanta,GA,30301 +197099,Google Phone,1,600.0,2019-05-29 07:15:00,437 2nd St, Atlanta,GA,30301 +197099,USB-C Charging Cable,1,11.95,2019-05-29 07:15:00,437 2nd St, Atlanta,GA,30301 +197100,34in Ultrawide Monitor,1,379.99,2019-05-20 21:14:00,352 8th St, Portland,OR,97035 +197101,Lightning Charging Cable,1,14.95,2019-05-08 12:45:00,7 Maple St, San Francisco,CA,94016 +197102,Wired Headphones,1,11.99,2019-05-26 22:21:00,964 Elm St, New York City,NY,10001 +197103,iPhone,1,700.0,2019-05-09 15:48:00,50 13th St, Dallas,TX,75001 +197104,Wired Headphones,1,11.99,2019-05-23 07:37:00,927 Pine St, Seattle,WA,98101 +197105,USB-C Charging Cable,1,11.95,2019-05-30 15:39:00,976 13th St, San Francisco,CA,94016 +197106,AA Batteries (4-pack),1,3.84,2019-05-11 21:19:00,582 Johnson St, Dallas,TX,75001 +197107,Wired Headphones,1,11.99,2019-05-24 15:30:00,386 Lincoln St, Seattle,WA,98101 +197108,Bose SoundSport Headphones,1,99.99,2019-05-20 12:45:00,300 10th St, Dallas,TX,75001 +197109,Macbook Pro Laptop,1,1700.0,2019-05-15 19:33:00,803 11th St, Atlanta,GA,30301 +197110,Lightning Charging Cable,1,14.95,2019-05-16 07:43:00,427 Cedar St, Portland,OR,97035 +197111,Wired Headphones,1,11.99,2019-05-07 18:10:00,275 Lake St, Seattle,WA,98101 +197112,Lightning Charging Cable,2,14.95,2019-05-01 16:12:00,95 10th St, San Francisco,CA,94016 +197113,Lightning Charging Cable,1,14.95,2019-05-02 18:05:00,317 Center St, Boston,MA,02215 +197114,Lightning Charging Cable,1,14.95,2019-05-10 21:08:00,734 14th St, Portland,ME,04101 +197115,AAA Batteries (4-pack),4,2.99,2019-05-21 17:14:00,524 1st St, Los Angeles,CA,90001 +197116,Vareebadd Phone,1,400.0,2019-05-28 16:21:00,132 10th St, San Francisco,CA,94016 +197117,AAA Batteries (4-pack),1,2.99,2019-05-09 19:36:00,335 Lakeview St, Dallas,TX,75001 +197118,Google Phone,1,600.0,2019-05-16 15:08:00,47 2nd St, Austin,TX,73301 +197118,Bose SoundSport Headphones,1,99.99,2019-05-16 15:08:00,47 2nd St, Austin,TX,73301 +197119,AA Batteries (4-pack),1,3.84,2019-05-06 13:47:00,15 9th St, New York City,NY,10001 +197120,AA Batteries (4-pack),1,3.84,2019-05-04 08:39:00,409 Hill St, New York City,NY,10001 +197121,Bose SoundSport Headphones,1,99.99,2019-05-29 06:39:00,359 Cedar St, Dallas,TX,75001 +197122,AA Batteries (4-pack),1,3.84,2019-05-08 16:52:00,489 Johnson St, New York City,NY,10001 +197123,ThinkPad Laptop,1,999.99,2019-05-26 16:43:00,758 Jefferson St, New York City,NY,10001 +197124,Vareebadd Phone,1,400.0,2019-05-23 12:13:00,124 Sunset St, Seattle,WA,98101 +197124,Wired Headphones,1,11.99,2019-05-23 12:13:00,124 Sunset St, Seattle,WA,98101 +197125,Wired Headphones,1,11.99,2019-05-11 16:39:00,377 2nd St, Boston,MA,02215 +197126,27in 4K Gaming Monitor,1,389.99,2019-05-19 09:53:00,313 Church St, San Francisco,CA,94016 +197127,ThinkPad Laptop,1,999.99,2019-05-14 23:15:00,638 Jackson St, Los Angeles,CA,90001 +197128,AAA Batteries (4-pack),1,2.99,2019-05-18 19:55:00,433 Dogwood St, San Francisco,CA,94016 +197129,Bose SoundSport Headphones,1,99.99,2019-05-12 19:20:00,670 10th St, Los Angeles,CA,90001 +197130,Wired Headphones,1,11.99,2019-05-17 10:11:00,342 5th St, San Francisco,CA,94016 +197131,AAA Batteries (4-pack),2,2.99,2019-05-13 13:25:00,862 Lake St, Dallas,TX,75001 +197132,AAA Batteries (4-pack),2,2.99,2019-05-27 14:13:00,479 10th St, San Francisco,CA,94016 +197133,AA Batteries (4-pack),1,3.84,2019-05-12 14:24:00,718 South St, Los Angeles,CA,90001 +197134,Lightning Charging Cable,1,14.95,2019-05-20 13:54:00,399 Willow St, New York City,NY,10001 +197135,34in Ultrawide Monitor,1,379.99,2019-05-27 16:00:00,976 2nd St, New York City,NY,10001 +197136,USB-C Charging Cable,1,11.95,2019-05-12 09:26:00,627 Main St, Seattle,WA,98101 +197137,iPhone,1,700.0,2019-05-11 09:09:00,135 Cherry St, Los Angeles,CA,90001 +197138,Apple Airpods Headphones,1,150.0,2019-05-09 13:31:00,169 Main St, San Francisco,CA,94016 +197139,ThinkPad Laptop,1,999.99,2019-05-05 12:27:00,674 Hill St, Dallas,TX,75001 +197140,Apple Airpods Headphones,1,150.0,2019-05-31 18:16:00,342 West St, San Francisco,CA,94016 +197141,Macbook Pro Laptop,1,1700.0,2019-05-01 10:40:00,227 6th St, Dallas,TX,75001 +197142,ThinkPad Laptop,1,999.99,2019-05-02 19:58:00,381 Main St, New York City,NY,10001 +197143,Wired Headphones,1,11.99,2019-05-29 19:20:00,591 2nd St, New York City,NY,10001 +197144,Bose SoundSport Headphones,1,99.99,2019-05-05 13:23:00,638 1st St, Boston,MA,02215 +197145,Lightning Charging Cable,1,14.95,2019-05-19 20:26:00,421 Madison St, Los Angeles,CA,90001 +197146,Lightning Charging Cable,1,14.95,2019-05-20 22:05:00,761 Spruce St, Boston,MA,02215 +197147,AAA Batteries (4-pack),1,2.99,2019-05-28 11:38:00,81 9th St, San Francisco,CA,94016 +197148,Lightning Charging Cable,1,14.95,2019-05-11 10:39:00,285 Cedar St, Portland,OR,97035 +197149,AAA Batteries (4-pack),1,2.99,2019-05-13 16:36:00,873 Hill St, San Francisco,CA,94016 +197150,Google Phone,1,600.0,2019-05-21 21:04:00,956 13th St, Los Angeles,CA,90001 +197151,USB-C Charging Cable,1,11.95,2019-05-15 11:11:00,131 Ridge St, Atlanta,GA,30301 +197152,27in 4K Gaming Monitor,1,389.99,2019-05-02 18:18:00,812 4th St, San Francisco,CA,94016 +197153,Lightning Charging Cable,1,14.95,2019-05-12 22:03:00,454 Park St, Dallas,TX,75001 +197154,Lightning Charging Cable,1,14.95,2019-05-10 18:11:00,134 Meadow St, New York City,NY,10001 +197155,Wired Headphones,1,11.99,2019-05-24 08:07:00,459 Center St, Atlanta,GA,30301 +197156,ThinkPad Laptop,1,999.99,2019-05-01 10:07:00,430 Cedar St, Dallas,TX,75001 +197157,27in FHD Monitor,1,149.99,2019-05-15 21:54:00,461 Madison St, San Francisco,CA,94016 +197158,Wired Headphones,1,11.99,2019-05-03 06:58:00,691 Jackson St, New York City,NY,10001 +197159,34in Ultrawide Monitor,1,379.99,2019-05-16 09:38:00,330 6th St, Los Angeles,CA,90001 +197160,Bose SoundSport Headphones,1,99.99,2019-05-08 20:52:00,509 Johnson St, San Francisco,CA,94016 +197161,Wired Headphones,1,11.99,2019-05-13 10:09:00,162 Willow St, Seattle,WA,98101 +197162,Lightning Charging Cable,1,14.95,2019-05-21 08:38:00,41 Park St, Portland,OR,97035 +197163,USB-C Charging Cable,1,11.95,2019-05-28 10:09:00,842 Maple St, New York City,NY,10001 +197164,AA Batteries (4-pack),1,3.84,2019-05-15 20:33:00,331 9th St, Dallas,TX,75001 +197165,Apple Airpods Headphones,1,150.0,2019-05-30 23:01:00,515 5th St, Atlanta,GA,30301 +197166,AA Batteries (4-pack),1,3.84,2019-05-29 18:04:00,989 4th St, San Francisco,CA,94016 +197167,iPhone,1,700.0,2019-05-07 12:06:00,758 Adams St, San Francisco,CA,94016 +197168,27in 4K Gaming Monitor,1,389.99,2019-05-30 16:48:00,928 Wilson St, New York City,NY,10001 +197169,Macbook Pro Laptop,1,1700.0,2019-05-13 17:49:00,468 6th St, Boston,MA,02215 +197170,AAA Batteries (4-pack),1,2.99,2019-05-16 21:07:00,79 7th St, New York City,NY,10001 +197171,Wired Headphones,1,11.99,2019-05-11 20:56:00,370 Elm St, Dallas,TX,75001 +197172,Apple Airpods Headphones,1,150.0,2019-05-27 08:52:00,475 Lincoln St, Portland,OR,97035 +197173,Macbook Pro Laptop,1,1700.0,2019-05-18 18:19:00,593 River St, San Francisco,CA,94016 +197174,LG Dryer,1,600.0,2019-05-08 01:04:00,912 11th St, Los Angeles,CA,90001 +197175,USB-C Charging Cable,1,11.95,2019-05-31 17:20:00,578 10th St, San Francisco,CA,94016 +197176,Lightning Charging Cable,1,14.95,2019-05-26 22:08:00,746 Highland St, New York City,NY,10001 +197177,Wired Headphones,1,11.99,2019-05-16 22:53:00,512 Jackson St, Dallas,TX,75001 +197178,Lightning Charging Cable,1,14.95,2019-05-26 11:52:00,401 River St, New York City,NY,10001 +197179,ThinkPad Laptop,1,999.99,2019-05-30 00:20:00,228 Highland St, Los Angeles,CA,90001 +197180,Wired Headphones,1,11.99,2019-05-15 13:41:00,820 South St, Seattle,WA,98101 +197181,Bose SoundSport Headphones,1,99.99,2019-05-23 23:03:00,210 Ridge St, San Francisco,CA,94016 +197181,iPhone,1,700.0,2019-05-23 23:03:00,210 Ridge St, San Francisco,CA,94016 +197182,AA Batteries (4-pack),1,3.84,2019-05-08 13:12:00,603 Lake St, San Francisco,CA,94016 +197183,Wired Headphones,1,11.99,2019-05-13 11:52:00,442 North St, San Francisco,CA,94016 +197184,AA Batteries (4-pack),1,3.84,2019-05-10 07:59:00,619 11th St, Dallas,TX,75001 +197185,AA Batteries (4-pack),2,3.84,2019-05-07 09:53:00,219 Main St, Atlanta,GA,30301 +197186,Lightning Charging Cable,1,14.95,2019-05-30 12:16:00,913 7th St, Portland,OR,97035 +197187,Lightning Charging Cable,1,14.95,2019-05-21 14:30:00,791 Hickory St, New York City,NY,10001 +197188,Lightning Charging Cable,1,14.95,2019-05-27 19:33:00,119 Hickory St, San Francisco,CA,94016 +197189,AA Batteries (4-pack),1,3.84,2019-05-16 07:20:00,368 Jackson St, San Francisco,CA,94016 +197190,AA Batteries (4-pack),1,3.84,2019-05-11 09:54:00,979 Washington St, Seattle,WA,98101 +197191,Wired Headphones,1,11.99,2019-05-31 10:02:00,721 1st St, San Francisco,CA,94016 +197192,AA Batteries (4-pack),2,3.84,2019-05-21 15:28:00,323 9th St, Boston,MA,02215 +197193,AAA Batteries (4-pack),4,2.99,2019-05-05 12:03:00,441 8th St, Atlanta,GA,30301 +197194,AAA Batteries (4-pack),2,2.99,2019-05-26 15:22:00,553 2nd St, Los Angeles,CA,90001 +197195,Wired Headphones,1,11.99,2019-05-04 16:20:00,462 River St, Los Angeles,CA,90001 +197196,Lightning Charging Cable,1,14.95,2019-05-24 15:40:00,370 7th St, San Francisco,CA,94016 +197197,AAA Batteries (4-pack),1,2.99,2019-05-25 11:44:00,455 Ridge St, Portland,OR,97035 +197198,34in Ultrawide Monitor,1,379.99,2019-05-14 14:28:00,959 North St, San Francisco,CA,94016 +197199,AAA Batteries (4-pack),1,2.99,2019-05-31 13:51:00,831 Washington St, Austin,TX,73301 +197200,AAA Batteries (4-pack),2,2.99,2019-05-03 09:31:00,732 River St, San Francisco,CA,94016 +197201,ThinkPad Laptop,1,999.99,2019-05-26 17:43:00,631 Willow St, New York City,NY,10001 +197202,Lightning Charging Cable,1,14.95,2019-05-27 10:00:00,717 4th St, New York City,NY,10001 +197203,AA Batteries (4-pack),1,3.84,2019-05-17 22:43:00,876 12th St, Atlanta,GA,30301 +197204,34in Ultrawide Monitor,1,379.99,2019-05-12 09:58:00,703 9th St, Seattle,WA,98101 +197205,Bose SoundSport Headphones,1,99.99,2019-05-22 16:16:00,582 13th St, New York City,NY,10001 +197206,Bose SoundSport Headphones,1,99.99,2019-05-07 21:45:00,83 Walnut St, Austin,TX,73301 +197207,Lightning Charging Cable,1,14.95,2019-05-30 16:51:00,655 Elm St, Los Angeles,CA,90001 +197208,Wired Headphones,1,11.99,2019-05-18 12:41:00,416 11th St, Portland,OR,97035 +197209,iPhone,1,700.0,2019-05-24 07:49:00,314 Hickory St, San Francisco,CA,94016 +197209,Lightning Charging Cable,1,14.95,2019-05-24 07:49:00,314 Hickory St, San Francisco,CA,94016 +197210,AA Batteries (4-pack),1,3.84,2019-05-21 12:41:00,650 11th St, Los Angeles,CA,90001 +197211,27in 4K Gaming Monitor,1,389.99,2019-05-25 15:43:00,975 13th St, San Francisco,CA,94016 +197212,Wired Headphones,2,11.99,2019-05-29 15:19:00,760 Lake St, San Francisco,CA,94016 +197213,AA Batteries (4-pack),1,3.84,2019-05-09 17:24:00,328 Meadow St, Dallas,TX,75001 +197214,Apple Airpods Headphones,1,150.0,2019-05-22 21:02:00,288 Johnson St, Portland,ME,04101 +197215,AAA Batteries (4-pack),1,2.99,2019-05-20 12:18:00,901 Center St, Seattle,WA,98101 +197216,iPhone,1,700.0,2019-05-09 16:50:00,34 1st St, Portland,ME,04101 +197217,AAA Batteries (4-pack),1,2.99,2019-05-17 18:10:00,391 Meadow St, San Francisco,CA,94016 +197218,Wired Headphones,1,11.99,2019-05-28 10:25:00,288 Hill St, San Francisco,CA,94016 +197219,Flatscreen TV,1,300.0,2019-05-17 14:07:00,957 9th St, New York City,NY,10001 +197220,AA Batteries (4-pack),1,3.84,2019-05-08 21:24:00,54 6th St, Dallas,TX,75001 +197221,AAA Batteries (4-pack),1,2.99,2019-05-15 12:02:00,515 Meadow St, Dallas,TX,75001 +197222,iPhone,1,700.0,2019-05-10 07:55:00,401 12th St, Atlanta,GA,30301 +197223,AAA Batteries (4-pack),2,2.99,2019-05-28 07:42:00,200 North St, Dallas,TX,75001 +197224,USB-C Charging Cable,1,11.95,2019-05-12 20:48:00,587 1st St, Austin,TX,73301 +197225,Macbook Pro Laptop,1,1700.0,2019-05-22 14:13:00,467 Park St, Atlanta,GA,30301 +197226,Apple Airpods Headphones,1,150.0,2019-05-05 17:54:00,797 Ridge St, San Francisco,CA,94016 +197227,34in Ultrawide Monitor,1,379.99,2019-05-14 20:24:00,110 Walnut St, New York City,NY,10001 +197228,Apple Airpods Headphones,1,150.0,2019-05-19 21:53:00,67 Dogwood St, Seattle,WA,98101 +197229,Bose SoundSport Headphones,1,99.99,2019-05-12 11:28:00,259 Washington St, New York City,NY,10001 +197230,AAA Batteries (4-pack),1,2.99,2019-05-25 20:11:00,591 Spruce St, Boston,MA,02215 +197231,Flatscreen TV,1,300.0,2019-05-26 22:58:00,648 Jackson St, San Francisco,CA,94016 +197232,Lightning Charging Cable,1,14.95,2019-05-29 08:45:00,295 9th St, Los Angeles,CA,90001 +197233,USB-C Charging Cable,1,11.95,2019-05-29 15:52:00,616 Park St, San Francisco,CA,94016 +197234,34in Ultrawide Monitor,1,379.99,2019-05-26 13:26:00,837 5th St, Atlanta,GA,30301 +197235,Apple Airpods Headphones,1,150.0,2019-05-02 18:45:00,230 14th St, Boston,MA,02215 +197236,34in Ultrawide Monitor,1,379.99,2019-05-30 07:18:00,660 Dogwood St, Dallas,TX,75001 +197237,Macbook Pro Laptop,1,1700.0,2019-05-29 16:21:00,900 4th St, San Francisco,CA,94016 +197238,Apple Airpods Headphones,1,150.0,2019-05-28 14:11:00,543 Chestnut St, Seattle,WA,98101 +197239,AA Batteries (4-pack),2,3.84,2019-05-13 12:38:00,10 Hill St, Boston,MA,02215 +197240,27in FHD Monitor,1,149.99,2019-05-12 11:28:00,672 Cherry St, Seattle,WA,98101 +197241,Google Phone,1,600.0,2019-05-28 19:05:00,553 Jackson St, Portland,OR,97035 +197242,AA Batteries (4-pack),2,3.84,2019-05-12 18:38:00,132 11th St, Portland,OR,97035 +197243,iPhone,1,700.0,2019-05-27 13:46:00,803 6th St, Atlanta,GA,30301 +197244,Bose SoundSport Headphones,1,99.99,2019-05-27 00:17:00,170 Spruce St, Atlanta,GA,30301 +197245,AA Batteries (4-pack),1,3.84,2019-05-01 15:49:00,983 8th St, Portland,OR,97035 +197246,USB-C Charging Cable,1,11.95,2019-05-04 15:56:00,195 6th St, Boston,MA,02215 +197247,Lightning Charging Cable,1,14.95,2019-05-10 05:11:00,880 South St, San Francisco,CA,94016 +197248,USB-C Charging Cable,1,11.95,2019-05-23 09:19:00,261 2nd St, San Francisco,CA,94016 +197249,Bose SoundSport Headphones,1,99.99,2019-05-04 19:21:00,420 2nd St, Boston,MA,02215 +197250,Macbook Pro Laptop,1,1700.0,2019-05-02 20:24:00,931 13th St, San Francisco,CA,94016 +197251,Bose SoundSport Headphones,1,99.99,2019-05-06 00:23:00,566 Dogwood St, Los Angeles,CA,90001 +197252,Macbook Pro Laptop,1,1700.0,2019-05-28 15:49:00,725 Forest St, San Francisco,CA,94016 +197253,AAA Batteries (4-pack),1,2.99,2019-05-20 21:57:00,257 Dogwood St, Los Angeles,CA,90001 +197254,27in 4K Gaming Monitor,1,389.99,2019-05-12 09:57:00,819 Lake St, New York City,NY,10001 +197255,AAA Batteries (4-pack),2,2.99,2019-05-13 18:09:00,226 8th St, Los Angeles,CA,90001 +197256,USB-C Charging Cable,1,11.95,2019-05-30 23:46:00,103 1st St, Seattle,WA,98101 +197257,Apple Airpods Headphones,1,150.0,2019-05-19 20:37:00,820 West St, Seattle,WA,98101 +197258,Wired Headphones,1,11.99,2019-05-10 00:21:00,270 Adams St, Boston,MA,02215 +197259,Wired Headphones,1,11.99,2019-05-09 17:08:00,949 Highland St, Dallas,TX,75001 +197260,Google Phone,1,600.0,2019-05-24 10:47:00,870 Lake St, Seattle,WA,98101 +197261,USB-C Charging Cable,1,11.95,2019-05-31 16:27:00,715 Elm St, San Francisco,CA,94016 +197262,Bose SoundSport Headphones,1,99.99,2019-05-26 09:14:00,713 11th St, New York City,NY,10001 +197263,USB-C Charging Cable,1,11.95,2019-05-14 13:41:00,446 Elm St, New York City,NY,10001 +197264,20in Monitor,1,109.99,2019-05-30 21:59:00,84 Main St, New York City,NY,10001 +197265,Apple Airpods Headphones,1,150.0,2019-05-13 23:10:00,82 Johnson St, Boston,MA,02215 +197266,USB-C Charging Cable,1,11.95,2019-05-16 09:16:00,200 Cedar St, Atlanta,GA,30301 +197267,Google Phone,1,600.0,2019-05-19 12:24:00,10 Lincoln St, San Francisco,CA,94016 +197268,AAA Batteries (4-pack),1,2.99,2019-05-22 17:42:00,330 Johnson St, Los Angeles,CA,90001 +197269,LG Washing Machine,1,600.0,2019-05-08 20:55:00,89 12th St, Los Angeles,CA,90001 +197270,Wired Headphones,1,11.99,2019-05-03 08:17:00,375 Cedar St, Dallas,TX,75001 +197271,Macbook Pro Laptop,1,1700.0,2019-05-07 15:44:00,574 Forest St, Atlanta,GA,30301 +197272,ThinkPad Laptop,1,999.99,2019-05-15 10:39:00,910 Main St, Portland,OR,97035 +197273,iPhone,1,700.0,2019-05-25 19:42:00,407 Chestnut St, Seattle,WA,98101 +197273,Lightning Charging Cable,1,14.95,2019-05-25 19:42:00,407 Chestnut St, Seattle,WA,98101 +197274,27in 4K Gaming Monitor,1,389.99,2019-05-23 14:53:00,795 12th St, San Francisco,CA,94016 +197275,AA Batteries (4-pack),1,3.84,2019-05-28 22:59:00,697 Spruce St, Dallas,TX,75001 +197276,AAA Batteries (4-pack),2,2.99,2019-05-27 14:08:00,313 5th St, Atlanta,GA,30301 +197277,34in Ultrawide Monitor,1,379.99,2019-05-17 02:16:00,688 Willow St, Dallas,TX,75001 +197278,AA Batteries (4-pack),2,3.84,2019-05-12 15:36:00,679 Johnson St, Dallas,TX,75001 +197279,34in Ultrawide Monitor,1,379.99,2019-05-02 18:24:00,135 Chestnut St, Seattle,WA,98101 +197280,iPhone,1,700.0,2019-05-09 15:59:00,395 7th St, Atlanta,GA,30301 +197280,Apple Airpods Headphones,1,150.0,2019-05-09 15:59:00,395 7th St, Atlanta,GA,30301 +197281,AAA Batteries (4-pack),2,2.99,2019-05-29 09:33:00,100 13th St, San Francisco,CA,94016 +197282,LG Washing Machine,1,600.0,2019-05-23 20:42:00,775 North St, Los Angeles,CA,90001 +197283,Apple Airpods Headphones,1,150.0,2019-05-10 17:28:00,277 Wilson St, Atlanta,GA,30301 +197284,Lightning Charging Cable,1,14.95,2019-05-14 21:53:00,286 Elm St, New York City,NY,10001 +197285,Lightning Charging Cable,1,14.95,2019-05-02 22:27:00,204 Walnut St, San Francisco,CA,94016 +197286,Google Phone,1,600.0,2019-05-19 21:38:00,275 Meadow St, San Francisco,CA,94016 +197287,Wired Headphones,1,11.99,2019-05-17 23:06:00,522 14th St, San Francisco,CA,94016 +197288,iPhone,1,700.0,2019-05-03 08:52:00,182 Forest St, Seattle,WA,98101 +197288,Apple Airpods Headphones,1,150.0,2019-05-03 08:52:00,182 Forest St, Seattle,WA,98101 +197289,ThinkPad Laptop,1,999.99,2019-05-22 11:53:00,85 West St, Atlanta,GA,30301 +197290,Lightning Charging Cable,1,14.95,2019-05-08 15:37:00,69 Jackson St, Dallas,TX,75001 +197291,27in FHD Monitor,1,149.99,2019-05-05 15:02:00,109 West St, San Francisco,CA,94016 +197292,Wired Headphones,1,11.99,2019-05-08 17:36:00,918 Madison St, Los Angeles,CA,90001 +197293,AAA Batteries (4-pack),3,2.99,2019-05-15 22:32:00,291 Meadow St, Portland,OR,97035 +197294,AA Batteries (4-pack),1,3.84,2019-05-12 17:36:00,986 2nd St, San Francisco,CA,94016 +197295,ThinkPad Laptop,1,999.99,2019-05-26 10:32:00,916 Walnut St, San Francisco,CA,94016 +197296,Lightning Charging Cable,1,14.95,2019-05-21 02:02:00,977 Park St, San Francisco,CA,94016 +197297,Lightning Charging Cable,1,14.95,2019-05-20 15:03:00,97 Forest St, San Francisco,CA,94016 +197298,Wired Headphones,1,11.99,2019-05-30 15:47:00,486 7th St, Boston,MA,02215 +197299,Apple Airpods Headphones,1,150.0,2019-05-01 20:10:00,434 River St, Dallas,TX,75001 +197300,Lightning Charging Cable,1,14.95,2019-05-31 11:12:00,854 Madison St, Dallas,TX,75001 +197301,Apple Airpods Headphones,1,150.0,2019-05-04 19:14:00,565 1st St, Portland,ME,04101 +197302,27in FHD Monitor,1,149.99,2019-05-10 17:52:00,261 South St, Boston,MA,02215 +197303,Lightning Charging Cable,1,14.95,2019-05-24 10:24:00,695 Lake St, Dallas,TX,75001 +197304,AA Batteries (4-pack),1,3.84,2019-05-12 21:47:00,47 Johnson St, Seattle,WA,98101 +197305,Vareebadd Phone,1,400.0,2019-05-03 12:31:00,761 North St, Portland,OR,97035 +197306,Apple Airpods Headphones,1,150.0,2019-05-21 16:34:00,750 Hickory St, Atlanta,GA,30301 +197307,Wired Headphones,1,11.99,2019-05-12 19:11:00,459 9th St, Austin,TX,73301 +197308,Wired Headphones,1,11.99,2019-05-08 21:49:00,328 Highland St, San Francisco,CA,94016 +197309,USB-C Charging Cable,1,11.95,2019-05-25 16:43:00,913 Lakeview St, San Francisco,CA,94016 +197310,Wired Headphones,1,11.99,2019-05-20 19:41:00,938 9th St, Boston,MA,02215 +197311,USB-C Charging Cable,1,11.95,2019-05-30 19:09:00,697 Lake St, Los Angeles,CA,90001 +197312,27in FHD Monitor,1,149.99,2019-05-06 09:18:00,373 Maple St, Boston,MA,02215 +197313,AA Batteries (4-pack),1,3.84,2019-05-09 13:35:00,620 Jackson St, San Francisco,CA,94016 +197314,USB-C Charging Cable,1,11.95,2019-05-16 22:00:00,944 Johnson St, Los Angeles,CA,90001 +197315,27in FHD Monitor,1,149.99,2019-05-16 17:13:00,103 6th St, Los Angeles,CA,90001 +197316,Lightning Charging Cable,1,14.95,2019-05-15 13:57:00,996 12th St, San Francisco,CA,94016 +197317,AAA Batteries (4-pack),1,2.99,2019-05-08 19:09:00,345 Hickory St, San Francisco,CA,94016 +197318,AA Batteries (4-pack),1,3.84,2019-05-19 09:51:00,896 1st St, Portland,OR,97035 +197318,Wired Headphones,1,11.99,2019-05-19 09:51:00,896 1st St, Portland,OR,97035 +197319,Apple Airpods Headphones,1,150.0,2019-05-06 21:09:00,796 6th St, Austin,TX,73301 +197320,27in FHD Monitor,1,149.99,2019-05-02 15:22:00,93 West St, Portland,OR,97035 +197321,Apple Airpods Headphones,1,150.0,2019-05-22 19:11:00,154 Dogwood St, San Francisco,CA,94016 +197322,Lightning Charging Cable,1,14.95,2019-05-31 11:45:00,958 Chestnut St, San Francisco,CA,94016 +197323,Wired Headphones,1,11.99,2019-05-24 16:02:00,280 Cedar St, San Francisco,CA,94016 +197324,ThinkPad Laptop,1,999.99,2019-05-11 23:49:00,773 1st St, Boston,MA,02215 +197325,Lightning Charging Cable,1,14.95,2019-05-14 08:01:00,614 13th St, Boston,MA,02215 +197326,AA Batteries (4-pack),1,3.84,2019-05-12 13:26:00,663 Walnut St, Atlanta,GA,30301 +197327,Apple Airpods Headphones,1,150.0,2019-05-10 19:03:00,849 Lincoln St, San Francisco,CA,94016 +197328,Google Phone,1,600.0,2019-05-16 09:59:00,181 Wilson St, New York City,NY,10001 +197329,Lightning Charging Cable,1,14.95,2019-05-07 12:31:00,726 Highland St, Atlanta,GA,30301 +197330,AAA Batteries (4-pack),1,2.99,2019-05-15 11:20:00,423 Main St, Austin,TX,73301 +197331,Wired Headphones,1,11.99,2019-05-17 07:21:00,962 13th St, New York City,NY,10001 +197332,AAA Batteries (4-pack),2,2.99,2019-05-24 20:37:00,798 14th St, San Francisco,CA,94016 +197333,Flatscreen TV,1,300.0,2019-05-18 12:27:00,592 14th St, Los Angeles,CA,90001 +197334,34in Ultrawide Monitor,1,379.99,2019-05-25 06:05:00,840 Hill St, San Francisco,CA,94016 +197335,Lightning Charging Cable,1,14.95,2019-05-12 13:31:00,462 Elm St, Los Angeles,CA,90001 +197336,Flatscreen TV,1,300.0,2019-05-16 08:52:00,923 Forest St, New York City,NY,10001 +197337,AA Batteries (4-pack),1,3.84,2019-05-24 12:09:00,878 Adams St, San Francisco,CA,94016 +197338,Wired Headphones,1,11.99,2019-05-09 06:01:00,456 6th St, New York City,NY,10001 +197339,Bose SoundSport Headphones,1,99.99,2019-05-03 19:51:00,280 Walnut St, Dallas,TX,75001 +197340,AA Batteries (4-pack),1,3.84,2019-05-23 15:26:00,844 Adams St, Boston,MA,02215 +197341,Flatscreen TV,1,300.0,2019-05-04 12:56:00,483 Lakeview St, Atlanta,GA,30301 +197342,AA Batteries (4-pack),1,3.84,2019-05-25 10:40:00,3 1st St, Dallas,TX,75001 +197343,USB-C Charging Cable,1,11.95,2019-05-28 22:12:00,774 North St, Austin,TX,73301 +197344,Apple Airpods Headphones,1,150.0,2019-05-04 12:09:00,748 Washington St, Los Angeles,CA,90001 +197345,27in FHD Monitor,1,149.99,2019-05-06 23:20:00,951 4th St, San Francisco,CA,94016 +197346,Macbook Pro Laptop,1,1700.0,2019-05-12 22:32:00,955 Wilson St, Los Angeles,CA,90001 +197347,AA Batteries (4-pack),1,3.84,2019-05-31 12:11:00,610 Maple St, San Francisco,CA,94016 +197348,Lightning Charging Cable,1,14.95,2019-05-08 20:59:00,711 14th St, San Francisco,CA,94016 +197349,AAA Batteries (4-pack),1,2.99,2019-05-17 07:11:00,982 Willow St, Boston,MA,02215 +197350,USB-C Charging Cable,1,11.95,2019-05-01 14:49:00,126 12th St, Los Angeles,CA,90001 +197351,USB-C Charging Cable,1,11.95,2019-05-24 10:38:00,660 Hill St, Dallas,TX,75001 +197352,27in FHD Monitor,1,149.99,2019-05-20 09:51:00,858 Cherry St, San Francisco,CA,94016 +197353,Google Phone,1,600.0,2019-05-25 13:53:00,237 Ridge St, Los Angeles,CA,90001 +197354,Bose SoundSport Headphones,1,99.99,2019-05-27 11:49:00,340 Dogwood St, San Francisco,CA,94016 +197355,USB-C Charging Cable,1,11.95,2019-05-05 22:58:00,521 Lake St, Los Angeles,CA,90001 +197356,Google Phone,1,600.0,2019-05-04 09:22:00,178 Main St, Atlanta,GA,30301 +197356,USB-C Charging Cable,1,11.95,2019-05-04 09:22:00,178 Main St, Atlanta,GA,30301 +197357,Google Phone,1,600.0,2019-05-16 22:28:00,487 Washington St, Boston,MA,02215 +197358,Wired Headphones,2,11.99,2019-05-01 19:50:00,452 Lincoln St, Los Angeles,CA,90001 +197359,Bose SoundSport Headphones,1,99.99,2019-05-01 19:39:00,342 9th St, Los Angeles,CA,90001 +197360,Lightning Charging Cable,1,14.95,2019-05-03 10:24:00,780 7th St, Seattle,WA,98101 +197361,Google Phone,1,600.0,2019-05-12 12:05:00,611 Willow St, San Francisco,CA,94016 +197362,Wired Headphones,1,11.99,2019-05-12 10:44:00,209 Maple St, Atlanta,GA,30301 +197363,USB-C Charging Cable,1,11.95,2019-05-28 15:27:00,208 Park St, San Francisco,CA,94016 +197364,USB-C Charging Cable,1,11.95,2019-05-24 13:57:00,859 Hickory St, Dallas,TX,75001 +197365,Bose SoundSport Headphones,1,99.99,2019-05-13 21:48:00,92 Madison St, New York City,NY,10001 +197366,Lightning Charging Cable,1,14.95,2019-05-24 10:21:00,108 North St, Los Angeles,CA,90001 +197367,Vareebadd Phone,1,400.0,2019-05-01 14:22:00,60 10th St, New York City,NY,10001 +197367,USB-C Charging Cable,1,11.95,2019-05-01 14:22:00,60 10th St, New York City,NY,10001 +197368,iPhone,1,700.0,2019-05-15 10:30:00,827 Sunset St, Los Angeles,CA,90001 +197369,Wired Headphones,1,11.99,2019-05-17 10:49:00,700 11th St, Los Angeles,CA,90001 +197370,AAA Batteries (4-pack),1,2.99,2019-05-28 12:49:00,319 Highland St, Atlanta,GA,30301 +197371,iPhone,1,700.0,2019-05-08 18:35:00,493 4th St, Dallas,TX,75001 +197372,Lightning Charging Cable,1,14.95,2019-05-10 23:11:00,731 11th St, New York City,NY,10001 +197372,Bose SoundSport Headphones,1,99.99,2019-05-10 23:11:00,731 11th St, New York City,NY,10001 +197373,Apple Airpods Headphones,1,150.0,2019-05-24 21:05:00,473 Sunset St, San Francisco,CA,94016 +197374,Wired Headphones,1,11.99,2019-05-02 20:46:00,743 Ridge St, San Francisco,CA,94016 +197375,Apple Airpods Headphones,1,150.0,2019-05-21 10:01:00,73 Madison St, Dallas,TX,75001 +197376,USB-C Charging Cable,1,11.95,2019-05-24 07:45:00,382 8th St, Los Angeles,CA,90001 +197377,iPhone,1,700.0,2019-05-19 09:59:00,795 8th St, Boston,MA,02215 +197378,Lightning Charging Cable,1,14.95,2019-05-24 10:45:00,102 Cedar St, New York City,NY,10001 +197379,Apple Airpods Headphones,1,150.0,2019-05-02 18:20:00,204 Lake St, San Francisco,CA,94016 +197380,AAA Batteries (4-pack),1,2.99,2019-05-29 14:50:00,534 Willow St, Seattle,WA,98101 +197381,Apple Airpods Headphones,2,150.0,2019-05-20 16:31:00,208 8th St, Atlanta,GA,30301 +197382,Lightning Charging Cable,1,14.95,2019-05-30 12:46:00,391 13th St, Dallas,TX,75001 +197383,Wired Headphones,1,11.99,2019-05-15 22:58:00,189 Washington St, New York City,NY,10001 +197384,AAA Batteries (4-pack),2,2.99,2019-05-30 06:49:00,418 Highland St, Los Angeles,CA,90001 +197385,Bose SoundSport Headphones,1,99.99,2019-05-07 23:43:00,16 1st St, New York City,NY,10001 +197386,34in Ultrawide Monitor,1,379.99,2019-05-19 13:36:00,995 Lake St, Dallas,TX,75001 +197387,Flatscreen TV,1,300.0,2019-05-19 21:02:00,764 11th St, San Francisco,CA,94016 +197388,Bose SoundSport Headphones,1,99.99,2019-05-14 11:37:00,439 2nd St, San Francisco,CA,94016 +197389,AAA Batteries (4-pack),1,2.99,2019-05-12 13:18:00,948 Cherry St, Dallas,TX,75001 +197390,AAA Batteries (4-pack),1,2.99,2019-05-02 01:42:00,251 Cedar St, New York City,NY,10001 +197391,AAA Batteries (4-pack),1,2.99,2019-05-31 10:00:00,102 Meadow St, Seattle,WA,98101 +197392,Vareebadd Phone,1,400.0,2019-05-02 19:33:00,478 4th St, Atlanta,GA,30301 +197393,AAA Batteries (4-pack),1,2.99,2019-05-07 21:04:00,234 Meadow St, Los Angeles,CA,90001 +197394,Macbook Pro Laptop,1,1700.0,2019-05-05 21:24:00,993 Highland St, Boston,MA,02215 +197395,AA Batteries (4-pack),1,3.84,2019-05-19 07:04:00,208 12th St, Los Angeles,CA,90001 +197396,27in FHD Monitor,1,149.99,2019-05-29 14:25:00,913 Cedar St, San Francisco,CA,94016 +197397,Lightning Charging Cable,1,14.95,2019-05-29 13:50:00,907 Maple St, Los Angeles,CA,90001 +197398,iPhone,1,700.0,2019-05-22 18:16:00,170 Pine St, Dallas,TX,75001 +197399,27in 4K Gaming Monitor,1,389.99,2019-05-01 22:12:00,65 Maple St, Dallas,TX,75001 +197400,27in 4K Gaming Monitor,1,389.99,2019-05-17 20:43:00,65 4th St, Boston,MA,02215 +197401,27in FHD Monitor,1,149.99,2019-05-19 13:31:00,615 Adams St, Los Angeles,CA,90001 +197402,34in Ultrawide Monitor,1,379.99,2019-05-01 19:30:00,306 Lakeview St, San Francisco,CA,94016 +197403,AAA Batteries (4-pack),2,2.99,2019-05-08 11:13:00,609 1st St, San Francisco,CA,94016 +197404,Apple Airpods Headphones,1,150.0,2019-05-12 20:32:00,560 13th St, San Francisco,CA,94016 +197405,AAA Batteries (4-pack),3,2.99,2019-05-12 22:38:00,130 West St, Dallas,TX,75001 +197406,20in Monitor,1,109.99,2019-05-27 21:20:00,294 Ridge St, San Francisco,CA,94016 +197407,Google Phone,1,600.0,2019-05-04 11:53:00,169 Main St, Boston,MA,02215 +197408,AA Batteries (4-pack),1,3.84,2019-05-11 13:14:00,501 2nd St, Atlanta,GA,30301 +197409,AA Batteries (4-pack),3,3.84,2019-05-31 18:38:00,203 Main St, San Francisco,CA,94016 +197410,USB-C Charging Cable,1,11.95,2019-05-13 22:28:00,518 6th St, Dallas,TX,75001 +197411,AA Batteries (4-pack),1,3.84,2019-05-31 14:51:00,4 Johnson St, Austin,TX,73301 +197412,AA Batteries (4-pack),1,3.84,2019-05-14 17:52:00,476 Park St, Seattle,WA,98101 +197413,34in Ultrawide Monitor,1,379.99,2019-05-30 10:51:00,229 Park St, Boston,MA,02215 +197414,Wired Headphones,1,11.99,2019-05-10 12:43:00,665 Jefferson St, Los Angeles,CA,90001 +197415,Apple Airpods Headphones,1,150.0,2019-05-30 09:22:00,53 South St, Seattle,WA,98101 +197416,AA Batteries (4-pack),1,3.84,2019-05-14 13:37:00,426 Jackson St, Los Angeles,CA,90001 +197417,USB-C Charging Cable,1,11.95,2019-05-12 11:07:00,636 4th St, Seattle,WA,98101 +197418,AAA Batteries (4-pack),1,2.99,2019-05-23 07:08:00,554 4th St, Atlanta,GA,30301 +197419,Lightning Charging Cable,1,14.95,2019-05-28 22:11:00,669 Church St, Los Angeles,CA,90001 +197420,AA Batteries (4-pack),1,3.84,2019-05-11 20:52:00,154 10th St, Boston,MA,02215 +197421,AAA Batteries (4-pack),1,2.99,2019-05-01 17:32:00,500 Washington St, New York City,NY,10001 +197422,USB-C Charging Cable,2,11.95,2019-05-13 09:18:00,985 Jackson St, Los Angeles,CA,90001 +197423,Lightning Charging Cable,1,14.95,2019-05-15 22:01:00,667 Hickory St, Seattle,WA,98101 +197424,Wired Headphones,1,11.99,2019-05-07 19:27:00,177 Cedar St, Los Angeles,CA,90001 +197425,34in Ultrawide Monitor,1,379.99,2019-05-28 20:00:00,466 14th St, Austin,TX,73301 +197426,Google Phone,1,600.0,2019-05-17 12:07:00,499 Elm St, San Francisco,CA,94016 +197427,Macbook Pro Laptop,1,1700.0,2019-05-18 17:18:00,703 Pine St, San Francisco,CA,94016 +197428,Wired Headphones,1,11.99,2019-05-31 11:56:00,197 Highland St, Atlanta,GA,30301 +197429,Apple Airpods Headphones,1,150.0,2019-05-18 18:41:00,165 Sunset St, San Francisco,CA,94016 +197430,AAA Batteries (4-pack),1,2.99,2019-05-03 11:40:00,952 Cedar St, Seattle,WA,98101 +197431,Bose SoundSport Headphones,1,99.99,2019-05-16 20:45:00,848 Center St, Seattle,WA,98101 +197432,Apple Airpods Headphones,1,150.0,2019-05-03 18:59:00,387 10th St, Boston,MA,02215 +197433,AA Batteries (4-pack),2,3.84,2019-05-14 20:49:00,576 Washington St, Boston,MA,02215 +197434,AA Batteries (4-pack),2,3.84,2019-05-30 13:39:00,59 Hill St, Boston,MA,02215 +197435,34in Ultrawide Monitor,1,379.99,2019-05-05 19:22:00,882 Highland St, Atlanta,GA,30301 +197436,Bose SoundSport Headphones,1,99.99,2019-05-14 17:37:00,638 Pine St, Los Angeles,CA,90001 +197437,AAA Batteries (4-pack),4,2.99,2019-05-20 11:21:00,606 Johnson St, San Francisco,CA,94016 +197438,Google Phone,1,600.0,2019-05-22 12:14:00,964 Walnut St, San Francisco,CA,94016 +197439,Wired Headphones,1,11.99,2019-05-20 14:35:00,386 Forest St, San Francisco,CA,94016 +197440,Apple Airpods Headphones,1,150.0,2019-05-07 12:25:00,16 West St, Los Angeles,CA,90001 +197441,USB-C Charging Cable,1,11.95,2019-05-01 14:52:00,601 South St, New York City,NY,10001 +197442,Google Phone,1,600.0,2019-05-16 21:49:00,352 4th St, Boston,MA,02215 +197443,AAA Batteries (4-pack),2,2.99,2019-05-22 19:15:00,740 Hill St, Dallas,TX,75001 +197444,AAA Batteries (4-pack),2,2.99,2019-05-19 11:46:00,480 14th St, Los Angeles,CA,90001 +197445,USB-C Charging Cable,1,11.95,2019-05-02 17:51:00,682 Jackson St, Los Angeles,CA,90001 +197446,AAA Batteries (4-pack),1,2.99,2019-05-01 19:59:00,894 12th St, Atlanta,GA,30301 +197447,USB-C Charging Cable,2,11.95,2019-05-05 17:59:00,966 Madison St, Austin,TX,73301 +197448,Apple Airpods Headphones,1,150.0,2019-05-11 20:14:00,665 Cherry St, Seattle,WA,98101 +197449,Macbook Pro Laptop,1,1700.0,2019-05-12 09:39:00,957 Wilson St, Los Angeles,CA,90001 +197450,iPhone,1,700.0,2019-05-23 13:46:00,116 8th St, Seattle,WA,98101 +197451,Wired Headphones,1,11.99,2019-05-02 12:13:00,678 Hickory St, San Francisco,CA,94016 +197452,27in 4K Gaming Monitor,1,389.99,2019-05-09 20:30:00,969 Lake St, Seattle,WA,98101 +197453,Apple Airpods Headphones,1,150.0,2019-05-14 01:36:00,540 1st St, Austin,TX,73301 +197453,Vareebadd Phone,1,400.0,2019-05-14 01:36:00,540 1st St, Austin,TX,73301 +197454,Lightning Charging Cable,1,14.95,2019-05-11 09:01:00,674 Lincoln St, Seattle,WA,98101 +197455,Bose SoundSport Headphones,1,99.99,2019-05-09 21:48:00,440 Lake St, San Francisco,CA,94016 +197456,34in Ultrawide Monitor,1,379.99,2019-05-03 19:49:00,865 Lakeview St, Boston,MA,02215 +197457,AAA Batteries (4-pack),2,2.99,2019-05-11 13:00:00,636 12th St, Austin,TX,73301 +197458,AA Batteries (4-pack),3,3.84,2019-05-12 22:28:00,406 South St, New York City,NY,10001 +197459,Lightning Charging Cable,1,14.95,2019-05-10 12:52:00,526 4th St, San Francisco,CA,94016 +197460,Lightning Charging Cable,1,14.95,2019-05-22 14:50:00,258 13th St, San Francisco,CA,94016 +197461,AA Batteries (4-pack),2,3.84,2019-05-01 12:24:00,696 Highland St, Los Angeles,CA,90001 +197462,Bose SoundSport Headphones,1,99.99,2019-05-29 18:51:00,435 8th St, Atlanta,GA,30301 +197463,ThinkPad Laptop,1,999.99,2019-05-03 14:37:00,311 Park St, New York City,NY,10001 +197464,27in 4K Gaming Monitor,1,389.99,2019-05-24 18:45:00,41 North St, New York City,NY,10001 +197465,Lightning Charging Cable,1,14.95,2019-05-15 19:52:00,493 5th St, Atlanta,GA,30301 +197466,27in 4K Gaming Monitor,1,389.99,2019-05-08 09:56:00,699 Lake St, Boston,MA,02215 +197466,AAA Batteries (4-pack),4,2.99,2019-05-08 09:56:00,699 Lake St, Boston,MA,02215 +197467,USB-C Charging Cable,1,11.95,2019-05-13 14:51:00,300 2nd St, Boston,MA,02215 +197468,Wired Headphones,1,11.99,2019-05-31 19:21:00,665 Adams St, San Francisco,CA,94016 +197469,Flatscreen TV,1,300.0,2019-05-05 01:18:00,524 North St, Atlanta,GA,30301 +197470,AA Batteries (4-pack),1,3.84,2019-05-04 12:38:00,735 West St, Austin,TX,73301 +197471,27in FHD Monitor,1,149.99,2019-05-05 11:06:00,975 Ridge St, Dallas,TX,75001 +197472,Apple Airpods Headphones,1,150.0,2019-05-06 20:34:00,626 West St, Los Angeles,CA,90001 +197473,Vareebadd Phone,1,400.0,2019-05-30 20:21:00,617 Dogwood St, Boston,MA,02215 +197473,USB-C Charging Cable,1,11.95,2019-05-30 20:21:00,617 Dogwood St, Boston,MA,02215 +197474,27in 4K Gaming Monitor,1,389.99,2019-05-02 11:52:00,683 5th St, Atlanta,GA,30301 +197475,Apple Airpods Headphones,1,150.0,2019-05-28 13:09:00,182 Wilson St, Los Angeles,CA,90001 +197476,27in 4K Gaming Monitor,1,389.99,2019-05-09 10:41:00,318 Lincoln St, San Francisco,CA,94016 +197477,Wired Headphones,1,11.99,2019-05-30 16:41:00,359 Spruce St, Boston,MA,02215 +197478,Macbook Pro Laptop,1,1700.0,2019-05-21 19:03:00,90 Chestnut St, San Francisco,CA,94016 +197479,ThinkPad Laptop,1,999.99,2019-05-03 11:37:00,862 Wilson St, Portland,OR,97035 +197480,AA Batteries (4-pack),1,3.84,2019-05-09 14:52:00,868 Willow St, Seattle,WA,98101 +197481,Wired Headphones,1,11.99,2019-05-17 12:32:00,35 Highland St, Boston,MA,02215 +197482,27in FHD Monitor,1,149.99,2019-05-16 20:01:00,72 Hickory St, San Francisco,CA,94016 +197483,ThinkPad Laptop,1,999.99,2019-05-23 11:01:00,874 Walnut St, Atlanta,GA,30301 +197484,USB-C Charging Cable,1,11.95,2019-05-24 15:01:00,808 Sunset St, New York City,NY,10001 +197485,LG Washing Machine,1,600.0,2019-05-11 19:34:00,199 Cedar St, Portland,ME,04101 +197486,AA Batteries (4-pack),1,3.84,2019-05-23 14:45:00,805 11th St, Boston,MA,02215 +197487,AAA Batteries (4-pack),1,2.99,2019-05-10 17:49:00,701 Lakeview St, Atlanta,GA,30301 +197488,AAA Batteries (4-pack),2,2.99,2019-05-27 20:18:00,862 Willow St, Los Angeles,CA,90001 +197489,USB-C Charging Cable,1,11.95,2019-05-17 12:52:00,850 11th St, San Francisco,CA,94016 +197490,Wired Headphones,1,11.99,2019-05-06 18:43:00,903 Elm St, San Francisco,CA,94016 +197491,AAA Batteries (4-pack),2,2.99,2019-05-17 14:31:00,239 Ridge St, San Francisco,CA,94016 +197492,34in Ultrawide Monitor,1,379.99,2019-05-02 16:00:00,143 Willow St, San Francisco,CA,94016 +197493,iPhone,1,700.0,2019-05-06 10:13:00,239 South St, San Francisco,CA,94016 +197493,Lightning Charging Cable,1,14.95,2019-05-06 10:13:00,239 South St, San Francisco,CA,94016 +197494,AAA Batteries (4-pack),1,2.99,2019-05-09 13:21:00,411 Spruce St, Boston,MA,02215 +197495,Lightning Charging Cable,1,14.95,2019-05-06 14:59:00,72 Church St, Los Angeles,CA,90001 +197496,27in FHD Monitor,1,149.99,2019-05-15 20:46:00,305 Washington St, Los Angeles,CA,90001 +197497,Lightning Charging Cable,1,14.95,2019-05-17 07:38:00,242 Jackson St, Dallas,TX,75001 +197498,Lightning Charging Cable,1,14.95,2019-05-24 20:13:00,511 5th St, San Francisco,CA,94016 +197499,Wired Headphones,1,11.99,2019-05-16 19:32:00,24 7th St, Seattle,WA,98101 +197500,Wired Headphones,1,11.99,2019-05-14 15:10:00,337 10th St, Seattle,WA,98101 +197501,Lightning Charging Cable,1,14.95,2019-05-22 16:12:00,878 North St, Boston,MA,02215 +197502,AAA Batteries (4-pack),1,2.99,2019-05-28 15:40:00,131 Lakeview St, San Francisco,CA,94016 +197503,20in Monitor,1,109.99,2019-05-08 20:16:00,423 Spruce St, Portland,OR,97035 +197504,AA Batteries (4-pack),1,3.84,2019-05-12 19:46:00,835 West St, Los Angeles,CA,90001 +197505,AAA Batteries (4-pack),1,2.99,2019-05-07 00:16:00,327 8th St, Los Angeles,CA,90001 +197506,AAA Batteries (4-pack),1,2.99,2019-05-02 12:31:00,895 Lincoln St, Portland,OR,97035 +197507,Google Phone,1,600.0,2019-05-05 13:55:00,249 2nd St, New York City,NY,10001 +197507,USB-C Charging Cable,1,11.95,2019-05-05 13:55:00,249 2nd St, New York City,NY,10001 +197508,27in FHD Monitor,1,149.99,2019-05-01 20:32:00,691 Hickory St, San Francisco,CA,94016 +197509,LG Washing Machine,1,600.0,2019-05-26 14:36:00,185 Main St, San Francisco,CA,94016 +197510,AAA Batteries (4-pack),1,2.99,2019-05-03 11:50:00,706 Forest St, San Francisco,CA,94016 +197511,USB-C Charging Cable,2,11.95,2019-05-12 10:59:00,695 Lake St, Dallas,TX,75001 +197512,Lightning Charging Cable,1,14.95,2019-05-07 06:58:00,999 12th St, Portland,OR,97035 +197513,Vareebadd Phone,1,400.0,2019-05-21 14:50:00,483 Dogwood St, Los Angeles,CA,90001 +197514,AA Batteries (4-pack),1,3.84,2019-05-01 15:25:00,587 River St, San Francisco,CA,94016 +197515,AA Batteries (4-pack),2,3.84,2019-05-06 12:32:00,467 Willow St, Los Angeles,CA,90001 +197516,27in FHD Monitor,1,149.99,2019-05-09 10:09:00,20 Lake St, Atlanta,GA,30301 +197517,Lightning Charging Cable,2,14.95,2019-05-19 17:58:00,211 Adams St, Atlanta,GA,30301 +197518,AAA Batteries (4-pack),1,2.99,2019-05-06 14:19:00,678 2nd St, Los Angeles,CA,90001 +197519,USB-C Charging Cable,1,11.95,2019-05-14 08:02:00,30 Highland St, Seattle,WA,98101 +197520,27in 4K Gaming Monitor,1,389.99,2019-05-23 14:33:00,582 Washington St, Seattle,WA,98101 +197521,Wired Headphones,1,11.99,2019-05-02 20:38:00,487 Spruce St, San Francisco,CA,94016 +197522,Wired Headphones,1,11.99,2019-05-06 21:21:00,718 Center St, Atlanta,GA,30301 +197523,Bose SoundSport Headphones,1,99.99,2019-05-17 18:37:00,761 Highland St, Atlanta,GA,30301 +197524,AA Batteries (4-pack),1,3.84,2019-05-28 10:20:00,459 River St, Los Angeles,CA,90001 +197525,iPhone,1,700.0,2019-05-03 14:50:00,973 Lake St, San Francisco,CA,94016 +197525,Lightning Charging Cable,1,14.95,2019-05-03 14:50:00,973 Lake St, San Francisco,CA,94016 +197526,Wired Headphones,1,11.99,2019-05-07 06:08:00,221 Johnson St, New York City,NY,10001 +197527,Wired Headphones,1,11.99,2019-05-12 17:10:00,361 Spruce St, Boston,MA,02215 +197528,USB-C Charging Cable,1,11.95,2019-05-22 08:53:00,31 1st St, Atlanta,GA,30301 +197529,AA Batteries (4-pack),1,3.84,2019-05-08 20:14:00,909 West St, San Francisco,CA,94016 +197530,Lightning Charging Cable,1,14.95,2019-05-16 17:02:00,718 West St, New York City,NY,10001 +197531,Lightning Charging Cable,1,14.95,2019-05-25 08:18:00,922 2nd St, New York City,NY,10001 +197532,AA Batteries (4-pack),1,3.84,2019-05-09 08:57:00,542 West St, Seattle,WA,98101 +197533,Lightning Charging Cable,1,14.95,2019-05-17 07:49:00,644 8th St, San Francisco,CA,94016 +197534,Wired Headphones,1,11.99,2019-05-26 18:00:00,818 Madison St, Portland,OR,97035 +197535,Lightning Charging Cable,1,14.95,2019-05-31 22:10:00,156 Cherry St, Atlanta,GA,30301 +197536,Wired Headphones,1,11.99,2019-05-31 16:52:00,169 Ridge St, San Francisco,CA,94016 +197537,AAA Batteries (4-pack),2,2.99,2019-05-22 07:42:00,154 14th St, Boston,MA,02215 +197538,34in Ultrawide Monitor,1,379.99,2019-05-04 12:08:00,119 River St, San Francisco,CA,94016 +197539,27in 4K Gaming Monitor,1,389.99,2019-05-17 20:57:00,741 Pine St, San Francisco,CA,94016 +197540,34in Ultrawide Monitor,1,379.99,2019-05-21 13:49:00,383 Madison St, Austin,TX,73301 +197541,34in Ultrawide Monitor,1,379.99,2019-05-04 16:28:00,904 14th St, San Francisco,CA,94016 +197542,AA Batteries (4-pack),1,3.84,2019-05-27 22:42:00,379 1st St, Los Angeles,CA,90001 +197543,AAA Batteries (4-pack),1,2.99,2019-05-05 01:11:00,473 2nd St, New York City,NY,10001 +197544,AA Batteries (4-pack),2,3.84,2019-05-03 16:15:00,523 5th St, Los Angeles,CA,90001 +197545,Google Phone,1,600.0,2019-05-06 19:14:00,923 11th St, Atlanta,GA,30301 +197546,USB-C Charging Cable,1,11.95,2019-05-26 22:00:00,162 1st St, New York City,NY,10001 +197547,Vareebadd Phone,1,400.0,2019-05-15 04:00:00,666 12th St, San Francisco,CA,94016 +197548,34in Ultrawide Monitor,1,379.99,2019-05-09 12:34:00,650 Ridge St, New York City,NY,10001 +197549,AAA Batteries (4-pack),2,2.99,2019-05-02 16:10:00,162 Johnson St, Boston,MA,02215 +197550,AAA Batteries (4-pack),1,2.99,2019-05-26 16:42:00,240 River St, Seattle,WA,98101 +197551,USB-C Charging Cable,1,11.95,2019-05-14 12:50:00,465 Ridge St, Atlanta,GA,30301 +197552,Bose SoundSport Headphones,1,99.99,2019-05-21 11:19:00,740 Chestnut St, Seattle,WA,98101 +197553,27in FHD Monitor,1,149.99,2019-05-15 06:51:00,269 Cedar St, Seattle,WA,98101 +197554,AAA Batteries (4-pack),1,2.99,2019-05-28 05:10:00,244 5th St, Seattle,WA,98101 +197555,AA Batteries (4-pack),2,3.84,2019-05-19 18:25:00,401 7th St, Los Angeles,CA,90001 +197556,Wired Headphones,1,11.99,2019-05-27 09:18:00,102 1st St, Boston,MA,02215 +197557,USB-C Charging Cable,1,11.95,2019-05-13 00:01:00,131 Forest St, New York City,NY,10001 +197558,34in Ultrawide Monitor,1,379.99,2019-05-13 17:01:00,587 Elm St, Los Angeles,CA,90001 +197559,Macbook Pro Laptop,1,1700.0,2019-05-20 12:44:00,48 South St, Atlanta,GA,30301 +197560,AAA Batteries (4-pack),3,2.99,2019-05-22 01:46:00,262 Pine St, San Francisco,CA,94016 +197561,AAA Batteries (4-pack),1,2.99,2019-05-22 17:02:00,696 Lakeview St, Dallas,TX,75001 +197562,USB-C Charging Cable,1,11.95,2019-05-15 15:28:00,693 Lake St, New York City,NY,10001 +197563,Google Phone,1,600.0,2019-05-16 19:29:00,161 12th St, Seattle,WA,98101 +197564,Macbook Pro Laptop,1,1700.0,2019-05-06 19:54:00,832 Wilson St, San Francisco,CA,94016 +197565,27in 4K Gaming Monitor,1,389.99,2019-05-28 16:40:00,233 Lakeview St, Los Angeles,CA,90001 +197566,LG Washing Machine,1,600.0,2019-05-11 21:34:00,710 Sunset St, Portland,OR,97035 +197567,AAA Batteries (4-pack),2,2.99,2019-05-30 18:11:00,614 Walnut St, San Francisco,CA,94016 +197568,Lightning Charging Cable,2,14.95,2019-05-03 23:27:00,104 Jackson St, Atlanta,GA,30301 +197569,USB-C Charging Cable,1,11.95,2019-05-31 21:17:00,982 12th St, San Francisco,CA,94016 +197570,AA Batteries (4-pack),1,3.84,2019-05-08 16:06:00,364 Jackson St, San Francisco,CA,94016 +197571,Wired Headphones,2,11.99,2019-05-13 13:39:00,756 Madison St, Atlanta,GA,30301 +197572,AA Batteries (4-pack),3,3.84,2019-05-14 23:13:00,769 6th St, New York City,NY,10001 +197573,AA Batteries (4-pack),1,3.84,2019-05-26 18:34:00,387 Washington St, San Francisco,CA,94016 +197574,AAA Batteries (4-pack),1,2.99,2019-05-16 20:35:00,449 Washington St, Atlanta,GA,30301 +197575,iPhone,1,700.0,2019-05-26 21:44:00,515 6th St, Seattle,WA,98101 +197576,AAA Batteries (4-pack),1,2.99,2019-05-14 05:40:00,468 River St, San Francisco,CA,94016 +197577,34in Ultrawide Monitor,1,379.99,2019-05-25 20:28:00,897 Hickory St, San Francisco,CA,94016 +197578,Google Phone,1,600.0,2019-05-27 23:36:00,62 Hickory St, Boston,MA,02215 +197578,Wired Headphones,1,11.99,2019-05-27 23:36:00,62 Hickory St, Boston,MA,02215 +197579,AAA Batteries (4-pack),3,2.99,2019-05-03 20:01:00,999 Jackson St, San Francisco,CA,94016 +197580,27in FHD Monitor,1,149.99,2019-05-14 10:33:00,164 Hickory St, Atlanta,GA,30301 +197581,AAA Batteries (4-pack),1,2.99,2019-05-10 11:13:00,647 Main St, Portland,ME,04101 +197581,USB-C Charging Cable,1,11.95,2019-05-10 11:13:00,647 Main St, Portland,ME,04101 +197582,USB-C Charging Cable,2,11.95,2019-05-27 12:06:00,291 Highland St, Boston,MA,02215 +197583,Wired Headphones,1,11.99,2019-05-14 14:09:00,391 Main St, San Francisco,CA,94016 +197584,27in 4K Gaming Monitor,1,389.99,2019-05-09 07:58:00,274 Lincoln St, Los Angeles,CA,90001 +197585,Apple Airpods Headphones,1,150.0,2019-05-10 10:34:00,438 Main St, Austin,TX,73301 +197586,AA Batteries (4-pack),1,3.84,2019-05-13 21:23:00,449 Lakeview St, San Francisco,CA,94016 +197587,AAA Batteries (4-pack),1,2.99,2019-05-15 15:50:00,940 Elm St, Dallas,TX,75001 +197588,34in Ultrawide Monitor,1,379.99,2019-05-25 13:52:00,32 Church St, San Francisco,CA,94016 +197589,AA Batteries (4-pack),1,3.84,2019-05-01 14:42:00,69 Church St, Dallas,TX,75001 +197590,Wired Headphones,1,11.99,2019-05-22 18:03:00,276 8th St, Boston,MA,02215 +197591,USB-C Charging Cable,1,11.95,2019-05-24 09:17:00,465 7th St, Los Angeles,CA,90001 +197592,Apple Airpods Headphones,1,150.0,2019-05-06 07:14:00,128 9th St, Los Angeles,CA,90001 +197593,Vareebadd Phone,1,400.0,2019-05-26 22:21:00,135 River St, San Francisco,CA,94016 +197594,Lightning Charging Cable,1,14.95,2019-05-06 06:19:00,865 Ridge St, Dallas,TX,75001 +197595,USB-C Charging Cable,1,11.95,2019-05-12 09:40:00,216 5th St, Boston,MA,02215 +197596,AAA Batteries (4-pack),1,2.99,2019-05-04 09:17:00,230 Park St, San Francisco,CA,94016 +197597,AAA Batteries (4-pack),3,2.99,2019-05-28 16:05:00,579 Sunset St, Los Angeles,CA,90001 +197598,Wired Headphones,1,11.99,2019-05-16 14:25:00,520 Jefferson St, New York City,NY,10001 +197599,Macbook Pro Laptop,1,1700.0,2019-05-23 12:21:00,489 Johnson St, Los Angeles,CA,90001 +197600,USB-C Charging Cable,1,11.95,2019-05-21 21:05:00,203 10th St, New York City,NY,10001 +197601,iPhone,1,700.0,2019-05-19 19:15:00,171 Dogwood St, Boston,MA,02215 +197601,Apple Airpods Headphones,1,150.0,2019-05-19 19:15:00,171 Dogwood St, Boston,MA,02215 +197602,AAA Batteries (4-pack),1,2.99,2019-05-11 13:45:00,789 Madison St, San Francisco,CA,94016 +197603,Apple Airpods Headphones,1,150.0,2019-05-26 19:55:00,393 River St, Los Angeles,CA,90001 +197604,AAA Batteries (4-pack),2,2.99,2019-05-05 11:58:00,914 6th St, Boston,MA,02215 +197605,Wired Headphones,1,11.99,2019-05-11 12:34:00,405 South St, San Francisco,CA,94016 +197606,AAA Batteries (4-pack),3,2.99,2019-05-12 00:21:00,450 Highland St, San Francisco,CA,94016 +197607,AA Batteries (4-pack),1,3.84,2019-05-10 16:58:00,423 Willow St, Austin,TX,73301 +197608,Wired Headphones,1,11.99,2019-05-22 12:43:00,80 South St, San Francisco,CA,94016 +197609,AA Batteries (4-pack),1,3.84,2019-05-04 06:24:00,565 Lincoln St, Austin,TX,73301 +197610,AAA Batteries (4-pack),5,2.99,2019-05-26 09:44:00,813 Lake St, Dallas,TX,75001 +197611,AAA Batteries (4-pack),1,2.99,2019-05-24 18:29:00,122 4th St, San Francisco,CA,94016 +197612,USB-C Charging Cable,1,11.95,2019-05-19 11:13:00,978 Spruce St, Portland,OR,97035 +197613,AA Batteries (4-pack),1,3.84,2019-05-25 10:12:00,185 13th St, San Francisco,CA,94016 +197614,Wired Headphones,1,11.99,2019-05-04 20:55:00,547 12th St, Los Angeles,CA,90001 +197615,AA Batteries (4-pack),1,3.84,2019-05-17 23:00:00,163 10th St, San Francisco,CA,94016 +197616,34in Ultrawide Monitor,1,379.99,2019-05-07 11:21:00,489 Cedar St, San Francisco,CA,94016 +197617,Google Phone,1,600.0,2019-05-14 23:17:00,653 7th St, Boston,MA,02215 +197618,Flatscreen TV,1,300.0,2019-05-30 20:44:00,879 Johnson St, Portland,OR,97035 +197619,Apple Airpods Headphones,1,150.0,2019-05-20 19:01:00,67 Ridge St, Boston,MA,02215 +197620,Flatscreen TV,1,300.0,2019-05-09 19:53:00,589 Spruce St, Boston,MA,02215 +197621,Google Phone,1,600.0,2019-05-24 10:18:00,344 8th St, Portland,OR,97035 +197622,USB-C Charging Cable,1,11.95,2019-05-09 19:36:00,221 Park St, San Francisco,CA,94016 +197623,AA Batteries (4-pack),1,3.84,2019-05-19 22:49:00,367 Walnut St, New York City,NY,10001 +197624,AA Batteries (4-pack),2,3.84,2019-05-23 22:05:00,611 Spruce St, Los Angeles,CA,90001 +197625,Wired Headphones,1,11.99,2019-05-28 01:03:00,125 14th St, Dallas,TX,75001 +197626,USB-C Charging Cable,1,11.95,2019-05-29 12:37:00,325 13th St, New York City,NY,10001 +197627,Vareebadd Phone,1,400.0,2019-05-02 09:41:00,734 Madison St, Atlanta,GA,30301 +197628,Wired Headphones,1,11.99,2019-05-24 13:41:00,71 8th St, Austin,TX,73301 +197629,Wired Headphones,2,11.99,2019-05-04 23:44:00,544 Cherry St, San Francisco,CA,94016 +197630,AA Batteries (4-pack),1,3.84,2019-05-02 19:21:00,715 Madison St, Los Angeles,CA,90001 +197631,Flatscreen TV,1,300.0,2019-05-11 21:05:00,65 Church St, Portland,ME,04101 +197632,Google Phone,1,600.0,2019-05-05 01:11:00,891 West St, Los Angeles,CA,90001 +197633,USB-C Charging Cable,2,11.95,2019-05-19 00:16:00,760 Adams St, Atlanta,GA,30301 +197634,Wired Headphones,1,11.99,2019-05-12 14:45:00,235 Chestnut St, Los Angeles,CA,90001 +197635,ThinkPad Laptop,1,999.99,2019-05-21 20:13:00,686 1st St, Portland,OR,97035 +197636,Lightning Charging Cable,1,14.95,2019-05-29 16:04:00,586 Lake St, Los Angeles,CA,90001 +197637,Apple Airpods Headphones,1,150.0,2019-05-24 13:47:00,317 10th St, San Francisco,CA,94016 +197638,27in 4K Gaming Monitor,1,389.99,2019-05-20 22:19:00,264 Hill St, Boston,MA,02215 +197639,AA Batteries (4-pack),1,3.84,2019-05-16 11:30:00,885 Hickory St, Austin,TX,73301 +197640,AA Batteries (4-pack),1,3.84,2019-05-15 19:53:00,741 Forest St, San Francisco,CA,94016 +197641,AAA Batteries (4-pack),1,2.99,2019-05-09 11:55:00,589 Church St, Los Angeles,CA,90001 +197642,USB-C Charging Cable,1,11.95,2019-05-29 19:36:00,530 Forest St, San Francisco,CA,94016 +197643,USB-C Charging Cable,1,11.95,2019-05-23 16:58:00,307 West St, Seattle,WA,98101 +197644,27in FHD Monitor,1,149.99,2019-05-24 19:03:00,224 River St, Atlanta,GA,30301 +197645,34in Ultrawide Monitor,1,379.99,2019-05-03 16:33:00,927 14th St, Portland,OR,97035 +197646,USB-C Charging Cable,1,11.95,2019-05-28 00:40:00,155 9th St, Boston,MA,02215 +197647,USB-C Charging Cable,2,11.95,2019-05-07 11:05:00,872 Lakeview St, San Francisco,CA,94016 +197648,Macbook Pro Laptop,1,1700.0,2019-05-24 21:51:00,14 4th St, New York City,NY,10001 +197649,USB-C Charging Cable,1,11.95,2019-05-28 15:54:00,73 North St, Portland,OR,97035 +197650,27in FHD Monitor,1,149.99,2019-05-25 09:44:00,908 Highland St, Boston,MA,02215 +197651,Wired Headphones,1,11.99,2019-05-03 01:25:00,419 1st St, Dallas,TX,75001 +197652,USB-C Charging Cable,1,11.95,2019-05-20 15:43:00,541 14th St, San Francisco,CA,94016 +197653,Bose SoundSport Headphones,1,99.99,2019-05-30 08:11:00,678 2nd St, San Francisco,CA,94016 +197654,Apple Airpods Headphones,1,150.0,2019-05-25 14:58:00,36 Ridge St, Boston,MA,02215 +197655,AA Batteries (4-pack),1,3.84,2019-05-08 13:02:00,450 Cedar St, Dallas,TX,75001 +197656,iPhone,1,700.0,2019-05-22 05:49:00,183 Park St, New York City,NY,10001 +197656,Lightning Charging Cable,1,14.95,2019-05-22 05:49:00,183 Park St, New York City,NY,10001 +197657,AAA Batteries (4-pack),2,2.99,2019-05-17 12:25:00,31 Washington St, San Francisco,CA,94016 +197658,27in FHD Monitor,1,149.99,2019-05-29 16:50:00,98 12th St, Los Angeles,CA,90001 +197659,AA Batteries (4-pack),2,3.84,2019-05-05 12:15:00,789 Adams St, Los Angeles,CA,90001 +197660,Wired Headphones,1,11.99,2019-05-18 09:02:00,198 5th St, New York City,NY,10001 +197661,Flatscreen TV,1,300.0,2019-05-27 15:49:00,692 11th St, Boston,MA,02215 +197662,Bose SoundSport Headphones,1,99.99,2019-05-23 01:04:00,453 Madison St, New York City,NY,10001 +197663,Lightning Charging Cable,1,14.95,2019-05-03 22:18:00,954 Madison St, Portland,OR,97035 +197664,Apple Airpods Headphones,1,150.0,2019-05-16 11:18:00,978 12th St, Boston,MA,02215 +197665,Lightning Charging Cable,1,14.95,2019-05-14 19:50:00,68 2nd St, San Francisco,CA,94016 +197666,USB-C Charging Cable,1,11.95,2019-05-11 11:41:00,15 Lake St, Boston,MA,02215 +197667,AA Batteries (4-pack),2,3.84,2019-05-02 08:38:00,967 Spruce St, Dallas,TX,75001 +197668,AAA Batteries (4-pack),3,2.99,2019-05-16 17:16:00,140 Spruce St, New York City,NY,10001 +197669,Apple Airpods Headphones,1,150.0,2019-05-20 09:40:00,460 1st St, San Francisco,CA,94016 +197670,Wired Headphones,1,11.99,2019-05-31 11:38:00,836 Jackson St, San Francisco,CA,94016 +197671,Bose SoundSport Headphones,1,99.99,2019-05-15 14:02:00,919 Dogwood St, Los Angeles,CA,90001 +197672,Flatscreen TV,1,300.0,2019-05-11 16:17:00,953 Lincoln St, Los Angeles,CA,90001 +197673,Wired Headphones,1,11.99,2019-05-24 10:50:00,783 Wilson St, Seattle,WA,98101 +197674,ThinkPad Laptop,1,999.99,2019-05-08 09:01:00,322 Ridge St, Los Angeles,CA,90001 +197675,AAA Batteries (4-pack),3,2.99,2019-05-17 10:45:00,813 Sunset St, Los Angeles,CA,90001 +197676,34in Ultrawide Monitor,1,379.99,2019-05-09 17:56:00,621 Ridge St, San Francisco,CA,94016 +197677,iPhone,1,700.0,2019-05-07 14:58:00,906 Cherry St, Los Angeles,CA,90001 +197677,Wired Headphones,1,11.99,2019-05-07 14:58:00,906 Cherry St, Los Angeles,CA,90001 +197678,Apple Airpods Headphones,1,150.0,2019-05-28 20:23:00,238 Elm St, New York City,NY,10001 +197679,Macbook Pro Laptop,1,1700.0,2019-05-06 16:25:00,415 Lincoln St, Portland,ME,04101 +197680,Google Phone,1,600.0,2019-05-29 09:51:00,667 North St, San Francisco,CA,94016 +197681,Macbook Pro Laptop,1,1700.0,2019-05-15 13:24:00,270 6th St, New York City,NY,10001 +197682,AA Batteries (4-pack),1,3.84,2019-05-15 12:53:00,401 Spruce St, Atlanta,GA,30301 +197683,Lightning Charging Cable,1,14.95,2019-05-20 23:23:00,590 River St, San Francisco,CA,94016 +197684,Bose SoundSport Headphones,1,99.99,2019-05-07 00:30:00,705 Main St, Austin,TX,73301 +197685,USB-C Charging Cable,2,11.95,2019-05-24 19:47:00,622 6th St, Austin,TX,73301 +197686,USB-C Charging Cable,1,11.95,2019-05-12 05:50:00,483 Hickory St, Atlanta,GA,30301 +197687,Lightning Charging Cable,1,14.95,2019-05-07 12:45:00,605 Cedar St, Portland,OR,97035 +197688,AA Batteries (4-pack),2,3.84,2019-05-11 20:05:00,501 Maple St, Portland,OR,97035 +197689,Wired Headphones,1,11.99,2019-05-08 17:32:00,592 2nd St, Dallas,TX,75001 +197690,Lightning Charging Cable,1,14.95,2019-05-10 16:03:00,612 Cedar St, Dallas,TX,75001 +197691,34in Ultrawide Monitor,1,379.99,2019-05-26 18:43:00,342 Park St, Boston,MA,02215 +197692,Google Phone,1,600.0,2019-05-29 21:51:00,326 Lincoln St, New York City,NY,10001 +197693,ThinkPad Laptop,1,999.99,2019-05-09 20:22:00,303 Dogwood St, San Francisco,CA,94016 +197694,Macbook Pro Laptop,1,1700.0,2019-05-27 13:20:00,52 Center St, San Francisco,CA,94016 +197695,Bose SoundSport Headphones,1,99.99,2019-05-22 18:34:00,501 Wilson St, Los Angeles,CA,90001 +197696,Wired Headphones,1,11.99,2019-05-19 10:29:00,725 Madison St, Dallas,TX,75001 +197697,Wired Headphones,2,11.99,2019-05-17 13:53:00,660 Hickory St, Los Angeles,CA,90001 +197698,Google Phone,1,600.0,2019-06-01 01:03:00,399 Cedar St, Los Angeles,CA,90001 +197699,27in FHD Monitor,1,149.99,2019-05-19 23:06:00,940 Maple St, Portland,ME,04101 +197700,USB-C Charging Cable,1,11.95,2019-05-05 19:35:00,570 7th St, Los Angeles,CA,90001 +197701,USB-C Charging Cable,1,11.95,2019-05-21 22:36:00,115 10th St, New York City,NY,10001 +197702,USB-C Charging Cable,1,11.95,2019-05-12 13:40:00,56 Spruce St, Los Angeles,CA,90001 +197703,Apple Airpods Headphones,1,150.0,2019-05-09 08:40:00,960 2nd St, Los Angeles,CA,90001 +197704,Wired Headphones,1,11.99,2019-05-14 22:30:00,678 Lakeview St, Atlanta,GA,30301 +197705,USB-C Charging Cable,1,11.95,2019-05-29 06:08:00,988 14th St, San Francisco,CA,94016 +197706,AAA Batteries (4-pack),2,2.99,2019-05-12 12:40:00,484 6th St, Dallas,TX,75001 +197707,Apple Airpods Headphones,2,150.0,2019-05-09 12:18:00,873 Chestnut St, San Francisco,CA,94016 +197708,Wired Headphones,1,11.99,2019-05-29 23:22:00,313 Main St, New York City,NY,10001 +197709,AAA Batteries (4-pack),1,2.99,2019-05-09 11:50:00,648 Chestnut St, San Francisco,CA,94016 +197710,Apple Airpods Headphones,1,150.0,2019-05-06 20:00:00,401 10th St, Austin,TX,73301 +197711,AA Batteries (4-pack),1,3.84,2019-05-27 20:11:00,8 Chestnut St, San Francisco,CA,94016 +197712,AAA Batteries (4-pack),2,2.99,2019-05-09 13:40:00,543 Church St, Los Angeles,CA,90001 +197713,Lightning Charging Cable,1,14.95,2019-05-07 09:51:00,433 Cedar St, Atlanta,GA,30301 +197714,USB-C Charging Cable,1,11.95,2019-05-25 14:22:00,530 4th St, San Francisco,CA,94016 +197715,AA Batteries (4-pack),1,3.84,2019-05-14 10:47:00,295 Adams St, Seattle,WA,98101 +197716,Vareebadd Phone,1,400.0,2019-05-24 07:02:00,923 Lakeview St, New York City,NY,10001 +197717,Apple Airpods Headphones,1,150.0,2019-05-01 20:26:00,436 Lakeview St, San Francisco,CA,94016 +197718,27in 4K Gaming Monitor,1,389.99,2019-05-16 20:57:00,800 Cherry St, New York City,NY,10001 +197719,Apple Airpods Headphones,1,150.0,2019-05-16 21:11:00,714 7th St, San Francisco,CA,94016 +197720,Macbook Pro Laptop,1,1700.0,2019-05-01 19:05:00,572 Cedar St, New York City,NY,10001 +197721,27in FHD Monitor,1,149.99,2019-05-31 18:10:00,964 6th St, Los Angeles,CA,90001 +197722,iPhone,1,700.0,2019-05-17 18:56:00,92 Center St, San Francisco,CA,94016 +197722,Lightning Charging Cable,1,14.95,2019-05-17 18:56:00,92 Center St, San Francisco,CA,94016 +197723,iPhone,1,700.0,2019-05-17 12:43:00,897 12th St, Seattle,WA,98101 +197724,27in FHD Monitor,1,149.99,2019-05-29 22:57:00,972 7th St, Atlanta,GA,30301 +197725,Apple Airpods Headphones,1,150.0,2019-05-09 05:20:00,57 12th St, New York City,NY,10001 +197726,34in Ultrawide Monitor,1,379.99,2019-05-08 23:22:00,828 Maple St, Austin,TX,73301 +197726,Macbook Pro Laptop,1,1700.0,2019-05-08 23:22:00,828 Maple St, Austin,TX,73301 +197727,Macbook Pro Laptop,1,1700.0,2019-05-17 15:30:00,786 Sunset St, New York City,NY,10001 +197728,Flatscreen TV,1,300.0,2019-05-04 17:50:00,996 14th St, San Francisco,CA,94016 +197729,Google Phone,1,600.0,2019-05-29 10:45:00,664 11th St, San Francisco,CA,94016 +197730,AA Batteries (4-pack),2,3.84,2019-05-04 08:47:00,597 Willow St, San Francisco,CA,94016 +197731,AAA Batteries (4-pack),1,2.99,2019-05-27 17:28:00,181 West St, New York City,NY,10001 +197732,27in 4K Gaming Monitor,1,389.99,2019-05-20 19:14:00,266 Meadow St, San Francisco,CA,94016 +197733,AAA Batteries (4-pack),1,2.99,2019-05-15 09:57:00,299 Sunset St, Portland,ME,04101 +197734,Flatscreen TV,1,300.0,2019-05-05 16:00:00,158 Washington St, Dallas,TX,75001 +197735,Bose SoundSport Headphones,1,99.99,2019-05-27 10:45:00,965 8th St, Portland,OR,97035 +197736,USB-C Charging Cable,1,11.95,2019-05-16 19:30:00,419 Highland St, Atlanta,GA,30301 +197737,AAA Batteries (4-pack),5,2.99,2019-05-17 16:20:00,779 9th St, San Francisco,CA,94016 +197738,Bose SoundSport Headphones,1,99.99,2019-05-04 07:17:00,407 Madison St, New York City,NY,10001 +197739,Macbook Pro Laptop,1,1700.0,2019-05-30 13:46:00,359 Park St, Portland,OR,97035 +197740,Bose SoundSport Headphones,1,99.99,2019-05-29 08:16:00,198 Lincoln St, Seattle,WA,98101 +197741,Google Phone,1,600.0,2019-05-14 13:15:00,568 Jackson St, Los Angeles,CA,90001 +197742,AAA Batteries (4-pack),1,2.99,2019-05-26 13:29:00,779 Jefferson St, Boston,MA,02215 +197743,Wired Headphones,1,11.99,2019-05-23 01:05:00,868 Willow St, Los Angeles,CA,90001 +197744,34in Ultrawide Monitor,1,379.99,2019-05-22 16:26:00,176 10th St, Atlanta,GA,30301 +197745,20in Monitor,1,109.99,2019-05-22 23:31:00,3 River St, Los Angeles,CA,90001 +197746,USB-C Charging Cable,1,11.95,2019-05-08 12:54:00,502 Chestnut St, Portland,OR,97035 +197747,Lightning Charging Cable,1,14.95,2019-05-04 11:56:00,843 Spruce St, New York City,NY,10001 +197748,iPhone,1,700.0,2019-05-03 08:07:00,644 North St, Portland,ME,04101 +197749,Wired Headphones,1,11.99,2019-05-13 22:26:00,19 Chestnut St, Los Angeles,CA,90001 +197750,Lightning Charging Cable,1,14.95,2019-05-02 15:52:00,919 13th St, Boston,MA,02215 +197751,AA Batteries (4-pack),1,3.84,2019-05-23 09:18:00,284 Walnut St, San Francisco,CA,94016 +197752,Lightning Charging Cable,2,14.95,2019-05-12 14:49:00,505 10th St, San Francisco,CA,94016 +197753,AAA Batteries (4-pack),1,2.99,2019-05-10 22:51:00,914 Lake St, Los Angeles,CA,90001 +197754,AA Batteries (4-pack),1,3.84,2019-05-27 19:26:00,554 West St, Atlanta,GA,30301 +197755,Flatscreen TV,1,300.0,2019-05-01 15:16:00,766 Center St, Portland,ME,04101 +197756,Lightning Charging Cable,1,14.95,2019-05-24 20:05:00,698 2nd St, Los Angeles,CA,90001 +197757,AAA Batteries (4-pack),2,2.99,2019-05-29 10:49:00,922 14th St, San Francisco,CA,94016 +197758,USB-C Charging Cable,1,11.95,2019-05-18 23:00:00,597 Sunset St, Dallas,TX,75001 +197759,Wired Headphones,1,11.99,2019-05-25 14:48:00,997 6th St, Portland,OR,97035 +197760,Apple Airpods Headphones,1,150.0,2019-05-18 22:42:00,282 11th St, Seattle,WA,98101 +197761,USB-C Charging Cable,1,11.95,2019-05-08 15:15:00,615 14th St, San Francisco,CA,94016 +197762,AA Batteries (4-pack),1,3.84,2019-05-25 13:17:00,407 Willow St, Austin,TX,73301 +197763,AA Batteries (4-pack),1,3.84,2019-05-23 11:12:00,226 Chestnut St, Portland,ME,04101 +197764,ThinkPad Laptop,1,999.99,2019-05-22 18:46:00,868 Main St, San Francisco,CA,94016 +197765,USB-C Charging Cable,1,11.95,2019-05-03 08:03:00,143 Hickory St, Dallas,TX,75001 +197766,Vareebadd Phone,1,400.0,2019-05-27 14:39:00,768 Walnut St, San Francisco,CA,94016 +197767,USB-C Charging Cable,1,11.95,2019-05-06 13:38:00,452 9th St, Portland,OR,97035 +197768,Flatscreen TV,1,300.0,2019-05-04 19:25:00,812 Cedar St, San Francisco,CA,94016 +197769,Apple Airpods Headphones,1,150.0,2019-05-03 17:34:00,830 2nd St, San Francisco,CA,94016 +197770,AAA Batteries (4-pack),4,2.99,2019-05-02 15:12:00,438 9th St, Atlanta,GA,30301 +197771,AAA Batteries (4-pack),1,2.99,2019-05-10 09:15:00,870 Jackson St, Boston,MA,02215 +197772,ThinkPad Laptop,1,999.99,2019-05-21 14:50:00,545 Madison St, Los Angeles,CA,90001 +197773,Apple Airpods Headphones,1,150.0,2019-05-03 12:18:00,16 Jackson St, Dallas,TX,75001 +197774,Wired Headphones,1,11.99,2019-05-04 12:10:00,979 10th St, Los Angeles,CA,90001 +197775,Apple Airpods Headphones,1,150.0,2019-05-02 12:12:00,382 South St, New York City,NY,10001 +197776,Lightning Charging Cable,1,14.95,2019-05-25 21:35:00,887 Lake St, Atlanta,GA,30301 +197777,Bose SoundSport Headphones,1,99.99,2019-05-09 21:26:00,415 14th St, San Francisco,CA,94016 +197778,Wired Headphones,1,11.99,2019-05-25 10:43:00,859 12th St, Atlanta,GA,30301 +197779,AA Batteries (4-pack),1,3.84,2019-05-15 18:45:00,677 Hill St, Los Angeles,CA,90001 +197780,AA Batteries (4-pack),1,3.84,2019-05-27 21:15:00,55 Washington St, Atlanta,GA,30301 +197781,Apple Airpods Headphones,1,150.0,2019-05-07 19:29:00,561 Ridge St, Austin,TX,73301 +197782,20in Monitor,1,109.99,2019-05-27 22:09:00,335 North St, Dallas,TX,75001 +197783,27in FHD Monitor,1,149.99,2019-05-30 19:06:00,714 5th St, Atlanta,GA,30301 +197784,USB-C Charging Cable,1,11.95,2019-05-17 22:24:00,628 11th St, Austin,TX,73301 +197785,Apple Airpods Headphones,1,150.0,2019-05-29 13:35:00,962 8th St, San Francisco,CA,94016 +197786,Google Phone,1,600.0,2019-05-30 13:12:00,386 13th St, San Francisco,CA,94016 +197786,USB-C Charging Cable,1,11.95,2019-05-30 13:12:00,386 13th St, San Francisco,CA,94016 +197787,AAA Batteries (4-pack),1,2.99,2019-05-13 20:16:00,272 Ridge St, New York City,NY,10001 +197788,iPhone,1,700.0,2019-05-07 12:36:00,458 Meadow St, San Francisco,CA,94016 +197789,Wired Headphones,1,11.99,2019-05-21 16:00:00,221 Madison St, San Francisco,CA,94016 +197790,Apple Airpods Headphones,1,150.0,2019-05-13 12:01:00,36 6th St, San Francisco,CA,94016 +197791,20in Monitor,1,109.99,2019-05-05 09:25:00,299 5th St, Atlanta,GA,30301 +197792,AAA Batteries (4-pack),1,2.99,2019-05-25 13:29:00,97 5th St, San Francisco,CA,94016 +197793,27in 4K Gaming Monitor,1,389.99,2019-05-21 12:44:00,858 Cedar St, New York City,NY,10001 +197794,AAA Batteries (4-pack),1,2.99,2019-05-07 10:20:00,380 Walnut St, Atlanta,GA,30301 +197795,AAA Batteries (4-pack),1,2.99,2019-05-13 17:29:00,797 Johnson St, San Francisco,CA,94016 +197796,Flatscreen TV,1,300.0,2019-05-21 21:00:00,254 Chestnut St, Los Angeles,CA,90001 +197797,Wired Headphones,1,11.99,2019-05-17 21:32:00,575 Jefferson St, San Francisco,CA,94016 +197798,Google Phone,1,600.0,2019-05-23 13:26:00,387 7th St, San Francisco,CA,94016 +197798,USB-C Charging Cable,1,11.95,2019-05-23 13:26:00,387 7th St, San Francisco,CA,94016 +197799,Google Phone,1,600.0,2019-05-21 08:35:00,763 Jefferson St, San Francisco,CA,94016 +197800,27in 4K Gaming Monitor,1,389.99,2019-05-27 15:11:00,172 Spruce St, Boston,MA,02215 +197801,Wired Headphones,1,11.99,2019-05-20 20:38:00,179 Washington St, New York City,NY,10001 +197802,Apple Airpods Headphones,1,150.0,2019-05-05 20:29:00,642 Hickory St, San Francisco,CA,94016 +197803,AA Batteries (4-pack),3,3.84,2019-05-19 20:27:00,321 Meadow St, Atlanta,GA,30301 +197804,USB-C Charging Cable,1,11.95,2019-05-23 22:11:00,664 Jackson St, Los Angeles,CA,90001 +197805,34in Ultrawide Monitor,1,379.99,2019-05-10 21:50:00,67 Hickory St, Los Angeles,CA,90001 +197806,Lightning Charging Cable,1,14.95,2019-05-15 15:49:00,305 2nd St, San Francisco,CA,94016 +197807,Google Phone,1,600.0,2019-05-24 12:43:00,845 6th St, New York City,NY,10001 +197808,Apple Airpods Headphones,1,150.0,2019-05-23 11:13:00,756 Hill St, San Francisco,CA,94016 +197809,Lightning Charging Cable,1,14.95,2019-05-06 09:05:00,97 Spruce St, Los Angeles,CA,90001 +197810,Lightning Charging Cable,1,14.95,2019-05-31 12:58:00,361 Jefferson St, San Francisco,CA,94016 +197811,Lightning Charging Cable,2,14.95,2019-05-26 11:20:00,222 Chestnut St, Atlanta,GA,30301 +197812,iPhone,1,700.0,2019-05-16 12:37:00,837 Dogwood St, Boston,MA,02215 +197812,Apple Airpods Headphones,1,150.0,2019-05-16 12:37:00,837 Dogwood St, Boston,MA,02215 +197813,Apple Airpods Headphones,1,150.0,2019-05-07 15:48:00,173 Meadow St, Seattle,WA,98101 +197813,27in FHD Monitor,1,149.99,2019-05-07 15:48:00,173 Meadow St, Seattle,WA,98101 +197814,Google Phone,1,600.0,2019-05-22 12:00:00,507 River St, San Francisco,CA,94016 +197815,27in FHD Monitor,1,149.99,2019-05-28 08:57:00,555 2nd St, San Francisco,CA,94016 +197816,USB-C Charging Cable,1,11.95,2019-05-05 18:56:00,63 Willow St, New York City,NY,10001 +197817,Apple Airpods Headphones,1,150.0,2019-05-21 22:29:00,176 Ridge St, San Francisco,CA,94016 +197818,USB-C Charging Cable,1,11.95,2019-05-02 12:21:00,814 Adams St, Dallas,TX,75001 +197819,iPhone,1,700.0,2019-05-12 18:37:00,478 Dogwood St, Dallas,TX,75001 +197820,ThinkPad Laptop,1,999.99,2019-05-31 07:53:00,519 Maple St, San Francisco,CA,94016 +197821,Lightning Charging Cable,1,14.95,2019-05-26 08:15:00,33 Adams St, Los Angeles,CA,90001 +197822,Bose SoundSport Headphones,1,99.99,2019-05-03 21:18:00,350 13th St, Portland,OR,97035 +197823,AAA Batteries (4-pack),1,2.99,2019-05-30 15:03:00,150 Johnson St, Los Angeles,CA,90001 +197824,Lightning Charging Cable,1,14.95,2019-05-12 14:54:00,577 7th St, Boston,MA,02215 +197825,USB-C Charging Cable,1,11.95,2019-05-09 19:21:00,297 7th St, Los Angeles,CA,90001 +197826,USB-C Charging Cable,1,11.95,2019-05-16 11:32:00,79 Jefferson St, Boston,MA,02215 +197827,Apple Airpods Headphones,1,150.0,2019-05-07 17:14:00,300 River St, Austin,TX,73301 +197828,Vareebadd Phone,1,400.0,2019-05-25 19:18:00,414 Park St, Dallas,TX,75001 +197829,AAA Batteries (4-pack),1,2.99,2019-05-05 13:56:00,201 Pine St, San Francisco,CA,94016 +197830,Wired Headphones,1,11.99,2019-05-16 16:52:00,629 Jackson St, Austin,TX,73301 +197831,iPhone,1,700.0,2019-05-12 12:36:00,261 Jackson St, New York City,NY,10001 +197832,Vareebadd Phone,1,400.0,2019-05-05 22:13:00,250 Cedar St, Seattle,WA,98101 +197833,Apple Airpods Headphones,1,150.0,2019-05-24 22:12:00,88 13th St, San Francisco,CA,94016 +197834,USB-C Charging Cable,1,11.95,2019-05-18 11:21:00,159 Hill St, New York City,NY,10001 +197835,Bose SoundSport Headphones,1,99.99,2019-05-11 13:53:00,550 Madison St, Boston,MA,02215 +197836,AA Batteries (4-pack),3,3.84,2019-05-04 14:55:00,301 Willow St, Portland,OR,97035 +197837,Bose SoundSport Headphones,1,99.99,2019-05-05 09:19:00,350 Hill St, Atlanta,GA,30301 +197838,27in FHD Monitor,1,149.99,2019-05-22 14:56:00,615 Johnson St, Portland,OR,97035 +197839,27in FHD Monitor,1,149.99,2019-05-16 17:00:00,295 Hickory St, New York City,NY,10001 +197840,AA Batteries (4-pack),1,3.84,2019-05-25 12:04:00,592 Cedar St, Boston,MA,02215 +197841,Apple Airpods Headphones,1,150.0,2019-05-17 08:23:00,21 West St, Dallas,TX,75001 +197841,AAA Batteries (4-pack),2,2.99,2019-05-17 08:23:00,21 West St, Dallas,TX,75001 +197842,Macbook Pro Laptop,1,1700.0,2019-05-01 21:54:00,621 7th St, San Francisco,CA,94016 +197843,AA Batteries (4-pack),1,3.84,2019-05-22 11:19:00,488 Main St, New York City,NY,10001 +197844,Wired Headphones,1,11.99,2019-05-10 17:26:00,389 10th St, New York City,NY,10001 +197845,USB-C Charging Cable,1,11.95,2019-05-09 15:23:00,95 Willow St, Dallas,TX,75001 +197846,AA Batteries (4-pack),1,3.84,2019-05-31 09:31:00,17 Wilson St, Austin,TX,73301 +197847,27in FHD Monitor,1,149.99,2019-05-25 00:22:00,251 Forest St, Dallas,TX,75001 +197848,Lightning Charging Cable,1,14.95,2019-05-09 13:13:00,530 Sunset St, Austin,TX,73301 +197849,AA Batteries (4-pack),1,3.84,2019-05-16 03:22:00,537 Hickory St, Atlanta,GA,30301 +197850,Wired Headphones,1,11.99,2019-05-16 11:42:00,513 Walnut St, San Francisco,CA,94016 +197851,Wired Headphones,1,11.99,2019-05-22 12:50:00,515 Hickory St, Los Angeles,CA,90001 +197852,Google Phone,1,600.0,2019-05-03 12:47:00,848 Meadow St, Seattle,WA,98101 +197852,USB-C Charging Cable,1,11.95,2019-05-03 12:47:00,848 Meadow St, Seattle,WA,98101 +197852,AAA Batteries (4-pack),2,2.99,2019-05-03 12:47:00,848 Meadow St, Seattle,WA,98101 +197853,Apple Airpods Headphones,1,150.0,2019-05-25 20:45:00,515 Willow St, San Francisco,CA,94016 +197854,Bose SoundSport Headphones,1,99.99,2019-05-28 13:17:00,918 Elm St, San Francisco,CA,94016 +197855,AA Batteries (4-pack),1,3.84,2019-05-07 20:41:00,263 13th St, Atlanta,GA,30301 +197856,34in Ultrawide Monitor,1,379.99,2019-05-28 14:48:00,609 Johnson St, Los Angeles,CA,90001 +197857,27in FHD Monitor,1,149.99,2019-05-04 06:28:00,334 River St, Boston,MA,02215 +197858,AA Batteries (4-pack),1,3.84,2019-05-04 16:45:00,881 Meadow St, Los Angeles,CA,90001 +197859,Google Phone,1,600.0,2019-05-20 10:28:00,66 5th St, Los Angeles,CA,90001 +197860,AA Batteries (4-pack),1,3.84,2019-05-21 09:00:00,781 Church St, Dallas,TX,75001 +197861,20in Monitor,1,109.99,2019-05-03 19:53:00,565 Spruce St, San Francisco,CA,94016 +197862,iPhone,1,700.0,2019-05-11 12:32:00,416 5th St, Boston,MA,02215 +197863,27in FHD Monitor,1,149.99,2019-05-19 17:38:00,379 Center St, New York City,NY,10001 +197864,USB-C Charging Cable,1,11.95,2019-05-15 08:11:00,123 North St, New York City,NY,10001 +197865,27in FHD Monitor,1,149.99,2019-05-05 11:53:00,584 12th St, Dallas,TX,75001 +197866,Macbook Pro Laptop,1,1700.0,2019-05-14 22:18:00,631 Washington St, New York City,NY,10001 +197867,Bose SoundSport Headphones,1,99.99,2019-05-31 08:06:00,451 1st St, San Francisco,CA,94016 +197868,Wired Headphones,1,11.99,2019-05-23 19:23:00,912 10th St, New York City,NY,10001 +197869,ThinkPad Laptop,1,999.99,2019-05-18 22:12:00,898 5th St, Portland,ME,04101 +197870,USB-C Charging Cable,1,11.95,2019-05-19 15:39:00,167 Adams St, San Francisco,CA,94016 +197871,Bose SoundSport Headphones,1,99.99,2019-05-17 13:56:00,313 Park St, New York City,NY,10001 +197872,Wired Headphones,1,11.99,2019-05-01 17:55:00,530 10th St, Seattle,WA,98101 +197873,Wired Headphones,1,11.99,2019-05-23 13:42:00,339 Center St, New York City,NY,10001 +197874,34in Ultrawide Monitor,1,379.99,2019-05-18 16:25:00,6 12th St, Dallas,TX,75001 +197875,AAA Batteries (4-pack),2,2.99,2019-05-20 22:29:00,374 4th St, San Francisco,CA,94016 +197876,USB-C Charging Cable,1,11.95,2019-05-29 18:35:00,710 Lincoln St, San Francisco,CA,94016 +197877,Wired Headphones,1,11.99,2019-05-11 08:04:00,178 Walnut St, New York City,NY,10001 +197878,27in 4K Gaming Monitor,1,389.99,2019-05-30 09:34:00,558 8th St, San Francisco,CA,94016 +197879,AA Batteries (4-pack),1,3.84,2019-05-13 08:01:00,387 7th St, New York City,NY,10001 +197880,LG Washing Machine,1,600.0,2019-05-31 17:08:00,114 Ridge St, San Francisco,CA,94016 +197881,Macbook Pro Laptop,1,1700.0,2019-05-29 01:35:00,511 Wilson St, Atlanta,GA,30301 +197882,Wired Headphones,1,11.99,2019-05-19 14:59:00,56 Johnson St, Dallas,TX,75001 +197883,Lightning Charging Cable,1,14.95,2019-05-15 15:08:00,746 Jefferson St, Los Angeles,CA,90001 +197884,iPhone,1,700.0,2019-05-21 14:18:00,543 Center St, Atlanta,GA,30301 +197885,Macbook Pro Laptop,1,1700.0,2019-05-26 12:36:00,930 Church St, Portland,OR,97035 +197886,27in 4K Gaming Monitor,1,389.99,2019-05-30 13:22:00,297 South St, Los Angeles,CA,90001 +197887,USB-C Charging Cable,1,11.95,2019-05-01 20:32:00,401 Adams St, San Francisco,CA,94016 +197888,Wired Headphones,1,11.99,2019-05-04 10:59:00,881 14th St, San Francisco,CA,94016 +197889,AAA Batteries (4-pack),1,2.99,2019-05-30 12:51:00,827 9th St, Boston,MA,02215 +197890,Wired Headphones,1,11.99,2019-05-30 20:47:00,373 Dogwood St, Boston,MA,02215 +197891,Bose SoundSport Headphones,1,99.99,2019-05-14 14:46:00,593 Wilson St, Los Angeles,CA,90001 +197892,20in Monitor,1,109.99,2019-05-28 07:23:00,283 Chestnut St, Austin,TX,73301 +197893,27in 4K Gaming Monitor,1,389.99,2019-05-02 14:26:00,538 4th St, Los Angeles,CA,90001 +197894,27in FHD Monitor,1,149.99,2019-05-16 13:32:00,98 Main St, Austin,TX,73301 +197895,iPhone,1,700.0,2019-05-03 16:27:00,282 South St, San Francisco,CA,94016 +197896,AA Batteries (4-pack),2,3.84,2019-05-01 08:55:00,222 Johnson St, New York City,NY,10001 +197897,20in Monitor,1,109.99,2019-05-10 17:52:00,137 12th St, Los Angeles,CA,90001 +197898,34in Ultrawide Monitor,1,379.99,2019-05-30 07:19:00,109 Walnut St, Seattle,WA,98101 +197899,Bose SoundSport Headphones,1,99.99,2019-05-13 20:19:00,170 13th St, San Francisco,CA,94016 +197900,27in FHD Monitor,1,149.99,2019-05-01 10:20:00,750 Lincoln St, New York City,NY,10001 +197900,AA Batteries (4-pack),1,3.84,2019-05-01 10:20:00,750 Lincoln St, New York City,NY,10001 +197901,Google Phone,1,600.0,2019-05-12 09:03:00,947 Meadow St, San Francisco,CA,94016 +197901,USB-C Charging Cable,1,11.95,2019-05-12 09:03:00,947 Meadow St, San Francisco,CA,94016 +197902,AAA Batteries (4-pack),2,2.99,2019-05-24 12:55:00,552 Wilson St, Boston,MA,02215 +197903,Bose SoundSport Headphones,1,99.99,2019-05-29 09:58:00,592 Madison St, Los Angeles,CA,90001 +197904,Lightning Charging Cable,1,14.95,2019-05-21 13:27:00,688 Jackson St, Dallas,TX,75001 +197905,20in Monitor,1,109.99,2019-05-10 17:10:00,964 12th St, Atlanta,GA,30301 +197905,Lightning Charging Cable,1,14.95,2019-05-10 17:10:00,964 12th St, Atlanta,GA,30301 +197906,iPhone,1,700.0,2019-05-18 23:46:00,24 Madison St, Seattle,WA,98101 +197907,AAA Batteries (4-pack),1,2.99,2019-05-23 23:58:00,966 Church St, Atlanta,GA,30301 +197908,Lightning Charging Cable,1,14.95,2019-05-20 10:03:00,122 Dogwood St, Atlanta,GA,30301 +197909,Apple Airpods Headphones,1,150.0,2019-05-21 15:06:00,186 Johnson St, San Francisco,CA,94016 +197910,27in FHD Monitor,1,149.99,2019-05-16 21:12:00,744 Main St, San Francisco,CA,94016 +197911,USB-C Charging Cable,1,11.95,2019-05-04 14:32:00,611 Lincoln St, Dallas,TX,75001 +197912,27in FHD Monitor,1,149.99,2019-05-13 19:52:00,157 Hickory St, New York City,NY,10001 +197913,Flatscreen TV,1,300.0,2019-05-20 10:21:00,424 2nd St, San Francisco,CA,94016 +197914,Wired Headphones,1,11.99,2019-05-26 00:00:00,116 Willow St, San Francisco,CA,94016 +197915,Bose SoundSport Headphones,1,99.99,2019-05-09 02:00:00,420 Ridge St, Portland,OR,97035 +197916,AA Batteries (4-pack),2,3.84,2019-05-13 09:33:00,313 2nd St, Los Angeles,CA,90001 +197917,Lightning Charging Cable,1,14.95,2019-05-02 22:27:00,979 6th St, Portland,OR,97035 +197918,Wired Headphones,1,11.99,2019-05-12 10:02:00,179 Chestnut St, Austin,TX,73301 +197919,Bose SoundSport Headphones,1,99.99,2019-05-22 22:40:00,810 13th St, New York City,NY,10001 +197920,27in 4K Gaming Monitor,1,389.99,2019-05-31 19:44:00,830 4th St, Los Angeles,CA,90001 +197921,iPhone,1,700.0,2019-05-18 08:27:00,956 Pine St, Portland,ME,04101 +197922,AA Batteries (4-pack),1,3.84,2019-05-02 15:51:00,817 Lake St, San Francisco,CA,94016 +197923,USB-C Charging Cable,1,11.95,2019-05-12 09:31:00,884 4th St, Dallas,TX,75001 +197924,Wired Headphones,1,11.99,2019-05-26 09:55:00,602 Chestnut St, Boston,MA,02215 +197925,Apple Airpods Headphones,1,150.0,2019-05-30 23:47:00,57 Walnut St, New York City,NY,10001 +197926,Apple Airpods Headphones,1,150.0,2019-05-17 22:30:00,251 Washington St, New York City,NY,10001 +197927,Google Phone,1,600.0,2019-05-13 10:12:00,321 Adams St, San Francisco,CA,94016 +197928,27in 4K Gaming Monitor,1,389.99,2019-05-20 11:49:00,89 Willow St, San Francisco,CA,94016 +197929,Bose SoundSport Headphones,1,99.99,2019-05-31 14:09:00,843 Cedar St, Austin,TX,73301 +197930,27in FHD Monitor,1,149.99,2019-05-15 18:28:00,810 13th St, Boston,MA,02215 +197931,Apple Airpods Headphones,1,150.0,2019-05-13 09:07:00,746 Church St, Los Angeles,CA,90001 +197932,AAA Batteries (4-pack),1,2.99,2019-05-19 21:18:00,200 Park St, New York City,NY,10001 +197933,USB-C Charging Cable,1,11.95,2019-05-03 17:35:00,783 Hill St, New York City,NY,10001 +197934,AAA Batteries (4-pack),1,2.99,2019-05-19 21:29:00,997 Adams St, Atlanta,GA,30301 +197935,AAA Batteries (4-pack),2,2.99,2019-05-05 15:12:00,170 9th St, Dallas,TX,75001 +197936,AAA Batteries (4-pack),1,2.99,2019-05-14 17:02:00,160 11th St, San Francisco,CA,94016 +197937,AAA Batteries (4-pack),1,2.99,2019-05-30 08:54:00,663 13th St, New York City,NY,10001 +197938,Apple Airpods Headphones,1,150.0,2019-05-31 14:32:00,484 North St, San Francisco,CA,94016 +197939,AA Batteries (4-pack),1,3.84,2019-05-12 21:51:00,734 Lincoln St, Atlanta,GA,30301 +197940,Apple Airpods Headphones,1,150.0,2019-05-19 11:19:00,984 River St, Seattle,WA,98101 +197941,LG Dryer,1,600.0,2019-05-12 10:41:00,255 11th St, San Francisco,CA,94016 +197942,27in FHD Monitor,1,149.99,2019-05-12 18:56:00,254 6th St, New York City,NY,10001 +197943,Wired Headphones,1,11.99,2019-05-14 06:44:00,158 2nd St, San Francisco,CA,94016 +197944,Google Phone,1,600.0,2019-05-02 22:53:00,657 Walnut St, Atlanta,GA,30301 +197945,AA Batteries (4-pack),1,3.84,2019-05-28 12:55:00,797 Cherry St, San Francisco,CA,94016 +197946,Google Phone,1,600.0,2019-05-11 11:26:00,228 Main St, Boston,MA,02215 +197947,AA Batteries (4-pack),1,3.84,2019-05-19 00:28:00,736 Dogwood St, Portland,OR,97035 +197948,Lightning Charging Cable,1,14.95,2019-05-13 10:39:00,594 Dogwood St, San Francisco,CA,94016 +197949,iPhone,1,700.0,2019-05-28 13:26:00,493 Jefferson St, San Francisco,CA,94016 +197950,Bose SoundSport Headphones,1,99.99,2019-05-08 16:26:00,455 West St, Dallas,TX,75001 +197951,Lightning Charging Cable,1,14.95,2019-05-03 00:36:00,558 7th St, Boston,MA,02215 +197952,27in 4K Gaming Monitor,1,389.99,2019-05-10 20:03:00,161 Elm St, San Francisco,CA,94016 +197953,Wired Headphones,1,11.99,2019-05-22 08:31:00,931 Park St, Los Angeles,CA,90001 +197954,Google Phone,1,600.0,2019-05-07 22:02:00,522 Lakeview St, Dallas,TX,75001 +197954,USB-C Charging Cable,1,11.95,2019-05-07 22:02:00,522 Lakeview St, Dallas,TX,75001 +197955,AAA Batteries (4-pack),1,2.99,2019-05-06 15:22:00,819 Park St, New York City,NY,10001 +197956,Apple Airpods Headphones,1,150.0,2019-05-14 19:40:00,784 Elm St, New York City,NY,10001 +197957,Wired Headphones,1,11.99,2019-05-12 15:44:00,647 Center St, Boston,MA,02215 +197958,iPhone,1,700.0,2019-05-11 08:02:00,420 7th St, New York City,NY,10001 +197959,Bose SoundSport Headphones,1,99.99,2019-05-07 14:14:00,818 South St, New York City,NY,10001 +197960,Lightning Charging Cable,1,14.95,2019-05-16 15:25:00,161 Cherry St, New York City,NY,10001 +197961,34in Ultrawide Monitor,1,379.99,2019-05-29 17:52:00,126 Main St, Dallas,TX,75001 +197962,Bose SoundSport Headphones,1,99.99,2019-05-21 21:18:00,383 North St, San Francisco,CA,94016 +197963,Bose SoundSport Headphones,1,99.99,2019-05-03 13:25:00,780 8th St, San Francisco,CA,94016 +197964,Bose SoundSport Headphones,1,99.99,2019-05-05 17:12:00,368 12th St, Portland,OR,97035 +197965,Flatscreen TV,1,300.0,2019-05-26 14:39:00,362 Jackson St, Los Angeles,CA,90001 +197966,20in Monitor,1,109.99,2019-05-13 14:22:00,354 West St, Seattle,WA,98101 +197967,AAA Batteries (4-pack),1,2.99,2019-05-11 20:40:00,120 Church St, Los Angeles,CA,90001 +197968,27in 4K Gaming Monitor,1,389.99,2019-05-23 22:54:00,714 North St, San Francisco,CA,94016 +197969,LG Washing Machine,1,600.0,2019-05-03 21:24:00,623 Lake St, Seattle,WA,98101 +197970,Wired Headphones,1,11.99,2019-05-17 20:06:00,956 6th St, Los Angeles,CA,90001 +197971,27in FHD Monitor,1,149.99,2019-05-29 15:32:00,271 Cherry St, San Francisco,CA,94016 +197972,Apple Airpods Headphones,1,150.0,2019-05-11 22:55:00,31 Highland St, Dallas,TX,75001 +197973,Wired Headphones,1,11.99,2019-05-18 22:10:00,167 Wilson St, Dallas,TX,75001 +197974,AA Batteries (4-pack),1,3.84,2019-05-27 11:26:00,985 Hill St, Los Angeles,CA,90001 +197975,AAA Batteries (4-pack),1,2.99,2019-05-08 19:41:00,865 12th St, New York City,NY,10001 +197976,Wired Headphones,1,11.99,2019-05-07 09:18:00,624 10th St, Dallas,TX,75001 +197977,Wired Headphones,1,11.99,2019-05-20 19:32:00,275 Cedar St, Los Angeles,CA,90001 +197977,AA Batteries (4-pack),2,3.84,2019-05-20 19:32:00,275 Cedar St, Los Angeles,CA,90001 +197978,Google Phone,1,600.0,2019-05-17 23:23:00,263 10th St, Dallas,TX,75001 +197978,Wired Headphones,1,11.99,2019-05-17 23:23:00,263 10th St, Dallas,TX,75001 +197979,Bose SoundSport Headphones,1,99.99,2019-05-30 13:20:00,307 Hill St, New York City,NY,10001 +197980,Lightning Charging Cable,1,14.95,2019-05-09 11:39:00,950 Lake St, Austin,TX,73301 +197981,ThinkPad Laptop,1,999.99,2019-05-07 04:06:00,582 Cherry St, New York City,NY,10001 +197982,AA Batteries (4-pack),1,3.84,2019-05-10 12:52:00,552 Maple St, San Francisco,CA,94016 +197983,USB-C Charging Cable,1,11.95,2019-05-17 20:50:00,980 Madison St, New York City,NY,10001 +197984,AAA Batteries (4-pack),1,2.99,2019-05-14 16:32:00,839 Lake St, Dallas,TX,75001 +197985,Bose SoundSport Headphones,1,99.99,2019-05-15 10:51:00,257 Cherry St, Los Angeles,CA,90001 +197986,USB-C Charging Cable,1,11.95,2019-05-10 19:42:00,202 4th St, Seattle,WA,98101 +197987,USB-C Charging Cable,1,11.95,2019-05-21 17:07:00,308 Spruce St, Boston,MA,02215 +197987,34in Ultrawide Monitor,1,379.99,2019-05-21 17:07:00,308 Spruce St, Boston,MA,02215 +197988,Macbook Pro Laptop,1,1700.0,2019-05-18 07:58:00,926 14th St, Portland,OR,97035 +197989,USB-C Charging Cable,2,11.95,2019-05-17 10:55:00,877 Sunset St, San Francisco,CA,94016 +197990,USB-C Charging Cable,1,11.95,2019-05-23 19:48:00,858 Jackson St, Los Angeles,CA,90001 +197991,Macbook Pro Laptop,1,1700.0,2019-05-29 00:40:00,583 7th St, Los Angeles,CA,90001 +197992,USB-C Charging Cable,1,11.95,2019-05-17 17:20:00,203 Center St, Atlanta,GA,30301 +197993,USB-C Charging Cable,1,11.95,2019-05-05 15:48:00,679 11th St, New York City,NY,10001 +197994,USB-C Charging Cable,1,11.95,2019-05-07 00:48:00,868 Highland St, New York City,NY,10001 +197995,Vareebadd Phone,1,400.0,2019-05-21 02:09:00,536 Lakeview St, Atlanta,GA,30301 +197995,Wired Headphones,1,11.99,2019-05-21 02:09:00,536 Lakeview St, Atlanta,GA,30301 +197996,27in FHD Monitor,1,149.99,2019-05-21 20:04:00,325 Jefferson St, Atlanta,GA,30301 +197997,USB-C Charging Cable,1,11.95,2019-05-19 15:13:00,338 Lincoln St, Los Angeles,CA,90001 +197998,27in FHD Monitor,1,149.99,2019-05-21 19:31:00,123 Forest St, Boston,MA,02215 +197999,Macbook Pro Laptop,1,1700.0,2019-05-12 15:48:00,161 Jackson St, Dallas,TX,75001 +198000,ThinkPad Laptop,1,999.99,2019-05-20 18:15:00,358 6th St, Los Angeles,CA,90001 +198001,ThinkPad Laptop,1,999.99,2019-05-09 15:50:00,978 Elm St, Austin,TX,73301 +198002,Apple Airpods Headphones,2,150.0,2019-05-16 19:19:00,583 Adams St, Seattle,WA,98101 +198003,Lightning Charging Cable,1,14.95,2019-05-10 12:30:00,591 Lakeview St, San Francisco,CA,94016 +198004,AA Batteries (4-pack),1,3.84,2019-05-11 14:21:00,215 Ridge St, Los Angeles,CA,90001 +198005,Bose SoundSport Headphones,1,99.99,2019-05-11 08:20:00,49 Center St, Atlanta,GA,30301 +198005,AAA Batteries (4-pack),2,2.99,2019-05-11 08:20:00,49 Center St, Atlanta,GA,30301 +198006,Bose SoundSport Headphones,1,99.99,2019-05-01 22:45:00,144 7th St, Atlanta,GA,30301 +198007,USB-C Charging Cable,1,11.95,2019-05-30 08:01:00,684 Lake St, Dallas,TX,75001 +198008,USB-C Charging Cable,1,11.95,2019-05-06 10:57:00,367 Washington St, Dallas,TX,75001 +198009,Macbook Pro Laptop,1,1700.0,2019-05-20 11:10:00,565 Lake St, Boston,MA,02215 +198010,27in 4K Gaming Monitor,1,389.99,2019-05-12 13:41:00,789 Sunset St, Los Angeles,CA,90001 +198011,AAA Batteries (4-pack),1,2.99,2019-05-12 22:26:00,779 Adams St, Boston,MA,02215 +198012,LG Washing Machine,1,600.0,2019-05-16 05:41:00,805 6th St, San Francisco,CA,94016 +198013,ThinkPad Laptop,1,999.99,2019-05-24 21:48:00,681 Maple St, Dallas,TX,75001 +198014,Macbook Pro Laptop,1,1700.0,2019-05-20 15:34:00,329 Pine St, Los Angeles,CA,90001 +198015,ThinkPad Laptop,1,999.99,2019-05-26 14:12:00,629 Hill St, Los Angeles,CA,90001 +198016,27in 4K Gaming Monitor,1,389.99,2019-05-13 17:41:00,789 Main St, Los Angeles,CA,90001 +198016,Apple Airpods Headphones,1,150.0,2019-05-13 17:41:00,789 Main St, Los Angeles,CA,90001 +198017,Bose SoundSport Headphones,1,99.99,2019-05-15 18:07:00,771 Chestnut St, Seattle,WA,98101 +198018,USB-C Charging Cable,2,11.95,2019-05-03 12:02:00,825 North St, San Francisco,CA,94016 +198019,USB-C Charging Cable,1,11.95,2019-05-12 10:22:00,611 Walnut St, Boston,MA,02215 +198020,20in Monitor,1,109.99,2019-05-13 20:10:00,471 Jefferson St, San Francisco,CA,94016 +198021,AAA Batteries (4-pack),2,2.99,2019-05-14 23:54:00,713 Ridge St, Los Angeles,CA,90001 +198022,AA Batteries (4-pack),3,3.84,2019-05-29 16:37:00,446 7th St, San Francisco,CA,94016 +198023,USB-C Charging Cable,1,11.95,2019-05-24 00:30:00,133 Forest St, New York City,NY,10001 +198024,AAA Batteries (4-pack),1,2.99,2019-05-06 12:13:00,191 12th St, Boston,MA,02215 +198025,Google Phone,1,600.0,2019-05-16 00:56:00,372 Johnson St, New York City,NY,10001 +198025,USB-C Charging Cable,1,11.95,2019-05-16 00:56:00,372 Johnson St, New York City,NY,10001 +198026,AAA Batteries (4-pack),1,2.99,2019-05-22 18:33:00,466 Elm St, San Francisco,CA,94016 +198027,AAA Batteries (4-pack),2,2.99,2019-05-02 07:10:00,477 Sunset St, Los Angeles,CA,90001 +198028,27in FHD Monitor,1,149.99,2019-05-30 16:50:00,204 Chestnut St, San Francisco,CA,94016 +198029,Bose SoundSport Headphones,1,99.99,2019-05-10 19:12:00,833 12th St, Dallas,TX,75001 +198030,iPhone,1,700.0,2019-05-09 08:44:00,430 8th St, Atlanta,GA,30301 +198031,USB-C Charging Cable,1,11.95,2019-05-03 20:50:00,144 Dogwood St, Boston,MA,02215 +198032,Wired Headphones,1,11.99,2019-05-03 11:09:00,912 River St, San Francisco,CA,94016 +198033,ThinkPad Laptop,1,999.99,2019-05-12 22:07:00,705 River St, New York City,NY,10001 +198034,ThinkPad Laptop,1,999.99,2019-05-15 21:03:00,376 Jackson St, San Francisco,CA,94016 +198035,USB-C Charging Cable,1,11.95,2019-05-05 20:51:00,858 Chestnut St, San Francisco,CA,94016 +198036,AAA Batteries (4-pack),1,2.99,2019-05-18 16:51:00,483 12th St, Boston,MA,02215 +198037,USB-C Charging Cable,1,11.95,2019-05-29 02:30:00,729 Main St, Dallas,TX,75001 +198038,USB-C Charging Cable,1,11.95,2019-05-01 11:51:00,873 Elm St, Los Angeles,CA,90001 +198039,AAA Batteries (4-pack),1,2.99,2019-05-20 14:02:00,74 Highland St, Los Angeles,CA,90001 +198040,AA Batteries (4-pack),2,3.84,2019-05-29 13:17:00,11 Hickory St, Boston,MA,02215 +198041,AAA Batteries (4-pack),1,2.99,2019-05-06 19:13:00,304 Hill St, Los Angeles,CA,90001 +198042,Google Phone,1,600.0,2019-05-08 18:39:00,826 Cedar St, Boston,MA,02215 +198042,USB-C Charging Cable,1,11.95,2019-05-08 18:39:00,826 Cedar St, Boston,MA,02215 +198043,AAA Batteries (4-pack),1,2.99,2019-05-05 14:34:00,109 Maple St, San Francisco,CA,94016 +198044,34in Ultrawide Monitor,1,379.99,2019-05-05 23:04:00,860 Jackson St, San Francisco,CA,94016 +198045,Wired Headphones,1,11.99,2019-05-14 11:14:00,294 Park St, Los Angeles,CA,90001 +198046,Lightning Charging Cable,1,14.95,2019-05-07 20:25:00,244 7th St, Boston,MA,02215 +198046,Bose SoundSport Headphones,1,99.99,2019-05-07 20:25:00,244 7th St, Boston,MA,02215 +198047,AAA Batteries (4-pack),2,2.99,2019-05-25 17:34:00,535 Forest St, Boston,MA,02215 +198048,AA Batteries (4-pack),1,3.84,2019-05-10 16:51:00,552 Dogwood St, Dallas,TX,75001 +198049,USB-C Charging Cable,2,11.95,2019-05-26 22:44:00,383 Meadow St, Austin,TX,73301 +198050,AA Batteries (4-pack),2,3.84,2019-05-17 17:36:00,152 South St, San Francisco,CA,94016 +198051,AA Batteries (4-pack),1,3.84,2019-05-23 11:42:00,351 Adams St, Portland,OR,97035 +198052,AA Batteries (4-pack),1,3.84,2019-05-04 00:20:00,265 Madison St, Atlanta,GA,30301 +198053,Lightning Charging Cable,1,14.95,2019-05-01 21:13:00,150 Hickory St, San Francisco,CA,94016 +198054,Lightning Charging Cable,1,14.95,2019-05-10 10:13:00,661 North St, Los Angeles,CA,90001 +198054,iPhone,1,700.0,2019-05-10 10:13:00,661 North St, Los Angeles,CA,90001 +198055,AA Batteries (4-pack),2,3.84,2019-05-14 04:54:00,737 Lincoln St, New York City,NY,10001 +198056,USB-C Charging Cable,1,11.95,2019-05-12 11:07:00,521 Center St, Los Angeles,CA,90001 +198057,AAA Batteries (4-pack),1,2.99,2019-05-16 00:38:00,381 13th St, Boston,MA,02215 +198058,AA Batteries (4-pack),1,3.84,2019-05-04 08:15:00,883 Jefferson St, Austin,TX,73301 +198059,Vareebadd Phone,1,400.0,2019-05-26 16:31:00,474 9th St, Atlanta,GA,30301 +198059,Wired Headphones,1,11.99,2019-05-26 16:31:00,474 9th St, Atlanta,GA,30301 +198060,Lightning Charging Cable,1,14.95,2019-05-16 14:44:00,370 Maple St, Atlanta,GA,30301 +198060,USB-C Charging Cable,1,11.95,2019-05-16 14:44:00,370 Maple St, Atlanta,GA,30301 +198061,AA Batteries (4-pack),3,3.84,2019-05-07 21:23:00,74 Willow St, Atlanta,GA,30301 +198062,AA Batteries (4-pack),1,3.84,2019-05-31 23:09:00,206 Elm St, San Francisco,CA,94016 +198063,Bose SoundSport Headphones,1,99.99,2019-05-02 11:47:00,893 9th St, Los Angeles,CA,90001 +198064,AA Batteries (4-pack),1,3.84,2019-05-19 08:12:00,847 Willow St, Seattle,WA,98101 +198065,USB-C Charging Cable,1,11.95,2019-05-30 12:43:00,912 Dogwood St, Portland,ME,04101 +198066,AAA Batteries (4-pack),1,2.99,2019-05-03 09:22:00,356 Maple St, San Francisco,CA,94016 +198067,AA Batteries (4-pack),2,3.84,2019-05-27 20:05:00,891 10th St, San Francisco,CA,94016 +198068,27in FHD Monitor,1,149.99,2019-05-25 19:58:00,935 Pine St, San Francisco,CA,94016 +198069,27in 4K Gaming Monitor,1,389.99,2019-05-18 09:42:00,894 13th St, Boston,MA,02215 +198070,AA Batteries (4-pack),2,3.84,2019-05-12 15:59:00,905 4th St, Boston,MA,02215 +198071,Apple Airpods Headphones,1,150.0,2019-05-24 10:53:00,305 Jefferson St, New York City,NY,10001 +198072,Bose SoundSport Headphones,1,99.99,2019-05-25 20:12:00,291 Cedar St, San Francisco,CA,94016 +198073,27in FHD Monitor,1,149.99,2019-05-22 22:34:00,231 6th St, Atlanta,GA,30301 +198074,34in Ultrawide Monitor,1,379.99,2019-05-30 20:18:00,127 West St, San Francisco,CA,94016 +198075,iPhone,1,700.0,2019-05-13 18:45:00,747 Walnut St, Dallas,TX,75001 +198075,Lightning Charging Cable,1,14.95,2019-05-13 18:45:00,747 Walnut St, Dallas,TX,75001 +198076,Wired Headphones,1,11.99,2019-05-20 18:25:00,227 Washington St, San Francisco,CA,94016 +198077,AA Batteries (4-pack),1,3.84,2019-05-15 10:01:00,149 5th St, Boston,MA,02215 +198078,Bose SoundSport Headphones,1,99.99,2019-05-16 18:41:00,924 1st St, San Francisco,CA,94016 +198078,USB-C Charging Cable,1,11.95,2019-05-16 18:41:00,924 1st St, San Francisco,CA,94016 +198079,Google Phone,1,600.0,2019-05-03 16:39:00,189 Wilson St, New York City,NY,10001 +198080,Apple Airpods Headphones,1,150.0,2019-05-21 17:51:00,600 Pine St, New York City,NY,10001 +198081,AAA Batteries (4-pack),4,2.99,2019-05-27 09:27:00,529 Center St, New York City,NY,10001 +198082,iPhone,1,700.0,2019-05-14 17:41:00,785 13th St, Los Angeles,CA,90001 +198083,Bose SoundSport Headphones,1,99.99,2019-05-15 13:59:00,712 Dogwood St, Austin,TX,73301 +198084,AAA Batteries (4-pack),1,2.99,2019-05-20 09:31:00,806 Washington St, Atlanta,GA,30301 +198085,iPhone,1,700.0,2019-05-02 19:05:00,422 11th St, San Francisco,CA,94016 +198086,34in Ultrawide Monitor,1,379.99,2019-05-21 14:19:00,215 Washington St, Dallas,TX,75001 +198087,AA Batteries (4-pack),2,3.84,2019-05-13 21:08:00,815 Adams St, Seattle,WA,98101 +198088,AAA Batteries (4-pack),3,2.99,2019-05-26 14:56:00,964 Cherry St, Austin,TX,73301 +198089,Bose SoundSport Headphones,1,99.99,2019-05-22 00:51:00,108 13th St, Los Angeles,CA,90001 +198090,Lightning Charging Cable,1,14.95,2019-05-30 01:01:00,901 Jefferson St, Boston,MA,02215 +198091,Flatscreen TV,1,300.0,2019-05-03 13:44:00,665 South St, New York City,NY,10001 +198092,USB-C Charging Cable,1,11.95,2019-05-06 14:14:00,562 Park St, San Francisco,CA,94016 +198093,27in 4K Gaming Monitor,1,389.99,2019-05-11 15:39:00,582 8th St, New York City,NY,10001 +198094,Vareebadd Phone,1,400.0,2019-05-29 20:35:00,406 River St, Portland,OR,97035 +198094,USB-C Charging Cable,1,11.95,2019-05-29 20:35:00,406 River St, Portland,OR,97035 +198095,USB-C Charging Cable,1,11.95,2019-05-07 13:51:00,467 14th St, Seattle,WA,98101 +198096,Wired Headphones,1,11.99,2019-05-13 12:41:00,646 Dogwood St, San Francisco,CA,94016 +198097,Lightning Charging Cable,1,14.95,2019-05-21 16:36:00,782 10th St, Dallas,TX,75001 +198098,AAA Batteries (4-pack),1,2.99,2019-05-02 10:54:00,517 2nd St, San Francisco,CA,94016 +198099,Apple Airpods Headphones,1,150.0,2019-05-26 13:38:00,63 13th St, New York City,NY,10001 +198100,Bose SoundSport Headphones,1,99.99,2019-05-24 23:28:00,166 10th St, Portland,OR,97035 +198101,Lightning Charging Cable,1,14.95,2019-05-06 20:49:00,509 Hickory St, Atlanta,GA,30301 +198102,Lightning Charging Cable,1,14.95,2019-05-08 01:15:00,370 Cedar St, San Francisco,CA,94016 +198103,27in FHD Monitor,1,149.99,2019-05-14 15:55:00,106 Hickory St, Los Angeles,CA,90001 +198104,LG Dryer,1,600.0,2019-05-14 19:29:00,929 Center St, Austin,TX,73301 +198105,Lightning Charging Cable,1,14.95,2019-05-14 12:10:00,721 Lincoln St, Atlanta,GA,30301 +198106,Apple Airpods Headphones,1,150.0,2019-05-29 13:55:00,199 Washington St, San Francisco,CA,94016 +198107,27in 4K Gaming Monitor,1,389.99,2019-05-31 10:27:00,262 Main St, Portland,OR,97035 +198108,Bose SoundSport Headphones,1,99.99,2019-05-09 12:55:00,941 8th St, Los Angeles,CA,90001 +198109,AAA Batteries (4-pack),2,2.99,2019-05-18 16:25:00,330 2nd St, New York City,NY,10001 +198110,Lightning Charging Cable,1,14.95,2019-05-13 07:06:00,856 7th St, San Francisco,CA,94016 +198111,34in Ultrawide Monitor,1,379.99,2019-05-15 08:33:00,323 Highland St, New York City,NY,10001 +198112,Lightning Charging Cable,1,14.95,2019-05-10 11:56:00,459 Cedar St, Atlanta,GA,30301 +198113,AA Batteries (4-pack),1,3.84,2019-05-11 23:42:00,460 Sunset St, Portland,OR,97035 +198114,20in Monitor,1,109.99,2019-05-24 19:17:00,897 Maple St, San Francisco,CA,94016 +198115,AA Batteries (4-pack),1,3.84,2019-05-31 10:39:00,351 Park St, Dallas,TX,75001 +198116,USB-C Charging Cable,1,11.95,2019-05-27 18:47:00,296 Jefferson St, Dallas,TX,75001 +198117,20in Monitor,1,109.99,2019-05-06 15:32:00,498 Walnut St, Atlanta,GA,30301 +198118,AAA Batteries (4-pack),1,2.99,2019-05-16 14:06:00,941 Maple St, San Francisco,CA,94016 +198119,USB-C Charging Cable,1,11.95,2019-05-18 14:50:00,154 Hill St, Portland,OR,97035 +198120,27in 4K Gaming Monitor,1,389.99,2019-05-10 20:10:00,403 7th St, Boston,MA,02215 +198121,Apple Airpods Headphones,1,150.0,2019-05-27 23:21:00,301 Willow St, New York City,NY,10001 +198122,Lightning Charging Cable,1,14.95,2019-05-05 12:46:00,231 Adams St, San Francisco,CA,94016 +198123,Lightning Charging Cable,1,14.95,2019-05-22 08:42:00,692 9th St, Portland,OR,97035 +198124,Bose SoundSport Headphones,1,99.99,2019-05-06 18:35:00,681 Church St, Austin,TX,73301 +198125,Apple Airpods Headphones,1,150.0,2019-05-26 15:25:00,129 Lakeview St, New York City,NY,10001 +198126,LG Washing Machine,1,600.0,2019-05-15 01:53:00,811 11th St, Los Angeles,CA,90001 +198127,AA Batteries (4-pack),1,3.84,2019-05-09 09:05:00,40 Main St, Los Angeles,CA,90001 +198128,Apple Airpods Headphones,1,150.0,2019-05-06 08:11:00,869 5th St, New York City,NY,10001 +198129,AAA Batteries (4-pack),1,2.99,2019-05-08 19:18:00,725 Chestnut St, Boston,MA,02215 +198130,Lightning Charging Cable,1,14.95,2019-05-16 14:33:00,582 Cherry St, Austin,TX,73301 +198131,Lightning Charging Cable,1,14.95,2019-05-04 04:46:00,414 12th St, Dallas,TX,75001 +198132,AA Batteries (4-pack),1,3.84,2019-05-30 15:12:00,431 Forest St, San Francisco,CA,94016 +198133,AA Batteries (4-pack),1,3.84,2019-05-29 23:01:00,208 Meadow St, New York City,NY,10001 +198134,Bose SoundSport Headphones,1,99.99,2019-05-24 08:49:00,931 Dogwood St, Dallas,TX,75001 +198135,ThinkPad Laptop,1,999.99,2019-05-12 08:58:00,233 South St, Los Angeles,CA,90001 +198136,AA Batteries (4-pack),1,3.84,2019-05-13 18:55:00,209 Jefferson St, New York City,NY,10001 +198137,USB-C Charging Cable,1,11.95,2019-05-23 23:07:00,361 Lake St, Los Angeles,CA,90001 +198138,AAA Batteries (4-pack),2,2.99,2019-05-23 12:47:00,435 West St, Atlanta,GA,30301 +198139,Lightning Charging Cable,1,14.95,2019-05-29 12:13:00,638 Park St, Atlanta,GA,30301 +198140,Wired Headphones,1,11.99,2019-05-09 13:25:00,344 Spruce St, Boston,MA,02215 +198141,USB-C Charging Cable,1,11.95,2019-05-18 09:41:00,211 Lake St, San Francisco,CA,94016 +198141,Apple Airpods Headphones,1,150.0,2019-05-18 09:41:00,211 Lake St, San Francisco,CA,94016 +198142,Wired Headphones,2,11.99,2019-05-06 18:19:00,642 Hickory St, Seattle,WA,98101 +198143,AAA Batteries (4-pack),3,2.99,2019-05-27 02:03:00,593 Highland St, Boston,MA,02215 +198144,Google Phone,1,600.0,2019-05-26 20:13:00,333 Cedar St, Austin,TX,73301 +198145,Apple Airpods Headphones,1,150.0,2019-05-07 10:50:00,682 Cherry St, San Francisco,CA,94016 +198146,Bose SoundSport Headphones,1,99.99,2019-05-18 22:35:00,296 Lakeview St, Boston,MA,02215 +198147,27in FHD Monitor,1,149.99,2019-05-27 00:19:00,78 11th St, San Francisco,CA,94016 +198148,Flatscreen TV,1,300.0,2019-05-23 23:59:00,26 2nd St, Portland,OR,97035 +198149,Vareebadd Phone,1,400.0,2019-05-26 11:53:00,583 West St, Los Angeles,CA,90001 +198150,Bose SoundSport Headphones,1,99.99,2019-05-08 17:51:00,144 10th St, Seattle,WA,98101 +198151,USB-C Charging Cable,1,11.95,2019-05-22 10:54:00,965 Park St, Boston,MA,02215 +198152,iPhone,1,700.0,2019-05-14 23:01:00,471 Maple St, Portland,OR,97035 +198153,Bose SoundSport Headphones,1,99.99,2019-05-15 13:50:00,559 1st St, Seattle,WA,98101 +198154,AA Batteries (4-pack),1,3.84,2019-05-24 10:47:00,84 Lakeview St, New York City,NY,10001 +198155,Bose SoundSport Headphones,1,99.99,2019-05-23 17:44:00,775 4th St, New York City,NY,10001 +198156,Macbook Pro Laptop,1,1700.0,2019-05-22 22:19:00,420 Main St, New York City,NY,10001 +198157,Google Phone,1,600.0,2019-05-18 15:56:00,452 Lincoln St, Seattle,WA,98101 +198158,Wired Headphones,1,11.99,2019-05-30 21:05:00,775 5th St, Los Angeles,CA,90001 +198159,Bose SoundSport Headphones,1,99.99,2019-05-11 15:37:00,867 4th St, Atlanta,GA,30301 +198160,iPhone,1,700.0,2019-05-03 12:57:00,352 Lincoln St, San Francisco,CA,94016 +198161,Bose SoundSport Headphones,1,99.99,2019-05-20 19:21:00,889 Wilson St, San Francisco,CA,94016 +198162,iPhone,1,700.0,2019-05-27 01:03:00,356 7th St, San Francisco,CA,94016 +198163,USB-C Charging Cable,1,11.95,2019-05-23 19:53:00,215 Jackson St, San Francisco,CA,94016 +198164,34in Ultrawide Monitor,1,379.99,2019-05-29 20:52:00,985 South St, San Francisco,CA,94016 +198165,Lightning Charging Cable,2,14.95,2019-05-27 20:03:00,945 Lincoln St, Dallas,TX,75001 +198166,Lightning Charging Cable,1,14.95,2019-05-23 08:26:00,235 1st St, San Francisco,CA,94016 +198167,USB-C Charging Cable,1,11.95,2019-05-06 02:36:00,754 Meadow St, New York City,NY,10001 +198168,AA Batteries (4-pack),1,3.84,2019-05-17 22:19:00,271 Elm St, San Francisco,CA,94016 +198169,27in FHD Monitor,1,149.99,2019-05-19 20:38:00,2 1st St, San Francisco,CA,94016 +198170,Apple Airpods Headphones,1,150.0,2019-05-03 08:22:00,114 Cedar St, New York City,NY,10001 +198171,Lightning Charging Cable,2,14.95,2019-05-28 11:31:00,943 Main St, Los Angeles,CA,90001 +198172,AAA Batteries (4-pack),1,2.99,2019-05-27 17:30:00,834 14th St, Austin,TX,73301 +198173,Wired Headphones,1,11.99,2019-05-05 20:32:00,625 Adams St, Los Angeles,CA,90001 +198174,Flatscreen TV,1,300.0,2019-05-13 17:54:00,81 Maple St, San Francisco,CA,94016 +198175,AAA Batteries (4-pack),1,2.99,2019-05-19 13:21:00,406 Lincoln St, Seattle,WA,98101 +198176,Wired Headphones,2,11.99,2019-05-09 12:23:00,39 River St, San Francisco,CA,94016 +198177,AAA Batteries (4-pack),2,2.99,2019-05-16 22:24:00,567 9th St, Seattle,WA,98101 +198178,AA Batteries (4-pack),1,3.84,2019-05-18 17:10:00,42 12th St, Atlanta,GA,30301 +198179,Google Phone,1,600.0,2019-05-25 07:02:00,747 Cherry St, Atlanta,GA,30301 +198180,Apple Airpods Headphones,1,150.0,2019-05-23 22:12:00,222 Johnson St, Portland,OR,97035 +198181,34in Ultrawide Monitor,1,379.99,2019-05-08 20:34:00,887 North St, Portland,OR,97035 +198182,Apple Airpods Headphones,1,150.0,2019-05-14 00:56:00,742 Lakeview St, Boston,MA,02215 +198183,Vareebadd Phone,1,400.0,2019-05-22 18:55:00,112 7th St, San Francisco,CA,94016 +198184,Lightning Charging Cable,1,14.95,2019-05-21 22:04:00,108 Forest St, Dallas,TX,75001 +198185,27in FHD Monitor,1,149.99,2019-05-04 12:59:00,260 Elm St, Boston,MA,02215 +198186,AAA Batteries (4-pack),1,2.99,2019-05-30 11:16:00,872 Cherry St, Boston,MA,02215 +198187,AA Batteries (4-pack),1,3.84,2019-05-24 08:47:00,156 Lake St, Austin,TX,73301 +198188,AAA Batteries (4-pack),1,2.99,2019-05-28 18:25:00,149 Jackson St, Atlanta,GA,30301 +198189,USB-C Charging Cable,1,11.95,2019-05-07 11:19:00,443 Lakeview St, San Francisco,CA,94016 +198190,Wired Headphones,2,11.99,2019-05-06 22:13:00,635 Center St, San Francisco,CA,94016 +198190,iPhone,1,700.0,2019-05-06 22:13:00,635 Center St, San Francisco,CA,94016 +198191,iPhone,1,700.0,2019-05-10 20:55:00,751 7th St, Boston,MA,02215 +198192,USB-C Charging Cable,1,11.95,2019-05-02 16:40:00,401 5th St, San Francisco,CA,94016 +198193,ThinkPad Laptop,1,999.99,2019-05-08 22:08:00,581 Ridge St, Portland,OR,97035 +198194,Lightning Charging Cable,1,14.95,2019-05-16 09:30:00,809 Walnut St, San Francisco,CA,94016 +198195,AAA Batteries (4-pack),1,2.99,2019-05-06 14:34:00,266 Meadow St, New York City,NY,10001 +198196,27in FHD Monitor,1,149.99,2019-05-28 12:15:00,317 Dogwood St, Dallas,TX,75001 +198197,Wired Headphones,1,11.99,2019-05-02 18:19:00,91 14th St, San Francisco,CA,94016 +198198,Bose SoundSport Headphones,1,99.99,2019-05-04 17:30:00,483 Madison St, Seattle,WA,98101 +198199,Bose SoundSport Headphones,1,99.99,2019-05-30 13:44:00,388 Chestnut St, Los Angeles,CA,90001 +198200,34in Ultrawide Monitor,1,379.99,2019-05-11 19:19:00,953 14th St, Atlanta,GA,30301 +198201,AA Batteries (4-pack),2,3.84,2019-05-27 01:14:00,192 1st St, San Francisco,CA,94016 +198202,Lightning Charging Cable,1,14.95,2019-05-12 20:40:00,685 1st St, Los Angeles,CA,90001 +198203,27in FHD Monitor,1,149.99,2019-05-13 15:32:00,622 Jackson St, San Francisco,CA,94016 +198204,AA Batteries (4-pack),1,3.84,2019-05-06 11:09:00,399 North St, San Francisco,CA,94016 +198204,Lightning Charging Cable,1,14.95,2019-05-06 11:09:00,399 North St, San Francisco,CA,94016 +198205,USB-C Charging Cable,1,11.95,2019-05-02 17:13:00,173 11th St, Portland,ME,04101 +198206,Bose SoundSport Headphones,1,99.99,2019-05-18 20:43:00,69 West St, Portland,OR,97035 +198207,27in 4K Gaming Monitor,1,389.99,2019-05-12 20:39:00,297 Center St, Los Angeles,CA,90001 +198208,27in FHD Monitor,1,149.99,2019-05-25 11:30:00,410 River St, Austin,TX,73301 +198209,Bose SoundSport Headphones,1,99.99,2019-05-20 12:03:00,166 Lincoln St, Atlanta,GA,30301 +198210,Apple Airpods Headphones,1,150.0,2019-05-31 20:57:00,533 4th St, Seattle,WA,98101 +198211,Google Phone,1,600.0,2019-05-27 19:34:00,587 12th St, Seattle,WA,98101 +198212,Bose SoundSport Headphones,1,99.99,2019-05-03 00:23:00,603 Wilson St, San Francisco,CA,94016 +198213,USB-C Charging Cable,1,11.95,2019-05-13 15:37:00,306 Cedar St, Seattle,WA,98101 +198214,Macbook Pro Laptop,1,1700.0,2019-05-04 13:33:00,644 River St, Boston,MA,02215 +198215,AAA Batteries (4-pack),2,2.99,2019-05-24 01:38:00,920 Washington St, New York City,NY,10001 +198215,Google Phone,1,600.0,2019-05-24 01:38:00,920 Washington St, New York City,NY,10001 +198216,Lightning Charging Cable,1,14.95,2019-05-07 13:29:00,281 7th St, San Francisco,CA,94016 +198217,Bose SoundSport Headphones,1,99.99,2019-05-24 00:21:00,343 Madison St, Atlanta,GA,30301 +198218,USB-C Charging Cable,2,11.95,2019-05-27 21:32:00,683 Jackson St, Atlanta,GA,30301 +198219,Macbook Pro Laptop,1,1700.0,2019-05-08 09:56:00,445 Center St, Los Angeles,CA,90001 +198220,AAA Batteries (4-pack),3,2.99,2019-05-23 11:43:00,28 Ridge St, New York City,NY,10001 +198221,20in Monitor,1,109.99,2019-05-25 18:51:00,906 Lake St, Seattle,WA,98101 +198222,Wired Headphones,1,11.99,2019-05-05 20:26:00,872 Sunset St, New York City,NY,10001 +198223,Lightning Charging Cable,1,14.95,2019-05-25 18:20:00,891 Main St, San Francisco,CA,94016 +198224,Wired Headphones,1,11.99,2019-05-01 19:53:00,308 Church St, New York City,NY,10001 +198225,34in Ultrawide Monitor,1,379.99,2019-05-05 21:49:00,504 14th St, New York City,NY,10001 +198226,20in Monitor,1,109.99,2019-05-05 14:09:00,436 10th St, Seattle,WA,98101 +198227,Lightning Charging Cable,1,14.95,2019-05-27 16:07:00,481 Main St, Dallas,TX,75001 +198228,34in Ultrawide Monitor,1,379.99,2019-05-22 23:29:00,12 14th St, Dallas,TX,75001 +198229,USB-C Charging Cable,1,11.95,2019-05-10 05:55:00,560 Pine St, New York City,NY,10001 +198230,Lightning Charging Cable,1,14.95,2019-05-12 09:52:00,380 Wilson St, San Francisco,CA,94016 +198231,USB-C Charging Cable,1,11.95,2019-05-23 19:07:00,310 Cedar St, San Francisco,CA,94016 +198232,AA Batteries (4-pack),1,3.84,2019-05-16 20:21:00,868 Park St, San Francisco,CA,94016 +198233,iPhone,1,700.0,2019-05-14 12:36:00,653 River St, Portland,ME,04101 +198234,Bose SoundSport Headphones,1,99.99,2019-05-27 19:46:00,191 Walnut St, Los Angeles,CA,90001 +198235,Apple Airpods Headphones,1,150.0,2019-05-08 21:28:00,554 Hill St, San Francisco,CA,94016 +198236,Flatscreen TV,1,300.0,2019-05-16 16:52:00,293 1st St, Los Angeles,CA,90001 +198237,AA Batteries (4-pack),1,3.84,2019-05-13 10:10:00,133 Park St, Los Angeles,CA,90001 +198238,AA Batteries (4-pack),1,3.84,2019-05-29 18:58:00,32 13th St, Los Angeles,CA,90001 +198238,27in FHD Monitor,1,149.99,2019-05-29 18:58:00,32 13th St, Los Angeles,CA,90001 +198239,Lightning Charging Cable,1,14.95,2019-05-20 10:25:00,687 14th St, Boston,MA,02215 +198240,34in Ultrawide Monitor,1,379.99,2019-05-08 16:42:00,588 Willow St, San Francisco,CA,94016 +198241,AA Batteries (4-pack),1,3.84,2019-05-23 19:21:00,363 Jackson St, San Francisco,CA,94016 +198242,Lightning Charging Cable,1,14.95,2019-05-06 19:25:00,384 9th St, New York City,NY,10001 +198243,20in Monitor,1,109.99,2019-05-14 13:00:00,435 Forest St, Los Angeles,CA,90001 +198244,USB-C Charging Cable,1,11.95,2019-05-21 20:32:00,754 Cedar St, San Francisco,CA,94016 +198245,Bose SoundSport Headphones,1,99.99,2019-05-25 14:13:00,64 Park St, Los Angeles,CA,90001 +198246,Lightning Charging Cable,1,14.95,2019-05-02 17:32:00,131 10th St, Los Angeles,CA,90001 +198247,27in FHD Monitor,1,149.99,2019-05-21 17:03:00,51 Meadow St, San Francisco,CA,94016 +198248,Wired Headphones,1,11.99,2019-05-31 10:24:00,467 South St, New York City,NY,10001 +198249,27in 4K Gaming Monitor,1,389.99,2019-05-16 14:56:00,458 Madison St, New York City,NY,10001 +198250,27in FHD Monitor,1,149.99,2019-05-29 18:14:00,701 11th St, Boston,MA,02215 +198251,Google Phone,1,600.0,2019-05-21 14:24:00,36 Park St, New York City,NY,10001 +198251,Wired Headphones,1,11.99,2019-05-21 14:24:00,36 Park St, New York City,NY,10001 +198252,USB-C Charging Cable,1,11.95,2019-05-29 10:41:00,713 River St, Austin,TX,73301 +198253,AA Batteries (4-pack),1,3.84,2019-05-17 18:00:00,582 Lake St, New York City,NY,10001 +198254,USB-C Charging Cable,1,11.95,2019-05-25 14:02:00,833 Ridge St, San Francisco,CA,94016 +198255,LG Washing Machine,1,600.0,2019-05-21 22:50:00,239 Washington St, New York City,NY,10001 +198256,Apple Airpods Headphones,1,150.0,2019-05-29 17:07:00,116 Center St, Boston,MA,02215 +198257,Lightning Charging Cable,1,14.95,2019-05-05 15:34:00,860 Willow St, New York City,NY,10001 +198258,USB-C Charging Cable,1,11.95,2019-05-28 22:11:00,893 9th St, Atlanta,GA,30301 +198259,AA Batteries (4-pack),2,3.84,2019-05-09 13:58:00,156 Church St, Dallas,TX,75001 +198260,Bose SoundSport Headphones,1,99.99,2019-05-22 06:58:00,172 14th St, Los Angeles,CA,90001 +198261,Lightning Charging Cable,1,14.95,2019-05-23 11:32:00,333 9th St, San Francisco,CA,94016 +198262,27in FHD Monitor,1,149.99,2019-05-19 14:25:00,17 Pine St, Los Angeles,CA,90001 +198263,AA Batteries (4-pack),3,3.84,2019-05-09 12:01:00,856 Park St, San Francisco,CA,94016 +198264,Bose SoundSport Headphones,1,99.99,2019-05-12 17:26:00,353 Chestnut St, Los Angeles,CA,90001 +198265,AAA Batteries (4-pack),1,2.99,2019-05-18 18:10:00,771 Meadow St, Dallas,TX,75001 +198266,USB-C Charging Cable,1,11.95,2019-05-15 12:22:00,982 Main St, Portland,OR,97035 +198267,Macbook Pro Laptop,1,1700.0,2019-05-21 05:38:00,848 1st St, Portland,OR,97035 +198268,Bose SoundSport Headphones,1,99.99,2019-05-22 10:29:00,723 11th St, New York City,NY,10001 +198269,Apple Airpods Headphones,1,150.0,2019-05-28 12:35:00,380 Spruce St, Austin,TX,73301 +198270,AAA Batteries (4-pack),2,2.99,2019-05-20 17:35:00,721 Meadow St, Los Angeles,CA,90001 +198271,Flatscreen TV,1,300.0,2019-05-17 19:29:00,513 North St, Austin,TX,73301 +198272,USB-C Charging Cable,1,11.95,2019-05-13 09:42:00,58 Wilson St, Austin,TX,73301 +198273,iPhone,1,700.0,2019-05-14 13:46:00,598 11th St, Los Angeles,CA,90001 +198274,Lightning Charging Cable,1,14.95,2019-05-28 15:36:00,644 River St, Los Angeles,CA,90001 +198275,Wired Headphones,1,11.99,2019-05-29 08:06:00,375 12th St, Boston,MA,02215 +198276,Vareebadd Phone,1,400.0,2019-05-28 01:53:00,324 Center St, San Francisco,CA,94016 +198277,AA Batteries (4-pack),2,3.84,2019-05-01 09:46:00,283 South St, Seattle,WA,98101 +198278,Lightning Charging Cable,1,14.95,2019-05-20 18:05:00,843 Lakeview St, Los Angeles,CA,90001 +198279,AAA Batteries (4-pack),1,2.99,2019-05-16 02:41:00,449 Willow St, Austin,TX,73301 +198280,Google Phone,1,600.0,2019-05-18 18:01:00,92 Wilson St, San Francisco,CA,94016 +198281,AA Batteries (4-pack),1,3.84,2019-05-03 09:54:00,644 8th St, Dallas,TX,75001 +198282,Lightning Charging Cable,1,14.95,2019-05-22 18:55:00,85 Spruce St, Dallas,TX,75001 +198283,Wired Headphones,1,11.99,2019-05-30 22:01:00,601 South St, San Francisco,CA,94016 +198284,USB-C Charging Cable,1,11.95,2019-05-27 11:14:00,460 Cedar St, San Francisco,CA,94016 +198285,27in 4K Gaming Monitor,1,389.99,2019-05-19 23:56:00,88 Elm St, San Francisco,CA,94016 +198286,USB-C Charging Cable,1,11.95,2019-05-12 19:41:00,129 Church St, Austin,TX,73301 +198287,iPhone,1,700.0,2019-05-20 01:18:00,992 Adams St, Dallas,TX,75001 +198288,Wired Headphones,2,11.99,2019-05-21 07:38:00,994 Jackson St, Dallas,TX,75001 +198289,AA Batteries (4-pack),1,3.84,2019-05-01 22:24:00,575 5th St, San Francisco,CA,94016 +198290,Lightning Charging Cable,1,14.95,2019-05-05 01:31:00,338 Walnut St, Atlanta,GA,30301 +198291,USB-C Charging Cable,3,11.95,2019-05-25 14:06:00,450 1st St, Boston,MA,02215 +198292,Lightning Charging Cable,1,14.95,2019-05-12 17:32:00,546 Main St, San Francisco,CA,94016 +198293,Google Phone,1,600.0,2019-05-03 18:51:00,327 10th St, Portland,ME,04101 +198294,AA Batteries (4-pack),2,3.84,2019-05-27 10:59:00,233 Dogwood St, New York City,NY,10001 +198295,Lightning Charging Cable,1,14.95,2019-05-12 01:59:00,57 Spruce St, Dallas,TX,75001 +198296,Wired Headphones,1,11.99,2019-05-06 12:31:00,769 Forest St, Boston,MA,02215 +198297,Bose SoundSport Headphones,1,99.99,2019-05-10 09:14:00,845 Washington St, Seattle,WA,98101 +198298,Google Phone,1,600.0,2019-05-22 00:28:00,341 1st St, New York City,NY,10001 +198299,27in 4K Gaming Monitor,1,389.99,2019-05-30 08:48:00,341 Spruce St, Seattle,WA,98101 +198300,Flatscreen TV,1,300.0,2019-05-13 13:54:00,671 Cedar St, San Francisco,CA,94016 +198300,iPhone,1,700.0,2019-05-13 13:54:00,671 Cedar St, San Francisco,CA,94016 +198301,Macbook Pro Laptop,1,1700.0,2019-05-26 19:37:00,625 Adams St, Seattle,WA,98101 +198302,USB-C Charging Cable,1,11.95,2019-05-17 16:36:00,358 10th St, Portland,OR,97035 +198303,ThinkPad Laptop,1,999.99,2019-05-29 18:49:00,103 Madison St, Los Angeles,CA,90001 +198304,Apple Airpods Headphones,1,150.0,2019-05-25 10:17:00,569 6th St, San Francisco,CA,94016 +198305,Wired Headphones,1,11.99,2019-05-20 18:26:00,937 South St, Los Angeles,CA,90001 +198306,Google Phone,1,600.0,2019-05-02 18:15:00,506 Center St, San Francisco,CA,94016 +198307,iPhone,1,700.0,2019-05-07 14:45:00,838 1st St, San Francisco,CA,94016 +198307,Lightning Charging Cable,1,14.95,2019-05-07 14:45:00,838 1st St, San Francisco,CA,94016 +198308,Wired Headphones,1,11.99,2019-05-13 18:44:00,182 Chestnut St, San Francisco,CA,94016 +198309,Bose SoundSport Headphones,1,99.99,2019-05-23 16:25:00,975 2nd St, Dallas,TX,75001 +198310,Bose SoundSport Headphones,1,99.99,2019-05-30 09:43:00,487 Center St, Los Angeles,CA,90001 +198311,Wired Headphones,1,11.99,2019-05-04 22:26:00,344 12th St, Portland,OR,97035 +198312,Apple Airpods Headphones,1,150.0,2019-05-20 09:34:00,298 Pine St, New York City,NY,10001 +198313,iPhone,1,700.0,2019-05-08 16:45:00,33 Maple St, Boston,MA,02215 +198313,Lightning Charging Cable,1,14.95,2019-05-08 16:45:00,33 Maple St, Boston,MA,02215 +198314,20in Monitor,1,109.99,2019-05-23 12:30:00,50 Maple St, Austin,TX,73301 +198315,AAA Batteries (4-pack),2,2.99,2019-05-13 00:41:00,181 8th St, Seattle,WA,98101 +198316,Lightning Charging Cable,1,14.95,2019-05-04 23:07:00,876 8th St, Los Angeles,CA,90001 +198317,Bose SoundSport Headphones,1,99.99,2019-05-01 18:33:00,982 Lake St, San Francisco,CA,94016 +198318,Apple Airpods Headphones,1,150.0,2019-05-18 19:18:00,732 Park St, Portland,OR,97035 +198319,Wired Headphones,1,11.99,2019-05-12 17:23:00,78 Highland St, San Francisco,CA,94016 +198320,Lightning Charging Cable,1,14.95,2019-05-09 17:32:00,353 5th St, Austin,TX,73301 +198321,27in FHD Monitor,1,149.99,2019-05-05 20:31:00,709 2nd St, Portland,OR,97035 +198322,Wired Headphones,1,11.99,2019-05-04 23:15:00,158 Ridge St, Dallas,TX,75001 +198323,Apple Airpods Headphones,1,150.0,2019-05-25 10:29:00,931 Jefferson St, Portland,OR,97035 +198324,Wired Headphones,1,11.99,2019-05-16 11:39:00,233 Main St, Seattle,WA,98101 +198325,AAA Batteries (4-pack),5,2.99,2019-05-12 18:43:00,510 South St, San Francisco,CA,94016 +198326,USB-C Charging Cable,1,11.95,2019-05-30 19:43:00,820 River St, San Francisco,CA,94016 +198327,Flatscreen TV,1,300.0,2019-05-07 19:39:00,139 Walnut St, Boston,MA,02215 +198328,USB-C Charging Cable,1,11.95,2019-05-25 02:22:00,253 7th St, Boston,MA,02215 +198329,AAA Batteries (4-pack),1,2.99,2019-05-22 22:49:00,714 Lincoln St, San Francisco,CA,94016 +198330,Google Phone,1,600.0,2019-05-18 12:06:00,247 Cherry St, Atlanta,GA,30301 +198331,USB-C Charging Cable,1,11.95,2019-05-28 21:05:00,452 7th St, Los Angeles,CA,90001 +198332,Wired Headphones,1,11.99,2019-05-28 21:09:00,242 Highland St, San Francisco,CA,94016 +198333,AAA Batteries (4-pack),1,2.99,2019-05-14 12:16:00,800 Johnson St, New York City,NY,10001 +198334,Flatscreen TV,1,300.0,2019-05-21 14:10:00,627 10th St, New York City,NY,10001 +198335,AA Batteries (4-pack),2,3.84,2019-05-03 13:03:00,390 Adams St, Boston,MA,02215 +198336,Apple Airpods Headphones,1,150.0,2019-05-27 00:15:00,817 River St, Austin,TX,73301 +198337,Apple Airpods Headphones,1,150.0,2019-05-03 12:09:00,340 Spruce St, Los Angeles,CA,90001 +198338,iPhone,1,700.0,2019-05-20 20:47:00,391 River St, New York City,NY,10001 +198339,AAA Batteries (4-pack),2,2.99,2019-05-23 16:10:00,500 Lake St, Dallas,TX,75001 +198340,USB-C Charging Cable,1,11.95,2019-05-17 15:45:00,806 Adams St, Atlanta,GA,30301 +198341,USB-C Charging Cable,1,11.95,2019-05-12 10:47:00,851 Cherry St, Los Angeles,CA,90001 +198342,Google Phone,1,600.0,2019-05-07 12:23:00,286 Madison St, Portland,ME,04101 +198343,AA Batteries (4-pack),1,3.84,2019-05-04 13:37:00,200 Jackson St, Atlanta,GA,30301 +198344,34in Ultrawide Monitor,1,379.99,2019-05-21 18:14:00,594 Maple St, Atlanta,GA,30301 +198345,Lightning Charging Cable,1,14.95,2019-05-30 19:16:00,122 Walnut St, Los Angeles,CA,90001 +198346,Wired Headphones,1,11.99,2019-05-12 12:00:00,784 Washington St, San Francisco,CA,94016 +198347,AA Batteries (4-pack),2,3.84,2019-05-04 13:56:00,2 Forest St, Los Angeles,CA,90001 +198348,Wired Headphones,1,11.99,2019-05-14 11:54:00,678 Main St, Portland,OR,97035 +198349,ThinkPad Laptop,1,999.99,2019-05-25 15:31:00,544 Ridge St, Dallas,TX,75001 +198350,Wired Headphones,1,11.99,2019-05-04 11:22:00,345 8th St, New York City,NY,10001 +198351,Bose SoundSport Headphones,1,99.99,2019-05-10 05:34:00,940 1st St, Atlanta,GA,30301 +198352,USB-C Charging Cable,1,11.95,2019-05-31 11:11:00,5 Meadow St, San Francisco,CA,94016 +198353,USB-C Charging Cable,1,11.95,2019-05-21 12:32:00,438 Highland St, Los Angeles,CA,90001 +198354,USB-C Charging Cable,1,11.95,2019-05-15 00:38:00,746 Spruce St, Portland,OR,97035 +198355,Wired Headphones,1,11.99,2019-05-28 14:03:00,628 4th St, Boston,MA,02215 +198356,27in FHD Monitor,1,149.99,2019-05-04 17:18:00,135 Park St, San Francisco,CA,94016 +198357,Bose SoundSport Headphones,1,99.99,2019-05-25 20:40:00,72 9th St, Austin,TX,73301 +198358,Wired Headphones,1,11.99,2019-05-08 14:37:00,736 9th St, San Francisco,CA,94016 +198359,AAA Batteries (4-pack),1,2.99,2019-05-06 17:51:00,281 Hill St, Seattle,WA,98101 +198360,Lightning Charging Cable,1,14.95,2019-05-20 10:22:00,561 Adams St, Dallas,TX,75001 +198361,AAA Batteries (4-pack),2,2.99,2019-05-29 19:22:00,132 Adams St, Los Angeles,CA,90001 +198362,Lightning Charging Cable,1,14.95,2019-05-26 08:44:00,765 Hill St, Dallas,TX,75001 +198363,Vareebadd Phone,1,400.0,2019-05-16 10:31:00,191 1st St, Portland,ME,04101 +198364,Apple Airpods Headphones,1,150.0,2019-05-23 15:32:00,182 South St, Atlanta,GA,30301 +198365,USB-C Charging Cable,1,11.95,2019-05-22 14:53:00,83 Park St, Boston,MA,02215 +198366,Lightning Charging Cable,1,14.95,2019-05-22 16:23:00,332 Jefferson St, San Francisco,CA,94016 +198367,Apple Airpods Headphones,1,150.0,2019-05-24 10:36:00,581 Hill St, New York City,NY,10001 +198368,ThinkPad Laptop,1,999.99,2019-05-08 13:03:00,280 River St, Portland,ME,04101 +198368,27in FHD Monitor,1,149.99,2019-05-08 13:03:00,280 River St, Portland,ME,04101 +198369,USB-C Charging Cable,1,11.95,2019-05-04 12:58:00,43 Center St, Los Angeles,CA,90001 +198370,ThinkPad Laptop,1,999.99,2019-05-31 21:03:00,277 Ridge St, San Francisco,CA,94016 +198371,USB-C Charging Cable,1,11.95,2019-05-07 17:26:00,910 Dogwood St, Portland,ME,04101 +198372,Lightning Charging Cable,1,14.95,2019-05-17 13:35:00,751 Elm St, Boston,MA,02215 +198373,AA Batteries (4-pack),1,3.84,2019-05-30 02:04:00,73 Walnut St, San Francisco,CA,94016 +198374,Apple Airpods Headphones,1,150.0,2019-05-04 14:28:00,238 2nd St, Dallas,TX,75001 +198375,AA Batteries (4-pack),2,3.84,2019-05-19 12:42:00,57 11th St, Dallas,TX,75001 +198376,Lightning Charging Cable,1,14.95,2019-05-14 13:41:00,171 5th St, San Francisco,CA,94016 +198377,Lightning Charging Cable,1,14.95,2019-05-08 15:16:00,677 4th St, Boston,MA,02215 +198378,Wired Headphones,1,11.99,2019-05-15 00:57:00,435 Park St, Austin,TX,73301 +198379,Apple Airpods Headphones,1,150.0,2019-05-30 23:39:00,587 12th St, San Francisco,CA,94016 +198380,Wired Headphones,1,11.99,2019-05-03 00:00:00,803 Church St, Dallas,TX,75001 +198381,27in FHD Monitor,1,149.99,2019-05-21 14:15:00,699 Walnut St, San Francisco,CA,94016 +198382,Bose SoundSport Headphones,1,99.99,2019-05-05 11:02:00,975 West St, San Francisco,CA,94016 +198383,AA Batteries (4-pack),1,3.84,2019-05-14 16:55:00,975 Center St, Seattle,WA,98101 +198384,27in FHD Monitor,1,149.99,2019-05-22 12:52:00,871 Hickory St, Dallas,TX,75001 +198385,Apple Airpods Headphones,1,150.0,2019-05-22 17:15:00,410 Johnson St, Dallas,TX,75001 +198386,27in FHD Monitor,1,149.99,2019-05-06 19:59:00,907 Ridge St, Dallas,TX,75001 +198387,27in FHD Monitor,1,149.99,2019-05-04 14:55:00,660 Church St, Atlanta,GA,30301 +198388,Lightning Charging Cable,1,14.95,2019-05-10 18:26:00,734 Maple St, Austin,TX,73301 +198389,AA Batteries (4-pack),1,3.84,2019-05-30 17:35:00,137 Johnson St, Seattle,WA,98101 +198390,27in FHD Monitor,1,149.99,2019-05-09 16:18:00,539 West St, Boston,MA,02215 +198391,34in Ultrawide Monitor,1,379.99,2019-05-19 19:37:00,405 Lakeview St, New York City,NY,10001 +198392,iPhone,1,700.0,2019-05-17 19:39:00,983 Hill St, San Francisco,CA,94016 +198393,27in FHD Monitor,1,149.99,2019-05-20 17:48:00,582 Willow St, San Francisco,CA,94016 +198394,Macbook Pro Laptop,1,1700.0,2019-05-04 14:12:00,640 6th St, Atlanta,GA,30301 +198395,AAA Batteries (4-pack),1,2.99,2019-05-31 18:34:00,678 2nd St, San Francisco,CA,94016 +198396,Google Phone,1,600.0,2019-05-23 16:09:00,178 Washington St, Austin,TX,73301 +198397,USB-C Charging Cable,1,11.95,2019-05-15 13:01:00,571 Forest St, Portland,OR,97035 +198398,Lightning Charging Cable,1,14.95,2019-05-18 21:06:00,670 10th St, Portland,OR,97035 +198399,iPhone,1,700.0,2019-05-14 14:23:00,174 11th St, Los Angeles,CA,90001 +198400,Wired Headphones,1,11.99,2019-05-17 20:55:00,595 Hill St, Portland,OR,97035 +198401,Wired Headphones,1,11.99,2019-05-16 14:10:00,812 Spruce St, Seattle,WA,98101 +198402,27in 4K Gaming Monitor,1,389.99,2019-05-06 14:05:00,24 Wilson St, San Francisco,CA,94016 +198403,Bose SoundSport Headphones,1,99.99,2019-05-30 21:14:00,558 South St, Los Angeles,CA,90001 +198404,AA Batteries (4-pack),1,3.84,2019-05-25 15:33:00,245 Jackson St, San Francisco,CA,94016 +198405,Apple Airpods Headphones,1,150.0,2019-05-09 04:30:00,834 6th St, San Francisco,CA,94016 +198406,Macbook Pro Laptop,1,1700.0,2019-05-03 23:44:00,416 11th St, San Francisco,CA,94016 +198407,AA Batteries (4-pack),3,3.84,2019-05-22 10:03:00,837 Adams St, Los Angeles,CA,90001 +198408,Lightning Charging Cable,1,14.95,2019-05-03 14:22:00,368 Main St, Los Angeles,CA,90001 +198409,Lightning Charging Cable,1,14.95,2019-05-14 10:43:00,514 West St, Los Angeles,CA,90001 +198410,Google Phone,1,600.0,2019-05-05 12:03:00,543 Main St, San Francisco,CA,94016 +198411,Lightning Charging Cable,1,14.95,2019-05-29 11:33:00,512 Church St, New York City,NY,10001 +198412,USB-C Charging Cable,1,11.95,2019-05-31 21:04:00,828 Sunset St, Portland,ME,04101 +198413,USB-C Charging Cable,1,11.95,2019-05-30 12:47:00,49 4th St, Dallas,TX,75001 +198414,Lightning Charging Cable,1,14.95,2019-05-20 20:30:00,382 7th St, Atlanta,GA,30301 +198415,Google Phone,1,600.0,2019-05-01 14:12:00,356 2nd St, San Francisco,CA,94016 +198416,AAA Batteries (4-pack),1,2.99,2019-05-10 15:49:00,653 Lakeview St, New York City,NY,10001 +198417,Bose SoundSport Headphones,1,99.99,2019-05-26 10:58:00,749 Hickory St, San Francisco,CA,94016 +198418,Bose SoundSport Headphones,1,99.99,2019-05-30 15:45:00,959 Chestnut St, San Francisco,CA,94016 +198419,USB-C Charging Cable,1,11.95,2019-05-01 09:23:00,30 Madison St, Dallas,TX,75001 +198420,AA Batteries (4-pack),1,3.84,2019-05-02 09:37:00,742 6th St, Atlanta,GA,30301 +198421,Macbook Pro Laptop,1,1700.0,2019-05-29 18:44:00,199 Sunset St, Los Angeles,CA,90001 +198422,AAA Batteries (4-pack),1,2.99,2019-05-21 18:56:00,450 Jefferson St, New York City,NY,10001 +198423,Wired Headphones,1,11.99,2019-05-07 17:33:00,74 9th St, New York City,NY,10001 +198424,20in Monitor,1,109.99,2019-05-31 11:00:00,378 13th St, Los Angeles,CA,90001 +198425,Flatscreen TV,1,300.0,2019-05-23 10:29:00,519 Meadow St, San Francisco,CA,94016 +198426,AAA Batteries (4-pack),1,2.99,2019-05-24 20:34:00,986 5th St, San Francisco,CA,94016 +198427,USB-C Charging Cable,1,11.95,2019-05-29 21:22:00,798 7th St, Boston,MA,02215 +198428,AA Batteries (4-pack),1,3.84,2019-05-25 02:55:00,809 Jefferson St, Boston,MA,02215 +198429,Lightning Charging Cable,1,14.95,2019-05-04 16:12:00,960 Wilson St, Los Angeles,CA,90001 +198430,AAA Batteries (4-pack),2,2.99,2019-05-28 12:46:00,56 9th St, Seattle,WA,98101 +198431,Lightning Charging Cable,1,14.95,2019-05-15 12:10:00,53 Chestnut St, New York City,NY,10001 +198432,AAA Batteries (4-pack),1,2.99,2019-05-24 11:12:00,294 Hill St, San Francisco,CA,94016 +198433,AA Batteries (4-pack),1,3.84,2019-05-27 20:06:00,68 Cedar St, San Francisco,CA,94016 +198434,Bose SoundSport Headphones,1,99.99,2019-05-24 08:46:00,365 Wilson St, Boston,MA,02215 +198435,AA Batteries (4-pack),1,3.84,2019-05-19 19:13:00,627 North St, San Francisco,CA,94016 +198436,34in Ultrawide Monitor,1,379.99,2019-05-16 15:02:00,485 4th St, Seattle,WA,98101 +198437,27in FHD Monitor,1,149.99,2019-05-29 12:09:00,141 Church St, New York City,NY,10001 +198438,AA Batteries (4-pack),1,3.84,2019-05-03 13:16:00,903 Adams St, Dallas,TX,75001 +198439,Apple Airpods Headphones,1,150.0,2019-05-16 22:12:00,38 West St, Seattle,WA,98101 +198440,Wired Headphones,1,11.99,2019-05-13 14:54:00,1 Hill St, Portland,OR,97035 +198441,Lightning Charging Cable,1,14.95,2019-05-15 13:09:00,749 Meadow St, New York City,NY,10001 +198442,27in FHD Monitor,1,149.99,2019-05-21 11:08:00,668 Highland St, Boston,MA,02215 +198443,AA Batteries (4-pack),1,3.84,2019-05-26 01:14:00,377 4th St, New York City,NY,10001 +198444,Wired Headphones,1,11.99,2019-05-15 00:20:00,632 Maple St, San Francisco,CA,94016 +198445,Apple Airpods Headphones,1,150.0,2019-05-20 22:45:00,954 Meadow St, Los Angeles,CA,90001 +198446,Macbook Pro Laptop,1,1700.0,2019-05-31 14:17:00,866 8th St, Seattle,WA,98101 +198447,27in 4K Gaming Monitor,1,389.99,2019-05-06 19:46:00,567 Jackson St, San Francisco,CA,94016 +198448,AAA Batteries (4-pack),2,2.99,2019-05-12 17:19:00,212 Church St, Portland,OR,97035 +198449,AAA Batteries (4-pack),1,2.99,2019-05-15 08:20:00,182 10th St, San Francisco,CA,94016 +198450,AA Batteries (4-pack),1,3.84,2019-05-23 21:00:00,692 11th St, Austin,TX,73301 +198451,Lightning Charging Cable,1,14.95,2019-05-14 11:52:00,2 11th St, Dallas,TX,75001 +198452,Wired Headphones,1,11.99,2019-05-06 20:52:00,500 Main St, San Francisco,CA,94016 +198453,AAA Batteries (4-pack),2,2.99,2019-05-20 19:49:00,633 Hickory St, Atlanta,GA,30301 +198453,Bose SoundSport Headphones,1,99.99,2019-05-20 19:49:00,633 Hickory St, Atlanta,GA,30301 +198454,AA Batteries (4-pack),1,3.84,2019-05-19 18:15:00,514 Cedar St, New York City,NY,10001 +198455,Bose SoundSport Headphones,1,99.99,2019-05-02 21:36:00,50 Cedar St, New York City,NY,10001 +198456,Google Phone,1,600.0,2019-05-11 14:58:00,938 Highland St, Los Angeles,CA,90001 +198457,Wired Headphones,1,11.99,2019-05-18 12:17:00,287 Spruce St, New York City,NY,10001 +198458,AAA Batteries (4-pack),1,2.99,2019-05-07 14:09:00,320 Lake St, Atlanta,GA,30301 +198459,AAA Batteries (4-pack),1,2.99,2019-05-19 20:38:00,521 Meadow St, Los Angeles,CA,90001 +198460,Lightning Charging Cable,1,14.95,2019-05-18 18:11:00,516 Jackson St, San Francisco,CA,94016 +198460,AAA Batteries (4-pack),5,2.99,2019-05-18 18:11:00,516 Jackson St, San Francisco,CA,94016 +198461,USB-C Charging Cable,1,11.95,2019-05-22 17:16:00,405 Forest St, Portland,OR,97035 +198461,27in 4K Gaming Monitor,1,389.99,2019-05-22 17:16:00,405 Forest St, Portland,OR,97035 +198462,Lightning Charging Cable,1,14.95,2019-05-02 21:06:00,829 Sunset St, Los Angeles,CA,90001 +198463,Apple Airpods Headphones,1,150.0,2019-05-04 22:06:00,993 10th St, Boston,MA,02215 +198464,USB-C Charging Cable,1,11.95,2019-05-26 10:00:00,931 Lake St, San Francisco,CA,94016 +198465,Lightning Charging Cable,2,14.95,2019-05-06 13:17:00,451 Dogwood St, Los Angeles,CA,90001 +198466,Google Phone,1,600.0,2019-05-14 17:45:00,246 Lakeview St, Portland,ME,04101 +198467,AAA Batteries (4-pack),2,2.99,2019-05-07 11:13:00,231 Willow St, Portland,OR,97035 +198468,Lightning Charging Cable,1,14.95,2019-05-20 17:58:00,561 Center St, Austin,TX,73301 +198469,Apple Airpods Headphones,1,150.0,2019-05-14 23:03:00,317 Lake St, San Francisco,CA,94016 +198470,Bose SoundSport Headphones,1,99.99,2019-05-18 15:04:00,39 Center St, Dallas,TX,75001 +198471,AA Batteries (4-pack),1,3.84,2019-05-22 11:40:00,75 11th St, Dallas,TX,75001 +198472,USB-C Charging Cable,1,11.95,2019-05-18 21:07:00,826 Chestnut St, San Francisco,CA,94016 +198473,Google Phone,1,600.0,2019-05-09 19:15:00,859 6th St, Dallas,TX,75001 +198474,ThinkPad Laptop,1,999.99,2019-05-30 04:49:00,296 Jackson St, Portland,OR,97035 +198475,iPhone,1,700.0,2019-05-02 19:51:00,514 Pine St, Austin,TX,73301 +198476,Wired Headphones,1,11.99,2019-05-29 19:36:00,723 Washington St, Los Angeles,CA,90001 +198477,Lightning Charging Cable,1,14.95,2019-05-01 12:05:00,767 Center St, New York City,NY,10001 +198478,Vareebadd Phone,1,400.0,2019-05-21 09:08:00,56 Jefferson St, Los Angeles,CA,90001 +198479,Flatscreen TV,1,300.0,2019-05-17 20:36:00,388 Washington St, Los Angeles,CA,90001 +198480,iPhone,1,700.0,2019-05-01 13:10:00,500 7th St, Los Angeles,CA,90001 +198480,Lightning Charging Cable,1,14.95,2019-05-01 13:10:00,500 7th St, Los Angeles,CA,90001 +198481,Macbook Pro Laptop,1,1700.0,2019-05-11 13:18:00,275 Cedar St, Dallas,TX,75001 +198482,AAA Batteries (4-pack),1,2.99,2019-05-05 13:47:00,577 Highland St, Dallas,TX,75001 +198483,USB-C Charging Cable,1,11.95,2019-05-25 12:00:00,484 11th St, Boston,MA,02215 +198484,Wired Headphones,1,11.99,2019-05-05 16:36:00,269 4th St, Boston,MA,02215 +198485,ThinkPad Laptop,1,999.99,2019-05-06 14:05:00,584 Jefferson St, San Francisco,CA,94016 +198486,AAA Batteries (4-pack),2,2.99,2019-05-23 08:03:00,373 Church St, Portland,OR,97035 +198487,Macbook Pro Laptop,1,1700.0,2019-05-11 00:14:00,600 Lincoln St, Atlanta,GA,30301 +198488,AA Batteries (4-pack),1,3.84,2019-05-29 21:24:00,584 Hill St, Los Angeles,CA,90001 +198489,iPhone,1,700.0,2019-05-04 09:16:00,801 12th St, Dallas,TX,75001 +198490,AAA Batteries (4-pack),1,2.99,2019-05-30 12:03:00,336 12th St, Seattle,WA,98101 +198491,Macbook Pro Laptop,1,1700.0,2019-05-09 07:13:00,870 11th St, New York City,NY,10001 +198492,AAA Batteries (4-pack),1,2.99,2019-05-16 22:56:00,794 1st St, Austin,TX,73301 +198493,AA Batteries (4-pack),1,3.84,2019-05-14 21:16:00,62 Maple St, Atlanta,GA,30301 +198494,Macbook Pro Laptop,1,1700.0,2019-05-23 22:17:00,687 Washington St, Dallas,TX,75001 +198495,Wired Headphones,1,11.99,2019-05-31 11:02:00,191 7th St, San Francisco,CA,94016 +198496,Bose SoundSport Headphones,1,99.99,2019-05-29 23:37:00,619 Washington St, Dallas,TX,75001 +198497,Flatscreen TV,1,300.0,2019-05-11 12:43:00,283 Johnson St, New York City,NY,10001 +198498,Macbook Pro Laptop,1,1700.0,2019-05-24 08:22:00,333 Washington St, San Francisco,CA,94016 +198499,Apple Airpods Headphones,1,150.0,2019-05-22 18:48:00,901 Forest St, Portland,ME,04101 +198500,Wired Headphones,1,11.99,2019-05-16 08:46:00,881 11th St, New York City,NY,10001 +198501,USB-C Charging Cable,1,11.95,2019-05-03 22:17:00,951 Lakeview St, Dallas,TX,75001 +198502,Bose SoundSport Headphones,1,99.99,2019-05-07 20:16:00,12 11th St, Atlanta,GA,30301 +198503,Google Phone,1,600.0,2019-05-16 05:28:00,790 Chestnut St, Boston,MA,02215 +198504,Bose SoundSport Headphones,1,99.99,2019-05-08 20:37:00,101 11th St, Seattle,WA,98101 +198505,Apple Airpods Headphones,1,150.0,2019-05-25 09:23:00,401 Elm St, Boston,MA,02215 +198506,Lightning Charging Cable,1,14.95,2019-05-26 06:05:00,137 4th St, Boston,MA,02215 +198507,Flatscreen TV,1,300.0,2019-05-31 13:06:00,18 Willow St, San Francisco,CA,94016 +198508,Apple Airpods Headphones,1,150.0,2019-05-05 15:14:00,799 10th St, Los Angeles,CA,90001 +198509,USB-C Charging Cable,1,11.95,2019-05-03 09:48:00,979 Washington St, San Francisco,CA,94016 +198509,Wired Headphones,1,11.99,2019-05-03 09:48:00,979 Washington St, San Francisco,CA,94016 +198510,USB-C Charging Cable,1,11.95,2019-05-01 12:03:00,410 Walnut St, San Francisco,CA,94016 +198511,AA Batteries (4-pack),1,3.84,2019-05-28 15:31:00,149 8th St, Dallas,TX,75001 +198512,AA Batteries (4-pack),2,3.84,2019-05-17 08:28:00,920 14th St, New York City,NY,10001 +198513,USB-C Charging Cable,1,11.95,2019-05-09 01:12:00,264 Ridge St, Atlanta,GA,30301 +198514,Google Phone,1,600.0,2019-05-13 18:56:00,171 Jackson St, Seattle,WA,98101 +198514,USB-C Charging Cable,1,11.95,2019-05-13 18:56:00,171 Jackson St, Seattle,WA,98101 +198515,Lightning Charging Cable,1,14.95,2019-05-22 12:44:00,71 12th St, Austin,TX,73301 +198516,AA Batteries (4-pack),1,3.84,2019-05-01 16:22:00,802 Sunset St, Portland,OR,97035 +198517,USB-C Charging Cable,1,11.95,2019-05-27 22:38:00,475 South St, San Francisco,CA,94016 +198517,Bose SoundSport Headphones,1,99.99,2019-05-27 22:38:00,475 South St, San Francisco,CA,94016 +198518,Lightning Charging Cable,2,14.95,2019-05-08 00:43:00,503 1st St, San Francisco,CA,94016 +198519,USB-C Charging Cable,1,11.95,2019-05-22 16:42:00,758 Sunset St, New York City,NY,10001 +198520,Bose SoundSport Headphones,1,99.99,2019-05-13 19:17:00,660 North St, Austin,TX,73301 +198521,27in FHD Monitor,1,149.99,2019-05-09 16:34:00,255 Forest St, New York City,NY,10001 +198522,Lightning Charging Cable,2,14.95,2019-05-31 11:49:00,802 8th St, Austin,TX,73301 +198523,USB-C Charging Cable,1,11.95,2019-05-24 00:03:00,663 Madison St, San Francisco,CA,94016 +198524,27in FHD Monitor,1,149.99,2019-05-06 09:55:00,196 Spruce St, Austin,TX,73301 +198525,Wired Headphones,1,11.99,2019-05-11 13:06:00,856 Wilson St, Dallas,TX,75001 +198526,34in Ultrawide Monitor,1,379.99,2019-05-31 11:35:00,649 South St, San Francisco,CA,94016 +198527,Apple Airpods Headphones,1,150.0,2019-05-24 14:59:00,368 West St, San Francisco,CA,94016 +198528,Google Phone,1,600.0,2019-05-11 21:04:00,880 Madison St, Austin,TX,73301 +198529,AAA Batteries (4-pack),1,2.99,2019-05-16 22:13:00,101 Ridge St, New York City,NY,10001 +198530,USB-C Charging Cable,1,11.95,2019-05-04 13:13:00,16 10th St, San Francisco,CA,94016 +198531,Bose SoundSport Headphones,1,99.99,2019-05-29 18:01:00,171 5th St, New York City,NY,10001 +198532,Lightning Charging Cable,1,14.95,2019-05-30 19:05:00,680 Wilson St, Los Angeles,CA,90001 +198533,AAA Batteries (4-pack),4,2.99,2019-05-01 19:53:00,945 Madison St, Los Angeles,CA,90001 +198534,AA Batteries (4-pack),1,3.84,2019-05-28 22:20:00,130 Chestnut St, Seattle,WA,98101 +198535,Lightning Charging Cable,1,14.95,2019-05-07 19:53:00,481 1st St, San Francisco,CA,94016 +198536,AAA Batteries (4-pack),2,2.99,2019-05-28 20:05:00,669 2nd St, San Francisco,CA,94016 +198537,AAA Batteries (4-pack),1,2.99,2019-05-06 11:29:00,9 4th St, Boston,MA,02215 +198538,AAA Batteries (4-pack),1,2.99,2019-05-01 13:22:00,311 Wilson St, Austin,TX,73301 +198539,Bose SoundSport Headphones,1,99.99,2019-05-25 12:36:00,148 Adams St, New York City,NY,10001 +198540,AAA Batteries (4-pack),1,2.99,2019-05-16 18:59:00,576 North St, Portland,OR,97035 +198541,27in FHD Monitor,1,149.99,2019-05-31 17:59:00,208 5th St, Boston,MA,02215 +198542,ThinkPad Laptop,1,999.99,2019-05-19 12:40:00,784 Cherry St, New York City,NY,10001 +198543,AA Batteries (4-pack),1,3.84,2019-05-15 21:09:00,121 6th St, Portland,OR,97035 +198544,27in FHD Monitor,1,149.99,2019-05-02 19:32:00,626 Lakeview St, Boston,MA,02215 +198545,AA Batteries (4-pack),1,3.84,2019-05-17 13:29:00,103 Lakeview St, Atlanta,GA,30301 +198546,AA Batteries (4-pack),1,3.84,2019-05-24 17:17:00,40 Wilson St, New York City,NY,10001 +198547,Bose SoundSport Headphones,1,99.99,2019-05-26 10:15:00,487 Hickory St, Atlanta,GA,30301 +198548,USB-C Charging Cable,1,11.95,2019-05-18 22:34:00,707 West St, Seattle,WA,98101 +198549,Macbook Pro Laptop,1,1700.0,2019-05-04 11:26:00,682 Adams St, Seattle,WA,98101 +198550,Bose SoundSport Headphones,1,99.99,2019-05-26 14:10:00,179 Johnson St, San Francisco,CA,94016 +198551,Apple Airpods Headphones,1,150.0,2019-05-04 14:33:00,462 Chestnut St, New York City,NY,10001 +198552,AA Batteries (4-pack),1,3.84,2019-05-23 13:31:00,691 River St, Los Angeles,CA,90001 +198553,Apple Airpods Headphones,1,150.0,2019-05-04 05:55:00,911 Center St, Boston,MA,02215 +198554,AA Batteries (4-pack),1,3.84,2019-05-19 17:27:00,972 Park St, New York City,NY,10001 +198555,USB-C Charging Cable,1,11.95,2019-05-25 22:57:00,16 9th St, New York City,NY,10001 +198556,34in Ultrawide Monitor,1,379.99,2019-05-04 14:09:00,866 North St, Portland,OR,97035 +198557,AA Batteries (4-pack),3,3.84,2019-05-26 10:44:00,158 Adams St, Boston,MA,02215 +198558,Bose SoundSport Headphones,1,99.99,2019-05-01 20:38:00,405 5th St, New York City,NY,10001 +198559,Apple Airpods Headphones,1,150.0,2019-05-23 09:56:00,472 Cedar St, Atlanta,GA,30301 +198560,Google Phone,1,600.0,2019-05-28 14:13:00,122 South St, San Francisco,CA,94016 +198561,iPhone,1,700.0,2019-05-31 15:06:00,633 Spruce St, Los Angeles,CA,90001 +198562,USB-C Charging Cable,1,11.95,2019-05-12 21:09:00,557 5th St, Austin,TX,73301 +198563,20in Monitor,1,109.99,2019-05-03 12:29:00,952 Spruce St, Los Angeles,CA,90001 +198564,AA Batteries (4-pack),1,3.84,2019-05-06 13:19:00,858 Park St, Los Angeles,CA,90001 +198565,Bose SoundSport Headphones,1,99.99,2019-05-16 10:10:00,271 River St, Boston,MA,02215 +198566,27in 4K Gaming Monitor,1,389.99,2019-05-30 17:29:00,556 8th St, San Francisco,CA,94016 +198567,34in Ultrawide Monitor,1,379.99,2019-05-15 13:51:00,992 Highland St, Atlanta,GA,30301 +198568,Vareebadd Phone,1,400.0,2019-05-26 08:16:00,543 13th St, Austin,TX,73301 +198569,34in Ultrawide Monitor,1,379.99,2019-05-13 20:37:00,216 9th St, San Francisco,CA,94016 +198570,27in 4K Gaming Monitor,1,389.99,2019-05-18 04:53:00,505 Meadow St, Atlanta,GA,30301 +198571,Apple Airpods Headphones,1,150.0,2019-05-02 13:31:00,359 Cherry St, Dallas,TX,75001 +198572,USB-C Charging Cable,1,11.95,2019-05-21 23:03:00,304 Dogwood St, New York City,NY,10001 +198573,AAA Batteries (4-pack),1,2.99,2019-05-21 15:19:00,198 2nd St, Austin,TX,73301 +198574,Lightning Charging Cable,1,14.95,2019-05-15 16:17:00,391 6th St, Boston,MA,02215 +198575,27in FHD Monitor,1,149.99,2019-05-02 22:42:00,291 1st St, New York City,NY,10001 +198576,Bose SoundSport Headphones,1,99.99,2019-05-10 14:33:00,260 Forest St, New York City,NY,10001 +198577,USB-C Charging Cable,1,11.95,2019-05-28 08:14:00,221 Main St, New York City,NY,10001 +198578,AAA Batteries (4-pack),2,2.99,2019-05-22 20:18:00,983 Park St, Dallas,TX,75001 +198579,Wired Headphones,1,11.99,2019-05-06 19:28:00,728 Jefferson St, Austin,TX,73301 +198580,USB-C Charging Cable,1,11.95,2019-05-28 21:04:00,76 Chestnut St, Atlanta,GA,30301 +198581,AAA Batteries (4-pack),1,2.99,2019-05-07 12:48:00,684 Spruce St, Austin,TX,73301 +198582,27in FHD Monitor,1,149.99,2019-05-12 21:03:00,959 6th St, San Francisco,CA,94016 +198583,Macbook Pro Laptop,1,1700.0,2019-05-27 11:03:00,113 Ridge St, Los Angeles,CA,90001 +198584,AA Batteries (4-pack),1,3.84,2019-05-11 23:52:00,606 Maple St, San Francisco,CA,94016 +198585,AA Batteries (4-pack),1,3.84,2019-05-29 21:38:00,788 Willow St, Boston,MA,02215 +198586,AAA Batteries (4-pack),1,2.99,2019-05-19 06:24:00,138 Jackson St, New York City,NY,10001 +198587,Apple Airpods Headphones,1,150.0,2019-05-14 10:05:00,222 Ridge St, San Francisco,CA,94016 +198588,Lightning Charging Cable,1,14.95,2019-05-29 09:33:00,554 River St, Boston,MA,02215 +198589,Apple Airpods Headphones,1,150.0,2019-05-25 18:27:00,941 Washington St, San Francisco,CA,94016 +198590,Apple Airpods Headphones,1,150.0,2019-05-01 17:19:00,67 Dogwood St, San Francisco,CA,94016 +198591,Wired Headphones,1,11.99,2019-05-23 13:34:00,469 Church St, San Francisco,CA,94016 +198592,27in 4K Gaming Monitor,1,389.99,2019-05-13 11:39:00,35 Hill St, Portland,OR,97035 +198593,ThinkPad Laptop,1,999.99,2019-05-02 15:00:00,774 12th St, San Francisco,CA,94016 +198594,Wired Headphones,1,11.99,2019-05-26 22:46:00,97 Spruce St, Atlanta,GA,30301 +198595,AA Batteries (4-pack),3,3.84,2019-05-22 20:27:00,466 Lakeview St, Portland,OR,97035 +198596,AAA Batteries (4-pack),1,2.99,2019-05-19 18:54:00,677 Cedar St, New York City,NY,10001 +198597,34in Ultrawide Monitor,1,379.99,2019-05-28 15:34:00,280 Hickory St, San Francisco,CA,94016 +198598,Flatscreen TV,1,300.0,2019-05-28 10:18:00,932 North St, New York City,NY,10001 +198599,ThinkPad Laptop,1,999.99,2019-05-28 17:10:00,237 Johnson St, Atlanta,GA,30301 +198600,Apple Airpods Headphones,1,150.0,2019-05-25 13:08:00,570 Cedar St, New York City,NY,10001 +198601,27in FHD Monitor,1,149.99,2019-05-16 16:25:00,744 Washington St, Los Angeles,CA,90001 +198602,Google Phone,1,600.0,2019-05-18 10:05:00,568 Adams St, Los Angeles,CA,90001 +198602,USB-C Charging Cable,1,11.95,2019-05-18 10:05:00,568 Adams St, Los Angeles,CA,90001 +198603,Bose SoundSport Headphones,1,99.99,2019-05-01 04:15:00,394 Adams St, Portland,OR,97035 +198604,USB-C Charging Cable,1,11.95,2019-05-22 20:21:00,359 2nd St, Atlanta,GA,30301 +198605,Apple Airpods Headphones,1,150.0,2019-05-20 21:22:00,680 Walnut St, San Francisco,CA,94016 +198606,iPhone,1,700.0,2019-05-20 19:54:00,106 Center St, San Francisco,CA,94016 +198606,Lightning Charging Cable,1,14.95,2019-05-20 19:54:00,106 Center St, San Francisco,CA,94016 +198607,Wired Headphones,1,11.99,2019-05-01 14:06:00,231 Church St, Los Angeles,CA,90001 +198608,Bose SoundSport Headphones,1,99.99,2019-05-09 17:25:00,277 Washington St, Austin,TX,73301 +198609,AA Batteries (4-pack),3,3.84,2019-05-10 15:39:00,578 Meadow St, Boston,MA,02215 +198610,iPhone,1,700.0,2019-05-17 20:11:00,151 7th St, New York City,NY,10001 +198611,Bose SoundSport Headphones,1,99.99,2019-05-06 15:39:00,67 Lakeview St, Los Angeles,CA,90001 +198612,27in FHD Monitor,1,149.99,2019-05-19 20:15:00,761 Park St, Austin,TX,73301 +198613,Bose SoundSport Headphones,1,99.99,2019-05-30 14:16:00,901 6th St, San Francisco,CA,94016 +198614,Bose SoundSport Headphones,1,99.99,2019-05-25 16:37:00,924 North St, Dallas,TX,75001 +198615,USB-C Charging Cable,1,11.95,2019-05-29 23:30:00,779 5th St, Los Angeles,CA,90001 +198616,20in Monitor,1,109.99,2019-05-29 09:41:00,371 6th St, San Francisco,CA,94016 +198617,USB-C Charging Cable,1,11.95,2019-05-17 17:01:00,298 7th St, Atlanta,GA,30301 +198618,AA Batteries (4-pack),1,3.84,2019-05-12 10:06:00,362 Hickory St, Los Angeles,CA,90001 +198619,Lightning Charging Cable,1,14.95,2019-05-31 16:26:00,130 River St, Portland,OR,97035 +198620,27in FHD Monitor,1,149.99,2019-05-04 18:09:00,679 Adams St, San Francisco,CA,94016 +198621,Apple Airpods Headphones,1,150.0,2019-05-18 15:45:00,62 West St, Los Angeles,CA,90001 +198622,AAA Batteries (4-pack),2,2.99,2019-05-04 12:52:00,339 Pine St, Los Angeles,CA,90001 +198623,AA Batteries (4-pack),1,3.84,2019-05-08 11:35:00,888 Church St, New York City,NY,10001 +198624,Wired Headphones,1,11.99,2019-05-28 17:30:00,312 12th St, San Francisco,CA,94016 +198625,AAA Batteries (4-pack),1,2.99,2019-05-18 20:14:00,122 Elm St, Los Angeles,CA,90001 +198626,LG Dryer,1,600.0,2019-05-26 12:28:00,760 Elm St, Austin,TX,73301 +198627,Bose SoundSport Headphones,2,99.99,2019-05-20 01:33:00,752 Dogwood St, Los Angeles,CA,90001 +198628,34in Ultrawide Monitor,1,379.99,2019-05-04 07:49:00,739 Lakeview St, Boston,MA,02215 +198629,34in Ultrawide Monitor,1,379.99,2019-05-15 15:56:00,621 Center St, San Francisco,CA,94016 +198630,Apple Airpods Headphones,1,150.0,2019-05-14 20:09:00,881 Center St, New York City,NY,10001 +198631,Wired Headphones,1,11.99,2019-05-11 19:49:00,141 Hickory St, San Francisco,CA,94016 +198632,Lightning Charging Cable,1,14.95,2019-05-25 05:31:00,912 Hickory St, Portland,OR,97035 +198633,Wired Headphones,2,11.99,2019-05-10 21:11:00,4 Main St, Atlanta,GA,30301 +198634,AAA Batteries (4-pack),1,2.99,2019-05-11 14:11:00,212 Johnson St, Austin,TX,73301 +198635,27in 4K Gaming Monitor,1,389.99,2019-05-02 12:21:00,951 Willow St, New York City,NY,10001 +198636,USB-C Charging Cable,1,11.95,2019-05-20 21:23:00,669 Willow St, San Francisco,CA,94016 +198637,iPhone,1,700.0,2019-05-05 16:30:00,998 Meadow St, Los Angeles,CA,90001 +198638,Bose SoundSport Headphones,1,99.99,2019-05-11 16:41:00,690 Dogwood St, Dallas,TX,75001 +198639,USB-C Charging Cable,1,11.95,2019-05-12 11:51:00,824 4th St, San Francisco,CA,94016 +198640,27in FHD Monitor,1,149.99,2019-05-24 07:48:00,554 Highland St, San Francisco,CA,94016 +198641,Apple Airpods Headphones,1,150.0,2019-05-24 22:58:00,384 Maple St, Dallas,TX,75001 +198642,Lightning Charging Cable,1,14.95,2019-05-13 19:54:00,755 Adams St, Portland,OR,97035 +198643,USB-C Charging Cable,2,11.95,2019-05-17 17:38:00,821 Ridge St, Los Angeles,CA,90001 +198644,Bose SoundSport Headphones,1,99.99,2019-05-20 04:02:00,992 Chestnut St, New York City,NY,10001 +198645,AAA Batteries (4-pack),1,2.99,2019-05-16 14:18:00,34 Lincoln St, Boston,MA,02215 +198646,USB-C Charging Cable,1,11.95,2019-05-13 09:59:00,17 13th St, Los Angeles,CA,90001 +198647,Apple Airpods Headphones,1,150.0,2019-05-26 09:40:00,976 12th St, San Francisco,CA,94016 +198648,Wired Headphones,1,11.99,2019-05-04 13:57:00,916 Lake St, Atlanta,GA,30301 +198649,Lightning Charging Cable,1,14.95,2019-05-30 09:51:00,960 2nd St, Los Angeles,CA,90001 +198650,Wired Headphones,1,11.99,2019-05-03 15:57:00,272 Sunset St, Boston,MA,02215 +198651,Wired Headphones,1,11.99,2019-05-17 21:40:00,697 Johnson St, New York City,NY,10001 +198652,USB-C Charging Cable,1,11.95,2019-05-30 13:05:00,643 4th St, New York City,NY,10001 +198653,AA Batteries (4-pack),1,3.84,2019-05-07 16:41:00,953 South St, Portland,OR,97035 +198654,27in FHD Monitor,1,149.99,2019-05-07 08:49:00,964 Jackson St, Dallas,TX,75001 +198655,Wired Headphones,1,11.99,2019-05-21 09:17:00,65 Church St, New York City,NY,10001 +198656,Bose SoundSport Headphones,1,99.99,2019-05-16 22:05:00,302 Jackson St, Portland,OR,97035 +198657,Flatscreen TV,1,300.0,2019-05-24 09:32:00,330 Madison St, Portland,OR,97035 +198658,iPhone,1,700.0,2019-05-27 18:53:00,705 1st St, Portland,OR,97035 +198659,AA Batteries (4-pack),1,3.84,2019-05-11 21:42:00,875 11th St, Boston,MA,02215 +198660,34in Ultrawide Monitor,1,379.99,2019-05-14 19:27:00,86 Meadow St, New York City,NY,10001 +198661,Google Phone,1,600.0,2019-05-28 21:48:00,208 11th St, San Francisco,CA,94016 +198661,AAA Batteries (4-pack),1,2.99,2019-05-28 21:48:00,208 11th St, San Francisco,CA,94016 +198662,Wired Headphones,1,11.99,2019-05-03 19:56:00,107 Wilson St, New York City,NY,10001 +198663,Bose SoundSport Headphones,1,99.99,2019-05-19 17:09:00,367 Jackson St, Portland,OR,97035 +198664,Lightning Charging Cable,1,14.95,2019-05-24 11:58:00,720 Maple St, Los Angeles,CA,90001 +198665,Apple Airpods Headphones,1,150.0,2019-05-11 07:11:00,594 Forest St, San Francisco,CA,94016 +198666,AAA Batteries (4-pack),1,2.99,2019-05-10 12:25:00,387 2nd St, Portland,OR,97035 +198667,AA Batteries (4-pack),1,3.84,2019-05-15 14:21:00,321 Pine St, Atlanta,GA,30301 +198668,Wired Headphones,2,11.99,2019-05-11 17:57:00,814 13th St, Los Angeles,CA,90001 +198669,ThinkPad Laptop,1,999.99,2019-05-22 13:58:00,751 Hill St, Boston,MA,02215 +198670,AAA Batteries (4-pack),2,2.99,2019-05-22 17:29:00,795 Sunset St, Atlanta,GA,30301 +198671,ThinkPad Laptop,1,999.99,2019-05-29 11:08:00,112 Hill St, Seattle,WA,98101 +198672,AAA Batteries (4-pack),1,2.99,2019-05-06 20:37:00,598 Cedar St, Los Angeles,CA,90001 +198673,USB-C Charging Cable,1,11.95,2019-05-29 17:29:00,833 Park St, New York City,NY,10001 +198674,Lightning Charging Cable,1,14.95,2019-05-17 14:10:00,340 Lincoln St, San Francisco,CA,94016 +198675,USB-C Charging Cable,1,11.95,2019-05-16 18:26:00,638 5th St, Los Angeles,CA,90001 +198676,Lightning Charging Cable,1,14.95,2019-05-25 18:16:00,897 Meadow St, Boston,MA,02215 +198677,iPhone,1,700.0,2019-05-27 10:20:00,23 8th St, San Francisco,CA,94016 +198677,Lightning Charging Cable,1,14.95,2019-05-27 10:20:00,23 8th St, San Francisco,CA,94016 +198678,Wired Headphones,1,11.99,2019-05-24 22:13:00,87 Washington St, New York City,NY,10001 +198679,Wired Headphones,2,11.99,2019-05-13 08:44:00,306 Dogwood St, Atlanta,GA,30301 +198680,AAA Batteries (4-pack),2,2.99,2019-05-31 03:33:00,402 Spruce St, New York City,NY,10001 +198681,iPhone,1,700.0,2019-05-06 16:59:00,53 Maple St, Portland,OR,97035 +198682,Vareebadd Phone,1,400.0,2019-05-16 19:02:00,749 Johnson St, Boston,MA,02215 +198682,USB-C Charging Cable,1,11.95,2019-05-16 19:02:00,749 Johnson St, Boston,MA,02215 +198683,USB-C Charging Cable,1,11.95,2019-05-15 22:38:00,590 Cherry St, Boston,MA,02215 +198684,34in Ultrawide Monitor,1,379.99,2019-05-07 15:23:00,893 Main St, San Francisco,CA,94016 +198685,AAA Batteries (4-pack),1,2.99,2019-05-26 13:15:00,88 Ridge St, San Francisco,CA,94016 +198686,AAA Batteries (4-pack),1,2.99,2019-05-02 12:08:00,902 2nd St, San Francisco,CA,94016 +198687,Wired Headphones,1,11.99,2019-05-02 21:17:00,301 Spruce St, Los Angeles,CA,90001 +198688,Lightning Charging Cable,1,14.95,2019-05-13 07:26:00,138 Sunset St, Boston,MA,02215 +198689,AAA Batteries (4-pack),1,2.99,2019-05-17 10:38:00,664 Pine St, New York City,NY,10001 +198690,USB-C Charging Cable,1,11.95,2019-05-27 17:17:00,411 Washington St, New York City,NY,10001 +198691,AA Batteries (4-pack),1,3.84,2019-05-03 13:41:00,582 Chestnut St, San Francisco,CA,94016 +198692,USB-C Charging Cable,1,11.95,2019-05-06 19:34:00,753 Jackson St, Los Angeles,CA,90001 +198693,USB-C Charging Cable,1,11.95,2019-05-20 12:21:00,585 Hill St, San Francisco,CA,94016 +198694,USB-C Charging Cable,1,11.95,2019-05-22 12:38:00,392 12th St, Portland,OR,97035 +198695,Google Phone,1,600.0,2019-05-09 11:05:00,212 Maple St, Atlanta,GA,30301 +198696,Bose SoundSport Headphones,1,99.99,2019-05-12 19:08:00,453 Cedar St, New York City,NY,10001 +198697,27in 4K Gaming Monitor,1,389.99,2019-05-10 14:22:00,990 Maple St, New York City,NY,10001 +198698,AA Batteries (4-pack),1,3.84,2019-05-27 11:33:00,300 8th St, Dallas,TX,75001 +198699,Google Phone,1,600.0,2019-05-02 20:38:00,240 Church St, New York City,NY,10001 +198699,Bose SoundSport Headphones,1,99.99,2019-05-02 20:38:00,240 Church St, New York City,NY,10001 +198700,USB-C Charging Cable,1,11.95,2019-05-28 10:15:00,758 13th St, Seattle,WA,98101 +198701,USB-C Charging Cable,1,11.95,2019-05-22 13:29:00,729 Adams St, Boston,MA,02215 +198702,USB-C Charging Cable,1,11.95,2019-05-15 15:28:00,563 8th St, Atlanta,GA,30301 +198703,Lightning Charging Cable,1,14.95,2019-05-14 10:23:00,69 Walnut St, Portland,OR,97035 +198704,Wired Headphones,1,11.99,2019-05-25 20:31:00,373 North St, Boston,MA,02215 +198705,Lightning Charging Cable,1,14.95,2019-05-10 13:27:00,168 Park St, Austin,TX,73301 +198706,Apple Airpods Headphones,1,150.0,2019-05-10 06:03:00,242 Spruce St, San Francisco,CA,94016 +198707,Wired Headphones,2,11.99,2019-05-03 23:19:00,29 Pine St, Seattle,WA,98101 +198707,AA Batteries (4-pack),1,3.84,2019-05-03 23:19:00,29 Pine St, Seattle,WA,98101 +198708,USB-C Charging Cable,1,11.95,2019-05-08 19:22:00,406 Spruce St, Dallas,TX,75001 +198709,Apple Airpods Headphones,1,150.0,2019-05-24 10:11:00,698 12th St, Boston,MA,02215 +198710,AAA Batteries (4-pack),1,2.99,2019-05-09 17:37:00,350 Dogwood St, Atlanta,GA,30301 +198711,AA Batteries (4-pack),1,3.84,2019-05-26 02:17:00,498 5th St, Portland,ME,04101 +198712,Lightning Charging Cable,1,14.95,2019-05-01 13:01:00,918 Church St, Los Angeles,CA,90001 +198713,AAA Batteries (4-pack),1,2.99,2019-05-06 20:59:00,442 14th St, Boston,MA,02215 +198714,Wired Headphones,1,11.99,2019-05-19 22:45:00,710 9th St, Atlanta,GA,30301 +198715,USB-C Charging Cable,1,11.95,2019-05-30 07:51:00,859 13th St, New York City,NY,10001 +198715,Google Phone,1,600.0,2019-05-30 07:51:00,859 13th St, New York City,NY,10001 +198716,iPhone,1,700.0,2019-05-18 10:49:00,822 Church St, Los Angeles,CA,90001 +198717,Flatscreen TV,1,300.0,2019-05-27 16:54:00,621 River St, San Francisco,CA,94016 +198718,Apple Airpods Headphones,1,150.0,2019-05-29 19:57:00,958 Maple St, San Francisco,CA,94016 +198719,Wired Headphones,2,11.99,2019-05-16 22:44:00,735 Church St, San Francisco,CA,94016 +198720,Bose SoundSport Headphones,1,99.99,2019-05-27 16:28:00,806 Washington St, San Francisco,CA,94016 +198721,AA Batteries (4-pack),2,3.84,2019-05-15 14:04:00,328 Church St, Dallas,TX,75001 +198722,USB-C Charging Cable,2,11.95,2019-05-27 16:28:00,807 4th St, Atlanta,GA,30301 +198723,USB-C Charging Cable,1,11.95,2019-05-27 12:25:00,846 Adams St, Austin,TX,73301 +198724,Flatscreen TV,1,300.0,2019-05-11 05:12:00,900 Cherry St, New York City,NY,10001 +198725,Google Phone,1,600.0,2019-05-26 17:20:00,758 Willow St, New York City,NY,10001 +198726,27in FHD Monitor,1,149.99,2019-05-20 16:45:00,251 Walnut St, Seattle,WA,98101 +198727,AA Batteries (4-pack),1,3.84,2019-05-24 14:45:00,526 Pine St, Los Angeles,CA,90001 +198728,iPhone,1,700.0,2019-05-18 19:05:00,876 Willow St, Los Angeles,CA,90001 +198729,AAA Batteries (4-pack),2,2.99,2019-05-11 13:04:00,290 14th St, Los Angeles,CA,90001 +198730,Wired Headphones,2,11.99,2019-05-01 15:05:00,792 Main St, San Francisco,CA,94016 +198731,27in FHD Monitor,1,149.99,2019-05-02 14:12:00,618 Hickory St, Boston,MA,02215 +198732,Bose SoundSport Headphones,1,99.99,2019-05-29 10:57:00,27 Lakeview St, Atlanta,GA,30301 +198733,Lightning Charging Cable,1,14.95,2019-05-23 15:43:00,659 8th St, Austin,TX,73301 +198734,Lightning Charging Cable,1,14.95,2019-05-21 13:42:00,115 Hickory St, Los Angeles,CA,90001 +198735,iPhone,1,700.0,2019-05-09 16:32:00,830 13th St, Boston,MA,02215 +198736,USB-C Charging Cable,1,11.95,2019-05-18 08:22:00,844 Elm St, San Francisco,CA,94016 +198737,USB-C Charging Cable,1,11.95,2019-05-05 23:08:00,637 5th St, Dallas,TX,75001 +198738,Macbook Pro Laptop,1,1700.0,2019-05-26 21:12:00,84 5th St, Dallas,TX,75001 +198739,ThinkPad Laptop,1,999.99,2019-05-05 22:05:00,529 Park St, Los Angeles,CA,90001 +198740,27in FHD Monitor,1,149.99,2019-05-26 12:34:00,434 Ridge St, San Francisco,CA,94016 +198741,Wired Headphones,1,11.99,2019-05-22 16:15:00,248 7th St, Los Angeles,CA,90001 +198742,Apple Airpods Headphones,1,150.0,2019-05-17 12:49:00,715 Church St, New York City,NY,10001 +198743,AA Batteries (4-pack),1,3.84,2019-05-18 03:54:00,464 Ridge St, San Francisco,CA,94016 +198744,34in Ultrawide Monitor,1,379.99,2019-05-17 00:03:00,506 Madison St, Seattle,WA,98101 +198745,Apple Airpods Headphones,1,150.0,2019-05-03 06:53:00,154 South St, San Francisco,CA,94016 +198746,Wired Headphones,1,11.99,2019-05-01 18:58:00,339 Dogwood St, San Francisco,CA,94016 +198747,Bose SoundSport Headphones,1,99.99,2019-05-31 20:09:00,626 Willow St, New York City,NY,10001 +198748,Apple Airpods Headphones,1,150.0,2019-05-11 09:24:00,12 Jefferson St, Seattle,WA,98101 +198749,Bose SoundSport Headphones,1,99.99,2019-05-29 18:18:00,951 North St, Los Angeles,CA,90001 +198750,AAA Batteries (4-pack),3,2.99,2019-05-02 11:24:00,40 Church St, New York City,NY,10001 +198751,USB-C Charging Cable,1,11.95,2019-05-08 14:55:00,819 14th St, Boston,MA,02215 +198752,USB-C Charging Cable,1,11.95,2019-05-09 20:41:00,650 7th St, Boston,MA,02215 +198752,AAA Batteries (4-pack),1,2.99,2019-05-09 20:41:00,650 7th St, Boston,MA,02215 +198753,USB-C Charging Cable,1,11.95,2019-05-16 20:41:00,691 Washington St, New York City,NY,10001 +198754,Apple Airpods Headphones,1,150.0,2019-05-29 21:38:00,374 Sunset St, San Francisco,CA,94016 +198755,Apple Airpods Headphones,1,150.0,2019-05-12 13:25:00,195 Willow St, New York City,NY,10001 +198756,ThinkPad Laptop,1,999.99,2019-05-09 14:08:00,905 North St, San Francisco,CA,94016 +198757,USB-C Charging Cable,1,11.95,2019-05-23 20:04:00,702 1st St, New York City,NY,10001 +198758,Apple Airpods Headphones,1,150.0,2019-05-01 21:40:00,658 Cedar St, Boston,MA,02215 +198759,AAA Batteries (4-pack),2,2.99,2019-05-27 17:58:00,561 6th St, Atlanta,GA,30301 +198760,USB-C Charging Cable,1,11.95,2019-05-25 17:20:00,229 4th St, San Francisco,CA,94016 +198761,Google Phone,1,600.0,2019-05-18 19:56:00,376 4th St, San Francisco,CA,94016 +198762,27in FHD Monitor,1,149.99,2019-05-26 12:34:00,30 Cherry St, San Francisco,CA,94016 +198763,AA Batteries (4-pack),2,3.84,2019-05-17 11:11:00,405 Jackson St, San Francisco,CA,94016 +198764,27in FHD Monitor,1,149.99,2019-05-28 12:16:00,592 Main St, Los Angeles,CA,90001 +198765,AA Batteries (4-pack),1,3.84,2019-05-18 18:39:00,258 Lincoln St, Dallas,TX,75001 +198766,27in FHD Monitor,1,149.99,2019-05-23 19:40:00,799 Park St, Boston,MA,02215 +198767,27in 4K Gaming Monitor,1,389.99,2019-05-06 11:00:00,890 9th St, New York City,NY,10001 +198768,USB-C Charging Cable,1,11.95,2019-05-26 18:18:00,837 South St, San Francisco,CA,94016 +198769,Wired Headphones,1,11.99,2019-05-15 21:18:00,6 Maple St, Los Angeles,CA,90001 +198770,20in Monitor,1,109.99,2019-05-21 00:17:00,902 12th St, Boston,MA,02215 +198771,iPhone,1,700.0,2019-05-07 10:07:00,614 Spruce St, New York City,NY,10001 +198772,34in Ultrawide Monitor,1,379.99,2019-05-06 13:20:00,478 Lakeview St, San Francisco,CA,94016 +198773,Lightning Charging Cable,1,14.95,2019-05-09 19:12:00,853 10th St, New York City,NY,10001 +198774,Lightning Charging Cable,1,14.95,2019-05-20 20:03:00,360 5th St, Portland,OR,97035 +198775,Apple Airpods Headphones,1,150.0,2019-05-03 22:01:00,516 Chestnut St, Boston,MA,02215 +198775,AA Batteries (4-pack),1,3.84,2019-05-03 22:01:00,516 Chestnut St, Boston,MA,02215 +198776,Lightning Charging Cable,1,14.95,2019-05-26 17:32:00,841 Cedar St, San Francisco,CA,94016 +198777,27in FHD Monitor,1,149.99,2019-05-05 19:19:00,941 5th St, New York City,NY,10001 +198778,AAA Batteries (4-pack),1,2.99,2019-05-26 20:38:00,9 North St, San Francisco,CA,94016 +198779,iPhone,1,700.0,2019-05-10 16:53:00,265 Willow St, San Francisco,CA,94016 +198780,Macbook Pro Laptop,1,1700.0,2019-05-13 22:55:00,868 4th St, Los Angeles,CA,90001 +198781,AA Batteries (4-pack),1,3.84,2019-05-16 07:27:00,195 Willow St, San Francisco,CA,94016 +198782,20in Monitor,1,109.99,2019-05-09 23:05:00,679 Hickory St, Atlanta,GA,30301 +198783,AAA Batteries (4-pack),1,2.99,2019-05-24 06:06:00,722 Highland St, Boston,MA,02215 +198784,Lightning Charging Cable,1,14.95,2019-05-25 11:13:00,227 Washington St, Los Angeles,CA,90001 +198785,Google Phone,1,600.0,2019-05-20 11:01:00,662 2nd St, Austin,TX,73301 +198786,Bose SoundSport Headphones,1,99.99,2019-05-11 01:10:00,300 Meadow St, San Francisco,CA,94016 +198787,27in FHD Monitor,1,149.99,2019-05-13 13:15:00,347 Forest St, Los Angeles,CA,90001 +198788,Lightning Charging Cable,2,14.95,2019-05-24 17:53:00,313 8th St, San Francisco,CA,94016 +198789,USB-C Charging Cable,1,11.95,2019-05-05 19:52:00,439 2nd St, San Francisco,CA,94016 +198790,Macbook Pro Laptop,1,1700.0,2019-05-11 08:45:00,709 Highland St, Dallas,TX,75001 +198791,iPhone,1,700.0,2019-05-26 17:58:00,27 Meadow St, New York City,NY,10001 +198792,iPhone,1,700.0,2019-05-19 08:58:00,622 Pine St, Seattle,WA,98101 +198793,20in Monitor,1,109.99,2019-05-07 08:58:00,672 West St, San Francisco,CA,94016 +198794,AAA Batteries (4-pack),1,2.99,2019-05-03 14:46:00,337 River St, San Francisco,CA,94016 +198795,Google Phone,1,600.0,2019-05-08 12:58:00,547 River St, Dallas,TX,75001 +198795,AAA Batteries (4-pack),1,2.99,2019-05-08 12:58:00,547 River St, Dallas,TX,75001 +198796,USB-C Charging Cable,1,11.95,2019-05-04 00:03:00,224 Madison St, Portland,OR,97035 +198797,Bose SoundSport Headphones,1,99.99,2019-05-11 20:05:00,599 11th St, Atlanta,GA,30301 +198798,Lightning Charging Cable,1,14.95,2019-05-25 13:23:00,532 Jefferson St, Atlanta,GA,30301 +198799,AA Batteries (4-pack),1,3.84,2019-05-11 20:48:00,425 Hill St, Austin,TX,73301 +198800,Macbook Pro Laptop,1,1700.0,2019-05-01 06:39:00,659 Jefferson St, Seattle,WA,98101 +198801,Lightning Charging Cable,1,14.95,2019-05-22 14:13:00,727 Lake St, Dallas,TX,75001 +198802,Apple Airpods Headphones,1,150.0,2019-05-16 10:17:00,769 2nd St, Los Angeles,CA,90001 +198803,AAA Batteries (4-pack),1,2.99,2019-05-10 09:12:00,884 Lincoln St, San Francisco,CA,94016 +198804,Lightning Charging Cable,1,14.95,2019-05-07 12:52:00,63 Walnut St, New York City,NY,10001 +198805,Vareebadd Phone,1,400.0,2019-05-08 04:45:00,811 9th St, Seattle,WA,98101 +198806,Lightning Charging Cable,1,14.95,2019-05-18 12:10:00,234 Ridge St, San Francisco,CA,94016 +198807,Google Phone,1,600.0,2019-05-30 11:33:00,656 Hill St, Los Angeles,CA,90001 +198808,USB-C Charging Cable,1,11.95,2019-05-06 12:43:00,655 Forest St, New York City,NY,10001 +198809,ThinkPad Laptop,1,999.99,2019-05-10 16:48:00,259 Spruce St, San Francisco,CA,94016 +198810,Apple Airpods Headphones,1,150.0,2019-05-04 08:32:00,915 11th St, New York City,NY,10001 +198811,Apple Airpods Headphones,1,150.0,2019-05-28 09:05:00,357 Cedar St, Los Angeles,CA,90001 +198811,27in 4K Gaming Monitor,1,389.99,2019-05-28 09:05:00,357 Cedar St, Los Angeles,CA,90001 +198812,Lightning Charging Cable,1,14.95,2019-05-24 12:47:00,72 North St, Boston,MA,02215 +198813,USB-C Charging Cable,1,11.95,2019-05-23 16:23:00,697 Jackson St, San Francisco,CA,94016 +198814,Lightning Charging Cable,1,14.95,2019-05-22 15:37:00,458 Ridge St, San Francisco,CA,94016 +198815,Wired Headphones,1,11.99,2019-05-12 09:08:00,695 Elm St, New York City,NY,10001 +198816,AA Batteries (4-pack),1,3.84,2019-05-29 13:28:00,538 Adams St, Boston,MA,02215 +198817,AAA Batteries (4-pack),1,2.99,2019-05-05 19:19:00,575 Chestnut St, San Francisco,CA,94016 +198818,USB-C Charging Cable,1,11.95,2019-05-14 22:06:00,499 5th St, Austin,TX,73301 +198819,Macbook Pro Laptop,1,1700.0,2019-05-18 18:53:00,805 Cedar St, Atlanta,GA,30301 +198820,Wired Headphones,1,11.99,2019-05-09 10:38:00,277 Ridge St, San Francisco,CA,94016 +198821,AAA Batteries (4-pack),2,2.99,2019-05-19 22:19:00,597 Center St, Boston,MA,02215 +198822,Lightning Charging Cable,1,14.95,2019-05-25 07:40:00,869 Adams St, Atlanta,GA,30301 +198823,AA Batteries (4-pack),1,3.84,2019-05-01 18:35:00,375 Cherry St, Boston,MA,02215 +198824,ThinkPad Laptop,1,999.99,2019-05-13 17:48:00,993 4th St, New York City,NY,10001 +198825,20in Monitor,1,109.99,2019-05-19 06:29:00,581 Adams St, Dallas,TX,75001 +198826,AAA Batteries (4-pack),1,2.99,2019-05-14 18:56:00,678 13th St, Austin,TX,73301 +198827,AA Batteries (4-pack),1,3.84,2019-05-25 17:22:00,825 Madison St, San Francisco,CA,94016 +198828,27in FHD Monitor,1,149.99,2019-05-02 18:52:00,673 Church St, San Francisco,CA,94016 +198829,USB-C Charging Cable,1,11.95,2019-05-20 21:36:00,68 Lincoln St, Dallas,TX,75001 +198830,Apple Airpods Headphones,1,150.0,2019-05-13 18:50:00,816 Willow St, Boston,MA,02215 +198831,Lightning Charging Cable,1,14.95,2019-05-31 17:41:00,911 Pine St, New York City,NY,10001 +198832,Bose SoundSport Headphones,1,99.99,2019-05-15 10:08:00,443 Pine St, San Francisco,CA,94016 +198833,27in 4K Gaming Monitor,1,389.99,2019-05-13 20:45:00,879 6th St, New York City,NY,10001 +198834,ThinkPad Laptop,1,999.99,2019-05-11 09:35:00,926 Elm St, San Francisco,CA,94016 +198835,Wired Headphones,1,11.99,2019-05-25 14:12:00,861 Pine St, San Francisco,CA,94016 +198836,AAA Batteries (4-pack),1,2.99,2019-05-15 16:23:00,746 Lake St, New York City,NY,10001 +198837,27in FHD Monitor,1,149.99,2019-05-02 20:45:00,143 12th St, New York City,NY,10001 +198838,20in Monitor,1,109.99,2019-05-25 17:25:00,212 North St, Portland,OR,97035 +198839,AAA Batteries (4-pack),2,2.99,2019-05-06 17:48:00,303 6th St, Boston,MA,02215 +198840,AA Batteries (4-pack),1,3.84,2019-05-07 15:35:00,865 South St, Portland,OR,97035 +198841,Wired Headphones,1,11.99,2019-05-16 20:36:00,431 Wilson St, Seattle,WA,98101 +198842,Lightning Charging Cable,1,14.95,2019-05-19 21:35:00,275 Jackson St, Boston,MA,02215 +198843,USB-C Charging Cable,1,11.95,2019-05-20 13:08:00,726 6th St, Portland,OR,97035 +198844,Wired Headphones,1,11.99,2019-05-17 10:04:00,403 River St, San Francisco,CA,94016 +198845,AA Batteries (4-pack),1,3.84,2019-05-02 16:09:00,390 Chestnut St, Los Angeles,CA,90001 +198846,USB-C Charging Cable,1,11.95,2019-05-09 13:01:00,452 14th St, Seattle,WA,98101 +198847,Apple Airpods Headphones,1,150.0,2019-05-04 00:54:00,1 North St, Boston,MA,02215 +198847,Wired Headphones,1,11.99,2019-05-04 00:54:00,1 North St, Boston,MA,02215 +198848,AAA Batteries (4-pack),1,2.99,2019-05-16 07:32:00,398 13th St, San Francisco,CA,94016 +198849,AA Batteries (4-pack),2,3.84,2019-05-08 23:04:00,852 Main St, Seattle,WA,98101 +198850,Lightning Charging Cable,1,14.95,2019-05-16 21:36:00,422 West St, New York City,NY,10001 +198851,AA Batteries (4-pack),2,3.84,2019-05-10 21:09:00,965 4th St, Atlanta,GA,30301 +198852,AA Batteries (4-pack),1,3.84,2019-05-28 12:50:00,621 River St, Portland,OR,97035 +198853,Lightning Charging Cable,1,14.95,2019-05-14 20:06:00,448 Hill St, Atlanta,GA,30301 +198854,Wired Headphones,1,11.99,2019-05-10 07:38:00,976 Cherry St, Portland,OR,97035 +198855,Lightning Charging Cable,1,14.95,2019-05-05 20:44:00,946 12th St, Dallas,TX,75001 +198856,Apple Airpods Headphones,1,150.0,2019-05-20 09:07:00,874 13th St, Portland,ME,04101 +198857,Bose SoundSport Headphones,1,99.99,2019-05-03 21:05:00,223 Elm St, Los Angeles,CA,90001 +198858,USB-C Charging Cable,1,11.95,2019-05-27 19:40:00,834 Adams St, Atlanta,GA,30301 +198859,34in Ultrawide Monitor,1,379.99,2019-05-27 12:45:00,267 6th St, San Francisco,CA,94016 +198860,AA Batteries (4-pack),1,3.84,2019-05-22 02:26:00,70 Adams St, San Francisco,CA,94016 +198861,AA Batteries (4-pack),1,3.84,2019-05-14 12:38:00,367 Park St, Los Angeles,CA,90001 +198862,20in Monitor,1,109.99,2019-05-12 22:50:00,508 13th St, Boston,MA,02215 +198863,Bose SoundSport Headphones,1,99.99,2019-05-14 23:37:00,743 Adams St, Atlanta,GA,30301 +198864,Bose SoundSport Headphones,1,99.99,2019-05-24 05:47:00,494 Cedar St, Boston,MA,02215 +198865,Wired Headphones,1,11.99,2019-05-25 17:47:00,844 4th St, Boston,MA,02215 +198866,USB-C Charging Cable,1,11.95,2019-05-04 22:17:00,145 Main St, Austin,TX,73301 +198867,USB-C Charging Cable,2,11.95,2019-05-15 10:09:00,874 13th St, New York City,NY,10001 +198868,Bose SoundSport Headphones,1,99.99,2019-05-29 03:58:00,558 4th St, Boston,MA,02215 +198869,Apple Airpods Headphones,1,150.0,2019-05-08 15:29:00,627 Washington St, Austin,TX,73301 +198870,AAA Batteries (4-pack),2,2.99,2019-05-02 22:51:00,771 West St, Portland,OR,97035 +198871,ThinkPad Laptop,1,999.99,2019-05-01 16:19:00,510 12th St, Portland,OR,97035 +198872,AAA Batteries (4-pack),1,2.99,2019-05-08 12:40:00,998 Hickory St, San Francisco,CA,94016 +198873,Lightning Charging Cable,1,14.95,2019-05-09 03:01:00,459 5th St, Portland,OR,97035 +198874,AAA Batteries (4-pack),1,2.99,2019-05-03 12:28:00,306 West St, Portland,OR,97035 +198875,Wired Headphones,1,11.99,2019-05-31 22:30:00,638 2nd St, Boston,MA,02215 +198876,AA Batteries (4-pack),1,3.84,2019-05-25 13:42:00,546 Ridge St, San Francisco,CA,94016 +198877,Lightning Charging Cable,1,14.95,2019-05-10 15:08:00,83 Meadow St, Dallas,TX,75001 +198878,USB-C Charging Cable,1,11.95,2019-05-11 16:56:00,239 Lakeview St, New York City,NY,10001 +198879,Wired Headphones,2,11.99,2019-05-24 12:42:00,12 Pine St, Portland,OR,97035 +198880,Wired Headphones,1,11.99,2019-05-06 19:02:00,146 7th St, Los Angeles,CA,90001 +198881,AAA Batteries (4-pack),1,2.99,2019-05-16 11:56:00,981 Forest St, Los Angeles,CA,90001 +198882,Macbook Pro Laptop,1,1700.0,2019-05-28 12:57:00,787 Park St, Los Angeles,CA,90001 +198883,AAA Batteries (4-pack),1,2.99,2019-05-18 09:01:00,963 West St, Seattle,WA,98101 +198884,Google Phone,1,600.0,2019-05-31 20:04:00,919 Cedar St, Boston,MA,02215 +198885,ThinkPad Laptop,1,999.99,2019-05-18 16:13:00,671 12th St, San Francisco,CA,94016 +198886,ThinkPad Laptop,1,999.99,2019-05-18 14:10:00,226 Meadow St, Atlanta,GA,30301 +198887,AA Batteries (4-pack),1,3.84,2019-05-30 10:51:00,722 Dogwood St, Boston,MA,02215 +198888,Google Phone,1,600.0,2019-05-30 14:44:00,427 Adams St, New York City,NY,10001 +198889,AAA Batteries (4-pack),2,2.99,2019-05-10 19:35:00,573 Wilson St, Austin,TX,73301 +198890,AAA Batteries (4-pack),1,2.99,2019-05-26 13:47:00,509 Elm St, Portland,OR,97035 +198891,Lightning Charging Cable,1,14.95,2019-05-13 11:43:00,356 Lakeview St, Los Angeles,CA,90001 +198892,Apple Airpods Headphones,1,150.0,2019-05-12 14:06:00,662 Washington St, San Francisco,CA,94016 +198893,Google Phone,1,600.0,2019-05-02 21:44:00,945 Chestnut St, Boston,MA,02215 +198894,ThinkPad Laptop,1,999.99,2019-05-30 19:29:00,971 5th St, New York City,NY,10001 +198895,Lightning Charging Cable,1,14.95,2019-05-02 01:13:00,343 14th St, Dallas,TX,75001 +198896,Wired Headphones,1,11.99,2019-05-04 00:46:00,615 Meadow St, San Francisco,CA,94016 +198897,USB-C Charging Cable,3,11.95,2019-05-31 15:39:00,401 Chestnut St, Dallas,TX,75001 +198898,Apple Airpods Headphones,1,150.0,2019-05-16 18:24:00,796 Cedar St, San Francisco,CA,94016 +198899,Apple Airpods Headphones,1,150.0,2019-05-13 13:28:00,654 Lincoln St, Los Angeles,CA,90001 +198900,AA Batteries (4-pack),2,3.84,2019-05-15 21:07:00,441 South St, Los Angeles,CA,90001 +198901,Bose SoundSport Headphones,1,99.99,2019-05-14 14:06:00,179 Adams St, Austin,TX,73301 +198902,ThinkPad Laptop,1,999.99,2019-05-03 17:26:00,721 Chestnut St, Los Angeles,CA,90001 +198903,AA Batteries (4-pack),2,3.84,2019-05-11 20:42:00,536 Ridge St, Boston,MA,02215 +198904,USB-C Charging Cable,1,11.95,2019-05-27 22:33:00,266 Church St, Portland,OR,97035 +198905,Lightning Charging Cable,1,14.95,2019-05-21 20:46:00,953 5th St, San Francisco,CA,94016 +198906,AAA Batteries (4-pack),1,2.99,2019-05-02 13:29:00,796 2nd St, New York City,NY,10001 +198907,AA Batteries (4-pack),1,3.84,2019-05-09 20:11:00,894 South St, San Francisco,CA,94016 +198908,AAA Batteries (4-pack),2,2.99,2019-05-30 10:41:00,202 South St, San Francisco,CA,94016 +198909,Lightning Charging Cable,1,14.95,2019-05-14 19:18:00,949 Cedar St, San Francisco,CA,94016 +198910,Wired Headphones,1,11.99,2019-05-19 08:47:00,375 5th St, New York City,NY,10001 +198911,Apple Airpods Headphones,1,150.0,2019-05-07 09:41:00,508 Chestnut St, Dallas,TX,75001 +198912,Apple Airpods Headphones,1,150.0,2019-05-08 09:02:00,85 Jackson St, Dallas,TX,75001 +198913,Google Phone,1,600.0,2019-05-24 10:41:00,286 10th St, Seattle,WA,98101 +198914,AA Batteries (4-pack),1,3.84,2019-05-15 14:56:00,815 Wilson St, Seattle,WA,98101 +198915,USB-C Charging Cable,1,11.95,2019-05-09 15:39:00,207 Willow St, Los Angeles,CA,90001 +198916,USB-C Charging Cable,1,11.95,2019-05-09 20:39:00,203 1st St, Dallas,TX,75001 +198917,ThinkPad Laptop,1,999.99,2019-05-03 15:39:00,404 12th St, San Francisco,CA,94016 +198918,AA Batteries (4-pack),1,3.84,2019-05-22 11:25:00,499 Center St, Los Angeles,CA,90001 +198919,Flatscreen TV,1,300.0,2019-05-18 09:12:00,84 Hill St, Boston,MA,02215 +198920,Bose SoundSport Headphones,1,99.99,2019-05-22 20:48:00,378 South St, Dallas,TX,75001 +198921,Bose SoundSport Headphones,1,99.99,2019-05-31 13:03:00,888 Chestnut St, Dallas,TX,75001 +198922,Wired Headphones,1,11.99,2019-05-13 07:00:00,411 Elm St, Austin,TX,73301 +198923,AA Batteries (4-pack),1,3.84,2019-05-07 19:17:00,695 6th St, Seattle,WA,98101 +198924,USB-C Charging Cable,1,11.95,2019-05-13 21:17:00,946 6th St, New York City,NY,10001 +198925,27in FHD Monitor,1,149.99,2019-05-10 17:17:00,135 Lakeview St, New York City,NY,10001 +198926,USB-C Charging Cable,2,11.95,2019-05-06 00:20:00,827 Pine St, San Francisco,CA,94016 +198927,AA Batteries (4-pack),1,3.84,2019-05-25 16:19:00,521 Cedar St, San Francisco,CA,94016 +198928,34in Ultrawide Monitor,1,379.99,2019-05-08 22:46:00,31 Pine St, Boston,MA,02215 +198929,AAA Batteries (4-pack),5,2.99,2019-05-22 00:41:00,934 Forest St, Seattle,WA,98101 +198930,AAA Batteries (4-pack),2,2.99,2019-05-17 18:40:00,236 7th St, San Francisco,CA,94016 +198931,AA Batteries (4-pack),1,3.84,2019-05-24 05:45:00,462 7th St, Portland,OR,97035 +198932,USB-C Charging Cable,1,11.95,2019-05-08 20:48:00,528 North St, San Francisco,CA,94016 +198933,Lightning Charging Cable,1,14.95,2019-05-25 20:09:00,822 Forest St, San Francisco,CA,94016 +198934,27in 4K Gaming Monitor,1,389.99,2019-05-20 14:17:00,592 10th St, San Francisco,CA,94016 +198935,Lightning Charging Cable,2,14.95,2019-05-02 19:20:00,528 Johnson St, Los Angeles,CA,90001 +198936,Lightning Charging Cable,1,14.95,2019-05-03 05:50:00,919 Meadow St, Atlanta,GA,30301 +198937,27in 4K Gaming Monitor,1,389.99,2019-05-05 19:42:00,820 Jackson St, Los Angeles,CA,90001 +198938,Wired Headphones,1,11.99,2019-05-04 08:34:00,768 Wilson St, Atlanta,GA,30301 +198939,27in 4K Gaming Monitor,1,389.99,2019-05-18 12:41:00,365 Jackson St, San Francisco,CA,94016 +198940,USB-C Charging Cable,1,11.95,2019-05-27 15:50:00,92 6th St, Dallas,TX,75001 +198941,AA Batteries (4-pack),1,3.84,2019-05-07 21:56:00,291 Hill St, Los Angeles,CA,90001 +198942,Bose SoundSport Headphones,1,99.99,2019-05-17 21:03:00,232 12th St, Austin,TX,73301 +198943,Bose SoundSport Headphones,1,99.99,2019-05-16 10:50:00,118 Madison St, San Francisco,CA,94016 +198944,USB-C Charging Cable,1,11.95,2019-05-05 01:36:00,430 Park St, San Francisco,CA,94016 +198945,27in FHD Monitor,1,149.99,2019-05-20 13:59:00,162 2nd St, New York City,NY,10001 +198946,27in 4K Gaming Monitor,1,389.99,2019-05-31 16:54:00,421 Elm St, Boston,MA,02215 +198947,27in 4K Gaming Monitor,1,389.99,2019-05-10 14:22:00,509 River St, San Francisco,CA,94016 +198948,Apple Airpods Headphones,2,150.0,2019-05-18 00:22:00,862 Cherry St, San Francisco,CA,94016 +198949,Lightning Charging Cable,1,14.95,2019-05-28 15:54:00,138 North St, New York City,NY,10001 +198950,USB-C Charging Cable,1,11.95,2019-05-25 13:01:00,548 Church St, Seattle,WA,98101 +198951,AA Batteries (4-pack),2,3.84,2019-05-18 11:56:00,377 Elm St, New York City,NY,10001 +198952,Wired Headphones,1,11.99,2019-05-18 13:37:00,951 Willow St, Atlanta,GA,30301 +198953,Lightning Charging Cable,1,14.95,2019-05-29 18:53:00,476 Wilson St, Atlanta,GA,30301 +198954,AA Batteries (4-pack),1,3.84,2019-05-30 10:23:00,72 5th St, San Francisco,CA,94016 +198955,Lightning Charging Cable,1,14.95,2019-05-08 01:42:00,437 5th St, Boston,MA,02215 +198956,AA Batteries (4-pack),3,3.84,2019-05-15 06:39:00,561 Madison St, New York City,NY,10001 +198957,AA Batteries (4-pack),1,3.84,2019-05-22 12:41:00,895 Madison St, San Francisco,CA,94016 +198958,Lightning Charging Cable,1,14.95,2019-05-12 02:14:00,556 Lincoln St, New York City,NY,10001 +198959,AAA Batteries (4-pack),2,2.99,2019-05-06 16:14:00,69 Jefferson St, San Francisco,CA,94016 +198960,Bose SoundSport Headphones,1,99.99,2019-05-06 10:57:00,597 Jackson St, Los Angeles,CA,90001 +198961,Vareebadd Phone,1,400.0,2019-05-14 13:56:00,301 Cherry St, Atlanta,GA,30301 +198962,Apple Airpods Headphones,1,150.0,2019-05-29 13:58:00,670 14th St, Seattle,WA,98101 +198963,USB-C Charging Cable,1,11.95,2019-05-30 14:39:00,293 Highland St, San Francisco,CA,94016 +198964,AAA Batteries (4-pack),2,2.99,2019-05-30 15:56:00,238 14th St, Austin,TX,73301 +198965,Lightning Charging Cable,1,14.95,2019-05-15 19:13:00,147 Center St, Los Angeles,CA,90001 +198966,AA Batteries (4-pack),2,3.84,2019-05-26 11:25:00,489 Willow St, Boston,MA,02215 +198967,Bose SoundSport Headphones,1,99.99,2019-05-07 10:04:00,82 West St, Portland,OR,97035 +198968,Lightning Charging Cable,1,14.95,2019-05-25 18:34:00,578 Adams St, Los Angeles,CA,90001 +198969,AA Batteries (4-pack),2,3.84,2019-05-20 13:23:00,202 14th St, San Francisco,CA,94016 +198970,USB-C Charging Cable,1,11.95,2019-05-27 13:50:00,763 Cherry St, Los Angeles,CA,90001 +198971,27in FHD Monitor,1,149.99,2019-05-01 22:20:00,244 9th St, Los Angeles,CA,90001 +198972,AAA Batteries (4-pack),1,2.99,2019-05-19 19:44:00,519 Lakeview St, San Francisco,CA,94016 +198973,Bose SoundSport Headphones,1,99.99,2019-05-14 17:31:00,379 Hickory St, San Francisco,CA,94016 +198974,27in FHD Monitor,1,149.99,2019-05-13 08:34:00,868 Park St, Dallas,TX,75001 +198975,Apple Airpods Headphones,1,150.0,2019-05-05 18:09:00,876 Lakeview St, Los Angeles,CA,90001 +198976,27in FHD Monitor,1,149.99,2019-05-26 19:31:00,692 9th St, Seattle,WA,98101 +198977,27in FHD Monitor,1,149.99,2019-05-22 16:15:00,38 13th St, Dallas,TX,75001 +198978,AA Batteries (4-pack),1,3.84,2019-05-02 11:06:00,602 South St, San Francisco,CA,94016 +198979,AA Batteries (4-pack),1,3.84,2019-05-25 21:54:00,376 8th St, Dallas,TX,75001 +198980,Apple Airpods Headphones,1,150.0,2019-05-25 16:47:00,532 7th St, Seattle,WA,98101 +198981,Wired Headphones,1,11.99,2019-05-15 10:51:00,102 Hickory St, San Francisco,CA,94016 +198982,iPhone,1,700.0,2019-05-26 19:19:00,761 Willow St, Austin,TX,73301 +198982,Lightning Charging Cable,1,14.95,2019-05-26 19:19:00,761 Willow St, Austin,TX,73301 +198983,AA Batteries (4-pack),1,3.84,2019-05-09 10:53:00,192 Meadow St, San Francisco,CA,94016 +198984,AAA Batteries (4-pack),1,2.99,2019-05-01 07:32:00,596 Elm St, San Francisco,CA,94016 +198985,USB-C Charging Cable,1,11.95,2019-05-15 12:03:00,162 Chestnut St, Seattle,WA,98101 +198986,USB-C Charging Cable,1,11.95,2019-05-13 10:15:00,320 Washington St, Dallas,TX,75001 +198987,Wired Headphones,1,11.99,2019-05-25 15:25:00,601 Sunset St, Boston,MA,02215 +198988,USB-C Charging Cable,1,11.95,2019-05-15 17:45:00,148 Lincoln St, Atlanta,GA,30301 +198989,USB-C Charging Cable,1,11.95,2019-05-01 16:55:00,54 Center St, New York City,NY,10001 +198990,Lightning Charging Cable,1,14.95,2019-05-13 07:04:00,596 Ridge St, New York City,NY,10001 +198991,Bose SoundSport Headphones,1,99.99,2019-05-12 13:09:00,31 Lake St, Dallas,TX,75001 +198992,Bose SoundSport Headphones,1,99.99,2019-05-27 12:07:00,430 8th St, Seattle,WA,98101 +198993,Bose SoundSport Headphones,1,99.99,2019-05-09 19:36:00,368 Cedar St, Los Angeles,CA,90001 +198994,USB-C Charging Cable,1,11.95,2019-05-30 11:21:00,912 Spruce St, Los Angeles,CA,90001 +198995,AA Batteries (4-pack),1,3.84,2019-05-23 00:29:00,895 Dogwood St, Boston,MA,02215 +198996,iPhone,1,700.0,2019-05-30 13:49:00,283 Lakeview St, San Francisco,CA,94016 +198996,Wired Headphones,1,11.99,2019-05-30 13:49:00,283 Lakeview St, San Francisco,CA,94016 +198997,Wired Headphones,1,11.99,2019-05-09 19:15:00,466 6th St, Boston,MA,02215 +198998,USB-C Charging Cable,1,11.95,2019-05-09 17:43:00,541 Dogwood St, San Francisco,CA,94016 +198999,Macbook Pro Laptop,1,1700.0,2019-05-16 06:11:00,273 5th St, Los Angeles,CA,90001 +199000,AA Batteries (4-pack),1,3.84,2019-05-31 14:55:00,882 Lake St, San Francisco,CA,94016 +199001,Lightning Charging Cable,1,14.95,2019-05-31 13:27:00,330 2nd St, Boston,MA,02215 +199002,Lightning Charging Cable,1,14.95,2019-05-29 11:03:00,105 Jefferson St, New York City,NY,10001 +199003,Lightning Charging Cable,1,14.95,2019-05-16 18:34:00,208 West St, San Francisco,CA,94016 +199004,USB-C Charging Cable,1,11.95,2019-05-29 01:21:00,503 6th St, Atlanta,GA,30301 +199005,Apple Airpods Headphones,1,150.0,2019-05-19 10:58:00,685 1st St, New York City,NY,10001 +199006,Macbook Pro Laptop,1,1700.0,2019-05-04 20:59:00,465 11th St, Seattle,WA,98101 +199007,LG Washing Machine,1,600.0,2019-05-02 20:47:00,967 Walnut St, San Francisco,CA,94016 +199008,USB-C Charging Cable,2,11.95,2019-05-07 19:01:00,870 1st St, Los Angeles,CA,90001 +199009,USB-C Charging Cable,1,11.95,2019-05-28 10:31:00,938 10th St, Los Angeles,CA,90001 +199010,USB-C Charging Cable,1,11.95,2019-05-10 08:18:00,668 10th St, Los Angeles,CA,90001 +199011,USB-C Charging Cable,1,11.95,2019-05-19 12:26:00,89 Pine St, Seattle,WA,98101 +199012,Macbook Pro Laptop,1,1700.0,2019-05-05 00:51:00,422 2nd St, Los Angeles,CA,90001 +199013,USB-C Charging Cable,1,11.95,2019-05-29 11:31:00,691 Center St, Los Angeles,CA,90001 +199014,27in FHD Monitor,1,149.99,2019-05-14 11:45:00,823 Pine St, Los Angeles,CA,90001 +199015,27in 4K Gaming Monitor,1,389.99,2019-05-24 10:43:00,182 Johnson St, San Francisco,CA,94016 +199016,Apple Airpods Headphones,1,150.0,2019-05-02 13:33:00,579 Washington St, New York City,NY,10001 +199017,AAA Batteries (4-pack),1,2.99,2019-05-15 19:04:00,323 North St, New York City,NY,10001 +199017,Apple Airpods Headphones,1,150.0,2019-05-15 19:04:00,323 North St, New York City,NY,10001 +199018,iPhone,1,700.0,2019-05-11 13:15:00,363 Jefferson St, Los Angeles,CA,90001 +199018,Wired Headphones,1,11.99,2019-05-11 13:15:00,363 Jefferson St, Los Angeles,CA,90001 +199019,AA Batteries (4-pack),1,3.84,2019-05-18 10:52:00,431 Sunset St, San Francisco,CA,94016 +199020,AAA Batteries (4-pack),4,2.99,2019-05-13 13:58:00,689 Chestnut St, Austin,TX,73301 +199021,Bose SoundSport Headphones,1,99.99,2019-05-24 02:33:00,713 Washington St, New York City,NY,10001 +199022,ThinkPad Laptop,1,999.99,2019-05-06 23:37:00,251 Cherry St, San Francisco,CA,94016 +199023,20in Monitor,1,109.99,2019-05-22 19:12:00,204 West St, Los Angeles,CA,90001 +199024,27in 4K Gaming Monitor,1,389.99,2019-05-22 11:24:00,143 Willow St, Dallas,TX,75001 +199025,Apple Airpods Headphones,1,150.0,2019-05-13 10:59:00,606 11th St, Los Angeles,CA,90001 +199026,20in Monitor,1,109.99,2019-05-22 17:29:00,418 7th St, San Francisco,CA,94016 +199027,Vareebadd Phone,1,400.0,2019-05-18 12:46:00,140 Jefferson St, San Francisco,CA,94016 +199028,Google Phone,1,600.0,2019-05-18 18:43:00,386 Park St, Atlanta,GA,30301 +199029,34in Ultrawide Monitor,1,379.99,2019-05-15 15:38:00,793 Hickory St, Portland,OR,97035 +199030,AAA Batteries (4-pack),1,2.99,2019-05-02 20:46:00,276 12th St, Los Angeles,CA,90001 +199031,34in Ultrawide Monitor,1,379.99,2019-05-05 11:55:00,71 Madison St, Boston,MA,02215 +199032,Wired Headphones,1,11.99,2019-05-23 14:02:00,880 Madison St, San Francisco,CA,94016 +199033,27in FHD Monitor,1,149.99,2019-05-25 10:24:00,772 Sunset St, San Francisco,CA,94016 +199034,Bose SoundSport Headphones,1,99.99,2019-05-25 19:30:00,702 Jackson St, San Francisco,CA,94016 +199035,Lightning Charging Cable,1,14.95,2019-05-08 23:14:00,300 Lakeview St, Atlanta,GA,30301 +199036,27in FHD Monitor,1,149.99,2019-05-04 18:22:00,925 Elm St, New York City,NY,10001 +199037,Flatscreen TV,1,300.0,2019-05-03 14:24:00,292 North St, Boston,MA,02215 +199038,Google Phone,1,600.0,2019-05-31 16:50:00,238 1st St, Seattle,WA,98101 +199039,AA Batteries (4-pack),1,3.84,2019-05-17 17:25:00,728 Cherry St, Atlanta,GA,30301 +199040,Bose SoundSport Headphones,1,99.99,2019-05-11 19:45:00,267 Washington St, Los Angeles,CA,90001 +199041,AA Batteries (4-pack),1,3.84,2019-05-30 11:06:00,519 Pine St, Boston,MA,02215 +199042,iPhone,1,700.0,2019-05-12 09:40:00,130 Chestnut St, New York City,NY,10001 +199043,Wired Headphones,1,11.99,2019-05-01 20:48:00,904 West St, Austin,TX,73301 +199044,Lightning Charging Cable,1,14.95,2019-05-11 17:49:00,666 13th St, Boston,MA,02215 +199045,Apple Airpods Headphones,1,150.0,2019-05-02 17:28:00,581 2nd St, San Francisco,CA,94016 +199046,AA Batteries (4-pack),1,3.84,2019-05-29 15:59:00,189 6th St, San Francisco,CA,94016 +199047,34in Ultrawide Monitor,1,379.99,2019-05-26 17:35:00,182 Center St, New York City,NY,10001 +199048,Lightning Charging Cable,1,14.95,2019-05-23 16:55:00,175 Maple St, San Francisco,CA,94016 +199049,Wired Headphones,1,11.99,2019-05-02 23:00:00,853 7th St, Seattle,WA,98101 +199050,34in Ultrawide Monitor,1,379.99,2019-05-06 19:55:00,176 Lincoln St, Boston,MA,02215 +199051,20in Monitor,1,109.99,2019-05-06 12:04:00,435 Willow St, Seattle,WA,98101 +199052,AAA Batteries (4-pack),1,2.99,2019-05-11 06:36:00,703 Maple St, Portland,OR,97035 +199053,Apple Airpods Headphones,1,150.0,2019-05-11 15:15:00,905 1st St, San Francisco,CA,94016 +199054,AAA Batteries (4-pack),1,2.99,2019-05-27 11:43:00,308 1st St, San Francisco,CA,94016 +199055,Wired Headphones,1,11.99,2019-05-04 15:04:00,684 11th St, Dallas,TX,75001 +199056,27in FHD Monitor,1,149.99,2019-05-10 14:23:00,139 Main St, Atlanta,GA,30301 +199057,27in 4K Gaming Monitor,1,389.99,2019-05-31 20:09:00,240 Jackson St, Portland,ME,04101 +199058,Wired Headphones,1,11.99,2019-05-23 15:36:00,899 Ridge St, Los Angeles,CA,90001 +199059,iPhone,1,700.0,2019-05-29 12:53:00,496 Elm St, Atlanta,GA,30301 +199060,Bose SoundSport Headphones,1,99.99,2019-05-28 11:37:00,75 Washington St, Boston,MA,02215 +199061,Bose SoundSport Headphones,1,99.99,2019-05-26 19:28:00,744 Park St, Boston,MA,02215 +199062,27in 4K Gaming Monitor,1,389.99,2019-05-10 17:58:00,413 Walnut St, New York City,NY,10001 +199063,USB-C Charging Cable,1,11.95,2019-05-18 18:54:00,316 Wilson St, Los Angeles,CA,90001 +199064,Google Phone,1,600.0,2019-05-12 14:08:00,984 Cherry St, Los Angeles,CA,90001 +199064,USB-C Charging Cable,1,11.95,2019-05-12 14:08:00,984 Cherry St, Los Angeles,CA,90001 +199065,Apple Airpods Headphones,1,150.0,2019-05-30 23:23:00,824 9th St, San Francisco,CA,94016 +199066,27in FHD Monitor,1,149.99,2019-05-14 21:44:00,667 Center St, Los Angeles,CA,90001 +199067,AAA Batteries (4-pack),2,2.99,2019-05-17 13:25:00,483 Church St, Dallas,TX,75001 +199068,Wired Headphones,1,11.99,2019-05-17 19:50:00,165 Lakeview St, New York City,NY,10001 +199069,Bose SoundSport Headphones,1,99.99,2019-05-28 09:51:00,758 Maple St, Los Angeles,CA,90001 +199070,20in Monitor,1,109.99,2019-05-04 19:19:00,198 Lincoln St, Los Angeles,CA,90001 +199071,AA Batteries (4-pack),1,3.84,2019-05-27 20:23:00,604 Park St, Dallas,TX,75001 +199072,Bose SoundSport Headphones,1,99.99,2019-05-22 14:40:00,315 Lake St, Portland,ME,04101 +199073,Wired Headphones,1,11.99,2019-05-04 11:09:00,584 Center St, Los Angeles,CA,90001 +199074,AAA Batteries (4-pack),3,2.99,2019-05-01 14:29:00,62 Jefferson St, New York City,NY,10001 +199075,Apple Airpods Headphones,1,150.0,2019-05-19 21:07:00,240 Adams St, New York City,NY,10001 +199076,27in FHD Monitor,1,149.99,2019-05-29 12:48:00,599 Cedar St, Los Angeles,CA,90001 +199077,27in 4K Gaming Monitor,1,389.99,2019-05-30 22:47:00,257 Ridge St, New York City,NY,10001 +199078,27in 4K Gaming Monitor,1,389.99,2019-05-23 11:01:00,459 Cedar St, San Francisco,CA,94016 +199079,Bose SoundSport Headphones,1,99.99,2019-05-21 01:44:00,612 Jefferson St, Los Angeles,CA,90001 +199080,AA Batteries (4-pack),1,3.84,2019-05-05 18:42:00,87 Hickory St, San Francisco,CA,94016 +199081,Wired Headphones,1,11.99,2019-05-29 12:04:00,576 Meadow St, Portland,OR,97035 +199082,Apple Airpods Headphones,1,150.0,2019-05-13 19:55:00,751 Pine St, Dallas,TX,75001 +199083,Lightning Charging Cable,1,14.95,2019-05-23 09:49:00,754 14th St, New York City,NY,10001 +199084,USB-C Charging Cable,1,11.95,2019-05-22 19:52:00,786 Madison St, New York City,NY,10001 +199085,Wired Headphones,1,11.99,2019-05-01 21:51:00,936 Sunset St, Austin,TX,73301 +199086,Bose SoundSport Headphones,1,99.99,2019-05-22 13:24:00,184 13th St, San Francisco,CA,94016 +199087,AAA Batteries (4-pack),2,2.99,2019-05-09 18:09:00,429 9th St, Seattle,WA,98101 +199088,AAA Batteries (4-pack),2,2.99,2019-05-29 22:06:00,29 Lake St, San Francisco,CA,94016 +199089,Lightning Charging Cable,1,14.95,2019-05-05 23:31:00,593 Cedar St, Boston,MA,02215 +199090,Lightning Charging Cable,1,14.95,2019-05-06 11:40:00,591 Lakeview St, New York City,NY,10001 +199091,27in 4K Gaming Monitor,1,389.99,2019-05-11 14:57:00,910 Maple St, Los Angeles,CA,90001 +199092,Lightning Charging Cable,1,14.95,2019-05-31 10:54:00,104 Church St, Dallas,TX,75001 +199093,USB-C Charging Cable,1,11.95,2019-05-29 12:08:00,611 Cedar St, Los Angeles,CA,90001 +199094,iPhone,1,700.0,2019-05-17 08:35:00,213 Wilson St, Portland,OR,97035 +199095,ThinkPad Laptop,1,999.99,2019-05-20 22:13:00,122 Forest St, Atlanta,GA,30301 +199096,iPhone,1,700.0,2019-05-23 16:07:00,547 5th St, Austin,TX,73301 +199097,AAA Batteries (4-pack),1,2.99,2019-05-04 04:57:00,579 Sunset St, New York City,NY,10001 +199098,AA Batteries (4-pack),2,3.84,2019-06-01 00:50:00,924 1st St, Los Angeles,CA,90001 +199099,AA Batteries (4-pack),1,3.84,2019-05-08 17:10:00,149 11th St, Atlanta,GA,30301 +199100,USB-C Charging Cable,1,11.95,2019-05-26 14:23:00,804 Walnut St, Los Angeles,CA,90001 +199101,Lightning Charging Cable,1,14.95,2019-05-13 17:32:00,181 Hickory St, Austin,TX,73301 +199102,Lightning Charging Cable,1,14.95,2019-05-20 08:52:00,428 Madison St, San Francisco,CA,94016 +199103,Wired Headphones,1,11.99,2019-05-06 10:38:00,211 Willow St, Los Angeles,CA,90001 +199104,USB-C Charging Cable,1,11.95,2019-05-26 10:24:00,192 Maple St, Boston,MA,02215 +199105,27in FHD Monitor,1,149.99,2019-05-28 08:45:00,536 14th St, San Francisco,CA,94016 +199106,Flatscreen TV,1,300.0,2019-05-10 12:36:00,82 Lakeview St, Portland,OR,97035 +199107,USB-C Charging Cable,1,11.95,2019-05-13 09:20:00,252 Jackson St, San Francisco,CA,94016 +199108,Macbook Pro Laptop,1,1700.0,2019-05-21 17:53:00,373 South St, San Francisco,CA,94016 +199109,Wired Headphones,1,11.99,2019-05-07 14:46:00,586 Spruce St, San Francisco,CA,94016 +199110,Wired Headphones,1,11.99,2019-05-28 12:26:00,763 Willow St, New York City,NY,10001 +199111,Lightning Charging Cable,1,14.95,2019-05-17 15:10:00,642 North St, San Francisco,CA,94016 +199112,Apple Airpods Headphones,1,150.0,2019-05-13 14:48:00,716 Adams St, New York City,NY,10001 +199113,27in FHD Monitor,1,149.99,2019-05-26 14:37:00,769 Lakeview St, San Francisco,CA,94016 +199114,Apple Airpods Headphones,1,150.0,2019-05-23 22:46:00,3 Ridge St, Boston,MA,02215 +199115,AAA Batteries (4-pack),1,2.99,2019-05-07 12:32:00,506 Forest St, San Francisco,CA,94016 +199116,Lightning Charging Cable,2,14.95,2019-05-29 17:46:00,117 1st St, San Francisco,CA,94016 +199117,AAA Batteries (4-pack),1,2.99,2019-05-02 15:58:00,789 Spruce St, San Francisco,CA,94016 +199118,Wired Headphones,1,11.99,2019-05-11 13:11:00,324 5th St, Boston,MA,02215 +199119,USB-C Charging Cable,1,11.95,2019-05-10 21:06:00,716 Washington St, Boston,MA,02215 +199120,Flatscreen TV,1,300.0,2019-05-30 22:37:00,78 Spruce St, Los Angeles,CA,90001 +199121,Bose SoundSport Headphones,1,99.99,2019-05-07 21:07:00,606 Cherry St, Boston,MA,02215 +199122,USB-C Charging Cable,1,11.95,2019-05-09 15:02:00,549 Willow St, Portland,OR,97035 +199123,27in 4K Gaming Monitor,1,389.99,2019-05-05 08:31:00,917 Church St, Los Angeles,CA,90001 +199124,Apple Airpods Headphones,1,150.0,2019-05-31 18:15:00,686 12th St, San Francisco,CA,94016 +199125,Lightning Charging Cable,1,14.95,2019-05-12 06:49:00,191 9th St, Portland,ME,04101 +199126,27in FHD Monitor,1,149.99,2019-05-02 00:20:00,816 4th St, Atlanta,GA,30301 +199127,AA Batteries (4-pack),1,3.84,2019-05-02 11:47:00,853 Church St, Los Angeles,CA,90001 +199128,Lightning Charging Cable,1,14.95,2019-05-01 23:13:00,781 14th St, San Francisco,CA,94016 +199129,20in Monitor,1,109.99,2019-05-13 14:58:00,958 Cedar St, Los Angeles,CA,90001 +199130,34in Ultrawide Monitor,1,379.99,2019-05-26 00:23:00,538 12th St, San Francisco,CA,94016 +199131,Lightning Charging Cable,1,14.95,2019-05-26 15:15:00,859 Johnson St, Los Angeles,CA,90001 +199132,USB-C Charging Cable,1,11.95,2019-05-13 18:01:00,493 Washington St, San Francisco,CA,94016 +199133,AAA Batteries (4-pack),1,2.99,2019-05-11 13:22:00,136 North St, San Francisco,CA,94016 +199134,20in Monitor,1,109.99,2019-05-24 08:34:00,355 Madison St, Boston,MA,02215 +199135,Macbook Pro Laptop,1,1700.0,2019-05-15 19:18:00,564 Church St, Boston,MA,02215 +199136,Apple Airpods Headphones,1,150.0,2019-05-29 02:06:00,839 Park St, Los Angeles,CA,90001 +199137,AA Batteries (4-pack),1,3.84,2019-05-05 10:18:00,370 Cedar St, San Francisco,CA,94016 +199138,Google Phone,1,600.0,2019-05-22 05:00:00,265 Dogwood St, Dallas,TX,75001 +199139,Lightning Charging Cable,1,14.95,2019-05-23 19:05:00,390 Jefferson St, Portland,OR,97035 +199140,Bose SoundSport Headphones,1,99.99,2019-05-04 18:37:00,731 Lincoln St, Seattle,WA,98101 +199141,AA Batteries (4-pack),1,3.84,2019-05-22 14:27:00,743 Maple St, San Francisco,CA,94016 +199142,AA Batteries (4-pack),1,3.84,2019-05-10 17:57:00,939 Jackson St, Atlanta,GA,30301 +199143,AAA Batteries (4-pack),2,2.99,2019-05-21 14:02:00,798 Willow St, San Francisco,CA,94016 +199144,20in Monitor,1,109.99,2019-05-25 18:28:00,977 6th St, San Francisco,CA,94016 +199145,20in Monitor,1,109.99,2019-05-29 18:11:00,775 10th St, Boston,MA,02215 +199146,AA Batteries (4-pack),1,3.84,2019-05-10 09:00:00,255 4th St, San Francisco,CA,94016 +199147,AAA Batteries (4-pack),1,2.99,2019-05-25 20:56:00,621 10th St, San Francisco,CA,94016 +199148,Lightning Charging Cable,1,14.95,2019-05-24 16:26:00,824 Adams St, Los Angeles,CA,90001 +199149,Lightning Charging Cable,1,14.95,2019-05-14 19:55:00,548 Maple St, New York City,NY,10001 +199150,AAA Batteries (4-pack),2,2.99,2019-05-08 19:12:00,717 9th St, San Francisco,CA,94016 +199151,Bose SoundSport Headphones,1,99.99,2019-05-23 19:03:00,997 Lincoln St, San Francisco,CA,94016 +199152,27in FHD Monitor,1,149.99,2019-05-10 19:56:00,635 Adams St, New York City,NY,10001 +199153,Bose SoundSport Headphones,1,99.99,2019-05-25 17:24:00,487 Hickory St, Los Angeles,CA,90001 +199154,Wired Headphones,1,11.99,2019-05-20 13:41:00,960 Meadow St, San Francisco,CA,94016 +199155,USB-C Charging Cable,1,11.95,2019-05-21 10:36:00,166 Highland St, San Francisco,CA,94016 +199156,34in Ultrawide Monitor,1,379.99,2019-05-13 21:58:00,57 8th St, Atlanta,GA,30301 +199157,Bose SoundSport Headphones,1,99.99,2019-05-15 00:33:00,661 Center St, San Francisco,CA,94016 +199158,Lightning Charging Cable,1,14.95,2019-05-13 12:31:00,834 12th St, San Francisco,CA,94016 +199159,AA Batteries (4-pack),2,3.84,2019-05-06 20:47:00,972 Maple St, Atlanta,GA,30301 +199160,Bose SoundSport Headphones,1,99.99,2019-05-04 22:44:00,650 Sunset St, Seattle,WA,98101 +199161,AAA Batteries (4-pack),1,2.99,2019-05-25 16:46:00,813 Jefferson St, Portland,OR,97035 +199162,Google Phone,1,600.0,2019-05-20 21:22:00,132 Adams St, Seattle,WA,98101 +199163,Bose SoundSport Headphones,1,99.99,2019-05-18 21:44:00,48 Adams St, Los Angeles,CA,90001 +199164,Bose SoundSport Headphones,1,99.99,2019-05-16 14:54:00,146 Ridge St, San Francisco,CA,94016 +199165,AA Batteries (4-pack),1,3.84,2019-05-22 06:36:00,116 Meadow St, New York City,NY,10001 +199166,Apple Airpods Headphones,1,150.0,2019-05-10 22:54:00,86 Chestnut St, Los Angeles,CA,90001 +199167,ThinkPad Laptop,1,999.99,2019-05-29 20:44:00,648 Adams St, San Francisco,CA,94016 +199168,Bose SoundSport Headphones,1,99.99,2019-05-16 17:41:00,196 Jefferson St, San Francisco,CA,94016 +199169,34in Ultrawide Monitor,1,379.99,2019-05-03 09:06:00,596 Johnson St, Portland,OR,97035 +199170,Bose SoundSport Headphones,1,99.99,2019-05-14 15:03:00,374 1st St, Austin,TX,73301 +199171,Apple Airpods Headphones,1,150.0,2019-05-02 15:36:00,984 Washington St, Seattle,WA,98101 +199172,Wired Headphones,1,11.99,2019-05-08 12:18:00,318 Hill St, Los Angeles,CA,90001 +199173,AA Batteries (4-pack),1,3.84,2019-05-23 16:03:00,57 Johnson St, New York City,NY,10001 +199174,iPhone,1,700.0,2019-05-22 10:29:00,997 Willow St, San Francisco,CA,94016 +199175,20in Monitor,1,109.99,2019-05-28 22:25:00,900 Pine St, Los Angeles,CA,90001 +199176,27in 4K Gaming Monitor,1,389.99,2019-05-01 20:31:00,634 7th St, Boston,MA,02215 +199177,Lightning Charging Cable,1,14.95,2019-05-18 10:31:00,137 8th St, New York City,NY,10001 +199178,27in FHD Monitor,1,149.99,2019-05-14 09:13:00,456 Willow St, Los Angeles,CA,90001 +199179,Lightning Charging Cable,1,14.95,2019-05-04 11:52:00,452 North St, Portland,OR,97035 +199180,iPhone,1,700.0,2019-05-08 01:14:00,786 Elm St, New York City,NY,10001 +199181,AAA Batteries (4-pack),1,2.99,2019-05-30 16:59:00,739 Ridge St, Dallas,TX,75001 +199182,AAA Batteries (4-pack),1,2.99,2019-05-22 20:17:00,32 8th St, San Francisco,CA,94016 +199183,Lightning Charging Cable,1,14.95,2019-05-05 13:50:00,239 Church St, Atlanta,GA,30301 +199184,27in 4K Gaming Monitor,1,389.99,2019-05-17 21:57:00,914 7th St, Los Angeles,CA,90001 +199185,AA Batteries (4-pack),1,3.84,2019-05-07 10:53:00,713 River St, Los Angeles,CA,90001 +199186,AA Batteries (4-pack),1,3.84,2019-05-13 17:40:00,971 Johnson St, San Francisco,CA,94016 +199187,AAA Batteries (4-pack),1,2.99,2019-05-12 17:09:00,788 Cherry St, Dallas,TX,75001 +199188,USB-C Charging Cable,1,11.95,2019-05-09 20:26:00,262 River St, Los Angeles,CA,90001 +199189,Apple Airpods Headphones,1,150.0,2019-05-22 22:01:00,523 Willow St, San Francisco,CA,94016 +199190,Bose SoundSport Headphones,1,99.99,2019-05-26 18:10:00,505 12th St, San Francisco,CA,94016 +199191,AAA Batteries (4-pack),3,2.99,2019-05-29 21:33:00,377 12th St, Portland,OR,97035 +199192,Google Phone,2,600.0,2019-05-27 18:22:00,290 Highland St, San Francisco,CA,94016 +199193,Wired Headphones,1,11.99,2019-05-29 22:59:00,710 Cherry St, San Francisco,CA,94016 +199194,Flatscreen TV,1,300.0,2019-05-06 07:24:00,965 Hill St, Boston,MA,02215 +199195,Bose SoundSport Headphones,1,99.99,2019-05-18 15:55:00,279 Wilson St, Los Angeles,CA,90001 +199196,Google Phone,1,600.0,2019-05-13 22:03:00,577 South St, Seattle,WA,98101 +199197,AA Batteries (4-pack),1,3.84,2019-05-20 20:16:00,397 Elm St, Los Angeles,CA,90001 +199198,USB-C Charging Cable,1,11.95,2019-05-25 21:28:00,857 Dogwood St, San Francisco,CA,94016 +199199,34in Ultrawide Monitor,1,379.99,2019-05-26 12:01:00,190 2nd St, Boston,MA,02215 +199200,AAA Batteries (4-pack),3,2.99,2019-05-05 11:13:00,876 Pine St, San Francisco,CA,94016 +199201,AA Batteries (4-pack),1,3.84,2019-05-08 11:44:00,766 Lincoln St, New York City,NY,10001 +199202,Macbook Pro Laptop,1,1700.0,2019-05-21 09:13:00,466 Spruce St, San Francisco,CA,94016 +199203,Flatscreen TV,1,300.0,2019-05-01 11:46:00,298 Ridge St, Los Angeles,CA,90001 +199204,AA Batteries (4-pack),2,3.84,2019-05-16 09:29:00,948 Jackson St, Los Angeles,CA,90001 +199205,34in Ultrawide Monitor,1,379.99,2019-05-31 14:18:00,383 Ridge St, San Francisco,CA,94016 +199206,Wired Headphones,1,11.99,2019-05-25 19:16:00,103 Dogwood St, Portland,OR,97035 +199207,Bose SoundSport Headphones,1,99.99,2019-05-15 11:41:00,691 Jackson St, Portland,OR,97035 +199208,USB-C Charging Cable,2,11.95,2019-05-12 12:09:00,504 Dogwood St, Dallas,TX,75001 +199209,USB-C Charging Cable,1,11.95,2019-05-05 08:43:00,983 Lincoln St, New York City,NY,10001 +199210,AA Batteries (4-pack),3,3.84,2019-05-28 21:39:00,399 South St, Portland,OR,97035 +199211,iPhone,1,700.0,2019-05-25 11:45:00,120 Lakeview St, San Francisco,CA,94016 +199211,Lightning Charging Cable,1,14.95,2019-05-25 11:45:00,120 Lakeview St, San Francisco,CA,94016 +199212,Lightning Charging Cable,1,14.95,2019-05-06 17:47:00,93 12th St, Los Angeles,CA,90001 +199213,Bose SoundSport Headphones,1,99.99,2019-05-10 12:58:00,216 6th St, San Francisco,CA,94016 +199214,Lightning Charging Cable,1,14.95,2019-05-21 20:39:00,190 Jefferson St, Boston,MA,02215 +199215,Vareebadd Phone,1,400.0,2019-05-18 14:00:00,311 Wilson St, Seattle,WA,98101 +199216,AAA Batteries (4-pack),1,2.99,2019-05-28 20:34:00,772 7th St, Atlanta,GA,30301 +199217,USB-C Charging Cable,1,11.95,2019-05-21 14:15:00,153 Hill St, Austin,TX,73301 +199218,27in FHD Monitor,1,149.99,2019-05-04 18:15:00,89 Walnut St, New York City,NY,10001 +199219,Wired Headphones,1,11.99,2019-05-07 21:46:00,394 Forest St, Austin,TX,73301 +199220,AAA Batteries (4-pack),1,2.99,2019-05-20 21:14:00,966 Chestnut St, San Francisco,CA,94016 +199221,USB-C Charging Cable,1,11.95,2019-05-02 16:10:00,443 Washington St, San Francisco,CA,94016 +199222,Bose SoundSport Headphones,1,99.99,2019-05-28 13:54:00,2 6th St, New York City,NY,10001 +199223,Flatscreen TV,1,300.0,2019-05-03 19:50:00,807 6th St, San Francisco,CA,94016 +199224,USB-C Charging Cable,1,11.95,2019-05-23 13:02:00,669 12th St, San Francisco,CA,94016 +199225,Apple Airpods Headphones,1,150.0,2019-05-19 18:10:00,845 Hickory St, Seattle,WA,98101 +199226,AA Batteries (4-pack),1,3.84,2019-05-19 12:40:00,140 Park St, Seattle,WA,98101 +199227,27in FHD Monitor,1,149.99,2019-05-02 13:23:00,146 Elm St, Seattle,WA,98101 +199228,Bose SoundSport Headphones,1,99.99,2019-05-15 15:06:00,685 Center St, Dallas,TX,75001 +199229,Bose SoundSport Headphones,1,99.99,2019-05-22 11:18:00,823 2nd St, San Francisco,CA,94016 +199230,iPhone,1,700.0,2019-05-08 09:09:00,398 Cedar St, Portland,OR,97035 +199230,Vareebadd Phone,1,400.0,2019-05-08 09:09:00,398 Cedar St, Portland,OR,97035 +199231,Macbook Pro Laptop,1,1700.0,2019-05-08 12:23:00,169 14th St, Dallas,TX,75001 +199232,Lightning Charging Cable,1,14.95,2019-05-10 17:42:00,105 Sunset St, Los Angeles,CA,90001 +199233,Wired Headphones,1,11.99,2019-05-22 12:24:00,57 Church St, New York City,NY,10001 +199234,Vareebadd Phone,1,400.0,2019-05-11 13:09:00,944 8th St, San Francisco,CA,94016 +199235,27in FHD Monitor,1,149.99,2019-05-23 14:30:00,626 12th St, Dallas,TX,75001 +199236,Google Phone,1,600.0,2019-05-05 20:57:00,733 6th St, Los Angeles,CA,90001 +199237,Lightning Charging Cable,1,14.95,2019-05-31 11:54:00,483 Wilson St, Seattle,WA,98101 +199238,Wired Headphones,1,11.99,2019-05-17 10:54:00,740 Park St, New York City,NY,10001 +199239,ThinkPad Laptop,1,999.99,2019-05-19 18:26:00,743 Pine St, San Francisco,CA,94016 +199240,Macbook Pro Laptop,1,1700.0,2019-05-16 19:12:00,555 10th St, New York City,NY,10001 +199241,AA Batteries (4-pack),2,3.84,2019-05-12 04:23:00,297 Lake St, Los Angeles,CA,90001 +199242,Apple Airpods Headphones,1,150.0,2019-05-12 18:47:00,869 Maple St, Seattle,WA,98101 +199243,ThinkPad Laptop,1,999.99,2019-05-07 17:42:00,983 Cherry St, Boston,MA,02215 +199244,AA Batteries (4-pack),1,3.84,2019-05-05 08:40:00,882 Elm St, San Francisco,CA,94016 +199245,AAA Batteries (4-pack),1,2.99,2019-05-05 12:17:00,467 Madison St, Seattle,WA,98101 +199246,ThinkPad Laptop,1,999.99,2019-05-08 14:51:00,310 1st St, Atlanta,GA,30301 +199247,Wired Headphones,1,11.99,2019-05-30 20:26:00,728 Ridge St, Atlanta,GA,30301 +199248,AA Batteries (4-pack),1,3.84,2019-05-16 11:24:00,771 6th St, Boston,MA,02215 +199249,AA Batteries (4-pack),1,3.84,2019-05-03 22:50:00,237 5th St, Portland,OR,97035 +199250,34in Ultrawide Monitor,1,379.99,2019-05-03 14:06:00,845 Madison St, Boston,MA,02215 +199251,Bose SoundSport Headphones,1,99.99,2019-05-05 09:23:00,418 5th St, San Francisco,CA,94016 +199252,AA Batteries (4-pack),1,3.84,2019-05-23 15:15:00,399 Lakeview St, San Francisco,CA,94016 +199253,20in Monitor,1,109.99,2019-05-22 18:10:00,69 Main St, Boston,MA,02215 +199254,AA Batteries (4-pack),2,3.84,2019-05-12 10:57:00,535 Willow St, Boston,MA,02215 +199255,Bose SoundSport Headphones,1,99.99,2019-05-26 10:52:00,930 Lake St, San Francisco,CA,94016 +199256,USB-C Charging Cable,1,11.95,2019-05-21 22:04:00,359 Pine St, Portland,OR,97035 +199257,AAA Batteries (4-pack),1,2.99,2019-05-08 18:14:00,88 Lake St, Los Angeles,CA,90001 +199258,AA Batteries (4-pack),1,3.84,2019-05-15 13:56:00,191 North St, Atlanta,GA,30301 +199259,Apple Airpods Headphones,1,150.0,2019-05-25 06:10:00,490 Highland St, San Francisco,CA,94016 +199260,27in 4K Gaming Monitor,1,389.99,2019-05-17 16:09:00,916 Madison St, Portland,OR,97035 +199261,AAA Batteries (4-pack),1,2.99,2019-05-12 14:24:00,178 Park St, Seattle,WA,98101 +199262,AAA Batteries (4-pack),3,2.99,2019-05-06 12:16:00,925 Ridge St, Dallas,TX,75001 +199263,Vareebadd Phone,1,400.0,2019-05-28 20:44:00,563 5th St, San Francisco,CA,94016 +199264,AAA Batteries (4-pack),2,2.99,2019-05-08 14:45:00,719 13th St, Boston,MA,02215 +199265,LG Dryer,1,600.0,2019-05-30 18:23:00,777 Church St, Austin,TX,73301 +199266,Flatscreen TV,1,300.0,2019-05-26 08:35:00,950 Hill St, Boston,MA,02215 +199267,AA Batteries (4-pack),1,3.84,2019-05-17 01:46:00,444 Johnson St, Los Angeles,CA,90001 +199268,Flatscreen TV,1,300.0,2019-05-12 09:59:00,655 Sunset St, Boston,MA,02215 +199269,AA Batteries (4-pack),1,3.84,2019-05-09 15:12:00,717 13th St, Portland,ME,04101 +199270,ThinkPad Laptop,1,999.99,2019-05-05 04:31:00,458 Ridge St, San Francisco,CA,94016 +199271,Apple Airpods Headphones,1,150.0,2019-05-30 00:40:00,938 6th St, New York City,NY,10001 +199272,27in 4K Gaming Monitor,1,389.99,2019-05-31 11:44:00,37 7th St, Dallas,TX,75001 +199273,AAA Batteries (4-pack),1,2.99,2019-05-07 12:34:00,948 6th St, Boston,MA,02215 +199274,Wired Headphones,1,11.99,2019-05-17 18:02:00,312 10th St, San Francisco,CA,94016 +199275,Google Phone,1,600.0,2019-05-01 18:31:00,776 Center St, Boston,MA,02215 +199275,USB-C Charging Cable,1,11.95,2019-05-01 18:31:00,776 Center St, Boston,MA,02215 +199276,20in Monitor,1,109.99,2019-05-04 13:45:00,889 Lakeview St, San Francisco,CA,94016 +199277,Wired Headphones,1,11.99,2019-05-16 08:29:00,610 Lincoln St, Atlanta,GA,30301 +199278,Vareebadd Phone,1,400.0,2019-05-28 12:33:00,715 Dogwood St, Atlanta,GA,30301 +199279,AA Batteries (4-pack),1,3.84,2019-05-31 15:50:00,408 Cedar St, San Francisco,CA,94016 +199280,iPhone,1,700.0,2019-05-15 13:14:00,324 Washington St, Boston,MA,02215 +199281,Wired Headphones,1,11.99,2019-05-13 11:28:00,304 11th St, San Francisco,CA,94016 +199282,Google Phone,1,600.0,2019-05-27 18:53:00,931 Lakeview St, Seattle,WA,98101 +199282,USB-C Charging Cable,1,11.95,2019-05-27 18:53:00,931 Lakeview St, Seattle,WA,98101 +199282,Bose SoundSport Headphones,1,99.99,2019-05-27 18:53:00,931 Lakeview St, Seattle,WA,98101 +199283,AAA Batteries (4-pack),1,2.99,2019-05-18 19:20:00,672 South St, San Francisco,CA,94016 +199284,Flatscreen TV,1,300.0,2019-05-04 12:35:00,96 Church St, Boston,MA,02215 +199285,Lightning Charging Cable,1,14.95,2019-05-05 12:00:00,412 7th St, Los Angeles,CA,90001 +199286,Wired Headphones,1,11.99,2019-05-15 07:52:00,699 Hickory St, Austin,TX,73301 +199287,27in FHD Monitor,1,149.99,2019-05-07 10:43:00,205 Wilson St, Seattle,WA,98101 +199288,Flatscreen TV,1,300.0,2019-05-10 06:53:00,733 Park St, San Francisco,CA,94016 +199289,Lightning Charging Cable,2,14.95,2019-05-04 07:59:00,425 Hickory St, New York City,NY,10001 +199290,Wired Headphones,1,11.99,2019-05-29 10:09:00,749 Walnut St, Boston,MA,02215 +199291,AAA Batteries (4-pack),2,2.99,2019-05-31 19:06:00,833 South St, San Francisco,CA,94016 +199292,27in FHD Monitor,1,149.99,2019-05-29 14:37:00,404 5th St, San Francisco,CA,94016 +199293,34in Ultrawide Monitor,1,379.99,2019-05-18 19:22:00,302 Jackson St, San Francisco,CA,94016 +199294,AAA Batteries (4-pack),2,2.99,2019-05-11 18:34:00,852 Main St, Los Angeles,CA,90001 +199295,Apple Airpods Headphones,1,150.0,2019-05-19 09:46:00,96 Church St, Boston,MA,02215 +199296,Wired Headphones,1,11.99,2019-05-17 08:25:00,977 11th St, San Francisco,CA,94016 +199297,USB-C Charging Cable,2,11.95,2019-05-15 20:42:00,614 2nd St, Los Angeles,CA,90001 +199298,AAA Batteries (4-pack),2,2.99,2019-05-16 15:00:00,483 Johnson St, Los Angeles,CA,90001 +199299,USB-C Charging Cable,1,11.95,2019-05-29 18:55:00,752 Meadow St, Atlanta,GA,30301 +199300,AAA Batteries (4-pack),4,2.99,2019-05-07 20:48:00,413 1st St, New York City,NY,10001 +199301,Lightning Charging Cable,1,14.95,2019-05-03 12:02:00,164 14th St, San Francisco,CA,94016 +199302,AAA Batteries (4-pack),4,2.99,2019-05-05 19:25:00,83 Wilson St, New York City,NY,10001 +199303,AA Batteries (4-pack),1,3.84,2019-05-04 16:50:00,556 Lakeview St, Boston,MA,02215 +199304,Bose SoundSport Headphones,1,99.99,2019-05-28 18:24:00,754 Hill St, Boston,MA,02215 +199304,Lightning Charging Cable,1,14.95,2019-05-28 18:24:00,754 Hill St, Boston,MA,02215 +199305,Lightning Charging Cable,1,14.95,2019-05-02 10:49:00,393 Chestnut St, Los Angeles,CA,90001 +199306,AAA Batteries (4-pack),1,2.99,2019-05-03 02:01:00,285 5th St, New York City,NY,10001 +199307,Wired Headphones,1,11.99,2019-05-19 17:20:00,844 5th St, New York City,NY,10001 +199308,AA Batteries (4-pack),1,3.84,2019-05-10 14:46:00,147 Willow St, Los Angeles,CA,90001 +199309,USB-C Charging Cable,1,11.95,2019-05-14 11:13:00,396 13th St, New York City,NY,10001 +199310,Bose SoundSport Headphones,1,99.99,2019-05-27 19:00:00,238 South St, San Francisco,CA,94016 +199311,Apple Airpods Headphones,1,150.0,2019-05-19 00:18:00,993 Church St, Atlanta,GA,30301 +199312,Lightning Charging Cable,1,14.95,2019-05-28 14:48:00,853 Chestnut St, Portland,OR,97035 +199313,34in Ultrawide Monitor,1,379.99,2019-05-09 19:26:00,255 North St, Atlanta,GA,30301 +199314,iPhone,1,700.0,2019-05-17 00:09:00,773 8th St, New York City,NY,10001 +199314,Lightning Charging Cable,1,14.95,2019-05-17 00:09:00,773 8th St, New York City,NY,10001 +199314,Apple Airpods Headphones,1,150.0,2019-05-17 00:09:00,773 8th St, New York City,NY,10001 +199315,AA Batteries (4-pack),1,3.84,2019-05-02 09:12:00,146 1st St, New York City,NY,10001 +199316,Bose SoundSport Headphones,1,99.99,2019-05-23 09:36:00,119 Main St, Atlanta,GA,30301 +199317,Wired Headphones,1,11.99,2019-05-11 12:25:00,571 Willow St, San Francisco,CA,94016 +199318,AAA Batteries (4-pack),1,2.99,2019-05-06 14:11:00,195 Jefferson St, Los Angeles,CA,90001 +199319,Lightning Charging Cable,1,14.95,2019-05-28 08:28:00,997 Jefferson St, Portland,OR,97035 +199320,Bose SoundSport Headphones,1,99.99,2019-05-24 22:13:00,788 North St, Dallas,TX,75001 +199321,LG Dryer,1,600.0,2019-05-23 05:45:00,718 Main St, Atlanta,GA,30301 +199322,34in Ultrawide Monitor,1,379.99,2019-05-11 12:50:00,704 Lake St, New York City,NY,10001 +199323,AAA Batteries (4-pack),1,2.99,2019-05-24 21:04:00,356 Jefferson St, New York City,NY,10001 +199324,27in 4K Gaming Monitor,1,389.99,2019-05-27 13:03:00,607 5th St, Atlanta,GA,30301 +199325,AAA Batteries (4-pack),2,2.99,2019-05-14 20:24:00,767 Cherry St, New York City,NY,10001 +199326,Lightning Charging Cable,1,14.95,2019-05-28 13:54:00,277 10th St, San Francisco,CA,94016 +199327,AA Batteries (4-pack),1,3.84,2019-05-10 13:13:00,386 Lakeview St, New York City,NY,10001 +199328,AA Batteries (4-pack),2,3.84,2019-05-24 10:31:00,423 Main St, Boston,MA,02215 +199329,AAA Batteries (4-pack),1,2.99,2019-05-23 07:26:00,250 Highland St, San Francisco,CA,94016 +199330,AAA Batteries (4-pack),1,2.99,2019-05-21 18:12:00,515 Spruce St, San Francisco,CA,94016 +199331,Vareebadd Phone,1,400.0,2019-05-22 14:11:00,996 Willow St, New York City,NY,10001 +199331,USB-C Charging Cable,1,11.95,2019-05-22 14:11:00,996 Willow St, New York City,NY,10001 +199332,Wired Headphones,1,11.99,2019-05-13 20:35:00,488 Cherry St, San Francisco,CA,94016 +199333,Bose SoundSport Headphones,1,99.99,2019-05-12 07:57:00,977 Elm St, San Francisco,CA,94016 +199334,iPhone,1,700.0,2019-05-17 19:27:00,570 6th St, Los Angeles,CA,90001 +199334,Lightning Charging Cable,1,14.95,2019-05-17 19:27:00,570 6th St, Los Angeles,CA,90001 +199335,Lightning Charging Cable,1,14.95,2019-05-22 10:09:00,149 Jefferson St, Austin,TX,73301 +199336,Macbook Pro Laptop,1,1700.0,2019-05-29 22:40:00,237 6th St, New York City,NY,10001 +199337,Lightning Charging Cable,1,14.95,2019-05-15 08:30:00,47 Hill St, Los Angeles,CA,90001 +199338,Wired Headphones,1,11.99,2019-05-05 23:41:00,152 11th St, Dallas,TX,75001 +199339,Google Phone,1,600.0,2019-05-27 14:02:00,738 2nd St, Atlanta,GA,30301 +199339,USB-C Charging Cable,1,11.95,2019-05-27 14:02:00,738 2nd St, Atlanta,GA,30301 +199340,AAA Batteries (4-pack),1,2.99,2019-05-01 18:32:00,849 Hickory St, San Francisco,CA,94016 +199341,iPhone,1,700.0,2019-05-19 22:53:00,198 6th St, Atlanta,GA,30301 +199342,Bose SoundSport Headphones,1,99.99,2019-05-31 13:27:00,707 Walnut St, San Francisco,CA,94016 +199343,27in 4K Gaming Monitor,1,389.99,2019-05-07 10:49:00,36 Maple St, New York City,NY,10001 +199344,Lightning Charging Cable,1,14.95,2019-05-25 13:26:00,501 5th St, San Francisco,CA,94016 +199345,Wired Headphones,1,11.99,2019-05-08 19:22:00,813 Hickory St, San Francisco,CA,94016 +199346,USB-C Charging Cable,1,11.95,2019-05-17 13:31:00,775 Lakeview St, Dallas,TX,75001 +199346,27in FHD Monitor,1,149.99,2019-05-17 13:31:00,775 Lakeview St, Dallas,TX,75001 +199347,Lightning Charging Cable,1,14.95,2019-05-05 20:09:00,188 Lake St, Atlanta,GA,30301 +199348,USB-C Charging Cable,1,11.95,2019-05-31 15:11:00,838 Church St, Dallas,TX,75001 +199349,Bose SoundSport Headphones,1,99.99,2019-05-14 14:52:00,440 5th St, Portland,OR,97035 +199350,AA Batteries (4-pack),1,3.84,2019-05-06 19:37:00,597 Spruce St, San Francisco,CA,94016 +199351,Lightning Charging Cable,1,14.95,2019-05-31 17:44:00,982 Sunset St, Boston,MA,02215 +199352,Wired Headphones,1,11.99,2019-05-20 20:15:00,141 Ridge St, New York City,NY,10001 +199353,27in 4K Gaming Monitor,1,389.99,2019-05-24 21:29:00,662 14th St, Dallas,TX,75001 +199354,ThinkPad Laptop,1,999.99,2019-05-14 18:14:00,557 10th St, Dallas,TX,75001 +199355,Lightning Charging Cable,1,14.95,2019-05-28 06:44:00,649 Walnut St, Dallas,TX,75001 +199356,Flatscreen TV,1,300.0,2019-05-18 09:23:00,911 10th St, Portland,OR,97035 +199357,Apple Airpods Headphones,1,150.0,2019-05-19 21:23:00,317 1st St, San Francisco,CA,94016 +199358,27in 4K Gaming Monitor,1,389.99,2019-05-29 19:17:00,724 10th St, Boston,MA,02215 +199359,Wired Headphones,1,11.99,2019-05-21 15:22:00,55 11th St, San Francisco,CA,94016 +199360,AAA Batteries (4-pack),1,2.99,2019-05-28 13:58:00,725 North St, New York City,NY,10001 +199361,AA Batteries (4-pack),1,3.84,2019-05-11 11:27:00,558 North St, Portland,OR,97035 +199362,27in 4K Gaming Monitor,1,389.99,2019-05-24 23:56:00,28 Cedar St, New York City,NY,10001 +199363,Lightning Charging Cable,1,14.95,2019-05-05 18:45:00,239 8th St, Los Angeles,CA,90001 +199364,AA Batteries (4-pack),1,3.84,2019-05-13 08:48:00,218 West St, Los Angeles,CA,90001 +199365,Apple Airpods Headphones,1,150.0,2019-05-06 20:31:00,254 North St, Los Angeles,CA,90001 +199366,Bose SoundSport Headphones,1,99.99,2019-05-01 22:46:00,380 5th St, Boston,MA,02215 +199367,AAA Batteries (4-pack),1,2.99,2019-05-27 13:20:00,179 Washington St, San Francisco,CA,94016 +199368,Bose SoundSport Headphones,1,99.99,2019-05-20 08:45:00,462 Madison St, Los Angeles,CA,90001 +199369,Google Phone,1,600.0,2019-05-29 15:30:00,438 Hickory St, Los Angeles,CA,90001 +199369,USB-C Charging Cable,1,11.95,2019-05-29 15:30:00,438 Hickory St, Los Angeles,CA,90001 +199370,AA Batteries (4-pack),1,3.84,2019-05-29 19:51:00,338 9th St, New York City,NY,10001 +199371,34in Ultrawide Monitor,1,379.99,2019-05-10 11:46:00,261 Wilson St, Boston,MA,02215 +199372,Wired Headphones,1,11.99,2019-05-14 20:11:00,987 Lake St, New York City,NY,10001 +199373,27in FHD Monitor,1,149.99,2019-05-23 17:03:00,58 9th St, Boston,MA,02215 +199374,Wired Headphones,2,11.99,2019-05-14 10:13:00,284 Washington St, New York City,NY,10001 +199374,AAA Batteries (4-pack),1,2.99,2019-05-14 10:13:00,284 Washington St, New York City,NY,10001 +199375,AA Batteries (4-pack),1,3.84,2019-05-10 20:54:00,760 Washington St, Atlanta,GA,30301 +199376,Flatscreen TV,1,300.0,2019-05-05 18:50:00,841 Lakeview St, Seattle,WA,98101 +199377,USB-C Charging Cable,1,11.95,2019-05-25 12:17:00,450 Park St, New York City,NY,10001 +199378,Wired Headphones,1,11.99,2019-05-11 23:25:00,375 Jackson St, Seattle,WA,98101 +199379,AAA Batteries (4-pack),1,2.99,2019-05-23 14:33:00,286 6th St, Portland,OR,97035 +199380,27in 4K Gaming Monitor,1,389.99,2019-05-19 18:40:00,188 Cedar St, Los Angeles,CA,90001 +199381,34in Ultrawide Monitor,1,379.99,2019-05-29 07:38:00,298 Pine St, Dallas,TX,75001 +199382,Apple Airpods Headphones,1,150.0,2019-05-05 14:58:00,38 Cherry St, Boston,MA,02215 +199383,Wired Headphones,1,11.99,2019-05-29 18:06:00,362 Hickory St, San Francisco,CA,94016 +199384,27in 4K Gaming Monitor,1,389.99,2019-05-23 11:10:00,791 Spruce St, Los Angeles,CA,90001 +199385,Bose SoundSport Headphones,1,99.99,2019-05-25 14:02:00,404 Cedar St, Seattle,WA,98101 +199386,Lightning Charging Cable,1,14.95,2019-05-26 18:32:00,439 13th St, San Francisco,CA,94016 +199387,Bose SoundSport Headphones,1,99.99,2019-05-07 06:17:00,681 Center St, Boston,MA,02215 +199388,Bose SoundSport Headphones,1,99.99,2019-05-29 06:37:00,936 Adams St, Boston,MA,02215 +199389,Bose SoundSport Headphones,1,99.99,2019-05-09 09:02:00,794 Church St, Atlanta,GA,30301 +199390,USB-C Charging Cable,1,11.95,2019-05-12 22:23:00,423 Park St, Boston,MA,02215 +199391,Wired Headphones,1,11.99,2019-05-01 17:38:00,711 Pine St, Dallas,TX,75001 +199392,Google Phone,1,600.0,2019-05-04 21:12:00,254 Meadow St, San Francisco,CA,94016 +199392,Lightning Charging Cable,1,14.95,2019-05-04 21:12:00,254 Meadow St, San Francisco,CA,94016 +199393,AAA Batteries (4-pack),1,2.99,2019-05-22 21:59:00,726 10th St, Los Angeles,CA,90001 +199394,Wired Headphones,2,11.99,2019-05-03 17:22:00,940 Madison St, Atlanta,GA,30301 +199395,Wired Headphones,1,11.99,2019-05-05 17:41:00,249 1st St, Atlanta,GA,30301 +199396,Bose SoundSport Headphones,1,99.99,2019-05-18 19:39:00,532 4th St, Atlanta,GA,30301 +199397,iPhone,1,700.0,2019-05-26 21:27:00,91 Jefferson St, San Francisco,CA,94016 +199397,Lightning Charging Cable,1,14.95,2019-05-26 21:27:00,91 Jefferson St, San Francisco,CA,94016 +199398,Macbook Pro Laptop,1,1700.0,2019-05-14 18:26:00,92 Highland St, Dallas,TX,75001 +199399,iPhone,1,700.0,2019-05-31 09:46:00,183 5th St, Portland,OR,97035 +199399,Lightning Charging Cable,1,14.95,2019-05-31 09:46:00,183 5th St, Portland,OR,97035 +199400,AAA Batteries (4-pack),1,2.99,2019-05-24 16:02:00,572 4th St, Seattle,WA,98101 +199401,27in FHD Monitor,1,149.99,2019-05-22 19:01:00,713 8th St, New York City,NY,10001 +199402,USB-C Charging Cable,1,11.95,2019-05-27 00:56:00,775 Adams St, San Francisco,CA,94016 +199403,Lightning Charging Cable,1,14.95,2019-05-03 15:27:00,616 West St, Seattle,WA,98101 +199404,AA Batteries (4-pack),4,3.84,2019-05-14 12:28:00,285 Washington St, Austin,TX,73301 +199405,ThinkPad Laptop,1,999.99,2019-05-10 13:18:00,462 Church St, Los Angeles,CA,90001 +199406,USB-C Charging Cable,1,11.95,2019-05-26 13:09:00,141 Forest St, Atlanta,GA,30301 +199407,USB-C Charging Cable,1,11.95,2019-05-22 06:59:00,564 8th St, Dallas,TX,75001 +199407,Bose SoundSport Headphones,1,99.99,2019-05-22 06:59:00,564 8th St, Dallas,TX,75001 +199408,USB-C Charging Cable,1,11.95,2019-05-02 17:59:00,696 Lake St, Seattle,WA,98101 +199409,AAA Batteries (4-pack),1,2.99,2019-05-18 19:37:00,49 12th St, Seattle,WA,98101 +199410,USB-C Charging Cable,2,11.95,2019-05-21 21:22:00,224 South St, New York City,NY,10001 +199411,ThinkPad Laptop,1,999.99,2019-05-24 16:12:00,841 West St, San Francisco,CA,94016 +199412,AA Batteries (4-pack),4,3.84,2019-05-28 10:08:00,32 Hickory St, New York City,NY,10001 +199413,Flatscreen TV,1,300.0,2019-05-16 23:36:00,585 North St, Los Angeles,CA,90001 +199414,27in FHD Monitor,1,149.99,2019-05-15 11:16:00,427 River St, Los Angeles,CA,90001 +199415,27in FHD Monitor,1,149.99,2019-05-05 17:25:00,562 Sunset St, Atlanta,GA,30301 +199416,AAA Batteries (4-pack),1,2.99,2019-05-06 19:33:00,404 Dogwood St, Dallas,TX,75001 +199417,Bose SoundSport Headphones,1,99.99,2019-05-03 20:12:00,673 Wilson St, Los Angeles,CA,90001 +199418,Wired Headphones,1,11.99,2019-05-05 22:55:00,209 Main St, Los Angeles,CA,90001 +199419,ThinkPad Laptop,1,999.99,2019-05-23 22:45:00,830 Jefferson St, Austin,TX,73301 +199420,USB-C Charging Cable,2,11.95,2019-05-10 17:03:00,179 Johnson St, Los Angeles,CA,90001 +199421,ThinkPad Laptop,1,999.99,2019-05-11 12:44:00,484 Madison St, San Francisco,CA,94016 +199422,Bose SoundSport Headphones,1,99.99,2019-05-08 14:10:00,583 2nd St, Dallas,TX,75001 +199423,Apple Airpods Headphones,1,150.0,2019-05-03 17:16:00,494 Spruce St, Seattle,WA,98101 +199424,Wired Headphones,1,11.99,2019-05-10 13:35:00,209 Hickory St, Portland,OR,97035 +199425,USB-C Charging Cable,1,11.95,2019-05-09 13:28:00,243 Ridge St, Los Angeles,CA,90001 +199426,Apple Airpods Headphones,1,150.0,2019-05-05 10:13:00,206 Adams St, Boston,MA,02215 +199427,Flatscreen TV,1,300.0,2019-05-17 18:17:00,47 Adams St, Seattle,WA,98101 +199428,AAA Batteries (4-pack),4,2.99,2019-05-21 06:26:00,421 Meadow St, Los Angeles,CA,90001 +199429,USB-C Charging Cable,1,11.95,2019-05-29 12:39:00,560 Highland St, New York City,NY,10001 +199430,34in Ultrawide Monitor,1,379.99,2019-05-24 08:55:00,911 Chestnut St, Portland,ME,04101 +199431,AA Batteries (4-pack),1,3.84,2019-05-24 19:50:00,227 Pine St, Atlanta,GA,30301 +199431,AAA Batteries (4-pack),2,2.99,2019-05-24 19:50:00,227 Pine St, Atlanta,GA,30301 +199432,Lightning Charging Cable,1,14.95,2019-05-21 16:48:00,657 Adams St, Los Angeles,CA,90001 +199433,Apple Airpods Headphones,1,150.0,2019-05-15 12:49:00,277 River St, New York City,NY,10001 +199434,USB-C Charging Cable,1,11.95,2019-05-03 11:30:00,396 10th St, San Francisco,CA,94016 +199435,Apple Airpods Headphones,1,150.0,2019-05-08 22:38:00,941 North St, Atlanta,GA,30301 +199436,27in FHD Monitor,1,149.99,2019-05-18 14:28:00,445 Spruce St, San Francisco,CA,94016 +199437,Lightning Charging Cable,2,14.95,2019-05-23 23:23:00,538 Cedar St, San Francisco,CA,94016 +199438,Flatscreen TV,1,300.0,2019-05-02 17:24:00,171 Walnut St, Boston,MA,02215 +199439,AAA Batteries (4-pack),1,2.99,2019-05-23 10:17:00,398 Lincoln St, Austin,TX,73301 +199440,Wired Headphones,1,11.99,2019-05-23 09:02:00,707 1st St, San Francisco,CA,94016 +199441,LG Dryer,1,600.0,2019-05-01 18:31:00,564 Johnson St, Portland,OR,97035 +199442,USB-C Charging Cable,1,11.95,2019-05-29 19:51:00,985 6th St, New York City,NY,10001 +199443,Lightning Charging Cable,2,14.95,2019-05-30 20:15:00,822 Pine St, San Francisco,CA,94016 +199444,AA Batteries (4-pack),1,3.84,2019-05-28 12:38:00,218 North St, Portland,OR,97035 +199445,Bose SoundSport Headphones,1,99.99,2019-05-18 06:49:00,876 14th St, Dallas,TX,75001 +199446,34in Ultrawide Monitor,1,379.99,2019-05-22 22:54:00,415 Spruce St, Austin,TX,73301 +199447,27in FHD Monitor,1,149.99,2019-05-18 07:31:00,309 Jefferson St, San Francisco,CA,94016 +199448,Lightning Charging Cable,1,14.95,2019-05-31 09:19:00,971 Main St, San Francisco,CA,94016 +199449,Flatscreen TV,1,300.0,2019-05-11 13:26:00,3 7th St, New York City,NY,10001 +199450,Wired Headphones,1,11.99,2019-05-08 09:57:00,531 10th St, Boston,MA,02215 +199451,Lightning Charging Cable,1,14.95,2019-05-09 20:08:00,689 Jackson St, Los Angeles,CA,90001 +199452,27in FHD Monitor,1,149.99,2019-05-23 10:59:00,200 Meadow St, Los Angeles,CA,90001 +199453,Apple Airpods Headphones,1,150.0,2019-05-31 11:26:00,468 5th St, Portland,OR,97035 +199454,LG Dryer,1,600.0,2019-05-23 13:58:00,611 Cedar St, Dallas,TX,75001 +199455,iPhone,1,700.0,2019-05-11 21:10:00,422 6th St, Atlanta,GA,30301 +199455,Wired Headphones,1,11.99,2019-05-11 21:10:00,422 6th St, Atlanta,GA,30301 +199456,AAA Batteries (4-pack),2,2.99,2019-05-26 00:31:00,884 Church St, Austin,TX,73301 +199457,Apple Airpods Headphones,1,150.0,2019-05-11 06:59:00,394 Park St, Boston,MA,02215 +199458,Lightning Charging Cable,1,14.95,2019-05-18 22:15:00,85 Jefferson St, Portland,OR,97035 +199459,Vareebadd Phone,1,400.0,2019-05-21 18:51:00,656 12th St, Seattle,WA,98101 +199459,USB-C Charging Cable,1,11.95,2019-05-21 18:51:00,656 12th St, Seattle,WA,98101 +199460,Flatscreen TV,1,300.0,2019-05-28 15:07:00,488 Spruce St, San Francisco,CA,94016 +199461,AAA Batteries (4-pack),1,2.99,2019-05-19 10:19:00,510 Walnut St, Los Angeles,CA,90001 +199462,Google Phone,1,600.0,2019-05-05 18:56:00,716 Meadow St, San Francisco,CA,94016 +199462,Bose SoundSport Headphones,1,99.99,2019-05-05 18:56:00,716 Meadow St, San Francisco,CA,94016 +199463,20in Monitor,1,109.99,2019-05-29 11:03:00,882 1st St, Dallas,TX,75001 +199464,Wired Headphones,1,11.99,2019-05-09 00:59:00,854 Maple St, San Francisco,CA,94016 +199465,USB-C Charging Cable,1,11.95,2019-05-16 14:50:00,903 Maple St, Los Angeles,CA,90001 +199466,USB-C Charging Cable,1,11.95,2019-05-14 09:15:00,250 8th St, Atlanta,GA,30301 +199467,AA Batteries (4-pack),2,3.84,2019-05-03 10:53:00,224 4th St, San Francisco,CA,94016 +199468,Google Phone,1,600.0,2019-05-21 09:54:00,82 2nd St, San Francisco,CA,94016 +199468,AAA Batteries (4-pack),1,2.99,2019-05-21 09:54:00,82 2nd St, San Francisco,CA,94016 +199469,Lightning Charging Cable,1,14.95,2019-05-03 21:06:00,874 Jefferson St, Dallas,TX,75001 +199470,Wired Headphones,1,11.99,2019-05-12 17:12:00,483 9th St, San Francisco,CA,94016 +199471,Wired Headphones,1,11.99,2019-05-28 08:44:00,409 Elm St, Seattle,WA,98101 +199472,Apple Airpods Headphones,1,150.0,2019-05-27 13:12:00,155 4th St, New York City,NY,10001 +199473,AA Batteries (4-pack),1,3.84,2019-05-13 15:43:00,960 4th St, Boston,MA,02215 +199474,Macbook Pro Laptop,1,1700.0,2019-05-23 07:25:00,55 Lake St, San Francisco,CA,94016 +199475,Lightning Charging Cable,1,14.95,2019-05-31 20:57:00,541 13th St, New York City,NY,10001 +199476,Google Phone,1,600.0,2019-05-03 13:59:00,879 Highland St, New York City,NY,10001 +199477,27in FHD Monitor,1,149.99,2019-05-30 16:30:00,309 Spruce St, Portland,OR,97035 +199478,Google Phone,1,600.0,2019-05-14 09:30:00,59 Ridge St, Boston,MA,02215 +199479,Lightning Charging Cable,1,14.95,2019-05-06 23:23:00,546 1st St, New York City,NY,10001 +199480,AA Batteries (4-pack),1,3.84,2019-05-26 07:59:00,937 Meadow St, New York City,NY,10001 +199481,USB-C Charging Cable,1,11.95,2019-05-02 20:48:00,280 Madison St, New York City,NY,10001 +199482,ThinkPad Laptop,1,999.99,2019-05-06 15:51:00,778 7th St, Dallas,TX,75001 +199483,AA Batteries (4-pack),1,3.84,2019-05-19 20:44:00,766 Wilson St, San Francisco,CA,94016 +199484,Lightning Charging Cable,1,14.95,2019-05-19 22:11:00,140 Spruce St, Los Angeles,CA,90001 +199485,Lightning Charging Cable,1,14.95,2019-05-19 17:34:00,979 Elm St, San Francisco,CA,94016 +199486,34in Ultrawide Monitor,1,379.99,2019-05-22 03:50:00,800 Forest St, Seattle,WA,98101 +199487,Macbook Pro Laptop,1,1700.0,2019-05-07 15:24:00,947 Lake St, Boston,MA,02215 +199488,Lightning Charging Cable,1,14.95,2019-05-03 14:24:00,636 Adams St, New York City,NY,10001 +199489,Wired Headphones,1,11.99,2019-05-08 12:42:00,333 Spruce St, San Francisco,CA,94016 +199490,Wired Headphones,1,11.99,2019-05-23 13:23:00,484 13th St, Boston,MA,02215 +199491,Flatscreen TV,1,300.0,2019-05-21 06:00:00,75 Church St, San Francisco,CA,94016 +199492,Macbook Pro Laptop,1,1700.0,2019-05-09 19:46:00,807 Hickory St, Atlanta,GA,30301 +199493,AA Batteries (4-pack),1,3.84,2019-05-29 21:21:00,191 12th St, Dallas,TX,75001 +199494,20in Monitor,1,109.99,2019-05-07 19:29:00,371 Maple St, Los Angeles,CA,90001 +199495,USB-C Charging Cable,1,11.95,2019-05-12 08:11:00,474 Lincoln St, San Francisco,CA,94016 +199496,USB-C Charging Cable,1,11.95,2019-05-25 08:48:00,94 9th St, Dallas,TX,75001 +199497,34in Ultrawide Monitor,1,379.99,2019-05-12 01:25:00,47 Cherry St, Austin,TX,73301 +199498,20in Monitor,1,109.99,2019-05-27 16:57:00,600 Dogwood St, Portland,OR,97035 +199498,USB-C Charging Cable,1,11.95,2019-05-27 16:57:00,600 Dogwood St, Portland,OR,97035 +199499,Lightning Charging Cable,1,14.95,2019-05-20 23:18:00,595 13th St, Seattle,WA,98101 +199500,Wired Headphones,2,11.99,2019-05-19 20:44:00,613 Elm St, San Francisco,CA,94016 +199501,Bose SoundSport Headphones,1,99.99,2019-05-03 20:38:00,643 Church St, Los Angeles,CA,90001 +199502,Google Phone,1,600.0,2019-05-20 07:52:00,112 Park St, Seattle,WA,98101 +199503,iPhone,1,700.0,2019-05-24 18:04:00,79 North St, New York City,NY,10001 +199504,LG Washing Machine,1,600.0,2019-05-19 08:16:00,654 12th St, Boston,MA,02215 +199505,iPhone,1,700.0,2019-05-28 00:37:00,826 Lake St, San Francisco,CA,94016 +199506,Macbook Pro Laptop,1,1700.0,2019-05-26 21:16:00,636 Forest St, San Francisco,CA,94016 +199507,20in Monitor,1,109.99,2019-05-09 14:06:00,592 Lake St, Los Angeles,CA,90001 +199508,Bose SoundSport Headphones,1,99.99,2019-05-08 17:45:00,149 Highland St, New York City,NY,10001 +199509,27in FHD Monitor,1,149.99,2019-05-25 15:51:00,970 Johnson St, Boston,MA,02215 +199510,27in 4K Gaming Monitor,1,389.99,2019-05-10 22:33:00,764 North St, Seattle,WA,98101 +199511,AA Batteries (4-pack),1,3.84,2019-05-16 21:33:00,658 13th St, Portland,OR,97035 +199512,Apple Airpods Headphones,1,150.0,2019-05-31 19:13:00,709 Main St, Boston,MA,02215 +199513,iPhone,1,700.0,2019-05-22 13:49:00,741 Main St, Atlanta,GA,30301 +199514,Wired Headphones,1,11.99,2019-05-03 13:02:00,647 Wilson St, New York City,NY,10001 +199515,USB-C Charging Cable,1,11.95,2019-05-31 02:23:00,955 12th St, Seattle,WA,98101 +199516,USB-C Charging Cable,2,11.95,2019-05-10 23:35:00,48 12th St, Portland,OR,97035 +199517,Flatscreen TV,1,300.0,2019-05-18 18:02:00,459 Meadow St, Los Angeles,CA,90001 +199518,Google Phone,1,600.0,2019-05-12 16:00:00,684 Madison St, San Francisco,CA,94016 +199518,USB-C Charging Cable,1,11.95,2019-05-12 16:00:00,684 Madison St, San Francisco,CA,94016 +199519,AA Batteries (4-pack),1,3.84,2019-05-05 19:58:00,436 Cedar St, San Francisco,CA,94016 +199520,Wired Headphones,1,11.99,2019-05-14 12:52:00,659 Park St, Dallas,TX,75001 +199521,USB-C Charging Cable,1,11.95,2019-05-19 12:39:00,218 River St, Austin,TX,73301 +199522,34in Ultrawide Monitor,1,379.99,2019-05-18 12:08:00,326 Main St, San Francisco,CA,94016 +199523,ThinkPad Laptop,1,999.99,2019-05-14 18:48:00,539 Pine St, Portland,OR,97035 +199524,27in 4K Gaming Monitor,1,389.99,2019-05-13 23:27:00,264 10th St, San Francisco,CA,94016 +199525,Wired Headphones,1,11.99,2019-05-28 18:31:00,566 Elm St, Seattle,WA,98101 +199526,USB-C Charging Cable,1,11.95,2019-05-20 10:07:00,243 Forest St, Austin,TX,73301 +199527,USB-C Charging Cable,2,11.95,2019-05-07 17:35:00,471 Madison St, Los Angeles,CA,90001 +199528,AAA Batteries (4-pack),2,2.99,2019-05-07 15:18:00,827 13th St, Atlanta,GA,30301 +199529,34in Ultrawide Monitor,1,379.99,2019-05-03 16:38:00,860 10th St, San Francisco,CA,94016 +199530,Wired Headphones,1,11.99,2019-05-28 13:24:00,584 Jefferson St, Dallas,TX,75001 +199531,Wired Headphones,1,11.99,2019-05-11 19:28:00,653 Walnut St, Dallas,TX,75001 +199532,AAA Batteries (4-pack),1,2.99,2019-05-07 13:10:00,370 Forest St, Boston,MA,02215 +199533,ThinkPad Laptop,1,999.99,2019-05-05 10:36:00,142 Wilson St, Seattle,WA,98101 +199534,Bose SoundSport Headphones,1,99.99,2019-05-31 08:05:00,395 Forest St, Los Angeles,CA,90001 +199535,USB-C Charging Cable,1,11.95,2019-05-26 10:12:00,513 Adams St, Boston,MA,02215 +199536,Bose SoundSport Headphones,1,99.99,2019-05-07 18:50:00,682 13th St, San Francisco,CA,94016 +199537,USB-C Charging Cable,1,11.95,2019-05-10 04:34:00,906 Spruce St, New York City,NY,10001 +199538,Wired Headphones,1,11.99,2019-05-18 15:49:00,62 9th St, Seattle,WA,98101 +199539,Wired Headphones,1,11.99,2019-05-19 14:01:00,985 Maple St, Los Angeles,CA,90001 +199540,AAA Batteries (4-pack),1,2.99,2019-05-10 16:10:00,753 5th St, San Francisco,CA,94016 +199541,27in 4K Gaming Monitor,1,389.99,2019-05-14 17:06:00,403 Chestnut St, Dallas,TX,75001 +199542,AAA Batteries (4-pack),1,2.99,2019-05-14 14:11:00,949 Wilson St, Atlanta,GA,30301 +199543,iPhone,1,700.0,2019-05-30 09:52:00,339 Meadow St, Los Angeles,CA,90001 +199544,Bose SoundSport Headphones,1,99.99,2019-05-27 08:56:00,390 West St, Portland,ME,04101 +199545,Bose SoundSport Headphones,1,99.99,2019-05-04 22:51:00,624 Jefferson St, New York City,NY,10001 +199546,Wired Headphones,1,11.99,2019-05-19 23:05:00,590 Meadow St, Los Angeles,CA,90001 +199547,USB-C Charging Cable,1,11.95,2019-05-16 12:17:00,891 2nd St, Portland,OR,97035 +199548,Apple Airpods Headphones,1,150.0,2019-05-19 15:56:00,236 11th St, Portland,OR,97035 +199549,Flatscreen TV,1,300.0,2019-05-29 19:10:00,7 14th St, Seattle,WA,98101 +199550,iPhone,1,700.0,2019-05-18 18:04:00,437 West St, Los Angeles,CA,90001 +199551,USB-C Charging Cable,1,11.95,2019-05-24 20:16:00,234 Elm St, Seattle,WA,98101 +199552,Lightning Charging Cable,1,14.95,2019-05-04 18:44:00,313 Cedar St, Atlanta,GA,30301 +199553,Wired Headphones,1,11.99,2019-05-30 17:05:00,761 Washington St, Atlanta,GA,30301 +199554,AA Batteries (4-pack),1,3.84,2019-05-26 18:25:00,904 Cedar St, San Francisco,CA,94016 +199555,Lightning Charging Cable,1,14.95,2019-05-30 10:50:00,530 Johnson St, Boston,MA,02215 +199556,Macbook Pro Laptop,1,1700.0,2019-05-06 22:49:00,521 Lincoln St, Atlanta,GA,30301 +199557,USB-C Charging Cable,1,11.95,2019-05-15 13:02:00,695 Cherry St, Boston,MA,02215 +199558,AAA Batteries (4-pack),4,2.99,2019-05-22 14:25:00,364 Washington St, New York City,NY,10001 +199559,Lightning Charging Cable,1,14.95,2019-05-24 15:48:00,221 Lincoln St, Atlanta,GA,30301 +199560,AAA Batteries (4-pack),1,2.99,2019-05-22 12:17:00,367 Park St, Atlanta,GA,30301 +199561,USB-C Charging Cable,1,11.95,2019-05-12 19:30:00,754 Wilson St, San Francisco,CA,94016 +199562,Google Phone,1,600.0,2019-05-16 12:50:00,811 Madison St, New York City,NY,10001 +199563,AAA Batteries (4-pack),1,2.99,2019-05-29 17:22:00,810 Forest St, San Francisco,CA,94016 +199564,Lightning Charging Cable,1,14.95,2019-05-31 20:44:00,130 10th St, Atlanta,GA,30301 +199565,USB-C Charging Cable,1,11.95,2019-05-15 10:36:00,225 12th St, Los Angeles,CA,90001 +199566,AAA Batteries (4-pack),2,2.99,2019-05-03 21:11:00,837 10th St, Los Angeles,CA,90001 +199567,AAA Batteries (4-pack),2,2.99,2019-05-09 01:59:00,589 9th St, Los Angeles,CA,90001 +199568,Apple Airpods Headphones,1,150.0,2019-05-14 15:36:00,301 14th St, Atlanta,GA,30301 +199569,Macbook Pro Laptop,1,1700.0,2019-05-08 19:59:00,645 Walnut St, San Francisco,CA,94016 +199570,34in Ultrawide Monitor,1,379.99,2019-05-29 08:17:00,875 Lake St, San Francisco,CA,94016 +199571,Lightning Charging Cable,1,14.95,2019-05-30 19:00:00,286 6th St, Atlanta,GA,30301 +199572,Lightning Charging Cable,1,14.95,2019-05-03 21:51:00,297 1st St, San Francisco,CA,94016 +199573,Apple Airpods Headphones,1,150.0,2019-05-22 11:00:00,895 Elm St, Dallas,TX,75001 +199574,Lightning Charging Cable,1,14.95,2019-05-01 15:47:00,949 Hill St, Los Angeles,CA,90001 +199575,34in Ultrawide Monitor,1,379.99,2019-05-08 12:33:00,249 Hickory St, Austin,TX,73301 +199576,AAA Batteries (4-pack),2,2.99,2019-05-04 13:28:00,481 Elm St, Seattle,WA,98101 +199577,AA Batteries (4-pack),1,3.84,2019-05-04 00:48:00,362 River St, San Francisco,CA,94016 +199578,Apple Airpods Headphones,1,150.0,2019-05-05 13:12:00,654 5th St, San Francisco,CA,94016 +199579,Lightning Charging Cable,1,14.95,2019-05-15 08:58:00,232 Washington St, Atlanta,GA,30301 +199580,Wired Headphones,1,11.99,2019-05-02 20:58:00,12 Johnson St, Austin,TX,73301 +199581,Bose SoundSport Headphones,1,99.99,2019-05-20 18:07:00,876 Wilson St, Austin,TX,73301 +199582,20in Monitor,1,109.99,2019-05-17 10:23:00,898 Johnson St, Atlanta,GA,30301 +199583,20in Monitor,1,109.99,2019-05-17 10:39:00,865 Highland St, Dallas,TX,75001 +199584,ThinkPad Laptop,1,999.99,2019-05-19 07:54:00,357 Maple St, Austin,TX,73301 +199585,Wired Headphones,1,11.99,2019-05-19 17:08:00,380 Main St, New York City,NY,10001 +199586,Lightning Charging Cable,2,14.95,2019-05-26 17:09:00,276 2nd St, Boston,MA,02215 +199587,AA Batteries (4-pack),1,3.84,2019-05-04 21:37:00,275 Willow St, Boston,MA,02215 +199588,20in Monitor,1,109.99,2019-05-14 12:57:00,193 Willow St, San Francisco,CA,94016 +199589,20in Monitor,1,109.99,2019-05-07 19:22:00,671 Jefferson St, New York City,NY,10001 +199590,Lightning Charging Cable,1,14.95,2019-05-02 10:37:00,815 Lake St, Seattle,WA,98101 +199591,AAA Batteries (4-pack),1,2.99,2019-05-14 23:05:00,541 Cherry St, Atlanta,GA,30301 +199592,27in 4K Gaming Monitor,1,389.99,2019-05-30 23:06:00,278 Ridge St, San Francisco,CA,94016 +199593,Flatscreen TV,1,300.0,2019-05-15 13:20:00,275 Lake St, San Francisco,CA,94016 +199594,USB-C Charging Cable,2,11.95,2019-05-03 20:48:00,638 Park St, San Francisco,CA,94016 +199595,Wired Headphones,1,11.99,2019-05-05 08:32:00,146 4th St, New York City,NY,10001 +199596,AA Batteries (4-pack),1,3.84,2019-05-30 19:12:00,634 8th St, New York City,NY,10001 +199597,Lightning Charging Cable,1,14.95,2019-05-08 20:47:00,883 6th St, Seattle,WA,98101 +199598,AAA Batteries (4-pack),2,2.99,2019-05-26 16:02:00,545 Pine St, Seattle,WA,98101 +199599,27in FHD Monitor,1,149.99,2019-05-14 19:15:00,85 Chestnut St, Los Angeles,CA,90001 +199600,27in FHD Monitor,1,149.99,2019-05-16 18:38:00,351 12th St, Los Angeles,CA,90001 +199601,AAA Batteries (4-pack),1,2.99,2019-05-04 13:41:00,95 1st St, San Francisco,CA,94016 +199602,Macbook Pro Laptop,1,1700.0,2019-05-09 14:43:00,617 North St, Dallas,TX,75001 +199603,27in FHD Monitor,1,149.99,2019-05-13 08:58:00,461 Maple St, Seattle,WA,98101 +199604,USB-C Charging Cable,1,11.95,2019-05-18 21:18:00,74 Center St, Dallas,TX,75001 +199605,Lightning Charging Cable,1,14.95,2019-05-31 18:21:00,425 Meadow St, San Francisco,CA,94016 +199606,AA Batteries (4-pack),1,3.84,2019-05-15 17:31:00,778 Lake St, Dallas,TX,75001 +199607,Bose SoundSport Headphones,1,99.99,2019-05-07 17:02:00,386 Meadow St, San Francisco,CA,94016 +199608,Lightning Charging Cable,1,14.95,2019-05-05 22:08:00,366 1st St, Los Angeles,CA,90001 +199609,Wired Headphones,1,11.99,2019-05-20 20:49:00,173 12th St, Boston,MA,02215 +199610,27in 4K Gaming Monitor,1,389.99,2019-05-17 21:34:00,470 Washington St, Boston,MA,02215 +199611,AA Batteries (4-pack),1,3.84,2019-05-30 08:39:00,142 Ridge St, Portland,OR,97035 +199612,AA Batteries (4-pack),1,3.84,2019-05-06 14:34:00,732 8th St, San Francisco,CA,94016 +199613,Wired Headphones,1,11.99,2019-05-28 20:20:00,510 Maple St, San Francisco,CA,94016 +199614,AA Batteries (4-pack),1,3.84,2019-05-17 15:12:00,293 13th St, Portland,OR,97035 +199615,AAA Batteries (4-pack),1,2.99,2019-05-23 10:50:00,594 Willow St, San Francisco,CA,94016 +199616,Wired Headphones,1,11.99,2019-05-14 08:21:00,911 Main St, Dallas,TX,75001 +199617,AA Batteries (4-pack),1,3.84,2019-05-27 05:58:00,822 Lakeview St, Seattle,WA,98101 +199618,AA Batteries (4-pack),1,3.84,2019-05-15 10:17:00,560 Adams St, New York City,NY,10001 +199619,USB-C Charging Cable,1,11.95,2019-05-21 21:35:00,154 Spruce St, Seattle,WA,98101 +199620,Bose SoundSport Headphones,1,99.99,2019-05-14 19:40:00,583 4th St, Dallas,TX,75001 +199621,Lightning Charging Cable,1,14.95,2019-05-25 16:31:00,86 Park St, Los Angeles,CA,90001 +199622,Wired Headphones,1,11.99,2019-05-13 07:22:00,806 Lakeview St, Portland,OR,97035 +199623,USB-C Charging Cable,1,11.95,2019-05-11 07:44:00,231 9th St, New York City,NY,10001 +199624,27in 4K Gaming Monitor,1,389.99,2019-05-30 00:11:00,132 South St, San Francisco,CA,94016 +199625,Apple Airpods Headphones,1,150.0,2019-05-25 12:10:00,213 Hill St, Portland,OR,97035 +199626,34in Ultrawide Monitor,1,379.99,2019-05-25 20:34:00,582 Wilson St, Dallas,TX,75001 +199627,AA Batteries (4-pack),2,3.84,2019-05-01 10:50:00,703 Madison St, Austin,TX,73301 +199628,USB-C Charging Cable,2,11.95,2019-05-26 20:09:00,912 10th St, New York City,NY,10001 +199629,USB-C Charging Cable,1,11.95,2019-05-18 11:02:00,701 Madison St, Austin,TX,73301 +199630,27in FHD Monitor,1,149.99,2019-05-23 18:03:00,718 Washington St, Portland,ME,04101 +199631,AA Batteries (4-pack),1,3.84,2019-05-04 09:40:00,848 Cherry St, San Francisco,CA,94016 +199632,Wired Headphones,1,11.99,2019-05-19 16:08:00,822 Elm St, New York City,NY,10001 +199633,AAA Batteries (4-pack),1,2.99,2019-05-14 14:18:00,798 11th St, Los Angeles,CA,90001 +199634,34in Ultrawide Monitor,1,379.99,2019-05-07 14:33:00,556 Jefferson St, Los Angeles,CA,90001 +199634,Lightning Charging Cable,1,14.95,2019-05-07 14:33:00,556 Jefferson St, Los Angeles,CA,90001 +199635,AA Batteries (4-pack),1,3.84,2019-05-30 19:21:00,359 Wilson St, Dallas,TX,75001 +199636,Google Phone,1,600.0,2019-05-10 21:30:00,592 Willow St, New York City,NY,10001 +199636,USB-C Charging Cable,1,11.95,2019-05-10 21:30:00,592 Willow St, New York City,NY,10001 +199637,AAA Batteries (4-pack),1,2.99,2019-05-27 13:40:00,669 Sunset St, Dallas,TX,75001 +199638,AAA Batteries (4-pack),1,2.99,2019-05-13 13:13:00,960 11th St, New York City,NY,10001 +199639,AAA Batteries (4-pack),4,2.99,2019-05-08 12:32:00,847 Highland St, Portland,OR,97035 +199640,Google Phone,1,600.0,2019-05-01 21:25:00,90 Willow St, Atlanta,GA,30301 +199641,Lightning Charging Cable,1,14.95,2019-05-16 01:18:00,445 Church St, San Francisco,CA,94016 +199642,Bose SoundSport Headphones,1,99.99,2019-05-09 16:22:00,346 Highland St, New York City,NY,10001 +199643,AA Batteries (4-pack),1,3.84,2019-05-30 17:32:00,180 Center St, Portland,OR,97035 +199644,27in FHD Monitor,1,149.99,2019-05-21 18:13:00,170 Center St, Austin,TX,73301 +199645,Bose SoundSport Headphones,1,99.99,2019-05-14 13:55:00,156 Lakeview St, San Francisco,CA,94016 +199646,34in Ultrawide Monitor,1,379.99,2019-05-06 11:32:00,227 6th St, Seattle,WA,98101 +199647,AAA Batteries (4-pack),1,2.99,2019-05-27 15:11:00,874 5th St, San Francisco,CA,94016 +199648,Wired Headphones,1,11.99,2019-05-09 07:48:00,509 South St, Atlanta,GA,30301 +199649,Apple Airpods Headphones,1,150.0,2019-05-16 00:10:00,847 Ridge St, Dallas,TX,75001 +199649,Lightning Charging Cable,1,14.95,2019-05-16 00:10:00,847 Ridge St, Dallas,TX,75001 +199650,Lightning Charging Cable,1,14.95,2019-05-04 19:48:00,519 Walnut St, San Francisco,CA,94016 +199651,AA Batteries (4-pack),1,3.84,2019-05-09 16:03:00,262 Chestnut St, New York City,NY,10001 +199652,Flatscreen TV,1,300.0,2019-05-14 13:58:00,254 South St, Boston,MA,02215 +199653,Flatscreen TV,1,300.0,2019-05-02 11:20:00,671 Lake St, Atlanta,GA,30301 +199654,27in 4K Gaming Monitor,1,389.99,2019-05-15 08:19:00,342 South St, New York City,NY,10001 +199655,Flatscreen TV,1,300.0,2019-05-15 20:35:00,580 River St, Los Angeles,CA,90001 +199656,27in FHD Monitor,1,149.99,2019-05-06 17:02:00,39 Lincoln St, Seattle,WA,98101 +199657,Bose SoundSport Headphones,1,99.99,2019-05-13 15:40:00,706 Church St, Los Angeles,CA,90001 +199658,AA Batteries (4-pack),2,3.84,2019-05-01 20:15:00,346 11th St, Portland,OR,97035 +199659,AAA Batteries (4-pack),1,2.99,2019-05-18 08:35:00,142 Wilson St, Boston,MA,02215 +199660,Bose SoundSport Headphones,1,99.99,2019-05-27 08:37:00,308 11th St, San Francisco,CA,94016 +199661,Wired Headphones,1,11.99,2019-05-17 11:00:00,131 Madison St, Los Angeles,CA,90001 +199662,34in Ultrawide Monitor,1,379.99,2019-05-28 15:13:00,768 Meadow St, San Francisco,CA,94016 +199663,Wired Headphones,1,11.99,2019-05-23 17:01:00,86 14th St, Los Angeles,CA,90001 +199664,Wired Headphones,1,11.99,2019-05-02 10:20:00,117 Lincoln St, Boston,MA,02215 +199664,iPhone,1,700.0,2019-05-02 10:20:00,117 Lincoln St, Boston,MA,02215 +199665,Lightning Charging Cable,1,14.95,2019-05-22 01:16:00,987 4th St, Portland,OR,97035 +199666,USB-C Charging Cable,1,11.95,2019-05-19 22:56:00,482 Lakeview St, New York City,NY,10001 +199667,AA Batteries (4-pack),2,3.84,2019-05-05 18:36:00,184 Meadow St, Dallas,TX,75001 +199668,AAA Batteries (4-pack),1,2.99,2019-05-06 10:56:00,903 Walnut St, Dallas,TX,75001 +199669,USB-C Charging Cable,1,11.95,2019-05-13 16:16:00,276 8th St, San Francisco,CA,94016 +199670,USB-C Charging Cable,1,11.95,2019-05-26 05:13:00,947 Lake St, San Francisco,CA,94016 +199671,Lightning Charging Cable,1,14.95,2019-05-12 19:52:00,497 Cedar St, San Francisco,CA,94016 +199672,27in 4K Gaming Monitor,1,389.99,2019-05-01 19:14:00,570 Hickory St, Atlanta,GA,30301 +199673,20in Monitor,1,109.99,2019-05-19 11:06:00,430 Sunset St, San Francisco,CA,94016 +199674,Wired Headphones,1,11.99,2019-05-17 18:45:00,472 Center St, Seattle,WA,98101 +199675,27in FHD Monitor,1,149.99,2019-05-17 11:45:00,84 Lake St, New York City,NY,10001 +199676,LG Washing Machine,1,600.0,2019-05-06 23:10:00,389 North St, San Francisco,CA,94016 +199677,USB-C Charging Cable,1,11.95,2019-05-11 12:18:00,874 Dogwood St, Dallas,TX,75001 +199678,AAA Batteries (4-pack),1,2.99,2019-05-05 12:44:00,177 Hill St, Seattle,WA,98101 +199679,AA Batteries (4-pack),1,3.84,2019-05-07 18:36:00,873 Hickory St, Boston,MA,02215 +199680,34in Ultrawide Monitor,1,379.99,2019-05-09 10:19:00,621 Sunset St, Atlanta,GA,30301 +199681,USB-C Charging Cable,1,11.95,2019-05-15 11:09:00,756 Jackson St, San Francisco,CA,94016 +199682,Wired Headphones,1,11.99,2019-05-16 12:39:00,871 Adams St, Boston,MA,02215 +199683,AAA Batteries (4-pack),5,2.99,2019-05-07 10:49:00,964 8th St, San Francisco,CA,94016 +199684,Lightning Charging Cable,1,14.95,2019-05-23 22:25:00,240 11th St, Boston,MA,02215 +199685,Bose SoundSport Headphones,1,99.99,2019-05-23 13:04:00,840 Chestnut St, Dallas,TX,75001 +199686,AAA Batteries (4-pack),1,2.99,2019-05-23 19:53:00,336 River St, Los Angeles,CA,90001 +199687,Bose SoundSport Headphones,1,99.99,2019-05-03 10:38:00,752 14th St, Los Angeles,CA,90001 +199688,iPhone,1,700.0,2019-05-06 21:24:00,59 7th St, Boston,MA,02215 +199689,Wired Headphones,1,11.99,2019-05-09 23:04:00,606 2nd St, New York City,NY,10001 +199690,34in Ultrawide Monitor,1,379.99,2019-05-29 05:25:00,445 Sunset St, San Francisco,CA,94016 +199691,USB-C Charging Cable,1,11.95,2019-05-03 12:23:00,264 Maple St, Los Angeles,CA,90001 +199692,Google Phone,1,600.0,2019-05-16 17:38:00,829 10th St, San Francisco,CA,94016 +199693,Bose SoundSport Headphones,1,99.99,2019-05-22 18:36:00,605 Madison St, Seattle,WA,98101 +199694,Wired Headphones,1,11.99,2019-05-16 13:14:00,945 River St, Seattle,WA,98101 +199695,USB-C Charging Cable,1,11.95,2019-05-24 11:41:00,845 Lincoln St, San Francisco,CA,94016 +199696,Wired Headphones,1,11.99,2019-05-25 20:41:00,49 Park St, Seattle,WA,98101 +199697,Google Phone,1,600.0,2019-05-07 02:33:00,288 Willow St, Boston,MA,02215 +199697,USB-C Charging Cable,1,11.95,2019-05-07 02:33:00,288 Willow St, Boston,MA,02215 +199698,Apple Airpods Headphones,1,150.0,2019-05-19 16:59:00,113 Jefferson St, Boston,MA,02215 +199699,iPhone,1,700.0,2019-05-21 04:29:00,255 Maple St, Atlanta,GA,30301 +199699,Lightning Charging Cable,1,14.95,2019-05-21 04:29:00,255 Maple St, Atlanta,GA,30301 +199700,AAA Batteries (4-pack),1,2.99,2019-05-25 13:27:00,669 6th St, Atlanta,GA,30301 +199701,Lightning Charging Cable,1,14.95,2019-05-04 16:05:00,268 Church St, Dallas,TX,75001 +199702,27in FHD Monitor,1,149.99,2019-05-27 12:40:00,289 Meadow St, Boston,MA,02215 +199703,Wired Headphones,1,11.99,2019-05-09 18:32:00,763 Lakeview St, Seattle,WA,98101 +199704,Bose SoundSport Headphones,1,99.99,2019-05-02 10:14:00,76 Lincoln St, New York City,NY,10001 +199705,27in FHD Monitor,1,149.99,2019-05-22 11:29:00,818 Chestnut St, Los Angeles,CA,90001 +199706,Lightning Charging Cable,1,14.95,2019-05-07 18:55:00,229 Highland St, Atlanta,GA,30301 +199707,AA Batteries (4-pack),1,3.84,2019-05-10 20:46:00,873 Center St, Los Angeles,CA,90001 +199708,Wired Headphones,1,11.99,2019-05-21 21:53:00,67 2nd St, Boston,MA,02215 +199709,34in Ultrawide Monitor,1,379.99,2019-05-04 13:44:00,473 Johnson St, Boston,MA,02215 +199710,USB-C Charging Cable,1,11.95,2019-05-29 13:02:00,806 Cedar St, Seattle,WA,98101 +199711,Lightning Charging Cable,1,14.95,2019-05-14 00:46:00,770 Lakeview St, Boston,MA,02215 +199712,USB-C Charging Cable,1,11.95,2019-05-07 13:21:00,900 North St, San Francisco,CA,94016 +199713,iPhone,1,700.0,2019-05-08 15:26:00,842 1st St, San Francisco,CA,94016 +199713,Lightning Charging Cable,1,14.95,2019-05-08 15:26:00,842 1st St, San Francisco,CA,94016 +199714,Wired Headphones,1,11.99,2019-05-07 17:02:00,367 6th St, Boston,MA,02215 +199715,AA Batteries (4-pack),1,3.84,2019-05-08 11:50:00,85 12th St, San Francisco,CA,94016 +199716,Macbook Pro Laptop,1,1700.0,2019-05-04 12:27:00,795 North St, New York City,NY,10001 +199717,AA Batteries (4-pack),1,3.84,2019-05-16 17:57:00,715 Dogwood St, Seattle,WA,98101 +199718,USB-C Charging Cable,1,11.95,2019-05-25 16:27:00,116 5th St, Los Angeles,CA,90001 +199719,27in FHD Monitor,1,149.99,2019-05-07 02:01:00,849 5th St, New York City,NY,10001 +199720,iPhone,1,700.0,2019-05-29 23:27:00,209 Walnut St, Boston,MA,02215 +199721,Wired Headphones,1,11.99,2019-05-25 11:32:00,677 Washington St, Portland,OR,97035 +199722,AA Batteries (4-pack),1,3.84,2019-05-27 12:37:00,61 Chestnut St, San Francisco,CA,94016 +199723,AAA Batteries (4-pack),1,2.99,2019-05-07 19:25:00,158 12th St, San Francisco,CA,94016 +199724,Lightning Charging Cable,1,14.95,2019-05-02 22:35:00,896 8th St, Portland,OR,97035 +199725,AAA Batteries (4-pack),1,2.99,2019-05-22 20:50:00,315 Willow St, San Francisco,CA,94016 +199726,AAA Batteries (4-pack),1,2.99,2019-05-17 20:38:00,636 Cedar St, Boston,MA,02215 +199727,Apple Airpods Headphones,1,150.0,2019-05-18 23:16:00,917 Walnut St, Dallas,TX,75001 +199728,Bose SoundSport Headphones,1,99.99,2019-05-08 07:13:00,407 2nd St, San Francisco,CA,94016 +199728,Macbook Pro Laptop,1,1700.0,2019-05-08 07:13:00,407 2nd St, San Francisco,CA,94016 +199729,AAA Batteries (4-pack),1,2.99,2019-05-21 19:14:00,875 North St, San Francisco,CA,94016 +199730,Lightning Charging Cable,1,14.95,2019-05-25 12:45:00,329 7th St, New York City,NY,10001 +199731,Bose SoundSport Headphones,1,99.99,2019-05-01 13:37:00,722 Lake St, San Francisco,CA,94016 +199732,Wired Headphones,1,11.99,2019-05-04 17:47:00,146 Wilson St, San Francisco,CA,94016 +199733,Lightning Charging Cable,1,14.95,2019-05-27 23:48:00,191 Willow St, San Francisco,CA,94016 +199734,AA Batteries (4-pack),1,3.84,2019-05-03 19:44:00,426 5th St, Austin,TX,73301 +199735,27in FHD Monitor,1,149.99,2019-05-28 13:24:00,729 Wilson St, Los Angeles,CA,90001 +199736,Macbook Pro Laptop,1,1700.0,2019-05-12 10:43:00,307 6th St, Boston,MA,02215 +199737,Bose SoundSport Headphones,1,99.99,2019-05-13 20:30:00,316 Cherry St, Dallas,TX,75001 +199738,20in Monitor,1,109.99,2019-05-21 20:52:00,621 Highland St, Dallas,TX,75001 +199738,Flatscreen TV,1,300.0,2019-05-21 20:52:00,621 Highland St, Dallas,TX,75001 +199739,Lightning Charging Cable,1,14.95,2019-05-24 15:37:00,144 Hickory St, San Francisco,CA,94016 +199740,Lightning Charging Cable,1,14.95,2019-05-30 18:05:00,802 4th St, New York City,NY,10001 +199741,Wired Headphones,1,11.99,2019-05-18 09:42:00,404 Center St, Los Angeles,CA,90001 +199742,AAA Batteries (4-pack),4,2.99,2019-05-09 21:34:00,666 Hill St, New York City,NY,10001 +199743,Apple Airpods Headphones,1,150.0,2019-05-21 14:58:00,605 River St, Seattle,WA,98101 +199744,USB-C Charging Cable,1,11.95,2019-05-11 14:43:00,612 Pine St, Los Angeles,CA,90001 +199745,Wired Headphones,1,11.99,2019-05-27 10:54:00,397 7th St, Los Angeles,CA,90001 +199746,iPhone,1,700.0,2019-05-29 03:19:00,572 1st St, Portland,ME,04101 +199746,Wired Headphones,1,11.99,2019-05-29 03:19:00,572 1st St, Portland,ME,04101 +199747,AAA Batteries (4-pack),1,2.99,2019-05-02 13:13:00,180 West St, San Francisco,CA,94016 +199748,AA Batteries (4-pack),1,3.84,2019-05-11 08:30:00,409 Main St, Atlanta,GA,30301 +199748,20in Monitor,1,109.99,2019-05-11 08:30:00,409 Main St, Atlanta,GA,30301 +199749,AA Batteries (4-pack),1,3.84,2019-05-07 18:45:00,931 12th St, Seattle,WA,98101 +199750,AA Batteries (4-pack),1,3.84,2019-05-11 08:30:00,190 River St, Portland,OR,97035 +199751,AAA Batteries (4-pack),2,2.99,2019-05-05 19:04:00,222 8th St, San Francisco,CA,94016 +199752,ThinkPad Laptop,1,999.99,2019-05-20 22:28:00,463 7th St, Boston,MA,02215 +199753,AAA Batteries (4-pack),5,2.99,2019-05-20 21:00:00,16 7th St, San Francisco,CA,94016 +199754,Lightning Charging Cable,1,14.95,2019-05-28 10:24:00,340 Lakeview St, Los Angeles,CA,90001 +199755,USB-C Charging Cable,1,11.95,2019-05-15 21:41:00,282 13th St, Boston,MA,02215 +199756,Wired Headphones,1,11.99,2019-05-10 12:04:00,20 West St, Los Angeles,CA,90001 +199757,AA Batteries (4-pack),1,3.84,2019-05-08 18:56:00,951 7th St, Dallas,TX,75001 +199758,Apple Airpods Headphones,1,150.0,2019-05-19 18:17:00,563 9th St, Dallas,TX,75001 +199759,Bose SoundSport Headphones,1,99.99,2019-05-06 12:42:00,546 Hill St, Dallas,TX,75001 +199760,Lightning Charging Cable,1,14.95,2019-05-15 15:51:00,316 Hill St, San Francisco,CA,94016 +199761,Apple Airpods Headphones,1,150.0,2019-05-19 07:02:00,858 Cherry St, Seattle,WA,98101 +199762,Lightning Charging Cable,1,14.95,2019-05-21 10:01:00,762 Washington St, Boston,MA,02215 +199763,AA Batteries (4-pack),2,3.84,2019-05-16 12:53:00,639 Walnut St, San Francisco,CA,94016 +199764,Lightning Charging Cable,1,14.95,2019-05-20 10:20:00,83 6th St, Los Angeles,CA,90001 +199765,Apple Airpods Headphones,1,150.0,2019-05-31 11:20:00,509 Dogwood St, New York City,NY,10001 +199766,iPhone,1,700.0,2019-05-14 10:43:00,451 Center St, Seattle,WA,98101 +199767,Wired Headphones,1,11.99,2019-05-28 01:06:00,661 Hill St, Portland,OR,97035 +199767,27in FHD Monitor,1,149.99,2019-05-28 01:06:00,661 Hill St, Portland,OR,97035 +199768,27in FHD Monitor,1,149.99,2019-05-06 19:26:00,127 Park St, Los Angeles,CA,90001 +199769,27in 4K Gaming Monitor,1,389.99,2019-05-28 12:04:00,132 West St, Los Angeles,CA,90001 +199770,Lightning Charging Cable,1,14.95,2019-05-17 21:01:00,2 Elm St, New York City,NY,10001 +199771,27in FHD Monitor,1,149.99,2019-05-30 17:58:00,764 Cedar St, Los Angeles,CA,90001 +199772,Lightning Charging Cable,1,14.95,2019-05-07 16:53:00,553 Meadow St, Seattle,WA,98101 +199773,Apple Airpods Headphones,1,150.0,2019-05-29 15:23:00,952 4th St, Los Angeles,CA,90001 +199774,Macbook Pro Laptop,1,1700.0,2019-05-26 20:50:00,849 Johnson St, Portland,OR,97035 +199775,Wired Headphones,1,11.99,2019-05-30 17:54:00,601 1st St, San Francisco,CA,94016 +199776,20in Monitor,1,109.99,2019-05-12 19:18:00,401 Willow St, Boston,MA,02215 +199777,Lightning Charging Cable,1,14.95,2019-05-31 00:34:00,317 11th St, New York City,NY,10001 +199778,Apple Airpods Headphones,1,150.0,2019-05-23 16:55:00,251 12th St, Atlanta,GA,30301 +199779,ThinkPad Laptop,1,999.99,2019-05-01 22:38:00,786 Lincoln St, Boston,MA,02215 +199780,Lightning Charging Cable,1,14.95,2019-05-08 15:52:00,404 Willow St, Los Angeles,CA,90001 +199781,AAA Batteries (4-pack),2,2.99,2019-05-09 13:47:00,151 Elm St, Portland,OR,97035 +199781,Apple Airpods Headphones,1,150.0,2019-05-09 13:47:00,151 Elm St, Portland,OR,97035 +199782,Bose SoundSport Headphones,1,99.99,2019-05-07 08:39:00,174 Sunset St, Atlanta,GA,30301 +199783,USB-C Charging Cable,1,11.95,2019-05-03 09:30:00,789 Chestnut St, San Francisco,CA,94016 +199784,Google Phone,1,600.0,2019-05-01 18:32:00,995 Center St, San Francisco,CA,94016 +199785,USB-C Charging Cable,1,11.95,2019-05-06 14:59:00,780 8th St, Dallas,TX,75001 +199786,AAA Batteries (4-pack),1,2.99,2019-05-01 10:17:00,190 Hickory St, Dallas,TX,75001 +199787,Lightning Charging Cable,1,14.95,2019-05-18 07:15:00,703 Washington St, Los Angeles,CA,90001 +199788,AA Batteries (4-pack),2,3.84,2019-05-26 12:30:00,153 South St, Seattle,WA,98101 +199789,20in Monitor,1,109.99,2019-05-01 10:15:00,625 13th St, Atlanta,GA,30301 +199790,USB-C Charging Cable,1,11.95,2019-05-14 11:14:00,666 Johnson St, Los Angeles,CA,90001 +199791,Apple Airpods Headphones,1,150.0,2019-05-12 17:17:00,19 Hill St, Portland,OR,97035 +199792,AA Batteries (4-pack),1,3.84,2019-05-23 17:49:00,675 Chestnut St, Seattle,WA,98101 +199793,USB-C Charging Cable,1,11.95,2019-05-06 17:26:00,831 Forest St, Dallas,TX,75001 +199794,34in Ultrawide Monitor,1,379.99,2019-05-03 00:31:00,451 Jackson St, Atlanta,GA,30301 +199795,iPhone,1,700.0,2019-05-08 20:41:00,178 Main St, Seattle,WA,98101 +199796,AAA Batteries (4-pack),1,2.99,2019-05-31 10:35:00,339 12th St, Austin,TX,73301 +199797,Lightning Charging Cable,1,14.95,2019-05-23 23:37:00,416 Meadow St, New York City,NY,10001 +199798,iPhone,1,700.0,2019-05-28 21:42:00,892 Johnson St, Los Angeles,CA,90001 +199799,Wired Headphones,1,11.99,2019-05-02 23:06:00,612 Lincoln St, Portland,OR,97035 +199800,AAA Batteries (4-pack),2,2.99,2019-05-04 20:53:00,511 11th St, Boston,MA,02215 +199801,Bose SoundSport Headphones,1,99.99,2019-05-14 10:43:00,606 Hickory St, Dallas,TX,75001 +199802,AA Batteries (4-pack),1,3.84,2019-05-24 10:13:00,579 Lake St, Seattle,WA,98101 +199803,AA Batteries (4-pack),1,3.84,2019-05-06 22:51:00,950 6th St, Boston,MA,02215 +199804,Lightning Charging Cable,1,14.95,2019-05-30 20:45:00,527 12th St, Boston,MA,02215 +199805,Bose SoundSport Headphones,1,99.99,2019-05-11 10:04:00,140 5th St, New York City,NY,10001 +199806,AA Batteries (4-pack),1,3.84,2019-05-05 12:09:00,387 Maple St, Atlanta,GA,30301 +199807,AAA Batteries (4-pack),1,2.99,2019-05-26 13:00:00,829 Ridge St, San Francisco,CA,94016 +199808,AAA Batteries (4-pack),5,2.99,2019-05-08 09:51:00,219 Lake St, Austin,TX,73301 +199809,Lightning Charging Cable,1,14.95,2019-05-12 22:36:00,180 Center St, Dallas,TX,75001 +199810,27in 4K Gaming Monitor,1,389.99,2019-05-17 10:56:00,581 Spruce St, San Francisco,CA,94016 +199811,27in 4K Gaming Monitor,1,389.99,2019-05-29 19:10:00,332 11th St, Atlanta,GA,30301 +199812,AAA Batteries (4-pack),1,2.99,2019-05-08 15:51:00,791 Jefferson St, San Francisco,CA,94016 +199813,iPhone,1,700.0,2019-05-29 17:27:00,989 2nd St, Los Angeles,CA,90001 +199814,Macbook Pro Laptop,1,1700.0,2019-05-02 20:25:00,709 North St, San Francisco,CA,94016 +199815,27in FHD Monitor,1,149.99,2019-05-15 09:45:00,817 7th St, San Francisco,CA,94016 +199816,AA Batteries (4-pack),1,3.84,2019-05-07 12:24:00,36 Walnut St, Los Angeles,CA,90001 +199817,Apple Airpods Headphones,1,150.0,2019-05-30 21:23:00,499 Maple St, Austin,TX,73301 +199818,Apple Airpods Headphones,1,150.0,2019-05-09 23:26:00,993 Willow St, New York City,NY,10001 +199819,Macbook Pro Laptop,1,1700.0,2019-05-04 12:54:00,820 North St, Dallas,TX,75001 +199820,Macbook Pro Laptop,1,1700.0,2019-05-03 20:44:00,286 4th St, San Francisco,CA,94016 +199821,34in Ultrawide Monitor,1,379.99,2019-05-18 14:10:00,721 Johnson St, Dallas,TX,75001 +199822,USB-C Charging Cable,1,11.95,2019-05-21 14:51:00,598 Pine St, Dallas,TX,75001 +199823,AA Batteries (4-pack),2,3.84,2019-05-21 07:49:00,73 Washington St, Boston,MA,02215 +199824,ThinkPad Laptop,1,999.99,2019-05-03 07:45:00,677 4th St, Dallas,TX,75001 +199825,34in Ultrawide Monitor,1,379.99,2019-05-23 22:21:00,467 5th St, Portland,ME,04101 +199826,Lightning Charging Cable,1,14.95,2019-05-13 19:19:00,123 2nd St, Austin,TX,73301 +199827,Wired Headphones,1,11.99,2019-05-19 08:51:00,258 Elm St, Austin,TX,73301 +199828,Wired Headphones,2,11.99,2019-05-17 19:29:00,575 13th St, Atlanta,GA,30301 +199829,AA Batteries (4-pack),2,3.84,2019-05-15 02:33:00,8 14th St, Seattle,WA,98101 +199830,ThinkPad Laptop,1,999.99,2019-05-02 22:23:00,436 Walnut St, San Francisco,CA,94016 +199831,34in Ultrawide Monitor,1,379.99,2019-05-05 15:58:00,310 2nd St, New York City,NY,10001 +199832,USB-C Charging Cable,1,11.95,2019-05-09 00:28:00,700 Jackson St, New York City,NY,10001 +199833,27in 4K Gaming Monitor,1,389.99,2019-05-31 12:24:00,306 West St, Boston,MA,02215 +199834,AAA Batteries (4-pack),5,2.99,2019-05-07 11:34:00,782 South St, Los Angeles,CA,90001 +199835,Wired Headphones,1,11.99,2019-05-13 16:25:00,467 12th St, Los Angeles,CA,90001 +199836,Bose SoundSport Headphones,1,99.99,2019-05-26 10:57:00,215 Sunset St, San Francisco,CA,94016 +199837,Lightning Charging Cable,1,14.95,2019-05-08 13:17:00,636 Washington St, San Francisco,CA,94016 +199838,USB-C Charging Cable,2,11.95,2019-05-19 16:06:00,929 Lincoln St, Seattle,WA,98101 +199839,USB-C Charging Cable,1,11.95,2019-05-22 19:01:00,918 1st St, San Francisco,CA,94016 +199840,AAA Batteries (4-pack),2,2.99,2019-05-10 14:11:00,596 Lakeview St, New York City,NY,10001 +199841,Wired Headphones,1,11.99,2019-05-23 18:07:00,978 Washington St, New York City,NY,10001 +199842,34in Ultrawide Monitor,1,379.99,2019-05-13 11:55:00,742 Sunset St, Boston,MA,02215 +199843,Lightning Charging Cable,1,14.95,2019-05-09 11:38:00,622 Dogwood St, San Francisco,CA,94016 +199844,20in Monitor,1,109.99,2019-05-09 12:32:00,124 1st St, New York City,NY,10001 +199845,AA Batteries (4-pack),1,3.84,2019-05-27 14:11:00,605 Jackson St, San Francisco,CA,94016 +199846,AAA Batteries (4-pack),2,2.99,2019-05-11 19:17:00,557 Lake St, San Francisco,CA,94016 +199847,AA Batteries (4-pack),1,3.84,2019-05-08 21:20:00,475 11th St, San Francisco,CA,94016 +199848,AA Batteries (4-pack),2,3.84,2019-05-15 13:21:00,205 Main St, Seattle,WA,98101 +199849,Vareebadd Phone,1,400.0,2019-05-07 13:57:00,786 West St, Seattle,WA,98101 +199849,USB-C Charging Cable,1,11.95,2019-05-07 13:57:00,786 West St, Seattle,WA,98101 +199850,ThinkPad Laptop,1,999.99,2019-05-25 21:56:00,62 Washington St, Los Angeles,CA,90001 +199851,27in 4K Gaming Monitor,1,389.99,2019-05-28 21:39:00,858 Church St, New York City,NY,10001 +199852,AAA Batteries (4-pack),1,2.99,2019-05-03 21:07:00,18 River St, San Francisco,CA,94016 +199853,Bose SoundSport Headphones,1,99.99,2019-05-27 11:14:00,932 Chestnut St, New York City,NY,10001 +199854,Apple Airpods Headphones,1,150.0,2019-05-26 19:24:00,812 2nd St, Los Angeles,CA,90001 +199855,Bose SoundSport Headphones,1,99.99,2019-05-23 10:39:00,836 Meadow St, Portland,OR,97035 +199856,Apple Airpods Headphones,1,150.0,2019-05-10 18:58:00,348 5th St, Portland,ME,04101 +199857,Lightning Charging Cable,1,14.95,2019-05-01 11:08:00,448 Lincoln St, San Francisco,CA,94016 +199858,34in Ultrawide Monitor,1,379.99,2019-05-04 13:13:00,867 13th St, Boston,MA,02215 +199859,USB-C Charging Cable,2,11.95,2019-05-03 08:43:00,315 Highland St, San Francisco,CA,94016 +199860,27in FHD Monitor,1,149.99,2019-05-17 10:12:00,870 Spruce St, Los Angeles,CA,90001 +199861,Lightning Charging Cable,1,14.95,2019-05-05 20:46:00,537 Center St, San Francisco,CA,94016 +199862,27in FHD Monitor,1,149.99,2019-05-25 20:40:00,882 Lincoln St, Los Angeles,CA,90001 +199863,Lightning Charging Cable,1,14.95,2019-05-10 10:35:00,219 Walnut St, San Francisco,CA,94016 +199864,iPhone,1,700.0,2019-05-03 11:35:00,821 Dogwood St, Los Angeles,CA,90001 +199865,AAA Batteries (4-pack),1,2.99,2019-05-13 21:03:00,197 5th St, Los Angeles,CA,90001 +199866,Apple Airpods Headphones,1,150.0,2019-05-02 22:42:00,56 Center St, San Francisco,CA,94016 +199867,AAA Batteries (4-pack),2,2.99,2019-05-25 21:49:00,607 9th St, Los Angeles,CA,90001 +199868,34in Ultrawide Monitor,1,379.99,2019-05-12 23:18:00,572 8th St, Los Angeles,CA,90001 +199869,Apple Airpods Headphones,1,150.0,2019-05-01 21:19:00,681 Jackson St, New York City,NY,10001 +199870,Wired Headphones,1,11.99,2019-05-09 09:37:00,16 14th St, Los Angeles,CA,90001 +199871,LG Washing Machine,1,600.0,2019-05-10 15:11:00,721 Hickory St, Portland,OR,97035 +199872,Wired Headphones,1,11.99,2019-05-07 22:26:00,771 13th St, Los Angeles,CA,90001 +199873,iPhone,1,700.0,2019-05-20 13:18:00,439 Highland St, San Francisco,CA,94016 +199874,AA Batteries (4-pack),1,3.84,2019-05-28 20:02:00,217 Cedar St, Portland,OR,97035 +199875,Lightning Charging Cable,1,14.95,2019-05-19 12:13:00,593 Lakeview St, Dallas,TX,75001 +199876,Lightning Charging Cable,1,14.95,2019-05-18 18:16:00,673 12th St, San Francisco,CA,94016 +199877,20in Monitor,1,109.99,2019-05-08 20:45:00,719 Park St, New York City,NY,10001 +199878,Google Phone,1,600.0,2019-05-10 23:42:00,996 2nd St, Dallas,TX,75001 +199878,Wired Headphones,1,11.99,2019-05-10 23:42:00,996 2nd St, Dallas,TX,75001 +199879,AAA Batteries (4-pack),1,2.99,2019-05-20 10:38:00,824 Park St, Los Angeles,CA,90001 +199880,Lightning Charging Cable,1,14.95,2019-05-25 11:25:00,743 9th St, Austin,TX,73301 +199881,ThinkPad Laptop,1,999.99,2019-05-24 19:10:00,429 Forest St, Boston,MA,02215 +199882,20in Monitor,1,109.99,2019-05-25 09:07:00,190 Park St, San Francisco,CA,94016 +199883,AA Batteries (4-pack),1,3.84,2019-05-24 08:57:00,761 Jackson St, Atlanta,GA,30301 +199884,AA Batteries (4-pack),1,3.84,2019-05-23 18:29:00,96 Wilson St, Los Angeles,CA,90001 +199885,27in 4K Gaming Monitor,1,389.99,2019-05-02 11:04:00,297 Lincoln St, New York City,NY,10001 +199886,Lightning Charging Cable,1,14.95,2019-05-02 18:42:00,452 Church St, Dallas,TX,75001 +199887,AA Batteries (4-pack),1,3.84,2019-05-17 08:53:00,185 Church St, New York City,NY,10001 +199888,Lightning Charging Cable,1,14.95,2019-05-09 08:35:00,491 Highland St, San Francisco,CA,94016 +199889,34in Ultrawide Monitor,1,379.99,2019-05-15 07:53:00,664 11th St, Austin,TX,73301 +199890,USB-C Charging Cable,1,11.95,2019-05-31 18:28:00,783 Adams St, Boston,MA,02215 +199891,34in Ultrawide Monitor,1,379.99,2019-05-30 17:39:00,252 Adams St, Boston,MA,02215 +199892,LG Dryer,1,600.0,2019-05-28 17:33:00,125 14th St, Los Angeles,CA,90001 +199893,AAA Batteries (4-pack),1,2.99,2019-05-23 14:50:00,716 5th St, San Francisco,CA,94016 +199894,Wired Headphones,1,11.99,2019-05-05 23:08:00,428 14th St, Seattle,WA,98101 +199895,iPhone,1,700.0,2019-05-29 16:16:00,333 West St, San Francisco,CA,94016 +199896,Bose SoundSport Headphones,1,99.99,2019-05-15 16:09:00,734 Chestnut St, Dallas,TX,75001 +199897,Wired Headphones,1,11.99,2019-05-13 20:32:00,455 Washington St, San Francisco,CA,94016 +199898,ThinkPad Laptop,1,999.99,2019-05-08 16:05:00,249 12th St, Austin,TX,73301 +199899,Bose SoundSport Headphones,1,99.99,2019-05-03 16:11:00,395 Forest St, Austin,TX,73301 +199899,Flatscreen TV,1,300.0,2019-05-03 16:11:00,395 Forest St, Austin,TX,73301 +199900,27in 4K Gaming Monitor,1,389.99,2019-05-02 08:25:00,447 Ridge St, Dallas,TX,75001 +199901,Google Phone,1,600.0,2019-05-30 00:01:00,384 Maple St, Los Angeles,CA,90001 +199902,AA Batteries (4-pack),1,3.84,2019-05-13 14:56:00,721 Dogwood St, Los Angeles,CA,90001 +199903,Google Phone,1,600.0,2019-05-22 16:49:00,813 Hill St, New York City,NY,10001 +199904,AA Batteries (4-pack),1,3.84,2019-05-08 12:07:00,61 Cedar St, Atlanta,GA,30301 +199905,20in Monitor,1,109.99,2019-05-09 07:12:00,606 4th St, New York City,NY,10001 +199906,AA Batteries (4-pack),2,3.84,2019-05-16 20:57:00,60 7th St, New York City,NY,10001 +199907,Bose SoundSport Headphones,1,99.99,2019-05-20 17:44:00,252 Walnut St, Boston,MA,02215 +199908,Wired Headphones,1,11.99,2019-05-30 17:33:00,719 Church St, Dallas,TX,75001 +199909,AAA Batteries (4-pack),1,2.99,2019-05-09 10:59:00,322 Hill St, Boston,MA,02215 +199910,Wired Headphones,1,11.99,2019-05-14 07:45:00,758 Highland St, New York City,NY,10001 +199911,Google Phone,1,600.0,2019-05-29 19:28:00,650 Cedar St, Boston,MA,02215 +199912,Wired Headphones,1,11.99,2019-05-09 20:57:00,948 Main St, Seattle,WA,98101 +199913,AA Batteries (4-pack),1,3.84,2019-05-12 15:37:00,543 Chestnut St, Los Angeles,CA,90001 +199914,Lightning Charging Cable,1,14.95,2019-05-30 17:39:00,753 12th St, New York City,NY,10001 +199915,AAA Batteries (4-pack),1,2.99,2019-05-21 14:34:00,318 Willow St, New York City,NY,10001 +199916,Bose SoundSport Headphones,1,99.99,2019-05-20 12:34:00,350 Dogwood St, Seattle,WA,98101 +199917,34in Ultrawide Monitor,1,379.99,2019-05-10 16:01:00,230 10th St, New York City,NY,10001 +199918,AAA Batteries (4-pack),1,2.99,2019-05-30 11:18:00,712 Maple St, New York City,NY,10001 +199919,USB-C Charging Cable,1,11.95,2019-05-27 19:29:00,405 Ridge St, Portland,OR,97035 +199920,Wired Headphones,1,11.99,2019-05-12 22:34:00,965 Pine St, Los Angeles,CA,90001 +199921,Lightning Charging Cable,1,14.95,2019-05-03 08:46:00,260 West St, Los Angeles,CA,90001 +199922,AA Batteries (4-pack),1,3.84,2019-05-31 10:06:00,521 Cherry St, San Francisco,CA,94016 +199923,AAA Batteries (4-pack),1,2.99,2019-05-18 10:44:00,350 Maple St, Los Angeles,CA,90001 +199924,iPhone,1,700.0,2019-05-25 13:41:00,498 9th St, San Francisco,CA,94016 +199924,Apple Airpods Headphones,1,150.0,2019-05-25 13:41:00,498 9th St, San Francisco,CA,94016 +199925,Bose SoundSport Headphones,1,99.99,2019-05-19 13:59:00,643 Forest St, New York City,NY,10001 +199926,27in FHD Monitor,1,149.99,2019-05-08 21:07:00,116 Pine St, San Francisco,CA,94016 +199927,USB-C Charging Cable,1,11.95,2019-05-18 09:45:00,481 Washington St, Los Angeles,CA,90001 +199928,Wired Headphones,1,11.99,2019-05-17 13:30:00,861 Highland St, Austin,TX,73301 +199929,Google Phone,1,600.0,2019-05-02 15:34:00,61 2nd St, San Francisco,CA,94016 +199930,Macbook Pro Laptop,1,1700.0,2019-05-16 06:30:00,916 Dogwood St, Dallas,TX,75001 +199931,USB-C Charging Cable,1,11.95,2019-05-02 12:36:00,23 2nd St, San Francisco,CA,94016 +199932,AAA Batteries (4-pack),1,2.99,2019-05-31 17:24:00,140 Ridge St, Boston,MA,02215 +199933,AA Batteries (4-pack),1,3.84,2019-05-10 16:47:00,773 River St, New York City,NY,10001 +199934,AAA Batteries (4-pack),1,2.99,2019-05-09 23:01:00,676 Ridge St, Dallas,TX,75001 +199935,Lightning Charging Cable,1,14.95,2019-05-05 18:21:00,3 Forest St, Atlanta,GA,30301 +199936,AAA Batteries (4-pack),4,2.99,2019-05-09 08:51:00,215 Elm St, Dallas,TX,75001 +199937,USB-C Charging Cable,1,11.95,2019-05-13 17:00:00,318 Lincoln St, Los Angeles,CA,90001 +199938,Apple Airpods Headphones,1,150.0,2019-05-04 19:28:00,657 Ridge St, New York City,NY,10001 +199939,20in Monitor,1,109.99,2019-05-15 10:36:00,131 Forest St, Boston,MA,02215 +199940,Lightning Charging Cable,1,14.95,2019-05-21 18:24:00,205 Ridge St, Los Angeles,CA,90001 +199941,AAA Batteries (4-pack),5,2.99,2019-05-28 23:08:00,622 Jackson St, Boston,MA,02215 +199942,Lightning Charging Cable,1,14.95,2019-05-27 14:08:00,35 Lake St, Boston,MA,02215 +199943,Apple Airpods Headphones,1,150.0,2019-05-03 17:06:00,713 14th St, Los Angeles,CA,90001 +199944,Google Phone,1,600.0,2019-05-19 15:58:00,862 Cherry St, Atlanta,GA,30301 +199945,iPhone,1,700.0,2019-05-11 07:47:00,600 Jackson St, Atlanta,GA,30301 +199946,20in Monitor,1,109.99,2019-05-16 10:03:00,132 Meadow St, San Francisco,CA,94016 +199947,USB-C Charging Cable,2,11.95,2019-05-24 18:52:00,881 Cedar St, Los Angeles,CA,90001 +199948,AAA Batteries (4-pack),1,2.99,2019-05-09 16:02:00,892 2nd St, Los Angeles,CA,90001 +199949,Apple Airpods Headphones,1,150.0,2019-05-07 13:40:00,944 10th St, New York City,NY,10001 +199950,Bose SoundSport Headphones,1,99.99,2019-05-08 18:46:00,444 Willow St, Boston,MA,02215 +199951,iPhone,1,700.0,2019-05-23 18:44:00,922 2nd St, San Francisco,CA,94016 +199951,Wired Headphones,1,11.99,2019-05-23 18:44:00,922 2nd St, San Francisco,CA,94016 +199952,27in FHD Monitor,1,149.99,2019-05-23 09:12:00,479 Willow St, San Francisco,CA,94016 +199953,Lightning Charging Cable,1,14.95,2019-05-05 10:50:00,436 Cedar St, Seattle,WA,98101 +199954,Wired Headphones,1,11.99,2019-05-01 06:51:00,424 North St, Los Angeles,CA,90001 +199955,27in 4K Gaming Monitor,1,389.99,2019-05-03 16:33:00,65 9th St, Seattle,WA,98101 +199956,iPhone,1,700.0,2019-05-18 18:09:00,472 Cedar St, Boston,MA,02215 +199957,20in Monitor,1,109.99,2019-05-05 14:08:00,793 1st St, San Francisco,CA,94016 +199958,Bose SoundSport Headphones,1,99.99,2019-05-19 20:16:00,361 River St, San Francisco,CA,94016 +199959,ThinkPad Laptop,1,999.99,2019-05-17 10:19:00,177 Pine St, San Francisco,CA,94016 +199960,USB-C Charging Cable,1,11.95,2019-05-29 09:38:00,770 Ridge St, San Francisco,CA,94016 +199961,USB-C Charging Cable,2,11.95,2019-05-15 00:38:00,505 5th St, Los Angeles,CA,90001 +199962,27in FHD Monitor,1,149.99,2019-05-16 10:28:00,70 5th St, Boston,MA,02215 +199963,27in FHD Monitor,1,149.99,2019-05-05 14:18:00,863 Church St, Los Angeles,CA,90001 +199964,27in 4K Gaming Monitor,1,389.99,2019-05-10 12:17:00,693 North St, San Francisco,CA,94016 +199965,Macbook Pro Laptop,1,1700.0,2019-05-29 17:14:00,241 Lake St, Los Angeles,CA,90001 +199966,34in Ultrawide Monitor,1,379.99,2019-05-01 13:32:00,350 Lincoln St, New York City,NY,10001 +199967,AA Batteries (4-pack),3,3.84,2019-05-24 12:05:00,603 Cedar St, Austin,TX,73301 +199968,Flatscreen TV,1,300.0,2019-05-21 17:58:00,564 Lakeview St, Dallas,TX,75001 +199969,Lightning Charging Cable,1,14.95,2019-05-01 16:46:00,415 12th St, Boston,MA,02215 +199970,USB-C Charging Cable,1,11.95,2019-05-17 18:10:00,125 Center St, Atlanta,GA,30301 +199971,Apple Airpods Headphones,1,150.0,2019-05-10 23:15:00,61 South St, Boston,MA,02215 +199972,Flatscreen TV,1,300.0,2019-05-21 22:17:00,190 South St, Portland,ME,04101 +199973,Apple Airpods Headphones,1,150.0,2019-05-20 14:09:00,485 Chestnut St, Atlanta,GA,30301 +199974,Wired Headphones,1,11.99,2019-05-29 17:27:00,140 Highland St, Boston,MA,02215 +199975,Wired Headphones,1,11.99,2019-05-15 05:43:00,161 10th St, San Francisco,CA,94016 +199976,LG Dryer,1,600.0,2019-05-07 22:58:00,214 Park St, Atlanta,GA,30301 +199977,Macbook Pro Laptop,1,1700.0,2019-05-05 20:34:00,741 8th St, San Francisco,CA,94016 +199978,27in FHD Monitor,1,149.99,2019-05-20 18:54:00,532 Madison St, New York City,NY,10001 +199979,Wired Headphones,1,11.99,2019-05-13 14:39:00,340 Meadow St, New York City,NY,10001 +199980,USB-C Charging Cable,1,11.95,2019-05-01 23:53:00,759 Center St, Dallas,TX,75001 +199981,iPhone,1,700.0,2019-05-08 11:46:00,225 Lake St, San Francisco,CA,94016 +199982,Google Phone,1,600.0,2019-05-08 19:46:00,566 7th St, New York City,NY,10001 +199982,USB-C Charging Cable,1,11.95,2019-05-08 19:46:00,566 7th St, New York City,NY,10001 +199983,Wired Headphones,1,11.99,2019-05-16 11:01:00,636 Elm St, Boston,MA,02215 +199984,Lightning Charging Cable,1,14.95,2019-05-29 19:49:00,119 North St, New York City,NY,10001 +199985,iPhone,1,700.0,2019-05-17 12:30:00,107 Meadow St, Los Angeles,CA,90001 +199986,Apple Airpods Headphones,1,150.0,2019-05-17 20:31:00,987 Cedar St, New York City,NY,10001 +199987,Lightning Charging Cable,1,14.95,2019-05-07 02:40:00,738 Johnson St, Atlanta,GA,30301 +199988,Wired Headphones,1,11.99,2019-05-22 16:56:00,81 Walnut St, Portland,OR,97035 +199989,Lightning Charging Cable,1,14.95,2019-05-12 02:34:00,615 Madison St, Seattle,WA,98101 +199990,AAA Batteries (4-pack),2,2.99,2019-05-24 08:56:00,519 Highland St, San Francisco,CA,94016 +199991,Lightning Charging Cable,1,14.95,2019-05-01 12:24:00,780 Johnson St, Austin,TX,73301 +199992,Wired Headphones,1,11.99,2019-05-01 12:52:00,658 Ridge St, Dallas,TX,75001 +199993,USB-C Charging Cable,1,11.95,2019-05-13 12:57:00,670 Lincoln St, New York City,NY,10001 +199994,Google Phone,1,600.0,2019-05-05 12:27:00,383 14th St, New York City,NY,10001 +199994,USB-C Charging Cable,1,11.95,2019-05-05 12:27:00,383 14th St, New York City,NY,10001 +199995,USB-C Charging Cable,1,11.95,2019-05-15 11:22:00,230 Center St, Los Angeles,CA,90001 +199996,Google Phone,1,600.0,2019-05-26 15:16:00,615 Highland St, San Francisco,CA,94016 +199997,Google Phone,1,600.0,2019-05-10 17:18:00,40 Madison St, Austin,TX,73301 +199998,AA Batteries (4-pack),1,3.84,2019-05-06 15:40:00,682 Ridge St, Portland,ME,04101 +199999,AA Batteries (4-pack),2,3.84,2019-05-08 17:47:00,339 North St, Portland,ME,04101 +200000,USB-C Charging Cable,1,11.95,2019-05-31 21:24:00,547 Jackson St, San Francisco,CA,94016 +200001,34in Ultrawide Monitor,1,379.99,2019-05-17 12:50:00,210 5th St, Atlanta,GA,30301 +200002,Vareebadd Phone,1,400.0,2019-05-25 19:58:00,71 Center St, Atlanta,GA,30301 +200003,Bose SoundSport Headphones,1,99.99,2019-05-17 20:14:00,328 8th St, San Francisco,CA,94016 +200004,iPhone,1,700.0,2019-05-02 18:04:00,74 River St, Los Angeles,CA,90001 +200005,USB-C Charging Cable,1,11.95,2019-05-29 20:39:00,461 6th St, Dallas,TX,75001 +200006,AA Batteries (4-pack),1,3.84,2019-05-10 23:23:00,629 14th St, Los Angeles,CA,90001 +200007,AAA Batteries (4-pack),1,2.99,2019-05-22 02:17:00,511 Lakeview St, Los Angeles,CA,90001 +200008,Lightning Charging Cable,1,14.95,2019-05-23 19:53:00,340 Johnson St, San Francisco,CA,94016 +200009,Macbook Pro Laptop,1,1700.0,2019-05-15 01:34:00,925 Madison St, Atlanta,GA,30301 +200010,Wired Headphones,1,11.99,2019-05-15 17:31:00,577 14th St, Dallas,TX,75001 +200011,Lightning Charging Cable,1,14.95,2019-05-18 21:02:00,693 Hill St, New York City,NY,10001 +200012,Wired Headphones,1,11.99,2019-05-27 12:56:00,739 Jackson St, San Francisco,CA,94016 +200013,AA Batteries (4-pack),1,3.84,2019-05-15 11:05:00,644 Highland St, San Francisco,CA,94016 +200014,USB-C Charging Cable,1,11.95,2019-05-04 18:25:00,17 Willow St, Atlanta,GA,30301 +200015,USB-C Charging Cable,1,11.95,2019-05-01 15:19:00,23 Johnson St, Atlanta,GA,30301 +200016,27in FHD Monitor,1,149.99,2019-05-17 19:35:00,437 1st St, Boston,MA,02215 +200017,AA Batteries (4-pack),1,3.84,2019-05-23 15:15:00,267 North St, Austin,TX,73301 +200018,AA Batteries (4-pack),1,3.84,2019-05-03 22:34:00,699 Main St, San Francisco,CA,94016 +200019,27in FHD Monitor,1,149.99,2019-05-16 16:17:00,987 Jefferson St, San Francisco,CA,94016 +200020,Lightning Charging Cable,1,14.95,2019-05-16 09:12:00,386 Spruce St, Seattle,WA,98101 +200021,Macbook Pro Laptop,1,1700.0,2019-05-24 20:54:00,333 Chestnut St, Boston,MA,02215 +200022,AAA Batteries (4-pack),2,2.99,2019-05-22 22:44:00,611 5th St, San Francisco,CA,94016 +200023,USB-C Charging Cable,1,11.95,2019-05-07 12:19:00,456 Chestnut St, Los Angeles,CA,90001 +200024,Wired Headphones,1,11.99,2019-05-23 18:46:00,222 Center St, Boston,MA,02215 +200025,Apple Airpods Headphones,1,150.0,2019-05-19 15:24:00,713 Cedar St, San Francisco,CA,94016 +200026,Bose SoundSport Headphones,1,99.99,2019-05-11 13:28:00,76 13th St, New York City,NY,10001 +200027,AA Batteries (4-pack),1,3.84,2019-05-28 12:02:00,868 13th St, Boston,MA,02215 +200028,USB-C Charging Cable,1,11.95,2019-05-31 13:18:00,591 Cedar St, New York City,NY,10001 +200029,Lightning Charging Cable,1,14.95,2019-05-11 10:10:00,702 9th St, Seattle,WA,98101 +200030,27in 4K Gaming Monitor,1,389.99,2019-05-09 16:08:00,218 Ridge St, San Francisco,CA,94016 +200031,Apple Airpods Headphones,1,150.0,2019-05-04 15:57:00,882 Chestnut St, Portland,OR,97035 +200032,Lightning Charging Cable,1,14.95,2019-05-16 11:19:00,252 13th St, Los Angeles,CA,90001 +200033,iPhone,1,700.0,2019-05-11 23:03:00,796 Hill St, Portland,OR,97035 +200034,AA Batteries (4-pack),1,3.84,2019-05-15 14:33:00,195 Forest St, Portland,OR,97035 +200035,AA Batteries (4-pack),4,3.84,2019-05-26 14:50:00,413 1st St, San Francisco,CA,94016 +200036,AAA Batteries (4-pack),2,2.99,2019-05-11 15:13:00,201 8th St, New York City,NY,10001 +200037,20in Monitor,1,109.99,2019-05-01 21:47:00,524 Church St, San Francisco,CA,94016 +200038,AA Batteries (4-pack),1,3.84,2019-05-12 21:18:00,947 West St, Dallas,TX,75001 +200039,Flatscreen TV,1,300.0,2019-05-24 11:33:00,918 12th St, Atlanta,GA,30301 +200040,Apple Airpods Headphones,1,150.0,2019-05-04 22:24:00,325 Madison St, Austin,TX,73301 +200041,USB-C Charging Cable,1,11.95,2019-05-28 23:19:00,563 Johnson St, Los Angeles,CA,90001 +200042,ThinkPad Laptop,1,999.99,2019-05-25 13:04:00,154 Hill St, Austin,TX,73301 +200043,USB-C Charging Cable,1,11.95,2019-05-29 14:07:00,512 Jackson St, Los Angeles,CA,90001 +200044,Lightning Charging Cable,2,14.95,2019-05-18 15:29:00,831 Main St, San Francisco,CA,94016 +200045,Wired Headphones,1,11.99,2019-05-12 18:59:00,72 2nd St, Dallas,TX,75001 +200046,27in FHD Monitor,1,149.99,2019-05-16 14:49:00,303 Washington St, New York City,NY,10001 +200047,iPhone,1,700.0,2019-05-22 18:00:00,272 Meadow St, San Francisco,CA,94016 +200048,AA Batteries (4-pack),2,3.84,2019-05-26 21:50:00,946 Willow St, Los Angeles,CA,90001 +200049,AAA Batteries (4-pack),1,2.99,2019-05-25 17:35:00,587 Dogwood St, Portland,OR,97035 +200050,27in FHD Monitor,1,149.99,2019-05-29 15:05:00,467 Maple St, Los Angeles,CA,90001 +200051,Wired Headphones,1,11.99,2019-05-15 11:31:00,446 Hickory St, Boston,MA,02215 +200052,Lightning Charging Cable,1,14.95,2019-05-02 08:52:00,692 Elm St, Seattle,WA,98101 +200053,Apple Airpods Headphones,1,150.0,2019-05-16 23:10:00,559 10th St, San Francisco,CA,94016 +200054,Flatscreen TV,1,300.0,2019-05-02 14:24:00,426 6th St, Los Angeles,CA,90001 +200055,AA Batteries (4-pack),1,3.84,2019-05-19 16:14:00,220 Park St, Portland,OR,97035 +200056,USB-C Charging Cable,1,11.95,2019-05-22 15:50:00,542 8th St, Seattle,WA,98101 +200057,Apple Airpods Headphones,1,150.0,2019-05-23 21:42:00,465 2nd St, Boston,MA,02215 +200058,Bose SoundSport Headphones,1,99.99,2019-05-02 18:26:00,414 Cherry St, Atlanta,GA,30301 +200059,Macbook Pro Laptop,1,1700.0,2019-05-19 09:53:00,746 Adams St, Los Angeles,CA,90001 +200060,USB-C Charging Cable,1,11.95,2019-05-07 11:14:00,616 Jefferson St, Los Angeles,CA,90001 +200061,Wired Headphones,1,11.99,2019-05-03 15:06:00,802 12th St, Atlanta,GA,30301 +200062,27in 4K Gaming Monitor,1,389.99,2019-05-09 10:05:00,644 Lincoln St, Austin,TX,73301 +200063,Bose SoundSport Headphones,1,99.99,2019-05-11 09:36:00,708 Dogwood St, Atlanta,GA,30301 +200064,AA Batteries (4-pack),1,3.84,2019-05-27 21:44:00,505 Lakeview St, San Francisco,CA,94016 +200065,Lightning Charging Cable,1,14.95,2019-05-21 19:43:00,585 Park St, Portland,OR,97035 +200066,Wired Headphones,2,11.99,2019-05-04 16:10:00,249 Hickory St, Los Angeles,CA,90001 +200067,Wired Headphones,1,11.99,2019-05-07 01:09:00,416 Lakeview St, San Francisco,CA,94016 +200068,Lightning Charging Cable,1,14.95,2019-05-08 18:05:00,167 10th St, Los Angeles,CA,90001 +200069,USB-C Charging Cable,1,11.95,2019-05-12 14:53:00,425 Dogwood St, Portland,OR,97035 +200070,Lightning Charging Cable,1,14.95,2019-05-14 10:39:00,728 10th St, Los Angeles,CA,90001 +200071,AA Batteries (4-pack),1,3.84,2019-05-21 16:10:00,667 Center St, Austin,TX,73301 +200071,AAA Batteries (4-pack),2,2.99,2019-05-21 16:10:00,667 Center St, Austin,TX,73301 +200072,AA Batteries (4-pack),1,3.84,2019-05-20 12:01:00,897 Washington St, Boston,MA,02215 +200073,LG Washing Machine,1,600.0,2019-05-03 19:03:00,794 13th St, New York City,NY,10001 +200074,Bose SoundSport Headphones,1,99.99,2019-05-17 15:29:00,117 Main St, Los Angeles,CA,90001 +200075,USB-C Charging Cable,2,11.95,2019-05-24 13:34:00,810 Dogwood St, Dallas,TX,75001 +200076,20in Monitor,1,109.99,2019-05-31 15:03:00,104 Walnut St, Atlanta,GA,30301 +200077,USB-C Charging Cable,1,11.95,2019-05-02 23:16:00,979 9th St, Seattle,WA,98101 +200078,USB-C Charging Cable,1,11.95,2019-05-14 18:21:00,807 Sunset St, Boston,MA,02215 +200079,Bose SoundSport Headphones,1,99.99,2019-05-11 10:57:00,907 North St, Dallas,TX,75001 +200079,AA Batteries (4-pack),1,3.84,2019-05-11 10:57:00,907 North St, Dallas,TX,75001 +200080,Lightning Charging Cable,1,14.95,2019-05-23 19:53:00,654 12th St, Seattle,WA,98101 +200081,Lightning Charging Cable,1,14.95,2019-05-31 19:47:00,692 Walnut St, Atlanta,GA,30301 +200082,Lightning Charging Cable,1,14.95,2019-05-05 15:59:00,558 5th St, Los Angeles,CA,90001 +200083,27in FHD Monitor,1,149.99,2019-05-05 14:56:00,579 5th St, Boston,MA,02215 +200084,Apple Airpods Headphones,1,150.0,2019-05-27 16:07:00,503 12th St, New York City,NY,10001 +200085,USB-C Charging Cable,1,11.95,2019-05-25 22:34:00,321 Lake St, San Francisco,CA,94016 +200086,Lightning Charging Cable,1,14.95,2019-05-05 13:33:00,7 7th St, Los Angeles,CA,90001 +200087,AAA Batteries (4-pack),1,2.99,2019-05-23 20:34:00,272 West St, New York City,NY,10001 +200088,iPhone,1,700.0,2019-05-16 16:14:00,48 Highland St, New York City,NY,10001 +200089,Wired Headphones,1,11.99,2019-05-09 09:38:00,546 Church St, Seattle,WA,98101 +200090,Wired Headphones,1,11.99,2019-05-18 07:28:00,256 Washington St, San Francisco,CA,94016 +200091,AAA Batteries (4-pack),1,2.99,2019-05-05 18:52:00,5 9th St, San Francisco,CA,94016 +200092,Apple Airpods Headphones,1,150.0,2019-05-31 18:58:00,398 Hill St, Dallas,TX,75001 +200093,Lightning Charging Cable,1,14.95,2019-05-24 09:52:00,249 Jackson St, San Francisco,CA,94016 +200094,Lightning Charging Cable,1,14.95,2019-05-02 19:44:00,71 11th St, San Francisco,CA,94016 +200095,Bose SoundSport Headphones,1,99.99,2019-05-16 16:40:00,262 5th St, Seattle,WA,98101 +200096,AA Batteries (4-pack),1,3.84,2019-05-05 22:13:00,721 Main St, Seattle,WA,98101 +200097,Bose SoundSport Headphones,1,99.99,2019-05-18 14:10:00,798 Highland St, Dallas,TX,75001 +200098,Lightning Charging Cable,1,14.95,2019-05-02 08:43:00,691 Elm St, San Francisco,CA,94016 +200099,AA Batteries (4-pack),1,3.84,2019-05-08 16:51:00,570 Sunset St, Los Angeles,CA,90001 +200100,Lightning Charging Cable,1,14.95,2019-05-15 10:34:00,950 River St, Portland,OR,97035 +200101,AA Batteries (4-pack),1,3.84,2019-05-22 08:07:00,902 Sunset St, New York City,NY,10001 +200102,27in 4K Gaming Monitor,1,389.99,2019-05-06 13:12:00,758 Madison St, Boston,MA,02215 +200103,Google Phone,1,600.0,2019-05-22 21:34:00,571 Meadow St, Dallas,TX,75001 +200103,Wired Headphones,1,11.99,2019-05-22 21:34:00,571 Meadow St, Dallas,TX,75001 +200104,Lightning Charging Cable,1,14.95,2019-05-21 09:48:00,360 Johnson St, Portland,OR,97035 +200105,Wired Headphones,1,11.99,2019-05-28 00:32:00,868 River St, Portland,OR,97035 +200106,Apple Airpods Headphones,1,150.0,2019-05-07 22:39:00,275 Wilson St, Los Angeles,CA,90001 +200107,Lightning Charging Cable,1,14.95,2019-05-02 13:48:00,335 8th St, Boston,MA,02215 +200108,Wired Headphones,1,11.99,2019-05-30 11:20:00,450 Main St, Portland,OR,97035 +200109,Lightning Charging Cable,2,14.95,2019-05-08 12:51:00,30 Jefferson St, Dallas,TX,75001 +200110,Vareebadd Phone,1,400.0,2019-05-15 18:34:00,723 Main St, San Francisco,CA,94016 +200111,Apple Airpods Headphones,1,150.0,2019-05-29 19:48:00,424 West St, Los Angeles,CA,90001 +200112,34in Ultrawide Monitor,1,379.99,2019-05-10 12:31:00,798 Jefferson St, Seattle,WA,98101 +200113,AA Batteries (4-pack),1,3.84,2019-05-21 20:30:00,614 Church St, Los Angeles,CA,90001 +200114,AAA Batteries (4-pack),1,2.99,2019-05-02 01:08:00,857 Main St, Los Angeles,CA,90001 +200115,Wired Headphones,1,11.99,2019-05-31 23:41:00,709 6th St, Atlanta,GA,30301 +200116,USB-C Charging Cable,1,11.95,2019-05-02 23:59:00,793 Church St, San Francisco,CA,94016 +200117,Wired Headphones,2,11.99,2019-05-16 20:40:00,380 Johnson St, San Francisco,CA,94016 +200118,Lightning Charging Cable,1,14.95,2019-05-28 16:37:00,875 Dogwood St, Los Angeles,CA,90001 +200119,USB-C Charging Cable,1,11.95,2019-05-01 16:50:00,451 Washington St, Boston,MA,02215 +200120,Bose SoundSport Headphones,1,99.99,2019-05-06 10:02:00,825 Lake St, Boston,MA,02215 +200121,AA Batteries (4-pack),1,3.84,2019-05-07 00:25:00,284 North St, Seattle,WA,98101 +200122,LG Dryer,1,600.0,2019-05-07 18:16:00,293 Maple St, San Francisco,CA,94016 +200123,Flatscreen TV,1,300.0,2019-05-08 12:48:00,413 Main St, Dallas,TX,75001 +200124,Lightning Charging Cable,1,14.95,2019-05-26 16:30:00,641 Cherry St, Austin,TX,73301 +200125,AA Batteries (4-pack),1,3.84,2019-05-06 16:58:00,560 Hickory St, New York City,NY,10001 +200126,Flatscreen TV,1,300.0,2019-05-27 08:34:00,884 Hill St, Atlanta,GA,30301 +200127,AA Batteries (4-pack),1,3.84,2019-05-07 10:53:00,718 River St, Boston,MA,02215 +200128,Lightning Charging Cable,2,14.95,2019-05-27 12:28:00,647 Walnut St, Dallas,TX,75001 +200129,USB-C Charging Cable,1,11.95,2019-05-20 18:17:00,891 Lake St, Los Angeles,CA,90001 +200130,Lightning Charging Cable,1,14.95,2019-05-16 14:14:00,434 9th St, Portland,OR,97035 +200131,AA Batteries (4-pack),1,3.84,2019-05-07 18:23:00,357 8th St, San Francisco,CA,94016 +200132,20in Monitor,1,109.99,2019-05-02 12:28:00,422 10th St, Portland,OR,97035 +200133,AA Batteries (4-pack),1,3.84,2019-05-22 09:05:00,39 Willow St, New York City,NY,10001 +200134,AAA Batteries (4-pack),2,2.99,2019-05-13 18:24:00,79 Ridge St, Boston,MA,02215 +200135,34in Ultrawide Monitor,1,379.99,2019-05-29 16:05:00,458 Walnut St, New York City,NY,10001 +200136,Wired Headphones,1,11.99,2019-05-07 09:33:00,912 12th St, San Francisco,CA,94016 +200137,USB-C Charging Cable,1,11.95,2019-05-23 18:51:00,998 Hickory St, San Francisco,CA,94016 +200138,AAA Batteries (4-pack),2,2.99,2019-05-01 12:46:00,856 Jackson St, Los Angeles,CA,90001 +200139,20in Monitor,1,109.99,2019-05-08 22:48:00,360 5th St, San Francisco,CA,94016 +200140,AAA Batteries (4-pack),1,2.99,2019-05-14 11:08:00,499 Johnson St, Seattle,WA,98101 +200141,Vareebadd Phone,1,400.0,2019-05-27 16:47:00,44 10th St, New York City,NY,10001 +200142,AAA Batteries (4-pack),3,2.99,2019-05-04 11:24:00,54 Washington St, Atlanta,GA,30301 +200143,Wired Headphones,1,11.99,2019-05-06 23:16:00,191 Lake St, New York City,NY,10001 +200144,20in Monitor,1,109.99,2019-05-06 16:05:00,469 Walnut St, Portland,ME,04101 +200144,USB-C Charging Cable,1,11.95,2019-05-06 16:05:00,469 Walnut St, Portland,ME,04101 +200145,Flatscreen TV,1,300.0,2019-05-17 14:59:00,135 Pine St, Boston,MA,02215 +200146,AAA Batteries (4-pack),2,2.99,2019-05-12 23:10:00,178 Lake St, Boston,MA,02215 +200147,AA Batteries (4-pack),1,3.84,2019-05-15 19:18:00,510 Madison St, Los Angeles,CA,90001 +200148,USB-C Charging Cable,1,11.95,2019-05-22 05:37:00,956 7th St, Dallas,TX,75001 +200149,Wired Headphones,1,11.99,2019-05-05 10:57:00,86 Park St, Dallas,TX,75001 +200150,Bose SoundSport Headphones,1,99.99,2019-05-28 12:35:00,850 Hill St, Seattle,WA,98101 +200151,Wired Headphones,1,11.99,2019-05-02 16:18:00,808 2nd St, New York City,NY,10001 +200152,27in 4K Gaming Monitor,1,389.99,2019-05-05 06:24:00,100 11th St, San Francisco,CA,94016 +200153,AAA Batteries (4-pack),4,2.99,2019-05-24 12:41:00,96 Lakeview St, Portland,OR,97035 +200154,Lightning Charging Cable,1,14.95,2019-05-06 22:57:00,249 South St, San Francisco,CA,94016 +200155,Macbook Pro Laptop,1,1700.0,2019-05-14 14:33:00,547 Jackson St, Los Angeles,CA,90001 +200156,USB-C Charging Cable,1,11.95,2019-05-16 13:04:00,252 Maple St, Portland,OR,97035 +200157,27in FHD Monitor,1,149.99,2019-05-18 11:09:00,668 13th St, Portland,OR,97035 +200158,iPhone,1,700.0,2019-05-17 18:57:00,805 Jefferson St, Los Angeles,CA,90001 +200159,27in 4K Gaming Monitor,1,389.99,2019-05-07 12:54:00,624 Lincoln St, Seattle,WA,98101 +200160,20in Monitor,1,109.99,2019-05-23 16:53:00,102 Center St, Los Angeles,CA,90001 +200161,USB-C Charging Cable,1,11.95,2019-05-29 21:24:00,693 Main St, San Francisco,CA,94016 +200162,AA Batteries (4-pack),1,3.84,2019-05-22 21:08:00,446 Adams St, New York City,NY,10001 +200163,Lightning Charging Cable,1,14.95,2019-05-13 18:17:00,19 2nd St, Seattle,WA,98101 +200164,AAA Batteries (4-pack),3,2.99,2019-05-22 14:31:00,440 Elm St, New York City,NY,10001 +200165,ThinkPad Laptop,1,999.99,2019-05-07 22:36:00,91 Jackson St, Seattle,WA,98101 +200166,Macbook Pro Laptop,1,1700.0,2019-05-03 15:39:00,532 Hill St, Boston,MA,02215 +200167,Flatscreen TV,1,300.0,2019-05-03 13:03:00,997 Highland St, Los Angeles,CA,90001 +200168,27in 4K Gaming Monitor,1,389.99,2019-05-28 09:20:00,989 Madison St, Seattle,WA,98101 +200169,Wired Headphones,1,11.99,2019-05-02 20:18:00,904 7th St, Atlanta,GA,30301 +200170,Flatscreen TV,1,300.0,2019-05-08 22:55:00,195 7th St, Seattle,WA,98101 +200171,Apple Airpods Headphones,1,150.0,2019-05-10 18:11:00,881 Sunset St, Portland,OR,97035 +200172,USB-C Charging Cable,1,11.95,2019-05-09 09:51:00,182 Main St, San Francisco,CA,94016 +200172,27in FHD Monitor,1,149.99,2019-05-09 09:51:00,182 Main St, San Francisco,CA,94016 +200173,27in FHD Monitor,1,149.99,2019-05-26 17:52:00,750 Meadow St, Austin,TX,73301 +200174,AAA Batteries (4-pack),2,2.99,2019-05-02 06:39:00,830 Walnut St, San Francisco,CA,94016 +200175,Google Phone,1,600.0,2019-05-11 07:36:00,489 Cherry St, Atlanta,GA,30301 +200176,Wired Headphones,1,11.99,2019-05-05 14:04:00,254 12th St, Los Angeles,CA,90001 +200177,AA Batteries (4-pack),1,3.84,2019-05-02 12:32:00,611 North St, Los Angeles,CA,90001 +200178,Google Phone,1,600.0,2019-05-25 11:35:00,607 5th St, Portland,ME,04101 +200179,USB-C Charging Cable,1,11.95,2019-05-16 16:47:00,174 Forest St, Los Angeles,CA,90001 +200180,Wired Headphones,1,11.99,2019-05-23 11:25:00,305 4th St, Boston,MA,02215 +200181,20in Monitor,1,109.99,2019-05-02 13:09:00,991 Lake St, Dallas,TX,75001 +200182,Apple Airpods Headphones,1,150.0,2019-05-04 13:26:00,541 7th St, Seattle,WA,98101 +200183,34in Ultrawide Monitor,1,379.99,2019-05-16 15:07:00,167 Hickory St, Los Angeles,CA,90001 +200184,Apple Airpods Headphones,1,150.0,2019-05-25 14:10:00,878 Dogwood St, Atlanta,GA,30301 +200185,Apple Airpods Headphones,1,150.0,2019-05-28 10:05:00,838 Cedar St, Atlanta,GA,30301 +200186,Lightning Charging Cable,1,14.95,2019-05-19 18:02:00,862 Johnson St, Boston,MA,02215 +200187,USB-C Charging Cable,1,11.95,2019-05-28 16:38:00,863 Park St, Austin,TX,73301 +200188,AAA Batteries (4-pack),1,2.99,2019-05-08 09:02:00,570 Jefferson St, Atlanta,GA,30301 +200189,Lightning Charging Cable,1,14.95,2019-05-18 15:00:00,19 Willow St, San Francisco,CA,94016 +200190,Lightning Charging Cable,1,14.95,2019-05-04 19:53:00,268 Cherry St, Atlanta,GA,30301 +200191,Apple Airpods Headphones,1,150.0,2019-05-23 11:14:00,965 West St, Atlanta,GA,30301 +200192,Lightning Charging Cable,2,14.95,2019-05-01 12:03:00,330 Forest St, Los Angeles,CA,90001 +200193,Vareebadd Phone,1,400.0,2019-05-30 19:35:00,279 11th St, Los Angeles,CA,90001 +200194,Bose SoundSport Headphones,1,99.99,2019-05-14 15:58:00,956 5th St, Los Angeles,CA,90001 +200195,Google Phone,1,600.0,2019-05-28 12:12:00,744 13th St, San Francisco,CA,94016 +200196,Lightning Charging Cable,1,14.95,2019-05-12 17:05:00,569 14th St, San Francisco,CA,94016 +200197,Lightning Charging Cable,1,14.95,2019-05-07 08:45:00,674 Jackson St, Atlanta,GA,30301 +200198,Lightning Charging Cable,1,14.95,2019-05-13 09:41:00,205 Washington St, Portland,OR,97035 +200199,Apple Airpods Headphones,1,150.0,2019-05-06 12:42:00,561 Chestnut St, Dallas,TX,75001 +200200,AA Batteries (4-pack),1,3.84,2019-05-21 16:41:00,148 4th St, Portland,ME,04101 +200201,Lightning Charging Cable,1,14.95,2019-05-29 14:13:00,123 12th St, New York City,NY,10001 +200202,Macbook Pro Laptop,1,1700.0,2019-05-19 23:19:00,829 14th St, New York City,NY,10001 +200203,Bose SoundSport Headphones,1,99.99,2019-05-12 13:57:00,712 4th St, Los Angeles,CA,90001 +200204,AAA Batteries (4-pack),1,2.99,2019-05-10 16:36:00,733 9th St, Atlanta,GA,30301 +200205,Bose SoundSport Headphones,1,99.99,2019-05-17 11:15:00,938 Elm St, New York City,NY,10001 +200206,AA Batteries (4-pack),1,3.84,2019-05-19 09:47:00,304 Wilson St, San Francisco,CA,94016 +200207,USB-C Charging Cable,1,11.95,2019-05-30 18:42:00,262 Walnut St, San Francisco,CA,94016 +200208,AA Batteries (4-pack),1,3.84,2019-05-04 21:30:00,125 South St, San Francisco,CA,94016 +200209,Apple Airpods Headphones,1,150.0,2019-05-30 23:00:00,213 Center St, San Francisco,CA,94016 +200210,Lightning Charging Cable,1,14.95,2019-05-14 22:35:00,901 Walnut St, Seattle,WA,98101 +200211,ThinkPad Laptop,1,999.99,2019-05-02 21:41:00,238 11th St, Portland,OR,97035 +200212,AAA Batteries (4-pack),1,2.99,2019-05-11 11:33:00,418 Lincoln St, Dallas,TX,75001 +200213,USB-C Charging Cable,1,11.95,2019-05-11 12:16:00,547 Willow St, San Francisco,CA,94016 +200214,20in Monitor,1,109.99,2019-05-26 18:00:00,226 7th St, Los Angeles,CA,90001 +200215,ThinkPad Laptop,1,999.99,2019-05-07 12:28:00,979 Johnson St, Atlanta,GA,30301 +200216,AA Batteries (4-pack),2,3.84,2019-05-20 18:47:00,968 Ridge St, Boston,MA,02215 +200217,Apple Airpods Headphones,1,150.0,2019-05-25 11:39:00,294 Hickory St, New York City,NY,10001 +200218,Macbook Pro Laptop,1,1700.0,2019-05-17 17:16:00,356 9th St, San Francisco,CA,94016 +200219,27in 4K Gaming Monitor,1,389.99,2019-05-26 13:29:00,399 Cherry St, Boston,MA,02215 +200220,Bose SoundSport Headphones,1,99.99,2019-05-14 11:47:00,618 Pine St, Boston,MA,02215 +200221,AAA Batteries (4-pack),1,2.99,2019-05-18 10:54:00,281 River St, Austin,TX,73301 +200222,Lightning Charging Cable,1,14.95,2019-05-30 16:55:00,92 9th St, Los Angeles,CA,90001 +200223,Apple Airpods Headphones,1,150.0,2019-05-02 23:03:00,465 Dogwood St, Seattle,WA,98101 +200224,ThinkPad Laptop,1,999.99,2019-05-05 22:36:00,261 Dogwood St, Boston,MA,02215 +200225,iPhone,1,700.0,2019-05-30 11:07:00,331 10th St, New York City,NY,10001 +200225,Lightning Charging Cable,1,14.95,2019-05-30 11:07:00,331 10th St, New York City,NY,10001 +200226,Flatscreen TV,1,300.0,2019-05-27 08:00:00,569 13th St, Boston,MA,02215 +200227,AA Batteries (4-pack),1,3.84,2019-05-08 19:50:00,289 Wilson St, San Francisco,CA,94016 +200228,Flatscreen TV,1,300.0,2019-05-13 19:57:00,515 Madison St, Seattle,WA,98101 +200229,Wired Headphones,1,11.99,2019-05-21 05:28:00,347 10th St, Boston,MA,02215 +200230,20in Monitor,1,109.99,2019-05-20 12:44:00,232 13th St, Los Angeles,CA,90001 +200231,AAA Batteries (4-pack),1,2.99,2019-05-19 12:16:00,655 Dogwood St, Los Angeles,CA,90001 +200232,Wired Headphones,1,11.99,2019-05-04 12:03:00,760 Willow St, Austin,TX,73301 +200233,Vareebadd Phone,1,400.0,2019-05-16 23:07:00,778 Main St, San Francisco,CA,94016 +200234,Bose SoundSport Headphones,1,99.99,2019-05-14 02:08:00,904 4th St, Dallas,TX,75001 +200235,USB-C Charging Cable,1,11.95,2019-05-30 13:44:00,55 9th St, New York City,NY,10001 +200236,iPhone,1,700.0,2019-05-18 21:28:00,179 Adams St, New York City,NY,10001 +200236,Lightning Charging Cable,1,14.95,2019-05-18 21:28:00,179 Adams St, New York City,NY,10001 +200237,Lightning Charging Cable,1,14.95,2019-05-22 15:44:00,774 4th St, Los Angeles,CA,90001 +200238,AA Batteries (4-pack),1,3.84,2019-05-01 16:08:00,399 Church St, Los Angeles,CA,90001 +200239,AAA Batteries (4-pack),2,2.99,2019-05-04 15:35:00,830 Cherry St, New York City,NY,10001 +200240,Google Phone,1,600.0,2019-05-26 01:48:00,81 Madison St, Dallas,TX,75001 +200240,USB-C Charging Cable,1,11.95,2019-05-26 01:48:00,81 Madison St, Dallas,TX,75001 +200241,iPhone,1,700.0,2019-05-21 17:37:00,185 Madison St, San Francisco,CA,94016 +200241,Lightning Charging Cable,1,14.95,2019-05-21 17:37:00,185 Madison St, San Francisco,CA,94016 +200241,Wired Headphones,1,11.99,2019-05-21 17:37:00,185 Madison St, San Francisco,CA,94016 +200242,34in Ultrawide Monitor,1,379.99,2019-05-30 21:20:00,823 Elm St, Los Angeles,CA,90001 +200243,Apple Airpods Headphones,1,150.0,2019-05-04 18:17:00,350 1st St, Dallas,TX,75001 +200244,Bose SoundSport Headphones,1,99.99,2019-05-07 22:42:00,541 Cedar St, Seattle,WA,98101 +200245,Apple Airpods Headphones,1,150.0,2019-05-13 17:02:00,831 Center St, Portland,OR,97035 +200246,Lightning Charging Cable,1,14.95,2019-05-26 16:51:00,390 5th St, Los Angeles,CA,90001 +200247,USB-C Charging Cable,2,11.95,2019-05-02 11:10:00,309 South St, New York City,NY,10001 +200248,Apple Airpods Headphones,1,150.0,2019-05-14 17:22:00,529 Hill St, Atlanta,GA,30301 +200249,Wired Headphones,2,11.99,2019-05-22 09:45:00,267 Church St, Portland,OR,97035 +200250,AAA Batteries (4-pack),1,2.99,2019-05-18 17:54:00,455 Hill St, Austin,TX,73301 +200251,AAA Batteries (4-pack),1,2.99,2019-05-10 23:05:00,603 Ridge St, Los Angeles,CA,90001 +200252,Bose SoundSport Headphones,1,99.99,2019-05-14 14:27:00,3 12th St, San Francisco,CA,94016 +200253,Apple Airpods Headphones,1,150.0,2019-05-10 17:57:00,810 Meadow St, New York City,NY,10001 +200254,Apple Airpods Headphones,1,150.0,2019-05-21 10:32:00,450 South St, New York City,NY,10001 +200255,Apple Airpods Headphones,1,150.0,2019-05-01 14:26:00,183 West St, San Francisco,CA,94016 +200256,AAA Batteries (4-pack),1,2.99,2019-05-09 20:15:00,342 14th St, Boston,MA,02215 +200257,USB-C Charging Cable,1,11.95,2019-05-11 18:22:00,634 Adams St, Los Angeles,CA,90001 +200258,Bose SoundSport Headphones,1,99.99,2019-05-21 09:52:00,541 Cedar St, Seattle,WA,98101 +200259,USB-C Charging Cable,1,11.95,2019-05-14 10:47:00,270 Washington St, Los Angeles,CA,90001 +200260,Wired Headphones,1,11.99,2019-05-18 19:52:00,314 Park St, Austin,TX,73301 +200261,AAA Batteries (4-pack),1,2.99,2019-05-08 16:34:00,435 Dogwood St, Los Angeles,CA,90001 +200262,USB-C Charging Cable,1,11.95,2019-05-17 09:56:00,291 River St, Boston,MA,02215 +200263,USB-C Charging Cable,1,11.95,2019-05-24 00:54:00,624 Pine St, Portland,ME,04101 +200264,27in 4K Gaming Monitor,1,389.99,2019-05-14 17:01:00,630 Spruce St, Seattle,WA,98101 +200265,Wired Headphones,1,11.99,2019-05-20 09:52:00,389 South St, San Francisco,CA,94016 +200266,AA Batteries (4-pack),2,3.84,2019-05-31 10:46:00,208 North St, New York City,NY,10001 +200267,27in 4K Gaming Monitor,1,389.99,2019-05-09 20:51:00,599 South St, San Francisco,CA,94016 +200268,USB-C Charging Cable,1,11.95,2019-05-04 09:04:00,341 13th St, Dallas,TX,75001 +200269,27in 4K Gaming Monitor,1,389.99,2019-05-03 23:19:00,294 Dogwood St, New York City,NY,10001 +200270,Lightning Charging Cable,1,14.95,2019-05-28 15:09:00,367 6th St, Boston,MA,02215 +200271,Bose SoundSport Headphones,1,99.99,2019-05-28 12:52:00,498 Ridge St, San Francisco,CA,94016 +200272,20in Monitor,1,109.99,2019-05-04 14:22:00,295 Highland St, Seattle,WA,98101 +200273,Wired Headphones,1,11.99,2019-05-18 21:53:00,984 Lincoln St, San Francisco,CA,94016 +200274,AAA Batteries (4-pack),2,2.99,2019-05-08 12:48:00,620 North St, San Francisco,CA,94016 +200275,Apple Airpods Headphones,1,150.0,2019-05-17 09:37:00,63 11th St, New York City,NY,10001 +200276,AAA Batteries (4-pack),1,2.99,2019-05-14 17:12:00,926 5th St, San Francisco,CA,94016 +200277,AAA Batteries (4-pack),1,2.99,2019-05-19 20:30:00,920 12th St, Seattle,WA,98101 +200278,Flatscreen TV,1,300.0,2019-05-30 10:48:00,131 2nd St, San Francisco,CA,94016 +200278,AA Batteries (4-pack),2,3.84,2019-05-30 10:48:00,131 2nd St, San Francisco,CA,94016 +200279,Lightning Charging Cable,1,14.95,2019-05-30 12:45:00,502 13th St, San Francisco,CA,94016 +200280,Apple Airpods Headphones,1,150.0,2019-05-26 20:27:00,466 6th St, Atlanta,GA,30301 +200281,27in 4K Gaming Monitor,1,389.99,2019-05-08 18:08:00,925 Spruce St, San Francisco,CA,94016 +200282,AA Batteries (4-pack),4,3.84,2019-05-16 08:41:00,613 Hill St, San Francisco,CA,94016 +200283,USB-C Charging Cable,1,11.95,2019-05-16 16:05:00,965 Willow St, San Francisco,CA,94016 +200284,20in Monitor,1,109.99,2019-05-16 13:00:00,202 Hill St, Austin,TX,73301 +200285,Macbook Pro Laptop,1,1700.0,2019-05-20 17:17:00,925 Jefferson St, Dallas,TX,75001 +200286,Lightning Charging Cable,1,14.95,2019-05-14 23:35:00,94 11th St, Dallas,TX,75001 +200287,AAA Batteries (4-pack),1,2.99,2019-05-06 19:19:00,517 14th St, Austin,TX,73301 +200288,Lightning Charging Cable,1,14.95,2019-05-31 12:29:00,156 River St, Atlanta,GA,30301 +200289,Google Phone,1,600.0,2019-05-14 11:26:00,713 West St, Boston,MA,02215 +200289,Wired Headphones,1,11.99,2019-05-14 11:26:00,713 West St, Boston,MA,02215 +200290,Wired Headphones,2,11.99,2019-05-13 00:50:00,858 Washington St, San Francisco,CA,94016 +200291,Wired Headphones,2,11.99,2019-05-03 23:36:00,676 Ridge St, San Francisco,CA,94016 +200292,USB-C Charging Cable,1,11.95,2019-05-28 17:48:00,908 10th St, Atlanta,GA,30301 +200293,Macbook Pro Laptop,1,1700.0,2019-05-21 11:06:00,549 4th St, San Francisco,CA,94016 +200294,Apple Airpods Headphones,1,150.0,2019-05-21 20:22:00,17 Jackson St, San Francisco,CA,94016 +200295,34in Ultrawide Monitor,1,379.99,2019-05-31 12:48:00,801 Lakeview St, San Francisco,CA,94016 +200296,27in FHD Monitor,1,149.99,2019-05-16 12:09:00,26 7th St, Austin,TX,73301 +200297,USB-C Charging Cable,1,11.95,2019-05-17 18:00:00,570 Dogwood St, Los Angeles,CA,90001 +200298,27in FHD Monitor,1,149.99,2019-05-03 00:44:00,746 River St, San Francisco,CA,94016 +200299,Bose SoundSport Headphones,1,99.99,2019-05-31 07:44:00,991 4th St, San Francisco,CA,94016 +200300,AA Batteries (4-pack),5,3.84,2019-05-12 12:41:00,987 6th St, San Francisco,CA,94016 +200301,27in FHD Monitor,1,149.99,2019-05-01 20:47:00,604 Center St, Seattle,WA,98101 +200301,Lightning Charging Cable,1,14.95,2019-05-01 20:47:00,604 Center St, Seattle,WA,98101 +200302,ThinkPad Laptop,1,999.99,2019-05-15 13:05:00,371 Pine St, Dallas,TX,75001 +200303,Bose SoundSport Headphones,1,99.99,2019-05-29 06:35:00,705 Cherry St, Atlanta,GA,30301 +200304,AAA Batteries (4-pack),1,2.99,2019-05-29 19:36:00,663 Center St, New York City,NY,10001 +200305,Lightning Charging Cable,1,14.95,2019-05-03 14:30:00,927 12th St, Los Angeles,CA,90001 +200306,iPhone,1,700.0,2019-05-15 13:46:00,905 Adams St, San Francisco,CA,94016 +200307,AA Batteries (4-pack),1,3.84,2019-05-21 21:17:00,224 10th St, Los Angeles,CA,90001 +200308,Apple Airpods Headphones,1,150.0,2019-05-02 00:28:00,700 West St, Atlanta,GA,30301 +200309,iPhone,1,700.0,2019-05-21 11:19:00,692 Park St, Portland,OR,97035 +200310,AAA Batteries (4-pack),3,2.99,2019-05-13 10:33:00,390 Cedar St, Los Angeles,CA,90001 +200311,Vareebadd Phone,1,400.0,2019-05-01 20:49:00,11 Wilson St, San Francisco,CA,94016 +200311,USB-C Charging Cable,1,11.95,2019-05-01 20:49:00,11 Wilson St, San Francisco,CA,94016 +200312,Apple Airpods Headphones,1,150.0,2019-05-22 08:34:00,67 River St, Dallas,TX,75001 +200313,AA Batteries (4-pack),2,3.84,2019-05-12 11:00:00,518 Sunset St, Seattle,WA,98101 +200314,Apple Airpods Headphones,1,150.0,2019-05-14 18:44:00,980 Lincoln St, Boston,MA,02215 +200315,Wired Headphones,1,11.99,2019-05-24 22:46:00,220 Highland St, Boston,MA,02215 +200316,Lightning Charging Cable,1,14.95,2019-05-13 22:44:00,814 Ridge St, Seattle,WA,98101 +200317,Lightning Charging Cable,2,14.95,2019-05-06 19:09:00,370 13th St, Los Angeles,CA,90001 +200318,Macbook Pro Laptop,1,1700.0,2019-05-03 14:17:00,310 5th St, New York City,NY,10001 +200319,27in FHD Monitor,1,149.99,2019-05-23 18:13:00,783 Sunset St, San Francisco,CA,94016 +200320,Bose SoundSport Headphones,1,99.99,2019-05-27 22:29:00,911 River St, New York City,NY,10001 +200321,27in 4K Gaming Monitor,1,389.99,2019-05-02 20:55:00,279 5th St, Austin,TX,73301 +200322,USB-C Charging Cable,1,11.95,2019-05-27 19:42:00,364 10th St, Boston,MA,02215 +200323,AA Batteries (4-pack),1,3.84,2019-05-12 10:05:00,867 1st St, New York City,NY,10001 +200324,20in Monitor,1,109.99,2019-05-03 11:18:00,498 Lakeview St, Boston,MA,02215 +200325,Apple Airpods Headphones,1,150.0,2019-05-15 12:41:00,84 Highland St, Los Angeles,CA,90001 +200326,Bose SoundSport Headphones,1,99.99,2019-05-23 21:27:00,185 12th St, Seattle,WA,98101 +200327,AAA Batteries (4-pack),1,2.99,2019-05-07 16:53:00,114 2nd St, Seattle,WA,98101 +200328,Apple Airpods Headphones,1,150.0,2019-05-31 14:52:00,563 9th St, San Francisco,CA,94016 +200329,Lightning Charging Cable,1,14.95,2019-05-03 10:00:00,95 8th St, San Francisco,CA,94016 +200330,Macbook Pro Laptop,1,1700.0,2019-05-10 23:49:00,231 10th St, Seattle,WA,98101 +200331,USB-C Charging Cable,1,11.95,2019-05-13 13:17:00,888 Willow St, New York City,NY,10001 +200332,Macbook Pro Laptop,1,1700.0,2019-05-20 10:00:00,581 Hickory St, San Francisco,CA,94016 +200333,AAA Batteries (4-pack),2,2.99,2019-05-23 11:59:00,5 Adams St, Portland,OR,97035 +200333,34in Ultrawide Monitor,1,379.99,2019-05-23 11:59:00,5 Adams St, Portland,OR,97035 +200334,Wired Headphones,1,11.99,2019-05-31 18:26:00,457 South St, New York City,NY,10001 +200335,USB-C Charging Cable,1,11.95,2019-05-20 10:22:00,626 Cherry St, New York City,NY,10001 +200336,ThinkPad Laptop,1,999.99,2019-05-05 16:36:00,578 Church St, Portland,OR,97035 +200337,AA Batteries (4-pack),2,3.84,2019-05-31 18:48:00,749 Pine St, Los Angeles,CA,90001 +200338,Google Phone,1,600.0,2019-05-04 23:47:00,9 Wilson St, San Francisco,CA,94016 +200338,USB-C Charging Cable,1,11.95,2019-05-04 23:47:00,9 Wilson St, San Francisco,CA,94016 +200339,USB-C Charging Cable,1,11.95,2019-05-24 18:27:00,691 Meadow St, Los Angeles,CA,90001 +200340,27in FHD Monitor,1,149.99,2019-05-19 21:09:00,964 Cedar St, San Francisco,CA,94016 +200341,Macbook Pro Laptop,1,1700.0,2019-05-27 12:43:00,37 South St, Seattle,WA,98101 +200342,AA Batteries (4-pack),1,3.84,2019-05-18 08:34:00,497 Cherry St, Boston,MA,02215 +200343,Wired Headphones,1,11.99,2019-05-03 14:09:00,284 North St, Atlanta,GA,30301 +200344,Lightning Charging Cable,1,14.95,2019-05-15 15:27:00,145 Hickory St, Boston,MA,02215 +200345,AAA Batteries (4-pack),1,2.99,2019-05-26 18:37:00,773 Adams St, San Francisco,CA,94016 +200346,Flatscreen TV,1,300.0,2019-05-15 21:05:00,366 10th St, Dallas,TX,75001 +200347,Bose SoundSport Headphones,1,99.99,2019-05-13 17:07:00,594 Forest St, San Francisco,CA,94016 +200348,Google Phone,1,600.0,2019-05-12 18:35:00,508 9th St, New York City,NY,10001 +200349,Lightning Charging Cable,1,14.95,2019-05-19 15:42:00,484 Sunset St, San Francisco,CA,94016 +200350,27in FHD Monitor,1,149.99,2019-05-11 16:05:00,156 Lakeview St, San Francisco,CA,94016 +200351,27in FHD Monitor,1,149.99,2019-05-25 08:02:00,530 Highland St, Los Angeles,CA,90001 +200352,Bose SoundSport Headphones,1,99.99,2019-05-12 11:03:00,39 4th St, Portland,OR,97035 +200353,USB-C Charging Cable,1,11.95,2019-05-18 13:10:00,66 River St, Austin,TX,73301 +200354,AAA Batteries (4-pack),1,2.99,2019-05-18 16:11:00,358 South St, San Francisco,CA,94016 +200354,USB-C Charging Cable,1,11.95,2019-05-18 16:11:00,358 South St, San Francisco,CA,94016 +200355,27in FHD Monitor,1,149.99,2019-05-23 21:01:00,879 6th St, Dallas,TX,75001 +200356,Vareebadd Phone,1,400.0,2019-05-18 22:51:00,494 Jackson St, New York City,NY,10001 +200356,USB-C Charging Cable,1,11.95,2019-05-18 22:51:00,494 Jackson St, New York City,NY,10001 +200357,AAA Batteries (4-pack),1,2.99,2019-05-22 10:58:00,401 Sunset St, Boston,MA,02215 +200358,20in Monitor,1,109.99,2019-05-09 20:49:00,986 7th St, San Francisco,CA,94016 +200359,Bose SoundSport Headphones,1,99.99,2019-05-11 14:16:00,598 Johnson St, San Francisco,CA,94016 +200360,Lightning Charging Cable,1,14.95,2019-05-12 11:28:00,803 Lake St, Dallas,TX,75001 +200361,Bose SoundSport Headphones,1,99.99,2019-05-05 20:59:00,698 6th St, San Francisco,CA,94016 +200362,USB-C Charging Cable,1,11.95,2019-05-11 19:48:00,603 Lincoln St, Portland,OR,97035 +200363,AA Batteries (4-pack),1,3.84,2019-05-25 18:13:00,398 Dogwood St, Los Angeles,CA,90001 +200364,Wired Headphones,1,11.99,2019-05-16 18:24:00,993 Spruce St, Los Angeles,CA,90001 +200365,Bose SoundSport Headphones,1,99.99,2019-05-22 10:00:00,906 Elm St, Boston,MA,02215 +200366,27in FHD Monitor,1,149.99,2019-05-23 23:00:00,150 Highland St, New York City,NY,10001 +200367,AA Batteries (4-pack),2,3.84,2019-05-05 22:25:00,993 4th St, San Francisco,CA,94016 +200368,AA Batteries (4-pack),1,3.84,2019-05-17 13:33:00,901 6th St, San Francisco,CA,94016 +200369,AAA Batteries (4-pack),1,2.99,2019-05-26 18:52:00,873 Elm St, New York City,NY,10001 +200370,Wired Headphones,1,11.99,2019-05-04 23:15:00,772 Adams St, Los Angeles,CA,90001 +200371,Macbook Pro Laptop,1,1700.0,2019-05-29 19:37:00,71 Lakeview St, San Francisco,CA,94016 +200372,Apple Airpods Headphones,1,150.0,2019-05-03 11:24:00,21 Cherry St, New York City,NY,10001 +200373,Lightning Charging Cable,1,14.95,2019-05-10 18:32:00,777 Johnson St, Los Angeles,CA,90001 +200374,34in Ultrawide Monitor,1,379.99,2019-05-05 13:00:00,126 Cedar St, San Francisco,CA,94016 +200375,ThinkPad Laptop,1,999.99,2019-05-24 18:36:00,826 12th St, Los Angeles,CA,90001 +200376,Flatscreen TV,1,300.0,2019-05-28 17:34:00,911 Adams St, Los Angeles,CA,90001 +200377,Lightning Charging Cable,1,14.95,2019-05-25 12:21:00,425 Elm St, Seattle,WA,98101 +200378,AA Batteries (4-pack),1,3.84,2019-05-10 13:55:00,406 Cherry St, Boston,MA,02215 +200379,Lightning Charging Cable,1,14.95,2019-05-08 23:02:00,566 Hickory St, Boston,MA,02215 +200380,USB-C Charging Cable,1,11.95,2019-05-19 15:53:00,496 4th St, Boston,MA,02215 +200381,Wired Headphones,1,11.99,2019-05-18 11:58:00,41 Wilson St, New York City,NY,10001 +200382,AA Batteries (4-pack),1,3.84,2019-05-04 16:04:00,826 12th St, Boston,MA,02215 +200383,USB-C Charging Cable,1,11.95,2019-05-13 20:50:00,279 6th St, Los Angeles,CA,90001 +200384,Wired Headphones,1,11.99,2019-05-11 13:40:00,75 Main St, San Francisco,CA,94016 +200385,AAA Batteries (4-pack),2,2.99,2019-05-22 16:25:00,146 Ridge St, New York City,NY,10001 +200386,AA Batteries (4-pack),1,3.84,2019-05-24 21:49:00,67 Hickory St, Boston,MA,02215 +200387,34in Ultrawide Monitor,1,379.99,2019-05-17 11:59:00,511 Johnson St, Los Angeles,CA,90001 +200388,Bose SoundSport Headphones,1,99.99,2019-05-30 20:41:00,619 West St, New York City,NY,10001 +200389,Macbook Pro Laptop,1,1700.0,2019-05-16 18:04:00,394 Maple St, San Francisco,CA,94016 +200390,27in FHD Monitor,1,149.99,2019-05-12 16:50:00,266 14th St, San Francisco,CA,94016 +200391,27in 4K Gaming Monitor,1,389.99,2019-05-17 13:42:00,964 Hickory St, San Francisco,CA,94016 +200392,Wired Headphones,1,11.99,2019-05-08 13:54:00,470 Willow St, San Francisco,CA,94016 +200393,Wired Headphones,1,11.99,2019-05-23 16:11:00,345 Church St, New York City,NY,10001 +200394,Bose SoundSport Headphones,1,99.99,2019-05-08 20:59:00,257 Spruce St, Boston,MA,02215 +200395,AA Batteries (4-pack),2,3.84,2019-05-31 00:26:00,387 West St, San Francisco,CA,94016 +200396,Wired Headphones,1,11.99,2019-05-04 11:35:00,598 7th St, Los Angeles,CA,90001 +200397,AA Batteries (4-pack),1,3.84,2019-05-20 11:55:00,662 Church St, Boston,MA,02215 +200398,Apple Airpods Headphones,1,150.0,2019-05-09 08:52:00,446 13th St, Atlanta,GA,30301 +200399,Macbook Pro Laptop,1,1700.0,2019-05-28 19:25:00,265 North St, Seattle,WA,98101 +200400,ThinkPad Laptop,1,999.99,2019-05-27 09:24:00,316 Spruce St, Atlanta,GA,30301 +200401,Vareebadd Phone,1,400.0,2019-05-14 16:55:00,856 Cherry St, San Francisco,CA,94016 +200402,AAA Batteries (4-pack),3,2.99,2019-05-22 20:28:00,511 Ridge St, Boston,MA,02215 +200403,Lightning Charging Cable,1,14.95,2019-05-30 06:57:00,845 Park St, San Francisco,CA,94016 +200404,Flatscreen TV,1,300.0,2019-05-20 18:26:00,539 Sunset St, Atlanta,GA,30301 +200405,Lightning Charging Cable,1,14.95,2019-05-16 15:20:00,597 10th St, Boston,MA,02215 +200406,Bose SoundSport Headphones,1,99.99,2019-05-12 21:10:00,213 8th St, San Francisco,CA,94016 +200407,Apple Airpods Headphones,1,150.0,2019-05-18 15:04:00,255 Church St, Boston,MA,02215 +200408,Wired Headphones,1,11.99,2019-05-27 11:33:00,437 4th St, Austin,TX,73301 +200409,27in 4K Gaming Monitor,1,389.99,2019-05-20 20:42:00,645 14th St, Portland,ME,04101 +200410,Flatscreen TV,1,300.0,2019-05-01 19:56:00,412 Pine St, Dallas,TX,75001 +200411,LG Dryer,1,600.0,2019-05-08 02:36:00,545 Cherry St, Austin,TX,73301 +200412,AAA Batteries (4-pack),3,2.99,2019-05-25 18:11:00,698 Ridge St, Atlanta,GA,30301 +200413,USB-C Charging Cable,1,11.95,2019-05-13 07:51:00,243 Forest St, Los Angeles,CA,90001 +200414,AAA Batteries (4-pack),1,2.99,2019-05-05 15:14:00,705 13th St, Los Angeles,CA,90001 +200415,USB-C Charging Cable,1,11.95,2019-05-18 17:07:00,712 Cedar St, Dallas,TX,75001 +200416,iPhone,1,700.0,2019-05-16 23:36:00,10 Willow St, Los Angeles,CA,90001 +200416,Lightning Charging Cable,1,14.95,2019-05-16 23:36:00,10 Willow St, Los Angeles,CA,90001 +200417,Flatscreen TV,1,300.0,2019-05-10 09:13:00,176 Adams St, Boston,MA,02215 +200418,34in Ultrawide Monitor,1,379.99,2019-05-20 11:28:00,757 11th St, Los Angeles,CA,90001 +200419,USB-C Charging Cable,1,11.95,2019-05-24 13:49:00,190 Spruce St, Los Angeles,CA,90001 +200420,Lightning Charging Cable,1,14.95,2019-05-22 15:27:00,623 2nd St, San Francisco,CA,94016 +200421,Apple Airpods Headphones,1,150.0,2019-05-27 15:19:00,830 Chestnut St, Seattle,WA,98101 +200422,AAA Batteries (4-pack),6,2.99,2019-05-21 11:27:00,686 Washington St, Seattle,WA,98101 +200423,AAA Batteries (4-pack),1,2.99,2019-05-10 20:36:00,651 11th St, Seattle,WA,98101 +200424,Wired Headphones,1,11.99,2019-05-11 20:33:00,554 Highland St, San Francisco,CA,94016 +200425,27in 4K Gaming Monitor,1,389.99,2019-05-31 19:02:00,744 Park St, Los Angeles,CA,90001 +200426,27in 4K Gaming Monitor,1,389.99,2019-05-16 22:34:00,948 Spruce St, Austin,TX,73301 +200427,AA Batteries (4-pack),1,3.84,2019-05-21 20:28:00,789 Madison St, Atlanta,GA,30301 +200428,USB-C Charging Cable,1,11.95,2019-05-13 16:13:00,450 Lake St, Dallas,TX,75001 +200429,Bose SoundSport Headphones,1,99.99,2019-05-07 11:03:00,436 West St, San Francisco,CA,94016 +200430,LG Washing Machine,1,600.0,2019-05-03 11:38:00,906 Hickory St, Los Angeles,CA,90001 +200431,20in Monitor,1,109.99,2019-05-25 22:12:00,382 4th St, Los Angeles,CA,90001 +200432,Lightning Charging Cable,1,14.95,2019-05-03 22:50:00,443 South St, Seattle,WA,98101 +200433,USB-C Charging Cable,1,11.95,2019-05-15 12:43:00,482 North St, Austin,TX,73301 +200434,Wired Headphones,1,11.99,2019-05-23 15:24:00,463 14th St, Los Angeles,CA,90001 +200435,Wired Headphones,1,11.99,2019-05-17 11:23:00,121 Hill St, Seattle,WA,98101 +200436,Lightning Charging Cable,1,14.95,2019-05-23 18:56:00,441 Lincoln St, New York City,NY,10001 +200437,Bose SoundSport Headphones,1,99.99,2019-05-10 20:15:00,278 Wilson St, New York City,NY,10001 +200438,USB-C Charging Cable,1,11.95,2019-05-24 04:29:00,273 Park St, Dallas,TX,75001 +200439,Lightning Charging Cable,1,14.95,2019-05-27 19:00:00,551 Lincoln St, Los Angeles,CA,90001 +200440,iPhone,1,700.0,2019-05-24 17:15:00,178 1st St, New York City,NY,10001 +200440,Apple Airpods Headphones,1,150.0,2019-05-24 17:15:00,178 1st St, New York City,NY,10001 +200441,USB-C Charging Cable,1,11.95,2019-05-16 14:33:00,491 Church St, San Francisco,CA,94016 +200442,USB-C Charging Cable,1,11.95,2019-05-29 21:09:00,310 Wilson St, San Francisco,CA,94016 +200443,iPhone,1,700.0,2019-05-04 20:48:00,468 12th St, Boston,MA,02215 +200444,Wired Headphones,1,11.99,2019-05-28 07:39:00,500 West St, Los Angeles,CA,90001 +200445,USB-C Charging Cable,1,11.95,2019-05-04 06:20:00,730 Park St, San Francisco,CA,94016 +200446,USB-C Charging Cable,1,11.95,2019-05-14 19:17:00,278 Cherry St, Portland,OR,97035 +200447,AA Batteries (4-pack),1,3.84,2019-05-17 09:24:00,203 Maple St, San Francisco,CA,94016 +200448,USB-C Charging Cable,1,11.95,2019-05-20 03:31:00,768 Ridge St, Austin,TX,73301 +200449,AAA Batteries (4-pack),1,2.99,2019-05-17 08:06:00,975 13th St, Dallas,TX,75001 +200450,USB-C Charging Cable,1,11.95,2019-05-06 19:30:00,309 Washington St, Boston,MA,02215 +200451,AAA Batteries (4-pack),1,2.99,2019-05-04 13:23:00,695 West St, Portland,OR,97035 +200452,AA Batteries (4-pack),2,3.84,2019-05-19 19:33:00,129 2nd St, Atlanta,GA,30301 +200453,Wired Headphones,1,11.99,2019-05-17 21:26:00,651 South St, Seattle,WA,98101 +200454,34in Ultrawide Monitor,1,379.99,2019-05-04 22:08:00,393 Main St, San Francisco,CA,94016 +200455,Bose SoundSport Headphones,1,99.99,2019-05-22 13:46:00,297 6th St, Los Angeles,CA,90001 +200456,Bose SoundSport Headphones,1,99.99,2019-05-02 17:18:00,755 7th St, Los Angeles,CA,90001 +200457,Apple Airpods Headphones,1,150.0,2019-05-09 11:37:00,410 River St, Atlanta,GA,30301 +200458,Wired Headphones,1,11.99,2019-05-19 16:22:00,31 10th St, Los Angeles,CA,90001 +200459,Apple Airpods Headphones,1,150.0,2019-05-19 16:44:00,18 6th St, New York City,NY,10001 +200460,AAA Batteries (4-pack),2,2.99,2019-05-04 13:26:00,25 Hill St, Boston,MA,02215 +200461,Apple Airpods Headphones,1,150.0,2019-05-15 23:23:00,396 14th St, Seattle,WA,98101 +200462,AA Batteries (4-pack),1,3.84,2019-05-13 11:29:00,683 6th St, Dallas,TX,75001 +200463,USB-C Charging Cable,1,11.95,2019-05-13 12:42:00,162 Sunset St, Atlanta,GA,30301 +200464,Google Phone,1,600.0,2019-05-03 13:10:00,372 Jefferson St, New York City,NY,10001 +200465,Wired Headphones,1,11.99,2019-05-25 18:44:00,997 Chestnut St, Dallas,TX,75001 +200466,USB-C Charging Cable,1,11.95,2019-05-14 08:57:00,87 6th St, Dallas,TX,75001 +200467,Lightning Charging Cable,1,14.95,2019-05-06 21:21:00,713 Pine St, Portland,OR,97035 +200468,Lightning Charging Cable,1,14.95,2019-05-11 21:48:00,505 Pine St, Seattle,WA,98101 +200469,Lightning Charging Cable,1,14.95,2019-05-16 09:45:00,818 5th St, Boston,MA,02215 +200470,USB-C Charging Cable,1,11.95,2019-05-29 12:33:00,860 Jackson St, Los Angeles,CA,90001 +200471,USB-C Charging Cable,1,11.95,2019-05-04 19:02:00,962 9th St, Austin,TX,73301 +200472,iPhone,1,700.0,2019-05-10 20:05:00,283 Washington St, Los Angeles,CA,90001 +200472,Apple Airpods Headphones,1,150.0,2019-05-10 20:05:00,283 Washington St, Los Angeles,CA,90001 +200473,27in 4K Gaming Monitor,1,389.99,2019-05-11 10:52:00,968 Jefferson St, Atlanta,GA,30301 +200474,AA Batteries (4-pack),1,3.84,2019-05-23 19:08:00,163 4th St, Boston,MA,02215 +200475,LG Dryer,1,600.0,2019-05-14 23:18:00,86 Adams St, San Francisco,CA,94016 +200476,AA Batteries (4-pack),1,3.84,2019-05-12 12:31:00,16 North St, San Francisco,CA,94016 +200477,20in Monitor,1,109.99,2019-05-07 22:35:00,58 11th St, New York City,NY,10001 +200478,AA Batteries (4-pack),2,3.84,2019-05-17 13:28:00,469 Jefferson St, Boston,MA,02215 +200479,Bose SoundSport Headphones,1,99.99,2019-05-07 19:22:00,171 Jefferson St, New York City,NY,10001 +200480,AAA Batteries (4-pack),2,2.99,2019-05-12 11:35:00,493 Madison St, New York City,NY,10001 +200481,27in 4K Gaming Monitor,1,389.99,2019-05-29 15:41:00,472 10th St, Dallas,TX,75001 +200482,Google Phone,1,600.0,2019-05-17 15:38:00,130 4th St, New York City,NY,10001 +200483,AAA Batteries (4-pack),3,2.99,2019-05-16 15:35:00,141 Main St, Portland,OR,97035 +200484,Wired Headphones,1,11.99,2019-05-07 20:11:00,482 7th St, San Francisco,CA,94016 +200485,Macbook Pro Laptop,1,1700.0,2019-05-23 12:59:00,369 6th St, Dallas,TX,75001 +200486,27in FHD Monitor,1,149.99,2019-05-15 11:44:00,221 River St, San Francisco,CA,94016 +200486,AA Batteries (4-pack),1,3.84,2019-05-15 11:44:00,221 River St, San Francisco,CA,94016 +200487,Wired Headphones,2,11.99,2019-05-10 16:40:00,683 Spruce St, Portland,ME,04101 +200488,Apple Airpods Headphones,1,150.0,2019-05-13 10:39:00,207 5th St, Seattle,WA,98101 +200489,Apple Airpods Headphones,1,150.0,2019-05-23 19:14:00,200 Pine St, Los Angeles,CA,90001 +200490,USB-C Charging Cable,1,11.95,2019-05-11 15:25:00,714 2nd St, Seattle,WA,98101 +200491,27in FHD Monitor,1,149.99,2019-05-28 11:30:00,841 North St, Seattle,WA,98101 +200492,iPhone,1,700.0,2019-05-23 12:23:00,339 Spruce St, San Francisco,CA,94016 +200493,iPhone,1,700.0,2019-05-08 11:45:00,587 West St, Atlanta,GA,30301 +200494,Apple Airpods Headphones,1,150.0,2019-05-29 15:44:00,380 Willow St, Portland,OR,97035 +200494,LG Dryer,1,600.0,2019-05-29 15:44:00,380 Willow St, Portland,OR,97035 +200495,ThinkPad Laptop,1,999.99,2019-05-27 09:21:00,696 Dogwood St, New York City,NY,10001 +200496,20in Monitor,1,109.99,2019-05-25 19:47:00,642 13th St, New York City,NY,10001 +200497,Lightning Charging Cable,2,14.95,2019-05-11 00:16:00,888 Center St, Atlanta,GA,30301 +200498,Lightning Charging Cable,1,14.95,2019-05-15 22:21:00,58 5th St, San Francisco,CA,94016 +200499,USB-C Charging Cable,1,11.95,2019-05-14 15:18:00,788 1st St, Boston,MA,02215 +200500,Flatscreen TV,1,300.0,2019-05-08 12:22:00,876 Hill St, Los Angeles,CA,90001 +200501,Lightning Charging Cable,2,14.95,2019-05-24 17:49:00,923 10th St, Atlanta,GA,30301 +200502,Bose SoundSport Headphones,1,99.99,2019-05-30 11:12:00,280 Elm St, Austin,TX,73301 +200503,Apple Airpods Headphones,1,150.0,2019-05-15 13:48:00,380 Walnut St, Portland,OR,97035 +200504,AAA Batteries (4-pack),1,2.99,2019-05-03 09:39:00,268 Willow St, Los Angeles,CA,90001 +200505,Wired Headphones,1,11.99,2019-05-21 15:46:00,407 Ridge St, San Francisco,CA,94016 +200506,AAA Batteries (4-pack),1,2.99,2019-05-06 10:27:00,316 Highland St, New York City,NY,10001 +200506,27in FHD Monitor,1,149.99,2019-05-06 10:27:00,316 Highland St, New York City,NY,10001 +200507,USB-C Charging Cable,1,11.95,2019-05-10 08:45:00,376 11th St, Dallas,TX,75001 +200508,Lightning Charging Cable,1,14.95,2019-05-30 11:04:00,943 South St, San Francisco,CA,94016 +200509,Macbook Pro Laptop,1,1700.0,2019-05-05 12:51:00,860 13th St, Boston,MA,02215 +200510,AAA Batteries (4-pack),1,2.99,2019-05-15 19:30:00,578 Sunset St, San Francisco,CA,94016 +200511,Wired Headphones,1,11.99,2019-05-06 10:24:00,535 South St, San Francisco,CA,94016 +200512,Bose SoundSport Headphones,1,99.99,2019-05-19 22:27:00,442 5th St, Seattle,WA,98101 +200513,AA Batteries (4-pack),1,3.84,2019-05-18 14:04:00,644 Hickory St, San Francisco,CA,94016 +200514,34in Ultrawide Monitor,1,379.99,2019-05-26 10:54:00,496 10th St, Atlanta,GA,30301 +200515,USB-C Charging Cable,1,11.95,2019-05-07 17:21:00,898 Meadow St, San Francisco,CA,94016 +200516,AAA Batteries (4-pack),1,2.99,2019-05-31 20:31:00,368 Spruce St, New York City,NY,10001 +200517,AA Batteries (4-pack),1,3.84,2019-05-03 11:31:00,151 Pine St, Portland,OR,97035 +200518,AAA Batteries (4-pack),2,2.99,2019-05-12 19:54:00,235 Adams St, Los Angeles,CA,90001 +200519,Lightning Charging Cable,1,14.95,2019-05-09 13:00:00,111 Dogwood St, San Francisco,CA,94016 +200520,AAA Batteries (4-pack),1,2.99,2019-05-21 08:51:00,664 West St, Austin,TX,73301 +200521,Wired Headphones,1,11.99,2019-05-18 09:50:00,545 North St, Dallas,TX,75001 +200522,Wired Headphones,1,11.99,2019-05-28 18:31:00,702 Washington St, New York City,NY,10001 +200523,20in Monitor,1,109.99,2019-05-30 08:44:00,91 North St, San Francisco,CA,94016 +200524,USB-C Charging Cable,1,11.95,2019-05-24 05:25:00,403 Chestnut St, Boston,MA,02215 +200525,Lightning Charging Cable,1,14.95,2019-05-08 10:28:00,164 Park St, Los Angeles,CA,90001 +200526,Lightning Charging Cable,1,14.95,2019-05-29 12:28:00,783 Pine St, San Francisco,CA,94016 +200527,Macbook Pro Laptop,1,1700.0,2019-05-12 11:32:00,463 Meadow St, Los Angeles,CA,90001 +200527,USB-C Charging Cable,1,11.95,2019-05-12 11:32:00,463 Meadow St, Los Angeles,CA,90001 +200528,Macbook Pro Laptop,2,1700.0,2019-05-13 13:40:00,643 4th St, Boston,MA,02215 +200529,Bose SoundSport Headphones,1,99.99,2019-05-17 21:13:00,978 Walnut St, Boston,MA,02215 +200530,Lightning Charging Cable,1,14.95,2019-05-08 06:05:00,620 6th St, Boston,MA,02215 +200531,AAA Batteries (4-pack),2,2.99,2019-05-27 13:20:00,226 Lakeview St, Boston,MA,02215 +200531,USB-C Charging Cable,1,11.95,2019-05-27 13:20:00,226 Lakeview St, Boston,MA,02215 +200532,Google Phone,1,600.0,2019-05-17 14:48:00,342 Lake St, Portland,OR,97035 +200533,Wired Headphones,1,11.99,2019-05-02 15:11:00,616 9th St, Dallas,TX,75001 +200534,USB-C Charging Cable,1,11.95,2019-05-09 17:48:00,175 Forest St, Los Angeles,CA,90001 +200535,AA Batteries (4-pack),1,3.84,2019-05-18 22:19:00,956 Lincoln St, Los Angeles,CA,90001 +200536,Vareebadd Phone,1,400.0,2019-05-24 05:16:00,317 Cherry St, Atlanta,GA,30301 +200537,USB-C Charging Cable,1,11.95,2019-05-10 20:00:00,108 6th St, Boston,MA,02215 +200538,Apple Airpods Headphones,1,150.0,2019-05-24 23:47:00,87 Madison St, Portland,OR,97035 +200539,Apple Airpods Headphones,1,150.0,2019-05-19 11:20:00,176 River St, Seattle,WA,98101 +200540,Apple Airpods Headphones,1,150.0,2019-05-13 03:04:00,773 Lake St, San Francisco,CA,94016 +200541,USB-C Charging Cable,1,11.95,2019-05-04 09:38:00,626 Madison St, Los Angeles,CA,90001 +200542,AA Batteries (4-pack),1,3.84,2019-05-10 08:03:00,466 13th St, San Francisco,CA,94016 +200543,Apple Airpods Headphones,1,150.0,2019-05-30 15:13:00,390 Madison St, Boston,MA,02215 +200544,Apple Airpods Headphones,1,150.0,2019-05-09 10:23:00,77 2nd St, Los Angeles,CA,90001 +200545,USB-C Charging Cable,2,11.95,2019-05-25 10:43:00,976 Chestnut St, Los Angeles,CA,90001 +200546,Vareebadd Phone,1,400.0,2019-05-17 15:26:00,95 13th St, Austin,TX,73301 +200546,USB-C Charging Cable,1,11.95,2019-05-17 15:26:00,95 13th St, Austin,TX,73301 +200547,Google Phone,1,600.0,2019-05-28 09:39:00,429 Cherry St, Austin,TX,73301 +200548,Bose SoundSport Headphones,1,99.99,2019-05-08 19:26:00,880 Elm St, Boston,MA,02215 +200549,Bose SoundSport Headphones,1,99.99,2019-05-11 14:27:00,977 7th St, Los Angeles,CA,90001 +200550,Lightning Charging Cable,1,14.95,2019-05-08 13:26:00,362 4th St, San Francisco,CA,94016 +200551,Wired Headphones,1,11.99,2019-05-01 20:52:00,51 Adams St, Portland,OR,97035 +200552,AAA Batteries (4-pack),1,2.99,2019-05-03 11:22:00,475 14th St, Boston,MA,02215 +200553,Apple Airpods Headphones,1,150.0,2019-05-18 11:51:00,111 Chestnut St, Los Angeles,CA,90001 +200554,Apple Airpods Headphones,1,150.0,2019-05-26 21:12:00,341 2nd St, Los Angeles,CA,90001 +200555,AAA Batteries (4-pack),1,2.99,2019-05-26 19:45:00,523 8th St, Los Angeles,CA,90001 +200556,Bose SoundSport Headphones,1,99.99,2019-05-19 17:09:00,505 Lake St, Los Angeles,CA,90001 +200557,Google Phone,1,600.0,2019-05-13 12:46:00,453 10th St, San Francisco,CA,94016 +200558,Wired Headphones,1,11.99,2019-05-28 13:29:00,339 6th St, Atlanta,GA,30301 +200559,Apple Airpods Headphones,1,150.0,2019-05-20 12:32:00,433 Ridge St, San Francisco,CA,94016 +200560,34in Ultrawide Monitor,1,379.99,2019-05-03 18:17:00,264 4th St, Boston,MA,02215 +200561,Lightning Charging Cable,1,14.95,2019-05-06 18:05:00,716 Madison St, Atlanta,GA,30301 +200562,34in Ultrawide Monitor,1,379.99,2019-05-31 12:52:00,785 12th St, San Francisco,CA,94016 +200563,Google Phone,1,600.0,2019-05-29 08:42:00,960 Lake St, New York City,NY,10001 +200564,Bose SoundSport Headphones,1,99.99,2019-05-01 21:15:00,472 Cherry St, Boston,MA,02215 +200565,AA Batteries (4-pack),1,3.84,2019-05-30 18:57:00,428 South St, San Francisco,CA,94016 +200566,USB-C Charging Cable,1,11.95,2019-05-14 20:19:00,798 Forest St, New York City,NY,10001 +200567,USB-C Charging Cable,1,11.95,2019-05-07 13:30:00,316 Sunset St, San Francisco,CA,94016 +200568,iPhone,1,700.0,2019-05-22 18:35:00,583 6th St, San Francisco,CA,94016 +200568,Wired Headphones,1,11.99,2019-05-22 18:35:00,583 6th St, San Francisco,CA,94016 +200569,USB-C Charging Cable,1,11.95,2019-05-05 15:06:00,194 Forest St, Los Angeles,CA,90001 +200570,Macbook Pro Laptop,1,1700.0,2019-05-04 21:58:00,252 7th St, New York City,NY,10001 +200571,AAA Batteries (4-pack),3,2.99,2019-05-20 21:03:00,592 Johnson St, San Francisco,CA,94016 +200572,iPhone,1,700.0,2019-05-01 12:51:00,549 Walnut St, San Francisco,CA,94016 +200573,27in FHD Monitor,1,149.99,2019-05-20 08:27:00,824 Adams St, Los Angeles,CA,90001 +200574,AAA Batteries (4-pack),1,2.99,2019-05-12 08:29:00,652 13th St, San Francisco,CA,94016 +200575,iPhone,1,700.0,2019-05-23 21:32:00,456 Center St, Boston,MA,02215 +200575,Lightning Charging Cable,1,14.95,2019-05-23 21:32:00,456 Center St, Boston,MA,02215 +200576,34in Ultrawide Monitor,1,379.99,2019-05-29 14:05:00,274 Spruce St, San Francisco,CA,94016 +200577,Bose SoundSport Headphones,1,99.99,2019-05-08 18:02:00,222 Willow St, Seattle,WA,98101 +200578,AAA Batteries (4-pack),1,2.99,2019-05-06 07:52:00,237 River St, Los Angeles,CA,90001 +200579,Flatscreen TV,1,300.0,2019-05-20 11:03:00,834 Johnson St, Los Angeles,CA,90001 +200580,iPhone,1,700.0,2019-05-06 15:00:00,485 Washington St, Boston,MA,02215 +200581,Vareebadd Phone,1,400.0,2019-05-14 16:48:00,372 Ridge St, Los Angeles,CA,90001 +200582,Bose SoundSport Headphones,1,99.99,2019-05-24 16:39:00,53 Pine St, San Francisco,CA,94016 +200583,iPhone,1,700.0,2019-05-20 14:25:00,210 Hill St, Austin,TX,73301 +200583,Wired Headphones,1,11.99,2019-05-20 14:25:00,210 Hill St, Austin,TX,73301 +200584,Wired Headphones,1,11.99,2019-05-12 16:22:00,123 Hickory St, Atlanta,GA,30301 +200585,Wired Headphones,1,11.99,2019-05-18 16:33:00,933 Main St, New York City,NY,10001 +200586,Wired Headphones,2,11.99,2019-05-14 17:52:00,730 1st St, Los Angeles,CA,90001 +200587,Google Phone,1,600.0,2019-05-30 19:05:00,807 Elm St, San Francisco,CA,94016 +200588,AA Batteries (4-pack),2,3.84,2019-05-09 17:39:00,922 Meadow St, Atlanta,GA,30301 +200589,AA Batteries (4-pack),1,3.84,2019-05-10 11:42:00,81 Meadow St, Boston,MA,02215 +200590,Wired Headphones,1,11.99,2019-05-07 19:41:00,315 Johnson St, San Francisco,CA,94016 +200591,27in FHD Monitor,1,149.99,2019-05-04 01:48:00,439 10th St, San Francisco,CA,94016 +200592,27in FHD Monitor,1,149.99,2019-05-06 12:55:00,445 1st St, New York City,NY,10001 +200593,AA Batteries (4-pack),2,3.84,2019-05-03 21:22:00,447 Chestnut St, Boston,MA,02215 +200594,iPhone,1,700.0,2019-05-14 16:05:00,909 5th St, Dallas,TX,75001 +200595,USB-C Charging Cable,3,11.95,2019-05-28 10:59:00,670 River St, San Francisco,CA,94016 +200595,Flatscreen TV,1,300.0,2019-05-28 10:59:00,670 River St, San Francisco,CA,94016 +200596,Bose SoundSport Headphones,1,99.99,2019-05-22 12:36:00,580 Jackson St, San Francisco,CA,94016 +200596,27in 4K Gaming Monitor,1,389.99,2019-05-22 12:36:00,580 Jackson St, San Francisco,CA,94016 +200597,AA Batteries (4-pack),2,3.84,2019-05-12 12:15:00,863 Cherry St, Portland,OR,97035 +200598,AAA Batteries (4-pack),4,2.99,2019-05-17 19:25:00,165 Spruce St, Los Angeles,CA,90001 +200599,USB-C Charging Cable,1,11.95,2019-05-11 06:51:00,659 Forest St, San Francisco,CA,94016 +200600,Bose SoundSport Headphones,1,99.99,2019-05-31 15:52:00,524 4th St, Boston,MA,02215 +200601,iPhone,1,700.0,2019-05-11 20:03:00,917 Center St, Los Angeles,CA,90001 +200602,AAA Batteries (4-pack),1,2.99,2019-05-09 11:56:00,700 Lakeview St, San Francisco,CA,94016 +200603,AAA Batteries (4-pack),1,2.99,2019-05-09 21:46:00,486 South St, Dallas,TX,75001 +200604,27in 4K Gaming Monitor,1,389.99,2019-05-14 09:40:00,554 Adams St, San Francisco,CA,94016 +200605,AAA Batteries (4-pack),1,2.99,2019-05-16 15:33:00,396 9th St, San Francisco,CA,94016 +200606,AAA Batteries (4-pack),1,2.99,2019-05-27 19:29:00,918 11th St, Portland,OR,97035 +200607,27in FHD Monitor,1,149.99,2019-05-26 20:20:00,290 Chestnut St, Dallas,TX,75001 +200608,Macbook Pro Laptop,1,1700.0,2019-05-25 22:42:00,479 South St, Los Angeles,CA,90001 +200609,Vareebadd Phone,1,400.0,2019-05-28 09:54:00,699 Cedar St, San Francisco,CA,94016 +200610,USB-C Charging Cable,1,11.95,2019-05-28 15:01:00,285 Hickory St, Los Angeles,CA,90001 +200611,AA Batteries (4-pack),2,3.84,2019-05-28 10:44:00,522 2nd St, New York City,NY,10001 +200612,AAA Batteries (4-pack),2,2.99,2019-05-02 20:29:00,351 7th St, San Francisco,CA,94016 +200613,Lightning Charging Cable,1,14.95,2019-05-05 19:23:00,611 4th St, San Francisco,CA,94016 +200614,Flatscreen TV,1,300.0,2019-05-01 20:40:00,774 10th St, Boston,MA,02215 +200615,AAA Batteries (4-pack),3,2.99,2019-05-10 13:16:00,5 South St, Seattle,WA,98101 +200616,27in 4K Gaming Monitor,1,389.99,2019-05-04 17:04:00,371 Spruce St, Portland,OR,97035 +200617,Wired Headphones,1,11.99,2019-05-21 17:24:00,940 Adams St, Los Angeles,CA,90001 +200618,USB-C Charging Cable,1,11.95,2019-05-13 09:10:00,939 Lake St, Los Angeles,CA,90001 +200619,USB-C Charging Cable,2,11.95,2019-05-20 14:44:00,854 5th St, San Francisco,CA,94016 +200620,Lightning Charging Cable,1,14.95,2019-05-10 08:54:00,760 Elm St, Seattle,WA,98101 +200621,Bose SoundSport Headphones,1,99.99,2019-05-09 12:55:00,968 Main St, San Francisco,CA,94016 +200622,Bose SoundSport Headphones,1,99.99,2019-05-25 04:44:00,141 Johnson St, New York City,NY,10001 +200623,34in Ultrawide Monitor,1,379.99,2019-05-30 13:07:00,20 Walnut St, Los Angeles,CA,90001 +200624,Wired Headphones,1,11.99,2019-05-29 12:55:00,130 Chestnut St, Portland,OR,97035 +200625,Lightning Charging Cable,1,14.95,2019-05-26 11:02:00,528 South St, Dallas,TX,75001 +200626,34in Ultrawide Monitor,1,379.99,2019-05-10 19:31:00,344 5th St, San Francisco,CA,94016 +200627,27in FHD Monitor,1,149.99,2019-05-06 07:51:00,964 Meadow St, Portland,ME,04101 +200628,Apple Airpods Headphones,1,150.0,2019-05-11 17:35:00,924 2nd St, Atlanta,GA,30301 +200629,34in Ultrawide Monitor,1,379.99,2019-05-07 03:05:00,848 Church St, San Francisco,CA,94016 +200630,Bose SoundSport Headphones,1,99.99,2019-05-01 10:10:00,713 Meadow St, Atlanta,GA,30301 +200631,Lightning Charging Cable,1,14.95,2019-05-16 16:18:00,688 1st St, Los Angeles,CA,90001 +200632,ThinkPad Laptop,1,999.99,2019-05-22 21:08:00,943 Pine St, Boston,MA,02215 +200633,AAA Batteries (4-pack),2,2.99,2019-05-20 18:15:00,856 Jefferson St, San Francisco,CA,94016 +200634,Apple Airpods Headphones,1,150.0,2019-05-04 16:12:00,734 Meadow St, San Francisco,CA,94016 +200635,Wired Headphones,1,11.99,2019-05-31 18:23:00,176 Sunset St, Seattle,WA,98101 +200636,AA Batteries (4-pack),1,3.84,2019-05-27 22:47:00,787 Dogwood St, San Francisco,CA,94016 +200637,Apple Airpods Headphones,1,150.0,2019-05-11 11:12:00,745 Wilson St, New York City,NY,10001 +200638,AA Batteries (4-pack),1,3.84,2019-05-25 18:22:00,946 Wilson St, Atlanta,GA,30301 +200639,Bose SoundSport Headphones,1,99.99,2019-05-15 17:44:00,166 Elm St, New York City,NY,10001 +200640,Macbook Pro Laptop,1,1700.0,2019-05-28 18:31:00,414 Ridge St, Dallas,TX,75001 +200641,Lightning Charging Cable,1,14.95,2019-05-13 22:09:00,721 Church St, Los Angeles,CA,90001 +200641,27in 4K Gaming Monitor,1,389.99,2019-05-13 22:09:00,721 Church St, Los Angeles,CA,90001 +200642,Lightning Charging Cable,1,14.95,2019-05-28 01:11:00,441 1st St, Atlanta,GA,30301 +200643,Lightning Charging Cable,1,14.95,2019-05-22 11:25:00,815 14th St, San Francisco,CA,94016 +200644,AAA Batteries (4-pack),1,2.99,2019-05-30 18:33:00,905 11th St, New York City,NY,10001 +200645,20in Monitor,2,109.99,2019-05-23 17:48:00,141 Ridge St, Los Angeles,CA,90001 +200645,AA Batteries (4-pack),1,3.84,2019-05-23 17:48:00,141 Ridge St, Los Angeles,CA,90001 +200646,USB-C Charging Cable,2,11.95,2019-05-30 10:39:00,856 West St, San Francisco,CA,94016 +200647,Lightning Charging Cable,1,14.95,2019-05-12 09:34:00,813 9th St, Boston,MA,02215 +200648,Apple Airpods Headphones,1,150.0,2019-05-08 12:00:00,899 Chestnut St, Boston,MA,02215 +200649,AA Batteries (4-pack),1,3.84,2019-05-26 19:13:00,725 Ridge St, Seattle,WA,98101 +200650,Apple Airpods Headphones,1,150.0,2019-05-14 16:20:00,890 Maple St, New York City,NY,10001 +200650,AAA Batteries (4-pack),2,2.99,2019-05-14 16:20:00,890 Maple St, New York City,NY,10001 +200651,27in FHD Monitor,1,149.99,2019-05-19 04:27:00,49 Dogwood St, Los Angeles,CA,90001 +200652,Wired Headphones,1,11.99,2019-05-05 22:07:00,362 Maple St, Los Angeles,CA,90001 +200653,27in 4K Gaming Monitor,1,389.99,2019-05-29 18:57:00,69 Highland St, Portland,OR,97035 +200653,Google Phone,1,600.0,2019-05-29 18:57:00,69 Highland St, Portland,OR,97035 +200654,ThinkPad Laptop,1,999.99,2019-05-29 13:55:00,194 Walnut St, New York City,NY,10001 +200655,34in Ultrawide Monitor,1,379.99,2019-05-12 22:48:00,972 4th St, Los Angeles,CA,90001 +200656,AA Batteries (4-pack),1,3.84,2019-05-22 22:30:00,119 Church St, San Francisco,CA,94016 +200657,Lightning Charging Cable,1,14.95,2019-05-24 12:43:00,117 Center St, Los Angeles,CA,90001 +200658,20in Monitor,1,109.99,2019-05-31 21:22:00,979 Lincoln St, Austin,TX,73301 +200659,ThinkPad Laptop,1,999.99,2019-05-02 17:35:00,522 Wilson St, San Francisco,CA,94016 +200660,27in FHD Monitor,1,149.99,2019-05-30 15:30:00,121 2nd St, Seattle,WA,98101 +200661,27in 4K Gaming Monitor,1,389.99,2019-05-15 10:23:00,952 Cedar St, Boston,MA,02215 +200662,AA Batteries (4-pack),4,3.84,2019-05-09 14:48:00,1 7th St, Los Angeles,CA,90001 +200663,AA Batteries (4-pack),2,3.84,2019-05-31 22:03:00,336 Jefferson St, San Francisco,CA,94016 +200664,Lightning Charging Cable,1,14.95,2019-05-13 19:45:00,292 Jefferson St, Los Angeles,CA,90001 +200665,Wired Headphones,1,11.99,2019-05-22 11:03:00,472 Madison St, San Francisco,CA,94016 +200666,34in Ultrawide Monitor,1,379.99,2019-05-28 00:10:00,2 Cherry St, San Francisco,CA,94016 +200667,27in 4K Gaming Monitor,1,389.99,2019-05-28 13:10:00,466 Jefferson St, Boston,MA,02215 +200668,AAA Batteries (4-pack),2,2.99,2019-05-07 10:50:00,153 Park St, San Francisco,CA,94016 +200669,Wired Headphones,1,11.99,2019-05-08 21:31:00,907 Wilson St, San Francisco,CA,94016 +200670,Lightning Charging Cable,1,14.95,2019-05-15 11:26:00,848 Lincoln St, Portland,OR,97035 +200671,Lightning Charging Cable,1,14.95,2019-05-11 16:52:00,158 Wilson St, Dallas,TX,75001 +200672,USB-C Charging Cable,1,11.95,2019-05-28 17:42:00,27 Park St, Boston,MA,02215 +200673,Apple Airpods Headphones,1,150.0,2019-05-22 21:51:00,915 Wilson St, San Francisco,CA,94016 +200674,Wired Headphones,1,11.99,2019-05-04 06:41:00,546 River St, Atlanta,GA,30301 +200675,AA Batteries (4-pack),1,3.84,2019-05-16 16:01:00,619 Wilson St, Los Angeles,CA,90001 +200676,USB-C Charging Cable,1,11.95,2019-05-13 06:19:00,330 7th St, San Francisco,CA,94016 +200677,AAA Batteries (4-pack),1,2.99,2019-05-29 13:52:00,264 Willow St, Boston,MA,02215 +200678,AA Batteries (4-pack),1,3.84,2019-05-19 18:39:00,519 Lake St, Boston,MA,02215 +200679,USB-C Charging Cable,1,11.95,2019-05-18 09:56:00,586 Center St, Atlanta,GA,30301 +200680,AA Batteries (4-pack),1,3.84,2019-05-03 13:28:00,387 Spruce St, Boston,MA,02215 +200681,27in FHD Monitor,1,149.99,2019-05-22 12:16:00,908 West St, Dallas,TX,75001 +200682,iPhone,1,700.0,2019-05-22 23:22:00,864 Maple St, Los Angeles,CA,90001 +200683,AAA Batteries (4-pack),2,2.99,2019-05-02 10:46:00,696 Lincoln St, New York City,NY,10001 +200684,Bose SoundSport Headphones,1,99.99,2019-05-13 23:18:00,770 10th St, New York City,NY,10001 +200685,AAA Batteries (4-pack),1,2.99,2019-05-12 20:42:00,799 Ridge St, Boston,MA,02215 +200686,AAA Batteries (4-pack),1,2.99,2019-05-06 11:34:00,23 Pine St, Dallas,TX,75001 +200687,Lightning Charging Cable,1,14.95,2019-05-11 11:31:00,878 7th St, Atlanta,GA,30301 +200688,27in 4K Gaming Monitor,1,389.99,2019-05-22 10:31:00,731 Wilson St, Los Angeles,CA,90001 +200689,USB-C Charging Cable,1,11.95,2019-05-30 13:24:00,804 13th St, Portland,ME,04101 +200690,27in FHD Monitor,1,149.99,2019-05-20 19:31:00,781 Maple St, Los Angeles,CA,90001 +200691,Bose SoundSport Headphones,1,99.99,2019-05-14 15:38:00,261 Johnson St, Dallas,TX,75001 +200692,AA Batteries (4-pack),1,3.84,2019-05-02 02:17:00,163 Chestnut St, Los Angeles,CA,90001 +200693,AAA Batteries (4-pack),1,2.99,2019-05-29 11:08:00,747 Meadow St, San Francisco,CA,94016 +200694,34in Ultrawide Monitor,1,379.99,2019-05-01 14:49:00,690 Cedar St, Los Angeles,CA,90001 +200695,Wired Headphones,1,11.99,2019-05-31 11:28:00,934 Church St, Atlanta,GA,30301 +200696,20in Monitor,1,109.99,2019-05-18 18:44:00,461 Lincoln St, Atlanta,GA,30301 +200697,Google Phone,1,600.0,2019-05-05 22:54:00,989 Meadow St, Los Angeles,CA,90001 +200698,AAA Batteries (4-pack),2,2.99,2019-05-18 10:44:00,340 Spruce St, New York City,NY,10001 +200699,AAA Batteries (4-pack),1,2.99,2019-05-13 15:20:00,160 Maple St, San Francisco,CA,94016 +200700,27in FHD Monitor,1,149.99,2019-05-28 10:44:00,230 Wilson St, San Francisco,CA,94016 +200701,Apple Airpods Headphones,1,150.0,2019-05-23 10:42:00,855 Church St, San Francisco,CA,94016 +200702,USB-C Charging Cable,2,11.95,2019-05-21 09:02:00,716 5th St, San Francisco,CA,94016 +200703,AA Batteries (4-pack),1,3.84,2019-05-19 20:41:00,697 Maple St, San Francisco,CA,94016 +200704,Apple Airpods Headphones,1,150.0,2019-05-24 15:47:00,870 Walnut St, New York City,NY,10001 +200705,Macbook Pro Laptop,1,1700.0,2019-05-21 05:53:00,179 Washington St, San Francisco,CA,94016 +200706,27in 4K Gaming Monitor,1,389.99,2019-05-25 20:17:00,592 Church St, Seattle,WA,98101 +200707,Lightning Charging Cable,1,14.95,2019-05-03 20:55:00,885 Elm St, Seattle,WA,98101 +200708,Apple Airpods Headphones,1,150.0,2019-05-26 17:00:00,539 2nd St, Boston,MA,02215 +200709,AA Batteries (4-pack),2,3.84,2019-05-19 19:24:00,557 Dogwood St, Seattle,WA,98101 +200710,Wired Headphones,1,11.99,2019-05-05 10:24:00,621 South St, Atlanta,GA,30301 +200711,Wired Headphones,1,11.99,2019-05-21 14:34:00,715 Elm St, Los Angeles,CA,90001 +200712,AA Batteries (4-pack),1,3.84,2019-05-26 16:27:00,321 5th St, New York City,NY,10001 +200713,27in 4K Gaming Monitor,1,389.99,2019-05-26 09:43:00,749 River St, New York City,NY,10001 +200714,34in Ultrawide Monitor,1,379.99,2019-05-19 19:34:00,878 1st St, Seattle,WA,98101 +200715,Google Phone,1,600.0,2019-05-04 04:10:00,698 Cedar St, Boston,MA,02215 +200716,USB-C Charging Cable,1,11.95,2019-05-22 07:26:00,834 Jackson St, San Francisco,CA,94016 +200717,AAA Batteries (4-pack),1,2.99,2019-05-25 00:31:00,442 Cherry St, San Francisco,CA,94016 +200718,USB-C Charging Cable,1,11.95,2019-05-13 23:13:00,132 Center St, Dallas,TX,75001 +200719,USB-C Charging Cable,1,11.95,2019-05-05 10:03:00,300 Madison St, Seattle,WA,98101 +200720,AA Batteries (4-pack),1,3.84,2019-05-09 20:18:00,976 Adams St, Boston,MA,02215 +200721,Wired Headphones,1,11.99,2019-05-27 21:12:00,926 Sunset St, Dallas,TX,75001 +200722,Bose SoundSport Headphones,1,99.99,2019-05-17 13:34:00,887 Church St, Boston,MA,02215 +200723,iPhone,1,700.0,2019-05-22 18:32:00,189 Walnut St, San Francisco,CA,94016 +200723,Lightning Charging Cable,1,14.95,2019-05-22 18:32:00,189 Walnut St, San Francisco,CA,94016 +200724,Wired Headphones,1,11.99,2019-05-03 10:24:00,380 Highland St, Austin,TX,73301 +200725,AAA Batteries (4-pack),1,2.99,2019-05-29 23:48:00,474 Hickory St, New York City,NY,10001 +200726,Vareebadd Phone,1,400.0,2019-05-17 06:24:00,579 12th St, San Francisco,CA,94016 +200727,27in 4K Gaming Monitor,1,389.99,2019-05-27 21:38:00,363 Washington St, San Francisco,CA,94016 +200728,Google Phone,1,600.0,2019-05-22 13:32:00,253 Center St, Boston,MA,02215 +200729,27in 4K Gaming Monitor,1,389.99,2019-05-19 07:07:00,649 Jackson St, San Francisco,CA,94016 +200729,iPhone,1,700.0,2019-05-19 07:07:00,649 Jackson St, San Francisco,CA,94016 +200730,AA Batteries (4-pack),1,3.84,2019-05-26 11:34:00,93 Maple St, San Francisco,CA,94016 +200731,AAA Batteries (4-pack),1,2.99,2019-05-11 22:37:00,7 Pine St, San Francisco,CA,94016 +200732,Lightning Charging Cable,1,14.95,2019-05-26 17:19:00,830 North St, San Francisco,CA,94016 +200733,Wired Headphones,1,11.99,2019-05-08 20:39:00,744 Church St, San Francisco,CA,94016 +200734,Apple Airpods Headphones,1,150.0,2019-05-05 15:52:00,667 10th St, Boston,MA,02215 +200735,AA Batteries (4-pack),1,3.84,2019-05-09 13:41:00,894 Lincoln St, Seattle,WA,98101 +200736,AAA Batteries (4-pack),2,2.99,2019-05-29 12:09:00,149 2nd St, Dallas,TX,75001 +200737,Lightning Charging Cable,2,14.95,2019-05-26 19:55:00,777 Chestnut St, Boston,MA,02215 +200738,27in FHD Monitor,1,149.99,2019-05-26 14:05:00,725 12th St, New York City,NY,10001 +200739,AA Batteries (4-pack),2,3.84,2019-05-14 15:28:00,427 Washington St, Los Angeles,CA,90001 +200740,Flatscreen TV,1,300.0,2019-05-03 14:35:00,505 Dogwood St, Seattle,WA,98101 +200741,Bose SoundSport Headphones,1,99.99,2019-05-18 11:01:00,917 Ridge St, San Francisco,CA,94016 +200742,AAA Batteries (4-pack),1,2.99,2019-05-09 19:53:00,174 West St, Seattle,WA,98101 +200743,27in 4K Gaming Monitor,2,389.99,2019-05-25 10:13:00,833 North St, San Francisco,CA,94016 +200744,USB-C Charging Cable,1,11.95,2019-05-18 19:13:00,376 Main St, Dallas,TX,75001 +200745,Wired Headphones,1,11.99,2019-05-05 14:33:00,143 Pine St, New York City,NY,10001 +200746,Bose SoundSport Headphones,1,99.99,2019-05-04 08:06:00,733 Adams St, San Francisco,CA,94016 +200747,Flatscreen TV,1,300.0,2019-05-09 20:22:00,1 Adams St, Boston,MA,02215 +200748,Bose SoundSport Headphones,1,99.99,2019-05-13 17:37:00,806 7th St, Los Angeles,CA,90001 +200749,27in FHD Monitor,1,149.99,2019-05-25 20:38:00,265 Main St, San Francisco,CA,94016 +200750,Bose SoundSport Headphones,1,99.99,2019-05-28 14:35:00,921 Jefferson St, Atlanta,GA,30301 +200751,Wired Headphones,1,11.99,2019-05-23 08:07:00,211 River St, Portland,OR,97035 +200752,34in Ultrawide Monitor,1,379.99,2019-05-26 00:56:00,438 Jackson St, Dallas,TX,75001 +200753,AA Batteries (4-pack),2,3.84,2019-05-30 18:38:00,63 Center St, San Francisco,CA,94016 +200754,Bose SoundSport Headphones,1,99.99,2019-05-26 09:50:00,602 9th St, Los Angeles,CA,90001 +200755,34in Ultrawide Monitor,1,379.99,2019-05-27 14:27:00,195 Highland St, Boston,MA,02215 +200756,Apple Airpods Headphones,1,150.0,2019-05-01 16:27:00,688 Cedar St, Los Angeles,CA,90001 +200757,Google Phone,1,600.0,2019-05-05 20:27:00,887 Ridge St, Boston,MA,02215 +200757,USB-C Charging Cable,2,11.95,2019-05-05 20:27:00,887 Ridge St, Boston,MA,02215 +200758,Wired Headphones,1,11.99,2019-05-03 20:14:00,820 6th St, Boston,MA,02215 +200759,Apple Airpods Headphones,1,150.0,2019-05-04 16:21:00,11 Hill St, Atlanta,GA,30301 +200760,Wired Headphones,1,11.99,2019-05-06 15:04:00,975 Meadow St, Dallas,TX,75001 +200761,iPhone,1,700.0,2019-05-12 16:00:00,130 South St, Portland,ME,04101 +200761,Lightning Charging Cable,1,14.95,2019-05-12 16:00:00,130 South St, Portland,ME,04101 +200762,Macbook Pro Laptop,1,1700.0,2019-05-27 08:41:00,534 Cherry St, Dallas,TX,75001 +200763,27in FHD Monitor,1,149.99,2019-05-17 20:37:00,849 Meadow St, Austin,TX,73301 +200764,Wired Headphones,1,11.99,2019-05-27 21:16:00,148 Spruce St, New York City,NY,10001 +200765,Apple Airpods Headphones,1,150.0,2019-05-09 20:16:00,359 5th St, Boston,MA,02215 +200766,AA Batteries (4-pack),1,3.84,2019-05-31 19:21:00,188 Willow St, San Francisco,CA,94016 +200767,AAA Batteries (4-pack),2,2.99,2019-05-14 17:57:00,23 13th St, Dallas,TX,75001 +200768,Apple Airpods Headphones,1,150.0,2019-05-04 17:16:00,866 Hill St, Seattle,WA,98101 +200769,Bose SoundSport Headphones,1,99.99,2019-05-03 13:41:00,376 Cedar St, San Francisco,CA,94016 +200770,USB-C Charging Cable,1,11.95,2019-05-05 07:46:00,297 Lake St, Seattle,WA,98101 +200771,27in 4K Gaming Monitor,1,389.99,2019-05-31 14:04:00,297 South St, San Francisco,CA,94016 +200772,Wired Headphones,1,11.99,2019-05-27 18:57:00,485 Cedar St, San Francisco,CA,94016 +200773,Wired Headphones,1,11.99,2019-05-12 19:51:00,809 Cherry St, Dallas,TX,75001 +200774,Flatscreen TV,1,300.0,2019-05-19 10:41:00,141 Walnut St, San Francisco,CA,94016 +200775,AAA Batteries (4-pack),2,2.99,2019-05-13 17:49:00,837 Hill St, Seattle,WA,98101 +200776,USB-C Charging Cable,1,11.95,2019-05-23 02:31:00,178 West St, Boston,MA,02215 +200777,Lightning Charging Cable,1,14.95,2019-05-07 23:24:00,466 Wilson St, San Francisco,CA,94016 +200778,AAA Batteries (4-pack),1,2.99,2019-05-14 12:15:00,326 Center St, Los Angeles,CA,90001 +200779,USB-C Charging Cable,1,11.95,2019-05-14 14:40:00,287 Ridge St, San Francisco,CA,94016 +200780,Flatscreen TV,1,300.0,2019-05-30 14:53:00,297 12th St, Portland,OR,97035 +200781,AA Batteries (4-pack),1,3.84,2019-05-17 10:19:00,527 Ridge St, Los Angeles,CA,90001 +200782,20in Monitor,1,109.99,2019-05-02 11:09:00,45 South St, San Francisco,CA,94016 +200783,Wired Headphones,1,11.99,2019-05-20 11:26:00,393 Cherry St, Austin,TX,73301 +200784,AA Batteries (4-pack),1,3.84,2019-05-07 20:04:00,757 12th St, Los Angeles,CA,90001 +200785,34in Ultrawide Monitor,1,379.99,2019-05-10 21:05:00,570 10th St, Seattle,WA,98101 +200786,ThinkPad Laptop,1,999.99,2019-05-25 12:02:00,824 6th St, Atlanta,GA,30301 +200787,34in Ultrawide Monitor,1,379.99,2019-05-06 17:44:00,617 Jackson St, Boston,MA,02215 +200788,Wired Headphones,1,11.99,2019-05-02 16:05:00,669 7th St, Boston,MA,02215 +200789,AA Batteries (4-pack),1,3.84,2019-05-31 00:49:00,794 Hickory St, Los Angeles,CA,90001 +200790,AA Batteries (4-pack),1,3.84,2019-05-17 12:11:00,721 Madison St, Los Angeles,CA,90001 +200791,AAA Batteries (4-pack),1,2.99,2019-05-17 18:28:00,302 Hickory St, Los Angeles,CA,90001 +200792,Lightning Charging Cable,1,14.95,2019-05-25 12:06:00,270 Center St, San Francisco,CA,94016 +200793,Google Phone,1,600.0,2019-05-07 19:45:00,739 Johnson St, San Francisco,CA,94016 +200794,27in FHD Monitor,1,149.99,2019-05-23 00:21:00,113 13th St, Boston,MA,02215 +200795,iPhone,1,700.0,2019-05-28 11:23:00,149 1st St, Dallas,TX,75001 +200796,AAA Batteries (4-pack),2,2.99,2019-05-03 22:00:00,694 Lakeview St, Atlanta,GA,30301 +200797,Bose SoundSport Headphones,1,99.99,2019-05-13 15:31:00,819 North St, San Francisco,CA,94016 +200798,Macbook Pro Laptop,1,1700.0,2019-05-17 08:25:00,25 13th St, San Francisco,CA,94016 +200799,27in FHD Monitor,1,149.99,2019-05-17 12:30:00,290 14th St, Los Angeles,CA,90001 +200800,USB-C Charging Cable,1,11.95,2019-05-10 16:18:00,58 11th St, New York City,NY,10001 +200801,Wired Headphones,1,11.99,2019-05-02 22:53:00,270 Willow St, Seattle,WA,98101 +200802,AA Batteries (4-pack),1,3.84,2019-05-03 12:25:00,414 South St, Atlanta,GA,30301 +200803,AAA Batteries (4-pack),1,2.99,2019-05-11 14:31:00,539 Washington St, Boston,MA,02215 +200804,Wired Headphones,1,11.99,2019-05-31 11:03:00,784 North St, Los Angeles,CA,90001 +200805,27in 4K Gaming Monitor,1,389.99,2019-05-13 23:43:00,56 12th St, Seattle,WA,98101 +200806,Bose SoundSport Headphones,1,99.99,2019-05-17 13:15:00,81 Elm St, Boston,MA,02215 +200807,Apple Airpods Headphones,1,150.0,2019-05-08 15:48:00,37 Dogwood St, Seattle,WA,98101 +200808,AA Batteries (4-pack),2,3.84,2019-05-26 18:52:00,198 Cherry St, Austin,TX,73301 +200809,Wired Headphones,1,11.99,2019-05-29 22:30:00,690 Cherry St, San Francisco,CA,94016 +200810,USB-C Charging Cable,1,11.95,2019-05-24 22:24:00,153 6th St, Dallas,TX,75001 +200811,AAA Batteries (4-pack),1,2.99,2019-05-20 17:00:00,511 Willow St, New York City,NY,10001 +200812,Flatscreen TV,1,300.0,2019-05-25 07:58:00,705 Forest St, Atlanta,GA,30301 +200813,AAA Batteries (4-pack),1,2.99,2019-05-13 02:26:00,187 Ridge St, New York City,NY,10001 +200814,34in Ultrawide Monitor,1,379.99,2019-05-24 14:36:00,283 Hill St, New York City,NY,10001 +200815,USB-C Charging Cable,1,11.95,2019-05-29 19:50:00,291 Washington St, New York City,NY,10001 +200816,AAA Batteries (4-pack),1,2.99,2019-05-06 11:41:00,960 Cherry St, San Francisco,CA,94016 +200817,Lightning Charging Cable,1,14.95,2019-05-23 10:19:00,484 Lake St, San Francisco,CA,94016 +200818,USB-C Charging Cable,1,11.95,2019-05-28 10:21:00,906 Cedar St, Portland,OR,97035 +200819,27in 4K Gaming Monitor,1,389.99,2019-05-27 22:19:00,254 North St, San Francisco,CA,94016 +200820,Wired Headphones,1,11.99,2019-05-24 13:16:00,635 Hill St, Atlanta,GA,30301 +200821,Lightning Charging Cable,1,14.95,2019-05-12 16:00:00,121 4th St, Boston,MA,02215 +200821,34in Ultrawide Monitor,1,379.99,2019-05-12 16:00:00,121 4th St, Boston,MA,02215 +200822,AAA Batteries (4-pack),1,2.99,2019-05-26 16:04:00,498 13th St, Austin,TX,73301 +200823,Macbook Pro Laptop,1,1700.0,2019-05-08 11:24:00,434 Cedar St, Boston,MA,02215 +200824,AAA Batteries (4-pack),2,2.99,2019-05-25 05:54:00,482 13th St, San Francisco,CA,94016 +200825,Bose SoundSport Headphones,1,99.99,2019-05-14 22:08:00,160 9th St, New York City,NY,10001 +200826,AA Batteries (4-pack),1,3.84,2019-05-08 18:09:00,12 Chestnut St, Seattle,WA,98101 +200827,AAA Batteries (4-pack),1,2.99,2019-05-02 13:46:00,964 Pine St, Boston,MA,02215 +200828,27in FHD Monitor,1,149.99,2019-05-27 07:53:00,425 Jackson St, New York City,NY,10001 +200829,Apple Airpods Headphones,1,150.0,2019-05-28 21:19:00,533 8th St, New York City,NY,10001 +200830,AAA Batteries (4-pack),2,2.99,2019-05-01 11:28:00,750 Church St, Austin,TX,73301 +200831,Google Phone,1,600.0,2019-05-12 23:47:00,48 Washington St, San Francisco,CA,94016 +200832,USB-C Charging Cable,1,11.95,2019-05-09 17:12:00,587 Cedar St, San Francisco,CA,94016 +200833,AA Batteries (4-pack),1,3.84,2019-05-30 12:43:00,708 9th St, Seattle,WA,98101 +200834,AA Batteries (4-pack),2,3.84,2019-05-22 12:59:00,889 Wilson St, Los Angeles,CA,90001 +200835,Apple Airpods Headphones,1,150.0,2019-05-17 09:47:00,882 Meadow St, Portland,OR,97035 +200836,AAA Batteries (4-pack),1,2.99,2019-05-06 13:33:00,377 Adams St, Dallas,TX,75001 +200836,AAA Batteries (4-pack),3,2.99,2019-05-06 13:33:00,377 Adams St, Dallas,TX,75001 +200837,Bose SoundSport Headphones,1,99.99,2019-05-14 00:26:00,1 Lincoln St, Boston,MA,02215 +200838,AAA Batteries (4-pack),2,2.99,2019-05-06 08:58:00,482 Spruce St, Atlanta,GA,30301 +200839,AAA Batteries (4-pack),1,2.99,2019-05-16 12:39:00,539 Meadow St, Boston,MA,02215 +200840,AAA Batteries (4-pack),1,2.99,2019-05-31 18:56:00,792 Lake St, New York City,NY,10001 +200841,27in 4K Gaming Monitor,1,389.99,2019-05-19 15:20:00,293 Washington St, Portland,OR,97035 +200842,AA Batteries (4-pack),1,3.84,2019-05-31 12:14:00,464 2nd St, Los Angeles,CA,90001 +200843,Bose SoundSport Headphones,1,99.99,2019-05-07 19:27:00,449 Forest St, New York City,NY,10001 +200844,Flatscreen TV,1,300.0,2019-05-16 15:10:00,314 Ridge St, San Francisco,CA,94016 +200845,USB-C Charging Cable,1,11.95,2019-05-07 22:44:00,966 West St, Los Angeles,CA,90001 +200846,USB-C Charging Cable,1,11.95,2019-05-29 22:19:00,93 Main St, Atlanta,GA,30301 +200847,Wired Headphones,1,11.99,2019-05-09 23:33:00,661 Madison St, Los Angeles,CA,90001 +200847,AAA Batteries (4-pack),4,2.99,2019-05-09 23:33:00,661 Madison St, Los Angeles,CA,90001 +200848,Lightning Charging Cable,1,14.95,2019-05-20 11:33:00,101 Walnut St, New York City,NY,10001 +200849,Apple Airpods Headphones,1,150.0,2019-05-27 17:33:00,4 Cedar St, New York City,NY,10001 +200850,Lightning Charging Cable,1,14.95,2019-05-23 09:54:00,114 Hill St, San Francisco,CA,94016 +200851,ThinkPad Laptop,1,999.99,2019-05-17 12:26:00,262 Cedar St, Boston,MA,02215 +200851,AAA Batteries (4-pack),1,2.99,2019-05-17 12:26:00,262 Cedar St, Boston,MA,02215 +200852,Bose SoundSport Headphones,1,99.99,2019-05-19 16:17:00,841 Lake St, New York City,NY,10001 +200853,Bose SoundSport Headphones,1,99.99,2019-05-23 20:28:00,303 Madison St, Austin,TX,73301 +200854,USB-C Charging Cable,1,11.95,2019-05-29 17:04:00,842 14th St, Austin,TX,73301 +200855,Apple Airpods Headphones,1,150.0,2019-05-09 08:40:00,379 5th St, New York City,NY,10001 +200856,Apple Airpods Headphones,1,150.0,2019-05-11 17:11:00,53 Pine St, Seattle,WA,98101 +200857,Wired Headphones,1,11.99,2019-05-01 12:08:00,976 Jefferson St, San Francisco,CA,94016 +200858,USB-C Charging Cable,3,11.95,2019-05-20 17:37:00,139 Maple St, San Francisco,CA,94016 +200859,Apple Airpods Headphones,1,150.0,2019-05-26 12:36:00,521 Hill St, San Francisco,CA,94016 +200860,Wired Headphones,1,11.99,2019-05-24 14:27:00,327 Ridge St, Boston,MA,02215 +200861,AAA Batteries (4-pack),2,2.99,2019-05-11 17:25:00,673 Lake St, San Francisco,CA,94016 +200862,AAA Batteries (4-pack),1,2.99,2019-05-07 13:06:00,407 Madison St, Dallas,TX,75001 +200863,Macbook Pro Laptop,1,1700.0,2019-05-17 16:46:00,828 Dogwood St, Los Angeles,CA,90001 +200864,Lightning Charging Cable,1,14.95,2019-05-24 15:32:00,466 Lakeview St, Boston,MA,02215 +200865,USB-C Charging Cable,1,11.95,2019-05-02 16:56:00,970 Hickory St, Los Angeles,CA,90001 +200866,AAA Batteries (4-pack),1,2.99,2019-05-14 21:32:00,216 Walnut St, Dallas,TX,75001 +200867,Lightning Charging Cable,1,14.95,2019-05-06 17:28:00,805 Adams St, Los Angeles,CA,90001 +200868,USB-C Charging Cable,1,11.95,2019-05-10 06:12:00,867 Elm St, New York City,NY,10001 +200869,27in FHD Monitor,1,149.99,2019-05-14 12:23:00,895 Ridge St, New York City,NY,10001 +200870,AA Batteries (4-pack),1,3.84,2019-05-21 13:04:00,311 11th St, San Francisco,CA,94016 +200871,Bose SoundSport Headphones,1,99.99,2019-05-28 16:45:00,533 13th St, Seattle,WA,98101 +200872,AAA Batteries (4-pack),3,2.99,2019-05-10 22:59:00,780 13th St, Los Angeles,CA,90001 +200873,AA Batteries (4-pack),1,3.84,2019-05-26 13:37:00,521 Highland St, San Francisco,CA,94016 +200874,27in FHD Monitor,1,149.99,2019-05-11 10:17:00,969 Jackson St, San Francisco,CA,94016 +200875,34in Ultrawide Monitor,1,379.99,2019-05-01 17:33:00,194 5th St, Los Angeles,CA,90001 +200876,USB-C Charging Cable,1,11.95,2019-05-25 11:19:00,744 Forest St, San Francisco,CA,94016 +200877,Wired Headphones,1,11.99,2019-05-27 12:32:00,409 Cedar St, San Francisco,CA,94016 +200878,AAA Batteries (4-pack),2,2.99,2019-05-29 23:54:00,643 Walnut St, New York City,NY,10001 +200879,27in FHD Monitor,1,149.99,2019-05-23 09:08:00,541 Chestnut St, San Francisco,CA,94016 +200879,Bose SoundSport Headphones,1,99.99,2019-05-23 09:08:00,541 Chestnut St, San Francisco,CA,94016 +200880,ThinkPad Laptop,1,999.99,2019-05-10 18:14:00,184 River St, Portland,OR,97035 +200881,Wired Headphones,1,11.99,2019-05-07 14:32:00,97 Cherry St, Boston,MA,02215 +200882,Apple Airpods Headphones,1,150.0,2019-05-01 17:15:00,161 Meadow St, Atlanta,GA,30301 +200883,AAA Batteries (4-pack),1,2.99,2019-05-29 08:28:00,267 North St, Boston,MA,02215 +200884,Lightning Charging Cable,1,14.95,2019-05-16 11:17:00,803 Forest St, Atlanta,GA,30301 +200885,Apple Airpods Headphones,1,150.0,2019-05-21 19:03:00,397 Hill St, Dallas,TX,75001 +200886,20in Monitor,1,109.99,2019-05-02 19:27:00,680 Willow St, San Francisco,CA,94016 +200887,27in FHD Monitor,1,149.99,2019-05-24 02:59:00,972 10th St, San Francisco,CA,94016 +200888,Bose SoundSport Headphones,1,99.99,2019-05-31 11:57:00,446 Madison St, New York City,NY,10001 +200889,iPhone,1,700.0,2019-05-22 18:53:00,999 Spruce St, San Francisco,CA,94016 +200890,USB-C Charging Cable,1,11.95,2019-05-27 19:07:00,868 11th St, New York City,NY,10001 +200891,34in Ultrawide Monitor,1,379.99,2019-05-10 16:00:00,653 Hickory St, San Francisco,CA,94016 +200892,USB-C Charging Cable,1,11.95,2019-05-18 11:38:00,841 Willow St, Austin,TX,73301 +200893,Apple Airpods Headphones,1,150.0,2019-05-21 09:40:00,938 Dogwood St, Austin,TX,73301 +200894,LG Washing Machine,1,600.0,2019-05-06 10:45:00,923 Dogwood St, New York City,NY,10001 +200895,Bose SoundSport Headphones,1,99.99,2019-05-09 09:51:00,412 9th St, Portland,OR,97035 +200896,Apple Airpods Headphones,1,150.0,2019-05-29 13:54:00,34 Jefferson St, Atlanta,GA,30301 +200897,27in 4K Gaming Monitor,1,389.99,2019-05-14 13:13:00,71 Johnson St, Dallas,TX,75001 +200898,34in Ultrawide Monitor,1,379.99,2019-05-05 13:09:00,534 Lincoln St, Los Angeles,CA,90001 +200899,Lightning Charging Cable,1,14.95,2019-05-11 15:00:00,242 Wilson St, San Francisco,CA,94016 +200900,USB-C Charging Cable,1,11.95,2019-05-08 22:25:00,315 11th St, Los Angeles,CA,90001 +200901,ThinkPad Laptop,1,999.99,2019-05-12 11:05:00,488 Park St, Dallas,TX,75001 +200902,Macbook Pro Laptop,1,1700.0,2019-05-26 22:06:00,358 Cedar St, San Francisco,CA,94016 +200903,USB-C Charging Cable,1,11.95,2019-05-08 17:17:00,49 Spruce St, New York City,NY,10001 +200904,Flatscreen TV,1,300.0,2019-05-18 10:34:00,697 Elm St, San Francisco,CA,94016 +200905,Bose SoundSport Headphones,1,99.99,2019-05-25 19:16:00,832 Park St, Boston,MA,02215 +200906,Lightning Charging Cable,1,14.95,2019-05-19 13:21:00,221 Elm St, New York City,NY,10001 +200906,USB-C Charging Cable,1,11.95,2019-05-19 13:21:00,221 Elm St, New York City,NY,10001 +200907,iPhone,1,700.0,2019-05-11 22:37:00,827 South St, Boston,MA,02215 +200908,Apple Airpods Headphones,1,150.0,2019-05-02 11:55:00,517 Dogwood St, Los Angeles,CA,90001 +200909,Flatscreen TV,1,300.0,2019-05-04 16:39:00,156 2nd St, Dallas,TX,75001 +200910,Bose SoundSport Headphones,1,99.99,2019-05-09 11:49:00,671 10th St, San Francisco,CA,94016 +200911,AAA Batteries (4-pack),1,2.99,2019-05-04 09:37:00,627 Johnson St, Boston,MA,02215 +200912,27in 4K Gaming Monitor,1,389.99,2019-05-18 21:09:00,415 Spruce St, Portland,OR,97035 +200913,Wired Headphones,1,11.99,2019-05-19 20:31:00,56 Meadow St, Boston,MA,02215 +200914,Lightning Charging Cable,1,14.95,2019-05-02 19:18:00,215 Ridge St, Los Angeles,CA,90001 +200915,AA Batteries (4-pack),1,3.84,2019-05-25 19:06:00,132 7th St, Boston,MA,02215 +200916,USB-C Charging Cable,1,11.95,2019-05-24 11:26:00,370 8th St, San Francisco,CA,94016 +200917,20in Monitor,1,109.99,2019-06-01 00:36:00,761 Highland St, Austin,TX,73301 +200918,Vareebadd Phone,1,400.0,2019-05-08 16:18:00,262 6th St, Los Angeles,CA,90001 +200919,AA Batteries (4-pack),1,3.84,2019-05-23 18:22:00,757 Johnson St, San Francisco,CA,94016 +200920,27in FHD Monitor,1,149.99,2019-05-19 20:39:00,590 4th St, Seattle,WA,98101 +200921,27in 4K Gaming Monitor,1,389.99,2019-05-11 19:30:00,625 11th St, Portland,ME,04101 +200922,AAA Batteries (4-pack),2,2.99,2019-05-28 12:25:00,594 Forest St, Los Angeles,CA,90001 +200923,AA Batteries (4-pack),1,3.84,2019-05-01 07:01:00,732 Jackson St, New York City,NY,10001 +200924,Lightning Charging Cable,1,14.95,2019-05-22 14:28:00,448 13th St, Atlanta,GA,30301 +200925,AA Batteries (4-pack),1,3.84,2019-05-15 18:43:00,374 Main St, Boston,MA,02215 +200926,Lightning Charging Cable,1,14.95,2019-05-29 09:13:00,890 South St, Dallas,TX,75001 +200927,Google Phone,1,600.0,2019-05-24 20:49:00,45 North St, New York City,NY,10001 +200928,AA Batteries (4-pack),1,3.84,2019-05-28 03:01:00,622 South St, Boston,MA,02215 +200929,iPhone,1,700.0,2019-05-11 11:23:00,463 Pine St, Boston,MA,02215 +200930,Lightning Charging Cable,1,14.95,2019-05-21 20:42:00,415 West St, San Francisco,CA,94016 +200931,27in 4K Gaming Monitor,1,389.99,2019-05-01 18:31:00,778 2nd St, Boston,MA,02215 +200932,Wired Headphones,1,11.99,2019-05-26 20:14:00,318 Lake St, San Francisco,CA,94016 +200933,27in FHD Monitor,1,149.99,2019-05-20 19:16:00,567 Forest St, Los Angeles,CA,90001 +200934,AA Batteries (4-pack),1,3.84,2019-05-30 17:33:00,131 9th St, San Francisco,CA,94016 +200935,USB-C Charging Cable,1,11.95,2019-05-13 20:33:00,951 Walnut St, Austin,TX,73301 +200936,Macbook Pro Laptop,1,1700.0,2019-05-28 08:13:00,257 Meadow St, Los Angeles,CA,90001 +200937,AA Batteries (4-pack),2,3.84,2019-05-19 23:44:00,273 12th St, New York City,NY,10001 +200938,AAA Batteries (4-pack),1,2.99,2019-05-21 11:54:00,463 Main St, New York City,NY,10001 +200939,ThinkPad Laptop,1,999.99,2019-05-31 02:16:00,232 2nd St, Boston,MA,02215 +200940,Apple Airpods Headphones,1,150.0,2019-05-19 10:22:00,727 Dogwood St, Boston,MA,02215 +200941,ThinkPad Laptop,1,999.99,2019-05-11 14:19:00,593 River St, Los Angeles,CA,90001 +200942,Apple Airpods Headphones,1,150.0,2019-05-29 15:37:00,156 Spruce St, Dallas,TX,75001 +200943,Lightning Charging Cable,1,14.95,2019-05-17 22:22:00,801 8th St, San Francisco,CA,94016 +200944,AAA Batteries (4-pack),1,2.99,2019-05-25 18:03:00,347 Jackson St, New York City,NY,10001 +200945,Bose SoundSport Headphones,2,99.99,2019-05-12 14:29:00,240 Highland St, Los Angeles,CA,90001 +200946,34in Ultrawide Monitor,1,379.99,2019-05-18 07:47:00,466 Adams St, Seattle,WA,98101 +200947,AAA Batteries (4-pack),1,2.99,2019-05-29 22:39:00,600 West St, Boston,MA,02215 +200948,USB-C Charging Cable,1,11.95,2019-05-19 11:00:00,81 Hill St, Los Angeles,CA,90001 +200949,Lightning Charging Cable,1,14.95,2019-05-18 16:42:00,506 6th St, New York City,NY,10001 +200950,Lightning Charging Cable,1,14.95,2019-05-06 12:59:00,760 8th St, Seattle,WA,98101 +200951,Wired Headphones,1,11.99,2019-05-18 17:17:00,946 Church St, San Francisco,CA,94016 +200952,AA Batteries (4-pack),2,3.84,2019-05-30 23:25:00,663 12th St, Portland,OR,97035 +200953,Lightning Charging Cable,1,14.95,2019-05-05 17:07:00,255 Washington St, Atlanta,GA,30301 +200954,Bose SoundSport Headphones,1,99.99,2019-05-06 21:03:00,22 South St, San Francisco,CA,94016 +200955,iPhone,1,700.0,2019-05-08 19:28:00,531 Lincoln St, Boston,MA,02215 +200956,AAA Batteries (4-pack),1,2.99,2019-05-14 10:03:00,548 13th St, San Francisco,CA,94016 +200957,Apple Airpods Headphones,1,150.0,2019-05-24 21:04:00,757 2nd St, Boston,MA,02215 +200958,Lightning Charging Cable,1,14.95,2019-05-21 23:40:00,314 Highland St, Dallas,TX,75001 +200959,Wired Headphones,2,11.99,2019-05-16 14:36:00,798 10th St, Austin,TX,73301 +200960,AA Batteries (4-pack),1,3.84,2019-05-07 21:16:00,431 Adams St, San Francisco,CA,94016 +200961,Lightning Charging Cable,1,14.95,2019-05-30 09:24:00,931 1st St, Dallas,TX,75001 +200962,Lightning Charging Cable,2,14.95,2019-05-26 12:57:00,26 5th St, Atlanta,GA,30301 +200963,USB-C Charging Cable,1,11.95,2019-05-11 21:47:00,949 Center St, San Francisco,CA,94016 +200964,34in Ultrawide Monitor,1,379.99,2019-05-25 22:00:00,79 West St, Los Angeles,CA,90001 +200965,AA Batteries (4-pack),1,3.84,2019-05-07 18:58:00,145 Highland St, San Francisco,CA,94016 +200966,Lightning Charging Cable,1,14.95,2019-05-06 14:46:00,857 10th St, Boston,MA,02215 +200967,34in Ultrawide Monitor,1,379.99,2019-05-09 17:59:00,396 8th St, Portland,OR,97035 +200968,Wired Headphones,1,11.99,2019-05-02 20:08:00,881 5th St, Los Angeles,CA,90001 +200969,Wired Headphones,1,11.99,2019-05-12 20:42:00,134 Jefferson St, Los Angeles,CA,90001 +200970,Apple Airpods Headphones,1,150.0,2019-05-16 09:54:00,475 8th St, Dallas,TX,75001 +200971,iPhone,1,700.0,2019-05-12 20:08:00,114 1st St, Los Angeles,CA,90001 +200971,Lightning Charging Cable,1,14.95,2019-05-12 20:08:00,114 1st St, Los Angeles,CA,90001 +200972,AA Batteries (4-pack),1,3.84,2019-05-13 23:38:00,209 Chestnut St, San Francisco,CA,94016 +200973,Apple Airpods Headphones,1,150.0,2019-05-19 00:48:00,51 Church St, Seattle,WA,98101 +200974,USB-C Charging Cable,1,11.95,2019-05-13 21:00:00,404 River St, San Francisco,CA,94016 +200975,Wired Headphones,1,11.99,2019-05-22 14:01:00,386 7th St, Boston,MA,02215 +200976,ThinkPad Laptop,1,999.99,2019-05-23 11:12:00,47 Forest St, New York City,NY,10001 +200977,AA Batteries (4-pack),1,3.84,2019-05-15 17:28:00,767 Jackson St, Dallas,TX,75001 +200978,Lightning Charging Cable,1,14.95,2019-05-11 07:07:00,770 Hill St, Boston,MA,02215 +200979,AA Batteries (4-pack),1,3.84,2019-05-26 16:30:00,107 Park St, San Francisco,CA,94016 +200980,27in FHD Monitor,1,149.99,2019-05-12 13:00:00,375 Church St, San Francisco,CA,94016 +200981,Wired Headphones,1,11.99,2019-05-09 21:48:00,56 Dogwood St, Seattle,WA,98101 +200982,Wired Headphones,1,11.99,2019-05-15 17:48:00,285 Jackson St, Austin,TX,73301 +200983,ThinkPad Laptop,1,999.99,2019-05-15 15:38:00,971 Sunset St, Los Angeles,CA,90001 +200984,Bose SoundSport Headphones,1,99.99,2019-05-17 13:01:00,883 River St, San Francisco,CA,94016 +200985,Lightning Charging Cable,1,14.95,2019-05-30 17:57:00,589 Cedar St, Los Angeles,CA,90001 +200986,AAA Batteries (4-pack),2,2.99,2019-05-17 21:41:00,445 10th St, Seattle,WA,98101 +200987,Wired Headphones,1,11.99,2019-05-15 14:35:00,816 Main St, San Francisco,CA,94016 +200988,27in FHD Monitor,1,149.99,2019-05-06 00:39:00,503 Adams St, Portland,ME,04101 +200989,USB-C Charging Cable,1,11.95,2019-05-28 13:42:00,412 Spruce St, San Francisco,CA,94016 +200990,AA Batteries (4-pack),1,3.84,2019-05-19 13:23:00,657 Elm St, Los Angeles,CA,90001 +200991,AAA Batteries (4-pack),2,2.99,2019-05-30 10:21:00,284 Elm St, Austin,TX,73301 +200992,USB-C Charging Cable,1,11.95,2019-05-09 16:01:00,610 Walnut St, Dallas,TX,75001 +200993,Apple Airpods Headphones,1,150.0,2019-05-18 19:30:00,160 Center St, Boston,MA,02215 +200994,USB-C Charging Cable,1,11.95,2019-05-08 21:32:00,844 2nd St, Los Angeles,CA,90001 +200995,Lightning Charging Cable,1,14.95,2019-05-23 10:46:00,159 Spruce St, Portland,OR,97035 +200996,USB-C Charging Cable,1,11.95,2019-05-30 20:38:00,775 13th St, Los Angeles,CA,90001 +200997,Wired Headphones,1,11.99,2019-05-09 09:15:00,589 Lake St, Los Angeles,CA,90001 +200998,Google Phone,1,600.0,2019-05-23 11:05:00,518 Chestnut St, Seattle,WA,98101 +200998,Bose SoundSport Headphones,1,99.99,2019-05-23 11:05:00,518 Chestnut St, Seattle,WA,98101 +200999,Google Phone,1,600.0,2019-05-01 23:57:00,507 5th St, New York City,NY,10001 +201000,Flatscreen TV,1,300.0,2019-05-02 07:12:00,409 13th St, San Francisco,CA,94016 +201001,20in Monitor,1,109.99,2019-05-10 18:38:00,270 West St, New York City,NY,10001 +201002,Macbook Pro Laptop,1,1700.0,2019-05-12 17:37:00,830 Elm St, Seattle,WA,98101 +201003,Wired Headphones,1,11.99,2019-05-27 10:57:00,921 8th St, Dallas,TX,75001 +201004,AAA Batteries (4-pack),1,2.99,2019-05-28 08:33:00,380 8th St, Austin,TX,73301 +201005,Wired Headphones,1,11.99,2019-05-06 01:01:00,813 Hickory St, New York City,NY,10001 +201006,USB-C Charging Cable,1,11.95,2019-05-20 20:51:00,849 8th St, Atlanta,GA,30301 +201007,AA Batteries (4-pack),5,3.84,2019-05-28 18:55:00,211 6th St, Seattle,WA,98101 +201008,USB-C Charging Cable,1,11.95,2019-05-16 16:36:00,966 14th St, Atlanta,GA,30301 +201009,Macbook Pro Laptop,1,1700.0,2019-05-26 21:10:00,456 River St, San Francisco,CA,94016 +201010,Macbook Pro Laptop,1,1700.0,2019-05-27 18:59:00,213 Lake St, Atlanta,GA,30301 +201011,Lightning Charging Cable,1,14.95,2019-05-10 17:06:00,154 Madison St, Boston,MA,02215 +201012,Lightning Charging Cable,1,14.95,2019-05-26 20:46:00,230 7th St, San Francisco,CA,94016 +201013,iPhone,1,700.0,2019-05-24 09:18:00,122 Cherry St, Portland,OR,97035 +201014,AA Batteries (4-pack),1,3.84,2019-05-09 15:09:00,4 11th St, San Francisco,CA,94016 +201015,Lightning Charging Cable,2,14.95,2019-05-04 22:10:00,292 6th St, New York City,NY,10001 +201016,AA Batteries (4-pack),1,3.84,2019-05-20 23:14:00,721 Dogwood St, Los Angeles,CA,90001 +201017,AA Batteries (4-pack),2,3.84,2019-05-12 10:37:00,378 5th St, Austin,TX,73301 +201018,Lightning Charging Cable,1,14.95,2019-05-28 19:03:00,462 Meadow St, Austin,TX,73301 +201019,USB-C Charging Cable,1,11.95,2019-05-27 11:17:00,179 7th St, Los Angeles,CA,90001 +201020,AAA Batteries (4-pack),1,2.99,2019-05-20 19:07:00,846 Sunset St, Los Angeles,CA,90001 +201021,Lightning Charging Cable,1,14.95,2019-05-25 15:21:00,301 13th St, New York City,NY,10001 +201022,Wired Headphones,1,11.99,2019-05-30 12:46:00,812 Chestnut St, San Francisco,CA,94016 +201023,ThinkPad Laptop,1,999.99,2019-05-19 18:50:00,34 Chestnut St, Boston,MA,02215 +201024,Apple Airpods Headphones,1,150.0,2019-05-10 21:05:00,278 Ridge St, Seattle,WA,98101 +201025,Bose SoundSport Headphones,1,99.99,2019-05-04 19:51:00,44 West St, Dallas,TX,75001 +201026,Wired Headphones,1,11.99,2019-05-20 18:08:00,582 Lake St, San Francisco,CA,94016 +201027,Bose SoundSport Headphones,1,99.99,2019-05-04 09:16:00,670 North St, Boston,MA,02215 +201028,AA Batteries (4-pack),2,3.84,2019-05-05 17:28:00,197 Madison St, New York City,NY,10001 +201029,Apple Airpods Headphones,1,150.0,2019-05-04 18:28:00,762 Hill St, Los Angeles,CA,90001 +201030,Macbook Pro Laptop,1,1700.0,2019-05-29 16:27:00,449 Main St, Atlanta,GA,30301 +201031,AA Batteries (4-pack),1,3.84,2019-05-07 03:22:00,124 Maple St, Los Angeles,CA,90001 +201032,20in Monitor,1,109.99,2019-05-08 00:36:00,196 2nd St, Dallas,TX,75001 +201033,Bose SoundSport Headphones,1,99.99,2019-05-09 19:27:00,241 Lakeview St, New York City,NY,10001 +201034,27in FHD Monitor,1,149.99,2019-05-05 07:08:00,287 2nd St, Seattle,WA,98101 +201035,Apple Airpods Headphones,1,150.0,2019-05-29 19:07:00,467 Forest St, New York City,NY,10001 +201036,Wired Headphones,1,11.99,2019-05-24 12:58:00,569 5th St, Boston,MA,02215 +201037,USB-C Charging Cable,1,11.95,2019-05-25 12:57:00,31 Lake St, Dallas,TX,75001 +201038,AA Batteries (4-pack),1,3.84,2019-05-23 19:52:00,92 Hill St, San Francisco,CA,94016 +201039,USB-C Charging Cable,1,11.95,2019-05-06 16:20:00,971 West St, Seattle,WA,98101 +201040,Wired Headphones,1,11.99,2019-05-06 23:50:00,450 Highland St, Boston,MA,02215 +201041,34in Ultrawide Monitor,1,379.99,2019-05-17 16:58:00,637 Dogwood St, San Francisco,CA,94016 +201042,Bose SoundSport Headphones,1,99.99,2019-05-30 11:25:00,81 Chestnut St, Los Angeles,CA,90001 +201043,Wired Headphones,1,11.99,2019-05-18 18:04:00,71 Lake St, San Francisco,CA,94016 +201044,ThinkPad Laptop,1,999.99,2019-05-18 21:20:00,724 Ridge St, Boston,MA,02215 +201045,USB-C Charging Cable,1,11.95,2019-05-21 15:55:00,608 South St, Portland,OR,97035 +201046,USB-C Charging Cable,1,11.95,2019-05-28 16:48:00,398 12th St, Atlanta,GA,30301 +201047,20in Monitor,1,109.99,2019-05-13 13:39:00,86 2nd St, San Francisco,CA,94016 +201047,Bose SoundSport Headphones,1,99.99,2019-05-13 13:39:00,86 2nd St, San Francisco,CA,94016 +201048,AAA Batteries (4-pack),2,2.99,2019-05-01 14:18:00,200 Hill St, Seattle,WA,98101 +201049,iPhone,1,700.0,2019-05-31 16:22:00,833 12th St, New York City,NY,10001 +201050,Lightning Charging Cable,1,14.95,2019-05-09 14:05:00,978 Maple St, Seattle,WA,98101 +201051,Wired Headphones,2,11.99,2019-05-21 17:14:00,841 Willow St, San Francisco,CA,94016 +201052,27in FHD Monitor,1,149.99,2019-05-09 13:29:00,897 6th St, San Francisco,CA,94016 +201053,Apple Airpods Headphones,1,150.0,2019-05-02 17:02:00,202 10th St, Portland,OR,97035 +201054,AAA Batteries (4-pack),2,2.99,2019-05-15 20:43:00,346 Johnson St, San Francisco,CA,94016 +201055,AA Batteries (4-pack),1,3.84,2019-05-26 10:31:00,195 Walnut St, San Francisco,CA,94016 +201056,AAA Batteries (4-pack),1,2.99,2019-05-30 19:55:00,729 Johnson St, Boston,MA,02215 +201057,AA Batteries (4-pack),2,3.84,2019-05-21 16:57:00,306 12th St, Portland,OR,97035 +201058,34in Ultrawide Monitor,1,379.99,2019-05-19 22:59:00,200 7th St, Los Angeles,CA,90001 +201059,Bose SoundSport Headphones,1,99.99,2019-05-20 18:27:00,907 4th St, New York City,NY,10001 +201060,Macbook Pro Laptop,1,1700.0,2019-05-05 17:49:00,567 Cedar St, Dallas,TX,75001 +201061,AA Batteries (4-pack),1,3.84,2019-05-04 09:37:00,75 Sunset St, New York City,NY,10001 +201062,Lightning Charging Cable,1,14.95,2019-05-19 18:15:00,185 Chestnut St, Los Angeles,CA,90001 +201063,USB-C Charging Cable,1,11.95,2019-05-11 17:39:00,831 Church St, New York City,NY,10001 +201064,Macbook Pro Laptop,1,1700.0,2019-05-15 12:56:00,912 14th St, Portland,OR,97035 +201065,AAA Batteries (4-pack),1,2.99,2019-05-21 12:43:00,262 4th St, Seattle,WA,98101 +201066,Lightning Charging Cable,1,14.95,2019-05-06 09:51:00,319 Wilson St, Los Angeles,CA,90001 +201067,USB-C Charging Cable,1,11.95,2019-05-13 16:19:00,407 8th St, Atlanta,GA,30301 +201068,AA Batteries (4-pack),1,3.84,2019-05-07 23:38:00,29 Maple St, Atlanta,GA,30301 +201069,iPhone,1,700.0,2019-05-17 10:04:00,839 Madison St, Los Angeles,CA,90001 +201070,27in 4K Gaming Monitor,1,389.99,2019-05-20 23:38:00,879 North St, Portland,OR,97035 +201071,Bose SoundSport Headphones,1,99.99,2019-05-10 18:43:00,828 West St, Austin,TX,73301 +201072,Wired Headphones,1,11.99,2019-05-31 12:52:00,543 4th St, Boston,MA,02215 +201073,Wired Headphones,1,11.99,2019-05-31 10:21:00,355 Elm St, Dallas,TX,75001 +201074,AA Batteries (4-pack),2,3.84,2019-05-22 01:02:00,53 Elm St, New York City,NY,10001 +201075,Flatscreen TV,1,300.0,2019-05-10 16:53:00,569 4th St, Los Angeles,CA,90001 +201076,AA Batteries (4-pack),2,3.84,2019-05-25 16:04:00,208 Adams St, Boston,MA,02215 +201077,AAA Batteries (4-pack),1,2.99,2019-05-22 21:01:00,71 9th St, New York City,NY,10001 +201078,AAA Batteries (4-pack),1,2.99,2019-05-30 18:08:00,404 Cherry St, San Francisco,CA,94016 +201079,LG Washing Machine,1,600.0,2019-05-10 00:37:00,593 West St, Seattle,WA,98101 +201080,27in 4K Gaming Monitor,1,389.99,2019-05-14 09:16:00,173 Dogwood St, Atlanta,GA,30301 +201081,Apple Airpods Headphones,1,150.0,2019-05-10 20:03:00,791 Main St, Dallas,TX,75001 +201082,Wired Headphones,2,11.99,2019-05-22 06:28:00,793 4th St, New York City,NY,10001 +201083,USB-C Charging Cable,1,11.95,2019-05-17 14:51:00,777 13th St, Los Angeles,CA,90001 +201084,USB-C Charging Cable,1,11.95,2019-05-26 08:01:00,969 Ridge St, Seattle,WA,98101 +201085,AA Batteries (4-pack),2,3.84,2019-05-09 11:32:00,290 12th St, San Francisco,CA,94016 +201086,Bose SoundSport Headphones,1,99.99,2019-05-26 16:30:00,709 10th St, Portland,OR,97035 +201087,20in Monitor,1,109.99,2019-05-13 12:33:00,364 Ridge St, Boston,MA,02215 +201088,Apple Airpods Headphones,1,150.0,2019-05-03 09:09:00,341 Cedar St, Austin,TX,73301 +201089,Google Phone,1,600.0,2019-05-04 20:34:00,99 Park St, Boston,MA,02215 +201089,USB-C Charging Cable,1,11.95,2019-05-04 20:34:00,99 Park St, Boston,MA,02215 +201090,ThinkPad Laptop,1,999.99,2019-05-31 11:51:00,25 Willow St, Austin,TX,73301 +201091,Google Phone,1,600.0,2019-05-02 16:30:00,128 Jefferson St, Los Angeles,CA,90001 +201091,USB-C Charging Cable,1,11.95,2019-05-02 16:30:00,128 Jefferson St, Los Angeles,CA,90001 +201092,AA Batteries (4-pack),1,3.84,2019-05-21 17:54:00,762 Church St, Los Angeles,CA,90001 +201093,Wired Headphones,1,11.99,2019-05-13 12:28:00,712 Meadow St, Austin,TX,73301 +201094,34in Ultrawide Monitor,1,379.99,2019-05-16 13:59:00,822 South St, San Francisco,CA,94016 +201095,ThinkPad Laptop,1,999.99,2019-05-10 02:12:00,19 Park St, Boston,MA,02215 +201096,USB-C Charging Cable,1,11.95,2019-05-01 19:05:00,821 Walnut St, Atlanta,GA,30301 +201097,Wired Headphones,1,11.99,2019-05-04 07:33:00,854 Spruce St, Austin,TX,73301 +201098,AA Batteries (4-pack),1,3.84,2019-05-28 13:08:00,645 14th St, Dallas,TX,75001 +201099,34in Ultrawide Monitor,1,379.99,2019-05-03 06:52:00,602 Lakeview St, Seattle,WA,98101 +201100,34in Ultrawide Monitor,1,379.99,2019-05-05 21:04:00,487 Main St, San Francisco,CA,94016 +201101,Flatscreen TV,1,300.0,2019-05-08 21:54:00,647 6th St, Seattle,WA,98101 +201101,27in FHD Monitor,1,149.99,2019-05-08 21:54:00,647 6th St, Seattle,WA,98101 +201102,Bose SoundSport Headphones,1,99.99,2019-05-30 11:30:00,493 Jefferson St, Dallas,TX,75001 +201103,AA Batteries (4-pack),1,3.84,2019-05-25 12:30:00,351 13th St, Dallas,TX,75001 +201104,20in Monitor,1,109.99,2019-05-27 19:00:00,192 Spruce St, San Francisco,CA,94016 +201105,Wired Headphones,1,11.99,2019-05-10 19:12:00,836 7th St, San Francisco,CA,94016 +201106,Bose SoundSport Headphones,1,99.99,2019-05-23 08:52:00,324 7th St, Los Angeles,CA,90001 +201107,AAA Batteries (4-pack),1,2.99,2019-05-06 22:15:00,84 Adams St, New York City,NY,10001 +201108,Lightning Charging Cable,1,14.95,2019-05-24 15:24:00,360 Meadow St, Dallas,TX,75001 +201109,Apple Airpods Headphones,1,150.0,2019-05-16 12:47:00,208 1st St, Dallas,TX,75001 +201110,USB-C Charging Cable,1,11.95,2019-05-21 18:11:00,193 1st St, New York City,NY,10001 +201111,Wired Headphones,3,11.99,2019-05-14 18:36:00,439 Elm St, Atlanta,GA,30301 +201112,Lightning Charging Cable,1,14.95,2019-05-04 11:45:00,982 Cherry St, Boston,MA,02215 +201113,Wired Headphones,1,11.99,2019-05-15 15:06:00,578 Jackson St, New York City,NY,10001 +201114,27in FHD Monitor,1,149.99,2019-05-16 19:01:00,740 Jackson St, New York City,NY,10001 +201114,Macbook Pro Laptop,1,1700.0,2019-05-16 19:01:00,740 Jackson St, New York City,NY,10001 +201115,AA Batteries (4-pack),2,3.84,2019-05-07 21:44:00,218 Jefferson St, Atlanta,GA,30301 +201116,AAA Batteries (4-pack),6,2.99,2019-05-28 13:56:00,18 Forest St, New York City,NY,10001 +201117,Apple Airpods Headphones,1,150.0,2019-05-11 15:58:00,591 Washington St, Boston,MA,02215 +201118,27in 4K Gaming Monitor,1,389.99,2019-05-28 03:20:00,920 Church St, San Francisco,CA,94016 +201119,Apple Airpods Headphones,1,150.0,2019-05-15 11:24:00,418 Ridge St, San Francisco,CA,94016 +201120,USB-C Charging Cable,1,11.95,2019-05-20 11:13:00,374 Sunset St, New York City,NY,10001 +201121,AAA Batteries (4-pack),1,2.99,2019-05-24 12:19:00,759 Washington St, Austin,TX,73301 +201122,34in Ultrawide Monitor,1,379.99,2019-05-04 21:56:00,368 Ridge St, Atlanta,GA,30301 +201123,Lightning Charging Cable,1,14.95,2019-05-13 07:16:00,356 West St, Boston,MA,02215 +201124,Wired Headphones,1,11.99,2019-05-05 10:53:00,810 Main St, Seattle,WA,98101 +201124,Apple Airpods Headphones,1,150.0,2019-05-05 10:53:00,810 Main St, Seattle,WA,98101 +201125,Lightning Charging Cable,1,14.95,2019-05-06 13:21:00,657 8th St, Los Angeles,CA,90001 +201126,AA Batteries (4-pack),1,3.84,2019-05-22 23:02:00,840 Church St, Dallas,TX,75001 +201126,USB-C Charging Cable,1,11.95,2019-05-22 23:02:00,840 Church St, Dallas,TX,75001 +201127,Vareebadd Phone,1,400.0,2019-05-08 00:25:00,3 8th St, New York City,NY,10001 +201128,Bose SoundSport Headphones,1,99.99,2019-05-23 10:27:00,297 8th St, Dallas,TX,75001 +201129,iPhone,1,700.0,2019-05-31 07:43:00,233 Wilson St, Boston,MA,02215 +201130,Google Phone,1,600.0,2019-05-02 06:22:00,547 Pine St, San Francisco,CA,94016 +201131,Apple Airpods Headphones,1,150.0,2019-05-21 16:50:00,191 North St, Los Angeles,CA,90001 +201132,Apple Airpods Headphones,1,150.0,2019-05-07 17:18:00,316 7th St, Seattle,WA,98101 +201133,Lightning Charging Cable,1,14.95,2019-05-25 04:37:00,100 Pine St, Los Angeles,CA,90001 +201134,Bose SoundSport Headphones,1,99.99,2019-05-31 04:37:00,452 Maple St, Boston,MA,02215 +201135,AAA Batteries (4-pack),1,2.99,2019-05-02 09:20:00,674 2nd St, Los Angeles,CA,90001 +201136,USB-C Charging Cable,1,11.95,2019-05-13 17:02:00,627 Walnut St, Seattle,WA,98101 +201137,AAA Batteries (4-pack),1,2.99,2019-05-19 20:40:00,969 Cherry St, San Francisco,CA,94016 +201138,AAA Batteries (4-pack),5,2.99,2019-05-01 23:48:00,774 Elm St, Austin,TX,73301 +201139,Google Phone,1,600.0,2019-05-27 15:57:00,801 Meadow St, Boston,MA,02215 +201140,34in Ultrawide Monitor,1,379.99,2019-05-08 01:22:00,997 14th St, Portland,OR,97035 +201140,AAA Batteries (4-pack),2,2.99,2019-05-08 01:22:00,997 14th St, Portland,OR,97035 +201141,Wired Headphones,1,11.99,2019-05-05 20:40:00,11 2nd St, Boston,MA,02215 +201142,AA Batteries (4-pack),1,3.84,2019-05-04 18:56:00,140 Cherry St, New York City,NY,10001 +201143,Apple Airpods Headphones,1,150.0,2019-05-13 18:46:00,14 10th St, Atlanta,GA,30301 +201144,Wired Headphones,2,11.99,2019-05-21 20:35:00,43 Spruce St, Boston,MA,02215 +201145,Lightning Charging Cable,1,14.95,2019-05-13 13:01:00,990 Park St, Boston,MA,02215 +201146,AA Batteries (4-pack),1,3.84,2019-05-10 15:03:00,988 7th St, Los Angeles,CA,90001 +201147,AA Batteries (4-pack),2,3.84,2019-05-05 18:33:00,68 North St, San Francisco,CA,94016 +201148,27in FHD Monitor,1,149.99,2019-05-18 12:55:00,928 Dogwood St, Atlanta,GA,30301 +201149,27in 4K Gaming Monitor,1,389.99,2019-05-06 17:57:00,970 Hickory St, Los Angeles,CA,90001 +201150,AA Batteries (4-pack),2,3.84,2019-05-20 13:37:00,797 Ridge St, Los Angeles,CA,90001 +201151,Wired Headphones,1,11.99,2019-05-23 09:57:00,162 Lake St, Dallas,TX,75001 +201152,27in FHD Monitor,1,149.99,2019-05-13 12:14:00,688 1st St, Boston,MA,02215 +201153,AA Batteries (4-pack),1,3.84,2019-05-27 17:43:00,202 Park St, Dallas,TX,75001 +201154,AAA Batteries (4-pack),1,2.99,2019-05-31 08:39:00,219 Forest St, Boston,MA,02215 +201155,AA Batteries (4-pack),2,3.84,2019-05-07 08:21:00,951 11th St, Boston,MA,02215 +201156,Bose SoundSport Headphones,1,99.99,2019-05-11 10:08:00,34 Willow St, Boston,MA,02215 +201157,LG Dryer,1,600.0,2019-05-25 10:58:00,550 Lincoln St, Los Angeles,CA,90001 +201158,AAA Batteries (4-pack),2,2.99,2019-05-01 22:00:00,833 Pine St, Austin,TX,73301 +201159,27in FHD Monitor,1,149.99,2019-05-23 17:54:00,931 Walnut St, Portland,OR,97035 +201160,Bose SoundSport Headphones,1,99.99,2019-05-12 10:27:00,753 Center St, New York City,NY,10001 +201161,27in 4K Gaming Monitor,1,389.99,2019-05-16 15:16:00,790 Cedar St, San Francisco,CA,94016 +201162,Bose SoundSport Headphones,1,99.99,2019-05-29 09:19:00,538 Johnson St, Dallas,TX,75001 +201163,AAA Batteries (4-pack),2,2.99,2019-05-09 10:19:00,396 Chestnut St, Atlanta,GA,30301 +201164,USB-C Charging Cable,1,11.95,2019-05-08 13:59:00,23 Cedar St, Dallas,TX,75001 +201165,AA Batteries (4-pack),1,3.84,2019-05-10 08:04:00,868 West St, Portland,OR,97035 +201166,AAA Batteries (4-pack),2,2.99,2019-05-05 18:21:00,396 Willow St, Los Angeles,CA,90001 +201167,Wired Headphones,1,11.99,2019-05-25 22:16:00,289 Cherry St, Atlanta,GA,30301 +201168,Wired Headphones,1,11.99,2019-05-09 11:37:00,869 Hickory St, San Francisco,CA,94016 +201169,Apple Airpods Headphones,1,150.0,2019-05-20 08:58:00,507 11th St, San Francisco,CA,94016 +201170,Lightning Charging Cable,1,14.95,2019-05-14 20:08:00,459 Center St, San Francisco,CA,94016 +201171,USB-C Charging Cable,1,11.95,2019-05-02 00:02:00,382 Lake St, San Francisco,CA,94016 +201172,AA Batteries (4-pack),2,3.84,2019-05-13 16:42:00,945 14th St, San Francisco,CA,94016 +201173,Apple Airpods Headphones,1,150.0,2019-05-15 12:58:00,858 Hill St, Seattle,WA,98101 +201173,AA Batteries (4-pack),1,3.84,2019-05-15 12:58:00,858 Hill St, Seattle,WA,98101 +201174,Bose SoundSport Headphones,1,99.99,2019-05-08 12:44:00,310 8th St, San Francisco,CA,94016 +201175,AA Batteries (4-pack),2,3.84,2019-05-06 12:59:00,469 Jefferson St, Atlanta,GA,30301 +201176,Wired Headphones,1,11.99,2019-05-26 16:36:00,223 Johnson St, Los Angeles,CA,90001 +201177,Wired Headphones,1,11.99,2019-05-14 14:56:00,458 Spruce St, Atlanta,GA,30301 +201178,USB-C Charging Cable,1,11.95,2019-05-10 11:48:00,914 14th St, New York City,NY,10001 +201179,Flatscreen TV,1,300.0,2019-05-09 20:17:00,430 Lakeview St, San Francisco,CA,94016 +201180,USB-C Charging Cable,1,11.95,2019-05-23 11:23:00,977 Main St, San Francisco,CA,94016 +201181,27in FHD Monitor,1,149.99,2019-05-07 20:50:00,142 Walnut St, San Francisco,CA,94016 +201182,Lightning Charging Cable,1,14.95,2019-05-06 23:20:00,256 10th St, Boston,MA,02215 +201183,Lightning Charging Cable,1,14.95,2019-05-07 12:13:00,327 Maple St, Boston,MA,02215 +201184,USB-C Charging Cable,1,11.95,2019-05-22 16:25:00,440 Highland St, Los Angeles,CA,90001 +201185,Macbook Pro Laptop,1,1700.0,2019-05-31 10:34:00,970 Meadow St, Seattle,WA,98101 +201185,Lightning Charging Cable,1,14.95,2019-05-31 10:34:00,970 Meadow St, Seattle,WA,98101 +201186,ThinkPad Laptop,1,999.99,2019-05-23 01:47:00,112 Cherry St, San Francisco,CA,94016 +201187,Apple Airpods Headphones,1,150.0,2019-05-19 08:24:00,971 Walnut St, San Francisco,CA,94016 +201188,Flatscreen TV,1,300.0,2019-05-06 09:05:00,312 Spruce St, Atlanta,GA,30301 +201189,USB-C Charging Cable,1,11.95,2019-05-15 19:00:00,612 9th St, Los Angeles,CA,90001 +201190,Macbook Pro Laptop,1,1700.0,2019-05-17 13:09:00,588 Wilson St, Portland,OR,97035 +201191,Wired Headphones,1,11.99,2019-05-14 20:21:00,505 10th St, Boston,MA,02215 +201192,Lightning Charging Cable,1,14.95,2019-05-17 09:14:00,411 Sunset St, Dallas,TX,75001 +201193,AAA Batteries (4-pack),2,2.99,2019-05-07 00:46:00,741 Jackson St, Seattle,WA,98101 +201194,AAA Batteries (4-pack),1,2.99,2019-05-18 11:08:00,917 Johnson St, San Francisco,CA,94016 +201195,AA Batteries (4-pack),1,3.84,2019-05-28 12:06:00,594 Forest St, Atlanta,GA,30301 +201196,ThinkPad Laptop,1,999.99,2019-05-05 10:55:00,179 1st St, Atlanta,GA,30301 +201197,iPhone,1,700.0,2019-05-18 14:56:00,776 5th St, Boston,MA,02215 +201198,USB-C Charging Cable,1,11.95,2019-05-13 11:11:00,385 9th St, Seattle,WA,98101 +201199,Wired Headphones,1,11.99,2019-05-30 20:16:00,294 Pine St, San Francisco,CA,94016 +201200,27in 4K Gaming Monitor,1,389.99,2019-05-10 07:36:00,804 Washington St, New York City,NY,10001 +201201,27in 4K Gaming Monitor,1,389.99,2019-05-14 03:54:00,190 6th St, San Francisco,CA,94016 +201202,Apple Airpods Headphones,1,150.0,2019-05-30 08:53:00,450 Church St, Portland,OR,97035 +201203,AA Batteries (4-pack),2,3.84,2019-05-24 13:40:00,775 9th St, Boston,MA,02215 +201204,Wired Headphones,1,11.99,2019-05-03 14:00:00,229 Walnut St, Los Angeles,CA,90001 +201205,USB-C Charging Cable,1,11.95,2019-05-13 20:38:00,656 Ridge St, Atlanta,GA,30301 +201206,USB-C Charging Cable,1,11.95,2019-05-06 12:30:00,617 1st St, Atlanta,GA,30301 +201207,AA Batteries (4-pack),1,3.84,2019-05-05 14:01:00,798 7th St, New York City,NY,10001 +201208,34in Ultrawide Monitor,1,379.99,2019-05-16 09:19:00,930 West St, Seattle,WA,98101 +201209,Wired Headphones,1,11.99,2019-05-21 01:00:00,738 8th St, Dallas,TX,75001 +201210,iPhone,1,700.0,2019-05-28 14:16:00,731 Chestnut St, Los Angeles,CA,90001 +201211,USB-C Charging Cable,1,11.95,2019-05-08 10:50:00,75 8th St, Los Angeles,CA,90001 +201212,AAA Batteries (4-pack),1,2.99,2019-05-11 11:32:00,266 6th St, San Francisco,CA,94016 +201212,USB-C Charging Cable,1,11.95,2019-05-11 11:32:00,266 6th St, San Francisco,CA,94016 +201213,USB-C Charging Cable,1,11.95,2019-05-10 16:51:00,144 Cherry St, Boston,MA,02215 +201214,Lightning Charging Cable,1,14.95,2019-05-27 20:19:00,446 Jefferson St, San Francisco,CA,94016 +201215,Lightning Charging Cable,1,14.95,2019-05-26 12:54:00,415 Lincoln St, Seattle,WA,98101 +201216,iPhone,1,700.0,2019-05-10 18:20:00,761 Forest St, Seattle,WA,98101 +201217,AA Batteries (4-pack),1,3.84,2019-05-13 22:25:00,600 Ridge St, Seattle,WA,98101 +201218,34in Ultrawide Monitor,1,379.99,2019-05-04 18:06:00,931 Spruce St, San Francisco,CA,94016 +201219,34in Ultrawide Monitor,1,379.99,2019-05-11 23:26:00,996 Elm St, Portland,OR,97035 +201220,Bose SoundSport Headphones,1,99.99,2019-05-23 12:56:00,728 North St, Seattle,WA,98101 +201221,USB-C Charging Cable,1,11.95,2019-05-22 08:58:00,765 13th St, Atlanta,GA,30301 +201222,Wired Headphones,2,11.99,2019-05-30 09:37:00,655 7th St, Atlanta,GA,30301 +201223,Wired Headphones,1,11.99,2019-05-22 11:30:00,323 Center St, Los Angeles,CA,90001 +201224,AA Batteries (4-pack),1,3.84,2019-05-08 23:01:00,113 Elm St, Seattle,WA,98101 +201225,Lightning Charging Cable,1,14.95,2019-05-01 12:23:00,986 Jackson St, Atlanta,GA,30301 +201226,AA Batteries (4-pack),1,3.84,2019-05-20 19:42:00,93 Cherry St, Austin,TX,73301 +201227,Google Phone,1,600.0,2019-05-13 17:02:00,47 Washington St, Los Angeles,CA,90001 +201228,34in Ultrawide Monitor,1,379.99,2019-05-30 19:41:00,604 Hickory St, San Francisco,CA,94016 +201229,Apple Airpods Headphones,1,150.0,2019-05-02 22:33:00,425 Jefferson St, San Francisco,CA,94016 +201230,AAA Batteries (4-pack),1,2.99,2019-05-06 08:27:00,798 12th St, Portland,OR,97035 +201231,34in Ultrawide Monitor,1,379.99,2019-05-05 16:34:00,983 6th St, San Francisco,CA,94016 +201232,AA Batteries (4-pack),1,3.84,2019-05-23 18:47:00,559 Hickory St, Los Angeles,CA,90001 +201233,USB-C Charging Cable,1,11.95,2019-05-19 00:37:00,896 Jackson St, San Francisco,CA,94016 +201234,Apple Airpods Headphones,1,150.0,2019-05-21 07:19:00,447 Jackson St, Portland,OR,97035 +201235,Wired Headphones,1,11.99,2019-05-13 23:41:00,119 Madison St, Atlanta,GA,30301 +201236,USB-C Charging Cable,1,11.95,2019-05-18 15:23:00,664 Willow St, San Francisco,CA,94016 +201237,Apple Airpods Headphones,1,150.0,2019-05-10 17:37:00,4 11th St, Boston,MA,02215 +201238,Lightning Charging Cable,3,14.95,2019-05-28 21:11:00,184 Wilson St, Los Angeles,CA,90001 +201239,USB-C Charging Cable,1,11.95,2019-05-11 03:21:00,105 Johnson St, Seattle,WA,98101 +201240,Lightning Charging Cable,1,14.95,2019-05-26 06:55:00,66 Lake St, Los Angeles,CA,90001 +201241,Bose SoundSport Headphones,1,99.99,2019-05-04 14:29:00,4 4th St, Los Angeles,CA,90001 +201242,USB-C Charging Cable,1,11.95,2019-05-05 23:32:00,916 Walnut St, Los Angeles,CA,90001 +201243,Vareebadd Phone,1,400.0,2019-05-08 14:00:00,852 Park St, San Francisco,CA,94016 +201243,USB-C Charging Cable,1,11.95,2019-05-08 14:00:00,852 Park St, San Francisco,CA,94016 +201244,Macbook Pro Laptop,1,1700.0,2019-05-21 09:05:00,948 9th St, Boston,MA,02215 +201245,AA Batteries (4-pack),2,3.84,2019-05-09 11:36:00,547 5th St, Seattle,WA,98101 +201246,Lightning Charging Cable,1,14.95,2019-05-23 11:15:00,154 5th St, Dallas,TX,75001 +201247,Lightning Charging Cable,1,14.95,2019-05-08 21:36:00,932 9th St, Seattle,WA,98101 +201248,AAA Batteries (4-pack),2,2.99,2019-05-09 13:28:00,240 Walnut St, San Francisco,CA,94016 +201249,27in 4K Gaming Monitor,1,389.99,2019-05-29 06:57:00,718 Hill St, Boston,MA,02215 +201250,AA Batteries (4-pack),2,3.84,2019-05-01 08:58:00,662 South St, Atlanta,GA,30301 +201251,USB-C Charging Cable,1,11.95,2019-05-08 17:10:00,175 11th St, Atlanta,GA,30301 +201252,AAA Batteries (4-pack),2,2.99,2019-05-23 15:20:00,962 Center St, Los Angeles,CA,90001 +201253,Bose SoundSport Headphones,1,99.99,2019-05-29 20:42:00,303 Church St, San Francisco,CA,94016 +201254,Lightning Charging Cable,1,14.95,2019-05-04 17:59:00,648 4th St, New York City,NY,10001 +201255,Apple Airpods Headphones,1,150.0,2019-05-13 18:32:00,442 10th St, New York City,NY,10001 +201256,Vareebadd Phone,1,400.0,2019-05-18 23:53:00,11 14th St, San Francisco,CA,94016 +201257,Google Phone,1,600.0,2019-05-07 13:53:00,202 Pine St, Portland,OR,97035 +201257,Wired Headphones,1,11.99,2019-05-07 13:53:00,202 Pine St, Portland,OR,97035 +201258,Lightning Charging Cable,1,14.95,2019-05-16 17:18:00,207 Jackson St, Seattle,WA,98101 +201259,Bose SoundSport Headphones,1,99.99,2019-05-14 21:51:00,302 Dogwood St, Dallas,TX,75001 +201260,27in 4K Gaming Monitor,1,389.99,2019-05-28 18:28:00,640 14th St, Los Angeles,CA,90001 +201261,AAA Batteries (4-pack),3,2.99,2019-05-29 15:08:00,674 Willow St, Seattle,WA,98101 +201262,20in Monitor,1,109.99,2019-05-06 04:37:00,835 Cherry St, Atlanta,GA,30301 +201263,Vareebadd Phone,1,400.0,2019-05-04 20:11:00,783 9th St, Portland,OR,97035 +201264,Lightning Charging Cable,1,14.95,2019-05-29 09:31:00,254 Center St, Seattle,WA,98101 +201265,Apple Airpods Headphones,1,150.0,2019-05-01 09:50:00,21 Main St, San Francisco,CA,94016 +201266,ThinkPad Laptop,1,999.99,2019-05-02 11:51:00,362 1st St, Boston,MA,02215 +201267,USB-C Charging Cable,3,11.95,2019-05-11 13:17:00,47 8th St, San Francisco,CA,94016 +201268,Bose SoundSport Headphones,1,99.99,2019-05-06 14:19:00,610 9th St, Boston,MA,02215 +201269,AA Batteries (4-pack),1,3.84,2019-05-05 13:28:00,896 5th St, New York City,NY,10001 +201270,Bose SoundSport Headphones,1,99.99,2019-05-28 10:06:00,668 Lakeview St, San Francisco,CA,94016 +201271,Bose SoundSport Headphones,1,99.99,2019-05-17 12:29:00,134 Pine St, Seattle,WA,98101 +201272,Wired Headphones,1,11.99,2019-05-22 13:52:00,606 9th St, New York City,NY,10001 +201273,Lightning Charging Cable,2,14.95,2019-05-15 11:38:00,914 Sunset St, Boston,MA,02215 +201274,iPhone,1,700.0,2019-05-20 20:04:00,115 Chestnut St, Atlanta,GA,30301 +201275,AAA Batteries (4-pack),1,2.99,2019-05-04 21:11:00,811 7th St, New York City,NY,10001 +201276,AA Batteries (4-pack),1,3.84,2019-05-05 12:16:00,40 5th St, New York City,NY,10001 +201277,27in FHD Monitor,1,149.99,2019-05-08 00:25:00,371 Willow St, Atlanta,GA,30301 +201278,AA Batteries (4-pack),2,3.84,2019-05-24 16:47:00,300 Lake St, Portland,OR,97035 +201279,34in Ultrawide Monitor,1,379.99,2019-05-03 13:57:00,88 Jackson St, New York City,NY,10001 +201280,Bose SoundSport Headphones,1,99.99,2019-05-14 22:24:00,102 Cedar St, Boston,MA,02215 +201281,Apple Airpods Headphones,1,150.0,2019-05-05 16:40:00,383 Lake St, San Francisco,CA,94016 +201282,34in Ultrawide Monitor,1,379.99,2019-05-08 18:35:00,559 Madison St, Los Angeles,CA,90001 +201283,Flatscreen TV,1,300.0,2019-05-12 15:02:00,239 Cedar St, Dallas,TX,75001 +201284,Wired Headphones,1,11.99,2019-05-13 20:44:00,712 11th St, San Francisco,CA,94016 +201285,USB-C Charging Cable,1,11.95,2019-05-19 11:59:00,679 Adams St, Boston,MA,02215 +201286,Flatscreen TV,1,300.0,2019-05-27 16:29:00,431 13th St, Seattle,WA,98101 +201287,27in 4K Gaming Monitor,1,389.99,2019-05-15 19:53:00,684 Meadow St, Dallas,TX,75001 +201288,iPhone,1,700.0,2019-05-05 16:47:00,472 Forest St, New York City,NY,10001 +201288,Lightning Charging Cable,2,14.95,2019-05-05 16:47:00,472 Forest St, New York City,NY,10001 +201289,USB-C Charging Cable,2,11.95,2019-05-26 11:48:00,670 11th St, New York City,NY,10001 +201290,Wired Headphones,1,11.99,2019-05-23 08:35:00,892 Lakeview St, Los Angeles,CA,90001 +201291,USB-C Charging Cable,1,11.95,2019-05-15 16:50:00,637 Elm St, Atlanta,GA,30301 +201292,27in 4K Gaming Monitor,1,389.99,2019-05-26 15:27:00,648 Chestnut St, Portland,OR,97035 +201293,Lightning Charging Cable,1,14.95,2019-05-13 18:10:00,441 Lakeview St, Los Angeles,CA,90001 +201294,Flatscreen TV,1,300.0,2019-05-26 20:36:00,755 Jefferson St, Dallas,TX,75001 +201295,USB-C Charging Cable,1,11.95,2019-05-01 20:15:00,159 2nd St, Los Angeles,CA,90001 +201296,Vareebadd Phone,1,400.0,2019-05-31 20:33:00,659 Walnut St, New York City,NY,10001 +201297,Apple Airpods Headphones,1,150.0,2019-05-11 13:37:00,252 Main St, San Francisco,CA,94016 +201298,AAA Batteries (4-pack),1,2.99,2019-05-11 08:23:00,41 Elm St, San Francisco,CA,94016 +201299,Wired Headphones,1,11.99,2019-05-09 15:54:00,728 4th St, Austin,TX,73301 +201300,Lightning Charging Cable,2,14.95,2019-05-01 08:47:00,286 10th St, Dallas,TX,75001 +201301,Lightning Charging Cable,1,14.95,2019-05-31 19:21:00,285 Cherry St, Austin,TX,73301 +201302,Bose SoundSport Headphones,1,99.99,2019-05-27 14:18:00,97 Jefferson St, San Francisco,CA,94016 +201303,AAA Batteries (4-pack),1,2.99,2019-05-17 10:57:00,528 Lincoln St, San Francisco,CA,94016 +201304,AAA Batteries (4-pack),2,2.99,2019-05-21 17:51:00,449 Jackson St, Seattle,WA,98101 +201305,Apple Airpods Headphones,1,150.0,2019-05-04 10:12:00,401 Johnson St, Los Angeles,CA,90001 +201306,Lightning Charging Cable,1,14.95,2019-05-31 21:03:00,530 Dogwood St, Los Angeles,CA,90001 +201307,Wired Headphones,1,11.99,2019-05-01 22:13:00,518 Jackson St, Portland,OR,97035 +201308,Lightning Charging Cable,1,14.95,2019-05-20 16:47:00,863 Adams St, New York City,NY,10001 +201309,AAA Batteries (4-pack),1,2.99,2019-05-25 16:01:00,793 Pine St, Boston,MA,02215 +201310,iPhone,1,700.0,2019-05-26 08:30:00,89 Wilson St, Boston,MA,02215 +201311,34in Ultrawide Monitor,1,379.99,2019-05-14 02:36:00,922 Madison St, Boston,MA,02215 +201312,Wired Headphones,1,11.99,2019-05-21 07:14:00,615 4th St, San Francisco,CA,94016 +201313,AA Batteries (4-pack),1,3.84,2019-05-03 12:36:00,290 West St, Portland,OR,97035 +201314,AA Batteries (4-pack),1,3.84,2019-05-09 08:16:00,20 Johnson St, Portland,OR,97035 +201315,AA Batteries (4-pack),1,3.84,2019-05-17 10:39:00,550 Spruce St, Seattle,WA,98101 +201316,USB-C Charging Cable,1,11.95,2019-05-20 23:16:00,166 South St, San Francisco,CA,94016 +201317,Vareebadd Phone,1,400.0,2019-05-14 13:26:00,416 West St, Seattle,WA,98101 +201318,27in FHD Monitor,1,149.99,2019-05-06 10:05:00,146 Adams St, New York City,NY,10001 +201319,Apple Airpods Headphones,1,150.0,2019-05-26 10:24:00,164 West St, Boston,MA,02215 +201320,34in Ultrawide Monitor,1,379.99,2019-05-14 17:17:00,115 10th St, San Francisco,CA,94016 +201320,Wired Headphones,1,11.99,2019-05-14 17:17:00,115 10th St, San Francisco,CA,94016 +201321,Apple Airpods Headphones,1,150.0,2019-05-27 12:09:00,974 Chestnut St, San Francisco,CA,94016 +201322,Bose SoundSport Headphones,1,99.99,2019-05-11 20:29:00,994 Center St, San Francisco,CA,94016 +201323,Wired Headphones,1,11.99,2019-05-17 17:47:00,80 Pine St, Boston,MA,02215 +201324,AAA Batteries (4-pack),1,2.99,2019-05-30 13:56:00,787 Forest St, Portland,OR,97035 +201325,20in Monitor,1,109.99,2019-05-29 20:36:00,645 Park St, San Francisco,CA,94016 +201326,USB-C Charging Cable,1,11.95,2019-05-10 12:14:00,511 Church St, Atlanta,GA,30301 +201327,Wired Headphones,1,11.99,2019-05-14 16:22:00,632 1st St, San Francisco,CA,94016 +201328,Apple Airpods Headphones,1,150.0,2019-05-09 20:22:00,138 Meadow St, Los Angeles,CA,90001 +201329,ThinkPad Laptop,1,999.99,2019-05-13 10:31:00,972 Walnut St, Los Angeles,CA,90001 +201330,Vareebadd Phone,1,400.0,2019-05-20 08:49:00,17 Cedar St, Los Angeles,CA,90001 +201331,Wired Headphones,1,11.99,2019-05-04 16:34:00,273 Elm St, Boston,MA,02215 +201332,AAA Batteries (4-pack),1,2.99,2019-05-29 12:39:00,859 Adams St, San Francisco,CA,94016 +201333,Lightning Charging Cable,1,14.95,2019-05-12 14:31:00,110 Jackson St, San Francisco,CA,94016 +201334,AAA Batteries (4-pack),1,2.99,2019-05-07 10:31:00,169 Lincoln St, Boston,MA,02215 +201335,Wired Headphones,3,11.99,2019-05-24 19:20:00,135 Willow St, Portland,OR,97035 +201336,AAA Batteries (4-pack),2,2.99,2019-05-30 17:53:00,926 6th St, Portland,ME,04101 +201337,Google Phone,1,600.0,2019-05-02 16:29:00,240 9th St, Dallas,TX,75001 +201338,Lightning Charging Cable,1,14.95,2019-05-11 12:03:00,511 11th St, San Francisco,CA,94016 +201339,AA Batteries (4-pack),2,3.84,2019-05-09 13:42:00,575 1st St, Austin,TX,73301 +201340,USB-C Charging Cable,1,11.95,2019-05-17 01:45:00,427 Park St, Seattle,WA,98101 +201340,AAA Batteries (4-pack),1,2.99,2019-05-17 01:45:00,427 Park St, Seattle,WA,98101 +201341,ThinkPad Laptop,1,999.99,2019-05-16 18:25:00,60 Chestnut St, Seattle,WA,98101 +201342,AA Batteries (4-pack),1,3.84,2019-05-09 06:53:00,573 7th St, Los Angeles,CA,90001 +201343,AA Batteries (4-pack),1,3.84,2019-05-03 13:17:00,842 2nd St, San Francisco,CA,94016 +201344,Wired Headphones,1,11.99,2019-05-14 20:21:00,435 Willow St, New York City,NY,10001 +201345,AA Batteries (4-pack),1,3.84,2019-05-18 07:23:00,584 7th St, Atlanta,GA,30301 +201346,AA Batteries (4-pack),1,3.84,2019-05-23 13:05:00,328 Washington St, Boston,MA,02215 +201347,20in Monitor,1,109.99,2019-05-25 19:54:00,497 14th St, Los Angeles,CA,90001 +201348,AAA Batteries (4-pack),3,2.99,2019-05-31 03:20:00,649 Johnson St, San Francisco,CA,94016 +201349,USB-C Charging Cable,1,11.95,2019-05-05 10:19:00,584 Madison St, San Francisco,CA,94016 +201350,AAA Batteries (4-pack),2,2.99,2019-05-28 18:44:00,757 Maple St, Los Angeles,CA,90001 +201351,Lightning Charging Cable,1,14.95,2019-05-06 17:27:00,68 Maple St, San Francisco,CA,94016 +201352,Apple Airpods Headphones,1,150.0,2019-05-12 20:07:00,720 2nd St, New York City,NY,10001 +201353,Apple Airpods Headphones,1,150.0,2019-05-30 23:55:00,159 1st St, Seattle,WA,98101 +201354,20in Monitor,1,109.99,2019-05-15 14:27:00,760 8th St, Austin,TX,73301 +201355,Flatscreen TV,1,300.0,2019-05-24 11:47:00,820 10th St, San Francisco,CA,94016 +201356,34in Ultrawide Monitor,1,379.99,2019-05-13 16:55:00,340 Hickory St, San Francisco,CA,94016 +201357,Apple Airpods Headphones,1,150.0,2019-05-23 13:19:00,843 Church St, Boston,MA,02215 +201358,Lightning Charging Cable,1,14.95,2019-05-02 08:00:00,466 13th St, Dallas,TX,75001 +201359,AA Batteries (4-pack),1,3.84,2019-05-16 20:47:00,887 8th St, New York City,NY,10001 +201360,Lightning Charging Cable,3,14.95,2019-05-24 12:38:00,227 Maple St, Dallas,TX,75001 +201361,Lightning Charging Cable,1,14.95,2019-05-08 23:11:00,565 Willow St, Los Angeles,CA,90001 +201362,AAA Batteries (4-pack),1,2.99,2019-05-17 16:09:00,641 Adams St, Portland,OR,97035 +201363,Apple Airpods Headphones,1,150.0,2019-05-12 12:11:00,894 Adams St, San Francisco,CA,94016 +201364,Apple Airpods Headphones,1,150.0,2019-05-21 19:01:00,966 6th St, Boston,MA,02215 +201365,Lightning Charging Cable,1,14.95,2019-05-25 10:06:00,791 Lincoln St, Los Angeles,CA,90001 +201366,USB-C Charging Cable,1,11.95,2019-05-06 11:28:00,857 6th St, Austin,TX,73301 +201367,27in 4K Gaming Monitor,1,389.99,2019-05-18 12:41:00,137 Johnson St, Los Angeles,CA,90001 +201368,Wired Headphones,1,11.99,2019-05-01 20:21:00,178 9th St, New York City,NY,10001 +201369,iPhone,1,700.0,2019-05-05 17:58:00,960 Maple St, Los Angeles,CA,90001 +201369,Apple Airpods Headphones,1,150.0,2019-05-05 17:58:00,960 Maple St, Los Angeles,CA,90001 +201370,34in Ultrawide Monitor,1,379.99,2019-05-09 19:08:00,788 14th St, Portland,OR,97035 +201371,USB-C Charging Cable,2,11.95,2019-05-01 10:02:00,452 8th St, San Francisco,CA,94016 +201372,27in FHD Monitor,1,149.99,2019-05-22 15:26:00,553 7th St, San Francisco,CA,94016 +201373,Apple Airpods Headphones,1,150.0,2019-05-05 14:25:00,765 Madison St, Atlanta,GA,30301 +201374,Wired Headphones,1,11.99,2019-05-03 15:37:00,635 6th St, Boston,MA,02215 +201375,34in Ultrawide Monitor,1,379.99,2019-05-08 05:24:00,587 14th St, San Francisco,CA,94016 +201376,34in Ultrawide Monitor,1,379.99,2019-05-09 11:16:00,978 Highland St, San Francisco,CA,94016 +201377,Wired Headphones,1,11.99,2019-05-08 10:35:00,407 West St, San Francisco,CA,94016 +201378,AA Batteries (4-pack),1,3.84,2019-05-02 13:56:00,959 1st St, Atlanta,GA,30301 +201379,USB-C Charging Cable,1,11.95,2019-05-06 12:08:00,595 Park St, Boston,MA,02215 +201380,Lightning Charging Cable,1,14.95,2019-05-09 12:47:00,745 Church St, San Francisco,CA,94016 +201381,USB-C Charging Cable,1,11.95,2019-05-07 06:02:00,391 Lincoln St, Portland,OR,97035 +201382,ThinkPad Laptop,1,999.99,2019-05-21 14:59:00,726 Forest St, Portland,OR,97035 +201383,AA Batteries (4-pack),1,3.84,2019-05-07 12:10:00,383 6th St, Boston,MA,02215 +201384,USB-C Charging Cable,1,11.95,2019-05-18 18:49:00,14 14th St, Dallas,TX,75001 +201385,USB-C Charging Cable,1,11.95,2019-05-21 10:31:00,751 North St, Los Angeles,CA,90001 +201386,AA Batteries (4-pack),1,3.84,2019-05-01 11:03:00,852 Walnut St, San Francisco,CA,94016 +201387,20in Monitor,1,109.99,2019-05-06 19:29:00,760 Highland St, New York City,NY,10001 +201388,AA Batteries (4-pack),1,3.84,2019-05-15 21:32:00,392 Spruce St, Portland,OR,97035 +201389,Bose SoundSport Headphones,1,99.99,2019-05-02 13:36:00,15 Washington St, Boston,MA,02215 +201390,AA Batteries (4-pack),2,3.84,2019-05-10 19:47:00,314 Madison St, New York City,NY,10001 +201391,Lightning Charging Cable,1,14.95,2019-05-31 14:29:00,155 12th St, Boston,MA,02215 +201392,USB-C Charging Cable,1,11.95,2019-05-14 06:48:00,500 Lakeview St, Austin,TX,73301 +201393,27in 4K Gaming Monitor,1,389.99,2019-05-07 12:33:00,12 5th St, San Francisco,CA,94016 +201394,Apple Airpods Headphones,1,150.0,2019-05-19 23:42:00,467 Center St, San Francisco,CA,94016 +201395,USB-C Charging Cable,1,11.95,2019-05-26 07:48:00,836 Center St, Atlanta,GA,30301 +201396,27in 4K Gaming Monitor,1,389.99,2019-05-03 12:21:00,395 2nd St, New York City,NY,10001 +201397,USB-C Charging Cable,1,11.95,2019-05-25 20:00:00,718 Meadow St, San Francisco,CA,94016 +201398,Wired Headphones,1,11.99,2019-05-23 12:55:00,783 Maple St, Seattle,WA,98101 +201398,USB-C Charging Cable,1,11.95,2019-05-23 12:55:00,783 Maple St, Seattle,WA,98101 +201399,AA Batteries (4-pack),1,3.84,2019-05-01 13:27:00,823 Cherry St, San Francisco,CA,94016 +201400,AAA Batteries (4-pack),1,2.99,2019-05-31 17:45:00,104 Center St, New York City,NY,10001 +201401,AAA Batteries (4-pack),1,2.99,2019-05-12 09:12:00,813 River St, New York City,NY,10001 +201402,Bose SoundSport Headphones,1,99.99,2019-05-04 14:01:00,947 Sunset St, New York City,NY,10001 +201403,USB-C Charging Cable,1,11.95,2019-05-20 10:27:00,608 Walnut St, San Francisco,CA,94016 +201404,AAA Batteries (4-pack),1,2.99,2019-05-20 16:59:00,753 9th St, San Francisco,CA,94016 +201405,AAA Batteries (4-pack),2,2.99,2019-05-25 12:36:00,904 7th St, New York City,NY,10001 +201406,Vareebadd Phone,1,400.0,2019-05-19 08:02:00,446 Park St, Seattle,WA,98101 +201407,USB-C Charging Cable,1,11.95,2019-05-19 10:33:00,19 9th St, Seattle,WA,98101 +201408,AA Batteries (4-pack),1,3.84,2019-05-27 09:37:00,238 Lincoln St, Dallas,TX,75001 +201409,USB-C Charging Cable,1,11.95,2019-05-19 12:37:00,957 Elm St, San Francisco,CA,94016 +201410,Google Phone,1,600.0,2019-05-22 01:34:00,527 Cedar St, San Francisco,CA,94016 +201411,34in Ultrawide Monitor,1,379.99,2019-05-04 17:29:00,306 Ridge St, Los Angeles,CA,90001 +201412,AA Batteries (4-pack),1,3.84,2019-05-17 07:32:00,683 Highland St, Seattle,WA,98101 +201413,Wired Headphones,1,11.99,2019-05-03 14:48:00,679 Hill St, New York City,NY,10001 +201414,20in Monitor,1,109.99,2019-05-14 16:23:00,318 Adams St, Boston,MA,02215 +201415,USB-C Charging Cable,2,11.95,2019-05-04 16:32:00,186 Adams St, Los Angeles,CA,90001 +201416,USB-C Charging Cable,1,11.95,2019-05-30 18:47:00,178 Johnson St, New York City,NY,10001 +201417,Apple Airpods Headphones,1,150.0,2019-05-10 20:42:00,820 4th St, Dallas,TX,75001 +201417,Bose SoundSport Headphones,1,99.99,2019-05-10 20:42:00,820 4th St, Dallas,TX,75001 +201418,34in Ultrawide Monitor,1,379.99,2019-05-21 13:51:00,556 Adams St, San Francisco,CA,94016 +201419,Wired Headphones,1,11.99,2019-05-15 13:54:00,949 Jackson St, Atlanta,GA,30301 +201420,AAA Batteries (4-pack),1,2.99,2019-05-21 22:57:00,377 4th St, Los Angeles,CA,90001 +201421,iPhone,1,700.0,2019-05-28 13:27:00,100 Madison St, Dallas,TX,75001 +201422,34in Ultrawide Monitor,1,379.99,2019-05-29 12:03:00,102 12th St, Los Angeles,CA,90001 +201423,Macbook Pro Laptop,1,1700.0,2019-05-14 12:54:00,610 13th St, Portland,OR,97035 +201424,Lightning Charging Cable,1,14.95,2019-05-05 18:55:00,826 Sunset St, Seattle,WA,98101 +201425,USB-C Charging Cable,1,11.95,2019-05-19 21:24:00,225 Park St, San Francisco,CA,94016 +201426,AAA Batteries (4-pack),1,2.99,2019-05-11 12:19:00,604 Washington St, Boston,MA,02215 +201427,Apple Airpods Headphones,1,150.0,2019-05-24 10:28:00,280 River St, New York City,NY,10001 +201428,USB-C Charging Cable,2,11.95,2019-05-25 11:13:00,1 Dogwood St, Atlanta,GA,30301 +201429,Bose SoundSport Headphones,1,99.99,2019-05-21 21:17:00,607 6th St, Portland,OR,97035 +201430,USB-C Charging Cable,2,11.95,2019-05-13 14:15:00,313 Center St, San Francisco,CA,94016 +201431,AA Batteries (4-pack),2,3.84,2019-05-10 09:07:00,189 Hickory St, Austin,TX,73301 +201432,20in Monitor,1,109.99,2019-05-13 15:07:00,246 Center St, Boston,MA,02215 +201433,Apple Airpods Headphones,1,150.0,2019-05-13 20:50:00,865 11th St, San Francisco,CA,94016 +201434,34in Ultrawide Monitor,1,379.99,2019-05-10 09:12:00,109 Maple St, Austin,TX,73301 +201435,Lightning Charging Cable,1,14.95,2019-05-29 19:47:00,667 Church St, Los Angeles,CA,90001 +201436,Google Phone,1,600.0,2019-05-25 18:09:00,811 Hickory St, Atlanta,GA,30301 +201437,Wired Headphones,1,11.99,2019-05-12 15:20:00,902 4th St, Austin,TX,73301 +201438,Apple Airpods Headphones,1,150.0,2019-05-03 13:21:00,692 Jefferson St, Los Angeles,CA,90001 +201439,Apple Airpods Headphones,1,150.0,2019-05-26 13:36:00,452 Elm St, Austin,TX,73301 +201440,Bose SoundSport Headphones,1,99.99,2019-05-05 01:59:00,867 Adams St, New York City,NY,10001 +201441,AAA Batteries (4-pack),2,2.99,2019-05-25 13:16:00,163 10th St, San Francisco,CA,94016 +201442,iPhone,1,700.0,2019-05-06 09:13:00,732 4th St, Boston,MA,02215 +201443,Bose SoundSport Headphones,1,99.99,2019-05-19 08:42:00,384 Adams St, Los Angeles,CA,90001 +201444,34in Ultrawide Monitor,1,379.99,2019-05-05 12:38:00,681 Wilson St, Dallas,TX,75001 +201445,Lightning Charging Cable,2,14.95,2019-05-28 14:14:00,268 Pine St, Dallas,TX,75001 +201446,AA Batteries (4-pack),1,3.84,2019-05-19 19:23:00,301 Madison St, San Francisco,CA,94016 +201447,AAA Batteries (4-pack),1,2.99,2019-05-10 13:02:00,219 West St, San Francisco,CA,94016 +201448,Lightning Charging Cable,1,14.95,2019-05-02 21:20:00,303 Johnson St, New York City,NY,10001 +201449,27in FHD Monitor,1,149.99,2019-05-01 03:15:00,125 Jackson St, Atlanta,GA,30301 +201450,27in 4K Gaming Monitor,1,389.99,2019-05-27 10:00:00,103 10th St, New York City,NY,10001 +201451,Google Phone,1,600.0,2019-05-05 15:42:00,575 Dogwood St, San Francisco,CA,94016 +201452,Google Phone,1,600.0,2019-05-15 18:57:00,527 Church St, Los Angeles,CA,90001 +201453,Apple Airpods Headphones,1,150.0,2019-05-26 14:44:00,306 Walnut St, Los Angeles,CA,90001 +201454,USB-C Charging Cable,1,11.95,2019-05-04 14:40:00,194 Madison St, San Francisco,CA,94016 +201455,Bose SoundSport Headphones,1,99.99,2019-05-13 22:08:00,142 Walnut St, Atlanta,GA,30301 +201456,ThinkPad Laptop,1,999.99,2019-05-01 22:57:00,889 Meadow St, Austin,TX,73301 +201457,Wired Headphones,1,11.99,2019-05-13 13:18:00,6 7th St, Boston,MA,02215 +201458,Apple Airpods Headphones,1,150.0,2019-05-04 14:17:00,360 Elm St, Boston,MA,02215 +201459,Bose SoundSport Headphones,1,99.99,2019-05-18 10:31:00,909 10th St, San Francisco,CA,94016 +201460,Lightning Charging Cable,1,14.95,2019-05-24 01:36:00,498 12th St, New York City,NY,10001 +201461,Apple Airpods Headphones,1,150.0,2019-05-21 14:23:00,417 2nd St, San Francisco,CA,94016 +201462,AAA Batteries (4-pack),1,2.99,2019-05-10 10:18:00,17 7th St, San Francisco,CA,94016 +201463,USB-C Charging Cable,1,11.95,2019-05-17 07:19:00,755 Jackson St, San Francisco,CA,94016 +201464,USB-C Charging Cable,2,11.95,2019-05-30 09:42:00,804 Madison St, Seattle,WA,98101 +201465,34in Ultrawide Monitor,1,379.99,2019-05-01 16:30:00,616 Jackson St, Portland,OR,97035 +201466,20in Monitor,1,109.99,2019-05-30 17:33:00,496 Lake St, Boston,MA,02215 +201467,Google Phone,1,600.0,2019-05-14 01:44:00,973 11th St, Portland,OR,97035 +201468,AA Batteries (4-pack),1,3.84,2019-05-28 12:26:00,943 Sunset St, San Francisco,CA,94016 +201469,34in Ultrawide Monitor,1,379.99,2019-05-23 13:51:00,400 Dogwood St, Los Angeles,CA,90001 +201470,AA Batteries (4-pack),1,3.84,2019-05-14 12:58:00,771 South St, Portland,OR,97035 +201471,USB-C Charging Cable,1,11.95,2019-05-04 14:12:00,595 Washington St, Los Angeles,CA,90001 +201472,Apple Airpods Headphones,1,150.0,2019-05-30 11:11:00,258 11th St, San Francisco,CA,94016 +201473,USB-C Charging Cable,1,11.95,2019-05-02 11:38:00,973 West St, San Francisco,CA,94016 +201474,27in FHD Monitor,1,149.99,2019-05-19 14:57:00,47 Cherry St, Portland,OR,97035 +201475,USB-C Charging Cable,1,11.95,2019-05-04 18:56:00,747 Meadow St, Los Angeles,CA,90001 +201476,Macbook Pro Laptop,1,1700.0,2019-05-12 18:26:00,765 Center St, New York City,NY,10001 +201477,USB-C Charging Cable,1,11.95,2019-05-19 15:58:00,25 Walnut St, San Francisco,CA,94016 +201478,AA Batteries (4-pack),1,3.84,2019-05-12 22:05:00,567 Dogwood St, San Francisco,CA,94016 +201479,Apple Airpods Headphones,1,150.0,2019-05-23 12:25:00,445 4th St, Boston,MA,02215 +201480,Lightning Charging Cable,1,14.95,2019-05-02 17:54:00,962 6th St, San Francisco,CA,94016 +201481,Bose SoundSport Headphones,1,99.99,2019-05-31 22:00:00,286 Dogwood St, Boston,MA,02215 +201482,34in Ultrawide Monitor,1,379.99,2019-05-06 14:27:00,170 Center St, Dallas,TX,75001 +201482,USB-C Charging Cable,1,11.95,2019-05-06 14:27:00,170 Center St, Dallas,TX,75001 +201483,Flatscreen TV,1,300.0,2019-05-03 10:37:00,716 Spruce St, New York City,NY,10001 +201484,34in Ultrawide Monitor,1,379.99,2019-05-03 10:28:00,352 13th St, San Francisco,CA,94016 +201485,Google Phone,1,600.0,2019-05-24 07:39:00,505 10th St, Los Angeles,CA,90001 +201486,Lightning Charging Cable,1,14.95,2019-05-12 13:42:00,36 Elm St, Atlanta,GA,30301 +201487,Macbook Pro Laptop,1,1700.0,2019-05-21 13:25:00,663 Adams St, New York City,NY,10001 +201488,Wired Headphones,2,11.99,2019-05-22 16:35:00,605 Pine St, Seattle,WA,98101 +201489,Wired Headphones,1,11.99,2019-05-21 00:58:00,238 Walnut St, San Francisco,CA,94016 +201490,Lightning Charging Cable,1,14.95,2019-05-27 12:35:00,412 Meadow St, San Francisco,CA,94016 +201491,USB-C Charging Cable,1,11.95,2019-05-23 21:23:00,396 Hickory St, Portland,OR,97035 +201492,27in FHD Monitor,1,149.99,2019-05-21 17:55:00,239 Hill St, San Francisco,CA,94016 +201493,Lightning Charging Cable,1,14.95,2019-05-20 08:10:00,698 Jefferson St, Los Angeles,CA,90001 +201494,Wired Headphones,1,11.99,2019-05-25 14:08:00,568 Pine St, San Francisco,CA,94016 +201495,AA Batteries (4-pack),1,3.84,2019-05-28 13:50:00,542 Lincoln St, San Francisco,CA,94016 +201496,AAA Batteries (4-pack),1,2.99,2019-05-08 15:40:00,556 Sunset St, San Francisco,CA,94016 +201497,iPhone,1,700.0,2019-05-30 21:38:00,875 14th St, Dallas,TX,75001 +201497,Lightning Charging Cable,1,14.95,2019-05-30 21:38:00,875 14th St, Dallas,TX,75001 +201498,Google Phone,1,600.0,2019-05-02 08:15:00,8 8th St, Atlanta,GA,30301 +201499,Apple Airpods Headphones,1,150.0,2019-05-03 11:58:00,75 7th St, Los Angeles,CA,90001 +201500,Wired Headphones,2,11.99,2019-05-09 20:43:00,300 9th St, Dallas,TX,75001 +201501,Lightning Charging Cable,1,14.95,2019-05-18 17:23:00,998 8th St, Atlanta,GA,30301 +201502,Apple Airpods Headphones,1,150.0,2019-05-16 20:52:00,876 Hickory St, Dallas,TX,75001 +201503,AA Batteries (4-pack),1,3.84,2019-05-15 09:08:00,361 Sunset St, Dallas,TX,75001 +201504,Apple Airpods Headphones,1,150.0,2019-05-01 15:52:00,3 Sunset St, Dallas,TX,75001 +201505,USB-C Charging Cable,1,11.95,2019-05-15 09:56:00,861 Washington St, Austin,TX,73301 +201506,Flatscreen TV,1,300.0,2019-05-20 19:56:00,187 Forest St, San Francisco,CA,94016 +201507,Macbook Pro Laptop,1,1700.0,2019-05-05 16:59:00,670 Hickory St, Portland,OR,97035 +201508,Vareebadd Phone,1,400.0,2019-05-30 10:34:00,872 1st St, Dallas,TX,75001 +201509,20in Monitor,1,109.99,2019-05-04 11:44:00,113 14th St, Atlanta,GA,30301 +201510,Flatscreen TV,1,300.0,2019-05-06 08:07:00,329 2nd St, Seattle,WA,98101 +201511,AAA Batteries (4-pack),1,2.99,2019-05-28 18:10:00,392 Willow St, Los Angeles,CA,90001 +201512,USB-C Charging Cable,1,11.95,2019-05-11 21:53:00,558 11th St, New York City,NY,10001 +201513,Apple Airpods Headphones,1,150.0,2019-05-24 01:24:00,440 Center St, Austin,TX,73301 +201514,27in 4K Gaming Monitor,1,389.99,2019-05-10 21:21:00,189 13th St, Dallas,TX,75001 +201515,Flatscreen TV,1,300.0,2019-05-15 17:44:00,10 Walnut St, Los Angeles,CA,90001 +201516,Wired Headphones,1,11.99,2019-05-25 19:01:00,272 Chestnut St, Boston,MA,02215 +201517,Lightning Charging Cable,1,14.95,2019-05-18 12:39:00,711 Washington St, Austin,TX,73301 +201518,Wired Headphones,1,11.99,2019-05-08 18:11:00,21 Spruce St, New York City,NY,10001 +201519,Lightning Charging Cable,1,14.95,2019-05-16 19:36:00,71 5th St, Boston,MA,02215 +201520,AAA Batteries (4-pack),2,2.99,2019-05-07 21:00:00,850 Adams St, Atlanta,GA,30301 +201521,AA Batteries (4-pack),1,3.84,2019-05-13 13:53:00,80 Lakeview St, San Francisco,CA,94016 +201522,Lightning Charging Cable,1,14.95,2019-05-22 08:44:00,159 Pine St, Boston,MA,02215 +201523,Wired Headphones,1,11.99,2019-05-03 18:48:00,652 Lincoln St, Seattle,WA,98101 +201524,Apple Airpods Headphones,1,150.0,2019-05-14 23:24:00,175 5th St, New York City,NY,10001 +201525,AA Batteries (4-pack),2,3.84,2019-05-18 14:43:00,3 Lakeview St, Boston,MA,02215 +201526,Bose SoundSport Headphones,1,99.99,2019-05-10 22:06:00,318 Willow St, Austin,TX,73301 +201527,Apple Airpods Headphones,1,150.0,2019-05-11 14:49:00,440 12th St, New York City,NY,10001 +201528,USB-C Charging Cable,1,11.95,2019-05-02 20:39:00,660 Ridge St, San Francisco,CA,94016 +201529,Apple Airpods Headphones,1,150.0,2019-05-16 08:51:00,691 Walnut St, San Francisco,CA,94016 +201530,27in 4K Gaming Monitor,1,389.99,2019-05-29 22:01:00,862 2nd St, Boston,MA,02215 +201531,Apple Airpods Headphones,1,150.0,2019-05-12 12:42:00,703 8th St, San Francisco,CA,94016 +201532,Wired Headphones,1,11.99,2019-05-28 20:21:00,143 Spruce St, Dallas,TX,75001 +201533,Apple Airpods Headphones,1,150.0,2019-05-01 11:55:00,155 10th St, New York City,NY,10001 +201534,AAA Batteries (4-pack),1,2.99,2019-05-23 00:21:00,728 Walnut St, Atlanta,GA,30301 +201535,Wired Headphones,1,11.99,2019-05-02 11:48:00,639 7th St, Los Angeles,CA,90001 +201536,LG Dryer,1,600.0,2019-05-01 22:26:00,711 1st St, New York City,NY,10001 +201537,Bose SoundSport Headphones,1,99.99,2019-05-10 19:25:00,643 Chestnut St, New York City,NY,10001 +201538,Bose SoundSport Headphones,1,99.99,2019-05-13 11:15:00,208 Elm St, New York City,NY,10001 +201539,Macbook Pro Laptop,1,1700.0,2019-05-12 12:28:00,428 Chestnut St, Los Angeles,CA,90001 +201540,Lightning Charging Cable,1,14.95,2019-05-22 13:20:00,285 Lake St, Portland,OR,97035 +201541,Vareebadd Phone,1,400.0,2019-05-11 20:02:00,130 Maple St, Dallas,TX,75001 +201542,Google Phone,1,600.0,2019-05-13 05:37:00,666 Highland St, Los Angeles,CA,90001 +201543,Apple Airpods Headphones,1,150.0,2019-05-30 15:53:00,47 Hickory St, Los Angeles,CA,90001 +201544,20in Monitor,1,109.99,2019-05-04 20:53:00,498 Walnut St, Los Angeles,CA,90001 +201545,AAA Batteries (4-pack),4,2.99,2019-05-29 15:00:00,784 10th St, New York City,NY,10001 +201546,Wired Headphones,1,11.99,2019-05-26 07:55:00,34 Maple St, Los Angeles,CA,90001 +201547,Google Phone,1,600.0,2019-05-21 13:49:00,746 Wilson St, Atlanta,GA,30301 +201547,USB-C Charging Cable,1,11.95,2019-05-21 13:49:00,746 Wilson St, Atlanta,GA,30301 +201548,AA Batteries (4-pack),1,3.84,2019-05-15 10:40:00,720 Sunset St, Atlanta,GA,30301 +201549,Flatscreen TV,1,300.0,2019-05-02 18:57:00,785 Willow St, Dallas,TX,75001 +201550,AAA Batteries (4-pack),2,2.99,2019-05-11 10:14:00,352 Sunset St, San Francisco,CA,94016 +201551,Flatscreen TV,1,300.0,2019-05-08 21:16:00,399 Lakeview St, New York City,NY,10001 +201552,Lightning Charging Cable,1,14.95,2019-05-28 04:57:00,623 Pine St, Austin,TX,73301 +201553,Flatscreen TV,1,300.0,2019-05-26 17:41:00,330 Spruce St, Los Angeles,CA,90001 +201554,27in 4K Gaming Monitor,1,389.99,2019-05-05 11:25:00,726 Park St, Austin,TX,73301 +201555,Google Phone,1,600.0,2019-05-21 13:28:00,449 Highland St, Los Angeles,CA,90001 +201556,Google Phone,1,600.0,2019-05-24 14:32:00,30 West St, New York City,NY,10001 +201557,AA Batteries (4-pack),1,3.84,2019-05-30 10:47:00,520 Elm St, Atlanta,GA,30301 +201558,iPhone,1,700.0,2019-05-26 15:26:00,556 6th St, Boston,MA,02215 +201558,Lightning Charging Cable,1,14.95,2019-05-26 15:26:00,556 6th St, Boston,MA,02215 +201559,Apple Airpods Headphones,1,150.0,2019-05-16 22:57:00,333 Park St, Boston,MA,02215 +201560,Bose SoundSport Headphones,1,99.99,2019-05-10 15:59:00,294 10th St, New York City,NY,10001 +201561,Bose SoundSport Headphones,1,99.99,2019-05-01 07:36:00,19 Cedar St, Atlanta,GA,30301 +201562,USB-C Charging Cable,1,11.95,2019-05-03 12:18:00,396 1st St, Los Angeles,CA,90001 +201563,AA Batteries (4-pack),1,3.84,2019-05-20 17:09:00,287 Maple St, Seattle,WA,98101 +201564,Wired Headphones,1,11.99,2019-05-28 08:31:00,220 Dogwood St, New York City,NY,10001 +201565,Apple Airpods Headphones,1,150.0,2019-05-20 15:57:00,621 South St, Dallas,TX,75001 +201566,USB-C Charging Cable,1,11.95,2019-05-08 21:57:00,16 5th St, Los Angeles,CA,90001 +201567,AA Batteries (4-pack),2,3.84,2019-05-21 19:03:00,829 Hill St, Atlanta,GA,30301 +201568,USB-C Charging Cable,1,11.95,2019-05-27 07:54:00,780 Maple St, Atlanta,GA,30301 +201569,Vareebadd Phone,1,400.0,2019-05-14 21:28:00,12 12th St, San Francisco,CA,94016 +201570,AAA Batteries (4-pack),1,2.99,2019-05-18 11:21:00,529 6th St, Boston,MA,02215 +201571,AAA Batteries (4-pack),1,2.99,2019-05-27 10:22:00,651 Maple St, San Francisco,CA,94016 +201572,Lightning Charging Cable,1,14.95,2019-05-20 19:33:00,749 14th St, Dallas,TX,75001 +201573,Lightning Charging Cable,1,14.95,2019-05-23 20:19:00,978 Cherry St, Atlanta,GA,30301 +201574,Lightning Charging Cable,1,14.95,2019-05-14 08:04:00,622 Madison St, New York City,NY,10001 +201575,Lightning Charging Cable,1,14.95,2019-05-15 14:19:00,402 Spruce St, Dallas,TX,75001 +201576,Wired Headphones,1,11.99,2019-05-28 22:23:00,231 7th St, Austin,TX,73301 +201577,Apple Airpods Headphones,1,150.0,2019-05-03 12:00:00,505 Adams St, Los Angeles,CA,90001 +201578,Wired Headphones,1,11.99,2019-05-14 16:52:00,720 Willow St, San Francisco,CA,94016 +201579,Lightning Charging Cable,1,14.95,2019-05-09 19:01:00,426 13th St, New York City,NY,10001 +201579,Flatscreen TV,1,300.0,2019-05-09 19:01:00,426 13th St, New York City,NY,10001 +201580,Apple Airpods Headphones,1,150.0,2019-05-10 22:31:00,855 Lincoln St, San Francisco,CA,94016 +201581,Wired Headphones,1,11.99,2019-05-03 15:53:00,796 South St, Atlanta,GA,30301 +201582,ThinkPad Laptop,1,999.99,2019-05-12 20:33:00,8 Forest St, Atlanta,GA,30301 +201583,Wired Headphones,1,11.99,2019-05-07 23:13:00,11 Lincoln St, Atlanta,GA,30301 +201584,Macbook Pro Laptop,1,1700.0,2019-05-05 16:47:00,526 Forest St, Dallas,TX,75001 +201585,USB-C Charging Cable,1,11.95,2019-05-12 08:24:00,457 Elm St, New York City,NY,10001 +201586,Flatscreen TV,1,300.0,2019-05-31 21:49:00,309 Lake St, Boston,MA,02215 +201587,Apple Airpods Headphones,1,150.0,2019-05-07 13:01:00,143 Highland St, Los Angeles,CA,90001 +201588,27in 4K Gaming Monitor,1,389.99,2019-05-31 00:28:00,595 Ridge St, Portland,OR,97035 +201589,AAA Batteries (4-pack),1,2.99,2019-05-07 18:06:00,342 11th St, San Francisco,CA,94016 +201590,Wired Headphones,1,11.99,2019-05-20 01:32:00,782 Elm St, Portland,OR,97035 +201591,Apple Airpods Headphones,1,150.0,2019-05-28 08:26:00,609 Lakeview St, New York City,NY,10001 +201592,Google Phone,1,600.0,2019-05-22 13:57:00,200 Forest St, San Francisco,CA,94016 +201593,AA Batteries (4-pack),1,3.84,2019-05-28 12:45:00,202 North St, San Francisco,CA,94016 +201594,AA Batteries (4-pack),1,3.84,2019-05-16 22:03:00,716 11th St, New York City,NY,10001 +201595,AA Batteries (4-pack),1,3.84,2019-05-02 09:03:00,385 12th St, New York City,NY,10001 +201596,Bose SoundSport Headphones,1,99.99,2019-05-06 09:53:00,890 5th St, New York City,NY,10001 +201597,Wired Headphones,1,11.99,2019-05-26 23:50:00,614 Cherry St, Los Angeles,CA,90001 +201598,Apple Airpods Headphones,1,150.0,2019-05-30 12:08:00,386 Highland St, Los Angeles,CA,90001 +201599,AA Batteries (4-pack),1,3.84,2019-05-01 20:42:00,459 10th St, Austin,TX,73301 +201600,Lightning Charging Cable,1,14.95,2019-05-05 21:07:00,180 Forest St, Boston,MA,02215 +201601,AAA Batteries (4-pack),4,2.99,2019-05-31 11:26:00,422 13th St, Austin,TX,73301 +201602,Bose SoundSport Headphones,1,99.99,2019-05-12 00:24:00,996 Lincoln St, Boston,MA,02215 +201603,AA Batteries (4-pack),1,3.84,2019-05-04 19:39:00,403 Forest St, New York City,NY,10001 +201604,AA Batteries (4-pack),3,3.84,2019-05-31 21:55:00,194 Forest St, Seattle,WA,98101 +201605,Bose SoundSport Headphones,1,99.99,2019-05-07 09:34:00,156 Adams St, New York City,NY,10001 +201606,AA Batteries (4-pack),1,3.84,2019-05-02 14:07:00,309 Main St, Seattle,WA,98101 +201607,Bose SoundSport Headphones,1,99.99,2019-05-09 09:57:00,951 Walnut St, Boston,MA,02215 +201608,USB-C Charging Cable,1,11.95,2019-05-03 18:56:00,427 11th St, Portland,OR,97035 +201609,Vareebadd Phone,1,400.0,2019-05-01 16:49:00,892 Walnut St, Boston,MA,02215 +201610,Apple Airpods Headphones,1,150.0,2019-05-28 02:00:00,527 5th St, San Francisco,CA,94016 +201611,20in Monitor,1,109.99,2019-05-10 12:40:00,982 Center St, Boston,MA,02215 +201612,27in 4K Gaming Monitor,1,389.99,2019-05-15 11:18:00,880 Dogwood St, Los Angeles,CA,90001 +201613,20in Monitor,1,109.99,2019-05-21 19:04:00,215 Dogwood St, New York City,NY,10001 +201614,AA Batteries (4-pack),1,3.84,2019-05-15 19:01:00,317 2nd St, Portland,OR,97035 +201615,ThinkPad Laptop,1,999.99,2019-05-07 22:06:00,478 Maple St, New York City,NY,10001 +201616,Wired Headphones,1,11.99,2019-05-20 13:04:00,616 Park St, Boston,MA,02215 +201617,AA Batteries (4-pack),1,3.84,2019-05-19 11:33:00,942 Jefferson St, Atlanta,GA,30301 +201618,AA Batteries (4-pack),1,3.84,2019-05-13 18:48:00,562 Jefferson St, Austin,TX,73301 +201619,Apple Airpods Headphones,1,150.0,2019-05-12 13:55:00,985 Ridge St, Los Angeles,CA,90001 +201620,Lightning Charging Cable,1,14.95,2019-05-09 12:39:00,83 Walnut St, San Francisco,CA,94016 +201621,Lightning Charging Cable,1,14.95,2019-05-02 18:13:00,406 Center St, San Francisco,CA,94016 +201622,Lightning Charging Cable,1,14.95,2019-05-18 11:19:00,494 4th St, Dallas,TX,75001 +201623,ThinkPad Laptop,1,999.99,2019-05-04 16:17:00,327 Dogwood St, Seattle,WA,98101 +201624,AA Batteries (4-pack),1,3.84,2019-05-18 11:23:00,21 10th St, San Francisco,CA,94016 +201625,Bose SoundSport Headphones,1,99.99,2019-05-27 12:28:00,321 Willow St, Austin,TX,73301 +201626,USB-C Charging Cable,1,11.95,2019-05-02 19:00:00,875 7th St, Dallas,TX,75001 +201627,Google Phone,1,600.0,2019-05-25 16:55:00,10 1st St, San Francisco,CA,94016 +201628,27in FHD Monitor,1,149.99,2019-05-10 15:36:00,420 Forest St, Boston,MA,02215 +201629,USB-C Charging Cable,1,11.95,2019-05-10 21:00:00,584 6th St, San Francisco,CA,94016 +201630,20in Monitor,1,109.99,2019-05-28 11:11:00,491 7th St, New York City,NY,10001 +201631,USB-C Charging Cable,1,11.95,2019-05-09 18:50:00,897 7th St, Boston,MA,02215 +201632,USB-C Charging Cable,1,11.95,2019-05-13 20:45:00,800 Ridge St, Atlanta,GA,30301 +201633,USB-C Charging Cable,1,11.95,2019-05-01 22:40:00,935 Hill St, Los Angeles,CA,90001 +201634,AAA Batteries (4-pack),1,2.99,2019-05-19 20:14:00,592 River St, Dallas,TX,75001 +201635,iPhone,1,700.0,2019-05-27 09:58:00,716 Lakeview St, Los Angeles,CA,90001 +201636,AAA Batteries (4-pack),1,2.99,2019-05-28 18:29:00,83 11th St, Los Angeles,CA,90001 +201637,AA Batteries (4-pack),1,3.84,2019-05-05 11:43:00,826 Lake St, Seattle,WA,98101 +201638,Bose SoundSport Headphones,1,99.99,2019-05-11 21:32:00,261 Center St, New York City,NY,10001 +201639,34in Ultrawide Monitor,1,379.99,2019-05-03 12:46:00,558 Hickory St, Dallas,TX,75001 +201640,Lightning Charging Cable,1,14.95,2019-05-03 23:01:00,7 Lakeview St, Seattle,WA,98101 +201641,Wired Headphones,1,11.99,2019-05-08 13:52:00,274 Lincoln St, San Francisco,CA,94016 +201642,Bose SoundSport Headphones,1,99.99,2019-05-27 13:46:00,781 Spruce St, Atlanta,GA,30301 +201643,Lightning Charging Cable,1,14.95,2019-05-20 14:24:00,165 6th St, New York City,NY,10001 +201644,AA Batteries (4-pack),1,3.84,2019-05-11 16:11:00,240 14th St, New York City,NY,10001 +201645,Flatscreen TV,1,300.0,2019-05-08 12:16:00,998 Johnson St, New York City,NY,10001 +201646,Bose SoundSport Headphones,1,99.99,2019-05-13 12:48:00,853 Madison St, New York City,NY,10001 +201647,iPhone,1,700.0,2019-05-20 11:34:00,808 River St, Boston,MA,02215 +201648,iPhone,1,700.0,2019-05-02 10:17:00,465 9th St, Austin,TX,73301 +201649,Apple Airpods Headphones,1,150.0,2019-05-02 08:09:00,808 Jefferson St, San Francisco,CA,94016 +201650,34in Ultrawide Monitor,1,379.99,2019-05-07 18:25:00,999 Maple St, Boston,MA,02215 +201651,Wired Headphones,1,11.99,2019-05-29 20:53:00,988 Elm St, Boston,MA,02215 +201652,AAA Batteries (4-pack),1,2.99,2019-05-30 12:09:00,118 Church St, Austin,TX,73301 +201653,iPhone,1,700.0,2019-05-21 22:06:00,454 12th St, New York City,NY,10001 +201654,20in Monitor,1,109.99,2019-05-14 12:23:00,790 Highland St, San Francisco,CA,94016 +201655,AAA Batteries (4-pack),3,2.99,2019-05-10 13:53:00,368 Meadow St, San Francisco,CA,94016 +201656,USB-C Charging Cable,1,11.95,2019-05-13 19:07:00,117 Pine St, Seattle,WA,98101 +201657,Wired Headphones,1,11.99,2019-05-05 14:32:00,569 Chestnut St, San Francisco,CA,94016 +201658,Macbook Pro Laptop,1,1700.0,2019-05-11 18:15:00,948 9th St, San Francisco,CA,94016 +201659,iPhone,1,700.0,2019-05-29 13:21:00,977 Park St, Austin,TX,73301 +201660,Macbook Pro Laptop,1,1700.0,2019-05-02 14:17:00,89 Wilson St, San Francisco,CA,94016 +201661,USB-C Charging Cable,1,11.95,2019-05-10 11:17:00,222 8th St, San Francisco,CA,94016 +201662,AAA Batteries (4-pack),1,2.99,2019-05-22 11:32:00,888 9th St, San Francisco,CA,94016 +201663,20in Monitor,1,109.99,2019-05-18 18:22:00,40 Sunset St, San Francisco,CA,94016 +201664,ThinkPad Laptop,1,999.99,2019-05-25 20:49:00,965 Meadow St, San Francisco,CA,94016 +201665,34in Ultrawide Monitor,1,379.99,2019-05-01 17:04:00,692 5th St, Los Angeles,CA,90001 +201666,Flatscreen TV,1,300.0,2019-05-01 14:18:00,525 Wilson St, Seattle,WA,98101 +201667,AAA Batteries (4-pack),1,2.99,2019-05-15 09:52:00,365 Hill St, Boston,MA,02215 +201668,Bose SoundSport Headphones,1,99.99,2019-05-24 22:15:00,327 2nd St, Los Angeles,CA,90001 +201669,Wired Headphones,1,11.99,2019-05-14 10:31:00,964 14th St, Boston,MA,02215 +201670,iPhone,1,700.0,2019-05-28 20:35:00,57 Park St, Boston,MA,02215 +201671,Vareebadd Phone,1,400.0,2019-05-02 20:27:00,522 Center St, San Francisco,CA,94016 +201672,27in 4K Gaming Monitor,1,389.99,2019-05-13 16:44:00,622 Chestnut St, Seattle,WA,98101 +201672,Wired Headphones,1,11.99,2019-05-13 16:44:00,622 Chestnut St, Seattle,WA,98101 +201673,Wired Headphones,1,11.99,2019-05-22 04:56:00,964 Park St, Portland,OR,97035 +201674,USB-C Charging Cable,1,11.95,2019-05-24 14:52:00,222 Walnut St, Los Angeles,CA,90001 +201675,Lightning Charging Cable,1,14.95,2019-05-24 08:37:00,203 Chestnut St, Portland,OR,97035 +201676,Vareebadd Phone,1,400.0,2019-05-12 16:26:00,358 Forest St, Los Angeles,CA,90001 +201676,AAA Batteries (4-pack),1,2.99,2019-05-12 16:26:00,358 Forest St, Los Angeles,CA,90001 +201677,Lightning Charging Cable,1,14.95,2019-05-02 23:49:00,300 West St, New York City,NY,10001 +201678,Flatscreen TV,1,300.0,2019-05-11 19:47:00,620 Dogwood St, Dallas,TX,75001 +201679,27in FHD Monitor,1,149.99,2019-05-14 15:03:00,130 Meadow St, Boston,MA,02215 +201680,Wired Headphones,1,11.99,2019-05-06 16:33:00,869 4th St, Los Angeles,CA,90001 +201681,Bose SoundSport Headphones,1,99.99,2019-05-28 18:35:00,318 River St, Boston,MA,02215 +201682,AA Batteries (4-pack),1,3.84,2019-05-14 15:27:00,947 Meadow St, Boston,MA,02215 +201683,AAA Batteries (4-pack),1,2.99,2019-05-10 10:42:00,662 Walnut St, Los Angeles,CA,90001 +201684,AAA Batteries (4-pack),2,2.99,2019-05-30 18:01:00,106 Washington St, Los Angeles,CA,90001 +201685,AAA Batteries (4-pack),5,2.99,2019-05-27 17:33:00,666 Madison St, Los Angeles,CA,90001 +201686,Apple Airpods Headphones,1,150.0,2019-05-28 18:38:00,919 Willow St, Boston,MA,02215 +201687,Wired Headphones,1,11.99,2019-05-10 12:44:00,572 6th St, Dallas,TX,75001 +201688,AAA Batteries (4-pack),5,2.99,2019-05-17 20:14:00,534 Elm St, San Francisco,CA,94016 +201689,AAA Batteries (4-pack),1,2.99,2019-05-29 13:00:00,558 Highland St, San Francisco,CA,94016 +201690,USB-C Charging Cable,1,11.95,2019-05-09 00:10:00,817 Sunset St, Los Angeles,CA,90001 +201691,Wired Headphones,1,11.99,2019-05-10 09:25:00,564 Chestnut St, New York City,NY,10001 +201692,Wired Headphones,1,11.99,2019-05-04 14:38:00,186 2nd St, San Francisco,CA,94016 +201693,Apple Airpods Headphones,1,150.0,2019-05-13 19:34:00,947 6th St, New York City,NY,10001 +201694,Apple Airpods Headphones,1,150.0,2019-05-17 18:15:00,976 Jackson St, Seattle,WA,98101 +201695,Apple Airpods Headphones,1,150.0,2019-05-04 22:23:00,703 Lakeview St, New York City,NY,10001 +201696,Wired Headphones,1,11.99,2019-05-21 12:08:00,163 Cherry St, Boston,MA,02215 +201697,Lightning Charging Cable,1,14.95,2019-05-30 19:42:00,802 10th St, Portland,OR,97035 +201698,iPhone,1,700.0,2019-05-07 12:33:00,814 Washington St, San Francisco,CA,94016 +201699,27in FHD Monitor,1,149.99,2019-05-06 10:48:00,66 Pine St, New York City,NY,10001 +201700,AA Batteries (4-pack),2,3.84,2019-05-01 17:51:00,938 South St, San Francisco,CA,94016 +201700,20in Monitor,1,109.99,2019-05-01 17:51:00,938 South St, San Francisco,CA,94016 +201701,20in Monitor,1,109.99,2019-05-24 21:18:00,475 Madison St, Los Angeles,CA,90001 +201702,AA Batteries (4-pack),1,3.84,2019-05-02 12:56:00,886 13th St, Los Angeles,CA,90001 +201703,27in 4K Gaming Monitor,1,389.99,2019-05-14 14:28:00,795 Walnut St, Boston,MA,02215 +201704,Macbook Pro Laptop,1,1700.0,2019-05-17 07:03:00,705 Madison St, New York City,NY,10001 +201705,27in 4K Gaming Monitor,1,389.99,2019-05-13 13:13:00,53 Sunset St, Austin,TX,73301 +201706,iPhone,1,700.0,2019-05-28 21:30:00,935 Meadow St, Portland,OR,97035 +201707,27in FHD Monitor,1,149.99,2019-05-03 13:17:00,611 North St, Portland,OR,97035 +201708,USB-C Charging Cable,1,11.95,2019-05-02 05:24:00,101 4th St, Dallas,TX,75001 +201708,LG Dryer,1,600.0,2019-05-02 05:24:00,101 4th St, Dallas,TX,75001 +201709,AA Batteries (4-pack),1,3.84,2019-05-18 14:41:00,49 Forest St, Dallas,TX,75001 +201710,27in 4K Gaming Monitor,1,389.99,2019-05-03 18:40:00,733 Jefferson St, San Francisco,CA,94016 +201711,Wired Headphones,3,11.99,2019-05-03 16:28:00,875 1st St, New York City,NY,10001 +201712,Bose SoundSport Headphones,1,99.99,2019-05-27 09:03:00,327 7th St, Dallas,TX,75001 +201713,AAA Batteries (4-pack),3,2.99,2019-05-21 03:57:00,845 Willow St, Dallas,TX,75001 +201714,Apple Airpods Headphones,1,150.0,2019-05-23 02:28:00,582 Jefferson St, San Francisco,CA,94016 +201715,AAA Batteries (4-pack),1,2.99,2019-05-30 13:12:00,524 11th St, Austin,TX,73301 +201716,iPhone,1,700.0,2019-05-22 17:21:00,915 Meadow St, New York City,NY,10001 +201717,Wired Headphones,1,11.99,2019-05-06 15:07:00,600 Johnson St, San Francisco,CA,94016 +201718,AAA Batteries (4-pack),3,2.99,2019-05-13 16:48:00,633 Madison St, New York City,NY,10001 +201719,AAA Batteries (4-pack),1,2.99,2019-05-28 15:43:00,503 10th St, Boston,MA,02215 +201720,Vareebadd Phone,1,400.0,2019-05-14 21:09:00,867 Walnut St, Austin,TX,73301 +201720,USB-C Charging Cable,1,11.95,2019-05-14 21:09:00,867 Walnut St, Austin,TX,73301 +201721,AA Batteries (4-pack),1,3.84,2019-05-12 14:02:00,733 South St, New York City,NY,10001 +201722,Lightning Charging Cable,1,14.95,2019-05-19 08:37:00,243 Wilson St, Portland,OR,97035 +201723,AAA Batteries (4-pack),2,2.99,2019-05-28 14:35:00,22 Main St, New York City,NY,10001 +201724,ThinkPad Laptop,1,999.99,2019-05-22 19:41:00,785 14th St, San Francisco,CA,94016 +201725,Macbook Pro Laptop,1,1700.0,2019-05-10 17:31:00,427 Church St, Boston,MA,02215 +201726,AA Batteries (4-pack),3,3.84,2019-05-07 13:35:00,453 Madison St, San Francisco,CA,94016 +201727,AAA Batteries (4-pack),1,2.99,2019-05-08 17:00:00,659 2nd St, New York City,NY,10001 +201728,Macbook Pro Laptop,1,1700.0,2019-05-23 22:14:00,380 Center St, San Francisco,CA,94016 +201729,Apple Airpods Headphones,1,150.0,2019-05-17 17:51:00,768 South St, Austin,TX,73301 +201729,Lightning Charging Cable,1,14.95,2019-05-17 17:51:00,768 South St, Austin,TX,73301 +201730,Bose SoundSport Headphones,1,99.99,2019-05-07 23:03:00,868 Jefferson St, Seattle,WA,98101 +201730,AAA Batteries (4-pack),3,2.99,2019-05-07 23:03:00,868 Jefferson St, Seattle,WA,98101 +201731,USB-C Charging Cable,1,11.95,2019-05-20 12:43:00,116 12th St, Seattle,WA,98101 +201732,AA Batteries (4-pack),1,3.84,2019-05-17 22:31:00,279 6th St, San Francisco,CA,94016 +201733,Google Phone,1,600.0,2019-05-08 13:45:00,107 13th St, New York City,NY,10001 +201734,Google Phone,1,600.0,2019-05-19 11:32:00,347 Madison St, Seattle,WA,98101 +201735,Lightning Charging Cable,1,14.95,2019-05-22 15:35:00,964 Lakeview St, Portland,OR,97035 +201736,AAA Batteries (4-pack),1,2.99,2019-05-01 13:00:00,351 Lakeview St, New York City,NY,10001 +201737,Bose SoundSport Headphones,1,99.99,2019-05-28 16:52:00,315 Pine St, Boston,MA,02215 +201738,Lightning Charging Cable,1,14.95,2019-05-19 17:19:00,238 Walnut St, Atlanta,GA,30301 +201739,AA Batteries (4-pack),1,3.84,2019-05-11 20:45:00,515 Ridge St, New York City,NY,10001 +201740,Google Phone,1,600.0,2019-05-31 18:45:00,4 Walnut St, San Francisco,CA,94016 +201741,20in Monitor,1,109.99,2019-05-26 00:06:00,977 Sunset St, New York City,NY,10001 +201742,Wired Headphones,1,11.99,2019-05-09 10:05:00,621 Hickory St, New York City,NY,10001 +201743,Lightning Charging Cable,1,14.95,2019-05-04 20:16:00,148 Dogwood St, Portland,OR,97035 +201744,Apple Airpods Headphones,1,150.0,2019-05-19 22:57:00,502 Walnut St, New York City,NY,10001 +201745,Lightning Charging Cable,1,14.95,2019-05-08 22:28:00,475 Pine St, Seattle,WA,98101 +201746,Lightning Charging Cable,1,14.95,2019-05-04 14:05:00,757 Spruce St, San Francisco,CA,94016 +201747,Wired Headphones,1,11.99,2019-05-05 12:03:00,430 2nd St, San Francisco,CA,94016 +201748,Lightning Charging Cable,1,14.95,2019-05-07 10:32:00,491 4th St, San Francisco,CA,94016 +201749,Bose SoundSport Headphones,1,99.99,2019-05-12 17:28:00,13 Dogwood St, San Francisco,CA,94016 +201750,27in FHD Monitor,1,149.99,2019-05-07 15:48:00,900 11th St, San Francisco,CA,94016 +201751,Lightning Charging Cable,1,14.95,2019-05-09 17:02:00,590 13th St, Atlanta,GA,30301 +201752,Lightning Charging Cable,1,14.95,2019-05-21 14:14:00,234 Elm St, Boston,MA,02215 +201753,iPhone,1,700.0,2019-05-27 06:33:00,642 West St, Los Angeles,CA,90001 +201754,Apple Airpods Headphones,1,150.0,2019-05-26 21:12:00,926 West St, Atlanta,GA,30301 +201755,AAA Batteries (4-pack),1,2.99,2019-05-02 11:38:00,741 River St, Boston,MA,02215 +201756,27in FHD Monitor,1,149.99,2019-05-05 00:27:00,390 Jefferson St, San Francisco,CA,94016 +201757,20in Monitor,1,109.99,2019-05-31 10:58:00,388 Church St, Los Angeles,CA,90001 +201758,Lightning Charging Cable,1,14.95,2019-05-05 18:33:00,753 River St, Seattle,WA,98101 +201759,Lightning Charging Cable,1,14.95,2019-05-04 21:07:00,516 Park St, Portland,OR,97035 +201760,AAA Batteries (4-pack),1,2.99,2019-05-30 06:21:00,322 Main St, Seattle,WA,98101 +201761,Lightning Charging Cable,1,14.95,2019-05-15 07:21:00,355 Main St, Dallas,TX,75001 +201762,ThinkPad Laptop,1,999.99,2019-05-31 17:09:00,435 Main St, Austin,TX,73301 +201763,iPhone,1,700.0,2019-05-17 09:05:00,337 Wilson St, Seattle,WA,98101 +201764,Vareebadd Phone,1,400.0,2019-05-26 16:45:00,944 South St, Boston,MA,02215 +201765,Macbook Pro Laptop,1,1700.0,2019-05-11 23:24:00,336 Hill St, Seattle,WA,98101 +201766,ThinkPad Laptop,1,999.99,2019-05-23 11:48:00,293 River St, Atlanta,GA,30301 +201767,34in Ultrawide Monitor,1,379.99,2019-05-20 02:07:00,408 Willow St, Boston,MA,02215 +201768,Lightning Charging Cable,1,14.95,2019-05-26 13:10:00,957 Highland St, Atlanta,GA,30301 +201769,Bose SoundSport Headphones,1,99.99,2019-05-07 12:17:00,196 Jefferson St, San Francisco,CA,94016 +201770,20in Monitor,1,109.99,2019-05-17 20:46:00,292 Jackson St, Portland,ME,04101 +201771,20in Monitor,1,109.99,2019-05-01 21:17:00,491 2nd St, San Francisco,CA,94016 +201772,34in Ultrawide Monitor,1,379.99,2019-05-20 12:36:00,443 9th St, Dallas,TX,75001 +201773,Bose SoundSport Headphones,1,99.99,2019-05-02 20:16:00,441 Highland St, New York City,NY,10001 +201774,27in 4K Gaming Monitor,1,389.99,2019-05-21 13:38:00,44 11th St, Seattle,WA,98101 +201775,Google Phone,1,600.0,2019-05-23 13:52:00,879 Elm St, Portland,OR,97035 +201775,USB-C Charging Cable,1,11.95,2019-05-23 13:52:00,879 Elm St, Portland,OR,97035 +201775,Wired Headphones,1,11.99,2019-05-23 13:52:00,879 Elm St, Portland,OR,97035 +201776,USB-C Charging Cable,1,11.95,2019-05-14 09:33:00,726 Elm St, San Francisco,CA,94016 +201777,27in 4K Gaming Monitor,1,389.99,2019-05-14 09:42:00,314 4th St, Atlanta,GA,30301 +201778,USB-C Charging Cable,1,11.95,2019-05-19 19:51:00,284 Maple St, Boston,MA,02215 +201779,Flatscreen TV,1,300.0,2019-05-07 08:53:00,997 Walnut St, Boston,MA,02215 +201780,Wired Headphones,1,11.99,2019-05-29 13:32:00,921 Meadow St, Portland,ME,04101 +201781,Google Phone,1,600.0,2019-05-06 11:11:00,874 6th St, San Francisco,CA,94016 +201782,34in Ultrawide Monitor,1,379.99,2019-05-30 09:28:00,534 North St, San Francisco,CA,94016 +201783,AAA Batteries (4-pack),1,2.99,2019-05-05 18:19:00,148 Washington St, San Francisco,CA,94016 +201784,Lightning Charging Cable,1,14.95,2019-05-16 11:24:00,707 Maple St, New York City,NY,10001 +201785,AAA Batteries (4-pack),2,2.99,2019-05-14 14:22:00,208 Sunset St, San Francisco,CA,94016 +201786,27in FHD Monitor,1,149.99,2019-05-30 13:30:00,187 11th St, Los Angeles,CA,90001 +201787,27in FHD Monitor,1,149.99,2019-05-14 09:58:00,241 Cherry St, San Francisco,CA,94016 +201788,AAA Batteries (4-pack),1,2.99,2019-05-20 18:27:00,9 Lakeview St, Dallas,TX,75001 +201789,34in Ultrawide Monitor,1,379.99,2019-05-30 18:55:00,805 Church St, Atlanta,GA,30301 +201789,iPhone,1,700.0,2019-05-30 18:55:00,805 Church St, Atlanta,GA,30301 +201790,Lightning Charging Cable,1,14.95,2019-05-28 15:37:00,335 11th St, Los Angeles,CA,90001 +201791,Wired Headphones,1,11.99,2019-05-28 11:51:00,896 12th St, Portland,OR,97035 +201792,Lightning Charging Cable,1,14.95,2019-05-20 18:36:00,52 Dogwood St, Los Angeles,CA,90001 +201792,USB-C Charging Cable,1,11.95,2019-05-20 18:36:00,52 Dogwood St, Los Angeles,CA,90001 +201793,Apple Airpods Headphones,1,150.0,2019-05-20 08:23:00,440 River St, San Francisco,CA,94016 +201794,Apple Airpods Headphones,1,150.0,2019-05-28 11:29:00,447 North St, New York City,NY,10001 +201795,Wired Headphones,1,11.99,2019-05-27 14:06:00,385 8th St, Dallas,TX,75001 +201796,Wired Headphones,2,11.99,2019-05-19 07:26:00,483 4th St, Boston,MA,02215 +201797,27in 4K Gaming Monitor,1,389.99,2019-05-05 22:01:00,216 Jefferson St, New York City,NY,10001 +201798,iPhone,1,700.0,2019-05-05 16:56:00,488 Chestnut St, Los Angeles,CA,90001 +201798,Lightning Charging Cable,1,14.95,2019-05-05 16:56:00,488 Chestnut St, Los Angeles,CA,90001 +201799,27in FHD Monitor,1,149.99,2019-05-08 09:56:00,976 Jefferson St, Dallas,TX,75001 +201800,USB-C Charging Cable,2,11.95,2019-05-14 09:42:00,645 Highland St, San Francisco,CA,94016 +201801,USB-C Charging Cable,1,11.95,2019-05-22 10:12:00,504 14th St, New York City,NY,10001 +201802,Vareebadd Phone,1,400.0,2019-05-19 14:53:00,965 Sunset St, New York City,NY,10001 +201802,USB-C Charging Cable,1,11.95,2019-05-19 14:53:00,965 Sunset St, New York City,NY,10001 +201803,USB-C Charging Cable,1,11.95,2019-05-20 12:51:00,450 9th St, Seattle,WA,98101 +201804,Lightning Charging Cable,1,14.95,2019-05-26 01:14:00,399 Highland St, Los Angeles,CA,90001 +201805,AAA Batteries (4-pack),4,2.99,2019-05-05 15:41:00,579 4th St, Austin,TX,73301 +201806,ThinkPad Laptop,1,999.99,2019-05-23 11:38:00,642 Ridge St, Los Angeles,CA,90001 +201807,Bose SoundSport Headphones,1,99.99,2019-05-28 14:59:00,579 Highland St, Boston,MA,02215 +201808,34in Ultrawide Monitor,1,379.99,2019-05-28 08:18:00,258 8th St, Los Angeles,CA,90001 +201809,AAA Batteries (4-pack),2,2.99,2019-05-04 07:27:00,908 Wilson St, Dallas,TX,75001 +201810,Wired Headphones,1,11.99,2019-05-09 17:33:00,273 Lake St, San Francisco,CA,94016 +201811,Lightning Charging Cable,1,14.95,2019-05-27 21:22:00,895 Sunset St, San Francisco,CA,94016 +201812,USB-C Charging Cable,1,11.95,2019-05-22 20:41:00,137 Jefferson St, New York City,NY,10001 +201813,Apple Airpods Headphones,1,150.0,2019-05-03 15:36:00,390 Forest St, Seattle,WA,98101 +201814,Google Phone,1,600.0,2019-05-16 16:54:00,94 Elm St, San Francisco,CA,94016 +201815,USB-C Charging Cable,1,11.95,2019-05-31 16:30:00,9 Lakeview St, New York City,NY,10001 +201816,Apple Airpods Headphones,1,150.0,2019-05-16 18:17:00,520 Jefferson St, Atlanta,GA,30301 +201817,LG Dryer,1,600.0,2019-05-07 22:35:00,573 South St, Seattle,WA,98101 +201818,Apple Airpods Headphones,1,150.0,2019-05-28 18:46:00,871 Park St, Austin,TX,73301 +201819,AAA Batteries (4-pack),1,2.99,2019-05-05 17:09:00,454 Highland St, Atlanta,GA,30301 +201820,USB-C Charging Cable,1,11.95,2019-05-08 16:30:00,915 Sunset St, San Francisco,CA,94016 +201821,Wired Headphones,1,11.99,2019-05-23 07:00:00,716 Lake St, San Francisco,CA,94016 +201822,Lightning Charging Cable,1,14.95,2019-05-22 11:26:00,775 Walnut St, Portland,OR,97035 +201823,Lightning Charging Cable,1,14.95,2019-05-03 16:56:00,40 Jefferson St, Portland,OR,97035 +201824,ThinkPad Laptop,1,999.99,2019-05-07 14:32:00,803 Washington St, San Francisco,CA,94016 +201825,AA Batteries (4-pack),3,3.84,2019-05-11 07:57:00,172 4th St, San Francisco,CA,94016 +201826,LG Washing Machine,1,600.0,2019-05-18 10:04:00,504 6th St, San Francisco,CA,94016 +201827,Bose SoundSport Headphones,1,99.99,2019-05-15 21:38:00,794 Adams St, Atlanta,GA,30301 +201828,USB-C Charging Cable,1,11.95,2019-05-02 18:16:00,679 River St, Portland,OR,97035 +201829,AA Batteries (4-pack),4,3.84,2019-05-09 17:05:00,628 Lincoln St, Dallas,TX,75001 +201830,AAA Batteries (4-pack),2,2.99,2019-05-26 18:13:00,812 13th St, Los Angeles,CA,90001 +201831,AAA Batteries (4-pack),2,2.99,2019-05-15 15:59:00,692 Ridge St, Dallas,TX,75001 +201832,iPhone,1,700.0,2019-05-09 12:32:00,278 Adams St, San Francisco,CA,94016 +201833,ThinkPad Laptop,1,999.99,2019-05-22 17:16:00,37 Lincoln St, New York City,NY,10001 +201834,AA Batteries (4-pack),1,3.84,2019-05-10 23:36:00,730 6th St, Portland,OR,97035 +201835,AAA Batteries (4-pack),1,2.99,2019-05-02 19:38:00,86 Elm St, San Francisco,CA,94016 +201836,AA Batteries (4-pack),2,3.84,2019-05-14 16:43:00,631 9th St, Boston,MA,02215 +201837,AAA Batteries (4-pack),1,2.99,2019-05-20 18:40:00,883 Pine St, Atlanta,GA,30301 +201838,AA Batteries (4-pack),1,3.84,2019-05-14 00:31:00,325 Johnson St, Boston,MA,02215 +201839,USB-C Charging Cable,1,11.95,2019-05-07 13:57:00,195 Ridge St, Portland,OR,97035 +201840,20in Monitor,1,109.99,2019-05-20 21:51:00,778 10th St, Dallas,TX,75001 +201841,Lightning Charging Cable,1,14.95,2019-05-22 12:21:00,182 7th St, New York City,NY,10001 +201842,Macbook Pro Laptop,1,1700.0,2019-05-02 19:49:00,791 Maple St, San Francisco,CA,94016 +201843,27in FHD Monitor,1,149.99,2019-05-10 13:42:00,985 Forest St, San Francisco,CA,94016 +201844,AAA Batteries (4-pack),5,2.99,2019-05-18 14:22:00,13 Jackson St, Seattle,WA,98101 +201845,Flatscreen TV,1,300.0,2019-05-25 23:41:00,242 Elm St, Portland,OR,97035 +201846,AA Batteries (4-pack),2,3.84,2019-05-17 12:00:00,162 8th St, Atlanta,GA,30301 +201847,Lightning Charging Cable,1,14.95,2019-05-06 16:46:00,196 Maple St, Portland,OR,97035 +201848,27in 4K Gaming Monitor,1,389.99,2019-05-18 21:21:00,477 10th St, Boston,MA,02215 +201849,27in FHD Monitor,1,149.99,2019-05-24 09:51:00,890 Highland St, Boston,MA,02215 +201850,AA Batteries (4-pack),1,3.84,2019-05-04 20:59:00,162 Jackson St, Atlanta,GA,30301 +201851,Wired Headphones,1,11.99,2019-05-07 08:48:00,546 Meadow St, San Francisco,CA,94016 +201852,34in Ultrawide Monitor,1,379.99,2019-05-31 07:50:00,33 14th St, New York City,NY,10001 +201853,Lightning Charging Cable,1,14.95,2019-05-11 02:13:00,63 South St, Los Angeles,CA,90001 +201854,Google Phone,1,600.0,2019-05-27 23:38:00,472 North St, Boston,MA,02215 +201855,USB-C Charging Cable,1,11.95,2019-05-14 08:46:00,830 Dogwood St, Dallas,TX,75001 +201856,Apple Airpods Headphones,1,150.0,2019-05-24 10:10:00,758 14th St, Los Angeles,CA,90001 +201857,27in 4K Gaming Monitor,1,389.99,2019-05-07 19:40:00,731 Johnson St, San Francisco,CA,94016 +201858,Wired Headphones,2,11.99,2019-05-02 19:56:00,204 River St, Boston,MA,02215 +201859,AA Batteries (4-pack),1,3.84,2019-05-13 19:47:00,139 Chestnut St, Los Angeles,CA,90001 +201860,Macbook Pro Laptop,1,1700.0,2019-05-03 22:27:00,285 South St, Portland,OR,97035 +201861,AA Batteries (4-pack),2,3.84,2019-05-30 10:44:00,896 5th St, Seattle,WA,98101 +201862,USB-C Charging Cable,1,11.95,2019-05-11 19:23:00,989 Jackson St, Los Angeles,CA,90001 +201863,27in FHD Monitor,1,149.99,2019-05-08 14:59:00,67 Madison St, San Francisco,CA,94016 +201864,Apple Airpods Headphones,1,150.0,2019-05-28 10:40:00,811 Highland St, Dallas,TX,75001 +201865,AA Batteries (4-pack),1,3.84,2019-05-30 15:54:00,788 Elm St, Seattle,WA,98101 +201866,Lightning Charging Cable,1,14.95,2019-05-10 15:40:00,536 Hill St, Atlanta,GA,30301 +201867,34in Ultrawide Monitor,1,379.99,2019-05-27 16:54:00,281 Ridge St, San Francisco,CA,94016 +201868,Wired Headphones,1,11.99,2019-05-16 12:24:00,440 Lincoln St, San Francisco,CA,94016 +201869,AAA Batteries (4-pack),1,2.99,2019-05-14 08:19:00,759 Lakeview St, Los Angeles,CA,90001 +201870,LG Washing Machine,1,600.0,2019-05-29 13:00:00,288 4th St, Boston,MA,02215 +201871,Bose SoundSport Headphones,1,99.99,2019-05-10 12:09:00,645 West St, New York City,NY,10001 +201872,Lightning Charging Cable,1,14.95,2019-05-05 12:36:00,349 Sunset St, Boston,MA,02215 +201873,Wired Headphones,1,11.99,2019-05-12 11:54:00,971 8th St, San Francisco,CA,94016 +201874,27in 4K Gaming Monitor,1,389.99,2019-05-07 13:53:00,232 5th St, New York City,NY,10001 +201875,34in Ultrawide Monitor,1,379.99,2019-05-16 08:12:00,120 Cherry St, New York City,NY,10001 +201876,Wired Headphones,1,11.99,2019-05-28 01:01:00,929 West St, San Francisco,CA,94016 +201877,Apple Airpods Headphones,1,150.0,2019-05-10 21:54:00,770 Wilson St, San Francisco,CA,94016 +201878,Google Phone,1,600.0,2019-05-10 12:14:00,827 Lakeview St, Seattle,WA,98101 +201879,Apple Airpods Headphones,1,150.0,2019-05-11 17:54:00,732 Lake St, Los Angeles,CA,90001 +201880,Macbook Pro Laptop,1,1700.0,2019-05-19 08:08:00,188 South St, Dallas,TX,75001 +201881,Wired Headphones,1,11.99,2019-05-16 08:25:00,150 Lakeview St, Portland,OR,97035 +201882,34in Ultrawide Monitor,1,379.99,2019-05-17 18:05:00,919 7th St, San Francisco,CA,94016 +201883,Apple Airpods Headphones,1,150.0,2019-05-21 20:16:00,919 Cherry St, Los Angeles,CA,90001 +201884,Lightning Charging Cable,1,14.95,2019-05-23 16:09:00,938 6th St, New York City,NY,10001 +201885,Lightning Charging Cable,3,14.95,2019-05-22 22:46:00,18 Spruce St, Austin,TX,73301 +201886,Flatscreen TV,1,300.0,2019-05-07 17:25:00,223 Washington St, Atlanta,GA,30301 +201887,Apple Airpods Headphones,1,150.0,2019-05-14 19:29:00,419 Pine St, Portland,OR,97035 +201888,USB-C Charging Cable,1,11.95,2019-05-01 16:40:00,514 5th St, Atlanta,GA,30301 +201889,Wired Headphones,3,11.99,2019-05-01 07:31:00,849 1st St, Atlanta,GA,30301 +201890,Lightning Charging Cable,1,14.95,2019-05-14 00:16:00,190 River St, Los Angeles,CA,90001 +201891,AAA Batteries (4-pack),1,2.99,2019-05-20 14:01:00,228 Walnut St, Seattle,WA,98101 +201892,AAA Batteries (4-pack),1,2.99,2019-05-28 11:00:00,96 Adams St, Los Angeles,CA,90001 +201893,AAA Batteries (4-pack),1,2.99,2019-05-28 11:14:00,565 Adams St, San Francisco,CA,94016 +201894,27in FHD Monitor,1,149.99,2019-05-25 10:15:00,286 5th St, Los Angeles,CA,90001 +201895,Wired Headphones,1,11.99,2019-05-03 08:42:00,629 Lake St, Austin,TX,73301 +201896,34in Ultrawide Monitor,1,379.99,2019-05-30 20:40:00,819 11th St, San Francisco,CA,94016 +201897,AA Batteries (4-pack),1,3.84,2019-05-20 20:34:00,570 Main St, San Francisco,CA,94016 +201898,AA Batteries (4-pack),1,3.84,2019-05-25 16:18:00,911 Church St, San Francisco,CA,94016 +201899,USB-C Charging Cable,1,11.95,2019-05-25 22:39:00,652 Lakeview St, New York City,NY,10001 +201900,Lightning Charging Cable,1,14.95,2019-05-04 14:51:00,341 Maple St, Portland,OR,97035 +201901,20in Monitor,1,109.99,2019-05-02 17:28:00,554 Walnut St, Boston,MA,02215 +201902,AA Batteries (4-pack),2,3.84,2019-05-28 20:23:00,807 Hill St, Dallas,TX,75001 +201903,Bose SoundSport Headphones,1,99.99,2019-05-11 08:59:00,773 Dogwood St, San Francisco,CA,94016 +201904,Lightning Charging Cable,2,14.95,2019-05-05 23:31:00,635 5th St, San Francisco,CA,94016 +201905,Wired Headphones,1,11.99,2019-05-06 00:15:00,82 Wilson St, Los Angeles,CA,90001 +201906,Wired Headphones,1,11.99,2019-05-22 09:13:00,775 South St, Seattle,WA,98101 +201907,AAA Batteries (4-pack),2,2.99,2019-05-29 11:25:00,546 Lakeview St, San Francisco,CA,94016 +201908,AAA Batteries (4-pack),1,2.99,2019-05-25 08:59:00,850 Ridge St, Dallas,TX,75001 +201909,Lightning Charging Cable,1,14.95,2019-05-27 10:57:00,898 North St, Boston,MA,02215 +201910,AAA Batteries (4-pack),1,2.99,2019-05-08 17:42:00,610 Hill St, New York City,NY,10001 +201911,Apple Airpods Headphones,1,150.0,2019-05-06 20:52:00,586 Hickory St, Portland,OR,97035 +201912,Apple Airpods Headphones,1,150.0,2019-05-08 06:41:00,801 Cedar St, Los Angeles,CA,90001 +201913,AAA Batteries (4-pack),2,2.99,2019-05-01 20:37:00,705 Willow St, San Francisco,CA,94016 +201914,AA Batteries (4-pack),1,3.84,2019-05-11 20:43:00,319 Lakeview St, San Francisco,CA,94016 +201915,AAA Batteries (4-pack),2,2.99,2019-05-16 09:19:00,28 4th St, Atlanta,GA,30301 +201916,Wired Headphones,1,11.99,2019-05-26 22:00:00,404 Cherry St, Boston,MA,02215 +201917,Google Phone,1,600.0,2019-05-25 23:06:00,94 Jefferson St, Boston,MA,02215 +201917,USB-C Charging Cable,1,11.95,2019-05-25 23:06:00,94 Jefferson St, Boston,MA,02215 +201918,USB-C Charging Cable,1,11.95,2019-05-17 19:04:00,459 Meadow St, Boston,MA,02215 +201919,34in Ultrawide Monitor,1,379.99,2019-05-31 12:47:00,967 Main St, Seattle,WA,98101 +201920,USB-C Charging Cable,1,11.95,2019-05-13 20:02:00,744 10th St, San Francisco,CA,94016 +201921,AA Batteries (4-pack),1,3.84,2019-05-28 21:46:00,279 Jackson St, Portland,OR,97035 +201922,Wired Headphones,1,11.99,2019-05-16 12:38:00,572 Church St, New York City,NY,10001 +201923,Wired Headphones,2,11.99,2019-05-29 13:36:00,834 14th St, Boston,MA,02215 +201924,27in FHD Monitor,1,149.99,2019-05-24 21:39:00,146 Hickory St, New York City,NY,10001 +201925,Flatscreen TV,1,300.0,2019-05-29 14:57:00,754 9th St, New York City,NY,10001 +201926,Bose SoundSport Headphones,1,99.99,2019-05-08 19:22:00,288 Highland St, New York City,NY,10001 +201927,27in 4K Gaming Monitor,1,389.99,2019-05-30 13:01:00,541 Johnson St, New York City,NY,10001 +201928,Google Phone,1,600.0,2019-05-20 14:20:00,549 Jefferson St, Dallas,TX,75001 +201929,Lightning Charging Cable,1,14.95,2019-05-22 19:39:00,525 North St, Portland,OR,97035 +201930,AAA Batteries (4-pack),1,2.99,2019-05-10 01:20:00,471 River St, Portland,OR,97035 +201931,Flatscreen TV,1,300.0,2019-05-11 00:13:00,133 7th St, New York City,NY,10001 +201932,Lightning Charging Cable,1,14.95,2019-05-20 09:38:00,418 Meadow St, Boston,MA,02215 +201933,AA Batteries (4-pack),1,3.84,2019-05-19 10:47:00,54 Adams St, San Francisco,CA,94016 +201934,Flatscreen TV,1,300.0,2019-05-18 08:06:00,15 Ridge St, Los Angeles,CA,90001 +201935,Bose SoundSport Headphones,1,99.99,2019-05-27 10:29:00,267 Ridge St, Portland,OR,97035 +201936,Lightning Charging Cable,1,14.95,2019-05-13 16:03:00,148 Lake St, Los Angeles,CA,90001 +201937,AA Batteries (4-pack),1,3.84,2019-05-30 11:01:00,345 1st St, Los Angeles,CA,90001 +201938,iPhone,1,700.0,2019-05-10 18:20:00,168 Walnut St, San Francisco,CA,94016 +201939,Apple Airpods Headphones,1,150.0,2019-05-23 07:06:00,676 Pine St, Boston,MA,02215 +201939,Flatscreen TV,1,300.0,2019-05-23 07:06:00,676 Pine St, Boston,MA,02215 +201940,27in FHD Monitor,1,149.99,2019-05-04 23:00:00,742 Hickory St, Boston,MA,02215 +201941,AA Batteries (4-pack),1,3.84,2019-05-22 08:37:00,812 North St, Los Angeles,CA,90001 +201942,Apple Airpods Headphones,1,150.0,2019-05-21 12:06:00,791 4th St, Dallas,TX,75001 +201943,27in 4K Gaming Monitor,1,389.99,2019-05-26 10:44:00,179 5th St, New York City,NY,10001 +201944,AA Batteries (4-pack),1,3.84,2019-05-25 14:37:00,198 11th St, Dallas,TX,75001 +201945,Lightning Charging Cable,1,14.95,2019-05-25 18:04:00,945 Lake St, New York City,NY,10001 +201946,27in 4K Gaming Monitor,1,389.99,2019-05-22 08:30:00,32 Willow St, Boston,MA,02215 +201947,LG Dryer,1,600.0,2019-05-17 19:21:00,103 Washington St, Austin,TX,73301 +201948,AAA Batteries (4-pack),1,2.99,2019-05-30 16:27:00,722 Jackson St, San Francisco,CA,94016 +201948,Lightning Charging Cable,1,14.95,2019-05-30 16:27:00,722 Jackson St, San Francisco,CA,94016 +201949,Apple Airpods Headphones,1,150.0,2019-05-20 20:16:00,338 Chestnut St, San Francisco,CA,94016 +201950,Lightning Charging Cable,1,14.95,2019-05-15 13:34:00,412 Lakeview St, New York City,NY,10001 +201951,Apple Airpods Headphones,1,150.0,2019-05-19 11:57:00,286 Meadow St, San Francisco,CA,94016 +201952,Lightning Charging Cable,1,14.95,2019-05-24 18:53:00,857 Highland St, Boston,MA,02215 +201953,Apple Airpods Headphones,1,150.0,2019-05-13 12:20:00,865 Highland St, Boston,MA,02215 +201954,AAA Batteries (4-pack),2,2.99,2019-05-17 21:27:00,650 Maple St, New York City,NY,10001 +201955,Apple Airpods Headphones,1,150.0,2019-05-13 10:09:00,565 6th St, San Francisco,CA,94016 +201955,AA Batteries (4-pack),1,3.84,2019-05-13 10:09:00,565 6th St, San Francisco,CA,94016 +201956,27in 4K Gaming Monitor,1,389.99,2019-05-11 18:54:00,51 West St, Los Angeles,CA,90001 +201957,AAA Batteries (4-pack),3,2.99,2019-05-24 16:49:00,31 Main St, Austin,TX,73301 +201958,Wired Headphones,1,11.99,2019-05-21 13:14:00,128 Main St, Portland,OR,97035 +201959,AAA Batteries (4-pack),2,2.99,2019-05-23 21:30:00,373 Adams St, San Francisco,CA,94016 +201960,AA Batteries (4-pack),2,3.84,2019-05-10 15:33:00,143 Ridge St, Seattle,WA,98101 +201961,Apple Airpods Headphones,1,150.0,2019-05-28 11:18:00,753 Chestnut St, San Francisco,CA,94016 +201962,iPhone,1,700.0,2019-05-20 17:00:00,694 2nd St, New York City,NY,10001 +201962,Wired Headphones,1,11.99,2019-05-20 17:00:00,694 2nd St, New York City,NY,10001 +201963,AA Batteries (4-pack),1,3.84,2019-05-21 09:34:00,747 Washington St, San Francisco,CA,94016 +201964,Google Phone,1,600.0,2019-05-17 23:02:00,267 Maple St, Atlanta,GA,30301 +201965,iPhone,1,700.0,2019-05-11 15:21:00,380 South St, New York City,NY,10001 +201966,iPhone,1,700.0,2019-05-25 17:40:00,40 Dogwood St, San Francisco,CA,94016 +201967,USB-C Charging Cable,1,11.95,2019-05-17 10:31:00,697 Cherry St, San Francisco,CA,94016 +201968,Macbook Pro Laptop,1,1700.0,2019-05-12 11:33:00,578 Dogwood St, Portland,ME,04101 +201969,Lightning Charging Cable,1,14.95,2019-05-04 19:03:00,946 Wilson St, San Francisco,CA,94016 +201970,AA Batteries (4-pack),1,3.84,2019-05-13 18:43:00,848 Johnson St, Boston,MA,02215 +201971,AA Batteries (4-pack),1,3.84,2019-05-10 12:37:00,812 Park St, New York City,NY,10001 +201972,USB-C Charging Cable,1,11.95,2019-05-26 14:24:00,788 Maple St, Boston,MA,02215 +201973,27in 4K Gaming Monitor,1,389.99,2019-05-26 18:56:00,846 14th St, Seattle,WA,98101 +201974,ThinkPad Laptop,1,999.99,2019-05-19 17:09:00,86 6th St, Seattle,WA,98101 +201975,iPhone,1,700.0,2019-05-12 23:15:00,410 9th St, San Francisco,CA,94016 +201976,Lightning Charging Cable,1,14.95,2019-05-25 23:08:00,428 10th St, Boston,MA,02215 +201977,USB-C Charging Cable,1,11.95,2019-05-14 21:11:00,700 Center St, Dallas,TX,75001 +201978,USB-C Charging Cable,1,11.95,2019-05-10 07:39:00,839 Adams St, Dallas,TX,75001 +201979,AA Batteries (4-pack),1,3.84,2019-05-08 19:04:00,538 5th St, San Francisco,CA,94016 +201979,Wired Headphones,1,11.99,2019-05-08 19:04:00,538 5th St, San Francisco,CA,94016 +201980,Wired Headphones,1,11.99,2019-05-19 16:51:00,135 Lincoln St, Portland,OR,97035 +201981,Wired Headphones,1,11.99,2019-05-22 14:11:00,209 Park St, Atlanta,GA,30301 +201982,Wired Headphones,1,11.99,2019-05-16 20:58:00,504 Elm St, Dallas,TX,75001 +201983,AAA Batteries (4-pack),1,2.99,2019-05-15 19:48:00,734 Hickory St, New York City,NY,10001 +201984,Lightning Charging Cable,1,14.95,2019-05-29 12:37:00,85 Jefferson St, San Francisco,CA,94016 +201985,Apple Airpods Headphones,1,150.0,2019-05-13 17:11:00,811 Jackson St, Los Angeles,CA,90001 +201986,USB-C Charging Cable,2,11.95,2019-05-19 11:07:00,325 Forest St, Boston,MA,02215 +201987,Wired Headphones,1,11.99,2019-05-28 21:07:00,717 Jackson St, New York City,NY,10001 +201988,USB-C Charging Cable,1,11.95,2019-05-07 09:51:00,17 River St, New York City,NY,10001 +201989,Lightning Charging Cable,1,14.95,2019-05-01 23:49:00,693 Ridge St, Boston,MA,02215 +201990,USB-C Charging Cable,1,11.95,2019-05-04 06:37:00,791 10th St, Boston,MA,02215 +201991,AA Batteries (4-pack),1,3.84,2019-05-20 11:28:00,327 Jackson St, Seattle,WA,98101 +201992,Lightning Charging Cable,1,14.95,2019-05-19 11:56:00,912 Ridge St, San Francisco,CA,94016 +201993,Apple Airpods Headphones,1,150.0,2019-05-06 12:22:00,477 11th St, San Francisco,CA,94016 +201994,LG Dryer,1,600.0,2019-05-12 17:37:00,262 North St, New York City,NY,10001 +201995,AA Batteries (4-pack),1,3.84,2019-05-25 17:43:00,650 Jackson St, San Francisco,CA,94016 +201996,Apple Airpods Headphones,1,150.0,2019-05-13 14:35:00,114 Highland St, Austin,TX,73301 +201997,27in FHD Monitor,1,149.99,2019-05-24 00:14:00,97 Pine St, Dallas,TX,75001 +201998,27in FHD Monitor,1,149.99,2019-05-01 18:41:00,18 Wilson St, New York City,NY,10001 +201999,AAA Batteries (4-pack),4,2.99,2019-05-26 20:35:00,654 Adams St, Los Angeles,CA,90001 +202000,AAA Batteries (4-pack),2,2.99,2019-05-17 10:24:00,19 Church St, Los Angeles,CA,90001 +202001,Lightning Charging Cable,1,14.95,2019-05-25 15:44:00,54 North St, San Francisco,CA,94016 +202002,Google Phone,1,600.0,2019-05-21 10:58:00,288 14th St, Boston,MA,02215 +202003,iPhone,1,700.0,2019-05-10 16:27:00,815 Willow St, Atlanta,GA,30301 +202004,Wired Headphones,1,11.99,2019-05-17 14:19:00,507 Madison St, San Francisco,CA,94016 +202005,34in Ultrawide Monitor,1,379.99,2019-05-19 23:27:00,25 12th St, Boston,MA,02215 +202006,AAA Batteries (4-pack),2,2.99,2019-05-10 14:26:00,491 Center St, Austin,TX,73301 +202007,Lightning Charging Cable,1,14.95,2019-05-31 21:17:00,72 Cedar St, Los Angeles,CA,90001 +202008,USB-C Charging Cable,1,11.95,2019-05-06 21:22:00,540 Lincoln St, San Francisco,CA,94016 +202009,iPhone,1,700.0,2019-05-10 23:53:00,371 Elm St, Portland,ME,04101 +202010,AA Batteries (4-pack),1,3.84,2019-05-20 16:06:00,960 Church St, Seattle,WA,98101 +202011,Google Phone,1,600.0,2019-05-15 12:53:00,653 2nd St, Dallas,TX,75001 +202012,Lightning Charging Cable,1,14.95,2019-05-09 11:13:00,63 Lakeview St, Dallas,TX,75001 +202013,27in FHD Monitor,1,149.99,2019-05-07 10:31:00,503 Hill St, Boston,MA,02215 +202014,AA Batteries (4-pack),1,3.84,2019-05-25 17:38:00,256 Jackson St, Portland,ME,04101 +202015,AA Batteries (4-pack),1,3.84,2019-05-01 11:05:00,396 South St, Boston,MA,02215 +202016,Bose SoundSport Headphones,1,99.99,2019-05-13 19:45:00,759 12th St, Atlanta,GA,30301 +202016,iPhone,1,700.0,2019-05-13 19:45:00,759 12th St, Atlanta,GA,30301 +202017,Bose SoundSport Headphones,1,99.99,2019-05-30 19:05:00,270 Johnson St, New York City,NY,10001 +202018,AA Batteries (4-pack),1,3.84,2019-05-17 12:38:00,554 5th St, Seattle,WA,98101 +202019,Bose SoundSport Headphones,1,99.99,2019-05-27 10:39:00,978 Lake St, Atlanta,GA,30301 +202020,AAA Batteries (4-pack),1,2.99,2019-05-29 05:39:00,218 Meadow St, San Francisco,CA,94016 +202021,Bose SoundSport Headphones,1,99.99,2019-05-31 18:29:00,811 West St, San Francisco,CA,94016 +202022,AAA Batteries (4-pack),1,2.99,2019-05-03 22:54:00,324 Hill St, Dallas,TX,75001 +202023,Wired Headphones,2,11.99,2019-05-30 14:22:00,524 Hickory St, New York City,NY,10001 +202024,Bose SoundSport Headphones,1,99.99,2019-05-28 11:58:00,492 Cherry St, Boston,MA,02215 +202025,USB-C Charging Cable,1,11.95,2019-05-05 20:03:00,974 Jefferson St, San Francisco,CA,94016 +202026,Macbook Pro Laptop,1,1700.0,2019-05-12 14:05:00,219 Highland St, Boston,MA,02215 +202027,iPhone,1,700.0,2019-05-10 15:14:00,523 8th St, New York City,NY,10001 +202028,Wired Headphones,1,11.99,2019-05-17 17:51:00,167 Adams St, San Francisco,CA,94016 +202029,Flatscreen TV,1,300.0,2019-05-29 08:09:00,229 Hill St, Los Angeles,CA,90001 +202030,Apple Airpods Headphones,1,150.0,2019-05-20 12:22:00,41 7th St, Atlanta,GA,30301 +202031,Apple Airpods Headphones,1,150.0,2019-05-20 11:58:00,868 Lakeview St, Portland,OR,97035 +202032,20in Monitor,1,109.99,2019-05-23 17:36:00,805 Hickory St, Boston,MA,02215 +202033,Wired Headphones,1,11.99,2019-05-29 19:45:00,64 Washington St, Dallas,TX,75001 +202034,AA Batteries (4-pack),2,3.84,2019-05-15 14:46:00,647 14th St, San Francisco,CA,94016 +202035,27in FHD Monitor,1,149.99,2019-05-09 17:34:00,195 Adams St, San Francisco,CA,94016 +202036,27in FHD Monitor,1,149.99,2019-05-18 23:00:00,232 14th St, Dallas,TX,75001 +202037,27in 4K Gaming Monitor,1,389.99,2019-05-13 22:49:00,413 Spruce St, Los Angeles,CA,90001 +202038,USB-C Charging Cable,1,11.95,2019-05-23 14:13:00,575 Forest St, Boston,MA,02215 +202039,Apple Airpods Headphones,1,150.0,2019-05-29 10:51:00,585 Maple St, San Francisco,CA,94016 +202040,AA Batteries (4-pack),2,3.84,2019-05-08 20:36:00,965 Wilson St, Atlanta,GA,30301 +202041,Lightning Charging Cable,1,14.95,2019-05-22 17:13:00,213 Cedar St, Austin,TX,73301 +202042,AAA Batteries (4-pack),1,2.99,2019-05-07 20:18:00,524 9th St, Boston,MA,02215 +202043,AA Batteries (4-pack),1,3.84,2019-05-05 11:47:00,152 Maple St, Austin,TX,73301 +202044,Lightning Charging Cable,1,14.95,2019-05-11 09:15:00,11 Park St, Austin,TX,73301 +202045,AAA Batteries (4-pack),1,2.99,2019-05-04 20:31:00,720 Elm St, Seattle,WA,98101 +202046,Lightning Charging Cable,1,14.95,2019-05-15 11:23:00,400 Chestnut St, Seattle,WA,98101 +202047,Macbook Pro Laptop,1,1700.0,2019-05-31 20:03:00,123 14th St, San Francisco,CA,94016 +202048,34in Ultrawide Monitor,1,379.99,2019-05-15 14:13:00,653 Adams St, San Francisco,CA,94016 +202049,iPhone,1,700.0,2019-05-24 23:33:00,512 River St, Atlanta,GA,30301 +202050,ThinkPad Laptop,1,999.99,2019-05-31 07:25:00,361 Park St, New York City,NY,10001 +202051,Wired Headphones,1,11.99,2019-05-14 20:14:00,427 Jefferson St, Seattle,WA,98101 +202052,Apple Airpods Headphones,1,150.0,2019-05-30 19:52:00,557 2nd St, Boston,MA,02215 +202053,Wired Headphones,1,11.99,2019-05-28 11:53:00,714 Hickory St, Atlanta,GA,30301 +202054,AA Batteries (4-pack),3,3.84,2019-05-24 17:13:00,144 Park St, Seattle,WA,98101 +202055,Flatscreen TV,1,300.0,2019-05-31 09:44:00,461 Washington St, San Francisco,CA,94016 +202056,Wired Headphones,1,11.99,2019-05-15 14:58:00,296 River St, Atlanta,GA,30301 +202057,34in Ultrawide Monitor,1,379.99,2019-05-26 19:57:00,953 Wilson St, New York City,NY,10001 +202058,Bose SoundSport Headphones,1,99.99,2019-05-21 18:26:00,870 Jefferson St, Los Angeles,CA,90001 +202059,AAA Batteries (4-pack),1,2.99,2019-05-12 15:50:00,66 River St, Portland,OR,97035 +202060,27in 4K Gaming Monitor,1,389.99,2019-05-04 14:33:00,253 Lincoln St, Los Angeles,CA,90001 +202061,LG Dryer,1,600.0,2019-05-15 20:47:00,534 11th St, San Francisco,CA,94016 +202062,AA Batteries (4-pack),1,3.84,2019-05-09 17:04:00,893 14th St, Boston,MA,02215 +202063,27in 4K Gaming Monitor,1,389.99,2019-05-20 11:52:00,127 Meadow St, Seattle,WA,98101 +202064,USB-C Charging Cable,1,11.95,2019-05-10 04:50:00,163 Hickory St, Dallas,TX,75001 +202065,AA Batteries (4-pack),1,3.84,2019-05-26 08:01:00,872 Hill St, Atlanta,GA,30301 +202066,AA Batteries (4-pack),1,3.84,2019-05-16 01:37:00,382 12th St, Portland,OR,97035 +202066,iPhone,1,700.0,2019-05-16 01:37:00,382 12th St, Portland,OR,97035 +202067,AAA Batteries (4-pack),1,2.99,2019-05-02 22:17:00,609 Dogwood St, New York City,NY,10001 +202068,Google Phone,1,600.0,2019-05-24 19:45:00,628 Cherry St, Los Angeles,CA,90001 +202069,AA Batteries (4-pack),2,3.84,2019-05-21 12:42:00,475 4th St, San Francisco,CA,94016 +202070,Wired Headphones,1,11.99,2019-05-04 11:51:00,958 Park St, New York City,NY,10001 +202071,Apple Airpods Headphones,1,150.0,2019-05-19 18:30:00,993 Park St, Los Angeles,CA,90001 +202072,AA Batteries (4-pack),2,3.84,2019-05-09 23:22:00,125 Madison St, Dallas,TX,75001 +202073,iPhone,1,700.0,2019-05-27 19:38:00,491 13th St, Austin,TX,73301 +202074,ThinkPad Laptop,1,999.99,2019-05-29 12:04:00,477 Hill St, Seattle,WA,98101 +202075,Bose SoundSport Headphones,1,99.99,2019-05-11 23:57:00,641 Church St, Austin,TX,73301 +202076,Lightning Charging Cable,1,14.95,2019-05-01 05:25:00,44 2nd St, Portland,ME,04101 +202077,AAA Batteries (4-pack),1,2.99,2019-05-13 19:58:00,497 Jefferson St, Portland,OR,97035 +202078,Bose SoundSport Headphones,1,99.99,2019-05-23 08:30:00,423 Johnson St, Seattle,WA,98101 +202079,Wired Headphones,1,11.99,2019-05-08 10:40:00,782 Pine St, Boston,MA,02215 +202080,Wired Headphones,1,11.99,2019-05-08 09:04:00,364 Lake St, San Francisco,CA,94016 +202081,Wired Headphones,1,11.99,2019-05-28 13:43:00,334 5th St, New York City,NY,10001 +202082,27in 4K Gaming Monitor,1,389.99,2019-05-01 23:12:00,566 Spruce St, New York City,NY,10001 +202083,AA Batteries (4-pack),1,3.84,2019-05-05 12:20:00,769 River St, New York City,NY,10001 +202084,27in FHD Monitor,1,149.99,2019-05-25 18:26:00,119 Johnson St, Boston,MA,02215 +202085,USB-C Charging Cable,1,11.95,2019-05-16 16:05:00,189 Center St, Atlanta,GA,30301 +202086,Apple Airpods Headphones,1,150.0,2019-05-17 08:00:00,222 Elm St, Atlanta,GA,30301 +202087,USB-C Charging Cable,1,11.95,2019-05-04 23:19:00,3 Maple St, New York City,NY,10001 +202088,AA Batteries (4-pack),1,3.84,2019-05-17 17:09:00,395 1st St, Atlanta,GA,30301 +202089,Wired Headphones,1,11.99,2019-05-22 13:24:00,549 Spruce St, New York City,NY,10001 +202090,Bose SoundSport Headphones,1,99.99,2019-05-27 15:44:00,693 Madison St, Boston,MA,02215 +202091,Wired Headphones,1,11.99,2019-05-25 06:27:00,152 Church St, Boston,MA,02215 +202092,27in FHD Monitor,1,149.99,2019-05-14 21:34:00,707 North St, San Francisco,CA,94016 +202093,USB-C Charging Cable,1,11.95,2019-05-10 13:42:00,968 Jefferson St, Los Angeles,CA,90001 +202094,Wired Headphones,1,11.99,2019-05-16 19:03:00,684 River St, Los Angeles,CA,90001 +202095,Google Phone,1,600.0,2019-05-15 17:17:00,757 Main St, Los Angeles,CA,90001 +202096,Lightning Charging Cable,1,14.95,2019-05-18 09:34:00,974 Forest St, Los Angeles,CA,90001 +202097,Wired Headphones,1,11.99,2019-05-11 05:48:00,398 Madison St, San Francisco,CA,94016 +202097,AA Batteries (4-pack),2,3.84,2019-05-11 05:48:00,398 Madison St, San Francisco,CA,94016 +202098,iPhone,1,700.0,2019-05-10 17:10:00,908 Madison St, Seattle,WA,98101 +202099,34in Ultrawide Monitor,1,379.99,2019-05-01 10:57:00,467 Church St, Seattle,WA,98101 +202100,USB-C Charging Cable,1,11.95,2019-05-21 18:06:00,476 5th St, Seattle,WA,98101 +202101,AAA Batteries (4-pack),1,2.99,2019-05-14 12:23:00,283 Center St, Atlanta,GA,30301 +202102,AA Batteries (4-pack),1,3.84,2019-05-19 23:02:00,846 North St, Los Angeles,CA,90001 +202103,Apple Airpods Headphones,1,150.0,2019-05-31 06:51:00,339 Pine St, San Francisco,CA,94016 +202104,USB-C Charging Cable,1,11.95,2019-05-29 13:47:00,728 Pine St, New York City,NY,10001 +202105,Google Phone,1,600.0,2019-05-02 14:56:00,281 Cherry St, Atlanta,GA,30301 +202106,Bose SoundSport Headphones,1,99.99,2019-05-18 11:04:00,506 River St, Dallas,TX,75001 +202107,34in Ultrawide Monitor,1,379.99,2019-05-08 20:31:00,426 Highland St, New York City,NY,10001 +202108,Vareebadd Phone,1,400.0,2019-05-29 16:55:00,803 11th St, New York City,NY,10001 +202109,27in FHD Monitor,1,149.99,2019-05-26 12:22:00,917 River St, San Francisco,CA,94016 +202110,Lightning Charging Cable,1,14.95,2019-05-10 20:55:00,805 Ridge St, New York City,NY,10001 +202111,AA Batteries (4-pack),1,3.84,2019-05-27 12:44:00,251 13th St, Los Angeles,CA,90001 +202112,34in Ultrawide Monitor,1,379.99,2019-05-04 09:14:00,564 10th St, Dallas,TX,75001 +202113,AAA Batteries (4-pack),2,2.99,2019-05-02 08:37:00,760 6th St, New York City,NY,10001 +202114,Wired Headphones,1,11.99,2019-05-08 19:54:00,278 Chestnut St, Portland,OR,97035 +202115,Bose SoundSport Headphones,1,99.99,2019-05-08 12:02:00,485 Cherry St, New York City,NY,10001 +202116,AA Batteries (4-pack),1,3.84,2019-05-21 12:51:00,428 11th St, New York City,NY,10001 +202117,27in 4K Gaming Monitor,1,389.99,2019-05-06 17:46:00,730 14th St, San Francisco,CA,94016 +202118,Lightning Charging Cable,1,14.95,2019-05-05 12:29:00,850 West St, New York City,NY,10001 +202118,ThinkPad Laptop,1,999.99,2019-05-05 12:29:00,850 West St, New York City,NY,10001 +202119,AAA Batteries (4-pack),1,2.99,2019-05-28 09:40:00,270 Sunset St, Dallas,TX,75001 +202120,Wired Headphones,2,11.99,2019-05-15 20:04:00,79 Jackson St, Los Angeles,CA,90001 +202121,AAA Batteries (4-pack),1,2.99,2019-05-28 13:34:00,235 Ridge St, Atlanta,GA,30301 +202122,AAA Batteries (4-pack),2,2.99,2019-05-04 22:52:00,215 Chestnut St, New York City,NY,10001 +202123,Apple Airpods Headphones,1,150.0,2019-05-13 11:59:00,471 Walnut St, New York City,NY,10001 +202124,Wired Headphones,1,11.99,2019-05-02 13:54:00,669 Lake St, Dallas,TX,75001 +202125,Lightning Charging Cable,1,14.95,2019-05-20 14:40:00,283 Lakeview St, Seattle,WA,98101 +202126,Apple Airpods Headphones,1,150.0,2019-05-16 08:15:00,963 9th St, Austin,TX,73301 +202126,Wired Headphones,1,11.99,2019-05-16 08:15:00,963 9th St, Austin,TX,73301 +202127,AA Batteries (4-pack),2,3.84,2019-05-27 15:41:00,963 Willow St, New York City,NY,10001 +202128,Lightning Charging Cable,1,14.95,2019-05-11 08:56:00,329 Ridge St, Boston,MA,02215 +202129,Lightning Charging Cable,1,14.95,2019-05-22 20:02:00,633 Forest St, San Francisco,CA,94016 +202130,Flatscreen TV,1,300.0,2019-05-16 11:47:00,850 Jackson St, New York City,NY,10001 +202131,20in Monitor,1,109.99,2019-05-04 17:05:00,655 Highland St, Los Angeles,CA,90001 +202132,20in Monitor,1,109.99,2019-05-19 07:45:00,712 North St, Atlanta,GA,30301 +202133,20in Monitor,1,109.99,2019-05-11 20:28:00,524 Wilson St, Atlanta,GA,30301 +202134,Vareebadd Phone,1,400.0,2019-05-19 19:16:00,702 Highland St, San Francisco,CA,94016 +202135,Apple Airpods Headphones,1,150.0,2019-05-25 15:01:00,771 5th St, Los Angeles,CA,90001 +202136,LG Washing Machine,1,600.0,2019-05-01 19:25:00,850 12th St, Boston,MA,02215 +202137,AAA Batteries (4-pack),2,2.99,2019-05-19 03:26:00,381 12th St, San Francisco,CA,94016 +202138,Apple Airpods Headphones,1,150.0,2019-05-17 21:32:00,340 5th St, Los Angeles,CA,90001 +202138,AAA Batteries (4-pack),1,2.99,2019-05-17 21:32:00,340 5th St, Los Angeles,CA,90001 +202139,Bose SoundSport Headphones,1,99.99,2019-05-18 11:43:00,518 Jefferson St, Seattle,WA,98101 +202140,Wired Headphones,1,11.99,2019-05-07 18:08:00,709 11th St, Dallas,TX,75001 +202141,AA Batteries (4-pack),1,3.84,2019-05-13 12:08:00,670 12th St, San Francisco,CA,94016 +202142,27in FHD Monitor,1,149.99,2019-05-11 12:39:00,954 North St, Boston,MA,02215 +202143,Wired Headphones,1,11.99,2019-05-14 10:50:00,10 13th St, San Francisco,CA,94016 +202144,iPhone,1,700.0,2019-05-22 13:13:00,162 Pine St, Boston,MA,02215 +202144,Wired Headphones,1,11.99,2019-05-22 13:13:00,162 Pine St, Boston,MA,02215 +202145,USB-C Charging Cable,1,11.95,2019-05-22 19:53:00,938 Chestnut St, Los Angeles,CA,90001 +202146,USB-C Charging Cable,2,11.95,2019-05-30 07:59:00,849 West St, Los Angeles,CA,90001 +202147,Wired Headphones,1,11.99,2019-05-29 18:22:00,656 Maple St, New York City,NY,10001 +202148,27in 4K Gaming Monitor,1,389.99,2019-05-30 07:17:00,446 Meadow St, Boston,MA,02215 +202149,iPhone,1,700.0,2019-05-19 19:29:00,798 13th St, San Francisco,CA,94016 +202150,Lightning Charging Cable,1,14.95,2019-05-17 16:54:00,886 5th St, Atlanta,GA,30301 +202151,Lightning Charging Cable,1,14.95,2019-05-05 16:44:00,730 Forest St, Los Angeles,CA,90001 +202152,27in 4K Gaming Monitor,1,389.99,2019-05-20 19:22:00,811 9th St, Dallas,TX,75001 +202153,AAA Batteries (4-pack),1,2.99,2019-05-12 22:05:00,502 Lakeview St, Atlanta,GA,30301 +202154,27in FHD Monitor,1,149.99,2019-05-24 11:21:00,994 Adams St, San Francisco,CA,94016 +202155,34in Ultrawide Monitor,1,379.99,2019-05-18 21:42:00,400 10th St, Boston,MA,02215 +202156,Bose SoundSport Headphones,1,99.99,2019-05-07 09:38:00,471 5th St, Los Angeles,CA,90001 +202157,AA Batteries (4-pack),2,3.84,2019-05-04 18:43:00,750 Main St, San Francisco,CA,94016 +202158,AAA Batteries (4-pack),1,2.99,2019-05-25 12:02:00,80 4th St, Dallas,TX,75001 +202159,27in FHD Monitor,1,149.99,2019-05-12 19:13:00,482 Hill St, Atlanta,GA,30301 +202160,27in FHD Monitor,1,149.99,2019-05-07 20:14:00,447 6th St, San Francisco,CA,94016 +202161,34in Ultrawide Monitor,1,379.99,2019-05-19 16:52:00,539 Center St, New York City,NY,10001 +202162,USB-C Charging Cable,1,11.95,2019-05-28 16:50:00,612 Chestnut St, New York City,NY,10001 +202163,AA Batteries (4-pack),1,3.84,2019-05-06 20:40:00,987 Cedar St, Portland,OR,97035 +202164,34in Ultrawide Monitor,1,379.99,2019-05-29 14:05:00,203 River St, Portland,OR,97035 +202165,27in FHD Monitor,1,149.99,2019-05-25 02:36:00,461 West St, San Francisco,CA,94016 +202166,USB-C Charging Cable,1,11.95,2019-05-29 14:31:00,124 5th St, Dallas,TX,75001 +202167,USB-C Charging Cable,1,11.95,2019-05-26 08:44:00,848 12th St, Portland,OR,97035 +202168,Macbook Pro Laptop,1,1700.0,2019-05-10 16:41:00,635 Maple St, San Francisco,CA,94016 +202169,Google Phone,1,600.0,2019-05-03 18:07:00,271 Cedar St, San Francisco,CA,94016 +202170,AA Batteries (4-pack),3,3.84,2019-05-30 19:44:00,509 Cherry St, Boston,MA,02215 +202171,Lightning Charging Cable,2,14.95,2019-05-08 10:28:00,190 Hill St, San Francisco,CA,94016 +202172,AAA Batteries (4-pack),2,2.99,2019-05-20 21:24:00,71 Hill St, Portland,OR,97035 +202173,AA Batteries (4-pack),1,3.84,2019-05-14 12:02:00,177 Chestnut St, San Francisco,CA,94016 +202174,Lightning Charging Cable,1,14.95,2019-05-27 21:05:00,273 North St, Dallas,TX,75001 +202175,Lightning Charging Cable,1,14.95,2019-05-07 19:26:00,320 Ridge St, San Francisco,CA,94016 +202176,Lightning Charging Cable,1,14.95,2019-05-17 22:04:00,244 Park St, New York City,NY,10001 +202177,Apple Airpods Headphones,1,150.0,2019-05-15 14:38:00,651 Hill St, Austin,TX,73301 +202178,USB-C Charging Cable,2,11.95,2019-05-21 22:20:00,802 Center St, New York City,NY,10001 +202179,AAA Batteries (4-pack),1,2.99,2019-05-10 20:43:00,670 Chestnut St, Atlanta,GA,30301 +202180,AA Batteries (4-pack),2,3.84,2019-05-06 16:24:00,234 12th St, Los Angeles,CA,90001 +202181,AAA Batteries (4-pack),1,2.99,2019-05-23 10:18:00,936 Ridge St, New York City,NY,10001 +202182,Apple Airpods Headphones,1,150.0,2019-05-18 19:43:00,255 Adams St, Austin,TX,73301 +202183,Bose SoundSport Headphones,1,99.99,2019-05-16 11:59:00,47 Jackson St, Austin,TX,73301 +202184,AAA Batteries (4-pack),1,2.99,2019-05-30 09:33:00,351 11th St, New York City,NY,10001 +202185,AAA Batteries (4-pack),2,2.99,2019-05-06 09:55:00,575 Lincoln St, San Francisco,CA,94016 +202186,Bose SoundSport Headphones,1,99.99,2019-05-16 07:09:00,296 1st St, Los Angeles,CA,90001 +202187,Bose SoundSport Headphones,1,99.99,2019-05-03 21:55:00,173 13th St, Dallas,TX,75001 +202188,Google Phone,1,600.0,2019-05-08 16:20:00,449 9th St, San Francisco,CA,94016 +202189,Wired Headphones,1,11.99,2019-05-31 18:42:00,103 Forest St, San Francisco,CA,94016 +202189,USB-C Charging Cable,1,11.95,2019-05-31 18:42:00,103 Forest St, San Francisco,CA,94016 +202190,Wired Headphones,1,11.99,2019-05-06 13:55:00,415 1st St, San Francisco,CA,94016 +202191,Google Phone,1,600.0,2019-05-04 11:05:00,721 Hickory St, Austin,TX,73301 +202192,27in 4K Gaming Monitor,1,389.99,2019-05-31 12:00:00,436 11th St, San Francisco,CA,94016 +202193,Apple Airpods Headphones,1,150.0,2019-05-24 18:50:00,832 11th St, San Francisco,CA,94016 +202194,Lightning Charging Cable,1,14.95,2019-05-03 13:04:00,902 4th St, San Francisco,CA,94016 +202195,Wired Headphones,1,11.99,2019-05-07 15:43:00,554 Lake St, Austin,TX,73301 +202196,AA Batteries (4-pack),1,3.84,2019-05-31 10:58:00,175 Main St, Seattle,WA,98101 +202197,Wired Headphones,1,11.99,2019-05-13 02:23:00,899 Cherry St, San Francisco,CA,94016 +202198,Wired Headphones,1,11.99,2019-05-02 17:08:00,390 10th St, Boston,MA,02215 +202199,Lightning Charging Cable,1,14.95,2019-05-16 14:02:00,301 West St, Atlanta,GA,30301 +202200,Lightning Charging Cable,1,14.95,2019-05-18 15:47:00,52 2nd St, Los Angeles,CA,90001 +202201,Lightning Charging Cable,2,14.95,2019-05-25 22:58:00,744 Lincoln St, Atlanta,GA,30301 +202202,34in Ultrawide Monitor,1,379.99,2019-05-16 23:07:00,598 Willow St, Los Angeles,CA,90001 +202203,AAA Batteries (4-pack),1,2.99,2019-05-28 19:27:00,374 9th St, Austin,TX,73301 +202204,AAA Batteries (4-pack),1,2.99,2019-05-17 16:16:00,148 6th St, New York City,NY,10001 +202205,27in FHD Monitor,1,149.99,2019-05-28 12:32:00,746 Jefferson St, Dallas,TX,75001 +202206,Lightning Charging Cable,1,14.95,2019-05-23 09:57:00,968 Park St, Dallas,TX,75001 +202207,Macbook Pro Laptop,1,1700.0,2019-05-10 20:35:00,180 Johnson St, Los Angeles,CA,90001 +202208,USB-C Charging Cable,1,11.95,2019-05-12 16:26:00,23 Cherry St, New York City,NY,10001 +202209,Bose SoundSport Headphones,1,99.99,2019-05-31 20:20:00,589 Highland St, Los Angeles,CA,90001 +202210,Flatscreen TV,1,300.0,2019-05-19 19:38:00,460 South St, New York City,NY,10001 +202211,Apple Airpods Headphones,1,150.0,2019-05-20 14:52:00,95 Center St, Los Angeles,CA,90001 +202212,Macbook Pro Laptop,1,1700.0,2019-05-25 13:19:00,10 1st St, San Francisco,CA,94016 +202213,iPhone,1,700.0,2019-05-31 15:47:00,193 Ridge St, San Francisco,CA,94016 +202214,Lightning Charging Cable,1,14.95,2019-05-11 20:39:00,750 Hickory St, Dallas,TX,75001 +202215,AA Batteries (4-pack),1,3.84,2019-05-26 21:48:00,346 Forest St, Los Angeles,CA,90001 +202216,Wired Headphones,1,11.99,2019-05-09 20:12:00,793 11th St, Los Angeles,CA,90001 +202217,Lightning Charging Cable,1,14.95,2019-05-02 22:19:00,852 Adams St, Dallas,TX,75001 +202218,Wired Headphones,1,11.99,2019-05-30 21:18:00,278 2nd St, San Francisco,CA,94016 +202219,Apple Airpods Headphones,1,150.0,2019-05-26 10:53:00,312 12th St, Seattle,WA,98101 +202220,Wired Headphones,1,11.99,2019-05-12 12:41:00,797 Forest St, Los Angeles,CA,90001 +202221,Bose SoundSport Headphones,1,99.99,2019-05-21 22:44:00,558 Meadow St, Atlanta,GA,30301 +202222,Bose SoundSport Headphones,1,99.99,2019-05-08 17:04:00,332 5th St, Atlanta,GA,30301 +202223,Bose SoundSport Headphones,1,99.99,2019-05-29 11:25:00,111 Highland St, Dallas,TX,75001 +202224,Lightning Charging Cable,1,14.95,2019-05-19 21:45:00,617 1st St, New York City,NY,10001 +202225,Apple Airpods Headphones,1,150.0,2019-05-05 16:12:00,92 Center St, San Francisco,CA,94016 +202226,34in Ultrawide Monitor,1,379.99,2019-05-12 21:05:00,250 6th St, Boston,MA,02215 +202227,USB-C Charging Cable,1,11.95,2019-05-28 17:34:00,767 Washington St, New York City,NY,10001 +202228,AAA Batteries (4-pack),1,2.99,2019-05-07 01:12:00,214 14th St, San Francisco,CA,94016 +202229,AA Batteries (4-pack),1,3.84,2019-05-13 16:16:00,10 Dogwood St, Seattle,WA,98101 +202230,27in FHD Monitor,1,149.99,2019-05-17 04:17:00,885 West St, Los Angeles,CA,90001 +202231,AAA Batteries (4-pack),2,2.99,2019-05-07 10:34:00,568 9th St, Seattle,WA,98101 +202232,USB-C Charging Cable,1,11.95,2019-05-30 21:36:00,759 Church St, San Francisco,CA,94016 +202233,Google Phone,1,600.0,2019-05-25 16:08:00,536 Willow St, Portland,OR,97035 +202234,Apple Airpods Headphones,1,150.0,2019-05-06 14:57:00,17 Lake St, Atlanta,GA,30301 +202235,iPhone,1,700.0,2019-05-28 13:28:00,679 Hickory St, Portland,OR,97035 +202236,Wired Headphones,1,11.99,2019-05-13 16:21:00,883 Ridge St, San Francisco,CA,94016 +202236,USB-C Charging Cable,1,11.95,2019-05-13 16:21:00,883 Ridge St, San Francisco,CA,94016 +202237,Flatscreen TV,1,300.0,2019-05-14 08:54:00,447 14th St, Los Angeles,CA,90001 +202238,Lightning Charging Cable,1,14.95,2019-05-08 14:45:00,648 Highland St, San Francisco,CA,94016 +202239,Bose SoundSport Headphones,1,99.99,2019-05-22 19:44:00,113 South St, Los Angeles,CA,90001 +202240,34in Ultrawide Monitor,1,379.99,2019-05-22 16:24:00,2 Lake St, Atlanta,GA,30301 +202241,27in 4K Gaming Monitor,1,389.99,2019-05-24 20:09:00,373 Hill St, Los Angeles,CA,90001 +202242,LG Washing Machine,1,600.0,2019-05-22 09:37:00,31 Willow St, Dallas,TX,75001 +202243,AA Batteries (4-pack),1,3.84,2019-05-03 21:54:00,122 West St, New York City,NY,10001 +202244,Bose SoundSport Headphones,1,99.99,2019-05-30 11:13:00,521 1st St, Atlanta,GA,30301 +202245,iPhone,1,700.0,2019-05-15 15:13:00,237 Pine St, Dallas,TX,75001 +202245,Apple Airpods Headphones,1,150.0,2019-05-15 15:13:00,237 Pine St, Dallas,TX,75001 +202246,Apple Airpods Headphones,1,150.0,2019-05-02 21:13:00,916 Chestnut St, Seattle,WA,98101 +202247,Apple Airpods Headphones,1,150.0,2019-05-13 19:48:00,386 Pine St, Atlanta,GA,30301 +202248,Apple Airpods Headphones,1,150.0,2019-05-13 18:43:00,58 Spruce St, Los Angeles,CA,90001 +202249,34in Ultrawide Monitor,1,379.99,2019-05-07 14:21:00,870 Sunset St, Boston,MA,02215 +202250,Bose SoundSport Headphones,1,99.99,2019-05-19 20:11:00,599 Forest St, Boston,MA,02215 +202251,AA Batteries (4-pack),2,3.84,2019-05-27 00:57:00,544 Pine St, San Francisco,CA,94016 +202252,Wired Headphones,1,11.99,2019-05-09 17:03:00,441 Sunset St, Dallas,TX,75001 +202253,LG Dryer,1,600.0,2019-05-23 10:47:00,392 Chestnut St, Seattle,WA,98101 +202254,Lightning Charging Cable,1,14.95,2019-05-12 02:37:00,163 Wilson St, Los Angeles,CA,90001 +202255,AAA Batteries (4-pack),2,2.99,2019-05-31 10:24:00,690 10th St, San Francisco,CA,94016 +202256,Apple Airpods Headphones,1,150.0,2019-05-08 20:18:00,843 12th St, Atlanta,GA,30301 +202257,AA Batteries (4-pack),1,3.84,2019-05-14 09:10:00,40 Jefferson St, San Francisco,CA,94016 +202258,Lightning Charging Cable,1,14.95,2019-05-17 19:13:00,810 Meadow St, Austin,TX,73301 +202259,USB-C Charging Cable,1,11.95,2019-05-08 08:00:00,922 Jackson St, Dallas,TX,75001 +202260,34in Ultrawide Monitor,1,379.99,2019-05-01 08:10:00,93 Highland St, Dallas,TX,75001 +202261,AA Batteries (4-pack),2,3.84,2019-05-06 19:00:00,618 Center St, Atlanta,GA,30301 +202262,Lightning Charging Cable,1,14.95,2019-05-18 06:02:00,815 Lakeview St, Los Angeles,CA,90001 +202262,34in Ultrawide Monitor,1,379.99,2019-05-18 06:02:00,815 Lakeview St, Los Angeles,CA,90001 +202263,34in Ultrawide Monitor,1,379.99,2019-05-15 17:46:00,228 Dogwood St, Portland,ME,04101 +202264,Wired Headphones,1,11.99,2019-05-12 11:47:00,290 Wilson St, Atlanta,GA,30301 +202265,Apple Airpods Headphones,1,150.0,2019-05-06 00:56:00,710 Maple St, Boston,MA,02215 +202266,27in FHD Monitor,1,149.99,2019-05-18 15:41:00,234 Walnut St, New York City,NY,10001 +202267,ThinkPad Laptop,1,999.99,2019-05-08 20:33:00,720 Cedar St, Seattle,WA,98101 +202268,Wired Headphones,1,11.99,2019-05-08 11:16:00,691 Lincoln St, San Francisco,CA,94016 +202269,Lightning Charging Cable,1,14.95,2019-05-04 17:15:00,990 10th St, Los Angeles,CA,90001 +202270,Wired Headphones,1,11.99,2019-05-29 16:13:00,551 11th St, New York City,NY,10001 +202271,Wired Headphones,2,11.99,2019-05-01 07:56:00,150 Forest St, Dallas,TX,75001 +202271,Wired Headphones,1,11.99,2019-05-01 07:56:00,150 Forest St, Dallas,TX,75001 +202272,AA Batteries (4-pack),1,3.84,2019-05-07 23:41:00,334 South St, Portland,OR,97035 +202273,Flatscreen TV,1,300.0,2019-05-30 19:22:00,200 Lake St, Seattle,WA,98101 +202274,USB-C Charging Cable,1,11.95,2019-05-26 11:36:00,892 Elm St, Boston,MA,02215 +202275,Lightning Charging Cable,1,14.95,2019-05-03 11:33:00,994 Forest St, Austin,TX,73301 +202276,iPhone,1,700.0,2019-05-05 19:43:00,135 Pine St, San Francisco,CA,94016 +202277,USB-C Charging Cable,1,11.95,2019-05-10 23:59:00,913 Chestnut St, San Francisco,CA,94016 +202278,Lightning Charging Cable,1,14.95,2019-05-27 08:01:00,367 Pine St, Portland,OR,97035 +202279,Apple Airpods Headphones,1,150.0,2019-05-02 16:27:00,953 Walnut St, Boston,MA,02215 +202280,20in Monitor,1,109.99,2019-05-28 10:59:00,812 South St, New York City,NY,10001 +202281,Lightning Charging Cable,1,14.95,2019-05-14 17:57:00,120 12th St, Atlanta,GA,30301 +202282,Apple Airpods Headphones,1,150.0,2019-05-28 13:48:00,258 Spruce St, Portland,ME,04101 +202283,34in Ultrawide Monitor,1,379.99,2019-05-11 18:49:00,968 Elm St, Los Angeles,CA,90001 +202284,Apple Airpods Headphones,1,150.0,2019-05-29 20:19:00,58 Hickory St, San Francisco,CA,94016 +202285,20in Monitor,1,109.99,2019-05-10 18:45:00,21 Sunset St, New York City,NY,10001 +202286,USB-C Charging Cable,1,11.95,2019-05-13 01:21:00,561 Cherry St, Austin,TX,73301 +202287,34in Ultrawide Monitor,1,379.99,2019-05-22 08:23:00,442 Elm St, Seattle,WA,98101 +202288,iPhone,1,700.0,2019-05-14 19:24:00,506 Adams St, Boston,MA,02215 +202289,Apple Airpods Headphones,1,150.0,2019-05-16 10:54:00,359 Wilson St, Los Angeles,CA,90001 +202290,AA Batteries (4-pack),1,3.84,2019-05-11 20:49:00,779 Forest St, Austin,TX,73301 +202291,27in FHD Monitor,1,149.99,2019-05-12 22:04:00,210 1st St, San Francisco,CA,94016 +202292,Lightning Charging Cable,1,14.95,2019-05-16 21:02:00,17 Hickory St, San Francisco,CA,94016 +202293,iPhone,1,700.0,2019-05-26 19:34:00,344 2nd St, Los Angeles,CA,90001 +202294,AA Batteries (4-pack),1,3.84,2019-05-10 10:46:00,326 Main St, Los Angeles,CA,90001 +202295,AA Batteries (4-pack),1,3.84,2019-05-18 15:30:00,632 Spruce St, New York City,NY,10001 +202296,Apple Airpods Headphones,1,150.0,2019-05-04 11:01:00,346 5th St, Portland,ME,04101 +202297,AAA Batteries (4-pack),2,2.99,2019-05-25 10:15:00,203 12th St, New York City,NY,10001 +202298,Wired Headphones,1,11.99,2019-05-12 22:01:00,980 10th St, Los Angeles,CA,90001 +202299,34in Ultrawide Monitor,1,379.99,2019-05-17 18:14:00,644 Lincoln St, Dallas,TX,75001 +202300,USB-C Charging Cable,1,11.95,2019-05-29 16:38:00,495 7th St, Seattle,WA,98101 +202301,Apple Airpods Headphones,1,150.0,2019-05-08 21:59:00,420 Wilson St, San Francisco,CA,94016 +202302,AAA Batteries (4-pack),1,2.99,2019-05-23 21:44:00,329 Washington St, Seattle,WA,98101 +202303,Bose SoundSport Headphones,1,99.99,2019-05-15 18:14:00,334 12th St, Austin,TX,73301 +202304,Lightning Charging Cable,1,14.95,2019-05-09 14:09:00,290 Maple St, Los Angeles,CA,90001 +202305,AAA Batteries (4-pack),2,2.99,2019-05-18 11:58:00,614 West St, Portland,ME,04101 +202306,Bose SoundSport Headphones,1,99.99,2019-05-20 19:54:00,470 Main St, San Francisco,CA,94016 +202307,AA Batteries (4-pack),1,3.84,2019-05-28 13:01:00,558 Meadow St, New York City,NY,10001 +202308,Wired Headphones,1,11.99,2019-05-24 09:36:00,226 Jackson St, Los Angeles,CA,90001 +202309,Lightning Charging Cable,1,14.95,2019-05-08 19:32:00,121 Cedar St, San Francisco,CA,94016 +202310,Wired Headphones,2,11.99,2019-05-20 20:11:00,820 North St, New York City,NY,10001 +202311,AA Batteries (4-pack),2,3.84,2019-05-22 08:07:00,581 North St, Portland,OR,97035 +202312,Bose SoundSport Headphones,1,99.99,2019-05-16 12:57:00,36 Willow St, San Francisco,CA,94016 +202313,Macbook Pro Laptop,1,1700.0,2019-05-01 11:48:00,443 Cedar St, Los Angeles,CA,90001 +202314,iPhone,1,700.0,2019-05-27 23:14:00,979 Wilson St, Dallas,TX,75001 +202315,iPhone,1,700.0,2019-05-02 17:14:00,334 Johnson St, Portland,ME,04101 +202315,Lightning Charging Cable,1,14.95,2019-05-02 17:14:00,334 Johnson St, Portland,ME,04101 +202315,Apple Airpods Headphones,1,150.0,2019-05-02 17:14:00,334 Johnson St, Portland,ME,04101 +202316,Wired Headphones,1,11.99,2019-05-17 09:21:00,62 Sunset St, San Francisco,CA,94016 +202317,Wired Headphones,1,11.99,2019-05-25 10:04:00,648 Ridge St, New York City,NY,10001 +202318,Lightning Charging Cable,1,14.95,2019-05-13 16:50:00,991 8th St, Dallas,TX,75001 +202319,USB-C Charging Cable,1,11.95,2019-05-22 21:57:00,813 10th St, Los Angeles,CA,90001 +202320,Lightning Charging Cable,1,14.95,2019-05-04 13:46:00,212 Chestnut St, Los Angeles,CA,90001 +202321,Bose SoundSport Headphones,1,99.99,2019-05-02 00:28:00,860 Forest St, New York City,NY,10001 +202322,27in FHD Monitor,1,149.99,2019-05-09 12:54:00,857 Park St, Seattle,WA,98101 +202323,Lightning Charging Cable,1,14.95,2019-05-08 12:57:00,724 West St, Los Angeles,CA,90001 +202324,Apple Airpods Headphones,1,150.0,2019-05-01 21:11:00,131 Center St, New York City,NY,10001 +202325,Wired Headphones,1,11.99,2019-05-01 11:21:00,953 Church St, Atlanta,GA,30301 +202326,Apple Airpods Headphones,1,150.0,2019-05-07 06:36:00,760 Wilson St, San Francisco,CA,94016 +202327,LG Dryer,1,600.0,2019-05-22 06:59:00,924 11th St, Boston,MA,02215 +202328,Lightning Charging Cable,1,14.95,2019-05-22 10:53:00,32 2nd St, San Francisco,CA,94016 +202329,27in 4K Gaming Monitor,1,389.99,2019-05-22 23:18:00,165 Elm St, New York City,NY,10001 +202330,AAA Batteries (4-pack),1,2.99,2019-05-07 20:02:00,291 Johnson St, Dallas,TX,75001 +202331,Apple Airpods Headphones,1,150.0,2019-05-19 15:18:00,839 River St, San Francisco,CA,94016 +202332,ThinkPad Laptop,1,999.99,2019-05-04 10:53:00,224 West St, Atlanta,GA,30301 +202333,AA Batteries (4-pack),2,3.84,2019-05-24 08:01:00,761 Sunset St, Los Angeles,CA,90001 +202334,USB-C Charging Cable,1,11.95,2019-05-30 13:03:00,487 Hickory St, Dallas,TX,75001 +202335,Apple Airpods Headphones,1,150.0,2019-05-20 08:44:00,305 Madison St, Austin,TX,73301 +202336,Apple Airpods Headphones,1,150.0,2019-05-17 17:36:00,510 North St, New York City,NY,10001 +202337,LG Dryer,1,600.0,2019-05-09 12:29:00,644 Jackson St, Los Angeles,CA,90001 +202338,27in FHD Monitor,1,149.99,2019-05-04 23:57:00,349 13th St, Boston,MA,02215 +202339,Apple Airpods Headphones,1,150.0,2019-05-19 14:53:00,935 Center St, New York City,NY,10001 +202340,USB-C Charging Cable,1,11.95,2019-05-10 18:36:00,795 Dogwood St, Dallas,TX,75001 +202341,USB-C Charging Cable,1,11.95,2019-05-19 13:26:00,807 Center St, Dallas,TX,75001 +202342,Wired Headphones,1,11.99,2019-05-10 19:45:00,972 River St, San Francisco,CA,94016 +202343,Bose SoundSport Headphones,1,99.99,2019-05-28 12:47:00,334 Highland St, Portland,OR,97035 +202344,Lightning Charging Cable,1,14.95,2019-05-14 22:20:00,370 Hill St, Los Angeles,CA,90001 +202345,AAA Batteries (4-pack),2,2.99,2019-05-06 23:29:00,673 Lake St, Seattle,WA,98101 +202346,Lightning Charging Cable,1,14.95,2019-05-05 23:08:00,870 Main St, New York City,NY,10001 +202347,34in Ultrawide Monitor,1,379.99,2019-05-13 09:18:00,929 Willow St, Boston,MA,02215 +202347,Lightning Charging Cable,1,14.95,2019-05-13 09:18:00,929 Willow St, Boston,MA,02215 +202348,34in Ultrawide Monitor,1,379.99,2019-05-30 22:14:00,490 Park St, Atlanta,GA,30301 +202349,AAA Batteries (4-pack),1,2.99,2019-05-03 18:54:00,38 Ridge St, Boston,MA,02215 +202350,iPhone,1,700.0,2019-05-12 10:24:00,453 10th St, San Francisco,CA,94016 +202351,AA Batteries (4-pack),1,3.84,2019-05-22 12:50:00,905 Meadow St, Portland,ME,04101 +202352,AA Batteries (4-pack),2,3.84,2019-05-06 05:46:00,462 Highland St, Los Angeles,CA,90001 +202353,34in Ultrawide Monitor,1,379.99,2019-05-29 12:20:00,456 Lakeview St, Atlanta,GA,30301 +202354,ThinkPad Laptop,1,999.99,2019-05-03 11:33:00,574 Willow St, San Francisco,CA,94016 +202355,AAA Batteries (4-pack),1,2.99,2019-05-06 13:21:00,463 Lincoln St, Austin,TX,73301 +202356,Wired Headphones,1,11.99,2019-05-19 15:24:00,101 South St, Seattle,WA,98101 +202357,USB-C Charging Cable,1,11.95,2019-05-21 10:16:00,984 Madison St, Atlanta,GA,30301 +202358,Wired Headphones,1,11.99,2019-05-29 17:21:00,487 Walnut St, San Francisco,CA,94016 +202359,27in FHD Monitor,1,149.99,2019-05-01 17:17:00,221 11th St, New York City,NY,10001 +202359,LG Dryer,1,600.0,2019-05-01 17:17:00,221 11th St, New York City,NY,10001 +202360,20in Monitor,1,109.99,2019-05-16 21:25:00,726 8th St, Los Angeles,CA,90001 +202361,34in Ultrawide Monitor,1,379.99,2019-05-30 12:45:00,158 14th St, Atlanta,GA,30301 +202362,Wired Headphones,1,11.99,2019-05-20 23:15:00,821 Cherry St, New York City,NY,10001 +202362,20in Monitor,1,109.99,2019-05-20 23:15:00,821 Cherry St, New York City,NY,10001 +202363,AAA Batteries (4-pack),1,2.99,2019-05-29 15:35:00,942 13th St, San Francisco,CA,94016 +202364,Bose SoundSport Headphones,1,99.99,2019-05-14 20:35:00,861 5th St, Austin,TX,73301 +202365,Wired Headphones,1,11.99,2019-05-31 11:27:00,980 14th St, Los Angeles,CA,90001 +202366,Apple Airpods Headphones,1,150.0,2019-05-02 16:27:00,875 Park St, Boston,MA,02215 +202367,Apple Airpods Headphones,1,150.0,2019-05-27 14:31:00,123 12th St, New York City,NY,10001 +202368,iPhone,1,700.0,2019-05-16 18:22:00,58 6th St, New York City,NY,10001 +202368,Wired Headphones,1,11.99,2019-05-16 18:22:00,58 6th St, New York City,NY,10001 +202369,27in FHD Monitor,1,149.99,2019-05-28 21:45:00,25 Church St, San Francisco,CA,94016 +202370,AA Batteries (4-pack),1,3.84,2019-05-24 21:04:00,994 North St, New York City,NY,10001 +202371,AA Batteries (4-pack),2,3.84,2019-05-14 12:05:00,105 North St, Seattle,WA,98101 +202372,AAA Batteries (4-pack),1,2.99,2019-05-28 10:32:00,358 2nd St, Boston,MA,02215 +202373,Bose SoundSport Headphones,1,99.99,2019-05-17 23:24:00,465 13th St, San Francisco,CA,94016 +202374,Lightning Charging Cable,1,14.95,2019-05-29 22:36:00,664 Elm St, San Francisco,CA,94016 +202375,Bose SoundSport Headphones,1,99.99,2019-05-30 12:52:00,969 Lincoln St, Austin,TX,73301 +202376,USB-C Charging Cable,1,11.95,2019-05-05 19:09:00,715 Walnut St, Seattle,WA,98101 +202377,Flatscreen TV,1,300.0,2019-05-04 17:15:00,727 Jackson St, New York City,NY,10001 +202378,Apple Airpods Headphones,1,150.0,2019-05-13 22:11:00,23 Willow St, Boston,MA,02215 +202379,AAA Batteries (4-pack),1,2.99,2019-05-06 20:04:00,300 2nd St, Seattle,WA,98101 +202380,AA Batteries (4-pack),1,3.84,2019-05-09 16:30:00,10 Madison St, San Francisco,CA,94016 +202381,ThinkPad Laptop,1,999.99,2019-05-03 20:29:00,420 Washington St, Boston,MA,02215 +202382,iPhone,1,700.0,2019-05-25 09:58:00,194 Spruce St, Los Angeles,CA,90001 +202383,27in FHD Monitor,1,149.99,2019-05-18 12:10:00,962 Spruce St, San Francisco,CA,94016 +202384,AA Batteries (4-pack),1,3.84,2019-05-22 22:13:00,323 Adams St, Seattle,WA,98101 +202385,AA Batteries (4-pack),2,3.84,2019-05-21 03:33:00,87 Elm St, Portland,ME,04101 +202386,AAA Batteries (4-pack),4,2.99,2019-05-08 10:13:00,832 West St, Austin,TX,73301 +202387,Apple Airpods Headphones,1,150.0,2019-05-15 21:22:00,405 Hill St, New York City,NY,10001 +202388,AAA Batteries (4-pack),1,2.99,2019-05-13 00:45:00,396 Lakeview St, New York City,NY,10001 +202389,AA Batteries (4-pack),1,3.84,2019-05-29 20:05:00,47 North St, New York City,NY,10001 +202390,AA Batteries (4-pack),3,3.84,2019-05-13 10:11:00,510 Hickory St, San Francisco,CA,94016 +202391,ThinkPad Laptop,1,999.99,2019-05-13 19:16:00,243 Lincoln St, New York City,NY,10001 +202392,Wired Headphones,1,11.99,2019-05-29 17:53:00,241 10th St, New York City,NY,10001 +202393,AA Batteries (4-pack),3,3.84,2019-05-08 22:17:00,232 Chestnut St, New York City,NY,10001 +202394,27in 4K Gaming Monitor,1,389.99,2019-05-31 23:16:00,151 Hill St, Austin,TX,73301 +202395,AAA Batteries (4-pack),2,2.99,2019-05-29 10:47:00,868 Washington St, Portland,OR,97035 +202396,34in Ultrawide Monitor,1,379.99,2019-05-30 17:17:00,150 Church St, San Francisco,CA,94016 +202397,USB-C Charging Cable,1,11.95,2019-05-11 23:33:00,406 Highland St, San Francisco,CA,94016 +202397,iPhone,1,700.0,2019-05-11 23:33:00,406 Highland St, San Francisco,CA,94016 +202398,AAA Batteries (4-pack),1,2.99,2019-05-17 13:07:00,908 Jackson St, Austin,TX,73301 +202399,Macbook Pro Laptop,1,1700.0,2019-05-09 19:46:00,992 Meadow St, Atlanta,GA,30301 +202400,Wired Headphones,1,11.99,2019-05-21 11:54:00,866 Highland St, New York City,NY,10001 +202401,34in Ultrawide Monitor,1,379.99,2019-05-30 06:36:00,519 Pine St, Los Angeles,CA,90001 +202402,27in 4K Gaming Monitor,1,389.99,2019-05-01 12:02:00,872 North St, Atlanta,GA,30301 +202403,Apple Airpods Headphones,1,150.0,2019-05-24 07:46:00,540 Jackson St, Los Angeles,CA,90001 +202404,USB-C Charging Cable,1,11.95,2019-05-15 00:52:00,623 Park St, Seattle,WA,98101 +202405,AAA Batteries (4-pack),1,2.99,2019-05-27 21:16:00,474 Madison St, Atlanta,GA,30301 +202406,iPhone,1,700.0,2019-05-26 17:47:00,632 Pine St, Austin,TX,73301 +202407,Lightning Charging Cable,1,14.95,2019-05-17 10:57:00,963 Ridge St, San Francisco,CA,94016 +202408,Bose SoundSport Headphones,1,99.99,2019-05-26 19:57:00,712 6th St, New York City,NY,10001 +202409,iPhone,1,700.0,2019-05-08 17:13:00,81 Willow St, Los Angeles,CA,90001 +202410,USB-C Charging Cable,1,11.95,2019-05-20 00:31:00,96 5th St, San Francisco,CA,94016 +202411,Lightning Charging Cable,1,14.95,2019-05-19 15:21:00,716 10th St, Austin,TX,73301 +202412,34in Ultrawide Monitor,1,379.99,2019-05-13 04:39:00,630 5th St, New York City,NY,10001 +202413,AA Batteries (4-pack),1,3.84,2019-05-27 22:36:00,957 Chestnut St, Dallas,TX,75001 +202414,Lightning Charging Cable,1,14.95,2019-05-06 10:29:00,902 7th St, Los Angeles,CA,90001 +202415,Macbook Pro Laptop,1,1700.0,2019-05-17 11:05:00,829 Meadow St, Atlanta,GA,30301 +202416,Vareebadd Phone,1,400.0,2019-05-28 21:22:00,742 Jackson St, Dallas,TX,75001 +202417,27in FHD Monitor,1,149.99,2019-05-16 00:04:00,607 12th St, Portland,OR,97035 +202418,ThinkPad Laptop,1,999.99,2019-05-16 15:23:00,958 Forest St, Seattle,WA,98101 +202419,Lightning Charging Cable,1,14.95,2019-05-16 14:34:00,42 6th St, Los Angeles,CA,90001 +202420,AAA Batteries (4-pack),1,2.99,2019-05-14 15:50:00,578 Lake St, Dallas,TX,75001 +202421,AAA Batteries (4-pack),1,2.99,2019-05-22 19:08:00,110 Hill St, Austin,TX,73301 +202422,27in FHD Monitor,1,149.99,2019-05-27 07:15:00,765 Lincoln St, San Francisco,CA,94016 +202423,AA Batteries (4-pack),1,3.84,2019-05-09 06:40:00,9 Cherry St, New York City,NY,10001 +202424,Apple Airpods Headphones,1,150.0,2019-05-10 14:51:00,599 Church St, San Francisco,CA,94016 +202425,Wired Headphones,1,11.99,2019-05-31 12:42:00,114 Cherry St, San Francisco,CA,94016 +202426,AAA Batteries (4-pack),1,2.99,2019-05-09 16:41:00,70 5th St, San Francisco,CA,94016 +202427,AAA Batteries (4-pack),2,2.99,2019-05-08 18:53:00,965 Ridge St, San Francisco,CA,94016 +202428,Lightning Charging Cable,1,14.95,2019-05-07 11:30:00,637 Dogwood St, Boston,MA,02215 +202429,Apple Airpods Headphones,1,150.0,2019-05-30 11:16:00,887 Park St, Boston,MA,02215 +202430,Wired Headphones,1,11.99,2019-05-27 23:18:00,481 10th St, Dallas,TX,75001 +202431,USB-C Charging Cable,1,11.95,2019-05-28 10:56:00,380 Church St, Seattle,WA,98101 +202432,Bose SoundSport Headphones,1,99.99,2019-05-25 18:14:00,116 14th St, San Francisco,CA,94016 +202433,AA Batteries (4-pack),1,3.84,2019-05-16 10:39:00,846 4th St, San Francisco,CA,94016 +202434,Lightning Charging Cable,1,14.95,2019-05-21 08:40:00,105 Pine St, San Francisco,CA,94016 +202435,AAA Batteries (4-pack),2,2.99,2019-05-15 14:07:00,394 Ridge St, Los Angeles,CA,90001 +202436,USB-C Charging Cable,1,11.95,2019-05-07 06:29:00,226 Madison St, San Francisco,CA,94016 +202437,Lightning Charging Cable,1,14.95,2019-05-18 10:12:00,25 Dogwood St, Atlanta,GA,30301 +202438,Lightning Charging Cable,1,14.95,2019-05-27 17:03:00,153 Main St, San Francisco,CA,94016 +202439,Bose SoundSport Headphones,1,99.99,2019-05-18 20:22:00,638 Highland St, San Francisco,CA,94016 +202440,iPhone,1,700.0,2019-05-31 21:29:00,341 Lake St, New York City,NY,10001 +202441,Bose SoundSport Headphones,1,99.99,2019-05-14 17:53:00,796 Elm St, Atlanta,GA,30301 +202442,27in 4K Gaming Monitor,1,389.99,2019-05-22 10:26:00,836 Spruce St, Atlanta,GA,30301 +202443,AAA Batteries (4-pack),1,2.99,2019-05-15 10:05:00,495 Park St, New York City,NY,10001 +202444,AAA Batteries (4-pack),3,2.99,2019-05-26 12:34:00,441 Hill St, New York City,NY,10001 +202445,34in Ultrawide Monitor,1,379.99,2019-05-23 22:30:00,292 Washington St, San Francisco,CA,94016 +202446,Apple Airpods Headphones,1,150.0,2019-05-17 11:30:00,693 Dogwood St, Austin,TX,73301 +202447,Wired Headphones,1,11.99,2019-05-04 18:57:00,434 River St, San Francisco,CA,94016 +202448,Wired Headphones,1,11.99,2019-05-11 01:47:00,645 Hill St, Atlanta,GA,30301 +202448,AA Batteries (4-pack),1,3.84,2019-05-11 01:47:00,645 Hill St, Atlanta,GA,30301 +202449,USB-C Charging Cable,1,11.95,2019-05-25 12:35:00,400 River St, Los Angeles,CA,90001 +202450,Apple Airpods Headphones,1,150.0,2019-05-08 19:10:00,520 Ridge St, Boston,MA,02215 +202451,Flatscreen TV,1,300.0,2019-05-19 02:37:00,118 12th St, San Francisco,CA,94016 +202452,Macbook Pro Laptop,1,1700.0,2019-05-12 11:19:00,604 4th St, New York City,NY,10001 +202453,Lightning Charging Cable,1,14.95,2019-05-25 15:16:00,868 Main St, Seattle,WA,98101 +202454,Bose SoundSport Headphones,1,99.99,2019-05-12 07:27:00,53 2nd St, San Francisco,CA,94016 +202455,Lightning Charging Cable,1,14.95,2019-05-03 07:42:00,848 Washington St, Atlanta,GA,30301 +202456,Bose SoundSport Headphones,1,99.99,2019-05-27 11:05:00,490 Meadow St, Portland,OR,97035 +202457,AA Batteries (4-pack),1,3.84,2019-05-26 09:08:00,989 Church St, Los Angeles,CA,90001 +202458,27in 4K Gaming Monitor,1,389.99,2019-05-31 17:33:00,184 North St, Atlanta,GA,30301 +202459,27in FHD Monitor,1,149.99,2019-05-13 09:45:00,985 Forest St, Seattle,WA,98101 +202460,Bose SoundSport Headphones,1,99.99,2019-06-01 01:29:00,428 Lake St, San Francisco,CA,94016 +202461,Wired Headphones,1,11.99,2019-05-13 18:55:00,518 Jackson St, Boston,MA,02215 +202462,Apple Airpods Headphones,1,150.0,2019-05-26 11:02:00,32 7th St, New York City,NY,10001 +202463,ThinkPad Laptop,1,999.99,2019-05-07 15:37:00,479 Wilson St, New York City,NY,10001 +202464,AA Batteries (4-pack),1,3.84,2019-05-19 19:42:00,929 13th St, Boston,MA,02215 +202465,AA Batteries (4-pack),1,3.84,2019-05-06 22:00:00,639 River St, Atlanta,GA,30301 +202466,Wired Headphones,1,11.99,2019-05-09 18:10:00,52 West St, San Francisco,CA,94016 +202467,USB-C Charging Cable,1,11.95,2019-05-24 16:52:00,819 8th St, Boston,MA,02215 +202468,Wired Headphones,1,11.99,2019-05-20 08:52:00,187 Maple St, Portland,OR,97035 +202469,iPhone,1,700.0,2019-05-18 19:37:00,218 Park St, Dallas,TX,75001 +202470,ThinkPad Laptop,1,999.99,2019-05-27 07:09:00,541 5th St, Austin,TX,73301 +202471,AA Batteries (4-pack),1,3.84,2019-05-25 22:49:00,924 Cedar St, Dallas,TX,75001 +202472,AA Batteries (4-pack),1,3.84,2019-05-09 14:22:00,31 Walnut St, Atlanta,GA,30301 +202473,AA Batteries (4-pack),2,3.84,2019-05-15 12:47:00,954 Dogwood St, Seattle,WA,98101 +202474,Wired Headphones,1,11.99,2019-05-09 13:40:00,116 Adams St, Los Angeles,CA,90001 +202475,Apple Airpods Headphones,1,150.0,2019-05-26 19:22:00,803 Meadow St, Portland,OR,97035 +202476,27in FHD Monitor,1,149.99,2019-05-07 10:12:00,894 Lake St, New York City,NY,10001 +202477,Bose SoundSport Headphones,1,99.99,2019-05-17 12:48:00,685 Highland St, Dallas,TX,75001 +202478,AAA Batteries (4-pack),1,2.99,2019-05-14 12:17:00,529 Jefferson St, San Francisco,CA,94016 +202479,Lightning Charging Cable,1,14.95,2019-05-06 16:48:00,464 Willow St, Atlanta,GA,30301 +202480,AA Batteries (4-pack),1,3.84,2019-05-25 10:10:00,504 7th St, New York City,NY,10001 +202481,iPhone,1,700.0,2019-05-10 14:42:00,479 Jackson St, Seattle,WA,98101 +202482,Lightning Charging Cable,1,14.95,2019-05-12 21:04:00,768 11th St, New York City,NY,10001 +202483,Bose SoundSport Headphones,1,99.99,2019-05-20 17:53:00,804 Ridge St, Atlanta,GA,30301 +202484,AAA Batteries (4-pack),1,2.99,2019-05-20 14:37:00,943 12th St, Los Angeles,CA,90001 +202485,AA Batteries (4-pack),1,3.84,2019-05-25 18:01:00,406 Church St, Los Angeles,CA,90001 +202486,Wired Headphones,1,11.99,2019-05-21 09:58:00,353 Hickory St, Los Angeles,CA,90001 +202487,Lightning Charging Cable,1,14.95,2019-05-14 00:59:00,437 Chestnut St, Portland,OR,97035 +202488,AA Batteries (4-pack),1,3.84,2019-05-18 19:37:00,491 Willow St, San Francisco,CA,94016 +202489,USB-C Charging Cable,1,11.95,2019-05-19 13:13:00,183 Lakeview St, Seattle,WA,98101 +202490,27in FHD Monitor,1,149.99,2019-05-29 15:30:00,467 6th St, Boston,MA,02215 +202491,AAA Batteries (4-pack),1,2.99,2019-05-04 08:01:00,3 Lincoln St, New York City,NY,10001 +202492,AAA Batteries (4-pack),1,2.99,2019-05-08 17:58:00,223 Lincoln St, New York City,NY,10001 +202493,Apple Airpods Headphones,1,150.0,2019-05-19 18:24:00,109 Church St, Portland,ME,04101 +202493,Wired Headphones,1,11.99,2019-05-19 18:24:00,109 Church St, Portland,ME,04101 +202494,USB-C Charging Cable,1,11.95,2019-05-19 11:58:00,818 Park St, Atlanta,GA,30301 +202495,Macbook Pro Laptop,1,1700.0,2019-05-21 16:19:00,703 10th St, New York City,NY,10001 +202496,Wired Headphones,1,11.99,2019-05-10 20:12:00,738 North St, Los Angeles,CA,90001 +202497,Macbook Pro Laptop,1,1700.0,2019-05-03 09:18:00,548 Lake St, Atlanta,GA,30301 +202498,27in 4K Gaming Monitor,1,389.99,2019-05-01 07:56:00,772 Cherry St, Los Angeles,CA,90001 +202499,AA Batteries (4-pack),2,3.84,2019-05-15 22:09:00,799 Park St, San Francisco,CA,94016 +202500,Wired Headphones,2,11.99,2019-05-06 18:50:00,478 Ridge St, New York City,NY,10001 +202501,27in FHD Monitor,1,149.99,2019-05-18 08:12:00,384 14th St, San Francisco,CA,94016 +202502,AAA Batteries (4-pack),1,2.99,2019-05-06 13:14:00,698 Adams St, Los Angeles,CA,90001 +202503,Bose SoundSport Headphones,1,99.99,2019-05-20 12:21:00,739 Highland St, San Francisco,CA,94016 +202504,27in FHD Monitor,1,149.99,2019-05-07 14:36:00,484 Main St, San Francisco,CA,94016 +202505,Macbook Pro Laptop,1,1700.0,2019-05-05 22:42:00,378 Hill St, Dallas,TX,75001 +202506,Wired Headphones,1,11.99,2019-05-25 20:01:00,301 14th St, San Francisco,CA,94016 +202507,AA Batteries (4-pack),1,3.84,2019-05-31 22:21:00,157 7th St, New York City,NY,10001 +202508,Lightning Charging Cable,1,14.95,2019-05-19 13:03:00,146 Jackson St, Boston,MA,02215 +202509,Apple Airpods Headphones,1,150.0,2019-05-12 12:26:00,647 Willow St, San Francisco,CA,94016 +202510,Flatscreen TV,1,300.0,2019-05-26 10:01:00,453 Pine St, San Francisco,CA,94016 +202511,Wired Headphones,1,11.99,2019-05-10 21:12:00,394 14th St, Portland,ME,04101 +202512,USB-C Charging Cable,1,11.95,2019-05-15 06:46:00,790 Center St, Portland,OR,97035 +202513,27in 4K Gaming Monitor,1,389.99,2019-05-24 01:17:00,920 1st St, New York City,NY,10001 +202514,AAA Batteries (4-pack),1,2.99,2019-05-02 11:56:00,982 South St, Seattle,WA,98101 +202515,Wired Headphones,1,11.99,2019-05-19 12:00:00,519 6th St, Seattle,WA,98101 +202516,27in FHD Monitor,1,149.99,2019-05-19 11:29:00,934 Washington St, San Francisco,CA,94016 +202517,Apple Airpods Headphones,1,150.0,2019-05-30 17:22:00,397 River St, Los Angeles,CA,90001 +202518,AAA Batteries (4-pack),1,2.99,2019-05-12 23:36:00,698 Maple St, Atlanta,GA,30301 +202518,AA Batteries (4-pack),1,3.84,2019-05-12 23:36:00,698 Maple St, Atlanta,GA,30301 +202519,20in Monitor,1,109.99,2019-05-25 17:30:00,910 9th St, Seattle,WA,98101 +202520,Lightning Charging Cable,1,14.95,2019-05-03 15:18:00,314 Johnson St, San Francisco,CA,94016 +202521,Google Phone,1,600.0,2019-05-03 11:15:00,684 12th St, Boston,MA,02215 +202521,USB-C Charging Cable,1,11.95,2019-05-03 11:15:00,684 12th St, Boston,MA,02215 +202522,27in 4K Gaming Monitor,1,389.99,2019-05-10 21:43:00,998 7th St, New York City,NY,10001 +202523,Wired Headphones,1,11.99,2019-05-27 20:55:00,837 South St, Atlanta,GA,30301 +202524,Wired Headphones,1,11.99,2019-05-04 18:07:00,747 Park St, San Francisco,CA,94016 +202525,AA Batteries (4-pack),1,3.84,2019-05-06 20:27:00,140 Elm St, Austin,TX,73301 +202526,Lightning Charging Cable,1,14.95,2019-05-05 11:51:00,183 7th St, Atlanta,GA,30301 +202527,Google Phone,1,600.0,2019-05-14 01:54:00,959 Lincoln St, Austin,TX,73301 +202528,Apple Airpods Headphones,1,150.0,2019-05-01 19:42:00,299 Hill St, Los Angeles,CA,90001 +202529,iPhone,1,700.0,2019-05-05 11:32:00,986 7th St, San Francisco,CA,94016 +202529,Wired Headphones,1,11.99,2019-05-05 11:32:00,986 7th St, San Francisco,CA,94016 +202530,AA Batteries (4-pack),1,3.84,2019-05-01 14:22:00,568 Sunset St, Dallas,TX,75001 +202531,27in FHD Monitor,1,149.99,2019-05-29 17:13:00,763 Lake St, New York City,NY,10001 +202532,20in Monitor,1,109.99,2019-05-28 19:59:00,547 Pine St, Seattle,WA,98101 +202533,Wired Headphones,1,11.99,2019-05-26 19:18:00,630 Hill St, New York City,NY,10001 +202534,Google Phone,1,600.0,2019-05-04 10:57:00,733 7th St, New York City,NY,10001 +202535,USB-C Charging Cable,1,11.95,2019-05-15 17:39:00,290 Johnson St, Portland,OR,97035 +202536,Macbook Pro Laptop,1,1700.0,2019-05-07 16:24:00,134 Willow St, Los Angeles,CA,90001 +202537,Lightning Charging Cable,1,14.95,2019-05-23 23:32:00,976 11th St, Atlanta,GA,30301 +202538,AAA Batteries (4-pack),1,2.99,2019-05-18 21:44:00,833 Lincoln St, Los Angeles,CA,90001 +202539,Lightning Charging Cable,1,14.95,2019-05-23 08:34:00,970 5th St, Los Angeles,CA,90001 +202540,AA Batteries (4-pack),1,3.84,2019-05-12 15:36:00,492 10th St, Portland,OR,97035 +202541,AA Batteries (4-pack),2,3.84,2019-05-10 22:08:00,943 Johnson St, Boston,MA,02215 +202542,Vareebadd Phone,1,400.0,2019-05-02 15:26:00,607 Wilson St, New York City,NY,10001 +202542,Apple Airpods Headphones,1,150.0,2019-05-02 15:26:00,607 Wilson St, New York City,NY,10001 +202543,Apple Airpods Headphones,1,150.0,2019-05-14 18:36:00,897 Washington St, San Francisco,CA,94016 +202544,Apple Airpods Headphones,1,150.0,2019-05-08 20:32:00,641 Park St, New York City,NY,10001 +202545,Macbook Pro Laptop,1,1700.0,2019-05-31 21:58:00,705 Center St, Seattle,WA,98101 +202546,Lightning Charging Cable,1,14.95,2019-05-14 07:46:00,286 Ridge St, Seattle,WA,98101 +202547,Lightning Charging Cable,1,14.95,2019-05-04 15:59:00,181 2nd St, New York City,NY,10001 +202548,Flatscreen TV,1,300.0,2019-05-09 12:56:00,757 Pine St, Atlanta,GA,30301 +202549,34in Ultrawide Monitor,1,379.99,2019-05-24 15:40:00,357 Elm St, Portland,OR,97035 +202550,Lightning Charging Cable,1,14.95,2019-05-26 17:42:00,614 Sunset St, San Francisco,CA,94016 +202551,USB-C Charging Cable,2,11.95,2019-05-24 17:04:00,753 Cedar St, Boston,MA,02215 +202552,27in 4K Gaming Monitor,1,389.99,2019-05-06 20:17:00,639 Wilson St, Los Angeles,CA,90001 +202553,34in Ultrawide Monitor,1,379.99,2019-05-31 23:20:00,734 Spruce St, Los Angeles,CA,90001 +202554,Lightning Charging Cable,1,14.95,2019-05-27 22:11:00,790 7th St, Atlanta,GA,30301 +202555,iPhone,1,700.0,2019-05-04 21:11:00,780 6th St, San Francisco,CA,94016 +202555,Apple Airpods Headphones,1,150.0,2019-05-04 21:11:00,780 6th St, San Francisco,CA,94016 +202556,Lightning Charging Cable,1,14.95,2019-05-09 09:26:00,878 Wilson St, Boston,MA,02215 +202557,Apple Airpods Headphones,1,150.0,2019-05-21 18:46:00,297 West St, Los Angeles,CA,90001 +202558,AAA Batteries (4-pack),1,2.99,2019-05-03 18:32:00,562 9th St, Boston,MA,02215 +202559,Vareebadd Phone,1,400.0,2019-05-16 22:37:00,585 Meadow St, Atlanta,GA,30301 +202559,USB-C Charging Cable,1,11.95,2019-05-16 22:37:00,585 Meadow St, Atlanta,GA,30301 +202560,AAA Batteries (4-pack),4,2.99,2019-05-17 04:29:00,665 4th St, Los Angeles,CA,90001 +202561,Wired Headphones,1,11.99,2019-05-12 12:09:00,419 6th St, New York City,NY,10001 +202562,Lightning Charging Cable,1,14.95,2019-05-12 01:36:00,4 Park St, San Francisco,CA,94016 +202563,USB-C Charging Cable,1,11.95,2019-05-24 19:34:00,814 Sunset St, San Francisco,CA,94016 +202564,Lightning Charging Cable,1,14.95,2019-05-27 22:17:00,693 Adams St, Atlanta,GA,30301 +202565,Wired Headphones,1,11.99,2019-05-20 17:15:00,131 12th St, Dallas,TX,75001 +202566,USB-C Charging Cable,1,11.95,2019-05-24 15:02:00,604 Pine St, Dallas,TX,75001 +202567,Apple Airpods Headphones,1,150.0,2019-05-06 19:12:00,910 7th St, Austin,TX,73301 +202568,AAA Batteries (4-pack),1,2.99,2019-05-27 20:44:00,17 13th St, Boston,MA,02215 +202569,USB-C Charging Cable,1,11.95,2019-05-17 09:04:00,609 Forest St, San Francisco,CA,94016 +202570,AA Batteries (4-pack),1,3.84,2019-05-25 17:05:00,5 Willow St, Dallas,TX,75001 +202571,Bose SoundSport Headphones,1,99.99,2019-05-13 21:55:00,537 4th St, San Francisco,CA,94016 +202572,USB-C Charging Cable,1,11.95,2019-05-10 16:53:00,963 River St, Boston,MA,02215 +202573,AAA Batteries (4-pack),1,2.99,2019-05-07 18:08:00,227 Ridge St, Boston,MA,02215 +202574,Wired Headphones,1,11.99,2019-05-25 22:02:00,859 Park St, San Francisco,CA,94016 +202575,Wired Headphones,1,11.99,2019-05-18 16:36:00,927 Meadow St, Boston,MA,02215 +202576,Wired Headphones,1,11.99,2019-05-27 18:25:00,941 4th St, San Francisco,CA,94016 +202577,USB-C Charging Cable,1,11.95,2019-05-22 19:49:00,435 11th St, San Francisco,CA,94016 +202578,Vareebadd Phone,1,400.0,2019-05-31 23:21:00,925 14th St, Los Angeles,CA,90001 +202579,34in Ultrawide Monitor,1,379.99,2019-05-15 23:02:00,492 4th St, New York City,NY,10001 +202580,Apple Airpods Headphones,1,150.0,2019-05-04 14:00:00,690 Forest St, New York City,NY,10001 +202581,Wired Headphones,1,11.99,2019-05-30 13:39:00,217 Cedar St, New York City,NY,10001 +202582,Lightning Charging Cable,1,14.95,2019-05-28 13:18:00,726 Lake St, Austin,TX,73301 +202583,AAA Batteries (4-pack),2,2.99,2019-05-25 20:33:00,733 Park St, San Francisco,CA,94016 +202584,Wired Headphones,1,11.99,2019-05-23 16:40:00,816 Ridge St, San Francisco,CA,94016 +202585,Bose SoundSport Headphones,1,99.99,2019-05-30 15:09:00,321 Madison St, Boston,MA,02215 +202586,Macbook Pro Laptop,1,1700.0,2019-05-26 19:12:00,289 Church St, Atlanta,GA,30301 +202587,Bose SoundSport Headphones,1,99.99,2019-05-17 11:27:00,496 14th St, New York City,NY,10001 +202588,Macbook Pro Laptop,1,1700.0,2019-05-18 13:04:00,879 1st St, Portland,OR,97035 +202589,Bose SoundSport Headphones,1,99.99,2019-05-28 19:20:00,175 Park St, New York City,NY,10001 +202590,USB-C Charging Cable,1,11.95,2019-05-02 21:29:00,284 Lakeview St, San Francisco,CA,94016 +202591,Lightning Charging Cable,1,14.95,2019-05-03 11:38:00,523 6th St, Austin,TX,73301 +202592,Apple Airpods Headphones,1,150.0,2019-05-01 06:44:00,639 River St, Austin,TX,73301 +202593,Wired Headphones,1,11.99,2019-05-13 12:45:00,789 Walnut St, Austin,TX,73301 +202594,USB-C Charging Cable,1,11.95,2019-05-05 21:31:00,15 Main St, Los Angeles,CA,90001 +202595,AA Batteries (4-pack),1,3.84,2019-05-10 20:08:00,395 Lincoln St, New York City,NY,10001 +202596,Lightning Charging Cable,1,14.95,2019-05-13 12:18:00,194 West St, Seattle,WA,98101 +202597,Lightning Charging Cable,1,14.95,2019-05-23 18:55:00,802 Highland St, San Francisco,CA,94016 +202598,USB-C Charging Cable,1,11.95,2019-05-29 18:28:00,311 North St, Seattle,WA,98101 +202599,iPhone,1,700.0,2019-05-06 17:30:00,35 Jefferson St, San Francisco,CA,94016 +202599,Apple Airpods Headphones,1,150.0,2019-05-06 17:30:00,35 Jefferson St, San Francisco,CA,94016 +202600,USB-C Charging Cable,1,11.95,2019-05-21 11:14:00,949 9th St, Boston,MA,02215 +202601,Bose SoundSport Headphones,1,99.99,2019-05-04 13:33:00,237 Lincoln St, Boston,MA,02215 +202602,USB-C Charging Cable,1,11.95,2019-05-01 10:57:00,959 1st St, San Francisco,CA,94016 +202603,Wired Headphones,1,11.99,2019-05-11 18:35:00,673 10th St, New York City,NY,10001 +202604,Vareebadd Phone,1,400.0,2019-05-11 21:14:00,955 Dogwood St, San Francisco,CA,94016 +202604,Wired Headphones,1,11.99,2019-05-11 21:14:00,955 Dogwood St, San Francisco,CA,94016 +202605,USB-C Charging Cable,1,11.95,2019-05-09 17:17:00,201 Cedar St, Los Angeles,CA,90001 +202606,iPhone,1,700.0,2019-05-16 17:29:00,745 Willow St, Boston,MA,02215 +202606,Apple Airpods Headphones,1,150.0,2019-05-16 17:29:00,745 Willow St, Boston,MA,02215 +202607,Bose SoundSport Headphones,1,99.99,2019-05-18 17:57:00,428 Madison St, San Francisco,CA,94016 +202608,AA Batteries (4-pack),1,3.84,2019-05-26 09:10:00,453 Willow St, Los Angeles,CA,90001 +202609,20in Monitor,1,109.99,2019-05-05 12:23:00,214 Madison St, San Francisco,CA,94016 +202610,27in 4K Gaming Monitor,1,389.99,2019-05-08 18:13:00,999 Forest St, New York City,NY,10001 +202611,iPhone,1,700.0,2019-05-16 14:10:00,836 Park St, Dallas,TX,75001 +202611,Wired Headphones,1,11.99,2019-05-16 14:10:00,836 Park St, Dallas,TX,75001 +202612,AAA Batteries (4-pack),3,2.99,2019-05-05 11:34:00,7 Jefferson St, Portland,OR,97035 +202613,Wired Headphones,1,11.99,2019-05-22 15:13:00,442 Church St, Atlanta,GA,30301 +202614,Bose SoundSport Headphones,1,99.99,2019-05-31 11:31:00,760 13th St, New York City,NY,10001 +202615,Lightning Charging Cable,1,14.95,2019-05-13 22:57:00,965 Meadow St, Atlanta,GA,30301 +202616,AA Batteries (4-pack),1,3.84,2019-05-28 19:10:00,889 Lincoln St, Dallas,TX,75001 +202617,iPhone,1,700.0,2019-05-01 20:54:00,38 Jackson St, Boston,MA,02215 +202618,27in FHD Monitor,1,149.99,2019-05-25 23:32:00,376 Washington St, Portland,OR,97035 +202619,Wired Headphones,1,11.99,2019-05-21 18:13:00,409 Cherry St, Portland,OR,97035 +202620,20in Monitor,1,109.99,2019-05-03 00:08:00,54 Willow St, Los Angeles,CA,90001 +202621,Apple Airpods Headphones,1,150.0,2019-05-12 11:43:00,996 8th St, Los Angeles,CA,90001 +202622,Wired Headphones,2,11.99,2019-05-25 18:04:00,49 Willow St, Dallas,TX,75001 +202623,Apple Airpods Headphones,1,150.0,2019-05-14 09:47:00,285 Lincoln St, Atlanta,GA,30301 +202623,Bose SoundSport Headphones,1,99.99,2019-05-14 09:47:00,285 Lincoln St, Atlanta,GA,30301 +202624,ThinkPad Laptop,1,999.99,2019-05-01 07:19:00,671 7th St, Boston,MA,02215 +202625,Wired Headphones,1,11.99,2019-05-27 18:23:00,412 Ridge St, New York City,NY,10001 +202626,34in Ultrawide Monitor,1,379.99,2019-05-04 20:44:00,24 14th St, Atlanta,GA,30301 +202627,Wired Headphones,1,11.99,2019-05-05 21:24:00,235 Pine St, Atlanta,GA,30301 +202628,Lightning Charging Cable,1,14.95,2019-05-15 14:39:00,549 11th St, Los Angeles,CA,90001 +202629,34in Ultrawide Monitor,1,379.99,2019-05-14 12:47:00,951 6th St, Los Angeles,CA,90001 +202630,AA Batteries (4-pack),1,3.84,2019-05-20 11:41:00,360 Jefferson St, Dallas,TX,75001 +202631,Wired Headphones,1,11.99,2019-05-14 14:55:00,808 13th St, New York City,NY,10001 +202632,20in Monitor,1,109.99,2019-05-30 22:58:00,582 Highland St, Los Angeles,CA,90001 +202633,AAA Batteries (4-pack),1,2.99,2019-05-01 20:49:00,473 10th St, Austin,TX,73301 +202634,Bose SoundSport Headphones,1,99.99,2019-05-04 19:13:00,682 Forest St, Los Angeles,CA,90001 +202635,USB-C Charging Cable,1,11.95,2019-05-12 11:53:00,550 North St, San Francisco,CA,94016 +202636,Bose SoundSport Headphones,1,99.99,2019-05-26 18:29:00,575 Hill St, Dallas,TX,75001 +202637,Wired Headphones,1,11.99,2019-05-29 14:42:00,472 Johnson St, New York City,NY,10001 +202638,Wired Headphones,1,11.99,2019-05-27 13:26:00,313 Willow St, Los Angeles,CA,90001 +202639,AAA Batteries (4-pack),1,2.99,2019-05-05 17:56:00,573 10th St, San Francisco,CA,94016 +202640,Bose SoundSport Headphones,1,99.99,2019-05-29 14:39:00,315 Forest St, Atlanta,GA,30301 +202641,Lightning Charging Cable,1,14.95,2019-05-30 16:05:00,591 Dogwood St, Atlanta,GA,30301 +202642,AAA Batteries (4-pack),1,2.99,2019-05-13 21:35:00,101 Forest St, New York City,NY,10001 +202643,USB-C Charging Cable,1,11.95,2019-05-01 19:25:00,230 Lakeview St, Dallas,TX,75001 +202644,27in 4K Gaming Monitor,1,389.99,2019-05-14 11:10:00,385 14th St, Atlanta,GA,30301 +202645,Lightning Charging Cable,1,14.95,2019-05-23 16:11:00,515 Hill St, Dallas,TX,75001 +202646,Lightning Charging Cable,1,14.95,2019-05-08 19:31:00,581 Cherry St, Seattle,WA,98101 +202647,Apple Airpods Headphones,1,150.0,2019-05-02 15:22:00,509 Main St, Boston,MA,02215 +202648,AAA Batteries (4-pack),3,2.99,2019-05-23 15:56:00,124 Center St, New York City,NY,10001 +202649,34in Ultrawide Monitor,1,379.99,2019-05-22 19:06:00,271 5th St, Atlanta,GA,30301 +202650,Lightning Charging Cable,1,14.95,2019-05-16 17:59:00,159 7th St, Dallas,TX,75001 +202651,Google Phone,1,600.0,2019-05-29 19:29:00,815 1st St, New York City,NY,10001 +202652,AA Batteries (4-pack),1,3.84,2019-05-14 16:55:00,612 Sunset St, Seattle,WA,98101 +202653,Lightning Charging Cable,1,14.95,2019-05-16 22:36:00,609 Forest St, Boston,MA,02215 +202654,AAA Batteries (4-pack),1,2.99,2019-05-13 03:38:00,109 5th St, San Francisco,CA,94016 +202655,27in FHD Monitor,1,149.99,2019-05-27 18:52:00,212 Cherry St, San Francisco,CA,94016 +202656,Lightning Charging Cable,1,14.95,2019-05-18 14:56:00,526 14th St, New York City,NY,10001 +202657,ThinkPad Laptop,1,999.99,2019-05-22 14:34:00,821 Willow St, Seattle,WA,98101 +202658,Google Phone,1,600.0,2019-05-07 12:18:00,228 8th St, San Francisco,CA,94016 +202659,Flatscreen TV,1,300.0,2019-05-26 10:48:00,42 Spruce St, San Francisco,CA,94016 +202660,USB-C Charging Cable,1,11.95,2019-05-16 04:34:00,793 Wilson St, San Francisco,CA,94016 +202661,Macbook Pro Laptop,1,1700.0,2019-05-10 10:12:00,529 Hickory St, San Francisco,CA,94016 +202662,AA Batteries (4-pack),1,3.84,2019-05-24 19:07:00,664 4th St, Boston,MA,02215 +202663,Lightning Charging Cable,1,14.95,2019-05-13 13:17:00,97 12th St, Seattle,WA,98101 +202664,AA Batteries (4-pack),1,3.84,2019-05-24 13:29:00,27 11th St, Atlanta,GA,30301 +202665,20in Monitor,1,109.99,2019-05-15 23:17:00,476 Lakeview St, Portland,OR,97035 +202666,Flatscreen TV,1,300.0,2019-05-06 21:26:00,6 Ridge St, Boston,MA,02215 +202667,Lightning Charging Cable,1,14.95,2019-05-15 12:56:00,789 Jackson St, Boston,MA,02215 +202668,Wired Headphones,1,11.99,2019-05-31 19:03:00,585 Jackson St, Seattle,WA,98101 +202669,USB-C Charging Cable,1,11.95,2019-05-05 19:51:00,714 Walnut St, Dallas,TX,75001 +202670,Wired Headphones,1,11.99,2019-05-04 00:50:00,193 Dogwood St, Los Angeles,CA,90001 +202671,USB-C Charging Cable,1,11.95,2019-05-30 20:48:00,235 Chestnut St, Portland,OR,97035 +202672,AA Batteries (4-pack),1,3.84,2019-05-16 22:38:00,373 Highland St, San Francisco,CA,94016 +202673,USB-C Charging Cable,1,11.95,2019-05-13 14:30:00,907 North St, Los Angeles,CA,90001 +202674,AAA Batteries (4-pack),1,2.99,2019-05-28 09:12:00,342 Madison St, Los Angeles,CA,90001 +202675,iPhone,1,700.0,2019-05-18 16:51:00,972 12th St, Atlanta,GA,30301 +202676,Lightning Charging Cable,1,14.95,2019-05-25 08:08:00,528 Cherry St, Atlanta,GA,30301 +202677,ThinkPad Laptop,1,999.99,2019-05-08 11:47:00,634 8th St, Portland,OR,97035 +202678,USB-C Charging Cable,2,11.95,2019-05-05 20:06:00,277 Johnson St, San Francisco,CA,94016 +202678,27in FHD Monitor,1,149.99,2019-05-05 20:06:00,277 Johnson St, San Francisco,CA,94016 +202679,iPhone,1,700.0,2019-05-06 22:15:00,702 Lakeview St, San Francisco,CA,94016 +202679,Wired Headphones,1,11.99,2019-05-06 22:15:00,702 Lakeview St, San Francisco,CA,94016 +202679,Lightning Charging Cable,1,14.95,2019-05-06 22:15:00,702 Lakeview St, San Francisco,CA,94016 +202680,27in 4K Gaming Monitor,1,389.99,2019-05-18 20:25:00,787 South St, New York City,NY,10001 +202681,27in 4K Gaming Monitor,1,389.99,2019-05-10 12:57:00,844 Hill St, Portland,OR,97035 +202682,34in Ultrawide Monitor,1,379.99,2019-05-24 11:36:00,568 Main St, Atlanta,GA,30301 +202683,iPhone,1,700.0,2019-05-02 18:51:00,934 Highland St, Seattle,WA,98101 +202684,Lightning Charging Cable,1,14.95,2019-05-08 19:46:00,283 Jackson St, Los Angeles,CA,90001 +202685,Lightning Charging Cable,1,14.95,2019-05-17 20:11:00,692 Main St, San Francisco,CA,94016 +202686,AA Batteries (4-pack),1,3.84,2019-05-31 21:28:00,608 1st St, Atlanta,GA,30301 +202687,Wired Headphones,1,11.99,2019-05-02 00:10:00,863 4th St, Los Angeles,CA,90001 +202688,Google Phone,1,600.0,2019-05-04 14:29:00,657 Sunset St, San Francisco,CA,94016 +202689,USB-C Charging Cable,1,11.95,2019-05-10 17:34:00,248 Chestnut St, San Francisco,CA,94016 +202690,ThinkPad Laptop,1,999.99,2019-05-24 13:37:00,656 Sunset St, San Francisco,CA,94016 +202691,AAA Batteries (4-pack),1,2.99,2019-05-21 19:24:00,228 Main St, New York City,NY,10001 +202692,34in Ultrawide Monitor,1,379.99,2019-05-01 13:12:00,715 Walnut St, New York City,NY,10001 +202693,iPhone,1,700.0,2019-05-31 14:37:00,508 Spruce St, New York City,NY,10001 +202694,Flatscreen TV,1,300.0,2019-05-30 15:41:00,222 Lakeview St, Los Angeles,CA,90001 +202695,Wired Headphones,2,11.99,2019-05-20 18:59:00,886 Church St, San Francisco,CA,94016 +202696,Bose SoundSport Headphones,1,99.99,2019-05-04 16:18:00,461 11th St, New York City,NY,10001 +202697,Wired Headphones,1,11.99,2019-05-28 09:06:00,995 8th St, Boston,MA,02215 +202698,Lightning Charging Cable,1,14.95,2019-05-08 18:15:00,392 Lakeview St, San Francisco,CA,94016 +202699,AAA Batteries (4-pack),2,2.99,2019-05-11 10:46:00,812 West St, Seattle,WA,98101 +202700,Apple Airpods Headphones,1,150.0,2019-05-02 10:13:00,30 Chestnut St, San Francisco,CA,94016 +202701,27in 4K Gaming Monitor,1,389.99,2019-05-30 19:08:00,580 Wilson St, New York City,NY,10001 +202702,AAA Batteries (4-pack),2,2.99,2019-05-20 15:49:00,471 Jackson St, Atlanta,GA,30301 +202703,AAA Batteries (4-pack),1,2.99,2019-05-03 00:11:00,662 Sunset St, Dallas,TX,75001 +202704,27in FHD Monitor,1,149.99,2019-05-24 08:15:00,726 Forest St, San Francisco,CA,94016 +202705,Lightning Charging Cable,1,14.95,2019-05-04 17:21:00,125 7th St, San Francisco,CA,94016 +202706,USB-C Charging Cable,1,11.95,2019-05-27 09:43:00,75 Ridge St, New York City,NY,10001 +202707,Bose SoundSport Headphones,1,99.99,2019-05-23 11:45:00,688 Jefferson St, San Francisco,CA,94016 +202708,AA Batteries (4-pack),1,3.84,2019-05-04 19:24:00,758 North St, Los Angeles,CA,90001 +202709,USB-C Charging Cable,1,11.95,2019-05-03 16:48:00,769 Forest St, New York City,NY,10001 +202710,Macbook Pro Laptop,1,1700.0,2019-05-11 08:09:00,961 Willow St, New York City,NY,10001 +202711,Macbook Pro Laptop,1,1700.0,2019-05-27 21:12:00,116 10th St, New York City,NY,10001 +202712,34in Ultrawide Monitor,1,379.99,2019-05-18 11:48:00,787 South St, Boston,MA,02215 +202713,AAA Batteries (4-pack),4,2.99,2019-05-06 19:24:00,944 Center St, New York City,NY,10001 +202714,USB-C Charging Cable,1,11.95,2019-05-01 09:25:00,266 8th St, Boston,MA,02215 +202715,AAA Batteries (4-pack),1,2.99,2019-05-06 14:23:00,23 Highland St, New York City,NY,10001 +202716,Wired Headphones,1,11.99,2019-05-19 23:53:00,960 6th St, Los Angeles,CA,90001 +202717,Bose SoundSport Headphones,1,99.99,2019-05-31 06:25:00,731 Spruce St, Dallas,TX,75001 +202718,AAA Batteries (4-pack),1,2.99,2019-05-26 22:33:00,933 Washington St, Atlanta,GA,30301 +202719,USB-C Charging Cable,1,11.95,2019-05-04 09:47:00,617 Chestnut St, Los Angeles,CA,90001 +202720,Macbook Pro Laptop,1,1700.0,2019-05-27 20:43:00,829 Maple St, San Francisco,CA,94016 +202721,AAA Batteries (4-pack),2,2.99,2019-05-24 21:11:00,815 6th St, New York City,NY,10001 +202722,34in Ultrawide Monitor,1,379.99,2019-05-27 00:51:00,468 12th St, Boston,MA,02215 +202723,Lightning Charging Cable,1,14.95,2019-05-11 13:00:00,214 11th St, New York City,NY,10001 +202724,AA Batteries (4-pack),1,3.84,2019-05-24 11:59:00,317 1st St, New York City,NY,10001 +202725,Macbook Pro Laptop,1,1700.0,2019-05-30 14:06:00,882 Park St, San Francisco,CA,94016 +202726,34in Ultrawide Monitor,1,379.99,2019-05-19 10:33:00,186 Elm St, Dallas,TX,75001 +202727,USB-C Charging Cable,1,11.95,2019-05-14 19:11:00,548 River St, Austin,TX,73301 +202728,Google Phone,1,600.0,2019-05-13 23:26:00,894 Hickory St, San Francisco,CA,94016 +202729,AAA Batteries (4-pack),3,2.99,2019-05-26 18:18:00,32 North St, Dallas,TX,75001 +202730,Lightning Charging Cable,1,14.95,2019-05-25 10:26:00,6 Spruce St, San Francisco,CA,94016 +202731,USB-C Charging Cable,2,11.95,2019-05-14 21:31:00,734 5th St, Seattle,WA,98101 +202732,Wired Headphones,1,11.99,2019-05-16 00:42:00,3 Wilson St, San Francisco,CA,94016 +202733,AA Batteries (4-pack),1,3.84,2019-05-20 10:08:00,507 Lakeview St, Dallas,TX,75001 +202734,USB-C Charging Cable,1,11.95,2019-05-23 01:53:00,28 2nd St, Portland,OR,97035 +202735,27in 4K Gaming Monitor,1,389.99,2019-05-24 02:06:00,30 Chestnut St, Portland,OR,97035 +202736,34in Ultrawide Monitor,1,379.99,2019-05-07 21:22:00,170 Dogwood St, Boston,MA,02215 +202737,ThinkPad Laptop,1,999.99,2019-05-25 09:11:00,470 Ridge St, Portland,ME,04101 +202738,27in FHD Monitor,1,149.99,2019-05-07 08:58:00,377 Main St, Austin,TX,73301 +202739,Google Phone,1,600.0,2019-05-06 10:35:00,735 Spruce St, San Francisco,CA,94016 +202740,Wired Headphones,1,11.99,2019-05-01 18:27:00,434 11th St, New York City,NY,10001 +202741,Lightning Charging Cable,2,14.95,2019-05-28 15:22:00,76 Jefferson St, New York City,NY,10001 +202742,34in Ultrawide Monitor,1,379.99,2019-05-01 11:14:00,842 Willow St, Los Angeles,CA,90001 +202743,27in 4K Gaming Monitor,1,389.99,2019-05-09 14:51:00,871 14th St, Boston,MA,02215 +202744,AAA Batteries (4-pack),1,2.99,2019-05-19 19:34:00,578 Johnson St, Boston,MA,02215 +202745,AAA Batteries (4-pack),3,2.99,2019-05-26 07:21:00,301 Jefferson St, Los Angeles,CA,90001 +202746,Lightning Charging Cable,1,14.95,2019-05-15 19:17:00,865 Cedar St, San Francisco,CA,94016 +202747,ThinkPad Laptop,1,999.99,2019-05-11 19:15:00,228 Jefferson St, Dallas,TX,75001 +202748,AAA Batteries (4-pack),1,2.99,2019-05-15 16:45:00,268 Hill St, Boston,MA,02215 +202749,Apple Airpods Headphones,1,150.0,2019-05-19 18:56:00,734 Jefferson St, Los Angeles,CA,90001 +202750,USB-C Charging Cable,1,11.95,2019-05-31 07:45:00,407 Dogwood St, Los Angeles,CA,90001 +202751,USB-C Charging Cable,1,11.95,2019-05-12 11:47:00,996 Willow St, New York City,NY,10001 +202752,USB-C Charging Cable,1,11.95,2019-05-26 12:20:00,33 Jackson St, Dallas,TX,75001 +202753,AA Batteries (4-pack),1,3.84,2019-05-07 09:30:00,308 Park St, Boston,MA,02215 +202754,Google Phone,1,600.0,2019-05-16 20:28:00,193 Pine St, Seattle,WA,98101 +202754,USB-C Charging Cable,1,11.95,2019-05-16 20:28:00,193 Pine St, Seattle,WA,98101 +202754,Bose SoundSport Headphones,1,99.99,2019-05-16 20:28:00,193 Pine St, Seattle,WA,98101 +202755,20in Monitor,1,109.99,2019-05-20 13:44:00,300 Cedar St, Los Angeles,CA,90001 +202756,iPhone,1,700.0,2019-05-17 14:24:00,277 2nd St, San Francisco,CA,94016 +202757,AAA Batteries (4-pack),1,2.99,2019-05-06 20:33:00,853 Johnson St, Los Angeles,CA,90001 +202758,Apple Airpods Headphones,1,150.0,2019-05-20 21:42:00,659 Lakeview St, Los Angeles,CA,90001 +202759,AAA Batteries (4-pack),2,2.99,2019-05-15 20:44:00,424 5th St, San Francisco,CA,94016 +202760,AAA Batteries (4-pack),1,2.99,2019-05-05 11:16:00,860 Sunset St, Dallas,TX,75001 +202761,AA Batteries (4-pack),1,3.84,2019-05-17 11:55:00,354 Spruce St, Boston,MA,02215 +202762,Lightning Charging Cable,1,14.95,2019-05-26 14:12:00,974 Elm St, Portland,OR,97035 +202763,Apple Airpods Headphones,1,150.0,2019-05-06 23:37:00,945 Chestnut St, New York City,NY,10001 +202764,AA Batteries (4-pack),1,3.84,2019-05-09 06:52:00,939 Madison St, Los Angeles,CA,90001 +202765,iPhone,1,700.0,2019-05-15 18:44:00,262 Park St, Boston,MA,02215 +202765,Lightning Charging Cable,1,14.95,2019-05-15 18:44:00,262 Park St, Boston,MA,02215 +202765,USB-C Charging Cable,1,11.95,2019-05-15 18:44:00,262 Park St, Boston,MA,02215 +202766,Flatscreen TV,1,300.0,2019-05-24 22:33:00,559 Elm St, San Francisco,CA,94016 +202767,Lightning Charging Cable,1,14.95,2019-05-20 11:16:00,752 Walnut St, New York City,NY,10001 +202768,34in Ultrawide Monitor,1,379.99,2019-05-16 22:28:00,845 Elm St, Seattle,WA,98101 +202769,Apple Airpods Headphones,1,150.0,2019-05-23 17:47:00,832 Center St, Los Angeles,CA,90001 +202770,Lightning Charging Cable,1,14.95,2019-05-19 08:11:00,652 13th St, San Francisco,CA,94016 +202771,AA Batteries (4-pack),2,3.84,2019-05-04 23:30:00,622 Jefferson St, San Francisco,CA,94016 +202772,AA Batteries (4-pack),1,3.84,2019-05-19 23:40:00,947 South St, New York City,NY,10001 +202773,USB-C Charging Cable,1,11.95,2019-05-24 15:45:00,632 Park St, New York City,NY,10001 +202774,AAA Batteries (4-pack),2,2.99,2019-05-20 09:29:00,967 West St, Atlanta,GA,30301 +202775,Flatscreen TV,1,300.0,2019-05-17 18:16:00,617 Madison St, New York City,NY,10001 +202776,Apple Airpods Headphones,1,150.0,2019-05-03 18:33:00,219 Elm St, Los Angeles,CA,90001 +202777,Wired Headphones,1,11.99,2019-05-06 18:58:00,171 West St, Seattle,WA,98101 +202778,AAA Batteries (4-pack),2,2.99,2019-05-29 02:20:00,789 Cedar St, New York City,NY,10001 +202779,27in FHD Monitor,1,149.99,2019-05-10 11:10:00,967 Madison St, New York City,NY,10001 +202780,27in FHD Monitor,1,149.99,2019-05-24 17:00:00,149 Elm St, Boston,MA,02215 +202781,Wired Headphones,1,11.99,2019-05-05 21:57:00,842 Maple St, Los Angeles,CA,90001 +202782,AAA Batteries (4-pack),1,2.99,2019-05-30 13:26:00,473 14th St, New York City,NY,10001 +202783,Flatscreen TV,1,300.0,2019-05-14 17:39:00,671 Center St, Los Angeles,CA,90001 +202783,Macbook Pro Laptop,1,1700.0,2019-05-14 17:39:00,671 Center St, Los Angeles,CA,90001 +202784,Lightning Charging Cable,1,14.95,2019-05-29 19:48:00,406 Cedar St, Los Angeles,CA,90001 +202785,USB-C Charging Cable,1,11.95,2019-05-21 01:25:00,981 Forest St, Los Angeles,CA,90001 +202786,Google Phone,1,600.0,2019-05-24 18:46:00,535 Washington St, New York City,NY,10001 +202787,Bose SoundSport Headphones,1,99.99,2019-05-14 03:42:00,536 Dogwood St, Dallas,TX,75001 +202788,Flatscreen TV,1,300.0,2019-05-14 16:29:00,370 Lake St, Los Angeles,CA,90001 +202789,Bose SoundSport Headphones,1,99.99,2019-05-20 18:18:00,741 Hickory St, Atlanta,GA,30301 +202790,AAA Batteries (4-pack),1,2.99,2019-05-31 11:22:00,658 Park St, New York City,NY,10001 +202791,AA Batteries (4-pack),1,3.84,2019-05-27 22:07:00,232 Wilson St, Boston,MA,02215 +202792,AA Batteries (4-pack),1,3.84,2019-05-27 17:01:00,769 Johnson St, Portland,OR,97035 +202793,AAA Batteries (4-pack),1,2.99,2019-05-11 19:06:00,858 Lake St, San Francisco,CA,94016 +202794,Apple Airpods Headphones,1,150.0,2019-05-26 20:30:00,285 Forest St, San Francisco,CA,94016 +202795,USB-C Charging Cable,1,11.95,2019-05-11 14:18:00,884 Forest St, New York City,NY,10001 +202796,27in FHD Monitor,1,149.99,2019-05-07 15:08:00,451 12th St, New York City,NY,10001 +202797,AA Batteries (4-pack),2,3.84,2019-05-19 07:45:00,766 Cedar St, Atlanta,GA,30301 +202798,AA Batteries (4-pack),1,3.84,2019-05-13 16:24:00,187 Elm St, New York City,NY,10001 +202799,AA Batteries (4-pack),1,3.84,2019-05-28 03:59:00,870 8th St, New York City,NY,10001 +202800,USB-C Charging Cable,1,11.95,2019-05-09 22:26:00,853 Main St, Austin,TX,73301 +202801,Bose SoundSport Headphones,1,99.99,2019-05-14 08:48:00,882 1st St, Atlanta,GA,30301 +202802,AA Batteries (4-pack),1,3.84,2019-05-15 11:58:00,501 Forest St, Los Angeles,CA,90001 +202803,USB-C Charging Cable,1,11.95,2019-05-13 10:44:00,470 Spruce St, Los Angeles,CA,90001 +202804,AA Batteries (4-pack),1,3.84,2019-05-14 22:05:00,882 Walnut St, New York City,NY,10001 +202805,Wired Headphones,1,11.99,2019-05-09 22:45:00,509 Wilson St, New York City,NY,10001 +202806,20in Monitor,1,109.99,2019-05-08 10:03:00,961 North St, Dallas,TX,75001 +202807,Bose SoundSport Headphones,1,99.99,2019-05-04 09:54:00,392 Hill St, San Francisco,CA,94016 +202808,AAA Batteries (4-pack),1,2.99,2019-05-05 11:49:00,52 Chestnut St, San Francisco,CA,94016 +202809,AAA Batteries (4-pack),1,2.99,2019-05-31 21:18:00,514 Jefferson St, New York City,NY,10001 +202810,AAA Batteries (4-pack),1,2.99,2019-05-04 08:49:00,599 Willow St, Seattle,WA,98101 +202811,Apple Airpods Headphones,1,150.0,2019-05-07 23:04:00,692 Lake St, New York City,NY,10001 +202811,Wired Headphones,1,11.99,2019-05-07 23:04:00,692 Lake St, New York City,NY,10001 +202812,AAA Batteries (4-pack),1,2.99,2019-05-26 22:37:00,161 Ridge St, Boston,MA,02215 +202813,Wired Headphones,1,11.99,2019-05-25 18:33:00,56 Dogwood St, Los Angeles,CA,90001 +202814,ThinkPad Laptop,1,999.99,2019-05-25 15:09:00,811 Hill St, Los Angeles,CA,90001 +202815,AA Batteries (4-pack),1,3.84,2019-05-03 11:49:00,222 Wilson St, Seattle,WA,98101 +202816,Wired Headphones,1,11.99,2019-05-13 15:33:00,427 South St, San Francisco,CA,94016 +202817,27in FHD Monitor,1,149.99,2019-05-12 18:11:00,47 Spruce St, Los Angeles,CA,90001 +202818,27in 4K Gaming Monitor,1,389.99,2019-05-12 17:16:00,687 2nd St, New York City,NY,10001 +202819,Bose SoundSport Headphones,1,99.99,2019-05-02 22:01:00,982 Highland St, Los Angeles,CA,90001 +202820,Flatscreen TV,1,300.0,2019-05-28 18:15:00,220 Sunset St, Dallas,TX,75001 +202821,Lightning Charging Cable,1,14.95,2019-05-25 13:07:00,134 River St, Seattle,WA,98101 +202822,Lightning Charging Cable,1,14.95,2019-05-07 19:37:00,377 4th St, San Francisco,CA,94016 +202823,Bose SoundSport Headphones,1,99.99,2019-05-16 23:39:00,180 14th St, New York City,NY,10001 +202824,Google Phone,1,600.0,2019-05-08 10:09:00,514 Maple St, Dallas,TX,75001 +202825,AAA Batteries (4-pack),2,2.99,2019-05-14 17:23:00,831 River St, Atlanta,GA,30301 +202826,AAA Batteries (4-pack),2,2.99,2019-05-23 17:24:00,894 Maple St, Atlanta,GA,30301 +202827,Bose SoundSport Headphones,1,99.99,2019-05-16 10:02:00,428 6th St, Seattle,WA,98101 +202828,AAA Batteries (4-pack),1,2.99,2019-05-04 14:37:00,840 Johnson St, Los Angeles,CA,90001 +202829,iPhone,1,700.0,2019-05-17 07:00:00,598 Jackson St, Dallas,TX,75001 +202830,iPhone,1,700.0,2019-05-16 11:13:00,109 Washington St, New York City,NY,10001 +202831,Flatscreen TV,1,300.0,2019-05-27 17:37:00,56 Hickory St, San Francisco,CA,94016 +202832,Wired Headphones,1,11.99,2019-05-04 20:57:00,251 Madison St, Dallas,TX,75001 +202833,Lightning Charging Cable,1,14.95,2019-05-12 11:33:00,737 Cedar St, Boston,MA,02215 +202834,AA Batteries (4-pack),1,3.84,2019-05-09 18:55:00,404 Chestnut St, San Francisco,CA,94016 +202835,AAA Batteries (4-pack),1,2.99,2019-05-26 22:53:00,655 13th St, Dallas,TX,75001 +202836,AAA Batteries (4-pack),1,2.99,2019-05-12 23:38:00,888 14th St, New York City,NY,10001 +202837,USB-C Charging Cable,1,11.95,2019-05-26 12:15:00,617 Jackson St, Dallas,TX,75001 +202838,Vareebadd Phone,1,400.0,2019-05-25 13:08:00,379 Walnut St, Los Angeles,CA,90001 +202839,Apple Airpods Headphones,1,150.0,2019-05-30 07:42:00,571 Main St, San Francisco,CA,94016 +202840,AA Batteries (4-pack),1,3.84,2019-05-19 12:42:00,479 Elm St, New York City,NY,10001 +202841,Apple Airpods Headphones,1,150.0,2019-05-18 19:02:00,979 Meadow St, San Francisco,CA,94016 +202842,Wired Headphones,1,11.99,2019-05-29 14:45:00,808 Jefferson St, Atlanta,GA,30301 +202842,USB-C Charging Cable,1,11.95,2019-05-29 14:45:00,808 Jefferson St, Atlanta,GA,30301 +202843,AAA Batteries (4-pack),1,2.99,2019-05-01 20:24:00,681 North St, San Francisco,CA,94016 +202844,34in Ultrawide Monitor,1,379.99,2019-05-26 12:17:00,655 Center St, Seattle,WA,98101 +202845,USB-C Charging Cable,1,11.95,2019-05-21 23:34:00,864 9th St, Austin,TX,73301 +202846,AAA Batteries (4-pack),1,2.99,2019-05-20 14:03:00,510 1st St, San Francisco,CA,94016 +202847,AAA Batteries (4-pack),2,2.99,2019-05-14 23:57:00,448 Madison St, Seattle,WA,98101 +202848,AAA Batteries (4-pack),1,2.99,2019-05-15 20:27:00,790 Washington St, Boston,MA,02215 +202849,Bose SoundSport Headphones,1,99.99,2019-05-14 11:36:00,704 14th St, New York City,NY,10001 +202850,27in 4K Gaming Monitor,1,389.99,2019-05-18 16:24:00,105 West St, Boston,MA,02215 +202851,USB-C Charging Cable,1,11.95,2019-05-15 09:53:00,797 River St, Portland,ME,04101 +202852,27in FHD Monitor,1,149.99,2019-05-24 11:00:00,544 8th St, Austin,TX,73301 +202853,LG Dryer,1,600.0,2019-05-18 11:16:00,645 5th St, New York City,NY,10001 +202854,Lightning Charging Cable,1,14.95,2019-05-23 09:36:00,140 Johnson St, Dallas,TX,75001 +202855,AAA Batteries (4-pack),1,2.99,2019-05-14 10:56:00,298 Sunset St, Los Angeles,CA,90001 +202856,Bose SoundSport Headphones,1,99.99,2019-05-30 16:08:00,501 9th St, New York City,NY,10001 +202857,Macbook Pro Laptop,1,1700.0,2019-05-13 11:21:00,151 Highland St, New York City,NY,10001 +202858,Bose SoundSport Headphones,1,99.99,2019-05-01 19:42:00,555 Chestnut St, San Francisco,CA,94016 +202859,Apple Airpods Headphones,1,150.0,2019-05-27 04:33:00,572 Pine St, Seattle,WA,98101 +202860,Google Phone,1,600.0,2019-05-25 10:00:00,961 River St, New York City,NY,10001 +202861,AAA Batteries (4-pack),1,2.99,2019-05-23 19:50:00,674 Lakeview St, Seattle,WA,98101 +202862,USB-C Charging Cable,1,11.95,2019-05-02 09:09:00,791 Forest St, Boston,MA,02215 +202863,USB-C Charging Cable,1,11.95,2019-05-20 16:57:00,243 Hill St, Dallas,TX,75001 +202864,USB-C Charging Cable,1,11.95,2019-05-18 15:51:00,715 West St, San Francisco,CA,94016 +202865,AAA Batteries (4-pack),1,2.99,2019-05-26 17:46:00,607 Main St, Los Angeles,CA,90001 +202866,USB-C Charging Cable,1,11.95,2019-05-25 20:50:00,66 Meadow St, Los Angeles,CA,90001 +202867,AAA Batteries (4-pack),2,2.99,2019-05-19 05:08:00,759 11th St, Boston,MA,02215 +202868,Lightning Charging Cable,1,14.95,2019-05-31 09:15:00,351 Maple St, San Francisco,CA,94016 +202869,LG Washing Machine,1,600.0,2019-05-30 19:58:00,997 Meadow St, Dallas,TX,75001 +202870,27in FHD Monitor,1,149.99,2019-05-16 01:37:00,45 Jefferson St, San Francisco,CA,94016 +202871,USB-C Charging Cable,1,11.95,2019-05-23 20:28:00,442 12th St, Austin,TX,73301 +202872,AAA Batteries (4-pack),1,2.99,2019-05-04 16:44:00,356 Cherry St, New York City,NY,10001 +202873,iPhone,1,700.0,2019-05-26 17:02:00,594 Johnson St, Los Angeles,CA,90001 +202874,Lightning Charging Cable,3,14.95,2019-05-12 21:14:00,963 4th St, San Francisco,CA,94016 +202875,Wired Headphones,1,11.99,2019-05-05 17:04:00,78 Jefferson St, Dallas,TX,75001 +202876,34in Ultrawide Monitor,1,379.99,2019-05-22 17:53:00,718 River St, Los Angeles,CA,90001 +202877,Apple Airpods Headphones,1,150.0,2019-05-07 14:10:00,236 Jefferson St, Los Angeles,CA,90001 +202878,27in FHD Monitor,1,149.99,2019-05-29 19:34:00,603 12th St, Boston,MA,02215 +202879,Macbook Pro Laptop,1,1700.0,2019-05-24 19:17:00,501 Cherry St, San Francisco,CA,94016 +202880,AAA Batteries (4-pack),2,2.99,2019-05-14 13:41:00,613 Elm St, San Francisco,CA,94016 +202881,Lightning Charging Cable,1,14.95,2019-05-01 16:05:00,173 Forest St, New York City,NY,10001 +202882,iPhone,1,700.0,2019-05-03 16:22:00,694 South St, New York City,NY,10001 +202883,ThinkPad Laptop,1,999.99,2019-05-29 16:07:00,450 Cherry St, Boston,MA,02215 +202884,Apple Airpods Headphones,1,150.0,2019-05-21 18:33:00,643 Cedar St, San Francisco,CA,94016 +202885,Apple Airpods Headphones,1,150.0,2019-05-10 17:36:00,5 West St, Los Angeles,CA,90001 +202886,27in 4K Gaming Monitor,1,389.99,2019-05-24 14:27:00,639 South St, San Francisco,CA,94016 +202887,Wired Headphones,1,11.99,2019-05-03 13:44:00,968 Johnson St, San Francisco,CA,94016 +202888,USB-C Charging Cable,1,11.95,2019-05-14 13:06:00,726 Main St, Los Angeles,CA,90001 +202889,Lightning Charging Cable,1,14.95,2019-05-29 13:19:00,286 8th St, Dallas,TX,75001 +202890,27in FHD Monitor,1,149.99,2019-05-05 16:01:00,543 Spruce St, Los Angeles,CA,90001 +202891,Wired Headphones,2,11.99,2019-05-30 22:54:00,829 12th St, New York City,NY,10001 +202892,AAA Batteries (4-pack),1,2.99,2019-05-22 22:18:00,472 Walnut St, Boston,MA,02215 +202893,Bose SoundSport Headphones,1,99.99,2019-05-12 08:21:00,107 Washington St, Los Angeles,CA,90001 +202894,Lightning Charging Cable,1,14.95,2019-05-31 09:56:00,862 Walnut St, San Francisco,CA,94016 +202895,Wired Headphones,1,11.99,2019-05-13 20:40:00,636 Hickory St, Los Angeles,CA,90001 +202896,Bose SoundSport Headphones,1,99.99,2019-05-29 18:33:00,737 Hill St, Portland,OR,97035 +202897,Lightning Charging Cable,1,14.95,2019-05-20 21:18:00,751 11th St, San Francisco,CA,94016 +202898,AA Batteries (4-pack),6,3.84,2019-05-14 17:47:00,276 2nd St, San Francisco,CA,94016 +202899,AAA Batteries (4-pack),1,2.99,2019-05-11 22:20:00,352 Highland St, San Francisco,CA,94016 +202900,USB-C Charging Cable,1,11.95,2019-05-04 17:31:00,278 Cedar St, Los Angeles,CA,90001 +202901,Lightning Charging Cable,1,14.95,2019-05-26 19:48:00,737 Meadow St, Portland,OR,97035 +202902,AAA Batteries (4-pack),7,2.99,2019-05-23 19:58:00,901 Chestnut St, Boston,MA,02215 +202903,Apple Airpods Headphones,1,150.0,2019-05-04 12:33:00,593 4th St, Seattle,WA,98101 +202904,iPhone,1,700.0,2019-05-05 19:47:00,979 11th St, San Francisco,CA,94016 +202905,AAA Batteries (4-pack),2,2.99,2019-05-02 11:56:00,835 Ridge St, San Francisco,CA,94016 +202906,20in Monitor,1,109.99,2019-05-09 12:13:00,785 11th St, Dallas,TX,75001 +202906,Macbook Pro Laptop,1,1700.0,2019-05-09 12:13:00,785 11th St, Dallas,TX,75001 +202907,AA Batteries (4-pack),2,3.84,2019-05-03 15:54:00,156 Madison St, Los Angeles,CA,90001 +202908,USB-C Charging Cable,1,11.95,2019-05-13 07:55:00,149 6th St, San Francisco,CA,94016 +202909,Bose SoundSport Headphones,1,99.99,2019-05-07 14:56:00,438 10th St, Atlanta,GA,30301 +202910,iPhone,1,700.0,2019-05-25 12:42:00,654 Highland St, Los Angeles,CA,90001 +202910,Lightning Charging Cable,1,14.95,2019-05-25 12:42:00,654 Highland St, Los Angeles,CA,90001 +202911,AAA Batteries (4-pack),1,2.99,2019-05-17 18:17:00,594 Meadow St, Atlanta,GA,30301 +202912,ThinkPad Laptop,1,999.99,2019-05-16 11:15:00,728 Washington St, Portland,ME,04101 +202913,AA Batteries (4-pack),1,3.84,2019-05-02 18:43:00,251 North St, Atlanta,GA,30301 +202914,USB-C Charging Cable,1,11.95,2019-05-08 20:55:00,464 Johnson St, New York City,NY,10001 +202915,Flatscreen TV,1,300.0,2019-05-13 16:29:00,109 1st St, Atlanta,GA,30301 +202916,USB-C Charging Cable,1,11.95,2019-05-01 17:07:00,337 Madison St, New York City,NY,10001 +202917,Flatscreen TV,1,300.0,2019-05-06 19:42:00,444 North St, New York City,NY,10001 +202918,Apple Airpods Headphones,1,150.0,2019-05-24 22:08:00,550 Wilson St, Boston,MA,02215 +202919,Flatscreen TV,1,300.0,2019-05-01 16:51:00,382 Lake St, Boston,MA,02215 +202919,USB-C Charging Cable,1,11.95,2019-05-01 16:51:00,382 Lake St, Boston,MA,02215 +202920,USB-C Charging Cable,1,11.95,2019-05-19 20:29:00,775 Lake St, Austin,TX,73301 +202921,AA Batteries (4-pack),1,3.84,2019-05-06 14:32:00,894 Jackson St, San Francisco,CA,94016 +202922,Apple Airpods Headphones,1,150.0,2019-05-01 12:40:00,408 Lake St, San Francisco,CA,94016 +202923,AA Batteries (4-pack),1,3.84,2019-05-09 18:29:00,476 Meadow St, Boston,MA,02215 +202924,27in 4K Gaming Monitor,1,389.99,2019-05-06 12:59:00,586 1st St, Portland,OR,97035 +202925,Lightning Charging Cable,1,14.95,2019-05-29 21:43:00,334 Highland St, Portland,OR,97035 +202925,Lightning Charging Cable,2,14.95,2019-05-29 21:43:00,334 Highland St, Portland,OR,97035 +202926,USB-C Charging Cable,1,11.95,2019-05-02 10:34:00,484 2nd St, San Francisco,CA,94016 +202927,34in Ultrawide Monitor,1,379.99,2019-05-19 18:37:00,909 6th St, Boston,MA,02215 +202928,AA Batteries (4-pack),2,3.84,2019-05-19 12:43:00,859 Cedar St, Los Angeles,CA,90001 +202929,20in Monitor,1,109.99,2019-05-14 14:40:00,341 7th St, Boston,MA,02215 +202930,Flatscreen TV,1,300.0,2019-05-18 14:34:00,926 Park St, San Francisco,CA,94016 +202931,34in Ultrawide Monitor,1,379.99,2019-05-23 10:38:00,503 South St, Seattle,WA,98101 +202932,Apple Airpods Headphones,1,150.0,2019-05-20 14:32:00,426 South St, Seattle,WA,98101 +202933,Lightning Charging Cable,1,14.95,2019-05-31 06:14:00,975 Meadow St, Portland,OR,97035 +202934,USB-C Charging Cable,1,11.95,2019-05-20 08:40:00,817 Sunset St, Portland,OR,97035 +202935,USB-C Charging Cable,1,11.95,2019-05-10 16:10:00,869 Lincoln St, Los Angeles,CA,90001 +202936,AA Batteries (4-pack),2,3.84,2019-05-17 17:21:00,923 Church St, San Francisco,CA,94016 +202937,Apple Airpods Headphones,1,150.0,2019-05-12 13:29:00,30 Johnson St, Dallas,TX,75001 +202938,iPhone,1,700.0,2019-05-09 00:39:00,285 Dogwood St, Los Angeles,CA,90001 +202939,USB-C Charging Cable,1,11.95,2019-05-19 13:07:00,619 Center St, San Francisco,CA,94016 +202940,34in Ultrawide Monitor,1,379.99,2019-05-01 19:25:00,553 Madison St, San Francisco,CA,94016 +202941,Apple Airpods Headphones,1,150.0,2019-05-30 17:15:00,66 5th St, Los Angeles,CA,90001 +202942,iPhone,1,700.0,2019-05-19 16:18:00,566 Center St, San Francisco,CA,94016 +202943,27in FHD Monitor,1,149.99,2019-05-22 16:41:00,134 Madison St, Los Angeles,CA,90001 +202944,AAA Batteries (4-pack),2,2.99,2019-05-19 19:39:00,151 Cherry St, Los Angeles,CA,90001 +202945,Lightning Charging Cable,1,14.95,2019-05-29 04:00:00,984 Park St, Atlanta,GA,30301 +202946,Wired Headphones,2,11.99,2019-05-14 00:53:00,438 Wilson St, Los Angeles,CA,90001 +202947,AAA Batteries (4-pack),1,2.99,2019-05-16 11:21:00,95 10th St, Los Angeles,CA,90001 +202948,AA Batteries (4-pack),1,3.84,2019-05-21 21:07:00,429 1st St, Los Angeles,CA,90001 +202948,27in 4K Gaming Monitor,1,389.99,2019-05-21 21:07:00,429 1st St, Los Angeles,CA,90001 +202949,Wired Headphones,1,11.99,2019-05-17 13:06:00,182 Highland St, Boston,MA,02215 +202950,iPhone,1,700.0,2019-05-19 11:08:00,65 Lakeview St, San Francisco,CA,94016 +202950,Lightning Charging Cable,1,14.95,2019-05-19 11:08:00,65 Lakeview St, San Francisco,CA,94016 +202951,Wired Headphones,2,11.99,2019-05-25 01:29:00,660 7th St, Portland,OR,97035 +202952,Lightning Charging Cable,1,14.95,2019-05-12 21:03:00,902 Center St, New York City,NY,10001 +202953,27in FHD Monitor,1,149.99,2019-05-26 13:39:00,583 Jefferson St, New York City,NY,10001 +202954,AAA Batteries (4-pack),1,2.99,2019-05-20 09:25:00,905 8th St, Seattle,WA,98101 +202955,USB-C Charging Cable,1,11.95,2019-05-20 17:30:00,739 West St, San Francisco,CA,94016 +202956,Wired Headphones,1,11.99,2019-05-14 13:00:00,4 8th St, Los Angeles,CA,90001 +202957,27in 4K Gaming Monitor,1,389.99,2019-05-08 18:56:00,27 West St, Dallas,TX,75001 +202958,Lightning Charging Cable,1,14.95,2019-05-01 09:45:00,925 Lake St, Atlanta,GA,30301 +202959,27in FHD Monitor,1,149.99,2019-05-30 15:30:00,971 Church St, Atlanta,GA,30301 +202960,USB-C Charging Cable,1,11.95,2019-05-18 10:07:00,545 Hickory St, San Francisco,CA,94016 +202961,27in FHD Monitor,1,149.99,2019-05-25 19:03:00,297 Center St, Portland,ME,04101 +202962,AA Batteries (4-pack),2,3.84,2019-05-21 20:39:00,206 North St, Austin,TX,73301 +202963,Lightning Charging Cable,1,14.95,2019-05-15 10:18:00,642 Hill St, Seattle,WA,98101 +202964,Bose SoundSport Headphones,2,99.99,2019-05-13 13:18:00,274 Cherry St, Dallas,TX,75001 +202965,Wired Headphones,1,11.99,2019-05-06 18:20:00,436 Cedar St, Atlanta,GA,30301 +202966,Wired Headphones,1,11.99,2019-05-10 12:41:00,721 1st St, Los Angeles,CA,90001 +202967,Lightning Charging Cable,1,14.95,2019-05-14 20:16:00,335 River St, Dallas,TX,75001 +202968,Apple Airpods Headphones,1,150.0,2019-05-19 23:40:00,235 6th St, Portland,OR,97035 +202969,AAA Batteries (4-pack),1,2.99,2019-05-30 09:37:00,699 Wilson St, Boston,MA,02215 +202970,Lightning Charging Cable,1,14.95,2019-05-17 06:06:00,254 Adams St, Portland,OR,97035 +202971,iPhone,1,700.0,2019-05-05 21:04:00,170 Cherry St, Los Angeles,CA,90001 +202972,ThinkPad Laptop,1,999.99,2019-05-03 15:14:00,418 Cherry St, San Francisco,CA,94016 +202973,AA Batteries (4-pack),1,3.84,2019-05-21 13:16:00,973 Main St, Dallas,TX,75001 +202974,Wired Headphones,1,11.99,2019-05-27 15:00:00,827 Meadow St, New York City,NY,10001 +202975,27in FHD Monitor,1,149.99,2019-05-24 16:15:00,955 Cedar St, San Francisco,CA,94016 +202976,Google Phone,1,600.0,2019-05-01 19:08:00,662 Wilson St, Dallas,TX,75001 +202977,Apple Airpods Headphones,1,150.0,2019-05-17 09:02:00,18 Park St, Los Angeles,CA,90001 +202978,20in Monitor,1,109.99,2019-05-23 12:58:00,347 Pine St, San Francisco,CA,94016 +202979,Wired Headphones,1,11.99,2019-05-10 20:04:00,143 Forest St, Los Angeles,CA,90001 +202980,USB-C Charging Cable,1,11.95,2019-05-04 19:34:00,655 5th St, Los Angeles,CA,90001 +202981,Bose SoundSport Headphones,1,99.99,2019-05-24 06:20:00,261 Jefferson St, San Francisco,CA,94016 +202982,Bose SoundSport Headphones,1,99.99,2019-05-11 00:25:00,728 6th St, Portland,OR,97035 +202983,Wired Headphones,1,11.99,2019-05-29 17:54:00,204 River St, San Francisco,CA,94016 +202984,Wired Headphones,1,11.99,2019-05-24 06:38:00,258 7th St, Atlanta,GA,30301 +202985,AA Batteries (4-pack),2,3.84,2019-05-10 18:49:00,722 Meadow St, Seattle,WA,98101 +202986,iPhone,1,700.0,2019-05-22 22:04:00,558 Highland St, Los Angeles,CA,90001 +202987,Bose SoundSport Headphones,1,99.99,2019-05-18 08:59:00,697 Willow St, Atlanta,GA,30301 +202988,Bose SoundSport Headphones,1,99.99,2019-05-19 10:50:00,128 South St, Los Angeles,CA,90001 +202989,Apple Airpods Headphones,1,150.0,2019-05-01 13:16:00,329 South St, San Francisco,CA,94016 +202990,Apple Airpods Headphones,1,150.0,2019-05-26 18:10:00,931 Willow St, New York City,NY,10001 +202991,27in FHD Monitor,1,149.99,2019-05-29 11:17:00,251 Jackson St, Dallas,TX,75001 +202992,Wired Headphones,1,11.99,2019-05-07 09:28:00,166 Sunset St, New York City,NY,10001 +202992,AAA Batteries (4-pack),3,2.99,2019-05-07 09:28:00,166 Sunset St, New York City,NY,10001 +202993,iPhone,1,700.0,2019-05-21 16:08:00,263 Walnut St, San Francisco,CA,94016 +202993,Lightning Charging Cable,1,14.95,2019-05-21 16:08:00,263 Walnut St, San Francisco,CA,94016 +202994,27in 4K Gaming Monitor,1,389.99,2019-05-14 09:22:00,612 5th St, New York City,NY,10001 +202995,20in Monitor,1,109.99,2019-05-23 06:37:00,419 Hill St, Los Angeles,CA,90001 +202996,iPhone,1,700.0,2019-05-20 08:16:00,851 14th St, New York City,NY,10001 +202997,iPhone,1,700.0,2019-05-27 16:05:00,392 Park St, San Francisco,CA,94016 +202998,AAA Batteries (4-pack),1,2.99,2019-05-29 15:07:00,715 Dogwood St, New York City,NY,10001 +202999,20in Monitor,1,109.99,2019-05-03 20:41:00,27 Jefferson St, San Francisco,CA,94016 +203000,Google Phone,1,600.0,2019-05-25 15:10:00,594 Wilson St, San Francisco,CA,94016 +203001,Google Phone,1,600.0,2019-05-05 10:31:00,803 South St, Boston,MA,02215 +203002,Lightning Charging Cable,1,14.95,2019-05-22 05:35:00,686 1st St, San Francisco,CA,94016 +203002,27in FHD Monitor,1,149.99,2019-05-22 05:35:00,686 1st St, San Francisco,CA,94016 +203003,34in Ultrawide Monitor,1,379.99,2019-05-15 22:03:00,320 Elm St, New York City,NY,10001 +203004,Apple Airpods Headphones,1,150.0,2019-05-15 22:08:00,601 2nd St, Portland,OR,97035 +203005,USB-C Charging Cable,1,11.95,2019-05-04 10:20:00,90 Willow St, Los Angeles,CA,90001 +203006,AAA Batteries (4-pack),1,2.99,2019-05-27 23:18:00,548 Sunset St, Austin,TX,73301 +203007,ThinkPad Laptop,1,999.99,2019-05-25 19:35:00,529 Jefferson St, Seattle,WA,98101 +203008,AA Batteries (4-pack),1,3.84,2019-05-07 11:11:00,197 Hickory St, Atlanta,GA,30301 +203009,AA Batteries (4-pack),1,3.84,2019-05-02 21:37:00,42 Lincoln St, San Francisco,CA,94016 +203010,Bose SoundSport Headphones,1,99.99,2019-05-25 18:57:00,953 Meadow St, Los Angeles,CA,90001 +203011,27in 4K Gaming Monitor,1,389.99,2019-05-25 22:03:00,404 12th St, New York City,NY,10001 +203012,USB-C Charging Cable,1,11.95,2019-05-18 22:04:00,978 Elm St, San Francisco,CA,94016 +203013,AAA Batteries (4-pack),1,2.99,2019-05-17 09:06:00,492 Spruce St, New York City,NY,10001 +203014,USB-C Charging Cable,1,11.95,2019-05-21 07:21:00,560 Church St, Atlanta,GA,30301 +203015,Apple Airpods Headphones,1,150.0,2019-05-30 11:01:00,892 Park St, Atlanta,GA,30301 +203016,27in 4K Gaming Monitor,1,389.99,2019-05-28 13:43:00,697 West St, Portland,OR,97035 +203017,Lightning Charging Cable,1,14.95,2019-05-21 20:38:00,651 Willow St, Dallas,TX,75001 +203018,Vareebadd Phone,1,400.0,2019-05-25 09:42:00,139 Wilson St, Los Angeles,CA,90001 +203018,Bose SoundSport Headphones,1,99.99,2019-05-25 09:42:00,139 Wilson St, Los Angeles,CA,90001 +203019,Flatscreen TV,1,300.0,2019-05-06 14:25:00,448 Wilson St, San Francisco,CA,94016 +203020,iPhone,1,700.0,2019-05-30 10:10:00,419 West St, Boston,MA,02215 +203021,Apple Airpods Headphones,1,150.0,2019-05-08 23:19:00,594 2nd St, Seattle,WA,98101 +203022,Wired Headphones,1,11.99,2019-05-18 10:05:00,985 Dogwood St, New York City,NY,10001 +203023,Apple Airpods Headphones,1,150.0,2019-05-22 16:43:00,480 9th St, San Francisco,CA,94016 +203024,Lightning Charging Cable,1,14.95,2019-05-07 17:24:00,918 13th St, New York City,NY,10001 +203025,USB-C Charging Cable,1,11.95,2019-05-13 10:50:00,762 Jefferson St, Boston,MA,02215 +203026,AAA Batteries (4-pack),1,2.99,2019-05-22 20:55:00,874 7th St, New York City,NY,10001 +203027,Bose SoundSport Headphones,1,99.99,2019-05-14 14:00:00,32 Dogwood St, San Francisco,CA,94016 +203028,USB-C Charging Cable,1,11.95,2019-05-16 08:58:00,161 Cherry St, San Francisco,CA,94016 +203029,Apple Airpods Headphones,1,150.0,2019-05-15 15:42:00,805 Jefferson St, San Francisco,CA,94016 +203030,AA Batteries (4-pack),1,3.84,2019-05-02 18:04:00,77 13th St, Dallas,TX,75001 +203031,iPhone,1,700.0,2019-05-29 12:36:00,671 West St, Atlanta,GA,30301 +203032,AA Batteries (4-pack),1,3.84,2019-05-18 13:44:00,512 Madison St, Boston,MA,02215 +203033,Lightning Charging Cable,1,14.95,2019-05-02 09:17:00,928 Jefferson St, Seattle,WA,98101 +203034,Vareebadd Phone,1,400.0,2019-05-14 20:15:00,785 1st St, Los Angeles,CA,90001 +203035,Bose SoundSport Headphones,1,99.99,2019-05-01 14:23:00,806 Highland St, Los Angeles,CA,90001 +203036,USB-C Charging Cable,1,11.95,2019-05-08 11:19:00,744 Lakeview St, New York City,NY,10001 +203037,Lightning Charging Cable,1,14.95,2019-05-22 11:05:00,540 Pine St, San Francisco,CA,94016 +203038,27in 4K Gaming Monitor,1,389.99,2019-05-17 21:42:00,820 Jefferson St, San Francisco,CA,94016 +203039,USB-C Charging Cable,1,11.95,2019-05-20 08:53:00,628 Ridge St, San Francisco,CA,94016 +203040,Wired Headphones,1,11.99,2019-05-20 21:25:00,821 Park St, Los Angeles,CA,90001 +203041,iPhone,1,700.0,2019-05-24 10:02:00,48 14th St, San Francisco,CA,94016 +203042,AAA Batteries (4-pack),1,2.99,2019-05-23 13:15:00,492 Washington St, San Francisco,CA,94016 +203043,Lightning Charging Cable,1,14.95,2019-05-18 16:21:00,312 11th St, Boston,MA,02215 +203044,Bose SoundSport Headphones,1,99.99,2019-05-02 17:41:00,65 1st St, Atlanta,GA,30301 +203045,Lightning Charging Cable,1,14.95,2019-05-27 20:40:00,674 13th St, Los Angeles,CA,90001 +203046,Bose SoundSport Headphones,1,99.99,2019-05-02 12:33:00,354 2nd St, Portland,OR,97035 +203047,Wired Headphones,1,11.99,2019-05-10 10:18:00,402 4th St, San Francisco,CA,94016 +203048,AA Batteries (4-pack),2,3.84,2019-05-01 12:57:00,392 Spruce St, New York City,NY,10001 +203049,USB-C Charging Cable,1,11.95,2019-05-02 18:59:00,359 Maple St, Seattle,WA,98101 +203050,AA Batteries (4-pack),1,3.84,2019-05-20 21:13:00,181 Lakeview St, Dallas,TX,75001 +203051,Bose SoundSport Headphones,1,99.99,2019-05-23 15:42:00,641 Hill St, Atlanta,GA,30301 +203052,Macbook Pro Laptop,1,1700.0,2019-05-02 21:52:00,830 Forest St, New York City,NY,10001 +203053,34in Ultrawide Monitor,1,379.99,2019-05-09 12:07:00,81 Lincoln St, San Francisco,CA,94016 +203054,AAA Batteries (4-pack),2,2.99,2019-05-11 17:15:00,377 7th St, New York City,NY,10001 +203055,Apple Airpods Headphones,1,150.0,2019-05-09 18:34:00,231 Walnut St, Boston,MA,02215 +203056,Vareebadd Phone,1,400.0,2019-05-18 15:01:00,769 Lincoln St, Los Angeles,CA,90001 +203057,Bose SoundSport Headphones,1,99.99,2019-05-23 19:55:00,90 Meadow St, Atlanta,GA,30301 +203058,Lightning Charging Cable,1,14.95,2019-05-08 00:06:00,689 5th St, New York City,NY,10001 +203059,AA Batteries (4-pack),1,3.84,2019-05-31 12:45:00,810 Highland St, Boston,MA,02215 +203060,AAA Batteries (4-pack),2,2.99,2019-05-06 15:02:00,292 Spruce St, Portland,OR,97035 +203061,Bose SoundSport Headphones,1,99.99,2019-05-27 20:29:00,873 Cedar St, Boston,MA,02215 +203062,USB-C Charging Cable,1,11.95,2019-05-04 20:47:00,263 11th St, Boston,MA,02215 +203063,USB-C Charging Cable,1,11.95,2019-05-04 19:45:00,652 Park St, San Francisco,CA,94016 +203064,USB-C Charging Cable,1,11.95,2019-05-29 17:29:00,823 Church St, San Francisco,CA,94016 +203065,Wired Headphones,1,11.99,2019-05-01 20:20:00,810 Cedar St, San Francisco,CA,94016 +203066,Apple Airpods Headphones,1,150.0,2019-05-18 21:37:00,704 6th St, Los Angeles,CA,90001 +203067,Wired Headphones,1,11.99,2019-05-18 11:58:00,842 Maple St, New York City,NY,10001 +203068,USB-C Charging Cable,1,11.95,2019-05-09 13:16:00,985 Sunset St, Portland,OR,97035 +203069,AA Batteries (4-pack),1,3.84,2019-05-12 11:30:00,10 Madison St, Dallas,TX,75001 +203070,AAA Batteries (4-pack),1,2.99,2019-05-22 08:29:00,451 12th St, Los Angeles,CA,90001 +203071,Bose SoundSport Headphones,1,99.99,2019-05-23 19:27:00,398 10th St, San Francisco,CA,94016 +203072,Apple Airpods Headphones,1,150.0,2019-05-14 12:08:00,85 Adams St, New York City,NY,10001 +203073,AA Batteries (4-pack),1,3.84,2019-05-13 08:04:00,598 13th St, Seattle,WA,98101 +203074,27in FHD Monitor,1,149.99,2019-05-14 19:40:00,36 10th St, Atlanta,GA,30301 +203075,27in 4K Gaming Monitor,1,389.99,2019-05-18 03:47:00,951 Madison St, San Francisco,CA,94016 +203076,Bose SoundSport Headphones,1,99.99,2019-05-07 10:15:00,641 Dogwood St, San Francisco,CA,94016 +203077,Wired Headphones,1,11.99,2019-05-20 12:43:00,820 North St, San Francisco,CA,94016 +203078,AAA Batteries (4-pack),1,2.99,2019-05-06 11:53:00,693 Dogwood St, Atlanta,GA,30301 +203079,AA Batteries (4-pack),2,3.84,2019-05-19 17:31:00,600 Center St, Portland,OR,97035 +203080,Lightning Charging Cable,1,14.95,2019-05-14 21:13:00,950 8th St, Dallas,TX,75001 +203081,AA Batteries (4-pack),1,3.84,2019-05-02 15:47:00,77 Lake St, New York City,NY,10001 +203082,AA Batteries (4-pack),2,3.84,2019-05-06 16:19:00,819 5th St, San Francisco,CA,94016 +203083,Macbook Pro Laptop,1,1700.0,2019-05-28 18:28:00,742 Hickory St, Dallas,TX,75001 +203084,iPhone,1,700.0,2019-05-17 23:53:00,49 8th St, Los Angeles,CA,90001 +203085,Lightning Charging Cable,1,14.95,2019-05-29 15:46:00,723 11th St, Los Angeles,CA,90001 +203086,AAA Batteries (4-pack),1,2.99,2019-05-22 17:01:00,567 Meadow St, San Francisco,CA,94016 +203086,34in Ultrawide Monitor,1,379.99,2019-05-22 17:01:00,567 Meadow St, San Francisco,CA,94016 +203087,Lightning Charging Cable,1,14.95,2019-05-06 17:10:00,812 9th St, Atlanta,GA,30301 +203088,27in FHD Monitor,1,149.99,2019-05-28 23:01:00,210 11th St, Los Angeles,CA,90001 +203089,Flatscreen TV,1,300.0,2019-05-19 11:57:00,21 1st St, Atlanta,GA,30301 +203090,USB-C Charging Cable,1,11.95,2019-05-27 11:02:00,28 Main St, Austin,TX,73301 +203091,Wired Headphones,1,11.99,2019-05-14 14:50:00,556 Forest St, San Francisco,CA,94016 +203092,27in FHD Monitor,1,149.99,2019-05-09 15:41:00,798 Spruce St, Dallas,TX,75001 +203093,Wired Headphones,2,11.99,2019-05-19 14:07:00,473 Main St, Seattle,WA,98101 +203094,AA Batteries (4-pack),1,3.84,2019-05-22 12:09:00,147 River St, Seattle,WA,98101 +203094,Bose SoundSport Headphones,1,99.99,2019-05-22 12:09:00,147 River St, Seattle,WA,98101 +203095,Bose SoundSport Headphones,1,99.99,2019-05-28 09:19:00,490 Hickory St, Boston,MA,02215 +203096,USB-C Charging Cable,1,11.95,2019-05-30 23:50:00,504 Johnson St, Seattle,WA,98101 +203097,Lightning Charging Cable,1,14.95,2019-05-05 13:48:00,919 Walnut St, Dallas,TX,75001 +203098,Wired Headphones,1,11.99,2019-05-24 13:54:00,878 Madison St, Los Angeles,CA,90001 +203099,USB-C Charging Cable,1,11.95,2019-05-09 15:50:00,759 Ridge St, Los Angeles,CA,90001 +203100,27in 4K Gaming Monitor,1,389.99,2019-05-03 20:51:00,642 14th St, Boston,MA,02215 +203100,AAA Batteries (4-pack),2,2.99,2019-05-03 20:51:00,642 14th St, Boston,MA,02215 +203101,27in 4K Gaming Monitor,1,389.99,2019-05-16 12:13:00,371 Jackson St, New York City,NY,10001 +203102,USB-C Charging Cable,1,11.95,2019-05-16 14:34:00,632 Elm St, Atlanta,GA,30301 +203103,Flatscreen TV,1,300.0,2019-05-20 12:36:00,426 Willow St, San Francisco,CA,94016 +203104,Flatscreen TV,1,300.0,2019-05-10 18:38:00,101 4th St, Seattle,WA,98101 +203105,Lightning Charging Cable,1,14.95,2019-05-09 12:09:00,68 Cherry St, Seattle,WA,98101 +203106,Apple Airpods Headphones,1,150.0,2019-05-04 20:57:00,396 2nd St, Boston,MA,02215 +203107,USB-C Charging Cable,2,11.95,2019-05-10 20:32:00,359 Church St, Portland,OR,97035 +203108,Wired Headphones,2,11.99,2019-05-18 15:34:00,461 Chestnut St, Dallas,TX,75001 +203109,27in 4K Gaming Monitor,1,389.99,2019-05-23 20:04:00,46 Jackson St, Austin,TX,73301 +203110,Lightning Charging Cable,1,14.95,2019-05-29 22:11:00,362 Walnut St, San Francisco,CA,94016 +203111,Wired Headphones,1,11.99,2019-05-06 08:08:00,466 8th St, Boston,MA,02215 +203112,Wired Headphones,1,11.99,2019-05-02 16:08:00,207 Elm St, Boston,MA,02215 +203113,AAA Batteries (4-pack),1,2.99,2019-05-27 08:46:00,205 Ridge St, Atlanta,GA,30301 +203114,Lightning Charging Cable,1,14.95,2019-05-25 19:11:00,587 Maple St, New York City,NY,10001 +203115,Bose SoundSport Headphones,1,99.99,2019-05-06 13:43:00,145 Chestnut St, Los Angeles,CA,90001 +203116,Bose SoundSport Headphones,1,99.99,2019-05-05 09:52:00,36 Dogwood St, San Francisco,CA,94016 +203117,AAA Batteries (4-pack),2,2.99,2019-05-12 09:53:00,411 Madison St, New York City,NY,10001 +203118,ThinkPad Laptop,1,999.99,2019-05-24 15:36:00,763 4th St, Boston,MA,02215 +203119,AA Batteries (4-pack),1,3.84,2019-05-16 11:04:00,543 Center St, Boston,MA,02215 +203120,27in FHD Monitor,1,149.99,2019-05-30 18:26:00,596 6th St, Boston,MA,02215 +203121,Wired Headphones,1,11.99,2019-05-18 12:42:00,274 Madison St, Austin,TX,73301 +203122,Flatscreen TV,1,300.0,2019-05-26 11:52:00,541 Ridge St, New York City,NY,10001 +203123,iPhone,1,700.0,2019-05-11 23:39:00,601 Wilson St, Boston,MA,02215 +203124,AAA Batteries (4-pack),1,2.99,2019-05-19 20:29:00,448 6th St, San Francisco,CA,94016 +203125,Lightning Charging Cable,1,14.95,2019-05-09 20:11:00,770 12th St, San Francisco,CA,94016 +203125,AA Batteries (4-pack),1,3.84,2019-05-09 20:11:00,770 12th St, San Francisco,CA,94016 +203126,AA Batteries (4-pack),1,3.84,2019-05-23 00:42:00,259 Meadow St, Boston,MA,02215 +203127,27in FHD Monitor,1,149.99,2019-05-25 20:25:00,305 Forest St, Los Angeles,CA,90001 +203128,USB-C Charging Cable,1,11.95,2019-05-12 10:37:00,987 River St, Los Angeles,CA,90001 +203129,AA Batteries (4-pack),1,3.84,2019-05-13 13:33:00,283 Cherry St, Seattle,WA,98101 +203130,Lightning Charging Cable,1,14.95,2019-05-09 09:18:00,943 North St, Boston,MA,02215 +203131,iPhone,1,700.0,2019-05-28 16:38:00,511 Willow St, New York City,NY,10001 +203131,Lightning Charging Cable,1,14.95,2019-05-28 16:38:00,511 Willow St, New York City,NY,10001 +203132,USB-C Charging Cable,1,11.95,2019-05-09 16:08:00,768 River St, Seattle,WA,98101 +203133,Google Phone,1,600.0,2019-05-14 18:36:00,113 14th St, Los Angeles,CA,90001 +203133,USB-C Charging Cable,1,11.95,2019-05-14 18:36:00,113 14th St, Los Angeles,CA,90001 +203133,Wired Headphones,1,11.99,2019-05-14 18:36:00,113 14th St, Los Angeles,CA,90001 +203134,Bose SoundSport Headphones,1,99.99,2019-05-21 18:17:00,257 4th St, San Francisco,CA,94016 +203135,34in Ultrawide Monitor,1,379.99,2019-05-05 11:13:00,90 Dogwood St, Dallas,TX,75001 +203136,Lightning Charging Cable,1,14.95,2019-05-09 13:20:00,396 Highland St, Los Angeles,CA,90001 +203137,AA Batteries (4-pack),1,3.84,2019-05-31 11:33:00,89 Elm St, Atlanta,GA,30301 +203138,AAA Batteries (4-pack),1,2.99,2019-05-31 07:54:00,361 Spruce St, Dallas,TX,75001 +203139,AAA Batteries (4-pack),1,2.99,2019-05-23 10:01:00,162 9th St, San Francisco,CA,94016 +203140,Wired Headphones,1,11.99,2019-05-03 16:14:00,936 Park St, Dallas,TX,75001 +203141,Bose SoundSport Headphones,1,99.99,2019-05-19 11:43:00,321 Park St, Los Angeles,CA,90001 +203142,USB-C Charging Cable,1,11.95,2019-05-17 21:41:00,442 Cedar St, Seattle,WA,98101 +203143,Lightning Charging Cable,1,14.95,2019-05-05 09:00:00,727 Church St, Portland,OR,97035 +203144,AA Batteries (4-pack),3,3.84,2019-05-08 11:05:00,375 Lakeview St, Boston,MA,02215 +203145,AA Batteries (4-pack),1,3.84,2019-05-21 23:59:00,666 Jefferson St, New York City,NY,10001 +203146,Lightning Charging Cable,1,14.95,2019-05-10 16:23:00,953 Elm St, Portland,OR,97035 +203147,AAA Batteries (4-pack),1,2.99,2019-05-18 00:01:00,209 Sunset St, Austin,TX,73301 +203148,27in 4K Gaming Monitor,1,389.99,2019-05-09 14:13:00,234 Willow St, San Francisco,CA,94016 +203149,Google Phone,1,600.0,2019-05-08 15:39:00,655 11th St, New York City,NY,10001 +203149,USB-C Charging Cable,1,11.95,2019-05-08 15:39:00,655 11th St, New York City,NY,10001 +203150,Bose SoundSport Headphones,1,99.99,2019-05-01 18:50:00,38 Ridge St, New York City,NY,10001 +203151,Lightning Charging Cable,1,14.95,2019-05-25 09:23:00,716 Chestnut St, Atlanta,GA,30301 +203152,Flatscreen TV,1,300.0,2019-05-03 10:54:00,170 West St, Atlanta,GA,30301 +203153,Bose SoundSport Headphones,1,99.99,2019-05-16 21:33:00,796 Church St, Austin,TX,73301 +203153,AA Batteries (4-pack),1,3.84,2019-05-16 21:33:00,796 Church St, Austin,TX,73301 +203154,AA Batteries (4-pack),1,3.84,2019-05-06 19:11:00,823 2nd St, New York City,NY,10001 +203155,27in FHD Monitor,1,149.99,2019-05-25 10:04:00,426 6th St, San Francisco,CA,94016 +203156,Apple Airpods Headphones,1,150.0,2019-05-26 08:28:00,290 5th St, San Francisco,CA,94016 +203157,AAA Batteries (4-pack),2,2.99,2019-05-15 09:43:00,641 Adams St, San Francisco,CA,94016 +203158,Lightning Charging Cable,2,14.95,2019-05-29 18:14:00,197 7th St, Boston,MA,02215 +203159,AAA Batteries (4-pack),1,2.99,2019-05-02 22:57:00,823 Hill St, Los Angeles,CA,90001 +203160,27in 4K Gaming Monitor,1,389.99,2019-05-21 12:40:00,485 Park St, San Francisco,CA,94016 +203161,Apple Airpods Headphones,1,150.0,2019-05-19 20:37:00,419 Maple St, Dallas,TX,75001 +203162,Flatscreen TV,1,300.0,2019-05-20 10:58:00,493 10th St, Portland,OR,97035 +203163,USB-C Charging Cable,1,11.95,2019-05-29 21:42:00,241 Lincoln St, Boston,MA,02215 +203164,Wired Headphones,1,11.99,2019-05-06 14:26:00,34 Meadow St, San Francisco,CA,94016 +203165,Apple Airpods Headphones,1,150.0,2019-05-02 16:24:00,449 9th St, Atlanta,GA,30301 +203166,USB-C Charging Cable,1,11.95,2019-05-23 11:19:00,207 Washington St, New York City,NY,10001 +203167,27in FHD Monitor,1,149.99,2019-05-19 09:08:00,654 Hill St, Austin,TX,73301 +203168,Lightning Charging Cable,1,14.95,2019-05-25 07:44:00,576 Maple St, San Francisco,CA,94016 +203169,Lightning Charging Cable,1,14.95,2019-05-26 22:01:00,206 14th St, Boston,MA,02215 +203170,ThinkPad Laptop,1,999.99,2019-05-03 19:56:00,704 Highland St, Seattle,WA,98101 +203171,AA Batteries (4-pack),1,3.84,2019-05-02 07:12:00,292 1st St, Los Angeles,CA,90001 +203172,Apple Airpods Headphones,1,150.0,2019-05-01 10:15:00,258 11th St, Portland,OR,97035 +203173,Bose SoundSport Headphones,1,99.99,2019-05-29 18:26:00,37 Sunset St, Los Angeles,CA,90001 +203174,USB-C Charging Cable,1,11.95,2019-05-04 18:12:00,755 South St, Atlanta,GA,30301 +203174,27in FHD Monitor,1,149.99,2019-05-04 18:12:00,755 South St, Atlanta,GA,30301 +203175,Apple Airpods Headphones,1,150.0,2019-05-22 11:48:00,199 Hickory St, Los Angeles,CA,90001 +203176,AAA Batteries (4-pack),1,2.99,2019-05-06 21:23:00,487 River St, Los Angeles,CA,90001 +203177,USB-C Charging Cable,2,11.95,2019-05-31 21:02:00,973 Lakeview St, San Francisco,CA,94016 +203178,Flatscreen TV,1,300.0,2019-05-09 01:38:00,139 Chestnut St, New York City,NY,10001 +203179,Wired Headphones,1,11.99,2019-05-04 14:55:00,675 Wilson St, Boston,MA,02215 +203180,Lightning Charging Cable,1,14.95,2019-05-22 12:59:00,480 Willow St, Dallas,TX,75001 +203181,20in Monitor,1,109.99,2019-05-02 11:22:00,455 Park St, Portland,OR,97035 +203182,34in Ultrawide Monitor,1,379.99,2019-05-09 21:09:00,691 6th St, Seattle,WA,98101 +203183,20in Monitor,2,109.99,2019-05-15 21:45:00,238 Ridge St, New York City,NY,10001 +203184,iPhone,1,700.0,2019-05-25 21:52:00,491 13th St, Los Angeles,CA,90001 +203185,Apple Airpods Headphones,1,150.0,2019-05-11 23:43:00,734 Lincoln St, San Francisco,CA,94016 +203186,27in FHD Monitor,1,149.99,2019-05-18 14:23:00,706 Spruce St, New York City,NY,10001 +203187,USB-C Charging Cable,1,11.95,2019-05-23 21:14:00,171 Maple St, New York City,NY,10001 +203188,27in FHD Monitor,1,149.99,2019-05-16 17:18:00,902 Lake St, San Francisco,CA,94016 +203189,27in 4K Gaming Monitor,1,389.99,2019-05-31 11:39:00,351 Lake St, San Francisco,CA,94016 +203190,AA Batteries (4-pack),1,3.84,2019-05-04 23:06:00,375 Walnut St, San Francisco,CA,94016 +203190,Lightning Charging Cable,2,14.95,2019-05-04 23:06:00,375 Walnut St, San Francisco,CA,94016 +203191,iPhone,1,700.0,2019-05-10 19:56:00,87 Pine St, New York City,NY,10001 +203191,Apple Airpods Headphones,1,150.0,2019-05-10 19:56:00,87 Pine St, New York City,NY,10001 +203192,Bose SoundSport Headphones,1,99.99,2019-05-04 14:56:00,988 Elm St, Dallas,TX,75001 +203193,27in 4K Gaming Monitor,1,389.99,2019-05-14 08:09:00,172 Forest St, Boston,MA,02215 +203194,Bose SoundSport Headphones,1,99.99,2019-05-26 13:05:00,827 Ridge St, New York City,NY,10001 +203195,AAA Batteries (4-pack),1,2.99,2019-05-19 22:35:00,102 Church St, San Francisco,CA,94016 +203196,34in Ultrawide Monitor,1,379.99,2019-05-19 01:02:00,967 Adams St, New York City,NY,10001 +203197,Apple Airpods Headphones,1,150.0,2019-05-03 11:18:00,501 12th St, New York City,NY,10001 +203198,Wired Headphones,1,11.99,2019-05-28 23:57:00,471 5th St, Boston,MA,02215 +203199,USB-C Charging Cable,1,11.95,2019-05-05 13:15:00,209 North St, Boston,MA,02215 +203200,20in Monitor,1,109.99,2019-05-22 23:43:00,67 Madison St, New York City,NY,10001 +203201,iPhone,1,700.0,2019-05-17 16:26:00,936 Lincoln St, San Francisco,CA,94016 +203202,iPhone,1,700.0,2019-05-07 15:34:00,820 Washington St, Los Angeles,CA,90001 +203203,Lightning Charging Cable,1,14.95,2019-05-25 11:29:00,182 Madison St, Portland,ME,04101 +203204,AAA Batteries (4-pack),1,2.99,2019-05-25 19:44:00,659 7th St, Dallas,TX,75001 +203205,USB-C Charging Cable,3,11.95,2019-05-26 20:53:00,289 Lincoln St, Seattle,WA,98101 +203206,Wired Headphones,1,11.99,2019-05-22 15:54:00,852 Washington St, New York City,NY,10001 +203207,AAA Batteries (4-pack),1,2.99,2019-05-10 11:28:00,565 Meadow St, Boston,MA,02215 +203208,Wired Headphones,1,11.99,2019-05-15 11:40:00,388 Lakeview St, Atlanta,GA,30301 +203209,USB-C Charging Cable,1,11.95,2019-05-02 18:40:00,997 Johnson St, San Francisco,CA,94016 +203210,Google Phone,1,600.0,2019-05-05 09:28:00,611 Main St, San Francisco,CA,94016 +203211,27in FHD Monitor,1,149.99,2019-05-06 18:35:00,182 Forest St, Dallas,TX,75001 +203212,USB-C Charging Cable,1,11.95,2019-05-01 16:50:00,667 Sunset St, Dallas,TX,75001 +203213,Lightning Charging Cable,1,14.95,2019-05-06 11:44:00,298 Sunset St, San Francisco,CA,94016 +203214,Bose SoundSport Headphones,1,99.99,2019-05-28 16:02:00,761 Church St, Dallas,TX,75001 +203215,27in FHD Monitor,1,149.99,2019-05-07 21:07:00,41 Jackson St, Austin,TX,73301 +203216,27in FHD Monitor,1,149.99,2019-05-26 20:03:00,359 6th St, Portland,ME,04101 +203217,Lightning Charging Cable,1,14.95,2019-05-09 19:30:00,342 River St, Boston,MA,02215 +203218,Flatscreen TV,1,300.0,2019-05-30 06:24:00,746 Willow St, Los Angeles,CA,90001 +203219,AA Batteries (4-pack),1,3.84,2019-05-22 14:13:00,955 Forest St, Los Angeles,CA,90001 +203220,Lightning Charging Cable,1,14.95,2019-05-23 07:46:00,317 Sunset St, Atlanta,GA,30301 +203221,Lightning Charging Cable,2,14.95,2019-05-18 22:11:00,808 Lakeview St, Los Angeles,CA,90001 +203222,Apple Airpods Headphones,1,150.0,2019-05-09 07:23:00,513 Park St, Atlanta,GA,30301 +203223,Google Phone,1,600.0,2019-05-14 22:57:00,122 River St, Austin,TX,73301 +203224,AA Batteries (4-pack),1,3.84,2019-05-06 19:29:00,724 Spruce St, Atlanta,GA,30301 +203225,Macbook Pro Laptop,1,1700.0,2019-05-24 19:21:00,772 11th St, San Francisco,CA,94016 +203226,Wired Headphones,1,11.99,2019-05-21 21:22:00,783 Walnut St, Dallas,TX,75001 +203227,AAA Batteries (4-pack),1,2.99,2019-05-30 17:18:00,605 Center St, Boston,MA,02215 +203228,Bose SoundSport Headphones,1,99.99,2019-05-29 19:11:00,84 Spruce St, Boston,MA,02215 +203229,AA Batteries (4-pack),1,3.84,2019-05-26 15:39:00,104 Forest St, Atlanta,GA,30301 +203230,USB-C Charging Cable,1,11.95,2019-05-20 17:35:00,47 Cedar St, Los Angeles,CA,90001 +203231,AAA Batteries (4-pack),2,2.99,2019-05-18 20:32:00,475 Main St, Los Angeles,CA,90001 +203232,ThinkPad Laptop,1,999.99,2019-05-27 13:57:00,487 Forest St, Los Angeles,CA,90001 +203233,AAA Batteries (4-pack),1,2.99,2019-05-13 21:08:00,986 River St, San Francisco,CA,94016 +203234,Bose SoundSport Headphones,1,99.99,2019-05-14 14:09:00,900 Elm St, Seattle,WA,98101 +203235,AAA Batteries (4-pack),1,2.99,2019-05-29 17:28:00,855 Highland St, San Francisco,CA,94016 +203235,34in Ultrawide Monitor,1,379.99,2019-05-29 17:28:00,855 Highland St, San Francisco,CA,94016 +203236,Bose SoundSport Headphones,1,99.99,2019-05-19 17:33:00,379 Wilson St, Seattle,WA,98101 +203237,AA Batteries (4-pack),1,3.84,2019-05-08 15:23:00,822 Dogwood St, Los Angeles,CA,90001 +203238,20in Monitor,1,109.99,2019-05-11 22:25:00,726 Walnut St, San Francisco,CA,94016 +203239,USB-C Charging Cable,2,11.95,2019-05-18 06:59:00,139 Sunset St, Seattle,WA,98101 +203240,Apple Airpods Headphones,1,150.0,2019-05-16 14:45:00,233 Adams St, Atlanta,GA,30301 +203241,Wired Headphones,1,11.99,2019-05-26 11:23:00,51 Highland St, San Francisco,CA,94016 +203242,Lightning Charging Cable,1,14.95,2019-05-16 19:13:00,95 Forest St, San Francisco,CA,94016 +203243,AAA Batteries (4-pack),1,2.99,2019-05-05 20:52:00,242 8th St, Portland,OR,97035 +203244,Apple Airpods Headphones,1,150.0,2019-05-25 09:38:00,890 South St, Los Angeles,CA,90001 +203245,iPhone,1,700.0,2019-05-31 19:49:00,724 Pine St, Dallas,TX,75001 +203245,Lightning Charging Cable,1,14.95,2019-05-31 19:49:00,724 Pine St, Dallas,TX,75001 +203246,Wired Headphones,1,11.99,2019-05-23 20:55:00,693 7th St, Atlanta,GA,30301 +203247,AAA Batteries (4-pack),1,2.99,2019-05-05 21:34:00,987 Madison St, Seattle,WA,98101 +203248,Flatscreen TV,1,300.0,2019-05-23 16:41:00,912 Washington St, San Francisco,CA,94016 +203249,Wired Headphones,1,11.99,2019-05-04 21:56:00,61 Johnson St, Boston,MA,02215 +203250,AAA Batteries (4-pack),2,2.99,2019-05-11 16:58:00,67 13th St, San Francisco,CA,94016 +203251,USB-C Charging Cable,1,11.95,2019-05-28 16:49:00,791 13th St, Los Angeles,CA,90001 +203252,AA Batteries (4-pack),1,3.84,2019-05-04 23:20:00,206 2nd St, Los Angeles,CA,90001 +203253,Apple Airpods Headphones,1,150.0,2019-05-29 21:51:00,689 12th St, New York City,NY,10001 +203254,AAA Batteries (4-pack),1,2.99,2019-05-01 14:42:00,362 Jefferson St, Portland,OR,97035 +203255,iPhone,1,700.0,2019-05-07 21:05:00,716 Lincoln St, Seattle,WA,98101 +203256,Lightning Charging Cable,1,14.95,2019-05-03 07:18:00,714 Highland St, New York City,NY,10001 +203257,Wired Headphones,1,11.99,2019-05-12 13:34:00,567 Lakeview St, Austin,TX,73301 +203258,USB-C Charging Cable,1,11.95,2019-05-08 15:13:00,568 Ridge St, Los Angeles,CA,90001 +203259,iPhone,1,700.0,2019-05-23 10:05:00,312 Ridge St, Boston,MA,02215 +203260,Lightning Charging Cable,1,14.95,2019-05-14 12:40:00,12 Sunset St, Dallas,TX,75001 +203261,Lightning Charging Cable,1,14.95,2019-05-18 10:12:00,156 Chestnut St, San Francisco,CA,94016 +203262,Lightning Charging Cable,1,14.95,2019-05-06 16:52:00,576 13th St, Los Angeles,CA,90001 +203263,AAA Batteries (4-pack),1,2.99,2019-05-19 17:03:00,73 8th St, Austin,TX,73301 +203264,LG Washing Machine,1,600.0,2019-05-18 14:19:00,816 Ridge St, Portland,OR,97035 +203265,20in Monitor,1,109.99,2019-05-20 17:35:00,786 Main St, New York City,NY,10001 +203266,Wired Headphones,1,11.99,2019-05-05 18:41:00,759 Dogwood St, New York City,NY,10001 +203267,Apple Airpods Headphones,1,150.0,2019-05-02 23:51:00,473 Maple St, San Francisco,CA,94016 +203268,ThinkPad Laptop,1,999.99,2019-05-30 21:14:00,694 Jefferson St, Dallas,TX,75001 +203269,AAA Batteries (4-pack),1,2.99,2019-05-13 22:36:00,667 Elm St, Dallas,TX,75001 +203270,AA Batteries (4-pack),1,3.84,2019-05-22 20:46:00,732 11th St, New York City,NY,10001 +203271,Wired Headphones,1,11.99,2019-05-19 23:31:00,434 1st St, New York City,NY,10001 +203272,Apple Airpods Headphones,1,150.0,2019-05-25 18:58:00,29 7th St, New York City,NY,10001 +203273,AA Batteries (4-pack),1,3.84,2019-05-15 20:02:00,777 1st St, Los Angeles,CA,90001 +203274,AAA Batteries (4-pack),1,2.99,2019-05-06 22:06:00,605 14th St, San Francisco,CA,94016 +203275,USB-C Charging Cable,1,11.95,2019-05-09 21:00:00,665 Park St, Austin,TX,73301 +203276,27in FHD Monitor,1,149.99,2019-05-12 00:59:00,14 River St, Boston,MA,02215 +203277,27in FHD Monitor,1,149.99,2019-05-01 17:13:00,955 Elm St, Atlanta,GA,30301 +203278,USB-C Charging Cable,1,11.95,2019-05-22 18:57:00,280 Madison St, San Francisco,CA,94016 +203279,ThinkPad Laptop,1,999.99,2019-05-25 15:55:00,135 Highland St, Dallas,TX,75001 +203280,27in FHD Monitor,1,149.99,2019-05-13 23:13:00,183 South St, Dallas,TX,75001 +203281,Lightning Charging Cable,1,14.95,2019-05-19 23:35:00,861 Johnson St, Boston,MA,02215 +203282,Lightning Charging Cable,1,14.95,2019-05-09 10:19:00,604 Madison St, San Francisco,CA,94016 +203283,Wired Headphones,1,11.99,2019-05-11 13:08:00,562 Park St, New York City,NY,10001 +203284,ThinkPad Laptop,1,999.99,2019-05-05 19:44:00,353 6th St, Atlanta,GA,30301 +203284,Lightning Charging Cable,1,14.95,2019-05-05 19:44:00,353 6th St, Atlanta,GA,30301 +203285,27in 4K Gaming Monitor,1,389.99,2019-05-16 02:19:00,394 9th St, Los Angeles,CA,90001 +203286,27in FHD Monitor,1,149.99,2019-05-04 15:36:00,16 Cherry St, Boston,MA,02215 +203287,AAA Batteries (4-pack),1,2.99,2019-05-26 22:23:00,670 North St, New York City,NY,10001 +203288,Wired Headphones,1,11.99,2019-05-21 17:50:00,172 Forest St, Los Angeles,CA,90001 +203289,Wired Headphones,1,11.99,2019-05-23 13:15:00,594 Chestnut St, Boston,MA,02215 +203290,AA Batteries (4-pack),1,3.84,2019-05-14 21:35:00,203 1st St, Austin,TX,73301 +203291,Macbook Pro Laptop,1,1700.0,2019-05-26 19:35:00,667 Chestnut St, Portland,OR,97035 +203292,ThinkPad Laptop,1,999.99,2019-05-08 01:46:00,74 Walnut St, Boston,MA,02215 +203293,AA Batteries (4-pack),1,3.84,2019-05-25 12:15:00,416 Meadow St, San Francisco,CA,94016 +203294,Bose SoundSport Headphones,1,99.99,2019-05-25 18:27:00,920 9th St, San Francisco,CA,94016 +203295,Lightning Charging Cable,1,14.95,2019-05-23 10:13:00,15 Lakeview St, Boston,MA,02215 +203296,Apple Airpods Headphones,1,150.0,2019-05-19 19:37:00,190 Jackson St, San Francisco,CA,94016 +203297,USB-C Charging Cable,1,11.95,2019-05-19 12:45:00,72 6th St, San Francisco,CA,94016 +203298,Flatscreen TV,1,300.0,2019-05-22 19:31:00,229 River St, Los Angeles,CA,90001 +203299,USB-C Charging Cable,1,11.95,2019-05-05 19:32:00,424 River St, San Francisco,CA,94016 +203300,AA Batteries (4-pack),2,3.84,2019-05-21 18:52:00,817 Cedar St, New York City,NY,10001 +203301,AA Batteries (4-pack),1,3.84,2019-05-29 12:59:00,858 Cherry St, San Francisco,CA,94016 +203302,ThinkPad Laptop,1,999.99,2019-05-08 13:31:00,185 Park St, San Francisco,CA,94016 +203303,Bose SoundSport Headphones,1,99.99,2019-05-11 18:42:00,747 South St, Dallas,TX,75001 +203304,AAA Batteries (4-pack),1,2.99,2019-05-11 11:05:00,435 Church St, Seattle,WA,98101 +203305,Google Phone,1,600.0,2019-05-22 10:54:00,803 West St, New York City,NY,10001 +203306,USB-C Charging Cable,1,11.95,2019-05-28 18:55:00,901 Lake St, Seattle,WA,98101 +203307,USB-C Charging Cable,1,11.95,2019-05-12 12:36:00,398 Lake St, Boston,MA,02215 +203308,Lightning Charging Cable,1,14.95,2019-05-11 12:34:00,840 Willow St, Seattle,WA,98101 +203309,iPhone,1,700.0,2019-05-07 21:00:00,799 Wilson St, Boston,MA,02215 +203310,Macbook Pro Laptop,1,1700.0,2019-05-27 15:16:00,199 Lincoln St, Austin,TX,73301 +203311,20in Monitor,1,109.99,2019-05-28 20:44:00,607 6th St, San Francisco,CA,94016 +203312,AA Batteries (4-pack),2,3.84,2019-05-28 18:34:00,749 Forest St, Boston,MA,02215 +203313,Wired Headphones,1,11.99,2019-05-20 15:18:00,357 Willow St, Dallas,TX,75001 +203314,Apple Airpods Headphones,1,150.0,2019-05-19 09:36:00,136 Madison St, Los Angeles,CA,90001 +203315,AA Batteries (4-pack),1,3.84,2019-05-16 09:56:00,872 9th St, Dallas,TX,75001 +203316,AA Batteries (4-pack),1,3.84,2019-05-17 09:29:00,342 4th St, Atlanta,GA,30301 +203317,27in 4K Gaming Monitor,1,389.99,2019-05-25 19:15:00,700 Chestnut St, New York City,NY,10001 +203318,Lightning Charging Cable,2,14.95,2019-05-06 08:47:00,200 Hill St, Atlanta,GA,30301 +203319,Lightning Charging Cable,2,14.95,2019-05-29 14:40:00,600 5th St, San Francisco,CA,94016 +203320,USB-C Charging Cable,1,11.95,2019-05-15 22:04:00,401 11th St, Boston,MA,02215 +203321,Bose SoundSport Headphones,1,99.99,2019-05-31 19:13:00,84 Center St, San Francisco,CA,94016 +203322,USB-C Charging Cable,1,11.95,2019-05-27 10:41:00,545 11th St, Dallas,TX,75001 +203323,Macbook Pro Laptop,1,1700.0,2019-05-11 20:09:00,662 7th St, San Francisco,CA,94016 +203324,Lightning Charging Cable,1,14.95,2019-05-13 05:57:00,788 4th St, San Francisco,CA,94016 +203325,ThinkPad Laptop,1,999.99,2019-05-30 21:41:00,571 Highland St, Dallas,TX,75001 +203326,ThinkPad Laptop,1,999.99,2019-05-11 09:05:00,13 Wilson St, Atlanta,GA,30301 +203327,AA Batteries (4-pack),1,3.84,2019-05-12 19:51:00,163 1st St, San Francisco,CA,94016 +203328,27in FHD Monitor,1,149.99,2019-05-03 21:17:00,299 Washington St, New York City,NY,10001 +203328,AA Batteries (4-pack),1,3.84,2019-05-03 21:17:00,299 Washington St, New York City,NY,10001 +203329,USB-C Charging Cable,1,11.95,2019-05-12 06:22:00,383 12th St, San Francisco,CA,94016 +203330,AA Batteries (4-pack),1,3.84,2019-05-13 20:33:00,104 Jefferson St, San Francisco,CA,94016 +203331,Bose SoundSport Headphones,1,99.99,2019-05-02 01:22:00,615 Park St, Los Angeles,CA,90001 +203332,iPhone,1,700.0,2019-05-27 18:11:00,428 Hickory St, San Francisco,CA,94016 +203333,iPhone,1,700.0,2019-05-29 13:49:00,788 Maple St, San Francisco,CA,94016 +203334,Macbook Pro Laptop,1,1700.0,2019-05-11 11:11:00,813 2nd St, Austin,TX,73301 +203335,AAA Batteries (4-pack),2,2.99,2019-05-21 18:13:00,630 Center St, Dallas,TX,75001 +203336,27in FHD Monitor,1,149.99,2019-05-22 15:30:00,49 9th St, New York City,NY,10001 +203337,ThinkPad Laptop,1,999.99,2019-05-14 01:32:00,874 12th St, Los Angeles,CA,90001 +203338,Apple Airpods Headphones,1,150.0,2019-05-12 08:57:00,751 Cedar St, Boston,MA,02215 +203339,Bose SoundSport Headphones,1,99.99,2019-05-05 22:56:00,856 Church St, San Francisco,CA,94016 +203340,Lightning Charging Cable,1,14.95,2019-05-08 09:24:00,79 Jefferson St, Seattle,WA,98101 +203341,AAA Batteries (4-pack),2,2.99,2019-05-02 16:00:00,348 10th St, Austin,TX,73301 +203342,27in 4K Gaming Monitor,1,389.99,2019-05-18 10:19:00,402 Pine St, Portland,OR,97035 +203343,Flatscreen TV,1,300.0,2019-05-29 03:37:00,111 West St, Atlanta,GA,30301 +203344,Wired Headphones,1,11.99,2019-05-05 18:45:00,873 4th St, Dallas,TX,75001 +203345,Apple Airpods Headphones,1,150.0,2019-05-20 06:34:00,849 Madison St, New York City,NY,10001 +203346,Apple Airpods Headphones,1,150.0,2019-05-16 11:45:00,938 Lakeview St, Boston,MA,02215 +203347,Wired Headphones,1,11.99,2019-05-25 14:57:00,931 9th St, New York City,NY,10001 +203348,Bose SoundSport Headphones,1,99.99,2019-05-21 13:34:00,308 10th St, San Francisco,CA,94016 +203349,Lightning Charging Cable,1,14.95,2019-05-04 22:18:00,95 1st St, Austin,TX,73301 +203350,Lightning Charging Cable,1,14.95,2019-05-22 15:13:00,437 Cedar St, San Francisco,CA,94016 +203351,AA Batteries (4-pack),2,3.84,2019-05-14 19:55:00,441 River St, Dallas,TX,75001 +203352,Bose SoundSport Headphones,1,99.99,2019-05-04 17:25:00,848 6th St, San Francisco,CA,94016 +203353,LG Washing Machine,1,600.0,2019-05-11 14:06:00,516 Washington St, Los Angeles,CA,90001 +203354,USB-C Charging Cable,1,11.95,2019-05-08 12:26:00,497 Highland St, New York City,NY,10001 +203355,USB-C Charging Cable,1,11.95,2019-05-23 00:21:00,919 7th St, Atlanta,GA,30301 +203356,Lightning Charging Cable,1,14.95,2019-05-11 20:39:00,42 Center St, New York City,NY,10001 +203357,34in Ultrawide Monitor,1,379.99,2019-05-21 10:07:00,248 4th St, Portland,ME,04101 +203358,Lightning Charging Cable,1,14.95,2019-05-21 12:40:00,577 Center St, Los Angeles,CA,90001 +203359,20in Monitor,1,109.99,2019-05-13 19:41:00,526 Ridge St, Atlanta,GA,30301 +203360,27in FHD Monitor,1,149.99,2019-05-20 13:58:00,998 9th St, Boston,MA,02215 +203361,Vareebadd Phone,1,400.0,2019-05-14 19:26:00,428 1st St, Portland,OR,97035 +203362,AAA Batteries (4-pack),1,2.99,2019-05-25 08:20:00,687 Jackson St, San Francisco,CA,94016 +203363,34in Ultrawide Monitor,1,379.99,2019-05-03 19:57:00,949 Johnson St, Seattle,WA,98101 +203364,Apple Airpods Headphones,1,150.0,2019-05-24 15:40:00,629 Jefferson St, Boston,MA,02215 +203365,Google Phone,1,600.0,2019-05-05 13:38:00,272 Madison St, Atlanta,GA,30301 +203365,Bose SoundSport Headphones,1,99.99,2019-05-05 13:38:00,272 Madison St, Atlanta,GA,30301 +203365,Apple Airpods Headphones,1,150.0,2019-05-05 13:38:00,272 Madison St, Atlanta,GA,30301 +203366,34in Ultrawide Monitor,1,379.99,2019-05-07 19:18:00,92 Jefferson St, Portland,OR,97035 +203367,ThinkPad Laptop,1,999.99,2019-05-28 16:37:00,622 Washington St, New York City,NY,10001 +203368,AA Batteries (4-pack),1,3.84,2019-05-29 07:13:00,315 Meadow St, Los Angeles,CA,90001 +203369,AA Batteries (4-pack),2,3.84,2019-05-13 10:32:00,916 Lakeview St, Atlanta,GA,30301 +203370,iPhone,1,700.0,2019-05-31 10:43:00,217 West St, San Francisco,CA,94016 +203370,Lightning Charging Cable,1,14.95,2019-05-31 10:43:00,217 West St, San Francisco,CA,94016 +203371,Google Phone,1,600.0,2019-05-26 07:09:00,943 Cherry St, Atlanta,GA,30301 +203372,34in Ultrawide Monitor,1,379.99,2019-05-13 15:07:00,265 West St, Seattle,WA,98101 +203373,Google Phone,1,600.0,2019-05-02 10:44:00,409 Forest St, New York City,NY,10001 +203374,Bose SoundSport Headphones,1,99.99,2019-05-07 19:42:00,924 Sunset St, Dallas,TX,75001 +203375,ThinkPad Laptop,1,999.99,2019-05-28 14:52:00,925 Willow St, Portland,OR,97035 +203376,USB-C Charging Cable,1,11.95,2019-05-27 15:21:00,469 Park St, Los Angeles,CA,90001 +203377,27in FHD Monitor,1,149.99,2019-05-09 11:40:00,612 Wilson St, Dallas,TX,75001 +203378,USB-C Charging Cable,1,11.95,2019-05-06 14:16:00,539 Forest St, Seattle,WA,98101 +203379,AA Batteries (4-pack),1,3.84,2019-05-28 20:41:00,254 Cherry St, San Francisco,CA,94016 +203380,Wired Headphones,1,11.99,2019-05-14 06:16:00,742 Lincoln St, Los Angeles,CA,90001 +203381,AAA Batteries (4-pack),2,2.99,2019-05-31 22:20:00,981 8th St, New York City,NY,10001 +203382,34in Ultrawide Monitor,1,379.99,2019-05-17 10:10:00,994 Pine St, Los Angeles,CA,90001 +203383,Apple Airpods Headphones,1,150.0,2019-05-12 13:48:00,420 10th St, Seattle,WA,98101 +203384,Macbook Pro Laptop,1,1700.0,2019-05-24 10:45:00,434 Spruce St, San Francisco,CA,94016 +203384,27in 4K Gaming Monitor,1,389.99,2019-05-24 10:45:00,434 Spruce St, San Francisco,CA,94016 +203385,Flatscreen TV,1,300.0,2019-05-05 18:02:00,495 7th St, Los Angeles,CA,90001 +203386,Wired Headphones,1,11.99,2019-05-17 21:12:00,406 Forest St, Los Angeles,CA,90001 +203387,27in 4K Gaming Monitor,1,389.99,2019-05-10 12:02:00,577 Meadow St, Los Angeles,CA,90001 +203388,27in FHD Monitor,1,149.99,2019-05-20 08:43:00,273 Lincoln St, New York City,NY,10001 +203389,Wired Headphones,1,11.99,2019-05-10 21:12:00,176 12th St, New York City,NY,10001 +203390,Bose SoundSport Headphones,1,99.99,2019-05-07 20:33:00,913 Lake St, Los Angeles,CA,90001 +203391,27in FHD Monitor,1,149.99,2019-05-23 20:30:00,889 2nd St, Seattle,WA,98101 +203392,Vareebadd Phone,1,400.0,2019-05-11 14:40:00,476 6th St, San Francisco,CA,94016 +203392,USB-C Charging Cable,1,11.95,2019-05-11 14:40:00,476 6th St, San Francisco,CA,94016 +203393,Wired Headphones,1,11.99,2019-05-28 18:20:00,509 Spruce St, Austin,TX,73301 +203394,USB-C Charging Cable,1,11.95,2019-05-31 20:52:00,573 Lakeview St, Boston,MA,02215 +203395,AAA Batteries (4-pack),3,2.99,2019-05-02 21:05:00,129 Dogwood St, New York City,NY,10001 +203395,AAA Batteries (4-pack),2,2.99,2019-05-02 21:05:00,129 Dogwood St, New York City,NY,10001 +203396,AA Batteries (4-pack),2,3.84,2019-05-30 16:26:00,768 North St, New York City,NY,10001 +203397,AA Batteries (4-pack),1,3.84,2019-05-25 10:36:00,194 River St, San Francisco,CA,94016 +203398,Bose SoundSport Headphones,1,99.99,2019-05-01 10:55:00,97 Maple St, Seattle,WA,98101 +203399,Lightning Charging Cable,1,14.95,2019-05-07 09:26:00,621 14th St, Seattle,WA,98101 +203400,Lightning Charging Cable,1,14.95,2019-05-03 17:06:00,63 Lincoln St, Dallas,TX,75001 +203401,AA Batteries (4-pack),1,3.84,2019-05-26 19:40:00,169 River St, Boston,MA,02215 +203402,iPhone,1,700.0,2019-05-09 14:38:00,646 1st St, Los Angeles,CA,90001 +203403,Apple Airpods Headphones,1,150.0,2019-05-06 04:22:00,386 Highland St, Los Angeles,CA,90001 +203404,Google Phone,1,600.0,2019-05-11 22:32:00,152 Lake St, San Francisco,CA,94016 +203405,27in 4K Gaming Monitor,1,389.99,2019-05-28 05:35:00,93 9th St, San Francisco,CA,94016 +203406,Flatscreen TV,1,300.0,2019-05-20 17:19:00,432 7th St, Boston,MA,02215 +203407,Apple Airpods Headphones,1,150.0,2019-05-17 19:03:00,264 Hickory St, Los Angeles,CA,90001 +203408,USB-C Charging Cable,1,11.95,2019-05-04 19:10:00,489 Center St, Atlanta,GA,30301 +203409,Macbook Pro Laptop,1,1700.0,2019-05-05 12:02:00,734 8th St, Austin,TX,73301 +203410,Lightning Charging Cable,1,14.95,2019-05-16 12:06:00,37 Adams St, Los Angeles,CA,90001 +203411,ThinkPad Laptop,1,999.99,2019-05-16 10:20:00,616 Lincoln St, Atlanta,GA,30301 +203412,AA Batteries (4-pack),1,3.84,2019-05-03 21:59:00,812 Highland St, Atlanta,GA,30301 +203413,Wired Headphones,1,11.99,2019-05-14 16:13:00,371 Cedar St, Portland,OR,97035 +203414,AA Batteries (4-pack),3,3.84,2019-05-02 20:07:00,581 Jackson St, Dallas,TX,75001 +203415,AAA Batteries (4-pack),1,2.99,2019-05-20 02:36:00,961 South St, New York City,NY,10001 +203416,27in 4K Gaming Monitor,1,389.99,2019-05-15 20:37:00,804 Ridge St, Boston,MA,02215 +203417,USB-C Charging Cable,1,11.95,2019-05-27 22:57:00,749 8th St, San Francisco,CA,94016 +203418,Wired Headphones,1,11.99,2019-05-08 19:47:00,155 Sunset St, Portland,OR,97035 +203419,Wired Headphones,1,11.99,2019-05-18 19:49:00,682 Main St, Portland,OR,97035 +203420,USB-C Charging Cable,1,11.95,2019-05-04 19:37:00,227 Johnson St, New York City,NY,10001 +203421,Macbook Pro Laptop,1,1700.0,2019-05-16 09:51:00,184 7th St, Boston,MA,02215 +203422,iPhone,1,700.0,2019-05-28 19:31:00,381 10th St, Seattle,WA,98101 +203422,Lightning Charging Cable,1,14.95,2019-05-28 19:31:00,381 10th St, Seattle,WA,98101 +203423,AAA Batteries (4-pack),3,2.99,2019-05-26 13:26:00,152 Cherry St, Los Angeles,CA,90001 +203424,USB-C Charging Cable,1,11.95,2019-05-18 15:29:00,70 Hickory St, Dallas,TX,75001 +203425,AA Batteries (4-pack),1,3.84,2019-05-03 22:04:00,953 Elm St, New York City,NY,10001 +203426,Lightning Charging Cable,1,14.95,2019-05-17 12:08:00,841 Maple St, Atlanta,GA,30301 +203427,USB-C Charging Cable,2,11.95,2019-05-14 10:54:00,89 Madison St, Dallas,TX,75001 +203428,USB-C Charging Cable,1,11.95,2019-05-20 17:45:00,428 4th St, Los Angeles,CA,90001 +203429,Wired Headphones,1,11.99,2019-05-01 11:00:00,330 Meadow St, San Francisco,CA,94016 +203430,Wired Headphones,1,11.99,2019-05-12 10:57:00,618 8th St, Boston,MA,02215 +203431,AA Batteries (4-pack),1,3.84,2019-05-25 19:39:00,810 Walnut St, New York City,NY,10001 +203432,USB-C Charging Cable,1,11.95,2019-05-10 18:19:00,342 West St, San Francisco,CA,94016 +203433,AAA Batteries (4-pack),3,2.99,2019-05-31 18:57:00,436 5th St, Austin,TX,73301 +203434,AA Batteries (4-pack),1,3.84,2019-05-21 09:55:00,888 Highland St, Los Angeles,CA,90001 +203435,USB-C Charging Cable,1,11.95,2019-05-23 23:25:00,679 Hickory St, Los Angeles,CA,90001 +203436,AA Batteries (4-pack),1,3.84,2019-05-15 08:03:00,351 Main St, New York City,NY,10001 +203437,iPhone,1,700.0,2019-05-01 18:21:00,443 Lake St, San Francisco,CA,94016 +203437,Wired Headphones,1,11.99,2019-05-01 18:21:00,443 Lake St, San Francisco,CA,94016 +203438,20in Monitor,1,109.99,2019-05-08 19:52:00,718 Hill St, San Francisco,CA,94016 +203439,Wired Headphones,1,11.99,2019-05-30 21:40:00,66 Madison St, Dallas,TX,75001 +203440,iPhone,1,700.0,2019-05-09 20:26:00,24 Sunset St, Los Angeles,CA,90001 +203441,USB-C Charging Cable,1,11.95,2019-05-20 14:38:00,202 Center St, Atlanta,GA,30301 +203442,USB-C Charging Cable,1,11.95,2019-05-06 21:24:00,494 14th St, Dallas,TX,75001 +203443,Apple Airpods Headphones,1,150.0,2019-05-11 18:49:00,328 Meadow St, New York City,NY,10001 +203444,Bose SoundSport Headphones,2,99.99,2019-05-29 22:11:00,931 Jefferson St, Austin,TX,73301 +203445,Apple Airpods Headphones,1,150.0,2019-05-05 18:15:00,922 12th St, Portland,OR,97035 +203446,ThinkPad Laptop,1,999.99,2019-05-17 09:40:00,492 River St, New York City,NY,10001 +203447,Wired Headphones,1,11.99,2019-05-25 13:13:00,980 Meadow St, San Francisco,CA,94016 +203448,Bose SoundSport Headphones,1,99.99,2019-05-27 12:36:00,391 Lincoln St, Los Angeles,CA,90001 +203449,Apple Airpods Headphones,1,150.0,2019-05-23 12:59:00,277 Johnson St, Dallas,TX,75001 +203450,Apple Airpods Headphones,1,150.0,2019-05-23 22:50:00,256 North St, Los Angeles,CA,90001 +203450,Google Phone,1,600.0,2019-05-23 22:50:00,256 North St, Los Angeles,CA,90001 +203451,AA Batteries (4-pack),1,3.84,2019-05-21 20:00:00,124 Highland St, Dallas,TX,75001 +203452,Wired Headphones,1,11.99,2019-05-31 10:33:00,64 Willow St, Los Angeles,CA,90001 +203453,AAA Batteries (4-pack),2,2.99,2019-05-09 17:42:00,814 Meadow St, Seattle,WA,98101 +203454,Wired Headphones,4,11.99,2019-05-25 10:06:00,548 Ridge St, San Francisco,CA,94016 +203455,Apple Airpods Headphones,1,150.0,2019-05-06 23:47:00,347 14th St, Los Angeles,CA,90001 +203456,AAA Batteries (4-pack),1,2.99,2019-05-13 16:30:00,217 Dogwood St, Seattle,WA,98101 +203457,Wired Headphones,1,11.99,2019-05-16 19:49:00,204 Main St, Boston,MA,02215 +203458,AA Batteries (4-pack),1,3.84,2019-05-23 06:50:00,599 Lakeview St, New York City,NY,10001 +203459,AAA Batteries (4-pack),1,2.99,2019-05-06 08:13:00,418 11th St, Portland,OR,97035 +203460,AAA Batteries (4-pack),1,2.99,2019-05-09 15:17:00,748 10th St, San Francisco,CA,94016 +203461,Macbook Pro Laptop,1,1700.0,2019-05-11 14:31:00,999 Cherry St, Boston,MA,02215 +203462,Wired Headphones,1,11.99,2019-05-27 12:29:00,954 Adams St, Dallas,TX,75001 +203463,ThinkPad Laptop,1,999.99,2019-05-08 16:33:00,257 Elm St, Dallas,TX,75001 +203464,Wired Headphones,3,11.99,2019-05-04 13:19:00,165 13th St, New York City,NY,10001 +203465,Apple Airpods Headphones,1,150.0,2019-05-25 14:43:00,952 Walnut St, Los Angeles,CA,90001 +203466,AAA Batteries (4-pack),1,2.99,2019-05-07 17:56:00,876 Johnson St, Portland,OR,97035 +203467,Bose SoundSport Headphones,1,99.99,2019-05-25 09:21:00,892 Jefferson St, San Francisco,CA,94016 +203468,27in FHD Monitor,1,149.99,2019-05-14 22:41:00,416 5th St, Austin,TX,73301 +203469,iPhone,1,700.0,2019-05-05 20:28:00,52 Hill St, Atlanta,GA,30301 +203469,Lightning Charging Cable,1,14.95,2019-05-05 20:28:00,52 Hill St, Atlanta,GA,30301 +203470,34in Ultrawide Monitor,1,379.99,2019-05-15 09:12:00,110 Sunset St, Portland,OR,97035 +203471,Wired Headphones,1,11.99,2019-05-12 19:47:00,16 7th St, Dallas,TX,75001 +203471,AA Batteries (4-pack),1,3.84,2019-05-12 19:47:00,16 7th St, Dallas,TX,75001 +203472,AAA Batteries (4-pack),2,2.99,2019-05-11 11:59:00,479 7th St, Seattle,WA,98101 +203473,Wired Headphones,1,11.99,2019-05-05 20:33:00,726 Willow St, Los Angeles,CA,90001 +203474,Bose SoundSport Headphones,1,99.99,2019-05-18 00:13:00,48 2nd St, New York City,NY,10001 +203475,Apple Airpods Headphones,1,150.0,2019-05-23 02:18:00,389 Church St, Austin,TX,73301 +203476,Apple Airpods Headphones,1,150.0,2019-05-14 14:34:00,196 Cherry St, Los Angeles,CA,90001 +203477,34in Ultrawide Monitor,1,379.99,2019-05-20 12:24:00,704 Hickory St, Dallas,TX,75001 +203478,AAA Batteries (4-pack),2,2.99,2019-05-15 09:19:00,758 4th St, New York City,NY,10001 +203479,AA Batteries (4-pack),1,3.84,2019-05-21 21:10:00,312 6th St, New York City,NY,10001 +203480,Apple Airpods Headphones,1,150.0,2019-05-29 22:58:00,692 Cherry St, Los Angeles,CA,90001 +203481,ThinkPad Laptop,1,999.99,2019-05-15 16:52:00,964 Wilson St, Dallas,TX,75001 +203482,USB-C Charging Cable,1,11.95,2019-05-24 08:42:00,821 12th St, Boston,MA,02215 +203483,Wired Headphones,1,11.99,2019-05-03 09:05:00,750 Adams St, San Francisco,CA,94016 +203484,Flatscreen TV,1,300.0,2019-05-17 11:03:00,877 Elm St, Los Angeles,CA,90001 +203485,iPhone,1,700.0,2019-05-10 09:59:00,612 Wilson St, Boston,MA,02215 +203485,Lightning Charging Cable,1,14.95,2019-05-10 09:59:00,612 Wilson St, Boston,MA,02215 +203486,AA Batteries (4-pack),1,3.84,2019-05-18 11:25:00,160 Center St, New York City,NY,10001 +203487,Apple Airpods Headphones,1,150.0,2019-05-30 18:21:00,366 Sunset St, Austin,TX,73301 +203488,USB-C Charging Cable,1,11.95,2019-05-07 08:29:00,953 Meadow St, Seattle,WA,98101 +203489,AA Batteries (4-pack),1,3.84,2019-05-11 17:27:00,871 Cedar St, New York City,NY,10001 +203490,Apple Airpods Headphones,1,150.0,2019-05-02 15:21:00,171 Lincoln St, New York City,NY,10001 +203491,USB-C Charging Cable,1,11.95,2019-05-11 14:27:00,87 Spruce St, San Francisco,CA,94016 +203492,iPhone,1,700.0,2019-05-12 07:45:00,761 South St, Boston,MA,02215 +203493,Bose SoundSport Headphones,1,99.99,2019-05-08 10:47:00,568 Dogwood St, San Francisco,CA,94016 +203494,AA Batteries (4-pack),1,3.84,2019-05-20 15:34:00,366 Maple St, Dallas,TX,75001 +203495,Lightning Charging Cable,1,14.95,2019-05-08 10:40:00,237 Hill St, Atlanta,GA,30301 +203496,Apple Airpods Headphones,1,150.0,2019-05-22 09:02:00,653 Cedar St, New York City,NY,10001 +203497,USB-C Charging Cable,1,11.95,2019-05-20 09:38:00,583 Forest St, Austin,TX,73301 +203498,20in Monitor,1,109.99,2019-05-09 09:13:00,344 Lincoln St, San Francisco,CA,94016 +203499,USB-C Charging Cable,1,11.95,2019-05-28 15:19:00,207 Wilson St, Seattle,WA,98101 +203500,LG Washing Machine,1,600.0,2019-05-25 19:12:00,229 Washington St, San Francisco,CA,94016 +203501,AAA Batteries (4-pack),1,2.99,2019-05-08 16:48:00,642 Hill St, San Francisco,CA,94016 +203502,AA Batteries (4-pack),1,3.84,2019-05-24 17:49:00,601 Lake St, Seattle,WA,98101 +203503,AAA Batteries (4-pack),1,2.99,2019-05-27 14:28:00,511 Center St, Los Angeles,CA,90001 +203504,iPhone,1,700.0,2019-05-16 22:53:00,772 Adams St, San Francisco,CA,94016 +203505,Wired Headphones,2,11.99,2019-05-26 18:39:00,354 Cedar St, Seattle,WA,98101 +203506,USB-C Charging Cable,1,11.95,2019-05-05 18:33:00,144 Main St, Portland,OR,97035 +203507,USB-C Charging Cable,1,11.95,2019-05-27 18:20:00,894 10th St, San Francisco,CA,94016 +203508,USB-C Charging Cable,1,11.95,2019-05-15 09:42:00,586 1st St, Dallas,TX,75001 +203509,USB-C Charging Cable,1,11.95,2019-05-21 14:04:00,49 River St, Austin,TX,73301 +203510,AA Batteries (4-pack),1,3.84,2019-05-11 16:15:00,433 South St, Portland,OR,97035 +203511,iPhone,1,700.0,2019-05-02 22:46:00,553 Meadow St, Los Angeles,CA,90001 +203512,Wired Headphones,1,11.99,2019-05-10 00:59:00,122 Elm St, Los Angeles,CA,90001 +203513,34in Ultrawide Monitor,1,379.99,2019-05-18 07:40:00,239 Lake St, Seattle,WA,98101 +203514,34in Ultrawide Monitor,1,379.99,2019-05-11 08:04:00,281 Wilson St, Boston,MA,02215 +203515,Lightning Charging Cable,2,14.95,2019-05-20 20:05:00,59 Lake St, San Francisco,CA,94016 +203516,Flatscreen TV,1,300.0,2019-05-24 18:24:00,938 Johnson St, San Francisco,CA,94016 +203517,Lightning Charging Cable,1,14.95,2019-05-17 08:07:00,538 Maple St, Boston,MA,02215 +203518,Google Phone,1,600.0,2019-05-08 17:54:00,150 Sunset St, Seattle,WA,98101 +203518,Apple Airpods Headphones,1,150.0,2019-05-08 17:54:00,150 Sunset St, Seattle,WA,98101 +203519,20in Monitor,1,109.99,2019-05-06 10:57:00,154 Maple St, Los Angeles,CA,90001 +203520,Vareebadd Phone,1,400.0,2019-05-24 10:05:00,972 Madison St, San Francisco,CA,94016 +203521,Bose SoundSport Headphones,1,99.99,2019-05-24 01:12:00,295 Park St, Atlanta,GA,30301 +203522,Lightning Charging Cable,2,14.95,2019-05-22 08:11:00,303 13th St, Los Angeles,CA,90001 +203523,Google Phone,1,600.0,2019-05-07 17:26:00,577 Walnut St, Atlanta,GA,30301 +203524,Wired Headphones,1,11.99,2019-05-20 09:54:00,842 Jefferson St, New York City,NY,10001 +203525,Macbook Pro Laptop,1,1700.0,2019-05-03 13:57:00,848 North St, San Francisco,CA,94016 +203526,Apple Airpods Headphones,1,150.0,2019-05-10 11:50:00,397 Meadow St, Los Angeles,CA,90001 +203527,Macbook Pro Laptop,1,1700.0,2019-05-06 11:33:00,969 Johnson St, San Francisco,CA,94016 +203528,USB-C Charging Cable,2,11.95,2019-05-28 13:13:00,368 2nd St, Austin,TX,73301 +203529,20in Monitor,1,109.99,2019-05-02 11:23:00,431 Willow St, Los Angeles,CA,90001 +203530,27in FHD Monitor,1,149.99,2019-05-15 20:11:00,352 Lakeview St, San Francisco,CA,94016 +203531,USB-C Charging Cable,2,11.95,2019-05-14 04:45:00,946 Lincoln St, Dallas,TX,75001 +203532,AAA Batteries (4-pack),1,2.99,2019-05-28 11:49:00,208 Highland St, Dallas,TX,75001 +203533,AAA Batteries (4-pack),2,2.99,2019-05-15 13:38:00,602 Dogwood St, Dallas,TX,75001 +203534,AAA Batteries (4-pack),1,2.99,2019-05-21 19:15:00,670 1st St, San Francisco,CA,94016 +203535,27in FHD Monitor,1,149.99,2019-05-10 12:44:00,317 Park St, Dallas,TX,75001 +203536,Wired Headphones,1,11.99,2019-05-31 00:15:00,466 12th St, Seattle,WA,98101 +203537,Wired Headphones,1,11.99,2019-05-12 13:35:00,276 5th St, Boston,MA,02215 +203538,AAA Batteries (4-pack),1,2.99,2019-05-09 12:11:00,992 Church St, San Francisco,CA,94016 +203539,USB-C Charging Cable,1,11.95,2019-05-17 09:07:00,695 13th St, Atlanta,GA,30301 +203540,Apple Airpods Headphones,1,150.0,2019-05-28 11:33:00,428 Highland St, Dallas,TX,75001 +203541,27in 4K Gaming Monitor,1,389.99,2019-05-04 23:54:00,495 5th St, San Francisco,CA,94016 +203542,Lightning Charging Cable,2,14.95,2019-05-19 22:19:00,511 Center St, Atlanta,GA,30301 +203543,Macbook Pro Laptop,1,1700.0,2019-05-22 19:09:00,897 8th St, San Francisco,CA,94016 +203544,iPhone,1,700.0,2019-05-07 02:03:00,175 Wilson St, Atlanta,GA,30301 +203545,AA Batteries (4-pack),2,3.84,2019-05-21 08:41:00,16 7th St, San Francisco,CA,94016 +203546,AA Batteries (4-pack),1,3.84,2019-05-31 19:14:00,558 West St, Seattle,WA,98101 +203547,USB-C Charging Cable,1,11.95,2019-05-24 14:07:00,58 6th St, New York City,NY,10001 +203548,USB-C Charging Cable,1,11.95,2019-05-17 17:43:00,690 Sunset St, Dallas,TX,75001 +203549,Apple Airpods Headphones,1,150.0,2019-05-29 09:04:00,141 Center St, Los Angeles,CA,90001 +203550,AA Batteries (4-pack),1,3.84,2019-05-02 11:32:00,731 Jefferson St, New York City,NY,10001 +203551,Lightning Charging Cable,1,14.95,2019-05-06 08:29:00,171 Madison St, San Francisco,CA,94016 +203552,USB-C Charging Cable,1,11.95,2019-05-11 20:20:00,197 9th St, Boston,MA,02215 +203553,Lightning Charging Cable,1,14.95,2019-05-28 13:28:00,333 8th St, Boston,MA,02215 +203554,AAA Batteries (4-pack),1,2.99,2019-05-10 19:31:00,103 13th St, Boston,MA,02215 +203555,AAA Batteries (4-pack),1,2.99,2019-05-06 18:18:00,97 Madison St, Boston,MA,02215 +203556,Lightning Charging Cable,1,14.95,2019-05-07 11:14:00,316 Elm St, Dallas,TX,75001 +203557,Apple Airpods Headphones,1,150.0,2019-05-31 17:16:00,982 North St, Los Angeles,CA,90001 +203558,34in Ultrawide Monitor,1,379.99,2019-05-01 18:49:00,336 Adams St, San Francisco,CA,94016 +203559,Bose SoundSport Headphones,1,99.99,2019-05-11 13:19:00,827 Meadow St, New York City,NY,10001 +203560,AA Batteries (4-pack),1,3.84,2019-05-22 22:19:00,63 River St, Los Angeles,CA,90001 +203561,AA Batteries (4-pack),2,3.84,2019-05-04 19:19:00,560 Jackson St, Portland,OR,97035 +203562,iPhone,1,700.0,2019-05-29 15:21:00,196 9th St, Portland,OR,97035 +203563,AAA Batteries (4-pack),1,2.99,2019-05-22 22:33:00,191 Walnut St, San Francisco,CA,94016 +203564,AAA Batteries (4-pack),1,2.99,2019-05-11 09:00:00,90 Elm St, Boston,MA,02215 +203565,Lightning Charging Cable,1,14.95,2019-05-04 09:35:00,600 Cedar St, San Francisco,CA,94016 +203566,AAA Batteries (4-pack),1,2.99,2019-05-16 18:13:00,555 10th St, Dallas,TX,75001 +203567,Lightning Charging Cable,1,14.95,2019-05-25 22:03:00,800 South St, San Francisco,CA,94016 +203568,AAA Batteries (4-pack),2,2.99,2019-05-20 19:44:00,416 Park St, Los Angeles,CA,90001 +203569,Lightning Charging Cable,1,14.95,2019-05-03 14:40:00,240 7th St, San Francisco,CA,94016 +203570,AA Batteries (4-pack),1,3.84,2019-05-06 18:48:00,492 Adams St, Austin,TX,73301 +203571,USB-C Charging Cable,1,11.95,2019-05-17 12:46:00,751 Meadow St, Seattle,WA,98101 +203572,Wired Headphones,1,11.99,2019-05-27 07:41:00,284 7th St, San Francisco,CA,94016 +203573,27in FHD Monitor,1,149.99,2019-05-05 08:17:00,710 Adams St, Los Angeles,CA,90001 +203574,Apple Airpods Headphones,1,150.0,2019-05-17 20:28:00,681 Maple St, Atlanta,GA,30301 +203575,27in 4K Gaming Monitor,1,389.99,2019-05-18 11:32:00,962 Cherry St, New York City,NY,10001 +203576,Wired Headphones,1,11.99,2019-05-03 09:04:00,434 9th St, San Francisco,CA,94016 +203577,AAA Batteries (4-pack),1,2.99,2019-05-06 19:13:00,782 Washington St, Portland,OR,97035 +203578,Flatscreen TV,1,300.0,2019-05-20 08:46:00,525 Chestnut St, Los Angeles,CA,90001 +203579,AAA Batteries (4-pack),1,2.99,2019-05-09 01:09:00,733 Willow St, San Francisco,CA,94016 +203580,USB-C Charging Cable,2,11.95,2019-05-07 13:51:00,345 Cherry St, New York City,NY,10001 +203581,27in 4K Gaming Monitor,1,389.99,2019-05-21 19:23:00,500 Spruce St, Los Angeles,CA,90001 +203582,Vareebadd Phone,1,400.0,2019-05-07 18:22:00,669 Cedar St, Boston,MA,02215 +203582,USB-C Charging Cable,1,11.95,2019-05-07 18:22:00,669 Cedar St, Boston,MA,02215 +203583,Lightning Charging Cable,1,14.95,2019-05-18 06:42:00,840 Johnson St, Los Angeles,CA,90001 +203584,34in Ultrawide Monitor,1,379.99,2019-05-30 19:39:00,407 Church St, Austin,TX,73301 +203585,Wired Headphones,1,11.99,2019-05-19 06:48:00,551 14th St, Los Angeles,CA,90001 +203586,27in FHD Monitor,1,149.99,2019-05-09 19:42:00,817 Lincoln St, San Francisco,CA,94016 +203587,ThinkPad Laptop,1,999.99,2019-05-08 20:45:00,526 Lincoln St, Dallas,TX,75001 +203588,Apple Airpods Headphones,1,150.0,2019-05-23 19:44:00,370 Church St, San Francisco,CA,94016 +203589,27in FHD Monitor,1,149.99,2019-05-31 20:37:00,95 Hickory St, San Francisco,CA,94016 +203590,Lightning Charging Cable,1,14.95,2019-05-11 10:17:00,201 Maple St, Boston,MA,02215 +203591,iPhone,1,700.0,2019-05-17 13:38:00,332 Park St, Portland,OR,97035 +203591,Lightning Charging Cable,1,14.95,2019-05-17 13:38:00,332 Park St, Portland,OR,97035 +203592,Wired Headphones,1,11.99,2019-05-13 15:28:00,417 12th St, Seattle,WA,98101 +203593,AAA Batteries (4-pack),2,2.99,2019-05-13 00:08:00,321 Chestnut St, San Francisco,CA,94016 +203594,Wired Headphones,1,11.99,2019-05-18 11:11:00,971 Hill St, Austin,TX,73301 +203595,USB-C Charging Cable,2,11.95,2019-05-08 15:21:00,844 North St, San Francisco,CA,94016 +203596,USB-C Charging Cable,1,11.95,2019-05-15 11:30:00,311 Walnut St, San Francisco,CA,94016 +203597,AAA Batteries (4-pack),4,2.99,2019-05-07 20:45:00,453 Hickory St, Boston,MA,02215 +203597,USB-C Charging Cable,1,11.95,2019-05-07 20:45:00,453 Hickory St, Boston,MA,02215 +203598,27in FHD Monitor,1,149.99,2019-05-15 10:06:00,152 Center St, Dallas,TX,75001 +203599,Lightning Charging Cable,1,14.95,2019-05-16 21:58:00,448 Walnut St, Boston,MA,02215 +203600,USB-C Charging Cable,1,11.95,2019-05-27 12:47:00,830 Highland St, Seattle,WA,98101 +203601,Wired Headphones,1,11.99,2019-05-01 13:36:00,904 Adams St, Portland,OR,97035 +203602,Apple Airpods Headphones,1,150.0,2019-05-26 01:30:00,939 Sunset St, San Francisco,CA,94016 +203603,Flatscreen TV,1,300.0,2019-05-20 20:32:00,550 Jackson St, Los Angeles,CA,90001 +203604,34in Ultrawide Monitor,1,379.99,2019-05-31 12:23:00,979 Center St, Dallas,TX,75001 +203605,iPhone,1,700.0,2019-05-20 17:58:00,615 North St, Austin,TX,73301 +203606,Flatscreen TV,1,300.0,2019-05-04 15:39:00,20 10th St, Seattle,WA,98101 +203607,Wired Headphones,1,11.99,2019-05-18 21:28:00,519 Church St, Dallas,TX,75001 +203608,Wired Headphones,1,11.99,2019-05-09 20:17:00,195 13th St, Portland,OR,97035 +203608,Vareebadd Phone,1,400.0,2019-05-09 20:17:00,195 13th St, Portland,OR,97035 +203609,Wired Headphones,1,11.99,2019-05-25 12:18:00,891 Maple St, Los Angeles,CA,90001 +203610,AAA Batteries (4-pack),2,2.99,2019-05-12 10:11:00,326 West St, Austin,TX,73301 +203611,USB-C Charging Cable,1,11.95,2019-05-14 06:38:00,388 Meadow St, Los Angeles,CA,90001 +203612,USB-C Charging Cable,1,11.95,2019-05-27 14:22:00,276 7th St, Portland,ME,04101 +203613,Bose SoundSport Headphones,1,99.99,2019-05-19 13:42:00,131 13th St, New York City,NY,10001 +203614,iPhone,1,700.0,2019-05-30 19:27:00,405 14th St, Portland,OR,97035 +203614,Lightning Charging Cable,2,14.95,2019-05-30 19:27:00,405 14th St, Portland,OR,97035 +203614,Wired Headphones,1,11.99,2019-05-30 19:27:00,405 14th St, Portland,OR,97035 +203615,27in FHD Monitor,1,149.99,2019-05-14 16:56:00,10 Pine St, San Francisco,CA,94016 +203616,AAA Batteries (4-pack),3,2.99,2019-05-25 06:11:00,666 Madison St, Atlanta,GA,30301 +203617,Lightning Charging Cable,1,14.95,2019-05-16 15:34:00,509 Maple St, Los Angeles,CA,90001 +203618,USB-C Charging Cable,1,11.95,2019-05-19 18:54:00,281 Church St, San Francisco,CA,94016 +203619,Apple Airpods Headphones,1,150.0,2019-05-28 12:54:00,52 Sunset St, San Francisco,CA,94016 +203620,AAA Batteries (4-pack),1,2.99,2019-05-11 19:44:00,598 Dogwood St, Boston,MA,02215 +203621,USB-C Charging Cable,2,11.95,2019-05-15 10:58:00,187 South St, New York City,NY,10001 +203622,iPhone,1,700.0,2019-05-17 17:55:00,519 South St, San Francisco,CA,94016 +203623,AA Batteries (4-pack),1,3.84,2019-05-08 20:56:00,440 West St, Dallas,TX,75001 +203624,AAA Batteries (4-pack),1,2.99,2019-05-03 15:42:00,378 Main St, Seattle,WA,98101 +203625,AAA Batteries (4-pack),1,2.99,2019-05-13 16:50:00,848 Spruce St, Portland,OR,97035 +203626,27in 4K Gaming Monitor,1,389.99,2019-05-14 14:57:00,883 2nd St, Seattle,WA,98101 +203627,34in Ultrawide Monitor,1,379.99,2019-05-29 00:18:00,189 South St, Dallas,TX,75001 +203628,Lightning Charging Cable,2,14.95,2019-05-30 22:04:00,748 Lake St, San Francisco,CA,94016 +203629,Bose SoundSport Headphones,1,99.99,2019-05-16 18:42:00,268 5th St, Los Angeles,CA,90001 +203630,34in Ultrawide Monitor,1,379.99,2019-05-07 20:30:00,649 Johnson St, San Francisco,CA,94016 +203631,27in 4K Gaming Monitor,1,389.99,2019-05-05 08:07:00,352 Highland St, Boston,MA,02215 +203632,USB-C Charging Cable,1,11.95,2019-05-27 21:16:00,764 Adams St, Austin,TX,73301 +203633,27in FHD Monitor,1,149.99,2019-05-16 13:16:00,561 Cherry St, Atlanta,GA,30301 +203634,Wired Headphones,1,11.99,2019-05-26 17:46:00,911 Pine St, New York City,NY,10001 +203635,Bose SoundSport Headphones,1,99.99,2019-05-08 14:28:00,710 13th St, Seattle,WA,98101 +203636,AAA Batteries (4-pack),2,2.99,2019-05-05 18:33:00,996 Jefferson St, New York City,NY,10001 +203637,ThinkPad Laptop,1,999.99,2019-05-18 21:38:00,669 6th St, San Francisco,CA,94016 +203638,AAA Batteries (4-pack),1,2.99,2019-05-22 14:29:00,384 Chestnut St, Dallas,TX,75001 +203639,Bose SoundSport Headphones,1,99.99,2019-05-29 13:40:00,1 Lincoln St, Portland,ME,04101 +203640,AAA Batteries (4-pack),1,2.99,2019-05-25 21:11:00,324 Wilson St, Boston,MA,02215 +203641,Lightning Charging Cable,2,14.95,2019-05-25 01:02:00,316 Meadow St, New York City,NY,10001 +203642,AA Batteries (4-pack),1,3.84,2019-05-16 14:59:00,953 12th St, Los Angeles,CA,90001 +203643,AA Batteries (4-pack),1,3.84,2019-05-13 19:55:00,241 14th St, New York City,NY,10001 +203644,AA Batteries (4-pack),1,3.84,2019-05-30 10:23:00,964 Elm St, Portland,ME,04101 +203645,AA Batteries (4-pack),1,3.84,2019-05-13 21:56:00,936 Lakeview St, Austin,TX,73301 +203646,Flatscreen TV,1,300.0,2019-05-02 15:51:00,47 Meadow St, Austin,TX,73301 +203647,USB-C Charging Cable,1,11.95,2019-05-09 01:00:00,763 4th St, Atlanta,GA,30301 +203648,27in 4K Gaming Monitor,1,389.99,2019-05-11 21:52:00,121 Forest St, Atlanta,GA,30301 +203649,Wired Headphones,1,11.99,2019-05-01 12:17:00,733 Ridge St, Atlanta,GA,30301 +203650,Apple Airpods Headphones,1,150.0,2019-05-30 18:19:00,573 12th St, Dallas,TX,75001 +203651,Google Phone,1,600.0,2019-05-14 01:30:00,334 Hickory St, San Francisco,CA,94016 +203652,Apple Airpods Headphones,1,150.0,2019-05-14 13:41:00,671 Willow St, Seattle,WA,98101 +203653,27in 4K Gaming Monitor,1,389.99,2019-05-22 08:40:00,93 11th St, Boston,MA,02215 +203654,27in FHD Monitor,1,149.99,2019-05-22 22:09:00,578 9th St, Atlanta,GA,30301 +203655,Apple Airpods Headphones,1,150.0,2019-05-21 08:47:00,104 1st St, Dallas,TX,75001 +203656,ThinkPad Laptop,1,999.99,2019-05-08 09:01:00,704 Lakeview St, Los Angeles,CA,90001 +203657,Bose SoundSport Headphones,1,99.99,2019-05-07 09:00:00,520 Madison St, Austin,TX,73301 +203658,Wired Headphones,1,11.99,2019-05-14 20:57:00,912 Madison St, New York City,NY,10001 +203659,Lightning Charging Cable,2,14.95,2019-05-07 17:58:00,399 Church St, Los Angeles,CA,90001 +203660,AA Batteries (4-pack),1,3.84,2019-05-01 07:27:00,975 North St, San Francisco,CA,94016 +203661,Bose SoundSport Headphones,1,99.99,2019-05-18 09:47:00,95 11th St, Seattle,WA,98101 +203662,Apple Airpods Headphones,1,150.0,2019-05-02 09:32:00,761 Lincoln St, Boston,MA,02215 +203663,AA Batteries (4-pack),1,3.84,2019-05-23 17:48:00,919 Church St, San Francisco,CA,94016 +203664,Apple Airpods Headphones,1,150.0,2019-05-14 15:20:00,23 Jefferson St, San Francisco,CA,94016 +203665,USB-C Charging Cable,1,11.95,2019-05-05 15:35:00,807 Madison St, New York City,NY,10001 +203666,USB-C Charging Cable,1,11.95,2019-05-24 17:41:00,642 Dogwood St, Atlanta,GA,30301 +203667,Apple Airpods Headphones,1,150.0,2019-05-30 07:42:00,267 Hill St, Boston,MA,02215 +203668,AAA Batteries (4-pack),2,2.99,2019-05-11 22:30:00,293 West St, Boston,MA,02215 +203669,AA Batteries (4-pack),1,3.84,2019-05-28 17:39:00,56 Hickory St, Austin,TX,73301 +203670,Macbook Pro Laptop,1,1700.0,2019-05-13 20:09:00,909 Park St, San Francisco,CA,94016 +203671,AA Batteries (4-pack),2,3.84,2019-05-20 18:16:00,466 River St, Seattle,WA,98101 +203672,ThinkPad Laptop,1,999.99,2019-05-25 16:37:00,212 Jackson St, Portland,OR,97035 +203673,Wired Headphones,1,11.99,2019-05-01 17:18:00,614 14th St, New York City,NY,10001 +203674,USB-C Charging Cable,1,11.95,2019-05-31 02:41:00,937 Wilson St, San Francisco,CA,94016 +203675,AAA Batteries (4-pack),3,2.99,2019-05-09 12:47:00,964 8th St, Dallas,TX,75001 +203676,Vareebadd Phone,1,400.0,2019-05-20 21:42:00,234 Jefferson St, Boston,MA,02215 +203676,USB-C Charging Cable,1,11.95,2019-05-20 21:42:00,234 Jefferson St, Boston,MA,02215 +203677,iPhone,1,700.0,2019-05-08 11:10:00,598 Lincoln St, Austin,TX,73301 +203678,Apple Airpods Headphones,1,150.0,2019-05-05 00:15:00,495 Highland St, Los Angeles,CA,90001 +203679,Flatscreen TV,1,300.0,2019-05-19 23:30:00,230 10th St, Dallas,TX,75001 +203680,USB-C Charging Cable,2,11.95,2019-05-16 06:57:00,577 Lincoln St, Boston,MA,02215 +203681,iPhone,1,700.0,2019-05-11 11:00:00,718 14th St, Boston,MA,02215 +203682,Lightning Charging Cable,1,14.95,2019-05-14 09:01:00,967 Lakeview St, San Francisco,CA,94016 +203683,34in Ultrawide Monitor,1,379.99,2019-05-29 13:17:00,1 Lake St, Boston,MA,02215 +203684,Apple Airpods Headphones,1,150.0,2019-05-27 20:04:00,56 Lincoln St, Austin,TX,73301 +203685,27in 4K Gaming Monitor,1,389.99,2019-05-24 21:01:00,317 10th St, San Francisco,CA,94016 +203686,Lightning Charging Cable,1,14.95,2019-05-25 20:32:00,430 12th St, San Francisco,CA,94016 +203687,Bose SoundSport Headphones,1,99.99,2019-05-03 20:01:00,660 14th St, Los Angeles,CA,90001 +203688,Google Phone,1,600.0,2019-05-06 15:27:00,196 Lake St, Los Angeles,CA,90001 +203689,Wired Headphones,1,11.99,2019-05-07 19:38:00,727 1st St, Los Angeles,CA,90001 +203690,USB-C Charging Cable,2,11.95,2019-05-25 09:14:00,605 Meadow St, Los Angeles,CA,90001 +203691,Bose SoundSport Headphones,1,99.99,2019-05-15 09:14:00,44 Johnson St, Portland,OR,97035 +203692,Flatscreen TV,1,300.0,2019-05-02 14:13:00,745 Cherry St, Austin,TX,73301 +203693,Lightning Charging Cable,2,14.95,2019-05-19 15:58:00,791 12th St, Atlanta,GA,30301 +203694,USB-C Charging Cable,2,11.95,2019-05-29 14:28:00,410 7th St, Los Angeles,CA,90001 +203695,Wired Headphones,1,11.99,2019-05-22 14:34:00,978 12th St, Atlanta,GA,30301 +203696,Lightning Charging Cable,1,14.95,2019-05-03 12:28:00,747 Hill St, Los Angeles,CA,90001 +203697,Wired Headphones,1,11.99,2019-05-04 18:21:00,985 11th St, San Francisco,CA,94016 +203698,USB-C Charging Cable,1,11.95,2019-05-18 10:15:00,345 Spruce St, Dallas,TX,75001 +203699,ThinkPad Laptop,1,999.99,2019-05-15 17:37:00,334 Wilson St, San Francisco,CA,94016 +203700,Flatscreen TV,1,300.0,2019-05-10 20:15:00,460 9th St, Los Angeles,CA,90001 +203701,USB-C Charging Cable,2,11.95,2019-05-11 21:31:00,366 Ridge St, San Francisco,CA,94016 +203702,27in 4K Gaming Monitor,1,389.99,2019-05-09 22:01:00,86 Chestnut St, Dallas,TX,75001 +203703,USB-C Charging Cable,2,11.95,2019-05-07 01:21:00,189 Jackson St, San Francisco,CA,94016 +203704,AA Batteries (4-pack),1,3.84,2019-05-01 19:04:00,90 Cedar St, New York City,NY,10001 +203705,Lightning Charging Cable,1,14.95,2019-05-12 09:39:00,534 Dogwood St, San Francisco,CA,94016 +203706,27in 4K Gaming Monitor,1,389.99,2019-05-16 16:26:00,993 10th St, San Francisco,CA,94016 +203707,Lightning Charging Cable,1,14.95,2019-05-23 20:52:00,352 4th St, San Francisco,CA,94016 +203708,Lightning Charging Cable,1,14.95,2019-05-11 00:13:00,86 5th St, San Francisco,CA,94016 +203709,AA Batteries (4-pack),1,3.84,2019-05-19 20:47:00,115 Madison St, Dallas,TX,75001 +203710,34in Ultrawide Monitor,1,379.99,2019-05-19 15:14:00,849 Main St, Boston,MA,02215 +203711,AA Batteries (4-pack),1,3.84,2019-05-24 02:11:00,479 14th St, San Francisco,CA,94016 +203712,Lightning Charging Cable,1,14.95,2019-05-03 14:37:00,17 5th St, Boston,MA,02215 +203713,USB-C Charging Cable,1,11.95,2019-05-29 10:49:00,648 Forest St, Los Angeles,CA,90001 +203714,USB-C Charging Cable,1,11.95,2019-05-10 17:01:00,388 Wilson St, Seattle,WA,98101 +203715,Lightning Charging Cable,1,14.95,2019-05-04 18:44:00,230 9th St, New York City,NY,10001 +203716,USB-C Charging Cable,2,11.95,2019-05-03 11:04:00,88 1st St, Portland,OR,97035 +203717,Flatscreen TV,1,300.0,2019-05-13 12:33:00,865 10th St, Los Angeles,CA,90001 +203718,Bose SoundSport Headphones,1,99.99,2019-05-05 22:00:00,196 10th St, Portland,ME,04101 +203719,Apple Airpods Headphones,1,150.0,2019-05-03 11:10:00,992 Cedar St, New York City,NY,10001 +203720,Wired Headphones,1,11.99,2019-05-14 09:47:00,562 8th St, Dallas,TX,75001 +203721,AAA Batteries (4-pack),1,2.99,2019-05-30 19:57:00,617 Wilson St, San Francisco,CA,94016 +203722,USB-C Charging Cable,1,11.95,2019-05-17 23:54:00,384 Cherry St, Boston,MA,02215 +203723,AAA Batteries (4-pack),1,2.99,2019-05-12 19:32:00,617 Park St, Los Angeles,CA,90001 +203724,AA Batteries (4-pack),1,3.84,2019-05-20 01:26:00,150 5th St, New York City,NY,10001 +203725,34in Ultrawide Monitor,1,379.99,2019-05-20 23:12:00,609 Johnson St, Los Angeles,CA,90001 +203726,Bose SoundSport Headphones,1,99.99,2019-05-23 17:33:00,808 Center St, Portland,OR,97035 +203727,AAA Batteries (4-pack),1,2.99,2019-05-29 18:42:00,368 12th St, Atlanta,GA,30301 +203728,20in Monitor,1,109.99,2019-05-09 11:42:00,914 12th St, San Francisco,CA,94016 +203729,Bose SoundSport Headphones,1,99.99,2019-05-30 21:47:00,909 Elm St, Seattle,WA,98101 +203730,USB-C Charging Cable,2,11.95,2019-05-12 10:29:00,608 Madison St, Dallas,TX,75001 +203731,USB-C Charging Cable,1,11.95,2019-05-27 20:29:00,487 4th St, Portland,ME,04101 +203732,27in FHD Monitor,1,149.99,2019-05-22 11:36:00,148 14th St, San Francisco,CA,94016 +203733,27in FHD Monitor,1,149.99,2019-05-06 12:52:00,293 Cherry St, Boston,MA,02215 +203734,Wired Headphones,1,11.99,2019-05-13 17:05:00,404 Madison St, New York City,NY,10001 +203735,USB-C Charging Cable,1,11.95,2019-05-17 06:06:00,9 Sunset St, Austin,TX,73301 +203736,USB-C Charging Cable,2,11.95,2019-05-12 20:48:00,879 North St, Boston,MA,02215 +203736,AAA Batteries (4-pack),1,2.99,2019-05-12 20:48:00,879 North St, Boston,MA,02215 +203737,Apple Airpods Headphones,1,150.0,2019-05-23 14:28:00,426 8th St, Los Angeles,CA,90001 +203738,AA Batteries (4-pack),1,3.84,2019-05-03 21:27:00,180 Johnson St, San Francisco,CA,94016 +203739,Apple Airpods Headphones,1,150.0,2019-05-12 15:27:00,834 Hickory St, San Francisco,CA,94016 +203740,USB-C Charging Cable,1,11.95,2019-05-27 12:13:00,853 Spruce St, Los Angeles,CA,90001 +203741,iPhone,1,700.0,2019-05-06 18:20:00,217 Pine St, New York City,NY,10001 +203741,Wired Headphones,1,11.99,2019-05-06 18:20:00,217 Pine St, New York City,NY,10001 +203742,Bose SoundSport Headphones,1,99.99,2019-05-27 17:57:00,325 Willow St, Portland,OR,97035 +203743,Lightning Charging Cable,1,14.95,2019-05-31 18:40:00,918 Spruce St, Boston,MA,02215 +203744,Apple Airpods Headphones,1,150.0,2019-05-21 21:25:00,988 6th St, San Francisco,CA,94016 +203745,USB-C Charging Cable,1,11.95,2019-05-27 14:04:00,389 North St, Los Angeles,CA,90001 +203746,27in FHD Monitor,1,149.99,2019-05-30 19:08:00,755 Hill St, Seattle,WA,98101 +203747,iPhone,1,700.0,2019-05-20 12:02:00,926 Washington St, San Francisco,CA,94016 +203748,AAA Batteries (4-pack),2,2.99,2019-05-22 19:42:00,238 Meadow St, Portland,OR,97035 +203749,Flatscreen TV,1,300.0,2019-05-15 01:40:00,747 14th St, San Francisco,CA,94016 +203750,Wired Headphones,1,11.99,2019-05-02 12:18:00,859 Adams St, Atlanta,GA,30301 +203751,Lightning Charging Cable,1,14.95,2019-05-06 17:32:00,717 Hill St, Dallas,TX,75001 +203752,Flatscreen TV,1,300.0,2019-05-21 08:09:00,269 Adams St, Los Angeles,CA,90001 +203753,34in Ultrawide Monitor,1,379.99,2019-05-08 08:46:00,779 Pine St, San Francisco,CA,94016 +203754,27in FHD Monitor,1,149.99,2019-05-05 20:57:00,121 Hickory St, Los Angeles,CA,90001 +203755,AAA Batteries (4-pack),4,2.99,2019-05-05 14:31:00,854 Willow St, New York City,NY,10001 +203756,Wired Headphones,1,11.99,2019-05-31 21:52:00,976 Center St, Los Angeles,CA,90001 +203757,34in Ultrawide Monitor,1,379.99,2019-05-18 08:39:00,343 4th St, San Francisco,CA,94016 +203758,Macbook Pro Laptop,1,1700.0,2019-05-08 19:14:00,358 1st St, Seattle,WA,98101 +203759,27in 4K Gaming Monitor,1,389.99,2019-05-23 14:49:00,156 Chestnut St, Los Angeles,CA,90001 +203760,AAA Batteries (4-pack),1,2.99,2019-05-09 17:20:00,193 1st St, New York City,NY,10001 +203761,27in 4K Gaming Monitor,1,389.99,2019-05-30 14:13:00,223 Johnson St, Los Angeles,CA,90001 +203762,Google Phone,1,600.0,2019-05-08 15:37:00,235 14th St, Los Angeles,CA,90001 +203763,USB-C Charging Cable,1,11.95,2019-06-01 01:40:00,857 Church St, San Francisco,CA,94016 +203764,AAA Batteries (4-pack),1,2.99,2019-05-08 14:31:00,567 Lake St, Boston,MA,02215 +203765,Flatscreen TV,1,300.0,2019-05-14 20:16:00,52 Main St, Boston,MA,02215 +203766,AAA Batteries (4-pack),1,2.99,2019-05-06 16:11:00,284 Hickory St, Portland,OR,97035 +203767,Wired Headphones,2,11.99,2019-05-31 17:03:00,170 13th St, Boston,MA,02215 +203768,Lightning Charging Cable,1,14.95,2019-05-06 09:38:00,217 Elm St, Boston,MA,02215 +203769,AAA Batteries (4-pack),1,2.99,2019-05-14 21:31:00,690 11th St, Boston,MA,02215 +203770,AAA Batteries (4-pack),1,2.99,2019-05-22 09:12:00,883 Walnut St, San Francisco,CA,94016 +203771,Google Phone,1,600.0,2019-05-22 11:41:00,776 Main St, Atlanta,GA,30301 +203771,USB-C Charging Cable,1,11.95,2019-05-22 11:41:00,776 Main St, Atlanta,GA,30301 +203772,Bose SoundSport Headphones,1,99.99,2019-05-02 21:21:00,954 12th St, Dallas,TX,75001 +203773,USB-C Charging Cable,1,11.95,2019-05-24 20:03:00,653 Maple St, Los Angeles,CA,90001 +203774,Lightning Charging Cable,1,14.95,2019-05-14 23:11:00,62 6th St, Atlanta,GA,30301 +203775,Bose SoundSport Headphones,1,99.99,2019-05-21 22:01:00,520 Elm St, San Francisco,CA,94016 +203776,Apple Airpods Headphones,1,150.0,2019-05-12 20:36:00,521 Wilson St, Los Angeles,CA,90001 +203777,AA Batteries (4-pack),1,3.84,2019-05-12 15:57:00,90 Lake St, Los Angeles,CA,90001 +203778,AA Batteries (4-pack),1,3.84,2019-05-15 14:54:00,778 Wilson St, New York City,NY,10001 +203779,AAA Batteries (4-pack),1,2.99,2019-05-31 06:50:00,489 Lincoln St, Seattle,WA,98101 +203780,Apple Airpods Headphones,1,150.0,2019-05-18 14:40:00,677 Maple St, Seattle,WA,98101 +203781,Lightning Charging Cable,1,14.95,2019-05-11 11:08:00,738 Main St, Austin,TX,73301 +203782,Apple Airpods Headphones,1,150.0,2019-05-13 01:18:00,340 11th St, San Francisco,CA,94016 +203783,Apple Airpods Headphones,2,150.0,2019-05-17 08:01:00,481 Lakeview St, New York City,NY,10001 +203784,20in Monitor,1,109.99,2019-05-20 19:55:00,213 Spruce St, San Francisco,CA,94016 +203785,Macbook Pro Laptop,1,1700.0,2019-05-31 09:11:00,768 Johnson St, Los Angeles,CA,90001 +203786,Wired Headphones,1,11.99,2019-05-10 13:22:00,115 Willow St, Los Angeles,CA,90001 +203787,AA Batteries (4-pack),1,3.84,2019-05-03 20:14:00,820 6th St, Atlanta,GA,30301 +203788,USB-C Charging Cable,1,11.95,2019-05-10 12:12:00,386 12th St, New York City,NY,10001 +203789,Wired Headphones,1,11.99,2019-05-14 14:26:00,298 Willow St, New York City,NY,10001 +203790,Wired Headphones,1,11.99,2019-05-26 18:59:00,600 Chestnut St, Atlanta,GA,30301 +203791,AA Batteries (4-pack),1,3.84,2019-05-23 22:59:00,565 Park St, Seattle,WA,98101 +203792,Apple Airpods Headphones,1,150.0,2019-05-01 20:27:00,596 Lake St, San Francisco,CA,94016 +203793,34in Ultrawide Monitor,1,379.99,2019-05-19 09:57:00,47 Park St, Atlanta,GA,30301 +203794,Bose SoundSport Headphones,1,99.99,2019-05-25 13:32:00,145 Sunset St, Dallas,TX,75001 +203795,USB-C Charging Cable,1,11.95,2019-05-30 19:19:00,638 Washington St, San Francisco,CA,94016 +203796,AAA Batteries (4-pack),2,2.99,2019-05-01 20:00:00,714 Hill St, Los Angeles,CA,90001 +203797,Google Phone,1,600.0,2019-05-28 14:52:00,338 9th St, New York City,NY,10001 +203798,iPhone,1,700.0,2019-05-04 10:48:00,212 Hill St, Seattle,WA,98101 +203799,27in 4K Gaming Monitor,1,389.99,2019-05-24 21:37:00,632 Sunset St, Dallas,TX,75001 +203800,Lightning Charging Cable,1,14.95,2019-05-31 15:57:00,192 Lake St, Atlanta,GA,30301 +203801,27in 4K Gaming Monitor,1,389.99,2019-05-05 11:29:00,28 Main St, San Francisco,CA,94016 +203802,Lightning Charging Cable,1,14.95,2019-05-20 18:46:00,932 Walnut St, San Francisco,CA,94016 +203803,Lightning Charging Cable,1,14.95,2019-05-30 22:20:00,888 Washington St, Atlanta,GA,30301 +203804,Apple Airpods Headphones,1,150.0,2019-05-26 15:10:00,12 Lake St, Los Angeles,CA,90001 +203805,USB-C Charging Cable,3,11.95,2019-05-26 18:33:00,792 Pine St, Dallas,TX,75001 +203806,USB-C Charging Cable,1,11.95,2019-05-04 16:06:00,335 Center St, San Francisco,CA,94016 +203807,USB-C Charging Cable,1,11.95,2019-05-18 05:31:00,505 Park St, San Francisco,CA,94016 +203808,Flatscreen TV,1,300.0,2019-05-20 09:42:00,777 Pine St, Seattle,WA,98101 +203809,USB-C Charging Cable,1,11.95,2019-05-17 06:34:00,1 Main St, New York City,NY,10001 +203810,Bose SoundSport Headphones,1,99.99,2019-05-18 12:58:00,392 Church St, Portland,OR,97035 +203811,USB-C Charging Cable,1,11.95,2019-05-13 20:00:00,502 Lakeview St, Atlanta,GA,30301 +203812,27in 4K Gaming Monitor,1,389.99,2019-05-21 07:08:00,647 South St, Boston,MA,02215 +203813,AA Batteries (4-pack),1,3.84,2019-05-28 15:14:00,349 Highland St, Los Angeles,CA,90001 +203814,USB-C Charging Cable,2,11.95,2019-05-25 16:35:00,229 Madison St, San Francisco,CA,94016 +203815,AAA Batteries (4-pack),1,2.99,2019-05-30 18:35:00,103 Wilson St, Atlanta,GA,30301 +203816,Flatscreen TV,1,300.0,2019-05-10 22:24:00,315 Johnson St, San Francisco,CA,94016 +203817,Bose SoundSport Headphones,1,99.99,2019-05-01 22:37:00,864 11th St, San Francisco,CA,94016 +203818,USB-C Charging Cable,1,11.95,2019-05-04 12:06:00,540 Highland St, Los Angeles,CA,90001 +203819,Apple Airpods Headphones,1,150.0,2019-05-15 16:32:00,763 Cherry St, Austin,TX,73301 +203820,Macbook Pro Laptop,1,1700.0,2019-05-14 18:14:00,56 13th St, San Francisco,CA,94016 +203821,34in Ultrawide Monitor,1,379.99,2019-05-19 00:21:00,914 Main St, Dallas,TX,75001 +203822,AAA Batteries (4-pack),1,2.99,2019-05-02 12:53:00,159 8th St, Boston,MA,02215 +203823,Apple Airpods Headphones,1,150.0,2019-05-08 21:29:00,77 Center St, Los Angeles,CA,90001 +203824,34in Ultrawide Monitor,1,379.99,2019-05-23 04:49:00,694 Willow St, San Francisco,CA,94016 +203825,AA Batteries (4-pack),2,3.84,2019-05-22 21:13:00,817 8th St, Atlanta,GA,30301 +203826,USB-C Charging Cable,1,11.95,2019-05-13 20:59:00,439 Maple St, Los Angeles,CA,90001 +203827,Flatscreen TV,1,300.0,2019-05-22 11:53:00,252 Church St, Los Angeles,CA,90001 +203828,iPhone,1,700.0,2019-05-19 17:21:00,491 Hill St, San Francisco,CA,94016 +203829,Macbook Pro Laptop,1,1700.0,2019-05-26 09:06:00,243 Walnut St, New York City,NY,10001 +203830,iPhone,1,700.0,2019-05-08 20:20:00,143 Lakeview St, Portland,OR,97035 +203831,20in Monitor,1,109.99,2019-05-01 10:53:00,304 Jackson St, Los Angeles,CA,90001 +203832,Macbook Pro Laptop,1,1700.0,2019-05-11 13:17:00,70 Lakeview St, Seattle,WA,98101 +203833,34in Ultrawide Monitor,1,379.99,2019-05-28 11:08:00,174 Cedar St, Portland,OR,97035 +203834,34in Ultrawide Monitor,1,379.99,2019-05-03 21:20:00,165 Jackson St, San Francisco,CA,94016 +203835,Lightning Charging Cable,1,14.95,2019-05-04 10:49:00,220 Wilson St, Atlanta,GA,30301 +203836,Apple Airpods Headphones,1,150.0,2019-05-10 07:49:00,947 Walnut St, Boston,MA,02215 +203837,27in FHD Monitor,1,149.99,2019-05-30 20:33:00,366 Willow St, New York City,NY,10001 +203838,Macbook Pro Laptop,1,1700.0,2019-05-06 16:16:00,859 Jefferson St, San Francisco,CA,94016 +203839,Lightning Charging Cable,1,14.95,2019-05-31 21:49:00,84 8th St, New York City,NY,10001 +203840,USB-C Charging Cable,1,11.95,2019-05-25 20:45:00,442 North St, Los Angeles,CA,90001 +203841,USB-C Charging Cable,1,11.95,2019-05-02 23:37:00,431 South St, San Francisco,CA,94016 +203842,AA Batteries (4-pack),1,3.84,2019-05-25 22:56:00,161 Lincoln St, Atlanta,GA,30301 +203843,Wired Headphones,1,11.99,2019-05-02 09:07:00,941 1st St, New York City,NY,10001 +203844,AAA Batteries (4-pack),1,2.99,2019-05-17 10:46:00,467 River St, Dallas,TX,75001 +203845,Lightning Charging Cable,1,14.95,2019-05-29 11:12:00,56 Spruce St, Los Angeles,CA,90001 +203846,Lightning Charging Cable,1,14.95,2019-05-23 05:09:00,446 Church St, Seattle,WA,98101 +203847,20in Monitor,1,109.99,2019-05-10 13:46:00,471 Park St, Los Angeles,CA,90001 +203848,27in 4K Gaming Monitor,1,389.99,2019-05-15 09:10:00,511 South St, San Francisco,CA,94016 +203849,34in Ultrawide Monitor,1,379.99,2019-05-31 08:00:00,213 West St, San Francisco,CA,94016 +203850,AAA Batteries (4-pack),1,2.99,2019-05-18 17:17:00,54 Adams St, Dallas,TX,75001 +203851,USB-C Charging Cable,1,11.95,2019-05-23 11:04:00,406 Dogwood St, Atlanta,GA,30301 +203852,Flatscreen TV,1,300.0,2019-05-20 17:00:00,314 Walnut St, Atlanta,GA,30301 +203853,AA Batteries (4-pack),1,3.84,2019-05-22 15:05:00,647 Walnut St, San Francisco,CA,94016 +203854,27in FHD Monitor,1,149.99,2019-05-12 21:27:00,432 Adams St, Seattle,WA,98101 +203855,USB-C Charging Cable,1,11.95,2019-05-04 19:37:00,198 10th St, Portland,OR,97035 +203856,AAA Batteries (4-pack),2,2.99,2019-05-19 15:44:00,22 North St, Dallas,TX,75001 +203857,Apple Airpods Headphones,1,150.0,2019-05-13 15:21:00,140 10th St, San Francisco,CA,94016 +203858,Flatscreen TV,1,300.0,2019-05-21 19:22:00,992 Main St, Los Angeles,CA,90001 +203859,Lightning Charging Cable,1,14.95,2019-05-30 14:58:00,586 Maple St, San Francisco,CA,94016 +203860,27in FHD Monitor,1,149.99,2019-05-28 12:53:00,599 5th St, Boston,MA,02215 +203861,Lightning Charging Cable,1,14.95,2019-05-16 19:18:00,916 Chestnut St, Austin,TX,73301 +203862,AA Batteries (4-pack),1,3.84,2019-05-01 15:08:00,798 Dogwood St, Los Angeles,CA,90001 +203862,USB-C Charging Cable,1,11.95,2019-05-01 15:08:00,798 Dogwood St, Los Angeles,CA,90001 +203863,Lightning Charging Cable,1,14.95,2019-05-28 21:26:00,893 2nd St, San Francisco,CA,94016 +203864,34in Ultrawide Monitor,1,379.99,2019-05-13 16:30:00,626 Johnson St, Austin,TX,73301 +203865,27in 4K Gaming Monitor,1,389.99,2019-05-04 20:08:00,257 7th St, San Francisco,CA,94016 +203866,Apple Airpods Headphones,1,150.0,2019-05-11 09:44:00,914 1st St, Austin,TX,73301 +203867,AA Batteries (4-pack),1,3.84,2019-05-26 12:03:00,236 Jefferson St, San Francisco,CA,94016 +203868,USB-C Charging Cable,1,11.95,2019-05-12 16:58:00,998 Cherry St, Los Angeles,CA,90001 +203869,Bose SoundSport Headphones,1,99.99,2019-05-08 23:47:00,801 7th St, San Francisco,CA,94016 +203870,Wired Headphones,1,11.99,2019-05-31 14:58:00,803 River St, San Francisco,CA,94016 +203871,Apple Airpods Headphones,1,150.0,2019-05-16 19:26:00,456 Dogwood St, Portland,OR,97035 +203872,Google Phone,1,600.0,2019-05-13 11:03:00,242 13th St, Portland,OR,97035 +203872,USB-C Charging Cable,1,11.95,2019-05-13 11:03:00,242 13th St, Portland,OR,97035 +203873,Lightning Charging Cable,1,14.95,2019-05-18 13:51:00,674 River St, Portland,ME,04101 +203874,AAA Batteries (4-pack),2,2.99,2019-05-31 08:37:00,177 Lakeview St, Atlanta,GA,30301 +203875,Lightning Charging Cable,1,14.95,2019-05-27 17:22:00,405 Meadow St, Austin,TX,73301 +203876,Apple Airpods Headphones,1,150.0,2019-05-30 13:37:00,221 10th St, New York City,NY,10001 +203877,USB-C Charging Cable,1,11.95,2019-05-21 14:39:00,512 8th St, Boston,MA,02215 +203878,Lightning Charging Cable,1,14.95,2019-05-08 18:37:00,476 River St, San Francisco,CA,94016 +203879,ThinkPad Laptop,1,999.99,2019-05-06 18:48:00,908 Sunset St, Dallas,TX,75001 +203880,Lightning Charging Cable,1,14.95,2019-05-06 07:46:00,607 13th St, New York City,NY,10001 +203881,AA Batteries (4-pack),1,3.84,2019-05-20 17:58:00,309 Wilson St, Austin,TX,73301 +203882,Wired Headphones,1,11.99,2019-05-04 12:12:00,504 5th St, San Francisco,CA,94016 +203883,27in 4K Gaming Monitor,1,389.99,2019-05-20 13:39:00,483 Spruce St, Seattle,WA,98101 +203884,Lightning Charging Cable,1,14.95,2019-05-29 13:15:00,197 Chestnut St, New York City,NY,10001 +203885,Apple Airpods Headphones,1,150.0,2019-05-14 14:29:00,984 Dogwood St, San Francisco,CA,94016 +203886,AAA Batteries (4-pack),1,2.99,2019-05-16 19:23:00,372 Center St, Austin,TX,73301 +203887,Bose SoundSport Headphones,1,99.99,2019-05-17 22:50:00,27 Center St, San Francisco,CA,94016 +203888,Lightning Charging Cable,1,14.95,2019-05-07 12:27:00,938 Willow St, New York City,NY,10001 +203889,Lightning Charging Cable,1,14.95,2019-05-15 23:15:00,317 Main St, San Francisco,CA,94016 +203890,USB-C Charging Cable,1,11.95,2019-05-15 22:51:00,33 Forest St, New York City,NY,10001 +203891,AAA Batteries (4-pack),1,2.99,2019-05-05 21:29:00,251 Church St, Atlanta,GA,30301 +203892,USB-C Charging Cable,1,11.95,2019-05-24 12:17:00,202 Jackson St, Los Angeles,CA,90001 +203893,Apple Airpods Headphones,1,150.0,2019-05-06 11:05:00,391 11th St, Boston,MA,02215 +203894,AA Batteries (4-pack),2,3.84,2019-05-19 12:43:00,187 Walnut St, Portland,OR,97035 +203894,AAA Batteries (4-pack),1,2.99,2019-05-19 12:43:00,187 Walnut St, Portland,OR,97035 +203895,AA Batteries (4-pack),1,3.84,2019-05-15 14:13:00,590 Spruce St, Portland,OR,97035 +203896,Wired Headphones,1,11.99,2019-05-02 20:31:00,723 Church St, San Francisco,CA,94016 +203897,Bose SoundSport Headphones,1,99.99,2019-05-02 22:49:00,56 8th St, San Francisco,CA,94016 +203898,AA Batteries (4-pack),1,3.84,2019-05-17 19:22:00,599 Forest St, Seattle,WA,98101 +203899,Flatscreen TV,1,300.0,2019-05-18 20:52:00,973 Cherry St, Atlanta,GA,30301 +203900,Bose SoundSport Headphones,1,99.99,2019-05-03 21:20:00,700 Johnson St, Los Angeles,CA,90001 +203901,27in FHD Monitor,1,149.99,2019-05-14 18:02:00,564 Hill St, Los Angeles,CA,90001 +203902,Wired Headphones,1,11.99,2019-05-11 11:13:00,864 1st St, San Francisco,CA,94016 +203903,Bose SoundSport Headphones,1,99.99,2019-05-15 19:00:00,454 Jackson St, Seattle,WA,98101 +203904,27in 4K Gaming Monitor,1,389.99,2019-05-20 09:58:00,925 Maple St, Boston,MA,02215 +203905,27in FHD Monitor,1,149.99,2019-05-11 07:40:00,789 9th St, Boston,MA,02215 +203906,Apple Airpods Headphones,1,150.0,2019-05-11 21:49:00,395 7th St, San Francisco,CA,94016 +203907,AAA Batteries (4-pack),1,2.99,2019-05-21 17:42:00,43 Willow St, San Francisco,CA,94016 +203908,Wired Headphones,1,11.99,2019-05-02 21:20:00,433 South St, San Francisco,CA,94016 +203909,Apple Airpods Headphones,1,150.0,2019-05-01 22:28:00,963 10th St, San Francisco,CA,94016 +203910,iPhone,1,700.0,2019-05-10 16:01:00,175 10th St, New York City,NY,10001 +203911,ThinkPad Laptop,1,999.99,2019-05-18 00:46:00,325 Jackson St, Seattle,WA,98101 +203912,Wired Headphones,1,11.99,2019-05-22 17:04:00,585 Center St, New York City,NY,10001 +203913,USB-C Charging Cable,1,11.95,2019-05-17 16:39:00,702 14th St, Boston,MA,02215 +203914,Wired Headphones,1,11.99,2019-05-30 08:14:00,306 Wilson St, New York City,NY,10001 +203915,ThinkPad Laptop,1,999.99,2019-05-03 21:27:00,190 9th St, Austin,TX,73301 +203916,20in Monitor,1,109.99,2019-05-09 08:57:00,602 Cedar St, Atlanta,GA,30301 +203917,27in 4K Gaming Monitor,1,389.99,2019-05-28 20:13:00,325 Washington St, Los Angeles,CA,90001 +203918,AAA Batteries (4-pack),1,2.99,2019-05-25 00:14:00,903 Wilson St, San Francisco,CA,94016 +203918,Bose SoundSport Headphones,1,99.99,2019-05-25 00:14:00,903 Wilson St, San Francisco,CA,94016 +203919,Apple Airpods Headphones,1,150.0,2019-05-23 18:54:00,591 Lincoln St, Los Angeles,CA,90001 +203920,USB-C Charging Cable,1,11.95,2019-05-16 01:18:00,542 West St, San Francisco,CA,94016 +203921,AAA Batteries (4-pack),1,2.99,2019-05-28 11:53:00,156 Washington St, Los Angeles,CA,90001 +203922,iPhone,1,700.0,2019-05-31 15:18:00,170 Hill St, Atlanta,GA,30301 +203922,Wired Headphones,1,11.99,2019-05-31 15:18:00,170 Hill St, Atlanta,GA,30301 +203923,iPhone,1,700.0,2019-05-18 21:26:00,865 Jackson St, Boston,MA,02215 +203923,Lightning Charging Cable,1,14.95,2019-05-18 21:26:00,865 Jackson St, Boston,MA,02215 +203924,Wired Headphones,1,11.99,2019-05-13 18:15:00,309 Church St, Boston,MA,02215 +203925,USB-C Charging Cable,1,11.95,2019-05-18 19:00:00,44 Center St, New York City,NY,10001 +203926,Flatscreen TV,1,300.0,2019-05-19 15:16:00,562 Walnut St, Seattle,WA,98101 +203927,Wired Headphones,1,11.99,2019-05-10 16:17:00,704 Johnson St, Portland,ME,04101 +203928,USB-C Charging Cable,1,11.95,2019-05-17 20:17:00,760 Lakeview St, San Francisco,CA,94016 +203929,AA Batteries (4-pack),1,3.84,2019-05-02 21:16:00,841 Adams St, Seattle,WA,98101 +203930,Bose SoundSport Headphones,1,99.99,2019-05-12 12:31:00,61 5th St, Los Angeles,CA,90001 +203931,AAA Batteries (4-pack),2,2.99,2019-05-16 17:00:00,102 1st St, Portland,OR,97035 +203932,iPhone,1,700.0,2019-05-07 09:45:00,388 Pine St, Portland,OR,97035 +203933,Lightning Charging Cable,2,14.95,2019-05-22 18:11:00,447 Cherry St, Los Angeles,CA,90001 +203934,Wired Headphones,1,11.99,2019-05-09 11:43:00,833 Johnson St, San Francisco,CA,94016 +203935,Wired Headphones,1,11.99,2019-05-06 12:19:00,434 West St, San Francisco,CA,94016 +203936,Macbook Pro Laptop,1,1700.0,2019-05-14 19:08:00,260 Jackson St, Los Angeles,CA,90001 +203937,AAA Batteries (4-pack),2,2.99,2019-05-13 08:17:00,746 Park St, Los Angeles,CA,90001 +203938,LG Dryer,1,600.0,2019-05-26 18:26:00,774 Park St, San Francisco,CA,94016 +203939,AAA Batteries (4-pack),1,2.99,2019-05-15 03:12:00,235 5th St, Seattle,WA,98101 +203940,Bose SoundSport Headphones,1,99.99,2019-05-27 15:56:00,259 Wilson St, Portland,ME,04101 +203941,iPhone,1,700.0,2019-05-23 16:12:00,984 Willow St, Los Angeles,CA,90001 +203942,Apple Airpods Headphones,1,150.0,2019-05-14 21:03:00,672 5th St, Seattle,WA,98101 +203943,Lightning Charging Cable,1,14.95,2019-05-13 16:51:00,685 Church St, San Francisco,CA,94016 +203944,Macbook Pro Laptop,1,1700.0,2019-05-05 11:07:00,246 Cherry St, Los Angeles,CA,90001 +203945,iPhone,1,700.0,2019-05-11 09:48:00,739 2nd St, Atlanta,GA,30301 +203946,ThinkPad Laptop,1,999.99,2019-05-22 23:10:00,75 Park St, San Francisco,CA,94016 +203947,AA Batteries (4-pack),1,3.84,2019-05-12 19:45:00,19 Cedar St, Seattle,WA,98101 +203948,Lightning Charging Cable,1,14.95,2019-05-11 09:09:00,130 1st St, Austin,TX,73301 +203949,iPhone,1,700.0,2019-05-30 15:52:00,445 Cherry St, Boston,MA,02215 +203950,iPhone,1,700.0,2019-05-29 08:11:00,873 Church St, Los Angeles,CA,90001 +203951,AAA Batteries (4-pack),1,2.99,2019-05-01 11:07:00,558 Chestnut St, New York City,NY,10001 +203952,AAA Batteries (4-pack),1,2.99,2019-05-17 19:24:00,648 14th St, New York City,NY,10001 +203953,ThinkPad Laptop,1,999.99,2019-05-19 11:15:00,593 River St, San Francisco,CA,94016 +203954,Google Phone,1,600.0,2019-05-19 01:10:00,867 5th St, New York City,NY,10001 +203955,20in Monitor,1,109.99,2019-05-28 15:36:00,552 Maple St, San Francisco,CA,94016 +203956,Lightning Charging Cable,1,14.95,2019-05-23 16:58:00,137 River St, New York City,NY,10001 +203957,ThinkPad Laptop,1,999.99,2019-05-15 21:43:00,842 Chestnut St, Los Angeles,CA,90001 +203958,Lightning Charging Cable,1,14.95,2019-05-17 10:48:00,846 13th St, San Francisco,CA,94016 +203959,Apple Airpods Headphones,1,150.0,2019-05-25 20:16:00,705 Madison St, Dallas,TX,75001 +203960,Lightning Charging Cable,1,14.95,2019-05-06 12:23:00,887 Jefferson St, Portland,OR,97035 +203961,AAA Batteries (4-pack),2,2.99,2019-05-28 20:28:00,623 Willow St, New York City,NY,10001 +203962,AAA Batteries (4-pack),4,2.99,2019-05-20 13:31:00,35 Cedar St, Dallas,TX,75001 +203963,27in 4K Gaming Monitor,1,389.99,2019-05-01 22:11:00,302 Maple St, New York City,NY,10001 +203964,Wired Headphones,1,11.99,2019-05-21 09:14:00,598 Adams St, Boston,MA,02215 +203965,Macbook Pro Laptop,1,1700.0,2019-05-28 16:33:00,345 Lakeview St, New York City,NY,10001 +203966,ThinkPad Laptop,1,999.99,2019-05-15 16:18:00,842 Wilson St, Boston,MA,02215 +203967,AA Batteries (4-pack),1,3.84,2019-05-23 18:39:00,454 Lake St, Seattle,WA,98101 +203968,Bose SoundSport Headphones,1,99.99,2019-05-21 18:22:00,311 North St, Los Angeles,CA,90001 +203969,Flatscreen TV,1,300.0,2019-05-07 17:41:00,37 Pine St, Los Angeles,CA,90001 +203970,Macbook Pro Laptop,1,1700.0,2019-05-14 08:48:00,937 13th St, San Francisco,CA,94016 +203971,USB-C Charging Cable,2,11.95,2019-05-18 19:35:00,812 Forest St, Dallas,TX,75001 +203972,20in Monitor,1,109.99,2019-05-24 16:13:00,363 Washington St, Portland,OR,97035 +203973,iPhone,1,700.0,2019-06-01 03:05:00,828 Madison St, Los Angeles,CA,90001 +203974,USB-C Charging Cable,1,11.95,2019-05-15 16:37:00,132 Hickory St, Los Angeles,CA,90001 +203975,USB-C Charging Cable,1,11.95,2019-05-04 14:40:00,51 Dogwood St, Dallas,TX,75001 +203976,AAA Batteries (4-pack),1,2.99,2019-05-03 14:26:00,928 Sunset St, New York City,NY,10001 +203977,Wired Headphones,1,11.99,2019-05-03 09:18:00,63 Cedar St, San Francisco,CA,94016 +203978,USB-C Charging Cable,1,11.95,2019-05-13 17:55:00,822 Walnut St, New York City,NY,10001 +203979,Apple Airpods Headphones,1,150.0,2019-05-05 14:52:00,585 Chestnut St, New York City,NY,10001 +203980,USB-C Charging Cable,1,11.95,2019-06-01 02:20:00,427 Washington St, Portland,OR,97035 +203981,Wired Headphones,1,11.99,2019-05-06 11:27:00,677 11th St, Atlanta,GA,30301 +203982,Apple Airpods Headphones,1,150.0,2019-05-09 13:38:00,627 South St, Los Angeles,CA,90001 +203983,Bose SoundSport Headphones,1,99.99,2019-05-31 10:43:00,669 Jefferson St, Atlanta,GA,30301 +203984,iPhone,1,700.0,2019-05-06 17:24:00,470 8th St, New York City,NY,10001 +203984,Wired Headphones,2,11.99,2019-05-06 17:24:00,470 8th St, New York City,NY,10001 +203985,Lightning Charging Cable,2,14.95,2019-05-24 20:38:00,868 Spruce St, Boston,MA,02215 +203986,Wired Headphones,1,11.99,2019-05-06 19:27:00,713 Adams St, San Francisco,CA,94016 +203987,Wired Headphones,1,11.99,2019-05-24 16:36:00,121 Cherry St, New York City,NY,10001 +203988,Bose SoundSport Headphones,2,99.99,2019-05-14 18:36:00,727 Pine St, New York City,NY,10001 +203989,Bose SoundSport Headphones,1,99.99,2019-05-11 19:00:00,687 12th St, Los Angeles,CA,90001 +203990,AA Batteries (4-pack),3,3.84,2019-05-11 17:33:00,45 Ridge St, Atlanta,GA,30301 +203991,Apple Airpods Headphones,1,150.0,2019-05-25 15:14:00,276 10th St, Seattle,WA,98101 +203992,Bose SoundSport Headphones,1,99.99,2019-05-07 19:13:00,311 9th St, Dallas,TX,75001 +203993,iPhone,1,700.0,2019-05-04 15:50:00,383 9th St, New York City,NY,10001 +203993,Lightning Charging Cable,1,14.95,2019-05-04 15:50:00,383 9th St, New York City,NY,10001 +203994,Wired Headphones,1,11.99,2019-05-26 16:56:00,674 Hickory St, Seattle,WA,98101 +203995,ThinkPad Laptop,1,999.99,2019-05-23 17:39:00,442 Park St, San Francisco,CA,94016 +203996,27in 4K Gaming Monitor,1,389.99,2019-05-10 00:01:00,197 2nd St, San Francisco,CA,94016 +203997,Lightning Charging Cable,1,14.95,2019-05-22 00:16:00,143 Chestnut St, Dallas,TX,75001 +203998,USB-C Charging Cable,1,11.95,2019-05-01 09:49:00,485 1st St, Dallas,TX,75001 +203999,Wired Headphones,1,11.99,2019-05-27 20:25:00,566 Hill St, Dallas,TX,75001 +204000,AA Batteries (4-pack),1,3.84,2019-05-11 17:55:00,420 Pine St, Atlanta,GA,30301 +204001,AA Batteries (4-pack),2,3.84,2019-05-01 14:04:00,230 Madison St, Portland,OR,97035 +204002,AAA Batteries (4-pack),1,2.99,2019-05-03 17:03:00,381 Lakeview St, Boston,MA,02215 +204003,AA Batteries (4-pack),1,3.84,2019-05-24 08:43:00,526 8th St, Los Angeles,CA,90001 +204004,AAA Batteries (4-pack),1,2.99,2019-05-31 11:46:00,82 North St, San Francisco,CA,94016 +204005,Bose SoundSport Headphones,1,99.99,2019-05-12 16:45:00,378 Meadow St, Atlanta,GA,30301 +204006,USB-C Charging Cable,2,11.95,2019-05-25 22:35:00,801 Johnson St, Seattle,WA,98101 +204007,AAA Batteries (4-pack),2,2.99,2019-05-08 16:32:00,946 11th St, New York City,NY,10001 +204008,Lightning Charging Cable,1,14.95,2019-05-26 11:19:00,478 12th St, San Francisco,CA,94016 +204009,AA Batteries (4-pack),1,3.84,2019-05-23 12:22:00,756 6th St, Atlanta,GA,30301 +204010,USB-C Charging Cable,2,11.95,2019-05-12 19:02:00,442 Walnut St, San Francisco,CA,94016 +204011,ThinkPad Laptop,1,999.99,2019-05-01 15:35:00,611 Dogwood St, San Francisco,CA,94016 +204012,Wired Headphones,1,11.99,2019-05-14 08:19:00,511 Highland St, New York City,NY,10001 +204012,AAA Batteries (4-pack),3,2.99,2019-05-14 08:19:00,511 Highland St, New York City,NY,10001 +204013,Apple Airpods Headphones,1,150.0,2019-05-20 20:42:00,871 2nd St, Boston,MA,02215 +204014,Bose SoundSport Headphones,1,99.99,2019-05-25 10:03:00,970 Cherry St, San Francisco,CA,94016 +204015,AA Batteries (4-pack),2,3.84,2019-05-15 10:48:00,664 Church St, Seattle,WA,98101 +204016,Lightning Charging Cable,1,14.95,2019-05-02 12:49:00,30 Elm St, Atlanta,GA,30301 +204017,Apple Airpods Headphones,1,150.0,2019-05-28 21:58:00,837 Dogwood St, Atlanta,GA,30301 +204018,20in Monitor,1,109.99,2019-05-14 10:48:00,90 Center St, Boston,MA,02215 +204019,Macbook Pro Laptop,1,1700.0,2019-05-22 14:16:00,35 2nd St, Los Angeles,CA,90001 +204020,iPhone,1,700.0,2019-05-15 03:09:00,27 12th St, Portland,OR,97035 +204021,Lightning Charging Cable,1,14.95,2019-05-02 21:54:00,293 5th St, Los Angeles,CA,90001 +204022,AA Batteries (4-pack),1,3.84,2019-05-24 16:26:00,3 9th St, Portland,OR,97035 +204023,AAA Batteries (4-pack),3,2.99,2019-05-28 21:02:00,728 Lincoln St, Seattle,WA,98101 +204023,AA Batteries (4-pack),1,3.84,2019-05-28 21:02:00,728 Lincoln St, Seattle,WA,98101 +204024,AAA Batteries (4-pack),1,2.99,2019-05-03 18:45:00,43 8th St, Boston,MA,02215 +204025,AA Batteries (4-pack),2,3.84,2019-05-25 10:58:00,893 5th St, Dallas,TX,75001 +204026,AA Batteries (4-pack),1,3.84,2019-05-22 16:55:00,75 Spruce St, Seattle,WA,98101 +204027,USB-C Charging Cable,1,11.95,2019-05-19 21:08:00,410 12th St, New York City,NY,10001 +204028,27in FHD Monitor,1,149.99,2019-05-22 23:56:00,167 9th St, Atlanta,GA,30301 +204029,AAA Batteries (4-pack),1,2.99,2019-05-31 08:27:00,523 Wilson St, San Francisco,CA,94016 +204030,AA Batteries (4-pack),2,3.84,2019-05-02 00:35:00,96 Forest St, San Francisco,CA,94016 +204031,Google Phone,1,600.0,2019-05-29 10:39:00,169 11th St, New York City,NY,10001 +204032,Wired Headphones,1,11.99,2019-05-12 19:13:00,597 8th St, Austin,TX,73301 +204033,20in Monitor,1,109.99,2019-05-29 21:36:00,684 Washington St, San Francisco,CA,94016 +204034,27in FHD Monitor,1,149.99,2019-05-19 15:18:00,306 Willow St, San Francisco,CA,94016 +204035,ThinkPad Laptop,1,999.99,2019-05-13 12:16:00,122 Park St, Seattle,WA,98101 +204036,Apple Airpods Headphones,1,150.0,2019-05-21 17:06:00,562 Johnson St, Los Angeles,CA,90001 +204037,Bose SoundSport Headphones,1,99.99,2019-05-19 17:30:00,198 13th St, Dallas,TX,75001 +204038,AA Batteries (4-pack),1,3.84,2019-05-09 17:11:00,711 Forest St, Dallas,TX,75001 +204039,Macbook Pro Laptop,1,1700.0,2019-05-06 21:13:00,842 Park St, Austin,TX,73301 +204040,Bose SoundSport Headphones,1,99.99,2019-05-01 20:49:00,652 Forest St, Los Angeles,CA,90001 +204041,USB-C Charging Cable,1,11.95,2019-05-29 22:44:00,505 10th St, San Francisco,CA,94016 +204042,Wired Headphones,1,11.99,2019-05-12 20:28:00,829 North St, Seattle,WA,98101 +204043,34in Ultrawide Monitor,1,379.99,2019-05-21 22:45:00,171 11th St, Boston,MA,02215 +204044,AA Batteries (4-pack),1,3.84,2019-05-27 07:05:00,899 7th St, Austin,TX,73301 +204045,AA Batteries (4-pack),2,3.84,2019-05-28 21:34:00,556 West St, Los Angeles,CA,90001 +204046,Apple Airpods Headphones,1,150.0,2019-05-03 07:21:00,795 11th St, Seattle,WA,98101 +204047,USB-C Charging Cable,1,11.95,2019-05-09 23:35:00,761 9th St, San Francisco,CA,94016 +204048,Flatscreen TV,1,300.0,2019-05-11 16:57:00,658 Meadow St, Seattle,WA,98101 +204049,Flatscreen TV,1,300.0,2019-05-01 12:50:00,919 River St, Boston,MA,02215 +204050,AAA Batteries (4-pack),3,2.99,2019-05-08 06:01:00,770 Sunset St, Austin,TX,73301 +204051,20in Monitor,1,109.99,2019-05-03 08:50:00,639 Pine St, Boston,MA,02215 +204052,AA Batteries (4-pack),1,3.84,2019-05-23 18:58:00,798 West St, New York City,NY,10001 +204053,AAA Batteries (4-pack),1,2.99,2019-05-18 18:29:00,662 Adams St, Seattle,WA,98101 +204054,Macbook Pro Laptop,1,1700.0,2019-05-27 13:02:00,585 North St, San Francisco,CA,94016 +204055,AAA Batteries (4-pack),1,2.99,2019-05-18 20:25:00,748 South St, Dallas,TX,75001 +204056,AAA Batteries (4-pack),1,2.99,2019-05-23 01:25:00,744 Washington St, Boston,MA,02215 +204057,27in 4K Gaming Monitor,1,389.99,2019-05-27 20:46:00,449 South St, Atlanta,GA,30301 +204058,Apple Airpods Headphones,1,150.0,2019-05-07 11:40:00,626 North St, San Francisco,CA,94016 +204059,USB-C Charging Cable,2,11.95,2019-05-02 13:09:00,605 Chestnut St, Seattle,WA,98101 +204060,AAA Batteries (4-pack),1,2.99,2019-05-17 10:17:00,54 Elm St, San Francisco,CA,94016 +204061,Lightning Charging Cable,2,14.95,2019-05-22 18:29:00,259 Lakeview St, San Francisco,CA,94016 +204062,USB-C Charging Cable,1,11.95,2019-05-27 11:19:00,414 1st St, New York City,NY,10001 +204063,Lightning Charging Cable,2,14.95,2019-05-03 18:50:00,917 South St, Austin,TX,73301 +204064,AAA Batteries (4-pack),1,2.99,2019-05-10 19:55:00,256 12th St, Dallas,TX,75001 +204065,AA Batteries (4-pack),1,3.84,2019-05-05 15:37:00,807 14th St, San Francisco,CA,94016 +204066,AA Batteries (4-pack),1,3.84,2019-05-28 01:52:00,519 11th St, Portland,OR,97035 +204067,AAA Batteries (4-pack),3,2.99,2019-05-27 11:00:00,412 8th St, San Francisco,CA,94016 +204068,Wired Headphones,1,11.99,2019-05-13 22:15:00,756 Dogwood St, San Francisco,CA,94016 +204069,Apple Airpods Headphones,1,150.0,2019-05-24 14:14:00,145 9th St, San Francisco,CA,94016 +204070,USB-C Charging Cable,2,11.95,2019-05-12 21:57:00,264 Church St, San Francisco,CA,94016 +204071,Apple Airpods Headphones,1,150.0,2019-05-17 08:49:00,105 Highland St, Atlanta,GA,30301 +204072,34in Ultrawide Monitor,1,379.99,2019-05-11 20:35:00,549 Adams St, Los Angeles,CA,90001 +204073,Apple Airpods Headphones,1,150.0,2019-05-26 19:37:00,747 7th St, San Francisco,CA,94016 +204074,AA Batteries (4-pack),1,3.84,2019-05-16 20:19:00,892 Jackson St, Boston,MA,02215 +204075,Macbook Pro Laptop,1,1700.0,2019-05-26 08:00:00,391 10th St, Austin,TX,73301 +204076,USB-C Charging Cable,1,11.95,2019-05-14 09:18:00,15 6th St, Atlanta,GA,30301 +204077,Wired Headphones,1,11.99,2019-05-24 22:19:00,105 Dogwood St, San Francisco,CA,94016 +204078,Macbook Pro Laptop,1,1700.0,2019-05-03 18:49:00,415 2nd St, Dallas,TX,75001 +204079,Lightning Charging Cable,1,14.95,2019-05-30 20:03:00,693 12th St, New York City,NY,10001 +204080,Apple Airpods Headphones,2,150.0,2019-05-27 16:40:00,564 Wilson St, Los Angeles,CA,90001 +204081,AAA Batteries (4-pack),2,2.99,2019-05-07 09:51:00,815 14th St, Boston,MA,02215 +204082,Lightning Charging Cable,1,14.95,2019-05-22 19:45:00,921 Hickory St, New York City,NY,10001 +204083,USB-C Charging Cable,1,11.95,2019-05-31 16:24:00,842 Chestnut St, Boston,MA,02215 +204084,34in Ultrawide Monitor,1,379.99,2019-05-25 11:02:00,120 10th St, Atlanta,GA,30301 +204085,USB-C Charging Cable,1,11.95,2019-05-06 20:38:00,229 Johnson St, Atlanta,GA,30301 +204086,ThinkPad Laptop,1,999.99,2019-05-23 18:20:00,668 5th St, Boston,MA,02215 +204087,AAA Batteries (4-pack),1,2.99,2019-05-21 18:14:00,95 Johnson St, Seattle,WA,98101 +204088,Flatscreen TV,1,300.0,2019-05-28 20:55:00,744 5th St, Atlanta,GA,30301 +204089,Wired Headphones,1,11.99,2019-05-05 16:11:00,829 11th St, San Francisco,CA,94016 +204090,AAA Batteries (4-pack),1,2.99,2019-05-06 12:20:00,191 Wilson St, New York City,NY,10001 +204091,Apple Airpods Headphones,1,150.0,2019-05-03 12:24:00,812 Lakeview St, Boston,MA,02215 +204092,Wired Headphones,1,11.99,2019-05-11 20:38:00,219 Hickory St, Los Angeles,CA,90001 +204093,AAA Batteries (4-pack),3,2.99,2019-05-04 19:55:00,725 Forest St, San Francisco,CA,94016 +204094,AA Batteries (4-pack),1,3.84,2019-05-25 16:26:00,982 Hickory St, Boston,MA,02215 +204095,Bose SoundSport Headphones,1,99.99,2019-05-12 11:29:00,880 Madison St, Seattle,WA,98101 +204096,USB-C Charging Cable,1,11.95,2019-05-19 11:26:00,613 6th St, Dallas,TX,75001 +204097,AAA Batteries (4-pack),1,2.99,2019-05-10 10:00:00,396 Johnson St, Austin,TX,73301 +204098,Wired Headphones,1,11.99,2019-05-25 20:06:00,705 Chestnut St, San Francisco,CA,94016 +204099,Bose SoundSport Headphones,2,99.99,2019-05-12 15:11:00,413 North St, Atlanta,GA,30301 +204100,AA Batteries (4-pack),1,3.84,2019-05-01 11:54:00,567 Hickory St, San Francisco,CA,94016 +204101,USB-C Charging Cable,1,11.95,2019-05-19 15:14:00,942 Meadow St, Boston,MA,02215 +204102,Bose SoundSport Headphones,1,99.99,2019-05-21 14:00:00,792 Jackson St, San Francisco,CA,94016 +204103,AA Batteries (4-pack),1,3.84,2019-05-08 19:55:00,220 Cherry St, Atlanta,GA,30301 +204104,Apple Airpods Headphones,1,150.0,2019-05-30 22:10:00,898 Highland St, Portland,OR,97035 +204105,AAA Batteries (4-pack),4,2.99,2019-05-23 07:01:00,688 Forest St, New York City,NY,10001 +204106,AA Batteries (4-pack),3,3.84,2019-05-20 07:44:00,979 Park St, San Francisco,CA,94016 +204107,AAA Batteries (4-pack),1,2.99,2019-05-24 17:53:00,23 7th St, Portland,OR,97035 +204108,27in 4K Gaming Monitor,1,389.99,2019-05-30 11:21:00,18 Johnson St, New York City,NY,10001 +204109,Apple Airpods Headphones,1,150.0,2019-05-20 17:51:00,482 Forest St, New York City,NY,10001 +204110,AAA Batteries (4-pack),1,2.99,2019-05-14 11:14:00,801 Spruce St, New York City,NY,10001 +204111,34in Ultrawide Monitor,1,379.99,2019-05-01 16:28:00,414 Madison St, Boston,MA,02215 +204112,Wired Headphones,1,11.99,2019-05-21 17:27:00,317 7th St, Boston,MA,02215 +204113,Vareebadd Phone,1,400.0,2019-05-28 20:06:00,900 Meadow St, Atlanta,GA,30301 +204114,Macbook Pro Laptop,1,1700.0,2019-05-21 22:34:00,125 West St, San Francisco,CA,94016 +204115,Macbook Pro Laptop,1,1700.0,2019-05-07 15:35:00,529 Willow St, Seattle,WA,98101 +204116,34in Ultrawide Monitor,1,379.99,2019-05-30 19:16:00,505 Church St, San Francisco,CA,94016 +204117,Wired Headphones,1,11.99,2019-05-10 16:02:00,878 Ridge St, New York City,NY,10001 +204118,34in Ultrawide Monitor,1,379.99,2019-05-22 20:07:00,143 9th St, Portland,ME,04101 +204119,USB-C Charging Cable,2,11.95,2019-05-28 21:25:00,945 Forest St, Los Angeles,CA,90001 +204120,ThinkPad Laptop,1,999.99,2019-05-21 10:24:00,698 Washington St, Los Angeles,CA,90001 +204121,Macbook Pro Laptop,1,1700.0,2019-05-01 21:47:00,225 5th St, Portland,ME,04101 +204122,Lightning Charging Cable,1,14.95,2019-05-21 17:18:00,966 Jackson St, Austin,TX,73301 +204123,AA Batteries (4-pack),1,3.84,2019-05-22 01:29:00,983 Elm St, Atlanta,GA,30301 +204124,LG Washing Machine,1,600.0,2019-05-15 10:44:00,847 Ridge St, New York City,NY,10001 +204125,34in Ultrawide Monitor,1,379.99,2019-05-19 23:13:00,969 Lakeview St, New York City,NY,10001 +204126,iPhone,1,700.0,2019-05-09 16:06:00,620 7th St, Los Angeles,CA,90001 +204127,20in Monitor,1,109.99,2019-05-01 13:44:00,387 Ridge St, Portland,OR,97035 +204128,Vareebadd Phone,1,400.0,2019-05-19 01:31:00,759 10th St, San Francisco,CA,94016 +204129,AAA Batteries (4-pack),1,2.99,2019-05-30 23:17:00,41 7th St, Portland,OR,97035 +204130,Wired Headphones,2,11.99,2019-05-25 14:18:00,428 2nd St, Boston,MA,02215 +204131,AAA Batteries (4-pack),4,2.99,2019-05-16 18:22:00,50 Main St, New York City,NY,10001 +204132,27in FHD Monitor,1,149.99,2019-05-25 11:58:00,91 14th St, Portland,OR,97035 +204133,Wired Headphones,1,11.99,2019-05-07 12:37:00,947 7th St, Portland,OR,97035 +204134,ThinkPad Laptop,1,999.99,2019-05-07 16:03:00,303 Pine St, Austin,TX,73301 +204135,Lightning Charging Cable,1,14.95,2019-05-05 10:49:00,758 Meadow St, Boston,MA,02215 +204136,Bose SoundSport Headphones,1,99.99,2019-05-28 17:07:00,851 Cedar St, San Francisco,CA,94016 +204137,27in 4K Gaming Monitor,1,389.99,2019-05-08 12:27:00,820 Jackson St, New York City,NY,10001 +204138,iPhone,1,700.0,2019-05-07 14:06:00,40 5th St, Los Angeles,CA,90001 +204139,AAA Batteries (4-pack),1,2.99,2019-05-27 08:43:00,348 Church St, Austin,TX,73301 +204140,AAA Batteries (4-pack),1,2.99,2019-05-30 09:42:00,603 Cedar St, Dallas,TX,75001 +204141,Wired Headphones,1,11.99,2019-05-27 19:03:00,999 5th St, San Francisco,CA,94016 +204142,Lightning Charging Cable,1,14.95,2019-05-12 20:50:00,439 Cherry St, Portland,ME,04101 +204143,AA Batteries (4-pack),1,3.84,2019-05-21 22:50:00,699 West St, New York City,NY,10001 +204144,iPhone,1,700.0,2019-05-17 18:14:00,897 Cedar St, Los Angeles,CA,90001 +204145,27in FHD Monitor,1,149.99,2019-05-09 08:48:00,752 5th St, San Francisco,CA,94016 +204146,Apple Airpods Headphones,1,150.0,2019-05-04 10:32:00,838 7th St, Austin,TX,73301 +204147,USB-C Charging Cable,1,11.95,2019-05-08 16:12:00,16 North St, Portland,OR,97035 +204148,iPhone,1,700.0,2019-05-13 00:02:00,268 Highland St, Boston,MA,02215 +204149,34in Ultrawide Monitor,1,379.99,2019-05-13 17:18:00,472 Maple St, Austin,TX,73301 +204150,AAA Batteries (4-pack),1,2.99,2019-05-05 11:58:00,483 4th St, Boston,MA,02215 +204150,Flatscreen TV,1,300.0,2019-05-05 11:58:00,483 4th St, Boston,MA,02215 +204151,USB-C Charging Cable,1,11.95,2019-05-16 17:29:00,490 Madison St, Atlanta,GA,30301 +204152,Bose SoundSport Headphones,1,99.99,2019-05-31 16:32:00,381 Cedar St, San Francisco,CA,94016 +204152,Apple Airpods Headphones,1,150.0,2019-05-31 16:32:00,381 Cedar St, San Francisco,CA,94016 +204153,Lightning Charging Cable,1,14.95,2019-05-14 21:58:00,374 10th St, Boston,MA,02215 +204154,Macbook Pro Laptop,1,1700.0,2019-05-13 18:44:00,563 11th St, Los Angeles,CA,90001 +204155,Lightning Charging Cable,1,14.95,2019-05-12 20:09:00,864 Main St, New York City,NY,10001 +204156,Bose SoundSport Headphones,1,99.99,2019-05-02 13:02:00,810 West St, Boston,MA,02215 +204157,Macbook Pro Laptop,1,1700.0,2019-05-17 16:47:00,826 Elm St, San Francisco,CA,94016 +204158,Lightning Charging Cable,1,14.95,2019-05-28 19:21:00,782 9th St, San Francisco,CA,94016 +204159,20in Monitor,1,109.99,2019-05-16 14:50:00,742 11th St, Dallas,TX,75001 +204160,Wired Headphones,1,11.99,2019-05-09 10:07:00,857 Center St, San Francisco,CA,94016 +204161,Lightning Charging Cable,1,14.95,2019-05-10 06:04:00,308 5th St, Boston,MA,02215 +204162,iPhone,1,700.0,2019-05-25 19:51:00,17 Wilson St, Boston,MA,02215 +204163,AA Batteries (4-pack),1,3.84,2019-05-05 20:39:00,308 10th St, Boston,MA,02215 +204164,AAA Batteries (4-pack),1,2.99,2019-05-13 16:17:00,406 Lakeview St, Atlanta,GA,30301 +204165,27in 4K Gaming Monitor,1,389.99,2019-05-17 17:43:00,759 Hill St, Dallas,TX,75001 +204166,USB-C Charging Cable,1,11.95,2019-05-10 20:48:00,242 Cedar St, Seattle,WA,98101 +204167,AA Batteries (4-pack),1,3.84,2019-05-19 16:24:00,123 7th St, Austin,TX,73301 +204168,AA Batteries (4-pack),1,3.84,2019-05-08 20:14:00,273 Sunset St, Dallas,TX,75001 +204169,iPhone,1,700.0,2019-05-23 23:22:00,147 South St, San Francisco,CA,94016 +204170,iPhone,1,700.0,2019-05-20 17:27:00,432 Elm St, San Francisco,CA,94016 +204170,Lightning Charging Cable,1,14.95,2019-05-20 17:27:00,432 Elm St, San Francisco,CA,94016 +204171,Macbook Pro Laptop,1,1700.0,2019-05-29 13:11:00,986 7th St, Boston,MA,02215 +204172,Apple Airpods Headphones,1,150.0,2019-05-30 19:49:00,996 Highland St, Portland,OR,97035 +204173,AAA Batteries (4-pack),3,2.99,2019-05-19 13:27:00,564 Maple St, Seattle,WA,98101 +204174,Flatscreen TV,1,300.0,2019-05-05 16:23:00,495 Park St, San Francisco,CA,94016 +204175,AA Batteries (4-pack),2,3.84,2019-05-19 19:13:00,846 South St, Los Angeles,CA,90001 +204176,Bose SoundSport Headphones,1,99.99,2019-05-02 21:47:00,76 Pine St, Atlanta,GA,30301 +204177,27in FHD Monitor,1,149.99,2019-05-05 14:28:00,896 Highland St, Dallas,TX,75001 +204178,USB-C Charging Cable,2,11.95,2019-05-11 13:55:00,657 Hill St, San Francisco,CA,94016 +204179,AAA Batteries (4-pack),3,2.99,2019-05-28 09:46:00,92 11th St, Atlanta,GA,30301 +204180,Wired Headphones,1,11.99,2019-05-12 20:34:00,483 Sunset St, Los Angeles,CA,90001 +204181,Apple Airpods Headphones,1,150.0,2019-05-24 19:19:00,100 Lake St, San Francisco,CA,94016 +204182,27in FHD Monitor,1,149.99,2019-05-28 11:49:00,468 Park St, Portland,OR,97035 +204183,AAA Batteries (4-pack),1,2.99,2019-05-30 16:11:00,831 River St, Los Angeles,CA,90001 +204184,Wired Headphones,1,11.99,2019-05-09 22:31:00,114 11th St, Austin,TX,73301 +204185,Google Phone,1,600.0,2019-05-24 17:24:00,589 Lakeview St, Dallas,TX,75001 +204186,USB-C Charging Cable,1,11.95,2019-05-16 19:47:00,70 North St, Seattle,WA,98101 +204187,27in 4K Gaming Monitor,1,389.99,2019-05-11 22:12:00,208 Chestnut St, San Francisco,CA,94016 +204188,AAA Batteries (4-pack),1,2.99,2019-05-31 14:59:00,142 Jackson St, Boston,MA,02215 +204189,AAA Batteries (4-pack),1,2.99,2019-05-23 18:41:00,907 Elm St, New York City,NY,10001 +204190,Wired Headphones,1,11.99,2019-06-01 01:46:00,153 Chestnut St, Atlanta,GA,30301 +204191,Wired Headphones,1,11.99,2019-05-29 16:05:00,89 Pine St, San Francisco,CA,94016 +204192,Apple Airpods Headphones,1,150.0,2019-05-23 08:49:00,639 Hickory St, San Francisco,CA,94016 +204193,Lightning Charging Cable,1,14.95,2019-05-10 01:20:00,931 Chestnut St, San Francisco,CA,94016 +204194,Wired Headphones,1,11.99,2019-05-29 17:04:00,584 North St, New York City,NY,10001 +204195,Apple Airpods Headphones,1,150.0,2019-05-13 09:39:00,75 River St, Los Angeles,CA,90001 +204196,Wired Headphones,1,11.99,2019-05-01 22:46:00,458 7th St, New York City,NY,10001 +204197,Lightning Charging Cable,1,14.95,2019-05-09 16:46:00,861 Chestnut St, Atlanta,GA,30301 +204198,Wired Headphones,1,11.99,2019-05-19 23:06:00,457 Lincoln St, Seattle,WA,98101 +204199,Bose SoundSport Headphones,1,99.99,2019-05-31 19:59:00,911 Main St, San Francisco,CA,94016 +204200,Bose SoundSport Headphones,1,99.99,2019-05-08 10:38:00,858 Elm St, Atlanta,GA,30301 +204201,Flatscreen TV,1,300.0,2019-05-16 10:44:00,406 Ridge St, Boston,MA,02215 +204202,Vareebadd Phone,1,400.0,2019-05-10 19:14:00,797 11th St, San Francisco,CA,94016 +204202,Wired Headphones,1,11.99,2019-05-10 19:14:00,797 11th St, San Francisco,CA,94016 +204203,34in Ultrawide Monitor,1,379.99,2019-05-31 14:11:00,178 Chestnut St, New York City,NY,10001 +204204,Lightning Charging Cable,1,14.95,2019-05-25 14:33:00,331 10th St, Los Angeles,CA,90001 +204205,AA Batteries (4-pack),1,3.84,2019-05-26 12:18:00,88 12th St, Portland,OR,97035 +204206,Wired Headphones,1,11.99,2019-05-13 17:23:00,749 8th St, New York City,NY,10001 +204207,27in 4K Gaming Monitor,1,389.99,2019-05-19 09:43:00,374 8th St, Portland,OR,97035 +204208,AAA Batteries (4-pack),2,2.99,2019-05-23 12:56:00,117 Hill St, New York City,NY,10001 +204209,Bose SoundSport Headphones,1,99.99,2019-05-27 15:33:00,622 13th St, Los Angeles,CA,90001 +204210,Lightning Charging Cable,1,14.95,2019-05-31 11:10:00,546 Jackson St, Portland,OR,97035 +204211,Apple Airpods Headphones,1,150.0,2019-05-08 09:22:00,202 Sunset St, Los Angeles,CA,90001 +204212,AAA Batteries (4-pack),4,2.99,2019-05-09 19:51:00,187 Main St, San Francisco,CA,94016 +204213,Macbook Pro Laptop,1,1700.0,2019-05-20 11:55:00,574 6th St, San Francisco,CA,94016 +204214,Bose SoundSport Headphones,1,99.99,2019-05-10 00:12:00,432 Wilson St, Portland,ME,04101 +204215,AAA Batteries (4-pack),1,2.99,2019-05-12 18:37:00,504 Center St, San Francisco,CA,94016 +204216,20in Monitor,1,109.99,2019-05-17 11:56:00,692 Elm St, Seattle,WA,98101 +204217,27in FHD Monitor,1,149.99,2019-05-19 13:16:00,342 Meadow St, Seattle,WA,98101 +204218,Wired Headphones,1,11.99,2019-05-17 21:35:00,350 8th St, Seattle,WA,98101 +204219,AAA Batteries (4-pack),1,2.99,2019-05-06 22:40:00,765 Washington St, San Francisco,CA,94016 +204220,Flatscreen TV,1,300.0,2019-05-11 20:24:00,259 Spruce St, San Francisco,CA,94016 +204221,Lightning Charging Cable,1,14.95,2019-05-23 10:36:00,56 Lake St, New York City,NY,10001 +204222,AAA Batteries (4-pack),2,2.99,2019-05-20 21:33:00,682 Madison St, Dallas,TX,75001 +204223,AA Batteries (4-pack),2,3.84,2019-05-04 15:06:00,684 13th St, San Francisco,CA,94016 +204224,AAA Batteries (4-pack),1,2.99,2019-05-10 16:50:00,846 8th St, Los Angeles,CA,90001 +204225,Flatscreen TV,1,300.0,2019-05-22 20:03:00,469 1st St, Atlanta,GA,30301 +204226,27in FHD Monitor,1,149.99,2019-05-18 20:21:00,23 4th St, New York City,NY,10001 +204227,Lightning Charging Cable,1,14.95,2019-05-12 10:58:00,847 13th St, Boston,MA,02215 +204228,USB-C Charging Cable,1,11.95,2019-05-15 11:59:00,721 Spruce St, San Francisco,CA,94016 +204229,USB-C Charging Cable,1,11.95,2019-05-23 10:47:00,883 Hill St, San Francisco,CA,94016 +204230,AAA Batteries (4-pack),4,2.99,2019-05-08 15:41:00,291 Sunset St, San Francisco,CA,94016 +204231,Bose SoundSport Headphones,1,99.99,2019-05-20 10:38:00,195 Hickory St, New York City,NY,10001 +204232,AAA Batteries (4-pack),1,2.99,2019-05-02 14:04:00,183 Forest St, Los Angeles,CA,90001 +204233,Apple Airpods Headphones,1,150.0,2019-05-16 19:39:00,375 12th St, New York City,NY,10001 +204234,AA Batteries (4-pack),1,3.84,2019-05-02 13:39:00,379 Center St, Boston,MA,02215 +204235,AAA Batteries (4-pack),1,2.99,2019-05-24 11:47:00,63 River St, Los Angeles,CA,90001 +204236,AAA Batteries (4-pack),1,2.99,2019-05-18 19:57:00,623 Maple St, San Francisco,CA,94016 +204237,20in Monitor,1,109.99,2019-05-20 09:49:00,513 Willow St, Seattle,WA,98101 +204238,AA Batteries (4-pack),1,3.84,2019-05-23 17:04:00,665 11th St, Seattle,WA,98101 +204239,Flatscreen TV,1,300.0,2019-05-08 18:06:00,375 Pine St, Seattle,WA,98101 +204240,34in Ultrawide Monitor,1,379.99,2019-05-03 12:42:00,933 Wilson St, Los Angeles,CA,90001 +204241,AAA Batteries (4-pack),1,2.99,2019-05-03 10:15:00,556 2nd St, Portland,ME,04101 +204242,Lightning Charging Cable,1,14.95,2019-05-25 10:47:00,685 11th St, San Francisco,CA,94016 +204243,USB-C Charging Cable,1,11.95,2019-05-01 22:24:00,855 Washington St, San Francisco,CA,94016 +204244,Bose SoundSport Headphones,1,99.99,2019-05-20 11:51:00,569 Main St, Boston,MA,02215 +204245,Lightning Charging Cable,1,14.95,2019-05-14 16:04:00,180 Lincoln St, Boston,MA,02215 +204246,AA Batteries (4-pack),1,3.84,2019-05-12 12:44:00,406 6th St, New York City,NY,10001 +204247,Lightning Charging Cable,1,14.95,2019-05-19 00:59:00,364 8th St, Los Angeles,CA,90001 +204248,Flatscreen TV,1,300.0,2019-05-01 16:53:00,716 Sunset St, Seattle,WA,98101 +204249,AAA Batteries (4-pack),1,2.99,2019-05-20 22:55:00,99 Cherry St, Los Angeles,CA,90001 +204250,Apple Airpods Headphones,1,150.0,2019-05-03 20:48:00,577 8th St, Atlanta,GA,30301 +204251,Wired Headphones,1,11.99,2019-05-12 23:26:00,81 Church St, Portland,OR,97035 +204252,ThinkPad Laptop,1,999.99,2019-05-02 07:37:00,21 Elm St, Atlanta,GA,30301 +204253,Apple Airpods Headphones,1,150.0,2019-05-17 16:46:00,536 1st St, Austin,TX,73301 +204254,Bose SoundSport Headphones,1,99.99,2019-05-10 21:29:00,302 Wilson St, Atlanta,GA,30301 +204255,Apple Airpods Headphones,1,150.0,2019-05-03 10:09:00,311 Hill St, Los Angeles,CA,90001 +204256,AA Batteries (4-pack),1,3.84,2019-05-11 12:27:00,238 Dogwood St, Los Angeles,CA,90001 +204257,AAA Batteries (4-pack),1,2.99,2019-05-03 18:51:00,951 12th St, New York City,NY,10001 +204258,AAA Batteries (4-pack),1,2.99,2019-05-20 15:21:00,752 Pine St, Dallas,TX,75001 +204259,Flatscreen TV,1,300.0,2019-05-08 17:57:00,418 13th St, Boston,MA,02215 +204260,USB-C Charging Cable,1,11.95,2019-05-10 20:20:00,444 Dogwood St, San Francisco,CA,94016 +204261,ThinkPad Laptop,1,999.99,2019-05-12 15:54:00,915 2nd St, Austin,TX,73301 +204262,Lightning Charging Cable,1,14.95,2019-05-18 12:11:00,317 River St, San Francisco,CA,94016 +204263,34in Ultrawide Monitor,1,379.99,2019-05-09 18:31:00,487 11th St, New York City,NY,10001 +204264,USB-C Charging Cable,1,11.95,2019-05-10 21:29:00,757 Sunset St, Atlanta,GA,30301 +204265,USB-C Charging Cable,1,11.95,2019-05-12 21:22:00,381 Center St, Dallas,TX,75001 +204266,27in 4K Gaming Monitor,1,389.99,2019-05-27 17:01:00,386 Jefferson St, Dallas,TX,75001 +204267,AAA Batteries (4-pack),1,2.99,2019-05-26 20:44:00,389 Johnson St, New York City,NY,10001 +204268,Vareebadd Phone,1,400.0,2019-05-03 05:44:00,287 4th St, Los Angeles,CA,90001 +204269,AA Batteries (4-pack),1,3.84,2019-05-04 11:42:00,439 5th St, Boston,MA,02215 +204270,USB-C Charging Cable,1,11.95,2019-05-09 18:00:00,519 Elm St, Boston,MA,02215 +204270,Apple Airpods Headphones,1,150.0,2019-05-09 18:00:00,519 Elm St, Boston,MA,02215 +204271,iPhone,1,700.0,2019-05-28 11:55:00,839 Spruce St, Atlanta,GA,30301 +204271,Lightning Charging Cable,2,14.95,2019-05-28 11:55:00,839 Spruce St, Atlanta,GA,30301 +204272,AA Batteries (4-pack),1,3.84,2019-05-18 01:20:00,160 1st St, San Francisco,CA,94016 +204273,Wired Headphones,1,11.99,2019-05-16 12:07:00,283 Maple St, New York City,NY,10001 +204274,Lightning Charging Cable,1,14.95,2019-05-14 19:27:00,164 Hill St, New York City,NY,10001 +204275,Bose SoundSport Headphones,1,99.99,2019-05-29 19:07:00,267 11th St, Boston,MA,02215 +204276,Macbook Pro Laptop,1,1700.0,2019-05-04 11:31:00,189 River St, Los Angeles,CA,90001 +204277,AAA Batteries (4-pack),3,2.99,2019-05-17 19:04:00,115 9th St, Los Angeles,CA,90001 +204278,AAA Batteries (4-pack),3,2.99,2019-05-21 16:49:00,916 6th St, New York City,NY,10001 +204279,AA Batteries (4-pack),1,3.84,2019-05-26 10:35:00,205 1st St, New York City,NY,10001 +204280,Flatscreen TV,1,300.0,2019-05-23 09:24:00,580 7th St, Atlanta,GA,30301 +204281,AAA Batteries (4-pack),1,2.99,2019-05-07 23:08:00,917 Highland St, Boston,MA,02215 +204282,ThinkPad Laptop,1,999.99,2019-05-26 00:42:00,184 Sunset St, Atlanta,GA,30301 +204283,27in FHD Monitor,1,149.99,2019-05-19 22:27:00,378 Ridge St, New York City,NY,10001 +204284,Lightning Charging Cable,1,14.95,2019-05-14 15:53:00,681 8th St, New York City,NY,10001 +204285,AA Batteries (4-pack),2,3.84,2019-05-03 10:50:00,56 Adams St, Dallas,TX,75001 +204286,Wired Headphones,1,11.99,2019-05-25 15:43:00,872 Willow St, Austin,TX,73301 +204287,Macbook Pro Laptop,1,1700.0,2019-05-24 18:06:00,262 5th St, Los Angeles,CA,90001 +204288,Macbook Pro Laptop,1,1700.0,2019-05-14 10:50:00,495 Walnut St, San Francisco,CA,94016 +204289,Lightning Charging Cable,1,14.95,2019-05-03 10:55:00,65 Walnut St, New York City,NY,10001 +204290,34in Ultrawide Monitor,1,379.99,2019-05-29 16:12:00,96 Forest St, New York City,NY,10001 +204291,Lightning Charging Cable,2,14.95,2019-05-09 19:41:00,41 Pine St, New York City,NY,10001 +204292,Macbook Pro Laptop,1,1700.0,2019-05-05 01:59:00,163 Ridge St, Seattle,WA,98101 +204293,Lightning Charging Cable,1,14.95,2019-05-28 18:50:00,985 Madison St, San Francisco,CA,94016 +204294,Wired Headphones,1,11.99,2019-05-27 09:47:00,9 8th St, New York City,NY,10001 +204295,USB-C Charging Cable,1,11.95,2019-05-12 18:22:00,315 Dogwood St, New York City,NY,10001 +204296,Apple Airpods Headphones,1,150.0,2019-05-12 07:48:00,458 Sunset St, Austin,TX,73301 +204297,ThinkPad Laptop,1,999.99,2019-05-30 17:53:00,512 Lincoln St, New York City,NY,10001 +204297,Wired Headphones,1,11.99,2019-05-30 17:53:00,512 Lincoln St, New York City,NY,10001 +204298,34in Ultrawide Monitor,1,379.99,2019-05-06 21:10:00,781 Madison St, New York City,NY,10001 +204299,Apple Airpods Headphones,1,150.0,2019-05-19 12:07:00,900 Dogwood St, Los Angeles,CA,90001 +204300,Lightning Charging Cable,1,14.95,2019-05-24 17:12:00,271 4th St, Los Angeles,CA,90001 +204301,LG Dryer,1,600.0,2019-05-15 22:57:00,48 Elm St, Seattle,WA,98101 +204302,Lightning Charging Cable,1,14.95,2019-05-30 00:21:00,797 River St, Dallas,TX,75001 +204303,AAA Batteries (4-pack),1,2.99,2019-05-30 10:56:00,737 Main St, Seattle,WA,98101 +204304,AA Batteries (4-pack),1,3.84,2019-05-20 07:45:00,543 Hickory St, Los Angeles,CA,90001 +204305,USB-C Charging Cable,1,11.95,2019-05-23 17:21:00,365 10th St, San Francisco,CA,94016 +204306,AA Batteries (4-pack),1,3.84,2019-05-09 22:48:00,273 Johnson St, Dallas,TX,75001 +204307,Apple Airpods Headphones,1,150.0,2019-05-31 10:36:00,274 12th St, San Francisco,CA,94016 +204308,Apple Airpods Headphones,1,150.0,2019-05-14 09:31:00,272 Church St, Atlanta,GA,30301 +204309,27in 4K Gaming Monitor,1,389.99,2019-05-29 21:09:00,433 Center St, Portland,OR,97035 +204310,Wired Headphones,1,11.99,2019-05-27 14:23:00,289 Sunset St, San Francisco,CA,94016 +204311,Apple Airpods Headphones,1,150.0,2019-05-19 13:22:00,757 Main St, Los Angeles,CA,90001 +204312,AA Batteries (4-pack),1,3.84,2019-05-11 12:46:00,78 9th St, San Francisco,CA,94016 +204313,20in Monitor,1,109.99,2019-05-28 12:45:00,375 4th St, Portland,OR,97035 +204314,27in FHD Monitor,1,149.99,2019-05-06 21:54:00,262 Johnson St, Dallas,TX,75001 +204315,Apple Airpods Headphones,1,150.0,2019-05-02 22:45:00,389 Hickory St, Los Angeles,CA,90001 +204316,27in FHD Monitor,1,149.99,2019-05-01 12:23:00,212 Jackson St, San Francisco,CA,94016 +204317,Lightning Charging Cable,1,14.95,2019-05-07 12:47:00,639 Cherry St, San Francisco,CA,94016 +204318,27in 4K Gaming Monitor,1,389.99,2019-05-16 08:06:00,333 Sunset St, San Francisco,CA,94016 +204319,AA Batteries (4-pack),1,3.84,2019-05-30 20:27:00,20 Sunset St, Atlanta,GA,30301 +204320,Apple Airpods Headphones,1,150.0,2019-05-14 10:16:00,405 2nd St, Los Angeles,CA,90001 +204321,ThinkPad Laptop,1,999.99,2019-05-19 15:44:00,563 Pine St, San Francisco,CA,94016 +204322,AAA Batteries (4-pack),1,2.99,2019-05-21 22:06:00,30 2nd St, New York City,NY,10001 +204323,Bose SoundSport Headphones,1,99.99,2019-05-11 15:38:00,132 Jackson St, New York City,NY,10001 +204324,USB-C Charging Cable,1,11.95,2019-05-24 13:27:00,740 Dogwood St, San Francisco,CA,94016 +204325,27in FHD Monitor,1,149.99,2019-05-07 14:39:00,581 10th St, Portland,OR,97035 +204326,AAA Batteries (4-pack),1,2.99,2019-05-25 14:10:00,308 11th St, Boston,MA,02215 +204327,AA Batteries (4-pack),2,3.84,2019-05-28 14:39:00,237 Elm St, New York City,NY,10001 +204328,27in FHD Monitor,1,149.99,2019-05-04 19:12:00,841 Lakeview St, Boston,MA,02215 +204329,AA Batteries (4-pack),1,3.84,2019-05-12 12:50:00,566 Church St, Boston,MA,02215 +204330,Wired Headphones,1,11.99,2019-05-10 11:33:00,439 12th St, Portland,OR,97035 +204331,AA Batteries (4-pack),3,3.84,2019-05-01 19:32:00,188 7th St, Atlanta,GA,30301 +204332,AA Batteries (4-pack),1,3.84,2019-05-26 23:55:00,350 Ridge St, New York City,NY,10001 +204333,Lightning Charging Cable,2,14.95,2019-05-21 19:32:00,912 5th St, New York City,NY,10001 +204334,Lightning Charging Cable,1,14.95,2019-05-01 22:29:00,441 8th St, New York City,NY,10001 +204335,AA Batteries (4-pack),3,3.84,2019-05-26 14:28:00,126 9th St, Los Angeles,CA,90001 +204336,AA Batteries (4-pack),1,3.84,2019-05-20 19:52:00,247 Lincoln St, New York City,NY,10001 +204337,AA Batteries (4-pack),1,3.84,2019-05-03 20:45:00,689 Washington St, Los Angeles,CA,90001 +204338,Apple Airpods Headphones,1,150.0,2019-05-24 20:13:00,829 Forest St, Boston,MA,02215 +204339,AAA Batteries (4-pack),1,2.99,2019-05-29 13:28:00,266 Cherry St, San Francisco,CA,94016 +204340,Wired Headphones,1,11.99,2019-05-17 11:55:00,33 Center St, San Francisco,CA,94016 +204341,Apple Airpods Headphones,1,150.0,2019-05-17 18:44:00,833 Center St, San Francisco,CA,94016 +204342,Lightning Charging Cable,1,14.95,2019-05-16 14:52:00,608 Chestnut St, Dallas,TX,75001 +204343,USB-C Charging Cable,1,11.95,2019-05-30 17:42:00,418 5th St, Seattle,WA,98101 +204344,Wired Headphones,1,11.99,2019-05-25 18:55:00,238 10th St, San Francisco,CA,94016 +204345,Lightning Charging Cable,1,14.95,2019-05-22 19:09:00,58 7th St, Seattle,WA,98101 +204346,USB-C Charging Cable,1,11.95,2019-05-28 19:23:00,635 Johnson St, Atlanta,GA,30301 +204347,ThinkPad Laptop,1,999.99,2019-05-31 07:03:00,780 Pine St, Dallas,TX,75001 +204348,Bose SoundSport Headphones,1,99.99,2019-05-16 16:26:00,44 5th St, Los Angeles,CA,90001 +204349,USB-C Charging Cable,1,11.95,2019-05-14 19:18:00,603 Park St, San Francisco,CA,94016 +204350,27in FHD Monitor,1,149.99,2019-05-17 20:32:00,348 South St, New York City,NY,10001 +204351,ThinkPad Laptop,1,999.99,2019-05-13 17:36:00,636 Forest St, San Francisco,CA,94016 +204352,USB-C Charging Cable,1,11.95,2019-05-21 17:33:00,941 8th St, Dallas,TX,75001 +204353,27in FHD Monitor,1,149.99,2019-05-27 19:21:00,757 Dogwood St, Dallas,TX,75001 +204354,Bose SoundSport Headphones,1,99.99,2019-05-09 19:15:00,236 8th St, Seattle,WA,98101 +204355,Lightning Charging Cable,1,14.95,2019-05-25 22:43:00,504 8th St, Seattle,WA,98101 +204356,Bose SoundSport Headphones,1,99.99,2019-05-02 00:31:00,293 Cherry St, New York City,NY,10001 +204357,USB-C Charging Cable,1,11.95,2019-05-20 16:58:00,178 Forest St, San Francisco,CA,94016 +204358,Wired Headphones,1,11.99,2019-05-03 15:49:00,429 Chestnut St, New York City,NY,10001 +204359,Wired Headphones,1,11.99,2019-05-27 01:23:00,611 6th St, New York City,NY,10001 +204360,USB-C Charging Cable,1,11.95,2019-05-02 06:34:00,974 South St, San Francisco,CA,94016 +204361,AAA Batteries (4-pack),2,2.99,2019-05-16 15:56:00,789 Walnut St, Los Angeles,CA,90001 +204362,AA Batteries (4-pack),2,3.84,2019-05-13 16:12:00,618 7th St, Boston,MA,02215 +204363,Lightning Charging Cable,1,14.95,2019-05-02 01:09:00,600 Lincoln St, Austin,TX,73301 +204364,AAA Batteries (4-pack),1,2.99,2019-05-21 12:52:00,691 Spruce St, Boston,MA,02215 +204365,AA Batteries (4-pack),1,3.84,2019-05-17 12:23:00,645 2nd St, Portland,OR,97035 +204365,Bose SoundSport Headphones,1,99.99,2019-05-17 12:23:00,645 2nd St, Portland,OR,97035 +204366,AAA Batteries (4-pack),3,2.99,2019-05-24 14:14:00,744 2nd St, Dallas,TX,75001 +204367,iPhone,1,700.0,2019-05-24 21:26:00,207 Washington St, Los Angeles,CA,90001 +204368,Apple Airpods Headphones,1,150.0,2019-05-09 20:14:00,814 Cherry St, San Francisco,CA,94016 +204369,AAA Batteries (4-pack),3,2.99,2019-05-25 17:21:00,755 Elm St, Atlanta,GA,30301 +204370,AA Batteries (4-pack),1,3.84,2019-05-05 22:12:00,905 Washington St, New York City,NY,10001 +204371,Apple Airpods Headphones,1,150.0,2019-05-28 06:59:00,256 Cedar St, San Francisco,CA,94016 +204372,Apple Airpods Headphones,1,150.0,2019-05-25 00:12:00,938 Church St, Los Angeles,CA,90001 +204373,Bose SoundSport Headphones,1,99.99,2019-05-19 11:44:00,283 Hill St, San Francisco,CA,94016 +204374,AAA Batteries (4-pack),1,2.99,2019-05-19 09:20:00,854 Cedar St, San Francisco,CA,94016 +204375,USB-C Charging Cable,1,11.95,2019-05-17 09:05:00,621 9th St, San Francisco,CA,94016 +204376,Wired Headphones,1,11.99,2019-05-20 08:11:00,548 Ridge St, Austin,TX,73301 +204377,Wired Headphones,1,11.99,2019-05-30 17:39:00,411 10th St, Atlanta,GA,30301 +204378,Lightning Charging Cable,1,14.95,2019-05-25 19:54:00,424 Willow St, Boston,MA,02215 +204379,Lightning Charging Cable,2,14.95,2019-05-30 10:16:00,247 North St, Los Angeles,CA,90001 +204380,Lightning Charging Cable,1,14.95,2019-05-09 14:59:00,674 Walnut St, Los Angeles,CA,90001 +204381,Bose SoundSport Headphones,1,99.99,2019-05-13 08:08:00,462 Cherry St, Boston,MA,02215 +204382,Bose SoundSport Headphones,1,99.99,2019-05-08 16:16:00,93 Park St, Seattle,WA,98101 +204383,USB-C Charging Cable,1,11.95,2019-05-18 19:24:00,602 4th St, Atlanta,GA,30301 +204384,27in 4K Gaming Monitor,1,389.99,2019-05-24 13:22:00,44 Willow St, New York City,NY,10001 +204385,USB-C Charging Cable,1,11.95,2019-05-04 05:54:00,242 Jackson St, San Francisco,CA,94016 +204386,USB-C Charging Cable,1,11.95,2019-05-24 15:48:00,632 5th St, Los Angeles,CA,90001 +204387,LG Washing Machine,1,600.0,2019-05-16 13:06:00,721 1st St, Los Angeles,CA,90001 +204388,AA Batteries (4-pack),1,3.84,2019-05-02 22:18:00,636 2nd St, Dallas,TX,75001 +204389,27in 4K Gaming Monitor,1,389.99,2019-05-26 12:07:00,607 11th St, Austin,TX,73301 +204390,Lightning Charging Cable,1,14.95,2019-05-10 22:38:00,465 Cherry St, Los Angeles,CA,90001 +204391,Wired Headphones,1,11.99,2019-05-04 15:52:00,538 Hickory St, Austin,TX,73301 +204392,Bose SoundSport Headphones,1,99.99,2019-05-08 18:18:00,448 7th St, Los Angeles,CA,90001 +204393,Lightning Charging Cable,1,14.95,2019-05-09 16:39:00,283 Church St, New York City,NY,10001 +204394,Lightning Charging Cable,1,14.95,2019-05-20 08:57:00,359 2nd St, Los Angeles,CA,90001 +204395,27in FHD Monitor,1,149.99,2019-05-10 08:58:00,388 Spruce St, Seattle,WA,98101 +204396,AA Batteries (4-pack),1,3.84,2019-05-24 14:10:00,224 Maple St, Los Angeles,CA,90001 +204397,USB-C Charging Cable,1,11.95,2019-05-13 18:41:00,997 8th St, Dallas,TX,75001 +204398,Wired Headphones,1,11.99,2019-05-27 21:52:00,113 Main St, Los Angeles,CA,90001 +204399,Lightning Charging Cable,2,14.95,2019-05-23 22:44:00,435 Chestnut St, Atlanta,GA,30301 +204400,Apple Airpods Headphones,1,150.0,2019-05-07 22:12:00,763 13th St, San Francisco,CA,94016 +204401,AAA Batteries (4-pack),1,2.99,2019-05-10 02:41:00,309 13th St, San Francisco,CA,94016 +204402,Wired Headphones,1,11.99,2019-05-31 00:10:00,647 Meadow St, Dallas,TX,75001 +204403,Bose SoundSport Headphones,1,99.99,2019-05-09 19:21:00,214 2nd St, Boston,MA,02215 +204404,Apple Airpods Headphones,1,150.0,2019-05-26 21:59:00,314 Walnut St, Dallas,TX,75001 +204405,AA Batteries (4-pack),1,3.84,2019-05-12 17:17:00,890 Madison St, San Francisco,CA,94016 +204406,USB-C Charging Cable,2,11.95,2019-05-09 11:00:00,825 Johnson St, Los Angeles,CA,90001 +204407,Lightning Charging Cable,2,14.95,2019-05-15 21:51:00,457 Jackson St, San Francisco,CA,94016 +204408,AA Batteries (4-pack),1,3.84,2019-05-17 08:37:00,295 Center St, Los Angeles,CA,90001 +204409,AA Batteries (4-pack),1,3.84,2019-05-14 22:43:00,320 Lake St, Atlanta,GA,30301 +204410,AA Batteries (4-pack),2,3.84,2019-05-19 21:09:00,682 7th St, San Francisco,CA,94016 +204411,20in Monitor,1,109.99,2019-05-15 18:11:00,708 Jefferson St, Boston,MA,02215 +204412,Google Phone,1,600.0,2019-05-07 07:12:00,764 River St, San Francisco,CA,94016 +204412,USB-C Charging Cable,1,11.95,2019-05-07 07:12:00,764 River St, San Francisco,CA,94016 +204413,Bose SoundSport Headphones,1,99.99,2019-05-29 09:31:00,685 4th St, San Francisco,CA,94016 +204414,AAA Batteries (4-pack),2,2.99,2019-05-08 18:06:00,739 Hickory St, Boston,MA,02215 +204415,USB-C Charging Cable,1,11.95,2019-05-02 13:19:00,662 Maple St, Seattle,WA,98101 +204416,AA Batteries (4-pack),1,3.84,2019-05-18 10:33:00,303 South St, San Francisco,CA,94016 +204417,Wired Headphones,1,11.99,2019-05-02 19:50:00,577 Hill St, Seattle,WA,98101 +204418,Flatscreen TV,1,300.0,2019-05-19 16:39:00,302 Sunset St, Boston,MA,02215 +204419,iPhone,1,700.0,2019-05-15 15:37:00,612 Spruce St, San Francisco,CA,94016 +204420,Lightning Charging Cable,2,14.95,2019-05-16 17:06:00,626 Maple St, San Francisco,CA,94016 +204421,34in Ultrawide Monitor,1,379.99,2019-05-27 16:36:00,810 Main St, Portland,OR,97035 +204422,Lightning Charging Cable,1,14.95,2019-05-20 17:00:00,273 Lincoln St, Boston,MA,02215 +204423,20in Monitor,1,109.99,2019-05-04 17:25:00,985 5th St, New York City,NY,10001 +204424,Apple Airpods Headphones,1,150.0,2019-05-24 08:15:00,888 14th St, New York City,NY,10001 +204425,USB-C Charging Cable,1,11.95,2019-05-05 21:51:00,649 Willow St, Dallas,TX,75001 +204426,AA Batteries (4-pack),1,3.84,2019-05-27 15:23:00,591 Lake St, Austin,TX,73301 +204427,Wired Headphones,1,11.99,2019-05-24 11:10:00,76 Elm St, Dallas,TX,75001 +204428,Lightning Charging Cable,1,14.95,2019-05-04 11:10:00,347 1st St, Los Angeles,CA,90001 +204429,27in FHD Monitor,1,149.99,2019-05-26 06:07:00,112 Spruce St, Los Angeles,CA,90001 +204430,iPhone,1,700.0,2019-05-19 13:03:00,949 Main St, San Francisco,CA,94016 +204431,Bose SoundSport Headphones,1,99.99,2019-05-19 09:02:00,788 Forest St, San Francisco,CA,94016 +204432,Flatscreen TV,1,300.0,2019-05-25 08:55:00,535 10th St, San Francisco,CA,94016 +204433,Apple Airpods Headphones,1,150.0,2019-05-03 13:46:00,846 West St, San Francisco,CA,94016 +204434,AA Batteries (4-pack),1,3.84,2019-05-27 19:17:00,612 Elm St, San Francisco,CA,94016 +204435,Vareebadd Phone,1,400.0,2019-05-29 20:38:00,902 8th St, Seattle,WA,98101 +204436,Apple Airpods Headphones,1,150.0,2019-05-04 20:39:00,309 Highland St, San Francisco,CA,94016 +204437,Macbook Pro Laptop,1,1700.0,2019-05-28 12:11:00,490 8th St, New York City,NY,10001 +204438,27in FHD Monitor,1,149.99,2019-05-18 23:39:00,636 West St, Los Angeles,CA,90001 +204439,34in Ultrawide Monitor,1,379.99,2019-05-07 08:14:00,91 5th St, New York City,NY,10001 +204440,AAA Batteries (4-pack),2,2.99,2019-05-05 19:45:00,553 11th St, Seattle,WA,98101 +204441,27in FHD Monitor,1,149.99,2019-05-22 21:37:00,906 Hickory St, Atlanta,GA,30301 +204442,Wired Headphones,1,11.99,2019-05-03 22:46:00,685 6th St, Seattle,WA,98101 +204443,USB-C Charging Cable,1,11.95,2019-05-02 08:48:00,241 2nd St, Atlanta,GA,30301 +204443,Apple Airpods Headphones,1,150.0,2019-05-02 08:48:00,241 2nd St, Atlanta,GA,30301 +204444,Wired Headphones,1,11.99,2019-05-03 19:30:00,271 4th St, San Francisco,CA,94016 +204445,27in FHD Monitor,1,149.99,2019-05-20 15:10:00,104 Adams St, San Francisco,CA,94016 +204446,AA Batteries (4-pack),1,3.84,2019-05-02 18:43:00,241 Chestnut St, Portland,OR,97035 +204447,Apple Airpods Headphones,1,150.0,2019-05-26 18:24:00,365 14th St, Seattle,WA,98101 +204448,Bose SoundSport Headphones,1,99.99,2019-05-12 16:58:00,454 Washington St, Atlanta,GA,30301 +204449,Wired Headphones,1,11.99,2019-05-09 13:17:00,367 13th St, San Francisco,CA,94016 +204450,Google Phone,1,600.0,2019-05-07 09:10:00,632 13th St, Los Angeles,CA,90001 +204450,Bose SoundSport Headphones,1,99.99,2019-05-07 09:10:00,632 13th St, Los Angeles,CA,90001 +204451,Lightning Charging Cable,1,14.95,2019-05-11 20:31:00,219 Chestnut St, Los Angeles,CA,90001 +204452,iPhone,1,700.0,2019-05-09 11:25:00,874 4th St, Los Angeles,CA,90001 +204453,Wired Headphones,1,11.99,2019-05-29 19:14:00,306 Madison St, San Francisco,CA,94016 +204454,Macbook Pro Laptop,1,1700.0,2019-05-24 17:29:00,79 14th St, New York City,NY,10001 +204455,27in FHD Monitor,1,149.99,2019-05-23 09:02:00,319 Ridge St, San Francisco,CA,94016 +204456,Wired Headphones,1,11.99,2019-05-20 19:42:00,849 Chestnut St, Seattle,WA,98101 +204457,Wired Headphones,1,11.99,2019-05-27 09:14:00,158 Cherry St, Portland,OR,97035 +204458,USB-C Charging Cable,1,11.95,2019-05-24 21:24:00,791 River St, Los Angeles,CA,90001 +204459,AAA Batteries (4-pack),1,2.99,2019-05-06 02:13:00,947 Meadow St, San Francisco,CA,94016 +204460,AAA Batteries (4-pack),1,2.99,2019-05-26 00:24:00,124 Adams St, Boston,MA,02215 +204461,AA Batteries (4-pack),1,3.84,2019-05-20 14:27:00,385 Washington St, Atlanta,GA,30301 +204462,AAA Batteries (4-pack),1,2.99,2019-05-13 09:41:00,239 8th St, San Francisco,CA,94016 +204463,USB-C Charging Cable,1,11.95,2019-05-18 16:45:00,66 Hill St, San Francisco,CA,94016 +204464,AA Batteries (4-pack),1,3.84,2019-05-31 20:49:00,891 Pine St, San Francisco,CA,94016 +204465,27in FHD Monitor,1,149.99,2019-05-15 11:15:00,894 14th St, Austin,TX,73301 +204466,Lightning Charging Cable,2,14.95,2019-05-27 10:15:00,977 Spruce St, Los Angeles,CA,90001 +204467,AA Batteries (4-pack),1,3.84,2019-05-17 06:29:00,513 Hickory St, Los Angeles,CA,90001 +204468,Macbook Pro Laptop,1,1700.0,2019-05-21 21:02:00,567 North St, Los Angeles,CA,90001 +204469,iPhone,1,700.0,2019-05-10 12:16:00,166 Meadow St, Boston,MA,02215 +204470,20in Monitor,1,109.99,2019-05-03 14:35:00,931 Spruce St, Boston,MA,02215 +204471,USB-C Charging Cable,1,11.95,2019-05-11 16:42:00,735 5th St, San Francisco,CA,94016 +204472,Lightning Charging Cable,1,14.95,2019-05-03 22:42:00,512 Highland St, Los Angeles,CA,90001 +204473,Google Phone,1,600.0,2019-05-12 13:06:00,176 Highland St, San Francisco,CA,94016 +204474,Apple Airpods Headphones,1,150.0,2019-05-09 20:27:00,498 Washington St, Seattle,WA,98101 +204475,Bose SoundSport Headphones,1,99.99,2019-05-05 16:08:00,242 10th St, Dallas,TX,75001 +204476,Flatscreen TV,1,300.0,2019-05-23 11:34:00,648 Dogwood St, New York City,NY,10001 +204477,ThinkPad Laptop,1,999.99,2019-05-30 13:58:00,890 Dogwood St, New York City,NY,10001 +204478,Lightning Charging Cable,2,14.95,2019-05-08 17:33:00,713 4th St, Portland,OR,97035 +204479,Lightning Charging Cable,1,14.95,2019-05-21 00:09:00,153 Lakeview St, Los Angeles,CA,90001 +204480,20in Monitor,1,109.99,2019-05-12 23:57:00,187 Lincoln St, Portland,OR,97035 +204481,AA Batteries (4-pack),1,3.84,2019-05-06 17:38:00,317 Willow St, Los Angeles,CA,90001 +204482,27in FHD Monitor,1,149.99,2019-05-14 06:02:00,333 Ridge St, Atlanta,GA,30301 +204483,Macbook Pro Laptop,1,1700.0,2019-05-02 19:29:00,872 Elm St, Portland,OR,97035 +204484,20in Monitor,1,109.99,2019-05-04 17:27:00,559 Main St, Portland,OR,97035 +204485,USB-C Charging Cable,1,11.95,2019-05-20 12:40:00,661 4th St, New York City,NY,10001 +204486,AAA Batteries (4-pack),1,2.99,2019-05-14 13:44:00,980 North St, Boston,MA,02215 +204487,Lightning Charging Cable,2,14.95,2019-05-03 12:47:00,58 River St, San Francisco,CA,94016 +204488,Lightning Charging Cable,1,14.95,2019-05-15 17:11:00,257 Ridge St, Dallas,TX,75001 +204489,20in Monitor,1,109.99,2019-05-13 20:18:00,686 Jefferson St, Boston,MA,02215 +204490,Flatscreen TV,1,300.0,2019-05-14 12:58:00,451 11th St, Seattle,WA,98101 +204491,ThinkPad Laptop,1,999.99,2019-05-18 16:29:00,358 Center St, Dallas,TX,75001 +204492,34in Ultrawide Monitor,1,379.99,2019-05-17 18:13:00,392 1st St, Boston,MA,02215 +204493,Google Phone,1,600.0,2019-05-06 10:39:00,177 13th St, San Francisco,CA,94016 +204493,Wired Headphones,1,11.99,2019-05-06 10:39:00,177 13th St, San Francisco,CA,94016 +204494,27in 4K Gaming Monitor,1,389.99,2019-05-26 19:23:00,341 West St, San Francisco,CA,94016 +204495,USB-C Charging Cable,1,11.95,2019-05-24 13:57:00,841 Meadow St, Atlanta,GA,30301 +204496,Wired Headphones,2,11.99,2019-05-21 14:10:00,822 North St, Boston,MA,02215 +204497,Wired Headphones,1,11.99,2019-05-28 16:03:00,702 9th St, Boston,MA,02215 +204498,Wired Headphones,1,11.99,2019-05-01 11:36:00,179 Willow St, San Francisco,CA,94016 +204499,Wired Headphones,1,11.99,2019-05-09 10:43:00,123 2nd St, New York City,NY,10001 +204500,20in Monitor,2,109.99,2019-05-26 22:02:00,466 Jackson St, Dallas,TX,75001 +204501,iPhone,1,700.0,2019-05-20 21:51:00,138 Pine St, New York City,NY,10001 +204502,USB-C Charging Cable,1,11.95,2019-05-17 22:44:00,968 14th St, Seattle,WA,98101 +204503,USB-C Charging Cable,1,11.95,2019-05-25 10:55:00,898 11th St, San Francisco,CA,94016 +204504,20in Monitor,1,109.99,2019-05-24 18:48:00,843 Ridge St, Austin,TX,73301 +204505,AA Batteries (4-pack),1,3.84,2019-05-14 12:36:00,430 Sunset St, Seattle,WA,98101 +204506,USB-C Charging Cable,1,11.95,2019-05-04 08:12:00,769 Forest St, San Francisco,CA,94016 +204507,AAA Batteries (4-pack),2,2.99,2019-05-18 18:00:00,270 13th St, Atlanta,GA,30301 +204508,27in FHD Monitor,1,149.99,2019-05-18 05:28:00,594 14th St, Dallas,TX,75001 +204509,AAA Batteries (4-pack),4,2.99,2019-05-21 10:07:00,979 West St, San Francisco,CA,94016 +204510,Wired Headphones,1,11.99,2019-05-23 08:44:00,595 Main St, Atlanta,GA,30301 +204511,Lightning Charging Cable,1,14.95,2019-05-07 15:49:00,607 Lincoln St, Portland,ME,04101 +204511,27in 4K Gaming Monitor,1,389.99,2019-05-07 15:49:00,607 Lincoln St, Portland,ME,04101 +204512,AA Batteries (4-pack),1,3.84,2019-05-02 13:43:00,343 Chestnut St, Atlanta,GA,30301 +204513,AA Batteries (4-pack),1,3.84,2019-05-13 10:46:00,344 Adams St, Atlanta,GA,30301 +204514,AAA Batteries (4-pack),1,2.99,2019-05-20 22:56:00,151 Dogwood St, San Francisco,CA,94016 +204515,Wired Headphones,1,11.99,2019-05-19 13:21:00,333 8th St, New York City,NY,10001 +204516,USB-C Charging Cable,1,11.95,2019-05-31 21:45:00,632 12th St, Dallas,TX,75001 +204517,Apple Airpods Headphones,1,150.0,2019-05-17 14:48:00,842 7th St, San Francisco,CA,94016 +204518,AAA Batteries (4-pack),1,2.99,2019-05-17 16:41:00,676 Lake St, Seattle,WA,98101 +204519,AA Batteries (4-pack),1,3.84,2019-05-30 15:22:00,610 West St, Seattle,WA,98101 +204520,AA Batteries (4-pack),1,3.84,2019-05-23 14:06:00,518 13th St, Seattle,WA,98101 +204521,Lightning Charging Cable,1,14.95,2019-05-28 13:25:00,668 Madison St, Atlanta,GA,30301 +204522,AA Batteries (4-pack),1,3.84,2019-05-07 09:28:00,946 Park St, Dallas,TX,75001 +204523,USB-C Charging Cable,1,11.95,2019-05-01 11:26:00,177 12th St, Seattle,WA,98101 +204524,AAA Batteries (4-pack),1,2.99,2019-05-16 16:29:00,485 West St, Atlanta,GA,30301 +204525,27in FHD Monitor,1,149.99,2019-05-25 08:40:00,921 5th St, Los Angeles,CA,90001 +204526,34in Ultrawide Monitor,1,379.99,2019-05-10 00:01:00,312 Highland St, San Francisco,CA,94016 +204527,AA Batteries (4-pack),1,3.84,2019-05-19 09:28:00,470 Center St, Los Angeles,CA,90001 +204528,Lightning Charging Cable,1,14.95,2019-05-07 14:32:00,510 7th St, San Francisco,CA,94016 +204529,USB-C Charging Cable,1,11.95,2019-05-03 15:54:00,201 Maple St, San Francisco,CA,94016 +204530,ThinkPad Laptop,1,999.99,2019-05-01 18:27:00,485 Highland St, San Francisco,CA,94016 +204531,USB-C Charging Cable,1,11.95,2019-05-29 16:56:00,987 Elm St, Boston,MA,02215 +204532,Wired Headphones,1,11.99,2019-05-26 18:39:00,215 6th St, San Francisco,CA,94016 +204533,AA Batteries (4-pack),3,3.84,2019-05-06 19:34:00,515 Madison St, San Francisco,CA,94016 +204534,AA Batteries (4-pack),2,3.84,2019-05-04 17:01:00,352 Spruce St, San Francisco,CA,94016 +204535,Lightning Charging Cable,1,14.95,2019-05-03 19:36:00,996 South St, Los Angeles,CA,90001 +204536,iPhone,1,700.0,2019-05-22 09:14:00,36 Lake St, Los Angeles,CA,90001 +204536,Lightning Charging Cable,1,14.95,2019-05-22 09:14:00,36 Lake St, Los Angeles,CA,90001 +204537,iPhone,1,700.0,2019-05-15 16:38:00,136 Elm St, Los Angeles,CA,90001 +204537,Apple Airpods Headphones,1,150.0,2019-05-15 16:38:00,136 Elm St, Los Angeles,CA,90001 +204538,34in Ultrawide Monitor,1,379.99,2019-05-10 15:15:00,426 Jackson St, Los Angeles,CA,90001 +204539,Apple Airpods Headphones,1,150.0,2019-05-05 17:23:00,202 1st St, Boston,MA,02215 +204540,Apple Airpods Headphones,1,150.0,2019-05-10 18:53:00,110 Hill St, Dallas,TX,75001 +204540,AAA Batteries (4-pack),1,2.99,2019-05-10 18:53:00,110 Hill St, Dallas,TX,75001 +204541,Wired Headphones,1,11.99,2019-05-14 13:16:00,220 Chestnut St, Austin,TX,73301 +204542,AA Batteries (4-pack),1,3.84,2019-05-14 09:45:00,199 Cherry St, Los Angeles,CA,90001 +204543,Wired Headphones,1,11.99,2019-05-23 19:51:00,416 River St, San Francisco,CA,94016 +204544,Lightning Charging Cable,1,14.95,2019-05-18 08:50:00,46 Walnut St, New York City,NY,10001 +204545,Lightning Charging Cable,1,14.95,2019-05-20 07:04:00,443 West St, Seattle,WA,98101 +204546,Wired Headphones,1,11.99,2019-05-02 23:53:00,677 South St, Los Angeles,CA,90001 +204547,Macbook Pro Laptop,1,1700.0,2019-05-19 16:03:00,318 Hickory St, San Francisco,CA,94016 +204548,Apple Airpods Headphones,1,150.0,2019-05-25 15:32:00,468 Willow St, Los Angeles,CA,90001 +204549,LG Washing Machine,1,600.0,2019-05-22 13:11:00,182 Cedar St, Boston,MA,02215 +204550,27in FHD Monitor,1,149.99,2019-05-15 15:01:00,803 Center St, New York City,NY,10001 +204551,Macbook Pro Laptop,1,1700.0,2019-05-19 12:26:00,632 14th St, Los Angeles,CA,90001 +204552,AA Batteries (4-pack),2,3.84,2019-05-01 20:15:00,571 Center St, Seattle,WA,98101 +204553,AAA Batteries (4-pack),1,2.99,2019-05-22 12:58:00,621 11th St, Seattle,WA,98101 +204554,Wired Headphones,1,11.99,2019-05-25 08:56:00,252 Johnson St, Los Angeles,CA,90001 +204555,AA Batteries (4-pack),1,3.84,2019-05-02 09:29:00,741 Chestnut St, Dallas,TX,75001 +204556,Bose SoundSport Headphones,1,99.99,2019-05-13 22:32:00,804 Jackson St, Seattle,WA,98101 +204557,Lightning Charging Cable,1,14.95,2019-05-15 08:14:00,222 5th St, New York City,NY,10001 +204558,Bose SoundSport Headphones,1,99.99,2019-05-10 14:21:00,700 Cedar St, Los Angeles,CA,90001 +204559,27in 4K Gaming Monitor,1,389.99,2019-05-08 08:57:00,12 Spruce St, San Francisco,CA,94016 +204560,Lightning Charging Cable,1,14.95,2019-05-04 20:25:00,92 Pine St, Dallas,TX,75001 +204561,Flatscreen TV,1,300.0,2019-05-28 18:11:00,609 10th St, Seattle,WA,98101 +204562,USB-C Charging Cable,2,11.95,2019-05-29 11:35:00,176 Chestnut St, New York City,NY,10001 +204563,Wired Headphones,1,11.99,2019-05-26 09:30:00,290 2nd St, Los Angeles,CA,90001 +204564,Lightning Charging Cable,1,14.95,2019-05-25 00:46:00,886 Spruce St, Dallas,TX,75001 +204565,Bose SoundSport Headphones,1,99.99,2019-05-07 20:00:00,121 South St, Dallas,TX,75001 +204566,Lightning Charging Cable,1,14.95,2019-05-06 14:01:00,679 4th St, Los Angeles,CA,90001 +204567,AA Batteries (4-pack),2,3.84,2019-05-16 04:00:00,743 14th St, New York City,NY,10001 +204568,AAA Batteries (4-pack),1,2.99,2019-05-31 16:12:00,4 West St, San Francisco,CA,94016 +204569,27in 4K Gaming Monitor,1,389.99,2019-05-07 18:44:00,806 7th St, New York City,NY,10001 +204570,Macbook Pro Laptop,1,1700.0,2019-05-31 11:39:00,755 Willow St, Los Angeles,CA,90001 +204571,AAA Batteries (4-pack),2,2.99,2019-05-07 06:44:00,337 2nd St, San Francisco,CA,94016 +204572,Bose SoundSport Headphones,1,99.99,2019-05-27 21:08:00,8 Meadow St, Boston,MA,02215 +204573,AAA Batteries (4-pack),1,2.99,2019-05-17 19:29:00,784 5th St, Portland,ME,04101 +204574,Wired Headphones,3,11.99,2019-05-27 14:33:00,724 6th St, Boston,MA,02215 +204575,USB-C Charging Cable,1,11.95,2019-05-20 10:26:00,922 Madison St, Portland,OR,97035 +204576,Lightning Charging Cable,1,14.95,2019-05-19 19:06:00,326 7th St, Los Angeles,CA,90001 +204577,Apple Airpods Headphones,1,150.0,2019-05-28 08:17:00,573 Center St, San Francisco,CA,94016 +204578,AAA Batteries (4-pack),1,2.99,2019-05-15 21:39:00,727 5th St, New York City,NY,10001 +204579,Bose SoundSport Headphones,1,99.99,2019-05-11 19:56:00,900 Chestnut St, New York City,NY,10001 +204580,iPhone,1,700.0,2019-05-26 10:09:00,415 Dogwood St, Boston,MA,02215 +204581,Bose SoundSport Headphones,1,99.99,2019-05-23 16:10:00,669 Meadow St, San Francisco,CA,94016 +204581,AA Batteries (4-pack),2,3.84,2019-05-23 16:10:00,669 Meadow St, San Francisco,CA,94016 +204582,iPhone,1,700.0,2019-05-26 20:58:00,499 Sunset St, Dallas,TX,75001 +204582,Apple Airpods Headphones,1,150.0,2019-05-26 20:58:00,499 Sunset St, Dallas,TX,75001 +204583,Flatscreen TV,1,300.0,2019-05-02 12:41:00,861 Willow St, New York City,NY,10001 +204584,27in FHD Monitor,1,149.99,2019-05-18 19:41:00,88 2nd St, Austin,TX,73301 +204585,Apple Airpods Headphones,1,150.0,2019-05-07 09:21:00,574 Maple St, San Francisco,CA,94016 +204586,Lightning Charging Cable,1,14.95,2019-05-29 11:11:00,324 Lake St, Austin,TX,73301 +204587,AA Batteries (4-pack),1,3.84,2019-05-26 16:12:00,523 11th St, Portland,OR,97035 +204588,USB-C Charging Cable,1,11.95,2019-05-08 10:33:00,801 Wilson St, Portland,OR,97035 +204589,27in 4K Gaming Monitor,1,389.99,2019-05-06 20:55:00,517 Jackson St, Los Angeles,CA,90001 +204590,Flatscreen TV,1,300.0,2019-05-16 23:56:00,264 Maple St, San Francisco,CA,94016 +204591,AA Batteries (4-pack),2,3.84,2019-05-10 17:30:00,739 Hill St, Seattle,WA,98101 +204592,Apple Airpods Headphones,1,150.0,2019-05-02 21:31:00,358 Meadow St, Dallas,TX,75001 +204593,USB-C Charging Cable,1,11.95,2019-05-17 15:43:00,860 5th St, Los Angeles,CA,90001 +204594,Macbook Pro Laptop,1,1700.0,2019-05-02 10:23:00,592 11th St, Los Angeles,CA,90001 +204595,34in Ultrawide Monitor,1,379.99,2019-05-23 12:19:00,607 11th St, San Francisco,CA,94016 +204596,Wired Headphones,1,11.99,2019-05-31 18:00:00,204 Ridge St, Dallas,TX,75001 +204597,Bose SoundSport Headphones,1,99.99,2019-05-03 09:28:00,66 4th St, Portland,OR,97035 +204598,Lightning Charging Cable,1,14.95,2019-05-03 02:21:00,709 Lake St, Seattle,WA,98101 +204599,Lightning Charging Cable,1,14.95,2019-05-05 13:00:00,249 Willow St, Los Angeles,CA,90001 +204600,Bose SoundSport Headphones,1,99.99,2019-05-13 05:27:00,592 North St, New York City,NY,10001 +204601,AA Batteries (4-pack),1,3.84,2019-05-10 21:05:00,845 Chestnut St, Dallas,TX,75001 +204602,Lightning Charging Cable,1,14.95,2019-05-14 14:33:00,684 8th St, Atlanta,GA,30301 +204603,Vareebadd Phone,1,400.0,2019-05-05 04:55:00,537 Pine St, San Francisco,CA,94016 +204604,Apple Airpods Headphones,1,150.0,2019-05-30 14:23:00,147 9th St, New York City,NY,10001 +204605,AA Batteries (4-pack),1,3.84,2019-05-10 15:53:00,271 Church St, Portland,OR,97035 +204606,AA Batteries (4-pack),1,3.84,2019-05-06 02:51:00,70 Jackson St, San Francisco,CA,94016 +204607,27in 4K Gaming Monitor,1,389.99,2019-05-10 18:44:00,757 Lake St, Los Angeles,CA,90001 +204608,ThinkPad Laptop,1,999.99,2019-05-01 22:53:00,693 Forest St, San Francisco,CA,94016 +204609,AAA Batteries (4-pack),1,2.99,2019-05-09 09:08:00,23 Main St, San Francisco,CA,94016 +204610,AAA Batteries (4-pack),3,2.99,2019-06-01 00:51:00,34 Adams St, Atlanta,GA,30301 +204611,Lightning Charging Cable,1,14.95,2019-05-16 21:48:00,451 Park St, San Francisco,CA,94016 +204612,USB-C Charging Cable,1,11.95,2019-05-03 16:24:00,86 Meadow St, New York City,NY,10001 +204613,Macbook Pro Laptop,1,1700.0,2019-05-09 15:04:00,421 Washington St, Dallas,TX,75001 +204614,USB-C Charging Cable,1,11.95,2019-05-17 09:34:00,541 7th St, Los Angeles,CA,90001 +204615,AA Batteries (4-pack),1,3.84,2019-05-13 18:08:00,382 Pine St, Dallas,TX,75001 +204616,AA Batteries (4-pack),2,3.84,2019-05-28 17:00:00,109 Walnut St, Los Angeles,CA,90001 +204617,AA Batteries (4-pack),1,3.84,2019-05-20 08:23:00,967 Cherry St, Los Angeles,CA,90001 +204618,Apple Airpods Headphones,1,150.0,2019-05-19 19:08:00,667 Jefferson St, San Francisco,CA,94016 +204619,Apple Airpods Headphones,1,150.0,2019-05-13 19:26:00,508 1st St, Portland,ME,04101 +204620,Apple Airpods Headphones,1,150.0,2019-05-02 11:12:00,626 1st St, San Francisco,CA,94016 +204621,Macbook Pro Laptop,1,1700.0,2019-05-18 14:57:00,145 Church St, Los Angeles,CA,90001 +204622,Apple Airpods Headphones,1,150.0,2019-05-29 09:40:00,150 Hickory St, Boston,MA,02215 +204623,AAA Batteries (4-pack),2,2.99,2019-05-17 11:41:00,284 Wilson St, Los Angeles,CA,90001 +204624,AAA Batteries (4-pack),1,2.99,2019-05-25 11:41:00,655 Walnut St, San Francisco,CA,94016 +204625,USB-C Charging Cable,1,11.95,2019-05-25 10:57:00,621 Forest St, San Francisco,CA,94016 +204626,Apple Airpods Headphones,1,150.0,2019-05-07 00:30:00,468 6th St, Boston,MA,02215 +204627,Lightning Charging Cable,1,14.95,2019-05-13 17:10:00,21 Maple St, Boston,MA,02215 +204628,iPhone,1,700.0,2019-05-20 13:28:00,419 Maple St, Dallas,TX,75001 +204629,27in 4K Gaming Monitor,1,389.99,2019-05-12 11:31:00,26 11th St, Boston,MA,02215 +204630,27in 4K Gaming Monitor,1,389.99,2019-05-27 00:49:00,459 Hickory St, Los Angeles,CA,90001 +204631,Wired Headphones,1,11.99,2019-05-02 12:20:00,719 River St, Seattle,WA,98101 +204632,USB-C Charging Cable,1,11.95,2019-05-03 18:22:00,864 Adams St, Seattle,WA,98101 +204633,AAA Batteries (4-pack),1,2.99,2019-05-02 18:30:00,377 Cherry St, Dallas,TX,75001 +204634,AAA Batteries (4-pack),1,2.99,2019-05-21 19:46:00,97 Chestnut St, New York City,NY,10001 +204635,USB-C Charging Cable,1,11.95,2019-05-18 16:25:00,8 South St, Atlanta,GA,30301 +204636,AA Batteries (4-pack),1,3.84,2019-05-05 17:48:00,297 Willow St, San Francisco,CA,94016 +204637,Wired Headphones,1,11.99,2019-05-09 18:23:00,40 2nd St, Los Angeles,CA,90001 +204638,34in Ultrawide Monitor,1,379.99,2019-05-12 12:55:00,941 North St, San Francisco,CA,94016 +204639,Lightning Charging Cable,1,14.95,2019-05-06 01:12:00,584 8th St, Portland,ME,04101 +204640,LG Dryer,1,600.0,2019-05-10 17:35:00,960 Highland St, San Francisco,CA,94016 +204641,AA Batteries (4-pack),2,3.84,2019-05-26 11:00:00,314 Park St, Los Angeles,CA,90001 +204642,Bose SoundSport Headphones,1,99.99,2019-05-24 13:12:00,594 Meadow St, Portland,OR,97035 +204643,AAA Batteries (4-pack),1,2.99,2019-05-22 22:10:00,124 Willow St, New York City,NY,10001 +204644,27in FHD Monitor,1,149.99,2019-05-09 06:33:00,638 Chestnut St, San Francisco,CA,94016 +204645,Apple Airpods Headphones,1,150.0,2019-05-21 21:58:00,128 Maple St, New York City,NY,10001 +204645,20in Monitor,1,109.99,2019-05-21 21:58:00,128 Maple St, New York City,NY,10001 +204646,Lightning Charging Cable,1,14.95,2019-05-22 13:14:00,558 Washington St, Dallas,TX,75001 +204647,Lightning Charging Cable,1,14.95,2019-05-04 17:18:00,891 Washington St, Boston,MA,02215 +204648,Lightning Charging Cable,1,14.95,2019-05-15 03:34:00,842 River St, San Francisco,CA,94016 +204649,AA Batteries (4-pack),1,3.84,2019-05-09 14:15:00,228 Pine St, Austin,TX,73301 +204650,AA Batteries (4-pack),1,3.84,2019-05-21 16:01:00,403 Center St, San Francisco,CA,94016 +204651,AA Batteries (4-pack),2,3.84,2019-05-13 11:34:00,711 12th St, New York City,NY,10001 +204652,Bose SoundSport Headphones,1,99.99,2019-05-28 19:09:00,637 Walnut St, Seattle,WA,98101 +204653,iPhone,1,700.0,2019-05-18 14:45:00,415 2nd St, San Francisco,CA,94016 +204654,Wired Headphones,1,11.99,2019-05-25 09:31:00,770 Lincoln St, Boston,MA,02215 +204655,Bose SoundSport Headphones,1,99.99,2019-05-02 08:31:00,894 13th St, Los Angeles,CA,90001 +204656,Lightning Charging Cable,2,14.95,2019-05-25 14:19:00,62 8th St, Austin,TX,73301 +204657,Wired Headphones,1,11.99,2019-05-09 23:33:00,337 4th St, San Francisco,CA,94016 +204658,USB-C Charging Cable,1,11.95,2019-05-07 19:36:00,859 Forest St, Atlanta,GA,30301 +204659,USB-C Charging Cable,1,11.95,2019-05-13 18:37:00,953 4th St, Austin,TX,73301 +204660,27in FHD Monitor,1,149.99,2019-05-21 22:28:00,313 Church St, New York City,NY,10001 +204661,Bose SoundSport Headphones,1,99.99,2019-05-08 12:29:00,223 Lake St, Dallas,TX,75001 +204662,AA Batteries (4-pack),5,3.84,2019-05-12 23:05:00,867 Wilson St, Portland,OR,97035 +204663,USB-C Charging Cable,1,11.95,2019-05-13 09:20:00,169 10th St, Atlanta,GA,30301 +204664,Wired Headphones,1,11.99,2019-05-27 08:58:00,101 Lincoln St, Seattle,WA,98101 +204665,AAA Batteries (4-pack),4,2.99,2019-05-13 11:11:00,932 Elm St, Seattle,WA,98101 +204666,Lightning Charging Cable,2,14.95,2019-05-05 17:13:00,240 Main St, San Francisco,CA,94016 +204667,ThinkPad Laptop,1,999.99,2019-05-18 07:22:00,999 Madison St, Dallas,TX,75001 +204668,iPhone,1,700.0,2019-05-25 10:02:00,302 14th St, Austin,TX,73301 +204669,Wired Headphones,1,11.99,2019-05-31 11:28:00,323 Ridge St, Portland,OR,97035 +204670,LG Dryer,1,600.0,2019-05-20 12:00:00,87 Lake St, Seattle,WA,98101 +204671,Wired Headphones,1,11.99,2019-05-24 10:19:00,588 Lake St, Atlanta,GA,30301 +204672,Wired Headphones,2,11.99,2019-05-11 21:41:00,603 11th St, Dallas,TX,75001 +204673,AAA Batteries (4-pack),1,2.99,2019-05-08 20:53:00,190 Hickory St, Seattle,WA,98101 +204674,Vareebadd Phone,1,400.0,2019-05-29 10:54:00,7 Maple St, Austin,TX,73301 +204675,Flatscreen TV,1,300.0,2019-05-28 23:08:00,601 9th St, San Francisco,CA,94016 +204676,AAA Batteries (4-pack),2,2.99,2019-05-19 15:23:00,811 Center St, Dallas,TX,75001 +204677,AAA Batteries (4-pack),1,2.99,2019-05-02 21:28:00,839 Meadow St, New York City,NY,10001 +204678,AAA Batteries (4-pack),2,2.99,2019-05-17 20:56:00,658 West St, Portland,OR,97035 +204679,Bose SoundSport Headphones,1,99.99,2019-05-15 08:53:00,527 Lincoln St, San Francisco,CA,94016 +204680,USB-C Charging Cable,2,11.95,2019-05-22 08:26:00,996 Dogwood St, Austin,TX,73301 +204681,AA Batteries (4-pack),1,3.84,2019-05-29 20:03:00,385 Chestnut St, San Francisco,CA,94016 +204682,27in FHD Monitor,1,149.99,2019-05-25 10:43:00,47 2nd St, San Francisco,CA,94016 +204683,Apple Airpods Headphones,1,150.0,2019-05-14 10:37:00,725 6th St, Austin,TX,73301 +204684,Lightning Charging Cable,1,14.95,2019-05-29 14:21:00,384 Main St, Boston,MA,02215 +204685,27in FHD Monitor,1,149.99,2019-05-20 12:46:00,164 West St, San Francisco,CA,94016 +204686,iPhone,1,700.0,2019-05-23 12:19:00,53 Cherry St, Dallas,TX,75001 +204686,27in 4K Gaming Monitor,1,389.99,2019-05-23 12:19:00,53 Cherry St, Dallas,TX,75001 +204687,Apple Airpods Headphones,1,150.0,2019-05-27 22:20:00,311 Elm St, New York City,NY,10001 +204688,Wired Headphones,1,11.99,2019-05-29 06:54:00,598 Jefferson St, Boston,MA,02215 +204689,Bose SoundSport Headphones,1,99.99,2019-05-14 21:54:00,486 Washington St, Portland,OR,97035 +204690,27in 4K Gaming Monitor,1,389.99,2019-05-11 15:17:00,884 1st St, San Francisco,CA,94016 +204691,Wired Headphones,1,11.99,2019-05-03 05:53:00,240 Park St, San Francisco,CA,94016 +204692,Apple Airpods Headphones,1,150.0,2019-05-26 22:16:00,811 Jefferson St, Dallas,TX,75001 +204693,iPhone,1,700.0,2019-05-11 12:47:00,474 13th St, Boston,MA,02215 +204694,AA Batteries (4-pack),2,3.84,2019-05-29 23:58:00,33 Jackson St, San Francisco,CA,94016 +204695,Google Phone,1,600.0,2019-05-19 14:08:00,106 Park St, Los Angeles,CA,90001 +204696,AAA Batteries (4-pack),2,2.99,2019-05-06 15:10:00,238 Lincoln St, San Francisco,CA,94016 +204697,Wired Headphones,1,11.99,2019-05-01 17:02:00,683 Willow St, San Francisco,CA,94016 +204698,Bose SoundSport Headphones,1,99.99,2019-05-03 23:21:00,349 Sunset St, Portland,OR,97035 +204699,Lightning Charging Cable,1,14.95,2019-05-29 08:25:00,213 Ridge St, New York City,NY,10001 +204700,AAA Batteries (4-pack),2,2.99,2019-05-14 22:41:00,553 River St, San Francisco,CA,94016 +204701,Apple Airpods Headphones,1,150.0,2019-05-28 12:41:00,723 Adams St, San Francisco,CA,94016 +204702,Google Phone,1,600.0,2019-05-11 11:18:00,567 10th St, Dallas,TX,75001 +204703,20in Monitor,1,109.99,2019-05-14 08:20:00,792 Forest St, Portland,OR,97035 +204704,Apple Airpods Headphones,1,150.0,2019-05-13 22:00:00,171 Lakeview St, Seattle,WA,98101 +204705,AAA Batteries (4-pack),2,2.99,2019-05-25 16:04:00,258 Madison St, Boston,MA,02215 +204706,AAA Batteries (4-pack),3,2.99,2019-05-01 10:07:00,873 Jackson St, San Francisco,CA,94016 +204707,Wired Headphones,1,11.99,2019-05-16 09:53:00,58 Willow St, Seattle,WA,98101 +204708,Macbook Pro Laptop,1,1700.0,2019-05-12 16:53:00,439 Cedar St, New York City,NY,10001 +204709,AA Batteries (4-pack),1,3.84,2019-05-06 10:21:00,917 Park St, Dallas,TX,75001 +204710,Wired Headphones,1,11.99,2019-05-30 12:48:00,512 14th St, Dallas,TX,75001 +204711,Flatscreen TV,1,300.0,2019-05-07 13:17:00,631 Park St, Dallas,TX,75001 +204712,AA Batteries (4-pack),1,3.84,2019-05-11 12:06:00,812 Ridge St, San Francisco,CA,94016 +204713,27in FHD Monitor,1,149.99,2019-05-11 23:01:00,524 4th St, Portland,OR,97035 +204714,Lightning Charging Cable,1,14.95,2019-05-10 11:16:00,896 Wilson St, Austin,TX,73301 +204715,Wired Headphones,1,11.99,2019-05-13 21:28:00,851 Chestnut St, Boston,MA,02215 +204716,AAA Batteries (4-pack),2,2.99,2019-05-05 18:11:00,496 Lincoln St, San Francisco,CA,94016 +204717,Lightning Charging Cable,1,14.95,2019-05-26 08:20:00,665 Washington St, Seattle,WA,98101 +204718,USB-C Charging Cable,1,11.95,2019-05-08 14:14:00,677 Dogwood St, Portland,OR,97035 +204719,USB-C Charging Cable,1,11.95,2019-05-12 13:28:00,550 Wilson St, Boston,MA,02215 +204720,Lightning Charging Cable,1,14.95,2019-05-20 20:01:00,491 Cedar St, San Francisco,CA,94016 +204721,Wired Headphones,1,11.99,2019-05-20 19:16:00,680 North St, New York City,NY,10001 +204722,ThinkPad Laptop,1,999.99,2019-05-08 19:32:00,594 South St, New York City,NY,10001 +204723,27in FHD Monitor,1,149.99,2019-05-19 16:57:00,938 Lincoln St, Boston,MA,02215 +204724,Lightning Charging Cable,1,14.95,2019-05-30 21:08:00,556 Wilson St, Atlanta,GA,30301 +204725,27in 4K Gaming Monitor,1,389.99,2019-05-19 20:17:00,416 Wilson St, Atlanta,GA,30301 +204726,Lightning Charging Cable,1,14.95,2019-05-07 12:36:00,207 Lincoln St, New York City,NY,10001 +204727,AAA Batteries (4-pack),5,2.99,2019-05-15 17:56:00,194 Willow St, Dallas,TX,75001 +204728,Google Phone,1,600.0,2019-05-10 10:16:00,671 Dogwood St, Atlanta,GA,30301 +204729,Bose SoundSport Headphones,1,99.99,2019-05-18 19:00:00,957 North St, Seattle,WA,98101 +204730,27in FHD Monitor,1,149.99,2019-05-05 14:46:00,69 Forest St, Atlanta,GA,30301 +204731,Lightning Charging Cable,1,14.95,2019-05-22 18:40:00,907 Park St, Boston,MA,02215 +204732,USB-C Charging Cable,1,11.95,2019-05-17 16:29:00,605 10th St, New York City,NY,10001 +204733,AAA Batteries (4-pack),2,2.99,2019-05-12 12:28:00,319 14th St, San Francisco,CA,94016 +204734,Flatscreen TV,1,300.0,2019-05-13 21:12:00,307 14th St, San Francisco,CA,94016 +204735,Vareebadd Phone,1,400.0,2019-05-26 08:59:00,402 4th St, New York City,NY,10001 +204736,34in Ultrawide Monitor,1,379.99,2019-05-15 15:58:00,34 Washington St, Portland,ME,04101 +204737,AA Batteries (4-pack),1,3.84,2019-05-20 13:26:00,510 Center St, Atlanta,GA,30301 +204738,Wired Headphones,1,11.99,2019-05-22 11:31:00,347 10th St, San Francisco,CA,94016 +204739,Lightning Charging Cable,1,14.95,2019-05-20 15:53:00,413 8th St, San Francisco,CA,94016 +204740,AAA Batteries (4-pack),1,2.99,2019-05-27 23:31:00,599 1st St, Seattle,WA,98101 +204741,Wired Headphones,1,11.99,2019-05-31 08:08:00,121 Walnut St, San Francisco,CA,94016 +204742,Google Phone,1,600.0,2019-05-01 19:47:00,603 Wilson St, San Francisco,CA,94016 +204742,USB-C Charging Cable,1,11.95,2019-05-01 19:47:00,603 Wilson St, San Francisco,CA,94016 +204743,AAA Batteries (4-pack),1,2.99,2019-05-22 18:07:00,631 10th St, Boston,MA,02215 +204744,27in FHD Monitor,1,149.99,2019-05-03 08:39:00,592 12th St, Los Angeles,CA,90001 +204745,iPhone,1,700.0,2019-05-27 18:31:00,204 Madison St, San Francisco,CA,94016 +204746,AAA Batteries (4-pack),1,2.99,2019-05-13 13:31:00,98 Forest St, New York City,NY,10001 +204747,Apple Airpods Headphones,1,150.0,2019-05-11 21:36:00,540 4th St, Seattle,WA,98101 +204748,Lightning Charging Cable,1,14.95,2019-05-27 17:35:00,209 Hickory St, Atlanta,GA,30301 +204749,Vareebadd Phone,1,400.0,2019-05-27 06:57:00,502 Church St, New York City,NY,10001 +204750,AA Batteries (4-pack),1,3.84,2019-05-11 07:34:00,282 Jefferson St, Boston,MA,02215 +204751,Macbook Pro Laptop,1,1700.0,2019-05-02 15:06:00,871 South St, New York City,NY,10001 +204752,Apple Airpods Headphones,1,150.0,2019-05-21 13:44:00,638 Lakeview St, San Francisco,CA,94016 +204753,AA Batteries (4-pack),1,3.84,2019-05-21 15:54:00,741 Adams St, Austin,TX,73301 +204754,LG Washing Machine,1,600.0,2019-05-12 11:04:00,313 Meadow St, San Francisco,CA,94016 +204755,USB-C Charging Cable,1,11.95,2019-05-30 07:46:00,514 Walnut St, Los Angeles,CA,90001 +204756,AAA Batteries (4-pack),1,2.99,2019-05-12 20:04:00,138 Elm St, San Francisco,CA,94016 +204757,Lightning Charging Cable,1,14.95,2019-05-08 21:58:00,675 Washington St, Boston,MA,02215 +204758,Wired Headphones,1,11.99,2019-05-15 17:33:00,303 West St, Atlanta,GA,30301 +204759,iPhone,1,700.0,2019-05-05 21:55:00,139 Jefferson St, Boston,MA,02215 +204760,AAA Batteries (4-pack),1,2.99,2019-05-27 21:01:00,376 2nd St, Dallas,TX,75001 +204761,Wired Headphones,1,11.99,2019-05-02 12:20:00,37 11th St, New York City,NY,10001 +204762,AA Batteries (4-pack),1,3.84,2019-05-12 22:27:00,892 North St, Dallas,TX,75001 +204763,iPhone,1,700.0,2019-05-02 20:07:00,544 Johnson St, San Francisco,CA,94016 +204764,Wired Headphones,1,11.99,2019-05-30 14:30:00,569 Chestnut St, Boston,MA,02215 +204765,Wired Headphones,1,11.99,2019-05-05 10:19:00,441 Church St, San Francisco,CA,94016 +204766,Bose SoundSport Headphones,1,99.99,2019-05-11 18:49:00,341 River St, New York City,NY,10001 +204767,Lightning Charging Cable,1,14.95,2019-05-10 23:26:00,22 10th St, Atlanta,GA,30301 +204768,ThinkPad Laptop,1,999.99,2019-05-05 17:09:00,901 North St, San Francisco,CA,94016 +204769,Lightning Charging Cable,1,14.95,2019-05-16 07:38:00,541 Walnut St, Boston,MA,02215 +204770,iPhone,1,700.0,2019-05-04 11:58:00,546 Hickory St, Boston,MA,02215 +204771,Google Phone,1,600.0,2019-05-09 13:10:00,938 Jefferson St, Boston,MA,02215 +204772,Bose SoundSport Headphones,1,99.99,2019-05-07 23:30:00,870 2nd St, San Francisco,CA,94016 +204773,USB-C Charging Cable,1,11.95,2019-05-15 22:12:00,437 8th St, Seattle,WA,98101 +204774,USB-C Charging Cable,1,11.95,2019-05-11 17:36:00,436 South St, Dallas,TX,75001 +204775,Wired Headphones,1,11.99,2019-05-05 07:58:00,649 Adams St, Los Angeles,CA,90001 +204776,Lightning Charging Cable,1,14.95,2019-05-20 19:39:00,331 Cedar St, Atlanta,GA,30301 +204777,Bose SoundSport Headphones,1,99.99,2019-05-05 16:03:00,182 Forest St, San Francisco,CA,94016 +204778,Google Phone,1,600.0,2019-05-23 11:51:00,455 Dogwood St, Boston,MA,02215 +204779,27in FHD Monitor,1,149.99,2019-05-19 13:01:00,397 Meadow St, San Francisco,CA,94016 +204780,Wired Headphones,1,11.99,2019-05-09 01:09:00,786 11th St, New York City,NY,10001 +204781,USB-C Charging Cable,1,11.95,2019-05-19 17:18:00,387 Jefferson St, Atlanta,GA,30301 +204782,iPhone,1,700.0,2019-05-31 13:42:00,618 Highland St, Los Angeles,CA,90001 +204783,Macbook Pro Laptop,1,1700.0,2019-05-08 07:45:00,324 2nd St, Seattle,WA,98101 +204784,34in Ultrawide Monitor,1,379.99,2019-05-19 16:26:00,287 South St, New York City,NY,10001 +204785,27in FHD Monitor,1,149.99,2019-05-25 10:50:00,516 Maple St, Dallas,TX,75001 +204786,AAA Batteries (4-pack),1,2.99,2019-05-16 12:04:00,523 River St, Atlanta,GA,30301 +204787,Apple Airpods Headphones,1,150.0,2019-05-20 20:45:00,598 Willow St, New York City,NY,10001 +204788,AA Batteries (4-pack),1,3.84,2019-05-21 10:15:00,492 Ridge St, Los Angeles,CA,90001 +204789,Lightning Charging Cable,1,14.95,2019-05-05 18:52:00,925 Main St, New York City,NY,10001 +204790,AA Batteries (4-pack),2,3.84,2019-05-16 20:35:00,450 Hill St, Los Angeles,CA,90001 +204791,AAA Batteries (4-pack),1,2.99,2019-05-07 09:31:00,361 Lakeview St, Portland,OR,97035 +204792,Wired Headphones,1,11.99,2019-05-09 16:37:00,190 Highland St, Los Angeles,CA,90001 +204793,Lightning Charging Cable,1,14.95,2019-05-07 21:32:00,932 1st St, Los Angeles,CA,90001 +204794,AAA Batteries (4-pack),1,2.99,2019-05-14 10:46:00,391 Johnson St, Los Angeles,CA,90001 +204795,AAA Batteries (4-pack),1,2.99,2019-05-24 10:39:00,936 6th St, San Francisco,CA,94016 +204796,AA Batteries (4-pack),1,3.84,2019-05-28 22:07:00,573 Ridge St, New York City,NY,10001 +204797,Macbook Pro Laptop,1,1700.0,2019-05-31 07:55:00,398 Pine St, Boston,MA,02215 +204798,AAA Batteries (4-pack),1,2.99,2019-05-10 01:51:00,566 South St, Boston,MA,02215 +204799,AA Batteries (4-pack),1,3.84,2019-05-21 20:28:00,380 River St, Seattle,WA,98101 +204800,AA Batteries (4-pack),1,3.84,2019-05-03 21:43:00,402 Walnut St, Los Angeles,CA,90001 +204801,ThinkPad Laptop,1,999.99,2019-05-28 19:45:00,356 Meadow St, San Francisco,CA,94016 +204802,AAA Batteries (4-pack),4,2.99,2019-05-30 09:10:00,496 South St, Dallas,TX,75001 +204803,USB-C Charging Cable,1,11.95,2019-05-16 18:57:00,207 Center St, New York City,NY,10001 +204804,ThinkPad Laptop,1,999.99,2019-05-15 09:14:00,102 Jefferson St, San Francisco,CA,94016 +204805,USB-C Charging Cable,1,11.95,2019-05-16 13:20:00,765 Lincoln St, New York City,NY,10001 +204806,Lightning Charging Cable,1,14.95,2019-05-09 13:30:00,435 Park St, New York City,NY,10001 +204807,Wired Headphones,1,11.99,2019-05-17 14:57:00,885 Cedar St, New York City,NY,10001 +204808,Apple Airpods Headphones,1,150.0,2019-05-18 21:00:00,666 Main St, San Francisco,CA,94016 +204809,Flatscreen TV,1,300.0,2019-05-24 16:39:00,750 6th St, Dallas,TX,75001 +204810,AAA Batteries (4-pack),1,2.99,2019-05-22 18:01:00,317 Meadow St, Portland,OR,97035 +204811,Macbook Pro Laptop,1,1700.0,2019-05-27 12:41:00,113 Ridge St, Los Angeles,CA,90001 +204812,Bose SoundSport Headphones,1,99.99,2019-05-14 16:54:00,293 Sunset St, Boston,MA,02215 +204813,USB-C Charging Cable,1,11.95,2019-05-29 16:37:00,720 Dogwood St, New York City,NY,10001 +204814,iPhone,1,700.0,2019-05-30 20:49:00,570 2nd St, Los Angeles,CA,90001 +204815,AA Batteries (4-pack),2,3.84,2019-05-14 17:23:00,210 Forest St, Los Angeles,CA,90001 +204816,Flatscreen TV,1,300.0,2019-05-09 19:46:00,16 Lake St, Los Angeles,CA,90001 +204817,AAA Batteries (4-pack),2,2.99,2019-05-13 14:55:00,951 North St, Atlanta,GA,30301 +204818,iPhone,1,700.0,2019-05-01 19:09:00,211 14th St, Portland,ME,04101 +204818,Wired Headphones,1,11.99,2019-05-01 19:09:00,211 14th St, Portland,ME,04101 +204819,Lightning Charging Cable,1,14.95,2019-05-21 11:01:00,28 West St, San Francisco,CA,94016 +204820,AA Batteries (4-pack),1,3.84,2019-05-28 23:52:00,82 2nd St, Dallas,TX,75001 +204821,Vareebadd Phone,1,400.0,2019-05-14 23:33:00,385 Sunset St, San Francisco,CA,94016 +204822,Wired Headphones,1,11.99,2019-05-04 17:24:00,955 Hill St, San Francisco,CA,94016 +204823,USB-C Charging Cable,1,11.95,2019-05-29 14:53:00,984 4th St, San Francisco,CA,94016 +204824,AA Batteries (4-pack),1,3.84,2019-05-02 19:36:00,297 Spruce St, Atlanta,GA,30301 +204825,34in Ultrawide Monitor,1,379.99,2019-05-25 20:48:00,386 Meadow St, Boston,MA,02215 +204826,Bose SoundSport Headphones,1,99.99,2019-05-31 21:18:00,692 7th St, New York City,NY,10001 +204826,Wired Headphones,1,11.99,2019-05-31 21:18:00,692 7th St, New York City,NY,10001 +204827,Bose SoundSport Headphones,1,99.99,2019-05-17 23:22:00,598 Jefferson St, San Francisco,CA,94016 +204828,USB-C Charging Cable,1,11.95,2019-05-17 19:35:00,842 Park St, Dallas,TX,75001 +204829,ThinkPad Laptop,1,999.99,2019-05-11 13:40:00,794 Willow St, Los Angeles,CA,90001 +204830,Wired Headphones,1,11.99,2019-05-30 17:04:00,682 Dogwood St, New York City,NY,10001 +204831,27in FHD Monitor,1,149.99,2019-05-31 19:43:00,534 Wilson St, New York City,NY,10001 +204832,AAA Batteries (4-pack),1,2.99,2019-05-02 07:45:00,122 Lakeview St, New York City,NY,10001 +204833,Wired Headphones,1,11.99,2019-05-12 15:15:00,474 Dogwood St, San Francisco,CA,94016 +204834,Bose SoundSport Headphones,1,99.99,2019-05-17 01:43:00,411 Washington St, Boston,MA,02215 +204835,USB-C Charging Cable,1,11.95,2019-05-07 10:26:00,284 Chestnut St, San Francisco,CA,94016 +204836,AAA Batteries (4-pack),1,2.99,2019-05-31 12:57:00,625 13th St, New York City,NY,10001 +204837,AA Batteries (4-pack),3,3.84,2019-05-04 19:31:00,41 Chestnut St, Portland,OR,97035 +204838,AA Batteries (4-pack),1,3.84,2019-05-06 12:35:00,478 Willow St, Atlanta,GA,30301 +204839,Google Phone,1,600.0,2019-05-14 16:56:00,34 Madison St, Seattle,WA,98101 +204840,AAA Batteries (4-pack),1,2.99,2019-05-27 23:11:00,84 West St, Los Angeles,CA,90001 +204841,Flatscreen TV,1,300.0,2019-05-11 13:23:00,434 Center St, San Francisco,CA,94016 +204842,AA Batteries (4-pack),1,3.84,2019-05-24 11:59:00,361 Cherry St, Los Angeles,CA,90001 +204843,USB-C Charging Cable,1,11.95,2019-05-11 08:36:00,920 Highland St, Dallas,TX,75001 +204844,AA Batteries (4-pack),2,3.84,2019-05-17 17:23:00,235 Church St, Los Angeles,CA,90001 +204845,Wired Headphones,1,11.99,2019-05-21 09:18:00,128 8th St, San Francisco,CA,94016 +204846,Apple Airpods Headphones,1,150.0,2019-05-28 16:56:00,616 Wilson St, New York City,NY,10001 +204847,Wired Headphones,1,11.99,2019-05-05 17:10:00,808 Lakeview St, San Francisco,CA,94016 +204848,AAA Batteries (4-pack),2,2.99,2019-05-30 20:20:00,378 Hill St, San Francisco,CA,94016 +204849,Apple Airpods Headphones,1,150.0,2019-05-26 14:58:00,381 Dogwood St, San Francisco,CA,94016 +204850,Wired Headphones,1,11.99,2019-05-06 11:43:00,652 Adams St, New York City,NY,10001 +204851,AAA Batteries (4-pack),1,2.99,2019-05-01 16:03:00,104 Lake St, Seattle,WA,98101 +204852,Wired Headphones,1,11.99,2019-05-26 00:22:00,732 2nd St, Atlanta,GA,30301 +204853,USB-C Charging Cable,1,11.95,2019-05-14 15:12:00,652 Church St, Boston,MA,02215 +204854,27in FHD Monitor,1,149.99,2019-05-08 22:03:00,712 7th St, Los Angeles,CA,90001 +204855,USB-C Charging Cable,1,11.95,2019-05-31 14:10:00,361 Walnut St, Seattle,WA,98101 +204856,Wired Headphones,1,11.99,2019-05-02 23:57:00,297 14th St, Portland,OR,97035 +204857,ThinkPad Laptop,1,999.99,2019-05-27 22:27:00,289 12th St, Atlanta,GA,30301 +204858,AAA Batteries (4-pack),1,2.99,2019-05-12 20:12:00,729 South St, Los Angeles,CA,90001 +204859,AA Batteries (4-pack),1,3.84,2019-05-20 22:27:00,916 4th St, New York City,NY,10001 +204860,Lightning Charging Cable,1,14.95,2019-05-05 17:32:00,744 Jackson St, Portland,OR,97035 +204861,Apple Airpods Headphones,1,150.0,2019-05-30 13:05:00,994 Sunset St, San Francisco,CA,94016 +204862,27in FHD Monitor,1,149.99,2019-05-14 09:31:00,108 Jackson St, San Francisco,CA,94016 +204863,Apple Airpods Headphones,1,150.0,2019-05-29 23:13:00,897 Willow St, Boston,MA,02215 +204864,AAA Batteries (4-pack),5,2.99,2019-05-20 12:07:00,648 Pine St, San Francisco,CA,94016 +204865,USB-C Charging Cable,1,11.95,2019-05-04 18:43:00,388 Sunset St, San Francisco,CA,94016 +204866,Apple Airpods Headphones,1,150.0,2019-05-25 13:08:00,515 Cherry St, San Francisco,CA,94016 +204867,AA Batteries (4-pack),1,3.84,2019-05-20 10:52:00,880 Elm St, Los Angeles,CA,90001 +204868,Google Phone,1,600.0,2019-05-17 09:13:00,340 Ridge St, New York City,NY,10001 +204868,USB-C Charging Cable,1,11.95,2019-05-17 09:13:00,340 Ridge St, New York City,NY,10001 +204868,Wired Headphones,1,11.99,2019-05-17 09:13:00,340 Ridge St, New York City,NY,10001 +204869,Wired Headphones,1,11.99,2019-05-04 10:46:00,27 West St, Dallas,TX,75001 +204870,AAA Batteries (4-pack),3,2.99,2019-05-14 18:07:00,897 12th St, Los Angeles,CA,90001 +204871,Vareebadd Phone,1,400.0,2019-05-19 18:56:00,283 Jefferson St, San Francisco,CA,94016 +204872,USB-C Charging Cable,1,11.95,2019-05-05 11:20:00,966 Park St, New York City,NY,10001 +204873,Apple Airpods Headphones,1,150.0,2019-05-01 13:16:00,887 Church St, Portland,OR,97035 +204874,Lightning Charging Cable,1,14.95,2019-05-07 20:16:00,248 River St, San Francisco,CA,94016 +204875,Wired Headphones,1,11.99,2019-05-23 18:54:00,594 Cedar St, Seattle,WA,98101 +204876,Lightning Charging Cable,1,14.95,2019-05-09 10:43:00,956 Johnson St, Boston,MA,02215 +204877,27in 4K Gaming Monitor,1,389.99,2019-05-08 18:20:00,48 Cedar St, Boston,MA,02215 +204878,AAA Batteries (4-pack),1,2.99,2019-05-22 21:25:00,590 2nd St, San Francisco,CA,94016 +204879,34in Ultrawide Monitor,1,379.99,2019-05-26 22:16:00,836 Church St, Los Angeles,CA,90001 +204880,Apple Airpods Headphones,1,150.0,2019-05-25 20:47:00,270 Adams St, San Francisco,CA,94016 +204881,Vareebadd Phone,1,400.0,2019-05-26 16:09:00,631 Church St, San Francisco,CA,94016 +204882,Lightning Charging Cable,1,14.95,2019-05-05 14:57:00,723 Forest St, Boston,MA,02215 +204883,USB-C Charging Cable,1,11.95,2019-05-01 19:20:00,747 Spruce St, Seattle,WA,98101 +204884,Apple Airpods Headphones,1,150.0,2019-05-03 14:18:00,913 Adams St, San Francisco,CA,94016 +204885,27in 4K Gaming Monitor,1,389.99,2019-05-21 18:14:00,364 8th St, San Francisco,CA,94016 +204886,Lightning Charging Cable,1,14.95,2019-05-02 19:42:00,45 6th St, New York City,NY,10001 +204887,20in Monitor,1,109.99,2019-05-02 07:21:00,715 Park St, Boston,MA,02215 +204888,USB-C Charging Cable,1,11.95,2019-05-18 14:47:00,83 5th St, Seattle,WA,98101 +204889,27in 4K Gaming Monitor,1,389.99,2019-05-14 19:26:00,117 Church St, New York City,NY,10001 +204890,Bose SoundSport Headphones,1,99.99,2019-05-19 11:30:00,319 Church St, Atlanta,GA,30301 +204891,Apple Airpods Headphones,1,150.0,2019-05-14 17:12:00,407 Jackson St, New York City,NY,10001 +204892,Wired Headphones,1,11.99,2019-05-10 20:38:00,669 Cherry St, Boston,MA,02215 +204893,Apple Airpods Headphones,1,150.0,2019-05-02 08:51:00,594 Park St, Dallas,TX,75001 +204894,Wired Headphones,2,11.99,2019-05-20 17:09:00,366 13th St, San Francisco,CA,94016 +204895,AA Batteries (4-pack),2,3.84,2019-05-12 13:10:00,47 6th St, Boston,MA,02215 +204896,Lightning Charging Cable,1,14.95,2019-05-16 14:46:00,504 Forest St, Los Angeles,CA,90001 +204897,Wired Headphones,1,11.99,2019-05-30 19:13:00,692 Willow St, Portland,OR,97035 +204898,USB-C Charging Cable,2,11.95,2019-05-19 12:42:00,244 9th St, New York City,NY,10001 +204899,USB-C Charging Cable,2,11.95,2019-05-26 10:59:00,800 13th St, San Francisco,CA,94016 +204899,AAA Batteries (4-pack),1,2.99,2019-05-26 10:59:00,800 13th St, San Francisco,CA,94016 +204900,AA Batteries (4-pack),1,3.84,2019-05-26 17:51:00,968 Main St, San Francisco,CA,94016 +204901,Macbook Pro Laptop,1,1700.0,2019-05-12 17:07:00,52 11th St, Los Angeles,CA,90001 +204902,Wired Headphones,1,11.99,2019-05-04 16:08:00,774 Park St, Boston,MA,02215 +204903,Lightning Charging Cable,1,14.95,2019-05-22 19:16:00,58 Lake St, Los Angeles,CA,90001 +204904,Apple Airpods Headphones,1,150.0,2019-05-18 20:54:00,244 Cherry St, Los Angeles,CA,90001 +204905,AAA Batteries (4-pack),1,2.99,2019-05-26 18:47:00,557 Walnut St, Seattle,WA,98101 +204906,USB-C Charging Cable,1,11.95,2019-05-09 13:49:00,908 Jackson St, Los Angeles,CA,90001 +204907,AAA Batteries (4-pack),1,2.99,2019-05-05 11:38:00,123 Walnut St, Los Angeles,CA,90001 +204908,27in FHD Monitor,1,149.99,2019-05-07 21:29:00,13 12th St, Los Angeles,CA,90001 +204909,Bose SoundSport Headphones,1,99.99,2019-05-24 22:15:00,55 Lakeview St, New York City,NY,10001 +204910,Macbook Pro Laptop,1,1700.0,2019-05-28 00:20:00,979 Chestnut St, San Francisco,CA,94016 +204911,34in Ultrawide Monitor,1,379.99,2019-05-18 11:59:00,844 Pine St, Boston,MA,02215 +204912,Flatscreen TV,1,300.0,2019-05-08 19:37:00,285 Chestnut St, Boston,MA,02215 +204913,Lightning Charging Cable,1,14.95,2019-05-20 15:59:00,137 14th St, Austin,TX,73301 +204914,LG Washing Machine,1,600.0,2019-05-25 20:49:00,649 Lakeview St, Dallas,TX,75001 +204914,20in Monitor,1,109.99,2019-05-25 20:49:00,649 Lakeview St, Dallas,TX,75001 +204915,AA Batteries (4-pack),1,3.84,2019-05-23 12:14:00,178 Dogwood St, Atlanta,GA,30301 +204916,ThinkPad Laptop,1,999.99,2019-05-26 12:44:00,419 Cedar St, Boston,MA,02215 +204917,AA Batteries (4-pack),3,3.84,2019-05-30 22:45:00,65 Wilson St, Portland,OR,97035 +204918,Lightning Charging Cable,1,14.95,2019-05-01 08:21:00,408 12th St, Seattle,WA,98101 +204919,AAA Batteries (4-pack),2,2.99,2019-05-24 20:47:00,497 Walnut St, Los Angeles,CA,90001 +204920,USB-C Charging Cable,1,11.95,2019-05-27 12:55:00,613 14th St, San Francisco,CA,94016 +204921,Wired Headphones,1,11.99,2019-05-28 09:08:00,156 West St, Austin,TX,73301 +204922,Bose SoundSport Headphones,1,99.99,2019-05-31 10:51:00,274 Elm St, New York City,NY,10001 +204923,Lightning Charging Cable,1,14.95,2019-05-04 11:59:00,512 5th St, San Francisco,CA,94016 +204924,AA Batteries (4-pack),1,3.84,2019-05-12 14:00:00,405 Pine St, Los Angeles,CA,90001 +204925,27in 4K Gaming Monitor,1,389.99,2019-05-17 11:15:00,119 Highland St, Los Angeles,CA,90001 +204926,AAA Batteries (4-pack),1,2.99,2019-05-26 10:59:00,546 West St, Los Angeles,CA,90001 +204927,Apple Airpods Headphones,1,150.0,2019-05-04 11:59:00,102 11th St, Austin,TX,73301 +204928,34in Ultrawide Monitor,1,379.99,2019-05-19 18:16:00,679 Wilson St, Austin,TX,73301 +204929,Google Phone,1,600.0,2019-05-28 22:40:00,301 Highland St, Portland,OR,97035 +204930,AAA Batteries (4-pack),1,2.99,2019-05-30 21:35:00,164 12th St, Seattle,WA,98101 +204931,USB-C Charging Cable,1,11.95,2019-05-11 17:44:00,345 12th St, Los Angeles,CA,90001 +204932,AA Batteries (4-pack),1,3.84,2019-05-16 22:25:00,943 Dogwood St, Boston,MA,02215 +204933,iPhone,1,700.0,2019-05-10 13:43:00,82 4th St, Los Angeles,CA,90001 +204934,USB-C Charging Cable,1,11.95,2019-05-22 17:55:00,361 Hickory St, Dallas,TX,75001 +204935,Wired Headphones,1,11.99,2019-05-04 22:36:00,570 11th St, Boston,MA,02215 +204936,27in 4K Gaming Monitor,1,389.99,2019-05-08 09:05:00,935 Center St, San Francisco,CA,94016 +204937,AAA Batteries (4-pack),1,2.99,2019-05-29 13:14:00,286 Sunset St, Boston,MA,02215 +204938,Flatscreen TV,1,300.0,2019-05-08 13:11:00,739 Madison St, Los Angeles,CA,90001 +204938,20in Monitor,1,109.99,2019-05-08 13:11:00,739 Madison St, Los Angeles,CA,90001 +204939,AAA Batteries (4-pack),1,2.99,2019-05-31 10:02:00,657 Cherry St, San Francisco,CA,94016 +204940,Apple Airpods Headphones,1,150.0,2019-05-20 16:30:00,370 Park St, Los Angeles,CA,90001 +204941,Flatscreen TV,1,300.0,2019-05-18 09:45:00,745 Ridge St, Seattle,WA,98101 +204942,Wired Headphones,1,11.99,2019-05-30 17:42:00,763 13th St, Seattle,WA,98101 +204943,Wired Headphones,1,11.99,2019-05-18 11:55:00,57 Chestnut St, Los Angeles,CA,90001 +204944,Wired Headphones,1,11.99,2019-05-26 15:07:00,347 Meadow St, San Francisco,CA,94016 +204945,Google Phone,1,600.0,2019-05-06 12:17:00,990 10th St, Los Angeles,CA,90001 +204946,AAA Batteries (4-pack),3,2.99,2019-05-20 14:34:00,77 14th St, Los Angeles,CA,90001 +204947,USB-C Charging Cable,1,11.95,2019-05-30 19:57:00,432 Willow St, Boston,MA,02215 +204948,Wired Headphones,1,11.99,2019-05-19 14:35:00,596 Chestnut St, San Francisco,CA,94016 +204949,27in FHD Monitor,1,149.99,2019-05-31 10:26:00,203 Lincoln St, New York City,NY,10001 +204950,AAA Batteries (4-pack),2,2.99,2019-05-26 17:22:00,556 North St, New York City,NY,10001 +204951,Lightning Charging Cable,1,14.95,2019-05-13 11:03:00,100 West St, Los Angeles,CA,90001 +204952,34in Ultrawide Monitor,1,379.99,2019-05-22 17:22:00,305 7th St, San Francisco,CA,94016 +204953,Apple Airpods Headphones,1,150.0,2019-05-22 17:57:00,607 2nd St, San Francisco,CA,94016 +204954,Lightning Charging Cable,1,14.95,2019-05-04 09:46:00,653 Lake St, Austin,TX,73301 +204955,Apple Airpods Headphones,1,150.0,2019-05-27 18:01:00,17 West St, Dallas,TX,75001 +204956,AAA Batteries (4-pack),2,2.99,2019-05-12 09:09:00,822 Hickory St, Atlanta,GA,30301 +204957,AAA Batteries (4-pack),5,2.99,2019-05-29 21:09:00,86 8th St, Seattle,WA,98101 +204958,Apple Airpods Headphones,1,150.0,2019-05-19 02:37:00,40 Lincoln St, New York City,NY,10001 +204959,Wired Headphones,1,11.99,2019-05-19 10:05:00,435 12th St, Boston,MA,02215 +204960,Apple Airpods Headphones,1,150.0,2019-05-15 12:05:00,737 10th St, Portland,OR,97035 +204961,AA Batteries (4-pack),1,3.84,2019-05-06 08:59:00,762 Jefferson St, Portland,ME,04101 +204962,AA Batteries (4-pack),1,3.84,2019-05-26 14:54:00,145 West St, New York City,NY,10001 +204963,27in 4K Gaming Monitor,1,389.99,2019-05-02 12:50:00,89 4th St, Boston,MA,02215 +204964,34in Ultrawide Monitor,1,379.99,2019-05-08 19:06:00,160 Cedar St, Boston,MA,02215 +204965,Macbook Pro Laptop,1,1700.0,2019-05-16 18:18:00,48 South St, San Francisco,CA,94016 +204966,AA Batteries (4-pack),1,3.84,2019-05-18 20:08:00,378 North St, San Francisco,CA,94016 +204967,iPhone,1,700.0,2019-05-27 10:45:00,587 Cherry St, Los Angeles,CA,90001 +204967,Wired Headphones,3,11.99,2019-05-27 10:45:00,587 Cherry St, Los Angeles,CA,90001 +204968,AA Batteries (4-pack),1,3.84,2019-05-14 09:59:00,853 Adams St, Portland,OR,97035 +204969,Vareebadd Phone,1,400.0,2019-05-01 23:54:00,662 Pine St, Atlanta,GA,30301 +204970,AAA Batteries (4-pack),1,2.99,2019-05-28 17:33:00,323 11th St, San Francisco,CA,94016 +204971,ThinkPad Laptop,1,999.99,2019-05-21 16:18:00,358 Adams St, Seattle,WA,98101 +204972,27in FHD Monitor,1,149.99,2019-05-25 16:26:00,228 Sunset St, New York City,NY,10001 +204973,Lightning Charging Cable,1,14.95,2019-05-10 13:11:00,297 8th St, Los Angeles,CA,90001 +204974,27in 4K Gaming Monitor,1,389.99,2019-05-24 11:24:00,436 River St, Portland,OR,97035 +204975,27in 4K Gaming Monitor,1,389.99,2019-05-24 17:37:00,921 Sunset St, New York City,NY,10001 +204976,USB-C Charging Cable,1,11.95,2019-05-24 16:39:00,142 Johnson St, Los Angeles,CA,90001 +204977,Vareebadd Phone,1,400.0,2019-05-10 09:35:00,821 Hill St, Los Angeles,CA,90001 +204978,27in FHD Monitor,1,149.99,2019-05-25 09:56:00,861 11th St, San Francisco,CA,94016 +204979,AA Batteries (4-pack),2,3.84,2019-05-17 14:24:00,811 14th St, San Francisco,CA,94016 +204980,27in 4K Gaming Monitor,1,389.99,2019-05-21 16:03:00,264 9th St, Boston,MA,02215 +204981,ThinkPad Laptop,1,999.99,2019-05-26 17:24:00,232 Walnut St, Boston,MA,02215 +204982,Macbook Pro Laptop,1,1700.0,2019-05-30 03:44:00,930 Wilson St, San Francisco,CA,94016 +204983,Wired Headphones,1,11.99,2019-05-22 21:48:00,193 Forest St, San Francisco,CA,94016 +204984,Google Phone,1,600.0,2019-05-01 14:42:00,1 Willow St, New York City,NY,10001 +204984,Wired Headphones,1,11.99,2019-05-01 14:42:00,1 Willow St, New York City,NY,10001 +204985,USB-C Charging Cable,1,11.95,2019-05-26 20:26:00,326 Spruce St, San Francisco,CA,94016 +204986,LG Washing Machine,1,600.0,2019-05-17 12:25:00,82 Highland St, Portland,OR,97035 +204987,ThinkPad Laptop,1,999.99,2019-05-29 20:45:00,453 Meadow St, San Francisco,CA,94016 +204988,Bose SoundSport Headphones,1,99.99,2019-05-21 18:17:00,743 Cherry St, Dallas,TX,75001 +204989,USB-C Charging Cable,1,11.95,2019-05-25 15:23:00,530 10th St, Los Angeles,CA,90001 +204990,Wired Headphones,1,11.99,2019-05-27 14:07:00,917 8th St, Austin,TX,73301 +204991,Bose SoundSport Headphones,1,99.99,2019-05-21 20:38:00,850 Jackson St, San Francisco,CA,94016 +204992,Wired Headphones,1,11.99,2019-05-01 22:24:00,602 9th St, Los Angeles,CA,90001 +204993,Macbook Pro Laptop,1,1700.0,2019-05-14 14:51:00,52 Washington St, Portland,OR,97035 +204994,Lightning Charging Cable,1,14.95,2019-05-15 00:36:00,107 Walnut St, Portland,OR,97035 +204995,Wired Headphones,1,11.99,2019-05-10 22:34:00,844 Dogwood St, San Francisco,CA,94016 +204996,AA Batteries (4-pack),1,3.84,2019-05-07 23:57:00,826 Spruce St, Portland,OR,97035 +204997,Bose SoundSport Headphones,2,99.99,2019-05-29 11:09:00,3 Cherry St, Austin,TX,73301 +204998,20in Monitor,1,109.99,2019-05-08 21:50:00,887 Lake St, Los Angeles,CA,90001 +204999,USB-C Charging Cable,1,11.95,2019-05-15 19:48:00,312 12th St, Seattle,WA,98101 +205000,Lightning Charging Cable,1,14.95,2019-05-09 02:04:00,771 Church St, Los Angeles,CA,90001 +205001,Wired Headphones,1,11.99,2019-05-30 12:58:00,684 Washington St, San Francisco,CA,94016 +205002,AA Batteries (4-pack),1,3.84,2019-05-21 16:22:00,636 1st St, Los Angeles,CA,90001 +205003,27in 4K Gaming Monitor,1,389.99,2019-05-30 19:23:00,964 10th St, Boston,MA,02215 +205004,ThinkPad Laptop,1,999.99,2019-05-03 20:06:00,836 Adams St, Dallas,TX,75001 +205005,Apple Airpods Headphones,1,150.0,2019-05-02 12:24:00,864 Sunset St, New York City,NY,10001 +205006,Vareebadd Phone,1,400.0,2019-05-10 08:50:00,678 Maple St, New York City,NY,10001 +205007,USB-C Charging Cable,1,11.95,2019-05-09 18:58:00,407 Spruce St, Los Angeles,CA,90001 +205008,Wired Headphones,1,11.99,2019-05-15 12:35:00,410 Johnson St, Dallas,TX,75001 +205009,Bose SoundSport Headphones,1,99.99,2019-05-28 23:46:00,596 Ridge St, San Francisco,CA,94016 +205010,Wired Headphones,1,11.99,2019-05-21 19:41:00,745 Adams St, San Francisco,CA,94016 +205011,AAA Batteries (4-pack),1,2.99,2019-05-10 13:24:00,119 Center St, Portland,ME,04101 +205012,iPhone,1,700.0,2019-05-29 09:34:00,959 14th St, Los Angeles,CA,90001 +205012,Lightning Charging Cable,1,14.95,2019-05-29 09:34:00,959 14th St, Los Angeles,CA,90001 +205013,27in 4K Gaming Monitor,1,389.99,2019-05-16 20:29:00,124 River St, Boston,MA,02215 +205014,AA Batteries (4-pack),4,3.84,2019-05-07 22:08:00,227 6th St, Dallas,TX,75001 +205015,USB-C Charging Cable,1,11.95,2019-05-09 13:21:00,516 Johnson St, New York City,NY,10001 +205016,iPhone,1,700.0,2019-05-17 00:16:00,482 Forest St, Atlanta,GA,30301 +205016,Lightning Charging Cable,1,14.95,2019-05-17 00:16:00,482 Forest St, Atlanta,GA,30301 +205017,ThinkPad Laptop,1,999.99,2019-05-19 14:57:00,200 South St, Los Angeles,CA,90001 +205018,USB-C Charging Cable,1,11.95,2019-05-16 22:32:00,859 Lincoln St, Boston,MA,02215 +205019,34in Ultrawide Monitor,1,379.99,2019-05-26 21:07:00,909 4th St, Boston,MA,02215 +205020,AAA Batteries (4-pack),1,2.99,2019-05-05 09:47:00,162 4th St, Los Angeles,CA,90001 +205021,34in Ultrawide Monitor,1,379.99,2019-05-07 17:22:00,486 4th St, San Francisco,CA,94016 +205022,Lightning Charging Cable,1,14.95,2019-05-21 14:54:00,427 13th St, San Francisco,CA,94016 +205023,20in Monitor,1,109.99,2019-05-03 23:27:00,180 Washington St, Dallas,TX,75001 +205024,Wired Headphones,1,11.99,2019-05-17 01:45:00,866 Park St, Seattle,WA,98101 +205025,AAA Batteries (4-pack),1,2.99,2019-05-09 20:18:00,739 1st St, Boston,MA,02215 +205026,AAA Batteries (4-pack),1,2.99,2019-05-07 15:53:00,301 Lincoln St, Seattle,WA,98101 +205027,Apple Airpods Headphones,1,150.0,2019-05-20 12:06:00,858 Meadow St, Los Angeles,CA,90001 +205028,Macbook Pro Laptop,1,1700.0,2019-05-03 05:34:00,231 Center St, New York City,NY,10001 +205029,Wired Headphones,1,11.99,2019-05-28 08:10:00,842 North St, Seattle,WA,98101 +205030,USB-C Charging Cable,1,11.95,2019-05-16 21:31:00,883 Pine St, Atlanta,GA,30301 +205031,Wired Headphones,1,11.99,2019-05-29 20:56:00,188 Chestnut St, Los Angeles,CA,90001 +205032,Lightning Charging Cable,1,14.95,2019-05-18 14:29:00,233 Church St, Atlanta,GA,30301 +205033,Apple Airpods Headphones,1,150.0,2019-05-09 11:10:00,661 Pine St, New York City,NY,10001 +205034,Wired Headphones,1,11.99,2019-05-17 15:41:00,261 Johnson St, Los Angeles,CA,90001 +205035,AAA Batteries (4-pack),2,2.99,2019-05-25 19:49:00,409 14th St, Los Angeles,CA,90001 +205036,Wired Headphones,2,11.99,2019-05-17 14:32:00,715 Lake St, San Francisco,CA,94016 +205037,AA Batteries (4-pack),1,3.84,2019-05-17 23:22:00,924 Church St, Atlanta,GA,30301 +205038,USB-C Charging Cable,3,11.95,2019-05-28 20:18:00,275 4th St, Los Angeles,CA,90001 +205039,USB-C Charging Cable,1,11.95,2019-05-15 20:38:00,801 2nd St, Austin,TX,73301 +205040,AAA Batteries (4-pack),1,2.99,2019-05-12 12:19:00,300 Jackson St, San Francisco,CA,94016 +205041,AAA Batteries (4-pack),2,2.99,2019-05-30 11:44:00,685 Chestnut St, Portland,OR,97035 +205042,Macbook Pro Laptop,1,1700.0,2019-05-30 19:51:00,938 Lake St, Austin,TX,73301 +205043,Wired Headphones,1,11.99,2019-05-04 11:22:00,390 6th St, Austin,TX,73301 +205044,iPhone,1,700.0,2019-05-30 12:32:00,752 Spruce St, San Francisco,CA,94016 +205044,Lightning Charging Cable,1,14.95,2019-05-30 12:32:00,752 Spruce St, San Francisco,CA,94016 +205045,Apple Airpods Headphones,1,150.0,2019-05-27 10:00:00,814 West St, Boston,MA,02215 +205046,USB-C Charging Cable,1,11.95,2019-05-23 11:48:00,760 14th St, New York City,NY,10001 +205047,27in FHD Monitor,1,149.99,2019-05-29 13:48:00,543 Church St, Los Angeles,CA,90001 +205048,Macbook Pro Laptop,1,1700.0,2019-05-15 22:16:00,234 1st St, San Francisco,CA,94016 +205049,Flatscreen TV,1,300.0,2019-05-09 12:02:00,792 7th St, Boston,MA,02215 +205050,AAA Batteries (4-pack),1,2.99,2019-05-04 00:02:00,225 13th St, Los Angeles,CA,90001 +205051,AA Batteries (4-pack),1,3.84,2019-05-19 17:32:00,420 Elm St, Los Angeles,CA,90001 +205052,USB-C Charging Cable,1,11.95,2019-05-16 14:18:00,636 Willow St, Dallas,TX,75001 +205053,Apple Airpods Headphones,1,150.0,2019-05-20 08:27:00,264 Church St, Los Angeles,CA,90001 +205054,Wired Headphones,1,11.99,2019-05-02 12:28:00,435 Lake St, Atlanta,GA,30301 +205055,Bose SoundSport Headphones,1,99.99,2019-05-04 15:04:00,662 Johnson St, Dallas,TX,75001 +205056,USB-C Charging Cable,1,11.95,2019-05-03 22:38:00,430 6th St, Los Angeles,CA,90001 +205057,Bose SoundSport Headphones,1,99.99,2019-05-20 16:12:00,548 8th St, Portland,ME,04101 +205058,34in Ultrawide Monitor,1,379.99,2019-05-11 10:07:00,332 Cedar St, San Francisco,CA,94016 +205059,Lightning Charging Cable,2,14.95,2019-05-20 17:39:00,973 Madison St, Austin,TX,73301 +205060,27in 4K Gaming Monitor,1,389.99,2019-05-21 09:14:00,341 9th St, San Francisco,CA,94016 +205061,Apple Airpods Headphones,1,150.0,2019-05-30 22:26:00,919 6th St, San Francisco,CA,94016 +205062,27in FHD Monitor,1,149.99,2019-05-28 09:27:00,172 Forest St, San Francisco,CA,94016 +205063,Apple Airpods Headphones,1,150.0,2019-05-25 16:50:00,570 Hickory St, Boston,MA,02215 +205064,AA Batteries (4-pack),1,3.84,2019-05-29 19:59:00,713 Forest St, Dallas,TX,75001 +205065,USB-C Charging Cable,1,11.95,2019-05-18 17:54:00,418 13th St, San Francisco,CA,94016 +205066,Wired Headphones,2,11.99,2019-05-17 22:47:00,605 Park St, New York City,NY,10001 +205067,USB-C Charging Cable,1,11.95,2019-05-30 19:48:00,770 Pine St, Boston,MA,02215 +205067,AA Batteries (4-pack),1,3.84,2019-05-30 19:48:00,770 Pine St, Boston,MA,02215 +205068,27in 4K Gaming Monitor,1,389.99,2019-05-14 11:25:00,425 Forest St, Los Angeles,CA,90001 +205069,AA Batteries (4-pack),1,3.84,2019-05-31 21:59:00,582 Sunset St, Dallas,TX,75001 +205070,AAA Batteries (4-pack),1,2.99,2019-05-12 18:05:00,67 West St, Atlanta,GA,30301 +205071,Bose SoundSport Headphones,1,99.99,2019-05-06 20:52:00,384 5th St, New York City,NY,10001 +205072,27in FHD Monitor,1,149.99,2019-05-03 22:18:00,619 14th St, San Francisco,CA,94016 +205073,Bose SoundSport Headphones,1,99.99,2019-05-16 01:02:00,64 Lakeview St, Atlanta,GA,30301 +205074,USB-C Charging Cable,1,11.95,2019-05-08 06:10:00,831 Jefferson St, New York City,NY,10001 +205075,AA Batteries (4-pack),1,3.84,2019-05-23 21:40:00,469 5th St, New York City,NY,10001 +205076,Google Phone,1,600.0,2019-05-03 19:53:00,570 Jackson St, New York City,NY,10001 +205077,USB-C Charging Cable,2,11.95,2019-05-26 11:12:00,393 Pine St, San Francisco,CA,94016 +205078,Apple Airpods Headphones,1,150.0,2019-05-13 07:26:00,559 Sunset St, Los Angeles,CA,90001 +205079,Google Phone,1,600.0,2019-05-08 13:18:00,812 Pine St, Los Angeles,CA,90001 +205080,AAA Batteries (4-pack),1,2.99,2019-05-30 15:02:00,925 Center St, Austin,TX,73301 +205081,Bose SoundSport Headphones,1,99.99,2019-05-25 17:36:00,171 Highland St, San Francisco,CA,94016 +205082,Macbook Pro Laptop,1,1700.0,2019-05-11 18:37:00,339 Hickory St, San Francisco,CA,94016 +205083,34in Ultrawide Monitor,1,379.99,2019-05-21 11:59:00,26 Hill St, Atlanta,GA,30301 +205084,AA Batteries (4-pack),1,3.84,2019-05-22 13:34:00,791 Adams St, Seattle,WA,98101 +205085,AA Batteries (4-pack),1,3.84,2019-05-21 12:27:00,500 Cedar St, Seattle,WA,98101 +205086,Macbook Pro Laptop,1,1700.0,2019-05-16 16:13:00,237 7th St, New York City,NY,10001 +205087,USB-C Charging Cable,1,11.95,2019-05-10 20:35:00,51 Church St, San Francisco,CA,94016 +205088,AAA Batteries (4-pack),2,2.99,2019-05-05 08:58:00,371 Cherry St, Los Angeles,CA,90001 +205089,AAA Batteries (4-pack),2,2.99,2019-05-25 21:27:00,348 Lakeview St, Atlanta,GA,30301 +205090,Lightning Charging Cable,1,14.95,2019-05-12 12:22:00,786 River St, San Francisco,CA,94016 +205091,Lightning Charging Cable,1,14.95,2019-05-16 16:43:00,7 11th St, Boston,MA,02215 +205092,AAA Batteries (4-pack),1,2.99,2019-05-12 20:10:00,413 Lake St, Austin,TX,73301 +205093,Wired Headphones,1,11.99,2019-05-18 14:16:00,19 Madison St, San Francisco,CA,94016 +205094,Wired Headphones,1,11.99,2019-05-29 18:24:00,798 Washington St, San Francisco,CA,94016 +205095,Lightning Charging Cable,1,14.95,2019-05-29 22:48:00,442 5th St, New York City,NY,10001 +205096,USB-C Charging Cable,1,11.95,2019-05-21 00:53:00,867 Lakeview St, Atlanta,GA,30301 +205097,Wired Headphones,1,11.99,2019-05-21 12:45:00,423 Meadow St, Boston,MA,02215 +205098,AA Batteries (4-pack),1,3.84,2019-05-25 14:18:00,395 Cherry St, Austin,TX,73301 +205099,Apple Airpods Headphones,1,150.0,2019-05-14 18:46:00,772 Cherry St, Austin,TX,73301 +205100,Wired Headphones,1,11.99,2019-05-28 20:13:00,428 Cedar St, New York City,NY,10001 +205101,27in FHD Monitor,1,149.99,2019-05-11 20:16:00,22 Hickory St, San Francisco,CA,94016 +205102,USB-C Charging Cable,1,11.95,2019-05-24 10:23:00,878 Adams St, San Francisco,CA,94016 +205103,AA Batteries (4-pack),1,3.84,2019-05-04 10:33:00,550 12th St, Dallas,TX,75001 +205104,Wired Headphones,1,11.99,2019-05-02 08:59:00,168 Dogwood St, Los Angeles,CA,90001 +205105,AA Batteries (4-pack),1,3.84,2019-05-19 18:12:00,491 Lake St, Dallas,TX,75001 +205106,USB-C Charging Cable,1,11.95,2019-05-19 22:17:00,511 Lake St, Seattle,WA,98101 +205107,iPhone,1,700.0,2019-05-05 20:33:00,881 Ridge St, San Francisco,CA,94016 +205108,AA Batteries (4-pack),2,3.84,2019-05-21 19:58:00,186 Chestnut St, New York City,NY,10001 +205109,AA Batteries (4-pack),1,3.84,2019-05-15 10:05:00,740 Washington St, Portland,OR,97035 +205110,Bose SoundSport Headphones,1,99.99,2019-05-01 21:17:00,946 Walnut St, New York City,NY,10001 +205111,AA Batteries (4-pack),1,3.84,2019-05-26 15:47:00,459 11th St, Dallas,TX,75001 +205112,Bose SoundSport Headphones,1,99.99,2019-05-01 19:18:00,142 10th St, San Francisco,CA,94016 +205113,34in Ultrawide Monitor,1,379.99,2019-05-17 21:38:00,473 Madison St, New York City,NY,10001 +205114,34in Ultrawide Monitor,1,379.99,2019-05-01 08:51:00,544 Lincoln St, Dallas,TX,75001 +205115,Lightning Charging Cable,1,14.95,2019-05-17 10:08:00,816 Church St, New York City,NY,10001 +205116,34in Ultrawide Monitor,1,379.99,2019-05-14 12:39:00,482 11th St, Los Angeles,CA,90001 +205117,Wired Headphones,1,11.99,2019-05-14 11:47:00,653 2nd St, Los Angeles,CA,90001 +205118,Bose SoundSport Headphones,1,99.99,2019-05-23 22:52:00,399 Washington St, New York City,NY,10001 +205119,AAA Batteries (4-pack),1,2.99,2019-05-21 12:47:00,771 Meadow St, Dallas,TX,75001 +205120,ThinkPad Laptop,1,999.99,2019-05-08 12:30:00,569 Jefferson St, Boston,MA,02215 +205121,Wired Headphones,1,11.99,2019-05-13 14:23:00,790 14th St, Boston,MA,02215 +205122,AA Batteries (4-pack),1,3.84,2019-05-14 16:27:00,533 North St, Dallas,TX,75001 +205123,AAA Batteries (4-pack),1,2.99,2019-05-26 21:38:00,740 Maple St, Los Angeles,CA,90001 +205124,Apple Airpods Headphones,2,150.0,2019-05-23 15:47:00,482 1st St, New York City,NY,10001 +205125,AA Batteries (4-pack),1,3.84,2019-05-19 13:19:00,82 Lincoln St, San Francisco,CA,94016 +205126,Lightning Charging Cable,1,14.95,2019-05-14 23:39:00,184 Main St, Dallas,TX,75001 +205127,27in FHD Monitor,1,149.99,2019-05-14 11:17:00,337 4th St, New York City,NY,10001 +205128,Bose SoundSport Headphones,1,99.99,2019-05-26 07:41:00,137 Chestnut St, Dallas,TX,75001 +205129,27in FHD Monitor,1,149.99,2019-05-13 19:38:00,678 Hickory St, New York City,NY,10001 +205130,Lightning Charging Cable,1,14.95,2019-05-08 19:24:00,863 14th St, Boston,MA,02215 +205131,iPhone,1,700.0,2019-05-08 08:43:00,304 River St, New York City,NY,10001 +205132,AAA Batteries (4-pack),1,2.99,2019-05-01 17:27:00,902 9th St, San Francisco,CA,94016 +205133,Vareebadd Phone,1,400.0,2019-05-10 00:50:00,784 7th St, San Francisco,CA,94016 +205134,AA Batteries (4-pack),2,3.84,2019-05-20 20:43:00,595 7th St, Boston,MA,02215 +205135,USB-C Charging Cable,1,11.95,2019-05-14 19:36:00,750 Hill St, Dallas,TX,75001 +205136,Lightning Charging Cable,1,14.95,2019-05-19 16:18:00,358 14th St, Boston,MA,02215 +205137,27in FHD Monitor,1,149.99,2019-05-14 12:03:00,287 Highland St, New York City,NY,10001 +205138,Bose SoundSport Headphones,1,99.99,2019-05-18 20:33:00,755 West St, San Francisco,CA,94016 +205139,Wired Headphones,2,11.99,2019-05-29 22:09:00,241 Adams St, Austin,TX,73301 +205140,Apple Airpods Headphones,1,150.0,2019-05-01 13:50:00,231 9th St, Seattle,WA,98101 +205141,AA Batteries (4-pack),1,3.84,2019-05-19 16:55:00,256 Chestnut St, New York City,NY,10001 +205142,iPhone,1,700.0,2019-05-18 22:53:00,7 14th St, New York City,NY,10001 +205142,Lightning Charging Cable,1,14.95,2019-05-18 22:53:00,7 14th St, New York City,NY,10001 +205143,Google Phone,1,600.0,2019-05-25 14:49:00,657 Johnson St, Boston,MA,02215 +205144,Google Phone,1,600.0,2019-05-17 11:46:00,965 5th St, San Francisco,CA,94016 +205144,Wired Headphones,1,11.99,2019-05-17 11:46:00,965 5th St, San Francisco,CA,94016 +205145,AAA Batteries (4-pack),1,2.99,2019-05-01 13:27:00,183 Sunset St, Dallas,TX,75001 +205146,AA Batteries (4-pack),1,3.84,2019-05-03 20:12:00,313 Forest St, Austin,TX,73301 +205147,Macbook Pro Laptop,1,1700.0,2019-05-19 12:54:00,599 Walnut St, San Francisco,CA,94016 +205148,AAA Batteries (4-pack),2,2.99,2019-05-07 21:34:00,398 Willow St, New York City,NY,10001 +205149,Wired Headphones,1,11.99,2019-05-31 20:45:00,388 Jefferson St, New York City,NY,10001 +205150,Wired Headphones,1,11.99,2019-05-20 08:48:00,577 10th St, Los Angeles,CA,90001 +205151,AA Batteries (4-pack),3,3.84,2019-05-09 18:18:00,286 Walnut St, Los Angeles,CA,90001 +205152,AA Batteries (4-pack),2,3.84,2019-05-22 15:06:00,251 Adams St, Seattle,WA,98101 +205153,Lightning Charging Cable,1,14.95,2019-05-08 17:46:00,667 1st St, Boston,MA,02215 +205154,Apple Airpods Headphones,1,150.0,2019-05-13 12:29:00,713 5th St, Atlanta,GA,30301 +205155,USB-C Charging Cable,1,11.95,2019-05-30 23:47:00,761 Dogwood St, Atlanta,GA,30301 +205156,Lightning Charging Cable,1,14.95,2019-05-11 08:31:00,229 Madison St, New York City,NY,10001 +205157,Wired Headphones,1,11.99,2019-05-12 19:51:00,337 Washington St, Los Angeles,CA,90001 +205158,Apple Airpods Headphones,1,150.0,2019-05-22 19:16:00,858 Madison St, San Francisco,CA,94016 +205159,20in Monitor,1,109.99,2019-05-22 19:27:00,773 Hill St, Boston,MA,02215 +205160,AAA Batteries (4-pack),1,2.99,2019-05-11 19:08:00,759 Elm St, Austin,TX,73301 +205161,Wired Headphones,1,11.99,2019-05-17 13:51:00,657 Jackson St, Dallas,TX,75001 +205162,AAA Batteries (4-pack),1,2.99,2019-05-04 08:52:00,473 Lake St, Los Angeles,CA,90001 +205163,AAA Batteries (4-pack),2,2.99,2019-05-05 17:28:00,230 Sunset St, Portland,OR,97035 +205164,Vareebadd Phone,1,400.0,2019-05-29 12:13:00,774 7th St, San Francisco,CA,94016 +205165,AAA Batteries (4-pack),2,2.99,2019-05-30 19:22:00,929 14th St, Dallas,TX,75001 +205166,Lightning Charging Cable,2,14.95,2019-05-26 13:44:00,356 Chestnut St, Los Angeles,CA,90001 +205167,Macbook Pro Laptop,1,1700.0,2019-05-12 05:22:00,26 Elm St, Atlanta,GA,30301 +205167,Lightning Charging Cable,1,14.95,2019-05-12 05:22:00,26 Elm St, Atlanta,GA,30301 +205168,Lightning Charging Cable,2,14.95,2019-05-28 18:50:00,939 Lake St, New York City,NY,10001 +205169,Lightning Charging Cable,1,14.95,2019-05-12 20:44:00,236 Center St, San Francisco,CA,94016 +205170,AAA Batteries (4-pack),1,2.99,2019-05-31 23:22:00,609 Pine St, Seattle,WA,98101 +205171,Bose SoundSport Headphones,1,99.99,2019-05-13 06:07:00,642 Lake St, Los Angeles,CA,90001 +205172,Flatscreen TV,1,300.0,2019-05-27 04:50:00,775 Lake St, San Francisco,CA,94016 +205173,Lightning Charging Cable,1,14.95,2019-05-24 08:03:00,826 11th St, Seattle,WA,98101 +205174,Wired Headphones,1,11.99,2019-05-20 16:09:00,644 Main St, Seattle,WA,98101 +205175,27in 4K Gaming Monitor,1,389.99,2019-05-01 16:40:00,444 Spruce St, Seattle,WA,98101 +205176,USB-C Charging Cable,1,11.95,2019-05-10 17:17:00,190 Johnson St, San Francisco,CA,94016 +205177,ThinkPad Laptop,1,999.99,2019-05-24 19:26:00,71 Main St, Los Angeles,CA,90001 +205178,Lightning Charging Cable,1,14.95,2019-05-19 12:36:00,996 South St, Austin,TX,73301 +205179,27in 4K Gaming Monitor,1,389.99,2019-05-15 21:48:00,892 7th St, Seattle,WA,98101 +205180,USB-C Charging Cable,1,11.95,2019-05-17 14:38:00,53 Johnson St, Seattle,WA,98101 +205181,Apple Airpods Headphones,1,150.0,2019-05-18 13:38:00,797 Cherry St, San Francisco,CA,94016 +205182,AAA Batteries (4-pack),2,2.99,2019-05-16 09:22:00,344 6th St, Dallas,TX,75001 +205183,27in FHD Monitor,1,149.99,2019-05-28 15:50:00,131 Meadow St, Dallas,TX,75001 +205184,AA Batteries (4-pack),1,3.84,2019-05-09 11:35:00,997 1st St, San Francisco,CA,94016 +205185,Lightning Charging Cable,1,14.95,2019-05-01 12:00:00,398 Lake St, Los Angeles,CA,90001 +205186,34in Ultrawide Monitor,1,379.99,2019-05-27 17:07:00,504 Spruce St, San Francisco,CA,94016 +205187,AAA Batteries (4-pack),1,2.99,2019-05-31 10:28:00,748 Madison St, Atlanta,GA,30301 +205188,AA Batteries (4-pack),2,3.84,2019-05-14 13:45:00,676 Dogwood St, San Francisco,CA,94016 +205189,Lightning Charging Cable,1,14.95,2019-05-12 19:32:00,479 11th St, Austin,TX,73301 +205190,USB-C Charging Cable,1,11.95,2019-05-30 20:45:00,416 Park St, Los Angeles,CA,90001 +205191,Lightning Charging Cable,2,14.95,2019-05-19 00:42:00,569 9th St, Los Angeles,CA,90001 +205192,Apple Airpods Headphones,1,150.0,2019-05-20 16:56:00,653 Lincoln St, San Francisco,CA,94016 +205193,Apple Airpods Headphones,1,150.0,2019-05-26 23:30:00,586 1st St, San Francisco,CA,94016 +205194,Vareebadd Phone,1,400.0,2019-05-03 21:01:00,633 Cedar St, San Francisco,CA,94016 +205194,Wired Headphones,1,11.99,2019-05-03 21:01:00,633 Cedar St, San Francisco,CA,94016 +205195,AAA Batteries (4-pack),3,2.99,2019-05-05 12:14:00,599 Chestnut St, New York City,NY,10001 +205196,Lightning Charging Cable,1,14.95,2019-05-15 18:01:00,180 Main St, San Francisco,CA,94016 +205197,USB-C Charging Cable,1,11.95,2019-05-18 09:48:00,837 Center St, San Francisco,CA,94016 +205198,Lightning Charging Cable,2,14.95,2019-05-12 22:42:00,308 Willow St, Boston,MA,02215 +205199,Apple Airpods Headphones,1,150.0,2019-05-14 20:43:00,514 Meadow St, Boston,MA,02215 +205200,Lightning Charging Cable,1,14.95,2019-05-18 10:42:00,385 13th St, Atlanta,GA,30301 +205201,27in 4K Gaming Monitor,1,389.99,2019-05-24 11:20:00,645 10th St, Dallas,TX,75001 +205202,AA Batteries (4-pack),2,3.84,2019-05-09 11:59:00,934 4th St, San Francisco,CA,94016 +205203,Wired Headphones,1,11.99,2019-05-15 20:56:00,937 Meadow St, Los Angeles,CA,90001 +205204,27in 4K Gaming Monitor,1,389.99,2019-05-24 10:29:00,641 Pine St, Los Angeles,CA,90001 +205205,20in Monitor,1,109.99,2019-05-29 06:22:00,321 South St, Boston,MA,02215 +205206,Lightning Charging Cable,2,14.95,2019-05-10 21:23:00,645 Main St, Los Angeles,CA,90001 +205207,Apple Airpods Headphones,1,150.0,2019-05-20 14:09:00,254 River St, San Francisco,CA,94016 +205208,USB-C Charging Cable,1,11.95,2019-05-18 22:08:00,408 Wilson St, Austin,TX,73301 +205209,Lightning Charging Cable,1,14.95,2019-05-03 12:12:00,8 Park St, New York City,NY,10001 +205210,Macbook Pro Laptop,1,1700.0,2019-05-05 12:12:00,318 Center St, Portland,ME,04101 +205211,AA Batteries (4-pack),1,3.84,2019-05-31 13:16:00,582 Hickory St, Los Angeles,CA,90001 +205212,AA Batteries (4-pack),1,3.84,2019-05-17 20:03:00,502 Lake St, Boston,MA,02215 +205213,34in Ultrawide Monitor,1,379.99,2019-05-04 15:22:00,579 Cherry St, Atlanta,GA,30301 +205214,AA Batteries (4-pack),1,3.84,2019-05-12 10:00:00,450 Jackson St, Portland,OR,97035 +205215,Macbook Pro Laptop,1,1700.0,2019-05-24 22:56:00,220 Center St, New York City,NY,10001 +205216,Bose SoundSport Headphones,1,99.99,2019-05-03 19:21:00,140 Dogwood St, Dallas,TX,75001 +205217,27in FHD Monitor,1,149.99,2019-05-03 23:30:00,630 Main St, Dallas,TX,75001 +205218,Wired Headphones,1,11.99,2019-05-24 10:57:00,127 Adams St, New York City,NY,10001 +205219,Wired Headphones,1,11.99,2019-05-01 03:53:00,403 Washington St, New York City,NY,10001 +205220,AAA Batteries (4-pack),2,2.99,2019-05-12 20:09:00,550 Dogwood St, Boston,MA,02215 +205221,Lightning Charging Cable,1,14.95,2019-05-13 01:47:00,565 Park St, San Francisco,CA,94016 +205222,Wired Headphones,1,11.99,2019-05-09 06:28:00,502 Lake St, New York City,NY,10001 +205223,USB-C Charging Cable,1,11.95,2019-05-27 00:58:00,82 Adams St, Boston,MA,02215 +205224,Lightning Charging Cable,1,14.95,2019-05-15 20:40:00,513 Chestnut St, New York City,NY,10001 +205225,Wired Headphones,1,11.99,2019-05-24 11:08:00,588 7th St, Atlanta,GA,30301 +205226,20in Monitor,1,109.99,2019-05-18 14:22:00,459 10th St, Los Angeles,CA,90001 +205227,Wired Headphones,1,11.99,2019-05-26 14:35:00,566 Lakeview St, Dallas,TX,75001 +205228,Apple Airpods Headphones,1,150.0,2019-05-08 12:00:00,524 River St, Atlanta,GA,30301 +205229,AAA Batteries (4-pack),1,2.99,2019-05-08 23:25:00,321 Cedar St, Boston,MA,02215 +205230,20in Monitor,1,109.99,2019-05-16 02:23:00,384 11th St, Dallas,TX,75001 +205231,Lightning Charging Cable,1,14.95,2019-05-27 21:22:00,99 2nd St, Austin,TX,73301 +205232,Macbook Pro Laptop,1,1700.0,2019-05-25 17:07:00,441 River St, Portland,OR,97035 +205233,AAA Batteries (4-pack),1,2.99,2019-05-30 16:57:00,627 Lake St, Seattle,WA,98101 +205234,Macbook Pro Laptop,1,1700.0,2019-05-13 09:54:00,793 West St, San Francisco,CA,94016 +205235,34in Ultrawide Monitor,1,379.99,2019-05-30 17:54:00,196 Adams St, New York City,NY,10001 +205236,34in Ultrawide Monitor,1,379.99,2019-05-24 20:35:00,804 13th St, Los Angeles,CA,90001 +205237,AAA Batteries (4-pack),4,2.99,2019-05-11 12:52:00,871 Jefferson St, Atlanta,GA,30301 +205238,AAA Batteries (4-pack),1,2.99,2019-05-05 23:18:00,956 Ridge St, Los Angeles,CA,90001 +205239,AAA Batteries (4-pack),1,2.99,2019-05-21 20:48:00,373 Center St, New York City,NY,10001 +205240,AAA Batteries (4-pack),1,2.99,2019-05-24 09:04:00,20 Lincoln St, San Francisco,CA,94016 +205241,Google Phone,1,600.0,2019-05-12 11:47:00,717 Walnut St, New York City,NY,10001 +205242,Lightning Charging Cable,1,14.95,2019-05-15 22:22:00,252 6th St, Atlanta,GA,30301 +205243,AA Batteries (4-pack),2,3.84,2019-05-20 00:46:00,899 River St, Los Angeles,CA,90001 +205244,Google Phone,1,600.0,2019-05-15 19:17:00,486 Lakeview St, San Francisco,CA,94016 +205244,USB-C Charging Cable,1,11.95,2019-05-15 19:17:00,486 Lakeview St, San Francisco,CA,94016 +205245,Wired Headphones,1,11.99,2019-05-13 10:16:00,119 Highland St, Los Angeles,CA,90001 +205246,ThinkPad Laptop,1,999.99,2019-05-11 13:59:00,303 Jackson St, Dallas,TX,75001 +205247,Wired Headphones,1,11.99,2019-05-22 18:40:00,255 Park St, Los Angeles,CA,90001 +205248,Google Phone,1,600.0,2019-05-24 00:06:00,968 8th St, Atlanta,GA,30301 +205249,Flatscreen TV,1,300.0,2019-05-30 10:49:00,838 Madison St, Seattle,WA,98101 +205250,27in 4K Gaming Monitor,1,389.99,2019-05-29 12:41:00,168 Hickory St, Atlanta,GA,30301 +205251,34in Ultrawide Monitor,1,379.99,2019-05-19 18:39:00,939 Chestnut St, Los Angeles,CA,90001 +205252,Bose SoundSport Headphones,1,99.99,2019-05-25 09:47:00,451 West St, San Francisco,CA,94016 +205253,Flatscreen TV,1,300.0,2019-05-22 18:41:00,846 7th St, San Francisco,CA,94016 +205254,Lightning Charging Cable,1,14.95,2019-05-19 21:32:00,196 11th St, San Francisco,CA,94016 +205255,Lightning Charging Cable,1,14.95,2019-05-03 17:40:00,846 Madison St, Seattle,WA,98101 +205256,AAA Batteries (4-pack),5,2.99,2019-05-05 11:54:00,245 1st St, San Francisco,CA,94016 +205257,Lightning Charging Cable,1,14.95,2019-05-11 22:21:00,454 Lakeview St, Los Angeles,CA,90001 +205258,USB-C Charging Cable,1,11.95,2019-05-23 11:51:00,125 1st St, Seattle,WA,98101 +205259,AAA Batteries (4-pack),1,2.99,2019-05-17 19:54:00,883 9th St, Atlanta,GA,30301 +205260,Apple Airpods Headphones,1,150.0,2019-05-25 13:38:00,570 Center St, San Francisco,CA,94016 +205261,Apple Airpods Headphones,1,150.0,2019-05-07 16:37:00,272 Hickory St, Los Angeles,CA,90001 +205262,AA Batteries (4-pack),2,3.84,2019-05-26 18:06:00,668 Cedar St, Los Angeles,CA,90001 +205263,Apple Airpods Headphones,1,150.0,2019-05-19 11:19:00,243 Elm St, Los Angeles,CA,90001 +205264,27in 4K Gaming Monitor,1,389.99,2019-05-07 12:44:00,18 5th St, New York City,NY,10001 +205265,USB-C Charging Cable,1,11.95,2019-05-31 17:17:00,939 Pine St, San Francisco,CA,94016 +205266,Bose SoundSport Headphones,1,99.99,2019-05-07 09:31:00,555 River St, Boston,MA,02215 +205267,Macbook Pro Laptop,1,1700.0,2019-05-04 13:22:00,965 9th St, Los Angeles,CA,90001 +205268,USB-C Charging Cable,1,11.95,2019-05-06 12:40:00,311 Walnut St, San Francisco,CA,94016 +205269,Wired Headphones,1,11.99,2019-05-19 18:10:00,179 Ridge St, Boston,MA,02215 +205270,Lightning Charging Cable,1,14.95,2019-05-30 14:38:00,13 7th St, San Francisco,CA,94016 +205271,Google Phone,1,600.0,2019-05-21 13:26:00,49 5th St, Dallas,TX,75001 +205271,USB-C Charging Cable,1,11.95,2019-05-21 13:26:00,49 5th St, Dallas,TX,75001 +205271,Wired Headphones,1,11.99,2019-05-21 13:26:00,49 5th St, Dallas,TX,75001 +205272,Lightning Charging Cable,1,14.95,2019-05-26 23:36:00,719 Johnson St, Austin,TX,73301 +205273,Apple Airpods Headphones,1,150.0,2019-05-30 07:02:00,545 Madison St, Los Angeles,CA,90001 +205274,27in FHD Monitor,1,149.99,2019-05-26 09:28:00,459 Johnson St, Los Angeles,CA,90001 +205275,AAA Batteries (4-pack),1,2.99,2019-05-16 19:37:00,475 6th St, Dallas,TX,75001 +205276,Bose SoundSport Headphones,1,99.99,2019-05-14 18:42:00,439 Sunset St, Atlanta,GA,30301 +205277,Bose SoundSport Headphones,1,99.99,2019-05-10 13:33:00,275 Cedar St, San Francisco,CA,94016 +205278,34in Ultrawide Monitor,1,379.99,2019-05-08 18:08:00,667 Hill St, San Francisco,CA,94016 +205279,Macbook Pro Laptop,1,1700.0,2019-05-09 16:13:00,967 10th St, Seattle,WA,98101 +205280,Macbook Pro Laptop,1,1700.0,2019-05-22 00:44:00,296 Washington St, Dallas,TX,75001 +205281,Lightning Charging Cable,2,14.95,2019-05-23 22:12:00,264 Walnut St, Dallas,TX,75001 +205282,AAA Batteries (4-pack),2,2.99,2019-05-15 06:26:00,359 1st St, Seattle,WA,98101 +205283,Bose SoundSport Headphones,1,99.99,2019-05-23 20:59:00,481 Lake St, Los Angeles,CA,90001 +205284,Flatscreen TV,1,300.0,2019-05-13 15:36:00,748 Meadow St, New York City,NY,10001 +205285,Wired Headphones,1,11.99,2019-05-16 11:44:00,396 Madison St, Los Angeles,CA,90001 +205286,Lightning Charging Cable,1,14.95,2019-05-12 17:44:00,996 Center St, Los Angeles,CA,90001 +205287,Vareebadd Phone,1,400.0,2019-05-26 21:04:00,644 River St, New York City,NY,10001 +205288,AAA Batteries (4-pack),2,2.99,2019-05-21 12:01:00,843 Spruce St, Seattle,WA,98101 +205289,27in 4K Gaming Monitor,1,389.99,2019-05-05 21:46:00,298 Main St, Austin,TX,73301 +205290,USB-C Charging Cable,1,11.95,2019-05-12 13:20:00,241 Dogwood St, Los Angeles,CA,90001 +205291,iPhone,1,700.0,2019-05-19 11:34:00,870 10th St, San Francisco,CA,94016 +205292,iPhone,1,700.0,2019-05-05 15:23:00,371 Willow St, Seattle,WA,98101 +205293,USB-C Charging Cable,1,11.95,2019-05-22 09:02:00,483 12th St, San Francisco,CA,94016 +205294,Bose SoundSport Headphones,1,99.99,2019-05-23 21:11:00,874 Forest St, Los Angeles,CA,90001 +205295,AAA Batteries (4-pack),1,2.99,2019-05-09 17:20:00,806 Washington St, Dallas,TX,75001 +205296,Apple Airpods Headphones,1,150.0,2019-05-22 20:18:00,177 Lincoln St, Atlanta,GA,30301 +205297,20in Monitor,1,109.99,2019-05-20 10:15:00,785 Church St, San Francisco,CA,94016 +205298,Lightning Charging Cable,1,14.95,2019-05-02 00:09:00,146 6th St, Los Angeles,CA,90001 +205299,Wired Headphones,1,11.99,2019-05-18 10:06:00,49 Maple St, Portland,OR,97035 +205300,34in Ultrawide Monitor,1,379.99,2019-05-31 09:07:00,898 Ridge St, San Francisco,CA,94016 +205301,AA Batteries (4-pack),2,3.84,2019-05-30 20:19:00,997 Lake St, Boston,MA,02215 +205302,Google Phone,1,600.0,2019-05-07 18:37:00,622 Maple St, Boston,MA,02215 +205302,USB-C Charging Cable,1,11.95,2019-05-07 18:37:00,622 Maple St, Boston,MA,02215 +205302,Bose SoundSport Headphones,1,99.99,2019-05-07 18:37:00,622 Maple St, Boston,MA,02215 +205303,Apple Airpods Headphones,1,150.0,2019-05-14 13:51:00,394 Jackson St, San Francisco,CA,94016 +205304,AA Batteries (4-pack),1,3.84,2019-05-07 17:12:00,363 11th St, Dallas,TX,75001 +205305,Wired Headphones,1,11.99,2019-05-12 12:11:00,900 4th St, Austin,TX,73301 +205306,AAA Batteries (4-pack),2,2.99,2019-05-12 20:55:00,310 Center St, New York City,NY,10001 +205307,AAA Batteries (4-pack),1,2.99,2019-05-13 10:54:00,56 Lincoln St, San Francisco,CA,94016 +205308,Flatscreen TV,1,300.0,2019-05-12 23:38:00,666 Dogwood St, San Francisco,CA,94016 +205309,AAA Batteries (4-pack),1,2.99,2019-05-17 15:44:00,488 Jefferson St, Seattle,WA,98101 +205310,Wired Headphones,1,11.99,2019-05-28 18:06:00,430 Adams St, Portland,OR,97035 +205311,Wired Headphones,1,11.99,2019-05-29 18:23:00,950 7th St, Los Angeles,CA,90001 +205312,Wired Headphones,1,11.99,2019-05-07 18:57:00,55 Spruce St, Boston,MA,02215 +205313,Macbook Pro Laptop,1,1700.0,2019-05-28 22:32:00,142 Park St, Atlanta,GA,30301 +205314,Bose SoundSport Headphones,1,99.99,2019-05-26 12:08:00,625 Hill St, Atlanta,GA,30301 +205315,AA Batteries (4-pack),1,3.84,2019-05-14 21:35:00,981 Jackson St, Atlanta,GA,30301 +205316,27in FHD Monitor,1,149.99,2019-05-25 10:37:00,883 Dogwood St, San Francisco,CA,94016 +205317,AA Batteries (4-pack),1,3.84,2019-05-15 22:38:00,645 Walnut St, Los Angeles,CA,90001 +205318,AAA Batteries (4-pack),4,2.99,2019-05-06 13:10:00,73 Adams St, Portland,OR,97035 +205319,ThinkPad Laptop,1,999.99,2019-05-24 09:01:00,893 Wilson St, San Francisco,CA,94016 +205320,AA Batteries (4-pack),1,3.84,2019-05-30 15:22:00,884 Jefferson St, Los Angeles,CA,90001 +205321,Apple Airpods Headphones,1,150.0,2019-05-04 14:27:00,184 Jefferson St, San Francisco,CA,94016 +205322,Wired Headphones,1,11.99,2019-05-25 19:02:00,755 10th St, Seattle,WA,98101 +205323,Apple Airpods Headphones,1,150.0,2019-05-07 14:17:00,250 Maple St, Boston,MA,02215 +205324,Bose SoundSport Headphones,1,99.99,2019-05-15 08:32:00,966 Forest St, San Francisco,CA,94016 +205325,AA Batteries (4-pack),4,3.84,2019-05-16 22:34:00,850 Park St, San Francisco,CA,94016 +205326,27in FHD Monitor,1,149.99,2019-05-18 19:13:00,212 Pine St, New York City,NY,10001 +205327,Lightning Charging Cable,1,14.95,2019-05-31 18:57:00,9 River St, Los Angeles,CA,90001 +205328,USB-C Charging Cable,1,11.95,2019-05-11 17:16:00,511 Hill St, San Francisco,CA,94016 +205329,USB-C Charging Cable,1,11.95,2019-05-24 21:26:00,320 Cedar St, Boston,MA,02215 +205330,USB-C Charging Cable,1,11.95,2019-05-14 21:02:00,52 Highland St, New York City,NY,10001 +205331,Wired Headphones,1,11.99,2019-05-28 18:52:00,100 Jefferson St, San Francisco,CA,94016 +205332,Lightning Charging Cable,1,14.95,2019-05-02 11:01:00,737 9th St, San Francisco,CA,94016 +205333,27in FHD Monitor,1,149.99,2019-05-12 15:21:00,462 5th St, Dallas,TX,75001 +205334,Macbook Pro Laptop,1,1700.0,2019-05-29 19:01:00,715 Chestnut St, Dallas,TX,75001 +205335,Flatscreen TV,1,300.0,2019-05-19 16:20:00,174 Madison St, Atlanta,GA,30301 +205336,Flatscreen TV,1,300.0,2019-05-21 11:46:00,566 Meadow St, Los Angeles,CA,90001 +205337,27in FHD Monitor,1,149.99,2019-05-13 14:20:00,379 7th St, Los Angeles,CA,90001 +205338,Apple Airpods Headphones,1,150.0,2019-05-03 22:35:00,200 Main St, New York City,NY,10001 +205339,Apple Airpods Headphones,1,150.0,2019-05-10 13:27:00,83 4th St, San Francisco,CA,94016 +205340,Lightning Charging Cable,1,14.95,2019-05-29 17:25:00,50 River St, San Francisco,CA,94016 +205341,27in 4K Gaming Monitor,1,389.99,2019-05-01 12:45:00,22 West St, Seattle,WA,98101 +205342,34in Ultrawide Monitor,1,379.99,2019-05-29 19:45:00,811 7th St, Atlanta,GA,30301 +205343,27in FHD Monitor,1,149.99,2019-05-13 10:48:00,269 Center St, Austin,TX,73301 +205344,AA Batteries (4-pack),1,3.84,2019-05-09 12:29:00,201 Sunset St, Austin,TX,73301 +205345,Wired Headphones,1,11.99,2019-05-10 22:10:00,961 South St, Los Angeles,CA,90001 +205346,Google Phone,1,600.0,2019-05-23 13:44:00,828 8th St, New York City,NY,10001 +205347,Google Phone,1,600.0,2019-05-09 15:11:00,756 Johnson St, Austin,TX,73301 +205348,27in 4K Gaming Monitor,1,389.99,2019-05-30 20:27:00,138 North St, San Francisco,CA,94016 +205349,Lightning Charging Cable,1,14.95,2019-05-15 16:09:00,330 Lincoln St, Seattle,WA,98101 +205350,iPhone,1,700.0,2019-05-23 14:18:00,185 Pine St, Los Angeles,CA,90001 +205351,USB-C Charging Cable,1,11.95,2019-05-24 23:10:00,852 7th St, Seattle,WA,98101 +205352,USB-C Charging Cable,1,11.95,2019-05-31 16:35:00,976 Hill St, Seattle,WA,98101 +205353,USB-C Charging Cable,2,11.95,2019-05-05 06:19:00,385 West St, Seattle,WA,98101 +205354,34in Ultrawide Monitor,1,379.99,2019-05-13 15:50:00,598 River St, Los Angeles,CA,90001 +205355,USB-C Charging Cable,1,11.95,2019-05-21 15:53:00,215 2nd St, New York City,NY,10001 +205356,ThinkPad Laptop,1,999.99,2019-05-17 12:17:00,585 Ridge St, Boston,MA,02215 +205357,Lightning Charging Cable,1,14.95,2019-05-09 14:41:00,139 Johnson St, San Francisco,CA,94016 +205358,Wired Headphones,1,11.99,2019-05-12 07:49:00,877 North St, Portland,ME,04101 +205359,Apple Airpods Headphones,1,150.0,2019-05-20 21:19:00,656 Walnut St, Atlanta,GA,30301 +205360,Apple Airpods Headphones,1,150.0,2019-05-03 15:43:00,400 Cherry St, Los Angeles,CA,90001 +205361,Lightning Charging Cable,1,14.95,2019-05-25 21:28:00,581 6th St, San Francisco,CA,94016 +205362,Lightning Charging Cable,1,14.95,2019-05-08 13:32:00,407 Willow St, Atlanta,GA,30301 +205363,Lightning Charging Cable,2,14.95,2019-05-04 15:05:00,258 7th St, Atlanta,GA,30301 +205364,iPhone,1,700.0,2019-05-28 10:32:00,60 Willow St, New York City,NY,10001 +205365,iPhone,1,700.0,2019-05-19 17:19:00,704 13th St, New York City,NY,10001 +205365,Lightning Charging Cable,1,14.95,2019-05-19 17:19:00,704 13th St, New York City,NY,10001 +205366,Lightning Charging Cable,1,14.95,2019-05-23 13:50:00,53 Dogwood St, Boston,MA,02215 +205367,Apple Airpods Headphones,1,150.0,2019-05-27 12:39:00,910 9th St, Austin,TX,73301 +205368,AA Batteries (4-pack),1,3.84,2019-05-21 09:32:00,115 6th St, Boston,MA,02215 +205369,AA Batteries (4-pack),1,3.84,2019-05-10 13:50:00,334 Chestnut St, Los Angeles,CA,90001 +205370,AAA Batteries (4-pack),1,2.99,2019-05-03 07:37:00,54 Meadow St, Boston,MA,02215 +205371,34in Ultrawide Monitor,1,379.99,2019-05-07 10:21:00,802 Washington St, San Francisco,CA,94016 +205372,Wired Headphones,1,11.99,2019-05-26 12:24:00,823 Hickory St, New York City,NY,10001 +205373,Lightning Charging Cable,1,14.95,2019-05-20 17:14:00,15 Adams St, New York City,NY,10001 +205374,AAA Batteries (4-pack),2,2.99,2019-05-30 10:09:00,92 2nd St, Dallas,TX,75001 +205375,Lightning Charging Cable,1,14.95,2019-05-15 13:10:00,72 10th St, Dallas,TX,75001 +205376,Google Phone,1,600.0,2019-05-12 09:39:00,236 12th St, Boston,MA,02215 +205377,Apple Airpods Headphones,1,150.0,2019-05-23 21:19:00,217 14th St, Los Angeles,CA,90001 +205378,34in Ultrawide Monitor,1,379.99,2019-05-24 10:29:00,974 South St, Austin,TX,73301 +205379,20in Monitor,1,109.99,2019-05-07 19:10:00,945 Hickory St, Dallas,TX,75001 +205380,20in Monitor,1,109.99,2019-05-10 10:10:00,329 Park St, San Francisco,CA,94016 +205381,LG Dryer,1,600.0,2019-05-02 11:52:00,763 13th St, New York City,NY,10001 +205382,AA Batteries (4-pack),2,3.84,2019-05-30 13:44:00,962 Madison St, Boston,MA,02215 +205383,USB-C Charging Cable,1,11.95,2019-05-21 19:04:00,489 Ridge St, San Francisco,CA,94016 +205384,Lightning Charging Cable,1,14.95,2019-05-20 11:41:00,268 Highland St, Los Angeles,CA,90001 +205385,20in Monitor,1,109.99,2019-05-12 13:52:00,21 4th St, Boston,MA,02215 +205386,Macbook Pro Laptop,1,1700.0,2019-05-09 16:00:00,410 7th St, Dallas,TX,75001 +205387,AA Batteries (4-pack),1,3.84,2019-05-31 14:49:00,774 Pine St, Boston,MA,02215 +205388,Google Phone,1,600.0,2019-05-05 20:56:00,452 River St, Dallas,TX,75001 +205389,AA Batteries (4-pack),1,3.84,2019-05-17 13:54:00,42 Wilson St, Austin,TX,73301 +205390,AA Batteries (4-pack),1,3.84,2019-05-19 12:56:00,62 Park St, Dallas,TX,75001 +205391,Apple Airpods Headphones,1,150.0,2019-05-08 21:13:00,395 Ridge St, Seattle,WA,98101 +205392,Lightning Charging Cable,1,14.95,2019-05-14 09:41:00,893 Cedar St, Boston,MA,02215 +205393,USB-C Charging Cable,1,11.95,2019-05-16 07:41:00,170 Johnson St, Portland,OR,97035 +205394,AA Batteries (4-pack),1,3.84,2019-05-10 11:30:00,515 Walnut St, San Francisco,CA,94016 +205395,Apple Airpods Headphones,1,150.0,2019-05-16 14:53:00,800 11th St, New York City,NY,10001 +205396,Google Phone,1,600.0,2019-05-28 09:01:00,684 Elm St, Austin,TX,73301 +205397,Google Phone,1,600.0,2019-05-02 13:27:00,599 11th St, New York City,NY,10001 +205397,Wired Headphones,1,11.99,2019-05-02 13:27:00,599 11th St, New York City,NY,10001 +205397,AA Batteries (4-pack),3,3.84,2019-05-02 13:27:00,599 11th St, New York City,NY,10001 +205398,27in 4K Gaming Monitor,1,389.99,2019-05-21 14:34:00,237 Hickory St, Portland,ME,04101 +205399,Apple Airpods Headphones,1,150.0,2019-05-02 20:39:00,229 Lincoln St, Boston,MA,02215 +205400,USB-C Charging Cable,1,11.95,2019-05-30 19:52:00,210 13th St, Los Angeles,CA,90001 +205401,Macbook Pro Laptop,1,1700.0,2019-05-18 08:14:00,276 Lake St, Portland,OR,97035 +205402,Lightning Charging Cable,1,14.95,2019-05-31 18:48:00,148 Lincoln St, San Francisco,CA,94016 +205403,Bose SoundSport Headphones,1,99.99,2019-05-19 11:02:00,564 Pine St, Boston,MA,02215 +205404,AAA Batteries (4-pack),1,2.99,2019-05-27 05:03:00,964 Chestnut St, New York City,NY,10001 +205405,AA Batteries (4-pack),1,3.84,2019-05-14 15:24:00,106 Johnson St, Los Angeles,CA,90001 +205406,Lightning Charging Cable,1,14.95,2019-05-22 16:40:00,25 Chestnut St, Los Angeles,CA,90001 +205407,Lightning Charging Cable,1,14.95,2019-05-24 18:09:00,594 6th St, San Francisco,CA,94016 +205408,iPhone,1,700.0,2019-05-08 15:37:00,816 4th St, Los Angeles,CA,90001 +205409,Bose SoundSport Headphones,1,99.99,2019-05-21 20:24:00,786 Cedar St, Portland,OR,97035 +205410,Google Phone,1,600.0,2019-05-02 04:31:00,526 Adams St, San Francisco,CA,94016 +205411,Google Phone,1,600.0,2019-05-18 22:03:00,604 Jackson St, Los Angeles,CA,90001 +205412,AA Batteries (4-pack),1,3.84,2019-05-03 06:16:00,280 13th St, Austin,TX,73301 +205413,LG Washing Machine,1,600.0,2019-05-02 21:35:00,856 River St, Los Angeles,CA,90001 +205414,Flatscreen TV,1,300.0,2019-05-09 18:44:00,657 5th St, San Francisco,CA,94016 +205414,Google Phone,1,600.0,2019-05-09 18:44:00,657 5th St, San Francisco,CA,94016 +205415,USB-C Charging Cable,2,11.95,2019-05-29 19:55:00,288 North St, Los Angeles,CA,90001 +205416,27in FHD Monitor,1,149.99,2019-05-10 21:49:00,953 Highland St, New York City,NY,10001 +205417,27in 4K Gaming Monitor,1,389.99,2019-05-02 19:46:00,424 South St, Austin,TX,73301 +205418,Lightning Charging Cable,1,14.95,2019-05-15 15:25:00,288 Church St, Austin,TX,73301 +205419,Lightning Charging Cable,1,14.95,2019-05-18 19:10:00,855 Ridge St, San Francisco,CA,94016 +205420,AAA Batteries (4-pack),3,2.99,2019-05-17 10:27:00,663 1st St, San Francisco,CA,94016 +205421,LG Dryer,1,600.0,2019-05-22 12:49:00,441 Center St, Portland,ME,04101 +205422,Wired Headphones,1,11.99,2019-05-05 00:28:00,751 Jackson St, Dallas,TX,75001 +205423,20in Monitor,1,109.99,2019-05-20 13:51:00,133 West St, Seattle,WA,98101 +205424,Apple Airpods Headphones,1,150.0,2019-05-28 18:02:00,685 Chestnut St, Boston,MA,02215 +205425,USB-C Charging Cable,2,11.95,2019-05-30 18:51:00,220 Forest St, Dallas,TX,75001 +205426,AA Batteries (4-pack),2,3.84,2019-05-12 20:25:00,842 Forest St, Portland,OR,97035 +205427,AA Batteries (4-pack),1,3.84,2019-05-04 09:57:00,653 Meadow St, New York City,NY,10001 +205428,AAA Batteries (4-pack),1,2.99,2019-05-09 12:40:00,564 Cherry St, New York City,NY,10001 +205429,USB-C Charging Cable,1,11.95,2019-05-31 13:54:00,728 Center St, Boston,MA,02215 +205430,Lightning Charging Cable,1,14.95,2019-05-22 08:54:00,175 Adams St, San Francisco,CA,94016 +205431,Apple Airpods Headphones,1,150.0,2019-05-23 00:02:00,299 Jefferson St, San Francisco,CA,94016 +205432,Lightning Charging Cable,1,14.95,2019-05-30 21:31:00,444 Park St, Seattle,WA,98101 +205433,Flatscreen TV,1,300.0,2019-05-13 11:53:00,352 1st St, Boston,MA,02215 +205434,Bose SoundSport Headphones,1,99.99,2019-05-08 07:00:00,727 South St, Atlanta,GA,30301 +205435,Google Phone,1,600.0,2019-05-22 01:34:00,940 Dogwood St, Portland,OR,97035 +205435,USB-C Charging Cable,1,11.95,2019-05-22 01:34:00,940 Dogwood St, Portland,OR,97035 +205436,USB-C Charging Cable,1,11.95,2019-05-16 21:03:00,59 River St, Boston,MA,02215 +205437,Lightning Charging Cable,1,14.95,2019-05-01 15:48:00,923 6th St, Los Angeles,CA,90001 +205438,AAA Batteries (4-pack),1,2.99,2019-05-15 09:31:00,966 Cedar St, Boston,MA,02215 +205439,iPhone,1,700.0,2019-05-24 21:23:00,491 Lincoln St, Portland,ME,04101 +205440,27in FHD Monitor,1,149.99,2019-05-04 15:16:00,875 Jefferson St, Boston,MA,02215 +205441,Apple Airpods Headphones,1,150.0,2019-05-07 22:01:00,835 Willow St, Boston,MA,02215 +205442,AAA Batteries (4-pack),1,2.99,2019-05-14 10:09:00,97 Pine St, Dallas,TX,75001 +205443,Google Phone,1,600.0,2019-05-30 13:30:00,644 Spruce St, Austin,TX,73301 +205444,iPhone,1,700.0,2019-05-17 01:05:00,431 11th St, Austin,TX,73301 +205445,Lightning Charging Cable,1,14.95,2019-05-07 10:00:00,437 7th St, San Francisco,CA,94016 +205446,AA Batteries (4-pack),1,3.84,2019-05-11 12:49:00,508 Cherry St, Seattle,WA,98101 +205447,iPhone,1,700.0,2019-05-18 14:43:00,788 Washington St, New York City,NY,10001 +205448,AAA Batteries (4-pack),1,2.99,2019-05-19 19:28:00,442 Washington St, New York City,NY,10001 +205449,Wired Headphones,1,11.99,2019-05-23 17:01:00,442 Center St, Los Angeles,CA,90001 +205450,ThinkPad Laptop,1,999.99,2019-05-05 19:48:00,580 Wilson St, New York City,NY,10001 +205451,Lightning Charging Cable,1,14.95,2019-05-22 14:45:00,420 Elm St, Portland,OR,97035 +205452,Flatscreen TV,1,300.0,2019-05-17 13:41:00,871 Spruce St, Portland,OR,97035 +205453,Bose SoundSport Headphones,1,99.99,2019-05-13 19:13:00,335 Johnson St, Boston,MA,02215 +205454,Wired Headphones,1,11.99,2019-05-15 13:13:00,811 River St, Los Angeles,CA,90001 +205455,LG Washing Machine,1,600.0,2019-05-31 19:42:00,383 Meadow St, Dallas,TX,75001 +205456,Flatscreen TV,1,300.0,2019-05-06 22:23:00,46 10th St, San Francisco,CA,94016 +205457,AA Batteries (4-pack),1,3.84,2019-05-09 17:35:00,305 Washington St, San Francisco,CA,94016 +205458,ThinkPad Laptop,1,999.99,2019-05-23 14:15:00,742 4th St, San Francisco,CA,94016 +205459,Apple Airpods Headphones,1,150.0,2019-05-06 16:14:00,35 7th St, Portland,ME,04101 +205460,Apple Airpods Headphones,1,150.0,2019-05-22 11:54:00,976 9th St, Portland,OR,97035 +205461,Lightning Charging Cable,1,14.95,2019-05-07 21:17:00,144 Cherry St, San Francisco,CA,94016 +205462,AA Batteries (4-pack),1,3.84,2019-05-26 22:27:00,702 Highland St, New York City,NY,10001 +205463,AAA Batteries (4-pack),1,2.99,2019-05-08 21:17:00,320 Lake St, Dallas,TX,75001 +205464,Google Phone,1,600.0,2019-05-19 22:47:00,871 12th St, New York City,NY,10001 +205465,USB-C Charging Cable,1,11.95,2019-05-10 11:35:00,315 Washington St, Los Angeles,CA,90001 +205466,Bose SoundSport Headphones,1,99.99,2019-05-11 19:54:00,238 Hickory St, Dallas,TX,75001 +205467,AAA Batteries (4-pack),2,2.99,2019-05-24 12:33:00,705 Cedar St, Atlanta,GA,30301 +205468,Bose SoundSport Headphones,1,99.99,2019-05-10 15:29:00,252 Jefferson St, San Francisco,CA,94016 +205469,Lightning Charging Cable,1,14.95,2019-05-28 03:40:00,458 Main St, New York City,NY,10001 +205470,AAA Batteries (4-pack),4,2.99,2019-05-20 09:25:00,447 12th St, Dallas,TX,75001 +205471,Bose SoundSport Headphones,1,99.99,2019-05-10 10:45:00,667 Park St, San Francisco,CA,94016 +205472,Bose SoundSport Headphones,1,99.99,2019-05-13 21:16:00,542 River St, San Francisco,CA,94016 +205473,27in FHD Monitor,1,149.99,2019-05-30 08:59:00,317 Church St, Los Angeles,CA,90001 +205474,Bose SoundSport Headphones,1,99.99,2019-05-30 21:32:00,456 North St, Austin,TX,73301 +205475,Bose SoundSport Headphones,1,99.99,2019-05-18 21:16:00,427 Lincoln St, Los Angeles,CA,90001 +205476,USB-C Charging Cable,1,11.95,2019-05-04 21:09:00,781 Main St, Dallas,TX,75001 +205477,Bose SoundSport Headphones,1,99.99,2019-05-12 10:18:00,195 River St, Boston,MA,02215 +205478,Vareebadd Phone,1,400.0,2019-05-24 13:42:00,469 11th St, Los Angeles,CA,90001 +205479,Lightning Charging Cable,2,14.95,2019-05-05 10:51:00,640 Adams St, Los Angeles,CA,90001 +205480,AAA Batteries (4-pack),1,2.99,2019-05-26 23:05:00,774 1st St, Portland,OR,97035 +205481,Apple Airpods Headphones,1,150.0,2019-05-25 13:08:00,388 Washington St, San Francisco,CA,94016 +205482,34in Ultrawide Monitor,1,379.99,2019-05-06 22:50:00,500 10th St, San Francisco,CA,94016 +205483,Bose SoundSport Headphones,1,99.99,2019-05-23 11:48:00,963 1st St, Portland,OR,97035 +205484,27in FHD Monitor,1,149.99,2019-05-11 12:09:00,967 Cedar St, New York City,NY,10001 +205485,Lightning Charging Cable,1,14.95,2019-05-12 12:01:00,346 2nd St, Seattle,WA,98101 +205486,AA Batteries (4-pack),1,3.84,2019-05-25 12:01:00,488 4th St, New York City,NY,10001 +205487,AAA Batteries (4-pack),1,2.99,2019-05-26 16:01:00,794 Spruce St, Seattle,WA,98101 +205488,AA Batteries (4-pack),2,3.84,2019-05-19 12:07:00,892 1st St, Dallas,TX,75001 +205489,iPhone,1,700.0,2019-05-25 12:49:00,199 Lincoln St, Los Angeles,CA,90001 +205490,34in Ultrawide Monitor,1,379.99,2019-05-24 14:40:00,967 South St, New York City,NY,10001 +205491,Apple Airpods Headphones,1,150.0,2019-05-15 13:23:00,791 14th St, Los Angeles,CA,90001 +205491,Flatscreen TV,1,300.0,2019-05-15 13:23:00,791 14th St, Los Angeles,CA,90001 +205492,AAA Batteries (4-pack),1,2.99,2019-05-26 07:47:00,189 Ridge St, New York City,NY,10001 +205493,USB-C Charging Cable,1,11.95,2019-05-08 20:06:00,647 5th St, Portland,OR,97035 +205494,AA Batteries (4-pack),2,3.84,2019-05-20 15:10:00,355 13th St, San Francisco,CA,94016 +205495,AA Batteries (4-pack),1,3.84,2019-05-04 10:48:00,514 Maple St, Los Angeles,CA,90001 +205496,USB-C Charging Cable,1,11.95,2019-05-16 21:21:00,489 1st St, San Francisco,CA,94016 +205497,USB-C Charging Cable,1,11.95,2019-05-17 10:15:00,870 Elm St, Austin,TX,73301 +205498,USB-C Charging Cable,1,11.95,2019-05-04 11:29:00,916 7th St, Boston,MA,02215 +205499,Flatscreen TV,1,300.0,2019-05-05 11:40:00,609 Elm St, Los Angeles,CA,90001 +205500,AAA Batteries (4-pack),2,2.99,2019-05-03 15:23:00,916 Johnson St, Portland,OR,97035 +205501,AAA Batteries (4-pack),2,2.99,2019-05-11 09:54:00,928 Madison St, New York City,NY,10001 +205502,AAA Batteries (4-pack),3,2.99,2019-05-20 22:33:00,3 13th St, San Francisco,CA,94016 +205503,iPhone,1,700.0,2019-05-25 16:15:00,990 West St, Los Angeles,CA,90001 +205503,Apple Airpods Headphones,1,150.0,2019-05-25 16:15:00,990 West St, Los Angeles,CA,90001 +205504,AA Batteries (4-pack),1,3.84,2019-05-30 17:50:00,722 Center St, Atlanta,GA,30301 +205505,ThinkPad Laptop,1,999.99,2019-05-02 20:34:00,202 14th St, New York City,NY,10001 +205506,iPhone,1,700.0,2019-05-16 09:20:00,680 13th St, San Francisco,CA,94016 +205507,27in FHD Monitor,1,149.99,2019-05-12 04:44:00,198 Willow St, Boston,MA,02215 +205508,AAA Batteries (4-pack),1,2.99,2019-05-29 16:48:00,156 River St, Portland,OR,97035 +205509,AA Batteries (4-pack),1,3.84,2019-05-06 22:44:00,595 Willow St, San Francisco,CA,94016 +205510,USB-C Charging Cable,1,11.95,2019-05-05 19:13:00,151 12th St, Atlanta,GA,30301 +205511,Macbook Pro Laptop,1,1700.0,2019-05-04 10:37:00,100 Lincoln St, Los Angeles,CA,90001 +205512,AA Batteries (4-pack),1,3.84,2019-05-07 08:53:00,862 Walnut St, Los Angeles,CA,90001 +205513,AAA Batteries (4-pack),1,2.99,2019-05-31 09:33:00,340 5th St, Seattle,WA,98101 +205514,USB-C Charging Cable,1,11.95,2019-05-12 12:05:00,499 5th St, San Francisco,CA,94016 +205515,AAA Batteries (4-pack),2,2.99,2019-05-05 11:40:00,307 13th St, San Francisco,CA,94016 +205516,USB-C Charging Cable,1,11.95,2019-05-05 07:44:00,384 10th St, New York City,NY,10001 +205517,AA Batteries (4-pack),1,3.84,2019-05-16 20:08:00,231 Elm St, Dallas,TX,75001 +205518,27in FHD Monitor,1,149.99,2019-05-20 21:56:00,809 Willow St, San Francisco,CA,94016 +205519,AA Batteries (4-pack),1,3.84,2019-05-27 09:59:00,941 Lake St, New York City,NY,10001 +205520,20in Monitor,1,109.99,2019-05-05 18:38:00,417 1st St, Boston,MA,02215 +205521,AA Batteries (4-pack),1,3.84,2019-05-09 15:46:00,312 Pine St, San Francisco,CA,94016 +205522,Google Phone,1,600.0,2019-05-27 02:29:00,128 8th St, Dallas,TX,75001 +205523,AAA Batteries (4-pack),2,2.99,2019-05-22 20:05:00,964 River St, Boston,MA,02215 +205524,Lightning Charging Cable,1,14.95,2019-05-08 15:38:00,226 North St, San Francisco,CA,94016 +205525,AA Batteries (4-pack),1,3.84,2019-05-22 12:36:00,963 7th St, New York City,NY,10001 +205526,27in FHD Monitor,1,149.99,2019-05-26 18:57:00,676 Walnut St, Seattle,WA,98101 +205527,34in Ultrawide Monitor,1,379.99,2019-05-26 11:09:00,104 Adams St, Seattle,WA,98101 +205528,USB-C Charging Cable,1,11.95,2019-05-24 13:15:00,178 Highland St, Los Angeles,CA,90001 +205529,Vareebadd Phone,1,400.0,2019-05-20 09:00:00,822 Wilson St, San Francisco,CA,94016 +205529,USB-C Charging Cable,1,11.95,2019-05-20 09:00:00,822 Wilson St, San Francisco,CA,94016 +205529,Wired Headphones,1,11.99,2019-05-20 09:00:00,822 Wilson St, San Francisco,CA,94016 +205530,Macbook Pro Laptop,1,1700.0,2019-05-03 17:58:00,853 1st St, San Francisco,CA,94016 +205531,Bose SoundSport Headphones,1,99.99,2019-05-11 02:13:00,668 Hill St, San Francisco,CA,94016 +205532,34in Ultrawide Monitor,1,379.99,2019-05-21 13:09:00,623 12th St, Austin,TX,73301 +205532,Lightning Charging Cable,1,14.95,2019-05-21 13:09:00,623 12th St, Austin,TX,73301 +205533,ThinkPad Laptop,1,999.99,2019-05-11 10:27:00,842 Lakeview St, Los Angeles,CA,90001 +205534,Bose SoundSport Headphones,1,99.99,2019-05-08 16:24:00,995 River St, Boston,MA,02215 +205535,Lightning Charging Cable,1,14.95,2019-05-02 13:31:00,810 Dogwood St, San Francisco,CA,94016 +205536,Bose SoundSport Headphones,1,99.99,2019-05-29 17:44:00,441 14th St, New York City,NY,10001 +205537,Wired Headphones,2,11.99,2019-05-08 14:39:00,778 Park St, San Francisco,CA,94016 +205538,AAA Batteries (4-pack),1,2.99,2019-05-15 18:20:00,489 South St, New York City,NY,10001 +205539,AAA Batteries (4-pack),2,2.99,2019-05-28 10:36:00,499 Johnson St, San Francisco,CA,94016 +205540,AAA Batteries (4-pack),1,2.99,2019-05-05 18:25:00,866 Maple St, Los Angeles,CA,90001 +205541,20in Monitor,1,109.99,2019-05-10 20:58:00,490 Spruce St, Dallas,TX,75001 +205542,USB-C Charging Cable,1,11.95,2019-05-20 23:16:00,630 Cherry St, Boston,MA,02215 +205543,AA Batteries (4-pack),1,3.84,2019-05-01 22:45:00,292 Chestnut St, San Francisco,CA,94016 +205544,20in Monitor,1,109.99,2019-05-19 00:30:00,219 Johnson St, Boston,MA,02215 +205545,Apple Airpods Headphones,1,150.0,2019-05-16 17:29:00,71 Chestnut St, Los Angeles,CA,90001 +205546,34in Ultrawide Monitor,1,379.99,2019-05-10 10:00:00,283 Church St, New York City,NY,10001 +205547,20in Monitor,1,109.99,2019-05-07 12:07:00,760 Washington St, Atlanta,GA,30301 +205548,AAA Batteries (4-pack),3,2.99,2019-05-05 20:51:00,710 7th St, San Francisco,CA,94016 +205549,AAA Batteries (4-pack),1,2.99,2019-05-27 19:13:00,74 South St, Portland,OR,97035 +205550,AAA Batteries (4-pack),2,2.99,2019-05-28 19:05:00,258 5th St, Atlanta,GA,30301 +205551,Lightning Charging Cable,1,14.95,2019-05-14 22:01:00,80 North St, New York City,NY,10001 +205552,AAA Batteries (4-pack),4,2.99,2019-05-11 11:07:00,1 Church St, San Francisco,CA,94016 +205553,Apple Airpods Headphones,1,150.0,2019-05-04 12:34:00,815 13th St, San Francisco,CA,94016 +205554,Apple Airpods Headphones,1,150.0,2019-05-19 18:06:00,278 Lake St, Boston,MA,02215 +205555,AA Batteries (4-pack),1,3.84,2019-05-11 13:14:00,535 Adams St, New York City,NY,10001 +205556,Macbook Pro Laptop,1,1700.0,2019-05-17 22:18:00,799 Johnson St, Los Angeles,CA,90001 +205557,Bose SoundSport Headphones,1,99.99,2019-05-24 19:23:00,902 North St, Seattle,WA,98101 +205558,Lightning Charging Cable,1,14.95,2019-05-05 01:16:00,788 4th St, San Francisco,CA,94016 +205559,27in FHD Monitor,1,149.99,2019-05-11 11:08:00,433 12th St, Portland,OR,97035 +205560,USB-C Charging Cable,1,11.95,2019-05-29 13:20:00,764 Jackson St, Dallas,TX,75001 +205561,AAA Batteries (4-pack),1,2.99,2019-05-29 00:10:00,817 Madison St, Dallas,TX,75001 +205562,Google Phone,1,600.0,2019-05-20 08:46:00,730 Highland St, San Francisco,CA,94016 +205563,34in Ultrawide Monitor,1,379.99,2019-05-29 10:59:00,758 1st St, Los Angeles,CA,90001 +205564,Apple Airpods Headphones,1,150.0,2019-05-21 17:23:00,456 Meadow St, Portland,OR,97035 +205565,AAA Batteries (4-pack),3,2.99,2019-05-24 12:53:00,994 5th St, Austin,TX,73301 +205566,AA Batteries (4-pack),1,3.84,2019-05-23 21:37:00,279 Chestnut St, Boston,MA,02215 +205567,27in FHD Monitor,1,149.99,2019-05-12 14:01:00,434 9th St, Seattle,WA,98101 +205568,AAA Batteries (4-pack),1,2.99,2019-05-30 12:03:00,46 Cherry St, Austin,TX,73301 +205569,AA Batteries (4-pack),1,3.84,2019-05-07 02:24:00,945 Wilson St, San Francisco,CA,94016 +205570,Wired Headphones,1,11.99,2019-05-14 20:43:00,149 7th St, New York City,NY,10001 +205571,AA Batteries (4-pack),1,3.84,2019-05-11 12:04:00,102 14th St, Los Angeles,CA,90001 +205572,Macbook Pro Laptop,1,1700.0,2019-05-03 15:04:00,979 Maple St, Austin,TX,73301 +205573,USB-C Charging Cable,3,11.95,2019-05-25 19:08:00,541 Forest St, New York City,NY,10001 +205574,Apple Airpods Headphones,1,150.0,2019-05-15 22:57:00,223 Lincoln St, San Francisco,CA,94016 +205575,Flatscreen TV,1,300.0,2019-05-13 11:48:00,610 Meadow St, Austin,TX,73301 +205576,Vareebadd Phone,1,400.0,2019-05-26 07:49:00,194 Walnut St, Atlanta,GA,30301 +205577,AA Batteries (4-pack),1,3.84,2019-05-31 07:33:00,440 2nd St, Boston,MA,02215 +205578,ThinkPad Laptop,1,999.99,2019-05-06 13:18:00,162 Adams St, Boston,MA,02215 +205579,AA Batteries (4-pack),1,3.84,2019-05-16 06:17:00,778 Walnut St, New York City,NY,10001 +205580,Apple Airpods Headphones,1,150.0,2019-05-07 09:49:00,866 2nd St, Boston,MA,02215 +205581,Bose SoundSport Headphones,1,99.99,2019-05-30 20:16:00,745 Ridge St, Los Angeles,CA,90001 +205582,Wired Headphones,1,11.99,2019-05-29 09:35:00,48 Park St, Los Angeles,CA,90001 +205582,iPhone,1,700.0,2019-05-29 09:35:00,48 Park St, Los Angeles,CA,90001 +205583,AAA Batteries (4-pack),1,2.99,2019-05-21 05:14:00,961 Park St, Los Angeles,CA,90001 +205584,Bose SoundSport Headphones,1,99.99,2019-05-05 14:34:00,642 Spruce St, Atlanta,GA,30301 +205585,ThinkPad Laptop,1,999.99,2019-05-12 11:38:00,325 Cedar St, Los Angeles,CA,90001 +205586,34in Ultrawide Monitor,1,379.99,2019-05-18 22:30:00,47 6th St, Boston,MA,02215 +205587,Flatscreen TV,1,300.0,2019-05-26 17:39:00,138 Madison St, Los Angeles,CA,90001 +205588,Apple Airpods Headphones,1,150.0,2019-05-15 15:24:00,604 North St, Seattle,WA,98101 +205589,Google Phone,1,600.0,2019-05-28 08:45:00,770 Washington St, Los Angeles,CA,90001 +205589,USB-C Charging Cable,1,11.95,2019-05-28 08:45:00,770 Washington St, Los Angeles,CA,90001 +205590,Apple Airpods Headphones,1,150.0,2019-05-14 19:21:00,704 8th St, New York City,NY,10001 +205591,Lightning Charging Cable,1,14.95,2019-05-30 11:04:00,29 Forest St, Atlanta,GA,30301 +205592,27in FHD Monitor,1,149.99,2019-05-02 13:44:00,172 Jackson St, San Francisco,CA,94016 +205593,iPhone,1,700.0,2019-05-10 10:20:00,892 14th St, Dallas,TX,75001 +205594,AA Batteries (4-pack),1,3.84,2019-05-14 17:20:00,819 Meadow St, Los Angeles,CA,90001 +205595,AA Batteries (4-pack),1,3.84,2019-05-12 21:29:00,529 Sunset St, San Francisco,CA,94016 +205596,Wired Headphones,2,11.99,2019-05-21 14:05:00,514 Elm St, Dallas,TX,75001 +205597,AAA Batteries (4-pack),1,2.99,2019-05-09 21:34:00,451 9th St, San Francisco,CA,94016 +205598,AA Batteries (4-pack),1,3.84,2019-05-17 18:21:00,326 Walnut St, Seattle,WA,98101 +205599,USB-C Charging Cable,1,11.95,2019-05-05 15:47:00,469 Cherry St, San Francisco,CA,94016 +205600,AA Batteries (4-pack),1,3.84,2019-05-22 12:05:00,416 Highland St, Boston,MA,02215 +205601,27in FHD Monitor,1,149.99,2019-05-21 11:33:00,538 Pine St, San Francisco,CA,94016 +205602,iPhone,1,700.0,2019-05-13 11:55:00,742 West St, Boston,MA,02215 +205603,AA Batteries (4-pack),1,3.84,2019-05-08 15:41:00,335 Adams St, San Francisco,CA,94016 +205604,Wired Headphones,1,11.99,2019-05-12 09:20:00,806 Lincoln St, Austin,TX,73301 +205605,27in FHD Monitor,1,149.99,2019-05-31 14:11:00,703 7th St, Boston,MA,02215 +205606,20in Monitor,1,109.99,2019-05-16 18:08:00,889 Adams St, Boston,MA,02215 +205607,AA Batteries (4-pack),2,3.84,2019-05-25 21:52:00,660 Forest St, San Francisco,CA,94016 +205607,AA Batteries (4-pack),1,3.84,2019-05-25 21:52:00,660 Forest St, San Francisco,CA,94016 +205608,AAA Batteries (4-pack),2,2.99,2019-05-13 11:46:00,907 11th St, Los Angeles,CA,90001 +205609,Bose SoundSport Headphones,1,99.99,2019-05-15 14:55:00,615 Willow St, San Francisco,CA,94016 +205610,USB-C Charging Cable,1,11.95,2019-05-14 09:06:00,626 6th St, Boston,MA,02215 +205611,Bose SoundSport Headphones,1,99.99,2019-05-01 23:03:00,708 Johnson St, Boston,MA,02215 +205612,AA Batteries (4-pack),1,3.84,2019-05-20 14:05:00,24 Walnut St, San Francisco,CA,94016 +205613,Lightning Charging Cable,1,14.95,2019-05-24 20:58:00,351 Walnut St, Boston,MA,02215 +205614,LG Washing Machine,1,600.0,2019-05-04 00:53:00,748 North St, San Francisco,CA,94016 +205615,AA Batteries (4-pack),1,3.84,2019-05-19 16:22:00,494 7th St, Seattle,WA,98101 +205616,AA Batteries (4-pack),3,3.84,2019-05-13 11:38:00,16 Madison St, San Francisco,CA,94016 +205617,iPhone,1,700.0,2019-05-30 15:35:00,154 Hill St, Boston,MA,02215 +205618,Bose SoundSport Headphones,1,99.99,2019-05-16 18:47:00,907 Center St, San Francisco,CA,94016 +205619,34in Ultrawide Monitor,1,379.99,2019-06-01 03:22:00,627 Cherry St, New York City,NY,10001 +205620,Lightning Charging Cable,1,14.95,2019-05-01 20:55:00,670 Madison St, Los Angeles,CA,90001 +205621,Bose SoundSport Headphones,1,99.99,2019-05-26 17:52:00,849 Center St, Atlanta,GA,30301 +205622,Apple Airpods Headphones,1,150.0,2019-05-16 14:52:00,446 Adams St, Boston,MA,02215 +205623,AA Batteries (4-pack),1,3.84,2019-05-01 14:41:00,402 Forest St, New York City,NY,10001 +205624,LG Washing Machine,1,600.0,2019-05-03 21:07:00,580 Wilson St, San Francisco,CA,94016 +205625,AA Batteries (4-pack),2,3.84,2019-05-02 15:01:00,854 Park St, Seattle,WA,98101 +205626,Apple Airpods Headphones,1,150.0,2019-05-02 13:57:00,83 Lakeview St, Boston,MA,02215 +205627,Bose SoundSport Headphones,1,99.99,2019-05-10 14:28:00,403 Forest St, Dallas,TX,75001 +205628,Wired Headphones,1,11.99,2019-05-12 10:59:00,57 8th St, Boston,MA,02215 +205629,AAA Batteries (4-pack),1,2.99,2019-05-21 20:00:00,710 South St, Portland,OR,97035 +205630,ThinkPad Laptop,1,999.99,2019-05-14 22:54:00,332 North St, Atlanta,GA,30301 +205631,34in Ultrawide Monitor,1,379.99,2019-05-01 12:04:00,267 Center St, Dallas,TX,75001 +205632,USB-C Charging Cable,1,11.95,2019-05-28 21:28:00,914 Park St, New York City,NY,10001 +205633,Google Phone,1,600.0,2019-05-09 17:32:00,890 Meadow St, Atlanta,GA,30301 +205634,ThinkPad Laptop,1,999.99,2019-05-22 04:37:00,874 Main St, San Francisco,CA,94016 +205635,ThinkPad Laptop,1,999.99,2019-05-22 17:28:00,522 Sunset St, Boston,MA,02215 +205636,Apple Airpods Headphones,1,150.0,2019-05-14 23:48:00,522 Jackson St, Los Angeles,CA,90001 +205637,AA Batteries (4-pack),1,3.84,2019-05-29 10:55:00,211 Ridge St, Seattle,WA,98101 +205638,Lightning Charging Cable,1,14.95,2019-05-17 01:10:00,68 Chestnut St, New York City,NY,10001 +205639,Lightning Charging Cable,1,14.95,2019-05-18 13:43:00,893 Ridge St, Atlanta,GA,30301 +205640,AA Batteries (4-pack),1,3.84,2019-05-05 14:36:00,373 Cedar St, Dallas,TX,75001 +205641,Macbook Pro Laptop,1,1700.0,2019-05-05 22:04:00,361 Dogwood St, Boston,MA,02215 +205642,Bose SoundSport Headphones,1,99.99,2019-05-11 08:37:00,889 14th St, Los Angeles,CA,90001 +205643,USB-C Charging Cable,1,11.95,2019-05-19 20:32:00,278 5th St, San Francisco,CA,94016 +205644,Macbook Pro Laptop,1,1700.0,2019-05-01 15:48:00,993 Cedar St, San Francisco,CA,94016 +205645,Bose SoundSport Headphones,1,99.99,2019-05-16 14:56:00,677 10th St, New York City,NY,10001 +205646,USB-C Charging Cable,1,11.95,2019-05-16 17:15:00,58 Maple St, Dallas,TX,75001 +205647,Wired Headphones,1,11.99,2019-05-22 00:23:00,575 Johnson St, New York City,NY,10001 +205648,Apple Airpods Headphones,1,150.0,2019-05-06 20:16:00,335 Lake St, Atlanta,GA,30301 +205649,Vareebadd Phone,1,400.0,2019-05-13 18:51:00,189 Lincoln St, Boston,MA,02215 +205650,Wired Headphones,1,11.99,2019-05-12 13:09:00,871 Madison St, San Francisco,CA,94016 +205651,USB-C Charging Cable,1,11.95,2019-05-05 12:58:00,846 Park St, San Francisco,CA,94016 +205652,Apple Airpods Headphones,1,150.0,2019-05-16 11:48:00,950 4th St, New York City,NY,10001 +205653,USB-C Charging Cable,1,11.95,2019-05-03 10:06:00,405 9th St, San Francisco,CA,94016 +205654,Lightning Charging Cable,1,14.95,2019-05-06 20:50:00,452 River St, San Francisco,CA,94016 +205655,27in 4K Gaming Monitor,1,389.99,2019-05-19 09:34:00,504 Ridge St, Dallas,TX,75001 +205656,AAA Batteries (4-pack),1,2.99,2019-05-24 17:54:00,86 1st St, Portland,OR,97035 +205657,34in Ultrawide Monitor,1,379.99,2019-05-20 19:42:00,306 Sunset St, San Francisco,CA,94016 +205658,Bose SoundSport Headphones,1,99.99,2019-05-25 20:29:00,683 Jackson St, San Francisco,CA,94016 +205659,Lightning Charging Cable,1,14.95,2019-05-18 14:41:00,466 14th St, San Francisco,CA,94016 +205660,34in Ultrawide Monitor,1,379.99,2019-05-23 11:27:00,574 Ridge St, Austin,TX,73301 +205661,27in FHD Monitor,1,149.99,2019-05-09 09:05:00,814 Chestnut St, Los Angeles,CA,90001 +205662,34in Ultrawide Monitor,1,379.99,2019-05-22 19:12:00,647 Main St, Los Angeles,CA,90001 +205663,Macbook Pro Laptop,1,1700.0,2019-05-27 18:02:00,801 West St, San Francisco,CA,94016 +205664,Bose SoundSport Headphones,1,99.99,2019-05-02 20:11:00,217 2nd St, New York City,NY,10001 +205665,27in 4K Gaming Monitor,1,389.99,2019-05-13 09:58:00,976 Center St, Los Angeles,CA,90001 +205666,Bose SoundSport Headphones,1,99.99,2019-05-12 11:17:00,488 Willow St, San Francisco,CA,94016 +205667,27in 4K Gaming Monitor,1,389.99,2019-05-26 20:11:00,164 Lake St, Los Angeles,CA,90001 +205667,USB-C Charging Cable,1,11.95,2019-05-26 20:11:00,164 Lake St, Los Angeles,CA,90001 +205668,USB-C Charging Cable,1,11.95,2019-05-08 21:27:00,763 10th St, Portland,ME,04101 +205669,AA Batteries (4-pack),1,3.84,2019-05-16 08:28:00,946 5th St, San Francisco,CA,94016 +205670,AA Batteries (4-pack),1,3.84,2019-05-07 10:30:00,518 Ridge St, Seattle,WA,98101 +205671,Lightning Charging Cable,1,14.95,2019-05-24 23:14:00,981 2nd St, Atlanta,GA,30301 +205672,27in 4K Gaming Monitor,1,389.99,2019-05-12 01:20:00,923 Wilson St, Dallas,TX,75001 +205673,AA Batteries (4-pack),2,3.84,2019-05-18 10:57:00,42 North St, New York City,NY,10001 +205674,Lightning Charging Cable,1,14.95,2019-05-02 17:09:00,598 Church St, Los Angeles,CA,90001 +205675,Lightning Charging Cable,1,14.95,2019-05-05 13:20:00,279 Chestnut St, Dallas,TX,75001 +205676,Flatscreen TV,1,300.0,2019-05-22 16:32:00,239 12th St, Los Angeles,CA,90001 +205677,LG Dryer,1,600.0,2019-05-18 19:21:00,800 Jefferson St, Atlanta,GA,30301 +205678,AA Batteries (4-pack),3,3.84,2019-05-03 22:02:00,593 14th St, Atlanta,GA,30301 +205678,iPhone,1,700.0,2019-05-03 22:02:00,593 14th St, Atlanta,GA,30301 +205679,AA Batteries (4-pack),1,3.84,2019-05-21 13:18:00,576 Ridge St, San Francisco,CA,94016 +205680,Bose SoundSport Headphones,1,99.99,2019-05-27 10:40:00,869 Jefferson St, Los Angeles,CA,90001 +205681,Google Phone,1,600.0,2019-05-24 07:10:00,948 Hill St, Austin,TX,73301 +205682,Flatscreen TV,1,300.0,2019-05-28 20:08:00,806 5th St, Atlanta,GA,30301 +205683,AA Batteries (4-pack),1,3.84,2019-05-22 21:58:00,937 Hickory St, San Francisco,CA,94016 +205684,Google Phone,1,600.0,2019-05-05 18:13:00,399 River St, San Francisco,CA,94016 +205685,Vareebadd Phone,1,400.0,2019-05-26 00:14:00,932 6th St, Los Angeles,CA,90001 +205686,27in 4K Gaming Monitor,1,389.99,2019-05-12 14:43:00,488 Maple St, San Francisco,CA,94016 +205687,Bose SoundSport Headphones,1,99.99,2019-05-23 12:34:00,607 Adams St, Dallas,TX,75001 +205688,Macbook Pro Laptop,1,1700.0,2019-05-22 08:15:00,563 1st St, New York City,NY,10001 +205689,Lightning Charging Cable,1,14.95,2019-05-09 17:28:00,535 Sunset St, New York City,NY,10001 +205690,Wired Headphones,1,11.99,2019-05-05 20:05:00,203 Maple St, New York City,NY,10001 +205691,AA Batteries (4-pack),2,3.84,2019-05-19 20:25:00,322 Park St, Atlanta,GA,30301 +205692,AA Batteries (4-pack),3,3.84,2019-05-07 15:49:00,65 14th St, Portland,OR,97035 +205693,USB-C Charging Cable,1,11.95,2019-05-22 09:22:00,424 8th St, Seattle,WA,98101 +205694,AAA Batteries (4-pack),1,2.99,2019-05-09 01:27:00,788 4th St, Los Angeles,CA,90001 +205695,Apple Airpods Headphones,1,150.0,2019-05-11 21:19:00,997 5th St, Los Angeles,CA,90001 +205696,Bose SoundSport Headphones,1,99.99,2019-05-14 18:56:00,474 Lincoln St, Dallas,TX,75001 +205697,AA Batteries (4-pack),1,3.84,2019-05-28 11:03:00,457 Lake St, Portland,OR,97035 +205698,USB-C Charging Cable,1,11.95,2019-05-08 15:05:00,981 Forest St, San Francisco,CA,94016 +205699,AA Batteries (4-pack),1,3.84,2019-05-25 13:55:00,178 North St, Los Angeles,CA,90001 +205700,AAA Batteries (4-pack),3,2.99,2019-05-10 20:31:00,413 Hickory St, Los Angeles,CA,90001 +205701,Wired Headphones,1,11.99,2019-05-23 19:33:00,375 South St, San Francisco,CA,94016 +205702,Apple Airpods Headphones,1,150.0,2019-05-03 18:14:00,212 North St, Los Angeles,CA,90001 +205702,Wired Headphones,1,11.99,2019-05-03 18:14:00,212 North St, Los Angeles,CA,90001 +205703,AA Batteries (4-pack),1,3.84,2019-05-25 16:32:00,858 10th St, San Francisco,CA,94016 +205704,ThinkPad Laptop,1,999.99,2019-05-01 18:04:00,70 Elm St, San Francisco,CA,94016 +205704,AAA Batteries (4-pack),1,2.99,2019-05-01 18:04:00,70 Elm St, San Francisco,CA,94016 +205705,iPhone,1,700.0,2019-05-16 17:55:00,160 Cherry St, Seattle,WA,98101 +205705,Lightning Charging Cable,1,14.95,2019-05-16 17:55:00,160 Cherry St, Seattle,WA,98101 +205706,Macbook Pro Laptop,1,1700.0,2019-05-28 18:53:00,588 Center St, New York City,NY,10001 +205707,Bose SoundSport Headphones,1,99.99,2019-05-31 16:46:00,518 12th St, San Francisco,CA,94016 +205708,Lightning Charging Cable,1,14.95,2019-05-23 07:52:00,584 Center St, Austin,TX,73301 +205709,20in Monitor,1,109.99,2019-05-18 21:25:00,978 Washington St, Los Angeles,CA,90001 +205710,Lightning Charging Cable,1,14.95,2019-05-25 09:51:00,123 Madison St, Los Angeles,CA,90001 +205711,AAA Batteries (4-pack),1,2.99,2019-05-27 12:22:00,56 Adams St, Boston,MA,02215 +205712,Google Phone,1,600.0,2019-05-27 13:53:00,286 11th St, Austin,TX,73301 +205712,USB-C Charging Cable,1,11.95,2019-05-27 13:53:00,286 11th St, Austin,TX,73301 +205713,Wired Headphones,1,11.99,2019-05-04 23:17:00,251 Hill St, Atlanta,GA,30301 +205714,Bose SoundSport Headphones,1,99.99,2019-05-14 18:56:00,297 Adams St, Seattle,WA,98101 +205715,20in Monitor,1,109.99,2019-05-19 12:38:00,11 Maple St, New York City,NY,10001 +205716,Bose SoundSport Headphones,1,99.99,2019-05-29 11:34:00,316 4th St, Los Angeles,CA,90001 +205717,USB-C Charging Cable,1,11.95,2019-05-11 08:15:00,214 4th St, Los Angeles,CA,90001 +205718,AAA Batteries (4-pack),4,2.99,2019-05-28 11:42:00,773 Cherry St, New York City,NY,10001 +205719,AAA Batteries (4-pack),2,2.99,2019-05-01 21:06:00,254 Main St, San Francisco,CA,94016 +205720,Lightning Charging Cable,1,14.95,2019-05-04 12:01:00,893 14th St, San Francisco,CA,94016 +205721,Lightning Charging Cable,1,14.95,2019-05-07 00:54:00,854 11th St, San Francisco,CA,94016 +205722,Lightning Charging Cable,1,14.95,2019-05-12 22:49:00,280 8th St, Los Angeles,CA,90001 +205723,34in Ultrawide Monitor,1,379.99,2019-05-29 08:17:00,467 11th St, New York City,NY,10001 +205724,34in Ultrawide Monitor,1,379.99,2019-05-12 23:42:00,888 10th St, San Francisco,CA,94016 +205725,USB-C Charging Cable,1,11.95,2019-05-24 13:36:00,353 Highland St, Boston,MA,02215 +205726,USB-C Charging Cable,1,11.95,2019-05-27 11:52:00,643 Elm St, San Francisco,CA,94016 +205727,USB-C Charging Cable,1,11.95,2019-05-27 16:11:00,391 Ridge St, San Francisco,CA,94016 +205728,Vareebadd Phone,1,400.0,2019-05-22 18:11:00,110 Johnson St, Seattle,WA,98101 +205729,Macbook Pro Laptop,1,1700.0,2019-05-18 11:47:00,652 Hill St, San Francisco,CA,94016 +205730,Apple Airpods Headphones,1,150.0,2019-05-31 18:45:00,288 Lincoln St, Austin,TX,73301 +205731,AAA Batteries (4-pack),2,2.99,2019-05-07 15:18:00,911 12th St, Los Angeles,CA,90001 +205732,20in Monitor,1,109.99,2019-05-27 18:08:00,276 North St, New York City,NY,10001 +205733,Google Phone,1,600.0,2019-05-08 14:14:00,480 Lincoln St, Portland,ME,04101 +205734,Wired Headphones,1,11.99,2019-05-19 21:44:00,484 5th St, Los Angeles,CA,90001 +205735,USB-C Charging Cable,1,11.95,2019-05-17 19:11:00,577 12th St, Austin,TX,73301 +205736,AA Batteries (4-pack),1,3.84,2019-05-26 12:06:00,680 Pine St, San Francisco,CA,94016 +205737,Apple Airpods Headphones,1,150.0,2019-05-14 10:31:00,646 Meadow St, Dallas,TX,75001 +205738,Apple Airpods Headphones,1,150.0,2019-05-12 07:01:00,464 Church St, Boston,MA,02215 +205739,Lightning Charging Cable,1,14.95,2019-05-04 16:06:00,522 Cedar St, New York City,NY,10001 +205740,Apple Airpods Headphones,1,150.0,2019-05-04 21:25:00,719 1st St, Boston,MA,02215 +205741,Macbook Pro Laptop,1,1700.0,2019-05-13 16:48:00,863 Hickory St, Dallas,TX,75001 +205742,LG Dryer,1,600.0,2019-05-17 04:38:00,713 South St, Dallas,TX,75001 +205743,27in FHD Monitor,1,149.99,2019-05-18 20:29:00,85 Lincoln St, Atlanta,GA,30301 +205744,AA Batteries (4-pack),1,3.84,2019-05-02 18:26:00,915 7th St, San Francisco,CA,94016 +205745,Lightning Charging Cable,1,14.95,2019-05-16 13:20:00,173 Washington St, Boston,MA,02215 +205746,Bose SoundSport Headphones,1,99.99,2019-05-11 01:13:00,403 12th St, Seattle,WA,98101 +205747,Apple Airpods Headphones,1,150.0,2019-05-12 09:46:00,115 Hickory St, Atlanta,GA,30301 +205748,USB-C Charging Cable,1,11.95,2019-05-26 11:44:00,768 2nd St, San Francisco,CA,94016 +205749,ThinkPad Laptop,1,999.99,2019-05-03 21:03:00,772 Jefferson St, New York City,NY,10001 +205750,AAA Batteries (4-pack),1,2.99,2019-05-04 17:44:00,937 9th St, Los Angeles,CA,90001 +205751,Bose SoundSport Headphones,1,99.99,2019-05-02 18:53:00,649 Church St, Portland,OR,97035 +205752,Wired Headphones,1,11.99,2019-05-10 18:51:00,579 Jackson St, Los Angeles,CA,90001 +205753,AAA Batteries (4-pack),1,2.99,2019-05-16 12:31:00,933 11th St, Boston,MA,02215 +205754,Lightning Charging Cable,1,14.95,2019-05-20 19:12:00,286 8th St, New York City,NY,10001 +205755,USB-C Charging Cable,1,11.95,2019-05-01 12:18:00,464 Hill St, Boston,MA,02215 +205756,Wired Headphones,1,11.99,2019-05-06 21:02:00,871 10th St, Los Angeles,CA,90001 +205757,AAA Batteries (4-pack),2,2.99,2019-05-10 20:17:00,868 Jefferson St, Boston,MA,02215 +205758,20in Monitor,1,109.99,2019-05-12 20:39:00,400 Wilson St, Austin,TX,73301 +205759,Lightning Charging Cable,1,14.95,2019-05-30 09:07:00,124 Forest St, New York City,NY,10001 +205760,Apple Airpods Headphones,1,150.0,2019-05-06 12:33:00,575 Park St, Los Angeles,CA,90001 +205761,AAA Batteries (4-pack),1,2.99,2019-05-17 16:34:00,953 Willow St, Portland,ME,04101 +205762,27in 4K Gaming Monitor,1,389.99,2019-05-23 14:27:00,139 Washington St, San Francisco,CA,94016 +205763,Macbook Pro Laptop,1,1700.0,2019-05-04 09:45:00,346 Center St, San Francisco,CA,94016 +205764,27in FHD Monitor,1,149.99,2019-05-19 16:07:00,863 Chestnut St, Boston,MA,02215 +205765,AA Batteries (4-pack),1,3.84,2019-05-29 17:10:00,656 5th St, Seattle,WA,98101 +205766,Lightning Charging Cable,1,14.95,2019-05-03 20:22:00,462 Church St, Atlanta,GA,30301 +205766,Apple Airpods Headphones,1,150.0,2019-05-03 20:22:00,462 Church St, Atlanta,GA,30301 +205767,Wired Headphones,1,11.99,2019-05-15 23:34:00,852 Sunset St, Los Angeles,CA,90001 +205768,USB-C Charging Cable,1,11.95,2019-05-13 20:04:00,735 Madison St, Portland,OR,97035 +205769,AAA Batteries (4-pack),3,2.99,2019-05-12 00:04:00,688 Sunset St, Boston,MA,02215 +205770,iPhone,1,700.0,2019-05-01 12:22:00,36 River St, New York City,NY,10001 +205770,Wired Headphones,1,11.99,2019-05-01 12:22:00,36 River St, New York City,NY,10001 +205771,Lightning Charging Cable,1,14.95,2019-05-15 16:46:00,425 9th St, Los Angeles,CA,90001 +205772,Bose SoundSport Headphones,1,99.99,2019-05-20 20:50:00,356 Cherry St, Portland,OR,97035 +205773,Apple Airpods Headphones,1,150.0,2019-05-07 21:04:00,196 6th St, Seattle,WA,98101 +205774,USB-C Charging Cable,1,11.95,2019-05-15 08:03:00,558 Hickory St, New York City,NY,10001 +205775,AA Batteries (4-pack),3,3.84,2019-05-30 12:24:00,780 Spruce St, San Francisco,CA,94016 +205776,USB-C Charging Cable,1,11.95,2019-05-10 00:58:00,435 Ridge St, Los Angeles,CA,90001 +205777,AAA Batteries (4-pack),3,2.99,2019-05-25 08:08:00,520 Johnson St, Austin,TX,73301 +205778,Vareebadd Phone,1,400.0,2019-05-09 08:02:00,302 1st St, Boston,MA,02215 +205778,USB-C Charging Cable,1,11.95,2019-05-09 08:02:00,302 1st St, Boston,MA,02215 +205778,Bose SoundSport Headphones,1,99.99,2019-05-09 08:02:00,302 1st St, Boston,MA,02215 +205779,USB-C Charging Cable,1,11.95,2019-05-27 19:35:00,568 Cedar St, Los Angeles,CA,90001 +205780,Lightning Charging Cable,1,14.95,2019-05-26 16:16:00,433 Cherry St, Portland,OR,97035 +205781,Bose SoundSport Headphones,1,99.99,2019-05-09 08:38:00,872 River St, Los Angeles,CA,90001 +205782,Lightning Charging Cable,1,14.95,2019-05-18 08:04:00,406 River St, San Francisco,CA,94016 +205783,Vareebadd Phone,1,400.0,2019-05-12 23:51:00,987 West St, Atlanta,GA,30301 +205783,USB-C Charging Cable,1,11.95,2019-05-12 23:51:00,987 West St, Atlanta,GA,30301 +205784,Wired Headphones,1,11.99,2019-05-26 17:37:00,984 1st St, New York City,NY,10001 +205785,Wired Headphones,1,11.99,2019-05-09 20:25:00,900 Lake St, Austin,TX,73301 +205786,AAA Batteries (4-pack),2,2.99,2019-05-25 19:35:00,629 Church St, Dallas,TX,75001 +205787,20in Monitor,1,109.99,2019-05-21 13:15:00,289 Lake St, Atlanta,GA,30301 +205788,AAA Batteries (4-pack),1,2.99,2019-05-23 09:44:00,86 1st St, Portland,ME,04101 +205789,USB-C Charging Cable,1,11.95,2019-05-03 14:08:00,871 North St, New York City,NY,10001 +205790,Wired Headphones,1,11.99,2019-05-26 12:04:00,690 Maple St, Los Angeles,CA,90001 +205791,iPhone,1,700.0,2019-05-29 10:40:00,131 4th St, San Francisco,CA,94016 +205791,Apple Airpods Headphones,1,150.0,2019-05-29 10:40:00,131 4th St, San Francisco,CA,94016 +205792,27in FHD Monitor,1,149.99,2019-05-08 18:58:00,199 Forest St, Atlanta,GA,30301 +205793,USB-C Charging Cable,1,11.95,2019-05-10 19:01:00,75 8th St, Dallas,TX,75001 +205794,Apple Airpods Headphones,1,150.0,2019-05-28 15:52:00,974 River St, Austin,TX,73301 +205795,Wired Headphones,1,11.99,2019-05-19 08:39:00,567 Willow St, Boston,MA,02215 +205796,27in 4K Gaming Monitor,1,389.99,2019-05-23 21:30:00,341 Jefferson St, Austin,TX,73301 +205797,34in Ultrawide Monitor,1,379.99,2019-05-10 00:40:00,518 Center St, Los Angeles,CA,90001 +205798,USB-C Charging Cable,1,11.95,2019-05-05 13:48:00,689 Highland St, San Francisco,CA,94016 +205799,AA Batteries (4-pack),2,3.84,2019-05-13 18:26:00,290 Jefferson St, New York City,NY,10001 +205800,AAA Batteries (4-pack),1,2.99,2019-05-10 18:59:00,357 Lake St, Dallas,TX,75001 +205801,AAA Batteries (4-pack),3,2.99,2019-05-16 14:59:00,633 5th St, San Francisco,CA,94016 +205801,Apple Airpods Headphones,1,150.0,2019-05-16 14:59:00,633 5th St, San Francisco,CA,94016 +205802,AAA Batteries (4-pack),3,2.99,2019-05-31 19:17:00,134 Washington St, Los Angeles,CA,90001 +205803,iPhone,1,700.0,2019-05-26 21:28:00,804 Forest St, San Francisco,CA,94016 +205803,Lightning Charging Cable,1,14.95,2019-05-26 21:28:00,804 Forest St, San Francisco,CA,94016 +205804,USB-C Charging Cable,1,11.95,2019-05-16 09:55:00,74 7th St, San Francisco,CA,94016 +205804,AAA Batteries (4-pack),1,2.99,2019-05-16 09:55:00,74 7th St, San Francisco,CA,94016 +205805,Lightning Charging Cable,1,14.95,2019-05-18 21:43:00,118 9th St, Dallas,TX,75001 +205806,Lightning Charging Cable,1,14.95,2019-05-16 16:55:00,20 Hill St, San Francisco,CA,94016 +205807,27in FHD Monitor,1,149.99,2019-05-02 20:23:00,243 1st St, New York City,NY,10001 +205808,27in 4K Gaming Monitor,1,389.99,2019-05-01 09:54:00,146 Main St, Los Angeles,CA,90001 +205809,Wired Headphones,1,11.99,2019-05-10 13:04:00,204 South St, Boston,MA,02215 +205810,Apple Airpods Headphones,1,150.0,2019-05-12 21:24:00,407 North St, Boston,MA,02215 +205811,Google Phone,1,600.0,2019-05-26 11:28:00,174 1st St, San Francisco,CA,94016 +205812,AA Batteries (4-pack),1,3.84,2019-05-06 18:33:00,494 Jefferson St, San Francisco,CA,94016 +205813,Apple Airpods Headphones,1,150.0,2019-05-29 20:19:00,329 7th St, Portland,OR,97035 +205814,iPhone,1,700.0,2019-05-27 02:19:00,876 Lake St, Dallas,TX,75001 +205814,Wired Headphones,1,11.99,2019-05-27 02:19:00,876 Lake St, Dallas,TX,75001 +205815,34in Ultrawide Monitor,1,379.99,2019-05-08 08:06:00,633 8th St, San Francisco,CA,94016 +205816,Lightning Charging Cable,1,14.95,2019-05-28 10:48:00,801 Lake St, New York City,NY,10001 +205817,Apple Airpods Headphones,1,150.0,2019-05-01 21:22:00,494 Maple St, San Francisco,CA,94016 +205818,34in Ultrawide Monitor,1,379.99,2019-05-02 13:11:00,815 2nd St, Seattle,WA,98101 +205819,Apple Airpods Headphones,1,150.0,2019-05-10 19:05:00,927 Hickory St, Seattle,WA,98101 +205820,34in Ultrawide Monitor,1,379.99,2019-05-02 12:09:00,879 Meadow St, Atlanta,GA,30301 +205821,AA Batteries (4-pack),1,3.84,2019-05-27 22:48:00,548 Hickory St, Los Angeles,CA,90001 +205822,34in Ultrawide Monitor,1,379.99,2019-05-18 21:58:00,223 12th St, San Francisco,CA,94016 +205823,20in Monitor,1,109.99,2019-05-24 21:30:00,849 Meadow St, San Francisco,CA,94016 +205824,Lightning Charging Cable,1,14.95,2019-05-22 12:00:00,893 Lakeview St, Austin,TX,73301 +205825,Flatscreen TV,1,300.0,2019-05-02 09:39:00,720 Ridge St, San Francisco,CA,94016 +205826,Apple Airpods Headphones,1,150.0,2019-05-22 16:11:00,225 Highland St, San Francisco,CA,94016 +205827,Macbook Pro Laptop,1,1700.0,2019-05-12 17:47:00,160 Cedar St, New York City,NY,10001 +205828,Wired Headphones,1,11.99,2019-05-03 23:28:00,914 South St, San Francisco,CA,94016 +205829,Lightning Charging Cable,1,14.95,2019-05-16 12:10:00,113 Meadow St, San Francisco,CA,94016 +205830,AA Batteries (4-pack),1,3.84,2019-05-15 21:34:00,443 2nd St, Dallas,TX,75001 +205831,20in Monitor,1,109.99,2019-05-16 10:16:00,422 Center St, Boston,MA,02215 +205832,USB-C Charging Cable,1,11.95,2019-05-21 02:08:00,706 Chestnut St, San Francisco,CA,94016 +205833,AAA Batteries (4-pack),1,2.99,2019-05-07 12:27:00,753 10th St, Boston,MA,02215 +205834,ThinkPad Laptop,1,999.99,2019-05-03 08:12:00,897 Hickory St, Atlanta,GA,30301 +205835,LG Dryer,1,600.0,2019-05-23 17:18:00,392 Jackson St, Seattle,WA,98101 +205836,27in FHD Monitor,1,149.99,2019-05-24 15:33:00,215 Jefferson St, San Francisco,CA,94016 +205837,AAA Batteries (4-pack),2,2.99,2019-05-21 09:16:00,209 1st St, Dallas,TX,75001 +205838,Lightning Charging Cable,1,14.95,2019-05-19 14:39:00,661 12th St, Dallas,TX,75001 +205839,AA Batteries (4-pack),1,3.84,2019-05-14 11:13:00,255 8th St, San Francisco,CA,94016 +205840,Wired Headphones,1,11.99,2019-05-15 16:23:00,989 Adams St, San Francisco,CA,94016 +205841,Wired Headphones,1,11.99,2019-05-08 00:19:00,941 Maple St, San Francisco,CA,94016 +205842,Lightning Charging Cable,1,14.95,2019-05-06 20:13:00,515 1st St, Seattle,WA,98101 +205843,AA Batteries (4-pack),1,3.84,2019-05-05 20:59:00,986 Dogwood St, Boston,MA,02215 +205844,Lightning Charging Cable,1,14.95,2019-05-31 14:00:00,769 Main St, New York City,NY,10001 +205845,Apple Airpods Headphones,1,150.0,2019-05-31 17:31:00,844 Center St, Austin,TX,73301 +205846,Wired Headphones,1,11.99,2019-05-31 12:58:00,552 1st St, Los Angeles,CA,90001 +205847,Lightning Charging Cable,1,14.95,2019-05-12 12:03:00,415 Walnut St, San Francisco,CA,94016 +205848,Flatscreen TV,1,300.0,2019-05-21 23:44:00,643 Washington St, San Francisco,CA,94016 +205849,USB-C Charging Cable,1,11.95,2019-05-04 13:02:00,196 Chestnut St, Portland,OR,97035 +205850,AAA Batteries (4-pack),2,2.99,2019-05-10 06:05:00,838 Maple St, New York City,NY,10001 +205851,Apple Airpods Headphones,1,150.0,2019-05-11 13:58:00,50 Johnson St, Boston,MA,02215 +205852,AA Batteries (4-pack),1,3.84,2019-05-08 14:24:00,816 Center St, Dallas,TX,75001 +205853,Wired Headphones,1,11.99,2019-05-03 21:29:00,737 Forest St, San Francisco,CA,94016 +205854,AAA Batteries (4-pack),3,2.99,2019-05-16 21:09:00,997 Forest St, Seattle,WA,98101 +205855,Bose SoundSport Headphones,1,99.99,2019-05-29 12:42:00,87 Center St, San Francisco,CA,94016 +205856,27in 4K Gaming Monitor,1,389.99,2019-05-19 21:02:00,587 4th St, Seattle,WA,98101 +205857,AA Batteries (4-pack),3,3.84,2019-05-06 17:24:00,14 Center St, Los Angeles,CA,90001 +205858,AAA Batteries (4-pack),1,2.99,2019-05-20 00:02:00,915 9th St, New York City,NY,10001 +205859,USB-C Charging Cable,1,11.95,2019-05-19 15:22:00,877 1st St, Boston,MA,02215 +205860,AAA Batteries (4-pack),1,2.99,2019-05-19 23:25:00,504 12th St, Los Angeles,CA,90001 +205861,USB-C Charging Cable,2,11.95,2019-05-31 17:34:00,332 9th St, Dallas,TX,75001 +205862,AAA Batteries (4-pack),1,2.99,2019-05-05 13:32:00,500 South St, New York City,NY,10001 +205863,AAA Batteries (4-pack),1,2.99,2019-05-02 23:36:00,967 Madison St, Austin,TX,73301 +205864,27in 4K Gaming Monitor,1,389.99,2019-05-13 13:17:00,429 Adams St, Atlanta,GA,30301 +205865,iPhone,1,700.0,2019-05-02 06:13:00,962 Cherry St, Dallas,TX,75001 +205865,Apple Airpods Headphones,1,150.0,2019-05-02 06:13:00,962 Cherry St, Dallas,TX,75001 +205866,27in FHD Monitor,1,149.99,2019-05-31 12:57:00,708 Meadow St, Los Angeles,CA,90001 +205867,iPhone,1,700.0,2019-05-11 22:49:00,91 6th St, San Francisco,CA,94016 +205868,AAA Batteries (4-pack),2,2.99,2019-05-19 23:37:00,258 2nd St, San Francisco,CA,94016 +205869,Flatscreen TV,1,300.0,2019-05-10 14:37:00,145 West St, San Francisco,CA,94016 +205870,Wired Headphones,1,11.99,2019-05-06 19:03:00,405 13th St, Boston,MA,02215 +205871,Wired Headphones,1,11.99,2019-05-06 19:50:00,463 Washington St, Atlanta,GA,30301 +205872,34in Ultrawide Monitor,1,379.99,2019-05-09 23:23:00,498 Forest St, Los Angeles,CA,90001 +205873,AAA Batteries (4-pack),2,2.99,2019-05-27 20:13:00,265 Lake St, Los Angeles,CA,90001 +205874,Bose SoundSport Headphones,1,99.99,2019-05-31 16:50:00,616 Ridge St, Seattle,WA,98101 +205875,Lightning Charging Cable,1,14.95,2019-05-25 15:57:00,737 Spruce St, San Francisco,CA,94016 +205876,USB-C Charging Cable,1,11.95,2019-05-18 17:58:00,480 Johnson St, San Francisco,CA,94016 +205877,USB-C Charging Cable,1,11.95,2019-05-13 16:46:00,476 Forest St, Los Angeles,CA,90001 +205878,USB-C Charging Cable,1,11.95,2019-05-13 20:40:00,366 11th St, Dallas,TX,75001 +205879,Lightning Charging Cable,1,14.95,2019-05-22 19:18:00,40 14th St, Dallas,TX,75001 +205880,Apple Airpods Headphones,1,150.0,2019-05-09 20:02:00,396 Cherry St, Portland,OR,97035 +205881,AAA Batteries (4-pack),2,2.99,2019-05-26 20:11:00,455 9th St, Portland,OR,97035 +205882,Wired Headphones,1,11.99,2019-05-26 18:21:00,897 Cedar St, Los Angeles,CA,90001 +205883,Wired Headphones,1,11.99,2019-05-23 19:57:00,963 North St, Seattle,WA,98101 +205884,Macbook Pro Laptop,1,1700.0,2019-05-29 11:52:00,237 7th St, San Francisco,CA,94016 +205885,Macbook Pro Laptop,1,1700.0,2019-05-08 17:44:00,106 8th St, San Francisco,CA,94016 +205886,Flatscreen TV,1,300.0,2019-05-26 11:51:00,881 Dogwood St, Boston,MA,02215 +205887,27in 4K Gaming Monitor,1,389.99,2019-05-18 11:02:00,930 12th St, San Francisco,CA,94016 +205888,AAA Batteries (4-pack),1,2.99,2019-05-23 12:11:00,567 13th St, Boston,MA,02215 +205889,34in Ultrawide Monitor,1,379.99,2019-05-15 22:50:00,731 Pine St, New York City,NY,10001 +205890,USB-C Charging Cable,1,11.95,2019-05-20 15:48:00,843 1st St, Los Angeles,CA,90001 +205891,AA Batteries (4-pack),1,3.84,2019-05-02 10:28:00,443 Maple St, New York City,NY,10001 +205892,AAA Batteries (4-pack),2,2.99,2019-05-03 18:57:00,451 Highland St, Boston,MA,02215 +205893,Apple Airpods Headphones,1,150.0,2019-05-31 15:27:00,31 4th St, San Francisco,CA,94016 +205894,Bose SoundSport Headphones,1,99.99,2019-05-23 09:44:00,199 1st St, Los Angeles,CA,90001 +205895,Apple Airpods Headphones,1,150.0,2019-05-21 14:41:00,893 11th St, Dallas,TX,75001 +205896,USB-C Charging Cable,1,11.95,2019-05-17 09:33:00,425 7th St, San Francisco,CA,94016 +205897,AA Batteries (4-pack),1,3.84,2019-05-21 00:02:00,77 Adams St, Los Angeles,CA,90001 +205898,USB-C Charging Cable,1,11.95,2019-05-18 18:28:00,489 Church St, Los Angeles,CA,90001 +205899,20in Monitor,1,109.99,2019-05-11 19:40:00,886 South St, New York City,NY,10001 +205900,iPhone,1,700.0,2019-05-20 11:52:00,199 Maple St, Los Angeles,CA,90001 +205901,AA Batteries (4-pack),1,3.84,2019-05-05 15:28:00,102 Madison St, New York City,NY,10001 +205902,USB-C Charging Cable,1,11.95,2019-05-07 00:45:00,186 North St, San Francisco,CA,94016 +205902,Vareebadd Phone,1,400.0,2019-05-07 00:45:00,186 North St, San Francisco,CA,94016 +205903,LG Dryer,1,600.0,2019-05-13 12:43:00,147 Spruce St, Los Angeles,CA,90001 +205904,Lightning Charging Cable,1,14.95,2019-05-18 21:25:00,802 10th St, Atlanta,GA,30301 +205905,USB-C Charging Cable,1,11.95,2019-05-29 10:58:00,663 River St, Portland,ME,04101 +205906,Flatscreen TV,1,300.0,2019-05-24 14:16:00,463 Main St, Boston,MA,02215 +205907,Wired Headphones,1,11.99,2019-05-28 18:12:00,285 5th St, Austin,TX,73301 +205908,Lightning Charging Cable,1,14.95,2019-05-02 07:13:00,377 Spruce St, San Francisco,CA,94016 +205909,27in 4K Gaming Monitor,1,389.99,2019-05-21 17:47:00,770 Church St, Portland,OR,97035 +205910,Apple Airpods Headphones,1,150.0,2019-05-14 09:42:00,521 Johnson St, Atlanta,GA,30301 +205911,20in Monitor,1,109.99,2019-05-29 17:10:00,189 Jefferson St, New York City,NY,10001 +205912,Lightning Charging Cable,1,14.95,2019-05-05 23:09:00,250 8th St, Seattle,WA,98101 +205913,Lightning Charging Cable,1,14.95,2019-05-17 20:25:00,939 4th St, Austin,TX,73301 +205914,27in 4K Gaming Monitor,1,389.99,2019-05-23 19:11:00,150 10th St, San Francisco,CA,94016 +205915,Wired Headphones,1,11.99,2019-05-21 23:21:00,263 Willow St, New York City,NY,10001 +205916,20in Monitor,1,109.99,2019-05-16 12:52:00,687 Cherry St, San Francisco,CA,94016 +205917,Google Phone,1,600.0,2019-05-17 19:05:00,176 Main St, Seattle,WA,98101 +205918,USB-C Charging Cable,1,11.95,2019-05-05 20:50:00,244 Center St, San Francisco,CA,94016 +205919,Wired Headphones,1,11.99,2019-05-02 09:47:00,25 5th St, Seattle,WA,98101 +205920,Apple Airpods Headphones,1,150.0,2019-05-18 09:54:00,907 2nd St, San Francisco,CA,94016 +205921,USB-C Charging Cable,1,11.95,2019-05-10 19:15:00,890 11th St, Los Angeles,CA,90001 +205922,Macbook Pro Laptop,1,1700.0,2019-05-13 11:33:00,365 Adams St, San Francisco,CA,94016 +205923,Apple Airpods Headphones,1,150.0,2019-05-04 22:08:00,442 Wilson St, Atlanta,GA,30301 +205923,Lightning Charging Cable,1,14.95,2019-05-04 22:08:00,442 Wilson St, Atlanta,GA,30301 +205924,USB-C Charging Cable,1,11.95,2019-05-19 06:34:00,51 Chestnut St, Seattle,WA,98101 +205925,USB-C Charging Cable,1,11.95,2019-05-15 07:13:00,915 13th St, New York City,NY,10001 +205926,AAA Batteries (4-pack),1,2.99,2019-05-08 11:33:00,611 Meadow St, Los Angeles,CA,90001 +205927,Apple Airpods Headphones,1,150.0,2019-05-07 03:25:00,164 Hill St, San Francisco,CA,94016 +205928,AAA Batteries (4-pack),1,2.99,2019-05-08 12:48:00,638 North St, Seattle,WA,98101 +205929,AAA Batteries (4-pack),1,2.99,2019-05-01 18:17:00,635 Lincoln St, New York City,NY,10001 +205930,USB-C Charging Cable,1,11.95,2019-05-05 13:09:00,4 Jackson St, San Francisco,CA,94016 +205931,ThinkPad Laptop,1,999.99,2019-05-24 20:57:00,591 Hickory St, San Francisco,CA,94016 +205932,27in 4K Gaming Monitor,1,389.99,2019-05-30 11:02:00,201 11th St, San Francisco,CA,94016 +205933,Wired Headphones,1,11.99,2019-05-03 13:53:00,45 Washington St, New York City,NY,10001 +205934,Wired Headphones,1,11.99,2019-05-12 17:01:00,892 2nd St, Los Angeles,CA,90001 +205935,AAA Batteries (4-pack),2,2.99,2019-05-29 08:35:00,185 Wilson St, San Francisco,CA,94016 +205936,Wired Headphones,1,11.99,2019-05-25 11:05:00,138 13th St, Austin,TX,73301 +205937,AA Batteries (4-pack),1,3.84,2019-05-31 12:20:00,225 Center St, Los Angeles,CA,90001 +205938,AAA Batteries (4-pack),1,2.99,2019-05-24 19:58:00,6 Spruce St, San Francisco,CA,94016 +205939,Wired Headphones,1,11.99,2019-05-28 16:58:00,645 11th St, San Francisco,CA,94016 +205940,ThinkPad Laptop,1,999.99,2019-05-01 08:51:00,965 Hickory St, Los Angeles,CA,90001 +205941,Wired Headphones,1,11.99,2019-05-08 13:58:00,720 Washington St, Seattle,WA,98101 +205942,Apple Airpods Headphones,1,150.0,2019-05-28 19:54:00,999 12th St, Austin,TX,73301 +205943,Apple Airpods Headphones,1,150.0,2019-05-09 07:16:00,931 Meadow St, Los Angeles,CA,90001 +205944,USB-C Charging Cable,2,11.95,2019-05-18 20:23:00,515 Church St, San Francisco,CA,94016 +205945,34in Ultrawide Monitor,1,379.99,2019-05-29 18:34:00,539 Main St, Los Angeles,CA,90001 +205946,20in Monitor,1,109.99,2019-05-11 18:58:00,992 4th St, Dallas,TX,75001 +205947,Lightning Charging Cable,1,14.95,2019-05-23 18:45:00,451 Maple St, Seattle,WA,98101 +205948,Apple Airpods Headphones,1,150.0,2019-05-13 18:10:00,385 9th St, New York City,NY,10001 +205949,Lightning Charging Cable,2,14.95,2019-05-16 20:39:00,309 Elm St, Austin,TX,73301 +205950,AA Batteries (4-pack),1,3.84,2019-05-28 21:31:00,854 Lake St, San Francisco,CA,94016 +205951,27in FHD Monitor,1,149.99,2019-05-19 23:30:00,199 North St, San Francisco,CA,94016 +205952,USB-C Charging Cable,1,11.95,2019-05-25 19:10:00,587 6th St, Seattle,WA,98101 +205953,27in 4K Gaming Monitor,1,389.99,2019-05-27 23:08:00,141 7th St, Los Angeles,CA,90001 +205954,27in FHD Monitor,1,149.99,2019-05-10 16:26:00,585 9th St, Boston,MA,02215 +205955,Wired Headphones,1,11.99,2019-05-14 07:19:00,800 Highland St, Los Angeles,CA,90001 +205956,Wired Headphones,1,11.99,2019-05-27 19:49:00,857 Willow St, Los Angeles,CA,90001 +205957,Wired Headphones,1,11.99,2019-05-27 20:16:00,903 13th St, Seattle,WA,98101 +205958,USB-C Charging Cable,1,11.95,2019-05-29 17:40:00,394 Madison St, Boston,MA,02215 +205959,AAA Batteries (4-pack),1,2.99,2019-05-08 00:19:00,456 North St, Austin,TX,73301 +205960,Google Phone,1,600.0,2019-05-08 16:41:00,752 Washington St, New York City,NY,10001 +205960,USB-C Charging Cable,1,11.95,2019-05-08 16:41:00,752 Washington St, New York City,NY,10001 +205961,USB-C Charging Cable,1,11.95,2019-05-16 19:26:00,282 West St, Dallas,TX,75001 +205961,Lightning Charging Cable,1,14.95,2019-05-16 19:26:00,282 West St, Dallas,TX,75001 +205962,USB-C Charging Cable,1,11.95,2019-05-02 18:10:00,229 Madison St, Seattle,WA,98101 +205963,AA Batteries (4-pack),1,3.84,2019-05-24 20:17:00,59 9th St, Seattle,WA,98101 +205964,Apple Airpods Headphones,1,150.0,2019-05-08 23:34:00,406 Cherry St, Los Angeles,CA,90001 +205965,Wired Headphones,1,11.99,2019-05-25 07:14:00,738 Pine St, San Francisco,CA,94016 +205966,20in Monitor,1,109.99,2019-05-21 12:06:00,888 River St, Los Angeles,CA,90001 +205967,USB-C Charging Cable,1,11.95,2019-05-03 13:09:00,912 6th St, Austin,TX,73301 +205968,iPhone,1,700.0,2019-05-09 09:00:00,127 7th St, Portland,ME,04101 +205968,Lightning Charging Cable,1,14.95,2019-05-09 09:00:00,127 7th St, Portland,ME,04101 +205969,Lightning Charging Cable,1,14.95,2019-05-14 22:29:00,837 Main St, San Francisco,CA,94016 +205970,Wired Headphones,1,11.99,2019-05-27 12:57:00,672 Wilson St, Austin,TX,73301 +205971,27in FHD Monitor,1,149.99,2019-05-29 22:05:00,583 Maple St, San Francisco,CA,94016 +205972,Bose SoundSport Headphones,1,99.99,2019-05-26 00:10:00,781 Sunset St, Atlanta,GA,30301 +205973,USB-C Charging Cable,1,11.95,2019-05-09 23:48:00,439 Pine St, Dallas,TX,75001 +205974,USB-C Charging Cable,1,11.95,2019-05-23 21:44:00,727 8th St, San Francisco,CA,94016 +205975,27in 4K Gaming Monitor,1,389.99,2019-05-10 18:12:00,321 Hill St, San Francisco,CA,94016 +205976,Lightning Charging Cable,1,14.95,2019-05-30 12:24:00,874 Washington St, San Francisco,CA,94016 +205977,Flatscreen TV,1,300.0,2019-05-24 09:42:00,545 Main St, Los Angeles,CA,90001 +205978,USB-C Charging Cable,1,11.95,2019-05-04 18:21:00,317 Meadow St, Los Angeles,CA,90001 +205979,AAA Batteries (4-pack),2,2.99,2019-05-09 11:18:00,783 Ridge St, Dallas,TX,75001 +205980,AA Batteries (4-pack),1,3.84,2019-05-02 01:01:00,600 Dogwood St, Boston,MA,02215 +205981,27in 4K Gaming Monitor,1,389.99,2019-05-16 22:24:00,332 Lincoln St, San Francisco,CA,94016 +205982,USB-C Charging Cable,1,11.95,2019-05-14 21:31:00,362 Elm St, Seattle,WA,98101 +205983,Wired Headphones,1,11.99,2019-05-08 12:24:00,326 Church St, New York City,NY,10001 +205984,Apple Airpods Headphones,1,150.0,2019-05-30 12:14:00,702 Cedar St, San Francisco,CA,94016 +205985,USB-C Charging Cable,1,11.95,2019-05-09 20:06:00,606 11th St, Boston,MA,02215 +205986,27in FHD Monitor,1,149.99,2019-05-03 20:21:00,146 Hickory St, New York City,NY,10001 +205987,Lightning Charging Cable,1,14.95,2019-05-24 21:06:00,324 Park St, Dallas,TX,75001 +205988,AAA Batteries (4-pack),1,2.99,2019-05-17 09:20:00,404 Johnson St, Portland,OR,97035 +205989,USB-C Charging Cable,1,11.95,2019-05-25 15:29:00,555 South St, Portland,ME,04101 +205990,Bose SoundSport Headphones,1,99.99,2019-05-06 06:24:00,768 6th St, New York City,NY,10001 +205991,AA Batteries (4-pack),1,3.84,2019-05-26 00:20:00,571 Madison St, San Francisco,CA,94016 +205992,USB-C Charging Cable,1,11.95,2019-05-15 09:53:00,931 Cherry St, Portland,OR,97035 +205993,ThinkPad Laptop,1,999.99,2019-05-15 01:14:00,663 Wilson St, San Francisco,CA,94016 +205994,20in Monitor,1,109.99,2019-05-11 10:22:00,106 Hill St, Atlanta,GA,30301 +205995,USB-C Charging Cable,2,11.95,2019-05-15 15:01:00,509 Main St, San Francisco,CA,94016 +205996,Bose SoundSport Headphones,1,99.99,2019-05-28 17:51:00,832 Cherry St, New York City,NY,10001 +205997,AA Batteries (4-pack),3,3.84,2019-05-27 18:14:00,947 Park St, Austin,TX,73301 +205998,AA Batteries (4-pack),1,3.84,2019-05-01 16:38:00,550 Main St, New York City,NY,10001 +205999,Lightning Charging Cable,1,14.95,2019-05-20 12:18:00,443 Hickory St, Los Angeles,CA,90001 +206000,Bose SoundSport Headphones,1,99.99,2019-05-16 13:54:00,420 South St, Seattle,WA,98101 +206001,iPhone,1,700.0,2019-05-18 17:52:00,983 Jackson St, New York City,NY,10001 +206001,Apple Airpods Headphones,1,150.0,2019-05-18 17:52:00,983 Jackson St, New York City,NY,10001 +206002,Wired Headphones,1,11.99,2019-05-30 19:02:00,625 Spruce St, Los Angeles,CA,90001 +206002,Bose SoundSport Headphones,1,99.99,2019-05-30 19:02:00,625 Spruce St, Los Angeles,CA,90001 +206003,AAA Batteries (4-pack),2,2.99,2019-05-19 20:28:00,936 11th St, San Francisco,CA,94016 +206004,Lightning Charging Cable,1,14.95,2019-05-30 10:41:00,57 Willow St, Dallas,TX,75001 +206005,USB-C Charging Cable,1,11.95,2019-05-08 19:56:00,975 Ridge St, Atlanta,GA,30301 +206006,USB-C Charging Cable,2,11.95,2019-05-11 11:48:00,105 Madison St, Seattle,WA,98101 +206007,AAA Batteries (4-pack),2,2.99,2019-05-01 14:49:00,93 Meadow St, New York City,NY,10001 +206008,Wired Headphones,1,11.99,2019-05-15 13:50:00,555 Jefferson St, Boston,MA,02215 +206009,iPhone,1,700.0,2019-05-27 12:36:00,478 10th St, Portland,OR,97035 +206009,Lightning Charging Cable,1,14.95,2019-05-27 12:36:00,478 10th St, Portland,OR,97035 +206009,Wired Headphones,1,11.99,2019-05-27 12:36:00,478 10th St, Portland,OR,97035 +206010,iPhone,1,700.0,2019-05-22 16:57:00,390 7th St, New York City,NY,10001 +206011,Lightning Charging Cable,1,14.95,2019-05-07 13:58:00,344 5th St, San Francisco,CA,94016 +206012,Lightning Charging Cable,1,14.95,2019-05-24 09:38:00,801 West St, Los Angeles,CA,90001 +206013,34in Ultrawide Monitor,1,379.99,2019-05-21 20:31:00,687 Wilson St, New York City,NY,10001 +206014,Wired Headphones,1,11.99,2019-05-20 18:08:00,248 Adams St, Seattle,WA,98101 +206014,AAA Batteries (4-pack),2,2.99,2019-05-20 18:08:00,248 Adams St, Seattle,WA,98101 +206015,AA Batteries (4-pack),1,3.84,2019-05-06 14:51:00,898 River St, Seattle,WA,98101 +206016,USB-C Charging Cable,2,11.95,2019-05-29 09:23:00,204 Church St, Seattle,WA,98101 +206017,Lightning Charging Cable,1,14.95,2019-05-08 21:09:00,469 Pine St, Portland,OR,97035 +206018,Apple Airpods Headphones,1,150.0,2019-05-16 07:35:00,623 Jackson St, Los Angeles,CA,90001 +206019,Apple Airpods Headphones,1,150.0,2019-05-02 11:07:00,313 11th St, San Francisco,CA,94016 +206020,20in Monitor,1,109.99,2019-05-12 02:44:00,157 Center St, Los Angeles,CA,90001 +206021,AA Batteries (4-pack),1,3.84,2019-05-12 09:25:00,302 Chestnut St, Austin,TX,73301 +206022,Bose SoundSport Headphones,1,99.99,2019-05-01 12:16:00,279 11th St, Seattle,WA,98101 +206023,34in Ultrawide Monitor,1,379.99,2019-05-28 17:56:00,199 West St, Boston,MA,02215 +206023,USB-C Charging Cable,1,11.95,2019-05-28 17:56:00,199 West St, Boston,MA,02215 +206024,USB-C Charging Cable,1,11.95,2019-05-01 15:23:00,723 Hickory St, Atlanta,GA,30301 +206025,AA Batteries (4-pack),1,3.84,2019-05-15 20:16:00,915 Lakeview St, Los Angeles,CA,90001 +206026,AA Batteries (4-pack),1,3.84,2019-05-09 17:45:00,812 Church St, San Francisco,CA,94016 +206027,USB-C Charging Cable,1,11.95,2019-05-23 16:17:00,787 Hill St, Dallas,TX,75001 +206028,Apple Airpods Headphones,1,150.0,2019-05-05 14:34:00,877 Elm St, Los Angeles,CA,90001 +206029,AAA Batteries (4-pack),2,2.99,2019-05-09 22:40:00,83 14th St, Seattle,WA,98101 +206030,27in 4K Gaming Monitor,1,389.99,2019-05-29 20:21:00,720 2nd St, San Francisco,CA,94016 +206031,20in Monitor,1,109.99,2019-05-14 01:20:00,680 Walnut St, Seattle,WA,98101 +206032,AA Batteries (4-pack),2,3.84,2019-05-21 08:47:00,98 1st St, Dallas,TX,75001 +206033,AA Batteries (4-pack),2,3.84,2019-05-24 14:10:00,519 Lakeview St, Seattle,WA,98101 +206034,AA Batteries (4-pack),1,3.84,2019-05-22 19:46:00,300 Main St, Los Angeles,CA,90001 +206035,Apple Airpods Headphones,1,150.0,2019-05-19 12:00:00,937 Wilson St, Portland,OR,97035 +206036,Google Phone,1,600.0,2019-05-23 09:00:00,559 Spruce St, Atlanta,GA,30301 +206037,Wired Headphones,1,11.99,2019-05-03 23:09:00,885 Church St, Los Angeles,CA,90001 +206038,USB-C Charging Cable,1,11.95,2019-05-13 19:37:00,949 Main St, Los Angeles,CA,90001 +206039,Apple Airpods Headphones,1,150.0,2019-05-28 17:15:00,817 13th St, Atlanta,GA,30301 +206040,AA Batteries (4-pack),1,3.84,2019-05-28 16:11:00,930 Adams St, San Francisco,CA,94016 +206041,ThinkPad Laptop,1,999.99,2019-05-05 01:33:00,148 Cherry St, New York City,NY,10001 +206042,Bose SoundSport Headphones,1,99.99,2019-05-07 11:59:00,608 4th St, Los Angeles,CA,90001 +206043,27in FHD Monitor,1,149.99,2019-05-29 10:08:00,913 Walnut St, Los Angeles,CA,90001 +206044,AAA Batteries (4-pack),2,2.99,2019-05-28 23:13:00,75 River St, San Francisco,CA,94016 +206045,AAA Batteries (4-pack),1,2.99,2019-05-12 18:07:00,839 Madison St, Los Angeles,CA,90001 +206046,Lightning Charging Cable,1,14.95,2019-05-23 11:13:00,186 Willow St, Boston,MA,02215 +206047,USB-C Charging Cable,1,11.95,2019-05-01 13:32:00,709 Elm St, San Francisco,CA,94016 +206048,Apple Airpods Headphones,1,150.0,2019-05-22 17:32:00,541 Park St, Los Angeles,CA,90001 +206049,AAA Batteries (4-pack),1,2.99,2019-05-31 20:41:00,92 River St, San Francisco,CA,94016 +206050,USB-C Charging Cable,1,11.95,2019-05-14 21:18:00,656 Willow St, Austin,TX,73301 +206051,Lightning Charging Cable,1,14.95,2019-05-12 07:07:00,391 Lakeview St, New York City,NY,10001 +206052,AAA Batteries (4-pack),2,2.99,2019-05-15 10:08:00,706 13th St, New York City,NY,10001 +206053,Wired Headphones,2,11.99,2019-05-16 17:39:00,107 10th St, Portland,OR,97035 +206054,Wired Headphones,1,11.99,2019-05-11 19:13:00,112 Meadow St, Los Angeles,CA,90001 +206055,iPhone,1,700.0,2019-05-25 22:21:00,544 Wilson St, Austin,TX,73301 +206056,Lightning Charging Cable,2,14.95,2019-05-09 11:52:00,744 Adams St, Atlanta,GA,30301 +206057,Lightning Charging Cable,1,14.95,2019-05-07 20:10:00,256 South St, San Francisco,CA,94016 +206058,34in Ultrawide Monitor,1,379.99,2019-05-25 21:37:00,402 Park St, Boston,MA,02215 +206059,Lightning Charging Cable,1,14.95,2019-05-07 18:00:00,664 Willow St, Los Angeles,CA,90001 +206060,27in FHD Monitor,1,149.99,2019-05-04 21:40:00,268 Highland St, Los Angeles,CA,90001 +206061,Wired Headphones,2,11.99,2019-05-16 18:42:00,806 Meadow St, San Francisco,CA,94016 +206062,AAA Batteries (4-pack),1,2.99,2019-05-28 17:31:00,619 Hickory St, Boston,MA,02215 +206063,20in Monitor,1,109.99,2019-05-06 22:22:00,44 Forest St, Dallas,TX,75001 +206064,Lightning Charging Cable,1,14.95,2019-05-29 16:59:00,982 Lakeview St, San Francisco,CA,94016 +206065,Lightning Charging Cable,2,14.95,2019-05-23 14:14:00,256 Madison St, San Francisco,CA,94016 +206066,Macbook Pro Laptop,1,1700.0,2019-05-17 13:06:00,76 Pine St, Austin,TX,73301 +206067,AAA Batteries (4-pack),1,2.99,2019-05-23 21:17:00,112 1st St, Austin,TX,73301 +206068,27in 4K Gaming Monitor,1,389.99,2019-05-16 03:40:00,808 Lake St, Boston,MA,02215 +206069,AAA Batteries (4-pack),1,2.99,2019-05-14 14:58:00,216 8th St, Seattle,WA,98101 +206070,Vareebadd Phone,1,400.0,2019-05-15 19:59:00,907 10th St, New York City,NY,10001 +206071,Wired Headphones,1,11.99,2019-05-06 16:54:00,167 7th St, New York City,NY,10001 +206072,Wired Headphones,1,11.99,2019-05-02 22:07:00,117 Maple St, Boston,MA,02215 +206073,AAA Batteries (4-pack),1,2.99,2019-05-18 06:40:00,9 Johnson St, Seattle,WA,98101 +206074,USB-C Charging Cable,2,11.95,2019-05-21 19:24:00,79 West St, Atlanta,GA,30301 +206075,Bose SoundSport Headphones,1,99.99,2019-05-22 19:48:00,413 14th St, Austin,TX,73301 +206076,Lightning Charging Cable,1,14.95,2019-05-20 13:35:00,312 6th St, New York City,NY,10001 +206077,Lightning Charging Cable,1,14.95,2019-05-19 09:12:00,901 6th St, San Francisco,CA,94016 +206078,27in FHD Monitor,1,149.99,2019-05-04 22:11:00,880 7th St, Los Angeles,CA,90001 +206079,iPhone,1,700.0,2019-05-03 02:26:00,868 Jackson St, Portland,OR,97035 +206079,Wired Headphones,1,11.99,2019-05-03 02:26:00,868 Jackson St, Portland,OR,97035 +206080,AAA Batteries (4-pack),4,2.99,2019-05-12 12:21:00,873 Sunset St, San Francisco,CA,94016 +206081,ThinkPad Laptop,1,999.99,2019-05-12 10:16:00,993 Cedar St, San Francisco,CA,94016 +206082,AA Batteries (4-pack),1,3.84,2019-05-08 16:51:00,71 12th St, Dallas,TX,75001 +206083,Bose SoundSport Headphones,1,99.99,2019-05-30 12:23:00,210 Pine St, Austin,TX,73301 +206084,Wired Headphones,1,11.99,2019-05-08 13:54:00,362 6th St, Portland,OR,97035 +206085,Apple Airpods Headphones,1,150.0,2019-05-14 12:40:00,36 Dogwood St, Los Angeles,CA,90001 +206086,20in Monitor,1,109.99,2019-05-11 15:38:00,44 North St, San Francisco,CA,94016 +206087,Lightning Charging Cable,1,14.95,2019-05-31 13:03:00,935 5th St, San Francisco,CA,94016 +206088,USB-C Charging Cable,1,11.95,2019-05-08 10:30:00,579 Wilson St, Los Angeles,CA,90001 +206089,AA Batteries (4-pack),1,3.84,2019-05-27 14:14:00,143 Lakeview St, Boston,MA,02215 +206090,Wired Headphones,1,11.99,2019-05-25 23:04:00,705 Main St, San Francisco,CA,94016 +206091,USB-C Charging Cable,1,11.95,2019-05-02 13:21:00,252 Hill St, Atlanta,GA,30301 +206092,AA Batteries (4-pack),1,3.84,2019-05-15 18:20:00,758 8th St, Dallas,TX,75001 +206093,Lightning Charging Cable,2,14.95,2019-05-12 20:32:00,229 Church St, New York City,NY,10001 +206094,Wired Headphones,2,11.99,2019-05-14 18:12:00,483 Washington St, Los Angeles,CA,90001 +206095,Wired Headphones,1,11.99,2019-05-23 17:34:00,482 Main St, New York City,NY,10001 +206096,Wired Headphones,2,11.99,2019-05-31 18:23:00,35 Center St, San Francisco,CA,94016 +206097,iPhone,1,700.0,2019-05-05 10:00:00,638 Cedar St, San Francisco,CA,94016 +206097,Lightning Charging Cable,1,14.95,2019-05-05 10:00:00,638 Cedar St, San Francisco,CA,94016 +206097,Apple Airpods Headphones,1,150.0,2019-05-05 10:00:00,638 Cedar St, San Francisco,CA,94016 +206098,Bose SoundSport Headphones,1,99.99,2019-05-26 08:42:00,41 9th St, Dallas,TX,75001 +206099,27in 4K Gaming Monitor,1,389.99,2019-05-23 20:10:00,313 Main St, Portland,OR,97035 +206100,USB-C Charging Cable,1,11.95,2019-05-28 16:04:00,411 10th St, Los Angeles,CA,90001 +206101,ThinkPad Laptop,1,999.99,2019-05-30 10:50:00,482 13th St, Los Angeles,CA,90001 +206102,AA Batteries (4-pack),1,3.84,2019-05-30 15:43:00,360 Dogwood St, San Francisco,CA,94016 +206103,Wired Headphones,1,11.99,2019-05-08 17:04:00,652 Cherry St, San Francisco,CA,94016 +206104,34in Ultrawide Monitor,1,379.99,2019-05-09 14:17:00,69 Adams St, Austin,TX,73301 +206105,Bose SoundSport Headphones,1,99.99,2019-05-22 16:02:00,225 Pine St, San Francisco,CA,94016 +206106,27in FHD Monitor,1,149.99,2019-05-09 21:51:00,832 Pine St, New York City,NY,10001 +206107,iPhone,1,700.0,2019-05-21 08:19:00,918 Jackson St, Dallas,TX,75001 +206108,AAA Batteries (4-pack),6,2.99,2019-05-15 15:56:00,569 4th St, Dallas,TX,75001 +206109,USB-C Charging Cable,2,11.95,2019-05-24 19:36:00,876 South St, Atlanta,GA,30301 +206110,Wired Headphones,1,11.99,2019-05-20 18:32:00,132 12th St, San Francisco,CA,94016 +206111,AA Batteries (4-pack),1,3.84,2019-05-27 19:42:00,808 Main St, Dallas,TX,75001 +206112,Flatscreen TV,1,300.0,2019-05-31 12:22:00,320 Elm St, Los Angeles,CA,90001 +206113,Wired Headphones,1,11.99,2019-05-28 13:21:00,261 Ridge St, Portland,OR,97035 +206113,27in 4K Gaming Monitor,1,389.99,2019-05-28 13:21:00,261 Ridge St, Portland,OR,97035 +206114,USB-C Charging Cable,1,11.95,2019-05-14 01:50:00,384 13th St, Atlanta,GA,30301 +206115,Lightning Charging Cable,1,14.95,2019-05-13 09:30:00,360 Jefferson St, New York City,NY,10001 +206116,Apple Airpods Headphones,1,150.0,2019-05-21 07:23:00,860 Main St, New York City,NY,10001 +206117,27in FHD Monitor,1,149.99,2019-05-10 22:09:00,666 Cherry St, Dallas,TX,75001 +206118,Lightning Charging Cable,2,14.95,2019-05-20 22:02:00,975 Cedar St, Los Angeles,CA,90001 +206119,Google Phone,1,600.0,2019-05-11 12:34:00,255 Jefferson St, New York City,NY,10001 +206120,AA Batteries (4-pack),1,3.84,2019-05-14 14:12:00,793 8th St, San Francisco,CA,94016 +206121,Lightning Charging Cable,1,14.95,2019-05-23 08:49:00,190 Center St, Los Angeles,CA,90001 +206122,27in FHD Monitor,1,149.99,2019-05-02 11:48:00,809 Cedar St, Los Angeles,CA,90001 +206123,AAA Batteries (4-pack),1,2.99,2019-05-05 15:30:00,675 Dogwood St, Austin,TX,73301 +206124,20in Monitor,1,109.99,2019-05-25 17:09:00,883 Pine St, Austin,TX,73301 +206125,Lightning Charging Cable,1,14.95,2019-05-08 17:40:00,235 4th St, Los Angeles,CA,90001 +206126,27in FHD Monitor,1,149.99,2019-05-16 09:32:00,422 Church St, New York City,NY,10001 +206127,USB-C Charging Cable,1,11.95,2019-05-12 11:33:00,461 North St, Boston,MA,02215 +206128,AA Batteries (4-pack),1,3.84,2019-05-31 01:56:00,960 2nd St, Dallas,TX,75001 +206129,USB-C Charging Cable,1,11.95,2019-05-06 14:47:00,920 12th St, New York City,NY,10001 +206130,Macbook Pro Laptop,1,1700.0,2019-05-01 13:27:00,282 Jackson St, San Francisco,CA,94016 +206131,Lightning Charging Cable,1,14.95,2019-05-26 11:23:00,229 13th St, Los Angeles,CA,90001 +206132,USB-C Charging Cable,1,11.95,2019-05-10 22:37:00,893 Spruce St, San Francisco,CA,94016 +206133,Apple Airpods Headphones,1,150.0,2019-05-18 03:04:00,638 4th St, Boston,MA,02215 +206134,Macbook Pro Laptop,1,1700.0,2019-05-23 16:09:00,695 Spruce St, Dallas,TX,75001 +206135,34in Ultrawide Monitor,1,379.99,2019-05-06 21:09:00,73 Spruce St, Boston,MA,02215 +206136,Apple Airpods Headphones,1,150.0,2019-05-02 14:52:00,79 Elm St, Atlanta,GA,30301 +206137,AA Batteries (4-pack),2,3.84,2019-05-14 20:37:00,30 11th St, Atlanta,GA,30301 +206138,USB-C Charging Cable,1,11.95,2019-05-18 16:34:00,23 Jackson St, Los Angeles,CA,90001 +206139,USB-C Charging Cable,1,11.95,2019-05-13 18:02:00,798 Lincoln St, San Francisco,CA,94016 +206140,USB-C Charging Cable,1,11.95,2019-05-04 22:01:00,171 14th St, Seattle,WA,98101 +206141,USB-C Charging Cable,1,11.95,2019-05-17 12:47:00,806 10th St, San Francisco,CA,94016 +206142,27in FHD Monitor,1,149.99,2019-05-16 13:40:00,30 Walnut St, Los Angeles,CA,90001 +206143,20in Monitor,1,109.99,2019-05-27 16:59:00,962 Cherry St, Los Angeles,CA,90001 +206144,Macbook Pro Laptop,1,1700.0,2019-05-15 21:32:00,660 Adams St, San Francisco,CA,94016 +206145,AA Batteries (4-pack),1,3.84,2019-05-30 16:45:00,512 Spruce St, Portland,OR,97035 +206146,AAA Batteries (4-pack),1,2.99,2019-05-25 16:33:00,233 Pine St, San Francisco,CA,94016 +206147,Lightning Charging Cable,1,14.95,2019-05-31 15:16:00,616 14th St, Dallas,TX,75001 +206148,AA Batteries (4-pack),1,3.84,2019-05-08 12:09:00,38 Hill St, San Francisco,CA,94016 +206149,Apple Airpods Headphones,1,150.0,2019-05-03 15:06:00,355 Lakeview St, Atlanta,GA,30301 +206150,Bose SoundSport Headphones,1,99.99,2019-05-18 16:36:00,296 Willow St, New York City,NY,10001 +206151,USB-C Charging Cable,1,11.95,2019-05-02 19:54:00,243 Adams St, Atlanta,GA,30301 +206152,AAA Batteries (4-pack),1,2.99,2019-05-02 08:35:00,957 Sunset St, New York City,NY,10001 +206153,iPhone,1,700.0,2019-05-27 20:45:00,736 Cedar St, Atlanta,GA,30301 +206154,USB-C Charging Cable,1,11.95,2019-05-29 23:26:00,165 Lake St, San Francisco,CA,94016 +206155,Apple Airpods Headphones,1,150.0,2019-05-21 12:52:00,989 Highland St, Dallas,TX,75001 +206156,Bose SoundSport Headphones,1,99.99,2019-05-12 21:43:00,233 Hill St, New York City,NY,10001 +206157,Google Phone,1,600.0,2019-05-25 21:59:00,537 4th St, Austin,TX,73301 +206158,Google Phone,1,600.0,2019-05-11 20:06:00,346 Jefferson St, New York City,NY,10001 +206159,AA Batteries (4-pack),2,3.84,2019-05-31 14:54:00,229 Lakeview St, San Francisco,CA,94016 +206160,USB-C Charging Cable,1,11.95,2019-05-22 14:34:00,308 4th St, Seattle,WA,98101 +206161,Vareebadd Phone,1,400.0,2019-05-03 12:19:00,843 Madison St, Portland,OR,97035 +206161,USB-C Charging Cable,1,11.95,2019-05-03 12:19:00,843 Madison St, Portland,OR,97035 +206162,27in 4K Gaming Monitor,1,389.99,2019-05-02 14:49:00,214 11th St, New York City,NY,10001 +206163,27in FHD Monitor,1,149.99,2019-05-28 08:51:00,878 6th St, Dallas,TX,75001 +206164,Wired Headphones,1,11.99,2019-05-19 05:49:00,679 13th St, San Francisco,CA,94016 +206165,34in Ultrawide Monitor,1,379.99,2019-05-14 22:04:00,66 Lincoln St, Los Angeles,CA,90001 +206166,USB-C Charging Cable,1,11.95,2019-05-26 12:18:00,882 Willow St, Atlanta,GA,30301 +206167,Google Phone,1,600.0,2019-05-11 11:58:00,708 Lakeview St, Los Angeles,CA,90001 +206168,27in FHD Monitor,1,149.99,2019-05-12 18:18:00,865 5th St, Los Angeles,CA,90001 +206169,Lightning Charging Cable,1,14.95,2019-05-28 20:24:00,171 Sunset St, San Francisco,CA,94016 +206170,Bose SoundSport Headphones,1,99.99,2019-05-08 09:44:00,730 Church St, Los Angeles,CA,90001 +206171,Vareebadd Phone,1,400.0,2019-05-30 08:42:00,833 Elm St, San Francisco,CA,94016 +206172,Lightning Charging Cable,1,14.95,2019-05-30 05:10:00,900 Johnson St, Boston,MA,02215 +206173,AAA Batteries (4-pack),1,2.99,2019-05-02 16:14:00,504 Meadow St, New York City,NY,10001 +206174,AAA Batteries (4-pack),1,2.99,2019-05-11 17:45:00,863 Washington St, San Francisco,CA,94016 +206175,Wired Headphones,1,11.99,2019-05-31 19:43:00,879 Willow St, San Francisco,CA,94016 +206176,Lightning Charging Cable,1,14.95,2019-05-14 23:55:00,954 Church St, Los Angeles,CA,90001 +206177,ThinkPad Laptop,1,999.99,2019-05-01 10:46:00,49 Church St, Austin,TX,73301 +206178,Google Phone,1,600.0,2019-05-01 21:08:00,954 5th St, Seattle,WA,98101 +206179,USB-C Charging Cable,1,11.95,2019-05-14 13:25:00,85 5th St, Boston,MA,02215 +206180,Lightning Charging Cable,1,14.95,2019-05-28 08:52:00,630 6th St, Dallas,TX,75001 +206181,AA Batteries (4-pack),2,3.84,2019-05-30 21:42:00,843 2nd St, Atlanta,GA,30301 +206182,Apple Airpods Headphones,1,150.0,2019-05-06 16:07:00,213 Walnut St, Austin,TX,73301 +206183,Apple Airpods Headphones,1,150.0,2019-05-06 09:43:00,480 South St, Dallas,TX,75001 +206184,USB-C Charging Cable,1,11.95,2019-05-16 20:39:00,415 7th St, Boston,MA,02215 +206185,Bose SoundSport Headphones,1,99.99,2019-05-31 12:10:00,858 Highland St, San Francisco,CA,94016 +206186,Bose SoundSport Headphones,1,99.99,2019-05-13 12:33:00,925 Main St, Dallas,TX,75001 +206187,ThinkPad Laptop,1,999.99,2019-05-17 11:42:00,539 Chestnut St, Dallas,TX,75001 +206188,AAA Batteries (4-pack),1,2.99,2019-05-29 12:56:00,399 Lakeview St, Dallas,TX,75001 +206189,Lightning Charging Cable,1,14.95,2019-05-28 04:35:00,945 Lake St, New York City,NY,10001 +206190,27in 4K Gaming Monitor,1,389.99,2019-05-01 21:52:00,51 Hickory St, Portland,OR,97035 +206191,Wired Headphones,2,11.99,2019-05-12 18:40:00,965 Center St, Austin,TX,73301 +206192,Lightning Charging Cable,1,14.95,2019-05-22 10:40:00,396 13th St, Atlanta,GA,30301 +206193,iPhone,1,700.0,2019-05-29 22:53:00,8 Forest St, Los Angeles,CA,90001 +206194,34in Ultrawide Monitor,1,379.99,2019-05-11 00:17:00,843 Center St, Dallas,TX,75001 +206195,AAA Batteries (4-pack),1,2.99,2019-05-10 14:51:00,658 Meadow St, Portland,ME,04101 +206196,Apple Airpods Headphones,1,150.0,2019-05-15 20:09:00,481 Lake St, Austin,TX,73301 +206197,Wired Headphones,1,11.99,2019-05-07 07:20:00,786 Madison St, Los Angeles,CA,90001 +206198,AAA Batteries (4-pack),2,2.99,2019-05-15 20:55:00,786 14th St, Los Angeles,CA,90001 +206199,ThinkPad Laptop,1,999.99,2019-05-26 08:35:00,772 Chestnut St, Dallas,TX,75001 +206200,AA Batteries (4-pack),1,3.84,2019-05-05 08:41:00,528 Washington St, Dallas,TX,75001 +206201,ThinkPad Laptop,1,999.99,2019-05-09 16:46:00,391 Willow St, San Francisco,CA,94016 +206202,Flatscreen TV,1,300.0,2019-05-05 12:52:00,816 5th St, Dallas,TX,75001 +206203,Apple Airpods Headphones,1,150.0,2019-05-27 18:49:00,109 Cedar St, Los Angeles,CA,90001 +206204,USB-C Charging Cable,1,11.95,2019-05-27 12:07:00,549 4th St, Boston,MA,02215 +206205,USB-C Charging Cable,1,11.95,2019-05-22 15:10:00,238 Sunset St, San Francisco,CA,94016 +206206,Lightning Charging Cable,1,14.95,2019-05-04 11:05:00,143 12th St, Austin,TX,73301 +206207,Wired Headphones,1,11.99,2019-05-15 14:18:00,616 Center St, Dallas,TX,75001 +206208,Bose SoundSport Headphones,1,99.99,2019-05-02 19:05:00,436 Cedar St, Atlanta,GA,30301 +206209,USB-C Charging Cable,1,11.95,2019-05-07 09:17:00,821 7th St, Portland,OR,97035 +206210,iPhone,1,700.0,2019-05-18 21:54:00,713 Lakeview St, New York City,NY,10001 +206211,AA Batteries (4-pack),1,3.84,2019-05-06 11:05:00,725 Jefferson St, New York City,NY,10001 +206212,Lightning Charging Cable,1,14.95,2019-05-15 11:21:00,892 Pine St, San Francisco,CA,94016 +206213,Wired Headphones,1,11.99,2019-05-30 20:03:00,255 12th St, San Francisco,CA,94016 +206214,Apple Airpods Headphones,1,150.0,2019-05-10 21:22:00,120 River St, San Francisco,CA,94016 +206215,USB-C Charging Cable,1,11.95,2019-05-17 11:20:00,928 Lake St, Portland,OR,97035 +206216,AA Batteries (4-pack),1,3.84,2019-05-21 09:22:00,360 5th St, San Francisco,CA,94016 +206217,AA Batteries (4-pack),1,3.84,2019-05-26 07:55:00,815 Willow St, San Francisco,CA,94016 +206218,Flatscreen TV,1,300.0,2019-05-23 09:47:00,489 South St, San Francisco,CA,94016 +206219,AAA Batteries (4-pack),2,2.99,2019-05-15 18:53:00,987 12th St, Austin,TX,73301 +206220,USB-C Charging Cable,1,11.95,2019-05-16 13:45:00,16 10th St, Atlanta,GA,30301 +206221,Lightning Charging Cable,1,14.95,2019-05-25 19:58:00,725 Hill St, San Francisco,CA,94016 +206222,USB-C Charging Cable,1,11.95,2019-05-28 12:52:00,681 Maple St, Los Angeles,CA,90001 +206223,USB-C Charging Cable,1,11.95,2019-05-18 19:22:00,803 Maple St, Seattle,WA,98101 +206224,iPhone,1,700.0,2019-05-17 20:27:00,254 10th St, San Francisco,CA,94016 +206225,Wired Headphones,1,11.99,2019-05-09 23:35:00,132 Washington St, Atlanta,GA,30301 +206226,AAA Batteries (4-pack),1,2.99,2019-05-29 13:40:00,131 10th St, San Francisco,CA,94016 +206227,Bose SoundSport Headphones,1,99.99,2019-05-01 12:55:00,15 Meadow St, San Francisco,CA,94016 +206228,Wired Headphones,1,11.99,2019-05-15 22:44:00,41 Main St, Atlanta,GA,30301 +206229,AA Batteries (4-pack),2,3.84,2019-05-22 12:19:00,184 Highland St, Dallas,TX,75001 +206230,Lightning Charging Cable,1,14.95,2019-05-04 10:25:00,652 13th St, Boston,MA,02215 +206231,AA Batteries (4-pack),1,3.84,2019-05-13 00:05:00,633 2nd St, San Francisco,CA,94016 +206232,27in FHD Monitor,1,149.99,2019-05-27 08:26:00,471 Highland St, San Francisco,CA,94016 +206233,Google Phone,1,600.0,2019-05-11 14:04:00,196 Hickory St, Atlanta,GA,30301 +206234,Google Phone,1,600.0,2019-05-10 00:50:00,964 Pine St, New York City,NY,10001 +206234,USB-C Charging Cable,1,11.95,2019-05-10 00:50:00,964 Pine St, New York City,NY,10001 +206234,Wired Headphones,1,11.99,2019-05-10 00:50:00,964 Pine St, New York City,NY,10001 +206235,AA Batteries (4-pack),2,3.84,2019-05-16 23:15:00,600 10th St, New York City,NY,10001 +206236,Apple Airpods Headphones,1,150.0,2019-05-18 07:31:00,893 6th St, San Francisco,CA,94016 +206237,Lightning Charging Cable,1,14.95,2019-05-13 13:58:00,929 4th St, San Francisco,CA,94016 +206238,USB-C Charging Cable,1,11.95,2019-05-21 00:15:00,981 Meadow St, San Francisco,CA,94016 +206239,27in 4K Gaming Monitor,1,389.99,2019-05-24 16:20:00,17 Highland St, San Francisco,CA,94016 +206240,USB-C Charging Cable,1,11.95,2019-05-19 13:56:00,889 Lake St, Austin,TX,73301 +206241,27in FHD Monitor,1,149.99,2019-05-10 09:33:00,247 Lake St, Boston,MA,02215 +206242,iPhone,1,700.0,2019-05-28 21:36:00,235 Spruce St, Los Angeles,CA,90001 +206242,Lightning Charging Cable,1,14.95,2019-05-28 21:36:00,235 Spruce St, Los Angeles,CA,90001 +206243,AAA Batteries (4-pack),1,2.99,2019-05-29 10:29:00,154 Highland St, Atlanta,GA,30301 +206244,Lightning Charging Cable,1,14.95,2019-05-31 20:07:00,648 13th St, San Francisco,CA,94016 +206245,USB-C Charging Cable,1,11.95,2019-05-02 12:28:00,509 Church St, San Francisco,CA,94016 +206246,AAA Batteries (4-pack),1,2.99,2019-05-01 20:21:00,723 7th St, Los Angeles,CA,90001 +206247,AAA Batteries (4-pack),1,2.99,2019-05-26 11:16:00,641 Johnson St, Austin,TX,73301 +206248,AAA Batteries (4-pack),1,2.99,2019-05-26 21:58:00,152 12th St, Atlanta,GA,30301 +206249,27in 4K Gaming Monitor,1,389.99,2019-05-11 13:17:00,761 Main St, Seattle,WA,98101 +206250,Apple Airpods Headphones,1,150.0,2019-05-12 17:42:00,302 9th St, Boston,MA,02215 +206251,Macbook Pro Laptop,1,1700.0,2019-05-07 08:27:00,233 Ridge St, Seattle,WA,98101 +206252,AA Batteries (4-pack),1,3.84,2019-05-29 17:45:00,373 Dogwood St, San Francisco,CA,94016 +206253,34in Ultrawide Monitor,1,379.99,2019-05-10 23:43:00,255 1st St, New York City,NY,10001 +206254,AAA Batteries (4-pack),1,2.99,2019-05-06 12:00:00,571 9th St, Los Angeles,CA,90001 +206255,Lightning Charging Cable,1,14.95,2019-05-08 08:14:00,113 Walnut St, San Francisco,CA,94016 +206256,27in FHD Monitor,1,149.99,2019-05-31 23:19:00,590 10th St, Seattle,WA,98101 +206257,Lightning Charging Cable,1,14.95,2019-05-16 19:00:00,77 Lake St, San Francisco,CA,94016 +206258,Macbook Pro Laptop,1,1700.0,2019-05-19 22:51:00,141 Maple St, New York City,NY,10001 +206259,AA Batteries (4-pack),1,3.84,2019-05-01 22:04:00,638 Lake St, Dallas,TX,75001 +206260,USB-C Charging Cable,1,11.95,2019-05-01 12:41:00,171 Dogwood St, San Francisco,CA,94016 +206261,Wired Headphones,1,11.99,2019-05-25 21:02:00,361 Hickory St, San Francisco,CA,94016 +206262,27in FHD Monitor,1,149.99,2019-05-14 14:32:00,51 Wilson St, Portland,OR,97035 +206263,USB-C Charging Cable,1,11.95,2019-05-16 08:08:00,175 4th St, San Francisco,CA,94016 +206264,AAA Batteries (4-pack),1,2.99,2019-05-21 12:33:00,962 1st St, Austin,TX,73301 +206265,Bose SoundSport Headphones,1,99.99,2019-05-16 06:16:00,603 Washington St, New York City,NY,10001 +206266,Macbook Pro Laptop,1,1700.0,2019-05-09 14:56:00,279 12th St, New York City,NY,10001 +206267,Bose SoundSport Headphones,1,99.99,2019-05-04 21:05:00,949 Lincoln St, New York City,NY,10001 +206268,Apple Airpods Headphones,1,150.0,2019-05-02 10:34:00,199 Hickory St, Seattle,WA,98101 +206269,Macbook Pro Laptop,1,1700.0,2019-05-21 09:54:00,809 River St, San Francisco,CA,94016 +206270,27in FHD Monitor,1,149.99,2019-05-25 21:08:00,747 4th St, Atlanta,GA,30301 +206271,AAA Batteries (4-pack),1,2.99,2019-05-15 17:01:00,890 Elm St, San Francisco,CA,94016 +206272,Lightning Charging Cable,1,14.95,2019-05-09 15:51:00,102 Willow St, San Francisco,CA,94016 +206273,Lightning Charging Cable,1,14.95,2019-05-06 23:50:00,363 11th St, Portland,ME,04101 +206274,AAA Batteries (4-pack),2,2.99,2019-05-24 13:51:00,521 Wilson St, Los Angeles,CA,90001 +206275,Lightning Charging Cable,1,14.95,2019-05-15 11:56:00,399 Adams St, Los Angeles,CA,90001 +206276,Lightning Charging Cable,2,14.95,2019-05-20 12:28:00,448 Church St, Portland,OR,97035 +206277,20in Monitor,1,109.99,2019-05-13 11:05:00,709 Hill St, New York City,NY,10001 +206278,AA Batteries (4-pack),1,3.84,2019-05-24 13:49:00,376 Dogwood St, Seattle,WA,98101 +206279,iPhone,1,700.0,2019-05-19 06:51:00,860 Madison St, San Francisco,CA,94016 +206280,AAA Batteries (4-pack),1,2.99,2019-05-22 10:55:00,387 7th St, Boston,MA,02215 +206281,Lightning Charging Cable,2,14.95,2019-05-22 10:18:00,621 Meadow St, San Francisco,CA,94016 +206282,Google Phone,1,600.0,2019-05-02 18:24:00,562 5th St, San Francisco,CA,94016 +206283,Wired Headphones,1,11.99,2019-05-25 21:16:00,309 Wilson St, Portland,OR,97035 +206284,Apple Airpods Headphones,1,150.0,2019-05-18 10:47:00,202 Center St, Boston,MA,02215 +206285,34in Ultrawide Monitor,1,379.99,2019-05-19 12:07:00,677 South St, Portland,OR,97035 +206286,27in FHD Monitor,1,149.99,2019-05-08 13:01:00,526 9th St, Boston,MA,02215 +206287,Google Phone,1,600.0,2019-05-29 20:55:00,997 Forest St, San Francisco,CA,94016 +206288,USB-C Charging Cable,1,11.95,2019-05-05 17:48:00,941 2nd St, Dallas,TX,75001 +206289,iPhone,1,700.0,2019-05-11 13:36:00,883 Lincoln St, Dallas,TX,75001 +206290,Bose SoundSport Headphones,1,99.99,2019-05-23 15:57:00,862 5th St, Los Angeles,CA,90001 +206291,27in FHD Monitor,1,149.99,2019-05-28 20:52:00,92 Hickory St, San Francisco,CA,94016 +206292,Apple Airpods Headphones,1,150.0,2019-05-11 14:13:00,873 5th St, Boston,MA,02215 +206293,AA Batteries (4-pack),2,3.84,2019-05-02 09:39:00,622 Sunset St, Seattle,WA,98101 +206294,AA Batteries (4-pack),1,3.84,2019-05-14 13:25:00,882 4th St, New York City,NY,10001 +206295,Lightning Charging Cable,1,14.95,2019-05-20 10:45:00,970 Madison St, Los Angeles,CA,90001 +206296,Apple Airpods Headphones,1,150.0,2019-05-02 11:24:00,993 North St, Austin,TX,73301 +206297,27in FHD Monitor,1,149.99,2019-05-15 10:55:00,496 Meadow St, Seattle,WA,98101 +206298,Lightning Charging Cable,1,14.95,2019-05-31 21:25:00,185 Lake St, New York City,NY,10001 +206299,Lightning Charging Cable,1,14.95,2019-05-29 19:02:00,635 Chestnut St, New York City,NY,10001 +206300,AA Batteries (4-pack),1,3.84,2019-05-19 09:29:00,604 Jefferson St, Portland,OR,97035 +206301,AAA Batteries (4-pack),2,2.99,2019-05-17 17:05:00,796 Washington St, Seattle,WA,98101 +206302,Lightning Charging Cable,1,14.95,2019-05-11 09:44:00,304 North St, Austin,TX,73301 +206303,AA Batteries (4-pack),1,3.84,2019-05-19 18:56:00,758 10th St, Boston,MA,02215 +206304,Wired Headphones,1,11.99,2019-05-29 15:38:00,830 Lake St, San Francisco,CA,94016 +206305,Wired Headphones,1,11.99,2019-05-21 09:48:00,340 Dogwood St, Dallas,TX,75001 +206306,Wired Headphones,1,11.99,2019-05-18 07:06:00,267 Ridge St, Portland,OR,97035 +206307,USB-C Charging Cable,1,11.95,2019-05-02 07:25:00,519 Chestnut St, Seattle,WA,98101 +206308,USB-C Charging Cable,1,11.95,2019-05-20 06:59:00,989 10th St, Seattle,WA,98101 +206309,Wired Headphones,1,11.99,2019-05-23 00:27:00,324 Lincoln St, Boston,MA,02215 +206310,Lightning Charging Cable,1,14.95,2019-05-14 05:42:00,427 Lakeview St, Seattle,WA,98101 +206311,27in FHD Monitor,1,149.99,2019-05-15 09:01:00,383 6th St, Atlanta,GA,30301 +206312,Lightning Charging Cable,1,14.95,2019-05-28 16:16:00,299 12th St, New York City,NY,10001 +206313,AA Batteries (4-pack),1,3.84,2019-05-22 12:19:00,532 10th St, Atlanta,GA,30301 +206314,AA Batteries (4-pack),2,3.84,2019-05-30 21:04:00,702 Adams St, Portland,OR,97035 +206315,AA Batteries (4-pack),2,3.84,2019-05-12 23:27:00,650 Lake St, Los Angeles,CA,90001 +206316,Bose SoundSport Headphones,1,99.99,2019-05-31 15:02:00,276 Meadow St, San Francisco,CA,94016 +206317,Flatscreen TV,1,300.0,2019-05-10 13:38:00,482 Lake St, Boston,MA,02215 +206318,27in 4K Gaming Monitor,1,389.99,2019-05-10 14:50:00,799 Willow St, Los Angeles,CA,90001 +206319,Wired Headphones,1,11.99,2019-05-26 10:07:00,8 Cherry St, Austin,TX,73301 +206320,AA Batteries (4-pack),1,3.84,2019-05-11 21:35:00,124 River St, Boston,MA,02215 +206321,Lightning Charging Cable,1,14.95,2019-05-07 10:10:00,2 9th St, New York City,NY,10001 +206322,Macbook Pro Laptop,1,1700.0,2019-05-19 18:36:00,635 10th St, San Francisco,CA,94016 +206323,AAA Batteries (4-pack),1,2.99,2019-05-17 21:23:00,695 Wilson St, Dallas,TX,75001 +206324,Bose SoundSport Headphones,1,99.99,2019-05-07 06:58:00,780 Center St, San Francisco,CA,94016 +206325,Lightning Charging Cable,1,14.95,2019-05-29 21:11:00,186 River St, San Francisco,CA,94016 +206326,Flatscreen TV,1,300.0,2019-05-23 17:12:00,617 Maple St, Dallas,TX,75001 +206327,Lightning Charging Cable,1,14.95,2019-05-11 14:55:00,297 Pine St, Portland,OR,97035 +206328,Wired Headphones,1,11.99,2019-05-15 16:41:00,323 Forest St, Los Angeles,CA,90001 +206329,AA Batteries (4-pack),1,3.84,2019-05-30 23:06:00,689 North St, Austin,TX,73301 +206330,Bose SoundSport Headphones,1,99.99,2019-05-28 14:56:00,178 Pine St, New York City,NY,10001 +206331,iPhone,1,700.0,2019-05-09 20:16:00,21 South St, Los Angeles,CA,90001 +206332,Wired Headphones,2,11.99,2019-05-20 13:00:00,314 Church St, New York City,NY,10001 +206333,AA Batteries (4-pack),2,3.84,2019-05-18 11:16:00,531 Jackson St, Atlanta,GA,30301 +206334,Macbook Pro Laptop,1,1700.0,2019-05-10 14:03:00,772 9th St, Los Angeles,CA,90001 +206335,Lightning Charging Cable,1,14.95,2019-05-02 13:30:00,948 Hickory St, Portland,OR,97035 +206336,Apple Airpods Headphones,1,150.0,2019-05-23 10:51:00,559 14th St, Dallas,TX,75001 +206337,Lightning Charging Cable,1,14.95,2019-05-25 19:32:00,85 Lake St, San Francisco,CA,94016 +206338,Apple Airpods Headphones,1,150.0,2019-05-11 23:29:00,191 14th St, New York City,NY,10001 +206339,USB-C Charging Cable,1,11.95,2019-05-06 15:32:00,423 Madison St, New York City,NY,10001 +206340,iPhone,1,700.0,2019-05-09 16:26:00,278 Spruce St, Los Angeles,CA,90001 +206340,Lightning Charging Cable,1,14.95,2019-05-09 16:26:00,278 Spruce St, Los Angeles,CA,90001 +206341,27in FHD Monitor,1,149.99,2019-05-05 10:02:00,209 Wilson St, New York City,NY,10001 +206342,AAA Batteries (4-pack),3,2.99,2019-05-20 02:18:00,811 West St, San Francisco,CA,94016 +206343,Flatscreen TV,1,300.0,2019-05-14 11:58:00,464 Meadow St, Los Angeles,CA,90001 +206344,AAA Batteries (4-pack),1,2.99,2019-05-03 19:32:00,913 Pine St, Portland,ME,04101 +206345,AAA Batteries (4-pack),1,2.99,2019-05-27 20:54:00,960 River St, Dallas,TX,75001 +206346,27in 4K Gaming Monitor,1,389.99,2019-05-14 08:10:00,740 Walnut St, San Francisco,CA,94016 +206347,ThinkPad Laptop,1,999.99,2019-05-09 11:22:00,740 Walnut St, Los Angeles,CA,90001 +206348,Apple Airpods Headphones,1,150.0,2019-05-03 21:08:00,557 North St, Los Angeles,CA,90001 +206349,Lightning Charging Cable,1,14.95,2019-05-23 12:20:00,201 10th St, Seattle,WA,98101 +206350,Bose SoundSport Headphones,1,99.99,2019-05-14 09:27:00,492 2nd St, Boston,MA,02215 +206351,Wired Headphones,1,11.99,2019-05-07 19:59:00,811 Main St, Los Angeles,CA,90001 +206352,Lightning Charging Cable,1,14.95,2019-05-15 11:07:00,897 Dogwood St, Austin,TX,73301 +206353,AA Batteries (4-pack),2,3.84,2019-05-03 08:53:00,509 Spruce St, San Francisco,CA,94016 +206353,USB-C Charging Cable,1,11.95,2019-05-03 08:53:00,509 Spruce St, San Francisco,CA,94016 +206354,Google Phone,1,600.0,2019-05-06 13:53:00,788 6th St, San Francisco,CA,94016 +206354,USB-C Charging Cable,1,11.95,2019-05-06 13:53:00,788 6th St, San Francisco,CA,94016 +206355,27in FHD Monitor,1,149.99,2019-05-05 18:16:00,328 1st St, San Francisco,CA,94016 +206356,AA Batteries (4-pack),1,3.84,2019-05-21 20:55:00,866 Madison St, Dallas,TX,75001 +206357,Wired Headphones,3,11.99,2019-05-02 07:40:00,946 4th St, Los Angeles,CA,90001 +206358,Lightning Charging Cable,1,14.95,2019-05-14 14:45:00,668 13th St, Portland,OR,97035 +206359,AAA Batteries (4-pack),1,2.99,2019-05-21 03:33:00,82 West St, Austin,TX,73301 +206360,AA Batteries (4-pack),1,3.84,2019-05-05 20:50:00,467 6th St, New York City,NY,10001 +206361,AA Batteries (4-pack),1,3.84,2019-05-01 20:33:00,87 14th St, Los Angeles,CA,90001 +206362,AA Batteries (4-pack),2,3.84,2019-05-16 00:50:00,327 Forest St, Boston,MA,02215 +206363,USB-C Charging Cable,1,11.95,2019-05-26 18:12:00,321 Pine St, Los Angeles,CA,90001 +206364,AA Batteries (4-pack),2,3.84,2019-05-17 22:31:00,791 Dogwood St, Los Angeles,CA,90001 +206365,Wired Headphones,1,11.99,2019-05-22 13:19:00,907 West St, New York City,NY,10001 +206366,AAA Batteries (4-pack),1,2.99,2019-05-23 12:44:00,877 4th St, New York City,NY,10001 +206367,USB-C Charging Cable,1,11.95,2019-05-20 17:12:00,168 Chestnut St, San Francisco,CA,94016 +206368,AA Batteries (4-pack),1,3.84,2019-05-21 13:53:00,790 1st St, San Francisco,CA,94016 +206369,Apple Airpods Headphones,1,150.0,2019-05-21 22:23:00,205 Forest St, Boston,MA,02215 +206370,34in Ultrawide Monitor,1,379.99,2019-05-26 09:54:00,540 5th St, New York City,NY,10001 +206371,iPhone,1,700.0,2019-05-21 14:34:00,425 South St, Los Angeles,CA,90001 +206372,Google Phone,1,600.0,2019-05-23 19:03:00,675 Hickory St, San Francisco,CA,94016 +206372,Wired Headphones,1,11.99,2019-05-23 19:03:00,675 Hickory St, San Francisco,CA,94016 +206373,Flatscreen TV,1,300.0,2019-05-25 18:30:00,822 Madison St, Atlanta,GA,30301 +206374,Lightning Charging Cable,1,14.95,2019-05-07 19:03:00,855 6th St, San Francisco,CA,94016 +206375,Wired Headphones,1,11.99,2019-05-04 20:16:00,126 Wilson St, New York City,NY,10001 +206376,AA Batteries (4-pack),1,3.84,2019-05-11 21:48:00,732 Elm St, Los Angeles,CA,90001 +206377,Wired Headphones,1,11.99,2019-05-12 18:17:00,987 9th St, San Francisco,CA,94016 +206378,Wired Headphones,1,11.99,2019-05-07 16:16:00,857 Center St, New York City,NY,10001 +206379,Wired Headphones,1,11.99,2019-05-25 10:04:00,57 Madison St, Portland,ME,04101 +206380,AAA Batteries (4-pack),3,2.99,2019-05-24 11:32:00,357 Lake St, Seattle,WA,98101 +206381,AAA Batteries (4-pack),4,2.99,2019-05-28 13:57:00,576 2nd St, Los Angeles,CA,90001 +206382,AAA Batteries (4-pack),1,2.99,2019-05-10 22:27:00,436 Lake St, Seattle,WA,98101 +206383,AA Batteries (4-pack),1,3.84,2019-05-26 16:02:00,556 Washington St, Atlanta,GA,30301 +206384,34in Ultrawide Monitor,1,379.99,2019-05-05 10:23:00,415 Madison St, Austin,TX,73301 +206385,Apple Airpods Headphones,1,150.0,2019-05-29 00:54:00,755 Johnson St, Atlanta,GA,30301 +206386,Apple Airpods Headphones,1,150.0,2019-05-21 13:25:00,125 6th St, Atlanta,GA,30301 +206387,Flatscreen TV,1,300.0,2019-05-02 11:51:00,139 Willow St, San Francisco,CA,94016 +206388,AAA Batteries (4-pack),2,2.99,2019-05-12 17:06:00,903 Lake St, Los Angeles,CA,90001 +206389,USB-C Charging Cable,1,11.95,2019-05-15 12:02:00,755 Ridge St, San Francisco,CA,94016 +206390,USB-C Charging Cable,1,11.95,2019-05-08 18:06:00,750 Chestnut St, Austin,TX,73301 +206391,Lightning Charging Cable,1,14.95,2019-05-07 20:53:00,96 6th St, Boston,MA,02215 +206392,Lightning Charging Cable,1,14.95,2019-05-18 11:11:00,177 11th St, San Francisco,CA,94016 +206393,Wired Headphones,1,11.99,2019-05-09 09:49:00,601 Center St, Boston,MA,02215 +206394,ThinkPad Laptop,1,999.99,2019-05-24 08:54:00,496 River St, New York City,NY,10001 +206395,Apple Airpods Headphones,1,150.0,2019-05-12 13:42:00,290 Hill St, Seattle,WA,98101 +206396,Macbook Pro Laptop,1,1700.0,2019-05-14 03:17:00,773 Ridge St, Los Angeles,CA,90001 +206397,USB-C Charging Cable,1,11.95,2019-05-11 15:07:00,343 Lakeview St, San Francisco,CA,94016 +206398,Bose SoundSport Headphones,1,99.99,2019-05-12 16:45:00,775 Cherry St, New York City,NY,10001 +206399,Vareebadd Phone,1,400.0,2019-05-23 09:53:00,834 Spruce St, San Francisco,CA,94016 +206399,Bose SoundSport Headphones,1,99.99,2019-05-23 09:53:00,834 Spruce St, San Francisco,CA,94016 +206400,Bose SoundSport Headphones,1,99.99,2019-05-09 17:55:00,118 Forest St, Austin,TX,73301 +206401,AA Batteries (4-pack),1,3.84,2019-05-03 21:39:00,534 Adams St, New York City,NY,10001 +206402,Bose SoundSport Headphones,1,99.99,2019-05-13 19:52:00,338 7th St, San Francisco,CA,94016 +206403,Lightning Charging Cable,1,14.95,2019-05-29 17:33:00,630 9th St, San Francisco,CA,94016 +206404,AAA Batteries (4-pack),2,2.99,2019-05-02 14:50:00,18 6th St, Boston,MA,02215 +206404,AAA Batteries (4-pack),1,2.99,2019-05-02 14:50:00,18 6th St, Boston,MA,02215 +206405,AAA Batteries (4-pack),1,2.99,2019-05-20 13:35:00,437 9th St, New York City,NY,10001 +206406,Lightning Charging Cable,2,14.95,2019-05-20 17:35:00,468 River St, Portland,OR,97035 +206407,USB-C Charging Cable,1,11.95,2019-05-23 15:35:00,275 8th St, New York City,NY,10001 +206408,Lightning Charging Cable,1,14.95,2019-05-28 15:36:00,968 Johnson St, Dallas,TX,75001 +206409,USB-C Charging Cable,1,11.95,2019-05-23 10:42:00,879 Wilson St, New York City,NY,10001 +206410,34in Ultrawide Monitor,1,379.99,2019-05-17 19:42:00,815 Walnut St, San Francisco,CA,94016 +206411,34in Ultrawide Monitor,1,379.99,2019-05-10 17:19:00,929 Park St, Los Angeles,CA,90001 +206412,34in Ultrawide Monitor,1,379.99,2019-05-13 16:13:00,890 10th St, San Francisco,CA,94016 +206413,Macbook Pro Laptop,1,1700.0,2019-05-07 09:41:00,391 1st St, Seattle,WA,98101 +206413,iPhone,1,700.0,2019-05-07 09:41:00,391 1st St, Seattle,WA,98101 +206414,AA Batteries (4-pack),1,3.84,2019-05-12 06:55:00,710 Spruce St, San Francisco,CA,94016 +206415,AAA Batteries (4-pack),1,2.99,2019-05-10 16:27:00,359 Adams St, San Francisco,CA,94016 +206416,Apple Airpods Headphones,1,150.0,2019-05-13 13:54:00,16 West St, New York City,NY,10001 +206417,34in Ultrawide Monitor,1,379.99,2019-05-24 08:30:00,401 River St, New York City,NY,10001 +206418,AAA Batteries (4-pack),1,2.99,2019-05-30 11:45:00,318 13th St, Boston,MA,02215 +206419,Wired Headphones,1,11.99,2019-05-03 11:11:00,334 Wilson St, Los Angeles,CA,90001 +206420,Flatscreen TV,1,300.0,2019-05-20 08:58:00,80 South St, Boston,MA,02215 +206421,Apple Airpods Headphones,1,150.0,2019-05-27 11:10:00,923 Willow St, New York City,NY,10001 +206422,27in 4K Gaming Monitor,1,389.99,2019-05-11 10:15:00,779 South St, San Francisco,CA,94016 +206423,Wired Headphones,1,11.99,2019-05-17 16:42:00,386 Ridge St, San Francisco,CA,94016 +206424,27in FHD Monitor,1,149.99,2019-05-09 15:22:00,329 12th St, New York City,NY,10001 +206425,USB-C Charging Cable,1,11.95,2019-05-06 09:08:00,136 Johnson St, Seattle,WA,98101 +206426,iPhone,1,700.0,2019-05-31 13:24:00,908 10th St, Dallas,TX,75001 +206427,Bose SoundSport Headphones,1,99.99,2019-05-10 09:14:00,864 Meadow St, San Francisco,CA,94016 +206428,AAA Batteries (4-pack),4,2.99,2019-05-10 09:53:00,306 Cherry St, San Francisco,CA,94016 +206429,AAA Batteries (4-pack),1,2.99,2019-05-19 17:21:00,517 Willow St, Atlanta,GA,30301 +206430,AAA Batteries (4-pack),1,2.99,2019-05-16 01:56:00,427 Park St, San Francisco,CA,94016 +206431,Wired Headphones,1,11.99,2019-05-30 12:47:00,439 6th St, Dallas,TX,75001 +206432,AA Batteries (4-pack),1,3.84,2019-05-11 14:16:00,125 Lake St, San Francisco,CA,94016 +206433,34in Ultrawide Monitor,1,379.99,2019-05-28 09:34:00,107 Ridge St, Atlanta,GA,30301 +206434,iPhone,1,700.0,2019-05-06 17:08:00,277 West St, Portland,OR,97035 +206434,Lightning Charging Cable,1,14.95,2019-05-06 17:08:00,277 West St, Portland,OR,97035 +206435,USB-C Charging Cable,1,11.95,2019-05-30 18:00:00,683 14th St, Los Angeles,CA,90001 +206436,Flatscreen TV,1,300.0,2019-05-22 16:25:00,11 14th St, San Francisco,CA,94016 +206437,Lightning Charging Cable,1,14.95,2019-05-12 13:12:00,117 1st St, Boston,MA,02215 +206438,AAA Batteries (4-pack),1,2.99,2019-05-07 21:01:00,743 Highland St, Atlanta,GA,30301 +206439,Apple Airpods Headphones,1,150.0,2019-05-17 07:53:00,667 Pine St, Portland,OR,97035 +206440,AAA Batteries (4-pack),1,2.99,2019-05-11 21:55:00,657 10th St, New York City,NY,10001 +206441,Apple Airpods Headphones,1,150.0,2019-05-10 13:04:00,803 Elm St, San Francisco,CA,94016 +206442,Wired Headphones,1,11.99,2019-05-22 17:58:00,652 North St, San Francisco,CA,94016 +206443,Bose SoundSport Headphones,1,99.99,2019-05-02 02:46:00,345 South St, Boston,MA,02215 +206444,AA Batteries (4-pack),1,3.84,2019-05-05 19:59:00,23 Lake St, San Francisco,CA,94016 +206445,USB-C Charging Cable,1,11.95,2019-05-17 14:37:00,367 9th St, New York City,NY,10001 +206446,Flatscreen TV,1,300.0,2019-05-23 13:58:00,97 Elm St, Los Angeles,CA,90001 +206447,Wired Headphones,1,11.99,2019-05-25 00:54:00,406 Spruce St, Atlanta,GA,30301 +206448,Macbook Pro Laptop,1,1700.0,2019-05-04 09:15:00,268 Ridge St, San Francisco,CA,94016 +206449,Apple Airpods Headphones,1,150.0,2019-05-11 10:58:00,866 13th St, San Francisco,CA,94016 +206450,34in Ultrawide Monitor,1,379.99,2019-05-10 17:41:00,819 8th St, Boston,MA,02215 +206451,Wired Headphones,1,11.99,2019-05-11 18:26:00,483 Spruce St, San Francisco,CA,94016 +206452,AA Batteries (4-pack),1,3.84,2019-05-01 15:27:00,704 Washington St, New York City,NY,10001 +206453,ThinkPad Laptop,1,999.99,2019-05-22 09:35:00,390 10th St, San Francisco,CA,94016 +206454,Lightning Charging Cable,1,14.95,2019-05-22 14:29:00,907 Meadow St, Portland,OR,97035 +206455,USB-C Charging Cable,1,11.95,2019-05-19 05:42:00,2 Walnut St, Atlanta,GA,30301 +206456,34in Ultrawide Monitor,1,379.99,2019-05-30 21:22:00,412 Washington St, San Francisco,CA,94016 +206457,20in Monitor,1,109.99,2019-05-04 23:39:00,659 Spruce St, San Francisco,CA,94016 +206458,AA Batteries (4-pack),1,3.84,2019-05-05 17:36:00,714 9th St, San Francisco,CA,94016 +206459,Bose SoundSport Headphones,1,99.99,2019-05-16 16:45:00,886 Forest St, Seattle,WA,98101 +206460,Macbook Pro Laptop,1,1700.0,2019-05-02 12:40:00,975 River St, Seattle,WA,98101 +206461,AAA Batteries (4-pack),1,2.99,2019-05-10 11:05:00,990 North St, New York City,NY,10001 +206462,AA Batteries (4-pack),1,3.84,2019-05-29 20:06:00,895 Jackson St, Atlanta,GA,30301 +206463,Wired Headphones,1,11.99,2019-05-12 13:44:00,201 9th St, Boston,MA,02215 +206464,Apple Airpods Headphones,1,150.0,2019-05-30 01:19:00,478 South St, New York City,NY,10001 +206465,27in 4K Gaming Monitor,1,389.99,2019-05-23 16:22:00,218 Park St, New York City,NY,10001 +206466,Wired Headphones,1,11.99,2019-05-25 14:25:00,998 Park St, Boston,MA,02215 +206467,LG Washing Machine,1,600.0,2019-05-29 13:18:00,978 Walnut St, Los Angeles,CA,90001 +206468,USB-C Charging Cable,1,11.95,2019-05-23 23:53:00,4 4th St, Boston,MA,02215 +206469,Lightning Charging Cable,1,14.95,2019-05-02 11:08:00,387 2nd St, San Francisco,CA,94016 +206470,Bose SoundSport Headphones,1,99.99,2019-05-12 07:56:00,598 Walnut St, San Francisco,CA,94016 +206471,USB-C Charging Cable,1,11.95,2019-05-06 13:22:00,294 Park St, Austin,TX,73301 +206472,AA Batteries (4-pack),1,3.84,2019-05-28 16:37:00,590 Main St, Atlanta,GA,30301 +206473,AA Batteries (4-pack),1,3.84,2019-05-14 21:28:00,503 11th St, San Francisco,CA,94016 +206474,Lightning Charging Cable,1,14.95,2019-05-23 16:23:00,363 Cherry St, Dallas,TX,75001 +206475,27in 4K Gaming Monitor,1,389.99,2019-05-19 17:43:00,264 8th St, New York City,NY,10001 +206476,Bose SoundSport Headphones,1,99.99,2019-05-22 11:55:00,832 Wilson St, Los Angeles,CA,90001 +206476,Lightning Charging Cable,2,14.95,2019-05-22 11:55:00,832 Wilson St, Los Angeles,CA,90001 +206477,ThinkPad Laptop,1,999.99,2019-05-11 20:05:00,96 Walnut St, Los Angeles,CA,90001 +206478,Wired Headphones,1,11.99,2019-05-13 18:42:00,77 Center St, San Francisco,CA,94016 +206479,AAA Batteries (4-pack),2,2.99,2019-05-24 12:44:00,832 Dogwood St, Boston,MA,02215 +206480,AA Batteries (4-pack),1,3.84,2019-05-14 22:59:00,111 Maple St, Atlanta,GA,30301 +206481,27in FHD Monitor,1,149.99,2019-05-05 12:35:00,622 South St, Austin,TX,73301 +206482,Wired Headphones,1,11.99,2019-05-09 11:02:00,788 Madison St, New York City,NY,10001 +206483,AA Batteries (4-pack),1,3.84,2019-05-07 07:30:00,273 Meadow St, Los Angeles,CA,90001 +206484,USB-C Charging Cable,1,11.95,2019-05-20 20:19:00,826 Jackson St, Atlanta,GA,30301 +206485,AAA Batteries (4-pack),1,2.99,2019-05-19 21:30:00,786 Cherry St, Seattle,WA,98101 +206486,AA Batteries (4-pack),1,3.84,2019-05-22 23:22:00,217 1st St, Boston,MA,02215 +206487,Lightning Charging Cable,1,14.95,2019-05-02 15:51:00,753 9th St, Boston,MA,02215 +206488,27in 4K Gaming Monitor,1,389.99,2019-05-05 12:26:00,993 Willow St, Portland,OR,97035 +206489,27in FHD Monitor,1,149.99,2019-05-15 09:04:00,767 13th St, Austin,TX,73301 +206490,USB-C Charging Cable,1,11.95,2019-05-01 07:23:00,79 Center St, San Francisco,CA,94016 +206491,Bose SoundSport Headphones,1,99.99,2019-05-20 15:46:00,331 14th St, Seattle,WA,98101 +206492,AA Batteries (4-pack),1,3.84,2019-05-14 04:19:00,104 Dogwood St, New York City,NY,10001 +206493,Bose SoundSport Headphones,1,99.99,2019-05-17 07:52:00,121 West St, New York City,NY,10001 +206494,27in 4K Gaming Monitor,1,389.99,2019-05-17 11:30:00,739 14th St, San Francisco,CA,94016 +206495,Lightning Charging Cable,1,14.95,2019-05-11 18:05:00,597 Lake St, Seattle,WA,98101 +206496,20in Monitor,1,109.99,2019-05-10 12:32:00,889 Wilson St, San Francisco,CA,94016 +206497,Google Phone,1,600.0,2019-05-26 10:23:00,162 Johnson St, San Francisco,CA,94016 +206497,Lightning Charging Cable,1,14.95,2019-05-26 10:23:00,162 Johnson St, San Francisco,CA,94016 +206498,Wired Headphones,1,11.99,2019-05-01 12:08:00,197 Church St, New York City,NY,10001 +206499,Lightning Charging Cable,1,14.95,2019-05-10 20:12:00,164 South St, San Francisco,CA,94016 +206500,27in 4K Gaming Monitor,1,389.99,2019-05-27 21:47:00,756 Main St, Boston,MA,02215 +206501,Wired Headphones,1,11.99,2019-05-11 10:29:00,398 Dogwood St, Dallas,TX,75001 +206502,Apple Airpods Headphones,1,150.0,2019-05-17 19:01:00,729 Elm St, Boston,MA,02215 +206503,iPhone,1,700.0,2019-05-18 13:12:00,774 Sunset St, Seattle,WA,98101 +206504,AAA Batteries (4-pack),1,2.99,2019-05-24 00:56:00,943 14th St, Atlanta,GA,30301 +206505,Wired Headphones,1,11.99,2019-05-23 09:38:00,563 Washington St, Dallas,TX,75001 +206506,USB-C Charging Cable,1,11.95,2019-05-02 15:23:00,56 13th St, Portland,OR,97035 +206507,AAA Batteries (4-pack),1,2.99,2019-05-07 17:55:00,940 2nd St, Atlanta,GA,30301 +206508,iPhone,1,700.0,2019-05-08 22:41:00,288 Hill St, Boston,MA,02215 +206509,Bose SoundSport Headphones,1,99.99,2019-05-30 00:50:00,662 2nd St, Los Angeles,CA,90001 +206510,AAA Batteries (4-pack),1,2.99,2019-05-16 15:02:00,181 5th St, Atlanta,GA,30301 +206511,Apple Airpods Headphones,1,150.0,2019-05-24 12:35:00,866 Highland St, San Francisco,CA,94016 +206512,Bose SoundSport Headphones,1,99.99,2019-05-24 07:55:00,619 Highland St, Atlanta,GA,30301 +206513,USB-C Charging Cable,1,11.95,2019-05-19 13:42:00,362 Hickory St, Austin,TX,73301 +206514,USB-C Charging Cable,1,11.95,2019-05-02 08:48:00,725 Jefferson St, Austin,TX,73301 +206515,Wired Headphones,1,11.99,2019-05-27 21:41:00,84 6th St, Atlanta,GA,30301 +206516,Wired Headphones,1,11.99,2019-05-05 19:15:00,775 Lakeview St, Boston,MA,02215 +206517,Bose SoundSport Headphones,1,99.99,2019-05-18 19:06:00,251 Church St, Portland,OR,97035 +206518,USB-C Charging Cable,1,11.95,2019-05-12 15:16:00,848 Washington St, Los Angeles,CA,90001 +206519,Apple Airpods Headphones,1,150.0,2019-05-05 20:20:00,548 West St, San Francisco,CA,94016 +206520,Lightning Charging Cable,1,14.95,2019-05-26 14:43:00,980 2nd St, Boston,MA,02215 +206521,Google Phone,1,600.0,2019-05-19 10:03:00,713 Dogwood St, Austin,TX,73301 +206521,Wired Headphones,1,11.99,2019-05-19 10:03:00,713 Dogwood St, Austin,TX,73301 +206522,AAA Batteries (4-pack),1,2.99,2019-05-17 18:55:00,445 Meadow St, Portland,OR,97035 +206523,USB-C Charging Cable,1,11.95,2019-05-25 21:42:00,113 Elm St, Seattle,WA,98101 +206524,AAA Batteries (4-pack),2,2.99,2019-05-24 17:14:00,256 14th St, Dallas,TX,75001 +206525,AAA Batteries (4-pack),3,2.99,2019-05-10 07:04:00,729 Johnson St, Los Angeles,CA,90001 +206526,AA Batteries (4-pack),1,3.84,2019-05-25 21:07:00,832 Lakeview St, Boston,MA,02215 +206527,27in 4K Gaming Monitor,1,389.99,2019-05-27 22:04:00,920 12th St, Dallas,TX,75001 +206528,AAA Batteries (4-pack),1,2.99,2019-05-03 22:08:00,183 Cedar St, Seattle,WA,98101 +206529,iPhone,1,700.0,2019-05-23 15:45:00,203 4th St, Atlanta,GA,30301 +206529,Wired Headphones,1,11.99,2019-05-23 15:45:00,203 4th St, Atlanta,GA,30301 +206530,34in Ultrawide Monitor,1,379.99,2019-05-28 13:38:00,335 7th St, Austin,TX,73301 +206531,27in 4K Gaming Monitor,1,389.99,2019-05-12 21:04:00,171 12th St, Atlanta,GA,30301 +206532,iPhone,1,700.0,2019-05-14 00:11:00,195 Lake St, Austin,TX,73301 +206533,AAA Batteries (4-pack),2,2.99,2019-05-26 00:21:00,986 2nd St, Los Angeles,CA,90001 +206534,Wired Headphones,1,11.99,2019-05-13 21:31:00,28 Johnson St, Los Angeles,CA,90001 +206535,AAA Batteries (4-pack),1,2.99,2019-05-07 11:44:00,605 West St, Austin,TX,73301 +206536,Wired Headphones,1,11.99,2019-05-08 12:53:00,285 Lakeview St, San Francisco,CA,94016 +206537,iPhone,1,700.0,2019-05-27 18:44:00,412 Jackson St, Austin,TX,73301 +206538,AAA Batteries (4-pack),1,2.99,2019-05-26 12:41:00,156 Highland St, San Francisco,CA,94016 +206539,AA Batteries (4-pack),3,3.84,2019-05-07 09:28:00,899 Ridge St, San Francisco,CA,94016 +206540,iPhone,1,700.0,2019-05-29 14:32:00,361 1st St, Los Angeles,CA,90001 +206541,USB-C Charging Cable,1,11.95,2019-05-14 10:33:00,444 Pine St, Atlanta,GA,30301 +206542,Wired Headphones,2,11.99,2019-05-17 12:10:00,91 Cherry St, Austin,TX,73301 +206543,iPhone,1,700.0,2019-05-12 17:39:00,713 Lincoln St, Dallas,TX,75001 +206543,Lightning Charging Cable,1,14.95,2019-05-12 17:39:00,713 Lincoln St, Dallas,TX,75001 +206544,USB-C Charging Cable,1,11.95,2019-05-13 13:38:00,311 Highland St, San Francisco,CA,94016 +206545,Lightning Charging Cable,1,14.95,2019-05-04 16:11:00,80 1st St, Los Angeles,CA,90001 +206546,AAA Batteries (4-pack),2,2.99,2019-05-19 19:14:00,456 Lakeview St, San Francisco,CA,94016 +206547,Bose SoundSport Headphones,1,99.99,2019-05-25 00:05:00,480 Jefferson St, San Francisco,CA,94016 +206548,Apple Airpods Headphones,1,150.0,2019-05-13 21:03:00,882 1st St, Portland,OR,97035 +206549,34in Ultrawide Monitor,1,379.99,2019-05-03 10:39:00,718 Chestnut St, San Francisco,CA,94016 +206550,34in Ultrawide Monitor,1,379.99,2019-05-10 01:36:00,180 Washington St, Seattle,WA,98101 +206551,Google Phone,1,600.0,2019-05-19 09:36:00,225 Elm St, New York City,NY,10001 +206551,USB-C Charging Cable,1,11.95,2019-05-19 09:36:00,225 Elm St, New York City,NY,10001 +206552,AAA Batteries (4-pack),1,2.99,2019-05-03 18:59:00,836 Church St, Atlanta,GA,30301 +206553,27in 4K Gaming Monitor,1,389.99,2019-05-25 20:42:00,454 Johnson St, New York City,NY,10001 +206554,Bose SoundSport Headphones,1,99.99,2019-05-08 15:12:00,522 Elm St, San Francisco,CA,94016 +206555,Wired Headphones,2,11.99,2019-05-12 06:17:00,473 Willow St, San Francisco,CA,94016 +206556,27in FHD Monitor,1,149.99,2019-05-14 20:03:00,89 Highland St, Portland,OR,97035 +206557,Apple Airpods Headphones,1,150.0,2019-05-01 13:07:00,296 Jefferson St, Atlanta,GA,30301 +206558,USB-C Charging Cable,1,11.95,2019-05-01 12:47:00,803 Dogwood St, Portland,ME,04101 +206559,Apple Airpods Headphones,1,150.0,2019-05-07 09:46:00,207 Jackson St, Los Angeles,CA,90001 +206560,Lightning Charging Cable,1,14.95,2019-05-27 14:29:00,96 Dogwood St, Dallas,TX,75001 +206561,Macbook Pro Laptop,1,1700.0,2019-05-24 16:12:00,258 Dogwood St, San Francisco,CA,94016 +206562,Flatscreen TV,1,300.0,2019-05-21 11:44:00,726 Dogwood St, San Francisco,CA,94016 +206563,Wired Headphones,1,11.99,2019-05-05 12:13:00,704 Hill St, Boston,MA,02215 +206564,AAA Batteries (4-pack),1,2.99,2019-05-16 20:45:00,824 Sunset St, San Francisco,CA,94016 +206565,AAA Batteries (4-pack),1,2.99,2019-05-22 08:42:00,642 Cherry St, Seattle,WA,98101 +206566,Apple Airpods Headphones,1,150.0,2019-05-19 13:55:00,527 North St, New York City,NY,10001 +206567,Wired Headphones,1,11.99,2019-05-07 13:25:00,34 Jefferson St, Los Angeles,CA,90001 +206568,Google Phone,1,600.0,2019-05-29 16:57:00,651 Walnut St, Los Angeles,CA,90001 +206569,27in FHD Monitor,1,149.99,2019-05-03 15:10:00,54 Jefferson St, Seattle,WA,98101 +206570,Apple Airpods Headphones,1,150.0,2019-05-22 21:32:00,192 Forest St, Boston,MA,02215 +206571,ThinkPad Laptop,1,999.99,2019-05-07 10:04:00,64 Lake St, San Francisco,CA,94016 +206572,AAA Batteries (4-pack),4,2.99,2019-05-06 10:25:00,368 Sunset St, Boston,MA,02215 +206573,USB-C Charging Cable,1,11.95,2019-05-15 21:50:00,532 Highland St, Dallas,TX,75001 +206574,20in Monitor,1,109.99,2019-05-28 16:53:00,800 2nd St, San Francisco,CA,94016 +206575,Vareebadd Phone,1,400.0,2019-05-28 19:08:00,728 Wilson St, San Francisco,CA,94016 +206576,AAA Batteries (4-pack),1,2.99,2019-05-12 17:06:00,805 Chestnut St, Los Angeles,CA,90001 +206577,iPhone,1,700.0,2019-05-26 19:54:00,579 Park St, Boston,MA,02215 +206578,Bose SoundSport Headphones,1,99.99,2019-05-27 14:48:00,223 Forest St, Portland,OR,97035 +206579,AAA Batteries (4-pack),2,2.99,2019-05-13 14:04:00,696 Dogwood St, Dallas,TX,75001 +206580,Lightning Charging Cable,1,14.95,2019-05-16 10:04:00,673 Cedar St, New York City,NY,10001 +206581,USB-C Charging Cable,1,11.95,2019-05-30 15:00:00,791 9th St, Austin,TX,73301 +206582,AAA Batteries (4-pack),1,2.99,2019-05-23 16:03:00,546 Cherry St, Boston,MA,02215 +206583,AA Batteries (4-pack),1,3.84,2019-05-22 14:08:00,291 Hill St, New York City,NY,10001 +206584,Lightning Charging Cable,1,14.95,2019-05-11 23:11:00,576 6th St, Atlanta,GA,30301 +206585,Bose SoundSport Headphones,1,99.99,2019-05-22 15:29:00,832 Main St, New York City,NY,10001 +206586,34in Ultrawide Monitor,1,379.99,2019-05-15 13:36:00,39 Ridge St, Boston,MA,02215 +206587,AA Batteries (4-pack),1,3.84,2019-05-18 20:41:00,594 Meadow St, San Francisco,CA,94016 +206587,Wired Headphones,1,11.99,2019-05-18 20:41:00,594 Meadow St, San Francisco,CA,94016 +206588,USB-C Charging Cable,1,11.95,2019-05-11 19:50:00,140 Sunset St, Austin,TX,73301 +206589,LG Dryer,1,600.0,2019-05-16 00:27:00,824 Willow St, Dallas,TX,75001 +206590,27in FHD Monitor,1,149.99,2019-05-28 14:23:00,4 Highland St, San Francisco,CA,94016 +206591,Lightning Charging Cable,1,14.95,2019-05-09 09:16:00,211 9th St, Boston,MA,02215 +206592,USB-C Charging Cable,1,11.95,2019-05-12 15:15:00,14 Spruce St, San Francisco,CA,94016 +206593,Apple Airpods Headphones,1,150.0,2019-05-20 07:02:00,854 Cedar St, New York City,NY,10001 +206594,Lightning Charging Cable,1,14.95,2019-05-21 07:01:00,453 Chestnut St, San Francisco,CA,94016 +206595,AAA Batteries (4-pack),1,2.99,2019-05-29 13:09:00,356 Main St, Los Angeles,CA,90001 +206596,Bose SoundSport Headphones,1,99.99,2019-05-07 09:12:00,501 Jefferson St, Los Angeles,CA,90001 +206597,Wired Headphones,1,11.99,2019-05-19 10:49:00,964 Forest St, Los Angeles,CA,90001 +206598,USB-C Charging Cable,1,11.95,2019-05-03 21:06:00,347 Pine St, Portland,OR,97035 +206599,AA Batteries (4-pack),1,3.84,2019-05-03 08:12:00,619 North St, San Francisco,CA,94016 +206600,Wired Headphones,1,11.99,2019-05-04 19:23:00,59 Ridge St, Boston,MA,02215 +206601,Apple Airpods Headphones,1,150.0,2019-05-19 08:39:00,181 Chestnut St, San Francisco,CA,94016 +206602,AAA Batteries (4-pack),1,2.99,2019-05-16 08:55:00,582 Hickory St, Los Angeles,CA,90001 +206603,USB-C Charging Cable,1,11.95,2019-05-30 19:31:00,624 Ridge St, Los Angeles,CA,90001 +206604,Lightning Charging Cable,1,14.95,2019-05-02 20:24:00,45 12th St, San Francisco,CA,94016 +206605,iPhone,1,700.0,2019-05-15 11:44:00,469 Pine St, Portland,OR,97035 +206606,Apple Airpods Headphones,1,150.0,2019-05-30 21:42:00,265 Washington St, San Francisco,CA,94016 +206607,AA Batteries (4-pack),1,3.84,2019-05-17 07:33:00,621 14th St, Dallas,TX,75001 +206608,USB-C Charging Cable,1,11.95,2019-05-10 23:34:00,130 Sunset St, Dallas,TX,75001 +206609,AAA Batteries (4-pack),1,2.99,2019-05-01 17:30:00,564 Forest St, San Francisco,CA,94016 +206610,Bose SoundSport Headphones,1,99.99,2019-05-14 10:16:00,958 Walnut St, Los Angeles,CA,90001 +206611,AAA Batteries (4-pack),1,2.99,2019-05-30 19:02:00,533 Sunset St, San Francisco,CA,94016 +206612,Macbook Pro Laptop,1,1700.0,2019-05-03 07:47:00,416 Lakeview St, Los Angeles,CA,90001 +206613,27in FHD Monitor,1,149.99,2019-05-13 11:10:00,772 Johnson St, Dallas,TX,75001 +206614,27in FHD Monitor,1,149.99,2019-05-11 19:16:00,688 River St, New York City,NY,10001 +206615,USB-C Charging Cable,1,11.95,2019-05-02 14:21:00,267 7th St, Atlanta,GA,30301 +206616,Google Phone,1,600.0,2019-05-30 17:14:00,7 12th St, Los Angeles,CA,90001 +206617,Apple Airpods Headphones,1,150.0,2019-05-18 09:20:00,4 Hickory St, Boston,MA,02215 +206618,Apple Airpods Headphones,1,150.0,2019-05-15 10:12:00,254 Dogwood St, Portland,ME,04101 +206619,AA Batteries (4-pack),2,3.84,2019-05-06 10:02:00,576 5th St, Atlanta,GA,30301 +206620,Flatscreen TV,1,300.0,2019-05-09 19:20:00,707 9th St, San Francisco,CA,94016 +206621,Apple Airpods Headphones,1,150.0,2019-05-08 22:36:00,925 Church St, San Francisco,CA,94016 +206622,Lightning Charging Cable,1,14.95,2019-05-28 17:10:00,324 Adams St, New York City,NY,10001 +206623,27in FHD Monitor,1,149.99,2019-05-12 08:32:00,236 Center St, San Francisco,CA,94016 +206624,iPhone,1,700.0,2019-05-17 17:21:00,954 Walnut St, San Francisco,CA,94016 +206625,AA Batteries (4-pack),1,3.84,2019-05-11 18:35:00,608 South St, Seattle,WA,98101 +206626,Apple Airpods Headphones,1,150.0,2019-05-29 09:51:00,556 Hickory St, Seattle,WA,98101 +206627,27in 4K Gaming Monitor,1,389.99,2019-05-15 12:58:00,419 Church St, Boston,MA,02215 +206628,Wired Headphones,1,11.99,2019-05-21 22:17:00,808 Washington St, New York City,NY,10001 +206629,Macbook Pro Laptop,1,1700.0,2019-05-30 15:02:00,40 Main St, Boston,MA,02215 +206630,Wired Headphones,1,11.99,2019-05-31 16:01:00,2 11th St, San Francisco,CA,94016 +206631,Apple Airpods Headphones,1,150.0,2019-05-18 16:37:00,539 Jackson St, Boston,MA,02215 +206632,Flatscreen TV,1,300.0,2019-05-12 17:02:00,534 Adams St, Los Angeles,CA,90001 +206633,Bose SoundSport Headphones,1,99.99,2019-05-18 18:36:00,873 Jefferson St, San Francisco,CA,94016 +206634,20in Monitor,1,109.99,2019-05-06 11:59:00,303 North St, New York City,NY,10001 +206635,Wired Headphones,1,11.99,2019-05-11 11:44:00,365 Dogwood St, Los Angeles,CA,90001 +206636,Google Phone,1,600.0,2019-05-27 15:49:00,522 Ridge St, Los Angeles,CA,90001 +206637,AAA Batteries (4-pack),2,2.99,2019-05-06 18:21:00,333 Highland St, San Francisco,CA,94016 +206638,AA Batteries (4-pack),1,3.84,2019-05-18 13:45:00,853 Lakeview St, Seattle,WA,98101 +206639,Lightning Charging Cable,1,14.95,2019-05-20 12:42:00,669 Jackson St, San Francisco,CA,94016 +206640,ThinkPad Laptop,1,999.99,2019-05-18 10:30:00,898 Madison St, Boston,MA,02215 +206641,USB-C Charging Cable,2,11.95,2019-05-07 13:14:00,524 10th St, Atlanta,GA,30301 +206642,Wired Headphones,1,11.99,2019-05-28 15:36:00,293 Forest St, Los Angeles,CA,90001 +206643,ThinkPad Laptop,1,999.99,2019-05-14 04:35:00,284 Jackson St, Seattle,WA,98101 +206644,USB-C Charging Cable,1,11.95,2019-05-11 18:48:00,585 Elm St, Boston,MA,02215 +206645,Lightning Charging Cable,1,14.95,2019-05-24 16:52:00,868 Maple St, Los Angeles,CA,90001 +206646,Flatscreen TV,1,300.0,2019-05-20 07:20:00,693 Willow St, Los Angeles,CA,90001 +206647,Wired Headphones,1,11.99,2019-05-15 16:05:00,971 Dogwood St, Dallas,TX,75001 +206648,27in FHD Monitor,1,149.99,2019-05-25 15:57:00,825 Highland St, Los Angeles,CA,90001 +206649,Bose SoundSport Headphones,1,99.99,2019-05-23 23:41:00,817 Johnson St, San Francisco,CA,94016 +206650,ThinkPad Laptop,1,999.99,2019-05-30 22:48:00,109 Adams St, Austin,TX,73301 +206651,USB-C Charging Cable,1,11.95,2019-05-25 22:55:00,463 Sunset St, Los Angeles,CA,90001 +206652,USB-C Charging Cable,1,11.95,2019-05-11 02:43:00,586 Washington St, San Francisco,CA,94016 +206653,USB-C Charging Cable,1,11.95,2019-05-11 15:59:00,935 Washington St, San Francisco,CA,94016 +206654,Apple Airpods Headphones,1,150.0,2019-05-03 20:38:00,52 Chestnut St, New York City,NY,10001 +206655,Vareebadd Phone,1,400.0,2019-05-08 18:10:00,353 Johnson St, Boston,MA,02215 +206655,USB-C Charging Cable,1,11.95,2019-05-08 18:10:00,353 Johnson St, Boston,MA,02215 +206655,Wired Headphones,1,11.99,2019-05-08 18:10:00,353 Johnson St, Boston,MA,02215 +206656,Lightning Charging Cable,2,14.95,2019-05-03 03:56:00,914 Sunset St, Dallas,TX,75001 +206657,Lightning Charging Cable,1,14.95,2019-05-01 12:44:00,450 Lake St, San Francisco,CA,94016 +206658,AA Batteries (4-pack),2,3.84,2019-05-21 13:55:00,589 Wilson St, San Francisco,CA,94016 +206659,Flatscreen TV,1,300.0,2019-05-08 04:58:00,208 Main St, Portland,OR,97035 +206659,Apple Airpods Headphones,1,150.0,2019-05-08 04:58:00,208 Main St, Portland,OR,97035 +206660,AAA Batteries (4-pack),1,2.99,2019-05-30 19:34:00,740 Jefferson St, Dallas,TX,75001 +206661,AAA Batteries (4-pack),1,2.99,2019-05-07 09:51:00,68 8th St, Boston,MA,02215 +206662,Flatscreen TV,1,300.0,2019-05-08 14:53:00,302 Hill St, New York City,NY,10001 +206663,Wired Headphones,2,11.99,2019-05-21 23:29:00,991 Lakeview St, Dallas,TX,75001 +206664,Apple Airpods Headphones,1,150.0,2019-05-17 22:44:00,43 Highland St, Los Angeles,CA,90001 +206665,USB-C Charging Cable,1,11.95,2019-05-26 18:02:00,36 Chestnut St, Dallas,TX,75001 +206666,AA Batteries (4-pack),2,3.84,2019-05-30 21:21:00,605 Willow St, Seattle,WA,98101 +206667,Bose SoundSport Headphones,1,99.99,2019-05-04 20:23:00,920 Lakeview St, Portland,OR,97035 +206668,AAA Batteries (4-pack),1,2.99,2019-05-12 17:41:00,936 South St, New York City,NY,10001 +206669,Bose SoundSport Headphones,1,99.99,2019-05-22 14:57:00,166 10th St, New York City,NY,10001 +206670,Apple Airpods Headphones,1,150.0,2019-05-03 13:20:00,692 9th St, San Francisco,CA,94016 +206671,USB-C Charging Cable,1,11.95,2019-05-24 18:02:00,687 Maple St, Dallas,TX,75001 +206672,Lightning Charging Cable,1,14.95,2019-05-02 06:23:00,247 Washington St, Los Angeles,CA,90001 +206673,AAA Batteries (4-pack),1,2.99,2019-05-08 16:14:00,354 North St, Atlanta,GA,30301 +206674,AAA Batteries (4-pack),1,2.99,2019-05-31 12:33:00,541 9th St, Boston,MA,02215 +206675,AAA Batteries (4-pack),1,2.99,2019-05-18 12:02:00,393 5th St, New York City,NY,10001 +206676,Wired Headphones,1,11.99,2019-05-14 05:40:00,300 Wilson St, New York City,NY,10001 +206677,34in Ultrawide Monitor,1,379.99,2019-05-14 09:55:00,695 7th St, Austin,TX,73301 +206678,27in 4K Gaming Monitor,1,389.99,2019-05-06 18:16:00,919 Pine St, Portland,OR,97035 +206679,AAA Batteries (4-pack),1,2.99,2019-05-20 14:57:00,919 Cedar St, Boston,MA,02215 +206680,USB-C Charging Cable,1,11.95,2019-05-04 11:11:00,684 Jefferson St, Seattle,WA,98101 +206681,AAA Batteries (4-pack),1,2.99,2019-05-28 01:35:00,120 Ridge St, Boston,MA,02215 +206682,Lightning Charging Cable,2,14.95,2019-05-24 20:36:00,956 Ridge St, Seattle,WA,98101 +206683,Apple Airpods Headphones,1,150.0,2019-05-31 08:42:00,968 Willow St, Los Angeles,CA,90001 +206684,USB-C Charging Cable,1,11.95,2019-05-07 10:11:00,247 11th St, New York City,NY,10001 +206685,Wired Headphones,1,11.99,2019-05-20 00:19:00,606 Jefferson St, Los Angeles,CA,90001 +206686,Wired Headphones,1,11.99,2019-05-14 12:45:00,669 Sunset St, Portland,OR,97035 +206687,27in FHD Monitor,1,149.99,2019-05-31 08:07:00,343 Forest St, New York City,NY,10001 +206688,AA Batteries (4-pack),1,3.84,2019-05-22 14:28:00,627 Church St, San Francisco,CA,94016 +206689,Wired Headphones,1,11.99,2019-05-07 18:09:00,502 Hill St, Dallas,TX,75001 +206690,Wired Headphones,2,11.99,2019-05-18 20:18:00,203 Elm St, New York City,NY,10001 +206691,27in FHD Monitor,1,149.99,2019-05-23 06:48:00,998 Spruce St, Atlanta,GA,30301 +206692,Lightning Charging Cable,1,14.95,2019-05-10 13:45:00,14 Dogwood St, San Francisco,CA,94016 +206693,Google Phone,1,600.0,2019-05-24 19:02:00,141 Lakeview St, New York City,NY,10001 +206694,27in FHD Monitor,1,149.99,2019-05-08 13:59:00,446 11th St, New York City,NY,10001 +206695,Bose SoundSport Headphones,1,99.99,2019-05-20 23:22:00,307 Spruce St, Atlanta,GA,30301 +206696,Flatscreen TV,1,300.0,2019-05-17 20:01:00,524 North St, San Francisco,CA,94016 +206697,Macbook Pro Laptop,1,1700.0,2019-05-05 13:20:00,221 South St, Boston,MA,02215 +206698,Bose SoundSport Headphones,1,99.99,2019-05-16 07:34:00,344 11th St, Boston,MA,02215 +206699,Bose SoundSport Headphones,1,99.99,2019-05-20 13:54:00,985 Lincoln St, Austin,TX,73301 +206700,20in Monitor,1,109.99,2019-05-31 14:52:00,331 14th St, San Francisco,CA,94016 +206701,Google Phone,1,600.0,2019-05-09 10:43:00,809 5th St, New York City,NY,10001 +206702,Google Phone,1,600.0,2019-05-20 19:06:00,857 Willow St, Seattle,WA,98101 +206703,27in 4K Gaming Monitor,1,389.99,2019-05-27 11:45:00,319 11th St, Atlanta,GA,30301 +206704,Lightning Charging Cable,1,14.95,2019-05-31 15:24:00,570 South St, Atlanta,GA,30301 +206705,AAA Batteries (4-pack),1,2.99,2019-05-24 06:32:00,377 Johnson St, Los Angeles,CA,90001 +206706,Google Phone,1,600.0,2019-05-23 21:23:00,784 Walnut St, Seattle,WA,98101 +206706,Wired Headphones,1,11.99,2019-05-23 21:23:00,784 Walnut St, Seattle,WA,98101 +206707,iPhone,1,700.0,2019-05-07 17:04:00,707 8th St, New York City,NY,10001 +206708,Flatscreen TV,1,300.0,2019-05-27 15:56:00,906 Cherry St, Portland,ME,04101 +206709,27in FHD Monitor,1,149.99,2019-05-26 08:18:00,983 Cherry St, Atlanta,GA,30301 +206710,USB-C Charging Cable,1,11.95,2019-05-12 19:58:00,20 Church St, Austin,TX,73301 +206711,Bose SoundSport Headphones,1,99.99,2019-05-13 13:24:00,433 8th St, San Francisco,CA,94016 +206712,ThinkPad Laptop,1,999.99,2019-05-19 22:48:00,860 Meadow St, Atlanta,GA,30301 +206713,Apple Airpods Headphones,1,150.0,2019-05-08 23:50:00,279 14th St, Los Angeles,CA,90001 +206714,Bose SoundSport Headphones,1,99.99,2019-05-06 19:41:00,951 Lakeview St, Dallas,TX,75001 +206715,AA Batteries (4-pack),3,3.84,2019-05-21 20:02:00,821 Cherry St, Seattle,WA,98101 +206716,USB-C Charging Cable,1,11.95,2019-05-25 07:47:00,444 Wilson St, San Francisco,CA,94016 +206717,Apple Airpods Headphones,1,150.0,2019-05-08 11:35:00,896 Madison St, Seattle,WA,98101 +206718,iPhone,1,700.0,2019-05-22 12:02:00,705 Highland St, Dallas,TX,75001 +206719,AA Batteries (4-pack),2,3.84,2019-05-30 07:33:00,519 Spruce St, San Francisco,CA,94016 +206720,AA Batteries (4-pack),3,3.84,2019-05-13 15:52:00,979 Lincoln St, Portland,OR,97035 +206721,ThinkPad Laptop,1,999.99,2019-05-03 18:55:00,929 1st St, Portland,ME,04101 +206722,Apple Airpods Headphones,1,150.0,2019-05-24 09:22:00,813 Church St, Los Angeles,CA,90001 +206723,Bose SoundSport Headphones,1,99.99,2019-05-13 00:19:00,101 Lincoln St, Boston,MA,02215 +206724,Lightning Charging Cable,1,14.95,2019-05-07 02:29:00,548 Hickory St, Atlanta,GA,30301 +206725,iPhone,1,700.0,2019-05-05 16:42:00,19 11th St, Boston,MA,02215 +206725,Apple Airpods Headphones,1,150.0,2019-05-05 16:42:00,19 11th St, Boston,MA,02215 +206726,Apple Airpods Headphones,1,150.0,2019-05-11 11:21:00,712 6th St, Los Angeles,CA,90001 +206727,Apple Airpods Headphones,1,150.0,2019-05-22 17:33:00,477 14th St, Atlanta,GA,30301 +206728,AA Batteries (4-pack),1,3.84,2019-05-01 15:02:00,949 West St, Atlanta,GA,30301 +206729,34in Ultrawide Monitor,1,379.99,2019-05-22 15:03:00,460 7th St, Portland,ME,04101 +206730,20in Monitor,1,109.99,2019-05-09 14:43:00,982 Chestnut St, Portland,OR,97035 +206731,AAA Batteries (4-pack),1,2.99,2019-05-13 13:48:00,999 Wilson St, Portland,OR,97035 +206732,AA Batteries (4-pack),2,3.84,2019-05-12 20:36:00,708 Center St, New York City,NY,10001 +206733,Apple Airpods Headphones,1,150.0,2019-05-14 11:10:00,103 Pine St, San Francisco,CA,94016 +206734,27in FHD Monitor,1,149.99,2019-05-12 11:29:00,295 Lake St, New York City,NY,10001 +206735,Wired Headphones,1,11.99,2019-05-06 14:23:00,999 Park St, Austin,TX,73301 +206736,Wired Headphones,1,11.99,2019-05-25 14:37:00,620 Highland St, Austin,TX,73301 +206737,Wired Headphones,1,11.99,2019-05-08 13:21:00,750 Park St, San Francisco,CA,94016 +206738,27in FHD Monitor,1,149.99,2019-05-09 10:35:00,879 Ridge St, Atlanta,GA,30301 +206739,Lightning Charging Cable,2,14.95,2019-05-24 11:26:00,926 8th St, Los Angeles,CA,90001 +206740,Apple Airpods Headphones,1,150.0,2019-05-03 14:50:00,753 5th St, New York City,NY,10001 +206741,27in FHD Monitor,1,149.99,2019-05-31 19:15:00,7 Hill St, Atlanta,GA,30301 +206742,Macbook Pro Laptop,1,1700.0,2019-05-09 23:41:00,549 11th St, Austin,TX,73301 +206743,USB-C Charging Cable,1,11.95,2019-05-28 13:08:00,901 Park St, Atlanta,GA,30301 +206743,Bose SoundSport Headphones,1,99.99,2019-05-28 13:08:00,901 Park St, Atlanta,GA,30301 +206744,AAA Batteries (4-pack),1,2.99,2019-05-13 14:42:00,480 Ridge St, New York City,NY,10001 +206745,AAA Batteries (4-pack),1,2.99,2019-05-23 17:52:00,128 Lincoln St, Los Angeles,CA,90001 +206746,Macbook Pro Laptop,1,1700.0,2019-05-02 17:08:00,616 Cherry St, Dallas,TX,75001 +206747,USB-C Charging Cable,1,11.95,2019-05-10 10:22:00,230 Ridge St, Seattle,WA,98101 +206748,USB-C Charging Cable,2,11.95,2019-05-08 22:40:00,457 14th St, San Francisco,CA,94016 +206749,Bose SoundSport Headphones,1,99.99,2019-05-12 19:54:00,838 Adams St, San Francisco,CA,94016 +206750,Wired Headphones,1,11.99,2019-05-29 21:39:00,808 4th St, Austin,TX,73301 +206751,Lightning Charging Cable,1,14.95,2019-05-19 17:46:00,343 Forest St, Los Angeles,CA,90001 +206752,Lightning Charging Cable,1,14.95,2019-05-31 21:08:00,789 2nd St, Los Angeles,CA,90001 +206753,Bose SoundSport Headphones,1,99.99,2019-05-02 21:39:00,251 Cedar St, Boston,MA,02215 +206754,Bose SoundSport Headphones,1,99.99,2019-05-03 00:01:00,946 Jefferson St, Portland,ME,04101 +206755,Bose SoundSport Headphones,1,99.99,2019-05-31 13:35:00,170 10th St, New York City,NY,10001 +206756,Apple Airpods Headphones,1,150.0,2019-05-01 12:46:00,890 Chestnut St, Seattle,WA,98101 +206757,Macbook Pro Laptop,1,1700.0,2019-05-26 14:29:00,293 Dogwood St, Portland,ME,04101 +206758,Google Phone,1,600.0,2019-05-22 10:03:00,903 Meadow St, Dallas,TX,75001 +206759,AA Batteries (4-pack),1,3.84,2019-05-01 17:10:00,435 13th St, Seattle,WA,98101 +206760,27in FHD Monitor,1,149.99,2019-05-07 12:36:00,640 North St, Austin,TX,73301 +206761,Bose SoundSport Headphones,1,99.99,2019-05-15 16:24:00,242 Lakeview St, San Francisco,CA,94016 +206762,Bose SoundSport Headphones,1,99.99,2019-05-18 20:52:00,968 Highland St, San Francisco,CA,94016 +206763,AAA Batteries (4-pack),2,2.99,2019-05-11 06:55:00,445 Lakeview St, Boston,MA,02215 +206764,USB-C Charging Cable,1,11.95,2019-05-17 07:14:00,14 North St, San Francisco,CA,94016 +206765,Lightning Charging Cable,1,14.95,2019-05-15 13:56:00,295 Main St, New York City,NY,10001 +206766,27in FHD Monitor,1,149.99,2019-05-10 00:34:00,924 Hill St, Atlanta,GA,30301 +206766,Macbook Pro Laptop,1,1700.0,2019-05-10 00:34:00,924 Hill St, Atlanta,GA,30301 +206767,Lightning Charging Cable,1,14.95,2019-05-20 21:05:00,990 14th St, Seattle,WA,98101 +206768,USB-C Charging Cable,1,11.95,2019-05-10 11:58:00,470 Forest St, Boston,MA,02215 +206769,ThinkPad Laptop,1,999.99,2019-05-05 05:57:00,606 Hill St, Los Angeles,CA,90001 +206770,AA Batteries (4-pack),2,3.84,2019-05-16 13:34:00,354 Adams St, New York City,NY,10001 +206771,Bose SoundSport Headphones,1,99.99,2019-05-18 23:50:00,499 5th St, Dallas,TX,75001 +206772,Wired Headphones,1,11.99,2019-05-02 22:48:00,652 Wilson St, Los Angeles,CA,90001 +206773,Flatscreen TV,1,300.0,2019-05-14 11:01:00,544 Lake St, Dallas,TX,75001 +206774,AAA Batteries (4-pack),2,2.99,2019-05-23 20:06:00,521 Sunset St, San Francisco,CA,94016 +206775,Wired Headphones,1,11.99,2019-05-13 18:59:00,266 13th St, Seattle,WA,98101 +206776,Lightning Charging Cable,1,14.95,2019-05-09 20:27:00,565 4th St, San Francisco,CA,94016 +206777,USB-C Charging Cable,1,11.95,2019-05-13 20:56:00,79 Main St, Seattle,WA,98101 +206778,AA Batteries (4-pack),2,3.84,2019-05-22 21:00:00,104 13th St, Portland,ME,04101 +206779,Wired Headphones,1,11.99,2019-05-21 16:45:00,47 Main St, Los Angeles,CA,90001 +206780,Wired Headphones,1,11.99,2019-05-10 20:04:00,449 Adams St, Boston,MA,02215 +206781,Bose SoundSport Headphones,1,99.99,2019-05-15 17:26:00,700 4th St, Los Angeles,CA,90001 +206782,Lightning Charging Cable,1,14.95,2019-05-30 17:21:00,631 South St, Seattle,WA,98101 +206783,Apple Airpods Headphones,1,150.0,2019-05-30 19:52:00,784 Dogwood St, Los Angeles,CA,90001 +206784,iPhone,1,700.0,2019-05-12 14:00:00,353 11th St, Atlanta,GA,30301 +206784,Wired Headphones,1,11.99,2019-05-12 14:00:00,353 11th St, Atlanta,GA,30301 +206785,AA Batteries (4-pack),1,3.84,2019-05-17 18:30:00,203 Wilson St, New York City,NY,10001 +206786,Wired Headphones,1,11.99,2019-05-13 08:32:00,209 Highland St, Dallas,TX,75001 +206787,AA Batteries (4-pack),1,3.84,2019-05-29 17:44:00,442 Sunset St, San Francisco,CA,94016 +206788,AAA Batteries (4-pack),1,2.99,2019-05-31 09:30:00,601 Johnson St, Dallas,TX,75001 +206789,AA Batteries (4-pack),2,3.84,2019-05-26 16:29:00,947 Lincoln St, Portland,OR,97035 +206790,Wired Headphones,1,11.99,2019-05-30 10:45:00,571 Dogwood St, Los Angeles,CA,90001 +206791,27in 4K Gaming Monitor,1,389.99,2019-05-12 13:09:00,609 Willow St, Austin,TX,73301 +206792,Apple Airpods Headphones,1,150.0,2019-05-19 18:14:00,252 13th St, Dallas,TX,75001 +206793,AAA Batteries (4-pack),2,2.99,2019-05-15 23:48:00,905 Pine St, Dallas,TX,75001 +206794,Wired Headphones,1,11.99,2019-05-29 15:22:00,47 Lincoln St, San Francisco,CA,94016 +206795,Wired Headphones,1,11.99,2019-05-26 20:08:00,947 Chestnut St, San Francisco,CA,94016 +206796,USB-C Charging Cable,1,11.95,2019-05-14 16:23:00,66 1st St, San Francisco,CA,94016 +206797,AAA Batteries (4-pack),1,2.99,2019-05-05 06:46:00,645 Walnut St, Boston,MA,02215 +206798,Apple Airpods Headphones,1,150.0,2019-05-05 06:03:00,50 Madison St, Austin,TX,73301 +206799,Bose SoundSport Headphones,1,99.99,2019-05-14 21:43:00,152 8th St, New York City,NY,10001 +206800,Lightning Charging Cable,1,14.95,2019-05-17 11:24:00,48 12th St, Seattle,WA,98101 +206801,Apple Airpods Headphones,1,150.0,2019-05-24 20:35:00,252 Lincoln St, Los Angeles,CA,90001 +206802,Lightning Charging Cable,1,14.95,2019-05-07 19:17:00,349 5th St, Los Angeles,CA,90001 +206803,Lightning Charging Cable,1,14.95,2019-05-18 20:22:00,433 14th St, Dallas,TX,75001 +206804,AA Batteries (4-pack),2,3.84,2019-05-13 10:29:00,772 5th St, San Francisco,CA,94016 +206805,Apple Airpods Headphones,1,150.0,2019-05-25 23:38:00,387 Cherry St, Los Angeles,CA,90001 +206806,Wired Headphones,1,11.99,2019-05-09 08:56:00,483 Jackson St, Atlanta,GA,30301 +206807,Lightning Charging Cable,1,14.95,2019-05-27 22:39:00,386 8th St, Los Angeles,CA,90001 +206808,Bose SoundSport Headphones,1,99.99,2019-05-05 08:49:00,677 Ridge St, Portland,OR,97035 +206809,Bose SoundSport Headphones,1,99.99,2019-05-22 01:02:00,307 Pine St, San Francisco,CA,94016 +206810,USB-C Charging Cable,1,11.95,2019-05-12 09:26:00,512 9th St, San Francisco,CA,94016 +206811,AAA Batteries (4-pack),1,2.99,2019-05-16 07:23:00,818 Meadow St, Los Angeles,CA,90001 +206812,AAA Batteries (4-pack),1,2.99,2019-05-03 18:29:00,624 Center St, San Francisco,CA,94016 +206813,Wired Headphones,1,11.99,2019-05-22 11:42:00,622 Lake St, Los Angeles,CA,90001 +206814,AA Batteries (4-pack),1,3.84,2019-05-13 19:27:00,821 North St, San Francisco,CA,94016 +206815,27in FHD Monitor,1,149.99,2019-05-07 21:31:00,812 12th St, Portland,OR,97035 +206816,27in 4K Gaming Monitor,1,389.99,2019-05-21 10:30:00,91 8th St, New York City,NY,10001 +206817,Wired Headphones,1,11.99,2019-05-15 18:52:00,193 Spruce St, Los Angeles,CA,90001 +206818,Google Phone,1,600.0,2019-05-11 12:01:00,100 Forest St, Dallas,TX,75001 +206819,AAA Batteries (4-pack),1,2.99,2019-05-24 18:12:00,61 West St, Seattle,WA,98101 +206820,Bose SoundSport Headphones,1,99.99,2019-05-12 21:20:00,666 Washington St, New York City,NY,10001 +206821,USB-C Charging Cable,1,11.95,2019-05-30 17:26:00,157 Wilson St, Austin,TX,73301 +206822,AAA Batteries (4-pack),2,2.99,2019-05-25 11:30:00,346 Washington St, San Francisco,CA,94016 +206823,AAA Batteries (4-pack),1,2.99,2019-05-08 18:26:00,126 Johnson St, Portland,OR,97035 +206824,27in 4K Gaming Monitor,1,389.99,2019-05-07 16:57:00,946 Lincoln St, Seattle,WA,98101 +206825,AA Batteries (4-pack),1,3.84,2019-05-23 08:18:00,296 Church St, San Francisco,CA,94016 +206826,AAA Batteries (4-pack),1,2.99,2019-05-08 09:05:00,777 Maple St, Portland,OR,97035 +206827,Wired Headphones,1,11.99,2019-05-10 20:37:00,18 Hickory St, Los Angeles,CA,90001 +206828,27in FHD Monitor,1,149.99,2019-05-10 15:57:00,602 South St, Boston,MA,02215 +206829,AA Batteries (4-pack),2,3.84,2019-05-21 17:47:00,991 Cedar St, San Francisco,CA,94016 +206830,AA Batteries (4-pack),1,3.84,2019-05-22 21:46:00,720 Washington St, San Francisco,CA,94016 +206831,Wired Headphones,1,11.99,2019-05-12 13:03:00,187 Elm St, New York City,NY,10001 +206832,27in 4K Gaming Monitor,1,389.99,2019-05-24 12:43:00,389 Center St, Austin,TX,73301 +206833,Lightning Charging Cable,1,14.95,2019-05-26 12:28:00,588 7th St, San Francisco,CA,94016 +206834,27in 4K Gaming Monitor,1,389.99,2019-05-20 20:18:00,726 9th St, Atlanta,GA,30301 +206835,Wired Headphones,1,11.99,2019-05-10 13:12:00,486 Jackson St, Boston,MA,02215 +206836,Macbook Pro Laptop,1,1700.0,2019-05-20 18:08:00,333 Jackson St, Dallas,TX,75001 +206837,20in Monitor,1,109.99,2019-05-06 17:07:00,650 Washington St, Los Angeles,CA,90001 +206838,USB-C Charging Cable,1,11.95,2019-05-01 13:18:00,557 Church St, Dallas,TX,75001 +206839,20in Monitor,1,109.99,2019-05-13 21:41:00,976 Highland St, Los Angeles,CA,90001 +206840,27in 4K Gaming Monitor,1,389.99,2019-05-21 22:05:00,114 Chestnut St, Los Angeles,CA,90001 +206841,AAA Batteries (4-pack),1,2.99,2019-05-12 14:40:00,35 Center St, Los Angeles,CA,90001 +206842,Bose SoundSport Headphones,1,99.99,2019-05-15 21:29:00,41 Lincoln St, New York City,NY,10001 +206843,Apple Airpods Headphones,1,150.0,2019-05-26 14:32:00,661 Cherry St, San Francisco,CA,94016 +206844,AA Batteries (4-pack),2,3.84,2019-05-08 18:12:00,652 West St, Dallas,TX,75001 +206845,AA Batteries (4-pack),1,3.84,2019-05-04 12:17:00,23 Meadow St, Portland,OR,97035 +206846,Bose SoundSport Headphones,1,99.99,2019-05-29 03:37:00,99 Jackson St, Los Angeles,CA,90001 +206847,27in 4K Gaming Monitor,1,389.99,2019-05-28 15:06:00,57 2nd St, Dallas,TX,75001 +206848,34in Ultrawide Monitor,1,379.99,2019-05-27 14:38:00,671 North St, San Francisco,CA,94016 +206849,Lightning Charging Cable,2,14.95,2019-05-07 18:55:00,713 9th St, San Francisco,CA,94016 +206850,Wired Headphones,1,11.99,2019-05-09 21:49:00,444 12th St, San Francisco,CA,94016 +206851,AAA Batteries (4-pack),3,2.99,2019-05-14 08:17:00,3 Madison St, San Francisco,CA,94016 +206852,USB-C Charging Cable,2,11.95,2019-05-06 12:37:00,98 Adams St, Atlanta,GA,30301 +206853,27in FHD Monitor,1,149.99,2019-05-03 19:19:00,756 5th St, San Francisco,CA,94016 +206854,USB-C Charging Cable,2,11.95,2019-05-15 12:42:00,906 Sunset St, Boston,MA,02215 +206855,USB-C Charging Cable,1,11.95,2019-05-04 14:46:00,921 Center St, Portland,OR,97035 +206856,27in FHD Monitor,1,149.99,2019-05-02 10:29:00,854 Cedar St, San Francisco,CA,94016 +206857,AA Batteries (4-pack),1,3.84,2019-05-09 14:25:00,334 12th St, Boston,MA,02215 +206858,Lightning Charging Cable,1,14.95,2019-05-02 11:42:00,447 River St, Seattle,WA,98101 +206859,AAA Batteries (4-pack),4,2.99,2019-05-14 14:14:00,810 Hill St, San Francisco,CA,94016 +206860,Lightning Charging Cable,1,14.95,2019-05-04 19:35:00,665 Willow St, Austin,TX,73301 +206861,Wired Headphones,1,11.99,2019-05-16 12:32:00,702 11th St, Los Angeles,CA,90001 +206862,USB-C Charging Cable,1,11.95,2019-05-04 12:34:00,854 Chestnut St, New York City,NY,10001 +206863,Lightning Charging Cable,1,14.95,2019-05-04 17:17:00,214 Chestnut St, New York City,NY,10001 +206864,Bose SoundSport Headphones,1,99.99,2019-05-01 20:32:00,871 5th St, Atlanta,GA,30301 +206865,34in Ultrawide Monitor,1,379.99,2019-05-22 00:16:00,612 Sunset St, Los Angeles,CA,90001 +206866,27in 4K Gaming Monitor,1,389.99,2019-05-23 22:51:00,240 13th St, Los Angeles,CA,90001 +206867,AAA Batteries (4-pack),2,2.99,2019-05-05 18:53:00,765 Hill St, San Francisco,CA,94016 +206868,Lightning Charging Cable,1,14.95,2019-05-14 16:01:00,828 Church St, Boston,MA,02215 +206869,Macbook Pro Laptop,1,1700.0,2019-05-30 20:57:00,62 Hickory St, Dallas,TX,75001 +206870,Apple Airpods Headphones,1,150.0,2019-05-25 08:46:00,310 Sunset St, Portland,OR,97035 +206871,AAA Batteries (4-pack),1,2.99,2019-05-13 14:03:00,689 11th St, Los Angeles,CA,90001 +206872,USB-C Charging Cable,1,11.95,2019-05-22 17:49:00,518 Park St, Seattle,WA,98101 +206873,AA Batteries (4-pack),2,3.84,2019-05-12 12:11:00,652 Highland St, San Francisco,CA,94016 +206874,Wired Headphones,1,11.99,2019-05-01 10:36:00,557 South St, San Francisco,CA,94016 +206875,Apple Airpods Headphones,1,150.0,2019-05-06 16:51:00,312 2nd St, New York City,NY,10001 +206876,27in FHD Monitor,1,149.99,2019-05-30 17:55:00,373 Jefferson St, Los Angeles,CA,90001 +206877,AAA Batteries (4-pack),1,2.99,2019-05-15 05:26:00,606 Walnut St, Dallas,TX,75001 +206878,Bose SoundSport Headphones,1,99.99,2019-05-02 19:09:00,965 North St, New York City,NY,10001 +206879,Wired Headphones,1,11.99,2019-05-16 09:46:00,137 Cedar St, New York City,NY,10001 +206880,AAA Batteries (4-pack),1,2.99,2019-05-29 03:25:00,254 Sunset St, San Francisco,CA,94016 +206881,Google Phone,1,600.0,2019-05-19 10:27:00,167 West St, San Francisco,CA,94016 +206882,34in Ultrawide Monitor,1,379.99,2019-05-23 00:14:00,418 Adams St, Seattle,WA,98101 +206883,Lightning Charging Cable,1,14.95,2019-05-02 16:44:00,467 Spruce St, Boston,MA,02215 +206884,27in 4K Gaming Monitor,1,389.99,2019-05-28 20:54:00,209 Willow St, Boston,MA,02215 +206885,AAA Batteries (4-pack),1,2.99,2019-05-07 16:32:00,378 Park St, Dallas,TX,75001 +206886,20in Monitor,1,109.99,2019-05-22 18:12:00,730 Pine St, San Francisco,CA,94016 +206887,Wired Headphones,1,11.99,2019-05-15 14:42:00,204 13th St, New York City,NY,10001 +206888,USB-C Charging Cable,2,11.95,2019-05-24 11:26:00,760 West St, San Francisco,CA,94016 +206889,Lightning Charging Cable,1,14.95,2019-05-29 20:14:00,291 Hill St, Dallas,TX,75001 +206890,Flatscreen TV,1,300.0,2019-05-02 13:19:00,287 7th St, San Francisco,CA,94016 +206891,USB-C Charging Cable,1,11.95,2019-05-30 19:45:00,134 10th St, Boston,MA,02215 +206892,Lightning Charging Cable,1,14.95,2019-05-21 19:52:00,699 Lincoln St, New York City,NY,10001 +206893,Bose SoundSport Headphones,1,99.99,2019-05-03 11:32:00,242 Walnut St, Seattle,WA,98101 +206894,AA Batteries (4-pack),1,3.84,2019-05-24 12:25:00,932 7th St, New York City,NY,10001 +206895,ThinkPad Laptop,1,999.99,2019-05-03 07:44:00,98 Cedar St, Dallas,TX,75001 +206896,Wired Headphones,1,11.99,2019-05-28 09:00:00,863 Meadow St, Dallas,TX,75001 +206897,Wired Headphones,2,11.99,2019-05-26 14:32:00,284 13th St, San Francisco,CA,94016 +206898,Bose SoundSport Headphones,1,99.99,2019-05-13 09:40:00,827 9th St, Seattle,WA,98101 +206899,Wired Headphones,1,11.99,2019-05-19 20:59:00,587 Dogwood St, San Francisco,CA,94016 +206900,AAA Batteries (4-pack),1,2.99,2019-05-23 09:27:00,297 13th St, Los Angeles,CA,90001 +206901,AAA Batteries (4-pack),1,2.99,2019-05-31 09:41:00,524 Forest St, Los Angeles,CA,90001 +206902,Apple Airpods Headphones,1,150.0,2019-05-26 05:15:00,976 Main St, Los Angeles,CA,90001 +206903,ThinkPad Laptop,1,999.99,2019-05-09 10:11:00,127 South St, Portland,ME,04101 +206904,AA Batteries (4-pack),1,3.84,2019-05-14 02:57:00,550 Spruce St, Atlanta,GA,30301 +206905,iPhone,1,700.0,2019-05-02 13:54:00,458 Lakeview St, New York City,NY,10001 +206906,AA Batteries (4-pack),1,3.84,2019-05-18 19:42:00,35 Washington St, San Francisco,CA,94016 +206907,AA Batteries (4-pack),1,3.84,2019-05-02 21:02:00,711 Jackson St, New York City,NY,10001 +206908,Apple Airpods Headphones,1,150.0,2019-05-09 19:59:00,567 Chestnut St, New York City,NY,10001 +206909,AAA Batteries (4-pack),1,2.99,2019-05-19 18:20:00,36 River St, Portland,OR,97035 +206910,Wired Headphones,1,11.99,2019-05-10 12:39:00,256 Highland St, Seattle,WA,98101 +206911,USB-C Charging Cable,2,11.95,2019-05-17 12:17:00,248 Johnson St, Los Angeles,CA,90001 +206912,AA Batteries (4-pack),1,3.84,2019-05-12 13:46:00,691 6th St, San Francisco,CA,94016 +206913,34in Ultrawide Monitor,1,379.99,2019-05-23 14:27:00,470 Ridge St, Boston,MA,02215 +206914,Bose SoundSport Headphones,1,99.99,2019-05-29 20:54:00,181 Ridge St, San Francisco,CA,94016 +206915,Bose SoundSport Headphones,1,99.99,2019-05-07 09:16:00,464 Johnson St, New York City,NY,10001 +206916,Macbook Pro Laptop,1,1700.0,2019-05-26 11:31:00,897 Chestnut St, San Francisco,CA,94016 +206917,AAA Batteries (4-pack),1,2.99,2019-05-04 13:20:00,122 Spruce St, San Francisco,CA,94016 +206918,Flatscreen TV,1,300.0,2019-05-19 21:46:00,963 Jefferson St, Los Angeles,CA,90001 +206919,Lightning Charging Cable,1,14.95,2019-05-02 08:25:00,350 Meadow St, Atlanta,GA,30301 +206920,LG Dryer,1,600.0,2019-05-13 14:09:00,124 4th St, Portland,ME,04101 +206921,Wired Headphones,1,11.99,2019-05-18 13:36:00,428 Chestnut St, New York City,NY,10001 +206922,27in 4K Gaming Monitor,1,389.99,2019-05-22 15:49:00,20 South St, New York City,NY,10001 +206923,USB-C Charging Cable,1,11.95,2019-05-13 10:55:00,732 Meadow St, Dallas,TX,75001 +206924,Lightning Charging Cable,2,14.95,2019-05-04 01:31:00,365 2nd St, Portland,OR,97035 +206925,USB-C Charging Cable,1,11.95,2019-05-04 16:11:00,445 7th St, Portland,OR,97035 +206926,20in Monitor,1,109.99,2019-05-21 07:02:00,225 Center St, San Francisco,CA,94016 +206927,USB-C Charging Cable,1,11.95,2019-05-07 03:38:00,672 Chestnut St, Boston,MA,02215 +206928,AAA Batteries (4-pack),2,2.99,2019-05-29 17:55:00,300 Park St, New York City,NY,10001 +206929,Lightning Charging Cable,1,14.95,2019-05-21 18:45:00,78 Park St, San Francisco,CA,94016 +206930,Wired Headphones,1,11.99,2019-05-17 15:14:00,255 Center St, Boston,MA,02215 +206931,Wired Headphones,2,11.99,2019-05-22 10:55:00,688 Washington St, Austin,TX,73301 +206932,Apple Airpods Headphones,1,150.0,2019-05-16 15:59:00,402 10th St, San Francisco,CA,94016 +206933,Apple Airpods Headphones,1,150.0,2019-05-14 11:47:00,146 Elm St, San Francisco,CA,94016 +206934,Flatscreen TV,1,300.0,2019-05-10 12:44:00,496 Walnut St, Boston,MA,02215 +206935,Macbook Pro Laptop,1,1700.0,2019-05-04 12:16:00,206 Meadow St, New York City,NY,10001 +206936,AA Batteries (4-pack),1,3.84,2019-05-19 22:26:00,986 11th St, Portland,ME,04101 +206937,AA Batteries (4-pack),1,3.84,2019-05-22 07:00:00,359 Church St, Portland,OR,97035 +206938,iPhone,1,700.0,2019-05-24 18:10:00,26 Chestnut St, San Francisco,CA,94016 +206938,Lightning Charging Cable,1,14.95,2019-05-24 18:10:00,26 Chestnut St, San Francisco,CA,94016 +206939,Wired Headphones,1,11.99,2019-05-19 12:45:00,333 South St, Dallas,TX,75001 +206940,AA Batteries (4-pack),1,3.84,2019-05-01 11:20:00,802 Chestnut St, Boston,MA,02215 +206941,Bose SoundSport Headphones,1,99.99,2019-05-26 07:27:00,894 Madison St, Seattle,WA,98101 +206942,AA Batteries (4-pack),1,3.84,2019-05-08 22:45:00,162 Elm St, Austin,TX,73301 +206943,AA Batteries (4-pack),2,3.84,2019-05-15 21:30:00,217 1st St, Dallas,TX,75001 +206944,USB-C Charging Cable,1,11.95,2019-05-29 09:24:00,220 Sunset St, Seattle,WA,98101 +206945,27in FHD Monitor,1,149.99,2019-05-04 12:07:00,298 Hickory St, Seattle,WA,98101 +206946,AAA Batteries (4-pack),1,2.99,2019-05-02 21:54:00,554 11th St, Seattle,WA,98101 +206947,Lightning Charging Cable,1,14.95,2019-05-22 15:58:00,653 Sunset St, Austin,TX,73301 +206948,USB-C Charging Cable,1,11.95,2019-05-11 10:26:00,381 Elm St, Dallas,TX,75001 +206949,Bose SoundSport Headphones,1,99.99,2019-05-14 17:05:00,319 Ridge St, San Francisco,CA,94016 +206950,USB-C Charging Cable,1,11.95,2019-05-15 12:37:00,17 Maple St, Los Angeles,CA,90001 +206951,Wired Headphones,1,11.99,2019-05-09 19:07:00,594 Chestnut St, Atlanta,GA,30301 +206952,AA Batteries (4-pack),2,3.84,2019-05-12 09:10:00,563 Sunset St, Austin,TX,73301 +206953,iPhone,1,700.0,2019-05-30 13:50:00,106 13th St, San Francisco,CA,94016 +206954,AAA Batteries (4-pack),1,2.99,2019-05-11 13:27:00,345 8th St, Dallas,TX,75001 +206955,AA Batteries (4-pack),1,3.84,2019-05-18 23:11:00,104 Dogwood St, Dallas,TX,75001 +206956,iPhone,1,700.0,2019-05-29 20:22:00,107 North St, San Francisco,CA,94016 +206956,Lightning Charging Cable,1,14.95,2019-05-29 20:22:00,107 North St, San Francisco,CA,94016 +206957,AA Batteries (4-pack),1,3.84,2019-05-27 12:56:00,996 Lake St, San Francisco,CA,94016 +206958,ThinkPad Laptop,1,999.99,2019-05-08 19:47:00,711 North St, San Francisco,CA,94016 +206959,Flatscreen TV,1,300.0,2019-05-15 10:27:00,897 Spruce St, Portland,ME,04101 +206960,Google Phone,1,600.0,2019-05-06 12:45:00,364 Wilson St, Los Angeles,CA,90001 +206961,AA Batteries (4-pack),1,3.84,2019-05-31 14:54:00,812 Spruce St, Boston,MA,02215 +206962,AA Batteries (4-pack),1,3.84,2019-05-21 20:47:00,925 Sunset St, San Francisco,CA,94016 +206963,Apple Airpods Headphones,1,150.0,2019-05-02 20:43:00,593 Forest St, New York City,NY,10001 +206964,AAA Batteries (4-pack),1,2.99,2019-05-13 15:24:00,941 North St, San Francisco,CA,94016 +206965,Lightning Charging Cable,1,14.95,2019-05-07 22:27:00,281 6th St, Seattle,WA,98101 +206966,Lightning Charging Cable,1,14.95,2019-05-25 10:17:00,25 Wilson St, Seattle,WA,98101 +206967,Wired Headphones,1,11.99,2019-05-13 18:01:00,570 2nd St, Boston,MA,02215 +206968,Macbook Pro Laptop,1,1700.0,2019-05-03 16:14:00,387 5th St, Dallas,TX,75001 +206969,USB-C Charging Cable,1,11.95,2019-05-10 01:48:00,690 Meadow St, New York City,NY,10001 +206970,Wired Headphones,1,11.99,2019-05-26 12:04:00,729 2nd St, New York City,NY,10001 +206971,Apple Airpods Headphones,1,150.0,2019-05-20 20:15:00,201 South St, New York City,NY,10001 +206972,Lightning Charging Cable,1,14.95,2019-05-06 01:41:00,635 Walnut St, Portland,OR,97035 +206972,Wired Headphones,1,11.99,2019-05-06 01:41:00,635 Walnut St, Portland,OR,97035 +206973,Apple Airpods Headphones,1,150.0,2019-05-01 09:18:00,435 2nd St, Boston,MA,02215 +206974,Macbook Pro Laptop,1,1700.0,2019-05-06 09:55:00,330 Lake St, San Francisco,CA,94016 +206975,Google Phone,1,600.0,2019-05-26 21:18:00,101 2nd St, Portland,ME,04101 +206976,AA Batteries (4-pack),1,3.84,2019-05-07 13:32:00,674 12th St, Boston,MA,02215 +206977,AA Batteries (4-pack),1,3.84,2019-05-21 13:06:00,367 North St, Dallas,TX,75001 +206978,USB-C Charging Cable,1,11.95,2019-05-19 08:33:00,736 5th St, New York City,NY,10001 +206979,Lightning Charging Cable,1,14.95,2019-05-15 12:06:00,359 Johnson St, Los Angeles,CA,90001 +206980,ThinkPad Laptop,1,999.99,2019-05-31 22:48:00,715 Hill St, Dallas,TX,75001 +206981,Macbook Pro Laptop,1,1700.0,2019-05-01 20:43:00,228 4th St, Atlanta,GA,30301 +206982,AA Batteries (4-pack),1,3.84,2019-05-29 13:50:00,255 6th St, Portland,OR,97035 +206983,Wired Headphones,1,11.99,2019-05-07 17:22:00,466 Lake St, Boston,MA,02215 +206984,Vareebadd Phone,1,400.0,2019-05-09 12:59:00,776 Ridge St, Austin,TX,73301 +206985,Macbook Pro Laptop,1,1700.0,2019-05-12 21:16:00,725 Hill St, Atlanta,GA,30301 +206986,AA Batteries (4-pack),2,3.84,2019-05-29 17:17:00,655 Cherry St, Portland,OR,97035 +206987,Macbook Pro Laptop,1,1700.0,2019-05-26 01:12:00,816 Adams St, Atlanta,GA,30301 +206988,AAA Batteries (4-pack),1,2.99,2019-05-20 11:10:00,678 7th St, Los Angeles,CA,90001 +206989,USB-C Charging Cable,1,11.95,2019-05-17 18:52:00,514 Lake St, San Francisco,CA,94016 +206990,Lightning Charging Cable,1,14.95,2019-05-04 12:50:00,811 Church St, New York City,NY,10001 +206991,Bose SoundSport Headphones,1,99.99,2019-05-22 16:11:00,624 Jefferson St, Los Angeles,CA,90001 +206992,Bose SoundSport Headphones,1,99.99,2019-05-18 20:19:00,389 Church St, Los Angeles,CA,90001 +206993,USB-C Charging Cable,1,11.95,2019-05-17 06:59:00,434 Forest St, San Francisco,CA,94016 +206994,Wired Headphones,1,11.99,2019-05-10 17:56:00,608 Washington St, Boston,MA,02215 +206995,iPhone,1,700.0,2019-05-19 23:30:00,640 Meadow St, New York City,NY,10001 +206996,Apple Airpods Headphones,1,150.0,2019-05-21 19:50:00,917 Ridge St, Boston,MA,02215 +206997,USB-C Charging Cable,1,11.95,2019-05-20 16:24:00,661 Jackson St, Seattle,WA,98101 +206998,Vareebadd Phone,1,400.0,2019-05-20 17:24:00,148 Park St, New York City,NY,10001 +206999,AAA Batteries (4-pack),2,2.99,2019-05-12 15:24:00,58 Pine St, New York City,NY,10001 +207000,Wired Headphones,1,11.99,2019-05-30 21:16:00,705 Willow St, New York City,NY,10001 +207001,20in Monitor,1,109.99,2019-05-06 16:54:00,633 Lake St, Portland,OR,97035 +207002,Apple Airpods Headphones,1,150.0,2019-05-28 12:11:00,264 Highland St, Dallas,TX,75001 +207003,USB-C Charging Cable,1,11.95,2019-05-01 02:50:00,422 Center St, Dallas,TX,75001 +207004,AAA Batteries (4-pack),2,2.99,2019-05-24 20:36:00,779 7th St, San Francisco,CA,94016 +207004,Wired Headphones,1,11.99,2019-05-24 20:36:00,779 7th St, San Francisco,CA,94016 +207005,AA Batteries (4-pack),1,3.84,2019-05-25 08:38:00,621 Madison St, Los Angeles,CA,90001 +207006,Apple Airpods Headphones,1,150.0,2019-05-15 19:04:00,502 Spruce St, San Francisco,CA,94016 +207007,34in Ultrawide Monitor,1,379.99,2019-05-15 17:16:00,766 South St, San Francisco,CA,94016 +207008,Macbook Pro Laptop,1,1700.0,2019-05-19 07:35:00,594 Adams St, Los Angeles,CA,90001 +207009,Lightning Charging Cable,1,14.95,2019-05-13 19:09:00,341 Elm St, Portland,OR,97035 +207010,AA Batteries (4-pack),2,3.84,2019-05-11 21:43:00,160 Walnut St, Dallas,TX,75001 +207011,Apple Airpods Headphones,1,150.0,2019-05-10 21:56:00,665 6th St, Portland,ME,04101 +207012,Apple Airpods Headphones,1,150.0,2019-05-19 08:03:00,350 13th St, San Francisco,CA,94016 +207013,Lightning Charging Cable,1,14.95,2019-05-01 21:22:00,907 Cedar St, New York City,NY,10001 +207014,Wired Headphones,1,11.99,2019-05-29 22:40:00,847 Main St, Los Angeles,CA,90001 +207015,Lightning Charging Cable,1,14.95,2019-05-07 14:57:00,544 Jefferson St, San Francisco,CA,94016 +207016,Bose SoundSport Headphones,1,99.99,2019-05-09 14:01:00,639 Cedar St, New York City,NY,10001 +207017,Bose SoundSport Headphones,2,99.99,2019-05-12 19:03:00,984 Hickory St, Dallas,TX,75001 +207018,iPhone,1,700.0,2019-05-15 09:24:00,974 Adams St, Portland,OR,97035 +207019,AA Batteries (4-pack),1,3.84,2019-05-01 20:24:00,871 2nd St, Los Angeles,CA,90001 +207020,USB-C Charging Cable,1,11.95,2019-05-27 10:05:00,392 Jackson St, Seattle,WA,98101 +207021,Bose SoundSport Headphones,1,99.99,2019-05-18 12:34:00,685 Lincoln St, New York City,NY,10001 +207022,27in FHD Monitor,1,149.99,2019-05-24 10:06:00,427 Park St, Portland,ME,04101 +207023,Wired Headphones,1,11.99,2019-05-22 12:04:00,245 West St, Los Angeles,CA,90001 +207024,Vareebadd Phone,1,400.0,2019-05-24 14:33:00,65 Park St, Portland,OR,97035 +207025,Bose SoundSport Headphones,1,99.99,2019-05-17 13:38:00,253 Dogwood St, New York City,NY,10001 +207026,Apple Airpods Headphones,1,150.0,2019-05-25 16:18:00,811 Hill St, New York City,NY,10001 +207027,Wired Headphones,2,11.99,2019-05-27 13:32:00,318 9th St, San Francisco,CA,94016 +207028,Wired Headphones,1,11.99,2019-05-10 21:49:00,211 North St, Boston,MA,02215 +207029,AAA Batteries (4-pack),3,2.99,2019-05-10 19:30:00,352 10th St, New York City,NY,10001 +207030,27in FHD Monitor,1,149.99,2019-05-29 17:05:00,608 Spruce St, Seattle,WA,98101 +207031,Wired Headphones,1,11.99,2019-05-21 18:48:00,430 Meadow St, San Francisco,CA,94016 +207032,Lightning Charging Cable,1,14.95,2019-05-24 12:42:00,810 Lincoln St, San Francisco,CA,94016 +207033,iPhone,1,700.0,2019-05-08 12:09:00,116 Johnson St, Los Angeles,CA,90001 +207034,USB-C Charging Cable,1,11.95,2019-05-13 18:11:00,690 Hill St, New York City,NY,10001 +207035,27in FHD Monitor,1,149.99,2019-05-27 19:59:00,713 Hill St, Boston,MA,02215 +207036,AAA Batteries (4-pack),2,2.99,2019-05-23 14:47:00,958 Jackson St, New York City,NY,10001 +207037,Wired Headphones,1,11.99,2019-05-15 12:56:00,222 5th St, Boston,MA,02215 +207038,USB-C Charging Cable,1,11.95,2019-05-25 11:25:00,212 Meadow St, San Francisco,CA,94016 +207039,Apple Airpods Headphones,1,150.0,2019-05-13 11:46:00,721 Chestnut St, Seattle,WA,98101 +207040,Lightning Charging Cable,1,14.95,2019-05-27 07:38:00,775 Spruce St, Seattle,WA,98101 +207041,Lightning Charging Cable,1,14.95,2019-05-22 18:09:00,835 4th St, Atlanta,GA,30301 +207042,USB-C Charging Cable,1,11.95,2019-05-31 00:59:00,74 Walnut St, New York City,NY,10001 +207043,Lightning Charging Cable,1,14.95,2019-05-30 13:24:00,377 Dogwood St, San Francisco,CA,94016 +207044,Bose SoundSport Headphones,1,99.99,2019-05-02 14:04:00,414 1st St, Austin,TX,73301 +207045,27in FHD Monitor,1,149.99,2019-05-20 23:49:00,679 1st St, Los Angeles,CA,90001 +207046,USB-C Charging Cable,1,11.95,2019-05-26 17:28:00,640 14th St, New York City,NY,10001 +207047,USB-C Charging Cable,1,11.95,2019-05-01 17:20:00,942 West St, Boston,MA,02215 +207048,Wired Headphones,2,11.99,2019-05-27 17:16:00,161 Maple St, Seattle,WA,98101 +207049,Lightning Charging Cable,2,14.95,2019-05-25 02:22:00,314 Johnson St, New York City,NY,10001 +207050,Lightning Charging Cable,1,14.95,2019-05-30 20:03:00,605 12th St, Portland,OR,97035 +207051,USB-C Charging Cable,1,11.95,2019-05-10 12:21:00,778 Maple St, Seattle,WA,98101 +207052,Flatscreen TV,1,300.0,2019-05-03 05:46:00,880 Meadow St, New York City,NY,10001 +207053,AA Batteries (4-pack),1,3.84,2019-05-20 23:36:00,836 Spruce St, San Francisco,CA,94016 +207054,Lightning Charging Cable,1,14.95,2019-05-30 04:35:00,160 5th St, Dallas,TX,75001 +207055,Bose SoundSport Headphones,1,99.99,2019-05-19 12:53:00,476 Meadow St, Portland,ME,04101 +207056,AAA Batteries (4-pack),1,2.99,2019-05-20 09:01:00,48 Chestnut St, Los Angeles,CA,90001 +207057,AA Batteries (4-pack),1,3.84,2019-05-11 10:04:00,950 Washington St, Portland,OR,97035 +207058,Bose SoundSport Headphones,1,99.99,2019-05-11 05:42:00,550 7th St, San Francisco,CA,94016 +207059,27in FHD Monitor,1,149.99,2019-05-07 06:08:00,948 2nd St, Los Angeles,CA,90001 +207060,Wired Headphones,1,11.99,2019-05-12 11:18:00,913 Cherry St, San Francisco,CA,94016 +207061,27in FHD Monitor,1,149.99,2019-05-09 12:39:00,653 Park St, Seattle,WA,98101 +207062,Lightning Charging Cable,1,14.95,2019-05-26 15:23:00,286 Elm St, Austin,TX,73301 +207063,Lightning Charging Cable,1,14.95,2019-05-05 18:04:00,115 Johnson St, Dallas,TX,75001 +207064,34in Ultrawide Monitor,1,379.99,2019-05-06 07:28:00,72 4th St, Dallas,TX,75001 +207065,Apple Airpods Headphones,1,150.0,2019-05-15 12:31:00,974 Lakeview St, Boston,MA,02215 +207065,Google Phone,1,600.0,2019-05-15 12:31:00,974 Lakeview St, Boston,MA,02215 +207066,Flatscreen TV,1,300.0,2019-05-24 00:41:00,58 Elm St, Los Angeles,CA,90001 +207067,34in Ultrawide Monitor,1,379.99,2019-05-06 11:31:00,431 Washington St, Atlanta,GA,30301 +207068,27in 4K Gaming Monitor,1,389.99,2019-05-30 17:43:00,776 Hill St, Atlanta,GA,30301 +207069,AA Batteries (4-pack),1,3.84,2019-05-17 16:17:00,750 8th St, Atlanta,GA,30301 +207070,iPhone,1,700.0,2019-05-09 20:31:00,616 Elm St, Los Angeles,CA,90001 +207071,Lightning Charging Cable,1,14.95,2019-05-24 17:01:00,624 Center St, Portland,OR,97035 +207072,Lightning Charging Cable,1,14.95,2019-05-11 23:16:00,554 Ridge St, San Francisco,CA,94016 +207073,Lightning Charging Cable,1,14.95,2019-05-06 22:10:00,135 8th St, San Francisco,CA,94016 +207074,AAA Batteries (4-pack),1,2.99,2019-05-07 16:21:00,78 Wilson St, Austin,TX,73301 +207075,27in 4K Gaming Monitor,1,389.99,2019-05-27 16:00:00,463 Center St, Austin,TX,73301 +207076,ThinkPad Laptop,1,999.99,2019-05-10 14:04:00,678 Lincoln St, New York City,NY,10001 +207077,AAA Batteries (4-pack),1,2.99,2019-05-14 20:42:00,235 Dogwood St, Los Angeles,CA,90001 +207078,Lightning Charging Cable,1,14.95,2019-05-07 17:05:00,782 Adams St, New York City,NY,10001 +207079,Lightning Charging Cable,1,14.95,2019-05-22 19:50:00,223 Willow St, Portland,OR,97035 +207080,AA Batteries (4-pack),1,3.84,2019-05-12 20:13:00,538 12th St, Boston,MA,02215 +207081,iPhone,1,700.0,2019-05-13 01:38:00,891 4th St, San Francisco,CA,94016 +207082,Bose SoundSport Headphones,1,99.99,2019-05-08 13:32:00,331 Main St, Portland,OR,97035 +207083,34in Ultrawide Monitor,1,379.99,2019-05-20 09:28:00,746 Highland St, Boston,MA,02215 +207084,iPhone,1,700.0,2019-05-29 19:28:00,885 West St, New York City,NY,10001 +207085,Apple Airpods Headphones,1,150.0,2019-05-23 13:41:00,184 1st St, New York City,NY,10001 +207086,AA Batteries (4-pack),1,3.84,2019-05-18 18:24:00,588 12th St, Atlanta,GA,30301 +207087,USB-C Charging Cable,1,11.95,2019-05-23 13:04:00,150 1st St, Boston,MA,02215 +207088,Apple Airpods Headphones,1,150.0,2019-05-17 10:24:00,755 6th St, New York City,NY,10001 +207089,Lightning Charging Cable,1,14.95,2019-05-24 08:34:00,86 Church St, New York City,NY,10001 +207090,AA Batteries (4-pack),1,3.84,2019-05-28 12:48:00,20 Hill St, San Francisco,CA,94016 +207091,AAA Batteries (4-pack),3,2.99,2019-05-27 12:44:00,969 Adams St, San Francisco,CA,94016 +207092,AAA Batteries (4-pack),1,2.99,2019-05-19 21:07:00,913 6th St, Atlanta,GA,30301 +207093,Wired Headphones,1,11.99,2019-05-12 20:25:00,561 River St, San Francisco,CA,94016 +207094,AAA Batteries (4-pack),1,2.99,2019-05-08 09:16:00,45 11th St, Boston,MA,02215 +207095,iPhone,1,700.0,2019-05-20 21:31:00,175 Cedar St, Seattle,WA,98101 +207096,AAA Batteries (4-pack),1,2.99,2019-05-03 18:27:00,197 Willow St, San Francisco,CA,94016 +207097,iPhone,1,700.0,2019-05-13 20:11:00,215 South St, Seattle,WA,98101 +207098,AAA Batteries (4-pack),2,2.99,2019-05-07 21:59:00,597 11th St, New York City,NY,10001 +207099,AA Batteries (4-pack),1,3.84,2019-05-29 14:32:00,384 Lakeview St, Los Angeles,CA,90001 +207099,Apple Airpods Headphones,1,150.0,2019-05-29 14:32:00,384 Lakeview St, Los Angeles,CA,90001 +207100,34in Ultrawide Monitor,1,379.99,2019-05-05 16:40:00,440 6th St, New York City,NY,10001 +207101,Wired Headphones,1,11.99,2019-05-16 07:03:00,955 Madison St, Atlanta,GA,30301 +207102,AA Batteries (4-pack),1,3.84,2019-05-09 09:11:00,903 Sunset St, New York City,NY,10001 +207103,AAA Batteries (4-pack),2,2.99,2019-05-08 20:46:00,328 Church St, Los Angeles,CA,90001 +207104,Apple Airpods Headphones,1,150.0,2019-05-04 09:10:00,229 Center St, New York City,NY,10001 +207105,Bose SoundSport Headphones,1,99.99,2019-05-24 12:00:00,308 Jackson St, Los Angeles,CA,90001 +207106,34in Ultrawide Monitor,1,379.99,2019-05-07 10:33:00,519 Cherry St, Dallas,TX,75001 +207107,USB-C Charging Cable,1,11.95,2019-05-06 21:18:00,627 7th St, Dallas,TX,75001 +207108,Apple Airpods Headphones,1,150.0,2019-05-01 21:02:00,252 7th St, Boston,MA,02215 +207109,Wired Headphones,1,11.99,2019-05-17 00:08:00,165 Cedar St, Los Angeles,CA,90001 +207110,Apple Airpods Headphones,1,150.0,2019-05-07 19:52:00,957 12th St, Austin,TX,73301 +207111,34in Ultrawide Monitor,1,379.99,2019-05-09 17:35:00,11 10th St, Atlanta,GA,30301 +207112,Bose SoundSport Headphones,1,99.99,2019-05-24 22:51:00,915 Dogwood St, Los Angeles,CA,90001 +207113,AAA Batteries (4-pack),2,2.99,2019-05-16 19:04:00,301 Elm St, Los Angeles,CA,90001 +207114,AAA Batteries (4-pack),1,2.99,2019-05-28 12:20:00,166 Jefferson St, San Francisco,CA,94016 +207115,Lightning Charging Cable,1,14.95,2019-05-12 10:15:00,717 Lincoln St, Los Angeles,CA,90001 +207116,Bose SoundSport Headphones,1,99.99,2019-05-02 11:26:00,192 Lincoln St, San Francisco,CA,94016 +207117,Apple Airpods Headphones,1,150.0,2019-05-17 14:14:00,963 Cherry St, Atlanta,GA,30301 +207118,AAA Batteries (4-pack),1,2.99,2019-05-04 09:03:00,964 Sunset St, Los Angeles,CA,90001 +207119,AA Batteries (4-pack),2,3.84,2019-05-11 10:37:00,414 1st St, New York City,NY,10001 +207120,USB-C Charging Cable,1,11.95,2019-05-21 21:16:00,179 Pine St, Seattle,WA,98101 +207121,AAA Batteries (4-pack),1,2.99,2019-05-29 10:39:00,761 North St, San Francisco,CA,94016 +207122,Macbook Pro Laptop,1,1700.0,2019-05-22 14:31:00,301 7th St, San Francisco,CA,94016 +207123,Wired Headphones,1,11.99,2019-05-01 10:10:00,482 Wilson St, New York City,NY,10001 +207124,iPhone,1,700.0,2019-05-26 16:36:00,255 Maple St, Atlanta,GA,30301 +207125,Bose SoundSport Headphones,1,99.99,2019-05-09 21:00:00,563 Pine St, Los Angeles,CA,90001 +207126,27in 4K Gaming Monitor,1,389.99,2019-05-13 13:16:00,273 Lake St, Seattle,WA,98101 +207127,AAA Batteries (4-pack),2,2.99,2019-05-14 04:50:00,347 9th St, Boston,MA,02215 +207128,Bose SoundSport Headphones,1,99.99,2019-05-02 09:59:00,909 Johnson St, Los Angeles,CA,90001 +207129,Google Phone,1,600.0,2019-05-23 16:52:00,799 South St, Boston,MA,02215 +207130,Bose SoundSport Headphones,1,99.99,2019-05-25 13:45:00,250 Walnut St, Boston,MA,02215 +207131,Apple Airpods Headphones,1,150.0,2019-05-17 04:42:00,282 14th St, San Francisco,CA,94016 +207132,Lightning Charging Cable,1,14.95,2019-05-27 08:43:00,677 Center St, San Francisco,CA,94016 +207133,AAA Batteries (4-pack),1,2.99,2019-05-12 22:55:00,210 13th St, Seattle,WA,98101 +207134,Wired Headphones,1,11.99,2019-05-28 11:34:00,324 Jefferson St, Boston,MA,02215 +207135,Apple Airpods Headphones,1,150.0,2019-05-24 20:01:00,598 Adams St, Los Angeles,CA,90001 +207136,iPhone,1,700.0,2019-05-29 20:30:00,298 Highland St, Los Angeles,CA,90001 +207136,Lightning Charging Cable,1,14.95,2019-05-29 20:30:00,298 Highland St, Los Angeles,CA,90001 +207137,Wired Headphones,1,11.99,2019-05-22 15:12:00,532 Johnson St, San Francisco,CA,94016 +207138,USB-C Charging Cable,1,11.95,2019-05-27 21:20:00,713 Church St, Los Angeles,CA,90001 +207139,27in FHD Monitor,1,149.99,2019-05-14 18:41:00,357 Park St, Seattle,WA,98101 +207140,iPhone,1,700.0,2019-05-19 11:29:00,784 Lake St, San Francisco,CA,94016 +207141,LG Dryer,1,600.0,2019-05-27 19:03:00,800 River St, Seattle,WA,98101 +207142,Flatscreen TV,1,300.0,2019-05-14 19:46:00,842 1st St, Dallas,TX,75001 +207143,USB-C Charging Cable,1,11.95,2019-05-27 18:42:00,852 Park St, New York City,NY,10001 +207144,AAA Batteries (4-pack),2,2.99,2019-05-17 08:59:00,88 7th St, Austin,TX,73301 +207145,Lightning Charging Cable,1,14.95,2019-05-02 18:24:00,624 Johnson St, San Francisco,CA,94016 +207146,Lightning Charging Cable,1,14.95,2019-05-14 16:01:00,880 Highland St, San Francisco,CA,94016 +207147,Wired Headphones,1,11.99,2019-05-17 18:24:00,39 Washington St, Portland,ME,04101 +207148,20in Monitor,1,109.99,2019-05-02 11:30:00,600 Adams St, Dallas,TX,75001 +207149,USB-C Charging Cable,1,11.95,2019-05-10 13:22:00,895 Lakeview St, Seattle,WA,98101 +207150,AAA Batteries (4-pack),2,2.99,2019-05-21 19:42:00,191 South St, Portland,OR,97035 +207151,20in Monitor,1,109.99,2019-05-07 19:22:00,122 Willow St, Dallas,TX,75001 +207152,Wired Headphones,1,11.99,2019-05-19 18:14:00,248 Adams St, San Francisco,CA,94016 +207153,Google Phone,1,600.0,2019-05-11 21:12:00,881 Washington St, New York City,NY,10001 +207154,Macbook Pro Laptop,1,1700.0,2019-05-18 14:40:00,159 13th St, Dallas,TX,75001 +207155,Lightning Charging Cable,1,14.95,2019-05-22 20:57:00,711 Adams St, Boston,MA,02215 +207156,Wired Headphones,2,11.99,2019-05-11 23:26:00,699 River St, Los Angeles,CA,90001 +207157,27in 4K Gaming Monitor,1,389.99,2019-05-21 18:48:00,658 Park St, Dallas,TX,75001 +207158,USB-C Charging Cable,1,11.95,2019-05-16 07:20:00,377 Washington St, New York City,NY,10001 +207159,AAA Batteries (4-pack),1,2.99,2019-05-17 10:49:00,929 13th St, Portland,ME,04101 +207160,AA Batteries (4-pack),4,3.84,2019-05-02 23:15:00,565 9th St, New York City,NY,10001 +207161,20in Monitor,1,109.99,2019-05-03 20:33:00,404 Johnson St, San Francisco,CA,94016 +207162,Lightning Charging Cable,1,14.95,2019-05-10 08:32:00,997 7th St, Portland,OR,97035 +207163,USB-C Charging Cable,1,11.95,2019-05-20 11:45:00,622 Main St, San Francisco,CA,94016 +207164,Bose SoundSport Headphones,1,99.99,2019-05-09 18:36:00,496 Chestnut St, San Francisco,CA,94016 +207165,Apple Airpods Headphones,1,150.0,2019-05-14 00:02:00,763 Pine St, San Francisco,CA,94016 +207166,Apple Airpods Headphones,1,150.0,2019-05-11 20:26:00,674 Pine St, San Francisco,CA,94016 +207167,27in FHD Monitor,1,149.99,2019-05-22 21:13:00,78 West St, Seattle,WA,98101 +207168,27in 4K Gaming Monitor,1,389.99,2019-05-12 23:08:00,664 Walnut St, Boston,MA,02215 +207169,AA Batteries (4-pack),1,3.84,2019-05-10 10:50:00,199 Maple St, Boston,MA,02215 +207170,AA Batteries (4-pack),2,3.84,2019-05-08 22:02:00,76 11th St, Seattle,WA,98101 +207171,27in 4K Gaming Monitor,1,389.99,2019-05-29 22:56:00,670 Hill St, Los Angeles,CA,90001 +207172,Wired Headphones,1,11.99,2019-05-19 15:13:00,31 Hill St, Los Angeles,CA,90001 +207173,AA Batteries (4-pack),1,3.84,2019-05-04 13:48:00,984 2nd St, Austin,TX,73301 +207174,34in Ultrawide Monitor,1,379.99,2019-05-27 16:21:00,405 7th St, Portland,OR,97035 +207175,AA Batteries (4-pack),1,3.84,2019-05-24 21:58:00,491 7th St, San Francisco,CA,94016 +207176,Vareebadd Phone,1,400.0,2019-05-17 04:52:00,237 4th St, San Francisco,CA,94016 +207176,USB-C Charging Cable,1,11.95,2019-05-17 04:52:00,237 4th St, San Francisco,CA,94016 +207177,AA Batteries (4-pack),1,3.84,2019-05-26 03:32:00,829 Elm St, San Francisco,CA,94016 +207178,Wired Headphones,1,11.99,2019-05-20 17:02:00,771 Park St, San Francisco,CA,94016 +207179,USB-C Charging Cable,1,11.95,2019-05-14 12:21:00,53 13th St, Austin,TX,73301 +207180,USB-C Charging Cable,1,11.95,2019-05-26 19:35:00,101 Walnut St, New York City,NY,10001 +207181,Lightning Charging Cable,1,14.95,2019-05-27 10:52:00,364 6th St, Dallas,TX,75001 +207182,Bose SoundSport Headphones,1,99.99,2019-05-02 20:17:00,501 Forest St, San Francisco,CA,94016 +207183,Lightning Charging Cable,1,14.95,2019-05-13 17:45:00,348 Elm St, Seattle,WA,98101 +207184,27in FHD Monitor,1,149.99,2019-05-29 17:15:00,383 6th St, New York City,NY,10001 +207185,AAA Batteries (4-pack),1,2.99,2019-05-06 18:46:00,183 Adams St, Seattle,WA,98101 +207186,Wired Headphones,1,11.99,2019-05-27 03:06:00,207 Center St, Austin,TX,73301 +207187,AAA Batteries (4-pack),1,2.99,2019-05-04 20:35:00,206 11th St, Dallas,TX,75001 +207188,20in Monitor,1,109.99,2019-05-27 05:31:00,379 7th St, Los Angeles,CA,90001 +207189,34in Ultrawide Monitor,1,379.99,2019-05-15 16:12:00,906 Dogwood St, Boston,MA,02215 +207190,Google Phone,1,600.0,2019-05-16 20:45:00,999 Sunset St, Los Angeles,CA,90001 +207191,20in Monitor,1,109.99,2019-05-10 08:08:00,979 Wilson St, San Francisco,CA,94016 +207192,Bose SoundSport Headphones,1,99.99,2019-05-06 10:08:00,95 12th St, San Francisco,CA,94016 +207193,Wired Headphones,1,11.99,2019-05-22 02:21:00,377 7th St, Boston,MA,02215 +207194,Bose SoundSport Headphones,1,99.99,2019-05-16 18:08:00,718 13th St, Seattle,WA,98101 +207195,Google Phone,1,600.0,2019-05-26 01:04:00,712 4th St, Boston,MA,02215 +207196,AAA Batteries (4-pack),1,2.99,2019-05-05 13:55:00,764 Washington St, Portland,OR,97035 +207197,Flatscreen TV,1,300.0,2019-05-23 09:23:00,107 Cedar St, Los Angeles,CA,90001 +207198,USB-C Charging Cable,1,11.95,2019-05-13 19:54:00,545 Willow St, Seattle,WA,98101 +207199,Apple Airpods Headphones,1,150.0,2019-05-26 09:30:00,681 Spruce St, Austin,TX,73301 +207200,Lightning Charging Cable,1,14.95,2019-05-13 14:30:00,643 Lake St, Dallas,TX,75001 +207201,AA Batteries (4-pack),5,3.84,2019-05-07 13:10:00,433 9th St, Portland,OR,97035 +207202,Wired Headphones,1,11.99,2019-05-10 11:31:00,913 13th St, San Francisco,CA,94016 +207203,27in FHD Monitor,1,149.99,2019-05-01 15:03:00,124 4th St, Atlanta,GA,30301 +207204,USB-C Charging Cable,1,11.95,2019-05-06 19:22:00,8 4th St, Los Angeles,CA,90001 +207205,AA Batteries (4-pack),1,3.84,2019-05-09 21:06:00,20 Jackson St, Los Angeles,CA,90001 +207206,Lightning Charging Cable,1,14.95,2019-05-01 16:12:00,965 Ridge St, San Francisco,CA,94016 +207207,Lightning Charging Cable,1,14.95,2019-05-05 21:07:00,642 13th St, Portland,OR,97035 +207208,Wired Headphones,1,11.99,2019-05-11 22:04:00,964 9th St, Seattle,WA,98101 +207209,Macbook Pro Laptop,1,1700.0,2019-05-15 17:13:00,755 Jefferson St, Los Angeles,CA,90001 +207210,20in Monitor,1,109.99,2019-05-24 19:35:00,122 11th St, Austin,TX,73301 +207211,AA Batteries (4-pack),2,3.84,2019-05-07 13:09:00,613 7th St, San Francisco,CA,94016 +207212,AA Batteries (4-pack),1,3.84,2019-05-12 09:20:00,443 7th St, New York City,NY,10001 +207213,Bose SoundSport Headphones,1,99.99,2019-05-19 05:47:00,167 Cedar St, Seattle,WA,98101 +207214,iPhone,1,700.0,2019-05-27 06:00:00,691 Pine St, San Francisco,CA,94016 +207215,AAA Batteries (4-pack),1,2.99,2019-05-16 21:57:00,430 Willow St, Atlanta,GA,30301 +207216,USB-C Charging Cable,1,11.95,2019-05-17 12:59:00,918 Madison St, Portland,OR,97035 +207217,Wired Headphones,1,11.99,2019-05-13 16:13:00,750 Forest St, Dallas,TX,75001 +207218,Wired Headphones,1,11.99,2019-05-16 14:00:00,639 Pine St, San Francisco,CA,94016 +207219,Wired Headphones,2,11.99,2019-05-09 20:15:00,62 Park St, Boston,MA,02215 +207220,AAA Batteries (4-pack),1,2.99,2019-05-01 08:03:00,973 Lincoln St, San Francisco,CA,94016 +207221,iPhone,1,700.0,2019-05-15 18:52:00,600 1st St, San Francisco,CA,94016 +207222,AAA Batteries (4-pack),1,2.99,2019-05-18 17:29:00,274 9th St, Seattle,WA,98101 +207223,27in FHD Monitor,1,149.99,2019-05-12 18:20:00,800 4th St, Austin,TX,73301 +207224,AA Batteries (4-pack),1,3.84,2019-05-22 12:17:00,883 Willow St, Dallas,TX,75001 +207225,Lightning Charging Cable,1,14.95,2019-05-11 17:58:00,426 Lake St, San Francisco,CA,94016 +207226,Lightning Charging Cable,1,14.95,2019-05-27 20:37:00,761 10th St, Dallas,TX,75001 +207227,27in 4K Gaming Monitor,1,389.99,2019-05-08 19:29:00,46 Church St, Boston,MA,02215 +207228,USB-C Charging Cable,1,11.95,2019-05-13 10:41:00,10 Johnson St, Dallas,TX,75001 +207229,27in 4K Gaming Monitor,1,389.99,2019-05-01 21:55:00,887 Wilson St, New York City,NY,10001 +207230,27in 4K Gaming Monitor,1,389.99,2019-05-02 12:50:00,944 Lakeview St, Atlanta,GA,30301 +207231,USB-C Charging Cable,1,11.95,2019-05-27 00:12:00,722 Cedar St, Seattle,WA,98101 +207232,Google Phone,1,600.0,2019-05-03 12:46:00,183 Center St, Portland,OR,97035 +207232,USB-C Charging Cable,1,11.95,2019-05-03 12:46:00,183 Center St, Portland,OR,97035 +207233,Google Phone,1,600.0,2019-05-11 14:23:00,360 Ridge St, San Francisco,CA,94016 +207233,USB-C Charging Cable,2,11.95,2019-05-11 14:23:00,360 Ridge St, San Francisco,CA,94016 +207234,USB-C Charging Cable,2,11.95,2019-05-15 15:06:00,53 Hickory St, Seattle,WA,98101 +207235,AA Batteries (4-pack),4,3.84,2019-05-31 12:55:00,997 Lake St, Portland,ME,04101 +207236,Lightning Charging Cable,1,14.95,2019-05-11 14:01:00,464 10th St, New York City,NY,10001 +207237,Wired Headphones,1,11.99,2019-05-25 10:52:00,201 Wilson St, Los Angeles,CA,90001 +207238,AAA Batteries (4-pack),1,2.99,2019-05-25 17:24:00,38 River St, New York City,NY,10001 +207239,Wired Headphones,1,11.99,2019-05-01 23:20:00,943 Lincoln St, Los Angeles,CA,90001 +207240,Lightning Charging Cable,1,14.95,2019-05-26 11:53:00,151 9th St, Dallas,TX,75001 +207241,Apple Airpods Headphones,1,150.0,2019-05-13 12:12:00,134 Spruce St, Dallas,TX,75001 +207242,AA Batteries (4-pack),2,3.84,2019-05-23 09:25:00,329 10th St, New York City,NY,10001 +207243,AAA Batteries (4-pack),1,2.99,2019-05-29 08:38:00,57 Maple St, Boston,MA,02215 +207244,Wired Headphones,1,11.99,2019-05-22 12:13:00,741 Ridge St, Dallas,TX,75001 +207245,iPhone,1,700.0,2019-05-24 21:11:00,582 Lake St, Boston,MA,02215 +207246,34in Ultrawide Monitor,1,379.99,2019-05-10 11:03:00,749 Lincoln St, Boston,MA,02215 +207247,USB-C Charging Cable,1,11.95,2019-05-19 18:41:00,549 Cherry St, Atlanta,GA,30301 +207248,Lightning Charging Cable,1,14.95,2019-05-06 10:29:00,682 Park St, San Francisco,CA,94016 +207249,20in Monitor,1,109.99,2019-05-14 11:40:00,326 Hill St, Boston,MA,02215 +207250,AA Batteries (4-pack),1,3.84,2019-05-12 12:06:00,36 Maple St, San Francisco,CA,94016 +207251,Lightning Charging Cable,1,14.95,2019-05-29 07:48:00,886 9th St, Boston,MA,02215 +207252,Lightning Charging Cable,1,14.95,2019-05-03 18:32:00,257 Cedar St, Boston,MA,02215 +207253,Macbook Pro Laptop,1,1700.0,2019-05-04 14:52:00,555 South St, Portland,OR,97035 +207254,Apple Airpods Headphones,1,150.0,2019-05-21 11:27:00,493 Maple St, Seattle,WA,98101 +207255,27in 4K Gaming Monitor,1,389.99,2019-05-31 16:16:00,288 Lake St, Boston,MA,02215 +207256,AA Batteries (4-pack),2,3.84,2019-05-18 19:57:00,510 Lake St, Atlanta,GA,30301 +207257,Lightning Charging Cable,1,14.95,2019-05-09 19:10:00,976 Johnson St, New York City,NY,10001 +207258,Apple Airpods Headphones,1,150.0,2019-05-29 06:04:00,156 Chestnut St, Dallas,TX,75001 +207259,Flatscreen TV,1,300.0,2019-05-31 09:07:00,38 7th St, Los Angeles,CA,90001 +207260,34in Ultrawide Monitor,1,379.99,2019-05-14 22:10:00,238 Adams St, Boston,MA,02215 +207261,Apple Airpods Headphones,1,150.0,2019-05-13 00:07:00,841 Dogwood St, San Francisco,CA,94016 +207262,27in 4K Gaming Monitor,1,389.99,2019-05-11 21:33:00,68 Chestnut St, Boston,MA,02215 +207263,AA Batteries (4-pack),1,3.84,2019-05-26 14:46:00,431 Hill St, Portland,ME,04101 +207264,AAA Batteries (4-pack),1,2.99,2019-05-09 21:13:00,431 9th St, Boston,MA,02215 +207265,AAA Batteries (4-pack),1,2.99,2019-05-24 14:46:00,767 13th St, Austin,TX,73301 +207266,Bose SoundSport Headphones,1,99.99,2019-05-04 00:22:00,142 8th St, New York City,NY,10001 +207267,AAA Batteries (4-pack),2,2.99,2019-05-22 12:10:00,917 Maple St, Seattle,WA,98101 +207268,27in FHD Monitor,1,149.99,2019-05-15 11:21:00,714 11th St, San Francisco,CA,94016 +207269,Lightning Charging Cable,1,14.95,2019-05-17 10:19:00,29 Adams St, Atlanta,GA,30301 +207270,iPhone,1,700.0,2019-05-05 18:48:00,925 12th St, San Francisco,CA,94016 +207270,Lightning Charging Cable,1,14.95,2019-05-05 18:48:00,925 12th St, San Francisco,CA,94016 +207271,USB-C Charging Cable,1,11.95,2019-05-07 21:37:00,288 4th St, Atlanta,GA,30301 +207272,USB-C Charging Cable,1,11.95,2019-05-18 18:28:00,881 Jefferson St, Dallas,TX,75001 +207273,iPhone,1,700.0,2019-05-12 20:01:00,192 Elm St, Austin,TX,73301 +207274,Google Phone,1,600.0,2019-05-24 12:03:00,524 Center St, Boston,MA,02215 +207275,Macbook Pro Laptop,1,1700.0,2019-05-08 09:15:00,92 Lake St, Portland,OR,97035 +207276,Lightning Charging Cable,1,14.95,2019-05-09 12:04:00,906 Highland St, San Francisco,CA,94016 +207277,Macbook Pro Laptop,1,1700.0,2019-05-19 23:16:00,630 Lakeview St, Austin,TX,73301 +207278,USB-C Charging Cable,1,11.95,2019-05-05 23:38:00,409 7th St, Los Angeles,CA,90001 +207279,iPhone,1,700.0,2019-05-07 01:31:00,576 10th St, San Francisco,CA,94016 +207280,USB-C Charging Cable,2,11.95,2019-05-03 00:14:00,165 Walnut St, San Francisco,CA,94016 +207281,iPhone,1,700.0,2019-05-06 12:45:00,634 Meadow St, Los Angeles,CA,90001 +207282,Lightning Charging Cable,1,14.95,2019-05-27 16:53:00,467 River St, San Francisco,CA,94016 +207283,Google Phone,1,600.0,2019-05-29 11:31:00,717 Cherry St, Portland,OR,97035 +207284,20in Monitor,1,109.99,2019-05-03 14:45:00,419 14th St, Los Angeles,CA,90001 +207285,USB-C Charging Cable,1,11.95,2019-05-26 19:39:00,786 7th St, New York City,NY,10001 +207286,Apple Airpods Headphones,1,150.0,2019-05-30 11:36:00,459 5th St, Los Angeles,CA,90001 +207287,LG Dryer,1,600.0,2019-05-08 14:20:00,892 13th St, Atlanta,GA,30301 +207288,USB-C Charging Cable,1,11.95,2019-05-14 20:45:00,424 Lake St, San Francisco,CA,94016 +207289,Lightning Charging Cable,1,14.95,2019-05-08 19:56:00,328 9th St, New York City,NY,10001 +207290,Lightning Charging Cable,1,14.95,2019-05-06 23:01:00,447 Cherry St, New York City,NY,10001 +207291,20in Monitor,1,109.99,2019-05-29 22:19:00,233 Hill St, Atlanta,GA,30301 +207292,Apple Airpods Headphones,1,150.0,2019-05-29 18:19:00,403 6th St, Portland,OR,97035 +207293,ThinkPad Laptop,1,999.99,2019-05-28 14:13:00,994 Washington St, Austin,TX,73301 +207294,Google Phone,1,600.0,2019-05-23 17:49:00,237 Ridge St, Los Angeles,CA,90001 +207295,AAA Batteries (4-pack),1,2.99,2019-05-18 23:34:00,89 13th St, Portland,OR,97035 +207296,Apple Airpods Headphones,1,150.0,2019-05-30 06:01:00,647 Madison St, Dallas,TX,75001 +207297,Apple Airpods Headphones,1,150.0,2019-05-22 11:19:00,273 Washington St, San Francisco,CA,94016 +207298,USB-C Charging Cable,1,11.95,2019-05-27 12:30:00,392 Adams St, Los Angeles,CA,90001 +207299,USB-C Charging Cable,1,11.95,2019-05-27 10:32:00,92 Hill St, San Francisco,CA,94016 +207300,AAA Batteries (4-pack),2,2.99,2019-05-05 15:10:00,479 Elm St, Dallas,TX,75001 +207301,iPhone,1,700.0,2019-05-03 11:56:00,40 Church St, Seattle,WA,98101 +207301,Wired Headphones,1,11.99,2019-05-03 11:56:00,40 Church St, Seattle,WA,98101 +207302,27in 4K Gaming Monitor,1,389.99,2019-05-24 13:32:00,805 5th St, Seattle,WA,98101 +207303,Lightning Charging Cable,1,14.95,2019-05-16 08:07:00,913 Johnson St, Los Angeles,CA,90001 +207304,Lightning Charging Cable,1,14.95,2019-05-07 18:25:00,388 Cherry St, Los Angeles,CA,90001 +207305,Apple Airpods Headphones,1,150.0,2019-05-17 22:31:00,854 11th St, San Francisco,CA,94016 +207306,Lightning Charging Cable,1,14.95,2019-05-04 04:40:00,422 Chestnut St, Atlanta,GA,30301 +207307,27in FHD Monitor,1,149.99,2019-05-22 12:55:00,796 12th St, San Francisco,CA,94016 +207308,USB-C Charging Cable,1,11.95,2019-05-02 19:58:00,913 Spruce St, Atlanta,GA,30301 +207309,34in Ultrawide Monitor,1,379.99,2019-05-08 19:20:00,985 Washington St, Boston,MA,02215 +207310,AA Batteries (4-pack),1,3.84,2019-05-26 15:48:00,124 14th St, Portland,OR,97035 +207311,USB-C Charging Cable,1,11.95,2019-05-21 20:47:00,610 Jefferson St, San Francisco,CA,94016 +207312,AAA Batteries (4-pack),1,2.99,2019-05-21 16:31:00,842 Dogwood St, Los Angeles,CA,90001 +207313,AAA Batteries (4-pack),1,2.99,2019-05-05 13:54:00,634 Washington St, Austin,TX,73301 +207314,iPhone,1,700.0,2019-05-07 12:57:00,124 Ridge St, New York City,NY,10001 +207314,Wired Headphones,1,11.99,2019-05-07 12:57:00,124 Ridge St, New York City,NY,10001 +207315,Wired Headphones,1,11.99,2019-05-23 08:15:00,290 Chestnut St, New York City,NY,10001 +207316,Apple Airpods Headphones,1,150.0,2019-05-11 00:38:00,721 14th St, Boston,MA,02215 +207317,27in FHD Monitor,1,149.99,2019-05-06 00:15:00,3 Center St, San Francisco,CA,94016 +207318,LG Washing Machine,1,600.0,2019-05-03 11:39:00,95 Highland St, New York City,NY,10001 +207319,Wired Headphones,1,11.99,2019-05-08 10:54:00,550 Wilson St, Seattle,WA,98101 +207320,Macbook Pro Laptop,1,1700.0,2019-05-02 21:04:00,417 Walnut St, Los Angeles,CA,90001 +207321,Lightning Charging Cable,2,14.95,2019-05-03 20:44:00,158 13th St, Portland,OR,97035 +207322,AA Batteries (4-pack),1,3.84,2019-05-08 20:41:00,226 Lake St, New York City,NY,10001 +207323,AAA Batteries (4-pack),2,2.99,2019-05-08 16:35:00,517 1st St, San Francisco,CA,94016 +207324,Bose SoundSport Headphones,1,99.99,2019-05-03 20:50:00,488 4th St, Austin,TX,73301 +207325,Wired Headphones,2,11.99,2019-05-22 15:26:00,369 Pine St, Portland,ME,04101 +207326,iPhone,1,700.0,2019-05-16 17:40:00,566 Johnson St, Portland,OR,97035 +207327,AA Batteries (4-pack),1,3.84,2019-05-04 00:06:00,633 Washington St, Dallas,TX,75001 +207328,27in FHD Monitor,1,149.99,2019-05-11 21:55:00,806 South St, San Francisco,CA,94016 +207329,Wired Headphones,1,11.99,2019-05-17 17:09:00,329 Cherry St, Los Angeles,CA,90001 +207330,Lightning Charging Cable,1,14.95,2019-05-18 09:50:00,709 11th St, Boston,MA,02215 +207331,AAA Batteries (4-pack),1,2.99,2019-05-09 20:00:00,649 14th St, Boston,MA,02215 +207332,Lightning Charging Cable,1,14.95,2019-05-29 17:29:00,493 Maple St, Seattle,WA,98101 +207333,Bose SoundSport Headphones,1,99.99,2019-05-10 23:09:00,871 Center St, New York City,NY,10001 +207333,27in 4K Gaming Monitor,1,389.99,2019-05-10 23:09:00,871 Center St, New York City,NY,10001 +207334,Google Phone,1,600.0,2019-05-11 16:29:00,604 River St, Portland,ME,04101 +207335,Flatscreen TV,1,300.0,2019-05-03 13:58:00,346 Cedar St, New York City,NY,10001 +207336,Apple Airpods Headphones,1,150.0,2019-05-11 21:22:00,837 River St, San Francisco,CA,94016 +207337,20in Monitor,1,109.99,2019-05-27 06:10:00,580 Hickory St, Austin,TX,73301 +207338,Flatscreen TV,1,300.0,2019-05-09 22:24:00,504 1st St, Atlanta,GA,30301 +207339,Apple Airpods Headphones,1,150.0,2019-05-08 11:10:00,527 9th St, Los Angeles,CA,90001 +207340,USB-C Charging Cable,1,11.95,2019-05-27 08:19:00,447 8th St, Dallas,TX,75001 +207341,Apple Airpods Headphones,1,150.0,2019-05-09 10:51:00,714 8th St, Los Angeles,CA,90001 +207342,Vareebadd Phone,1,400.0,2019-05-03 11:40:00,304 North St, Portland,OR,97035 +207342,Wired Headphones,1,11.99,2019-05-03 11:40:00,304 North St, Portland,OR,97035 +207343,Lightning Charging Cable,2,14.95,2019-05-19 13:30:00,170 Wilson St, San Francisco,CA,94016 +207344,Lightning Charging Cable,1,14.95,2019-05-02 15:47:00,527 Maple St, Austin,TX,73301 +207345,Bose SoundSport Headphones,1,99.99,2019-05-16 17:57:00,511 Lincoln St, Boston,MA,02215 +207346,27in FHD Monitor,1,149.99,2019-05-03 13:24:00,276 1st St, San Francisco,CA,94016 +207347,Macbook Pro Laptop,1,1700.0,2019-05-09 22:26:00,97 Meadow St, San Francisco,CA,94016 +207348,27in FHD Monitor,1,149.99,2019-05-26 12:48:00,325 Elm St, Portland,OR,97035 +207349,USB-C Charging Cable,1,11.95,2019-05-08 21:17:00,780 Meadow St, San Francisco,CA,94016 +207350,Wired Headphones,1,11.99,2019-05-25 09:32:00,593 7th St, Los Angeles,CA,90001 +207351,Wired Headphones,1,11.99,2019-05-13 00:20:00,453 Main St, Los Angeles,CA,90001 +207352,Wired Headphones,1,11.99,2019-05-22 22:30:00,61 Jackson St, Los Angeles,CA,90001 +207353,Lightning Charging Cable,1,14.95,2019-05-05 19:34:00,341 6th St, New York City,NY,10001 +207354,Wired Headphones,1,11.99,2019-05-31 12:38:00,995 Center St, Seattle,WA,98101 +207355,Apple Airpods Headphones,1,150.0,2019-05-19 00:27:00,632 Park St, Boston,MA,02215 +207356,Bose SoundSport Headphones,1,99.99,2019-05-20 09:43:00,406 Main St, Dallas,TX,75001 +207357,27in FHD Monitor,1,149.99,2019-05-12 16:27:00,496 Pine St, New York City,NY,10001 +207358,AAA Batteries (4-pack),1,2.99,2019-05-30 15:43:00,581 Pine St, Boston,MA,02215 +207359,AA Batteries (4-pack),1,3.84,2019-05-28 20:00:00,77 Cherry St, Boston,MA,02215 +207360,Wired Headphones,1,11.99,2019-05-13 19:16:00,763 9th St, New York City,NY,10001 +207361,USB-C Charging Cable,1,11.95,2019-05-03 19:49:00,769 Forest St, Los Angeles,CA,90001 +207362,AAA Batteries (4-pack),1,2.99,2019-05-08 18:18:00,497 4th St, New York City,NY,10001 +207363,Lightning Charging Cable,1,14.95,2019-05-02 12:53:00,89 14th St, San Francisco,CA,94016 +207364,Lightning Charging Cable,1,14.95,2019-05-18 14:26:00,116 West St, Boston,MA,02215 +207365,Lightning Charging Cable,1,14.95,2019-05-29 05:23:00,800 Walnut St, Seattle,WA,98101 +207366,AAA Batteries (4-pack),1,2.99,2019-05-01 21:13:00,635 Lincoln St, Boston,MA,02215 +207367,34in Ultrawide Monitor,1,379.99,2019-05-30 20:50:00,392 Chestnut St, Dallas,TX,75001 +207368,USB-C Charging Cable,1,11.95,2019-05-29 16:07:00,992 4th St, Seattle,WA,98101 +207369,27in FHD Monitor,1,149.99,2019-05-10 17:06:00,205 Jefferson St, New York City,NY,10001 +207369,USB-C Charging Cable,1,11.95,2019-05-10 17:06:00,205 Jefferson St, New York City,NY,10001 +207370,AAA Batteries (4-pack),1,2.99,2019-05-15 16:21:00,268 9th St, Boston,MA,02215 +207371,AA Batteries (4-pack),1,3.84,2019-05-14 10:22:00,605 Cherry St, Portland,OR,97035 +207372,AAA Batteries (4-pack),5,2.99,2019-05-21 17:29:00,520 Ridge St, Dallas,TX,75001 +207373,AA Batteries (4-pack),1,3.84,2019-05-05 12:30:00,623 Willow St, Portland,OR,97035 +207374,AA Batteries (4-pack),1,3.84,2019-05-14 20:30:00,473 2nd St, San Francisco,CA,94016 +207375,Bose SoundSport Headphones,1,99.99,2019-05-19 12:52:00,972 2nd St, Boston,MA,02215 +207376,Apple Airpods Headphones,1,150.0,2019-05-11 10:18:00,612 Madison St, Austin,TX,73301 +207377,20in Monitor,1,109.99,2019-05-13 19:29:00,706 Forest St, Seattle,WA,98101 +207378,27in 4K Gaming Monitor,1,389.99,2019-05-13 14:02:00,435 10th St, Los Angeles,CA,90001 +207379,Google Phone,1,600.0,2019-05-29 18:24:00,136 South St, Dallas,TX,75001 +207379,Wired Headphones,1,11.99,2019-05-29 18:24:00,136 South St, Dallas,TX,75001 +207380,Macbook Pro Laptop,1,1700.0,2019-05-23 18:27:00,934 4th St, New York City,NY,10001 +207381,USB-C Charging Cable,1,11.95,2019-05-01 18:09:00,386 Johnson St, Boston,MA,02215 +207382,Wired Headphones,1,11.99,2019-05-10 16:22:00,159 12th St, New York City,NY,10001 +207383,AAA Batteries (4-pack),2,2.99,2019-05-15 16:41:00,71 Adams St, San Francisco,CA,94016 +207384,Google Phone,1,600.0,2019-05-17 17:15:00,393 Center St, Los Angeles,CA,90001 +207385,USB-C Charging Cable,1,11.95,2019-05-22 10:56:00,915 Willow St, Boston,MA,02215 +207386,Flatscreen TV,1,300.0,2019-05-24 18:28:00,772 Madison St, Dallas,TX,75001 +207387,Apple Airpods Headphones,1,150.0,2019-05-20 14:18:00,170 Walnut St, San Francisco,CA,94016 +207388,27in 4K Gaming Monitor,1,389.99,2019-05-23 00:52:00,184 Spruce St, Seattle,WA,98101 +207389,Bose SoundSport Headphones,1,99.99,2019-05-10 12:39:00,726 Cherry St, Los Angeles,CA,90001 +207390,27in FHD Monitor,1,149.99,2019-05-19 23:20:00,982 Hickory St, Austin,TX,73301 +207391,iPhone,1,700.0,2019-05-30 17:08:00,135 Chestnut St, Austin,TX,73301 +207392,27in 4K Gaming Monitor,1,389.99,2019-05-11 12:07:00,219 Highland St, San Francisco,CA,94016 +207393,AA Batteries (4-pack),1,3.84,2019-05-23 23:16:00,365 12th St, Los Angeles,CA,90001 +207394,Lightning Charging Cable,1,14.95,2019-05-07 14:49:00,226 Madison St, New York City,NY,10001 +207395,USB-C Charging Cable,1,11.95,2019-05-18 07:44:00,740 Wilson St, San Francisco,CA,94016 +207396,Wired Headphones,1,11.99,2019-05-30 22:10:00,252 Main St, Los Angeles,CA,90001 +207397,AAA Batteries (4-pack),1,2.99,2019-05-13 15:35:00,867 8th St, San Francisco,CA,94016 +207398,USB-C Charging Cable,1,11.95,2019-05-08 15:57:00,94 9th St, Los Angeles,CA,90001 +207399,Lightning Charging Cable,2,14.95,2019-05-19 09:56:00,436 13th St, San Francisco,CA,94016 +207400,Flatscreen TV,1,300.0,2019-05-14 20:59:00,707 North St, Dallas,TX,75001 +207401,Lightning Charging Cable,1,14.95,2019-05-06 09:28:00,427 Elm St, Dallas,TX,75001 +207402,27in 4K Gaming Monitor,1,389.99,2019-05-09 20:01:00,432 Johnson St, Dallas,TX,75001 +207403,Bose SoundSport Headphones,1,99.99,2019-05-09 12:01:00,404 9th St, Seattle,WA,98101 +207404,27in 4K Gaming Monitor,1,389.99,2019-05-19 18:08:00,968 West St, Boston,MA,02215 +207405,20in Monitor,1,109.99,2019-05-06 10:58:00,959 Chestnut St, Los Angeles,CA,90001 +207406,AA Batteries (4-pack),1,3.84,2019-05-12 14:40:00,3 Washington St, Los Angeles,CA,90001 +207407,27in FHD Monitor,1,149.99,2019-05-11 14:36:00,55 13th St, Dallas,TX,75001 +207408,AAA Batteries (4-pack),1,2.99,2019-05-29 23:46:00,805 Dogwood St, Los Angeles,CA,90001 +207409,Google Phone,1,600.0,2019-05-10 14:42:00,711 Ridge St, San Francisco,CA,94016 +207410,USB-C Charging Cable,1,11.95,2019-05-20 20:44:00,43 Main St, San Francisco,CA,94016 +207411,27in FHD Monitor,1,149.99,2019-05-12 17:21:00,111 14th St, Seattle,WA,98101 +207412,AAA Batteries (4-pack),1,2.99,2019-05-19 12:20:00,822 Adams St, Portland,OR,97035 +207413,Lightning Charging Cable,1,14.95,2019-05-12 17:43:00,561 Spruce St, New York City,NY,10001 +207414,AA Batteries (4-pack),1,3.84,2019-05-16 22:45:00,634 13th St, San Francisco,CA,94016 +207415,Google Phone,1,600.0,2019-05-19 13:26:00,464 Madison St, Seattle,WA,98101 +207415,USB-C Charging Cable,1,11.95,2019-05-19 13:26:00,464 Madison St, Seattle,WA,98101 +207416,iPhone,1,700.0,2019-05-07 17:28:00,58 Lincoln St, Los Angeles,CA,90001 +207417,Google Phone,1,600.0,2019-05-21 09:20:00,302 7th St, New York City,NY,10001 +207418,Wired Headphones,1,11.99,2019-05-20 08:53:00,615 1st St, San Francisco,CA,94016 +207419,27in FHD Monitor,1,149.99,2019-05-08 19:13:00,940 Pine St, San Francisco,CA,94016 +207420,USB-C Charging Cable,1,11.95,2019-05-17 18:53:00,561 Cherry St, Boston,MA,02215 +207421,AAA Batteries (4-pack),1,2.99,2019-05-02 22:16:00,124 11th St, Dallas,TX,75001 +207422,Lightning Charging Cable,1,14.95,2019-05-03 08:22:00,589 Johnson St, Austin,TX,73301 +207423,Apple Airpods Headphones,1,150.0,2019-05-17 21:04:00,132 11th St, San Francisco,CA,94016 +207424,27in FHD Monitor,1,149.99,2019-05-08 13:59:00,618 14th St, New York City,NY,10001 +207425,Bose SoundSport Headphones,1,99.99,2019-05-27 19:49:00,586 West St, Los Angeles,CA,90001 +207426,Flatscreen TV,1,300.0,2019-05-08 22:59:00,930 Willow St, San Francisco,CA,94016 +207427,Apple Airpods Headphones,1,150.0,2019-05-31 14:55:00,100 Dogwood St, Dallas,TX,75001 +207428,AAA Batteries (4-pack),2,2.99,2019-05-05 13:44:00,875 Hickory St, Atlanta,GA,30301 +207429,AA Batteries (4-pack),1,3.84,2019-05-05 13:39:00,462 Adams St, Seattle,WA,98101 +207430,Lightning Charging Cable,1,14.95,2019-05-11 09:47:00,410 2nd St, San Francisco,CA,94016 +207431,AA Batteries (4-pack),1,3.84,2019-05-03 16:02:00,778 South St, Dallas,TX,75001 +207432,Apple Airpods Headphones,1,150.0,2019-05-12 16:15:00,417 9th St, New York City,NY,10001 +207433,USB-C Charging Cable,1,11.95,2019-05-19 12:14:00,289 West St, San Francisco,CA,94016 +207434,AAA Batteries (4-pack),1,2.99,2019-05-14 20:22:00,180 Adams St, Boston,MA,02215 +207435,AAA Batteries (4-pack),3,2.99,2019-05-11 22:57:00,400 Dogwood St, Dallas,TX,75001 +207436,AA Batteries (4-pack),1,3.84,2019-05-14 10:09:00,674 Hickory St, Portland,OR,97035 +207437,Wired Headphones,1,11.99,2019-05-28 18:29:00,820 Willow St, Atlanta,GA,30301 +207438,USB-C Charging Cable,1,11.95,2019-05-04 19:09:00,725 Chestnut St, Atlanta,GA,30301 +207439,Wired Headphones,1,11.99,2019-05-16 16:09:00,494 Main St, San Francisco,CA,94016 +207440,AA Batteries (4-pack),1,3.84,2019-05-15 19:50:00,213 Pine St, San Francisco,CA,94016 +207441,AAA Batteries (4-pack),2,2.99,2019-05-20 09:03:00,710 Meadow St, New York City,NY,10001 +207442,Apple Airpods Headphones,1,150.0,2019-05-29 23:23:00,905 Hill St, San Francisco,CA,94016 +207443,Apple Airpods Headphones,1,150.0,2019-05-07 15:52:00,532 Sunset St, San Francisco,CA,94016 +207444,Lightning Charging Cable,1,14.95,2019-05-28 13:49:00,782 Cedar St, Austin,TX,73301 +207444,USB-C Charging Cable,1,11.95,2019-05-28 13:49:00,782 Cedar St, Austin,TX,73301 +207445,Lightning Charging Cable,1,14.95,2019-05-25 22:29:00,273 Lincoln St, New York City,NY,10001 +207446,AA Batteries (4-pack),1,3.84,2019-05-30 10:42:00,123 12th St, San Francisco,CA,94016 +207447,USB-C Charging Cable,1,11.95,2019-05-12 15:37:00,894 River St, San Francisco,CA,94016 +207448,20in Monitor,1,109.99,2019-05-18 07:58:00,249 13th St, Portland,OR,97035 +207449,Google Phone,1,600.0,2019-05-02 00:02:00,250 Adams St, San Francisco,CA,94016 +207450,iPhone,1,700.0,2019-05-25 23:25:00,292 Lakeview St, Atlanta,GA,30301 +207450,Lightning Charging Cable,1,14.95,2019-05-25 23:25:00,292 Lakeview St, Atlanta,GA,30301 +207451,AA Batteries (4-pack),2,3.84,2019-05-10 18:40:00,398 Meadow St, Boston,MA,02215 +207452,AAA Batteries (4-pack),2,2.99,2019-05-28 19:58:00,27 9th St, Dallas,TX,75001 +207453,Wired Headphones,1,11.99,2019-05-10 17:17:00,558 Washington St, San Francisco,CA,94016 +207454,27in 4K Gaming Monitor,1,389.99,2019-05-07 17:09:00,165 Chestnut St, San Francisco,CA,94016 +207455,Wired Headphones,1,11.99,2019-05-23 15:48:00,723 Wilson St, Portland,OR,97035 +207456,Flatscreen TV,1,300.0,2019-05-01 19:52:00,279 Willow St, Boston,MA,02215 +207457,Flatscreen TV,1,300.0,2019-05-24 12:08:00,467 4th St, New York City,NY,10001 +207458,Apple Airpods Headphones,1,150.0,2019-05-12 10:59:00,919 Cedar St, San Francisco,CA,94016 +207459,Lightning Charging Cable,1,14.95,2019-05-18 19:47:00,394 Main St, Boston,MA,02215 +207460,AA Batteries (4-pack),1,3.84,2019-05-27 14:46:00,765 Cherry St, Dallas,TX,75001 +207461,Flatscreen TV,1,300.0,2019-05-26 14:00:00,505 Dogwood St, San Francisco,CA,94016 +207461,iPhone,1,700.0,2019-05-26 14:00:00,505 Dogwood St, San Francisco,CA,94016 +207462,USB-C Charging Cable,1,11.95,2019-05-09 19:21:00,712 Hickory St, New York City,NY,10001 +207463,AA Batteries (4-pack),1,3.84,2019-05-10 18:06:00,754 Elm St, Atlanta,GA,30301 +207464,27in 4K Gaming Monitor,1,389.99,2019-05-14 19:59:00,150 5th St, San Francisco,CA,94016 +207465,Macbook Pro Laptop,1,1700.0,2019-05-23 10:24:00,477 Sunset St, Austin,TX,73301 +207466,Bose SoundSport Headphones,1,99.99,2019-05-07 23:10:00,998 Highland St, Los Angeles,CA,90001 +207467,AA Batteries (4-pack),1,3.84,2019-05-31 21:51:00,743 Meadow St, Portland,OR,97035 +207468,AA Batteries (4-pack),2,3.84,2019-05-29 10:20:00,204 Lincoln St, Dallas,TX,75001 +207469,Vareebadd Phone,1,400.0,2019-05-24 08:46:00,715 Highland St, Los Angeles,CA,90001 +207470,Wired Headphones,1,11.99,2019-05-16 21:48:00,500 Lincoln St, Los Angeles,CA,90001 +207471,USB-C Charging Cable,1,11.95,2019-05-12 13:47:00,651 Elm St, Dallas,TX,75001 +207472,Wired Headphones,3,11.99,2019-05-07 23:35:00,931 4th St, Boston,MA,02215 +207473,ThinkPad Laptop,1,999.99,2019-05-26 20:06:00,458 Center St, Los Angeles,CA,90001 +207474,Apple Airpods Headphones,1,150.0,2019-05-26 22:14:00,609 North St, San Francisco,CA,94016 +207475,Lightning Charging Cable,1,14.95,2019-05-06 16:48:00,739 Walnut St, Dallas,TX,75001 +207476,Lightning Charging Cable,1,14.95,2019-05-02 19:48:00,987 Cherry St, Boston,MA,02215 +207477,AAA Batteries (4-pack),1,2.99,2019-05-16 17:57:00,273 11th St, Austin,TX,73301 +207478,Lightning Charging Cable,1,14.95,2019-05-04 10:01:00,344 Lake St, Dallas,TX,75001 +207479,Lightning Charging Cable,1,14.95,2019-05-17 08:27:00,406 Pine St, Los Angeles,CA,90001 +207480,Wired Headphones,1,11.99,2019-05-21 20:26:00,1 Park St, Portland,OR,97035 +207481,USB-C Charging Cable,1,11.95,2019-05-04 10:54:00,293 8th St, Seattle,WA,98101 +207482,AA Batteries (4-pack),1,3.84,2019-05-27 11:58:00,962 Madison St, Dallas,TX,75001 +207483,Bose SoundSport Headphones,1,99.99,2019-05-12 15:49:00,89 2nd St, Portland,OR,97035 +207484,27in FHD Monitor,1,149.99,2019-05-26 16:24:00,951 Main St, San Francisco,CA,94016 +207485,27in 4K Gaming Monitor,1,389.99,2019-05-07 17:37:00,762 Adams St, San Francisco,CA,94016 +207486,Lightning Charging Cable,1,14.95,2019-05-10 00:24:00,88 Lincoln St, Austin,TX,73301 +207487,AA Batteries (4-pack),3,3.84,2019-05-24 15:13:00,522 Walnut St, Seattle,WA,98101 +207488,Google Phone,1,600.0,2019-05-31 14:30:00,83 12th St, San Francisco,CA,94016 +207488,USB-C Charging Cable,1,11.95,2019-05-31 14:30:00,83 12th St, San Francisco,CA,94016 +207489,USB-C Charging Cable,1,11.95,2019-05-24 08:16:00,105 Hill St, San Francisco,CA,94016 +207490,Lightning Charging Cable,2,14.95,2019-05-18 08:03:00,260 2nd St, Dallas,TX,75001 +207491,27in FHD Monitor,1,149.99,2019-05-24 12:22:00,768 8th St, Portland,OR,97035 +207492,Wired Headphones,2,11.99,2019-05-12 02:36:00,456 Walnut St, San Francisco,CA,94016 +207493,Wired Headphones,1,11.99,2019-05-08 07:25:00,220 Highland St, Los Angeles,CA,90001 +207494,USB-C Charging Cable,3,11.95,2019-05-22 23:03:00,620 10th St, New York City,NY,10001 +207495,AAA Batteries (4-pack),1,2.99,2019-05-19 23:27:00,383 Pine St, San Francisco,CA,94016 +207496,Wired Headphones,1,11.99,2019-05-27 12:30:00,146 Willow St, New York City,NY,10001 +207497,Lightning Charging Cable,1,14.95,2019-05-13 14:06:00,242 12th St, Atlanta,GA,30301 +207498,27in 4K Gaming Monitor,1,389.99,2019-05-04 18:09:00,143 5th St, San Francisco,CA,94016 +207499,Wired Headphones,1,11.99,2019-05-15 23:24:00,136 Cedar St, New York City,NY,10001 +207500,Wired Headphones,1,11.99,2019-05-10 00:14:00,429 North St, Boston,MA,02215 +207501,Wired Headphones,1,11.99,2019-05-07 22:46:00,137 Lakeview St, Dallas,TX,75001 +207502,27in 4K Gaming Monitor,1,389.99,2019-05-23 19:24:00,326 2nd St, Austin,TX,73301 +207503,Apple Airpods Headphones,1,150.0,2019-05-22 18:00:00,973 Chestnut St, Los Angeles,CA,90001 +207504,Wired Headphones,1,11.99,2019-05-07 09:54:00,708 2nd St, Boston,MA,02215 +207505,USB-C Charging Cable,1,11.95,2019-05-18 08:12:00,262 Hickory St, San Francisco,CA,94016 +207506,AA Batteries (4-pack),1,3.84,2019-05-19 16:25:00,224 River St, New York City,NY,10001 +207507,Apple Airpods Headphones,1,150.0,2019-05-11 18:42:00,270 Highland St, Los Angeles,CA,90001 +207508,Apple Airpods Headphones,1,150.0,2019-05-21 00:07:00,885 West St, Boston,MA,02215 +207509,Lightning Charging Cable,1,14.95,2019-05-07 15:18:00,144 Cedar St, Austin,TX,73301 +207510,Wired Headphones,1,11.99,2019-05-04 19:41:00,159 12th St, San Francisco,CA,94016 +207511,iPhone,1,700.0,2019-05-16 12:51:00,412 Park St, Seattle,WA,98101 +207512,AA Batteries (4-pack),1,3.84,2019-05-02 18:01:00,118 Cedar St, San Francisco,CA,94016 +207513,USB-C Charging Cable,2,11.95,2019-05-19 11:18:00,285 Lake St, Portland,OR,97035 +207514,Lightning Charging Cable,1,14.95,2019-05-06 14:05:00,422 Lakeview St, San Francisco,CA,94016 +207515,Apple Airpods Headphones,1,150.0,2019-05-29 06:34:00,620 Dogwood St, San Francisco,CA,94016 +207516,AAA Batteries (4-pack),1,2.99,2019-05-10 19:00:00,709 Johnson St, Portland,OR,97035 +207517,AA Batteries (4-pack),1,3.84,2019-05-06 05:10:00,318 Elm St, Los Angeles,CA,90001 +207518,Google Phone,1,600.0,2019-05-02 21:21:00,659 5th St, San Francisco,CA,94016 +207519,AAA Batteries (4-pack),1,2.99,2019-05-01 14:11:00,940 2nd St, Los Angeles,CA,90001 +207520,ThinkPad Laptop,1,999.99,2019-05-26 16:21:00,147 Cedar St, Austin,TX,73301 +207521,AAA Batteries (4-pack),5,2.99,2019-05-07 09:58:00,921 12th St, Boston,MA,02215 +207522,AAA Batteries (4-pack),2,2.99,2019-05-27 19:04:00,694 Adams St, New York City,NY,10001 +207523,Macbook Pro Laptop,1,1700.0,2019-05-04 14:57:00,872 2nd St, Los Angeles,CA,90001 +207524,Lightning Charging Cable,1,14.95,2019-05-11 09:18:00,100 9th St, Los Angeles,CA,90001 +207525,Google Phone,1,600.0,2019-05-13 18:53:00,935 11th St, Los Angeles,CA,90001 +207525,USB-C Charging Cable,2,11.95,2019-05-13 18:53:00,935 11th St, Los Angeles,CA,90001 +207526,AAA Batteries (4-pack),1,2.99,2019-05-06 23:39:00,176 Hickory St, Boston,MA,02215 +207527,AAA Batteries (4-pack),5,2.99,2019-05-30 19:19:00,753 Main St, San Francisco,CA,94016 +207528,Lightning Charging Cable,1,14.95,2019-05-03 22:08:00,489 Hickory St, San Francisco,CA,94016 +207529,Wired Headphones,1,11.99,2019-05-07 14:22:00,66 9th St, San Francisco,CA,94016 +207530,Wired Headphones,1,11.99,2019-05-25 10:44:00,346 4th St, Atlanta,GA,30301 +207531,Bose SoundSport Headphones,1,99.99,2019-05-17 12:47:00,131 Hickory St, San Francisco,CA,94016 +207532,27in FHD Monitor,1,149.99,2019-05-03 08:12:00,874 West St, Atlanta,GA,30301 +207533,Apple Airpods Headphones,1,150.0,2019-05-17 17:39:00,612 Elm St, Los Angeles,CA,90001 +207534,Wired Headphones,1,11.99,2019-05-01 23:44:00,252 Johnson St, San Francisco,CA,94016 +207535,Lightning Charging Cable,1,14.95,2019-05-28 09:38:00,44 South St, Los Angeles,CA,90001 +207536,Google Phone,1,600.0,2019-05-14 18:57:00,290 13th St, Los Angeles,CA,90001 +207536,Bose SoundSport Headphones,1,99.99,2019-05-14 18:57:00,290 13th St, Los Angeles,CA,90001 +207537,20in Monitor,1,109.99,2019-05-16 01:13:00,1 Walnut St, New York City,NY,10001 +207538,AA Batteries (4-pack),1,3.84,2019-05-10 13:21:00,897 Lake St, Los Angeles,CA,90001 +207539,Lightning Charging Cable,1,14.95,2019-05-29 15:18:00,635 Meadow St, San Francisco,CA,94016 +207540,iPhone,1,700.0,2019-05-15 20:49:00,293 9th St, Seattle,WA,98101 +207540,Lightning Charging Cable,1,14.95,2019-05-15 20:49:00,293 9th St, Seattle,WA,98101 +207541,Lightning Charging Cable,1,14.95,2019-05-06 18:39:00,762 Sunset St, Dallas,TX,75001 +207542,AA Batteries (4-pack),1,3.84,2019-05-31 18:47:00,264 7th St, Austin,TX,73301 +207543,27in 4K Gaming Monitor,1,389.99,2019-05-09 09:10:00,978 Main St, San Francisco,CA,94016 +207544,Google Phone,1,600.0,2019-05-24 09:27:00,620 14th St, San Francisco,CA,94016 +207545,AA Batteries (4-pack),1,3.84,2019-05-03 19:54:00,495 4th St, Portland,OR,97035 +207546,Macbook Pro Laptop,1,1700.0,2019-05-23 22:14:00,701 Chestnut St, Dallas,TX,75001 +207547,AA Batteries (4-pack),1,3.84,2019-05-31 11:16:00,364 Meadow St, Dallas,TX,75001 +207547,Bose SoundSport Headphones,1,99.99,2019-05-31 11:16:00,364 Meadow St, Dallas,TX,75001 +207548,Bose SoundSport Headphones,1,99.99,2019-05-11 03:24:00,858 Hill St, Los Angeles,CA,90001 +207549,Apple Airpods Headphones,1,150.0,2019-05-10 11:17:00,191 6th St, San Francisco,CA,94016 +207550,Lightning Charging Cable,1,14.95,2019-05-10 13:31:00,358 Sunset St, Portland,OR,97035 +207551,LG Dryer,1,600.0,2019-05-21 21:24:00,183 Madison St, Austin,TX,73301 +207552,Lightning Charging Cable,1,14.95,2019-05-01 14:25:00,116 Cherry St, Portland,ME,04101 +207553,AA Batteries (4-pack),1,3.84,2019-05-13 16:34:00,8 Chestnut St, Portland,OR,97035 +207554,iPhone,1,700.0,2019-05-09 19:24:00,961 13th St, San Francisco,CA,94016 +207555,AAA Batteries (4-pack),1,2.99,2019-05-19 02:43:00,563 Church St, Seattle,WA,98101 +207556,AA Batteries (4-pack),1,3.84,2019-05-15 13:26:00,564 Washington St, Los Angeles,CA,90001 +207557,Bose SoundSport Headphones,1,99.99,2019-05-29 18:04:00,947 Willow St, Los Angeles,CA,90001 +207558,Macbook Pro Laptop,1,1700.0,2019-05-14 08:59:00,438 Willow St, New York City,NY,10001 +207559,Lightning Charging Cable,1,14.95,2019-05-03 17:55:00,571 Washington St, Portland,OR,97035 +207560,USB-C Charging Cable,1,11.95,2019-05-06 22:06:00,855 Forest St, Boston,MA,02215 +207561,27in FHD Monitor,1,149.99,2019-05-11 20:45:00,367 7th St, Los Angeles,CA,90001 +207562,Wired Headphones,1,11.99,2019-05-19 18:05:00,978 Center St, Portland,OR,97035 +207562,USB-C Charging Cable,1,11.95,2019-05-19 18:05:00,978 Center St, Portland,OR,97035 +207563,Macbook Pro Laptop,1,1700.0,2019-05-28 21:16:00,804 Adams St, Austin,TX,73301 +207564,Lightning Charging Cable,1,14.95,2019-05-01 13:34:00,730 8th St, Los Angeles,CA,90001 +207565,34in Ultrawide Monitor,1,379.99,2019-05-06 20:20:00,805 Lake St, New York City,NY,10001 +207566,27in FHD Monitor,1,149.99,2019-05-25 23:25:00,605 4th St, San Francisco,CA,94016 +207567,AA Batteries (4-pack),1,3.84,2019-05-20 15:38:00,638 Hill St, Portland,OR,97035 +207568,Wired Headphones,1,11.99,2019-05-13 09:33:00,115 Highland St, Boston,MA,02215 +207569,AAA Batteries (4-pack),1,2.99,2019-05-19 05:21:00,948 Cherry St, Portland,OR,97035 +207570,USB-C Charging Cable,2,11.95,2019-05-06 18:00:00,676 Chestnut St, Los Angeles,CA,90001 +207571,iPhone,1,700.0,2019-05-05 21:15:00,707 Ridge St, Portland,OR,97035 +207572,AA Batteries (4-pack),1,3.84,2019-05-11 22:45:00,468 Madison St, San Francisco,CA,94016 +207573,Apple Airpods Headphones,1,150.0,2019-05-14 18:46:00,803 9th St, Seattle,WA,98101 +207574,USB-C Charging Cable,2,11.95,2019-05-25 10:06:00,170 Wilson St, San Francisco,CA,94016 +207575,Macbook Pro Laptop,1,1700.0,2019-05-04 23:08:00,832 Hickory St, Los Angeles,CA,90001 +207576,27in FHD Monitor,1,149.99,2019-05-17 16:55:00,80 Hickory St, Boston,MA,02215 +207577,Wired Headphones,1,11.99,2019-05-09 20:06:00,66 Cedar St, Boston,MA,02215 +207578,AAA Batteries (4-pack),1,2.99,2019-05-13 18:08:00,101 6th St, Boston,MA,02215 +207579,27in 4K Gaming Monitor,1,389.99,2019-05-20 22:58:00,169 Elm St, San Francisco,CA,94016 +207580,AAA Batteries (4-pack),1,2.99,2019-05-14 15:08:00,804 12th St, Boston,MA,02215 +207581,AA Batteries (4-pack),2,3.84,2019-05-01 19:06:00,306 Johnson St, Los Angeles,CA,90001 +207582,Macbook Pro Laptop,1,1700.0,2019-05-28 16:09:00,106 Church St, Los Angeles,CA,90001 +207583,Lightning Charging Cable,1,14.95,2019-05-09 18:54:00,865 4th St, San Francisco,CA,94016 +207584,Apple Airpods Headphones,1,150.0,2019-05-03 12:02:00,852 Adams St, Los Angeles,CA,90001 +207584,AAA Batteries (4-pack),1,2.99,2019-05-03 12:02:00,852 Adams St, Los Angeles,CA,90001 +207585,AA Batteries (4-pack),2,3.84,2019-05-20 00:09:00,240 12th St, San Francisco,CA,94016 +207586,Wired Headphones,2,11.99,2019-05-19 21:20:00,275 11th St, Los Angeles,CA,90001 +207587,AA Batteries (4-pack),1,3.84,2019-05-20 10:11:00,691 8th St, Boston,MA,02215 +207588,AAA Batteries (4-pack),1,2.99,2019-05-28 21:47:00,673 Cedar St, Atlanta,GA,30301 +207589,Apple Airpods Headphones,1,150.0,2019-05-16 08:19:00,572 Center St, Dallas,TX,75001 +207590,USB-C Charging Cable,1,11.95,2019-05-03 19:48:00,766 West St, Austin,TX,73301 +207591,Apple Airpods Headphones,1,150.0,2019-05-21 20:35:00,436 6th St, San Francisco,CA,94016 +207592,27in 4K Gaming Monitor,1,389.99,2019-05-30 05:51:00,885 Cherry St, Portland,OR,97035 +207593,AA Batteries (4-pack),1,3.84,2019-05-30 22:52:00,903 Center St, Los Angeles,CA,90001 +207594,USB-C Charging Cable,1,11.95,2019-05-03 12:39:00,447 Washington St, San Francisco,CA,94016 +207595,ThinkPad Laptop,1,999.99,2019-05-08 20:40:00,641 Spruce St, Dallas,TX,75001 +207596,34in Ultrawide Monitor,1,379.99,2019-05-30 09:58:00,92 Lake St, San Francisco,CA,94016 +207597,iPhone,1,700.0,2019-05-27 02:07:00,635 11th St, Portland,ME,04101 +207598,Wired Headphones,2,11.99,2019-05-17 19:44:00,698 Church St, Dallas,TX,75001 +207599,27in FHD Monitor,1,149.99,2019-05-31 23:10:00,237 Hickory St, Los Angeles,CA,90001 +207600,Vareebadd Phone,1,400.0,2019-05-31 09:00:00,699 Park St, Boston,MA,02215 +207601,AA Batteries (4-pack),1,3.84,2019-05-06 14:24:00,797 North St, Boston,MA,02215 +207602,20in Monitor,1,109.99,2019-05-10 05:17:00,255 West St, Portland,OR,97035 +207603,Bose SoundSport Headphones,1,99.99,2019-05-21 14:07:00,976 Hill St, New York City,NY,10001 +207604,Macbook Pro Laptop,1,1700.0,2019-05-15 10:57:00,743 Lincoln St, San Francisco,CA,94016 +207605,Lightning Charging Cable,1,14.95,2019-05-31 11:34:00,341 South St, New York City,NY,10001 +207606,Macbook Pro Laptop,1,1700.0,2019-05-01 22:06:00,145 Cedar St, Los Angeles,CA,90001 +207607,Lightning Charging Cable,2,14.95,2019-05-26 00:43:00,666 10th St, San Francisco,CA,94016 +207608,AA Batteries (4-pack),1,3.84,2019-05-18 22:08:00,212 Forest St, New York City,NY,10001 +207609,Google Phone,1,600.0,2019-05-31 18:46:00,649 4th St, Boston,MA,02215 +207610,USB-C Charging Cable,1,11.95,2019-05-06 13:25:00,75 Park St, Seattle,WA,98101 +207611,27in FHD Monitor,1,149.99,2019-05-12 09:38:00,504 Forest St, New York City,NY,10001 +207612,34in Ultrawide Monitor,1,379.99,2019-05-12 19:20:00,136 West St, Austin,TX,73301 +207613,Vareebadd Phone,1,400.0,2019-05-30 15:24:00,629 Elm St, Atlanta,GA,30301 +207613,Wired Headphones,1,11.99,2019-05-30 15:24:00,629 Elm St, Atlanta,GA,30301 +207614,AAA Batteries (4-pack),1,2.99,2019-05-18 09:43:00,402 Main St, Austin,TX,73301 +207615,Wired Headphones,1,11.99,2019-05-04 20:12:00,127 11th St, Boston,MA,02215 +207616,AA Batteries (4-pack),1,3.84,2019-05-11 20:05:00,3 Madison St, Seattle,WA,98101 +207617,AA Batteries (4-pack),1,3.84,2019-05-04 14:17:00,13 Walnut St, Austin,TX,73301 +207618,LG Dryer,1,600.0,2019-05-23 23:54:00,710 Spruce St, Boston,MA,02215 +207619,Lightning Charging Cable,1,14.95,2019-05-14 18:01:00,308 Pine St, Atlanta,GA,30301 +207620,AAA Batteries (4-pack),1,2.99,2019-05-06 10:45:00,676 Sunset St, Los Angeles,CA,90001 +207621,AAA Batteries (4-pack),2,2.99,2019-05-27 00:07:00,761 Johnson St, San Francisco,CA,94016 +207622,Google Phone,1,600.0,2019-05-10 09:19:00,240 Dogwood St, Los Angeles,CA,90001 +207623,Apple Airpods Headphones,1,150.0,2019-05-15 07:35:00,447 Adams St, Portland,ME,04101 +207624,AA Batteries (4-pack),1,3.84,2019-05-22 18:16:00,209 Hickory St, Portland,OR,97035 +207625,Macbook Pro Laptop,1,1700.0,2019-05-16 20:10:00,139 Washington St, Dallas,TX,75001 +207626,AA Batteries (4-pack),1,3.84,2019-05-08 11:15:00,553 Lake St, Austin,TX,73301 +207627,LG Dryer,1,600.0,2019-05-21 12:58:00,303 Jefferson St, Boston,MA,02215 +207628,USB-C Charging Cable,1,11.95,2019-05-23 07:02:00,274 Lake St, San Francisco,CA,94016 +207629,AAA Batteries (4-pack),2,2.99,2019-05-07 16:34:00,743 13th St, Atlanta,GA,30301 +207630,AA Batteries (4-pack),1,3.84,2019-05-17 10:01:00,809 Cedar St, San Francisco,CA,94016 +207631,Lightning Charging Cable,1,14.95,2019-05-11 02:55:00,815 North St, New York City,NY,10001 +207632,Apple Airpods Headphones,1,150.0,2019-05-13 17:21:00,366 Elm St, Portland,ME,04101 +207633,Lightning Charging Cable,1,14.95,2019-05-02 17:40:00,391 Maple St, Atlanta,GA,30301 +207634,AAA Batteries (4-pack),1,2.99,2019-05-04 12:36:00,937 2nd St, Seattle,WA,98101 +207634,34in Ultrawide Monitor,1,379.99,2019-05-04 12:36:00,937 2nd St, Seattle,WA,98101 +207635,Flatscreen TV,1,300.0,2019-05-26 13:53:00,865 13th St, Boston,MA,02215 +207636,USB-C Charging Cable,1,11.95,2019-05-04 12:34:00,390 Center St, San Francisco,CA,94016 +207637,Lightning Charging Cable,1,14.95,2019-05-25 11:13:00,149 Church St, Austin,TX,73301 +207638,Lightning Charging Cable,1,14.95,2019-05-04 10:23:00,816 8th St, Austin,TX,73301 +207639,34in Ultrawide Monitor,1,379.99,2019-05-01 18:29:00,683 Forest St, Atlanta,GA,30301 +207640,Macbook Pro Laptop,1,1700.0,2019-05-16 16:55:00,520 2nd St, Boston,MA,02215 +207641,Apple Airpods Headphones,1,150.0,2019-05-26 20:42:00,238 Spruce St, New York City,NY,10001 +207642,AAA Batteries (4-pack),1,2.99,2019-05-14 14:26:00,810 8th St, San Francisco,CA,94016 +207643,AAA Batteries (4-pack),1,2.99,2019-05-11 10:47:00,731 River St, Los Angeles,CA,90001 +207644,USB-C Charging Cable,1,11.95,2019-05-14 11:28:00,873 Hill St, New York City,NY,10001 +207645,Bose SoundSport Headphones,1,99.99,2019-05-20 00:04:00,503 Cherry St, San Francisco,CA,94016 +207646,Lightning Charging Cable,1,14.95,2019-05-17 11:31:00,326 Sunset St, Boston,MA,02215 +207647,Lightning Charging Cable,1,14.95,2019-05-17 11:53:00,781 Wilson St, Boston,MA,02215 +207648,Wired Headphones,1,11.99,2019-05-06 22:40:00,478 Center St, San Francisco,CA,94016 +207649,Google Phone,1,600.0,2019-05-13 00:58:00,853 Lake St, Boston,MA,02215 +207650,AA Batteries (4-pack),1,3.84,2019-05-05 21:40:00,389 Wilson St, San Francisco,CA,94016 +207651,iPhone,1,700.0,2019-05-10 22:50:00,879 14th St, Los Angeles,CA,90001 +207652,iPhone,1,700.0,2019-05-23 10:01:00,904 6th St, Dallas,TX,75001 +207653,Wired Headphones,2,11.99,2019-05-20 23:31:00,573 Walnut St, San Francisco,CA,94016 +207654,AA Batteries (4-pack),4,3.84,2019-05-28 14:35:00,377 South St, San Francisco,CA,94016 +207655,Wired Headphones,1,11.99,2019-05-25 21:46:00,422 Forest St, Los Angeles,CA,90001 +207656,AAA Batteries (4-pack),1,2.99,2019-05-13 10:14:00,192 8th St, Dallas,TX,75001 +207657,Wired Headphones,1,11.99,2019-05-28 13:26:00,519 Meadow St, Los Angeles,CA,90001 +207658,Bose SoundSport Headphones,1,99.99,2019-05-07 16:26:00,581 Johnson St, Dallas,TX,75001 +207659,AAA Batteries (4-pack),1,2.99,2019-05-24 19:16:00,64 10th St, Boston,MA,02215 +207660,ThinkPad Laptop,1,999.99,2019-05-12 18:49:00,596 West St, Los Angeles,CA,90001 +207661,AA Batteries (4-pack),1,3.84,2019-05-25 23:28:00,233 South St, San Francisco,CA,94016 +207662,Google Phone,1,600.0,2019-05-23 20:18:00,807 Lakeview St, San Francisco,CA,94016 +207663,AA Batteries (4-pack),1,3.84,2019-05-07 08:16:00,169 Adams St, Atlanta,GA,30301 +207664,27in 4K Gaming Monitor,1,389.99,2019-05-27 08:44:00,115 Forest St, Atlanta,GA,30301 +207665,ThinkPad Laptop,1,999.99,2019-05-11 23:45:00,695 Lincoln St, Los Angeles,CA,90001 +207666,USB-C Charging Cable,1,11.95,2019-05-17 14:25:00,54 Pine St, Seattle,WA,98101 +207667,Apple Airpods Headphones,1,150.0,2019-05-25 15:04:00,641 11th St, San Francisco,CA,94016 +207668,AAA Batteries (4-pack),1,2.99,2019-05-04 15:12:00,734 West St, Seattle,WA,98101 +207669,Apple Airpods Headphones,1,150.0,2019-05-30 19:42:00,801 Dogwood St, Atlanta,GA,30301 +207670,27in 4K Gaming Monitor,1,389.99,2019-05-26 16:54:00,22 South St, Los Angeles,CA,90001 +207671,AA Batteries (4-pack),1,3.84,2019-05-30 22:58:00,172 Adams St, Los Angeles,CA,90001 +207672,Apple Airpods Headphones,1,150.0,2019-05-09 14:07:00,883 Sunset St, Boston,MA,02215 +207673,Wired Headphones,1,11.99,2019-05-26 15:43:00,943 11th St, Atlanta,GA,30301 +207674,AA Batteries (4-pack),1,3.84,2019-05-08 11:40:00,54 Adams St, San Francisco,CA,94016 +207675,Lightning Charging Cable,1,14.95,2019-05-10 17:51:00,306 North St, Atlanta,GA,30301 +207676,20in Monitor,1,109.99,2019-05-06 16:18:00,538 Hill St, Dallas,TX,75001 +207677,AAA Batteries (4-pack),2,2.99,2019-05-19 09:05:00,173 Pine St, Dallas,TX,75001 +207677,AA Batteries (4-pack),1,3.84,2019-05-19 09:05:00,173 Pine St, Dallas,TX,75001 +207678,Bose SoundSport Headphones,1,99.99,2019-05-12 09:17:00,562 Highland St, Los Angeles,CA,90001 +207679,Wired Headphones,1,11.99,2019-05-07 19:32:00,728 Cherry St, San Francisco,CA,94016 +207680,Lightning Charging Cable,1,14.95,2019-05-18 08:13:00,154 South St, San Francisco,CA,94016 +207681,Lightning Charging Cable,1,14.95,2019-05-30 18:32:00,380 Forest St, Boston,MA,02215 +207682,Lightning Charging Cable,1,14.95,2019-05-25 22:19:00,566 Hickory St, Dallas,TX,75001 +207683,34in Ultrawide Monitor,1,379.99,2019-05-03 21:44:00,276 13th St, New York City,NY,10001 +207684,27in FHD Monitor,1,149.99,2019-05-23 19:39:00,269 Highland St, New York City,NY,10001 +207685,Apple Airpods Headphones,1,150.0,2019-05-02 13:51:00,284 Ridge St, Los Angeles,CA,90001 +207686,AA Batteries (4-pack),2,3.84,2019-05-11 18:24:00,519 Pine St, San Francisco,CA,94016 +207687,34in Ultrawide Monitor,1,379.99,2019-05-07 19:09:00,678 Cherry St, San Francisco,CA,94016 +207688,AAA Batteries (4-pack),3,2.99,2019-05-22 17:22:00,809 8th St, Seattle,WA,98101 +207689,Apple Airpods Headphones,1,150.0,2019-05-23 22:44:00,440 6th St, Portland,ME,04101 +207690,USB-C Charging Cable,1,11.95,2019-05-19 10:00:00,599 Lakeview St, San Francisco,CA,94016 +207691,ThinkPad Laptop,1,999.99,2019-05-10 18:01:00,790 Jefferson St, New York City,NY,10001 +207692,USB-C Charging Cable,1,11.95,2019-05-23 17:42:00,145 Meadow St, Dallas,TX,75001 +207693,AAA Batteries (4-pack),2,2.99,2019-05-03 22:22:00,176 Maple St, Dallas,TX,75001 +207694,Wired Headphones,1,11.99,2019-05-01 20:18:00,340 North St, Boston,MA,02215 +207695,Lightning Charging Cable,1,14.95,2019-05-12 21:49:00,518 Lincoln St, Seattle,WA,98101 +207696,27in FHD Monitor,1,149.99,2019-05-08 19:20:00,618 Lake St, San Francisco,CA,94016 +207697,Bose SoundSport Headphones,1,99.99,2019-05-02 13:21:00,308 Main St, San Francisco,CA,94016 +207698,iPhone,1,700.0,2019-05-01 17:12:00,460 6th St, San Francisco,CA,94016 +207698,Wired Headphones,1,11.99,2019-05-01 17:12:00,460 6th St, San Francisco,CA,94016 +207699,AA Batteries (4-pack),1,3.84,2019-05-30 09:27:00,482 9th St, Seattle,WA,98101 +207700,Wired Headphones,1,11.99,2019-05-09 19:03:00,363 Hickory St, San Francisco,CA,94016 +207701,USB-C Charging Cable,1,11.95,2019-05-17 13:32:00,985 Hill St, San Francisco,CA,94016 +207702,AA Batteries (4-pack),1,3.84,2019-05-02 12:43:00,597 13th St, Seattle,WA,98101 +207703,USB-C Charging Cable,1,11.95,2019-05-01 18:50:00,443 6th St, San Francisco,CA,94016 +207704,Google Phone,1,600.0,2019-05-20 12:43:00,243 Hill St, San Francisco,CA,94016 +207705,AA Batteries (4-pack),1,3.84,2019-05-21 18:00:00,387 14th St, San Francisco,CA,94016 +207706,34in Ultrawide Monitor,1,379.99,2019-05-05 16:44:00,905 12th St, Los Angeles,CA,90001 +207707,AAA Batteries (4-pack),1,2.99,2019-05-21 18:25:00,133 Sunset St, Boston,MA,02215 +207708,AAA Batteries (4-pack),2,2.99,2019-05-28 14:47:00,142 Lincoln St, New York City,NY,10001 +207709,Bose SoundSport Headphones,1,99.99,2019-05-20 10:17:00,38 12th St, San Francisco,CA,94016 +207710,USB-C Charging Cable,1,11.95,2019-05-12 10:36:00,121 4th St, Boston,MA,02215 +207711,20in Monitor,1,109.99,2019-05-09 18:07:00,306 6th St, San Francisco,CA,94016 +207712,USB-C Charging Cable,1,11.95,2019-05-19 18:43:00,825 4th St, San Francisco,CA,94016 +207713,Apple Airpods Headphones,1,150.0,2019-05-31 17:25:00,907 Lakeview St, Dallas,TX,75001 +207714,USB-C Charging Cable,1,11.95,2019-05-02 11:58:00,427 Meadow St, Los Angeles,CA,90001 +207715,Apple Airpods Headphones,1,150.0,2019-05-16 14:10:00,271 7th St, San Francisco,CA,94016 +207716,AA Batteries (4-pack),1,3.84,2019-05-10 16:23:00,704 Hickory St, San Francisco,CA,94016 +207717,Apple Airpods Headphones,1,150.0,2019-05-04 09:44:00,942 Main St, Boston,MA,02215 +207718,27in FHD Monitor,1,149.99,2019-05-04 09:37:00,302 Dogwood St, Portland,ME,04101 +207719,Apple Airpods Headphones,1,150.0,2019-05-17 20:09:00,474 Dogwood St, Seattle,WA,98101 +207720,27in 4K Gaming Monitor,1,389.99,2019-05-17 09:34:00,570 South St, Boston,MA,02215 +207721,20in Monitor,1,109.99,2019-05-12 13:20:00,785 2nd St, New York City,NY,10001 +207722,27in 4K Gaming Monitor,1,389.99,2019-05-16 13:10:00,968 Adams St, Dallas,TX,75001 +207723,AAA Batteries (4-pack),1,2.99,2019-05-19 18:39:00,157 11th St, San Francisco,CA,94016 +207724,AA Batteries (4-pack),1,3.84,2019-05-21 20:53:00,254 Maple St, San Francisco,CA,94016 +207725,iPhone,1,700.0,2019-05-12 19:30:00,643 Highland St, Atlanta,GA,30301 +207725,Wired Headphones,1,11.99,2019-05-12 19:30:00,643 Highland St, Atlanta,GA,30301 +207726,Bose SoundSport Headphones,1,99.99,2019-05-29 18:22:00,657 Chestnut St, San Francisco,CA,94016 +207727,iPhone,1,700.0,2019-05-13 19:24:00,839 Hill St, Los Angeles,CA,90001 +207728,Wired Headphones,1,11.99,2019-05-02 20:09:00,478 Sunset St, Portland,ME,04101 +207729,ThinkPad Laptop,1,999.99,2019-05-18 09:31:00,573 Lincoln St, Los Angeles,CA,90001 +207730,ThinkPad Laptop,1,999.99,2019-05-03 14:06:00,514 South St, Austin,TX,73301 +207731,AAA Batteries (4-pack),2,2.99,2019-05-05 19:00:00,58 Jackson St, Los Angeles,CA,90001 +207732,Wired Headphones,1,11.99,2019-05-22 19:32:00,507 Chestnut St, Atlanta,GA,30301 +207733,Vareebadd Phone,1,400.0,2019-05-20 18:12:00,35 6th St, San Francisco,CA,94016 +207734,AAA Batteries (4-pack),4,2.99,2019-05-08 15:48:00,670 12th St, Portland,OR,97035 +207735,LG Dryer,1,600.0,2019-05-26 20:26:00,901 10th St, San Francisco,CA,94016 +207736,Lightning Charging Cable,1,14.95,2019-05-11 13:26:00,795 11th St, San Francisco,CA,94016 +207737,USB-C Charging Cable,1,11.95,2019-05-30 16:07:00,638 Washington St, Seattle,WA,98101 +207738,Wired Headphones,1,11.99,2019-05-08 10:33:00,925 Main St, San Francisco,CA,94016 +207739,Lightning Charging Cable,1,14.95,2019-05-20 19:07:00,936 Wilson St, Portland,ME,04101 +207740,AA Batteries (4-pack),1,3.84,2019-05-06 15:13:00,159 Willow St, Los Angeles,CA,90001 +207741,USB-C Charging Cable,1,11.95,2019-05-28 19:17:00,360 10th St, Atlanta,GA,30301 +207742,27in FHD Monitor,1,149.99,2019-05-03 17:27:00,652 Highland St, Los Angeles,CA,90001 +207743,AA Batteries (4-pack),1,3.84,2019-05-23 07:02:00,99 12th St, Portland,OR,97035 +207744,Wired Headphones,1,11.99,2019-05-10 12:48:00,948 11th St, San Francisco,CA,94016 +207745,Apple Airpods Headphones,1,150.0,2019-05-20 18:31:00,696 10th St, New York City,NY,10001 +207746,Bose SoundSport Headphones,1,99.99,2019-05-05 18:08:00,634 13th St, Boston,MA,02215 +207747,AAA Batteries (4-pack),1,2.99,2019-05-23 17:04:00,419 Walnut St, Austin,TX,73301 +207748,27in 4K Gaming Monitor,1,389.99,2019-05-12 21:10:00,146 Hickory St, Seattle,WA,98101 +207749,Bose SoundSport Headphones,1,99.99,2019-05-23 11:28:00,975 Church St, Los Angeles,CA,90001 +207750,34in Ultrawide Monitor,1,379.99,2019-05-29 17:02:00,102 Hickory St, Dallas,TX,75001 +207751,Lightning Charging Cable,1,14.95,2019-05-25 17:17:00,533 Wilson St, Seattle,WA,98101 +207752,Apple Airpods Headphones,1,150.0,2019-05-08 12:51:00,972 Spruce St, San Francisco,CA,94016 +207753,USB-C Charging Cable,1,11.95,2019-05-20 16:27:00,723 North St, San Francisco,CA,94016 +207754,Lightning Charging Cable,1,14.95,2019-05-24 06:51:00,517 Ridge St, Austin,TX,73301 +207755,Lightning Charging Cable,1,14.95,2019-05-29 15:13:00,403 Johnson St, San Francisco,CA,94016 +207756,USB-C Charging Cable,1,11.95,2019-05-02 16:37:00,241 Wilson St, New York City,NY,10001 +207757,34in Ultrawide Monitor,1,379.99,2019-05-24 16:27:00,866 13th St, Boston,MA,02215 +207758,Bose SoundSport Headphones,1,99.99,2019-05-23 21:25:00,972 Wilson St, San Francisco,CA,94016 +207759,Macbook Pro Laptop,1,1700.0,2019-05-16 17:14:00,695 Jefferson St, New York City,NY,10001 +207760,Lightning Charging Cable,1,14.95,2019-05-06 18:41:00,375 14th St, San Francisco,CA,94016 +207761,Apple Airpods Headphones,1,150.0,2019-05-14 17:49:00,335 Meadow St, Portland,OR,97035 +207762,AAA Batteries (4-pack),1,2.99,2019-05-27 21:02:00,264 Park St, Los Angeles,CA,90001 +207763,ThinkPad Laptop,1,999.99,2019-05-27 10:26:00,144 Hill St, San Francisco,CA,94016 +207764,AA Batteries (4-pack),1,3.84,2019-05-01 17:43:00,546 Hill St, Seattle,WA,98101 +207765,AA Batteries (4-pack),1,3.84,2019-05-20 01:14:00,92 Dogwood St, New York City,NY,10001 +207766,Wired Headphones,1,11.99,2019-05-30 11:15:00,568 Highland St, Los Angeles,CA,90001 +207766,Lightning Charging Cable,1,14.95,2019-05-30 11:15:00,568 Highland St, Los Angeles,CA,90001 +207767,Wired Headphones,1,11.99,2019-05-12 17:36:00,759 River St, Austin,TX,73301 +207768,AAA Batteries (4-pack),1,2.99,2019-05-05 12:41:00,724 Chestnut St, San Francisco,CA,94016 +207769,AAA Batteries (4-pack),1,2.99,2019-05-21 08:37:00,843 7th St, San Francisco,CA,94016 +207770,AAA Batteries (4-pack),1,2.99,2019-05-14 17:57:00,345 11th St, New York City,NY,10001 +207771,Lightning Charging Cable,1,14.95,2019-05-10 18:23:00,223 Johnson St, Boston,MA,02215 +207772,LG Dryer,1,600.0,2019-05-19 01:24:00,304 Cherry St, San Francisco,CA,94016 +207773,ThinkPad Laptop,1,999.99,2019-05-08 12:54:00,186 Hickory St, Boston,MA,02215 +207773,AA Batteries (4-pack),1,3.84,2019-05-08 12:54:00,186 Hickory St, Boston,MA,02215 +207774,USB-C Charging Cable,1,11.95,2019-05-12 12:26:00,430 13th St, Portland,OR,97035 +207775,Macbook Pro Laptop,1,1700.0,2019-05-09 18:16:00,358 Cherry St, New York City,NY,10001 +207776,34in Ultrawide Monitor,1,379.99,2019-05-12 22:50:00,588 Lakeview St, San Francisco,CA,94016 +207777,Apple Airpods Headphones,1,150.0,2019-05-21 02:26:00,416 Park St, Atlanta,GA,30301 +207778,27in 4K Gaming Monitor,1,389.99,2019-05-02 19:51:00,366 Washington St, San Francisco,CA,94016 +207779,Apple Airpods Headphones,1,150.0,2019-05-31 22:57:00,26 Johnson St, San Francisco,CA,94016 +207780,Wired Headphones,2,11.99,2019-05-06 11:13:00,486 Ridge St, Portland,ME,04101 +207781,USB-C Charging Cable,1,11.95,2019-05-26 08:28:00,761 1st St, Dallas,TX,75001 +207782,AAA Batteries (4-pack),2,2.99,2019-05-28 22:45:00,440 Center St, Boston,MA,02215 +207783,USB-C Charging Cable,1,11.95,2019-05-10 12:35:00,815 Main St, Boston,MA,02215 +207784,Lightning Charging Cable,1,14.95,2019-05-18 21:00:00,52 South St, Los Angeles,CA,90001 +207785,Apple Airpods Headphones,1,150.0,2019-05-26 19:03:00,195 9th St, Atlanta,GA,30301 +207786,Wired Headphones,1,11.99,2019-05-08 19:29:00,19 South St, San Francisco,CA,94016 +207787,AAA Batteries (4-pack),3,2.99,2019-05-02 07:01:00,786 Sunset St, New York City,NY,10001 +207788,AA Batteries (4-pack),1,3.84,2019-05-15 06:10:00,134 Madison St, Atlanta,GA,30301 +207789,AA Batteries (4-pack),2,3.84,2019-05-25 20:12:00,299 11th St, Portland,OR,97035 +207790,AAA Batteries (4-pack),1,2.99,2019-05-08 17:19:00,433 1st St, Atlanta,GA,30301 +207791,Lightning Charging Cable,1,14.95,2019-05-08 19:11:00,831 4th St, Los Angeles,CA,90001 +207792,Macbook Pro Laptop,1,1700.0,2019-05-30 22:03:00,61 Maple St, Austin,TX,73301 +207793,USB-C Charging Cable,1,11.95,2019-05-02 08:27:00,367 Spruce St, Los Angeles,CA,90001 +207794,iPhone,1,700.0,2019-05-06 19:19:00,760 Cedar St, San Francisco,CA,94016 +207795,ThinkPad Laptop,1,999.99,2019-05-11 21:09:00,826 11th St, San Francisco,CA,94016 +207796,USB-C Charging Cable,1,11.95,2019-05-23 00:40:00,292 South St, Atlanta,GA,30301 +207797,27in FHD Monitor,1,149.99,2019-05-20 21:07:00,439 West St, New York City,NY,10001 +207798,USB-C Charging Cable,1,11.95,2019-05-07 18:10:00,407 Johnson St, Austin,TX,73301 +207799,Flatscreen TV,1,300.0,2019-05-27 05:33:00,276 6th St, Los Angeles,CA,90001 +207800,Bose SoundSport Headphones,1,99.99,2019-05-21 20:47:00,511 Dogwood St, Los Angeles,CA,90001 +207801,USB-C Charging Cable,1,11.95,2019-05-03 11:22:00,398 Dogwood St, New York City,NY,10001 +207802,AA Batteries (4-pack),2,3.84,2019-05-28 06:23:00,850 Highland St, Boston,MA,02215 +207803,AAA Batteries (4-pack),1,2.99,2019-05-19 21:21:00,340 Walnut St, New York City,NY,10001 +207804,AA Batteries (4-pack),1,3.84,2019-05-11 21:46:00,319 Washington St, Los Angeles,CA,90001 +207805,AAA Batteries (4-pack),2,2.99,2019-05-20 16:40:00,143 Church St, New York City,NY,10001 +207806,27in 4K Gaming Monitor,1,389.99,2019-05-18 10:36:00,838 North St, Los Angeles,CA,90001 +207807,Lightning Charging Cable,1,14.95,2019-05-04 19:46:00,561 9th St, Atlanta,GA,30301 +207808,AA Batteries (4-pack),1,3.84,2019-05-22 01:51:00,136 Walnut St, Los Angeles,CA,90001 +207809,Lightning Charging Cable,1,14.95,2019-05-08 17:09:00,935 Spruce St, Portland,OR,97035 +207810,AA Batteries (4-pack),1,3.84,2019-05-27 01:47:00,564 10th St, San Francisco,CA,94016 +207811,ThinkPad Laptop,1,999.99,2019-05-17 12:28:00,798 5th St, San Francisco,CA,94016 +207812,Flatscreen TV,1,300.0,2019-05-16 16:23:00,661 Cedar St, Portland,OR,97035 +207813,Lightning Charging Cable,1,14.95,2019-05-09 01:12:00,894 4th St, Los Angeles,CA,90001 +207814,Wired Headphones,1,11.99,2019-05-10 23:43:00,386 Washington St, New York City,NY,10001 +207814,Bose SoundSport Headphones,1,99.99,2019-05-10 23:43:00,386 Washington St, New York City,NY,10001 +207815,ThinkPad Laptop,1,999.99,2019-05-04 13:37:00,587 Church St, San Francisco,CA,94016 +207816,Lightning Charging Cable,1,14.95,2019-05-19 05:25:00,82 Pine St, San Francisco,CA,94016 +207817,AA Batteries (4-pack),1,3.84,2019-05-31 20:22:00,912 Meadow St, New York City,NY,10001 +207818,Bose SoundSport Headphones,1,99.99,2019-05-02 21:12:00,652 Meadow St, New York City,NY,10001 +207819,Wired Headphones,1,11.99,2019-05-05 19:23:00,200 South St, Austin,TX,73301 +207820,AAA Batteries (4-pack),1,2.99,2019-05-11 19:40:00,942 8th St, Austin,TX,73301 +207821,Vareebadd Phone,1,400.0,2019-05-13 01:49:00,75 14th St, Boston,MA,02215 +207822,34in Ultrawide Monitor,1,379.99,2019-05-06 14:39:00,607 Pine St, San Francisco,CA,94016 +207823,Lightning Charging Cable,2,14.95,2019-05-01 20:26:00,144 Meadow St, Boston,MA,02215 +207824,iPhone,1,700.0,2019-05-26 12:34:00,846 South St, Portland,OR,97035 +207825,USB-C Charging Cable,2,11.95,2019-05-27 21:09:00,696 Church St, Austin,TX,73301 +207826,Apple Airpods Headphones,1,150.0,2019-05-07 16:48:00,903 West St, San Francisco,CA,94016 +207827,USB-C Charging Cable,1,11.95,2019-05-04 19:14:00,412 Maple St, Boston,MA,02215 +207828,iPhone,1,700.0,2019-05-23 19:56:00,249 Main St, San Francisco,CA,94016 +207828,Lightning Charging Cable,2,14.95,2019-05-23 19:56:00,249 Main St, San Francisco,CA,94016 +207829,27in FHD Monitor,1,149.99,2019-05-29 06:45:00,267 West St, San Francisco,CA,94016 +207830,27in 4K Gaming Monitor,1,389.99,2019-05-29 20:24:00,113 Madison St, New York City,NY,10001 +207831,Lightning Charging Cable,1,14.95,2019-05-22 20:22:00,429 Hill St, Dallas,TX,75001 +207832,USB-C Charging Cable,1,11.95,2019-05-26 14:17:00,261 North St, Dallas,TX,75001 +207833,27in FHD Monitor,1,149.99,2019-05-03 14:41:00,477 North St, Atlanta,GA,30301 +207833,Flatscreen TV,1,300.0,2019-05-03 14:41:00,477 North St, Atlanta,GA,30301 +207834,Wired Headphones,1,11.99,2019-05-16 13:08:00,682 7th St, Los Angeles,CA,90001 +207835,Flatscreen TV,1,300.0,2019-05-30 19:11:00,64 Ridge St, Austin,TX,73301 +207836,USB-C Charging Cable,1,11.95,2019-05-20 20:45:00,595 Elm St, Los Angeles,CA,90001 +207837,AAA Batteries (4-pack),1,2.99,2019-05-20 17:33:00,401 Hill St, Portland,OR,97035 +207838,AAA Batteries (4-pack),1,2.99,2019-05-10 16:57:00,378 Main St, Dallas,TX,75001 +207839,AA Batteries (4-pack),2,3.84,2019-05-05 14:59:00,411 Chestnut St, Boston,MA,02215 +207840,ThinkPad Laptop,1,999.99,2019-05-04 17:54:00,802 Madison St, Atlanta,GA,30301 +207841,Apple Airpods Headphones,1,150.0,2019-05-24 10:18:00,683 10th St, Los Angeles,CA,90001 +207842,Google Phone,1,600.0,2019-05-12 13:28:00,224 Pine St, Los Angeles,CA,90001 +207843,Apple Airpods Headphones,1,150.0,2019-05-08 09:32:00,983 North St, Atlanta,GA,30301 +207844,AA Batteries (4-pack),1,3.84,2019-05-26 20:11:00,274 Sunset St, Portland,ME,04101 +207845,AAA Batteries (4-pack),2,2.99,2019-05-30 10:52:00,676 Adams St, Atlanta,GA,30301 +207846,Vareebadd Phone,1,400.0,2019-05-25 13:12:00,439 Sunset St, San Francisco,CA,94016 +207847,27in FHD Monitor,1,149.99,2019-05-09 21:34:00,193 Lake St, San Francisco,CA,94016 +207848,USB-C Charging Cable,1,11.95,2019-05-13 13:05:00,43 Chestnut St, New York City,NY,10001 +207849,AAA Batteries (4-pack),1,2.99,2019-05-01 17:58:00,33 North St, Dallas,TX,75001 +207850,Apple Airpods Headphones,1,150.0,2019-05-15 14:25:00,791 Forest St, Portland,OR,97035 +207851,Bose SoundSport Headphones,1,99.99,2019-05-16 21:51:00,848 6th St, San Francisco,CA,94016 +207852,USB-C Charging Cable,1,11.95,2019-05-17 14:37:00,852 10th St, Portland,ME,04101 +207853,Wired Headphones,1,11.99,2019-05-28 11:02:00,354 Jackson St, Los Angeles,CA,90001 +207854,AA Batteries (4-pack),1,3.84,2019-05-18 09:01:00,626 13th St, Seattle,WA,98101 +207855,USB-C Charging Cable,1,11.95,2019-05-31 08:35:00,478 Johnson St, Atlanta,GA,30301 +207856,27in 4K Gaming Monitor,1,389.99,2019-05-12 00:01:00,760 Church St, Los Angeles,CA,90001 +207857,AA Batteries (4-pack),1,3.84,2019-05-07 13:17:00,181 Hill St, San Francisco,CA,94016 +207858,27in FHD Monitor,1,149.99,2019-05-30 20:53:00,323 Lake St, Boston,MA,02215 +207859,AA Batteries (4-pack),1,3.84,2019-05-03 22:47:00,981 Elm St, San Francisco,CA,94016 +207860,Lightning Charging Cable,1,14.95,2019-05-30 18:10:00,17 Madison St, Seattle,WA,98101 +207861,AAA Batteries (4-pack),1,2.99,2019-05-09 15:15:00,213 Chestnut St, Los Angeles,CA,90001 +207862,Lightning Charging Cable,1,14.95,2019-05-26 17:49:00,17 Lake St, Los Angeles,CA,90001 +207863,27in FHD Monitor,1,149.99,2019-05-18 15:39:00,377 Lincoln St, San Francisco,CA,94016 +207864,USB-C Charging Cable,1,11.95,2019-05-11 12:18:00,967 River St, New York City,NY,10001 +207865,AAA Batteries (4-pack),3,2.99,2019-05-10 07:48:00,847 Forest St, Seattle,WA,98101 +207866,Flatscreen TV,1,300.0,2019-05-17 12:45:00,792 Church St, Los Angeles,CA,90001 +207867,27in FHD Monitor,1,149.99,2019-05-13 08:39:00,281 Maple St, Atlanta,GA,30301 +207868,AA Batteries (4-pack),1,3.84,2019-05-28 14:05:00,533 Spruce St, Los Angeles,CA,90001 +207869,Flatscreen TV,1,300.0,2019-05-24 08:09:00,661 Willow St, Portland,ME,04101 +207870,27in FHD Monitor,1,149.99,2019-05-26 20:48:00,751 Wilson St, Los Angeles,CA,90001 +207871,Lightning Charging Cable,1,14.95,2019-05-24 20:10:00,288 Hill St, Dallas,TX,75001 +207872,Lightning Charging Cable,1,14.95,2019-05-25 11:07:00,984 Adams St, Dallas,TX,75001 +207873,Flatscreen TV,1,300.0,2019-05-31 17:58:00,307 Walnut St, San Francisco,CA,94016 +207874,AAA Batteries (4-pack),1,2.99,2019-05-28 22:47:00,899 12th St, New York City,NY,10001 +207875,AAA Batteries (4-pack),1,2.99,2019-05-18 15:00:00,448 Highland St, Boston,MA,02215 +207876,27in 4K Gaming Monitor,1,389.99,2019-05-24 22:10:00,154 Jackson St, Los Angeles,CA,90001 +207877,Lightning Charging Cable,1,14.95,2019-05-29 11:57:00,610 Lakeview St, New York City,NY,10001 +207878,Wired Headphones,1,11.99,2019-05-16 21:55:00,741 Pine St, Atlanta,GA,30301 +207879,27in FHD Monitor,1,149.99,2019-05-02 09:24:00,158 Main St, San Francisco,CA,94016 +207880,AAA Batteries (4-pack),3,2.99,2019-05-13 20:48:00,718 Meadow St, New York City,NY,10001 +207881,AA Batteries (4-pack),1,3.84,2019-05-30 21:09:00,365 6th St, New York City,NY,10001 +207882,Bose SoundSport Headphones,1,99.99,2019-05-31 16:53:00,527 Hill St, Portland,OR,97035 +207883,Lightning Charging Cable,1,14.95,2019-05-19 16:00:00,768 Jackson St, Dallas,TX,75001 +207884,Bose SoundSport Headphones,1,99.99,2019-05-12 06:42:00,856 5th St, Dallas,TX,75001 +207885,Flatscreen TV,1,300.0,2019-05-18 07:29:00,93 1st St, San Francisco,CA,94016 +207886,USB-C Charging Cable,1,11.95,2019-05-20 00:03:00,885 Elm St, Portland,OR,97035 +207887,AAA Batteries (4-pack),2,2.99,2019-05-14 00:05:00,73 7th St, Los Angeles,CA,90001 +207888,Lightning Charging Cable,1,14.95,2019-05-28 21:44:00,960 9th St, Seattle,WA,98101 +207889,iPhone,1,700.0,2019-05-31 10:58:00,93 Lake St, New York City,NY,10001 +207890,AA Batteries (4-pack),1,3.84,2019-05-27 17:02:00,10 Church St, Dallas,TX,75001 +207891,Lightning Charging Cable,1,14.95,2019-05-04 09:43:00,280 Willow St, Portland,OR,97035 +207892,Wired Headphones,1,11.99,2019-05-25 21:01:00,338 2nd St, Atlanta,GA,30301 +207893,AAA Batteries (4-pack),1,2.99,2019-05-20 10:25:00,992 Sunset St, San Francisco,CA,94016 +207894,AA Batteries (4-pack),1,3.84,2019-05-25 18:43:00,616 Park St, New York City,NY,10001 +207895,iPhone,1,700.0,2019-05-31 19:35:00,761 Cedar St, New York City,NY,10001 +207896,Apple Airpods Headphones,1,150.0,2019-05-27 11:23:00,726 14th St, New York City,NY,10001 +207897,Lightning Charging Cable,1,14.95,2019-05-20 00:52:00,712 Adams St, Seattle,WA,98101 +207898,Bose SoundSport Headphones,1,99.99,2019-05-05 09:30:00,764 Meadow St, Austin,TX,73301 +207899,iPhone,1,700.0,2019-05-25 18:19:00,253 Dogwood St, San Francisco,CA,94016 +207900,Lightning Charging Cable,1,14.95,2019-05-30 23:30:00,276 8th St, New York City,NY,10001 +207900,AA Batteries (4-pack),1,3.84,2019-05-30 23:30:00,276 8th St, New York City,NY,10001 +207901,USB-C Charging Cable,1,11.95,2019-05-06 11:03:00,4 Madison St, Dallas,TX,75001 +207902,AAA Batteries (4-pack),3,2.99,2019-05-21 18:50:00,653 Lincoln St, Portland,OR,97035 +207903,AA Batteries (4-pack),1,3.84,2019-05-26 09:57:00,134 Spruce St, Los Angeles,CA,90001 +207904,Flatscreen TV,1,300.0,2019-05-22 20:26:00,572 11th St, Seattle,WA,98101 +207905,Lightning Charging Cable,1,14.95,2019-05-14 12:37:00,694 Sunset St, Atlanta,GA,30301 +207906,Apple Airpods Headphones,1,150.0,2019-05-24 15:15:00,383 Jefferson St, Seattle,WA,98101 +207907,Lightning Charging Cable,1,14.95,2019-05-02 18:36:00,402 Forest St, Los Angeles,CA,90001 +207908,iPhone,1,700.0,2019-05-24 09:12:00,468 Jefferson St, New York City,NY,10001 +207908,Lightning Charging Cable,1,14.95,2019-05-24 09:12:00,468 Jefferson St, New York City,NY,10001 +207909,AA Batteries (4-pack),2,3.84,2019-05-06 17:42:00,776 8th St, Portland,ME,04101 +207910,USB-C Charging Cable,1,11.95,2019-05-31 09:23:00,658 2nd St, Atlanta,GA,30301 +207911,Bose SoundSport Headphones,1,99.99,2019-05-23 11:37:00,110 Park St, Boston,MA,02215 +207912,Lightning Charging Cable,1,14.95,2019-05-26 12:39:00,435 Highland St, Los Angeles,CA,90001 +207913,Lightning Charging Cable,1,14.95,2019-05-15 22:47:00,361 Lincoln St, Dallas,TX,75001 +207914,AA Batteries (4-pack),1,3.84,2019-05-28 11:42:00,96 Main St, Atlanta,GA,30301 +207915,Lightning Charging Cable,1,14.95,2019-05-13 07:16:00,146 South St, San Francisco,CA,94016 +207916,USB-C Charging Cable,1,11.95,2019-05-04 10:56:00,22 North St, New York City,NY,10001 +207917,34in Ultrawide Monitor,1,379.99,2019-05-06 12:50:00,794 Madison St, San Francisco,CA,94016 +207918,Lightning Charging Cable,1,14.95,2019-05-25 11:06:00,186 South St, Seattle,WA,98101 +207919,AA Batteries (4-pack),1,3.84,2019-05-26 13:33:00,483 Maple St, Seattle,WA,98101 +207920,USB-C Charging Cable,1,11.95,2019-05-08 17:24:00,683 8th St, Seattle,WA,98101 +207921,Lightning Charging Cable,1,14.95,2019-05-21 10:00:00,404 Park St, Los Angeles,CA,90001 +207922,AAA Batteries (4-pack),4,2.99,2019-05-09 15:21:00,49 5th St, San Francisco,CA,94016 +207923,iPhone,1,700.0,2019-05-14 10:14:00,649 Johnson St, San Francisco,CA,94016 +207923,USB-C Charging Cable,1,11.95,2019-05-14 10:14:00,649 Johnson St, San Francisco,CA,94016 +207924,27in 4K Gaming Monitor,1,389.99,2019-05-09 12:44:00,479 Hickory St, Boston,MA,02215 +207925,Macbook Pro Laptop,1,1700.0,2019-05-07 08:16:00,481 Church St, Atlanta,GA,30301 +207926,AA Batteries (4-pack),1,3.84,2019-05-25 18:43:00,197 4th St, Los Angeles,CA,90001 +207927,Wired Headphones,1,11.99,2019-05-28 14:05:00,350 Lake St, Portland,OR,97035 +207928,Lightning Charging Cable,1,14.95,2019-05-09 10:38:00,327 13th St, Los Angeles,CA,90001 +207929,USB-C Charging Cable,1,11.95,2019-05-20 19:21:00,265 Maple St, San Francisco,CA,94016 +207930,AA Batteries (4-pack),5,3.84,2019-05-25 13:40:00,386 12th St, Atlanta,GA,30301 +207931,Lightning Charging Cable,1,14.95,2019-05-07 21:12:00,595 Wilson St, San Francisco,CA,94016 +207932,LG Dryer,1,600.0,2019-05-30 15:08:00,303 Pine St, San Francisco,CA,94016 +207933,AA Batteries (4-pack),1,3.84,2019-05-04 20:23:00,596 5th St, San Francisco,CA,94016 +207934,27in 4K Gaming Monitor,1,389.99,2019-05-24 00:15:00,813 Church St, New York City,NY,10001 +207935,Google Phone,1,600.0,2019-05-08 15:23:00,662 Jackson St, Portland,OR,97035 +207935,USB-C Charging Cable,1,11.95,2019-05-08 15:23:00,662 Jackson St, Portland,OR,97035 +207935,Wired Headphones,1,11.99,2019-05-08 15:23:00,662 Jackson St, Portland,OR,97035 +207936,AAA Batteries (4-pack),1,2.99,2019-05-27 10:15:00,587 Chestnut St, Dallas,TX,75001 +207937,Lightning Charging Cable,1,14.95,2019-05-09 14:23:00,806 Sunset St, New York City,NY,10001 +207938,USB-C Charging Cable,1,11.95,2019-05-24 19:13:00,161 Madison St, San Francisco,CA,94016 +207939,27in 4K Gaming Monitor,1,389.99,2019-05-27 20:44:00,199 Lakeview St, San Francisco,CA,94016 +207940,Wired Headphones,1,11.99,2019-05-04 09:37:00,548 Church St, Los Angeles,CA,90001 +207941,Apple Airpods Headphones,1,150.0,2019-05-28 18:46:00,275 Jackson St, Los Angeles,CA,90001 +207942,AA Batteries (4-pack),2,3.84,2019-05-30 18:46:00,108 13th St, Los Angeles,CA,90001 +207943,Google Phone,1,600.0,2019-05-04 12:53:00,173 Jefferson St, San Francisco,CA,94016 +207944,Google Phone,1,600.0,2019-05-05 09:04:00,450 Ridge St, Los Angeles,CA,90001 +207944,Wired Headphones,1,11.99,2019-05-05 09:04:00,450 Ridge St, Los Angeles,CA,90001 +207945,AAA Batteries (4-pack),4,2.99,2019-05-03 16:29:00,372 Lakeview St, Atlanta,GA,30301 +207946,AAA Batteries (4-pack),1,2.99,2019-05-17 09:12:00,905 8th St, New York City,NY,10001 +207947,27in FHD Monitor,1,149.99,2019-05-22 10:42:00,998 2nd St, Atlanta,GA,30301 +207948,Lightning Charging Cable,1,14.95,2019-05-26 08:45:00,909 Hill St, Los Angeles,CA,90001 +207949,Bose SoundSport Headphones,1,99.99,2019-05-26 11:36:00,25 Spruce St, Seattle,WA,98101 +207950,27in FHD Monitor,1,149.99,2019-05-05 20:44:00,692 Church St, New York City,NY,10001 +207951,Wired Headphones,1,11.99,2019-05-18 08:28:00,206 9th St, Los Angeles,CA,90001 +207952,34in Ultrawide Monitor,1,379.99,2019-05-23 22:29:00,145 Lakeview St, San Francisco,CA,94016 +207953,Bose SoundSport Headphones,1,99.99,2019-05-10 14:32:00,24 Jefferson St, New York City,NY,10001 +207954,AAA Batteries (4-pack),1,2.99,2019-05-10 21:19:00,586 Main St, New York City,NY,10001 +207955,Apple Airpods Headphones,1,150.0,2019-05-17 08:22:00,514 Park St, Boston,MA,02215 +207956,AAA Batteries (4-pack),1,2.99,2019-05-12 16:35:00,395 9th St, San Francisco,CA,94016 +207957,AA Batteries (4-pack),1,3.84,2019-05-27 14:39:00,664 Meadow St, Los Angeles,CA,90001 +207958,AAA Batteries (4-pack),1,2.99,2019-05-12 08:52:00,929 Madison St, Los Angeles,CA,90001 +207959,Vareebadd Phone,1,400.0,2019-05-12 09:45:00,365 Forest St, Boston,MA,02215 +207960,20in Monitor,1,109.99,2019-05-19 21:45:00,547 Elm St, Los Angeles,CA,90001 +207961,34in Ultrawide Monitor,1,379.99,2019-05-31 04:39:00,937 6th St, Boston,MA,02215 +207962,27in 4K Gaming Monitor,1,389.99,2019-05-04 14:57:00,315 Jefferson St, San Francisco,CA,94016 +207963,Macbook Pro Laptop,1,1700.0,2019-05-26 08:49:00,112 Park St, New York City,NY,10001 +207964,AAA Batteries (4-pack),1,2.99,2019-05-01 20:40:00,187 South St, Los Angeles,CA,90001 +207965,Lightning Charging Cable,1,14.95,2019-05-07 06:01:00,292 Wilson St, San Francisco,CA,94016 +207966,AAA Batteries (4-pack),3,2.99,2019-05-09 21:24:00,94 Walnut St, Seattle,WA,98101 +207967,Wired Headphones,1,11.99,2019-05-27 16:44:00,339 Madison St, Seattle,WA,98101 +207968,Wired Headphones,2,11.99,2019-05-19 18:22:00,604 Walnut St, Atlanta,GA,30301 +207969,Apple Airpods Headphones,1,150.0,2019-05-17 16:33:00,729 6th St, San Francisco,CA,94016 +207970,AAA Batteries (4-pack),1,2.99,2019-05-07 18:51:00,219 Center St, Atlanta,GA,30301 +207971,Apple Airpods Headphones,1,150.0,2019-05-04 13:18:00,823 Hill St, Boston,MA,02215 +207972,34in Ultrawide Monitor,1,379.99,2019-05-30 09:55:00,607 2nd St, Portland,OR,97035 +207973,Apple Airpods Headphones,1,150.0,2019-05-02 18:21:00,517 9th St, New York City,NY,10001 +207974,Wired Headphones,1,11.99,2019-05-13 11:11:00,189 Center St, Los Angeles,CA,90001 +207975,Bose SoundSport Headphones,1,99.99,2019-05-12 11:22:00,943 Lake St, New York City,NY,10001 +207976,Google Phone,1,600.0,2019-05-03 20:17:00,647 Wilson St, Boston,MA,02215 +207977,34in Ultrawide Monitor,1,379.99,2019-05-26 12:26:00,15 Hickory St, San Francisco,CA,94016 +207978,34in Ultrawide Monitor,1,379.99,2019-05-22 17:40:00,116 9th St, Dallas,TX,75001 +207979,Wired Headphones,1,11.99,2019-05-28 13:34:00,829 Forest St, Boston,MA,02215 +207980,27in FHD Monitor,1,149.99,2019-05-25 17:07:00,440 Maple St, Dallas,TX,75001 +207981,Apple Airpods Headphones,1,150.0,2019-05-16 13:56:00,940 Madison St, Boston,MA,02215 +207982,USB-C Charging Cable,1,11.95,2019-05-28 14:47:00,598 Pine St, New York City,NY,10001 +207983,34in Ultrawide Monitor,1,379.99,2019-05-08 18:55:00,477 Ridge St, Seattle,WA,98101 +207984,AAA Batteries (4-pack),4,2.99,2019-05-20 23:51:00,351 Spruce St, San Francisco,CA,94016 +207985,USB-C Charging Cable,1,11.95,2019-05-28 18:49:00,751 Park St, Portland,OR,97035 +207986,Flatscreen TV,1,300.0,2019-05-04 20:35:00,782 Maple St, New York City,NY,10001 +207987,AAA Batteries (4-pack),1,2.99,2019-05-12 13:14:00,175 10th St, Dallas,TX,75001 +207988,AAA Batteries (4-pack),1,2.99,2019-05-23 12:27:00,756 10th St, Atlanta,GA,30301 +207989,Bose SoundSport Headphones,1,99.99,2019-05-15 21:12:00,201 West St, New York City,NY,10001 +207990,Wired Headphones,2,11.99,2019-05-14 14:32:00,598 South St, San Francisco,CA,94016 +207991,Lightning Charging Cable,1,14.95,2019-05-23 01:14:00,826 Cedar St, Austin,TX,73301 +207992,Wired Headphones,1,11.99,2019-05-09 12:40:00,472 Forest St, Dallas,TX,75001 +207993,AAA Batteries (4-pack),3,2.99,2019-05-10 22:45:00,401 14th St, Dallas,TX,75001 +207994,AAA Batteries (4-pack),1,2.99,2019-05-13 22:40:00,802 10th St, Boston,MA,02215 +207995,Lightning Charging Cable,1,14.95,2019-05-31 23:02:00,740 Spruce St, Austin,TX,73301 +207996,AA Batteries (4-pack),1,3.84,2019-05-31 18:41:00,83 Center St, San Francisco,CA,94016 +207997,Vareebadd Phone,1,400.0,2019-05-23 11:56:00,646 Walnut St, Los Angeles,CA,90001 +207997,USB-C Charging Cable,1,11.95,2019-05-23 11:56:00,646 Walnut St, Los Angeles,CA,90001 +207997,Bose SoundSport Headphones,1,99.99,2019-05-23 11:56:00,646 Walnut St, Los Angeles,CA,90001 +207998,AA Batteries (4-pack),1,3.84,2019-05-02 20:49:00,184 6th St, San Francisco,CA,94016 +207999,27in FHD Monitor,1,149.99,2019-05-15 23:46:00,386 9th St, Boston,MA,02215 +208000,iPhone,1,700.0,2019-05-17 13:19:00,241 River St, New York City,NY,10001 +208000,Wired Headphones,1,11.99,2019-05-17 13:19:00,241 River St, New York City,NY,10001 +208001,iPhone,1,700.0,2019-05-08 11:26:00,579 Main St, Seattle,WA,98101 +208002,Wired Headphones,1,11.99,2019-05-31 10:43:00,45 Jefferson St, Austin,TX,73301 +208003,USB-C Charging Cable,1,11.95,2019-05-29 21:34:00,96 6th St, Dallas,TX,75001 +208004,Lightning Charging Cable,1,14.95,2019-05-08 13:32:00,271 Park St, Seattle,WA,98101 +208005,AAA Batteries (4-pack),1,2.99,2019-05-09 18:13:00,772 West St, Los Angeles,CA,90001 +208006,AAA Batteries (4-pack),1,2.99,2019-05-05 11:19:00,493 10th St, Los Angeles,CA,90001 +208007,iPhone,1,700.0,2019-05-22 17:25:00,927 Chestnut St, Los Angeles,CA,90001 +208008,27in FHD Monitor,1,149.99,2019-05-03 08:16:00,177 Lakeview St, San Francisco,CA,94016 +208009,AA Batteries (4-pack),1,3.84,2019-05-09 17:29:00,879 Forest St, New York City,NY,10001 +208010,Bose SoundSport Headphones,1,99.99,2019-05-11 10:49:00,790 11th St, Portland,OR,97035 +208011,AA Batteries (4-pack),2,3.84,2019-05-07 10:12:00,443 Forest St, Seattle,WA,98101 +208012,iPhone,1,700.0,2019-05-28 10:34:00,878 Church St, Los Angeles,CA,90001 +208013,27in 4K Gaming Monitor,1,389.99,2019-05-25 11:29:00,20 14th St, Boston,MA,02215 +208014,Macbook Pro Laptop,1,1700.0,2019-05-22 10:58:00,595 Maple St, Dallas,TX,75001 +208015,USB-C Charging Cable,1,11.95,2019-05-20 15:54:00,782 7th St, New York City,NY,10001 +208016,Wired Headphones,1,11.99,2019-05-03 16:32:00,807 Park St, Seattle,WA,98101 +208017,Lightning Charging Cable,1,14.95,2019-05-19 14:31:00,594 Walnut St, Boston,MA,02215 +208018,Macbook Pro Laptop,1,1700.0,2019-05-16 17:43:00,164 Maple St, New York City,NY,10001 +208019,AAA Batteries (4-pack),2,2.99,2019-05-19 11:16:00,618 12th St, Los Angeles,CA,90001 +208020,27in FHD Monitor,1,149.99,2019-05-01 11:20:00,229 Sunset St, Atlanta,GA,30301 +208021,USB-C Charging Cable,1,11.95,2019-05-17 19:32:00,679 Highland St, San Francisco,CA,94016 +208022,Wired Headphones,1,11.99,2019-05-01 13:28:00,489 Hill St, New York City,NY,10001 +208023,AAA Batteries (4-pack),1,2.99,2019-05-11 11:42:00,568 Wilson St, San Francisco,CA,94016 +208024,Lightning Charging Cable,1,14.95,2019-05-20 21:42:00,220 Walnut St, New York City,NY,10001 +208025,Wired Headphones,2,11.99,2019-05-30 08:26:00,736 Madison St, Atlanta,GA,30301 +208026,Wired Headphones,1,11.99,2019-05-18 14:35:00,402 Pine St, Portland,OR,97035 +208027,ThinkPad Laptop,1,999.99,2019-05-04 08:34:00,462 4th St, San Francisco,CA,94016 +208028,27in 4K Gaming Monitor,1,389.99,2019-05-02 20:50:00,106 Hill St, Seattle,WA,98101 +208029,34in Ultrawide Monitor,1,379.99,2019-05-22 18:25:00,850 Lincoln St, Los Angeles,CA,90001 +208030,Wired Headphones,1,11.99,2019-05-22 11:53:00,584 River St, Seattle,WA,98101 +208031,USB-C Charging Cable,1,11.95,2019-05-18 23:58:00,633 Dogwood St, Boston,MA,02215 +208032,27in FHD Monitor,1,149.99,2019-05-21 17:19:00,783 4th St, San Francisco,CA,94016 +208033,AA Batteries (4-pack),1,3.84,2019-05-09 10:32:00,460 Sunset St, Atlanta,GA,30301 +208034,Macbook Pro Laptop,1,1700.0,2019-05-03 12:44:00,63 Jackson St, Austin,TX,73301 +208035,AAA Batteries (4-pack),1,2.99,2019-05-23 23:51:00,23 Maple St, Seattle,WA,98101 +208036,USB-C Charging Cable,1,11.95,2019-05-15 19:13:00,296 West St, Dallas,TX,75001 +208037,Bose SoundSport Headphones,1,99.99,2019-05-02 13:51:00,689 Center St, San Francisco,CA,94016 +208038,Bose SoundSport Headphones,1,99.99,2019-05-17 18:47:00,991 10th St, Los Angeles,CA,90001 +208039,Apple Airpods Headphones,1,150.0,2019-05-28 20:59:00,229 Highland St, San Francisco,CA,94016 +208040,AA Batteries (4-pack),2,3.84,2019-05-28 22:44:00,15 Cedar St, San Francisco,CA,94016 +208041,Bose SoundSport Headphones,1,99.99,2019-05-25 17:19:00,44 Center St, Los Angeles,CA,90001 +208042,27in 4K Gaming Monitor,1,389.99,2019-05-03 19:15:00,813 Church St, New York City,NY,10001 +208043,Vareebadd Phone,1,400.0,2019-05-25 20:58:00,560 Dogwood St, New York City,NY,10001 +208044,Bose SoundSport Headphones,1,99.99,2019-05-10 14:50:00,704 10th St, San Francisco,CA,94016 +208045,USB-C Charging Cable,1,11.95,2019-05-21 14:32:00,937 Chestnut St, Boston,MA,02215 +208046,AAA Batteries (4-pack),2,2.99,2019-05-06 18:46:00,307 Cedar St, Los Angeles,CA,90001 +208047,Wired Headphones,1,11.99,2019-05-17 07:23:00,31 4th St, New York City,NY,10001 +208048,iPhone,1,700.0,2019-05-06 21:30:00,84 Lake St, Boston,MA,02215 +208049,Lightning Charging Cable,1,14.95,2019-05-04 09:27:00,308 Washington St, Austin,TX,73301 +208050,AA Batteries (4-pack),1,3.84,2019-05-24 23:35:00,428 Main St, Seattle,WA,98101 +208051,Google Phone,1,600.0,2019-05-17 19:44:00,716 Ridge St, Dallas,TX,75001 +208052,Apple Airpods Headphones,1,150.0,2019-05-25 14:39:00,33 South St, New York City,NY,10001 +208053,27in FHD Monitor,1,149.99,2019-05-02 15:44:00,807 11th St, New York City,NY,10001 +208054,AA Batteries (4-pack),1,3.84,2019-05-17 19:54:00,368 Highland St, New York City,NY,10001 +208055,USB-C Charging Cable,1,11.95,2019-05-15 14:38:00,998 Highland St, Boston,MA,02215 +208056,AA Batteries (4-pack),1,3.84,2019-05-05 09:37:00,525 Cherry St, Seattle,WA,98101 +208057,AAA Batteries (4-pack),1,2.99,2019-05-01 16:49:00,115 Adams St, Los Angeles,CA,90001 +208058,27in 4K Gaming Monitor,1,389.99,2019-05-01 05:05:00,192 River St, New York City,NY,10001 +208059,Wired Headphones,1,11.99,2019-05-15 21:12:00,839 Lincoln St, San Francisco,CA,94016 +208060,LG Washing Machine,1,600.0,2019-05-28 15:52:00,473 Madison St, San Francisco,CA,94016 +208061,USB-C Charging Cable,1,11.95,2019-05-13 23:29:00,583 10th St, San Francisco,CA,94016 +208062,AA Batteries (4-pack),1,3.84,2019-05-07 14:09:00,233 Dogwood St, Dallas,TX,75001 +208063,USB-C Charging Cable,1,11.95,2019-05-23 14:19:00,460 Wilson St, Boston,MA,02215 +208064,Lightning Charging Cable,1,14.95,2019-05-05 13:40:00,933 Pine St, Seattle,WA,98101 +208065,Apple Airpods Headphones,1,150.0,2019-05-08 12:10:00,745 Jackson St, Atlanta,GA,30301 +208066,AAA Batteries (4-pack),1,2.99,2019-05-29 15:02:00,827 Walnut St, Portland,OR,97035 +208067,Lightning Charging Cable,1,14.95,2019-05-05 20:44:00,629 5th St, Los Angeles,CA,90001 +208068,Bose SoundSport Headphones,1,99.99,2019-05-04 16:06:00,626 Hill St, Austin,TX,73301 +208069,Flatscreen TV,1,300.0,2019-05-15 10:23:00,756 Hill St, Austin,TX,73301 +208070,Bose SoundSport Headphones,1,99.99,2019-05-17 16:57:00,866 Willow St, Seattle,WA,98101 +208071,iPhone,1,700.0,2019-05-03 02:34:00,853 Forest St, Atlanta,GA,30301 +208072,USB-C Charging Cable,1,11.95,2019-05-19 15:25:00,378 South St, Austin,TX,73301 +208073,AAA Batteries (4-pack),1,2.99,2019-05-13 08:16:00,736 11th St, Atlanta,GA,30301 +208074,Bose SoundSport Headphones,1,99.99,2019-05-08 07:52:00,544 Forest St, Los Angeles,CA,90001 +208075,Bose SoundSport Headphones,1,99.99,2019-05-12 17:12:00,661 Willow St, Dallas,TX,75001 +208076,AA Batteries (4-pack),1,3.84,2019-05-16 13:11:00,834 River St, Atlanta,GA,30301 +208076,Google Phone,1,600.0,2019-05-16 13:11:00,834 River St, Atlanta,GA,30301 +208077,20in Monitor,1,109.99,2019-05-11 23:39:00,459 7th St, San Francisco,CA,94016 +208078,Lightning Charging Cable,1,14.95,2019-05-22 22:18:00,341 Cherry St, San Francisco,CA,94016 +208079,Lightning Charging Cable,1,14.95,2019-05-13 11:48:00,218 10th St, Los Angeles,CA,90001 +208080,34in Ultrawide Monitor,1,379.99,2019-05-24 09:44:00,654 South St, Los Angeles,CA,90001 +208081,Vareebadd Phone,1,400.0,2019-05-17 16:53:00,983 Elm St, Seattle,WA,98101 +208082,Wired Headphones,1,11.99,2019-05-06 17:53:00,517 Madison St, Los Angeles,CA,90001 +208083,AAA Batteries (4-pack),1,2.99,2019-05-18 22:14:00,549 Hickory St, Boston,MA,02215 +208084,Apple Airpods Headphones,1,150.0,2019-05-07 14:47:00,334 10th St, San Francisco,CA,94016 +208085,Macbook Pro Laptop,1,1700.0,2019-05-19 18:47:00,307 North St, Boston,MA,02215 +208086,AAA Batteries (4-pack),1,2.99,2019-05-15 18:20:00,785 Church St, Los Angeles,CA,90001 +208087,Apple Airpods Headphones,1,150.0,2019-05-01 18:15:00,730 Madison St, Portland,OR,97035 +208088,USB-C Charging Cable,2,11.95,2019-05-14 21:44:00,3 Cedar St, New York City,NY,10001 +208089,27in FHD Monitor,1,149.99,2019-05-08 22:01:00,869 North St, Atlanta,GA,30301 +208090,Lightning Charging Cable,1,14.95,2019-05-23 09:12:00,874 Wilson St, Portland,OR,97035 +208091,ThinkPad Laptop,1,999.99,2019-05-09 17:09:00,780 Spruce St, Seattle,WA,98101 +208092,Bose SoundSport Headphones,1,99.99,2019-05-13 20:14:00,156 12th St, Austin,TX,73301 +208093,AAA Batteries (4-pack),1,2.99,2019-05-18 22:45:00,571 8th St, Portland,OR,97035 +208094,27in 4K Gaming Monitor,1,389.99,2019-05-04 09:05:00,389 Park St, Los Angeles,CA,90001 +208095,AA Batteries (4-pack),1,3.84,2019-05-08 00:23:00,357 Walnut St, San Francisco,CA,94016 +208096,AA Batteries (4-pack),1,3.84,2019-05-22 12:33:00,139 5th St, San Francisco,CA,94016 +208097,Wired Headphones,1,11.99,2019-05-23 10:29:00,587 Cherry St, Los Angeles,CA,90001 +208098,27in FHD Monitor,1,149.99,2019-05-08 20:53:00,494 8th St, Seattle,WA,98101 +208099,34in Ultrawide Monitor,1,379.99,2019-05-30 08:35:00,886 12th St, Austin,TX,73301 +208100,Bose SoundSport Headphones,1,99.99,2019-05-13 03:12:00,236 Ridge St, San Francisco,CA,94016 +208101,iPhone,1,700.0,2019-05-22 12:54:00,90 Hickory St, Seattle,WA,98101 +208102,Flatscreen TV,1,300.0,2019-05-26 11:06:00,463 11th St, New York City,NY,10001 +208103,Bose SoundSport Headphones,1,99.99,2019-05-30 09:11:00,79 Johnson St, Seattle,WA,98101 +208104,iPhone,1,700.0,2019-05-12 21:23:00,160 South St, Dallas,TX,75001 +208104,Lightning Charging Cable,1,14.95,2019-05-12 21:23:00,160 South St, Dallas,TX,75001 +208105,Apple Airpods Headphones,1,150.0,2019-05-03 18:36:00,484 Ridge St, Atlanta,GA,30301 +208106,27in FHD Monitor,1,149.99,2019-05-29 19:13:00,997 Elm St, Portland,OR,97035 +208107,Wired Headphones,1,11.99,2019-05-14 11:18:00,186 North St, New York City,NY,10001 +208108,Lightning Charging Cable,1,14.95,2019-05-28 21:59:00,595 Ridge St, New York City,NY,10001 +208109,USB-C Charging Cable,1,11.95,2019-05-14 20:51:00,141 South St, New York City,NY,10001 +208110,Apple Airpods Headphones,1,150.0,2019-05-23 21:18:00,61 9th St, San Francisco,CA,94016 +208111,AA Batteries (4-pack),2,3.84,2019-05-28 09:25:00,552 Willow St, Portland,OR,97035 +208112,Lightning Charging Cable,1,14.95,2019-05-18 12:00:00,426 Wilson St, Austin,TX,73301 +208113,AAA Batteries (4-pack),3,2.99,2019-05-09 20:21:00,273 4th St, Atlanta,GA,30301 +208114,Bose SoundSport Headphones,1,99.99,2019-05-04 16:30:00,342 Jackson St, Boston,MA,02215 +208115,Lightning Charging Cable,1,14.95,2019-05-25 22:53:00,265 River St, Austin,TX,73301 +208116,Wired Headphones,1,11.99,2019-05-05 18:31:00,975 Cherry St, Atlanta,GA,30301 +208117,USB-C Charging Cable,1,11.95,2019-05-24 00:45:00,159 Spruce St, San Francisco,CA,94016 +208118,Wired Headphones,1,11.99,2019-05-21 15:17:00,877 5th St, Boston,MA,02215 +208119,Lightning Charging Cable,1,14.95,2019-05-24 09:40:00,178 6th St, New York City,NY,10001 +208120,27in 4K Gaming Monitor,1,389.99,2019-05-29 14:46:00,843 Ridge St, San Francisco,CA,94016 +208121,AAA Batteries (4-pack),2,2.99,2019-05-12 20:08:00,367 Cedar St, Seattle,WA,98101 +208122,AA Batteries (4-pack),1,3.84,2019-05-08 09:19:00,432 Madison St, San Francisco,CA,94016 +208123,USB-C Charging Cable,1,11.95,2019-05-06 00:58:00,137 Johnson St, Boston,MA,02215 +208124,AA Batteries (4-pack),1,3.84,2019-05-12 13:55:00,998 12th St, Los Angeles,CA,90001 +208125,Lightning Charging Cable,1,14.95,2019-05-07 08:21:00,480 Park St, Dallas,TX,75001 +208126,Wired Headphones,1,11.99,2019-05-17 18:27:00,742 Hill St, Seattle,WA,98101 +208127,ThinkPad Laptop,1,999.99,2019-05-22 22:43:00,17 Walnut St, Boston,MA,02215 +208128,Macbook Pro Laptop,1,1700.0,2019-05-30 21:47:00,297 Lincoln St, New York City,NY,10001 +208129,Apple Airpods Headphones,1,150.0,2019-05-16 13:30:00,693 5th St, San Francisco,CA,94016 +208130,Wired Headphones,1,11.99,2019-05-23 21:51:00,528 River St, San Francisco,CA,94016 +208131,27in FHD Monitor,1,149.99,2019-05-11 14:37:00,272 Cherry St, Portland,OR,97035 +208132,iPhone,1,700.0,2019-05-03 19:52:00,833 Cherry St, Boston,MA,02215 +208133,Apple Airpods Headphones,1,150.0,2019-05-21 23:22:00,191 Park St, San Francisco,CA,94016 +208134,USB-C Charging Cable,1,11.95,2019-05-17 10:36:00,671 4th St, Austin,TX,73301 +208135,20in Monitor,1,109.99,2019-05-29 19:47:00,778 Main St, New York City,NY,10001 +208136,AA Batteries (4-pack),1,3.84,2019-05-30 18:39:00,607 River St, San Francisco,CA,94016 +208137,Apple Airpods Headphones,1,150.0,2019-05-23 07:37:00,391 Jefferson St, Seattle,WA,98101 +208138,27in FHD Monitor,1,149.99,2019-05-06 23:05:00,104 Hickory St, Dallas,TX,75001 +208139,AAA Batteries (4-pack),1,2.99,2019-05-10 20:24:00,439 South St, Seattle,WA,98101 +208140,Lightning Charging Cable,1,14.95,2019-05-29 08:16:00,372 Lake St, New York City,NY,10001 +208141,Lightning Charging Cable,1,14.95,2019-05-12 11:17:00,247 Adams St, Boston,MA,02215 +208142,iPhone,1,700.0,2019-05-12 11:36:00,792 Meadow St, Los Angeles,CA,90001 +208143,Wired Headphones,2,11.99,2019-05-11 09:23:00,439 9th St, New York City,NY,10001 +208144,AA Batteries (4-pack),1,3.84,2019-05-04 23:34:00,354 Lake St, Seattle,WA,98101 +208145,AAA Batteries (4-pack),1,2.99,2019-05-07 14:12:00,972 Adams St, Portland,OR,97035 +208146,USB-C Charging Cable,1,11.95,2019-05-18 07:49:00,397 12th St, Austin,TX,73301 +208147,AAA Batteries (4-pack),1,2.99,2019-05-07 17:40:00,287 Maple St, Seattle,WA,98101 +208148,Wired Headphones,1,11.99,2019-05-24 19:17:00,536 North St, San Francisco,CA,94016 +208149,Lightning Charging Cable,1,14.95,2019-05-24 08:39:00,491 Forest St, Los Angeles,CA,90001 +208150,Lightning Charging Cable,1,14.95,2019-05-13 10:04:00,620 Wilson St, Atlanta,GA,30301 +208151,USB-C Charging Cable,1,11.95,2019-05-16 00:35:00,785 Hickory St, Los Angeles,CA,90001 +208152,Google Phone,1,600.0,2019-05-16 23:59:00,411 West St, New York City,NY,10001 +208153,USB-C Charging Cable,1,11.95,2019-05-29 21:37:00,408 14th St, Seattle,WA,98101 +208154,Wired Headphones,1,11.99,2019-05-07 12:34:00,862 6th St, New York City,NY,10001 +208155,AAA Batteries (4-pack),2,2.99,2019-05-15 20:03:00,235 Center St, San Francisco,CA,94016 +208156,USB-C Charging Cable,1,11.95,2019-05-19 21:00:00,293 Adams St, Boston,MA,02215 +208157,AA Batteries (4-pack),1,3.84,2019-05-11 09:24:00,749 Forest St, New York City,NY,10001 +208158,AA Batteries (4-pack),1,3.84,2019-05-25 22:38:00,69 8th St, Atlanta,GA,30301 +208159,Wired Headphones,1,11.99,2019-05-24 08:26:00,629 Main St, San Francisco,CA,94016 +208160,27in FHD Monitor,1,149.99,2019-05-17 11:57:00,269 Spruce St, Atlanta,GA,30301 +208161,ThinkPad Laptop,1,999.99,2019-05-05 16:25:00,180 Wilson St, Los Angeles,CA,90001 +208162,AA Batteries (4-pack),2,3.84,2019-05-06 12:46:00,916 8th St, Seattle,WA,98101 +208163,AAA Batteries (4-pack),1,2.99,2019-05-10 19:28:00,634 Meadow St, New York City,NY,10001 +208164,Apple Airpods Headphones,1,150.0,2019-05-09 17:08:00,460 6th St, Dallas,TX,75001 +208165,AA Batteries (4-pack),3,3.84,2019-05-14 16:00:00,557 Jefferson St, San Francisco,CA,94016 +208166,USB-C Charging Cable,3,11.95,2019-05-10 16:08:00,520 13th St, San Francisco,CA,94016 +208167,Apple Airpods Headphones,1,150.0,2019-05-03 06:58:00,314 Forest St, San Francisco,CA,94016 +208168,Bose SoundSport Headphones,1,99.99,2019-05-28 23:27:00,282 Walnut St, Boston,MA,02215 +208169,Vareebadd Phone,1,400.0,2019-05-31 14:35:00,983 14th St, Los Angeles,CA,90001 +208170,27in 4K Gaming Monitor,1,389.99,2019-05-30 11:05:00,455 Willow St, Seattle,WA,98101 +208171,AAA Batteries (4-pack),1,2.99,2019-05-21 15:10:00,607 Hickory St, New York City,NY,10001 +208172,Apple Airpods Headphones,1,150.0,2019-05-08 14:17:00,769 9th St, Seattle,WA,98101 +208173,Bose SoundSport Headphones,1,99.99,2019-05-07 17:21:00,883 West St, Atlanta,GA,30301 +208174,Macbook Pro Laptop,1,1700.0,2019-05-21 20:24:00,24 13th St, San Francisco,CA,94016 +208174,27in 4K Gaming Monitor,1,389.99,2019-05-21 20:24:00,24 13th St, San Francisco,CA,94016 +208175,ThinkPad Laptop,1,999.99,2019-05-01 08:43:00,524 Lincoln St, Atlanta,GA,30301 +208176,Apple Airpods Headphones,1,150.0,2019-05-25 20:24:00,11 Willow St, New York City,NY,10001 +208177,AA Batteries (4-pack),1,3.84,2019-05-31 23:27:00,953 9th St, Seattle,WA,98101 +208178,Bose SoundSport Headphones,1,99.99,2019-05-25 14:23:00,138 Madison St, Atlanta,GA,30301 +208179,Apple Airpods Headphones,1,150.0,2019-05-09 18:23:00,120 Hill St, Boston,MA,02215 +208180,Apple Airpods Headphones,1,150.0,2019-05-17 10:54:00,950 10th St, Seattle,WA,98101 +208181,iPhone,1,700.0,2019-05-30 18:23:00,358 Jackson St, Los Angeles,CA,90001 +208181,Lightning Charging Cable,1,14.95,2019-05-30 18:23:00,358 Jackson St, Los Angeles,CA,90001 +208182,Wired Headphones,1,11.99,2019-05-23 18:44:00,496 11th St, Portland,OR,97035 +208183,34in Ultrawide Monitor,1,379.99,2019-05-02 07:08:00,95 Forest St, San Francisco,CA,94016 +208184,AAA Batteries (4-pack),1,2.99,2019-05-24 22:36:00,437 South St, San Francisco,CA,94016 +208185,AAA Batteries (4-pack),1,2.99,2019-05-10 08:22:00,322 Chestnut St, Boston,MA,02215 +208186,20in Monitor,1,109.99,2019-05-08 10:13:00,469 1st St, Dallas,TX,75001 +208187,Apple Airpods Headphones,1,150.0,2019-05-25 19:20:00,464 Elm St, Portland,OR,97035 +208188,Lightning Charging Cable,1,14.95,2019-05-23 17:15:00,923 Lincoln St, San Francisco,CA,94016 +208189,Apple Airpods Headphones,1,150.0,2019-05-19 00:13:00,695 Cherry St, Boston,MA,02215 +208190,Flatscreen TV,1,300.0,2019-05-28 15:09:00,434 12th St, San Francisco,CA,94016 +208191,USB-C Charging Cable,1,11.95,2019-05-31 15:04:00,529 Maple St, Los Angeles,CA,90001 +208192,AA Batteries (4-pack),1,3.84,2019-05-01 21:02:00,991 Jackson St, San Francisco,CA,94016 +208193,Apple Airpods Headphones,1,150.0,2019-05-04 11:55:00,414 Dogwood St, New York City,NY,10001 +208194,34in Ultrawide Monitor,1,379.99,2019-05-16 22:41:00,942 West St, Portland,OR,97035 +208195,Flatscreen TV,1,300.0,2019-05-25 15:03:00,374 Hickory St, Los Angeles,CA,90001 +208196,AA Batteries (4-pack),1,3.84,2019-05-30 13:44:00,668 14th St, San Francisco,CA,94016 +208197,AA Batteries (4-pack),1,3.84,2019-05-16 17:53:00,629 Wilson St, Los Angeles,CA,90001 +208197,AAA Batteries (4-pack),3,2.99,2019-05-16 17:53:00,629 Wilson St, Los Angeles,CA,90001 +208198,Lightning Charging Cable,1,14.95,2019-05-23 14:29:00,834 Maple St, San Francisco,CA,94016 +208198,AAA Batteries (4-pack),1,2.99,2019-05-23 14:29:00,834 Maple St, San Francisco,CA,94016 +208199,Google Phone,1,600.0,2019-05-22 15:21:00,503 Spruce St, San Francisco,CA,94016 +208200,Apple Airpods Headphones,1,150.0,2019-05-16 13:11:00,15 Church St, Los Angeles,CA,90001 +208201,Macbook Pro Laptop,1,1700.0,2019-05-22 12:32:00,649 Main St, New York City,NY,10001 +208202,USB-C Charging Cable,1,11.95,2019-05-20 21:55:00,256 Chestnut St, Boston,MA,02215 +208203,Vareebadd Phone,1,400.0,2019-05-28 20:19:00,812 Walnut St, San Francisco,CA,94016 +208204,Apple Airpods Headphones,1,150.0,2019-05-14 19:33:00,925 River St, Seattle,WA,98101 +208205,AAA Batteries (4-pack),2,2.99,2019-05-08 10:29:00,376 9th St, Atlanta,GA,30301 +208206,Lightning Charging Cable,1,14.95,2019-05-26 08:18:00,900 South St, New York City,NY,10001 +208207,AA Batteries (4-pack),1,3.84,2019-05-11 21:33:00,474 Hickory St, Dallas,TX,75001 +208208,Bose SoundSport Headphones,1,99.99,2019-05-31 20:56:00,526 Church St, Los Angeles,CA,90001 +208209,Lightning Charging Cable,1,14.95,2019-05-16 15:31:00,456 Pine St, Seattle,WA,98101 +208210,AA Batteries (4-pack),3,3.84,2019-05-28 14:22:00,245 10th St, New York City,NY,10001 +208211,USB-C Charging Cable,1,11.95,2019-05-22 19:52:00,79 Willow St, New York City,NY,10001 +208212,Lightning Charging Cable,1,14.95,2019-05-26 18:26:00,82 West St, San Francisco,CA,94016 +208213,AAA Batteries (4-pack),1,2.99,2019-05-16 17:16:00,674 Sunset St, Boston,MA,02215 +208214,Lightning Charging Cable,1,14.95,2019-05-23 22:05:00,921 10th St, Seattle,WA,98101 +208215,iPhone,1,700.0,2019-05-22 22:26:00,954 10th St, Los Angeles,CA,90001 +208215,Lightning Charging Cable,1,14.95,2019-05-22 22:26:00,954 10th St, Los Angeles,CA,90001 +208216,Lightning Charging Cable,1,14.95,2019-05-07 13:46:00,455 Park St, Seattle,WA,98101 +208217,USB-C Charging Cable,1,11.95,2019-05-08 10:10:00,741 11th St, Boston,MA,02215 +208218,Apple Airpods Headphones,1,150.0,2019-05-23 18:19:00,962 Park St, San Francisco,CA,94016 +208219,Bose SoundSport Headphones,1,99.99,2019-05-31 12:04:00,182 2nd St, Los Angeles,CA,90001 +208220,ThinkPad Laptop,1,999.99,2019-05-13 17:55:00,385 Wilson St, San Francisco,CA,94016 +208221,Bose SoundSport Headphones,1,99.99,2019-05-07 14:57:00,226 8th St, Los Angeles,CA,90001 +208222,Macbook Pro Laptop,1,1700.0,2019-05-09 20:21:00,820 Hill St, Boston,MA,02215 +208223,Google Phone,1,600.0,2019-05-05 19:01:00,417 14th St, Boston,MA,02215 +208223,Bose SoundSport Headphones,1,99.99,2019-05-05 19:01:00,417 14th St, Boston,MA,02215 +208224,Lightning Charging Cable,1,14.95,2019-05-08 17:38:00,649 Church St, San Francisco,CA,94016 +208225,AAA Batteries (4-pack),1,2.99,2019-05-13 12:55:00,886 Cherry St, Los Angeles,CA,90001 +208226,Bose SoundSport Headphones,1,99.99,2019-05-02 09:47:00,83 Willow St, Atlanta,GA,30301 +208227,AAA Batteries (4-pack),1,2.99,2019-05-03 11:08:00,489 14th St, Dallas,TX,75001 +208228,AAA Batteries (4-pack),2,2.99,2019-05-29 07:05:00,971 Lake St, Atlanta,GA,30301 +208228,Wired Headphones,1,11.99,2019-05-29 07:05:00,971 Lake St, Atlanta,GA,30301 +208229,Bose SoundSport Headphones,1,99.99,2019-05-17 17:51:00,746 10th St, Boston,MA,02215 +208230,AAA Batteries (4-pack),1,2.99,2019-05-26 17:57:00,137 10th St, San Francisco,CA,94016 +208231,AA Batteries (4-pack),1,3.84,2019-05-26 14:18:00,543 Lakeview St, Boston,MA,02215 +208232,Lightning Charging Cable,1,14.95,2019-05-05 13:45:00,224 Pine St, Portland,ME,04101 +208233,AAA Batteries (4-pack),1,2.99,2019-05-17 20:06:00,963 Dogwood St, Boston,MA,02215 +208234,Bose SoundSport Headphones,1,99.99,2019-05-03 16:46:00,167 Maple St, Atlanta,GA,30301 +208235,Lightning Charging Cable,1,14.95,2019-05-05 11:56:00,499 Forest St, San Francisco,CA,94016 +208236,34in Ultrawide Monitor,1,379.99,2019-05-01 13:28:00,112 Elm St, Dallas,TX,75001 +208237,Bose SoundSport Headphones,1,99.99,2019-05-12 22:04:00,427 5th St, San Francisco,CA,94016 +208238,USB-C Charging Cable,2,11.95,2019-05-17 07:41:00,957 Johnson St, San Francisco,CA,94016 +208239,AAA Batteries (4-pack),1,2.99,2019-05-03 12:18:00,321 9th St, San Francisco,CA,94016 +208240,Apple Airpods Headphones,1,150.0,2019-05-27 19:31:00,350 Main St, Atlanta,GA,30301 +208241,Lightning Charging Cable,1,14.95,2019-05-13 00:11:00,597 Cherry St, Los Angeles,CA,90001 +208242,AA Batteries (4-pack),1,3.84,2019-05-31 09:22:00,141 Dogwood St, New York City,NY,10001 +208243,Flatscreen TV,1,300.0,2019-05-21 22:02:00,122 Main St, San Francisco,CA,94016 +208244,Wired Headphones,1,11.99,2019-05-10 04:16:00,947 6th St, Austin,TX,73301 +208245,Apple Airpods Headphones,1,150.0,2019-05-15 19:00:00,726 6th St, San Francisco,CA,94016 +208246,Apple Airpods Headphones,1,150.0,2019-05-21 10:34:00,786 River St, Boston,MA,02215 +208247,Bose SoundSport Headphones,1,99.99,2019-05-08 15:43:00,634 Hickory St, New York City,NY,10001 +208248,iPhone,1,700.0,2019-05-14 13:53:00,862 Dogwood St, San Francisco,CA,94016 +208249,Bose SoundSport Headphones,1,99.99,2019-05-18 20:29:00,162 Sunset St, Austin,TX,73301 +208250,27in 4K Gaming Monitor,1,389.99,2019-05-17 19:47:00,172 Walnut St, Portland,ME,04101 +208251,Apple Airpods Headphones,1,150.0,2019-05-21 18:17:00,118 Spruce St, Seattle,WA,98101 +208252,Bose SoundSport Headphones,1,99.99,2019-05-25 12:50:00,733 2nd St, New York City,NY,10001 +208253,Lightning Charging Cable,1,14.95,2019-05-17 09:19:00,833 7th St, Atlanta,GA,30301 +208254,Flatscreen TV,1,300.0,2019-05-15 13:14:00,48 Cherry St, San Francisco,CA,94016 +208255,Lightning Charging Cable,1,14.95,2019-05-18 16:13:00,550 Jefferson St, Seattle,WA,98101 +208256,LG Dryer,1,600.0,2019-05-10 16:45:00,649 10th St, Atlanta,GA,30301 +208257,Lightning Charging Cable,1,14.95,2019-05-24 21:47:00,902 West St, New York City,NY,10001 +208258,Apple Airpods Headphones,1,150.0,2019-05-18 20:02:00,635 Hickory St, Boston,MA,02215 +208259,Macbook Pro Laptop,1,1700.0,2019-05-01 20:14:00,965 Walnut St, Boston,MA,02215 +208260,Apple Airpods Headphones,1,150.0,2019-05-17 08:46:00,613 Lake St, Seattle,WA,98101 +208261,Google Phone,1,600.0,2019-05-05 18:35:00,909 Cherry St, Austin,TX,73301 +208262,AAA Batteries (4-pack),1,2.99,2019-05-22 20:23:00,578 Madison St, New York City,NY,10001 +208263,AAA Batteries (4-pack),2,2.99,2019-05-26 18:07:00,952 10th St, Los Angeles,CA,90001 +208264,Flatscreen TV,1,300.0,2019-05-05 12:24:00,319 Park St, Atlanta,GA,30301 +208265,USB-C Charging Cable,1,11.95,2019-05-19 21:37:00,505 Ridge St, Austin,TX,73301 +208266,Bose SoundSport Headphones,1,99.99,2019-05-07 19:42:00,217 Sunset St, Portland,ME,04101 +208267,Flatscreen TV,1,300.0,2019-05-29 10:52:00,988 South St, Boston,MA,02215 +208268,USB-C Charging Cable,1,11.95,2019-05-25 12:40:00,138 River St, New York City,NY,10001 +208269,Lightning Charging Cable,1,14.95,2019-05-09 17:38:00,492 Ridge St, Los Angeles,CA,90001 +208270,Lightning Charging Cable,1,14.95,2019-05-26 22:31:00,244 Jefferson St, Austin,TX,73301 +208271,Wired Headphones,1,11.99,2019-05-08 19:27:00,525 10th St, Los Angeles,CA,90001 +208272,Wired Headphones,1,11.99,2019-05-06 12:46:00,422 Dogwood St, San Francisco,CA,94016 +208273,USB-C Charging Cable,1,11.95,2019-05-29 16:36:00,151 Lakeview St, Seattle,WA,98101 +208274,Lightning Charging Cable,1,14.95,2019-05-16 21:57:00,99 South St, Dallas,TX,75001 +208275,Bose SoundSport Headphones,1,99.99,2019-05-17 20:28:00,463 10th St, Atlanta,GA,30301 +208276,Wired Headphones,1,11.99,2019-05-19 08:15:00,787 Park St, Boston,MA,02215 +208277,Macbook Pro Laptop,1,1700.0,2019-05-01 08:30:00,733 Meadow St, New York City,NY,10001 +208278,AA Batteries (4-pack),1,3.84,2019-05-14 13:23:00,912 Forest St, New York City,NY,10001 +208279,Lightning Charging Cable,1,14.95,2019-05-04 18:37:00,103 Madison St, Dallas,TX,75001 +208280,Wired Headphones,1,11.99,2019-05-10 17:40:00,228 Spruce St, Dallas,TX,75001 +208281,27in FHD Monitor,1,149.99,2019-05-22 09:31:00,724 5th St, Boston,MA,02215 +208282,AA Batteries (4-pack),2,3.84,2019-05-14 02:21:00,91 Center St, Boston,MA,02215 +208283,20in Monitor,1,109.99,2019-05-21 08:46:00,785 Willow St, San Francisco,CA,94016 +208284,AA Batteries (4-pack),1,3.84,2019-05-25 08:23:00,192 South St, Austin,TX,73301 +208285,USB-C Charging Cable,1,11.95,2019-05-31 15:34:00,56 Jackson St, San Francisco,CA,94016 +208286,Macbook Pro Laptop,1,1700.0,2019-05-22 12:04:00,794 Spruce St, Los Angeles,CA,90001 +208287,ThinkPad Laptop,1,999.99,2019-05-23 20:35:00,426 Center St, San Francisco,CA,94016 +208288,USB-C Charging Cable,1,11.95,2019-05-26 09:04:00,288 7th St, Los Angeles,CA,90001 +208289,ThinkPad Laptop,1,999.99,2019-05-07 21:29:00,472 Highland St, Austin,TX,73301 +208290,Wired Headphones,1,11.99,2019-05-25 12:45:00,631 Cherry St, New York City,NY,10001 +208291,Bose SoundSport Headphones,1,99.99,2019-05-01 20:56:00,374 5th St, San Francisco,CA,94016 +208292,27in FHD Monitor,1,149.99,2019-05-14 10:21:00,135 Hill St, Austin,TX,73301 +208293,USB-C Charging Cable,1,11.95,2019-05-24 11:22:00,282 Cherry St, Dallas,TX,75001 +208294,iPhone,1,700.0,2019-05-29 13:11:00,874 8th St, Atlanta,GA,30301 +208294,Lightning Charging Cable,1,14.95,2019-05-29 13:11:00,874 8th St, Atlanta,GA,30301 +208295,AA Batteries (4-pack),1,3.84,2019-05-07 23:06:00,437 Madison St, Austin,TX,73301 +208296,ThinkPad Laptop,1,999.99,2019-05-28 17:49:00,756 11th St, San Francisco,CA,94016 +208297,AAA Batteries (4-pack),1,2.99,2019-05-29 15:16:00,820 Pine St, San Francisco,CA,94016 +208298,Google Phone,1,600.0,2019-05-11 12:19:00,421 Chestnut St, New York City,NY,10001 +208299,34in Ultrawide Monitor,1,379.99,2019-05-10 19:38:00,930 1st St, San Francisco,CA,94016 +208300,AAA Batteries (4-pack),2,2.99,2019-05-31 17:43:00,293 9th St, San Francisco,CA,94016 +208301,USB-C Charging Cable,1,11.95,2019-05-03 16:28:00,904 Ridge St, San Francisco,CA,94016 +208302,Lightning Charging Cable,1,14.95,2019-05-27 13:40:00,161 11th St, New York City,NY,10001 +208303,Bose SoundSport Headphones,1,99.99,2019-05-08 14:26:00,396 Walnut St, San Francisco,CA,94016 +208304,27in 4K Gaming Monitor,1,389.99,2019-05-02 15:37:00,925 4th St, Los Angeles,CA,90001 +208305,USB-C Charging Cable,1,11.95,2019-05-06 11:47:00,374 Hickory St, Dallas,TX,75001 +208306,Google Phone,1,600.0,2019-05-21 00:10:00,137 Church St, Atlanta,GA,30301 +208307,27in FHD Monitor,1,149.99,2019-05-29 06:09:00,425 Cedar St, San Francisco,CA,94016 +208308,Wired Headphones,1,11.99,2019-05-05 16:35:00,591 Cherry St, Dallas,TX,75001 +208309,Lightning Charging Cable,1,14.95,2019-05-04 10:15:00,845 South St, San Francisco,CA,94016 +208310,AAA Batteries (4-pack),1,2.99,2019-05-11 19:15:00,59 Washington St, San Francisco,CA,94016 +208311,Wired Headphones,1,11.99,2019-05-23 21:57:00,157 8th St, San Francisco,CA,94016 +208312,Macbook Pro Laptop,1,1700.0,2019-05-19 19:51:00,785 11th St, Austin,TX,73301 +208313,Lightning Charging Cable,1,14.95,2019-05-11 09:49:00,705 Ridge St, Boston,MA,02215 +208314,Apple Airpods Headphones,1,150.0,2019-05-04 09:40:00,682 Adams St, Seattle,WA,98101 +208315,Apple Airpods Headphones,1,150.0,2019-05-17 00:42:00,365 13th St, San Francisco,CA,94016 +208316,Apple Airpods Headphones,1,150.0,2019-05-17 23:27:00,157 Walnut St, San Francisco,CA,94016 +208317,AA Batteries (4-pack),1,3.84,2019-05-16 02:38:00,950 Highland St, Portland,OR,97035 +208318,AA Batteries (4-pack),1,3.84,2019-05-30 18:51:00,897 River St, San Francisco,CA,94016 +208319,Wired Headphones,1,11.99,2019-05-24 17:28:00,603 Adams St, San Francisco,CA,94016 +208320,Apple Airpods Headphones,1,150.0,2019-05-31 18:21:00,985 Elm St, San Francisco,CA,94016 +208321,Lightning Charging Cable,1,14.95,2019-05-15 21:25:00,975 Hill St, Los Angeles,CA,90001 +208322,LG Dryer,1,600.0,2019-05-15 11:00:00,771 Highland St, Los Angeles,CA,90001 +208323,AAA Batteries (4-pack),2,2.99,2019-05-06 14:41:00,50 4th St, New York City,NY,10001 +208324,Wired Headphones,1,11.99,2019-05-21 16:12:00,887 1st St, Dallas,TX,75001 +208325,Wired Headphones,1,11.99,2019-05-14 16:41:00,915 Park St, San Francisco,CA,94016 +208326,Bose SoundSport Headphones,1,99.99,2019-05-18 21:22:00,9 Meadow St, San Francisco,CA,94016 +208327,Bose SoundSport Headphones,1,99.99,2019-05-14 09:58:00,111 1st St, Portland,OR,97035 +208328,Wired Headphones,1,11.99,2019-05-20 15:36:00,482 2nd St, Boston,MA,02215 +208329,Lightning Charging Cable,1,14.95,2019-05-24 20:59:00,843 Hickory St, Los Angeles,CA,90001 +208330,iPhone,1,700.0,2019-05-01 10:11:00,345 Jefferson St, San Francisco,CA,94016 +208331,Flatscreen TV,1,300.0,2019-05-02 11:23:00,842 5th St, Austin,TX,73301 +208332,iPhone,1,700.0,2019-05-06 17:04:00,429 Pine St, Los Angeles,CA,90001 +208333,Lightning Charging Cable,1,14.95,2019-05-22 12:17:00,865 Chestnut St, New York City,NY,10001 +208334,USB-C Charging Cable,1,11.95,2019-05-14 14:08:00,745 Lakeview St, Seattle,WA,98101 +208335,Wired Headphones,1,11.99,2019-05-12 12:32:00,25 Dogwood St, Boston,MA,02215 +208336,Apple Airpods Headphones,1,150.0,2019-05-25 21:38:00,989 14th St, Seattle,WA,98101 +208337,Apple Airpods Headphones,1,150.0,2019-05-26 11:33:00,372 Church St, Atlanta,GA,30301 +208338,Lightning Charging Cable,1,14.95,2019-05-21 22:29:00,836 Dogwood St, Austin,TX,73301 +208339,Apple Airpods Headphones,1,150.0,2019-05-24 11:59:00,989 Jefferson St, Atlanta,GA,30301 +208340,AAA Batteries (4-pack),1,2.99,2019-05-06 23:30:00,279 Forest St, Austin,TX,73301 +208341,AA Batteries (4-pack),3,3.84,2019-05-08 13:49:00,11 Chestnut St, San Francisco,CA,94016 +208342,AAA Batteries (4-pack),1,2.99,2019-05-09 13:16:00,545 7th St, New York City,NY,10001 +208343,Lightning Charging Cable,1,14.95,2019-05-10 07:27:00,341 Spruce St, Seattle,WA,98101 +208344,Lightning Charging Cable,1,14.95,2019-05-31 12:10:00,766 4th St, New York City,NY,10001 +208345,Wired Headphones,1,11.99,2019-05-21 19:29:00,792 1st St, New York City,NY,10001 +208346,Bose SoundSport Headphones,1,99.99,2019-05-15 13:28:00,489 4th St, Los Angeles,CA,90001 +208347,AA Batteries (4-pack),1,3.84,2019-05-06 18:14:00,91 Hickory St, San Francisco,CA,94016 +208348,Lightning Charging Cable,1,14.95,2019-05-05 18:28:00,469 Forest St, Austin,TX,73301 +208349,Bose SoundSport Headphones,1,99.99,2019-05-13 03:36:00,708 13th St, Austin,TX,73301 +208350,AAA Batteries (4-pack),1,2.99,2019-05-29 09:26:00,546 Cherry St, Seattle,WA,98101 +208351,AAA Batteries (4-pack),1,2.99,2019-05-30 13:17:00,867 Forest St, Los Angeles,CA,90001 +208352,Google Phone,1,600.0,2019-05-04 16:38:00,713 2nd St, San Francisco,CA,94016 +208353,AAA Batteries (4-pack),2,2.99,2019-05-18 20:01:00,987 8th St, Atlanta,GA,30301 +208354,Wired Headphones,1,11.99,2019-05-11 15:52:00,456 Park St, Boston,MA,02215 +208355,AA Batteries (4-pack),2,3.84,2019-05-19 17:48:00,390 Dogwood St, Seattle,WA,98101 +208356,USB-C Charging Cable,1,11.95,2019-05-24 19:26:00,809 Hill St, San Francisco,CA,94016 +208357,USB-C Charging Cable,2,11.95,2019-05-24 14:06:00,821 Jackson St, Portland,OR,97035 +208358,iPhone,1,700.0,2019-05-01 09:32:00,751 Meadow St, San Francisco,CA,94016 +208359,Wired Headphones,1,11.99,2019-05-21 14:52:00,558 Lake St, New York City,NY,10001 +208360,LG Dryer,1,600.0,2019-05-26 21:38:00,848 Dogwood St, San Francisco,CA,94016 +208361,Lightning Charging Cable,1,14.95,2019-05-21 15:53:00,702 Madison St, San Francisco,CA,94016 +208361,Apple Airpods Headphones,1,150.0,2019-05-21 15:53:00,702 Madison St, San Francisco,CA,94016 +208362,Lightning Charging Cable,1,14.95,2019-05-21 21:18:00,724 Lincoln St, Los Angeles,CA,90001 +208363,27in FHD Monitor,1,149.99,2019-05-23 15:49:00,383 Spruce St, San Francisco,CA,94016 +208364,AAA Batteries (4-pack),1,2.99,2019-05-25 10:47:00,679 Spruce St, Austin,TX,73301 +208365,Wired Headphones,1,11.99,2019-05-13 16:47:00,207 Wilson St, San Francisco,CA,94016 +208366,AAA Batteries (4-pack),1,2.99,2019-05-18 01:58:00,348 Madison St, Boston,MA,02215 +208367,27in FHD Monitor,1,149.99,2019-05-06 18:36:00,329 Pine St, Atlanta,GA,30301 +208368,27in FHD Monitor,1,149.99,2019-05-02 10:04:00,741 Pine St, Seattle,WA,98101 +208369,Bose SoundSport Headphones,1,99.99,2019-05-25 13:47:00,353 1st St, Los Angeles,CA,90001 +208369,Apple Airpods Headphones,1,150.0,2019-05-25 13:47:00,353 1st St, Los Angeles,CA,90001 +208370,Macbook Pro Laptop,1,1700.0,2019-05-06 11:19:00,480 11th St, Boston,MA,02215 +208371,Wired Headphones,1,11.99,2019-05-29 15:01:00,711 Lakeview St, San Francisco,CA,94016 +208372,Lightning Charging Cable,1,14.95,2019-05-25 15:26:00,458 North St, New York City,NY,10001 +208373,27in 4K Gaming Monitor,1,389.99,2019-05-20 23:56:00,556 5th St, Boston,MA,02215 +208374,Bose SoundSport Headphones,1,99.99,2019-05-14 11:28:00,578 Washington St, Boston,MA,02215 +208375,Bose SoundSport Headphones,1,99.99,2019-05-19 12:27:00,266 Highland St, Atlanta,GA,30301 +208376,AA Batteries (4-pack),1,3.84,2019-05-05 05:12:00,62 Sunset St, Austin,TX,73301 +208377,Wired Headphones,1,11.99,2019-05-10 08:28:00,867 Main St, Boston,MA,02215 +208378,Wired Headphones,1,11.99,2019-05-19 12:27:00,943 Center St, Portland,OR,97035 +208379,Bose SoundSport Headphones,1,99.99,2019-05-19 13:57:00,310 Park St, San Francisco,CA,94016 +208380,Bose SoundSport Headphones,1,99.99,2019-05-25 19:25:00,485 Spruce St, Atlanta,GA,30301 +208381,Google Phone,1,600.0,2019-05-28 11:54:00,850 Meadow St, Los Angeles,CA,90001 +208381,USB-C Charging Cable,1,11.95,2019-05-28 11:54:00,850 Meadow St, Los Angeles,CA,90001 +208382,ThinkPad Laptop,1,999.99,2019-05-18 00:06:00,865 Lakeview St, Austin,TX,73301 +208383,27in 4K Gaming Monitor,1,389.99,2019-05-12 16:19:00,152 9th St, Los Angeles,CA,90001 +208384,Apple Airpods Headphones,1,150.0,2019-05-14 15:58:00,895 Walnut St, Portland,OR,97035 +208385,USB-C Charging Cable,1,11.95,2019-05-20 17:34:00,805 10th St, Atlanta,GA,30301 +208386,Wired Headphones,1,11.99,2019-05-28 15:19:00,585 Cedar St, Los Angeles,CA,90001 +208387,AAA Batteries (4-pack),2,2.99,2019-05-01 11:30:00,172 1st St, New York City,NY,10001 +208388,Vareebadd Phone,1,400.0,2019-05-05 14:06:00,360 Sunset St, Atlanta,GA,30301 +208388,USB-C Charging Cable,2,11.95,2019-05-05 14:06:00,360 Sunset St, Atlanta,GA,30301 +208389,AA Batteries (4-pack),1,3.84,2019-05-11 16:28:00,436 South St, Los Angeles,CA,90001 +208390,34in Ultrawide Monitor,1,379.99,2019-05-08 13:11:00,663 South St, Dallas,TX,75001 +208391,Wired Headphones,1,11.99,2019-05-17 10:47:00,356 6th St, Seattle,WA,98101 +208392,Lightning Charging Cable,1,14.95,2019-05-25 15:45:00,727 Cedar St, San Francisco,CA,94016 +208393,Lightning Charging Cable,1,14.95,2019-05-17 06:43:00,73 River St, Los Angeles,CA,90001 +208394,Lightning Charging Cable,1,14.95,2019-05-15 01:05:00,449 10th St, Dallas,TX,75001 +208395,Apple Airpods Headphones,1,150.0,2019-05-14 07:09:00,229 13th St, Austin,TX,73301 +208396,AAA Batteries (4-pack),2,2.99,2019-05-12 13:01:00,941 Meadow St, Austin,TX,73301 +208397,USB-C Charging Cable,1,11.95,2019-05-30 09:57:00,113 Elm St, Dallas,TX,75001 +208398,AAA Batteries (4-pack),1,2.99,2019-05-08 21:18:00,193 Cherry St, Portland,OR,97035 +208399,Wired Headphones,1,11.99,2019-05-26 13:40:00,440 Lake St, San Francisco,CA,94016 +208400,27in FHD Monitor,1,149.99,2019-05-14 11:53:00,925 4th St, New York City,NY,10001 +208401,iPhone,1,700.0,2019-05-20 09:00:00,361 Lakeview St, Boston,MA,02215 +208401,Lightning Charging Cable,2,14.95,2019-05-20 09:00:00,361 Lakeview St, Boston,MA,02215 +208401,Apple Airpods Headphones,1,150.0,2019-05-20 09:00:00,361 Lakeview St, Boston,MA,02215 +208402,Lightning Charging Cable,1,14.95,2019-05-12 18:54:00,536 Meadow St, Dallas,TX,75001 +208403,Apple Airpods Headphones,1,150.0,2019-05-11 22:09:00,980 Chestnut St, Atlanta,GA,30301 +208404,AAA Batteries (4-pack),1,2.99,2019-05-21 17:47:00,350 1st St, Los Angeles,CA,90001 +208404,Lightning Charging Cable,1,14.95,2019-05-21 17:47:00,350 1st St, Los Angeles,CA,90001 +208405,Lightning Charging Cable,1,14.95,2019-05-19 16:55:00,107 River St, Portland,OR,97035 +208406,Bose SoundSport Headphones,1,99.99,2019-05-04 12:40:00,2 Spruce St, Boston,MA,02215 +208407,AA Batteries (4-pack),2,3.84,2019-05-30 11:35:00,592 Park St, Boston,MA,02215 +208408,AA Batteries (4-pack),1,3.84,2019-05-20 23:11:00,552 Main St, Portland,OR,97035 +208408,Google Phone,1,600.0,2019-05-20 23:11:00,552 Main St, Portland,OR,97035 +208409,ThinkPad Laptop,1,999.99,2019-05-15 20:51:00,125 Jackson St, Los Angeles,CA,90001 +208410,34in Ultrawide Monitor,1,379.99,2019-05-10 18:30:00,13 South St, San Francisco,CA,94016 +208411,Wired Headphones,1,11.99,2019-05-30 12:22:00,849 North St, Seattle,WA,98101 +208412,Lightning Charging Cable,1,14.95,2019-05-09 12:59:00,769 2nd St, San Francisco,CA,94016 +208413,Google Phone,1,600.0,2019-05-22 17:30:00,135 1st St, Boston,MA,02215 +208414,iPhone,1,700.0,2019-05-31 14:20:00,400 Center St, Boston,MA,02215 +208415,AA Batteries (4-pack),1,3.84,2019-05-07 07:23:00,625 Hickory St, San Francisco,CA,94016 +208416,Bose SoundSport Headphones,1,99.99,2019-05-03 16:39:00,471 14th St, San Francisco,CA,94016 +208417,Wired Headphones,1,11.99,2019-05-26 18:39:00,129 8th St, San Francisco,CA,94016 +208418,Lightning Charging Cable,1,14.95,2019-05-06 07:48:00,635 11th St, Austin,TX,73301 +208419,Wired Headphones,1,11.99,2019-05-01 09:11:00,614 Pine St, Seattle,WA,98101 +208420,Flatscreen TV,1,300.0,2019-05-06 20:15:00,802 Willow St, Seattle,WA,98101 +208421,AAA Batteries (4-pack),1,2.99,2019-05-20 18:28:00,105 Spruce St, Boston,MA,02215 +208422,AAA Batteries (4-pack),1,2.99,2019-05-22 12:31:00,560 Spruce St, New York City,NY,10001 +208423,AA Batteries (4-pack),1,3.84,2019-05-23 03:36:00,745 Walnut St, New York City,NY,10001 +208424,USB-C Charging Cable,1,11.95,2019-05-29 15:10:00,755 Sunset St, Seattle,WA,98101 +208425,Lightning Charging Cable,1,14.95,2019-05-27 11:15:00,882 Pine St, Boston,MA,02215 +208426,LG Washing Machine,1,600.0,2019-05-02 12:14:00,519 8th St, San Francisco,CA,94016 +208427,USB-C Charging Cable,1,11.95,2019-05-20 09:03:00,494 13th St, Portland,ME,04101 +208428,AA Batteries (4-pack),4,3.84,2019-05-30 21:12:00,88 Park St, Seattle,WA,98101 +208429,AA Batteries (4-pack),1,3.84,2019-05-01 19:48:00,803 11th St, San Francisco,CA,94016 +208430,Lightning Charging Cable,1,14.95,2019-05-06 08:36:00,184 Wilson St, New York City,NY,10001 +208431,AA Batteries (4-pack),2,3.84,2019-05-14 06:46:00,658 West St, San Francisco,CA,94016 +208432,Apple Airpods Headphones,1,150.0,2019-05-21 21:45:00,800 Willow St, New York City,NY,10001 +208433,AA Batteries (4-pack),1,3.84,2019-05-19 19:21:00,394 Jefferson St, Portland,OR,97035 +208434,AAA Batteries (4-pack),1,2.99,2019-05-16 17:59:00,328 7th St, Boston,MA,02215 +208435,Lightning Charging Cable,1,14.95,2019-05-31 00:15:00,160 4th St, San Francisco,CA,94016 +208436,Apple Airpods Headphones,1,150.0,2019-05-27 00:51:00,655 Ridge St, Atlanta,GA,30301 +208437,AA Batteries (4-pack),2,3.84,2019-05-30 07:49:00,9 Pine St, Austin,TX,73301 +208438,Wired Headphones,1,11.99,2019-05-16 11:54:00,269 Madison St, Dallas,TX,75001 +208439,AAA Batteries (4-pack),2,2.99,2019-05-06 15:39:00,729 Pine St, New York City,NY,10001 +208440,AAA Batteries (4-pack),1,2.99,2019-05-22 09:13:00,223 Church St, San Francisco,CA,94016 +208441,Wired Headphones,1,11.99,2019-05-16 08:07:00,221 10th St, San Francisco,CA,94016 +208442,Apple Airpods Headphones,1,150.0,2019-05-14 15:49:00,947 Lakeview St, San Francisco,CA,94016 +208443,Bose SoundSport Headphones,1,99.99,2019-05-05 21:30:00,528 Lake St, Atlanta,GA,30301 +208444,AAA Batteries (4-pack),1,2.99,2019-05-20 14:56:00,916 Main St, San Francisco,CA,94016 +208445,AAA Batteries (4-pack),1,2.99,2019-05-16 11:32:00,844 Church St, San Francisco,CA,94016 +208446,LG Dryer,1,600.0,2019-05-08 09:15:00,138 Pine St, Los Angeles,CA,90001 +208447,USB-C Charging Cable,1,11.95,2019-05-25 13:06:00,444 South St, Seattle,WA,98101 +208448,AAA Batteries (4-pack),3,2.99,2019-05-09 07:55:00,73 Elm St, San Francisco,CA,94016 +208449,27in FHD Monitor,1,149.99,2019-05-16 02:26:00,429 Maple St, Los Angeles,CA,90001 +208450,USB-C Charging Cable,1,11.95,2019-05-12 13:01:00,257 Meadow St, Atlanta,GA,30301 +208451,Google Phone,1,600.0,2019-05-13 23:16:00,752 Lake St, New York City,NY,10001 +208451,USB-C Charging Cable,1,11.95,2019-05-13 23:16:00,752 Lake St, New York City,NY,10001 +208452,Lightning Charging Cable,1,14.95,2019-05-27 19:32:00,805 7th St, New York City,NY,10001 +208453,USB-C Charging Cable,1,11.95,2019-05-10 15:50:00,474 8th St, Atlanta,GA,30301 +208454,Wired Headphones,1,11.99,2019-05-03 12:06:00,120 Ridge St, San Francisco,CA,94016 +208455,USB-C Charging Cable,1,11.95,2019-05-09 10:55:00,173 Sunset St, San Francisco,CA,94016 +208456,27in 4K Gaming Monitor,1,389.99,2019-05-26 09:56:00,404 Church St, Seattle,WA,98101 +208457,Vareebadd Phone,1,400.0,2019-05-24 07:42:00,306 Adams St, San Francisco,CA,94016 +208458,Lightning Charging Cable,1,14.95,2019-05-31 19:22:00,653 Jefferson St, New York City,NY,10001 +208459,AA Batteries (4-pack),1,3.84,2019-05-11 06:13:00,944 Jefferson St, San Francisco,CA,94016 +208460,Wired Headphones,1,11.99,2019-05-18 17:43:00,96 Willow St, Los Angeles,CA,90001 +208461,USB-C Charging Cable,1,11.95,2019-05-19 08:58:00,729 Madison St, Los Angeles,CA,90001 +208462,AA Batteries (4-pack),1,3.84,2019-05-15 14:08:00,677 Dogwood St, Dallas,TX,75001 +208463,AAA Batteries (4-pack),1,2.99,2019-05-12 12:10:00,434 2nd St, New York City,NY,10001 +208464,Wired Headphones,1,11.99,2019-05-27 18:03:00,580 Jackson St, Los Angeles,CA,90001 +208465,Apple Airpods Headphones,1,150.0,2019-05-24 07:16:00,418 Park St, Boston,MA,02215 +208466,27in 4K Gaming Monitor,1,389.99,2019-05-22 21:44:00,542 Main St, Portland,OR,97035 +208467,Wired Headphones,1,11.99,2019-05-04 17:41:00,31 Wilson St, San Francisco,CA,94016 +208468,Bose SoundSport Headphones,1,99.99,2019-05-26 15:51:00,882 Jackson St, Los Angeles,CA,90001 +208469,Lightning Charging Cable,1,14.95,2019-05-27 21:19:00,633 6th St, Atlanta,GA,30301 +208470,Lightning Charging Cable,1,14.95,2019-05-23 14:58:00,361 4th St, Atlanta,GA,30301 +208471,Flatscreen TV,1,300.0,2019-05-13 10:01:00,910 6th St, Austin,TX,73301 +208472,AA Batteries (4-pack),1,3.84,2019-05-06 09:20:00,531 Lincoln St, Portland,OR,97035 +208473,20in Monitor,1,109.99,2019-05-10 18:53:00,663 Hickory St, Portland,OR,97035 +208474,AAA Batteries (4-pack),1,2.99,2019-05-09 11:37:00,15 Lakeview St, San Francisco,CA,94016 +208475,Apple Airpods Headphones,1,150.0,2019-05-09 21:42:00,889 7th St, Seattle,WA,98101 +208476,AAA Batteries (4-pack),1,2.99,2019-05-18 17:33:00,393 Meadow St, Atlanta,GA,30301 +208477,AA Batteries (4-pack),2,3.84,2019-05-06 19:13:00,49 Lakeview St, New York City,NY,10001 +208478,34in Ultrawide Monitor,1,379.99,2019-05-09 14:03:00,119 Washington St, New York City,NY,10001 +208479,Macbook Pro Laptop,1,1700.0,2019-05-29 15:11:00,644 8th St, San Francisco,CA,94016 +208480,AA Batteries (4-pack),1,3.84,2019-05-15 22:52:00,791 Highland St, New York City,NY,10001 +208481,USB-C Charging Cable,1,11.95,2019-05-27 16:22:00,347 Pine St, San Francisco,CA,94016 +208482,27in FHD Monitor,1,149.99,2019-05-23 13:45:00,397 4th St, San Francisco,CA,94016 +208483,Apple Airpods Headphones,1,150.0,2019-05-14 17:21:00,853 12th St, San Francisco,CA,94016 +208484,Lightning Charging Cable,1,14.95,2019-05-18 16:27:00,922 Maple St, San Francisco,CA,94016 +208485,Wired Headphones,1,11.99,2019-05-04 12:02:00,357 Ridge St, Los Angeles,CA,90001 +208486,Flatscreen TV,1,300.0,2019-05-18 14:03:00,495 River St, Dallas,TX,75001 +208487,Flatscreen TV,1,300.0,2019-05-23 00:43:00,183 South St, Boston,MA,02215 +208488,27in FHD Monitor,1,149.99,2019-05-10 19:52:00,70 Center St, New York City,NY,10001 +208489,Lightning Charging Cable,1,14.95,2019-05-28 13:24:00,943 Madison St, New York City,NY,10001 +208490,Bose SoundSport Headphones,1,99.99,2019-05-05 11:41:00,792 Lake St, San Francisco,CA,94016 +208491,AA Batteries (4-pack),1,3.84,2019-05-07 22:44:00,812 Sunset St, San Francisco,CA,94016 +208492,Lightning Charging Cable,1,14.95,2019-05-11 15:36:00,818 6th St, San Francisco,CA,94016 +208493,Apple Airpods Headphones,1,150.0,2019-05-17 10:53:00,273 Sunset St, Dallas,TX,75001 +208493,USB-C Charging Cable,1,11.95,2019-05-17 10:53:00,273 Sunset St, Dallas,TX,75001 +208494,Apple Airpods Headphones,1,150.0,2019-05-21 12:45:00,793 Spruce St, San Francisco,CA,94016 +208495,27in 4K Gaming Monitor,1,389.99,2019-05-22 06:47:00,472 Hill St, New York City,NY,10001 +208496,iPhone,1,700.0,2019-05-17 08:36:00,161 1st St, San Francisco,CA,94016 +208497,27in FHD Monitor,1,149.99,2019-05-02 16:47:00,851 Ridge St, Seattle,WA,98101 +208498,USB-C Charging Cable,1,11.95,2019-05-23 20:08:00,444 Wilson St, San Francisco,CA,94016 +208499,Wired Headphones,1,11.99,2019-05-13 14:29:00,697 5th St, Boston,MA,02215 +208500,USB-C Charging Cable,1,11.95,2019-05-28 20:55:00,397 Lake St, Atlanta,GA,30301 +208501,iPhone,1,700.0,2019-05-27 23:28:00,666 Spruce St, New York City,NY,10001 +208501,Wired Headphones,1,11.99,2019-05-27 23:28:00,666 Spruce St, New York City,NY,10001 +208502,Apple Airpods Headphones,1,150.0,2019-05-23 16:38:00,970 Ridge St, New York City,NY,10001 +208503,Apple Airpods Headphones,1,150.0,2019-05-12 18:29:00,188 South St, San Francisco,CA,94016 +208504,USB-C Charging Cable,1,11.95,2019-05-24 10:17:00,331 Cherry St, Los Angeles,CA,90001 +208505,Wired Headphones,1,11.99,2019-05-03 13:06:00,832 Chestnut St, New York City,NY,10001 +208506,27in 4K Gaming Monitor,1,389.99,2019-05-28 19:11:00,810 8th St, Atlanta,GA,30301 +208507,Lightning Charging Cable,1,14.95,2019-05-09 14:41:00,907 Dogwood St, New York City,NY,10001 +208508,AA Batteries (4-pack),1,3.84,2019-05-09 12:54:00,742 River St, Austin,TX,73301 +208509,Macbook Pro Laptop,1,1700.0,2019-05-17 10:35:00,639 14th St, San Francisco,CA,94016 +208510,Macbook Pro Laptop,1,1700.0,2019-05-26 11:35:00,679 Cherry St, Los Angeles,CA,90001 +208511,USB-C Charging Cable,1,11.95,2019-05-12 18:48:00,396 Willow St, New York City,NY,10001 +208512,Lightning Charging Cable,1,14.95,2019-05-07 18:24:00,479 11th St, Seattle,WA,98101 +208513,AAA Batteries (4-pack),1,2.99,2019-05-18 11:25:00,506 4th St, Los Angeles,CA,90001 +208514,iPhone,1,700.0,2019-05-20 15:41:00,437 7th St, Portland,ME,04101 +208515,USB-C Charging Cable,1,11.95,2019-05-17 23:46:00,8 12th St, Atlanta,GA,30301 +208516,Macbook Pro Laptop,1,1700.0,2019-05-05 18:41:00,503 Ridge St, New York City,NY,10001 +208517,Google Phone,1,600.0,2019-05-25 22:20:00,734 13th St, Los Angeles,CA,90001 +208518,Wired Headphones,1,11.99,2019-05-12 17:19:00,115 Jackson St, Los Angeles,CA,90001 +208519,AAA Batteries (4-pack),1,2.99,2019-05-05 16:14:00,218 Cedar St, San Francisco,CA,94016 +208520,27in FHD Monitor,1,149.99,2019-05-06 21:24:00,656 Cherry St, Seattle,WA,98101 +208521,Macbook Pro Laptop,1,1700.0,2019-05-19 08:29:00,909 9th St, Los Angeles,CA,90001 +208522,27in FHD Monitor,1,149.99,2019-05-09 20:27:00,373 West St, Austin,TX,73301 +208523,AAA Batteries (4-pack),2,2.99,2019-05-02 09:58:00,540 West St, Seattle,WA,98101 +208524,20in Monitor,1,109.99,2019-05-08 09:29:00,87 Adams St, San Francisco,CA,94016 +208525,iPhone,1,700.0,2019-05-01 19:41:00,944 13th St, San Francisco,CA,94016 +208526,Lightning Charging Cable,1,14.95,2019-05-06 08:20:00,956 7th St, San Francisco,CA,94016 +208527,Bose SoundSport Headphones,1,99.99,2019-05-31 11:35:00,990 South St, Portland,OR,97035 +208528,Bose SoundSport Headphones,1,99.99,2019-05-24 18:21:00,720 Chestnut St, Los Angeles,CA,90001 +208529,Wired Headphones,1,11.99,2019-05-05 12:43:00,893 Meadow St, New York City,NY,10001 +208530,Apple Airpods Headphones,1,150.0,2019-05-06 16:44:00,282 Main St, Seattle,WA,98101 +208531,iPhone,1,700.0,2019-05-13 22:07:00,669 Willow St, Boston,MA,02215 +208532,AAA Batteries (4-pack),1,2.99,2019-05-12 13:26:00,692 North St, San Francisco,CA,94016 +208533,Bose SoundSport Headphones,1,99.99,2019-05-19 22:02:00,78 Highland St, Los Angeles,CA,90001 +208534,iPhone,1,700.0,2019-05-21 21:33:00,665 10th St, Atlanta,GA,30301 +208534,Lightning Charging Cable,1,14.95,2019-05-21 21:33:00,665 10th St, Atlanta,GA,30301 +208534,Wired Headphones,1,11.99,2019-05-21 21:33:00,665 10th St, Atlanta,GA,30301 +208535,USB-C Charging Cable,1,11.95,2019-05-24 15:52:00,642 Sunset St, Dallas,TX,75001 +208536,ThinkPad Laptop,1,999.99,2019-05-29 11:42:00,7 Ridge St, Los Angeles,CA,90001 +208537,Apple Airpods Headphones,1,150.0,2019-05-29 10:19:00,60 10th St, Boston,MA,02215 +208538,AA Batteries (4-pack),2,3.84,2019-05-13 13:21:00,471 North St, San Francisco,CA,94016 +208539,AAA Batteries (4-pack),2,2.99,2019-05-22 15:49:00,294 8th St, Portland,ME,04101 +208540,Wired Headphones,1,11.99,2019-05-24 10:15:00,245 Walnut St, New York City,NY,10001 +208541,Google Phone,1,600.0,2019-05-17 11:00:00,345 South St, Atlanta,GA,30301 +208542,Lightning Charging Cable,1,14.95,2019-05-19 20:38:00,783 Walnut St, Boston,MA,02215 +208543,Apple Airpods Headphones,1,150.0,2019-05-26 14:26:00,375 West St, New York City,NY,10001 +208544,27in FHD Monitor,1,149.99,2019-05-27 14:39:00,523 Lincoln St, Austin,TX,73301 +208545,Lightning Charging Cable,1,14.95,2019-05-14 19:41:00,896 13th St, Portland,OR,97035 +208546,USB-C Charging Cable,1,11.95,2019-05-10 09:07:00,941 Walnut St, Los Angeles,CA,90001 +208547,Bose SoundSport Headphones,1,99.99,2019-05-08 02:41:00,168 Madison St, New York City,NY,10001 +208548,AA Batteries (4-pack),2,3.84,2019-05-14 16:31:00,624 West St, Los Angeles,CA,90001 +208549,Flatscreen TV,1,300.0,2019-05-13 10:30:00,283 Washington St, Portland,OR,97035 +208550,Bose SoundSport Headphones,1,99.99,2019-05-01 22:39:00,821 North St, New York City,NY,10001 +208551,iPhone,1,700.0,2019-05-17 19:44:00,120 Forest St, Dallas,TX,75001 +208552,Bose SoundSport Headphones,1,99.99,2019-05-10 08:34:00,147 Park St, Atlanta,GA,30301 +208553,Apple Airpods Headphones,1,150.0,2019-05-03 19:09:00,225 5th St, Los Angeles,CA,90001 +208554,27in FHD Monitor,1,149.99,2019-05-29 14:14:00,836 South St, New York City,NY,10001 +208555,AA Batteries (4-pack),2,3.84,2019-05-22 23:31:00,400 Sunset St, San Francisco,CA,94016 +208556,Lightning Charging Cable,1,14.95,2019-05-21 10:19:00,463 Jackson St, Dallas,TX,75001 +208557,AAA Batteries (4-pack),1,2.99,2019-05-13 14:00:00,337 Walnut St, Boston,MA,02215 +208558,Google Phone,1,600.0,2019-05-05 18:37:00,813 Walnut St, New York City,NY,10001 +208558,USB-C Charging Cable,1,11.95,2019-05-05 18:37:00,813 Walnut St, New York City,NY,10001 +208559,Apple Airpods Headphones,1,150.0,2019-05-11 05:55:00,955 Jackson St, Boston,MA,02215 +208560,USB-C Charging Cable,1,11.95,2019-05-08 19:40:00,291 Park St, Atlanta,GA,30301 +208561,USB-C Charging Cable,1,11.95,2019-05-29 21:57:00,84 9th St, Austin,TX,73301 +208562,Lightning Charging Cable,1,14.95,2019-05-29 19:27:00,641 Chestnut St, San Francisco,CA,94016 +208563,AAA Batteries (4-pack),1,2.99,2019-05-23 19:00:00,88 Lincoln St, San Francisco,CA,94016 +208564,Lightning Charging Cable,1,14.95,2019-05-16 18:54:00,629 Highland St, Portland,OR,97035 +208564,USB-C Charging Cable,1,11.95,2019-05-16 18:54:00,629 Highland St, Portland,OR,97035 +208565,Wired Headphones,1,11.99,2019-05-09 12:36:00,374 Lake St, San Francisco,CA,94016 +208566,27in 4K Gaming Monitor,1,389.99,2019-05-14 10:11:00,95 12th St, Austin,TX,73301 +208567,Apple Airpods Headphones,1,150.0,2019-05-01 19:22:00,670 Spruce St, New York City,NY,10001 +208568,ThinkPad Laptop,1,999.99,2019-05-13 14:51:00,885 Jackson St, Dallas,TX,75001 +208569,AA Batteries (4-pack),3,3.84,2019-05-21 23:31:00,278 Maple St, Seattle,WA,98101 +208570,Apple Airpods Headphones,1,150.0,2019-05-12 21:47:00,743 Lincoln St, San Francisco,CA,94016 +208571,USB-C Charging Cable,1,11.95,2019-05-17 19:30:00,992 Meadow St, Los Angeles,CA,90001 +208572,AA Batteries (4-pack),1,3.84,2019-05-30 09:37:00,194 Forest St, Seattle,WA,98101 +208573,Bose SoundSport Headphones,1,99.99,2019-05-01 17:06:00,774 Pine St, San Francisco,CA,94016 +208574,AAA Batteries (4-pack),2,2.99,2019-05-06 10:11:00,205 Lake St, Dallas,TX,75001 +208575,Google Phone,1,600.0,2019-05-12 18:08:00,13 River St, San Francisco,CA,94016 +208576,34in Ultrawide Monitor,1,379.99,2019-05-10 00:37:00,814 Pine St, Portland,OR,97035 +208577,Wired Headphones,1,11.99,2019-05-22 11:51:00,597 Forest St, San Francisco,CA,94016 +208577,AA Batteries (4-pack),2,3.84,2019-05-22 11:51:00,597 Forest St, San Francisco,CA,94016 +208578,AA Batteries (4-pack),1,3.84,2019-05-28 12:45:00,211 10th St, New York City,NY,10001 +208579,Flatscreen TV,1,300.0,2019-05-06 11:16:00,70 Jackson St, Boston,MA,02215 +208580,27in 4K Gaming Monitor,1,389.99,2019-05-23 23:18:00,448 6th St, San Francisco,CA,94016 +208581,Wired Headphones,1,11.99,2019-05-20 17:27:00,89 Jackson St, San Francisco,CA,94016 +208582,AAA Batteries (4-pack),1,2.99,2019-05-19 20:36:00,390 14th St, Boston,MA,02215 +208583,AA Batteries (4-pack),2,3.84,2019-05-29 15:12:00,640 Cedar St, Dallas,TX,75001 +208584,AAA Batteries (4-pack),1,2.99,2019-05-19 08:43:00,135 11th St, San Francisco,CA,94016 +208585,27in 4K Gaming Monitor,1,389.99,2019-05-05 14:47:00,295 Meadow St, Dallas,TX,75001 +208586,34in Ultrawide Monitor,1,379.99,2019-05-14 22:56:00,66 2nd St, Los Angeles,CA,90001 +208587,USB-C Charging Cable,1,11.95,2019-05-22 07:00:00,113 13th St, New York City,NY,10001 +208588,Wired Headphones,1,11.99,2019-05-10 10:51:00,333 Jackson St, Boston,MA,02215 +208589,AA Batteries (4-pack),1,3.84,2019-05-09 01:46:00,15 Meadow St, Atlanta,GA,30301 +208590,USB-C Charging Cable,1,11.95,2019-05-10 18:48:00,319 2nd St, Los Angeles,CA,90001 +208591,USB-C Charging Cable,1,11.95,2019-05-22 11:41:00,801 Jackson St, San Francisco,CA,94016 +208592,AA Batteries (4-pack),2,3.84,2019-05-04 10:12:00,920 13th St, New York City,NY,10001 +208593,ThinkPad Laptop,1,999.99,2019-05-10 00:58:00,76 Johnson St, Austin,TX,73301 +208594,Lightning Charging Cable,1,14.95,2019-05-10 13:41:00,615 Dogwood St, Atlanta,GA,30301 +208595,Flatscreen TV,1,300.0,2019-05-09 17:23:00,952 Elm St, Boston,MA,02215 +208596,AA Batteries (4-pack),1,3.84,2019-05-09 12:48:00,923 West St, Dallas,TX,75001 +208596,Macbook Pro Laptop,1,1700.0,2019-05-09 12:48:00,923 West St, Dallas,TX,75001 +208597,AA Batteries (4-pack),1,3.84,2019-05-31 21:19:00,352 Meadow St, Atlanta,GA,30301 +208598,27in FHD Monitor,1,149.99,2019-05-20 12:50:00,357 Lakeview St, New York City,NY,10001 +208599,Flatscreen TV,1,300.0,2019-05-31 23:35:00,159 Dogwood St, Dallas,TX,75001 +208600,Google Phone,1,600.0,2019-05-15 08:52:00,848 13th St, San Francisco,CA,94016 +208601,Macbook Pro Laptop,1,1700.0,2019-05-04 17:57:00,537 Walnut St, Los Angeles,CA,90001 +208602,Wired Headphones,1,11.99,2019-05-31 10:17:00,526 Wilson St, San Francisco,CA,94016 +208603,USB-C Charging Cable,1,11.95,2019-05-05 12:39:00,269 Hill St, Boston,MA,02215 +208604,Flatscreen TV,1,300.0,2019-05-05 16:40:00,703 Dogwood St, New York City,NY,10001 +208605,20in Monitor,1,109.99,2019-05-03 15:55:00,413 Lake St, Austin,TX,73301 +208606,Wired Headphones,1,11.99,2019-05-09 11:08:00,168 7th St, Boston,MA,02215 +208607,Lightning Charging Cable,1,14.95,2019-05-04 01:35:00,693 9th St, Atlanta,GA,30301 +208608,AA Batteries (4-pack),1,3.84,2019-05-31 21:00:00,723 Pine St, Los Angeles,CA,90001 +208609,Lightning Charging Cable,1,14.95,2019-05-20 15:04:00,147 Hickory St, Seattle,WA,98101 +208610,Apple Airpods Headphones,1,150.0,2019-05-19 18:58:00,29 Cherry St, Seattle,WA,98101 +208611,Bose SoundSport Headphones,1,99.99,2019-05-25 11:04:00,375 Maple St, Boston,MA,02215 +208612,27in 4K Gaming Monitor,1,389.99,2019-05-16 20:56:00,41 Madison St, New York City,NY,10001 +208613,Apple Airpods Headphones,1,150.0,2019-05-21 20:16:00,318 Washington St, San Francisco,CA,94016 +208614,USB-C Charging Cable,1,11.95,2019-05-07 23:22:00,290 Sunset St, Seattle,WA,98101 +208615,27in FHD Monitor,1,149.99,2019-05-02 15:20:00,268 Spruce St, San Francisco,CA,94016 +208616,iPhone,1,700.0,2019-05-30 00:28:00,984 Hickory St, Boston,MA,02215 +208617,Lightning Charging Cable,1,14.95,2019-05-25 19:57:00,618 Ridge St, Dallas,TX,75001 +208618,Apple Airpods Headphones,1,150.0,2019-05-27 13:24:00,234 Meadow St, Seattle,WA,98101 +208619,AAA Batteries (4-pack),1,2.99,2019-05-11 01:11:00,681 North St, Boston,MA,02215 +208620,Flatscreen TV,1,300.0,2019-05-13 20:59:00,374 11th St, Dallas,TX,75001 +208621,Wired Headphones,1,11.99,2019-05-18 21:01:00,48 Wilson St, Los Angeles,CA,90001 +208622,Bose SoundSport Headphones,1,99.99,2019-05-30 18:51:00,175 Hill St, Boston,MA,02215 +208623,USB-C Charging Cable,1,11.95,2019-05-18 10:20:00,819 Spruce St, Atlanta,GA,30301 +208624,USB-C Charging Cable,1,11.95,2019-05-02 14:07:00,502 River St, New York City,NY,10001 +208625,Wired Headphones,1,11.99,2019-05-17 10:31:00,27 Spruce St, San Francisco,CA,94016 +208626,27in 4K Gaming Monitor,1,389.99,2019-05-25 15:15:00,94 Highland St, New York City,NY,10001 +208627,Apple Airpods Headphones,1,150.0,2019-05-20 23:43:00,527 West St, Atlanta,GA,30301 +208628,USB-C Charging Cable,1,11.95,2019-05-09 05:44:00,701 Maple St, Austin,TX,73301 +208629,iPhone,1,700.0,2019-05-13 17:07:00,770 Lincoln St, Los Angeles,CA,90001 +208630,Apple Airpods Headphones,1,150.0,2019-05-18 10:59:00,484 River St, New York City,NY,10001 +208631,Apple Airpods Headphones,1,150.0,2019-05-08 22:31:00,701 Forest St, Atlanta,GA,30301 +208632,Vareebadd Phone,1,400.0,2019-05-14 18:58:00,437 Park St, San Francisco,CA,94016 +208633,Wired Headphones,1,11.99,2019-05-13 23:08:00,539 Dogwood St, Los Angeles,CA,90001 +208634,Macbook Pro Laptop,1,1700.0,2019-05-17 12:20:00,449 14th St, Portland,OR,97035 +208635,27in 4K Gaming Monitor,1,389.99,2019-05-30 10:09:00,815 Cedar St, New York City,NY,10001 +208636,Lightning Charging Cable,1,14.95,2019-05-30 22:38:00,888 Main St, Austin,TX,73301 +208637,Lightning Charging Cable,1,14.95,2019-05-07 12:07:00,686 Ridge St, Dallas,TX,75001 +208638,Macbook Pro Laptop,1,1700.0,2019-05-20 18:01:00,785 2nd St, Los Angeles,CA,90001 +208639,Lightning Charging Cable,1,14.95,2019-05-09 18:37:00,134 9th St, San Francisco,CA,94016 +208640,AA Batteries (4-pack),1,3.84,2019-05-23 11:49:00,578 5th St, Dallas,TX,75001 +208641,iPhone,1,700.0,2019-05-26 12:07:00,856 Meadow St, San Francisco,CA,94016 +208642,20in Monitor,1,109.99,2019-05-03 11:55:00,7 Lake St, Atlanta,GA,30301 +208643,AA Batteries (4-pack),3,3.84,2019-05-22 16:41:00,849 Cherry St, Dallas,TX,75001 +208644,AA Batteries (4-pack),2,3.84,2019-05-15 19:59:00,988 Madison St, Seattle,WA,98101 +208645,27in 4K Gaming Monitor,1,389.99,2019-05-07 11:36:00,466 Jackson St, New York City,NY,10001 +208645,27in FHD Monitor,1,149.99,2019-05-07 11:36:00,466 Jackson St, New York City,NY,10001 +208646,Wired Headphones,1,11.99,2019-05-09 14:35:00,48 7th St, Seattle,WA,98101 +208647,Wired Headphones,1,11.99,2019-05-05 19:58:00,343 Dogwood St, San Francisco,CA,94016 +208648,Macbook Pro Laptop,1,1700.0,2019-05-22 11:44:00,244 14th St, New York City,NY,10001 +208649,Macbook Pro Laptop,1,1700.0,2019-05-11 18:03:00,180 West St, San Francisco,CA,94016 +208650,USB-C Charging Cable,1,11.95,2019-05-01 11:04:00,86 Pine St, Dallas,TX,75001 +208651,27in FHD Monitor,1,149.99,2019-05-24 17:44:00,337 Lakeview St, Austin,TX,73301 +208652,USB-C Charging Cable,1,11.95,2019-05-20 19:08:00,713 2nd St, Los Angeles,CA,90001 +208653,Flatscreen TV,1,300.0,2019-05-08 05:47:00,855 South St, Boston,MA,02215 +208654,34in Ultrawide Monitor,1,379.99,2019-05-07 12:04:00,508 West St, San Francisco,CA,94016 +208655,Lightning Charging Cable,1,14.95,2019-05-17 18:18:00,486 Dogwood St, San Francisco,CA,94016 +208656,Wired Headphones,1,11.99,2019-05-26 19:09:00,181 10th St, Boston,MA,02215 +208657,AAA Batteries (4-pack),1,2.99,2019-05-17 00:06:00,298 Center St, Seattle,WA,98101 +208658,ThinkPad Laptop,1,999.99,2019-05-28 19:13:00,44 10th St, Boston,MA,02215 +208659,Google Phone,1,600.0,2019-05-01 10:41:00,320 Maple St, San Francisco,CA,94016 +208660,AA Batteries (4-pack),1,3.84,2019-05-22 04:39:00,593 4th St, Atlanta,GA,30301 +208661,USB-C Charging Cable,1,11.95,2019-05-26 12:52:00,665 Spruce St, San Francisco,CA,94016 +208662,34in Ultrawide Monitor,1,379.99,2019-05-14 12:31:00,189 Cherry St, San Francisco,CA,94016 +208663,Apple Airpods Headphones,1,150.0,2019-05-18 14:26:00,150 Highland St, Atlanta,GA,30301 +208664,AA Batteries (4-pack),2,3.84,2019-05-12 13:05:00,137 13th St, Seattle,WA,98101 +208665,Wired Headphones,1,11.99,2019-05-16 14:53:00,41 13th St, San Francisco,CA,94016 +208666,AA Batteries (4-pack),1,3.84,2019-05-02 11:14:00,642 South St, San Francisco,CA,94016 +208667,Apple Airpods Headphones,1,150.0,2019-05-11 17:43:00,682 Maple St, Seattle,WA,98101 +208668,27in 4K Gaming Monitor,1,389.99,2019-05-12 16:32:00,515 Hill St, Los Angeles,CA,90001 +208669,Wired Headphones,1,11.99,2019-05-31 13:30:00,461 4th St, Dallas,TX,75001 +208670,Bose SoundSport Headphones,1,99.99,2019-05-27 19:15:00,878 Hill St, New York City,NY,10001 +208671,AA Batteries (4-pack),3,3.84,2019-05-29 06:31:00,452 9th St, Boston,MA,02215 +208672,Apple Airpods Headphones,1,150.0,2019-05-05 21:06:00,277 Elm St, San Francisco,CA,94016 +208673,Apple Airpods Headphones,1,150.0,2019-05-31 01:48:00,164 Adams St, Atlanta,GA,30301 +208674,Bose SoundSport Headphones,1,99.99,2019-05-18 12:17:00,690 8th St, New York City,NY,10001 +208675,Bose SoundSport Headphones,1,99.99,2019-05-06 19:22:00,600 Johnson St, San Francisco,CA,94016 +208676,USB-C Charging Cable,1,11.95,2019-05-17 21:06:00,371 Cherry St, San Francisco,CA,94016 +208677,Apple Airpods Headphones,1,150.0,2019-05-13 20:01:00,413 West St, New York City,NY,10001 +208678,Wired Headphones,1,11.99,2019-05-04 17:36:00,681 Lakeview St, San Francisco,CA,94016 +208679,27in FHD Monitor,1,149.99,2019-05-04 09:43:00,335 Cherry St, Portland,OR,97035 +208680,Wired Headphones,1,11.99,2019-05-04 10:28:00,689 6th St, San Francisco,CA,94016 +208681,34in Ultrawide Monitor,1,379.99,2019-05-04 20:23:00,30 1st St, Austin,TX,73301 +208682,Wired Headphones,1,11.99,2019-05-25 06:15:00,780 Madison St, New York City,NY,10001 +208683,USB-C Charging Cable,2,11.95,2019-05-24 20:00:00,629 10th St, Dallas,TX,75001 +208684,Apple Airpods Headphones,1,150.0,2019-05-06 13:06:00,951 Park St, Atlanta,GA,30301 +208685,Bose SoundSport Headphones,1,99.99,2019-05-30 09:15:00,919 Lake St, Los Angeles,CA,90001 +208686,USB-C Charging Cable,1,11.95,2019-05-23 17:22:00,170 Adams St, Atlanta,GA,30301 +208687,USB-C Charging Cable,1,11.95,2019-05-19 10:12:00,5 Jefferson St, Seattle,WA,98101 +208688,iPhone,1,700.0,2019-05-03 13:16:00,92 Elm St, San Francisco,CA,94016 +208689,iPhone,1,700.0,2019-05-29 12:57:00,42 Forest St, Atlanta,GA,30301 +208690,34in Ultrawide Monitor,1,379.99,2019-05-18 14:20:00,132 Madison St, Los Angeles,CA,90001 +208691,AAA Batteries (4-pack),1,2.99,2019-05-13 11:23:00,686 Jefferson St, Los Angeles,CA,90001 +208692,AAA Batteries (4-pack),2,2.99,2019-05-03 21:14:00,774 Ridge St, Los Angeles,CA,90001 +208693,AA Batteries (4-pack),3,3.84,2019-05-04 02:18:00,933 Cedar St, San Francisco,CA,94016 +208694,USB-C Charging Cable,1,11.95,2019-05-17 11:37:00,296 Forest St, Austin,TX,73301 +208695,Apple Airpods Headphones,1,150.0,2019-05-31 22:53:00,256 Hill St, San Francisco,CA,94016 +208696,Lightning Charging Cable,1,14.95,2019-05-11 13:26:00,822 Maple St, San Francisco,CA,94016 +208697,AA Batteries (4-pack),1,3.84,2019-05-08 13:27:00,110 9th St, New York City,NY,10001 +208698,USB-C Charging Cable,1,11.95,2019-05-20 11:46:00,723 Jefferson St, San Francisco,CA,94016 +208699,Lightning Charging Cable,1,14.95,2019-05-28 17:44:00,398 Main St, Austin,TX,73301 +208700,USB-C Charging Cable,1,11.95,2019-05-21 10:40:00,352 Church St, Boston,MA,02215 +208701,Lightning Charging Cable,1,14.95,2019-05-02 13:55:00,270 Washington St, Los Angeles,CA,90001 +208702,27in FHD Monitor,1,149.99,2019-05-15 19:39:00,91 Washington St, San Francisco,CA,94016 +208703,AA Batteries (4-pack),1,3.84,2019-05-13 03:53:00,342 2nd St, San Francisco,CA,94016 +208704,AAA Batteries (4-pack),2,2.99,2019-05-06 20:03:00,624 Hickory St, Los Angeles,CA,90001 +208705,Bose SoundSport Headphones,1,99.99,2019-05-25 10:28:00,115 Washington St, Boston,MA,02215 +208706,AAA Batteries (4-pack),1,2.99,2019-05-22 11:50:00,200 10th St, New York City,NY,10001 +208707,34in Ultrawide Monitor,1,379.99,2019-05-10 20:34:00,283 River St, Boston,MA,02215 +208708,27in 4K Gaming Monitor,1,389.99,2019-05-03 23:31:00,548 Ridge St, Portland,OR,97035 +208709,Apple Airpods Headphones,1,150.0,2019-05-01 11:29:00,846 Highland St, San Francisco,CA,94016 +208710,AAA Batteries (4-pack),3,2.99,2019-05-27 10:50:00,915 4th St, Atlanta,GA,30301 +208711,Lightning Charging Cable,1,14.95,2019-05-28 00:18:00,768 Pine St, Boston,MA,02215 +208712,27in FHD Monitor,1,149.99,2019-05-10 14:43:00,567 Adams St, Dallas,TX,75001 +208713,AAA Batteries (4-pack),1,2.99,2019-05-04 10:38:00,420 Washington St, Boston,MA,02215 +208714,AA Batteries (4-pack),1,3.84,2019-05-13 06:36:00,160 Lakeview St, San Francisco,CA,94016 +208715,USB-C Charging Cable,1,11.95,2019-05-26 18:23:00,496 Highland St, Atlanta,GA,30301 +208716,USB-C Charging Cable,1,11.95,2019-05-18 17:46:00,419 Center St, Portland,ME,04101 +208717,Apple Airpods Headphones,1,150.0,2019-05-17 20:13:00,117 9th St, Austin,TX,73301 +208718,Apple Airpods Headphones,1,150.0,2019-05-08 02:41:00,840 Meadow St, San Francisco,CA,94016 +208719,Apple Airpods Headphones,1,150.0,2019-05-23 00:03:00,589 North St, Seattle,WA,98101 +208720,Wired Headphones,1,11.99,2019-05-16 09:56:00,114 13th St, Austin,TX,73301 +208721,Google Phone,1,600.0,2019-05-29 20:00:00,526 Highland St, San Francisco,CA,94016 +208722,ThinkPad Laptop,1,999.99,2019-05-15 06:31:00,959 West St, Dallas,TX,75001 +208723,Apple Airpods Headphones,1,150.0,2019-05-15 12:57:00,500 Dogwood St, New York City,NY,10001 +208724,AA Batteries (4-pack),1,3.84,2019-05-25 19:12:00,801 4th St, Boston,MA,02215 +208725,AA Batteries (4-pack),1,3.84,2019-05-13 11:46:00,417 6th St, San Francisco,CA,94016 +208726,Apple Airpods Headphones,1,150.0,2019-05-20 16:03:00,136 Lake St, San Francisco,CA,94016 +208727,Wired Headphones,2,11.99,2019-05-16 14:31:00,771 West St, Seattle,WA,98101 +208728,Lightning Charging Cable,1,14.95,2019-05-24 10:22:00,369 River St, Portland,OR,97035 +208729,AAA Batteries (4-pack),2,2.99,2019-05-07 07:55:00,36 Walnut St, Los Angeles,CA,90001 +208730,AA Batteries (4-pack),1,3.84,2019-05-05 13:38:00,188 North St, Los Angeles,CA,90001 +208731,LG Washing Machine,1,600.0,2019-05-08 08:53:00,464 Church St, New York City,NY,10001 +208732,27in FHD Monitor,1,149.99,2019-05-26 23:27:00,732 Cherry St, Portland,OR,97035 +208733,Macbook Pro Laptop,1,1700.0,2019-05-05 11:46:00,761 7th St, San Francisco,CA,94016 +208734,Wired Headphones,1,11.99,2019-05-29 18:06:00,557 Adams St, New York City,NY,10001 +208735,Google Phone,1,600.0,2019-05-20 11:58:00,514 5th St, Boston,MA,02215 +208736,LG Washing Machine,1,600.0,2019-05-02 14:56:00,477 Hill St, San Francisco,CA,94016 +208737,Wired Headphones,1,11.99,2019-05-09 20:19:00,574 Main St, Atlanta,GA,30301 +208738,AAA Batteries (4-pack),1,2.99,2019-05-19 15:44:00,550 11th St, Los Angeles,CA,90001 +208739,Google Phone,1,600.0,2019-05-17 22:25:00,932 Chestnut St, San Francisco,CA,94016 +208740,AAA Batteries (4-pack),1,2.99,2019-05-13 19:15:00,757 Center St, New York City,NY,10001 +208741,Bose SoundSport Headphones,1,99.99,2019-05-09 10:23:00,240 Main St, New York City,NY,10001 +208742,Lightning Charging Cable,1,14.95,2019-05-19 12:52:00,381 West St, Atlanta,GA,30301 +208743,USB-C Charging Cable,1,11.95,2019-05-18 19:19:00,208 River St, Atlanta,GA,30301 +208744,AA Batteries (4-pack),1,3.84,2019-05-10 14:45:00,549 Adams St, San Francisco,CA,94016 +208745,Lightning Charging Cable,1,14.95,2019-05-26 17:21:00,88 14th St, Atlanta,GA,30301 +208746,AAA Batteries (4-pack),1,2.99,2019-05-12 21:59:00,327 11th St, Portland,OR,97035 +208747,Lightning Charging Cable,1,14.95,2019-05-11 15:02:00,391 Lincoln St, San Francisco,CA,94016 +208748,AAA Batteries (4-pack),2,2.99,2019-05-07 19:21:00,441 6th St, Boston,MA,02215 +208749,Apple Airpods Headphones,1,150.0,2019-05-21 18:06:00,767 Church St, Portland,ME,04101 +208750,USB-C Charging Cable,1,11.95,2019-05-26 18:20:00,803 7th St, San Francisco,CA,94016 +208751,AA Batteries (4-pack),1,3.84,2019-05-04 20:43:00,777 2nd St, Boston,MA,02215 +208752,Wired Headphones,1,11.99,2019-05-17 20:19:00,394 11th St, Los Angeles,CA,90001 +208753,AA Batteries (4-pack),1,3.84,2019-05-11 16:10:00,885 8th St, San Francisco,CA,94016 +208754,Bose SoundSport Headphones,1,99.99,2019-05-30 21:45:00,47 Jefferson St, Boston,MA,02215 +208755,iPhone,1,700.0,2019-05-09 10:17:00,447 Center St, San Francisco,CA,94016 +208755,Lightning Charging Cable,1,14.95,2019-05-09 10:17:00,447 Center St, San Francisco,CA,94016 +208756,Apple Airpods Headphones,1,150.0,2019-05-22 08:37:00,904 Willow St, Los Angeles,CA,90001 +208757,LG Dryer,1,600.0,2019-05-09 12:42:00,490 2nd St, Los Angeles,CA,90001 +208758,ThinkPad Laptop,1,999.99,2019-05-06 17:22:00,342 Sunset St, Atlanta,GA,30301 +208759,USB-C Charging Cable,2,11.95,2019-05-30 16:55:00,908 1st St, New York City,NY,10001 +208760,AAA Batteries (4-pack),3,2.99,2019-05-19 10:32:00,638 Highland St, Portland,OR,97035 +208761,Flatscreen TV,1,300.0,2019-05-03 21:06:00,864 Cedar St, Los Angeles,CA,90001 +208762,Wired Headphones,1,11.99,2019-05-31 13:31:00,597 River St, San Francisco,CA,94016 +208763,20in Monitor,1,109.99,2019-05-06 11:20:00,128 7th St, Los Angeles,CA,90001 +208764,Lightning Charging Cable,1,14.95,2019-05-21 03:32:00,849 Elm St, San Francisco,CA,94016 +208765,Bose SoundSport Headphones,1,99.99,2019-05-10 17:43:00,529 13th St, New York City,NY,10001 +208766,Wired Headphones,1,11.99,2019-05-04 17:53:00,261 Highland St, San Francisco,CA,94016 +208767,Bose SoundSport Headphones,1,99.99,2019-05-30 07:38:00,404 Washington St, Seattle,WA,98101 +208768,ThinkPad Laptop,1,999.99,2019-05-16 19:06:00,682 2nd St, San Francisco,CA,94016 +208769,Lightning Charging Cable,1,14.95,2019-05-29 13:29:00,214 Walnut St, Austin,TX,73301 +208770,AAA Batteries (4-pack),1,2.99,2019-05-23 12:19:00,863 Lake St, Boston,MA,02215 +208771,20in Monitor,1,109.99,2019-05-31 18:18:00,11 Meadow St, Dallas,TX,75001 +208772,Wired Headphones,1,11.99,2019-05-14 10:46:00,220 North St, Boston,MA,02215 +208773,Apple Airpods Headphones,1,150.0,2019-05-14 15:07:00,520 14th St, New York City,NY,10001 +208774,AAA Batteries (4-pack),1,2.99,2019-05-13 21:08:00,585 Hill St, Portland,OR,97035 +208774,AA Batteries (4-pack),1,3.84,2019-05-13 21:08:00,585 Hill St, Portland,OR,97035 +208775,LG Washing Machine,1,600.0,2019-05-11 11:19:00,725 Madison St, Dallas,TX,75001 +208776,Wired Headphones,1,11.99,2019-05-09 09:37:00,626 Cedar St, New York City,NY,10001 +208777,ThinkPad Laptop,1,999.99,2019-05-13 14:45:00,650 Adams St, Boston,MA,02215 +208778,Wired Headphones,1,11.99,2019-05-24 11:12:00,536 Center St, Austin,TX,73301 +208779,Bose SoundSport Headphones,1,99.99,2019-05-07 19:49:00,232 5th St, Portland,OR,97035 +208780,AAA Batteries (4-pack),1,2.99,2019-05-22 09:01:00,955 5th St, Seattle,WA,98101 +208781,USB-C Charging Cable,1,11.95,2019-05-08 14:52:00,845 Dogwood St, Austin,TX,73301 +208782,20in Monitor,1,109.99,2019-05-13 07:44:00,230 Wilson St, Austin,TX,73301 +208783,ThinkPad Laptop,1,999.99,2019-05-01 16:19:00,860 Park St, Dallas,TX,75001 +208784,Macbook Pro Laptop,1,1700.0,2019-05-06 20:09:00,35 5th St, San Francisco,CA,94016 +208785,Bose SoundSport Headphones,1,99.99,2019-05-22 20:51:00,851 12th St, Dallas,TX,75001 +208786,AAA Batteries (4-pack),5,2.99,2019-05-17 19:09:00,247 Center St, Austin,TX,73301 +208787,iPhone,1,700.0,2019-05-17 21:10:00,79 9th St, Los Angeles,CA,90001 +208788,AAA Batteries (4-pack),1,2.99,2019-05-23 13:26:00,824 Washington St, Portland,OR,97035 +208789,USB-C Charging Cable,1,11.95,2019-05-09 20:54:00,429 14th St, Portland,OR,97035 +208790,Macbook Pro Laptop,1,1700.0,2019-05-26 17:59:00,549 Madison St, Atlanta,GA,30301 +208791,27in FHD Monitor,1,149.99,2019-05-15 17:00:00,66 North St, San Francisco,CA,94016 +208792,AA Batteries (4-pack),4,3.84,2019-05-14 08:39:00,396 Dogwood St, San Francisco,CA,94016 +208793,Wired Headphones,1,11.99,2019-05-16 13:51:00,789 Hill St, Boston,MA,02215 +208794,34in Ultrawide Monitor,1,379.99,2019-05-08 07:38:00,85 12th St, San Francisco,CA,94016 +208795,USB-C Charging Cable,1,11.95,2019-05-20 22:15:00,544 South St, Los Angeles,CA,90001 +208796,20in Monitor,1,109.99,2019-05-05 16:03:00,891 Willow St, Los Angeles,CA,90001 +208797,LG Washing Machine,1,600.0,2019-05-25 09:32:00,265 4th St, San Francisco,CA,94016 +208798,AAA Batteries (4-pack),2,2.99,2019-05-07 18:58:00,441 Chestnut St, Boston,MA,02215 +208799,Lightning Charging Cable,1,14.95,2019-05-27 14:47:00,981 7th St, San Francisco,CA,94016 +208800,Bose SoundSport Headphones,1,99.99,2019-05-21 12:39:00,642 Wilson St, Austin,TX,73301 +208801,Lightning Charging Cable,1,14.95,2019-05-09 09:06:00,870 Chestnut St, Seattle,WA,98101 +208802,Apple Airpods Headphones,1,150.0,2019-05-26 00:23:00,754 14th St, New York City,NY,10001 +208803,Lightning Charging Cable,1,14.95,2019-05-07 12:59:00,239 Walnut St, Portland,OR,97035 +208804,AAA Batteries (4-pack),2,2.99,2019-05-31 13:12:00,339 Lincoln St, Los Angeles,CA,90001 +208805,Macbook Pro Laptop,1,1700.0,2019-05-28 17:58:00,799 1st St, Los Angeles,CA,90001 +208806,USB-C Charging Cable,1,11.95,2019-05-24 16:28:00,734 North St, Portland,ME,04101 +208807,AA Batteries (4-pack),3,3.84,2019-05-20 10:18:00,762 Meadow St, Dallas,TX,75001 +208808,AAA Batteries (4-pack),1,2.99,2019-05-20 11:57:00,598 7th St, Boston,MA,02215 +208809,iPhone,1,700.0,2019-05-31 15:59:00,937 Dogwood St, Portland,OR,97035 +208810,Apple Airpods Headphones,1,150.0,2019-05-12 12:01:00,33 Washington St, Atlanta,GA,30301 +208811,27in FHD Monitor,1,149.99,2019-05-19 17:54:00,3 Forest St, Boston,MA,02215 +208812,Apple Airpods Headphones,1,150.0,2019-05-07 05:39:00,600 Spruce St, Los Angeles,CA,90001 +208813,Bose SoundSport Headphones,1,99.99,2019-05-27 18:39:00,687 1st St, Seattle,WA,98101 +208814,Lightning Charging Cable,1,14.95,2019-05-08 19:47:00,92 Church St, Los Angeles,CA,90001 +208815,iPhone,1,700.0,2019-05-19 16:19:00,254 4th St, Seattle,WA,98101 +208816,Lightning Charging Cable,1,14.95,2019-05-26 16:16:00,57 Sunset St, Los Angeles,CA,90001 +208817,iPhone,1,700.0,2019-05-14 17:04:00,796 7th St, Boston,MA,02215 +208818,Lightning Charging Cable,1,14.95,2019-05-22 17:46:00,804 Pine St, Seattle,WA,98101 +208819,Wired Headphones,1,11.99,2019-05-12 17:15:00,159 Willow St, San Francisco,CA,94016 +208820,27in 4K Gaming Monitor,1,389.99,2019-05-25 17:38:00,627 4th St, San Francisco,CA,94016 +208821,Bose SoundSport Headphones,1,99.99,2019-05-23 10:44:00,60 Walnut St, San Francisco,CA,94016 +208822,Google Phone,1,600.0,2019-05-20 22:29:00,434 Highland St, San Francisco,CA,94016 +208823,Google Phone,1,600.0,2019-05-22 15:00:00,573 Wilson St, Dallas,TX,75001 +208824,AA Batteries (4-pack),2,3.84,2019-05-31 16:21:00,471 Park St, Boston,MA,02215 +208825,Apple Airpods Headphones,1,150.0,2019-05-01 22:20:00,119 Chestnut St, Portland,OR,97035 +208826,iPhone,1,700.0,2019-05-07 08:32:00,725 Madison St, San Francisco,CA,94016 +208827,Lightning Charging Cable,1,14.95,2019-05-15 11:10:00,184 Highland St, Atlanta,GA,30301 +208828,Macbook Pro Laptop,1,1700.0,2019-05-20 18:27:00,161 Elm St, San Francisco,CA,94016 +208829,USB-C Charging Cable,1,11.95,2019-05-10 13:18:00,985 Elm St, Atlanta,GA,30301 +208830,AAA Batteries (4-pack),2,2.99,2019-05-20 12:05:00,341 Cedar St, New York City,NY,10001 +208831,Apple Airpods Headphones,1,150.0,2019-05-21 13:54:00,521 Jackson St, San Francisco,CA,94016 +208832,AAA Batteries (4-pack),1,2.99,2019-05-26 23:46:00,713 Center St, Los Angeles,CA,90001 +208833,Bose SoundSport Headphones,1,99.99,2019-05-23 15:17:00,647 Sunset St, New York City,NY,10001 +208834,AA Batteries (4-pack),1,3.84,2019-05-08 10:13:00,818 10th St, Atlanta,GA,30301 +208835,AAA Batteries (4-pack),1,2.99,2019-05-06 07:58:00,7 11th St, San Francisco,CA,94016 +208836,AAA Batteries (4-pack),1,2.99,2019-05-23 14:31:00,854 14th St, Los Angeles,CA,90001 +208837,USB-C Charging Cable,1,11.95,2019-05-17 10:16:00,376 7th St, Dallas,TX,75001 +208838,Wired Headphones,1,11.99,2019-05-21 19:13:00,544 Wilson St, Seattle,WA,98101 +208839,AAA Batteries (4-pack),2,2.99,2019-05-19 13:36:00,199 Church St, Austin,TX,73301 +208840,AA Batteries (4-pack),1,3.84,2019-05-03 01:00:00,316 Cedar St, Dallas,TX,75001 +208841,Lightning Charging Cable,1,14.95,2019-05-16 06:19:00,178 Ridge St, San Francisco,CA,94016 +208842,AAA Batteries (4-pack),1,2.99,2019-05-04 22:44:00,750 South St, Portland,OR,97035 +208843,Lightning Charging Cable,1,14.95,2019-05-15 21:47:00,47 10th St, Boston,MA,02215 +208844,Wired Headphones,1,11.99,2019-05-06 14:27:00,985 West St, Atlanta,GA,30301 +208845,AAA Batteries (4-pack),1,2.99,2019-05-16 21:01:00,255 Center St, San Francisco,CA,94016 +208846,AAA Batteries (4-pack),1,2.99,2019-05-14 02:16:00,89 11th St, San Francisco,CA,94016 +208847,Google Phone,1,600.0,2019-05-20 09:06:00,101 Walnut St, San Francisco,CA,94016 +208848,AAA Batteries (4-pack),1,2.99,2019-05-15 13:13:00,951 14th St, San Francisco,CA,94016 +208849,AAA Batteries (4-pack),1,2.99,2019-05-25 00:46:00,640 Walnut St, Atlanta,GA,30301 +208850,Macbook Pro Laptop,1,1700.0,2019-05-26 07:56:00,67 Adams St, New York City,NY,10001 +208851,iPhone,1,700.0,2019-05-05 21:56:00,226 Pine St, San Francisco,CA,94016 +208852,Lightning Charging Cable,1,14.95,2019-05-05 18:22:00,156 Willow St, Boston,MA,02215 +208853,AAA Batteries (4-pack),2,2.99,2019-05-27 14:25:00,108 7th St, Atlanta,GA,30301 +208853,34in Ultrawide Monitor,1,379.99,2019-05-27 14:25:00,108 7th St, Atlanta,GA,30301 +208854,Apple Airpods Headphones,1,150.0,2019-05-15 10:07:00,731 Lake St, San Francisco,CA,94016 +208855,USB-C Charging Cable,1,11.95,2019-05-11 19:58:00,667 River St, Boston,MA,02215 +208856,AAA Batteries (4-pack),1,2.99,2019-05-27 08:01:00,147 Park St, Boston,MA,02215 +208857,USB-C Charging Cable,2,11.95,2019-05-27 13:28:00,89 12th St, Los Angeles,CA,90001 +208858,AAA Batteries (4-pack),1,2.99,2019-05-11 18:48:00,856 Washington St, Portland,OR,97035 +208859,AAA Batteries (4-pack),1,2.99,2019-05-23 01:20:00,899 Forest St, San Francisco,CA,94016 +208860,Bose SoundSport Headphones,1,99.99,2019-05-09 10:37:00,442 11th St, Dallas,TX,75001 +208861,USB-C Charging Cable,1,11.95,2019-05-06 13:57:00,732 1st St, New York City,NY,10001 +208862,Lightning Charging Cable,2,14.95,2019-05-17 08:55:00,525 Forest St, Portland,OR,97035 +208863,Apple Airpods Headphones,1,150.0,2019-05-16 12:07:00,460 13th St, Atlanta,GA,30301 +208864,Bose SoundSport Headphones,1,99.99,2019-05-10 00:18:00,298 West St, Los Angeles,CA,90001 +208865,AA Batteries (4-pack),1,3.84,2019-05-24 13:07:00,36 Dogwood St, Boston,MA,02215 +208866,AAA Batteries (4-pack),3,2.99,2019-05-05 20:58:00,730 6th St, New York City,NY,10001 +208867,Lightning Charging Cable,2,14.95,2019-05-01 08:43:00,912 Highland St, New York City,NY,10001 +208868,AAA Batteries (4-pack),1,2.99,2019-05-26 20:27:00,605 Lincoln St, Boston,MA,02215 +208869,AA Batteries (4-pack),1,3.84,2019-05-13 22:46:00,275 Jefferson St, Los Angeles,CA,90001 +208869,Lightning Charging Cable,1,14.95,2019-05-13 22:46:00,275 Jefferson St, Los Angeles,CA,90001 +208870,Google Phone,1,600.0,2019-05-21 11:57:00,602 Wilson St, Los Angeles,CA,90001 +208871,USB-C Charging Cable,1,11.95,2019-05-17 12:28:00,894 Main St, Dallas,TX,75001 +208872,AA Batteries (4-pack),1,3.84,2019-05-16 19:47:00,299 River St, Dallas,TX,75001 +208873,AAA Batteries (4-pack),2,2.99,2019-05-21 15:00:00,761 Madison St, Dallas,TX,75001 +208874,Wired Headphones,1,11.99,2019-05-27 18:14:00,427 9th St, San Francisco,CA,94016 +208875,AA Batteries (4-pack),1,3.84,2019-05-21 20:16:00,568 West St, Los Angeles,CA,90001 +208876,AA Batteries (4-pack),1,3.84,2019-05-17 20:48:00,390 Forest St, Los Angeles,CA,90001 +208877,Lightning Charging Cable,2,14.95,2019-05-26 16:57:00,381 Cherry St, Austin,TX,73301 +208878,Wired Headphones,1,11.99,2019-05-24 23:15:00,554 Maple St, New York City,NY,10001 +208879,Lightning Charging Cable,1,14.95,2019-05-21 19:24:00,381 Sunset St, San Francisco,CA,94016 +208880,Wired Headphones,1,11.99,2019-05-08 17:06:00,196 Pine St, San Francisco,CA,94016 +208881,Lightning Charging Cable,1,14.95,2019-05-24 22:37:00,831 Meadow St, Austin,TX,73301 +208882,AAA Batteries (4-pack),1,2.99,2019-05-14 23:05:00,923 Ridge St, Austin,TX,73301 +208883,AAA Batteries (4-pack),1,2.99,2019-05-26 13:01:00,161 Willow St, San Francisco,CA,94016 +208884,AA Batteries (4-pack),2,3.84,2019-05-06 23:34:00,256 North St, Los Angeles,CA,90001 +208885,Lightning Charging Cable,1,14.95,2019-05-13 20:42:00,678 Jefferson St, San Francisco,CA,94016 +208886,AAA Batteries (4-pack),1,2.99,2019-05-16 21:43:00,608 South St, San Francisco,CA,94016 +208887,AA Batteries (4-pack),4,3.84,2019-05-19 21:08:00,70 Walnut St, Los Angeles,CA,90001 +208888,iPhone,1,700.0,2019-05-11 17:15:00,14 Hickory St, Los Angeles,CA,90001 +208889,LG Dryer,1,600.0,2019-05-09 22:47:00,597 Hickory St, Austin,TX,73301 +208890,Wired Headphones,1,11.99,2019-05-28 14:18:00,825 Hill St, Austin,TX,73301 +208891,Apple Airpods Headphones,1,150.0,2019-05-09 09:17:00,830 1st St, New York City,NY,10001 +208892,27in FHD Monitor,1,149.99,2019-05-06 22:44:00,298 Spruce St, Atlanta,GA,30301 +208893,AAA Batteries (4-pack),1,2.99,2019-05-21 07:01:00,398 11th St, Portland,ME,04101 +208894,ThinkPad Laptop,1,999.99,2019-05-18 19:46:00,608 7th St, New York City,NY,10001 +208895,AA Batteries (4-pack),1,3.84,2019-05-14 21:10:00,264 Jefferson St, Austin,TX,73301 +208896,AAA Batteries (4-pack),1,2.99,2019-05-18 13:52:00,911 Washington St, New York City,NY,10001 +208897,iPhone,1,700.0,2019-05-14 16:50:00,256 Elm St, New York City,NY,10001 +208898,AA Batteries (4-pack),1,3.84,2019-05-23 10:59:00,256 11th St, San Francisco,CA,94016 +208898,Bose SoundSport Headphones,1,99.99,2019-05-23 10:59:00,256 11th St, San Francisco,CA,94016 +208899,Apple Airpods Headphones,1,150.0,2019-05-10 11:49:00,848 Ridge St, San Francisco,CA,94016 +208900,34in Ultrawide Monitor,1,379.99,2019-05-12 14:11:00,507 Johnson St, Dallas,TX,75001 +208901,Lightning Charging Cable,1,14.95,2019-05-02 09:50:00,944 Meadow St, San Francisco,CA,94016 +208902,27in 4K Gaming Monitor,1,389.99,2019-05-05 20:03:00,63 Willow St, Atlanta,GA,30301 +208903,AA Batteries (4-pack),1,3.84,2019-05-14 08:28:00,339 Adams St, Boston,MA,02215 +208904,Vareebadd Phone,1,400.0,2019-05-03 07:28:00,924 14th St, San Francisco,CA,94016 +208905,Macbook Pro Laptop,1,1700.0,2019-05-20 10:04:00,913 Maple St, Dallas,TX,75001 +208906,34in Ultrawide Monitor,1,379.99,2019-05-16 18:49:00,836 Walnut St, San Francisco,CA,94016 +208907,Apple Airpods Headphones,1,150.0,2019-05-23 10:31:00,859 Jefferson St, Los Angeles,CA,90001 +208908,Wired Headphones,1,11.99,2019-05-24 11:01:00,55 Wilson St, San Francisco,CA,94016 +208909,USB-C Charging Cable,1,11.95,2019-05-02 20:21:00,200 Meadow St, Austin,TX,73301 +208910,34in Ultrawide Monitor,1,379.99,2019-05-18 16:44:00,864 14th St, Boston,MA,02215 +208911,Flatscreen TV,1,300.0,2019-05-18 06:51:00,605 Jefferson St, Dallas,TX,75001 +208912,Flatscreen TV,1,300.0,2019-05-24 13:45:00,225 Pine St, New York City,NY,10001 +208913,34in Ultrawide Monitor,1,379.99,2019-05-08 16:06:00,427 Johnson St, New York City,NY,10001 +208914,AAA Batteries (4-pack),2,2.99,2019-05-27 20:49:00,467 Forest St, Los Angeles,CA,90001 +208915,Apple Airpods Headphones,1,150.0,2019-05-16 10:31:00,855 1st St, Seattle,WA,98101 +208916,Wired Headphones,1,11.99,2019-05-29 11:14:00,325 North St, Dallas,TX,75001 +208917,USB-C Charging Cable,1,11.95,2019-05-19 19:46:00,538 Hill St, San Francisco,CA,94016 +208918,USB-C Charging Cable,1,11.95,2019-05-29 13:13:00,765 Cedar St, Los Angeles,CA,90001 +208919,Lightning Charging Cable,1,14.95,2019-05-13 12:55:00,386 4th St, Los Angeles,CA,90001 +208920,Lightning Charging Cable,1,14.95,2019-05-13 18:40:00,910 11th St, Atlanta,GA,30301 +208921,34in Ultrawide Monitor,1,379.99,2019-05-26 07:56:00,195 Walnut St, Dallas,TX,75001 +208922,34in Ultrawide Monitor,1,379.99,2019-05-28 20:10:00,531 8th St, San Francisco,CA,94016 +208923,AAA Batteries (4-pack),1,2.99,2019-05-26 09:25:00,540 Dogwood St, Atlanta,GA,30301 +208924,USB-C Charging Cable,1,11.95,2019-05-28 13:04:00,348 Spruce St, Seattle,WA,98101 +208925,Bose SoundSport Headphones,1,99.99,2019-05-03 20:38:00,268 Maple St, Seattle,WA,98101 +208926,USB-C Charging Cable,1,11.95,2019-05-31 09:13:00,797 Spruce St, Seattle,WA,98101 +208926,AAA Batteries (4-pack),1,2.99,2019-05-31 09:13:00,797 Spruce St, Seattle,WA,98101 +208927,AA Batteries (4-pack),1,3.84,2019-05-30 11:09:00,142 Lincoln St, San Francisco,CA,94016 +208928,Wired Headphones,1,11.99,2019-05-22 13:30:00,410 7th St, Seattle,WA,98101 +208929,Wired Headphones,1,11.99,2019-05-31 11:18:00,354 Hickory St, New York City,NY,10001 +208930,27in FHD Monitor,1,149.99,2019-05-02 09:38:00,147 Adams St, Boston,MA,02215 +208930,Apple Airpods Headphones,1,150.0,2019-05-02 09:38:00,147 Adams St, Boston,MA,02215 +208931,AA Batteries (4-pack),2,3.84,2019-05-30 11:43:00,771 Meadow St, San Francisco,CA,94016 +208932,ThinkPad Laptop,1,999.99,2019-05-27 19:15:00,888 Cedar St, New York City,NY,10001 +208933,USB-C Charging Cable,1,11.95,2019-05-04 14:34:00,221 4th St, San Francisco,CA,94016 +208934,Wired Headphones,1,11.99,2019-05-23 13:02:00,542 Church St, San Francisco,CA,94016 +208935,Wired Headphones,1,11.99,2019-05-01 16:39:00,314 Washington St, San Francisco,CA,94016 +208936,AA Batteries (4-pack),1,3.84,2019-05-04 15:44:00,67 7th St, Austin,TX,73301 +208937,Wired Headphones,1,11.99,2019-05-13 10:01:00,902 Johnson St, Los Angeles,CA,90001 +208938,LG Dryer,1,600.0,2019-05-31 15:34:00,658 7th St, Austin,TX,73301 +208939,AA Batteries (4-pack),1,3.84,2019-05-13 15:01:00,594 Lake St, Boston,MA,02215 +208940,Apple Airpods Headphones,1,150.0,2019-05-06 12:15:00,964 Sunset St, New York City,NY,10001 +208941,Wired Headphones,1,11.99,2019-05-19 13:13:00,944 Washington St, Atlanta,GA,30301 +208942,Wired Headphones,1,11.99,2019-05-30 21:48:00,654 Jefferson St, Portland,OR,97035 +208943,27in 4K Gaming Monitor,1,389.99,2019-05-10 18:31:00,602 North St, Los Angeles,CA,90001 +208944,Lightning Charging Cable,1,14.95,2019-05-24 09:00:00,599 Willow St, San Francisco,CA,94016 +208945,AA Batteries (4-pack),1,3.84,2019-05-13 08:44:00,228 4th St, Atlanta,GA,30301 +208946,Lightning Charging Cable,1,14.95,2019-05-25 18:08:00,843 Highland St, Atlanta,GA,30301 +208947,Bose SoundSport Headphones,1,99.99,2019-05-01 23:12:00,773 Chestnut St, Boston,MA,02215 +208948,Bose SoundSport Headphones,1,99.99,2019-05-09 19:50:00,737 Cedar St, Boston,MA,02215 +208949,Lightning Charging Cable,1,14.95,2019-05-20 11:41:00,714 Sunset St, Dallas,TX,75001 +208950,Bose SoundSport Headphones,1,99.99,2019-05-12 05:45:00,150 Main St, Los Angeles,CA,90001 +208951,Wired Headphones,1,11.99,2019-05-05 19:30:00,584 Wilson St, Los Angeles,CA,90001 +208952,Macbook Pro Laptop,1,1700.0,2019-05-30 14:17:00,673 6th St, Boston,MA,02215 +208953,AAA Batteries (4-pack),1,2.99,2019-05-03 21:45:00,331 Jackson St, Dallas,TX,75001 +208954,Apple Airpods Headphones,1,150.0,2019-05-11 15:15:00,950 Ridge St, Dallas,TX,75001 +208955,AAA Batteries (4-pack),2,2.99,2019-05-18 18:47:00,182 14th St, Atlanta,GA,30301 +208956,Macbook Pro Laptop,1,1700.0,2019-05-03 12:02:00,929 Chestnut St, Austin,TX,73301 +208957,Apple Airpods Headphones,1,150.0,2019-05-12 06:48:00,526 South St, New York City,NY,10001 +208958,USB-C Charging Cable,1,11.95,2019-05-22 11:18:00,144 2nd St, San Francisco,CA,94016 +208959,ThinkPad Laptop,1,999.99,2019-05-07 20:36:00,276 Highland St, Seattle,WA,98101 +208960,Wired Headphones,1,11.99,2019-05-08 21:46:00,308 Center St, San Francisco,CA,94016 +208961,USB-C Charging Cable,1,11.95,2019-05-12 20:33:00,874 4th St, San Francisco,CA,94016 +208962,Lightning Charging Cable,1,14.95,2019-05-04 16:36:00,48 Hickory St, Los Angeles,CA,90001 +208963,Lightning Charging Cable,1,14.95,2019-05-11 21:09:00,797 Ridge St, Dallas,TX,75001 +208964,AAA Batteries (4-pack),1,2.99,2019-05-25 19:03:00,721 Ridge St, San Francisco,CA,94016 +208965,Bose SoundSport Headphones,1,99.99,2019-05-28 22:26:00,335 Lake St, Atlanta,GA,30301 +208966,Bose SoundSport Headphones,1,99.99,2019-05-16 11:01:00,658 Walnut St, Boston,MA,02215 +208967,Lightning Charging Cable,1,14.95,2019-05-30 11:21:00,961 5th St, San Francisco,CA,94016 +208968,USB-C Charging Cable,2,11.95,2019-05-22 22:27:00,59 13th St, Austin,TX,73301 +208969,AA Batteries (4-pack),1,3.84,2019-05-05 20:14:00,185 Johnson St, Los Angeles,CA,90001 +208970,Bose SoundSport Headphones,1,99.99,2019-05-20 09:36:00,349 Jackson St, Dallas,TX,75001 +208971,Google Phone,1,600.0,2019-05-24 22:47:00,936 6th St, Los Angeles,CA,90001 +208971,AA Batteries (4-pack),1,3.84,2019-05-24 22:47:00,936 6th St, Los Angeles,CA,90001 +208972,Apple Airpods Headphones,1,150.0,2019-05-23 12:07:00,138 Cherry St, San Francisco,CA,94016 +208973,iPhone,1,700.0,2019-05-31 17:22:00,24 Walnut St, San Francisco,CA,94016 +208974,AA Batteries (4-pack),1,3.84,2019-05-03 18:58:00,507 South St, San Francisco,CA,94016 +208975,Wired Headphones,1,11.99,2019-05-18 21:51:00,37 Madison St, Los Angeles,CA,90001 +208976,AA Batteries (4-pack),3,3.84,2019-05-18 21:51:00,810 Johnson St, Boston,MA,02215 +208977,USB-C Charging Cable,1,11.95,2019-05-10 11:59:00,771 4th St, Austin,TX,73301 +208978,AAA Batteries (4-pack),1,2.99,2019-05-09 09:03:00,621 Meadow St, Seattle,WA,98101 +208979,Lightning Charging Cable,1,14.95,2019-05-23 19:13:00,266 Lincoln St, Los Angeles,CA,90001 +208980,AAA Batteries (4-pack),2,2.99,2019-05-04 12:01:00,252 2nd St, Los Angeles,CA,90001 +208981,USB-C Charging Cable,1,11.95,2019-05-24 10:26:00,237 West St, San Francisco,CA,94016 +208982,AA Batteries (4-pack),1,3.84,2019-05-23 19:40:00,742 Forest St, New York City,NY,10001 +208983,USB-C Charging Cable,1,11.95,2019-05-09 17:20:00,779 Jackson St, New York City,NY,10001 +208984,iPhone,1,700.0,2019-05-01 18:49:00,546 Park St, Atlanta,GA,30301 +208985,AA Batteries (4-pack),2,3.84,2019-05-16 14:32:00,706 Adams St, New York City,NY,10001 +208986,Lightning Charging Cable,1,14.95,2019-05-19 13:49:00,578 Cedar St, San Francisco,CA,94016 +208987,AAA Batteries (4-pack),1,2.99,2019-05-08 12:06:00,498 South St, Los Angeles,CA,90001 +208988,Bose SoundSport Headphones,1,99.99,2019-05-08 13:04:00,589 Willow St, San Francisco,CA,94016 +208989,Lightning Charging Cable,1,14.95,2019-05-20 10:20:00,635 Madison St, New York City,NY,10001 +208990,Vareebadd Phone,1,400.0,2019-05-07 22:27:00,990 Spruce St, Los Angeles,CA,90001 +208991,Lightning Charging Cable,1,14.95,2019-05-12 22:26:00,835 9th St, Dallas,TX,75001 +208992,27in 4K Gaming Monitor,1,389.99,2019-05-21 09:39:00,168 Forest St, Boston,MA,02215 +208993,iPhone,1,700.0,2019-05-10 14:00:00,292 Forest St, Dallas,TX,75001 +208994,Lightning Charging Cable,1,14.95,2019-05-02 09:08:00,981 Cherry St, Boston,MA,02215 +208995,Apple Airpods Headphones,1,150.0,2019-05-08 01:25:00,593 10th St, Portland,OR,97035 +208996,AA Batteries (4-pack),1,3.84,2019-05-04 09:56:00,745 2nd St, New York City,NY,10001 +208997,Lightning Charging Cable,2,14.95,2019-05-29 23:50:00,42 Forest St, Los Angeles,CA,90001 +208998,Wired Headphones,1,11.99,2019-05-08 18:33:00,629 West St, Dallas,TX,75001 +208999,USB-C Charging Cable,1,11.95,2019-05-03 21:59:00,967 Cherry St, New York City,NY,10001 +209000,27in FHD Monitor,1,149.99,2019-05-17 12:39:00,997 8th St, Los Angeles,CA,90001 +209001,USB-C Charging Cable,1,11.95,2019-05-09 15:54:00,403 Chestnut St, Los Angeles,CA,90001 +209002,USB-C Charging Cable,2,11.95,2019-05-14 09:16:00,504 Church St, Dallas,TX,75001 +209003,Bose SoundSport Headphones,1,99.99,2019-05-15 06:55:00,976 Cherry St, Portland,OR,97035 +209004,27in 4K Gaming Monitor,1,389.99,2019-05-03 20:19:00,794 Dogwood St, Dallas,TX,75001 +209005,Apple Airpods Headphones,1,150.0,2019-05-02 09:59:00,301 12th St, Atlanta,GA,30301 +209006,AAA Batteries (4-pack),1,2.99,2019-05-15 14:40:00,452 Elm St, San Francisco,CA,94016 +209007,27in FHD Monitor,1,149.99,2019-05-11 22:29:00,618 Jefferson St, San Francisco,CA,94016 +209008,Lightning Charging Cable,1,14.95,2019-05-10 10:22:00,93 Park St, Los Angeles,CA,90001 +209009,AA Batteries (4-pack),2,3.84,2019-05-24 08:06:00,716 South St, Los Angeles,CA,90001 +209010,27in FHD Monitor,1,149.99,2019-05-20 11:02:00,146 Jefferson St, Dallas,TX,75001 +209011,AAA Batteries (4-pack),2,2.99,2019-05-20 10:50:00,145 Lakeview St, Boston,MA,02215 +209012,Bose SoundSport Headphones,1,99.99,2019-05-19 10:47:00,874 North St, New York City,NY,10001 +209013,Apple Airpods Headphones,1,150.0,2019-05-17 01:21:00,657 Hill St, San Francisco,CA,94016 +209014,Lightning Charging Cable,1,14.95,2019-05-30 06:36:00,948 9th St, Dallas,TX,75001 +209015,Apple Airpods Headphones,1,150.0,2019-05-13 21:22:00,701 Maple St, Dallas,TX,75001 +209016,AAA Batteries (4-pack),1,2.99,2019-05-19 14:31:00,225 4th St, Atlanta,GA,30301 +209017,Macbook Pro Laptop,1,1700.0,2019-05-15 19:10:00,492 South St, Atlanta,GA,30301 +209018,USB-C Charging Cable,1,11.95,2019-05-24 12:27:00,820 Cedar St, Portland,OR,97035 +209019,Wired Headphones,1,11.99,2019-05-23 00:30:00,300 Lakeview St, Dallas,TX,75001 +209020,AAA Batteries (4-pack),1,2.99,2019-05-27 15:05:00,731 Ridge St, Dallas,TX,75001 +209021,AA Batteries (4-pack),1,3.84,2019-05-13 18:56:00,786 Church St, Portland,ME,04101 +209022,ThinkPad Laptop,1,999.99,2019-05-18 13:38:00,256 Forest St, New York City,NY,10001 +209023,AAA Batteries (4-pack),1,2.99,2019-05-04 14:53:00,65 Washington St, Boston,MA,02215 +209024,Wired Headphones,1,11.99,2019-05-27 05:27:00,540 Cedar St, San Francisco,CA,94016 +209025,Bose SoundSport Headphones,1,99.99,2019-05-19 21:33:00,837 Main St, New York City,NY,10001 +209026,AA Batteries (4-pack),2,3.84,2019-05-20 14:06:00,860 2nd St, Los Angeles,CA,90001 +209027,AAA Batteries (4-pack),1,2.99,2019-05-13 10:49:00,52 North St, Los Angeles,CA,90001 +209028,34in Ultrawide Monitor,1,379.99,2019-05-20 16:39:00,298 Forest St, Seattle,WA,98101 +209029,USB-C Charging Cable,1,11.95,2019-05-04 15:01:00,467 Willow St, Seattle,WA,98101 +209030,34in Ultrawide Monitor,1,379.99,2019-05-06 06:31:00,985 10th St, Portland,OR,97035 +209031,AAA Batteries (4-pack),1,2.99,2019-05-22 13:40:00,142 North St, Atlanta,GA,30301 +209032,Wired Headphones,1,11.99,2019-05-07 09:10:00,985 2nd St, New York City,NY,10001 +209033,Lightning Charging Cable,2,14.95,2019-05-22 15:15:00,845 9th St, Seattle,WA,98101 +209034,20in Monitor,1,109.99,2019-05-17 19:40:00,447 Lakeview St, Seattle,WA,98101 +209035,20in Monitor,1,109.99,2019-05-27 15:57:00,631 Forest St, Seattle,WA,98101 +209036,AA Batteries (4-pack),1,3.84,2019-05-06 16:56:00,633 1st St, Atlanta,GA,30301 +209037,Wired Headphones,1,11.99,2019-05-25 22:18:00,474 Lincoln St, Dallas,TX,75001 +209038,USB-C Charging Cable,2,11.95,2019-05-03 23:09:00,689 Spruce St, San Francisco,CA,94016 +209039,USB-C Charging Cable,1,11.95,2019-05-30 12:10:00,375 South St, Austin,TX,73301 +209039,Apple Airpods Headphones,1,150.0,2019-05-30 12:10:00,375 South St, Austin,TX,73301 +209040,AA Batteries (4-pack),1,3.84,2019-05-28 11:41:00,86 2nd St, New York City,NY,10001 +209041,AAA Batteries (4-pack),1,2.99,2019-05-30 19:30:00,19 Chestnut St, New York City,NY,10001 +209042,Wired Headphones,1,11.99,2019-05-19 23:31:00,716 River St, Boston,MA,02215 +209043,AAA Batteries (4-pack),2,2.99,2019-05-31 07:56:00,404 Jackson St, Los Angeles,CA,90001 +209044,USB-C Charging Cable,1,11.95,2019-05-31 20:40:00,292 8th St, San Francisco,CA,94016 +209045,27in FHD Monitor,1,149.99,2019-05-02 17:00:00,854 Washington St, Dallas,TX,75001 +209046,USB-C Charging Cable,1,11.95,2019-05-12 22:31:00,731 Dogwood St, Dallas,TX,75001 +209047,Google Phone,1,600.0,2019-05-29 17:42:00,731 8th St, Los Angeles,CA,90001 +209048,AAA Batteries (4-pack),1,2.99,2019-05-20 11:59:00,504 South St, Los Angeles,CA,90001 +209049,Lightning Charging Cable,1,14.95,2019-05-06 16:53:00,678 Lake St, San Francisco,CA,94016 +209050,USB-C Charging Cable,1,11.95,2019-05-04 13:04:00,345 Jackson St, Boston,MA,02215 +209051,Bose SoundSport Headphones,1,99.99,2019-05-26 15:51:00,253 Forest St, San Francisco,CA,94016 +209052,Bose SoundSport Headphones,1,99.99,2019-05-05 22:08:00,674 Lake St, San Francisco,CA,94016 +209053,Wired Headphones,1,11.99,2019-05-10 19:14:00,114 Hill St, San Francisco,CA,94016 +209054,Lightning Charging Cable,1,14.95,2019-05-20 16:35:00,2 10th St, San Francisco,CA,94016 +209055,Flatscreen TV,1,300.0,2019-05-10 17:27:00,421 Main St, Boston,MA,02215 +209056,Apple Airpods Headphones,1,150.0,2019-05-22 21:15:00,850 Madison St, Seattle,WA,98101 +209057,Apple Airpods Headphones,1,150.0,2019-05-25 10:44:00,434 14th St, Dallas,TX,75001 +209058,AAA Batteries (4-pack),1,2.99,2019-05-12 10:54:00,467 Sunset St, Portland,OR,97035 +209059,AAA Batteries (4-pack),1,2.99,2019-05-15 21:27:00,727 Lincoln St, Seattle,WA,98101 +209060,Flatscreen TV,1,300.0,2019-05-26 17:52:00,189 1st St, Atlanta,GA,30301 +209061,Lightning Charging Cable,1,14.95,2019-05-22 12:41:00,986 Cherry St, San Francisco,CA,94016 +209062,Bose SoundSport Headphones,1,99.99,2019-05-18 13:16:00,295 Meadow St, San Francisco,CA,94016 +209063,Lightning Charging Cable,1,14.95,2019-05-11 19:21:00,692 5th St, Portland,OR,97035 +209064,Bose SoundSport Headphones,1,99.99,2019-05-24 21:21:00,376 Maple St, Dallas,TX,75001 +209065,Macbook Pro Laptop,1,1700.0,2019-05-06 12:22:00,443 Hickory St, San Francisco,CA,94016 +209066,AA Batteries (4-pack),1,3.84,2019-05-25 21:41:00,395 Jefferson St, Seattle,WA,98101 +209067,27in FHD Monitor,1,149.99,2019-05-11 13:37:00,675 13th St, Boston,MA,02215 +209068,ThinkPad Laptop,1,999.99,2019-05-06 14:18:00,448 Meadow St, Portland,OR,97035 +209069,20in Monitor,1,109.99,2019-05-27 14:47:00,953 Forest St, Portland,OR,97035 +209070,Lightning Charging Cable,1,14.95,2019-05-12 00:13:00,945 South St, Portland,OR,97035 +209070,Bose SoundSport Headphones,1,99.99,2019-05-12 00:13:00,945 South St, Portland,OR,97035 +209071,Apple Airpods Headphones,1,150.0,2019-05-17 21:19:00,689 Jackson St, Los Angeles,CA,90001 +209072,AAA Batteries (4-pack),1,2.99,2019-05-22 16:36:00,632 Elm St, Dallas,TX,75001 +209073,iPhone,1,700.0,2019-05-03 16:10:00,844 Pine St, San Francisco,CA,94016 +209073,Lightning Charging Cable,1,14.95,2019-05-03 16:10:00,844 Pine St, San Francisco,CA,94016 +209074,AA Batteries (4-pack),1,3.84,2019-05-23 17:43:00,764 11th St, New York City,NY,10001 +209074,Apple Airpods Headphones,1,150.0,2019-05-23 17:43:00,764 11th St, New York City,NY,10001 +209075,Bose SoundSport Headphones,1,99.99,2019-05-27 23:32:00,52 9th St, San Francisco,CA,94016 +209076,AA Batteries (4-pack),1,3.84,2019-05-25 14:05:00,798 Jefferson St, San Francisco,CA,94016 +209077,Flatscreen TV,1,300.0,2019-05-04 01:45:00,461 Johnson St, Boston,MA,02215 +209078,iPhone,1,700.0,2019-05-03 17:57:00,787 Meadow St, San Francisco,CA,94016 +209079,27in 4K Gaming Monitor,1,389.99,2019-05-09 14:40:00,596 Church St, San Francisco,CA,94016 +209080,Wired Headphones,1,11.99,2019-05-04 20:49:00,423 Chestnut St, San Francisco,CA,94016 +209081,iPhone,1,700.0,2019-05-03 19:40:00,459 12th St, Boston,MA,02215 +209082,AAA Batteries (4-pack),1,2.99,2019-05-03 07:09:00,790 Dogwood St, New York City,NY,10001 +209083,34in Ultrawide Monitor,1,379.99,2019-05-17 09:18:00,797 Jefferson St, Dallas,TX,75001 +209084,AA Batteries (4-pack),1,3.84,2019-05-22 18:53:00,816 2nd St, Dallas,TX,75001 +209085,AAA Batteries (4-pack),1,2.99,2019-05-21 19:25:00,580 Lincoln St, Seattle,WA,98101 +209086,Vareebadd Phone,1,400.0,2019-05-28 21:55:00,137 Wilson St, Atlanta,GA,30301 +209087,Bose SoundSport Headphones,1,99.99,2019-05-22 12:32:00,423 Highland St, Atlanta,GA,30301 +209088,iPhone,1,700.0,2019-05-13 08:25:00,363 Park St, New York City,NY,10001 +209089,USB-C Charging Cable,1,11.95,2019-05-05 11:55:00,621 2nd St, Los Angeles,CA,90001 +209090,iPhone,1,700.0,2019-05-13 10:51:00,18 11th St, Los Angeles,CA,90001 +209091,20in Monitor,1,109.99,2019-05-12 18:05:00,315 West St, New York City,NY,10001 +209092,Lightning Charging Cable,1,14.95,2019-05-23 10:05:00,201 Lakeview St, Portland,OR,97035 +209093,Apple Airpods Headphones,1,150.0,2019-05-05 14:07:00,137 North St, San Francisco,CA,94016 +209094,Lightning Charging Cable,1,14.95,2019-05-02 22:53:00,808 9th St, New York City,NY,10001 +209095,AAA Batteries (4-pack),1,2.99,2019-05-08 19:12:00,794 Center St, Boston,MA,02215 +209096,Lightning Charging Cable,1,14.95,2019-05-29 22:30:00,866 Jefferson St, San Francisco,CA,94016 +209097,USB-C Charging Cable,1,11.95,2019-05-27 19:41:00,669 Adams St, San Francisco,CA,94016 +209098,Macbook Pro Laptop,1,1700.0,2019-05-10 22:29:00,859 Washington St, New York City,NY,10001 +209099,Lightning Charging Cable,1,14.95,2019-05-29 11:23:00,698 Willow St, Dallas,TX,75001 +209100,Lightning Charging Cable,2,14.95,2019-05-17 20:05:00,893 Cherry St, Los Angeles,CA,90001 +209101,Apple Airpods Headphones,1,150.0,2019-05-02 19:47:00,991 North St, Austin,TX,73301 +209102,AA Batteries (4-pack),1,3.84,2019-05-07 20:08:00,705 Jefferson St, Boston,MA,02215 +209102,Lightning Charging Cable,1,14.95,2019-05-07 20:08:00,705 Jefferson St, Boston,MA,02215 +209103,Wired Headphones,1,11.99,2019-05-10 15:01:00,412 Wilson St, San Francisco,CA,94016 +209104,Wired Headphones,1,11.99,2019-05-10 11:26:00,799 Chestnut St, San Francisco,CA,94016 +209105,iPhone,1,700.0,2019-05-16 23:32:00,610 Washington St, Los Angeles,CA,90001 +209106,Google Phone,1,600.0,2019-05-21 21:28:00,289 Hickory St, Boston,MA,02215 +209107,20in Monitor,1,109.99,2019-05-01 11:07:00,971 Hill St, San Francisco,CA,94016 +209108,Lightning Charging Cable,1,14.95,2019-05-14 19:54:00,551 Lakeview St, Boston,MA,02215 +209109,Bose SoundSport Headphones,1,99.99,2019-05-08 13:07:00,127 Lakeview St, New York City,NY,10001 +209110,Flatscreen TV,1,300.0,2019-05-25 19:33:00,803 Sunset St, San Francisco,CA,94016 +209111,34in Ultrawide Monitor,1,379.99,2019-05-04 23:08:00,433 Willow St, San Francisco,CA,94016 +209112,34in Ultrawide Monitor,1,379.99,2019-05-15 00:53:00,616 7th St, Boston,MA,02215 +209113,Wired Headphones,1,11.99,2019-05-29 09:33:00,49 Lake St, Los Angeles,CA,90001 +209114,ThinkPad Laptop,1,999.99,2019-05-28 16:43:00,590 Chestnut St, New York City,NY,10001 +209115,27in FHD Monitor,1,149.99,2019-05-20 21:53:00,301 Meadow St, New York City,NY,10001 +209116,Apple Airpods Headphones,1,150.0,2019-05-14 15:33:00,793 10th St, San Francisco,CA,94016 +209117,AA Batteries (4-pack),2,3.84,2019-05-16 20:45:00,244 11th St, Seattle,WA,98101 +209118,USB-C Charging Cable,1,11.95,2019-05-29 16:56:00,953 1st St, Dallas,TX,75001 +209119,USB-C Charging Cable,2,11.95,2019-05-16 18:22:00,17 Madison St, Atlanta,GA,30301 +209120,Google Phone,1,600.0,2019-05-25 00:54:00,283 6th St, Austin,TX,73301 +209121,27in 4K Gaming Monitor,1,389.99,2019-05-04 17:23:00,863 Hickory St, Dallas,TX,75001 +209122,USB-C Charging Cable,1,11.95,2019-05-22 21:04:00,119 Adams St, Atlanta,GA,30301 +209123,20in Monitor,1,109.99,2019-05-07 09:47:00,987 Washington St, Los Angeles,CA,90001 +209124,20in Monitor,1,109.99,2019-05-12 15:13:00,581 Washington St, Dallas,TX,75001 +209125,34in Ultrawide Monitor,1,379.99,2019-05-11 08:09:00,817 11th St, Boston,MA,02215 +209126,Wired Headphones,1,11.99,2019-05-18 20:11:00,191 Hill St, Los Angeles,CA,90001 +209127,34in Ultrawide Monitor,1,379.99,2019-05-01 07:09:00,865 Wilson St, San Francisco,CA,94016 +209128,AAA Batteries (4-pack),4,2.99,2019-05-16 08:24:00,178 Forest St, Boston,MA,02215 +209129,20in Monitor,1,109.99,2019-05-17 00:47:00,335 South St, Los Angeles,CA,90001 +209130,Wired Headphones,1,11.99,2019-05-20 16:51:00,662 River St, New York City,NY,10001 +209131,34in Ultrawide Monitor,1,379.99,2019-05-21 23:41:00,955 Forest St, Dallas,TX,75001 +209132,iPhone,1,700.0,2019-05-12 16:24:00,310 11th St, Los Angeles,CA,90001 +209132,Lightning Charging Cable,1,14.95,2019-05-12 16:24:00,310 11th St, Los Angeles,CA,90001 +209133,Macbook Pro Laptop,1,1700.0,2019-05-30 12:25:00,849 Chestnut St, San Francisco,CA,94016 +209134,Lightning Charging Cable,1,14.95,2019-05-23 17:35:00,532 North St, San Francisco,CA,94016 +209135,Apple Airpods Headphones,1,150.0,2019-05-20 02:26:00,351 Park St, Boston,MA,02215 +209136,Wired Headphones,2,11.99,2019-05-17 09:57:00,762 7th St, Seattle,WA,98101 +209137,Lightning Charging Cable,1,14.95,2019-05-05 13:36:00,52 2nd St, Dallas,TX,75001 +209138,Wired Headphones,1,11.99,2019-05-31 12:09:00,587 Hill St, Portland,OR,97035 +209139,iPhone,1,700.0,2019-05-28 20:06:00,571 Highland St, New York City,NY,10001 +209140,27in FHD Monitor,1,149.99,2019-05-10 13:19:00,324 North St, San Francisco,CA,94016 +209141,Apple Airpods Headphones,1,150.0,2019-05-19 06:48:00,430 Sunset St, Seattle,WA,98101 +209142,AAA Batteries (4-pack),2,2.99,2019-05-04 13:01:00,697 Hickory St, Atlanta,GA,30301 +209143,27in 4K Gaming Monitor,1,389.99,2019-05-17 15:54:00,292 Ridge St, San Francisco,CA,94016 +209144,34in Ultrawide Monitor,1,379.99,2019-05-06 16:27:00,540 Main St, Austin,TX,73301 +209145,Wired Headphones,1,11.99,2019-05-20 16:37:00,325 Main St, Los Angeles,CA,90001 +209146,Lightning Charging Cable,1,14.95,2019-05-12 11:39:00,123 11th St, San Francisco,CA,94016 +209147,Wired Headphones,1,11.99,2019-05-12 12:51:00,420 Cedar St, San Francisco,CA,94016 +209148,34in Ultrawide Monitor,1,379.99,2019-05-30 14:25:00,131 Main St, San Francisco,CA,94016 +209149,AA Batteries (4-pack),1,3.84,2019-05-12 14:45:00,942 Dogwood St, New York City,NY,10001 +209150,Macbook Pro Laptop,1,1700.0,2019-05-17 17:43:00,101 11th St, San Francisco,CA,94016 +209151,USB-C Charging Cable,1,11.95,2019-05-07 14:55:00,92 Cherry St, New York City,NY,10001 +209152,Wired Headphones,1,11.99,2019-05-05 09:55:00,51 Church St, Boston,MA,02215 +209153,ThinkPad Laptop,1,999.99,2019-05-28 17:03:00,349 Pine St, Austin,TX,73301 +209154,Flatscreen TV,1,300.0,2019-05-08 12:07:00,45 Wilson St, Portland,OR,97035 +209155,Bose SoundSport Headphones,1,99.99,2019-05-28 08:12:00,375 Walnut St, San Francisco,CA,94016 +209156,AAA Batteries (4-pack),3,2.99,2019-05-07 19:44:00,116 Hickory St, San Francisco,CA,94016 +209157,AA Batteries (4-pack),1,3.84,2019-05-31 06:18:00,439 Maple St, Dallas,TX,75001 +209158,iPhone,1,700.0,2019-05-28 08:11:00,458 7th St, San Francisco,CA,94016 +209159,Google Phone,1,600.0,2019-05-12 10:37:00,29 12th St, New York City,NY,10001 +209159,USB-C Charging Cable,1,11.95,2019-05-12 10:37:00,29 12th St, New York City,NY,10001 +209160,USB-C Charging Cable,1,11.95,2019-05-07 22:47:00,649 9th St, New York City,NY,10001 +209161,Google Phone,1,600.0,2019-05-30 14:10:00,912 River St, Austin,TX,73301 +209161,USB-C Charging Cable,1,11.95,2019-05-30 14:10:00,912 River St, Austin,TX,73301 +209162,AAA Batteries (4-pack),1,2.99,2019-05-24 10:59:00,435 Main St, Austin,TX,73301 +209163,Bose SoundSport Headphones,1,99.99,2019-05-10 06:25:00,851 6th St, New York City,NY,10001 +209164,Wired Headphones,1,11.99,2019-05-08 11:08:00,539 1st St, San Francisco,CA,94016 +209165,USB-C Charging Cable,1,11.95,2019-05-21 22:57:00,437 7th St, Atlanta,GA,30301 +209166,AAA Batteries (4-pack),2,2.99,2019-05-18 19:07:00,103 Hickory St, San Francisco,CA,94016 +209167,27in 4K Gaming Monitor,1,389.99,2019-05-07 20:35:00,963 Hickory St, San Francisco,CA,94016 +209168,27in FHD Monitor,1,149.99,2019-05-15 17:44:00,563 13th St, San Francisco,CA,94016 +209169,34in Ultrawide Monitor,1,379.99,2019-05-06 11:25:00,309 Center St, New York City,NY,10001 +209170,AA Batteries (4-pack),1,3.84,2019-05-19 22:59:00,7 Forest St, Los Angeles,CA,90001 +209171,Apple Airpods Headphones,1,150.0,2019-05-24 18:27:00,897 6th St, Atlanta,GA,30301 +209172,Bose SoundSport Headphones,1,99.99,2019-05-04 12:15:00,260 Hickory St, San Francisco,CA,94016 +209173,Wired Headphones,1,11.99,2019-05-21 14:25:00,835 12th St, San Francisco,CA,94016 +209174,Lightning Charging Cable,1,14.95,2019-05-09 15:19:00,928 Lake St, Seattle,WA,98101 +209175,AAA Batteries (4-pack),1,2.99,2019-05-03 18:22:00,327 13th St, San Francisco,CA,94016 +209176,Lightning Charging Cable,1,14.95,2019-05-14 23:25:00,346 Church St, Dallas,TX,75001 +209177,Lightning Charging Cable,2,14.95,2019-05-07 13:24:00,409 Sunset St, San Francisco,CA,94016 +209178,Lightning Charging Cable,1,14.95,2019-05-26 16:00:00,237 Chestnut St, Atlanta,GA,30301 +209179,Google Phone,1,600.0,2019-05-07 22:56:00,757 Cherry St, New York City,NY,10001 +209180,Lightning Charging Cable,1,14.95,2019-05-27 07:53:00,799 12th St, Boston,MA,02215 +209181,AA Batteries (4-pack),1,3.84,2019-05-17 18:32:00,556 Center St, Atlanta,GA,30301 +209182,AAA Batteries (4-pack),1,2.99,2019-05-07 12:30:00,499 River St, Los Angeles,CA,90001 +209183,USB-C Charging Cable,1,11.95,2019-05-04 11:53:00,515 South St, San Francisco,CA,94016 +209184,AAA Batteries (4-pack),2,2.99,2019-05-09 17:43:00,184 North St, San Francisco,CA,94016 +209185,AAA Batteries (4-pack),3,2.99,2019-05-21 08:58:00,465 Cedar St, San Francisco,CA,94016 +209186,USB-C Charging Cable,1,11.95,2019-05-02 18:49:00,394 10th St, Los Angeles,CA,90001 +209187,Apple Airpods Headphones,1,150.0,2019-05-20 17:26:00,897 North St, Los Angeles,CA,90001 +209188,Wired Headphones,1,11.99,2019-05-07 13:14:00,706 Cedar St, San Francisco,CA,94016 +209189,AA Batteries (4-pack),1,3.84,2019-05-26 16:13:00,760 River St, Los Angeles,CA,90001 +209190,Google Phone,1,600.0,2019-05-19 04:24:00,123 Cherry St, Atlanta,GA,30301 +209190,Wired Headphones,1,11.99,2019-05-19 04:24:00,123 Cherry St, Atlanta,GA,30301 +209191,AAA Batteries (4-pack),1,2.99,2019-05-15 08:28:00,36 Lakeview St, Seattle,WA,98101 +209192,Apple Airpods Headphones,1,150.0,2019-05-17 17:59:00,938 14th St, Seattle,WA,98101 +209193,LG Dryer,1,600.0,2019-05-04 20:47:00,158 Lincoln St, Los Angeles,CA,90001 +209194,Macbook Pro Laptop,1,1700.0,2019-05-20 23:02:00,679 Dogwood St, Dallas,TX,75001 +209195,AA Batteries (4-pack),1,3.84,2019-05-21 12:51:00,222 Lakeview St, Portland,OR,97035 +209196,AAA Batteries (4-pack),1,2.99,2019-05-30 21:25:00,938 Maple St, Seattle,WA,98101 +209197,USB-C Charging Cable,1,11.95,2019-05-11 21:03:00,658 West St, Los Angeles,CA,90001 +209198,27in FHD Monitor,1,149.99,2019-05-14 23:32:00,321 Chestnut St, Dallas,TX,75001 +209199,USB-C Charging Cable,1,11.95,2019-05-04 09:32:00,786 Lincoln St, San Francisco,CA,94016 +209200,Macbook Pro Laptop,1,1700.0,2019-05-21 12:42:00,323 Wilson St, San Francisco,CA,94016 +209201,AAA Batteries (4-pack),1,2.99,2019-05-09 21:23:00,770 Maple St, Boston,MA,02215 +209202,Macbook Pro Laptop,1,1700.0,2019-05-22 10:31:00,115 Main St, Portland,OR,97035 +209203,Lightning Charging Cable,1,14.95,2019-05-24 12:38:00,283 Wilson St, Boston,MA,02215 +209204,USB-C Charging Cable,1,11.95,2019-05-10 17:44:00,887 10th St, Seattle,WA,98101 +209205,Wired Headphones,1,11.99,2019-05-06 21:24:00,493 Park St, San Francisco,CA,94016 +209206,20in Monitor,1,109.99,2019-05-19 19:33:00,435 11th St, Boston,MA,02215 +209206,Lightning Charging Cable,1,14.95,2019-05-19 19:33:00,435 11th St, Boston,MA,02215 +209207,Apple Airpods Headphones,1,150.0,2019-05-02 12:24:00,34 Wilson St, San Francisco,CA,94016 +209208,Wired Headphones,1,11.99,2019-05-08 19:27:00,906 Wilson St, San Francisco,CA,94016 +209209,LG Washing Machine,1,600.0,2019-05-24 18:58:00,452 Adams St, New York City,NY,10001 +209210,AA Batteries (4-pack),3,3.84,2019-05-06 12:11:00,730 Dogwood St, San Francisco,CA,94016 +209211,34in Ultrawide Monitor,1,379.99,2019-05-16 13:29:00,261 1st St, Seattle,WA,98101 +209212,Wired Headphones,1,11.99,2019-05-03 13:44:00,629 Cherry St, Atlanta,GA,30301 +209213,AA Batteries (4-pack),1,3.84,2019-05-20 21:39:00,975 Center St, Boston,MA,02215 +209214,AA Batteries (4-pack),2,3.84,2019-05-08 23:58:00,276 Jefferson St, New York City,NY,10001 +209215,Apple Airpods Headphones,1,150.0,2019-05-02 22:42:00,875 Forest St, New York City,NY,10001 +209216,27in 4K Gaming Monitor,1,389.99,2019-05-21 17:08:00,760 North St, Seattle,WA,98101 +209217,27in 4K Gaming Monitor,1,389.99,2019-05-14 10:08:00,326 Lakeview St, Boston,MA,02215 +209217,ThinkPad Laptop,1,999.99,2019-05-14 10:08:00,326 Lakeview St, Boston,MA,02215 +209218,27in FHD Monitor,1,149.99,2019-05-11 10:41:00,210 Park St, Los Angeles,CA,90001 +209219,AA Batteries (4-pack),1,3.84,2019-05-22 12:28:00,823 West St, Atlanta,GA,30301 +209220,Lightning Charging Cable,1,14.95,2019-05-20 07:34:00,57 North St, Dallas,TX,75001 +209221,Bose SoundSport Headphones,1,99.99,2019-05-04 21:12:00,46 River St, Dallas,TX,75001 +209222,USB-C Charging Cable,1,11.95,2019-05-30 21:44:00,830 Lake St, San Francisco,CA,94016 +209223,Apple Airpods Headphones,1,150.0,2019-05-31 23:30:00,154 14th St, San Francisco,CA,94016 +209224,Macbook Pro Laptop,1,1700.0,2019-05-27 21:21:00,261 Jefferson St, San Francisco,CA,94016 +209225,Bose SoundSport Headphones,1,99.99,2019-05-03 13:22:00,437 14th St, San Francisco,CA,94016 +209226,USB-C Charging Cable,1,11.95,2019-05-25 17:47:00,490 13th St, San Francisco,CA,94016 +209227,Lightning Charging Cable,1,14.95,2019-05-30 20:46:00,613 Forest St, Atlanta,GA,30301 +209228,USB-C Charging Cable,1,11.95,2019-05-22 10:10:00,34 Jefferson St, San Francisco,CA,94016 +209229,AA Batteries (4-pack),1,3.84,2019-05-27 22:43:00,58 11th St, Portland,OR,97035 +209230,Lightning Charging Cable,1,14.95,2019-05-18 01:20:00,661 9th St, New York City,NY,10001 +209231,AA Batteries (4-pack),2,3.84,2019-05-20 16:27:00,433 Jefferson St, San Francisco,CA,94016 +209232,Macbook Pro Laptop,1,1700.0,2019-05-22 08:32:00,298 Wilson St, New York City,NY,10001 +209233,AAA Batteries (4-pack),1,2.99,2019-05-22 18:47:00,540 South St, Los Angeles,CA,90001 +209234,Bose SoundSport Headphones,1,99.99,2019-05-14 11:17:00,16 West St, San Francisco,CA,94016 +209235,Google Phone,1,600.0,2019-05-10 05:36:00,664 Washington St, Los Angeles,CA,90001 +209235,USB-C Charging Cable,1,11.95,2019-05-10 05:36:00,664 Washington St, Los Angeles,CA,90001 +209235,Wired Headphones,1,11.99,2019-05-10 05:36:00,664 Washington St, Los Angeles,CA,90001 +209236,Flatscreen TV,1,300.0,2019-05-11 00:05:00,442 13th St, Los Angeles,CA,90001 +209237,USB-C Charging Cable,2,11.95,2019-05-09 23:18:00,548 Elm St, New York City,NY,10001 +209238,Lightning Charging Cable,1,14.95,2019-05-01 12:02:00,400 Lake St, San Francisco,CA,94016 +209239,AA Batteries (4-pack),1,3.84,2019-05-31 14:55:00,667 Chestnut St, Austin,TX,73301 +209240,Vareebadd Phone,1,400.0,2019-05-01 17:57:00,451 Hill St, San Francisco,CA,94016 +209241,iPhone,1,700.0,2019-05-20 21:44:00,426 2nd St, Los Angeles,CA,90001 +209241,Lightning Charging Cable,1,14.95,2019-05-20 21:44:00,426 2nd St, Los Angeles,CA,90001 +209242,USB-C Charging Cable,1,11.95,2019-05-11 17:40:00,508 Meadow St, Dallas,TX,75001 +209243,Flatscreen TV,1,300.0,2019-05-30 17:21:00,65 11th St, San Francisco,CA,94016 +209244,Flatscreen TV,1,300.0,2019-05-24 12:15:00,226 10th St, Boston,MA,02215 +209245,AAA Batteries (4-pack),2,2.99,2019-05-12 09:22:00,144 Lincoln St, Los Angeles,CA,90001 +209246,27in 4K Gaming Monitor,1,389.99,2019-05-05 18:36:00,828 Cherry St, Seattle,WA,98101 +209247,USB-C Charging Cable,2,11.95,2019-05-01 22:11:00,274 Meadow St, New York City,NY,10001 +209248,USB-C Charging Cable,2,11.95,2019-05-24 13:49:00,865 Madison St, New York City,NY,10001 +209249,USB-C Charging Cable,1,11.95,2019-05-04 13:29:00,47 Chestnut St, Los Angeles,CA,90001 +209250,Apple Airpods Headphones,1,150.0,2019-05-28 11:02:00,547 Forest St, Dallas,TX,75001 +209251,AA Batteries (4-pack),1,3.84,2019-05-08 15:17:00,187 Madison St, Portland,OR,97035 +209252,Bose SoundSport Headphones,1,99.99,2019-05-09 09:29:00,653 Jefferson St, Dallas,TX,75001 +209253,LG Dryer,1,600.0,2019-05-14 07:50:00,2 13th St, Boston,MA,02215 +209254,USB-C Charging Cable,1,11.95,2019-05-06 00:00:00,248 Jefferson St, San Francisco,CA,94016 +209255,Lightning Charging Cable,1,14.95,2019-05-19 09:47:00,158 1st St, Austin,TX,73301 +209256,Wired Headphones,1,11.99,2019-05-10 13:53:00,210 Johnson St, San Francisco,CA,94016 +209257,USB-C Charging Cable,1,11.95,2019-05-09 09:23:00,659 Hill St, Portland,ME,04101 +209258,Vareebadd Phone,1,400.0,2019-05-17 00:55:00,227 1st St, San Francisco,CA,94016 +209259,Wired Headphones,1,11.99,2019-05-08 21:40:00,748 Jefferson St, Atlanta,GA,30301 +209260,AAA Batteries (4-pack),1,2.99,2019-05-18 19:21:00,432 Ridge St, New York City,NY,10001 +209261,AA Batteries (4-pack),2,3.84,2019-05-07 13:48:00,183 Cedar St, Austin,TX,73301 +209262,AA Batteries (4-pack),1,3.84,2019-05-21 18:22:00,276 Walnut St, New York City,NY,10001 +209263,Apple Airpods Headphones,1,150.0,2019-05-10 13:56:00,675 West St, San Francisco,CA,94016 +209264,Apple Airpods Headphones,1,150.0,2019-05-09 18:42:00,974 5th St, Atlanta,GA,30301 +209265,Flatscreen TV,1,300.0,2019-05-23 11:51:00,441 Cedar St, Atlanta,GA,30301 +209266,Wired Headphones,1,11.99,2019-05-09 11:22:00,112 Adams St, Seattle,WA,98101 +209267,AAA Batteries (4-pack),1,2.99,2019-05-21 10:25:00,712 11th St, New York City,NY,10001 +209268,AAA Batteries (4-pack),2,2.99,2019-05-31 20:26:00,905 5th St, Portland,ME,04101 +209269,iPhone,1,700.0,2019-05-20 14:11:00,981 River St, San Francisco,CA,94016 +209269,Lightning Charging Cable,1,14.95,2019-05-20 14:11:00,981 River St, San Francisco,CA,94016 +209269,AA Batteries (4-pack),3,3.84,2019-05-20 14:11:00,981 River St, San Francisco,CA,94016 +209270,Lightning Charging Cable,1,14.95,2019-05-23 21:53:00,491 Madison St, Seattle,WA,98101 +209271,34in Ultrawide Monitor,1,379.99,2019-05-23 14:36:00,195 Lake St, New York City,NY,10001 +209272,AAA Batteries (4-pack),1,2.99,2019-05-16 11:28:00,889 Lake St, New York City,NY,10001 +209273,AA Batteries (4-pack),1,3.84,2019-05-15 12:45:00,911 Wilson St, New York City,NY,10001 +209274,Apple Airpods Headphones,1,150.0,2019-05-18 12:46:00,701 Church St, San Francisco,CA,94016 +209275,AAA Batteries (4-pack),1,2.99,2019-05-24 17:47:00,814 Meadow St, Los Angeles,CA,90001 +209276,AAA Batteries (4-pack),1,2.99,2019-05-27 11:23:00,115 7th St, San Francisco,CA,94016 +209277,USB-C Charging Cable,1,11.95,2019-05-27 20:28:00,486 Willow St, Los Angeles,CA,90001 +209278,34in Ultrawide Monitor,1,379.99,2019-05-28 15:42:00,721 Highland St, Dallas,TX,75001 +209279,27in 4K Gaming Monitor,1,389.99,2019-05-27 12:41:00,754 11th St, San Francisco,CA,94016 +209280,iPhone,1,700.0,2019-05-09 20:43:00,998 6th St, Boston,MA,02215 +209281,AAA Batteries (4-pack),1,2.99,2019-05-13 22:43:00,185 5th St, Seattle,WA,98101 +209282,Lightning Charging Cable,2,14.95,2019-05-27 11:40:00,164 6th St, San Francisco,CA,94016 +209283,Wired Headphones,1,11.99,2019-05-26 08:49:00,318 Hill St, Los Angeles,CA,90001 +209284,Lightning Charging Cable,1,14.95,2019-05-19 03:32:00,49 Willow St, Boston,MA,02215 +209285,Lightning Charging Cable,1,14.95,2019-05-18 13:48:00,540 Jefferson St, San Francisco,CA,94016 +209286,AA Batteries (4-pack),1,3.84,2019-05-09 12:27:00,390 8th St, Boston,MA,02215 +209287,AA Batteries (4-pack),1,3.84,2019-05-21 17:54:00,342 Dogwood St, Dallas,TX,75001 +209288,AAA Batteries (4-pack),1,2.99,2019-05-25 19:45:00,889 12th St, Austin,TX,73301 +209289,AAA Batteries (4-pack),1,2.99,2019-05-31 11:00:00,362 Meadow St, Portland,OR,97035 +209290,ThinkPad Laptop,1,999.99,2019-05-03 21:13:00,360 Sunset St, Austin,TX,73301 +209291,USB-C Charging Cable,1,11.95,2019-05-21 21:45:00,517 Washington St, San Francisco,CA,94016 +209292,AA Batteries (4-pack),2,3.84,2019-05-05 18:05:00,852 Cedar St, Dallas,TX,75001 +209293,Wired Headphones,1,11.99,2019-05-28 19:43:00,203 Cedar St, Boston,MA,02215 +209294,AA Batteries (4-pack),1,3.84,2019-05-28 22:07:00,934 Johnson St, Seattle,WA,98101 +209295,27in 4K Gaming Monitor,1,389.99,2019-05-06 17:32:00,701 Meadow St, Seattle,WA,98101 +209296,Wired Headphones,1,11.99,2019-05-19 20:37:00,980 Lake St, New York City,NY,10001 +209297,Wired Headphones,1,11.99,2019-05-05 21:07:00,125 Maple St, San Francisco,CA,94016 +209298,Macbook Pro Laptop,1,1700.0,2019-05-06 14:07:00,436 6th St, Los Angeles,CA,90001 +209299,AA Batteries (4-pack),1,3.84,2019-05-11 20:39:00,88 Hickory St, Portland,OR,97035 +209300,Lightning Charging Cable,1,14.95,2019-05-03 17:10:00,187 Cedar St, New York City,NY,10001 +209301,27in 4K Gaming Monitor,1,389.99,2019-05-19 11:35:00,112 West St, New York City,NY,10001 +209302,Wired Headphones,1,11.99,2019-05-15 18:48:00,890 Pine St, Portland,OR,97035 +209303,Flatscreen TV,1,300.0,2019-05-06 12:26:00,815 Elm St, San Francisco,CA,94016 +209304,USB-C Charging Cable,1,11.95,2019-05-28 14:59:00,669 Church St, Boston,MA,02215 +209305,AAA Batteries (4-pack),2,2.99,2019-05-22 22:20:00,999 Ridge St, New York City,NY,10001 +209306,USB-C Charging Cable,1,11.95,2019-05-29 12:14:00,324 11th St, New York City,NY,10001 +209307,USB-C Charging Cable,1,11.95,2019-05-02 13:06:00,901 Hickory St, New York City,NY,10001 +209308,Bose SoundSport Headphones,1,99.99,2019-05-01 13:28:00,307 Cherry St, Los Angeles,CA,90001 +209309,AAA Batteries (4-pack),2,2.99,2019-05-18 16:02:00,262 Cherry St, Portland,OR,97035 +209310,27in 4K Gaming Monitor,1,389.99,2019-05-29 21:36:00,188 Ridge St, Los Angeles,CA,90001 +209311,Lightning Charging Cable,1,14.95,2019-05-30 12:32:00,505 Jackson St, New York City,NY,10001 +209312,27in FHD Monitor,1,149.99,2019-05-22 20:51:00,863 5th St, Los Angeles,CA,90001 +209313,AA Batteries (4-pack),2,3.84,2019-05-17 21:29:00,627 13th St, New York City,NY,10001 +209314,Wired Headphones,1,11.99,2019-05-24 00:12:00,879 Johnson St, Portland,OR,97035 +209315,Apple Airpods Headphones,1,150.0,2019-05-29 22:25:00,840 12th St, Portland,OR,97035 +209316,USB-C Charging Cable,1,11.95,2019-05-25 22:55:00,372 Madison St, Atlanta,GA,30301 +209317,USB-C Charging Cable,1,11.95,2019-05-05 15:02:00,116 Chestnut St, San Francisco,CA,94016 +209318,USB-C Charging Cable,1,11.95,2019-05-03 10:40:00,3 12th St, New York City,NY,10001 +209319,34in Ultrawide Monitor,1,379.99,2019-05-02 21:30:00,436 Church St, New York City,NY,10001 +209320,Lightning Charging Cable,1,14.95,2019-05-31 11:29:00,647 Lakeview St, Los Angeles,CA,90001 +209321,27in FHD Monitor,1,149.99,2019-05-12 06:39:00,613 North St, San Francisco,CA,94016 +209322,34in Ultrawide Monitor,1,379.99,2019-05-17 15:28:00,331 Wilson St, Los Angeles,CA,90001 +209323,AA Batteries (4-pack),1,3.84,2019-05-01 18:41:00,839 South St, Los Angeles,CA,90001 +209324,Bose SoundSport Headphones,1,99.99,2019-05-03 11:57:00,706 Cherry St, San Francisco,CA,94016 +209325,Google Phone,1,600.0,2019-05-15 12:15:00,629 Hill St, Dallas,TX,75001 +209326,USB-C Charging Cable,1,11.95,2019-05-19 15:09:00,364 Chestnut St, San Francisco,CA,94016 +209327,34in Ultrawide Monitor,1,379.99,2019-05-13 00:06:00,812 South St, Boston,MA,02215 +209328,Wired Headphones,1,11.99,2019-05-20 23:51:00,268 Cedar St, Portland,OR,97035 +209329,AAA Batteries (4-pack),1,2.99,2019-05-14 19:39:00,686 10th St, San Francisco,CA,94016 +209330,Bose SoundSport Headphones,1,99.99,2019-05-07 07:55:00,31 Madison St, San Francisco,CA,94016 +209331,USB-C Charging Cable,1,11.95,2019-05-13 06:03:00,359 Cherry St, Boston,MA,02215 +209332,AAA Batteries (4-pack),1,2.99,2019-05-25 20:05:00,842 Lake St, Portland,OR,97035 +209333,AA Batteries (4-pack),1,3.84,2019-05-11 13:47:00,212 West St, Seattle,WA,98101 +209334,USB-C Charging Cable,1,11.95,2019-05-17 15:38:00,611 9th St, San Francisco,CA,94016 +209335,USB-C Charging Cable,2,11.95,2019-05-25 18:26:00,960 Main St, Los Angeles,CA,90001 +209336,34in Ultrawide Monitor,1,379.99,2019-05-14 14:57:00,697 Hickory St, Dallas,TX,75001 +209337,USB-C Charging Cable,1,11.95,2019-05-02 22:14:00,136 Hickory St, San Francisco,CA,94016 +209338,AAA Batteries (4-pack),3,2.99,2019-05-29 16:47:00,577 7th St, San Francisco,CA,94016 +209339,ThinkPad Laptop,1,999.99,2019-05-18 22:19:00,921 Willow St, San Francisco,CA,94016 +209340,27in 4K Gaming Monitor,1,389.99,2019-05-15 14:23:00,109 Sunset St, Portland,OR,97035 +209341,Apple Airpods Headphones,1,150.0,2019-05-09 07:32:00,855 Washington St, San Francisco,CA,94016 +209342,AAA Batteries (4-pack),1,2.99,2019-05-27 19:41:00,614 Ridge St, New York City,NY,10001 +209343,Lightning Charging Cable,1,14.95,2019-05-18 18:39:00,161 12th St, Dallas,TX,75001 +209344,iPhone,1,700.0,2019-05-21 08:48:00,45 South St, Boston,MA,02215 +209345,Bose SoundSport Headphones,1,99.99,2019-05-04 20:54:00,549 South St, San Francisco,CA,94016 +209346,Lightning Charging Cable,1,14.95,2019-05-26 20:22:00,114 North St, San Francisco,CA,94016 +209347,AAA Batteries (4-pack),2,2.99,2019-05-29 21:47:00,845 Maple St, Boston,MA,02215 +209348,Flatscreen TV,1,300.0,2019-05-13 21:11:00,216 14th St, New York City,NY,10001 +209349,Wired Headphones,1,11.99,2019-05-24 20:58:00,777 Lake St, San Francisco,CA,94016 +209350,Google Phone,1,600.0,2019-05-03 11:14:00,415 Center St, San Francisco,CA,94016 +209351,34in Ultrawide Monitor,1,379.99,2019-05-24 11:08:00,356 River St, Boston,MA,02215 +209352,Lightning Charging Cable,1,14.95,2019-05-29 12:17:00,963 Dogwood St, Boston,MA,02215 +209353,Bose SoundSport Headphones,1,99.99,2019-05-01 13:34:00,590 Wilson St, Seattle,WA,98101 +209354,Bose SoundSport Headphones,1,99.99,2019-05-07 13:16:00,271 Adams St, Los Angeles,CA,90001 +209355,Apple Airpods Headphones,1,150.0,2019-05-30 08:17:00,306 Park St, Boston,MA,02215 +209356,USB-C Charging Cable,1,11.95,2019-05-31 14:55:00,364 Willow St, San Francisco,CA,94016 +209357,27in 4K Gaming Monitor,1,389.99,2019-05-06 19:19:00,172 Pine St, New York City,NY,10001 +209358,AAA Batteries (4-pack),5,2.99,2019-05-10 06:27:00,183 North St, Austin,TX,73301 +209359,20in Monitor,1,109.99,2019-05-03 19:27:00,360 Highland St, Los Angeles,CA,90001 +209360,AAA Batteries (4-pack),1,2.99,2019-05-25 16:09:00,403 7th St, Dallas,TX,75001 +209361,Google Phone,1,600.0,2019-05-16 10:57:00,734 13th St, Dallas,TX,75001 +209361,USB-C Charging Cable,1,11.95,2019-05-16 10:57:00,734 13th St, Dallas,TX,75001 +209362,AAA Batteries (4-pack),1,2.99,2019-05-21 20:39:00,781 Wilson St, San Francisco,CA,94016 +209363,27in FHD Monitor,1,149.99,2019-05-27 23:03:00,823 Adams St, New York City,NY,10001 +209364,iPhone,1,700.0,2019-05-29 15:07:00,279 Sunset St, San Francisco,CA,94016 +209364,Lightning Charging Cable,1,14.95,2019-05-29 15:07:00,279 Sunset St, San Francisco,CA,94016 +209365,AAA Batteries (4-pack),2,2.99,2019-05-05 08:45:00,495 2nd St, Portland,OR,97035 +209366,27in 4K Gaming Monitor,1,389.99,2019-05-02 10:32:00,639 Sunset St, Los Angeles,CA,90001 +209367,USB-C Charging Cable,1,11.95,2019-05-26 13:22:00,533 Meadow St, San Francisco,CA,94016 +209368,AAA Batteries (4-pack),3,2.99,2019-05-26 11:46:00,425 Spruce St, Austin,TX,73301 +209369,Bose SoundSport Headphones,1,99.99,2019-05-24 17:29:00,916 Washington St, Atlanta,GA,30301 +209370,AAA Batteries (4-pack),1,2.99,2019-05-05 12:49:00,443 Park St, Los Angeles,CA,90001 +209371,Wired Headphones,1,11.99,2019-05-17 16:17:00,573 Park St, Austin,TX,73301 +209372,27in FHD Monitor,1,149.99,2019-05-01 12:18:00,159 Johnson St, San Francisco,CA,94016 +209373,iPhone,1,700.0,2019-05-13 12:24:00,513 Walnut St, San Francisco,CA,94016 +209374,iPhone,1,700.0,2019-05-26 20:14:00,103 Willow St, Los Angeles,CA,90001 +209375,USB-C Charging Cable,1,11.95,2019-05-29 20:17:00,482 8th St, Los Angeles,CA,90001 +209376,AAA Batteries (4-pack),1,2.99,2019-05-03 17:46:00,69 Jackson St, Dallas,TX,75001 +209377,AAA Batteries (4-pack),1,2.99,2019-05-30 15:04:00,632 8th St, Los Angeles,CA,90001 +209378,ThinkPad Laptop,1,999.99,2019-05-15 18:58:00,787 North St, Dallas,TX,75001 +209379,Wired Headphones,1,11.99,2019-05-13 11:47:00,48 14th St, Boston,MA,02215 +209380,Lightning Charging Cable,1,14.95,2019-05-02 02:26:00,21 7th St, San Francisco,CA,94016 +209381,Wired Headphones,2,11.99,2019-05-22 13:34:00,280 Maple St, Austin,TX,73301 +209382,Lightning Charging Cable,3,14.95,2019-05-09 14:10:00,721 Highland St, Austin,TX,73301 +209383,AAA Batteries (4-pack),1,2.99,2019-05-04 19:46:00,563 Willow St, Dallas,TX,75001 +209384,Wired Headphones,1,11.99,2019-05-03 14:02:00,42 Madison St, San Francisco,CA,94016 +209385,Lightning Charging Cable,1,14.95,2019-05-20 14:36:00,812 11th St, Atlanta,GA,30301 +209386,USB-C Charging Cable,1,11.95,2019-05-23 10:44:00,6 Forest St, Austin,TX,73301 +209387,AA Batteries (4-pack),1,3.84,2019-05-22 19:54:00,217 Johnson St, Austin,TX,73301 +209388,Apple Airpods Headphones,1,150.0,2019-05-09 17:23:00,64 Lake St, San Francisco,CA,94016 +209388,Vareebadd Phone,1,400.0,2019-05-09 17:23:00,64 Lake St, San Francisco,CA,94016 +209389,iPhone,1,700.0,2019-05-18 11:45:00,448 1st St, San Francisco,CA,94016 +209390,USB-C Charging Cable,1,11.95,2019-05-07 21:58:00,354 Meadow St, New York City,NY,10001 +209391,AA Batteries (4-pack),1,3.84,2019-05-16 15:40:00,766 Walnut St, San Francisco,CA,94016 +209392,USB-C Charging Cable,1,11.95,2019-05-29 01:32:00,668 Elm St, Seattle,WA,98101 +209393,AAA Batteries (4-pack),2,2.99,2019-05-19 11:59:00,180 Cedar St, San Francisco,CA,94016 +209394,Apple Airpods Headphones,1,150.0,2019-05-16 14:36:00,30 Jackson St, San Francisco,CA,94016 +209395,Lightning Charging Cable,1,14.95,2019-05-08 11:05:00,466 10th St, Portland,OR,97035 +209396,AAA Batteries (4-pack),2,2.99,2019-05-25 11:15:00,465 Johnson St, Boston,MA,02215 +209397,USB-C Charging Cable,1,11.95,2019-05-17 11:14:00,31 Lakeview St, Portland,OR,97035 +209398,Lightning Charging Cable,1,14.95,2019-05-15 18:25:00,597 Walnut St, San Francisco,CA,94016 +209399,AA Batteries (4-pack),1,3.84,2019-05-18 13:58:00,496 Lakeview St, San Francisco,CA,94016 +209400,Apple Airpods Headphones,1,150.0,2019-05-27 09:06:00,118 Lake St, Boston,MA,02215 +209401,Wired Headphones,1,11.99,2019-05-01 13:01:00,354 14th St, Portland,OR,97035 +209402,USB-C Charging Cable,1,11.95,2019-05-27 09:38:00,750 Church St, Seattle,WA,98101 +209403,USB-C Charging Cable,1,11.95,2019-05-21 19:01:00,803 South St, Seattle,WA,98101 +209404,27in 4K Gaming Monitor,1,389.99,2019-05-16 08:37:00,14 Meadow St, San Francisco,CA,94016 +209405,Bose SoundSport Headphones,1,99.99,2019-05-22 13:45:00,522 Maple St, Los Angeles,CA,90001 +209406,USB-C Charging Cable,1,11.95,2019-05-20 13:16:00,461 Lincoln St, Portland,ME,04101 +209407,AA Batteries (4-pack),1,3.84,2019-05-15 21:36:00,770 13th St, Los Angeles,CA,90001 +209408,AA Batteries (4-pack),1,3.84,2019-05-04 12:09:00,488 Center St, San Francisco,CA,94016 +209409,AAA Batteries (4-pack),1,2.99,2019-05-23 14:37:00,134 8th St, Dallas,TX,75001 +209410,Bose SoundSport Headphones,1,99.99,2019-05-27 09:47:00,425 12th St, Boston,MA,02215 +209411,Wired Headphones,1,11.99,2019-05-22 13:39:00,154 Washington St, Los Angeles,CA,90001 +209412,Apple Airpods Headphones,1,150.0,2019-05-02 09:21:00,232 8th St, Atlanta,GA,30301 +209413,27in FHD Monitor,1,149.99,2019-05-22 20:40:00,876 5th St, Los Angeles,CA,90001 +209414,AA Batteries (4-pack),2,3.84,2019-05-05 13:49:00,68 Wilson St, Boston,MA,02215 +209415,AA Batteries (4-pack),1,3.84,2019-05-06 14:43:00,28 Madison St, Boston,MA,02215 +209416,iPhone,1,700.0,2019-05-14 12:15:00,281 Main St, Boston,MA,02215 +209417,27in 4K Gaming Monitor,1,389.99,2019-05-27 18:01:00,518 11th St, Atlanta,GA,30301 +209417,27in FHD Monitor,1,149.99,2019-05-27 18:01:00,518 11th St, Atlanta,GA,30301 +209418,Wired Headphones,1,11.99,2019-05-09 20:23:00,834 Washington St, Seattle,WA,98101 +209419,Lightning Charging Cable,1,14.95,2019-05-15 15:03:00,483 14th St, Dallas,TX,75001 +209420,34in Ultrawide Monitor,1,379.99,2019-05-12 11:29:00,650 Jackson St, Boston,MA,02215 +209421,20in Monitor,1,109.99,2019-05-04 13:10:00,717 9th St, New York City,NY,10001 +209422,ThinkPad Laptop,1,999.99,2019-05-19 08:57:00,870 5th St, San Francisco,CA,94016 +209423,Google Phone,1,600.0,2019-05-06 19:01:00,39 Dogwood St, Dallas,TX,75001 +209424,Apple Airpods Headphones,1,150.0,2019-05-26 11:01:00,128 Chestnut St, Atlanta,GA,30301 +209425,AAA Batteries (4-pack),2,2.99,2019-05-17 10:56:00,544 Sunset St, San Francisco,CA,94016 +209426,USB-C Charging Cable,1,11.95,2019-05-22 20:07:00,434 10th St, Portland,OR,97035 +209427,USB-C Charging Cable,1,11.95,2019-05-07 15:33:00,12 Park St, Dallas,TX,75001 +209428,LG Washing Machine,1,600.0,2019-05-20 15:32:00,330 Elm St, San Francisco,CA,94016 +209429,Apple Airpods Headphones,1,150.0,2019-05-21 19:08:00,22 Willow St, Portland,OR,97035 +209430,Lightning Charging Cable,1,14.95,2019-05-23 08:55:00,731 7th St, Portland,OR,97035 +209431,iPhone,1,700.0,2019-05-13 18:35:00,790 Jackson St, Los Angeles,CA,90001 +209431,Lightning Charging Cable,1,14.95,2019-05-13 18:35:00,790 Jackson St, Los Angeles,CA,90001 +209432,Flatscreen TV,1,300.0,2019-05-11 06:10:00,575 Walnut St, Boston,MA,02215 +209433,Apple Airpods Headphones,1,150.0,2019-05-01 13:00:00,751 13th St, Atlanta,GA,30301 +209434,Macbook Pro Laptop,1,1700.0,2019-05-17 23:08:00,948 Wilson St, Atlanta,GA,30301 +209435,AAA Batteries (4-pack),3,2.99,2019-05-04 17:24:00,769 9th St, Portland,OR,97035 +209436,AA Batteries (4-pack),3,3.84,2019-05-29 21:42:00,938 7th St, Los Angeles,CA,90001 +209437,USB-C Charging Cable,1,11.95,2019-05-05 19:07:00,817 11th St, New York City,NY,10001 +209438,Bose SoundSport Headphones,1,99.99,2019-05-29 10:50:00,862 1st St, Atlanta,GA,30301 +209439,Bose SoundSport Headphones,1,99.99,2019-05-09 15:31:00,714 Walnut St, Los Angeles,CA,90001 +209440,USB-C Charging Cable,1,11.95,2019-05-22 23:18:00,659 Spruce St, New York City,NY,10001 +209441,27in FHD Monitor,1,149.99,2019-05-29 23:37:00,654 South St, New York City,NY,10001 +209442,ThinkPad Laptop,1,999.99,2019-05-17 18:33:00,72 Hickory St, Austin,TX,73301 +209443,27in 4K Gaming Monitor,1,389.99,2019-05-18 10:15:00,932 Hill St, New York City,NY,10001 +209444,Bose SoundSport Headphones,1,99.99,2019-05-02 19:22:00,634 Sunset St, New York City,NY,10001 +209445,Wired Headphones,1,11.99,2019-05-16 12:38:00,345 Walnut St, Los Angeles,CA,90001 +209446,AA Batteries (4-pack),1,3.84,2019-05-25 11:23:00,215 Cherry St, Atlanta,GA,30301 +209447,USB-C Charging Cable,2,11.95,2019-05-26 20:21:00,928 Lakeview St, Los Angeles,CA,90001 +209448,iPhone,1,700.0,2019-05-10 21:32:00,372 Jefferson St, Dallas,TX,75001 +209449,Vareebadd Phone,1,400.0,2019-05-15 12:32:00,672 Main St, Dallas,TX,75001 +209450,20in Monitor,1,109.99,2019-05-01 17:09:00,622 Cedar St, Los Angeles,CA,90001 +209451,Wired Headphones,1,11.99,2019-05-03 12:47:00,111 River St, Boston,MA,02215 +209452,Apple Airpods Headphones,1,150.0,2019-05-26 20:17:00,639 Highland St, San Francisco,CA,94016 +209453,Bose SoundSport Headphones,1,99.99,2019-05-21 14:27:00,60 Forest St, San Francisco,CA,94016 +209454,USB-C Charging Cable,1,11.95,2019-05-22 11:44:00,428 13th St, San Francisco,CA,94016 +209455,USB-C Charging Cable,1,11.95,2019-05-31 14:30:00,614 Dogwood St, Los Angeles,CA,90001 +209456,Apple Airpods Headphones,1,150.0,2019-05-07 11:01:00,861 4th St, San Francisco,CA,94016 +209457,iPhone,1,700.0,2019-05-25 09:58:00,950 Jackson St, Austin,TX,73301 +209457,Apple Airpods Headphones,1,150.0,2019-05-25 09:58:00,950 Jackson St, Austin,TX,73301 +209458,Bose SoundSport Headphones,1,99.99,2019-05-29 00:47:00,900 Jackson St, New York City,NY,10001 +209459,AA Batteries (4-pack),1,3.84,2019-05-27 17:31:00,982 West St, Dallas,TX,75001 +209460,Apple Airpods Headphones,1,150.0,2019-05-04 14:02:00,168 Washington St, San Francisco,CA,94016 +209461,Lightning Charging Cable,1,14.95,2019-05-22 20:18:00,974 Chestnut St, Seattle,WA,98101 +209462,27in 4K Gaming Monitor,1,389.99,2019-05-26 13:58:00,542 Meadow St, Portland,OR,97035 +209463,Apple Airpods Headphones,1,150.0,2019-05-29 01:48:00,997 South St, Los Angeles,CA,90001 +209464,AAA Batteries (4-pack),2,2.99,2019-05-12 14:53:00,12 12th St, New York City,NY,10001 +209465,AAA Batteries (4-pack),5,2.99,2019-05-12 13:12:00,919 Elm St, Austin,TX,73301 +209466,27in FHD Monitor,1,149.99,2019-05-01 20:44:00,126 4th St, San Francisco,CA,94016 +209467,Wired Headphones,2,11.99,2019-05-20 06:17:00,625 5th St, Dallas,TX,75001 +209468,Google Phone,1,600.0,2019-05-18 19:00:00,359 Hickory St, San Francisco,CA,94016 +209468,USB-C Charging Cable,1,11.95,2019-05-18 19:00:00,359 Hickory St, San Francisco,CA,94016 +209469,AAA Batteries (4-pack),1,2.99,2019-05-19 11:33:00,464 14th St, Boston,MA,02215 +209470,Lightning Charging Cable,1,14.95,2019-05-09 18:38:00,842 Hickory St, Boston,MA,02215 +209471,Bose SoundSport Headphones,1,99.99,2019-05-08 15:19:00,143 Wilson St, Los Angeles,CA,90001 +209472,Lightning Charging Cable,1,14.95,2019-05-28 21:19:00,815 Park St, Los Angeles,CA,90001 +209473,Apple Airpods Headphones,1,150.0,2019-05-01 19:58:00,756 8th St, Boston,MA,02215 +209474,Wired Headphones,1,11.99,2019-05-16 18:09:00,40 Jefferson St, Boston,MA,02215 +209475,Bose SoundSport Headphones,1,99.99,2019-05-31 12:46:00,146 Washington St, Los Angeles,CA,90001 +209476,AAA Batteries (4-pack),3,2.99,2019-05-03 16:20:00,931 Washington St, New York City,NY,10001 +209477,Vareebadd Phone,1,400.0,2019-05-04 11:32:00,987 5th St, New York City,NY,10001 +209478,AAA Batteries (4-pack),2,2.99,2019-05-25 10:42:00,827 8th St, New York City,NY,10001 +209479,27in 4K Gaming Monitor,1,389.99,2019-05-02 22:41:00,992 Madison St, Dallas,TX,75001 +209480,iPhone,1,700.0,2019-05-10 14:50:00,1 9th St, New York City,NY,10001 +209480,Lightning Charging Cable,1,14.95,2019-05-10 14:50:00,1 9th St, New York City,NY,10001 +209481,27in FHD Monitor,1,149.99,2019-05-17 08:55:00,594 Jackson St, Los Angeles,CA,90001 +209482,Wired Headphones,1,11.99,2019-05-03 06:26:00,441 Lincoln St, New York City,NY,10001 +209483,Apple Airpods Headphones,1,150.0,2019-05-12 08:12:00,502 Main St, Boston,MA,02215 +209484,Lightning Charging Cable,1,14.95,2019-05-09 17:42:00,305 Wilson St, New York City,NY,10001 +209485,AA Batteries (4-pack),1,3.84,2019-05-07 15:02:00,44 River St, Boston,MA,02215 +209486,Lightning Charging Cable,1,14.95,2019-05-27 20:44:00,917 Maple St, San Francisco,CA,94016 +209487,Lightning Charging Cable,1,14.95,2019-05-09 12:20:00,426 4th St, Dallas,TX,75001 +209488,Bose SoundSport Headphones,1,99.99,2019-05-15 16:25:00,393 13th St, Boston,MA,02215 +209489,Lightning Charging Cable,1,14.95,2019-05-30 20:23:00,302 Chestnut St, Los Angeles,CA,90001 +209490,AAA Batteries (4-pack),2,2.99,2019-05-17 13:43:00,218 Lincoln St, San Francisco,CA,94016 +209491,AAA Batteries (4-pack),1,2.99,2019-05-04 15:38:00,252 North St, New York City,NY,10001 +209492,AAA Batteries (4-pack),1,2.99,2019-05-12 16:52:00,244 14th St, San Francisco,CA,94016 +209493,Lightning Charging Cable,1,14.95,2019-05-25 19:13:00,359 Wilson St, Los Angeles,CA,90001 +209494,iPhone,1,700.0,2019-05-30 11:13:00,867 Church St, San Francisco,CA,94016 +209495,ThinkPad Laptop,1,999.99,2019-05-01 12:56:00,367 Chestnut St, Seattle,WA,98101 +209496,Apple Airpods Headphones,1,150.0,2019-05-17 22:11:00,77 4th St, San Francisco,CA,94016 +209497,Flatscreen TV,1,300.0,2019-05-05 20:25:00,666 Meadow St, Boston,MA,02215 +209498,ThinkPad Laptop,1,999.99,2019-05-25 19:18:00,713 Main St, San Francisco,CA,94016 +209499,Lightning Charging Cable,1,14.95,2019-05-28 11:48:00,699 13th St, Seattle,WA,98101 +209500,27in FHD Monitor,1,149.99,2019-05-06 08:25:00,749 14th St, Portland,ME,04101 +209501,Apple Airpods Headphones,1,150.0,2019-05-15 22:08:00,120 2nd St, Los Angeles,CA,90001 +209501,USB-C Charging Cable,1,11.95,2019-05-15 22:08:00,120 2nd St, Los Angeles,CA,90001 +209502,27in FHD Monitor,1,149.99,2019-05-15 15:08:00,491 13th St, New York City,NY,10001 +209503,USB-C Charging Cable,1,11.95,2019-05-03 08:18:00,377 1st St, Boston,MA,02215 +209504,Wired Headphones,1,11.99,2019-05-21 20:54:00,820 Cherry St, Los Angeles,CA,90001 +209505,34in Ultrawide Monitor,1,379.99,2019-05-17 02:00:00,568 9th St, Dallas,TX,75001 +209506,LG Washing Machine,1,600.0,2019-05-11 22:06:00,992 Ridge St, Austin,TX,73301 +209507,Macbook Pro Laptop,1,1700.0,2019-05-08 19:34:00,670 Johnson St, Los Angeles,CA,90001 +209508,Google Phone,1,600.0,2019-05-27 23:20:00,852 Highland St, Seattle,WA,98101 +209509,27in FHD Monitor,1,149.99,2019-05-05 11:08:00,137 7th St, Dallas,TX,75001 +209510,Bose SoundSport Headphones,1,99.99,2019-05-26 12:50:00,154 14th St, Boston,MA,02215 +209511,Lightning Charging Cable,1,14.95,2019-05-05 12:39:00,207 Pine St, Austin,TX,73301 +209512,Flatscreen TV,1,300.0,2019-05-08 13:43:00,793 Hickory St, San Francisco,CA,94016 +209513,20in Monitor,1,109.99,2019-05-20 14:34:00,754 Hickory St, Los Angeles,CA,90001 +209514,Lightning Charging Cable,1,14.95,2019-05-05 10:45:00,499 Hill St, San Francisco,CA,94016 +209515,Apple Airpods Headphones,1,150.0,2019-05-14 10:00:00,807 Washington St, Boston,MA,02215 +209516,Flatscreen TV,1,300.0,2019-05-10 12:22:00,414 Jackson St, Dallas,TX,75001 +209517,Wired Headphones,1,11.99,2019-05-21 21:51:00,115 1st St, Los Angeles,CA,90001 +209518,AA Batteries (4-pack),2,3.84,2019-05-02 22:11:00,445 Spruce St, Atlanta,GA,30301 +209519,iPhone,1,700.0,2019-05-25 09:39:00,158 Cedar St, New York City,NY,10001 +209520,Lightning Charging Cable,1,14.95,2019-05-17 00:44:00,627 Spruce St, San Francisco,CA,94016 +209521,34in Ultrawide Monitor,1,379.99,2019-05-12 00:03:00,771 Walnut St, Dallas,TX,75001 +209522,Lightning Charging Cable,1,14.95,2019-05-05 16:24:00,453 5th St, Portland,OR,97035 +209523,Apple Airpods Headphones,1,150.0,2019-05-03 20:51:00,165 Hickory St, San Francisco,CA,94016 +209524,USB-C Charging Cable,1,11.95,2019-05-31 12:02:00,115 Lake St, New York City,NY,10001 +209525,Apple Airpods Headphones,1,150.0,2019-05-31 19:00:00,378 Sunset St, Dallas,TX,75001 +209526,AAA Batteries (4-pack),1,2.99,2019-05-31 10:25:00,516 2nd St, New York City,NY,10001 +209527,27in 4K Gaming Monitor,1,389.99,2019-05-20 22:10:00,303 1st St, New York City,NY,10001 +209528,Apple Airpods Headphones,1,150.0,2019-05-27 08:39:00,238 North St, Austin,TX,73301 +209529,Apple Airpods Headphones,1,150.0,2019-05-19 12:06:00,830 West St, New York City,NY,10001 +209530,AA Batteries (4-pack),1,3.84,2019-05-30 09:29:00,174 6th St, San Francisco,CA,94016 +209531,AA Batteries (4-pack),2,3.84,2019-05-17 12:58:00,907 Highland St, San Francisco,CA,94016 +209532,Flatscreen TV,1,300.0,2019-05-06 11:04:00,924 Center St, Seattle,WA,98101 +209533,USB-C Charging Cable,2,11.95,2019-05-14 12:38:00,838 Pine St, Boston,MA,02215 +209533,AAA Batteries (4-pack),2,2.99,2019-05-14 12:38:00,838 Pine St, Boston,MA,02215 +209534,27in FHD Monitor,1,149.99,2019-05-17 14:47:00,30 Madison St, Boston,MA,02215 +209535,Google Phone,1,600.0,2019-05-04 15:13:00,171 River St, Boston,MA,02215 +209535,USB-C Charging Cable,1,11.95,2019-05-04 15:13:00,171 River St, Boston,MA,02215 +209536,Vareebadd Phone,1,400.0,2019-05-21 20:04:00,587 Cedar St, Los Angeles,CA,90001 +209537,USB-C Charging Cable,1,11.95,2019-05-13 01:19:00,965 Wilson St, Dallas,TX,75001 +209538,AAA Batteries (4-pack),1,2.99,2019-05-10 20:55:00,784 Hill St, San Francisco,CA,94016 +209539,AA Batteries (4-pack),1,3.84,2019-05-11 19:26:00,450 Meadow St, Los Angeles,CA,90001 +209540,27in FHD Monitor,1,149.99,2019-05-16 12:13:00,979 Lincoln St, Portland,OR,97035 +209541,AA Batteries (4-pack),1,3.84,2019-05-20 15:58:00,406 Cherry St, Portland,OR,97035 +209542,Lightning Charging Cable,3,14.95,2019-05-15 09:57:00,12 Lincoln St, San Francisco,CA,94016 +209543,Lightning Charging Cable,1,14.95,2019-05-19 21:14:00,535 Adams St, Atlanta,GA,30301 +209544,AAA Batteries (4-pack),1,2.99,2019-05-08 13:21:00,923 Park St, San Francisco,CA,94016 +209545,27in FHD Monitor,1,149.99,2019-05-01 17:38:00,490 Church St, San Francisco,CA,94016 +209546,27in FHD Monitor,1,149.99,2019-05-09 09:10:00,902 Washington St, Atlanta,GA,30301 +209547,AA Batteries (4-pack),1,3.84,2019-05-28 14:49:00,452 Hill St, San Francisco,CA,94016 +209548,Wired Headphones,1,11.99,2019-05-04 21:08:00,426 Lincoln St, San Francisco,CA,94016 +209549,LG Dryer,1,600.0,2019-05-27 00:02:00,924 South St, Boston,MA,02215 +209550,Google Phone,1,600.0,2019-05-19 15:42:00,129 Lake St, Los Angeles,CA,90001 +209551,Bose SoundSport Headphones,1,99.99,2019-05-08 15:10:00,774 12th St, Seattle,WA,98101 +209552,Wired Headphones,3,11.99,2019-05-12 11:00:00,917 Center St, Atlanta,GA,30301 +209553,AA Batteries (4-pack),1,3.84,2019-05-17 21:06:00,45 Church St, Seattle,WA,98101 +209554,AAA Batteries (4-pack),1,2.99,2019-05-11 23:08:00,497 Walnut St, Los Angeles,CA,90001 +209555,20in Monitor,1,109.99,2019-05-18 18:55:00,388 11th St, San Francisco,CA,94016 +209556,27in 4K Gaming Monitor,1,389.99,2019-05-23 21:47:00,439 River St, San Francisco,CA,94016 +209557,Wired Headphones,1,11.99,2019-05-22 15:15:00,968 Chestnut St, Boston,MA,02215 +209558,Wired Headphones,1,11.99,2019-05-10 23:24:00,613 South St, San Francisco,CA,94016 +209559,AAA Batteries (4-pack),2,2.99,2019-05-27 17:51:00,420 Center St, Austin,TX,73301 +209560,Bose SoundSport Headphones,1,99.99,2019-05-25 23:18:00,908 Ridge St, Boston,MA,02215 +209561,Macbook Pro Laptop,1,1700.0,2019-05-04 20:31:00,157 Lincoln St, New York City,NY,10001 +209562,27in FHD Monitor,1,149.99,2019-05-13 17:55:00,67 8th St, Los Angeles,CA,90001 +209563,AA Batteries (4-pack),1,3.84,2019-05-14 14:25:00,166 2nd St, San Francisco,CA,94016 +209564,Apple Airpods Headphones,1,150.0,2019-05-17 14:35:00,184 2nd St, San Francisco,CA,94016 +209565,USB-C Charging Cable,1,11.95,2019-05-26 07:08:00,337 Park St, New York City,NY,10001 +209566,Apple Airpods Headphones,1,150.0,2019-05-01 23:14:00,440 Cherry St, Dallas,TX,75001 +209567,Lightning Charging Cable,1,14.95,2019-05-22 19:13:00,126 Jefferson St, Los Angeles,CA,90001 +209568,AA Batteries (4-pack),1,3.84,2019-05-08 22:43:00,988 Adams St, Austin,TX,73301 +209569,Apple Airpods Headphones,1,150.0,2019-05-22 18:19:00,71 Park St, Los Angeles,CA,90001 +209570,Apple Airpods Headphones,1,150.0,2019-05-03 21:26:00,638 Chestnut St, New York City,NY,10001 +209571,iPhone,1,700.0,2019-05-29 11:03:00,262 Ridge St, Dallas,TX,75001 +209572,34in Ultrawide Monitor,1,379.99,2019-05-15 17:35:00,775 Lincoln St, Los Angeles,CA,90001 +209573,27in FHD Monitor,1,149.99,2019-05-29 18:41:00,748 South St, Los Angeles,CA,90001 +209574,Lightning Charging Cable,1,14.95,2019-05-27 11:22:00,3 Lincoln St, Los Angeles,CA,90001 +209575,AAA Batteries (4-pack),1,2.99,2019-05-20 20:24:00,272 4th St, Atlanta,GA,30301 +209576,AA Batteries (4-pack),3,3.84,2019-05-14 13:22:00,88 10th St, Los Angeles,CA,90001 +209577,Bose SoundSport Headphones,1,99.99,2019-05-11 11:19:00,867 11th St, San Francisco,CA,94016 +209578,AAA Batteries (4-pack),1,2.99,2019-05-13 10:53:00,339 Cherry St, San Francisco,CA,94016 +209579,USB-C Charging Cable,1,11.95,2019-05-17 12:17:00,568 Pine St, San Francisco,CA,94016 +209580,AA Batteries (4-pack),1,3.84,2019-05-27 21:06:00,708 Chestnut St, San Francisco,CA,94016 +209580,Wired Headphones,1,11.99,2019-05-27 21:06:00,708 Chestnut St, San Francisco,CA,94016 +209581,Lightning Charging Cable,1,14.95,2019-05-30 18:32:00,561 Washington St, Dallas,TX,75001 +209582,ThinkPad Laptop,1,999.99,2019-05-20 07:13:00,952 14th St, Los Angeles,CA,90001 +209583,Apple Airpods Headphones,1,150.0,2019-05-10 22:13:00,456 Ridge St, Seattle,WA,98101 +209584,20in Monitor,1,109.99,2019-05-06 18:17:00,873 2nd St, Dallas,TX,75001 +209585,AA Batteries (4-pack),1,3.84,2019-05-16 18:24:00,346 Cherry St, Los Angeles,CA,90001 +209586,AA Batteries (4-pack),2,3.84,2019-05-19 18:14:00,634 Elm St, Dallas,TX,75001 +209587,AAA Batteries (4-pack),2,2.99,2019-05-08 15:17:00,304 Park St, Los Angeles,CA,90001 +209588,Bose SoundSport Headphones,1,99.99,2019-05-23 11:24:00,584 Chestnut St, Los Angeles,CA,90001 +209589,AA Batteries (4-pack),1,3.84,2019-05-01 10:47:00,400 Willow St, Los Angeles,CA,90001 +209589,ThinkPad Laptop,1,999.99,2019-05-01 10:47:00,400 Willow St, Los Angeles,CA,90001 +209590,AAA Batteries (4-pack),2,2.99,2019-05-15 11:22:00,414 14th St, Los Angeles,CA,90001 +209591,27in FHD Monitor,1,149.99,2019-05-04 15:18:00,470 Jackson St, San Francisco,CA,94016 +209592,USB-C Charging Cable,2,11.95,2019-05-22 23:21:00,799 Highland St, Seattle,WA,98101 +209593,Wired Headphones,1,11.99,2019-05-15 09:39:00,252 Jackson St, San Francisco,CA,94016 +209594,AA Batteries (4-pack),2,3.84,2019-05-16 09:41:00,661 River St, Atlanta,GA,30301 +209595,AA Batteries (4-pack),2,3.84,2019-05-07 06:49:00,304 4th St, New York City,NY,10001 +209596,27in FHD Monitor,1,149.99,2019-05-19 14:29:00,728 River St, San Francisco,CA,94016 +209597,AAA Batteries (4-pack),1,2.99,2019-05-09 00:05:00,452 Walnut St, Boston,MA,02215 +209598,AA Batteries (4-pack),1,3.84,2019-05-10 16:53:00,222 12th St, Austin,TX,73301 +209599,Lightning Charging Cable,1,14.95,2019-05-21 10:42:00,315 Lakeview St, New York City,NY,10001 +209600,Bose SoundSport Headphones,1,99.99,2019-05-12 21:09:00,537 Park St, Boston,MA,02215 +209601,AAA Batteries (4-pack),1,2.99,2019-05-12 14:00:00,528 West St, San Francisco,CA,94016 +209602,Wired Headphones,1,11.99,2019-05-18 13:51:00,285 North St, Dallas,TX,75001 +209603,AA Batteries (4-pack),1,3.84,2019-05-19 01:00:00,949 Forest St, Los Angeles,CA,90001 +209604,Bose SoundSport Headphones,1,99.99,2019-05-06 07:49:00,485 Lincoln St, Boston,MA,02215 +209605,Bose SoundSport Headphones,1,99.99,2019-05-13 16:12:00,403 Willow St, Boston,MA,02215 +209606,iPhone,1,700.0,2019-05-10 22:25:00,963 Lake St, Los Angeles,CA,90001 +209607,Wired Headphones,1,11.99,2019-05-05 16:24:00,652 Park St, Atlanta,GA,30301 +209608,USB-C Charging Cable,2,11.95,2019-05-31 14:20:00,13 Dogwood St, San Francisco,CA,94016 +209609,Google Phone,1,600.0,2019-05-12 19:55:00,206 Willow St, San Francisco,CA,94016 +209609,Bose SoundSport Headphones,1,99.99,2019-05-12 19:55:00,206 Willow St, San Francisco,CA,94016 +209610,20in Monitor,1,109.99,2019-05-14 21:33:00,119 Hickory St, Portland,ME,04101 +209611,iPhone,1,700.0,2019-05-03 09:53:00,58 Jefferson St, San Francisco,CA,94016 +209612,Google Phone,1,600.0,2019-05-13 16:56:00,706 Hickory St, Los Angeles,CA,90001 +209613,Wired Headphones,1,11.99,2019-05-05 11:59:00,121 Main St, Seattle,WA,98101 +209614,AAA Batteries (4-pack),2,2.99,2019-05-20 16:52:00,48 9th St, Austin,TX,73301 +209615,Bose SoundSport Headphones,1,99.99,2019-05-20 11:35:00,941 Ridge St, New York City,NY,10001 +209616,Lightning Charging Cable,1,14.95,2019-05-07 19:19:00,635 Chestnut St, Atlanta,GA,30301 +209617,AA Batteries (4-pack),1,3.84,2019-05-10 11:44:00,310 Maple St, Portland,OR,97035 +209618,Macbook Pro Laptop,1,1700.0,2019-05-04 15:25:00,381 Hill St, Portland,OR,97035 +209619,USB-C Charging Cable,1,11.95,2019-05-05 19:43:00,737 Jefferson St, Atlanta,GA,30301 +209620,AAA Batteries (4-pack),3,2.99,2019-05-05 14:10:00,252 Pine St, San Francisco,CA,94016 +209621,AA Batteries (4-pack),1,3.84,2019-05-06 12:50:00,7 Center St, Seattle,WA,98101 +209622,iPhone,1,700.0,2019-05-20 20:00:00,34 Cherry St, Portland,OR,97035 +209622,Wired Headphones,1,11.99,2019-05-20 20:00:00,34 Cherry St, Portland,OR,97035 +209623,Apple Airpods Headphones,1,150.0,2019-05-15 20:35:00,882 Adams St, Boston,MA,02215 +209624,AA Batteries (4-pack),1,3.84,2019-05-19 04:12:00,719 Hickory St, Portland,OR,97035 +209625,LG Dryer,1,600.0,2019-05-19 11:18:00,201 Highland St, New York City,NY,10001 +209626,AA Batteries (4-pack),1,3.84,2019-05-06 19:02:00,219 Center St, Seattle,WA,98101 +209627,Flatscreen TV,1,300.0,2019-05-22 17:56:00,504 Willow St, Los Angeles,CA,90001 +209628,AA Batteries (4-pack),1,3.84,2019-05-23 20:32:00,841 Ridge St, San Francisco,CA,94016 +209629,Macbook Pro Laptop,1,1700.0,2019-05-25 23:46:00,121 7th St, Portland,OR,97035 +209630,AA Batteries (4-pack),1,3.84,2019-05-06 08:31:00,776 13th St, Boston,MA,02215 +209631,Bose SoundSport Headphones,1,99.99,2019-05-02 20:15:00,687 2nd St, San Francisco,CA,94016 +209632,Lightning Charging Cable,1,14.95,2019-05-16 01:29:00,53 Lake St, Los Angeles,CA,90001 +209632,Apple Airpods Headphones,1,150.0,2019-05-16 01:29:00,53 Lake St, Los Angeles,CA,90001 +209633,AAA Batteries (4-pack),1,2.99,2019-05-19 08:47:00,918 Cherry St, Seattle,WA,98101 +209634,USB-C Charging Cable,1,11.95,2019-05-09 09:26:00,45 13th St, Dallas,TX,75001 +209635,Lightning Charging Cable,1,14.95,2019-05-20 17:17:00,690 Johnson St, Boston,MA,02215 +209636,Apple Airpods Headphones,1,150.0,2019-05-08 16:21:00,388 Park St, Boston,MA,02215 +209637,Wired Headphones,1,11.99,2019-05-24 08:33:00,398 Adams St, Portland,OR,97035 +209638,Bose SoundSport Headphones,1,99.99,2019-05-02 18:01:00,121 Wilson St, Los Angeles,CA,90001 +209638,Lightning Charging Cable,1,14.95,2019-05-02 18:01:00,121 Wilson St, Los Angeles,CA,90001 +209639,USB-C Charging Cable,1,11.95,2019-05-17 09:33:00,844 12th St, Boston,MA,02215 +209640,27in 4K Gaming Monitor,1,389.99,2019-05-16 18:11:00,211 Ridge St, Boston,MA,02215 +209641,AA Batteries (4-pack),2,3.84,2019-05-06 12:45:00,38 Lake St, San Francisco,CA,94016 +209642,Apple Airpods Headphones,1,150.0,2019-05-09 13:14:00,190 West St, Atlanta,GA,30301 +209643,Flatscreen TV,1,300.0,2019-05-20 15:29:00,902 13th St, New York City,NY,10001 +209644,ThinkPad Laptop,1,999.99,2019-05-19 11:35:00,71 Church St, Seattle,WA,98101 +209645,20in Monitor,1,109.99,2019-05-28 11:39:00,659 West St, San Francisco,CA,94016 +209646,Flatscreen TV,1,300.0,2019-05-18 22:23:00,660 Hickory St, Boston,MA,02215 +209647,34in Ultrawide Monitor,1,379.99,2019-05-24 11:57:00,470 Church St, New York City,NY,10001 +209648,iPhone,1,700.0,2019-05-22 02:09:00,6 North St, Atlanta,GA,30301 +209649,AAA Batteries (4-pack),4,2.99,2019-05-07 20:01:00,350 Spruce St, Dallas,TX,75001 +209650,Lightning Charging Cable,1,14.95,2019-05-27 00:51:00,823 13th St, Portland,OR,97035 +209651,Vareebadd Phone,1,400.0,2019-05-11 15:47:00,310 North St, New York City,NY,10001 +209651,USB-C Charging Cable,1,11.95,2019-05-11 15:47:00,310 North St, New York City,NY,10001 +209651,Apple Airpods Headphones,1,150.0,2019-05-11 15:47:00,310 North St, New York City,NY,10001 +209652,ThinkPad Laptop,1,999.99,2019-05-01 23:01:00,113 South St, Los Angeles,CA,90001 +209653,LG Dryer,1,600.0,2019-05-06 21:34:00,728 10th St, Los Angeles,CA,90001 +209654,USB-C Charging Cable,1,11.95,2019-05-16 12:18:00,672 Jackson St, San Francisco,CA,94016 +209655,Wired Headphones,1,11.99,2019-05-03 07:18:00,628 North St, Dallas,TX,75001 +209656,Wired Headphones,1,11.99,2019-05-26 20:35:00,223 Jackson St, Seattle,WA,98101 +209657,Lightning Charging Cable,1,14.95,2019-05-20 22:55:00,523 9th St, Portland,OR,97035 +209658,USB-C Charging Cable,1,11.95,2019-05-02 12:47:00,885 Spruce St, Boston,MA,02215 +209659,Google Phone,1,600.0,2019-05-09 15:17:00,796 1st St, Austin,TX,73301 +209659,USB-C Charging Cable,1,11.95,2019-05-09 15:17:00,796 1st St, Austin,TX,73301 +209659,Bose SoundSport Headphones,1,99.99,2019-05-09 15:17:00,796 1st St, Austin,TX,73301 +209660,iPhone,1,700.0,2019-05-24 10:47:00,175 Lakeview St, New York City,NY,10001 +209661,Google Phone,1,600.0,2019-05-21 19:06:00,977 Cedar St, San Francisco,CA,94016 +209661,USB-C Charging Cable,1,11.95,2019-05-21 19:06:00,977 Cedar St, San Francisco,CA,94016 +209662,Bose SoundSport Headphones,1,99.99,2019-05-27 17:59:00,955 Cherry St, Atlanta,GA,30301 +209663,Macbook Pro Laptop,1,1700.0,2019-05-30 12:52:00,68 North St, Dallas,TX,75001 +209664,Lightning Charging Cable,1,14.95,2019-05-28 12:56:00,527 Wilson St, Seattle,WA,98101 +209665,AA Batteries (4-pack),1,3.84,2019-05-07 09:52:00,434 North St, Los Angeles,CA,90001 +209666,Lightning Charging Cable,1,14.95,2019-05-20 14:28:00,20 Elm St, New York City,NY,10001 +209667,Bose SoundSport Headphones,1,99.99,2019-05-02 14:13:00,832 Elm St, Seattle,WA,98101 +209668,Bose SoundSport Headphones,1,99.99,2019-05-15 15:45:00,392 13th St, Boston,MA,02215 +209669,AAA Batteries (4-pack),1,2.99,2019-05-01 13:01:00,269 4th St, New York City,NY,10001 +209670,27in 4K Gaming Monitor,1,389.99,2019-05-10 16:05:00,984 Hill St, Los Angeles,CA,90001 +209671,AA Batteries (4-pack),1,3.84,2019-05-24 17:06:00,118 Lake St, New York City,NY,10001 +209672,Vareebadd Phone,1,400.0,2019-05-16 13:29:00,513 Lake St, San Francisco,CA,94016 +209673,Bose SoundSport Headphones,1,99.99,2019-05-13 17:46:00,377 Hickory St, Portland,OR,97035 +209674,Apple Airpods Headphones,1,150.0,2019-05-28 15:58:00,293 Willow St, Los Angeles,CA,90001 +209675,AA Batteries (4-pack),1,3.84,2019-05-28 17:38:00,621 11th St, Los Angeles,CA,90001 +209676,USB-C Charging Cable,1,11.95,2019-05-31 11:00:00,367 Church St, Los Angeles,CA,90001 +209677,AA Batteries (4-pack),1,3.84,2019-05-19 15:42:00,559 Center St, Dallas,TX,75001 +209678,Wired Headphones,1,11.99,2019-05-09 15:45:00,372 Sunset St, New York City,NY,10001 +209679,AAA Batteries (4-pack),1,2.99,2019-05-02 13:01:00,15 Jackson St, San Francisco,CA,94016 +209680,AA Batteries (4-pack),3,3.84,2019-05-03 23:25:00,977 9th St, Portland,OR,97035 +209681,27in FHD Monitor,1,149.99,2019-05-20 13:01:00,167 River St, San Francisco,CA,94016 +209682,Apple Airpods Headphones,1,150.0,2019-05-18 11:22:00,58 North St, San Francisco,CA,94016 +209683,Bose SoundSport Headphones,1,99.99,2019-05-28 13:26:00,622 Washington St, New York City,NY,10001 +209684,Wired Headphones,1,11.99,2019-05-25 04:25:00,731 Ridge St, New York City,NY,10001 +209684,Lightning Charging Cable,1,14.95,2019-05-25 04:25:00,731 Ridge St, New York City,NY,10001 +209685,AA Batteries (4-pack),1,3.84,2019-05-08 20:30:00,420 Main St, Dallas,TX,75001 +209686,AAA Batteries (4-pack),1,2.99,2019-05-10 20:34:00,854 13th St, Seattle,WA,98101 +209687,20in Monitor,1,109.99,2019-05-12 16:30:00,725 11th St, Portland,ME,04101 +209688,Wired Headphones,1,11.99,2019-05-05 14:46:00,235 8th St, Boston,MA,02215 +209689,iPhone,1,700.0,2019-05-12 15:44:00,25 Walnut St, Los Angeles,CA,90001 +209690,LG Washing Machine,1,600.0,2019-05-11 05:35:00,284 9th St, Boston,MA,02215 +209691,27in FHD Monitor,1,149.99,2019-05-30 18:33:00,216 Park St, Atlanta,GA,30301 +209692,27in FHD Monitor,1,149.99,2019-05-07 10:12:00,790 Chestnut St, Los Angeles,CA,90001 +209693,USB-C Charging Cable,1,11.95,2019-05-02 23:41:00,37 2nd St, Boston,MA,02215 +209694,Vareebadd Phone,1,400.0,2019-05-17 11:36:00,974 Ridge St, Los Angeles,CA,90001 +209695,27in FHD Monitor,1,149.99,2019-05-16 09:58:00,205 6th St, Los Angeles,CA,90001 +209696,Apple Airpods Headphones,1,150.0,2019-05-19 20:21:00,224 Dogwood St, Boston,MA,02215 +209697,34in Ultrawide Monitor,1,379.99,2019-05-05 17:50:00,686 Lincoln St, New York City,NY,10001 +209698,Apple Airpods Headphones,1,150.0,2019-05-15 07:49:00,332 Dogwood St, San Francisco,CA,94016 +209699,34in Ultrawide Monitor,1,379.99,2019-05-20 11:43:00,862 6th St, New York City,NY,10001 +209700,USB-C Charging Cable,1,11.95,2019-05-10 19:43:00,138 Chestnut St, New York City,NY,10001 +209701,USB-C Charging Cable,1,11.95,2019-05-08 18:18:00,958 Jackson St, Seattle,WA,98101 +209702,Apple Airpods Headphones,1,150.0,2019-05-08 10:38:00,374 2nd St, Portland,OR,97035 +209703,ThinkPad Laptop,1,999.99,2019-05-28 22:02:00,360 Park St, Seattle,WA,98101 +209704,Google Phone,1,600.0,2019-05-14 12:31:00,93 13th St, Dallas,TX,75001 +209704,USB-C Charging Cable,1,11.95,2019-05-14 12:31:00,93 13th St, Dallas,TX,75001 +209705,Wired Headphones,1,11.99,2019-05-13 08:14:00,579 Wilson St, New York City,NY,10001 +209706,Google Phone,1,600.0,2019-05-04 12:10:00,896 Park St, Dallas,TX,75001 +209707,Lightning Charging Cable,1,14.95,2019-05-05 17:12:00,391 14th St, New York City,NY,10001 +209708,AAA Batteries (4-pack),1,2.99,2019-05-26 07:13:00,596 Ridge St, Seattle,WA,98101 +209709,Flatscreen TV,1,300.0,2019-05-13 00:52:00,418 13th St, Atlanta,GA,30301 +209710,Wired Headphones,2,11.99,2019-05-06 14:25:00,799 5th St, Dallas,TX,75001 +209711,27in 4K Gaming Monitor,1,389.99,2019-05-31 16:16:00,37 12th St, San Francisco,CA,94016 +209712,Wired Headphones,1,11.99,2019-05-30 12:13:00,969 Jefferson St, Austin,TX,73301 +209713,Macbook Pro Laptop,1,1700.0,2019-05-15 23:51:00,964 Church St, Los Angeles,CA,90001 +209714,Apple Airpods Headphones,1,150.0,2019-05-05 22:46:00,154 Forest St, San Francisco,CA,94016 +209715,34in Ultrawide Monitor,1,379.99,2019-05-04 20:55:00,643 2nd St, Boston,MA,02215 +209716,ThinkPad Laptop,1,999.99,2019-05-15 16:22:00,524 Highland St, Boston,MA,02215 +209717,AAA Batteries (4-pack),1,2.99,2019-05-06 21:08:00,910 13th St, Los Angeles,CA,90001 +209718,Bose SoundSport Headphones,1,99.99,2019-05-28 22:47:00,506 11th St, San Francisco,CA,94016 +209719,AAA Batteries (4-pack),1,2.99,2019-05-15 11:38:00,835 Lincoln St, Portland,OR,97035 +209720,AAA Batteries (4-pack),1,2.99,2019-05-15 19:44:00,91 8th St, San Francisco,CA,94016 +209721,AAA Batteries (4-pack),2,2.99,2019-05-28 17:34:00,342 River St, New York City,NY,10001 +209722,Macbook Pro Laptop,1,1700.0,2019-05-20 08:26:00,953 Johnson St, San Francisco,CA,94016 +209723,Apple Airpods Headphones,1,150.0,2019-05-29 16:05:00,500 Center St, Los Angeles,CA,90001 +209724,iPhone,1,700.0,2019-05-24 20:22:00,801 Church St, San Francisco,CA,94016 +209725,LG Dryer,1,600.0,2019-05-17 09:11:00,796 Walnut St, New York City,NY,10001 +209726,Macbook Pro Laptop,1,1700.0,2019-05-08 21:14:00,70 Elm St, New York City,NY,10001 +209726,AA Batteries (4-pack),1,3.84,2019-05-08 21:14:00,70 Elm St, New York City,NY,10001 +209727,Wired Headphones,1,11.99,2019-05-30 13:40:00,373 Center St, New York City,NY,10001 +209728,Flatscreen TV,1,300.0,2019-05-03 15:51:00,11 South St, San Francisco,CA,94016 +209729,AA Batteries (4-pack),1,3.84,2019-05-07 11:01:00,531 Maple St, San Francisco,CA,94016 +209730,AA Batteries (4-pack),1,3.84,2019-05-27 13:26:00,8 Jefferson St, Los Angeles,CA,90001 +209731,20in Monitor,1,109.99,2019-05-15 10:29:00,596 Chestnut St, San Francisco,CA,94016 +209732,Apple Airpods Headphones,1,150.0,2019-05-27 02:22:00,818 Main St, San Francisco,CA,94016 +209733,Apple Airpods Headphones,1,150.0,2019-05-08 14:14:00,768 Lake St, San Francisco,CA,94016 +209734,34in Ultrawide Monitor,1,379.99,2019-05-11 21:02:00,940 Jackson St, Los Angeles,CA,90001 +209735,AAA Batteries (4-pack),1,2.99,2019-05-16 15:44:00,714 Cherry St, Portland,OR,97035 +209736,USB-C Charging Cable,1,11.95,2019-05-06 19:31:00,482 10th St, San Francisco,CA,94016 +209737,27in FHD Monitor,1,149.99,2019-05-21 18:13:00,100 Park St, Los Angeles,CA,90001 +209738,34in Ultrawide Monitor,1,379.99,2019-05-22 11:06:00,704 Main St, Atlanta,GA,30301 +209739,Lightning Charging Cable,1,14.95,2019-05-02 18:46:00,491 Hickory St, San Francisco,CA,94016 +209740,AA Batteries (4-pack),2,3.84,2019-05-29 23:23:00,932 Jackson St, San Francisco,CA,94016 +209741,ThinkPad Laptop,1,999.99,2019-05-19 17:11:00,415 Sunset St, Boston,MA,02215 +209742,Flatscreen TV,1,300.0,2019-05-05 19:10:00,41 Highland St, New York City,NY,10001 +209743,USB-C Charging Cable,1,11.95,2019-05-26 18:25:00,600 Hickory St, Los Angeles,CA,90001 +209744,Lightning Charging Cable,1,14.95,2019-05-20 20:02:00,830 Maple St, San Francisco,CA,94016 +209745,USB-C Charging Cable,1,11.95,2019-05-22 07:21:00,2 7th St, New York City,NY,10001 +209746,Lightning Charging Cable,1,14.95,2019-05-20 01:55:00,852 Cedar St, Seattle,WA,98101 +209747,Apple Airpods Headphones,1,150.0,2019-05-01 12:38:00,190 Jefferson St, San Francisco,CA,94016 +209748,Flatscreen TV,1,300.0,2019-05-11 21:40:00,351 10th St, San Francisco,CA,94016 +209749,AAA Batteries (4-pack),2,2.99,2019-05-16 21:05:00,209 13th St, Los Angeles,CA,90001 +209750,USB-C Charging Cable,1,11.95,2019-05-27 11:22:00,214 Jackson St, Dallas,TX,75001 +209751,AAA Batteries (4-pack),1,2.99,2019-05-16 20:09:00,774 Lake St, Portland,OR,97035 +209752,Lightning Charging Cable,1,14.95,2019-05-28 09:16:00,559 6th St, San Francisco,CA,94016 +209753,AAA Batteries (4-pack),2,2.99,2019-05-26 19:14:00,803 Maple St, San Francisco,CA,94016 +209754,Wired Headphones,1,11.99,2019-05-07 14:01:00,388 Cherry St, New York City,NY,10001 +209755,AAA Batteries (4-pack),1,2.99,2019-05-15 22:04:00,946 2nd St, Portland,OR,97035 +209756,Wired Headphones,1,11.99,2019-05-31 13:02:00,590 Willow St, Los Angeles,CA,90001 +209757,Google Phone,1,600.0,2019-05-23 07:10:00,670 Main St, Portland,OR,97035 +209758,27in FHD Monitor,1,149.99,2019-05-02 10:24:00,532 Johnson St, New York City,NY,10001 +209759,Google Phone,1,600.0,2019-05-18 16:46:00,604 13th St, Portland,OR,97035 +209759,USB-C Charging Cable,1,11.95,2019-05-18 16:46:00,604 13th St, Portland,OR,97035 +209760,USB-C Charging Cable,1,11.95,2019-05-08 12:30:00,788 Cedar St, Los Angeles,CA,90001 +209761,27in 4K Gaming Monitor,1,389.99,2019-05-15 12:53:00,109 2nd St, San Francisco,CA,94016 +209762,34in Ultrawide Monitor,1,379.99,2019-05-27 14:06:00,940 Lakeview St, Boston,MA,02215 +209763,Google Phone,1,600.0,2019-05-10 23:55:00,822 West St, New York City,NY,10001 +209763,USB-C Charging Cable,1,11.95,2019-05-10 23:55:00,822 West St, New York City,NY,10001 +209764,Wired Headphones,1,11.99,2019-05-23 10:26:00,699 11th St, Seattle,WA,98101 +209765,USB-C Charging Cable,1,11.95,2019-05-04 12:23:00,945 Washington St, Atlanta,GA,30301 +209766,iPhone,1,700.0,2019-05-27 10:29:00,998 Center St, San Francisco,CA,94016 +209767,Wired Headphones,2,11.99,2019-05-07 13:37:00,315 10th St, Los Angeles,CA,90001 +209768,AAA Batteries (4-pack),2,2.99,2019-05-30 13:30:00,727 Church St, Seattle,WA,98101 +209769,Bose SoundSport Headphones,1,99.99,2019-05-27 20:24:00,64 Ridge St, Los Angeles,CA,90001 +209770,Wired Headphones,1,11.99,2019-05-28 00:09:00,667 West St, Seattle,WA,98101 +209771,Lightning Charging Cable,1,14.95,2019-05-03 07:46:00,749 Jefferson St, Los Angeles,CA,90001 +209772,AAA Batteries (4-pack),2,2.99,2019-05-04 13:13:00,464 Park St, Boston,MA,02215 +209773,Apple Airpods Headphones,1,150.0,2019-05-06 13:18:00,461 Hill St, Seattle,WA,98101 +209774,Wired Headphones,1,11.99,2019-05-28 09:31:00,623 Wilson St, Dallas,TX,75001 +209775,Bose SoundSport Headphones,1,99.99,2019-05-05 13:00:00,227 9th St, Los Angeles,CA,90001 +209776,Apple Airpods Headphones,1,150.0,2019-05-24 12:58:00,871 West St, Austin,TX,73301 +209777,Bose SoundSport Headphones,1,99.99,2019-05-13 22:20:00,801 10th St, San Francisco,CA,94016 +209778,iPhone,1,700.0,2019-05-10 09:56:00,879 Willow St, Los Angeles,CA,90001 +209778,Apple Airpods Headphones,1,150.0,2019-05-10 09:56:00,879 Willow St, Los Angeles,CA,90001 +209779,Bose SoundSport Headphones,1,99.99,2019-05-24 19:17:00,404 Jackson St, Austin,TX,73301 +209780,AAA Batteries (4-pack),2,2.99,2019-05-23 19:36:00,21 5th St, Boston,MA,02215 +209781,AAA Batteries (4-pack),2,2.99,2019-05-14 16:54:00,242 8th St, Boston,MA,02215 +209782,Lightning Charging Cable,1,14.95,2019-05-27 18:58:00,269 Sunset St, New York City,NY,10001 +209783,AA Batteries (4-pack),3,3.84,2019-05-14 23:26:00,859 Pine St, San Francisco,CA,94016 +209784,Macbook Pro Laptop,1,1700.0,2019-05-24 20:30:00,848 4th St, San Francisco,CA,94016 +209785,Flatscreen TV,1,300.0,2019-05-17 12:21:00,650 Johnson St, New York City,NY,10001 +209785,AA Batteries (4-pack),1,3.84,2019-05-17 12:21:00,650 Johnson St, New York City,NY,10001 +209786,Apple Airpods Headphones,1,150.0,2019-05-14 13:17:00,607 South St, Boston,MA,02215 +209787,27in FHD Monitor,1,149.99,2019-05-11 23:00:00,720 Jefferson St, Dallas,TX,75001 +209788,AAA Batteries (4-pack),1,2.99,2019-05-10 17:54:00,615 13th St, New York City,NY,10001 +209789,Lightning Charging Cable,1,14.95,2019-05-27 20:34:00,222 Center St, San Francisco,CA,94016 +209790,AA Batteries (4-pack),1,3.84,2019-05-17 23:47:00,703 Hickory St, Atlanta,GA,30301 +209791,AAA Batteries (4-pack),2,2.99,2019-05-31 19:49:00,222 Spruce St, Atlanta,GA,30301 +209792,Lightning Charging Cable,1,14.95,2019-05-12 18:23:00,820 Forest St, San Francisco,CA,94016 +209793,AA Batteries (4-pack),1,3.84,2019-05-20 16:41:00,417 1st St, Boston,MA,02215 +209794,USB-C Charging Cable,1,11.95,2019-05-03 18:24:00,543 9th St, Atlanta,GA,30301 +209794,Wired Headphones,1,11.99,2019-05-03 18:24:00,543 9th St, Atlanta,GA,30301 +209795,Lightning Charging Cable,1,14.95,2019-05-18 20:07:00,227 Jackson St, Dallas,TX,75001 +209796,Lightning Charging Cable,1,14.95,2019-05-28 20:43:00,867 Dogwood St, Dallas,TX,75001 +209797,USB-C Charging Cable,1,11.95,2019-05-08 09:19:00,393 Lake St, Los Angeles,CA,90001 +209798,Macbook Pro Laptop,1,1700.0,2019-05-07 13:51:00,610 Adams St, Boston,MA,02215 +209799,USB-C Charging Cable,1,11.95,2019-05-26 17:01:00,815 Willow St, San Francisco,CA,94016 +209800,USB-C Charging Cable,1,11.95,2019-05-08 22:23:00,458 4th St, Boston,MA,02215 +209801,AA Batteries (4-pack),1,3.84,2019-05-18 13:44:00,221 Lakeview St, Los Angeles,CA,90001 +209802,AA Batteries (4-pack),5,3.84,2019-05-25 08:19:00,227 South St, San Francisco,CA,94016 +209803,USB-C Charging Cable,1,11.95,2019-05-04 16:33:00,434 Spruce St, Boston,MA,02215 +209804,Apple Airpods Headphones,1,150.0,2019-05-16 22:39:00,103 Pine St, Dallas,TX,75001 +209805,AAA Batteries (4-pack),2,2.99,2019-05-25 10:48:00,130 Maple St, New York City,NY,10001 +209806,27in 4K Gaming Monitor,1,389.99,2019-05-12 12:25:00,229 Park St, New York City,NY,10001 +209807,iPhone,1,700.0,2019-05-27 20:20:00,16 North St, San Francisco,CA,94016 +209808,AAA Batteries (4-pack),1,2.99,2019-05-19 09:23:00,302 8th St, Portland,OR,97035 +209809,34in Ultrawide Monitor,1,379.99,2019-05-26 17:59:00,504 1st St, Portland,OR,97035 +209810,AA Batteries (4-pack),1,3.84,2019-05-28 19:11:00,198 North St, Austin,TX,73301 +209810,USB-C Charging Cable,2,11.95,2019-05-28 19:11:00,198 North St, Austin,TX,73301 +209811,AAA Batteries (4-pack),1,2.99,2019-05-07 19:39:00,564 Jackson St, Boston,MA,02215 +209812,Lightning Charging Cable,1,14.95,2019-05-18 18:40:00,240 8th St, Austin,TX,73301 +209813,Lightning Charging Cable,1,14.95,2019-05-10 19:14:00,1 Jefferson St, Portland,OR,97035 +209814,Macbook Pro Laptop,1,1700.0,2019-05-31 00:27:00,359 Sunset St, Los Angeles,CA,90001 +209815,AA Batteries (4-pack),1,3.84,2019-05-07 13:49:00,950 West St, Los Angeles,CA,90001 +209816,Apple Airpods Headphones,1,150.0,2019-05-16 11:58:00,369 Wilson St, New York City,NY,10001 +209817,Bose SoundSport Headphones,1,99.99,2019-05-09 11:46:00,793 5th St, Atlanta,GA,30301 +209818,USB-C Charging Cable,2,11.95,2019-05-22 19:21:00,41 12th St, Atlanta,GA,30301 +209819,AA Batteries (4-pack),2,3.84,2019-05-24 17:29:00,512 Lake St, San Francisco,CA,94016 +209820,Lightning Charging Cable,1,14.95,2019-05-25 04:17:00,87 Meadow St, San Francisco,CA,94016 +209821,27in 4K Gaming Monitor,1,389.99,2019-05-19 17:59:00,647 12th St, Atlanta,GA,30301 +209822,Lightning Charging Cable,1,14.95,2019-05-14 13:31:00,695 7th St, San Francisco,CA,94016 +209823,Lightning Charging Cable,1,14.95,2019-05-10 16:37:00,510 5th St, Seattle,WA,98101 +209824,Bose SoundSport Headphones,1,99.99,2019-05-21 13:43:00,356 11th St, Seattle,WA,98101 +209825,Bose SoundSport Headphones,1,99.99,2019-05-25 07:28:00,452 Hill St, Boston,MA,02215 +209826,Google Phone,1,600.0,2019-05-18 21:53:00,907 14th St, New York City,NY,10001 +209827,Wired Headphones,1,11.99,2019-05-17 23:32:00,391 Spruce St, San Francisco,CA,94016 +209828,Lightning Charging Cable,1,14.95,2019-05-27 16:40:00,925 West St, Atlanta,GA,30301 +209829,Apple Airpods Headphones,1,150.0,2019-05-03 19:30:00,211 Park St, San Francisco,CA,94016 +209830,USB-C Charging Cable,1,11.95,2019-05-14 21:38:00,769 7th St, San Francisco,CA,94016 +209831,Wired Headphones,1,11.99,2019-05-05 17:46:00,600 Willow St, Dallas,TX,75001 +209832,ThinkPad Laptop,1,999.99,2019-05-16 17:01:00,421 Willow St, Dallas,TX,75001 +209833,Vareebadd Phone,1,400.0,2019-05-01 15:32:00,637 1st St, Austin,TX,73301 +209834,AA Batteries (4-pack),1,3.84,2019-05-25 15:01:00,239 14th St, Atlanta,GA,30301 +209835,Vareebadd Phone,1,400.0,2019-05-27 00:39:00,916 Center St, Boston,MA,02215 +209836,Wired Headphones,1,11.99,2019-05-15 07:47:00,48 Adams St, Los Angeles,CA,90001 +209837,USB-C Charging Cable,1,11.95,2019-05-19 19:47:00,412 Cedar St, Boston,MA,02215 +209838,AAA Batteries (4-pack),1,2.99,2019-05-01 13:16:00,252 2nd St, Seattle,WA,98101 +209839,Flatscreen TV,1,300.0,2019-05-07 21:54:00,337 12th St, Portland,OR,97035 +209840,Macbook Pro Laptop,1,1700.0,2019-05-19 19:48:00,530 Forest St, San Francisco,CA,94016 +209841,Flatscreen TV,1,300.0,2019-05-26 15:39:00,4 12th St, San Francisco,CA,94016 +209842,Bose SoundSport Headphones,1,99.99,2019-05-29 22:52:00,190 14th St, Dallas,TX,75001 +209843,AA Batteries (4-pack),1,3.84,2019-05-06 19:12:00,163 Ridge St, Boston,MA,02215 +209844,USB-C Charging Cable,1,11.95,2019-05-24 19:28:00,157 1st St, Seattle,WA,98101 +209845,Bose SoundSport Headphones,1,99.99,2019-05-03 12:01:00,860 Adams St, Los Angeles,CA,90001 +209846,AAA Batteries (4-pack),2,2.99,2019-05-30 19:38:00,802 West St, Boston,MA,02215 +209847,Macbook Pro Laptop,1,1700.0,2019-05-04 18:34:00,30 Jackson St, Austin,TX,73301 +209848,ThinkPad Laptop,1,999.99,2019-05-21 14:59:00,798 Walnut St, Seattle,WA,98101 +209849,AA Batteries (4-pack),1,3.84,2019-05-25 18:46:00,343 Lake St, Los Angeles,CA,90001 +209850,Bose SoundSport Headphones,1,99.99,2019-05-14 13:44:00,807 Meadow St, San Francisco,CA,94016 +209851,USB-C Charging Cable,2,11.95,2019-05-24 19:19:00,139 Chestnut St, Portland,OR,97035 +209852,LG Washing Machine,1,600.0,2019-05-25 11:01:00,60 9th St, Austin,TX,73301 +209853,Wired Headphones,1,11.99,2019-05-09 20:06:00,803 7th St, San Francisco,CA,94016 +209854,AAA Batteries (4-pack),3,2.99,2019-05-29 11:18:00,432 Jackson St, Los Angeles,CA,90001 +209855,Wired Headphones,2,11.99,2019-05-22 11:48:00,131 Center St, Atlanta,GA,30301 +209856,Apple Airpods Headphones,1,150.0,2019-05-13 11:16:00,210 Lakeview St, Austin,TX,73301 +209857,Lightning Charging Cable,1,14.95,2019-05-16 14:59:00,979 Chestnut St, Seattle,WA,98101 +209858,Vareebadd Phone,1,400.0,2019-05-21 19:45:00,615 10th St, New York City,NY,10001 +209859,Google Phone,1,600.0,2019-05-25 14:33:00,280 Dogwood St, Atlanta,GA,30301 +209859,USB-C Charging Cable,1,11.95,2019-05-25 14:33:00,280 Dogwood St, Atlanta,GA,30301 +209859,Wired Headphones,1,11.99,2019-05-25 14:33:00,280 Dogwood St, Atlanta,GA,30301 +209860,Lightning Charging Cable,2,14.95,2019-05-05 00:03:00,681 Ridge St, Atlanta,GA,30301 +209861,AA Batteries (4-pack),1,3.84,2019-05-15 10:43:00,335 Spruce St, Dallas,TX,75001 +209862,Wired Headphones,1,11.99,2019-05-03 20:13:00,641 1st St, New York City,NY,10001 +209863,Wired Headphones,1,11.99,2019-05-09 16:19:00,962 South St, New York City,NY,10001 +209864,AA Batteries (4-pack),1,3.84,2019-05-10 20:27:00,760 Maple St, Atlanta,GA,30301 +209865,AA Batteries (4-pack),1,3.84,2019-05-06 10:16:00,492 12th St, New York City,NY,10001 +209866,34in Ultrawide Monitor,1,379.99,2019-05-05 11:20:00,316 Elm St, Los Angeles,CA,90001 +209867,Bose SoundSport Headphones,1,99.99,2019-05-24 22:00:00,899 Wilson St, Los Angeles,CA,90001 +209868,AA Batteries (4-pack),1,3.84,2019-05-02 14:03:00,253 4th St, San Francisco,CA,94016 +209869,Lightning Charging Cable,1,14.95,2019-05-01 08:55:00,815 6th St, New York City,NY,10001 +209870,AAA Batteries (4-pack),1,2.99,2019-05-14 15:05:00,665 7th St, Los Angeles,CA,90001 +209871,AA Batteries (4-pack),1,3.84,2019-05-17 13:05:00,430 Spruce St, Boston,MA,02215 +209872,Bose SoundSport Headphones,1,99.99,2019-05-11 10:43:00,49 2nd St, Los Angeles,CA,90001 +209873,Lightning Charging Cable,1,14.95,2019-05-13 14:41:00,414 Pine St, Portland,OR,97035 +209874,Wired Headphones,1,11.99,2019-05-03 00:04:00,988 13th St, San Francisco,CA,94016 +209875,Wired Headphones,1,11.99,2019-05-08 22:57:00,526 12th St, Dallas,TX,75001 +209876,20in Monitor,1,109.99,2019-05-26 05:51:00,767 Adams St, Atlanta,GA,30301 +209877,Lightning Charging Cable,1,14.95,2019-05-21 11:37:00,454 Meadow St, Seattle,WA,98101 +209878,USB-C Charging Cable,1,11.95,2019-05-27 11:25:00,561 Madison St, Los Angeles,CA,90001 +209879,Apple Airpods Headphones,1,150.0,2019-05-08 22:54:00,486 Adams St, New York City,NY,10001 +209880,AA Batteries (4-pack),1,3.84,2019-05-15 11:03:00,100 Highland St, Boston,MA,02215 +209881,USB-C Charging Cable,1,11.95,2019-05-01 12:15:00,491 Lake St, New York City,NY,10001 +209882,Apple Airpods Headphones,1,150.0,2019-05-18 10:48:00,953 West St, San Francisco,CA,94016 +209883,Wired Headphones,1,11.99,2019-05-02 14:59:00,657 Johnson St, Portland,ME,04101 +209884,AA Batteries (4-pack),1,3.84,2019-05-14 16:56:00,911 Jackson St, Los Angeles,CA,90001 +209885,AA Batteries (4-pack),1,3.84,2019-05-27 22:36:00,674 Lincoln St, New York City,NY,10001 +209886,Bose SoundSport Headphones,1,99.99,2019-05-16 21:17:00,593 Jackson St, New York City,NY,10001 +209887,Macbook Pro Laptop,1,1700.0,2019-05-06 15:49:00,741 Cherry St, San Francisco,CA,94016 +209888,Flatscreen TV,1,300.0,2019-05-04 17:11:00,904 5th St, Los Angeles,CA,90001 +209889,Macbook Pro Laptop,1,1700.0,2019-05-22 10:21:00,500 10th St, Atlanta,GA,30301 +209890,AA Batteries (4-pack),1,3.84,2019-05-23 20:59:00,347 Church St, New York City,NY,10001 +209891,Bose SoundSport Headphones,1,99.99,2019-05-07 22:53:00,78 6th St, Boston,MA,02215 +209892,Wired Headphones,1,11.99,2019-05-17 08:37:00,40 Ridge St, Dallas,TX,75001 +209893,20in Monitor,1,109.99,2019-05-07 21:01:00,437 12th St, New York City,NY,10001 +209894,USB-C Charging Cable,1,11.95,2019-05-23 18:40:00,517 Sunset St, Atlanta,GA,30301 +209895,USB-C Charging Cable,1,11.95,2019-05-19 17:43:00,301 Madison St, Los Angeles,CA,90001 +209896,USB-C Charging Cable,1,11.95,2019-05-09 00:14:00,313 Chestnut St, San Francisco,CA,94016 +209897,Wired Headphones,2,11.99,2019-05-29 14:15:00,841 13th St, San Francisco,CA,94016 +209898,AAA Batteries (4-pack),1,2.99,2019-05-16 17:48:00,146 Meadow St, New York City,NY,10001 +209899,AA Batteries (4-pack),1,3.84,2019-05-25 08:49:00,51 Meadow St, Boston,MA,02215 +209900,Lightning Charging Cable,1,14.95,2019-05-26 22:12:00,911 13th St, Boston,MA,02215 +209901,20in Monitor,1,109.99,2019-05-30 11:44:00,387 Johnson St, San Francisco,CA,94016 +209902,Apple Airpods Headphones,1,150.0,2019-05-01 08:57:00,320 Maple St, Los Angeles,CA,90001 +209903,AAA Batteries (4-pack),2,2.99,2019-05-27 12:59:00,604 Walnut St, New York City,NY,10001 +209904,AAA Batteries (4-pack),1,2.99,2019-05-20 18:52:00,835 1st St, Boston,MA,02215 +209905,Wired Headphones,1,11.99,2019-05-29 14:45:00,174 Dogwood St, Seattle,WA,98101 +209906,Flatscreen TV,1,300.0,2019-05-26 05:27:00,533 Maple St, Los Angeles,CA,90001 +209907,Lightning Charging Cable,1,14.95,2019-05-20 10:18:00,228 Spruce St, Dallas,TX,75001 +209908,Wired Headphones,1,11.99,2019-05-28 11:58:00,817 1st St, Boston,MA,02215 +209909,USB-C Charging Cable,1,11.95,2019-05-13 13:50:00,438 12th St, Atlanta,GA,30301 +209910,Lightning Charging Cable,1,14.95,2019-05-09 08:37:00,633 Jefferson St, Atlanta,GA,30301 +209911,Wired Headphones,1,11.99,2019-05-13 19:46:00,939 13th St, New York City,NY,10001 +209912,20in Monitor,1,109.99,2019-05-01 15:30:00,482 Washington St, San Francisco,CA,94016 +209913,AAA Batteries (4-pack),1,2.99,2019-05-11 11:51:00,372 Park St, Los Angeles,CA,90001 +209914,ThinkPad Laptop,1,999.99,2019-05-02 19:57:00,903 Adams St, Portland,OR,97035 +209915,Apple Airpods Headphones,1,150.0,2019-05-01 18:05:00,231 5th St, Portland,OR,97035 +209916,Bose SoundSport Headphones,1,99.99,2019-05-08 19:15:00,235 Center St, Seattle,WA,98101 +209917,Wired Headphones,1,11.99,2019-05-24 22:02:00,926 9th St, San Francisco,CA,94016 +209918,AAA Batteries (4-pack),2,2.99,2019-05-24 17:44:00,868 Hickory St, Boston,MA,02215 +209919,USB-C Charging Cable,1,11.95,2019-05-04 12:46:00,204 Adams St, Seattle,WA,98101 +209920,ThinkPad Laptop,1,999.99,2019-05-18 23:07:00,43 5th St, Atlanta,GA,30301 +278797,Wired Headphones,1,11.99,2019-11-21 09:54:00,46 Park St, New York City,NY,10001 +278798,USB-C Charging Cable,2,11.95,2019-11-17 10:03:00,962 Hickory St, Austin,TX,73301 +278799,Apple Airpods Headphones,1,150.0,2019-11-19 14:56:00,464 Cherry St, Los Angeles,CA,90001 +278800,27in FHD Monitor,1,149.99,2019-11-25 22:24:00,649 10th St, Seattle,WA,98101 +278801,Bose SoundSport Headphones,1,99.99,2019-11-09 13:56:00,522 Hill St, Boston,MA,02215 +278802,USB-C Charging Cable,1,11.95,2019-11-14 20:34:00,154 2nd St, San Francisco,CA,94016 +278803,Lightning Charging Cable,1,14.95,2019-11-11 08:05:00,724 5th St, San Francisco,CA,94016 +278804,Bose SoundSport Headphones,1,99.99,2019-11-15 11:48:00,866 Sunset St, Austin,TX,73301 +278805,Lightning Charging Cable,1,14.95,2019-11-27 11:50:00,670 Elm St, San Francisco,CA,94016 +278806,Bose SoundSport Headphones,1,99.99,2019-11-19 19:12:00,174 2nd St, Boston,MA,02215 +278806,ThinkPad Laptop,1,999.99,2019-11-19 19:12:00,174 2nd St, Boston,MA,02215 +278807,ThinkPad Laptop,1,999.99,2019-11-25 21:52:00,240 Elm St, Austin,TX,73301 +278808,AAA Batteries (4-pack),1,2.99,2019-11-23 13:19:00,155 Highland St, Boston,MA,02215 +278809,AA Batteries (4-pack),1,3.84,2019-11-17 12:38:00,969 13th St, Dallas,TX,75001 +278810,USB-C Charging Cable,1,11.95,2019-11-03 16:55:00,454 Cherry St, Boston,MA,02215 +278811,Wired Headphones,1,11.99,2019-11-06 16:01:00,99 Elm St, San Francisco,CA,94016 +278811,Apple Airpods Headphones,1,150.0,2019-11-06 16:01:00,99 Elm St, San Francisco,CA,94016 +278812,Apple Airpods Headphones,1,150.0,2019-11-17 20:08:00,601 Church St, Seattle,WA,98101 +278813,Macbook Pro Laptop,1,1700.0,2019-11-09 22:40:00,131 6th St, Boston,MA,02215 +278814,AA Batteries (4-pack),3,3.84,2019-11-16 16:45:00,419 Hill St, Boston,MA,02215 +278815,Lightning Charging Cable,1,14.95,2019-11-18 13:06:00,815 Dogwood St, New York City,NY,10001 +278816,Lightning Charging Cable,1,14.95,2019-11-08 08:58:00,925 5th St, New York City,NY,10001 +278817,USB-C Charging Cable,1,11.95,2019-11-05 23:25:00,503 Chestnut St, Boston,MA,02215 +278818,USB-C Charging Cable,1,11.95,2019-11-16 22:12:00,541 Johnson St, New York City,NY,10001 +278819,iPhone,1,700.0,2019-11-04 06:20:00,880 Maple St, New York City,NY,10001 +278819,Apple Airpods Headphones,1,150.0,2019-11-04 06:20:00,880 Maple St, New York City,NY,10001 +278820,USB-C Charging Cable,2,11.95,2019-11-17 15:11:00,882 Walnut St, Portland,OR,97035 +278821,USB-C Charging Cable,1,11.95,2019-11-25 16:17:00,327 13th St, Dallas,TX,75001 +278822,Bose SoundSport Headphones,1,99.99,2019-11-20 08:17:00,816 Park St, Atlanta,GA,30301 +278823,AA Batteries (4-pack),1,3.84,2019-11-29 20:42:00,234 9th St, Boston,MA,02215 +278824,27in FHD Monitor,1,149.99,2019-11-08 11:05:00,677 Johnson St, Portland,OR,97035 +278825,Bose SoundSport Headphones,1,99.99,2019-11-02 00:35:00,928 Wilson St, San Francisco,CA,94016 +278826,20in Monitor,1,109.99,2019-11-26 15:58:00,532 Cedar St, Austin,TX,73301 +278827,Apple Airpods Headphones,1,150.0,2019-11-01 13:06:00,305 Highland St, San Francisco,CA,94016 +278828,34in Ultrawide Monitor,1,379.99,2019-11-12 20:24:00,470 13th St, San Francisco,CA,94016 +278829,iPhone,1,700.0,2019-11-20 22:19:00,977 Johnson St, Los Angeles,CA,90001 +278830,USB-C Charging Cable,1,11.95,2019-11-04 13:28:00,651 Hill St, Boston,MA,02215 +278831,Bose SoundSport Headphones,1,99.99,2019-11-11 12:37:00,607 8th St, Los Angeles,CA,90001 +278832,Vareebadd Phone,1,400.0,2019-11-10 16:10:00,783 12th St, San Francisco,CA,94016 +278833,iPhone,1,700.0,2019-11-04 10:34:00,700 Pine St, San Francisco,CA,94016 +278833,Lightning Charging Cable,2,14.95,2019-11-04 10:34:00,700 Pine St, San Francisco,CA,94016 +278834,Wired Headphones,1,11.99,2019-11-07 13:19:00,792 9th St, Los Angeles,CA,90001 +278835,AAA Batteries (4-pack),1,2.99,2019-11-13 20:05:00,302 Highland St, San Francisco,CA,94016 +278836,Wired Headphones,1,11.99,2019-11-26 20:48:00,989 12th St, New York City,NY,10001 +278837,AA Batteries (4-pack),1,3.84,2019-11-10 16:05:00,349 9th St, San Francisco,CA,94016 +278838,Flatscreen TV,1,300.0,2019-11-12 15:37:00,835 Main St, San Francisco,CA,94016 +278839,Lightning Charging Cable,1,14.95,2019-11-23 11:16:00,614 Church St, San Francisco,CA,94016 +278840,Bose SoundSport Headphones,1,99.99,2019-11-23 20:46:00,490 Walnut St, Los Angeles,CA,90001 +278840,27in FHD Monitor,1,149.99,2019-11-23 20:46:00,490 Walnut St, Los Angeles,CA,90001 +278841,USB-C Charging Cable,1,11.95,2019-11-28 09:07:00,847 Dogwood St, San Francisco,CA,94016 +278842,AA Batteries (4-pack),1,3.84,2019-11-06 00:37:00,487 Lincoln St, New York City,NY,10001 +278843,USB-C Charging Cable,1,11.95,2019-11-07 11:59:00,435 Hill St, Portland,ME,04101 +278844,20in Monitor,1,109.99,2019-11-24 12:37:00,944 Madison St, Los Angeles,CA,90001 +278845,Lightning Charging Cable,1,14.95,2019-11-09 11:46:00,497 6th St, Boston,MA,02215 +278846,Lightning Charging Cable,1,14.95,2019-11-25 22:05:00,84 1st St, Los Angeles,CA,90001 +278847,34in Ultrawide Monitor,1,379.99,2019-11-12 13:52:00,903 Madison St, Boston,MA,02215 +278848,Flatscreen TV,1,300.0,2019-11-23 16:40:00,140 West St, Austin,TX,73301 +278849,AAA Batteries (4-pack),1,2.99,2019-11-16 11:49:00,984 Washington St, Seattle,WA,98101 +278850,USB-C Charging Cable,1,11.95,2019-11-21 14:25:00,555 Cherry St, San Francisco,CA,94016 +278851,Apple Airpods Headphones,1,150.0,2019-11-08 19:49:00,687 Maple St, Los Angeles,CA,90001 +278852,AAA Batteries (4-pack),1,2.99,2019-11-12 16:53:00,998 Hill St, Seattle,WA,98101 +278853,AAA Batteries (4-pack),1,2.99,2019-11-20 19:01:00,591 Washington St, San Francisco,CA,94016 +278854,27in 4K Gaming Monitor,1,389.99,2019-11-04 00:24:00,952 Dogwood St, Portland,OR,97035 +278855,AA Batteries (4-pack),1,3.84,2019-11-21 21:32:00,193 Maple St, New York City,NY,10001 +278856,Apple Airpods Headphones,1,150.0,2019-11-10 22:27:00,788 North St, New York City,NY,10001 +278857,USB-C Charging Cable,1,11.95,2019-11-30 15:37:00,150 Wilson St, Los Angeles,CA,90001 +278857,AAA Batteries (4-pack),2,2.99,2019-11-30 15:37:00,150 Wilson St, Los Angeles,CA,90001 +278858,USB-C Charging Cable,1,11.95,2019-11-16 13:23:00,690 Spruce St, San Francisco,CA,94016 +278859,27in FHD Monitor,1,149.99,2019-11-21 22:29:00,30 West St, Dallas,TX,75001 +278860,Wired Headphones,2,11.99,2019-11-22 21:45:00,389 Madison St, Boston,MA,02215 +278861,AA Batteries (4-pack),2,3.84,2019-11-24 16:18:00,485 Jefferson St, New York City,NY,10001 +278862,Wired Headphones,1,11.99,2019-11-04 09:22:00,351 Spruce St, Portland,ME,04101 +278863,Wired Headphones,1,11.99,2019-11-21 16:29:00,511 10th St, Los Angeles,CA,90001 +278864,Apple Airpods Headphones,1,150.0,2019-11-09 19:29:00,67 Meadow St, San Francisco,CA,94016 +278865,27in 4K Gaming Monitor,1,389.99,2019-11-14 17:44:00,518 Center St, New York City,NY,10001 +278866,USB-C Charging Cable,1,11.95,2019-11-12 23:44:00,755 2nd St, San Francisco,CA,94016 +278867,Apple Airpods Headphones,1,150.0,2019-11-13 11:55:00,249 Madison St, Atlanta,GA,30301 +278868,Wired Headphones,1,11.99,2019-11-12 22:27:00,614 Maple St, New York City,NY,10001 +278869,Lightning Charging Cable,1,14.95,2019-11-22 12:18:00,164 North St, Dallas,TX,75001 +278870,Bose SoundSport Headphones,1,99.99,2019-11-29 19:53:00,921 Meadow St, Seattle,WA,98101 +278871,34in Ultrawide Monitor,1,379.99,2019-11-22 14:01:00,95 Willow St, Dallas,TX,75001 +278872,iPhone,1,700.0,2019-11-02 10:46:00,916 North St, Portland,OR,97035 +278873,Lightning Charging Cable,1,14.95,2019-11-28 22:30:00,206 Willow St, Portland,OR,97035 +278874,Lightning Charging Cable,1,14.95,2019-11-13 17:58:00,828 Spruce St, Austin,TX,73301 +278875,USB-C Charging Cable,1,11.95,2019-11-26 11:09:00,832 Sunset St, Los Angeles,CA,90001 +278876,Bose SoundSport Headphones,1,99.99,2019-11-27 17:31:00,174 Main St, Portland,OR,97035 +278877,34in Ultrawide Monitor,1,379.99,2019-11-24 20:08:00,684 Madison St, Atlanta,GA,30301 +278878,AAA Batteries (4-pack),1,2.99,2019-11-07 16:06:00,515 1st St, New York City,NY,10001 +278879,27in 4K Gaming Monitor,1,389.99,2019-11-21 23:35:00,738 6th St, San Francisco,CA,94016 +278880,Apple Airpods Headphones,1,150.0,2019-11-16 13:07:00,531 Ridge St, San Francisco,CA,94016 +278881,20in Monitor,1,109.99,2019-11-22 11:30:00,695 Jefferson St, New York City,NY,10001 +278882,Bose SoundSport Headphones,1,99.99,2019-11-15 20:31:00,469 8th St, San Francisco,CA,94016 +278883,Wired Headphones,2,11.99,2019-11-28 23:11:00,153 Washington St, San Francisco,CA,94016 +278884,Flatscreen TV,1,300.0,2019-11-09 23:48:00,288 Washington St, Portland,OR,97035 +278885,34in Ultrawide Monitor,1,379.99,2019-11-12 18:53:00,129 Ridge St, Austin,TX,73301 +278886,USB-C Charging Cable,1,11.95,2019-11-17 13:44:00,315 Elm St, San Francisco,CA,94016 +278887,AA Batteries (4-pack),1,3.84,2019-11-18 14:55:00,281 1st St, Atlanta,GA,30301 +278888,AA Batteries (4-pack),1,3.84,2019-11-24 15:44:00,447 Cherry St, Los Angeles,CA,90001 +278889,USB-C Charging Cable,1,11.95,2019-11-30 08:39:00,171 13th St, Los Angeles,CA,90001 +278890,Apple Airpods Headphones,1,150.0,2019-11-26 11:27:00,673 West St, Seattle,WA,98101 +278891,Flatscreen TV,1,300.0,2019-11-04 12:19:00,116 5th St, San Francisco,CA,94016 +278892,USB-C Charging Cable,1,11.95,2019-11-08 12:10:00,214 North St, Dallas,TX,75001 +278893,AA Batteries (4-pack),1,3.84,2019-11-21 18:39:00,39 Church St, Los Angeles,CA,90001 +278894,Bose SoundSport Headphones,1,99.99,2019-11-16 10:06:00,334 Pine St, Dallas,TX,75001 +278895,USB-C Charging Cable,1,11.95,2019-11-25 17:28:00,24 West St, Los Angeles,CA,90001 +278896,AAA Batteries (4-pack),2,2.99,2019-11-13 19:10:00,906 North St, New York City,NY,10001 +278897,27in FHD Monitor,1,149.99,2019-11-21 13:42:00,277 Hill St, San Francisco,CA,94016 +278898,34in Ultrawide Monitor,1,379.99,2019-11-02 20:23:00,938 6th St, Los Angeles,CA,90001 +278899,AA Batteries (4-pack),1,3.84,2019-11-10 20:51:00,328 1st St, Portland,OR,97035 +278900,Bose SoundSport Headphones,1,99.99,2019-11-13 18:34:00,948 North St, Boston,MA,02215 +278901,Lightning Charging Cable,1,14.95,2019-11-26 19:08:00,423 7th St, Los Angeles,CA,90001 +278902,ThinkPad Laptop,1,999.99,2019-11-22 17:49:00,117 4th St, San Francisco,CA,94016 +278903,Google Phone,1,600.0,2019-11-05 17:19:00,478 Dogwood St, San Francisco,CA,94016 +278904,AAA Batteries (4-pack),1,2.99,2019-11-03 13:57:00,396 Cedar St, Atlanta,GA,30301 +278905,AAA Batteries (4-pack),4,2.99,2019-11-04 14:13:00,458 Meadow St, Portland,OR,97035 +278906,Lightning Charging Cable,1,14.95,2019-11-04 14:51:00,873 Hickory St, Boston,MA,02215 +278907,USB-C Charging Cable,1,11.95,2019-11-09 16:43:00,697 West St, Dallas,TX,75001 +278908,27in 4K Gaming Monitor,1,389.99,2019-11-13 17:19:00,256 Adams St, Seattle,WA,98101 +278909,Lightning Charging Cable,1,14.95,2019-11-10 19:25:00,250 South St, Los Angeles,CA,90001 +278910,USB-C Charging Cable,1,11.95,2019-11-02 20:45:00,42 12th St, Boston,MA,02215 +278911,Macbook Pro Laptop,1,1700.0,2019-11-24 13:03:00,244 Walnut St, Los Angeles,CA,90001 +278912,AAA Batteries (4-pack),2,2.99,2019-11-08 11:02:00,319 Cherry St, Los Angeles,CA,90001 +278913,Lightning Charging Cable,1,14.95,2019-11-01 10:21:00,868 Elm St, Seattle,WA,98101 +278914,Wired Headphones,1,11.99,2019-11-30 15:01:00,222 Pine St, Boston,MA,02215 +278915,AA Batteries (4-pack),3,3.84,2019-11-11 18:39:00,267 North St, Los Angeles,CA,90001 +278916,Apple Airpods Headphones,1,150.0,2019-11-24 21:17:00,561 7th St, San Francisco,CA,94016 +278917,Apple Airpods Headphones,1,150.0,2019-11-19 22:08:00,787 Wilson St, Seattle,WA,98101 +278918,Apple Airpods Headphones,1,150.0,2019-11-01 09:49:00,325 Pine St, Austin,TX,73301 +278919,Lightning Charging Cable,1,14.95,2019-11-05 19:44:00,378 Ridge St, New York City,NY,10001 +278920,AA Batteries (4-pack),2,3.84,2019-11-18 12:55:00,886 Hill St, Seattle,WA,98101 +278921,Wired Headphones,1,11.99,2019-11-19 18:32:00,427 10th St, Austin,TX,73301 +278922,27in FHD Monitor,1,149.99,2019-11-06 15:35:00,143 10th St, San Francisco,CA,94016 +278923,AA Batteries (4-pack),1,3.84,2019-11-04 11:14:00,898 Chestnut St, Boston,MA,02215 +278924,Google Phone,1,600.0,2019-11-16 21:36:00,796 12th St, Dallas,TX,75001 +278925,27in 4K Gaming Monitor,1,389.99,2019-11-11 23:52:00,236 2nd St, Los Angeles,CA,90001 +278926,LG Washing Machine,1,600.0,2019-11-21 13:11:00,772 Maple St, Boston,MA,02215 +278927,Wired Headphones,1,11.99,2019-11-26 09:54:00,919 12th St, Atlanta,GA,30301 +278928,AAA Batteries (4-pack),1,2.99,2019-11-04 20:46:00,380 Willow St, San Francisco,CA,94016 +278929,USB-C Charging Cable,1,11.95,2019-11-23 18:52:00,472 2nd St, San Francisco,CA,94016 +278930,AAA Batteries (4-pack),1,2.99,2019-11-30 19:49:00,352 11th St, San Francisco,CA,94016 +278931,ThinkPad Laptop,1,999.99,2019-11-24 14:13:00,493 Center St, Boston,MA,02215 +278932,AA Batteries (4-pack),2,3.84,2019-11-26 13:47:00,385 4th St, New York City,NY,10001 +278933,USB-C Charging Cable,1,11.95,2019-11-17 11:28:00,611 Lake St, San Francisco,CA,94016 +278934,USB-C Charging Cable,1,11.95,2019-11-13 17:07:00,187 Lakeview St, San Francisco,CA,94016 +278935,AAA Batteries (4-pack),2,2.99,2019-11-13 21:04:00,845 Jackson St, Seattle,WA,98101 +278936,AA Batteries (4-pack),3,3.84,2019-11-04 20:12:00,167 9th St, San Francisco,CA,94016 +278937,Wired Headphones,1,11.99,2019-11-30 17:37:00,968 South St, San Francisco,CA,94016 +278938,ThinkPad Laptop,1,999.99,2019-11-02 18:52:00,198 Maple St, San Francisco,CA,94016 +278939,Apple Airpods Headphones,1,150.0,2019-11-17 09:51:00,191 14th St, Seattle,WA,98101 +278940,Apple Airpods Headphones,1,150.0,2019-11-23 10:51:00,140 2nd St, Boston,MA,02215 +278940,AAA Batteries (4-pack),4,2.99,2019-11-23 10:51:00,140 2nd St, Boston,MA,02215 +278941,27in 4K Gaming Monitor,1,389.99,2019-11-09 04:37:00,330 Elm St, New York City,NY,10001 +278942,27in FHD Monitor,1,149.99,2019-11-13 18:37:00,111 Dogwood St, San Francisco,CA,94016 +278943,USB-C Charging Cable,1,11.95,2019-11-04 09:47:00,108 Lake St, Boston,MA,02215 +278944,Google Phone,1,600.0,2019-11-14 22:19:00,600 Willow St, Portland,OR,97035 +278944,Bose SoundSport Headphones,1,99.99,2019-11-14 22:19:00,600 Willow St, Portland,OR,97035 +278945,Wired Headphones,1,11.99,2019-11-22 02:20:00,602 Johnson St, San Francisco,CA,94016 +278946,iPhone,1,700.0,2019-11-19 18:25:00,361 9th St, San Francisco,CA,94016 +278946,Lightning Charging Cable,1,14.95,2019-11-19 18:25:00,361 9th St, San Francisco,CA,94016 +278946,Wired Headphones,1,11.99,2019-11-19 18:25:00,361 9th St, San Francisco,CA,94016 +278947,Apple Airpods Headphones,1,150.0,2019-11-25 11:14:00,322 Madison St, New York City,NY,10001 +278948,ThinkPad Laptop,1,999.99,2019-11-17 15:17:00,464 Chestnut St, Boston,MA,02215 +278949,Lightning Charging Cable,1,14.95,2019-11-02 18:13:00,813 Park St, Los Angeles,CA,90001 +278950,Apple Airpods Headphones,1,150.0,2019-11-29 10:39:00,260 River St, Boston,MA,02215 +278951,Lightning Charging Cable,1,14.95,2019-11-07 17:03:00,401 13th St, Boston,MA,02215 +278952,AAA Batteries (4-pack),1,2.99,2019-11-17 12:04:00,947 5th St, Atlanta,GA,30301 +278953,AAA Batteries (4-pack),1,2.99,2019-11-11 13:52:00,919 North St, San Francisco,CA,94016 +278954,AA Batteries (4-pack),1,3.84,2019-11-13 11:42:00,536 Forest St, Dallas,TX,75001 +278955,USB-C Charging Cable,1,11.95,2019-11-14 23:48:00,271 Meadow St, Seattle,WA,98101 +278956,AA Batteries (4-pack),1,3.84,2019-11-22 09:57:00,894 Maple St, San Francisco,CA,94016 +278957,USB-C Charging Cable,1,11.95,2019-11-03 20:00:00,740 Forest St, Los Angeles,CA,90001 +278958,Lightning Charging Cable,2,14.95,2019-11-22 12:20:00,106 North St, Los Angeles,CA,90001 +278959,Apple Airpods Headphones,1,150.0,2019-11-12 15:52:00,206 West St, Los Angeles,CA,90001 +278960,Bose SoundSport Headphones,1,99.99,2019-11-15 22:33:00,386 Church St, Seattle,WA,98101 +278961,AAA Batteries (4-pack),1,2.99,2019-11-21 10:00:00,250 Madison St, Boston,MA,02215 +278962,Vareebadd Phone,1,400.0,2019-11-01 21:16:00,583 Adams St, Los Angeles,CA,90001 +278963,Bose SoundSport Headphones,1,99.99,2019-11-29 21:52:00,957 South St, San Francisco,CA,94016 +278964,Flatscreen TV,1,300.0,2019-11-13 03:56:00,200 Madison St, Dallas,TX,75001 +278965,AAA Batteries (4-pack),2,2.99,2019-11-17 11:29:00,744 Main St, San Francisco,CA,94016 +278966,AAA Batteries (4-pack),1,2.99,2019-11-04 16:57:00,188 Jefferson St, Atlanta,GA,30301 +278967,Flatscreen TV,1,300.0,2019-11-05 09:53:00,803 Wilson St, New York City,NY,10001 +278968,AAA Batteries (4-pack),2,2.99,2019-11-30 09:38:00,923 Maple St, San Francisco,CA,94016 +278969,27in FHD Monitor,1,149.99,2019-11-17 13:36:00,589 13th St, Atlanta,GA,30301 +278970,Google Phone,1,600.0,2019-11-21 13:36:00,21 14th St, San Francisco,CA,94016 +278970,USB-C Charging Cable,1,11.95,2019-11-21 13:36:00,21 14th St, San Francisco,CA,94016 +278971,27in 4K Gaming Monitor,1,389.99,2019-11-11 14:49:00,868 8th St, Atlanta,GA,30301 +278972,AA Batteries (4-pack),3,3.84,2019-11-11 09:45:00,817 Spruce St, Boston,MA,02215 +278973,27in 4K Gaming Monitor,1,389.99,2019-11-27 13:52:00,808 Walnut St, Boston,MA,02215 +278974,Apple Airpods Headphones,1,150.0,2019-11-08 11:25:00,81 North St, San Francisco,CA,94016 +278975,Bose SoundSport Headphones,1,99.99,2019-11-19 00:29:00,387 Forest St, Boston,MA,02215 +278976,AAA Batteries (4-pack),1,2.99,2019-11-29 20:55:00,676 Sunset St, Los Angeles,CA,90001 +278977,AAA Batteries (4-pack),2,2.99,2019-11-27 09:57:00,121 5th St, New York City,NY,10001 +278978,USB-C Charging Cable,1,11.95,2019-11-20 16:02:00,13 Cherry St, San Francisco,CA,94016 +278979,AA Batteries (4-pack),1,3.84,2019-11-02 18:49:00,383 River St, Portland,OR,97035 +278980,USB-C Charging Cable,1,11.95,2019-11-29 05:20:00,893 Chestnut St, San Francisco,CA,94016 +278981,Flatscreen TV,1,300.0,2019-11-02 21:34:00,25 7th St, San Francisco,CA,94016 +278982,AAA Batteries (4-pack),1,2.99,2019-11-01 13:41:00,648 Jackson St, Los Angeles,CA,90001 +278983,ThinkPad Laptop,1,999.99,2019-11-17 05:33:00,392 4th St, Atlanta,GA,30301 +278984,ThinkPad Laptop,1,999.99,2019-11-10 11:05:00,877 Lincoln St, Dallas,TX,75001 +278985,Lightning Charging Cable,1,14.95,2019-11-08 11:22:00,357 10th St, Seattle,WA,98101 +278986,AA Batteries (4-pack),1,3.84,2019-11-12 13:50:00,161 Center St, Boston,MA,02215 +278987,Lightning Charging Cable,1,14.95,2019-11-05 21:38:00,704 11th St, Boston,MA,02215 +278988,USB-C Charging Cable,1,11.95,2019-11-15 16:36:00,589 Elm St, Boston,MA,02215 +278989,Flatscreen TV,1,300.0,2019-11-09 19:24:00,218 Willow St, San Francisco,CA,94016 +278990,Bose SoundSport Headphones,1,99.99,2019-11-26 12:29:00,50 Cedar St, Los Angeles,CA,90001 +278991,USB-C Charging Cable,1,11.95,2019-11-12 06:53:00,3 South St, New York City,NY,10001 +278992,LG Dryer,1,600.0,2019-11-13 19:40:00,456 West St, Boston,MA,02215 +278993,Lightning Charging Cable,1,14.95,2019-11-30 03:42:00,403 Chestnut St, New York City,NY,10001 +278994,Flatscreen TV,1,300.0,2019-11-11 19:36:00,774 Lake St, New York City,NY,10001 +278995,27in FHD Monitor,1,149.99,2019-11-17 21:05:00,828 Walnut St, Seattle,WA,98101 +278996,34in Ultrawide Monitor,1,379.99,2019-11-26 19:23:00,762 Madison St, Portland,OR,97035 +278997,Bose SoundSport Headphones,1,99.99,2019-11-01 22:17:00,821 Elm St, San Francisco,CA,94016 +278998,AA Batteries (4-pack),1,3.84,2019-11-06 22:21:00,85 Walnut St, San Francisco,CA,94016 +278999,Lightning Charging Cable,2,14.95,2019-11-10 07:13:00,90 5th St, Seattle,WA,98101 +279000,ThinkPad Laptop,1,999.99,2019-11-22 09:09:00,83 River St, New York City,NY,10001 +279001,AAA Batteries (4-pack),1,2.99,2019-11-18 14:34:00,569 Highland St, San Francisco,CA,94016 +279002,AA Batteries (4-pack),1,3.84,2019-11-15 15:10:00,122 9th St, Los Angeles,CA,90001 +279003,Apple Airpods Headphones,1,150.0,2019-11-25 12:08:00,537 12th St, Boston,MA,02215 +279004,Apple Airpods Headphones,1,150.0,2019-11-30 16:18:00,59 Hill St, New York City,NY,10001 +279005,Lightning Charging Cable,1,14.95,2019-11-16 07:05:00,222 12th St, Boston,MA,02215 +279005,Wired Headphones,1,11.99,2019-11-16 07:05:00,222 12th St, Boston,MA,02215 +279006,Flatscreen TV,1,300.0,2019-11-30 12:04:00,807 Meadow St, Boston,MA,02215 +279007,Apple Airpods Headphones,1,150.0,2019-11-08 18:39:00,953 7th St, Seattle,WA,98101 +279008,Apple Airpods Headphones,1,150.0,2019-11-27 16:04:00,174 Lakeview St, Boston,MA,02215 +279009,USB-C Charging Cable,1,11.95,2019-11-06 13:44:00,546 Washington St, New York City,NY,10001 +279010,Apple Airpods Headphones,1,150.0,2019-11-18 19:43:00,781 14th St, Boston,MA,02215 +279011,Apple Airpods Headphones,1,150.0,2019-11-02 12:29:00,973 Cedar St, Atlanta,GA,30301 +279012,AA Batteries (4-pack),1,3.84,2019-11-13 14:52:00,564 Cedar St, Boston,MA,02215 +279013,AAA Batteries (4-pack),1,2.99,2019-11-30 11:36:00,225 2nd St, Seattle,WA,98101 +279014,27in 4K Gaming Monitor,1,389.99,2019-11-04 19:58:00,740 Park St, Seattle,WA,98101 +279015,AAA Batteries (4-pack),1,2.99,2019-11-22 19:48:00,504 Hill St, Boston,MA,02215 +279016,Apple Airpods Headphones,1,150.0,2019-11-20 12:05:00,564 North St, Atlanta,GA,30301 +279017,AAA Batteries (4-pack),1,2.99,2019-11-15 08:04:00,24 Wilson St, Atlanta,GA,30301 +279018,AAA Batteries (4-pack),1,2.99,2019-11-02 22:17:00,923 Sunset St, Los Angeles,CA,90001 +279019,Wired Headphones,1,11.99,2019-11-05 19:11:00,858 11th St, Atlanta,GA,30301 +279020,34in Ultrawide Monitor,1,379.99,2019-11-28 17:00:00,518 Forest St, Seattle,WA,98101 +279021,Wired Headphones,1,11.99,2019-11-25 19:13:00,715 Lake St, Atlanta,GA,30301 +279022,27in 4K Gaming Monitor,1,389.99,2019-11-26 11:46:00,136 Lakeview St, Los Angeles,CA,90001 +279023,Macbook Pro Laptop,1,1700.0,2019-11-03 13:19:00,417 Park St, Boston,MA,02215 +279024,Google Phone,1,600.0,2019-11-01 18:11:00,745 West St, Portland,OR,97035 +279025,27in FHD Monitor,1,149.99,2019-11-01 13:05:00,181 Adams St, Portland,OR,97035 +279026,Macbook Pro Laptop,1,1700.0,2019-11-25 19:29:00,232 8th St, Boston,MA,02215 +279027,USB-C Charging Cable,1,11.95,2019-11-07 14:01:00,198 River St, Seattle,WA,98101 +279028,USB-C Charging Cable,1,11.95,2019-11-19 13:40:00,466 Dogwood St, Seattle,WA,98101 +279029,USB-C Charging Cable,1,11.95,2019-11-07 02:09:00,602 South St, Seattle,WA,98101 +279030,34in Ultrawide Monitor,1,379.99,2019-11-22 18:44:00,730 4th St, New York City,NY,10001 +279031,USB-C Charging Cable,2,11.95,2019-11-21 20:38:00,650 Main St, San Francisco,CA,94016 +279032,Apple Airpods Headphones,1,150.0,2019-11-17 14:56:00,741 Willow St, New York City,NY,10001 +279033,Apple Airpods Headphones,1,150.0,2019-11-15 20:28:00,665 Lake St, San Francisco,CA,94016 +279034,iPhone,1,700.0,2019-11-30 13:10:00,221 Forest St, Dallas,TX,75001 +279035,iPhone,1,700.0,2019-11-19 18:25:00,379 Madison St, San Francisco,CA,94016 +279036,20in Monitor,1,109.99,2019-11-18 20:08:00,582 6th St, San Francisco,CA,94016 +279037,Wired Headphones,1,11.99,2019-11-28 21:38:00,165 Cherry St, San Francisco,CA,94016 +279038,Lightning Charging Cable,1,14.95,2019-11-03 14:23:00,586 Cherry St, San Francisco,CA,94016 +279039,USB-C Charging Cable,1,11.95,2019-11-22 17:05:00,675 Spruce St, Portland,OR,97035 +279040,27in FHD Monitor,1,149.99,2019-11-29 17:20:00,780 Main St, Atlanta,GA,30301 +279041,USB-C Charging Cable,1,11.95,2019-11-30 21:12:00,506 7th St, Los Angeles,CA,90001 +279042,Wired Headphones,1,11.99,2019-11-06 10:19:00,773 River St, Boston,MA,02215 +279043,20in Monitor,1,109.99,2019-11-20 12:46:00,174 2nd St, Portland,OR,97035 +279044,AAA Batteries (4-pack),2,2.99,2019-11-11 08:09:00,373 Sunset St, Seattle,WA,98101 +279045,Apple Airpods Headphones,1,150.0,2019-11-04 13:56:00,338 Spruce St, San Francisco,CA,94016 +279046,Wired Headphones,1,11.99,2019-11-16 14:44:00,126 Forest St, New York City,NY,10001 +279047,AA Batteries (4-pack),1,3.84,2019-11-22 11:22:00,586 5th St, San Francisco,CA,94016 +279048,USB-C Charging Cable,1,11.95,2019-11-23 16:35:00,442 1st St, Dallas,TX,75001 +279049,Apple Airpods Headphones,1,150.0,2019-11-18 15:22:00,273 Johnson St, Boston,MA,02215 +279050,USB-C Charging Cable,1,11.95,2019-11-11 12:58:00,248 12th St, Boston,MA,02215 +279051,AAA Batteries (4-pack),1,2.99,2019-11-23 21:37:00,287 11th St, Austin,TX,73301 +279052,Apple Airpods Headphones,1,150.0,2019-11-19 15:01:00,79 Ridge St, Austin,TX,73301 +279053,27in 4K Gaming Monitor,1,389.99,2019-11-04 13:46:00,875 6th St, Atlanta,GA,30301 +279054,ThinkPad Laptop,1,999.99,2019-11-27 17:40:00,538 1st St, Portland,OR,97035 +279055,USB-C Charging Cable,1,11.95,2019-11-06 15:38:00,906 11th St, Portland,OR,97035 +279056,Lightning Charging Cable,1,14.95,2019-11-12 17:36:00,954 Church St, San Francisco,CA,94016 +279057,Lightning Charging Cable,1,14.95,2019-11-22 18:06:00,309 Ridge St, Los Angeles,CA,90001 +279058,Apple Airpods Headphones,1,150.0,2019-11-04 07:46:00,573 Jackson St, Seattle,WA,98101 +279059,27in FHD Monitor,1,149.99,2019-11-27 08:33:00,250 Main St, Portland,OR,97035 +279060,34in Ultrawide Monitor,1,379.99,2019-11-15 12:23:00,671 Hickory St, Boston,MA,02215 +279061,USB-C Charging Cable,1,11.95,2019-11-28 11:43:00,83 9th St, Los Angeles,CA,90001 +279062,Macbook Pro Laptop,1,1700.0,2019-11-15 20:12:00,924 Church St, San Francisco,CA,94016 +279063,27in 4K Gaming Monitor,1,389.99,2019-11-07 10:05:00,307 Dogwood St, New York City,NY,10001 +279064,iPhone,1,700.0,2019-11-24 18:28:00,415 Lincoln St, San Francisco,CA,94016 +279065,iPhone,1,700.0,2019-11-14 11:12:00,977 Johnson St, Atlanta,GA,30301 +279066,Flatscreen TV,1,300.0,2019-11-30 23:19:00,79 Hickory St, New York City,NY,10001 +279067,AA Batteries (4-pack),1,3.84,2019-11-25 11:50:00,621 Wilson St, Boston,MA,02215 +279068,Flatscreen TV,1,300.0,2019-11-01 16:07:00,97 Hill St, Austin,TX,73301 +279068,AAA Batteries (4-pack),5,2.99,2019-11-01 16:07:00,97 Hill St, Austin,TX,73301 +279069,USB-C Charging Cable,1,11.95,2019-11-14 16:30:00,593 South St, San Francisco,CA,94016 +279070,iPhone,1,700.0,2019-11-21 16:01:00,407 North St, Los Angeles,CA,90001 +279071,AAA Batteries (4-pack),3,2.99,2019-11-21 18:00:00,87 Center St, New York City,NY,10001 +279072,AA Batteries (4-pack),2,3.84,2019-11-04 07:28:00,330 Main St, Austin,TX,73301 +279073,AA Batteries (4-pack),1,3.84,2019-11-16 19:17:00,858 Cherry St, Boston,MA,02215 +279074,34in Ultrawide Monitor,1,379.99,2019-11-15 12:43:00,602 Hickory St, Los Angeles,CA,90001 +279075,Wired Headphones,1,11.99,2019-11-11 15:58:00,940 4th St, Portland,OR,97035 +279076,Wired Headphones,1,11.99,2019-11-25 11:57:00,204 2nd St, San Francisco,CA,94016 +279077,AAA Batteries (4-pack),1,2.99,2019-11-28 19:56:00,829 11th St, San Francisco,CA,94016 +279078,27in FHD Monitor,1,149.99,2019-11-09 16:09:00,979 6th St, New York City,NY,10001 +279079,USB-C Charging Cable,1,11.95,2019-11-03 22:31:00,874 Forest St, San Francisco,CA,94016 +279080,Apple Airpods Headphones,1,150.0,2019-11-27 18:20:00,93 Pine St, New York City,NY,10001 +279081,Wired Headphones,1,11.99,2019-11-25 01:20:00,521 9th St, Atlanta,GA,30301 +279082,Bose SoundSport Headphones,1,99.99,2019-11-20 19:58:00,680 Hill St, Los Angeles,CA,90001 +279083,USB-C Charging Cable,1,11.95,2019-11-30 07:23:00,300 Willow St, Portland,OR,97035 +279084,Vareebadd Phone,1,400.0,2019-11-30 16:31:00,700 River St, Dallas,TX,75001 +279085,Lightning Charging Cable,1,14.95,2019-11-01 22:01:00,968 Elm St, New York City,NY,10001 +279086,Wired Headphones,1,11.99,2019-11-12 06:32:00,702 Cherry St, San Francisco,CA,94016 +279087,34in Ultrawide Monitor,1,379.99,2019-11-18 15:44:00,594 South St, San Francisco,CA,94016 +279088,AA Batteries (4-pack),1,3.84,2019-11-17 05:25:00,627 Washington St, New York City,NY,10001 +279089,Bose SoundSport Headphones,1,99.99,2019-11-04 16:26:00,793 Main St, Portland,OR,97035 +279090,Vareebadd Phone,1,400.0,2019-11-02 11:07:00,105 Park St, Seattle,WA,98101 +279091,27in FHD Monitor,1,149.99,2019-11-23 15:29:00,924 9th St, Portland,OR,97035 +279092,Lightning Charging Cable,1,14.95,2019-11-01 15:33:00,47 Cedar St, Atlanta,GA,30301 +279093,USB-C Charging Cable,2,11.95,2019-11-24 22:59:00,571 Willow St, Portland,ME,04101 +279094,Lightning Charging Cable,1,14.95,2019-11-01 17:55:00,899 Adams St, New York City,NY,10001 +279095,AA Batteries (4-pack),2,3.84,2019-12-01 01:13:00,134 North St, San Francisco,CA,94016 +279096,AAA Batteries (4-pack),1,2.99,2019-11-02 10:13:00,339 Lake St, Dallas,TX,75001 +279097,27in 4K Gaming Monitor,1,389.99,2019-11-01 19:42:00,240 Wilson St, Los Angeles,CA,90001 +279098,Wired Headphones,1,11.99,2019-11-08 17:57:00,841 7th St, Seattle,WA,98101 +279099,34in Ultrawide Monitor,1,379.99,2019-11-28 12:16:00,921 River St, New York City,NY,10001 +279100,Lightning Charging Cable,1,14.95,2019-11-25 17:40:00,215 Church St, Portland,OR,97035 +279101,AA Batteries (4-pack),1,3.84,2019-11-26 17:24:00,549 Jackson St, San Francisco,CA,94016 +279102,USB-C Charging Cable,1,11.95,2019-11-18 22:30:00,494 6th St, Atlanta,GA,30301 +279103,Wired Headphones,1,11.99,2019-11-02 15:07:00,555 12th St, Atlanta,GA,30301 +279104,Apple Airpods Headphones,1,150.0,2019-11-17 09:46:00,440 Pine St, San Francisco,CA,94016 +279105,34in Ultrawide Monitor,1,379.99,2019-11-19 12:23:00,736 Washington St, Dallas,TX,75001 +279106,Vareebadd Phone,1,400.0,2019-11-07 14:07:00,334 Lincoln St, Los Angeles,CA,90001 +279107,Macbook Pro Laptop,1,1700.0,2019-11-26 10:43:00,687 Lincoln St, Los Angeles,CA,90001 +279108,Macbook Pro Laptop,1,1700.0,2019-11-27 10:54:00,145 Lincoln St, Seattle,WA,98101 +279109,Lightning Charging Cable,1,14.95,2019-11-01 12:03:00,736 Walnut St, San Francisco,CA,94016 +279110,Apple Airpods Headphones,1,150.0,2019-11-13 23:00:00,525 Pine St, Dallas,TX,75001 +279111,27in FHD Monitor,1,149.99,2019-11-04 16:38:00,320 Center St, New York City,NY,10001 +279112,Wired Headphones,1,11.99,2019-11-16 20:47:00,275 11th St, Los Angeles,CA,90001 +279113,AA Batteries (4-pack),1,3.84,2019-11-05 09:36:00,702 6th St, San Francisco,CA,94016 +279114,Apple Airpods Headphones,1,150.0,2019-11-29 18:47:00,91 Church St, Portland,ME,04101 +279115,Lightning Charging Cable,1,14.95,2019-11-03 18:36:00,667 Lakeview St, San Francisco,CA,94016 +279116,AAA Batteries (4-pack),1,2.99,2019-11-01 09:02:00,11 Adams St, San Francisco,CA,94016 +279117,ThinkPad Laptop,1,999.99,2019-11-03 12:21:00,117 14th St, Dallas,TX,75001 +279118,34in Ultrawide Monitor,1,379.99,2019-11-04 13:32:00,700 Spruce St, New York City,NY,10001 +279119,Apple Airpods Headphones,1,150.0,2019-11-05 11:45:00,544 Willow St, San Francisco,CA,94016 +279120,20in Monitor,1,109.99,2019-11-03 17:35:00,231 1st St, Boston,MA,02215 +279121,AA Batteries (4-pack),1,3.84,2019-11-25 12:07:00,619 9th St, San Francisco,CA,94016 +279122,Wired Headphones,1,11.99,2019-11-20 17:19:00,743 Ridge St, San Francisco,CA,94016 +279123,Lightning Charging Cable,1,14.95,2019-11-01 08:24:00,847 9th St, Dallas,TX,75001 +279124,iPhone,1,700.0,2019-11-26 22:43:00,579 11th St, Portland,OR,97035 +279125,Bose SoundSport Headphones,1,99.99,2019-11-09 22:07:00,416 Sunset St, San Francisco,CA,94016 +279126,Bose SoundSport Headphones,1,99.99,2019-11-14 19:49:00,585 Church St, Atlanta,GA,30301 +279127,Apple Airpods Headphones,1,150.0,2019-11-02 16:37:00,967 Johnson St, Dallas,TX,75001 +279128,27in FHD Monitor,1,149.99,2019-11-01 19:54:00,262 Hickory St, Atlanta,GA,30301 +279129,Wired Headphones,1,11.99,2019-11-25 20:37:00,33 13th St, Dallas,TX,75001 +279130,Wired Headphones,1,11.99,2019-11-30 17:56:00,459 Jackson St, New York City,NY,10001 +279131,Flatscreen TV,1,300.0,2019-11-02 15:21:00,880 Dogwood St, Los Angeles,CA,90001 +279132,Flatscreen TV,1,300.0,2019-11-08 09:05:00,483 North St, Boston,MA,02215 +279133,Apple Airpods Headphones,1,150.0,2019-11-11 09:23:00,450 Walnut St, San Francisco,CA,94016 +279134,AAA Batteries (4-pack),2,2.99,2019-11-22 22:27:00,833 Johnson St, Los Angeles,CA,90001 +279135,AAA Batteries (4-pack),2,2.99,2019-11-17 23:10:00,125 Maple St, Austin,TX,73301 +279136,Bose SoundSport Headphones,1,99.99,2019-11-03 19:08:00,106 Wilson St, Atlanta,GA,30301 +279137,USB-C Charging Cable,1,11.95,2019-11-22 12:10:00,909 12th St, Los Angeles,CA,90001 +279138,USB-C Charging Cable,1,11.95,2019-11-28 13:47:00,766 North St, Seattle,WA,98101 +279139,AAA Batteries (4-pack),1,2.99,2019-11-17 21:48:00,265 Cedar St, New York City,NY,10001 +279140,Lightning Charging Cable,1,14.95,2019-11-27 10:20:00,138 2nd St, New York City,NY,10001 +279141,USB-C Charging Cable,1,11.95,2019-11-03 12:10:00,42 Cherry St, Boston,MA,02215 +279142,Lightning Charging Cable,1,14.95,2019-11-13 21:18:00,275 Forest St, Los Angeles,CA,90001 +279143,AA Batteries (4-pack),1,3.84,2019-11-06 11:43:00,480 Main St, New York City,NY,10001 +279144,20in Monitor,1,109.99,2019-11-17 18:09:00,86 Highland St, San Francisco,CA,94016 +279145,USB-C Charging Cable,1,11.95,2019-11-05 08:13:00,281 14th St, San Francisco,CA,94016 +279146,AAA Batteries (4-pack),1,2.99,2019-11-02 08:25:00,758 Meadow St, Seattle,WA,98101 +279147,Apple Airpods Headphones,1,150.0,2019-11-26 21:20:00,606 Jefferson St, Atlanta,GA,30301 +279148,Wired Headphones,1,11.99,2019-11-28 15:16:00,321 Adams St, Atlanta,GA,30301 +279149,Lightning Charging Cable,1,14.95,2019-11-27 03:49:00,510 Johnson St, Dallas,TX,75001 +279150,Wired Headphones,1,11.99,2019-11-11 12:35:00,107 North St, San Francisco,CA,94016 +279151,Wired Headphones,1,11.99,2019-11-25 08:03:00,20 Adams St, Los Angeles,CA,90001 +279152,Wired Headphones,1,11.99,2019-11-08 08:45:00,287 Hickory St, Austin,TX,73301 +279153,USB-C Charging Cable,1,11.95,2019-11-25 09:52:00,12 Lakeview St, Atlanta,GA,30301 +279154,Flatscreen TV,1,300.0,2019-11-27 21:17:00,129 Meadow St, Los Angeles,CA,90001 +279155,AAA Batteries (4-pack),2,2.99,2019-11-25 11:35:00,403 Wilson St, New York City,NY,10001 +279156,Lightning Charging Cable,1,14.95,2019-11-27 22:26:00,416 Center St, Los Angeles,CA,90001 +279157,USB-C Charging Cable,1,11.95,2019-11-21 21:23:00,856 Spruce St, Los Angeles,CA,90001 +279158,Flatscreen TV,1,300.0,2019-11-29 19:06:00,949 Washington St, Boston,MA,02215 +279159,USB-C Charging Cable,1,11.95,2019-11-17 20:10:00,991 2nd St, New York City,NY,10001 +279160,iPhone,1,700.0,2019-11-01 10:37:00,457 Dogwood St, Seattle,WA,98101 +279161,Google Phone,1,600.0,2019-11-24 10:34:00,472 Chestnut St, Portland,ME,04101 +279162,iPhone,1,700.0,2019-11-27 18:22:00,776 Lake St, Austin,TX,73301 +279162,Lightning Charging Cable,1,14.95,2019-11-27 18:22:00,776 Lake St, Austin,TX,73301 +279163,AAA Batteries (4-pack),4,2.99,2019-11-29 15:33:00,590 Washington St, Boston,MA,02215 +279164,AAA Batteries (4-pack),1,2.99,2019-11-12 19:30:00,592 Adams St, Atlanta,GA,30301 +279165,AAA Batteries (4-pack),2,2.99,2019-11-08 14:44:00,89 Willow St, Seattle,WA,98101 +279166,Lightning Charging Cable,1,14.95,2019-11-09 21:14:00,795 6th St, San Francisco,CA,94016 +279167,Lightning Charging Cable,1,14.95,2019-11-15 11:03:00,477 Dogwood St, Los Angeles,CA,90001 +279168,USB-C Charging Cable,1,11.95,2019-11-04 13:06:00,208 West St, Los Angeles,CA,90001 +279169,Bose SoundSport Headphones,1,99.99,2019-11-05 11:59:00,48 10th St, New York City,NY,10001 +279170,Bose SoundSport Headphones,1,99.99,2019-11-15 13:37:00,110 Lake St, San Francisco,CA,94016 +279171,USB-C Charging Cable,2,11.95,2019-11-08 06:04:00,330 12th St, Los Angeles,CA,90001 +279172,AAA Batteries (4-pack),3,2.99,2019-11-02 09:26:00,782 Jefferson St, San Francisco,CA,94016 +279173,27in 4K Gaming Monitor,1,389.99,2019-11-07 12:03:00,279 Spruce St, Dallas,TX,75001 +279174,USB-C Charging Cable,1,11.95,2019-11-17 20:04:00,884 10th St, New York City,NY,10001 +279175,AAA Batteries (4-pack),1,2.99,2019-11-18 17:09:00,194 South St, Portland,OR,97035 +279175,Apple Airpods Headphones,1,150.0,2019-11-18 17:09:00,194 South St, Portland,OR,97035 +279176,27in FHD Monitor,1,149.99,2019-11-07 15:11:00,321 Lake St, Seattle,WA,98101 +279177,34in Ultrawide Monitor,1,379.99,2019-11-22 16:02:00,151 5th St, Portland,OR,97035 +279178,AA Batteries (4-pack),1,3.84,2019-11-17 18:46:00,58 13th St, Boston,MA,02215 +279179,20in Monitor,1,109.99,2019-11-05 17:51:00,568 Meadow St, San Francisco,CA,94016 +279180,Macbook Pro Laptop,1,1700.0,2019-11-05 08:50:00,160 Maple St, Portland,OR,97035 +279181,AA Batteries (4-pack),1,3.84,2019-11-26 21:53:00,641 Cherry St, Portland,OR,97035 +279182,27in FHD Monitor,1,149.99,2019-11-07 11:51:00,41 Pine St, San Francisco,CA,94016 +279183,AA Batteries (4-pack),2,3.84,2019-11-05 16:14:00,619 Forest St, Seattle,WA,98101 +279184,Wired Headphones,1,11.99,2019-11-05 22:43:00,235 14th St, Los Angeles,CA,90001 +279185,Bose SoundSport Headphones,1,99.99,2019-11-24 09:43:00,409 Highland St, Atlanta,GA,30301 +279186,27in FHD Monitor,1,149.99,2019-11-25 21:01:00,597 7th St, Atlanta,GA,30301 +279187,AA Batteries (4-pack),1,3.84,2019-11-17 08:48:00,980 Lincoln St, Los Angeles,CA,90001 +279188,Flatscreen TV,1,300.0,2019-11-07 15:20:00,478 8th St, Austin,TX,73301 +279189,AA Batteries (4-pack),1,3.84,2019-11-21 00:30:00,322 River St, Los Angeles,CA,90001 +279190,Wired Headphones,1,11.99,2019-11-19 07:12:00,506 West St, Los Angeles,CA,90001 +279191,Wired Headphones,1,11.99,2019-11-09 13:40:00,972 Jefferson St, Seattle,WA,98101 +279192,AAA Batteries (4-pack),4,2.99,2019-11-07 17:26:00,479 Church St, San Francisco,CA,94016 +279193,iPhone,1,700.0,2019-11-20 20:06:00,543 Center St, San Francisco,CA,94016 +279194,Bose SoundSport Headphones,1,99.99,2019-11-13 13:04:00,790 Washington St, San Francisco,CA,94016 +279195,AAA Batteries (4-pack),2,2.99,2019-11-04 09:58:00,103 Elm St, Boston,MA,02215 +279196,Lightning Charging Cable,1,14.95,2019-11-24 02:20:00,449 Ridge St, New York City,NY,10001 +279197,27in FHD Monitor,1,149.99,2019-11-12 15:47:00,920 Main St, Los Angeles,CA,90001 +279198,Apple Airpods Headphones,1,150.0,2019-11-03 19:45:00,768 Dogwood St, Los Angeles,CA,90001 +279199,Apple Airpods Headphones,1,150.0,2019-11-08 08:49:00,827 Lincoln St, Boston,MA,02215 +279200,Wired Headphones,3,11.99,2019-11-24 17:26:00,343 Dogwood St, Boston,MA,02215 +279201,Bose SoundSport Headphones,1,99.99,2019-11-15 01:30:00,526 Main St, San Francisco,CA,94016 +279202,Macbook Pro Laptop,1,1700.0,2019-11-05 17:53:00,671 River St, Dallas,TX,75001 +279203,Apple Airpods Headphones,1,150.0,2019-11-01 17:10:00,963 Main St, New York City,NY,10001 +279204,Lightning Charging Cable,1,14.95,2019-11-16 15:18:00,441 Church St, New York City,NY,10001 +279205,Lightning Charging Cable,1,14.95,2019-11-04 07:19:00,417 Meadow St, Portland,OR,97035 +279206,AAA Batteries (4-pack),1,2.99,2019-11-09 19:07:00,464 14th St, San Francisco,CA,94016 +279207,AA Batteries (4-pack),1,3.84,2019-11-23 21:30:00,766 Church St, Seattle,WA,98101 +279208,20in Monitor,1,109.99,2019-11-25 08:23:00,623 Spruce St, Los Angeles,CA,90001 +279209,AAA Batteries (4-pack),2,2.99,2019-11-10 19:51:00,883 Lakeview St, San Francisco,CA,94016 +279210,Apple Airpods Headphones,1,150.0,2019-11-23 22:47:00,876 Highland St, San Francisco,CA,94016 +279211,USB-C Charging Cable,1,11.95,2019-11-29 14:00:00,237 5th St, San Francisco,CA,94016 +279212,iPhone,1,700.0,2019-11-12 01:49:00,64 Lake St, Seattle,WA,98101 +279213,USB-C Charging Cable,1,11.95,2019-11-13 12:47:00,851 8th St, New York City,NY,10001 +279214,AA Batteries (4-pack),1,3.84,2019-11-19 09:30:00,880 Wilson St, San Francisco,CA,94016 +279215,USB-C Charging Cable,1,11.95,2019-11-28 13:22:00,315 Sunset St, Portland,OR,97035 +279216,20in Monitor,1,109.99,2019-11-22 17:18:00,975 13th St, San Francisco,CA,94016 +279217,Google Phone,1,600.0,2019-11-19 09:33:00,206 Meadow St, San Francisco,CA,94016 +279218,Flatscreen TV,1,300.0,2019-11-01 19:20:00,828 Jackson St, Los Angeles,CA,90001 +279219,27in 4K Gaming Monitor,1,389.99,2019-11-22 23:06:00,222 Walnut St, Austin,TX,73301 +279220,Google Phone,1,600.0,2019-11-20 02:46:00,435 2nd St, New York City,NY,10001 +279221,AA Batteries (4-pack),1,3.84,2019-11-23 09:06:00,404 North St, Atlanta,GA,30301 +279222,Macbook Pro Laptop,1,1700.0,2019-11-12 11:10:00,100 Lakeview St, Los Angeles,CA,90001 +279223,AAA Batteries (4-pack),1,2.99,2019-11-05 20:04:00,2 Main St, San Francisco,CA,94016 +279224,Lightning Charging Cable,1,14.95,2019-11-05 09:08:00,681 5th St, Boston,MA,02215 +279225,Wired Headphones,1,11.99,2019-11-06 21:40:00,512 Maple St, Atlanta,GA,30301 +279226,20in Monitor,1,109.99,2019-11-12 13:27:00,329 West St, Los Angeles,CA,90001 +279227,Apple Airpods Headphones,1,150.0,2019-11-02 14:33:00,204 River St, Portland,OR,97035 +279228,Wired Headphones,1,11.99,2019-11-04 12:24:00,873 4th St, San Francisco,CA,94016 +279229,Macbook Pro Laptop,1,1700.0,2019-11-12 10:07:00,439 Jefferson St, San Francisco,CA,94016 +279230,Lightning Charging Cable,1,14.95,2019-11-04 23:35:00,723 Sunset St, Los Angeles,CA,90001 +279231,AA Batteries (4-pack),1,3.84,2019-11-08 15:17:00,187 Wilson St, Los Angeles,CA,90001 +279232,Lightning Charging Cable,1,14.95,2019-11-02 20:21:00,460 Spruce St, Dallas,TX,75001 +279233,USB-C Charging Cable,2,11.95,2019-11-23 20:32:00,458 Ridge St, Boston,MA,02215 +279234,Bose SoundSport Headphones,1,99.99,2019-11-19 12:26:00,415 Hickory St, Austin,TX,73301 +279235,27in FHD Monitor,1,149.99,2019-11-16 12:27:00,168 River St, Portland,OR,97035 +279236,Google Phone,1,600.0,2019-11-10 19:19:00,988 North St, New York City,NY,10001 +279237,Wired Headphones,1,11.99,2019-11-17 15:49:00,646 9th St, Boston,MA,02215 +279238,AA Batteries (4-pack),1,3.84,2019-11-27 13:55:00,265 Church St, Boston,MA,02215 +279239,Lightning Charging Cable,1,14.95,2019-11-03 10:59:00,865 12th St, Atlanta,GA,30301 +279240,Apple Airpods Headphones,1,150.0,2019-11-09 16:18:00,849 Jefferson St, San Francisco,CA,94016 +279241,Wired Headphones,1,11.99,2019-11-19 18:18:00,638 Cedar St, Portland,OR,97035 +279242,USB-C Charging Cable,1,11.95,2019-11-25 16:49:00,635 Sunset St, Los Angeles,CA,90001 +279243,27in FHD Monitor,1,149.99,2019-11-08 14:17:00,294 2nd St, Los Angeles,CA,90001 +279244,Lightning Charging Cable,1,14.95,2019-11-18 12:12:00,218 Main St, Atlanta,GA,30301 +279245,AAA Batteries (4-pack),1,2.99,2019-11-01 11:25:00,554 Church St, San Francisco,CA,94016 +279246,AA Batteries (4-pack),1,3.84,2019-11-10 20:41:00,867 Center St, Portland,OR,97035 +279247,Bose SoundSport Headphones,1,99.99,2019-11-23 17:40:00,977 Ridge St, Boston,MA,02215 +279248,Google Phone,1,600.0,2019-11-06 09:11:00,467 12th St, San Francisco,CA,94016 +279249,Flatscreen TV,1,300.0,2019-11-23 21:09:00,531 8th St, Austin,TX,73301 +279250,AA Batteries (4-pack),1,3.84,2019-11-05 10:54:00,538 12th St, San Francisco,CA,94016 +279251,Lightning Charging Cable,1,14.95,2019-11-04 14:49:00,667 14th St, Seattle,WA,98101 +279252,Wired Headphones,1,11.99,2019-11-05 12:38:00,950 12th St, Atlanta,GA,30301 +279253,27in 4K Gaming Monitor,1,389.99,2019-11-24 19:45:00,586 8th St, Los Angeles,CA,90001 +279254,AA Batteries (4-pack),1,3.84,2019-11-29 07:47:00,105 South St, San Francisco,CA,94016 +279255,Google Phone,1,600.0,2019-11-17 21:53:00,257 Cedar St, Portland,OR,97035 +279256,Apple Airpods Headphones,1,150.0,2019-11-11 00:01:00,116 Wilson St, Atlanta,GA,30301 +279257,20in Monitor,1,109.99,2019-11-17 08:24:00,27 Madison St, Portland,OR,97035 +279258,iPhone,1,700.0,2019-11-25 12:31:00,638 Ridge St, Los Angeles,CA,90001 +279258,Apple Airpods Headphones,1,150.0,2019-11-25 12:31:00,638 Ridge St, Los Angeles,CA,90001 +279258,Wired Headphones,1,11.99,2019-11-25 12:31:00,638 Ridge St, Los Angeles,CA,90001 +279259,27in FHD Monitor,1,149.99,2019-11-14 20:56:00,312 Madison St, San Francisco,CA,94016 +279260,LG Washing Machine,1,600.0,2019-11-19 20:04:00,514 Church St, Los Angeles,CA,90001 +279261,USB-C Charging Cable,1,11.95,2019-11-17 11:13:00,392 Sunset St, San Francisco,CA,94016 +279262,AA Batteries (4-pack),2,3.84,2019-11-08 17:48:00,586 Park St, Dallas,TX,75001 +279263,Lightning Charging Cable,1,14.95,2019-11-29 19:08:00,824 10th St, Los Angeles,CA,90001 +279264,Bose SoundSport Headphones,1,99.99,2019-11-27 07:07:00,756 6th St, Boston,MA,02215 +279265,AA Batteries (4-pack),1,3.84,2019-11-23 19:54:00,274 Jackson St, Boston,MA,02215 +279266,Wired Headphones,1,11.99,2019-11-21 13:58:00,616 7th St, New York City,NY,10001 +279267,AAA Batteries (4-pack),1,2.99,2019-11-17 18:12:00,928 4th St, Los Angeles,CA,90001 +279268,AA Batteries (4-pack),1,3.84,2019-11-18 19:29:00,491 Maple St, Dallas,TX,75001 +279269,Lightning Charging Cable,1,14.95,2019-11-15 13:25:00,125 Elm St, Atlanta,GA,30301 +279270,AAA Batteries (4-pack),1,2.99,2019-11-20 12:57:00,295 Pine St, Atlanta,GA,30301 +279271,Lightning Charging Cable,1,14.95,2019-11-28 21:44:00,327 11th St, Los Angeles,CA,90001 +279272,20in Monitor,1,109.99,2019-11-21 21:15:00,300 1st St, Los Angeles,CA,90001 +279273,Bose SoundSport Headphones,1,99.99,2019-11-24 17:53:00,222 Hickory St, Portland,OR,97035 +279274,AA Batteries (4-pack),1,3.84,2019-11-27 17:15:00,22 Church St, Dallas,TX,75001 +279274,Wired Headphones,1,11.99,2019-11-27 17:15:00,22 Church St, Dallas,TX,75001 +279275,Bose SoundSport Headphones,1,99.99,2019-11-03 00:00:00,135 North St, Los Angeles,CA,90001 +279276,AA Batteries (4-pack),1,3.84,2019-11-19 21:02:00,25 South St, Boston,MA,02215 +279277,Google Phone,1,600.0,2019-11-29 20:55:00,497 6th St, New York City,NY,10001 +279278,Lightning Charging Cable,1,14.95,2019-11-28 20:57:00,31 Ridge St, Austin,TX,73301 +279279,AAA Batteries (4-pack),1,2.99,2019-11-08 16:58:00,820 Lincoln St, Austin,TX,73301 +279280,27in 4K Gaming Monitor,1,389.99,2019-11-03 22:43:00,498 Dogwood St, San Francisco,CA,94016 +279281,34in Ultrawide Monitor,1,379.99,2019-11-20 11:14:00,703 West St, Los Angeles,CA,90001 +279282,Google Phone,1,600.0,2019-11-21 21:03:00,654 Spruce St, San Francisco,CA,94016 +279283,Lightning Charging Cable,1,14.95,2019-11-13 19:53:00,905 Johnson St, Los Angeles,CA,90001 +279284,Apple Airpods Headphones,1,150.0,2019-11-28 17:54:00,232 Sunset St, Austin,TX,73301 +279285,AA Batteries (4-pack),2,3.84,2019-11-23 21:19:00,866 North St, New York City,NY,10001 +279286,Lightning Charging Cable,1,14.95,2019-11-19 17:52:00,533 Washington St, New York City,NY,10001 +279287,AA Batteries (4-pack),1,3.84,2019-11-03 02:45:00,481 Meadow St, Atlanta,GA,30301 +279288,34in Ultrawide Monitor,1,379.99,2019-11-24 14:25:00,984 10th St, Atlanta,GA,30301 +279288,Wired Headphones,1,11.99,2019-11-24 14:25:00,984 10th St, Atlanta,GA,30301 +279289,USB-C Charging Cable,1,11.95,2019-11-03 22:13:00,773 Adams St, New York City,NY,10001 +279290,AA Batteries (4-pack),1,3.84,2019-11-24 11:26:00,536 Washington St, Austin,TX,73301 +279291,Flatscreen TV,1,300.0,2019-11-03 12:47:00,206 Jefferson St, San Francisco,CA,94016 +279292,AA Batteries (4-pack),3,3.84,2019-11-04 22:12:00,660 Church St, San Francisco,CA,94016 +279293,Lightning Charging Cable,2,14.95,2019-11-20 11:43:00,326 12th St, New York City,NY,10001 +279294,USB-C Charging Cable,1,11.95,2019-11-21 14:40:00,455 14th St, San Francisco,CA,94016 +279295,AAA Batteries (4-pack),1,2.99,2019-11-23 03:06:00,221 5th St, Seattle,WA,98101 +279296,AAA Batteries (4-pack),2,2.99,2019-11-09 08:45:00,906 Ridge St, San Francisco,CA,94016 +279297,AAA Batteries (4-pack),3,2.99,2019-11-03 15:44:00,523 Dogwood St, San Francisco,CA,94016 +279298,AA Batteries (4-pack),2,3.84,2019-11-29 17:06:00,764 Madison St, Los Angeles,CA,90001 +279299,Lightning Charging Cable,1,14.95,2019-11-10 22:07:00,910 8th St, Austin,TX,73301 +279300,AA Batteries (4-pack),1,3.84,2019-11-12 20:53:00,870 Jackson St, Boston,MA,02215 +279301,Apple Airpods Headphones,1,150.0,2019-11-28 20:15:00,168 Cedar St, New York City,NY,10001 +279302,Macbook Pro Laptop,1,1700.0,2019-11-11 15:02:00,708 4th St, New York City,NY,10001 +279303,AA Batteries (4-pack),1,3.84,2019-11-21 22:47:00,154 12th St, Atlanta,GA,30301 +279304,AAA Batteries (4-pack),1,2.99,2019-11-20 16:58:00,331 Walnut St, Dallas,TX,75001 +279305,Apple Airpods Headphones,1,150.0,2019-11-10 19:18:00,673 Johnson St, New York City,NY,10001 +279306,20in Monitor,1,109.99,2019-11-24 18:44:00,135 11th St, San Francisco,CA,94016 +279307,AAA Batteries (4-pack),1,2.99,2019-11-29 11:49:00,592 Willow St, Seattle,WA,98101 +279308,27in FHD Monitor,1,149.99,2019-11-01 13:51:00,887 6th St, Portland,OR,97035 +279309,USB-C Charging Cable,1,11.95,2019-11-12 15:24:00,256 6th St, San Francisco,CA,94016 +279310,ThinkPad Laptop,1,999.99,2019-11-02 18:19:00,118 2nd St, New York City,NY,10001 +279311,Wired Headphones,1,11.99,2019-11-03 17:53:00,793 12th St, San Francisco,CA,94016 +279312,27in 4K Gaming Monitor,1,389.99,2019-11-17 11:46:00,775 Meadow St, Seattle,WA,98101 +279313,USB-C Charging Cable,1,11.95,2019-11-11 19:04:00,301 Forest St, New York City,NY,10001 +279314,Macbook Pro Laptop,1,1700.0,2019-11-09 20:07:00,728 Walnut St, Atlanta,GA,30301 +279315,AA Batteries (4-pack),1,3.84,2019-11-02 10:06:00,273 Hill St, San Francisco,CA,94016 +279316,Wired Headphones,1,11.99,2019-11-21 10:56:00,644 Main St, San Francisco,CA,94016 +279316,Vareebadd Phone,1,400.0,2019-11-21 10:56:00,644 Main St, San Francisco,CA,94016 +279317,Flatscreen TV,1,300.0,2019-11-02 21:57:00,153 Wilson St, San Francisco,CA,94016 +279318,Bose SoundSport Headphones,1,99.99,2019-11-14 13:31:00,892 Spruce St, New York City,NY,10001 +279319,USB-C Charging Cable,1,11.95,2019-11-23 22:38:00,866 14th St, Atlanta,GA,30301 +279320,Vareebadd Phone,1,400.0,2019-11-25 08:24:00,58 West St, New York City,NY,10001 +279320,USB-C Charging Cable,1,11.95,2019-11-25 08:24:00,58 West St, New York City,NY,10001 +279321,Lightning Charging Cable,1,14.95,2019-11-23 20:13:00,175 2nd St, Atlanta,GA,30301 +279322,Lightning Charging Cable,1,14.95,2019-11-26 18:32:00,553 North St, New York City,NY,10001 +279323,27in 4K Gaming Monitor,1,389.99,2019-11-06 17:49:00,493 11th St, Dallas,TX,75001 +279324,USB-C Charging Cable,1,11.95,2019-11-15 21:23:00,862 6th St, San Francisco,CA,94016 +279325,Wired Headphones,1,11.99,2019-11-24 20:08:00,542 7th St, San Francisco,CA,94016 +279326,Bose SoundSport Headphones,1,99.99,2019-11-07 21:46:00,906 Walnut St, Dallas,TX,75001 +279327,AAA Batteries (4-pack),1,2.99,2019-11-05 15:49:00,313 Lake St, San Francisco,CA,94016 +279328,AAA Batteries (4-pack),1,2.99,2019-11-22 09:43:00,718 Cherry St, Dallas,TX,75001 +279329,Google Phone,1,600.0,2019-11-03 21:43:00,220 Center St, Boston,MA,02215 +279330,27in 4K Gaming Monitor,1,389.99,2019-11-16 18:58:00,82 Dogwood St, Los Angeles,CA,90001 +279331,Bose SoundSport Headphones,1,99.99,2019-11-18 08:47:00,432 Cedar St, San Francisco,CA,94016 +279332,Wired Headphones,1,11.99,2019-11-01 14:20:00,836 Johnson St, Portland,OR,97035 +279333,AAA Batteries (4-pack),2,2.99,2019-11-18 12:51:00,713 Maple St, Dallas,TX,75001 +279334,Lightning Charging Cable,1,14.95,2019-11-24 21:18:00,534 Adams St, Los Angeles,CA,90001 +279335,USB-C Charging Cable,1,11.95,2019-11-21 15:49:00,141 North St, Boston,MA,02215 +279336,Bose SoundSport Headphones,1,99.99,2019-11-27 14:25:00,174 Hill St, San Francisco,CA,94016 +279337,27in 4K Gaming Monitor,1,389.99,2019-11-07 23:59:00,405 Park St, Boston,MA,02215 +279338,Google Phone,1,600.0,2019-11-22 02:45:00,876 Dogwood St, Los Angeles,CA,90001 +279338,USB-C Charging Cable,1,11.95,2019-11-22 02:45:00,876 Dogwood St, Los Angeles,CA,90001 +279339,Vareebadd Phone,1,400.0,2019-11-08 11:21:00,62 Willow St, San Francisco,CA,94016 +279340,20in Monitor,1,109.99,2019-11-16 10:48:00,871 6th St, San Francisco,CA,94016 +279341,Bose SoundSport Headphones,1,99.99,2019-11-06 13:06:00,159 Forest St, Portland,OR,97035 +279342,AAA Batteries (4-pack),2,2.99,2019-11-27 15:48:00,202 5th St, Seattle,WA,98101 +279343,ThinkPad Laptop,1,999.99,2019-11-02 22:13:00,157 7th St, Los Angeles,CA,90001 +279344,27in 4K Gaming Monitor,1,389.99,2019-11-02 14:36:00,730 Hill St, Atlanta,GA,30301 +279345,Google Phone,1,600.0,2019-11-27 14:51:00,241 6th St, Portland,OR,97035 +279346,USB-C Charging Cable,1,11.95,2019-11-08 19:00:00,836 Main St, Portland,ME,04101 +279347,AAA Batteries (4-pack),1,2.99,2019-11-10 00:31:00,15 Pine St, New York City,NY,10001 +279348,27in FHD Monitor,1,149.99,2019-11-08 20:32:00,829 11th St, Seattle,WA,98101 +279349,27in 4K Gaming Monitor,1,389.99,2019-11-05 11:08:00,864 Wilson St, San Francisco,CA,94016 +279350,USB-C Charging Cable,1,11.95,2019-11-06 09:23:00,697 Lake St, Dallas,TX,75001 +279351,20in Monitor,1,109.99,2019-11-07 13:31:00,700 Walnut St, San Francisco,CA,94016 +279352,Apple Airpods Headphones,1,150.0,2019-11-22 01:05:00,175 Center St, San Francisco,CA,94016 +279353,AAA Batteries (4-pack),3,2.99,2019-11-03 11:43:00,535 Cedar St, Portland,ME,04101 +279354,Bose SoundSport Headphones,1,99.99,2019-11-04 15:26:00,542 Madison St, Seattle,WA,98101 +279355,Lightning Charging Cable,1,14.95,2019-11-24 13:13:00,177 Madison St, Seattle,WA,98101 +279356,Lightning Charging Cable,1,14.95,2019-11-22 15:29:00,292 Pine St, Boston,MA,02215 +279357,USB-C Charging Cable,1,11.95,2019-11-02 22:04:00,857 Hill St, New York City,NY,10001 +279358,AAA Batteries (4-pack),2,2.99,2019-11-02 13:54:00,122 Wilson St, San Francisco,CA,94016 +279359,AA Batteries (4-pack),1,3.84,2019-11-26 13:42:00,946 West St, Dallas,TX,75001 +279360,27in FHD Monitor,1,149.99,2019-11-12 21:28:00,822 Meadow St, Atlanta,GA,30301 +279361,Apple Airpods Headphones,1,150.0,2019-11-10 15:48:00,694 Willow St, San Francisco,CA,94016 +279362,Google Phone,1,600.0,2019-11-08 09:57:00,303 13th St, Los Angeles,CA,90001 +279363,34in Ultrawide Monitor,1,379.99,2019-11-05 12:33:00,231 Lake St, Boston,MA,02215 +279364,Flatscreen TV,1,300.0,2019-11-11 18:14:00,863 11th St, Boston,MA,02215 +279365,Bose SoundSport Headphones,1,99.99,2019-11-08 19:38:00,860 Main St, Los Angeles,CA,90001 +279366,Bose SoundSport Headphones,1,99.99,2019-11-28 17:54:00,723 North St, San Francisco,CA,94016 +279367,Apple Airpods Headphones,1,150.0,2019-11-05 23:31:00,66 Forest St, Atlanta,GA,30301 +279368,AAA Batteries (4-pack),2,2.99,2019-11-19 16:36:00,486 North St, Boston,MA,02215 +279369,iPhone,1,700.0,2019-11-12 23:13:00,98 River St, San Francisco,CA,94016 +279370,AAA Batteries (4-pack),3,2.99,2019-11-04 12:10:00,713 Jefferson St, Boston,MA,02215 +279371,Bose SoundSport Headphones,1,99.99,2019-11-23 17:49:00,152 Willow St, Atlanta,GA,30301 +279372,USB-C Charging Cable,1,11.95,2019-11-19 23:03:00,383 Chestnut St, Los Angeles,CA,90001 +279373,USB-C Charging Cable,1,11.95,2019-11-27 21:59:00,690 2nd St, Portland,ME,04101 +279374,34in Ultrawide Monitor,1,379.99,2019-11-09 19:11:00,440 Spruce St, Atlanta,GA,30301 +279375,Apple Airpods Headphones,1,150.0,2019-11-29 13:10:00,875 Lakeview St, Seattle,WA,98101 +279376,USB-C Charging Cable,1,11.95,2019-11-07 21:48:00,164 Washington St, Portland,OR,97035 +279377,USB-C Charging Cable,1,11.95,2019-11-03 16:48:00,832 6th St, Dallas,TX,75001 +279378,Bose SoundSport Headphones,1,99.99,2019-11-01 14:10:00,709 Highland St, Los Angeles,CA,90001 +279379,Flatscreen TV,1,300.0,2019-11-11 11:34:00,92 Maple St, Seattle,WA,98101 +279380,34in Ultrawide Monitor,1,379.99,2019-11-18 10:38:00,71 Johnson St, Los Angeles,CA,90001 +279381,AA Batteries (4-pack),1,3.84,2019-11-22 17:23:00,253 Lakeview St, Boston,MA,02215 +279382,AAA Batteries (4-pack),1,2.99,2019-11-07 17:03:00,774 Wilson St, San Francisco,CA,94016 +279383,27in FHD Monitor,1,149.99,2019-11-04 10:24:00,380 Center St, New York City,NY,10001 +279384,AA Batteries (4-pack),1,3.84,2019-11-02 19:05:00,940 Main St, Los Angeles,CA,90001 +279385,Flatscreen TV,1,300.0,2019-11-22 13:01:00,589 Elm St, San Francisco,CA,94016 +279386,AAA Batteries (4-pack),2,2.99,2019-11-06 13:13:00,699 4th St, New York City,NY,10001 +279387,27in FHD Monitor,1,149.99,2019-11-16 07:04:00,733 Wilson St, San Francisco,CA,94016 +279387,AA Batteries (4-pack),1,3.84,2019-11-16 07:04:00,733 Wilson St, San Francisco,CA,94016 +279388,AAA Batteries (4-pack),2,2.99,2019-11-04 09:15:00,579 1st St, San Francisco,CA,94016 +279389,Wired Headphones,1,11.99,2019-11-09 16:10:00,102 Chestnut St, Boston,MA,02215 +279390,AA Batteries (4-pack),1,3.84,2019-11-24 15:10:00,275 Madison St, San Francisco,CA,94016 +279391,AA Batteries (4-pack),1,3.84,2019-11-12 01:15:00,284 Jackson St, Dallas,TX,75001 +279392,USB-C Charging Cable,1,11.95,2019-11-22 12:12:00,588 Sunset St, San Francisco,CA,94016 +279393,Apple Airpods Headphones,1,150.0,2019-11-21 07:48:00,959 Adams St, Atlanta,GA,30301 +279394,ThinkPad Laptop,1,999.99,2019-11-18 11:51:00,628 14th St, Portland,OR,97035 +279395,Bose SoundSport Headphones,1,99.99,2019-11-22 18:50:00,707 River St, Los Angeles,CA,90001 +279396,Bose SoundSport Headphones,1,99.99,2019-11-20 12:13:00,284 Willow St, Portland,OR,97035 +279397,AAA Batteries (4-pack),1,2.99,2019-11-09 11:09:00,892 Willow St, Dallas,TX,75001 +279398,Apple Airpods Headphones,1,150.0,2019-11-06 18:24:00,202 Forest St, San Francisco,CA,94016 +279398,AAA Batteries (4-pack),2,2.99,2019-11-06 18:24:00,202 Forest St, San Francisco,CA,94016 +279399,iPhone,1,700.0,2019-11-02 18:06:00,383 2nd St, San Francisco,CA,94016 +279400,iPhone,1,700.0,2019-11-18 21:09:00,395 Center St, Boston,MA,02215 +279401,Wired Headphones,1,11.99,2019-11-19 21:02:00,365 9th St, Portland,OR,97035 +279402,34in Ultrawide Monitor,1,379.99,2019-11-11 05:03:00,315 11th St, Boston,MA,02215 +279403,Apple Airpods Headphones,1,150.0,2019-11-24 20:42:00,168 7th St, New York City,NY,10001 +279404,iPhone,1,700.0,2019-11-02 00:44:00,168 Adams St, New York City,NY,10001 +279405,Wired Headphones,1,11.99,2019-11-03 08:42:00,266 Ridge St, Boston,MA,02215 +279406,Wired Headphones,1,11.99,2019-11-09 11:56:00,495 Lake St, Seattle,WA,98101 +279407,USB-C Charging Cable,1,11.95,2019-11-08 10:50:00,913 Ridge St, San Francisco,CA,94016 +279408,Apple Airpods Headphones,1,150.0,2019-11-09 10:55:00,343 North St, Boston,MA,02215 +279409,Wired Headphones,1,11.99,2019-11-08 14:59:00,560 Center St, San Francisco,CA,94016 +279410,Wired Headphones,1,11.99,2019-11-30 22:35:00,530 West St, Los Angeles,CA,90001 +279411,27in FHD Monitor,1,149.99,2019-11-01 13:56:00,585 1st St, San Francisco,CA,94016 +279412,Wired Headphones,1,11.99,2019-11-08 14:01:00,641 6th St, New York City,NY,10001 +279413,USB-C Charging Cable,1,11.95,2019-11-02 17:35:00,144 7th St, Boston,MA,02215 +279414,20in Monitor,1,109.99,2019-11-08 11:13:00,747 Washington St, San Francisco,CA,94016 +279415,AA Batteries (4-pack),1,3.84,2019-11-20 19:08:00,15 Meadow St, Los Angeles,CA,90001 +279416,Apple Airpods Headphones,1,150.0,2019-11-08 12:32:00,97 Sunset St, Los Angeles,CA,90001 +279417,Wired Headphones,1,11.99,2019-11-01 12:38:00,575 1st St, Dallas,TX,75001 +279418,AAA Batteries (4-pack),1,2.99,2019-11-02 15:27:00,28 Main St, San Francisco,CA,94016 +279419,Flatscreen TV,1,300.0,2019-11-21 12:57:00,71 9th St, Los Angeles,CA,90001 +279420,Flatscreen TV,1,300.0,2019-11-26 23:06:00,925 8th St, New York City,NY,10001 +279421,Lightning Charging Cable,1,14.95,2019-11-04 12:18:00,629 Church St, San Francisco,CA,94016 +279422,Lightning Charging Cable,2,14.95,2019-11-26 14:24:00,336 Elm St, Portland,OR,97035 +279423,Wired Headphones,2,11.99,2019-11-13 19:10:00,391 Forest St, San Francisco,CA,94016 +279424,AAA Batteries (4-pack),2,2.99,2019-11-04 20:25:00,361 Hill St, Austin,TX,73301 +279425,iPhone,1,700.0,2019-11-19 16:55:00,269 5th St, San Francisco,CA,94016 +279426,Flatscreen TV,1,300.0,2019-11-05 06:32:00,574 14th St, Dallas,TX,75001 +279427,27in FHD Monitor,1,149.99,2019-11-03 11:46:00,539 Washington St, San Francisco,CA,94016 +279428,USB-C Charging Cable,1,11.95,2019-11-03 08:04:00,999 Maple St, Los Angeles,CA,90001 +279429,27in FHD Monitor,1,149.99,2019-11-10 19:52:00,84 14th St, New York City,NY,10001 +279430,AAA Batteries (4-pack),3,2.99,2019-11-30 10:12:00,352 Main St, Los Angeles,CA,90001 +279431,Wired Headphones,1,11.99,2019-11-01 15:15:00,737 Lake St, Los Angeles,CA,90001 +279432,AAA Batteries (4-pack),1,2.99,2019-11-02 23:36:00,540 2nd St, Seattle,WA,98101 +279433,USB-C Charging Cable,1,11.95,2019-11-16 17:55:00,819 Lincoln St, Atlanta,GA,30301 +279434,USB-C Charging Cable,2,11.95,2019-11-18 15:33:00,113 River St, San Francisco,CA,94016 +279435,Apple Airpods Headphones,1,150.0,2019-11-11 13:10:00,795 Cedar St, San Francisco,CA,94016 +279436,AA Batteries (4-pack),1,3.84,2019-11-11 08:07:00,220 Madison St, San Francisco,CA,94016 +279437,Macbook Pro Laptop,1,1700.0,2019-11-13 04:19:00,212 5th St, Seattle,WA,98101 +279438,Apple Airpods Headphones,1,150.0,2019-11-24 13:51:00,216 Lakeview St, Los Angeles,CA,90001 +279439,Wired Headphones,1,11.99,2019-11-27 21:15:00,725 13th St, Austin,TX,73301 +279440,Lightning Charging Cable,1,14.95,2019-11-08 21:21:00,262 2nd St, Atlanta,GA,30301 +279441,Flatscreen TV,1,300.0,2019-11-16 12:43:00,603 11th St, San Francisco,CA,94016 +279442,AAA Batteries (4-pack),1,2.99,2019-11-18 19:09:00,438 8th St, New York City,NY,10001 +279443,Bose SoundSport Headphones,1,99.99,2019-11-22 17:09:00,479 Lincoln St, New York City,NY,10001 +279444,AAA Batteries (4-pack),1,2.99,2019-11-19 12:06:00,850 North St, San Francisco,CA,94016 +279445,Lightning Charging Cable,1,14.95,2019-11-29 18:58:00,618 Chestnut St, San Francisco,CA,94016 +279446,Bose SoundSport Headphones,1,99.99,2019-11-30 22:15:00,782 Washington St, Los Angeles,CA,90001 +279447,USB-C Charging Cable,1,11.95,2019-11-19 15:55:00,631 Willow St, Seattle,WA,98101 +279448,AAA Batteries (4-pack),2,2.99,2019-11-10 15:16:00,137 1st St, San Francisco,CA,94016 +279449,AA Batteries (4-pack),2,3.84,2019-11-11 16:43:00,893 2nd St, Dallas,TX,75001 +279450,Wired Headphones,2,11.99,2019-11-26 16:39:00,521 Sunset St, Dallas,TX,75001 +279451,iPhone,1,700.0,2019-11-04 17:19:00,479 5th St, Boston,MA,02215 +279452,Google Phone,1,600.0,2019-11-26 20:36:00,128 9th St, San Francisco,CA,94016 +279453,Lightning Charging Cable,1,14.95,2019-11-12 18:54:00,851 Jackson St, Portland,OR,97035 +279454,Wired Headphones,1,11.99,2019-11-25 00:11:00,845 Dogwood St, Portland,ME,04101 +279455,AA Batteries (4-pack),1,3.84,2019-11-02 10:02:00,854 7th St, New York City,NY,10001 +279456,Lightning Charging Cable,1,14.95,2019-11-11 07:49:00,772 Center St, San Francisco,CA,94016 +279457,Wired Headphones,1,11.99,2019-11-23 19:15:00,622 6th St, San Francisco,CA,94016 +279458,Lightning Charging Cable,1,14.95,2019-11-03 23:19:00,328 1st St, New York City,NY,10001 +279459,Google Phone,1,600.0,2019-11-08 10:33:00,25 Pine St, New York City,NY,10001 +279460,Macbook Pro Laptop,1,1700.0,2019-11-10 20:19:00,218 14th St, Boston,MA,02215 +279461,34in Ultrawide Monitor,1,379.99,2019-11-08 17:03:00,880 Walnut St, New York City,NY,10001 +279462,AA Batteries (4-pack),2,3.84,2019-11-12 21:34:00,56 Jefferson St, San Francisco,CA,94016 +279463,AA Batteries (4-pack),2,3.84,2019-11-11 15:13:00,184 Main St, Portland,OR,97035 +279464,Apple Airpods Headphones,1,150.0,2019-11-30 16:33:00,164 Sunset St, Dallas,TX,75001 +279465,iPhone,1,700.0,2019-11-28 19:52:00,174 Dogwood St, San Francisco,CA,94016 +279466,Apple Airpods Headphones,1,150.0,2019-11-10 17:45:00,749 Wilson St, Portland,OR,97035 +279467,USB-C Charging Cable,2,11.95,2019-11-18 21:19:00,525 North St, New York City,NY,10001 +279468,Lightning Charging Cable,1,14.95,2019-11-23 10:59:00,256 Main St, San Francisco,CA,94016 +279469,USB-C Charging Cable,1,11.95,2019-11-27 23:31:00,372 11th St, Austin,TX,73301 +279470,AAA Batteries (4-pack),1,2.99,2019-11-24 20:25:00,682 8th St, San Francisco,CA,94016 +279471,USB-C Charging Cable,2,11.95,2019-11-29 11:09:00,523 Lake St, New York City,NY,10001 +279472,Bose SoundSport Headphones,1,99.99,2019-11-15 19:10:00,820 Washington St, Boston,MA,02215 +279473,LG Washing Machine,1,600.0,2019-11-10 23:15:00,938 Meadow St, Los Angeles,CA,90001 +279474,Google Phone,1,600.0,2019-11-21 10:04:00,840 Ridge St, Los Angeles,CA,90001 +279475,iPhone,1,700.0,2019-11-07 22:10:00,631 Elm St, Los Angeles,CA,90001 +279475,Apple Airpods Headphones,1,150.0,2019-11-07 22:10:00,631 Elm St, Los Angeles,CA,90001 +279476,AA Batteries (4-pack),1,3.84,2019-11-20 20:31:00,283 Lakeview St, Austin,TX,73301 +279477,AAA Batteries (4-pack),1,2.99,2019-11-14 13:05:00,615 Elm St, San Francisco,CA,94016 +279478,Lightning Charging Cable,1,14.95,2019-11-11 19:50:00,999 Johnson St, San Francisco,CA,94016 +279478,USB-C Charging Cable,1,11.95,2019-11-11 19:50:00,999 Johnson St, San Francisco,CA,94016 +279479,Apple Airpods Headphones,1,150.0,2019-11-20 11:16:00,358 Forest St, Seattle,WA,98101 +279480,USB-C Charging Cable,1,11.95,2019-11-07 10:24:00,613 Pine St, San Francisco,CA,94016 +279481,AAA Batteries (4-pack),2,2.99,2019-11-13 13:43:00,440 Madison St, Atlanta,GA,30301 +279482,Bose SoundSport Headphones,1,99.99,2019-11-08 17:41:00,248 Dogwood St, Boston,MA,02215 +279483,iPhone,1,700.0,2019-11-22 15:40:00,630 2nd St, Boston,MA,02215 +279484,34in Ultrawide Monitor,1,379.99,2019-11-14 15:04:00,954 Hill St, Portland,OR,97035 +279485,20in Monitor,1,109.99,2019-11-29 15:56:00,865 Forest St, Portland,OR,97035 +279486,Macbook Pro Laptop,1,1700.0,2019-11-25 20:25:00,200 Hill St, Austin,TX,73301 +279487,27in FHD Monitor,1,149.99,2019-11-26 12:11:00,600 North St, New York City,NY,10001 +279488,Lightning Charging Cable,1,14.95,2019-11-14 22:02:00,458 10th St, San Francisco,CA,94016 +279489,27in 4K Gaming Monitor,1,389.99,2019-11-18 12:12:00,541 Madison St, Los Angeles,CA,90001 +279490,AA Batteries (4-pack),1,3.84,2019-11-09 19:15:00,224 Lake St, San Francisco,CA,94016 +279491,Apple Airpods Headphones,1,150.0,2019-11-08 00:44:00,837 Church St, Seattle,WA,98101 +279492,Lightning Charging Cable,1,14.95,2019-11-25 12:09:00,801 West St, San Francisco,CA,94016 +279493,Wired Headphones,1,11.99,2019-11-27 16:13:00,851 Sunset St, San Francisco,CA,94016 +279494,USB-C Charging Cable,1,11.95,2019-11-07 18:56:00,274 Chestnut St, Austin,TX,73301 +279495,27in FHD Monitor,1,149.99,2019-11-06 15:50:00,272 Main St, San Francisco,CA,94016 +279496,27in 4K Gaming Monitor,1,389.99,2019-11-10 19:05:00,173 Highland St, New York City,NY,10001 +279497,Wired Headphones,1,11.99,2019-11-15 19:28:00,578 Meadow St, Los Angeles,CA,90001 +279498,Apple Airpods Headphones,1,150.0,2019-11-24 17:48:00,97 Dogwood St, Austin,TX,73301 +279499,Google Phone,1,600.0,2019-11-24 13:51:00,503 Maple St, Boston,MA,02215 +279500,Wired Headphones,1,11.99,2019-11-11 15:04:00,551 Johnson St, New York City,NY,10001 +279501,AA Batteries (4-pack),1,3.84,2019-11-05 19:09:00,910 10th St, San Francisco,CA,94016 +279502,AA Batteries (4-pack),1,3.84,2019-11-29 20:06:00,532 Wilson St, New York City,NY,10001 +279503,USB-C Charging Cable,1,11.95,2019-11-17 20:14:00,293 Wilson St, Seattle,WA,98101 +279504,Vareebadd Phone,1,400.0,2019-11-21 12:01:00,114 Chestnut St, Seattle,WA,98101 +279504,USB-C Charging Cable,1,11.95,2019-11-21 12:01:00,114 Chestnut St, Seattle,WA,98101 +279505,USB-C Charging Cable,1,11.95,2019-11-13 10:14:00,89 Lakeview St, Dallas,TX,75001 +279506,Wired Headphones,1,11.99,2019-11-24 11:49:00,100 River St, San Francisco,CA,94016 +279507,Lightning Charging Cable,1,14.95,2019-11-19 11:48:00,988 Lakeview St, Boston,MA,02215 +279508,USB-C Charging Cable,1,11.95,2019-11-09 22:59:00,795 Jackson St, San Francisco,CA,94016 +279509,AAA Batteries (4-pack),1,2.99,2019-11-15 20:22:00,453 14th St, San Francisco,CA,94016 +279510,Lightning Charging Cable,1,14.95,2019-11-12 10:48:00,35 Dogwood St, Seattle,WA,98101 +279511,AAA Batteries (4-pack),1,2.99,2019-11-26 00:18:00,456 Willow St, New York City,NY,10001 +279512,Wired Headphones,1,11.99,2019-11-28 04:59:00,883 Cherry St, San Francisco,CA,94016 +279513,Apple Airpods Headphones,1,150.0,2019-11-03 21:02:00,832 Cedar St, Atlanta,GA,30301 +279514,USB-C Charging Cable,1,11.95,2019-11-24 21:22:00,721 Spruce St, Los Angeles,CA,90001 +279515,Bose SoundSport Headphones,1,99.99,2019-11-15 22:06:00,891 2nd St, Los Angeles,CA,90001 +279516,LG Washing Machine,1,600.0,2019-11-27 19:53:00,748 4th St, San Francisco,CA,94016 +279517,USB-C Charging Cable,1,11.95,2019-11-09 00:12:00,551 Chestnut St, New York City,NY,10001 +279518,Bose SoundSport Headphones,1,99.99,2019-11-18 16:40:00,21 Wilson St, Los Angeles,CA,90001 +279519,iPhone,1,700.0,2019-11-13 08:04:00,952 10th St, Boston,MA,02215 +279520,Bose SoundSport Headphones,1,99.99,2019-11-08 14:51:00,135 Spruce St, Boston,MA,02215 +279521,34in Ultrawide Monitor,1,379.99,2019-11-14 14:01:00,469 14th St, Los Angeles,CA,90001 +279522,Google Phone,1,600.0,2019-11-24 11:07:00,843 8th St, Seattle,WA,98101 +279523,Bose SoundSport Headphones,1,99.99,2019-11-11 03:20:00,169 2nd St, San Francisco,CA,94016 +279524,USB-C Charging Cable,1,11.95,2019-11-16 10:48:00,7 Main St, Portland,ME,04101 +279525,Apple Airpods Headphones,1,150.0,2019-11-09 15:34:00,229 Sunset St, Austin,TX,73301 +279526,Lightning Charging Cable,1,14.95,2019-11-06 21:30:00,700 Forest St, Los Angeles,CA,90001 +279527,AA Batteries (4-pack),2,3.84,2019-11-16 11:45:00,732 Meadow St, Los Angeles,CA,90001 +279528,Apple Airpods Headphones,1,150.0,2019-11-15 19:28:00,124 Jackson St, Dallas,TX,75001 +279529,Flatscreen TV,1,300.0,2019-11-22 09:50:00,426 Spruce St, Los Angeles,CA,90001 +279530,Lightning Charging Cable,1,14.95,2019-11-30 19:35:00,979 13th St, San Francisco,CA,94016 +279531,AA Batteries (4-pack),3,3.84,2019-11-24 19:35:00,856 Center St, New York City,NY,10001 +279532,Apple Airpods Headphones,1,150.0,2019-11-08 21:14:00,464 Center St, Los Angeles,CA,90001 +279533,AA Batteries (4-pack),1,3.84,2019-11-08 18:33:00,850 Center St, New York City,NY,10001 +279534,Lightning Charging Cable,1,14.95,2019-11-30 19:54:00,85 North St, Atlanta,GA,30301 +279535,USB-C Charging Cable,1,11.95,2019-11-22 18:24:00,311 Jefferson St, Dallas,TX,75001 +279536,Google Phone,1,600.0,2019-11-14 00:21:00,509 Church St, Boston,MA,02215 +279536,Wired Headphones,1,11.99,2019-11-14 00:21:00,509 Church St, Boston,MA,02215 +279537,34in Ultrawide Monitor,1,379.99,2019-11-12 18:39:00,852 Hill St, Seattle,WA,98101 +279538,27in FHD Monitor,1,149.99,2019-11-11 12:59:00,915 Spruce St, Boston,MA,02215 +279539,Apple Airpods Headphones,1,150.0,2019-11-20 12:31:00,982 Pine St, San Francisco,CA,94016 +279540,iPhone,1,700.0,2019-11-30 15:47:00,57 Jefferson St, Boston,MA,02215 +279541,iPhone,1,700.0,2019-11-22 18:45:00,474 Wilson St, Los Angeles,CA,90001 +279542,Macbook Pro Laptop,1,1700.0,2019-11-03 07:13:00,851 8th St, Los Angeles,CA,90001 +279543,Bose SoundSport Headphones,1,99.99,2019-11-02 09:10:00,309 Ridge St, Dallas,TX,75001 +279544,Apple Airpods Headphones,1,150.0,2019-11-08 16:27:00,594 Chestnut St, Portland,OR,97035 +279545,27in 4K Gaming Monitor,1,389.99,2019-11-10 22:05:00,629 Ridge St, San Francisco,CA,94016 +279546,Apple Airpods Headphones,1,150.0,2019-11-08 09:42:00,267 6th St, San Francisco,CA,94016 +279547,Apple Airpods Headphones,1,150.0,2019-11-18 22:01:00,64 Chestnut St, Austin,TX,73301 +279548,27in 4K Gaming Monitor,1,389.99,2019-11-23 15:23:00,903 Forest St, Seattle,WA,98101 +279549,Lightning Charging Cable,1,14.95,2019-11-14 20:15:00,988 Cedar St, San Francisco,CA,94016 +279550,AAA Batteries (4-pack),2,2.99,2019-11-10 07:58:00,116 Hickory St, Boston,MA,02215 +279551,USB-C Charging Cable,1,11.95,2019-11-09 10:08:00,982 Jefferson St, Boston,MA,02215 +279552,AA Batteries (4-pack),1,3.84,2019-11-11 21:42:00,176 Lake St, New York City,NY,10001 +279553,AA Batteries (4-pack),3,3.84,2019-11-25 08:55:00,124 Chestnut St, Los Angeles,CA,90001 +279554,AAA Batteries (4-pack),1,2.99,2019-11-04 16:02:00,498 Lake St, Seattle,WA,98101 +279555,Wired Headphones,1,11.99,2019-11-24 18:44:00,252 North St, San Francisco,CA,94016 +279556,Wired Headphones,1,11.99,2019-11-26 12:05:00,912 Elm St, Seattle,WA,98101 +279557,Wired Headphones,1,11.99,2019-11-23 15:01:00,448 Maple St, San Francisco,CA,94016 +279558,AAA Batteries (4-pack),1,2.99,2019-11-10 06:52:00,1 Lincoln St, Los Angeles,CA,90001 +279559,Bose SoundSport Headphones,1,99.99,2019-11-05 01:57:00,971 Jackson St, Atlanta,GA,30301 +279560,AAA Batteries (4-pack),1,2.99,2019-11-23 20:14:00,540 Washington St, Portland,OR,97035 +279561,LG Washing Machine,1,600.0,2019-11-01 12:31:00,206 Meadow St, Boston,MA,02215 +279562,Bose SoundSport Headphones,1,99.99,2019-11-25 21:56:00,541 Willow St, Boston,MA,02215 +279563,27in 4K Gaming Monitor,1,389.99,2019-11-23 04:46:00,685 Chestnut St, Atlanta,GA,30301 +279564,AA Batteries (4-pack),1,3.84,2019-11-20 20:47:00,362 Center St, Boston,MA,02215 +279565,Google Phone,1,600.0,2019-11-16 21:11:00,198 8th St, Seattle,WA,98101 +279566,Wired Headphones,2,11.99,2019-11-27 20:18:00,419 14th St, Boston,MA,02215 +279567,34in Ultrawide Monitor,1,379.99,2019-11-29 10:20:00,160 Walnut St, Portland,ME,04101 +279568,iPhone,1,700.0,2019-11-18 11:36:00,220 Church St, Los Angeles,CA,90001 +279569,Lightning Charging Cable,1,14.95,2019-11-24 14:15:00,296 River St, Atlanta,GA,30301 +279570,iPhone,1,700.0,2019-11-22 17:33:00,939 Park St, Atlanta,GA,30301 +279571,Macbook Pro Laptop,1,1700.0,2019-11-07 01:04:00,823 Jackson St, Boston,MA,02215 +279572,Apple Airpods Headphones,1,150.0,2019-11-06 11:53:00,928 Highland St, San Francisco,CA,94016 +279573,Lightning Charging Cable,1,14.95,2019-11-19 17:04:00,453 14th St, Portland,OR,97035 +279573,27in FHD Monitor,1,149.99,2019-11-19 17:04:00,453 14th St, Portland,OR,97035 +279574,USB-C Charging Cable,2,11.95,2019-11-10 10:25:00,508 12th St, Boston,MA,02215 +279575,Wired Headphones,1,11.99,2019-11-05 11:58:00,212 Cherry St, New York City,NY,10001 +279576,34in Ultrawide Monitor,1,379.99,2019-11-06 14:56:00,958 Lake St, San Francisco,CA,94016 +279577,Bose SoundSport Headphones,1,99.99,2019-11-16 09:27:00,957 14th St, San Francisco,CA,94016 +279578,34in Ultrawide Monitor,1,379.99,2019-11-10 21:03:00,928 Hill St, San Francisco,CA,94016 +279579,AAA Batteries (4-pack),1,2.99,2019-11-18 11:20:00,529 Chestnut St, Dallas,TX,75001 +279580,27in FHD Monitor,1,149.99,2019-11-22 16:41:00,737 Jefferson St, San Francisco,CA,94016 +279581,AAA Batteries (4-pack),2,2.99,2019-11-04 00:33:00,718 9th St, Portland,ME,04101 +279582,AA Batteries (4-pack),1,3.84,2019-11-29 22:40:00,105 Center St, Los Angeles,CA,90001 +279583,AAA Batteries (4-pack),1,2.99,2019-11-28 09:03:00,757 Maple St, Seattle,WA,98101 +279584,AA Batteries (4-pack),1,3.84,2019-11-15 15:07:00,469 Madison St, Dallas,TX,75001 +279585,ThinkPad Laptop,1,999.99,2019-11-03 18:55:00,444 Cedar St, Austin,TX,73301 +279586,Apple Airpods Headphones,1,150.0,2019-11-01 19:20:00,80 Park St, Boston,MA,02215 +279587,AA Batteries (4-pack),2,3.84,2019-11-01 12:33:00,350 Johnson St, Boston,MA,02215 +279588,Macbook Pro Laptop,1,1700.0,2019-11-19 19:44:00,825 Washington St, New York City,NY,10001 +279589,Lightning Charging Cable,1,14.95,2019-11-30 12:36:00,905 Maple St, Portland,OR,97035 +279590,AA Batteries (4-pack),1,3.84,2019-11-05 19:03:00,298 Elm St, Boston,MA,02215 +279591,USB-C Charging Cable,1,11.95,2019-11-02 19:15:00,850 Cherry St, Los Angeles,CA,90001 +279592,Wired Headphones,1,11.99,2019-11-26 15:11:00,933 Dogwood St, San Francisco,CA,94016 +279593,27in FHD Monitor,1,149.99,2019-11-30 17:59:00,286 8th St, San Francisco,CA,94016 +279594,AA Batteries (4-pack),1,3.84,2019-11-18 14:38:00,736 12th St, San Francisco,CA,94016 +279595,Google Phone,1,600.0,2019-11-01 07:26:00,74 Ridge St, Seattle,WA,98101 +279595,USB-C Charging Cable,1,11.95,2019-11-01 07:26:00,74 Ridge St, Seattle,WA,98101 +279596,AAA Batteries (4-pack),1,2.99,2019-11-12 09:44:00,704 4th St, Boston,MA,02215 +279597,USB-C Charging Cable,1,11.95,2019-11-02 21:00:00,662 2nd St, Los Angeles,CA,90001 +279598,iPhone,1,700.0,2019-11-04 19:36:00,831 Washington St, Los Angeles,CA,90001 +279599,AA Batteries (4-pack),1,3.84,2019-11-20 22:23:00,190 Lakeview St, Los Angeles,CA,90001 +279600,Lightning Charging Cable,1,14.95,2019-11-03 20:50:00,658 Willow St, New York City,NY,10001 +279601,USB-C Charging Cable,1,11.95,2019-11-12 18:16:00,956 Meadow St, Los Angeles,CA,90001 +279602,Apple Airpods Headphones,1,150.0,2019-11-24 17:37:00,238 Spruce St, Dallas,TX,75001 +279603,AAA Batteries (4-pack),2,2.99,2019-11-07 12:54:00,963 Madison St, Los Angeles,CA,90001 +279604,20in Monitor,1,109.99,2019-11-17 13:48:00,353 Park St, Boston,MA,02215 +279605,Apple Airpods Headphones,1,150.0,2019-11-20 12:32:00,74 10th St, San Francisco,CA,94016 +279605,USB-C Charging Cable,2,11.95,2019-11-20 12:32:00,74 10th St, San Francisco,CA,94016 +279606,USB-C Charging Cable,1,11.95,2019-11-08 14:41:00,920 1st St, Los Angeles,CA,90001 +279607,Flatscreen TV,1,300.0,2019-11-29 16:46:00,23 Jefferson St, New York City,NY,10001 +279608,Google Phone,1,600.0,2019-11-30 21:20:00,300 Willow St, Dallas,TX,75001 +279609,27in FHD Monitor,1,149.99,2019-11-25 19:08:00,137 14th St, Dallas,TX,75001 +279610,ThinkPad Laptop,1,999.99,2019-11-13 13:00:00,196 Ridge St, Boston,MA,02215 +279611,Apple Airpods Headphones,1,150.0,2019-11-09 16:03:00,415 Park St, San Francisco,CA,94016 +279612,AAA Batteries (4-pack),1,2.99,2019-11-29 09:05:00,731 Hickory St, Dallas,TX,75001 +279613,20in Monitor,1,109.99,2019-11-04 14:04:00,44 Lincoln St, New York City,NY,10001 +279614,AAA Batteries (4-pack),1,2.99,2019-11-10 10:08:00,749 Dogwood St, Dallas,TX,75001 +279615,iPhone,1,700.0,2019-11-27 16:48:00,239 Church St, Dallas,TX,75001 +279616,iPhone,1,700.0,2019-11-30 13:35:00,673 13th St, San Francisco,CA,94016 +279617,Wired Headphones,1,11.99,2019-11-20 11:50:00,586 North St, Seattle,WA,98101 +279618,27in 4K Gaming Monitor,1,389.99,2019-11-22 11:51:00,78 14th St, New York City,NY,10001 +279619,27in FHD Monitor,1,149.99,2019-11-12 12:24:00,449 12th St, Los Angeles,CA,90001 +279620,Lightning Charging Cable,1,14.95,2019-11-18 15:08:00,487 Johnson St, Los Angeles,CA,90001 +279621,Wired Headphones,1,11.99,2019-11-15 19:54:00,522 Center St, San Francisco,CA,94016 +279622,Lightning Charging Cable,2,14.95,2019-11-06 19:16:00,810 Main St, Boston,MA,02215 +279623,Apple Airpods Headphones,1,150.0,2019-11-08 13:42:00,75 Washington St, Los Angeles,CA,90001 +279624,Wired Headphones,1,11.99,2019-11-24 08:22:00,779 Madison St, San Francisco,CA,94016 +279625,Bose SoundSport Headphones,1,99.99,2019-11-13 16:30:00,82 Hickory St, San Francisco,CA,94016 +279626,LG Washing Machine,1,600.0,2019-11-23 21:14:00,877 14th St, New York City,NY,10001 +279627,Flatscreen TV,1,300.0,2019-11-28 21:10:00,88 14th St, Los Angeles,CA,90001 +279628,iPhone,1,700.0,2019-11-02 12:21:00,116 Cedar St, Atlanta,GA,30301 +279629,Bose SoundSport Headphones,1,99.99,2019-11-18 18:24:00,539 12th St, San Francisco,CA,94016 +279630,Wired Headphones,1,11.99,2019-11-30 12:52:00,346 Park St, San Francisco,CA,94016 +279631,Google Phone,1,600.0,2019-11-17 17:46:00,358 Dogwood St, Dallas,TX,75001 +279632,iPhone,1,700.0,2019-11-26 14:05:00,484 Hill St, San Francisco,CA,94016 +279632,Lightning Charging Cable,1,14.95,2019-11-26 14:05:00,484 Hill St, San Francisco,CA,94016 +279633,AAA Batteries (4-pack),1,2.99,2019-11-10 14:15:00,925 Chestnut St, San Francisco,CA,94016 +279634,Lightning Charging Cable,1,14.95,2019-11-18 10:35:00,575 1st St, San Francisco,CA,94016 +279635,AAA Batteries (4-pack),1,2.99,2019-11-02 23:09:00,627 14th St, New York City,NY,10001 +279636,AA Batteries (4-pack),1,3.84,2019-11-05 22:37:00,48 Jefferson St, Los Angeles,CA,90001 +279637,Flatscreen TV,1,300.0,2019-11-21 13:49:00,192 Park St, Dallas,TX,75001 +279638,AAA Batteries (4-pack),2,2.99,2019-11-07 18:24:00,30 Dogwood St, New York City,NY,10001 +279639,Lightning Charging Cable,1,14.95,2019-11-13 15:49:00,777 North St, San Francisco,CA,94016 +279640,USB-C Charging Cable,1,11.95,2019-11-02 18:47:00,518 Cedar St, New York City,NY,10001 +279641,AAA Batteries (4-pack),1,2.99,2019-11-20 20:44:00,754 Church St, Dallas,TX,75001 +279642,20in Monitor,1,109.99,2019-11-02 21:08:00,848 Adams St, Austin,TX,73301 +279643,AA Batteries (4-pack),2,3.84,2019-11-10 20:13:00,855 Main St, San Francisco,CA,94016 +279644,AA Batteries (4-pack),2,3.84,2019-11-13 11:26:00,304 1st St, Los Angeles,CA,90001 +279645,USB-C Charging Cable,1,11.95,2019-11-19 20:44:00,30 Spruce St, Los Angeles,CA,90001 +279646,Wired Headphones,2,11.99,2019-11-28 08:15:00,204 Pine St, San Francisco,CA,94016 +279647,Wired Headphones,1,11.99,2019-11-07 17:22:00,590 West St, San Francisco,CA,94016 +279648,Lightning Charging Cable,1,14.95,2019-11-12 18:56:00,646 Church St, Boston,MA,02215 +279649,Lightning Charging Cable,1,14.95,2019-11-23 11:33:00,668 Main St, Boston,MA,02215 +279650,Vareebadd Phone,1,400.0,2019-11-17 13:57:00,80 Maple St, Atlanta,GA,30301 +279651,Lightning Charging Cable,2,14.95,2019-11-23 17:39:00,944 8th St, San Francisco,CA,94016 +279652,Lightning Charging Cable,1,14.95,2019-11-05 14:35:00,391 1st St, Boston,MA,02215 +279653,AAA Batteries (4-pack),1,2.99,2019-11-26 20:52:00,120 North St, Los Angeles,CA,90001 +279654,AAA Batteries (4-pack),1,2.99,2019-11-15 12:46:00,33 4th St, Dallas,TX,75001 +279655,AA Batteries (4-pack),1,3.84,2019-11-21 11:08:00,739 Forest St, San Francisco,CA,94016 +279656,Apple Airpods Headphones,1,150.0,2019-11-11 01:23:00,912 10th St, Portland,ME,04101 +279657,Wired Headphones,1,11.99,2019-11-10 12:45:00,240 Washington St, San Francisco,CA,94016 +279658,USB-C Charging Cable,2,11.95,2019-11-05 10:17:00,492 Spruce St, New York City,NY,10001 +279659,27in 4K Gaming Monitor,1,389.99,2019-11-09 18:58:00,122 10th St, Los Angeles,CA,90001 +279660,27in 4K Gaming Monitor,1,389.99,2019-11-18 16:48:00,917 Lake St, Portland,OR,97035 +279661,AAA Batteries (4-pack),2,2.99,2019-11-16 07:45:00,353 Hickory St, Boston,MA,02215 +279662,Bose SoundSport Headphones,1,99.99,2019-11-19 09:36:00,805 8th St, San Francisco,CA,94016 +279663,Lightning Charging Cable,1,14.95,2019-11-24 00:29:00,915 Jefferson St, San Francisco,CA,94016 +279664,27in FHD Monitor,1,149.99,2019-11-06 19:48:00,394 Forest St, Los Angeles,CA,90001 +279665,Macbook Pro Laptop,1,1700.0,2019-11-11 09:39:00,281 Meadow St, San Francisco,CA,94016 +279666,Google Phone,1,600.0,2019-11-01 23:28:00,457 Sunset St, Los Angeles,CA,90001 +279667,AAA Batteries (4-pack),1,2.99,2019-11-28 15:19:00,630 Lake St, Seattle,WA,98101 +279668,iPhone,1,700.0,2019-11-23 17:57:00,400 Meadow St, Los Angeles,CA,90001 +279669,Lightning Charging Cable,1,14.95,2019-11-07 20:57:00,759 Center St, San Francisco,CA,94016 +279670,Lightning Charging Cable,1,14.95,2019-11-07 17:47:00,881 Washington St, New York City,NY,10001 +279671,Lightning Charging Cable,1,14.95,2019-11-13 11:14:00,371 Ridge St, San Francisco,CA,94016 +279672,Flatscreen TV,1,300.0,2019-11-02 12:13:00,813 Highland St, Portland,OR,97035 +279673,34in Ultrawide Monitor,1,379.99,2019-11-09 23:40:00,142 Willow St, Atlanta,GA,30301 +279674,AA Batteries (4-pack),1,3.84,2019-11-19 11:38:00,238 Meadow St, Austin,TX,73301 +279675,Wired Headphones,1,11.99,2019-11-21 17:45:00,352 8th St, Austin,TX,73301 +279676,AAA Batteries (4-pack),1,2.99,2019-11-14 15:35:00,409 7th St, New York City,NY,10001 +279677,USB-C Charging Cable,1,11.95,2019-11-22 15:17:00,43 Elm St, Los Angeles,CA,90001 +279678,Lightning Charging Cable,1,14.95,2019-11-25 00:49:00,698 2nd St, Dallas,TX,75001 +279679,Lightning Charging Cable,1,14.95,2019-11-08 11:26:00,44 South St, Dallas,TX,75001 +279680,Google Phone,1,600.0,2019-11-17 13:01:00,159 14th St, Portland,OR,97035 +279681,Lightning Charging Cable,1,14.95,2019-11-11 18:04:00,625 Maple St, San Francisco,CA,94016 +279682,AAA Batteries (4-pack),1,2.99,2019-11-07 10:35:00,636 Washington St, Austin,TX,73301 +279683,USB-C Charging Cable,1,11.95,2019-11-15 14:23:00,167 Adams St, San Francisco,CA,94016 +279684,AAA Batteries (4-pack),1,2.99,2019-11-20 20:02:00,433 Johnson St, San Francisco,CA,94016 +279685,AAA Batteries (4-pack),1,2.99,2019-11-29 20:57:00,546 6th St, New York City,NY,10001 +279686,iPhone,1,700.0,2019-11-19 12:00:00,21 Church St, Austin,TX,73301 +279686,Wired Headphones,1,11.99,2019-11-19 12:00:00,21 Church St, Austin,TX,73301 +279687,AA Batteries (4-pack),1,3.84,2019-11-19 10:48:00,919 Ridge St, Boston,MA,02215 +279688,Lightning Charging Cable,1,14.95,2019-11-30 11:15:00,393 Highland St, San Francisco,CA,94016 +279689,Google Phone,1,600.0,2019-11-17 10:55:00,772 10th St, Los Angeles,CA,90001 +279690,Flatscreen TV,1,300.0,2019-11-15 23:49:00,240 Spruce St, San Francisco,CA,94016 +279691,AAA Batteries (4-pack),2,2.99,2019-11-10 13:06:00,534 Spruce St, Seattle,WA,98101 +279692,Apple Airpods Headphones,1,150.0,2019-11-17 20:01:00,676 Lake St, Los Angeles,CA,90001 +279693,iPhone,1,700.0,2019-11-28 15:08:00,381 Lake St, Los Angeles,CA,90001 +279694,AA Batteries (4-pack),1,3.84,2019-11-07 18:15:00,984 Adams St, San Francisco,CA,94016 +279695,Lightning Charging Cable,1,14.95,2019-11-11 18:36:00,103 4th St, Atlanta,GA,30301 +279696,Wired Headphones,1,11.99,2019-11-28 11:53:00,428 Maple St, Los Angeles,CA,90001 +279697,Apple Airpods Headphones,1,150.0,2019-11-17 20:31:00,317 8th St, San Francisco,CA,94016 +279698,USB-C Charging Cable,1,11.95,2019-11-17 19:37:00,869 Center St, Dallas,TX,75001 +279699,AAA Batteries (4-pack),1,2.99,2019-11-08 11:29:00,593 Pine St, Dallas,TX,75001 +279700,AAA Batteries (4-pack),1,2.99,2019-11-22 11:29:00,533 Maple St, Boston,MA,02215 +279701,USB-C Charging Cable,1,11.95,2019-11-05 07:36:00,58 Elm St, Austin,TX,73301 +279702,Apple Airpods Headphones,1,150.0,2019-11-27 16:40:00,474 2nd St, Seattle,WA,98101 +279703,AAA Batteries (4-pack),3,2.99,2019-11-16 09:51:00,307 Lakeview St, New York City,NY,10001 +279704,Bose SoundSport Headphones,1,99.99,2019-11-11 20:22:00,186 Lake St, Portland,OR,97035 +279705,20in Monitor,1,109.99,2019-11-26 21:56:00,163 West St, Seattle,WA,98101 +279706,Lightning Charging Cable,1,14.95,2019-11-16 21:45:00,228 Elm St, San Francisco,CA,94016 +279706,Macbook Pro Laptop,1,1700.0,2019-11-16 21:45:00,228 Elm St, San Francisco,CA,94016 +279707,34in Ultrawide Monitor,1,379.99,2019-11-01 23:27:00,501 Johnson St, Los Angeles,CA,90001 +279708,Macbook Pro Laptop,1,1700.0,2019-11-02 15:52:00,472 Hill St, Los Angeles,CA,90001 +279709,AA Batteries (4-pack),2,3.84,2019-11-23 22:05:00,747 Madison St, Dallas,TX,75001 +279710,USB-C Charging Cable,1,11.95,2019-11-11 15:35:00,108 South St, New York City,NY,10001 +279711,iPhone,1,700.0,2019-11-04 06:53:00,11 8th St, San Francisco,CA,94016 +279711,Lightning Charging Cable,1,14.95,2019-11-04 06:53:00,11 8th St, San Francisco,CA,94016 +279711,Apple Airpods Headphones,1,150.0,2019-11-04 06:53:00,11 8th St, San Francisco,CA,94016 +279712,USB-C Charging Cable,1,11.95,2019-11-15 12:01:00,160 14th St, Seattle,WA,98101 +279713,Google Phone,1,600.0,2019-11-27 15:38:00,4 7th St, Los Angeles,CA,90001 +279714,34in Ultrawide Monitor,1,379.99,2019-11-06 19:43:00,951 North St, San Francisco,CA,94016 +279715,ThinkPad Laptop,1,999.99,2019-11-27 10:35:00,696 South St, Atlanta,GA,30301 +279716,Wired Headphones,1,11.99,2019-11-11 16:26:00,189 Sunset St, Dallas,TX,75001 +279716,27in 4K Gaming Monitor,1,389.99,2019-11-11 16:26:00,189 Sunset St, Dallas,TX,75001 +279717,USB-C Charging Cable,1,11.95,2019-11-07 07:49:00,176 Center St, Los Angeles,CA,90001 +279718,AA Batteries (4-pack),1,3.84,2019-11-04 14:00:00,871 North St, Boston,MA,02215 +279719,Lightning Charging Cable,3,14.95,2019-11-14 18:25:00,973 Lakeview St, Dallas,TX,75001 +279719,AA Batteries (4-pack),1,3.84,2019-11-14 18:25:00,973 Lakeview St, Dallas,TX,75001 +279720,USB-C Charging Cable,1,11.95,2019-11-15 19:00:00,935 Jackson St, San Francisco,CA,94016 +279721,Apple Airpods Headphones,1,150.0,2019-11-28 23:52:00,592 Park St, New York City,NY,10001 +279722,27in 4K Gaming Monitor,1,389.99,2019-11-06 09:23:00,775 West St, San Francisco,CA,94016 +279723,Bose SoundSport Headphones,1,99.99,2019-11-18 21:40:00,498 12th St, San Francisco,CA,94016 +279724,Apple Airpods Headphones,1,150.0,2019-11-19 14:46:00,341 Cedar St, Austin,TX,73301 +279725,AA Batteries (4-pack),3,3.84,2019-11-05 11:08:00,656 River St, Portland,OR,97035 +279726,20in Monitor,1,109.99,2019-11-23 08:44:00,275 Cherry St, New York City,NY,10001 +279727,USB-C Charging Cable,1,11.95,2019-11-22 07:43:00,748 5th St, San Francisco,CA,94016 +279728,Bose SoundSport Headphones,1,99.99,2019-11-19 19:04:00,292 Hickory St, San Francisco,CA,94016 +279729,20in Monitor,1,109.99,2019-11-28 11:12:00,152 Wilson St, San Francisco,CA,94016 +279730,Lightning Charging Cable,1,14.95,2019-11-29 10:27:00,594 Main St, Austin,TX,73301 +279731,Apple Airpods Headphones,1,150.0,2019-11-05 16:53:00,292 13th St, San Francisco,CA,94016 +279732,Flatscreen TV,1,300.0,2019-11-12 06:52:00,812 Main St, Boston,MA,02215 +279733,AA Batteries (4-pack),1,3.84,2019-11-15 17:09:00,147 12th St, Boston,MA,02215 +279734,iPhone,1,700.0,2019-11-04 23:28:00,28 1st St, Atlanta,GA,30301 +279735,AA Batteries (4-pack),1,3.84,2019-11-19 15:31:00,468 Maple St, Seattle,WA,98101 +279736,Bose SoundSport Headphones,1,99.99,2019-11-05 17:02:00,770 North St, Dallas,TX,75001 +279737,Apple Airpods Headphones,1,150.0,2019-11-12 12:03:00,701 Highland St, Los Angeles,CA,90001 +279738,20in Monitor,1,109.99,2019-11-13 16:27:00,701 West St, San Francisco,CA,94016 +279739,Wired Headphones,1,11.99,2019-11-17 19:45:00,110 North St, Boston,MA,02215 +279740,20in Monitor,1,109.99,2019-11-19 18:33:00,556 Pine St, Los Angeles,CA,90001 +279741,Lightning Charging Cable,1,14.95,2019-11-18 13:41:00,315 6th St, Portland,OR,97035 +279742,Lightning Charging Cable,1,14.95,2019-11-14 19:09:00,672 12th St, New York City,NY,10001 +279743,Wired Headphones,1,11.99,2019-11-01 13:58:00,866 1st St, Los Angeles,CA,90001 +279744,Wired Headphones,1,11.99,2019-11-19 21:50:00,9 Pine St, San Francisco,CA,94016 +279745,USB-C Charging Cable,1,11.95,2019-11-24 12:41:00,968 West St, Los Angeles,CA,90001 +279746,USB-C Charging Cable,2,11.95,2019-11-06 18:51:00,886 Church St, San Francisco,CA,94016 +279746,Wired Headphones,1,11.99,2019-11-06 18:51:00,886 Church St, San Francisco,CA,94016 +279747,USB-C Charging Cable,1,11.95,2019-11-09 16:29:00,653 7th St, Dallas,TX,75001 +279748,27in 4K Gaming Monitor,1,389.99,2019-11-29 07:24:00,940 Hickory St, San Francisco,CA,94016 +279749,Apple Airpods Headphones,1,150.0,2019-11-17 22:44:00,459 Jackson St, Atlanta,GA,30301 +279750,Wired Headphones,1,11.99,2019-11-16 14:19:00,366 Chestnut St, Atlanta,GA,30301 +279751,Lightning Charging Cable,1,14.95,2019-11-13 22:41:00,130 Madison St, Portland,ME,04101 +279752,Apple Airpods Headphones,1,150.0,2019-11-04 09:35:00,117 4th St, Portland,OR,97035 +279753,AAA Batteries (4-pack),1,2.99,2019-11-02 18:22:00,394 Elm St, Seattle,WA,98101 +279754,Wired Headphones,1,11.99,2019-11-18 10:07:00,595 13th St, San Francisco,CA,94016 +279755,AA Batteries (4-pack),1,3.84,2019-11-06 22:55:00,898 West St, New York City,NY,10001 +279756,USB-C Charging Cable,1,11.95,2019-11-07 18:51:00,8 Jackson St, San Francisco,CA,94016 +279757,AA Batteries (4-pack),1,3.84,2019-11-11 18:04:00,92 10th St, Seattle,WA,98101 +279758,AAA Batteries (4-pack),4,2.99,2019-11-10 21:23:00,365 Elm St, Boston,MA,02215 +279759,Bose SoundSport Headphones,1,99.99,2019-11-10 09:36:00,64 Johnson St, Boston,MA,02215 +279760,Lightning Charging Cable,1,14.95,2019-11-29 18:34:00,755 Jackson St, San Francisco,CA,94016 +279761,AAA Batteries (4-pack),2,2.99,2019-11-14 14:21:00,922 4th St, Seattle,WA,98101 +279762,Lightning Charging Cable,2,14.95,2019-11-01 18:36:00,939 5th St, Portland,OR,97035 +279763,AAA Batteries (4-pack),1,2.99,2019-11-27 13:12:00,522 Pine St, San Francisco,CA,94016 +279764,Google Phone,1,600.0,2019-11-28 19:18:00,570 Sunset St, Los Angeles,CA,90001 +279765,AAA Batteries (4-pack),1,2.99,2019-11-13 18:27:00,954 Lakeview St, Los Angeles,CA,90001 +279766,AAA Batteries (4-pack),1,2.99,2019-11-27 10:32:00,144 5th St, Dallas,TX,75001 +279767,Lightning Charging Cable,1,14.95,2019-11-26 10:41:00,278 4th St, Dallas,TX,75001 +279768,USB-C Charging Cable,1,11.95,2019-11-16 16:35:00,574 Meadow St, San Francisco,CA,94016 +279769,Apple Airpods Headphones,1,150.0,2019-11-22 11:53:00,256 Highland St, Los Angeles,CA,90001 +279770,27in 4K Gaming Monitor,1,389.99,2019-11-30 20:05:00,1 Main St, New York City,NY,10001 +279771,ThinkPad Laptop,1,999.99,2019-11-04 00:07:00,388 14th St, San Francisco,CA,94016 +279772,iPhone,1,700.0,2019-11-23 08:00:00,71 2nd St, San Francisco,CA,94016 +279773,AAA Batteries (4-pack),2,2.99,2019-11-01 11:33:00,523 Lake St, Los Angeles,CA,90001 +279774,Lightning Charging Cable,1,14.95,2019-11-16 13:06:00,281 Cedar St, Dallas,TX,75001 +279775,Lightning Charging Cable,1,14.95,2019-11-24 20:46:00,647 Elm St, Atlanta,GA,30301 +279776,USB-C Charging Cable,1,11.95,2019-11-22 19:29:00,849 Cedar St, Atlanta,GA,30301 +279777,27in 4K Gaming Monitor,1,389.99,2019-11-18 10:06:00,161 Main St, Seattle,WA,98101 +279778,USB-C Charging Cable,1,11.95,2019-11-02 17:25:00,180 Dogwood St, Austin,TX,73301 +279779,Bose SoundSport Headphones,1,99.99,2019-11-19 16:20:00,186 North St, Dallas,TX,75001 +279780,Apple Airpods Headphones,1,150.0,2019-11-13 11:49:00,93 Meadow St, Los Angeles,CA,90001 +279781,Lightning Charging Cable,1,14.95,2019-11-27 19:04:00,273 Adams St, Los Angeles,CA,90001 +279782,27in FHD Monitor,1,149.99,2019-11-10 12:37:00,320 11th St, Austin,TX,73301 +279783,Bose SoundSport Headphones,1,99.99,2019-11-26 23:09:00,390 Wilson St, San Francisco,CA,94016 +279784,Lightning Charging Cable,1,14.95,2019-11-02 12:29:00,998 North St, San Francisco,CA,94016 +279785,Lightning Charging Cable,1,14.95,2019-11-24 22:08:00,121 11th St, Los Angeles,CA,90001 +279786,AA Batteries (4-pack),1,3.84,2019-11-13 08:54:00,941 Maple St, San Francisco,CA,94016 +279787,Apple Airpods Headphones,1,150.0,2019-11-04 17:13:00,359 Willow St, Los Angeles,CA,90001 +279788,27in FHD Monitor,1,149.99,2019-11-29 07:43:00,478 13th St, Austin,TX,73301 +279789,USB-C Charging Cable,1,11.95,2019-11-03 14:25:00,211 Lakeview St, New York City,NY,10001 +279790,27in FHD Monitor,1,149.99,2019-11-22 09:48:00,581 6th St, New York City,NY,10001 +279791,USB-C Charging Cable,1,11.95,2019-11-25 16:31:00,68 Hill St, San Francisco,CA,94016 +279792,iPhone,1,700.0,2019-11-06 06:09:00,727 Center St, Los Angeles,CA,90001 +279793,iPhone,1,700.0,2019-11-07 08:44:00,297 11th St, San Francisco,CA,94016 +279794,Lightning Charging Cable,1,14.95,2019-11-30 09:22:00,262 River St, Los Angeles,CA,90001 +279795,Apple Airpods Headphones,1,150.0,2019-11-23 15:45:00,867 River St, New York City,NY,10001 +279796,27in FHD Monitor,1,149.99,2019-11-06 21:50:00,677 14th St, Atlanta,GA,30301 +279797,AA Batteries (4-pack),1,3.84,2019-11-30 13:23:00,352 Lakeview St, New York City,NY,10001 +279798,Wired Headphones,1,11.99,2019-11-08 18:10:00,109 9th St, San Francisco,CA,94016 +279799,Wired Headphones,1,11.99,2019-11-13 20:03:00,506 Johnson St, Dallas,TX,75001 +279800,Macbook Pro Laptop,1,1700.0,2019-11-12 12:11:00,474 6th St, San Francisco,CA,94016 +279801,Google Phone,1,600.0,2019-11-23 09:02:00,581 Chestnut St, Dallas,TX,75001 +279802,Bose SoundSport Headphones,1,99.99,2019-11-15 01:53:00,561 Hickory St, Austin,TX,73301 +279803,34in Ultrawide Monitor,1,379.99,2019-11-07 08:19:00,44 Church St, San Francisco,CA,94016 +279804,AAA Batteries (4-pack),1,2.99,2019-11-09 11:00:00,495 Hill St, Dallas,TX,75001 +279805,AAA Batteries (4-pack),1,2.99,2019-11-14 09:39:00,423 Johnson St, Boston,MA,02215 +279806,27in 4K Gaming Monitor,1,389.99,2019-11-07 13:25:00,821 Forest St, Dallas,TX,75001 +279807,ThinkPad Laptop,1,999.99,2019-11-25 13:59:00,286 Hickory St, Los Angeles,CA,90001 +279808,AA Batteries (4-pack),1,3.84,2019-11-18 20:08:00,767 2nd St, Los Angeles,CA,90001 +279809,34in Ultrawide Monitor,1,379.99,2019-11-25 09:23:00,254 Church St, San Francisco,CA,94016 +279810,AA Batteries (4-pack),1,3.84,2019-11-14 20:30:00,574 Ridge St, San Francisco,CA,94016 +279811,27in 4K Gaming Monitor,1,389.99,2019-11-28 18:53:00,239 Main St, Dallas,TX,75001 +279812,34in Ultrawide Monitor,1,379.99,2019-11-16 18:09:00,386 12th St, Atlanta,GA,30301 +279813,AAA Batteries (4-pack),1,2.99,2019-11-05 18:30:00,667 13th St, Boston,MA,02215 +279814,Apple Airpods Headphones,1,150.0,2019-11-08 15:13:00,631 Wilson St, Los Angeles,CA,90001 +279815,USB-C Charging Cable,1,11.95,2019-11-20 11:41:00,543 Hickory St, San Francisco,CA,94016 +279816,34in Ultrawide Monitor,1,379.99,2019-11-25 18:05:00,878 Sunset St, Dallas,TX,75001 +279817,ThinkPad Laptop,1,999.99,2019-11-10 14:20:00,278 Forest St, New York City,NY,10001 +279818,AA Batteries (4-pack),3,3.84,2019-11-13 12:14:00,951 2nd St, San Francisco,CA,94016 +279819,Wired Headphones,1,11.99,2019-11-06 11:05:00,3 Forest St, New York City,NY,10001 +279820,34in Ultrawide Monitor,1,379.99,2019-11-08 11:46:00,101 Main St, New York City,NY,10001 +279821,27in 4K Gaming Monitor,1,389.99,2019-11-24 12:14:00,679 Cedar St, Dallas,TX,75001 +279822,AA Batteries (4-pack),1,3.84,2019-11-16 14:08:00,619 Highland St, San Francisco,CA,94016 +279823,AAA Batteries (4-pack),1,2.99,2019-11-06 12:10:00,824 Wilson St, Dallas,TX,75001 +279824,27in 4K Gaming Monitor,1,389.99,2019-11-15 17:29:00,162 13th St, Los Angeles,CA,90001 +279825,USB-C Charging Cable,1,11.95,2019-11-30 22:50:00,756 Forest St, Los Angeles,CA,90001 +279826,Apple Airpods Headphones,1,150.0,2019-11-14 15:00:00,477 Dogwood St, Austin,TX,73301 +279827,Apple Airpods Headphones,2,150.0,2019-11-15 10:37:00,573 7th St, New York City,NY,10001 +279827,AA Batteries (4-pack),1,3.84,2019-11-15 10:37:00,573 7th St, New York City,NY,10001 +279828,34in Ultrawide Monitor,1,379.99,2019-11-30 21:50:00,374 Dogwood St, Portland,OR,97035 +279829,Google Phone,1,600.0,2019-11-19 17:15:00,509 Lake St, New York City,NY,10001 +279830,AAA Batteries (4-pack),2,2.99,2019-11-29 18:46:00,564 Chestnut St, Austin,TX,73301 +279831,AAA Batteries (4-pack),1,2.99,2019-11-12 23:22:00,180 Willow St, San Francisco,CA,94016 +279832,20in Monitor,1,109.99,2019-11-19 11:38:00,172 9th St, Portland,OR,97035 +279833,iPhone,1,700.0,2019-11-28 18:30:00,179 4th St, Portland,OR,97035 +279834,AAA Batteries (4-pack),2,2.99,2019-11-20 01:59:00,607 Lincoln St, Los Angeles,CA,90001 +279835,AA Batteries (4-pack),2,3.84,2019-11-10 09:04:00,771 2nd St, San Francisco,CA,94016 +279836,Bose SoundSport Headphones,1,99.99,2019-11-09 23:16:00,742 Center St, Atlanta,GA,30301 +279836,AAA Batteries (4-pack),1,2.99,2019-11-09 23:16:00,742 Center St, Atlanta,GA,30301 +279837,USB-C Charging Cable,1,11.95,2019-11-02 10:41:00,427 Ridge St, Austin,TX,73301 +279838,iPhone,1,700.0,2019-11-08 08:36:00,383 Madison St, New York City,NY,10001 +279839,Lightning Charging Cable,3,14.95,2019-11-03 13:44:00,685 Meadow St, Los Angeles,CA,90001 +279840,Bose SoundSport Headphones,1,99.99,2019-11-17 18:35:00,309 Cedar St, Los Angeles,CA,90001 +279841,AAA Batteries (4-pack),2,2.99,2019-11-27 11:58:00,184 Jackson St, Seattle,WA,98101 +279842,Apple Airpods Headphones,1,150.0,2019-11-12 20:01:00,488 Maple St, Seattle,WA,98101 +279843,Apple Airpods Headphones,1,150.0,2019-11-21 06:13:00,842 Park St, Atlanta,GA,30301 +279844,27in 4K Gaming Monitor,1,389.99,2019-11-06 19:26:00,802 5th St, New York City,NY,10001 +279845,Apple Airpods Headphones,1,150.0,2019-11-22 15:14:00,587 Lakeview St, Seattle,WA,98101 +279846,Apple Airpods Headphones,1,150.0,2019-11-25 07:57:00,745 Ridge St, Seattle,WA,98101 +279847,Apple Airpods Headphones,1,150.0,2019-11-17 10:24:00,942 Spruce St, Boston,MA,02215 +279848,USB-C Charging Cable,1,11.95,2019-11-12 07:20:00,420 Ridge St, Portland,OR,97035 +279849,Wired Headphones,1,11.99,2019-11-24 02:50:00,53 10th St, Atlanta,GA,30301 +279850,Bose SoundSport Headphones,1,99.99,2019-11-14 19:30:00,603 Center St, Los Angeles,CA,90001 +279851,Bose SoundSport Headphones,1,99.99,2019-11-16 00:45:00,173 1st St, Boston,MA,02215 +279852,AAA Batteries (4-pack),1,2.99,2019-11-18 14:09:00,567 1st St, Atlanta,GA,30301 +279853,Bose SoundSport Headphones,1,99.99,2019-11-07 17:59:00,336 Adams St, Austin,TX,73301 +279854,34in Ultrawide Monitor,1,379.99,2019-11-28 17:20:00,117 7th St, Portland,OR,97035 +279855,Wired Headphones,1,11.99,2019-11-10 12:41:00,986 South St, San Francisco,CA,94016 +279856,USB-C Charging Cable,1,11.95,2019-11-10 13:23:00,994 Jackson St, Atlanta,GA,30301 +279857,Lightning Charging Cable,1,14.95,2019-11-15 17:35:00,97 West St, San Francisco,CA,94016 +279858,AAA Batteries (4-pack),1,2.99,2019-11-28 06:58:00,508 6th St, New York City,NY,10001 +279859,AAA Batteries (4-pack),1,2.99,2019-11-07 02:45:00,746 2nd St, San Francisco,CA,94016 +279860,AA Batteries (4-pack),1,3.84,2019-11-17 22:57:00,23 West St, Boston,MA,02215 +279861,Google Phone,1,600.0,2019-11-05 22:55:00,332 Willow St, New York City,NY,10001 +279861,USB-C Charging Cable,1,11.95,2019-11-05 22:55:00,332 Willow St, New York City,NY,10001 +279862,AAA Batteries (4-pack),3,2.99,2019-11-24 13:01:00,156 River St, San Francisco,CA,94016 +279862,ThinkPad Laptop,1,999.99,2019-11-24 13:01:00,156 River St, San Francisco,CA,94016 +279863,Google Phone,1,600.0,2019-11-17 15:47:00,196 4th St, Boston,MA,02215 +279864,Bose SoundSport Headphones,1,99.99,2019-11-18 15:27:00,185 Walnut St, New York City,NY,10001 +279865,AAA Batteries (4-pack),1,2.99,2019-11-18 23:55:00,553 12th St, Portland,OR,97035 +279866,Lightning Charging Cable,1,14.95,2019-11-12 11:55:00,673 North St, San Francisco,CA,94016 +279867,27in FHD Monitor,1,149.99,2019-11-20 15:58:00,585 River St, Portland,OR,97035 +279868,AA Batteries (4-pack),3,3.84,2019-11-26 21:41:00,893 Hill St, San Francisco,CA,94016 +279869,Wired Headphones,1,11.99,2019-11-16 10:59:00,184 Johnson St, New York City,NY,10001 +279870,USB-C Charging Cable,1,11.95,2019-11-08 19:06:00,282 Elm St, New York City,NY,10001 +279871,AA Batteries (4-pack),2,3.84,2019-11-06 22:04:00,600 West St, Seattle,WA,98101 +279872,Lightning Charging Cable,1,14.95,2019-11-18 12:50:00,334 1st St, Portland,OR,97035 +279873,AA Batteries (4-pack),1,3.84,2019-11-18 14:03:00,719 Center St, Austin,TX,73301 +279874,AA Batteries (4-pack),2,3.84,2019-11-01 19:50:00,166 Elm St, Los Angeles,CA,90001 +279874,Wired Headphones,1,11.99,2019-11-01 19:50:00,166 Elm St, Los Angeles,CA,90001 +279875,27in 4K Gaming Monitor,1,389.99,2019-11-16 23:11:00,847 Elm St, New York City,NY,10001 +279876,USB-C Charging Cable,1,11.95,2019-11-18 18:09:00,679 Meadow St, New York City,NY,10001 +279877,Bose SoundSport Headphones,1,99.99,2019-11-10 20:09:00,97 Ridge St, Dallas,TX,75001 +279878,Apple Airpods Headphones,1,150.0,2019-11-24 21:08:00,229 9th St, Austin,TX,73301 +279879,20in Monitor,1,109.99,2019-11-21 16:57:00,940 Cherry St, San Francisco,CA,94016 +279880,Bose SoundSport Headphones,1,99.99,2019-11-19 14:36:00,972 5th St, Seattle,WA,98101 +279881,Lightning Charging Cable,1,14.95,2019-11-23 20:33:00,670 2nd St, San Francisco,CA,94016 +279882,Lightning Charging Cable,1,14.95,2019-11-08 20:07:00,569 Park St, Portland,OR,97035 +279883,20in Monitor,1,109.99,2019-11-21 00:20:00,35 Hill St, Los Angeles,CA,90001 +279883,USB-C Charging Cable,1,11.95,2019-11-21 00:20:00,35 Hill St, Los Angeles,CA,90001 +279884,Bose SoundSport Headphones,1,99.99,2019-11-22 11:32:00,347 North St, Los Angeles,CA,90001 +279885,Macbook Pro Laptop,1,1700.0,2019-11-26 12:19:00,244 Highland St, San Francisco,CA,94016 +279886,Apple Airpods Headphones,1,150.0,2019-11-07 08:53:00,717 Walnut St, San Francisco,CA,94016 +279887,Flatscreen TV,1,300.0,2019-11-24 09:00:00,654 Chestnut St, Atlanta,GA,30301 +279888,Wired Headphones,1,11.99,2019-11-19 10:28:00,45 Washington St, Dallas,TX,75001 +279889,Bose SoundSport Headphones,1,99.99,2019-11-18 19:35:00,499 8th St, Atlanta,GA,30301 +279890,AAA Batteries (4-pack),2,2.99,2019-11-19 09:23:00,299 6th St, New York City,NY,10001 +279891,AAA Batteries (4-pack),2,2.99,2019-11-20 17:35:00,222 Lake St, San Francisco,CA,94016 +279892,AAA Batteries (4-pack),2,2.99,2019-11-23 10:13:00,333 Willow St, San Francisco,CA,94016 +279893,Google Phone,1,600.0,2019-11-23 21:00:00,226 Elm St, San Francisco,CA,94016 +279893,USB-C Charging Cable,1,11.95,2019-11-23 21:00:00,226 Elm St, San Francisco,CA,94016 +279894,Wired Headphones,1,11.99,2019-11-27 23:27:00,152 Willow St, San Francisco,CA,94016 +279895,Lightning Charging Cable,1,14.95,2019-11-04 21:06:00,195 Chestnut St, Los Angeles,CA,90001 +279896,AAA Batteries (4-pack),1,2.99,2019-11-03 23:24:00,936 Meadow St, Los Angeles,CA,90001 +279897,Google Phone,1,600.0,2019-11-24 13:36:00,827 Willow St, Atlanta,GA,30301 +279898,Lightning Charging Cable,1,14.95,2019-11-05 22:02:00,637 Cherry St, San Francisco,CA,94016 +279899,Lightning Charging Cable,1,14.95,2019-11-23 15:09:00,6 Cedar St, Austin,TX,73301 +279900,AAA Batteries (4-pack),1,2.99,2019-11-21 04:48:00,951 2nd St, San Francisco,CA,94016 +279901,34in Ultrawide Monitor,1,379.99,2019-11-25 12:42:00,603 Hill St, Atlanta,GA,30301 +279902,ThinkPad Laptop,1,999.99,2019-11-23 14:19:00,518 5th St, Atlanta,GA,30301 +279903,AA Batteries (4-pack),2,3.84,2019-11-24 21:29:00,970 9th St, Boston,MA,02215 +279904,AA Batteries (4-pack),2,3.84,2019-11-14 02:12:00,741 Lincoln St, Portland,OR,97035 +279905,AA Batteries (4-pack),1,3.84,2019-11-12 13:16:00,551 Pine St, Los Angeles,CA,90001 +279906,AA Batteries (4-pack),1,3.84,2019-11-27 02:23:00,957 Jefferson St, San Francisco,CA,94016 +279907,USB-C Charging Cable,1,11.95,2019-11-08 22:29:00,563 Ridge St, San Francisco,CA,94016 +279908,Apple Airpods Headphones,1,150.0,2019-11-23 06:24:00,526 Johnson St, Dallas,TX,75001 +279909,Wired Headphones,1,11.99,2019-11-23 17:37:00,355 Main St, Seattle,WA,98101 +279910,USB-C Charging Cable,1,11.95,2019-11-07 11:01:00,233 Main St, San Francisco,CA,94016 +279911,AA Batteries (4-pack),1,3.84,2019-11-26 16:54:00,983 Ridge St, Atlanta,GA,30301 +279912,LG Washing Machine,1,600.0,2019-11-27 08:45:00,886 14th St, Portland,ME,04101 +279913,27in 4K Gaming Monitor,1,389.99,2019-11-11 13:01:00,223 Elm St, Los Angeles,CA,90001 +279914,USB-C Charging Cable,1,11.95,2019-11-22 15:22:00,706 Cedar St, Austin,TX,73301 +279915,Flatscreen TV,1,300.0,2019-11-24 21:15:00,945 Church St, Boston,MA,02215 +279916,Lightning Charging Cable,1,14.95,2019-11-28 10:34:00,549 Cedar St, San Francisco,CA,94016 +279917,Apple Airpods Headphones,1,150.0,2019-11-27 11:13:00,822 North St, New York City,NY,10001 +279918,AA Batteries (4-pack),2,3.84,2019-11-29 15:24:00,926 6th St, New York City,NY,10001 +279919,AA Batteries (4-pack),2,3.84,2019-11-20 21:58:00,615 Spruce St, Los Angeles,CA,90001 +279920,AA Batteries (4-pack),3,3.84,2019-11-26 21:38:00,803 10th St, Dallas,TX,75001 +279921,AA Batteries (4-pack),2,3.84,2019-11-27 19:36:00,492 River St, Atlanta,GA,30301 +279922,AAA Batteries (4-pack),1,2.99,2019-11-15 17:39:00,178 2nd St, Boston,MA,02215 +279923,AA Batteries (4-pack),2,3.84,2019-11-26 14:09:00,526 12th St, Atlanta,GA,30301 +279924,Flatscreen TV,1,300.0,2019-11-13 23:13:00,720 Johnson St, San Francisco,CA,94016 +279925,Wired Headphones,1,11.99,2019-11-23 17:19:00,303 Wilson St, Atlanta,GA,30301 +279926,Wired Headphones,2,11.99,2019-11-20 21:34:00,622 Dogwood St, Portland,OR,97035 +279927,iPhone,1,700.0,2019-11-03 08:10:00,925 5th St, San Francisco,CA,94016 +279928,AA Batteries (4-pack),2,3.84,2019-11-08 22:20:00,348 Chestnut St, Dallas,TX,75001 +279929,AAA Batteries (4-pack),1,2.99,2019-11-21 21:46:00,908 Madison St, San Francisco,CA,94016 +279930,Apple Airpods Headphones,1,150.0,2019-11-17 16:51:00,115 Hill St, Boston,MA,02215 +279931,USB-C Charging Cable,1,11.95,2019-11-14 13:38:00,153 Washington St, Boston,MA,02215 +279932,Apple Airpods Headphones,1,150.0,2019-11-10 20:53:00,851 Meadow St, San Francisco,CA,94016 +279933,AAA Batteries (4-pack),1,2.99,2019-11-18 14:21:00,756 Adams St, Atlanta,GA,30301 +279934,AAA Batteries (4-pack),1,2.99,2019-11-16 14:40:00,105 Maple St, Portland,OR,97035 +279935,AA Batteries (4-pack),1,3.84,2019-11-03 20:34:00,931 Church St, San Francisco,CA,94016 +279936,Apple Airpods Headphones,1,150.0,2019-11-04 13:31:00,918 Ridge St, New York City,NY,10001 +279937,AA Batteries (4-pack),1,3.84,2019-11-02 16:36:00,847 Center St, San Francisco,CA,94016 +279938,Apple Airpods Headphones,1,150.0,2019-11-21 10:28:00,701 North St, Portland,ME,04101 +279939,Wired Headphones,1,11.99,2019-11-05 09:47:00,95 12th St, New York City,NY,10001 +279940,Bose SoundSport Headphones,1,99.99,2019-11-02 23:59:00,578 South St, Dallas,TX,75001 +279941,Lightning Charging Cable,1,14.95,2019-11-30 10:31:00,626 Meadow St, New York City,NY,10001 +279942,27in 4K Gaming Monitor,1,389.99,2019-11-30 20:36:00,676 Wilson St, Los Angeles,CA,90001 +279943,AAA Batteries (4-pack),1,2.99,2019-11-21 10:43:00,877 Washington St, San Francisco,CA,94016 +279944,Flatscreen TV,1,300.0,2019-11-09 05:38:00,305 Church St, New York City,NY,10001 +279945,Lightning Charging Cable,1,14.95,2019-11-17 17:24:00,869 12th St, Boston,MA,02215 +279946,USB-C Charging Cable,1,11.95,2019-11-03 11:01:00,618 Lake St, Austin,TX,73301 +279947,AAA Batteries (4-pack),2,2.99,2019-11-19 11:12:00,267 Walnut St, Atlanta,GA,30301 +279948,AA Batteries (4-pack),2,3.84,2019-11-07 16:13:00,421 Washington St, Dallas,TX,75001 +279949,Wired Headphones,2,11.99,2019-11-01 09:30:00,13 Forest St, Boston,MA,02215 +279950,Apple Airpods Headphones,1,150.0,2019-11-06 10:03:00,95 Washington St, Seattle,WA,98101 +279951,Wired Headphones,1,11.99,2019-11-04 02:54:00,864 Sunset St, Portland,OR,97035 +279952,Bose SoundSport Headphones,1,99.99,2019-11-13 08:27:00,810 8th St, Seattle,WA,98101 +279952,27in FHD Monitor,1,149.99,2019-11-13 08:27:00,810 8th St, Seattle,WA,98101 +279953,34in Ultrawide Monitor,1,379.99,2019-11-18 13:01:00,106 Hill St, Boston,MA,02215 +279954,AA Batteries (4-pack),1,3.84,2019-11-04 20:34:00,95 West St, Atlanta,GA,30301 +279955,Bose SoundSport Headphones,1,99.99,2019-11-13 11:19:00,975 Cedar St, Atlanta,GA,30301 +279956,AAA Batteries (4-pack),3,2.99,2019-11-02 12:11:00,848 North St, Los Angeles,CA,90001 +279957,Wired Headphones,1,11.99,2019-11-11 14:14:00,360 6th St, Seattle,WA,98101 +279958,USB-C Charging Cable,1,11.95,2019-11-06 10:42:00,596 Park St, San Francisco,CA,94016 +279959,Lightning Charging Cable,1,14.95,2019-11-07 20:33:00,746 River St, San Francisco,CA,94016 +279960,Google Phone,1,600.0,2019-11-27 13:12:00,951 10th St, Seattle,WA,98101 +279961,Macbook Pro Laptop,1,1700.0,2019-11-01 13:43:00,752 8th St, Boston,MA,02215 +279962,iPhone,1,700.0,2019-11-25 11:21:00,251 Sunset St, New York City,NY,10001 +279963,USB-C Charging Cable,1,11.95,2019-11-09 20:18:00,471 Elm St, New York City,NY,10001 +279964,Lightning Charging Cable,1,14.95,2019-11-09 08:25:00,838 9th St, Dallas,TX,75001 +279965,USB-C Charging Cable,1,11.95,2019-11-08 19:27:00,509 Forest St, Portland,OR,97035 +279966,AA Batteries (4-pack),1,3.84,2019-11-17 16:27:00,391 Madison St, New York City,NY,10001 +279967,27in FHD Monitor,1,149.99,2019-11-03 16:20:00,686 Lincoln St, Atlanta,GA,30301 +279968,Wired Headphones,1,11.99,2019-11-22 00:17:00,585 Pine St, Austin,TX,73301 +279969,AA Batteries (4-pack),1,3.84,2019-11-09 22:02:00,572 Elm St, Los Angeles,CA,90001 +279970,20in Monitor,1,109.99,2019-11-02 08:50:00,549 Chestnut St, Boston,MA,02215 +279971,AAA Batteries (4-pack),1,2.99,2019-11-08 20:30:00,202 Lakeview St, Dallas,TX,75001 +279972,AAA Batteries (4-pack),1,2.99,2019-11-04 12:33:00,196 West St, Dallas,TX,75001 +279973,AA Batteries (4-pack),1,3.84,2019-11-29 10:39:00,644 Hill St, San Francisco,CA,94016 +279974,iPhone,1,700.0,2019-11-11 08:20:00,300 Maple St, San Francisco,CA,94016 +279974,Wired Headphones,1,11.99,2019-11-11 08:20:00,300 Maple St, San Francisco,CA,94016 +279975,AA Batteries (4-pack),1,3.84,2019-11-09 12:14:00,721 Lake St, San Francisco,CA,94016 +279976,AAA Batteries (4-pack),1,2.99,2019-11-18 18:26:00,160 1st St, San Francisco,CA,94016 +279977,AA Batteries (4-pack),1,3.84,2019-11-11 20:51:00,674 13th St, San Francisco,CA,94016 +279978,AA Batteries (4-pack),1,3.84,2019-11-19 10:22:00,122 Maple St, Atlanta,GA,30301 +279979,USB-C Charging Cable,1,11.95,2019-11-15 16:27:00,987 Highland St, Atlanta,GA,30301 +279980,34in Ultrawide Monitor,1,379.99,2019-11-24 19:19:00,564 Jefferson St, Seattle,WA,98101 +279981,Google Phone,1,600.0,2019-11-14 21:38:00,291 Maple St, Los Angeles,CA,90001 +279982,Bose SoundSport Headphones,1,99.99,2019-12-01 04:07:00,174 Sunset St, Boston,MA,02215 +279983,AA Batteries (4-pack),4,3.84,2019-11-24 16:48:00,792 Lake St, Portland,OR,97035 +279984,Macbook Pro Laptop,1,1700.0,2019-11-22 19:00:00,338 7th St, New York City,NY,10001 +279985,20in Monitor,1,109.99,2019-11-26 15:09:00,54 1st St, Seattle,WA,98101 +279986,Lightning Charging Cable,1,14.95,2019-11-14 16:49:00,596 Wilson St, Seattle,WA,98101 +279987,Wired Headphones,1,11.99,2019-11-17 12:44:00,335 Lakeview St, Austin,TX,73301 +279988,Google Phone,1,600.0,2019-11-30 15:48:00,251 10th St, Atlanta,GA,30301 +279988,Bose SoundSport Headphones,1,99.99,2019-11-30 15:48:00,251 10th St, Atlanta,GA,30301 +279988,Wired Headphones,1,11.99,2019-11-30 15:48:00,251 10th St, Atlanta,GA,30301 +279989,Apple Airpods Headphones,1,150.0,2019-11-08 16:33:00,681 Walnut St, New York City,NY,10001 +279990,AA Batteries (4-pack),2,3.84,2019-11-03 19:53:00,838 West St, Los Angeles,CA,90001 +279991,USB-C Charging Cable,1,11.95,2019-11-03 13:26:00,612 14th St, San Francisco,CA,94016 +279992,34in Ultrawide Monitor,1,379.99,2019-11-02 00:01:00,721 8th St, San Francisco,CA,94016 +279993,ThinkPad Laptop,1,999.99,2019-11-13 18:31:00,231 14th St, San Francisco,CA,94016 +279994,Apple Airpods Headphones,1,150.0,2019-11-16 19:25:00,583 Sunset St, Atlanta,GA,30301 +279995,Bose SoundSport Headphones,1,99.99,2019-11-01 11:25:00,695 Lakeview St, San Francisco,CA,94016 +279996,Lightning Charging Cable,1,14.95,2019-11-03 12:10:00,771 Spruce St, Boston,MA,02215 +279997,Lightning Charging Cable,1,14.95,2019-11-01 16:26:00,298 Lincoln St, San Francisco,CA,94016 +279998,Lightning Charging Cable,1,14.95,2019-11-19 17:35:00,887 Jackson St, Seattle,WA,98101 +279999,iPhone,1,700.0,2019-11-16 15:06:00,695 13th St, Boston,MA,02215 +280000,AA Batteries (4-pack),1,3.84,2019-11-05 18:30:00,917 Hill St, San Francisco,CA,94016 +280001,ThinkPad Laptop,1,999.99,2019-11-07 18:21:00,225 13th St, Austin,TX,73301 +280002,20in Monitor,1,109.99,2019-11-27 16:46:00,276 Lake St, Seattle,WA,98101 +280003,Wired Headphones,1,11.99,2019-11-15 12:34:00,15 Main St, San Francisco,CA,94016 +280004,AA Batteries (4-pack),1,3.84,2019-11-01 21:41:00,684 1st St, Austin,TX,73301 +280005,USB-C Charging Cable,1,11.95,2019-11-28 19:42:00,160 Church St, Los Angeles,CA,90001 +280006,Google Phone,1,600.0,2019-11-14 11:24:00,720 Meadow St, Los Angeles,CA,90001 +280007,Google Phone,1,600.0,2019-11-30 18:49:00,798 Lakeview St, Boston,MA,02215 +280008,Lightning Charging Cable,1,14.95,2019-11-18 11:40:00,245 4th St, Los Angeles,CA,90001 +280009,Lightning Charging Cable,1,14.95,2019-11-20 13:23:00,192 Pine St, Austin,TX,73301 +280010,Wired Headphones,1,11.99,2019-11-27 23:17:00,598 Main St, San Francisco,CA,94016 +280011,iPhone,1,700.0,2019-11-24 06:08:00,153 6th St, Los Angeles,CA,90001 +280012,AAA Batteries (4-pack),1,2.99,2019-11-21 18:27:00,955 Lakeview St, Austin,TX,73301 +280013,Wired Headphones,1,11.99,2019-11-23 19:25:00,824 River St, Los Angeles,CA,90001 +280014,Wired Headphones,1,11.99,2019-11-09 02:26:00,508 Washington St, Portland,ME,04101 +280015,27in FHD Monitor,1,149.99,2019-11-19 17:02:00,242 West St, Dallas,TX,75001 +280016,ThinkPad Laptop,1,999.99,2019-11-05 14:10:00,432 West St, San Francisco,CA,94016 +280017,27in 4K Gaming Monitor,1,389.99,2019-11-06 09:28:00,373 Forest St, New York City,NY,10001 +280018,Apple Airpods Headphones,1,150.0,2019-11-17 02:50:00,259 12th St, New York City,NY,10001 +280019,AA Batteries (4-pack),1,3.84,2019-11-08 09:08:00,982 1st St, New York City,NY,10001 +280020,Lightning Charging Cable,1,14.95,2019-11-30 00:00:00,95 Center St, Dallas,TX,75001 +280021,iPhone,1,700.0,2019-11-10 14:50:00,578 Church St, Seattle,WA,98101 +280022,Lightning Charging Cable,1,14.95,2019-11-11 10:26:00,261 5th St, Boston,MA,02215 +280023,USB-C Charging Cable,1,11.95,2019-11-09 11:03:00,440 1st St, San Francisco,CA,94016 +280024,27in FHD Monitor,1,149.99,2019-11-01 21:14:00,61 6th St, San Francisco,CA,94016 +280025,AAA Batteries (4-pack),3,2.99,2019-11-05 17:02:00,328 4th St, Boston,MA,02215 +280026,AA Batteries (4-pack),1,3.84,2019-11-06 11:21:00,142 7th St, Portland,OR,97035 +280027,Apple Airpods Headphones,1,150.0,2019-11-18 01:46:00,519 West St, Los Angeles,CA,90001 +280028,27in 4K Gaming Monitor,1,389.99,2019-11-30 15:57:00,233 Church St, New York City,NY,10001 +280029,Flatscreen TV,1,300.0,2019-11-20 20:06:00,446 Sunset St, Seattle,WA,98101 +280030,AAA Batteries (4-pack),1,2.99,2019-11-07 10:29:00,929 Church St, Portland,OR,97035 +280031,Macbook Pro Laptop,1,1700.0,2019-11-13 22:27:00,304 1st St, San Francisco,CA,94016 +280032,ThinkPad Laptop,1,999.99,2019-11-08 23:48:00,905 Center St, San Francisco,CA,94016 +280033,Apple Airpods Headphones,1,150.0,2019-11-25 23:21:00,593 Ridge St, Boston,MA,02215 +280034,34in Ultrawide Monitor,1,379.99,2019-11-28 23:10:00,324 Lakeview St, New York City,NY,10001 +280035,AAA Batteries (4-pack),1,2.99,2019-11-14 20:45:00,351 7th St, New York City,NY,10001 +280036,USB-C Charging Cable,1,11.95,2019-11-08 14:20:00,799 Adams St, Dallas,TX,75001 +280037,AA Batteries (4-pack),2,3.84,2019-11-18 14:02:00,830 Spruce St, San Francisco,CA,94016 +280038,Wired Headphones,1,11.99,2019-11-10 10:05:00,316 Adams St, Austin,TX,73301 +280039,USB-C Charging Cable,1,11.95,2019-11-14 03:34:00,145 Main St, San Francisco,CA,94016 +280040,Wired Headphones,1,11.99,2019-11-16 14:11:00,461 11th St, Boston,MA,02215 +280041,27in 4K Gaming Monitor,1,389.99,2019-11-16 11:17:00,186 Johnson St, Los Angeles,CA,90001 +280042,Bose SoundSport Headphones,1,99.99,2019-11-18 09:51:00,510 6th St, Los Angeles,CA,90001 +280043,USB-C Charging Cable,1,11.95,2019-11-17 17:01:00,131 1st St, San Francisco,CA,94016 +280044,USB-C Charging Cable,1,11.95,2019-11-19 21:30:00,344 West St, Atlanta,GA,30301 +280045,ThinkPad Laptop,1,999.99,2019-11-21 15:36:00,958 Lincoln St, San Francisco,CA,94016 +280046,Apple Airpods Headphones,1,150.0,2019-11-01 19:27:00,996 Park St, Atlanta,GA,30301 +280047,Macbook Pro Laptop,1,1700.0,2019-11-14 20:32:00,154 Hill St, New York City,NY,10001 +280048,Wired Headphones,1,11.99,2019-11-18 17:06:00,889 11th St, San Francisco,CA,94016 +280049,Wired Headphones,1,11.99,2019-11-16 21:16:00,703 8th St, New York City,NY,10001 +280050,AA Batteries (4-pack),1,3.84,2019-11-28 11:20:00,475 Adams St, Dallas,TX,75001 +280051,Wired Headphones,1,11.99,2019-11-16 10:41:00,952 West St, Portland,OR,97035 +280052,Bose SoundSport Headphones,1,99.99,2019-11-06 19:14:00,286 Forest St, San Francisco,CA,94016 +280053,Vareebadd Phone,1,400.0,2019-11-27 00:32:00,825 Johnson St, San Francisco,CA,94016 +280053,USB-C Charging Cable,1,11.95,2019-11-27 00:32:00,825 Johnson St, San Francisco,CA,94016 +280054,Wired Headphones,1,11.99,2019-11-24 19:52:00,740 West St, San Francisco,CA,94016 +280055,iPhone,1,700.0,2019-11-18 08:43:00,353 Hill St, New York City,NY,10001 +280055,Lightning Charging Cable,1,14.95,2019-11-18 08:43:00,353 Hill St, New York City,NY,10001 +280056,Apple Airpods Headphones,1,150.0,2019-11-08 19:35:00,552 10th St, Atlanta,GA,30301 +280057,Wired Headphones,1,11.99,2019-11-27 17:00:00,793 Highland St, Atlanta,GA,30301 +280058,Macbook Pro Laptop,1,1700.0,2019-11-14 20:00:00,225 Meadow St, Los Angeles,CA,90001 +280059,AA Batteries (4-pack),6,3.84,2019-11-29 14:44:00,534 Walnut St, San Francisco,CA,94016 +280060,27in FHD Monitor,1,149.99,2019-11-27 21:37:00,112 Hill St, Los Angeles,CA,90001 +280061,Macbook Pro Laptop,1,1700.0,2019-11-15 18:07:00,753 Main St, Los Angeles,CA,90001 +280062,AAA Batteries (4-pack),2,2.99,2019-11-13 11:23:00,862 1st St, New York City,NY,10001 +280063,USB-C Charging Cable,1,11.95,2019-11-18 17:42:00,482 Jackson St, San Francisco,CA,94016 +280064,Wired Headphones,1,11.99,2019-11-12 09:39:00,168 Hill St, New York City,NY,10001 +280065,Bose SoundSport Headphones,1,99.99,2019-11-17 12:39:00,110 1st St, San Francisco,CA,94016 +280066,Lightning Charging Cable,1,14.95,2019-11-22 11:46:00,5 Wilson St, Austin,TX,73301 +280067,USB-C Charging Cable,1,11.95,2019-11-09 16:28:00,707 River St, Los Angeles,CA,90001 +280068,AAA Batteries (4-pack),1,2.99,2019-11-22 12:32:00,612 Cherry St, Atlanta,GA,30301 +280069,AA Batteries (4-pack),1,3.84,2019-11-14 09:41:00,823 12th St, Atlanta,GA,30301 +280070,20in Monitor,1,109.99,2019-11-16 16:54:00,776 Washington St, New York City,NY,10001 +280071,Bose SoundSport Headphones,1,99.99,2019-11-24 07:38:00,654 14th St, Portland,OR,97035 +280072,27in 4K Gaming Monitor,1,389.99,2019-11-17 22:42:00,681 Church St, Seattle,WA,98101 +280073,iPhone,1,700.0,2019-11-08 19:01:00,43 13th St, Austin,TX,73301 +280074,Google Phone,1,600.0,2019-11-07 05:54:00,156 Adams St, Dallas,TX,75001 +280075,AA Batteries (4-pack),1,3.84,2019-11-15 18:31:00,4 Center St, Seattle,WA,98101 +280076,USB-C Charging Cable,1,11.95,2019-11-24 20:21:00,50 Hickory St, Dallas,TX,75001 +280077,ThinkPad Laptop,1,999.99,2019-11-18 04:12:00,931 Johnson St, Boston,MA,02215 +280078,Macbook Pro Laptop,1,1700.0,2019-11-17 14:41:00,571 Sunset St, Seattle,WA,98101 +280079,20in Monitor,1,109.99,2019-11-21 20:49:00,829 Johnson St, Los Angeles,CA,90001 +280080,Macbook Pro Laptop,1,1700.0,2019-11-19 12:49:00,250 11th St, San Francisco,CA,94016 +280081,USB-C Charging Cable,1,11.95,2019-11-06 13:33:00,319 Lakeview St, Dallas,TX,75001 +280082,34in Ultrawide Monitor,1,379.99,2019-11-15 10:04:00,901 West St, Los Angeles,CA,90001 +280083,USB-C Charging Cable,1,11.95,2019-11-23 23:24:00,262 Wilson St, Seattle,WA,98101 +280084,USB-C Charging Cable,1,11.95,2019-11-12 08:57:00,636 5th St, San Francisco,CA,94016 +280085,Bose SoundSport Headphones,1,99.99,2019-11-13 07:59:00,887 13th St, New York City,NY,10001 +280086,LG Washing Machine,1,600.0,2019-11-15 11:51:00,592 2nd St, Boston,MA,02215 +280087,Bose SoundSport Headphones,1,99.99,2019-11-11 01:27:00,512 Adams St, San Francisco,CA,94016 +280088,Lightning Charging Cable,1,14.95,2019-11-19 06:04:00,776 Spruce St, Boston,MA,02215 +280089,USB-C Charging Cable,1,11.95,2019-11-17 15:57:00,40 Spruce St, San Francisco,CA,94016 +280090,USB-C Charging Cable,1,11.95,2019-11-14 11:32:00,345 8th St, San Francisco,CA,94016 +280091,Bose SoundSport Headphones,1,99.99,2019-11-27 17:20:00,715 Spruce St, New York City,NY,10001 +280092,AA Batteries (4-pack),1,3.84,2019-11-12 00:06:00,447 13th St, San Francisco,CA,94016 +280093,20in Monitor,1,109.99,2019-11-26 18:28:00,786 Sunset St, Austin,TX,73301 +280094,AA Batteries (4-pack),1,3.84,2019-11-14 11:10:00,588 2nd St, San Francisco,CA,94016 +280095,Macbook Pro Laptop,1,1700.0,2019-11-02 15:43:00,84 Highland St, San Francisco,CA,94016 +280096,AAA Batteries (4-pack),3,2.99,2019-11-01 18:30:00,606 Lincoln St, Boston,MA,02215 +280097,20in Monitor,1,109.99,2019-11-16 21:51:00,929 Highland St, Dallas,TX,75001 +280098,Lightning Charging Cable,1,14.95,2019-11-03 17:19:00,283 10th St, San Francisco,CA,94016 +280099,AA Batteries (4-pack),1,3.84,2019-11-24 15:39:00,628 Wilson St, San Francisco,CA,94016 +280100,Lightning Charging Cable,1,14.95,2019-11-01 20:50:00,552 Chestnut St, San Francisco,CA,94016 +280101,Bose SoundSport Headphones,1,99.99,2019-11-20 10:43:00,786 Willow St, Atlanta,GA,30301 +280102,Apple Airpods Headphones,1,150.0,2019-11-19 21:47:00,618 Church St, Portland,OR,97035 +280103,27in FHD Monitor,1,149.99,2019-11-01 12:21:00,976 Elm St, San Francisco,CA,94016 +280104,AA Batteries (4-pack),1,3.84,2019-11-16 23:05:00,618 Willow St, Austin,TX,73301 +280105,AA Batteries (4-pack),1,3.84,2019-11-10 18:18:00,704 Highland St, Los Angeles,CA,90001 +280106,27in FHD Monitor,1,149.99,2019-11-22 00:24:00,58 Forest St, Boston,MA,02215 +280107,Flatscreen TV,1,300.0,2019-11-05 18:12:00,132 Elm St, San Francisco,CA,94016 +280108,ThinkPad Laptop,1,999.99,2019-11-11 12:00:00,765 Church St, Seattle,WA,98101 +280109,AAA Batteries (4-pack),1,2.99,2019-11-27 20:49:00,741 8th St, Dallas,TX,75001 +280110,Wired Headphones,1,11.99,2019-11-27 10:14:00,95 Johnson St, Seattle,WA,98101 +280111,AA Batteries (4-pack),2,3.84,2019-11-01 12:38:00,604 Main St, San Francisco,CA,94016 +280112,27in FHD Monitor,1,149.99,2019-11-09 14:17:00,691 9th St, Atlanta,GA,30301 +280113,AAA Batteries (4-pack),1,2.99,2019-11-17 08:42:00,894 Hickory St, Seattle,WA,98101 +280114,20in Monitor,1,109.99,2019-11-15 00:14:00,755 Maple St, Los Angeles,CA,90001 +280115,Lightning Charging Cable,2,14.95,2019-11-29 11:42:00,994 2nd St, Dallas,TX,75001 +280116,Wired Headphones,1,11.99,2019-11-10 20:52:00,626 12th St, Boston,MA,02215 +280117,34in Ultrawide Monitor,1,379.99,2019-11-14 18:55:00,771 4th St, Seattle,WA,98101 +280118,AAA Batteries (4-pack),1,2.99,2019-11-27 15:14:00,58 Pine St, Atlanta,GA,30301 +280119,27in FHD Monitor,1,149.99,2019-11-22 08:30:00,821 Lake St, Los Angeles,CA,90001 +280120,AAA Batteries (4-pack),1,2.99,2019-11-17 19:43:00,917 Main St, Atlanta,GA,30301 +280121,AA Batteries (4-pack),3,3.84,2019-11-13 11:40:00,38 Hill St, New York City,NY,10001 +280122,USB-C Charging Cable,1,11.95,2019-11-17 10:59:00,767 Meadow St, San Francisco,CA,94016 +280123,AAA Batteries (4-pack),1,2.99,2019-11-21 00:22:00,182 Cedar St, Boston,MA,02215 +280124,Lightning Charging Cable,1,14.95,2019-11-24 15:07:00,52 2nd St, San Francisco,CA,94016 +280125,Wired Headphones,1,11.99,2019-11-21 09:47:00,153 Pine St, New York City,NY,10001 +280126,Lightning Charging Cable,1,14.95,2019-11-10 14:26:00,54 Hill St, New York City,NY,10001 +280127,27in 4K Gaming Monitor,1,389.99,2019-11-09 02:42:00,806 Hickory St, Portland,ME,04101 +280128,Wired Headphones,1,11.99,2019-11-07 20:34:00,46 7th St, Atlanta,GA,30301 +280129,USB-C Charging Cable,1,11.95,2019-11-22 21:33:00,637 8th St, San Francisco,CA,94016 +280130,Apple Airpods Headphones,1,150.0,2019-11-10 13:45:00,638 Hill St, Atlanta,GA,30301 +280131,iPhone,1,700.0,2019-11-12 22:40:00,859 Church St, Boston,MA,02215 +280132,USB-C Charging Cable,1,11.95,2019-11-30 11:35:00,611 Wilson St, Boston,MA,02215 +280133,AAA Batteries (4-pack),2,2.99,2019-11-30 22:58:00,529 Forest St, Dallas,TX,75001 +280134,Wired Headphones,1,11.99,2019-11-29 20:06:00,860 10th St, Los Angeles,CA,90001 +280135,34in Ultrawide Monitor,1,379.99,2019-11-27 16:21:00,985 Walnut St, Los Angeles,CA,90001 +280136,AAA Batteries (4-pack),1,2.99,2019-11-30 22:31:00,99 Sunset St, Atlanta,GA,30301 +280137,Bose SoundSport Headphones,1,99.99,2019-11-29 17:00:00,470 10th St, San Francisco,CA,94016 +280138,Lightning Charging Cable,2,14.95,2019-11-16 16:04:00,341 River St, Seattle,WA,98101 +280139,Apple Airpods Headphones,1,150.0,2019-11-02 01:00:00,672 Lincoln St, Boston,MA,02215 +280140,34in Ultrawide Monitor,1,379.99,2019-11-14 11:28:00,520 Jefferson St, Boston,MA,02215 +280141,Flatscreen TV,1,300.0,2019-11-28 09:48:00,647 Cedar St, New York City,NY,10001 +280142,iPhone,1,700.0,2019-11-02 15:12:00,620 5th St, Los Angeles,CA,90001 +280142,Lightning Charging Cable,1,14.95,2019-11-02 15:12:00,620 5th St, Los Angeles,CA,90001 +280143,Wired Headphones,1,11.99,2019-11-15 12:04:00,620 River St, Atlanta,GA,30301 +280144,AA Batteries (4-pack),3,3.84,2019-11-18 13:29:00,504 Wilson St, Los Angeles,CA,90001 +280145,Wired Headphones,1,11.99,2019-11-10 14:03:00,85 Hill St, Dallas,TX,75001 +280146,AA Batteries (4-pack),2,3.84,2019-11-21 01:12:00,621 Ridge St, Seattle,WA,98101 +280147,Wired Headphones,1,11.99,2019-11-20 17:03:00,270 North St, San Francisco,CA,94016 +280148,Lightning Charging Cable,1,14.95,2019-11-10 12:33:00,346 Main St, Boston,MA,02215 +280149,27in 4K Gaming Monitor,1,389.99,2019-11-20 09:55:00,893 River St, Portland,OR,97035 +280150,AA Batteries (4-pack),1,3.84,2019-11-27 18:50:00,800 Willow St, New York City,NY,10001 +280151,20in Monitor,1,109.99,2019-11-27 13:57:00,940 Meadow St, Portland,OR,97035 +280152,Wired Headphones,1,11.99,2019-11-05 13:17:00,626 Lakeview St, Seattle,WA,98101 +280153,AA Batteries (4-pack),1,3.84,2019-11-22 00:34:00,11 Spruce St, Los Angeles,CA,90001 +280154,AAA Batteries (4-pack),2,2.99,2019-11-12 22:26:00,513 Adams St, Boston,MA,02215 +280155,34in Ultrawide Monitor,1,379.99,2019-11-23 15:29:00,134 2nd St, Portland,OR,97035 +280156,USB-C Charging Cable,1,11.95,2019-11-12 19:55:00,760 11th St, San Francisco,CA,94016 +280157,USB-C Charging Cable,1,11.95,2019-11-08 23:23:00,545 1st St, Austin,TX,73301 +280158,Vareebadd Phone,1,400.0,2019-11-19 17:42:00,374 13th St, Los Angeles,CA,90001 +280159,Wired Headphones,1,11.99,2019-11-16 13:19:00,622 Lake St, Los Angeles,CA,90001 +280160,27in 4K Gaming Monitor,1,389.99,2019-11-18 14:21:00,429 14th St, Los Angeles,CA,90001 +280161,Google Phone,1,600.0,2019-11-10 14:57:00,841 Willow St, Dallas,TX,75001 +280162,LG Washing Machine,1,600.0,2019-11-22 13:38:00,517 11th St, San Francisco,CA,94016 +280163,Apple Airpods Headphones,1,150.0,2019-11-17 21:58:00,13 Dogwood St, Boston,MA,02215 +280164,AAA Batteries (4-pack),6,2.99,2019-11-07 18:28:00,963 Main St, Los Angeles,CA,90001 +280165,Apple Airpods Headphones,1,150.0,2019-11-12 07:53:00,100 Jackson St, San Francisco,CA,94016 +280166,Lightning Charging Cable,1,14.95,2019-11-18 20:52:00,880 Walnut St, Austin,TX,73301 +280167,Lightning Charging Cable,1,14.95,2019-11-05 10:47:00,684 10th St, Los Angeles,CA,90001 +280168,34in Ultrawide Monitor,1,379.99,2019-11-06 15:50:00,73 Madison St, San Francisco,CA,94016 +280169,USB-C Charging Cable,1,11.95,2019-11-08 18:12:00,743 Spruce St, New York City,NY,10001 +280170,Google Phone,1,600.0,2019-11-03 17:45:00,374 Elm St, Los Angeles,CA,90001 +280171,AAA Batteries (4-pack),3,2.99,2019-11-22 14:15:00,80 West St, Los Angeles,CA,90001 +280172,LG Dryer,1,600.0,2019-11-14 20:15:00,341 Washington St, Boston,MA,02215 +280173,AA Batteries (4-pack),1,3.84,2019-11-08 12:09:00,508 10th St, Dallas,TX,75001 +280174,Apple Airpods Headphones,1,150.0,2019-11-14 17:11:00,616 Chestnut St, Atlanta,GA,30301 +280175,Lightning Charging Cable,1,14.95,2019-11-24 09:01:00,110 4th St, San Francisco,CA,94016 +280176,27in 4K Gaming Monitor,1,389.99,2019-11-05 19:56:00,286 Walnut St, Atlanta,GA,30301 +280177,Macbook Pro Laptop,1,1700.0,2019-11-13 20:26:00,767 Park St, San Francisco,CA,94016 +280178,AA Batteries (4-pack),1,3.84,2019-11-11 18:27:00,473 Lincoln St, Los Angeles,CA,90001 +280179,Wired Headphones,1,11.99,2019-11-15 11:25:00,151 13th St, San Francisco,CA,94016 +280180,Macbook Pro Laptop,1,1700.0,2019-11-19 18:42:00,263 Hickory St, Atlanta,GA,30301 +280181,AA Batteries (4-pack),2,3.84,2019-11-01 22:59:00,329 13th St, New York City,NY,10001 +280182,Wired Headphones,1,11.99,2019-11-11 19:13:00,996 4th St, Seattle,WA,98101 +280183,Apple Airpods Headphones,1,150.0,2019-11-06 17:55:00,298 Chestnut St, Boston,MA,02215 +280184,34in Ultrawide Monitor,1,379.99,2019-11-22 20:29:00,607 Highland St, Portland,OR,97035 +280185,27in FHD Monitor,1,149.99,2019-11-24 16:44:00,941 4th St, San Francisco,CA,94016 +280186,USB-C Charging Cable,1,11.95,2019-11-09 17:19:00,203 Elm St, Los Angeles,CA,90001 +280187,USB-C Charging Cable,1,11.95,2019-11-01 21:03:00,458 Ridge St, New York City,NY,10001 +280188,27in FHD Monitor,1,149.99,2019-11-09 23:43:00,600 South St, Los Angeles,CA,90001 +280189,iPhone,1,700.0,2019-11-05 08:15:00,752 Lakeview St, New York City,NY,10001 +280190,20in Monitor,1,109.99,2019-11-13 12:46:00,796 10th St, San Francisco,CA,94016 +280191,USB-C Charging Cable,1,11.95,2019-11-13 13:07:00,244 5th St, New York City,NY,10001 +280192,Wired Headphones,1,11.99,2019-11-04 17:14:00,506 Spruce St, Seattle,WA,98101 +280193,27in 4K Gaming Monitor,1,389.99,2019-11-06 11:18:00,824 8th St, Boston,MA,02215 +280194,USB-C Charging Cable,1,11.95,2019-11-14 22:23:00,93 4th St, Atlanta,GA,30301 +280195,Google Phone,1,600.0,2019-11-11 15:19:00,763 South St, Atlanta,GA,30301 +280196,Wired Headphones,1,11.99,2019-11-24 01:36:00,246 Church St, Portland,OR,97035 +280197,27in FHD Monitor,1,149.99,2019-11-14 10:15:00,369 Jefferson St, Los Angeles,CA,90001 +280198,AA Batteries (4-pack),1,3.84,2019-11-25 07:51:00,89 14th St, Dallas,TX,75001 +280199,AAA Batteries (4-pack),2,2.99,2019-11-10 22:26:00,461 Lake St, Dallas,TX,75001 +280200,AA Batteries (4-pack),1,3.84,2019-11-02 14:27:00,894 13th St, Portland,OR,97035 +280201,Apple Airpods Headphones,1,150.0,2019-11-15 15:33:00,430 Pine St, New York City,NY,10001 +280202,AAA Batteries (4-pack),2,2.99,2019-11-09 23:38:00,601 River St, San Francisco,CA,94016 +280203,Bose SoundSport Headphones,1,99.99,2019-11-18 11:31:00,175 14th St, Austin,TX,73301 +280204,Apple Airpods Headphones,1,150.0,2019-11-22 08:32:00,658 Lincoln St, San Francisco,CA,94016 +280205,AA Batteries (4-pack),1,3.84,2019-11-05 16:44:00,825 Elm St, Dallas,TX,75001 +280206,AA Batteries (4-pack),1,3.84,2019-11-29 20:15:00,124 6th St, Austin,TX,73301 +280207,34in Ultrawide Monitor,1,379.99,2019-11-18 21:01:00,528 Pine St, Los Angeles,CA,90001 +280208,Lightning Charging Cable,1,14.95,2019-11-21 23:58:00,567 Sunset St, Portland,OR,97035 +280209,Flatscreen TV,1,300.0,2019-11-13 11:12:00,647 Elm St, San Francisco,CA,94016 +280210,Macbook Pro Laptop,1,1700.0,2019-11-19 21:14:00,889 11th St, New York City,NY,10001 +280211,20in Monitor,1,109.99,2019-11-12 05:50:00,671 Highland St, Boston,MA,02215 +280212,AA Batteries (4-pack),1,3.84,2019-11-04 21:08:00,676 Lakeview St, Dallas,TX,75001 +280213,Apple Airpods Headphones,1,150.0,2019-11-22 11:35:00,355 Park St, San Francisco,CA,94016 +280214,Bose SoundSport Headphones,1,99.99,2019-11-01 10:38:00,331 Ridge St, Boston,MA,02215 +280215,ThinkPad Laptop,1,999.99,2019-11-15 23:24:00,176 Cedar St, San Francisco,CA,94016 +280216,USB-C Charging Cable,1,11.95,2019-11-12 00:32:00,317 North St, Austin,TX,73301 +280217,USB-C Charging Cable,1,11.95,2019-11-28 09:51:00,591 North St, Los Angeles,CA,90001 +280218,27in 4K Gaming Monitor,1,389.99,2019-11-08 19:51:00,25 Willow St, San Francisco,CA,94016 +280219,AAA Batteries (4-pack),2,2.99,2019-11-13 11:46:00,459 Adams St, San Francisco,CA,94016 +280220,Apple Airpods Headphones,1,150.0,2019-11-23 12:54:00,264 Adams St, Austin,TX,73301 +280221,27in FHD Monitor,1,149.99,2019-11-17 19:23:00,547 Lakeview St, Portland,OR,97035 +280222,Lightning Charging Cable,1,14.95,2019-11-15 15:44:00,87 4th St, San Francisco,CA,94016 +280223,AAA Batteries (4-pack),1,2.99,2019-11-01 21:24:00,932 Jackson St, San Francisco,CA,94016 +280224,Apple Airpods Headphones,1,150.0,2019-11-11 17:51:00,284 Ridge St, San Francisco,CA,94016 +280225,AAA Batteries (4-pack),1,2.99,2019-11-10 00:46:00,83 Forest St, Seattle,WA,98101 +280226,Apple Airpods Headphones,1,150.0,2019-11-09 12:57:00,903 4th St, New York City,NY,10001 +280227,Apple Airpods Headphones,1,150.0,2019-11-13 19:22:00,25 13th St, Austin,TX,73301 +280228,AA Batteries (4-pack),1,3.84,2019-11-18 23:09:00,396 10th St, Seattle,WA,98101 +280229,Apple Airpods Headphones,1,150.0,2019-11-27 20:23:00,405 Maple St, Los Angeles,CA,90001 +280230,34in Ultrawide Monitor,1,379.99,2019-11-23 15:23:00,295 Ridge St, San Francisco,CA,94016 +280231,Bose SoundSport Headphones,1,99.99,2019-11-07 20:04:00,156 Lakeview St, San Francisco,CA,94016 +280232,Wired Headphones,1,11.99,2019-11-01 12:32:00,553 Wilson St, San Francisco,CA,94016 +280233,USB-C Charging Cable,1,11.95,2019-11-23 22:50:00,235 Meadow St, Seattle,WA,98101 +280234,AAA Batteries (4-pack),1,2.99,2019-11-20 08:24:00,700 Pine St, New York City,NY,10001 +280235,34in Ultrawide Monitor,1,379.99,2019-11-23 18:20:00,59 Pine St, Los Angeles,CA,90001 +280236,USB-C Charging Cable,2,11.95,2019-11-01 19:26:00,742 Elm St, Boston,MA,02215 +280237,Bose SoundSport Headphones,1,99.99,2019-11-09 09:00:00,749 14th St, New York City,NY,10001 +280238,AAA Batteries (4-pack),1,2.99,2019-11-06 11:50:00,272 Church St, San Francisco,CA,94016 +280239,AA Batteries (4-pack),1,3.84,2019-11-08 12:02:00,517 Park St, Seattle,WA,98101 +280240,20in Monitor,1,109.99,2019-11-20 19:56:00,366 7th St, San Francisco,CA,94016 +280241,Macbook Pro Laptop,1,1700.0,2019-11-09 01:14:00,612 Dogwood St, Dallas,TX,75001 +280242,Macbook Pro Laptop,1,1700.0,2019-11-14 20:03:00,629 Jefferson St, New York City,NY,10001 +280243,AAA Batteries (4-pack),2,2.99,2019-11-02 21:05:00,540 Lincoln St, Los Angeles,CA,90001 +280244,Wired Headphones,1,11.99,2019-11-20 10:30:00,472 10th St, Los Angeles,CA,90001 +280245,USB-C Charging Cable,2,11.95,2019-11-20 05:52:00,376 11th St, San Francisco,CA,94016 +280246,AA Batteries (4-pack),2,3.84,2019-11-21 13:13:00,67 Chestnut St, Atlanta,GA,30301 +280247,Apple Airpods Headphones,1,150.0,2019-11-02 23:04:00,31 Chestnut St, Atlanta,GA,30301 +280248,Lightning Charging Cable,1,14.95,2019-11-23 11:45:00,915 6th St, San Francisco,CA,94016 +280249,Google Phone,1,600.0,2019-11-09 18:36:00,156 Washington St, San Francisco,CA,94016 +280249,USB-C Charging Cable,1,11.95,2019-11-09 18:36:00,156 Washington St, San Francisco,CA,94016 +280250,Bose SoundSport Headphones,1,99.99,2019-11-13 15:38:00,924 Pine St, Los Angeles,CA,90001 +280251,Lightning Charging Cable,1,14.95,2019-11-09 14:07:00,312 10th St, San Francisco,CA,94016 +280252,USB-C Charging Cable,1,11.95,2019-11-19 11:29:00,174 Spruce St, Portland,OR,97035 +280253,iPhone,1,700.0,2019-11-28 07:49:00,477 Cherry St, Atlanta,GA,30301 +280254,AA Batteries (4-pack),1,3.84,2019-11-21 20:10:00,417 Chestnut St, Portland,OR,97035 +280255,AA Batteries (4-pack),1,3.84,2019-11-06 16:51:00,611 1st St, San Francisco,CA,94016 +280256,Google Phone,1,600.0,2019-11-16 11:20:00,525 Park St, San Francisco,CA,94016 +280257,20in Monitor,1,109.99,2019-11-16 16:59:00,63 Church St, Portland,ME,04101 +280258,USB-C Charging Cable,2,11.95,2019-11-09 17:20:00,144 Sunset St, Los Angeles,CA,90001 +280259,Macbook Pro Laptop,1,1700.0,2019-11-25 11:54:00,747 Meadow St, Dallas,TX,75001 +280260,34in Ultrawide Monitor,1,379.99,2019-11-27 12:32:00,307 6th St, New York City,NY,10001 +280261,Wired Headphones,1,11.99,2019-11-30 16:28:00,996 Lincoln St, Boston,MA,02215 +280262,AAA Batteries (4-pack),1,2.99,2019-11-14 13:25:00,694 7th St, Dallas,TX,75001 +280263,27in FHD Monitor,1,149.99,2019-11-25 23:29:00,948 Cedar St, Dallas,TX,75001 +280264,AA Batteries (4-pack),1,3.84,2019-11-03 07:00:00,332 Church St, Boston,MA,02215 +280265,AA Batteries (4-pack),1,3.84,2019-11-19 15:28:00,34 6th St, Dallas,TX,75001 +280266,Vareebadd Phone,1,400.0,2019-11-19 12:47:00,336 4th St, Portland,OR,97035 +280267,20in Monitor,1,109.99,2019-11-09 20:58:00,933 Maple St, Los Angeles,CA,90001 +280268,AA Batteries (4-pack),1,3.84,2019-11-30 12:11:00,898 Chestnut St, Los Angeles,CA,90001 +280269,27in 4K Gaming Monitor,1,389.99,2019-11-30 18:34:00,762 River St, Dallas,TX,75001 +280270,Apple Airpods Headphones,1,150.0,2019-11-16 17:44:00,827 Wilson St, Dallas,TX,75001 +280271,Apple Airpods Headphones,1,150.0,2019-11-23 19:40:00,755 Cherry St, New York City,NY,10001 +280272,Lightning Charging Cable,1,14.95,2019-11-05 15:39:00,20 11th St, San Francisco,CA,94016 +280273,Wired Headphones,1,11.99,2019-11-29 02:33:00,289 Ridge St, Portland,OR,97035 +280274,Google Phone,1,600.0,2019-11-24 10:32:00,89 Elm St, San Francisco,CA,94016 +280275,Lightning Charging Cable,1,14.95,2019-12-01 00:37:00,616 Forest St, Seattle,WA,98101 +280276,USB-C Charging Cable,1,11.95,2019-11-15 11:20:00,638 Church St, Dallas,TX,75001 +280277,AAA Batteries (4-pack),3,2.99,2019-11-17 14:01:00,748 Park St, Los Angeles,CA,90001 +280278,AAA Batteries (4-pack),1,2.99,2019-11-17 09:41:00,900 Lake St, Seattle,WA,98101 +280279,Apple Airpods Headphones,1,150.0,2019-11-25 10:26:00,777 Johnson St, Los Angeles,CA,90001 +280280,Wired Headphones,1,11.99,2019-11-01 15:51:00,942 Hill St, New York City,NY,10001 +280281,USB-C Charging Cable,2,11.95,2019-11-23 21:03:00,257 Wilson St, Los Angeles,CA,90001 +280282,Wired Headphones,1,11.99,2019-11-24 14:43:00,90 2nd St, New York City,NY,10001 +280283,Wired Headphones,1,11.99,2019-11-22 16:06:00,146 Sunset St, Austin,TX,73301 +280284,Google Phone,1,600.0,2019-11-11 19:32:00,81 8th St, Portland,OR,97035 +280285,Wired Headphones,1,11.99,2019-11-15 08:27:00,240 Willow St, Boston,MA,02215 +280286,USB-C Charging Cable,1,11.95,2019-11-24 07:49:00,236 Hill St, San Francisco,CA,94016 +280287,Apple Airpods Headphones,1,150.0,2019-11-16 04:54:00,324 Lake St, San Francisco,CA,94016 +280288,Wired Headphones,1,11.99,2019-11-19 19:34:00,296 Walnut St, Seattle,WA,98101 +280289,USB-C Charging Cable,1,11.95,2019-11-05 14:40:00,846 Sunset St, Austin,TX,73301 +280290,Lightning Charging Cable,1,14.95,2019-11-23 17:21:00,258 Main St, San Francisco,CA,94016 +280291,AAA Batteries (4-pack),2,2.99,2019-11-28 21:16:00,843 Cherry St, Portland,OR,97035 +280292,Bose SoundSport Headphones,1,99.99,2019-11-10 15:19:00,324 Washington St, San Francisco,CA,94016 +280293,Macbook Pro Laptop,1,1700.0,2019-11-23 10:48:00,776 Hickory St, San Francisco,CA,94016 +280294,Apple Airpods Headphones,1,150.0,2019-11-21 09:24:00,341 5th St, New York City,NY,10001 +280295,20in Monitor,1,109.99,2019-11-25 18:57:00,768 Madison St, San Francisco,CA,94016 +280296,Apple Airpods Headphones,1,150.0,2019-11-16 14:40:00,687 13th St, San Francisco,CA,94016 +280297,Wired Headphones,1,11.99,2019-11-12 18:12:00,212 Church St, Los Angeles,CA,90001 +280298,Apple Airpods Headphones,1,150.0,2019-11-01 22:19:00,323 Dogwood St, Dallas,TX,75001 +280299,Wired Headphones,2,11.99,2019-11-20 19:43:00,11 Sunset St, San Francisco,CA,94016 +280300,Apple Airpods Headphones,1,150.0,2019-11-14 22:03:00,996 10th St, Los Angeles,CA,90001 +280301,AA Batteries (4-pack),1,3.84,2019-11-03 23:34:00,517 10th St, Austin,TX,73301 +280302,Apple Airpods Headphones,1,150.0,2019-11-03 07:09:00,331 Willow St, New York City,NY,10001 +280303,27in FHD Monitor,1,149.99,2019-11-04 09:48:00,978 Cedar St, New York City,NY,10001 +280304,Wired Headphones,1,11.99,2019-11-27 12:47:00,813 12th St, New York City,NY,10001 +280305,Wired Headphones,1,11.99,2019-11-21 14:47:00,853 Center St, Los Angeles,CA,90001 +280306,USB-C Charging Cable,1,11.95,2019-11-08 08:46:00,992 South St, Los Angeles,CA,90001 +280307,Flatscreen TV,1,300.0,2019-11-30 22:21:00,984 Lakeview St, Los Angeles,CA,90001 +280308,Wired Headphones,1,11.99,2019-11-22 21:12:00,180 2nd St, Boston,MA,02215 +280309,Flatscreen TV,1,300.0,2019-11-19 19:47:00,45 Jefferson St, New York City,NY,10001 +280310,AA Batteries (4-pack),1,3.84,2019-11-15 03:55:00,362 8th St, San Francisco,CA,94016 +280311,27in FHD Monitor,1,149.99,2019-11-02 17:12:00,977 Park St, Los Angeles,CA,90001 +280312,Apple Airpods Headphones,1,150.0,2019-11-12 14:07:00,715 14th St, Atlanta,GA,30301 +280313,Bose SoundSport Headphones,1,99.99,2019-11-25 00:32:00,316 Cherry St, New York City,NY,10001 +280314,ThinkPad Laptop,1,999.99,2019-11-18 17:01:00,621 13th St, Dallas,TX,75001 +280315,AAA Batteries (4-pack),1,2.99,2019-11-22 14:30:00,719 Forest St, Dallas,TX,75001 +280316,USB-C Charging Cable,1,11.95,2019-11-29 11:30:00,62 Madison St, New York City,NY,10001 +280317,AA Batteries (4-pack),1,3.84,2019-11-03 22:39:00,722 Highland St, Los Angeles,CA,90001 +280317,20in Monitor,1,109.99,2019-11-03 22:39:00,722 Highland St, Los Angeles,CA,90001 +280318,Apple Airpods Headphones,1,150.0,2019-11-09 15:22:00,763 5th St, Atlanta,GA,30301 +280319,USB-C Charging Cable,1,11.95,2019-11-26 13:41:00,119 Highland St, New York City,NY,10001 +280320,Apple Airpods Headphones,1,150.0,2019-11-23 18:14:00,615 Sunset St, San Francisco,CA,94016 +280321,AAA Batteries (4-pack),1,2.99,2019-11-17 10:32:00,929 Lincoln St, New York City,NY,10001 +280322,Wired Headphones,1,11.99,2019-11-19 22:00:00,2 Hill St, Atlanta,GA,30301 +280323,AA Batteries (4-pack),1,3.84,2019-11-07 15:40:00,117 Willow St, San Francisco,CA,94016 +280324,AA Batteries (4-pack),1,3.84,2019-11-11 09:27:00,386 Elm St, Dallas,TX,75001 +280325,Macbook Pro Laptop,1,1700.0,2019-11-01 17:59:00,563 5th St, New York City,NY,10001 +280326,AA Batteries (4-pack),1,3.84,2019-11-29 15:43:00,221 Park St, Los Angeles,CA,90001 +280327,AA Batteries (4-pack),1,3.84,2019-11-28 18:39:00,373 Cedar St, Austin,TX,73301 +280328,AAA Batteries (4-pack),2,2.99,2019-11-17 09:55:00,68 Willow St, San Francisco,CA,94016 +280329,Lightning Charging Cable,1,14.95,2019-11-25 11:28:00,900 Main St, San Francisco,CA,94016 +280330,Bose SoundSport Headphones,1,99.99,2019-11-05 20:55:00,94 12th St, New York City,NY,10001 +280331,20in Monitor,1,109.99,2019-11-18 21:39:00,439 Hill St, Seattle,WA,98101 +280332,Lightning Charging Cable,1,14.95,2019-11-28 08:39:00,932 Elm St, Seattle,WA,98101 +280333,Lightning Charging Cable,1,14.95,2019-11-26 12:10:00,894 Lake St, San Francisco,CA,94016 +280334,Apple Airpods Headphones,1,150.0,2019-11-02 18:34:00,872 6th St, New York City,NY,10001 +280335,Lightning Charging Cable,1,14.95,2019-11-10 22:32:00,895 Jackson St, Seattle,WA,98101 +280336,AA Batteries (4-pack),1,3.84,2019-11-05 10:15:00,203 Cherry St, San Francisco,CA,94016 +280337,LG Washing Machine,1,600.0,2019-11-30 13:38:00,98 Park St, Los Angeles,CA,90001 +280338,Lightning Charging Cable,1,14.95,2019-11-22 23:02:00,999 North St, Seattle,WA,98101 +280339,AAA Batteries (4-pack),2,2.99,2019-11-17 23:16:00,375 8th St, Austin,TX,73301 +280340,Apple Airpods Headphones,1,150.0,2019-11-11 10:08:00,176 Maple St, San Francisco,CA,94016 +280341,AA Batteries (4-pack),2,3.84,2019-11-21 09:30:00,831 River St, Los Angeles,CA,90001 +280342,iPhone,1,700.0,2019-11-03 19:01:00,536 6th St, Dallas,TX,75001 +280343,27in 4K Gaming Monitor,1,389.99,2019-11-07 17:03:00,199 Adams St, Los Angeles,CA,90001 +280344,AA Batteries (4-pack),1,3.84,2019-11-12 22:00:00,980 9th St, New York City,NY,10001 +280345,Wired Headphones,1,11.99,2019-11-05 17:13:00,520 4th St, Dallas,TX,75001 +280346,Apple Airpods Headphones,1,150.0,2019-11-27 18:37:00,286 Forest St, Atlanta,GA,30301 +280347,AA Batteries (4-pack),1,3.84,2019-11-09 18:51:00,763 2nd St, Seattle,WA,98101 +280348,AAA Batteries (4-pack),2,2.99,2019-11-08 08:41:00,654 11th St, Portland,OR,97035 +280349,20in Monitor,1,109.99,2019-11-29 12:59:00,173 11th St, Dallas,TX,75001 +280350,Flatscreen TV,1,300.0,2019-11-07 18:30:00,574 Center St, Boston,MA,02215 +280351,USB-C Charging Cable,1,11.95,2019-11-05 11:42:00,362 Cherry St, Austin,TX,73301 +280352,AAA Batteries (4-pack),1,2.99,2019-11-12 18:45:00,645 Cedar St, Atlanta,GA,30301 +280353,Macbook Pro Laptop,1,1700.0,2019-11-13 15:10:00,240 Johnson St, New York City,NY,10001 +280354,USB-C Charging Cable,1,11.95,2019-11-23 19:08:00,15 13th St, San Francisco,CA,94016 +280355,AA Batteries (4-pack),1,3.84,2019-11-03 14:33:00,441 6th St, Atlanta,GA,30301 +280356,Lightning Charging Cable,1,14.95,2019-11-22 09:19:00,867 6th St, Portland,OR,97035 +280357,Lightning Charging Cable,1,14.95,2019-11-07 06:09:00,254 11th St, San Francisco,CA,94016 +280358,Apple Airpods Headphones,1,150.0,2019-11-26 14:47:00,1 Lakeview St, Los Angeles,CA,90001 +280359,Lightning Charging Cable,1,14.95,2019-11-13 12:52:00,606 River St, Boston,MA,02215 +280360,Lightning Charging Cable,1,14.95,2019-11-20 23:00:00,511 9th St, Los Angeles,CA,90001 +280361,AAA Batteries (4-pack),2,2.99,2019-11-04 21:00:00,747 Cherry St, New York City,NY,10001 +280362,AAA Batteries (4-pack),4,2.99,2019-11-24 07:38:00,798 6th St, Atlanta,GA,30301 +280363,Apple Airpods Headphones,1,150.0,2019-11-15 12:07:00,464 Center St, Austin,TX,73301 +280364,Google Phone,1,600.0,2019-11-29 21:33:00,526 Park St, Dallas,TX,75001 +280365,Wired Headphones,1,11.99,2019-11-18 16:35:00,364 Highland St, Dallas,TX,75001 +280366,Bose SoundSport Headphones,1,99.99,2019-11-24 12:29:00,460 11th St, Portland,OR,97035 +280367,USB-C Charging Cable,2,11.95,2019-11-16 11:44:00,372 13th St, Los Angeles,CA,90001 +280368,20in Monitor,1,109.99,2019-11-20 18:19:00,93 Center St, Atlanta,GA,30301 +280369,Lightning Charging Cable,2,14.95,2019-11-01 07:51:00,228 Highland St, Austin,TX,73301 +280370,Bose SoundSport Headphones,1,99.99,2019-11-12 19:47:00,794 Washington St, Boston,MA,02215 +280371,USB-C Charging Cable,1,11.95,2019-11-10 10:49:00,783 12th St, San Francisco,CA,94016 +280372,AAA Batteries (4-pack),2,2.99,2019-11-28 18:00:00,79 Chestnut St, Seattle,WA,98101 +280373,USB-C Charging Cable,1,11.95,2019-11-21 11:09:00,56 2nd St, Dallas,TX,75001 +280374,USB-C Charging Cable,1,11.95,2019-11-19 13:06:00,951 West St, Seattle,WA,98101 +280375,34in Ultrawide Monitor,1,379.99,2019-11-17 12:51:00,911 11th St, Portland,OR,97035 +280376,20in Monitor,1,109.99,2019-11-30 23:54:00,739 Pine St, Dallas,TX,75001 +280377,Apple Airpods Headphones,1,150.0,2019-11-24 16:05:00,314 10th St, Dallas,TX,75001 +280378,ThinkPad Laptop,1,999.99,2019-11-07 15:23:00,960 Church St, Dallas,TX,75001 +280379,34in Ultrawide Monitor,1,379.99,2019-11-23 22:00:00,37 Chestnut St, New York City,NY,10001 +280380,27in FHD Monitor,1,149.99,2019-11-14 17:59:00,932 12th St, Portland,OR,97035 +280381,Apple Airpods Headphones,1,150.0,2019-11-08 18:22:00,341 South St, Atlanta,GA,30301 +280382,USB-C Charging Cable,1,11.95,2019-11-23 10:23:00,138 5th St, New York City,NY,10001 +280383,USB-C Charging Cable,1,11.95,2019-11-24 00:06:00,900 Lake St, Atlanta,GA,30301 +280384,USB-C Charging Cable,1,11.95,2019-11-25 06:17:00,519 Elm St, San Francisco,CA,94016 +280385,USB-C Charging Cable,1,11.95,2019-11-24 00:34:00,355 River St, Portland,OR,97035 +280386,Vareebadd Phone,1,400.0,2019-11-21 13:01:00,60 West St, Los Angeles,CA,90001 +280386,Wired Headphones,1,11.99,2019-11-21 13:01:00,60 West St, Los Angeles,CA,90001 +280387,Macbook Pro Laptop,1,1700.0,2019-11-11 13:17:00,468 Wilson St, Atlanta,GA,30301 +280388,Wired Headphones,1,11.99,2019-11-15 20:04:00,989 Dogwood St, San Francisco,CA,94016 +280389,Flatscreen TV,1,300.0,2019-11-05 17:33:00,819 5th St, Los Angeles,CA,90001 +280390,27in 4K Gaming Monitor,1,389.99,2019-11-05 20:56:00,352 Forest St, Boston,MA,02215 +280391,Apple Airpods Headphones,1,150.0,2019-11-18 22:15:00,865 Highland St, Portland,OR,97035 +280392,AA Batteries (4-pack),1,3.84,2019-11-13 08:44:00,705 7th St, Los Angeles,CA,90001 +280393,Wired Headphones,1,11.99,2019-11-14 15:01:00,992 South St, Seattle,WA,98101 +280394,LG Washing Machine,1,600.0,2019-11-27 00:16:00,543 Elm St, San Francisco,CA,94016 +280395,AA Batteries (4-pack),4,3.84,2019-11-10 11:19:00,310 7th St, Boston,MA,02215 +280396,USB-C Charging Cable,1,11.95,2019-11-20 07:49:00,299 West St, Austin,TX,73301 +280397,20in Monitor,1,109.99,2019-11-29 07:56:00,654 Chestnut St, Los Angeles,CA,90001 +280398,Apple Airpods Headphones,1,150.0,2019-11-14 11:47:00,704 Highland St, Dallas,TX,75001 +280399,Lightning Charging Cable,1,14.95,2019-11-25 13:50:00,869 Hill St, San Francisco,CA,94016 +280400,Lightning Charging Cable,2,14.95,2019-11-09 19:36:00,996 Willow St, Boston,MA,02215 +280401,27in FHD Monitor,1,149.99,2019-11-07 20:48:00,555 4th St, San Francisco,CA,94016 +280402,Wired Headphones,1,11.99,2019-11-09 11:36:00,74 Elm St, San Francisco,CA,94016 +280403,AA Batteries (4-pack),1,3.84,2019-11-09 13:08:00,565 Spruce St, Dallas,TX,75001 +280404,Bose SoundSport Headphones,1,99.99,2019-11-10 20:44:00,732 9th St, San Francisco,CA,94016 +280404,Flatscreen TV,1,300.0,2019-11-10 20:44:00,732 9th St, San Francisco,CA,94016 +280405,27in FHD Monitor,1,149.99,2019-11-11 09:20:00,735 West St, San Francisco,CA,94016 +280406,AA Batteries (4-pack),1,3.84,2019-11-04 11:16:00,674 Dogwood St, Los Angeles,CA,90001 +280407,Lightning Charging Cable,1,14.95,2019-11-01 16:14:00,640 Jackson St, Seattle,WA,98101 +280408,27in FHD Monitor,1,149.99,2019-11-09 10:48:00,323 Church St, Atlanta,GA,30301 +280409,AA Batteries (4-pack),1,3.84,2019-11-17 13:09:00,372 Willow St, Los Angeles,CA,90001 +280410,27in 4K Gaming Monitor,1,389.99,2019-11-24 15:57:00,104 4th St, New York City,NY,10001 +280411,Bose SoundSport Headphones,1,99.99,2019-11-13 23:41:00,150 Adams St, San Francisco,CA,94016 +280412,AA Batteries (4-pack),1,3.84,2019-11-07 00:16:00,480 River St, Los Angeles,CA,90001 +280413,USB-C Charging Cable,1,11.95,2019-11-16 09:10:00,701 Ridge St, Boston,MA,02215 +280414,34in Ultrawide Monitor,1,379.99,2019-11-05 21:23:00,933 8th St, Los Angeles,CA,90001 +280415,Google Phone,1,600.0,2019-11-11 22:14:00,880 Church St, Los Angeles,CA,90001 +280416,20in Monitor,1,109.99,2019-11-08 07:37:00,46 Willow St, Boston,MA,02215 +280417,AA Batteries (4-pack),1,3.84,2019-11-19 14:40:00,402 River St, Atlanta,GA,30301 +280418,Flatscreen TV,1,300.0,2019-11-15 06:16:00,509 Hill St, Dallas,TX,75001 +280419,Lightning Charging Cable,1,14.95,2019-11-16 19:23:00,38 Jackson St, Los Angeles,CA,90001 +280420,USB-C Charging Cable,1,11.95,2019-11-24 06:38:00,227 Park St, San Francisco,CA,94016 +280421,AAA Batteries (4-pack),1,2.99,2019-11-20 06:21:00,868 Meadow St, New York City,NY,10001 +280422,Lightning Charging Cable,1,14.95,2019-11-22 21:36:00,82 7th St, Atlanta,GA,30301 +280423,USB-C Charging Cable,1,11.95,2019-11-05 16:05:00,23 9th St, Atlanta,GA,30301 +280424,AAA Batteries (4-pack),1,2.99,2019-11-07 12:17:00,23 Walnut St, San Francisco,CA,94016 +280425,Bose SoundSport Headphones,1,99.99,2019-11-14 13:07:00,880 Maple St, San Francisco,CA,94016 +280426,iPhone,1,700.0,2019-11-22 08:29:00,776 Chestnut St, San Francisco,CA,94016 +280427,USB-C Charging Cable,1,11.95,2019-11-10 08:44:00,979 Hickory St, San Francisco,CA,94016 +280428,AA Batteries (4-pack),1,3.84,2019-11-30 19:48:00,65 Lincoln St, Austin,TX,73301 +280429,Lightning Charging Cable,1,14.95,2019-11-14 08:25:00,214 9th St, Los Angeles,CA,90001 +280430,Google Phone,1,600.0,2019-11-27 16:12:00,916 Willow St, San Francisco,CA,94016 +280431,AAA Batteries (4-pack),2,2.99,2019-11-14 13:40:00,636 Wilson St, San Francisco,CA,94016 +280432,27in 4K Gaming Monitor,1,389.99,2019-11-22 19:53:00,784 10th St, San Francisco,CA,94016 +280433,Wired Headphones,1,11.99,2019-11-07 21:17:00,756 Madison St, New York City,NY,10001 +280434,LG Washing Machine,1,600.0,2019-11-13 06:06:00,655 River St, Atlanta,GA,30301 +280435,AAA Batteries (4-pack),1,2.99,2019-11-02 18:59:00,403 Park St, Los Angeles,CA,90001 +280436,USB-C Charging Cable,1,11.95,2019-11-02 15:48:00,663 Hill St, Boston,MA,02215 +280437,Bose SoundSport Headphones,1,99.99,2019-11-03 12:10:00,885 13th St, Seattle,WA,98101 +280438,USB-C Charging Cable,1,11.95,2019-11-04 17:56:00,557 North St, San Francisco,CA,94016 +280439,Bose SoundSport Headphones,1,99.99,2019-11-02 13:44:00,759 Spruce St, Boston,MA,02215 +280440,USB-C Charging Cable,1,11.95,2019-11-11 18:11:00,89 4th St, Los Angeles,CA,90001 +280441,ThinkPad Laptop,1,999.99,2019-11-03 19:18:00,370 Lakeview St, San Francisco,CA,94016 +280442,Bose SoundSport Headphones,1,99.99,2019-11-03 03:26:00,161 Spruce St, New York City,NY,10001 +280443,Apple Airpods Headphones,1,150.0,2019-11-11 22:33:00,317 Highland St, Los Angeles,CA,90001 +280444,Lightning Charging Cable,2,14.95,2019-11-15 18:12:00,615 Hickory St, Dallas,TX,75001 +280445,AAA Batteries (4-pack),1,2.99,2019-11-25 10:00:00,981 Sunset St, San Francisco,CA,94016 +280446,Wired Headphones,2,11.99,2019-11-30 13:53:00,282 North St, Boston,MA,02215 +280447,Lightning Charging Cable,1,14.95,2019-11-26 20:55:00,726 10th St, New York City,NY,10001 +280448,USB-C Charging Cable,1,11.95,2019-11-12 12:21:00,474 4th St, Dallas,TX,75001 +280449,27in FHD Monitor,1,149.99,2019-11-24 07:28:00,904 Chestnut St, Atlanta,GA,30301 +280450,AAA Batteries (4-pack),3,2.99,2019-11-22 09:24:00,158 Hickory St, Portland,ME,04101 +280451,AAA Batteries (4-pack),1,2.99,2019-11-27 19:10:00,483 Cedar St, New York City,NY,10001 +280452,Apple Airpods Headphones,1,150.0,2019-11-25 20:44:00,189 Cherry St, Portland,OR,97035 +280453,34in Ultrawide Monitor,1,379.99,2019-11-18 00:07:00,553 Madison St, San Francisco,CA,94016 +280454,USB-C Charging Cable,1,11.95,2019-11-18 15:54:00,67 Pine St, San Francisco,CA,94016 +280455,Wired Headphones,1,11.99,2019-11-21 11:51:00,770 Dogwood St, New York City,NY,10001 +280456,27in 4K Gaming Monitor,1,389.99,2019-11-22 19:42:00,878 Meadow St, Seattle,WA,98101 +280457,Wired Headphones,2,11.99,2019-11-21 10:39:00,861 West St, San Francisco,CA,94016 +280458,Apple Airpods Headphones,1,150.0,2019-11-06 18:57:00,110 River St, San Francisco,CA,94016 +280459,AAA Batteries (4-pack),1,2.99,2019-11-09 23:49:00,641 North St, Austin,TX,73301 +280460,Wired Headphones,1,11.99,2019-11-17 19:02:00,5 7th St, Los Angeles,CA,90001 +280461,Bose SoundSport Headphones,1,99.99,2019-11-27 21:48:00,648 River St, Los Angeles,CA,90001 +280462,USB-C Charging Cable,1,11.95,2019-11-01 22:55:00,682 Walnut St, Austin,TX,73301 +280463,Wired Headphones,1,11.99,2019-11-03 12:25:00,343 2nd St, Dallas,TX,75001 +280464,Lightning Charging Cable,1,14.95,2019-11-29 17:07:00,606 Walnut St, San Francisco,CA,94016 +280465,Apple Airpods Headphones,1,150.0,2019-11-11 00:52:00,527 Walnut St, San Francisco,CA,94016 +280466,Lightning Charging Cable,1,14.95,2019-11-06 14:24:00,504 Spruce St, San Francisco,CA,94016 +280467,Lightning Charging Cable,1,14.95,2019-11-26 22:51:00,170 Main St, San Francisco,CA,94016 +280468,Apple Airpods Headphones,1,150.0,2019-11-29 00:56:00,36 12th St, New York City,NY,10001 +280469,USB-C Charging Cable,1,11.95,2019-11-24 11:34:00,365 Ridge St, New York City,NY,10001 +280470,Lightning Charging Cable,1,14.95,2019-11-25 21:17:00,289 8th St, New York City,NY,10001 +280471,Apple Airpods Headphones,1,150.0,2019-11-29 11:07:00,725 Adams St, Boston,MA,02215 +280472,AAA Batteries (4-pack),1,2.99,2019-11-02 21:59:00,236 Jefferson St, New York City,NY,10001 +280473,AAA Batteries (4-pack),1,2.99,2019-11-24 04:44:00,926 13th St, Los Angeles,CA,90001 +280474,iPhone,1,700.0,2019-11-16 14:19:00,777 Jefferson St, Los Angeles,CA,90001 +280475,Macbook Pro Laptop,1,1700.0,2019-11-04 17:56:00,344 1st St, San Francisco,CA,94016 +280476,27in FHD Monitor,1,149.99,2019-11-07 08:54:00,402 4th St, Seattle,WA,98101 +280477,Bose SoundSport Headphones,1,99.99,2019-11-08 18:49:00,894 Ridge St, Boston,MA,02215 +280478,Apple Airpods Headphones,1,150.0,2019-11-29 22:24:00,280 14th St, Boston,MA,02215 +280479,USB-C Charging Cable,1,11.95,2019-11-16 15:09:00,775 11th St, New York City,NY,10001 +280479,AA Batteries (4-pack),1,3.84,2019-11-16 15:09:00,775 11th St, New York City,NY,10001 +280480,34in Ultrawide Monitor,1,379.99,2019-11-04 08:08:00,635 Center St, San Francisco,CA,94016 +280481,AA Batteries (4-pack),1,3.84,2019-11-30 21:22:00,637 Chestnut St, Seattle,WA,98101 +280482,Lightning Charging Cable,1,14.95,2019-11-22 00:31:00,477 5th St, Atlanta,GA,30301 +280483,Lightning Charging Cable,1,14.95,2019-11-17 15:08:00,371 Jackson St, Atlanta,GA,30301 +280484,Apple Airpods Headphones,1,150.0,2019-11-17 18:47:00,907 1st St, San Francisco,CA,94016 +280485,USB-C Charging Cable,1,11.95,2019-11-13 07:11:00,890 Jackson St, Portland,OR,97035 +280486,AA Batteries (4-pack),1,3.84,2019-11-29 19:13:00,457 6th St, Portland,OR,97035 +280487,34in Ultrawide Monitor,1,379.99,2019-11-12 16:31:00,203 6th St, Los Angeles,CA,90001 +280488,Apple Airpods Headphones,1,150.0,2019-11-28 18:03:00,307 Lincoln St, Dallas,TX,75001 +280489,USB-C Charging Cable,1,11.95,2019-11-12 13:48:00,179 River St, San Francisco,CA,94016 +280490,Bose SoundSport Headphones,1,99.99,2019-11-27 17:27:00,169 Pine St, Seattle,WA,98101 +280491,Lightning Charging Cable,1,14.95,2019-11-05 18:08:00,556 Johnson St, San Francisco,CA,94016 +280492,AA Batteries (4-pack),1,3.84,2019-11-01 14:29:00,998 Chestnut St, Boston,MA,02215 +280493,Wired Headphones,1,11.99,2019-11-03 10:57:00,774 Walnut St, San Francisco,CA,94016 +280494,Wired Headphones,1,11.99,2019-11-17 23:58:00,491 Center St, Los Angeles,CA,90001 +280495,AAA Batteries (4-pack),1,2.99,2019-11-04 19:31:00,656 Washington St, San Francisco,CA,94016 +280496,USB-C Charging Cable,2,11.95,2019-11-23 09:27:00,540 Lincoln St, New York City,NY,10001 +280497,Bose SoundSport Headphones,1,99.99,2019-11-09 09:33:00,674 Hickory St, Boston,MA,02215 +280498,Apple Airpods Headphones,1,150.0,2019-11-20 13:38:00,201 Forest St, Los Angeles,CA,90001 +280499,Lightning Charging Cable,2,14.95,2019-11-22 22:14:00,386 West St, San Francisco,CA,94016 +280500,Bose SoundSport Headphones,1,99.99,2019-11-03 23:06:00,227 Washington St, Atlanta,GA,30301 +280501,20in Monitor,1,109.99,2019-11-08 17:16:00,485 Pine St, San Francisco,CA,94016 +280502,Bose SoundSport Headphones,1,99.99,2019-11-04 21:02:00,397 Pine St, Boston,MA,02215 +280503,27in 4K Gaming Monitor,1,389.99,2019-11-03 12:55:00,636 9th St, Dallas,TX,75001 +280504,AA Batteries (4-pack),1,3.84,2019-11-01 20:52:00,509 Spruce St, San Francisco,CA,94016 +280505,Lightning Charging Cable,1,14.95,2019-11-24 18:13:00,997 Maple St, San Francisco,CA,94016 +280506,iPhone,1,700.0,2019-11-06 11:13:00,673 Forest St, New York City,NY,10001 +280506,Apple Airpods Headphones,1,150.0,2019-11-06 11:13:00,673 Forest St, New York City,NY,10001 +280507,Macbook Pro Laptop,1,1700.0,2019-11-08 14:55:00,887 Park St, San Francisco,CA,94016 +280508,ThinkPad Laptop,1,999.99,2019-11-07 17:18:00,610 Cedar St, Los Angeles,CA,90001 +280509,Wired Headphones,2,11.99,2019-11-05 18:50:00,720 Lake St, Dallas,TX,75001 +280510,Bose SoundSport Headphones,1,99.99,2019-11-09 12:27:00,81 6th St, Boston,MA,02215 +280511,iPhone,1,700.0,2019-11-11 14:28:00,194 Walnut St, Dallas,TX,75001 +280511,Wired Headphones,1,11.99,2019-11-11 14:28:00,194 Walnut St, Dallas,TX,75001 +280512,AA Batteries (4-pack),1,3.84,2019-11-15 19:27:00,570 10th St, Austin,TX,73301 +280513,27in 4K Gaming Monitor,1,389.99,2019-11-13 14:55:00,828 Center St, Austin,TX,73301 +280514,Lightning Charging Cable,1,14.95,2019-11-21 20:06:00,530 1st St, Dallas,TX,75001 +280515,AAA Batteries (4-pack),1,2.99,2019-11-04 13:20:00,911 North St, New York City,NY,10001 +280516,Vareebadd Phone,1,400.0,2019-11-16 15:23:00,91 Willow St, Portland,OR,97035 +280517,AA Batteries (4-pack),1,3.84,2019-11-08 12:10:00,59 Cherry St, San Francisco,CA,94016 +280518,AA Batteries (4-pack),1,3.84,2019-11-08 06:35:00,823 River St, San Francisco,CA,94016 +280519,Flatscreen TV,1,300.0,2019-11-20 17:19:00,446 Meadow St, Atlanta,GA,30301 +280520,Bose SoundSport Headphones,1,99.99,2019-11-18 15:02:00,800 North St, San Francisco,CA,94016 +280521,Vareebadd Phone,1,400.0,2019-11-28 18:34:00,370 Cedar St, Seattle,WA,98101 +280521,USB-C Charging Cable,1,11.95,2019-11-28 18:34:00,370 Cedar St, Seattle,WA,98101 +280522,USB-C Charging Cable,1,11.95,2019-11-20 18:03:00,642 Adams St, Los Angeles,CA,90001 +280523,USB-C Charging Cable,1,11.95,2019-11-25 22:21:00,786 Ridge St, Portland,OR,97035 +280524,Apple Airpods Headphones,1,150.0,2019-11-05 14:22:00,84 Hickory St, San Francisco,CA,94016 +280525,AAA Batteries (4-pack),2,2.99,2019-11-01 18:45:00,828 12th St, Dallas,TX,75001 +280526,AA Batteries (4-pack),1,3.84,2019-11-01 08:22:00,728 Lake St, Dallas,TX,75001 +280527,Apple Airpods Headphones,1,150.0,2019-11-15 07:39:00,551 Maple St, Austin,TX,73301 +280528,27in 4K Gaming Monitor,1,389.99,2019-11-17 21:17:00,794 Lakeview St, Seattle,WA,98101 +280529,Flatscreen TV,1,300.0,2019-11-15 09:11:00,505 Lakeview St, Atlanta,GA,30301 +280530,Lightning Charging Cable,1,14.95,2019-11-23 06:57:00,219 12th St, New York City,NY,10001 +280531,Apple Airpods Headphones,1,150.0,2019-11-04 13:58:00,832 Highland St, Portland,OR,97035 +280532,Wired Headphones,1,11.99,2019-11-01 09:58:00,298 5th St, San Francisco,CA,94016 +280533,AAA Batteries (4-pack),1,2.99,2019-11-24 16:57:00,320 Lakeview St, Atlanta,GA,30301 +280534,27in FHD Monitor,1,149.99,2019-11-21 15:18:00,713 9th St, Los Angeles,CA,90001 +280535,Bose SoundSport Headphones,1,99.99,2019-11-11 17:09:00,446 2nd St, Boston,MA,02215 +280536,Wired Headphones,1,11.99,2019-11-23 10:22:00,980 Center St, Seattle,WA,98101 +280537,iPhone,1,700.0,2019-11-25 13:10:00,580 1st St, Los Angeles,CA,90001 +280538,Wired Headphones,1,11.99,2019-11-07 07:26:00,996 Meadow St, Portland,OR,97035 +280539,Bose SoundSport Headphones,1,99.99,2019-11-07 18:29:00,788 Washington St, San Francisco,CA,94016 +280540,ThinkPad Laptop,1,999.99,2019-11-03 13:22:00,831 Church St, Los Angeles,CA,90001 +280541,Lightning Charging Cable,1,14.95,2019-11-25 12:05:00,749 Cherry St, Los Angeles,CA,90001 +280542,AA Batteries (4-pack),1,3.84,2019-11-10 14:29:00,115 Washington St, Seattle,WA,98101 +280543,LG Dryer,1,600.0,2019-11-19 13:51:00,78 11th St, Los Angeles,CA,90001 +280544,Apple Airpods Headphones,1,150.0,2019-11-27 09:27:00,901 Highland St, New York City,NY,10001 +280545,Wired Headphones,2,11.99,2019-11-25 20:55:00,307 Walnut St, Portland,OR,97035 +280546,AA Batteries (4-pack),2,3.84,2019-11-19 14:46:00,131 Willow St, Portland,ME,04101 +280547,Macbook Pro Laptop,1,1700.0,2019-11-10 07:43:00,265 Church St, Atlanta,GA,30301 +280548,Lightning Charging Cable,1,14.95,2019-11-15 20:01:00,506 14th St, Atlanta,GA,30301 +280549,AAA Batteries (4-pack),1,2.99,2019-11-13 19:55:00,1 Elm St, Atlanta,GA,30301 +280550,Macbook Pro Laptop,1,1700.0,2019-11-03 19:37:00,222 9th St, Dallas,TX,75001 +280551,Apple Airpods Headphones,1,150.0,2019-11-28 19:16:00,366 Forest St, Austin,TX,73301 +280552,Lightning Charging Cable,1,14.95,2019-11-09 19:11:00,495 Washington St, Portland,OR,97035 +280553,USB-C Charging Cable,1,11.95,2019-11-19 15:23:00,102 Maple St, Portland,ME,04101 +280554,Lightning Charging Cable,2,14.95,2019-11-07 18:38:00,671 Willow St, Seattle,WA,98101 +280555,AAA Batteries (4-pack),2,2.99,2019-11-30 17:25:00,242 5th St, Boston,MA,02215 +280556,ThinkPad Laptop,1,999.99,2019-11-14 19:11:00,600 2nd St, San Francisco,CA,94016 +280557,34in Ultrawide Monitor,1,379.99,2019-11-18 20:42:00,551 Cherry St, San Francisco,CA,94016 +280558,Bose SoundSport Headphones,1,99.99,2019-11-19 17:30:00,699 Walnut St, New York City,NY,10001 +280559,ThinkPad Laptop,1,999.99,2019-11-19 13:24:00,67 14th St, New York City,NY,10001 +280560,AA Batteries (4-pack),1,3.84,2019-11-24 11:00:00,985 Jefferson St, San Francisco,CA,94016 +280561,AAA Batteries (4-pack),1,2.99,2019-11-30 20:16:00,601 Lincoln St, New York City,NY,10001 +280562,Wired Headphones,2,11.99,2019-11-19 08:57:00,8 North St, San Francisco,CA,94016 +280563,AA Batteries (4-pack),2,3.84,2019-11-01 14:36:00,178 Washington St, New York City,NY,10001 +280564,Flatscreen TV,1,300.0,2019-11-17 08:02:00,259 Center St, New York City,NY,10001 +280565,34in Ultrawide Monitor,1,379.99,2019-11-30 18:34:00,308 Chestnut St, San Francisco,CA,94016 +280566,Apple Airpods Headphones,1,150.0,2019-11-20 09:58:00,762 12th St, New York City,NY,10001 +280567,AA Batteries (4-pack),1,3.84,2019-11-01 18:47:00,973 Pine St, New York City,NY,10001 +280568,USB-C Charging Cable,2,11.95,2019-11-24 10:39:00,192 Johnson St, Atlanta,GA,30301 +280569,Bose SoundSport Headphones,1,99.99,2019-11-07 18:45:00,983 Maple St, San Francisco,CA,94016 +280570,ThinkPad Laptop,1,999.99,2019-11-25 08:43:00,381 Walnut St, Los Angeles,CA,90001 +280571,34in Ultrawide Monitor,1,379.99,2019-11-13 12:24:00,30 Church St, Boston,MA,02215 +280572,USB-C Charging Cable,1,11.95,2019-11-25 15:29:00,86 Wilson St, New York City,NY,10001 +280573,27in FHD Monitor,1,149.99,2019-11-06 15:46:00,493 Church St, Los Angeles,CA,90001 +280574,AA Batteries (4-pack),1,3.84,2019-11-20 16:50:00,667 Pine St, Boston,MA,02215 +280575,AAA Batteries (4-pack),1,2.99,2019-11-01 23:10:00,654 Church St, San Francisco,CA,94016 +280576,Flatscreen TV,1,300.0,2019-11-04 14:26:00,537 Ridge St, Los Angeles,CA,90001 +280577,Bose SoundSport Headphones,1,99.99,2019-11-21 21:13:00,122 River St, Boston,MA,02215 +280578,AAA Batteries (4-pack),1,2.99,2019-11-23 18:34:00,874 Forest St, Austin,TX,73301 +280579,AAA Batteries (4-pack),3,2.99,2019-11-07 22:16:00,127 10th St, Boston,MA,02215 +280580,AA Batteries (4-pack),1,3.84,2019-11-26 20:19:00,60 West St, San Francisco,CA,94016 +280581,Lightning Charging Cable,1,14.95,2019-11-10 12:10:00,249 10th St, Boston,MA,02215 +280582,USB-C Charging Cable,1,11.95,2019-11-05 21:21:00,528 Forest St, Boston,MA,02215 +280583,Wired Headphones,1,11.99,2019-11-19 13:18:00,27 Center St, San Francisco,CA,94016 +280584,Lightning Charging Cable,1,14.95,2019-11-02 20:45:00,875 Adams St, Boston,MA,02215 +280585,ThinkPad Laptop,1,999.99,2019-11-24 18:59:00,211 Wilson St, Boston,MA,02215 +280586,Macbook Pro Laptop,1,1700.0,2019-11-27 16:55:00,845 Lakeview St, San Francisco,CA,94016 +280587,Apple Airpods Headphones,1,150.0,2019-11-30 15:30:00,469 Pine St, Portland,OR,97035 +280588,34in Ultrawide Monitor,1,379.99,2019-11-22 22:45:00,432 Meadow St, San Francisco,CA,94016 +280589,34in Ultrawide Monitor,1,379.99,2019-11-22 08:09:00,255 Madison St, San Francisco,CA,94016 +280590,Lightning Charging Cable,1,14.95,2019-11-11 17:14:00,206 South St, New York City,NY,10001 +280591,iPhone,1,700.0,2019-11-12 21:40:00,360 Lincoln St, Boston,MA,02215 +280592,AAA Batteries (4-pack),1,2.99,2019-11-06 00:26:00,475 Center St, Los Angeles,CA,90001 +280592,Wired Headphones,1,11.99,2019-11-06 00:26:00,475 Center St, Los Angeles,CA,90001 +280593,USB-C Charging Cable,1,11.95,2019-11-17 13:19:00,415 Lakeview St, Portland,OR,97035 +280594,AAA Batteries (4-pack),3,2.99,2019-11-18 00:12:00,57 Madison St, San Francisco,CA,94016 +280595,Wired Headphones,1,11.99,2019-11-13 12:20:00,200 Spruce St, San Francisco,CA,94016 +280596,Wired Headphones,1,11.99,2019-11-12 19:01:00,491 2nd St, New York City,NY,10001 +280597,Wired Headphones,1,11.99,2019-11-13 19:11:00,496 Meadow St, Boston,MA,02215 +280598,27in FHD Monitor,1,149.99,2019-11-14 12:10:00,85 Madison St, Dallas,TX,75001 +280599,Wired Headphones,1,11.99,2019-11-16 18:50:00,587 Washington St, Los Angeles,CA,90001 +280600,27in 4K Gaming Monitor,1,389.99,2019-11-12 00:16:00,270 Dogwood St, Dallas,TX,75001 +280601,Lightning Charging Cable,1,14.95,2019-11-25 21:18:00,921 Highland St, San Francisco,CA,94016 +280602,AA Batteries (4-pack),1,3.84,2019-11-15 23:30:00,594 Lake St, New York City,NY,10001 +280603,Lightning Charging Cable,1,14.95,2019-11-04 13:52:00,336 Sunset St, Seattle,WA,98101 +280604,34in Ultrawide Monitor,1,379.99,2019-11-25 19:05:00,137 13th St, Boston,MA,02215 +280605,Lightning Charging Cable,1,14.95,2019-11-26 11:46:00,80 10th St, New York City,NY,10001 +280606,USB-C Charging Cable,1,11.95,2019-11-01 19:26:00,525 Cherry St, San Francisco,CA,94016 +280607,Google Phone,1,600.0,2019-11-08 19:02:00,233 Center St, San Francisco,CA,94016 +280608,27in 4K Gaming Monitor,1,389.99,2019-11-13 22:30:00,705 Sunset St, Portland,ME,04101 +280609,USB-C Charging Cable,1,11.95,2019-11-30 21:25:00,517 Highland St, San Francisco,CA,94016 +280610,Wired Headphones,1,11.99,2019-11-14 00:13:00,355 Hickory St, San Francisco,CA,94016 +280611,Lightning Charging Cable,1,14.95,2019-11-21 10:22:00,497 Lake St, Los Angeles,CA,90001 +280612,AAA Batteries (4-pack),1,2.99,2019-11-29 10:07:00,132 2nd St, San Francisco,CA,94016 +280613,AA Batteries (4-pack),1,3.84,2019-11-24 09:59:00,441 Lakeview St, Seattle,WA,98101 +280614,20in Monitor,1,109.99,2019-11-13 06:12:00,604 Center St, Atlanta,GA,30301 +280615,AA Batteries (4-pack),1,3.84,2019-11-29 10:23:00,80 Wilson St, Boston,MA,02215 +280616,AA Batteries (4-pack),1,3.84,2019-11-02 15:35:00,392 2nd St, San Francisco,CA,94016 +280617,AA Batteries (4-pack),1,3.84,2019-11-02 15:20:00,708 10th St, New York City,NY,10001 +280618,iPhone,1,700.0,2019-11-20 16:24:00,920 Washington St, San Francisco,CA,94016 +280619,Apple Airpods Headphones,1,150.0,2019-11-13 19:12:00,348 Madison St, Los Angeles,CA,90001 +280620,Lightning Charging Cable,1,14.95,2019-11-26 10:26:00,768 Maple St, Los Angeles,CA,90001 +280621,Bose SoundSport Headphones,1,99.99,2019-11-02 05:51:00,1 Hill St, San Francisco,CA,94016 +280622,USB-C Charging Cable,1,11.95,2019-11-05 21:12:00,424 14th St, Boston,MA,02215 +280623,Apple Airpods Headphones,1,150.0,2019-11-02 09:17:00,822 West St, Los Angeles,CA,90001 +280624,Wired Headphones,1,11.99,2019-11-11 15:44:00,613 Center St, Boston,MA,02215 +280625,AAA Batteries (4-pack),3,2.99,2019-11-14 11:50:00,28 10th St, Seattle,WA,98101 +280626,Wired Headphones,1,11.99,2019-11-05 20:00:00,229 Park St, Seattle,WA,98101 +280627,Apple Airpods Headphones,1,150.0,2019-11-21 21:18:00,608 Jackson St, Seattle,WA,98101 +280628,AA Batteries (4-pack),1,3.84,2019-11-22 22:31:00,4 North St, Portland,ME,04101 +280629,Apple Airpods Headphones,1,150.0,2019-11-22 21:54:00,113 Spruce St, Los Angeles,CA,90001 +280630,20in Monitor,1,109.99,2019-11-24 14:23:00,996 Cherry St, San Francisco,CA,94016 +280631,Lightning Charging Cable,1,14.95,2019-11-28 17:21:00,480 5th St, Austin,TX,73301 +280632,AAA Batteries (4-pack),2,2.99,2019-11-26 18:34:00,689 Church St, Boston,MA,02215 +280633,Wired Headphones,1,11.99,2019-11-14 15:48:00,953 Jackson St, Los Angeles,CA,90001 +280634,AAA Batteries (4-pack),1,2.99,2019-11-18 13:43:00,735 4th St, Los Angeles,CA,90001 +280635,Wired Headphones,1,11.99,2019-11-12 13:35:00,95 1st St, Dallas,TX,75001 +280636,Apple Airpods Headphones,1,150.0,2019-11-14 23:27:00,714 River St, Austin,TX,73301 +280637,AA Batteries (4-pack),1,3.84,2019-11-03 11:11:00,916 Jackson St, Los Angeles,CA,90001 +280638,Wired Headphones,1,11.99,2019-11-12 14:58:00,949 14th St, Los Angeles,CA,90001 +280639,34in Ultrawide Monitor,1,379.99,2019-11-03 18:28:00,180 10th St, Portland,OR,97035 +280640,Vareebadd Phone,1,400.0,2019-11-26 12:33:00,244 Lakeview St, Austin,TX,73301 +280640,Wired Headphones,1,11.99,2019-11-26 12:33:00,244 Lakeview St, Austin,TX,73301 +280641,Apple Airpods Headphones,1,150.0,2019-11-27 12:03:00,812 Highland St, New York City,NY,10001 +280642,27in FHD Monitor,1,149.99,2019-11-16 22:39:00,491 Cherry St, Atlanta,GA,30301 +280643,34in Ultrawide Monitor,1,379.99,2019-11-29 15:21:00,304 Adams St, San Francisco,CA,94016 +280644,27in 4K Gaming Monitor,1,389.99,2019-11-20 14:54:00,227 Spruce St, Portland,OR,97035 +280645,AA Batteries (4-pack),1,3.84,2019-11-30 10:25:00,758 Hickory St, Los Angeles,CA,90001 +280646,AAA Batteries (4-pack),1,2.99,2019-11-29 08:36:00,360 Park St, Los Angeles,CA,90001 +280647,iPhone,1,700.0,2019-11-27 09:02:00,478 12th St, New York City,NY,10001 +280647,Lightning Charging Cable,1,14.95,2019-11-27 09:02:00,478 12th St, New York City,NY,10001 +280647,Apple Airpods Headphones,1,150.0,2019-11-27 09:02:00,478 12th St, New York City,NY,10001 +280648,Apple Airpods Headphones,1,150.0,2019-11-11 16:09:00,811 South St, Austin,TX,73301 +280649,AA Batteries (4-pack),1,3.84,2019-11-22 09:14:00,893 7th St, San Francisco,CA,94016 +280649,Apple Airpods Headphones,1,150.0,2019-11-22 09:14:00,893 7th St, San Francisco,CA,94016 +280650,AA Batteries (4-pack),1,3.84,2019-11-02 17:29:00,462 Park St, Boston,MA,02215 +280651,USB-C Charging Cable,1,11.95,2019-11-10 21:01:00,943 Church St, Boston,MA,02215 +280652,Lightning Charging Cable,1,14.95,2019-11-13 09:19:00,749 Jefferson St, Atlanta,GA,30301 +280653,USB-C Charging Cable,1,11.95,2019-11-16 23:24:00,207 Jackson St, Boston,MA,02215 +280654,Apple Airpods Headphones,1,150.0,2019-11-21 13:56:00,812 Dogwood St, Boston,MA,02215 +280655,AA Batteries (4-pack),1,3.84,2019-11-07 16:55:00,148 11th St, New York City,NY,10001 +280656,Flatscreen TV,1,300.0,2019-11-02 07:08:00,773 Jackson St, Seattle,WA,98101 +280657,AA Batteries (4-pack),1,3.84,2019-11-20 11:05:00,94 Forest St, Portland,ME,04101 +280658,ThinkPad Laptop,1,999.99,2019-11-14 12:04:00,424 Johnson St, Atlanta,GA,30301 +280659,34in Ultrawide Monitor,1,379.99,2019-11-19 08:28:00,472 Madison St, Los Angeles,CA,90001 +280660,20in Monitor,1,109.99,2019-11-19 17:22:00,937 Johnson St, Los Angeles,CA,90001 +280661,USB-C Charging Cable,1,11.95,2019-11-08 10:14:00,733 Jackson St, Seattle,WA,98101 +280662,AAA Batteries (4-pack),1,2.99,2019-11-10 15:11:00,519 1st St, San Francisco,CA,94016 +280663,Flatscreen TV,1,300.0,2019-11-04 16:10:00,713 Church St, San Francisco,CA,94016 +280664,Bose SoundSport Headphones,1,99.99,2019-11-23 00:03:00,718 Willow St, San Francisco,CA,94016 +280665,USB-C Charging Cable,1,11.95,2019-11-12 10:42:00,724 Church St, Seattle,WA,98101 +280666,AAA Batteries (4-pack),3,2.99,2019-11-03 02:55:00,618 North St, Los Angeles,CA,90001 +280667,34in Ultrawide Monitor,1,379.99,2019-11-05 18:30:00,461 Lakeview St, Atlanta,GA,30301 +280668,USB-C Charging Cable,1,11.95,2019-11-17 16:41:00,150 14th St, Los Angeles,CA,90001 +280669,USB-C Charging Cable,2,11.95,2019-11-22 18:53:00,156 4th St, San Francisco,CA,94016 +280670,Lightning Charging Cable,1,14.95,2019-11-24 18:23:00,303 Hill St, San Francisco,CA,94016 +280671,Wired Headphones,1,11.99,2019-11-12 20:40:00,80 12th St, New York City,NY,10001 +280672,34in Ultrawide Monitor,1,379.99,2019-11-01 13:41:00,775 West St, Boston,MA,02215 +280673,Bose SoundSport Headphones,1,99.99,2019-11-23 09:36:00,539 Main St, San Francisco,CA,94016 +280674,AA Batteries (4-pack),1,3.84,2019-11-07 18:25:00,967 4th St, Portland,OR,97035 +280675,AA Batteries (4-pack),1,3.84,2019-11-25 16:27:00,648 14th St, Atlanta,GA,30301 +280676,Wired Headphones,1,11.99,2019-11-07 09:43:00,722 North St, Atlanta,GA,30301 +280677,AAA Batteries (4-pack),1,2.99,2019-11-16 20:00:00,894 Church St, San Francisco,CA,94016 +280678,34in Ultrawide Monitor,1,379.99,2019-11-07 10:32:00,797 10th St, San Francisco,CA,94016 +280679,Bose SoundSport Headphones,1,99.99,2019-11-05 11:44:00,855 Willow St, Atlanta,GA,30301 +280680,USB-C Charging Cable,1,11.95,2019-11-22 16:41:00,642 North St, Atlanta,GA,30301 +280681,iPhone,1,700.0,2019-11-26 11:02:00,613 Wilson St, Dallas,TX,75001 +280681,Lightning Charging Cable,1,14.95,2019-11-26 11:02:00,613 Wilson St, Dallas,TX,75001 +280681,Wired Headphones,1,11.99,2019-11-26 11:02:00,613 Wilson St, Dallas,TX,75001 +280682,USB-C Charging Cable,1,11.95,2019-11-12 15:11:00,70 Main St, Boston,MA,02215 +280683,Apple Airpods Headphones,1,150.0,2019-11-23 12:43:00,593 Washington St, Los Angeles,CA,90001 +280684,AA Batteries (4-pack),1,3.84,2019-11-05 21:53:00,7 6th St, Los Angeles,CA,90001 +280685,Bose SoundSport Headphones,1,99.99,2019-11-01 13:27:00,55 Willow St, New York City,NY,10001 +280686,Apple Airpods Headphones,1,150.0,2019-11-05 23:27:00,307 Washington St, San Francisco,CA,94016 +280687,Lightning Charging Cable,1,14.95,2019-11-21 06:24:00,191 Lakeview St, Boston,MA,02215 +280688,Bose SoundSport Headphones,1,99.99,2019-11-20 21:39:00,491 Hill St, Atlanta,GA,30301 +280689,34in Ultrawide Monitor,2,379.99,2019-11-29 14:14:00,43 10th St, Portland,OR,97035 +280690,USB-C Charging Cable,1,11.95,2019-11-04 19:34:00,727 13th St, Atlanta,GA,30301 +280691,Google Phone,1,600.0,2019-11-19 19:40:00,342 Forest St, Los Angeles,CA,90001 +280692,Flatscreen TV,1,300.0,2019-11-01 11:40:00,787 South St, Portland,OR,97035 +280693,USB-C Charging Cable,1,11.95,2019-11-19 10:53:00,291 Hill St, San Francisco,CA,94016 +280694,20in Monitor,1,109.99,2019-11-20 09:19:00,653 2nd St, Austin,TX,73301 +280695,Lightning Charging Cable,1,14.95,2019-11-06 15:16:00,879 Cedar St, San Francisco,CA,94016 +280696,Bose SoundSport Headphones,1,99.99,2019-11-02 12:20:00,431 Willow St, San Francisco,CA,94016 +280697,Flatscreen TV,1,300.0,2019-11-22 14:25:00,200 9th St, Boston,MA,02215 +280698,Lightning Charging Cable,1,14.95,2019-11-15 16:36:00,996 Willow St, Los Angeles,CA,90001 +280699,AA Batteries (4-pack),1,3.84,2019-11-15 10:16:00,292 Chestnut St, Los Angeles,CA,90001 +280700,20in Monitor,1,109.99,2019-11-03 21:40:00,828 13th St, Los Angeles,CA,90001 +280701,USB-C Charging Cable,1,11.95,2019-11-29 13:39:00,167 12th St, San Francisco,CA,94016 +280702,Wired Headphones,1,11.99,2019-11-07 00:07:00,592 Main St, Los Angeles,CA,90001 +280703,USB-C Charging Cable,1,11.95,2019-11-22 23:51:00,244 Main St, Portland,OR,97035 +280704,USB-C Charging Cable,1,11.95,2019-11-25 21:53:00,703 Lake St, New York City,NY,10001 +280705,AAA Batteries (4-pack),2,2.99,2019-11-02 19:39:00,607 Elm St, New York City,NY,10001 +280706,AA Batteries (4-pack),1,3.84,2019-11-19 19:16:00,425 South St, Dallas,TX,75001 +280707,USB-C Charging Cable,1,11.95,2019-11-06 12:40:00,369 North St, Boston,MA,02215 +280708,20in Monitor,1,109.99,2019-11-28 20:37:00,764 Maple St, New York City,NY,10001 +280709,AAA Batteries (4-pack),1,2.99,2019-11-24 15:15:00,395 10th St, Los Angeles,CA,90001 +280710,Lightning Charging Cable,1,14.95,2019-11-10 21:01:00,979 Forest St, Atlanta,GA,30301 +280711,Macbook Pro Laptop,1,1700.0,2019-11-05 09:23:00,359 9th St, Boston,MA,02215 +280712,Lightning Charging Cable,1,14.95,2019-11-27 11:11:00,938 5th St, San Francisco,CA,94016 +280713,Lightning Charging Cable,1,14.95,2019-11-12 19:47:00,748 Hickory St, San Francisco,CA,94016 +280714,Wired Headphones,1,11.99,2019-11-19 22:21:00,85 Maple St, Los Angeles,CA,90001 +280715,USB-C Charging Cable,1,11.95,2019-11-20 09:54:00,640 Willow St, Los Angeles,CA,90001 +280716,USB-C Charging Cable,1,11.95,2019-11-02 14:44:00,278 10th St, San Francisco,CA,94016 +280717,AA Batteries (4-pack),1,3.84,2019-11-09 15:02:00,584 Washington St, Portland,OR,97035 +280718,Wired Headphones,1,11.99,2019-11-13 07:44:00,163 14th St, Los Angeles,CA,90001 +280719,Lightning Charging Cable,1,14.95,2019-11-16 10:48:00,718 Maple St, Boston,MA,02215 +280720,Wired Headphones,1,11.99,2019-11-26 15:54:00,594 Cherry St, Dallas,TX,75001 +280721,AAA Batteries (4-pack),1,2.99,2019-11-16 02:20:00,924 River St, Los Angeles,CA,90001 +280722,Lightning Charging Cable,1,14.95,2019-11-14 16:35:00,811 North St, New York City,NY,10001 +280723,27in FHD Monitor,1,149.99,2019-11-26 18:35:00,119 Spruce St, Seattle,WA,98101 +280724,Vareebadd Phone,1,400.0,2019-11-05 15:55:00,467 Washington St, Atlanta,GA,30301 +280725,AAA Batteries (4-pack),1,2.99,2019-11-05 21:29:00,208 7th St, Austin,TX,73301 +280726,AAA Batteries (4-pack),1,2.99,2019-11-05 13:38:00,729 River St, San Francisco,CA,94016 +280727,Wired Headphones,1,11.99,2019-11-01 20:47:00,584 Ridge St, San Francisco,CA,94016 +280728,Wired Headphones,1,11.99,2019-11-27 18:11:00,748 Jackson St, New York City,NY,10001 +280729,Macbook Pro Laptop,1,1700.0,2019-11-23 14:16:00,714 6th St, Austin,TX,73301 +280730,AA Batteries (4-pack),1,3.84,2019-11-20 08:13:00,294 Forest St, Los Angeles,CA,90001 +280731,Flatscreen TV,1,300.0,2019-11-09 18:34:00,707 Willow St, Portland,OR,97035 +280732,USB-C Charging Cable,1,11.95,2019-11-02 15:57:00,789 9th St, New York City,NY,10001 +280733,Lightning Charging Cable,1,14.95,2019-11-30 16:59:00,181 Johnson St, Austin,TX,73301 +280734,AAA Batteries (4-pack),1,2.99,2019-11-24 14:41:00,199 Main St, Los Angeles,CA,90001 +280735,Wired Headphones,1,11.99,2019-11-01 20:28:00,672 Walnut St, Atlanta,GA,30301 +280736,USB-C Charging Cable,1,11.95,2019-11-24 16:44:00,542 Willow St, San Francisco,CA,94016 +280737,Flatscreen TV,1,300.0,2019-11-06 09:52:00,64 Lakeview St, Dallas,TX,75001 +280738,Bose SoundSport Headphones,1,99.99,2019-11-03 08:24:00,723 Hickory St, Boston,MA,02215 +280739,Bose SoundSport Headphones,1,99.99,2019-11-21 20:10:00,514 River St, Boston,MA,02215 +280740,iPhone,1,700.0,2019-11-12 14:07:00,341 Lake St, Dallas,TX,75001 +280740,Apple Airpods Headphones,1,150.0,2019-11-12 14:07:00,341 Lake St, Dallas,TX,75001 +280741,iPhone,1,700.0,2019-11-07 09:44:00,879 14th St, San Francisco,CA,94016 +280742,Macbook Pro Laptop,1,1700.0,2019-11-08 18:09:00,142 Spruce St, Portland,OR,97035 +280743,USB-C Charging Cable,1,11.95,2019-11-13 18:10:00,317 13th St, San Francisco,CA,94016 +280744,ThinkPad Laptop,1,999.99,2019-11-16 18:35:00,465 11th St, New York City,NY,10001 +280745,27in 4K Gaming Monitor,1,389.99,2019-11-21 19:10:00,100 Dogwood St, Portland,OR,97035 +280746,Vareebadd Phone,1,400.0,2019-11-05 09:39:00,527 Main St, Atlanta,GA,30301 +280747,Lightning Charging Cable,1,14.95,2019-11-21 15:39:00,62 Park St, San Francisco,CA,94016 +280748,Bose SoundSport Headphones,1,99.99,2019-11-03 19:11:00,623 Johnson St, Dallas,TX,75001 +280749,Lightning Charging Cable,1,14.95,2019-11-03 17:22:00,390 Cherry St, San Francisco,CA,94016 +280750,AAA Batteries (4-pack),1,2.99,2019-11-18 14:22:00,101 Park St, Seattle,WA,98101 +280751,USB-C Charging Cable,1,11.95,2019-11-21 13:08:00,62 Pine St, Los Angeles,CA,90001 +280752,Lightning Charging Cable,1,14.95,2019-11-08 12:44:00,650 Main St, Seattle,WA,98101 +280753,USB-C Charging Cable,1,11.95,2019-11-30 18:27:00,537 4th St, San Francisco,CA,94016 +280754,Lightning Charging Cable,1,14.95,2019-11-15 13:07:00,928 6th St, San Francisco,CA,94016 +280755,USB-C Charging Cable,1,11.95,2019-11-13 02:18:00,175 Jefferson St, Boston,MA,02215 +280756,Bose SoundSport Headphones,1,99.99,2019-11-14 11:15:00,457 Wilson St, Portland,OR,97035 +280757,27in 4K Gaming Monitor,1,389.99,2019-11-23 21:52:00,854 Pine St, San Francisco,CA,94016 +280758,27in 4K Gaming Monitor,1,389.99,2019-11-04 12:30:00,419 4th St, Los Angeles,CA,90001 +280759,Bose SoundSport Headphones,1,99.99,2019-11-06 14:40:00,525 9th St, Boston,MA,02215 +280760,Apple Airpods Headphones,1,150.0,2019-11-21 19:48:00,764 Main St, New York City,NY,10001 +280761,AA Batteries (4-pack),1,3.84,2019-11-01 19:13:00,269 Dogwood St, San Francisco,CA,94016 +280762,AAA Batteries (4-pack),4,2.99,2019-11-24 15:55:00,665 South St, Dallas,TX,75001 +280763,Apple Airpods Headphones,1,150.0,2019-11-11 09:08:00,742 10th St, Portland,OR,97035 +280764,AAA Batteries (4-pack),3,2.99,2019-11-21 17:26:00,556 Spruce St, Los Angeles,CA,90001 +280764,Wired Headphones,1,11.99,2019-11-21 17:26:00,556 Spruce St, Los Angeles,CA,90001 +280765,AA Batteries (4-pack),1,3.84,2019-11-10 19:36:00,515 Highland St, Los Angeles,CA,90001 +280766,USB-C Charging Cable,1,11.95,2019-11-07 10:52:00,565 Johnson St, Dallas,TX,75001 +280767,27in 4K Gaming Monitor,1,389.99,2019-11-04 20:06:00,506 Ridge St, Austin,TX,73301 +280768,iPhone,1,700.0,2019-11-23 10:21:00,703 Forest St, Los Angeles,CA,90001 +280769,27in FHD Monitor,1,149.99,2019-11-05 14:01:00,102 9th St, Seattle,WA,98101 +280769,20in Monitor,1,109.99,2019-11-05 14:01:00,102 9th St, Seattle,WA,98101 +280770,LG Dryer,1,600.0,2019-11-23 13:44:00,908 6th St, San Francisco,CA,94016 +280771,Apple Airpods Headphones,1,150.0,2019-11-13 18:46:00,289 2nd St, Los Angeles,CA,90001 +280772,Apple Airpods Headphones,1,150.0,2019-11-06 18:44:00,276 Jackson St, San Francisco,CA,94016 +280773,AAA Batteries (4-pack),1,2.99,2019-11-02 00:30:00,72 North St, Dallas,TX,75001 +280774,34in Ultrawide Monitor,1,379.99,2019-11-01 21:38:00,509 Jackson St, Seattle,WA,98101 +280775,27in FHD Monitor,1,149.99,2019-11-26 19:22:00,724 Forest St, Los Angeles,CA,90001 +280776,USB-C Charging Cable,1,11.95,2019-11-21 11:56:00,917 Jefferson St, Boston,MA,02215 +280777,Lightning Charging Cable,1,14.95,2019-11-25 08:24:00,974 2nd St, Atlanta,GA,30301 +280778,Flatscreen TV,1,300.0,2019-11-16 05:28:00,966 4th St, Boston,MA,02215 +280779,27in FHD Monitor,1,149.99,2019-11-24 15:13:00,871 Hill St, San Francisco,CA,94016 +280780,Lightning Charging Cable,1,14.95,2019-11-21 13:43:00,493 West St, Boston,MA,02215 +280781,Bose SoundSport Headphones,1,99.99,2019-11-19 14:18:00,681 Spruce St, New York City,NY,10001 +280782,Lightning Charging Cable,1,14.95,2019-11-17 18:11:00,878 North St, Portland,OR,97035 +280783,iPhone,1,700.0,2019-11-18 20:41:00,475 10th St, Seattle,WA,98101 +280783,Lightning Charging Cable,2,14.95,2019-11-18 20:41:00,475 10th St, Seattle,WA,98101 +280784,Apple Airpods Headphones,1,150.0,2019-11-26 20:39:00,466 10th St, San Francisco,CA,94016 +280785,AAA Batteries (4-pack),1,2.99,2019-11-01 17:59:00,371 Johnson St, Boston,MA,02215 +280786,USB-C Charging Cable,1,11.95,2019-11-24 21:51:00,614 Lakeview St, San Francisco,CA,94016 +280787,Lightning Charging Cable,1,14.95,2019-11-15 14:57:00,554 Walnut St, Atlanta,GA,30301 +280788,Lightning Charging Cable,1,14.95,2019-11-22 21:43:00,423 Jackson St, Seattle,WA,98101 +280789,AA Batteries (4-pack),1,3.84,2019-11-13 16:17:00,735 9th St, Atlanta,GA,30301 +280790,27in FHD Monitor,1,149.99,2019-11-15 21:06:00,606 Lincoln St, San Francisco,CA,94016 +280791,USB-C Charging Cable,1,11.95,2019-11-11 23:59:00,23 Wilson St, Atlanta,GA,30301 +280792,AAA Batteries (4-pack),1,2.99,2019-11-11 21:36:00,658 1st St, San Francisco,CA,94016 +280793,Bose SoundSport Headphones,1,99.99,2019-11-26 17:51:00,566 9th St, Los Angeles,CA,90001 +280794,USB-C Charging Cable,2,11.95,2019-11-04 17:48:00,441 Cherry St, Boston,MA,02215 +280795,iPhone,1,700.0,2019-11-08 19:00:00,271 Washington St, San Francisco,CA,94016 +280796,iPhone,1,700.0,2019-11-27 20:47:00,885 2nd St, San Francisco,CA,94016 +280797,AA Batteries (4-pack),2,3.84,2019-11-26 21:50:00,39 6th St, New York City,NY,10001 +280798,USB-C Charging Cable,1,11.95,2019-11-24 07:54:00,936 Spruce St, Seattle,WA,98101 +280799,USB-C Charging Cable,2,11.95,2019-11-01 16:21:00,851 Walnut St, Los Angeles,CA,90001 +280800,20in Monitor,1,109.99,2019-11-30 15:27:00,388 Chestnut St, Atlanta,GA,30301 +280801,Lightning Charging Cable,1,14.95,2019-11-27 16:19:00,560 Lincoln St, San Francisco,CA,94016 +280802,Wired Headphones,1,11.99,2019-11-16 18:37:00,171 Highland St, Boston,MA,02215 +280803,AA Batteries (4-pack),4,3.84,2019-11-17 14:12:00,471 Jefferson St, Dallas,TX,75001 +280804,AAA Batteries (4-pack),1,2.99,2019-11-23 21:52:00,981 Center St, Atlanta,GA,30301 +280805,Lightning Charging Cable,1,14.95,2019-11-09 01:06:00,170 Lake St, San Francisco,CA,94016 +280806,USB-C Charging Cable,1,11.95,2019-11-24 04:06:00,550 Johnson St, New York City,NY,10001 +280807,Apple Airpods Headphones,1,150.0,2019-11-09 00:14:00,186 West St, San Francisco,CA,94016 +280808,USB-C Charging Cable,1,11.95,2019-11-03 12:13:00,421 4th St, Seattle,WA,98101 +280809,Lightning Charging Cable,1,14.95,2019-12-01 02:33:00,368 7th St, Dallas,TX,75001 +280810,USB-C Charging Cable,2,11.95,2019-11-13 12:49:00,775 2nd St, San Francisco,CA,94016 +280811,20in Monitor,1,109.99,2019-11-03 21:51:00,937 Meadow St, San Francisco,CA,94016 +280812,Wired Headphones,1,11.99,2019-11-24 20:55:00,992 Elm St, Portland,OR,97035 +280813,Lightning Charging Cable,1,14.95,2019-11-18 14:01:00,681 Maple St, Atlanta,GA,30301 +280814,Bose SoundSport Headphones,1,99.99,2019-11-19 11:15:00,558 8th St, San Francisco,CA,94016 +280815,Bose SoundSport Headphones,1,99.99,2019-11-28 23:49:00,447 North St, Los Angeles,CA,90001 +280816,AAA Batteries (4-pack),1,2.99,2019-11-01 18:03:00,958 Walnut St, Seattle,WA,98101 +280817,LG Dryer,1,600.0,2019-11-16 11:09:00,739 Washington St, Austin,TX,73301 +280818,Bose SoundSport Headphones,1,99.99,2019-11-22 20:13:00,913 Spruce St, Boston,MA,02215 +280819,AAA Batteries (4-pack),1,2.99,2019-11-02 21:00:00,166 Dogwood St, San Francisco,CA,94016 +280820,34in Ultrawide Monitor,1,379.99,2019-11-20 21:06:00,490 Johnson St, New York City,NY,10001 +280821,Wired Headphones,1,11.99,2019-11-22 00:46:00,812 Lincoln St, Boston,MA,02215 +280822,AA Batteries (4-pack),1,3.84,2019-11-12 09:15:00,806 Forest St, San Francisco,CA,94016 +280823,Google Phone,1,600.0,2019-11-08 18:49:00,457 9th St, New York City,NY,10001 +280824,Apple Airpods Headphones,1,150.0,2019-11-24 17:18:00,803 Jackson St, Dallas,TX,75001 +280825,iPhone,1,700.0,2019-11-11 14:29:00,360 Walnut St, Los Angeles,CA,90001 +280826,USB-C Charging Cable,1,11.95,2019-11-03 12:41:00,809 Willow St, New York City,NY,10001 +280827,Flatscreen TV,1,300.0,2019-11-02 09:21:00,13 Ridge St, Atlanta,GA,30301 +280828,Wired Headphones,1,11.99,2019-11-16 07:27:00,488 7th St, Dallas,TX,75001 +280829,Apple Airpods Headphones,1,150.0,2019-11-17 09:03:00,949 Center St, Seattle,WA,98101 +280830,AAA Batteries (4-pack),1,2.99,2019-11-21 23:15:00,806 Sunset St, New York City,NY,10001 +280831,Apple Airpods Headphones,1,150.0,2019-11-13 18:34:00,300 Church St, Dallas,TX,75001 +280832,Wired Headphones,1,11.99,2019-11-15 13:46:00,320 Maple St, San Francisco,CA,94016 +280833,AAA Batteries (4-pack),1,2.99,2019-11-04 08:19:00,40 South St, Seattle,WA,98101 +280834,AA Batteries (4-pack),1,3.84,2019-11-13 14:15:00,82 12th St, San Francisco,CA,94016 +280835,27in FHD Monitor,1,149.99,2019-11-24 09:39:00,622 Spruce St, Seattle,WA,98101 +280836,AA Batteries (4-pack),1,3.84,2019-11-11 17:23:00,999 7th St, San Francisco,CA,94016 +280837,Wired Headphones,1,11.99,2019-11-08 19:10:00,941 9th St, Boston,MA,02215 +280838,LG Washing Machine,1,600.0,2019-11-16 07:02:00,508 Pine St, Atlanta,GA,30301 +280839,USB-C Charging Cable,2,11.95,2019-11-30 19:22:00,52 Jefferson St, San Francisco,CA,94016 +280840,iPhone,1,700.0,2019-11-12 14:09:00,67 Dogwood St, San Francisco,CA,94016 +280841,USB-C Charging Cable,1,11.95,2019-11-27 18:18:00,139 7th St, Portland,OR,97035 +280842,AAA Batteries (4-pack),1,2.99,2019-11-14 10:18:00,137 West St, Los Angeles,CA,90001 +280843,AA Batteries (4-pack),1,3.84,2019-11-18 20:11:00,757 Maple St, Portland,ME,04101 +280844,Lightning Charging Cable,1,14.95,2019-11-30 20:50:00,992 West St, New York City,NY,10001 +280845,Wired Headphones,1,11.99,2019-11-23 20:19:00,881 Cedar St, Los Angeles,CA,90001 +280846,USB-C Charging Cable,1,11.95,2019-11-02 10:32:00,17 Main St, San Francisco,CA,94016 +280847,AAA Batteries (4-pack),1,2.99,2019-11-30 05:58:00,851 Jackson St, New York City,NY,10001 +280848,Wired Headphones,1,11.99,2019-11-25 10:37:00,917 Park St, Los Angeles,CA,90001 +280849,AA Batteries (4-pack),1,3.84,2019-11-27 19:20:00,388 Hickory St, Austin,TX,73301 +280850,AAA Batteries (4-pack),2,2.99,2019-11-03 20:38:00,350 West St, Seattle,WA,98101 +280851,Wired Headphones,1,11.99,2019-11-03 14:18:00,749 Main St, Los Angeles,CA,90001 +280851,USB-C Charging Cable,1,11.95,2019-11-03 14:18:00,749 Main St, Los Angeles,CA,90001 +280852,20in Monitor,1,109.99,2019-11-05 21:36:00,756 Jackson St, Austin,TX,73301 +280853,AAA Batteries (4-pack),1,2.99,2019-11-03 11:18:00,337 Jackson St, Boston,MA,02215 +280854,AAA Batteries (4-pack),1,2.99,2019-11-13 20:49:00,679 14th St, San Francisco,CA,94016 +280855,USB-C Charging Cable,1,11.95,2019-11-12 17:42:00,268 7th St, Atlanta,GA,30301 +280856,Flatscreen TV,1,300.0,2019-11-15 11:13:00,857 6th St, Dallas,TX,75001 +280857,Wired Headphones,1,11.99,2019-11-08 18:00:00,797 4th St, Los Angeles,CA,90001 +280858,Bose SoundSport Headphones,1,99.99,2019-11-04 18:53:00,679 Lincoln St, Dallas,TX,75001 +280859,Lightning Charging Cable,1,14.95,2019-11-20 23:15:00,859 10th St, New York City,NY,10001 +280860,Lightning Charging Cable,1,14.95,2019-11-11 20:39:00,171 Washington St, San Francisco,CA,94016 +280861,AA Batteries (4-pack),3,3.84,2019-11-22 11:11:00,748 River St, Austin,TX,73301 +280862,Apple Airpods Headphones,1,150.0,2019-11-19 15:05:00,902 Church St, San Francisco,CA,94016 +280863,USB-C Charging Cable,2,11.95,2019-11-07 22:03:00,860 Cherry St, San Francisco,CA,94016 +280864,AAA Batteries (4-pack),1,2.99,2019-11-28 17:31:00,579 1st St, San Francisco,CA,94016 +280865,Lightning Charging Cable,2,14.95,2019-11-25 23:40:00,810 River St, Dallas,TX,75001 +280866,AAA Batteries (4-pack),1,2.99,2019-11-12 15:51:00,630 Forest St, San Francisco,CA,94016 +280867,USB-C Charging Cable,1,11.95,2019-11-05 11:34:00,879 Cherry St, Los Angeles,CA,90001 +280868,USB-C Charging Cable,1,11.95,2019-11-21 13:49:00,150 West St, Boston,MA,02215 +280869,ThinkPad Laptop,1,999.99,2019-11-27 08:29:00,227 Church St, San Francisco,CA,94016 +280870,AA Batteries (4-pack),1,3.84,2019-11-30 19:12:00,970 Cherry St, Portland,ME,04101 +280871,Wired Headphones,1,11.99,2019-11-16 19:15:00,407 Forest St, Boston,MA,02215 +280872,Apple Airpods Headphones,1,150.0,2019-11-14 00:11:00,6 9th St, Austin,TX,73301 +280873,AA Batteries (4-pack),2,3.84,2019-11-24 18:16:00,277 Adams St, San Francisco,CA,94016 +280874,USB-C Charging Cable,1,11.95,2019-11-25 13:16:00,49 Cedar St, Atlanta,GA,30301 +280875,27in 4K Gaming Monitor,1,389.99,2019-11-23 08:38:00,350 Meadow St, San Francisco,CA,94016 +280876,27in 4K Gaming Monitor,1,389.99,2019-11-06 03:03:00,949 9th St, San Francisco,CA,94016 +280877,AA Batteries (4-pack),3,3.84,2019-11-18 19:24:00,206 South St, New York City,NY,10001 +280878,USB-C Charging Cable,1,11.95,2019-11-21 06:05:00,873 Hickory St, Boston,MA,02215 +280879,USB-C Charging Cable,1,11.95,2019-11-29 18:52:00,314 Center St, Boston,MA,02215 +280880,Lightning Charging Cable,1,14.95,2019-11-19 17:09:00,160 Highland St, Los Angeles,CA,90001 +280881,Wired Headphones,1,11.99,2019-11-10 11:54:00,882 Wilson St, San Francisco,CA,94016 +280882,Lightning Charging Cable,1,14.95,2019-11-26 14:04:00,55 7th St, Seattle,WA,98101 +280883,Lightning Charging Cable,1,14.95,2019-11-06 10:43:00,635 Main St, Boston,MA,02215 +280883,AA Batteries (4-pack),2,3.84,2019-11-06 10:43:00,635 Main St, Boston,MA,02215 +280884,AAA Batteries (4-pack),2,2.99,2019-11-07 12:07:00,929 Forest St, Boston,MA,02215 +280885,iPhone,1,700.0,2019-11-01 17:35:00,468 5th St, Portland,OR,97035 +280886,Google Phone,1,600.0,2019-11-09 14:57:00,46 Highland St, Seattle,WA,98101 +280887,USB-C Charging Cable,1,11.95,2019-11-06 18:29:00,764 Jefferson St, San Francisco,CA,94016 +280888,iPhone,1,700.0,2019-11-25 21:34:00,510 10th St, Los Angeles,CA,90001 +280889,Bose SoundSport Headphones,1,99.99,2019-11-17 21:30:00,860 1st St, Atlanta,GA,30301 +280890,AAA Batteries (4-pack),1,2.99,2019-11-11 09:52:00,856 6th St, Portland,OR,97035 +280891,34in Ultrawide Monitor,1,379.99,2019-11-12 19:40:00,548 Chestnut St, Seattle,WA,98101 +280892,Wired Headphones,1,11.99,2019-11-22 07:48:00,898 13th St, Seattle,WA,98101 +280893,USB-C Charging Cable,1,11.95,2019-11-23 09:38:00,835 Madison St, Seattle,WA,98101 +280894,AA Batteries (4-pack),1,3.84,2019-11-11 09:43:00,51 Washington St, San Francisco,CA,94016 +280895,Wired Headphones,1,11.99,2019-11-14 17:55:00,770 1st St, San Francisco,CA,94016 +280896,Google Phone,1,600.0,2019-11-16 18:41:00,54 Walnut St, San Francisco,CA,94016 +280897,AAA Batteries (4-pack),1,2.99,2019-11-25 19:19:00,380 Main St, Los Angeles,CA,90001 +280898,Wired Headphones,1,11.99,2019-11-13 22:04:00,164 Spruce St, San Francisco,CA,94016 +280899,Wired Headphones,1,11.99,2019-11-02 23:59:00,131 2nd St, San Francisco,CA,94016 +280900,Wired Headphones,1,11.99,2019-11-24 18:25:00,332 Johnson St, Dallas,TX,75001 +280901,AAA Batteries (4-pack),1,2.99,2019-11-07 12:53:00,906 Pine St, Los Angeles,CA,90001 +280902,AAA Batteries (4-pack),2,2.99,2019-11-26 22:50:00,182 Elm St, Boston,MA,02215 +280903,Google Phone,1,600.0,2019-11-24 22:00:00,184 Elm St, New York City,NY,10001 +280903,Wired Headphones,1,11.99,2019-11-24 22:00:00,184 Elm St, New York City,NY,10001 +280904,Lightning Charging Cable,1,14.95,2019-11-28 17:20:00,792 Chestnut St, Los Angeles,CA,90001 +280905,AAA Batteries (4-pack),1,2.99,2019-11-20 16:45:00,250 5th St, Austin,TX,73301 +280906,34in Ultrawide Monitor,1,379.99,2019-11-17 09:06:00,64 Church St, Seattle,WA,98101 +280907,Apple Airpods Headphones,1,150.0,2019-11-29 18:37:00,675 South St, Boston,MA,02215 +280908,Lightning Charging Cable,1,14.95,2019-11-13 08:34:00,381 Jefferson St, Dallas,TX,75001 +280909,AAA Batteries (4-pack),1,2.99,2019-11-09 14:28:00,704 North St, Atlanta,GA,30301 +280910,AAA Batteries (4-pack),1,2.99,2019-11-23 20:20:00,99 Church St, Seattle,WA,98101 +280911,27in 4K Gaming Monitor,1,389.99,2019-11-06 23:12:00,868 8th St, San Francisco,CA,94016 +280912,20in Monitor,1,109.99,2019-11-07 20:37:00,903 4th St, San Francisco,CA,94016 +280913,AA Batteries (4-pack),1,3.84,2019-11-04 17:45:00,311 Lake St, Dallas,TX,75001 +280914,Wired Headphones,1,11.99,2019-11-30 06:37:00,522 Maple St, Boston,MA,02215 +280915,20in Monitor,1,109.99,2019-11-15 19:52:00,853 Wilson St, San Francisco,CA,94016 +280916,AA Batteries (4-pack),1,3.84,2019-11-08 08:03:00,716 Hill St, Los Angeles,CA,90001 +280917,AAA Batteries (4-pack),1,2.99,2019-11-24 16:34:00,656 7th St, Atlanta,GA,30301 +280918,USB-C Charging Cable,1,11.95,2019-11-02 22:08:00,10 10th St, Dallas,TX,75001 +280919,Macbook Pro Laptop,1,1700.0,2019-11-30 15:50:00,22 5th St, Dallas,TX,75001 +280920,Google Phone,1,600.0,2019-11-05 02:09:00,393 Johnson St, San Francisco,CA,94016 +280921,Bose SoundSport Headphones,1,99.99,2019-11-17 13:21:00,370 11th St, Boston,MA,02215 +280922,27in FHD Monitor,1,149.99,2019-11-25 20:26:00,419 7th St, San Francisco,CA,94016 +280923,27in FHD Monitor,1,149.99,2019-11-08 14:22:00,935 Johnson St, Austin,TX,73301 +280924,ThinkPad Laptop,1,999.99,2019-11-02 15:34:00,99 Adams St, San Francisco,CA,94016 +280925,AA Batteries (4-pack),1,3.84,2019-11-27 14:23:00,595 Madison St, Boston,MA,02215 +280926,Wired Headphones,2,11.99,2019-11-02 14:10:00,735 13th St, Los Angeles,CA,90001 +280927,AA Batteries (4-pack),2,3.84,2019-11-10 18:04:00,459 Washington St, San Francisco,CA,94016 +280928,ThinkPad Laptop,1,999.99,2019-11-14 21:07:00,398 Johnson St, Los Angeles,CA,90001 +280929,Wired Headphones,1,11.99,2019-11-11 10:23:00,644 Willow St, San Francisco,CA,94016 +280930,Wired Headphones,1,11.99,2019-11-07 10:31:00,194 10th St, Dallas,TX,75001 +280931,USB-C Charging Cable,1,11.95,2019-11-26 06:35:00,436 Center St, Los Angeles,CA,90001 +280932,AAA Batteries (4-pack),1,2.99,2019-11-21 12:10:00,637 Ridge St, Los Angeles,CA,90001 +280933,27in 4K Gaming Monitor,1,389.99,2019-11-28 14:05:00,505 Chestnut St, San Francisco,CA,94016 +280934,Lightning Charging Cable,1,14.95,2019-11-09 16:27:00,239 Jackson St, Los Angeles,CA,90001 +280935,AAA Batteries (4-pack),1,2.99,2019-11-10 23:38:00,843 Madison St, Atlanta,GA,30301 +280935,USB-C Charging Cable,1,11.95,2019-11-10 23:38:00,843 Madison St, Atlanta,GA,30301 +280936,27in 4K Gaming Monitor,1,389.99,2019-11-02 19:21:00,191 Lakeview St, San Francisco,CA,94016 +280937,Google Phone,1,600.0,2019-11-02 06:27:00,15 Walnut St, Austin,TX,73301 +280938,USB-C Charging Cable,1,11.95,2019-11-17 23:20:00,843 13th St, Seattle,WA,98101 +280939,AAA Batteries (4-pack),2,2.99,2019-11-03 09:32:00,688 Pine St, Dallas,TX,75001 +280940,Bose SoundSport Headphones,1,99.99,2019-11-24 17:10:00,134 Jackson St, Austin,TX,73301 +280941,20in Monitor,1,109.99,2019-11-07 17:31:00,601 9th St, San Francisco,CA,94016 +280942,AAA Batteries (4-pack),6,2.99,2019-11-15 19:11:00,620 Church St, Los Angeles,CA,90001 +280943,Google Phone,1,600.0,2019-11-14 14:58:00,375 11th St, San Francisco,CA,94016 +280944,Lightning Charging Cable,1,14.95,2019-11-03 21:09:00,405 Church St, Seattle,WA,98101 +280945,iPhone,1,700.0,2019-11-09 19:13:00,158 Main St, Dallas,TX,75001 +280946,27in FHD Monitor,1,149.99,2019-11-16 19:54:00,425 4th St, Seattle,WA,98101 +280947,AAA Batteries (4-pack),1,2.99,2019-11-03 18:15:00,467 Washington St, Los Angeles,CA,90001 +280948,Bose SoundSport Headphones,1,99.99,2019-11-11 19:10:00,970 Meadow St, New York City,NY,10001 +280949,AAA Batteries (4-pack),2,2.99,2019-11-07 22:25:00,234 Dogwood St, San Francisco,CA,94016 +280950,Lightning Charging Cable,1,14.95,2019-11-12 12:46:00,931 4th St, Los Angeles,CA,90001 +280951,Lightning Charging Cable,1,14.95,2019-11-06 22:17:00,961 Meadow St, Los Angeles,CA,90001 +280952,20in Monitor,1,109.99,2019-11-03 22:48:00,958 5th St, San Francisco,CA,94016 +280953,Wired Headphones,1,11.99,2019-11-03 10:19:00,924 Walnut St, Los Angeles,CA,90001 +280954,AA Batteries (4-pack),1,3.84,2019-11-06 14:24:00,693 Washington St, San Francisco,CA,94016 +280955,Lightning Charging Cable,1,14.95,2019-11-13 15:10:00,834 Cherry St, Boston,MA,02215 +280956,ThinkPad Laptop,1,999.99,2019-11-08 08:50:00,587 Lakeview St, Boston,MA,02215 +280957,27in 4K Gaming Monitor,1,389.99,2019-11-19 20:23:00,509 Johnson St, Boston,MA,02215 +280958,Wired Headphones,1,11.99,2019-11-28 13:06:00,195 South St, San Francisco,CA,94016 +280959,Bose SoundSport Headphones,1,99.99,2019-11-30 19:38:00,889 Church St, Portland,OR,97035 +280960,Lightning Charging Cable,2,14.95,2019-11-28 19:47:00,573 2nd St, Dallas,TX,75001 +280961,Apple Airpods Headphones,1,150.0,2019-11-27 01:22:00,107 Adams St, Boston,MA,02215 +280962,AA Batteries (4-pack),1,3.84,2019-11-07 20:32:00,338 Center St, San Francisco,CA,94016 +280963,27in FHD Monitor,1,149.99,2019-11-20 18:57:00,395 Main St, San Francisco,CA,94016 +280964,AAA Batteries (4-pack),3,2.99,2019-11-21 20:45:00,438 Ridge St, Seattle,WA,98101 +280965,AA Batteries (4-pack),1,3.84,2019-11-24 14:09:00,617 Forest St, Los Angeles,CA,90001 +280966,Bose SoundSport Headphones,1,99.99,2019-11-24 04:29:00,855 Jackson St, New York City,NY,10001 +280967,iPhone,1,700.0,2019-11-12 07:29:00,269 Maple St, Dallas,TX,75001 +280968,Vareebadd Phone,1,400.0,2019-11-09 07:29:00,390 7th St, Boston,MA,02215 +280969,AA Batteries (4-pack),1,3.84,2019-11-06 00:03:00,402 Forest St, San Francisco,CA,94016 +280970,34in Ultrawide Monitor,1,379.99,2019-11-08 10:46:00,358 Johnson St, Los Angeles,CA,90001 +280971,Bose SoundSport Headphones,1,99.99,2019-11-04 21:00:00,125 Center St, Austin,TX,73301 +280972,USB-C Charging Cable,1,11.95,2019-11-23 14:26:00,290 Wilson St, Boston,MA,02215 +280973,LG Washing Machine,1,600.0,2019-11-30 21:46:00,760 9th St, Seattle,WA,98101 +280974,Wired Headphones,1,11.99,2019-11-21 17:57:00,581 Maple St, San Francisco,CA,94016 +280975,AA Batteries (4-pack),1,3.84,2019-11-29 17:54:00,443 Madison St, Austin,TX,73301 +280976,Apple Airpods Headphones,1,150.0,2019-11-10 21:24:00,761 Lakeview St, Boston,MA,02215 +280977,USB-C Charging Cable,1,11.95,2019-11-28 16:14:00,793 West St, Seattle,WA,98101 +280978,Apple Airpods Headphones,1,150.0,2019-11-05 21:16:00,767 10th St, Boston,MA,02215 +280979,Wired Headphones,1,11.99,2019-11-29 23:38:00,682 Madison St, New York City,NY,10001 +280980,AA Batteries (4-pack),1,3.84,2019-11-10 09:36:00,344 Walnut St, San Francisco,CA,94016 +280981,Wired Headphones,2,11.99,2019-11-18 12:52:00,274 Spruce St, Los Angeles,CA,90001 +280982,AAA Batteries (4-pack),1,2.99,2019-11-07 17:26:00,192 Lake St, Seattle,WA,98101 +280983,34in Ultrawide Monitor,1,379.99,2019-11-08 21:22:00,604 Jefferson St, Boston,MA,02215 +280984,34in Ultrawide Monitor,1,379.99,2019-11-15 16:23:00,653 1st St, Boston,MA,02215 +280985,AA Batteries (4-pack),1,3.84,2019-11-29 14:34:00,589 River St, Portland,OR,97035 +280986,AA Batteries (4-pack),1,3.84,2019-11-13 18:27:00,654 Cherry St, San Francisco,CA,94016 +280987,Lightning Charging Cable,1,14.95,2019-11-12 07:33:00,821 13th St, Dallas,TX,75001 +280988,Wired Headphones,1,11.99,2019-11-14 16:42:00,189 Dogwood St, New York City,NY,10001 +280989,ThinkPad Laptop,1,999.99,2019-11-07 19:49:00,559 6th St, Portland,ME,04101 +280990,LG Washing Machine,1,600.0,2019-11-26 17:17:00,127 11th St, Boston,MA,02215 +280991,ThinkPad Laptop,1,999.99,2019-11-27 23:43:00,657 9th St, Los Angeles,CA,90001 +280992,ThinkPad Laptop,1,999.99,2019-11-27 13:01:00,823 Ridge St, Portland,OR,97035 +280993,Wired Headphones,1,11.99,2019-11-05 15:33:00,671 14th St, Boston,MA,02215 +280994,AAA Batteries (4-pack),2,2.99,2019-11-26 17:01:00,10 West St, San Francisco,CA,94016 +280995,Apple Airpods Headphones,1,150.0,2019-11-29 13:53:00,20 10th St, Portland,OR,97035 +280996,USB-C Charging Cable,1,11.95,2019-11-15 23:08:00,128 4th St, New York City,NY,10001 +280997,USB-C Charging Cable,2,11.95,2019-11-27 21:03:00,246 Willow St, Austin,TX,73301 +280998,USB-C Charging Cable,1,11.95,2019-11-23 09:34:00,168 West St, Dallas,TX,75001 +280999,27in FHD Monitor,1,149.99,2019-11-10 13:55:00,181 West St, Los Angeles,CA,90001 +280999,Google Phone,1,600.0,2019-11-10 13:55:00,181 West St, Los Angeles,CA,90001 +281000,Apple Airpods Headphones,1,150.0,2019-11-20 18:13:00,584 Center St, Boston,MA,02215 +281001,USB-C Charging Cable,1,11.95,2019-11-07 14:26:00,397 13th St, Boston,MA,02215 +281002,USB-C Charging Cable,1,11.95,2019-11-19 21:41:00,65 Main St, Dallas,TX,75001 +281003,Apple Airpods Headphones,1,150.0,2019-11-15 18:48:00,927 Spruce St, Los Angeles,CA,90001 +281004,AA Batteries (4-pack),1,3.84,2019-11-25 02:13:00,468 River St, San Francisco,CA,94016 +281005,USB-C Charging Cable,1,11.95,2019-11-26 20:46:00,459 14th St, Boston,MA,02215 +281006,AA Batteries (4-pack),3,3.84,2019-11-13 00:53:00,185 6th St, San Francisco,CA,94016 +281007,34in Ultrawide Monitor,1,379.99,2019-11-26 22:17:00,739 2nd St, New York City,NY,10001 +281008,AAA Batteries (4-pack),1,2.99,2019-11-02 21:13:00,252 Elm St, Atlanta,GA,30301 +281009,Apple Airpods Headphones,1,150.0,2019-11-21 16:35:00,639 Meadow St, Atlanta,GA,30301 +281010,Bose SoundSport Headphones,1,99.99,2019-11-01 20:51:00,244 Wilson St, Dallas,TX,75001 +281011,AA Batteries (4-pack),1,3.84,2019-11-28 00:22:00,359 Park St, Portland,OR,97035 +281012,Bose SoundSport Headphones,1,99.99,2019-11-02 01:27:00,612 Elm St, Seattle,WA,98101 +281012,Google Phone,1,600.0,2019-11-02 01:27:00,612 Elm St, Seattle,WA,98101 +281013,USB-C Charging Cable,1,11.95,2019-11-25 17:15:00,645 10th St, Dallas,TX,75001 +281014,20in Monitor,1,109.99,2019-11-28 21:16:00,231 5th St, San Francisco,CA,94016 +281015,Apple Airpods Headphones,1,150.0,2019-11-02 02:22:00,867 11th St, Portland,OR,97035 +281016,AAA Batteries (4-pack),1,2.99,2019-11-09 21:13:00,492 Hickory St, San Francisco,CA,94016 +281017,Wired Headphones,1,11.99,2019-11-14 16:05:00,817 Maple St, Boston,MA,02215 +281018,Wired Headphones,1,11.99,2019-11-04 13:32:00,762 Madison St, San Francisco,CA,94016 +281019,Wired Headphones,1,11.99,2019-11-25 10:48:00,177 Lincoln St, Dallas,TX,75001 +281020,AAA Batteries (4-pack),1,2.99,2019-11-27 16:47:00,928 Maple St, Los Angeles,CA,90001 +281021,AA Batteries (4-pack),1,3.84,2019-11-25 22:15:00,921 Main St, Los Angeles,CA,90001 +281022,USB-C Charging Cable,1,11.95,2019-11-10 20:27:00,255 12th St, New York City,NY,10001 +281023,Bose SoundSport Headphones,1,99.99,2019-11-25 17:32:00,541 Jefferson St, San Francisco,CA,94016 +281024,USB-C Charging Cable,1,11.95,2019-11-05 18:57:00,151 Pine St, New York City,NY,10001 +281025,34in Ultrawide Monitor,1,379.99,2019-11-07 13:17:00,287 Main St, Seattle,WA,98101 +281026,Wired Headphones,1,11.99,2019-11-15 14:43:00,88 Madison St, Boston,MA,02215 +281027,34in Ultrawide Monitor,1,379.99,2019-11-26 19:47:00,781 Adams St, Portland,ME,04101 +281028,USB-C Charging Cable,1,11.95,2019-11-30 19:46:00,78 6th St, Atlanta,GA,30301 +281029,Lightning Charging Cable,1,14.95,2019-11-12 18:15:00,862 Elm St, Atlanta,GA,30301 +281030,27in 4K Gaming Monitor,1,389.99,2019-11-10 04:18:00,464 Highland St, San Francisco,CA,94016 +281031,AA Batteries (4-pack),2,3.84,2019-11-26 12:49:00,497 Adams St, Boston,MA,02215 +281032,Lightning Charging Cable,1,14.95,2019-11-10 09:52:00,56 Church St, Los Angeles,CA,90001 +281033,AA Batteries (4-pack),1,3.84,2019-11-12 14:51:00,279 12th St, New York City,NY,10001 +281034,Google Phone,1,600.0,2019-11-24 12:39:00,62 13th St, Boston,MA,02215 +281035,AAA Batteries (4-pack),2,2.99,2019-11-19 07:17:00,670 Hill St, San Francisco,CA,94016 +281036,USB-C Charging Cable,1,11.95,2019-11-28 10:51:00,493 Willow St, Dallas,TX,75001 +281037,USB-C Charging Cable,1,11.95,2019-11-22 19:54:00,220 8th St, San Francisco,CA,94016 +281037,iPhone,1,700.0,2019-11-22 19:54:00,220 8th St, San Francisco,CA,94016 +281038,USB-C Charging Cable,2,11.95,2019-11-16 18:22:00,600 9th St, Boston,MA,02215 +281039,USB-C Charging Cable,1,11.95,2019-11-25 01:51:00,217 5th St, Portland,OR,97035 +281040,20in Monitor,1,109.99,2019-11-13 11:57:00,363 Ridge St, San Francisco,CA,94016 +281041,ThinkPad Laptop,1,999.99,2019-11-07 00:34:00,763 Jackson St, Boston,MA,02215 +281042,27in FHD Monitor,1,149.99,2019-11-18 06:58:00,184 Dogwood St, Los Angeles,CA,90001 +281043,Lightning Charging Cable,1,14.95,2019-11-22 14:11:00,865 8th St, San Francisco,CA,94016 +281044,AAA Batteries (4-pack),1,2.99,2019-11-25 15:31:00,293 Hill St, San Francisco,CA,94016 +281045,27in 4K Gaming Monitor,1,389.99,2019-11-05 21:24:00,766 Hill St, San Francisco,CA,94016 +281046,Lightning Charging Cable,1,14.95,2019-11-21 13:15:00,415 Lakeview St, Dallas,TX,75001 +281047,27in FHD Monitor,1,149.99,2019-11-18 08:06:00,106 Pine St, Los Angeles,CA,90001 +281048,AA Batteries (4-pack),1,3.84,2019-11-18 16:30:00,586 Madison St, Boston,MA,02215 +281049,AAA Batteries (4-pack),1,2.99,2019-11-10 19:06:00,331 West St, Los Angeles,CA,90001 +281050,AAA Batteries (4-pack),2,2.99,2019-11-01 16:47:00,608 North St, San Francisco,CA,94016 +281051,USB-C Charging Cable,1,11.95,2019-11-20 18:14:00,63 Adams St, Dallas,TX,75001 +281052,AAA Batteries (4-pack),1,2.99,2019-11-18 17:23:00,268 Willow St, Los Angeles,CA,90001 +281053,Wired Headphones,1,11.99,2019-11-24 21:16:00,739 West St, Portland,OR,97035 +281054,Lightning Charging Cable,3,14.95,2019-11-14 00:23:00,741 Spruce St, New York City,NY,10001 +281055,AAA Batteries (4-pack),1,2.99,2019-11-16 06:10:00,184 Forest St, Seattle,WA,98101 +281056,Lightning Charging Cable,1,14.95,2019-11-21 19:26:00,759 Lincoln St, Boston,MA,02215 +281057,AAA Batteries (4-pack),1,2.99,2019-11-26 13:57:00,943 6th St, Austin,TX,73301 +281058,AA Batteries (4-pack),3,3.84,2019-11-26 20:22:00,251 Johnson St, San Francisco,CA,94016 +281059,AAA Batteries (4-pack),1,2.99,2019-11-12 09:33:00,748 Madison St, San Francisco,CA,94016 +281060,Wired Headphones,1,11.99,2019-11-16 11:06:00,765 11th St, San Francisco,CA,94016 +281061,Lightning Charging Cable,1,14.95,2019-11-17 07:19:00,796 12th St, Dallas,TX,75001 +281062,AAA Batteries (4-pack),1,2.99,2019-11-12 09:57:00,288 5th St, Atlanta,GA,30301 +281063,AAA Batteries (4-pack),1,2.99,2019-11-12 19:43:00,241 Main St, Atlanta,GA,30301 +281064,iPhone,1,700.0,2019-11-14 16:42:00,368 Madison St, New York City,NY,10001 +281065,Wired Headphones,1,11.99,2019-11-19 18:00:00,861 Maple St, Portland,OR,97035 +281066,AA Batteries (4-pack),1,3.84,2019-11-15 12:06:00,652 Chestnut St, Seattle,WA,98101 +281067,Google Phone,1,600.0,2019-11-16 14:51:00,624 Lincoln St, Los Angeles,CA,90001 +281068,Bose SoundSport Headphones,1,99.99,2019-11-03 15:00:00,848 River St, Dallas,TX,75001 +281069,AA Batteries (4-pack),1,3.84,2019-11-10 18:57:00,773 Cherry St, New York City,NY,10001 +281070,AAA Batteries (4-pack),1,2.99,2019-11-23 20:57:00,558 Hickory St, New York City,NY,10001 +281071,USB-C Charging Cable,1,11.95,2019-11-08 23:26:00,864 Sunset St, Seattle,WA,98101 +281072,Lightning Charging Cable,1,14.95,2019-11-01 20:35:00,267 14th St, San Francisco,CA,94016 +281073,20in Monitor,1,109.99,2019-11-16 14:13:00,781 2nd St, Dallas,TX,75001 +281074,USB-C Charging Cable,1,11.95,2019-11-24 09:56:00,113 Wilson St, San Francisco,CA,94016 +281075,Lightning Charging Cable,1,14.95,2019-11-25 11:33:00,271 14th St, Boston,MA,02215 +281076,USB-C Charging Cable,1,11.95,2019-11-18 23:56:00,133 2nd St, New York City,NY,10001 +281077,Lightning Charging Cable,1,14.95,2019-11-16 14:53:00,602 Forest St, San Francisco,CA,94016 +281078,Flatscreen TV,1,300.0,2019-11-12 11:34:00,822 Jackson St, Atlanta,GA,30301 +281079,USB-C Charging Cable,2,11.95,2019-11-26 17:36:00,972 7th St, Seattle,WA,98101 +281080,USB-C Charging Cable,1,11.95,2019-11-30 17:30:00,739 Park St, Seattle,WA,98101 +281081,Lightning Charging Cable,1,14.95,2019-11-18 22:24:00,355 Center St, San Francisco,CA,94016 +281082,27in 4K Gaming Monitor,1,389.99,2019-11-17 20:20:00,150 Lakeview St, New York City,NY,10001 +281083,Wired Headphones,1,11.99,2019-11-13 17:08:00,461 Lincoln St, San Francisco,CA,94016 +281084,27in FHD Monitor,1,149.99,2019-11-18 13:06:00,384 Adams St, Los Angeles,CA,90001 +281085,USB-C Charging Cable,1,11.95,2019-11-10 10:52:00,46 Lincoln St, San Francisco,CA,94016 +281086,34in Ultrawide Monitor,1,379.99,2019-11-16 18:27:00,943 1st St, San Francisco,CA,94016 +281087,Lightning Charging Cable,1,14.95,2019-11-14 00:23:00,83 Church St, Seattle,WA,98101 +281088,Bose SoundSport Headphones,1,99.99,2019-11-13 17:23:00,609 Ridge St, Portland,ME,04101 +281089,ThinkPad Laptop,1,999.99,2019-11-02 21:55:00,623 8th St, Portland,OR,97035 +281090,Lightning Charging Cable,1,14.95,2019-11-16 15:49:00,290 2nd St, Seattle,WA,98101 +281091,Bose SoundSport Headphones,1,99.99,2019-11-07 10:31:00,661 Ridge St, San Francisco,CA,94016 +281092,Wired Headphones,3,11.99,2019-11-01 10:12:00,525 10th St, New York City,NY,10001 +281093,27in FHD Monitor,1,149.99,2019-11-19 19:31:00,699 14th St, San Francisco,CA,94016 +281094,Macbook Pro Laptop,1,1700.0,2019-11-24 09:46:00,508 Washington St, Boston,MA,02215 +281095,iPhone,2,700.0,2019-11-18 23:44:00,347 Main St, Atlanta,GA,30301 +281096,27in 4K Gaming Monitor,1,389.99,2019-11-10 19:23:00,981 Jackson St, Seattle,WA,98101 +281097,ThinkPad Laptop,1,999.99,2019-11-03 17:12:00,421 Hickory St, San Francisco,CA,94016 +281098,Flatscreen TV,1,300.0,2019-11-13 20:40:00,400 1st St, Boston,MA,02215 +281099,Wired Headphones,1,11.99,2019-11-02 00:15:00,31 Center St, New York City,NY,10001 +281100,Bose SoundSport Headphones,1,99.99,2019-11-06 17:42:00,559 Lake St, San Francisco,CA,94016 +281101,Lightning Charging Cable,1,14.95,2019-11-03 17:51:00,78 Meadow St, Seattle,WA,98101 +281102,iPhone,1,700.0,2019-11-28 22:09:00,442 Adams St, Atlanta,GA,30301 +281102,Apple Airpods Headphones,1,150.0,2019-11-28 22:09:00,442 Adams St, Atlanta,GA,30301 +281102,AAA Batteries (4-pack),3,2.99,2019-11-28 22:09:00,442 Adams St, Atlanta,GA,30301 +281103,Wired Headphones,1,11.99,2019-11-23 13:11:00,909 1st St, Atlanta,GA,30301 +281104,Lightning Charging Cable,1,14.95,2019-11-26 20:08:00,510 10th St, San Francisco,CA,94016 +281105,AA Batteries (4-pack),1,3.84,2019-11-24 06:50:00,488 6th St, New York City,NY,10001 +281106,Apple Airpods Headphones,1,150.0,2019-11-27 22:46:00,905 13th St, New York City,NY,10001 +281107,Bose SoundSport Headphones,1,99.99,2019-11-24 16:48:00,631 10th St, Los Angeles,CA,90001 +281108,AAA Batteries (4-pack),1,2.99,2019-11-08 18:28:00,894 1st St, New York City,NY,10001 +281109,34in Ultrawide Monitor,1,379.99,2019-11-03 13:36:00,925 Walnut St, Seattle,WA,98101 +281110,iPhone,1,700.0,2019-11-29 20:58:00,966 Maple St, Boston,MA,02215 +281110,Apple Airpods Headphones,1,150.0,2019-11-29 20:58:00,966 Maple St, Boston,MA,02215 +281111,Bose SoundSport Headphones,1,99.99,2019-11-12 22:43:00,878 Park St, New York City,NY,10001 +281112,Vareebadd Phone,1,400.0,2019-11-06 09:21:00,827 Lincoln St, Los Angeles,CA,90001 +281113,Bose SoundSport Headphones,1,99.99,2019-11-10 11:40:00,323 Johnson St, Los Angeles,CA,90001 +281114,Apple Airpods Headphones,1,150.0,2019-11-08 20:59:00,265 2nd St, Seattle,WA,98101 +281115,AA Batteries (4-pack),1,3.84,2019-11-13 19:36:00,233 Lake St, New York City,NY,10001 +281116,iPhone,1,700.0,2019-11-20 12:31:00,348 14th St, Portland,OR,97035 +281116,Lightning Charging Cable,1,14.95,2019-11-20 12:31:00,348 14th St, Portland,OR,97035 +281117,27in 4K Gaming Monitor,1,389.99,2019-11-13 21:33:00,460 Chestnut St, Austin,TX,73301 +281118,Lightning Charging Cable,1,14.95,2019-11-05 20:37:00,731 Lakeview St, Los Angeles,CA,90001 +281119,Lightning Charging Cable,1,14.95,2019-11-14 04:14:00,389 6th St, Boston,MA,02215 +281120,Bose SoundSport Headphones,1,99.99,2019-11-17 11:29:00,960 11th St, New York City,NY,10001 +281121,Lightning Charging Cable,1,14.95,2019-11-26 13:44:00,344 12th St, Atlanta,GA,30301 +281122,USB-C Charging Cable,1,11.95,2019-11-15 11:14:00,170 4th St, Los Angeles,CA,90001 +281123,Wired Headphones,1,11.99,2019-11-04 07:55:00,566 Church St, New York City,NY,10001 +281124,USB-C Charging Cable,2,11.95,2019-11-23 12:39:00,151 10th St, San Francisco,CA,94016 +281125,USB-C Charging Cable,1,11.95,2019-11-29 09:46:00,966 Pine St, Portland,OR,97035 +281126,AA Batteries (4-pack),1,3.84,2019-11-17 23:11:00,720 Pine St, New York City,NY,10001 +281127,Flatscreen TV,1,300.0,2019-11-27 10:53:00,279 Adams St, Dallas,TX,75001 +281128,AAA Batteries (4-pack),2,2.99,2019-11-25 13:52:00,569 Hickory St, San Francisco,CA,94016 +281129,Apple Airpods Headphones,1,150.0,2019-11-07 12:19:00,530 Jefferson St, Atlanta,GA,30301 +281130,Lightning Charging Cable,1,14.95,2019-11-03 23:06:00,431 Lincoln St, New York City,NY,10001 +281131,Bose SoundSport Headphones,1,99.99,2019-11-02 17:22:00,5 13th St, Dallas,TX,75001 +281132,Bose SoundSport Headphones,1,99.99,2019-11-15 15:50:00,640 Park St, Los Angeles,CA,90001 +281133,AA Batteries (4-pack),2,3.84,2019-11-03 23:34:00,161 7th St, Los Angeles,CA,90001 +281134,Flatscreen TV,1,300.0,2019-11-02 01:15:00,229 Dogwood St, Los Angeles,CA,90001 +281135,20in Monitor,1,109.99,2019-11-04 12:05:00,115 Center St, San Francisco,CA,94016 +281136,Wired Headphones,1,11.99,2019-11-18 17:09:00,131 Willow St, Boston,MA,02215 +281137,Flatscreen TV,1,300.0,2019-11-09 19:35:00,718 River St, San Francisco,CA,94016 +281138,Lightning Charging Cable,1,14.95,2019-11-03 13:25:00,378 Willow St, Dallas,TX,75001 +281139,ThinkPad Laptop,1,999.99,2019-11-22 17:19:00,44 Spruce St, Boston,MA,02215 +281140,Wired Headphones,1,11.99,2019-11-04 14:24:00,992 9th St, Dallas,TX,75001 +281141,27in FHD Monitor,1,149.99,2019-11-04 12:51:00,227 6th St, Austin,TX,73301 +281142,Apple Airpods Headphones,1,150.0,2019-11-30 11:37:00,435 Lake St, San Francisco,CA,94016 +281143,Bose SoundSport Headphones,1,99.99,2019-11-26 21:13:00,881 Park St, Portland,ME,04101 +281144,Lightning Charging Cable,1,14.95,2019-11-10 14:43:00,523 8th St, Seattle,WA,98101 +281145,Apple Airpods Headphones,1,150.0,2019-11-01 19:47:00,770 Lakeview St, San Francisco,CA,94016 +281146,USB-C Charging Cable,1,11.95,2019-11-06 08:35:00,712 Cedar St, San Francisco,CA,94016 +281147,AAA Batteries (4-pack),1,2.99,2019-11-24 11:06:00,560 12th St, Los Angeles,CA,90001 +281148,34in Ultrawide Monitor,1,379.99,2019-11-15 14:34:00,757 8th St, San Francisco,CA,94016 +281149,20in Monitor,1,109.99,2019-11-04 20:42:00,558 Hickory St, New York City,NY,10001 +281150,AAA Batteries (4-pack),1,2.99,2019-11-17 11:29:00,914 Lincoln St, San Francisco,CA,94016 +281151,AA Batteries (4-pack),1,3.84,2019-11-26 08:47:00,109 Lakeview St, San Francisco,CA,94016 +281152,USB-C Charging Cable,1,11.95,2019-11-09 04:59:00,391 Adams St, Atlanta,GA,30301 +281153,Lightning Charging Cable,1,14.95,2019-11-11 11:56:00,950 Jefferson St, Los Angeles,CA,90001 +281154,AA Batteries (4-pack),2,3.84,2019-11-07 13:09:00,886 Forest St, Austin,TX,73301 +281155,Apple Airpods Headphones,1,150.0,2019-11-12 15:14:00,308 Hill St, Austin,TX,73301 +281156,27in 4K Gaming Monitor,1,389.99,2019-11-01 18:27:00,573 Park St, San Francisco,CA,94016 +281157,Bose SoundSport Headphones,1,99.99,2019-11-02 22:15:00,922 1st St, New York City,NY,10001 +281158,AA Batteries (4-pack),1,3.84,2019-11-04 17:40:00,78 Forest St, New York City,NY,10001 +281159,Lightning Charging Cable,1,14.95,2019-11-17 00:02:00,698 Park St, San Francisco,CA,94016 +281160,Apple Airpods Headphones,1,150.0,2019-11-14 16:25:00,959 Park St, Los Angeles,CA,90001 +281161,Flatscreen TV,1,300.0,2019-11-28 11:29:00,613 4th St, Boston,MA,02215 +281162,USB-C Charging Cable,2,11.95,2019-11-13 11:28:00,306 West St, Seattle,WA,98101 +281163,USB-C Charging Cable,2,11.95,2019-11-05 09:08:00,614 10th St, San Francisco,CA,94016 +281164,Bose SoundSport Headphones,1,99.99,2019-11-30 22:47:00,400 12th St, Atlanta,GA,30301 +281165,Lightning Charging Cable,1,14.95,2019-11-18 12:46:00,535 12th St, New York City,NY,10001 +281166,Vareebadd Phone,1,400.0,2019-11-14 13:27:00,738 Johnson St, Austin,TX,73301 +281166,USB-C Charging Cable,1,11.95,2019-11-14 13:27:00,738 Johnson St, Austin,TX,73301 +281167,Lightning Charging Cable,1,14.95,2019-11-29 19:59:00,953 14th St, Los Angeles,CA,90001 +281168,Bose SoundSport Headphones,1,99.99,2019-11-21 12:44:00,549 9th St, Los Angeles,CA,90001 +281169,Apple Airpods Headphones,1,150.0,2019-11-10 20:39:00,114 River St, Austin,TX,73301 +281170,Lightning Charging Cable,1,14.95,2019-11-28 21:41:00,552 Church St, San Francisco,CA,94016 +281171,AAA Batteries (4-pack),1,2.99,2019-11-09 07:51:00,635 6th St, San Francisco,CA,94016 +281172,Bose SoundSport Headphones,1,99.99,2019-11-21 18:16:00,374 River St, Boston,MA,02215 +281173,Wired Headphones,2,11.99,2019-11-10 13:46:00,774 14th St, Dallas,TX,75001 +281174,USB-C Charging Cable,2,11.95,2019-11-07 09:16:00,324 Center St, New York City,NY,10001 +281175,AA Batteries (4-pack),1,3.84,2019-11-11 11:16:00,729 Wilson St, Dallas,TX,75001 +281176,Wired Headphones,1,11.99,2019-11-21 12:53:00,549 Maple St, Seattle,WA,98101 +281177,AAA Batteries (4-pack),1,2.99,2019-11-25 00:22:00,702 Forest St, Boston,MA,02215 +281178,Lightning Charging Cable,1,14.95,2019-11-18 19:53:00,442 Cherry St, San Francisco,CA,94016 +281179,iPhone,1,700.0,2019-11-25 10:25:00,862 River St, San Francisco,CA,94016 +281179,Lightning Charging Cable,1,14.95,2019-11-25 10:25:00,862 River St, San Francisco,CA,94016 +281180,AAA Batteries (4-pack),1,2.99,2019-11-17 19:02:00,786 14th St, San Francisco,CA,94016 +281181,AA Batteries (4-pack),4,3.84,2019-11-20 02:07:00,399 Main St, Dallas,TX,75001 +281182,Bose SoundSport Headphones,1,99.99,2019-11-01 15:59:00,200 14th St, Los Angeles,CA,90001 +281183,Lightning Charging Cable,1,14.95,2019-11-23 05:51:00,877 Main St, Los Angeles,CA,90001 +281184,34in Ultrawide Monitor,1,379.99,2019-11-29 16:07:00,359 14th St, New York City,NY,10001 +281185,AA Batteries (4-pack),3,3.84,2019-11-21 10:37:00,745 10th St, Dallas,TX,75001 +281186,AAA Batteries (4-pack),2,2.99,2019-11-25 20:28:00,681 Madison St, San Francisco,CA,94016 +281187,27in 4K Gaming Monitor,1,389.99,2019-11-01 23:30:00,715 Park St, Boston,MA,02215 +281188,AA Batteries (4-pack),4,3.84,2019-11-23 23:36:00,979 1st St, New York City,NY,10001 +281189,AA Batteries (4-pack),1,3.84,2019-11-01 14:16:00,868 Meadow St, San Francisco,CA,94016 +281190,Bose SoundSport Headphones,1,99.99,2019-11-23 18:43:00,977 Willow St, New York City,NY,10001 +281191,USB-C Charging Cable,1,11.95,2019-11-28 13:46:00,367 Hill St, Los Angeles,CA,90001 +281192,Bose SoundSport Headphones,1,99.99,2019-11-12 16:08:00,417 Forest St, San Francisco,CA,94016 +281193,Lightning Charging Cable,1,14.95,2019-11-17 20:16:00,601 14th St, San Francisco,CA,94016 +281194,AAA Batteries (4-pack),2,2.99,2019-11-03 17:59:00,538 Walnut St, Boston,MA,02215 +281195,USB-C Charging Cable,1,11.95,2019-11-06 20:16:00,583 North St, San Francisco,CA,94016 +281196,AA Batteries (4-pack),3,3.84,2019-11-29 13:53:00,205 Walnut St, Portland,OR,97035 +281197,AA Batteries (4-pack),1,3.84,2019-11-27 11:05:00,512 Center St, Seattle,WA,98101 +281198,Wired Headphones,1,11.99,2019-11-27 16:52:00,700 Center St, Atlanta,GA,30301 +281199,USB-C Charging Cable,1,11.95,2019-11-20 13:51:00,635 North St, New York City,NY,10001 +281200,27in FHD Monitor,1,149.99,2019-11-16 16:45:00,210 Jackson St, New York City,NY,10001 +281201,20in Monitor,1,109.99,2019-11-29 10:40:00,129 14th St, Portland,OR,97035 +281202,Wired Headphones,1,11.99,2019-11-16 06:49:00,951 Walnut St, Boston,MA,02215 +281203,Lightning Charging Cable,1,14.95,2019-11-14 08:39:00,459 11th St, New York City,NY,10001 +281204,Flatscreen TV,1,300.0,2019-11-22 11:29:00,576 6th St, Los Angeles,CA,90001 +281205,27in FHD Monitor,1,149.99,2019-11-25 09:37:00,886 Main St, Seattle,WA,98101 +281206,AA Batteries (4-pack),4,3.84,2019-11-15 01:08:00,804 Spruce St, New York City,NY,10001 +281207,AAA Batteries (4-pack),1,2.99,2019-11-08 22:38:00,770 7th St, Seattle,WA,98101 +281208,AAA Batteries (4-pack),2,2.99,2019-11-06 13:30:00,557 Cedar St, Dallas,TX,75001 +281209,Lightning Charging Cable,1,14.95,2019-11-04 19:30:00,494 Church St, San Francisco,CA,94016 +281210,27in FHD Monitor,1,149.99,2019-11-09 11:30:00,348 South St, San Francisco,CA,94016 +281211,Bose SoundSport Headphones,1,99.99,2019-11-28 19:43:00,786 5th St, Boston,MA,02215 +281212,20in Monitor,1,109.99,2019-11-12 11:30:00,184 Hickory St, New York City,NY,10001 +281213,USB-C Charging Cable,2,11.95,2019-11-01 23:27:00,184 Wilson St, San Francisco,CA,94016 +281214,USB-C Charging Cable,1,11.95,2019-11-25 16:28:00,992 4th St, New York City,NY,10001 +281215,34in Ultrawide Monitor,1,379.99,2019-11-17 12:16:00,104 Cherry St, Portland,OR,97035 +281216,Lightning Charging Cable,1,14.95,2019-11-11 13:30:00,535 Adams St, San Francisco,CA,94016 +281217,Wired Headphones,1,11.99,2019-11-14 16:06:00,133 North St, New York City,NY,10001 +281218,USB-C Charging Cable,1,11.95,2019-11-01 18:49:00,598 Pine St, Dallas,TX,75001 +281219,AAA Batteries (4-pack),1,2.99,2019-11-26 19:42:00,227 13th St, New York City,NY,10001 +281220,34in Ultrawide Monitor,1,379.99,2019-11-08 10:23:00,74 West St, New York City,NY,10001 +281221,Apple Airpods Headphones,1,150.0,2019-11-12 01:37:00,587 North St, San Francisco,CA,94016 +281222,Wired Headphones,1,11.99,2019-11-03 02:09:00,501 Forest St, Los Angeles,CA,90001 +281223,Wired Headphones,1,11.99,2019-11-08 12:06:00,110 Hill St, Boston,MA,02215 +281224,Lightning Charging Cable,1,14.95,2019-11-23 16:37:00,128 Washington St, Portland,OR,97035 +281225,Flatscreen TV,1,300.0,2019-11-03 11:05:00,919 Dogwood St, San Francisco,CA,94016 +281226,Bose SoundSport Headphones,1,99.99,2019-11-07 08:45:00,422 Hill St, San Francisco,CA,94016 +281227,Bose SoundSport Headphones,1,99.99,2019-11-15 18:59:00,353 Willow St, Atlanta,GA,30301 +281228,AAA Batteries (4-pack),2,2.99,2019-11-14 10:41:00,365 Maple St, Seattle,WA,98101 +281229,USB-C Charging Cable,1,11.95,2019-11-01 11:03:00,877 Maple St, Los Angeles,CA,90001 +281230,34in Ultrawide Monitor,1,379.99,2019-11-01 22:02:00,505 Sunset St, Austin,TX,73301 +281231,Wired Headphones,1,11.99,2019-11-03 19:41:00,804 West St, San Francisco,CA,94016 +281232,USB-C Charging Cable,1,11.95,2019-11-30 21:18:00,593 Lake St, Boston,MA,02215 +281233,27in FHD Monitor,1,149.99,2019-11-22 07:24:00,298 Spruce St, Seattle,WA,98101 +281234,AAA Batteries (4-pack),2,2.99,2019-11-05 20:15:00,739 Highland St, San Francisco,CA,94016 +281235,34in Ultrawide Monitor,1,379.99,2019-11-15 12:18:00,245 Lincoln St, Boston,MA,02215 +281236,AA Batteries (4-pack),2,3.84,2019-11-09 13:55:00,868 South St, San Francisco,CA,94016 +281237,Bose SoundSport Headphones,1,99.99,2019-11-22 19:23:00,967 Johnson St, Seattle,WA,98101 +281238,Apple Airpods Headphones,1,150.0,2019-11-16 18:57:00,287 Center St, San Francisco,CA,94016 +281239,Bose SoundSport Headphones,2,99.99,2019-11-09 20:40:00,811 West St, Boston,MA,02215 +281240,Wired Headphones,1,11.99,2019-11-15 10:58:00,705 Wilson St, Seattle,WA,98101 +281241,AAA Batteries (4-pack),1,2.99,2019-11-20 18:15:00,265 Park St, Dallas,TX,75001 +281242,Google Phone,1,600.0,2019-11-24 20:28:00,236 Cedar St, New York City,NY,10001 +281243,USB-C Charging Cable,2,11.95,2019-11-07 20:21:00,228 6th St, San Francisco,CA,94016 +281244,Apple Airpods Headphones,1,150.0,2019-11-02 17:25:00,559 12th St, Dallas,TX,75001 +281245,AAA Batteries (4-pack),1,2.99,2019-11-22 17:01:00,715 Church St, Los Angeles,CA,90001 +281246,Apple Airpods Headphones,1,150.0,2019-11-05 19:54:00,660 Center St, New York City,NY,10001 +281247,Apple Airpods Headphones,1,150.0,2019-11-05 19:40:00,481 Adams St, Portland,OR,97035 +281248,USB-C Charging Cable,1,11.95,2019-11-01 09:04:00,371 Jackson St, Seattle,WA,98101 +281249,iPhone,1,700.0,2019-11-03 13:56:00,509 Jefferson St, San Francisco,CA,94016 +281250,AA Batteries (4-pack),1,3.84,2019-11-28 22:02:00,114 Meadow St, Portland,OR,97035 +281251,Apple Airpods Headphones,1,150.0,2019-11-02 13:07:00,986 Washington St, Dallas,TX,75001 +281252,AA Batteries (4-pack),1,3.84,2019-11-18 08:09:00,451 11th St, New York City,NY,10001 +281253,USB-C Charging Cable,1,11.95,2019-11-14 07:04:00,136 Chestnut St, San Francisco,CA,94016 +281254,USB-C Charging Cable,1,11.95,2019-11-16 14:38:00,519 5th St, Atlanta,GA,30301 +281255,AA Batteries (4-pack),1,3.84,2019-11-15 15:23:00,20 Lincoln St, San Francisco,CA,94016 +281256,Apple Airpods Headphones,1,150.0,2019-11-15 08:27:00,218 Park St, New York City,NY,10001 +281257,Wired Headphones,1,11.99,2019-11-18 21:48:00,259 Walnut St, Portland,OR,97035 +281258,AAA Batteries (4-pack),1,2.99,2019-11-16 18:52:00,140 14th St, Seattle,WA,98101 +281259,Wired Headphones,1,11.99,2019-11-10 10:10:00,263 Church St, San Francisco,CA,94016 +281260,Lightning Charging Cable,1,14.95,2019-11-09 12:36:00,970 5th St, Portland,OR,97035 +281261,Google Phone,1,600.0,2019-11-20 20:34:00,680 North St, San Francisco,CA,94016 +281262,Wired Headphones,1,11.99,2019-11-15 12:36:00,205 9th St, New York City,NY,10001 +281263,Wired Headphones,1,11.99,2019-11-16 13:52:00,304 Jefferson St, Boston,MA,02215 +281264,USB-C Charging Cable,1,11.95,2019-11-16 03:22:00,959 Elm St, Dallas,TX,75001 +281265,AA Batteries (4-pack),1,3.84,2019-11-28 21:18:00,930 8th St, Portland,OR,97035 +281266,AAA Batteries (4-pack),1,2.99,2019-11-21 00:33:00,989 6th St, San Francisco,CA,94016 +281267,27in 4K Gaming Monitor,1,389.99,2019-11-23 22:35:00,988 10th St, New York City,NY,10001 +281268,Macbook Pro Laptop,1,1700.0,2019-11-17 15:00:00,6 14th St, New York City,NY,10001 +281269,34in Ultrawide Monitor,1,379.99,2019-11-25 16:10:00,572 Spruce St, Boston,MA,02215 +281270,20in Monitor,1,109.99,2019-11-24 13:51:00,173 Forest St, Austin,TX,73301 +281271,AAA Batteries (4-pack),1,2.99,2019-11-09 23:52:00,126 Hickory St, Dallas,TX,75001 +281272,Lightning Charging Cable,1,14.95,2019-11-04 17:56:00,638 Hill St, New York City,NY,10001 +281273,Lightning Charging Cable,1,14.95,2019-11-07 10:59:00,316 Hickory St, Boston,MA,02215 +281274,Wired Headphones,1,11.99,2019-11-11 12:33:00,550 Church St, Portland,OR,97035 +281275,AAA Batteries (4-pack),1,2.99,2019-11-23 09:52:00,14 Pine St, San Francisco,CA,94016 +281276,Apple Airpods Headphones,1,150.0,2019-11-04 23:05:00,111 11th St, Los Angeles,CA,90001 +281277,Lightning Charging Cable,1,14.95,2019-11-10 13:46:00,906 12th St, Seattle,WA,98101 +281278,USB-C Charging Cable,1,11.95,2019-11-29 10:43:00,481 Madison St, New York City,NY,10001 +281279,Bose SoundSport Headphones,1,99.99,2019-11-15 17:54:00,409 6th St, Austin,TX,73301 +281280,AA Batteries (4-pack),1,3.84,2019-11-23 15:19:00,835 5th St, Boston,MA,02215 +281281,27in FHD Monitor,1,149.99,2019-11-11 17:07:00,755 Johnson St, Austin,TX,73301 +281282,ThinkPad Laptop,1,999.99,2019-11-24 20:06:00,352 Ridge St, New York City,NY,10001 +281283,Bose SoundSport Headphones,1,99.99,2019-11-20 18:26:00,402 Willow St, Austin,TX,73301 +281284,20in Monitor,1,109.99,2019-11-08 00:55:00,205 9th St, Seattle,WA,98101 +281285,Apple Airpods Headphones,1,150.0,2019-11-04 18:12:00,994 Elm St, San Francisco,CA,94016 +281286,Macbook Pro Laptop,1,1700.0,2019-11-09 21:32:00,638 14th St, Los Angeles,CA,90001 +281287,Wired Headphones,1,11.99,2019-11-30 09:08:00,161 Spruce St, San Francisco,CA,94016 +281288,Apple Airpods Headphones,1,150.0,2019-11-04 16:24:00,487 Lake St, San Francisco,CA,94016 +281289,AAA Batteries (4-pack),2,2.99,2019-11-04 20:24:00,137 Hill St, San Francisco,CA,94016 +281290,Lightning Charging Cable,1,14.95,2019-11-27 10:49:00,33 Church St, Boston,MA,02215 +281291,Wired Headphones,1,11.99,2019-11-08 13:30:00,849 11th St, San Francisco,CA,94016 +281292,Bose SoundSport Headphones,1,99.99,2019-11-22 08:44:00,273 2nd St, New York City,NY,10001 +281293,34in Ultrawide Monitor,1,379.99,2019-11-09 10:55:00,609 West St, San Francisco,CA,94016 +281294,Lightning Charging Cable,1,14.95,2019-11-29 17:27:00,442 13th St, San Francisco,CA,94016 +281295,ThinkPad Laptop,1,999.99,2019-11-27 11:47:00,17 12th St, San Francisco,CA,94016 +281296,Bose SoundSport Headphones,1,99.99,2019-11-30 22:44:00,888 Jefferson St, Austin,TX,73301 +281297,Wired Headphones,1,11.99,2019-11-04 21:00:00,832 1st St, New York City,NY,10001 +281298,34in Ultrawide Monitor,1,379.99,2019-11-07 08:13:00,46 Jefferson St, Austin,TX,73301 +281299,AA Batteries (4-pack),1,3.84,2019-11-02 10:37:00,440 Park St, San Francisco,CA,94016 +281300,AAA Batteries (4-pack),1,2.99,2019-11-29 11:59:00,723 7th St, Dallas,TX,75001 +281301,Bose SoundSport Headphones,1,99.99,2019-11-08 08:27:00,446 11th St, San Francisco,CA,94016 +281302,USB-C Charging Cable,1,11.95,2019-11-14 10:28:00,704 Forest St, San Francisco,CA,94016 +281303,Apple Airpods Headphones,1,150.0,2019-11-08 13:55:00,858 Walnut St, Los Angeles,CA,90001 +281304,USB-C Charging Cable,1,11.95,2019-11-03 21:08:00,143 Chestnut St, Boston,MA,02215 +281305,Bose SoundSport Headphones,1,99.99,2019-11-26 17:06:00,794 Adams St, Atlanta,GA,30301 +281306,Macbook Pro Laptop,1,1700.0,2019-11-24 15:53:00,628 Center St, Dallas,TX,75001 +281307,AA Batteries (4-pack),2,3.84,2019-11-07 16:52:00,35 Madison St, Los Angeles,CA,90001 +281308,USB-C Charging Cable,1,11.95,2019-11-18 10:59:00,826 Adams St, Atlanta,GA,30301 +281309,Macbook Pro Laptop,1,1700.0,2019-11-20 22:40:00,226 Main St, Dallas,TX,75001 +281310,27in FHD Monitor,1,149.99,2019-11-27 20:46:00,754 West St, San Francisco,CA,94016 +281311,USB-C Charging Cable,1,11.95,2019-11-12 14:21:00,34 Main St, New York City,NY,10001 +281312,Apple Airpods Headphones,1,150.0,2019-11-07 21:33:00,729 Meadow St, Atlanta,GA,30301 +281313,Apple Airpods Headphones,1,150.0,2019-11-10 09:24:00,983 Madison St, Boston,MA,02215 +281314,Apple Airpods Headphones,1,150.0,2019-11-16 20:11:00,655 Lake St, New York City,NY,10001 +281315,20in Monitor,1,109.99,2019-11-03 19:38:00,788 13th St, San Francisco,CA,94016 +281316,USB-C Charging Cable,1,11.95,2019-11-10 17:19:00,330 Wilson St, Los Angeles,CA,90001 +281317,Bose SoundSport Headphones,1,99.99,2019-11-08 12:55:00,342 Jefferson St, San Francisco,CA,94016 +281318,AA Batteries (4-pack),1,3.84,2019-11-13 12:04:00,643 Washington St, Austin,TX,73301 +281319,Lightning Charging Cable,1,14.95,2019-11-24 21:40:00,404 Hill St, Dallas,TX,75001 +281320,Lightning Charging Cable,1,14.95,2019-11-12 20:55:00,350 Church St, San Francisco,CA,94016 +281321,AA Batteries (4-pack),4,3.84,2019-11-20 15:15:00,699 Park St, San Francisco,CA,94016 +281322,USB-C Charging Cable,1,11.95,2019-11-13 10:14:00,718 6th St, New York City,NY,10001 +281323,27in 4K Gaming Monitor,1,389.99,2019-11-17 11:48:00,759 Jefferson St, Atlanta,GA,30301 +281324,USB-C Charging Cable,1,11.95,2019-11-10 14:43:00,243 Adams St, Seattle,WA,98101 +281325,Lightning Charging Cable,1,14.95,2019-11-16 16:48:00,609 8th St, San Francisco,CA,94016 +281326,Wired Headphones,1,11.99,2019-11-15 13:18:00,663 Cherry St, San Francisco,CA,94016 +281327,Google Phone,1,600.0,2019-11-29 11:14:00,512 Center St, New York City,NY,10001 +281328,AA Batteries (4-pack),1,3.84,2019-11-08 12:35:00,285 Lakeview St, Austin,TX,73301 +281329,Wired Headphones,1,11.99,2019-11-30 22:26:00,404 Elm St, Austin,TX,73301 +281330,Apple Airpods Headphones,1,150.0,2019-11-20 12:29:00,584 Ridge St, Austin,TX,73301 +281331,27in 4K Gaming Monitor,1,389.99,2019-11-18 13:55:00,265 Lakeview St, San Francisco,CA,94016 +281332,Bose SoundSport Headphones,1,99.99,2019-11-08 22:27:00,23 6th St, Los Angeles,CA,90001 +281333,iPhone,1,700.0,2019-11-12 14:37:00,796 8th St, San Francisco,CA,94016 +281334,Lightning Charging Cable,1,14.95,2019-11-29 09:17:00,559 10th St, Boston,MA,02215 +281335,AA Batteries (4-pack),1,3.84,2019-11-27 12:41:00,307 Washington St, New York City,NY,10001 +281336,AA Batteries (4-pack),3,3.84,2019-11-05 12:02:00,86 2nd St, New York City,NY,10001 +281337,Macbook Pro Laptop,1,1700.0,2019-11-24 23:06:00,783 Center St, Los Angeles,CA,90001 +281338,Lightning Charging Cable,1,14.95,2019-11-17 22:51:00,391 11th St, San Francisco,CA,94016 +281339,USB-C Charging Cable,1,11.95,2019-11-25 10:56:00,687 10th St, New York City,NY,10001 +281340,Apple Airpods Headphones,1,150.0,2019-11-04 07:46:00,312 Highland St, Los Angeles,CA,90001 +281341,Bose SoundSport Headphones,1,99.99,2019-11-09 13:19:00,489 8th St, Seattle,WA,98101 +281342,Apple Airpods Headphones,1,150.0,2019-11-12 23:24:00,832 Maple St, San Francisco,CA,94016 +281343,AAA Batteries (4-pack),3,2.99,2019-11-26 20:42:00,103 Cherry St, New York City,NY,10001 +281344,AAA Batteries (4-pack),1,2.99,2019-11-19 18:06:00,79 5th St, Seattle,WA,98101 +281345,27in FHD Monitor,1,149.99,2019-11-20 00:32:00,71 Willow St, Dallas,TX,75001 +281346,Wired Headphones,1,11.99,2019-11-24 00:21:00,539 12th St, San Francisco,CA,94016 +281347,Macbook Pro Laptop,1,1700.0,2019-11-01 09:24:00,597 Cherry St, Los Angeles,CA,90001 +281348,AA Batteries (4-pack),1,3.84,2019-11-14 07:08:00,599 West St, San Francisco,CA,94016 +281349,AAA Batteries (4-pack),2,2.99,2019-11-08 11:42:00,23 Sunset St, Austin,TX,73301 +281350,Macbook Pro Laptop,1,1700.0,2019-11-24 20:49:00,893 Willow St, San Francisco,CA,94016 +281351,Bose SoundSport Headphones,1,99.99,2019-11-06 12:53:00,899 8th St, San Francisco,CA,94016 +281352,Apple Airpods Headphones,1,150.0,2019-11-14 09:19:00,600 Center St, Los Angeles,CA,90001 +281353,Apple Airpods Headphones,1,150.0,2019-11-10 11:45:00,978 Walnut St, Portland,OR,97035 +281354,Lightning Charging Cable,2,14.95,2019-11-13 08:30:00,694 Lake St, Atlanta,GA,30301 +281355,LG Dryer,1,600.0,2019-11-16 09:03:00,409 North St, San Francisco,CA,94016 +281356,AA Batteries (4-pack),1,3.84,2019-11-21 19:54:00,819 Lakeview St, Portland,OR,97035 +281357,Wired Headphones,1,11.99,2019-11-11 12:01:00,3 Forest St, Austin,TX,73301 +281358,USB-C Charging Cable,1,11.95,2019-11-21 22:35:00,853 Lincoln St, New York City,NY,10001 +281359,USB-C Charging Cable,1,11.95,2019-11-09 19:53:00,95 Madison St, Boston,MA,02215 +281360,Macbook Pro Laptop,1,1700.0,2019-11-21 18:38:00,176 12th St, Atlanta,GA,30301 +281361,Wired Headphones,1,11.99,2019-11-17 11:09:00,410 Adams St, Austin,TX,73301 +281362,34in Ultrawide Monitor,1,379.99,2019-11-23 15:01:00,706 4th St, Atlanta,GA,30301 +281363,USB-C Charging Cable,1,11.95,2019-11-29 14:50:00,853 Jackson St, Boston,MA,02215 +281364,Apple Airpods Headphones,1,150.0,2019-11-07 12:32:00,65 South St, Atlanta,GA,30301 +281365,AA Batteries (4-pack),1,3.84,2019-11-01 12:35:00,274 Forest St, San Francisco,CA,94016 +281366,AAA Batteries (4-pack),2,2.99,2019-11-13 16:58:00,389 Church St, Portland,OR,97035 +281367,AA Batteries (4-pack),1,3.84,2019-11-10 11:10:00,921 Sunset St, Seattle,WA,98101 +281368,AAA Batteries (4-pack),1,2.99,2019-11-13 19:40:00,45 Highland St, Los Angeles,CA,90001 +281369,AA Batteries (4-pack),1,3.84,2019-11-10 15:57:00,917 Highland St, Los Angeles,CA,90001 +281370,AA Batteries (4-pack),1,3.84,2019-11-23 14:40:00,3 Lincoln St, Los Angeles,CA,90001 +281371,AAA Batteries (4-pack),1,2.99,2019-11-09 14:04:00,786 5th St, Boston,MA,02215 +281372,iPhone,1,700.0,2019-11-30 15:44:00,154 Willow St, Boston,MA,02215 +281373,Lightning Charging Cable,1,14.95,2019-11-28 16:37:00,696 11th St, San Francisco,CA,94016 +281374,Lightning Charging Cable,1,14.95,2019-11-29 13:08:00,896 Church St, San Francisco,CA,94016 +281375,Apple Airpods Headphones,1,150.0,2019-11-05 11:23:00,67 12th St, San Francisco,CA,94016 +281376,ThinkPad Laptop,1,999.99,2019-11-02 14:07:00,920 11th St, Dallas,TX,75001 +281377,27in 4K Gaming Monitor,1,389.99,2019-11-07 05:18:00,822 Lakeview St, San Francisco,CA,94016 +281378,USB-C Charging Cable,1,11.95,2019-11-19 23:12:00,63 Highland St, Portland,OR,97035 +281379,Google Phone,1,600.0,2019-11-21 19:06:00,518 Hill St, Los Angeles,CA,90001 +281380,Macbook Pro Laptop,1,1700.0,2019-11-24 13:33:00,61 South St, Dallas,TX,75001 +281381,Bose SoundSport Headphones,1,99.99,2019-11-17 12:48:00,325 Maple St, San Francisco,CA,94016 +281382,27in 4K Gaming Monitor,1,389.99,2019-11-29 18:15:00,642 11th St, Boston,MA,02215 +281383,27in 4K Gaming Monitor,1,389.99,2019-11-11 21:06:00,840 Hill St, San Francisco,CA,94016 +281384,AA Batteries (4-pack),1,3.84,2019-11-15 12:10:00,340 Cherry St, Portland,ME,04101 +281384,iPhone,1,700.0,2019-11-15 12:10:00,340 Cherry St, Portland,ME,04101 +281385,USB-C Charging Cable,2,11.95,2019-11-15 12:42:00,413 Jefferson St, Atlanta,GA,30301 +281386,Google Phone,1,600.0,2019-11-17 20:48:00,738 Church St, New York City,NY,10001 +281387,USB-C Charging Cable,1,11.95,2019-11-08 18:14:00,951 Center St, Boston,MA,02215 +281388,Lightning Charging Cable,1,14.95,2019-11-24 14:04:00,109 Dogwood St, Seattle,WA,98101 +281389,Lightning Charging Cable,1,14.95,2019-11-22 12:28:00,578 5th St, Los Angeles,CA,90001 +281390,USB-C Charging Cable,1,11.95,2019-11-19 20:12:00,905 Spruce St, Atlanta,GA,30301 +281391,AAA Batteries (4-pack),1,2.99,2019-11-16 19:39:00,76 11th St, New York City,NY,10001 +281392,AA Batteries (4-pack),1,3.84,2019-11-15 12:54:00,661 2nd St, Dallas,TX,75001 +281393,AA Batteries (4-pack),1,3.84,2019-11-09 11:01:00,891 Pine St, New York City,NY,10001 +281394,Wired Headphones,1,11.99,2019-11-08 13:13:00,366 Adams St, Los Angeles,CA,90001 +281395,ThinkPad Laptop,1,999.99,2019-11-18 22:54:00,627 South St, Dallas,TX,75001 +281396,Wired Headphones,1,11.99,2019-11-08 11:38:00,737 River St, New York City,NY,10001 +281397,34in Ultrawide Monitor,1,379.99,2019-11-18 17:11:00,772 Madison St, Los Angeles,CA,90001 +281398,Lightning Charging Cable,2,14.95,2019-11-28 22:23:00,267 4th St, Los Angeles,CA,90001 +281399,iPhone,1,700.0,2019-11-09 15:16:00,343 Chestnut St, Seattle,WA,98101 +281400,AA Batteries (4-pack),1,3.84,2019-11-12 13:29:00,291 Hill St, Boston,MA,02215 +281401,27in 4K Gaming Monitor,1,389.99,2019-11-27 12:37:00,585 Lincoln St, Los Angeles,CA,90001 +281402,Google Phone,1,600.0,2019-11-28 10:57:00,497 Pine St, San Francisco,CA,94016 +281402,Wired Headphones,1,11.99,2019-11-28 10:57:00,497 Pine St, San Francisco,CA,94016 +281403,AA Batteries (4-pack),1,3.84,2019-11-25 09:15:00,528 Center St, Austin,TX,73301 +281404,Apple Airpods Headphones,1,150.0,2019-11-10 19:48:00,769 Johnson St, Los Angeles,CA,90001 +281405,AA Batteries (4-pack),1,3.84,2019-11-22 18:48:00,767 Center St, New York City,NY,10001 +281406,ThinkPad Laptop,1,999.99,2019-11-24 01:13:00,621 Willow St, Dallas,TX,75001 +281407,Bose SoundSport Headphones,1,99.99,2019-11-02 20:41:00,411 13th St, San Francisco,CA,94016 +281408,USB-C Charging Cable,1,11.95,2019-11-23 16:55:00,184 Madison St, Los Angeles,CA,90001 +281409,USB-C Charging Cable,1,11.95,2019-11-04 11:48:00,654 1st St, Los Angeles,CA,90001 +281410,Wired Headphones,1,11.99,2019-11-30 12:43:00,859 Sunset St, Atlanta,GA,30301 +281411,Wired Headphones,1,11.99,2019-11-24 10:23:00,111 Pine St, Portland,OR,97035 +281412,AA Batteries (4-pack),1,3.84,2019-11-26 13:44:00,586 Chestnut St, New York City,NY,10001 +281413,USB-C Charging Cable,1,11.95,2019-11-17 15:38:00,19 Cherry St, San Francisco,CA,94016 +281414,Google Phone,1,600.0,2019-11-08 16:23:00,103 Center St, New York City,NY,10001 +281414,USB-C Charging Cable,1,11.95,2019-11-08 16:23:00,103 Center St, New York City,NY,10001 +281415,AA Batteries (4-pack),1,3.84,2019-11-24 10:49:00,91 North St, Atlanta,GA,30301 +281416,Google Phone,1,600.0,2019-11-06 14:11:00,748 Church St, Austin,TX,73301 +281416,Bose SoundSport Headphones,1,99.99,2019-11-06 14:11:00,748 Church St, Austin,TX,73301 +281417,27in 4K Gaming Monitor,1,389.99,2019-11-16 18:54:00,102 Ridge St, Los Angeles,CA,90001 +281418,AA Batteries (4-pack),3,3.84,2019-11-24 05:05:00,416 Main St, Atlanta,GA,30301 +281419,USB-C Charging Cable,1,11.95,2019-11-09 20:18:00,952 Madison St, Los Angeles,CA,90001 +281420,Lightning Charging Cable,1,14.95,2019-11-19 08:57:00,123 Main St, Portland,OR,97035 +281421,Bose SoundSport Headphones,1,99.99,2019-11-23 09:55:00,133 Dogwood St, New York City,NY,10001 +281422,iPhone,1,700.0,2019-11-03 21:12:00,635 10th St, San Francisco,CA,94016 +281423,Wired Headphones,1,11.99,2019-11-24 10:17:00,609 Jackson St, Los Angeles,CA,90001 +281424,USB-C Charging Cable,1,11.95,2019-11-06 10:19:00,364 North St, Los Angeles,CA,90001 +281425,iPhone,1,700.0,2019-11-22 01:28:00,361 Wilson St, Portland,ME,04101 +281426,Bose SoundSport Headphones,1,99.99,2019-11-08 21:10:00,302 Park St, Boston,MA,02215 +281427,Vareebadd Phone,1,400.0,2019-11-11 12:24:00,956 Madison St, San Francisco,CA,94016 +281428,Lightning Charging Cable,1,14.95,2019-11-17 21:13:00,11 Adams St, New York City,NY,10001 +281429,USB-C Charging Cable,2,11.95,2019-11-17 13:40:00,439 Meadow St, San Francisco,CA,94016 +281430,27in 4K Gaming Monitor,1,389.99,2019-11-23 13:25:00,682 Maple St, San Francisco,CA,94016 +281431,USB-C Charging Cable,1,11.95,2019-11-22 12:39:00,865 8th St, Dallas,TX,75001 +281432,Wired Headphones,1,11.99,2019-11-16 22:15:00,670 Lakeview St, Seattle,WA,98101 +281433,27in 4K Gaming Monitor,1,389.99,2019-11-28 17:53:00,256 South St, San Francisco,CA,94016 +281434,AAA Batteries (4-pack),1,2.99,2019-11-12 19:37:00,695 1st St, San Francisco,CA,94016 +281435,USB-C Charging Cable,1,11.95,2019-11-06 18:19:00,667 Hickory St, San Francisco,CA,94016 +281436,iPhone,1,700.0,2019-11-08 12:30:00,583 North St, San Francisco,CA,94016 +281436,Wired Headphones,1,11.99,2019-11-08 12:30:00,583 North St, San Francisco,CA,94016 +281437,AAA Batteries (4-pack),1,2.99,2019-11-15 13:04:00,608 South St, Dallas,TX,75001 +281438,34in Ultrawide Monitor,1,379.99,2019-11-15 07:42:00,543 Maple St, New York City,NY,10001 +281439,AAA Batteries (4-pack),1,2.99,2019-11-16 11:51:00,428 Chestnut St, Los Angeles,CA,90001 +281440,Macbook Pro Laptop,1,1700.0,2019-11-22 07:39:00,362 South St, Atlanta,GA,30301 +281441,Bose SoundSport Headphones,1,99.99,2019-11-30 22:13:00,481 Chestnut St, Seattle,WA,98101 +281442,Google Phone,1,600.0,2019-11-13 08:11:00,800 11th St, San Francisco,CA,94016 +281443,Wired Headphones,1,11.99,2019-11-16 12:02:00,623 5th St, Seattle,WA,98101 +281444,Bose SoundSport Headphones,1,99.99,2019-11-11 12:12:00,938 2nd St, Los Angeles,CA,90001 +281445,USB-C Charging Cable,1,11.95,2019-11-04 10:10:00,202 Elm St, Portland,OR,97035 +281446,USB-C Charging Cable,1,11.95,2019-11-03 14:41:00,758 South St, Seattle,WA,98101 +281447,Lightning Charging Cable,2,14.95,2019-11-17 11:27:00,579 Walnut St, Los Angeles,CA,90001 +281448,AA Batteries (4-pack),1,3.84,2019-11-19 07:22:00,768 Lakeview St, Seattle,WA,98101 +281449,Google Phone,1,600.0,2019-11-29 18:35:00,756 Meadow St, Atlanta,GA,30301 +281450,USB-C Charging Cable,1,11.95,2019-11-21 14:52:00,291 2nd St, San Francisco,CA,94016 +281451,27in FHD Monitor,1,149.99,2019-11-24 10:12:00,455 6th St, Los Angeles,CA,90001 +281452,Wired Headphones,1,11.99,2019-11-10 19:55:00,573 12th St, Seattle,WA,98101 +281453,27in 4K Gaming Monitor,1,389.99,2019-11-27 21:04:00,244 Johnson St, Atlanta,GA,30301 +281454,AA Batteries (4-pack),1,3.84,2019-11-04 07:48:00,423 Madison St, Boston,MA,02215 +281455,AA Batteries (4-pack),1,3.84,2019-11-30 11:35:00,548 12th St, Los Angeles,CA,90001 +281456,USB-C Charging Cable,1,11.95,2019-11-04 07:54:00,577 Ridge St, Los Angeles,CA,90001 +281457,27in FHD Monitor,1,149.99,2019-11-25 14:05:00,439 Church St, San Francisco,CA,94016 +281458,Bose SoundSport Headphones,1,99.99,2019-11-25 13:05:00,750 West St, Austin,TX,73301 +281459,AA Batteries (4-pack),1,3.84,2019-11-30 15:04:00,345 Spruce St, Los Angeles,CA,90001 +281460,Lightning Charging Cable,1,14.95,2019-11-27 16:25:00,610 Willow St, San Francisco,CA,94016 +281461,USB-C Charging Cable,1,11.95,2019-11-19 20:33:00,161 River St, San Francisco,CA,94016 +281462,Bose SoundSport Headphones,1,99.99,2019-11-29 20:29:00,63 Adams St, Atlanta,GA,30301 +281463,USB-C Charging Cable,1,11.95,2019-11-01 19:52:00,832 Spruce St, Atlanta,GA,30301 +281464,Flatscreen TV,1,300.0,2019-11-28 15:30:00,259 Chestnut St, Austin,TX,73301 +281465,Wired Headphones,1,11.99,2019-11-09 19:52:00,645 5th St, Atlanta,GA,30301 +281466,Lightning Charging Cable,1,14.95,2019-11-08 06:13:00,813 Madison St, Portland,ME,04101 +281467,27in FHD Monitor,1,149.99,2019-11-25 00:15:00,700 Forest St, Portland,ME,04101 +281468,34in Ultrawide Monitor,1,379.99,2019-11-15 14:13:00,338 Walnut St, Seattle,WA,98101 +281469,USB-C Charging Cable,1,11.95,2019-11-11 16:55:00,985 Washington St, Seattle,WA,98101 +281470,27in 4K Gaming Monitor,1,389.99,2019-11-01 17:42:00,605 9th St, Portland,ME,04101 +281471,Bose SoundSport Headphones,1,99.99,2019-11-26 14:15:00,885 Highland St, New York City,NY,10001 +281472,USB-C Charging Cable,1,11.95,2019-11-09 13:21:00,80 Madison St, Boston,MA,02215 +281473,Apple Airpods Headphones,1,150.0,2019-11-25 16:35:00,435 Walnut St, Portland,OR,97035 +281474,27in 4K Gaming Monitor,1,389.99,2019-11-25 12:53:00,405 8th St, San Francisco,CA,94016 +281475,iPhone,1,700.0,2019-11-05 13:00:00,907 Elm St, Seattle,WA,98101 +281476,USB-C Charging Cable,1,11.95,2019-11-04 12:24:00,285 5th St, New York City,NY,10001 +281477,Lightning Charging Cable,1,14.95,2019-11-09 20:39:00,708 Adams St, Dallas,TX,75001 +281478,Apple Airpods Headphones,1,150.0,2019-11-26 19:10:00,624 8th St, Austin,TX,73301 +281479,Apple Airpods Headphones,1,150.0,2019-11-26 11:03:00,329 Adams St, Boston,MA,02215 +281480,AAA Batteries (4-pack),1,2.99,2019-11-14 18:19:00,717 Church St, Dallas,TX,75001 +281481,USB-C Charging Cable,2,11.95,2019-11-01 19:36:00,451 Hickory St, San Francisco,CA,94016 +281482,Bose SoundSport Headphones,1,99.99,2019-11-27 00:36:00,342 Wilson St, San Francisco,CA,94016 +281483,Wired Headphones,1,11.99,2019-11-07 02:55:00,955 Willow St, San Francisco,CA,94016 +281484,Wired Headphones,1,11.99,2019-11-23 02:08:00,103 9th St, Los Angeles,CA,90001 +281485,iPhone,1,700.0,2019-11-03 09:08:00,584 Chestnut St, Austin,TX,73301 +281486,Bose SoundSport Headphones,1,99.99,2019-11-08 20:30:00,917 Park St, Atlanta,GA,30301 +281487,Macbook Pro Laptop,1,1700.0,2019-11-30 19:08:00,479 Elm St, New York City,NY,10001 +281488,AA Batteries (4-pack),1,3.84,2019-11-13 18:18:00,678 Jefferson St, San Francisco,CA,94016 +281489,Lightning Charging Cable,1,14.95,2019-11-01 23:28:00,35 Spruce St, New York City,NY,10001 +281490,ThinkPad Laptop,1,999.99,2019-11-16 08:27:00,654 6th St, Atlanta,GA,30301 +281491,Apple Airpods Headphones,1,150.0,2019-11-11 12:48:00,259 13th St, Dallas,TX,75001 +281492,Wired Headphones,1,11.99,2019-11-07 16:00:00,407 Church St, Los Angeles,CA,90001 +281493,27in 4K Gaming Monitor,1,389.99,2019-11-01 21:01:00,395 Hill St, Dallas,TX,75001 +281494,Wired Headphones,1,11.99,2019-11-27 17:40:00,583 Washington St, New York City,NY,10001 +281495,Apple Airpods Headphones,1,150.0,2019-11-27 16:37:00,406 13th St, New York City,NY,10001 +281496,Google Phone,1,600.0,2019-11-24 14:32:00,108 Lincoln St, Los Angeles,CA,90001 +281497,iPhone,1,700.0,2019-11-26 12:10:00,640 West St, San Francisco,CA,94016 +281497,Apple Airpods Headphones,1,150.0,2019-11-26 12:10:00,640 West St, San Francisco,CA,94016 +281498,USB-C Charging Cable,1,11.95,2019-11-08 10:44:00,155 Johnson St, New York City,NY,10001 +281499,Lightning Charging Cable,1,14.95,2019-11-25 22:52:00,445 Park St, Austin,TX,73301 +281500,USB-C Charging Cable,1,11.95,2019-11-30 23:09:00,104 Ridge St, Los Angeles,CA,90001 +281501,Lightning Charging Cable,2,14.95,2019-11-07 12:53:00,875 10th St, Austin,TX,73301 +281502,27in FHD Monitor,1,149.99,2019-11-24 18:12:00,99 Center St, New York City,NY,10001 +281503,Flatscreen TV,1,300.0,2019-11-25 18:47:00,829 14th St, Boston,MA,02215 +281504,USB-C Charging Cable,1,11.95,2019-11-17 10:28:00,90 Pine St, Austin,TX,73301 +281505,Bose SoundSport Headphones,1,99.99,2019-11-02 18:26:00,765 5th St, Atlanta,GA,30301 +281506,Macbook Pro Laptop,1,1700.0,2019-11-25 08:01:00,928 Elm St, Austin,TX,73301 +281507,USB-C Charging Cable,1,11.95,2019-11-27 01:00:00,298 Maple St, Atlanta,GA,30301 +281508,AA Batteries (4-pack),1,3.84,2019-11-08 00:01:00,698 2nd St, Boston,MA,02215 +281509,AA Batteries (4-pack),1,3.84,2019-11-29 14:15:00,906 Washington St, Seattle,WA,98101 +281510,Macbook Pro Laptop,1,1700.0,2019-11-15 12:51:00,705 8th St, New York City,NY,10001 +281511,Wired Headphones,3,11.99,2019-11-01 17:18:00,556 Pine St, Atlanta,GA,30301 +281512,LG Dryer,1,600.0,2019-11-03 18:43:00,93 North St, San Francisco,CA,94016 +281513,Bose SoundSport Headphones,1,99.99,2019-11-11 21:34:00,222 Cedar St, Boston,MA,02215 +281514,AA Batteries (4-pack),1,3.84,2019-11-07 08:53:00,267 North St, Los Angeles,CA,90001 +281515,iPhone,1,700.0,2019-11-11 17:48:00,358 Madison St, San Francisco,CA,94016 +281515,Apple Airpods Headphones,1,150.0,2019-11-11 17:48:00,358 Madison St, San Francisco,CA,94016 +281516,iPhone,1,700.0,2019-11-24 14:03:00,920 Hill St, Dallas,TX,75001 +281517,AA Batteries (4-pack),1,3.84,2019-11-21 17:13:00,889 Johnson St, San Francisco,CA,94016 +281518,Lightning Charging Cable,1,14.95,2019-11-02 20:44:00,612 Center St, Austin,TX,73301 +281519,Bose SoundSport Headphones,1,99.99,2019-11-13 20:09:00,959 Washington St, San Francisco,CA,94016 +281520,iPhone,1,700.0,2019-11-12 10:56:00,573 Wilson St, San Francisco,CA,94016 +281520,Lightning Charging Cable,1,14.95,2019-11-12 10:56:00,573 Wilson St, San Francisco,CA,94016 +281521,Google Phone,1,600.0,2019-11-22 16:33:00,790 4th St, Seattle,WA,98101 +281522,27in FHD Monitor,1,149.99,2019-11-30 22:24:00,935 Center St, Dallas,TX,75001 +281523,Apple Airpods Headphones,1,150.0,2019-11-07 18:16:00,511 Cherry St, San Francisco,CA,94016 +281524,Lightning Charging Cable,1,14.95,2019-11-02 06:08:00,872 Hickory St, Portland,ME,04101 +281525,Apple Airpods Headphones,1,150.0,2019-11-24 16:49:00,654 10th St, Boston,MA,02215 +281526,Wired Headphones,1,11.99,2019-11-16 19:57:00,712 Chestnut St, Los Angeles,CA,90001 +281527,Apple Airpods Headphones,1,150.0,2019-11-24 13:21:00,994 11th St, New York City,NY,10001 +281528,AA Batteries (4-pack),2,3.84,2019-11-07 12:53:00,489 River St, Dallas,TX,75001 +281529,AA Batteries (4-pack),2,3.84,2019-11-18 11:49:00,531 Lincoln St, Los Angeles,CA,90001 +281530,Apple Airpods Headphones,1,150.0,2019-11-16 13:37:00,164 4th St, Atlanta,GA,30301 +281531,Lightning Charging Cable,1,14.95,2019-11-08 08:39:00,659 6th St, New York City,NY,10001 +281532,Wired Headphones,1,11.99,2019-11-11 07:53:00,968 West St, San Francisco,CA,94016 +281533,Flatscreen TV,1,300.0,2019-11-24 13:02:00,489 Jackson St, Seattle,WA,98101 +281534,27in FHD Monitor,1,149.99,2019-11-09 20:18:00,836 11th St, Boston,MA,02215 +281535,Lightning Charging Cable,1,14.95,2019-11-07 18:51:00,152 Highland St, New York City,NY,10001 +281536,USB-C Charging Cable,1,11.95,2019-11-28 21:54:00,84 Church St, New York City,NY,10001 +281536,Wired Headphones,1,11.99,2019-11-28 21:54:00,84 Church St, New York City,NY,10001 +281537,USB-C Charging Cable,1,11.95,2019-11-13 17:41:00,307 2nd St, New York City,NY,10001 +281538,Macbook Pro Laptop,1,1700.0,2019-11-08 00:19:00,285 Johnson St, Seattle,WA,98101 +281539,Bose SoundSport Headphones,1,99.99,2019-11-11 10:42:00,608 12th St, Dallas,TX,75001 +281540,iPhone,1,700.0,2019-11-04 09:40:00,384 Chestnut St, Dallas,TX,75001 +281541,Apple Airpods Headphones,1,150.0,2019-11-29 22:08:00,767 Hill St, Boston,MA,02215 +281542,AAA Batteries (4-pack),1,2.99,2019-11-29 13:16:00,918 Cedar St, Dallas,TX,75001 +281543,USB-C Charging Cable,1,11.95,2019-11-29 21:53:00,72 Adams St, San Francisco,CA,94016 +281544,Wired Headphones,1,11.99,2019-11-23 17:44:00,460 Chestnut St, New York City,NY,10001 +281545,AA Batteries (4-pack),1,3.84,2019-11-16 10:56:00,67 6th St, Seattle,WA,98101 +281546,USB-C Charging Cable,1,11.95,2019-11-26 22:09:00,578 Walnut St, Atlanta,GA,30301 +281547,27in FHD Monitor,1,149.99,2019-11-26 10:47:00,916 Lake St, Austin,TX,73301 +281548,Wired Headphones,1,11.99,2019-11-12 18:08:00,982 West St, Dallas,TX,75001 +281549,USB-C Charging Cable,1,11.95,2019-11-17 22:14:00,613 Lake St, Boston,MA,02215 +281550,Lightning Charging Cable,2,14.95,2019-11-06 14:56:00,124 Elm St, San Francisco,CA,94016 +281551,Wired Headphones,1,11.99,2019-11-16 21:06:00,386 Highland St, Boston,MA,02215 +281552,USB-C Charging Cable,1,11.95,2019-11-19 13:01:00,407 4th St, San Francisco,CA,94016 +281553,27in 4K Gaming Monitor,1,389.99,2019-11-27 18:50:00,983 Washington St, New York City,NY,10001 +281554,AA Batteries (4-pack),1,3.84,2019-11-24 14:51:00,36 Jackson St, Los Angeles,CA,90001 +281555,iPhone,1,700.0,2019-11-28 19:09:00,529 Center St, Austin,TX,73301 +281556,USB-C Charging Cable,1,11.95,2019-11-24 16:45:00,68 Lincoln St, Seattle,WA,98101 +281557,Wired Headphones,1,11.99,2019-11-24 16:55:00,739 8th St, San Francisco,CA,94016 +281558,USB-C Charging Cable,1,11.95,2019-11-26 23:34:00,987 Lake St, Austin,TX,73301 +281559,AA Batteries (4-pack),1,3.84,2019-11-07 19:19:00,231 Lincoln St, San Francisco,CA,94016 +281560,AA Batteries (4-pack),1,3.84,2019-11-01 13:21:00,42 Hickory St, Dallas,TX,75001 +281561,USB-C Charging Cable,1,11.95,2019-11-02 11:40:00,340 Cherry St, New York City,NY,10001 +281562,20in Monitor,1,109.99,2019-11-12 14:33:00,673 Meadow St, New York City,NY,10001 +281563,27in 4K Gaming Monitor,1,389.99,2019-11-29 07:34:00,983 12th St, Los Angeles,CA,90001 +281564,USB-C Charging Cable,1,11.95,2019-11-12 09:10:00,708 Lincoln St, San Francisco,CA,94016 +281565,Wired Headphones,1,11.99,2019-11-10 08:14:00,337 11th St, New York City,NY,10001 +281566,Wired Headphones,1,11.99,2019-11-18 15:43:00,446 West St, San Francisco,CA,94016 +281567,Lightning Charging Cable,1,14.95,2019-11-13 20:18:00,812 Pine St, Atlanta,GA,30301 +281568,AAA Batteries (4-pack),1,2.99,2019-11-12 14:26:00,724 Adams St, Los Angeles,CA,90001 +281569,Bose SoundSport Headphones,1,99.99,2019-11-14 09:52:00,991 11th St, Seattle,WA,98101 +281570,Bose SoundSport Headphones,1,99.99,2019-11-19 19:33:00,447 Pine St, Portland,OR,97035 +281571,USB-C Charging Cable,1,11.95,2019-11-02 18:02:00,146 7th St, Austin,TX,73301 +281572,27in 4K Gaming Monitor,1,389.99,2019-11-30 22:38:00,263 Wilson St, Boston,MA,02215 +281573,Lightning Charging Cable,1,14.95,2019-11-28 22:33:00,112 Washington St, San Francisco,CA,94016 +281574,20in Monitor,1,109.99,2019-11-21 09:37:00,336 Maple St, New York City,NY,10001 +281575,34in Ultrawide Monitor,1,379.99,2019-11-04 13:14:00,919 Meadow St, Seattle,WA,98101 +281576,Bose SoundSport Headphones,1,99.99,2019-11-02 12:21:00,739 Johnson St, Boston,MA,02215 +281577,AAA Batteries (4-pack),2,2.99,2019-11-03 19:25:00,95 Lakeview St, Los Angeles,CA,90001 +281578,AAA Batteries (4-pack),3,2.99,2019-11-13 16:21:00,825 Lake St, Boston,MA,02215 +281579,AAA Batteries (4-pack),1,2.99,2019-11-05 15:56:00,350 Jefferson St, San Francisco,CA,94016 +281580,Apple Airpods Headphones,1,150.0,2019-11-22 13:50:00,852 2nd St, Atlanta,GA,30301 +281581,Wired Headphones,1,11.99,2019-11-04 20:11:00,819 5th St, New York City,NY,10001 +281582,iPhone,1,700.0,2019-11-02 13:14:00,185 Center St, New York City,NY,10001 +281583,Apple Airpods Headphones,1,150.0,2019-11-14 12:59:00,128 Cherry St, Los Angeles,CA,90001 +281584,Wired Headphones,3,11.99,2019-11-21 19:39:00,444 11th St, Portland,ME,04101 +281585,USB-C Charging Cable,1,11.95,2019-11-06 16:19:00,614 Dogwood St, New York City,NY,10001 +281586,AAA Batteries (4-pack),4,2.99,2019-11-08 20:57:00,779 Forest St, Austin,TX,73301 +281587,20in Monitor,1,109.99,2019-11-10 15:10:00,107 River St, Portland,OR,97035 +281588,iPhone,1,700.0,2019-11-25 17:36:00,826 Maple St, Atlanta,GA,30301 +281589,Bose SoundSport Headphones,1,99.99,2019-11-20 22:35:00,660 Elm St, San Francisco,CA,94016 +281590,iPhone,1,700.0,2019-11-13 06:01:00,315 North St, Boston,MA,02215 +281590,Wired Headphones,1,11.99,2019-11-13 06:01:00,315 North St, Boston,MA,02215 +281591,USB-C Charging Cable,1,11.95,2019-11-23 16:19:00,120 Wilson St, San Francisco,CA,94016 +281592,AA Batteries (4-pack),1,3.84,2019-11-13 11:57:00,688 5th St, New York City,NY,10001 +281593,Apple Airpods Headphones,1,150.0,2019-11-21 23:04:00,270 Hill St, Boston,MA,02215 +281594,Apple Airpods Headphones,1,150.0,2019-11-18 09:44:00,255 Dogwood St, New York City,NY,10001 +281595,Wired Headphones,2,11.99,2019-11-08 08:01:00,904 Pine St, New York City,NY,10001 +281596,Bose SoundSport Headphones,1,99.99,2019-11-02 14:55:00,759 8th St, Austin,TX,73301 +281597,AA Batteries (4-pack),1,3.84,2019-11-30 17:26:00,511 Main St, New York City,NY,10001 +281598,ThinkPad Laptop,1,999.99,2019-11-07 14:06:00,700 Wilson St, Atlanta,GA,30301 +281599,AAA Batteries (4-pack),1,2.99,2019-11-15 11:34:00,856 Adams St, Boston,MA,02215 +281600,Wired Headphones,1,11.99,2019-11-22 11:22:00,514 Johnson St, San Francisco,CA,94016 +281601,ThinkPad Laptop,1,999.99,2019-11-11 17:22:00,315 Adams St, San Francisco,CA,94016 +281602,Google Phone,1,600.0,2019-11-23 18:12:00,869 Jefferson St, San Francisco,CA,94016 +281603,Apple Airpods Headphones,1,150.0,2019-11-29 13:34:00,93 South St, San Francisco,CA,94016 +281604,34in Ultrawide Monitor,1,379.99,2019-11-08 19:35:00,148 Lake St, San Francisco,CA,94016 +281605,Apple Airpods Headphones,1,150.0,2019-11-15 01:29:00,578 Lincoln St, San Francisco,CA,94016 +281606,Bose SoundSport Headphones,1,99.99,2019-11-14 12:25:00,120 North St, Los Angeles,CA,90001 +281607,USB-C Charging Cable,1,11.95,2019-11-05 18:40:00,905 Center St, San Francisco,CA,94016 +281608,Apple Airpods Headphones,1,150.0,2019-11-17 12:22:00,690 Washington St, San Francisco,CA,94016 +281609,Google Phone,1,600.0,2019-11-21 17:34:00,565 Main St, Los Angeles,CA,90001 +281610,Lightning Charging Cable,1,14.95,2019-11-06 09:38:00,403 11th St, Boston,MA,02215 +281611,AAA Batteries (4-pack),1,2.99,2019-11-30 12:24:00,638 1st St, Los Angeles,CA,90001 +281612,Apple Airpods Headphones,1,150.0,2019-11-13 19:50:00,21 Sunset St, San Francisco,CA,94016 +281613,Wired Headphones,1,11.99,2019-11-05 07:57:00,724 6th St, San Francisco,CA,94016 +281614,USB-C Charging Cable,1,11.95,2019-11-10 17:16:00,977 Adams St, Los Angeles,CA,90001 +281615,LG Dryer,1,600.0,2019-11-20 16:27:00,982 Spruce St, Dallas,TX,75001 +281616,27in FHD Monitor,1,149.99,2019-11-17 14:46:00,696 5th St, Austin,TX,73301 +281617,20in Monitor,1,109.99,2019-11-02 17:40:00,181 Lakeview St, Dallas,TX,75001 +281618,AAA Batteries (4-pack),1,2.99,2019-11-14 09:54:00,729 Washington St, Austin,TX,73301 +281619,AA Batteries (4-pack),1,3.84,2019-11-04 08:33:00,158 South St, New York City,NY,10001 +281620,Lightning Charging Cable,1,14.95,2019-11-08 12:03:00,818 River St, San Francisco,CA,94016 +281621,Lightning Charging Cable,1,14.95,2019-11-30 16:51:00,568 Elm St, Boston,MA,02215 +281622,Lightning Charging Cable,1,14.95,2019-11-18 14:20:00,294 2nd St, Los Angeles,CA,90001 +281623,Macbook Pro Laptop,1,1700.0,2019-11-04 08:22:00,969 Wilson St, Dallas,TX,75001 +281624,ThinkPad Laptop,1,999.99,2019-11-18 11:16:00,640 Lincoln St, San Francisco,CA,94016 +281625,Google Phone,1,600.0,2019-11-14 02:17:00,774 Pine St, Boston,MA,02215 +281626,20in Monitor,1,109.99,2019-11-13 20:25:00,122 Walnut St, San Francisco,CA,94016 +281627,USB-C Charging Cable,1,11.95,2019-11-19 10:46:00,108 Johnson St, Boston,MA,02215 +281628,Lightning Charging Cable,1,14.95,2019-11-19 21:42:00,427 14th St, San Francisco,CA,94016 +281629,Lightning Charging Cable,1,14.95,2019-11-02 22:57:00,981 Jackson St, Portland,OR,97035 +281630,ThinkPad Laptop,1,999.99,2019-11-21 19:55:00,924 1st St, Austin,TX,73301 +281631,AAA Batteries (4-pack),1,2.99,2019-11-16 14:22:00,868 Chestnut St, Los Angeles,CA,90001 +281632,Lightning Charging Cable,1,14.95,2019-11-03 13:20:00,172 Hill St, San Francisco,CA,94016 +281633,27in FHD Monitor,1,149.99,2019-11-17 12:31:00,968 2nd St, San Francisco,CA,94016 +281634,AA Batteries (4-pack),2,3.84,2019-11-14 11:33:00,934 4th St, Los Angeles,CA,90001 +281635,iPhone,1,700.0,2019-11-13 14:40:00,505 Adams St, San Francisco,CA,94016 +281635,Lightning Charging Cable,1,14.95,2019-11-13 14:40:00,505 Adams St, San Francisco,CA,94016 +281636,AA Batteries (4-pack),1,3.84,2019-11-09 17:07:00,926 Wilson St, New York City,NY,10001 +281637,AA Batteries (4-pack),1,3.84,2019-11-23 13:09:00,251 12th St, San Francisco,CA,94016 +281638,USB-C Charging Cable,1,11.95,2019-11-10 20:23:00,310 5th St, Los Angeles,CA,90001 +281639,AAA Batteries (4-pack),1,2.99,2019-11-27 19:55:00,694 Lincoln St, Seattle,WA,98101 +281640,Lightning Charging Cable,1,14.95,2019-11-19 07:40:00,140 Ridge St, Los Angeles,CA,90001 +281641,Lightning Charging Cable,1,14.95,2019-11-08 12:52:00,809 Jackson St, Boston,MA,02215 +281642,Macbook Pro Laptop,1,1700.0,2019-11-28 22:30:00,902 North St, Dallas,TX,75001 +281643,AA Batteries (4-pack),1,3.84,2019-11-10 21:18:00,933 Lincoln St, San Francisco,CA,94016 +281644,Lightning Charging Cable,1,14.95,2019-11-02 15:46:00,501 12th St, Seattle,WA,98101 +281645,Google Phone,1,600.0,2019-11-08 12:01:00,750 1st St, San Francisco,CA,94016 +281646,Bose SoundSport Headphones,1,99.99,2019-11-16 11:00:00,931 Church St, Dallas,TX,75001 +281647,Lightning Charging Cable,1,14.95,2019-11-30 20:50:00,503 13th St, Dallas,TX,75001 +281648,AAA Batteries (4-pack),1,2.99,2019-11-07 17:50:00,739 6th St, San Francisco,CA,94016 +281649,AAA Batteries (4-pack),1,2.99,2019-11-18 07:29:00,210 Lincoln St, Seattle,WA,98101 +281649,Apple Airpods Headphones,1,150.0,2019-11-18 07:29:00,210 Lincoln St, Seattle,WA,98101 +281650,AA Batteries (4-pack),1,3.84,2019-11-20 13:02:00,784 Walnut St, San Francisco,CA,94016 +281651,Wired Headphones,1,11.99,2019-11-20 18:19:00,390 West St, Boston,MA,02215 +281652,Google Phone,1,600.0,2019-11-10 11:02:00,44 West St, San Francisco,CA,94016 +281653,27in FHD Monitor,1,149.99,2019-11-24 08:44:00,289 6th St, Los Angeles,CA,90001 +281654,USB-C Charging Cable,1,11.95,2019-11-05 15:12:00,154 River St, New York City,NY,10001 +281655,34in Ultrawide Monitor,1,379.99,2019-11-17 17:47:00,933 Johnson St, Seattle,WA,98101 +281656,USB-C Charging Cable,1,11.95,2019-11-05 10:21:00,971 Jefferson St, Los Angeles,CA,90001 +281657,20in Monitor,1,109.99,2019-11-16 11:41:00,791 Madison St, New York City,NY,10001 +281658,AAA Batteries (4-pack),2,2.99,2019-11-18 14:29:00,827 2nd St, Dallas,TX,75001 +281659,Lightning Charging Cable,1,14.95,2019-11-28 15:41:00,795 Cherry St, New York City,NY,10001 +281660,27in FHD Monitor,1,149.99,2019-11-26 09:26:00,575 9th St, San Francisco,CA,94016 +281661,27in FHD Monitor,1,149.99,2019-11-09 13:58:00,166 Highland St, San Francisco,CA,94016 +281662,Bose SoundSport Headphones,1,99.99,2019-11-12 14:06:00,171 6th St, Dallas,TX,75001 +281663,Macbook Pro Laptop,1,1700.0,2019-11-08 17:58:00,271 North St, New York City,NY,10001 +281664,AAA Batteries (4-pack),1,2.99,2019-11-15 16:46:00,13 Sunset St, New York City,NY,10001 +281665,Bose SoundSport Headphones,1,99.99,2019-11-07 14:24:00,517 Cherry St, Seattle,WA,98101 +281666,AA Batteries (4-pack),1,3.84,2019-11-28 08:59:00,596 Jackson St, Atlanta,GA,30301 +281667,27in 4K Gaming Monitor,1,389.99,2019-11-04 17:57:00,5 5th St, San Francisco,CA,94016 +281668,AA Batteries (4-pack),1,3.84,2019-11-22 19:35:00,11 13th St, New York City,NY,10001 +281669,Apple Airpods Headphones,1,150.0,2019-11-18 13:39:00,322 Church St, Austin,TX,73301 +281670,iPhone,1,700.0,2019-11-18 11:25:00,80 Washington St, New York City,NY,10001 +281671,Apple Airpods Headphones,1,150.0,2019-11-19 20:47:00,523 Dogwood St, New York City,NY,10001 +281672,iPhone,1,700.0,2019-11-12 03:18:00,780 Walnut St, San Francisco,CA,94016 +281672,Lightning Charging Cable,1,14.95,2019-11-12 03:18:00,780 Walnut St, San Francisco,CA,94016 +281672,Wired Headphones,1,11.99,2019-11-12 03:18:00,780 Walnut St, San Francisco,CA,94016 +281673,USB-C Charging Cable,1,11.95,2019-11-06 16:48:00,982 Hill St, Los Angeles,CA,90001 +281674,Google Phone,1,600.0,2019-11-19 15:08:00,822 8th St, Portland,ME,04101 +281675,AAA Batteries (4-pack),1,2.99,2019-11-15 16:13:00,733 Lincoln St, Seattle,WA,98101 +281676,Google Phone,1,600.0,2019-11-16 13:23:00,418 14th St, Portland,OR,97035 +281676,USB-C Charging Cable,1,11.95,2019-11-16 13:23:00,418 14th St, Portland,OR,97035 +281677,Apple Airpods Headphones,1,150.0,2019-11-06 11:57:00,994 Spruce St, Portland,OR,97035 +281678,Google Phone,1,600.0,2019-11-29 08:21:00,947 Wilson St, San Francisco,CA,94016 +281679,Lightning Charging Cable,1,14.95,2019-11-03 17:48:00,485 Jackson St, San Francisco,CA,94016 +281680,iPhone,1,700.0,2019-11-20 21:26:00,319 Jefferson St, Portland,ME,04101 +281680,Lightning Charging Cable,1,14.95,2019-11-20 21:26:00,319 Jefferson St, Portland,ME,04101 +281681,AA Batteries (4-pack),1,3.84,2019-11-18 12:03:00,100 2nd St, Seattle,WA,98101 +281682,Apple Airpods Headphones,1,150.0,2019-11-11 09:27:00,793 9th St, New York City,NY,10001 +281683,AAA Batteries (4-pack),2,2.99,2019-11-06 01:37:00,508 8th St, New York City,NY,10001 +281684,27in 4K Gaming Monitor,1,389.99,2019-11-24 20:09:00,246 Madison St, New York City,NY,10001 +281685,27in 4K Gaming Monitor,1,389.99,2019-11-06 14:23:00,387 Walnut St, Dallas,TX,75001 +281686,AAA Batteries (4-pack),1,2.99,2019-11-10 19:15:00,17 11th St, Seattle,WA,98101 +281687,27in 4K Gaming Monitor,1,389.99,2019-11-15 20:35:00,428 Cherry St, San Francisco,CA,94016 +281688,Wired Headphones,1,11.99,2019-11-13 21:59:00,912 Park St, San Francisco,CA,94016 +281689,Lightning Charging Cable,3,14.95,2019-11-11 09:42:00,519 Hickory St, Portland,OR,97035 +281690,USB-C Charging Cable,1,11.95,2019-11-04 22:53:00,615 4th St, New York City,NY,10001 +281690,Wired Headphones,1,11.99,2019-11-04 22:53:00,615 4th St, New York City,NY,10001 +281691,20in Monitor,1,109.99,2019-11-09 14:12:00,220 Wilson St, San Francisco,CA,94016 +281692,iPhone,1,700.0,2019-11-20 11:24:00,739 8th St, New York City,NY,10001 +281692,Lightning Charging Cable,1,14.95,2019-11-20 11:24:00,739 8th St, New York City,NY,10001 +281693,Wired Headphones,1,11.99,2019-11-15 23:06:00,736 North St, San Francisco,CA,94016 +281694,20in Monitor,1,109.99,2019-11-13 12:32:00,369 Wilson St, Seattle,WA,98101 +281695,Flatscreen TV,1,300.0,2019-11-29 00:34:00,757 Jackson St, Boston,MA,02215 +281696,Wired Headphones,1,11.99,2019-11-07 12:52:00,867 Madison St, San Francisco,CA,94016 +281697,AA Batteries (4-pack),1,3.84,2019-11-27 15:18:00,694 Lakeview St, San Francisco,CA,94016 +281698,Bose SoundSport Headphones,1,99.99,2019-11-20 15:55:00,544 Willow St, Dallas,TX,75001 +281699,20in Monitor,1,109.99,2019-11-18 10:58:00,450 Hickory St, Dallas,TX,75001 +281700,Vareebadd Phone,1,400.0,2019-11-27 20:43:00,27 Elm St, San Francisco,CA,94016 +281700,USB-C Charging Cable,1,11.95,2019-11-27 20:43:00,27 Elm St, San Francisco,CA,94016 +281701,AAA Batteries (4-pack),1,2.99,2019-11-12 06:40:00,466 Sunset St, Atlanta,GA,30301 +281702,Google Phone,1,600.0,2019-11-19 17:57:00,616 Church St, Boston,MA,02215 +281703,Apple Airpods Headphones,1,150.0,2019-11-05 13:22:00,531 Lake St, Los Angeles,CA,90001 +281704,Wired Headphones,1,11.99,2019-11-11 11:36:00,573 Walnut St, Boston,MA,02215 +281705,AA Batteries (4-pack),1,3.84,2019-11-30 21:39:00,125 Madison St, Austin,TX,73301 +281706,Lightning Charging Cable,1,14.95,2019-11-26 17:27:00,187 Dogwood St, Los Angeles,CA,90001 +281707,iPhone,1,700.0,2019-11-18 21:57:00,721 Spruce St, San Francisco,CA,94016 +281708,ThinkPad Laptop,1,999.99,2019-11-22 12:49:00,260 Wilson St, Atlanta,GA,30301 +281709,Wired Headphones,1,11.99,2019-11-15 08:57:00,513 Lakeview St, Boston,MA,02215 +281710,Bose SoundSport Headphones,1,99.99,2019-11-21 18:10:00,732 Lake St, San Francisco,CA,94016 +281711,Google Phone,1,600.0,2019-11-27 15:58:00,574 4th St, San Francisco,CA,94016 +281712,Apple Airpods Headphones,1,150.0,2019-11-18 12:13:00,961 Hill St, Dallas,TX,75001 +281713,AAA Batteries (4-pack),1,2.99,2019-11-11 18:48:00,87 10th St, San Francisco,CA,94016 +281714,Lightning Charging Cable,1,14.95,2019-11-16 21:43:00,942 North St, New York City,NY,10001 +281715,Wired Headphones,1,11.99,2019-11-24 12:38:00,32 Center St, Boston,MA,02215 +281716,Flatscreen TV,1,300.0,2019-11-05 22:41:00,813 12th St, San Francisco,CA,94016 +281717,iPhone,1,700.0,2019-11-22 12:17:00,831 Wilson St, San Francisco,CA,94016 +281717,Apple Airpods Headphones,1,150.0,2019-11-22 12:17:00,831 Wilson St, San Francisco,CA,94016 +281718,AA Batteries (4-pack),1,3.84,2019-11-23 13:09:00,443 Meadow St, Austin,TX,73301 +281719,Wired Headphones,1,11.99,2019-11-12 08:45:00,42 11th St, New York City,NY,10001 +281720,AAA Batteries (4-pack),1,2.99,2019-11-26 14:39:00,90 Highland St, Boston,MA,02215 +281721,27in 4K Gaming Monitor,1,389.99,2019-11-30 09:12:00,591 6th St, Boston,MA,02215 +281722,AA Batteries (4-pack),1,3.84,2019-11-09 17:42:00,964 Johnson St, San Francisco,CA,94016 +281723,20in Monitor,1,109.99,2019-11-16 17:34:00,875 10th St, Los Angeles,CA,90001 +281724,ThinkPad Laptop,1,999.99,2019-11-15 17:24:00,290 Hill St, Los Angeles,CA,90001 +281725,Apple Airpods Headphones,1,150.0,2019-11-08 21:08:00,443 Hill St, San Francisco,CA,94016 +281726,AAA Batteries (4-pack),1,2.99,2019-11-22 11:37:00,772 Cherry St, Los Angeles,CA,90001 +281727,Flatscreen TV,1,300.0,2019-11-21 17:31:00,249 Lakeview St, San Francisco,CA,94016 +281728,Google Phone,1,600.0,2019-11-24 11:07:00,564 Sunset St, Seattle,WA,98101 +281728,USB-C Charging Cable,1,11.95,2019-11-24 11:07:00,564 Sunset St, Seattle,WA,98101 +281728,Wired Headphones,1,11.99,2019-11-24 11:07:00,564 Sunset St, Seattle,WA,98101 +281729,34in Ultrawide Monitor,1,379.99,2019-11-05 13:44:00,851 4th St, Los Angeles,CA,90001 +281730,Lightning Charging Cable,1,14.95,2019-11-05 18:35:00,623 Spruce St, New York City,NY,10001 +281731,Wired Headphones,1,11.99,2019-11-11 11:37:00,910 Jackson St, Dallas,TX,75001 +281732,USB-C Charging Cable,1,11.95,2019-11-07 11:28:00,195 9th St, Boston,MA,02215 +281733,27in FHD Monitor,1,149.99,2019-11-20 19:36:00,470 North St, Boston,MA,02215 +281734,Apple Airpods Headphones,1,150.0,2019-11-21 18:21:00,498 Sunset St, San Francisco,CA,94016 +281735,Wired Headphones,1,11.99,2019-11-04 16:40:00,176 Maple St, Portland,OR,97035 +281736,AAA Batteries (4-pack),2,2.99,2019-11-08 20:40:00,19 Lake St, Los Angeles,CA,90001 +281737,Lightning Charging Cable,1,14.95,2019-11-08 11:27:00,315 River St, New York City,NY,10001 +281738,34in Ultrawide Monitor,1,379.99,2019-11-29 11:42:00,288 12th St, Portland,OR,97035 +281739,AA Batteries (4-pack),1,3.84,2019-11-08 20:57:00,772 Madison St, San Francisco,CA,94016 +281740,27in FHD Monitor,1,149.99,2019-11-26 11:42:00,926 Main St, Austin,TX,73301 +281741,Wired Headphones,1,11.99,2019-11-11 22:37:00,791 River St, San Francisco,CA,94016 +281742,AAA Batteries (4-pack),1,2.99,2019-11-27 10:46:00,269 Pine St, Austin,TX,73301 +281743,Wired Headphones,1,11.99,2019-11-23 13:35:00,384 Center St, Los Angeles,CA,90001 +281743,AA Batteries (4-pack),1,3.84,2019-11-23 13:35:00,384 Center St, Los Angeles,CA,90001 +281744,Bose SoundSport Headphones,1,99.99,2019-11-29 20:16:00,229 2nd St, Dallas,TX,75001 +281745,AAA Batteries (4-pack),2,2.99,2019-11-11 09:31:00,768 8th St, Seattle,WA,98101 +281746,ThinkPad Laptop,1,999.99,2019-11-14 21:54:00,983 Spruce St, New York City,NY,10001 +281747,Lightning Charging Cable,1,14.95,2019-11-04 12:48:00,346 Main St, Portland,OR,97035 +281748,20in Monitor,1,109.99,2019-11-21 18:17:00,519 Adams St, Portland,OR,97035 +281749,Wired Headphones,2,11.99,2019-11-30 16:30:00,938 11th St, San Francisco,CA,94016 +281750,AA Batteries (4-pack),1,3.84,2019-11-20 08:31:00,716 Dogwood St, San Francisco,CA,94016 +281751,AAA Batteries (4-pack),1,2.99,2019-11-13 18:41:00,349 1st St, Portland,OR,97035 +281752,Google Phone,1,600.0,2019-11-29 01:16:00,615 Church St, Boston,MA,02215 +281753,Wired Headphones,1,11.99,2019-11-17 10:46:00,524 Sunset St, Dallas,TX,75001 +281754,27in FHD Monitor,2,149.99,2019-11-17 13:15:00,325 Main St, Los Angeles,CA,90001 +281755,Lightning Charging Cable,2,14.95,2019-11-24 19:48:00,163 1st St, Los Angeles,CA,90001 +281756,Bose SoundSport Headphones,1,99.99,2019-11-30 09:20:00,794 10th St, New York City,NY,10001 +281757,Wired Headphones,1,11.99,2019-11-10 21:16:00,625 10th St, San Francisco,CA,94016 +281758,AAA Batteries (4-pack),2,2.99,2019-11-15 15:28:00,117 6th St, Boston,MA,02215 +281759,USB-C Charging Cable,1,11.95,2019-11-13 06:18:00,690 8th St, Portland,OR,97035 +281760,34in Ultrawide Monitor,1,379.99,2019-11-08 21:21:00,433 Dogwood St, Seattle,WA,98101 +281761,Macbook Pro Laptop,1,1700.0,2019-11-30 18:36:00,966 Washington St, Austin,TX,73301 +281762,Wired Headphones,1,11.99,2019-11-11 20:12:00,456 West St, Dallas,TX,75001 +281763,Lightning Charging Cable,1,14.95,2019-11-21 11:50:00,660 Center St, New York City,NY,10001 +281764,20in Monitor,1,109.99,2019-11-24 21:45:00,813 8th St, Austin,TX,73301 +281765,Lightning Charging Cable,1,14.95,2019-11-20 12:07:00,771 Cedar St, San Francisco,CA,94016 +281766,27in 4K Gaming Monitor,1,389.99,2019-11-02 20:20:00,472 7th St, Seattle,WA,98101 +281767,AAA Batteries (4-pack),2,2.99,2019-11-09 11:45:00,61 Jackson St, San Francisco,CA,94016 +281768,Wired Headphones,1,11.99,2019-11-22 20:21:00,457 Park St, San Francisco,CA,94016 +281769,Flatscreen TV,1,300.0,2019-11-05 22:37:00,966 Willow St, Atlanta,GA,30301 +281770,AAA Batteries (4-pack),2,2.99,2019-11-16 11:30:00,83 Cherry St, Boston,MA,02215 +281771,AA Batteries (4-pack),1,3.84,2019-11-17 11:52:00,786 Dogwood St, New York City,NY,10001 +281772,Lightning Charging Cable,1,14.95,2019-11-10 12:54:00,829 4th St, Los Angeles,CA,90001 +281773,Apple Airpods Headphones,1,150.0,2019-11-24 18:39:00,627 Elm St, Los Angeles,CA,90001 +281774,Lightning Charging Cable,1,14.95,2019-11-05 11:08:00,813 2nd St, Seattle,WA,98101 +281775,34in Ultrawide Monitor,1,379.99,2019-11-26 17:47:00,936 9th St, San Francisco,CA,94016 +281776,AA Batteries (4-pack),2,3.84,2019-11-15 00:00:00,674 Johnson St, San Francisco,CA,94016 +281777,USB-C Charging Cable,1,11.95,2019-11-26 14:52:00,204 Center St, San Francisco,CA,94016 +281778,iPhone,1,700.0,2019-11-15 09:48:00,740 Forest St, New York City,NY,10001 +281779,Apple Airpods Headphones,1,150.0,2019-11-16 07:43:00,977 Washington St, San Francisco,CA,94016 +281780,USB-C Charging Cable,1,11.95,2019-11-05 20:59:00,102 9th St, San Francisco,CA,94016 +281781,Flatscreen TV,1,300.0,2019-11-15 12:08:00,774 Spruce St, Los Angeles,CA,90001 +281782,AAA Batteries (4-pack),1,2.99,2019-11-18 13:48:00,180 Chestnut St, San Francisco,CA,94016 +281783,Flatscreen TV,1,300.0,2019-11-05 01:31:00,514 Walnut St, Los Angeles,CA,90001 +281784,Flatscreen TV,1,300.0,2019-11-17 07:26:00,927 Church St, Boston,MA,02215 +281785,AAA Batteries (4-pack),1,2.99,2019-11-18 13:14:00,339 Park St, Austin,TX,73301 +281786,Apple Airpods Headphones,1,150.0,2019-11-29 19:59:00,433 Dogwood St, Boston,MA,02215 +281787,Lightning Charging Cable,1,14.95,2019-11-30 08:28:00,69 Ridge St, Los Angeles,CA,90001 +281788,AA Batteries (4-pack),3,3.84,2019-11-11 12:41:00,864 8th St, Boston,MA,02215 +281789,AAA Batteries (4-pack),3,2.99,2019-11-04 16:14:00,824 Chestnut St, San Francisco,CA,94016 +281790,AAA Batteries (4-pack),1,2.99,2019-11-03 15:25:00,441 Wilson St, Los Angeles,CA,90001 +281791,LG Dryer,1,600.0,2019-11-06 19:48:00,179 Cherry St, Dallas,TX,75001 +281792,Google Phone,1,600.0,2019-11-17 20:24:00,806 River St, Los Angeles,CA,90001 +281793,AAA Batteries (4-pack),1,2.99,2019-11-21 18:43:00,890 Cedar St, San Francisco,CA,94016 +281794,USB-C Charging Cable,1,11.95,2019-11-16 13:16:00,476 9th St, Boston,MA,02215 +281795,AA Batteries (4-pack),1,3.84,2019-11-28 09:35:00,572 14th St, Boston,MA,02215 +281796,USB-C Charging Cable,1,11.95,2019-11-26 18:10:00,370 Jackson St, Los Angeles,CA,90001 +281797,Wired Headphones,1,11.99,2019-11-09 09:26:00,40 13th St, Los Angeles,CA,90001 +281798,AA Batteries (4-pack),1,3.84,2019-11-02 18:59:00,947 Adams St, San Francisco,CA,94016 +281799,AAA Batteries (4-pack),1,2.99,2019-11-11 17:33:00,565 Pine St, San Francisco,CA,94016 +281800,AAA Batteries (4-pack),2,2.99,2019-11-05 15:56:00,829 Adams St, Portland,OR,97035 +281801,AA Batteries (4-pack),1,3.84,2019-11-28 10:42:00,641 2nd St, San Francisco,CA,94016 +281802,AA Batteries (4-pack),3,3.84,2019-11-26 18:34:00,519 Maple St, Portland,OR,97035 +281803,20in Monitor,1,109.99,2019-11-11 20:37:00,793 Dogwood St, Los Angeles,CA,90001 +281804,Lightning Charging Cable,1,14.95,2019-11-13 11:54:00,421 Center St, San Francisco,CA,94016 +281805,Apple Airpods Headphones,1,150.0,2019-11-11 16:21:00,933 Lincoln St, Seattle,WA,98101 +281806,Apple Airpods Headphones,1,150.0,2019-11-30 07:19:00,543 Adams St, San Francisco,CA,94016 +281807,USB-C Charging Cable,1,11.95,2019-11-11 20:55:00,656 Cherry St, New York City,NY,10001 +281808,27in 4K Gaming Monitor,1,389.99,2019-11-03 17:56:00,917 Park St, San Francisco,CA,94016 +281809,27in 4K Gaming Monitor,1,389.99,2019-11-17 21:32:00,539 Chestnut St, New York City,NY,10001 +281810,Lightning Charging Cable,1,14.95,2019-11-09 15:50:00,672 Sunset St, Austin,TX,73301 +281811,Lightning Charging Cable,1,14.95,2019-11-07 17:05:00,143 9th St, San Francisco,CA,94016 +281812,AA Batteries (4-pack),1,3.84,2019-11-07 19:50:00,312 Cedar St, Austin,TX,73301 +281813,AAA Batteries (4-pack),2,2.99,2019-11-09 14:35:00,223 North St, Los Angeles,CA,90001 +281814,Bose SoundSport Headphones,1,99.99,2019-11-13 15:36:00,636 Lincoln St, San Francisco,CA,94016 +281815,Macbook Pro Laptop,1,1700.0,2019-11-20 10:36:00,576 Jefferson St, Boston,MA,02215 +281816,Bose SoundSport Headphones,1,99.99,2019-11-26 09:40:00,764 8th St, Atlanta,GA,30301 +281817,Wired Headphones,1,11.99,2019-11-13 00:10:00,392 9th St, Boston,MA,02215 +281818,Wired Headphones,2,11.99,2019-11-03 16:34:00,201 Cedar St, New York City,NY,10001 +281819,AAA Batteries (4-pack),2,2.99,2019-11-20 21:55:00,191 Ridge St, Los Angeles,CA,90001 +281820,USB-C Charging Cable,1,11.95,2019-11-15 13:59:00,110 Church St, Dallas,TX,75001 +281821,USB-C Charging Cable,1,11.95,2019-11-25 23:05:00,231 Hickory St, Seattle,WA,98101 +281822,Apple Airpods Headphones,1,150.0,2019-11-18 23:34:00,185 Lake St, New York City,NY,10001 +281823,27in 4K Gaming Monitor,1,389.99,2019-11-04 21:30:00,722 12th St, New York City,NY,10001 +281824,iPhone,1,700.0,2019-11-29 17:28:00,119 Maple St, Dallas,TX,75001 +281825,27in FHD Monitor,1,149.99,2019-11-19 21:22:00,808 North St, Los Angeles,CA,90001 +281826,AA Batteries (4-pack),1,3.84,2019-11-27 17:31:00,487 Pine St, New York City,NY,10001 +281827,Lightning Charging Cable,2,14.95,2019-11-08 18:09:00,415 Highland St, Seattle,WA,98101 +281828,Lightning Charging Cable,1,14.95,2019-11-14 13:25:00,541 Maple St, Atlanta,GA,30301 +281829,AA Batteries (4-pack),1,3.84,2019-11-24 12:19:00,174 Maple St, Los Angeles,CA,90001 +281830,AAA Batteries (4-pack),2,2.99,2019-11-04 19:05:00,219 14th St, New York City,NY,10001 +281831,Wired Headphones,1,11.99,2019-11-20 19:55:00,662 11th St, Atlanta,GA,30301 +281832,Apple Airpods Headphones,1,150.0,2019-11-16 13:11:00,728 8th St, New York City,NY,10001 +281833,Lightning Charging Cable,1,14.95,2019-11-04 21:42:00,659 Spruce St, San Francisco,CA,94016 +281834,Lightning Charging Cable,1,14.95,2019-11-17 10:20:00,288 11th St, Boston,MA,02215 +281835,USB-C Charging Cable,2,11.95,2019-11-07 21:24:00,98 Lake St, Austin,TX,73301 +281836,USB-C Charging Cable,2,11.95,2019-11-25 12:35:00,23 Forest St, San Francisco,CA,94016 +281837,Wired Headphones,1,11.99,2019-11-04 07:57:00,303 Jackson St, New York City,NY,10001 +281838,USB-C Charging Cable,1,11.95,2019-11-13 23:53:00,832 Ridge St, San Francisco,CA,94016 +281839,Wired Headphones,1,11.99,2019-11-16 07:07:00,578 Hickory St, San Francisco,CA,94016 +281840,AAA Batteries (4-pack),1,2.99,2019-11-28 20:36:00,469 Main St, San Francisco,CA,94016 +281841,AAA Batteries (4-pack),1,2.99,2019-11-15 08:56:00,484 Chestnut St, Atlanta,GA,30301 +281842,AA Batteries (4-pack),2,3.84,2019-11-23 23:28:00,596 13th St, New York City,NY,10001 +281843,AA Batteries (4-pack),1,3.84,2019-11-09 18:59:00,98 West St, Dallas,TX,75001 +281844,AAA Batteries (4-pack),1,2.99,2019-11-08 10:41:00,822 11th St, San Francisco,CA,94016 +281845,AA Batteries (4-pack),2,3.84,2019-11-30 16:41:00,309 12th St, Seattle,WA,98101 +281846,Wired Headphones,2,11.99,2019-11-10 08:38:00,920 2nd St, Los Angeles,CA,90001 +281847,Lightning Charging Cable,1,14.95,2019-11-27 09:39:00,395 Lincoln St, San Francisco,CA,94016 +281848,USB-C Charging Cable,1,11.95,2019-11-23 13:58:00,72 Highland St, Atlanta,GA,30301 +281849,Bose SoundSport Headphones,1,99.99,2019-11-25 11:16:00,610 Hill St, Los Angeles,CA,90001 +281850,27in FHD Monitor,1,149.99,2019-11-05 06:42:00,423 Highland St, Atlanta,GA,30301 +281851,USB-C Charging Cable,1,11.95,2019-11-12 22:10:00,104 5th St, Los Angeles,CA,90001 +281852,Lightning Charging Cable,1,14.95,2019-11-09 07:03:00,362 South St, New York City,NY,10001 +281853,USB-C Charging Cable,1,11.95,2019-11-09 18:52:00,550 Lincoln St, New York City,NY,10001 +281854,20in Monitor,1,109.99,2019-11-17 21:00:00,678 13th St, Dallas,TX,75001 +281855,ThinkPad Laptop,1,999.99,2019-11-21 04:57:00,561 Adams St, San Francisco,CA,94016 +281856,27in 4K Gaming Monitor,1,389.99,2019-11-12 21:05:00,287 2nd St, Seattle,WA,98101 +281857,27in 4K Gaming Monitor,1,389.99,2019-11-17 01:19:00,256 13th St, Austin,TX,73301 +281858,20in Monitor,1,109.99,2019-11-29 16:15:00,848 West St, Portland,ME,04101 +281859,USB-C Charging Cable,2,11.95,2019-11-26 17:59:00,559 Main St, San Francisco,CA,94016 +281860,20in Monitor,1,109.99,2019-11-30 23:51:00,606 Meadow St, Boston,MA,02215 +281861,AA Batteries (4-pack),1,3.84,2019-11-07 09:10:00,417 Center St, New York City,NY,10001 +281862,AAA Batteries (4-pack),1,2.99,2019-11-08 14:08:00,476 9th St, Atlanta,GA,30301 +281863,iPhone,1,700.0,2019-11-12 21:00:00,361 Meadow St, San Francisco,CA,94016 +281864,Lightning Charging Cable,1,14.95,2019-11-04 15:00:00,447 West St, Los Angeles,CA,90001 +281865,USB-C Charging Cable,1,11.95,2019-11-09 18:20:00,926 Elm St, New York City,NY,10001 +281866,Google Phone,1,600.0,2019-11-03 14:45:00,450 Jackson St, New York City,NY,10001 +281867,27in 4K Gaming Monitor,1,389.99,2019-11-07 08:46:00,588 Forest St, Atlanta,GA,30301 +281868,Bose SoundSport Headphones,2,99.99,2019-11-02 21:43:00,396 11th St, Los Angeles,CA,90001 +281869,Bose SoundSport Headphones,1,99.99,2019-11-13 16:11:00,464 North St, Atlanta,GA,30301 +281870,Apple Airpods Headphones,1,150.0,2019-11-05 15:23:00,579 Jackson St, New York City,NY,10001 +281871,Macbook Pro Laptop,1,1700.0,2019-11-07 17:26:00,125 Sunset St, New York City,NY,10001 +281872,Wired Headphones,1,11.99,2019-11-01 11:23:00,353 Lake St, Boston,MA,02215 +281873,USB-C Charging Cable,1,11.95,2019-11-29 16:06:00,944 Jefferson St, San Francisco,CA,94016 +281874,Lightning Charging Cable,1,14.95,2019-11-12 07:18:00,404 13th St, San Francisco,CA,94016 +281875,Flatscreen TV,1,300.0,2019-11-18 16:35:00,159 Church St, Seattle,WA,98101 +281876,Apple Airpods Headphones,1,150.0,2019-11-25 11:42:00,336 South St, New York City,NY,10001 +281877,AAA Batteries (4-pack),2,2.99,2019-11-04 08:47:00,450 West St, New York City,NY,10001 +281878,Wired Headphones,1,11.99,2019-11-17 05:38:00,28 Spruce St, San Francisco,CA,94016 +281879,Apple Airpods Headphones,1,150.0,2019-11-25 20:49:00,572 Hill St, New York City,NY,10001 +281880,Lightning Charging Cable,1,14.95,2019-11-24 21:30:00,45 9th St, San Francisco,CA,94016 +281881,20in Monitor,1,109.99,2019-11-28 09:14:00,818 Elm St, San Francisco,CA,94016 +281882,20in Monitor,1,109.99,2019-11-13 13:49:00,982 Cherry St, Los Angeles,CA,90001 +281883,Apple Airpods Headphones,1,150.0,2019-11-06 08:44:00,975 Madison St, New York City,NY,10001 +281884,Macbook Pro Laptop,1,1700.0,2019-11-02 09:31:00,257 14th St, Dallas,TX,75001 +281885,AAA Batteries (4-pack),1,2.99,2019-11-03 23:24:00,858 4th St, San Francisco,CA,94016 +281886,USB-C Charging Cable,1,11.95,2019-11-16 16:19:00,791 Meadow St, Boston,MA,02215 +281887,AAA Batteries (4-pack),1,2.99,2019-11-22 11:45:00,343 Cedar St, Los Angeles,CA,90001 +281888,Flatscreen TV,1,300.0,2019-11-22 11:03:00,73 Jackson St, Portland,OR,97035 +281889,USB-C Charging Cable,1,11.95,2019-11-23 05:14:00,97 Ridge St, Seattle,WA,98101 +281890,LG Washing Machine,1,600.0,2019-11-16 01:01:00,46 Center St, Austin,TX,73301 +281891,AA Batteries (4-pack),3,3.84,2019-11-24 11:28:00,182 7th St, New York City,NY,10001 +281892,34in Ultrawide Monitor,1,379.99,2019-11-22 15:23:00,499 Jackson St, Portland,OR,97035 +281893,34in Ultrawide Monitor,1,379.99,2019-11-10 18:14:00,591 12th St, San Francisco,CA,94016 +281894,AAA Batteries (4-pack),1,2.99,2019-11-04 09:17:00,23 Washington St, Dallas,TX,75001 +281895,USB-C Charging Cable,1,11.95,2019-11-19 14:27:00,308 Washington St, New York City,NY,10001 +281896,AA Batteries (4-pack),4,3.84,2019-11-05 09:50:00,907 Hickory St, Boston,MA,02215 +281897,AAA Batteries (4-pack),1,2.99,2019-11-06 11:51:00,568 Elm St, New York City,NY,10001 +281898,Lightning Charging Cable,1,14.95,2019-11-17 15:28:00,909 North St, Seattle,WA,98101 +281899,AA Batteries (4-pack),3,3.84,2019-11-26 20:28:00,195 Washington St, Portland,OR,97035 +281900,AAA Batteries (4-pack),1,2.99,2019-11-02 18:51:00,130 Adams St, New York City,NY,10001 +281901,USB-C Charging Cable,1,11.95,2019-11-05 21:06:00,214 Lincoln St, Los Angeles,CA,90001 +281902,Bose SoundSport Headphones,1,99.99,2019-11-27 22:07:00,926 12th St, Los Angeles,CA,90001 +281903,AA Batteries (4-pack),1,3.84,2019-11-02 19:00:00,722 Lakeview St, Dallas,TX,75001 +281904,Apple Airpods Headphones,1,150.0,2019-11-30 11:01:00,621 Johnson St, New York City,NY,10001 +281905,LG Washing Machine,1,600.0,2019-11-03 20:03:00,897 12th St, Los Angeles,CA,90001 +281906,Flatscreen TV,1,300.0,2019-11-21 13:45:00,825 4th St, San Francisco,CA,94016 +281907,Lightning Charging Cable,1,14.95,2019-11-24 16:39:00,933 12th St, Los Angeles,CA,90001 +281908,27in FHD Monitor,1,149.99,2019-11-02 16:54:00,226 Chestnut St, San Francisco,CA,94016 +281909,Google Phone,1,600.0,2019-11-27 13:20:00,436 West St, San Francisco,CA,94016 +281910,Wired Headphones,1,11.99,2019-11-14 20:44:00,292 River St, Atlanta,GA,30301 +281911,Apple Airpods Headphones,1,150.0,2019-11-04 19:36:00,41 North St, Atlanta,GA,30301 +281912,Lightning Charging Cable,1,14.95,2019-11-11 22:33:00,450 Center St, New York City,NY,10001 +281913,Lightning Charging Cable,1,14.95,2019-11-29 16:24:00,930 Highland St, Los Angeles,CA,90001 +281914,34in Ultrawide Monitor,1,379.99,2019-11-30 21:30:00,78 Highland St, Atlanta,GA,30301 +281915,AAA Batteries (4-pack),1,2.99,2019-11-25 20:28:00,790 Main St, Los Angeles,CA,90001 +281916,AA Batteries (4-pack),1,3.84,2019-11-06 15:28:00,932 Hill St, Austin,TX,73301 +281917,Wired Headphones,1,11.99,2019-11-30 08:30:00,245 Elm St, San Francisco,CA,94016 +281918,Lightning Charging Cable,1,14.95,2019-11-30 11:02:00,427 Highland St, San Francisco,CA,94016 +281919,Wired Headphones,1,11.99,2019-11-27 11:35:00,881 Jefferson St, Portland,OR,97035 +281920,Apple Airpods Headphones,1,150.0,2019-11-14 15:11:00,468 Washington St, Austin,TX,73301 +281921,AA Batteries (4-pack),1,3.84,2019-11-27 10:05:00,343 Jackson St, Portland,OR,97035 +281922,Bose SoundSport Headphones,1,99.99,2019-11-07 14:34:00,873 Highland St, San Francisco,CA,94016 +281923,Flatscreen TV,1,300.0,2019-11-08 13:24:00,182 Willow St, Atlanta,GA,30301 +281924,AA Batteries (4-pack),1,3.84,2019-11-09 13:51:00,449 4th St, Boston,MA,02215 +281925,Lightning Charging Cable,2,14.95,2019-11-12 09:56:00,281 10th St, Seattle,WA,98101 +281926,Bose SoundSport Headphones,1,99.99,2019-11-19 06:51:00,574 Center St, Seattle,WA,98101 +281927,Bose SoundSport Headphones,1,99.99,2019-11-05 06:57:00,897 Adams St, Portland,OR,97035 +281928,USB-C Charging Cable,1,11.95,2019-11-02 20:45:00,874 Hickory St, Seattle,WA,98101 +281929,Lightning Charging Cable,1,14.95,2019-11-07 11:12:00,525 North St, San Francisco,CA,94016 +281930,Macbook Pro Laptop,1,1700.0,2019-11-07 14:56:00,503 11th St, San Francisco,CA,94016 +281931,Bose SoundSport Headphones,1,99.99,2019-11-22 17:28:00,336 12th St, Boston,MA,02215 +281932,27in 4K Gaming Monitor,1,389.99,2019-11-13 23:08:00,265 11th St, Boston,MA,02215 +281933,USB-C Charging Cable,1,11.95,2019-11-24 15:52:00,578 Cedar St, Boston,MA,02215 +281934,Lightning Charging Cable,1,14.95,2019-11-28 16:57:00,977 Willow St, Dallas,TX,75001 +281935,34in Ultrawide Monitor,1,379.99,2019-11-21 20:22:00,120 Lakeview St, Portland,OR,97035 +281936,AA Batteries (4-pack),2,3.84,2019-11-06 21:30:00,57 2nd St, Atlanta,GA,30301 +281937,Apple Airpods Headphones,1,150.0,2019-11-27 15:35:00,911 Willow St, San Francisco,CA,94016 +281938,AA Batteries (4-pack),2,3.84,2019-11-24 20:34:00,237 Cherry St, San Francisco,CA,94016 +281939,AAA Batteries (4-pack),1,2.99,2019-11-30 20:25:00,805 South St, Los Angeles,CA,90001 +281940,AAA Batteries (4-pack),1,2.99,2019-11-13 14:56:00,484 11th St, Seattle,WA,98101 +281941,Apple Airpods Headphones,1,150.0,2019-11-19 00:17:00,849 Johnson St, Seattle,WA,98101 +281942,AA Batteries (4-pack),1,3.84,2019-11-22 23:38:00,837 Jackson St, Los Angeles,CA,90001 +281943,AAA Batteries (4-pack),1,2.99,2019-11-21 23:39:00,774 Madison St, New York City,NY,10001 +281944,AA Batteries (4-pack),2,3.84,2019-11-11 13:29:00,850 Johnson St, Boston,MA,02215 +281945,Apple Airpods Headphones,1,150.0,2019-11-28 18:13:00,397 Center St, Seattle,WA,98101 +281946,Bose SoundSport Headphones,1,99.99,2019-11-02 17:50:00,222 Forest St, San Francisco,CA,94016 +281947,Macbook Pro Laptop,1,1700.0,2019-11-26 18:47:00,285 Lakeview St, Los Angeles,CA,90001 +281948,Wired Headphones,1,11.99,2019-11-03 06:16:00,832 6th St, San Francisco,CA,94016 +281949,Wired Headphones,2,11.99,2019-11-17 07:04:00,721 Center St, Portland,OR,97035 +281950,iPhone,1,700.0,2019-11-23 17:23:00,686 13th St, Atlanta,GA,30301 +281951,Wired Headphones,1,11.99,2019-11-07 18:22:00,786 Willow St, Boston,MA,02215 +281952,Google Phone,1,600.0,2019-11-04 14:48:00,244 10th St, Atlanta,GA,30301 +281953,AAA Batteries (4-pack),1,2.99,2019-11-25 16:07:00,395 Church St, Dallas,TX,75001 +281954,Apple Airpods Headphones,1,150.0,2019-11-16 19:34:00,186 North St, Atlanta,GA,30301 +281955,USB-C Charging Cable,1,11.95,2019-11-02 11:34:00,527 Hill St, San Francisco,CA,94016 +281956,AAA Batteries (4-pack),2,2.99,2019-11-28 20:16:00,707 Washington St, Los Angeles,CA,90001 +281957,AA Batteries (4-pack),2,3.84,2019-11-19 15:23:00,403 Spruce St, New York City,NY,10001 +281958,Wired Headphones,1,11.99,2019-11-21 17:36:00,883 Hickory St, San Francisco,CA,94016 +281959,Bose SoundSport Headphones,1,99.99,2019-11-28 19:31:00,70 Jefferson St, San Francisco,CA,94016 +281960,AAA Batteries (4-pack),1,2.99,2019-11-30 22:43:00,805 Center St, Boston,MA,02215 +281961,iPhone,1,700.0,2019-11-21 19:22:00,620 Elm St, San Francisco,CA,94016 +281961,Lightning Charging Cable,1,14.95,2019-11-21 19:22:00,620 Elm St, San Francisco,CA,94016 +281962,Apple Airpods Headphones,1,150.0,2019-11-15 15:39:00,166 4th St, Dallas,TX,75001 +281963,AA Batteries (4-pack),1,3.84,2019-11-05 19:40:00,81 Johnson St, Atlanta,GA,30301 +281964,Macbook Pro Laptop,1,1700.0,2019-11-16 10:30:00,995 Main St, San Francisco,CA,94016 +281965,Wired Headphones,1,11.99,2019-11-07 12:58:00,211 14th St, San Francisco,CA,94016 +281966,Apple Airpods Headphones,1,150.0,2019-11-16 19:22:00,390 Chestnut St, Atlanta,GA,30301 +281967,Google Phone,1,600.0,2019-11-16 21:11:00,658 Main St, San Francisco,CA,94016 +281968,Apple Airpods Headphones,1,150.0,2019-11-19 11:28:00,65 Meadow St, San Francisco,CA,94016 +281969,USB-C Charging Cable,1,11.95,2019-11-15 13:23:00,820 Meadow St, San Francisco,CA,94016 +281970,AAA Batteries (4-pack),2,2.99,2019-11-14 16:28:00,748 Adams St, Los Angeles,CA,90001 +281971,AA Batteries (4-pack),2,3.84,2019-11-08 19:46:00,165 Maple St, Los Angeles,CA,90001 +281972,AA Batteries (4-pack),1,3.84,2019-11-10 09:53:00,826 Cedar St, Boston,MA,02215 +281973,AAA Batteries (4-pack),1,2.99,2019-11-18 15:40:00,186 Hill St, San Francisco,CA,94016 +281974,AAA Batteries (4-pack),1,2.99,2019-11-21 16:22:00,891 Hill St, Boston,MA,02215 +281975,Macbook Pro Laptop,1,1700.0,2019-11-15 13:33:00,547 Washington St, San Francisco,CA,94016 +281976,Wired Headphones,1,11.99,2019-11-28 21:38:00,387 Lake St, San Francisco,CA,94016 +281977,USB-C Charging Cable,1,11.95,2019-11-07 22:26:00,413 Pine St, Portland,ME,04101 +281978,Lightning Charging Cable,1,14.95,2019-11-25 07:42:00,482 9th St, Austin,TX,73301 +281979,USB-C Charging Cable,1,11.95,2019-11-15 16:05:00,881 13th St, San Francisco,CA,94016 +281980,AA Batteries (4-pack),1,3.84,2019-11-22 12:17:00,602 Dogwood St, Los Angeles,CA,90001 +281981,Lightning Charging Cable,1,14.95,2019-11-23 12:42:00,952 Lincoln St, San Francisco,CA,94016 +281982,27in FHD Monitor,1,149.99,2019-11-17 21:18:00,376 Main St, San Francisco,CA,94016 +281983,AA Batteries (4-pack),2,3.84,2019-11-08 21:20:00,174 Cedar St, San Francisco,CA,94016 +281984,USB-C Charging Cable,1,11.95,2019-11-02 08:44:00,956 Main St, Atlanta,GA,30301 +281985,Bose SoundSport Headphones,1,99.99,2019-11-12 21:48:00,648 12th St, San Francisco,CA,94016 +281986,AA Batteries (4-pack),1,3.84,2019-11-27 08:21:00,497 10th St, Los Angeles,CA,90001 +281987,iPhone,1,700.0,2019-11-28 00:08:00,67 Main St, New York City,NY,10001 +281988,AA Batteries (4-pack),1,3.84,2019-11-22 18:35:00,437 Pine St, Dallas,TX,75001 +281989,Lightning Charging Cable,1,14.95,2019-11-29 19:11:00,581 Jefferson St, Boston,MA,02215 +281990,Lightning Charging Cable,1,14.95,2019-11-12 09:42:00,937 Walnut St, New York City,NY,10001 +281991,Bose SoundSport Headphones,1,99.99,2019-11-29 07:15:00,437 Walnut St, Los Angeles,CA,90001 +281992,Wired Headphones,1,11.99,2019-11-01 12:48:00,514 10th St, Atlanta,GA,30301 +281993,Lightning Charging Cable,1,14.95,2019-11-29 17:35:00,148 Cherry St, San Francisco,CA,94016 +281994,USB-C Charging Cable,1,11.95,2019-11-04 07:48:00,572 12th St, Boston,MA,02215 +281995,AAA Batteries (4-pack),3,2.99,2019-11-25 19:00:00,607 Cherry St, Atlanta,GA,30301 +281996,Apple Airpods Headphones,1,150.0,2019-11-30 10:29:00,864 Center St, Atlanta,GA,30301 +281997,Google Phone,1,600.0,2019-11-27 23:13:00,81 12th St, San Francisco,CA,94016 +281998,AAA Batteries (4-pack),6,2.99,2019-11-30 09:09:00,124 Willow St, Atlanta,GA,30301 +281999,Lightning Charging Cable,1,14.95,2019-11-27 21:06:00,530 Wilson St, San Francisco,CA,94016 +282000,27in FHD Monitor,1,149.99,2019-11-19 09:00:00,678 4th St, Dallas,TX,75001 +282001,Lightning Charging Cable,1,14.95,2019-11-10 18:31:00,624 14th St, Atlanta,GA,30301 +282002,Apple Airpods Headphones,1,150.0,2019-11-29 14:01:00,918 7th St, New York City,NY,10001 +282003,AA Batteries (4-pack),2,3.84,2019-11-24 20:24:00,996 4th St, Boston,MA,02215 +282004,27in FHD Monitor,1,149.99,2019-11-16 20:38:00,215 West St, Austin,TX,73301 +282005,Lightning Charging Cable,1,14.95,2019-11-13 15:44:00,392 Sunset St, San Francisco,CA,94016 +282006,Flatscreen TV,1,300.0,2019-11-13 23:11:00,901 Washington St, Austin,TX,73301 +282007,27in FHD Monitor,1,149.99,2019-11-18 15:41:00,779 14th St, Los Angeles,CA,90001 +282008,Flatscreen TV,1,300.0,2019-11-01 21:59:00,412 10th St, San Francisco,CA,94016 +282009,27in 4K Gaming Monitor,1,389.99,2019-11-06 12:41:00,268 Pine St, San Francisco,CA,94016 +282010,iPhone,1,700.0,2019-11-01 12:46:00,133 8th St, Los Angeles,CA,90001 +282011,Apple Airpods Headphones,1,150.0,2019-11-30 22:21:00,201 Park St, Los Angeles,CA,90001 +282012,Google Phone,1,600.0,2019-11-30 12:31:00,813 13th St, Portland,OR,97035 +282013,AA Batteries (4-pack),1,3.84,2019-11-13 14:31:00,715 Church St, Boston,MA,02215 +282014,Wired Headphones,1,11.99,2019-11-16 15:19:00,806 11th St, Dallas,TX,75001 +282015,AAA Batteries (4-pack),1,2.99,2019-11-06 18:24:00,152 Madison St, Los Angeles,CA,90001 +282016,AAA Batteries (4-pack),2,2.99,2019-11-24 13:19:00,675 Lincoln St, San Francisco,CA,94016 +282017,ThinkPad Laptop,1,999.99,2019-11-26 05:28:00,231 7th St, San Francisco,CA,94016 +282018,Lightning Charging Cable,1,14.95,2019-11-20 18:00:00,561 Park St, Atlanta,GA,30301 +282019,Wired Headphones,1,11.99,2019-11-04 16:41:00,296 Main St, San Francisco,CA,94016 +282020,Lightning Charging Cable,1,14.95,2019-11-27 00:09:00,216 12th St, Austin,TX,73301 +282021,Macbook Pro Laptop,1,1700.0,2019-11-06 13:04:00,87 Hickory St, Atlanta,GA,30301 +282022,Wired Headphones,1,11.99,2019-11-18 21:59:00,236 Madison St, San Francisco,CA,94016 +282023,Apple Airpods Headphones,1,150.0,2019-11-22 10:44:00,28 Lakeview St, New York City,NY,10001 +282024,27in 4K Gaming Monitor,1,389.99,2019-11-09 17:15:00,231 7th St, Dallas,TX,75001 +282025,Wired Headphones,1,11.99,2019-11-29 17:43:00,602 11th St, Los Angeles,CA,90001 +282026,USB-C Charging Cable,1,11.95,2019-11-03 17:54:00,963 Walnut St, San Francisco,CA,94016 +282027,LG Dryer,1,600.0,2019-11-09 03:08:00,155 4th St, Los Angeles,CA,90001 +282028,USB-C Charging Cable,1,11.95,2019-11-02 13:44:00,217 Highland St, Boston,MA,02215 +282029,LG Dryer,1,600.0,2019-11-28 13:20:00,105 Washington St, Los Angeles,CA,90001 +282030,Google Phone,1,600.0,2019-11-05 15:21:00,303 14th St, Atlanta,GA,30301 +282031,Bose SoundSport Headphones,1,99.99,2019-11-27 10:57:00,58 Jackson St, Boston,MA,02215 +282032,AAA Batteries (4-pack),3,2.99,2019-11-07 15:40:00,722 Sunset St, San Francisco,CA,94016 +282033,USB-C Charging Cable,1,11.95,2019-11-26 10:20:00,492 Chestnut St, San Francisco,CA,94016 +282034,Macbook Pro Laptop,1,1700.0,2019-11-21 06:20:00,956 Center St, Atlanta,GA,30301 +282035,Wired Headphones,1,11.99,2019-11-27 16:16:00,689 Dogwood St, San Francisco,CA,94016 +282036,Flatscreen TV,1,300.0,2019-11-15 11:38:00,171 Park St, Atlanta,GA,30301 +282037,USB-C Charging Cable,1,11.95,2019-11-23 16:27:00,36 5th St, New York City,NY,10001 +282038,AA Batteries (4-pack),1,3.84,2019-11-11 18:18:00,449 Spruce St, New York City,NY,10001 +282039,USB-C Charging Cable,1,11.95,2019-11-05 15:22:00,963 5th St, San Francisco,CA,94016 +282040,AAA Batteries (4-pack),2,2.99,2019-11-06 12:04:00,906 Hill St, San Francisco,CA,94016 +282041,Google Phone,1,600.0,2019-11-02 20:55:00,473 11th St, Seattle,WA,98101 +282042,USB-C Charging Cable,1,11.95,2019-11-08 12:59:00,447 Cedar St, Dallas,TX,75001 +282043,AAA Batteries (4-pack),1,2.99,2019-11-13 21:20:00,282 Jackson St, San Francisco,CA,94016 +282044,AA Batteries (4-pack),2,3.84,2019-11-28 20:09:00,832 Highland St, Portland,OR,97035 +282045,USB-C Charging Cable,1,11.95,2019-11-25 12:13:00,881 Forest St, Los Angeles,CA,90001 +282046,27in FHD Monitor,1,149.99,2019-11-19 21:34:00,699 Cherry St, Seattle,WA,98101 +282047,AAA Batteries (4-pack),1,2.99,2019-11-26 12:34:00,659 North St, San Francisco,CA,94016 +282048,Lightning Charging Cable,2,14.95,2019-11-09 11:49:00,257 Main St, Los Angeles,CA,90001 +282049,AA Batteries (4-pack),1,3.84,2019-11-25 19:34:00,196 West St, San Francisco,CA,94016 +282050,Wired Headphones,1,11.99,2019-11-20 13:57:00,290 Elm St, Boston,MA,02215 +282051,27in FHD Monitor,1,149.99,2019-11-06 20:20:00,911 7th St, Seattle,WA,98101 +282052,AA Batteries (4-pack),4,3.84,2019-11-21 20:21:00,800 Highland St, Boston,MA,02215 +282053,AA Batteries (4-pack),2,3.84,2019-11-01 06:50:00,886 Washington St, Seattle,WA,98101 +282054,Apple Airpods Headphones,1,150.0,2019-11-27 14:59:00,145 8th St, Boston,MA,02215 +282055,AAA Batteries (4-pack),3,2.99,2019-11-26 15:05:00,926 Spruce St, San Francisco,CA,94016 +282056,ThinkPad Laptop,1,999.99,2019-11-13 14:20:00,766 11th St, Los Angeles,CA,90001 +282057,Lightning Charging Cable,2,14.95,2019-11-01 23:03:00,117 Hill St, New York City,NY,10001 +282058,Apple Airpods Headphones,1,150.0,2019-11-06 16:48:00,901 Lakeview St, Portland,OR,97035 +282059,AA Batteries (4-pack),1,3.84,2019-11-16 12:53:00,660 Elm St, New York City,NY,10001 +282060,20in Monitor,1,109.99,2019-11-22 07:59:00,138 Chestnut St, New York City,NY,10001 +282061,34in Ultrawide Monitor,1,379.99,2019-11-17 16:21:00,703 7th St, Seattle,WA,98101 +282062,Bose SoundSport Headphones,1,99.99,2019-11-05 10:57:00,97 Washington St, Dallas,TX,75001 +282063,AA Batteries (4-pack),1,3.84,2019-11-17 16:35:00,450 Forest St, San Francisco,CA,94016 +282064,AA Batteries (4-pack),1,3.84,2019-11-24 15:10:00,972 Lincoln St, San Francisco,CA,94016 +282065,AAA Batteries (4-pack),1,2.99,2019-11-17 13:35:00,54 5th St, San Francisco,CA,94016 +282066,34in Ultrawide Monitor,1,379.99,2019-11-18 07:47:00,292 Lakeview St, Portland,OR,97035 +282067,Bose SoundSport Headphones,1,99.99,2019-11-01 21:25:00,296 Church St, Dallas,TX,75001 +282068,AA Batteries (4-pack),1,3.84,2019-11-14 10:08:00,176 North St, San Francisco,CA,94016 +282069,Wired Headphones,1,11.99,2019-11-11 17:05:00,596 Park St, New York City,NY,10001 +282070,AAA Batteries (4-pack),1,2.99,2019-11-28 00:21:00,229 South St, Austin,TX,73301 +282071,AA Batteries (4-pack),1,3.84,2019-11-03 20:14:00,780 Dogwood St, San Francisco,CA,94016 +282072,Apple Airpods Headphones,1,150.0,2019-11-26 10:08:00,595 South St, Seattle,WA,98101 +282073,AA Batteries (4-pack),2,3.84,2019-11-26 08:03:00,748 Washington St, Portland,OR,97035 +282074,USB-C Charging Cable,1,11.95,2019-11-25 18:06:00,832 Maple St, Los Angeles,CA,90001 +282075,AAA Batteries (4-pack),2,2.99,2019-11-20 22:23:00,642 Spruce St, San Francisco,CA,94016 +282076,27in FHD Monitor,1,149.99,2019-11-03 17:08:00,784 Hill St, Atlanta,GA,30301 +282077,AA Batteries (4-pack),1,3.84,2019-11-19 19:32:00,827 Center St, Boston,MA,02215 +282078,ThinkPad Laptop,1,999.99,2019-11-10 09:45:00,161 Meadow St, Los Angeles,CA,90001 +282079,iPhone,1,700.0,2019-11-02 15:00:00,522 Hill St, San Francisco,CA,94016 +282079,Wired Headphones,2,11.99,2019-11-02 15:00:00,522 Hill St, San Francisco,CA,94016 +282080,Apple Airpods Headphones,1,150.0,2019-11-29 11:15:00,350 Jefferson St, New York City,NY,10001 +282081,27in 4K Gaming Monitor,1,389.99,2019-11-16 21:58:00,370 7th St, Portland,OR,97035 +282082,Wired Headphones,1,11.99,2019-11-18 14:59:00,758 Forest St, Los Angeles,CA,90001 +282083,USB-C Charging Cable,2,11.95,2019-11-27 07:55:00,518 Park St, New York City,NY,10001 +282084,USB-C Charging Cable,1,11.95,2019-11-19 19:06:00,65 River St, San Francisco,CA,94016 +282085,Bose SoundSport Headphones,1,99.99,2019-11-19 07:32:00,772 Park St, New York City,NY,10001 +282086,AA Batteries (4-pack),1,3.84,2019-11-16 08:50:00,252 13th St, San Francisco,CA,94016 +282087,Bose SoundSport Headphones,1,99.99,2019-11-07 18:52:00,447 Cedar St, Boston,MA,02215 +282088,AA Batteries (4-pack),1,3.84,2019-11-13 12:09:00,375 Elm St, Dallas,TX,75001 +282089,AAA Batteries (4-pack),1,2.99,2019-11-08 16:41:00,488 12th St, Portland,OR,97035 +282090,AAA Batteries (4-pack),2,2.99,2019-11-18 16:45:00,53 Cherry St, Seattle,WA,98101 +282091,AA Batteries (4-pack),1,3.84,2019-11-25 20:49:00,390 Walnut St, Austin,TX,73301 +282092,USB-C Charging Cable,1,11.95,2019-11-17 19:23:00,444 North St, New York City,NY,10001 +282093,AAA Batteries (4-pack),2,2.99,2019-11-19 12:49:00,475 9th St, Portland,OR,97035 +282094,AAA Batteries (4-pack),1,2.99,2019-11-06 17:28:00,660 1st St, Dallas,TX,75001 +282095,Flatscreen TV,1,300.0,2019-11-30 10:08:00,873 Wilson St, Seattle,WA,98101 +282096,iPhone,1,700.0,2019-11-24 11:23:00,190 Adams St, Dallas,TX,75001 +282097,USB-C Charging Cable,1,11.95,2019-11-25 20:39:00,484 7th St, Los Angeles,CA,90001 +282098,AA Batteries (4-pack),1,3.84,2019-11-29 15:53:00,250 10th St, New York City,NY,10001 +282099,AA Batteries (4-pack),1,3.84,2019-11-25 19:04:00,666 Willow St, Los Angeles,CA,90001 +282100,Google Phone,1,600.0,2019-11-24 09:47:00,574 13th St, San Francisco,CA,94016 +282100,Wired Headphones,1,11.99,2019-11-24 09:47:00,574 13th St, San Francisco,CA,94016 +282101,Wired Headphones,1,11.99,2019-11-09 17:37:00,722 11th St, Seattle,WA,98101 +282102,AAA Batteries (4-pack),1,2.99,2019-11-29 18:54:00,165 Sunset St, Los Angeles,CA,90001 +282103,iPhone,1,700.0,2019-11-06 07:02:00,277 Wilson St, Portland,OR,97035 +282104,AA Batteries (4-pack),1,3.84,2019-11-20 18:39:00,886 West St, San Francisco,CA,94016 +282105,iPhone,1,700.0,2019-11-19 17:40:00,800 Johnson St, Dallas,TX,75001 +282105,Lightning Charging Cable,1,14.95,2019-11-19 17:40:00,800 Johnson St, Dallas,TX,75001 +282106,USB-C Charging Cable,1,11.95,2019-11-09 17:53:00,85 Elm St, Austin,TX,73301 +282107,USB-C Charging Cable,1,11.95,2019-11-26 10:32:00,31 Ridge St, New York City,NY,10001 +282108,34in Ultrawide Monitor,1,379.99,2019-11-15 18:26:00,573 Jackson St, Los Angeles,CA,90001 +282109,USB-C Charging Cable,1,11.95,2019-11-05 18:41:00,219 4th St, Los Angeles,CA,90001 +282110,Wired Headphones,1,11.99,2019-11-07 10:20:00,657 West St, Los Angeles,CA,90001 +282111,Apple Airpods Headphones,1,150.0,2019-11-21 08:24:00,464 7th St, Seattle,WA,98101 +282112,Macbook Pro Laptop,1,1700.0,2019-11-16 18:42:00,705 Willow St, Boston,MA,02215 +282113,Lightning Charging Cable,1,14.95,2019-11-07 15:04:00,991 Cherry St, Seattle,WA,98101 +282114,Lightning Charging Cable,1,14.95,2019-11-25 12:08:00,781 8th St, Los Angeles,CA,90001 +282114,27in 4K Gaming Monitor,1,389.99,2019-11-25 12:08:00,781 8th St, Los Angeles,CA,90001 +282115,iPhone,1,700.0,2019-11-24 11:31:00,856 North St, Austin,TX,73301 +282116,Bose SoundSport Headphones,1,99.99,2019-11-23 21:09:00,40 Dogwood St, San Francisco,CA,94016 +282117,Google Phone,1,600.0,2019-11-01 17:58:00,914 Ridge St, San Francisco,CA,94016 +282118,AAA Batteries (4-pack),1,2.99,2019-11-18 13:10:00,178 Dogwood St, Boston,MA,02215 +282119,Apple Airpods Headphones,1,150.0,2019-11-20 12:26:00,236 Hickory St, Los Angeles,CA,90001 +282120,Lightning Charging Cable,1,14.95,2019-11-09 11:31:00,853 Hill St, Seattle,WA,98101 +282121,Wired Headphones,1,11.99,2019-11-14 05:27:00,615 Willow St, New York City,NY,10001 +282122,27in 4K Gaming Monitor,1,389.99,2019-11-29 08:32:00,619 8th St, Austin,TX,73301 +282123,USB-C Charging Cable,1,11.95,2019-11-28 13:52:00,328 Highland St, Portland,OR,97035 +282124,Bose SoundSport Headphones,1,99.99,2019-11-15 11:58:00,266 4th St, San Francisco,CA,94016 +282125,ThinkPad Laptop,1,999.99,2019-11-13 21:30:00,370 Spruce St, Dallas,TX,75001 +282126,AAA Batteries (4-pack),2,2.99,2019-11-13 21:28:00,563 9th St, Dallas,TX,75001 +282127,USB-C Charging Cable,1,11.95,2019-11-08 23:35:00,47 Pine St, Austin,TX,73301 +282128,Bose SoundSport Headphones,1,99.99,2019-11-17 22:29:00,779 Ridge St, Portland,OR,97035 +282129,Apple Airpods Headphones,1,150.0,2019-11-26 13:43:00,263 Willow St, New York City,NY,10001 +282130,27in FHD Monitor,1,149.99,2019-11-21 12:22:00,127 2nd St, Los Angeles,CA,90001 +282131,27in 4K Gaming Monitor,1,389.99,2019-11-02 14:19:00,720 Center St, San Francisco,CA,94016 +282132,USB-C Charging Cable,1,11.95,2019-11-02 08:15:00,300 11th St, New York City,NY,10001 +282133,AA Batteries (4-pack),2,3.84,2019-11-27 22:24:00,807 Wilson St, Atlanta,GA,30301 +282134,20in Monitor,1,109.99,2019-11-08 14:45:00,903 Madison St, Seattle,WA,98101 +282135,AAA Batteries (4-pack),1,2.99,2019-11-27 22:41:00,190 Sunset St, Seattle,WA,98101 +282136,AA Batteries (4-pack),2,3.84,2019-11-03 22:01:00,241 Lake St, Boston,MA,02215 +282137,Lightning Charging Cable,1,14.95,2019-11-13 14:40:00,197 13th St, Los Angeles,CA,90001 +282138,Google Phone,1,600.0,2019-11-09 11:44:00,973 West St, New York City,NY,10001 +282139,34in Ultrawide Monitor,1,379.99,2019-11-23 14:01:00,586 12th St, Los Angeles,CA,90001 +282140,Lightning Charging Cable,1,14.95,2019-11-16 05:25:00,887 Center St, San Francisco,CA,94016 +282141,USB-C Charging Cable,1,11.95,2019-11-10 12:37:00,369 West St, New York City,NY,10001 +282142,AA Batteries (4-pack),1,3.84,2019-11-29 23:33:00,791 Chestnut St, Seattle,WA,98101 +282142,Flatscreen TV,1,300.0,2019-11-29 23:33:00,791 Chestnut St, Seattle,WA,98101 +282143,Lightning Charging Cable,1,14.95,2019-11-12 18:43:00,989 Cherry St, Austin,TX,73301 +282144,AAA Batteries (4-pack),1,2.99,2019-11-18 21:31:00,476 Park St, New York City,NY,10001 +282145,Lightning Charging Cable,1,14.95,2019-11-06 09:43:00,699 Sunset St, Los Angeles,CA,90001 +282146,Lightning Charging Cable,1,14.95,2019-11-30 16:05:00,686 Madison St, Atlanta,GA,30301 +282147,USB-C Charging Cable,1,11.95,2019-11-25 08:03:00,242 12th St, Dallas,TX,75001 +282148,27in 4K Gaming Monitor,1,389.99,2019-11-29 00:17:00,636 West St, Los Angeles,CA,90001 +282149,Lightning Charging Cable,1,14.95,2019-11-01 12:09:00,219 Maple St, Austin,TX,73301 +282150,Wired Headphones,1,11.99,2019-11-04 16:19:00,867 Sunset St, Boston,MA,02215 +282151,AA Batteries (4-pack),1,3.84,2019-11-12 23:42:00,988 14th St, Seattle,WA,98101 +282152,Apple Airpods Headphones,1,150.0,2019-11-15 13:59:00,164 Ridge St, San Francisco,CA,94016 +282153,Lightning Charging Cable,1,14.95,2019-11-29 15:39:00,30 Chestnut St, Boston,MA,02215 +282154,Flatscreen TV,1,300.0,2019-11-03 20:47:00,315 Hill St, Los Angeles,CA,90001 +282155,Lightning Charging Cable,1,14.95,2019-11-15 22:13:00,118 Main St, Atlanta,GA,30301 +282156,Wired Headphones,1,11.99,2019-11-22 15:52:00,424 11th St, New York City,NY,10001 +282157,27in FHD Monitor,1,149.99,2019-11-16 22:41:00,314 Center St, San Francisco,CA,94016 +282158,AAA Batteries (4-pack),1,2.99,2019-11-19 11:19:00,496 Main St, Portland,OR,97035 +282159,AAA Batteries (4-pack),2,2.99,2019-11-10 12:50:00,873 Hickory St, Los Angeles,CA,90001 +282160,Apple Airpods Headphones,1,150.0,2019-11-23 14:14:00,915 13th St, Los Angeles,CA,90001 +282161,20in Monitor,1,109.99,2019-11-23 17:19:00,423 Spruce St, San Francisco,CA,94016 +282162,AAA Batteries (4-pack),1,2.99,2019-11-17 19:59:00,778 Jackson St, New York City,NY,10001 +282163,Bose SoundSport Headphones,1,99.99,2019-11-15 21:53:00,459 Lake St, Los Angeles,CA,90001 +282164,Wired Headphones,2,11.99,2019-11-05 11:48:00,195 Highland St, Dallas,TX,75001 +282165,AA Batteries (4-pack),1,3.84,2019-11-12 13:43:00,684 Jefferson St, Boston,MA,02215 +282166,Google Phone,1,600.0,2019-11-10 18:51:00,431 Hill St, Los Angeles,CA,90001 +282167,iPhone,1,700.0,2019-11-22 09:50:00,386 11th St, Boston,MA,02215 +282168,Apple Airpods Headphones,1,150.0,2019-11-14 22:16:00,690 Meadow St, Boston,MA,02215 +282169,Wired Headphones,1,11.99,2019-11-21 19:39:00,404 Johnson St, Dallas,TX,75001 +282170,Vareebadd Phone,1,400.0,2019-11-01 21:58:00,365 Lakeview St, San Francisco,CA,94016 +282170,USB-C Charging Cable,1,11.95,2019-11-01 21:58:00,365 Lakeview St, San Francisco,CA,94016 +282171,AA Batteries (4-pack),1,3.84,2019-11-15 15:20:00,558 Jackson St, Dallas,TX,75001 +282172,27in 4K Gaming Monitor,1,389.99,2019-11-04 06:01:00,161 Cherry St, Los Angeles,CA,90001 +282173,Google Phone,1,600.0,2019-11-23 18:47:00,563 1st St, San Francisco,CA,94016 +282174,Macbook Pro Laptop,1,1700.0,2019-11-01 20:58:00,560 Cedar St, Boston,MA,02215 +282175,27in 4K Gaming Monitor,1,389.99,2019-11-30 09:15:00,862 Dogwood St, Atlanta,GA,30301 +282176,Flatscreen TV,1,300.0,2019-11-28 15:55:00,16 Church St, New York City,NY,10001 +282177,Bose SoundSport Headphones,1,99.99,2019-11-12 15:08:00,251 Maple St, New York City,NY,10001 +282178,ThinkPad Laptop,1,999.99,2019-11-12 11:07:00,538 Lincoln St, Seattle,WA,98101 +282179,USB-C Charging Cable,1,11.95,2019-11-26 13:08:00,232 West St, New York City,NY,10001 +282180,Apple Airpods Headphones,1,150.0,2019-11-17 17:06:00,522 South St, Los Angeles,CA,90001 +282181,AAA Batteries (4-pack),1,2.99,2019-11-10 18:01:00,747 Church St, San Francisco,CA,94016 +282182,Wired Headphones,1,11.99,2019-11-18 18:26:00,711 Madison St, Boston,MA,02215 +282183,Apple Airpods Headphones,1,150.0,2019-11-27 14:29:00,595 Cedar St, Seattle,WA,98101 +282184,AA Batteries (4-pack),1,3.84,2019-11-27 09:22:00,667 Cedar St, San Francisco,CA,94016 +282185,AAA Batteries (4-pack),3,2.99,2019-11-14 03:02:00,674 8th St, New York City,NY,10001 +282186,USB-C Charging Cable,1,11.95,2019-11-30 21:18:00,143 Lakeview St, Boston,MA,02215 +282187,AA Batteries (4-pack),1,3.84,2019-11-28 17:33:00,641 Hill St, Seattle,WA,98101 +282188,AA Batteries (4-pack),3,3.84,2019-11-30 09:15:00,696 Lakeview St, San Francisco,CA,94016 +282189,AA Batteries (4-pack),2,3.84,2019-11-03 20:00:00,280 Walnut St, New York City,NY,10001 +282190,AAA Batteries (4-pack),1,2.99,2019-11-19 19:13:00,85 Hill St, Seattle,WA,98101 +282191,USB-C Charging Cable,1,11.95,2019-11-17 13:49:00,811 13th St, San Francisco,CA,94016 +282192,Lightning Charging Cable,1,14.95,2019-11-26 16:25:00,369 Ridge St, Dallas,TX,75001 +282193,USB-C Charging Cable,1,11.95,2019-11-14 12:27:00,474 Hickory St, Boston,MA,02215 +282194,Google Phone,1,600.0,2019-11-27 12:55:00,141 Center St, Dallas,TX,75001 +282194,Bose SoundSport Headphones,1,99.99,2019-11-27 12:55:00,141 Center St, Dallas,TX,75001 +282195,20in Monitor,1,109.99,2019-11-17 17:56:00,425 Forest St, San Francisco,CA,94016 +282196,AAA Batteries (4-pack),1,2.99,2019-11-01 19:53:00,978 Spruce St, Atlanta,GA,30301 +282197,27in 4K Gaming Monitor,1,389.99,2019-11-22 12:51:00,102 Center St, San Francisco,CA,94016 +282198,Macbook Pro Laptop,1,1700.0,2019-11-10 16:27:00,51 Cedar St, San Francisco,CA,94016 +282199,AAA Batteries (4-pack),1,2.99,2019-11-11 23:05:00,807 Jackson St, San Francisco,CA,94016 +282200,Bose SoundSport Headphones,1,99.99,2019-11-20 11:42:00,389 South St, San Francisco,CA,94016 +282201,AA Batteries (4-pack),1,3.84,2019-11-19 18:59:00,992 9th St, San Francisco,CA,94016 +282202,AA Batteries (4-pack),1,3.84,2019-11-20 13:00:00,164 10th St, Boston,MA,02215 +282203,27in FHD Monitor,1,149.99,2019-11-28 18:47:00,295 12th St, Portland,OR,97035 +282204,34in Ultrawide Monitor,1,379.99,2019-11-24 22:23:00,479 Sunset St, Los Angeles,CA,90001 +282205,Wired Headphones,1,11.99,2019-11-12 23:22:00,930 10th St, Los Angeles,CA,90001 +282205,iPhone,1,700.0,2019-11-12 23:22:00,930 10th St, Los Angeles,CA,90001 +282206,AAA Batteries (4-pack),1,2.99,2019-11-03 18:13:00,533 13th St, San Francisco,CA,94016 +282207,Lightning Charging Cable,2,14.95,2019-11-11 19:48:00,127 North St, Seattle,WA,98101 +282208,AA Batteries (4-pack),3,3.84,2019-11-05 21:36:00,666 Park St, Austin,TX,73301 +282209,Lightning Charging Cable,1,14.95,2019-11-22 21:24:00,943 Chestnut St, San Francisco,CA,94016 +282210,AA Batteries (4-pack),1,3.84,2019-11-15 00:24:00,405 Washington St, San Francisco,CA,94016 +282211,34in Ultrawide Monitor,1,379.99,2019-11-19 13:21:00,40 Madison St, San Francisco,CA,94016 +282212,AAA Batteries (4-pack),1,2.99,2019-11-10 13:45:00,600 Cedar St, Seattle,WA,98101 +282213,Lightning Charging Cable,1,14.95,2019-11-20 13:55:00,615 Dogwood St, Los Angeles,CA,90001 +282214,Lightning Charging Cable,1,14.95,2019-11-29 17:42:00,100 Lincoln St, San Francisco,CA,94016 +282215,Bose SoundSport Headphones,1,99.99,2019-11-08 12:58:00,697 Forest St, Seattle,WA,98101 +282216,USB-C Charging Cable,1,11.95,2019-11-30 09:00:00,977 Wilson St, San Francisco,CA,94016 +282217,34in Ultrawide Monitor,1,379.99,2019-11-06 17:21:00,529 Cherry St, Los Angeles,CA,90001 +282218,USB-C Charging Cable,1,11.95,2019-11-27 14:35:00,887 Park St, Boston,MA,02215 +282219,20in Monitor,1,109.99,2019-11-19 20:19:00,73 1st St, Dallas,TX,75001 +282220,Bose SoundSport Headphones,1,99.99,2019-11-12 19:56:00,659 Forest St, New York City,NY,10001 +282221,Wired Headphones,1,11.99,2019-11-24 19:08:00,959 9th St, Boston,MA,02215 +282222,USB-C Charging Cable,1,11.95,2019-11-19 10:03:00,421 Pine St, Atlanta,GA,30301 +282223,iPhone,1,700.0,2019-11-09 23:18:00,644 Lakeview St, Los Angeles,CA,90001 +282224,Macbook Pro Laptop,1,1700.0,2019-11-13 15:39:00,160 South St, Los Angeles,CA,90001 +282225,AA Batteries (4-pack),1,3.84,2019-11-30 16:32:00,817 Elm St, San Francisco,CA,94016 +282226,USB-C Charging Cable,1,11.95,2019-11-16 08:10:00,832 Highland St, San Francisco,CA,94016 +282227,USB-C Charging Cable,1,11.95,2019-11-06 13:50:00,554 Jefferson St, Atlanta,GA,30301 +282228,USB-C Charging Cable,1,11.95,2019-11-19 14:20:00,96 Highland St, Los Angeles,CA,90001 +282229,Wired Headphones,1,11.99,2019-11-06 19:35:00,305 Ridge St, San Francisco,CA,94016 +282230,USB-C Charging Cable,1,11.95,2019-11-05 23:20:00,675 8th St, Seattle,WA,98101 +282231,Bose SoundSport Headphones,1,99.99,2019-11-26 13:44:00,903 7th St, New York City,NY,10001 +282232,Apple Airpods Headphones,1,150.0,2019-11-30 15:46:00,863 12th St, Boston,MA,02215 +282233,Bose SoundSport Headphones,1,99.99,2019-11-08 18:17:00,468 Hickory St, Atlanta,GA,30301 +282234,USB-C Charging Cable,1,11.95,2019-11-12 18:27:00,244 Hickory St, Los Angeles,CA,90001 +282235,AA Batteries (4-pack),2,3.84,2019-11-29 16:59:00,595 6th St, San Francisco,CA,94016 +282236,AA Batteries (4-pack),2,3.84,2019-11-28 11:12:00,271 6th St, Los Angeles,CA,90001 +282237,34in Ultrawide Monitor,1,379.99,2019-11-06 07:17:00,720 North St, San Francisco,CA,94016 +282238,Flatscreen TV,1,300.0,2019-11-20 09:25:00,887 14th St, San Francisco,CA,94016 +282239,20in Monitor,1,109.99,2019-11-12 13:54:00,468 West St, Los Angeles,CA,90001 +282240,AA Batteries (4-pack),1,3.84,2019-11-12 18:15:00,86 Meadow St, Boston,MA,02215 +282241,ThinkPad Laptop,1,999.99,2019-11-04 14:10:00,239 Madison St, Seattle,WA,98101 +282242,27in 4K Gaming Monitor,1,389.99,2019-11-29 18:05:00,716 2nd St, Los Angeles,CA,90001 +282243,Bose SoundSport Headphones,1,99.99,2019-11-21 20:18:00,999 Ridge St, San Francisco,CA,94016 +282244,iPhone,1,700.0,2019-11-26 13:29:00,536 Dogwood St, San Francisco,CA,94016 +282244,Lightning Charging Cable,1,14.95,2019-11-26 13:29:00,536 Dogwood St, San Francisco,CA,94016 +282245,Lightning Charging Cable,1,14.95,2019-11-26 20:45:00,995 Lake St, Seattle,WA,98101 +282246,AA Batteries (4-pack),2,3.84,2019-11-30 13:07:00,986 5th St, Austin,TX,73301 +282247,iPhone,1,700.0,2019-11-03 13:46:00,784 Walnut St, Dallas,TX,75001 +282247,Lightning Charging Cable,1,14.95,2019-11-03 13:46:00,784 Walnut St, Dallas,TX,75001 +282248,20in Monitor,1,109.99,2019-11-27 21:38:00,604 1st St, San Francisco,CA,94016 +282249,USB-C Charging Cable,1,11.95,2019-11-04 23:46:00,468 Lake St, Portland,OR,97035 +282250,Lightning Charging Cable,1,14.95,2019-11-04 12:53:00,582 1st St, Los Angeles,CA,90001 +282250,USB-C Charging Cable,1,11.95,2019-11-04 12:53:00,582 1st St, Los Angeles,CA,90001 +282251,AA Batteries (4-pack),2,3.84,2019-11-11 19:09:00,853 Lakeview St, San Francisco,CA,94016 +282252,Lightning Charging Cable,1,14.95,2019-11-09 13:30:00,883 Pine St, San Francisco,CA,94016 +282253,Bose SoundSport Headphones,1,99.99,2019-11-21 13:43:00,210 Ridge St, Portland,ME,04101 +282254,AA Batteries (4-pack),2,3.84,2019-11-23 10:09:00,583 Ridge St, Austin,TX,73301 +282255,Lightning Charging Cable,1,14.95,2019-11-24 06:37:00,854 2nd St, San Francisco,CA,94016 +282256,AAA Batteries (4-pack),2,2.99,2019-11-10 09:03:00,498 North St, Seattle,WA,98101 +282257,AAA Batteries (4-pack),1,2.99,2019-11-21 12:12:00,826 Wilson St, Seattle,WA,98101 +282258,Lightning Charging Cable,1,14.95,2019-11-29 16:13:00,680 Maple St, San Francisco,CA,94016 +282259,Apple Airpods Headphones,1,150.0,2019-11-24 19:07:00,527 Spruce St, Seattle,WA,98101 +282260,Wired Headphones,1,11.99,2019-11-30 11:45:00,923 10th St, Dallas,TX,75001 +282261,AA Batteries (4-pack),1,3.84,2019-11-27 12:04:00,843 Willow St, Boston,MA,02215 +282262,Apple Airpods Headphones,1,150.0,2019-11-21 12:25:00,56 9th St, Portland,OR,97035 +282263,AAA Batteries (4-pack),2,2.99,2019-11-09 13:21:00,458 4th St, Boston,MA,02215 +282264,Wired Headphones,2,11.99,2019-11-07 22:27:00,36 11th St, Dallas,TX,75001 +282265,AA Batteries (4-pack),1,3.84,2019-11-10 17:19:00,694 Pine St, Seattle,WA,98101 +282266,AA Batteries (4-pack),1,3.84,2019-11-01 18:27:00,548 West St, Austin,TX,73301 +282267,Apple Airpods Headphones,1,150.0,2019-11-04 14:22:00,209 5th St, New York City,NY,10001 +282268,Macbook Pro Laptop,1,1700.0,2019-11-13 11:14:00,994 4th St, San Francisco,CA,94016 +282269,Bose SoundSport Headphones,1,99.99,2019-11-01 10:11:00,612 Hill St, San Francisco,CA,94016 +282270,USB-C Charging Cable,1,11.95,2019-11-30 14:59:00,781 13th St, Los Angeles,CA,90001 +282271,AA Batteries (4-pack),1,3.84,2019-11-28 19:21:00,967 10th St, San Francisco,CA,94016 +282272,AAA Batteries (4-pack),1,2.99,2019-11-06 21:43:00,552 Willow St, San Francisco,CA,94016 +282273,AA Batteries (4-pack),1,3.84,2019-11-11 20:02:00,452 Meadow St, Seattle,WA,98101 +282274,USB-C Charging Cable,1,11.95,2019-11-12 11:51:00,251 14th St, New York City,NY,10001 +282275,Apple Airpods Headphones,1,150.0,2019-11-05 10:59:00,674 Ridge St, New York City,NY,10001 +282276,USB-C Charging Cable,1,11.95,2019-11-16 15:58:00,778 Highland St, Boston,MA,02215 +282277,AA Batteries (4-pack),3,3.84,2019-11-15 13:00:00,447 Spruce St, Austin,TX,73301 +282278,Flatscreen TV,1,300.0,2019-11-01 07:17:00,511 Hickory St, Los Angeles,CA,90001 +282279,AAA Batteries (4-pack),1,2.99,2019-11-24 09:50:00,180 Center St, Atlanta,GA,30301 +282280,Bose SoundSport Headphones,1,99.99,2019-11-23 20:13:00,452 7th St, Los Angeles,CA,90001 +282281,Lightning Charging Cable,1,14.95,2019-11-25 17:34:00,253 7th St, San Francisco,CA,94016 +282281,AA Batteries (4-pack),1,3.84,2019-11-25 17:34:00,253 7th St, San Francisco,CA,94016 +282282,20in Monitor,1,109.99,2019-11-20 16:21:00,622 13th St, Seattle,WA,98101 +282283,Google Phone,1,600.0,2019-11-15 07:19:00,794 Walnut St, Atlanta,GA,30301 +282283,iPhone,1,700.0,2019-11-15 07:19:00,794 Walnut St, Atlanta,GA,30301 +282284,USB-C Charging Cable,1,11.95,2019-11-30 10:06:00,237 Jefferson St, Dallas,TX,75001 +282285,Bose SoundSport Headphones,1,99.99,2019-11-24 17:38:00,896 9th St, Los Angeles,CA,90001 +282286,USB-C Charging Cable,1,11.95,2019-11-21 23:48:00,682 2nd St, San Francisco,CA,94016 +282287,Flatscreen TV,1,300.0,2019-11-01 20:54:00,618 Pine St, Atlanta,GA,30301 +282288,Lightning Charging Cable,1,14.95,2019-11-08 13:49:00,704 13th St, Portland,OR,97035 +282289,AA Batteries (4-pack),1,3.84,2019-11-04 07:50:00,210 Wilson St, Seattle,WA,98101 +282290,Vareebadd Phone,1,400.0,2019-11-29 12:40:00,45 Hill St, Seattle,WA,98101 +282291,Lightning Charging Cable,1,14.95,2019-11-08 21:12:00,6 Forest St, Austin,TX,73301 +282292,Apple Airpods Headphones,1,150.0,2019-11-06 21:03:00,589 Church St, San Francisco,CA,94016 +282293,AAA Batteries (4-pack),2,2.99,2019-11-03 17:24:00,495 Jackson St, San Francisco,CA,94016 +282294,Apple Airpods Headphones,1,150.0,2019-11-29 00:35:00,957 Pine St, San Francisco,CA,94016 +282295,27in 4K Gaming Monitor,1,389.99,2019-11-27 14:00:00,773 Park St, Boston,MA,02215 +282296,Apple Airpods Headphones,1,150.0,2019-11-05 14:38:00,808 Johnson St, Los Angeles,CA,90001 +282297,AAA Batteries (4-pack),1,2.99,2019-11-14 21:17:00,988 9th St, Austin,TX,73301 +282298,USB-C Charging Cable,1,11.95,2019-11-15 06:10:00,681 Spruce St, Los Angeles,CA,90001 +282299,Lightning Charging Cable,1,14.95,2019-11-02 12:38:00,743 Hill St, San Francisco,CA,94016 +282300,Bose SoundSport Headphones,1,99.99,2019-11-25 19:01:00,260 2nd St, Dallas,TX,75001 +282301,iPhone,1,700.0,2019-11-02 12:03:00,969 Forest St, San Francisco,CA,94016 +282302,AAA Batteries (4-pack),6,2.99,2019-11-13 14:11:00,445 Church St, New York City,NY,10001 +282303,Lightning Charging Cable,1,14.95,2019-11-25 18:50:00,990 Highland St, Seattle,WA,98101 +282303,27in 4K Gaming Monitor,1,389.99,2019-11-25 18:50:00,990 Highland St, Seattle,WA,98101 +282304,27in 4K Gaming Monitor,1,389.99,2019-11-24 12:35:00,299 8th St, Boston,MA,02215 +282305,20in Monitor,1,109.99,2019-11-02 10:47:00,558 6th St, Atlanta,GA,30301 +282306,Wired Headphones,2,11.99,2019-11-10 10:35:00,33 11th St, Portland,OR,97035 +282307,Vareebadd Phone,1,400.0,2019-11-03 21:38:00,297 6th St, Austin,TX,73301 +282307,USB-C Charging Cable,1,11.95,2019-11-03 21:38:00,297 6th St, Austin,TX,73301 +282307,Bose SoundSport Headphones,1,99.99,2019-11-03 21:38:00,297 6th St, Austin,TX,73301 +282308,AAA Batteries (4-pack),1,2.99,2019-11-10 11:35:00,734 14th St, Austin,TX,73301 +282309,Google Phone,1,600.0,2019-11-07 09:19:00,875 Main St, Los Angeles,CA,90001 +282309,USB-C Charging Cable,1,11.95,2019-11-07 09:19:00,875 Main St, Los Angeles,CA,90001 +282310,Apple Airpods Headphones,1,150.0,2019-11-22 19:09:00,342 Wilson St, Atlanta,GA,30301 +282311,AAA Batteries (4-pack),3,2.99,2019-11-21 21:49:00,143 Lakeview St, Seattle,WA,98101 +282312,Lightning Charging Cable,1,14.95,2019-11-25 20:13:00,821 Highland St, New York City,NY,10001 +282312,AA Batteries (4-pack),1,3.84,2019-11-25 20:13:00,821 Highland St, New York City,NY,10001 +282313,Lightning Charging Cable,1,14.95,2019-11-10 20:15:00,369 2nd St, Los Angeles,CA,90001 +282314,20in Monitor,1,109.99,2019-11-09 08:59:00,158 North St, Atlanta,GA,30301 +282315,27in 4K Gaming Monitor,1,389.99,2019-11-30 19:31:00,168 13th St, San Francisco,CA,94016 +282316,Bose SoundSport Headphones,1,99.99,2019-11-17 19:03:00,691 8th St, Seattle,WA,98101 +282317,Wired Headphones,1,11.99,2019-11-29 13:52:00,766 5th St, New York City,NY,10001 +282318,Lightning Charging Cable,1,14.95,2019-11-03 17:54:00,90 Hill St, Seattle,WA,98101 +282319,Bose SoundSport Headphones,1,99.99,2019-11-26 23:20:00,657 Adams St, Dallas,TX,75001 +282320,iPhone,1,700.0,2019-11-24 11:41:00,482 Spruce St, Dallas,TX,75001 +282320,Lightning Charging Cable,1,14.95,2019-11-24 11:41:00,482 Spruce St, Dallas,TX,75001 +282321,USB-C Charging Cable,1,11.95,2019-11-03 21:57:00,877 Center St, Seattle,WA,98101 +282322,34in Ultrawide Monitor,1,379.99,2019-11-05 22:38:00,725 Hill St, Portland,ME,04101 +282323,Apple Airpods Headphones,1,150.0,2019-11-20 22:03:00,609 Madison St, Dallas,TX,75001 +282324,Lightning Charging Cable,1,14.95,2019-11-02 15:47:00,655 1st St, Atlanta,GA,30301 +282325,Bose SoundSport Headphones,1,99.99,2019-11-20 13:42:00,744 Washington St, New York City,NY,10001 +282326,27in 4K Gaming Monitor,1,389.99,2019-11-17 17:28:00,345 Adams St, Los Angeles,CA,90001 +282327,USB-C Charging Cable,1,11.95,2019-11-28 17:33:00,202 Lincoln St, Portland,OR,97035 +282328,USB-C Charging Cable,1,11.95,2019-11-19 23:35:00,641 1st St, Dallas,TX,75001 +282329,Apple Airpods Headphones,1,150.0,2019-11-28 22:06:00,421 Maple St, Atlanta,GA,30301 +282330,ThinkPad Laptop,1,999.99,2019-11-15 21:09:00,647 Forest St, Dallas,TX,75001 +282331,AA Batteries (4-pack),3,3.84,2019-11-20 09:29:00,638 12th St, Seattle,WA,98101 +282332,Wired Headphones,1,11.99,2019-11-23 21:55:00,865 13th St, Austin,TX,73301 +282333,AAA Batteries (4-pack),1,2.99,2019-11-18 18:39:00,276 14th St, Los Angeles,CA,90001 +282334,Wired Headphones,1,11.99,2019-11-27 08:37:00,587 Main St, Los Angeles,CA,90001 +282335,AAA Batteries (4-pack),1,2.99,2019-11-24 18:18:00,654 Cherry St, San Francisco,CA,94016 +282336,Wired Headphones,1,11.99,2019-11-26 11:22:00,674 Chestnut St, Dallas,TX,75001 +282337,AA Batteries (4-pack),1,3.84,2019-11-11 18:41:00,465 Church St, Boston,MA,02215 +282338,AAA Batteries (4-pack),1,2.99,2019-11-12 08:48:00,514 1st St, New York City,NY,10001 +282339,USB-C Charging Cable,1,11.95,2019-11-02 11:51:00,7 1st St, Portland,OR,97035 +282340,Lightning Charging Cable,1,14.95,2019-11-25 03:22:00,220 Maple St, Boston,MA,02215 +282341,ThinkPad Laptop,1,999.99,2019-11-22 17:56:00,624 5th St, Los Angeles,CA,90001 +282342,USB-C Charging Cable,1,11.95,2019-11-04 15:09:00,608 Washington St, Los Angeles,CA,90001 +282343,iPhone,1,700.0,2019-11-03 00:58:00,245 2nd St, Los Angeles,CA,90001 +282344,27in FHD Monitor,1,149.99,2019-11-01 21:38:00,216 12th St, Los Angeles,CA,90001 +282345,Lightning Charging Cable,1,14.95,2019-11-25 15:17:00,35 2nd St, Boston,MA,02215 +282346,Apple Airpods Headphones,1,150.0,2019-11-26 20:10:00,137 Cedar St, Los Angeles,CA,90001 +282347,Lightning Charging Cable,1,14.95,2019-11-25 20:09:00,100 Johnson St, Atlanta,GA,30301 +282348,USB-C Charging Cable,1,11.95,2019-11-09 12:05:00,865 Main St, Los Angeles,CA,90001 +282349,Apple Airpods Headphones,1,150.0,2019-11-08 18:20:00,864 14th St, Seattle,WA,98101 +282350,ThinkPad Laptop,1,999.99,2019-11-27 11:47:00,33 Hickory St, New York City,NY,10001 +282351,Wired Headphones,3,11.99,2019-11-28 21:27:00,710 Madison St, Boston,MA,02215 +282352,Bose SoundSport Headphones,1,99.99,2019-11-23 20:36:00,580 Madison St, Portland,OR,97035 +282353,Bose SoundSport Headphones,1,99.99,2019-11-09 02:02:00,550 South St, Atlanta,GA,30301 +282354,Apple Airpods Headphones,1,150.0,2019-11-07 11:49:00,656 Adams St, Los Angeles,CA,90001 +282355,USB-C Charging Cable,2,11.95,2019-11-18 06:56:00,971 Madison St, Atlanta,GA,30301 +282356,Bose SoundSport Headphones,1,99.99,2019-11-30 10:26:00,655 Center St, Los Angeles,CA,90001 +282357,Bose SoundSport Headphones,1,99.99,2019-11-21 11:47:00,311 Elm St, Dallas,TX,75001 +282358,34in Ultrawide Monitor,1,379.99,2019-11-01 18:41:00,636 North St, New York City,NY,10001 +282359,34in Ultrawide Monitor,1,379.99,2019-11-06 17:52:00,410 Walnut St, San Francisco,CA,94016 +282360,AA Batteries (4-pack),1,3.84,2019-11-29 16:35:00,339 Lakeview St, Los Angeles,CA,90001 +282361,Apple Airpods Headphones,1,150.0,2019-11-09 18:10:00,30 Willow St, San Francisco,CA,94016 +282362,Apple Airpods Headphones,1,150.0,2019-11-19 17:25:00,785 Main St, Boston,MA,02215 +282363,AAA Batteries (4-pack),1,2.99,2019-11-13 17:27:00,16 4th St, San Francisco,CA,94016 +282364,Lightning Charging Cable,1,14.95,2019-11-07 15:29:00,28 8th St, New York City,NY,10001 +282365,AAA Batteries (4-pack),1,2.99,2019-11-11 22:10:00,249 5th St, Los Angeles,CA,90001 +282366,ThinkPad Laptop,1,999.99,2019-11-24 18:34:00,929 Johnson St, New York City,NY,10001 +282367,Bose SoundSport Headphones,1,99.99,2019-11-24 23:09:00,122 Willow St, Boston,MA,02215 +282368,34in Ultrawide Monitor,1,379.99,2019-11-22 00:52:00,153 Cedar St, Austin,TX,73301 +282369,USB-C Charging Cable,2,11.95,2019-11-04 13:51:00,277 4th St, Portland,OR,97035 +282370,Wired Headphones,1,11.99,2019-11-26 07:42:00,992 5th St, San Francisco,CA,94016 +282371,Lightning Charging Cable,1,14.95,2019-11-19 14:44:00,492 River St, Los Angeles,CA,90001 +282372,AA Batteries (4-pack),1,3.84,2019-11-11 12:34:00,896 Jackson St, New York City,NY,10001 +282373,AAA Batteries (4-pack),3,2.99,2019-11-01 10:33:00,820 Meadow St, Los Angeles,CA,90001 +282374,AA Batteries (4-pack),1,3.84,2019-11-15 10:05:00,241 2nd St, New York City,NY,10001 +282375,Lightning Charging Cable,1,14.95,2019-11-14 08:21:00,284 Walnut St, Dallas,TX,75001 +282376,iPhone,1,700.0,2019-11-15 15:09:00,297 Forest St, San Francisco,CA,94016 +282377,Flatscreen TV,1,300.0,2019-11-23 14:27:00,82 9th St, San Francisco,CA,94016 +282378,Wired Headphones,1,11.99,2019-11-10 18:22:00,976 Willow St, Los Angeles,CA,90001 +282379,USB-C Charging Cable,1,11.95,2019-11-26 15:48:00,749 10th St, Seattle,WA,98101 +282380,Lightning Charging Cable,1,14.95,2019-11-11 19:53:00,524 Main St, New York City,NY,10001 +282381,Wired Headphones,1,11.99,2019-11-15 21:00:00,84 Adams St, San Francisco,CA,94016 +282382,27in FHD Monitor,1,149.99,2019-11-21 13:03:00,966 13th St, New York City,NY,10001 +282383,AA Batteries (4-pack),3,3.84,2019-11-04 20:35:00,598 Walnut St, New York City,NY,10001 +282384,Lightning Charging Cable,1,14.95,2019-11-22 12:41:00,438 West St, San Francisco,CA,94016 +282385,20in Monitor,1,109.99,2019-11-06 22:58:00,555 Jackson St, New York City,NY,10001 +282386,AA Batteries (4-pack),1,3.84,2019-11-12 01:05:00,725 Cedar St, San Francisco,CA,94016 +282387,AA Batteries (4-pack),1,3.84,2019-11-19 14:37:00,68 7th St, Boston,MA,02215 +282388,USB-C Charging Cable,1,11.95,2019-11-24 13:21:00,208 Johnson St, San Francisco,CA,94016 +282389,AAA Batteries (4-pack),1,2.99,2019-11-22 14:31:00,190 Walnut St, New York City,NY,10001 +282390,Apple Airpods Headphones,1,150.0,2019-11-16 14:19:00,117 Church St, San Francisco,CA,94016 +282391,AAA Batteries (4-pack),3,2.99,2019-11-03 14:26:00,539 10th St, New York City,NY,10001 +282392,iPhone,1,700.0,2019-11-19 13:17:00,790 2nd St, New York City,NY,10001 +282393,Wired Headphones,2,11.99,2019-11-26 11:02:00,969 River St, Los Angeles,CA,90001 +282394,Lightning Charging Cable,1,14.95,2019-11-19 21:43:00,900 Elm St, San Francisco,CA,94016 +282395,Flatscreen TV,1,300.0,2019-11-14 20:34:00,442 4th St, Los Angeles,CA,90001 +282396,USB-C Charging Cable,1,11.95,2019-11-30 18:18:00,987 Maple St, Atlanta,GA,30301 +282397,AAA Batteries (4-pack),1,2.99,2019-11-24 10:55:00,575 South St, San Francisco,CA,94016 +282398,Bose SoundSport Headphones,1,99.99,2019-11-13 23:10:00,770 Hickory St, Portland,OR,97035 +282399,Bose SoundSport Headphones,1,99.99,2019-11-30 17:58:00,196 Ridge St, Dallas,TX,75001 +282400,Bose SoundSport Headphones,1,99.99,2019-11-20 14:13:00,570 Madison St, Atlanta,GA,30301 +282401,Flatscreen TV,1,300.0,2019-11-05 14:16:00,547 8th St, New York City,NY,10001 +282402,Lightning Charging Cable,1,14.95,2019-11-03 20:07:00,814 Ridge St, New York City,NY,10001 +282403,AAA Batteries (4-pack),2,2.99,2019-11-12 13:02:00,565 14th St, Los Angeles,CA,90001 +282404,USB-C Charging Cable,1,11.95,2019-11-16 14:12:00,869 Adams St, Los Angeles,CA,90001 +282405,AAA Batteries (4-pack),4,2.99,2019-11-10 11:39:00,378 Sunset St, Portland,OR,97035 +282406,Google Phone,1,600.0,2019-11-02 13:47:00,63 Wilson St, Seattle,WA,98101 +282406,USB-C Charging Cable,1,11.95,2019-11-02 13:47:00,63 Wilson St, Seattle,WA,98101 +282406,Wired Headphones,1,11.99,2019-11-02 13:47:00,63 Wilson St, Seattle,WA,98101 +282407,20in Monitor,1,109.99,2019-11-05 14:37:00,905 10th St, New York City,NY,10001 +282408,USB-C Charging Cable,1,11.95,2019-11-18 04:50:00,733 Meadow St, Seattle,WA,98101 +282409,AA Batteries (4-pack),3,3.84,2019-11-04 20:20:00,681 Church St, Boston,MA,02215 +282410,Wired Headphones,1,11.99,2019-11-23 20:23:00,479 5th St, Atlanta,GA,30301 +282411,AAA Batteries (4-pack),2,2.99,2019-11-15 18:05:00,450 Meadow St, San Francisco,CA,94016 +282412,34in Ultrawide Monitor,1,379.99,2019-11-21 12:15:00,693 Madison St, Los Angeles,CA,90001 +282413,Apple Airpods Headphones,1,150.0,2019-11-28 14:44:00,770 Adams St, Los Angeles,CA,90001 +282414,Wired Headphones,1,11.99,2019-11-06 12:34:00,837 Park St, San Francisco,CA,94016 +282415,AA Batteries (4-pack),1,3.84,2019-11-10 20:30:00,94 Pine St, Portland,OR,97035 +282416,ThinkPad Laptop,1,999.99,2019-11-23 11:51:00,990 Cedar St, Seattle,WA,98101 +282417,iPhone,1,700.0,2019-11-26 13:40:00,410 Hickory St, San Francisco,CA,94016 +282418,Google Phone,1,600.0,2019-11-13 19:37:00,753 Lakeview St, Dallas,TX,75001 +282419,Google Phone,1,600.0,2019-11-07 19:52:00,46 Sunset St, New York City,NY,10001 +282420,Bose SoundSport Headphones,1,99.99,2019-11-21 09:22:00,186 Chestnut St, San Francisco,CA,94016 +282421,20in Monitor,1,109.99,2019-11-30 18:42:00,346 River St, Seattle,WA,98101 +282422,Lightning Charging Cable,1,14.95,2019-11-09 15:30:00,887 Maple St, San Francisco,CA,94016 +282423,Vareebadd Phone,1,400.0,2019-11-28 19:58:00,286 Church St, New York City,NY,10001 +282424,Apple Airpods Headphones,1,150.0,2019-11-13 14:07:00,775 5th St, Atlanta,GA,30301 +282425,AAA Batteries (4-pack),1,2.99,2019-11-19 17:36:00,237 Park St, Austin,TX,73301 +282426,34in Ultrawide Monitor,1,379.99,2019-11-10 11:38:00,881 Main St, Seattle,WA,98101 +282427,27in FHD Monitor,1,149.99,2019-11-23 18:33:00,410 Ridge St, Los Angeles,CA,90001 +282428,Flatscreen TV,1,300.0,2019-11-02 10:49:00,49 West St, Seattle,WA,98101 +282429,USB-C Charging Cable,1,11.95,2019-11-01 18:45:00,655 4th St, San Francisco,CA,94016 +282430,27in FHD Monitor,1,149.99,2019-11-07 12:51:00,261 9th St, Atlanta,GA,30301 +282431,AAA Batteries (4-pack),1,2.99,2019-11-08 21:08:00,648 Church St, Boston,MA,02215 +282432,34in Ultrawide Monitor,1,379.99,2019-11-08 13:35:00,319 South St, Seattle,WA,98101 +282433,34in Ultrawide Monitor,1,379.99,2019-11-12 07:57:00,432 10th St, Seattle,WA,98101 +282434,USB-C Charging Cable,1,11.95,2019-11-19 22:37:00,155 2nd St, San Francisco,CA,94016 +282435,34in Ultrawide Monitor,1,379.99,2019-11-03 13:13:00,7 5th St, Boston,MA,02215 +282436,Apple Airpods Headphones,1,150.0,2019-11-08 15:31:00,827 Lincoln St, Los Angeles,CA,90001 +282437,Lightning Charging Cable,1,14.95,2019-11-06 12:27:00,853 Jackson St, Dallas,TX,75001 +282438,Lightning Charging Cable,1,14.95,2019-11-12 15:04:00,615 Pine St, New York City,NY,10001 +282439,USB-C Charging Cable,1,11.95,2019-11-14 20:57:00,588 Elm St, Los Angeles,CA,90001 +282440,USB-C Charging Cable,1,11.95,2019-11-05 12:36:00,33 Pine St, San Francisco,CA,94016 +282441,Lightning Charging Cable,1,14.95,2019-11-24 18:34:00,484 Park St, New York City,NY,10001 +282442,AAA Batteries (4-pack),1,2.99,2019-11-20 19:11:00,985 Johnson St, San Francisco,CA,94016 +282443,Wired Headphones,1,11.99,2019-11-09 00:55:00,277 4th St, Austin,TX,73301 +282444,AA Batteries (4-pack),1,3.84,2019-11-05 12:06:00,424 Lakeview St, Atlanta,GA,30301 +282445,Lightning Charging Cable,1,14.95,2019-11-06 20:01:00,730 11th St, Dallas,TX,75001 +282446,AAA Batteries (4-pack),1,2.99,2019-11-25 09:09:00,227 Dogwood St, Atlanta,GA,30301 +282447,Google Phone,1,600.0,2019-11-28 22:26:00,835 Sunset St, Boston,MA,02215 +282448,ThinkPad Laptop,1,999.99,2019-11-07 23:48:00,592 Pine St, Seattle,WA,98101 +282449,Macbook Pro Laptop,1,1700.0,2019-11-28 21:23:00,594 11th St, Los Angeles,CA,90001 +282450,AAA Batteries (4-pack),1,2.99,2019-11-24 15:49:00,168 Jefferson St, San Francisco,CA,94016 +282451,USB-C Charging Cable,2,11.95,2019-11-10 12:30:00,116 Lakeview St, Austin,TX,73301 +282452,AAA Batteries (4-pack),2,2.99,2019-11-11 12:48:00,99 North St, San Francisco,CA,94016 +282453,Apple Airpods Headphones,1,150.0,2019-11-15 13:50:00,237 Forest St, New York City,NY,10001 +282454,USB-C Charging Cable,1,11.95,2019-11-27 02:51:00,283 Hickory St, Atlanta,GA,30301 +282455,Apple Airpods Headphones,1,150.0,2019-11-10 17:41:00,567 Forest St, San Francisco,CA,94016 +282456,Lightning Charging Cable,1,14.95,2019-11-18 00:52:00,510 1st St, Atlanta,GA,30301 +282457,ThinkPad Laptop,1,999.99,2019-11-26 20:08:00,877 Church St, Atlanta,GA,30301 +282458,Lightning Charging Cable,1,14.95,2019-11-06 22:46:00,205 Adams St, Los Angeles,CA,90001 +282459,USB-C Charging Cable,1,11.95,2019-11-07 18:14:00,568 West St, Atlanta,GA,30301 +282460,Bose SoundSport Headphones,1,99.99,2019-11-16 00:21:00,199 Dogwood St, Los Angeles,CA,90001 +282461,USB-C Charging Cable,1,11.95,2019-11-04 14:34:00,439 Hill St, San Francisco,CA,94016 +282462,Flatscreen TV,1,300.0,2019-11-24 11:34:00,159 4th St, New York City,NY,10001 +282463,AAA Batteries (4-pack),1,2.99,2019-11-12 18:56:00,816 Cherry St, Boston,MA,02215 +282464,Macbook Pro Laptop,1,1700.0,2019-11-30 13:50:00,297 Cedar St, San Francisco,CA,94016 +282464,USB-C Charging Cable,2,11.95,2019-11-30 13:50:00,297 Cedar St, San Francisco,CA,94016 +282465,Wired Headphones,1,11.99,2019-11-14 19:57:00,308 Jefferson St, San Francisco,CA,94016 +282466,Bose SoundSport Headphones,1,99.99,2019-11-15 20:19:00,976 Walnut St, New York City,NY,10001 +282467,Lightning Charging Cable,1,14.95,2019-11-22 23:15:00,43 9th St, San Francisco,CA,94016 +282468,AAA Batteries (4-pack),2,2.99,2019-11-08 18:22:00,544 1st St, San Francisco,CA,94016 +282469,Wired Headphones,1,11.99,2019-11-29 16:31:00,122 Spruce St, Atlanta,GA,30301 +282470,iPhone,1,700.0,2019-11-09 06:07:00,464 Jefferson St, Los Angeles,CA,90001 +282470,Apple Airpods Headphones,1,150.0,2019-11-09 06:07:00,464 Jefferson St, Los Angeles,CA,90001 +282471,Apple Airpods Headphones,1,150.0,2019-11-01 19:56:00,849 Hickory St, New York City,NY,10001 +282472,AAA Batteries (4-pack),1,2.99,2019-11-13 09:44:00,925 2nd St, Boston,MA,02215 +282473,Apple Airpods Headphones,1,150.0,2019-11-16 01:35:00,395 Forest St, Los Angeles,CA,90001 +282474,Wired Headphones,1,11.99,2019-11-30 21:06:00,624 South St, New York City,NY,10001 +282475,Lightning Charging Cable,1,14.95,2019-11-10 10:04:00,694 Forest St, San Francisco,CA,94016 +282476,Vareebadd Phone,1,400.0,2019-11-01 15:52:00,666 Willow St, Portland,OR,97035 +282476,USB-C Charging Cable,1,11.95,2019-11-01 15:52:00,666 Willow St, Portland,OR,97035 +282477,USB-C Charging Cable,1,11.95,2019-11-04 12:52:00,357 Willow St, Los Angeles,CA,90001 +282478,AA Batteries (4-pack),1,3.84,2019-11-09 09:46:00,843 Meadow St, San Francisco,CA,94016 +282479,Apple Airpods Headphones,1,150.0,2019-11-10 13:20:00,408 Park St, Los Angeles,CA,90001 +282480,AAA Batteries (4-pack),1,2.99,2019-11-11 14:54:00,843 Chestnut St, Boston,MA,02215 +282481,34in Ultrawide Monitor,1,379.99,2019-11-10 11:54:00,837 Highland St, Boston,MA,02215 +282482,AA Batteries (4-pack),1,3.84,2019-11-04 18:00:00,583 Adams St, San Francisco,CA,94016 +282483,Bose SoundSport Headphones,1,99.99,2019-11-01 18:57:00,553 Pine St, Portland,ME,04101 +282484,Flatscreen TV,1,300.0,2019-11-14 10:24:00,636 West St, Dallas,TX,75001 +282485,34in Ultrawide Monitor,1,379.99,2019-11-05 20:12:00,956 10th St, Dallas,TX,75001 +282486,AA Batteries (4-pack),1,3.84,2019-11-07 11:57:00,699 Washington St, San Francisco,CA,94016 +282487,AAA Batteries (4-pack),3,2.99,2019-11-27 18:58:00,436 River St, New York City,NY,10001 +282488,Bose SoundSport Headphones,1,99.99,2019-11-26 18:13:00,201 Lake St, San Francisco,CA,94016 +282489,USB-C Charging Cable,1,11.95,2019-11-30 12:44:00,428 11th St, Los Angeles,CA,90001 +282490,Bose SoundSport Headphones,1,99.99,2019-11-13 13:00:00,911 Chestnut St, Portland,OR,97035 +282491,USB-C Charging Cable,1,11.95,2019-11-05 12:38:00,468 8th St, San Francisco,CA,94016 +282492,AAA Batteries (4-pack),1,2.99,2019-11-11 17:39:00,336 Sunset St, San Francisco,CA,94016 +282493,USB-C Charging Cable,1,11.95,2019-11-29 13:44:00,200 West St, Seattle,WA,98101 +282494,Apple Airpods Headphones,1,150.0,2019-11-04 23:54:00,539 Main St, San Francisco,CA,94016 +282495,USB-C Charging Cable,1,11.95,2019-11-11 12:52:00,250 10th St, Boston,MA,02215 +282496,Apple Airpods Headphones,1,150.0,2019-11-13 23:44:00,895 6th St, San Francisco,CA,94016 +282497,USB-C Charging Cable,1,11.95,2019-11-23 21:41:00,598 Hickory St, Los Angeles,CA,90001 +282498,Lightning Charging Cable,1,14.95,2019-11-16 16:51:00,322 Wilson St, San Francisco,CA,94016 +282499,Apple Airpods Headphones,1,150.0,2019-11-27 19:45:00,314 Cedar St, Portland,OR,97035 +282500,Wired Headphones,1,11.99,2019-11-15 12:57:00,962 1st St, San Francisco,CA,94016 +282501,Bose SoundSport Headphones,1,99.99,2019-11-30 13:16:00,691 13th St, Boston,MA,02215 +282502,Apple Airpods Headphones,1,150.0,2019-11-18 18:27:00,227 Madison St, San Francisco,CA,94016 +282503,Lightning Charging Cable,1,14.95,2019-11-13 00:52:00,741 Hickory St, New York City,NY,10001 +282504,Apple Airpods Headphones,1,150.0,2019-11-04 10:59:00,383 1st St, Los Angeles,CA,90001 +282505,iPhone,1,700.0,2019-11-21 19:16:00,364 Hickory St, San Francisco,CA,94016 +282506,20in Monitor,1,109.99,2019-11-17 18:02:00,557 Hill St, San Francisco,CA,94016 +282507,Apple Airpods Headphones,1,150.0,2019-11-18 11:59:00,480 Washington St, Atlanta,GA,30301 +282508,Lightning Charging Cable,1,14.95,2019-11-07 23:54:00,746 Sunset St, Atlanta,GA,30301 +282509,34in Ultrawide Monitor,1,379.99,2019-11-10 19:42:00,383 Johnson St, Boston,MA,02215 +282510,USB-C Charging Cable,1,11.95,2019-11-21 12:18:00,680 13th St, New York City,NY,10001 +282511,iPhone,1,700.0,2019-11-22 11:09:00,41 Jefferson St, Boston,MA,02215 +282512,Apple Airpods Headphones,1,150.0,2019-11-14 18:08:00,170 Meadow St, San Francisco,CA,94016 +282513,AA Batteries (4-pack),1,3.84,2019-11-27 19:55:00,860 Meadow St, Los Angeles,CA,90001 +282514,Bose SoundSport Headphones,1,99.99,2019-11-14 15:54:00,486 Meadow St, Seattle,WA,98101 +282515,Wired Headphones,1,11.99,2019-11-05 09:08:00,843 1st St, San Francisco,CA,94016 +282516,Bose SoundSport Headphones,1,99.99,2019-11-26 16:34:00,249 Hickory St, San Francisco,CA,94016 +282517,AA Batteries (4-pack),1,3.84,2019-11-05 16:19:00,139 Cherry St, Atlanta,GA,30301 +282518,AAA Batteries (4-pack),1,2.99,2019-11-04 13:02:00,606 5th St, New York City,NY,10001 +282519,Wired Headphones,1,11.99,2019-11-06 18:40:00,270 Lake St, Boston,MA,02215 +282520,AAA Batteries (4-pack),1,2.99,2019-11-21 12:19:00,267 11th St, Atlanta,GA,30301 +282521,Apple Airpods Headphones,1,150.0,2019-11-06 15:43:00,658 11th St, Portland,ME,04101 +282522,Apple Airpods Headphones,1,150.0,2019-11-05 10:48:00,350 Washington St, Portland,OR,97035 +282523,Apple Airpods Headphones,1,150.0,2019-11-11 22:50:00,331 8th St, Los Angeles,CA,90001 +282524,AAA Batteries (4-pack),1,2.99,2019-11-21 22:14:00,590 Pine St, Los Angeles,CA,90001 +282525,USB-C Charging Cable,1,11.95,2019-11-08 21:51:00,337 Ridge St, San Francisco,CA,94016 +282526,AA Batteries (4-pack),1,3.84,2019-11-02 10:56:00,246 Cedar St, Portland,OR,97035 +282527,USB-C Charging Cable,1,11.95,2019-11-21 15:04:00,221 7th St, Dallas,TX,75001 +282528,34in Ultrawide Monitor,1,379.99,2019-11-09 07:00:00,294 Sunset St, Portland,OR,97035 +282529,27in FHD Monitor,1,149.99,2019-11-24 22:56:00,307 Cedar St, San Francisco,CA,94016 +282529,AAA Batteries (4-pack),1,2.99,2019-11-24 22:56:00,307 Cedar St, San Francisco,CA,94016 +282530,USB-C Charging Cable,1,11.95,2019-11-05 18:44:00,459 West St, Los Angeles,CA,90001 +282531,AAA Batteries (4-pack),1,2.99,2019-11-17 20:11:00,815 Jefferson St, San Francisco,CA,94016 +282532,Lightning Charging Cable,1,14.95,2019-11-18 15:01:00,762 8th St, Atlanta,GA,30301 +282533,AAA Batteries (4-pack),1,2.99,2019-11-02 11:27:00,268 8th St, New York City,NY,10001 +282534,27in FHD Monitor,1,149.99,2019-11-17 14:16:00,433 Main St, Los Angeles,CA,90001 +282535,USB-C Charging Cable,1,11.95,2019-11-01 23:10:00,20 North St, San Francisco,CA,94016 +282536,27in 4K Gaming Monitor,1,389.99,2019-11-23 15:16:00,891 Forest St, San Francisco,CA,94016 +282537,27in FHD Monitor,1,149.99,2019-11-30 20:19:00,80 12th St, Portland,ME,04101 +282538,Macbook Pro Laptop,1,1700.0,2019-11-15 06:21:00,366 Madison St, Austin,TX,73301 +282539,27in 4K Gaming Monitor,1,389.99,2019-11-19 12:06:00,965 North St, Dallas,TX,75001 +282540,20in Monitor,1,109.99,2019-11-12 15:29:00,488 Center St, Dallas,TX,75001 +282541,AA Batteries (4-pack),2,3.84,2019-11-14 18:09:00,301 6th St, San Francisco,CA,94016 +282542,Apple Airpods Headphones,1,150.0,2019-11-12 16:49:00,615 14th St, San Francisco,CA,94016 +282543,27in FHD Monitor,1,149.99,2019-11-30 22:43:00,771 12th St, Dallas,TX,75001 +282544,Google Phone,1,600.0,2019-11-01 15:11:00,408 Jefferson St, San Francisco,CA,94016 +282545,ThinkPad Laptop,1,999.99,2019-11-08 19:00:00,461 Jefferson St, New York City,NY,10001 +282546,AA Batteries (4-pack),1,3.84,2019-11-05 15:29:00,433 1st St, Dallas,TX,75001 +282547,Lightning Charging Cable,1,14.95,2019-11-28 14:48:00,611 Highland St, San Francisco,CA,94016 +282548,Apple Airpods Headphones,1,150.0,2019-11-22 07:58:00,743 Cherry St, Portland,OR,97035 +282549,Lightning Charging Cable,1,14.95,2019-11-04 00:57:00,385 9th St, San Francisco,CA,94016 +282550,Wired Headphones,1,11.99,2019-11-30 08:40:00,975 Main St, Dallas,TX,75001 +282551,LG Washing Machine,1,600.0,2019-11-18 16:25:00,218 Meadow St, Seattle,WA,98101 +282552,AAA Batteries (4-pack),5,2.99,2019-11-12 11:51:00,557 Adams St, Seattle,WA,98101 +282553,Google Phone,1,600.0,2019-11-03 12:06:00,954 Spruce St, New York City,NY,10001 +282554,AAA Batteries (4-pack),1,2.99,2019-11-07 21:02:00,930 Chestnut St, Atlanta,GA,30301 +282555,AAA Batteries (4-pack),1,2.99,2019-11-12 16:19:00,759 Hill St, Seattle,WA,98101 +282556,34in Ultrawide Monitor,1,379.99,2019-11-28 20:22:00,405 5th St, Austin,TX,73301 +282557,AAA Batteries (4-pack),2,2.99,2019-11-01 13:31:00,208 8th St, San Francisco,CA,94016 +282558,iPhone,1,700.0,2019-11-14 19:04:00,681 Lake St, Los Angeles,CA,90001 +282559,Apple Airpods Headphones,1,150.0,2019-11-18 22:09:00,704 13th St, San Francisco,CA,94016 +282560,27in 4K Gaming Monitor,1,389.99,2019-11-09 18:27:00,49 Center St, New York City,NY,10001 +282561,USB-C Charging Cable,1,11.95,2019-11-21 20:05:00,790 Willow St, Los Angeles,CA,90001 +282562,Wired Headphones,1,11.99,2019-11-16 10:39:00,771 Cedar St, Boston,MA,02215 +282563,Bose SoundSport Headphones,1,99.99,2019-11-15 21:56:00,850 Adams St, Seattle,WA,98101 +282564,27in FHD Monitor,1,149.99,2019-11-06 23:51:00,435 4th St, New York City,NY,10001 +282565,USB-C Charging Cable,1,11.95,2019-11-08 17:46:00,60 10th St, Los Angeles,CA,90001 +282566,Lightning Charging Cable,1,14.95,2019-11-18 17:14:00,499 Center St, Atlanta,GA,30301 +282567,USB-C Charging Cable,1,11.95,2019-11-25 08:39:00,695 Cedar St, Los Angeles,CA,90001 +282568,27in FHD Monitor,1,149.99,2019-11-25 07:24:00,958 Center St, Boston,MA,02215 +282569,AAA Batteries (4-pack),1,2.99,2019-11-14 18:03:00,920 10th St, San Francisco,CA,94016 +282570,USB-C Charging Cable,1,11.95,2019-11-23 19:33:00,127 Center St, San Francisco,CA,94016 +282570,27in FHD Monitor,1,149.99,2019-11-23 19:33:00,127 Center St, San Francisco,CA,94016 +282571,Macbook Pro Laptop,1,1700.0,2019-11-29 12:36:00,68 Church St, New York City,NY,10001 +282572,AAA Batteries (4-pack),1,2.99,2019-11-12 17:35:00,414 Adams St, Los Angeles,CA,90001 +282573,iPhone,1,700.0,2019-11-27 12:31:00,388 6th St, New York City,NY,10001 +282574,27in FHD Monitor,1,149.99,2019-11-25 09:56:00,261 Washington St, Boston,MA,02215 +282575,iPhone,1,700.0,2019-11-22 15:13:00,704 Sunset St, San Francisco,CA,94016 +282576,iPhone,1,700.0,2019-11-26 19:57:00,89 Church St, Boston,MA,02215 +282577,AAA Batteries (4-pack),2,2.99,2019-11-28 22:03:00,213 Forest St, San Francisco,CA,94016 +282578,Apple Airpods Headphones,1,150.0,2019-11-03 07:46:00,882 Main St, Los Angeles,CA,90001 +282579,AA Batteries (4-pack),2,3.84,2019-11-29 20:28:00,490 Madison St, Dallas,TX,75001 +282580,Macbook Pro Laptop,1,1700.0,2019-11-22 07:29:00,79 Wilson St, Austin,TX,73301 +282581,20in Monitor,1,109.99,2019-11-15 10:58:00,319 12th St, Boston,MA,02215 +282582,Google Phone,1,600.0,2019-11-06 20:02:00,728 4th St, Dallas,TX,75001 +282582,Bose SoundSport Headphones,1,99.99,2019-11-06 20:02:00,728 4th St, Dallas,TX,75001 +282583,iPhone,1,700.0,2019-11-17 21:04:00,922 8th St, Los Angeles,CA,90001 +282584,27in FHD Monitor,1,149.99,2019-11-29 16:41:00,248 South St, Los Angeles,CA,90001 +282585,Bose SoundSport Headphones,1,99.99,2019-11-09 01:34:00,716 Chestnut St, New York City,NY,10001 +282586,27in FHD Monitor,1,149.99,2019-11-14 17:12:00,6 Willow St, New York City,NY,10001 +282587,Wired Headphones,1,11.99,2019-11-07 20:45:00,551 Walnut St, San Francisco,CA,94016 +282588,Macbook Pro Laptop,1,1700.0,2019-11-15 10:01:00,95 North St, Dallas,TX,75001 +282589,34in Ultrawide Monitor,1,379.99,2019-11-05 22:33:00,188 13th St, San Francisco,CA,94016 +282590,Bose SoundSport Headphones,1,99.99,2019-11-26 08:43:00,469 Hickory St, Los Angeles,CA,90001 +282591,AAA Batteries (4-pack),1,2.99,2019-11-18 08:19:00,726 Forest St, Los Angeles,CA,90001 +282592,ThinkPad Laptop,1,999.99,2019-11-26 12:30:00,303 1st St, Los Angeles,CA,90001 +282593,Lightning Charging Cable,1,14.95,2019-11-03 09:49:00,676 2nd St, Portland,ME,04101 +282594,ThinkPad Laptop,1,999.99,2019-11-23 17:51:00,919 12th St, Boston,MA,02215 +282595,AA Batteries (4-pack),1,3.84,2019-11-15 22:43:00,233 Madison St, Dallas,TX,75001 +282596,Google Phone,1,600.0,2019-11-25 06:18:00,197 Maple St, Boston,MA,02215 +282596,USB-C Charging Cable,1,11.95,2019-11-25 06:18:00,197 Maple St, Boston,MA,02215 +282597,Wired Headphones,2,11.99,2019-11-10 14:09:00,448 8th St, Seattle,WA,98101 +282598,AAA Batteries (4-pack),1,2.99,2019-11-04 08:25:00,901 11th St, San Francisco,CA,94016 +282599,iPhone,1,700.0,2019-11-06 13:44:00,83 14th St, Los Angeles,CA,90001 +282599,Wired Headphones,1,11.99,2019-11-06 13:44:00,83 14th St, Los Angeles,CA,90001 +282600,USB-C Charging Cable,2,11.95,2019-11-04 19:44:00,906 12th St, Los Angeles,CA,90001 +282601,AA Batteries (4-pack),2,3.84,2019-11-16 11:14:00,365 Meadow St, Atlanta,GA,30301 +282602,Bose SoundSport Headphones,1,99.99,2019-11-14 15:11:00,697 Cedar St, San Francisco,CA,94016 +282603,Wired Headphones,1,11.99,2019-11-22 10:47:00,825 Highland St, Dallas,TX,75001 +282604,AAA Batteries (4-pack),1,2.99,2019-11-28 19:21:00,78 4th St, New York City,NY,10001 +282605,Lightning Charging Cable,1,14.95,2019-11-21 20:32:00,178 1st St, Portland,OR,97035 +282606,Bose SoundSport Headphones,1,99.99,2019-11-18 09:03:00,611 South St, Seattle,WA,98101 +282607,AA Batteries (4-pack),1,3.84,2019-11-14 09:34:00,750 Jackson St, Atlanta,GA,30301 +282608,AA Batteries (4-pack),1,3.84,2019-11-06 09:08:00,676 13th St, Los Angeles,CA,90001 +282609,AA Batteries (4-pack),1,3.84,2019-11-20 20:01:00,531 Lakeview St, San Francisco,CA,94016 +282610,27in 4K Gaming Monitor,1,389.99,2019-11-14 19:43:00,740 River St, Seattle,WA,98101 +282611,AA Batteries (4-pack),3,3.84,2019-11-12 20:56:00,427 Willow St, San Francisco,CA,94016 +282612,20in Monitor,1,109.99,2019-11-24 20:15:00,215 Hickory St, San Francisco,CA,94016 +282613,AAA Batteries (4-pack),1,2.99,2019-11-15 20:05:00,649 Sunset St, Seattle,WA,98101 +282614,Bose SoundSport Headphones,1,99.99,2019-11-20 14:17:00,623 Lakeview St, Seattle,WA,98101 +282615,AA Batteries (4-pack),1,3.84,2019-11-14 18:57:00,332 11th St, San Francisco,CA,94016 +282616,ThinkPad Laptop,1,999.99,2019-11-20 10:32:00,17 Wilson St, Los Angeles,CA,90001 +282617,AA Batteries (4-pack),1,3.84,2019-11-01 10:59:00,7 Dogwood St, San Francisco,CA,94016 +282618,AAA Batteries (4-pack),1,2.99,2019-11-17 20:59:00,534 5th St, San Francisco,CA,94016 +282619,Wired Headphones,1,11.99,2019-11-18 11:00:00,532 Lakeview St, Los Angeles,CA,90001 +282620,AA Batteries (4-pack),1,3.84,2019-11-03 17:22:00,115 Meadow St, San Francisco,CA,94016 +282621,AA Batteries (4-pack),1,3.84,2019-11-16 13:14:00,493 2nd St, New York City,NY,10001 +282622,Wired Headphones,1,11.99,2019-11-18 12:47:00,368 Ridge St, Austin,TX,73301 +282623,Apple Airpods Headphones,1,150.0,2019-11-18 18:44:00,551 Hickory St, Boston,MA,02215 +282624,Lightning Charging Cable,1,14.95,2019-11-18 18:38:00,244 Cedar St, Portland,OR,97035 +282625,AA Batteries (4-pack),2,3.84,2019-11-30 14:11:00,513 Maple St, Portland,OR,97035 +282626,USB-C Charging Cable,1,11.95,2019-11-09 10:06:00,743 13th St, New York City,NY,10001 +282627,Wired Headphones,2,11.99,2019-11-24 17:49:00,49 Highland St, New York City,NY,10001 +282628,AA Batteries (4-pack),1,3.84,2019-11-06 17:03:00,440 Willow St, Portland,OR,97035 +282629,USB-C Charging Cable,1,11.95,2019-11-06 05:14:00,680 14th St, Boston,MA,02215 +282630,Wired Headphones,1,11.99,2019-11-24 08:32:00,905 5th St, New York City,NY,10001 +282631,27in 4K Gaming Monitor,1,389.99,2019-11-03 19:18:00,23 Dogwood St, Los Angeles,CA,90001 +282632,Vareebadd Phone,1,400.0,2019-11-16 13:15:00,917 Dogwood St, Los Angeles,CA,90001 +282632,Bose SoundSport Headphones,1,99.99,2019-11-16 13:15:00,917 Dogwood St, Los Angeles,CA,90001 +282633,Apple Airpods Headphones,1,150.0,2019-11-21 09:21:00,919 Park St, New York City,NY,10001 +282634,Flatscreen TV,1,300.0,2019-11-29 18:33:00,85 Highland St, Seattle,WA,98101 +282635,Wired Headphones,1,11.99,2019-11-26 11:08:00,62 Park St, Boston,MA,02215 +282636,Apple Airpods Headphones,1,150.0,2019-11-01 10:46:00,370 9th St, Boston,MA,02215 +282637,Google Phone,1,600.0,2019-11-21 14:23:00,668 Sunset St, New York City,NY,10001 +282638,AAA Batteries (4-pack),2,2.99,2019-11-10 09:34:00,118 Pine St, Los Angeles,CA,90001 +282639,AAA Batteries (4-pack),1,2.99,2019-11-11 19:37:00,959 11th St, New York City,NY,10001 +282640,20in Monitor,1,109.99,2019-11-10 21:40:00,979 2nd St, Boston,MA,02215 +282641,27in FHD Monitor,1,149.99,2019-11-01 13:39:00,882 Cherry St, Boston,MA,02215 +282642,USB-C Charging Cable,1,11.95,2019-11-22 00:32:00,445 Hill St, Los Angeles,CA,90001 +282643,ThinkPad Laptop,1,999.99,2019-11-02 03:43:00,147 Walnut St, Boston,MA,02215 +282644,AA Batteries (4-pack),2,3.84,2019-11-29 13:08:00,703 Cedar St, Portland,OR,97035 +282645,Macbook Pro Laptop,1,1700.0,2019-11-05 16:06:00,707 Washington St, San Francisco,CA,94016 +282645,27in FHD Monitor,1,149.99,2019-11-05 16:06:00,707 Washington St, San Francisco,CA,94016 +282646,34in Ultrawide Monitor,1,379.99,2019-11-17 13:21:00,348 Spruce St, Dallas,TX,75001 +282647,20in Monitor,1,109.99,2019-11-15 21:25:00,778 Lincoln St, Boston,MA,02215 +282648,iPhone,1,700.0,2019-11-29 12:18:00,959 Cedar St, Atlanta,GA,30301 +282648,Wired Headphones,1,11.99,2019-11-29 12:18:00,959 Cedar St, Atlanta,GA,30301 +282649,AAA Batteries (4-pack),1,2.99,2019-11-19 16:54:00,957 Lakeview St, Seattle,WA,98101 +282650,AA Batteries (4-pack),1,3.84,2019-11-21 13:15:00,700 Jackson St, New York City,NY,10001 +282651,Wired Headphones,1,11.99,2019-11-02 17:48:00,152 Chestnut St, Atlanta,GA,30301 +282652,34in Ultrawide Monitor,1,379.99,2019-11-17 22:56:00,319 Spruce St, Los Angeles,CA,90001 +282653,USB-C Charging Cable,1,11.95,2019-11-29 19:24:00,424 10th St, San Francisco,CA,94016 +282654,AA Batteries (4-pack),1,3.84,2019-11-23 15:50:00,678 Forest St, San Francisco,CA,94016 +282655,Bose SoundSport Headphones,1,99.99,2019-11-03 23:59:00,179 Johnson St, Los Angeles,CA,90001 +282656,Google Phone,1,600.0,2019-11-21 14:57:00,907 5th St, San Francisco,CA,94016 +282656,Bose SoundSport Headphones,1,99.99,2019-11-21 14:57:00,907 5th St, San Francisco,CA,94016 +282657,Bose SoundSport Headphones,1,99.99,2019-11-25 16:25:00,891 Elm St, Portland,ME,04101 +282658,34in Ultrawide Monitor,1,379.99,2019-11-04 10:45:00,205 Spruce St, New York City,NY,10001 +282659,USB-C Charging Cable,1,11.95,2019-11-01 19:24:00,774 14th St, New York City,NY,10001 +282660,Bose SoundSport Headphones,1,99.99,2019-11-09 15:00:00,703 Hill St, San Francisco,CA,94016 +282661,AAA Batteries (4-pack),1,2.99,2019-11-03 08:47:00,948 5th St, Los Angeles,CA,90001 +282662,34in Ultrawide Monitor,1,379.99,2019-11-02 01:37:00,778 6th St, Seattle,WA,98101 +282662,AAA Batteries (4-pack),1,2.99,2019-11-02 01:37:00,778 6th St, Seattle,WA,98101 +282663,AAA Batteries (4-pack),3,2.99,2019-11-21 10:56:00,428 Hickory St, Boston,MA,02215 +282664,AAA Batteries (4-pack),1,2.99,2019-11-16 14:27:00,778 Jefferson St, New York City,NY,10001 +282665,Flatscreen TV,1,300.0,2019-11-10 17:02:00,226 Jackson St, Portland,OR,97035 +282666,iPhone,1,700.0,2019-11-21 16:47:00,172 Wilson St, Seattle,WA,98101 +282667,27in 4K Gaming Monitor,1,389.99,2019-11-01 18:23:00,360 North St, New York City,NY,10001 +282668,AAA Batteries (4-pack),1,2.99,2019-11-07 00:32:00,424 Cedar St, Los Angeles,CA,90001 +282669,34in Ultrawide Monitor,1,379.99,2019-11-23 17:53:00,461 River St, Austin,TX,73301 +282670,Apple Airpods Headphones,1,150.0,2019-11-16 10:01:00,839 Center St, Boston,MA,02215 +282671,27in FHD Monitor,1,149.99,2019-11-08 20:36:00,932 5th St, Portland,OR,97035 +282672,Apple Airpods Headphones,1,150.0,2019-11-30 23:56:00,449 6th St, Atlanta,GA,30301 +282673,USB-C Charging Cable,1,11.95,2019-11-05 18:53:00,573 Church St, San Francisco,CA,94016 +282674,USB-C Charging Cable,1,11.95,2019-11-20 14:10:00,597 14th St, Boston,MA,02215 +282675,27in 4K Gaming Monitor,1,389.99,2019-12-01 01:45:00,501 9th St, Los Angeles,CA,90001 +282676,AAA Batteries (4-pack),2,2.99,2019-11-07 16:25:00,688 10th St, Dallas,TX,75001 +282677,USB-C Charging Cable,1,11.95,2019-11-14 16:14:00,229 Willow St, Austin,TX,73301 +282678,Flatscreen TV,1,300.0,2019-11-17 19:32:00,270 Madison St, San Francisco,CA,94016 +282679,Wired Headphones,1,11.99,2019-11-20 21:43:00,470 6th St, Los Angeles,CA,90001 +282680,Lightning Charging Cable,1,14.95,2019-11-29 10:39:00,245 Chestnut St, New York City,NY,10001 +282681,ThinkPad Laptop,1,999.99,2019-11-04 17:51:00,418 Main St, New York City,NY,10001 +282682,Google Phone,1,600.0,2019-11-02 10:21:00,332 1st St, Los Angeles,CA,90001 +282683,iPhone,1,700.0,2019-11-07 12:35:00,640 Center St, San Francisco,CA,94016 +282684,Bose SoundSport Headphones,1,99.99,2019-11-01 21:12:00,995 Elm St, San Francisco,CA,94016 +282685,Wired Headphones,1,11.99,2019-11-23 18:42:00,137 Lincoln St, New York City,NY,10001 +282686,USB-C Charging Cable,1,11.95,2019-11-12 16:27:00,957 West St, Los Angeles,CA,90001 +282687,Flatscreen TV,1,300.0,2019-11-11 18:37:00,928 Lincoln St, Portland,OR,97035 +282688,Macbook Pro Laptop,1,1700.0,2019-11-27 17:49:00,943 14th St, San Francisco,CA,94016 +282689,iPhone,1,700.0,2019-11-17 16:28:00,27 North St, San Francisco,CA,94016 +282689,Lightning Charging Cable,1,14.95,2019-11-17 16:28:00,27 North St, San Francisco,CA,94016 +282690,Lightning Charging Cable,1,14.95,2019-11-21 17:31:00,957 Willow St, New York City,NY,10001 +282691,34in Ultrawide Monitor,1,379.99,2019-11-02 18:07:00,74 South St, Portland,OR,97035 +282692,AAA Batteries (4-pack),2,2.99,2019-11-12 12:38:00,500 Center St, Dallas,TX,75001 +282693,USB-C Charging Cable,1,11.95,2019-11-08 11:08:00,584 Jackson St, Los Angeles,CA,90001 +282694,Apple Airpods Headphones,1,150.0,2019-11-22 23:16:00,513 Dogwood St, Seattle,WA,98101 +282695,Apple Airpods Headphones,1,150.0,2019-11-25 11:25:00,765 Main St, Los Angeles,CA,90001 +282696,20in Monitor,1,109.99,2019-11-25 02:00:00,584 Cherry St, Austin,TX,73301 +282697,Flatscreen TV,1,300.0,2019-11-03 23:00:00,764 Johnson St, New York City,NY,10001 +282698,Apple Airpods Headphones,1,150.0,2019-11-06 21:10:00,430 Dogwood St, New York City,NY,10001 +282699,Lightning Charging Cable,1,14.95,2019-11-22 16:44:00,250 West St, San Francisco,CA,94016 +282700,iPhone,1,700.0,2019-11-09 19:11:00,12 1st St, New York City,NY,10001 +282701,Wired Headphones,1,11.99,2019-11-13 20:04:00,704 West St, New York City,NY,10001 +282702,Apple Airpods Headphones,1,150.0,2019-11-27 11:45:00,770 Cherry St, San Francisco,CA,94016 +282703,USB-C Charging Cable,1,11.95,2019-11-13 11:45:00,371 Park St, Boston,MA,02215 +282704,USB-C Charging Cable,1,11.95,2019-11-24 17:34:00,832 13th St, Dallas,TX,75001 +282705,Macbook Pro Laptop,1,1700.0,2019-11-15 21:38:00,737 Wilson St, Austin,TX,73301 +282706,AA Batteries (4-pack),1,3.84,2019-11-12 14:34:00,227 Walnut St, San Francisco,CA,94016 +282707,iPhone,1,700.0,2019-11-03 22:18:00,742 Meadow St, Seattle,WA,98101 +282708,AA Batteries (4-pack),1,3.84,2019-11-18 16:35:00,35 Spruce St, New York City,NY,10001 +282709,Lightning Charging Cable,1,14.95,2019-11-08 16:11:00,40 8th St, San Francisco,CA,94016 +282710,Google Phone,1,600.0,2019-11-25 17:37:00,645 River St, San Francisco,CA,94016 +282711,Flatscreen TV,1,300.0,2019-11-04 14:32:00,867 Elm St, San Francisco,CA,94016 +282712,Lightning Charging Cable,2,14.95,2019-11-28 21:26:00,297 10th St, Atlanta,GA,30301 +282713,Wired Headphones,1,11.99,2019-11-18 18:29:00,568 Chestnut St, Atlanta,GA,30301 +282714,34in Ultrawide Monitor,1,379.99,2019-11-05 19:05:00,938 Washington St, San Francisco,CA,94016 +282715,Flatscreen TV,1,300.0,2019-11-27 23:10:00,870 Hill St, Seattle,WA,98101 +282716,27in 4K Gaming Monitor,1,389.99,2019-11-02 19:42:00,92 Meadow St, San Francisco,CA,94016 +282717,ThinkPad Laptop,1,999.99,2019-11-18 18:10:00,314 4th St, New York City,NY,10001 +282718,Flatscreen TV,1,300.0,2019-11-18 00:00:00,421 Hill St, Seattle,WA,98101 +282719,34in Ultrawide Monitor,1,379.99,2019-11-02 17:32:00,577 Hill St, San Francisco,CA,94016 +282720,AA Batteries (4-pack),2,3.84,2019-11-26 21:33:00,706 7th St, Los Angeles,CA,90001 +282721,27in 4K Gaming Monitor,1,389.99,2019-11-04 18:15:00,823 1st St, Los Angeles,CA,90001 +282722,27in 4K Gaming Monitor,1,389.99,2019-11-05 14:41:00,36 Madison St, Los Angeles,CA,90001 +282723,Lightning Charging Cable,1,14.95,2019-11-24 20:42:00,923 Main St, San Francisco,CA,94016 +282724,AA Batteries (4-pack),1,3.84,2019-11-16 13:43:00,996 1st St, Seattle,WA,98101 +282725,Wired Headphones,1,11.99,2019-11-22 15:05:00,998 Dogwood St, Seattle,WA,98101 +282726,Flatscreen TV,1,300.0,2019-11-14 18:48:00,690 6th St, San Francisco,CA,94016 +282726,Google Phone,1,600.0,2019-11-14 18:48:00,690 6th St, San Francisco,CA,94016 +282727,Lightning Charging Cable,1,14.95,2019-11-13 22:47:00,964 Jackson St, San Francisco,CA,94016 +282728,AA Batteries (4-pack),2,3.84,2019-11-04 09:14:00,132 Lakeview St, Dallas,TX,75001 +282729,AAA Batteries (4-pack),2,2.99,2019-11-26 16:41:00,413 Dogwood St, San Francisco,CA,94016 +282730,Bose SoundSport Headphones,1,99.99,2019-11-24 21:57:00,967 Lakeview St, Austin,TX,73301 +282731,27in FHD Monitor,1,149.99,2019-11-17 15:59:00,180 Hickory St, Boston,MA,02215 +282732,Macbook Pro Laptop,1,1700.0,2019-11-17 22:51:00,299 4th St, Los Angeles,CA,90001 +282733,AAA Batteries (4-pack),1,2.99,2019-11-17 20:53:00,276 9th St, New York City,NY,10001 +282734,Apple Airpods Headphones,1,150.0,2019-11-18 00:06:00,320 8th St, Los Angeles,CA,90001 +282735,Wired Headphones,1,11.99,2019-11-01 17:27:00,176 7th St, Seattle,WA,98101 +282736,Apple Airpods Headphones,1,150.0,2019-11-21 19:01:00,987 2nd St, Boston,MA,02215 +282737,Wired Headphones,1,11.99,2019-11-28 08:24:00,421 Highland St, Atlanta,GA,30301 +282738,USB-C Charging Cable,1,11.95,2019-11-03 19:12:00,190 7th St, San Francisco,CA,94016 +282739,Lightning Charging Cable,1,14.95,2019-11-09 15:16:00,290 Cherry St, San Francisco,CA,94016 +282740,Lightning Charging Cable,1,14.95,2019-11-12 04:34:00,967 Church St, New York City,NY,10001 +282741,AA Batteries (4-pack),1,3.84,2019-11-12 15:52:00,702 Maple St, San Francisco,CA,94016 +282742,20in Monitor,1,109.99,2019-11-18 16:08:00,992 5th St, Atlanta,GA,30301 +282743,Apple Airpods Headphones,1,150.0,2019-11-07 07:47:00,203 Jefferson St, New York City,NY,10001 +282744,ThinkPad Laptop,1,999.99,2019-11-13 12:12:00,869 Jefferson St, New York City,NY,10001 +282745,Apple Airpods Headphones,1,150.0,2019-11-14 09:41:00,928 Hill St, Seattle,WA,98101 +282746,27in FHD Monitor,1,149.99,2019-11-19 19:40:00,938 1st St, New York City,NY,10001 +282747,USB-C Charging Cable,1,11.95,2019-11-17 14:49:00,966 Johnson St, Los Angeles,CA,90001 +282748,Apple Airpods Headphones,1,150.0,2019-11-04 11:22:00,10 Church St, New York City,NY,10001 +282749,Wired Headphones,1,11.99,2019-11-20 22:42:00,456 6th St, Boston,MA,02215 +282750,AAA Batteries (4-pack),3,2.99,2019-11-30 19:44:00,59 12th St, Los Angeles,CA,90001 +282751,AAA Batteries (4-pack),2,2.99,2019-11-17 20:27:00,497 12th St, New York City,NY,10001 +282752,AAA Batteries (4-pack),2,2.99,2019-11-26 19:44:00,243 Maple St, Boston,MA,02215 +282753,AAA Batteries (4-pack),3,2.99,2019-11-21 16:13:00,499 Park St, Dallas,TX,75001 +282754,20in Monitor,1,109.99,2019-11-10 12:40:00,922 South St, New York City,NY,10001 +282755,Google Phone,1,600.0,2019-11-14 19:09:00,690 Cedar St, Portland,OR,97035 +282755,USB-C Charging Cable,1,11.95,2019-11-14 19:09:00,690 Cedar St, Portland,OR,97035 +282756,Vareebadd Phone,1,400.0,2019-11-27 11:05:00,249 Forest St, Los Angeles,CA,90001 +282757,iPhone,1,700.0,2019-11-10 18:38:00,97 14th St, Boston,MA,02215 +282758,iPhone,1,700.0,2019-11-11 21:58:00,440 Maple St, Austin,TX,73301 +282759,34in Ultrawide Monitor,1,379.99,2019-11-12 21:14:00,175 Chestnut St, Seattle,WA,98101 +282760,AAA Batteries (4-pack),1,2.99,2019-11-04 14:29:00,302 Cedar St, Portland,ME,04101 +282761,ThinkPad Laptop,1,999.99,2019-11-26 17:38:00,42 Spruce St, Dallas,TX,75001 +282762,Lightning Charging Cable,1,14.95,2019-11-30 15:52:00,725 Main St, Austin,TX,73301 +282763,Macbook Pro Laptop,1,1700.0,2019-11-27 21:54:00,753 Madison St, Dallas,TX,75001 +282764,AA Batteries (4-pack),1,3.84,2019-11-04 12:39:00,357 Jackson St, Los Angeles,CA,90001 +282765,AAA Batteries (4-pack),3,2.99,2019-11-08 00:51:00,111 Cedar St, San Francisco,CA,94016 +282766,Bose SoundSport Headphones,1,99.99,2019-11-03 20:54:00,298 Cedar St, San Francisco,CA,94016 +282767,AA Batteries (4-pack),1,3.84,2019-11-26 20:11:00,705 12th St, Seattle,WA,98101 +282768,Google Phone,1,600.0,2019-11-13 19:13:00,917 Highland St, New York City,NY,10001 +282769,Wired Headphones,1,11.99,2019-11-11 14:58:00,418 Lincoln St, San Francisco,CA,94016 +282770,Wired Headphones,1,11.99,2019-11-19 17:40:00,308 Adams St, New York City,NY,10001 +282771,Macbook Pro Laptop,1,1700.0,2019-11-16 11:36:00,686 10th St, Seattle,WA,98101 +282772,27in FHD Monitor,1,149.99,2019-11-30 01:00:00,303 14th St, San Francisco,CA,94016 +282773,20in Monitor,1,109.99,2019-11-30 13:45:00,743 2nd St, Austin,TX,73301 +282774,Apple Airpods Headphones,1,150.0,2019-11-01 21:54:00,974 West St, Austin,TX,73301 +282775,27in FHD Monitor,1,149.99,2019-11-19 09:45:00,963 Lincoln St, New York City,NY,10001 +282776,Lightning Charging Cable,1,14.95,2019-11-25 18:05:00,956 10th St, Atlanta,GA,30301 +282777,AAA Batteries (4-pack),1,2.99,2019-11-30 17:39:00,903 Willow St, Seattle,WA,98101 +282778,USB-C Charging Cable,1,11.95,2019-11-22 14:36:00,961 Jackson St, San Francisco,CA,94016 +282779,AA Batteries (4-pack),1,3.84,2019-11-25 01:20:00,260 Meadow St, Los Angeles,CA,90001 +282780,AAA Batteries (4-pack),1,2.99,2019-11-24 09:42:00,137 Lincoln St, Dallas,TX,75001 +282781,Wired Headphones,2,11.99,2019-11-19 20:28:00,516 Cedar St, New York City,NY,10001 +282782,Apple Airpods Headphones,1,150.0,2019-11-21 17:16:00,646 River St, Los Angeles,CA,90001 +282783,AA Batteries (4-pack),1,3.84,2019-11-14 21:57:00,546 Lincoln St, Dallas,TX,75001 +282784,Bose SoundSport Headphones,1,99.99,2019-11-08 20:27:00,649 Jefferson St, San Francisco,CA,94016 +282785,Apple Airpods Headphones,1,150.0,2019-11-21 20:05:00,33 Johnson St, New York City,NY,10001 +282786,AA Batteries (4-pack),1,3.84,2019-11-20 17:09:00,12 Dogwood St, Dallas,TX,75001 +282787,Vareebadd Phone,1,400.0,2019-11-23 12:07:00,805 Maple St, New York City,NY,10001 +282787,USB-C Charging Cable,1,11.95,2019-11-23 12:07:00,805 Maple St, New York City,NY,10001 +282788,Bose SoundSport Headphones,1,99.99,2019-11-09 22:10:00,2 Dogwood St, Los Angeles,CA,90001 +282789,Lightning Charging Cable,1,14.95,2019-11-18 01:28:00,382 7th St, Boston,MA,02215 +282790,Macbook Pro Laptop,1,1700.0,2019-11-22 21:00:00,876 Church St, Seattle,WA,98101 +282791,Apple Airpods Headphones,1,150.0,2019-11-04 17:02:00,200 Elm St, Portland,OR,97035 +282792,Wired Headphones,1,11.99,2019-11-25 19:16:00,177 2nd St, San Francisco,CA,94016 +282793,Lightning Charging Cable,1,14.95,2019-11-18 14:06:00,394 12th St, San Francisco,CA,94016 +282794,Apple Airpods Headphones,1,150.0,2019-11-30 23:43:00,513 1st St, San Francisco,CA,94016 +282795,AA Batteries (4-pack),1,3.84,2019-11-13 14:24:00,771 12th St, San Francisco,CA,94016 +282796,AA Batteries (4-pack),1,3.84,2019-11-04 19:28:00,439 Highland St, Los Angeles,CA,90001 +282797,ThinkPad Laptop,1,999.99,2019-11-11 23:04:00,424 4th St, Austin,TX,73301 +282798,Wired Headphones,1,11.99,2019-11-20 20:30:00,935 Hickory St, Atlanta,GA,30301 +282799,Google Phone,1,600.0,2019-11-23 11:35:00,123 Spruce St, San Francisco,CA,94016 +282799,USB-C Charging Cable,1,11.95,2019-11-23 11:35:00,123 Spruce St, San Francisco,CA,94016 +282800,34in Ultrawide Monitor,1,379.99,2019-11-04 10:49:00,67 River St, Los Angeles,CA,90001 +282801,AA Batteries (4-pack),1,3.84,2019-11-06 12:15:00,575 Chestnut St, Boston,MA,02215 +282802,AA Batteries (4-pack),3,3.84,2019-11-26 13:59:00,871 Jackson St, Dallas,TX,75001 +282803,ThinkPad Laptop,1,999.99,2019-11-06 14:40:00,47 9th St, New York City,NY,10001 +282804,20in Monitor,1,109.99,2019-11-09 13:07:00,876 Johnson St, Dallas,TX,75001 +282805,Lightning Charging Cable,1,14.95,2019-11-16 19:10:00,669 7th St, Los Angeles,CA,90001 +282806,20in Monitor,1,109.99,2019-11-03 13:52:00,376 4th St, Boston,MA,02215 +282807,AA Batteries (4-pack),1,3.84,2019-11-23 17:21:00,705 North St, Los Angeles,CA,90001 +282808,iPhone,1,700.0,2019-11-28 08:22:00,389 10th St, Boston,MA,02215 +282809,27in 4K Gaming Monitor,1,389.99,2019-11-20 16:26:00,979 Lakeview St, San Francisco,CA,94016 +282810,USB-C Charging Cable,1,11.95,2019-11-14 07:52:00,385 Hickory St, San Francisco,CA,94016 +282811,AA Batteries (4-pack),1,3.84,2019-11-13 13:43:00,769 5th St, Los Angeles,CA,90001 +282812,Lightning Charging Cable,1,14.95,2019-11-20 09:05:00,115 Forest St, New York City,NY,10001 +282813,AA Batteries (4-pack),1,3.84,2019-11-10 15:32:00,210 9th St, Los Angeles,CA,90001 +282814,Wired Headphones,2,11.99,2019-11-02 22:41:00,753 North St, Boston,MA,02215 +282815,USB-C Charging Cable,1,11.95,2019-11-11 19:49:00,740 Hill St, Atlanta,GA,30301 +282816,ThinkPad Laptop,1,999.99,2019-11-06 22:35:00,573 River St, Boston,MA,02215 +282817,USB-C Charging Cable,1,11.95,2019-11-22 12:49:00,709 6th St, Los Angeles,CA,90001 +282818,Apple Airpods Headphones,1,150.0,2019-11-20 12:55:00,119 Church St, Seattle,WA,98101 +282819,iPhone,1,700.0,2019-11-01 23:58:00,531 Pine St, San Francisco,CA,94016 +282819,Lightning Charging Cable,1,14.95,2019-11-01 23:58:00,531 Pine St, San Francisco,CA,94016 +282820,27in FHD Monitor,1,149.99,2019-11-12 21:54:00,215 Elm St, New York City,NY,10001 +282821,ThinkPad Laptop,1,999.99,2019-11-19 09:29:00,430 Main St, San Francisco,CA,94016 +282822,iPhone,1,700.0,2019-11-04 13:58:00,31 Ridge St, Austin,TX,73301 +282823,LG Washing Machine,1,600.0,2019-11-11 17:35:00,37 Lakeview St, Boston,MA,02215 +282824,iPhone,1,700.0,2019-11-27 15:25:00,848 Pine St, New York City,NY,10001 +282825,AA Batteries (4-pack),1,3.84,2019-11-15 20:16:00,922 12th St, Dallas,TX,75001 +282826,AAA Batteries (4-pack),3,2.99,2019-11-25 20:56:00,852 South St, New York City,NY,10001 +282827,Lightning Charging Cable,1,14.95,2019-11-27 10:40:00,640 2nd St, New York City,NY,10001 +282828,Apple Airpods Headphones,1,150.0,2019-11-01 14:19:00,638 Sunset St, New York City,NY,10001 +282829,USB-C Charging Cable,1,11.95,2019-11-24 23:43:00,752 Jefferson St, Boston,MA,02215 +282830,iPhone,1,700.0,2019-11-02 22:58:00,165 Wilson St, Boston,MA,02215 +282830,Lightning Charging Cable,1,14.95,2019-11-02 22:58:00,165 Wilson St, Boston,MA,02215 +282831,USB-C Charging Cable,1,11.95,2019-11-03 11:07:00,30 1st St, Dallas,TX,75001 +282832,Google Phone,1,600.0,2019-11-01 10:57:00,542 Main St, San Francisco,CA,94016 +282833,Lightning Charging Cable,2,14.95,2019-11-13 10:29:00,38 Ridge St, San Francisco,CA,94016 +282834,34in Ultrawide Monitor,1,379.99,2019-11-28 12:48:00,316 2nd St, San Francisco,CA,94016 +282835,34in Ultrawide Monitor,1,379.99,2019-11-18 23:15:00,70 Maple St, New York City,NY,10001 +282836,AA Batteries (4-pack),3,3.84,2019-11-22 10:53:00,529 Johnson St, San Francisco,CA,94016 +282837,AA Batteries (4-pack),1,3.84,2019-11-01 16:58:00,422 North St, Boston,MA,02215 +282838,Wired Headphones,1,11.99,2019-11-07 11:39:00,966 6th St, New York City,NY,10001 +282839,AAA Batteries (4-pack),1,2.99,2019-11-25 20:05:00,630 Spruce St, Boston,MA,02215 +282840,AA Batteries (4-pack),1,3.84,2019-11-12 19:30:00,524 Center St, San Francisco,CA,94016 +282841,Apple Airpods Headphones,1,150.0,2019-11-08 22:48:00,713 Church St, Los Angeles,CA,90001 +282842,Wired Headphones,1,11.99,2019-11-19 12:44:00,152 Adams St, Los Angeles,CA,90001 +282843,Apple Airpods Headphones,1,150.0,2019-11-26 20:17:00,166 7th St, Austin,TX,73301 +282844,AAA Batteries (4-pack),4,2.99,2019-11-16 17:02:00,915 13th St, San Francisco,CA,94016 +282845,iPhone,1,700.0,2019-11-27 02:00:00,218 Maple St, Boston,MA,02215 +282845,Apple Airpods Headphones,1,150.0,2019-11-27 02:00:00,218 Maple St, Boston,MA,02215 +282846,27in FHD Monitor,1,149.99,2019-11-20 10:19:00,936 Lake St, San Francisco,CA,94016 +282847,AA Batteries (4-pack),1,3.84,2019-11-24 16:05:00,350 9th St, Seattle,WA,98101 +282848,Macbook Pro Laptop,1,1700.0,2019-11-02 15:35:00,833 Willow St, Dallas,TX,75001 +282849,Lightning Charging Cable,1,14.95,2019-11-03 21:32:00,998 4th St, Dallas,TX,75001 +282850,27in 4K Gaming Monitor,1,389.99,2019-11-27 22:02:00,601 4th St, Boston,MA,02215 +282851,AA Batteries (4-pack),1,3.84,2019-11-02 10:16:00,839 4th St, Atlanta,GA,30301 +282852,iPhone,1,700.0,2019-11-01 20:01:00,973 Hickory St, Dallas,TX,75001 +282853,AA Batteries (4-pack),1,3.84,2019-11-21 15:59:00,57 Meadow St, Dallas,TX,75001 +282854,Apple Airpods Headphones,1,150.0,2019-11-13 08:11:00,546 Hill St, Los Angeles,CA,90001 +282855,Lightning Charging Cable,1,14.95,2019-11-20 12:44:00,769 West St, Atlanta,GA,30301 +282856,Apple Airpods Headphones,1,150.0,2019-11-14 12:16:00,760 Meadow St, Boston,MA,02215 +282857,USB-C Charging Cable,1,11.95,2019-11-27 14:02:00,585 River St, San Francisco,CA,94016 +282858,Wired Headphones,1,11.99,2019-11-13 08:38:00,57 Ridge St, Los Angeles,CA,90001 +282859,Wired Headphones,1,11.99,2019-11-10 18:04:00,167 9th St, Dallas,TX,75001 +282860,AA Batteries (4-pack),1,3.84,2019-11-27 09:18:00,169 6th St, New York City,NY,10001 +282861,Apple Airpods Headphones,1,150.0,2019-11-19 19:57:00,686 Cherry St, Boston,MA,02215 +282862,USB-C Charging Cable,2,11.95,2019-11-28 21:51:00,333 Chestnut St, New York City,NY,10001 +282863,USB-C Charging Cable,1,11.95,2019-11-07 14:46:00,811 11th St, New York City,NY,10001 +282864,Google Phone,1,600.0,2019-11-06 20:27:00,472 Church St, Atlanta,GA,30301 +282865,USB-C Charging Cable,2,11.95,2019-11-26 17:45:00,568 River St, Los Angeles,CA,90001 +282866,34in Ultrawide Monitor,1,379.99,2019-11-01 11:57:00,924 14th St, New York City,NY,10001 +282867,AAA Batteries (4-pack),1,2.99,2019-11-14 17:42:00,669 Sunset St, San Francisco,CA,94016 +282868,27in 4K Gaming Monitor,1,389.99,2019-11-28 13:36:00,362 1st St, Boston,MA,02215 +282869,Lightning Charging Cable,2,14.95,2019-11-19 06:53:00,835 Park St, Seattle,WA,98101 +282870,20in Monitor,1,109.99,2019-11-06 23:26:00,689 Lakeview St, San Francisco,CA,94016 +282871,Flatscreen TV,1,300.0,2019-11-22 23:11:00,316 14th St, Los Angeles,CA,90001 +282872,AAA Batteries (4-pack),4,2.99,2019-11-16 00:26:00,937 6th St, Boston,MA,02215 +282873,Lightning Charging Cable,1,14.95,2019-11-10 09:09:00,930 1st St, Portland,OR,97035 +282874,Macbook Pro Laptop,1,1700.0,2019-11-05 13:26:00,5 Washington St, New York City,NY,10001 +282875,34in Ultrawide Monitor,1,379.99,2019-11-04 11:59:00,515 8th St, Los Angeles,CA,90001 +282876,USB-C Charging Cable,1,11.95,2019-11-28 21:13:00,383 Cherry St, San Francisco,CA,94016 +282877,Wired Headphones,1,11.99,2019-11-29 18:12:00,995 13th St, San Francisco,CA,94016 +282878,Lightning Charging Cable,1,14.95,2019-11-17 06:21:00,903 6th St, New York City,NY,10001 +282879,Lightning Charging Cable,1,14.95,2019-11-22 20:56:00,605 12th St, San Francisco,CA,94016 +282880,Lightning Charging Cable,1,14.95,2019-11-28 10:54:00,58 Chestnut St, Atlanta,GA,30301 +282881,USB-C Charging Cable,1,11.95,2019-11-15 13:42:00,823 9th St, Atlanta,GA,30301 +282882,AAA Batteries (4-pack),2,2.99,2019-11-02 13:33:00,429 Lincoln St, Portland,OR,97035 +282883,AA Batteries (4-pack),1,3.84,2019-11-12 19:53:00,601 Lincoln St, Boston,MA,02215 +282884,Lightning Charging Cable,1,14.95,2019-11-17 11:38:00,673 Park St, San Francisco,CA,94016 +282885,AA Batteries (4-pack),1,3.84,2019-11-08 17:18:00,151 Park St, Austin,TX,73301 +282886,Lightning Charging Cable,1,14.95,2019-11-16 10:13:00,101 Meadow St, San Francisco,CA,94016 +282887,Lightning Charging Cable,1,14.95,2019-11-04 06:32:00,708 Church St, Austin,TX,73301 +282888,USB-C Charging Cable,1,11.95,2019-11-26 07:57:00,890 Washington St, Boston,MA,02215 +282889,AA Batteries (4-pack),1,3.84,2019-11-02 00:43:00,747 Wilson St, San Francisco,CA,94016 +282890,AAA Batteries (4-pack),3,2.99,2019-11-22 11:39:00,392 Maple St, Seattle,WA,98101 +282890,Lightning Charging Cable,1,14.95,2019-11-22 11:39:00,392 Maple St, Seattle,WA,98101 +282891,Wired Headphones,1,11.99,2019-11-07 11:39:00,198 Chestnut St, Austin,TX,73301 +282892,Bose SoundSport Headphones,1,99.99,2019-11-27 18:26:00,875 Highland St, Atlanta,GA,30301 +282893,USB-C Charging Cable,1,11.95,2019-11-07 09:04:00,199 Church St, Atlanta,GA,30301 +282894,AA Batteries (4-pack),1,3.84,2019-11-28 14:29:00,51 West St, San Francisco,CA,94016 +282895,Apple Airpods Headphones,1,150.0,2019-11-20 17:11:00,540 Highland St, San Francisco,CA,94016 +282896,iPhone,1,700.0,2019-11-07 19:47:00,799 Main St, New York City,NY,10001 +282897,AAA Batteries (4-pack),4,2.99,2019-11-08 21:51:00,340 12th St, Los Angeles,CA,90001 +282898,AA Batteries (4-pack),1,3.84,2019-11-27 09:44:00,482 8th St, Dallas,TX,75001 +282899,27in FHD Monitor,1,149.99,2019-11-28 18:14:00,887 Cedar St, San Francisco,CA,94016 +282900,Wired Headphones,1,11.99,2019-11-08 18:46:00,869 Park St, Boston,MA,02215 +282901,AA Batteries (4-pack),1,3.84,2019-11-07 16:10:00,495 Spruce St, San Francisco,CA,94016 +282902,AA Batteries (4-pack),1,3.84,2019-11-15 13:55:00,437 Jefferson St, Seattle,WA,98101 +282903,AA Batteries (4-pack),1,3.84,2019-11-07 21:27:00,61 West St, San Francisco,CA,94016 +282904,20in Monitor,1,109.99,2019-11-01 19:00:00,964 11th St, Austin,TX,73301 +282905,20in Monitor,1,109.99,2019-11-22 10:10:00,248 Dogwood St, Seattle,WA,98101 +282906,20in Monitor,1,109.99,2019-11-06 09:19:00,116 Jefferson St, Los Angeles,CA,90001 +282907,Apple Airpods Headphones,1,150.0,2019-11-26 15:00:00,55 Lakeview St, Atlanta,GA,30301 +282908,AA Batteries (4-pack),1,3.84,2019-11-11 10:11:00,368 1st St, Los Angeles,CA,90001 +282909,USB-C Charging Cable,1,11.95,2019-11-05 13:25:00,65 West St, Austin,TX,73301 +282910,Wired Headphones,1,11.99,2019-11-16 12:42:00,553 8th St, San Francisco,CA,94016 +282911,Lightning Charging Cable,1,14.95,2019-11-18 16:56:00,696 4th St, Seattle,WA,98101 +282912,AA Batteries (4-pack),1,3.84,2019-11-04 17:21:00,946 14th St, San Francisco,CA,94016 +282913,USB-C Charging Cable,1,11.95,2019-11-16 20:03:00,51 Chestnut St, Seattle,WA,98101 +282914,Macbook Pro Laptop,1,1700.0,2019-11-24 10:57:00,534 River St, New York City,NY,10001 +282915,27in FHD Monitor,1,149.99,2019-11-01 10:54:00,460 Main St, Portland,OR,97035 +282916,Lightning Charging Cable,1,14.95,2019-11-21 00:53:00,747 Main St, Los Angeles,CA,90001 +282917,Wired Headphones,1,11.99,2019-11-04 18:45:00,322 Willow St, Atlanta,GA,30301 +282918,Wired Headphones,1,11.99,2019-11-27 09:16:00,306 River St, Los Angeles,CA,90001 +282919,Apple Airpods Headphones,1,150.0,2019-11-07 16:57:00,444 North St, Dallas,TX,75001 +282920,Lightning Charging Cable,1,14.95,2019-11-30 10:21:00,452 Jackson St, San Francisco,CA,94016 +282921,AA Batteries (4-pack),1,3.84,2019-11-29 22:20:00,469 Meadow St, Portland,OR,97035 +282922,Bose SoundSport Headphones,1,99.99,2019-11-08 22:28:00,949 Meadow St, San Francisco,CA,94016 +282923,Lightning Charging Cable,1,14.95,2019-11-20 16:37:00,366 Main St, San Francisco,CA,94016 +282924,USB-C Charging Cable,1,11.95,2019-11-12 17:56:00,326 Dogwood St, Boston,MA,02215 +282925,AAA Batteries (4-pack),1,2.99,2019-11-15 17:49:00,137 Maple St, Boston,MA,02215 +282926,AAA Batteries (4-pack),2,2.99,2019-11-02 01:51:00,752 Lakeview St, Portland,OR,97035 +282926,ThinkPad Laptop,1,999.99,2019-11-02 01:51:00,752 Lakeview St, Portland,OR,97035 +282927,USB-C Charging Cable,1,11.95,2019-11-15 17:51:00,5 Lakeview St, San Francisco,CA,94016 +282928,USB-C Charging Cable,1,11.95,2019-11-06 10:21:00,816 South St, New York City,NY,10001 +282929,Lightning Charging Cable,1,14.95,2019-11-25 12:41:00,73 10th St, Boston,MA,02215 +282930,20in Monitor,1,109.99,2019-11-26 19:28:00,758 Lake St, New York City,NY,10001 +282931,USB-C Charging Cable,1,11.95,2019-11-12 23:39:00,945 Cedar St, Boston,MA,02215 +282932,Apple Airpods Headphones,1,150.0,2019-11-24 08:16:00,412 4th St, Austin,TX,73301 +282933,Wired Headphones,1,11.99,2019-11-21 22:10:00,457 Maple St, Boston,MA,02215 +282934,20in Monitor,1,109.99,2019-11-24 08:06:00,911 6th St, Boston,MA,02215 +282935,AAA Batteries (4-pack),1,2.99,2019-11-12 11:03:00,672 13th St, Boston,MA,02215 +282936,Lightning Charging Cable,1,14.95,2019-11-14 19:04:00,562 Lakeview St, Boston,MA,02215 +282937,AAA Batteries (4-pack),1,2.99,2019-11-09 11:31:00,931 Lincoln St, Dallas,TX,75001 +282938,AAA Batteries (4-pack),1,2.99,2019-11-09 22:51:00,476 Pine St, Seattle,WA,98101 +282939,27in 4K Gaming Monitor,1,389.99,2019-11-05 21:53:00,237 2nd St, Seattle,WA,98101 +282940,iPhone,1,700.0,2019-11-16 12:15:00,941 14th St, Los Angeles,CA,90001 +282940,Lightning Charging Cable,1,14.95,2019-11-16 12:15:00,941 14th St, Los Angeles,CA,90001 +282941,27in 4K Gaming Monitor,1,389.99,2019-11-03 21:30:00,361 Elm St, San Francisco,CA,94016 +282942,Wired Headphones,1,11.99,2019-11-23 14:49:00,723 West St, Los Angeles,CA,90001 +282943,USB-C Charging Cable,2,11.95,2019-11-09 13:35:00,464 Center St, Dallas,TX,75001 +282944,Apple Airpods Headphones,1,150.0,2019-11-19 10:38:00,299 Pine St, Austin,TX,73301 +282945,Wired Headphones,1,11.99,2019-11-26 18:54:00,721 Church St, San Francisco,CA,94016 +282946,Apple Airpods Headphones,1,150.0,2019-11-15 23:45:00,313 11th St, Atlanta,GA,30301 +282947,27in FHD Monitor,1,149.99,2019-11-15 18:14:00,674 Lake St, Boston,MA,02215 +282948,27in 4K Gaming Monitor,1,389.99,2019-11-19 21:35:00,362 Forest St, Dallas,TX,75001 +282949,Apple Airpods Headphones,1,150.0,2019-11-12 22:53:00,386 Pine St, Dallas,TX,75001 +282950,AAA Batteries (4-pack),2,2.99,2019-11-09 00:25:00,923 Cedar St, New York City,NY,10001 +282951,Wired Headphones,1,11.99,2019-11-25 11:06:00,145 14th St, Boston,MA,02215 +282952,Apple Airpods Headphones,1,150.0,2019-11-25 13:40:00,94 South St, New York City,NY,10001 +282953,Bose SoundSport Headphones,1,99.99,2019-11-26 17:34:00,191 Park St, Los Angeles,CA,90001 +282954,AAA Batteries (4-pack),1,2.99,2019-11-02 20:32:00,716 Walnut St, Seattle,WA,98101 +282955,AA Batteries (4-pack),1,3.84,2019-11-29 16:00:00,317 River St, New York City,NY,10001 +282956,AAA Batteries (4-pack),1,2.99,2019-11-28 14:07:00,487 Adams St, Boston,MA,02215 +282957,AAA Batteries (4-pack),1,2.99,2019-11-15 16:39:00,458 Jackson St, San Francisco,CA,94016 +282958,USB-C Charging Cable,1,11.95,2019-11-17 11:27:00,611 Ridge St, San Francisco,CA,94016 +282959,ThinkPad Laptop,1,999.99,2019-11-12 21:11:00,281 Park St, Los Angeles,CA,90001 +282960,Lightning Charging Cable,1,14.95,2019-11-30 23:29:00,190 Madison St, Los Angeles,CA,90001 +282961,ThinkPad Laptop,1,999.99,2019-11-07 14:40:00,465 Highland St, Atlanta,GA,30301 +282962,AAA Batteries (4-pack),3,2.99,2019-11-12 19:57:00,930 Adams St, Los Angeles,CA,90001 +282963,AAA Batteries (4-pack),1,2.99,2019-11-04 17:09:00,736 West St, San Francisco,CA,94016 +282964,Wired Headphones,1,11.99,2019-11-03 16:33:00,912 5th St, New York City,NY,10001 +282965,AA Batteries (4-pack),2,3.84,2019-11-18 18:26:00,313 14th St, Portland,ME,04101 +282966,Wired Headphones,1,11.99,2019-11-21 11:09:00,328 Cherry St, Boston,MA,02215 +282967,AA Batteries (4-pack),1,3.84,2019-11-27 22:43:00,493 Chestnut St, New York City,NY,10001 +282968,AAA Batteries (4-pack),1,2.99,2019-11-17 08:15:00,382 Dogwood St, Portland,OR,97035 +282969,USB-C Charging Cable,1,11.95,2019-11-01 21:25:00,640 6th St, San Francisco,CA,94016 +282970,iPhone,1,700.0,2019-11-02 15:54:00,918 1st St, New York City,NY,10001 +282971,27in 4K Gaming Monitor,1,389.99,2019-11-10 12:23:00,943 5th St, Portland,OR,97035 +282972,Flatscreen TV,1,300.0,2019-11-26 22:23:00,474 Lakeview St, Seattle,WA,98101 +282973,Wired Headphones,1,11.99,2019-11-11 20:13:00,481 9th St, Dallas,TX,75001 +282974,iPhone,1,700.0,2019-11-26 16:05:00,18 8th St, San Francisco,CA,94016 +282975,USB-C Charging Cable,1,11.95,2019-11-27 13:49:00,668 Pine St, Austin,TX,73301 +282976,USB-C Charging Cable,1,11.95,2019-11-15 12:34:00,822 Main St, San Francisco,CA,94016 +282977,Apple Airpods Headphones,1,150.0,2019-11-10 01:26:00,411 12th St, Boston,MA,02215 +282978,Lightning Charging Cable,1,14.95,2019-11-05 13:04:00,942 Walnut St, San Francisco,CA,94016 +282979,AA Batteries (4-pack),1,3.84,2019-11-13 10:25:00,43 Johnson St, New York City,NY,10001 +282980,AAA Batteries (4-pack),3,2.99,2019-11-23 08:09:00,716 Hickory St, San Francisco,CA,94016 +282981,Apple Airpods Headphones,1,150.0,2019-11-23 12:32:00,81 12th St, Los Angeles,CA,90001 +282982,AAA Batteries (4-pack),1,2.99,2019-11-24 08:21:00,114 12th St, New York City,NY,10001 +282983,Bose SoundSport Headphones,1,99.99,2019-11-09 22:56:00,573 Pine St, Atlanta,GA,30301 +282984,Flatscreen TV,1,300.0,2019-11-23 16:58:00,905 Willow St, Boston,MA,02215 +282985,USB-C Charging Cable,1,11.95,2019-11-18 15:14:00,565 West St, Atlanta,GA,30301 +282986,AAA Batteries (4-pack),1,2.99,2019-11-14 21:46:00,529 2nd St, San Francisco,CA,94016 +282987,AA Batteries (4-pack),1,3.84,2019-11-13 19:32:00,209 11th St, Los Angeles,CA,90001 +282988,34in Ultrawide Monitor,1,379.99,2019-11-03 06:52:00,723 10th St, New York City,NY,10001 +282989,Macbook Pro Laptop,1,1700.0,2019-11-09 21:19:00,214 7th St, New York City,NY,10001 +282990,Lightning Charging Cable,1,14.95,2019-11-09 08:32:00,795 Church St, Seattle,WA,98101 +282991,Bose SoundSport Headphones,1,99.99,2019-11-12 12:59:00,863 Elm St, San Francisco,CA,94016 +282992,USB-C Charging Cable,1,11.95,2019-11-12 19:48:00,503 8th St, Dallas,TX,75001 +282993,Lightning Charging Cable,1,14.95,2019-11-25 19:55:00,232 Dogwood St, Los Angeles,CA,90001 +282994,iPhone,1,700.0,2019-11-02 14:46:00,183 1st St, San Francisco,CA,94016 +282995,20in Monitor,1,109.99,2019-11-21 17:54:00,112 11th St, New York City,NY,10001 +282996,Wired Headphones,1,11.99,2019-11-01 11:37:00,806 14th St, Dallas,TX,75001 +282997,Bose SoundSport Headphones,1,99.99,2019-11-25 12:25:00,64 Walnut St, Atlanta,GA,30301 +282998,27in 4K Gaming Monitor,1,389.99,2019-11-29 14:34:00,3 Highland St, San Francisco,CA,94016 +282999,Lightning Charging Cable,1,14.95,2019-11-05 19:40:00,957 Lakeview St, San Francisco,CA,94016 +283000,Macbook Pro Laptop,1,1700.0,2019-11-09 09:54:00,611 Wilson St, San Francisco,CA,94016 +283001,27in 4K Gaming Monitor,1,389.99,2019-11-19 21:55:00,875 4th St, San Francisco,CA,94016 +283002,AA Batteries (4-pack),1,3.84,2019-11-02 13:49:00,563 Church St, Boston,MA,02215 +283003,20in Monitor,1,109.99,2019-11-10 13:03:00,470 Meadow St, Los Angeles,CA,90001 +283004,Apple Airpods Headphones,1,150.0,2019-11-13 22:57:00,489 Washington St, San Francisco,CA,94016 +283005,Google Phone,1,600.0,2019-11-29 21:11:00,506 Highland St, New York City,NY,10001 +283005,USB-C Charging Cable,2,11.95,2019-11-29 21:11:00,506 Highland St, New York City,NY,10001 +283006,Wired Headphones,1,11.99,2019-11-24 17:12:00,767 8th St, San Francisco,CA,94016 +283007,Bose SoundSport Headphones,1,99.99,2019-11-11 06:28:00,521 Lakeview St, New York City,NY,10001 +283008,AAA Batteries (4-pack),4,2.99,2019-11-06 21:10:00,938 Adams St, Seattle,WA,98101 +283009,USB-C Charging Cable,1,11.95,2019-11-10 16:04:00,538 Hill St, Dallas,TX,75001 +283010,Wired Headphones,1,11.99,2019-11-14 16:26:00,414 7th St, Atlanta,GA,30301 +283011,AAA Batteries (4-pack),1,2.99,2019-11-22 21:35:00,430 Lakeview St, Portland,OR,97035 +283012,Apple Airpods Headphones,1,150.0,2019-11-05 08:02:00,629 Washington St, Los Angeles,CA,90001 +283013,USB-C Charging Cable,1,11.95,2019-11-30 18:04:00,219 North St, New York City,NY,10001 +283014,ThinkPad Laptop,1,999.99,2019-11-17 11:49:00,660 Spruce St, Atlanta,GA,30301 +283015,AAA Batteries (4-pack),2,2.99,2019-11-09 12:34:00,31 Highland St, San Francisco,CA,94016 +283016,iPhone,1,700.0,2019-11-02 16:07:00,579 6th St, San Francisco,CA,94016 +283016,Lightning Charging Cable,1,14.95,2019-11-02 16:07:00,579 6th St, San Francisco,CA,94016 +283016,AA Batteries (4-pack),1,3.84,2019-11-02 16:07:00,579 6th St, San Francisco,CA,94016 +283017,USB-C Charging Cable,1,11.95,2019-11-26 07:35:00,661 Dogwood St, Austin,TX,73301 +283018,Lightning Charging Cable,1,14.95,2019-11-19 16:41:00,540 8th St, Los Angeles,CA,90001 +283019,AAA Batteries (4-pack),1,2.99,2019-11-16 17:31:00,96 Highland St, San Francisco,CA,94016 +283020,AA Batteries (4-pack),2,3.84,2019-11-14 12:24:00,56 West St, Atlanta,GA,30301 +283021,Flatscreen TV,1,300.0,2019-11-20 12:38:00,991 Main St, San Francisco,CA,94016 +283022,27in 4K Gaming Monitor,1,389.99,2019-11-21 13:58:00,690 West St, Austin,TX,73301 +283023,Apple Airpods Headphones,1,150.0,2019-11-02 23:54:00,111 North St, Boston,MA,02215 +283024,AA Batteries (4-pack),2,3.84,2019-11-27 19:32:00,609 North St, Portland,OR,97035 +283025,Apple Airpods Headphones,1,150.0,2019-11-22 22:23:00,187 1st St, Seattle,WA,98101 +283026,iPhone,1,700.0,2019-11-09 18:30:00,281 Cedar St, San Francisco,CA,94016 +283027,Wired Headphones,1,11.99,2019-11-27 10:04:00,342 Main St, Dallas,TX,75001 +283028,iPhone,1,700.0,2019-11-26 19:53:00,528 Church St, New York City,NY,10001 +283029,34in Ultrawide Monitor,1,379.99,2019-11-13 09:56:00,803 South St, New York City,NY,10001 +283030,USB-C Charging Cable,1,11.95,2019-11-02 12:46:00,938 West St, San Francisco,CA,94016 +283031,20in Monitor,1,109.99,2019-11-13 07:44:00,849 Hickory St, Seattle,WA,98101 +283032,USB-C Charging Cable,1,11.95,2019-11-07 05:15:00,706 11th St, San Francisco,CA,94016 +283033,Bose SoundSport Headphones,2,99.99,2019-11-10 12:46:00,225 Lake St, New York City,NY,10001 +283034,Apple Airpods Headphones,1,150.0,2019-11-14 19:49:00,657 12th St, San Francisco,CA,94016 +283035,USB-C Charging Cable,1,11.95,2019-11-19 12:27:00,353 Hill St, Atlanta,GA,30301 +283036,Lightning Charging Cable,1,14.95,2019-11-24 20:06:00,370 Cedar St, Boston,MA,02215 +283037,USB-C Charging Cable,1,11.95,2019-11-15 05:11:00,994 6th St, Austin,TX,73301 +283038,34in Ultrawide Monitor,1,379.99,2019-11-10 08:31:00,296 Hickory St, Seattle,WA,98101 +283039,Lightning Charging Cable,1,14.95,2019-11-09 14:42:00,385 Wilson St, Los Angeles,CA,90001 +283040,Bose SoundSport Headphones,1,99.99,2019-11-26 10:26:00,275 Madison St, Boston,MA,02215 +283041,Bose SoundSport Headphones,1,99.99,2019-11-30 13:04:00,568 Hill St, Portland,ME,04101 +283042,AA Batteries (4-pack),1,3.84,2019-11-26 10:04:00,911 Wilson St, Seattle,WA,98101 +283043,Bose SoundSport Headphones,1,99.99,2019-11-11 17:18:00,879 Main St, Los Angeles,CA,90001 +283044,ThinkPad Laptop,1,999.99,2019-11-27 13:05:00,113 Church St, Portland,OR,97035 +283045,Google Phone,1,600.0,2019-11-18 21:48:00,484 West St, San Francisco,CA,94016 +283046,Lightning Charging Cable,1,14.95,2019-11-26 18:27:00,544 10th St, San Francisco,CA,94016 +283047,27in FHD Monitor,1,149.99,2019-11-06 19:14:00,625 Wilson St, Portland,OR,97035 +283047,ThinkPad Laptop,1,999.99,2019-11-06 19:14:00,625 Wilson St, Portland,OR,97035 +283048,Bose SoundSport Headphones,1,99.99,2019-11-05 09:29:00,637 14th St, Austin,TX,73301 +283049,Lightning Charging Cable,1,14.95,2019-11-04 20:41:00,151 River St, Seattle,WA,98101 +283050,Apple Airpods Headphones,1,150.0,2019-11-16 08:54:00,625 Jefferson St, Los Angeles,CA,90001 +283051,AAA Batteries (4-pack),1,2.99,2019-11-30 16:31:00,294 North St, Boston,MA,02215 +283052,Lightning Charging Cable,1,14.95,2019-11-24 14:14:00,722 Spruce St, San Francisco,CA,94016 +283053,Apple Airpods Headphones,1,150.0,2019-11-09 12:47:00,339 Chestnut St, San Francisco,CA,94016 +283054,AA Batteries (4-pack),1,3.84,2019-11-18 17:29:00,164 12th St, San Francisco,CA,94016 +283055,Vareebadd Phone,1,400.0,2019-11-05 00:54:00,353 Washington St, Portland,OR,97035 +283056,AAA Batteries (4-pack),1,2.99,2019-11-27 13:09:00,197 2nd St, Seattle,WA,98101 +283057,Apple Airpods Headphones,1,150.0,2019-11-12 18:25:00,279 Madison St, Los Angeles,CA,90001 +283058,34in Ultrawide Monitor,1,379.99,2019-11-13 14:18:00,912 River St, Boston,MA,02215 +283059,Wired Headphones,1,11.99,2019-11-29 13:11:00,51 4th St, San Francisco,CA,94016 +283060,Bose SoundSport Headphones,1,99.99,2019-11-09 12:26:00,813 8th St, New York City,NY,10001 +283061,Lightning Charging Cable,1,14.95,2019-11-26 17:58:00,932 9th St, Seattle,WA,98101 +283062,Vareebadd Phone,1,400.0,2019-11-23 13:42:00,735 Walnut St, Seattle,WA,98101 +283063,Flatscreen TV,1,300.0,2019-11-11 11:10:00,145 Dogwood St, San Francisco,CA,94016 +283064,AA Batteries (4-pack),1,3.84,2019-11-22 16:02:00,826 Elm St, New York City,NY,10001 +283065,USB-C Charging Cable,1,11.95,2019-11-01 06:40:00,112 4th St, Atlanta,GA,30301 +283066,Google Phone,1,600.0,2019-11-26 06:03:00,59 5th St, Portland,OR,97035 +283067,AAA Batteries (4-pack),2,2.99,2019-11-13 12:37:00,740 Lake St, Dallas,TX,75001 +283068,USB-C Charging Cable,1,11.95,2019-11-06 23:22:00,374 Jackson St, Los Angeles,CA,90001 +283069,Wired Headphones,1,11.99,2019-11-28 12:26:00,924 Highland St, Los Angeles,CA,90001 +283070,20in Monitor,1,109.99,2019-11-19 20:48:00,104 Adams St, Boston,MA,02215 +283071,USB-C Charging Cable,1,11.95,2019-11-25 11:02:00,730 Highland St, Dallas,TX,75001 +283072,AAA Batteries (4-pack),2,2.99,2019-11-15 17:39:00,407 Cedar St, New York City,NY,10001 +283073,Lightning Charging Cable,1,14.95,2019-11-25 14:21:00,544 Pine St, Boston,MA,02215 +283074,Apple Airpods Headphones,1,150.0,2019-11-04 19:38:00,828 Park St, San Francisco,CA,94016 +283075,Apple Airpods Headphones,1,150.0,2019-11-11 00:22:00,302 Wilson St, Los Angeles,CA,90001 +283076,USB-C Charging Cable,1,11.95,2019-11-27 11:18:00,294 14th St, New York City,NY,10001 +283077,Lightning Charging Cable,1,14.95,2019-11-23 09:52:00,156 Sunset St, Portland,OR,97035 +283078,20in Monitor,1,109.99,2019-11-17 22:35:00,765 Adams St, New York City,NY,10001 +283079,Apple Airpods Headphones,1,150.0,2019-11-09 11:27:00,453 8th St, Los Angeles,CA,90001 +283080,Bose SoundSport Headphones,1,99.99,2019-11-12 19:55:00,634 Washington St, San Francisco,CA,94016 +283081,Lightning Charging Cable,1,14.95,2019-11-29 09:31:00,973 Meadow St, Boston,MA,02215 +283082,USB-C Charging Cable,1,11.95,2019-11-09 22:26:00,171 Cedar St, Seattle,WA,98101 +283083,USB-C Charging Cable,1,11.95,2019-11-17 15:50:00,378 South St, Los Angeles,CA,90001 +283084,Wired Headphones,1,11.99,2019-11-24 16:29:00,259 Maple St, San Francisco,CA,94016 +283085,AA Batteries (4-pack),1,3.84,2019-11-07 21:31:00,759 Pine St, Boston,MA,02215 +283086,Apple Airpods Headphones,1,150.0,2019-11-08 09:32:00,19 8th St, Boston,MA,02215 +283087,AAA Batteries (4-pack),2,2.99,2019-11-04 03:39:00,510 Meadow St, Los Angeles,CA,90001 +283088,Wired Headphones,1,11.99,2019-11-08 11:03:00,878 Jefferson St, Portland,OR,97035 +283089,AAA Batteries (4-pack),1,2.99,2019-11-04 10:35:00,781 Ridge St, San Francisco,CA,94016 +283090,AAA Batteries (4-pack),1,2.99,2019-11-19 16:57:00,457 14th St, New York City,NY,10001 +283091,Lightning Charging Cable,1,14.95,2019-11-16 11:54:00,64 Maple St, New York City,NY,10001 +283092,Wired Headphones,1,11.99,2019-11-10 11:22:00,38 Highland St, Austin,TX,73301 +283093,27in FHD Monitor,1,149.99,2019-11-17 20:55:00,284 Hickory St, San Francisco,CA,94016 +283094,AAA Batteries (4-pack),1,2.99,2019-11-29 08:41:00,192 9th St, San Francisco,CA,94016 +283095,Flatscreen TV,1,300.0,2019-12-01 01:24:00,9 Chestnut St, Los Angeles,CA,90001 +283096,Lightning Charging Cable,1,14.95,2019-11-30 15:14:00,495 Main St, Atlanta,GA,30301 +283097,Bose SoundSport Headphones,1,99.99,2019-11-14 10:05:00,495 Wilson St, Boston,MA,02215 +283098,AAA Batteries (4-pack),1,2.99,2019-11-27 20:46:00,931 14th St, Los Angeles,CA,90001 +283099,AAA Batteries (4-pack),1,2.99,2019-11-21 13:47:00,322 Meadow St, San Francisco,CA,94016 +283100,Google Phone,1,600.0,2019-11-09 13:10:00,137 Johnson St, Seattle,WA,98101 +283100,USB-C Charging Cable,1,11.95,2019-11-09 13:10:00,137 Johnson St, Seattle,WA,98101 +283101,20in Monitor,1,109.99,2019-11-25 09:06:00,156 Maple St, Atlanta,GA,30301 +283102,Bose SoundSport Headphones,1,99.99,2019-11-09 18:13:00,937 Spruce St, New York City,NY,10001 +283103,USB-C Charging Cable,1,11.95,2019-11-14 19:14:00,924 13th St, New York City,NY,10001 +283104,AA Batteries (4-pack),2,3.84,2019-11-12 13:07:00,637 Highland St, San Francisco,CA,94016 +283105,AA Batteries (4-pack),1,3.84,2019-11-28 17:03:00,220 Lake St, Portland,OR,97035 +283106,ThinkPad Laptop,1,999.99,2019-11-20 12:32:00,50 Hickory St, Boston,MA,02215 +283107,20in Monitor,1,109.99,2019-11-24 07:49:00,608 5th St, San Francisco,CA,94016 +283108,Lightning Charging Cable,1,14.95,2019-11-25 11:24:00,845 Pine St, Los Angeles,CA,90001 +283109,Bose SoundSport Headphones,1,99.99,2019-11-11 22:11:00,948 Dogwood St, San Francisco,CA,94016 +283110,Bose SoundSport Headphones,1,99.99,2019-11-09 12:26:00,887 Chestnut St, New York City,NY,10001 +283111,AAA Batteries (4-pack),1,2.99,2019-11-15 18:03:00,35 8th St, Seattle,WA,98101 +283112,Apple Airpods Headphones,1,150.0,2019-11-24 10:52:00,537 11th St, Boston,MA,02215 +283113,Wired Headphones,1,11.99,2019-11-03 12:39:00,688 Maple St, Boston,MA,02215 +283114,27in 4K Gaming Monitor,1,389.99,2019-11-15 15:22:00,387 Wilson St, New York City,NY,10001 +283115,Lightning Charging Cable,1,14.95,2019-11-25 11:07:00,819 7th St, New York City,NY,10001 +283116,Wired Headphones,1,11.99,2019-11-10 22:41:00,78 Pine St, Seattle,WA,98101 +283117,Macbook Pro Laptop,1,1700.0,2019-11-28 13:16:00,273 8th St, Los Angeles,CA,90001 +283118,Google Phone,1,600.0,2019-11-20 21:31:00,409 Willow St, Los Angeles,CA,90001 +283119,Apple Airpods Headphones,1,150.0,2019-11-15 19:56:00,711 Highland St, Austin,TX,73301 +283120,Flatscreen TV,1,300.0,2019-11-20 20:34:00,214 Dogwood St, Dallas,TX,75001 +283121,Bose SoundSport Headphones,1,99.99,2019-11-03 11:42:00,498 Chestnut St, San Francisco,CA,94016 +283122,AAA Batteries (4-pack),1,2.99,2019-11-09 07:10:00,235 Center St, San Francisco,CA,94016 +283123,AA Batteries (4-pack),1,3.84,2019-11-30 22:07:00,990 Hickory St, Los Angeles,CA,90001 +283124,AA Batteries (4-pack),1,3.84,2019-11-17 17:47:00,672 6th St, Los Angeles,CA,90001 +283125,Apple Airpods Headphones,1,150.0,2019-11-17 20:19:00,999 West St, Portland,OR,97035 +283126,Wired Headphones,1,11.99,2019-11-23 18:59:00,82 7th St, Dallas,TX,75001 +283127,ThinkPad Laptop,1,999.99,2019-11-01 21:00:00,758 Sunset St, San Francisco,CA,94016 +283128,27in FHD Monitor,1,149.99,2019-11-14 13:32:00,692 Cherry St, Boston,MA,02215 +283129,27in FHD Monitor,1,149.99,2019-11-02 21:13:00,500 Lincoln St, San Francisco,CA,94016 +283130,Bose SoundSport Headphones,1,99.99,2019-11-08 06:37:00,121 Wilson St, Seattle,WA,98101 +283131,Wired Headphones,1,11.99,2019-11-24 19:11:00,292 Hickory St, Austin,TX,73301 +283132,Wired Headphones,1,11.99,2019-11-29 15:54:00,858 13th St, San Francisco,CA,94016 +283133,Wired Headphones,1,11.99,2019-11-16 17:31:00,518 Highland St, Portland,OR,97035 +283134,USB-C Charging Cable,1,11.95,2019-11-23 01:05:00,677 West St, Boston,MA,02215 +283135,Wired Headphones,1,11.99,2019-11-30 20:21:00,436 Main St, Boston,MA,02215 +283136,AAA Batteries (4-pack),1,2.99,2019-11-16 11:34:00,36 Forest St, San Francisco,CA,94016 +283137,USB-C Charging Cable,2,11.95,2019-11-22 11:35:00,702 Walnut St, Atlanta,GA,30301 +283138,Bose SoundSport Headphones,1,99.99,2019-11-26 21:47:00,542 12th St, San Francisco,CA,94016 +283139,iPhone,1,700.0,2019-11-09 17:08:00,575 South St, Austin,TX,73301 +283140,USB-C Charging Cable,1,11.95,2019-11-08 12:14:00,914 6th St, Los Angeles,CA,90001 +283141,Lightning Charging Cable,1,14.95,2019-11-16 14:23:00,317 South St, Portland,ME,04101 +283142,27in FHD Monitor,1,149.99,2019-11-05 13:06:00,61 Jackson St, Dallas,TX,75001 +283143,Lightning Charging Cable,1,14.95,2019-11-23 22:33:00,844 Willow St, Austin,TX,73301 +283144,Lightning Charging Cable,1,14.95,2019-11-07 17:47:00,878 5th St, San Francisco,CA,94016 +283145,Wired Headphones,1,11.99,2019-11-29 16:43:00,796 Jackson St, Boston,MA,02215 +283146,Lightning Charging Cable,1,14.95,2019-11-05 15:04:00,81 11th St, San Francisco,CA,94016 +283147,Bose SoundSport Headphones,1,99.99,2019-11-08 04:11:00,291 Elm St, Austin,TX,73301 +283148,34in Ultrawide Monitor,1,379.99,2019-11-13 06:30:00,89 Park St, Seattle,WA,98101 +283149,AAA Batteries (4-pack),1,2.99,2019-11-26 07:23:00,661 8th St, San Francisco,CA,94016 +283150,27in 4K Gaming Monitor,1,389.99,2019-11-08 02:00:00,498 4th St, Boston,MA,02215 +283151,34in Ultrawide Monitor,1,379.99,2019-11-07 16:29:00,286 Washington St, Boston,MA,02215 +283152,Bose SoundSport Headphones,1,99.99,2019-11-09 09:42:00,989 Park St, Atlanta,GA,30301 +283153,Bose SoundSport Headphones,1,99.99,2019-11-05 05:55:00,979 Park St, New York City,NY,10001 +283154,Wired Headphones,1,11.99,2019-11-09 12:21:00,57 Forest St, New York City,NY,10001 +283155,AA Batteries (4-pack),1,3.84,2019-11-29 19:32:00,586 Park St, San Francisco,CA,94016 +283156,AAA Batteries (4-pack),1,2.99,2019-11-15 23:33:00,603 West St, New York City,NY,10001 +283157,Wired Headphones,1,11.99,2019-11-03 23:22:00,725 Pine St, Seattle,WA,98101 +283158,Lightning Charging Cable,1,14.95,2019-11-11 15:13:00,458 Lake St, Seattle,WA,98101 +283159,AAA Batteries (4-pack),2,2.99,2019-11-29 00:08:00,337 Meadow St, Los Angeles,CA,90001 +283160,Bose SoundSport Headphones,1,99.99,2019-11-09 19:07:00,606 Washington St, San Francisco,CA,94016 +283161,Apple Airpods Headphones,1,150.0,2019-11-20 09:57:00,805 8th St, Atlanta,GA,30301 +283162,Google Phone,1,600.0,2019-11-18 19:02:00,589 Cedar St, Seattle,WA,98101 +283163,Wired Headphones,1,11.99,2019-11-05 19:06:00,651 Lake St, New York City,NY,10001 +283164,Bose SoundSport Headphones,1,99.99,2019-11-29 15:38:00,688 Jackson St, Boston,MA,02215 +283165,AA Batteries (4-pack),1,3.84,2019-11-08 00:24:00,878 North St, Boston,MA,02215 +283166,USB-C Charging Cable,1,11.95,2019-11-26 19:36:00,135 Highland St, Seattle,WA,98101 +283167,27in 4K Gaming Monitor,1,389.99,2019-11-16 10:35:00,87 Sunset St, Los Angeles,CA,90001 +283168,USB-C Charging Cable,1,11.95,2019-11-14 14:19:00,133 Maple St, Atlanta,GA,30301 +283169,Google Phone,1,600.0,2019-11-15 21:20:00,232 10th St, Boston,MA,02215 +283170,Google Phone,1,600.0,2019-11-22 10:56:00,593 Highland St, San Francisco,CA,94016 +283171,AA Batteries (4-pack),1,3.84,2019-11-17 18:32:00,827 12th St, Austin,TX,73301 +283172,27in 4K Gaming Monitor,1,389.99,2019-11-10 20:05:00,790 Maple St, Los Angeles,CA,90001 +283173,USB-C Charging Cable,1,11.95,2019-11-06 18:17:00,321 Park St, Atlanta,GA,30301 +283174,Bose SoundSport Headphones,1,99.99,2019-11-12 06:04:00,775 Dogwood St, Dallas,TX,75001 +283175,Lightning Charging Cable,1,14.95,2019-11-11 13:38:00,2 2nd St, Dallas,TX,75001 +283176,AA Batteries (4-pack),1,3.84,2019-11-17 18:17:00,811 Highland St, San Francisco,CA,94016 +283177,34in Ultrawide Monitor,1,379.99,2019-11-27 10:05:00,440 11th St, Los Angeles,CA,90001 +283178,USB-C Charging Cable,1,11.95,2019-11-10 19:52:00,394 Adams St, Seattle,WA,98101 +283179,Apple Airpods Headphones,1,150.0,2019-11-09 21:08:00,869 Adams St, Atlanta,GA,30301 +283180,Google Phone,1,600.0,2019-11-17 09:56:00,190 11th St, Los Angeles,CA,90001 +283181,Google Phone,1,600.0,2019-11-11 14:30:00,309 2nd St, Boston,MA,02215 +283182,Wired Headphones,1,11.99,2019-11-19 15:17:00,183 Maple St, New York City,NY,10001 +283183,Apple Airpods Headphones,1,150.0,2019-11-11 09:41:00,371 Wilson St, San Francisco,CA,94016 +283184,AAA Batteries (4-pack),2,2.99,2019-11-19 19:03:00,986 Pine St, Los Angeles,CA,90001 +283185,AAA Batteries (4-pack),2,2.99,2019-11-06 21:58:00,285 8th St, Boston,MA,02215 +283186,Wired Headphones,1,11.99,2019-11-17 17:41:00,345 Ridge St, Portland,OR,97035 +283187,Lightning Charging Cable,1,14.95,2019-11-26 14:04:00,79 Willow St, Los Angeles,CA,90001 +283188,Wired Headphones,1,11.99,2019-11-14 17:33:00,529 1st St, San Francisco,CA,94016 +283189,USB-C Charging Cable,1,11.95,2019-11-23 11:19:00,990 14th St, Boston,MA,02215 +283190,AAA Batteries (4-pack),2,2.99,2019-11-17 12:35:00,69 Elm St, Seattle,WA,98101 +283191,AAA Batteries (4-pack),2,2.99,2019-11-04 13:58:00,160 Pine St, Dallas,TX,75001 +283192,27in 4K Gaming Monitor,1,389.99,2019-11-17 20:00:00,470 Cedar St, Boston,MA,02215 +283193,USB-C Charging Cable,1,11.95,2019-11-12 19:40:00,549 Cedar St, Los Angeles,CA,90001 +283194,AAA Batteries (4-pack),2,2.99,2019-11-18 12:19:00,13 Lakeview St, Dallas,TX,75001 +283195,27in 4K Gaming Monitor,1,389.99,2019-11-24 17:36:00,704 Highland St, Atlanta,GA,30301 +283196,AA Batteries (4-pack),1,3.84,2019-11-29 06:38:00,2 6th St, Seattle,WA,98101 +283197,Google Phone,1,600.0,2019-11-24 17:54:00,460 14th St, Los Angeles,CA,90001 +283198,Flatscreen TV,1,300.0,2019-11-27 12:26:00,700 Dogwood St, San Francisco,CA,94016 +283199,AA Batteries (4-pack),1,3.84,2019-11-04 10:24:00,816 South St, Portland,OR,97035 +283200,iPhone,1,700.0,2019-11-17 13:39:00,806 Cedar St, Los Angeles,CA,90001 +283201,AAA Batteries (4-pack),1,2.99,2019-11-05 11:41:00,894 9th St, Boston,MA,02215 +283202,Bose SoundSport Headphones,1,99.99,2019-11-11 14:31:00,516 5th St, Austin,TX,73301 +283203,Apple Airpods Headphones,1,150.0,2019-11-07 12:23:00,300 North St, New York City,NY,10001 +283204,USB-C Charging Cable,1,11.95,2019-11-15 19:03:00,747 Lake St, Los Angeles,CA,90001 +283205,USB-C Charging Cable,1,11.95,2019-11-11 15:10:00,410 West St, San Francisco,CA,94016 +283206,AA Batteries (4-pack),1,3.84,2019-11-22 15:12:00,408 Church St, Dallas,TX,75001 +283207,Bose SoundSport Headphones,1,99.99,2019-11-07 23:09:00,985 Elm St, New York City,NY,10001 +283208,AA Batteries (4-pack),1,3.84,2019-11-06 13:18:00,862 Elm St, New York City,NY,10001 +283209,AAA Batteries (4-pack),1,2.99,2019-11-05 17:20:00,768 Elm St, Boston,MA,02215 +283210,Apple Airpods Headphones,1,150.0,2019-11-23 15:10:00,419 13th St, Atlanta,GA,30301 +283211,Apple Airpods Headphones,1,150.0,2019-11-28 10:40:00,398 Hill St, San Francisco,CA,94016 +283212,AA Batteries (4-pack),1,3.84,2019-11-18 14:29:00,33 10th St, Boston,MA,02215 +283213,Bose SoundSport Headphones,1,99.99,2019-11-04 21:01:00,61 Pine St, San Francisco,CA,94016 +283214,USB-C Charging Cable,1,11.95,2019-11-02 11:13:00,763 Wilson St, San Francisco,CA,94016 +283215,Lightning Charging Cable,1,14.95,2019-11-24 08:00:00,861 Center St, Atlanta,GA,30301 +283216,34in Ultrawide Monitor,1,379.99,2019-11-12 20:02:00,626 Adams St, Seattle,WA,98101 +283217,Flatscreen TV,1,300.0,2019-11-17 17:53:00,726 Maple St, San Francisco,CA,94016 +283218,Lightning Charging Cable,1,14.95,2019-11-03 12:14:00,996 Walnut St, Portland,OR,97035 +283219,AA Batteries (4-pack),1,3.84,2019-11-24 17:30:00,810 Cedar St, Seattle,WA,98101 +283220,Lightning Charging Cable,1,14.95,2019-11-14 12:21:00,948 13th St, Los Angeles,CA,90001 +283221,Wired Headphones,1,11.99,2019-11-20 20:42:00,784 13th St, Seattle,WA,98101 +283222,Lightning Charging Cable,1,14.95,2019-11-24 23:42:00,483 Dogwood St, Austin,TX,73301 +283223,Lightning Charging Cable,1,14.95,2019-11-18 21:08:00,370 Forest St, Dallas,TX,75001 +283224,AA Batteries (4-pack),1,3.84,2019-11-15 10:50:00,703 Ridge St, San Francisco,CA,94016 +283225,AA Batteries (4-pack),1,3.84,2019-11-02 12:50:00,917 Main St, Portland,OR,97035 +283226,AAA Batteries (4-pack),1,2.99,2019-11-14 01:09:00,99 9th St, Los Angeles,CA,90001 +283227,USB-C Charging Cable,1,11.95,2019-11-08 18:45:00,786 Cedar St, Portland,ME,04101 +283228,Bose SoundSport Headphones,1,99.99,2019-11-21 14:19:00,837 Maple St, San Francisco,CA,94016 +283229,34in Ultrawide Monitor,1,379.99,2019-11-04 19:11:00,978 Ridge St, Dallas,TX,75001 +283230,AA Batteries (4-pack),1,3.84,2019-11-16 12:00:00,809 1st St, Dallas,TX,75001 +283231,USB-C Charging Cable,1,11.95,2019-11-03 00:22:00,462 Cedar St, San Francisco,CA,94016 +283232,AAA Batteries (4-pack),1,2.99,2019-11-07 08:49:00,113 13th St, Seattle,WA,98101 +283232,USB-C Charging Cable,1,11.95,2019-11-07 08:49:00,113 13th St, Seattle,WA,98101 +283233,USB-C Charging Cable,1,11.95,2019-11-28 19:13:00,411 Walnut St, San Francisco,CA,94016 +283234,AAA Batteries (4-pack),1,2.99,2019-11-09 18:26:00,476 10th St, Seattle,WA,98101 +283235,USB-C Charging Cable,1,11.95,2019-11-13 21:44:00,873 Maple St, Boston,MA,02215 +283236,20in Monitor,1,109.99,2019-11-05 13:26:00,740 4th St, Boston,MA,02215 +283237,Apple Airpods Headphones,1,150.0,2019-11-19 13:37:00,971 9th St, Seattle,WA,98101 +283238,Lightning Charging Cable,1,14.95,2019-11-19 09:37:00,95 Hill St, Boston,MA,02215 +283238,Lightning Charging Cable,2,14.95,2019-11-19 09:37:00,95 Hill St, Boston,MA,02215 +283239,Apple Airpods Headphones,1,150.0,2019-11-22 12:32:00,46 Adams St, New York City,NY,10001 +283240,Macbook Pro Laptop,1,1700.0,2019-11-10 06:26:00,580 Walnut St, San Francisco,CA,94016 +283241,Apple Airpods Headphones,1,150.0,2019-11-27 23:32:00,114 Ridge St, New York City,NY,10001 +283242,Macbook Pro Laptop,1,1700.0,2019-11-02 18:21:00,162 Washington St, Boston,MA,02215 +283243,USB-C Charging Cable,1,11.95,2019-11-29 16:36:00,14 10th St, San Francisco,CA,94016 +283244,ThinkPad Laptop,1,999.99,2019-11-13 19:07:00,505 Lincoln St, San Francisco,CA,94016 +283245,AA Batteries (4-pack),1,3.84,2019-11-26 19:34:00,973 Church St, New York City,NY,10001 +283246,Apple Airpods Headphones,1,150.0,2019-11-20 20:40:00,777 10th St, Portland,OR,97035 +283247,Wired Headphones,1,11.99,2019-11-25 09:10:00,862 Lincoln St, Dallas,TX,75001 +283248,iPhone,1,700.0,2019-11-05 11:13:00,378 Jefferson St, San Francisco,CA,94016 +283248,Lightning Charging Cable,1,14.95,2019-11-05 11:13:00,378 Jefferson St, San Francisco,CA,94016 +283249,USB-C Charging Cable,1,11.95,2019-11-18 18:56:00,231 Church St, Atlanta,GA,30301 +283250,iPhone,1,700.0,2019-11-19 21:05:00,614 Wilson St, Portland,OR,97035 +283251,Wired Headphones,1,11.99,2019-11-26 19:39:00,309 Lincoln St, Seattle,WA,98101 +283252,USB-C Charging Cable,1,11.95,2019-11-16 18:42:00,268 Cherry St, Atlanta,GA,30301 +283253,Google Phone,1,600.0,2019-11-02 16:22:00,216 Cherry St, New York City,NY,10001 +283253,USB-C Charging Cable,1,11.95,2019-11-02 16:22:00,216 Cherry St, New York City,NY,10001 +283254,Lightning Charging Cable,1,14.95,2019-11-05 14:38:00,134 Spruce St, Seattle,WA,98101 +283255,AAA Batteries (4-pack),1,2.99,2019-11-10 12:38:00,366 Spruce St, Los Angeles,CA,90001 +283256,Bose SoundSport Headphones,1,99.99,2019-11-03 10:41:00,185 Johnson St, Austin,TX,73301 +283257,Lightning Charging Cable,1,14.95,2019-11-13 18:01:00,372 11th St, San Francisco,CA,94016 +283258,Bose SoundSport Headphones,1,99.99,2019-11-18 01:07:00,947 10th St, Boston,MA,02215 +283259,AAA Batteries (4-pack),1,2.99,2019-11-24 06:33:00,230 Meadow St, San Francisco,CA,94016 +283260,Lightning Charging Cable,1,14.95,2019-11-06 14:28:00,8 Chestnut St, Portland,ME,04101 +283261,Bose SoundSport Headphones,1,99.99,2019-11-09 16:10:00,354 Maple St, New York City,NY,10001 +283262,Lightning Charging Cable,1,14.95,2019-11-08 16:08:00,450 9th St, San Francisco,CA,94016 +283263,Google Phone,1,600.0,2019-11-08 17:47:00,881 Highland St, Boston,MA,02215 +283264,Google Phone,1,600.0,2019-11-15 21:56:00,556 Dogwood St, San Francisco,CA,94016 +283264,USB-C Charging Cable,2,11.95,2019-11-15 21:56:00,556 Dogwood St, San Francisco,CA,94016 +283265,AAA Batteries (4-pack),1,2.99,2019-11-13 09:21:00,433 Lakeview St, Dallas,TX,75001 +283266,Google Phone,1,600.0,2019-11-04 19:47:00,327 12th St, Atlanta,GA,30301 +283267,AA Batteries (4-pack),1,3.84,2019-11-01 14:32:00,394 Walnut St, Dallas,TX,75001 +283268,Lightning Charging Cable,2,14.95,2019-11-06 09:18:00,421 Jackson St, San Francisco,CA,94016 +283269,USB-C Charging Cable,1,11.95,2019-11-30 18:30:00,782 South St, Los Angeles,CA,90001 +283270,AA Batteries (4-pack),2,3.84,2019-11-25 12:01:00,470 Park St, San Francisco,CA,94016 +283271,ThinkPad Laptop,1,999.99,2019-11-24 18:56:00,777 River St, Boston,MA,02215 +283272,Lightning Charging Cable,1,14.95,2019-11-04 13:12:00,722 Adams St, New York City,NY,10001 +283273,AA Batteries (4-pack),1,3.84,2019-11-02 12:24:00,539 Chestnut St, Atlanta,GA,30301 +283274,USB-C Charging Cable,1,11.95,2019-11-17 16:34:00,508 Meadow St, Atlanta,GA,30301 +283275,Google Phone,1,600.0,2019-11-11 11:16:00,358 Ridge St, Austin,TX,73301 +283275,USB-C Charging Cable,1,11.95,2019-11-11 11:16:00,358 Ridge St, Austin,TX,73301 +283276,Wired Headphones,1,11.99,2019-11-11 18:27:00,73 Dogwood St, New York City,NY,10001 +283277,AAA Batteries (4-pack),2,2.99,2019-11-02 15:44:00,556 Forest St, Seattle,WA,98101 +283278,Apple Airpods Headphones,1,150.0,2019-11-16 06:36:00,221 Spruce St, Boston,MA,02215 +283278,Lightning Charging Cable,2,14.95,2019-11-16 06:36:00,221 Spruce St, Boston,MA,02215 +283279,Bose SoundSport Headphones,1,99.99,2019-11-06 18:02:00,282 13th St, New York City,NY,10001 +283280,Lightning Charging Cable,1,14.95,2019-11-13 17:24:00,663 14th St, New York City,NY,10001 +283281,Bose SoundSport Headphones,1,99.99,2019-11-26 12:05:00,289 11th St, Dallas,TX,75001 +283282,Lightning Charging Cable,1,14.95,2019-11-05 06:45:00,770 12th St, Seattle,WA,98101 +283283,Vareebadd Phone,1,400.0,2019-11-17 07:54:00,646 Forest St, Los Angeles,CA,90001 +283284,AAA Batteries (4-pack),1,2.99,2019-11-11 19:19:00,923 Lake St, San Francisco,CA,94016 +283285,USB-C Charging Cable,1,11.95,2019-11-02 06:03:00,191 14th St, Seattle,WA,98101 +283286,27in FHD Monitor,1,149.99,2019-11-16 14:27:00,933 Madison St, Seattle,WA,98101 +283287,Wired Headphones,1,11.99,2019-11-20 03:11:00,583 12th St, Portland,OR,97035 +283288,Lightning Charging Cable,1,14.95,2019-11-01 13:36:00,770 Church St, Boston,MA,02215 +283289,Wired Headphones,2,11.99,2019-11-28 09:17:00,373 8th St, San Francisco,CA,94016 +283290,Bose SoundSport Headphones,1,99.99,2019-11-06 22:30:00,373 13th St, Portland,OR,97035 +283291,ThinkPad Laptop,1,999.99,2019-11-17 09:34:00,372 Madison St, Seattle,WA,98101 +283292,USB-C Charging Cable,1,11.95,2019-11-28 17:58:00,381 Johnson St, Los Angeles,CA,90001 +283293,Bose SoundSport Headphones,1,99.99,2019-11-26 13:09:00,822 Lakeview St, San Francisco,CA,94016 +283294,AAA Batteries (4-pack),2,2.99,2019-11-09 09:49:00,545 Sunset St, Austin,TX,73301 +283295,AAA Batteries (4-pack),1,2.99,2019-11-27 21:00:00,192 14th St, Seattle,WA,98101 +283296,Wired Headphones,1,11.99,2019-11-29 03:07:00,277 River St, Portland,ME,04101 +283297,AAA Batteries (4-pack),1,2.99,2019-11-10 15:47:00,245 Cherry St, New York City,NY,10001 +283298,Google Phone,1,600.0,2019-11-01 21:57:00,836 9th St, Seattle,WA,98101 +283298,USB-C Charging Cable,1,11.95,2019-11-01 21:57:00,836 9th St, Seattle,WA,98101 +283299,27in 4K Gaming Monitor,1,389.99,2019-11-22 19:01:00,623 Forest St, Seattle,WA,98101 +283300,AAA Batteries (4-pack),1,2.99,2019-11-08 01:01:00,431 Jackson St, Los Angeles,CA,90001 +283301,Apple Airpods Headphones,1,150.0,2019-11-30 11:12:00,930 Willow St, San Francisco,CA,94016 +283302,Lightning Charging Cable,1,14.95,2019-11-25 15:35:00,975 Lincoln St, San Francisco,CA,94016 +283303,iPhone,1,700.0,2019-11-08 18:55:00,641 Adams St, New York City,NY,10001 +283304,Flatscreen TV,1,300.0,2019-11-26 08:13:00,447 North St, Seattle,WA,98101 +283305,Flatscreen TV,1,300.0,2019-11-02 17:54:00,369 Lake St, Los Angeles,CA,90001 +283306,AAA Batteries (4-pack),2,2.99,2019-11-04 14:31:00,436 Washington St, Dallas,TX,75001 +283307,27in FHD Monitor,1,149.99,2019-11-13 16:04:00,357 Pine St, Portland,OR,97035 +283308,Vareebadd Phone,1,400.0,2019-11-20 21:30:00,386 Meadow St, New York City,NY,10001 +283309,Flatscreen TV,1,300.0,2019-11-17 16:34:00,9 10th St, Atlanta,GA,30301 +283310,27in 4K Gaming Monitor,1,389.99,2019-11-19 17:36:00,644 Meadow St, Atlanta,GA,30301 +283311,Flatscreen TV,1,300.0,2019-11-10 19:09:00,672 Maple St, San Francisco,CA,94016 +283312,27in FHD Monitor,1,149.99,2019-11-22 15:03:00,336 Church St, Atlanta,GA,30301 +283313,USB-C Charging Cable,2,11.95,2019-11-30 15:23:00,960 11th St, Boston,MA,02215 +283314,34in Ultrawide Monitor,1,379.99,2019-11-30 21:09:00,684 14th St, Boston,MA,02215 +283315,AAA Batteries (4-pack),1,2.99,2019-11-05 21:50:00,322 Walnut St, San Francisco,CA,94016 +283315,Lightning Charging Cable,2,14.95,2019-11-05 21:50:00,322 Walnut St, San Francisco,CA,94016 +283316,Lightning Charging Cable,1,14.95,2019-11-08 20:24:00,331 Lincoln St, Seattle,WA,98101 +283317,iPhone,1,700.0,2019-11-26 22:51:00,938 Hickory St, Boston,MA,02215 +283318,Google Phone,1,600.0,2019-11-20 11:23:00,980 4th St, Boston,MA,02215 +283318,USB-C Charging Cable,1,11.95,2019-11-20 11:23:00,980 4th St, Boston,MA,02215 +283319,AA Batteries (4-pack),1,3.84,2019-11-20 11:10:00,154 Church St, New York City,NY,10001 +283320,27in 4K Gaming Monitor,1,389.99,2019-11-20 16:09:00,575 10th St, Portland,OR,97035 +283321,AAA Batteries (4-pack),1,2.99,2019-11-22 23:29:00,784 Sunset St, Austin,TX,73301 +283322,USB-C Charging Cable,1,11.95,2019-11-12 12:35:00,62 7th St, Dallas,TX,75001 +283323,AAA Batteries (4-pack),1,2.99,2019-11-06 11:21:00,847 Chestnut St, Boston,MA,02215 +283324,Lightning Charging Cable,1,14.95,2019-11-26 05:30:00,127 Lake St, Los Angeles,CA,90001 +283325,27in FHD Monitor,1,149.99,2019-11-09 16:30:00,58 South St, Los Angeles,CA,90001 +283326,Apple Airpods Headphones,1,150.0,2019-11-13 14:37:00,323 4th St, San Francisco,CA,94016 +283327,Macbook Pro Laptop,1,1700.0,2019-11-18 20:25:00,368 9th St, Portland,OR,97035 +283328,Lightning Charging Cable,1,14.95,2019-11-01 11:48:00,190 Cedar St, San Francisco,CA,94016 +283329,Lightning Charging Cable,1,14.95,2019-11-23 16:13:00,620 Ridge St, New York City,NY,10001 +283330,Apple Airpods Headphones,1,150.0,2019-11-27 17:55:00,284 Madison St, Los Angeles,CA,90001 +283331,iPhone,1,700.0,2019-11-05 10:15:00,555 4th St, Dallas,TX,75001 +283332,Google Phone,1,600.0,2019-11-26 20:09:00,858 Hickory St, San Francisco,CA,94016 +283333,Apple Airpods Headphones,1,150.0,2019-11-25 16:01:00,580 Sunset St, Portland,OR,97035 +283334,Wired Headphones,1,11.99,2019-11-21 17:08:00,342 Jefferson St, Dallas,TX,75001 +283335,27in 4K Gaming Monitor,1,389.99,2019-11-09 21:52:00,204 Dogwood St, Portland,OR,97035 +283336,Google Phone,1,600.0,2019-11-08 19:46:00,523 11th St, Boston,MA,02215 +283336,Bose SoundSport Headphones,1,99.99,2019-11-08 19:46:00,523 11th St, Boston,MA,02215 +283337,AA Batteries (4-pack),1,3.84,2019-11-16 20:06:00,280 Chestnut St, Atlanta,GA,30301 +283338,Google Phone,1,600.0,2019-11-17 18:59:00,15 Sunset St, Los Angeles,CA,90001 +283339,Lightning Charging Cable,1,14.95,2019-11-05 20:48:00,414 Lakeview St, New York City,NY,10001 +283340,Wired Headphones,1,11.99,2019-11-06 18:46:00,616 Center St, San Francisco,CA,94016 +283341,Wired Headphones,1,11.99,2019-11-13 09:03:00,374 12th St, Boston,MA,02215 +283342,20in Monitor,1,109.99,2019-11-27 12:09:00,65 Park St, Los Angeles,CA,90001 +283343,AA Batteries (4-pack),1,3.84,2019-11-10 11:23:00,41 Madison St, Los Angeles,CA,90001 +283344,Google Phone,1,600.0,2019-11-18 17:33:00,458 Spruce St, San Francisco,CA,94016 +283344,USB-C Charging Cable,1,11.95,2019-11-18 17:33:00,458 Spruce St, San Francisco,CA,94016 +283345,AAA Batteries (4-pack),1,2.99,2019-11-26 21:43:00,205 Elm St, New York City,NY,10001 +283346,AA Batteries (4-pack),1,3.84,2019-11-14 17:46:00,744 6th St, Los Angeles,CA,90001 +283347,Bose SoundSport Headphones,1,99.99,2019-11-05 14:13:00,926 10th St, New York City,NY,10001 +283348,AAA Batteries (4-pack),1,2.99,2019-11-02 12:30:00,128 Center St, Los Angeles,CA,90001 +283349,Lightning Charging Cable,1,14.95,2019-11-25 13:48:00,238 Park St, New York City,NY,10001 +283350,Bose SoundSport Headphones,1,99.99,2019-11-02 21:20:00,777 River St, Los Angeles,CA,90001 +283351,AAA Batteries (4-pack),1,2.99,2019-11-23 10:22:00,445 North St, Atlanta,GA,30301 +283352,Apple Airpods Headphones,1,150.0,2019-11-30 12:55:00,496 Pine St, San Francisco,CA,94016 +283353,Bose SoundSport Headphones,1,99.99,2019-11-05 12:13:00,7 7th St, San Francisco,CA,94016 +283354,Flatscreen TV,1,300.0,2019-11-02 18:35:00,150 South St, Boston,MA,02215 +283355,Apple Airpods Headphones,1,150.0,2019-11-22 14:09:00,672 Cedar St, Seattle,WA,98101 +283356,USB-C Charging Cable,1,11.95,2019-11-13 20:09:00,855 South St, San Francisco,CA,94016 +283357,Lightning Charging Cable,1,14.95,2019-11-10 17:15:00,997 Willow St, Atlanta,GA,30301 +283358,iPhone,1,700.0,2019-11-17 20:42:00,47 Willow St, San Francisco,CA,94016 +283359,20in Monitor,1,109.99,2019-11-22 13:43:00,9 2nd St, Austin,TX,73301 +283360,34in Ultrawide Monitor,1,379.99,2019-11-05 21:51:00,68 Lincoln St, San Francisco,CA,94016 +283361,Bose SoundSport Headphones,1,99.99,2019-11-04 12:27:00,945 12th St, Atlanta,GA,30301 +283362,iPhone,1,700.0,2019-11-08 10:16:00,981 Forest St, New York City,NY,10001 +283363,Bose SoundSport Headphones,1,99.99,2019-11-14 21:13:00,837 Wilson St, Seattle,WA,98101 +283364,Flatscreen TV,1,300.0,2019-11-20 14:55:00,391 Madison St, New York City,NY,10001 +283365,Wired Headphones,1,11.99,2019-11-07 18:47:00,353 Johnson St, Boston,MA,02215 +283366,Wired Headphones,2,11.99,2019-11-27 01:14:00,242 River St, Los Angeles,CA,90001 +283367,AA Batteries (4-pack),1,3.84,2019-11-19 18:02:00,932 Cedar St, Atlanta,GA,30301 +283368,Bose SoundSport Headphones,1,99.99,2019-11-06 22:46:00,430 Cedar St, San Francisco,CA,94016 +283369,AAA Batteries (4-pack),1,2.99,2019-11-29 21:14:00,444 6th St, Portland,OR,97035 +283370,USB-C Charging Cable,1,11.95,2019-11-01 11:51:00,792 Spruce St, Boston,MA,02215 +283371,Wired Headphones,1,11.99,2019-11-27 20:51:00,333 Jefferson St, Seattle,WA,98101 +283372,Lightning Charging Cable,1,14.95,2019-11-06 13:05:00,709 Jefferson St, Portland,OR,97035 +283373,AA Batteries (4-pack),1,3.84,2019-11-03 21:37:00,975 12th St, Dallas,TX,75001 +283374,AAA Batteries (4-pack),1,2.99,2019-11-25 20:09:00,91 Lincoln St, Atlanta,GA,30301 +283375,Lightning Charging Cable,1,14.95,2019-11-28 17:21:00,127 Cedar St, San Francisco,CA,94016 +283376,AA Batteries (4-pack),1,3.84,2019-11-25 20:06:00,778 Jackson St, Los Angeles,CA,90001 +283377,Google Phone,1,600.0,2019-11-08 22:28:00,544 North St, Los Angeles,CA,90001 +283378,USB-C Charging Cable,1,11.95,2019-11-05 21:28:00,439 Cherry St, San Francisco,CA,94016 +283379,AA Batteries (4-pack),1,3.84,2019-11-10 04:48:00,128 7th St, Portland,ME,04101 +283380,Flatscreen TV,1,300.0,2019-11-04 21:54:00,27 Cherry St, Boston,MA,02215 +283381,AAA Batteries (4-pack),1,2.99,2019-11-09 11:47:00,281 West St, Seattle,WA,98101 +283382,AA Batteries (4-pack),1,3.84,2019-11-14 13:50:00,627 North St, Boston,MA,02215 +283383,AA Batteries (4-pack),1,3.84,2019-11-14 12:31:00,383 12th St, New York City,NY,10001 +283384,27in FHD Monitor,1,149.99,2019-11-25 14:20:00,613 Cedar St, Los Angeles,CA,90001 +283385,AA Batteries (4-pack),1,3.84,2019-11-08 15:22:00,304 Spruce St, Atlanta,GA,30301 +283386,USB-C Charging Cable,1,11.95,2019-11-29 06:11:00,574 Park St, San Francisco,CA,94016 +283387,Lightning Charging Cable,1,14.95,2019-11-05 19:35:00,569 Pine St, Portland,OR,97035 +283388,Lightning Charging Cable,1,14.95,2019-11-05 17:10:00,503 9th St, Boston,MA,02215 +283389,USB-C Charging Cable,1,11.95,2019-11-28 19:39:00,865 North St, Boston,MA,02215 +283390,USB-C Charging Cable,1,11.95,2019-11-01 22:33:00,175 Adams St, Boston,MA,02215 +283391,USB-C Charging Cable,1,11.95,2019-11-04 10:52:00,952 Wilson St, Boston,MA,02215 +283392,USB-C Charging Cable,1,11.95,2019-11-17 12:36:00,705 Park St, Los Angeles,CA,90001 +283393,34in Ultrawide Monitor,1,379.99,2019-11-20 19:34:00,121 4th St, Los Angeles,CA,90001 +283394,AAA Batteries (4-pack),1,2.99,2019-11-25 13:57:00,17 Sunset St, Los Angeles,CA,90001 +283395,27in 4K Gaming Monitor,1,389.99,2019-11-23 19:25:00,141 4th St, Boston,MA,02215 +283396,Wired Headphones,1,11.99,2019-11-19 09:56:00,895 Cedar St, Austin,TX,73301 +283397,Lightning Charging Cable,1,14.95,2019-11-19 21:36:00,403 Adams St, Portland,OR,97035 +283398,Lightning Charging Cable,1,14.95,2019-11-10 08:04:00,272 Wilson St, San Francisco,CA,94016 +283399,AAA Batteries (4-pack),1,2.99,2019-11-07 07:19:00,701 2nd St, Los Angeles,CA,90001 +283400,Bose SoundSport Headphones,1,99.99,2019-11-13 23:29:00,703 Chestnut St, New York City,NY,10001 +283401,AA Batteries (4-pack),2,3.84,2019-11-28 20:02:00,276 Lake St, New York City,NY,10001 +283402,Lightning Charging Cable,1,14.95,2019-11-08 18:43:00,972 Wilson St, Dallas,TX,75001 +283403,USB-C Charging Cable,1,11.95,2019-11-15 16:42:00,785 Cherry St, Los Angeles,CA,90001 +283404,Wired Headphones,1,11.99,2019-11-11 15:50:00,978 Cherry St, San Francisco,CA,94016 +283405,Lightning Charging Cable,1,14.95,2019-11-09 17:49:00,641 14th St, Boston,MA,02215 +283406,USB-C Charging Cable,1,11.95,2019-11-04 19:52:00,78 Lincoln St, Boston,MA,02215 +283407,27in FHD Monitor,1,149.99,2019-11-03 07:27:00,47 North St, Atlanta,GA,30301 +283408,AAA Batteries (4-pack),1,2.99,2019-11-04 15:21:00,568 Highland St, Seattle,WA,98101 +283409,Apple Airpods Headphones,1,150.0,2019-11-23 17:42:00,472 Cedar St, New York City,NY,10001 +283410,ThinkPad Laptop,1,999.99,2019-11-18 09:37:00,644 Pine St, Seattle,WA,98101 +283411,27in 4K Gaming Monitor,1,389.99,2019-11-21 23:46:00,861 10th St, Los Angeles,CA,90001 +283412,Lightning Charging Cable,1,14.95,2019-11-13 07:29:00,536 Hickory St, Boston,MA,02215 +283413,AAA Batteries (4-pack),1,2.99,2019-11-22 20:20:00,132 Lakeview St, Los Angeles,CA,90001 +283414,Lightning Charging Cable,1,14.95,2019-11-24 11:19:00,188 Cherry St, New York City,NY,10001 +283415,Wired Headphones,1,11.99,2019-11-25 15:31:00,59 10th St, San Francisco,CA,94016 +283416,Lightning Charging Cable,1,14.95,2019-11-27 12:26:00,457 Spruce St, Boston,MA,02215 +283417,AA Batteries (4-pack),1,3.84,2019-11-03 22:10:00,949 Ridge St, San Francisco,CA,94016 +283418,Lightning Charging Cable,1,14.95,2019-11-19 22:09:00,745 Maple St, Portland,OR,97035 +283419,Lightning Charging Cable,1,14.95,2019-11-22 10:48:00,311 Cherry St, San Francisco,CA,94016 +283420,Bose SoundSport Headphones,1,99.99,2019-11-15 17:04:00,150 10th St, Portland,OR,97035 +283421,USB-C Charging Cable,1,11.95,2019-11-13 19:17:00,366 Dogwood St, San Francisco,CA,94016 +283422,Wired Headphones,1,11.99,2019-11-22 10:26:00,504 12th St, San Francisco,CA,94016 +283423,AAA Batteries (4-pack),1,2.99,2019-11-07 22:00:00,193 Walnut St, Austin,TX,73301 +283424,Wired Headphones,3,11.99,2019-11-02 16:07:00,851 Meadow St, New York City,NY,10001 +283425,Vareebadd Phone,1,400.0,2019-11-30 12:32:00,48 14th St, Los Angeles,CA,90001 +283426,Apple Airpods Headphones,1,150.0,2019-11-02 17:17:00,420 Walnut St, Dallas,TX,75001 +283427,20in Monitor,1,109.99,2019-11-11 16:48:00,286 North St, Austin,TX,73301 +283428,Lightning Charging Cable,1,14.95,2019-11-05 14:16:00,108 6th St, Portland,ME,04101 +283429,Lightning Charging Cable,1,14.95,2019-11-04 20:04:00,155 13th St, Atlanta,GA,30301 +283430,AAA Batteries (4-pack),1,2.99,2019-11-21 00:24:00,874 6th St, San Francisco,CA,94016 +283431,AA Batteries (4-pack),1,3.84,2019-11-21 12:59:00,470 Lincoln St, Boston,MA,02215 +283432,Bose SoundSport Headphones,1,99.99,2019-11-20 19:34:00,851 Sunset St, Dallas,TX,75001 +283433,USB-C Charging Cable,1,11.95,2019-11-22 14:39:00,253 10th St, San Francisco,CA,94016 +283434,AA Batteries (4-pack),1,3.84,2019-11-17 13:41:00,392 River St, New York City,NY,10001 +283435,AAA Batteries (4-pack),2,2.99,2019-11-05 17:28:00,450 8th St, San Francisco,CA,94016 +283436,27in FHD Monitor,1,149.99,2019-11-25 10:35:00,108 Jefferson St, San Francisco,CA,94016 +283437,Google Phone,1,600.0,2019-11-07 16:52:00,669 13th St, Portland,OR,97035 +283438,AA Batteries (4-pack),1,3.84,2019-11-18 13:12:00,217 Chestnut St, Los Angeles,CA,90001 +283439,Flatscreen TV,1,300.0,2019-11-22 19:44:00,404 10th St, San Francisco,CA,94016 +283440,AA Batteries (4-pack),1,3.84,2019-11-06 19:09:00,269 11th St, San Francisco,CA,94016 +283441,ThinkPad Laptop,1,999.99,2019-11-28 08:04:00,723 6th St, San Francisco,CA,94016 +283442,Lightning Charging Cable,1,14.95,2019-11-03 17:13:00,316 North St, San Francisco,CA,94016 +283443,Lightning Charging Cable,1,14.95,2019-11-30 12:39:00,853 Johnson St, San Francisco,CA,94016 +283444,27in 4K Gaming Monitor,1,389.99,2019-11-07 01:05:00,54 10th St, Portland,OR,97035 +283445,AAA Batteries (4-pack),1,2.99,2019-11-13 12:03:00,100 Park St, San Francisco,CA,94016 +283446,USB-C Charging Cable,1,11.95,2019-11-22 18:16:00,369 Highland St, Portland,OR,97035 +283447,iPhone,1,700.0,2019-11-10 17:46:00,271 Lakeview St, Boston,MA,02215 +283448,Apple Airpods Headphones,1,150.0,2019-11-24 14:15:00,798 Sunset St, Boston,MA,02215 +283449,27in 4K Gaming Monitor,1,389.99,2019-11-24 12:53:00,326 Cedar St, Boston,MA,02215 +283450,Lightning Charging Cable,1,14.95,2019-11-05 08:47:00,763 Church St, Boston,MA,02215 +283451,USB-C Charging Cable,1,11.95,2019-11-16 12:42:00,343 River St, New York City,NY,10001 +283452,AA Batteries (4-pack),1,3.84,2019-11-17 12:48:00,664 Chestnut St, Portland,ME,04101 +283453,27in FHD Monitor,1,149.99,2019-11-19 06:43:00,900 Pine St, San Francisco,CA,94016 +283454,Apple Airpods Headphones,1,150.0,2019-11-13 09:29:00,914 13th St, San Francisco,CA,94016 +283455,AAA Batteries (4-pack),1,2.99,2019-11-25 09:53:00,923 South St, Dallas,TX,75001 +283456,Apple Airpods Headphones,1,150.0,2019-11-07 18:08:00,385 13th St, San Francisco,CA,94016 +283457,USB-C Charging Cable,1,11.95,2019-11-22 10:48:00,33 Hickory St, New York City,NY,10001 +283458,Lightning Charging Cable,1,14.95,2019-11-24 20:14:00,704 8th St, Los Angeles,CA,90001 +283459,USB-C Charging Cable,1,11.95,2019-11-05 08:34:00,24 Hill St, New York City,NY,10001 +283460,Lightning Charging Cable,1,14.95,2019-11-20 09:04:00,294 Forest St, Atlanta,GA,30301 +283461,AAA Batteries (4-pack),1,2.99,2019-11-18 21:08:00,305 4th St, San Francisco,CA,94016 +283462,Bose SoundSport Headphones,1,99.99,2019-11-24 22:07:00,200 11th St, New York City,NY,10001 +283463,Bose SoundSport Headphones,1,99.99,2019-11-09 19:55:00,617 Church St, New York City,NY,10001 +283464,Lightning Charging Cable,1,14.95,2019-11-19 19:18:00,230 10th St, San Francisco,CA,94016 +283465,USB-C Charging Cable,1,11.95,2019-11-30 11:16:00,646 Wilson St, New York City,NY,10001 +283466,iPhone,1,700.0,2019-11-29 12:17:00,995 Cherry St, Dallas,TX,75001 +283466,Lightning Charging Cable,1,14.95,2019-11-29 12:17:00,995 Cherry St, Dallas,TX,75001 +283467,LG Washing Machine,1,600.0,2019-11-10 14:28:00,371 Lakeview St, San Francisco,CA,94016 +283468,AAA Batteries (4-pack),2,2.99,2019-11-12 10:02:00,587 Jackson St, Dallas,TX,75001 +283469,34in Ultrawide Monitor,1,379.99,2019-11-24 11:14:00,450 Park St, Los Angeles,CA,90001 +283470,USB-C Charging Cable,1,11.95,2019-11-29 19:36:00,352 8th St, Atlanta,GA,30301 +283471,Lightning Charging Cable,1,14.95,2019-11-14 13:59:00,737 14th St, Portland,OR,97035 +283472,Flatscreen TV,1,300.0,2019-11-02 17:17:00,19 Madison St, Atlanta,GA,30301 +283473,Bose SoundSport Headphones,1,99.99,2019-11-17 18:49:00,267 Willow St, San Francisco,CA,94016 +283474,AAA Batteries (4-pack),1,2.99,2019-11-01 08:10:00,716 Dogwood St, New York City,NY,10001 +283475,AA Batteries (4-pack),2,3.84,2019-11-27 05:37:00,314 Chestnut St, Atlanta,GA,30301 +283476,USB-C Charging Cable,1,11.95,2019-11-16 08:45:00,297 River St, Los Angeles,CA,90001 +283477,USB-C Charging Cable,1,11.95,2019-11-27 22:31:00,70 Jefferson St, Boston,MA,02215 +283478,20in Monitor,1,109.99,2019-11-24 18:02:00,443 12th St, San Francisco,CA,94016 +283479,Wired Headphones,1,11.99,2019-11-03 09:40:00,81 Lake St, San Francisco,CA,94016 +283480,AA Batteries (4-pack),2,3.84,2019-11-01 20:08:00,491 8th St, San Francisco,CA,94016 +283481,ThinkPad Laptop,1,999.99,2019-11-17 13:12:00,720 11th St, San Francisco,CA,94016 +283482,Bose SoundSport Headphones,1,99.99,2019-11-18 10:36:00,134 8th St, San Francisco,CA,94016 +283483,Apple Airpods Headphones,1,150.0,2019-11-29 11:40:00,423 West St, Los Angeles,CA,90001 +283484,27in 4K Gaming Monitor,1,389.99,2019-11-08 16:54:00,25 Jackson St, Seattle,WA,98101 +283485,iPhone,1,700.0,2019-11-04 16:14:00,686 14th St, Boston,MA,02215 +283486,Wired Headphones,2,11.99,2019-11-10 13:43:00,853 11th St, San Francisco,CA,94016 +283487,Wired Headphones,1,11.99,2019-11-19 14:23:00,4 Highland St, New York City,NY,10001 +283488,Bose SoundSport Headphones,1,99.99,2019-11-14 15:18:00,837 Highland St, San Francisco,CA,94016 +283489,USB-C Charging Cable,1,11.95,2019-11-11 20:16:00,167 River St, Los Angeles,CA,90001 +283490,USB-C Charging Cable,1,11.95,2019-11-07 10:08:00,675 Forest St, Los Angeles,CA,90001 +283491,27in FHD Monitor,1,149.99,2019-11-17 14:53:00,702 Walnut St, Portland,ME,04101 +283492,Lightning Charging Cable,2,14.95,2019-11-10 22:54:00,614 River St, Boston,MA,02215 +283493,Bose SoundSport Headphones,1,99.99,2019-11-12 22:16:00,508 14th St, Seattle,WA,98101 +283494,27in FHD Monitor,1,149.99,2019-11-30 03:48:00,777 Pine St, San Francisco,CA,94016 +283495,Wired Headphones,1,11.99,2019-11-16 10:30:00,150 7th St, Dallas,TX,75001 +283496,Lightning Charging Cable,2,14.95,2019-11-03 18:26:00,151 Dogwood St, Boston,MA,02215 +283497,AA Batteries (4-pack),1,3.84,2019-11-12 01:13:00,211 Main St, Atlanta,GA,30301 +283498,Wired Headphones,1,11.99,2019-11-09 21:07:00,84 North St, Seattle,WA,98101 +283499,iPhone,1,700.0,2019-11-17 14:50:00,543 9th St, New York City,NY,10001 +283500,34in Ultrawide Monitor,1,379.99,2019-11-06 12:46:00,506 North St, Seattle,WA,98101 +283501,Lightning Charging Cable,1,14.95,2019-11-17 14:51:00,395 Highland St, Boston,MA,02215 +283502,USB-C Charging Cable,1,11.95,2019-11-07 22:08:00,390 Adams St, Los Angeles,CA,90001 +283503,34in Ultrawide Monitor,1,379.99,2019-11-21 16:12:00,216 6th St, New York City,NY,10001 +283504,Macbook Pro Laptop,1,1700.0,2019-11-28 14:24:00,42 Lakeview St, Los Angeles,CA,90001 +283505,Bose SoundSport Headphones,1,99.99,2019-11-07 00:34:00,29 Jackson St, Boston,MA,02215 +283506,AA Batteries (4-pack),1,3.84,2019-11-17 19:05:00,431 Jefferson St, Seattle,WA,98101 +283507,Lightning Charging Cable,1,14.95,2019-11-06 09:42:00,143 Washington St, Boston,MA,02215 +283508,AAA Batteries (4-pack),1,2.99,2019-11-25 18:10:00,29 Park St, Boston,MA,02215 +283509,27in 4K Gaming Monitor,1,389.99,2019-11-07 20:40:00,356 Church St, San Francisco,CA,94016 +283510,34in Ultrawide Monitor,1,379.99,2019-11-10 17:02:00,170 7th St, Austin,TX,73301 +283511,Lightning Charging Cable,1,14.95,2019-11-20 17:42:00,969 Jackson St, San Francisco,CA,94016 +283512,AA Batteries (4-pack),4,3.84,2019-11-25 18:17:00,708 10th St, Los Angeles,CA,90001 +283513,Wired Headphones,1,11.99,2019-11-21 12:45:00,691 River St, Dallas,TX,75001 +283514,Bose SoundSport Headphones,1,99.99,2019-11-11 13:48:00,650 Church St, Boston,MA,02215 +283515,Lightning Charging Cable,1,14.95,2019-11-10 13:22:00,862 2nd St, New York City,NY,10001 +283516,AA Batteries (4-pack),1,3.84,2019-11-21 22:51:00,3 1st St, Atlanta,GA,30301 +283516,Apple Airpods Headphones,1,150.0,2019-11-21 22:51:00,3 1st St, Atlanta,GA,30301 +283517,Bose SoundSport Headphones,1,99.99,2019-11-07 23:04:00,31 4th St, Dallas,TX,75001 +283518,AA Batteries (4-pack),1,3.84,2019-11-23 17:30:00,300 5th St, San Francisco,CA,94016 +283519,USB-C Charging Cable,1,11.95,2019-11-03 19:41:00,305 Highland St, New York City,NY,10001 +283520,USB-C Charging Cable,1,11.95,2019-11-22 14:43:00,629 Johnson St, Austin,TX,73301 +283521,AAA Batteries (4-pack),1,2.99,2019-11-26 09:21:00,328 Walnut St, Atlanta,GA,30301 +283522,AA Batteries (4-pack),1,3.84,2019-11-28 12:25:00,43 9th St, Boston,MA,02215 +283522,Apple Airpods Headphones,1,150.0,2019-11-28 12:25:00,43 9th St, Boston,MA,02215 +283523,AAA Batteries (4-pack),1,2.99,2019-11-28 18:03:00,751 River St, San Francisco,CA,94016 +283524,USB-C Charging Cable,1,11.95,2019-11-24 17:08:00,656 Wilson St, San Francisco,CA,94016 +283525,Flatscreen TV,1,300.0,2019-11-21 20:34:00,703 8th St, San Francisco,CA,94016 +283526,Lightning Charging Cable,2,14.95,2019-11-26 19:33:00,545 Church St, Boston,MA,02215 +283527,AA Batteries (4-pack),1,3.84,2019-11-28 19:52:00,285 West St, Austin,TX,73301 +283528,Wired Headphones,1,11.99,2019-11-13 10:05:00,486 Johnson St, Los Angeles,CA,90001 +283529,27in FHD Monitor,1,149.99,2019-11-02 12:47:00,73 Washington St, Los Angeles,CA,90001 +283530,Google Phone,1,600.0,2019-11-01 19:04:00,899 11th St, Los Angeles,CA,90001 +283531,34in Ultrawide Monitor,1,379.99,2019-11-23 11:52:00,162 6th St, Atlanta,GA,30301 +283532,USB-C Charging Cable,2,11.95,2019-11-14 11:04:00,291 Cedar St, Dallas,TX,75001 +283533,Google Phone,1,600.0,2019-11-05 19:00:00,349 9th St, Los Angeles,CA,90001 +283534,AAA Batteries (4-pack),2,2.99,2019-11-23 04:00:00,695 Hill St, Boston,MA,02215 +283535,USB-C Charging Cable,1,11.95,2019-11-17 15:43:00,857 Pine St, San Francisco,CA,94016 +283536,Macbook Pro Laptop,1,1700.0,2019-11-03 17:14:00,254 8th St, Portland,OR,97035 +283537,ThinkPad Laptop,1,999.99,2019-11-14 14:57:00,561 Lincoln St, San Francisco,CA,94016 +283538,iPhone,1,700.0,2019-11-23 15:22:00,233 Center St, Boston,MA,02215 +283539,AA Batteries (4-pack),2,3.84,2019-11-13 22:41:00,128 4th St, Los Angeles,CA,90001 +283540,Wired Headphones,1,11.99,2019-11-19 07:45:00,166 Washington St, Boston,MA,02215 +283541,27in FHD Monitor,1,149.99,2019-11-20 13:21:00,50 West St, San Francisco,CA,94016 +283542,Wired Headphones,1,11.99,2019-11-27 18:27:00,413 Jackson St, Boston,MA,02215 +283543,34in Ultrawide Monitor,1,379.99,2019-11-05 23:05:00,93 10th St, New York City,NY,10001 +283544,20in Monitor,1,109.99,2019-11-28 14:53:00,485 11th St, San Francisco,CA,94016 +283544,AAA Batteries (4-pack),1,2.99,2019-11-28 14:53:00,485 11th St, San Francisco,CA,94016 +283545,iPhone,1,700.0,2019-11-30 09:27:00,545 Center St, New York City,NY,10001 +283546,AA Batteries (4-pack),1,3.84,2019-11-05 21:15:00,310 Jefferson St, New York City,NY,10001 +283546,iPhone,1,700.0,2019-11-05 21:15:00,310 Jefferson St, New York City,NY,10001 +283547,AAA Batteries (4-pack),2,2.99,2019-11-24 13:57:00,453 Park St, Boston,MA,02215 +283548,iPhone,1,700.0,2019-11-02 10:03:00,373 Johnson St, Portland,ME,04101 +283549,AA Batteries (4-pack),1,3.84,2019-11-08 14:42:00,484 Dogwood St, Los Angeles,CA,90001 +283550,Bose SoundSport Headphones,1,99.99,2019-11-21 16:39:00,93 Highland St, Atlanta,GA,30301 +283551,iPhone,1,700.0,2019-11-17 10:33:00,248 14th St, Portland,OR,97035 +283552,AAA Batteries (4-pack),1,2.99,2019-11-04 22:53:00,8 Willow St, Los Angeles,CA,90001 +283553,USB-C Charging Cable,3,11.95,2019-11-12 11:31:00,690 Walnut St, San Francisco,CA,94016 +283554,AA Batteries (4-pack),1,3.84,2019-11-25 17:54:00,15 Center St, Austin,TX,73301 +283555,34in Ultrawide Monitor,1,379.99,2019-11-30 20:16:00,32 Pine St, San Francisco,CA,94016 +283556,34in Ultrawide Monitor,1,379.99,2019-11-30 16:43:00,228 Center St, Dallas,TX,75001 +283557,27in FHD Monitor,1,149.99,2019-11-07 15:11:00,543 Hickory St, New York City,NY,10001 +283558,27in FHD Monitor,1,149.99,2019-11-17 01:59:00,510 7th St, Boston,MA,02215 +283559,34in Ultrawide Monitor,1,379.99,2019-11-14 15:37:00,886 Sunset St, Los Angeles,CA,90001 +283560,AAA Batteries (4-pack),1,2.99,2019-11-18 04:40:00,637 Chestnut St, Dallas,TX,75001 +283561,Google Phone,1,600.0,2019-11-24 09:50:00,18 West St, New York City,NY,10001 +283561,USB-C Charging Cable,2,11.95,2019-11-24 09:50:00,18 West St, New York City,NY,10001 +283562,Google Phone,1,600.0,2019-11-21 00:45:00,568 Cedar St, San Francisco,CA,94016 +283562,Wired Headphones,2,11.99,2019-11-21 00:45:00,568 Cedar St, San Francisco,CA,94016 +283563,AA Batteries (4-pack),1,3.84,2019-11-09 17:47:00,696 Chestnut St, Los Angeles,CA,90001 +283564,Bose SoundSport Headphones,1,99.99,2019-11-04 10:46:00,824 4th St, Atlanta,GA,30301 +283565,Macbook Pro Laptop,1,1700.0,2019-11-30 10:51:00,391 1st St, Seattle,WA,98101 +283566,iPhone,1,700.0,2019-11-03 14:37:00,231 West St, Portland,OR,97035 +283567,Lightning Charging Cable,1,14.95,2019-11-20 12:23:00,833 Forest St, Portland,OR,97035 +283568,USB-C Charging Cable,1,11.95,2019-11-30 09:59:00,131 Jefferson St, Dallas,TX,75001 +283569,27in 4K Gaming Monitor,1,389.99,2019-11-10 17:46:00,157 Ridge St, San Francisco,CA,94016 +283570,27in FHD Monitor,1,149.99,2019-11-18 18:14:00,724 14th St, Los Angeles,CA,90001 +283571,AAA Batteries (4-pack),1,2.99,2019-11-17 16:58:00,858 Willow St, Dallas,TX,75001 +283572,Apple Airpods Headphones,1,150.0,2019-11-01 19:47:00,779 2nd St, San Francisco,CA,94016 +283573,USB-C Charging Cable,1,11.95,2019-11-30 18:43:00,285 Pine St, Portland,ME,04101 +283574,USB-C Charging Cable,1,11.95,2019-11-23 14:49:00,372 Spruce St, San Francisco,CA,94016 +283575,AAA Batteries (4-pack),2,2.99,2019-11-19 20:30:00,228 Hill St, Austin,TX,73301 +283576,Wired Headphones,1,11.99,2019-11-15 08:17:00,596 River St, San Francisco,CA,94016 +283577,Google Phone,1,600.0,2019-11-28 22:06:00,104 Church St, Los Angeles,CA,90001 +283577,USB-C Charging Cable,1,11.95,2019-11-28 22:06:00,104 Church St, Los Angeles,CA,90001 +283577,Wired Headphones,1,11.99,2019-11-28 22:06:00,104 Church St, Los Angeles,CA,90001 +283578,USB-C Charging Cable,1,11.95,2019-11-03 12:48:00,901 Madison St, New York City,NY,10001 +283579,34in Ultrawide Monitor,1,379.99,2019-11-13 13:12:00,617 River St, Los Angeles,CA,90001 +283580,Lightning Charging Cable,1,14.95,2019-11-01 10:52:00,352 1st St, San Francisco,CA,94016 +283581,AAA Batteries (4-pack),1,2.99,2019-11-11 01:24:00,721 Pine St, New York City,NY,10001 +283582,iPhone,1,700.0,2019-11-16 23:13:00,480 Meadow St, San Francisco,CA,94016 +283582,Wired Headphones,1,11.99,2019-11-16 23:13:00,480 Meadow St, San Francisco,CA,94016 +283583,Lightning Charging Cable,1,14.95,2019-11-17 22:57:00,233 Meadow St, Boston,MA,02215 +283584,AA Batteries (4-pack),1,3.84,2019-11-03 10:19:00,738 Spruce St, Atlanta,GA,30301 +283585,Wired Headphones,1,11.99,2019-11-29 09:40:00,534 Main St, San Francisco,CA,94016 +283585,27in FHD Monitor,1,149.99,2019-11-29 09:40:00,534 Main St, San Francisco,CA,94016 +283586,Wired Headphones,1,11.99,2019-11-26 07:51:00,787 10th St, Portland,OR,97035 +283587,20in Monitor,1,109.99,2019-11-16 17:35:00,505 Sunset St, San Francisco,CA,94016 +283588,Macbook Pro Laptop,1,1700.0,2019-11-01 09:43:00,473 Lake St, San Francisco,CA,94016 +283589,Vareebadd Phone,1,400.0,2019-11-09 08:55:00,346 11th St, Boston,MA,02215 +283590,Bose SoundSport Headphones,1,99.99,2019-11-21 10:21:00,104 Pine St, Los Angeles,CA,90001 +283591,Macbook Pro Laptop,1,1700.0,2019-11-04 15:08:00,781 10th St, Los Angeles,CA,90001 +283592,AAA Batteries (4-pack),1,2.99,2019-11-07 14:06:00,82 10th St, Dallas,TX,75001 +283593,iPhone,1,700.0,2019-11-16 17:32:00,643 Dogwood St, Los Angeles,CA,90001 +283594,Flatscreen TV,1,300.0,2019-11-10 18:52:00,219 Cherry St, New York City,NY,10001 +283595,Apple Airpods Headphones,1,150.0,2019-11-04 14:35:00,199 Spruce St, Portland,OR,97035 +283596,Wired Headphones,1,11.99,2019-11-22 11:21:00,521 Lake St, New York City,NY,10001 +283597,iPhone,1,700.0,2019-11-26 21:30:00,854 Park St, San Francisco,CA,94016 +283598,AA Batteries (4-pack),1,3.84,2019-11-29 19:32:00,278 1st St, Atlanta,GA,30301 +283599,Bose SoundSport Headphones,1,99.99,2019-11-22 00:17:00,638 11th St, San Francisco,CA,94016 +283600,Macbook Pro Laptop,1,1700.0,2019-11-30 09:37:00,532 Jefferson St, Atlanta,GA,30301 +283601,27in FHD Monitor,1,149.99,2019-11-23 14:02:00,629 Madison St, Seattle,WA,98101 +283602,Macbook Pro Laptop,1,1700.0,2019-11-19 22:07:00,483 River St, Dallas,TX,75001 +283603,Lightning Charging Cable,1,14.95,2019-11-23 17:44:00,636 12th St, Los Angeles,CA,90001 +283604,34in Ultrawide Monitor,1,379.99,2019-11-18 11:16:00,547 Jackson St, New York City,NY,10001 +283605,Wired Headphones,1,11.99,2019-11-23 20:02:00,828 Center St, Boston,MA,02215 +283606,AA Batteries (4-pack),1,3.84,2019-11-23 18:09:00,512 6th St, Seattle,WA,98101 +283607,Lightning Charging Cable,1,14.95,2019-11-28 13:57:00,349 Cherry St, San Francisco,CA,94016 +283608,AA Batteries (4-pack),1,3.84,2019-11-12 17:30:00,22 Park St, San Francisco,CA,94016 +283609,Apple Airpods Headphones,1,150.0,2019-11-08 14:22:00,899 4th St, Boston,MA,02215 +283610,iPhone,1,700.0,2019-11-08 19:13:00,695 Ridge St, Atlanta,GA,30301 +283611,Bose SoundSport Headphones,1,99.99,2019-11-29 13:08:00,616 Church St, Boston,MA,02215 +283612,Bose SoundSport Headphones,1,99.99,2019-11-04 06:06:00,663 West St, New York City,NY,10001 +283613,AA Batteries (4-pack),3,3.84,2019-11-17 19:17:00,61 8th St, San Francisco,CA,94016 +283613,Macbook Pro Laptop,1,1700.0,2019-11-17 19:17:00,61 8th St, San Francisco,CA,94016 +283614,Bose SoundSport Headphones,1,99.99,2019-11-15 18:07:00,770 Washington St, Atlanta,GA,30301 +283615,AA Batteries (4-pack),1,3.84,2019-11-18 17:34:00,701 Hickory St, New York City,NY,10001 +283616,Apple Airpods Headphones,1,150.0,2019-11-03 14:23:00,149 Lincoln St, Atlanta,GA,30301 +283617,Wired Headphones,1,11.99,2019-11-12 15:51:00,413 Forest St, San Francisco,CA,94016 +283618,AAA Batteries (4-pack),3,2.99,2019-11-12 13:02:00,289 Lake St, New York City,NY,10001 +283619,Wired Headphones,1,11.99,2019-11-14 13:21:00,595 Wilson St, Los Angeles,CA,90001 +283620,USB-C Charging Cable,1,11.95,2019-11-09 21:47:00,476 Walnut St, San Francisco,CA,94016 +283621,Apple Airpods Headphones,1,150.0,2019-11-10 15:08:00,332 Forest St, Los Angeles,CA,90001 +283622,USB-C Charging Cable,1,11.95,2019-11-26 02:57:00,910 11th St, San Francisco,CA,94016 +283622,Flatscreen TV,1,300.0,2019-11-26 02:57:00,910 11th St, San Francisco,CA,94016 +283623,AAA Batteries (4-pack),1,2.99,2019-11-13 17:48:00,839 7th St, Seattle,WA,98101 +283623,Wired Headphones,1,11.99,2019-11-13 17:48:00,839 7th St, Seattle,WA,98101 +283624,AAA Batteries (4-pack),1,2.99,2019-11-07 12:24:00,431 Spruce St, San Francisco,CA,94016 +283625,AA Batteries (4-pack),1,3.84,2019-11-07 21:24:00,454 6th St, Los Angeles,CA,90001 +283626,AAA Batteries (4-pack),1,2.99,2019-11-14 12:36:00,267 Maple St, Los Angeles,CA,90001 +283627,USB-C Charging Cable,1,11.95,2019-11-07 22:33:00,651 Jackson St, San Francisco,CA,94016 +283628,iPhone,1,700.0,2019-11-12 08:13:00,696 Spruce St, San Francisco,CA,94016 +283629,AAA Batteries (4-pack),1,2.99,2019-11-27 10:31:00,558 Lincoln St, New York City,NY,10001 +283630,USB-C Charging Cable,2,11.95,2019-11-10 13:33:00,880 8th St, San Francisco,CA,94016 +283631,USB-C Charging Cable,1,11.95,2019-11-28 18:03:00,621 Center St, San Francisco,CA,94016 +283632,AAA Batteries (4-pack),3,2.99,2019-11-18 18:16:00,419 2nd St, Atlanta,GA,30301 +283633,iPhone,1,700.0,2019-11-04 13:06:00,578 Center St, Boston,MA,02215 +283634,USB-C Charging Cable,1,11.95,2019-11-10 18:44:00,377 2nd St, Seattle,WA,98101 +283635,Wired Headphones,1,11.99,2019-11-09 11:00:00,608 Wilson St, Seattle,WA,98101 +283636,Google Phone,1,600.0,2019-11-09 14:35:00,296 4th St, Portland,OR,97035 +283637,Lightning Charging Cable,1,14.95,2019-11-08 18:43:00,171 Jackson St, Dallas,TX,75001 +283638,27in 4K Gaming Monitor,1,389.99,2019-11-15 09:34:00,732 9th St, San Francisco,CA,94016 +283639,27in 4K Gaming Monitor,1,389.99,2019-11-26 10:26:00,634 Hickory St, Boston,MA,02215 +283640,Macbook Pro Laptop,1,1700.0,2019-11-05 00:14:00,581 Elm St, Austin,TX,73301 +283641,AA Batteries (4-pack),1,3.84,2019-11-14 12:00:00,866 Wilson St, San Francisco,CA,94016 +283642,Bose SoundSport Headphones,1,99.99,2019-11-23 19:04:00,305 Maple St, Los Angeles,CA,90001 +283643,27in FHD Monitor,1,149.99,2019-11-18 14:17:00,564 Highland St, San Francisco,CA,94016 +283644,AA Batteries (4-pack),2,3.84,2019-11-26 17:42:00,674 South St, Portland,OR,97035 +283645,AAA Batteries (4-pack),2,2.99,2019-11-07 17:55:00,106 2nd St, New York City,NY,10001 +283646,34in Ultrawide Monitor,1,379.99,2019-11-06 11:13:00,943 11th St, Atlanta,GA,30301 +283647,Lightning Charging Cable,1,14.95,2019-11-02 11:26:00,714 Madison St, San Francisco,CA,94016 +283648,USB-C Charging Cable,1,11.95,2019-11-14 08:55:00,821 Main St, Dallas,TX,75001 +283649,Lightning Charging Cable,1,14.95,2019-11-04 10:46:00,592 Church St, Atlanta,GA,30301 +283650,AA Batteries (4-pack),1,3.84,2019-11-22 10:50:00,616 South St, Atlanta,GA,30301 +283650,Apple Airpods Headphones,1,150.0,2019-11-22 10:50:00,616 South St, Atlanta,GA,30301 +283651,Lightning Charging Cable,1,14.95,2019-11-18 16:43:00,497 Wilson St, Austin,TX,73301 +283652,Vareebadd Phone,1,400.0,2019-11-09 10:14:00,367 River St, Austin,TX,73301 +283653,Bose SoundSport Headphones,1,99.99,2019-11-02 18:13:00,532 11th St, Boston,MA,02215 +283654,Wired Headphones,1,11.99,2019-11-27 23:29:00,361 Spruce St, San Francisco,CA,94016 +283655,Lightning Charging Cable,2,14.95,2019-11-19 19:27:00,613 Hill St, Portland,OR,97035 +283656,USB-C Charging Cable,1,11.95,2019-11-23 16:38:00,117 Lincoln St, San Francisco,CA,94016 +283657,Bose SoundSport Headphones,1,99.99,2019-11-22 01:02:00,739 Spruce St, Seattle,WA,98101 +283658,USB-C Charging Cable,1,11.95,2019-11-29 23:30:00,226 Hill St, Los Angeles,CA,90001 +283659,Apple Airpods Headphones,1,150.0,2019-11-08 17:58:00,730 Willow St, Boston,MA,02215 +283660,Apple Airpods Headphones,1,150.0,2019-11-07 17:44:00,114 Park St, Austin,TX,73301 +283661,AA Batteries (4-pack),1,3.84,2019-11-13 16:14:00,767 11th St, New York City,NY,10001 +283662,Bose SoundSport Headphones,1,99.99,2019-11-24 20:06:00,570 6th St, San Francisco,CA,94016 +283663,27in FHD Monitor,1,149.99,2019-11-18 11:12:00,742 Adams St, Boston,MA,02215 +283664,Macbook Pro Laptop,1,1700.0,2019-11-22 13:58:00,686 Lincoln St, Los Angeles,CA,90001 +283665,34in Ultrawide Monitor,1,379.99,2019-11-20 20:24:00,421 Hill St, Los Angeles,CA,90001 +283666,AA Batteries (4-pack),1,3.84,2019-11-07 14:01:00,568 Spruce St, Los Angeles,CA,90001 +283667,Apple Airpods Headphones,1,150.0,2019-11-15 12:34:00,872 14th St, Atlanta,GA,30301 +283668,Lightning Charging Cable,1,14.95,2019-11-18 10:40:00,797 River St, Portland,OR,97035 +283669,Lightning Charging Cable,1,14.95,2019-11-27 18:40:00,184 Sunset St, Los Angeles,CA,90001 +283670,34in Ultrawide Monitor,1,379.99,2019-11-06 11:23:00,503 Pine St, New York City,NY,10001 +283671,27in FHD Monitor,1,149.99,2019-11-03 13:58:00,871 Lake St, Dallas,TX,75001 +283672,Vareebadd Phone,1,400.0,2019-11-03 23:56:00,460 10th St, San Francisco,CA,94016 +283673,Macbook Pro Laptop,1,1700.0,2019-11-02 17:49:00,145 Elm St, Portland,OR,97035 +283674,USB-C Charging Cable,1,11.95,2019-11-14 17:13:00,698 13th St, Boston,MA,02215 +283675,27in 4K Gaming Monitor,1,389.99,2019-11-07 15:05:00,29 Highland St, Portland,OR,97035 +283676,34in Ultrawide Monitor,1,379.99,2019-11-11 01:12:00,451 Lincoln St, Dallas,TX,75001 +283677,Lightning Charging Cable,1,14.95,2019-11-07 13:40:00,324 Adams St, New York City,NY,10001 +283678,AA Batteries (4-pack),1,3.84,2019-11-21 14:54:00,170 1st St, Dallas,TX,75001 +283679,Macbook Pro Laptop,1,1700.0,2019-11-19 15:19:00,836 Washington St, New York City,NY,10001 +283680,Google Phone,1,600.0,2019-11-23 13:27:00,510 Willow St, Los Angeles,CA,90001 +283681,Bose SoundSport Headphones,1,99.99,2019-11-30 04:46:00,796 Cherry St, Los Angeles,CA,90001 +283681,20in Monitor,1,109.99,2019-11-30 04:46:00,796 Cherry St, Los Angeles,CA,90001 +283682,Lightning Charging Cable,1,14.95,2019-11-16 15:43:00,414 Willow St, San Francisco,CA,94016 +283683,iPhone,1,700.0,2019-11-09 02:44:00,429 7th St, San Francisco,CA,94016 +283683,Lightning Charging Cable,1,14.95,2019-11-09 02:44:00,429 7th St, San Francisco,CA,94016 +283683,Apple Airpods Headphones,1,150.0,2019-11-09 02:44:00,429 7th St, San Francisco,CA,94016 +283684,Apple Airpods Headphones,1,150.0,2019-11-17 13:48:00,15 Adams St, San Francisco,CA,94016 +283685,AAA Batteries (4-pack),1,2.99,2019-11-10 01:57:00,742 Elm St, Austin,TX,73301 +283686,20in Monitor,1,109.99,2019-11-09 15:02:00,743 4th St, Los Angeles,CA,90001 +283687,Wired Headphones,2,11.99,2019-11-06 16:49:00,464 Lake St, San Francisco,CA,94016 +283688,Google Phone,1,600.0,2019-11-04 13:04:00,367 1st St, New York City,NY,10001 +283689,AAA Batteries (4-pack),1,2.99,2019-12-01 03:28:00,848 Walnut St, San Francisco,CA,94016 +283690,Bose SoundSport Headphones,1,99.99,2019-11-23 18:30:00,439 Cherry St, San Francisco,CA,94016 +283691,AA Batteries (4-pack),1,3.84,2019-11-02 09:59:00,195 Lincoln St, Boston,MA,02215 +283692,Bose SoundSport Headphones,1,99.99,2019-11-19 21:18:00,465 Chestnut St, Los Angeles,CA,90001 +283693,USB-C Charging Cable,2,11.95,2019-11-24 03:53:00,678 Hickory St, San Francisco,CA,94016 +283694,Apple Airpods Headphones,1,150.0,2019-11-07 14:11:00,825 Maple St, Austin,TX,73301 +283695,Wired Headphones,1,11.99,2019-11-23 12:28:00,841 10th St, Boston,MA,02215 +283696,Lightning Charging Cable,1,14.95,2019-11-04 11:21:00,307 7th St, Austin,TX,73301 +283697,Wired Headphones,1,11.99,2019-11-24 20:15:00,513 Spruce St, Boston,MA,02215 +283698,Wired Headphones,1,11.99,2019-11-16 20:17:00,398 Cherry St, Austin,TX,73301 +283699,Bose SoundSport Headphones,1,99.99,2019-11-24 08:41:00,662 Madison St, Los Angeles,CA,90001 +283700,20in Monitor,1,109.99,2019-11-18 15:51:00,648 Johnson St, Atlanta,GA,30301 +283701,Apple Airpods Headphones,1,150.0,2019-11-23 20:16:00,119 10th St, New York City,NY,10001 +283702,Wired Headphones,1,11.99,2019-11-19 20:46:00,432 Washington St, Los Angeles,CA,90001 +283703,USB-C Charging Cable,1,11.95,2019-11-24 22:20:00,22 Washington St, Atlanta,GA,30301 +283704,Apple Airpods Headphones,1,150.0,2019-11-14 18:33:00,256 13th St, San Francisco,CA,94016 +283705,Apple Airpods Headphones,1,150.0,2019-11-21 13:01:00,680 Cherry St, San Francisco,CA,94016 +283706,AA Batteries (4-pack),1,3.84,2019-11-21 22:35:00,892 Church St, Boston,MA,02215 +283707,AA Batteries (4-pack),1,3.84,2019-11-02 21:46:00,789 Walnut St, New York City,NY,10001 +283708,AAA Batteries (4-pack),3,2.99,2019-11-02 00:46:00,950 13th St, San Francisco,CA,94016 +283709,AA Batteries (4-pack),2,3.84,2019-11-01 21:44:00,220 Adams St, San Francisco,CA,94016 +283710,Wired Headphones,1,11.99,2019-11-06 10:18:00,125 8th St, Dallas,TX,75001 +283711,20in Monitor,1,109.99,2019-11-15 19:44:00,716 Washington St, San Francisco,CA,94016 +283712,iPhone,1,700.0,2019-11-28 10:26:00,771 Cherry St, San Francisco,CA,94016 +283713,34in Ultrawide Monitor,1,379.99,2019-11-20 16:51:00,554 4th St, Los Angeles,CA,90001 +283714,Flatscreen TV,1,300.0,2019-11-23 17:58:00,574 6th St, Boston,MA,02215 +283715,AA Batteries (4-pack),1,3.84,2019-11-01 08:08:00,291 7th St, San Francisco,CA,94016 +283716,Apple Airpods Headphones,1,150.0,2019-11-16 09:29:00,786 10th St, Portland,ME,04101 +283717,AA Batteries (4-pack),1,3.84,2019-11-14 23:10:00,107 Cedar St, San Francisco,CA,94016 +283718,AA Batteries (4-pack),3,3.84,2019-11-05 15:20:00,834 Center St, New York City,NY,10001 +283719,AA Batteries (4-pack),1,3.84,2019-11-28 18:50:00,616 5th St, San Francisco,CA,94016 +283720,27in 4K Gaming Monitor,1,389.99,2019-11-12 13:55:00,523 Chestnut St, Dallas,TX,75001 +283721,Apple Airpods Headphones,1,150.0,2019-11-14 23:44:00,607 Lincoln St, Seattle,WA,98101 +283722,AAA Batteries (4-pack),1,2.99,2019-11-15 10:00:00,18 Adams St, Atlanta,GA,30301 +283723,Flatscreen TV,1,300.0,2019-11-11 07:37:00,838 Lake St, Atlanta,GA,30301 +283724,27in 4K Gaming Monitor,1,389.99,2019-11-13 22:02:00,652 Ridge St, Seattle,WA,98101 +283725,Bose SoundSport Headphones,1,99.99,2019-11-16 20:46:00,313 Washington St, New York City,NY,10001 +283726,AA Batteries (4-pack),1,3.84,2019-11-19 10:05:00,582 Cherry St, Portland,ME,04101 +283727,Bose SoundSport Headphones,1,99.99,2019-11-25 20:45:00,158 Spruce St, Los Angeles,CA,90001 +283728,AAA Batteries (4-pack),3,2.99,2019-11-03 12:42:00,703 9th St, New York City,NY,10001 +283729,Wired Headphones,1,11.99,2019-11-21 06:13:00,720 Willow St, Portland,OR,97035 +283730,Flatscreen TV,1,300.0,2019-11-04 17:59:00,295 14th St, New York City,NY,10001 +283731,AAA Batteries (4-pack),1,2.99,2019-11-05 13:40:00,276 11th St, Boston,MA,02215 +283732,Bose SoundSport Headphones,1,99.99,2019-11-04 18:04:00,116 Hill St, Portland,OR,97035 +283733,Lightning Charging Cable,2,14.95,2019-11-07 12:27:00,828 Center St, New York City,NY,10001 +283734,Apple Airpods Headphones,1,150.0,2019-11-04 07:11:00,540 5th St, San Francisco,CA,94016 +283735,Flatscreen TV,1,300.0,2019-11-16 12:34:00,974 14th St, New York City,NY,10001 +283736,AA Batteries (4-pack),2,3.84,2019-11-08 10:11:00,135 2nd St, Atlanta,GA,30301 +283737,AA Batteries (4-pack),2,3.84,2019-11-25 23:16:00,117 Elm St, New York City,NY,10001 +283738,Flatscreen TV,1,300.0,2019-11-26 16:49:00,744 11th St, New York City,NY,10001 +283739,Flatscreen TV,1,300.0,2019-11-06 12:13:00,644 Madison St, Dallas,TX,75001 +283740,USB-C Charging Cable,1,11.95,2019-11-03 19:45:00,80 Main St, San Francisco,CA,94016 +283741,USB-C Charging Cable,1,11.95,2019-11-29 11:41:00,464 Elm St, Boston,MA,02215 +283742,Bose SoundSport Headphones,1,99.99,2019-11-02 17:07:00,287 River St, San Francisco,CA,94016 +283743,AAA Batteries (4-pack),3,2.99,2019-11-04 12:00:00,117 Hill St, Los Angeles,CA,90001 +283744,27in FHD Monitor,1,149.99,2019-11-30 14:05:00,230 Cherry St, Los Angeles,CA,90001 +283745,27in FHD Monitor,1,149.99,2019-11-26 16:19:00,273 South St, Seattle,WA,98101 +283746,Wired Headphones,1,11.99,2019-11-08 17:40:00,364 2nd St, Austin,TX,73301 +283747,Lightning Charging Cable,1,14.95,2019-11-11 18:22:00,703 Spruce St, Los Angeles,CA,90001 +283748,AA Batteries (4-pack),1,3.84,2019-11-10 20:37:00,886 5th St, Boston,MA,02215 +283749,Lightning Charging Cable,1,14.95,2019-11-10 19:45:00,336 6th St, Los Angeles,CA,90001 +283749,Apple Airpods Headphones,1,150.0,2019-11-10 19:45:00,336 6th St, Los Angeles,CA,90001 +283750,AA Batteries (4-pack),1,3.84,2019-11-03 20:49:00,211 14th St, New York City,NY,10001 +283751,AAA Batteries (4-pack),3,2.99,2019-11-25 08:58:00,930 River St, San Francisco,CA,94016 +283752,iPhone,1,700.0,2019-11-21 10:48:00,943 Lakeview St, Atlanta,GA,30301 +283752,Apple Airpods Headphones,1,150.0,2019-11-21 10:48:00,943 Lakeview St, Atlanta,GA,30301 +283753,27in 4K Gaming Monitor,1,389.99,2019-11-28 12:18:00,35 Hill St, Los Angeles,CA,90001 +283754,AA Batteries (4-pack),1,3.84,2019-11-04 16:16:00,945 Hickory St, Seattle,WA,98101 +283755,Apple Airpods Headphones,1,150.0,2019-11-22 14:35:00,751 Lincoln St, Seattle,WA,98101 +283756,AA Batteries (4-pack),1,3.84,2019-11-10 21:03:00,829 Wilson St, Atlanta,GA,30301 +283757,USB-C Charging Cable,1,11.95,2019-11-16 00:38:00,785 Highland St, Atlanta,GA,30301 +283758,Wired Headphones,1,11.99,2019-11-12 07:56:00,491 10th St, San Francisco,CA,94016 +283759,Apple Airpods Headphones,1,150.0,2019-11-24 13:21:00,451 Cherry St, Austin,TX,73301 +283760,Apple Airpods Headphones,1,150.0,2019-11-03 22:35:00,497 12th St, New York City,NY,10001 +283761,Vareebadd Phone,1,400.0,2019-11-25 15:42:00,532 13th St, Portland,OR,97035 +283762,Lightning Charging Cable,1,14.95,2019-11-02 20:48:00,946 12th St, Los Angeles,CA,90001 +283763,AA Batteries (4-pack),1,3.84,2019-11-10 12:45:00,843 Johnson St, San Francisco,CA,94016 +283764,Flatscreen TV,1,300.0,2019-11-05 19:04:00,262 Park St, San Francisco,CA,94016 +283765,Apple Airpods Headphones,1,150.0,2019-11-18 23:24:00,96 7th St, San Francisco,CA,94016 +283766,AAA Batteries (4-pack),1,2.99,2019-11-24 09:34:00,189 Ridge St, San Francisco,CA,94016 +283767,34in Ultrawide Monitor,1,379.99,2019-11-01 14:03:00,947 North St, New York City,NY,10001 +283768,Bose SoundSport Headphones,1,99.99,2019-11-09 21:22:00,238 Johnson St, San Francisco,CA,94016 +283769,Wired Headphones,1,11.99,2019-11-18 10:04:00,597 West St, Los Angeles,CA,90001 +283770,Flatscreen TV,1,300.0,2019-11-21 15:35:00,582 Hickory St, San Francisco,CA,94016 +283771,AAA Batteries (4-pack),1,2.99,2019-11-18 12:10:00,346 6th St, Los Angeles,CA,90001 +283772,Google Phone,1,600.0,2019-11-28 19:20:00,668 Lake St, San Francisco,CA,94016 +283773,USB-C Charging Cable,1,11.95,2019-11-26 10:49:00,523 Wilson St, Boston,MA,02215 +283774,Bose SoundSport Headphones,1,99.99,2019-11-20 15:31:00,234 6th St, San Francisco,CA,94016 +283775,Apple Airpods Headphones,1,150.0,2019-11-21 23:32:00,685 Elm St, San Francisco,CA,94016 +283776,27in FHD Monitor,1,149.99,2019-11-21 22:28:00,754 1st St, San Francisco,CA,94016 +283777,34in Ultrawide Monitor,1,379.99,2019-11-06 21:12:00,344 Highland St, Seattle,WA,98101 +283778,Lightning Charging Cable,1,14.95,2019-11-12 13:31:00,135 Sunset St, Los Angeles,CA,90001 +283779,Wired Headphones,2,11.99,2019-11-23 21:06:00,937 4th St, Los Angeles,CA,90001 +283780,27in FHD Monitor,1,149.99,2019-11-22 09:07:00,365 Lake St, Boston,MA,02215 +283781,Bose SoundSport Headphones,1,99.99,2019-11-17 23:08:00,251 Forest St, Portland,OR,97035 +283782,Apple Airpods Headphones,1,150.0,2019-11-08 22:59:00,412 Willow St, San Francisco,CA,94016 +283783,AAA Batteries (4-pack),1,2.99,2019-11-04 11:09:00,474 Jackson St, Los Angeles,CA,90001 +283784,Flatscreen TV,1,300.0,2019-11-06 22:12:00,535 Johnson St, Seattle,WA,98101 +283785,AA Batteries (4-pack),1,3.84,2019-11-14 17:42:00,964 13th St, Los Angeles,CA,90001 +283786,27in FHD Monitor,1,149.99,2019-11-20 00:15:00,994 4th St, San Francisco,CA,94016 +283787,AAA Batteries (4-pack),2,2.99,2019-11-09 17:28:00,483 West St, New York City,NY,10001 +283788,Apple Airpods Headphones,1,150.0,2019-11-25 11:10:00,735 11th St, San Francisco,CA,94016 +283789,USB-C Charging Cable,1,11.95,2019-11-20 11:57:00,497 2nd St, Seattle,WA,98101 +283790,USB-C Charging Cable,1,11.95,2019-11-19 17:47:00,703 4th St, Portland,OR,97035 +283791,AA Batteries (4-pack),1,3.84,2019-11-17 19:48:00,491 2nd St, Portland,OR,97035 +283792,34in Ultrawide Monitor,1,379.99,2019-11-28 12:47:00,431 10th St, Boston,MA,02215 +283793,AAA Batteries (4-pack),1,2.99,2019-11-20 14:19:00,121 Spruce St, Los Angeles,CA,90001 +283794,AA Batteries (4-pack),1,3.84,2019-11-29 10:31:00,736 Park St, Los Angeles,CA,90001 +283795,Google Phone,1,600.0,2019-11-28 17:51:00,281 Chestnut St, New York City,NY,10001 +283796,20in Monitor,1,109.99,2019-11-29 17:13:00,809 Jefferson St, San Francisco,CA,94016 +283797,USB-C Charging Cable,2,11.95,2019-11-16 02:34:00,962 Lincoln St, Austin,TX,73301 +283798,Wired Headphones,1,11.99,2019-11-24 10:51:00,725 Highland St, Los Angeles,CA,90001 +283798,Macbook Pro Laptop,1,1700.0,2019-11-24 10:51:00,725 Highland St, Los Angeles,CA,90001 +283799,ThinkPad Laptop,1,999.99,2019-11-17 17:49:00,704 13th St, San Francisco,CA,94016 +283800,AAA Batteries (4-pack),1,2.99,2019-11-02 08:18:00,989 Washington St, Portland,OR,97035 +283801,Apple Airpods Headphones,1,150.0,2019-11-30 13:01:00,833 Lake St, Dallas,TX,75001 +283802,Google Phone,1,600.0,2019-11-13 21:43:00,380 Johnson St, Austin,TX,73301 +283803,AAA Batteries (4-pack),1,2.99,2019-11-12 19:49:00,757 Elm St, Atlanta,GA,30301 +283804,Lightning Charging Cable,1,14.95,2019-11-24 21:45:00,853 Madison St, San Francisco,CA,94016 +283805,AAA Batteries (4-pack),1,2.99,2019-11-08 16:47:00,756 Johnson St, Seattle,WA,98101 +283806,AAA Batteries (4-pack),1,2.99,2019-11-21 16:07:00,398 Forest St, San Francisco,CA,94016 +283807,Lightning Charging Cable,1,14.95,2019-11-07 11:50:00,964 Willow St, San Francisco,CA,94016 +283808,AA Batteries (4-pack),1,3.84,2019-11-04 14:35:00,33 Jefferson St, San Francisco,CA,94016 +283809,ThinkPad Laptop,1,999.99,2019-11-26 15:27:00,578 1st St, San Francisco,CA,94016 +283810,Macbook Pro Laptop,1,1700.0,2019-11-05 09:41:00,868 South St, Atlanta,GA,30301 +283811,Wired Headphones,1,11.99,2019-11-05 22:44:00,777 Wilson St, San Francisco,CA,94016 +283812,AAA Batteries (4-pack),2,2.99,2019-11-13 00:58:00,493 Johnson St, Atlanta,GA,30301 +283813,Lightning Charging Cable,1,14.95,2019-11-21 14:36:00,960 River St, Seattle,WA,98101 +283814,Lightning Charging Cable,1,14.95,2019-11-23 14:01:00,524 Willow St, Portland,OR,97035 +283815,iPhone,1,700.0,2019-11-01 14:17:00,137 Cherry St, Boston,MA,02215 +283816,Lightning Charging Cable,1,14.95,2019-11-30 20:07:00,880 Pine St, San Francisco,CA,94016 +283817,27in FHD Monitor,1,149.99,2019-11-02 15:04:00,357 Main St, Boston,MA,02215 +283818,Bose SoundSport Headphones,1,99.99,2019-11-07 22:23:00,472 Lakeview St, Boston,MA,02215 +283819,20in Monitor,1,109.99,2019-11-01 18:45:00,38 Spruce St, San Francisco,CA,94016 +283820,34in Ultrawide Monitor,1,379.99,2019-11-27 13:02:00,785 Adams St, New York City,NY,10001 +283821,Macbook Pro Laptop,1,1700.0,2019-11-06 13:47:00,594 Spruce St, Portland,OR,97035 +283821,USB-C Charging Cable,1,11.95,2019-11-06 13:47:00,594 Spruce St, Portland,OR,97035 +283822,20in Monitor,1,109.99,2019-11-05 09:14:00,841 South St, New York City,NY,10001 +283823,Lightning Charging Cable,1,14.95,2019-11-24 14:49:00,67 Jefferson St, San Francisco,CA,94016 +283824,AAA Batteries (4-pack),1,2.99,2019-11-04 19:57:00,299 South St, Boston,MA,02215 +283825,AA Batteries (4-pack),1,3.84,2019-11-21 12:29:00,369 Main St, Los Angeles,CA,90001 +283826,Macbook Pro Laptop,1,1700.0,2019-11-16 10:50:00,967 Adams St, New York City,NY,10001 +283827,Lightning Charging Cable,1,14.95,2019-11-15 21:24:00,180 Maple St, Austin,TX,73301 +283828,Wired Headphones,1,11.99,2019-11-19 10:11:00,760 Lakeview St, Seattle,WA,98101 +283829,Macbook Pro Laptop,1,1700.0,2019-11-24 22:16:00,3 River St, Seattle,WA,98101 +283830,AAA Batteries (4-pack),1,2.99,2019-11-05 21:33:00,672 Spruce St, Seattle,WA,98101 +283831,USB-C Charging Cable,1,11.95,2019-11-23 18:45:00,568 Washington St, Los Angeles,CA,90001 +283832,AAA Batteries (4-pack),1,2.99,2019-11-25 13:55:00,396 Willow St, San Francisco,CA,94016 +283833,Lightning Charging Cable,1,14.95,2019-11-11 15:16:00,29 Lake St, Los Angeles,CA,90001 +283834,AA Batteries (4-pack),1,3.84,2019-11-17 15:19:00,729 12th St, New York City,NY,10001 +283835,Macbook Pro Laptop,1,1700.0,2019-11-01 17:08:00,533 West St, San Francisco,CA,94016 +283836,Apple Airpods Headphones,1,150.0,2019-11-14 12:47:00,444 Main St, Los Angeles,CA,90001 +283837,AAA Batteries (4-pack),1,2.99,2019-11-11 15:06:00,439 7th St, Atlanta,GA,30301 +283838,AAA Batteries (4-pack),5,2.99,2019-11-08 17:27:00,845 North St, Los Angeles,CA,90001 +283839,AA Batteries (4-pack),1,3.84,2019-11-08 05:56:00,604 Center St, Dallas,TX,75001 +283840,27in FHD Monitor,1,149.99,2019-11-27 18:03:00,486 Chestnut St, San Francisco,CA,94016 +283841,27in FHD Monitor,1,149.99,2019-11-17 10:38:00,335 Dogwood St, San Francisco,CA,94016 +283842,USB-C Charging Cable,1,11.95,2019-11-22 14:15:00,263 Lakeview St, Seattle,WA,98101 +283843,Wired Headphones,1,11.99,2019-11-19 23:13:00,850 Elm St, New York City,NY,10001 +283844,Bose SoundSport Headphones,1,99.99,2019-11-10 21:53:00,76 Ridge St, New York City,NY,10001 +283845,AA Batteries (4-pack),1,3.84,2019-11-26 12:00:00,382 Hickory St, San Francisco,CA,94016 +283846,Lightning Charging Cable,1,14.95,2019-11-24 16:58:00,231 North St, Atlanta,GA,30301 +283847,Wired Headphones,1,11.99,2019-11-18 08:28:00,463 Sunset St, Los Angeles,CA,90001 +283848,27in FHD Monitor,1,149.99,2019-11-12 13:58:00,513 12th St, Atlanta,GA,30301 +283849,27in 4K Gaming Monitor,1,389.99,2019-11-15 20:52:00,170 Dogwood St, Austin,TX,73301 +283850,AA Batteries (4-pack),1,3.84,2019-11-10 06:40:00,276 North St, Portland,OR,97035 +283851,Wired Headphones,1,11.99,2019-11-05 15:58:00,598 6th St, San Francisco,CA,94016 +283852,Bose SoundSport Headphones,1,99.99,2019-11-10 15:28:00,618 Ridge St, Dallas,TX,75001 +283853,Vareebadd Phone,1,400.0,2019-11-23 13:07:00,713 Forest St, Atlanta,GA,30301 +283853,USB-C Charging Cable,1,11.95,2019-11-23 13:07:00,713 Forest St, Atlanta,GA,30301 +283854,Bose SoundSport Headphones,1,99.99,2019-11-01 18:55:00,378 7th St, Dallas,TX,75001 +283855,AA Batteries (4-pack),1,3.84,2019-11-22 13:25:00,372 Jackson St, San Francisco,CA,94016 +283856,AA Batteries (4-pack),1,3.84,2019-11-13 10:33:00,179 12th St, Seattle,WA,98101 +283857,Apple Airpods Headphones,1,150.0,2019-11-01 19:44:00,737 9th St, Los Angeles,CA,90001 +283858,AA Batteries (4-pack),1,3.84,2019-12-01 00:02:00,85 Wilson St, Portland,OR,97035 +283859,USB-C Charging Cable,1,11.95,2019-11-03 18:13:00,27 12th St, Dallas,TX,75001 +283860,AAA Batteries (4-pack),1,2.99,2019-11-30 14:28:00,609 Cedar St, Austin,TX,73301 +283861,27in FHD Monitor,1,149.99,2019-11-28 18:15:00,218 Walnut St, New York City,NY,10001 +283862,Lightning Charging Cable,1,14.95,2019-11-22 17:56:00,52 Center St, New York City,NY,10001 +283863,AAA Batteries (4-pack),1,2.99,2019-11-24 19:58:00,112 12th St, Dallas,TX,75001 +283864,27in FHD Monitor,1,149.99,2019-11-27 18:57:00,737 1st St, Seattle,WA,98101 +283865,AAA Batteries (4-pack),1,2.99,2019-11-07 12:11:00,82 Ridge St, San Francisco,CA,94016 +283866,Wired Headphones,2,11.99,2019-11-14 16:08:00,359 11th St, Austin,TX,73301 +283867,Bose SoundSport Headphones,1,99.99,2019-11-19 07:34:00,809 Walnut St, Austin,TX,73301 +283868,Google Phone,1,600.0,2019-11-20 16:52:00,351 River St, New York City,NY,10001 +283868,USB-C Charging Cable,1,11.95,2019-11-20 16:52:00,351 River St, New York City,NY,10001 +283869,27in FHD Monitor,1,149.99,2019-11-25 00:39:00,463 Hill St, Boston,MA,02215 +283870,iPhone,1,700.0,2019-11-02 20:59:00,240 Johnson St, Los Angeles,CA,90001 +283871,AA Batteries (4-pack),1,3.84,2019-11-25 19:27:00,611 Wilson St, San Francisco,CA,94016 +283872,AAA Batteries (4-pack),1,2.99,2019-11-24 11:03:00,473 Sunset St, San Francisco,CA,94016 +283873,27in 4K Gaming Monitor,1,389.99,2019-11-25 23:29:00,648 Main St, San Francisco,CA,94016 +283874,Lightning Charging Cable,1,14.95,2019-11-23 21:47:00,948 Center St, Los Angeles,CA,90001 +283875,AAA Batteries (4-pack),1,2.99,2019-11-04 17:43:00,620 Jackson St, Dallas,TX,75001 +283876,Bose SoundSport Headphones,1,99.99,2019-11-24 10:26:00,497 Madison St, Austin,TX,73301 +283877,USB-C Charging Cable,1,11.95,2019-11-11 01:38:00,414 Hickory St, New York City,NY,10001 +283878,USB-C Charging Cable,1,11.95,2019-11-04 17:01:00,410 Maple St, San Francisco,CA,94016 +283879,Wired Headphones,1,11.99,2019-11-04 22:23:00,103 1st St, Atlanta,GA,30301 +283880,Google Phone,1,600.0,2019-11-27 17:20:00,518 9th St, New York City,NY,10001 +283881,USB-C Charging Cable,1,11.95,2019-11-09 11:20:00,750 Wilson St, Portland,OR,97035 +283882,Wired Headphones,1,11.99,2019-11-02 12:56:00,657 Lake St, Boston,MA,02215 +283883,Lightning Charging Cable,1,14.95,2019-11-18 17:47:00,429 Washington St, Los Angeles,CA,90001 +283884,Bose SoundSport Headphones,1,99.99,2019-11-01 20:40:00,190 West St, Los Angeles,CA,90001 +283885,Lightning Charging Cable,1,14.95,2019-11-28 15:35:00,548 4th St, Austin,TX,73301 +283886,USB-C Charging Cable,1,11.95,2019-11-30 18:34:00,431 2nd St, Atlanta,GA,30301 +283887,Apple Airpods Headphones,1,150.0,2019-11-06 22:05:00,950 Washington St, San Francisco,CA,94016 +283888,USB-C Charging Cable,1,11.95,2019-11-25 22:01:00,774 Lakeview St, Boston,MA,02215 +283889,Lightning Charging Cable,1,14.95,2019-11-24 19:43:00,274 Highland St, San Francisco,CA,94016 +283890,AAA Batteries (4-pack),1,2.99,2019-11-08 13:17:00,818 Maple St, Los Angeles,CA,90001 +283891,Vareebadd Phone,1,400.0,2019-11-16 11:07:00,56 Pine St, San Francisco,CA,94016 +283892,USB-C Charging Cable,1,11.95,2019-11-19 13:26:00,504 Wilson St, San Francisco,CA,94016 +283893,27in FHD Monitor,1,149.99,2019-11-20 19:54:00,428 Washington St, San Francisco,CA,94016 +283894,Wired Headphones,1,11.99,2019-11-27 12:23:00,47 Wilson St, San Francisco,CA,94016 +283895,Apple Airpods Headphones,1,150.0,2019-11-27 11:19:00,812 West St, Los Angeles,CA,90001 +283896,Bose SoundSport Headphones,1,99.99,2019-11-25 13:09:00,300 9th St, Los Angeles,CA,90001 +283897,Apple Airpods Headphones,1,150.0,2019-11-03 19:43:00,350 Main St, Los Angeles,CA,90001 +283898,Google Phone,1,600.0,2019-11-14 07:37:00,412 14th St, Los Angeles,CA,90001 +283899,27in 4K Gaming Monitor,1,389.99,2019-11-01 21:57:00,827 Lake St, Austin,TX,73301 +283900,USB-C Charging Cable,1,11.95,2019-11-01 06:06:00,97 Walnut St, Seattle,WA,98101 +283901,AAA Batteries (4-pack),3,2.99,2019-11-19 20:05:00,758 Meadow St, San Francisco,CA,94016 +283902,Wired Headphones,1,11.99,2019-11-18 19:30:00,74 8th St, New York City,NY,10001 +283903,Bose SoundSport Headphones,1,99.99,2019-11-17 12:24:00,488 5th St, San Francisco,CA,94016 +283904,Wired Headphones,1,11.99,2019-11-22 14:54:00,769 Sunset St, San Francisco,CA,94016 +283905,Wired Headphones,1,11.99,2019-11-04 11:28:00,340 Cedar St, Los Angeles,CA,90001 +283906,Lightning Charging Cable,1,14.95,2019-11-24 07:37:00,900 Cherry St, Seattle,WA,98101 +283907,Bose SoundSport Headphones,1,99.99,2019-11-27 08:15:00,157 River St, Dallas,TX,75001 +283908,27in 4K Gaming Monitor,1,389.99,2019-11-30 18:16:00,753 Jefferson St, New York City,NY,10001 +283909,iPhone,1,700.0,2019-11-23 20:03:00,394 10th St, Austin,TX,73301 +283910,27in FHD Monitor,1,149.99,2019-11-02 19:14:00,642 11th St, Atlanta,GA,30301 +283911,Lightning Charging Cable,1,14.95,2019-11-25 22:17:00,893 Lake St, Los Angeles,CA,90001 +283912,AA Batteries (4-pack),2,3.84,2019-11-15 14:52:00,511 Cherry St, Boston,MA,02215 +283913,Bose SoundSport Headphones,1,99.99,2019-11-27 15:51:00,208 13th St, Seattle,WA,98101 +283914,AA Batteries (4-pack),1,3.84,2019-11-01 17:59:00,334 Spruce St, Austin,TX,73301 +283915,34in Ultrawide Monitor,1,379.99,2019-11-02 13:31:00,835 Lakeview St, New York City,NY,10001 +283916,Apple Airpods Headphones,1,150.0,2019-11-30 22:50:00,382 Willow St, Atlanta,GA,30301 +283917,Flatscreen TV,1,300.0,2019-11-26 20:34:00,781 Forest St, San Francisco,CA,94016 +283918,USB-C Charging Cable,1,11.95,2019-11-15 20:00:00,996 Jefferson St, Seattle,WA,98101 +283919,AA Batteries (4-pack),2,3.84,2019-11-29 12:30:00,963 11th St, San Francisco,CA,94016 +283920,AA Batteries (4-pack),1,3.84,2019-11-17 23:26:00,173 Washington St, San Francisco,CA,94016 +283921,Flatscreen TV,1,300.0,2019-11-27 18:10:00,761 1st St, New York City,NY,10001 +283922,AAA Batteries (4-pack),1,2.99,2019-11-20 15:54:00,830 9th St, Dallas,TX,75001 +283923,AAA Batteries (4-pack),3,2.99,2019-11-11 09:12:00,466 Spruce St, Boston,MA,02215 +283924,Flatscreen TV,1,300.0,2019-11-14 19:02:00,68 Cherry St, Atlanta,GA,30301 +283925,AAA Batteries (4-pack),4,2.99,2019-11-13 20:04:00,626 Walnut St, Austin,TX,73301 +283926,Lightning Charging Cable,1,14.95,2019-11-21 17:51:00,24 North St, San Francisco,CA,94016 +283927,USB-C Charging Cable,2,11.95,2019-11-26 15:26:00,819 Meadow St, Boston,MA,02215 +283928,34in Ultrawide Monitor,1,379.99,2019-11-01 12:05:00,287 Center St, Los Angeles,CA,90001 +283929,Apple Airpods Headphones,1,150.0,2019-11-25 20:55:00,310 Lake St, Dallas,TX,75001 +283930,Apple Airpods Headphones,1,150.0,2019-11-04 16:18:00,911 Jefferson St, Seattle,WA,98101 +283931,Lightning Charging Cable,1,14.95,2019-11-14 07:39:00,379 Wilson St, New York City,NY,10001 +283932,iPhone,1,700.0,2019-11-04 01:37:00,172 Jackson St, New York City,NY,10001 +283933,Lightning Charging Cable,1,14.95,2019-11-21 22:39:00,213 Elm St, Dallas,TX,75001 +283934,Apple Airpods Headphones,1,150.0,2019-11-22 13:12:00,829 Hickory St, San Francisco,CA,94016 +283935,Wired Headphones,1,11.99,2019-11-27 09:24:00,915 Hill St, Boston,MA,02215 +283936,AA Batteries (4-pack),1,3.84,2019-11-12 18:07:00,292 Lakeview St, San Francisco,CA,94016 +283937,AA Batteries (4-pack),1,3.84,2019-11-25 17:27:00,968 Spruce St, San Francisco,CA,94016 +283938,AA Batteries (4-pack),1,3.84,2019-11-12 14:34:00,847 6th St, San Francisco,CA,94016 +283939,AAA Batteries (4-pack),3,2.99,2019-11-01 10:45:00,465 Madison St, Portland,OR,97035 +283940,Lightning Charging Cable,1,14.95,2019-11-20 00:09:00,210 11th St, New York City,NY,10001 +283941,Flatscreen TV,1,300.0,2019-11-12 15:24:00,226 Pine St, Portland,ME,04101 +283942,27in FHD Monitor,1,149.99,2019-11-20 10:30:00,387 8th St, Dallas,TX,75001 +283943,Apple Airpods Headphones,1,150.0,2019-11-14 11:32:00,851 Lakeview St, Los Angeles,CA,90001 +283944,34in Ultrawide Monitor,1,379.99,2019-11-30 18:09:00,350 6th St, Boston,MA,02215 +283945,Wired Headphones,1,11.99,2019-11-25 00:28:00,453 Highland St, New York City,NY,10001 +283946,USB-C Charging Cable,1,11.95,2019-11-27 21:07:00,152 Hill St, Dallas,TX,75001 +283947,Apple Airpods Headphones,1,150.0,2019-11-16 01:15:00,202 1st St, Portland,OR,97035 +283948,Apple Airpods Headphones,1,150.0,2019-11-21 20:34:00,565 Chestnut St, San Francisco,CA,94016 +283948,USB-C Charging Cable,1,11.95,2019-11-21 20:34:00,565 Chestnut St, San Francisco,CA,94016 +283949,Bose SoundSport Headphones,1,99.99,2019-11-16 18:51:00,792 10th St, Dallas,TX,75001 +283950,Flatscreen TV,1,300.0,2019-11-11 15:48:00,613 Highland St, New York City,NY,10001 +283951,Bose SoundSport Headphones,1,99.99,2019-11-06 21:27:00,982 Cedar St, New York City,NY,10001 +283952,Lightning Charging Cable,1,14.95,2019-11-09 03:10:00,293 Hickory St, Seattle,WA,98101 +283953,USB-C Charging Cable,1,11.95,2019-11-29 11:52:00,9 Johnson St, Portland,OR,97035 +283954,Apple Airpods Headphones,1,150.0,2019-11-10 11:19:00,516 Cherry St, Atlanta,GA,30301 +283955,Bose SoundSport Headphones,1,99.99,2019-11-16 05:29:00,451 Cedar St, Los Angeles,CA,90001 +283956,Bose SoundSport Headphones,1,99.99,2019-11-05 08:55:00,948 Johnson St, Atlanta,GA,30301 +283957,Wired Headphones,1,11.99,2019-11-01 23:17:00,131 Meadow St, Dallas,TX,75001 +283958,Lightning Charging Cable,1,14.95,2019-11-05 01:30:00,769 5th St, San Francisco,CA,94016 +283959,Lightning Charging Cable,1,14.95,2019-11-03 10:54:00,278 Johnson St, Atlanta,GA,30301 +283960,Lightning Charging Cable,1,14.95,2019-11-12 12:50:00,492 Wilson St, Los Angeles,CA,90001 +283961,AA Batteries (4-pack),1,3.84,2019-11-28 13:23:00,187 Dogwood St, San Francisco,CA,94016 +283962,iPhone,1,700.0,2019-11-09 16:18:00,662 Hill St, New York City,NY,10001 +283963,Lightning Charging Cable,1,14.95,2019-11-06 20:35:00,813 Dogwood St, Portland,OR,97035 +283964,iPhone,1,700.0,2019-11-10 22:17:00,996 14th St, Atlanta,GA,30301 +283965,Flatscreen TV,1,300.0,2019-11-20 15:27:00,21 2nd St, San Francisco,CA,94016 +283966,Flatscreen TV,1,300.0,2019-11-22 20:42:00,553 14th St, Boston,MA,02215 +283967,AA Batteries (4-pack),1,3.84,2019-11-25 18:21:00,197 Johnson St, Seattle,WA,98101 +283968,AAA Batteries (4-pack),1,2.99,2019-11-25 17:16:00,366 Main St, New York City,NY,10001 +283969,Bose SoundSport Headphones,1,99.99,2019-11-28 18:56:00,466 Cherry St, Atlanta,GA,30301 +283970,iPhone,1,700.0,2019-11-23 17:26:00,19 5th St, Atlanta,GA,30301 +283971,Lightning Charging Cable,1,14.95,2019-11-22 22:52:00,690 Lincoln St, San Francisco,CA,94016 +283972,20in Monitor,1,109.99,2019-11-30 17:23:00,766 Lake St, Atlanta,GA,30301 +283973,AA Batteries (4-pack),1,3.84,2019-11-19 20:28:00,608 North St, San Francisco,CA,94016 +283974,AAA Batteries (4-pack),1,2.99,2019-11-07 12:20:00,969 13th St, Los Angeles,CA,90001 +283975,Macbook Pro Laptop,1,1700.0,2019-11-15 23:41:00,747 10th St, Boston,MA,02215 +283976,27in 4K Gaming Monitor,1,389.99,2019-11-15 15:53:00,979 Hickory St, Portland,OR,97035 +283977,Lightning Charging Cable,1,14.95,2019-11-23 12:06:00,798 12th St, Seattle,WA,98101 +283978,AAA Batteries (4-pack),1,2.99,2019-11-16 13:15:00,967 Park St, Boston,MA,02215 +283979,Lightning Charging Cable,1,14.95,2019-11-10 14:04:00,779 Maple St, San Francisco,CA,94016 +283980,Apple Airpods Headphones,1,150.0,2019-11-20 14:15:00,91 11th St, Seattle,WA,98101 +283981,Flatscreen TV,1,300.0,2019-11-13 14:48:00,309 Wilson St, San Francisco,CA,94016 +283982,34in Ultrawide Monitor,1,379.99,2019-11-26 13:49:00,349 West St, Los Angeles,CA,90001 +283983,27in FHD Monitor,1,149.99,2019-11-30 09:47:00,597 Main St, Seattle,WA,98101 +283984,USB-C Charging Cable,1,11.95,2019-11-13 23:38:00,293 Highland St, Dallas,TX,75001 +283985,AA Batteries (4-pack),1,3.84,2019-11-16 00:42:00,466 Hill St, Dallas,TX,75001 +283986,27in FHD Monitor,1,149.99,2019-11-12 20:22:00,501 West St, Portland,OR,97035 +283987,USB-C Charging Cable,1,11.95,2019-11-21 12:51:00,547 Hill St, Portland,OR,97035 +283988,AAA Batteries (4-pack),1,2.99,2019-11-13 23:34:00,37 8th St, San Francisco,CA,94016 +283989,Lightning Charging Cable,1,14.95,2019-11-12 18:51:00,852 River St, Portland,OR,97035 +283990,USB-C Charging Cable,1,11.95,2019-11-13 12:49:00,763 2nd St, San Francisco,CA,94016 +283991,iPhone,1,700.0,2019-11-04 18:09:00,310 Lakeview St, Los Angeles,CA,90001 +283991,Flatscreen TV,1,300.0,2019-11-04 18:09:00,310 Lakeview St, Los Angeles,CA,90001 +283992,AA Batteries (4-pack),1,3.84,2019-11-17 21:55:00,434 13th St, Dallas,TX,75001 +283993,AA Batteries (4-pack),1,3.84,2019-11-03 23:09:00,773 4th St, San Francisco,CA,94016 +283994,20in Monitor,1,109.99,2019-11-29 23:55:00,337 Park St, Boston,MA,02215 +283995,Wired Headphones,1,11.99,2019-11-03 15:10:00,357 West St, Austin,TX,73301 +283996,Apple Airpods Headphones,1,150.0,2019-11-03 05:25:00,495 Dogwood St, New York City,NY,10001 +283997,USB-C Charging Cable,1,11.95,2019-11-10 12:03:00,534 Elm St, San Francisco,CA,94016 +283998,34in Ultrawide Monitor,1,379.99,2019-11-03 15:50:00,513 South St, Atlanta,GA,30301 +283999,Bose SoundSport Headphones,1,99.99,2019-11-15 18:30:00,158 Forest St, San Francisco,CA,94016 +284000,27in 4K Gaming Monitor,1,389.99,2019-11-28 18:30:00,502 South St, Los Angeles,CA,90001 +284001,AAA Batteries (4-pack),1,2.99,2019-11-22 14:27:00,172 Johnson St, San Francisco,CA,94016 +284002,Wired Headphones,3,11.99,2019-11-24 20:55:00,519 Forest St, Dallas,TX,75001 +284003,USB-C Charging Cable,1,11.95,2019-11-09 11:51:00,146 South St, New York City,NY,10001 +284004,Apple Airpods Headphones,1,150.0,2019-11-11 15:00:00,611 Spruce St, San Francisco,CA,94016 +284005,AA Batteries (4-pack),1,3.84,2019-11-15 21:11:00,33 Hickory St, Boston,MA,02215 +284006,Bose SoundSport Headphones,1,99.99,2019-11-02 09:24:00,773 Jefferson St, San Francisco,CA,94016 +284007,27in FHD Monitor,1,149.99,2019-11-04 12:27:00,481 Meadow St, Boston,MA,02215 +284008,Bose SoundSport Headphones,2,99.99,2019-11-11 13:03:00,335 Hill St, Los Angeles,CA,90001 +284009,AAA Batteries (4-pack),2,2.99,2019-11-09 17:56:00,20 2nd St, Dallas,TX,75001 +284010,ThinkPad Laptop,1,999.99,2019-11-04 23:36:00,340 Lake St, San Francisco,CA,94016 +284011,34in Ultrawide Monitor,1,379.99,2019-11-10 00:40:00,923 Spruce St, New York City,NY,10001 +284012,Google Phone,1,600.0,2019-11-17 10:10:00,299 1st St, Los Angeles,CA,90001 +284012,USB-C Charging Cable,2,11.95,2019-11-17 10:10:00,299 1st St, Los Angeles,CA,90001 +284013,ThinkPad Laptop,1,999.99,2019-11-04 09:06:00,342 Lakeview St, Dallas,TX,75001 +284014,AAA Batteries (4-pack),1,2.99,2019-11-11 21:30:00,400 Hill St, Atlanta,GA,30301 +284015,Lightning Charging Cable,1,14.95,2019-11-19 06:54:00,118 Lake St, Seattle,WA,98101 +284016,AA Batteries (4-pack),1,3.84,2019-11-13 20:44:00,781 1st St, Austin,TX,73301 +284017,AA Batteries (4-pack),1,3.84,2019-11-11 18:43:00,974 Park St, Austin,TX,73301 +284018,Macbook Pro Laptop,1,1700.0,2019-11-11 12:02:00,75 Spruce St, San Francisco,CA,94016 +284019,27in 4K Gaming Monitor,1,389.99,2019-11-30 21:30:00,136 Dogwood St, San Francisco,CA,94016 +284020,ThinkPad Laptop,1,999.99,2019-11-12 07:32:00,203 9th St, Los Angeles,CA,90001 +284021,AAA Batteries (4-pack),1,2.99,2019-11-17 22:05:00,361 Main St, San Francisco,CA,94016 +284022,USB-C Charging Cable,2,11.95,2019-11-09 19:25:00,675 Adams St, San Francisco,CA,94016 +284023,Lightning Charging Cable,1,14.95,2019-11-05 10:49:00,17 Center St, Los Angeles,CA,90001 +284024,AA Batteries (4-pack),1,3.84,2019-11-27 14:28:00,683 Spruce St, Los Angeles,CA,90001 +284025,Bose SoundSport Headphones,1,99.99,2019-11-20 19:46:00,590 11th St, San Francisco,CA,94016 +284026,AAA Batteries (4-pack),1,2.99,2019-11-23 18:20:00,17 14th St, New York City,NY,10001 +284027,27in 4K Gaming Monitor,1,389.99,2019-11-23 17:21:00,945 North St, Portland,OR,97035 +284028,Macbook Pro Laptop,1,1700.0,2019-11-20 13:47:00,795 Madison St, Dallas,TX,75001 +284029,Flatscreen TV,1,300.0,2019-11-09 20:34:00,498 Willow St, Atlanta,GA,30301 +284030,Wired Headphones,2,11.99,2019-11-17 18:44:00,889 14th St, Portland,ME,04101 +284031,AA Batteries (4-pack),1,3.84,2019-11-03 12:11:00,487 Highland St, San Francisco,CA,94016 +284032,AAA Batteries (4-pack),2,2.99,2019-11-13 03:34:00,890 Meadow St, San Francisco,CA,94016 +284033,Lightning Charging Cable,1,14.95,2019-11-21 12:34:00,718 Hickory St, Boston,MA,02215 +284034,Bose SoundSport Headphones,1,99.99,2019-11-07 09:48:00,39 Forest St, New York City,NY,10001 +284035,Bose SoundSport Headphones,1,99.99,2019-11-27 12:07:00,663 1st St, Los Angeles,CA,90001 +284035,AA Batteries (4-pack),2,3.84,2019-11-27 12:07:00,663 1st St, Los Angeles,CA,90001 +284036,Flatscreen TV,1,300.0,2019-11-20 14:37:00,680 Spruce St, New York City,NY,10001 +284037,Lightning Charging Cable,1,14.95,2019-11-15 17:17:00,472 Walnut St, Seattle,WA,98101 +284038,AA Batteries (4-pack),1,3.84,2019-11-20 13:52:00,739 10th St, New York City,NY,10001 +284039,AAA Batteries (4-pack),1,2.99,2019-11-06 11:47:00,658 1st St, Dallas,TX,75001 +284040,ThinkPad Laptop,1,999.99,2019-11-23 09:34:00,764 Cherry St, Boston,MA,02215 +284041,Lightning Charging Cable,1,14.95,2019-11-26 12:34:00,235 Johnson St, San Francisco,CA,94016 +284042,Wired Headphones,2,11.99,2019-11-21 19:27:00,579 14th St, Seattle,WA,98101 +284043,AAA Batteries (4-pack),1,2.99,2019-11-21 13:18:00,712 North St, San Francisco,CA,94016 +284044,20in Monitor,1,109.99,2019-11-08 10:29:00,685 Highland St, San Francisco,CA,94016 +284045,Wired Headphones,1,11.99,2019-11-25 18:05:00,670 Spruce St, Seattle,WA,98101 +284046,Apple Airpods Headphones,1,150.0,2019-11-07 12:09:00,257 6th St, Seattle,WA,98101 +284047,USB-C Charging Cable,1,11.95,2019-11-23 18:08:00,482 14th St, Dallas,TX,75001 +284048,Lightning Charging Cable,1,14.95,2019-11-13 20:45:00,216 13th St, Boston,MA,02215 +284049,Macbook Pro Laptop,1,1700.0,2019-11-15 03:54:00,727 Wilson St, New York City,NY,10001 +284050,USB-C Charging Cable,1,11.95,2019-11-11 11:00:00,177 Highland St, New York City,NY,10001 +284051,AAA Batteries (4-pack),1,2.99,2019-11-22 21:10:00,716 Center St, San Francisco,CA,94016 +284052,Apple Airpods Headphones,1,150.0,2019-11-29 20:53:00,960 Lake St, Boston,MA,02215 +284053,Wired Headphones,1,11.99,2019-11-16 18:29:00,595 Madison St, San Francisco,CA,94016 +284054,20in Monitor,1,109.99,2019-11-10 11:19:00,118 Walnut St, San Francisco,CA,94016 +284055,Lightning Charging Cable,1,14.95,2019-11-05 13:56:00,507 Elm St, San Francisco,CA,94016 +284056,AA Batteries (4-pack),1,3.84,2019-11-03 19:47:00,395 Cherry St, San Francisco,CA,94016 +284057,Google Phone,1,600.0,2019-11-15 21:04:00,523 Maple St, Portland,OR,97035 +284057,USB-C Charging Cable,1,11.95,2019-11-15 21:04:00,523 Maple St, Portland,OR,97035 +284058,AAA Batteries (4-pack),5,2.99,2019-11-09 18:14:00,982 Church St, Los Angeles,CA,90001 +284059,Apple Airpods Headphones,1,150.0,2019-11-13 17:56:00,837 Dogwood St, San Francisco,CA,94016 +284060,AAA Batteries (4-pack),1,2.99,2019-11-12 12:26:00,355 10th St, Los Angeles,CA,90001 +284061,Apple Airpods Headphones,1,150.0,2019-11-11 21:42:00,521 9th St, Los Angeles,CA,90001 +284062,iPhone,1,700.0,2019-11-09 12:01:00,857 Adams St, San Francisco,CA,94016 +284063,AA Batteries (4-pack),1,3.84,2019-11-19 17:21:00,306 7th St, Seattle,WA,98101 +284064,Bose SoundSport Headphones,1,99.99,2019-11-02 11:46:00,521 Sunset St, Boston,MA,02215 +284064,AAA Batteries (4-pack),1,2.99,2019-11-02 11:46:00,521 Sunset St, Boston,MA,02215 +284065,AA Batteries (4-pack),2,3.84,2019-11-26 16:24:00,177 Hill St, Portland,ME,04101 +284066,27in FHD Monitor,1,149.99,2019-11-10 22:13:00,852 Cedar St, San Francisco,CA,94016 +284067,Apple Airpods Headphones,1,150.0,2019-11-13 17:29:00,526 8th St, Los Angeles,CA,90001 +284068,34in Ultrawide Monitor,1,379.99,2019-11-03 20:17:00,436 4th St, San Francisco,CA,94016 +284069,Macbook Pro Laptop,1,1700.0,2019-11-03 22:56:00,839 8th St, Dallas,TX,75001 +284070,Bose SoundSport Headphones,1,99.99,2019-11-18 20:26:00,828 Dogwood St, San Francisco,CA,94016 +284071,Lightning Charging Cable,1,14.95,2019-11-28 19:04:00,487 Spruce St, Dallas,TX,75001 +284072,27in FHD Monitor,1,149.99,2019-11-27 19:47:00,91 Jackson St, Dallas,TX,75001 +284073,AA Batteries (4-pack),2,3.84,2019-11-11 22:29:00,423 6th St, New York City,NY,10001 +284074,34in Ultrawide Monitor,1,379.99,2019-11-21 22:54:00,231 Forest St, Los Angeles,CA,90001 +284075,27in FHD Monitor,1,149.99,2019-11-07 11:10:00,587 Washington St, Seattle,WA,98101 +284076,Macbook Pro Laptop,1,1700.0,2019-11-24 16:13:00,973 10th St, Seattle,WA,98101 +284077,USB-C Charging Cable,1,11.95,2019-11-17 11:38:00,297 13th St, Dallas,TX,75001 +284077,AAA Batteries (4-pack),1,2.99,2019-11-17 11:38:00,297 13th St, Dallas,TX,75001 +284078,AA Batteries (4-pack),1,3.84,2019-11-29 11:38:00,55 Wilson St, San Francisco,CA,94016 +284079,Macbook Pro Laptop,1,1700.0,2019-11-11 15:23:00,541 6th St, Atlanta,GA,30301 +284080,AAA Batteries (4-pack),1,2.99,2019-11-17 19:48:00,473 11th St, Los Angeles,CA,90001 +284081,Wired Headphones,1,11.99,2019-11-04 17:45:00,445 Cedar St, Los Angeles,CA,90001 +284082,20in Monitor,1,109.99,2019-11-30 22:49:00,283 Ridge St, New York City,NY,10001 +284083,USB-C Charging Cable,2,11.95,2019-11-19 11:50:00,632 Elm St, New York City,NY,10001 +284084,iPhone,1,700.0,2019-11-30 18:30:00,537 West St, Los Angeles,CA,90001 +284085,34in Ultrawide Monitor,1,379.99,2019-11-18 18:06:00,198 Highland St, New York City,NY,10001 +284086,USB-C Charging Cable,1,11.95,2019-11-07 01:34:00,329 Madison St, Atlanta,GA,30301 +284087,Macbook Pro Laptop,1,1700.0,2019-11-09 20:54:00,590 2nd St, Los Angeles,CA,90001 +284088,Wired Headphones,1,11.99,2019-11-14 23:18:00,373 Park St, Dallas,TX,75001 +284089,Wired Headphones,1,11.99,2019-11-10 17:14:00,752 14th St, San Francisco,CA,94016 +284090,AAA Batteries (4-pack),3,2.99,2019-11-08 23:12:00,610 5th St, New York City,NY,10001 +284091,AAA Batteries (4-pack),2,2.99,2019-11-09 22:09:00,647 Park St, New York City,NY,10001 +284092,iPhone,1,700.0,2019-11-27 17:48:00,223 Willow St, Portland,ME,04101 +284093,AAA Batteries (4-pack),1,2.99,2019-11-04 08:39:00,855 Jefferson St, Dallas,TX,75001 +284094,27in 4K Gaming Monitor,1,389.99,2019-11-14 16:48:00,53 Center St, San Francisco,CA,94016 +284095,Bose SoundSport Headphones,1,99.99,2019-11-26 20:46:00,251 Madison St, New York City,NY,10001 +284096,Bose SoundSport Headphones,1,99.99,2019-11-10 14:28:00,197 Pine St, New York City,NY,10001 +284097,Wired Headphones,2,11.99,2019-11-12 09:38:00,509 5th St, Seattle,WA,98101 +284097,Lightning Charging Cable,1,14.95,2019-11-12 09:38:00,509 5th St, Seattle,WA,98101 +284098,Google Phone,1,600.0,2019-11-30 15:44:00,708 1st St, Atlanta,GA,30301 +284099,Wired Headphones,1,11.99,2019-11-02 14:54:00,534 Spruce St, Boston,MA,02215 +284100,iPhone,1,700.0,2019-11-21 07:45:00,866 Ridge St, Atlanta,GA,30301 +284101,AAA Batteries (4-pack),1,2.99,2019-11-23 13:39:00,809 Chestnut St, Portland,OR,97035 +284102,Apple Airpods Headphones,1,150.0,2019-11-03 13:05:00,811 12th St, New York City,NY,10001 +284103,Macbook Pro Laptop,1,1700.0,2019-11-02 13:49:00,258 Spruce St, Los Angeles,CA,90001 +284104,USB-C Charging Cable,1,11.95,2019-11-04 22:09:00,150 Walnut St, Boston,MA,02215 +284105,AA Batteries (4-pack),2,3.84,2019-11-19 20:25:00,246 10th St, Seattle,WA,98101 +284106,34in Ultrawide Monitor,1,379.99,2019-11-09 00:39:00,894 Park St, Dallas,TX,75001 +284107,AAA Batteries (4-pack),2,2.99,2019-11-14 11:41:00,772 11th St, San Francisco,CA,94016 +284108,Wired Headphones,1,11.99,2019-11-25 13:12:00,245 Meadow St, Los Angeles,CA,90001 +284109,Macbook Pro Laptop,1,1700.0,2019-11-05 21:05:00,556 Center St, Dallas,TX,75001 +284110,AA Batteries (4-pack),1,3.84,2019-11-14 06:15:00,91 Park St, Portland,OR,97035 +284111,27in FHD Monitor,1,149.99,2019-11-17 22:36:00,9 Cherry St, San Francisco,CA,94016 +284112,USB-C Charging Cable,1,11.95,2019-11-03 18:11:00,83 Lake St, Boston,MA,02215 +284113,AA Batteries (4-pack),1,3.84,2019-11-12 17:04:00,229 Cherry St, Los Angeles,CA,90001 +284114,USB-C Charging Cable,1,11.95,2019-11-25 13:43:00,397 Willow St, Dallas,TX,75001 +284115,Lightning Charging Cable,1,14.95,2019-11-04 14:46:00,551 Highland St, Seattle,WA,98101 +284116,Macbook Pro Laptop,1,1700.0,2019-11-22 14:07:00,606 Adams St, Atlanta,GA,30301 +284117,Lightning Charging Cable,1,14.95,2019-11-11 19:06:00,330 Chestnut St, Atlanta,GA,30301 +284118,AA Batteries (4-pack),1,3.84,2019-11-30 18:28:00,27 Elm St, New York City,NY,10001 +284119,27in 4K Gaming Monitor,1,389.99,2019-11-13 17:00:00,902 7th St, San Francisco,CA,94016 +284120,Wired Headphones,1,11.99,2019-11-22 21:30:00,629 Main St, Los Angeles,CA,90001 +284121,USB-C Charging Cable,1,11.95,2019-11-24 14:05:00,9 Main St, San Francisco,CA,94016 +284122,Apple Airpods Headphones,1,150.0,2019-11-17 12:33:00,91 Pine St, Austin,TX,73301 +284123,Wired Headphones,1,11.99,2019-11-08 11:47:00,739 1st St, Los Angeles,CA,90001 +284124,Google Phone,1,600.0,2019-11-12 08:05:00,332 Highland St, San Francisco,CA,94016 +284124,Wired Headphones,1,11.99,2019-11-12 08:05:00,332 Highland St, San Francisco,CA,94016 +284125,AAA Batteries (4-pack),1,2.99,2019-11-12 13:45:00,744 South St, Portland,OR,97035 +284126,34in Ultrawide Monitor,1,379.99,2019-11-21 14:27:00,345 6th St, San Francisco,CA,94016 +284126,USB-C Charging Cable,1,11.95,2019-11-21 14:27:00,345 6th St, San Francisco,CA,94016 +284127,AA Batteries (4-pack),1,3.84,2019-11-03 13:52:00,52 Lakeview St, Austin,TX,73301 +284128,27in 4K Gaming Monitor,1,389.99,2019-11-07 11:39:00,367 Ridge St, New York City,NY,10001 +284129,34in Ultrawide Monitor,1,379.99,2019-11-12 09:45:00,133 Johnson St, Dallas,TX,75001 +284130,Apple Airpods Headphones,1,150.0,2019-11-07 20:46:00,271 South St, New York City,NY,10001 +284131,AA Batteries (4-pack),1,3.84,2019-11-24 14:47:00,408 North St, San Francisco,CA,94016 +284132,USB-C Charging Cable,1,11.95,2019-11-21 17:10:00,685 Forest St, New York City,NY,10001 +284133,USB-C Charging Cable,1,11.95,2019-11-19 06:18:00,366 River St, San Francisco,CA,94016 +284134,Lightning Charging Cable,1,14.95,2019-11-09 15:00:00,801 North St, Seattle,WA,98101 +284135,Wired Headphones,1,11.99,2019-11-12 00:31:00,152 Lake St, Portland,OR,97035 +284136,Apple Airpods Headphones,1,150.0,2019-11-27 19:21:00,440 River St, Los Angeles,CA,90001 +284137,34in Ultrawide Monitor,1,379.99,2019-11-05 07:58:00,128 Wilson St, New York City,NY,10001 +284138,34in Ultrawide Monitor,1,379.99,2019-11-10 17:09:00,612 Hill St, Dallas,TX,75001 +284139,Google Phone,1,600.0,2019-11-10 17:17:00,970 Spruce St, Los Angeles,CA,90001 +284139,USB-C Charging Cable,1,11.95,2019-11-10 17:17:00,970 Spruce St, Los Angeles,CA,90001 +284140,AA Batteries (4-pack),1,3.84,2019-11-28 15:59:00,561 6th St, Boston,MA,02215 +284141,27in FHD Monitor,1,149.99,2019-11-19 19:50:00,531 Johnson St, New York City,NY,10001 +284142,20in Monitor,1,109.99,2019-11-04 15:03:00,10 Main St, Seattle,WA,98101 +284143,Lightning Charging Cable,2,14.95,2019-11-05 07:31:00,554 River St, San Francisco,CA,94016 +284144,AAA Batteries (4-pack),1,2.99,2019-11-08 13:54:00,665 South St, New York City,NY,10001 +284145,AAA Batteries (4-pack),1,2.99,2019-11-10 14:23:00,826 Main St, Los Angeles,CA,90001 +284146,27in FHD Monitor,1,149.99,2019-11-25 11:04:00,363 River St, New York City,NY,10001 +284147,Apple Airpods Headphones,1,150.0,2019-11-28 12:15:00,825 Spruce St, New York City,NY,10001 +284148,Wired Headphones,1,11.99,2019-11-03 11:13:00,877 6th St, Atlanta,GA,30301 +284149,AA Batteries (4-pack),1,3.84,2019-11-10 19:48:00,627 4th St, Boston,MA,02215 +284150,Apple Airpods Headphones,1,150.0,2019-11-25 21:50:00,90 Lincoln St, Atlanta,GA,30301 +284151,Bose SoundSport Headphones,1,99.99,2019-11-08 06:44:00,319 13th St, Atlanta,GA,30301 +284152,AA Batteries (4-pack),1,3.84,2019-11-14 11:30:00,560 River St, Dallas,TX,75001 +284153,AAA Batteries (4-pack),1,2.99,2019-11-02 22:17:00,298 Sunset St, Austin,TX,73301 +284154,ThinkPad Laptop,1,999.99,2019-11-17 19:14:00,489 Elm St, Seattle,WA,98101 +284155,Apple Airpods Headphones,1,150.0,2019-11-21 18:04:00,879 Lincoln St, San Francisco,CA,94016 +284156,AAA Batteries (4-pack),1,2.99,2019-11-27 21:10:00,982 Adams St, New York City,NY,10001 +284157,27in 4K Gaming Monitor,1,389.99,2019-11-30 16:36:00,783 Adams St, Los Angeles,CA,90001 +284158,Google Phone,1,600.0,2019-11-09 18:33:00,110 Willow St, San Francisco,CA,94016 +284159,Lightning Charging Cable,1,14.95,2019-11-19 04:24:00,896 9th St, Austin,TX,73301 +284160,AA Batteries (4-pack),1,3.84,2019-11-02 19:52:00,867 6th St, San Francisco,CA,94016 +284161,Flatscreen TV,1,300.0,2019-11-10 11:40:00,130 5th St, Atlanta,GA,30301 +284162,34in Ultrawide Monitor,1,379.99,2019-11-27 20:41:00,289 South St, Los Angeles,CA,90001 +284163,27in FHD Monitor,1,149.99,2019-11-21 13:15:00,620 Lake St, Boston,MA,02215 +284164,Lightning Charging Cable,1,14.95,2019-11-10 20:25:00,879 Wilson St, Seattle,WA,98101 +284165,Flatscreen TV,1,300.0,2019-11-30 01:06:00,837 9th St, Boston,MA,02215 +284166,AA Batteries (4-pack),2,3.84,2019-11-01 20:33:00,450 Lake St, San Francisco,CA,94016 +284167,AA Batteries (4-pack),1,3.84,2019-11-15 13:07:00,964 Wilson St, Atlanta,GA,30301 +284168,Bose SoundSport Headphones,1,99.99,2019-11-12 14:31:00,70 5th St, Austin,TX,73301 +284169,Lightning Charging Cable,2,14.95,2019-11-21 17:52:00,95 Dogwood St, San Francisco,CA,94016 +284170,USB-C Charging Cable,1,11.95,2019-11-24 21:01:00,924 10th St, Boston,MA,02215 +284171,Apple Airpods Headphones,1,150.0,2019-11-25 14:42:00,321 West St, Boston,MA,02215 +284172,Wired Headphones,2,11.99,2019-11-12 12:59:00,961 Elm St, Atlanta,GA,30301 +284173,USB-C Charging Cable,2,11.95,2019-11-18 11:19:00,813 North St, San Francisco,CA,94016 +284174,Wired Headphones,1,11.99,2019-11-14 13:25:00,583 Church St, Seattle,WA,98101 +284175,ThinkPad Laptop,1,999.99,2019-11-21 20:57:00,171 Hickory St, San Francisco,CA,94016 +284176,Lightning Charging Cable,1,14.95,2019-11-24 12:32:00,869 8th St, Austin,TX,73301 +284177,AA Batteries (4-pack),1,3.84,2019-11-17 10:28:00,741 Jefferson St, Portland,ME,04101 +284178,Bose SoundSport Headphones,1,99.99,2019-11-05 06:07:00,574 Johnson St, Boston,MA,02215 +284179,AAA Batteries (4-pack),1,2.99,2019-11-20 20:48:00,614 Hill St, Dallas,TX,75001 +284180,AA Batteries (4-pack),1,3.84,2019-11-19 16:27:00,737 Pine St, Portland,OR,97035 +284181,AAA Batteries (4-pack),1,2.99,2019-11-13 17:32:00,348 Washington St, New York City,NY,10001 +284182,Lightning Charging Cable,1,14.95,2019-11-13 08:59:00,493 Center St, New York City,NY,10001 +284183,AAA Batteries (4-pack),1,2.99,2019-11-19 11:26:00,585 9th St, Dallas,TX,75001 +284184,AAA Batteries (4-pack),2,2.99,2019-11-25 13:24:00,726 9th St, Los Angeles,CA,90001 +284185,Lightning Charging Cable,1,14.95,2019-11-26 16:09:00,629 Center St, Boston,MA,02215 +284186,AAA Batteries (4-pack),1,2.99,2019-11-14 13:44:00,670 Hill St, Austin,TX,73301 +284187,Google Phone,1,600.0,2019-11-27 21:07:00,16 Johnson St, San Francisco,CA,94016 +284188,Lightning Charging Cable,1,14.95,2019-11-08 10:35:00,508 North St, San Francisco,CA,94016 +284189,Apple Airpods Headphones,1,150.0,2019-11-03 07:01:00,780 Park St, San Francisco,CA,94016 +284190,Bose SoundSport Headphones,1,99.99,2019-11-17 16:11:00,850 Main St, Los Angeles,CA,90001 +284191,Google Phone,1,600.0,2019-11-24 21:18:00,602 Dogwood St, Boston,MA,02215 +284191,Wired Headphones,1,11.99,2019-11-24 21:18:00,602 Dogwood St, Boston,MA,02215 +284192,USB-C Charging Cable,1,11.95,2019-11-03 20:00:00,189 13th St, Los Angeles,CA,90001 +284193,Macbook Pro Laptop,1,1700.0,2019-11-09 05:48:00,876 Church St, Los Angeles,CA,90001 +284194,AAA Batteries (4-pack),1,2.99,2019-11-03 15:06:00,136 Forest St, Atlanta,GA,30301 +284195,USB-C Charging Cable,1,11.95,2019-11-08 21:14:00,184 12th St, Dallas,TX,75001 +284196,AAA Batteries (4-pack),1,2.99,2019-11-26 20:17:00,590 South St, Boston,MA,02215 +284197,Wired Headphones,1,11.99,2019-11-28 15:44:00,274 Dogwood St, San Francisco,CA,94016 +284198,20in Monitor,1,109.99,2019-11-25 15:25:00,257 Sunset St, Los Angeles,CA,90001 +284199,AA Batteries (4-pack),1,3.84,2019-11-27 17:13:00,562 Main St, Seattle,WA,98101 +284200,AAA Batteries (4-pack),1,2.99,2019-11-24 21:26:00,748 Cherry St, Los Angeles,CA,90001 +284201,Lightning Charging Cable,1,14.95,2019-11-27 12:12:00,849 6th St, Seattle,WA,98101 +284202,AA Batteries (4-pack),1,3.84,2019-11-26 07:34:00,386 7th St, Boston,MA,02215 +284203,Apple Airpods Headphones,1,150.0,2019-11-28 19:32:00,499 2nd St, Los Angeles,CA,90001 +284204,Lightning Charging Cable,1,14.95,2019-11-19 00:06:00,392 Madison St, San Francisco,CA,94016 +284205,Vareebadd Phone,1,400.0,2019-11-08 08:02:00,749 South St, San Francisco,CA,94016 +284206,Lightning Charging Cable,1,14.95,2019-11-17 22:11:00,494 Pine St, New York City,NY,10001 +284207,AA Batteries (4-pack),1,3.84,2019-11-24 13:44:00,96 Lake St, New York City,NY,10001 +284208,Wired Headphones,1,11.99,2019-11-26 15:56:00,747 Jackson St, Austin,TX,73301 +284209,Lightning Charging Cable,1,14.95,2019-11-04 22:13:00,268 Lake St, San Francisco,CA,94016 +284210,Lightning Charging Cable,1,14.95,2019-11-19 18:23:00,349 Lake St, Dallas,TX,75001 +284211,Lightning Charging Cable,1,14.95,2019-11-30 16:59:00,390 Adams St, Atlanta,GA,30301 +284212,Lightning Charging Cable,1,14.95,2019-11-15 15:34:00,317 Lakeview St, San Francisco,CA,94016 +284213,iPhone,1,700.0,2019-11-19 19:29:00,248 Maple St, Boston,MA,02215 +284214,27in 4K Gaming Monitor,1,389.99,2019-11-21 11:41:00,672 Lakeview St, Los Angeles,CA,90001 +284215,Wired Headphones,1,11.99,2019-11-08 20:55:00,888 Dogwood St, Dallas,TX,75001 +284216,Lightning Charging Cable,1,14.95,2019-11-06 16:49:00,164 5th St, Seattle,WA,98101 +284217,AAA Batteries (4-pack),4,2.99,2019-11-22 17:46:00,932 2nd St, Los Angeles,CA,90001 +284218,Wired Headphones,1,11.99,2019-11-22 09:11:00,657 Walnut St, Los Angeles,CA,90001 +284219,AAA Batteries (4-pack),2,2.99,2019-11-04 14:09:00,725 4th St, San Francisco,CA,94016 +284220,AAA Batteries (4-pack),1,2.99,2019-11-22 14:10:00,266 1st St, Portland,ME,04101 +284220,27in FHD Monitor,1,149.99,2019-11-22 14:10:00,266 1st St, Portland,ME,04101 +284221,AA Batteries (4-pack),1,3.84,2019-11-10 18:37:00,264 Cedar St, Boston,MA,02215 +284222,Bose SoundSport Headphones,2,99.99,2019-11-25 20:59:00,289 Pine St, Austin,TX,73301 +284223,Lightning Charging Cable,1,14.95,2019-11-16 14:59:00,314 Lincoln St, Seattle,WA,98101 +284224,Macbook Pro Laptop,1,1700.0,2019-11-03 23:16:00,313 6th St, Los Angeles,CA,90001 +284225,Wired Headphones,1,11.99,2019-11-22 14:04:00,790 Sunset St, Austin,TX,73301 +284226,Apple Airpods Headphones,1,150.0,2019-11-01 13:54:00,563 Jackson St, New York City,NY,10001 +284227,USB-C Charging Cable,1,11.95,2019-11-12 19:42:00,966 8th St, San Francisco,CA,94016 +284228,Wired Headphones,1,11.99,2019-11-05 08:15:00,185 14th St, Boston,MA,02215 +284229,AAA Batteries (4-pack),1,2.99,2019-11-20 15:46:00,356 Lincoln St, San Francisco,CA,94016 +284230,AA Batteries (4-pack),1,3.84,2019-11-21 11:55:00,857 Cedar St, Seattle,WA,98101 +284231,Lightning Charging Cable,1,14.95,2019-11-26 20:48:00,356 6th St, Portland,OR,97035 +284232,Wired Headphones,1,11.99,2019-11-16 06:36:00,99 Adams St, Seattle,WA,98101 +284233,Lightning Charging Cable,1,14.95,2019-11-24 10:47:00,470 Lake St, Los Angeles,CA,90001 +284234,Lightning Charging Cable,2,14.95,2019-11-16 16:19:00,446 Lincoln St, Los Angeles,CA,90001 +284235,Flatscreen TV,1,300.0,2019-11-20 13:35:00,269 Lake St, Los Angeles,CA,90001 +284236,iPhone,1,700.0,2019-11-15 07:45:00,615 Center St, New York City,NY,10001 +284237,Bose SoundSport Headphones,1,99.99,2019-11-09 23:27:00,750 River St, Dallas,TX,75001 +284238,Flatscreen TV,1,300.0,2019-11-06 09:59:00,193 Church St, Seattle,WA,98101 +284239,USB-C Charging Cable,1,11.95,2019-11-23 11:34:00,532 Lake St, Los Angeles,CA,90001 +284240,AAA Batteries (4-pack),1,2.99,2019-11-11 14:28:00,940 8th St, Los Angeles,CA,90001 +284241,Apple Airpods Headphones,1,150.0,2019-11-29 16:31:00,206 Hickory St, San Francisco,CA,94016 +284242,Bose SoundSport Headphones,1,99.99,2019-11-15 22:45:00,281 Ridge St, Portland,OR,97035 +284243,Bose SoundSport Headphones,1,99.99,2019-11-15 22:36:00,162 Chestnut St, New York City,NY,10001 +284244,Lightning Charging Cable,1,14.95,2019-11-11 17:55:00,246 8th St, Seattle,WA,98101 +284245,AAA Batteries (4-pack),3,2.99,2019-11-06 10:56:00,420 Highland St, Los Angeles,CA,90001 +284246,AA Batteries (4-pack),1,3.84,2019-11-11 19:38:00,530 West St, San Francisco,CA,94016 +284247,Lightning Charging Cable,2,14.95,2019-11-09 18:01:00,178 12th St, Portland,ME,04101 +284248,AAA Batteries (4-pack),2,2.99,2019-11-09 21:57:00,875 River St, Dallas,TX,75001 +284249,Lightning Charging Cable,1,14.95,2019-11-23 17:34:00,297 7th St, New York City,NY,10001 +284250,LG Dryer,1,600.0,2019-11-02 19:54:00,145 Forest St, Seattle,WA,98101 +284251,AA Batteries (4-pack),1,3.84,2019-11-19 16:18:00,139 6th St, Portland,OR,97035 +284252,27in FHD Monitor,1,149.99,2019-11-20 00:36:00,946 Meadow St, Austin,TX,73301 +284253,USB-C Charging Cable,1,11.95,2019-11-11 14:15:00,631 Chestnut St, Boston,MA,02215 +284254,Apple Airpods Headphones,1,150.0,2019-11-01 19:02:00,339 Sunset St, San Francisco,CA,94016 +284255,Lightning Charging Cable,1,14.95,2019-11-15 12:58:00,185 6th St, New York City,NY,10001 +284256,Lightning Charging Cable,1,14.95,2019-11-06 13:15:00,299 Meadow St, Boston,MA,02215 +284257,Flatscreen TV,1,300.0,2019-11-26 14:34:00,714 Pine St, Los Angeles,CA,90001 +284258,AAA Batteries (4-pack),1,2.99,2019-11-16 11:41:00,89 Park St, Los Angeles,CA,90001 +284259,27in 4K Gaming Monitor,1,389.99,2019-11-01 21:19:00,125 10th St, Atlanta,GA,30301 +284260,Bose SoundSport Headphones,1,99.99,2019-11-01 10:03:00,442 4th St, Los Angeles,CA,90001 +284261,27in FHD Monitor,1,149.99,2019-11-14 21:06:00,560 West St, Atlanta,GA,30301 +284262,AAA Batteries (4-pack),2,2.99,2019-11-18 17:44:00,547 Jackson St, Los Angeles,CA,90001 +284263,AA Batteries (4-pack),1,3.84,2019-11-26 08:00:00,149 8th St, Los Angeles,CA,90001 +284264,Apple Airpods Headphones,1,150.0,2019-11-14 13:05:00,298 Highland St, Atlanta,GA,30301 +284265,Wired Headphones,1,11.99,2019-11-27 12:10:00,180 South St, Atlanta,GA,30301 +284266,27in 4K Gaming Monitor,1,389.99,2019-11-09 19:22:00,164 Willow St, Los Angeles,CA,90001 +284267,20in Monitor,1,109.99,2019-11-18 09:31:00,654 1st St, New York City,NY,10001 +284268,USB-C Charging Cable,1,11.95,2019-11-24 16:18:00,483 Wilson St, Los Angeles,CA,90001 +284269,Lightning Charging Cable,1,14.95,2019-11-03 11:50:00,507 Meadow St, Los Angeles,CA,90001 +284270,Wired Headphones,1,11.99,2019-11-18 11:00:00,234 Wilson St, Atlanta,GA,30301 +284271,AA Batteries (4-pack),2,3.84,2019-11-08 16:54:00,692 13th St, Portland,OR,97035 +284272,27in 4K Gaming Monitor,1,389.99,2019-11-22 18:01:00,737 14th St, New York City,NY,10001 +284273,AA Batteries (4-pack),1,3.84,2019-11-13 12:09:00,595 North St, Austin,TX,73301 +284274,USB-C Charging Cable,4,11.95,2019-11-08 17:10:00,640 Spruce St, Los Angeles,CA,90001 +284275,20in Monitor,1,109.99,2019-11-29 08:59:00,624 Lincoln St, Seattle,WA,98101 +284276,AAA Batteries (4-pack),2,2.99,2019-11-13 19:52:00,418 Adams St, New York City,NY,10001 +284277,27in 4K Gaming Monitor,1,389.99,2019-11-09 21:29:00,342 Sunset St, Seattle,WA,98101 +284278,Macbook Pro Laptop,1,1700.0,2019-11-21 01:41:00,974 Jackson St, New York City,NY,10001 +284279,Lightning Charging Cable,1,14.95,2019-11-16 08:06:00,943 Church St, Boston,MA,02215 +284280,Lightning Charging Cable,1,14.95,2019-11-01 15:53:00,991 2nd St, Seattle,WA,98101 +284281,AAA Batteries (4-pack),2,2.99,2019-11-22 14:17:00,369 Main St, New York City,NY,10001 +284282,USB-C Charging Cable,1,11.95,2019-11-06 22:36:00,329 South St, Seattle,WA,98101 +284283,Bose SoundSport Headphones,1,99.99,2019-11-02 21:46:00,787 Hickory St, San Francisco,CA,94016 +284284,Wired Headphones,1,11.99,2019-11-18 12:33:00,503 Wilson St, Seattle,WA,98101 +284285,USB-C Charging Cable,1,11.95,2019-11-26 14:46:00,905 8th St, Atlanta,GA,30301 +284286,Bose SoundSport Headphones,2,99.99,2019-11-30 00:39:00,491 Maple St, New York City,NY,10001 +284287,USB-C Charging Cable,1,11.95,2019-11-20 22:24:00,580 Main St, Dallas,TX,75001 +284288,Lightning Charging Cable,1,14.95,2019-11-22 12:21:00,735 Lakeview St, New York City,NY,10001 +284289,Wired Headphones,1,11.99,2019-11-06 23:31:00,399 Johnson St, San Francisco,CA,94016 +284290,Bose SoundSport Headphones,1,99.99,2019-11-30 06:04:00,888 5th St, Los Angeles,CA,90001 +284291,Wired Headphones,1,11.99,2019-11-29 19:03:00,308 12th St, Los Angeles,CA,90001 +284292,Bose SoundSport Headphones,1,99.99,2019-11-03 16:46:00,57 Jefferson St, San Francisco,CA,94016 +284293,Lightning Charging Cable,1,14.95,2019-11-08 10:35:00,349 Dogwood St, Boston,MA,02215 +284294,AA Batteries (4-pack),2,3.84,2019-11-18 12:46:00,193 10th St, Portland,OR,97035 +284295,Bose SoundSport Headphones,1,99.99,2019-11-19 12:52:00,858 Hill St, Atlanta,GA,30301 +284296,AAA Batteries (4-pack),1,2.99,2019-11-28 16:56:00,594 Willow St, Portland,OR,97035 +284297,Apple Airpods Headphones,1,150.0,2019-11-23 10:24:00,313 10th St, New York City,NY,10001 +284298,Bose SoundSport Headphones,1,99.99,2019-11-23 11:46:00,624 2nd St, Los Angeles,CA,90001 +284299,USB-C Charging Cable,1,11.95,2019-11-12 22:15:00,202 8th St, San Francisco,CA,94016 +284300,Apple Airpods Headphones,1,150.0,2019-11-30 19:10:00,629 Pine St, New York City,NY,10001 +284301,Wired Headphones,1,11.99,2019-11-11 10:20:00,966 Cherry St, New York City,NY,10001 +284302,USB-C Charging Cable,1,11.95,2019-11-20 15:37:00,746 Washington St, Boston,MA,02215 +284303,Lightning Charging Cable,1,14.95,2019-11-01 18:43:00,516 Wilson St, Austin,TX,73301 +284304,Bose SoundSport Headphones,1,99.99,2019-11-01 14:56:00,316 Jefferson St, San Francisco,CA,94016 +284305,AAA Batteries (4-pack),1,2.99,2019-11-10 11:29:00,272 Sunset St, Los Angeles,CA,90001 +284306,Lightning Charging Cable,1,14.95,2019-11-23 11:13:00,470 Cedar St, San Francisco,CA,94016 +284307,iPhone,1,700.0,2019-11-23 11:22:00,955 West St, San Francisco,CA,94016 +284308,USB-C Charging Cable,1,11.95,2019-11-30 19:01:00,251 North St, Seattle,WA,98101 +284309,Wired Headphones,1,11.99,2019-11-20 18:24:00,67 Sunset St, Los Angeles,CA,90001 +284310,Apple Airpods Headphones,1,150.0,2019-11-13 10:40:00,636 Church St, San Francisco,CA,94016 +284311,27in FHD Monitor,1,149.99,2019-11-18 14:01:00,99 10th St, Los Angeles,CA,90001 +284312,Apple Airpods Headphones,1,150.0,2019-11-20 15:50:00,47 Ridge St, Austin,TX,73301 +284313,AA Batteries (4-pack),2,3.84,2019-11-14 19:05:00,133 Washington St, Seattle,WA,98101 +284314,Bose SoundSport Headphones,1,99.99,2019-11-17 10:42:00,386 Pine St, Portland,ME,04101 +284315,USB-C Charging Cable,1,11.95,2019-11-05 08:55:00,163 Spruce St, Dallas,TX,75001 +284316,Wired Headphones,1,11.99,2019-11-14 12:43:00,826 Ridge St, Boston,MA,02215 +284317,USB-C Charging Cable,1,11.95,2019-11-30 06:45:00,236 Main St, San Francisco,CA,94016 +284318,USB-C Charging Cable,1,11.95,2019-11-10 19:42:00,305 Maple St, San Francisco,CA,94016 +284318,Lightning Charging Cable,1,14.95,2019-11-10 19:42:00,305 Maple St, San Francisco,CA,94016 +284319,Apple Airpods Headphones,1,150.0,2019-11-23 10:35:00,668 Forest St, Portland,OR,97035 +284320,AA Batteries (4-pack),1,3.84,2019-11-24 16:36:00,603 Walnut St, Dallas,TX,75001 +284321,AAA Batteries (4-pack),2,2.99,2019-11-14 20:48:00,966 Hill St, San Francisco,CA,94016 +284322,AAA Batteries (4-pack),2,2.99,2019-11-12 23:22:00,490 Maple St, Portland,OR,97035 +284323,Bose SoundSport Headphones,1,99.99,2019-11-18 20:55:00,887 10th St, Los Angeles,CA,90001 +284324,USB-C Charging Cable,2,11.95,2019-11-27 13:34:00,134 Meadow St, Los Angeles,CA,90001 +284325,27in 4K Gaming Monitor,1,389.99,2019-11-13 15:57:00,480 Chestnut St, San Francisco,CA,94016 +284326,USB-C Charging Cable,1,11.95,2019-11-12 10:49:00,26 Dogwood St, Boston,MA,02215 +284327,USB-C Charging Cable,1,11.95,2019-11-11 21:03:00,150 Wilson St, San Francisco,CA,94016 +284328,Wired Headphones,1,11.99,2019-11-09 23:43:00,972 Hickory St, Los Angeles,CA,90001 +284329,USB-C Charging Cable,1,11.95,2019-11-29 12:51:00,225 Pine St, San Francisco,CA,94016 +284330,USB-C Charging Cable,1,11.95,2019-11-22 10:10:00,912 6th St, San Francisco,CA,94016 +284331,AAA Batteries (4-pack),1,2.99,2019-11-23 10:27:00,841 West St, Boston,MA,02215 +284332,Google Phone,1,600.0,2019-11-12 15:27:00,337 Meadow St, San Francisco,CA,94016 +284333,USB-C Charging Cable,2,11.95,2019-11-19 15:53:00,748 13th St, San Francisco,CA,94016 +284334,Lightning Charging Cable,1,14.95,2019-11-19 13:30:00,613 Maple St, San Francisco,CA,94016 +284335,Bose SoundSport Headphones,1,99.99,2019-11-06 22:00:00,884 Jefferson St, San Francisco,CA,94016 +284336,AAA Batteries (4-pack),1,2.99,2019-11-18 16:03:00,910 Sunset St, Dallas,TX,75001 +284337,USB-C Charging Cable,1,11.95,2019-11-14 08:22:00,179 Main St, Boston,MA,02215 +284338,AAA Batteries (4-pack),1,2.99,2019-11-23 20:53:00,555 North St, Dallas,TX,75001 +284339,AAA Batteries (4-pack),1,2.99,2019-11-16 12:39:00,898 Church St, Seattle,WA,98101 +284340,AAA Batteries (4-pack),1,2.99,2019-11-20 17:55:00,963 13th St, New York City,NY,10001 +284340,Macbook Pro Laptop,1,1700.0,2019-11-20 17:55:00,963 13th St, New York City,NY,10001 +284341,Wired Headphones,2,11.99,2019-11-15 18:03:00,91 Lakeview St, Boston,MA,02215 +284342,Bose SoundSport Headphones,1,99.99,2019-11-17 10:47:00,677 Jackson St, San Francisco,CA,94016 +284343,USB-C Charging Cable,1,11.95,2019-11-24 21:06:00,950 Willow St, Los Angeles,CA,90001 +284344,AA Batteries (4-pack),1,3.84,2019-11-29 04:54:00,498 2nd St, Boston,MA,02215 +284345,AA Batteries (4-pack),1,3.84,2019-11-04 20:10:00,462 Cedar St, Dallas,TX,75001 +284346,27in 4K Gaming Monitor,1,389.99,2019-11-15 15:49:00,971 Lincoln St, San Francisco,CA,94016 +284347,Wired Headphones,1,11.99,2019-11-27 20:10:00,107 Church St, New York City,NY,10001 +284348,iPhone,1,700.0,2019-11-20 15:39:00,216 Cedar St, Atlanta,GA,30301 +284348,Lightning Charging Cable,1,14.95,2019-11-20 15:39:00,216 Cedar St, Atlanta,GA,30301 +284349,AA Batteries (4-pack),2,3.84,2019-11-05 22:02:00,12 Ridge St, Atlanta,GA,30301 +284350,AAA Batteries (4-pack),1,2.99,2019-11-28 13:35:00,896 Church St, San Francisco,CA,94016 +284351,27in 4K Gaming Monitor,1,389.99,2019-11-19 11:24:00,366 Cherry St, Austin,TX,73301 +284352,iPhone,1,700.0,2019-11-05 14:45:00,153 Maple St, San Francisco,CA,94016 +284352,Lightning Charging Cable,1,14.95,2019-11-05 14:45:00,153 Maple St, San Francisco,CA,94016 +284353,iPhone,1,700.0,2019-11-12 15:23:00,855 Church St, Boston,MA,02215 +284353,Lightning Charging Cable,1,14.95,2019-11-12 15:23:00,855 Church St, Boston,MA,02215 +284354,AA Batteries (4-pack),1,3.84,2019-11-11 18:27:00,128 Lakeview St, Austin,TX,73301 +284355,AAA Batteries (4-pack),1,2.99,2019-11-20 21:47:00,225 Hickory St, Seattle,WA,98101 +284355,Bose SoundSport Headphones,1,99.99,2019-11-20 21:47:00,225 Hickory St, Seattle,WA,98101 +284356,Lightning Charging Cable,1,14.95,2019-11-26 23:13:00,385 Jefferson St, San Francisco,CA,94016 +284357,Apple Airpods Headphones,1,150.0,2019-11-17 07:56:00,230 Maple St, Los Angeles,CA,90001 +284358,ThinkPad Laptop,1,999.99,2019-11-02 14:25:00,995 West St, Austin,TX,73301 +284359,34in Ultrawide Monitor,1,379.99,2019-11-30 18:46:00,433 Park St, Los Angeles,CA,90001 +284360,AA Batteries (4-pack),1,3.84,2019-11-06 15:10:00,341 12th St, Austin,TX,73301 +284361,Lightning Charging Cable,2,14.95,2019-11-16 12:51:00,667 7th St, Seattle,WA,98101 +284362,Google Phone,1,600.0,2019-11-20 02:23:00,444 Dogwood St, San Francisco,CA,94016 +284362,USB-C Charging Cable,1,11.95,2019-11-20 02:23:00,444 Dogwood St, San Francisco,CA,94016 +284363,AAA Batteries (4-pack),1,2.99,2019-11-06 19:13:00,53 River St, San Francisco,CA,94016 +284364,AAA Batteries (4-pack),3,2.99,2019-11-26 13:12:00,724 West St, Atlanta,GA,30301 +284365,USB-C Charging Cable,1,11.95,2019-11-25 12:37:00,736 Madison St, Los Angeles,CA,90001 +284366,Macbook Pro Laptop,1,1700.0,2019-11-12 18:38:00,652 10th St, Los Angeles,CA,90001 +284367,Flatscreen TV,1,300.0,2019-11-17 13:47:00,90 Park St, San Francisco,CA,94016 +284368,USB-C Charging Cable,1,11.95,2019-11-23 19:33:00,877 Sunset St, Atlanta,GA,30301 +284369,Apple Airpods Headphones,1,150.0,2019-11-07 17:25:00,386 Willow St, Los Angeles,CA,90001 +284370,Lightning Charging Cable,1,14.95,2019-11-16 17:48:00,261 Elm St, San Francisco,CA,94016 +284371,Macbook Pro Laptop,1,1700.0,2019-11-15 14:43:00,295 14th St, New York City,NY,10001 +284372,AA Batteries (4-pack),1,3.84,2019-11-10 11:42:00,392 1st St, New York City,NY,10001 +284373,AAA Batteries (4-pack),1,2.99,2019-11-02 13:05:00,693 Forest St, Portland,OR,97035 +284374,Macbook Pro Laptop,1,1700.0,2019-11-02 10:58:00,288 Church St, Los Angeles,CA,90001 +284375,Lightning Charging Cable,1,14.95,2019-11-14 11:33:00,240 9th St, San Francisco,CA,94016 +284376,Apple Airpods Headphones,1,150.0,2019-11-23 17:06:00,228 Madison St, Seattle,WA,98101 +284377,Bose SoundSport Headphones,1,99.99,2019-11-23 08:20:00,243 Sunset St, Austin,TX,73301 +284378,Bose SoundSport Headphones,1,99.99,2019-11-21 13:46:00,504 8th St, Austin,TX,73301 +284379,AA Batteries (4-pack),1,3.84,2019-11-25 13:07:00,126 8th St, Atlanta,GA,30301 +284380,34in Ultrawide Monitor,1,379.99,2019-11-27 22:18:00,958 10th St, Austin,TX,73301 +284381,Macbook Pro Laptop,1,1700.0,2019-11-05 20:28:00,184 Jackson St, Seattle,WA,98101 +284382,Bose SoundSport Headphones,1,99.99,2019-11-26 12:48:00,550 2nd St, New York City,NY,10001 +284383,Wired Headphones,1,11.99,2019-11-01 19:28:00,255 Jackson St, Atlanta,GA,30301 +284384,Apple Airpods Headphones,1,150.0,2019-11-07 15:48:00,217 Willow St, San Francisco,CA,94016 +284385,Lightning Charging Cable,1,14.95,2019-11-29 13:18:00,80 Adams St, Portland,OR,97035 +284386,Apple Airpods Headphones,1,150.0,2019-11-20 20:18:00,986 Lincoln St, Dallas,TX,75001 +284387,27in FHD Monitor,1,149.99,2019-11-10 07:23:00,367 Main St, New York City,NY,10001 +284388,Lightning Charging Cable,1,14.95,2019-11-13 13:02:00,335 River St, New York City,NY,10001 +284389,Lightning Charging Cable,2,14.95,2019-11-14 12:37:00,281 Hill St, San Francisco,CA,94016 +284390,Lightning Charging Cable,1,14.95,2019-11-10 06:27:00,978 Wilson St, Atlanta,GA,30301 +284391,USB-C Charging Cable,1,11.95,2019-11-16 06:06:00,538 Washington St, San Francisco,CA,94016 +284392,20in Monitor,1,109.99,2019-11-27 21:43:00,506 14th St, Boston,MA,02215 +284393,Apple Airpods Headphones,1,150.0,2019-11-04 12:07:00,648 Lincoln St, Boston,MA,02215 +284394,ThinkPad Laptop,1,999.99,2019-11-03 20:44:00,416 1st St, San Francisco,CA,94016 +284395,27in FHD Monitor,1,149.99,2019-11-17 13:05:00,503 Madison St, San Francisco,CA,94016 +284396,Macbook Pro Laptop,1,1700.0,2019-11-10 11:22:00,923 Lincoln St, San Francisco,CA,94016 +284397,USB-C Charging Cable,1,11.95,2019-11-17 23:29:00,840 Forest St, Seattle,WA,98101 +284398,AA Batteries (4-pack),1,3.84,2019-11-16 14:01:00,264 Spruce St, New York City,NY,10001 +284399,Wired Headphones,1,11.99,2019-11-10 12:23:00,170 Hickory St, San Francisco,CA,94016 +284400,Lightning Charging Cable,1,14.95,2019-11-23 16:36:00,675 8th St, Los Angeles,CA,90001 +284401,Flatscreen TV,1,300.0,2019-11-20 17:53:00,508 Willow St, Austin,TX,73301 +284402,AAA Batteries (4-pack),1,2.99,2019-11-05 21:15:00,668 Maple St, New York City,NY,10001 +284403,Wired Headphones,1,11.99,2019-11-15 14:46:00,806 Johnson St, Los Angeles,CA,90001 +284404,Apple Airpods Headphones,1,150.0,2019-11-07 16:47:00,732 12th St, Los Angeles,CA,90001 +284405,iPhone,1,700.0,2019-11-27 16:29:00,689 Willow St, Dallas,TX,75001 +284406,27in FHD Monitor,1,149.99,2019-11-23 15:30:00,333 Cherry St, New York City,NY,10001 +284407,AA Batteries (4-pack),1,3.84,2019-11-08 15:45:00,824 Highland St, San Francisco,CA,94016 +284408,27in FHD Monitor,1,149.99,2019-11-29 18:56:00,671 Lake St, San Francisco,CA,94016 +284409,Apple Airpods Headphones,1,150.0,2019-11-06 14:45:00,291 Maple St, Seattle,WA,98101 +284410,Flatscreen TV,1,300.0,2019-11-14 09:04:00,971 Center St, New York City,NY,10001 +284411,27in FHD Monitor,1,149.99,2019-11-04 07:59:00,122 Spruce St, New York City,NY,10001 +284412,USB-C Charging Cable,1,11.95,2019-11-28 19:32:00,170 Adams St, Dallas,TX,75001 +284413,Lightning Charging Cable,1,14.95,2019-11-17 22:51:00,517 Willow St, Austin,TX,73301 +284414,Flatscreen TV,1,300.0,2019-11-26 14:32:00,950 South St, San Francisco,CA,94016 +284415,AAA Batteries (4-pack),2,2.99,2019-11-20 22:58:00,57 Church St, Dallas,TX,75001 +284416,Lightning Charging Cable,1,14.95,2019-11-20 19:23:00,383 Lincoln St, Dallas,TX,75001 +284417,AAA Batteries (4-pack),3,2.99,2019-11-14 21:01:00,168 Center St, Seattle,WA,98101 +284418,iPhone,1,700.0,2019-11-18 13:21:00,950 1st St, San Francisco,CA,94016 +284419,Apple Airpods Headphones,1,150.0,2019-11-03 22:37:00,28 Highland St, Atlanta,GA,30301 +284420,Apple Airpods Headphones,1,150.0,2019-11-30 09:40:00,563 Ridge St, San Francisco,CA,94016 +284421,AAA Batteries (4-pack),2,2.99,2019-11-20 19:57:00,991 Washington St, San Francisco,CA,94016 +284422,AAA Batteries (4-pack),1,2.99,2019-11-02 09:18:00,530 Hickory St, San Francisco,CA,94016 +284423,Bose SoundSport Headphones,1,99.99,2019-11-29 18:30:00,156 Lakeview St, Atlanta,GA,30301 +284424,Wired Headphones,1,11.99,2019-11-19 16:28:00,337 Forest St, Boston,MA,02215 +284425,Lightning Charging Cable,1,14.95,2019-11-05 11:08:00,572 Lincoln St, New York City,NY,10001 +284426,Lightning Charging Cable,1,14.95,2019-11-18 07:49:00,803 West St, San Francisco,CA,94016 +284427,USB-C Charging Cable,1,11.95,2019-11-29 14:39:00,967 Spruce St, Dallas,TX,75001 +284428,USB-C Charging Cable,1,11.95,2019-11-04 21:47:00,285 Church St, Los Angeles,CA,90001 +284429,iPhone,1,700.0,2019-11-13 08:22:00,370 Lincoln St, Seattle,WA,98101 +284430,AA Batteries (4-pack),2,3.84,2019-11-30 14:28:00,310 12th St, Dallas,TX,75001 +284431,Apple Airpods Headphones,1,150.0,2019-11-21 20:31:00,402 12th St, San Francisco,CA,94016 +284432,Bose SoundSport Headphones,1,99.99,2019-11-03 14:42:00,570 7th St, New York City,NY,10001 +284433,USB-C Charging Cable,1,11.95,2019-11-15 10:31:00,214 10th St, San Francisco,CA,94016 +284434,Lightning Charging Cable,1,14.95,2019-11-09 19:51:00,97 14th St, Los Angeles,CA,90001 +284435,34in Ultrawide Monitor,1,379.99,2019-11-02 21:56:00,463 Ridge St, San Francisco,CA,94016 +284436,Lightning Charging Cable,1,14.95,2019-11-12 16:18:00,525 Johnson St, Dallas,TX,75001 +284437,AAA Batteries (4-pack),1,2.99,2019-11-20 19:56:00,773 Hickory St, San Francisco,CA,94016 +284438,USB-C Charging Cable,1,11.95,2019-11-20 13:56:00,520 Sunset St, Portland,OR,97035 +284439,Wired Headphones,1,11.99,2019-11-27 12:51:00,404 Johnson St, Boston,MA,02215 +284440,Bose SoundSport Headphones,1,99.99,2019-11-11 11:35:00,177 Walnut St, Boston,MA,02215 +284441,USB-C Charging Cable,2,11.95,2019-11-25 17:15:00,998 9th St, New York City,NY,10001 +284442,Wired Headphones,2,11.99,2019-11-18 20:52:00,671 West St, Atlanta,GA,30301 +284443,Lightning Charging Cable,1,14.95,2019-11-20 22:54:00,416 Spruce St, San Francisco,CA,94016 +284444,USB-C Charging Cable,1,11.95,2019-11-21 16:34:00,317 2nd St, Dallas,TX,75001 +284445,AA Batteries (4-pack),1,3.84,2019-11-09 17:23:00,714 Park St, New York City,NY,10001 +284446,34in Ultrawide Monitor,1,379.99,2019-11-27 17:30:00,703 10th St, Boston,MA,02215 +284447,AA Batteries (4-pack),1,3.84,2019-11-15 12:34:00,953 Lincoln St, San Francisco,CA,94016 +284448,Wired Headphones,1,11.99,2019-11-27 20:44:00,568 North St, Los Angeles,CA,90001 +284449,Wired Headphones,1,11.99,2019-11-02 21:43:00,498 Highland St, Los Angeles,CA,90001 +284450,34in Ultrawide Monitor,1,379.99,2019-11-05 19:47:00,234 6th St, Dallas,TX,75001 +284451,Flatscreen TV,1,300.0,2019-11-22 16:55:00,214 Jackson St, San Francisco,CA,94016 +284452,LG Dryer,1,600.0,2019-11-16 16:00:00,435 South St, Los Angeles,CA,90001 +284453,Wired Headphones,1,11.99,2019-11-06 00:07:00,934 Main St, New York City,NY,10001 +284454,iPhone,1,700.0,2019-11-15 09:44:00,458 10th St, Seattle,WA,98101 +284455,Apple Airpods Headphones,1,150.0,2019-11-25 15:20:00,662 2nd St, San Francisco,CA,94016 +284456,Lightning Charging Cable,1,14.95,2019-11-20 16:00:00,851 Elm St, New York City,NY,10001 +284457,AAA Batteries (4-pack),2,2.99,2019-11-07 19:52:00,108 11th St, New York City,NY,10001 +284458,27in 4K Gaming Monitor,1,389.99,2019-11-05 16:24:00,54 Hill St, Dallas,TX,75001 +284459,Bose SoundSport Headphones,1,99.99,2019-11-11 18:54:00,202 Cherry St, Atlanta,GA,30301 +284460,AAA Batteries (4-pack),3,2.99,2019-11-23 16:14:00,232 Walnut St, Los Angeles,CA,90001 +284461,USB-C Charging Cable,3,11.95,2019-11-21 19:37:00,738 Spruce St, Los Angeles,CA,90001 +284462,Lightning Charging Cable,1,14.95,2019-11-28 10:52:00,189 South St, San Francisco,CA,94016 +284463,LG Dryer,1,600.0,2019-11-29 22:24:00,667 Willow St, San Francisco,CA,94016 +284464,27in 4K Gaming Monitor,1,389.99,2019-11-01 10:29:00,943 10th St, Boston,MA,02215 +284465,Flatscreen TV,1,300.0,2019-11-11 21:30:00,80 Wilson St, San Francisco,CA,94016 +284466,AAA Batteries (4-pack),1,2.99,2019-11-12 22:01:00,687 Jefferson St, Seattle,WA,98101 +284467,Macbook Pro Laptop,1,1700.0,2019-11-11 15:55:00,835 Elm St, Boston,MA,02215 +284468,34in Ultrawide Monitor,1,379.99,2019-11-03 06:24:00,370 11th St, Dallas,TX,75001 +284469,Wired Headphones,1,11.99,2019-11-07 12:46:00,776 9th St, San Francisco,CA,94016 +284470,Apple Airpods Headphones,1,150.0,2019-11-03 00:52:00,315 Jefferson St, San Francisco,CA,94016 +284471,AAA Batteries (4-pack),2,2.99,2019-11-24 10:25:00,923 6th St, Seattle,WA,98101 +284472,iPhone,1,700.0,2019-11-20 18:12:00,383 Spruce St, Los Angeles,CA,90001 +284473,27in 4K Gaming Monitor,1,389.99,2019-11-01 10:20:00,437 Ridge St, San Francisco,CA,94016 +284474,Apple Airpods Headphones,1,150.0,2019-11-29 21:45:00,798 Hickory St, New York City,NY,10001 +284475,AA Batteries (4-pack),1,3.84,2019-11-08 14:08:00,14 Sunset St, Atlanta,GA,30301 +284476,AAA Batteries (4-pack),1,2.99,2019-11-23 22:42:00,711 Dogwood St, San Francisco,CA,94016 +284477,Bose SoundSport Headphones,1,99.99,2019-11-27 07:49:00,808 Adams St, Atlanta,GA,30301 +284478,Wired Headphones,1,11.99,2019-11-25 07:59:00,663 Main St, Atlanta,GA,30301 +284479,27in FHD Monitor,1,149.99,2019-11-27 12:18:00,848 Highland St, Los Angeles,CA,90001 +284480,Bose SoundSport Headphones,1,99.99,2019-11-22 17:11:00,571 North St, New York City,NY,10001 +284481,20in Monitor,1,109.99,2019-11-22 21:31:00,772 Park St, Dallas,TX,75001 +284482,Apple Airpods Headphones,1,150.0,2019-11-27 19:04:00,319 7th St, Portland,OR,97035 +284483,Lightning Charging Cable,1,14.95,2019-11-10 09:53:00,406 Ridge St, San Francisco,CA,94016 +284484,AAA Batteries (4-pack),1,2.99,2019-11-08 21:14:00,267 8th St, Boston,MA,02215 +284485,iPhone,1,700.0,2019-11-14 13:13:00,108 Johnson St, Dallas,TX,75001 +284485,Lightning Charging Cable,1,14.95,2019-11-14 13:13:00,108 Johnson St, Dallas,TX,75001 +284485,Wired Headphones,1,11.99,2019-11-14 13:13:00,108 Johnson St, Dallas,TX,75001 +284486,Apple Airpods Headphones,1,150.0,2019-11-09 18:07:00,766 Sunset St, New York City,NY,10001 +284487,AA Batteries (4-pack),2,3.84,2019-11-24 17:33:00,316 9th St, Los Angeles,CA,90001 +284488,Apple Airpods Headphones,1,150.0,2019-11-28 19:54:00,303 5th St, San Francisco,CA,94016 +284488,AA Batteries (4-pack),5,3.84,2019-11-28 19:54:00,303 5th St, San Francisco,CA,94016 +284489,iPhone,1,700.0,2019-11-25 11:53:00,819 12th St, San Francisco,CA,94016 +284489,AAA Batteries (4-pack),1,2.99,2019-11-25 11:53:00,819 12th St, San Francisco,CA,94016 +284490,USB-C Charging Cable,1,11.95,2019-11-23 19:19:00,770 Jefferson St, Seattle,WA,98101 +284491,Wired Headphones,1,11.99,2019-11-20 18:30:00,689 Wilson St, San Francisco,CA,94016 +284492,Wired Headphones,1,11.99,2019-11-29 11:37:00,252 Lincoln St, San Francisco,CA,94016 +284493,AAA Batteries (4-pack),1,2.99,2019-11-16 14:00:00,452 Maple St, Boston,MA,02215 +284494,Bose SoundSport Headphones,1,99.99,2019-12-01 00:10:00,59 River St, Los Angeles,CA,90001 +284495,USB-C Charging Cable,1,11.95,2019-11-21 16:49:00,101 10th St, Seattle,WA,98101 +284496,Wired Headphones,1,11.99,2019-11-21 12:07:00,127 Lincoln St, Seattle,WA,98101 +284497,ThinkPad Laptop,1,999.99,2019-11-24 23:48:00,258 Hickory St, Boston,MA,02215 +284498,Apple Airpods Headphones,1,150.0,2019-11-20 13:10:00,996 Center St, Austin,TX,73301 +284499,34in Ultrawide Monitor,1,379.99,2019-11-03 17:57:00,703 Lake St, San Francisco,CA,94016 +284500,27in FHD Monitor,1,149.99,2019-11-28 19:22:00,23 North St, Portland,OR,97035 +284501,Macbook Pro Laptop,1,1700.0,2019-11-15 18:51:00,926 11th St, Dallas,TX,75001 +284501,USB-C Charging Cable,1,11.95,2019-11-15 18:51:00,926 11th St, Dallas,TX,75001 +284502,Wired Headphones,1,11.99,2019-11-24 09:02:00,743 Hickory St, Los Angeles,CA,90001 +284503,Wired Headphones,1,11.99,2019-11-01 13:32:00,665 Maple St, Atlanta,GA,30301 +284504,USB-C Charging Cable,1,11.95,2019-11-30 00:27:00,299 Dogwood St, Atlanta,GA,30301 +284505,USB-C Charging Cable,1,11.95,2019-11-11 01:13:00,263 Hill St, Los Angeles,CA,90001 +284506,USB-C Charging Cable,2,11.95,2019-11-06 23:12:00,42 8th St, Austin,TX,73301 +284507,27in 4K Gaming Monitor,1,389.99,2019-11-22 18:43:00,818 Adams St, Boston,MA,02215 +284508,Wired Headphones,1,11.99,2019-11-19 12:05:00,831 Sunset St, Los Angeles,CA,90001 +284508,AAA Batteries (4-pack),1,2.99,2019-11-19 12:05:00,831 Sunset St, Los Angeles,CA,90001 +284509,34in Ultrawide Monitor,1,379.99,2019-11-03 11:49:00,289 11th St, Los Angeles,CA,90001 +284510,Wired Headphones,1,11.99,2019-11-22 13:18:00,507 North St, Los Angeles,CA,90001 +284511,Google Phone,1,600.0,2019-11-07 05:29:00,368 Center St, San Francisco,CA,94016 +284512,USB-C Charging Cable,1,11.95,2019-11-20 20:20:00,279 Sunset St, San Francisco,CA,94016 +284513,34in Ultrawide Monitor,1,379.99,2019-11-20 22:36:00,522 Church St, New York City,NY,10001 +284514,27in 4K Gaming Monitor,1,389.99,2019-11-30 20:50:00,692 12th St, San Francisco,CA,94016 +284515,Lightning Charging Cable,1,14.95,2019-11-28 18:53:00,130 10th St, Boston,MA,02215 +284516,Bose SoundSport Headphones,1,99.99,2019-11-18 14:08:00,290 Wilson St, Los Angeles,CA,90001 +284517,Apple Airpods Headphones,1,150.0,2019-11-22 14:05:00,880 Lakeview St, Boston,MA,02215 +284518,AAA Batteries (4-pack),2,2.99,2019-11-22 19:29:00,830 11th St, Atlanta,GA,30301 +284519,AA Batteries (4-pack),1,3.84,2019-11-01 10:52:00,752 Washington St, San Francisco,CA,94016 +284520,27in 4K Gaming Monitor,1,389.99,2019-11-16 16:17:00,860 Cherry St, Seattle,WA,98101 +284521,AA Batteries (4-pack),1,3.84,2019-11-30 16:04:00,232 Hill St, Los Angeles,CA,90001 +284522,Wired Headphones,1,11.99,2019-11-03 12:13:00,64 West St, Dallas,TX,75001 +284523,iPhone,1,700.0,2019-11-26 08:30:00,994 Washington St, San Francisco,CA,94016 +284524,27in 4K Gaming Monitor,1,389.99,2019-11-05 11:33:00,149 Spruce St, Dallas,TX,75001 +284525,USB-C Charging Cable,1,11.95,2019-11-05 13:29:00,114 Ridge St, Seattle,WA,98101 +284526,USB-C Charging Cable,1,11.95,2019-11-08 12:36:00,814 Johnson St, Seattle,WA,98101 +284527,Macbook Pro Laptop,1,1700.0,2019-11-08 18:21:00,858 2nd St, Portland,OR,97035 +284528,AA Batteries (4-pack),1,3.84,2019-11-26 22:49:00,870 North St, Atlanta,GA,30301 +284529,Wired Headphones,1,11.99,2019-11-25 18:21:00,196 11th St, Seattle,WA,98101 +284530,Lightning Charging Cable,1,14.95,2019-11-16 23:06:00,983 Wilson St, Los Angeles,CA,90001 +284531,iPhone,1,700.0,2019-11-09 21:07:00,531 Lake St, San Francisco,CA,94016 +284532,Lightning Charging Cable,1,14.95,2019-11-10 13:11:00,242 Jackson St, Los Angeles,CA,90001 +284533,Wired Headphones,1,11.99,2019-11-23 20:05:00,392 5th St, Portland,ME,04101 +284534,34in Ultrawide Monitor,1,379.99,2019-11-02 20:01:00,96 10th St, New York City,NY,10001 +284535,Flatscreen TV,1,300.0,2019-11-03 11:56:00,763 River St, New York City,NY,10001 +284536,USB-C Charging Cable,1,11.95,2019-11-26 00:47:00,655 Willow St, Boston,MA,02215 +284537,27in FHD Monitor,1,149.99,2019-11-12 20:52:00,536 South St, Boston,MA,02215 +284538,27in FHD Monitor,1,149.99,2019-11-16 16:09:00,881 Washington St, Los Angeles,CA,90001 +284539,Bose SoundSport Headphones,1,99.99,2019-11-23 19:24:00,445 1st St, New York City,NY,10001 +284540,Flatscreen TV,1,300.0,2019-11-13 17:47:00,515 Lincoln St, Dallas,TX,75001 +284541,Bose SoundSport Headphones,1,99.99,2019-11-17 12:20:00,517 Chestnut St, San Francisco,CA,94016 +284542,iPhone,1,700.0,2019-11-06 17:40:00,32 11th St, Los Angeles,CA,90001 +284543,Lightning Charging Cable,1,14.95,2019-11-20 11:36:00,879 Washington St, Austin,TX,73301 +284544,Lightning Charging Cable,1,14.95,2019-11-22 07:53:00,1 Madison St, Los Angeles,CA,90001 +284545,Apple Airpods Headphones,1,150.0,2019-11-06 21:16:00,73 Church St, Portland,ME,04101 +284546,Bose SoundSport Headphones,1,99.99,2019-11-09 19:35:00,557 2nd St, Los Angeles,CA,90001 +284547,AAA Batteries (4-pack),1,2.99,2019-11-02 16:57:00,828 South St, Seattle,WA,98101 +284548,Lightning Charging Cable,1,14.95,2019-11-27 17:30:00,562 Spruce St, Seattle,WA,98101 +284549,USB-C Charging Cable,1,11.95,2019-11-11 20:30:00,196 Forest St, Boston,MA,02215 +284550,Google Phone,1,600.0,2019-11-07 11:15:00,868 14th St, San Francisco,CA,94016 +284550,USB-C Charging Cable,1,11.95,2019-11-07 11:15:00,868 14th St, San Francisco,CA,94016 +284551,USB-C Charging Cable,1,11.95,2019-11-22 08:27:00,215 2nd St, Atlanta,GA,30301 +284552,27in FHD Monitor,1,149.99,2019-11-06 03:34:00,892 Hill St, Austin,TX,73301 +284553,Bose SoundSport Headphones,1,99.99,2019-11-04 16:12:00,778 Forest St, Boston,MA,02215 +284554,Apple Airpods Headphones,1,150.0,2019-11-14 18:57:00,498 6th St, San Francisco,CA,94016 +284555,USB-C Charging Cable,1,11.95,2019-11-27 13:04:00,886 Lincoln St, Boston,MA,02215 +284556,Flatscreen TV,1,300.0,2019-11-04 08:05:00,32 Main St, Portland,OR,97035 +284557,Flatscreen TV,1,300.0,2019-11-05 23:13:00,796 11th St, Atlanta,GA,30301 +284558,AAA Batteries (4-pack),2,2.99,2019-11-25 20:15:00,318 10th St, San Francisco,CA,94016 +284559,AAA Batteries (4-pack),1,2.99,2019-11-23 15:53:00,516 4th St, Dallas,TX,75001 +284560,iPhone,1,700.0,2019-11-26 16:18:00,583 Park St, Atlanta,GA,30301 +284561,Bose SoundSport Headphones,1,99.99,2019-11-30 08:17:00,631 Adams St, San Francisco,CA,94016 +284562,20in Monitor,1,109.99,2019-11-04 14:07:00,142 14th St, Seattle,WA,98101 +284563,LG Washing Machine,1,600.0,2019-11-07 15:30:00,663 Church St, Seattle,WA,98101 +284564,AA Batteries (4-pack),2,3.84,2019-11-04 10:01:00,171 Highland St, New York City,NY,10001 +284565,Apple Airpods Headphones,1,150.0,2019-11-01 23:30:00,82 13th St, Seattle,WA,98101 +284566,Lightning Charging Cable,1,14.95,2019-11-03 16:52:00,180 13th St, Los Angeles,CA,90001 +284567,AA Batteries (4-pack),1,3.84,2019-11-04 19:01:00,706 Ridge St, Los Angeles,CA,90001 +284568,iPhone,1,700.0,2019-11-14 08:08:00,318 14th St, Boston,MA,02215 +284568,Apple Airpods Headphones,1,150.0,2019-11-14 08:08:00,318 14th St, Boston,MA,02215 +284569,Wired Headphones,2,11.99,2019-11-26 18:57:00,853 Jackson St, Boston,MA,02215 +284570,ThinkPad Laptop,1,999.99,2019-11-05 22:22:00,811 Lake St, Boston,MA,02215 +284571,Apple Airpods Headphones,1,150.0,2019-11-06 23:39:00,358 Wilson St, Seattle,WA,98101 +284572,Flatscreen TV,1,300.0,2019-11-30 13:23:00,364 Wilson St, Los Angeles,CA,90001 +284573,Lightning Charging Cable,1,14.95,2019-11-25 20:27:00,767 7th St, Los Angeles,CA,90001 +284574,AA Batteries (4-pack),1,3.84,2019-11-13 18:49:00,741 Cedar St, San Francisco,CA,94016 +284575,Apple Airpods Headphones,1,150.0,2019-11-02 19:43:00,256 1st St, Dallas,TX,75001 +284576,Google Phone,1,600.0,2019-11-19 12:33:00,706 Jackson St, Boston,MA,02215 +284576,USB-C Charging Cable,2,11.95,2019-11-19 12:33:00,706 Jackson St, Boston,MA,02215 +284577,USB-C Charging Cable,1,11.95,2019-11-30 11:54:00,788 Madison St, Portland,OR,97035 +284578,USB-C Charging Cable,1,11.95,2019-11-18 03:34:00,841 Hickory St, Seattle,WA,98101 +284579,iPhone,1,700.0,2019-11-25 17:08:00,652 Spruce St, Los Angeles,CA,90001 +284579,Lightning Charging Cable,1,14.95,2019-11-25 17:08:00,652 Spruce St, Los Angeles,CA,90001 +284580,Wired Headphones,1,11.99,2019-11-28 16:19:00,543 Lakeview St, Atlanta,GA,30301 +284581,USB-C Charging Cable,1,11.95,2019-11-05 22:59:00,201 Spruce St, New York City,NY,10001 +284582,20in Monitor,1,109.99,2019-11-19 09:29:00,808 West St, Seattle,WA,98101 +284583,ThinkPad Laptop,1,999.99,2019-11-02 19:56:00,418 Highland St, New York City,NY,10001 +284584,Apple Airpods Headphones,1,150.0,2019-11-16 11:08:00,654 13th St, Seattle,WA,98101 +284585,Bose SoundSport Headphones,1,99.99,2019-11-02 16:22:00,249 Cherry St, Portland,OR,97035 +284586,AAA Batteries (4-pack),1,2.99,2019-11-22 13:58:00,414 7th St, Atlanta,GA,30301 +284587,34in Ultrawide Monitor,1,379.99,2019-11-14 21:43:00,247 8th St, Boston,MA,02215 +284588,Bose SoundSport Headphones,1,99.99,2019-11-28 16:09:00,242 Johnson St, San Francisco,CA,94016 +284589,USB-C Charging Cable,1,11.95,2019-11-29 16:44:00,413 South St, Portland,ME,04101 +284590,Wired Headphones,1,11.99,2019-11-17 21:16:00,764 Willow St, Los Angeles,CA,90001 +284591,AAA Batteries (4-pack),1,2.99,2019-11-21 13:19:00,563 Spruce St, San Francisco,CA,94016 +284592,Bose SoundSport Headphones,1,99.99,2019-11-05 18:25:00,126 Hickory St, San Francisco,CA,94016 +284593,Lightning Charging Cable,1,14.95,2019-11-22 16:35:00,847 Park St, Atlanta,GA,30301 +284594,Wired Headphones,1,11.99,2019-11-13 20:33:00,687 Cherry St, New York City,NY,10001 +284595,ThinkPad Laptop,1,999.99,2019-11-06 20:19:00,67 Ridge St, San Francisco,CA,94016 +284596,AA Batteries (4-pack),1,3.84,2019-11-11 22:53:00,492 Forest St, Los Angeles,CA,90001 +284597,ThinkPad Laptop,1,999.99,2019-11-06 17:18:00,353 Walnut St, New York City,NY,10001 +284598,USB-C Charging Cable,1,11.95,2019-11-19 17:58:00,271 Johnson St, San Francisco,CA,94016 +284599,Apple Airpods Headphones,1,150.0,2019-11-16 20:08:00,855 Washington St, Los Angeles,CA,90001 +284600,Wired Headphones,1,11.99,2019-11-02 18:57:00,675 River St, San Francisco,CA,94016 +284601,Apple Airpods Headphones,1,150.0,2019-11-10 18:03:00,511 Meadow St, Boston,MA,02215 +284602,USB-C Charging Cable,2,11.95,2019-11-19 16:26:00,731 Chestnut St, San Francisco,CA,94016 +284603,AA Batteries (4-pack),1,3.84,2019-11-17 22:52:00,704 Elm St, Dallas,TX,75001 +284604,Lightning Charging Cable,1,14.95,2019-11-24 11:14:00,495 River St, Boston,MA,02215 +284605,Apple Airpods Headphones,1,150.0,2019-11-24 14:37:00,150 5th St, Portland,OR,97035 +284606,27in 4K Gaming Monitor,1,389.99,2019-11-29 13:51:00,883 Jackson St, Los Angeles,CA,90001 +284607,Lightning Charging Cable,1,14.95,2019-11-13 13:37:00,689 13th St, New York City,NY,10001 +284608,AA Batteries (4-pack),1,3.84,2019-11-10 12:43:00,282 Jefferson St, Boston,MA,02215 +284609,AAA Batteries (4-pack),3,2.99,2019-11-23 10:57:00,982 Main St, Los Angeles,CA,90001 +284609,AA Batteries (4-pack),1,3.84,2019-11-23 10:57:00,982 Main St, Los Angeles,CA,90001 +284610,Apple Airpods Headphones,1,150.0,2019-11-28 07:28:00,82 1st St, Los Angeles,CA,90001 +284611,USB-C Charging Cable,1,11.95,2019-11-16 17:45:00,609 Jackson St, Portland,OR,97035 +284612,Lightning Charging Cable,1,14.95,2019-11-17 13:47:00,771 Park St, San Francisco,CA,94016 +284613,AAA Batteries (4-pack),1,2.99,2019-11-05 21:07:00,361 North St, New York City,NY,10001 +284614,Macbook Pro Laptop,1,1700.0,2019-11-24 12:12:00,564 8th St, San Francisco,CA,94016 +284615,iPhone,1,700.0,2019-11-10 11:37:00,81 Maple St, Atlanta,GA,30301 +284616,34in Ultrawide Monitor,1,379.99,2019-11-02 17:34:00,42 4th St, Dallas,TX,75001 +284617,Bose SoundSport Headphones,1,99.99,2019-11-27 17:36:00,610 5th St, San Francisco,CA,94016 +284618,iPhone,1,700.0,2019-11-26 17:03:00,800 13th St, Los Angeles,CA,90001 +284619,27in 4K Gaming Monitor,1,389.99,2019-11-03 08:39:00,526 River St, San Francisco,CA,94016 +284620,AA Batteries (4-pack),1,3.84,2019-11-04 13:44:00,790 Jackson St, Boston,MA,02215 +284621,Apple Airpods Headphones,1,150.0,2019-11-18 12:09:00,881 13th St, Seattle,WA,98101 +284622,Apple Airpods Headphones,1,150.0,2019-11-05 13:09:00,49 13th St, Los Angeles,CA,90001 +284623,Bose SoundSport Headphones,1,99.99,2019-11-03 17:07:00,469 Hill St, Los Angeles,CA,90001 +284624,Macbook Pro Laptop,1,1700.0,2019-11-17 09:11:00,313 Hickory St, New York City,NY,10001 +284625,USB-C Charging Cable,1,11.95,2019-11-29 17:36:00,595 5th St, New York City,NY,10001 +284626,AA Batteries (4-pack),1,3.84,2019-11-23 23:34:00,224 12th St, New York City,NY,10001 +284627,AA Batteries (4-pack),1,3.84,2019-11-07 11:16:00,939 Lake St, Boston,MA,02215 +284628,Wired Headphones,1,11.99,2019-11-27 10:09:00,316 Lake St, Dallas,TX,75001 +284629,Bose SoundSport Headphones,1,99.99,2019-11-01 20:13:00,910 Park St, Boston,MA,02215 +284630,iPhone,1,700.0,2019-11-04 13:46:00,333 2nd St, San Francisco,CA,94016 +284630,Lightning Charging Cable,1,14.95,2019-11-04 13:46:00,333 2nd St, San Francisco,CA,94016 +284631,34in Ultrawide Monitor,1,379.99,2019-11-16 09:55:00,253 Highland St, Austin,TX,73301 +284632,AA Batteries (4-pack),1,3.84,2019-11-03 17:46:00,480 Spruce St, Dallas,TX,75001 +284633,Wired Headphones,1,11.99,2019-11-30 18:09:00,442 Jefferson St, Los Angeles,CA,90001 +284634,USB-C Charging Cable,1,11.95,2019-11-21 12:11:00,888 Willow St, San Francisco,CA,94016 +284635,34in Ultrawide Monitor,1,379.99,2019-11-24 15:52:00,383 Highland St, Boston,MA,02215 +284636,Lightning Charging Cable,2,14.95,2019-11-17 14:49:00,752 Highland St, Austin,TX,73301 +284637,27in 4K Gaming Monitor,1,389.99,2019-11-06 15:12:00,491 Johnson St, San Francisco,CA,94016 +284638,USB-C Charging Cable,1,11.95,2019-11-20 19:12:00,329 Hill St, Atlanta,GA,30301 +284639,34in Ultrawide Monitor,1,379.99,2019-11-19 22:47:00,466 14th St, Portland,ME,04101 +284640,ThinkPad Laptop,1,999.99,2019-11-03 10:19:00,829 Hickory St, San Francisco,CA,94016 +284641,AAA Batteries (4-pack),1,2.99,2019-11-17 15:51:00,401 Pine St, San Francisco,CA,94016 +284642,AA Batteries (4-pack),1,3.84,2019-11-30 17:19:00,284 Park St, Seattle,WA,98101 +284643,Wired Headphones,1,11.99,2019-11-24 12:22:00,559 6th St, Portland,ME,04101 +284644,AA Batteries (4-pack),2,3.84,2019-11-06 11:33:00,498 Jefferson St, New York City,NY,10001 +284645,USB-C Charging Cable,2,11.95,2019-11-05 21:40:00,840 Church St, New York City,NY,10001 +284646,AAA Batteries (4-pack),1,2.99,2019-11-17 16:17:00,946 Johnson St, Boston,MA,02215 +284647,Lightning Charging Cable,1,14.95,2019-11-28 17:37:00,26 Walnut St, Los Angeles,CA,90001 +284648,iPhone,1,700.0,2019-11-07 19:05:00,554 13th St, Boston,MA,02215 +284648,Lightning Charging Cable,2,14.95,2019-11-07 19:05:00,554 13th St, Boston,MA,02215 +284649,Wired Headphones,1,11.99,2019-11-24 17:16:00,485 Johnson St, Los Angeles,CA,90001 +284650,Wired Headphones,1,11.99,2019-11-01 13:50:00,263 Cherry St, Dallas,TX,75001 +284651,AAA Batteries (4-pack),4,2.99,2019-11-14 15:19:00,638 7th St, New York City,NY,10001 +284652,iPhone,1,700.0,2019-11-16 18:10:00,811 11th St, New York City,NY,10001 +284653,Apple Airpods Headphones,1,150.0,2019-11-05 18:39:00,472 Highland St, Seattle,WA,98101 +284654,USB-C Charging Cable,1,11.95,2019-11-06 01:40:00,360 Madison St, San Francisco,CA,94016 +284655,Lightning Charging Cable,1,14.95,2019-11-02 12:42:00,399 4th St, Austin,TX,73301 +284656,iPhone,1,700.0,2019-11-18 10:44:00,715 5th St, New York City,NY,10001 +284657,Bose SoundSport Headphones,1,99.99,2019-11-06 08:21:00,28 Jefferson St, Dallas,TX,75001 +284658,ThinkPad Laptop,1,999.99,2019-11-09 18:36:00,61 4th St, San Francisco,CA,94016 +284659,Lightning Charging Cable,1,14.95,2019-11-03 11:36:00,570 North St, Seattle,WA,98101 +284660,Bose SoundSport Headphones,1,99.99,2019-11-20 19:44:00,618 River St, New York City,NY,10001 +284661,Apple Airpods Headphones,1,150.0,2019-11-04 21:06:00,967 8th St, San Francisco,CA,94016 +284662,ThinkPad Laptop,1,999.99,2019-11-28 18:39:00,346 Willow St, Los Angeles,CA,90001 +284663,20in Monitor,1,109.99,2019-11-23 08:40:00,9 Johnson St, Portland,OR,97035 +284664,USB-C Charging Cable,1,11.95,2019-11-25 05:10:00,383 13th St, San Francisco,CA,94016 +284665,Wired Headphones,1,11.99,2019-11-16 17:44:00,282 Hill St, San Francisco,CA,94016 +284666,34in Ultrawide Monitor,1,379.99,2019-11-29 11:42:00,531 Hickory St, Atlanta,GA,30301 +284667,Bose SoundSport Headphones,1,99.99,2019-11-22 16:00:00,853 14th St, Dallas,TX,75001 +284668,27in 4K Gaming Monitor,1,389.99,2019-11-02 20:15:00,891 Walnut St, San Francisco,CA,94016 +284669,AAA Batteries (4-pack),1,2.99,2019-11-27 17:47:00,752 Lake St, Boston,MA,02215 +284670,Google Phone,1,600.0,2019-11-17 15:45:00,844 Washington St, Atlanta,GA,30301 +284670,Wired Headphones,1,11.99,2019-11-17 15:45:00,844 Washington St, Atlanta,GA,30301 +284671,Google Phone,1,600.0,2019-11-16 13:39:00,250 Highland St, San Francisco,CA,94016 +284672,Lightning Charging Cable,1,14.95,2019-11-16 15:55:00,531 Cedar St, Atlanta,GA,30301 +284673,Google Phone,1,600.0,2019-11-13 19:15:00,606 Forest St, Los Angeles,CA,90001 +284674,AA Batteries (4-pack),1,3.84,2019-11-26 10:18:00,206 4th St, Atlanta,GA,30301 +284675,34in Ultrawide Monitor,1,379.99,2019-11-29 23:30:00,376 West St, Boston,MA,02215 +284676,Apple Airpods Headphones,1,150.0,2019-11-20 16:03:00,402 Willow St, San Francisco,CA,94016 +284677,AAA Batteries (4-pack),1,2.99,2019-11-22 14:53:00,103 Johnson St, New York City,NY,10001 +284678,Bose SoundSport Headphones,1,99.99,2019-11-27 19:43:00,616 Maple St, New York City,NY,10001 +284679,20in Monitor,1,109.99,2019-11-29 21:02:00,164 Chestnut St, San Francisco,CA,94016 +284680,AA Batteries (4-pack),1,3.84,2019-11-06 14:35:00,701 South St, New York City,NY,10001 +284681,Apple Airpods Headphones,1,150.0,2019-11-03 06:43:00,866 Pine St, San Francisco,CA,94016 +284682,27in FHD Monitor,1,149.99,2019-11-17 17:45:00,457 Spruce St, Los Angeles,CA,90001 +284683,AA Batteries (4-pack),2,3.84,2019-11-23 09:17:00,743 Jackson St, San Francisco,CA,94016 +284684,AA Batteries (4-pack),2,3.84,2019-11-28 20:34:00,449 Cedar St, Los Angeles,CA,90001 +284685,USB-C Charging Cable,1,11.95,2019-11-26 16:55:00,392 7th St, Portland,ME,04101 +284686,Vareebadd Phone,1,400.0,2019-11-23 20:18:00,474 Center St, New York City,NY,10001 +284687,Wired Headphones,1,11.99,2019-11-07 03:01:00,430 Main St, Boston,MA,02215 +284688,AAA Batteries (4-pack),1,2.99,2019-11-21 22:04:00,151 Willow St, Dallas,TX,75001 +284689,USB-C Charging Cable,1,11.95,2019-11-23 09:41:00,686 Jefferson St, Boston,MA,02215 +284690,ThinkPad Laptop,1,999.99,2019-11-09 16:43:00,447 10th St, Seattle,WA,98101 +284691,Macbook Pro Laptop,1,1700.0,2019-11-12 17:01:00,866 Park St, San Francisco,CA,94016 +284692,LG Washing Machine,1,600.0,2019-11-20 20:25:00,318 8th St, Dallas,TX,75001 +284693,Lightning Charging Cable,1,14.95,2019-11-15 00:08:00,729 9th St, New York City,NY,10001 +284694,iPhone,1,700.0,2019-11-27 10:01:00,655 Ridge St, Dallas,TX,75001 +284695,Bose SoundSport Headphones,1,99.99,2019-11-29 16:38:00,129 Walnut St, Boston,MA,02215 +284696,AAA Batteries (4-pack),1,2.99,2019-11-26 09:54:00,746 Willow St, Seattle,WA,98101 +284697,AAA Batteries (4-pack),1,2.99,2019-11-30 22:02:00,421 8th St, New York City,NY,10001 +284698,Flatscreen TV,1,300.0,2019-11-27 07:44:00,958 10th St, Seattle,WA,98101 +284699,USB-C Charging Cable,1,11.95,2019-11-07 09:30:00,192 9th St, New York City,NY,10001 +284700,Bose SoundSport Headphones,1,99.99,2019-11-16 14:37:00,244 Park St, Los Angeles,CA,90001 +284701,27in FHD Monitor,1,149.99,2019-11-15 07:41:00,249 8th St, Dallas,TX,75001 +284702,AA Batteries (4-pack),1,3.84,2019-11-04 17:29:00,208 8th St, Los Angeles,CA,90001 +284703,20in Monitor,1,109.99,2019-11-05 17:12:00,261 Wilson St, San Francisco,CA,94016 +284704,AA Batteries (4-pack),2,3.84,2019-11-12 10:21:00,498 Chestnut St, Los Angeles,CA,90001 +284704,AA Batteries (4-pack),1,3.84,2019-11-12 10:21:00,498 Chestnut St, Los Angeles,CA,90001 +284705,Lightning Charging Cable,1,14.95,2019-11-25 16:23:00,853 Chestnut St, Los Angeles,CA,90001 +284706,Wired Headphones,2,11.99,2019-11-24 11:38:00,715 Walnut St, New York City,NY,10001 +284707,AAA Batteries (4-pack),1,2.99,2019-11-09 21:38:00,420 Walnut St, San Francisco,CA,94016 +284708,Macbook Pro Laptop,1,1700.0,2019-11-11 20:55:00,420 Sunset St, San Francisco,CA,94016 +284709,AA Batteries (4-pack),2,3.84,2019-11-27 12:07:00,842 4th St, Los Angeles,CA,90001 +284710,Flatscreen TV,1,300.0,2019-11-14 18:29:00,92 Spruce St, San Francisco,CA,94016 +284711,Macbook Pro Laptop,1,1700.0,2019-11-02 12:29:00,673 West St, Seattle,WA,98101 +284712,Lightning Charging Cable,1,14.95,2019-11-14 15:38:00,473 Wilson St, San Francisco,CA,94016 +284713,Macbook Pro Laptop,1,1700.0,2019-11-04 08:40:00,17 7th St, Atlanta,GA,30301 +284714,AA Batteries (4-pack),1,3.84,2019-11-26 18:48:00,20 12th St, San Francisco,CA,94016 +284715,Wired Headphones,1,11.99,2019-11-28 07:24:00,426 2nd St, San Francisco,CA,94016 +284716,AA Batteries (4-pack),3,3.84,2019-11-10 20:53:00,504 Hill St, Los Angeles,CA,90001 +284717,Lightning Charging Cable,1,14.95,2019-11-21 23:15:00,937 Lakeview St, San Francisco,CA,94016 +284718,27in 4K Gaming Monitor,1,389.99,2019-11-25 16:08:00,576 11th St, Dallas,TX,75001 +284719,Bose SoundSport Headphones,1,99.99,2019-11-02 15:15:00,663 11th St, San Francisco,CA,94016 +284720,USB-C Charging Cable,1,11.95,2019-11-08 21:59:00,517 Highland St, Boston,MA,02215 +284721,20in Monitor,1,109.99,2019-11-30 20:49:00,850 Spruce St, New York City,NY,10001 +284722,27in 4K Gaming Monitor,1,389.99,2019-11-27 17:24:00,780 Johnson St, Boston,MA,02215 +284723,USB-C Charging Cable,1,11.95,2019-11-18 21:57:00,631 Cherry St, Atlanta,GA,30301 +284724,USB-C Charging Cable,1,11.95,2019-11-09 07:30:00,873 Church St, San Francisco,CA,94016 +284725,27in FHD Monitor,1,149.99,2019-11-15 13:22:00,956 14th St, Seattle,WA,98101 +284726,USB-C Charging Cable,1,11.95,2019-11-02 17:50:00,817 South St, Boston,MA,02215 +284727,AA Batteries (4-pack),1,3.84,2019-11-23 15:09:00,801 Lakeview St, San Francisco,CA,94016 +284728,20in Monitor,1,109.99,2019-11-11 19:40:00,166 Lake St, Atlanta,GA,30301 +284728,Apple Airpods Headphones,1,150.0,2019-11-11 19:40:00,166 Lake St, Atlanta,GA,30301 +284729,Lightning Charging Cable,1,14.95,2019-11-21 20:19:00,825 Lakeview St, Boston,MA,02215 +284730,AA Batteries (4-pack),1,3.84,2019-11-19 22:34:00,434 Church St, New York City,NY,10001 +284731,AAA Batteries (4-pack),1,2.99,2019-11-29 09:39:00,862 Maple St, San Francisco,CA,94016 +284732,AA Batteries (4-pack),2,3.84,2019-11-01 14:35:00,736 Elm St, New York City,NY,10001 +284733,27in FHD Monitor,1,149.99,2019-11-08 23:18:00,202 Ridge St, Dallas,TX,75001 +284734,Lightning Charging Cable,1,14.95,2019-11-27 17:50:00,714 River St, New York City,NY,10001 +284735,34in Ultrawide Monitor,1,379.99,2019-11-12 17:11:00,867 2nd St, Los Angeles,CA,90001 +284736,USB-C Charging Cable,1,11.95,2019-11-24 10:27:00,129 Adams St, San Francisco,CA,94016 +284737,USB-C Charging Cable,1,11.95,2019-11-30 18:11:00,591 Willow St, San Francisco,CA,94016 +284738,Bose SoundSport Headphones,1,99.99,2019-11-12 13:44:00,841 Lincoln St, Dallas,TX,75001 +284739,20in Monitor,1,109.99,2019-11-25 13:11:00,878 14th St, New York City,NY,10001 +284740,ThinkPad Laptop,1,999.99,2019-11-26 18:01:00,314 Elm St, Portland,OR,97035 +284741,Bose SoundSport Headphones,1,99.99,2019-11-05 11:59:00,562 Johnson St, Atlanta,GA,30301 +284742,Google Phone,1,600.0,2019-11-07 11:46:00,712 West St, Seattle,WA,98101 +284742,USB-C Charging Cable,1,11.95,2019-11-07 11:46:00,712 West St, Seattle,WA,98101 +284743,AA Batteries (4-pack),1,3.84,2019-11-02 16:31:00,989 River St, Los Angeles,CA,90001 +284744,Lightning Charging Cable,1,14.95,2019-11-09 16:15:00,806 8th St, San Francisco,CA,94016 +284745,Lightning Charging Cable,1,14.95,2019-11-04 04:17:00,788 River St, Los Angeles,CA,90001 +284746,Flatscreen TV,1,300.0,2019-11-22 18:13:00,887 Wilson St, San Francisco,CA,94016 +284747,Flatscreen TV,1,300.0,2019-11-23 21:54:00,319 Cedar St, Atlanta,GA,30301 +284748,Bose SoundSport Headphones,1,99.99,2019-11-18 17:43:00,840 8th St, New York City,NY,10001 +284749,27in FHD Monitor,1,149.99,2019-11-10 18:58:00,830 Ridge St, San Francisco,CA,94016 +284750,AA Batteries (4-pack),1,3.84,2019-11-09 21:06:00,382 River St, Austin,TX,73301 +284751,AA Batteries (4-pack),1,3.84,2019-11-27 20:01:00,452 6th St, Los Angeles,CA,90001 +284752,AAA Batteries (4-pack),2,2.99,2019-11-11 15:00:00,158 Jackson St, San Francisco,CA,94016 +284753,USB-C Charging Cable,1,11.95,2019-11-26 21:56:00,740 Washington St, Austin,TX,73301 +284754,AA Batteries (4-pack),1,3.84,2019-11-29 09:22:00,971 Maple St, Seattle,WA,98101 +284755,AAA Batteries (4-pack),1,2.99,2019-11-06 18:35:00,93 8th St, San Francisco,CA,94016 +284756,Bose SoundSport Headphones,1,99.99,2019-11-04 12:39:00,281 2nd St, San Francisco,CA,94016 +284757,USB-C Charging Cable,1,11.95,2019-11-21 21:59:00,887 Cherry St, San Francisco,CA,94016 +284758,Vareebadd Phone,1,400.0,2019-11-13 20:14:00,867 Forest St, San Francisco,CA,94016 +284759,Apple Airpods Headphones,1,150.0,2019-11-05 16:57:00,392 Spruce St, Los Angeles,CA,90001 +284760,AAA Batteries (4-pack),1,2.99,2019-11-08 11:26:00,940 Washington St, Portland,OR,97035 +284761,AA Batteries (4-pack),1,3.84,2019-11-14 23:26:00,20 Lincoln St, Atlanta,GA,30301 +284761,USB-C Charging Cable,1,11.95,2019-11-14 23:26:00,20 Lincoln St, Atlanta,GA,30301 +284762,Wired Headphones,1,11.99,2019-11-15 13:35:00,619 Center St, San Francisco,CA,94016 +284763,iPhone,1,700.0,2019-11-08 15:08:00,214 Maple St, San Francisco,CA,94016 +284764,AAA Batteries (4-pack),1,2.99,2019-11-18 17:14:00,884 Pine St, Boston,MA,02215 +284765,34in Ultrawide Monitor,1,379.99,2019-11-04 00:49:00,376 4th St, Boston,MA,02215 +284766,27in 4K Gaming Monitor,1,389.99,2019-11-13 00:07:00,810 Jackson St, San Francisco,CA,94016 +284767,iPhone,1,700.0,2019-11-26 18:35:00,945 11th St, Los Angeles,CA,90001 +284768,27in FHD Monitor,1,149.99,2019-11-29 19:52:00,267 Main St, Seattle,WA,98101 +284769,Wired Headphones,1,11.99,2019-11-20 19:05:00,799 North St, San Francisco,CA,94016 +284770,AA Batteries (4-pack),1,3.84,2019-11-26 19:20:00,842 South St, Boston,MA,02215 +284771,iPhone,1,700.0,2019-11-20 12:40:00,782 Johnson St, New York City,NY,10001 +284772,34in Ultrawide Monitor,1,379.99,2019-11-14 14:45:00,49 14th St, San Francisco,CA,94016 +284773,AA Batteries (4-pack),1,3.84,2019-11-15 16:56:00,923 Cherry St, San Francisco,CA,94016 +284774,ThinkPad Laptop,1,999.99,2019-11-20 17:25:00,360 Wilson St, Atlanta,GA,30301 +284775,Macbook Pro Laptop,1,1700.0,2019-11-02 20:52:00,11 Spruce St, San Francisco,CA,94016 +284776,USB-C Charging Cable,1,11.95,2019-11-14 23:57:00,654 North St, Seattle,WA,98101 +284777,AAA Batteries (4-pack),2,2.99,2019-11-09 12:21:00,722 4th St, Dallas,TX,75001 +284778,AA Batteries (4-pack),1,3.84,2019-11-19 20:05:00,110 Spruce St, Atlanta,GA,30301 +284779,Flatscreen TV,1,300.0,2019-11-22 11:37:00,900 Park St, San Francisco,CA,94016 +284780,AAA Batteries (4-pack),1,2.99,2019-11-20 18:32:00,272 2nd St, San Francisco,CA,94016 +284781,Flatscreen TV,1,300.0,2019-11-17 11:26:00,621 11th St, Portland,OR,97035 +284782,AA Batteries (4-pack),2,3.84,2019-11-26 11:28:00,350 4th St, San Francisco,CA,94016 +284783,AAA Batteries (4-pack),2,2.99,2019-11-16 22:29:00,508 Pine St, San Francisco,CA,94016 +284784,AAA Batteries (4-pack),2,2.99,2019-11-22 11:11:00,345 12th St, San Francisco,CA,94016 +284785,Wired Headphones,1,11.99,2019-11-30 14:09:00,924 Cedar St, Dallas,TX,75001 +284786,Wired Headphones,1,11.99,2019-11-18 14:14:00,485 Park St, Boston,MA,02215 +284787,AAA Batteries (4-pack),1,2.99,2019-11-02 21:44:00,909 8th St, San Francisco,CA,94016 +284788,USB-C Charging Cable,1,11.95,2019-11-03 15:29:00,94 Elm St, San Francisco,CA,94016 +284789,iPhone,1,700.0,2019-11-10 20:05:00,440 Pine St, San Francisco,CA,94016 +284790,USB-C Charging Cable,1,11.95,2019-11-28 11:06:00,702 12th St, San Francisco,CA,94016 +284791,Lightning Charging Cable,1,14.95,2019-11-12 17:27:00,506 8th St, San Francisco,CA,94016 +284792,Apple Airpods Headphones,1,150.0,2019-11-09 23:31:00,8 West St, San Francisco,CA,94016 +284793,AAA Batteries (4-pack),2,2.99,2019-11-27 17:24:00,579 Madison St, Boston,MA,02215 +284794,Lightning Charging Cable,1,14.95,2019-11-23 11:29:00,297 Hickory St, San Francisco,CA,94016 +284795,Wired Headphones,1,11.99,2019-11-17 14:17:00,913 Johnson St, Seattle,WA,98101 +284796,USB-C Charging Cable,1,11.95,2019-11-26 13:46:00,937 10th St, Seattle,WA,98101 +284797,AAA Batteries (4-pack),1,2.99,2019-11-13 13:59:00,13 Lincoln St, Los Angeles,CA,90001 +284798,34in Ultrawide Monitor,1,379.99,2019-11-06 22:16:00,206 14th St, Los Angeles,CA,90001 +284799,ThinkPad Laptop,1,999.99,2019-11-29 12:39:00,369 Hickory St, San Francisco,CA,94016 +284800,AA Batteries (4-pack),1,3.84,2019-11-08 15:48:00,506 10th St, San Francisco,CA,94016 +284801,AA Batteries (4-pack),3,3.84,2019-11-27 19:14:00,921 9th St, Portland,ME,04101 +284802,27in FHD Monitor,1,149.99,2019-11-09 21:13:00,369 Lake St, San Francisco,CA,94016 +284803,AA Batteries (4-pack),2,3.84,2019-11-22 19:46:00,15 Adams St, Dallas,TX,75001 +284804,Macbook Pro Laptop,1,1700.0,2019-11-19 15:41:00,27 Washington St, San Francisco,CA,94016 +284805,Lightning Charging Cable,1,14.95,2019-11-23 14:41:00,450 Church St, San Francisco,CA,94016 +284806,USB-C Charging Cable,1,11.95,2019-11-14 12:26:00,658 Washington St, Atlanta,GA,30301 +284807,USB-C Charging Cable,1,11.95,2019-11-01 18:06:00,872 2nd St, San Francisco,CA,94016 +284808,USB-C Charging Cable,1,11.95,2019-11-08 23:28:00,295 13th St, Dallas,TX,75001 +284809,Apple Airpods Headphones,1,150.0,2019-11-04 13:01:00,672 2nd St, Boston,MA,02215 +284810,AAA Batteries (4-pack),2,2.99,2019-11-17 16:10:00,414 South St, Boston,MA,02215 +284811,27in 4K Gaming Monitor,1,389.99,2019-11-06 05:32:00,733 2nd St, Atlanta,GA,30301 +284811,AAA Batteries (4-pack),1,2.99,2019-11-06 05:32:00,733 2nd St, Atlanta,GA,30301 +284812,AAA Batteries (4-pack),2,2.99,2019-11-12 20:19:00,440 Ridge St, Portland,ME,04101 +284813,34in Ultrawide Monitor,1,379.99,2019-11-24 19:51:00,417 Lake St, San Francisco,CA,94016 +284814,AAA Batteries (4-pack),1,2.99,2019-11-13 03:29:00,736 Walnut St, Boston,MA,02215 +284815,iPhone,1,700.0,2019-11-19 06:44:00,369 11th St, Boston,MA,02215 +284816,USB-C Charging Cable,1,11.95,2019-11-02 17:16:00,177 10th St, Seattle,WA,98101 +284817,AA Batteries (4-pack),2,3.84,2019-11-08 13:24:00,668 Lakeview St, Boston,MA,02215 +284818,Lightning Charging Cable,1,14.95,2019-11-09 11:27:00,504 Pine St, Seattle,WA,98101 +284819,iPhone,1,700.0,2019-11-28 12:49:00,82 Cedar St, New York City,NY,10001 +284820,Bose SoundSport Headphones,1,99.99,2019-11-30 14:47:00,510 13th St, San Francisco,CA,94016 +284821,Apple Airpods Headphones,1,150.0,2019-11-06 22:07:00,551 2nd St, Dallas,TX,75001 +284822,AA Batteries (4-pack),3,3.84,2019-11-29 21:03:00,586 Forest St, Los Angeles,CA,90001 +284823,AA Batteries (4-pack),1,3.84,2019-11-18 23:19:00,963 Lincoln St, Boston,MA,02215 +284824,27in FHD Monitor,1,149.99,2019-11-16 18:03:00,286 12th St, Austin,TX,73301 +284825,Google Phone,1,600.0,2019-11-01 14:35:00,925 River St, Seattle,WA,98101 +284825,USB-C Charging Cable,1,11.95,2019-11-01 14:35:00,925 River St, Seattle,WA,98101 +284826,34in Ultrawide Monitor,1,379.99,2019-11-20 20:44:00,512 West St, Los Angeles,CA,90001 +284827,Bose SoundSport Headphones,1,99.99,2019-11-13 09:12:00,359 Sunset St, Boston,MA,02215 +284828,Wired Headphones,1,11.99,2019-11-16 13:51:00,115 11th St, Boston,MA,02215 +284829,Vareebadd Phone,1,400.0,2019-11-27 01:51:00,638 Jefferson St, San Francisco,CA,94016 +284830,Apple Airpods Headphones,1,150.0,2019-11-13 08:49:00,333 Madison St, San Francisco,CA,94016 +284831,AAA Batteries (4-pack),1,2.99,2019-11-16 20:05:00,450 8th St, San Francisco,CA,94016 +284832,Apple Airpods Headphones,1,150.0,2019-11-25 12:15:00,599 Meadow St, San Francisco,CA,94016 +284833,Lightning Charging Cable,1,14.95,2019-11-16 10:50:00,406 Meadow St, Dallas,TX,75001 +284834,Flatscreen TV,1,300.0,2019-11-14 11:15:00,976 Jackson St, Seattle,WA,98101 +284835,Lightning Charging Cable,1,14.95,2019-11-27 13:05:00,81 Washington St, New York City,NY,10001 +284836,Apple Airpods Headphones,1,150.0,2019-11-20 21:24:00,763 Hickory St, Dallas,TX,75001 +284837,Wired Headphones,1,11.99,2019-11-13 07:57:00,601 Forest St, Boston,MA,02215 +284838,AAA Batteries (4-pack),1,2.99,2019-11-17 08:25:00,467 River St, Portland,ME,04101 +284839,Wired Headphones,1,11.99,2019-11-20 19:48:00,528 Walnut St, New York City,NY,10001 +284840,Bose SoundSport Headphones,1,99.99,2019-11-05 21:56:00,456 Park St, Atlanta,GA,30301 +284841,iPhone,1,700.0,2019-11-06 08:30:00,699 Church St, San Francisco,CA,94016 +284842,AAA Batteries (4-pack),1,2.99,2019-11-03 09:57:00,420 Chestnut St, San Francisco,CA,94016 +284843,Google Phone,1,600.0,2019-11-30 00:16:00,23 1st St, San Francisco,CA,94016 +284844,iPhone,1,700.0,2019-11-25 10:51:00,189 Hill St, Dallas,TX,75001 +284845,iPhone,1,700.0,2019-11-13 05:41:00,250 1st St, Atlanta,GA,30301 +284846,Bose SoundSport Headphones,1,99.99,2019-11-01 13:04:00,930 14th St, New York City,NY,10001 +284847,Flatscreen TV,1,300.0,2019-11-01 10:45:00,442 Dogwood St, Austin,TX,73301 +284848,Bose SoundSport Headphones,1,99.99,2019-11-17 08:57:00,884 Maple St, San Francisco,CA,94016 +284849,ThinkPad Laptop,1,999.99,2019-11-15 08:46:00,620 Maple St, Austin,TX,73301 +284850,Wired Headphones,1,11.99,2019-11-13 20:26:00,28 Johnson St, New York City,NY,10001 +284851,Wired Headphones,1,11.99,2019-11-02 18:15:00,823 Highland St, San Francisco,CA,94016 +284852,27in FHD Monitor,1,149.99,2019-11-10 14:50:00,963 12th St, Los Angeles,CA,90001 +284853,iPhone,1,700.0,2019-11-19 15:14:00,444 5th St, Los Angeles,CA,90001 +284854,Bose SoundSport Headphones,1,99.99,2019-11-19 09:50:00,275 Washington St, New York City,NY,10001 +284855,Bose SoundSport Headphones,1,99.99,2019-11-13 18:51:00,600 6th St, Seattle,WA,98101 +284856,Wired Headphones,1,11.99,2019-11-27 18:16:00,708 12th St, Los Angeles,CA,90001 +284857,Lightning Charging Cable,1,14.95,2019-11-06 20:52:00,287 12th St, New York City,NY,10001 +284858,AAA Batteries (4-pack),2,2.99,2019-11-29 14:04:00,821 7th St, Atlanta,GA,30301 +284859,LG Dryer,1,600.0,2019-11-04 08:42:00,167 Johnson St, San Francisco,CA,94016 +284860,AAA Batteries (4-pack),1,2.99,2019-11-03 13:08:00,228 Walnut St, Dallas,TX,75001 +284861,Apple Airpods Headphones,1,150.0,2019-11-27 08:37:00,948 West St, Dallas,TX,75001 +284862,AA Batteries (4-pack),1,3.84,2019-11-27 00:31:00,583 Center St, San Francisco,CA,94016 +284863,AA Batteries (4-pack),2,3.84,2019-11-22 10:18:00,380 5th St, Portland,OR,97035 +284864,Lightning Charging Cable,1,14.95,2019-11-15 14:24:00,556 North St, Atlanta,GA,30301 +284865,Wired Headphones,1,11.99,2019-11-04 12:36:00,686 13th St, Atlanta,GA,30301 +284866,USB-C Charging Cable,1,11.95,2019-11-12 20:46:00,953 Dogwood St, Seattle,WA,98101 +284867,Bose SoundSport Headphones,1,99.99,2019-11-02 19:30:00,24 Ridge St, Boston,MA,02215 +284868,AAA Batteries (4-pack),2,2.99,2019-11-11 17:41:00,153 Madison St, Dallas,TX,75001 +284869,34in Ultrawide Monitor,1,379.99,2019-11-13 15:05:00,762 Chestnut St, San Francisco,CA,94016 +284870,Wired Headphones,1,11.99,2019-11-28 11:55:00,793 Cherry St, Los Angeles,CA,90001 +284871,USB-C Charging Cable,1,11.95,2019-11-30 13:01:00,278 Forest St, San Francisco,CA,94016 +284872,Lightning Charging Cable,1,14.95,2019-11-21 16:16:00,714 Park St, Seattle,WA,98101 +284873,AAA Batteries (4-pack),1,2.99,2019-11-05 10:59:00,530 Madison St, San Francisco,CA,94016 +284874,27in FHD Monitor,1,149.99,2019-11-14 12:39:00,982 Meadow St, San Francisco,CA,94016 +284875,Vareebadd Phone,1,400.0,2019-11-20 12:14:00,400 Ridge St, Atlanta,GA,30301 +284876,27in 4K Gaming Monitor,1,389.99,2019-11-24 21:44:00,411 Highland St, New York City,NY,10001 +284877,USB-C Charging Cable,1,11.95,2019-11-06 22:09:00,193 Hickory St, New York City,NY,10001 +284878,Lightning Charging Cable,1,14.95,2019-11-13 14:51:00,929 Hickory St, San Francisco,CA,94016 +284879,AA Batteries (4-pack),1,3.84,2019-11-28 17:09:00,324 Chestnut St, Los Angeles,CA,90001 +284880,Apple Airpods Headphones,1,150.0,2019-11-09 15:30:00,540 Madison St, San Francisco,CA,94016 +284881,AAA Batteries (4-pack),2,2.99,2019-11-14 14:31:00,580 Lakeview St, New York City,NY,10001 +284882,Bose SoundSport Headphones,1,99.99,2019-11-25 09:39:00,68 Johnson St, Los Angeles,CA,90001 +284883,ThinkPad Laptop,1,999.99,2019-11-14 08:42:00,784 Wilson St, Atlanta,GA,30301 +284884,AA Batteries (4-pack),2,3.84,2019-11-04 16:56:00,675 13th St, Boston,MA,02215 +284885,Flatscreen TV,1,300.0,2019-11-16 22:32:00,891 Walnut St, Seattle,WA,98101 +284885,USB-C Charging Cable,1,11.95,2019-11-16 22:32:00,891 Walnut St, Seattle,WA,98101 +284886,Bose SoundSport Headphones,1,99.99,2019-11-13 13:25:00,287 Hill St, Los Angeles,CA,90001 +284887,20in Monitor,1,109.99,2019-11-16 11:41:00,227 1st St, Seattle,WA,98101 +284888,USB-C Charging Cable,1,11.95,2019-11-21 12:19:00,696 8th St, Dallas,TX,75001 +284889,27in FHD Monitor,1,149.99,2019-11-05 18:10:00,750 Cherry St, New York City,NY,10001 +284890,AAA Batteries (4-pack),1,2.99,2019-11-12 07:57:00,588 13th St, Dallas,TX,75001 +284891,Apple Airpods Headphones,1,150.0,2019-11-29 11:07:00,33 9th St, Los Angeles,CA,90001 +284892,Apple Airpods Headphones,1,150.0,2019-11-20 15:04:00,313 1st St, Dallas,TX,75001 +284893,Lightning Charging Cable,1,14.95,2019-11-22 15:56:00,374 Sunset St, Los Angeles,CA,90001 +284894,AA Batteries (4-pack),1,3.84,2019-11-21 13:05:00,4 Park St, Los Angeles,CA,90001 +284895,ThinkPad Laptop,1,999.99,2019-11-07 22:26:00,600 Church St, San Francisco,CA,94016 +284896,ThinkPad Laptop,1,999.99,2019-11-14 15:56:00,286 Maple St, Los Angeles,CA,90001 +284897,Flatscreen TV,1,300.0,2019-11-23 17:07:00,527 Lake St, Dallas,TX,75001 +284898,34in Ultrawide Monitor,1,379.99,2019-11-18 22:13:00,838 River St, Los Angeles,CA,90001 +284899,27in 4K Gaming Monitor,1,389.99,2019-11-20 22:13:00,525 Highland St, San Francisco,CA,94016 +284900,ThinkPad Laptop,1,999.99,2019-11-10 16:08:00,446 Adams St, Los Angeles,CA,90001 +284901,34in Ultrawide Monitor,1,379.99,2019-11-12 11:08:00,922 Cherry St, Boston,MA,02215 +284902,Lightning Charging Cable,1,14.95,2019-11-25 20:54:00,69 Willow St, Los Angeles,CA,90001 +284903,Apple Airpods Headphones,1,150.0,2019-11-19 20:54:00,835 2nd St, Boston,MA,02215 +284904,Apple Airpods Headphones,1,150.0,2019-11-03 18:52:00,974 12th St, Boston,MA,02215 +284905,Lightning Charging Cable,1,14.95,2019-11-11 01:01:00,325 Meadow St, New York City,NY,10001 +284906,Wired Headphones,1,11.99,2019-11-23 17:20:00,285 5th St, Austin,TX,73301 +284907,Apple Airpods Headphones,1,150.0,2019-11-11 02:02:00,91 North St, Seattle,WA,98101 +284907,ThinkPad Laptop,1,999.99,2019-11-11 02:02:00,91 North St, Seattle,WA,98101 +284908,Flatscreen TV,1,300.0,2019-11-07 19:06:00,247 4th St, Seattle,WA,98101 +284909,AA Batteries (4-pack),1,3.84,2019-11-02 12:17:00,485 Main St, San Francisco,CA,94016 +284910,Lightning Charging Cable,1,14.95,2019-11-19 06:17:00,219 7th St, San Francisco,CA,94016 +284911,Lightning Charging Cable,1,14.95,2019-11-22 19:34:00,278 1st St, Boston,MA,02215 +284912,Wired Headphones,1,11.99,2019-11-02 21:19:00,319 9th St, New York City,NY,10001 +284913,iPhone,1,700.0,2019-11-01 09:54:00,543 Willow St, Seattle,WA,98101 +284914,20in Monitor,1,109.99,2019-11-17 12:58:00,447 Cherry St, New York City,NY,10001 +284915,USB-C Charging Cable,1,11.95,2019-11-04 08:36:00,876 Lincoln St, Atlanta,GA,30301 +284916,27in FHD Monitor,1,149.99,2019-11-05 13:11:00,35 Main St, Boston,MA,02215 +284916,AAA Batteries (4-pack),4,2.99,2019-11-05 13:11:00,35 Main St, Boston,MA,02215 +284917,USB-C Charging Cable,1,11.95,2019-11-04 13:18:00,12 Lincoln St, Portland,OR,97035 +284918,34in Ultrawide Monitor,1,379.99,2019-11-26 00:19:00,204 River St, San Francisco,CA,94016 +284919,Vareebadd Phone,1,400.0,2019-11-13 13:08:00,584 Spruce St, New York City,NY,10001 +284920,Flatscreen TV,1,300.0,2019-11-24 03:26:00,362 Jackson St, New York City,NY,10001 +284921,Bose SoundSport Headphones,1,99.99,2019-11-05 20:33:00,151 Pine St, San Francisco,CA,94016 +284922,AAA Batteries (4-pack),1,2.99,2019-11-01 22:25:00,342 Ridge St, San Francisco,CA,94016 +284923,AA Batteries (4-pack),1,3.84,2019-11-10 19:18:00,57 Elm St, Los Angeles,CA,90001 +284924,AA Batteries (4-pack),1,3.84,2019-11-25 09:28:00,998 South St, San Francisco,CA,94016 +284925,Apple Airpods Headphones,1,150.0,2019-11-11 16:24:00,90 Jackson St, Dallas,TX,75001 +284926,USB-C Charging Cable,1,11.95,2019-11-10 12:51:00,377 Madison St, Los Angeles,CA,90001 +284927,Apple Airpods Headphones,1,150.0,2019-11-16 17:24:00,71 Wilson St, Los Angeles,CA,90001 +284928,iPhone,1,700.0,2019-11-30 13:55:00,548 Main St, Boston,MA,02215 +284928,Lightning Charging Cable,1,14.95,2019-11-30 13:55:00,548 Main St, Boston,MA,02215 +284929,Vareebadd Phone,1,400.0,2019-11-16 20:41:00,978 West St, San Francisco,CA,94016 +284930,Bose SoundSport Headphones,1,99.99,2019-11-22 09:10:00,348 Meadow St, Atlanta,GA,30301 +284931,34in Ultrawide Monitor,1,379.99,2019-11-22 10:29:00,960 Cherry St, Austin,TX,73301 +284932,USB-C Charging Cable,1,11.95,2019-11-18 22:42:00,400 Sunset St, Dallas,TX,75001 +284933,Lightning Charging Cable,1,14.95,2019-11-16 16:45:00,94 Park St, New York City,NY,10001 +284934,Wired Headphones,1,11.99,2019-11-27 18:26:00,328 Lake St, San Francisco,CA,94016 +284935,Bose SoundSport Headphones,1,99.99,2019-11-20 17:44:00,22 River St, Austin,TX,73301 +284936,Lightning Charging Cable,1,14.95,2019-11-26 14:08:00,500 10th St, Los Angeles,CA,90001 +284937,Wired Headphones,1,11.99,2019-11-22 15:59:00,715 Johnson St, San Francisco,CA,94016 +284938,Bose SoundSport Headphones,1,99.99,2019-11-27 12:35:00,101 Main St, Los Angeles,CA,90001 +284939,AA Batteries (4-pack),1,3.84,2019-11-21 17:21:00,803 Elm St, San Francisco,CA,94016 +284940,Wired Headphones,1,11.99,2019-11-13 18:14:00,112 Johnson St, Los Angeles,CA,90001 +284941,USB-C Charging Cable,1,11.95,2019-11-14 19:15:00,989 Chestnut St, San Francisco,CA,94016 +284942,27in FHD Monitor,1,149.99,2019-11-03 20:15:00,45 1st St, Seattle,WA,98101 +284943,Bose SoundSport Headphones,1,99.99,2019-11-29 15:22:00,894 Spruce St, Atlanta,GA,30301 +284944,iPhone,1,700.0,2019-11-21 17:03:00,702 Ridge St, San Francisco,CA,94016 +284945,Wired Headphones,1,11.99,2019-11-17 14:57:00,664 11th St, Los Angeles,CA,90001 +284946,Apple Airpods Headphones,1,150.0,2019-11-18 13:24:00,29 Chestnut St, Austin,TX,73301 +284947,Lightning Charging Cable,1,14.95,2019-11-10 11:37:00,465 Walnut St, Los Angeles,CA,90001 +284948,Google Phone,1,600.0,2019-11-26 09:35:00,692 8th St, Los Angeles,CA,90001 +284949,iPhone,1,700.0,2019-11-04 13:29:00,286 Meadow St, San Francisco,CA,94016 +284949,Lightning Charging Cable,1,14.95,2019-11-04 13:29:00,286 Meadow St, San Francisco,CA,94016 +284950,AA Batteries (4-pack),1,3.84,2019-11-15 21:17:00,503 5th St, San Francisco,CA,94016 +284951,USB-C Charging Cable,1,11.95,2019-11-23 12:04:00,778 West St, New York City,NY,10001 +284952,Apple Airpods Headphones,1,150.0,2019-11-07 23:05:00,671 Washington St, Atlanta,GA,30301 +284953,AAA Batteries (4-pack),1,2.99,2019-11-23 16:42:00,79 5th St, Boston,MA,02215 +284954,USB-C Charging Cable,1,11.95,2019-11-02 17:04:00,477 Chestnut St, Los Angeles,CA,90001 +284955,Macbook Pro Laptop,1,1700.0,2019-11-01 17:04:00,156 Sunset St, Los Angeles,CA,90001 +284956,Bose SoundSport Headphones,1,99.99,2019-11-22 21:25:00,99 4th St, Boston,MA,02215 +284957,Apple Airpods Headphones,1,150.0,2019-11-03 12:54:00,637 Hill St, Portland,OR,97035 +284958,AAA Batteries (4-pack),1,2.99,2019-11-04 19:24:00,637 4th St, Atlanta,GA,30301 +284959,Flatscreen TV,1,300.0,2019-11-10 20:54:00,57 14th St, Boston,MA,02215 +284960,27in FHD Monitor,1,149.99,2019-11-14 16:02:00,560 Spruce St, New York City,NY,10001 +284961,Google Phone,1,600.0,2019-11-28 02:29:00,646 10th St, Dallas,TX,75001 +284962,USB-C Charging Cable,1,11.95,2019-11-14 05:51:00,929 Walnut St, New York City,NY,10001 +284963,Wired Headphones,1,11.99,2019-11-15 17:48:00,702 Park St, Boston,MA,02215 +284964,USB-C Charging Cable,1,11.95,2019-11-28 14:35:00,100 Spruce St, San Francisco,CA,94016 +284965,Apple Airpods Headphones,1,150.0,2019-11-21 08:42:00,733 Hill St, Portland,OR,97035 +284966,AA Batteries (4-pack),1,3.84,2019-11-11 17:01:00,702 Maple St, Boston,MA,02215 +284967,Bose SoundSport Headphones,1,99.99,2019-11-15 10:19:00,217 Cedar St, San Francisco,CA,94016 +284968,Google Phone,1,600.0,2019-11-09 13:17:00,752 Lakeview St, Seattle,WA,98101 +284968,USB-C Charging Cable,1,11.95,2019-11-09 13:17:00,752 Lakeview St, Seattle,WA,98101 +284969,AAA Batteries (4-pack),1,2.99,2019-11-19 10:25:00,155 9th St, Portland,ME,04101 +284970,USB-C Charging Cable,1,11.95,2019-11-19 20:08:00,690 Sunset St, Atlanta,GA,30301 +284971,Apple Airpods Headphones,1,150.0,2019-11-14 08:30:00,826 Spruce St, San Francisco,CA,94016 +284972,27in FHD Monitor,1,149.99,2019-11-16 16:28:00,996 Adams St, New York City,NY,10001 +284973,Apple Airpods Headphones,1,150.0,2019-11-27 05:53:00,419 Maple St, San Francisco,CA,94016 +284974,AA Batteries (4-pack),1,3.84,2019-11-17 11:44:00,987 West St, Seattle,WA,98101 +284975,Wired Headphones,1,11.99,2019-11-26 11:21:00,843 River St, Los Angeles,CA,90001 +284976,Lightning Charging Cable,1,14.95,2019-11-05 13:20:00,902 Hickory St, Austin,TX,73301 +284977,Lightning Charging Cable,1,14.95,2019-11-23 19:02:00,299 4th St, San Francisco,CA,94016 +284978,Wired Headphones,1,11.99,2019-12-01 00:09:00,361 Walnut St, Dallas,TX,75001 +284979,27in 4K Gaming Monitor,1,389.99,2019-11-22 09:27:00,446 7th St, Seattle,WA,98101 +284980,Google Phone,1,600.0,2019-11-21 11:38:00,504 Cherry St, San Francisco,CA,94016 +284981,Flatscreen TV,1,300.0,2019-11-05 21:10:00,668 Ridge St, San Francisco,CA,94016 +284982,Wired Headphones,1,11.99,2019-11-11 16:25:00,752 Willow St, San Francisco,CA,94016 +284983,Bose SoundSport Headphones,1,99.99,2019-11-18 12:27:00,136 Johnson St, Atlanta,GA,30301 +284984,Lightning Charging Cable,1,14.95,2019-11-16 12:22:00,94 Maple St, New York City,NY,10001 +284985,Lightning Charging Cable,1,14.95,2019-11-05 22:08:00,1 Hickory St, San Francisco,CA,94016 +284986,Lightning Charging Cable,1,14.95,2019-11-02 14:03:00,381 8th St, Boston,MA,02215 +284987,USB-C Charging Cable,1,11.95,2019-11-10 13:31:00,746 6th St, San Francisco,CA,94016 +284988,Lightning Charging Cable,1,14.95,2019-11-29 21:01:00,293 River St, Boston,MA,02215 +284989,AAA Batteries (4-pack),5,2.99,2019-11-16 13:46:00,408 Sunset St, Los Angeles,CA,90001 +284990,Bose SoundSport Headphones,1,99.99,2019-11-04 15:53:00,713 Cherry St, Portland,OR,97035 +284991,Lightning Charging Cable,1,14.95,2019-11-15 22:37:00,288 Forest St, Austin,TX,73301 +284992,34in Ultrawide Monitor,1,379.99,2019-11-04 00:31:00,805 Center St, Boston,MA,02215 +284993,20in Monitor,1,109.99,2019-11-25 06:56:00,928 Hickory St, Portland,OR,97035 +284994,Lightning Charging Cable,1,14.95,2019-11-29 21:48:00,950 Meadow St, Boston,MA,02215 +284995,AA Batteries (4-pack),1,3.84,2019-11-01 20:10:00,995 North St, Atlanta,GA,30301 +284996,AAA Batteries (4-pack),1,2.99,2019-11-17 16:20:00,986 4th St, Seattle,WA,98101 +284997,Wired Headphones,1,11.99,2019-11-19 12:00:00,116 7th St, Portland,OR,97035 +284998,Flatscreen TV,1,300.0,2019-11-11 17:35:00,211 9th St, Boston,MA,02215 +284999,Lightning Charging Cable,1,14.95,2019-11-30 16:29:00,85 Main St, Portland,OR,97035 +285000,AAA Batteries (4-pack),1,2.99,2019-11-08 07:13:00,165 9th St, Dallas,TX,75001 +285001,USB-C Charging Cable,2,11.95,2019-11-30 19:26:00,204 Main St, Seattle,WA,98101 +285002,Apple Airpods Headphones,1,150.0,2019-11-11 16:51:00,328 Forest St, Austin,TX,73301 +285003,AAA Batteries (4-pack),1,2.99,2019-11-23 18:58:00,579 Spruce St, New York City,NY,10001 +285004,AA Batteries (4-pack),1,3.84,2019-11-07 21:02:00,215 South St, New York City,NY,10001 +285005,27in 4K Gaming Monitor,1,389.99,2019-11-22 00:44:00,255 6th St, Dallas,TX,75001 +285006,AA Batteries (4-pack),1,3.84,2019-11-13 10:50:00,267 Forest St, Portland,OR,97035 +285007,USB-C Charging Cable,1,11.95,2019-11-08 12:52:00,907 1st St, Seattle,WA,98101 +285008,AA Batteries (4-pack),2,3.84,2019-11-20 05:17:00,216 5th St, Portland,OR,97035 +285009,27in 4K Gaming Monitor,1,389.99,2019-11-12 22:40:00,977 Hill St, Dallas,TX,75001 +285010,Bose SoundSport Headphones,1,99.99,2019-11-23 18:52:00,391 1st St, Los Angeles,CA,90001 +285011,Lightning Charging Cable,1,14.95,2019-11-07 07:29:00,945 1st St, Boston,MA,02215 +285012,Bose SoundSport Headphones,1,99.99,2019-11-05 13:54:00,535 North St, New York City,NY,10001 +285013,AAA Batteries (4-pack),1,2.99,2019-11-01 14:04:00,634 Lakeview St, San Francisco,CA,94016 +285014,USB-C Charging Cable,1,11.95,2019-11-03 07:39:00,995 5th St, San Francisco,CA,94016 +285015,USB-C Charging Cable,1,11.95,2019-11-20 14:34:00,83 Pine St, Dallas,TX,75001 +285016,USB-C Charging Cable,1,11.95,2019-11-27 13:34:00,577 Jackson St, Seattle,WA,98101 +285017,Apple Airpods Headphones,1,150.0,2019-11-11 22:28:00,416 7th St, Portland,ME,04101 +285018,Bose SoundSport Headphones,1,99.99,2019-11-28 19:59:00,424 Maple St, San Francisco,CA,94016 +285019,Lightning Charging Cable,1,14.95,2019-11-15 18:33:00,910 Forest St, Los Angeles,CA,90001 +285020,Macbook Pro Laptop,1,1700.0,2019-11-03 18:43:00,86 1st St, New York City,NY,10001 +285021,AA Batteries (4-pack),1,3.84,2019-11-16 09:41:00,404 Wilson St, Boston,MA,02215 +285022,Macbook Pro Laptop,1,1700.0,2019-11-20 10:09:00,949 Johnson St, Austin,TX,73301 +285023,Wired Headphones,1,11.99,2019-11-19 11:26:00,737 Walnut St, San Francisco,CA,94016 +285024,Lightning Charging Cable,1,14.95,2019-11-23 10:46:00,5 Lakeview St, San Francisco,CA,94016 +285025,ThinkPad Laptop,1,999.99,2019-11-07 23:34:00,176 North St, San Francisco,CA,94016 +285026,34in Ultrawide Monitor,1,379.99,2019-11-03 22:11:00,185 Cherry St, San Francisco,CA,94016 +285027,20in Monitor,1,109.99,2019-11-25 13:43:00,410 Willow St, Atlanta,GA,30301 +285028,USB-C Charging Cable,1,11.95,2019-11-27 21:50:00,634 Washington St, Atlanta,GA,30301 +285029,Lightning Charging Cable,1,14.95,2019-11-08 12:13:00,554 Sunset St, San Francisco,CA,94016 +285030,Google Phone,1,600.0,2019-11-13 21:44:00,40 Adams St, Los Angeles,CA,90001 +285031,AA Batteries (4-pack),1,3.84,2019-11-24 14:22:00,182 4th St, Seattle,WA,98101 +285032,AA Batteries (4-pack),1,3.84,2019-11-15 22:10:00,413 South St, San Francisco,CA,94016 +285033,USB-C Charging Cable,1,11.95,2019-11-29 20:46:00,725 7th St, San Francisco,CA,94016 +285034,USB-C Charging Cable,1,11.95,2019-11-04 08:10:00,132 12th St, San Francisco,CA,94016 +285035,Lightning Charging Cable,1,14.95,2019-11-14 09:50:00,770 Spruce St, New York City,NY,10001 +285036,34in Ultrawide Monitor,1,379.99,2019-11-15 06:39:00,857 Pine St, San Francisco,CA,94016 +285037,USB-C Charging Cable,1,11.95,2019-11-30 21:31:00,295 6th St, New York City,NY,10001 +285038,Apple Airpods Headphones,1,150.0,2019-11-05 01:11:00,969 Hickory St, San Francisco,CA,94016 +285039,Google Phone,1,600.0,2019-11-03 17:33:00,178 14th St, Los Angeles,CA,90001 +285040,Lightning Charging Cable,1,14.95,2019-11-04 19:41:00,45 Lakeview St, Boston,MA,02215 +285041,AA Batteries (4-pack),1,3.84,2019-11-23 09:53:00,761 Willow St, Atlanta,GA,30301 +285042,Apple Airpods Headphones,1,150.0,2019-11-07 08:17:00,631 Ridge St, New York City,NY,10001 +285043,27in 4K Gaming Monitor,1,389.99,2019-11-07 15:11:00,836 Madison St, Dallas,TX,75001 +285044,Lightning Charging Cable,1,14.95,2019-11-18 15:36:00,86 Jackson St, San Francisco,CA,94016 +285045,USB-C Charging Cable,1,11.95,2019-11-16 13:55:00,450 Park St, Seattle,WA,98101 +285046,AAA Batteries (4-pack),1,2.99,2019-11-13 10:37:00,708 Washington St, Portland,OR,97035 +285047,Wired Headphones,1,11.99,2019-11-19 23:05:00,586 Cedar St, San Francisco,CA,94016 +285048,Wired Headphones,1,11.99,2019-11-08 19:57:00,795 8th St, Boston,MA,02215 +285049,34in Ultrawide Monitor,1,379.99,2019-11-07 09:30:00,984 14th St, Boston,MA,02215 +285050,AAA Batteries (4-pack),3,2.99,2019-11-01 19:33:00,707 Washington St, San Francisco,CA,94016 +285051,USB-C Charging Cable,1,11.95,2019-11-11 15:24:00,258 Highland St, San Francisco,CA,94016 +285052,AAA Batteries (4-pack),3,2.99,2019-11-17 20:08:00,385 Forest St, Atlanta,GA,30301 +285053,Wired Headphones,1,11.99,2019-11-15 13:55:00,328 Hill St, San Francisco,CA,94016 +285054,USB-C Charging Cable,1,11.95,2019-11-20 18:52:00,201 Park St, Austin,TX,73301 +285055,iPhone,1,700.0,2019-11-27 16:45:00,980 2nd St, Seattle,WA,98101 +285056,27in 4K Gaming Monitor,1,389.99,2019-11-25 18:42:00,901 13th St, Dallas,TX,75001 +285057,Lightning Charging Cable,1,14.95,2019-11-07 17:54:00,224 Ridge St, Austin,TX,73301 +285058,iPhone,1,700.0,2019-11-09 22:01:00,402 Pine St, Los Angeles,CA,90001 +285059,20in Monitor,1,109.99,2019-11-01 16:22:00,972 Cherry St, Boston,MA,02215 +285060,Bose SoundSport Headphones,1,99.99,2019-11-17 21:26:00,779 6th St, Los Angeles,CA,90001 +285060,Lightning Charging Cable,1,14.95,2019-11-17 21:26:00,779 6th St, Los Angeles,CA,90001 +285061,USB-C Charging Cable,1,11.95,2019-11-17 12:19:00,298 Spruce St, Portland,ME,04101 +285062,USB-C Charging Cable,1,11.95,2019-11-07 21:50:00,915 4th St, Boston,MA,02215 +285063,AAA Batteries (4-pack),1,2.99,2019-11-21 18:14:00,231 Pine St, San Francisco,CA,94016 +285063,AA Batteries (4-pack),1,3.84,2019-11-21 18:14:00,231 Pine St, San Francisco,CA,94016 +285064,AA Batteries (4-pack),3,3.84,2019-11-05 09:37:00,713 Maple St, Atlanta,GA,30301 +285065,USB-C Charging Cable,1,11.95,2019-11-26 17:31:00,493 Lakeview St, San Francisco,CA,94016 +285066,Bose SoundSport Headphones,1,99.99,2019-11-21 15:45:00,687 Main St, San Francisco,CA,94016 +285066,Apple Airpods Headphones,1,150.0,2019-11-21 15:45:00,687 Main St, San Francisco,CA,94016 +285067,AAA Batteries (4-pack),1,2.99,2019-11-09 10:39:00,786 Park St, Dallas,TX,75001 +285068,Apple Airpods Headphones,1,150.0,2019-11-13 20:20:00,681 6th St, New York City,NY,10001 +285069,AAA Batteries (4-pack),3,2.99,2019-11-16 21:49:00,964 7th St, Los Angeles,CA,90001 +285070,34in Ultrawide Monitor,1,379.99,2019-11-09 01:10:00,665 11th St, San Francisco,CA,94016 +285071,iPhone,1,700.0,2019-11-08 15:55:00,957 4th St, San Francisco,CA,94016 +285072,USB-C Charging Cable,1,11.95,2019-11-15 21:19:00,32 Hickory St, San Francisco,CA,94016 +285073,iPhone,1,700.0,2019-11-06 06:51:00,916 Chestnut St, Austin,TX,73301 +285074,AA Batteries (4-pack),1,3.84,2019-11-28 21:04:00,37 Cherry St, Seattle,WA,98101 +285075,Lightning Charging Cable,1,14.95,2019-11-09 19:52:00,595 8th St, Austin,TX,73301 +285076,Apple Airpods Headphones,1,150.0,2019-11-09 19:32:00,207 Ridge St, Atlanta,GA,30301 +285077,Lightning Charging Cable,1,14.95,2019-11-08 19:18:00,44 West St, Boston,MA,02215 +285078,ThinkPad Laptop,1,999.99,2019-11-15 11:19:00,222 2nd St, Boston,MA,02215 +285079,AA Batteries (4-pack),1,3.84,2019-11-13 17:28:00,995 Washington St, Boston,MA,02215 +285080,USB-C Charging Cable,1,11.95,2019-11-14 19:05:00,238 Meadow St, San Francisco,CA,94016 +285081,Bose SoundSport Headphones,1,99.99,2019-11-26 23:09:00,272 Hickory St, Austin,TX,73301 +285082,Wired Headphones,1,11.99,2019-11-09 11:07:00,151 5th St, Los Angeles,CA,90001 +285083,Lightning Charging Cable,1,14.95,2019-11-01 15:39:00,75 Maple St, San Francisco,CA,94016 +285084,USB-C Charging Cable,1,11.95,2019-11-12 15:45:00,302 Park St, Boston,MA,02215 +285085,USB-C Charging Cable,1,11.95,2019-11-08 16:58:00,370 Willow St, Seattle,WA,98101 +285086,Bose SoundSport Headphones,1,99.99,2019-11-13 15:49:00,819 10th St, San Francisco,CA,94016 +285087,Wired Headphones,1,11.99,2019-11-04 09:28:00,73 Elm St, Boston,MA,02215 +285088,20in Monitor,1,109.99,2019-11-09 21:00:00,57 Spruce St, San Francisco,CA,94016 +285089,20in Monitor,1,109.99,2019-11-23 10:29:00,567 5th St, Dallas,TX,75001 +285090,Flatscreen TV,1,300.0,2019-11-09 10:02:00,786 Elm St, New York City,NY,10001 +285091,27in 4K Gaming Monitor,1,389.99,2019-11-23 21:49:00,593 10th St, Los Angeles,CA,90001 +285092,AAA Batteries (4-pack),1,2.99,2019-11-23 17:29:00,306 Washington St, Seattle,WA,98101 +285093,Lightning Charging Cable,1,14.95,2019-11-03 20:09:00,152 9th St, San Francisco,CA,94016 +285094,Wired Headphones,1,11.99,2019-11-14 18:44:00,252 6th St, Los Angeles,CA,90001 +285095,Wired Headphones,1,11.99,2019-11-03 09:23:00,404 6th St, Los Angeles,CA,90001 +285096,iPhone,1,700.0,2019-11-12 21:55:00,953 South St, Portland,OR,97035 +285096,Wired Headphones,2,11.99,2019-11-12 21:55:00,953 South St, Portland,OR,97035 +285097,34in Ultrawide Monitor,1,379.99,2019-11-17 12:23:00,149 Dogwood St, New York City,NY,10001 +285098,Wired Headphones,1,11.99,2019-11-26 13:04:00,407 13th St, San Francisco,CA,94016 +285099,Lightning Charging Cable,1,14.95,2019-11-07 20:11:00,423 West St, New York City,NY,10001 +285100,Wired Headphones,1,11.99,2019-11-17 21:08:00,294 Jefferson St, Atlanta,GA,30301 +285101,AA Batteries (4-pack),1,3.84,2019-11-16 14:33:00,685 Park St, San Francisco,CA,94016 +285102,27in 4K Gaming Monitor,1,389.99,2019-12-01 00:26:00,964 7th St, Los Angeles,CA,90001 +285103,ThinkPad Laptop,1,999.99,2019-11-20 17:53:00,485 Wilson St, Seattle,WA,98101 +285104,AA Batteries (4-pack),1,3.84,2019-11-14 19:43:00,158 Lincoln St, Atlanta,GA,30301 +285105,Macbook Pro Laptop,1,1700.0,2019-11-05 16:28:00,224 Main St, Atlanta,GA,30301 +285106,AAA Batteries (4-pack),1,2.99,2019-11-29 10:05:00,592 7th St, Boston,MA,02215 +285107,USB-C Charging Cable,1,11.95,2019-11-30 14:35:00,803 West St, New York City,NY,10001 +285108,Apple Airpods Headphones,1,150.0,2019-11-12 22:37:00,365 Walnut St, Boston,MA,02215 +285109,27in FHD Monitor,1,149.99,2019-11-18 14:26:00,381 13th St, Seattle,WA,98101 +285110,Vareebadd Phone,1,400.0,2019-11-02 18:52:00,12 Ridge St, New York City,NY,10001 +285111,AAA Batteries (4-pack),1,2.99,2019-11-24 13:16:00,71 Washington St, Dallas,TX,75001 +285112,Lightning Charging Cable,1,14.95,2019-11-06 18:23:00,585 13th St, Boston,MA,02215 +285113,Wired Headphones,1,11.99,2019-11-06 21:38:00,561 Lakeview St, Boston,MA,02215 +285114,USB-C Charging Cable,2,11.95,2019-11-14 11:46:00,559 Cherry St, New York City,NY,10001 +285115,Macbook Pro Laptop,1,1700.0,2019-11-25 15:18:00,88 13th St, Atlanta,GA,30301 +285116,Wired Headphones,1,11.99,2019-11-16 11:15:00,907 Hickory St, Los Angeles,CA,90001 +285117,AAA Batteries (4-pack),2,2.99,2019-11-04 09:11:00,675 Spruce St, Dallas,TX,75001 +285118,Wired Headphones,1,11.99,2019-11-10 22:16:00,442 Park St, Los Angeles,CA,90001 +285119,ThinkPad Laptop,1,999.99,2019-11-24 00:20:00,339 Sunset St, Atlanta,GA,30301 +285120,AA Batteries (4-pack),1,3.84,2019-11-19 16:49:00,94 Jackson St, Atlanta,GA,30301 +285121,USB-C Charging Cable,1,11.95,2019-11-21 21:07:00,533 Church St, San Francisco,CA,94016 +285122,AA Batteries (4-pack),1,3.84,2019-11-24 19:00:00,941 Walnut St, San Francisco,CA,94016 +285122,Wired Headphones,1,11.99,2019-11-24 19:00:00,941 Walnut St, San Francisco,CA,94016 +285123,Apple Airpods Headphones,1,150.0,2019-11-13 13:43:00,382 North St, San Francisco,CA,94016 +285124,Lightning Charging Cable,1,14.95,2019-11-19 13:29:00,444 Hill St, San Francisco,CA,94016 +285125,Lightning Charging Cable,1,14.95,2019-11-01 18:58:00,977 Chestnut St, New York City,NY,10001 +285126,Lightning Charging Cable,1,14.95,2019-11-21 22:05:00,441 13th St, Seattle,WA,98101 +285127,Wired Headphones,1,11.99,2019-11-25 19:30:00,228 2nd St, Seattle,WA,98101 +285128,Apple Airpods Headphones,1,150.0,2019-11-18 22:57:00,716 River St, Dallas,TX,75001 +285129,Apple Airpods Headphones,1,150.0,2019-11-21 08:53:00,364 8th St, Atlanta,GA,30301 +285130,Wired Headphones,1,11.99,2019-11-27 20:51:00,622 Madison St, San Francisco,CA,94016 +285131,Lightning Charging Cable,1,14.95,2019-11-19 18:35:00,774 Church St, Los Angeles,CA,90001 +285132,Wired Headphones,1,11.99,2019-11-16 18:28:00,435 1st St, Dallas,TX,75001 +285133,Bose SoundSport Headphones,1,99.99,2019-11-20 10:02:00,657 2nd St, Seattle,WA,98101 +285134,Macbook Pro Laptop,1,1700.0,2019-11-11 21:29:00,290 2nd St, Austin,TX,73301 +285135,ThinkPad Laptop,1,999.99,2019-11-03 17:56:00,519 7th St, Dallas,TX,75001 +285136,27in FHD Monitor,1,149.99,2019-11-01 13:46:00,484 Sunset St, Atlanta,GA,30301 +285137,iPhone,1,700.0,2019-11-12 10:00:00,685 Sunset St, Austin,TX,73301 +285137,Wired Headphones,1,11.99,2019-11-12 10:00:00,685 Sunset St, Austin,TX,73301 +285138,Bose SoundSport Headphones,1,99.99,2019-11-07 15:29:00,893 North St, Los Angeles,CA,90001 +285139,AAA Batteries (4-pack),1,2.99,2019-11-05 19:13:00,283 Main St, San Francisco,CA,94016 +285140,Wired Headphones,1,11.99,2019-11-12 21:36:00,397 6th St, New York City,NY,10001 +285141,USB-C Charging Cable,1,11.95,2019-11-20 00:07:00,540 7th St, New York City,NY,10001 +285142,iPhone,1,700.0,2019-11-11 22:53:00,911 2nd St, San Francisco,CA,94016 +285143,Google Phone,1,600.0,2019-11-09 19:52:00,471 Jackson St, San Francisco,CA,94016 +285144,LG Dryer,1,600.0,2019-11-17 20:38:00,957 Hickory St, Seattle,WA,98101 +285145,Lightning Charging Cable,1,14.95,2019-11-10 23:05:00,199 5th St, Los Angeles,CA,90001 +285146,AA Batteries (4-pack),1,3.84,2019-11-07 10:10:00,673 Hickory St, San Francisco,CA,94016 +285147,Bose SoundSport Headphones,1,99.99,2019-11-16 01:19:00,662 Chestnut St, San Francisco,CA,94016 +285147,Lightning Charging Cable,1,14.95,2019-11-16 01:19:00,662 Chestnut St, San Francisco,CA,94016 +285148,20in Monitor,1,109.99,2019-11-05 09:38:00,635 9th St, Austin,TX,73301 +285149,27in FHD Monitor,1,149.99,2019-11-10 13:07:00,811 Chestnut St, San Francisco,CA,94016 +285150,USB-C Charging Cable,1,11.95,2019-11-30 12:53:00,402 North St, Portland,OR,97035 +285151,Vareebadd Phone,1,400.0,2019-11-10 17:21:00,196 Madison St, San Francisco,CA,94016 +285152,27in FHD Monitor,1,149.99,2019-11-27 22:20:00,595 Park St, Seattle,WA,98101 +285153,AA Batteries (4-pack),2,3.84,2019-11-19 15:27:00,118 Highland St, Los Angeles,CA,90001 +285154,USB-C Charging Cable,1,11.95,2019-11-01 19:44:00,455 Chestnut St, Atlanta,GA,30301 +285155,USB-C Charging Cable,2,11.95,2019-11-27 22:24:00,94 9th St, Atlanta,GA,30301 +285156,AAA Batteries (4-pack),2,2.99,2019-11-19 19:40:00,565 Lake St, San Francisco,CA,94016 +285157,Apple Airpods Headphones,2,150.0,2019-11-15 14:34:00,427 River St, San Francisco,CA,94016 +285158,AA Batteries (4-pack),2,3.84,2019-11-16 13:56:00,189 Pine St, Seattle,WA,98101 +285159,USB-C Charging Cable,1,11.95,2019-11-16 10:11:00,96 2nd St, Los Angeles,CA,90001 +285160,Bose SoundSport Headphones,1,99.99,2019-11-29 23:45:00,998 Lake St, Seattle,WA,98101 +285161,Apple Airpods Headphones,1,150.0,2019-11-07 13:49:00,945 Highland St, Atlanta,GA,30301 +285162,USB-C Charging Cable,1,11.95,2019-11-04 00:25:00,546 Hill St, Seattle,WA,98101 +285163,Apple Airpods Headphones,1,150.0,2019-11-27 17:23:00,434 Forest St, San Francisco,CA,94016 +285164,20in Monitor,1,109.99,2019-11-19 17:51:00,164 13th St, San Francisco,CA,94016 +285165,Vareebadd Phone,1,400.0,2019-11-10 14:23:00,750 Cedar St, Dallas,TX,75001 +285166,Vareebadd Phone,1,400.0,2019-11-07 16:23:00,144 South St, Atlanta,GA,30301 +285167,AAA Batteries (4-pack),1,2.99,2019-11-13 15:55:00,443 Elm St, New York City,NY,10001 +285168,27in FHD Monitor,1,149.99,2019-11-04 10:11:00,145 Center St, Austin,TX,73301 +285169,AA Batteries (4-pack),1,3.84,2019-11-26 12:20:00,811 Center St, Dallas,TX,75001 +285170,Apple Airpods Headphones,1,150.0,2019-11-21 21:14:00,955 Maple St, New York City,NY,10001 +285171,USB-C Charging Cable,1,11.95,2019-11-07 13:20:00,955 Ridge St, New York City,NY,10001 +285172,27in FHD Monitor,1,149.99,2019-11-28 16:04:00,871 Pine St, Los Angeles,CA,90001 +285173,Lightning Charging Cable,1,14.95,2019-11-05 12:15:00,836 Cherry St, San Francisco,CA,94016 +285174,USB-C Charging Cable,1,11.95,2019-11-25 05:30:00,159 Pine St, Boston,MA,02215 +285175,AA Batteries (4-pack),1,3.84,2019-11-26 16:24:00,807 North St, Los Angeles,CA,90001 +285176,Lightning Charging Cable,1,14.95,2019-11-20 18:28:00,71 Johnson St, Los Angeles,CA,90001 +285177,Flatscreen TV,1,300.0,2019-11-06 16:25:00,346 Spruce St, Atlanta,GA,30301 +285178,Bose SoundSport Headphones,1,99.99,2019-11-24 10:20:00,22 12th St, San Francisco,CA,94016 +285179,iPhone,1,700.0,2019-11-21 16:19:00,715 4th St, Seattle,WA,98101 +285180,27in 4K Gaming Monitor,1,389.99,2019-11-22 02:42:00,602 Madison St, New York City,NY,10001 +285181,Wired Headphones,1,11.99,2019-11-30 20:35:00,375 7th St, Boston,MA,02215 +285182,Bose SoundSport Headphones,1,99.99,2019-11-28 07:03:00,751 Meadow St, San Francisco,CA,94016 +285183,Lightning Charging Cable,1,14.95,2019-11-17 23:37:00,373 6th St, Atlanta,GA,30301 +285184,Apple Airpods Headphones,1,150.0,2019-11-13 19:51:00,408 Washington St, Dallas,TX,75001 +285185,Bose SoundSport Headphones,1,99.99,2019-11-21 20:10:00,485 Willow St, Los Angeles,CA,90001 +285186,Apple Airpods Headphones,1,150.0,2019-11-24 11:09:00,472 Wilson St, Los Angeles,CA,90001 +285187,AA Batteries (4-pack),1,3.84,2019-11-17 19:28:00,50 10th St, Atlanta,GA,30301 +285188,iPhone,1,700.0,2019-11-21 13:21:00,222 4th St, San Francisco,CA,94016 +285189,Lightning Charging Cable,1,14.95,2019-11-11 15:46:00,779 Madison St, Portland,ME,04101 +285190,Wired Headphones,1,11.99,2019-11-28 10:22:00,58 Pine St, San Francisco,CA,94016 +285191,Apple Airpods Headphones,1,150.0,2019-11-19 13:29:00,329 6th St, Los Angeles,CA,90001 +285192,AAA Batteries (4-pack),1,2.99,2019-11-29 15:56:00,944 Pine St, Los Angeles,CA,90001 +285193,USB-C Charging Cable,1,11.95,2019-11-01 21:52:00,357 Cedar St, San Francisco,CA,94016 +285194,AA Batteries (4-pack),1,3.84,2019-11-02 20:44:00,804 Walnut St, Dallas,TX,75001 +285195,Wired Headphones,1,11.99,2019-11-14 19:43:00,131 Lakeview St, Seattle,WA,98101 +285196,AA Batteries (4-pack),1,3.84,2019-11-06 21:09:00,907 13th St, Seattle,WA,98101 +285197,USB-C Charging Cable,1,11.95,2019-11-18 16:26:00,117 Main St, Atlanta,GA,30301 +285198,AA Batteries (4-pack),1,3.84,2019-11-12 23:16:00,956 Dogwood St, San Francisco,CA,94016 +285199,iPhone,1,700.0,2019-11-06 20:08:00,749 Hill St, Los Angeles,CA,90001 +285200,Macbook Pro Laptop,1,1700.0,2019-11-22 16:35:00,60 Adams St, Los Angeles,CA,90001 +285201,20in Monitor,1,109.99,2019-11-12 18:35:00,193 Ridge St, Los Angeles,CA,90001 +285202,AAA Batteries (4-pack),1,2.99,2019-11-26 13:11:00,630 River St, Austin,TX,73301 +285203,Wired Headphones,1,11.99,2019-11-13 15:35:00,835 Church St, San Francisco,CA,94016 +285204,Vareebadd Phone,1,400.0,2019-11-27 15:51:00,56 Wilson St, Los Angeles,CA,90001 +285205,Apple Airpods Headphones,1,150.0,2019-11-27 20:49:00,793 13th St, New York City,NY,10001 +285206,AAA Batteries (4-pack),2,2.99,2019-11-10 22:45:00,26 Lakeview St, New York City,NY,10001 +285207,Wired Headphones,1,11.99,2019-11-27 01:56:00,728 6th St, Portland,ME,04101 +285208,Google Phone,1,600.0,2019-11-21 13:49:00,326 Jackson St, San Francisco,CA,94016 +285209,Macbook Pro Laptop,1,1700.0,2019-11-23 22:39:00,432 Sunset St, Seattle,WA,98101 +285210,27in FHD Monitor,1,149.99,2019-11-02 21:34:00,897 1st St, San Francisco,CA,94016 +285211,Lightning Charging Cable,1,14.95,2019-11-18 11:09:00,541 Jefferson St, Los Angeles,CA,90001 +285212,AAA Batteries (4-pack),1,2.99,2019-11-25 12:43:00,501 Hill St, Portland,OR,97035 +285213,ThinkPad Laptop,1,999.99,2019-11-08 17:37:00,163 Forest St, New York City,NY,10001 +285214,ThinkPad Laptop,1,999.99,2019-11-11 17:34:00,12 Walnut St, San Francisco,CA,94016 +285215,Apple Airpods Headphones,1,150.0,2019-11-14 06:34:00,986 River St, Austin,TX,73301 +285216,Wired Headphones,1,11.99,2019-11-29 14:10:00,258 Lake St, Los Angeles,CA,90001 +285217,USB-C Charging Cable,1,11.95,2019-11-25 12:08:00,650 Forest St, Boston,MA,02215 +285218,AAA Batteries (4-pack),1,2.99,2019-11-06 04:14:00,267 Cedar St, New York City,NY,10001 +285219,27in FHD Monitor,1,149.99,2019-11-03 09:35:00,346 Cherry St, Portland,OR,97035 +285220,AAA Batteries (4-pack),1,2.99,2019-11-27 17:09:00,950 11th St, Atlanta,GA,30301 +285221,AAA Batteries (4-pack),1,2.99,2019-11-01 13:11:00,487 Meadow St, Portland,OR,97035 +285222,ThinkPad Laptop,1,999.99,2019-11-25 07:18:00,977 Hill St, San Francisco,CA,94016 +285223,AAA Batteries (4-pack),1,2.99,2019-11-29 18:44:00,572 4th St, Los Angeles,CA,90001 +285224,AAA Batteries (4-pack),1,2.99,2019-11-02 07:24:00,759 Willow St, Dallas,TX,75001 +285225,Lightning Charging Cable,1,14.95,2019-11-01 17:08:00,999 4th St, San Francisco,CA,94016 +285226,AA Batteries (4-pack),1,3.84,2019-11-19 11:59:00,490 Jefferson St, Dallas,TX,75001 +285227,iPhone,1,700.0,2019-11-20 12:27:00,189 8th St, Portland,ME,04101 +285228,27in 4K Gaming Monitor,1,389.99,2019-11-24 12:25:00,288 Johnson St, New York City,NY,10001 +285229,AAA Batteries (4-pack),1,2.99,2019-11-06 13:14:00,984 Sunset St, Seattle,WA,98101 +285230,34in Ultrawide Monitor,1,379.99,2019-11-13 10:03:00,184 Pine St, San Francisco,CA,94016 +285231,Flatscreen TV,1,300.0,2019-11-29 11:53:00,42 9th St, San Francisco,CA,94016 +285232,Wired Headphones,1,11.99,2019-11-14 17:05:00,188 13th St, Boston,MA,02215 +285233,AA Batteries (4-pack),1,3.84,2019-11-07 10:22:00,160 6th St, New York City,NY,10001 +285234,Bose SoundSport Headphones,1,99.99,2019-11-15 14:56:00,545 Madison St, San Francisco,CA,94016 +285235,AA Batteries (4-pack),1,3.84,2019-11-21 15:16:00,818 North St, Atlanta,GA,30301 +285236,Wired Headphones,2,11.99,2019-11-02 20:13:00,5 North St, Los Angeles,CA,90001 +285237,AA Batteries (4-pack),3,3.84,2019-11-11 16:16:00,617 Lakeview St, New York City,NY,10001 +285238,Google Phone,1,600.0,2019-11-17 01:43:00,517 13th St, Los Angeles,CA,90001 +285239,AA Batteries (4-pack),2,3.84,2019-11-07 18:54:00,501 Lincoln St, San Francisco,CA,94016 +285240,USB-C Charging Cable,1,11.95,2019-11-27 01:28:00,763 Lincoln St, Boston,MA,02215 +285241,Apple Airpods Headphones,1,150.0,2019-11-27 08:08:00,858 Park St, Seattle,WA,98101 +285242,iPhone,1,700.0,2019-11-04 14:33:00,1 Wilson St, San Francisco,CA,94016 +285243,AAA Batteries (4-pack),1,2.99,2019-11-25 17:50:00,18 Forest St, Dallas,TX,75001 +285244,Wired Headphones,1,11.99,2019-11-03 18:12:00,192 Chestnut St, New York City,NY,10001 +285245,Lightning Charging Cable,1,14.95,2019-11-04 05:19:00,545 Dogwood St, Los Angeles,CA,90001 +285246,iPhone,1,700.0,2019-11-25 20:16:00,541 Hill St, Atlanta,GA,30301 +285247,Bose SoundSport Headphones,1,99.99,2019-11-25 13:39:00,211 1st St, Atlanta,GA,30301 +285247,Lightning Charging Cable,1,14.95,2019-11-25 13:39:00,211 1st St, Atlanta,GA,30301 +285248,20in Monitor,1,109.99,2019-11-28 11:43:00,648 Church St, New York City,NY,10001 +285249,USB-C Charging Cable,1,11.95,2019-11-25 05:35:00,198 Adams St, Boston,MA,02215 +285250,AA Batteries (4-pack),1,3.84,2019-11-17 13:43:00,897 West St, Los Angeles,CA,90001 +285251,AA Batteries (4-pack),1,3.84,2019-11-19 21:00:00,386 Ridge St, Austin,TX,73301 +285252,AAA Batteries (4-pack),1,2.99,2019-11-29 19:22:00,804 Jefferson St, Seattle,WA,98101 +285253,Lightning Charging Cable,2,14.95,2019-11-17 17:34:00,653 Lincoln St, Dallas,TX,75001 +285254,Apple Airpods Headphones,1,150.0,2019-11-26 23:50:00,863 Johnson St, Dallas,TX,75001 +285255,Wired Headphones,1,11.99,2019-11-30 20:40:00,163 Meadow St, San Francisco,CA,94016 +285256,USB-C Charging Cable,1,11.95,2019-11-01 22:20:00,292 Cherry St, San Francisco,CA,94016 +285257,AAA Batteries (4-pack),1,2.99,2019-11-14 14:50:00,226 11th St, Boston,MA,02215 +285258,Apple Airpods Headphones,1,150.0,2019-11-25 07:44:00,143 Center St, Los Angeles,CA,90001 +285259,Macbook Pro Laptop,1,1700.0,2019-11-16 16:02:00,348 Johnson St, San Francisco,CA,94016 +285260,Wired Headphones,1,11.99,2019-11-29 23:50:00,187 8th St, New York City,NY,10001 +285261,AA Batteries (4-pack),1,3.84,2019-11-12 14:07:00,65 Elm St, Dallas,TX,75001 +285262,Google Phone,1,600.0,2019-11-24 20:42:00,629 8th St, San Francisco,CA,94016 +285263,AA Batteries (4-pack),1,3.84,2019-11-11 17:48:00,169 Jefferson St, Austin,TX,73301 +285264,AA Batteries (4-pack),2,3.84,2019-11-23 23:54:00,23 4th St, Seattle,WA,98101 +285265,20in Monitor,1,109.99,2019-11-16 13:06:00,918 North St, Dallas,TX,75001 +285266,iPhone,1,700.0,2019-11-22 11:57:00,138 6th St, Los Angeles,CA,90001 +285267,AA Batteries (4-pack),3,3.84,2019-11-06 17:52:00,898 1st St, Los Angeles,CA,90001 +285268,Bose SoundSport Headphones,1,99.99,2019-11-19 09:57:00,493 13th St, Seattle,WA,98101 +285269,27in FHD Monitor,2,149.99,2019-11-02 11:46:00,402 Sunset St, New York City,NY,10001 +285270,AAA Batteries (4-pack),1,2.99,2019-11-03 17:59:00,192 Pine St, San Francisco,CA,94016 +285271,Apple Airpods Headphones,1,150.0,2019-11-13 12:41:00,177 Spruce St, Dallas,TX,75001 +285272,USB-C Charging Cable,1,11.95,2019-11-02 19:33:00,104 Highland St, San Francisco,CA,94016 +285273,AAA Batteries (4-pack),2,2.99,2019-11-28 10:46:00,494 Spruce St, Boston,MA,02215 +285274,Wired Headphones,1,11.99,2019-11-06 09:02:00,574 Highland St, New York City,NY,10001 +285275,27in 4K Gaming Monitor,1,389.99,2019-11-10 20:55:00,914 Lakeview St, Austin,TX,73301 +285276,AA Batteries (4-pack),1,3.84,2019-11-21 19:09:00,112 West St, Boston,MA,02215 +285277,AAA Batteries (4-pack),2,2.99,2019-11-12 09:55:00,684 10th St, Boston,MA,02215 +285278,USB-C Charging Cable,1,11.95,2019-11-05 14:47:00,851 14th St, Seattle,WA,98101 +285279,AA Batteries (4-pack),1,3.84,2019-11-07 10:01:00,573 Jackson St, Austin,TX,73301 +285280,AA Batteries (4-pack),1,3.84,2019-11-30 13:11:00,137 Forest St, Los Angeles,CA,90001 +285281,USB-C Charging Cable,1,11.95,2019-11-08 13:05:00,168 Dogwood St, Boston,MA,02215 +285282,USB-C Charging Cable,1,11.95,2019-11-24 13:11:00,91 Spruce St, Seattle,WA,98101 +285283,Wired Headphones,1,11.99,2019-11-14 18:40:00,159 Church St, New York City,NY,10001 +285284,AA Batteries (4-pack),1,3.84,2019-11-14 08:59:00,52 6th St, San Francisco,CA,94016 +285285,Macbook Pro Laptop,1,1700.0,2019-11-14 10:13:00,659 Madison St, Portland,OR,97035 +285286,Lightning Charging Cable,1,14.95,2019-11-14 08:38:00,618 Center St, Atlanta,GA,30301 +285287,AAA Batteries (4-pack),1,2.99,2019-11-07 20:02:00,444 Madison St, Los Angeles,CA,90001 +285288,Wired Headphones,1,11.99,2019-11-04 09:28:00,174 Forest St, Los Angeles,CA,90001 +285289,AAA Batteries (4-pack),2,2.99,2019-11-15 17:22:00,984 Pine St, San Francisco,CA,94016 +285290,ThinkPad Laptop,1,999.99,2019-11-15 12:15:00,870 7th St, New York City,NY,10001 +285291,Apple Airpods Headphones,1,150.0,2019-11-29 11:34:00,13 Hickory St, Seattle,WA,98101 +285292,ThinkPad Laptop,1,999.99,2019-11-01 18:35:00,846 North St, San Francisco,CA,94016 +285293,Apple Airpods Headphones,1,150.0,2019-11-24 19:20:00,313 Cherry St, San Francisco,CA,94016 +285294,Wired Headphones,1,11.99,2019-11-17 12:08:00,706 Forest St, New York City,NY,10001 +285295,Apple Airpods Headphones,1,150.0,2019-11-05 22:13:00,723 Highland St, San Francisco,CA,94016 +285296,AA Batteries (4-pack),1,3.84,2019-11-21 10:57:00,349 North St, San Francisco,CA,94016 +285297,27in FHD Monitor,1,149.99,2019-11-11 00:48:00,486 Lakeview St, Los Angeles,CA,90001 +285298,AAA Batteries (4-pack),1,2.99,2019-11-09 09:05:00,738 River St, Seattle,WA,98101 +285299,Macbook Pro Laptop,1,1700.0,2019-11-24 15:20:00,566 Walnut St, San Francisco,CA,94016 +285300,Wired Headphones,1,11.99,2019-11-21 23:58:00,400 Cedar St, Seattle,WA,98101 +285301,iPhone,1,700.0,2019-11-23 19:14:00,252 11th St, New York City,NY,10001 +285301,Lightning Charging Cable,1,14.95,2019-11-23 19:14:00,252 11th St, New York City,NY,10001 +285302,Apple Airpods Headphones,1,150.0,2019-11-01 12:04:00,631 5th St, Boston,MA,02215 +285303,Lightning Charging Cable,3,14.95,2019-11-10 14:01:00,193 11th St, San Francisco,CA,94016 +285304,ThinkPad Laptop,1,999.99,2019-11-24 19:47:00,108 Pine St, San Francisco,CA,94016 +285305,Flatscreen TV,1,300.0,2019-11-07 07:28:00,441 River St, Seattle,WA,98101 +285306,AA Batteries (4-pack),4,3.84,2019-11-27 18:25:00,608 9th St, Atlanta,GA,30301 +285307,Apple Airpods Headphones,1,150.0,2019-11-14 17:42:00,553 Chestnut St, Los Angeles,CA,90001 +285308,AA Batteries (4-pack),2,3.84,2019-11-26 11:36:00,742 4th St, San Francisco,CA,94016 +285309,AA Batteries (4-pack),1,3.84,2019-11-25 15:58:00,298 Johnson St, New York City,NY,10001 +285310,Flatscreen TV,1,300.0,2019-11-23 13:22:00,430 Main St, Los Angeles,CA,90001 +285311,Lightning Charging Cable,1,14.95,2019-11-10 08:06:00,915 12th St, Portland,OR,97035 +285312,ThinkPad Laptop,1,999.99,2019-11-30 19:58:00,954 Walnut St, Boston,MA,02215 +285313,Wired Headphones,1,11.99,2019-11-07 13:20:00,795 Walnut St, San Francisco,CA,94016 +285314,Wired Headphones,1,11.99,2019-11-10 20:16:00,721 Cherry St, Atlanta,GA,30301 +285315,Google Phone,1,600.0,2019-11-18 12:36:00,111 Maple St, Seattle,WA,98101 +285316,AAA Batteries (4-pack),1,2.99,2019-11-12 01:41:00,595 9th St, Dallas,TX,75001 +285317,AA Batteries (4-pack),3,3.84,2019-11-01 10:28:00,218 7th St, San Francisco,CA,94016 +285318,Bose SoundSport Headphones,1,99.99,2019-11-04 17:11:00,587 Cedar St, Portland,OR,97035 +285319,Bose SoundSport Headphones,1,99.99,2019-11-15 15:30:00,117 13th St, San Francisco,CA,94016 +285320,USB-C Charging Cable,2,11.95,2019-11-24 11:03:00,253 Highland St, Atlanta,GA,30301 +285321,USB-C Charging Cable,1,11.95,2019-11-01 12:23:00,312 12th St, San Francisco,CA,94016 +285322,USB-C Charging Cable,1,11.95,2019-11-07 22:06:00,167 9th St, Portland,OR,97035 +285323,AA Batteries (4-pack),1,3.84,2019-11-17 19:55:00,45 Willow St, New York City,NY,10001 +285324,USB-C Charging Cable,1,11.95,2019-11-12 22:11:00,688 Meadow St, Portland,OR,97035 +285325,USB-C Charging Cable,1,11.95,2019-11-16 18:53:00,813 6th St, San Francisco,CA,94016 +285326,34in Ultrawide Monitor,1,379.99,2019-11-04 12:04:00,471 Johnson St, San Francisco,CA,94016 +285327,AAA Batteries (4-pack),1,2.99,2019-11-25 21:20:00,545 Highland St, New York City,NY,10001 +285328,Lightning Charging Cable,1,14.95,2019-11-05 23:13:00,144 River St, New York City,NY,10001 +285329,27in 4K Gaming Monitor,1,389.99,2019-11-29 09:37:00,783 Spruce St, Los Angeles,CA,90001 +285330,34in Ultrawide Monitor,1,379.99,2019-11-03 11:22:00,909 Cherry St, New York City,NY,10001 +285331,ThinkPad Laptop,1,999.99,2019-11-23 11:15:00,829 11th St, Austin,TX,73301 +285332,USB-C Charging Cable,1,11.95,2019-11-30 07:16:00,661 Main St, Atlanta,GA,30301 +285333,AA Batteries (4-pack),1,3.84,2019-11-03 00:54:00,415 Adams St, Seattle,WA,98101 +285334,Wired Headphones,1,11.99,2019-11-30 10:15:00,679 10th St, Los Angeles,CA,90001 +285335,USB-C Charging Cable,1,11.95,2019-11-01 20:24:00,980 6th St, San Francisco,CA,94016 +285336,AAA Batteries (4-pack),3,2.99,2019-11-17 22:31:00,384 Hickory St, Los Angeles,CA,90001 +285337,Lightning Charging Cable,1,14.95,2019-11-28 15:55:00,347 13th St, Portland,OR,97035 +285338,Lightning Charging Cable,1,14.95,2019-11-20 18:10:00,124 Johnson St, Los Angeles,CA,90001 +285339,27in 4K Gaming Monitor,1,389.99,2019-11-13 10:59:00,345 River St, San Francisco,CA,94016 +285340,Bose SoundSport Headphones,1,99.99,2019-11-01 12:55:00,336 8th St, San Francisco,CA,94016 +285341,AA Batteries (4-pack),3,3.84,2019-11-21 20:39:00,772 Jefferson St, Dallas,TX,75001 +285342,Lightning Charging Cable,1,14.95,2019-11-13 09:00:00,658 8th St, San Francisco,CA,94016 +285343,Wired Headphones,1,11.99,2019-11-25 13:53:00,70 Johnson St, Los Angeles,CA,90001 +285344,Wired Headphones,1,11.99,2019-11-29 16:17:00,477 South St, Seattle,WA,98101 +285345,AAA Batteries (4-pack),2,2.99,2019-11-07 11:34:00,279 Elm St, New York City,NY,10001 +285346,AA Batteries (4-pack),1,3.84,2019-11-10 16:20:00,567 1st St, Los Angeles,CA,90001 +285347,27in FHD Monitor,1,149.99,2019-11-01 13:17:00,229 Lake St, New York City,NY,10001 +285348,ThinkPad Laptop,1,999.99,2019-11-04 14:06:00,727 8th St, Los Angeles,CA,90001 +285349,34in Ultrawide Monitor,1,379.99,2019-11-08 13:22:00,51 Madison St, Dallas,TX,75001 +285350,27in FHD Monitor,1,149.99,2019-11-17 10:33:00,810 10th St, San Francisco,CA,94016 +285351,Wired Headphones,1,11.99,2019-11-17 19:45:00,226 Highland St, Los Angeles,CA,90001 +285352,AAA Batteries (4-pack),2,2.99,2019-11-06 22:09:00,325 5th St, Dallas,TX,75001 +285353,27in FHD Monitor,1,149.99,2019-11-06 08:13:00,755 Church St, San Francisco,CA,94016 +285354,USB-C Charging Cable,1,11.95,2019-11-14 20:48:00,152 6th St, New York City,NY,10001 +285355,ThinkPad Laptop,1,999.99,2019-11-25 22:08:00,64 Maple St, Austin,TX,73301 +285356,Lightning Charging Cable,1,14.95,2019-11-16 01:33:00,627 Wilson St, New York City,NY,10001 +285357,USB-C Charging Cable,1,11.95,2019-11-30 19:35:00,66 14th St, San Francisco,CA,94016 +285358,AA Batteries (4-pack),1,3.84,2019-11-18 02:40:00,670 Madison St, Dallas,TX,75001 +285359,27in 4K Gaming Monitor,1,389.99,2019-11-15 16:38:00,578 4th St, Seattle,WA,98101 +285360,AA Batteries (4-pack),1,3.84,2019-11-02 12:37:00,366 Cherry St, New York City,NY,10001 +285361,Wired Headphones,1,11.99,2019-11-12 16:09:00,110 Highland St, Portland,OR,97035 +285362,AAA Batteries (4-pack),1,2.99,2019-11-12 18:46:00,223 Lincoln St, San Francisco,CA,94016 +285363,Flatscreen TV,1,300.0,2019-11-20 21:15:00,196 Madison St, San Francisco,CA,94016 +285364,Macbook Pro Laptop,1,1700.0,2019-11-27 17:37:00,875 2nd St, San Francisco,CA,94016 +285365,AA Batteries (4-pack),2,3.84,2019-11-14 23:34:00,96 Ridge St, Atlanta,GA,30301 +285366,34in Ultrawide Monitor,1,379.99,2019-11-30 16:40:00,530 Washington St, Los Angeles,CA,90001 +285367,Flatscreen TV,1,300.0,2019-11-28 09:10:00,200 Hill St, Atlanta,GA,30301 +285368,Wired Headphones,1,11.99,2019-11-03 14:30:00,759 Main St, New York City,NY,10001 +285369,Macbook Pro Laptop,1,1700.0,2019-11-12 10:44:00,709 Main St, San Francisco,CA,94016 +285370,AAA Batteries (4-pack),3,2.99,2019-11-21 16:32:00,571 Lincoln St, San Francisco,CA,94016 +285371,AA Batteries (4-pack),1,3.84,2019-11-15 16:29:00,240 Main St, Dallas,TX,75001 +285372,AAA Batteries (4-pack),1,2.99,2019-11-29 10:03:00,305 South St, Boston,MA,02215 +285373,USB-C Charging Cable,1,11.95,2019-11-08 12:20:00,254 Hickory St, Los Angeles,CA,90001 +285374,Wired Headphones,1,11.99,2019-11-24 17:18:00,925 North St, Atlanta,GA,30301 +285375,Lightning Charging Cable,1,14.95,2019-11-18 16:52:00,392 9th St, Austin,TX,73301 +285376,27in 4K Gaming Monitor,1,389.99,2019-11-03 14:04:00,428 North St, San Francisco,CA,94016 +285377,AAA Batteries (4-pack),2,2.99,2019-11-21 14:32:00,154 South St, Boston,MA,02215 +285378,AA Batteries (4-pack),2,3.84,2019-11-11 20:20:00,485 Elm St, Boston,MA,02215 +285379,AA Batteries (4-pack),1,3.84,2019-11-16 21:31:00,233 Willow St, Atlanta,GA,30301 +285380,Apple Airpods Headphones,1,150.0,2019-11-02 15:51:00,887 10th St, Dallas,TX,75001 +285381,34in Ultrawide Monitor,1,379.99,2019-11-13 15:13:00,371 Jackson St, Austin,TX,73301 +285382,34in Ultrawide Monitor,1,379.99,2019-11-19 10:20:00,313 13th St, San Francisco,CA,94016 +285383,AAA Batteries (4-pack),2,2.99,2019-11-19 13:54:00,274 Dogwood St, San Francisco,CA,94016 +285384,iPhone,1,700.0,2019-11-25 20:49:00,843 5th St, New York City,NY,10001 +285385,Bose SoundSport Headphones,1,99.99,2019-11-05 12:00:00,103 Forest St, San Francisco,CA,94016 +285386,Google Phone,1,600.0,2019-11-18 15:33:00,399 Adams St, Dallas,TX,75001 +285387,AAA Batteries (4-pack),1,2.99,2019-11-04 23:57:00,176 Elm St, San Francisco,CA,94016 +285388,34in Ultrawide Monitor,1,379.99,2019-11-27 13:26:00,531 Madison St, San Francisco,CA,94016 +285389,Macbook Pro Laptop,1,1700.0,2019-11-21 11:35:00,480 Hill St, Boston,MA,02215 +285390,Google Phone,1,600.0,2019-11-28 09:28:00,759 Cherry St, Portland,OR,97035 +285391,Flatscreen TV,1,300.0,2019-11-14 11:31:00,135 Walnut St, Dallas,TX,75001 +285392,AAA Batteries (4-pack),2,2.99,2019-11-12 14:16:00,264 8th St, Atlanta,GA,30301 +285393,USB-C Charging Cable,2,11.95,2019-11-17 13:25:00,874 Lakeview St, Los Angeles,CA,90001 +285394,USB-C Charging Cable,1,11.95,2019-11-20 21:53:00,286 Lake St, Seattle,WA,98101 +285395,Lightning Charging Cable,1,14.95,2019-11-29 09:44:00,560 Sunset St, Los Angeles,CA,90001 +285396,iPhone,1,700.0,2019-11-12 02:58:00,253 Meadow St, Boston,MA,02215 +285397,USB-C Charging Cable,1,11.95,2019-11-21 16:48:00,771 9th St, San Francisco,CA,94016 +285398,Wired Headphones,1,11.99,2019-11-09 19:49:00,202 South St, San Francisco,CA,94016 +285399,Lightning Charging Cable,1,14.95,2019-11-29 06:51:00,495 Washington St, Atlanta,GA,30301 +285400,Apple Airpods Headphones,1,150.0,2019-11-02 17:54:00,494 4th St, Dallas,TX,75001 +285401,Bose SoundSport Headphones,1,99.99,2019-11-07 08:42:00,426 1st St, Boston,MA,02215 +285402,AA Batteries (4-pack),1,3.84,2019-11-28 19:02:00,664 Sunset St, Austin,TX,73301 +285403,Lightning Charging Cable,1,14.95,2019-11-03 19:52:00,520 14th St, Portland,OR,97035 +285404,27in FHD Monitor,1,149.99,2019-11-09 19:15:00,18 Adams St, Seattle,WA,98101 +285405,Bose SoundSport Headphones,1,99.99,2019-11-15 12:16:00,640 Center St, San Francisco,CA,94016 +285406,USB-C Charging Cable,1,11.95,2019-11-09 17:15:00,261 Washington St, Los Angeles,CA,90001 +285407,AAA Batteries (4-pack),1,2.99,2019-11-20 14:22:00,928 South St, Seattle,WA,98101 +285408,USB-C Charging Cable,1,11.95,2019-11-18 22:49:00,314 North St, Los Angeles,CA,90001 +285409,Flatscreen TV,1,300.0,2019-11-19 14:35:00,908 Center St, Dallas,TX,75001 +285410,AA Batteries (4-pack),1,3.84,2019-11-15 17:16:00,265 Main St, New York City,NY,10001 +285411,27in FHD Monitor,1,149.99,2019-11-20 19:04:00,196 8th St, Los Angeles,CA,90001 +285412,AA Batteries (4-pack),1,3.84,2019-11-27 07:23:00,607 Sunset St, Dallas,TX,75001 +285413,USB-C Charging Cable,1,11.95,2019-11-06 08:08:00,702 Jefferson St, Los Angeles,CA,90001 +285414,iPhone,1,700.0,2019-11-11 22:32:00,179 2nd St, Boston,MA,02215 +285415,20in Monitor,1,109.99,2019-11-07 21:42:00,740 12th St, San Francisco,CA,94016 +285416,Wired Headphones,1,11.99,2019-11-23 19:52:00,571 Spruce St, New York City,NY,10001 +285417,USB-C Charging Cable,1,11.95,2019-11-18 18:07:00,755 Chestnut St, San Francisco,CA,94016 +285418,Bose SoundSport Headphones,1,99.99,2019-11-26 20:17:00,591 Hickory St, San Francisco,CA,94016 +285419,20in Monitor,1,109.99,2019-11-21 20:11:00,417 11th St, San Francisco,CA,94016 +285420,Wired Headphones,1,11.99,2019-11-13 12:08:00,176 14th St, Boston,MA,02215 +285421,Wired Headphones,2,11.99,2019-11-08 03:56:00,987 River St, New York City,NY,10001 +285422,Lightning Charging Cable,1,14.95,2019-11-13 08:59:00,562 Lincoln St, New York City,NY,10001 +285423,Wired Headphones,1,11.99,2019-11-27 15:55:00,122 Lincoln St, Seattle,WA,98101 +285424,USB-C Charging Cable,1,11.95,2019-11-13 09:17:00,697 Spruce St, Dallas,TX,75001 +285425,Lightning Charging Cable,1,14.95,2019-11-06 20:06:00,501 11th St, Seattle,WA,98101 +285426,Lightning Charging Cable,1,14.95,2019-11-26 22:29:00,213 Jefferson St, Atlanta,GA,30301 +285427,27in 4K Gaming Monitor,1,389.99,2019-11-19 17:16:00,26 Pine St, Atlanta,GA,30301 +285428,Lightning Charging Cable,1,14.95,2019-11-27 13:06:00,60 Pine St, San Francisco,CA,94016 +285429,USB-C Charging Cable,1,11.95,2019-11-20 14:34:00,914 Spruce St, New York City,NY,10001 +285430,Lightning Charging Cable,1,14.95,2019-11-01 18:38:00,679 Maple St, San Francisco,CA,94016 +285431,Lightning Charging Cable,1,14.95,2019-11-29 11:50:00,398 Park St, New York City,NY,10001 +285431,AA Batteries (4-pack),1,3.84,2019-11-29 11:50:00,398 Park St, New York City,NY,10001 +285432,Lightning Charging Cable,1,14.95,2019-11-13 16:49:00,223 Willow St, Dallas,TX,75001 +285433,Vareebadd Phone,1,400.0,2019-11-23 02:04:00,76 North St, Los Angeles,CA,90001 +285434,AA Batteries (4-pack),2,3.84,2019-11-22 20:53:00,951 Sunset St, Los Angeles,CA,90001 +285435,Lightning Charging Cable,1,14.95,2019-11-04 16:52:00,333 12th St, Los Angeles,CA,90001 +285436,Lightning Charging Cable,1,14.95,2019-11-28 14:49:00,602 Hill St, Portland,OR,97035 +285437,AAA Batteries (4-pack),1,2.99,2019-11-25 20:39:00,39 Chestnut St, New York City,NY,10001 +285438,34in Ultrawide Monitor,1,379.99,2019-11-26 10:06:00,663 Cherry St, New York City,NY,10001 +285439,Lightning Charging Cable,1,14.95,2019-11-29 06:36:00,392 11th St, Los Angeles,CA,90001 +285440,AA Batteries (4-pack),1,3.84,2019-11-09 21:52:00,857 Park St, Los Angeles,CA,90001 +285441,Bose SoundSport Headphones,1,99.99,2019-11-28 08:19:00,924 West St, Dallas,TX,75001 +285442,27in FHD Monitor,1,149.99,2019-11-27 16:15:00,387 Church St, Boston,MA,02215 +285443,Vareebadd Phone,1,400.0,2019-11-17 17:00:00,864 Johnson St, Portland,OR,97035 +285444,Bose SoundSport Headphones,1,99.99,2019-11-20 16:42:00,142 12th St, Boston,MA,02215 +285445,Lightning Charging Cable,2,14.95,2019-11-19 23:49:00,79 River St, Dallas,TX,75001 +285446,Apple Airpods Headphones,1,150.0,2019-11-02 20:44:00,211 North St, Dallas,TX,75001 +285447,Lightning Charging Cable,2,14.95,2019-11-07 18:59:00,328 7th St, Boston,MA,02215 +285448,ThinkPad Laptop,1,999.99,2019-11-28 21:53:00,758 10th St, New York City,NY,10001 +285449,AA Batteries (4-pack),1,3.84,2019-11-18 15:50:00,684 Ridge St, Los Angeles,CA,90001 +285450,34in Ultrawide Monitor,1,379.99,2019-11-16 18:25:00,483 Wilson St, Portland,OR,97035 +285451,iPhone,1,700.0,2019-11-02 14:05:00,132 Church St, Portland,OR,97035 +285452,27in 4K Gaming Monitor,1,389.99,2019-11-14 20:12:00,211 Wilson St, Boston,MA,02215 +285452,Wired Headphones,1,11.99,2019-11-14 20:12:00,211 Wilson St, Boston,MA,02215 +285453,20in Monitor,1,109.99,2019-11-02 10:51:00,292 Cherry St, San Francisco,CA,94016 +285454,Lightning Charging Cable,1,14.95,2019-11-28 20:33:00,798 12th St, Los Angeles,CA,90001 +285455,20in Monitor,1,109.99,2019-11-04 16:15:00,250 Cedar St, Seattle,WA,98101 +285456,20in Monitor,1,109.99,2019-11-11 16:32:00,453 Center St, San Francisco,CA,94016 +285457,AAA Batteries (4-pack),1,2.99,2019-11-30 01:20:00,202 Lake St, Los Angeles,CA,90001 +285458,AA Batteries (4-pack),2,3.84,2019-11-07 17:16:00,154 Walnut St, Portland,OR,97035 +285459,Vareebadd Phone,1,400.0,2019-11-11 14:29:00,155 Madison St, San Francisco,CA,94016 +285460,Macbook Pro Laptop,1,1700.0,2019-11-25 13:19:00,430 Lake St, Seattle,WA,98101 +285461,Lightning Charging Cable,1,14.95,2019-11-23 12:21:00,13 Lakeview St, San Francisco,CA,94016 +285462,AAA Batteries (4-pack),1,2.99,2019-11-06 14:06:00,861 Elm St, Los Angeles,CA,90001 +285463,Bose SoundSport Headphones,1,99.99,2019-11-09 12:02:00,167 5th St, Boston,MA,02215 +285464,Macbook Pro Laptop,1,1700.0,2019-11-28 07:17:00,56 Spruce St, San Francisco,CA,94016 +285465,AAA Batteries (4-pack),4,2.99,2019-11-18 12:47:00,822 2nd St, Portland,OR,97035 +285466,Wired Headphones,1,11.99,2019-11-16 22:35:00,485 Adams St, Los Angeles,CA,90001 +285467,27in FHD Monitor,1,149.99,2019-11-22 19:31:00,420 Maple St, San Francisco,CA,94016 +285468,Lightning Charging Cable,2,14.95,2019-11-29 18:42:00,63 Sunset St, Boston,MA,02215 +285469,Google Phone,1,600.0,2019-11-25 11:18:00,820 7th St, Boston,MA,02215 +285470,Lightning Charging Cable,2,14.95,2019-11-01 12:39:00,513 1st St, New York City,NY,10001 +285471,USB-C Charging Cable,1,11.95,2019-11-28 09:35:00,156 14th St, Boston,MA,02215 +285472,Lightning Charging Cable,1,14.95,2019-11-09 14:10:00,119 Johnson St, Dallas,TX,75001 +285472,ThinkPad Laptop,1,999.99,2019-11-09 14:10:00,119 Johnson St, Dallas,TX,75001 +285473,AA Batteries (4-pack),1,3.84,2019-11-08 22:21:00,798 Elm St, Austin,TX,73301 +285474,AAA Batteries (4-pack),2,2.99,2019-11-21 20:14:00,597 5th St, New York City,NY,10001 +285475,AAA Batteries (4-pack),4,2.99,2019-11-03 18:06:00,411 Highland St, San Francisco,CA,94016 +285476,Wired Headphones,1,11.99,2019-11-08 07:21:00,700 Meadow St, Portland,OR,97035 +285477,AAA Batteries (4-pack),1,2.99,2019-11-04 23:45:00,762 Elm St, Dallas,TX,75001 +285478,AAA Batteries (4-pack),2,2.99,2019-11-12 19:55:00,440 14th St, Seattle,WA,98101 +285479,Bose SoundSport Headphones,1,99.99,2019-11-03 00:30:00,491 13th St, Los Angeles,CA,90001 +285480,AA Batteries (4-pack),2,3.84,2019-11-22 00:19:00,309 Highland St, Atlanta,GA,30301 +285481,Apple Airpods Headphones,1,150.0,2019-11-27 11:00:00,16 Walnut St, San Francisco,CA,94016 +285482,Apple Airpods Headphones,1,150.0,2019-11-24 16:58:00,818 Pine St, Los Angeles,CA,90001 +285483,27in FHD Monitor,1,149.99,2019-11-01 08:31:00,809 Cherry St, Portland,OR,97035 +285484,AA Batteries (4-pack),2,3.84,2019-11-07 14:26:00,866 Lakeview St, San Francisco,CA,94016 +285485,AA Batteries (4-pack),1,3.84,2019-11-18 09:03:00,753 Adams St, San Francisco,CA,94016 +285486,Lightning Charging Cable,1,14.95,2019-11-16 00:59:00,952 2nd St, Portland,OR,97035 +285487,Macbook Pro Laptop,1,1700.0,2019-11-19 18:46:00,963 North St, Austin,TX,73301 +285488,Apple Airpods Headphones,1,150.0,2019-11-09 15:30:00,939 2nd St, Dallas,TX,75001 +285489,Lightning Charging Cable,2,14.95,2019-11-04 19:09:00,338 Cherry St, Los Angeles,CA,90001 +285490,Lightning Charging Cable,1,14.95,2019-11-25 09:10:00,561 1st St, Atlanta,GA,30301 +285491,Lightning Charging Cable,1,14.95,2019-11-18 17:59:00,564 Forest St, Boston,MA,02215 +285492,iPhone,1,700.0,2019-11-07 18:22:00,54 Meadow St, San Francisco,CA,94016 +285492,Lightning Charging Cable,1,14.95,2019-11-07 18:22:00,54 Meadow St, San Francisco,CA,94016 +285493,USB-C Charging Cable,1,11.95,2019-11-18 10:12:00,934 Church St, Austin,TX,73301 +285494,20in Monitor,1,109.99,2019-11-05 00:21:00,512 Meadow St, Los Angeles,CA,90001 +285495,AAA Batteries (4-pack),1,2.99,2019-11-12 16:43:00,654 10th St, Austin,TX,73301 +285496,Vareebadd Phone,1,400.0,2019-11-08 16:22:00,922 2nd St, Seattle,WA,98101 +285497,Bose SoundSport Headphones,1,99.99,2019-11-15 19:41:00,528 Sunset St, Portland,ME,04101 +285497,AAA Batteries (4-pack),1,2.99,2019-11-15 19:41:00,528 Sunset St, Portland,ME,04101 +285498,AA Batteries (4-pack),1,3.84,2019-11-22 08:48:00,473 1st St, Los Angeles,CA,90001 +285499,Wired Headphones,1,11.99,2019-11-21 12:37:00,666 Adams St, Boston,MA,02215 +285500,AAA Batteries (4-pack),1,2.99,2019-11-20 22:48:00,400 6th St, Boston,MA,02215 +285501,AAA Batteries (4-pack),1,2.99,2019-11-13 17:34:00,689 Cherry St, Boston,MA,02215 +285502,AA Batteries (4-pack),1,3.84,2019-11-18 13:27:00,285 9th St, San Francisco,CA,94016 +285503,Wired Headphones,1,11.99,2019-11-06 16:04:00,113 Washington St, San Francisco,CA,94016 +285504,Google Phone,1,600.0,2019-11-19 19:04:00,828 Park St, Austin,TX,73301 +285504,USB-C Charging Cable,1,11.95,2019-11-19 19:04:00,828 Park St, Austin,TX,73301 +285505,USB-C Charging Cable,1,11.95,2019-11-11 20:43:00,593 Sunset St, Austin,TX,73301 +285506,USB-C Charging Cable,1,11.95,2019-11-04 14:31:00,891 Walnut St, New York City,NY,10001 +285507,USB-C Charging Cable,1,11.95,2019-11-13 22:54:00,319 Elm St, Los Angeles,CA,90001 +285508,iPhone,1,700.0,2019-11-14 03:17:00,67 Hickory St, Los Angeles,CA,90001 +285509,AA Batteries (4-pack),2,3.84,2019-11-11 20:38:00,776 Sunset St, Portland,OR,97035 +285510,Wired Headphones,1,11.99,2019-11-05 09:16:00,699 9th St, San Francisco,CA,94016 +285511,AAA Batteries (4-pack),1,2.99,2019-11-21 16:11:00,661 14th St, Austin,TX,73301 +285512,USB-C Charging Cable,1,11.95,2019-11-12 21:17:00,713 Willow St, New York City,NY,10001 +285513,27in FHD Monitor,1,149.99,2019-11-07 02:51:00,362 Church St, New York City,NY,10001 +285514,Apple Airpods Headphones,1,150.0,2019-11-25 17:30:00,458 Jefferson St, San Francisco,CA,94016 +285515,Apple Airpods Headphones,1,150.0,2019-11-26 10:31:00,348 Madison St, Austin,TX,73301 +285516,USB-C Charging Cable,1,11.95,2019-11-22 21:54:00,181 Lake St, Seattle,WA,98101 +285517,Lightning Charging Cable,1,14.95,2019-11-26 14:39:00,508 Meadow St, San Francisco,CA,94016 +285518,Flatscreen TV,1,300.0,2019-11-23 06:07:00,327 Maple St, San Francisco,CA,94016 +285519,USB-C Charging Cable,1,11.95,2019-11-28 10:17:00,826 12th St, San Francisco,CA,94016 +285520,USB-C Charging Cable,1,11.95,2019-11-16 13:18:00,405 Washington St, Atlanta,GA,30301 +285520,AA Batteries (4-pack),1,3.84,2019-11-16 13:18:00,405 Washington St, Atlanta,GA,30301 +285521,iPhone,1,700.0,2019-11-01 12:53:00,118 West St, Boston,MA,02215 +285522,Bose SoundSport Headphones,1,99.99,2019-11-15 23:48:00,220 Madison St, Boston,MA,02215 +285523,27in FHD Monitor,1,149.99,2019-11-26 04:27:00,79 5th St, San Francisco,CA,94016 +285524,Wired Headphones,1,11.99,2019-11-21 18:46:00,345 River St, Austin,TX,73301 +285525,iPhone,1,700.0,2019-11-08 06:54:00,10 Hill St, Los Angeles,CA,90001 +285526,Lightning Charging Cable,1,14.95,2019-11-12 15:15:00,292 Meadow St, San Francisco,CA,94016 +285527,Lightning Charging Cable,1,14.95,2019-11-25 19:21:00,473 Hill St, Atlanta,GA,30301 +285528,27in FHD Monitor,1,149.99,2019-11-28 09:25:00,314 Lake St, Los Angeles,CA,90001 +285529,Macbook Pro Laptop,1,1700.0,2019-11-25 12:00:00,249 Hickory St, New York City,NY,10001 +285530,Google Phone,1,600.0,2019-11-22 19:39:00,762 12th St, Seattle,WA,98101 +285530,USB-C Charging Cable,1,11.95,2019-11-22 19:39:00,762 12th St, Seattle,WA,98101 +285531,Google Phone,1,600.0,2019-11-23 11:53:00,479 Maple St, San Francisco,CA,94016 +285532,Apple Airpods Headphones,1,150.0,2019-11-21 18:27:00,737 Dogwood St, San Francisco,CA,94016 +285532,AA Batteries (4-pack),1,3.84,2019-11-21 18:27:00,737 Dogwood St, San Francisco,CA,94016 +285533,27in 4K Gaming Monitor,1,389.99,2019-11-26 20:32:00,352 7th St, Seattle,WA,98101 +285534,Vareebadd Phone,1,400.0,2019-11-24 13:05:00,902 6th St, New York City,NY,10001 +285534,Bose SoundSport Headphones,1,99.99,2019-11-24 13:05:00,902 6th St, New York City,NY,10001 +285535,AAA Batteries (4-pack),2,2.99,2019-11-26 14:26:00,786 Jackson St, San Francisco,CA,94016 +285536,Lightning Charging Cable,1,14.95,2019-11-21 09:13:00,496 South St, Seattle,WA,98101 +285537,Apple Airpods Headphones,1,150.0,2019-11-19 03:32:00,112 Walnut St, New York City,NY,10001 +285538,AAA Batteries (4-pack),1,2.99,2019-11-18 11:52:00,648 Madison St, New York City,NY,10001 +285539,Apple Airpods Headphones,1,150.0,2019-11-07 21:44:00,291 Center St, San Francisco,CA,94016 +285540,AAA Batteries (4-pack),1,2.99,2019-11-10 19:33:00,525 Forest St, Seattle,WA,98101 +285541,Flatscreen TV,1,300.0,2019-11-21 16:21:00,678 Adams St, Portland,ME,04101 +285542,Lightning Charging Cable,1,14.95,2019-11-14 11:08:00,676 Willow St, Portland,OR,97035 +285543,AA Batteries (4-pack),2,3.84,2019-11-08 17:39:00,508 8th St, Los Angeles,CA,90001 +285544,Flatscreen TV,1,300.0,2019-11-14 16:27:00,355 Cherry St, Boston,MA,02215 +285545,AA Batteries (4-pack),1,3.84,2019-11-14 14:57:00,249 Ridge St, Atlanta,GA,30301 +285546,34in Ultrawide Monitor,1,379.99,2019-11-11 17:46:00,741 10th St, New York City,NY,10001 +285547,Wired Headphones,1,11.99,2019-11-25 19:12:00,571 Lincoln St, Boston,MA,02215 +285548,Flatscreen TV,1,300.0,2019-11-28 17:49:00,997 Wilson St, Dallas,TX,75001 +285549,Wired Headphones,1,11.99,2019-11-09 06:11:00,544 Johnson St, Dallas,TX,75001 +285550,Wired Headphones,1,11.99,2019-11-25 18:40:00,181 Johnson St, Los Angeles,CA,90001 +285551,AA Batteries (4-pack),1,3.84,2019-11-17 21:09:00,242 Sunset St, San Francisco,CA,94016 +285552,20in Monitor,1,109.99,2019-11-02 08:20:00,630 Cedar St, Portland,ME,04101 +285553,AA Batteries (4-pack),1,3.84,2019-11-29 12:57:00,681 River St, Atlanta,GA,30301 +285554,27in FHD Monitor,1,149.99,2019-11-15 16:53:00,688 Maple St, New York City,NY,10001 +285555,Lightning Charging Cable,1,14.95,2019-11-04 22:06:00,512 Meadow St, Atlanta,GA,30301 +285556,Apple Airpods Headphones,1,150.0,2019-11-18 13:52:00,991 Hill St, Austin,TX,73301 +285557,USB-C Charging Cable,1,11.95,2019-11-20 21:07:00,938 Dogwood St, San Francisco,CA,94016 +285558,AA Batteries (4-pack),1,3.84,2019-11-21 18:04:00,160 Madison St, San Francisco,CA,94016 +285559,Apple Airpods Headphones,1,150.0,2019-11-22 11:05:00,512 4th St, Portland,OR,97035 +285560,AAA Batteries (4-pack),1,2.99,2019-11-09 10:02:00,930 Lake St, Los Angeles,CA,90001 +285561,AA Batteries (4-pack),1,3.84,2019-11-08 19:36:00,639 Main St, Seattle,WA,98101 +285562,USB-C Charging Cable,1,11.95,2019-11-03 13:28:00,610 Adams St, Austin,TX,73301 +285563,Wired Headphones,1,11.99,2019-11-12 11:11:00,467 Hill St, Austin,TX,73301 +285564,AAA Batteries (4-pack),1,2.99,2019-11-20 09:59:00,109 Lincoln St, San Francisco,CA,94016 +285565,USB-C Charging Cable,1,11.95,2019-11-27 14:26:00,432 West St, San Francisco,CA,94016 +285566,USB-C Charging Cable,1,11.95,2019-11-11 19:39:00,27 Center St, Seattle,WA,98101 +285567,Google Phone,1,600.0,2019-11-01 15:58:00,117 Ridge St, San Francisco,CA,94016 +285568,Apple Airpods Headphones,1,150.0,2019-11-06 12:37:00,323 West St, San Francisco,CA,94016 +285569,AAA Batteries (4-pack),1,2.99,2019-11-06 00:09:00,103 Washington St, Seattle,WA,98101 +285570,iPhone,1,700.0,2019-11-22 22:01:00,212 11th St, Seattle,WA,98101 +285571,34in Ultrawide Monitor,2,379.99,2019-11-30 13:02:00,683 Highland St, Atlanta,GA,30301 +285572,Lightning Charging Cable,1,14.95,2019-11-06 15:48:00,188 Maple St, Boston,MA,02215 +285573,Wired Headphones,1,11.99,2019-11-06 20:36:00,282 Sunset St, San Francisco,CA,94016 +285574,34in Ultrawide Monitor,1,379.99,2019-11-06 11:21:00,909 2nd St, San Francisco,CA,94016 +285575,Apple Airpods Headphones,1,150.0,2019-11-06 22:09:00,953 10th St, Atlanta,GA,30301 +285576,AA Batteries (4-pack),1,3.84,2019-11-14 18:59:00,53 Cedar St, New York City,NY,10001 +285577,ThinkPad Laptop,1,999.99,2019-11-21 01:15:00,482 Hill St, Boston,MA,02215 +285578,Wired Headphones,1,11.99,2019-11-30 11:32:00,498 Lake St, Los Angeles,CA,90001 +285579,Wired Headphones,1,11.99,2019-12-01 00:47:00,866 5th St, Seattle,WA,98101 +285580,Flatscreen TV,1,300.0,2019-11-04 22:22:00,348 Wilson St, San Francisco,CA,94016 +285581,Lightning Charging Cable,1,14.95,2019-11-24 19:00:00,255 Maple St, Los Angeles,CA,90001 +285582,AA Batteries (4-pack),2,3.84,2019-11-09 21:55:00,477 Meadow St, New York City,NY,10001 +285583,AAA Batteries (4-pack),1,2.99,2019-11-09 20:42:00,664 Ridge St, Atlanta,GA,30301 +285584,AAA Batteries (4-pack),1,2.99,2019-11-09 11:41:00,687 Elm St, Los Angeles,CA,90001 +285585,Google Phone,1,600.0,2019-11-13 02:24:00,754 Washington St, Los Angeles,CA,90001 +285586,Lightning Charging Cable,1,14.95,2019-11-10 18:52:00,808 7th St, Austin,TX,73301 +285587,Bose SoundSport Headphones,1,99.99,2019-11-22 17:22:00,304 12th St, Seattle,WA,98101 +285588,AAA Batteries (4-pack),4,2.99,2019-11-04 14:32:00,902 Pine St, Los Angeles,CA,90001 +285589,Wired Headphones,1,11.99,2019-11-13 10:59:00,569 Elm St, San Francisco,CA,94016 +285590,AAA Batteries (4-pack),1,2.99,2019-11-26 19:30:00,791 North St, Atlanta,GA,30301 +285591,USB-C Charging Cable,1,11.95,2019-11-30 01:08:00,180 River St, New York City,NY,10001 +285592,ThinkPad Laptop,1,999.99,2019-11-07 20:49:00,628 Wilson St, Seattle,WA,98101 +285593,27in 4K Gaming Monitor,1,389.99,2019-11-27 11:41:00,546 Church St, Seattle,WA,98101 +285594,Lightning Charging Cable,1,14.95,2019-11-28 01:32:00,507 12th St, Atlanta,GA,30301 +285595,USB-C Charging Cable,3,11.95,2019-11-07 15:51:00,199 12th St, Boston,MA,02215 +285596,Lightning Charging Cable,1,14.95,2019-11-20 11:54:00,28 Dogwood St, Dallas,TX,75001 +285597,USB-C Charging Cable,1,11.95,2019-11-09 18:14:00,526 Center St, Atlanta,GA,30301 +285598,Flatscreen TV,1,300.0,2019-11-21 11:45:00,356 Meadow St, Los Angeles,CA,90001 +285599,Lightning Charging Cable,1,14.95,2019-11-22 19:49:00,706 Church St, Los Angeles,CA,90001 +285600,27in FHD Monitor,1,149.99,2019-11-21 03:18:00,729 Cherry St, Atlanta,GA,30301 +285600,USB-C Charging Cable,1,11.95,2019-11-21 03:18:00,729 Cherry St, Atlanta,GA,30301 +285601,AA Batteries (4-pack),1,3.84,2019-11-07 09:38:00,706 Adams St, New York City,NY,10001 +285602,Wired Headphones,1,11.99,2019-11-23 17:50:00,423 Main St, New York City,NY,10001 +285602,Bose SoundSport Headphones,1,99.99,2019-11-23 17:50:00,423 Main St, New York City,NY,10001 +285603,Wired Headphones,1,11.99,2019-11-27 08:23:00,305 7th St, Seattle,WA,98101 +285604,Flatscreen TV,1,300.0,2019-11-27 16:12:00,375 Park St, Dallas,TX,75001 +285605,USB-C Charging Cable,1,11.95,2019-11-03 15:48:00,774 5th St, Portland,OR,97035 +285606,USB-C Charging Cable,1,11.95,2019-11-18 18:40:00,767 13th St, San Francisco,CA,94016 +285607,AAA Batteries (4-pack),1,2.99,2019-11-01 21:33:00,850 Wilson St, Portland,ME,04101 +285608,27in FHD Monitor,1,149.99,2019-11-06 11:48:00,331 Maple St, Atlanta,GA,30301 +285609,USB-C Charging Cable,1,11.95,2019-11-08 12:12:00,718 Hickory St, Atlanta,GA,30301 +285610,AAA Batteries (4-pack),2,2.99,2019-11-30 09:13:00,51 7th St, San Francisco,CA,94016 +285611,Apple Airpods Headphones,1,150.0,2019-11-27 18:31:00,472 Washington St, New York City,NY,10001 +285612,27in 4K Gaming Monitor,1,389.99,2019-11-21 10:32:00,514 Chestnut St, Los Angeles,CA,90001 +285613,AA Batteries (4-pack),1,3.84,2019-11-19 20:50:00,292 Willow St, New York City,NY,10001 +285614,Bose SoundSport Headphones,1,99.99,2019-11-19 09:42:00,878 North St, Atlanta,GA,30301 +285614,AAA Batteries (4-pack),2,2.99,2019-11-19 09:42:00,878 North St, Atlanta,GA,30301 +285615,Apple Airpods Headphones,1,150.0,2019-11-26 23:59:00,59 South St, San Francisco,CA,94016 +285616,Google Phone,1,600.0,2019-11-10 22:49:00,274 Johnson St, San Francisco,CA,94016 +285617,AA Batteries (4-pack),1,3.84,2019-11-21 17:18:00,981 Johnson St, Atlanta,GA,30301 +285618,AA Batteries (4-pack),1,3.84,2019-11-30 00:26:00,555 Main St, Los Angeles,CA,90001 +285619,Macbook Pro Laptop,1,1700.0,2019-11-02 18:07:00,527 Walnut St, Portland,OR,97035 +285620,Apple Airpods Headphones,1,150.0,2019-11-27 13:17:00,842 Wilson St, Los Angeles,CA,90001 +285621,Google Phone,1,600.0,2019-11-13 15:29:00,872 Washington St, Boston,MA,02215 +285622,USB-C Charging Cable,1,11.95,2019-11-24 18:14:00,559 Sunset St, Portland,OR,97035 +285623,27in FHD Monitor,1,149.99,2019-11-03 03:30:00,821 Sunset St, New York City,NY,10001 +285624,Wired Headphones,1,11.99,2019-11-03 22:57:00,151 Maple St, San Francisco,CA,94016 +285625,Lightning Charging Cable,1,14.95,2019-11-01 21:19:00,168 12th St, Los Angeles,CA,90001 +285626,27in FHD Monitor,1,149.99,2019-11-29 17:30:00,615 13th St, Los Angeles,CA,90001 +285627,USB-C Charging Cable,1,11.95,2019-11-18 13:55:00,648 Walnut St, San Francisco,CA,94016 +285628,Bose SoundSport Headphones,1,99.99,2019-11-10 16:48:00,613 Jackson St, Austin,TX,73301 +285629,Bose SoundSport Headphones,1,99.99,2019-11-08 15:22:00,58 Highland St, San Francisco,CA,94016 +285630,AAA Batteries (4-pack),2,2.99,2019-11-12 08:54:00,267 Center St, Dallas,TX,75001 +285631,AAA Batteries (4-pack),1,2.99,2019-11-04 16:15:00,595 Cherry St, San Francisco,CA,94016 +285632,Wired Headphones,1,11.99,2019-11-15 10:56:00,862 Chestnut St, Atlanta,GA,30301 +285633,Bose SoundSport Headphones,1,99.99,2019-11-08 10:58:00,465 Park St, San Francisco,CA,94016 +285634,Flatscreen TV,1,300.0,2019-11-14 14:13:00,912 West St, Boston,MA,02215 +285635,Bose SoundSport Headphones,1,99.99,2019-11-13 04:04:00,318 Madison St, New York City,NY,10001 +285636,34in Ultrawide Monitor,1,379.99,2019-11-11 08:47:00,277 Meadow St, Los Angeles,CA,90001 +285637,Wired Headphones,1,11.99,2019-11-23 19:34:00,661 Park St, San Francisco,CA,94016 +285638,iPhone,1,700.0,2019-11-04 19:39:00,342 14th St, New York City,NY,10001 +285639,Lightning Charging Cable,1,14.95,2019-11-13 20:40:00,674 6th St, Atlanta,GA,30301 +285640,Flatscreen TV,1,300.0,2019-11-08 10:43:00,322 7th St, New York City,NY,10001 +285641,Bose SoundSport Headphones,1,99.99,2019-11-25 12:18:00,585 Center St, New York City,NY,10001 +285642,Google Phone,1,600.0,2019-11-02 13:08:00,481 9th St, Los Angeles,CA,90001 +285642,USB-C Charging Cable,1,11.95,2019-11-02 13:08:00,481 9th St, Los Angeles,CA,90001 +285643,USB-C Charging Cable,1,11.95,2019-11-02 11:10:00,317 9th St, San Francisco,CA,94016 +285644,27in FHD Monitor,1,149.99,2019-11-06 19:20:00,514 11th St, San Francisco,CA,94016 +285645,AA Batteries (4-pack),1,3.84,2019-11-14 11:42:00,204 Dogwood St, New York City,NY,10001 +285646,Bose SoundSport Headphones,1,99.99,2019-11-06 20:39:00,38 Spruce St, Boston,MA,02215 +285647,Macbook Pro Laptop,1,1700.0,2019-11-13 20:35:00,726 Main St, Atlanta,GA,30301 +285648,AAA Batteries (4-pack),1,2.99,2019-11-29 23:59:00,215 Meadow St, New York City,NY,10001 +285649,Wired Headphones,2,11.99,2019-11-17 23:47:00,714 Walnut St, Atlanta,GA,30301 +285650,27in 4K Gaming Monitor,1,389.99,2019-11-19 14:07:00,278 Hill St, Seattle,WA,98101 +285651,iPhone,1,700.0,2019-11-10 18:24:00,424 Pine St, San Francisco,CA,94016 +285652,34in Ultrawide Monitor,1,379.99,2019-11-30 23:14:00,681 Lakeview St, Austin,TX,73301 +285653,Flatscreen TV,1,300.0,2019-11-20 12:41:00,950 2nd St, Austin,TX,73301 +285654,34in Ultrawide Monitor,1,379.99,2019-11-10 07:29:00,907 11th St, Portland,ME,04101 +285655,Apple Airpods Headphones,1,150.0,2019-11-08 11:35:00,575 Church St, Seattle,WA,98101 +285656,AAA Batteries (4-pack),1,2.99,2019-11-15 11:51:00,749 Church St, San Francisco,CA,94016 +285657,Apple Airpods Headphones,1,150.0,2019-11-01 18:09:00,946 13th St, Seattle,WA,98101 +285658,Bose SoundSport Headphones,1,99.99,2019-11-06 13:52:00,578 North St, Boston,MA,02215 +285659,Lightning Charging Cable,1,14.95,2019-11-26 21:00:00,685 River St, Los Angeles,CA,90001 +285660,34in Ultrawide Monitor,1,379.99,2019-11-20 22:55:00,284 Spruce St, Atlanta,GA,30301 +285661,USB-C Charging Cable,1,11.95,2019-11-18 12:58:00,870 Madison St, New York City,NY,10001 +285662,iPhone,1,700.0,2019-11-21 16:11:00,938 10th St, San Francisco,CA,94016 +285663,Apple Airpods Headphones,1,150.0,2019-11-26 11:49:00,341 Jefferson St, Seattle,WA,98101 +285664,AAA Batteries (4-pack),1,2.99,2019-11-23 20:29:00,246 Hill St, Seattle,WA,98101 +285665,34in Ultrawide Monitor,1,379.99,2019-11-11 18:33:00,847 5th St, Boston,MA,02215 +285666,USB-C Charging Cable,1,11.95,2019-11-16 13:07:00,394 Maple St, Dallas,TX,75001 +285667,AA Batteries (4-pack),1,3.84,2019-11-06 14:02:00,468 Center St, Atlanta,GA,30301 +285668,Wired Headphones,1,11.99,2019-11-14 00:55:00,706 Highland St, Atlanta,GA,30301 +285669,Lightning Charging Cable,1,14.95,2019-11-29 18:44:00,332 Park St, Los Angeles,CA,90001 +285670,USB-C Charging Cable,1,11.95,2019-11-23 23:07:00,418 5th St, New York City,NY,10001 +285671,USB-C Charging Cable,1,11.95,2019-11-11 16:25:00,969 14th St, Los Angeles,CA,90001 +285672,27in FHD Monitor,1,149.99,2019-11-25 23:25:00,315 14th St, San Francisco,CA,94016 +285673,AAA Batteries (4-pack),2,2.99,2019-11-03 19:57:00,460 Highland St, San Francisco,CA,94016 +285674,AAA Batteries (4-pack),1,2.99,2019-11-17 14:14:00,837 Maple St, Los Angeles,CA,90001 +285675,ThinkPad Laptop,1,999.99,2019-11-24 21:44:00,148 Highland St, Seattle,WA,98101 +285676,Bose SoundSport Headphones,1,99.99,2019-11-26 23:01:00,607 Cherry St, Boston,MA,02215 +285677,Apple Airpods Headphones,1,150.0,2019-11-15 11:16:00,741 14th St, San Francisco,CA,94016 +285678,Lightning Charging Cable,1,14.95,2019-11-17 15:35:00,166 11th St, Austin,TX,73301 +285679,Bose SoundSport Headphones,1,99.99,2019-11-10 15:50:00,933 Walnut St, San Francisco,CA,94016 +285680,USB-C Charging Cable,1,11.95,2019-11-16 21:09:00,702 Highland St, San Francisco,CA,94016 +285681,Apple Airpods Headphones,1,150.0,2019-11-07 06:21:00,642 Cherry St, San Francisco,CA,94016 +285682,AA Batteries (4-pack),1,3.84,2019-11-04 20:00:00,759 Lake St, Los Angeles,CA,90001 +285683,AA Batteries (4-pack),1,3.84,2019-11-22 08:26:00,502 12th St, Austin,TX,73301 +285684,Wired Headphones,1,11.99,2019-11-05 00:36:00,998 10th St, New York City,NY,10001 +285685,AA Batteries (4-pack),1,3.84,2019-11-27 15:02:00,483 Washington St, Atlanta,GA,30301 +285686,Lightning Charging Cable,1,14.95,2019-11-20 09:16:00,158 Park St, Los Angeles,CA,90001 +285687,AA Batteries (4-pack),1,3.84,2019-11-03 20:17:00,245 Lake St, Los Angeles,CA,90001 +285688,USB-C Charging Cable,1,11.95,2019-11-28 17:05:00,68 Highland St, Dallas,TX,75001 +285689,27in FHD Monitor,1,149.99,2019-11-20 14:04:00,163 Lincoln St, Dallas,TX,75001 +285690,AA Batteries (4-pack),1,3.84,2019-11-09 06:26:00,469 Spruce St, Los Angeles,CA,90001 +285691,ThinkPad Laptop,1,999.99,2019-11-10 16:01:00,31 7th St, Los Angeles,CA,90001 +285692,27in FHD Monitor,1,149.99,2019-11-22 10:51:00,748 Washington St, Dallas,TX,75001 +285693,USB-C Charging Cable,1,11.95,2019-11-14 05:49:00,664 Cedar St, Los Angeles,CA,90001 +285694,Wired Headphones,1,11.99,2019-11-24 21:29:00,732 Meadow St, Seattle,WA,98101 +285695,Google Phone,1,600.0,2019-11-04 21:01:00,369 6th St, Boston,MA,02215 +285696,AA Batteries (4-pack),1,3.84,2019-11-06 19:29:00,667 9th St, Dallas,TX,75001 +285697,Flatscreen TV,1,300.0,2019-11-03 18:23:00,680 6th St, Dallas,TX,75001 +285698,USB-C Charging Cable,2,11.95,2019-11-13 12:06:00,408 11th St, Los Angeles,CA,90001 +285699,Wired Headphones,1,11.99,2019-11-11 13:12:00,483 Main St, Los Angeles,CA,90001 +285700,AA Batteries (4-pack),1,3.84,2019-11-25 20:58:00,863 North St, New York City,NY,10001 +285701,iPhone,1,700.0,2019-11-22 08:17:00,89 Wilson St, Boston,MA,02215 +285701,AA Batteries (4-pack),1,3.84,2019-11-22 08:17:00,89 Wilson St, Boston,MA,02215 +285702,Apple Airpods Headphones,1,150.0,2019-11-03 21:47:00,63 Adams St, Los Angeles,CA,90001 +285703,Bose SoundSport Headphones,1,99.99,2019-11-16 15:22:00,933 Forest St, Boston,MA,02215 +285704,Wired Headphones,1,11.99,2019-11-18 08:07:00,157 Willow St, San Francisco,CA,94016 +285705,AAA Batteries (4-pack),1,2.99,2019-11-17 22:46:00,756 6th St, Los Angeles,CA,90001 +285706,AAA Batteries (4-pack),2,2.99,2019-11-14 22:23:00,759 North St, San Francisco,CA,94016 +285707,Bose SoundSport Headphones,1,99.99,2019-11-09 08:36:00,765 7th St, Atlanta,GA,30301 +285708,Macbook Pro Laptop,1,1700.0,2019-11-05 16:40:00,445 Spruce St, Boston,MA,02215 +285709,Lightning Charging Cable,1,14.95,2019-11-18 08:16:00,36 11th St, New York City,NY,10001 +285710,Lightning Charging Cable,1,14.95,2019-11-12 11:10:00,829 Chestnut St, Los Angeles,CA,90001 +285711,Wired Headphones,1,11.99,2019-11-11 15:30:00,296 Chestnut St, Austin,TX,73301 +285712,Lightning Charging Cable,1,14.95,2019-11-14 17:46:00,486 2nd St, Austin,TX,73301 +285713,AAA Batteries (4-pack),2,2.99,2019-11-09 17:33:00,23 West St, San Francisco,CA,94016 +285714,Wired Headphones,1,11.99,2019-11-08 06:11:00,455 4th St, New York City,NY,10001 +285715,Lightning Charging Cable,1,14.95,2019-11-17 19:33:00,113 River St, San Francisco,CA,94016 +285716,Apple Airpods Headphones,1,150.0,2019-11-20 13:13:00,741 Park St, Portland,OR,97035 +285717,20in Monitor,1,109.99,2019-11-18 09:01:00,432 5th St, San Francisco,CA,94016 +285718,AA Batteries (4-pack),1,3.84,2019-11-14 10:12:00,147 Hickory St, Boston,MA,02215 +285719,Macbook Pro Laptop,1,1700.0,2019-11-04 09:45:00,517 12th St, Portland,OR,97035 +285720,AAA Batteries (4-pack),5,2.99,2019-11-03 12:50:00,601 Wilson St, Dallas,TX,75001 +285721,AA Batteries (4-pack),3,3.84,2019-11-21 12:28:00,837 10th St, Boston,MA,02215 +285722,USB-C Charging Cable,1,11.95,2019-11-26 09:34:00,757 Lake St, Boston,MA,02215 +285723,AAA Batteries (4-pack),1,2.99,2019-11-22 12:59:00,427 5th St, Seattle,WA,98101 +285724,AA Batteries (4-pack),2,3.84,2019-11-26 21:38:00,139 Park St, New York City,NY,10001 +285725,AA Batteries (4-pack),1,3.84,2019-11-29 23:55:00,953 West St, Dallas,TX,75001 +285726,AA Batteries (4-pack),1,3.84,2019-11-01 09:10:00,253 Ridge St, Los Angeles,CA,90001 +285727,AA Batteries (4-pack),1,3.84,2019-11-27 20:48:00,727 Dogwood St, San Francisco,CA,94016 +285728,Lightning Charging Cable,1,14.95,2019-11-18 13:16:00,882 Washington St, Seattle,WA,98101 +285729,Lightning Charging Cable,1,14.95,2019-11-02 19:08:00,419 7th St, San Francisco,CA,94016 +285730,AAA Batteries (4-pack),2,2.99,2019-11-22 21:37:00,744 Lincoln St, San Francisco,CA,94016 +285731,AAA Batteries (4-pack),4,2.99,2019-12-01 00:02:00,786 Hill St, San Francisco,CA,94016 +285732,AA Batteries (4-pack),2,3.84,2019-11-16 22:52:00,785 River St, Los Angeles,CA,90001 +285733,Wired Headphones,1,11.99,2019-11-07 18:33:00,639 Chestnut St, Boston,MA,02215 +285734,Google Phone,1,600.0,2019-11-07 12:08:00,568 11th St, San Francisco,CA,94016 +285734,USB-C Charging Cable,1,11.95,2019-11-07 12:08:00,568 11th St, San Francisco,CA,94016 +285735,Bose SoundSport Headphones,1,99.99,2019-11-14 21:17:00,313 Sunset St, Dallas,TX,75001 +285736,AA Batteries (4-pack),2,3.84,2019-11-13 14:51:00,979 Park St, Los Angeles,CA,90001 +285737,AA Batteries (4-pack),3,3.84,2019-11-04 18:09:00,241 14th St, Los Angeles,CA,90001 +285738,Lightning Charging Cable,1,14.95,2019-11-01 05:40:00,551 Hickory St, San Francisco,CA,94016 +285739,Wired Headphones,1,11.99,2019-11-04 20:19:00,944 River St, Austin,TX,73301 +285740,Bose SoundSport Headphones,1,99.99,2019-11-10 22:24:00,6 Adams St, San Francisco,CA,94016 +285741,Wired Headphones,1,11.99,2019-11-26 16:11:00,200 Lake St, San Francisco,CA,94016 +285742,27in 4K Gaming Monitor,1,389.99,2019-11-07 08:14:00,434 Meadow St, Seattle,WA,98101 +285743,Lightning Charging Cable,1,14.95,2019-11-05 19:46:00,703 Spruce St, New York City,NY,10001 +285744,Lightning Charging Cable,1,14.95,2019-11-02 13:06:00,847 Sunset St, New York City,NY,10001 +285745,AAA Batteries (4-pack),1,2.99,2019-11-01 12:33:00,275 Main St, Boston,MA,02215 +285746,Bose SoundSport Headphones,1,99.99,2019-11-05 20:30:00,995 Dogwood St, San Francisco,CA,94016 +285747,AA Batteries (4-pack),1,3.84,2019-11-10 00:29:00,400 North St, San Francisco,CA,94016 +285748,AA Batteries (4-pack),1,3.84,2019-11-18 13:24:00,233 Washington St, Atlanta,GA,30301 +285749,AA Batteries (4-pack),2,3.84,2019-11-05 22:18:00,180 Chestnut St, Boston,MA,02215 +285750,Wired Headphones,1,11.99,2019-11-22 14:41:00,225 2nd St, New York City,NY,10001 +285751,AA Batteries (4-pack),2,3.84,2019-11-19 19:23:00,505 South St, Los Angeles,CA,90001 +285752,Apple Airpods Headphones,1,150.0,2019-11-09 23:31:00,552 13th St, San Francisco,CA,94016 +285753,USB-C Charging Cable,1,11.95,2019-11-01 23:19:00,350 South St, Atlanta,GA,30301 +285754,Bose SoundSport Headphones,1,99.99,2019-11-08 22:45:00,45 River St, Portland,ME,04101 +285755,USB-C Charging Cable,1,11.95,2019-11-04 19:55:00,872 Wilson St, Portland,OR,97035 +285756,AAA Batteries (4-pack),1,2.99,2019-11-17 13:48:00,717 Meadow St, Portland,OR,97035 +285757,AAA Batteries (4-pack),1,2.99,2019-11-11 23:14:00,757 14th St, San Francisco,CA,94016 +285758,Bose SoundSport Headphones,1,99.99,2019-11-07 13:01:00,690 14th St, San Francisco,CA,94016 +285759,AA Batteries (4-pack),1,3.84,2019-11-10 18:58:00,860 Lake St, New York City,NY,10001 +285760,Bose SoundSport Headphones,1,99.99,2019-11-23 17:01:00,258 6th St, San Francisco,CA,94016 +285761,Lightning Charging Cable,1,14.95,2019-11-11 16:08:00,401 Center St, Los Angeles,CA,90001 +285762,Lightning Charging Cable,1,14.95,2019-11-25 18:45:00,243 Ridge St, Portland,ME,04101 +285763,AA Batteries (4-pack),1,3.84,2019-11-24 18:52:00,796 9th St, San Francisco,CA,94016 +285764,USB-C Charging Cable,1,11.95,2019-11-20 11:28:00,474 5th St, Dallas,TX,75001 +285765,AA Batteries (4-pack),1,3.84,2019-11-12 18:29:00,238 Washington St, Atlanta,GA,30301 +285765,Lightning Charging Cable,1,14.95,2019-11-12 18:29:00,238 Washington St, Atlanta,GA,30301 +285766,Wired Headphones,1,11.99,2019-11-11 23:36:00,95 Highland St, Atlanta,GA,30301 +285767,AAA Batteries (4-pack),3,2.99,2019-11-29 14:42:00,245 Meadow St, Portland,OR,97035 +285768,Bose SoundSport Headphones,1,99.99,2019-11-06 09:51:00,944 South St, Seattle,WA,98101 +285769,Wired Headphones,1,11.99,2019-11-03 14:52:00,92 Madison St, Boston,MA,02215 +285770,Bose SoundSport Headphones,1,99.99,2019-11-28 00:47:00,682 Main St, Seattle,WA,98101 +285771,Bose SoundSport Headphones,1,99.99,2019-11-15 10:48:00,63 13th St, Los Angeles,CA,90001 +285772,AAA Batteries (4-pack),1,2.99,2019-11-18 00:12:00,779 14th St, Seattle,WA,98101 +285773,34in Ultrawide Monitor,1,379.99,2019-11-12 16:20:00,523 Wilson St, Dallas,TX,75001 +285774,USB-C Charging Cable,1,11.95,2019-11-01 09:03:00,46 1st St, Austin,TX,73301 +285775,AAA Batteries (4-pack),2,2.99,2019-11-19 17:00:00,358 Washington St, Atlanta,GA,30301 +285776,Lightning Charging Cable,1,14.95,2019-11-08 11:53:00,625 Jackson St, Portland,OR,97035 +285777,Apple Airpods Headphones,1,150.0,2019-11-27 16:45:00,501 Jackson St, Atlanta,GA,30301 +285778,20in Monitor,1,109.99,2019-11-17 11:16:00,758 Park St, Boston,MA,02215 +285779,Lightning Charging Cable,1,14.95,2019-11-18 19:27:00,278 7th St, San Francisco,CA,94016 +285780,AAA Batteries (4-pack),1,2.99,2019-11-19 21:53:00,344 Maple St, Atlanta,GA,30301 +285781,Wired Headphones,1,11.99,2019-11-25 19:52:00,737 Cherry St, San Francisco,CA,94016 +285782,Lightning Charging Cable,1,14.95,2019-11-29 09:11:00,988 Sunset St, Boston,MA,02215 +285783,Macbook Pro Laptop,1,1700.0,2019-11-21 00:33:00,504 4th St, Atlanta,GA,30301 +285783,USB-C Charging Cable,1,11.95,2019-11-21 00:33:00,504 4th St, Atlanta,GA,30301 +285784,Apple Airpods Headphones,1,150.0,2019-11-01 12:17:00,692 Church St, New York City,NY,10001 +285785,Bose SoundSport Headphones,1,99.99,2019-11-17 20:49:00,635 Lincoln St, Los Angeles,CA,90001 +285786,Flatscreen TV,1,300.0,2019-11-21 18:33:00,76 6th St, Boston,MA,02215 +285787,Lightning Charging Cable,1,14.95,2019-11-26 07:39:00,788 Cedar St, Los Angeles,CA,90001 +285788,Vareebadd Phone,1,400.0,2019-11-10 19:37:00,150 Park St, Boston,MA,02215 +285789,Lightning Charging Cable,1,14.95,2019-11-29 20:24:00,747 Adams St, Los Angeles,CA,90001 +285790,USB-C Charging Cable,1,11.95,2019-11-29 11:07:00,407 Lake St, Portland,OR,97035 +285791,USB-C Charging Cable,1,11.95,2019-11-07 19:53:00,656 Pine St, Boston,MA,02215 +285792,Apple Airpods Headphones,1,150.0,2019-11-28 00:04:00,33 Walnut St, San Francisco,CA,94016 +285793,Lightning Charging Cable,1,14.95,2019-11-21 08:22:00,849 Johnson St, Dallas,TX,75001 +285794,20in Monitor,1,109.99,2019-11-11 10:24:00,552 Main St, Los Angeles,CA,90001 +285795,AAA Batteries (4-pack),1,2.99,2019-11-16 19:23:00,672 Dogwood St, Los Angeles,CA,90001 +285796,Lightning Charging Cable,1,14.95,2019-11-29 12:04:00,889 Park St, Dallas,TX,75001 +285797,Lightning Charging Cable,1,14.95,2019-11-20 08:53:00,764 8th St, San Francisco,CA,94016 +285798,AAA Batteries (4-pack),1,2.99,2019-11-09 21:04:00,430 Main St, Dallas,TX,75001 +285799,20in Monitor,1,109.99,2019-11-24 12:46:00,471 Ridge St, Boston,MA,02215 +285800,Bose SoundSport Headphones,1,99.99,2019-11-13 19:52:00,201 2nd St, Seattle,WA,98101 +285801,Bose SoundSport Headphones,1,99.99,2019-11-10 14:44:00,789 Ridge St, Los Angeles,CA,90001 +285802,AA Batteries (4-pack),1,3.84,2019-11-25 13:18:00,632 Wilson St, San Francisco,CA,94016 +285803,Google Phone,1,600.0,2019-11-02 18:03:00,245 Dogwood St, Atlanta,GA,30301 +285804,AA Batteries (4-pack),1,3.84,2019-11-30 09:08:00,168 Sunset St, New York City,NY,10001 +285805,AA Batteries (4-pack),1,3.84,2019-11-18 08:47:00,243 9th St, Boston,MA,02215 +285806,27in FHD Monitor,1,149.99,2019-11-15 07:47:00,492 Jefferson St, San Francisco,CA,94016 +285807,Lightning Charging Cable,1,14.95,2019-11-15 00:24:00,979 11th St, Dallas,TX,75001 +285808,Lightning Charging Cable,1,14.95,2019-11-25 10:22:00,241 Jackson St, Boston,MA,02215 +285809,Wired Headphones,1,11.99,2019-11-28 10:18:00,560 5th St, Portland,OR,97035 +285810,AAA Batteries (4-pack),1,2.99,2019-11-03 20:27:00,691 Chestnut St, Dallas,TX,75001 +285811,AAA Batteries (4-pack),1,2.99,2019-11-27 20:06:00,738 Jefferson St, Los Angeles,CA,90001 +285812,iPhone,1,700.0,2019-11-21 20:28:00,754 Main St, New York City,NY,10001 +285813,AA Batteries (4-pack),1,3.84,2019-11-03 07:21:00,539 Jackson St, Seattle,WA,98101 +285814,34in Ultrawide Monitor,1,379.99,2019-11-16 12:31:00,941 Forest St, Atlanta,GA,30301 +285815,AA Batteries (4-pack),1,3.84,2019-11-09 11:44:00,219 Walnut St, Seattle,WA,98101 +285816,34in Ultrawide Monitor,1,379.99,2019-11-06 13:20:00,139 Lincoln St, Austin,TX,73301 +285817,AA Batteries (4-pack),1,3.84,2019-11-13 11:07:00,44 4th St, Boston,MA,02215 +285818,27in 4K Gaming Monitor,1,389.99,2019-11-10 17:41:00,705 West St, San Francisco,CA,94016 +285819,27in FHD Monitor,1,149.99,2019-11-10 13:54:00,567 5th St, Los Angeles,CA,90001 +285820,Bose SoundSport Headphones,1,99.99,2019-11-21 11:20:00,769 River St, San Francisco,CA,94016 +285820,USB-C Charging Cable,1,11.95,2019-11-21 11:20:00,769 River St, San Francisco,CA,94016 +285821,USB-C Charging Cable,1,11.95,2019-11-19 19:16:00,950 Highland St, Los Angeles,CA,90001 +285822,Google Phone,1,600.0,2019-11-21 12:25:00,230 Maple St, New York City,NY,10001 +285822,Bose SoundSport Headphones,1,99.99,2019-11-21 12:25:00,230 Maple St, New York City,NY,10001 +285823,AA Batteries (4-pack),1,3.84,2019-11-16 19:37:00,678 Willow St, Los Angeles,CA,90001 +285824,Lightning Charging Cable,1,14.95,2019-11-09 01:07:00,998 1st St, San Francisco,CA,94016 +285825,USB-C Charging Cable,1,11.95,2019-11-30 09:20:00,280 12th St, Austin,TX,73301 +285826,AAA Batteries (4-pack),3,2.99,2019-11-19 17:56:00,626 7th St, Boston,MA,02215 +285827,34in Ultrawide Monitor,1,379.99,2019-11-04 10:29:00,581 Cherry St, Boston,MA,02215 +285828,AAA Batteries (4-pack),1,2.99,2019-11-10 11:55:00,185 Dogwood St, San Francisco,CA,94016 +285829,Wired Headphones,1,11.99,2019-11-13 10:35:00,378 4th St, Los Angeles,CA,90001 +285830,Lightning Charging Cable,2,14.95,2019-11-06 20:46:00,6 Sunset St, Los Angeles,CA,90001 +285831,AA Batteries (4-pack),1,3.84,2019-11-25 11:02:00,181 Sunset St, Portland,OR,97035 +285832,USB-C Charging Cable,1,11.95,2019-11-04 18:55:00,438 6th St, San Francisco,CA,94016 +285833,34in Ultrawide Monitor,1,379.99,2019-11-20 14:17:00,857 Center St, New York City,NY,10001 +285834,27in 4K Gaming Monitor,1,389.99,2019-11-23 00:20:00,509 14th St, New York City,NY,10001 +285835,AAA Batteries (4-pack),1,2.99,2019-11-19 13:49:00,49 Forest St, Dallas,TX,75001 +285836,AAA Batteries (4-pack),1,2.99,2019-11-13 16:05:00,778 Madison St, Boston,MA,02215 +285837,USB-C Charging Cable,1,11.95,2019-11-19 11:28:00,194 Sunset St, Portland,OR,97035 +285838,AA Batteries (4-pack),1,3.84,2019-11-19 13:33:00,371 Johnson St, Dallas,TX,75001 +285839,Wired Headphones,1,11.99,2019-11-07 17:15:00,847 South St, San Francisco,CA,94016 +285840,iPhone,1,700.0,2019-11-29 15:03:00,104 Willow St, Los Angeles,CA,90001 +285840,Lightning Charging Cable,1,14.95,2019-11-29 15:03:00,104 Willow St, Los Angeles,CA,90001 +285841,Vareebadd Phone,1,400.0,2019-11-11 17:55:00,549 Sunset St, San Francisco,CA,94016 +285842,Wired Headphones,3,11.99,2019-11-24 11:43:00,462 Willow St, New York City,NY,10001 +285843,Bose SoundSport Headphones,1,99.99,2019-11-26 12:43:00,224 Cedar St, Boston,MA,02215 +285844,AA Batteries (4-pack),1,3.84,2019-11-09 23:48:00,862 12th St, Atlanta,GA,30301 +285845,Wired Headphones,1,11.99,2019-11-14 07:59:00,772 5th St, Portland,ME,04101 +285846,USB-C Charging Cable,1,11.95,2019-11-30 18:00:00,927 Lincoln St, San Francisco,CA,94016 +285847,Apple Airpods Headphones,1,150.0,2019-11-09 11:32:00,282 Lakeview St, San Francisco,CA,94016 +285848,34in Ultrawide Monitor,1,379.99,2019-11-11 20:48:00,898 Walnut St, Austin,TX,73301 +285849,LG Dryer,1,600.0,2019-11-25 16:14:00,90 Center St, Boston,MA,02215 +285850,USB-C Charging Cable,1,11.95,2019-11-28 15:15:00,760 Ridge St, Portland,OR,97035 +285851,Lightning Charging Cable,2,14.95,2019-11-12 19:51:00,291 Lakeview St, Atlanta,GA,30301 +285852,20in Monitor,1,109.99,2019-11-10 21:03:00,534 Jackson St, San Francisco,CA,94016 +285853,Lightning Charging Cable,1,14.95,2019-11-05 01:33:00,572 Park St, New York City,NY,10001 +285854,AAA Batteries (4-pack),1,2.99,2019-11-03 14:22:00,238 Forest St, Portland,OR,97035 +285854,Apple Airpods Headphones,1,150.0,2019-11-03 14:22:00,238 Forest St, Portland,OR,97035 +285855,AA Batteries (4-pack),2,3.84,2019-11-24 20:09:00,806 Jefferson St, Seattle,WA,98101 +285856,Google Phone,1,600.0,2019-11-17 19:17:00,367 Jackson St, Atlanta,GA,30301 +285857,AA Batteries (4-pack),2,3.84,2019-11-04 08:16:00,657 Meadow St, San Francisco,CA,94016 +285858,Flatscreen TV,1,300.0,2019-11-29 18:27:00,238 Park St, Los Angeles,CA,90001 +285859,Flatscreen TV,1,300.0,2019-11-24 13:58:00,395 Willow St, New York City,NY,10001 +285860,Wired Headphones,1,11.99,2019-11-01 21:12:00,869 5th St, New York City,NY,10001 +285861,USB-C Charging Cable,1,11.95,2019-11-18 19:27:00,371 Highland St, San Francisco,CA,94016 +285862,Google Phone,1,600.0,2019-11-12 10:28:00,787 Hill St, San Francisco,CA,94016 +285863,USB-C Charging Cable,1,11.95,2019-11-25 11:50:00,793 South St, Austin,TX,73301 +285864,Apple Airpods Headphones,1,150.0,2019-11-05 06:04:00,424 Chestnut St, San Francisco,CA,94016 +285865,USB-C Charging Cable,1,11.95,2019-11-04 16:24:00,990 Chestnut St, San Francisco,CA,94016 +285866,Lightning Charging Cable,1,14.95,2019-11-27 08:29:00,206 River St, Atlanta,GA,30301 +285867,27in 4K Gaming Monitor,1,389.99,2019-11-14 22:27:00,135 Ridge St, Seattle,WA,98101 +285868,ThinkPad Laptop,1,999.99,2019-11-27 17:32:00,907 8th St, Atlanta,GA,30301 +285869,27in 4K Gaming Monitor,1,389.99,2019-11-07 19:52:00,275 South St, Austin,TX,73301 +285870,AA Batteries (4-pack),1,3.84,2019-11-18 08:54:00,84 Adams St, Los Angeles,CA,90001 +285871,Wired Headphones,1,11.99,2019-11-08 08:48:00,709 Hill St, Los Angeles,CA,90001 +285872,Wired Headphones,1,11.99,2019-11-11 12:11:00,143 Hill St, San Francisco,CA,94016 +285873,Apple Airpods Headphones,1,150.0,2019-11-27 09:57:00,425 South St, San Francisco,CA,94016 +285874,Apple Airpods Headphones,1,150.0,2019-11-01 22:38:00,615 Church St, Boston,MA,02215 +285875,USB-C Charging Cable,1,11.95,2019-11-26 22:10:00,893 Center St, Atlanta,GA,30301 +285876,AAA Batteries (4-pack),1,2.99,2019-11-24 10:49:00,787 10th St, Dallas,TX,75001 +285877,iPhone,1,700.0,2019-11-21 08:41:00,349 1st St, Los Angeles,CA,90001 +285878,USB-C Charging Cable,1,11.95,2019-11-08 21:16:00,737 13th St, Austin,TX,73301 +285879,USB-C Charging Cable,1,11.95,2019-11-20 15:54:00,745 River St, Portland,ME,04101 +285880,27in 4K Gaming Monitor,1,389.99,2019-11-09 11:24:00,80 Willow St, San Francisco,CA,94016 +285881,iPhone,1,700.0,2019-11-17 21:09:00,99 Spruce St, Seattle,WA,98101 +285881,Lightning Charging Cable,1,14.95,2019-11-17 21:09:00,99 Spruce St, Seattle,WA,98101 +285882,27in 4K Gaming Monitor,1,389.99,2019-11-08 17:26:00,247 14th St, San Francisco,CA,94016 +285883,iPhone,1,700.0,2019-11-15 17:17:00,616 Lake St, Dallas,TX,75001 +285884,iPhone,1,700.0,2019-11-02 11:39:00,438 2nd St, Los Angeles,CA,90001 +285885,Flatscreen TV,1,300.0,2019-11-02 19:25:00,199 12th St, San Francisco,CA,94016 +285886,Lightning Charging Cable,1,14.95,2019-11-15 16:06:00,453 Maple St, Boston,MA,02215 +285887,ThinkPad Laptop,1,999.99,2019-11-07 21:42:00,480 Hill St, San Francisco,CA,94016 +285888,ThinkPad Laptop,1,999.99,2019-11-12 14:54:00,357 2nd St, Seattle,WA,98101 +285889,AA Batteries (4-pack),2,3.84,2019-11-12 09:35:00,256 Highland St, New York City,NY,10001 +285890,USB-C Charging Cable,1,11.95,2019-11-12 22:07:00,137 Highland St, San Francisco,CA,94016 +285891,27in 4K Gaming Monitor,1,389.99,2019-11-07 18:21:00,940 Hill St, Boston,MA,02215 +285892,20in Monitor,1,109.99,2019-11-09 23:04:00,105 14th St, San Francisco,CA,94016 +285893,Wired Headphones,1,11.99,2019-11-25 03:45:00,11 13th St, Seattle,WA,98101 +285894,Bose SoundSport Headphones,1,99.99,2019-11-17 21:13:00,305 4th St, Austin,TX,73301 +285895,Wired Headphones,1,11.99,2019-11-23 18:25:00,322 Hickory St, San Francisco,CA,94016 +285896,Apple Airpods Headphones,1,150.0,2019-11-18 14:39:00,240 Highland St, San Francisco,CA,94016 +285897,Lightning Charging Cable,1,14.95,2019-11-07 13:41:00,210 8th St, Atlanta,GA,30301 +285898,34in Ultrawide Monitor,1,379.99,2019-11-16 18:49:00,737 Jackson St, Los Angeles,CA,90001 +285899,Wired Headphones,1,11.99,2019-11-21 23:05:00,917 7th St, San Francisco,CA,94016 +285900,Lightning Charging Cable,1,14.95,2019-11-28 10:05:00,773 11th St, San Francisco,CA,94016 +285901,Wired Headphones,1,11.99,2019-11-18 19:44:00,620 Cherry St, San Francisco,CA,94016 +285902,Macbook Pro Laptop,1,1700.0,2019-11-01 18:06:00,931 Johnson St, Atlanta,GA,30301 +285903,AA Batteries (4-pack),2,3.84,2019-11-11 19:25:00,27 Church St, Boston,MA,02215 +285904,Lightning Charging Cable,1,14.95,2019-11-11 17:24:00,308 Highland St, New York City,NY,10001 +285905,27in FHD Monitor,1,149.99,2019-11-29 12:25:00,148 Cedar St, San Francisco,CA,94016 +285906,Lightning Charging Cable,1,14.95,2019-11-09 20:43:00,164 Walnut St, Boston,MA,02215 +285907,Lightning Charging Cable,2,14.95,2019-11-14 16:40:00,274 13th St, Los Angeles,CA,90001 +285908,Apple Airpods Headphones,1,150.0,2019-11-29 00:28:00,521 Maple St, New York City,NY,10001 +285909,iPhone,1,700.0,2019-11-08 15:17:00,277 Sunset St, Portland,ME,04101 +285910,Wired Headphones,1,11.99,2019-11-04 14:06:00,158 River St, San Francisco,CA,94016 +285911,AAA Batteries (4-pack),1,2.99,2019-11-02 08:15:00,896 Lake St, New York City,NY,10001 +285912,Apple Airpods Headphones,1,150.0,2019-11-23 17:22:00,330 Church St, Los Angeles,CA,90001 +285913,Wired Headphones,1,11.99,2019-11-22 17:04:00,344 11th St, New York City,NY,10001 +285914,AAA Batteries (4-pack),1,2.99,2019-11-17 18:53:00,252 14th St, New York City,NY,10001 +285915,27in FHD Monitor,1,149.99,2019-11-24 10:19:00,318 River St, Dallas,TX,75001 +285916,Lightning Charging Cable,1,14.95,2019-11-22 16:43:00,68 Wilson St, Boston,MA,02215 +285917,Apple Airpods Headphones,1,150.0,2019-11-06 23:03:00,449 Lake St, Portland,OR,97035 +285918,AAA Batteries (4-pack),1,2.99,2019-11-12 13:12:00,301 14th St, New York City,NY,10001 +285919,27in 4K Gaming Monitor,1,389.99,2019-11-12 11:02:00,998 9th St, Dallas,TX,75001 +285920,Google Phone,1,600.0,2019-11-13 15:21:00,663 6th St, Seattle,WA,98101 +285921,ThinkPad Laptop,1,999.99,2019-11-13 12:12:00,202 Spruce St, San Francisco,CA,94016 +285922,USB-C Charging Cable,1,11.95,2019-11-03 13:29:00,286 2nd St, Atlanta,GA,30301 +285923,AA Batteries (4-pack),1,3.84,2019-11-26 09:56:00,979 Dogwood St, San Francisco,CA,94016 +285924,ThinkPad Laptop,1,999.99,2019-11-17 22:22:00,840 Madison St, Boston,MA,02215 +285925,ThinkPad Laptop,1,999.99,2019-11-29 10:35:00,870 11th St, New York City,NY,10001 +285926,Lightning Charging Cable,1,14.95,2019-11-01 18:28:00,687 4th St, New York City,NY,10001 +285927,Wired Headphones,1,11.99,2019-11-28 15:31:00,279 10th St, Austin,TX,73301 +285928,AA Batteries (4-pack),2,3.84,2019-11-14 00:10:00,653 Meadow St, Los Angeles,CA,90001 +285928,Lightning Charging Cable,2,14.95,2019-11-14 00:10:00,653 Meadow St, Los Angeles,CA,90001 +285929,27in FHD Monitor,1,149.99,2019-11-19 07:02:00,217 Johnson St, Atlanta,GA,30301 +285930,Flatscreen TV,1,300.0,2019-11-24 13:58:00,89 Meadow St, Dallas,TX,75001 +285931,Lightning Charging Cable,1,14.95,2019-11-06 17:20:00,611 Johnson St, New York City,NY,10001 +285932,Flatscreen TV,1,300.0,2019-11-01 19:27:00,431 10th St, Atlanta,GA,30301 +285933,AAA Batteries (4-pack),1,2.99,2019-11-23 13:33:00,767 Lincoln St, Boston,MA,02215 +285934,Wired Headphones,1,11.99,2019-11-04 13:50:00,987 Ridge St, Los Angeles,CA,90001 +285935,27in FHD Monitor,1,149.99,2019-11-13 09:05:00,832 North St, Seattle,WA,98101 +285936,LG Dryer,1,600.0,2019-11-27 15:43:00,178 Main St, San Francisco,CA,94016 +285937,Wired Headphones,1,11.99,2019-11-08 15:19:00,210 Maple St, New York City,NY,10001 +285938,Apple Airpods Headphones,1,150.0,2019-11-08 18:20:00,268 Church St, Atlanta,GA,30301 +285939,Google Phone,1,600.0,2019-11-04 13:31:00,161 13th St, Los Angeles,CA,90001 +285940,iPhone,1,700.0,2019-11-12 08:16:00,88 Sunset St, Seattle,WA,98101 +285941,Apple Airpods Headphones,1,150.0,2019-11-03 19:29:00,135 Elm St, San Francisco,CA,94016 +285942,USB-C Charging Cable,2,11.95,2019-11-30 13:05:00,530 Meadow St, New York City,NY,10001 +285943,Wired Headphones,1,11.99,2019-11-02 22:00:00,1 12th St, San Francisco,CA,94016 +285944,USB-C Charging Cable,1,11.95,2019-11-19 15:18:00,943 Willow St, San Francisco,CA,94016 +285945,iPhone,1,700.0,2019-11-08 20:25:00,800 Maple St, San Francisco,CA,94016 +285946,USB-C Charging Cable,1,11.95,2019-11-28 13:48:00,368 Jefferson St, San Francisco,CA,94016 +285947,Vareebadd Phone,1,400.0,2019-11-19 22:52:00,28 Forest St, San Francisco,CA,94016 +285948,Bose SoundSport Headphones,1,99.99,2019-11-10 23:20:00,306 11th St, Dallas,TX,75001 +285949,Bose SoundSport Headphones,1,99.99,2019-11-22 19:07:00,660 Walnut St, Los Angeles,CA,90001 +285950,USB-C Charging Cable,1,11.95,2019-11-15 14:34:00,496 Johnson St, Austin,TX,73301 +285951,AAA Batteries (4-pack),1,2.99,2019-11-15 14:18:00,355 14th St, Seattle,WA,98101 +285952,20in Monitor,1,109.99,2019-11-25 14:28:00,402 Johnson St, San Francisco,CA,94016 +285953,Wired Headphones,1,11.99,2019-11-23 22:09:00,535 Johnson St, Dallas,TX,75001 +285954,Macbook Pro Laptop,1,1700.0,2019-11-17 18:13:00,83 Maple St, New York City,NY,10001 +285955,27in 4K Gaming Monitor,1,389.99,2019-11-16 13:29:00,962 Church St, Boston,MA,02215 +285956,AA Batteries (4-pack),1,3.84,2019-11-09 15:42:00,722 2nd St, Los Angeles,CA,90001 +285957,Wired Headphones,1,11.99,2019-11-18 19:10:00,29 9th St, Los Angeles,CA,90001 +285958,Bose SoundSport Headphones,1,99.99,2019-11-28 20:56:00,357 Meadow St, San Francisco,CA,94016 +285959,Wired Headphones,1,11.99,2019-11-04 18:56:00,299 Cedar St, Portland,OR,97035 +285960,27in 4K Gaming Monitor,1,389.99,2019-11-10 18:44:00,127 Jackson St, Los Angeles,CA,90001 +285961,27in FHD Monitor,1,149.99,2019-11-11 12:44:00,583 Park St, San Francisco,CA,94016 +285962,AAA Batteries (4-pack),1,2.99,2019-11-17 07:16:00,531 Center St, San Francisco,CA,94016 +285963,27in FHD Monitor,1,149.99,2019-11-10 10:34:00,510 Highland St, New York City,NY,10001 +285964,Apple Airpods Headphones,1,150.0,2019-11-07 09:57:00,607 Madison St, Seattle,WA,98101 +285965,Wired Headphones,2,11.99,2019-11-27 19:48:00,902 Meadow St, New York City,NY,10001 +285966,Lightning Charging Cable,2,14.95,2019-11-15 16:00:00,18 10th St, San Francisco,CA,94016 +285967,AA Batteries (4-pack),3,3.84,2019-11-23 11:32:00,921 Forest St, Austin,TX,73301 +285968,AA Batteries (4-pack),2,3.84,2019-11-08 15:41:00,742 Cherry St, Portland,OR,97035 +285969,Apple Airpods Headphones,1,150.0,2019-11-29 18:15:00,489 Cherry St, Los Angeles,CA,90001 +285970,AAA Batteries (4-pack),3,2.99,2019-11-22 12:40:00,902 River St, Los Angeles,CA,90001 +285971,USB-C Charging Cable,1,11.95,2019-11-05 13:04:00,497 Cherry St, New York City,NY,10001 +285972,Apple Airpods Headphones,1,150.0,2019-11-21 10:34:00,944 Lake St, New York City,NY,10001 +285973,AAA Batteries (4-pack),1,2.99,2019-11-03 19:43:00,373 Lakeview St, Portland,OR,97035 +285974,USB-C Charging Cable,1,11.95,2019-11-08 18:52:00,667 13th St, Seattle,WA,98101 +285975,Bose SoundSport Headphones,1,99.99,2019-11-07 17:11:00,155 Lake St, Seattle,WA,98101 +285976,USB-C Charging Cable,1,11.95,2019-11-27 09:10:00,890 Park St, New York City,NY,10001 +285977,AA Batteries (4-pack),1,3.84,2019-11-07 14:05:00,252 Walnut St, Los Angeles,CA,90001 +285978,Bose SoundSport Headphones,1,99.99,2019-11-16 09:09:00,226 Center St, Dallas,TX,75001 +285979,Apple Airpods Headphones,1,150.0,2019-11-25 12:41:00,426 Spruce St, Los Angeles,CA,90001 +285980,AA Batteries (4-pack),1,3.84,2019-11-29 14:32:00,841 Willow St, New York City,NY,10001 +285981,Bose SoundSport Headphones,1,99.99,2019-11-13 12:05:00,608 Madison St, Los Angeles,CA,90001 +285982,AA Batteries (4-pack),1,3.84,2019-11-13 11:26:00,258 Sunset St, Atlanta,GA,30301 +285983,AAA Batteries (4-pack),1,2.99,2019-11-04 14:05:00,419 13th St, Boston,MA,02215 +285984,Flatscreen TV,1,300.0,2019-11-12 19:42:00,219 4th St, San Francisco,CA,94016 +285985,AAA Batteries (4-pack),1,2.99,2019-11-08 08:29:00,268 14th St, Boston,MA,02215 +285986,27in FHD Monitor,1,149.99,2019-11-04 15:18:00,735 Main St, Seattle,WA,98101 +285987,Apple Airpods Headphones,1,150.0,2019-11-21 00:29:00,604 North St, San Francisco,CA,94016 +285988,Bose SoundSport Headphones,1,99.99,2019-11-04 18:11:00,1 Highland St, San Francisco,CA,94016 +285989,AAA Batteries (4-pack),1,2.99,2019-11-25 21:46:00,350 Spruce St, Los Angeles,CA,90001 +285990,AA Batteries (4-pack),1,3.84,2019-11-17 07:23:00,441 Highland St, Dallas,TX,75001 +285991,AA Batteries (4-pack),1,3.84,2019-11-23 17:37:00,651 Highland St, Boston,MA,02215 +285992,Wired Headphones,1,11.99,2019-11-01 13:35:00,719 Johnson St, Boston,MA,02215 +285993,USB-C Charging Cable,1,11.95,2019-11-09 12:35:00,668 2nd St, Atlanta,GA,30301 +285994,Macbook Pro Laptop,1,1700.0,2019-11-29 22:09:00,689 Hickory St, Atlanta,GA,30301 +285995,USB-C Charging Cable,1,11.95,2019-11-23 02:28:00,875 Maple St, Los Angeles,CA,90001 +285996,AAA Batteries (4-pack),1,2.99,2019-11-04 15:15:00,19 8th St, San Francisco,CA,94016 +285997,27in FHD Monitor,1,149.99,2019-11-07 22:37:00,481 7th St, Dallas,TX,75001 +285998,AAA Batteries (4-pack),1,2.99,2019-11-29 19:46:00,645 Church St, New York City,NY,10001 +285999,Lightning Charging Cable,1,14.95,2019-11-17 22:37:00,676 Cedar St, Atlanta,GA,30301 +286000,AA Batteries (4-pack),1,3.84,2019-11-29 08:57:00,848 9th St, San Francisco,CA,94016 +286001,AAA Batteries (4-pack),1,2.99,2019-11-28 21:38:00,190 12th St, Atlanta,GA,30301 +286002,USB-C Charging Cable,1,11.95,2019-11-30 07:41:00,584 4th St, Dallas,TX,75001 +286003,AA Batteries (4-pack),1,3.84,2019-11-09 05:44:00,355 Maple St, Boston,MA,02215 +286004,USB-C Charging Cable,1,11.95,2019-11-02 19:07:00,988 Park St, Boston,MA,02215 +286005,USB-C Charging Cable,1,11.95,2019-11-30 12:39:00,817 Walnut St, Boston,MA,02215 +286006,Google Phone,1,600.0,2019-11-21 06:40:00,692 5th St, Dallas,TX,75001 +286007,Apple Airpods Headphones,1,150.0,2019-11-11 09:32:00,463 10th St, Boston,MA,02215 +286008,Apple Airpods Headphones,1,150.0,2019-11-27 09:14:00,935 River St, San Francisco,CA,94016 +286009,Lightning Charging Cable,1,14.95,2019-11-13 13:34:00,956 Lakeview St, San Francisco,CA,94016 +286010,AAA Batteries (4-pack),1,2.99,2019-11-27 19:55:00,786 14th St, San Francisco,CA,94016 +286011,iPhone,1,700.0,2019-11-16 10:43:00,507 12th St, San Francisco,CA,94016 +286012,Bose SoundSport Headphones,1,99.99,2019-11-29 22:45:00,285 North St, New York City,NY,10001 +286013,27in 4K Gaming Monitor,1,389.99,2019-11-28 22:50:00,738 Elm St, Los Angeles,CA,90001 +286014,27in 4K Gaming Monitor,1,389.99,2019-11-28 16:30:00,509 Park St, Seattle,WA,98101 +286015,Bose SoundSport Headphones,1,99.99,2019-11-19 10:23:00,135 Chestnut St, San Francisco,CA,94016 +286016,Wired Headphones,1,11.99,2019-11-19 13:39:00,140 Spruce St, San Francisco,CA,94016 +286017,ThinkPad Laptop,1,999.99,2019-11-16 19:26:00,697 Spruce St, New York City,NY,10001 +286018,Flatscreen TV,1,300.0,2019-11-22 15:43:00,951 Elm St, Austin,TX,73301 +286019,27in FHD Monitor,1,149.99,2019-11-20 13:12:00,620 Madison St, Los Angeles,CA,90001 +286020,Bose SoundSport Headphones,1,99.99,2019-11-11 17:22:00,832 Wilson St, Seattle,WA,98101 +286021,27in 4K Gaming Monitor,1,389.99,2019-11-04 17:29:00,295 Wilson St, Los Angeles,CA,90001 +286022,Apple Airpods Headphones,1,150.0,2019-11-13 15:45:00,531 1st St, Los Angeles,CA,90001 +286023,Lightning Charging Cable,1,14.95,2019-11-17 11:46:00,811 11th St, Los Angeles,CA,90001 +286024,AAA Batteries (4-pack),1,2.99,2019-11-25 21:05:00,918 4th St, San Francisco,CA,94016 +286025,Macbook Pro Laptop,1,1700.0,2019-11-15 08:49:00,998 Cherry St, San Francisco,CA,94016 +286026,USB-C Charging Cable,1,11.95,2019-11-27 02:25:00,910 Spruce St, San Francisco,CA,94016 +286027,AAA Batteries (4-pack),1,2.99,2019-11-21 13:33:00,513 Dogwood St, San Francisco,CA,94016 +286028,Lightning Charging Cable,1,14.95,2019-11-13 11:16:00,680 2nd St, San Francisco,CA,94016 +286029,34in Ultrawide Monitor,1,379.99,2019-11-10 20:11:00,613 Pine St, Los Angeles,CA,90001 +286030,Apple Airpods Headphones,1,150.0,2019-11-13 18:55:00,787 Cherry St, Los Angeles,CA,90001 +286031,LG Washing Machine,1,600.0,2019-11-27 12:30:00,691 Lakeview St, New York City,NY,10001 +286032,ThinkPad Laptop,1,999.99,2019-11-17 11:44:00,413 8th St, Los Angeles,CA,90001 +286033,Apple Airpods Headphones,1,150.0,2019-11-03 19:35:00,876 Lakeview St, New York City,NY,10001 +286034,Lightning Charging Cable,1,14.95,2019-11-01 18:00:00,529 North St, Portland,OR,97035 +286035,AAA Batteries (4-pack),1,2.99,2019-11-11 17:05:00,896 Adams St, Dallas,TX,75001 +286036,27in FHD Monitor,1,149.99,2019-11-28 11:19:00,539 Lincoln St, Los Angeles,CA,90001 +286037,Flatscreen TV,1,300.0,2019-11-24 12:10:00,822 Lake St, San Francisco,CA,94016 +286038,Google Phone,1,600.0,2019-11-12 19:33:00,99 Adams St, Seattle,WA,98101 +286039,AAA Batteries (4-pack),2,2.99,2019-11-17 22:35:00,578 Lakeview St, Portland,OR,97035 +286040,USB-C Charging Cable,2,11.95,2019-11-02 17:40:00,246 North St, San Francisco,CA,94016 +286041,Wired Headphones,2,11.99,2019-11-27 17:38:00,919 Meadow St, Los Angeles,CA,90001 +286042,27in FHD Monitor,1,149.99,2019-11-11 09:44:00,744 North St, Portland,OR,97035 +286043,USB-C Charging Cable,1,11.95,2019-11-10 15:19:00,880 5th St, Boston,MA,02215 +286044,Bose SoundSport Headphones,1,99.99,2019-11-19 18:53:00,825 Church St, New York City,NY,10001 +286045,Wired Headphones,2,11.99,2019-11-16 09:33:00,935 West St, Boston,MA,02215 +286046,Lightning Charging Cable,1,14.95,2019-11-30 19:37:00,285 Walnut St, New York City,NY,10001 +286047,Macbook Pro Laptop,1,1700.0,2019-11-10 10:58:00,147 10th St, San Francisco,CA,94016 +286048,iPhone,1,700.0,2019-11-03 22:29:00,361 North St, Dallas,TX,75001 +286049,AAA Batteries (4-pack),1,2.99,2019-11-06 14:24:00,748 7th St, San Francisco,CA,94016 +286050,Lightning Charging Cable,1,14.95,2019-11-29 07:52:00,968 Lakeview St, Boston,MA,02215 +286051,Wired Headphones,1,11.99,2019-11-07 10:25:00,555 12th St, Los Angeles,CA,90001 +286052,Macbook Pro Laptop,1,1700.0,2019-11-01 07:32:00,432 Maple St, New York City,NY,10001 +286053,Lightning Charging Cable,2,14.95,2019-11-03 20:14:00,209 Willow St, Boston,MA,02215 +286054,Bose SoundSport Headphones,1,99.99,2019-11-20 07:23:00,422 Jefferson St, San Francisco,CA,94016 +286055,Apple Airpods Headphones,1,150.0,2019-11-28 11:26:00,2 River St, Seattle,WA,98101 +286056,AAA Batteries (4-pack),1,2.99,2019-11-22 12:39:00,293 Main St, New York City,NY,10001 +286057,AA Batteries (4-pack),1,3.84,2019-11-03 10:46:00,832 Jefferson St, Portland,OR,97035 +286058,Bose SoundSport Headphones,1,99.99,2019-11-13 02:35:00,395 Adams St, Los Angeles,CA,90001 +286059,Wired Headphones,1,11.99,2019-11-18 18:02:00,260 Highland St, New York City,NY,10001 +286060,Macbook Pro Laptop,1,1700.0,2019-11-10 13:45:00,323 Highland St, Atlanta,GA,30301 +286061,AAA Batteries (4-pack),1,2.99,2019-11-25 12:39:00,756 Hickory St, Boston,MA,02215 +286062,Apple Airpods Headphones,1,150.0,2019-11-01 14:23:00,155 Forest St, San Francisco,CA,94016 +286063,Google Phone,1,600.0,2019-11-27 14:58:00,759 Main St, San Francisco,CA,94016 +286064,Bose SoundSport Headphones,1,99.99,2019-11-30 17:25:00,477 Jefferson St, Portland,ME,04101 +286065,Wired Headphones,1,11.99,2019-11-12 14:14:00,223 Johnson St, San Francisco,CA,94016 +286066,Bose SoundSport Headphones,1,99.99,2019-11-27 09:26:00,900 Jefferson St, Seattle,WA,98101 +286067,Bose SoundSport Headphones,1,99.99,2019-11-05 19:42:00,921 Jefferson St, Boston,MA,02215 +286068,USB-C Charging Cable,1,11.95,2019-11-17 13:30:00,398 Center St, Boston,MA,02215 +286069,Bose SoundSport Headphones,1,99.99,2019-11-08 17:39:00,354 Walnut St, Dallas,TX,75001 +286070,USB-C Charging Cable,1,11.95,2019-11-23 09:07:00,132 9th St, Los Angeles,CA,90001 +286071,Wired Headphones,1,11.99,2019-11-24 14:08:00,763 Lake St, New York City,NY,10001 +286072,AA Batteries (4-pack),1,3.84,2019-11-16 13:20:00,344 11th St, San Francisco,CA,94016 +286073,27in 4K Gaming Monitor,1,389.99,2019-11-23 21:33:00,818 Walnut St, San Francisco,CA,94016 +286074,Wired Headphones,1,11.99,2019-11-19 14:43:00,687 8th St, San Francisco,CA,94016 +286075,AAA Batteries (4-pack),1,2.99,2019-11-27 19:40:00,265 Jackson St, New York City,NY,10001 +286076,Google Phone,1,600.0,2019-11-02 19:17:00,350 4th St, Atlanta,GA,30301 +286076,Wired Headphones,1,11.99,2019-11-02 19:17:00,350 4th St, Atlanta,GA,30301 +286077,Lightning Charging Cable,1,14.95,2019-11-21 18:05:00,729 North St, Seattle,WA,98101 +286078,27in FHD Monitor,1,149.99,2019-11-23 19:22:00,309 13th St, Boston,MA,02215 +286079,iPhone,1,700.0,2019-11-07 15:50:00,951 Walnut St, New York City,NY,10001 +286079,Lightning Charging Cable,1,14.95,2019-11-07 15:50:00,951 Walnut St, New York City,NY,10001 +286080,AA Batteries (4-pack),1,3.84,2019-11-10 09:28:00,681 Willow St, Atlanta,GA,30301 +286081,Lightning Charging Cable,1,14.95,2019-11-12 14:22:00,845 Ridge St, Dallas,TX,75001 +286082,27in FHD Monitor,1,149.99,2019-11-25 19:47:00,653 Center St, Los Angeles,CA,90001 +286083,AA Batteries (4-pack),2,3.84,2019-11-05 19:36:00,334 Adams St, Los Angeles,CA,90001 +286084,20in Monitor,1,109.99,2019-11-27 11:17:00,841 13th St, Los Angeles,CA,90001 +286085,ThinkPad Laptop,1,999.99,2019-11-11 18:19:00,667 2nd St, Los Angeles,CA,90001 +286086,34in Ultrawide Monitor,1,379.99,2019-11-05 16:29:00,609 Jefferson St, Dallas,TX,75001 +286087,USB-C Charging Cable,1,11.95,2019-11-11 18:36:00,191 Johnson St, San Francisco,CA,94016 +286088,Apple Airpods Headphones,1,150.0,2019-11-18 14:03:00,304 Adams St, San Francisco,CA,94016 +286089,AAA Batteries (4-pack),1,2.99,2019-11-01 16:52:00,215 12th St, Dallas,TX,75001 +286090,Google Phone,1,600.0,2019-11-29 17:19:00,497 South St, Austin,TX,73301 +286091,27in FHD Monitor,1,149.99,2019-11-01 07:32:00,677 North St, Los Angeles,CA,90001 +286092,20in Monitor,1,109.99,2019-11-06 12:30:00,49 Meadow St, Boston,MA,02215 +286093,AA Batteries (4-pack),1,3.84,2019-11-16 20:12:00,763 14th St, Los Angeles,CA,90001 +286094,USB-C Charging Cable,2,11.95,2019-11-02 09:33:00,22 Cherry St, Dallas,TX,75001 +286095,USB-C Charging Cable,1,11.95,2019-11-23 07:36:00,141 4th St, New York City,NY,10001 +286096,AA Batteries (4-pack),1,3.84,2019-11-28 15:46:00,369 10th St, Boston,MA,02215 +286097,AAA Batteries (4-pack),1,2.99,2019-11-10 16:08:00,439 Adams St, San Francisco,CA,94016 +286098,USB-C Charging Cable,1,11.95,2019-11-08 19:40:00,857 Highland St, Portland,OR,97035 +286099,AAA Batteries (4-pack),1,2.99,2019-11-05 09:53:00,257 Elm St, Seattle,WA,98101 +286100,ThinkPad Laptop,1,999.99,2019-11-15 16:07:00,387 Hickory St, San Francisco,CA,94016 +286101,27in 4K Gaming Monitor,1,389.99,2019-11-04 20:50:00,309 5th St, Atlanta,GA,30301 +286102,27in 4K Gaming Monitor,1,389.99,2019-11-03 21:01:00,300 Park St, Austin,TX,73301 +286103,AA Batteries (4-pack),2,3.84,2019-11-04 20:03:00,271 Hill St, San Francisco,CA,94016 +286104,AAA Batteries (4-pack),1,2.99,2019-11-14 18:55:00,766 Cherry St, San Francisco,CA,94016 +286105,Wired Headphones,1,11.99,2019-11-19 21:32:00,757 Meadow St, San Francisco,CA,94016 +286106,AAA Batteries (4-pack),4,2.99,2019-11-18 14:34:00,152 Park St, New York City,NY,10001 +286107,AA Batteries (4-pack),2,3.84,2019-11-15 19:54:00,169 South St, Atlanta,GA,30301 +286108,Lightning Charging Cable,1,14.95,2019-11-11 22:46:00,877 Main St, San Francisco,CA,94016 +286109,Lightning Charging Cable,1,14.95,2019-11-06 23:14:00,262 Center St, Los Angeles,CA,90001 +286110,Macbook Pro Laptop,1,1700.0,2019-11-15 11:15:00,91 Lake St, San Francisco,CA,94016 +286111,27in FHD Monitor,1,149.99,2019-11-19 20:04:00,97 1st St, Boston,MA,02215 +286112,Google Phone,1,600.0,2019-11-14 00:06:00,263 Johnson St, New York City,NY,10001 +286112,Wired Headphones,1,11.99,2019-11-14 00:06:00,263 Johnson St, New York City,NY,10001 +286113,AAA Batteries (4-pack),4,2.99,2019-11-02 08:46:00,572 North St, San Francisco,CA,94016 +286114,AA Batteries (4-pack),1,3.84,2019-11-30 11:24:00,340 Maple St, Portland,ME,04101 +286115,Lightning Charging Cable,1,14.95,2019-11-16 21:41:00,559 Willow St, San Francisco,CA,94016 +286116,Lightning Charging Cable,2,14.95,2019-11-20 20:16:00,866 7th St, Boston,MA,02215 +286117,Lightning Charging Cable,1,14.95,2019-11-29 15:14:00,938 1st St, Seattle,WA,98101 +286118,27in FHD Monitor,1,149.99,2019-11-15 07:41:00,861 Jefferson St, San Francisco,CA,94016 +286119,27in FHD Monitor,1,149.99,2019-11-17 08:59:00,105 Ridge St, Los Angeles,CA,90001 +286120,AA Batteries (4-pack),1,3.84,2019-11-12 10:13:00,182 10th St, San Francisco,CA,94016 +286121,20in Monitor,1,109.99,2019-11-25 11:59:00,242 13th St, New York City,NY,10001 +286122,34in Ultrawide Monitor,1,379.99,2019-11-06 14:10:00,638 7th St, Los Angeles,CA,90001 +286123,Wired Headphones,1,11.99,2019-11-18 02:32:00,798 Church St, San Francisco,CA,94016 +286124,ThinkPad Laptop,1,999.99,2019-11-11 17:04:00,816 Sunset St, Atlanta,GA,30301 +286125,USB-C Charging Cable,1,11.95,2019-11-30 08:32:00,713 Cedar St, Los Angeles,CA,90001 +286126,Lightning Charging Cable,1,14.95,2019-11-21 17:28:00,107 Adams St, San Francisco,CA,94016 +286127,Wired Headphones,1,11.99,2019-11-17 09:48:00,623 8th St, Los Angeles,CA,90001 +286128,Flatscreen TV,1,300.0,2019-11-04 11:49:00,62 Jackson St, Los Angeles,CA,90001 +286129,LG Washing Machine,1,600.0,2019-11-19 19:31:00,781 5th St, Los Angeles,CA,90001 +286130,27in 4K Gaming Monitor,1,389.99,2019-11-08 19:51:00,704 Walnut St, Austin,TX,73301 +286131,Apple Airpods Headphones,1,150.0,2019-11-02 16:29:00,188 9th St, New York City,NY,10001 +286132,27in FHD Monitor,1,149.99,2019-11-19 13:44:00,972 Washington St, Portland,OR,97035 +286133,AAA Batteries (4-pack),1,2.99,2019-11-21 21:56:00,78 Forest St, Atlanta,GA,30301 +286134,USB-C Charging Cable,1,11.95,2019-11-28 09:30:00,40 12th St, San Francisco,CA,94016 +286135,Wired Headphones,2,11.99,2019-11-08 20:30:00,18 Cherry St, Los Angeles,CA,90001 +286135,USB-C Charging Cable,1,11.95,2019-11-08 20:30:00,18 Cherry St, Los Angeles,CA,90001 +286136,USB-C Charging Cable,1,11.95,2019-11-12 22:27:00,816 Lake St, Atlanta,GA,30301 +286137,34in Ultrawide Monitor,1,379.99,2019-11-19 09:15:00,262 10th St, San Francisco,CA,94016 +286138,Lightning Charging Cable,1,14.95,2019-11-15 18:12:00,526 13th St, San Francisco,CA,94016 +286139,AAA Batteries (4-pack),2,2.99,2019-11-20 14:41:00,278 Maple St, Los Angeles,CA,90001 +286140,Wired Headphones,1,11.99,2019-11-24 14:37:00,252 Spruce St, Dallas,TX,75001 +286141,27in FHD Monitor,1,149.99,2019-11-16 19:53:00,787 10th St, Austin,TX,73301 +286142,AA Batteries (4-pack),2,3.84,2019-11-02 11:10:00,505 2nd St, Portland,OR,97035 +286143,iPhone,1,700.0,2019-11-30 22:46:00,453 South St, Portland,OR,97035 +286143,Lightning Charging Cable,1,14.95,2019-11-30 22:46:00,453 South St, Portland,OR,97035 +286144,27in FHD Monitor,1,149.99,2019-11-19 20:59:00,377 Jefferson St, New York City,NY,10001 +286145,Macbook Pro Laptop,1,1700.0,2019-11-07 17:18:00,80 Wilson St, Los Angeles,CA,90001 +286146,Apple Airpods Headphones,1,150.0,2019-11-13 18:12:00,595 Ridge St, Seattle,WA,98101 +286147,Apple Airpods Headphones,1,150.0,2019-11-05 18:59:00,568 5th St, Austin,TX,73301 +286148,ThinkPad Laptop,1,999.99,2019-11-10 07:09:00,710 Walnut St, Boston,MA,02215 +286149,USB-C Charging Cable,1,11.95,2019-11-05 20:10:00,457 Meadow St, San Francisco,CA,94016 +286150,iPhone,1,700.0,2019-11-25 18:18:00,66 13th St, Boston,MA,02215 +286151,Apple Airpods Headphones,1,150.0,2019-11-29 10:38:00,903 Cherry St, Boston,MA,02215 +286152,Wired Headphones,1,11.99,2019-11-17 19:40:00,800 Cedar St, San Francisco,CA,94016 +286153,27in 4K Gaming Monitor,1,389.99,2019-11-11 12:35:00,143 Center St, Dallas,TX,75001 +286154,27in FHD Monitor,1,149.99,2019-11-06 14:21:00,834 Hickory St, Boston,MA,02215 +286155,USB-C Charging Cable,1,11.95,2019-11-11 17:14:00,459 Madison St, San Francisco,CA,94016 +286156,ThinkPad Laptop,1,999.99,2019-11-06 11:16:00,481 Pine St, Boston,MA,02215 +286157,Bose SoundSport Headphones,1,99.99,2019-11-30 22:27:00,386 Dogwood St, San Francisco,CA,94016 +286158,Lightning Charging Cable,1,14.95,2019-11-28 16:09:00,686 Maple St, Boston,MA,02215 +286159,27in 4K Gaming Monitor,1,389.99,2019-11-15 12:10:00,605 Ridge St, Los Angeles,CA,90001 +286160,USB-C Charging Cable,1,11.95,2019-11-13 17:44:00,700 Adams St, New York City,NY,10001 +286161,USB-C Charging Cable,1,11.95,2019-11-23 18:28:00,704 Center St, San Francisco,CA,94016 +286162,Flatscreen TV,1,300.0,2019-11-16 18:29:00,436 Church St, San Francisco,CA,94016 +286163,iPhone,1,700.0,2019-11-09 01:08:00,986 Elm St, Austin,TX,73301 +286164,Macbook Pro Laptop,1,1700.0,2019-11-02 15:23:00,60 1st St, San Francisco,CA,94016 +286165,27in 4K Gaming Monitor,1,389.99,2019-11-19 11:01:00,945 14th St, Dallas,TX,75001 +286166,Bose SoundSport Headphones,2,99.99,2019-11-16 15:55:00,617 Adams St, Boston,MA,02215 +286167,USB-C Charging Cable,1,11.95,2019-11-14 08:35:00,354 Washington St, San Francisco,CA,94016 +286168,Wired Headphones,1,11.99,2019-11-30 15:18:00,15 Walnut St, Dallas,TX,75001 +286169,Wired Headphones,1,11.99,2019-11-02 14:43:00,290 2nd St, Portland,OR,97035 +286170,AA Batteries (4-pack),1,3.84,2019-11-08 04:24:00,320 Walnut St, San Francisco,CA,94016 +286171,20in Monitor,1,109.99,2019-11-23 19:56:00,770 Hill St, New York City,NY,10001 +286172,AA Batteries (4-pack),1,3.84,2019-11-01 20:55:00,485 Hickory St, Boston,MA,02215 +286173,AA Batteries (4-pack),1,3.84,2019-11-23 11:35:00,161 Willow St, Boston,MA,02215 +286174,Vareebadd Phone,1,400.0,2019-11-02 11:33:00,581 Hill St, San Francisco,CA,94016 +286174,USB-C Charging Cable,1,11.95,2019-11-02 11:33:00,581 Hill St, San Francisco,CA,94016 +286175,Flatscreen TV,1,300.0,2019-11-13 10:02:00,560 North St, Austin,TX,73301 +286176,Bose SoundSport Headphones,1,99.99,2019-11-14 13:39:00,713 North St, Dallas,TX,75001 +286177,AAA Batteries (4-pack),1,2.99,2019-11-25 12:00:00,750 12th St, San Francisco,CA,94016 +286178,USB-C Charging Cable,1,11.95,2019-11-08 09:54:00,529 Center St, Los Angeles,CA,90001 +286179,USB-C Charging Cable,1,11.95,2019-11-24 09:32:00,477 14th St, Dallas,TX,75001 +286180,AAA Batteries (4-pack),1,2.99,2019-11-28 17:08:00,241 Main St, New York City,NY,10001 +286181,Lightning Charging Cable,1,14.95,2019-11-19 13:04:00,847 Main St, Atlanta,GA,30301 +286182,27in FHD Monitor,1,149.99,2019-11-05 02:26:00,525 Walnut St, Portland,OR,97035 +286183,Apple Airpods Headphones,1,150.0,2019-11-02 11:36:00,35 Hill St, Los Angeles,CA,90001 +286184,Bose SoundSport Headphones,1,99.99,2019-11-14 14:59:00,279 Spruce St, Seattle,WA,98101 +286185,AA Batteries (4-pack),1,3.84,2019-11-17 23:15:00,396 Forest St, Boston,MA,02215 +286186,USB-C Charging Cable,1,11.95,2019-11-06 15:54:00,465 8th St, Portland,OR,97035 +286187,AA Batteries (4-pack),1,3.84,2019-11-19 14:56:00,126 Elm St, Boston,MA,02215 +286188,Wired Headphones,1,11.99,2019-11-18 17:33:00,311 Hill St, Dallas,TX,75001 +286189,AA Batteries (4-pack),1,3.84,2019-11-12 00:41:00,427 Hickory St, Los Angeles,CA,90001 +286190,Google Phone,1,600.0,2019-11-12 10:51:00,218 West St, San Francisco,CA,94016 +286191,AAA Batteries (4-pack),3,2.99,2019-11-24 17:10:00,595 Willow St, Seattle,WA,98101 +286192,34in Ultrawide Monitor,1,379.99,2019-11-24 19:02:00,213 Church St, Atlanta,GA,30301 +286193,AA Batteries (4-pack),1,3.84,2019-11-28 07:07:00,221 Lakeview St, Portland,OR,97035 +286194,34in Ultrawide Monitor,1,379.99,2019-11-27 18:15:00,398 Meadow St, Atlanta,GA,30301 +286195,Google Phone,1,600.0,2019-11-10 11:09:00,711 12th St, San Francisco,CA,94016 +286196,Lightning Charging Cable,1,14.95,2019-11-19 11:57:00,248 Walnut St, San Francisco,CA,94016 +286197,Lightning Charging Cable,1,14.95,2019-11-08 12:03:00,710 North St, Los Angeles,CA,90001 +286198,AA Batteries (4-pack),1,3.84,2019-11-13 11:02:00,15 8th St, Los Angeles,CA,90001 +286199,Bose SoundSport Headphones,1,99.99,2019-11-14 12:34:00,260 Main St, Boston,MA,02215 +286200,Flatscreen TV,1,300.0,2019-11-23 20:10:00,335 Hill St, Los Angeles,CA,90001 +286201,USB-C Charging Cable,1,11.95,2019-11-09 14:12:00,225 13th St, Los Angeles,CA,90001 +286202,USB-C Charging Cable,1,11.95,2019-11-16 15:17:00,206 Main St, Dallas,TX,75001 +286203,27in FHD Monitor,1,149.99,2019-11-15 10:13:00,589 6th St, San Francisco,CA,94016 +286204,Lightning Charging Cable,1,14.95,2019-11-04 16:54:00,447 North St, Los Angeles,CA,90001 +286205,34in Ultrawide Monitor,1,379.99,2019-11-25 16:22:00,260 Main St, Los Angeles,CA,90001 +286206,AAA Batteries (4-pack),1,2.99,2019-11-12 13:16:00,562 Cedar St, New York City,NY,10001 +286207,Bose SoundSport Headphones,1,99.99,2019-11-04 15:00:00,542 4th St, Atlanta,GA,30301 +286208,Bose SoundSport Headphones,1,99.99,2019-11-18 13:05:00,488 12th St, San Francisco,CA,94016 +286209,USB-C Charging Cable,1,11.95,2019-11-19 11:32:00,548 14th St, Dallas,TX,75001 +286210,AAA Batteries (4-pack),1,2.99,2019-11-25 15:08:00,992 Madison St, Boston,MA,02215 +286211,Wired Headphones,1,11.99,2019-11-07 10:39:00,732 Sunset St, New York City,NY,10001 +286212,AA Batteries (4-pack),1,3.84,2019-11-18 13:45:00,207 8th St, San Francisco,CA,94016 +286213,Wired Headphones,1,11.99,2019-11-27 14:01:00,163 Lakeview St, Portland,OR,97035 +286214,Lightning Charging Cable,1,14.95,2019-11-29 10:02:00,21 10th St, Los Angeles,CA,90001 +286215,AAA Batteries (4-pack),1,2.99,2019-11-25 16:35:00,556 Chestnut St, Atlanta,GA,30301 +286216,AAA Batteries (4-pack),1,2.99,2019-11-06 12:43:00,3 2nd St, Los Angeles,CA,90001 +286217,34in Ultrawide Monitor,1,379.99,2019-11-20 11:48:00,230 Cedar St, Los Angeles,CA,90001 +286218,Lightning Charging Cable,1,14.95,2019-11-14 11:56:00,818 Hickory St, New York City,NY,10001 +286219,USB-C Charging Cable,2,11.95,2019-11-02 00:47:00,252 River St, San Francisco,CA,94016 +286220,Lightning Charging Cable,1,14.95,2019-11-21 06:51:00,373 Lincoln St, Boston,MA,02215 +286221,AA Batteries (4-pack),4,3.84,2019-11-15 14:23:00,259 11th St, Atlanta,GA,30301 +286222,Lightning Charging Cable,1,14.95,2019-11-17 18:30:00,421 8th St, San Francisco,CA,94016 +286223,AA Batteries (4-pack),1,3.84,2019-11-26 05:34:00,528 West St, Portland,OR,97035 +286224,Wired Headphones,1,11.99,2019-11-30 16:34:00,649 4th St, New York City,NY,10001 +286224,34in Ultrawide Monitor,1,379.99,2019-11-30 16:34:00,649 4th St, New York City,NY,10001 +286225,Macbook Pro Laptop,1,1700.0,2019-11-29 22:56:00,420 1st St, Portland,OR,97035 +286226,Lightning Charging Cable,1,14.95,2019-11-25 13:26:00,966 Chestnut St, San Francisco,CA,94016 +286227,AAA Batteries (4-pack),1,2.99,2019-11-10 18:14:00,567 Center St, Seattle,WA,98101 +286228,AAA Batteries (4-pack),1,2.99,2019-11-03 11:57:00,333 Wilson St, New York City,NY,10001 +286229,Wired Headphones,1,11.99,2019-11-08 21:45:00,800 7th St, San Francisco,CA,94016 +286230,27in 4K Gaming Monitor,1,389.99,2019-11-04 22:24:00,43 5th St, Boston,MA,02215 +286231,Bose SoundSport Headphones,1,99.99,2019-11-21 13:06:00,589 2nd St, Boston,MA,02215 +286232,Vareebadd Phone,1,400.0,2019-11-17 17:33:00,682 Jefferson St, San Francisco,CA,94016 +286233,Bose SoundSport Headphones,1,99.99,2019-11-17 07:33:00,351 5th St, Dallas,TX,75001 +286234,Flatscreen TV,1,300.0,2019-11-13 10:07:00,801 5th St, Austin,TX,73301 +286235,USB-C Charging Cable,1,11.95,2019-11-06 19:19:00,597 Hickory St, Boston,MA,02215 +286236,Google Phone,1,600.0,2019-11-05 21:21:00,3 Pine St, Dallas,TX,75001 +286236,USB-C Charging Cable,1,11.95,2019-11-05 21:21:00,3 Pine St, Dallas,TX,75001 +286237,Bose SoundSport Headphones,1,99.99,2019-11-26 20:12:00,878 Pine St, Atlanta,GA,30301 +286238,USB-C Charging Cable,1,11.95,2019-11-23 10:20:00,551 Maple St, New York City,NY,10001 +286239,Bose SoundSport Headphones,1,99.99,2019-11-08 10:33:00,363 Hickory St, Seattle,WA,98101 +286240,AAA Batteries (4-pack),1,2.99,2019-11-29 10:15:00,175 Lincoln St, Portland,OR,97035 +286241,Apple Airpods Headphones,1,150.0,2019-11-18 16:43:00,256 Adams St, Atlanta,GA,30301 +286242,Wired Headphones,1,11.99,2019-11-30 20:40:00,103 6th St, Los Angeles,CA,90001 +286243,AAA Batteries (4-pack),3,2.99,2019-11-06 16:17:00,815 Jefferson St, Los Angeles,CA,90001 +286244,Apple Airpods Headphones,1,150.0,2019-11-13 13:05:00,296 Adams St, Dallas,TX,75001 +286245,Wired Headphones,1,11.99,2019-11-05 19:47:00,636 14th St, San Francisco,CA,94016 +286246,34in Ultrawide Monitor,1,379.99,2019-11-03 20:16:00,544 Lake St, New York City,NY,10001 +286247,USB-C Charging Cable,1,11.95,2019-11-16 13:51:00,623 Willow St, Boston,MA,02215 +286248,Apple Airpods Headphones,1,150.0,2019-11-08 14:01:00,686 Cedar St, Los Angeles,CA,90001 +286249,20in Monitor,1,109.99,2019-11-01 09:17:00,405 2nd St, San Francisco,CA,94016 +286250,Macbook Pro Laptop,1,1700.0,2019-11-19 10:27:00,119 Lakeview St, Los Angeles,CA,90001 +286251,AAA Batteries (4-pack),2,2.99,2019-11-15 18:29:00,72 9th St, San Francisco,CA,94016 +286252,iPhone,1,700.0,2019-11-27 19:30:00,322 Jackson St, Dallas,TX,75001 +286253,Wired Headphones,2,11.99,2019-11-18 17:33:00,904 Maple St, Portland,OR,97035 +286254,Wired Headphones,1,11.99,2019-11-28 15:17:00,405 Johnson St, San Francisco,CA,94016 +286255,AAA Batteries (4-pack),1,2.99,2019-11-17 18:55:00,169 2nd St, San Francisco,CA,94016 +286256,AA Batteries (4-pack),1,3.84,2019-11-02 15:29:00,733 Lakeview St, New York City,NY,10001 +286257,AA Batteries (4-pack),1,3.84,2019-11-23 18:58:00,861 Willow St, New York City,NY,10001 +286258,Apple Airpods Headphones,1,150.0,2019-11-04 12:52:00,730 Lincoln St, New York City,NY,10001 +286259,Apple Airpods Headphones,1,150.0,2019-11-28 23:28:00,230 5th St, Portland,OR,97035 +286260,Apple Airpods Headphones,1,150.0,2019-11-02 14:53:00,610 South St, Los Angeles,CA,90001 +286261,27in FHD Monitor,1,149.99,2019-11-16 01:02:00,915 Center St, Los Angeles,CA,90001 +286262,Flatscreen TV,1,300.0,2019-11-25 01:10:00,839 North St, Dallas,TX,75001 +286263,Lightning Charging Cable,1,14.95,2019-11-02 10:06:00,791 4th St, Los Angeles,CA,90001 +286264,Wired Headphones,1,11.99,2019-11-18 20:37:00,997 Park St, Boston,MA,02215 +286265,USB-C Charging Cable,1,11.95,2019-11-18 16:15:00,79 2nd St, Seattle,WA,98101 +286266,Flatscreen TV,1,300.0,2019-11-24 14:19:00,518 Wilson St, San Francisco,CA,94016 +286267,Bose SoundSport Headphones,1,99.99,2019-11-03 23:05:00,541 1st St, San Francisco,CA,94016 +286268,Wired Headphones,1,11.99,2019-11-13 21:51:00,898 Forest St, Seattle,WA,98101 +286269,27in FHD Monitor,1,149.99,2019-11-23 16:34:00,294 Spruce St, Los Angeles,CA,90001 +286270,34in Ultrawide Monitor,1,379.99,2019-11-22 18:36:00,137 Center St, Atlanta,GA,30301 +286271,ThinkPad Laptop,1,999.99,2019-11-02 01:18:00,548 Sunset St, New York City,NY,10001 +286272,AAA Batteries (4-pack),2,2.99,2019-11-27 11:45:00,932 Washington St, San Francisco,CA,94016 +286273,Google Phone,1,600.0,2019-11-27 17:07:00,612 Lake St, San Francisco,CA,94016 +286273,Bose SoundSport Headphones,1,99.99,2019-11-27 17:07:00,612 Lake St, San Francisco,CA,94016 +286274,AA Batteries (4-pack),1,3.84,2019-11-14 20:04:00,943 13th St, New York City,NY,10001 +286275,Lightning Charging Cable,1,14.95,2019-11-21 09:37:00,407 Meadow St, Atlanta,GA,30301 +286276,Flatscreen TV,1,300.0,2019-11-07 09:33:00,304 10th St, New York City,NY,10001 +286277,Lightning Charging Cable,1,14.95,2019-11-19 21:52:00,54 4th St, Los Angeles,CA,90001 +286278,USB-C Charging Cable,1,11.95,2019-11-20 15:13:00,14 1st St, Atlanta,GA,30301 +286279,20in Monitor,1,109.99,2019-11-21 20:04:00,580 Lincoln St, Boston,MA,02215 +286280,Apple Airpods Headphones,1,150.0,2019-11-25 07:32:00,812 Meadow St, New York City,NY,10001 +286281,USB-C Charging Cable,1,11.95,2019-11-16 23:55:00,155 Dogwood St, Dallas,TX,75001 +286282,AAA Batteries (4-pack),1,2.99,2019-11-01 09:02:00,630 River St, New York City,NY,10001 +286283,Wired Headphones,1,11.99,2019-11-05 21:27:00,295 Lincoln St, San Francisco,CA,94016 +286284,Flatscreen TV,1,300.0,2019-11-18 12:42:00,893 Main St, Los Angeles,CA,90001 +286285,Lightning Charging Cable,1,14.95,2019-11-02 12:47:00,65 Meadow St, Boston,MA,02215 +286286,AAA Batteries (4-pack),1,2.99,2019-11-27 17:01:00,463 Maple St, Atlanta,GA,30301 +286287,27in 4K Gaming Monitor,1,389.99,2019-11-08 10:31:00,98 Hickory St, Boston,MA,02215 +286288,USB-C Charging Cable,1,11.95,2019-11-05 10:50:00,357 Center St, Los Angeles,CA,90001 +286289,AA Batteries (4-pack),1,3.84,2019-11-01 17:55:00,721 Lincoln St, San Francisco,CA,94016 +286290,Wired Headphones,1,11.99,2019-11-11 11:54:00,604 4th St, San Francisco,CA,94016 +286291,Google Phone,1,600.0,2019-11-07 18:14:00,407 River St, New York City,NY,10001 +286291,Wired Headphones,1,11.99,2019-11-07 18:14:00,407 River St, New York City,NY,10001 +286292,Apple Airpods Headphones,1,150.0,2019-11-17 11:58:00,374 Pine St, New York City,NY,10001 +286293,Lightning Charging Cable,1,14.95,2019-11-22 09:24:00,443 10th St, New York City,NY,10001 +286294,AAA Batteries (4-pack),2,2.99,2019-11-26 12:25:00,239 14th St, Atlanta,GA,30301 +286295,27in 4K Gaming Monitor,1,389.99,2019-11-23 17:51:00,468 South St, Portland,OR,97035 +286296,Google Phone,1,600.0,2019-11-02 19:06:00,535 Church St, San Francisco,CA,94016 +286297,Flatscreen TV,1,300.0,2019-11-30 09:38:00,23 Forest St, Boston,MA,02215 +286298,AAA Batteries (4-pack),1,2.99,2019-11-17 19:22:00,449 Meadow St, Boston,MA,02215 +286299,Wired Headphones,1,11.99,2019-11-25 14:13:00,392 Hill St, San Francisco,CA,94016 +286300,Wired Headphones,1,11.99,2019-11-16 14:15:00,547 Highland St, Los Angeles,CA,90001 +286301,USB-C Charging Cable,2,11.95,2019-11-10 06:48:00,924 South St, Austin,TX,73301 +286302,Bose SoundSport Headphones,1,99.99,2019-11-07 13:38:00,362 11th St, San Francisco,CA,94016 +286303,AAA Batteries (4-pack),1,2.99,2019-11-25 09:03:00,437 14th St, Atlanta,GA,30301 +286304,27in 4K Gaming Monitor,1,389.99,2019-11-08 16:14:00,860 Elm St, San Francisco,CA,94016 +286305,Bose SoundSport Headphones,1,99.99,2019-11-26 12:08:00,778 Forest St, Dallas,TX,75001 +286306,Apple Airpods Headphones,1,150.0,2019-11-24 22:58:00,52 6th St, San Francisco,CA,94016 +286307,Macbook Pro Laptop,1,1700.0,2019-11-10 12:14:00,434 South St, Boston,MA,02215 +286308,Lightning Charging Cable,1,14.95,2019-11-08 17:03:00,481 Lake St, San Francisco,CA,94016 +286309,Macbook Pro Laptop,1,1700.0,2019-11-28 22:10:00,208 14th St, San Francisco,CA,94016 +286310,USB-C Charging Cable,1,11.95,2019-11-26 10:01:00,21 Lincoln St, Los Angeles,CA,90001 +286311,Lightning Charging Cable,1,14.95,2019-11-24 12:53:00,494 Wilson St, San Francisco,CA,94016 +286312,27in 4K Gaming Monitor,1,389.99,2019-11-08 20:51:00,347 Adams St, San Francisco,CA,94016 +286313,USB-C Charging Cable,1,11.95,2019-11-20 23:25:00,303 Walnut St, Seattle,WA,98101 +286314,AAA Batteries (4-pack),1,2.99,2019-11-20 14:19:00,831 Jackson St, Los Angeles,CA,90001 +286315,AA Batteries (4-pack),4,3.84,2019-11-28 13:48:00,604 Madison St, New York City,NY,10001 +286316,AAA Batteries (4-pack),1,2.99,2019-11-18 15:39:00,355 Cedar St, New York City,NY,10001 +286317,USB-C Charging Cable,1,11.95,2019-11-08 10:59:00,359 4th St, Seattle,WA,98101 +286318,AA Batteries (4-pack),1,3.84,2019-11-21 11:32:00,595 Forest St, Austin,TX,73301 +286319,Apple Airpods Headphones,1,150.0,2019-11-07 11:16:00,36 Maple St, New York City,NY,10001 +286320,AAA Batteries (4-pack),1,2.99,2019-11-19 22:38:00,36 9th St, San Francisco,CA,94016 +286321,Wired Headphones,1,11.99,2019-11-17 20:26:00,544 5th St, New York City,NY,10001 +286322,Wired Headphones,1,11.99,2019-11-05 23:20:00,82 Hill St, San Francisco,CA,94016 +286323,AA Batteries (4-pack),1,3.84,2019-11-30 12:06:00,552 Ridge St, Los Angeles,CA,90001 +286324,AA Batteries (4-pack),1,3.84,2019-11-14 13:12:00,818 7th St, Dallas,TX,75001 +286325,Apple Airpods Headphones,1,150.0,2019-11-13 09:59:00,885 12th St, San Francisco,CA,94016 +286326,Lightning Charging Cable,1,14.95,2019-11-11 01:50:00,466 Washington St, Seattle,WA,98101 +286327,USB-C Charging Cable,1,11.95,2019-11-29 22:45:00,714 Cedar St, Boston,MA,02215 +286328,27in FHD Monitor,1,149.99,2019-11-04 09:07:00,837 Wilson St, Seattle,WA,98101 +286329,USB-C Charging Cable,1,11.95,2019-11-01 22:17:00,648 12th St, Seattle,WA,98101 +286330,AAA Batteries (4-pack),1,2.99,2019-11-01 12:02:00,916 2nd St, San Francisco,CA,94016 +286331,Lightning Charging Cable,1,14.95,2019-11-26 07:56:00,875 Main St, Seattle,WA,98101 +286332,Bose SoundSport Headphones,1,99.99,2019-11-24 08:44:00,472 8th St, New York City,NY,10001 +286333,LG Washing Machine,1,600.0,2019-11-06 18:09:00,686 River St, San Francisco,CA,94016 +286334,AA Batteries (4-pack),1,3.84,2019-11-21 18:41:00,825 9th St, Boston,MA,02215 +286335,34in Ultrawide Monitor,1,379.99,2019-11-06 21:21:00,276 Walnut St, Los Angeles,CA,90001 +286336,AAA Batteries (4-pack),1,2.99,2019-11-07 12:50:00,219 Maple St, Boston,MA,02215 +286337,Apple Airpods Headphones,1,150.0,2019-11-15 20:10:00,397 North St, Atlanta,GA,30301 +286338,USB-C Charging Cable,1,11.95,2019-11-27 09:59:00,43 Jefferson St, San Francisco,CA,94016 +286339,Wired Headphones,1,11.99,2019-11-25 11:27:00,997 Pine St, Austin,TX,73301 +286340,AAA Batteries (4-pack),1,2.99,2019-11-04 12:06:00,495 7th St, Dallas,TX,75001 +286341,AA Batteries (4-pack),2,3.84,2019-11-26 13:14:00,555 Hill St, New York City,NY,10001 +286342,AAA Batteries (4-pack),3,2.99,2019-11-20 17:15:00,619 Maple St, Boston,MA,02215 +286343,Bose SoundSport Headphones,1,99.99,2019-11-21 19:03:00,88 11th St, New York City,NY,10001 +286344,Lightning Charging Cable,1,14.95,2019-11-06 09:29:00,317 Madison St, Los Angeles,CA,90001 +286345,Bose SoundSport Headphones,1,99.99,2019-11-12 21:55:00,880 Chestnut St, New York City,NY,10001 +286346,27in FHD Monitor,1,149.99,2019-11-16 12:41:00,662 Johnson St, New York City,NY,10001 +286347,AA Batteries (4-pack),1,3.84,2019-11-11 12:36:00,255 West St, Dallas,TX,75001 +286347,AAA Batteries (4-pack),1,2.99,2019-11-11 12:36:00,255 West St, Dallas,TX,75001 +286348,Wired Headphones,1,11.99,2019-11-04 08:52:00,75 10th St, San Francisco,CA,94016 +286349,iPhone,1,700.0,2019-11-24 17:14:00,43 7th St, San Francisco,CA,94016 +286350,Wired Headphones,1,11.99,2019-11-02 20:45:00,407 11th St, Seattle,WA,98101 +286351,Apple Airpods Headphones,1,150.0,2019-11-02 17:12:00,453 Forest St, San Francisco,CA,94016 +286352,Lightning Charging Cable,1,14.95,2019-11-10 00:24:00,778 Lake St, San Francisco,CA,94016 +286353,34in Ultrawide Monitor,1,379.99,2019-11-10 14:21:00,890 Church St, Boston,MA,02215 +286354,Lightning Charging Cable,1,14.95,2019-11-23 20:28:00,673 4th St, Los Angeles,CA,90001 +286355,20in Monitor,1,109.99,2019-11-06 19:50:00,481 Willow St, San Francisco,CA,94016 +286356,Lightning Charging Cable,1,14.95,2019-11-06 20:26:00,804 1st St, Seattle,WA,98101 +286357,AA Batteries (4-pack),1,3.84,2019-11-08 06:56:00,479 Jackson St, San Francisco,CA,94016 +286358,USB-C Charging Cable,1,11.95,2019-11-19 11:46:00,225 Spruce St, New York City,NY,10001 +286359,AA Batteries (4-pack),1,3.84,2019-11-02 21:40:00,815 Sunset St, Boston,MA,02215 +286359,Wired Headphones,1,11.99,2019-11-02 21:40:00,815 Sunset St, Boston,MA,02215 +286360,Google Phone,1,600.0,2019-11-30 23:52:00,974 Sunset St, Dallas,TX,75001 +286361,USB-C Charging Cable,1,11.95,2019-11-12 10:59:00,536 Park St, New York City,NY,10001 +286362,USB-C Charging Cable,3,11.95,2019-11-06 17:01:00,851 5th St, Atlanta,GA,30301 +286363,Lightning Charging Cable,1,14.95,2019-11-08 10:41:00,455 South St, Austin,TX,73301 +286364,Lightning Charging Cable,1,14.95,2019-11-05 21:16:00,275 Hickory St, Los Angeles,CA,90001 +286365,USB-C Charging Cable,1,11.95,2019-11-18 13:36:00,644 Cedar St, New York City,NY,10001 +286366,Apple Airpods Headphones,1,150.0,2019-11-22 17:48:00,502 12th St, Dallas,TX,75001 +286367,Apple Airpods Headphones,1,150.0,2019-11-28 18:27:00,690 4th St, Austin,TX,73301 +286368,Google Phone,1,600.0,2019-11-24 10:38:00,293 Lakeview St, Seattle,WA,98101 +286369,USB-C Charging Cable,1,11.95,2019-11-13 10:30:00,437 10th St, New York City,NY,10001 +286370,AAA Batteries (4-pack),1,2.99,2019-11-05 18:53:00,572 Sunset St, Boston,MA,02215 +286371,Wired Headphones,1,11.99,2019-11-17 17:51:00,548 Jefferson St, Dallas,TX,75001 +286372,USB-C Charging Cable,1,11.95,2019-11-01 23:45:00,775 Jackson St, Seattle,WA,98101 +286372,Flatscreen TV,1,300.0,2019-11-01 23:45:00,775 Jackson St, Seattle,WA,98101 +286373,Wired Headphones,1,11.99,2019-11-09 15:20:00,419 Cedar St, Portland,OR,97035 +286374,Wired Headphones,1,11.99,2019-11-05 17:28:00,549 Lakeview St, New York City,NY,10001 +286375,USB-C Charging Cable,2,11.95,2019-11-14 12:46:00,452 Lincoln St, Atlanta,GA,30301 +286376,iPhone,1,700.0,2019-11-29 11:59:00,670 Hickory St, Los Angeles,CA,90001 +286377,AA Batteries (4-pack),2,3.84,2019-11-29 23:43:00,876 7th St, New York City,NY,10001 +286378,34in Ultrawide Monitor,1,379.99,2019-11-29 09:34:00,867 Elm St, Los Angeles,CA,90001 +286379,Bose SoundSport Headphones,1,99.99,2019-11-07 18:34:00,136 Cherry St, Dallas,TX,75001 +286380,Apple Airpods Headphones,1,150.0,2019-11-25 10:30:00,8 Church St, Dallas,TX,75001 +286381,Google Phone,1,600.0,2019-11-19 13:16:00,512 Elm St, Atlanta,GA,30301 +286382,AA Batteries (4-pack),1,3.84,2019-11-02 10:34:00,143 Wilson St, New York City,NY,10001 +286383,Wired Headphones,1,11.99,2019-11-27 10:08:00,541 Washington St, Dallas,TX,75001 +286384,AA Batteries (4-pack),3,3.84,2019-11-17 12:14:00,842 Forest St, Austin,TX,73301 +286385,20in Monitor,1,109.99,2019-11-01 15:08:00,682 North St, San Francisco,CA,94016 +286386,Apple Airpods Headphones,1,150.0,2019-11-13 10:32:00,60 12th St, Los Angeles,CA,90001 +286387,AAA Batteries (4-pack),1,2.99,2019-11-18 22:52:00,375 Walnut St, Seattle,WA,98101 +286388,AAA Batteries (4-pack),1,2.99,2019-11-15 08:56:00,908 Hickory St, Boston,MA,02215 +286389,LG Dryer,1,600.0,2019-11-20 10:35:00,211 South St, San Francisco,CA,94016 +286390,Bose SoundSport Headphones,1,99.99,2019-11-28 18:53:00,737 4th St, Atlanta,GA,30301 +286391,USB-C Charging Cable,1,11.95,2019-11-20 14:04:00,90 Jackson St, San Francisco,CA,94016 +286392,USB-C Charging Cable,1,11.95,2019-11-18 17:27:00,291 South St, Los Angeles,CA,90001 +286393,USB-C Charging Cable,1,11.95,2019-11-27 14:02:00,720 Elm St, San Francisco,CA,94016 +286394,Bose SoundSport Headphones,1,99.99,2019-11-12 12:21:00,9 Elm St, Austin,TX,73301 +286395,USB-C Charging Cable,1,11.95,2019-11-27 21:51:00,828 1st St, Dallas,TX,75001 +286396,AAA Batteries (4-pack),1,2.99,2019-11-04 22:40:00,291 10th St, San Francisco,CA,94016 +286397,Macbook Pro Laptop,1,1700.0,2019-11-20 18:31:00,499 Highland St, Dallas,TX,75001 +286398,Wired Headphones,1,11.99,2019-11-12 00:17:00,498 12th St, Dallas,TX,75001 +286399,Bose SoundSport Headphones,1,99.99,2019-11-19 07:49:00,831 6th St, Portland,ME,04101 +286400,Wired Headphones,1,11.99,2019-11-23 16:42:00,296 Hickory St, Atlanta,GA,30301 +286401,Bose SoundSport Headphones,1,99.99,2019-11-18 10:59:00,834 2nd St, San Francisco,CA,94016 +286402,27in FHD Monitor,1,149.99,2019-11-25 16:16:00,410 4th St, Seattle,WA,98101 +286403,Flatscreen TV,1,300.0,2019-11-18 14:22:00,172 Hickory St, San Francisco,CA,94016 +286404,27in FHD Monitor,1,149.99,2019-11-21 22:39:00,710 Sunset St, San Francisco,CA,94016 +286405,20in Monitor,1,109.99,2019-11-18 15:26:00,19 North St, Austin,TX,73301 +286406,Lightning Charging Cable,1,14.95,2019-11-21 16:23:00,698 13th St, New York City,NY,10001 +286407,AAA Batteries (4-pack),1,2.99,2019-11-29 21:59:00,536 South St, Austin,TX,73301 +286408,Lightning Charging Cable,1,14.95,2019-11-27 23:18:00,491 River St, Atlanta,GA,30301 +286409,AA Batteries (4-pack),1,3.84,2019-11-02 17:51:00,150 River St, New York City,NY,10001 +286410,Google Phone,1,600.0,2019-11-03 14:43:00,786 Center St, New York City,NY,10001 +286411,34in Ultrawide Monitor,1,379.99,2019-11-27 23:34:00,621 Hill St, San Francisco,CA,94016 +286412,AAA Batteries (4-pack),2,2.99,2019-11-20 17:43:00,302 Main St, New York City,NY,10001 +286413,AAA Batteries (4-pack),1,2.99,2019-11-21 13:25:00,125 1st St, Atlanta,GA,30301 +286414,27in FHD Monitor,1,149.99,2019-11-14 10:12:00,57 Center St, Dallas,TX,75001 +286415,Lightning Charging Cable,2,14.95,2019-11-14 14:07:00,672 Willow St, Boston,MA,02215 +286416,Macbook Pro Laptop,1,1700.0,2019-11-26 15:18:00,259 Cherry St, Dallas,TX,75001 +286417,Google Phone,1,600.0,2019-11-18 21:50:00,895 Lakeview St, New York City,NY,10001 +286417,USB-C Charging Cable,1,11.95,2019-11-18 21:50:00,895 Lakeview St, New York City,NY,10001 +286418,USB-C Charging Cable,1,11.95,2019-11-16 23:52:00,150 Pine St, San Francisco,CA,94016 +286419,27in FHD Monitor,1,149.99,2019-11-12 11:05:00,593 Cedar St, Los Angeles,CA,90001 +286420,Apple Airpods Headphones,1,150.0,2019-11-06 16:43:00,393 Center St, Boston,MA,02215 +286421,Lightning Charging Cable,1,14.95,2019-11-14 13:35:00,237 Center St, San Francisco,CA,94016 +286422,AAA Batteries (4-pack),1,2.99,2019-11-17 19:16:00,642 Lakeview St, New York City,NY,10001 +286423,ThinkPad Laptop,1,999.99,2019-11-25 17:53:00,478 Hickory St, Los Angeles,CA,90001 +286424,Flatscreen TV,1,300.0,2019-11-17 08:30:00,483 4th St, Seattle,WA,98101 +286425,Vareebadd Phone,1,400.0,2019-11-11 15:33:00,14 Church St, Seattle,WA,98101 +286426,AA Batteries (4-pack),1,3.84,2019-11-11 03:13:00,513 Chestnut St, Atlanta,GA,30301 +286427,Lightning Charging Cable,1,14.95,2019-11-06 21:54:00,260 Madison St, San Francisco,CA,94016 +286428,Lightning Charging Cable,2,14.95,2019-11-23 15:36:00,80 Meadow St, Los Angeles,CA,90001 +286429,USB-C Charging Cable,1,11.95,2019-11-16 14:23:00,980 1st St, Los Angeles,CA,90001 +286430,27in FHD Monitor,1,149.99,2019-11-05 10:23:00,766 Park St, San Francisco,CA,94016 +286431,Bose SoundSport Headphones,1,99.99,2019-11-12 12:56:00,460 Elm St, San Francisco,CA,94016 +286432,27in FHD Monitor,1,149.99,2019-11-04 19:14:00,2 Lake St, San Francisco,CA,94016 +286433,Wired Headphones,1,11.99,2019-11-03 20:50:00,29 Lake St, San Francisco,CA,94016 +286434,AA Batteries (4-pack),4,3.84,2019-11-14 20:25:00,563 5th St, San Francisco,CA,94016 +286435,Apple Airpods Headphones,1,150.0,2019-11-11 21:36:00,153 Jackson St, San Francisco,CA,94016 +286436,Wired Headphones,1,11.99,2019-11-17 16:57:00,374 Johnson St, Seattle,WA,98101 +286437,34in Ultrawide Monitor,1,379.99,2019-11-03 01:39:00,724 1st St, Seattle,WA,98101 +286438,Lightning Charging Cable,1,14.95,2019-11-29 01:33:00,604 Park St, Boston,MA,02215 +286439,Wired Headphones,1,11.99,2019-11-25 18:38:00,666 Madison St, Los Angeles,CA,90001 +286440,Lightning Charging Cable,1,14.95,2019-11-03 20:43:00,13 Adams St, Dallas,TX,75001 +286441,AAA Batteries (4-pack),2,2.99,2019-11-17 13:40:00,700 Forest St, San Francisco,CA,94016 +286442,Lightning Charging Cable,1,14.95,2019-11-21 18:55:00,638 Walnut St, San Francisco,CA,94016 +286443,LG Washing Machine,1,600.0,2019-11-10 21:34:00,533 Madison St, Seattle,WA,98101 +286444,Bose SoundSport Headphones,1,99.99,2019-11-21 19:02:00,452 Lake St, Dallas,TX,75001 +286445,AA Batteries (4-pack),1,3.84,2019-11-26 22:22:00,214 11th St, Dallas,TX,75001 +286446,Lightning Charging Cable,1,14.95,2019-11-30 12:59:00,801 Walnut St, San Francisco,CA,94016 +286447,Macbook Pro Laptop,1,1700.0,2019-11-26 18:14:00,907 River St, Los Angeles,CA,90001 +286448,Apple Airpods Headphones,1,150.0,2019-11-27 15:01:00,813 River St, Atlanta,GA,30301 +286449,Macbook Pro Laptop,1,1700.0,2019-11-26 20:52:00,817 Cherry St, Los Angeles,CA,90001 +286450,AAA Batteries (4-pack),2,2.99,2019-11-21 21:39:00,625 Madison St, Los Angeles,CA,90001 +286451,AA Batteries (4-pack),1,3.84,2019-11-09 09:00:00,509 Dogwood St, Dallas,TX,75001 +286452,Wired Headphones,1,11.99,2019-11-06 10:55:00,91 7th St, Seattle,WA,98101 +286453,20in Monitor,1,109.99,2019-11-14 18:57:00,494 Lake St, Austin,TX,73301 +286454,USB-C Charging Cable,1,11.95,2019-11-02 12:54:00,832 Hill St, Dallas,TX,75001 +286455,27in 4K Gaming Monitor,1,389.99,2019-11-26 16:51:00,101 Ridge St, Los Angeles,CA,90001 +286456,Lightning Charging Cable,1,14.95,2019-11-10 15:57:00,498 Lakeview St, San Francisco,CA,94016 +286457,Lightning Charging Cable,2,14.95,2019-11-24 11:00:00,293 Lakeview St, Dallas,TX,75001 +286458,Macbook Pro Laptop,1,1700.0,2019-11-08 17:43:00,26 Walnut St, Boston,MA,02215 +286459,USB-C Charging Cable,2,11.95,2019-11-17 13:01:00,394 8th St, Dallas,TX,75001 +286460,AA Batteries (4-pack),1,3.84,2019-11-12 16:33:00,216 5th St, San Francisco,CA,94016 +286461,34in Ultrawide Monitor,1,379.99,2019-11-01 10:29:00,460 Sunset St, Austin,TX,73301 +286462,Apple Airpods Headphones,1,150.0,2019-11-20 21:02:00,48 5th St, Los Angeles,CA,90001 +286463,USB-C Charging Cable,1,11.95,2019-11-22 17:38:00,338 Forest St, Boston,MA,02215 +286464,ThinkPad Laptop,1,999.99,2019-11-30 21:06:00,403 Hickory St, Austin,TX,73301 +286465,iPhone,1,700.0,2019-11-14 21:07:00,345 Church St, Atlanta,GA,30301 +286465,Lightning Charging Cable,1,14.95,2019-11-14 21:07:00,345 Church St, Atlanta,GA,30301 +286466,Flatscreen TV,1,300.0,2019-11-01 12:42:00,250 Highland St, San Francisco,CA,94016 +286467,Lightning Charging Cable,2,14.95,2019-11-24 16:58:00,214 Lincoln St, Atlanta,GA,30301 +286468,AAA Batteries (4-pack),3,2.99,2019-11-22 13:43:00,581 South St, Austin,TX,73301 +286469,27in FHD Monitor,1,149.99,2019-11-02 08:32:00,706 Lincoln St, Atlanta,GA,30301 +286470,AA Batteries (4-pack),1,3.84,2019-11-04 11:20:00,686 14th St, Boston,MA,02215 +286471,AAA Batteries (4-pack),2,2.99,2019-11-21 20:53:00,502 13th St, Portland,OR,97035 +286472,Wired Headphones,1,11.99,2019-11-12 20:52:00,133 Ridge St, Los Angeles,CA,90001 +286473,AA Batteries (4-pack),1,3.84,2019-11-08 10:01:00,143 West St, Atlanta,GA,30301 +286474,USB-C Charging Cable,1,11.95,2019-11-30 21:51:00,689 Forest St, New York City,NY,10001 +286475,34in Ultrawide Monitor,1,379.99,2019-11-28 21:31:00,406 Wilson St, San Francisco,CA,94016 +286476,AAA Batteries (4-pack),1,2.99,2019-11-27 09:32:00,477 Wilson St, Boston,MA,02215 +286477,AA Batteries (4-pack),5,3.84,2019-11-11 17:51:00,412 Lake St, Los Angeles,CA,90001 +286478,Wired Headphones,1,11.99,2019-11-05 09:33:00,715 Forest St, Atlanta,GA,30301 +286479,Wired Headphones,1,11.99,2019-11-02 07:55:00,726 Church St, San Francisco,CA,94016 +286480,Bose SoundSport Headphones,1,99.99,2019-11-29 14:34:00,159 South St, Seattle,WA,98101 +286481,AAA Batteries (4-pack),1,2.99,2019-11-01 20:43:00,491 Lake St, New York City,NY,10001 +286482,Lightning Charging Cable,1,14.95,2019-11-29 01:35:00,511 10th St, New York City,NY,10001 +286483,iPhone,1,700.0,2019-11-14 19:43:00,312 Dogwood St, San Francisco,CA,94016 +286483,Lightning Charging Cable,1,14.95,2019-11-14 19:43:00,312 Dogwood St, San Francisco,CA,94016 +286484,USB-C Charging Cable,1,11.95,2019-11-24 20:46:00,272 10th St, Dallas,TX,75001 +286485,ThinkPad Laptop,1,999.99,2019-11-02 20:05:00,773 Johnson St, Dallas,TX,75001 +286486,AAA Batteries (4-pack),1,2.99,2019-11-19 18:16:00,972 Lincoln St, Portland,OR,97035 +286487,Bose SoundSport Headphones,1,99.99,2019-11-17 15:06:00,684 4th St, San Francisco,CA,94016 +286488,USB-C Charging Cable,1,11.95,2019-11-28 22:33:00,398 10th St, New York City,NY,10001 +286489,Apple Airpods Headphones,1,150.0,2019-11-23 09:41:00,169 14th St, Seattle,WA,98101 +286490,27in FHD Monitor,1,149.99,2019-11-05 18:47:00,324 14th St, San Francisco,CA,94016 +286491,AA Batteries (4-pack),1,3.84,2019-11-05 22:42:00,103 6th St, Boston,MA,02215 +286492,27in 4K Gaming Monitor,1,389.99,2019-11-18 14:15:00,845 13th St, New York City,NY,10001 +286493,20in Monitor,1,109.99,2019-11-24 09:58:00,212 7th St, Atlanta,GA,30301 +286494,27in 4K Gaming Monitor,1,389.99,2019-11-25 20:41:00,82 12th St, Los Angeles,CA,90001 +286495,Vareebadd Phone,1,400.0,2019-11-22 08:19:00,949 North St, Dallas,TX,75001 +286496,AA Batteries (4-pack),2,3.84,2019-11-22 12:32:00,607 11th St, Dallas,TX,75001 +286497,AA Batteries (4-pack),2,3.84,2019-11-11 16:12:00,67 Dogwood St, Boston,MA,02215 +286498,Macbook Pro Laptop,1,1700.0,2019-11-03 21:49:00,953 10th St, Los Angeles,CA,90001 +286499,Wired Headphones,1,11.99,2019-11-16 18:53:00,998 Park St, Los Angeles,CA,90001 +286500,Wired Headphones,1,11.99,2019-11-29 08:21:00,119 Lake St, San Francisco,CA,94016 +286501,34in Ultrawide Monitor,1,379.99,2019-11-16 11:13:00,341 Highland St, New York City,NY,10001 +286502,Macbook Pro Laptop,1,1700.0,2019-11-05 15:38:00,914 Forest St, San Francisco,CA,94016 +286503,34in Ultrawide Monitor,1,379.99,2019-11-01 23:36:00,324 Maple St, Los Angeles,CA,90001 +286503,ThinkPad Laptop,1,999.99,2019-11-01 23:36:00,324 Maple St, Los Angeles,CA,90001 +286504,iPhone,1,700.0,2019-11-07 16:06:00,115 South St, San Francisco,CA,94016 +286504,Wired Headphones,1,11.99,2019-11-07 16:06:00,115 South St, San Francisco,CA,94016 +286505,iPhone,1,700.0,2019-11-20 10:32:00,743 2nd St, San Francisco,CA,94016 +286506,AA Batteries (4-pack),3,3.84,2019-11-08 12:02:00,612 Jackson St, Austin,TX,73301 +286507,AAA Batteries (4-pack),4,2.99,2019-11-06 12:07:00,819 Adams St, New York City,NY,10001 +286508,USB-C Charging Cable,1,11.95,2019-11-25 21:03:00,196 Lincoln St, Atlanta,GA,30301 +286509,AAA Batteries (4-pack),3,2.99,2019-11-16 20:15:00,478 Pine St, Boston,MA,02215 +286510,Apple Airpods Headphones,1,150.0,2019-11-02 11:29:00,179 Jackson St, Los Angeles,CA,90001 +286511,Wired Headphones,1,11.99,2019-11-06 13:34:00,78 Highland St, Los Angeles,CA,90001 +286512,Lightning Charging Cable,1,14.95,2019-11-06 22:11:00,184 Lakeview St, Portland,OR,97035 +286513,Lightning Charging Cable,1,14.95,2019-11-12 09:26:00,270 Church St, San Francisco,CA,94016 +286514,27in FHD Monitor,1,149.99,2019-11-19 21:57:00,554 Jefferson St, San Francisco,CA,94016 +286515,Apple Airpods Headphones,1,150.0,2019-11-27 06:40:00,616 Willow St, New York City,NY,10001 +286516,USB-C Charging Cable,1,11.95,2019-11-22 16:44:00,442 1st St, San Francisco,CA,94016 +286517,AAA Batteries (4-pack),1,2.99,2019-11-26 12:26:00,66 Adams St, New York City,NY,10001 +286518,AA Batteries (4-pack),1,3.84,2019-11-10 03:56:00,629 Center St, San Francisco,CA,94016 +286519,Wired Headphones,1,11.99,2019-11-09 19:04:00,864 North St, Los Angeles,CA,90001 +286520,AAA Batteries (4-pack),1,2.99,2019-11-27 03:14:00,869 Meadow St, New York City,NY,10001 +286521,AA Batteries (4-pack),1,3.84,2019-11-08 20:50:00,291 7th St, Los Angeles,CA,90001 +286522,USB-C Charging Cable,1,11.95,2019-11-16 23:37:00,184 Forest St, Dallas,TX,75001 +286523,Vareebadd Phone,1,400.0,2019-11-15 00:17:00,223 Elm St, Los Angeles,CA,90001 +286523,Bose SoundSport Headphones,1,99.99,2019-11-15 00:17:00,223 Elm St, Los Angeles,CA,90001 +286524,Wired Headphones,1,11.99,2019-11-17 12:01:00,184 Lake St, San Francisco,CA,94016 +286525,Apple Airpods Headphones,1,150.0,2019-11-07 12:55:00,286 West St, Austin,TX,73301 +286526,AAA Batteries (4-pack),1,2.99,2019-11-25 18:44:00,960 7th St, San Francisco,CA,94016 +286527,27in FHD Monitor,1,149.99,2019-11-18 13:29:00,96 Elm St, Seattle,WA,98101 +286528,AAA Batteries (4-pack),1,2.99,2019-11-28 12:37:00,312 1st St, Atlanta,GA,30301 +286529,27in FHD Monitor,1,149.99,2019-11-21 07:20:00,241 Ridge St, San Francisco,CA,94016 +286530,Vareebadd Phone,1,400.0,2019-11-10 10:45:00,677 North St, Los Angeles,CA,90001 +286531,Wired Headphones,1,11.99,2019-11-20 18:31:00,884 Park St, Portland,OR,97035 +286532,iPhone,1,700.0,2019-11-21 17:09:00,896 Pine St, San Francisco,CA,94016 +286533,AA Batteries (4-pack),3,3.84,2019-11-05 10:51:00,605 Cedar St, Los Angeles,CA,90001 +286534,AAA Batteries (4-pack),1,2.99,2019-11-29 11:14:00,299 Pine St, Boston,MA,02215 +286535,Flatscreen TV,1,300.0,2019-11-10 06:33:00,413 Washington St, Los Angeles,CA,90001 +286536,20in Monitor,1,109.99,2019-11-15 17:47:00,962 Center St, San Francisco,CA,94016 +286537,Wired Headphones,2,11.99,2019-11-14 18:04:00,476 Chestnut St, Dallas,TX,75001 +286538,AAA Batteries (4-pack),2,2.99,2019-11-25 10:06:00,596 Main St, Austin,TX,73301 +286539,AA Batteries (4-pack),1,3.84,2019-11-19 21:56:00,358 Willow St, Los Angeles,CA,90001 +286540,AAA Batteries (4-pack),2,2.99,2019-11-30 13:01:00,913 Lake St, Boston,MA,02215 +286541,34in Ultrawide Monitor,1,379.99,2019-11-18 21:17:00,238 Hill St, San Francisco,CA,94016 +286542,27in FHD Monitor,1,149.99,2019-11-23 19:09:00,856 Madison St, Los Angeles,CA,90001 +286543,Lightning Charging Cable,1,14.95,2019-11-14 18:40:00,569 Church St, San Francisco,CA,94016 +286544,Wired Headphones,1,11.99,2019-11-24 18:59:00,893 Park St, San Francisco,CA,94016 +286545,27in FHD Monitor,1,149.99,2019-11-04 12:14:00,918 Dogwood St, Boston,MA,02215 +286546,34in Ultrawide Monitor,1,379.99,2019-11-07 13:21:00,208 9th St, New York City,NY,10001 +286547,USB-C Charging Cable,1,11.95,2019-11-08 22:09:00,890 Spruce St, Dallas,TX,75001 +286548,LG Washing Machine,1,600.0,2019-11-29 13:17:00,606 Hill St, Dallas,TX,75001 +286549,USB-C Charging Cable,1,11.95,2019-11-25 17:30:00,471 Church St, Portland,OR,97035 +286550,AA Batteries (4-pack),1,3.84,2019-11-10 20:20:00,452 Dogwood St, Atlanta,GA,30301 +286551,Lightning Charging Cable,2,14.95,2019-11-10 13:06:00,436 7th St, San Francisco,CA,94016 +286552,AAA Batteries (4-pack),1,2.99,2019-11-24 14:27:00,510 4th St, Los Angeles,CA,90001 +286553,USB-C Charging Cable,1,11.95,2019-11-30 15:41:00,157 Forest St, New York City,NY,10001 +286554,Bose SoundSport Headphones,1,99.99,2019-11-23 20:40:00,205 10th St, San Francisco,CA,94016 +286555,Wired Headphones,1,11.99,2019-11-29 14:02:00,719 9th St, Boston,MA,02215 +286556,AA Batteries (4-pack),1,3.84,2019-11-06 12:48:00,153 Willow St, Atlanta,GA,30301 +286557,iPhone,1,700.0,2019-11-22 12:41:00,608 Spruce St, Seattle,WA,98101 +286557,Wired Headphones,1,11.99,2019-11-22 12:41:00,608 Spruce St, Seattle,WA,98101 +286558,AA Batteries (4-pack),1,3.84,2019-11-13 10:41:00,73 North St, New York City,NY,10001 +286559,Wired Headphones,1,11.99,2019-11-05 10:47:00,224 Lincoln St, San Francisco,CA,94016 +286560,USB-C Charging Cable,1,11.95,2019-11-12 15:23:00,422 7th St, San Francisco,CA,94016 +286561,AAA Batteries (4-pack),3,2.99,2019-11-08 17:32:00,14 West St, New York City,NY,10001 +286562,AA Batteries (4-pack),2,3.84,2019-11-02 14:34:00,541 South St, Portland,ME,04101 +286563,AAA Batteries (4-pack),1,2.99,2019-11-20 18:35:00,465 1st St, San Francisco,CA,94016 +286564,USB-C Charging Cable,1,11.95,2019-11-13 00:27:00,682 Dogwood St, New York City,NY,10001 +286565,20in Monitor,1,109.99,2019-11-02 12:38:00,733 4th St, Austin,TX,73301 +286566,Bose SoundSport Headphones,1,99.99,2019-11-04 12:39:00,800 Dogwood St, New York City,NY,10001 +286567,Lightning Charging Cable,1,14.95,2019-11-25 14:07:00,424 Walnut St, Boston,MA,02215 +286568,20in Monitor,1,109.99,2019-11-12 22:17:00,394 14th St, San Francisco,CA,94016 +286569,Lightning Charging Cable,1,14.95,2019-11-22 19:25:00,615 Hickory St, Los Angeles,CA,90001 +286570,Macbook Pro Laptop,1,1700.0,2019-11-11 20:23:00,630 Jefferson St, San Francisco,CA,94016 +286571,Wired Headphones,1,11.99,2019-11-21 13:50:00,65 6th St, Boston,MA,02215 +286572,AAA Batteries (4-pack),2,2.99,2019-11-07 16:21:00,509 Church St, New York City,NY,10001 +286573,ThinkPad Laptop,1,999.99,2019-11-27 17:07:00,456 Main St, Los Angeles,CA,90001 +286574,Wired Headphones,1,11.99,2019-11-07 08:54:00,366 West St, Seattle,WA,98101 +286575,AAA Batteries (4-pack),1,2.99,2019-11-29 09:16:00,355 6th St, San Francisco,CA,94016 +286576,27in FHD Monitor,1,149.99,2019-11-16 18:35:00,945 Meadow St, Los Angeles,CA,90001 +286577,Macbook Pro Laptop,1,1700.0,2019-11-22 16:45:00,485 West St, New York City,NY,10001 +286578,Apple Airpods Headphones,1,150.0,2019-11-19 00:02:00,482 11th St, San Francisco,CA,94016 +286579,Bose SoundSport Headphones,1,99.99,2019-11-19 10:21:00,858 Willow St, Seattle,WA,98101 +286580,Flatscreen TV,1,300.0,2019-11-23 06:44:00,430 Meadow St, Los Angeles,CA,90001 +286581,Vareebadd Phone,1,400.0,2019-11-21 21:25:00,108 West St, San Francisco,CA,94016 +286581,Bose SoundSport Headphones,1,99.99,2019-11-21 21:25:00,108 West St, San Francisco,CA,94016 +286582,27in FHD Monitor,1,149.99,2019-11-07 15:31:00,475 Main St, Los Angeles,CA,90001 +286583,ThinkPad Laptop,1,999.99,2019-11-10 17:06:00,702 Lakeview St, San Francisco,CA,94016 +286584,AAA Batteries (4-pack),1,2.99,2019-11-09 18:12:00,849 Ridge St, Atlanta,GA,30301 +286585,AAA Batteries (4-pack),2,2.99,2019-11-22 10:06:00,802 1st St, New York City,NY,10001 +286586,AA Batteries (4-pack),1,3.84,2019-11-17 21:12:00,869 Pine St, Portland,OR,97035 +286587,AA Batteries (4-pack),1,3.84,2019-11-03 22:00:00,60 Madison St, Dallas,TX,75001 +286588,Wired Headphones,1,11.99,2019-11-16 14:54:00,49 North St, Dallas,TX,75001 +286589,AAA Batteries (4-pack),1,2.99,2019-11-26 18:13:00,999 Madison St, San Francisco,CA,94016 +286590,iPhone,1,700.0,2019-11-04 20:56:00,568 Walnut St, Dallas,TX,75001 +286591,iPhone,1,700.0,2019-11-03 16:51:00,505 Jefferson St, Dallas,TX,75001 +286591,Lightning Charging Cable,1,14.95,2019-11-03 16:51:00,505 Jefferson St, Dallas,TX,75001 +286592,27in 4K Gaming Monitor,1,389.99,2019-11-22 23:05:00,302 Hill St, San Francisco,CA,94016 +286593,34in Ultrawide Monitor,1,379.99,2019-11-26 21:07:00,567 Walnut St, New York City,NY,10001 +286594,27in 4K Gaming Monitor,1,389.99,2019-11-06 15:52:00,753 Highland St, Austin,TX,73301 +286595,AAA Batteries (4-pack),1,2.99,2019-11-11 10:59:00,468 Sunset St, Portland,OR,97035 +286596,27in FHD Monitor,1,149.99,2019-11-14 00:31:00,493 7th St, New York City,NY,10001 +286597,Wired Headphones,1,11.99,2019-11-15 21:18:00,78 Chestnut St, Seattle,WA,98101 +286598,AA Batteries (4-pack),1,3.84,2019-11-29 20:08:00,925 Chestnut St, San Francisco,CA,94016 +286599,USB-C Charging Cable,1,11.95,2019-11-30 10:17:00,750 Hill St, Atlanta,GA,30301 +286600,ThinkPad Laptop,1,999.99,2019-11-10 15:30:00,405 Sunset St, New York City,NY,10001 +286601,Google Phone,1,600.0,2019-11-20 20:48:00,118 Pine St, Boston,MA,02215 +286602,iPhone,1,700.0,2019-11-17 16:02:00,710 Spruce St, Seattle,WA,98101 +286603,Apple Airpods Headphones,1,150.0,2019-11-18 11:18:00,839 Chestnut St, Seattle,WA,98101 +286604,27in 4K Gaming Monitor,1,389.99,2019-11-27 22:41:00,222 4th St, Boston,MA,02215 +286605,34in Ultrawide Monitor,1,379.99,2019-11-02 12:41:00,420 Jackson St, Portland,OR,97035 +286606,USB-C Charging Cable,1,11.95,2019-11-12 20:28:00,652 Main St, New York City,NY,10001 +286607,iPhone,1,700.0,2019-11-20 07:40:00,240 Walnut St, San Francisco,CA,94016 +286608,USB-C Charging Cable,2,11.95,2019-11-06 16:23:00,724 Adams St, Boston,MA,02215 +286609,Lightning Charging Cable,1,14.95,2019-11-30 13:25:00,847 Lakeview St, Los Angeles,CA,90001 +286610,AAA Batteries (4-pack),1,2.99,2019-11-03 13:26:00,189 Willow St, Dallas,TX,75001 +286611,Wired Headphones,1,11.99,2019-11-11 19:45:00,100 Cedar St, Seattle,WA,98101 +286612,Apple Airpods Headphones,1,150.0,2019-11-24 19:20:00,830 7th St, Boston,MA,02215 +286612,USB-C Charging Cable,1,11.95,2019-11-24 19:20:00,830 7th St, Boston,MA,02215 +286613,Wired Headphones,1,11.99,2019-11-03 21:41:00,953 Highland St, New York City,NY,10001 +286614,AA Batteries (4-pack),2,3.84,2019-11-24 12:32:00,822 Pine St, Seattle,WA,98101 +286615,AA Batteries (4-pack),1,3.84,2019-11-18 14:32:00,557 12th St, New York City,NY,10001 +286616,AA Batteries (4-pack),1,3.84,2019-11-07 22:50:00,22 14th St, San Francisco,CA,94016 +286617,Lightning Charging Cable,1,14.95,2019-11-06 16:54:00,478 Wilson St, New York City,NY,10001 +286618,Lightning Charging Cable,1,14.95,2019-11-28 18:30:00,226 Cherry St, Los Angeles,CA,90001 +286619,Wired Headphones,1,11.99,2019-11-25 10:31:00,468 Sunset St, San Francisco,CA,94016 +286620,Apple Airpods Headphones,1,150.0,2019-11-07 18:12:00,336 Ridge St, Los Angeles,CA,90001 +286621,Lightning Charging Cable,1,14.95,2019-11-29 11:41:00,517 9th St, San Francisco,CA,94016 +286622,Lightning Charging Cable,1,14.95,2019-11-12 08:12:00,203 Chestnut St, New York City,NY,10001 +286622,LG Washing Machine,1,600.0,2019-11-12 08:12:00,203 Chestnut St, New York City,NY,10001 +286623,AA Batteries (4-pack),1,3.84,2019-11-21 13:26:00,50 2nd St, New York City,NY,10001 +286624,AA Batteries (4-pack),1,3.84,2019-11-06 10:35:00,111 Johnson St, New York City,NY,10001 +286624,Wired Headphones,1,11.99,2019-11-06 10:35:00,111 Johnson St, New York City,NY,10001 +286625,Wired Headphones,1,11.99,2019-11-21 20:47:00,355 9th St, Dallas,TX,75001 +286626,Wired Headphones,1,11.99,2019-11-17 01:49:00,26 Sunset St, Los Angeles,CA,90001 +286627,Lightning Charging Cable,1,14.95,2019-11-30 10:52:00,645 Cherry St, Austin,TX,73301 +286628,USB-C Charging Cable,1,11.95,2019-11-04 23:34:00,11 Jackson St, Atlanta,GA,30301 +286629,Apple Airpods Headphones,1,150.0,2019-11-18 18:53:00,726 Forest St, Boston,MA,02215 +286630,LG Washing Machine,1,600.0,2019-11-02 08:35:00,852 14th St, New York City,NY,10001 +286631,AA Batteries (4-pack),3,3.84,2019-11-18 20:41:00,483 Sunset St, Seattle,WA,98101 +286632,Wired Headphones,1,11.99,2019-11-10 22:06:00,57 2nd St, Boston,MA,02215 +286633,AAA Batteries (4-pack),1,2.99,2019-11-07 11:01:00,642 North St, Los Angeles,CA,90001 +286634,Lightning Charging Cable,1,14.95,2019-11-27 15:11:00,44 9th St, Los Angeles,CA,90001 +286635,27in 4K Gaming Monitor,1,389.99,2019-11-02 17:27:00,699 Wilson St, San Francisco,CA,94016 +286636,Wired Headphones,1,11.99,2019-11-19 17:44:00,973 10th St, Los Angeles,CA,90001 +286637,Apple Airpods Headphones,1,150.0,2019-11-11 08:05:00,992 Spruce St, Austin,TX,73301 +286638,AAA Batteries (4-pack),1,2.99,2019-11-13 22:12:00,332 14th St, Boston,MA,02215 +286639,ThinkPad Laptop,1,999.99,2019-11-02 08:37:00,419 Madison St, Boston,MA,02215 +286640,USB-C Charging Cable,1,11.95,2019-11-21 12:28:00,551 Lakeview St, New York City,NY,10001 +286641,27in FHD Monitor,1,149.99,2019-11-03 11:26:00,184 Sunset St, New York City,NY,10001 +286642,27in FHD Monitor,2,149.99,2019-11-27 19:39:00,661 Cherry St, San Francisco,CA,94016 +286643,AA Batteries (4-pack),1,3.84,2019-11-01 07:24:00,904 Center St, San Francisco,CA,94016 +286644,34in Ultrawide Monitor,1,379.99,2019-11-15 15:26:00,377 7th St, Boston,MA,02215 +286645,27in 4K Gaming Monitor,1,389.99,2019-11-14 03:56:00,676 Adams St, Dallas,TX,75001 +286646,Bose SoundSport Headphones,1,99.99,2019-11-02 20:59:00,776 14th St, Seattle,WA,98101 +286647,Apple Airpods Headphones,1,150.0,2019-11-10 09:02:00,714 Spruce St, Dallas,TX,75001 +286648,Bose SoundSport Headphones,1,99.99,2019-11-17 10:34:00,300 5th St, San Francisco,CA,94016 +286649,AA Batteries (4-pack),1,3.84,2019-11-24 17:48:00,994 Elm St, San Francisco,CA,94016 +286650,USB-C Charging Cable,1,11.95,2019-11-27 12:10:00,664 Meadow St, San Francisco,CA,94016 +286651,Bose SoundSport Headphones,1,99.99,2019-11-04 19:53:00,316 Walnut St, Boston,MA,02215 +286652,USB-C Charging Cable,1,11.95,2019-11-24 19:57:00,783 Madison St, Dallas,TX,75001 +286653,AAA Batteries (4-pack),1,2.99,2019-11-26 11:39:00,204 Ridge St, San Francisco,CA,94016 +286654,AAA Batteries (4-pack),2,2.99,2019-11-30 13:43:00,307 9th St, Los Angeles,CA,90001 +286655,iPhone,1,700.0,2019-11-15 15:33:00,603 Sunset St, Boston,MA,02215 +286656,ThinkPad Laptop,1,999.99,2019-11-15 20:23:00,499 14th St, San Francisco,CA,94016 +286657,AA Batteries (4-pack),1,3.84,2019-11-23 12:27:00,529 Willow St, San Francisco,CA,94016 +286658,Wired Headphones,1,11.99,2019-11-26 16:31:00,62 2nd St, Seattle,WA,98101 +286659,AA Batteries (4-pack),1,3.84,2019-11-26 15:43:00,95 9th St, Los Angeles,CA,90001 +286660,AAA Batteries (4-pack),2,2.99,2019-11-21 23:12:00,990 North St, San Francisco,CA,94016 +286661,Wired Headphones,2,11.99,2019-11-10 14:50:00,180 Church St, San Francisco,CA,94016 +286662,34in Ultrawide Monitor,1,379.99,2019-11-08 14:29:00,293 Hill St, Atlanta,GA,30301 +286663,USB-C Charging Cable,1,11.95,2019-11-02 18:28:00,519 Park St, Atlanta,GA,30301 +286664,Macbook Pro Laptop,1,1700.0,2019-11-10 23:39:00,11 Johnson St, Portland,OR,97035 +286665,27in FHD Monitor,1,149.99,2019-11-28 00:21:00,164 Elm St, San Francisco,CA,94016 +286666,Wired Headphones,1,11.99,2019-11-12 17:35:00,602 South St, New York City,NY,10001 +286667,Apple Airpods Headphones,1,150.0,2019-11-02 19:47:00,970 Jefferson St, Los Angeles,CA,90001 +286668,USB-C Charging Cable,1,11.95,2019-11-12 22:56:00,232 Wilson St, Los Angeles,CA,90001 +286669,AA Batteries (4-pack),1,3.84,2019-11-16 16:42:00,825 Walnut St, San Francisco,CA,94016 +286670,AAA Batteries (4-pack),1,2.99,2019-11-21 01:03:00,702 Center St, New York City,NY,10001 +286671,AAA Batteries (4-pack),4,2.99,2019-11-07 07:46:00,546 Park St, Seattle,WA,98101 +286672,Wired Headphones,1,11.99,2019-11-29 11:46:00,511 North St, Dallas,TX,75001 +286673,ThinkPad Laptop,1,999.99,2019-11-11 13:26:00,312 7th St, Los Angeles,CA,90001 +286674,iPhone,1,700.0,2019-11-15 16:42:00,30 12th St, Los Angeles,CA,90001 +286675,27in 4K Gaming Monitor,1,389.99,2019-11-28 09:16:00,592 Lincoln St, San Francisco,CA,94016 +286676,34in Ultrawide Monitor,1,379.99,2019-11-07 17:56:00,156 Elm St, San Francisco,CA,94016 +286677,Wired Headphones,1,11.99,2019-11-20 09:42:00,444 8th St, Austin,TX,73301 +286678,Lightning Charging Cable,1,14.95,2019-11-19 18:27:00,265 Ridge St, San Francisco,CA,94016 +286679,34in Ultrawide Monitor,1,379.99,2019-11-15 11:13:00,511 Hill St, New York City,NY,10001 +286680,27in FHD Monitor,1,149.99,2019-11-08 23:07:00,125 Forest St, Austin,TX,73301 +286681,Wired Headphones,1,11.99,2019-11-16 17:45:00,9 Madison St, Boston,MA,02215 +286682,27in FHD Monitor,1,149.99,2019-11-27 20:45:00,254 North St, New York City,NY,10001 +286683,27in FHD Monitor,1,149.99,2019-11-16 22:53:00,947 Cedar St, San Francisco,CA,94016 +286684,Lightning Charging Cable,1,14.95,2019-11-04 23:37:00,304 Walnut St, New York City,NY,10001 +286685,Bose SoundSport Headphones,1,99.99,2019-11-14 13:16:00,444 Wilson St, New York City,NY,10001 +286686,Wired Headphones,1,11.99,2019-11-23 20:29:00,137 9th St, Los Angeles,CA,90001 +286687,Flatscreen TV,1,300.0,2019-11-14 11:29:00,307 11th St, San Francisco,CA,94016 +286688,AAA Batteries (4-pack),1,2.99,2019-11-09 16:20:00,939 Maple St, Atlanta,GA,30301 +286689,AA Batteries (4-pack),1,3.84,2019-11-12 16:39:00,712 West St, Boston,MA,02215 +286690,AA Batteries (4-pack),1,3.84,2019-11-07 09:52:00,920 Lake St, Los Angeles,CA,90001 +286691,USB-C Charging Cable,1,11.95,2019-11-16 00:39:00,837 13th St, San Francisco,CA,94016 +286692,USB-C Charging Cable,1,11.95,2019-11-11 17:36:00,85 Lincoln St, Los Angeles,CA,90001 +286693,AA Batteries (4-pack),2,3.84,2019-11-07 18:14:00,352 Ridge St, Dallas,TX,75001 +286694,Apple Airpods Headphones,1,150.0,2019-11-12 03:00:00,843 9th St, Dallas,TX,75001 +286695,AA Batteries (4-pack),1,3.84,2019-11-21 21:49:00,488 Lake St, Boston,MA,02215 +286696,Apple Airpods Headphones,1,150.0,2019-11-12 10:37:00,720 Wilson St, San Francisco,CA,94016 +286697,Apple Airpods Headphones,1,150.0,2019-11-16 08:20:00,954 Highland St, Los Angeles,CA,90001 +286698,Lightning Charging Cable,1,14.95,2019-11-05 14:01:00,97 Lake St, Portland,OR,97035 +286699,Apple Airpods Headphones,1,150.0,2019-11-22 09:02:00,137 Wilson St, San Francisco,CA,94016 +286700,Bose SoundSport Headphones,2,99.99,2019-11-11 21:12:00,245 5th St, Boston,MA,02215 +286701,Apple Airpods Headphones,1,150.0,2019-11-09 06:32:00,455 Cedar St, Boston,MA,02215 +286702,27in FHD Monitor,1,149.99,2019-11-18 12:33:00,845 6th St, San Francisco,CA,94016 +286703,Apple Airpods Headphones,1,150.0,2019-11-13 09:40:00,570 West St, San Francisco,CA,94016 +286704,Wired Headphones,1,11.99,2019-11-16 13:05:00,868 Jefferson St, San Francisco,CA,94016 +286705,Google Phone,1,600.0,2019-11-08 17:22:00,228 Jefferson St, Austin,TX,73301 +286706,AAA Batteries (4-pack),4,2.99,2019-11-04 14:22:00,478 10th St, Boston,MA,02215 +286707,AAA Batteries (4-pack),1,2.99,2019-11-21 14:47:00,929 Walnut St, New York City,NY,10001 +286708,Apple Airpods Headphones,1,150.0,2019-11-07 18:37:00,919 Hill St, Boston,MA,02215 +286709,AA Batteries (4-pack),1,3.84,2019-11-07 19:13:00,727 2nd St, Dallas,TX,75001 +286710,Bose SoundSport Headphones,1,99.99,2019-11-23 21:45:00,3 Cherry St, Los Angeles,CA,90001 +286711,AAA Batteries (4-pack),1,2.99,2019-11-09 21:06:00,671 South St, San Francisco,CA,94016 +286712,Wired Headphones,1,11.99,2019-11-16 22:12:00,692 1st St, Dallas,TX,75001 +286713,AA Batteries (4-pack),1,3.84,2019-11-20 15:49:00,494 Center St, Atlanta,GA,30301 +286714,AAA Batteries (4-pack),1,2.99,2019-11-11 12:08:00,693 Ridge St, Atlanta,GA,30301 +286715,Apple Airpods Headphones,1,150.0,2019-11-11 12:31:00,842 Hill St, Austin,TX,73301 +286716,Wired Headphones,1,11.99,2019-11-25 15:18:00,177 Chestnut St, Los Angeles,CA,90001 +286717,AA Batteries (4-pack),1,3.84,2019-11-12 15:16:00,555 Meadow St, Los Angeles,CA,90001 +286718,AA Batteries (4-pack),1,3.84,2019-11-21 15:55:00,982 12th St, San Francisco,CA,94016 +286719,AA Batteries (4-pack),1,3.84,2019-11-03 15:11:00,394 Chestnut St, Boston,MA,02215 +286720,AA Batteries (4-pack),1,3.84,2019-11-22 23:04:00,48 Madison St, Seattle,WA,98101 +286721,Wired Headphones,1,11.99,2019-11-17 21:18:00,524 Lake St, Los Angeles,CA,90001 +286722,Wired Headphones,1,11.99,2019-11-14 03:26:00,830 6th St, Austin,TX,73301 +286723,AAA Batteries (4-pack),2,2.99,2019-11-06 13:16:00,459 Center St, Austin,TX,73301 +286724,Wired Headphones,1,11.99,2019-11-17 22:08:00,88 7th St, New York City,NY,10001 +286725,USB-C Charging Cable,1,11.95,2019-11-16 10:49:00,891 Dogwood St, New York City,NY,10001 +286726,USB-C Charging Cable,1,11.95,2019-11-30 14:48:00,753 Lakeview St, Seattle,WA,98101 +286727,Lightning Charging Cable,1,14.95,2019-11-09 14:56:00,82 Forest St, New York City,NY,10001 +286728,USB-C Charging Cable,1,11.95,2019-11-19 19:28:00,634 Lincoln St, San Francisco,CA,94016 +286729,Lightning Charging Cable,1,14.95,2019-11-13 13:36:00,350 13th St, Dallas,TX,75001 +286730,Wired Headphones,1,11.99,2019-11-23 12:29:00,410 6th St, Dallas,TX,75001 +286731,AAA Batteries (4-pack),2,2.99,2019-11-05 00:20:00,296 Willow St, Boston,MA,02215 +286732,AAA Batteries (4-pack),1,2.99,2019-11-29 14:56:00,653 Cherry St, New York City,NY,10001 +286733,Flatscreen TV,1,300.0,2019-11-09 04:42:00,669 7th St, New York City,NY,10001 +286734,Bose SoundSport Headphones,1,99.99,2019-11-25 20:19:00,249 Dogwood St, San Francisco,CA,94016 +286735,AA Batteries (4-pack),1,3.84,2019-11-18 17:23:00,142 West St, Atlanta,GA,30301 +286736,34in Ultrawide Monitor,1,379.99,2019-11-11 13:51:00,173 Park St, San Francisco,CA,94016 +286737,Apple Airpods Headphones,1,150.0,2019-11-16 17:37:00,43 Pine St, Dallas,TX,75001 +286738,Apple Airpods Headphones,1,150.0,2019-11-22 10:04:00,415 Madison St, New York City,NY,10001 +286739,Apple Airpods Headphones,1,150.0,2019-11-30 08:22:00,805 Jefferson St, Boston,MA,02215 +286740,Apple Airpods Headphones,1,150.0,2019-11-29 11:10:00,950 4th St, San Francisco,CA,94016 +286741,Apple Airpods Headphones,1,150.0,2019-11-25 10:13:00,13 Washington St, Boston,MA,02215 +286742,Google Phone,1,600.0,2019-11-13 19:59:00,181 West St, San Francisco,CA,94016 +286742,USB-C Charging Cable,1,11.95,2019-11-13 19:59:00,181 West St, San Francisco,CA,94016 +286743,Apple Airpods Headphones,1,150.0,2019-11-03 12:52:00,484 Church St, Los Angeles,CA,90001 +286744,Apple Airpods Headphones,1,150.0,2019-11-01 13:20:00,239 West St, Seattle,WA,98101 +286745,27in 4K Gaming Monitor,1,389.99,2019-11-29 18:47:00,269 South St, New York City,NY,10001 +286746,AAA Batteries (4-pack),3,2.99,2019-11-01 16:11:00,990 Jefferson St, Portland,OR,97035 +286747,Apple Airpods Headphones,1,150.0,2019-11-27 12:47:00,806 North St, Los Angeles,CA,90001 +286748,20in Monitor,1,109.99,2019-11-28 11:08:00,445 Ridge St, New York City,NY,10001 +286749,Lightning Charging Cable,1,14.95,2019-11-22 20:40:00,114 2nd St, Atlanta,GA,30301 +286750,AAA Batteries (4-pack),2,2.99,2019-11-01 22:42:00,984 Chestnut St, San Francisco,CA,94016 +286751,USB-C Charging Cable,1,11.95,2019-11-30 09:46:00,701 Walnut St, San Francisco,CA,94016 +286752,ThinkPad Laptop,1,999.99,2019-11-26 23:57:00,825 Chestnut St, New York City,NY,10001 +286753,USB-C Charging Cable,1,11.95,2019-11-01 07:49:00,154 Park St, San Francisco,CA,94016 +286754,Apple Airpods Headphones,1,150.0,2019-11-19 19:57:00,770 Lincoln St, Los Angeles,CA,90001 +286755,AAA Batteries (4-pack),1,2.99,2019-11-30 12:28:00,294 Cedar St, Los Angeles,CA,90001 +286756,Lightning Charging Cable,1,14.95,2019-11-16 19:39:00,591 13th St, New York City,NY,10001 +286757,Lightning Charging Cable,1,14.95,2019-11-08 10:22:00,325 Maple St, Atlanta,GA,30301 +286758,AA Batteries (4-pack),2,3.84,2019-11-18 03:24:00,160 Wilson St, San Francisco,CA,94016 +286759,AAA Batteries (4-pack),1,2.99,2019-11-19 17:25:00,133 Center St, Boston,MA,02215 +286760,AAA Batteries (4-pack),1,2.99,2019-11-27 18:21:00,293 10th St, New York City,NY,10001 +286760,Bose SoundSport Headphones,1,99.99,2019-11-27 18:21:00,293 10th St, New York City,NY,10001 +286761,AA Batteries (4-pack),2,3.84,2019-11-17 14:28:00,134 Jefferson St, Seattle,WA,98101 +286762,Lightning Charging Cable,1,14.95,2019-11-01 14:11:00,808 Cedar St, Seattle,WA,98101 +286763,AA Batteries (4-pack),1,3.84,2019-11-30 07:40:00,616 Spruce St, Boston,MA,02215 +286764,34in Ultrawide Monitor,1,379.99,2019-11-09 19:55:00,622 14th St, Austin,TX,73301 +286765,AAA Batteries (4-pack),1,2.99,2019-11-05 01:05:00,343 Maple St, New York City,NY,10001 +286766,Bose SoundSport Headphones,1,99.99,2019-11-07 00:03:00,435 8th St, Los Angeles,CA,90001 +286767,Lightning Charging Cable,1,14.95,2019-11-05 22:18:00,882 Dogwood St, Portland,OR,97035 +286768,Flatscreen TV,1,300.0,2019-11-14 09:19:00,839 Maple St, San Francisco,CA,94016 +286769,Wired Headphones,1,11.99,2019-11-26 14:53:00,615 Meadow St, New York City,NY,10001 +286769,USB-C Charging Cable,1,11.95,2019-11-26 14:53:00,615 Meadow St, New York City,NY,10001 +286770,Lightning Charging Cable,1,14.95,2019-11-20 18:35:00,493 South St, Boston,MA,02215 +286771,Apple Airpods Headphones,1,150.0,2019-11-26 17:07:00,826 9th St, San Francisco,CA,94016 +286772,34in Ultrawide Monitor,1,379.99,2019-11-06 11:51:00,994 Church St, San Francisco,CA,94016 +286773,Vareebadd Phone,1,400.0,2019-11-11 12:29:00,795 Cedar St, Boston,MA,02215 +286774,USB-C Charging Cable,1,11.95,2019-11-20 14:14:00,277 Pine St, San Francisco,CA,94016 +286775,Wired Headphones,1,11.99,2019-11-17 06:25:00,634 1st St, Austin,TX,73301 +286776,Bose SoundSport Headphones,1,99.99,2019-11-20 12:07:00,798 5th St, San Francisco,CA,94016 +286777,Lightning Charging Cable,1,14.95,2019-11-05 12:05:00,852 Walnut St, Seattle,WA,98101 +286778,34in Ultrawide Monitor,1,379.99,2019-11-27 11:18:00,379 Sunset St, Los Angeles,CA,90001 +286779,AAA Batteries (4-pack),2,2.99,2019-11-06 23:17:00,440 Walnut St, Seattle,WA,98101 +286780,Google Phone,1,600.0,2019-11-04 02:43:00,911 2nd St, Austin,TX,73301 +286780,USB-C Charging Cable,1,11.95,2019-11-04 02:43:00,911 2nd St, Austin,TX,73301 +286781,AAA Batteries (4-pack),2,2.99,2019-11-16 09:18:00,893 Cherry St, San Francisco,CA,94016 +286782,USB-C Charging Cable,1,11.95,2019-11-26 19:01:00,401 11th St, New York City,NY,10001 +286783,USB-C Charging Cable,1,11.95,2019-11-08 13:43:00,998 Forest St, Austin,TX,73301 +286784,Apple Airpods Headphones,1,150.0,2019-11-07 06:00:00,196 Madison St, Los Angeles,CA,90001 +286785,Wired Headphones,1,11.99,2019-11-23 17:38:00,764 11th St, Los Angeles,CA,90001 +286786,Flatscreen TV,1,300.0,2019-11-27 13:53:00,214 8th St, Portland,ME,04101 +286787,AA Batteries (4-pack),1,3.84,2019-11-07 19:04:00,144 Hickory St, Portland,OR,97035 +286788,Lightning Charging Cable,1,14.95,2019-11-06 13:15:00,215 8th St, San Francisco,CA,94016 +286789,Google Phone,1,600.0,2019-11-02 10:26:00,37 Walnut St, Austin,TX,73301 +286790,Bose SoundSport Headphones,1,99.99,2019-11-11 08:38:00,242 Center St, Los Angeles,CA,90001 +286791,Vareebadd Phone,1,400.0,2019-11-24 11:44:00,521 Park St, Seattle,WA,98101 +286792,iPhone,1,700.0,2019-11-19 18:36:00,17 10th St, Seattle,WA,98101 +286793,Bose SoundSport Headphones,1,99.99,2019-11-14 21:32:00,762 Forest St, Boston,MA,02215 +286794,27in FHD Monitor,1,149.99,2019-11-29 13:04:00,125 Center St, Seattle,WA,98101 +286795,AAA Batteries (4-pack),1,2.99,2019-11-20 07:40:00,850 Hill St, San Francisco,CA,94016 +286795,27in FHD Monitor,1,149.99,2019-11-20 07:40:00,850 Hill St, San Francisco,CA,94016 +286796,AAA Batteries (4-pack),1,2.99,2019-11-29 02:19:00,574 River St, Los Angeles,CA,90001 +286797,Macbook Pro Laptop,1,1700.0,2019-11-16 09:05:00,868 1st St, Los Angeles,CA,90001 +286798,Macbook Pro Laptop,1,1700.0,2019-11-25 16:43:00,396 Cherry St, San Francisco,CA,94016 +286799,Lightning Charging Cable,1,14.95,2019-11-26 02:13:00,587 6th St, Atlanta,GA,30301 +286800,USB-C Charging Cable,2,11.95,2019-11-16 12:01:00,129 Madison St, New York City,NY,10001 +286801,AAA Batteries (4-pack),1,2.99,2019-11-16 14:29:00,938 Center St, Atlanta,GA,30301 +286802,AAA Batteries (4-pack),1,2.99,2019-11-29 13:55:00,477 Park St, San Francisco,CA,94016 +286803,Lightning Charging Cable,1,14.95,2019-11-12 08:59:00,378 12th St, Boston,MA,02215 +286804,Lightning Charging Cable,1,14.95,2019-11-29 12:31:00,535 13th St, Boston,MA,02215 +286805,AAA Batteries (4-pack),1,2.99,2019-11-23 19:21:00,647 River St, Boston,MA,02215 +286806,AAA Batteries (4-pack),2,2.99,2019-11-06 23:42:00,813 Spruce St, San Francisco,CA,94016 +286807,AA Batteries (4-pack),2,3.84,2019-11-21 12:54:00,622 Lakeview St, Austin,TX,73301 +286808,Bose SoundSport Headphones,1,99.99,2019-11-30 15:47:00,573 11th St, Portland,OR,97035 +286808,27in 4K Gaming Monitor,1,389.99,2019-11-30 15:47:00,573 11th St, Portland,OR,97035 +286809,Lightning Charging Cable,1,14.95,2019-11-22 15:40:00,921 Jefferson St, Seattle,WA,98101 +286810,Wired Headphones,1,11.99,2019-11-22 00:30:00,726 Elm St, Boston,MA,02215 +286811,27in FHD Monitor,1,149.99,2019-11-20 12:23:00,708 Adams St, Los Angeles,CA,90001 +286812,Wired Headphones,1,11.99,2019-11-11 11:18:00,290 6th St, San Francisco,CA,94016 +286813,Apple Airpods Headphones,1,150.0,2019-11-24 19:35:00,121 Hill St, Dallas,TX,75001 +286814,AA Batteries (4-pack),1,3.84,2019-11-27 18:49:00,465 7th St, Boston,MA,02215 +286815,Bose SoundSport Headphones,1,99.99,2019-11-25 17:21:00,954 Church St, San Francisco,CA,94016 +286816,27in FHD Monitor,1,149.99,2019-11-30 18:08:00,692 4th St, San Francisco,CA,94016 +286817,USB-C Charging Cable,1,11.95,2019-11-26 03:51:00,500 North St, Los Angeles,CA,90001 +286818,Apple Airpods Headphones,1,150.0,2019-11-10 13:04:00,838 9th St, Portland,OR,97035 +286819,USB-C Charging Cable,1,11.95,2019-11-24 17:59:00,807 North St, New York City,NY,10001 +286820,Wired Headphones,1,11.99,2019-11-28 16:24:00,140 Church St, San Francisco,CA,94016 +286821,Vareebadd Phone,1,400.0,2019-11-19 17:59:00,356 Hill St, Dallas,TX,75001 +286822,Lightning Charging Cable,1,14.95,2019-11-06 13:36:00,599 Cherry St, San Francisco,CA,94016 +286823,34in Ultrawide Monitor,1,379.99,2019-11-27 00:16:00,773 River St, New York City,NY,10001 +286824,Apple Airpods Headphones,1,150.0,2019-11-26 18:26:00,337 Sunset St, Los Angeles,CA,90001 +286825,Flatscreen TV,1,300.0,2019-11-21 07:29:00,965 Park St, Los Angeles,CA,90001 +286826,Wired Headphones,1,11.99,2019-11-04 00:21:00,678 Johnson St, Boston,MA,02215 +286827,USB-C Charging Cable,1,11.95,2019-11-17 16:18:00,836 West St, Boston,MA,02215 +286828,AAA Batteries (4-pack),2,2.99,2019-11-08 10:34:00,573 Sunset St, San Francisco,CA,94016 +286829,34in Ultrawide Monitor,1,379.99,2019-11-21 16:05:00,221 Wilson St, New York City,NY,10001 +286830,Apple Airpods Headphones,1,150.0,2019-11-11 17:57:00,533 2nd St, Los Angeles,CA,90001 +286831,Apple Airpods Headphones,1,150.0,2019-11-01 16:19:00,370 Elm St, New York City,NY,10001 +286832,20in Monitor,1,109.99,2019-11-12 11:12:00,309 Center St, Seattle,WA,98101 +286833,Wired Headphones,1,11.99,2019-11-23 14:08:00,314 Center St, San Francisco,CA,94016 +286833,Lightning Charging Cable,1,14.95,2019-11-23 14:08:00,314 Center St, San Francisco,CA,94016 +286834,ThinkPad Laptop,1,999.99,2019-11-23 10:48:00,485 Meadow St, Portland,OR,97035 +286835,USB-C Charging Cable,1,11.95,2019-11-01 13:30:00,838 Wilson St, Atlanta,GA,30301 +286836,27in 4K Gaming Monitor,1,389.99,2019-11-24 15:53:00,497 Lincoln St, Boston,MA,02215 +286837,AAA Batteries (4-pack),1,2.99,2019-11-18 13:59:00,159 5th St, Los Angeles,CA,90001 +286838,ThinkPad Laptop,1,999.99,2019-11-26 19:41:00,802 6th St, Los Angeles,CA,90001 +286839,Apple Airpods Headphones,1,150.0,2019-11-05 09:52:00,79 Spruce St, Los Angeles,CA,90001 +286840,AA Batteries (4-pack),1,3.84,2019-11-08 12:07:00,669 Wilson St, Dallas,TX,75001 +286841,AA Batteries (4-pack),2,3.84,2019-11-18 12:48:00,831 Willow St, Boston,MA,02215 +286842,AA Batteries (4-pack),2,3.84,2019-11-07 16:11:00,6 Hickory St, Dallas,TX,75001 +286843,USB-C Charging Cable,1,11.95,2019-11-29 18:37:00,888 14th St, Portland,OR,97035 +286844,Bose SoundSport Headphones,1,99.99,2019-11-17 13:52:00,10 8th St, Boston,MA,02215 +286845,Wired Headphones,1,11.99,2019-11-19 10:52:00,485 Lakeview St, San Francisco,CA,94016 +286846,Wired Headphones,1,11.99,2019-11-20 09:29:00,724 North St, Los Angeles,CA,90001 +286847,Lightning Charging Cable,1,14.95,2019-11-03 19:08:00,89 4th St, Seattle,WA,98101 +286848,27in FHD Monitor,1,149.99,2019-11-28 19:01:00,214 8th St, New York City,NY,10001 +286849,27in 4K Gaming Monitor,1,389.99,2019-11-25 17:13:00,841 North St, Los Angeles,CA,90001 +286850,Lightning Charging Cable,1,14.95,2019-11-27 15:23:00,690 Wilson St, Seattle,WA,98101 +286851,Wired Headphones,1,11.99,2019-11-05 14:02:00,236 River St, Los Angeles,CA,90001 +286852,Macbook Pro Laptop,1,1700.0,2019-11-05 09:42:00,690 1st St, Seattle,WA,98101 +286853,Wired Headphones,1,11.99,2019-11-07 21:26:00,621 7th St, Dallas,TX,75001 +286854,USB-C Charging Cable,1,11.95,2019-11-24 16:44:00,474 Cherry St, New York City,NY,10001 +286855,AA Batteries (4-pack),1,3.84,2019-11-16 11:19:00,65 7th St, Los Angeles,CA,90001 +286856,Google Phone,1,600.0,2019-11-29 10:20:00,422 1st St, Boston,MA,02215 +286856,Wired Headphones,2,11.99,2019-11-29 10:20:00,422 1st St, Boston,MA,02215 +286857,USB-C Charging Cable,1,11.95,2019-11-17 11:58:00,633 Hill St, Los Angeles,CA,90001 +286858,USB-C Charging Cable,1,11.95,2019-11-26 15:49:00,422 8th St, New York City,NY,10001 +286859,AAA Batteries (4-pack),1,2.99,2019-11-29 13:46:00,525 8th St, San Francisco,CA,94016 +286860,Macbook Pro Laptop,1,1700.0,2019-11-20 00:19:00,921 14th St, San Francisco,CA,94016 +286861,Lightning Charging Cable,1,14.95,2019-11-27 17:28:00,607 River St, Atlanta,GA,30301 +286862,Apple Airpods Headphones,1,150.0,2019-11-21 19:06:00,462 Lincoln St, Atlanta,GA,30301 +286863,iPhone,1,700.0,2019-11-08 22:51:00,67 Lake St, Seattle,WA,98101 +286864,Bose SoundSport Headphones,1,99.99,2019-11-07 03:02:00,857 Johnson St, New York City,NY,10001 +286865,Wired Headphones,2,11.99,2019-11-19 09:17:00,805 1st St, Portland,OR,97035 +286866,iPhone,1,700.0,2019-11-21 20:39:00,86 North St, New York City,NY,10001 +286867,Macbook Pro Laptop,1,1700.0,2019-11-06 15:33:00,973 7th St, San Francisco,CA,94016 +286868,USB-C Charging Cable,2,11.95,2019-11-02 14:36:00,730 Center St, Dallas,TX,75001 +286869,Apple Airpods Headphones,1,150.0,2019-11-07 05:02:00,919 Madison St, New York City,NY,10001 +286870,USB-C Charging Cable,1,11.95,2019-11-11 20:28:00,822 11th St, Seattle,WA,98101 +286871,Macbook Pro Laptop,1,1700.0,2019-11-14 21:23:00,941 Willow St, Seattle,WA,98101 +286872,AA Batteries (4-pack),2,3.84,2019-11-04 23:26:00,896 Spruce St, San Francisco,CA,94016 +286873,Lightning Charging Cable,1,14.95,2019-11-26 11:03:00,200 12th St, Boston,MA,02215 +286874,34in Ultrawide Monitor,1,379.99,2019-11-04 22:17:00,424 11th St, New York City,NY,10001 +286875,USB-C Charging Cable,1,11.95,2019-11-08 20:11:00,299 Lake St, Dallas,TX,75001 +286876,iPhone,1,700.0,2019-11-28 10:17:00,710 6th St, Atlanta,GA,30301 +286876,Lightning Charging Cable,1,14.95,2019-11-28 10:17:00,710 6th St, Atlanta,GA,30301 +286877,AAA Batteries (4-pack),1,2.99,2019-11-17 10:06:00,106 Pine St, Los Angeles,CA,90001 +286878,Lightning Charging Cable,1,14.95,2019-11-27 18:57:00,898 Park St, Dallas,TX,75001 +286879,Macbook Pro Laptop,1,1700.0,2019-11-05 18:11:00,915 Dogwood St, New York City,NY,10001 +286880,27in FHD Monitor,1,149.99,2019-11-12 14:40:00,877 9th St, Los Angeles,CA,90001 +286881,iPhone,1,700.0,2019-11-02 00:54:00,773 Cedar St, Dallas,TX,75001 +286881,Lightning Charging Cable,1,14.95,2019-11-02 00:54:00,773 Cedar St, Dallas,TX,75001 +286882,iPhone,1,700.0,2019-11-02 15:38:00,570 Maple St, San Francisco,CA,94016 +286883,Apple Airpods Headphones,1,150.0,2019-11-20 22:35:00,830 Sunset St, Dallas,TX,75001 +286884,Google Phone,1,600.0,2019-11-16 00:09:00,46 Chestnut St, Portland,OR,97035 +286884,USB-C Charging Cable,1,11.95,2019-11-16 00:09:00,46 Chestnut St, Portland,OR,97035 +286885,27in 4K Gaming Monitor,1,389.99,2019-11-12 15:20:00,40 Walnut St, Portland,OR,97035 +286886,AA Batteries (4-pack),2,3.84,2019-11-29 11:25:00,275 Center St, Boston,MA,02215 +286887,27in 4K Gaming Monitor,1,389.99,2019-11-18 18:15:00,249 Park St, San Francisco,CA,94016 +286888,AAA Batteries (4-pack),6,2.99,2019-11-01 09:51:00,2 River St, San Francisco,CA,94016 +286889,Wired Headphones,1,11.99,2019-11-22 14:18:00,867 Chestnut St, San Francisco,CA,94016 +286890,AA Batteries (4-pack),1,3.84,2019-11-17 12:57:00,51 4th St, San Francisco,CA,94016 +286891,Lightning Charging Cable,1,14.95,2019-11-28 10:50:00,741 South St, Los Angeles,CA,90001 +286892,Bose SoundSport Headphones,1,99.99,2019-11-16 15:29:00,436 Pine St, San Francisco,CA,94016 +286893,Wired Headphones,1,11.99,2019-11-27 22:15:00,592 13th St, Los Angeles,CA,90001 +286894,iPhone,1,700.0,2019-11-21 18:59:00,836 8th St, Los Angeles,CA,90001 +286895,27in 4K Gaming Monitor,1,389.99,2019-11-09 11:10:00,287 9th St, Los Angeles,CA,90001 +286896,Wired Headphones,1,11.99,2019-11-23 14:05:00,584 6th St, San Francisco,CA,94016 +286897,Bose SoundSport Headphones,1,99.99,2019-11-24 13:28:00,414 2nd St, New York City,NY,10001 +286898,Apple Airpods Headphones,1,150.0,2019-11-10 12:35:00,382 Forest St, San Francisco,CA,94016 +286899,USB-C Charging Cable,1,11.95,2019-11-20 14:36:00,772 Forest St, Atlanta,GA,30301 +286900,Lightning Charging Cable,1,14.95,2019-11-08 21:43:00,873 Park St, San Francisco,CA,94016 +286901,USB-C Charging Cable,1,11.95,2019-11-22 00:50:00,850 11th St, Austin,TX,73301 +286902,iPhone,1,700.0,2019-11-16 14:51:00,894 Washington St, Los Angeles,CA,90001 +286903,AA Batteries (4-pack),2,3.84,2019-11-10 09:50:00,288 14th St, Los Angeles,CA,90001 +286904,USB-C Charging Cable,1,11.95,2019-11-06 21:38:00,301 South St, Seattle,WA,98101 +286905,AA Batteries (4-pack),1,3.84,2019-11-15 18:30:00,801 West St, Los Angeles,CA,90001 +286906,USB-C Charging Cable,1,11.95,2019-11-21 16:46:00,333 Park St, Los Angeles,CA,90001 +286907,27in FHD Monitor,1,149.99,2019-11-02 14:54:00,533 12th St, Dallas,TX,75001 +286908,Wired Headphones,1,11.99,2019-11-27 01:19:00,351 Chestnut St, San Francisco,CA,94016 +286909,Lightning Charging Cable,1,14.95,2019-11-26 11:12:00,45 Jackson St, Los Angeles,CA,90001 +286910,Lightning Charging Cable,1,14.95,2019-11-05 21:05:00,156 Cedar St, New York City,NY,10001 +286911,Lightning Charging Cable,1,14.95,2019-11-09 10:48:00,643 Pine St, Boston,MA,02215 +286912,AA Batteries (4-pack),3,3.84,2019-11-06 10:16:00,935 Center St, Los Angeles,CA,90001 +286913,AA Batteries (4-pack),3,3.84,2019-11-30 19:47:00,402 13th St, New York City,NY,10001 +286914,Apple Airpods Headphones,1,150.0,2019-11-30 23:11:00,873 10th St, Los Angeles,CA,90001 +286915,Flatscreen TV,1,300.0,2019-11-05 18:58:00,241 11th St, New York City,NY,10001 +286916,Apple Airpods Headphones,1,150.0,2019-11-08 20:02:00,587 7th St, San Francisco,CA,94016 +286917,AAA Batteries (4-pack),1,2.99,2019-11-30 22:47:00,103 Cedar St, Portland,ME,04101 +286918,USB-C Charging Cable,1,11.95,2019-11-02 17:37:00,467 11th St, San Francisco,CA,94016 +286919,AA Batteries (4-pack),1,3.84,2019-11-27 08:32:00,929 Highland St, New York City,NY,10001 +286919,Wired Headphones,2,11.99,2019-11-27 08:32:00,929 Highland St, New York City,NY,10001 +286920,AAA Batteries (4-pack),2,2.99,2019-11-29 14:53:00,207 9th St, San Francisco,CA,94016 +286921,Flatscreen TV,1,300.0,2019-11-15 15:28:00,916 Jefferson St, Atlanta,GA,30301 +286922,ThinkPad Laptop,1,999.99,2019-11-30 22:56:00,112 Forest St, Los Angeles,CA,90001 +286923,AAA Batteries (4-pack),1,2.99,2019-11-14 19:49:00,67 13th St, New York City,NY,10001 +286924,Lightning Charging Cable,1,14.95,2019-11-15 11:23:00,366 Highland St, Los Angeles,CA,90001 +286925,iPhone,1,700.0,2019-11-29 15:31:00,7 11th St, Austin,TX,73301 +286925,Lightning Charging Cable,1,14.95,2019-11-29 15:31:00,7 11th St, Austin,TX,73301 +286926,Bose SoundSport Headphones,1,99.99,2019-11-26 18:30:00,12 7th St, Los Angeles,CA,90001 +286927,Lightning Charging Cable,1,14.95,2019-11-25 20:42:00,52 6th St, Atlanta,GA,30301 +286928,AAA Batteries (4-pack),1,2.99,2019-11-09 22:59:00,54 5th St, Los Angeles,CA,90001 +286929,Lightning Charging Cable,1,14.95,2019-11-08 02:13:00,189 South St, San Francisco,CA,94016 +286930,AA Batteries (4-pack),1,3.84,2019-11-30 19:37:00,289 14th St, San Francisco,CA,94016 +286931,Lightning Charging Cable,1,14.95,2019-11-10 09:38:00,155 1st St, San Francisco,CA,94016 +286932,Apple Airpods Headphones,1,150.0,2019-11-16 17:59:00,630 Ridge St, Los Angeles,CA,90001 +286933,Wired Headphones,1,11.99,2019-11-23 01:23:00,325 Wilson St, Atlanta,GA,30301 +286934,AAA Batteries (4-pack),1,2.99,2019-11-02 10:56:00,596 8th St, San Francisco,CA,94016 +286935,Wired Headphones,1,11.99,2019-11-24 21:29:00,387 Wilson St, San Francisco,CA,94016 +286936,Flatscreen TV,1,300.0,2019-11-26 18:37:00,32 Walnut St, Los Angeles,CA,90001 +286937,27in 4K Gaming Monitor,1,389.99,2019-11-15 17:31:00,445 Sunset St, Atlanta,GA,30301 +286938,Lightning Charging Cable,1,14.95,2019-11-23 15:29:00,579 8th St, Los Angeles,CA,90001 +286939,Lightning Charging Cable,1,14.95,2019-11-08 23:47:00,121 Jefferson St, Los Angeles,CA,90001 +286940,Bose SoundSport Headphones,1,99.99,2019-11-29 19:28:00,790 Adams St, Boston,MA,02215 +286941,Lightning Charging Cable,1,14.95,2019-11-21 15:33:00,760 6th St, New York City,NY,10001 +286942,Google Phone,1,600.0,2019-11-15 20:08:00,480 West St, New York City,NY,10001 +286942,Macbook Pro Laptop,1,1700.0,2019-11-15 20:08:00,480 West St, New York City,NY,10001 +286943,AAA Batteries (4-pack),2,2.99,2019-11-08 18:01:00,886 12th St, San Francisco,CA,94016 +286944,AAA Batteries (4-pack),2,2.99,2019-11-22 00:14:00,286 Chestnut St, San Francisco,CA,94016 +286945,Flatscreen TV,1,300.0,2019-11-17 11:55:00,86 Willow St, Seattle,WA,98101 +286945,AAA Batteries (4-pack),1,2.99,2019-11-17 11:55:00,86 Willow St, Seattle,WA,98101 +286946,Lightning Charging Cable,1,14.95,2019-11-23 16:25:00,892 Pine St, San Francisco,CA,94016 +286947,AAA Batteries (4-pack),2,2.99,2019-11-11 15:33:00,326 11th St, Los Angeles,CA,90001 +286948,27in 4K Gaming Monitor,1,389.99,2019-11-10 17:11:00,176 8th St, San Francisco,CA,94016 +286949,iPhone,1,700.0,2019-11-12 20:14:00,667 River St, Seattle,WA,98101 +286949,Lightning Charging Cable,1,14.95,2019-11-12 20:14:00,667 River St, Seattle,WA,98101 +286950,AAA Batteries (4-pack),1,2.99,2019-11-22 21:29:00,502 Hill St, Austin,TX,73301 +286951,Bose SoundSport Headphones,1,99.99,2019-11-08 18:34:00,979 2nd St, San Francisco,CA,94016 +286952,iPhone,1,700.0,2019-11-08 12:47:00,279 Hill St, Atlanta,GA,30301 +286952,Lightning Charging Cable,1,14.95,2019-11-08 12:47:00,279 Hill St, Atlanta,GA,30301 +286953,USB-C Charging Cable,1,11.95,2019-11-02 13:40:00,483 West St, Portland,OR,97035 +286954,AAA Batteries (4-pack),2,2.99,2019-11-04 14:22:00,885 1st St, Dallas,TX,75001 +286955,Apple Airpods Headphones,1,150.0,2019-11-06 13:28:00,618 Johnson St, Dallas,TX,75001 +286956,27in FHD Monitor,1,149.99,2019-11-27 17:03:00,641 1st St, San Francisco,CA,94016 +286957,AAA Batteries (4-pack),2,2.99,2019-11-12 21:26:00,764 Spruce St, Boston,MA,02215 +286958,Apple Airpods Headphones,1,150.0,2019-11-23 06:34:00,222 1st St, New York City,NY,10001 +286959,Macbook Pro Laptop,1,1700.0,2019-11-19 09:40:00,725 4th St, Los Angeles,CA,90001 +286960,AA Batteries (4-pack),1,3.84,2019-11-13 16:26:00,694 Lakeview St, San Francisco,CA,94016 +286961,iPhone,1,700.0,2019-11-06 17:06:00,928 10th St, Atlanta,GA,30301 +286961,Apple Airpods Headphones,1,150.0,2019-11-06 17:06:00,928 10th St, Atlanta,GA,30301 +286962,Wired Headphones,2,11.99,2019-11-23 20:34:00,229 Maple St, New York City,NY,10001 +286963,AAA Batteries (4-pack),2,2.99,2019-11-12 12:52:00,97 Washington St, Seattle,WA,98101 +286964,iPhone,1,700.0,2019-11-19 18:33:00,900 Maple St, Seattle,WA,98101 +286965,AA Batteries (4-pack),2,3.84,2019-11-02 16:32:00,254 Park St, Atlanta,GA,30301 +286966,iPhone,1,700.0,2019-11-06 13:50:00,515 Highland St, Los Angeles,CA,90001 +286967,Apple Airpods Headphones,1,150.0,2019-11-17 13:26:00,895 Wilson St, San Francisco,CA,94016 +286968,Apple Airpods Headphones,1,150.0,2019-11-08 19:38:00,516 Lakeview St, New York City,NY,10001 +286969,Wired Headphones,1,11.99,2019-11-30 20:33:00,417 Willow St, Dallas,TX,75001 +286970,27in FHD Monitor,1,149.99,2019-11-30 20:29:00,646 11th St, San Francisco,CA,94016 +286971,AAA Batteries (4-pack),4,2.99,2019-11-09 18:48:00,198 Ridge St, Boston,MA,02215 +286972,AAA Batteries (4-pack),1,2.99,2019-11-18 23:11:00,999 River St, Los Angeles,CA,90001 +286973,AAA Batteries (4-pack),1,2.99,2019-11-07 16:53:00,599 7th St, Atlanta,GA,30301 +286974,Google Phone,1,600.0,2019-11-23 06:39:00,468 2nd St, Dallas,TX,75001 +286975,AAA Batteries (4-pack),1,2.99,2019-11-05 20:12:00,393 Dogwood St, Atlanta,GA,30301 +286976,USB-C Charging Cable,1,11.95,2019-11-14 20:46:00,69 Pine St, Los Angeles,CA,90001 +286977,Wired Headphones,1,11.99,2019-11-30 09:21:00,989 Chestnut St, Atlanta,GA,30301 +286978,Lightning Charging Cable,1,14.95,2019-11-15 19:16:00,720 West St, San Francisco,CA,94016 +286979,USB-C Charging Cable,1,11.95,2019-11-05 12:20:00,101 Forest St, Seattle,WA,98101 +286980,Bose SoundSport Headphones,1,99.99,2019-11-28 18:50:00,793 4th St, Boston,MA,02215 +286981,AAA Batteries (4-pack),1,2.99,2019-11-08 16:13:00,186 6th St, Los Angeles,CA,90001 +286982,USB-C Charging Cable,1,11.95,2019-11-22 19:20:00,753 Washington St, Dallas,TX,75001 +286983,Wired Headphones,1,11.99,2019-11-28 11:53:00,212 Meadow St, Atlanta,GA,30301 +286984,Google Phone,1,600.0,2019-11-16 21:13:00,268 Meadow St, Los Angeles,CA,90001 +286984,Wired Headphones,1,11.99,2019-11-16 21:13:00,268 Meadow St, Los Angeles,CA,90001 +286985,27in 4K Gaming Monitor,1,389.99,2019-11-03 16:32:00,237 Adams St, Dallas,TX,75001 +286986,USB-C Charging Cable,1,11.95,2019-11-16 08:33:00,329 Jefferson St, Dallas,TX,75001 +286987,27in 4K Gaming Monitor,1,389.99,2019-11-05 07:40:00,110 Hickory St, New York City,NY,10001 +286988,Lightning Charging Cable,1,14.95,2019-11-15 09:10:00,175 Jackson St, New York City,NY,10001 +286989,AAA Batteries (4-pack),2,2.99,2019-11-03 12:52:00,316 Elm St, Los Angeles,CA,90001 +286990,20in Monitor,1,109.99,2019-11-13 11:08:00,130 Elm St, Austin,TX,73301 +286991,AAA Batteries (4-pack),1,2.99,2019-11-14 15:48:00,394 Hickory St, Los Angeles,CA,90001 +286992,Apple Airpods Headphones,1,150.0,2019-11-05 20:46:00,233 Dogwood St, Los Angeles,CA,90001 +286993,Vareebadd Phone,1,400.0,2019-11-09 14:10:00,294 Pine St, Seattle,WA,98101 +286993,USB-C Charging Cable,1,11.95,2019-11-09 14:10:00,294 Pine St, Seattle,WA,98101 +286994,USB-C Charging Cable,1,11.95,2019-11-13 07:38:00,27 Cherry St, Dallas,TX,75001 +286995,Lightning Charging Cable,1,14.95,2019-11-07 23:29:00,943 Highland St, New York City,NY,10001 +286996,AAA Batteries (4-pack),2,2.99,2019-11-01 10:29:00,545 Washington St, Los Angeles,CA,90001 +286997,34in Ultrawide Monitor,1,379.99,2019-11-26 22:56:00,100 10th St, Portland,ME,04101 +286998,34in Ultrawide Monitor,1,379.99,2019-11-04 21:22:00,361 12th St, New York City,NY,10001 +286999,Apple Airpods Headphones,1,150.0,2019-11-10 06:37:00,984 Lake St, Los Angeles,CA,90001 +287000,USB-C Charging Cable,1,11.95,2019-11-01 14:52:00,76 Church St, Dallas,TX,75001 +287001,AA Batteries (4-pack),1,3.84,2019-11-24 17:45:00,442 Ridge St, Austin,TX,73301 +287002,Apple Airpods Headphones,1,150.0,2019-11-12 18:26:00,19 8th St, Seattle,WA,98101 +287003,Flatscreen TV,1,300.0,2019-11-20 14:09:00,498 13th St, New York City,NY,10001 +287004,Google Phone,1,600.0,2019-11-22 23:51:00,612 Jefferson St, San Francisco,CA,94016 +287005,Macbook Pro Laptop,1,1700.0,2019-11-16 15:02:00,377 Wilson St, San Francisco,CA,94016 +287006,iPhone,1,700.0,2019-11-21 18:54:00,347 West St, San Francisco,CA,94016 +287007,AAA Batteries (4-pack),4,2.99,2019-11-26 16:10:00,36 Cedar St, Boston,MA,02215 +287008,Macbook Pro Laptop,1,1700.0,2019-11-25 12:19:00,877 Elm St, Austin,TX,73301 +287009,AAA Batteries (4-pack),1,2.99,2019-11-23 14:35:00,152 Pine St, Los Angeles,CA,90001 +287010,27in FHD Monitor,1,149.99,2019-11-01 18:53:00,780 Main St, San Francisco,CA,94016 +287011,AA Batteries (4-pack),1,3.84,2019-11-28 22:58:00,583 Dogwood St, New York City,NY,10001 +287012,Bose SoundSport Headphones,1,99.99,2019-11-28 17:09:00,618 13th St, Los Angeles,CA,90001 +287013,iPhone,1,700.0,2019-11-05 18:23:00,521 Park St, Seattle,WA,98101 +287014,USB-C Charging Cable,1,11.95,2019-11-15 15:03:00,231 13th St, Los Angeles,CA,90001 +287015,Wired Headphones,1,11.99,2019-11-30 14:57:00,857 6th St, Austin,TX,73301 +287016,34in Ultrawide Monitor,1,379.99,2019-11-10 13:48:00,781 Cedar St, New York City,NY,10001 +287017,iPhone,1,700.0,2019-11-28 17:05:00,292 Forest St, San Francisco,CA,94016 +287017,Lightning Charging Cable,1,14.95,2019-11-28 17:05:00,292 Forest St, San Francisco,CA,94016 +287017,Wired Headphones,2,11.99,2019-11-28 17:05:00,292 Forest St, San Francisco,CA,94016 +287018,Google Phone,1,600.0,2019-11-07 20:27:00,684 West St, San Francisco,CA,94016 +287019,20in Monitor,1,109.99,2019-11-10 08:25:00,885 Elm St, Austin,TX,73301 +287020,iPhone,1,700.0,2019-11-23 14:32:00,110 Jackson St, Los Angeles,CA,90001 +287020,Apple Airpods Headphones,1,150.0,2019-11-23 14:32:00,110 Jackson St, Los Angeles,CA,90001 +287021,AAA Batteries (4-pack),1,2.99,2019-11-14 22:03:00,6 Main St, San Francisco,CA,94016 +287022,AAA Batteries (4-pack),1,2.99,2019-11-05 16:25:00,6 Cedar St, Los Angeles,CA,90001 +287023,27in 4K Gaming Monitor,1,389.99,2019-11-13 22:27:00,739 Jefferson St, Los Angeles,CA,90001 +287024,Bose SoundSport Headphones,1,99.99,2019-11-11 17:22:00,754 Hickory St, Austin,TX,73301 +287025,Bose SoundSport Headphones,1,99.99,2019-11-28 20:05:00,338 10th St, Los Angeles,CA,90001 +287026,Bose SoundSport Headphones,1,99.99,2019-11-17 18:22:00,599 8th St, Portland,OR,97035 +287027,Apple Airpods Headphones,1,150.0,2019-11-04 11:41:00,850 Pine St, San Francisco,CA,94016 +287028,Bose SoundSport Headphones,1,99.99,2019-11-21 08:47:00,312 8th St, Portland,OR,97035 +287029,Lightning Charging Cable,1,14.95,2019-11-28 01:05:00,53 Maple St, San Francisco,CA,94016 +287030,iPhone,1,700.0,2019-11-15 13:51:00,949 Jefferson St, Dallas,TX,75001 +287031,iPhone,1,700.0,2019-11-12 18:46:00,441 Highland St, Dallas,TX,75001 +287032,Apple Airpods Headphones,1,150.0,2019-11-08 21:55:00,623 Forest St, Seattle,WA,98101 +287033,Lightning Charging Cable,1,14.95,2019-11-10 17:11:00,384 13th St, Austin,TX,73301 +287034,AA Batteries (4-pack),1,3.84,2019-11-25 12:49:00,30 11th St, Dallas,TX,75001 +287035,USB-C Charging Cable,1,11.95,2019-11-26 15:46:00,216 4th St, New York City,NY,10001 +287036,Google Phone,1,600.0,2019-11-24 19:06:00,197 4th St, New York City,NY,10001 +287036,USB-C Charging Cable,2,11.95,2019-11-24 19:06:00,197 4th St, New York City,NY,10001 +287037,Lightning Charging Cable,1,14.95,2019-11-04 10:52:00,364 Hickory St, New York City,NY,10001 +287038,27in FHD Monitor,1,149.99,2019-11-10 11:44:00,214 Cherry St, New York City,NY,10001 +287039,AAA Batteries (4-pack),1,2.99,2019-11-26 09:27:00,479 9th St, Los Angeles,CA,90001 +287040,USB-C Charging Cable,1,11.95,2019-11-03 22:26:00,284 Ridge St, Boston,MA,02215 +287041,Apple Airpods Headphones,1,150.0,2019-11-23 12:57:00,313 12th St, Los Angeles,CA,90001 +287042,Wired Headphones,1,11.99,2019-11-01 15:31:00,599 Jefferson St, Portland,OR,97035 +287043,USB-C Charging Cable,1,11.95,2019-11-06 13:45:00,431 West St, Seattle,WA,98101 +287044,Google Phone,1,600.0,2019-11-05 09:32:00,419 Forest St, Austin,TX,73301 +287044,Wired Headphones,1,11.99,2019-11-05 09:32:00,419 Forest St, Austin,TX,73301 +287045,Wired Headphones,1,11.99,2019-11-13 14:56:00,678 Park St, Seattle,WA,98101 +287046,20in Monitor,1,109.99,2019-11-20 07:47:00,749 Spruce St, Seattle,WA,98101 +287047,Bose SoundSport Headphones,1,99.99,2019-11-30 09:09:00,151 Spruce St, Atlanta,GA,30301 +287048,Apple Airpods Headphones,1,150.0,2019-11-03 00:22:00,376 8th St, Seattle,WA,98101 +287049,USB-C Charging Cable,1,11.95,2019-11-20 06:06:00,117 8th St, Los Angeles,CA,90001 +287050,Flatscreen TV,1,300.0,2019-12-01 00:49:00,342 Lake St, New York City,NY,10001 +287051,Wired Headphones,1,11.99,2019-11-17 11:39:00,100 Church St, Los Angeles,CA,90001 +287052,AAA Batteries (4-pack),1,2.99,2019-11-14 20:15:00,247 Jefferson St, Austin,TX,73301 +287053,LG Dryer,1,600.0,2019-11-29 17:25:00,947 7th St, Dallas,TX,75001 +287054,Vareebadd Phone,1,400.0,2019-11-07 08:03:00,747 Lake St, Los Angeles,CA,90001 +287055,Apple Airpods Headphones,1,150.0,2019-11-25 11:33:00,113 14th St, Boston,MA,02215 +287056,AA Batteries (4-pack),1,3.84,2019-11-09 16:26:00,440 Lake St, Los Angeles,CA,90001 +287057,AA Batteries (4-pack),2,3.84,2019-11-24 19:00:00,482 12th St, Los Angeles,CA,90001 +287058,Apple Airpods Headphones,1,150.0,2019-11-15 17:00:00,657 River St, New York City,NY,10001 +287059,Apple Airpods Headphones,1,150.0,2019-11-04 21:06:00,304 7th St, Austin,TX,73301 +287060,Lightning Charging Cable,1,14.95,2019-11-13 13:11:00,473 Adams St, Portland,OR,97035 +287061,USB-C Charging Cable,1,11.95,2019-11-01 15:47:00,732 5th St, San Francisco,CA,94016 +287062,Lightning Charging Cable,1,14.95,2019-11-24 19:56:00,357 2nd St, San Francisco,CA,94016 +287063,AA Batteries (4-pack),1,3.84,2019-11-11 21:01:00,876 Jackson St, San Francisco,CA,94016 +287064,Macbook Pro Laptop,1,1700.0,2019-11-07 11:43:00,810 Church St, New York City,NY,10001 +287065,AA Batteries (4-pack),1,3.84,2019-11-22 10:39:00,180 Adams St, San Francisco,CA,94016 +287066,Lightning Charging Cable,1,14.95,2019-11-08 17:03:00,109 Chestnut St, New York City,NY,10001 +287067,Wired Headphones,1,11.99,2019-11-25 19:39:00,420 Madison St, Los Angeles,CA,90001 +287068,AA Batteries (4-pack),1,3.84,2019-11-27 09:46:00,696 Pine St, Portland,OR,97035 +287069,USB-C Charging Cable,1,11.95,2019-11-21 20:17:00,956 10th St, New York City,NY,10001 +287070,Lightning Charging Cable,1,14.95,2019-11-13 16:52:00,661 Spruce St, New York City,NY,10001 +287071,ThinkPad Laptop,1,999.99,2019-11-07 23:23:00,759 Cedar St, San Francisco,CA,94016 +287072,Wired Headphones,1,11.99,2019-11-27 18:54:00,575 Walnut St, San Francisco,CA,94016 +287073,27in FHD Monitor,1,149.99,2019-11-21 21:13:00,557 13th St, Los Angeles,CA,90001 +287074,AA Batteries (4-pack),1,3.84,2019-11-25 12:04:00,913 Jefferson St, Austin,TX,73301 +287075,AAA Batteries (4-pack),3,2.99,2019-11-28 17:38:00,973 Sunset St, Portland,OR,97035 +287076,USB-C Charging Cable,1,11.95,2019-11-14 10:17:00,454 Hill St, Portland,ME,04101 +287077,Lightning Charging Cable,1,14.95,2019-11-29 11:38:00,474 South St, New York City,NY,10001 +287078,Wired Headphones,1,11.99,2019-11-19 16:23:00,792 Spruce St, Atlanta,GA,30301 +287079,27in FHD Monitor,1,149.99,2019-11-13 09:00:00,42 Lake St, San Francisco,CA,94016 +287080,iPhone,1,700.0,2019-11-11 13:28:00,989 5th St, San Francisco,CA,94016 +287081,AAA Batteries (4-pack),1,2.99,2019-11-17 10:33:00,360 Washington St, Los Angeles,CA,90001 +287082,Bose SoundSport Headphones,1,99.99,2019-11-23 22:39:00,41 Maple St, Portland,OR,97035 +287083,Google Phone,1,600.0,2019-11-14 18:48:00,118 Church St, New York City,NY,10001 +287084,Lightning Charging Cable,1,14.95,2019-11-09 17:02:00,848 Spruce St, New York City,NY,10001 +287085,Bose SoundSport Headphones,1,99.99,2019-11-19 21:29:00,405 6th St, San Francisco,CA,94016 +287086,Macbook Pro Laptop,1,1700.0,2019-11-04 12:36:00,775 Spruce St, Atlanta,GA,30301 +287087,Lightning Charging Cable,1,14.95,2019-11-29 17:43:00,151 Cherry St, Dallas,TX,75001 +287088,AA Batteries (4-pack),2,3.84,2019-11-17 20:33:00,296 Lake St, Boston,MA,02215 +287089,Lightning Charging Cable,1,14.95,2019-11-04 14:26:00,250 Church St, Boston,MA,02215 +287090,Wired Headphones,1,11.99,2019-11-30 15:52:00,422 Lakeview St, Atlanta,GA,30301 +287091,USB-C Charging Cable,1,11.95,2019-11-01 10:38:00,713 1st St, Los Angeles,CA,90001 +287092,AAA Batteries (4-pack),1,2.99,2019-11-05 13:46:00,609 Meadow St, Boston,MA,02215 +287093,Macbook Pro Laptop,1,1700.0,2019-11-20 14:04:00,88 12th St, Dallas,TX,75001 +287094,Vareebadd Phone,1,400.0,2019-11-04 20:28:00,187 Park St, Los Angeles,CA,90001 +287095,AAA Batteries (4-pack),1,2.99,2019-11-25 10:47:00,802 Cedar St, Atlanta,GA,30301 +287096,AAA Batteries (4-pack),3,2.99,2019-11-12 11:06:00,253 Maple St, San Francisco,CA,94016 +287097,Bose SoundSport Headphones,1,99.99,2019-11-04 17:04:00,965 11th St, San Francisco,CA,94016 +287098,AA Batteries (4-pack),1,3.84,2019-11-02 20:21:00,753 14th St, Los Angeles,CA,90001 +287099,Lightning Charging Cable,1,14.95,2019-11-06 22:07:00,752 Main St, Atlanta,GA,30301 +287100,USB-C Charging Cable,1,11.95,2019-11-24 09:37:00,918 8th St, Atlanta,GA,30301 +287101,Wired Headphones,1,11.99,2019-11-26 14:10:00,805 Lake St, Austin,TX,73301 +287102,20in Monitor,1,109.99,2019-11-28 20:13:00,742 Park St, San Francisco,CA,94016 +287103,Bose SoundSport Headphones,1,99.99,2019-11-04 08:51:00,685 11th St, Boston,MA,02215 +287104,Wired Headphones,1,11.99,2019-11-13 21:45:00,192 Dogwood St, Austin,TX,73301 +287105,Wired Headphones,1,11.99,2019-11-28 22:44:00,464 Madison St, San Francisco,CA,94016 +287106,27in 4K Gaming Monitor,1,389.99,2019-11-20 19:52:00,470 8th St, Boston,MA,02215 +287107,Wired Headphones,2,11.99,2019-11-01 18:53:00,737 12th St, Austin,TX,73301 +287108,AA Batteries (4-pack),2,3.84,2019-11-19 15:07:00,502 Sunset St, San Francisco,CA,94016 +287109,Lightning Charging Cable,1,14.95,2019-11-26 08:16:00,445 Church St, Seattle,WA,98101 +287110,AAA Batteries (4-pack),1,2.99,2019-11-24 12:15:00,987 North St, Dallas,TX,75001 +287111,AAA Batteries (4-pack),2,2.99,2019-11-29 19:19:00,257 Lincoln St, Boston,MA,02215 +287112,34in Ultrawide Monitor,1,379.99,2019-11-23 16:13:00,381 West St, New York City,NY,10001 +287113,ThinkPad Laptop,1,999.99,2019-11-23 16:11:00,566 Center St, Los Angeles,CA,90001 +287114,Apple Airpods Headphones,1,150.0,2019-11-23 09:51:00,946 Wilson St, San Francisco,CA,94016 +287115,Wired Headphones,1,11.99,2019-11-29 20:40:00,255 Sunset St, Boston,MA,02215 +287116,AAA Batteries (4-pack),2,2.99,2019-11-27 14:32:00,207 Lakeview St, San Francisco,CA,94016 +287117,Lightning Charging Cable,1,14.95,2019-11-02 19:30:00,125 West St, Los Angeles,CA,90001 +287118,iPhone,1,700.0,2019-11-02 22:19:00,187 Hickory St, Los Angeles,CA,90001 +287118,Lightning Charging Cable,1,14.95,2019-11-02 22:19:00,187 Hickory St, Los Angeles,CA,90001 +287119,Flatscreen TV,1,300.0,2019-11-29 20:36:00,516 Lake St, San Francisco,CA,94016 +287120,USB-C Charging Cable,1,11.95,2019-11-02 00:26:00,644 West St, Portland,OR,97035 +287121,Bose SoundSport Headphones,1,99.99,2019-11-16 23:44:00,685 9th St, New York City,NY,10001 +287122,AA Batteries (4-pack),1,3.84,2019-11-05 13:53:00,895 Cherry St, San Francisco,CA,94016 +287123,27in 4K Gaming Monitor,1,389.99,2019-11-18 08:15:00,437 Pine St, Atlanta,GA,30301 +287124,Apple Airpods Headphones,1,150.0,2019-11-01 11:09:00,473 14th St, Boston,MA,02215 +287125,AA Batteries (4-pack),1,3.84,2019-11-09 10:06:00,717 12th St, San Francisco,CA,94016 +287126,Wired Headphones,1,11.99,2019-11-11 06:34:00,872 Spruce St, San Francisco,CA,94016 +287127,27in FHD Monitor,1,149.99,2019-11-25 18:10:00,544 Hill St, San Francisco,CA,94016 +287128,LG Washing Machine,1,600.0,2019-11-11 00:57:00,245 11th St, Boston,MA,02215 +287129,Wired Headphones,1,11.99,2019-11-06 16:17:00,905 Church St, San Francisco,CA,94016 +287130,Apple Airpods Headphones,1,150.0,2019-11-18 17:17:00,253 River St, New York City,NY,10001 +287131,20in Monitor,1,109.99,2019-11-28 23:50:00,40 Dogwood St, Portland,ME,04101 +287132,Wired Headphones,1,11.99,2019-11-17 12:40:00,972 Madison St, Atlanta,GA,30301 +287133,ThinkPad Laptop,1,999.99,2019-11-27 21:12:00,634 6th St, Portland,OR,97035 +287134,Wired Headphones,1,11.99,2019-11-29 05:36:00,118 South St, New York City,NY,10001 +287135,USB-C Charging Cable,2,11.95,2019-11-11 21:49:00,461 Church St, Austin,TX,73301 +287136,Wired Headphones,1,11.99,2019-11-12 22:52:00,528 North St, Boston,MA,02215 +287137,AAA Batteries (4-pack),2,2.99,2019-11-08 17:13:00,206 Adams St, San Francisco,CA,94016 +287138,Wired Headphones,1,11.99,2019-11-14 22:40:00,444 9th St, New York City,NY,10001 +287139,Apple Airpods Headphones,1,150.0,2019-11-24 20:19:00,210 Forest St, Portland,OR,97035 +287140,Bose SoundSport Headphones,1,99.99,2019-11-16 10:11:00,98 Highland St, Atlanta,GA,30301 +287141,Lightning Charging Cable,1,14.95,2019-11-15 17:29:00,76 Johnson St, Portland,ME,04101 +287142,Wired Headphones,1,11.99,2019-11-18 23:38:00,531 Pine St, Dallas,TX,75001 +287143,Lightning Charging Cable,1,14.95,2019-11-09 03:06:00,395 Church St, San Francisco,CA,94016 +287144,Wired Headphones,1,11.99,2019-11-28 20:42:00,928 Park St, San Francisco,CA,94016 +287145,AA Batteries (4-pack),1,3.84,2019-11-30 10:32:00,860 Spruce St, San Francisco,CA,94016 +287146,AA Batteries (4-pack),1,3.84,2019-11-04 14:31:00,648 Dogwood St, Los Angeles,CA,90001 +287147,iPhone,1,700.0,2019-11-27 13:51:00,830 Washington St, Atlanta,GA,30301 +287148,27in FHD Monitor,1,149.99,2019-11-14 00:23:00,828 7th St, Los Angeles,CA,90001 +287149,Wired Headphones,1,11.99,2019-11-02 20:45:00,291 Park St, New York City,NY,10001 +287150,Wired Headphones,1,11.99,2019-11-17 13:22:00,679 Walnut St, Los Angeles,CA,90001 +287151,Lightning Charging Cable,1,14.95,2019-11-07 08:04:00,619 Washington St, Los Angeles,CA,90001 +287152,AA Batteries (4-pack),1,3.84,2019-11-03 18:34:00,123 Church St, Boston,MA,02215 +287153,AA Batteries (4-pack),1,3.84,2019-11-11 13:21:00,753 Pine St, Austin,TX,73301 +287154,Wired Headphones,2,11.99,2019-11-09 21:50:00,277 Lakeview St, Boston,MA,02215 +287155,USB-C Charging Cable,1,11.95,2019-11-03 08:36:00,977 Johnson St, San Francisco,CA,94016 +287156,Apple Airpods Headphones,1,150.0,2019-11-18 14:30:00,733 Johnson St, San Francisco,CA,94016 +287157,Bose SoundSport Headphones,1,99.99,2019-11-17 18:26:00,601 1st St, San Francisco,CA,94016 +287158,AA Batteries (4-pack),1,3.84,2019-11-12 08:59:00,702 Jackson St, San Francisco,CA,94016 +287159,AA Batteries (4-pack),3,3.84,2019-11-07 21:22:00,360 Jackson St, Portland,ME,04101 +287160,Lightning Charging Cable,1,14.95,2019-11-04 20:19:00,28 Lake St, Los Angeles,CA,90001 +287161,AAA Batteries (4-pack),1,2.99,2019-11-05 20:29:00,658 Sunset St, New York City,NY,10001 +287162,AAA Batteries (4-pack),2,2.99,2019-11-13 09:17:00,619 Jackson St, San Francisco,CA,94016 +287163,USB-C Charging Cable,1,11.95,2019-11-22 10:18:00,358 Hill St, Los Angeles,CA,90001 +287164,AA Batteries (4-pack),1,3.84,2019-11-21 13:00:00,586 Wilson St, Los Angeles,CA,90001 +287165,Apple Airpods Headphones,1,150.0,2019-11-25 10:43:00,695 Cedar St, Seattle,WA,98101 +287166,Lightning Charging Cable,1,14.95,2019-11-01 13:08:00,572 14th St, Los Angeles,CA,90001 +287167,AAA Batteries (4-pack),2,2.99,2019-11-24 21:18:00,651 Forest St, Boston,MA,02215 +287168,USB-C Charging Cable,1,11.95,2019-11-02 20:29:00,943 9th St, Los Angeles,CA,90001 +287169,Wired Headphones,1,11.99,2019-11-13 11:05:00,789 Sunset St, Boston,MA,02215 +287170,27in FHD Monitor,1,149.99,2019-11-11 17:50:00,641 Ridge St, Portland,OR,97035 +287171,AAA Batteries (4-pack),1,2.99,2019-11-16 21:16:00,375 Lincoln St, Seattle,WA,98101 +287172,Apple Airpods Headphones,1,150.0,2019-11-27 16:27:00,97 Lakeview St, San Francisco,CA,94016 +287173,AAA Batteries (4-pack),1,2.99,2019-11-16 06:37:00,191 Spruce St, Seattle,WA,98101 +287174,AAA Batteries (4-pack),3,2.99,2019-11-21 12:07:00,982 8th St, Austin,TX,73301 +287175,iPhone,1,700.0,2019-11-12 08:21:00,113 Washington St, San Francisco,CA,94016 +287176,Lightning Charging Cable,1,14.95,2019-11-02 13:18:00,771 Elm St, Seattle,WA,98101 +287177,Lightning Charging Cable,1,14.95,2019-11-16 13:12:00,948 Walnut St, San Francisco,CA,94016 +287178,Macbook Pro Laptop,1,1700.0,2019-11-24 18:26:00,120 Wilson St, Portland,OR,97035 +287178,Lightning Charging Cable,1,14.95,2019-11-24 18:26:00,120 Wilson St, Portland,OR,97035 +287179,Apple Airpods Headphones,1,150.0,2019-11-23 12:55:00,480 Willow St, Los Angeles,CA,90001 +287180,AAA Batteries (4-pack),2,2.99,2019-11-05 19:17:00,965 Forest St, San Francisco,CA,94016 +287181,AAA Batteries (4-pack),1,2.99,2019-11-09 06:48:00,884 Hill St, Los Angeles,CA,90001 +287182,Wired Headphones,1,11.99,2019-11-06 14:16:00,284 Dogwood St, New York City,NY,10001 +287183,iPhone,1,700.0,2019-11-16 16:22:00,890 14th St, New York City,NY,10001 +287183,Wired Headphones,1,11.99,2019-11-16 16:22:00,890 14th St, New York City,NY,10001 +287184,20in Monitor,1,109.99,2019-11-28 12:40:00,980 Church St, Atlanta,GA,30301 +287185,Lightning Charging Cable,1,14.95,2019-11-15 19:23:00,264 Pine St, New York City,NY,10001 +287186,Lightning Charging Cable,2,14.95,2019-11-23 14:56:00,668 6th St, Los Angeles,CA,90001 +287187,iPhone,1,700.0,2019-11-27 14:43:00,758 Lakeview St, San Francisco,CA,94016 +287188,Lightning Charging Cable,1,14.95,2019-11-09 19:58:00,108 Ridge St, San Francisco,CA,94016 +287188,USB-C Charging Cable,1,11.95,2019-11-09 19:58:00,108 Ridge St, San Francisco,CA,94016 +287189,Lightning Charging Cable,1,14.95,2019-11-17 12:06:00,751 Lake St, New York City,NY,10001 +287190,Lightning Charging Cable,1,14.95,2019-11-17 11:42:00,99 Lincoln St, Los Angeles,CA,90001 +287191,Wired Headphones,1,11.99,2019-11-12 06:41:00,762 Ridge St, San Francisco,CA,94016 +287192,27in 4K Gaming Monitor,1,389.99,2019-11-02 13:31:00,465 Dogwood St, Los Angeles,CA,90001 +287193,USB-C Charging Cable,1,11.95,2019-11-03 11:41:00,743 Wilson St, Los Angeles,CA,90001 +287194,Bose SoundSport Headphones,1,99.99,2019-11-28 16:14:00,77 South St, San Francisco,CA,94016 +287195,USB-C Charging Cable,1,11.95,2019-11-29 22:40:00,645 Lake St, San Francisco,CA,94016 +287196,Lightning Charging Cable,1,14.95,2019-11-05 12:16:00,555 Dogwood St, Los Angeles,CA,90001 +287197,Wired Headphones,1,11.99,2019-11-22 23:02:00,487 Chestnut St, Atlanta,GA,30301 +287198,USB-C Charging Cable,1,11.95,2019-11-15 10:49:00,534 Sunset St, Portland,OR,97035 +287199,Bose SoundSport Headphones,1,99.99,2019-11-12 20:07:00,153 1st St, Portland,OR,97035 +287200,iPhone,1,700.0,2019-11-18 20:31:00,997 9th St, San Francisco,CA,94016 +287200,27in 4K Gaming Monitor,1,389.99,2019-11-18 20:31:00,997 9th St, San Francisco,CA,94016 +287201,Wired Headphones,1,11.99,2019-11-21 12:44:00,840 Main St, San Francisco,CA,94016 +287202,Lightning Charging Cable,1,14.95,2019-11-30 07:49:00,721 Sunset St, San Francisco,CA,94016 +287203,AAA Batteries (4-pack),3,2.99,2019-11-12 20:27:00,162 Ridge St, Seattle,WA,98101 +287204,Google Phone,1,600.0,2019-11-18 14:36:00,514 Center St, New York City,NY,10001 +287205,USB-C Charging Cable,1,11.95,2019-11-05 15:17:00,306 Church St, Los Angeles,CA,90001 +287206,Wired Headphones,1,11.99,2019-11-02 11:31:00,462 Highland St, Portland,ME,04101 +287207,Macbook Pro Laptop,1,1700.0,2019-11-10 16:08:00,746 West St, Portland,OR,97035 +287208,Wired Headphones,1,11.99,2019-11-19 15:06:00,717 Spruce St, Atlanta,GA,30301 +287209,USB-C Charging Cable,1,11.95,2019-11-06 18:21:00,552 Adams St, New York City,NY,10001 +287210,Bose SoundSport Headphones,1,99.99,2019-11-27 20:51:00,242 Sunset St, Seattle,WA,98101 +287210,Vareebadd Phone,1,400.0,2019-11-27 20:51:00,242 Sunset St, Seattle,WA,98101 +287211,Bose SoundSport Headphones,1,99.99,2019-11-17 22:43:00,497 4th St, Portland,ME,04101 +287212,20in Monitor,1,109.99,2019-11-05 19:01:00,721 Hill St, New York City,NY,10001 +287213,Bose SoundSport Headphones,1,99.99,2019-11-06 14:23:00,667 Main St, Boston,MA,02215 +287214,USB-C Charging Cable,1,11.95,2019-11-19 15:41:00,222 South St, Seattle,WA,98101 +287215,USB-C Charging Cable,1,11.95,2019-11-28 00:12:00,361 12th St, Austin,TX,73301 +287216,27in FHD Monitor,1,149.99,2019-11-25 13:36:00,232 Ridge St, Boston,MA,02215 +287217,AA Batteries (4-pack),2,3.84,2019-11-27 10:48:00,487 Willow St, New York City,NY,10001 +287218,Apple Airpods Headphones,1,150.0,2019-11-14 12:08:00,39 Jefferson St, New York City,NY,10001 +287219,27in FHD Monitor,1,149.99,2019-11-24 11:09:00,508 8th St, Los Angeles,CA,90001 +287220,Lightning Charging Cable,1,14.95,2019-11-15 22:13:00,877 Pine St, San Francisco,CA,94016 +287221,Lightning Charging Cable,1,14.95,2019-11-27 10:36:00,54 Dogwood St, Los Angeles,CA,90001 +287222,Wired Headphones,1,11.99,2019-11-19 18:00:00,566 Park St, Portland,OR,97035 +287223,Apple Airpods Headphones,1,150.0,2019-11-29 14:52:00,586 Maple St, New York City,NY,10001 +287224,Wired Headphones,1,11.99,2019-11-24 18:36:00,76 Johnson St, San Francisco,CA,94016 +287225,Lightning Charging Cable,1,14.95,2019-11-18 11:20:00,148 Elm St, Los Angeles,CA,90001 +287226,27in 4K Gaming Monitor,1,389.99,2019-11-01 16:38:00,284 5th St, Portland,OR,97035 +287227,27in FHD Monitor,1,149.99,2019-11-10 19:36:00,740 Willow St, New York City,NY,10001 +287228,Apple Airpods Headphones,1,150.0,2019-11-27 11:36:00,587 Meadow St, Boston,MA,02215 +287229,Google Phone,1,600.0,2019-11-09 21:22:00,207 Madison St, Atlanta,GA,30301 +287230,ThinkPad Laptop,1,999.99,2019-11-09 19:30:00,465 4th St, Los Angeles,CA,90001 +287231,Google Phone,1,600.0,2019-11-05 19:48:00,615 Wilson St, Seattle,WA,98101 +287231,USB-C Charging Cable,1,11.95,2019-11-05 19:48:00,615 Wilson St, Seattle,WA,98101 +287232,Wired Headphones,2,11.99,2019-11-04 20:49:00,134 Spruce St, Atlanta,GA,30301 +287233,AA Batteries (4-pack),1,3.84,2019-11-07 09:59:00,981 Cherry St, Seattle,WA,98101 +287234,AA Batteries (4-pack),1,3.84,2019-11-11 13:46:00,183 Church St, San Francisco,CA,94016 +287235,Bose SoundSport Headphones,1,99.99,2019-11-16 00:07:00,802 10th St, Los Angeles,CA,90001 +287236,AA Batteries (4-pack),1,3.84,2019-11-01 20:03:00,118 Hickory St, Seattle,WA,98101 +287237,iPhone,1,700.0,2019-11-19 00:56:00,172 Washington St, San Francisco,CA,94016 +287238,ThinkPad Laptop,1,999.99,2019-11-06 10:08:00,814 12th St, San Francisco,CA,94016 +287239,27in 4K Gaming Monitor,1,389.99,2019-11-17 14:20:00,54 Lincoln St, Austin,TX,73301 +287240,AA Batteries (4-pack),2,3.84,2019-11-24 20:31:00,989 14th St, Los Angeles,CA,90001 +287241,Apple Airpods Headphones,1,150.0,2019-11-14 16:45:00,968 Ridge St, Los Angeles,CA,90001 +287242,Bose SoundSport Headphones,1,99.99,2019-11-12 10:35:00,764 Highland St, Los Angeles,CA,90001 +287243,27in 4K Gaming Monitor,1,389.99,2019-11-04 15:04:00,909 North St, Boston,MA,02215 +287244,Apple Airpods Headphones,1,150.0,2019-11-04 11:59:00,454 Willow St, San Francisco,CA,94016 +287245,34in Ultrawide Monitor,1,379.99,2019-11-15 20:07:00,728 7th St, Boston,MA,02215 +287246,AAA Batteries (4-pack),1,2.99,2019-11-06 16:03:00,846 Elm St, Atlanta,GA,30301 +287247,USB-C Charging Cable,1,11.95,2019-11-21 20:14:00,249 Highland St, Seattle,WA,98101 +287248,AA Batteries (4-pack),1,3.84,2019-11-22 10:54:00,481 Lincoln St, New York City,NY,10001 +287249,ThinkPad Laptop,1,999.99,2019-11-27 13:46:00,508 Johnson St, Portland,OR,97035 +287250,AAA Batteries (4-pack),1,2.99,2019-11-07 12:16:00,555 Spruce St, Austin,TX,73301 +287251,Macbook Pro Laptop,1,1700.0,2019-11-25 13:15:00,395 5th St, Boston,MA,02215 +287252,Vareebadd Phone,1,400.0,2019-11-24 19:51:00,824 6th St, Portland,OR,97035 +287253,AA Batteries (4-pack),1,3.84,2019-11-25 13:35:00,591 Wilson St, Seattle,WA,98101 +287254,Wired Headphones,1,11.99,2019-11-05 07:17:00,626 Johnson St, Boston,MA,02215 +287255,AA Batteries (4-pack),1,3.84,2019-11-07 13:48:00,713 Walnut St, San Francisco,CA,94016 +287256,Apple Airpods Headphones,1,150.0,2019-11-14 16:37:00,945 10th St, Seattle,WA,98101 +287257,iPhone,1,700.0,2019-11-09 14:02:00,463 14th St, San Francisco,CA,94016 +287258,Bose SoundSport Headphones,1,99.99,2019-11-25 17:54:00,678 13th St, Boston,MA,02215 +287259,Google Phone,1,600.0,2019-11-02 20:35:00,121 Cherry St, Portland,OR,97035 +287260,Wired Headphones,1,11.99,2019-11-13 21:26:00,622 Ridge St, San Francisco,CA,94016 +287261,AAA Batteries (4-pack),3,2.99,2019-11-27 23:39:00,383 7th St, Boston,MA,02215 +287262,Wired Headphones,1,11.99,2019-11-27 00:26:00,563 5th St, Los Angeles,CA,90001 +287263,20in Monitor,1,109.99,2019-11-05 00:15:00,858 13th St, Portland,OR,97035 +287264,Wired Headphones,1,11.99,2019-11-17 20:09:00,158 7th St, Portland,OR,97035 +287265,USB-C Charging Cable,1,11.95,2019-11-29 16:28:00,118 Madison St, Los Angeles,CA,90001 +287266,Wired Headphones,1,11.99,2019-11-19 07:14:00,478 Jefferson St, Seattle,WA,98101 +287267,27in FHD Monitor,1,149.99,2019-11-22 09:06:00,899 Adams St, Boston,MA,02215 +287268,AA Batteries (4-pack),2,3.84,2019-11-16 10:30:00,424 Park St, Dallas,TX,75001 +287269,Bose SoundSport Headphones,1,99.99,2019-11-23 18:11:00,392 11th St, Los Angeles,CA,90001 +287270,27in 4K Gaming Monitor,1,389.99,2019-11-04 04:18:00,556 Chestnut St, Seattle,WA,98101 +287271,Lightning Charging Cable,1,14.95,2019-11-23 12:13:00,130 Madison St, Portland,OR,97035 +287272,34in Ultrawide Monitor,1,379.99,2019-11-30 11:35:00,837 River St, Atlanta,GA,30301 +287273,ThinkPad Laptop,1,999.99,2019-11-02 22:18:00,158 Washington St, New York City,NY,10001 +287274,Google Phone,1,600.0,2019-11-22 21:05:00,212 Cedar St, Portland,OR,97035 +287275,AA Batteries (4-pack),4,3.84,2019-11-13 20:44:00,152 West St, Seattle,WA,98101 +287276,AAA Batteries (4-pack),2,2.99,2019-11-13 14:36:00,501 Hickory St, Portland,OR,97035 +287277,Flatscreen TV,1,300.0,2019-11-21 22:39:00,410 Cedar St, Los Angeles,CA,90001 +287278,USB-C Charging Cable,1,11.95,2019-11-25 20:37:00,469 North St, Seattle,WA,98101 +287279,Bose SoundSport Headphones,1,99.99,2019-11-17 22:05:00,773 Hill St, San Francisco,CA,94016 +287280,Wired Headphones,1,11.99,2019-11-13 22:04:00,911 9th St, Boston,MA,02215 +287281,Apple Airpods Headphones,1,150.0,2019-11-13 20:32:00,936 10th St, San Francisco,CA,94016 +287282,ThinkPad Laptop,1,999.99,2019-11-12 20:13:00,324 8th St, Portland,OR,97035 +287283,Flatscreen TV,2,300.0,2019-11-29 08:32:00,559 6th St, Los Angeles,CA,90001 +287284,AAA Batteries (4-pack),1,2.99,2019-11-24 11:13:00,452 14th St, Los Angeles,CA,90001 +287285,Wired Headphones,1,11.99,2019-11-24 12:37:00,476 7th St, San Francisco,CA,94016 +287286,Lightning Charging Cable,1,14.95,2019-11-05 15:24:00,86 9th St, Los Angeles,CA,90001 +287287,USB-C Charging Cable,1,11.95,2019-11-01 20:52:00,291 6th St, New York City,NY,10001 +287288,AA Batteries (4-pack),1,3.84,2019-11-29 11:41:00,216 Lake St, San Francisco,CA,94016 +287289,34in Ultrawide Monitor,1,379.99,2019-11-11 13:33:00,436 Walnut St, Atlanta,GA,30301 +287290,USB-C Charging Cable,1,11.95,2019-11-29 23:25:00,164 10th St, Austin,TX,73301 +287291,34in Ultrawide Monitor,1,379.99,2019-11-14 20:12:00,835 West St, Atlanta,GA,30301 +287292,AAA Batteries (4-pack),3,2.99,2019-11-13 21:33:00,14 South St, Boston,MA,02215 +287293,Wired Headphones,1,11.99,2019-11-15 19:35:00,641 Ridge St, New York City,NY,10001 +287294,20in Monitor,1,109.99,2019-11-19 19:02:00,546 Adams St, Los Angeles,CA,90001 +287295,Apple Airpods Headphones,1,150.0,2019-11-18 12:09:00,667 Hickory St, Seattle,WA,98101 +287296,27in 4K Gaming Monitor,1,389.99,2019-11-15 18:26:00,838 Center St, New York City,NY,10001 +287297,USB-C Charging Cable,1,11.95,2019-11-29 09:58:00,990 Madison St, Austin,TX,73301 +287298,AAA Batteries (4-pack),2,2.99,2019-11-16 14:30:00,324 North St, Boston,MA,02215 +287299,Apple Airpods Headphones,2,150.0,2019-11-16 00:06:00,416 4th St, San Francisco,CA,94016 +287300,34in Ultrawide Monitor,1,379.99,2019-11-27 14:13:00,598 9th St, Portland,OR,97035 +287301,Wired Headphones,1,11.99,2019-11-05 22:59:00,320 Lakeview St, Los Angeles,CA,90001 +287302,AAA Batteries (4-pack),1,2.99,2019-11-29 20:43:00,137 Hickory St, Boston,MA,02215 +287303,Apple Airpods Headphones,1,150.0,2019-11-08 09:40:00,956 Hill St, Boston,MA,02215 +287304,AAA Batteries (4-pack),2,2.99,2019-11-28 11:47:00,325 13th St, Los Angeles,CA,90001 +287305,USB-C Charging Cable,1,11.95,2019-11-26 15:08:00,661 Johnson St, Boston,MA,02215 +287306,20in Monitor,1,109.99,2019-11-23 11:31:00,66 Cedar St, San Francisco,CA,94016 +287307,AA Batteries (4-pack),1,3.84,2019-11-08 21:08:00,98 Cedar St, Boston,MA,02215 +287308,AA Batteries (4-pack),1,3.84,2019-11-10 16:25:00,417 13th St, Portland,OR,97035 +287309,AAA Batteries (4-pack),1,2.99,2019-11-08 17:59:00,360 4th St, San Francisco,CA,94016 +287310,27in FHD Monitor,1,149.99,2019-11-11 12:51:00,689 Cedar St, Boston,MA,02215 +287311,27in 4K Gaming Monitor,1,389.99,2019-11-18 11:47:00,959 Lake St, Atlanta,GA,30301 +287312,Wired Headphones,1,11.99,2019-11-12 18:19:00,416 Park St, Boston,MA,02215 +287313,AAA Batteries (4-pack),1,2.99,2019-11-01 20:33:00,168 14th St, Austin,TX,73301 +287314,AA Batteries (4-pack),1,3.84,2019-11-27 19:11:00,222 Jefferson St, Dallas,TX,75001 +287315,Lightning Charging Cable,1,14.95,2019-11-20 14:55:00,286 Hill St, Atlanta,GA,30301 +287316,USB-C Charging Cable,1,11.95,2019-11-14 21:20:00,390 Jackson St, Los Angeles,CA,90001 +287317,AA Batteries (4-pack),1,3.84,2019-11-26 15:07:00,389 Meadow St, Los Angeles,CA,90001 +287318,USB-C Charging Cable,1,11.95,2019-11-08 10:37:00,293 Hill St, Portland,ME,04101 +287319,AA Batteries (4-pack),1,3.84,2019-11-29 13:33:00,524 6th St, Los Angeles,CA,90001 +287320,ThinkPad Laptop,1,999.99,2019-11-12 08:53:00,812 1st St, Atlanta,GA,30301 +287321,27in FHD Monitor,1,149.99,2019-11-17 18:14:00,906 9th St, San Francisco,CA,94016 +287322,AAA Batteries (4-pack),1,2.99,2019-11-17 05:59:00,915 2nd St, New York City,NY,10001 +287323,AA Batteries (4-pack),1,3.84,2019-11-23 22:13:00,981 5th St, Boston,MA,02215 +287324,AAA Batteries (4-pack),1,2.99,2019-11-26 12:42:00,837 Forest St, New York City,NY,10001 +287325,Bose SoundSport Headphones,1,99.99,2019-11-18 19:43:00,962 Sunset St, Seattle,WA,98101 +287326,Bose SoundSport Headphones,1,99.99,2019-11-08 19:00:00,780 Hickory St, Dallas,TX,75001 +287327,iPhone,1,700.0,2019-11-26 20:51:00,961 Adams St, Seattle,WA,98101 +287328,Lightning Charging Cable,2,14.95,2019-11-29 15:56:00,565 Adams St, San Francisco,CA,94016 +287329,USB-C Charging Cable,1,11.95,2019-11-15 22:32:00,41 Washington St, Dallas,TX,75001 +287330,AA Batteries (4-pack),2,3.84,2019-11-25 14:56:00,465 6th St, San Francisco,CA,94016 +287331,Google Phone,1,600.0,2019-11-04 20:28:00,260 11th St, Portland,OR,97035 +287332,Google Phone,1,600.0,2019-11-27 23:07:00,315 River St, San Francisco,CA,94016 +287333,Wired Headphones,1,11.99,2019-11-29 11:38:00,189 Center St, San Francisco,CA,94016 +287334,Lightning Charging Cable,1,14.95,2019-11-25 13:42:00,152 Jackson St, Atlanta,GA,30301 +287335,Lightning Charging Cable,1,14.95,2019-11-19 20:25:00,447 West St, Los Angeles,CA,90001 +287336,27in FHD Monitor,1,149.99,2019-11-17 11:52:00,337 Madison St, New York City,NY,10001 +287337,AAA Batteries (4-pack),1,2.99,2019-11-19 17:07:00,33 9th St, San Francisco,CA,94016 +287338,USB-C Charging Cable,1,11.95,2019-11-11 23:13:00,662 Church St, Dallas,TX,75001 +287339,USB-C Charging Cable,1,11.95,2019-11-24 19:33:00,14 Lakeview St, Portland,OR,97035 +287340,iPhone,1,700.0,2019-11-15 14:33:00,14 Hickory St, San Francisco,CA,94016 +287340,Apple Airpods Headphones,1,150.0,2019-11-15 14:33:00,14 Hickory St, San Francisco,CA,94016 +287341,Wired Headphones,1,11.99,2019-11-11 13:02:00,581 Spruce St, Dallas,TX,75001 +287342,Lightning Charging Cable,1,14.95,2019-11-23 18:49:00,829 South St, Dallas,TX,75001 +287343,iPhone,1,700.0,2019-11-26 12:19:00,970 Meadow St, San Francisco,CA,94016 +287344,ThinkPad Laptop,1,999.99,2019-11-14 12:14:00,549 Sunset St, Dallas,TX,75001 +287345,Lightning Charging Cable,1,14.95,2019-11-04 16:58:00,424 Cedar St, Portland,OR,97035 +287346,AAA Batteries (4-pack),2,2.99,2019-11-12 06:16:00,39 Forest St, Austin,TX,73301 +287347,Lightning Charging Cable,1,14.95,2019-11-22 21:31:00,881 West St, Dallas,TX,75001 +287348,Wired Headphones,1,11.99,2019-11-15 15:21:00,23 Wilson St, Atlanta,GA,30301 +287349,AAA Batteries (4-pack),1,2.99,2019-11-24 21:45:00,773 Walnut St, San Francisco,CA,94016 +287350,USB-C Charging Cable,1,11.95,2019-11-20 18:19:00,557 Lincoln St, Los Angeles,CA,90001 +287351,20in Monitor,1,109.99,2019-11-22 07:12:00,548 Forest St, Austin,TX,73301 +287352,AAA Batteries (4-pack),1,2.99,2019-11-27 21:11:00,611 Meadow St, Portland,OR,97035 +287353,AA Batteries (4-pack),1,3.84,2019-11-07 16:38:00,300 Lake St, Dallas,TX,75001 +287354,Wired Headphones,1,11.99,2019-11-27 14:34:00,729 6th St, San Francisco,CA,94016 +287355,USB-C Charging Cable,1,11.95,2019-11-11 12:09:00,382 Main St, New York City,NY,10001 +287356,AAA Batteries (4-pack),2,2.99,2019-11-19 08:30:00,543 Johnson St, Seattle,WA,98101 +287357,USB-C Charging Cable,1,11.95,2019-11-11 19:12:00,739 Cherry St, Austin,TX,73301 +287358,Wired Headphones,1,11.99,2019-11-02 11:22:00,348 South St, Boston,MA,02215 +287359,Lightning Charging Cable,1,14.95,2019-11-12 20:39:00,921 Sunset St, Boston,MA,02215 +287360,USB-C Charging Cable,1,11.95,2019-11-28 15:23:00,841 13th St, San Francisco,CA,94016 +287361,Google Phone,1,600.0,2019-11-08 19:21:00,669 6th St, New York City,NY,10001 +287362,USB-C Charging Cable,1,11.95,2019-11-14 12:47:00,753 West St, New York City,NY,10001 +287363,iPhone,1,700.0,2019-11-25 18:18:00,675 Madison St, San Francisco,CA,94016 +287364,34in Ultrawide Monitor,1,379.99,2019-11-14 05:17:00,181 Hill St, San Francisco,CA,94016 +287365,AAA Batteries (4-pack),1,2.99,2019-11-20 15:29:00,969 4th St, San Francisco,CA,94016 +287366,Lightning Charging Cable,1,14.95,2019-11-21 11:18:00,470 Sunset St, Portland,ME,04101 +287367,34in Ultrawide Monitor,1,379.99,2019-11-02 22:19:00,886 Lincoln St, Dallas,TX,75001 +287368,27in FHD Monitor,1,149.99,2019-11-16 14:26:00,657 9th St, New York City,NY,10001 +287369,AAA Batteries (4-pack),1,2.99,2019-11-24 19:35:00,787 10th St, Atlanta,GA,30301 +287370,USB-C Charging Cable,1,11.95,2019-11-16 22:21:00,98 Hill St, Boston,MA,02215 +287371,Lightning Charging Cable,2,14.95,2019-11-14 21:50:00,767 Chestnut St, San Francisco,CA,94016 +287372,Wired Headphones,2,11.99,2019-11-18 07:57:00,509 Jefferson St, San Francisco,CA,94016 +287373,Lightning Charging Cable,1,14.95,2019-11-16 11:30:00,618 Dogwood St, Los Angeles,CA,90001 +287374,20in Monitor,1,109.99,2019-11-17 10:24:00,265 1st St, Los Angeles,CA,90001 +287375,Wired Headphones,1,11.99,2019-11-11 17:35:00,909 9th St, New York City,NY,10001 +287376,Lightning Charging Cable,1,14.95,2019-11-30 01:11:00,585 4th St, Dallas,TX,75001 +287377,iPhone,1,700.0,2019-11-30 16:20:00,141 Chestnut St, Dallas,TX,75001 +287378,USB-C Charging Cable,1,11.95,2019-11-13 09:21:00,479 Center St, San Francisco,CA,94016 +287379,27in FHD Monitor,1,149.99,2019-11-08 15:01:00,222 1st St, Los Angeles,CA,90001 +287380,AAA Batteries (4-pack),3,2.99,2019-11-11 16:05:00,67 Ridge St, San Francisco,CA,94016 +287381,Lightning Charging Cable,1,14.95,2019-11-14 15:08:00,719 Main St, San Francisco,CA,94016 +287382,Lightning Charging Cable,1,14.95,2019-11-10 08:55:00,215 Meadow St, San Francisco,CA,94016 +287383,USB-C Charging Cable,1,11.95,2019-11-01 16:21:00,739 Hill St, Portland,OR,97035 +287384,Google Phone,1,600.0,2019-11-11 18:08:00,772 Madison St, Boston,MA,02215 +287384,USB-C Charging Cable,1,11.95,2019-11-11 18:08:00,772 Madison St, Boston,MA,02215 +287385,Bose SoundSport Headphones,1,99.99,2019-11-28 12:41:00,502 12th St, Seattle,WA,98101 +287386,Bose SoundSport Headphones,1,99.99,2019-11-12 14:19:00,830 8th St, New York City,NY,10001 +287387,Bose SoundSport Headphones,1,99.99,2019-11-22 18:30:00,313 13th St, San Francisco,CA,94016 +287388,20in Monitor,1,109.99,2019-11-21 13:19:00,639 Lakeview St, Atlanta,GA,30301 +287389,34in Ultrawide Monitor,1,379.99,2019-11-05 11:48:00,104 Sunset St, Los Angeles,CA,90001 +287390,AAA Batteries (4-pack),1,2.99,2019-11-01 16:08:00,204 Park St, Atlanta,GA,30301 +287391,Lightning Charging Cable,1,14.95,2019-11-18 22:07:00,444 6th St, San Francisco,CA,94016 +287392,27in 4K Gaming Monitor,1,389.99,2019-11-07 20:09:00,635 9th St, San Francisco,CA,94016 +287393,Apple Airpods Headphones,1,150.0,2019-11-01 20:17:00,707 Main St, Dallas,TX,75001 +287394,27in FHD Monitor,1,149.99,2019-11-05 22:25:00,429 Forest St, Atlanta,GA,30301 +287395,AA Batteries (4-pack),1,3.84,2019-11-17 23:04:00,185 Church St, Atlanta,GA,30301 +287396,Wired Headphones,1,11.99,2019-11-09 16:13:00,926 Forest St, Boston,MA,02215 +287397,Wired Headphones,1,11.99,2019-11-04 04:04:00,566 River St, Los Angeles,CA,90001 +287398,iPhone,1,700.0,2019-11-20 18:23:00,380 Washington St, San Francisco,CA,94016 +287398,Apple Airpods Headphones,1,150.0,2019-11-20 18:23:00,380 Washington St, San Francisco,CA,94016 +287399,34in Ultrawide Monitor,1,379.99,2019-11-05 15:27:00,637 Lake St, New York City,NY,10001 +287400,AA Batteries (4-pack),3,3.84,2019-11-21 10:51:00,446 North St, San Francisco,CA,94016 +287401,Bose SoundSport Headphones,1,99.99,2019-11-14 11:10:00,898 Hickory St, San Francisco,CA,94016 +287402,AAA Batteries (4-pack),2,2.99,2019-11-03 11:08:00,504 13th St, Los Angeles,CA,90001 +287403,Wired Headphones,1,11.99,2019-11-16 19:15:00,557 River St, Los Angeles,CA,90001 +287404,USB-C Charging Cable,1,11.95,2019-11-27 19:08:00,513 2nd St, Los Angeles,CA,90001 +287405,Google Phone,1,600.0,2019-11-28 04:35:00,688 Madison St, Austin,TX,73301 +287405,USB-C Charging Cable,1,11.95,2019-11-28 04:35:00,688 Madison St, Austin,TX,73301 +287406,AA Batteries (4-pack),1,3.84,2019-11-26 09:52:00,370 Willow St, San Francisco,CA,94016 +287407,20in Monitor,1,109.99,2019-11-27 14:24:00,614 2nd St, Los Angeles,CA,90001 +287408,Lightning Charging Cable,1,14.95,2019-11-08 13:29:00,981 Cedar St, San Francisco,CA,94016 +287409,27in FHD Monitor,1,149.99,2019-11-19 19:08:00,609 Main St, Dallas,TX,75001 +287410,Wired Headphones,1,11.99,2019-11-06 11:33:00,97 13th St, San Francisco,CA,94016 +287411,27in 4K Gaming Monitor,1,389.99,2019-11-01 18:30:00,883 Cherry St, Seattle,WA,98101 +287412,AAA Batteries (4-pack),1,2.99,2019-11-26 21:21:00,729 10th St, San Francisco,CA,94016 +287413,AA Batteries (4-pack),1,3.84,2019-11-30 18:54:00,425 Chestnut St, Seattle,WA,98101 +287414,AAA Batteries (4-pack),1,2.99,2019-11-14 12:35:00,904 Lincoln St, Portland,ME,04101 +287415,Wired Headphones,1,11.99,2019-11-28 01:21:00,99 Chestnut St, Seattle,WA,98101 +287416,20in Monitor,1,109.99,2019-11-28 17:20:00,815 Walnut St, Seattle,WA,98101 +287417,USB-C Charging Cable,1,11.95,2019-11-04 12:48:00,820 8th St, San Francisco,CA,94016 +287418,Lightning Charging Cable,1,14.95,2019-11-09 18:53:00,778 4th St, Seattle,WA,98101 +287419,Wired Headphones,1,11.99,2019-11-07 15:54:00,365 River St, Atlanta,GA,30301 +287420,Apple Airpods Headphones,1,150.0,2019-11-17 04:04:00,830 Highland St, Los Angeles,CA,90001 +287421,Wired Headphones,2,11.99,2019-11-25 14:54:00,521 5th St, Austin,TX,73301 +287422,Wired Headphones,1,11.99,2019-11-06 21:17:00,858 North St, San Francisco,CA,94016 +287423,27in 4K Gaming Monitor,1,389.99,2019-11-12 16:33:00,944 Lakeview St, Dallas,TX,75001 +287424,Lightning Charging Cable,1,14.95,2019-11-14 13:13:00,667 Forest St, Los Angeles,CA,90001 +287425,Lightning Charging Cable,1,14.95,2019-11-22 20:01:00,333 Meadow St, Portland,OR,97035 +287426,Bose SoundSport Headphones,1,99.99,2019-11-30 11:17:00,131 Cherry St, Los Angeles,CA,90001 +287427,Bose SoundSport Headphones,1,99.99,2019-11-10 14:39:00,819 Pine St, San Francisco,CA,94016 +287428,Lightning Charging Cable,3,14.95,2019-11-02 19:04:00,755 Spruce St, San Francisco,CA,94016 +287429,AA Batteries (4-pack),1,3.84,2019-11-13 01:29:00,401 North St, Seattle,WA,98101 +287430,AA Batteries (4-pack),2,3.84,2019-11-17 10:17:00,799 Walnut St, Dallas,TX,75001 +287431,Lightning Charging Cable,1,14.95,2019-11-15 13:46:00,278 Adams St, Seattle,WA,98101 +287432,USB-C Charging Cable,1,11.95,2019-11-13 10:23:00,861 Adams St, Boston,MA,02215 +287433,AAA Batteries (4-pack),2,2.99,2019-11-03 01:19:00,509 West St, Dallas,TX,75001 +287434,AA Batteries (4-pack),1,3.84,2019-11-09 23:10:00,121 Lakeview St, Portland,ME,04101 +287435,20in Monitor,1,109.99,2019-11-21 10:19:00,814 Highland St, Los Angeles,CA,90001 +287436,Google Phone,1,600.0,2019-11-13 21:32:00,347 Lake St, Boston,MA,02215 +287437,iPhone,1,700.0,2019-11-18 13:07:00,531 13th St, Los Angeles,CA,90001 +287438,Lightning Charging Cable,1,14.95,2019-11-15 11:46:00,417 North St, Dallas,TX,75001 +287439,AAA Batteries (4-pack),3,2.99,2019-11-12 16:11:00,835 Pine St, San Francisco,CA,94016 +287440,Apple Airpods Headphones,1,150.0,2019-11-24 08:12:00,77 Main St, Portland,ME,04101 +287441,AA Batteries (4-pack),1,3.84,2019-11-20 09:47:00,438 Center St, Seattle,WA,98101 +287441,27in 4K Gaming Monitor,1,389.99,2019-11-20 09:47:00,438 Center St, Seattle,WA,98101 +287442,Lightning Charging Cable,1,14.95,2019-11-12 15:25:00,495 Madison St, New York City,NY,10001 +287443,Lightning Charging Cable,1,14.95,2019-11-17 21:54:00,559 2nd St, Seattle,WA,98101 +287444,Wired Headphones,1,11.99,2019-11-17 08:49:00,742 North St, Los Angeles,CA,90001 +287445,Bose SoundSport Headphones,1,99.99,2019-11-13 02:48:00,804 Main St, Portland,OR,97035 +287446,AAA Batteries (4-pack),1,2.99,2019-11-11 08:56:00,636 South St, Los Angeles,CA,90001 +287447,Wired Headphones,1,11.99,2019-11-20 20:34:00,357 West St, San Francisco,CA,94016 +287448,USB-C Charging Cable,1,11.95,2019-11-01 09:34:00,567 South St, Austin,TX,73301 +287449,Apple Airpods Headphones,1,150.0,2019-11-28 15:46:00,972 8th St, Los Angeles,CA,90001 +287450,27in FHD Monitor,1,149.99,2019-11-26 09:23:00,116 Forest St, Boston,MA,02215 +287451,20in Monitor,1,109.99,2019-11-09 15:17:00,519 Center St, Boston,MA,02215 +287452,Wired Headphones,1,11.99,2019-11-15 00:35:00,581 Meadow St, San Francisco,CA,94016 +287453,iPhone,1,700.0,2019-11-02 16:55:00,898 Wilson St, San Francisco,CA,94016 +287454,34in Ultrawide Monitor,1,379.99,2019-11-17 14:21:00,120 Meadow St, Boston,MA,02215 +287455,Wired Headphones,1,11.99,2019-11-08 20:28:00,439 Dogwood St, San Francisco,CA,94016 +287456,27in 4K Gaming Monitor,1,389.99,2019-11-21 16:12:00,527 Cedar St, Los Angeles,CA,90001 +287457,USB-C Charging Cable,1,11.95,2019-11-21 15:56:00,54 13th St, San Francisco,CA,94016 +287458,AA Batteries (4-pack),1,3.84,2019-11-25 08:46:00,67 Willow St, Atlanta,GA,30301 +287459,USB-C Charging Cable,1,11.95,2019-11-28 20:00:00,349 Jefferson St, Seattle,WA,98101 +287460,USB-C Charging Cable,1,11.95,2019-11-28 20:08:00,632 7th St, Dallas,TX,75001 +287461,Vareebadd Phone,1,400.0,2019-11-01 19:14:00,803 Chestnut St, Seattle,WA,98101 +287462,27in FHD Monitor,1,149.99,2019-11-05 11:30:00,850 River St, New York City,NY,10001 +287463,LG Washing Machine,1,600.0,2019-11-20 15:12:00,443 Jackson St, New York City,NY,10001 +287464,iPhone,1,700.0,2019-11-04 18:29:00,85 South St, New York City,NY,10001 +287465,Wired Headphones,1,11.99,2019-11-02 19:31:00,678 12th St, Atlanta,GA,30301 +287466,AAA Batteries (4-pack),1,2.99,2019-11-09 11:30:00,961 8th St, Boston,MA,02215 +287467,AAA Batteries (4-pack),3,2.99,2019-11-21 09:15:00,740 Willow St, Dallas,TX,75001 +287468,Wired Headphones,1,11.99,2019-11-12 17:41:00,105 Highland St, San Francisco,CA,94016 +287469,Bose SoundSport Headphones,1,99.99,2019-11-09 13:00:00,930 Lincoln St, San Francisco,CA,94016 +287470,Flatscreen TV,1,300.0,2019-11-11 12:36:00,235 9th St, New York City,NY,10001 +287471,USB-C Charging Cable,1,11.95,2019-11-22 18:57:00,145 Main St, Los Angeles,CA,90001 +287472,iPhone,1,700.0,2019-11-07 12:06:00,352 Sunset St, San Francisco,CA,94016 +287473,27in 4K Gaming Monitor,1,389.99,2019-11-04 22:28:00,179 Jackson St, San Francisco,CA,94016 +287474,Flatscreen TV,1,300.0,2019-11-18 20:10:00,418 5th St, Dallas,TX,75001 +287475,USB-C Charging Cable,1,11.95,2019-11-25 12:00:00,646 Highland St, Boston,MA,02215 +287476,Wired Headphones,1,11.99,2019-11-12 07:18:00,220 13th St, Dallas,TX,75001 +287477,iPhone,1,700.0,2019-11-23 14:49:00,552 Willow St, New York City,NY,10001 +287477,Lightning Charging Cable,1,14.95,2019-11-23 14:49:00,552 Willow St, New York City,NY,10001 +287477,Apple Airpods Headphones,1,150.0,2019-11-23 14:49:00,552 Willow St, New York City,NY,10001 +287478,AA Batteries (4-pack),1,3.84,2019-11-17 20:53:00,472 Dogwood St, Dallas,TX,75001 +287479,AAA Batteries (4-pack),1,2.99,2019-11-08 16:08:00,957 Spruce St, San Francisco,CA,94016 +287480,AAA Batteries (4-pack),1,2.99,2019-11-15 20:14:00,256 Jefferson St, Los Angeles,CA,90001 +287481,Bose SoundSport Headphones,1,99.99,2019-11-16 10:17:00,119 Lakeview St, Los Angeles,CA,90001 +287482,Apple Airpods Headphones,1,150.0,2019-11-27 18:15:00,70 Lakeview St, Seattle,WA,98101 +287483,iPhone,1,700.0,2019-11-06 19:08:00,568 Hill St, New York City,NY,10001 +287483,Lightning Charging Cable,1,14.95,2019-11-06 19:08:00,568 Hill St, New York City,NY,10001 +287484,AAA Batteries (4-pack),1,2.99,2019-11-07 12:10:00,278 Sunset St, Dallas,TX,75001 +287485,AAA Batteries (4-pack),3,2.99,2019-11-18 17:10:00,174 8th St, San Francisco,CA,94016 +287486,Lightning Charging Cable,1,14.95,2019-11-06 12:43:00,445 Ridge St, Seattle,WA,98101 +287487,Lightning Charging Cable,2,14.95,2019-11-15 13:50:00,544 6th St, Los Angeles,CA,90001 +287488,LG Dryer,1,600.0,2019-11-07 18:10:00,452 Highland St, Atlanta,GA,30301 +287489,27in FHD Monitor,1,149.99,2019-11-08 17:19:00,966 Lake St, San Francisco,CA,94016 +287490,Google Phone,1,600.0,2019-11-29 15:20:00,292 Washington St, San Francisco,CA,94016 +287490,Bose SoundSport Headphones,1,99.99,2019-11-29 15:20:00,292 Washington St, San Francisco,CA,94016 +287490,Wired Headphones,1,11.99,2019-11-29 15:20:00,292 Washington St, San Francisco,CA,94016 +287491,AA Batteries (4-pack),1,3.84,2019-11-02 11:29:00,828 Highland St, Dallas,TX,75001 +287492,Apple Airpods Headphones,1,150.0,2019-11-14 18:31:00,434 10th St, Los Angeles,CA,90001 +287493,AA Batteries (4-pack),1,3.84,2019-11-04 12:06:00,917 Jackson St, Austin,TX,73301 +287494,USB-C Charging Cable,1,11.95,2019-11-07 15:27:00,613 14th St, Dallas,TX,75001 +287495,AAA Batteries (4-pack),1,2.99,2019-11-18 21:32:00,450 Cherry St, New York City,NY,10001 +287496,34in Ultrawide Monitor,1,379.99,2019-11-16 17:31:00,337 Elm St, Dallas,TX,75001 +287497,27in FHD Monitor,1,149.99,2019-11-11 16:19:00,399 Park St, San Francisco,CA,94016 +287498,27in FHD Monitor,1,149.99,2019-11-16 20:13:00,7 9th St, Seattle,WA,98101 +287499,Bose SoundSport Headphones,1,99.99,2019-11-10 14:26:00,57 Hill St, New York City,NY,10001 +287500,USB-C Charging Cable,1,11.95,2019-11-03 14:16:00,832 Wilson St, Los Angeles,CA,90001 +287501,USB-C Charging Cable,1,11.95,2019-11-13 19:45:00,978 Park St, Austin,TX,73301 +287502,USB-C Charging Cable,1,11.95,2019-11-10 16:19:00,311 Wilson St, Dallas,TX,75001 +287503,AA Batteries (4-pack),2,3.84,2019-11-21 22:17:00,667 Church St, Los Angeles,CA,90001 +287504,20in Monitor,1,109.99,2019-11-07 11:44:00,771 Johnson St, San Francisco,CA,94016 +287505,Bose SoundSport Headphones,1,99.99,2019-11-30 20:43:00,921 Elm St, Boston,MA,02215 +287506,Lightning Charging Cable,1,14.95,2019-11-29 17:01:00,336 1st St, San Francisco,CA,94016 +287507,AAA Batteries (4-pack),1,2.99,2019-11-07 22:38:00,276 Ridge St, New York City,NY,10001 +287508,Bose SoundSport Headphones,1,99.99,2019-11-26 18:05:00,357 Church St, Los Angeles,CA,90001 +287509,Apple Airpods Headphones,1,150.0,2019-11-17 19:59:00,401 11th St, Seattle,WA,98101 +287510,34in Ultrawide Monitor,1,379.99,2019-11-12 12:14:00,848 Spruce St, Seattle,WA,98101 +287511,LG Washing Machine,1,600.0,2019-11-26 21:28:00,38 7th St, Dallas,TX,75001 +287512,Lightning Charging Cable,1,14.95,2019-11-24 11:37:00,580 Cedar St, New York City,NY,10001 +287513,27in FHD Monitor,1,149.99,2019-11-17 14:35:00,102 Lincoln St, Los Angeles,CA,90001 +287514,Lightning Charging Cable,1,14.95,2019-11-10 06:37:00,471 South St, San Francisco,CA,94016 +287515,Flatscreen TV,1,300.0,2019-11-06 16:24:00,946 Lake St, Atlanta,GA,30301 +287516,Flatscreen TV,1,300.0,2019-11-19 14:37:00,955 Chestnut St, Los Angeles,CA,90001 +287517,20in Monitor,1,109.99,2019-11-17 12:50:00,256 7th St, San Francisco,CA,94016 +287518,Bose SoundSport Headphones,1,99.99,2019-11-06 06:55:00,807 Ridge St, San Francisco,CA,94016 +287519,Wired Headphones,1,11.99,2019-11-17 15:16:00,244 River St, San Francisco,CA,94016 +287520,Bose SoundSport Headphones,1,99.99,2019-11-30 16:15:00,180 Sunset St, Portland,ME,04101 +287521,iPhone,1,700.0,2019-11-07 18:22:00,521 Spruce St, San Francisco,CA,94016 +287522,Lightning Charging Cable,1,14.95,2019-11-06 23:53:00,289 Willow St, Boston,MA,02215 +287523,Wired Headphones,1,11.99,2019-11-10 18:26:00,82 Madison St, Boston,MA,02215 +287524,20in Monitor,1,109.99,2019-11-29 21:05:00,698 Walnut St, San Francisco,CA,94016 +287525,Lightning Charging Cable,1,14.95,2019-11-08 20:32:00,946 Elm St, New York City,NY,10001 +287526,Wired Headphones,1,11.99,2019-11-20 23:19:00,69 Park St, Boston,MA,02215 +287527,27in 4K Gaming Monitor,1,389.99,2019-11-26 05:59:00,464 Pine St, San Francisco,CA,94016 +287528,USB-C Charging Cable,1,11.95,2019-11-24 22:14:00,452 Lake St, San Francisco,CA,94016 +287529,AAA Batteries (4-pack),1,2.99,2019-11-10 21:16:00,845 Main St, Atlanta,GA,30301 +287530,Wired Headphones,1,11.99,2019-11-20 19:14:00,853 2nd St, San Francisco,CA,94016 +287531,AA Batteries (4-pack),1,3.84,2019-11-30 16:18:00,385 Jackson St, San Francisco,CA,94016 +287532,AAA Batteries (4-pack),1,2.99,2019-11-23 11:26:00,332 Lake St, Los Angeles,CA,90001 +287533,USB-C Charging Cable,1,11.95,2019-11-04 20:12:00,3 Chestnut St, San Francisco,CA,94016 +287534,Apple Airpods Headphones,1,150.0,2019-11-14 12:00:00,376 Center St, San Francisco,CA,94016 +287535,USB-C Charging Cable,1,11.95,2019-11-06 22:49:00,6 Willow St, Los Angeles,CA,90001 +287536,USB-C Charging Cable,1,11.95,2019-11-22 13:32:00,377 14th St, Dallas,TX,75001 +287536,AAA Batteries (4-pack),2,2.99,2019-11-22 13:32:00,377 14th St, Dallas,TX,75001 +287537,Wired Headphones,1,11.99,2019-11-11 20:32:00,445 Meadow St, San Francisco,CA,94016 +287538,AA Batteries (4-pack),2,3.84,2019-11-15 20:34:00,463 Elm St, Boston,MA,02215 +287539,Lightning Charging Cable,1,14.95,2019-11-22 10:14:00,539 13th St, New York City,NY,10001 +287540,USB-C Charging Cable,1,11.95,2019-11-05 16:30:00,855 4th St, Dallas,TX,75001 +287541,27in FHD Monitor,1,149.99,2019-11-25 19:19:00,922 Chestnut St, Seattle,WA,98101 +287542,AAA Batteries (4-pack),1,2.99,2019-11-02 18:30:00,868 4th St, Atlanta,GA,30301 +287543,27in FHD Monitor,1,149.99,2019-11-23 08:31:00,761 Spruce St, Portland,OR,97035 +287544,34in Ultrawide Monitor,1,379.99,2019-11-19 22:45:00,636 West St, San Francisco,CA,94016 +287545,AA Batteries (4-pack),1,3.84,2019-11-26 22:48:00,650 Jackson St, San Francisco,CA,94016 +287546,iPhone,1,700.0,2019-11-27 01:26:00,973 Hill St, New York City,NY,10001 +287547,AA Batteries (4-pack),3,3.84,2019-11-13 20:56:00,81 Lakeview St, San Francisco,CA,94016 +287548,Wired Headphones,1,11.99,2019-11-20 07:55:00,952 North St, Boston,MA,02215 +287549,Wired Headphones,1,11.99,2019-11-28 07:45:00,350 4th St, San Francisco,CA,94016 +287550,USB-C Charging Cable,1,11.95,2019-11-20 09:30:00,243 West St, Portland,OR,97035 +287551,Lightning Charging Cable,1,14.95,2019-11-17 20:16:00,46 Ridge St, San Francisco,CA,94016 +287552,AA Batteries (4-pack),1,3.84,2019-11-27 18:33:00,517 North St, Boston,MA,02215 +287553,Wired Headphones,1,11.99,2019-11-10 09:21:00,478 Chestnut St, Dallas,TX,75001 +287554,27in FHD Monitor,1,149.99,2019-11-20 10:56:00,125 West St, Boston,MA,02215 +287555,Lightning Charging Cable,1,14.95,2019-11-26 17:19:00,347 Lincoln St, San Francisco,CA,94016 +287556,AA Batteries (4-pack),1,3.84,2019-11-25 13:28:00,439 Washington St, Los Angeles,CA,90001 +287557,Wired Headphones,1,11.99,2019-11-29 21:09:00,844 Forest St, San Francisco,CA,94016 +287558,AAA Batteries (4-pack),2,2.99,2019-11-19 20:13:00,532 Lake St, Austin,TX,73301 +287559,AA Batteries (4-pack),3,3.84,2019-11-27 12:52:00,165 Meadow St, San Francisco,CA,94016 +287560,Bose SoundSport Headphones,1,99.99,2019-11-12 06:10:00,648 Washington St, Atlanta,GA,30301 +287561,Vareebadd Phone,1,400.0,2019-11-23 18:00:00,139 Spruce St, New York City,NY,10001 +287561,USB-C Charging Cable,1,11.95,2019-11-23 18:00:00,139 Spruce St, New York City,NY,10001 +287562,Apple Airpods Headphones,1,150.0,2019-11-13 09:17:00,180 Elm St, San Francisco,CA,94016 +287563,Apple Airpods Headphones,1,150.0,2019-11-02 07:38:00,977 Madison St, San Francisco,CA,94016 +287564,Lightning Charging Cable,1,14.95,2019-11-16 22:14:00,29 Hill St, San Francisco,CA,94016 +287564,Apple Airpods Headphones,1,150.0,2019-11-16 22:14:00,29 Hill St, San Francisco,CA,94016 +287565,Wired Headphones,1,11.99,2019-11-10 09:50:00,706 6th St, Seattle,WA,98101 +287566,Macbook Pro Laptop,1,1700.0,2019-11-23 11:37:00,118 Lakeview St, Los Angeles,CA,90001 +287567,Lightning Charging Cable,1,14.95,2019-11-07 20:22:00,140 Dogwood St, Portland,ME,04101 +287568,Bose SoundSport Headphones,1,99.99,2019-11-05 15:28:00,12 Highland St, Boston,MA,02215 +287569,Wired Headphones,1,11.99,2019-11-23 17:58:00,976 Madison St, Dallas,TX,75001 +287570,AAA Batteries (4-pack),5,2.99,2019-11-21 19:51:00,78 River St, Dallas,TX,75001 +287570,AA Batteries (4-pack),1,3.84,2019-11-21 19:51:00,78 River St, Dallas,TX,75001 +287571,Lightning Charging Cable,1,14.95,2019-11-20 21:28:00,809 Elm St, San Francisco,CA,94016 +287572,Macbook Pro Laptop,1,1700.0,2019-11-30 18:38:00,444 Cedar St, Austin,TX,73301 +287573,AAA Batteries (4-pack),1,2.99,2019-11-29 14:22:00,380 Chestnut St, San Francisco,CA,94016 +287574,Lightning Charging Cable,1,14.95,2019-11-28 12:21:00,983 West St, Seattle,WA,98101 +287575,Lightning Charging Cable,1,14.95,2019-11-28 13:56:00,191 Hill St, San Francisco,CA,94016 +287576,Flatscreen TV,1,300.0,2019-11-19 09:44:00,942 Ridge St, Seattle,WA,98101 +287577,Google Phone,1,600.0,2019-11-20 18:28:00,796 Lake St, San Francisco,CA,94016 +287578,AA Batteries (4-pack),1,3.84,2019-11-29 12:51:00,897 Jackson St, Boston,MA,02215 +287579,Flatscreen TV,1,300.0,2019-11-02 18:53:00,22 Walnut St, Seattle,WA,98101 +287580,Bose SoundSport Headphones,1,99.99,2019-11-28 11:06:00,369 West St, San Francisco,CA,94016 +287581,27in FHD Monitor,1,149.99,2019-11-30 20:40:00,862 Adams St, New York City,NY,10001 +287582,Bose SoundSport Headphones,1,99.99,2019-11-01 09:40:00,745 Jefferson St, Dallas,TX,75001 +287583,USB-C Charging Cable,1,11.95,2019-11-19 14:11:00,1 8th St, Portland,ME,04101 +287584,AAA Batteries (4-pack),2,2.99,2019-11-29 11:32:00,16 Walnut St, Los Angeles,CA,90001 +287585,Apple Airpods Headphones,1,150.0,2019-11-04 20:39:00,677 Chestnut St, Seattle,WA,98101 +287586,Macbook Pro Laptop,1,1700.0,2019-11-22 11:14:00,41 6th St, Atlanta,GA,30301 +287587,27in FHD Monitor,1,149.99,2019-11-04 18:43:00,546 South St, Boston,MA,02215 +287588,Bose SoundSport Headphones,1,99.99,2019-11-11 12:02:00,261 Main St, Dallas,TX,75001 +287589,Bose SoundSport Headphones,1,99.99,2019-11-30 11:07:00,324 2nd St, New York City,NY,10001 +287590,Wired Headphones,1,11.99,2019-11-29 06:16:00,916 13th St, Los Angeles,CA,90001 +287591,Wired Headphones,1,11.99,2019-11-13 23:49:00,394 Cedar St, Dallas,TX,75001 +287592,AAA Batteries (4-pack),1,2.99,2019-11-02 16:51:00,581 Cherry St, Atlanta,GA,30301 +287593,Apple Airpods Headphones,1,150.0,2019-11-23 22:27:00,161 Forest St, Dallas,TX,75001 +287594,Google Phone,1,600.0,2019-11-19 23:21:00,317 4th St, San Francisco,CA,94016 +287595,AAA Batteries (4-pack),3,2.99,2019-11-28 19:57:00,816 Lake St, Dallas,TX,75001 +287596,Apple Airpods Headphones,1,150.0,2019-11-15 15:50:00,300 Hill St, Portland,ME,04101 +287597,Wired Headphones,1,11.99,2019-11-26 19:54:00,151 Ridge St, San Francisco,CA,94016 +287598,AAA Batteries (4-pack),1,2.99,2019-11-08 19:02:00,52 Spruce St, Dallas,TX,75001 +287599,Apple Airpods Headphones,1,150.0,2019-11-26 22:57:00,147 9th St, Los Angeles,CA,90001 +287600,27in FHD Monitor,1,149.99,2019-11-27 09:46:00,752 1st St, New York City,NY,10001 +287601,Lightning Charging Cable,1,14.95,2019-11-05 10:18:00,871 8th St, Los Angeles,CA,90001 +287602,AA Batteries (4-pack),1,3.84,2019-11-18 20:13:00,423 1st St, Boston,MA,02215 +287603,AA Batteries (4-pack),1,3.84,2019-11-18 10:03:00,983 Walnut St, Portland,OR,97035 +287604,AAA Batteries (4-pack),1,2.99,2019-11-04 15:24:00,274 Dogwood St, San Francisco,CA,94016 +287605,Bose SoundSport Headphones,1,99.99,2019-11-14 17:46:00,852 Spruce St, Seattle,WA,98101 +287606,AAA Batteries (4-pack),1,2.99,2019-11-22 12:50:00,303 9th St, San Francisco,CA,94016 +287607,AA Batteries (4-pack),1,3.84,2019-11-06 22:38:00,181 6th St, Los Angeles,CA,90001 +287608,27in 4K Gaming Monitor,1,389.99,2019-11-27 19:56:00,450 Sunset St, San Francisco,CA,94016 +287609,Lightning Charging Cable,1,14.95,2019-11-03 21:30:00,300 Sunset St, Boston,MA,02215 +287610,Bose SoundSport Headphones,1,99.99,2019-11-02 13:14:00,645 Elm St, Portland,ME,04101 +287611,AA Batteries (4-pack),1,3.84,2019-11-22 13:07:00,605 Wilson St, New York City,NY,10001 +287612,Lightning Charging Cable,2,14.95,2019-11-02 13:02:00,680 West St, Los Angeles,CA,90001 +287613,Bose SoundSport Headphones,1,99.99,2019-11-19 14:25:00,322 North St, San Francisco,CA,94016 +287614,Google Phone,1,600.0,2019-11-29 17:45:00,406 River St, Atlanta,GA,30301 +287614,Wired Headphones,1,11.99,2019-11-29 17:45:00,406 River St, Atlanta,GA,30301 +287615,27in FHD Monitor,1,149.99,2019-11-23 19:08:00,901 South St, San Francisco,CA,94016 +287616,Flatscreen TV,1,300.0,2019-11-05 19:48:00,893 5th St, San Francisco,CA,94016 +287617,AA Batteries (4-pack),1,3.84,2019-11-18 08:54:00,90 Lakeview St, Portland,ME,04101 +287618,Flatscreen TV,1,300.0,2019-11-02 23:19:00,934 Walnut St, Los Angeles,CA,90001 +287619,AA Batteries (4-pack),1,3.84,2019-11-15 16:02:00,886 Elm St, Boston,MA,02215 +287620,Apple Airpods Headphones,1,150.0,2019-11-06 15:16:00,464 Hickory St, New York City,NY,10001 +287621,AA Batteries (4-pack),1,3.84,2019-11-07 11:34:00,847 Cedar St, Los Angeles,CA,90001 +287622,20in Monitor,1,109.99,2019-11-27 02:46:00,813 Chestnut St, New York City,NY,10001 +287623,Apple Airpods Headphones,1,150.0,2019-11-28 18:17:00,348 10th St, San Francisco,CA,94016 +287624,Apple Airpods Headphones,1,150.0,2019-11-15 18:12:00,652 2nd St, San Francisco,CA,94016 +287625,20in Monitor,1,109.99,2019-11-10 09:55:00,170 Jackson St, Boston,MA,02215 +287626,AAA Batteries (4-pack),1,2.99,2019-11-12 06:25:00,569 2nd St, San Francisco,CA,94016 +287627,Apple Airpods Headphones,1,150.0,2019-11-09 14:31:00,700 Willow St, Boston,MA,02215 +287628,20in Monitor,1,109.99,2019-11-10 10:38:00,137 5th St, Austin,TX,73301 +287629,Wired Headphones,1,11.99,2019-11-11 18:58:00,558 Lake St, Portland,OR,97035 +287630,Lightning Charging Cable,2,14.95,2019-11-05 11:01:00,478 Main St, New York City,NY,10001 +287631,Lightning Charging Cable,1,14.95,2019-11-13 17:34:00,184 Main St, San Francisco,CA,94016 +287632,27in 4K Gaming Monitor,1,389.99,2019-11-07 20:16:00,726 1st St, San Francisco,CA,94016 +287633,AAA Batteries (4-pack),1,2.99,2019-11-07 21:11:00,410 Main St, Los Angeles,CA,90001 +287634,Google Phone,1,600.0,2019-11-04 22:19:00,793 Walnut St, Los Angeles,CA,90001 +287634,USB-C Charging Cable,1,11.95,2019-11-04 22:19:00,793 Walnut St, Los Angeles,CA,90001 +287634,AAA Batteries (4-pack),1,2.99,2019-11-04 22:19:00,793 Walnut St, Los Angeles,CA,90001 +287635,Lightning Charging Cable,1,14.95,2019-11-19 18:12:00,223 Johnson St, Los Angeles,CA,90001 +287636,Lightning Charging Cable,1,14.95,2019-11-23 16:12:00,780 14th St, San Francisco,CA,94016 +287637,LG Dryer,1,600.0,2019-11-09 11:52:00,757 2nd St, Seattle,WA,98101 +287638,AA Batteries (4-pack),1,3.84,2019-11-12 10:22:00,42 Adams St, New York City,NY,10001 +287639,Wired Headphones,1,11.99,2019-11-24 18:20:00,592 Ridge St, Dallas,TX,75001 +287640,Wired Headphones,1,11.99,2019-11-28 23:24:00,686 8th St, Los Angeles,CA,90001 +287641,Bose SoundSport Headphones,1,99.99,2019-11-21 21:59:00,988 North St, San Francisco,CA,94016 +287642,34in Ultrawide Monitor,1,379.99,2019-11-26 10:08:00,217 14th St, Dallas,TX,75001 +287643,20in Monitor,1,109.99,2019-11-27 09:36:00,581 North St, Atlanta,GA,30301 +287644,AA Batteries (4-pack),1,3.84,2019-11-04 08:33:00,966 7th St, Boston,MA,02215 +287645,ThinkPad Laptop,1,999.99,2019-11-28 06:55:00,210 Sunset St, Seattle,WA,98101 +287646,AAA Batteries (4-pack),1,2.99,2019-11-19 01:40:00,420 7th St, San Francisco,CA,94016 +287647,Flatscreen TV,1,300.0,2019-11-17 06:23:00,469 Willow St, Los Angeles,CA,90001 +287648,Apple Airpods Headphones,1,150.0,2019-11-10 14:12:00,126 Park St, Los Angeles,CA,90001 +287649,USB-C Charging Cable,1,11.95,2019-11-03 23:03:00,587 Hickory St, Austin,TX,73301 +287650,Lightning Charging Cable,1,14.95,2019-11-16 15:42:00,946 Hickory St, San Francisco,CA,94016 +287651,Bose SoundSport Headphones,1,99.99,2019-11-03 13:27:00,959 2nd St, Los Angeles,CA,90001 +287652,AAA Batteries (4-pack),1,2.99,2019-11-10 23:05:00,355 2nd St, Boston,MA,02215 +287653,Bose SoundSport Headphones,1,99.99,2019-11-08 12:43:00,213 10th St, San Francisco,CA,94016 +287654,Bose SoundSport Headphones,1,99.99,2019-11-14 20:31:00,67 Highland St, Seattle,WA,98101 +287655,USB-C Charging Cable,1,11.95,2019-11-23 16:34:00,122 Ridge St, Atlanta,GA,30301 +287656,USB-C Charging Cable,1,11.95,2019-11-30 19:40:00,479 Cherry St, San Francisco,CA,94016 +287657,Apple Airpods Headphones,1,150.0,2019-11-07 14:58:00,569 Forest St, San Francisco,CA,94016 +287658,AA Batteries (4-pack),2,3.84,2019-11-20 17:15:00,956 Main St, Boston,MA,02215 +287659,AA Batteries (4-pack),4,3.84,2019-11-27 23:09:00,191 Hill St, Boston,MA,02215 +287660,USB-C Charging Cable,1,11.95,2019-11-17 09:17:00,950 5th St, Dallas,TX,75001 +287661,AA Batteries (4-pack),1,3.84,2019-11-04 00:47:00,898 11th St, Portland,OR,97035 +287662,AAA Batteries (4-pack),1,2.99,2019-11-06 07:06:00,395 Spruce St, Portland,OR,97035 +287663,AA Batteries (4-pack),3,3.84,2019-11-05 07:39:00,343 Lakeview St, Dallas,TX,75001 +287664,20in Monitor,1,109.99,2019-11-09 15:43:00,920 Willow St, Los Angeles,CA,90001 +287665,AA Batteries (4-pack),1,3.84,2019-11-04 11:52:00,34 Church St, Atlanta,GA,30301 +287666,AA Batteries (4-pack),1,3.84,2019-11-22 15:51:00,449 Elm St, San Francisco,CA,94016 +287667,Lightning Charging Cable,1,14.95,2019-11-13 13:24:00,458 Willow St, Austin,TX,73301 +287668,27in FHD Monitor,1,149.99,2019-11-02 20:28:00,482 Madison St, Portland,ME,04101 +287669,USB-C Charging Cable,1,11.95,2019-11-14 16:20:00,13 14th St, Los Angeles,CA,90001 +287670,USB-C Charging Cable,1,11.95,2019-11-29 21:04:00,797 West St, San Francisco,CA,94016 +287671,AAA Batteries (4-pack),1,2.99,2019-11-03 21:18:00,254 5th St, Austin,TX,73301 +287672,Vareebadd Phone,1,400.0,2019-11-19 09:56:00,601 Adams St, Los Angeles,CA,90001 +287673,Lightning Charging Cable,1,14.95,2019-11-03 14:24:00,825 2nd St, San Francisco,CA,94016 +287674,Macbook Pro Laptop,1,1700.0,2019-11-07 11:43:00,663 Park St, Atlanta,GA,30301 +287675,AAA Batteries (4-pack),1,2.99,2019-11-06 19:48:00,360 Wilson St, New York City,NY,10001 +287676,Wired Headphones,1,11.99,2019-11-07 17:53:00,695 12th St, Portland,OR,97035 +287676,Flatscreen TV,1,300.0,2019-11-07 17:53:00,695 12th St, Portland,OR,97035 +287677,27in FHD Monitor,1,149.99,2019-11-22 09:51:00,916 Maple St, Seattle,WA,98101 +287678,Apple Airpods Headphones,1,150.0,2019-11-28 13:55:00,268 Elm St, Boston,MA,02215 +287679,27in FHD Monitor,1,149.99,2019-11-01 21:17:00,520 Madison St, Los Angeles,CA,90001 +287680,LG Washing Machine,1,600.0,2019-11-09 13:26:00,113 Chestnut St, Atlanta,GA,30301 +287681,AAA Batteries (4-pack),1,2.99,2019-11-05 17:21:00,916 Wilson St, Seattle,WA,98101 +287682,Lightning Charging Cable,1,14.95,2019-11-09 18:24:00,313 6th St, Seattle,WA,98101 +287683,Bose SoundSport Headphones,1,99.99,2019-11-22 16:23:00,156 Cherry St, New York City,NY,10001 +287684,27in 4K Gaming Monitor,1,389.99,2019-11-08 10:48:00,405 7th St, Atlanta,GA,30301 +287685,Lightning Charging Cable,1,14.95,2019-11-14 17:02:00,730 10th St, Dallas,TX,75001 +287686,AA Batteries (4-pack),1,3.84,2019-11-24 19:35:00,13 12th St, San Francisco,CA,94016 +287687,Wired Headphones,1,11.99,2019-11-19 13:22:00,224 Cherry St, Dallas,TX,75001 +287688,Apple Airpods Headphones,1,150.0,2019-11-16 21:26:00,297 Ridge St, San Francisco,CA,94016 +287689,Wired Headphones,1,11.99,2019-11-23 10:28:00,76 Jackson St, Portland,OR,97035 +287690,AA Batteries (4-pack),1,3.84,2019-11-20 09:14:00,630 West St, Atlanta,GA,30301 +287691,27in FHD Monitor,1,149.99,2019-11-02 13:47:00,886 Hickory St, New York City,NY,10001 +287692,iPhone,1,700.0,2019-11-22 22:17:00,46 Lakeview St, Los Angeles,CA,90001 +287693,Bose SoundSport Headphones,1,99.99,2019-11-24 19:38:00,751 Lincoln St, San Francisco,CA,94016 +287694,Lightning Charging Cable,2,14.95,2019-11-30 19:55:00,318 6th St, Dallas,TX,75001 +287695,AA Batteries (4-pack),3,3.84,2019-11-16 16:36:00,882 Madison St, Los Angeles,CA,90001 +287696,Macbook Pro Laptop,1,1700.0,2019-11-06 00:37:00,5 North St, Dallas,TX,75001 +287697,Lightning Charging Cable,1,14.95,2019-11-13 12:00:00,806 12th St, Atlanta,GA,30301 +287698,AA Batteries (4-pack),2,3.84,2019-11-29 02:51:00,38 Jackson St, San Francisco,CA,94016 +287699,Bose SoundSport Headphones,1,99.99,2019-11-19 22:29:00,973 2nd St, San Francisco,CA,94016 +287700,AAA Batteries (4-pack),1,2.99,2019-11-05 12:58:00,387 Washington St, Los Angeles,CA,90001 +287701,Apple Airpods Headphones,1,150.0,2019-11-18 00:19:00,829 Pine St, Boston,MA,02215 +287702,Bose SoundSport Headphones,1,99.99,2019-11-04 20:34:00,527 Spruce St, Seattle,WA,98101 +287702,27in 4K Gaming Monitor,1,389.99,2019-11-04 20:34:00,527 Spruce St, Seattle,WA,98101 +287703,27in 4K Gaming Monitor,1,389.99,2019-11-23 21:09:00,467 North St, Atlanta,GA,30301 +287704,AA Batteries (4-pack),1,3.84,2019-11-10 11:24:00,996 Center St, Atlanta,GA,30301 +287705,Wired Headphones,1,11.99,2019-11-17 22:26:00,48 Jackson St, Portland,OR,97035 +287706,USB-C Charging Cable,1,11.95,2019-11-28 15:20:00,50 Pine St, Atlanta,GA,30301 +287707,Apple Airpods Headphones,1,150.0,2019-11-12 21:14:00,391 Ridge St, New York City,NY,10001 +287708,Google Phone,1,600.0,2019-11-06 17:47:00,97 Jefferson St, Los Angeles,CA,90001 +287709,AA Batteries (4-pack),1,3.84,2019-11-04 19:10:00,927 West St, Los Angeles,CA,90001 +287710,AAA Batteries (4-pack),2,2.99,2019-11-24 09:37:00,176 6th St, San Francisco,CA,94016 +287711,Wired Headphones,1,11.99,2019-11-06 10:26:00,520 7th St, San Francisco,CA,94016 +287712,27in 4K Gaming Monitor,1,389.99,2019-11-08 06:53:00,230 Johnson St, Seattle,WA,98101 +287713,Wired Headphones,1,11.99,2019-11-11 16:59:00,807 Walnut St, Los Angeles,CA,90001 +287714,27in FHD Monitor,1,149.99,2019-11-08 16:02:00,390 12th St, Dallas,TX,75001 +287715,Apple Airpods Headphones,1,150.0,2019-11-17 18:25:00,886 10th St, New York City,NY,10001 +287716,Lightning Charging Cable,1,14.95,2019-11-23 06:25:00,230 Lincoln St, San Francisco,CA,94016 +287717,AA Batteries (4-pack),1,3.84,2019-11-17 13:35:00,570 11th St, Dallas,TX,75001 +287718,Flatscreen TV,1,300.0,2019-11-24 14:38:00,971 Hickory St, New York City,NY,10001 +287719,Bose SoundSport Headphones,1,99.99,2019-11-01 20:19:00,83 Meadow St, New York City,NY,10001 +287720,Bose SoundSport Headphones,1,99.99,2019-11-21 21:36:00,539 Center St, Seattle,WA,98101 +287721,AAA Batteries (4-pack),1,2.99,2019-11-05 18:11:00,293 Walnut St, Portland,ME,04101 +287722,Wired Headphones,2,11.99,2019-11-26 10:08:00,574 Jefferson St, Portland,ME,04101 +287723,AAA Batteries (4-pack),2,2.99,2019-11-22 11:05:00,271 10th St, Los Angeles,CA,90001 +287724,USB-C Charging Cable,1,11.95,2019-11-02 15:59:00,786 Washington St, Los Angeles,CA,90001 +287725,USB-C Charging Cable,1,11.95,2019-11-10 08:32:00,131 Highland St, San Francisco,CA,94016 +287726,AAA Batteries (4-pack),1,2.99,2019-11-06 19:23:00,524 Meadow St, Boston,MA,02215 +287727,Lightning Charging Cable,1,14.95,2019-11-04 13:53:00,740 Cherry St, Los Angeles,CA,90001 +287728,27in 4K Gaming Monitor,1,389.99,2019-11-02 15:55:00,29 4th St, Atlanta,GA,30301 +287729,Flatscreen TV,1,300.0,2019-11-18 12:19:00,130 Hickory St, New York City,NY,10001 +287730,USB-C Charging Cable,1,11.95,2019-11-01 19:38:00,912 Johnson St, New York City,NY,10001 +287731,AA Batteries (4-pack),2,3.84,2019-11-24 18:27:00,867 Elm St, Atlanta,GA,30301 +287732,34in Ultrawide Monitor,1,379.99,2019-11-08 21:39:00,414 Walnut St, San Francisco,CA,94016 +287733,AAA Batteries (4-pack),2,2.99,2019-11-12 18:05:00,865 6th St, San Francisco,CA,94016 +287734,USB-C Charging Cable,1,11.95,2019-11-18 18:28:00,705 Ridge St, Dallas,TX,75001 +287735,Apple Airpods Headphones,1,150.0,2019-11-03 22:03:00,403 Sunset St, Dallas,TX,75001 +287736,Wired Headphones,1,11.99,2019-11-12 06:06:00,756 Cherry St, Boston,MA,02215 +287737,Apple Airpods Headphones,1,150.0,2019-11-01 21:12:00,635 Maple St, Seattle,WA,98101 +287738,Flatscreen TV,1,300.0,2019-11-02 16:07:00,656 Main St, San Francisco,CA,94016 +287739,Google Phone,1,600.0,2019-11-05 15:14:00,889 Washington St, Los Angeles,CA,90001 +287740,Flatscreen TV,1,300.0,2019-11-24 19:41:00,983 Park St, San Francisco,CA,94016 +287741,AA Batteries (4-pack),1,3.84,2019-11-07 17:42:00,411 Jefferson St, San Francisco,CA,94016 +287742,USB-C Charging Cable,1,11.95,2019-11-28 07:46:00,304 Sunset St, Atlanta,GA,30301 +287743,USB-C Charging Cable,2,11.95,2019-11-28 02:41:00,879 13th St, New York City,NY,10001 +287744,Apple Airpods Headphones,1,150.0,2019-11-02 09:10:00,427 13th St, Portland,OR,97035 +287745,AA Batteries (4-pack),1,3.84,2019-11-30 15:53:00,914 1st St, San Francisco,CA,94016 +287746,AAA Batteries (4-pack),2,2.99,2019-11-15 19:36:00,838 Church St, Portland,OR,97035 +287747,Apple Airpods Headphones,1,150.0,2019-11-03 21:27:00,130 Main St, Los Angeles,CA,90001 +287748,USB-C Charging Cable,1,11.95,2019-11-23 17:51:00,628 10th St, Atlanta,GA,30301 +287749,Apple Airpods Headphones,1,150.0,2019-11-15 08:53:00,522 6th St, Dallas,TX,75001 +287750,27in 4K Gaming Monitor,1,389.99,2019-11-18 19:14:00,532 Hickory St, Los Angeles,CA,90001 +287751,Google Phone,1,600.0,2019-11-20 11:06:00,44 2nd St, Atlanta,GA,30301 +287752,Wired Headphones,1,11.99,2019-11-04 22:58:00,646 Madison St, Los Angeles,CA,90001 +287753,AAA Batteries (4-pack),2,2.99,2019-11-21 13:23:00,593 Walnut St, San Francisco,CA,94016 +287754,AAA Batteries (4-pack),1,2.99,2019-11-01 15:31:00,384 Highland St, San Francisco,CA,94016 +287755,Apple Airpods Headphones,1,150.0,2019-11-23 12:15:00,543 Lake St, Los Angeles,CA,90001 +287756,Flatscreen TV,1,300.0,2019-11-21 09:45:00,540 Church St, Boston,MA,02215 +287757,Lightning Charging Cable,1,14.95,2019-11-03 17:04:00,634 West St, Austin,TX,73301 +287758,Bose SoundSport Headphones,1,99.99,2019-11-24 19:54:00,72 Elm St, San Francisco,CA,94016 +287758,iPhone,1,700.0,2019-11-24 19:54:00,72 Elm St, San Francisco,CA,94016 +287759,Lightning Charging Cable,1,14.95,2019-11-19 14:00:00,764 6th St, Los Angeles,CA,90001 +287760,AAA Batteries (4-pack),2,2.99,2019-11-25 23:57:00,412 Chestnut St, Atlanta,GA,30301 +287761,AA Batteries (4-pack),1,3.84,2019-11-13 01:07:00,846 14th St, Los Angeles,CA,90001 +287762,Apple Airpods Headphones,1,150.0,2019-11-01 14:25:00,511 Spruce St, San Francisco,CA,94016 +287763,USB-C Charging Cable,2,11.95,2019-11-26 09:46:00,359 5th St, Dallas,TX,75001 +287764,iPhone,1,700.0,2019-11-17 12:11:00,913 7th St, Portland,OR,97035 +287765,USB-C Charging Cable,1,11.95,2019-11-09 17:43:00,575 5th St, Seattle,WA,98101 +287766,Bose SoundSport Headphones,1,99.99,2019-11-17 15:31:00,823 Johnson St, Dallas,TX,75001 +287767,AAA Batteries (4-pack),1,2.99,2019-11-23 12:38:00,271 Wilson St, Boston,MA,02215 +287768,Macbook Pro Laptop,1,1700.0,2019-11-07 13:49:00,38 8th St, Portland,OR,97035 +287769,AA Batteries (4-pack),1,3.84,2019-11-20 18:18:00,585 Lake St, Austin,TX,73301 +287770,Lightning Charging Cable,1,14.95,2019-11-22 20:53:00,114 Forest St, Austin,TX,73301 +287771,iPhone,1,700.0,2019-11-05 10:15:00,852 9th St, San Francisco,CA,94016 +287772,27in FHD Monitor,1,149.99,2019-11-02 13:04:00,5 Maple St, Portland,OR,97035 +287773,Wired Headphones,1,11.99,2019-11-25 00:14:00,893 12th St, San Francisco,CA,94016 +287774,Wired Headphones,1,11.99,2019-11-08 22:53:00,33 Pine St, Seattle,WA,98101 +287775,AAA Batteries (4-pack),1,2.99,2019-11-22 10:55:00,402 Adams St, Atlanta,GA,30301 +287776,USB-C Charging Cable,1,11.95,2019-11-15 23:11:00,960 Adams St, Boston,MA,02215 +287777,Apple Airpods Headphones,1,150.0,2019-11-13 19:43:00,863 North St, San Francisco,CA,94016 +287778,Lightning Charging Cable,1,14.95,2019-11-08 08:32:00,414 Cedar St, Los Angeles,CA,90001 +287779,27in FHD Monitor,1,149.99,2019-11-27 19:29:00,999 Adams St, Boston,MA,02215 +287779,Bose SoundSport Headphones,1,99.99,2019-11-27 19:29:00,999 Adams St, Boston,MA,02215 +287780,AA Batteries (4-pack),2,3.84,2019-11-17 22:24:00,182 6th St, Boston,MA,02215 +287781,Lightning Charging Cable,1,14.95,2019-11-01 17:02:00,231 Elm St, Los Angeles,CA,90001 +287782,20in Monitor,1,109.99,2019-11-10 10:49:00,273 Chestnut St, Seattle,WA,98101 +287783,AA Batteries (4-pack),1,3.84,2019-11-04 05:39:00,363 Lakeview St, Los Angeles,CA,90001 +287784,USB-C Charging Cable,1,11.95,2019-11-17 17:09:00,868 10th St, Atlanta,GA,30301 +287785,Macbook Pro Laptop,1,1700.0,2019-11-05 21:21:00,184 Meadow St, Boston,MA,02215 +287786,27in FHD Monitor,1,149.99,2019-11-11 07:22:00,457 Pine St, New York City,NY,10001 +287787,USB-C Charging Cable,2,11.95,2019-11-08 17:56:00,195 Park St, Portland,OR,97035 +287788,Apple Airpods Headphones,1,150.0,2019-11-05 13:22:00,193 14th St, Portland,OR,97035 +287789,27in FHD Monitor,1,149.99,2019-11-20 07:30:00,98 Hill St, New York City,NY,10001 +287790,27in 4K Gaming Monitor,1,389.99,2019-11-12 15:02:00,933 Jefferson St, Austin,TX,73301 +287791,Apple Airpods Headphones,1,150.0,2019-11-21 16:05:00,802 River St, Austin,TX,73301 +287792,27in FHD Monitor,1,149.99,2019-11-10 09:41:00,210 River St, Los Angeles,CA,90001 +287793,AAA Batteries (4-pack),1,2.99,2019-11-29 11:44:00,355 Sunset St, Boston,MA,02215 +287794,Google Phone,1,600.0,2019-11-06 12:38:00,883 4th St, New York City,NY,10001 +287794,Wired Headphones,1,11.99,2019-11-06 12:38:00,883 4th St, New York City,NY,10001 +287795,Macbook Pro Laptop,1,1700.0,2019-11-19 18:57:00,944 Hickory St, Los Angeles,CA,90001 +287796,Lightning Charging Cable,1,14.95,2019-11-19 00:35:00,686 8th St, Atlanta,GA,30301 +287797,AAA Batteries (4-pack),1,2.99,2019-11-24 19:43:00,682 7th St, Boston,MA,02215 +287798,AA Batteries (4-pack),2,3.84,2019-11-07 14:46:00,722 5th St, San Francisco,CA,94016 +287799,Apple Airpods Headphones,1,150.0,2019-11-18 18:12:00,325 Cedar St, Dallas,TX,75001 +287800,Bose SoundSport Headphones,1,99.99,2019-11-29 11:02:00,968 Dogwood St, New York City,NY,10001 +287801,AAA Batteries (4-pack),1,2.99,2019-11-12 12:00:00,169 Sunset St, Atlanta,GA,30301 +287802,AAA Batteries (4-pack),3,2.99,2019-11-26 19:41:00,240 Jackson St, Los Angeles,CA,90001 +287803,ThinkPad Laptop,1,999.99,2019-11-19 17:10:00,762 Hickory St, Seattle,WA,98101 +287804,Lightning Charging Cable,1,14.95,2019-11-26 11:54:00,223 Ridge St, Los Angeles,CA,90001 +287805,AA Batteries (4-pack),1,3.84,2019-11-23 22:59:00,988 Pine St, New York City,NY,10001 +287806,Wired Headphones,1,11.99,2019-11-19 17:37:00,425 Cherry St, Los Angeles,CA,90001 +287807,Macbook Pro Laptop,1,1700.0,2019-11-06 10:25:00,617 12th St, Boston,MA,02215 +287808,Wired Headphones,3,11.99,2019-11-26 21:59:00,828 River St, Seattle,WA,98101 +287809,Apple Airpods Headphones,1,150.0,2019-11-20 12:05:00,980 5th St, Portland,OR,97035 +287810,AA Batteries (4-pack),1,3.84,2019-11-24 13:37:00,865 1st St, Seattle,WA,98101 +287811,AAA Batteries (4-pack),1,2.99,2019-11-13 11:38:00,398 Elm St, Los Angeles,CA,90001 +287812,Wired Headphones,1,11.99,2019-11-22 19:43:00,737 Lincoln St, Boston,MA,02215 +287813,Apple Airpods Headphones,1,150.0,2019-11-11 21:43:00,710 Madison St, Portland,OR,97035 +287814,AAA Batteries (4-pack),2,2.99,2019-11-01 17:47:00,307 Hill St, San Francisco,CA,94016 +287815,Flatscreen TV,1,300.0,2019-11-07 20:12:00,204 Hill St, Atlanta,GA,30301 +287816,AA Batteries (4-pack),2,3.84,2019-11-22 15:34:00,758 1st St, Atlanta,GA,30301 +287817,Macbook Pro Laptop,1,1700.0,2019-11-05 22:22:00,2 Hill St, Austin,TX,73301 +287818,34in Ultrawide Monitor,1,379.99,2019-11-01 19:27:00,774 7th St, Portland,ME,04101 +287819,34in Ultrawide Monitor,1,379.99,2019-11-18 08:22:00,65 11th St, Portland,OR,97035 +287820,Wired Headphones,1,11.99,2019-11-14 12:25:00,205 Lincoln St, San Francisco,CA,94016 +287821,Wired Headphones,1,11.99,2019-11-15 22:19:00,597 Lincoln St, New York City,NY,10001 +287822,USB-C Charging Cable,1,11.95,2019-11-25 16:06:00,716 Church St, Seattle,WA,98101 +287823,AAA Batteries (4-pack),2,2.99,2019-11-07 18:07:00,754 Forest St, Boston,MA,02215 +287824,iPhone,1,700.0,2019-11-22 16:47:00,341 Washington St, New York City,NY,10001 +287825,Lightning Charging Cable,1,14.95,2019-11-03 19:56:00,645 Hill St, Atlanta,GA,30301 +287826,AA Batteries (4-pack),1,3.84,2019-11-15 08:26:00,366 Johnson St, San Francisco,CA,94016 +287827,AA Batteries (4-pack),1,3.84,2019-11-27 23:53:00,488 Center St, Los Angeles,CA,90001 +287828,Lightning Charging Cable,1,14.95,2019-11-11 22:20:00,746 Forest St, Dallas,TX,75001 +287829,USB-C Charging Cable,2,11.95,2019-11-11 12:44:00,495 Park St, Los Angeles,CA,90001 +287830,27in 4K Gaming Monitor,1,389.99,2019-11-20 13:24:00,788 6th St, New York City,NY,10001 +287831,AA Batteries (4-pack),1,3.84,2019-11-03 21:14:00,34 Wilson St, San Francisco,CA,94016 +287832,20in Monitor,1,109.99,2019-11-24 02:09:00,779 Sunset St, Atlanta,GA,30301 +287833,iPhone,1,700.0,2019-11-04 14:31:00,418 Johnson St, Boston,MA,02215 +287834,AAA Batteries (4-pack),1,2.99,2019-11-29 21:32:00,145 Chestnut St, Atlanta,GA,30301 +287835,Wired Headphones,1,11.99,2019-11-04 17:54:00,68 Sunset St, Los Angeles,CA,90001 +287836,Apple Airpods Headphones,1,150.0,2019-11-06 22:33:00,132 Johnson St, New York City,NY,10001 +287837,Lightning Charging Cable,1,14.95,2019-11-27 19:18:00,520 Cedar St, Atlanta,GA,30301 +287838,USB-C Charging Cable,1,11.95,2019-11-18 22:05:00,900 Adams St, New York City,NY,10001 +287839,27in FHD Monitor,1,149.99,2019-11-30 03:18:00,370 8th St, Boston,MA,02215 +287840,Flatscreen TV,1,300.0,2019-11-12 21:57:00,974 Cherry St, New York City,NY,10001 +287841,AA Batteries (4-pack),1,3.84,2019-11-23 21:26:00,847 Main St, Atlanta,GA,30301 +287842,USB-C Charging Cable,1,11.95,2019-11-19 11:37:00,130 Wilson St, San Francisco,CA,94016 +287843,Lightning Charging Cable,1,14.95,2019-11-10 19:34:00,998 Elm St, Los Angeles,CA,90001 +287844,USB-C Charging Cable,1,11.95,2019-11-29 11:15:00,561 River St, Dallas,TX,75001 +287845,Wired Headphones,1,11.99,2019-11-17 13:10:00,413 13th St, San Francisco,CA,94016 +287846,34in Ultrawide Monitor,1,379.99,2019-11-26 16:03:00,94 Chestnut St, Los Angeles,CA,90001 +287847,Bose SoundSport Headphones,1,99.99,2019-11-24 18:30:00,848 2nd St, Austin,TX,73301 +287848,Apple Airpods Headphones,1,150.0,2019-11-13 12:38:00,360 Center St, New York City,NY,10001 +287849,20in Monitor,1,109.99,2019-11-01 17:13:00,230 8th St, Boston,MA,02215 +287850,Wired Headphones,1,11.99,2019-11-21 06:12:00,327 Walnut St, Portland,OR,97035 +287851,Lightning Charging Cable,2,14.95,2019-11-05 12:11:00,395 7th St, San Francisco,CA,94016 +287852,USB-C Charging Cable,1,11.95,2019-11-10 07:32:00,638 Wilson St, New York City,NY,10001 +287853,USB-C Charging Cable,1,11.95,2019-11-09 19:48:00,454 Sunset St, Atlanta,GA,30301 +287854,AAA Batteries (4-pack),1,2.99,2019-11-27 17:12:00,515 8th St, Los Angeles,CA,90001 +287855,Wired Headphones,1,11.99,2019-11-19 11:51:00,666 6th St, Dallas,TX,75001 +287856,Wired Headphones,1,11.99,2019-11-11 20:39:00,566 Elm St, Atlanta,GA,30301 +287857,34in Ultrawide Monitor,1,379.99,2019-11-17 17:04:00,883 Forest St, Atlanta,GA,30301 +287858,Flatscreen TV,1,300.0,2019-11-21 21:09:00,686 Forest St, Los Angeles,CA,90001 +287859,ThinkPad Laptop,1,999.99,2019-11-25 13:41:00,909 Willow St, New York City,NY,10001 +287860,Apple Airpods Headphones,1,150.0,2019-11-11 14:21:00,700 Center St, Atlanta,GA,30301 +287861,AAA Batteries (4-pack),1,2.99,2019-11-16 09:16:00,702 Main St, Portland,OR,97035 +287862,iPhone,1,700.0,2019-11-26 13:19:00,85 Lincoln St, Boston,MA,02215 +287863,USB-C Charging Cable,1,11.95,2019-11-30 10:08:00,376 Lakeview St, Boston,MA,02215 +287864,AAA Batteries (4-pack),1,2.99,2019-11-20 16:06:00,819 13th St, Seattle,WA,98101 +287865,20in Monitor,1,109.99,2019-11-21 22:06:00,887 Hickory St, San Francisco,CA,94016 +287866,Macbook Pro Laptop,1,1700.0,2019-11-05 21:13:00,309 10th St, Seattle,WA,98101 +287867,AAA Batteries (4-pack),2,2.99,2019-11-16 17:23:00,988 Pine St, Los Angeles,CA,90001 +287868,LG Dryer,1,600.0,2019-11-24 20:34:00,962 10th St, Atlanta,GA,30301 +287869,USB-C Charging Cable,2,11.95,2019-11-03 21:01:00,634 Cedar St, Los Angeles,CA,90001 +287870,AAA Batteries (4-pack),1,2.99,2019-11-08 21:57:00,136 Washington St, Seattle,WA,98101 +287870,27in FHD Monitor,1,149.99,2019-11-08 21:57:00,136 Washington St, Seattle,WA,98101 +287871,Wired Headphones,1,11.99,2019-11-13 07:08:00,550 Pine St, Atlanta,GA,30301 +287872,20in Monitor,1,109.99,2019-11-07 23:27:00,864 Willow St, Austin,TX,73301 +287873,Apple Airpods Headphones,1,150.0,2019-11-14 17:49:00,173 Main St, San Francisco,CA,94016 +287874,Lightning Charging Cable,1,14.95,2019-11-25 08:28:00,962 Forest St, Seattle,WA,98101 +287875,Apple Airpods Headphones,1,150.0,2019-11-30 14:55:00,819 12th St, San Francisco,CA,94016 +287876,Lightning Charging Cable,1,14.95,2019-11-14 10:53:00,902 2nd St, San Francisco,CA,94016 +287877,USB-C Charging Cable,1,11.95,2019-11-19 12:27:00,152 Wilson St, New York City,NY,10001 +287878,Macbook Pro Laptop,1,1700.0,2019-11-06 09:03:00,208 Chestnut St, San Francisco,CA,94016 +287879,iPhone,1,700.0,2019-11-04 01:27:00,942 Dogwood St, San Francisco,CA,94016 +287880,AAA Batteries (4-pack),1,2.99,2019-11-10 15:24:00,584 Willow St, San Francisco,CA,94016 +287881,Lightning Charging Cable,1,14.95,2019-11-24 19:12:00,413 6th St, New York City,NY,10001 +287882,Lightning Charging Cable,1,14.95,2019-11-05 23:12:00,586 4th St, Dallas,TX,75001 +287883,USB-C Charging Cable,1,11.95,2019-11-28 18:42:00,119 Park St, Los Angeles,CA,90001 +287884,AAA Batteries (4-pack),1,2.99,2019-11-12 14:00:00,723 Forest St, Los Angeles,CA,90001 +287885,AAA Batteries (4-pack),1,2.99,2019-11-22 15:18:00,958 Main St, Dallas,TX,75001 +287886,AA Batteries (4-pack),1,3.84,2019-11-25 00:25:00,699 Chestnut St, San Francisco,CA,94016 +287887,Google Phone,1,600.0,2019-11-08 12:20:00,838 River St, New York City,NY,10001 +287888,Lightning Charging Cable,1,14.95,2019-11-16 10:04:00,860 Cedar St, Austin,TX,73301 +287889,AAA Batteries (4-pack),1,2.99,2019-11-09 16:42:00,937 Walnut St, San Francisco,CA,94016 +287890,USB-C Charging Cable,1,11.95,2019-11-06 11:17:00,975 Forest St, New York City,NY,10001 +287891,AAA Batteries (4-pack),1,2.99,2019-11-26 18:18:00,289 5th St, New York City,NY,10001 +287892,Flatscreen TV,1,300.0,2019-11-10 15:52:00,517 Chestnut St, Seattle,WA,98101 +287893,27in 4K Gaming Monitor,1,389.99,2019-11-25 19:31:00,232 Jefferson St, San Francisco,CA,94016 +287894,Bose SoundSport Headphones,1,99.99,2019-11-11 17:19:00,761 1st St, San Francisco,CA,94016 +287895,27in 4K Gaming Monitor,1,389.99,2019-11-12 00:41:00,561 Willow St, Portland,ME,04101 +287896,AAA Batteries (4-pack),1,2.99,2019-11-23 20:49:00,118 Cherry St, San Francisco,CA,94016 +287897,Bose SoundSport Headphones,1,99.99,2019-11-17 11:44:00,457 Spruce St, Los Angeles,CA,90001 +287898,Lightning Charging Cable,1,14.95,2019-11-12 17:37:00,997 Cedar St, Dallas,TX,75001 +287899,20in Monitor,1,109.99,2019-11-26 07:31:00,20 5th St, Los Angeles,CA,90001 +287900,iPhone,1,700.0,2019-11-15 11:10:00,955 South St, San Francisco,CA,94016 +287901,34in Ultrawide Monitor,1,379.99,2019-11-19 15:28:00,606 2nd St, San Francisco,CA,94016 +287902,Lightning Charging Cable,1,14.95,2019-11-08 17:34:00,695 8th St, New York City,NY,10001 +287902,AAA Batteries (4-pack),2,2.99,2019-11-08 17:34:00,695 8th St, New York City,NY,10001 +287903,ThinkPad Laptop,1,999.99,2019-11-30 13:18:00,469 4th St, San Francisco,CA,94016 +287904,27in FHD Monitor,1,149.99,2019-11-08 16:24:00,694 13th St, Boston,MA,02215 +287905,LG Dryer,1,600.0,2019-11-13 06:34:00,73 Sunset St, Seattle,WA,98101 +287906,AAA Batteries (4-pack),1,2.99,2019-11-03 14:34:00,143 2nd St, Boston,MA,02215 +287907,Bose SoundSport Headphones,1,99.99,2019-11-04 09:48:00,382 14th St, Seattle,WA,98101 +287908,iPhone,1,700.0,2019-11-13 17:35:00,572 4th St, New York City,NY,10001 +287909,USB-C Charging Cable,1,11.95,2019-11-23 16:19:00,56 Cedar St, New York City,NY,10001 +287910,Lightning Charging Cable,1,14.95,2019-11-26 11:19:00,562 14th St, Los Angeles,CA,90001 +287911,Wired Headphones,1,11.99,2019-11-22 21:34:00,389 1st St, Los Angeles,CA,90001 +287912,Lightning Charging Cable,1,14.95,2019-11-07 19:02:00,320 4th St, Austin,TX,73301 +287913,Lightning Charging Cable,1,14.95,2019-11-12 09:12:00,641 7th St, Atlanta,GA,30301 +287914,Lightning Charging Cable,1,14.95,2019-11-24 09:11:00,970 Washington St, New York City,NY,10001 +287915,iPhone,1,700.0,2019-11-22 22:29:00,324 Cedar St, Dallas,TX,75001 +287916,Wired Headphones,1,11.99,2019-11-13 16:59:00,991 13th St, San Francisco,CA,94016 +287917,Lightning Charging Cable,1,14.95,2019-11-21 00:33:00,472 10th St, Atlanta,GA,30301 +287918,27in FHD Monitor,1,149.99,2019-11-06 12:24:00,137 Willow St, Seattle,WA,98101 +287919,AAA Batteries (4-pack),1,2.99,2019-11-24 11:40:00,621 Maple St, Seattle,WA,98101 +287920,Lightning Charging Cable,1,14.95,2019-11-14 21:38:00,855 Adams St, Boston,MA,02215 +287921,AAA Batteries (4-pack),1,2.99,2019-11-14 17:44:00,891 Hickory St, San Francisco,CA,94016 +287922,Lightning Charging Cable,1,14.95,2019-11-24 15:25:00,160 8th St, New York City,NY,10001 +287923,Bose SoundSport Headphones,1,99.99,2019-11-17 07:02:00,842 1st St, Dallas,TX,75001 +287924,AA Batteries (4-pack),2,3.84,2019-11-30 14:18:00,711 North St, San Francisco,CA,94016 +287925,Lightning Charging Cable,1,14.95,2019-11-17 17:55:00,575 River St, New York City,NY,10001 +287926,USB-C Charging Cable,3,11.95,2019-11-08 02:54:00,648 Elm St, Los Angeles,CA,90001 +287927,Flatscreen TV,1,300.0,2019-11-25 10:48:00,206 Meadow St, New York City,NY,10001 +287928,AA Batteries (4-pack),2,3.84,2019-11-21 20:07:00,672 14th St, Portland,OR,97035 +287929,Apple Airpods Headphones,1,150.0,2019-11-03 00:49:00,990 Lakeview St, Los Angeles,CA,90001 +287930,Lightning Charging Cable,1,14.95,2019-11-16 02:57:00,14 Lake St, Atlanta,GA,30301 +287931,AA Batteries (4-pack),1,3.84,2019-11-08 19:58:00,445 8th St, Boston,MA,02215 +287932,Wired Headphones,1,11.99,2019-11-16 11:07:00,14 Chestnut St, Los Angeles,CA,90001 +287933,27in FHD Monitor,1,149.99,2019-11-15 22:50:00,629 Dogwood St, Portland,OR,97035 +287934,AAA Batteries (4-pack),1,2.99,2019-11-03 17:55:00,964 North St, New York City,NY,10001 +287935,AA Batteries (4-pack),1,3.84,2019-11-02 09:27:00,945 River St, San Francisco,CA,94016 +287936,AAA Batteries (4-pack),1,2.99,2019-11-13 13:00:00,473 Cedar St, Portland,OR,97035 +287937,Apple Airpods Headphones,1,150.0,2019-11-23 20:10:00,196 Walnut St, Los Angeles,CA,90001 +287938,27in FHD Monitor,1,149.99,2019-11-14 16:27:00,77 Forest St, New York City,NY,10001 +287939,USB-C Charging Cable,1,11.95,2019-11-22 20:30:00,933 Church St, Atlanta,GA,30301 +287940,Apple Airpods Headphones,1,150.0,2019-11-21 10:46:00,194 Willow St, New York City,NY,10001 +287941,Wired Headphones,1,11.99,2019-11-18 22:44:00,914 Lake St, Los Angeles,CA,90001 +287942,Macbook Pro Laptop,1,1700.0,2019-11-18 10:39:00,477 Pine St, New York City,NY,10001 +287943,Wired Headphones,1,11.99,2019-11-08 20:37:00,545 11th St, Atlanta,GA,30301 +287944,Lightning Charging Cable,1,14.95,2019-11-05 01:40:00,809 Maple St, New York City,NY,10001 +287945,Apple Airpods Headphones,1,150.0,2019-11-30 08:21:00,802 Adams St, San Francisco,CA,94016 +287946,AA Batteries (4-pack),5,3.84,2019-11-06 05:10:00,586 Ridge St, Dallas,TX,75001 +287947,Flatscreen TV,1,300.0,2019-11-10 22:03:00,438 Cherry St, Atlanta,GA,30301 +287948,USB-C Charging Cable,1,11.95,2019-11-19 08:20:00,550 Walnut St, Boston,MA,02215 +287949,USB-C Charging Cable,1,11.95,2019-11-10 21:56:00,260 Main St, San Francisco,CA,94016 +287950,AAA Batteries (4-pack),2,2.99,2019-11-26 19:50:00,879 Cedar St, San Francisco,CA,94016 +287951,Lightning Charging Cable,1,14.95,2019-11-09 22:43:00,998 Meadow St, Los Angeles,CA,90001 +287952,Apple Airpods Headphones,1,150.0,2019-11-13 09:47:00,415 Maple St, Seattle,WA,98101 +287953,Vareebadd Phone,1,400.0,2019-11-26 23:39:00,441 North St, San Francisco,CA,94016 +287953,USB-C Charging Cable,1,11.95,2019-11-26 23:39:00,441 North St, San Francisco,CA,94016 +287954,AAA Batteries (4-pack),1,2.99,2019-11-04 10:32:00,352 Park St, Seattle,WA,98101 +287955,ThinkPad Laptop,1,999.99,2019-11-27 12:05:00,624 Washington St, Los Angeles,CA,90001 +287956,Apple Airpods Headphones,1,150.0,2019-11-19 10:04:00,370 Forest St, Portland,OR,97035 +287957,AA Batteries (4-pack),1,3.84,2019-11-06 14:18:00,170 Forest St, New York City,NY,10001 +287958,Apple Airpods Headphones,1,150.0,2019-11-12 01:10:00,602 Lakeview St, Portland,ME,04101 +287959,Google Phone,1,600.0,2019-11-08 21:27:00,108 Main St, New York City,NY,10001 +287959,USB-C Charging Cable,1,11.95,2019-11-08 21:27:00,108 Main St, New York City,NY,10001 +287960,Wired Headphones,1,11.99,2019-11-02 19:54:00,611 Maple St, New York City,NY,10001 +287961,AAA Batteries (4-pack),1,2.99,2019-11-16 22:05:00,120 West St, Los Angeles,CA,90001 +287962,AA Batteries (4-pack),2,3.84,2019-11-28 19:25:00,941 Church St, Los Angeles,CA,90001 +287963,AAA Batteries (4-pack),1,2.99,2019-11-05 16:29:00,4 2nd St, San Francisco,CA,94016 +287964,Bose SoundSport Headphones,1,99.99,2019-11-01 08:37:00,558 Cedar St, Dallas,TX,75001 +287965,AAA Batteries (4-pack),1,2.99,2019-11-12 10:38:00,70 Johnson St, San Francisco,CA,94016 +287966,AAA Batteries (4-pack),1,2.99,2019-11-08 17:57:00,837 Jackson St, Seattle,WA,98101 +287967,Macbook Pro Laptop,1,1700.0,2019-11-27 18:00:00,624 Willow St, Portland,OR,97035 +287968,20in Monitor,1,109.99,2019-11-06 13:52:00,920 Meadow St, San Francisco,CA,94016 +287969,AAA Batteries (4-pack),3,2.99,2019-11-07 08:26:00,505 Adams St, San Francisco,CA,94016 +287970,Apple Airpods Headphones,1,150.0,2019-11-03 16:56:00,904 Jackson St, Boston,MA,02215 +287971,Google Phone,1,600.0,2019-11-07 14:46:00,961 8th St, New York City,NY,10001 +287972,Apple Airpods Headphones,1,150.0,2019-11-13 19:55:00,180 Main St, Los Angeles,CA,90001 +287973,Apple Airpods Headphones,1,150.0,2019-11-13 08:15:00,266 Madison St, Los Angeles,CA,90001 +287974,Bose SoundSport Headphones,1,99.99,2019-11-14 23:56:00,793 Walnut St, San Francisco,CA,94016 +287975,Apple Airpods Headphones,1,150.0,2019-11-28 18:03:00,832 Forest St, Boston,MA,02215 +287975,Wired Headphones,1,11.99,2019-11-28 18:03:00,832 Forest St, Boston,MA,02215 +287976,Wired Headphones,1,11.99,2019-11-25 13:21:00,961 Lake St, San Francisco,CA,94016 +287977,Macbook Pro Laptop,1,1700.0,2019-11-27 10:41:00,435 South St, Seattle,WA,98101 +287978,20in Monitor,1,109.99,2019-11-17 07:54:00,240 Lake St, Los Angeles,CA,90001 +287979,Lightning Charging Cable,1,14.95,2019-11-22 21:56:00,928 13th St, Boston,MA,02215 +287980,Wired Headphones,1,11.99,2019-11-18 14:02:00,958 Highland St, Atlanta,GA,30301 +287981,Macbook Pro Laptop,1,1700.0,2019-11-14 19:43:00,875 Cedar St, San Francisco,CA,94016 +287982,Lightning Charging Cable,1,14.95,2019-11-30 09:12:00,75 12th St, San Francisco,CA,94016 +287983,USB-C Charging Cable,1,11.95,2019-11-07 22:12:00,285 12th St, Portland,OR,97035 +287984,Macbook Pro Laptop,1,1700.0,2019-11-28 15:21:00,360 Cherry St, Atlanta,GA,30301 +287985,AAA Batteries (4-pack),1,2.99,2019-11-25 11:16:00,223 Walnut St, New York City,NY,10001 +287986,Bose SoundSport Headphones,1,99.99,2019-11-10 13:41:00,485 Willow St, New York City,NY,10001 +287987,USB-C Charging Cable,1,11.95,2019-11-30 22:26:00,175 12th St, New York City,NY,10001 +287988,USB-C Charging Cable,1,11.95,2019-11-20 01:07:00,305 Willow St, Atlanta,GA,30301 +287989,Apple Airpods Headphones,1,150.0,2019-11-05 12:09:00,25 Chestnut St, Boston,MA,02215 +287990,USB-C Charging Cable,1,11.95,2019-11-26 15:12:00,885 Chestnut St, San Francisco,CA,94016 +287991,Macbook Pro Laptop,1,1700.0,2019-11-22 11:35:00,369 Ridge St, Los Angeles,CA,90001 +287992,USB-C Charging Cable,1,11.95,2019-11-20 00:16:00,123 Church St, Austin,TX,73301 +287993,Bose SoundSport Headphones,1,99.99,2019-11-26 03:26:00,4 5th St, New York City,NY,10001 +287994,Bose SoundSport Headphones,1,99.99,2019-11-19 19:07:00,465 Forest St, Atlanta,GA,30301 +287995,27in 4K Gaming Monitor,1,389.99,2019-11-28 11:58:00,137 West St, Portland,ME,04101 +287996,Flatscreen TV,1,300.0,2019-11-27 13:56:00,599 7th St, Austin,TX,73301 +287997,Apple Airpods Headphones,1,150.0,2019-11-30 11:25:00,708 Elm St, Los Angeles,CA,90001 +287998,USB-C Charging Cable,1,11.95,2019-11-23 22:24:00,954 Jefferson St, Dallas,TX,75001 +287999,Wired Headphones,1,11.99,2019-11-26 15:28:00,616 5th St, Dallas,TX,75001 +288000,Lightning Charging Cable,1,14.95,2019-11-26 13:02:00,569 Main St, Seattle,WA,98101 +288001,Lightning Charging Cable,1,14.95,2019-11-26 23:47:00,55 Lake St, San Francisco,CA,94016 +288002,USB-C Charging Cable,1,11.95,2019-11-17 20:24:00,367 Elm St, New York City,NY,10001 +288003,Macbook Pro Laptop,1,1700.0,2019-11-10 08:51:00,690 Dogwood St, Boston,MA,02215 +288004,AAA Batteries (4-pack),1,2.99,2019-11-01 22:06:00,779 9th St, San Francisco,CA,94016 +288005,USB-C Charging Cable,2,11.95,2019-11-23 01:16:00,549 Jackson St, Los Angeles,CA,90001 +288006,AAA Batteries (4-pack),1,2.99,2019-11-21 19:09:00,690 14th St, San Francisco,CA,94016 +288007,AA Batteries (4-pack),1,3.84,2019-11-03 07:50:00,858 5th St, Atlanta,GA,30301 +288008,Bose SoundSport Headphones,1,99.99,2019-11-20 11:10:00,601 Sunset St, Atlanta,GA,30301 +288009,Wired Headphones,1,11.99,2019-11-06 09:03:00,729 6th St, Seattle,WA,98101 +288010,USB-C Charging Cable,1,11.95,2019-11-07 08:33:00,578 7th St, Seattle,WA,98101 +288011,Google Phone,1,600.0,2019-11-09 18:28:00,419 Highland St, San Francisco,CA,94016 +288011,Bose SoundSport Headphones,1,99.99,2019-11-09 18:28:00,419 Highland St, San Francisco,CA,94016 +288012,Lightning Charging Cable,1,14.95,2019-11-28 22:28:00,498 Madison St, New York City,NY,10001 +288013,AAA Batteries (4-pack),1,2.99,2019-11-14 19:01:00,241 Pine St, Los Angeles,CA,90001 +288013,27in 4K Gaming Monitor,1,389.99,2019-11-14 19:01:00,241 Pine St, Los Angeles,CA,90001 +288014,Wired Headphones,1,11.99,2019-11-17 22:01:00,268 Willow St, San Francisco,CA,94016 +288015,Flatscreen TV,1,300.0,2019-11-29 17:05:00,121 Elm St, San Francisco,CA,94016 +288016,Apple Airpods Headphones,1,150.0,2019-11-07 17:26:00,599 Main St, Los Angeles,CA,90001 +288017,Bose SoundSport Headphones,1,99.99,2019-11-08 09:32:00,978 12th St, Los Angeles,CA,90001 +288018,Lightning Charging Cable,1,14.95,2019-11-02 12:26:00,680 Willow St, Los Angeles,CA,90001 +288019,AAA Batteries (4-pack),3,2.99,2019-11-11 20:53:00,959 Dogwood St, Portland,OR,97035 +288020,Lightning Charging Cable,1,14.95,2019-11-02 21:27:00,716 1st St, Atlanta,GA,30301 +288021,Wired Headphones,2,11.99,2019-11-22 21:47:00,230 Pine St, Los Angeles,CA,90001 +288022,Wired Headphones,1,11.99,2019-11-07 22:24:00,572 8th St, Seattle,WA,98101 +288023,Bose SoundSport Headphones,1,99.99,2019-11-26 06:25:00,381 Center St, New York City,NY,10001 +288024,Wired Headphones,1,11.99,2019-11-11 16:05:00,226 Wilson St, New York City,NY,10001 +288025,Bose SoundSport Headphones,1,99.99,2019-11-17 10:20:00,6 Willow St, Boston,MA,02215 +288026,Wired Headphones,1,11.99,2019-11-03 09:41:00,812 Johnson St, Dallas,TX,75001 +288027,Bose SoundSport Headphones,1,99.99,2019-11-01 10:42:00,874 Walnut St, San Francisco,CA,94016 +288028,AA Batteries (4-pack),2,3.84,2019-11-16 09:00:00,603 Wilson St, Atlanta,GA,30301 +288029,AAA Batteries (4-pack),1,2.99,2019-11-30 17:07:00,262 8th St, Boston,MA,02215 +288030,Bose SoundSport Headphones,1,99.99,2019-11-08 20:24:00,51 Ridge St, Portland,OR,97035 +288031,Bose SoundSport Headphones,1,99.99,2019-11-16 08:16:00,498 Forest St, Seattle,WA,98101 +288032,27in FHD Monitor,1,149.99,2019-11-22 14:32:00,188 North St, San Francisco,CA,94016 +288033,Lightning Charging Cable,1,14.95,2019-11-30 20:20:00,523 13th St, San Francisco,CA,94016 +288034,27in 4K Gaming Monitor,1,389.99,2019-11-11 19:37:00,626 13th St, Boston,MA,02215 +288035,Lightning Charging Cable,1,14.95,2019-11-23 10:44:00,644 Meadow St, Los Angeles,CA,90001 +288036,27in 4K Gaming Monitor,1,389.99,2019-11-09 10:10:00,337 Dogwood St, San Francisco,CA,94016 +288037,AA Batteries (4-pack),3,3.84,2019-11-02 18:52:00,233 Lakeview St, Boston,MA,02215 +288038,Apple Airpods Headphones,1,150.0,2019-11-30 13:16:00,653 Willow St, Los Angeles,CA,90001 +288039,USB-C Charging Cable,1,11.95,2019-11-26 12:33:00,952 Main St, Los Angeles,CA,90001 +288040,Apple Airpods Headphones,1,150.0,2019-11-16 14:18:00,474 9th St, Boston,MA,02215 +288041,AA Batteries (4-pack),1,3.84,2019-11-02 14:39:00,874 Lake St, Seattle,WA,98101 +288042,Bose SoundSport Headphones,1,99.99,2019-11-02 19:52:00,335 Forest St, Austin,TX,73301 +288043,Apple Airpods Headphones,1,150.0,2019-11-01 09:14:00,802 Elm St, Boston,MA,02215 +288044,AA Batteries (4-pack),1,3.84,2019-11-04 15:04:00,835 Willow St, Portland,OR,97035 +288045,20in Monitor,1,109.99,2019-11-11 16:43:00,113 River St, Portland,OR,97035 +288046,Apple Airpods Headphones,1,150.0,2019-11-03 17:15:00,544 8th St, San Francisco,CA,94016 +288047,Wired Headphones,1,11.99,2019-11-17 14:39:00,247 Hickory St, New York City,NY,10001 +288048,USB-C Charging Cable,1,11.95,2019-11-05 14:29:00,153 North St, San Francisco,CA,94016 +288049,Vareebadd Phone,1,400.0,2019-11-16 18:26:00,685 Highland St, San Francisco,CA,94016 +288049,Wired Headphones,1,11.99,2019-11-16 18:26:00,685 Highland St, San Francisco,CA,94016 +288050,iPhone,1,700.0,2019-11-13 10:32:00,73 Spruce St, New York City,NY,10001 +288051,Bose SoundSport Headphones,1,99.99,2019-11-01 09:31:00,644 Highland St, San Francisco,CA,94016 +288052,Bose SoundSport Headphones,1,99.99,2019-11-21 13:41:00,494 Elm St, Dallas,TX,75001 +288053,AA Batteries (4-pack),2,3.84,2019-11-22 20:48:00,140 4th St, Los Angeles,CA,90001 +288054,Wired Headphones,1,11.99,2019-11-04 10:58:00,505 Lake St, Portland,ME,04101 +288055,Vareebadd Phone,1,400.0,2019-11-29 09:47:00,586 Washington St, San Francisco,CA,94016 +288056,USB-C Charging Cable,1,11.95,2019-11-05 19:10:00,165 5th St, Portland,ME,04101 +288057,Vareebadd Phone,1,400.0,2019-11-07 15:42:00,875 Cedar St, New York City,NY,10001 +288058,USB-C Charging Cable,1,11.95,2019-11-24 00:14:00,427 Cherry St, New York City,NY,10001 +288059,iPhone,1,700.0,2019-11-25 13:49:00,651 Church St, Dallas,TX,75001 +288060,Bose SoundSport Headphones,1,99.99,2019-11-10 08:04:00,453 Maple St, Portland,OR,97035 +288061,AA Batteries (4-pack),1,3.84,2019-11-23 11:33:00,757 13th St, Los Angeles,CA,90001 +288062,Bose SoundSport Headphones,1,99.99,2019-11-02 16:29:00,981 Chestnut St, New York City,NY,10001 +288063,34in Ultrawide Monitor,1,379.99,2019-11-11 13:55:00,799 10th St, Portland,OR,97035 +288064,USB-C Charging Cable,1,11.95,2019-11-21 09:55:00,188 4th St, New York City,NY,10001 +288065,27in FHD Monitor,1,149.99,2019-11-13 23:21:00,190 10th St, Atlanta,GA,30301 +288066,Wired Headphones,1,11.99,2019-11-19 20:01:00,865 Johnson St, Boston,MA,02215 +288067,ThinkPad Laptop,1,999.99,2019-11-01 10:35:00,508 Church St, Dallas,TX,75001 +288068,Wired Headphones,2,11.99,2019-11-29 11:05:00,608 Johnson St, San Francisco,CA,94016 +288069,Bose SoundSport Headphones,1,99.99,2019-11-10 10:51:00,240 1st St, Los Angeles,CA,90001 +288070,AAA Batteries (4-pack),1,2.99,2019-11-24 21:52:00,537 Park St, Dallas,TX,75001 +288071,Lightning Charging Cable,1,14.95,2019-11-14 20:54:00,275 South St, Dallas,TX,75001 +288072,USB-C Charging Cable,2,11.95,2019-11-11 11:55:00,505 Cherry St, Portland,OR,97035 +288073,Lightning Charging Cable,1,14.95,2019-11-22 17:47:00,83 Spruce St, New York City,NY,10001 +288074,Bose SoundSport Headphones,1,99.99,2019-11-28 00:31:00,545 Willow St, San Francisco,CA,94016 +288075,Apple Airpods Headphones,1,150.0,2019-11-05 17:30:00,441 Cedar St, Boston,MA,02215 +288076,Apple Airpods Headphones,1,150.0,2019-11-24 13:56:00,295 Dogwood St, New York City,NY,10001 +288077,Google Phone,1,600.0,2019-11-03 20:46:00,107 Cherry St, Atlanta,GA,30301 +288078,Google Phone,1,600.0,2019-11-26 09:41:00,822 Church St, Atlanta,GA,30301 +288078,USB-C Charging Cable,1,11.95,2019-11-26 09:41:00,822 Church St, Atlanta,GA,30301 +288079,USB-C Charging Cable,1,11.95,2019-11-25 11:16:00,644 Johnson St, San Francisco,CA,94016 +288080,USB-C Charging Cable,1,11.95,2019-11-30 03:32:00,931 Lincoln St, San Francisco,CA,94016 +288081,Macbook Pro Laptop,1,1700.0,2019-11-08 12:40:00,943 Madison St, Dallas,TX,75001 +288082,AAA Batteries (4-pack),6,2.99,2019-11-26 10:16:00,307 Main St, Portland,OR,97035 +288083,27in 4K Gaming Monitor,1,389.99,2019-11-15 22:08:00,639 Park St, New York City,NY,10001 +288084,Apple Airpods Headphones,1,150.0,2019-11-15 14:34:00,40 South St, New York City,NY,10001 +288085,34in Ultrawide Monitor,1,379.99,2019-11-02 21:25:00,291 8th St, Boston,MA,02215 +288086,Wired Headphones,1,11.99,2019-11-17 17:53:00,42 Jefferson St, Dallas,TX,75001 +288087,Wired Headphones,1,11.99,2019-11-15 10:51:00,461 Highland St, New York City,NY,10001 +288088,Lightning Charging Cable,1,14.95,2019-11-03 14:17:00,205 14th St, Seattle,WA,98101 +288089,Macbook Pro Laptop,1,1700.0,2019-11-05 22:01:00,64 Maple St, Boston,MA,02215 +288090,iPhone,1,700.0,2019-11-02 22:22:00,56 Sunset St, San Francisco,CA,94016 +288091,iPhone,1,700.0,2019-11-28 18:01:00,18 13th St, Austin,TX,73301 +288092,AAA Batteries (4-pack),2,2.99,2019-11-10 18:41:00,903 Spruce St, Austin,TX,73301 +288093,Apple Airpods Headphones,1,150.0,2019-11-27 19:25:00,514 Johnson St, San Francisco,CA,94016 +288094,Wired Headphones,1,11.99,2019-11-13 16:18:00,215 10th St, Seattle,WA,98101 +288095,Wired Headphones,1,11.99,2019-11-06 12:04:00,269 Meadow St, San Francisco,CA,94016 +288096,AA Batteries (4-pack),1,3.84,2019-11-28 22:39:00,84 Wilson St, Dallas,TX,75001 +288097,iPhone,1,700.0,2019-11-04 13:25:00,831 9th St, Los Angeles,CA,90001 +288098,Vareebadd Phone,1,400.0,2019-11-07 04:20:00,943 Willow St, San Francisco,CA,94016 +288099,AA Batteries (4-pack),1,3.84,2019-11-30 10:55:00,999 Willow St, San Francisco,CA,94016 +288100,AAA Batteries (4-pack),1,2.99,2019-11-18 15:00:00,437 Hickory St, San Francisco,CA,94016 +288101,AAA Batteries (4-pack),1,2.99,2019-11-10 19:29:00,747 Jefferson St, Portland,OR,97035 +288102,Wired Headphones,1,11.99,2019-11-19 08:29:00,266 Jackson St, New York City,NY,10001 +288103,AAA Batteries (4-pack),1,2.99,2019-11-12 21:07:00,39 Center St, Los Angeles,CA,90001 +288104,Wired Headphones,1,11.99,2019-11-19 10:08:00,184 Park St, Atlanta,GA,30301 +288104,USB-C Charging Cable,1,11.95,2019-11-19 10:08:00,184 Park St, Atlanta,GA,30301 +288105,Wired Headphones,1,11.99,2019-11-12 09:44:00,279 Elm St, Boston,MA,02215 +288105,AAA Batteries (4-pack),1,2.99,2019-11-12 09:44:00,279 Elm St, Boston,MA,02215 +288106,USB-C Charging Cable,1,11.95,2019-11-04 14:31:00,724 Dogwood St, Los Angeles,CA,90001 +288107,Macbook Pro Laptop,1,1700.0,2019-11-23 23:40:00,543 7th St, New York City,NY,10001 +288108,Wired Headphones,1,11.99,2019-11-21 15:08:00,148 Jefferson St, Los Angeles,CA,90001 +288109,Macbook Pro Laptop,1,1700.0,2019-11-27 15:41:00,826 Elm St, Boston,MA,02215 +288110,Wired Headphones,1,11.99,2019-11-08 10:26:00,888 Willow St, Portland,OR,97035 +288111,Lightning Charging Cable,1,14.95,2019-11-15 05:31:00,672 2nd St, San Francisco,CA,94016 +288112,Lightning Charging Cable,1,14.95,2019-11-02 12:11:00,272 Lake St, Austin,TX,73301 +288113,20in Monitor,1,109.99,2019-11-27 13:43:00,899 Hickory St, San Francisco,CA,94016 +288114,ThinkPad Laptop,1,999.99,2019-11-10 10:30:00,852 Adams St, Dallas,TX,75001 +288115,AAA Batteries (4-pack),1,2.99,2019-11-15 14:21:00,35 4th St, Dallas,TX,75001 +288116,AA Batteries (4-pack),3,3.84,2019-11-15 13:42:00,421 Spruce St, New York City,NY,10001 +288117,AAA Batteries (4-pack),1,2.99,2019-11-26 09:59:00,571 Jackson St, Portland,OR,97035 +288118,Flatscreen TV,1,300.0,2019-11-15 21:09:00,84 Lake St, Boston,MA,02215 +288119,AA Batteries (4-pack),1,3.84,2019-11-15 19:46:00,37 6th St, Portland,OR,97035 +288120,Vareebadd Phone,1,400.0,2019-11-01 11:19:00,352 6th St, Dallas,TX,75001 +288120,iPhone,1,700.0,2019-11-01 11:19:00,352 6th St, Dallas,TX,75001 +288121,Flatscreen TV,1,300.0,2019-11-13 00:53:00,132 Maple St, Dallas,TX,75001 +288122,Lightning Charging Cable,3,14.95,2019-11-01 21:12:00,148 Spruce St, Austin,TX,73301 +288123,Vareebadd Phone,1,400.0,2019-11-04 15:28:00,776 Pine St, New York City,NY,10001 +288123,34in Ultrawide Monitor,1,379.99,2019-11-04 15:28:00,776 Pine St, New York City,NY,10001 +288124,USB-C Charging Cable,1,11.95,2019-11-30 19:31:00,177 Washington St, New York City,NY,10001 +288125,Bose SoundSport Headphones,1,99.99,2019-11-17 14:34:00,385 Lake St, Boston,MA,02215 +288126,USB-C Charging Cable,1,11.95,2019-11-23 20:51:00,205 Highland St, San Francisco,CA,94016 +288127,AA Batteries (4-pack),1,3.84,2019-11-13 18:50:00,757 Dogwood St, Los Angeles,CA,90001 +288128,USB-C Charging Cable,1,11.95,2019-11-25 23:22:00,431 Wilson St, New York City,NY,10001 +288129,Lightning Charging Cable,1,14.95,2019-11-04 13:47:00,670 10th St, Portland,OR,97035 +288130,iPhone,1,700.0,2019-11-10 19:12:00,429 Jefferson St, New York City,NY,10001 +288131,USB-C Charging Cable,1,11.95,2019-11-16 20:59:00,502 14th St, Boston,MA,02215 +288132,AAA Batteries (4-pack),2,2.99,2019-11-20 15:19:00,987 Meadow St, Boston,MA,02215 +288133,AAA Batteries (4-pack),1,2.99,2019-11-30 00:30:00,934 8th St, Atlanta,GA,30301 +288134,Wired Headphones,1,11.99,2019-11-05 14:31:00,587 2nd St, Los Angeles,CA,90001 +288135,27in FHD Monitor,1,149.99,2019-11-19 10:53:00,719 10th St, Atlanta,GA,30301 +288136,USB-C Charging Cable,1,11.95,2019-11-11 15:55:00,139 Washington St, Los Angeles,CA,90001 +288137,27in 4K Gaming Monitor,1,389.99,2019-11-09 20:29:00,884 Maple St, Boston,MA,02215 +288138,AA Batteries (4-pack),3,3.84,2019-11-06 21:57:00,478 Walnut St, Portland,OR,97035 +288139,Google Phone,1,600.0,2019-11-20 16:40:00,515 Wilson St, Los Angeles,CA,90001 +288140,Wired Headphones,1,11.99,2019-11-29 00:09:00,330 North St, Los Angeles,CA,90001 +288141,iPhone,1,700.0,2019-11-04 15:33:00,182 Adams St, Los Angeles,CA,90001 +288142,Google Phone,1,600.0,2019-11-22 23:10:00,423 Highland St, Seattle,WA,98101 +288142,Wired Headphones,1,11.99,2019-11-22 23:10:00,423 Highland St, Seattle,WA,98101 +288143,Lightning Charging Cable,1,14.95,2019-11-22 18:57:00,84 Park St, Los Angeles,CA,90001 +288144,USB-C Charging Cable,1,11.95,2019-11-05 14:32:00,750 1st St, Dallas,TX,75001 +288145,iPhone,1,700.0,2019-11-07 16:57:00,680 Lakeview St, Atlanta,GA,30301 +288146,27in 4K Gaming Monitor,1,389.99,2019-11-07 10:03:00,163 Church St, Austin,TX,73301 +288147,34in Ultrawide Monitor,1,379.99,2019-11-20 21:56:00,547 Madison St, San Francisco,CA,94016 +288148,AAA Batteries (4-pack),2,2.99,2019-11-12 21:37:00,908 2nd St, Los Angeles,CA,90001 +288148,USB-C Charging Cable,1,11.95,2019-11-12 21:37:00,908 2nd St, Los Angeles,CA,90001 +288149,Lightning Charging Cable,1,14.95,2019-11-19 15:16:00,122 Cherry St, Los Angeles,CA,90001 +288150,Wired Headphones,1,11.99,2019-11-07 10:19:00,190 9th St, Austin,TX,73301 +288150,34in Ultrawide Monitor,1,379.99,2019-11-07 10:19:00,190 9th St, Austin,TX,73301 +288151,20in Monitor,1,109.99,2019-11-02 20:37:00,66 Center St, Portland,OR,97035 +288152,27in FHD Monitor,1,149.99,2019-11-26 13:56:00,87 8th St, San Francisco,CA,94016 +288153,Wired Headphones,1,11.99,2019-11-10 16:13:00,990 11th St, San Francisco,CA,94016 +288154,Apple Airpods Headphones,1,150.0,2019-11-04 10:36:00,793 West St, Los Angeles,CA,90001 +288155,20in Monitor,1,109.99,2019-11-24 23:20:00,142 River St, Atlanta,GA,30301 +288156,AA Batteries (4-pack),1,3.84,2019-11-03 20:20:00,154 Maple St, Los Angeles,CA,90001 +288157,Apple Airpods Headphones,1,150.0,2019-11-01 23:59:00,494 Church St, Boston,MA,02215 +288158,USB-C Charging Cable,1,11.95,2019-11-03 01:24:00,1 Elm St, Atlanta,GA,30301 +288159,AAA Batteries (4-pack),3,2.99,2019-11-29 19:57:00,557 Walnut St, San Francisco,CA,94016 +288160,Lightning Charging Cable,1,14.95,2019-11-28 16:03:00,767 Ridge St, New York City,NY,10001 +288161,Lightning Charging Cable,1,14.95,2019-11-15 20:28:00,347 Wilson St, Portland,OR,97035 +288162,ThinkPad Laptop,1,999.99,2019-11-11 13:25:00,23 1st St, San Francisco,CA,94016 +288163,Lightning Charging Cable,1,14.95,2019-11-07 08:44:00,363 West St, San Francisco,CA,94016 +288164,Apple Airpods Headphones,1,150.0,2019-11-02 21:48:00,831 Jefferson St, San Francisco,CA,94016 +288165,20in Monitor,1,109.99,2019-11-09 12:49:00,310 Jefferson St, San Francisco,CA,94016 +288166,ThinkPad Laptop,1,999.99,2019-11-11 07:37:00,254 Jefferson St, New York City,NY,10001 +288167,iPhone,1,700.0,2019-11-14 23:16:00,450 Cherry St, Los Angeles,CA,90001 +288167,Lightning Charging Cable,1,14.95,2019-11-14 23:16:00,450 Cherry St, Los Angeles,CA,90001 +288168,Wired Headphones,1,11.99,2019-11-24 20:15:00,738 Forest St, Los Angeles,CA,90001 +288169,Lightning Charging Cable,1,14.95,2019-11-15 15:51:00,430 Cherry St, Austin,TX,73301 +288170,USB-C Charging Cable,1,11.95,2019-11-28 21:29:00,860 River St, Dallas,TX,75001 +288171,Wired Headphones,1,11.99,2019-11-12 12:38:00,312 Dogwood St, Dallas,TX,75001 +288172,27in FHD Monitor,1,149.99,2019-11-29 21:15:00,947 11th St, San Francisco,CA,94016 +288173,Lightning Charging Cable,1,14.95,2019-11-04 23:59:00,962 13th St, New York City,NY,10001 +288174,27in 4K Gaming Monitor,1,389.99,2019-11-05 14:04:00,32 7th St, Atlanta,GA,30301 +288175,iPhone,1,700.0,2019-11-04 09:19:00,797 9th St, Los Angeles,CA,90001 +288176,USB-C Charging Cable,4,11.95,2019-11-13 08:21:00,517 Dogwood St, Atlanta,GA,30301 +288177,27in FHD Monitor,1,149.99,2019-11-18 16:46:00,153 Lincoln St, San Francisco,CA,94016 +288178,Lightning Charging Cable,1,14.95,2019-11-07 21:30:00,708 Dogwood St, San Francisco,CA,94016 +288179,AA Batteries (4-pack),1,3.84,2019-11-16 10:34:00,178 South St, Boston,MA,02215 +288180,Google Phone,1,600.0,2019-11-24 21:34:00,112 Cherry St, Portland,OR,97035 +288181,ThinkPad Laptop,1,999.99,2019-11-24 23:17:00,783 Center St, New York City,NY,10001 +288182,20in Monitor,1,109.99,2019-11-16 10:30:00,667 West St, Dallas,TX,75001 +288183,Apple Airpods Headphones,1,150.0,2019-11-20 19:32:00,108 11th St, San Francisco,CA,94016 +288184,Lightning Charging Cable,1,14.95,2019-11-03 11:50:00,551 Hickory St, New York City,NY,10001 +288185,iPhone,1,700.0,2019-11-20 12:36:00,996 Walnut St, Los Angeles,CA,90001 +288186,27in 4K Gaming Monitor,1,389.99,2019-11-02 21:37:00,593 Spruce St, San Francisco,CA,94016 +288187,Lightning Charging Cable,1,14.95,2019-11-12 02:33:00,616 Walnut St, Atlanta,GA,30301 +288188,27in FHD Monitor,1,149.99,2019-11-22 11:32:00,390 Meadow St, Los Angeles,CA,90001 +288189,AA Batteries (4-pack),2,3.84,2019-11-10 15:50:00,318 West St, Portland,OR,97035 +288190,Wired Headphones,1,11.99,2019-11-17 22:27:00,120 Spruce St, Dallas,TX,75001 +288191,USB-C Charging Cable,1,11.95,2019-11-03 11:56:00,432 14th St, San Francisco,CA,94016 +288192,Bose SoundSport Headphones,1,99.99,2019-11-03 14:44:00,997 Wilson St, Austin,TX,73301 +288193,USB-C Charging Cable,1,11.95,2019-11-08 15:10:00,16 Ridge St, Los Angeles,CA,90001 +288194,27in 4K Gaming Monitor,1,389.99,2019-11-01 17:58:00,732 Sunset St, Boston,MA,02215 +288195,iPhone,1,700.0,2019-11-19 16:52:00,824 Adams St, San Francisco,CA,94016 +288196,34in Ultrawide Monitor,1,379.99,2019-11-27 14:56:00,869 Spruce St, Seattle,WA,98101 +288197,27in FHD Monitor,1,149.99,2019-11-18 12:13:00,694 Jefferson St, Seattle,WA,98101 +288198,USB-C Charging Cable,1,11.95,2019-11-10 18:11:00,755 10th St, San Francisco,CA,94016 +288199,USB-C Charging Cable,1,11.95,2019-11-03 14:25:00,41 9th St, Dallas,TX,75001 +288200,iPhone,1,700.0,2019-11-21 06:40:00,673 Jefferson St, Atlanta,GA,30301 +288201,AAA Batteries (4-pack),1,2.99,2019-11-15 11:32:00,630 Spruce St, Portland,OR,97035 +288202,AAA Batteries (4-pack),1,2.99,2019-11-12 21:24:00,775 1st St, San Francisco,CA,94016 +288203,Lightning Charging Cable,1,14.95,2019-11-14 15:32:00,848 Ridge St, Seattle,WA,98101 +288204,Wired Headphones,1,11.99,2019-11-15 13:17:00,541 Park St, Seattle,WA,98101 +288205,27in 4K Gaming Monitor,1,389.99,2019-11-16 03:07:00,722 Main St, Seattle,WA,98101 +288206,Bose SoundSport Headphones,2,99.99,2019-11-05 11:28:00,422 South St, Los Angeles,CA,90001 +288207,AAA Batteries (4-pack),1,2.99,2019-11-17 10:53:00,163 1st St, Boston,MA,02215 +288208,Lightning Charging Cable,1,14.95,2019-11-09 14:34:00,915 Center St, Dallas,TX,75001 +288209,USB-C Charging Cable,1,11.95,2019-11-19 15:16:00,77 1st St, San Francisco,CA,94016 +288210,AAA Batteries (4-pack),1,2.99,2019-11-16 11:36:00,410 Walnut St, Portland,OR,97035 +288211,27in 4K Gaming Monitor,1,389.99,2019-11-09 23:48:00,216 South St, Boston,MA,02215 +288212,AA Batteries (4-pack),1,3.84,2019-11-18 15:08:00,120 2nd St, Dallas,TX,75001 +288213,27in FHD Monitor,1,149.99,2019-11-11 11:17:00,165 Chestnut St, San Francisco,CA,94016 +288214,AA Batteries (4-pack),1,3.84,2019-11-15 19:32:00,361 Highland St, Austin,TX,73301 +288215,Wired Headphones,1,11.99,2019-11-03 15:46:00,651 1st St, San Francisco,CA,94016 +288216,34in Ultrawide Monitor,1,379.99,2019-11-06 17:51:00,952 Lincoln St, San Francisco,CA,94016 +288217,Lightning Charging Cable,1,14.95,2019-11-15 23:13:00,507 Elm St, Seattle,WA,98101 +288218,Bose SoundSport Headphones,1,99.99,2019-11-21 11:45:00,19 Ridge St, Dallas,TX,75001 +288219,USB-C Charging Cable,1,11.95,2019-11-26 23:59:00,616 Willow St, New York City,NY,10001 +288220,AA Batteries (4-pack),1,3.84,2019-11-20 17:05:00,527 Park St, Seattle,WA,98101 +288221,USB-C Charging Cable,1,11.95,2019-11-05 16:20:00,881 Ridge St, San Francisco,CA,94016 +288222,27in 4K Gaming Monitor,1,389.99,2019-11-08 16:09:00,249 2nd St, Los Angeles,CA,90001 +288223,Lightning Charging Cable,1,14.95,2019-11-21 09:19:00,379 9th St, New York City,NY,10001 +288224,AAA Batteries (4-pack),2,2.99,2019-11-02 22:50:00,941 Cherry St, Los Angeles,CA,90001 +288225,Wired Headphones,1,11.99,2019-11-20 17:20:00,616 Walnut St, Boston,MA,02215 +288226,27in FHD Monitor,1,149.99,2019-11-13 14:17:00,262 Lakeview St, San Francisco,CA,94016 +288227,27in 4K Gaming Monitor,1,389.99,2019-11-24 12:25:00,688 Sunset St, San Francisco,CA,94016 +288228,Apple Airpods Headphones,1,150.0,2019-11-05 20:34:00,126 Jefferson St, Dallas,TX,75001 +288229,Apple Airpods Headphones,1,150.0,2019-11-28 12:58:00,926 Forest St, San Francisco,CA,94016 +288230,Wired Headphones,1,11.99,2019-11-08 20:09:00,875 Jefferson St, San Francisco,CA,94016 +288231,Vareebadd Phone,1,400.0,2019-11-17 17:21:00,249 10th St, San Francisco,CA,94016 +288232,AAA Batteries (4-pack),1,2.99,2019-11-01 12:54:00,202 Spruce St, San Francisco,CA,94016 +288233,USB-C Charging Cable,1,11.95,2019-11-27 18:27:00,846 Sunset St, Seattle,WA,98101 +288234,AAA Batteries (4-pack),1,2.99,2019-11-25 20:13:00,864 Lincoln St, Los Angeles,CA,90001 +288235,34in Ultrawide Monitor,1,379.99,2019-11-08 12:04:00,631 Wilson St, San Francisco,CA,94016 +288235,AA Batteries (4-pack),1,3.84,2019-11-08 12:04:00,631 Wilson St, San Francisco,CA,94016 +288236,AA Batteries (4-pack),1,3.84,2019-11-23 07:55:00,716 Lake St, San Francisco,CA,94016 +288237,AA Batteries (4-pack),1,3.84,2019-11-06 20:42:00,925 Elm St, Dallas,TX,75001 +288238,20in Monitor,1,109.99,2019-11-02 06:54:00,256 7th St, Seattle,WA,98101 +288239,Lightning Charging Cable,1,14.95,2019-11-30 11:55:00,367 Chestnut St, Atlanta,GA,30301 +288240,AA Batteries (4-pack),1,3.84,2019-11-08 12:55:00,861 14th St, Boston,MA,02215 +288241,Flatscreen TV,1,300.0,2019-11-01 14:43:00,901 9th St, San Francisco,CA,94016 +288242,Wired Headphones,1,11.99,2019-11-11 21:34:00,111 Park St, San Francisco,CA,94016 +288243,Wired Headphones,1,11.99,2019-11-30 20:37:00,259 Lake St, Boston,MA,02215 +288244,Wired Headphones,1,11.99,2019-11-05 22:13:00,80 13th St, Los Angeles,CA,90001 +288245,27in 4K Gaming Monitor,1,389.99,2019-11-07 07:20:00,780 Forest St, Dallas,TX,75001 +288246,Bose SoundSport Headphones,1,99.99,2019-11-08 11:15:00,541 Park St, Dallas,TX,75001 +288247,27in FHD Monitor,1,149.99,2019-11-05 13:36:00,316 West St, Austin,TX,73301 +288248,ThinkPad Laptop,1,999.99,2019-11-12 15:25:00,23 Pine St, San Francisco,CA,94016 +288249,Lightning Charging Cable,1,14.95,2019-11-29 23:10:00,483 Lincoln St, Boston,MA,02215 +288250,AAA Batteries (4-pack),1,2.99,2019-11-24 10:33:00,944 Chestnut St, Boston,MA,02215 +288251,20in Monitor,1,109.99,2019-11-10 06:09:00,800 Madison St, San Francisco,CA,94016 +288252,Google Phone,1,600.0,2019-11-25 06:53:00,922 Highland St, Atlanta,GA,30301 +288252,USB-C Charging Cable,1,11.95,2019-11-25 06:53:00,922 Highland St, Atlanta,GA,30301 +288253,AAA Batteries (4-pack),2,2.99,2019-11-04 09:36:00,153 Highland St, Seattle,WA,98101 +288254,AAA Batteries (4-pack),1,2.99,2019-11-22 09:37:00,169 Meadow St, San Francisco,CA,94016 +288255,Lightning Charging Cable,1,14.95,2019-11-15 17:11:00,527 8th St, Los Angeles,CA,90001 +288256,AA Batteries (4-pack),1,3.84,2019-11-28 20:52:00,715 Pine St, Atlanta,GA,30301 +288257,Wired Headphones,1,11.99,2019-11-14 08:01:00,248 Main St, San Francisco,CA,94016 +288258,Wired Headphones,2,11.99,2019-11-23 07:30:00,964 Hickory St, San Francisco,CA,94016 +288259,Lightning Charging Cable,1,14.95,2019-11-05 23:47:00,61 Cherry St, San Francisco,CA,94016 +288260,USB-C Charging Cable,1,11.95,2019-11-29 14:03:00,56 Hill St, Dallas,TX,75001 +288261,USB-C Charging Cable,1,11.95,2019-11-17 17:02:00,640 2nd St, San Francisco,CA,94016 +288262,AA Batteries (4-pack),2,3.84,2019-11-15 20:02:00,669 Church St, Austin,TX,73301 +288263,ThinkPad Laptop,1,999.99,2019-11-25 20:19:00,631 Willow St, New York City,NY,10001 +288264,USB-C Charging Cable,1,11.95,2019-11-27 22:14:00,485 River St, Los Angeles,CA,90001 +288265,27in 4K Gaming Monitor,1,389.99,2019-11-01 13:46:00,919 Maple St, Portland,ME,04101 +288266,Apple Airpods Headphones,1,150.0,2019-11-29 12:55:00,385 River St, San Francisco,CA,94016 +288267,USB-C Charging Cable,1,11.95,2019-11-01 18:30:00,706 Jackson St, Los Angeles,CA,90001 +288267,AAA Batteries (4-pack),1,2.99,2019-11-01 18:30:00,706 Jackson St, Los Angeles,CA,90001 +288268,27in 4K Gaming Monitor,1,389.99,2019-11-08 21:05:00,389 Hickory St, San Francisco,CA,94016 +288269,AA Batteries (4-pack),1,3.84,2019-11-06 14:08:00,483 14th St, Boston,MA,02215 +288270,27in 4K Gaming Monitor,1,389.99,2019-11-14 13:08:00,673 Willow St, San Francisco,CA,94016 +288271,USB-C Charging Cable,1,11.95,2019-11-06 11:46:00,29 Sunset St, San Francisco,CA,94016 +288272,USB-C Charging Cable,1,11.95,2019-11-23 16:45:00,507 Forest St, Seattle,WA,98101 +288273,iPhone,1,700.0,2019-11-01 20:26:00,571 Cedar St, Dallas,TX,75001 +288273,Wired Headphones,1,11.99,2019-11-01 20:26:00,571 Cedar St, Dallas,TX,75001 +288274,34in Ultrawide Monitor,1,379.99,2019-11-02 14:52:00,309 Hickory St, New York City,NY,10001 +288275,20in Monitor,1,109.99,2019-11-10 18:30:00,192 Forest St, New York City,NY,10001 +288276,ThinkPad Laptop,1,999.99,2019-11-10 15:37:00,79 12th St, Seattle,WA,98101 +288277,iPhone,1,700.0,2019-11-22 21:49:00,807 Park St, Dallas,TX,75001 +288278,AA Batteries (4-pack),1,3.84,2019-11-01 22:58:00,343 Sunset St, Boston,MA,02215 +288279,AAA Batteries (4-pack),2,2.99,2019-11-13 14:27:00,544 Washington St, New York City,NY,10001 +288280,AA Batteries (4-pack),1,3.84,2019-11-08 17:14:00,442 7th St, Dallas,TX,75001 +288281,iPhone,1,700.0,2019-11-23 01:25:00,928 Elm St, Portland,OR,97035 +288282,Wired Headphones,1,11.99,2019-11-06 12:35:00,581 Ridge St, San Francisco,CA,94016 +288283,Apple Airpods Headphones,1,150.0,2019-11-01 10:50:00,715 Ridge St, San Francisco,CA,94016 +288284,Google Phone,1,600.0,2019-11-12 15:36:00,222 Ridge St, San Francisco,CA,94016 +288285,AAA Batteries (4-pack),1,2.99,2019-11-04 13:47:00,808 Sunset St, New York City,NY,10001 +288286,AAA Batteries (4-pack),2,2.99,2019-11-17 20:51:00,467 Sunset St, Seattle,WA,98101 +288287,Macbook Pro Laptop,1,1700.0,2019-11-20 23:22:00,422 Maple St, Atlanta,GA,30301 +288288,Wired Headphones,1,11.99,2019-11-23 21:48:00,389 10th St, San Francisco,CA,94016 +288289,AA Batteries (4-pack),2,3.84,2019-11-30 01:37:00,56 4th St, Los Angeles,CA,90001 +288290,Apple Airpods Headphones,1,150.0,2019-11-11 20:34:00,679 2nd St, Boston,MA,02215 +288291,27in FHD Monitor,1,149.99,2019-11-12 16:31:00,530 Highland St, Boston,MA,02215 +288292,AAA Batteries (4-pack),1,2.99,2019-11-13 14:26:00,323 1st St, San Francisco,CA,94016 +288293,Wired Headphones,1,11.99,2019-11-18 03:17:00,886 Pine St, Atlanta,GA,30301 +288294,27in FHD Monitor,1,149.99,2019-11-30 09:14:00,789 West St, San Francisco,CA,94016 +288295,Apple Airpods Headphones,1,150.0,2019-11-20 19:18:00,247 River St, Los Angeles,CA,90001 +288296,AAA Batteries (4-pack),1,2.99,2019-11-06 12:26:00,539 Washington St, New York City,NY,10001 +288297,27in FHD Monitor,1,149.99,2019-11-02 10:17:00,49 Elm St, Boston,MA,02215 +288298,AA Batteries (4-pack),1,3.84,2019-11-15 16:58:00,665 8th St, San Francisco,CA,94016 +288299,LG Washing Machine,1,600.0,2019-11-24 15:01:00,265 Johnson St, San Francisco,CA,94016 +288300,Apple Airpods Headphones,1,150.0,2019-11-11 10:13:00,432 6th St, Portland,OR,97035 +288301,AA Batteries (4-pack),1,3.84,2019-11-08 17:41:00,261 Dogwood St, Boston,MA,02215 +288302,USB-C Charging Cable,1,11.95,2019-11-02 08:36:00,675 Jackson St, Seattle,WA,98101 +288303,Bose SoundSport Headphones,1,99.99,2019-11-28 10:51:00,681 8th St, Boston,MA,02215 +288304,Vareebadd Phone,1,400.0,2019-11-25 10:26:00,717 Hill St, Atlanta,GA,30301 +288305,AAA Batteries (4-pack),1,2.99,2019-11-09 09:21:00,655 Hill St, Los Angeles,CA,90001 +288306,AAA Batteries (4-pack),1,2.99,2019-11-12 20:37:00,538 Pine St, Boston,MA,02215 +288307,Bose SoundSport Headphones,1,99.99,2019-11-28 11:28:00,217 Walnut St, Los Angeles,CA,90001 +288308,iPhone,1,700.0,2019-11-16 21:22:00,291 Walnut St, Atlanta,GA,30301 +288309,Bose SoundSport Headphones,1,99.99,2019-11-22 13:32:00,528 Washington St, San Francisco,CA,94016 +288310,27in FHD Monitor,1,149.99,2019-11-11 17:51:00,602 Chestnut St, Portland,OR,97035 +288311,Wired Headphones,1,11.99,2019-11-04 10:34:00,708 Spruce St, San Francisco,CA,94016 +288312,ThinkPad Laptop,1,999.99,2019-11-07 10:40:00,395 1st St, San Francisco,CA,94016 +288313,AAA Batteries (4-pack),1,2.99,2019-11-03 00:12:00,182 Walnut St, Dallas,TX,75001 +288314,USB-C Charging Cable,1,11.95,2019-11-03 16:56:00,881 9th St, Boston,MA,02215 +288315,ThinkPad Laptop,1,999.99,2019-11-25 15:02:00,793 Jackson St, Austin,TX,73301 +288316,Wired Headphones,1,11.99,2019-11-10 22:35:00,383 1st St, San Francisco,CA,94016 +288317,Apple Airpods Headphones,1,150.0,2019-11-30 06:38:00,182 2nd St, San Francisco,CA,94016 +288318,iPhone,1,700.0,2019-11-14 22:55:00,298 1st St, Atlanta,GA,30301 +288319,LG Washing Machine,1,600.0,2019-11-05 23:02:00,756 Lakeview St, New York City,NY,10001 +288320,AAA Batteries (4-pack),1,2.99,2019-11-23 09:24:00,765 Lincoln St, Dallas,TX,75001 +288321,AA Batteries (4-pack),1,3.84,2019-11-30 09:38:00,569 Sunset St, New York City,NY,10001 +288322,27in 4K Gaming Monitor,1,389.99,2019-11-29 18:14:00,765 West St, Los Angeles,CA,90001 +288323,LG Washing Machine,1,600.0,2019-11-27 23:11:00,992 Lincoln St, Los Angeles,CA,90001 +288324,USB-C Charging Cable,1,11.95,2019-11-30 17:21:00,454 Wilson St, Boston,MA,02215 +288325,Apple Airpods Headphones,1,150.0,2019-11-07 18:34:00,505 12th St, New York City,NY,10001 +288326,Wired Headphones,1,11.99,2019-11-23 21:25:00,104 9th St, Los Angeles,CA,90001 +288327,Macbook Pro Laptop,1,1700.0,2019-11-26 17:30:00,816 Maple St, Atlanta,GA,30301 +288328,AAA Batteries (4-pack),2,2.99,2019-11-30 10:50:00,784 Highland St, Los Angeles,CA,90001 +288329,USB-C Charging Cable,1,11.95,2019-11-27 21:54:00,475 8th St, New York City,NY,10001 +288330,AA Batteries (4-pack),1,3.84,2019-11-29 14:56:00,327 Ridge St, Portland,OR,97035 +288331,iPhone,1,700.0,2019-11-19 13:42:00,448 Highland St, Los Angeles,CA,90001 +288332,AAA Batteries (4-pack),2,2.99,2019-11-27 17:35:00,889 Forest St, Los Angeles,CA,90001 +288332,AA Batteries (4-pack),2,3.84,2019-11-27 17:35:00,889 Forest St, Los Angeles,CA,90001 +288333,USB-C Charging Cable,1,11.95,2019-11-30 18:56:00,519 Main St, San Francisco,CA,94016 +288334,AA Batteries (4-pack),1,3.84,2019-11-27 16:44:00,84 Johnson St, Dallas,TX,75001 +288335,Lightning Charging Cable,1,14.95,2019-11-14 14:57:00,563 Dogwood St, San Francisco,CA,94016 +288336,AA Batteries (4-pack),2,3.84,2019-11-08 06:56:00,210 North St, New York City,NY,10001 +288337,Wired Headphones,1,11.99,2019-11-23 11:27:00,494 Maple St, Seattle,WA,98101 +288338,AA Batteries (4-pack),1,3.84,2019-11-21 10:35:00,577 Highland St, Los Angeles,CA,90001 +288339,Bose SoundSport Headphones,1,99.99,2019-11-18 11:22:00,26 Pine St, Dallas,TX,75001 +288340,iPhone,1,700.0,2019-11-24 05:41:00,91 Sunset St, Austin,TX,73301 +288341,Lightning Charging Cable,1,14.95,2019-11-16 21:43:00,985 Dogwood St, San Francisco,CA,94016 +288342,Vareebadd Phone,1,400.0,2019-11-10 19:08:00,631 8th St, San Francisco,CA,94016 +288343,34in Ultrawide Monitor,1,379.99,2019-11-10 17:58:00,534 1st St, Los Angeles,CA,90001 +288344,27in 4K Gaming Monitor,1,389.99,2019-11-08 14:09:00,364 Main St, New York City,NY,10001 +288345,USB-C Charging Cable,1,11.95,2019-11-01 14:48:00,513 10th St, Seattle,WA,98101 +288346,Wired Headphones,1,11.99,2019-11-20 00:55:00,339 Hill St, San Francisco,CA,94016 +288347,Apple Airpods Headphones,1,150.0,2019-11-21 11:02:00,191 Ridge St, Los Angeles,CA,90001 +288348,AA Batteries (4-pack),1,3.84,2019-11-27 00:16:00,527 Washington St, Atlanta,GA,30301 +288349,Google Phone,1,600.0,2019-11-19 10:57:00,874 Cherry St, New York City,NY,10001 +288350,AA Batteries (4-pack),1,3.84,2019-11-16 15:41:00,43 5th St, Dallas,TX,75001 +288351,USB-C Charging Cable,1,11.95,2019-11-07 09:46:00,125 Washington St, Dallas,TX,75001 +288352,AA Batteries (4-pack),1,3.84,2019-11-25 19:38:00,458 River St, Atlanta,GA,30301 +288353,Apple Airpods Headphones,1,150.0,2019-11-14 16:51:00,890 11th St, San Francisco,CA,94016 +288354,AA Batteries (4-pack),1,3.84,2019-11-19 14:36:00,526 Lake St, Portland,OR,97035 +288355,AA Batteries (4-pack),1,3.84,2019-11-28 09:38:00,958 Center St, New York City,NY,10001 +288356,iPhone,1,700.0,2019-11-07 20:46:00,957 11th St, San Francisco,CA,94016 +288357,USB-C Charging Cable,1,11.95,2019-11-30 12:45:00,809 Meadow St, Boston,MA,02215 +288358,AA Batteries (4-pack),1,3.84,2019-11-29 10:31:00,765 Adams St, Portland,OR,97035 +288359,AA Batteries (4-pack),1,3.84,2019-11-09 13:33:00,460 Lakeview St, New York City,NY,10001 +288360,34in Ultrawide Monitor,1,379.99,2019-11-04 17:09:00,773 Lakeview St, Los Angeles,CA,90001 +288361,iPhone,1,700.0,2019-11-18 11:07:00,244 Highland St, San Francisco,CA,94016 +288362,AA Batteries (4-pack),1,3.84,2019-11-19 19:56:00,178 Cedar St, Los Angeles,CA,90001 +288363,Wired Headphones,1,11.99,2019-11-01 09:36:00,894 9th St, Dallas,TX,75001 +288364,AA Batteries (4-pack),1,3.84,2019-11-03 07:33:00,646 Madison St, Atlanta,GA,30301 +288365,Google Phone,1,600.0,2019-11-19 12:20:00,406 Forest St, Boston,MA,02215 +288366,Bose SoundSport Headphones,1,99.99,2019-11-03 19:51:00,967 West St, San Francisco,CA,94016 +288367,ThinkPad Laptop,1,999.99,2019-11-23 22:11:00,636 River St, Los Angeles,CA,90001 +288368,AAA Batteries (4-pack),1,2.99,2019-11-25 09:12:00,391 5th St, New York City,NY,10001 +288369,AAA Batteries (4-pack),3,2.99,2019-11-14 22:51:00,767 11th St, San Francisco,CA,94016 +288370,Macbook Pro Laptop,1,1700.0,2019-11-01 10:02:00,726 Lakeview St, San Francisco,CA,94016 +288371,AAA Batteries (4-pack),2,2.99,2019-11-09 17:43:00,625 8th St, San Francisco,CA,94016 +288372,Bose SoundSport Headphones,1,99.99,2019-11-02 17:28:00,783 8th St, New York City,NY,10001 +288373,iPhone,1,700.0,2019-11-23 23:21:00,808 11th St, Austin,TX,73301 +288374,AAA Batteries (4-pack),1,2.99,2019-11-29 10:42:00,893 5th St, San Francisco,CA,94016 +288375,Google Phone,1,600.0,2019-11-09 17:10:00,644 Wilson St, San Francisco,CA,94016 +288376,Bose SoundSport Headphones,1,99.99,2019-11-16 23:32:00,208 Pine St, Boston,MA,02215 +288377,AAA Batteries (4-pack),1,2.99,2019-11-16 08:41:00,440 Willow St, Los Angeles,CA,90001 +288378,Bose SoundSport Headphones,1,99.99,2019-11-12 15:24:00,991 12th St, Portland,ME,04101 +288379,USB-C Charging Cable,2,11.95,2019-11-24 14:58:00,227 Park St, Boston,MA,02215 +288380,USB-C Charging Cable,1,11.95,2019-11-13 12:11:00,264 10th St, Boston,MA,02215 +288381,USB-C Charging Cable,1,11.95,2019-11-05 09:35:00,279 Maple St, Portland,OR,97035 +288382,Macbook Pro Laptop,1,1700.0,2019-11-09 11:55:00,5 Highland St, Seattle,WA,98101 +288383,Lightning Charging Cable,1,14.95,2019-11-05 18:00:00,29 9th St, Los Angeles,CA,90001 +288384,27in FHD Monitor,1,149.99,2019-11-24 21:23:00,290 Meadow St, Atlanta,GA,30301 +288385,AA Batteries (4-pack),1,3.84,2019-11-16 11:45:00,909 Madison St, San Francisco,CA,94016 +288386,AAA Batteries (4-pack),3,2.99,2019-11-29 10:34:00,869 West St, New York City,NY,10001 +288387,Apple Airpods Headphones,1,150.0,2019-11-23 17:46:00,524 Jefferson St, Los Angeles,CA,90001 +288388,Lightning Charging Cable,1,14.95,2019-11-04 15:43:00,836 Elm St, San Francisco,CA,94016 +288389,AAA Batteries (4-pack),3,2.99,2019-11-30 09:34:00,241 Pine St, Portland,OR,97035 +288390,Wired Headphones,1,11.99,2019-11-29 20:23:00,248 Hill St, Boston,MA,02215 +288391,Lightning Charging Cable,1,14.95,2019-11-28 17:35:00,664 Spruce St, Portland,OR,97035 +288392,USB-C Charging Cable,2,11.95,2019-11-09 11:03:00,626 West St, San Francisco,CA,94016 +288393,Wired Headphones,1,11.99,2019-11-14 22:12:00,643 Lake St, Dallas,TX,75001 +288394,Apple Airpods Headphones,1,150.0,2019-11-29 14:41:00,264 Pine St, Atlanta,GA,30301 +288395,Bose SoundSport Headphones,1,99.99,2019-11-05 16:28:00,477 Hickory St, Atlanta,GA,30301 +288396,LG Dryer,1,600.0,2019-11-25 16:07:00,466 South St, Seattle,WA,98101 +288397,iPhone,1,700.0,2019-11-17 12:00:00,820 Forest St, Los Angeles,CA,90001 +288398,Apple Airpods Headphones,1,150.0,2019-11-01 23:30:00,491 Chestnut St, Seattle,WA,98101 +288399,Lightning Charging Cable,1,14.95,2019-11-28 16:47:00,854 South St, Los Angeles,CA,90001 +288400,Lightning Charging Cable,1,14.95,2019-11-21 15:09:00,723 Lakeview St, Portland,ME,04101 +288401,ThinkPad Laptop,1,999.99,2019-11-10 20:05:00,265 10th St, New York City,NY,10001 +288402,20in Monitor,1,109.99,2019-11-06 09:54:00,494 Center St, San Francisco,CA,94016 +288403,AA Batteries (4-pack),3,3.84,2019-11-18 09:55:00,445 West St, San Francisco,CA,94016 +288404,27in 4K Gaming Monitor,1,389.99,2019-11-28 20:58:00,906 Hill St, Seattle,WA,98101 +288405,Lightning Charging Cable,2,14.95,2019-11-19 16:30:00,461 Jackson St, Los Angeles,CA,90001 +288406,Lightning Charging Cable,1,14.95,2019-11-22 15:36:00,821 Spruce St, Seattle,WA,98101 +288407,34in Ultrawide Monitor,1,379.99,2019-11-09 10:22:00,4 Madison St, Boston,MA,02215 +288408,AA Batteries (4-pack),1,3.84,2019-11-25 21:34:00,763 5th St, New York City,NY,10001 +288409,27in FHD Monitor,1,149.99,2019-11-11 23:55:00,569 Adams St, Los Angeles,CA,90001 +288410,iPhone,1,700.0,2019-11-01 20:45:00,326 South St, Seattle,WA,98101 +288411,27in 4K Gaming Monitor,1,389.99,2019-11-24 21:41:00,610 4th St, Los Angeles,CA,90001 +288412,AAA Batteries (4-pack),1,2.99,2019-11-26 23:47:00,414 River St, New York City,NY,10001 +288413,27in 4K Gaming Monitor,1,389.99,2019-11-08 05:45:00,508 Jackson St, Los Angeles,CA,90001 +288414,Wired Headphones,1,11.99,2019-11-06 00:32:00,960 8th St, Atlanta,GA,30301 +288415,USB-C Charging Cable,1,11.95,2019-11-21 20:10:00,138 Maple St, Boston,MA,02215 +288416,27in 4K Gaming Monitor,1,389.99,2019-11-06 17:51:00,353 Washington St, Atlanta,GA,30301 +288417,34in Ultrawide Monitor,1,379.99,2019-11-18 23:10:00,753 West St, San Francisco,CA,94016 +288418,ThinkPad Laptop,1,999.99,2019-11-08 00:13:00,869 Park St, San Francisco,CA,94016 +288419,Flatscreen TV,1,300.0,2019-11-14 00:08:00,397 North St, Seattle,WA,98101 +288420,Lightning Charging Cable,1,14.95,2019-11-10 21:09:00,800 Chestnut St, Portland,OR,97035 +288421,Wired Headphones,1,11.99,2019-11-15 19:07:00,62 13th St, New York City,NY,10001 +288422,Wired Headphones,1,11.99,2019-11-13 10:19:00,80 Lakeview St, Los Angeles,CA,90001 +288423,ThinkPad Laptop,1,999.99,2019-11-14 08:48:00,787 Dogwood St, Boston,MA,02215 +288424,Apple Airpods Headphones,1,150.0,2019-11-09 19:25:00,794 9th St, Boston,MA,02215 +288425,Lightning Charging Cable,1,14.95,2019-11-30 13:42:00,762 Spruce St, San Francisco,CA,94016 +288426,AA Batteries (4-pack),1,3.84,2019-11-14 21:05:00,537 Elm St, Portland,OR,97035 +288427,Flatscreen TV,1,300.0,2019-11-15 12:22:00,484 13th St, New York City,NY,10001 +288428,AAA Batteries (4-pack),2,2.99,2019-11-02 08:19:00,419 10th St, San Francisco,CA,94016 +288429,Flatscreen TV,1,300.0,2019-11-08 12:37:00,228 1st St, San Francisco,CA,94016 +288430,USB-C Charging Cable,2,11.95,2019-11-06 23:42:00,660 8th St, San Francisco,CA,94016 +288431,Wired Headphones,1,11.99,2019-11-12 20:49:00,446 South St, Los Angeles,CA,90001 +288432,AAA Batteries (4-pack),2,2.99,2019-11-28 23:46:00,2 Lake St, Dallas,TX,75001 +288433,USB-C Charging Cable,1,11.95,2019-11-12 20:26:00,752 West St, New York City,NY,10001 +288434,Lightning Charging Cable,1,14.95,2019-11-11 21:49:00,416 South St, Los Angeles,CA,90001 +288435,Bose SoundSport Headphones,1,99.99,2019-11-08 00:34:00,594 Maple St, San Francisco,CA,94016 +288436,Google Phone,1,600.0,2019-11-29 12:20:00,401 Forest St, San Francisco,CA,94016 +288437,Lightning Charging Cable,1,14.95,2019-11-08 19:55:00,14 Spruce St, San Francisco,CA,94016 +288438,Wired Headphones,1,11.99,2019-11-26 20:43:00,303 Walnut St, New York City,NY,10001 +288439,Wired Headphones,1,11.99,2019-11-25 23:49:00,688 Washington St, San Francisco,CA,94016 +288440,Lightning Charging Cable,1,14.95,2019-11-07 13:47:00,697 West St, Portland,OR,97035 +288441,Wired Headphones,1,11.99,2019-11-21 14:55:00,105 Cedar St, Atlanta,GA,30301 +288442,Wired Headphones,3,11.99,2019-11-04 11:25:00,335 1st St, Los Angeles,CA,90001 +288443,Apple Airpods Headphones,1,150.0,2019-11-22 01:49:00,589 4th St, New York City,NY,10001 +288444,Wired Headphones,1,11.99,2019-11-06 15:36:00,737 Washington St, San Francisco,CA,94016 +288445,AAA Batteries (4-pack),1,2.99,2019-11-04 18:30:00,867 North St, San Francisco,CA,94016 +288446,AAA Batteries (4-pack),1,2.99,2019-11-22 19:36:00,353 6th St, New York City,NY,10001 +288447,Lightning Charging Cable,1,14.95,2019-11-22 11:59:00,27 Lincoln St, Portland,ME,04101 +288448,Vareebadd Phone,1,400.0,2019-11-04 11:37:00,141 Chestnut St, San Francisco,CA,94016 +288448,USB-C Charging Cable,1,11.95,2019-11-04 11:37:00,141 Chestnut St, San Francisco,CA,94016 +288449,AAA Batteries (4-pack),3,2.99,2019-11-16 19:12:00,357 Hill St, San Francisco,CA,94016 +288450,Apple Airpods Headphones,1,150.0,2019-11-25 10:31:00,249 8th St, San Francisco,CA,94016 +288451,AA Batteries (4-pack),2,3.84,2019-11-15 19:24:00,236 South St, Boston,MA,02215 +288452,AA Batteries (4-pack),1,3.84,2019-11-19 13:25:00,80 Willow St, Los Angeles,CA,90001 +288453,27in FHD Monitor,1,149.99,2019-11-19 19:29:00,579 Cedar St, Los Angeles,CA,90001 +288454,Bose SoundSport Headphones,1,99.99,2019-11-30 17:39:00,916 Dogwood St, San Francisco,CA,94016 +288455,34in Ultrawide Monitor,1,379.99,2019-11-12 21:42:00,149 6th St, Atlanta,GA,30301 +288456,iPhone,1,700.0,2019-11-04 12:18:00,410 8th St, Atlanta,GA,30301 +288456,Wired Headphones,1,11.99,2019-11-04 12:18:00,410 8th St, Atlanta,GA,30301 +288457,USB-C Charging Cable,1,11.95,2019-11-07 16:04:00,739 5th St, Boston,MA,02215 +288458,AAA Batteries (4-pack),1,2.99,2019-11-28 09:12:00,304 9th St, Dallas,TX,75001 +288459,AAA Batteries (4-pack),1,2.99,2019-11-14 14:06:00,889 2nd St, Austin,TX,73301 +288460,AA Batteries (4-pack),1,3.84,2019-11-20 18:46:00,833 Chestnut St, Dallas,TX,75001 +288460,USB-C Charging Cable,1,11.95,2019-11-20 18:46:00,833 Chestnut St, Dallas,TX,75001 +288461,AAA Batteries (4-pack),3,2.99,2019-11-21 20:38:00,510 Main St, New York City,NY,10001 +288462,Flatscreen TV,1,300.0,2019-11-22 21:10:00,220 4th St, San Francisco,CA,94016 +288463,27in 4K Gaming Monitor,1,389.99,2019-11-06 09:32:00,817 10th St, Boston,MA,02215 +288464,AA Batteries (4-pack),1,3.84,2019-11-29 19:04:00,869 10th St, Seattle,WA,98101 +288465,AAA Batteries (4-pack),1,2.99,2019-11-09 13:17:00,933 Elm St, San Francisco,CA,94016 +288466,Bose SoundSport Headphones,1,99.99,2019-11-25 19:54:00,633 Elm St, Boston,MA,02215 +288467,USB-C Charging Cable,1,11.95,2019-11-29 12:46:00,719 North St, San Francisco,CA,94016 +288468,AAA Batteries (4-pack),1,2.99,2019-11-08 18:58:00,364 Lake St, Los Angeles,CA,90001 +288469,AA Batteries (4-pack),1,3.84,2019-11-13 16:34:00,90 Pine St, New York City,NY,10001 +288469,Apple Airpods Headphones,1,150.0,2019-11-13 16:34:00,90 Pine St, New York City,NY,10001 +288470,AA Batteries (4-pack),2,3.84,2019-11-08 16:41:00,257 Meadow St, San Francisco,CA,94016 +288471,iPhone,1,700.0,2019-11-03 15:46:00,222 Hill St, Seattle,WA,98101 +288471,Lightning Charging Cable,1,14.95,2019-11-03 15:46:00,222 Hill St, Seattle,WA,98101 +288471,Apple Airpods Headphones,1,150.0,2019-11-03 15:46:00,222 Hill St, Seattle,WA,98101 +288472,AAA Batteries (4-pack),1,2.99,2019-11-22 00:09:00,488 Pine St, San Francisco,CA,94016 +288473,Wired Headphones,1,11.99,2019-11-25 07:05:00,765 Washington St, San Francisco,CA,94016 +288474,27in FHD Monitor,1,149.99,2019-11-08 08:54:00,325 North St, San Francisco,CA,94016 +288475,USB-C Charging Cable,1,11.95,2019-11-25 20:07:00,913 2nd St, Dallas,TX,75001 +288476,Google Phone,1,600.0,2019-11-06 19:41:00,19 Main St, Los Angeles,CA,90001 +288477,Flatscreen TV,1,300.0,2019-11-01 13:07:00,582 2nd St, New York City,NY,10001 +288478,USB-C Charging Cable,1,11.95,2019-11-10 12:35:00,165 North St, Los Angeles,CA,90001 +288479,LG Washing Machine,1,600.0,2019-11-14 16:06:00,707 Highland St, San Francisco,CA,94016 +288480,Lightning Charging Cable,1,14.95,2019-11-13 10:02:00,550 Highland St, Atlanta,GA,30301 +288481,USB-C Charging Cable,1,11.95,2019-11-02 11:45:00,423 Johnson St, Portland,ME,04101 +288482,Lightning Charging Cable,1,14.95,2019-11-29 19:49:00,290 Dogwood St, Austin,TX,73301 +288483,20in Monitor,1,109.99,2019-11-01 15:01:00,913 9th St, Atlanta,GA,30301 +288484,Google Phone,1,600.0,2019-11-24 19:27:00,24 Lincoln St, Austin,TX,73301 +288484,USB-C Charging Cable,2,11.95,2019-11-24 19:27:00,24 Lincoln St, Austin,TX,73301 +288485,AAA Batteries (4-pack),4,2.99,2019-11-05 19:12:00,401 Wilson St, Portland,OR,97035 +288486,AAA Batteries (4-pack),1,2.99,2019-11-23 20:23:00,769 Meadow St, New York City,NY,10001 +288487,USB-C Charging Cable,1,11.95,2019-11-30 18:25:00,749 Ridge St, Dallas,TX,75001 +288487,Bose SoundSport Headphones,1,99.99,2019-11-30 18:25:00,749 Ridge St, Dallas,TX,75001 +288488,USB-C Charging Cable,4,11.95,2019-11-05 21:15:00,558 Jackson St, Seattle,WA,98101 +288488,AA Batteries (4-pack),1,3.84,2019-11-05 21:15:00,558 Jackson St, Seattle,WA,98101 +288489,AA Batteries (4-pack),1,3.84,2019-11-14 17:56:00,619 8th St, Boston,MA,02215 +288490,iPhone,1,700.0,2019-11-30 14:40:00,285 Forest St, Dallas,TX,75001 +288491,Macbook Pro Laptop,1,1700.0,2019-11-11 14:24:00,314 Jefferson St, New York City,NY,10001 +288492,Bose SoundSport Headphones,1,99.99,2019-11-19 15:47:00,691 Lakeview St, Los Angeles,CA,90001 +288493,AAA Batteries (4-pack),1,2.99,2019-11-08 16:11:00,70 9th St, San Francisco,CA,94016 +288494,Macbook Pro Laptop,1,1700.0,2019-11-24 11:38:00,615 Church St, San Francisco,CA,94016 +288495,AA Batteries (4-pack),1,3.84,2019-11-17 16:57:00,431 Lake St, San Francisco,CA,94016 +288496,Wired Headphones,1,11.99,2019-11-04 10:09:00,233 West St, San Francisco,CA,94016 +288497,Google Phone,1,600.0,2019-11-02 16:39:00,546 North St, San Francisco,CA,94016 +288498,AAA Batteries (4-pack),1,2.99,2019-11-20 20:37:00,970 Madison St, Seattle,WA,98101 +288499,Macbook Pro Laptop,1,1700.0,2019-11-02 22:48:00,458 Maple St, New York City,NY,10001 +288500,USB-C Charging Cable,1,11.95,2019-11-06 22:43:00,859 South St, Portland,OR,97035 +288501,Wired Headphones,1,11.99,2019-11-19 11:11:00,979 Hill St, Los Angeles,CA,90001 +288502,USB-C Charging Cable,1,11.95,2019-11-24 12:48:00,611 Spruce St, Seattle,WA,98101 +288503,AAA Batteries (4-pack),1,2.99,2019-11-08 16:56:00,439 Ridge St, New York City,NY,10001 +288504,20in Monitor,1,109.99,2019-11-20 06:01:00,220 Wilson St, Boston,MA,02215 +288505,Wired Headphones,1,11.99,2019-11-17 07:35:00,442 11th St, Los Angeles,CA,90001 +288506,AAA Batteries (4-pack),1,2.99,2019-11-29 12:52:00,37 South St, Los Angeles,CA,90001 +288507,AAA Batteries (4-pack),2,2.99,2019-11-15 11:58:00,29 Maple St, Dallas,TX,75001 +288508,AA Batteries (4-pack),1,3.84,2019-11-23 18:04:00,469 5th St, Dallas,TX,75001 +288509,Google Phone,1,600.0,2019-11-26 14:36:00,799 Hickory St, Los Angeles,CA,90001 +288509,Wired Headphones,1,11.99,2019-11-26 14:36:00,799 Hickory St, Los Angeles,CA,90001 +288510,Bose SoundSport Headphones,1,99.99,2019-11-28 20:52:00,880 Elm St, New York City,NY,10001 +288511,AAA Batteries (4-pack),4,2.99,2019-11-16 12:42:00,390 14th St, Seattle,WA,98101 +288512,Lightning Charging Cable,2,14.95,2019-11-30 21:25:00,464 Hill St, Boston,MA,02215 +288513,20in Monitor,1,109.99,2019-11-22 18:05:00,465 Chestnut St, San Francisco,CA,94016 +288514,Apple Airpods Headphones,1,150.0,2019-11-09 19:01:00,959 2nd St, Los Angeles,CA,90001 +288515,Wired Headphones,2,11.99,2019-11-29 13:12:00,135 Cedar St, Seattle,WA,98101 +288516,AAA Batteries (4-pack),1,2.99,2019-11-18 09:15:00,789 12th St, New York City,NY,10001 +288517,Google Phone,1,600.0,2019-11-25 21:00:00,690 Meadow St, San Francisco,CA,94016 +288518,Wired Headphones,1,11.99,2019-11-20 14:33:00,447 Hill St, Los Angeles,CA,90001 +288519,AAA Batteries (4-pack),1,2.99,2019-11-14 09:29:00,849 Meadow St, Boston,MA,02215 +288519,27in FHD Monitor,1,149.99,2019-11-14 09:29:00,849 Meadow St, Boston,MA,02215 +288520,Wired Headphones,1,11.99,2019-11-05 19:24:00,581 West St, Portland,ME,04101 +288521,Wired Headphones,1,11.99,2019-11-27 19:31:00,230 Washington St, Los Angeles,CA,90001 +288522,AAA Batteries (4-pack),1,2.99,2019-11-01 21:07:00,456 River St, Dallas,TX,75001 +288523,iPhone,1,700.0,2019-11-24 14:50:00,988 Willow St, Portland,OR,97035 +288524,27in 4K Gaming Monitor,1,389.99,2019-11-29 09:44:00,540 7th St, San Francisco,CA,94016 +288525,Bose SoundSport Headphones,1,99.99,2019-11-20 15:40:00,593 Cherry St, New York City,NY,10001 +288526,ThinkPad Laptop,1,999.99,2019-11-10 18:19:00,888 Maple St, New York City,NY,10001 +288527,Lightning Charging Cable,1,14.95,2019-11-25 13:08:00,752 South St, New York City,NY,10001 +288528,Bose SoundSport Headphones,1,99.99,2019-11-21 10:03:00,997 7th St, San Francisco,CA,94016 +288529,AAA Batteries (4-pack),1,2.99,2019-11-26 15:58:00,258 Meadow St, New York City,NY,10001 +288530,USB-C Charging Cable,1,11.95,2019-11-07 16:28:00,519 9th St, Portland,OR,97035 +288531,AA Batteries (4-pack),2,3.84,2019-11-23 12:15:00,707 Church St, New York City,NY,10001 +288532,Wired Headphones,1,11.99,2019-11-24 11:53:00,912 Cedar St, New York City,NY,10001 +288533,Wired Headphones,1,11.99,2019-11-13 15:02:00,423 2nd St, Atlanta,GA,30301 +288533,Google Phone,1,600.0,2019-11-13 15:02:00,423 2nd St, Atlanta,GA,30301 +288534,Wired Headphones,1,11.99,2019-11-14 09:08:00,779 Hickory St, Boston,MA,02215 +288535,27in 4K Gaming Monitor,1,389.99,2019-11-23 21:35:00,205 Lake St, Los Angeles,CA,90001 +288536,Lightning Charging Cable,1,14.95,2019-11-27 16:55:00,623 9th St, Seattle,WA,98101 +288537,USB-C Charging Cable,1,11.95,2019-11-26 13:04:00,162 Cherry St, Dallas,TX,75001 +288538,USB-C Charging Cable,1,11.95,2019-11-12 09:12:00,153 Johnson St, Atlanta,GA,30301 +288539,AAA Batteries (4-pack),3,2.99,2019-11-17 11:56:00,689 Cherry St, Dallas,TX,75001 +288540,Lightning Charging Cable,1,14.95,2019-11-30 19:22:00,889 Madison St, Boston,MA,02215 +288541,Vareebadd Phone,1,400.0,2019-11-05 16:33:00,815 7th St, Seattle,WA,98101 +288541,AA Batteries (4-pack),2,3.84,2019-11-05 16:33:00,815 7th St, Seattle,WA,98101 +288542,Wired Headphones,1,11.99,2019-11-21 08:42:00,162 Church St, Atlanta,GA,30301 +288543,Macbook Pro Laptop,1,1700.0,2019-11-06 18:59:00,497 West St, San Francisco,CA,94016 +288544,Google Phone,1,600.0,2019-11-17 20:25:00,560 Lakeview St, Los Angeles,CA,90001 +288545,Bose SoundSport Headphones,1,99.99,2019-11-18 20:30:00,835 River St, New York City,NY,10001 +288546,AA Batteries (4-pack),1,3.84,2019-11-17 13:49:00,609 6th St, New York City,NY,10001 +288547,Macbook Pro Laptop,1,1700.0,2019-11-23 14:26:00,153 Church St, Austin,TX,73301 +288548,Bose SoundSport Headphones,1,99.99,2019-11-21 14:23:00,375 2nd St, San Francisco,CA,94016 +288549,Wired Headphones,1,11.99,2019-11-30 19:42:00,973 5th St, San Francisco,CA,94016 +288550,AA Batteries (4-pack),1,3.84,2019-11-17 12:35:00,943 6th St, Seattle,WA,98101 +288551,AAA Batteries (4-pack),1,2.99,2019-11-10 13:07:00,97 Madison St, Atlanta,GA,30301 +288551,USB-C Charging Cable,1,11.95,2019-11-10 13:07:00,97 Madison St, Atlanta,GA,30301 +288552,AAA Batteries (4-pack),1,2.99,2019-11-08 16:08:00,967 Wilson St, San Francisco,CA,94016 +288553,Wired Headphones,1,11.99,2019-11-12 17:16:00,885 11th St, Los Angeles,CA,90001 +288554,Apple Airpods Headphones,1,150.0,2019-11-13 22:41:00,785 Church St, Atlanta,GA,30301 +288555,27in FHD Monitor,1,149.99,2019-11-13 08:44:00,985 2nd St, Los Angeles,CA,90001 +288556,34in Ultrawide Monitor,1,379.99,2019-11-01 10:35:00,568 Madison St, Dallas,TX,75001 +288557,34in Ultrawide Monitor,1,379.99,2019-11-29 07:14:00,147 Lakeview St, Boston,MA,02215 +288558,Apple Airpods Headphones,1,150.0,2019-11-11 13:19:00,550 West St, Seattle,WA,98101 +288559,Apple Airpods Headphones,1,150.0,2019-11-25 14:23:00,493 Chestnut St, Seattle,WA,98101 +288560,USB-C Charging Cable,1,11.95,2019-11-29 15:02:00,409 Pine St, Los Angeles,CA,90001 +288561,Lightning Charging Cable,1,14.95,2019-11-13 21:34:00,118 12th St, Seattle,WA,98101 +288562,Wired Headphones,1,11.99,2019-11-21 07:50:00,650 Cedar St, New York City,NY,10001 +288563,27in FHD Monitor,1,149.99,2019-11-19 15:57:00,845 Center St, Boston,MA,02215 +288564,Apple Airpods Headphones,1,150.0,2019-11-20 23:29:00,90 Park St, New York City,NY,10001 +288565,Apple Airpods Headphones,1,150.0,2019-11-21 12:35:00,172 Main St, Los Angeles,CA,90001 +288566,27in FHD Monitor,1,149.99,2019-11-21 11:21:00,541 Walnut St, Los Angeles,CA,90001 +288567,Wired Headphones,1,11.99,2019-11-24 12:47:00,816 Lake St, San Francisco,CA,94016 +288568,Lightning Charging Cable,1,14.95,2019-11-13 00:40:00,663 Elm St, Boston,MA,02215 +288569,Lightning Charging Cable,1,14.95,2019-11-11 13:52:00,30 1st St, San Francisco,CA,94016 +288570,Apple Airpods Headphones,1,150.0,2019-11-26 08:44:00,250 Meadow St, San Francisco,CA,94016 +288571,Apple Airpods Headphones,1,150.0,2019-11-14 21:26:00,793 Adams St, Atlanta,GA,30301 +288572,AAA Batteries (4-pack),1,2.99,2019-11-03 14:38:00,510 2nd St, Austin,TX,73301 +288573,AAA Batteries (4-pack),1,2.99,2019-11-12 13:10:00,915 Cherry St, New York City,NY,10001 +288574,34in Ultrawide Monitor,1,379.99,2019-11-07 12:10:00,112 Hill St, Boston,MA,02215 +288575,Wired Headphones,1,11.99,2019-11-16 22:27:00,578 Lakeview St, Portland,ME,04101 +288576,Lightning Charging Cable,1,14.95,2019-11-07 18:24:00,743 Highland St, Los Angeles,CA,90001 +288577,USB-C Charging Cable,1,11.95,2019-11-30 14:59:00,368 1st St, Seattle,WA,98101 +288578,Wired Headphones,1,11.99,2019-11-05 19:14:00,522 Lincoln St, Los Angeles,CA,90001 +288579,Apple Airpods Headphones,1,150.0,2019-11-14 23:37:00,128 Walnut St, San Francisco,CA,94016 +288580,AAA Batteries (4-pack),1,2.99,2019-11-17 16:19:00,634 Forest St, Austin,TX,73301 +288581,AA Batteries (4-pack),1,3.84,2019-11-15 14:11:00,655 10th St, Dallas,TX,75001 +288582,USB-C Charging Cable,1,11.95,2019-11-22 00:12:00,871 13th St, New York City,NY,10001 +288583,AAA Batteries (4-pack),2,2.99,2019-11-07 14:19:00,616 1st St, Los Angeles,CA,90001 +288583,AA Batteries (4-pack),1,3.84,2019-11-07 14:19:00,616 1st St, Los Angeles,CA,90001 +288584,AAA Batteries (4-pack),1,2.99,2019-11-25 18:48:00,252 Church St, San Francisco,CA,94016 +288585,34in Ultrawide Monitor,1,379.99,2019-11-29 17:40:00,381 12th St, Austin,TX,73301 +288586,Apple Airpods Headphones,1,150.0,2019-11-26 00:10:00,882 Lake St, New York City,NY,10001 +288587,AA Batteries (4-pack),1,3.84,2019-11-05 21:04:00,377 Lincoln St, Austin,TX,73301 +288588,Bose SoundSport Headphones,1,99.99,2019-11-10 13:28:00,73 Adams St, New York City,NY,10001 +288589,AA Batteries (4-pack),1,3.84,2019-11-29 11:27:00,108 Jackson St, Portland,OR,97035 +288590,AA Batteries (4-pack),1,3.84,2019-11-07 20:47:00,403 Lincoln St, San Francisco,CA,94016 +288591,USB-C Charging Cable,1,11.95,2019-11-05 21:23:00,897 8th St, San Francisco,CA,94016 +288592,USB-C Charging Cable,1,11.95,2019-11-05 17:59:00,846 11th St, New York City,NY,10001 +288593,27in 4K Gaming Monitor,1,389.99,2019-11-18 21:37:00,567 5th St, Dallas,TX,75001 +288594,AA Batteries (4-pack),1,3.84,2019-11-11 09:03:00,731 Dogwood St, San Francisco,CA,94016 +288595,Lightning Charging Cable,1,14.95,2019-11-14 11:52:00,522 Meadow St, New York City,NY,10001 +288596,27in 4K Gaming Monitor,1,389.99,2019-11-03 17:57:00,121 Park St, San Francisco,CA,94016 +288597,iPhone,1,700.0,2019-11-27 16:37:00,915 Elm St, New York City,NY,10001 +288598,AAA Batteries (4-pack),1,2.99,2019-11-09 23:52:00,171 Pine St, Atlanta,GA,30301 +288599,ThinkPad Laptop,1,999.99,2019-11-22 21:22:00,408 Church St, Seattle,WA,98101 +288600,AA Batteries (4-pack),3,3.84,2019-11-20 08:25:00,544 Main St, Austin,TX,73301 +288601,Wired Headphones,1,11.99,2019-11-30 19:09:00,660 Elm St, Portland,OR,97035 +288602,USB-C Charging Cable,1,11.95,2019-11-01 13:35:00,829 Washington St, Dallas,TX,75001 +288603,AA Batteries (4-pack),1,3.84,2019-11-01 09:55:00,199 Walnut St, New York City,NY,10001 +288604,Macbook Pro Laptop,1,1700.0,2019-11-03 14:06:00,226 Hill St, Dallas,TX,75001 +288605,AA Batteries (4-pack),1,3.84,2019-11-25 12:37:00,890 Wilson St, Portland,OR,97035 +288606,Bose SoundSport Headphones,1,99.99,2019-11-23 14:50:00,326 6th St, San Francisco,CA,94016 +288607,Wired Headphones,2,11.99,2019-11-04 14:49:00,409 6th St, Seattle,WA,98101 +288608,AAA Batteries (4-pack),2,2.99,2019-11-29 09:23:00,746 Hickory St, New York City,NY,10001 +288609,27in FHD Monitor,1,149.99,2019-11-14 20:45:00,767 Chestnut St, Atlanta,GA,30301 +288610,USB-C Charging Cable,1,11.95,2019-11-21 03:17:00,67 14th St, Los Angeles,CA,90001 +288611,20in Monitor,1,109.99,2019-11-28 17:43:00,881 Dogwood St, San Francisco,CA,94016 +288611,Bose SoundSport Headphones,1,99.99,2019-11-28 17:43:00,881 Dogwood St, San Francisco,CA,94016 +288612,Lightning Charging Cable,1,14.95,2019-11-29 21:20:00,773 Main St, Los Angeles,CA,90001 +288613,Wired Headphones,1,11.99,2019-11-19 13:15:00,780 Lincoln St, Dallas,TX,75001 +288614,Bose SoundSport Headphones,1,99.99,2019-11-01 18:56:00,899 Willow St, Austin,TX,73301 +288615,Wired Headphones,1,11.99,2019-11-24 15:01:00,280 11th St, Portland,OR,97035 +288616,USB-C Charging Cable,1,11.95,2019-11-02 11:58:00,524 Ridge St, Seattle,WA,98101 +288617,Macbook Pro Laptop,1,1700.0,2019-11-06 07:13:00,202 South St, Boston,MA,02215 +288618,Apple Airpods Headphones,1,150.0,2019-11-09 17:58:00,858 8th St, Atlanta,GA,30301 +288619,Macbook Pro Laptop,1,1700.0,2019-11-13 15:32:00,487 Jackson St, Los Angeles,CA,90001 +288620,USB-C Charging Cable,1,11.95,2019-11-29 12:54:00,637 Willow St, San Francisco,CA,94016 +288621,Vareebadd Phone,1,400.0,2019-11-03 20:31:00,647 10th St, Austin,TX,73301 +288622,Lightning Charging Cable,1,14.95,2019-11-04 18:57:00,802 10th St, Portland,ME,04101 +288623,AAA Batteries (4-pack),1,2.99,2019-11-28 13:17:00,976 7th St, New York City,NY,10001 +288624,AAA Batteries (4-pack),2,2.99,2019-11-17 10:20:00,890 13th St, Seattle,WA,98101 +288625,USB-C Charging Cable,1,11.95,2019-11-18 05:58:00,940 South St, San Francisco,CA,94016 +288626,Wired Headphones,1,11.99,2019-11-09 10:41:00,356 13th St, Dallas,TX,75001 +288627,34in Ultrawide Monitor,1,379.99,2019-11-28 11:39:00,626 Maple St, San Francisco,CA,94016 +288628,Lightning Charging Cable,1,14.95,2019-11-12 18:29:00,853 Lakeview St, Seattle,WA,98101 +288629,Bose SoundSport Headphones,1,99.99,2019-11-05 17:05:00,628 Hickory St, Austin,TX,73301 +288630,Lightning Charging Cable,1,14.95,2019-11-28 11:12:00,287 South St, New York City,NY,10001 +288631,AA Batteries (4-pack),1,3.84,2019-11-17 00:15:00,281 North St, Atlanta,GA,30301 +288632,Vareebadd Phone,1,400.0,2019-11-21 16:54:00,40 Adams St, Los Angeles,CA,90001 +288633,AAA Batteries (4-pack),1,2.99,2019-11-17 17:18:00,226 Willow St, Atlanta,GA,30301 +288634,USB-C Charging Cable,1,11.95,2019-11-08 18:17:00,111 2nd St, New York City,NY,10001 +288635,27in 4K Gaming Monitor,1,389.99,2019-11-03 11:29:00,389 Pine St, Los Angeles,CA,90001 +288636,34in Ultrawide Monitor,1,379.99,2019-11-11 21:22:00,92 Sunset St, San Francisco,CA,94016 +288637,AAA Batteries (4-pack),1,2.99,2019-11-28 18:45:00,467 Main St, San Francisco,CA,94016 +288638,Wired Headphones,1,11.99,2019-11-21 23:07:00,347 9th St, San Francisco,CA,94016 +288639,20in Monitor,1,109.99,2019-11-21 13:24:00,974 Main St, Dallas,TX,75001 +288640,34in Ultrawide Monitor,1,379.99,2019-11-07 05:41:00,173 Forest St, Portland,OR,97035 +288641,Lightning Charging Cable,1,14.95,2019-11-13 21:32:00,968 Jefferson St, Dallas,TX,75001 +288642,Wired Headphones,1,11.99,2019-11-27 00:14:00,550 Forest St, Dallas,TX,75001 +288643,27in 4K Gaming Monitor,1,389.99,2019-11-27 18:30:00,307 Main St, San Francisco,CA,94016 +288644,Bose SoundSport Headphones,1,99.99,2019-11-27 20:38:00,188 Willow St, Portland,OR,97035 +288645,27in 4K Gaming Monitor,1,389.99,2019-11-07 12:17:00,238 Walnut St, Atlanta,GA,30301 +288646,20in Monitor,1,109.99,2019-11-25 17:41:00,503 Wilson St, Los Angeles,CA,90001 +288647,34in Ultrawide Monitor,1,379.99,2019-11-27 18:14:00,795 2nd St, Boston,MA,02215 +288648,AAA Batteries (4-pack),1,2.99,2019-11-19 18:28:00,3 Ridge St, Los Angeles,CA,90001 +288649,Lightning Charging Cable,1,14.95,2019-11-14 14:19:00,753 Cherry St, San Francisco,CA,94016 +288650,ThinkPad Laptop,1,999.99,2019-11-08 20:22:00,370 Adams St, New York City,NY,10001 +288651,AAA Batteries (4-pack),2,2.99,2019-11-30 12:21:00,212 Madison St, Seattle,WA,98101 +288652,Wired Headphones,1,11.99,2019-11-15 14:22:00,310 Madison St, San Francisco,CA,94016 +288653,Google Phone,1,600.0,2019-11-04 21:40:00,206 4th St, Los Angeles,CA,90001 +288654,20in Monitor,1,109.99,2019-11-28 17:17:00,290 Madison St, Boston,MA,02215 +288655,AAA Batteries (4-pack),1,2.99,2019-11-17 17:55:00,552 Cherry St, San Francisco,CA,94016 +288656,Lightning Charging Cable,2,14.95,2019-11-27 19:00:00,610 River St, New York City,NY,10001 +288657,27in 4K Gaming Monitor,1,389.99,2019-11-14 22:25:00,410 10th St, San Francisco,CA,94016 +288658,Google Phone,1,600.0,2019-11-17 20:31:00,641 Center St, San Francisco,CA,94016 +288659,Lightning Charging Cable,1,14.95,2019-11-18 19:11:00,865 Cherry St, Los Angeles,CA,90001 +288660,AA Batteries (4-pack),1,3.84,2019-11-26 16:09:00,474 Meadow St, Portland,OR,97035 +288661,USB-C Charging Cable,1,11.95,2019-11-21 11:28:00,951 Dogwood St, Austin,TX,73301 +288662,AA Batteries (4-pack),2,3.84,2019-11-03 12:01:00,961 14th St, New York City,NY,10001 +288663,AAA Batteries (4-pack),1,2.99,2019-11-10 09:36:00,179 Maple St, Austin,TX,73301 +288664,27in FHD Monitor,1,149.99,2019-11-04 22:27:00,937 Johnson St, Austin,TX,73301 +288665,Wired Headphones,1,11.99,2019-11-29 01:09:00,881 Wilson St, Seattle,WA,98101 +288666,USB-C Charging Cable,1,11.95,2019-11-05 20:18:00,714 Lakeview St, Seattle,WA,98101 +288667,iPhone,1,700.0,2019-11-03 11:36:00,543 Main St, Seattle,WA,98101 +288668,Lightning Charging Cable,1,14.95,2019-11-14 10:33:00,509 2nd St, San Francisco,CA,94016 +288669,Bose SoundSport Headphones,1,99.99,2019-11-09 08:07:00,575 South St, New York City,NY,10001 +288670,AA Batteries (4-pack),1,3.84,2019-11-02 16:37:00,633 1st St, San Francisco,CA,94016 +288671,Lightning Charging Cable,1,14.95,2019-11-05 13:38:00,998 12th St, Los Angeles,CA,90001 +288672,27in FHD Monitor,1,149.99,2019-11-28 04:47:00,369 Madison St, New York City,NY,10001 +288673,20in Monitor,1,109.99,2019-11-29 15:13:00,801 River St, Dallas,TX,75001 +288674,Lightning Charging Cable,1,14.95,2019-11-21 18:49:00,982 Johnson St, Atlanta,GA,30301 +288675,Wired Headphones,1,11.99,2019-11-28 04:47:00,996 6th St, Dallas,TX,75001 +288676,Wired Headphones,1,11.99,2019-11-09 13:48:00,86 Johnson St, San Francisco,CA,94016 +288677,AA Batteries (4-pack),1,3.84,2019-11-09 17:20:00,540 11th St, San Francisco,CA,94016 +288678,34in Ultrawide Monitor,1,379.99,2019-11-15 14:15:00,427 6th St, New York City,NY,10001 +288679,27in FHD Monitor,1,149.99,2019-11-20 15:33:00,529 Elm St, Los Angeles,CA,90001 +288680,Lightning Charging Cable,1,14.95,2019-11-17 09:55:00,74 Hickory St, New York City,NY,10001 +288681,Bose SoundSport Headphones,1,99.99,2019-11-25 20:53:00,73 2nd St, New York City,NY,10001 +288682,AAA Batteries (4-pack),2,2.99,2019-11-10 18:41:00,974 Sunset St, Seattle,WA,98101 +288683,Lightning Charging Cable,1,14.95,2019-11-02 06:01:00,483 7th St, Atlanta,GA,30301 +288684,USB-C Charging Cable,1,11.95,2019-11-01 23:35:00,616 Wilson St, Los Angeles,CA,90001 +288685,AAA Batteries (4-pack),2,2.99,2019-11-17 20:34:00,319 Elm St, Atlanta,GA,30301 +288686,Lightning Charging Cable,1,14.95,2019-11-30 14:14:00,86 Jackson St, San Francisco,CA,94016 +288687,Google Phone,1,600.0,2019-11-04 23:30:00,605 Cedar St, Austin,TX,73301 +288688,iPhone,1,700.0,2019-11-22 13:22:00,39 Hickory St, Austin,TX,73301 +288689,AA Batteries (4-pack),1,3.84,2019-11-19 21:47:00,443 Ridge St, New York City,NY,10001 +288689,AAA Batteries (4-pack),7,2.99,2019-11-19 21:47:00,443 Ridge St, New York City,NY,10001 +288690,AAA Batteries (4-pack),2,2.99,2019-11-04 21:16:00,971 Chestnut St, New York City,NY,10001 +288691,Lightning Charging Cable,1,14.95,2019-11-12 20:16:00,17 Lincoln St, Portland,OR,97035 +288692,AA Batteries (4-pack),2,3.84,2019-11-07 12:54:00,160 Sunset St, Seattle,WA,98101 +288693,USB-C Charging Cable,1,11.95,2019-11-09 13:22:00,551 Adams St, Boston,MA,02215 +288694,AA Batteries (4-pack),1,3.84,2019-11-03 14:19:00,466 Hickory St, Dallas,TX,75001 +288695,Wired Headphones,2,11.99,2019-11-03 18:09:00,610 4th St, Austin,TX,73301 +288696,27in FHD Monitor,1,149.99,2019-11-05 04:37:00,900 5th St, San Francisco,CA,94016 +288697,27in 4K Gaming Monitor,1,389.99,2019-11-11 07:36:00,843 6th St, Seattle,WA,98101 +288698,Lightning Charging Cable,3,14.95,2019-11-24 06:59:00,147 Washington St, San Francisco,CA,94016 +288699,AA Batteries (4-pack),3,3.84,2019-11-13 15:25:00,970 Johnson St, Boston,MA,02215 +288700,USB-C Charging Cable,1,11.95,2019-11-20 10:55:00,60 Walnut St, Dallas,TX,75001 +288701,27in FHD Monitor,1,149.99,2019-11-01 20:18:00,857 Dogwood St, San Francisco,CA,94016 +288702,Lightning Charging Cable,1,14.95,2019-11-23 21:23:00,303 Madison St, San Francisco,CA,94016 +288703,Lightning Charging Cable,1,14.95,2019-11-29 14:53:00,126 Church St, Boston,MA,02215 +288704,Lightning Charging Cable,1,14.95,2019-11-28 20:12:00,454 Meadow St, Atlanta,GA,30301 +288705,34in Ultrawide Monitor,1,379.99,2019-11-18 01:30:00,589 11th St, Los Angeles,CA,90001 +288706,Flatscreen TV,1,300.0,2019-11-02 08:53:00,61 Hickory St, Seattle,WA,98101 +288707,Apple Airpods Headphones,1,150.0,2019-11-17 19:35:00,524 Maple St, Seattle,WA,98101 +288708,Apple Airpods Headphones,1,150.0,2019-11-20 00:05:00,468 Pine St, San Francisco,CA,94016 +288709,AAA Batteries (4-pack),2,2.99,2019-11-12 16:48:00,545 9th St, Los Angeles,CA,90001 +288710,Apple Airpods Headphones,1,150.0,2019-11-28 15:49:00,165 Sunset St, Seattle,WA,98101 +288711,AAA Batteries (4-pack),1,2.99,2019-11-02 21:27:00,332 Adams St, Los Angeles,CA,90001 +288712,27in FHD Monitor,1,149.99,2019-11-17 13:04:00,785 Forest St, New York City,NY,10001 +288713,iPhone,1,700.0,2019-11-28 12:53:00,470 10th St, Austin,TX,73301 +288713,Lightning Charging Cable,1,14.95,2019-11-28 12:53:00,470 10th St, Austin,TX,73301 +288714,AA Batteries (4-pack),1,3.84,2019-11-20 09:31:00,227 North St, San Francisco,CA,94016 +288715,Wired Headphones,1,11.99,2019-11-07 09:50:00,6 Pine St, Seattle,WA,98101 +288716,ThinkPad Laptop,1,999.99,2019-11-05 19:16:00,806 6th St, San Francisco,CA,94016 +288717,USB-C Charging Cable,1,11.95,2019-11-16 20:09:00,744 Washington St, Seattle,WA,98101 +288718,AAA Batteries (4-pack),1,2.99,2019-11-02 08:39:00,943 Jefferson St, Seattle,WA,98101 +288719,27in FHD Monitor,1,149.99,2019-11-15 00:27:00,50 Chestnut St, San Francisco,CA,94016 +288720,Wired Headphones,1,11.99,2019-11-02 13:10:00,819 8th St, Austin,TX,73301 +288721,Lightning Charging Cable,1,14.95,2019-11-24 23:24:00,805 1st St, Dallas,TX,75001 +288722,Lightning Charging Cable,2,14.95,2019-11-04 18:22:00,849 Forest St, San Francisco,CA,94016 +288723,Wired Headphones,1,11.99,2019-11-18 13:11:00,964 Chestnut St, Boston,MA,02215 +288724,27in FHD Monitor,1,149.99,2019-11-08 10:52:00,871 Madison St, Portland,OR,97035 +288725,Wired Headphones,1,11.99,2019-11-09 13:04:00,359 4th St, New York City,NY,10001 +288726,AAA Batteries (4-pack),1,2.99,2019-11-29 13:18:00,139 4th St, San Francisco,CA,94016 +288727,Google Phone,1,600.0,2019-11-21 07:59:00,806 Cedar St, Boston,MA,02215 +288728,AAA Batteries (4-pack),1,2.99,2019-11-18 22:42:00,30 Adams St, San Francisco,CA,94016 +288729,Apple Airpods Headphones,1,150.0,2019-11-16 07:12:00,65 Cherry St, Portland,OR,97035 +288730,Vareebadd Phone,1,400.0,2019-11-03 14:14:00,283 Madison St, New York City,NY,10001 +288731,27in FHD Monitor,1,149.99,2019-11-16 11:14:00,208 Highland St, New York City,NY,10001 +288732,iPhone,1,700.0,2019-11-13 11:46:00,902 Adams St, Boston,MA,02215 +288733,27in 4K Gaming Monitor,1,389.99,2019-11-28 12:31:00,338 5th St, New York City,NY,10001 +288734,Bose SoundSport Headphones,1,99.99,2019-11-17 18:42:00,622 Dogwood St, Seattle,WA,98101 +288735,AA Batteries (4-pack),1,3.84,2019-11-18 10:20:00,182 Washington St, New York City,NY,10001 +288736,27in FHD Monitor,1,149.99,2019-11-28 19:20:00,484 Jackson St, San Francisco,CA,94016 +288737,AAA Batteries (4-pack),1,2.99,2019-11-01 23:22:00,594 Cherry St, Boston,MA,02215 +288738,34in Ultrawide Monitor,1,379.99,2019-11-09 18:05:00,736 11th St, Atlanta,GA,30301 +288739,Lightning Charging Cable,1,14.95,2019-11-27 21:26:00,612 West St, Dallas,TX,75001 +288740,AA Batteries (4-pack),2,3.84,2019-11-28 12:32:00,66 Park St, New York City,NY,10001 +288741,Lightning Charging Cable,1,14.95,2019-11-21 20:40:00,390 South St, Boston,MA,02215 +288742,Wired Headphones,1,11.99,2019-11-02 13:25:00,919 Willow St, Atlanta,GA,30301 +288743,Apple Airpods Headphones,1,150.0,2019-11-11 17:50:00,174 12th St, Dallas,TX,75001 +288744,Wired Headphones,1,11.99,2019-11-27 12:04:00,727 9th St, Los Angeles,CA,90001 +288745,27in FHD Monitor,1,149.99,2019-11-16 23:59:00,215 South St, Los Angeles,CA,90001 +288746,AA Batteries (4-pack),1,3.84,2019-11-13 13:16:00,919 Elm St, Dallas,TX,75001 +288746,Lightning Charging Cable,2,14.95,2019-11-13 13:16:00,919 Elm St, Dallas,TX,75001 +288747,AA Batteries (4-pack),1,3.84,2019-11-28 06:49:00,142 Jackson St, Los Angeles,CA,90001 +288748,Macbook Pro Laptop,1,1700.0,2019-11-25 19:19:00,814 10th St, Dallas,TX,75001 +288749,Macbook Pro Laptop,1,1700.0,2019-11-18 23:01:00,338 Ridge St, Los Angeles,CA,90001 +288750,20in Monitor,1,109.99,2019-11-25 14:08:00,450 Sunset St, Dallas,TX,75001 +288751,Bose SoundSport Headphones,1,99.99,2019-11-01 14:45:00,31 2nd St, San Francisco,CA,94016 +288752,AAA Batteries (4-pack),1,2.99,2019-11-12 14:45:00,971 Jackson St, San Francisco,CA,94016 +288753,USB-C Charging Cable,1,11.95,2019-11-21 17:21:00,874 Cherry St, Atlanta,GA,30301 +288754,AAA Batteries (4-pack),1,2.99,2019-11-05 17:02:00,723 4th St, Seattle,WA,98101 +288755,USB-C Charging Cable,1,11.95,2019-11-15 11:57:00,960 14th St, Portland,OR,97035 +288756,27in 4K Gaming Monitor,1,389.99,2019-11-17 10:10:00,53 Dogwood St, Atlanta,GA,30301 +288757,AA Batteries (4-pack),1,3.84,2019-11-09 11:08:00,910 Madison St, Dallas,TX,75001 +288758,Apple Airpods Headphones,1,150.0,2019-11-27 14:12:00,883 Lincoln St, New York City,NY,10001 +288759,Bose SoundSport Headphones,1,99.99,2019-11-18 20:12:00,264 Park St, Portland,OR,97035 +288760,AAA Batteries (4-pack),2,2.99,2019-11-08 13:11:00,295 Cherry St, San Francisco,CA,94016 +288761,AA Batteries (4-pack),1,3.84,2019-11-23 20:21:00,771 Maple St, Los Angeles,CA,90001 +288762,Wired Headphones,1,11.99,2019-11-28 09:00:00,568 Lake St, Seattle,WA,98101 +288763,Bose SoundSport Headphones,1,99.99,2019-11-11 14:04:00,115 Chestnut St, Boston,MA,02215 +288764,AA Batteries (4-pack),1,3.84,2019-11-10 19:39:00,757 13th St, Seattle,WA,98101 +288765,Flatscreen TV,1,300.0,2019-11-11 13:16:00,346 Sunset St, San Francisco,CA,94016 +288766,Google Phone,1,600.0,2019-11-01 18:57:00,180 Sunset St, Los Angeles,CA,90001 +288767,34in Ultrawide Monitor,1,379.99,2019-11-29 21:30:00,47 Main St, Dallas,TX,75001 +288768,Lightning Charging Cable,1,14.95,2019-11-29 21:06:00,618 Meadow St, Austin,TX,73301 +288769,USB-C Charging Cable,1,11.95,2019-11-23 13:19:00,926 Dogwood St, Atlanta,GA,30301 +288770,Wired Headphones,1,11.99,2019-11-25 08:47:00,549 1st St, Boston,MA,02215 +288771,Macbook Pro Laptop,1,1700.0,2019-11-04 08:11:00,454 River St, Los Angeles,CA,90001 +288772,USB-C Charging Cable,1,11.95,2019-11-10 00:13:00,929 9th St, San Francisco,CA,94016 +288773,Wired Headphones,1,11.99,2019-11-07 16:25:00,662 Forest St, Los Angeles,CA,90001 +288774,Lightning Charging Cable,1,14.95,2019-11-01 15:00:00,85 5th St, San Francisco,CA,94016 +288775,Wired Headphones,1,11.99,2019-11-07 23:27:00,90 Center St, Los Angeles,CA,90001 +288776,Lightning Charging Cable,1,14.95,2019-11-12 22:17:00,164 River St, San Francisco,CA,94016 +288777,34in Ultrawide Monitor,1,379.99,2019-11-01 19:04:00,445 Lake St, New York City,NY,10001 +288778,Lightning Charging Cable,1,14.95,2019-11-26 09:37:00,66 Elm St, Los Angeles,CA,90001 +288779,27in 4K Gaming Monitor,1,389.99,2019-11-04 09:32:00,405 Jefferson St, San Francisco,CA,94016 +288780,Apple Airpods Headphones,1,150.0,2019-11-27 19:30:00,185 Spruce St, San Francisco,CA,94016 +288781,USB-C Charging Cable,1,11.95,2019-11-10 09:07:00,781 South St, New York City,NY,10001 +288782,Lightning Charging Cable,1,14.95,2019-11-11 21:25:00,103 12th St, Los Angeles,CA,90001 +288783,27in FHD Monitor,1,149.99,2019-11-17 15:51:00,321 Washington St, Atlanta,GA,30301 +288784,Lightning Charging Cable,1,14.95,2019-11-01 12:49:00,990 Forest St, Boston,MA,02215 +288785,ThinkPad Laptop,1,999.99,2019-11-24 20:20:00,797 Hickory St, San Francisco,CA,94016 +288786,AA Batteries (4-pack),1,3.84,2019-11-24 21:56:00,81 11th St, San Francisco,CA,94016 +288787,Lightning Charging Cable,1,14.95,2019-11-08 16:24:00,76 13th St, Dallas,TX,75001 +288788,34in Ultrawide Monitor,1,379.99,2019-11-15 17:26:00,643 5th St, San Francisco,CA,94016 +288789,AAA Batteries (4-pack),1,2.99,2019-11-13 14:14:00,721 Madison St, Boston,MA,02215 +288790,USB-C Charging Cable,1,11.95,2019-11-05 10:49:00,365 Willow St, Dallas,TX,75001 +288791,AAA Batteries (4-pack),3,2.99,2019-11-12 18:41:00,660 Cherry St, Austin,TX,73301 +288792,20in Monitor,1,109.99,2019-11-27 22:49:00,349 6th St, Portland,OR,97035 +288793,Lightning Charging Cable,1,14.95,2019-11-03 14:08:00,370 Spruce St, New York City,NY,10001 +288794,Lightning Charging Cable,1,14.95,2019-11-22 18:20:00,456 Willow St, Atlanta,GA,30301 +288795,Bose SoundSport Headphones,1,99.99,2019-11-01 08:54:00,702 Church St, Boston,MA,02215 +288796,Wired Headphones,1,11.99,2019-11-21 22:06:00,174 Chestnut St, Los Angeles,CA,90001 +288797,Wired Headphones,1,11.99,2019-11-15 17:07:00,46 Jackson St, Dallas,TX,75001 +288798,Bose SoundSport Headphones,1,99.99,2019-11-19 18:19:00,151 Johnson St, New York City,NY,10001 +288799,Lightning Charging Cable,1,14.95,2019-11-11 17:53:00,909 Walnut St, Boston,MA,02215 +288800,ThinkPad Laptop,1,999.99,2019-11-25 14:41:00,23 12th St, Los Angeles,CA,90001 +288801,Wired Headphones,1,11.99,2019-11-27 16:53:00,28 Cedar St, New York City,NY,10001 +288802,27in FHD Monitor,1,149.99,2019-11-07 19:02:00,205 Willow St, San Francisco,CA,94016 +288803,34in Ultrawide Monitor,1,379.99,2019-11-04 20:47:00,735 Ridge St, Boston,MA,02215 +288804,iPhone,1,700.0,2019-11-23 09:47:00,268 1st St, San Francisco,CA,94016 +288805,USB-C Charging Cable,1,11.95,2019-11-26 01:10:00,480 Jackson St, Dallas,TX,75001 +288806,Bose SoundSport Headphones,1,99.99,2019-11-18 16:07:00,48 Jackson St, Los Angeles,CA,90001 +288807,USB-C Charging Cable,1,11.95,2019-11-17 13:24:00,265 Lincoln St, San Francisco,CA,94016 +288808,Apple Airpods Headphones,1,150.0,2019-11-02 10:35:00,132 Dogwood St, San Francisco,CA,94016 +288809,Apple Airpods Headphones,1,150.0,2019-11-08 11:50:00,837 Maple St, Los Angeles,CA,90001 +288809,Macbook Pro Laptop,1,1700.0,2019-11-08 11:50:00,837 Maple St, Los Angeles,CA,90001 +288810,Lightning Charging Cable,1,14.95,2019-11-17 19:52:00,722 Sunset St, Portland,OR,97035 +288811,USB-C Charging Cable,1,11.95,2019-11-23 13:48:00,729 Cedar St, Atlanta,GA,30301 +288812,Apple Airpods Headphones,1,150.0,2019-11-09 23:16:00,655 Wilson St, San Francisco,CA,94016 +288813,Bose SoundSport Headphones,1,99.99,2019-11-20 18:56:00,521 West St, Austin,TX,73301 +288814,Apple Airpods Headphones,1,150.0,2019-11-10 13:19:00,975 13th St, Atlanta,GA,30301 +288815,Lightning Charging Cable,2,14.95,2019-11-08 14:51:00,76 4th St, Los Angeles,CA,90001 +288816,Wired Headphones,1,11.99,2019-11-03 23:24:00,191 Sunset St, Dallas,TX,75001 +288817,USB-C Charging Cable,1,11.95,2019-11-27 12:47:00,685 Hill St, New York City,NY,10001 +288818,Google Phone,1,600.0,2019-11-22 05:02:00,16 Chestnut St, New York City,NY,10001 +288818,Bose SoundSport Headphones,1,99.99,2019-11-22 05:02:00,16 Chestnut St, New York City,NY,10001 +288819,AA Batteries (4-pack),2,3.84,2019-11-27 07:53:00,894 Church St, New York City,NY,10001 +288820,AA Batteries (4-pack),1,3.84,2019-11-11 16:26:00,356 Hickory St, Los Angeles,CA,90001 +288821,Lightning Charging Cable,1,14.95,2019-11-02 08:24:00,866 11th St, San Francisco,CA,94016 +288822,AA Batteries (4-pack),1,3.84,2019-11-20 09:12:00,138 Dogwood St, Boston,MA,02215 +288823,Google Phone,1,600.0,2019-11-28 23:34:00,31 North St, New York City,NY,10001 +288823,USB-C Charging Cable,2,11.95,2019-11-28 23:34:00,31 North St, New York City,NY,10001 +288824,27in 4K Gaming Monitor,1,389.99,2019-12-01 00:16:00,865 Jackson St, Atlanta,GA,30301 +288825,AA Batteries (4-pack),1,3.84,2019-11-28 18:25:00,317 Hickory St, Atlanta,GA,30301 +288826,AA Batteries (4-pack),1,3.84,2019-11-24 00:43:00,688 Lakeview St, Austin,TX,73301 +288827,Bose SoundSport Headphones,1,99.99,2019-11-07 11:27:00,942 Park St, Seattle,WA,98101 +288828,Lightning Charging Cable,2,14.95,2019-11-28 12:32:00,150 Center St, Los Angeles,CA,90001 +288829,Flatscreen TV,1,300.0,2019-11-27 21:22:00,186 7th St, Austin,TX,73301 +288830,USB-C Charging Cable,1,11.95,2019-11-20 08:37:00,159 Meadow St, Boston,MA,02215 +288831,34in Ultrawide Monitor,1,379.99,2019-11-05 14:01:00,378 7th St, Boston,MA,02215 +288832,Apple Airpods Headphones,1,150.0,2019-11-08 19:56:00,111 12th St, Boston,MA,02215 +288833,AA Batteries (4-pack),1,3.84,2019-11-15 05:05:00,354 Johnson St, San Francisco,CA,94016 +288834,Bose SoundSport Headphones,1,99.99,2019-11-05 21:35:00,513 Cherry St, Austin,TX,73301 +288835,AAA Batteries (4-pack),1,2.99,2019-11-24 12:24:00,144 Center St, Atlanta,GA,30301 +288836,Wired Headphones,1,11.99,2019-11-09 18:55:00,365 2nd St, San Francisco,CA,94016 +288837,Lightning Charging Cable,1,14.95,2019-11-03 21:24:00,222 Johnson St, New York City,NY,10001 +288838,Bose SoundSport Headphones,1,99.99,2019-11-28 11:59:00,632 Jefferson St, Los Angeles,CA,90001 +288839,USB-C Charging Cable,1,11.95,2019-11-04 19:48:00,484 Wilson St, New York City,NY,10001 +288840,Macbook Pro Laptop,1,1700.0,2019-11-06 11:27:00,162 Lincoln St, San Francisco,CA,94016 +288841,AAA Batteries (4-pack),2,2.99,2019-11-08 13:26:00,106 Cherry St, Los Angeles,CA,90001 +288842,iPhone,1,700.0,2019-11-06 11:53:00,655 Pine St, Los Angeles,CA,90001 +288842,Apple Airpods Headphones,1,150.0,2019-11-06 11:53:00,655 Pine St, Los Angeles,CA,90001 +288843,34in Ultrawide Monitor,1,379.99,2019-11-08 09:30:00,737 Lincoln St, New York City,NY,10001 +288844,Macbook Pro Laptop,1,1700.0,2019-11-11 11:08:00,981 Hickory St, Boston,MA,02215 +288845,Lightning Charging Cable,1,14.95,2019-11-06 10:24:00,868 Walnut St, New York City,NY,10001 +288846,AAA Batteries (4-pack),2,2.99,2019-11-02 17:23:00,590 Chestnut St, Los Angeles,CA,90001 +288847,27in 4K Gaming Monitor,1,389.99,2019-11-23 12:08:00,5 Willow St, San Francisco,CA,94016 +288848,Macbook Pro Laptop,1,1700.0,2019-11-16 18:27:00,869 13th St, Atlanta,GA,30301 +288849,Lightning Charging Cable,2,14.95,2019-11-04 19:25:00,685 Hill St, Boston,MA,02215 +288849,Vareebadd Phone,1,400.0,2019-11-04 19:25:00,685 Hill St, Boston,MA,02215 +288850,Apple Airpods Headphones,1,150.0,2019-11-19 09:46:00,619 Park St, New York City,NY,10001 +288851,Lightning Charging Cable,1,14.95,2019-11-02 18:32:00,601 Maple St, Los Angeles,CA,90001 +288852,Wired Headphones,2,11.99,2019-11-15 12:11:00,996 13th St, Dallas,TX,75001 +288853,34in Ultrawide Monitor,1,379.99,2019-11-24 17:53:00,924 Spruce St, Boston,MA,02215 +288854,AAA Batteries (4-pack),2,2.99,2019-11-30 10:05:00,597 13th St, Dallas,TX,75001 +288855,27in FHD Monitor,1,149.99,2019-11-06 03:02:00,309 Walnut St, Boston,MA,02215 +288856,27in 4K Gaming Monitor,1,389.99,2019-11-30 21:48:00,796 Elm St, Austin,TX,73301 +288857,Google Phone,1,600.0,2019-11-26 11:56:00,863 Meadow St, Atlanta,GA,30301 +288857,Wired Headphones,1,11.99,2019-11-26 11:56:00,863 Meadow St, Atlanta,GA,30301 +288858,USB-C Charging Cable,1,11.95,2019-11-17 13:13:00,409 Walnut St, Atlanta,GA,30301 +288859,AAA Batteries (4-pack),5,2.99,2019-11-26 21:28:00,796 Center St, San Francisco,CA,94016 +288860,AAA Batteries (4-pack),2,2.99,2019-11-04 18:36:00,174 Spruce St, Dallas,TX,75001 +288861,iPhone,1,700.0,2019-11-12 10:20:00,419 Adams St, Boston,MA,02215 +288862,ThinkPad Laptop,1,999.99,2019-11-27 08:58:00,9 Ridge St, Boston,MA,02215 +288863,Wired Headphones,1,11.99,2019-11-16 01:47:00,271 4th St, San Francisco,CA,94016 +288864,USB-C Charging Cable,1,11.95,2019-11-19 11:16:00,949 10th St, Seattle,WA,98101 +288865,Apple Airpods Headphones,1,150.0,2019-11-10 13:31:00,633 Madison St, Seattle,WA,98101 +288866,Apple Airpods Headphones,1,150.0,2019-11-17 21:07:00,874 Willow St, New York City,NY,10001 +288867,USB-C Charging Cable,1,11.95,2019-11-26 22:59:00,696 Dogwood St, Seattle,WA,98101 +288868,Vareebadd Phone,1,400.0,2019-11-23 21:35:00,99 Willow St, San Francisco,CA,94016 +288869,20in Monitor,1,109.99,2019-11-24 18:05:00,724 Hill St, Atlanta,GA,30301 +288870,Apple Airpods Headphones,1,150.0,2019-11-15 17:36:00,229 Willow St, Portland,OR,97035 +288870,iPhone,1,700.0,2019-11-15 17:36:00,229 Willow St, Portland,OR,97035 +288871,USB-C Charging Cable,1,11.95,2019-11-14 12:29:00,98 South St, Portland,OR,97035 +288872,Lightning Charging Cable,1,14.95,2019-11-07 20:58:00,179 Park St, Atlanta,GA,30301 +288873,AAA Batteries (4-pack),1,2.99,2019-11-25 19:06:00,205 Spruce St, San Francisco,CA,94016 +288874,AAA Batteries (4-pack),1,2.99,2019-11-20 15:57:00,180 Madison St, Dallas,TX,75001 +288875,USB-C Charging Cable,1,11.95,2019-11-13 22:19:00,185 Main St, New York City,NY,10001 +288876,Lightning Charging Cable,2,14.95,2019-11-14 21:54:00,615 11th St, Boston,MA,02215 +288877,AAA Batteries (4-pack),2,2.99,2019-11-17 16:16:00,345 Walnut St, San Francisco,CA,94016 +288878,USB-C Charging Cable,1,11.95,2019-11-28 11:37:00,283 West St, New York City,NY,10001 +288879,AA Batteries (4-pack),1,3.84,2019-11-01 20:08:00,50 Sunset St, Seattle,WA,98101 +288880,AA Batteries (4-pack),1,3.84,2019-11-30 14:46:00,786 Dogwood St, Los Angeles,CA,90001 +288881,27in FHD Monitor,1,149.99,2019-11-05 08:01:00,518 Willow St, Austin,TX,73301 +288882,Apple Airpods Headphones,1,150.0,2019-11-28 11:30:00,135 Hickory St, New York City,NY,10001 +288883,27in FHD Monitor,1,149.99,2019-11-17 20:18:00,335 Jefferson St, San Francisco,CA,94016 +288884,Bose SoundSport Headphones,1,99.99,2019-11-10 20:26:00,713 2nd St, San Francisco,CA,94016 +288884,iPhone,1,700.0,2019-11-10 20:26:00,713 2nd St, San Francisco,CA,94016 +288885,Wired Headphones,1,11.99,2019-11-22 09:57:00,797 Ridge St, Atlanta,GA,30301 +288886,AA Batteries (4-pack),1,3.84,2019-11-25 11:14:00,948 7th St, New York City,NY,10001 +288887,27in FHD Monitor,1,149.99,2019-11-03 12:21:00,731 13th St, Boston,MA,02215 +288888,Wired Headphones,1,11.99,2019-11-17 14:13:00,318 Madison St, Los Angeles,CA,90001 +288889,AAA Batteries (4-pack),1,2.99,2019-11-19 12:57:00,512 Lakeview St, Boston,MA,02215 +288890,27in FHD Monitor,1,149.99,2019-11-18 18:07:00,308 Pine St, Portland,ME,04101 +288891,AAA Batteries (4-pack),1,2.99,2019-11-19 19:13:00,269 Maple St, Seattle,WA,98101 +288892,27in FHD Monitor,1,149.99,2019-11-10 07:54:00,684 Center St, Los Angeles,CA,90001 +288893,Wired Headphones,1,11.99,2019-11-13 11:30:00,945 Main St, Los Angeles,CA,90001 +288893,34in Ultrawide Monitor,1,379.99,2019-11-13 11:30:00,945 Main St, Los Angeles,CA,90001 +288894,Google Phone,1,600.0,2019-11-17 14:53:00,447 Wilson St, New York City,NY,10001 +288895,USB-C Charging Cable,1,11.95,2019-11-28 19:09:00,790 Washington St, New York City,NY,10001 +288896,Lightning Charging Cable,1,14.95,2019-11-29 14:05:00,414 Park St, New York City,NY,10001 +288897,AA Batteries (4-pack),2,3.84,2019-11-22 19:10:00,761 Sunset St, Boston,MA,02215 +288898,AA Batteries (4-pack),1,3.84,2019-11-03 20:49:00,819 Hill St, Boston,MA,02215 +288899,Apple Airpods Headphones,1,150.0,2019-11-25 13:53:00,758 South St, San Francisco,CA,94016 +288900,AA Batteries (4-pack),1,3.84,2019-11-28 18:46:00,172 Elm St, San Francisco,CA,94016 +288901,Google Phone,1,600.0,2019-11-29 06:40:00,902 Pine St, San Francisco,CA,94016 +288902,AAA Batteries (4-pack),1,2.99,2019-11-07 09:32:00,650 13th St, San Francisco,CA,94016 +288903,LG Washing Machine,1,600.0,2019-11-06 12:14:00,630 13th St, San Francisco,CA,94016 +288904,AAA Batteries (4-pack),2,2.99,2019-11-08 09:54:00,915 Hill St, Boston,MA,02215 +288905,27in FHD Monitor,1,149.99,2019-11-18 16:46:00,25 Wilson St, New York City,NY,10001 +288906,Apple Airpods Headphones,1,150.0,2019-11-28 16:54:00,879 Elm St, New York City,NY,10001 +288907,Wired Headphones,1,11.99,2019-11-09 22:34:00,546 Park St, Atlanta,GA,30301 +288908,Apple Airpods Headphones,1,150.0,2019-11-03 15:40:00,516 Forest St, Seattle,WA,98101 +288909,34in Ultrawide Monitor,1,379.99,2019-11-04 22:13:00,335 Jackson St, Atlanta,GA,30301 +288910,27in 4K Gaming Monitor,1,389.99,2019-11-09 23:30:00,318 Hill St, San Francisco,CA,94016 +288911,AAA Batteries (4-pack),1,2.99,2019-11-23 14:37:00,876 Meadow St, New York City,NY,10001 +288912,27in 4K Gaming Monitor,1,389.99,2019-11-23 23:35:00,229 13th St, Atlanta,GA,30301 +288913,27in 4K Gaming Monitor,1,389.99,2019-11-05 13:06:00,370 12th St, Los Angeles,CA,90001 +288914,Bose SoundSport Headphones,1,99.99,2019-11-28 10:28:00,249 Willow St, Dallas,TX,75001 +288915,Apple Airpods Headphones,1,150.0,2019-11-06 18:34:00,623 Hickory St, New York City,NY,10001 +288916,Apple Airpods Headphones,1,150.0,2019-11-30 15:14:00,828 Walnut St, San Francisco,CA,94016 +288917,Lightning Charging Cable,1,14.95,2019-11-17 07:07:00,520 10th St, Dallas,TX,75001 +288918,USB-C Charging Cable,1,11.95,2019-11-02 19:56:00,993 Spruce St, Los Angeles,CA,90001 +288919,Lightning Charging Cable,1,14.95,2019-11-11 22:26:00,903 Cedar St, Boston,MA,02215 +288920,20in Monitor,1,109.99,2019-11-28 20:10:00,112 Walnut St, Atlanta,GA,30301 +288921,Macbook Pro Laptop,1,1700.0,2019-11-09 15:33:00,865 Jackson St, Los Angeles,CA,90001 +288922,AAA Batteries (4-pack),2,2.99,2019-11-01 17:35:00,489 Walnut St, San Francisco,CA,94016 +288923,AAA Batteries (4-pack),1,2.99,2019-11-10 07:53:00,210 South St, San Francisco,CA,94016 +288924,ThinkPad Laptop,1,999.99,2019-11-15 20:58:00,68 Johnson St, Dallas,TX,75001 +288925,USB-C Charging Cable,1,11.95,2019-11-12 08:32:00,956 Cherry St, Dallas,TX,75001 +288926,AAA Batteries (4-pack),2,2.99,2019-11-10 14:48:00,450 2nd St, San Francisco,CA,94016 +288927,27in FHD Monitor,1,149.99,2019-11-23 18:10:00,802 West St, Boston,MA,02215 +288928,Lightning Charging Cable,2,14.95,2019-11-11 16:20:00,138 Pine St, Austin,TX,73301 +288929,AAA Batteries (4-pack),2,2.99,2019-11-15 19:42:00,999 6th St, New York City,NY,10001 +288930,AA Batteries (4-pack),1,3.84,2019-11-14 21:46:00,196 North St, Boston,MA,02215 +288931,Wired Headphones,1,11.99,2019-11-03 14:49:00,859 Dogwood St, Los Angeles,CA,90001 +288932,AAA Batteries (4-pack),1,2.99,2019-11-16 08:59:00,475 7th St, San Francisco,CA,94016 +288933,AAA Batteries (4-pack),1,2.99,2019-11-24 20:51:00,105 7th St, Austin,TX,73301 +288934,20in Monitor,1,109.99,2019-11-15 08:44:00,814 South St, Dallas,TX,75001 +288935,AA Batteries (4-pack),1,3.84,2019-11-13 18:12:00,813 6th St, Atlanta,GA,30301 +288936,AA Batteries (4-pack),2,3.84,2019-11-26 22:24:00,481 14th St, San Francisco,CA,94016 +288937,Lightning Charging Cable,1,14.95,2019-11-19 21:55:00,770 Forest St, Los Angeles,CA,90001 +288938,Apple Airpods Headphones,1,150.0,2019-11-23 16:47:00,281 6th St, New York City,NY,10001 +288939,Wired Headphones,1,11.99,2019-11-15 07:57:00,823 Lincoln St, San Francisco,CA,94016 +288940,20in Monitor,1,109.99,2019-11-05 09:00:00,308 Chestnut St, San Francisco,CA,94016 +288941,AAA Batteries (4-pack),3,2.99,2019-11-09 19:20:00,293 Park St, New York City,NY,10001 +288942,Flatscreen TV,1,300.0,2019-11-07 11:22:00,440 Willow St, Los Angeles,CA,90001 +288943,Apple Airpods Headphones,1,150.0,2019-11-26 22:09:00,963 Lakeview St, Atlanta,GA,30301 +288944,20in Monitor,1,109.99,2019-11-26 21:09:00,386 Cedar St, Austin,TX,73301 +288945,USB-C Charging Cable,1,11.95,2019-11-09 20:13:00,193 Lakeview St, San Francisco,CA,94016 +288946,34in Ultrawide Monitor,1,379.99,2019-11-18 21:36:00,539 Johnson St, Atlanta,GA,30301 +288947,Wired Headphones,1,11.99,2019-11-02 09:06:00,256 8th St, Dallas,TX,75001 +288948,Wired Headphones,1,11.99,2019-11-22 23:39:00,519 5th St, Portland,OR,97035 +288948,Flatscreen TV,1,300.0,2019-11-22 23:39:00,519 5th St, Portland,OR,97035 +288949,34in Ultrawide Monitor,1,379.99,2019-11-26 15:47:00,279 Pine St, Boston,MA,02215 +288950,Lightning Charging Cable,1,14.95,2019-11-19 14:27:00,237 Lakeview St, New York City,NY,10001 +288951,Bose SoundSport Headphones,1,99.99,2019-11-08 22:58:00,387 Washington St, New York City,NY,10001 +288952,AA Batteries (4-pack),2,3.84,2019-11-20 00:51:00,443 7th St, Los Angeles,CA,90001 +288953,Wired Headphones,1,11.99,2019-11-06 14:18:00,893 Forest St, New York City,NY,10001 +288954,Lightning Charging Cable,3,14.95,2019-11-02 13:38:00,820 Church St, Boston,MA,02215 +288955,AAA Batteries (4-pack),2,2.99,2019-11-12 20:11:00,794 Pine St, Portland,OR,97035 +288956,ThinkPad Laptop,1,999.99,2019-11-20 20:32:00,666 Cherry St, Atlanta,GA,30301 +288957,AA Batteries (4-pack),1,3.84,2019-11-22 07:53:00,396 5th St, San Francisco,CA,94016 +288958,USB-C Charging Cable,1,11.95,2019-11-21 23:08:00,589 Center St, Dallas,TX,75001 +288959,USB-C Charging Cable,1,11.95,2019-11-13 14:07:00,709 Johnson St, New York City,NY,10001 +288960,Wired Headphones,1,11.99,2019-11-24 11:06:00,295 Ridge St, New York City,NY,10001 +288961,Apple Airpods Headphones,1,150.0,2019-11-02 17:52:00,208 Spruce St, New York City,NY,10001 +288962,Lightning Charging Cable,1,14.95,2019-11-11 05:55:00,845 Cherry St, Seattle,WA,98101 +288963,Bose SoundSport Headphones,1,99.99,2019-11-23 10:51:00,789 Wilson St, Austin,TX,73301 +288964,Apple Airpods Headphones,1,150.0,2019-11-08 20:00:00,569 13th St, San Francisco,CA,94016 +288965,Google Phone,1,600.0,2019-11-11 23:44:00,606 11th St, Los Angeles,CA,90001 +288966,27in FHD Monitor,1,149.99,2019-11-25 11:58:00,490 4th St, San Francisco,CA,94016 +288966,USB-C Charging Cable,1,11.95,2019-11-25 11:58:00,490 4th St, San Francisco,CA,94016 +288967,Apple Airpods Headphones,1,150.0,2019-11-13 11:16:00,226 1st St, San Francisco,CA,94016 +288968,Wired Headphones,1,11.99,2019-11-06 23:22:00,106 4th St, Los Angeles,CA,90001 +288969,AA Batteries (4-pack),1,3.84,2019-11-29 09:13:00,143 Hill St, San Francisco,CA,94016 +288970,Vareebadd Phone,1,400.0,2019-11-04 19:16:00,860 Main St, Portland,OR,97035 +288970,USB-C Charging Cable,1,11.95,2019-11-04 19:16:00,860 Main St, Portland,OR,97035 +288971,27in FHD Monitor,1,149.99,2019-11-08 18:01:00,900 11th St, Boston,MA,02215 +288972,USB-C Charging Cable,1,11.95,2019-11-06 08:58:00,867 6th St, San Francisco,CA,94016 +288973,Lightning Charging Cable,1,14.95,2019-11-05 09:46:00,104 6th St, San Francisco,CA,94016 +288974,Google Phone,1,600.0,2019-11-21 11:43:00,530 Main St, San Francisco,CA,94016 +288974,USB-C Charging Cable,1,11.95,2019-11-21 11:43:00,530 Main St, San Francisco,CA,94016 +288974,Wired Headphones,1,11.99,2019-11-21 11:43:00,530 Main St, San Francisco,CA,94016 +288975,Bose SoundSport Headphones,1,99.99,2019-11-07 10:38:00,715 2nd St, Portland,ME,04101 +288976,Lightning Charging Cable,1,14.95,2019-11-22 14:09:00,499 Meadow St, New York City,NY,10001 +288977,ThinkPad Laptop,1,999.99,2019-11-29 18:21:00,814 10th St, Boston,MA,02215 +288978,20in Monitor,1,109.99,2019-11-11 21:12:00,546 Forest St, San Francisco,CA,94016 +288979,Google Phone,1,600.0,2019-11-07 10:03:00,803 Washington St, Los Angeles,CA,90001 +288980,Bose SoundSport Headphones,1,99.99,2019-11-24 17:54:00,56 Lincoln St, San Francisco,CA,94016 +288981,Wired Headphones,1,11.99,2019-11-14 09:29:00,158 Johnson St, Boston,MA,02215 +288982,Flatscreen TV,1,300.0,2019-11-20 13:53:00,170 Highland St, Austin,TX,73301 +288983,Apple Airpods Headphones,1,150.0,2019-11-15 13:30:00,64 Main St, Los Angeles,CA,90001 +288984,Macbook Pro Laptop,1,1700.0,2019-11-07 13:10:00,907 Jefferson St, Boston,MA,02215 +288985,AAA Batteries (4-pack),1,2.99,2019-11-15 18:30:00,104 Cedar St, San Francisco,CA,94016 +288986,Google Phone,1,600.0,2019-11-29 17:23:00,735 9th St, Atlanta,GA,30301 +288987,Bose SoundSport Headphones,1,99.99,2019-11-19 23:26:00,46 Johnson St, San Francisco,CA,94016 +288988,Flatscreen TV,1,300.0,2019-11-26 19:14:00,465 Lakeview St, San Francisco,CA,94016 +288989,Lightning Charging Cable,1,14.95,2019-11-07 23:31:00,964 Center St, Austin,TX,73301 +288990,Lightning Charging Cable,1,14.95,2019-11-28 09:05:00,511 Park St, Los Angeles,CA,90001 +288991,Apple Airpods Headphones,1,150.0,2019-11-17 10:56:00,514 Johnson St, San Francisco,CA,94016 +288992,Lightning Charging Cable,1,14.95,2019-11-02 13:38:00,434 North St, Portland,OR,97035 +288993,Bose SoundSport Headphones,1,99.99,2019-11-18 12:57:00,477 12th St, Los Angeles,CA,90001 +288994,AA Batteries (4-pack),3,3.84,2019-11-22 12:09:00,642 Jackson St, Boston,MA,02215 +288995,Wired Headphones,1,11.99,2019-11-04 23:58:00,552 Lincoln St, Portland,OR,97035 +288996,AA Batteries (4-pack),1,3.84,2019-11-04 14:23:00,342 Madison St, Austin,TX,73301 +288997,27in FHD Monitor,1,149.99,2019-11-23 08:40:00,900 1st St, San Francisco,CA,94016 +288998,iPhone,1,700.0,2019-11-23 11:52:00,426 Jefferson St, Los Angeles,CA,90001 +288999,Lightning Charging Cable,1,14.95,2019-11-16 15:12:00,677 Cherry St, San Francisco,CA,94016 +289000,Bose SoundSport Headphones,1,99.99,2019-11-15 23:08:00,445 Lake St, New York City,NY,10001 +289001,34in Ultrawide Monitor,1,379.99,2019-11-06 13:57:00,568 South St, New York City,NY,10001 +289002,AA Batteries (4-pack),1,3.84,2019-11-19 21:20:00,342 Hickory St, San Francisco,CA,94016 +289003,Google Phone,1,600.0,2019-11-22 12:17:00,160 Pine St, San Francisco,CA,94016 +289004,AA Batteries (4-pack),1,3.84,2019-11-25 13:37:00,543 11th St, San Francisco,CA,94016 +289005,AAA Batteries (4-pack),2,2.99,2019-11-08 22:13:00,736 4th St, San Francisco,CA,94016 +289006,Apple Airpods Headphones,1,150.0,2019-11-18 16:07:00,665 Chestnut St, Los Angeles,CA,90001 +289007,Lightning Charging Cable,1,14.95,2019-11-03 12:37:00,239 Johnson St, San Francisco,CA,94016 +289008,AA Batteries (4-pack),1,3.84,2019-11-19 11:52:00,18 Dogwood St, Boston,MA,02215 +289009,Apple Airpods Headphones,1,150.0,2019-11-19 09:40:00,494 River St, New York City,NY,10001 +289010,Vareebadd Phone,1,400.0,2019-11-14 01:16:00,657 Forest St, Boston,MA,02215 +289011,USB-C Charging Cable,1,11.95,2019-11-22 14:03:00,443 9th St, San Francisco,CA,94016 +289012,Wired Headphones,1,11.99,2019-11-09 11:22:00,302 Adams St, Austin,TX,73301 +289013,Wired Headphones,1,11.99,2019-11-22 00:41:00,25 14th St, Los Angeles,CA,90001 +289014,AAA Batteries (4-pack),1,2.99,2019-11-07 17:34:00,588 Meadow St, New York City,NY,10001 +289015,USB-C Charging Cable,1,11.95,2019-11-29 09:10:00,929 7th St, New York City,NY,10001 +289016,AAA Batteries (4-pack),2,2.99,2019-11-08 23:53:00,856 Park St, Los Angeles,CA,90001 +289017,Lightning Charging Cable,1,14.95,2019-11-17 12:40:00,940 River St, New York City,NY,10001 +289017,Apple Airpods Headphones,1,150.0,2019-11-17 12:40:00,940 River St, New York City,NY,10001 +289018,USB-C Charging Cable,1,11.95,2019-11-15 21:06:00,145 River St, Boston,MA,02215 +289019,USB-C Charging Cable,1,11.95,2019-11-23 18:14:00,600 South St, Los Angeles,CA,90001 +289020,Apple Airpods Headphones,1,150.0,2019-11-22 20:26:00,522 Madison St, Portland,OR,97035 +289021,Macbook Pro Laptop,1,1700.0,2019-11-27 11:52:00,342 4th St, Seattle,WA,98101 +289022,34in Ultrawide Monitor,1,379.99,2019-11-28 08:48:00,31 Meadow St, Los Angeles,CA,90001 +289023,Wired Headphones,1,11.99,2019-11-29 06:42:00,724 Maple St, Seattle,WA,98101 +289024,AAA Batteries (4-pack),1,2.99,2019-11-24 10:27:00,490 9th St, Boston,MA,02215 +289025,Apple Airpods Headphones,1,150.0,2019-11-18 17:18:00,201 Spruce St, Boston,MA,02215 +289026,Wired Headphones,1,11.99,2019-11-18 19:22:00,551 Lakeview St, Dallas,TX,75001 +289027,Wired Headphones,1,11.99,2019-11-05 01:21:00,140 Pine St, San Francisco,CA,94016 +289028,LG Washing Machine,1,600.0,2019-11-05 13:29:00,839 Jefferson St, Seattle,WA,98101 +289029,AAA Batteries (4-pack),1,2.99,2019-11-28 21:13:00,321 1st St, Seattle,WA,98101 +289030,Google Phone,1,600.0,2019-11-11 17:10:00,208 14th St, Atlanta,GA,30301 +289030,Bose SoundSport Headphones,1,99.99,2019-11-11 17:10:00,208 14th St, Atlanta,GA,30301 +289030,Wired Headphones,1,11.99,2019-11-11 17:10:00,208 14th St, Atlanta,GA,30301 +289031,Lightning Charging Cable,1,14.95,2019-11-26 20:32:00,524 8th St, Portland,OR,97035 +289032,USB-C Charging Cable,1,11.95,2019-11-02 16:46:00,685 Spruce St, San Francisco,CA,94016 +289033,AAA Batteries (4-pack),1,2.99,2019-11-18 20:29:00,534 8th St, San Francisco,CA,94016 +289034,AAA Batteries (4-pack),1,2.99,2019-11-18 17:34:00,211 Elm St, San Francisco,CA,94016 +289035,27in 4K Gaming Monitor,1,389.99,2019-11-28 17:39:00,307 Adams St, Los Angeles,CA,90001 +289036,Lightning Charging Cable,1,14.95,2019-11-26 11:57:00,129 9th St, Dallas,TX,75001 +289037,LG Dryer,1,600.0,2019-11-17 15:25:00,65 4th St, New York City,NY,10001 +289038,Wired Headphones,1,11.99,2019-11-25 21:21:00,254 Spruce St, San Francisco,CA,94016 +289039,Apple Airpods Headphones,1,150.0,2019-11-14 00:19:00,556 River St, New York City,NY,10001 +289040,Lightning Charging Cable,1,14.95,2019-11-11 10:28:00,161 Washington St, Atlanta,GA,30301 +289041,27in 4K Gaming Monitor,1,389.99,2019-11-14 22:58:00,927 Wilson St, Atlanta,GA,30301 +289042,USB-C Charging Cable,1,11.95,2019-11-10 07:02:00,823 Adams St, Atlanta,GA,30301 +289043,Lightning Charging Cable,1,14.95,2019-11-22 09:26:00,293 8th St, New York City,NY,10001 +289044,AA Batteries (4-pack),1,3.84,2019-11-24 11:18:00,5 River St, Seattle,WA,98101 +289045,Flatscreen TV,1,300.0,2019-11-27 15:01:00,387 Highland St, Boston,MA,02215 +289046,Bose SoundSport Headphones,1,99.99,2019-11-27 10:52:00,926 North St, San Francisco,CA,94016 +289047,Lightning Charging Cable,1,14.95,2019-11-22 20:14:00,821 9th St, San Francisco,CA,94016 +289048,Apple Airpods Headphones,1,150.0,2019-11-25 18:52:00,56 8th St, Portland,OR,97035 +289049,AA Batteries (4-pack),1,3.84,2019-11-24 23:50:00,627 11th St, Los Angeles,CA,90001 +289049,34in Ultrawide Monitor,1,379.99,2019-11-24 23:50:00,627 11th St, Los Angeles,CA,90001 +289050,AA Batteries (4-pack),2,3.84,2019-11-21 07:42:00,411 Washington St, New York City,NY,10001 +289051,Wired Headphones,2,11.99,2019-11-01 15:46:00,891 Ridge St, Boston,MA,02215 +289052,Macbook Pro Laptop,1,1700.0,2019-11-01 12:05:00,721 Hill St, Boston,MA,02215 +289053,ThinkPad Laptop,1,999.99,2019-11-29 15:47:00,886 West St, San Francisco,CA,94016 +289054,USB-C Charging Cable,1,11.95,2019-11-08 15:03:00,861 5th St, Dallas,TX,75001 +289055,Vareebadd Phone,1,400.0,2019-11-29 18:34:00,435 Adams St, Dallas,TX,75001 +289055,USB-C Charging Cable,1,11.95,2019-11-29 18:34:00,435 Adams St, Dallas,TX,75001 +289056,AAA Batteries (4-pack),2,2.99,2019-11-06 16:26:00,519 Cherry St, Atlanta,GA,30301 +289057,USB-C Charging Cable,1,11.95,2019-11-20 12:14:00,545 14th St, Los Angeles,CA,90001 +289058,Apple Airpods Headphones,1,150.0,2019-11-22 22:44:00,218 8th St, San Francisco,CA,94016 +289059,Apple Airpods Headphones,1,150.0,2019-11-05 22:05:00,597 Adams St, Dallas,TX,75001 +289060,20in Monitor,1,109.99,2019-11-04 10:18:00,977 Jefferson St, New York City,NY,10001 +289061,AAA Batteries (4-pack),1,2.99,2019-11-12 21:26:00,735 Spruce St, Los Angeles,CA,90001 +289062,34in Ultrawide Monitor,1,379.99,2019-11-23 09:17:00,255 6th St, Seattle,WA,98101 +289063,Apple Airpods Headphones,1,150.0,2019-11-06 17:41:00,639 Sunset St, San Francisco,CA,94016 +289064,Lightning Charging Cable,1,14.95,2019-11-13 17:45:00,407 Highland St, New York City,NY,10001 +289065,Wired Headphones,1,11.99,2019-11-16 05:23:00,453 West St, Los Angeles,CA,90001 +289066,Bose SoundSport Headphones,1,99.99,2019-11-20 14:55:00,277 1st St, Dallas,TX,75001 +289067,Apple Airpods Headphones,1,150.0,2019-11-09 11:49:00,936 6th St, Seattle,WA,98101 +289068,27in FHD Monitor,1,149.99,2019-11-06 07:00:00,770 Center St, Seattle,WA,98101 +289069,Lightning Charging Cable,1,14.95,2019-11-15 11:36:00,640 Hill St, San Francisco,CA,94016 +289070,Bose SoundSport Headphones,1,99.99,2019-11-13 09:37:00,74 12th St, Los Angeles,CA,90001 +289070,Apple Airpods Headphones,1,150.0,2019-11-13 09:37:00,74 12th St, Los Angeles,CA,90001 +289071,Lightning Charging Cable,2,14.95,2019-11-28 15:31:00,835 Highland St, Portland,OR,97035 +289072,Wired Headphones,1,11.99,2019-11-30 01:18:00,716 Main St, San Francisco,CA,94016 +289073,AAA Batteries (4-pack),1,2.99,2019-11-24 02:19:00,403 Cedar St, Seattle,WA,98101 +289074,Flatscreen TV,1,300.0,2019-11-10 15:44:00,510 8th St, San Francisco,CA,94016 +289075,AA Batteries (4-pack),3,3.84,2019-11-26 18:56:00,301 4th St, Dallas,TX,75001 +289076,AA Batteries (4-pack),1,3.84,2019-11-10 14:05:00,541 River St, Boston,MA,02215 +289077,Wired Headphones,1,11.99,2019-11-13 11:34:00,743 6th St, New York City,NY,10001 +289078,AAA Batteries (4-pack),3,2.99,2019-11-01 22:23:00,360 Cedar St, Austin,TX,73301 +289079,USB-C Charging Cable,1,11.95,2019-11-17 20:22:00,989 10th St, San Francisco,CA,94016 +289080,AAA Batteries (4-pack),1,2.99,2019-11-07 11:04:00,697 Cedar St, New York City,NY,10001 +289081,27in FHD Monitor,1,149.99,2019-11-07 09:57:00,525 4th St, Los Angeles,CA,90001 +289082,iPhone,1,700.0,2019-11-09 06:43:00,642 13th St, Los Angeles,CA,90001 +289083,Bose SoundSport Headphones,1,99.99,2019-11-24 10:54:00,832 11th St, Austin,TX,73301 +289084,Apple Airpods Headphones,1,150.0,2019-11-02 21:44:00,362 6th St, Los Angeles,CA,90001 +289085,27in 4K Gaming Monitor,1,389.99,2019-11-14 08:53:00,509 14th St, Los Angeles,CA,90001 +289086,USB-C Charging Cable,1,11.95,2019-11-08 14:34:00,811 10th St, Portland,OR,97035 +289087,iPhone,1,700.0,2019-11-30 20:35:00,623 West St, Boston,MA,02215 +289088,Flatscreen TV,1,300.0,2019-11-23 21:40:00,580 4th St, Austin,TX,73301 +289089,AA Batteries (4-pack),1,3.84,2019-11-08 14:58:00,249 Lincoln St, Boston,MA,02215 +289089,AAA Batteries (4-pack),1,2.99,2019-11-08 14:58:00,249 Lincoln St, Boston,MA,02215 +289090,Wired Headphones,1,11.99,2019-11-24 21:21:00,866 7th St, Atlanta,GA,30301 +289091,Google Phone,1,600.0,2019-11-10 12:12:00,218 Washington St, Dallas,TX,75001 +289092,AAA Batteries (4-pack),1,2.99,2019-11-15 06:31:00,850 Johnson St, Seattle,WA,98101 +289093,Lightning Charging Cable,1,14.95,2019-11-17 12:00:00,306 Dogwood St, San Francisco,CA,94016 +289094,Lightning Charging Cable,1,14.95,2019-11-14 18:00:00,683 14th St, San Francisco,CA,94016 +289095,AA Batteries (4-pack),1,3.84,2019-11-05 15:48:00,511 10th St, Boston,MA,02215 +289096,AA Batteries (4-pack),1,3.84,2019-11-19 22:28:00,860 Walnut St, Seattle,WA,98101 +289097,USB-C Charging Cable,1,11.95,2019-11-13 20:44:00,62 Lincoln St, New York City,NY,10001 +289098,AA Batteries (4-pack),1,3.84,2019-11-02 11:12:00,555 Adams St, Seattle,WA,98101 +289099,34in Ultrawide Monitor,1,379.99,2019-11-25 19:27:00,636 North St, San Francisco,CA,94016 +289100,Macbook Pro Laptop,1,1700.0,2019-11-25 12:38:00,829 Dogwood St, Boston,MA,02215 +289101,USB-C Charging Cable,1,11.95,2019-11-10 19:10:00,488 Wilson St, San Francisco,CA,94016 +289102,Bose SoundSport Headphones,1,99.99,2019-11-06 17:26:00,973 Adams St, Austin,TX,73301 +289103,AAA Batteries (4-pack),2,2.99,2019-11-24 21:37:00,406 2nd St, Los Angeles,CA,90001 +289104,Google Phone,1,600.0,2019-11-28 23:04:00,915 Hickory St, San Francisco,CA,94016 +289105,Wired Headphones,1,11.99,2019-11-22 16:29:00,561 Sunset St, Boston,MA,02215 +289106,Bose SoundSport Headphones,1,99.99,2019-11-30 20:10:00,44 Dogwood St, San Francisco,CA,94016 +289107,ThinkPad Laptop,1,999.99,2019-11-30 19:38:00,609 5th St, San Francisco,CA,94016 +289108,Bose SoundSport Headphones,1,99.99,2019-11-09 10:27:00,204 Hickory St, San Francisco,CA,94016 +289109,AAA Batteries (4-pack),2,2.99,2019-11-26 14:35:00,547 South St, San Francisco,CA,94016 +289110,Wired Headphones,1,11.99,2019-11-02 13:01:00,737 Willow St, San Francisco,CA,94016 +289111,Apple Airpods Headphones,1,150.0,2019-11-06 13:19:00,218 Highland St, San Francisco,CA,94016 +289112,USB-C Charging Cable,1,11.95,2019-11-11 13:45:00,120 Cedar St, Boston,MA,02215 +289113,AAA Batteries (4-pack),2,2.99,2019-11-28 17:55:00,65 4th St, Los Angeles,CA,90001 +289114,Lightning Charging Cable,1,14.95,2019-11-07 18:30:00,518 9th St, Dallas,TX,75001 +289115,AA Batteries (4-pack),1,3.84,2019-11-28 00:08:00,903 Willow St, New York City,NY,10001 +289116,Apple Airpods Headphones,1,150.0,2019-11-29 16:13:00,659 2nd St, Los Angeles,CA,90001 +289117,Vareebadd Phone,1,400.0,2019-11-15 18:50:00,938 Church St, San Francisco,CA,94016 +289117,USB-C Charging Cable,1,11.95,2019-11-15 18:50:00,938 Church St, San Francisco,CA,94016 +289117,Bose SoundSport Headphones,1,99.99,2019-11-15 18:50:00,938 Church St, San Francisco,CA,94016 +289117,Wired Headphones,1,11.99,2019-11-15 18:50:00,938 Church St, San Francisco,CA,94016 +289118,Lightning Charging Cable,1,14.95,2019-11-16 15:35:00,266 5th St, Boston,MA,02215 +289119,ThinkPad Laptop,1,999.99,2019-11-03 00:19:00,262 Sunset St, Los Angeles,CA,90001 +289120,AA Batteries (4-pack),2,3.84,2019-11-02 14:20:00,637 9th St, Atlanta,GA,30301 +289121,Bose SoundSport Headphones,1,99.99,2019-11-07 12:37:00,42 Lincoln St, Dallas,TX,75001 +289122,Apple Airpods Headphones,1,150.0,2019-11-23 20:39:00,639 Willow St, San Francisco,CA,94016 +289123,AAA Batteries (4-pack),2,2.99,2019-11-06 19:01:00,374 4th St, Dallas,TX,75001 +289124,27in 4K Gaming Monitor,1,389.99,2019-11-27 20:44:00,132 5th St, San Francisco,CA,94016 +289125,Wired Headphones,1,11.99,2019-11-25 17:22:00,962 Main St, Dallas,TX,75001 +289126,AA Batteries (4-pack),1,3.84,2019-11-13 18:18:00,886 2nd St, Los Angeles,CA,90001 +289127,Wired Headphones,1,11.99,2019-11-09 16:42:00,36 Johnson St, San Francisco,CA,94016 +289128,27in FHD Monitor,1,149.99,2019-11-12 10:49:00,322 Willow St, San Francisco,CA,94016 +289129,USB-C Charging Cable,1,11.95,2019-11-26 12:09:00,342 11th St, Portland,OR,97035 +289130,34in Ultrawide Monitor,1,379.99,2019-11-10 12:58:00,446 10th St, Boston,MA,02215 +289131,iPhone,1,700.0,2019-11-18 22:57:00,866 Dogwood St, New York City,NY,10001 +289132,Lightning Charging Cable,1,14.95,2019-11-08 13:32:00,280 Elm St, Los Angeles,CA,90001 +289133,AAA Batteries (4-pack),1,2.99,2019-11-25 09:03:00,416 Jefferson St, Seattle,WA,98101 +289134,ThinkPad Laptop,1,999.99,2019-11-22 22:30:00,533 Cherry St, San Francisco,CA,94016 +289135,27in FHD Monitor,1,149.99,2019-11-02 13:55:00,639 Main St, Boston,MA,02215 +289136,AA Batteries (4-pack),1,3.84,2019-11-21 10:12:00,705 13th St, Los Angeles,CA,90001 +289137,Bose SoundSport Headphones,1,99.99,2019-11-08 17:58:00,35 Pine St, Portland,ME,04101 +289138,Lightning Charging Cable,1,14.95,2019-11-28 13:34:00,955 Hill St, San Francisco,CA,94016 +289139,Macbook Pro Laptop,1,1700.0,2019-11-20 15:53:00,549 Highland St, Atlanta,GA,30301 +289140,Apple Airpods Headphones,1,150.0,2019-11-14 20:21:00,153 Lake St, Boston,MA,02215 +289141,AA Batteries (4-pack),1,3.84,2019-11-28 20:06:00,952 12th St, Atlanta,GA,30301 +289142,Wired Headphones,1,11.99,2019-11-26 18:29:00,48 Dogwood St, Boston,MA,02215 +289143,USB-C Charging Cable,1,11.95,2019-11-12 21:32:00,852 2nd St, Los Angeles,CA,90001 +289144,USB-C Charging Cable,1,11.95,2019-11-19 12:11:00,942 South St, Seattle,WA,98101 +289145,AA Batteries (4-pack),1,3.84,2019-11-24 09:31:00,320 Walnut St, Dallas,TX,75001 +289146,Bose SoundSport Headphones,1,99.99,2019-11-27 17:29:00,4 13th St, San Francisco,CA,94016 +289147,Macbook Pro Laptop,1,1700.0,2019-11-29 07:25:00,826 13th St, Los Angeles,CA,90001 +289147,AAA Batteries (4-pack),1,2.99,2019-11-29 07:25:00,826 13th St, Los Angeles,CA,90001 +289148,Wired Headphones,1,11.99,2019-11-11 10:09:00,651 9th St, Boston,MA,02215 +289149,AA Batteries (4-pack),1,3.84,2019-11-20 11:40:00,121 Main St, San Francisco,CA,94016 +289150,AA Batteries (4-pack),1,3.84,2019-11-11 12:39:00,185 Adams St, Los Angeles,CA,90001 +289151,iPhone,1,700.0,2019-11-28 15:19:00,196 North St, Los Angeles,CA,90001 +289152,iPhone,1,700.0,2019-11-06 08:00:00,706 2nd St, Atlanta,GA,30301 +289153,Apple Airpods Headphones,1,150.0,2019-11-17 20:04:00,759 Adams St, San Francisco,CA,94016 +289154,Lightning Charging Cable,1,14.95,2019-11-03 10:33:00,346 10th St, San Francisco,CA,94016 +289155,Wired Headphones,1,11.99,2019-11-16 07:13:00,157 Highland St, Dallas,TX,75001 +289156,iPhone,1,700.0,2019-11-14 16:23:00,320 Spruce St, Austin,TX,73301 +289156,Apple Airpods Headphones,1,150.0,2019-11-14 16:23:00,320 Spruce St, Austin,TX,73301 +289157,AAA Batteries (4-pack),4,2.99,2019-11-16 20:17:00,349 Adams St, San Francisco,CA,94016 +289158,AA Batteries (4-pack),1,3.84,2019-11-13 17:42:00,664 Church St, New York City,NY,10001 +289159,AA Batteries (4-pack),1,3.84,2019-11-12 17:34:00,361 2nd St, Los Angeles,CA,90001 +289160,Lightning Charging Cable,1,14.95,2019-11-16 02:17:00,19 4th St, San Francisco,CA,94016 +289161,Wired Headphones,1,11.99,2019-11-01 20:20:00,65 Johnson St, New York City,NY,10001 +289162,Apple Airpods Headphones,1,150.0,2019-11-26 21:41:00,919 Lake St, Los Angeles,CA,90001 +289163,AAA Batteries (4-pack),1,2.99,2019-11-25 12:09:00,311 Walnut St, Atlanta,GA,30301 +289164,Apple Airpods Headphones,1,150.0,2019-11-18 17:11:00,293 Church St, Dallas,TX,75001 +289165,USB-C Charging Cable,1,11.95,2019-11-19 18:32:00,735 South St, Dallas,TX,75001 +289165,Bose SoundSport Headphones,1,99.99,2019-11-19 18:32:00,735 South St, Dallas,TX,75001 +289166,27in 4K Gaming Monitor,1,389.99,2019-11-02 00:08:00,224 8th St, San Francisco,CA,94016 +289167,AAA Batteries (4-pack),1,2.99,2019-11-12 07:57:00,889 1st St, Boston,MA,02215 +289168,Lightning Charging Cable,1,14.95,2019-11-04 17:47:00,444 Forest St, Los Angeles,CA,90001 +289169,AA Batteries (4-pack),1,3.84,2019-11-06 22:52:00,726 Park St, Seattle,WA,98101 +289170,34in Ultrawide Monitor,1,379.99,2019-11-29 10:23:00,769 Maple St, Los Angeles,CA,90001 +289171,Lightning Charging Cable,1,14.95,2019-11-16 17:13:00,364 4th St, Seattle,WA,98101 +289172,ThinkPad Laptop,1,999.99,2019-11-14 22:15:00,280 Spruce St, New York City,NY,10001 +289173,USB-C Charging Cable,1,11.95,2019-11-22 16:19:00,771 6th St, New York City,NY,10001 +289174,Flatscreen TV,1,300.0,2019-11-15 11:52:00,441 Pine St, San Francisco,CA,94016 +289175,AA Batteries (4-pack),1,3.84,2019-11-10 07:39:00,583 Spruce St, Seattle,WA,98101 +289176,USB-C Charging Cable,1,11.95,2019-11-29 15:01:00,749 Sunset St, San Francisco,CA,94016 +289177,AA Batteries (4-pack),1,3.84,2019-11-15 10:20:00,988 Chestnut St, San Francisco,CA,94016 +289178,27in FHD Monitor,1,149.99,2019-11-08 18:42:00,44 Cedar St, San Francisco,CA,94016 +289179,AA Batteries (4-pack),1,3.84,2019-11-26 12:21:00,563 Jefferson St, Atlanta,GA,30301 +289180,Lightning Charging Cable,1,14.95,2019-11-07 09:24:00,548 Lincoln St, San Francisco,CA,94016 +289181,Google Phone,1,600.0,2019-11-13 23:38:00,842 Park St, New York City,NY,10001 +289182,AA Batteries (4-pack),1,3.84,2019-11-17 20:55:00,326 Forest St, Portland,OR,97035 +289183,Wired Headphones,1,11.99,2019-11-06 11:05:00,904 North St, Boston,MA,02215 +289184,27in 4K Gaming Monitor,1,389.99,2019-11-01 22:43:00,851 Main St, Portland,ME,04101 +289185,20in Monitor,1,109.99,2019-11-14 18:08:00,937 Lakeview St, Boston,MA,02215 +289186,Lightning Charging Cable,1,14.95,2019-11-21 04:01:00,907 Lincoln St, Seattle,WA,98101 +289187,iPhone,1,700.0,2019-11-24 17:58:00,965 Main St, San Francisco,CA,94016 +289187,Wired Headphones,1,11.99,2019-11-24 17:58:00,965 Main St, San Francisco,CA,94016 +289188,Lightning Charging Cable,1,14.95,2019-11-03 10:14:00,890 Main St, New York City,NY,10001 +289189,Bose SoundSport Headphones,1,99.99,2019-11-26 09:59:00,743 Wilson St, San Francisco,CA,94016 +289190,Bose SoundSport Headphones,1,99.99,2019-11-27 14:08:00,685 Lake St, Seattle,WA,98101 +289191,Lightning Charging Cable,1,14.95,2019-11-14 12:37:00,644 Main St, Atlanta,GA,30301 +289192,Lightning Charging Cable,1,14.95,2019-11-02 11:27:00,718 South St, New York City,NY,10001 +289193,USB-C Charging Cable,1,11.95,2019-11-02 08:29:00,893 14th St, Seattle,WA,98101 +289194,USB-C Charging Cable,1,11.95,2019-11-01 12:02:00,791 2nd St, Portland,OR,97035 +289195,Apple Airpods Headphones,1,150.0,2019-11-30 15:37:00,193 Main St, Los Angeles,CA,90001 +289196,AAA Batteries (4-pack),1,2.99,2019-11-11 11:22:00,174 Maple St, New York City,NY,10001 +289197,AAA Batteries (4-pack),1,2.99,2019-11-06 15:24:00,338 Walnut St, Seattle,WA,98101 +289198,Bose SoundSport Headphones,1,99.99,2019-11-04 14:58:00,267 Highland St, San Francisco,CA,94016 +289199,AAA Batteries (4-pack),2,2.99,2019-11-14 14:02:00,733 Highland St, San Francisco,CA,94016 +289200,LG Washing Machine,1,600.0,2019-11-27 13:29:00,532 2nd St, Los Angeles,CA,90001 +289201,AAA Batteries (4-pack),1,2.99,2019-11-21 02:18:00,369 Main St, Los Angeles,CA,90001 +289202,AA Batteries (4-pack),1,3.84,2019-11-02 23:35:00,816 9th St, Portland,OR,97035 +289203,USB-C Charging Cable,1,11.95,2019-11-26 15:54:00,794 13th St, San Francisco,CA,94016 +289204,AA Batteries (4-pack),1,3.84,2019-11-02 18:16:00,263 Madison St, San Francisco,CA,94016 +289205,Wired Headphones,1,11.99,2019-11-30 03:44:00,230 2nd St, San Francisco,CA,94016 +289206,Google Phone,1,600.0,2019-11-17 10:41:00,854 Main St, San Francisco,CA,94016 +289207,34in Ultrawide Monitor,1,379.99,2019-11-30 10:25:00,424 Highland St, Austin,TX,73301 +289208,USB-C Charging Cable,1,11.95,2019-11-26 13:07:00,708 Cedar St, San Francisco,CA,94016 +289209,AAA Batteries (4-pack),1,2.99,2019-11-04 21:11:00,551 Chestnut St, Los Angeles,CA,90001 +289210,Bose SoundSport Headphones,1,99.99,2019-11-21 12:03:00,780 Pine St, San Francisco,CA,94016 +289211,iPhone,1,700.0,2019-11-05 13:42:00,774 North St, San Francisco,CA,94016 +289212,AA Batteries (4-pack),4,3.84,2019-11-22 19:46:00,269 Elm St, Atlanta,GA,30301 +289213,USB-C Charging Cable,2,11.95,2019-11-06 16:58:00,668 Elm St, Portland,ME,04101 +289214,34in Ultrawide Monitor,1,379.99,2019-11-24 01:13:00,245 Ridge St, San Francisco,CA,94016 +289215,Wired Headphones,1,11.99,2019-11-24 16:59:00,497 Elm St, San Francisco,CA,94016 +289216,Bose SoundSport Headphones,1,99.99,2019-11-09 14:58:00,82 Cherry St, Austin,TX,73301 +289217,AAA Batteries (4-pack),1,2.99,2019-11-07 12:16:00,939 Hickory St, San Francisco,CA,94016 +289218,Wired Headphones,1,11.99,2019-11-17 12:30:00,352 11th St, Los Angeles,CA,90001 +289219,Wired Headphones,1,11.99,2019-11-21 15:51:00,527 9th St, Los Angeles,CA,90001 +289220,AAA Batteries (4-pack),1,2.99,2019-11-03 21:42:00,691 Center St, Boston,MA,02215 +289221,AA Batteries (4-pack),1,3.84,2019-11-27 09:57:00,971 Hill St, Los Angeles,CA,90001 +289222,USB-C Charging Cable,1,11.95,2019-11-24 11:17:00,685 13th St, New York City,NY,10001 +289223,iPhone,1,700.0,2019-11-05 09:56:00,631 Hill St, Los Angeles,CA,90001 +289224,Lightning Charging Cable,1,14.95,2019-11-02 22:41:00,241 Center St, Seattle,WA,98101 +289225,Apple Airpods Headphones,1,150.0,2019-11-05 12:17:00,911 River St, New York City,NY,10001 +289226,Lightning Charging Cable,1,14.95,2019-11-18 22:08:00,972 Jackson St, Boston,MA,02215 +289227,iPhone,1,700.0,2019-11-26 13:37:00,804 Hill St, Atlanta,GA,30301 +289227,Lightning Charging Cable,1,14.95,2019-11-26 13:37:00,804 Hill St, Atlanta,GA,30301 +289228,Wired Headphones,1,11.99,2019-11-13 18:49:00,989 Elm St, San Francisco,CA,94016 +289229,Lightning Charging Cable,1,14.95,2019-11-03 22:19:00,688 Park St, San Francisco,CA,94016 +289230,iPhone,1,700.0,2019-11-16 16:32:00,296 Pine St, Seattle,WA,98101 +289231,iPhone,1,700.0,2019-11-24 22:15:00,604 Maple St, San Francisco,CA,94016 +289232,USB-C Charging Cable,1,11.95,2019-11-21 13:54:00,606 Hill St, Portland,OR,97035 +289233,AAA Batteries (4-pack),1,2.99,2019-11-15 13:39:00,598 4th St, Los Angeles,CA,90001 +289234,ThinkPad Laptop,1,999.99,2019-11-17 23:49:00,20 2nd St, San Francisco,CA,94016 +289235,Wired Headphones,2,11.99,2019-11-30 09:25:00,269 2nd St, Austin,TX,73301 +289236,iPhone,1,700.0,2019-11-21 14:54:00,12 Chestnut St, Boston,MA,02215 +289237,AAA Batteries (4-pack),1,2.99,2019-11-22 15:03:00,653 1st St, Los Angeles,CA,90001 +289238,Bose SoundSport Headphones,1,99.99,2019-11-30 11:56:00,271 Jefferson St, Los Angeles,CA,90001 +289239,Apple Airpods Headphones,1,150.0,2019-11-01 16:19:00,58 Ridge St, New York City,NY,10001 +289240,AA Batteries (4-pack),2,3.84,2019-11-03 17:26:00,815 Cedar St, San Francisco,CA,94016 +289241,AA Batteries (4-pack),1,3.84,2019-11-08 11:41:00,629 Lakeview St, San Francisco,CA,94016 +289242,Apple Airpods Headphones,1,150.0,2019-11-22 00:40:00,22 2nd St, New York City,NY,10001 +289243,Bose SoundSport Headphones,1,99.99,2019-11-21 13:12:00,167 Meadow St, San Francisco,CA,94016 +289244,ThinkPad Laptop,1,999.99,2019-11-29 06:49:00,646 Pine St, Seattle,WA,98101 +289245,AA Batteries (4-pack),1,3.84,2019-11-28 06:53:00,389 Hickory St, New York City,NY,10001 +289246,AAA Batteries (4-pack),2,2.99,2019-11-07 17:53:00,609 Wilson St, Boston,MA,02215 +289247,Wired Headphones,2,11.99,2019-11-01 09:19:00,861 Wilson St, Portland,ME,04101 +289248,Wired Headphones,1,11.99,2019-11-05 17:57:00,534 Lake St, Boston,MA,02215 +289249,Google Phone,1,600.0,2019-11-29 21:00:00,495 Dogwood St, New York City,NY,10001 +289250,Apple Airpods Headphones,1,150.0,2019-11-28 09:47:00,83 Johnson St, San Francisco,CA,94016 +289251,USB-C Charging Cable,1,11.95,2019-11-29 20:20:00,244 11th St, Los Angeles,CA,90001 +289252,USB-C Charging Cable,1,11.95,2019-11-18 10:58:00,644 Highland St, New York City,NY,10001 +289253,Lightning Charging Cable,2,14.95,2019-11-23 17:12:00,662 Park St, Portland,OR,97035 +289254,Flatscreen TV,1,300.0,2019-11-01 20:53:00,871 Meadow St, Dallas,TX,75001 +289255,iPhone,1,700.0,2019-11-20 16:02:00,906 Washington St, Austin,TX,73301 +289256,AA Batteries (4-pack),1,3.84,2019-11-01 20:16:00,736 10th St, Dallas,TX,75001 +289257,USB-C Charging Cable,1,11.95,2019-11-09 11:45:00,845 Hill St, Atlanta,GA,30301 +289258,AA Batteries (4-pack),1,3.84,2019-11-30 10:49:00,176 11th St, Seattle,WA,98101 +289259,Macbook Pro Laptop,1,1700.0,2019-11-20 16:56:00,983 6th St, Los Angeles,CA,90001 +289260,Vareebadd Phone,1,400.0,2019-11-07 19:23:00,387 Adams St, Austin,TX,73301 +289261,Bose SoundSport Headphones,1,99.99,2019-11-12 11:55:00,757 11th St, New York City,NY,10001 +289262,USB-C Charging Cable,1,11.95,2019-11-06 09:52:00,97 Madison St, San Francisco,CA,94016 +289263,Bose SoundSport Headphones,1,99.99,2019-11-28 16:15:00,66 Park St, Seattle,WA,98101 +289264,Wired Headphones,1,11.99,2019-11-05 11:18:00,271 Adams St, New York City,NY,10001 +289265,Flatscreen TV,1,300.0,2019-11-22 01:04:00,376 Wilson St, San Francisco,CA,94016 +289266,Macbook Pro Laptop,1,1700.0,2019-11-29 12:33:00,335 West St, San Francisco,CA,94016 +289267,Flatscreen TV,1,300.0,2019-11-02 08:54:00,499 12th St, Portland,ME,04101 +289268,27in FHD Monitor,1,149.99,2019-11-18 10:43:00,874 Willow St, San Francisco,CA,94016 +289269,Wired Headphones,1,11.99,2019-11-24 09:35:00,559 Adams St, Los Angeles,CA,90001 +289270,34in Ultrawide Monitor,1,379.99,2019-11-29 12:06:00,989 Cedar St, Dallas,TX,75001 +289271,USB-C Charging Cable,1,11.95,2019-11-09 00:33:00,404 Cedar St, New York City,NY,10001 +289272,Apple Airpods Headphones,1,150.0,2019-11-28 10:12:00,859 14th St, San Francisco,CA,94016 +289273,AAA Batteries (4-pack),3,2.99,2019-11-26 21:52:00,814 South St, Boston,MA,02215 +289274,Google Phone,1,600.0,2019-11-30 08:22:00,566 Dogwood St, San Francisco,CA,94016 +289275,Macbook Pro Laptop,1,1700.0,2019-11-20 20:07:00,874 Jefferson St, Dallas,TX,75001 +289276,27in FHD Monitor,1,149.99,2019-11-15 12:28:00,645 Jefferson St, San Francisco,CA,94016 +289277,Vareebadd Phone,1,400.0,2019-11-23 14:52:00,811 Main St, Boston,MA,02215 +289278,27in FHD Monitor,1,149.99,2019-11-18 16:16:00,173 Cedar St, Dallas,TX,75001 +289279,Wired Headphones,1,11.99,2019-11-06 13:15:00,824 Elm St, Boston,MA,02215 +289280,AAA Batteries (4-pack),1,2.99,2019-11-11 13:08:00,638 Dogwood St, Boston,MA,02215 +289281,USB-C Charging Cable,1,11.95,2019-11-07 05:19:00,56 Church St, Dallas,TX,75001 +289282,Bose SoundSport Headphones,1,99.99,2019-11-06 22:05:00,413 Center St, Los Angeles,CA,90001 +289283,Lightning Charging Cable,1,14.95,2019-11-22 23:41:00,448 8th St, San Francisco,CA,94016 +289284,20in Monitor,1,109.99,2019-11-15 18:38:00,736 Jackson St, San Francisco,CA,94016 +289285,Lightning Charging Cable,1,14.95,2019-11-22 18:28:00,296 13th St, Dallas,TX,75001 +289286,USB-C Charging Cable,1,11.95,2019-11-10 22:30:00,13 7th St, New York City,NY,10001 +289287,AA Batteries (4-pack),1,3.84,2019-11-02 23:19:00,489 12th St, Boston,MA,02215 +289288,AAA Batteries (4-pack),1,2.99,2019-11-09 17:38:00,244 12th St, San Francisco,CA,94016 +289289,USB-C Charging Cable,1,11.95,2019-11-15 16:58:00,690 10th St, New York City,NY,10001 +289290,Apple Airpods Headphones,1,150.0,2019-11-12 00:31:00,243 1st St, Boston,MA,02215 +289291,Wired Headphones,1,11.99,2019-11-17 13:14:00,988 Hickory St, Los Angeles,CA,90001 +289292,AA Batteries (4-pack),1,3.84,2019-11-29 14:41:00,820 14th St, Dallas,TX,75001 +289293,34in Ultrawide Monitor,1,379.99,2019-11-03 01:08:00,756 Hill St, Boston,MA,02215 +289294,AA Batteries (4-pack),1,3.84,2019-11-06 13:10:00,423 Church St, San Francisco,CA,94016 +289295,27in 4K Gaming Monitor,1,389.99,2019-11-02 16:13:00,853 Walnut St, Atlanta,GA,30301 +289296,Apple Airpods Headphones,1,150.0,2019-11-10 11:47:00,130 13th St, San Francisco,CA,94016 +289297,AA Batteries (4-pack),2,3.84,2019-11-24 13:20:00,263 Pine St, Los Angeles,CA,90001 +289298,Macbook Pro Laptop,1,1700.0,2019-11-24 00:08:00,207 Church St, Los Angeles,CA,90001 +289299,34in Ultrawide Monitor,1,379.99,2019-11-13 21:11:00,260 Jackson St, Austin,TX,73301 +289300,AA Batteries (4-pack),1,3.84,2019-11-04 12:23:00,720 Church St, Atlanta,GA,30301 +289301,Apple Airpods Headphones,1,150.0,2019-11-24 11:57:00,628 North St, New York City,NY,10001 +289302,AA Batteries (4-pack),3,3.84,2019-11-01 09:22:00,575 Forest St, San Francisco,CA,94016 +289303,AAA Batteries (4-pack),1,2.99,2019-11-25 18:57:00,613 Sunset St, Los Angeles,CA,90001 +289304,Lightning Charging Cable,1,14.95,2019-11-16 10:37:00,304 Highland St, New York City,NY,10001 +289305,Google Phone,1,600.0,2019-11-05 21:19:00,899 Ridge St, Los Angeles,CA,90001 +289306,AAA Batteries (4-pack),1,2.99,2019-11-21 22:47:00,893 Spruce St, Boston,MA,02215 +289307,Lightning Charging Cable,1,14.95,2019-11-20 18:25:00,201 Ridge St, Portland,OR,97035 +289308,20in Monitor,1,109.99,2019-11-01 16:44:00,996 9th St, Atlanta,GA,30301 +289309,USB-C Charging Cable,1,11.95,2019-11-21 10:26:00,342 14th St, Los Angeles,CA,90001 +289310,Wired Headphones,1,11.99,2019-11-20 14:46:00,679 Washington St, San Francisco,CA,94016 +289311,USB-C Charging Cable,1,11.95,2019-11-02 11:46:00,765 Church St, Boston,MA,02215 +289312,Bose SoundSport Headphones,1,99.99,2019-11-24 18:34:00,774 Lake St, Dallas,TX,75001 +289313,AA Batteries (4-pack),5,3.84,2019-11-04 12:54:00,764 4th St, San Francisco,CA,94016 +289314,USB-C Charging Cable,1,11.95,2019-11-19 06:22:00,694 Spruce St, Atlanta,GA,30301 +289315,USB-C Charging Cable,2,11.95,2019-11-15 21:33:00,853 Johnson St, New York City,NY,10001 +289316,iPhone,1,700.0,2019-11-07 06:49:00,943 Chestnut St, San Francisco,CA,94016 +289317,Lightning Charging Cable,1,14.95,2019-11-15 13:30:00,700 Dogwood St, New York City,NY,10001 +289318,34in Ultrawide Monitor,1,379.99,2019-11-14 13:30:00,537 Meadow St, New York City,NY,10001 +289319,USB-C Charging Cable,1,11.95,2019-11-15 15:59:00,327 Meadow St, Boston,MA,02215 +289320,Lightning Charging Cable,2,14.95,2019-11-14 16:20:00,843 1st St, Los Angeles,CA,90001 +289321,AAA Batteries (4-pack),3,2.99,2019-11-14 19:47:00,996 West St, New York City,NY,10001 +289322,USB-C Charging Cable,1,11.95,2019-11-08 19:23:00,15 Hill St, San Francisco,CA,94016 +289323,USB-C Charging Cable,1,11.95,2019-11-28 14:15:00,606 Johnson St, San Francisco,CA,94016 +289324,Bose SoundSport Headphones,1,99.99,2019-11-25 17:47:00,72 Church St, Seattle,WA,98101 +289325,27in FHD Monitor,1,149.99,2019-11-07 22:58:00,823 Jefferson St, New York City,NY,10001 +289326,AAA Batteries (4-pack),1,2.99,2019-11-14 11:32:00,342 Main St, New York City,NY,10001 +289327,Lightning Charging Cable,1,14.95,2019-11-01 20:46:00,297 Adams St, New York City,NY,10001 +289328,AA Batteries (4-pack),2,3.84,2019-11-21 13:36:00,913 Dogwood St, Seattle,WA,98101 +289329,Wired Headphones,1,11.99,2019-11-21 00:05:00,319 Cherry St, San Francisco,CA,94016 +289330,34in Ultrawide Monitor,1,379.99,2019-11-04 17:35:00,492 Elm St, Boston,MA,02215 +289331,Apple Airpods Headphones,1,150.0,2019-11-23 14:25:00,984 Spruce St, San Francisco,CA,94016 +289331,LG Dryer,1,600.0,2019-11-23 14:25:00,984 Spruce St, San Francisco,CA,94016 +289332,Wired Headphones,1,11.99,2019-11-11 20:31:00,722 11th St, Portland,OR,97035 +289333,Lightning Charging Cable,1,14.95,2019-11-19 15:54:00,882 7th St, San Francisco,CA,94016 +289334,USB-C Charging Cable,1,11.95,2019-11-07 19:11:00,304 Pine St, Boston,MA,02215 +289335,AAA Batteries (4-pack),1,2.99,2019-11-13 15:44:00,469 Church St, San Francisco,CA,94016 +289336,USB-C Charging Cable,1,11.95,2019-11-15 10:48:00,855 13th St, New York City,NY,10001 +289337,Bose SoundSport Headphones,1,99.99,2019-11-03 10:13:00,26 Park St, San Francisco,CA,94016 +289338,27in FHD Monitor,1,149.99,2019-11-20 11:59:00,411 Washington St, San Francisco,CA,94016 +289339,USB-C Charging Cable,1,11.95,2019-11-30 06:15:00,656 7th St, Boston,MA,02215 +289340,USB-C Charging Cable,1,11.95,2019-11-18 14:08:00,70 Hickory St, Seattle,WA,98101 +289341,Apple Airpods Headphones,1,150.0,2019-11-04 12:02:00,580 North St, Boston,MA,02215 +289342,ThinkPad Laptop,1,999.99,2019-11-15 22:56:00,428 Walnut St, Seattle,WA,98101 +289343,iPhone,1,700.0,2019-11-18 14:28:00,947 Cedar St, Seattle,WA,98101 +289344,Apple Airpods Headphones,1,150.0,2019-11-19 20:02:00,400 Ridge St, Portland,OR,97035 +289345,Apple Airpods Headphones,1,150.0,2019-11-18 12:16:00,260 South St, Austin,TX,73301 +289346,Lightning Charging Cable,1,14.95,2019-11-07 13:14:00,778 9th St, Los Angeles,CA,90001 +289347,27in FHD Monitor,1,149.99,2019-11-03 20:22:00,121 Park St, New York City,NY,10001 +289348,Wired Headphones,1,11.99,2019-11-21 12:39:00,377 Cedar St, Atlanta,GA,30301 +289349,Wired Headphones,1,11.99,2019-11-16 13:37:00,55 Hill St, Los Angeles,CA,90001 +289350,AAA Batteries (4-pack),1,2.99,2019-11-11 18:52:00,857 4th St, San Francisco,CA,94016 +289351,34in Ultrawide Monitor,1,379.99,2019-11-06 20:44:00,258 12th St, Boston,MA,02215 +289352,AA Batteries (4-pack),2,3.84,2019-11-19 17:14:00,935 Meadow St, San Francisco,CA,94016 +289353,Apple Airpods Headphones,1,150.0,2019-11-11 17:49:00,12 2nd St, Los Angeles,CA,90001 +289354,USB-C Charging Cable,1,11.95,2019-11-07 12:14:00,247 Jackson St, Los Angeles,CA,90001 +289355,AA Batteries (4-pack),1,3.84,2019-11-27 21:21:00,293 South St, Portland,OR,97035 +289356,AA Batteries (4-pack),1,3.84,2019-11-04 21:52:00,729 Chestnut St, Austin,TX,73301 +289357,27in 4K Gaming Monitor,1,389.99,2019-11-27 21:42:00,309 Lincoln St, Boston,MA,02215 +289357,AAA Batteries (4-pack),2,2.99,2019-11-27 21:42:00,309 Lincoln St, Boston,MA,02215 +289358,Lightning Charging Cable,1,14.95,2019-11-11 23:13:00,955 13th St, Los Angeles,CA,90001 +289359,AA Batteries (4-pack),1,3.84,2019-11-28 14:42:00,618 Walnut St, Dallas,TX,75001 +289360,27in FHD Monitor,1,149.99,2019-11-08 19:52:00,921 Wilson St, Dallas,TX,75001 +289361,Lightning Charging Cable,1,14.95,2019-11-23 14:10:00,965 Ridge St, Seattle,WA,98101 +289362,USB-C Charging Cable,1,11.95,2019-11-16 19:12:00,201 Sunset St, San Francisco,CA,94016 +289363,Apple Airpods Headphones,1,150.0,2019-11-15 11:20:00,285 North St, Los Angeles,CA,90001 +289364,Flatscreen TV,1,300.0,2019-11-16 12:33:00,948 Wilson St, San Francisco,CA,94016 +289365,20in Monitor,1,109.99,2019-11-27 05:42:00,355 Hickory St, New York City,NY,10001 +289366,27in FHD Monitor,1,149.99,2019-11-15 12:06:00,80 7th St, Los Angeles,CA,90001 +289367,USB-C Charging Cable,1,11.95,2019-11-25 16:34:00,479 Willow St, Austin,TX,73301 +289368,AA Batteries (4-pack),1,3.84,2019-11-02 14:52:00,590 13th St, Boston,MA,02215 +289369,Wired Headphones,1,11.99,2019-11-27 22:15:00,765 Church St, Boston,MA,02215 +289370,iPhone,1,700.0,2019-11-05 14:09:00,264 4th St, Los Angeles,CA,90001 +289371,Apple Airpods Headphones,1,150.0,2019-11-20 19:28:00,73 Wilson St, Dallas,TX,75001 +289372,Macbook Pro Laptop,1,1700.0,2019-11-07 14:23:00,627 2nd St, Portland,OR,97035 +289373,AA Batteries (4-pack),2,3.84,2019-11-14 11:09:00,137 Hickory St, Seattle,WA,98101 +289374,Lightning Charging Cable,1,14.95,2019-11-07 18:25:00,882 9th St, San Francisco,CA,94016 +289375,Lightning Charging Cable,1,14.95,2019-11-08 12:18:00,859 Park St, Atlanta,GA,30301 +289376,Flatscreen TV,1,300.0,2019-11-24 12:36:00,266 Ridge St, Atlanta,GA,30301 +289377,AAA Batteries (4-pack),1,2.99,2019-11-14 11:24:00,773 Center St, New York City,NY,10001 +289378,27in FHD Monitor,1,149.99,2019-11-08 08:43:00,253 Adams St, Atlanta,GA,30301 +289379,27in FHD Monitor,1,149.99,2019-11-01 21:41:00,212 8th St, Portland,ME,04101 +289380,USB-C Charging Cable,3,11.95,2019-11-30 07:56:00,574 2nd St, Atlanta,GA,30301 +289381,27in FHD Monitor,1,149.99,2019-11-24 00:37:00,479 Jackson St, San Francisco,CA,94016 +289382,AAA Batteries (4-pack),1,2.99,2019-11-25 16:55:00,155 9th St, New York City,NY,10001 +289383,AA Batteries (4-pack),1,3.84,2019-11-23 12:18:00,136 14th St, San Francisco,CA,94016 +289384,Wired Headphones,1,11.99,2019-11-30 11:41:00,268 5th St, San Francisco,CA,94016 +289385,USB-C Charging Cable,1,11.95,2019-11-21 19:13:00,660 Church St, Austin,TX,73301 +289386,Wired Headphones,1,11.99,2019-11-18 01:12:00,536 13th St, Boston,MA,02215 +289387,Lightning Charging Cable,1,14.95,2019-11-14 14:22:00,40 4th St, Dallas,TX,75001 +289388,34in Ultrawide Monitor,1,379.99,2019-11-16 14:45:00,580 9th St, Seattle,WA,98101 +289389,AAA Batteries (4-pack),1,2.99,2019-11-27 19:07:00,744 Wilson St, San Francisco,CA,94016 +289390,USB-C Charging Cable,2,11.95,2019-11-28 19:29:00,453 North St, Dallas,TX,75001 +289391,Wired Headphones,1,11.99,2019-11-02 20:11:00,604 Lake St, San Francisco,CA,94016 +289392,Lightning Charging Cable,1,14.95,2019-11-23 10:33:00,614 10th St, New York City,NY,10001 +289393,USB-C Charging Cable,1,11.95,2019-11-29 21:37:00,63 10th St, Seattle,WA,98101 +289394,34in Ultrawide Monitor,1,379.99,2019-11-28 20:51:00,290 Jackson St, Boston,MA,02215 +289395,AA Batteries (4-pack),1,3.84,2019-11-24 18:20:00,827 13th St, Los Angeles,CA,90001 +289396,iPhone,1,700.0,2019-11-15 21:48:00,849 10th St, Boston,MA,02215 +289396,Wired Headphones,1,11.99,2019-11-15 21:48:00,849 10th St, Boston,MA,02215 +289397,AA Batteries (4-pack),1,3.84,2019-11-21 16:22:00,113 Center St, Los Angeles,CA,90001 +289398,Bose SoundSport Headphones,1,99.99,2019-11-08 10:35:00,615 Cherry St, New York City,NY,10001 +289399,AAA Batteries (4-pack),2,2.99,2019-11-27 20:46:00,333 11th St, Portland,OR,97035 +289400,Wired Headphones,1,11.99,2019-11-04 10:24:00,552 North St, Portland,OR,97035 +289401,Lightning Charging Cable,1,14.95,2019-11-11 21:12:00,501 Lake St, Los Angeles,CA,90001 +289402,Wired Headphones,1,11.99,2019-11-03 12:37:00,747 Chestnut St, Atlanta,GA,30301 +289403,AAA Batteries (4-pack),1,2.99,2019-11-16 13:56:00,386 Main St, Los Angeles,CA,90001 +289404,Lightning Charging Cable,1,14.95,2019-11-27 18:22:00,460 Main St, Boston,MA,02215 +289405,Apple Airpods Headphones,1,150.0,2019-11-18 20:21:00,637 Main St, San Francisco,CA,94016 +289405,Lightning Charging Cable,1,14.95,2019-11-18 20:21:00,637 Main St, San Francisco,CA,94016 +289406,Flatscreen TV,1,300.0,2019-11-07 08:36:00,183 Pine St, Boston,MA,02215 +289407,Lightning Charging Cable,1,14.95,2019-11-30 10:05:00,235 10th St, Los Angeles,CA,90001 +289408,Wired Headphones,1,11.99,2019-11-06 09:39:00,500 Hill St, San Francisco,CA,94016 +289409,Apple Airpods Headphones,1,150.0,2019-11-08 10:30:00,653 7th St, San Francisco,CA,94016 +289410,Macbook Pro Laptop,1,1700.0,2019-11-15 18:45:00,397 River St, New York City,NY,10001 +289411,AAA Batteries (4-pack),1,2.99,2019-11-19 12:58:00,114 14th St, Los Angeles,CA,90001 +289411,Lightning Charging Cable,1,14.95,2019-11-19 12:58:00,114 14th St, Los Angeles,CA,90001 +289412,Macbook Pro Laptop,1,1700.0,2019-11-20 14:22:00,783 Jackson St, New York City,NY,10001 +289413,USB-C Charging Cable,1,11.95,2019-11-02 05:33:00,115 Lakeview St, San Francisco,CA,94016 +289414,27in FHD Monitor,1,149.99,2019-11-16 12:25:00,433 Ridge St, San Francisco,CA,94016 +289415,AA Batteries (4-pack),1,3.84,2019-11-07 14:50:00,203 Adams St, Los Angeles,CA,90001 +289416,AAA Batteries (4-pack),2,2.99,2019-11-15 12:16:00,562 9th St, Seattle,WA,98101 +289417,AAA Batteries (4-pack),1,2.99,2019-11-17 12:13:00,202 Chestnut St, Boston,MA,02215 +289418,ThinkPad Laptop,1,999.99,2019-11-06 21:13:00,428 11th St, Boston,MA,02215 +289419,27in FHD Monitor,1,149.99,2019-11-27 16:28:00,164 Center St, Los Angeles,CA,90001 +289420,Lightning Charging Cable,1,14.95,2019-11-04 11:23:00,560 Madison St, Atlanta,GA,30301 +289420,Bose SoundSport Headphones,1,99.99,2019-11-04 11:23:00,560 Madison St, Atlanta,GA,30301 +289421,Lightning Charging Cable,1,14.95,2019-11-08 18:58:00,533 North St, San Francisco,CA,94016 +289422,ThinkPad Laptop,1,999.99,2019-11-23 14:15:00,423 Chestnut St, Seattle,WA,98101 +289423,AAA Batteries (4-pack),1,2.99,2019-11-20 19:02:00,357 Madison St, Seattle,WA,98101 +289424,Apple Airpods Headphones,1,150.0,2019-11-11 13:28:00,467 Washington St, New York City,NY,10001 +289425,Apple Airpods Headphones,1,150.0,2019-11-18 11:00:00,283 Ridge St, Boston,MA,02215 +289426,iPhone,1,700.0,2019-11-24 11:14:00,681 Forest St, Los Angeles,CA,90001 +289427,AAA Batteries (4-pack),2,2.99,2019-11-17 23:20:00,314 Meadow St, Atlanta,GA,30301 +289428,Lightning Charging Cable,1,14.95,2019-11-16 20:01:00,554 Adams St, Dallas,TX,75001 +289429,Lightning Charging Cable,1,14.95,2019-11-25 21:50:00,601 6th St, Atlanta,GA,30301 +289430,AAA Batteries (4-pack),1,2.99,2019-11-27 16:36:00,558 7th St, San Francisco,CA,94016 +289431,AA Batteries (4-pack),1,3.84,2019-11-26 21:10:00,141 7th St, Portland,OR,97035 +289432,AA Batteries (4-pack),1,3.84,2019-11-17 18:41:00,42 Chestnut St, Los Angeles,CA,90001 +289433,Apple Airpods Headphones,2,150.0,2019-11-19 18:09:00,491 Spruce St, Boston,MA,02215 +289434,Bose SoundSport Headphones,1,99.99,2019-11-01 17:05:00,296 12th St, San Francisco,CA,94016 +289435,Bose SoundSport Headphones,1,99.99,2019-11-07 18:50:00,150 Adams St, Seattle,WA,98101 +289436,Bose SoundSport Headphones,1,99.99,2019-11-01 12:25:00,556 11th St, Los Angeles,CA,90001 +289437,AAA Batteries (4-pack),4,2.99,2019-11-19 09:37:00,944 13th St, Los Angeles,CA,90001 +289438,USB-C Charging Cable,1,11.95,2019-11-28 20:09:00,535 Lakeview St, New York City,NY,10001 +289439,Wired Headphones,1,11.99,2019-11-08 11:44:00,577 Park St, Los Angeles,CA,90001 +289440,Apple Airpods Headphones,1,150.0,2019-11-20 19:58:00,436 9th St, New York City,NY,10001 +289441,AAA Batteries (4-pack),1,2.99,2019-11-29 13:53:00,660 Church St, Los Angeles,CA,90001 +289442,AA Batteries (4-pack),1,3.84,2019-11-27 12:49:00,191 Center St, Portland,OR,97035 +289443,iPhone,1,700.0,2019-11-18 21:38:00,600 14th St, Los Angeles,CA,90001 +289444,AAA Batteries (4-pack),1,2.99,2019-11-14 15:28:00,219 Chestnut St, Los Angeles,CA,90001 +289445,Lightning Charging Cable,1,14.95,2019-11-03 11:13:00,389 4th St, Los Angeles,CA,90001 +289446,Lightning Charging Cable,1,14.95,2019-11-23 21:25:00,39 West St, New York City,NY,10001 +289447,27in 4K Gaming Monitor,1,389.99,2019-11-02 17:00:00,354 2nd St, Dallas,TX,75001 +289448,Apple Airpods Headphones,1,150.0,2019-11-25 17:10:00,845 10th St, San Francisco,CA,94016 +289449,Apple Airpods Headphones,1,150.0,2019-11-20 23:10:00,241 Washington St, Seattle,WA,98101 +289450,Lightning Charging Cable,1,14.95,2019-11-08 19:45:00,584 Hickory St, Los Angeles,CA,90001 +289451,Bose SoundSport Headphones,1,99.99,2019-11-13 10:29:00,186 Hill St, Austin,TX,73301 +289452,Lightning Charging Cable,1,14.95,2019-11-29 10:25:00,285 Willow St, San Francisco,CA,94016 +289453,AAA Batteries (4-pack),1,2.99,2019-11-07 10:56:00,461 Meadow St, San Francisco,CA,94016 +289454,Bose SoundSport Headphones,1,99.99,2019-11-30 14:43:00,524 Lincoln St, San Francisco,CA,94016 +289455,AA Batteries (4-pack),1,3.84,2019-11-21 19:52:00,880 Main St, San Francisco,CA,94016 +289456,Lightning Charging Cable,1,14.95,2019-11-23 21:23:00,65 Johnson St, New York City,NY,10001 +289457,Wired Headphones,1,11.99,2019-11-18 20:49:00,972 West St, San Francisco,CA,94016 +289457,Bose SoundSport Headphones,1,99.99,2019-11-18 20:49:00,972 West St, San Francisco,CA,94016 +289458,AA Batteries (4-pack),1,3.84,2019-11-05 15:03:00,20 Chestnut St, Los Angeles,CA,90001 +289459,27in 4K Gaming Monitor,1,389.99,2019-11-30 14:27:00,968 13th St, Boston,MA,02215 +289460,Wired Headphones,1,11.99,2019-11-01 20:25:00,507 Cherry St, Los Angeles,CA,90001 +289461,34in Ultrawide Monitor,1,379.99,2019-11-15 08:14:00,526 Jefferson St, New York City,NY,10001 +289461,27in FHD Monitor,1,149.99,2019-11-15 08:14:00,526 Jefferson St, New York City,NY,10001 +289462,USB-C Charging Cable,2,11.95,2019-11-13 13:37:00,378 Lake St, San Francisco,CA,94016 +289463,iPhone,1,700.0,2019-11-27 13:32:00,60 13th St, Boston,MA,02215 +289463,Lightning Charging Cable,1,14.95,2019-11-27 13:32:00,60 13th St, Boston,MA,02215 +289464,27in FHD Monitor,1,149.99,2019-11-28 21:06:00,429 Forest St, Austin,TX,73301 +289465,AA Batteries (4-pack),1,3.84,2019-11-08 19:22:00,496 Johnson St, Austin,TX,73301 +289466,Wired Headphones,1,11.99,2019-11-05 13:47:00,260 Johnson St, Boston,MA,02215 +289467,Wired Headphones,1,11.99,2019-11-11 05:02:00,936 2nd St, Portland,OR,97035 +289468,27in FHD Monitor,1,149.99,2019-11-27 14:00:00,129 River St, Seattle,WA,98101 +289469,27in FHD Monitor,1,149.99,2019-11-07 16:55:00,292 Washington St, New York City,NY,10001 +289470,USB-C Charging Cable,1,11.95,2019-11-25 11:36:00,590 North St, Atlanta,GA,30301 +289471,20in Monitor,1,109.99,2019-11-22 17:51:00,180 Jackson St, Dallas,TX,75001 +289472,Bose SoundSport Headphones,1,99.99,2019-11-20 14:44:00,424 Dogwood St, Seattle,WA,98101 +289473,Wired Headphones,1,11.99,2019-11-29 23:31:00,310 Sunset St, New York City,NY,10001 +289473,Apple Airpods Headphones,1,150.0,2019-11-29 23:31:00,310 Sunset St, New York City,NY,10001 +289474,AAA Batteries (4-pack),3,2.99,2019-11-28 10:18:00,421 Lake St, New York City,NY,10001 +289475,Wired Headphones,1,11.99,2019-11-12 17:49:00,346 Cherry St, San Francisco,CA,94016 +289476,Bose SoundSport Headphones,1,99.99,2019-11-01 20:11:00,503 Jefferson St, Seattle,WA,98101 +289477,AAA Batteries (4-pack),1,2.99,2019-11-22 00:25:00,99 4th St, Dallas,TX,75001 +289478,Apple Airpods Headphones,1,150.0,2019-11-08 21:44:00,537 Lake St, San Francisco,CA,94016 +289479,Apple Airpods Headphones,1,150.0,2019-11-17 22:30:00,446 Wilson St, Dallas,TX,75001 +289480,Lightning Charging Cable,1,14.95,2019-11-14 18:10:00,585 Park St, Boston,MA,02215 +289481,Lightning Charging Cable,1,14.95,2019-11-02 22:20:00,953 Center St, New York City,NY,10001 +289482,27in FHD Monitor,1,149.99,2019-11-15 23:45:00,922 Church St, Boston,MA,02215 +289483,Lightning Charging Cable,1,14.95,2019-11-03 11:23:00,960 Lake St, San Francisco,CA,94016 +289484,Apple Airpods Headphones,1,150.0,2019-11-16 22:30:00,275 5th St, Seattle,WA,98101 +289485,27in FHD Monitor,1,149.99,2019-11-25 17:23:00,135 7th St, Atlanta,GA,30301 +289486,Bose SoundSport Headphones,1,99.99,2019-11-27 15:46:00,195 West St, Austin,TX,73301 +289487,iPhone,1,700.0,2019-11-27 11:06:00,793 Chestnut St, San Francisco,CA,94016 +289488,AAA Batteries (4-pack),4,2.99,2019-11-20 08:20:00,21 Elm St, Los Angeles,CA,90001 +289489,27in FHD Monitor,1,149.99,2019-11-18 12:42:00,555 Pine St, Seattle,WA,98101 +289490,Vareebadd Phone,1,400.0,2019-11-27 19:14:00,30 Cherry St, Los Angeles,CA,90001 +289491,iPhone,1,700.0,2019-11-19 13:59:00,294 Walnut St, San Francisco,CA,94016 +289492,Flatscreen TV,2,300.0,2019-11-22 14:41:00,750 Sunset St, San Francisco,CA,94016 +289493,AAA Batteries (4-pack),1,2.99,2019-11-28 13:47:00,667 Lake St, San Francisco,CA,94016 +289494,ThinkPad Laptop,1,999.99,2019-11-28 10:00:00,530 Hill St, Austin,TX,73301 +289495,Flatscreen TV,1,300.0,2019-11-18 11:07:00,8 Maple St, Los Angeles,CA,90001 +289496,Google Phone,1,600.0,2019-11-14 19:15:00,886 South St, San Francisco,CA,94016 +289497,Apple Airpods Headphones,1,150.0,2019-11-15 20:01:00,454 Main St, Los Angeles,CA,90001 +289498,AA Batteries (4-pack),1,3.84,2019-11-23 10:06:00,570 Meadow St, Seattle,WA,98101 +289499,Wired Headphones,1,11.99,2019-11-07 14:14:00,519 Hickory St, New York City,NY,10001 +289500,Wired Headphones,1,11.99,2019-11-29 20:30:00,943 Washington St, Austin,TX,73301 +289501,Google Phone,1,600.0,2019-11-09 15:54:00,960 Madison St, San Francisco,CA,94016 +289501,USB-C Charging Cable,1,11.95,2019-11-09 15:54:00,960 Madison St, San Francisco,CA,94016 +289502,AA Batteries (4-pack),3,3.84,2019-11-06 17:23:00,738 Pine St, Atlanta,GA,30301 +289503,Macbook Pro Laptop,1,1700.0,2019-11-27 15:14:00,735 Forest St, Boston,MA,02215 +289504,USB-C Charging Cable,1,11.95,2019-11-22 13:29:00,596 10th St, Boston,MA,02215 +289505,27in 4K Gaming Monitor,1,389.99,2019-11-03 14:21:00,567 Johnson St, New York City,NY,10001 +289506,Bose SoundSport Headphones,1,99.99,2019-11-05 11:35:00,818 Lincoln St, Boston,MA,02215 +289507,Bose SoundSport Headphones,1,99.99,2019-11-19 17:48:00,930 Hill St, Portland,OR,97035 +289508,Apple Airpods Headphones,1,150.0,2019-11-25 23:08:00,341 1st St, San Francisco,CA,94016 +289509,AA Batteries (4-pack),2,3.84,2019-11-26 17:47:00,185 Main St, San Francisco,CA,94016 +289510,Lightning Charging Cable,1,14.95,2019-11-27 08:41:00,195 Pine St, Atlanta,GA,30301 +289511,Apple Airpods Headphones,1,150.0,2019-11-13 18:43:00,348 Cherry St, San Francisco,CA,94016 +289512,34in Ultrawide Monitor,1,379.99,2019-11-08 07:39:00,416 1st St, San Francisco,CA,94016 +289513,USB-C Charging Cable,1,11.95,2019-11-02 12:46:00,634 West St, Boston,MA,02215 +289514,Lightning Charging Cable,1,14.95,2019-11-03 19:46:00,216 Church St, San Francisco,CA,94016 +289514,AA Batteries (4-pack),1,3.84,2019-11-03 19:46:00,216 Church St, San Francisco,CA,94016 +289515,Google Phone,1,600.0,2019-11-08 08:44:00,334 Sunset St, New York City,NY,10001 +289516,Wired Headphones,2,11.99,2019-11-19 16:59:00,308 Elm St, New York City,NY,10001 +289517,Google Phone,1,600.0,2019-11-14 22:12:00,229 Spruce St, Boston,MA,02215 +289518,Apple Airpods Headphones,1,150.0,2019-11-13 14:09:00,566 Jackson St, San Francisco,CA,94016 +289519,ThinkPad Laptop,1,999.99,2019-11-07 19:27:00,643 Church St, Los Angeles,CA,90001 +289519,iPhone,1,700.0,2019-11-07 19:27:00,643 Church St, Los Angeles,CA,90001 +289520,USB-C Charging Cable,1,11.95,2019-11-17 22:28:00,753 Dogwood St, New York City,NY,10001 +289521,Google Phone,1,600.0,2019-11-13 09:45:00,99 7th St, Boston,MA,02215 +289522,34in Ultrawide Monitor,1,379.99,2019-11-21 19:26:00,113 2nd St, San Francisco,CA,94016 +289523,USB-C Charging Cable,1,11.95,2019-11-08 19:08:00,241 Lincoln St, San Francisco,CA,94016 +289524,iPhone,1,700.0,2019-11-15 23:03:00,132 Highland St, Portland,ME,04101 +289525,AAA Batteries (4-pack),3,2.99,2019-11-23 21:56:00,801 Ridge St, Boston,MA,02215 +289526,AAA Batteries (4-pack),2,2.99,2019-11-12 18:52:00,640 Ridge St, Seattle,WA,98101 +289527,AAA Batteries (4-pack),1,2.99,2019-11-04 09:22:00,839 Chestnut St, Seattle,WA,98101 +289528,Google Phone,1,600.0,2019-11-25 09:32:00,930 12th St, New York City,NY,10001 +289528,Wired Headphones,1,11.99,2019-11-25 09:32:00,930 12th St, New York City,NY,10001 +289529,AA Batteries (4-pack),2,3.84,2019-11-19 15:53:00,919 Ridge St, San Francisco,CA,94016 +289530,Wired Headphones,1,11.99,2019-11-21 22:28:00,229 River St, New York City,NY,10001 +289531,34in Ultrawide Monitor,1,379.99,2019-11-26 22:52:00,964 River St, San Francisco,CA,94016 +289532,iPhone,1,700.0,2019-11-09 12:26:00,215 Park St, Austin,TX,73301 +289533,Apple Airpods Headphones,1,150.0,2019-11-08 15:53:00,168 River St, Seattle,WA,98101 +289534,Apple Airpods Headphones,1,150.0,2019-11-13 19:04:00,509 Dogwood St, Los Angeles,CA,90001 +289535,Wired Headphones,1,11.99,2019-11-24 22:44:00,365 11th St, New York City,NY,10001 +289536,Bose SoundSport Headphones,1,99.99,2019-11-06 21:30:00,463 14th St, San Francisco,CA,94016 +289537,AA Batteries (4-pack),1,3.84,2019-11-09 09:13:00,736 Highland St, Atlanta,GA,30301 +289538,USB-C Charging Cable,1,11.95,2019-11-06 17:57:00,843 12th St, Boston,MA,02215 +289539,Wired Headphones,1,11.99,2019-11-07 15:26:00,341 6th St, Seattle,WA,98101 +289540,USB-C Charging Cable,1,11.95,2019-11-06 19:57:00,89 10th St, Boston,MA,02215 +289541,AA Batteries (4-pack),1,3.84,2019-11-12 13:44:00,108 4th St, Los Angeles,CA,90001 +289542,27in 4K Gaming Monitor,1,389.99,2019-11-21 10:10:00,395 6th St, Los Angeles,CA,90001 +289543,Apple Airpods Headphones,1,150.0,2019-11-03 12:32:00,759 North St, San Francisco,CA,94016 +289544,AAA Batteries (4-pack),3,2.99,2019-11-02 11:42:00,170 12th St, San Francisco,CA,94016 +289545,Lightning Charging Cable,1,14.95,2019-11-03 12:17:00,355 Hill St, San Francisco,CA,94016 +289546,ThinkPad Laptop,1,999.99,2019-11-08 19:37:00,603 Lincoln St, Atlanta,GA,30301 +289547,Apple Airpods Headphones,1,150.0,2019-11-06 23:47:00,627 Highland St, Dallas,TX,75001 +289548,Macbook Pro Laptop,1,1700.0,2019-11-13 17:23:00,266 10th St, Boston,MA,02215 +289549,Lightning Charging Cable,1,14.95,2019-11-26 12:26:00,998 Main St, Seattle,WA,98101 +289550,USB-C Charging Cable,1,11.95,2019-11-13 13:18:00,634 Jackson St, Atlanta,GA,30301 +289551,Wired Headphones,1,11.99,2019-11-27 17:33:00,626 13th St, Boston,MA,02215 +289552,Macbook Pro Laptop,1,1700.0,2019-11-18 17:46:00,317 Wilson St, Austin,TX,73301 +289553,AAA Batteries (4-pack),5,2.99,2019-11-18 14:52:00,914 Maple St, Los Angeles,CA,90001 +289554,AAA Batteries (4-pack),1,2.99,2019-11-14 13:26:00,437 North St, Dallas,TX,75001 +289555,AAA Batteries (4-pack),1,2.99,2019-11-22 17:24:00,395 5th St, San Francisco,CA,94016 +289556,AA Batteries (4-pack),1,3.84,2019-11-27 14:01:00,854 Church St, New York City,NY,10001 +289557,Bose SoundSport Headphones,1,99.99,2019-11-20 11:09:00,569 Jackson St, San Francisco,CA,94016 +289558,20in Monitor,1,109.99,2019-11-18 12:35:00,971 Wilson St, Los Angeles,CA,90001 +289559,Wired Headphones,1,11.99,2019-11-23 21:36:00,184 Willow St, Seattle,WA,98101 +289560,AAA Batteries (4-pack),1,2.99,2019-11-01 12:00:00,969 Main St, Seattle,WA,98101 +289561,Bose SoundSport Headphones,1,99.99,2019-11-16 12:23:00,52 Pine St, Los Angeles,CA,90001 +289562,Wired Headphones,1,11.99,2019-11-09 20:32:00,705 14th St, Atlanta,GA,30301 +289563,27in FHD Monitor,1,149.99,2019-11-05 15:09:00,877 Dogwood St, Los Angeles,CA,90001 +289564,AAA Batteries (4-pack),1,2.99,2019-11-29 15:45:00,277 Meadow St, Los Angeles,CA,90001 +289565,AA Batteries (4-pack),2,3.84,2019-11-01 12:01:00,392 Cedar St, Dallas,TX,75001 +289566,Apple Airpods Headphones,1,150.0,2019-11-26 08:18:00,241 Church St, San Francisco,CA,94016 +289567,iPhone,1,700.0,2019-11-23 17:56:00,557 Forest St, San Francisco,CA,94016 +289568,AA Batteries (4-pack),1,3.84,2019-11-24 19:13:00,911 Willow St, San Francisco,CA,94016 +289569,Apple Airpods Headphones,1,150.0,2019-11-10 11:19:00,984 12th St, Portland,ME,04101 +289570,Lightning Charging Cable,1,14.95,2019-11-27 12:07:00,685 Lincoln St, New York City,NY,10001 +289571,Macbook Pro Laptop,1,1700.0,2019-11-11 19:06:00,838 12th St, San Francisco,CA,94016 +289572,27in FHD Monitor,1,149.99,2019-11-16 20:40:00,19 Jefferson St, Los Angeles,CA,90001 +289573,AA Batteries (4-pack),1,3.84,2019-11-05 17:31:00,882 Pine St, Dallas,TX,75001 +289574,AA Batteries (4-pack),1,3.84,2019-11-20 14:01:00,655 Chestnut St, San Francisco,CA,94016 +289575,USB-C Charging Cable,1,11.95,2019-11-07 10:38:00,257 10th St, Atlanta,GA,30301 +289576,ThinkPad Laptop,1,999.99,2019-11-17 14:06:00,809 9th St, San Francisco,CA,94016 +289577,Apple Airpods Headphones,1,150.0,2019-11-20 01:34:00,600 Highland St, Los Angeles,CA,90001 +289578,Lightning Charging Cable,1,14.95,2019-11-11 08:02:00,401 Chestnut St, Los Angeles,CA,90001 +289579,AAA Batteries (4-pack),1,2.99,2019-11-09 19:10:00,491 12th St, Atlanta,GA,30301 +289580,27in FHD Monitor,1,149.99,2019-11-26 16:55:00,510 Sunset St, San Francisco,CA,94016 +289581,USB-C Charging Cable,1,11.95,2019-11-17 17:00:00,75 West St, Boston,MA,02215 +289582,Wired Headphones,1,11.99,2019-11-19 18:25:00,354 2nd St, San Francisco,CA,94016 +289583,Macbook Pro Laptop,1,1700.0,2019-11-09 11:44:00,382 14th St, Dallas,TX,75001 +289584,Apple Airpods Headphones,1,150.0,2019-11-02 15:17:00,996 5th St, Portland,OR,97035 +289585,AAA Batteries (4-pack),1,2.99,2019-11-07 15:43:00,866 Willow St, New York City,NY,10001 +289586,AA Batteries (4-pack),2,3.84,2019-11-11 15:11:00,926 South St, Boston,MA,02215 +289587,AAA Batteries (4-pack),1,2.99,2019-11-06 10:45:00,9 2nd St, Atlanta,GA,30301 +289588,Lightning Charging Cable,1,14.95,2019-11-25 23:57:00,457 12th St, New York City,NY,10001 +289589,Wired Headphones,2,11.99,2019-11-09 10:11:00,152 Forest St, New York City,NY,10001 +289590,Lightning Charging Cable,1,14.95,2019-11-07 00:24:00,439 5th St, Los Angeles,CA,90001 +289591,Apple Airpods Headphones,1,150.0,2019-11-28 19:44:00,904 River St, Los Angeles,CA,90001 +289592,AAA Batteries (4-pack),2,2.99,2019-11-10 09:46:00,772 Sunset St, San Francisco,CA,94016 +289593,Lightning Charging Cable,1,14.95,2019-11-28 23:29:00,255 Highland St, San Francisco,CA,94016 +289594,Bose SoundSport Headphones,1,99.99,2019-11-22 09:09:00,910 14th St, Austin,TX,73301 +289595,AAA Batteries (4-pack),1,2.99,2019-11-07 09:34:00,334 Church St, New York City,NY,10001 +289596,27in FHD Monitor,1,149.99,2019-11-09 20:00:00,854 8th St, Austin,TX,73301 +289597,Bose SoundSport Headphones,1,99.99,2019-11-11 01:50:00,534 Center St, Atlanta,GA,30301 +289598,Bose SoundSport Headphones,1,99.99,2019-11-17 10:44:00,826 Washington St, Los Angeles,CA,90001 +289599,Apple Airpods Headphones,1,150.0,2019-11-29 13:54:00,306 Chestnut St, Portland,OR,97035 +289599,AA Batteries (4-pack),3,3.84,2019-11-29 13:54:00,306 Chestnut St, Portland,OR,97035 +289600,AA Batteries (4-pack),2,3.84,2019-11-14 21:24:00,707 Forest St, New York City,NY,10001 +289601,AA Batteries (4-pack),2,3.84,2019-11-28 02:08:00,563 13th St, Los Angeles,CA,90001 +289602,27in 4K Gaming Monitor,1,389.99,2019-11-01 22:21:00,872 Lakeview St, Portland,ME,04101 +289603,Lightning Charging Cable,1,14.95,2019-11-04 20:34:00,958 10th St, San Francisco,CA,94016 +289604,AAA Batteries (4-pack),1,2.99,2019-11-09 09:29:00,215 7th St, San Francisco,CA,94016 +289605,20in Monitor,1,109.99,2019-11-24 15:18:00,525 Wilson St, Atlanta,GA,30301 +289606,27in 4K Gaming Monitor,1,389.99,2019-12-01 00:26:00,722 Adams St, Los Angeles,CA,90001 +289607,AA Batteries (4-pack),1,3.84,2019-11-30 20:50:00,110 North St, San Francisco,CA,94016 +289608,LG Dryer,1,600.0,2019-11-19 16:11:00,229 Willow St, Dallas,TX,75001 +289609,Apple Airpods Headphones,1,150.0,2019-11-11 00:57:00,194 Lake St, Portland,OR,97035 +289610,iPhone,1,700.0,2019-11-23 17:51:00,88 Cedar St, San Francisco,CA,94016 +289611,27in 4K Gaming Monitor,1,389.99,2019-11-01 07:36:00,250 Chestnut St, San Francisco,CA,94016 +289612,Apple Airpods Headphones,1,150.0,2019-11-22 12:35:00,725 10th St, Dallas,TX,75001 +289613,Wired Headphones,1,11.99,2019-11-08 12:20:00,55 Washington St, San Francisco,CA,94016 +289614,Apple Airpods Headphones,1,150.0,2019-11-24 15:26:00,888 Adams St, Boston,MA,02215 +289615,AAA Batteries (4-pack),2,2.99,2019-11-29 20:44:00,816 Willow St, Austin,TX,73301 +289616,Apple Airpods Headphones,1,150.0,2019-11-30 23:10:00,353 West St, New York City,NY,10001 +289617,Wired Headphones,1,11.99,2019-11-11 19:38:00,736 Willow St, Dallas,TX,75001 +289618,USB-C Charging Cable,1,11.95,2019-11-17 21:03:00,328 Elm St, Boston,MA,02215 +289619,Wired Headphones,1,11.99,2019-11-25 10:20:00,341 5th St, Seattle,WA,98101 +289620,AA Batteries (4-pack),4,3.84,2019-11-10 17:04:00,514 Hill St, San Francisco,CA,94016 +289621,AAA Batteries (4-pack),1,2.99,2019-11-07 17:43:00,952 Main St, Seattle,WA,98101 +289622,USB-C Charging Cable,1,11.95,2019-11-08 11:22:00,177 Washington St, Seattle,WA,98101 +289623,Lightning Charging Cable,1,14.95,2019-11-16 20:09:00,328 Meadow St, New York City,NY,10001 +289624,27in FHD Monitor,1,149.99,2019-11-17 18:39:00,942 Lakeview St, Dallas,TX,75001 +289625,27in 4K Gaming Monitor,1,389.99,2019-11-08 17:19:00,264 6th St, San Francisco,CA,94016 +289626,20in Monitor,1,109.99,2019-11-16 12:50:00,436 Center St, Seattle,WA,98101 +289627,AAA Batteries (4-pack),1,2.99,2019-11-26 05:37:00,436 1st St, New York City,NY,10001 +289628,USB-C Charging Cable,2,11.95,2019-11-26 13:09:00,901 Cherry St, New York City,NY,10001 +289629,USB-C Charging Cable,1,11.95,2019-11-21 22:08:00,80 Meadow St, Portland,OR,97035 +289630,Vareebadd Phone,1,400.0,2019-11-23 14:33:00,855 Johnson St, Atlanta,GA,30301 +289631,Google Phone,1,600.0,2019-11-14 13:14:00,374 North St, Seattle,WA,98101 +289631,USB-C Charging Cable,1,11.95,2019-11-14 13:14:00,374 North St, Seattle,WA,98101 +289632,Wired Headphones,3,11.99,2019-11-08 16:46:00,770 Jefferson St, San Francisco,CA,94016 +289633,Lightning Charging Cable,1,14.95,2019-11-23 22:49:00,765 Madison St, Portland,ME,04101 +289634,20in Monitor,1,109.99,2019-11-24 21:52:00,958 9th St, Seattle,WA,98101 +289635,Wired Headphones,1,11.99,2019-11-19 14:18:00,867 Madison St, Dallas,TX,75001 +289636,USB-C Charging Cable,1,11.95,2019-11-21 20:01:00,510 Johnson St, Portland,OR,97035 +289637,Lightning Charging Cable,1,14.95,2019-11-05 16:05:00,865 Washington St, Boston,MA,02215 +289638,ThinkPad Laptop,1,999.99,2019-11-19 19:54:00,457 Pine St, Austin,TX,73301 +289639,AA Batteries (4-pack),1,3.84,2019-11-15 13:38:00,937 Adams St, San Francisco,CA,94016 +289640,Bose SoundSport Headphones,1,99.99,2019-11-13 13:01:00,128 Park St, Atlanta,GA,30301 +289641,Wired Headphones,1,11.99,2019-11-12 15:02:00,273 6th St, Seattle,WA,98101 +289642,AAA Batteries (4-pack),2,2.99,2019-11-30 17:30:00,965 Jackson St, New York City,NY,10001 +289643,Wired Headphones,1,11.99,2019-11-06 15:48:00,61 Lakeview St, San Francisco,CA,94016 +289644,Wired Headphones,1,11.99,2019-11-13 14:57:00,58 Chestnut St, Seattle,WA,98101 +289645,Vareebadd Phone,1,400.0,2019-11-20 09:37:00,677 River St, Atlanta,GA,30301 +289646,Apple Airpods Headphones,1,150.0,2019-11-10 00:25:00,176 Madison St, Los Angeles,CA,90001 +289647,27in 4K Gaming Monitor,1,389.99,2019-11-01 11:23:00,587 Johnson St, Atlanta,GA,30301 +289648,USB-C Charging Cable,1,11.95,2019-11-29 14:17:00,828 South St, San Francisco,CA,94016 +289649,USB-C Charging Cable,1,11.95,2019-11-01 20:15:00,412 1st St, New York City,NY,10001 +289650,Flatscreen TV,1,300.0,2019-11-14 14:05:00,170 Church St, Portland,ME,04101 +289651,AAA Batteries (4-pack),1,2.99,2019-11-19 13:31:00,710 Maple St, San Francisco,CA,94016 +289652,Wired Headphones,1,11.99,2019-11-10 15:52:00,680 Park St, Austin,TX,73301 +289653,iPhone,1,700.0,2019-11-07 11:11:00,671 Ridge St, San Francisco,CA,94016 +289654,34in Ultrawide Monitor,1,379.99,2019-11-09 15:37:00,387 Maple St, Atlanta,GA,30301 +289655,USB-C Charging Cable,1,11.95,2019-11-08 15:32:00,924 Spruce St, Los Angeles,CA,90001 +289656,Google Phone,1,600.0,2019-11-03 20:36:00,340 Willow St, New York City,NY,10001 +289657,Wired Headphones,1,11.99,2019-11-14 17:01:00,508 Church St, New York City,NY,10001 +289658,USB-C Charging Cable,1,11.95,2019-11-09 12:34:00,130 Chestnut St, San Francisco,CA,94016 +289659,27in FHD Monitor,1,149.99,2019-11-28 10:45:00,507 Cherry St, Seattle,WA,98101 +289660,Macbook Pro Laptop,1,1700.0,2019-11-28 19:26:00,721 Willow St, San Francisco,CA,94016 +289661,AAA Batteries (4-pack),1,2.99,2019-11-25 13:56:00,118 Highland St, New York City,NY,10001 +289662,AAA Batteries (4-pack),1,2.99,2019-11-14 08:29:00,789 Willow St, San Francisco,CA,94016 +289662,AA Batteries (4-pack),1,3.84,2019-11-14 08:29:00,789 Willow St, San Francisco,CA,94016 +289663,Bose SoundSport Headphones,1,99.99,2019-11-01 17:30:00,410 Church St, New York City,NY,10001 +289664,Apple Airpods Headphones,1,150.0,2019-11-23 19:19:00,978 Park St, San Francisco,CA,94016 +289665,Macbook Pro Laptop,1,1700.0,2019-11-08 22:25:00,356 Center St, Boston,MA,02215 +289666,27in FHD Monitor,1,149.99,2019-11-21 10:41:00,712 Lincoln St, Los Angeles,CA,90001 +289667,iPhone,1,700.0,2019-11-21 13:20:00,46 Maple St, Seattle,WA,98101 +289668,Apple Airpods Headphones,1,150.0,2019-11-24 20:19:00,465 7th St, San Francisco,CA,94016 +289669,AA Batteries (4-pack),3,3.84,2019-11-14 18:34:00,427 12th St, Boston,MA,02215 +289670,USB-C Charging Cable,1,11.95,2019-11-12 20:30:00,467 Willow St, Los Angeles,CA,90001 +289671,Lightning Charging Cable,1,14.95,2019-11-06 17:13:00,809 Hill St, San Francisco,CA,94016 +289672,AAA Batteries (4-pack),2,2.99,2019-11-27 11:34:00,126 Main St, Atlanta,GA,30301 +289673,AAA Batteries (4-pack),1,2.99,2019-11-11 22:11:00,628 6th St, New York City,NY,10001 +289674,Lightning Charging Cable,1,14.95,2019-11-03 16:33:00,207 Washington St, Boston,MA,02215 +289675,Lightning Charging Cable,1,14.95,2019-11-04 17:29:00,833 Cedar St, Dallas,TX,75001 +289676,AAA Batteries (4-pack),1,2.99,2019-11-06 11:52:00,518 Meadow St, Boston,MA,02215 +289677,AAA Batteries (4-pack),2,2.99,2019-11-26 22:07:00,223 14th St, Seattle,WA,98101 +289678,USB-C Charging Cable,1,11.95,2019-11-19 10:43:00,581 Wilson St, New York City,NY,10001 +289679,Macbook Pro Laptop,1,1700.0,2019-11-28 13:54:00,714 Meadow St, San Francisco,CA,94016 +289680,Bose SoundSport Headphones,1,99.99,2019-11-18 13:59:00,619 12th St, New York City,NY,10001 +289681,Macbook Pro Laptop,1,1700.0,2019-11-09 22:41:00,447 South St, New York City,NY,10001 +289682,34in Ultrawide Monitor,1,379.99,2019-11-12 18:33:00,382 Lakeview St, Boston,MA,02215 +289683,27in FHD Monitor,1,149.99,2019-11-30 16:47:00,3 South St, Los Angeles,CA,90001 +289684,34in Ultrawide Monitor,1,379.99,2019-11-27 22:24:00,521 2nd St, Boston,MA,02215 +289685,20in Monitor,1,109.99,2019-11-24 01:05:00,316 Dogwood St, Atlanta,GA,30301 +289686,USB-C Charging Cable,1,11.95,2019-11-28 18:13:00,179 Madison St, San Francisco,CA,94016 +289687,27in FHD Monitor,1,149.99,2019-11-27 13:28:00,438 Madison St, San Francisco,CA,94016 +289688,Lightning Charging Cable,1,14.95,2019-11-21 15:34:00,513 Jefferson St, Austin,TX,73301 +289689,Bose SoundSport Headphones,1,99.99,2019-11-18 16:08:00,17 Willow St, Boston,MA,02215 +289690,Wired Headphones,1,11.99,2019-11-23 21:24:00,181 Hill St, Dallas,TX,75001 +289691,Lightning Charging Cable,1,14.95,2019-11-14 04:44:00,250 Adams St, Boston,MA,02215 +289692,AAA Batteries (4-pack),3,2.99,2019-11-05 15:48:00,474 8th St, Portland,ME,04101 +289693,iPhone,1,700.0,2019-11-27 12:46:00,267 10th St, San Francisco,CA,94016 +289694,USB-C Charging Cable,1,11.95,2019-11-11 19:09:00,742 2nd St, Dallas,TX,75001 +289695,Bose SoundSport Headphones,1,99.99,2019-11-20 23:26:00,879 2nd St, Seattle,WA,98101 +289696,USB-C Charging Cable,1,11.95,2019-11-20 12:15:00,893 Church St, Austin,TX,73301 +289697,Wired Headphones,1,11.99,2019-11-21 15:47:00,620 5th St, Austin,TX,73301 +289698,Lightning Charging Cable,1,14.95,2019-11-08 20:28:00,716 Hill St, Los Angeles,CA,90001 +289699,AAA Batteries (4-pack),2,2.99,2019-11-15 19:24:00,185 6th St, Portland,OR,97035 +289700,Flatscreen TV,1,300.0,2019-11-04 13:56:00,801 Cedar St, Portland,OR,97035 +289701,Lightning Charging Cable,1,14.95,2019-11-03 22:17:00,180 Chestnut St, Austin,TX,73301 +289702,Apple Airpods Headphones,1,150.0,2019-11-23 17:01:00,119 Pine St, Boston,MA,02215 +289703,AA Batteries (4-pack),1,3.84,2019-11-14 19:21:00,298 Washington St, New York City,NY,10001 +289703,Lightning Charging Cable,1,14.95,2019-11-14 19:21:00,298 Washington St, New York City,NY,10001 +289704,Wired Headphones,1,11.99,2019-11-07 19:43:00,509 Johnson St, San Francisco,CA,94016 +289705,Flatscreen TV,1,300.0,2019-11-06 07:43:00,163 Park St, New York City,NY,10001 +289706,Lightning Charging Cable,1,14.95,2019-11-08 16:25:00,319 Hickory St, New York City,NY,10001 +289707,Apple Airpods Headphones,1,150.0,2019-11-21 22:15:00,93 Willow St, Austin,TX,73301 +289708,AAA Batteries (4-pack),1,2.99,2019-11-29 21:49:00,274 12th St, Los Angeles,CA,90001 +289709,ThinkPad Laptop,1,999.99,2019-11-09 12:16:00,634 Pine St, Los Angeles,CA,90001 +289710,Wired Headphones,1,11.99,2019-11-23 09:24:00,779 14th St, San Francisco,CA,94016 +289711,AAA Batteries (4-pack),1,2.99,2019-11-13 20:34:00,67 8th St, San Francisco,CA,94016 +289712,USB-C Charging Cable,1,11.95,2019-11-11 14:08:00,512 Washington St, Portland,OR,97035 +289713,AA Batteries (4-pack),1,3.84,2019-11-03 15:41:00,859 Chestnut St, Los Angeles,CA,90001 +289714,Macbook Pro Laptop,1,1700.0,2019-11-26 05:44:00,405 5th St, New York City,NY,10001 +289715,iPhone,1,700.0,2019-11-26 15:48:00,725 Washington St, Los Angeles,CA,90001 +289715,Lightning Charging Cable,1,14.95,2019-11-26 15:48:00,725 Washington St, Los Angeles,CA,90001 +289716,Bose SoundSport Headphones,1,99.99,2019-11-02 16:43:00,953 Wilson St, Austin,TX,73301 +289717,AAA Batteries (4-pack),7,2.99,2019-11-06 03:12:00,131 Chestnut St, Atlanta,GA,30301 +289718,Wired Headphones,1,11.99,2019-11-24 20:07:00,298 12th St, Austin,TX,73301 +289719,Macbook Pro Laptop,1,1700.0,2019-11-05 23:00:00,461 Cedar St, Atlanta,GA,30301 +289720,Bose SoundSport Headphones,1,99.99,2019-11-12 12:18:00,587 Walnut St, New York City,NY,10001 +289721,Wired Headphones,1,11.99,2019-11-13 13:44:00,39 Cedar St, Los Angeles,CA,90001 +289722,Apple Airpods Headphones,1,150.0,2019-11-30 17:49:00,436 Highland St, Los Angeles,CA,90001 +289723,AAA Batteries (4-pack),1,2.99,2019-11-08 14:40:00,724 14th St, Boston,MA,02215 +289724,27in 4K Gaming Monitor,1,389.99,2019-11-17 13:26:00,758 6th St, San Francisco,CA,94016 +289725,AA Batteries (4-pack),2,3.84,2019-11-12 00:46:00,953 Wilson St, Los Angeles,CA,90001 +289726,Flatscreen TV,1,300.0,2019-11-16 23:38:00,394 Elm St, San Francisco,CA,94016 +289727,Lightning Charging Cable,1,14.95,2019-11-18 15:27:00,273 Spruce St, Atlanta,GA,30301 +289728,Lightning Charging Cable,1,14.95,2019-11-04 21:37:00,181 Jefferson St, Dallas,TX,75001 +289729,Lightning Charging Cable,1,14.95,2019-11-17 18:25:00,786 Lake St, Seattle,WA,98101 +289730,20in Monitor,1,109.99,2019-11-30 14:59:00,652 West St, New York City,NY,10001 +289731,AA Batteries (4-pack),2,3.84,2019-11-06 09:51:00,387 Johnson St, Boston,MA,02215 +289732,Apple Airpods Headphones,1,150.0,2019-11-29 15:33:00,866 5th St, Los Angeles,CA,90001 +289733,AAA Batteries (4-pack),1,2.99,2019-11-21 20:38:00,973 Jackson St, New York City,NY,10001 +289734,27in FHD Monitor,1,149.99,2019-11-28 19:01:00,116 Wilson St, Los Angeles,CA,90001 +289735,AA Batteries (4-pack),2,3.84,2019-11-18 09:01:00,908 Jefferson St, Austin,TX,73301 +289736,USB-C Charging Cable,1,11.95,2019-11-11 10:34:00,730 Chestnut St, Portland,OR,97035 +289737,Lightning Charging Cable,1,14.95,2019-11-07 12:58:00,608 South St, San Francisco,CA,94016 +289738,USB-C Charging Cable,1,11.95,2019-11-26 13:32:00,966 Cedar St, New York City,NY,10001 +289739,Macbook Pro Laptop,1,1700.0,2019-11-19 19:01:00,332 5th St, Boston,MA,02215 +289740,27in FHD Monitor,1,149.99,2019-11-16 23:03:00,917 14th St, Los Angeles,CA,90001 +289741,iPhone,1,700.0,2019-11-01 18:57:00,757 1st St, Boston,MA,02215 +289741,Wired Headphones,1,11.99,2019-11-01 18:57:00,757 1st St, Boston,MA,02215 +289742,Bose SoundSport Headphones,1,99.99,2019-11-29 07:45:00,861 Dogwood St, Boston,MA,02215 +289743,USB-C Charging Cable,2,11.95,2019-11-13 12:02:00,489 Hill St, Boston,MA,02215 +289744,Apple Airpods Headphones,1,150.0,2019-11-02 16:47:00,354 Center St, New York City,NY,10001 +289745,AAA Batteries (4-pack),3,2.99,2019-11-12 20:45:00,950 Walnut St, New York City,NY,10001 +289746,27in FHD Monitor,1,149.99,2019-11-03 21:23:00,501 Elm St, New York City,NY,10001 +289747,Lightning Charging Cable,1,14.95,2019-11-23 22:10:00,804 Jefferson St, Seattle,WA,98101 +289748,AAA Batteries (4-pack),1,2.99,2019-11-07 19:25:00,882 2nd St, Los Angeles,CA,90001 +289749,iPhone,1,700.0,2019-11-22 10:00:00,892 Jackson St, Dallas,TX,75001 +289750,AA Batteries (4-pack),1,3.84,2019-11-20 15:07:00,545 8th St, San Francisco,CA,94016 +289751,Flatscreen TV,1,300.0,2019-11-21 21:39:00,924 Madison St, Boston,MA,02215 +289752,Wired Headphones,1,11.99,2019-11-22 17:42:00,40 9th St, New York City,NY,10001 +289753,Google Phone,1,600.0,2019-11-15 09:20:00,499 Pine St, Dallas,TX,75001 +289754,Flatscreen TV,1,300.0,2019-11-30 22:21:00,964 Hill St, Dallas,TX,75001 +289755,AAA Batteries (4-pack),1,2.99,2019-11-13 06:10:00,872 Willow St, Dallas,TX,75001 +289756,USB-C Charging Cable,1,11.95,2019-11-27 17:20:00,501 Elm St, Dallas,TX,75001 +289757,Bose SoundSport Headphones,1,99.99,2019-11-20 18:05:00,943 Center St, San Francisco,CA,94016 +289758,AAA Batteries (4-pack),1,2.99,2019-11-10 13:14:00,909 Adams St, Los Angeles,CA,90001 +289759,20in Monitor,1,109.99,2019-11-06 11:12:00,214 2nd St, San Francisco,CA,94016 +289760,Wired Headphones,1,11.99,2019-11-25 21:23:00,990 Center St, Atlanta,GA,30301 +289761,Lightning Charging Cable,1,14.95,2019-11-07 01:34:00,507 10th St, Austin,TX,73301 +289762,AAA Batteries (4-pack),2,2.99,2019-11-14 17:25:00,382 Johnson St, Seattle,WA,98101 +289763,USB-C Charging Cable,1,11.95,2019-11-27 08:36:00,654 Meadow St, San Francisco,CA,94016 +289764,iPhone,1,700.0,2019-11-18 20:36:00,705 South St, New York City,NY,10001 +289765,27in 4K Gaming Monitor,1,389.99,2019-11-01 23:56:00,786 12th St, Los Angeles,CA,90001 +289766,AAA Batteries (4-pack),1,2.99,2019-11-01 19:08:00,660 Walnut St, Dallas,TX,75001 +289767,AA Batteries (4-pack),1,3.84,2019-11-29 20:58:00,787 7th St, Los Angeles,CA,90001 +289768,Wired Headphones,1,11.99,2019-11-18 06:46:00,124 1st St, Boston,MA,02215 +289769,Wired Headphones,1,11.99,2019-11-08 17:04:00,708 Elm St, San Francisco,CA,94016 +289770,AA Batteries (4-pack),1,3.84,2019-11-04 20:33:00,696 Spruce St, San Francisco,CA,94016 +289771,AAA Batteries (4-pack),1,2.99,2019-11-27 07:53:00,630 Cedar St, New York City,NY,10001 +289772,USB-C Charging Cable,1,11.95,2019-11-30 18:28:00,887 Wilson St, New York City,NY,10001 +289773,AA Batteries (4-pack),1,3.84,2019-11-09 09:14:00,835 Spruce St, Dallas,TX,75001 +289774,20in Monitor,1,109.99,2019-11-24 11:00:00,640 Main St, Boston,MA,02215 +289775,Google Phone,1,600.0,2019-11-05 22:25:00,988 Lincoln St, Boston,MA,02215 +289775,USB-C Charging Cable,1,11.95,2019-11-05 22:25:00,988 Lincoln St, Boston,MA,02215 +289776,20in Monitor,1,109.99,2019-11-22 15:16:00,758 5th St, Boston,MA,02215 +289777,AAA Batteries (4-pack),3,2.99,2019-11-10 12:24:00,260 Forest St, New York City,NY,10001 +289778,USB-C Charging Cable,1,11.95,2019-11-25 10:58:00,420 5th St, Los Angeles,CA,90001 +289779,Google Phone,1,600.0,2019-11-18 23:50:00,322 13th St, San Francisco,CA,94016 +289780,AAA Batteries (4-pack),2,2.99,2019-11-20 08:16:00,371 Adams St, Los Angeles,CA,90001 +289781,Bose SoundSport Headphones,1,99.99,2019-11-16 21:37:00,330 Chestnut St, New York City,NY,10001 +289782,27in 4K Gaming Monitor,1,389.99,2019-11-28 23:12:00,32 Elm St, San Francisco,CA,94016 +289783,Wired Headphones,1,11.99,2019-11-13 08:07:00,432 8th St, Los Angeles,CA,90001 +289784,Bose SoundSport Headphones,1,99.99,2019-11-28 18:40:00,384 Madison St, Los Angeles,CA,90001 +289785,Lightning Charging Cable,1,14.95,2019-11-03 19:34:00,702 Main St, San Francisco,CA,94016 +289786,Apple Airpods Headphones,1,150.0,2019-11-14 06:08:00,330 Wilson St, Seattle,WA,98101 +289787,Bose SoundSport Headphones,1,99.99,2019-11-13 16:03:00,215 Madison St, Boston,MA,02215 +289788,AAA Batteries (4-pack),1,2.99,2019-11-05 13:39:00,658 9th St, Portland,ME,04101 +289789,AA Batteries (4-pack),1,3.84,2019-11-05 18:28:00,301 Pine St, Dallas,TX,75001 +289790,AAA Batteries (4-pack),1,2.99,2019-11-09 17:54:00,51 Main St, San Francisco,CA,94016 +289791,Lightning Charging Cable,1,14.95,2019-11-04 22:08:00,26 Ridge St, Portland,ME,04101 +289792,Macbook Pro Laptop,1,1700.0,2019-11-26 15:25:00,768 13th St, Seattle,WA,98101 +289793,Bose SoundSport Headphones,1,99.99,2019-11-05 17:37:00,183 Spruce St, Los Angeles,CA,90001 +289794,Wired Headphones,1,11.99,2019-11-17 17:58:00,297 Church St, Seattle,WA,98101 +289795,27in 4K Gaming Monitor,1,389.99,2019-11-30 16:25:00,105 Highland St, San Francisco,CA,94016 +289796,27in FHD Monitor,1,149.99,2019-11-15 17:16:00,871 10th St, San Francisco,CA,94016 +289797,USB-C Charging Cable,1,11.95,2019-11-09 19:43:00,95 Forest St, New York City,NY,10001 +289798,Wired Headphones,1,11.99,2019-11-23 12:24:00,232 6th St, San Francisco,CA,94016 +289799,Wired Headphones,1,11.99,2019-11-08 20:57:00,632 Johnson St, New York City,NY,10001 +289800,AA Batteries (4-pack),1,3.84,2019-11-30 01:25:00,440 Park St, Boston,MA,02215 +289801,Apple Airpods Headphones,1,150.0,2019-11-17 21:20:00,139 Hill St, Seattle,WA,98101 +289802,Lightning Charging Cable,1,14.95,2019-11-30 02:02:00,857 Forest St, San Francisco,CA,94016 +289803,AAA Batteries (4-pack),1,2.99,2019-11-10 23:01:00,759 Sunset St, Boston,MA,02215 +289804,20in Monitor,1,109.99,2019-11-23 14:48:00,251 Walnut St, Boston,MA,02215 +289805,Google Phone,1,600.0,2019-11-20 13:53:00,895 10th St, Seattle,WA,98101 +289806,AA Batteries (4-pack),1,3.84,2019-11-26 13:41:00,375 Adams St, San Francisco,CA,94016 +289807,ThinkPad Laptop,1,999.99,2019-11-18 21:21:00,402 Main St, Seattle,WA,98101 +289808,AAA Batteries (4-pack),1,2.99,2019-11-06 23:00:00,26 Highland St, San Francisco,CA,94016 +289809,Lightning Charging Cable,1,14.95,2019-11-10 10:57:00,68 Lincoln St, San Francisco,CA,94016 +289810,USB-C Charging Cable,1,11.95,2019-11-07 15:54:00,245 Cherry St, Dallas,TX,75001 +289811,Apple Airpods Headphones,1,150.0,2019-11-25 16:52:00,408 North St, Portland,OR,97035 +289812,AA Batteries (4-pack),1,3.84,2019-11-27 02:10:00,263 7th St, San Francisco,CA,94016 +289813,AAA Batteries (4-pack),1,2.99,2019-11-15 20:19:00,317 Park St, Austin,TX,73301 +289814,ThinkPad Laptop,1,999.99,2019-11-08 07:44:00,112 Adams St, Los Angeles,CA,90001 +289815,27in FHD Monitor,1,149.99,2019-11-19 22:09:00,27 Chestnut St, Los Angeles,CA,90001 +289816,Vareebadd Phone,1,400.0,2019-11-08 19:24:00,329 Maple St, San Francisco,CA,94016 +289817,Google Phone,1,600.0,2019-11-25 21:54:00,903 Cherry St, San Francisco,CA,94016 +289818,34in Ultrawide Monitor,1,379.99,2019-11-26 23:29:00,871 Willow St, San Francisco,CA,94016 +289819,Lightning Charging Cable,1,14.95,2019-11-07 14:09:00,364 14th St, Dallas,TX,75001 +289820,AA Batteries (4-pack),1,3.84,2019-11-05 19:15:00,139 Madison St, New York City,NY,10001 +289821,Apple Airpods Headphones,1,150.0,2019-11-12 09:48:00,246 Hill St, New York City,NY,10001 +289822,Apple Airpods Headphones,1,150.0,2019-11-30 23:19:00,313 River St, Boston,MA,02215 +289823,Bose SoundSport Headphones,1,99.99,2019-11-22 18:33:00,537 Dogwood St, San Francisco,CA,94016 +289824,AA Batteries (4-pack),1,3.84,2019-11-27 17:30:00,960 Hill St, Atlanta,GA,30301 +289825,Macbook Pro Laptop,1,1700.0,2019-11-02 18:25:00,91 Church St, Atlanta,GA,30301 +289826,AA Batteries (4-pack),1,3.84,2019-11-29 20:24:00,338 11th St, Dallas,TX,75001 +289827,AA Batteries (4-pack),5,3.84,2019-11-19 12:08:00,782 Sunset St, New York City,NY,10001 +289828,Google Phone,1,600.0,2019-11-18 10:38:00,849 South St, Portland,OR,97035 +289829,Vareebadd Phone,1,400.0,2019-11-01 18:51:00,227 Dogwood St, Dallas,TX,75001 +289830,Flatscreen TV,1,300.0,2019-11-26 21:05:00,724 Elm St, Boston,MA,02215 +289831,Wired Headphones,1,11.99,2019-11-26 11:23:00,399 Church St, Portland,OR,97035 +289832,Google Phone,1,600.0,2019-11-27 11:10:00,832 Lake St, Austin,TX,73301 +289832,Wired Headphones,1,11.99,2019-11-27 11:10:00,832 Lake St, Austin,TX,73301 +289833,Apple Airpods Headphones,1,150.0,2019-11-18 21:43:00,682 Meadow St, New York City,NY,10001 +289834,AA Batteries (4-pack),3,3.84,2019-11-06 11:47:00,927 Jefferson St, New York City,NY,10001 +289835,Wired Headphones,1,11.99,2019-11-23 12:41:00,23 Church St, Seattle,WA,98101 +289836,iPhone,1,700.0,2019-11-21 20:03:00,443 South St, Boston,MA,02215 +289837,AAA Batteries (4-pack),1,2.99,2019-11-07 20:48:00,442 1st St, Dallas,TX,75001 +289838,Lightning Charging Cable,1,14.95,2019-11-10 17:39:00,114 Center St, Los Angeles,CA,90001 +289839,Google Phone,1,600.0,2019-11-16 14:39:00,11 Lake St, New York City,NY,10001 +289840,AA Batteries (4-pack),1,3.84,2019-11-25 10:43:00,690 Willow St, Los Angeles,CA,90001 +289841,AA Batteries (4-pack),1,3.84,2019-11-02 12:10:00,455 Hill St, San Francisco,CA,94016 +289842,27in FHD Monitor,1,149.99,2019-11-12 15:58:00,186 2nd St, Seattle,WA,98101 +289843,Wired Headphones,1,11.99,2019-11-07 19:52:00,857 Ridge St, Portland,OR,97035 +289844,Apple Airpods Headphones,1,150.0,2019-11-01 17:55:00,170 Lakeview St, Atlanta,GA,30301 +289845,USB-C Charging Cable,1,11.95,2019-11-15 23:41:00,830 Forest St, Dallas,TX,75001 +289846,27in FHD Monitor,1,149.99,2019-11-09 19:58:00,259 Lakeview St, San Francisco,CA,94016 +289847,Vareebadd Phone,1,400.0,2019-11-30 19:59:00,58 Sunset St, San Francisco,CA,94016 +289847,USB-C Charging Cable,1,11.95,2019-11-30 19:59:00,58 Sunset St, San Francisco,CA,94016 +289848,34in Ultrawide Monitor,1,379.99,2019-11-26 21:55:00,459 Dogwood St, Dallas,TX,75001 +289849,Wired Headphones,1,11.99,2019-11-06 23:03:00,131 Sunset St, Portland,OR,97035 +289850,Macbook Pro Laptop,1,1700.0,2019-11-28 21:33:00,344 Willow St, Dallas,TX,75001 +289851,Apple Airpods Headphones,1,150.0,2019-11-21 08:27:00,93 North St, San Francisco,CA,94016 +289852,AAA Batteries (4-pack),2,2.99,2019-11-01 08:56:00,14 Adams St, Atlanta,GA,30301 +289853,Apple Airpods Headphones,1,150.0,2019-11-16 18:51:00,768 Walnut St, Dallas,TX,75001 +289854,27in FHD Monitor,1,149.99,2019-11-01 13:06:00,811 West St, Los Angeles,CA,90001 +289855,Lightning Charging Cable,1,14.95,2019-11-02 18:30:00,12 North St, San Francisco,CA,94016 +289856,Wired Headphones,1,11.99,2019-11-09 21:17:00,822 Meadow St, San Francisco,CA,94016 +289857,34in Ultrawide Monitor,1,379.99,2019-11-07 12:47:00,536 Forest St, New York City,NY,10001 +289858,AA Batteries (4-pack),1,3.84,2019-11-15 18:37:00,619 Pine St, Boston,MA,02215 +289859,Google Phone,1,600.0,2019-11-04 23:28:00,676 Ridge St, New York City,NY,10001 +289860,AAA Batteries (4-pack),1,2.99,2019-11-21 13:52:00,676 Dogwood St, Los Angeles,CA,90001 +289861,AA Batteries (4-pack),1,3.84,2019-11-07 10:02:00,712 Meadow St, San Francisco,CA,94016 +289862,USB-C Charging Cable,1,11.95,2019-11-03 12:28:00,336 North St, Los Angeles,CA,90001 +289863,Wired Headphones,1,11.99,2019-11-29 00:40:00,298 Cherry St, Austin,TX,73301 +289864,Flatscreen TV,1,300.0,2019-11-17 19:30:00,661 Forest St, Portland,ME,04101 +289865,AAA Batteries (4-pack),1,2.99,2019-11-12 08:40:00,914 Dogwood St, New York City,NY,10001 +289866,AA Batteries (4-pack),1,3.84,2019-11-07 15:03:00,682 Sunset St, San Francisco,CA,94016 +289867,Apple Airpods Headphones,1,150.0,2019-11-12 16:25:00,502 7th St, Los Angeles,CA,90001 +289868,27in 4K Gaming Monitor,1,389.99,2019-11-19 11:58:00,986 2nd St, Seattle,WA,98101 +289869,AA Batteries (4-pack),1,3.84,2019-11-30 20:18:00,191 8th St, Los Angeles,CA,90001 +289870,USB-C Charging Cable,1,11.95,2019-11-14 23:14:00,7 Main St, Boston,MA,02215 +289871,iPhone,1,700.0,2019-11-22 13:30:00,11 Hill St, San Francisco,CA,94016 +289871,Apple Airpods Headphones,1,150.0,2019-11-22 13:30:00,11 Hill St, San Francisco,CA,94016 +289872,Lightning Charging Cable,1,14.95,2019-11-03 00:01:00,834 Jefferson St, Portland,OR,97035 +289873,AA Batteries (4-pack),1,3.84,2019-11-26 01:03:00,449 Madison St, New York City,NY,10001 +289874,Flatscreen TV,1,300.0,2019-11-09 17:43:00,487 Madison St, Boston,MA,02215 +289875,USB-C Charging Cable,1,11.95,2019-11-02 11:26:00,99 South St, New York City,NY,10001 +289876,Flatscreen TV,1,300.0,2019-11-11 11:49:00,885 Church St, San Francisco,CA,94016 +289877,Lightning Charging Cable,1,14.95,2019-11-28 10:00:00,323 Willow St, Atlanta,GA,30301 +289878,USB-C Charging Cable,1,11.95,2019-11-29 17:25:00,966 Dogwood St, Portland,OR,97035 +289879,AAA Batteries (4-pack),1,2.99,2019-11-03 19:32:00,378 Wilson St, Boston,MA,02215 +289880,Wired Headphones,1,11.99,2019-11-15 22:08:00,105 Johnson St, Boston,MA,02215 +289881,Apple Airpods Headphones,1,150.0,2019-11-26 00:14:00,381 Center St, San Francisco,CA,94016 +289882,Lightning Charging Cable,1,14.95,2019-11-03 12:17:00,884 Pine St, Seattle,WA,98101 +289883,Lightning Charging Cable,1,14.95,2019-11-18 14:37:00,963 Walnut St, Boston,MA,02215 +289884,Lightning Charging Cable,1,14.95,2019-11-19 17:18:00,175 12th St, Los Angeles,CA,90001 +289885,Macbook Pro Laptop,1,1700.0,2019-11-11 06:01:00,113 Walnut St, Los Angeles,CA,90001 +289886,Flatscreen TV,1,300.0,2019-11-09 14:38:00,896 2nd St, Seattle,WA,98101 +289887,Lightning Charging Cable,1,14.95,2019-11-16 20:16:00,445 Lake St, New York City,NY,10001 +289888,iPhone,1,700.0,2019-11-25 16:52:00,481 Johnson St, Austin,TX,73301 +289889,AA Batteries (4-pack),1,3.84,2019-11-06 06:47:00,60 1st St, New York City,NY,10001 +289890,AA Batteries (4-pack),1,3.84,2019-11-08 10:51:00,692 Dogwood St, Austin,TX,73301 +289891,27in 4K Gaming Monitor,1,389.99,2019-11-04 09:38:00,50 Madison St, Seattle,WA,98101 +289892,AA Batteries (4-pack),1,3.84,2019-11-22 16:53:00,964 13th St, San Francisco,CA,94016 +289893,USB-C Charging Cable,1,11.95,2019-11-26 12:21:00,493 14th St, Atlanta,GA,30301 +289894,Lightning Charging Cable,2,14.95,2019-11-20 17:10:00,872 Jackson St, Seattle,WA,98101 +289895,USB-C Charging Cable,1,11.95,2019-11-16 13:19:00,102 4th St, Los Angeles,CA,90001 +289896,AA Batteries (4-pack),1,3.84,2019-11-29 14:25:00,13 14th St, Atlanta,GA,30301 +289897,Lightning Charging Cable,1,14.95,2019-11-03 19:57:00,726 13th St, San Francisco,CA,94016 +289898,34in Ultrawide Monitor,1,379.99,2019-11-09 07:51:00,496 Hickory St, San Francisco,CA,94016 +289899,Google Phone,1,600.0,2019-11-02 14:18:00,304 9th St, Los Angeles,CA,90001 +289900,Vareebadd Phone,1,400.0,2019-11-10 10:09:00,863 Meadow St, Dallas,TX,75001 +289900,USB-C Charging Cable,1,11.95,2019-11-10 10:09:00,863 Meadow St, Dallas,TX,75001 +289901,Apple Airpods Headphones,1,150.0,2019-11-29 21:23:00,878 Elm St, San Francisco,CA,94016 +289902,ThinkPad Laptop,1,999.99,2019-11-17 20:27:00,582 Jefferson St, Los Angeles,CA,90001 +289903,Apple Airpods Headphones,1,150.0,2019-11-14 20:19:00,137 Walnut St, Austin,TX,73301 +289904,USB-C Charging Cable,1,11.95,2019-11-10 13:03:00,922 Church St, Boston,MA,02215 +289905,Lightning Charging Cable,1,14.95,2019-11-06 14:20:00,450 South St, Los Angeles,CA,90001 +289906,27in FHD Monitor,1,149.99,2019-11-02 16:21:00,273 7th St, San Francisco,CA,94016 +289907,ThinkPad Laptop,1,999.99,2019-11-04 12:14:00,816 Pine St, San Francisco,CA,94016 +289908,USB-C Charging Cable,1,11.95,2019-11-21 19:55:00,438 Adams St, Boston,MA,02215 +289909,Bose SoundSport Headphones,1,99.99,2019-11-25 14:33:00,913 10th St, Los Angeles,CA,90001 +289910,Macbook Pro Laptop,1,1700.0,2019-11-01 19:07:00,461 Madison St, Los Angeles,CA,90001 +289911,AA Batteries (4-pack),1,3.84,2019-11-12 23:13:00,511 Wilson St, Atlanta,GA,30301 +289912,AA Batteries (4-pack),1,3.84,2019-11-27 17:34:00,972 Johnson St, Portland,OR,97035 +289913,Google Phone,1,600.0,2019-11-20 12:06:00,948 Dogwood St, San Francisco,CA,94016 +289914,USB-C Charging Cable,1,11.95,2019-11-07 20:21:00,962 Main St, Los Angeles,CA,90001 +289915,34in Ultrawide Monitor,1,379.99,2019-11-13 15:04:00,812 Main St, Los Angeles,CA,90001 +289916,Wired Headphones,1,11.99,2019-11-14 23:07:00,753 Ridge St, Los Angeles,CA,90001 +289917,Flatscreen TV,1,300.0,2019-11-09 06:37:00,430 Chestnut St, San Francisco,CA,94016 +289918,USB-C Charging Cable,1,11.95,2019-11-22 19:41:00,265 Adams St, New York City,NY,10001 +289919,20in Monitor,1,109.99,2019-11-21 12:04:00,532 Washington St, San Francisco,CA,94016 +289920,AAA Batteries (4-pack),4,2.99,2019-11-22 20:34:00,269 Lincoln St, San Francisco,CA,94016 +289921,Lightning Charging Cable,1,14.95,2019-11-06 02:46:00,493 Adams St, San Francisco,CA,94016 +289922,Lightning Charging Cable,1,14.95,2019-11-15 10:45:00,928 Willow St, Los Angeles,CA,90001 +289923,Apple Airpods Headphones,1,150.0,2019-11-05 09:36:00,202 11th St, Atlanta,GA,30301 +289924,Macbook Pro Laptop,1,1700.0,2019-11-09 15:21:00,882 4th St, San Francisco,CA,94016 +289925,Apple Airpods Headphones,1,150.0,2019-11-06 21:18:00,3 Jackson St, Atlanta,GA,30301 +289926,Wired Headphones,1,11.99,2019-11-02 17:01:00,780 8th St, Seattle,WA,98101 +289927,AA Batteries (4-pack),1,3.84,2019-11-26 09:00:00,370 Ridge St, Los Angeles,CA,90001 +289928,27in FHD Monitor,1,149.99,2019-11-04 13:53:00,674 Dogwood St, San Francisco,CA,94016 +289929,Bose SoundSport Headphones,1,99.99,2019-11-20 21:24:00,869 12th St, Los Angeles,CA,90001 +289930,Lightning Charging Cable,1,14.95,2019-11-30 19:11:00,854 13th St, Los Angeles,CA,90001 +289931,Lightning Charging Cable,1,14.95,2019-11-10 23:27:00,631 Adams St, Boston,MA,02215 +289932,AA Batteries (4-pack),1,3.84,2019-11-11 21:08:00,412 River St, Boston,MA,02215 +289933,Apple Airpods Headphones,1,150.0,2019-11-03 15:31:00,389 Dogwood St, Los Angeles,CA,90001 +289934,AA Batteries (4-pack),1,3.84,2019-11-17 01:41:00,213 Chestnut St, Portland,OR,97035 +289935,Wired Headphones,1,11.99,2019-11-10 07:49:00,371 South St, Seattle,WA,98101 +289936,Apple Airpods Headphones,1,150.0,2019-11-21 16:58:00,865 9th St, San Francisco,CA,94016 +289937,USB-C Charging Cable,1,11.95,2019-11-06 08:17:00,237 14th St, Dallas,TX,75001 +289938,AA Batteries (4-pack),1,3.84,2019-11-01 21:29:00,700 2nd St, Boston,MA,02215 +289939,AAA Batteries (4-pack),2,2.99,2019-11-09 09:44:00,253 Johnson St, Portland,OR,97035 +289940,Lightning Charging Cable,1,14.95,2019-11-11 20:07:00,731 12th St, Atlanta,GA,30301 +289941,iPhone,1,700.0,2019-11-12 19:51:00,781 Lakeview St, Boston,MA,02215 +289942,Lightning Charging Cable,1,14.95,2019-11-30 10:55:00,76 13th St, Boston,MA,02215 +289943,ThinkPad Laptop,1,999.99,2019-11-25 20:41:00,479 Pine St, Boston,MA,02215 +289944,34in Ultrawide Monitor,1,379.99,2019-11-29 14:56:00,178 Forest St, Austin,TX,73301 +289945,iPhone,1,700.0,2019-11-02 09:38:00,36 4th St, Boston,MA,02215 +289945,Lightning Charging Cable,1,14.95,2019-11-02 09:38:00,36 4th St, Boston,MA,02215 +289946,USB-C Charging Cable,1,11.95,2019-11-22 10:02:00,588 Center St, San Francisco,CA,94016 +289947,AAA Batteries (4-pack),1,2.99,2019-11-03 09:50:00,53 10th St, San Francisco,CA,94016 +289947,AAA Batteries (4-pack),4,2.99,2019-11-03 09:50:00,53 10th St, San Francisco,CA,94016 +289948,AA Batteries (4-pack),1,3.84,2019-11-18 13:24:00,617 Hickory St, Portland,OR,97035 +289949,AA Batteries (4-pack),2,3.84,2019-11-10 09:54:00,818 7th St, New York City,NY,10001 +289950,27in 4K Gaming Monitor,1,389.99,2019-11-12 08:39:00,71 10th St, Los Angeles,CA,90001 +289951,20in Monitor,1,109.99,2019-11-03 20:47:00,413 Cherry St, Los Angeles,CA,90001 +289952,AAA Batteries (4-pack),1,2.99,2019-11-26 21:51:00,996 Wilson St, San Francisco,CA,94016 +289953,Lightning Charging Cable,1,14.95,2019-11-06 21:45:00,172 Church St, Atlanta,GA,30301 +289954,Wired Headphones,1,11.99,2019-11-01 23:05:00,860 13th St, Los Angeles,CA,90001 +289955,20in Monitor,1,109.99,2019-11-25 12:38:00,19 Hickory St, Portland,OR,97035 +289956,Bose SoundSport Headphones,1,99.99,2019-11-23 13:23:00,30 Chestnut St, New York City,NY,10001 +289957,Apple Airpods Headphones,1,150.0,2019-11-20 18:56:00,719 South St, Dallas,TX,75001 +289958,20in Monitor,1,109.99,2019-12-01 00:46:00,833 River St, San Francisco,CA,94016 +289959,20in Monitor,1,109.99,2019-11-30 18:05:00,678 Highland St, San Francisco,CA,94016 +289960,AAA Batteries (4-pack),1,2.99,2019-11-13 08:15:00,663 12th St, Los Angeles,CA,90001 +289961,Bose SoundSport Headphones,1,99.99,2019-11-13 23:43:00,599 Cedar St, Los Angeles,CA,90001 +289962,AAA Batteries (4-pack),1,2.99,2019-11-11 07:53:00,356 Lake St, New York City,NY,10001 +289963,AA Batteries (4-pack),1,3.84,2019-11-09 20:49:00,568 Adams St, Seattle,WA,98101 +289964,AA Batteries (4-pack),1,3.84,2019-11-06 20:05:00,579 South St, Los Angeles,CA,90001 +289965,Wired Headphones,1,11.99,2019-11-11 14:20:00,302 Lincoln St, New York City,NY,10001 +289966,AA Batteries (4-pack),1,3.84,2019-11-18 15:51:00,210 1st St, Boston,MA,02215 +289967,Lightning Charging Cable,1,14.95,2019-11-19 18:17:00,676 Dogwood St, Los Angeles,CA,90001 +289968,USB-C Charging Cable,1,11.95,2019-11-16 00:24:00,456 River St, Atlanta,GA,30301 +289969,Bose SoundSport Headphones,1,99.99,2019-11-09 13:18:00,353 Chestnut St, Los Angeles,CA,90001 +289970,Lightning Charging Cable,1,14.95,2019-11-02 22:52:00,304 7th St, Boston,MA,02215 +289971,34in Ultrawide Monitor,1,379.99,2019-11-26 10:16:00,449 12th St, Seattle,WA,98101 +289972,Lightning Charging Cable,1,14.95,2019-11-01 15:44:00,125 5th St, Boston,MA,02215 +289973,AA Batteries (4-pack),1,3.84,2019-11-23 15:31:00,673 Park St, New York City,NY,10001 +289974,34in Ultrawide Monitor,1,379.99,2019-11-12 07:18:00,436 Madison St, San Francisco,CA,94016 +289975,20in Monitor,1,109.99,2019-11-01 12:41:00,646 12th St, San Francisco,CA,94016 +289976,Lightning Charging Cable,1,14.95,2019-11-22 11:32:00,416 South St, San Francisco,CA,94016 +289977,AA Batteries (4-pack),1,3.84,2019-11-18 11:13:00,613 Jefferson St, Los Angeles,CA,90001 +289978,AA Batteries (4-pack),1,3.84,2019-11-10 10:55:00,35 Lakeview St, Boston,MA,02215 +289979,USB-C Charging Cable,1,11.95,2019-11-13 14:19:00,42 South St, San Francisco,CA,94016 +289980,Flatscreen TV,1,300.0,2019-11-01 09:49:00,393 Lake St, San Francisco,CA,94016 +289981,Wired Headphones,1,11.99,2019-11-04 13:51:00,636 5th St, Boston,MA,02215 +289982,Apple Airpods Headphones,1,150.0,2019-11-19 16:18:00,165 Cherry St, San Francisco,CA,94016 +289983,Wired Headphones,1,11.99,2019-11-28 09:05:00,53 Center St, New York City,NY,10001 +289984,ThinkPad Laptop,1,999.99,2019-11-07 20:27:00,782 1st St, Seattle,WA,98101 +289985,Lightning Charging Cable,1,14.95,2019-11-21 18:23:00,701 5th St, Boston,MA,02215 +289986,iPhone,1,700.0,2019-11-15 14:00:00,449 Jefferson St, Portland,OR,97035 +289987,Apple Airpods Headphones,1,150.0,2019-11-11 13:40:00,634 Lakeview St, Atlanta,GA,30301 +289988,iPhone,1,700.0,2019-11-14 19:09:00,407 Lake St, San Francisco,CA,94016 +289989,ThinkPad Laptop,1,999.99,2019-11-08 16:28:00,606 Jefferson St, San Francisco,CA,94016 +289990,AA Batteries (4-pack),6,3.84,2019-11-09 16:41:00,397 Forest St, San Francisco,CA,94016 +289991,ThinkPad Laptop,1,999.99,2019-11-08 08:23:00,578 Main St, New York City,NY,10001 +289992,27in FHD Monitor,1,149.99,2019-11-21 19:05:00,859 Jackson St, Boston,MA,02215 +289993,LG Dryer,1,600.0,2019-11-05 16:11:00,517 6th St, Los Angeles,CA,90001 +289994,Lightning Charging Cable,1,14.95,2019-11-17 12:39:00,985 Cedar St, Atlanta,GA,30301 +289995,AA Batteries (4-pack),1,3.84,2019-11-10 14:44:00,616 River St, Portland,OR,97035 +289996,Bose SoundSport Headphones,1,99.99,2019-11-28 16:54:00,533 7th St, Portland,OR,97035 +289997,USB-C Charging Cable,1,11.95,2019-11-26 16:01:00,447 Walnut St, Dallas,TX,75001 +289998,AAA Batteries (4-pack),1,2.99,2019-11-17 12:10:00,783 Maple St, Los Angeles,CA,90001 +289999,Apple Airpods Headphones,1,150.0,2019-11-21 15:29:00,111 Chestnut St, Portland,OR,97035 +290000,AA Batteries (4-pack),1,3.84,2019-11-08 11:37:00,953 2nd St, Dallas,TX,75001 +290001,USB-C Charging Cable,1,11.95,2019-11-09 18:27:00,141 9th St, Atlanta,GA,30301 +290001,27in FHD Monitor,1,149.99,2019-11-09 18:27:00,141 9th St, Atlanta,GA,30301 +290002,Wired Headphones,1,11.99,2019-11-07 05:19:00,558 Adams St, Dallas,TX,75001 +290003,Apple Airpods Headphones,1,150.0,2019-11-14 20:32:00,885 Adams St, San Francisco,CA,94016 +290004,Apple Airpods Headphones,2,150.0,2019-11-25 20:13:00,124 Hill St, San Francisco,CA,94016 +290005,Google Phone,1,600.0,2019-11-23 00:31:00,603 2nd St, Boston,MA,02215 +290006,Wired Headphones,1,11.99,2019-11-18 18:07:00,328 4th St, Dallas,TX,75001 +290007,Wired Headphones,1,11.99,2019-11-28 23:07:00,927 North St, Los Angeles,CA,90001 +290008,27in 4K Gaming Monitor,1,389.99,2019-11-22 18:35:00,101 Jefferson St, Atlanta,GA,30301 +290009,Lightning Charging Cable,1,14.95,2019-11-12 03:20:00,348 Highland St, Seattle,WA,98101 +290010,Wired Headphones,1,11.99,2019-11-07 14:33:00,659 Main St, New York City,NY,10001 +290011,Apple Airpods Headphones,1,150.0,2019-11-20 09:07:00,775 West St, San Francisco,CA,94016 +290012,Lightning Charging Cable,1,14.95,2019-11-09 21:36:00,126 Park St, New York City,NY,10001 +290013,Wired Headphones,1,11.99,2019-11-04 18:17:00,915 Elm St, San Francisco,CA,94016 +290014,AA Batteries (4-pack),1,3.84,2019-11-14 01:02:00,471 Church St, Los Angeles,CA,90001 +290015,34in Ultrawide Monitor,1,379.99,2019-11-13 17:53:00,639 Jefferson St, Atlanta,GA,30301 +290016,Bose SoundSport Headphones,1,99.99,2019-11-23 21:42:00,868 Lakeview St, Boston,MA,02215 +290017,USB-C Charging Cable,1,11.95,2019-11-27 23:28:00,882 Cherry St, Los Angeles,CA,90001 +290018,iPhone,1,700.0,2019-11-14 21:19:00,386 Spruce St, New York City,NY,10001 +290019,AAA Batteries (4-pack),1,2.99,2019-11-13 16:06:00,104 Ridge St, Los Angeles,CA,90001 +290020,27in FHD Monitor,1,149.99,2019-11-19 13:54:00,311 Ridge St, New York City,NY,10001 +290021,AA Batteries (4-pack),1,3.84,2019-11-23 16:31:00,118 North St, Portland,ME,04101 +290022,Macbook Pro Laptop,1,1700.0,2019-11-26 01:06:00,910 13th St, New York City,NY,10001 +290023,AAA Batteries (4-pack),3,2.99,2019-11-01 13:10:00,774 Lakeview St, San Francisco,CA,94016 +290024,Wired Headphones,1,11.99,2019-11-08 13:40:00,320 12th St, Los Angeles,CA,90001 +290025,AAA Batteries (4-pack),1,2.99,2019-11-14 08:27:00,83 Wilson St, Seattle,WA,98101 +290026,AAA Batteries (4-pack),1,2.99,2019-11-13 16:55:00,176 Dogwood St, Boston,MA,02215 +290027,USB-C Charging Cable,1,11.95,2019-11-22 18:43:00,966 Main St, New York City,NY,10001 +290028,USB-C Charging Cable,1,11.95,2019-11-26 01:57:00,917 River St, Atlanta,GA,30301 +290029,USB-C Charging Cable,2,11.95,2019-11-01 17:46:00,833 Chestnut St, San Francisco,CA,94016 +290030,AA Batteries (4-pack),1,3.84,2019-11-06 17:45:00,338 Lake St, Austin,TX,73301 +290031,Apple Airpods Headphones,1,150.0,2019-11-14 23:01:00,974 Main St, Austin,TX,73301 +290032,27in 4K Gaming Monitor,1,389.99,2019-11-19 16:17:00,351 Spruce St, San Francisco,CA,94016 +290033,USB-C Charging Cable,2,11.95,2019-11-03 19:33:00,886 Jackson St, Portland,OR,97035 +290034,27in 4K Gaming Monitor,1,389.99,2019-11-28 16:26:00,413 Main St, Seattle,WA,98101 +290035,AA Batteries (4-pack),1,3.84,2019-11-01 12:34:00,342 Johnson St, Dallas,TX,75001 +290036,Wired Headphones,1,11.99,2019-11-15 19:42:00,933 Cedar St, Atlanta,GA,30301 +290037,Wired Headphones,1,11.99,2019-11-05 13:52:00,438 Washington St, New York City,NY,10001 +290038,Lightning Charging Cable,1,14.95,2019-11-21 07:49:00,69 Highland St, San Francisco,CA,94016 +290039,Flatscreen TV,1,300.0,2019-11-18 11:59:00,904 Jackson St, Boston,MA,02215 +290040,AA Batteries (4-pack),1,3.84,2019-11-29 22:39:00,365 6th St, New York City,NY,10001 +290041,AAA Batteries (4-pack),2,2.99,2019-11-18 08:01:00,717 Lincoln St, Boston,MA,02215 +290042,Lightning Charging Cable,1,14.95,2019-11-07 17:06:00,807 Adams St, Portland,ME,04101 +290043,Apple Airpods Headphones,1,150.0,2019-11-30 09:49:00,208 Jackson St, Boston,MA,02215 +290044,Wired Headphones,1,11.99,2019-11-14 20:44:00,258 Pine St, San Francisco,CA,94016 +290045,AAA Batteries (4-pack),1,2.99,2019-11-03 09:32:00,335 Chestnut St, New York City,NY,10001 +290046,AA Batteries (4-pack),2,3.84,2019-11-22 13:44:00,426 Highland St, Los Angeles,CA,90001 +290047,Apple Airpods Headphones,1,150.0,2019-11-08 15:20:00,881 Cedar St, San Francisco,CA,94016 +290048,Apple Airpods Headphones,1,150.0,2019-11-11 16:34:00,13 Hill St, Boston,MA,02215 +290049,Lightning Charging Cable,1,14.95,2019-11-11 17:18:00,984 Jackson St, Los Angeles,CA,90001 +290050,Wired Headphones,1,11.99,2019-11-15 08:24:00,698 Church St, Seattle,WA,98101 +290051,AAA Batteries (4-pack),2,2.99,2019-11-09 23:49:00,144 Meadow St, Boston,MA,02215 +290052,Apple Airpods Headphones,1,150.0,2019-11-30 11:10:00,513 Forest St, San Francisco,CA,94016 +290053,AAA Batteries (4-pack),1,2.99,2019-11-12 17:17:00,830 4th St, New York City,NY,10001 +290054,27in FHD Monitor,1,149.99,2019-11-06 09:45:00,369 South St, San Francisco,CA,94016 +290055,Lightning Charging Cable,1,14.95,2019-11-08 14:23:00,756 Elm St, New York City,NY,10001 +290056,Bose SoundSport Headphones,1,99.99,2019-11-13 15:28:00,78 Hill St, New York City,NY,10001 +290057,Lightning Charging Cable,1,14.95,2019-11-07 16:46:00,460 Maple St, San Francisco,CA,94016 +290058,AAA Batteries (4-pack),1,2.99,2019-11-24 18:41:00,170 Park St, San Francisco,CA,94016 +290059,AAA Batteries (4-pack),1,2.99,2019-11-30 06:16:00,69 Hickory St, Boston,MA,02215 +290060,LG Dryer,1,600.0,2019-11-21 22:21:00,961 North St, Austin,TX,73301 +290061,Vareebadd Phone,1,400.0,2019-11-16 22:45:00,196 Spruce St, San Francisco,CA,94016 +290062,AA Batteries (4-pack),1,3.84,2019-11-18 08:54:00,482 Forest St, Boston,MA,02215 +290063,Lightning Charging Cable,1,14.95,2019-11-23 11:15:00,399 6th St, Portland,OR,97035 +290064,AA Batteries (4-pack),1,3.84,2019-11-10 15:17:00,688 Washington St, San Francisco,CA,94016 +290065,Bose SoundSport Headphones,1,99.99,2019-11-30 21:41:00,487 8th St, Seattle,WA,98101 +290066,AAA Batteries (4-pack),1,2.99,2019-11-26 16:04:00,784 Highland St, San Francisco,CA,94016 +290067,iPhone,1,700.0,2019-11-23 22:53:00,878 Madison St, Los Angeles,CA,90001 +290068,Apple Airpods Headphones,1,150.0,2019-11-13 16:01:00,519 Center St, New York City,NY,10001 +290069,Macbook Pro Laptop,1,1700.0,2019-11-11 17:19:00,872 Highland St, Austin,TX,73301 +290070,Wired Headphones,1,11.99,2019-11-20 14:11:00,812 Jefferson St, Portland,OR,97035 +290071,Vareebadd Phone,1,400.0,2019-11-10 17:14:00,502 Wilson St, San Francisco,CA,94016 +290072,Flatscreen TV,1,300.0,2019-11-21 12:23:00,180 Church St, New York City,NY,10001 +290073,USB-C Charging Cable,1,11.95,2019-11-08 10:27:00,955 Sunset St, New York City,NY,10001 +290074,Google Phone,1,600.0,2019-11-29 10:43:00,283 River St, San Francisco,CA,94016 +290075,iPhone,1,700.0,2019-11-21 08:07:00,783 Johnson St, Portland,OR,97035 +290076,Lightning Charging Cable,1,14.95,2019-11-16 18:41:00,463 11th St, Seattle,WA,98101 +290077,USB-C Charging Cable,1,11.95,2019-11-20 19:06:00,227 Johnson St, San Francisco,CA,94016 +290078,Bose SoundSport Headphones,1,99.99,2019-11-29 17:13:00,952 South St, Dallas,TX,75001 +290079,Bose SoundSport Headphones,1,99.99,2019-11-29 01:10:00,338 Jackson St, Los Angeles,CA,90001 +290080,Apple Airpods Headphones,1,150.0,2019-11-04 19:29:00,735 Lincoln St, New York City,NY,10001 +290081,Lightning Charging Cable,1,14.95,2019-11-24 11:55:00,712 Forest St, San Francisco,CA,94016 +290082,27in 4K Gaming Monitor,1,389.99,2019-11-18 09:04:00,499 Chestnut St, Seattle,WA,98101 +290083,AA Batteries (4-pack),1,3.84,2019-11-25 18:41:00,951 Pine St, New York City,NY,10001 +290084,34in Ultrawide Monitor,1,379.99,2019-11-18 12:43:00,51 Center St, San Francisco,CA,94016 +290085,AA Batteries (4-pack),1,3.84,2019-11-04 12:20:00,581 7th St, Boston,MA,02215 +290086,Lightning Charging Cable,1,14.95,2019-11-21 10:26:00,555 Dogwood St, New York City,NY,10001 +290087,AA Batteries (4-pack),1,3.84,2019-11-08 13:27:00,685 6th St, San Francisco,CA,94016 +290088,Apple Airpods Headphones,1,150.0,2019-11-01 20:34:00,278 South St, Dallas,TX,75001 +290089,AAA Batteries (4-pack),2,2.99,2019-11-24 22:55:00,720 1st St, New York City,NY,10001 +290090,AA Batteries (4-pack),1,3.84,2019-11-20 08:58:00,829 8th St, San Francisco,CA,94016 +290091,AAA Batteries (4-pack),1,2.99,2019-11-13 11:19:00,753 12th St, Austin,TX,73301 +290092,Bose SoundSport Headphones,1,99.99,2019-11-13 04:20:00,711 2nd St, San Francisco,CA,94016 +290093,27in FHD Monitor,1,149.99,2019-11-23 15:47:00,292 Center St, Dallas,TX,75001 +290094,AAA Batteries (4-pack),1,2.99,2019-11-03 20:57:00,960 Sunset St, San Francisco,CA,94016 +290095,Google Phone,1,600.0,2019-11-17 20:03:00,347 2nd St, Atlanta,GA,30301 +290096,27in FHD Monitor,1,149.99,2019-11-30 23:35:00,365 12th St, San Francisco,CA,94016 +290097,27in FHD Monitor,1,149.99,2019-11-29 12:35:00,278 Madison St, Atlanta,GA,30301 +290098,Flatscreen TV,1,300.0,2019-11-23 11:06:00,749 Spruce St, Boston,MA,02215 +290099,Lightning Charging Cable,1,14.95,2019-11-22 08:10:00,371 5th St, Boston,MA,02215 +290100,27in FHD Monitor,1,149.99,2019-11-10 12:08:00,913 Wilson St, Boston,MA,02215 +290101,27in 4K Gaming Monitor,1,389.99,2019-11-27 17:46:00,291 7th St, New York City,NY,10001 +290102,USB-C Charging Cable,1,11.95,2019-11-21 12:56:00,333 Meadow St, Boston,MA,02215 +290103,AA Batteries (4-pack),1,3.84,2019-11-12 12:13:00,670 11th St, Portland,OR,97035 +290104,Apple Airpods Headphones,1,150.0,2019-11-08 21:29:00,926 Washington St, San Francisco,CA,94016 +290105,AAA Batteries (4-pack),1,2.99,2019-11-11 09:39:00,126 Spruce St, Boston,MA,02215 +290106,AAA Batteries (4-pack),1,2.99,2019-11-23 20:33:00,351 Cherry St, Austin,TX,73301 +290107,27in FHD Monitor,1,149.99,2019-11-01 14:48:00,866 7th St, San Francisco,CA,94016 +290108,USB-C Charging Cable,1,11.95,2019-11-29 11:03:00,281 4th St, Atlanta,GA,30301 +290109,Wired Headphones,1,11.99,2019-11-29 18:41:00,734 4th St, San Francisco,CA,94016 +290110,Apple Airpods Headphones,1,150.0,2019-11-01 13:22:00,284 Johnson St, New York City,NY,10001 +290111,AA Batteries (4-pack),1,3.84,2019-11-10 12:19:00,719 Forest St, New York City,NY,10001 +290112,Lightning Charging Cable,1,14.95,2019-11-20 21:05:00,443 Meadow St, Seattle,WA,98101 +290113,20in Monitor,1,109.99,2019-11-12 14:36:00,819 5th St, Boston,MA,02215 +290114,Lightning Charging Cable,1,14.95,2019-11-09 11:07:00,645 7th St, New York City,NY,10001 +290115,AA Batteries (4-pack),1,3.84,2019-11-07 22:19:00,396 Chestnut St, Dallas,TX,75001 +290116,Lightning Charging Cable,1,14.95,2019-11-21 23:02:00,659 Cherry St, Atlanta,GA,30301 +290117,Macbook Pro Laptop,1,1700.0,2019-11-15 13:13:00,50 Cedar St, Los Angeles,CA,90001 +290118,Wired Headphones,1,11.99,2019-11-28 11:31:00,415 Cherry St, Atlanta,GA,30301 +290119,AAA Batteries (4-pack),2,2.99,2019-11-29 08:48:00,380 13th St, Seattle,WA,98101 +290120,Wired Headphones,1,11.99,2019-11-13 19:10:00,718 5th St, Seattle,WA,98101 +290121,AAA Batteries (4-pack),1,2.99,2019-11-10 18:04:00,303 West St, New York City,NY,10001 +290122,ThinkPad Laptop,1,999.99,2019-11-20 18:33:00,427 10th St, Los Angeles,CA,90001 +290123,Macbook Pro Laptop,1,1700.0,2019-11-04 13:54:00,975 Lake St, Portland,OR,97035 +290124,AA Batteries (4-pack),1,3.84,2019-11-27 14:05:00,953 Lincoln St, San Francisco,CA,94016 +290125,Google Phone,1,600.0,2019-11-29 12:14:00,146 Walnut St, Los Angeles,CA,90001 +290126,iPhone,1,700.0,2019-11-11 16:43:00,857 Wilson St, San Francisco,CA,94016 +290127,Bose SoundSport Headphones,1,99.99,2019-11-21 04:36:00,684 Chestnut St, San Francisco,CA,94016 +290128,Lightning Charging Cable,1,14.95,2019-11-14 20:40:00,950 Dogwood St, Dallas,TX,75001 +290129,Lightning Charging Cable,1,14.95,2019-11-22 20:15:00,362 1st St, New York City,NY,10001 +290130,Bose SoundSport Headphones,1,99.99,2019-11-10 06:06:00,758 Highland St, Boston,MA,02215 +290131,Bose SoundSport Headphones,1,99.99,2019-11-07 15:52:00,846 Wilson St, Boston,MA,02215 +290132,USB-C Charging Cable,1,11.95,2019-11-25 16:37:00,296 Ridge St, New York City,NY,10001 +290133,Google Phone,1,600.0,2019-11-30 13:55:00,39 2nd St, New York City,NY,10001 +290133,USB-C Charging Cable,1,11.95,2019-11-30 13:55:00,39 2nd St, New York City,NY,10001 +290134,Wired Headphones,1,11.99,2019-11-27 20:27:00,100 2nd St, Boston,MA,02215 +290135,AA Batteries (4-pack),1,3.84,2019-11-14 23:57:00,875 2nd St, Boston,MA,02215 +290136,Apple Airpods Headphones,1,150.0,2019-11-15 13:19:00,535 Jefferson St, Los Angeles,CA,90001 +290137,AAA Batteries (4-pack),2,2.99,2019-11-10 11:30:00,319 West St, Dallas,TX,75001 +290138,Apple Airpods Headphones,1,150.0,2019-11-02 17:59:00,440 13th St, Portland,OR,97035 +290139,Apple Airpods Headphones,1,150.0,2019-11-15 21:25:00,193 Meadow St, Seattle,WA,98101 +290140,Apple Airpods Headphones,1,150.0,2019-11-04 20:54:00,312 Chestnut St, Boston,MA,02215 +290141,AA Batteries (4-pack),1,3.84,2019-11-25 19:13:00,317 Jefferson St, San Francisco,CA,94016 +290142,Flatscreen TV,1,300.0,2019-11-25 10:57:00,87 Lincoln St, Boston,MA,02215 +290143,Lightning Charging Cable,1,14.95,2019-11-19 06:55:00,314 Lake St, Seattle,WA,98101 +290144,AA Batteries (4-pack),1,3.84,2019-11-14 18:20:00,370 Church St, San Francisco,CA,94016 +290145,Macbook Pro Laptop,1,1700.0,2019-11-18 08:05:00,615 South St, Portland,OR,97035 +290146,AA Batteries (4-pack),1,3.84,2019-11-12 22:21:00,408 Elm St, Austin,TX,73301 +290147,Apple Airpods Headphones,1,150.0,2019-11-12 18:12:00,76 7th St, Atlanta,GA,30301 +290148,Flatscreen TV,1,300.0,2019-11-22 12:45:00,890 5th St, San Francisco,CA,94016 +290149,34in Ultrawide Monitor,1,379.99,2019-11-06 01:35:00,393 Cherry St, San Francisco,CA,94016 +290150,Bose SoundSport Headphones,1,99.99,2019-11-12 08:41:00,508 Wilson St, Dallas,TX,75001 +290151,iPhone,1,700.0,2019-11-17 11:21:00,813 Walnut St, Los Angeles,CA,90001 +290151,Lightning Charging Cable,2,14.95,2019-11-17 11:21:00,813 Walnut St, Los Angeles,CA,90001 +290151,Wired Headphones,1,11.99,2019-11-17 11:21:00,813 Walnut St, Los Angeles,CA,90001 +290152,27in 4K Gaming Monitor,1,389.99,2019-11-14 10:46:00,913 13th St, San Francisco,CA,94016 +290153,Bose SoundSport Headphones,1,99.99,2019-11-22 08:03:00,845 Lakeview St, Los Angeles,CA,90001 +290154,AAA Batteries (4-pack),2,2.99,2019-11-26 18:37:00,815 West St, Atlanta,GA,30301 +290155,AA Batteries (4-pack),1,3.84,2019-11-30 14:57:00,31 Adams St, Boston,MA,02215 +290156,Bose SoundSport Headphones,1,99.99,2019-11-11 12:24:00,325 7th St, Portland,OR,97035 +290157,Lightning Charging Cable,2,14.95,2019-11-22 14:20:00,294 Lake St, New York City,NY,10001 +290158,Apple Airpods Headphones,1,150.0,2019-11-02 23:49:00,80 Highland St, Los Angeles,CA,90001 +290159,ThinkPad Laptop,1,999.99,2019-11-22 20:15:00,218 Church St, New York City,NY,10001 +290160,Lightning Charging Cable,1,14.95,2019-11-02 11:09:00,192 12th St, Portland,ME,04101 +290161,Lightning Charging Cable,2,14.95,2019-11-08 16:56:00,740 Lakeview St, Boston,MA,02215 +290162,USB-C Charging Cable,2,11.95,2019-11-13 20:05:00,368 River St, New York City,NY,10001 +290163,ThinkPad Laptop,1,999.99,2019-11-18 14:20:00,200 Jefferson St, San Francisco,CA,94016 +290164,iPhone,1,700.0,2019-11-27 15:34:00,164 7th St, Atlanta,GA,30301 +290165,AAA Batteries (4-pack),1,2.99,2019-11-13 17:26:00,264 West St, Seattle,WA,98101 +290166,Flatscreen TV,1,300.0,2019-11-27 13:43:00,401 Main St, New York City,NY,10001 +290167,27in FHD Monitor,1,149.99,2019-11-11 15:19:00,532 Spruce St, Dallas,TX,75001 +290168,Bose SoundSport Headphones,1,99.99,2019-11-26 21:27:00,51 Meadow St, New York City,NY,10001 +290169,Lightning Charging Cable,1,14.95,2019-11-26 18:22:00,281 West St, Atlanta,GA,30301 +290170,Bose SoundSport Headphones,1,99.99,2019-11-22 20:32:00,822 7th St, Los Angeles,CA,90001 +290171,Lightning Charging Cable,1,14.95,2019-11-24 16:52:00,129 Cherry St, Boston,MA,02215 +290172,Google Phone,1,600.0,2019-11-22 12:01:00,466 Jefferson St, Boston,MA,02215 +290173,Google Phone,1,600.0,2019-11-09 01:05:00,206 12th St, New York City,NY,10001 +290173,USB-C Charging Cable,1,11.95,2019-11-09 01:05:00,206 12th St, New York City,NY,10001 +290174,Vareebadd Phone,1,400.0,2019-11-25 10:16:00,772 Jefferson St, Boston,MA,02215 +290175,USB-C Charging Cable,1,11.95,2019-11-04 14:48:00,257 Cedar St, New York City,NY,10001 +290176,ThinkPad Laptop,1,999.99,2019-11-13 20:10:00,791 9th St, Los Angeles,CA,90001 +290177,AAA Batteries (4-pack),3,2.99,2019-11-29 13:44:00,892 5th St, San Francisco,CA,94016 +290178,27in 4K Gaming Monitor,1,389.99,2019-11-29 21:44:00,699 Center St, Los Angeles,CA,90001 +290179,34in Ultrawide Monitor,1,379.99,2019-11-12 15:50:00,297 Wilson St, Boston,MA,02215 +290180,Apple Airpods Headphones,1,150.0,2019-11-14 16:01:00,614 North St, Dallas,TX,75001 +290181,Lightning Charging Cable,1,14.95,2019-11-13 18:21:00,302 Lincoln St, Dallas,TX,75001 +290182,USB-C Charging Cable,1,11.95,2019-11-25 16:16:00,147 Ridge St, Portland,OR,97035 +290183,Wired Headphones,1,11.99,2019-11-11 14:18:00,233 Johnson St, New York City,NY,10001 +290184,Wired Headphones,1,11.99,2019-11-21 18:33:00,248 7th St, Austin,TX,73301 +290185,AAA Batteries (4-pack),1,2.99,2019-11-09 12:45:00,839 Highland St, New York City,NY,10001 +290186,20in Monitor,1,109.99,2019-11-02 10:54:00,496 Willow St, Seattle,WA,98101 +290187,iPhone,1,700.0,2019-11-21 09:29:00,22 Sunset St, Boston,MA,02215 +290188,Macbook Pro Laptop,1,1700.0,2019-11-11 12:50:00,315 Cedar St, New York City,NY,10001 +290189,USB-C Charging Cable,1,11.95,2019-11-10 20:11:00,93 Forest St, Dallas,TX,75001 +290190,Vareebadd Phone,1,400.0,2019-11-05 14:38:00,52 Jackson St, San Francisco,CA,94016 +290190,USB-C Charging Cable,1,11.95,2019-11-05 14:38:00,52 Jackson St, San Francisco,CA,94016 +290190,Wired Headphones,1,11.99,2019-11-05 14:38:00,52 Jackson St, San Francisco,CA,94016 +290191,Wired Headphones,1,11.99,2019-11-11 11:40:00,528 Meadow St, San Francisco,CA,94016 +290192,Bose SoundSport Headphones,1,99.99,2019-11-12 13:37:00,751 Lake St, Austin,TX,73301 +290193,Flatscreen TV,1,300.0,2019-11-08 21:16:00,791 Main St, Boston,MA,02215 +290194,Apple Airpods Headphones,1,150.0,2019-11-02 20:25:00,774 Wilson St, Seattle,WA,98101 +290195,AA Batteries (4-pack),1,3.84,2019-11-23 11:25:00,158 Ridge St, San Francisco,CA,94016 +290196,Wired Headphones,1,11.99,2019-11-05 15:24:00,952 Walnut St, San Francisco,CA,94016 +290197,USB-C Charging Cable,1,11.95,2019-11-21 11:05:00,888 Hickory St, Atlanta,GA,30301 +290198,LG Dryer,1,600.0,2019-11-30 10:53:00,935 River St, San Francisco,CA,94016 +290199,20in Monitor,1,109.99,2019-11-30 10:48:00,701 Meadow St, San Francisco,CA,94016 +290200,Apple Airpods Headphones,1,150.0,2019-11-12 01:43:00,873 Walnut St, Los Angeles,CA,90001 +290201,AAA Batteries (4-pack),1,2.99,2019-11-18 18:21:00,157 5th St, San Francisco,CA,94016 +290202,AAA Batteries (4-pack),1,2.99,2019-11-11 11:45:00,153 Forest St, San Francisco,CA,94016 +290203,Flatscreen TV,1,300.0,2019-11-14 10:22:00,621 5th St, San Francisco,CA,94016 +290204,AA Batteries (4-pack),1,3.84,2019-11-05 12:19:00,778 13th St, Atlanta,GA,30301 +290205,20in Monitor,1,109.99,2019-11-18 12:39:00,415 10th St, Seattle,WA,98101 +290206,Macbook Pro Laptop,1,1700.0,2019-11-28 07:17:00,881 2nd St, Dallas,TX,75001 +290207,Wired Headphones,1,11.99,2019-11-19 22:46:00,679 10th St, San Francisco,CA,94016 +290208,27in FHD Monitor,1,149.99,2019-11-24 13:47:00,244 1st St, New York City,NY,10001 +290209,Lightning Charging Cable,1,14.95,2019-11-11 12:11:00,284 Lake St, Dallas,TX,75001 +290210,AAA Batteries (4-pack),2,2.99,2019-11-28 17:21:00,454 Lake St, San Francisco,CA,94016 +290211,AA Batteries (4-pack),1,3.84,2019-11-27 14:54:00,741 Pine St, Boston,MA,02215 +290212,iPhone,1,700.0,2019-11-09 17:11:00,707 Jefferson St, New York City,NY,10001 +290213,34in Ultrawide Monitor,1,379.99,2019-11-13 19:03:00,523 Madison St, Boston,MA,02215 +290214,AA Batteries (4-pack),1,3.84,2019-11-29 11:06:00,612 Wilson St, Austin,TX,73301 +290215,Google Phone,1,600.0,2019-11-03 08:54:00,798 Church St, San Francisco,CA,94016 +290215,Wired Headphones,1,11.99,2019-11-03 08:54:00,798 Church St, San Francisco,CA,94016 +290216,AAA Batteries (4-pack),3,2.99,2019-11-21 13:06:00,374 12th St, New York City,NY,10001 +290217,Lightning Charging Cable,1,14.95,2019-11-21 23:27:00,873 10th St, Los Angeles,CA,90001 +290218,Bose SoundSport Headphones,1,99.99,2019-11-18 12:07:00,139 Maple St, Los Angeles,CA,90001 +290219,USB-C Charging Cable,1,11.95,2019-11-08 13:24:00,141 7th St, Boston,MA,02215 +290220,USB-C Charging Cable,1,11.95,2019-11-19 21:38:00,889 Cedar St, Boston,MA,02215 +290221,USB-C Charging Cable,1,11.95,2019-11-17 10:48:00,133 Lakeview St, San Francisco,CA,94016 +290222,Flatscreen TV,1,300.0,2019-11-02 20:11:00,245 Hickory St, Boston,MA,02215 +290223,USB-C Charging Cable,1,11.95,2019-11-01 16:05:00,617 River St, San Francisco,CA,94016 +290224,Vareebadd Phone,1,400.0,2019-11-01 16:05:00,310 Spruce St, New York City,NY,10001 +290224,USB-C Charging Cable,1,11.95,2019-11-01 16:05:00,310 Spruce St, New York City,NY,10001 +290225,Bose SoundSport Headphones,1,99.99,2019-11-07 18:43:00,370 Center St, New York City,NY,10001 +290226,AAA Batteries (4-pack),2,2.99,2019-11-23 11:01:00,605 10th St, Dallas,TX,75001 +290227,USB-C Charging Cable,1,11.95,2019-11-11 08:33:00,506 Elm St, New York City,NY,10001 +290228,27in FHD Monitor,1,149.99,2019-11-30 16:06:00,108 2nd St, San Francisco,CA,94016 +290229,Wired Headphones,2,11.99,2019-11-28 16:03:00,573 6th St, San Francisco,CA,94016 +290230,Apple Airpods Headphones,1,150.0,2019-11-22 17:53:00,274 Lincoln St, Dallas,TX,75001 +290231,USB-C Charging Cable,1,11.95,2019-11-20 20:05:00,261 Park St, Austin,TX,73301 +290232,Lightning Charging Cable,1,14.95,2019-11-08 18:49:00,324 Madison St, Portland,OR,97035 +290233,Lightning Charging Cable,1,14.95,2019-12-01 01:40:00,826 4th St, San Francisco,CA,94016 +290234,27in 4K Gaming Monitor,1,389.99,2019-11-01 21:15:00,75 13th St, Los Angeles,CA,90001 +290235,USB-C Charging Cable,1,11.95,2019-11-02 08:03:00,845 6th St, San Francisco,CA,94016 +290236,USB-C Charging Cable,1,11.95,2019-11-05 13:29:00,736 Park St, New York City,NY,10001 +290237,Google Phone,1,600.0,2019-11-13 19:47:00,376 6th St, Portland,OR,97035 +290238,USB-C Charging Cable,1,11.95,2019-11-22 20:45:00,315 11th St, San Francisco,CA,94016 +290239,iPhone,1,700.0,2019-11-11 17:30:00,508 Washington St, San Francisco,CA,94016 +290239,Lightning Charging Cable,1,14.95,2019-11-11 17:30:00,508 Washington St, San Francisco,CA,94016 +290240,AAA Batteries (4-pack),2,2.99,2019-11-08 12:10:00,658 14th St, San Francisco,CA,94016 +290241,Google Phone,1,600.0,2019-11-22 19:38:00,670 Adams St, Dallas,TX,75001 +290242,AAA Batteries (4-pack),1,2.99,2019-11-09 19:02:00,127 Lake St, Atlanta,GA,30301 +290243,USB-C Charging Cable,1,11.95,2019-11-03 11:18:00,844 Lake St, Boston,MA,02215 +290244,AAA Batteries (4-pack),1,2.99,2019-11-08 16:22:00,623 5th St, San Francisco,CA,94016 +290245,Lightning Charging Cable,1,14.95,2019-11-07 10:40:00,187 Johnson St, Boston,MA,02215 +290246,USB-C Charging Cable,1,11.95,2019-11-19 07:02:00,712 South St, Austin,TX,73301 +290247,AA Batteries (4-pack),1,3.84,2019-11-05 13:40:00,68 Maple St, San Francisco,CA,94016 +290248,AAA Batteries (4-pack),1,2.99,2019-11-22 19:00:00,177 Jefferson St, San Francisco,CA,94016 +290249,AAA Batteries (4-pack),2,2.99,2019-11-21 18:13:00,475 Hickory St, San Francisco,CA,94016 +290250,AA Batteries (4-pack),2,3.84,2019-11-02 16:03:00,715 5th St, Portland,OR,97035 +290251,Lightning Charging Cable,1,14.95,2019-11-07 19:34:00,266 6th St, Los Angeles,CA,90001 +290252,AAA Batteries (4-pack),2,2.99,2019-11-27 07:13:00,815 Meadow St, San Francisco,CA,94016 +290253,AAA Batteries (4-pack),4,2.99,2019-11-13 22:15:00,628 6th St, Los Angeles,CA,90001 +290254,AA Batteries (4-pack),1,3.84,2019-11-18 13:16:00,819 14th St, Austin,TX,73301 +290255,Apple Airpods Headphones,1,150.0,2019-11-05 23:14:00,944 Lakeview St, San Francisco,CA,94016 +290256,Wired Headphones,1,11.99,2019-11-25 20:29:00,869 Dogwood St, San Francisco,CA,94016 +290257,Apple Airpods Headphones,1,150.0,2019-11-24 17:44:00,947 10th St, San Francisco,CA,94016 +290258,Lightning Charging Cable,1,14.95,2019-11-12 16:31:00,20 11th St, Atlanta,GA,30301 +290259,Bose SoundSport Headphones,1,99.99,2019-11-30 11:12:00,557 Hickory St, New York City,NY,10001 +290260,Lightning Charging Cable,1,14.95,2019-11-10 19:41:00,727 5th St, Austin,TX,73301 +290261,20in Monitor,1,109.99,2019-11-23 15:22:00,264 Church St, Boston,MA,02215 +290262,iPhone,1,700.0,2019-11-29 12:10:00,83 6th St, Boston,MA,02215 +290263,Wired Headphones,1,11.99,2019-11-25 17:28:00,922 Elm St, Atlanta,GA,30301 +290264,Lightning Charging Cable,1,14.95,2019-11-13 21:06:00,954 Pine St, New York City,NY,10001 +290265,Macbook Pro Laptop,1,1700.0,2019-11-22 05:53:00,842 11th St, Portland,OR,97035 +290266,34in Ultrawide Monitor,1,379.99,2019-11-30 19:59:00,213 Madison St, Austin,TX,73301 +290267,Google Phone,1,600.0,2019-11-26 17:14:00,677 River St, Atlanta,GA,30301 +290267,USB-C Charging Cable,1,11.95,2019-11-26 17:14:00,677 River St, Atlanta,GA,30301 +290268,27in FHD Monitor,1,149.99,2019-11-14 21:30:00,288 Hill St, New York City,NY,10001 +290269,20in Monitor,1,109.99,2019-11-09 18:01:00,132 South St, Atlanta,GA,30301 +290270,USB-C Charging Cable,2,11.95,2019-11-07 23:39:00,45 Washington St, Portland,OR,97035 +290271,Bose SoundSport Headphones,1,99.99,2019-11-25 20:53:00,766 Jefferson St, New York City,NY,10001 +290272,Wired Headphones,1,11.99,2019-11-10 13:01:00,470 Main St, San Francisco,CA,94016 +290273,iPhone,1,700.0,2019-11-04 11:40:00,161 West St, Los Angeles,CA,90001 +290273,Lightning Charging Cable,1,14.95,2019-11-04 11:40:00,161 West St, Los Angeles,CA,90001 +290273,Wired Headphones,1,11.99,2019-11-04 11:40:00,161 West St, Los Angeles,CA,90001 +290274,AA Batteries (4-pack),1,3.84,2019-11-19 16:00:00,388 Meadow St, New York City,NY,10001 +290274,AAA Batteries (4-pack),1,2.99,2019-11-19 16:00:00,388 Meadow St, New York City,NY,10001 +290275,AAA Batteries (4-pack),1,2.99,2019-11-14 17:08:00,667 Wilson St, Boston,MA,02215 +290276,AA Batteries (4-pack),1,3.84,2019-11-23 08:27:00,709 River St, Atlanta,GA,30301 +290277,27in FHD Monitor,1,149.99,2019-11-27 01:57:00,718 Park St, Los Angeles,CA,90001 +290278,AA Batteries (4-pack),1,3.84,2019-11-21 18:00:00,541 South St, Los Angeles,CA,90001 +290279,iPhone,1,700.0,2019-11-24 18:49:00,222 Washington St, Boston,MA,02215 +290280,Apple Airpods Headphones,1,150.0,2019-11-09 21:33:00,424 South St, San Francisco,CA,94016 +290281,20in Monitor,1,109.99,2019-11-21 16:36:00,442 Adams St, New York City,NY,10001 +290282,AAA Batteries (4-pack),2,2.99,2019-11-05 17:20:00,135 Cherry St, Portland,OR,97035 +290283,USB-C Charging Cable,1,11.95,2019-11-05 13:55:00,18 11th St, Los Angeles,CA,90001 +290284,20in Monitor,1,109.99,2019-11-01 11:44:00,475 14th St, New York City,NY,10001 +290285,ThinkPad Laptop,1,999.99,2019-11-22 16:05:00,318 Maple St, Dallas,TX,75001 +290286,Macbook Pro Laptop,1,1700.0,2019-11-12 08:40:00,405 Center St, San Francisco,CA,94016 +290286,Bose SoundSport Headphones,1,99.99,2019-11-12 08:40:00,405 Center St, San Francisco,CA,94016 +290287,AAA Batteries (4-pack),1,2.99,2019-11-14 19:45:00,584 14th St, Seattle,WA,98101 +290288,Apple Airpods Headphones,1,150.0,2019-11-21 21:39:00,912 Chestnut St, Dallas,TX,75001 +290289,USB-C Charging Cable,1,11.95,2019-11-24 12:11:00,909 Cherry St, Dallas,TX,75001 +290290,Wired Headphones,1,11.99,2019-11-21 09:01:00,851 8th St, Atlanta,GA,30301 +290291,34in Ultrawide Monitor,1,379.99,2019-11-20 14:54:00,661 Pine St, San Francisco,CA,94016 +290292,Lightning Charging Cable,1,14.95,2019-11-28 19:00:00,687 14th St, Los Angeles,CA,90001 +290293,Bose SoundSport Headphones,1,99.99,2019-11-26 21:29:00,982 12th St, Austin,TX,73301 +290294,27in FHD Monitor,1,149.99,2019-11-26 08:57:00,550 Madison St, San Francisco,CA,94016 +290295,AAA Batteries (4-pack),1,2.99,2019-11-01 10:53:00,440 Hill St, Atlanta,GA,30301 +290296,27in 4K Gaming Monitor,1,389.99,2019-11-25 15:54:00,312 8th St, New York City,NY,10001 +290297,AAA Batteries (4-pack),3,2.99,2019-11-01 21:42:00,309 Chestnut St, Los Angeles,CA,90001 +290298,AA Batteries (4-pack),1,3.84,2019-11-09 10:58:00,872 6th St, New York City,NY,10001 +290299,Bose SoundSport Headphones,1,99.99,2019-11-28 21:50:00,353 Meadow St, San Francisco,CA,94016 +290300,AAA Batteries (4-pack),2,2.99,2019-11-25 19:18:00,666 Wilson St, Seattle,WA,98101 +290301,USB-C Charging Cable,1,11.95,2019-11-19 08:48:00,928 Center St, Los Angeles,CA,90001 +290302,Wired Headphones,1,11.99,2019-11-04 16:10:00,91 9th St, Atlanta,GA,30301 +290303,AAA Batteries (4-pack),1,2.99,2019-11-02 19:57:00,39 Pine St, Dallas,TX,75001 +290304,AA Batteries (4-pack),1,3.84,2019-11-25 11:34:00,664 North St, Seattle,WA,98101 +290305,Lightning Charging Cable,1,14.95,2019-11-11 12:36:00,533 Dogwood St, Boston,MA,02215 +290306,ThinkPad Laptop,1,999.99,2019-11-02 13:29:00,428 Madison St, New York City,NY,10001 +290307,AA Batteries (4-pack),3,3.84,2019-11-07 20:58:00,384 5th St, Boston,MA,02215 +290308,USB-C Charging Cable,1,11.95,2019-11-26 22:35:00,702 Church St, San Francisco,CA,94016 +290309,27in 4K Gaming Monitor,1,389.99,2019-11-29 11:24:00,65 Willow St, San Francisco,CA,94016 +290310,Apple Airpods Headphones,1,150.0,2019-11-24 18:36:00,199 Jefferson St, Portland,OR,97035 +290311,USB-C Charging Cable,1,11.95,2019-11-07 12:21:00,208 Lakeview St, San Francisco,CA,94016 +290312,27in 4K Gaming Monitor,1,389.99,2019-11-08 11:31:00,78 4th St, Dallas,TX,75001 +290313,Bose SoundSport Headphones,1,99.99,2019-11-04 22:07:00,358 Dogwood St, Seattle,WA,98101 +290314,Lightning Charging Cable,1,14.95,2019-11-12 07:58:00,28 2nd St, Austin,TX,73301 +290315,34in Ultrawide Monitor,1,379.99,2019-11-02 23:33:00,320 Ridge St, San Francisco,CA,94016 +290316,Bose SoundSport Headphones,1,99.99,2019-11-05 14:34:00,625 4th St, Boston,MA,02215 +290317,AA Batteries (4-pack),1,3.84,2019-11-16 12:51:00,916 4th St, Portland,OR,97035 +290318,Google Phone,1,600.0,2019-11-16 20:29:00,364 Hill St, Los Angeles,CA,90001 +290319,Wired Headphones,1,11.99,2019-11-15 12:20:00,690 Washington St, Dallas,TX,75001 +290320,Wired Headphones,2,11.99,2019-11-19 13:01:00,47 Cherry St, Seattle,WA,98101 +290321,Bose SoundSport Headphones,1,99.99,2019-11-18 17:35:00,515 Park St, Portland,OR,97035 +290322,Flatscreen TV,1,300.0,2019-11-01 13:50:00,639 7th St, Portland,OR,97035 +290323,AA Batteries (4-pack),1,3.84,2019-11-18 20:47:00,967 Maple St, New York City,NY,10001 +290324,Apple Airpods Headphones,1,150.0,2019-11-04 14:52:00,399 2nd St, San Francisco,CA,94016 +290325,27in FHD Monitor,1,149.99,2019-11-23 10:04:00,248 Lakeview St, Portland,ME,04101 +290326,Lightning Charging Cable,1,14.95,2019-11-15 19:10:00,781 Ridge St, San Francisco,CA,94016 +290327,Lightning Charging Cable,1,14.95,2019-11-07 19:08:00,661 8th St, San Francisco,CA,94016 +290328,Lightning Charging Cable,1,14.95,2019-11-18 15:34:00,851 Sunset St, Austin,TX,73301 +290329,Wired Headphones,1,11.99,2019-11-20 01:56:00,170 14th St, Los Angeles,CA,90001 +290330,Apple Airpods Headphones,1,150.0,2019-11-11 17:19:00,118 Washington St, Portland,ME,04101 +290331,AAA Batteries (4-pack),1,2.99,2019-11-20 05:06:00,594 Pine St, Los Angeles,CA,90001 +290332,Lightning Charging Cable,1,14.95,2019-11-21 18:49:00,92 Wilson St, San Francisco,CA,94016 +290333,Macbook Pro Laptop,1,1700.0,2019-11-30 14:59:00,734 Chestnut St, Los Angeles,CA,90001 +290334,Flatscreen TV,1,300.0,2019-11-07 00:55:00,455 Willow St, Boston,MA,02215 +290335,Wired Headphones,1,11.99,2019-11-07 15:11:00,880 12th St, Los Angeles,CA,90001 +290336,AAA Batteries (4-pack),1,2.99,2019-11-21 20:12:00,49 13th St, Dallas,TX,75001 +290337,AA Batteries (4-pack),1,3.84,2019-11-29 12:42:00,361 Cherry St, San Francisco,CA,94016 +290338,iPhone,1,700.0,2019-11-22 17:37:00,147 Sunset St, Atlanta,GA,30301 +290339,AA Batteries (4-pack),3,3.84,2019-11-07 22:05:00,696 Highland St, San Francisco,CA,94016 +290340,Lightning Charging Cable,1,14.95,2019-11-08 16:32:00,677 4th St, Los Angeles,CA,90001 +290341,AA Batteries (4-pack),1,3.84,2019-11-10 13:40:00,267 Meadow St, Seattle,WA,98101 +290342,USB-C Charging Cable,1,11.95,2019-11-07 15:25:00,246 2nd St, Portland,OR,97035 +290343,Lightning Charging Cable,1,14.95,2019-11-23 21:30:00,303 North St, Seattle,WA,98101 +290344,Flatscreen TV,1,300.0,2019-11-23 09:35:00,187 Johnson St, San Francisco,CA,94016 +290345,iPhone,1,700.0,2019-11-07 22:39:00,968 12th St, Austin,TX,73301 +290346,iPhone,1,700.0,2019-11-04 17:44:00,267 12th St, Dallas,TX,75001 +290347,Bose SoundSport Headphones,1,99.99,2019-11-18 20:21:00,41 6th St, Los Angeles,CA,90001 +290348,27in FHD Monitor,1,149.99,2019-11-22 13:24:00,771 West St, Los Angeles,CA,90001 +290349,USB-C Charging Cable,1,11.95,2019-11-15 11:28:00,263 South St, Seattle,WA,98101 +290350,Wired Headphones,1,11.99,2019-11-19 12:47:00,694 Hickory St, San Francisco,CA,94016 +290351,Lightning Charging Cable,1,14.95,2019-11-19 03:01:00,684 Spruce St, Portland,OR,97035 +290352,Bose SoundSport Headphones,1,99.99,2019-11-27 10:16:00,480 Spruce St, San Francisco,CA,94016 +290353,AA Batteries (4-pack),1,3.84,2019-11-28 15:55:00,475 Chestnut St, Seattle,WA,98101 +290354,Google Phone,1,600.0,2019-11-26 19:38:00,26 Madison St, Los Angeles,CA,90001 +290355,27in FHD Monitor,1,149.99,2019-11-26 13:39:00,345 Johnson St, Los Angeles,CA,90001 +290356,Apple Airpods Headphones,1,150.0,2019-11-01 15:35:00,585 Lincoln St, New York City,NY,10001 +290357,Apple Airpods Headphones,2,150.0,2019-11-12 18:13:00,820 5th St, New York City,NY,10001 +290358,Wired Headphones,1,11.99,2019-11-21 14:54:00,63 5th St, San Francisco,CA,94016 +290359,27in FHD Monitor,1,149.99,2019-11-21 15:08:00,830 Madison St, San Francisco,CA,94016 +290360,Bose SoundSport Headphones,1,99.99,2019-11-04 09:06:00,86 1st St, San Francisco,CA,94016 +290361,20in Monitor,1,109.99,2019-11-01 13:54:00,660 Hill St, Boston,MA,02215 +290362,Wired Headphones,1,11.99,2019-11-11 22:21:00,192 Highland St, Boston,MA,02215 +290363,AA Batteries (4-pack),1,3.84,2019-11-13 22:16:00,73 Meadow St, New York City,NY,10001 +290364,Bose SoundSport Headphones,1,99.99,2019-11-30 18:44:00,101 Lake St, Portland,OR,97035 +290365,iPhone,1,700.0,2019-11-20 18:35:00,2 Sunset St, New York City,NY,10001 +290365,Wired Headphones,1,11.99,2019-11-20 18:35:00,2 Sunset St, New York City,NY,10001 +290366,AA Batteries (4-pack),1,3.84,2019-11-23 09:44:00,155 Forest St, Portland,ME,04101 +290367,27in 4K Gaming Monitor,1,389.99,2019-11-22 18:07:00,139 7th St, Boston,MA,02215 +290368,AA Batteries (4-pack),1,3.84,2019-11-08 06:36:00,35 Dogwood St, San Francisco,CA,94016 +290369,USB-C Charging Cable,1,11.95,2019-11-12 13:47:00,842 11th St, Los Angeles,CA,90001 +290370,Bose SoundSport Headphones,1,99.99,2019-11-26 16:02:00,64 Jefferson St, Los Angeles,CA,90001 +290371,USB-C Charging Cable,1,11.95,2019-11-05 15:25:00,263 4th St, Seattle,WA,98101 +290371,Lightning Charging Cable,1,14.95,2019-11-05 15:25:00,263 4th St, Seattle,WA,98101 +290372,iPhone,1,700.0,2019-11-01 20:24:00,309 Park St, San Francisco,CA,94016 +290372,Lightning Charging Cable,2,14.95,2019-11-01 20:24:00,309 Park St, San Francisco,CA,94016 +290373,Lightning Charging Cable,1,14.95,2019-11-14 09:59:00,741 Maple St, New York City,NY,10001 +290374,27in 4K Gaming Monitor,1,389.99,2019-11-22 17:27:00,692 13th St, Seattle,WA,98101 +290375,Apple Airpods Headphones,1,150.0,2019-11-19 10:56:00,132 Jefferson St, Portland,OR,97035 +290376,Lightning Charging Cable,1,14.95,2019-11-03 17:32:00,333 4th St, Los Angeles,CA,90001 +290377,Bose SoundSport Headphones,1,99.99,2019-11-08 13:58:00,88 Meadow St, Los Angeles,CA,90001 +290378,Lightning Charging Cable,1,14.95,2019-11-14 08:13:00,727 Dogwood St, New York City,NY,10001 +290379,Lightning Charging Cable,1,14.95,2019-11-10 22:15:00,825 Main St, Portland,OR,97035 +290380,AA Batteries (4-pack),3,3.84,2019-11-06 08:24:00,267 9th St, San Francisco,CA,94016 +290381,Wired Headphones,1,11.99,2019-11-02 14:04:00,801 8th St, Dallas,TX,75001 +290382,27in FHD Monitor,1,149.99,2019-11-18 16:14:00,15 1st St, Dallas,TX,75001 +290383,Vareebadd Phone,1,400.0,2019-11-20 18:56:00,733 Adams St, San Francisco,CA,94016 +290383,USB-C Charging Cable,1,11.95,2019-11-20 18:56:00,733 Adams St, San Francisco,CA,94016 +290383,Bose SoundSport Headphones,1,99.99,2019-11-20 18:56:00,733 Adams St, San Francisco,CA,94016 +290384,Apple Airpods Headphones,1,150.0,2019-11-16 18:00:00,898 Chestnut St, Los Angeles,CA,90001 +290385,Lightning Charging Cable,1,14.95,2019-11-16 22:59:00,860 10th St, Los Angeles,CA,90001 +290386,34in Ultrawide Monitor,1,379.99,2019-11-24 09:33:00,188 4th St, Atlanta,GA,30301 +290387,AA Batteries (4-pack),2,3.84,2019-11-25 10:59:00,542 Walnut St, Atlanta,GA,30301 +290388,AA Batteries (4-pack),1,3.84,2019-11-30 17:07:00,209 10th St, Seattle,WA,98101 +290389,Lightning Charging Cable,1,14.95,2019-11-07 16:51:00,497 Hill St, San Francisco,CA,94016 +290390,Apple Airpods Headphones,1,150.0,2019-11-16 12:06:00,193 Johnson St, Atlanta,GA,30301 +290391,Wired Headphones,2,11.99,2019-11-06 10:56:00,296 Church St, Dallas,TX,75001 +290392,AAA Batteries (4-pack),1,2.99,2019-11-17 20:12:00,37 South St, New York City,NY,10001 +290393,20in Monitor,1,109.99,2019-11-10 18:57:00,783 North St, Boston,MA,02215 +290394,Apple Airpods Headphones,1,150.0,2019-11-19 12:08:00,818 Lake St, San Francisco,CA,94016 +290395,Wired Headphones,1,11.99,2019-11-19 08:58:00,646 Cedar St, Boston,MA,02215 +290395,Lightning Charging Cable,1,14.95,2019-11-19 08:58:00,646 Cedar St, Boston,MA,02215 +290396,USB-C Charging Cable,1,11.95,2019-11-22 02:48:00,38 Maple St, Austin,TX,73301 +290396,Wired Headphones,1,11.99,2019-11-22 02:48:00,38 Maple St, Austin,TX,73301 +290397,Wired Headphones,1,11.99,2019-11-01 10:19:00,652 Main St, Dallas,TX,75001 +290398,Wired Headphones,2,11.99,2019-11-14 16:51:00,719 South St, San Francisco,CA,94016 +290399,AAA Batteries (4-pack),1,2.99,2019-11-18 08:57:00,703 13th St, Los Angeles,CA,90001 +290400,AAA Batteries (4-pack),2,2.99,2019-11-14 22:35:00,368 12th St, Boston,MA,02215 +290401,Wired Headphones,1,11.99,2019-11-20 20:57:00,810 Forest St, New York City,NY,10001 +290402,Bose SoundSport Headphones,1,99.99,2019-11-17 21:51:00,387 12th St, Portland,OR,97035 +290403,AAA Batteries (4-pack),1,2.99,2019-11-19 20:40:00,175 7th St, Austin,TX,73301 +290403,Apple Airpods Headphones,1,150.0,2019-11-19 20:40:00,175 7th St, Austin,TX,73301 +290404,Apple Airpods Headphones,1,150.0,2019-11-17 12:41:00,13 Willow St, New York City,NY,10001 +290405,Apple Airpods Headphones,1,150.0,2019-11-03 14:01:00,73 Adams St, Atlanta,GA,30301 +290406,Macbook Pro Laptop,1,1700.0,2019-11-08 00:51:00,269 Jefferson St, Atlanta,GA,30301 +290407,Wired Headphones,1,11.99,2019-11-16 22:31:00,809 11th St, Austin,TX,73301 +290408,Bose SoundSport Headphones,1,99.99,2019-11-06 11:48:00,252 Willow St, New York City,NY,10001 +290409,20in Monitor,1,109.99,2019-11-16 13:45:00,76 Highland St, San Francisco,CA,94016 +290410,Macbook Pro Laptop,1,1700.0,2019-11-17 14:20:00,831 9th St, Austin,TX,73301 +290411,Bose SoundSport Headphones,1,99.99,2019-11-21 19:14:00,123 Cherry St, Austin,TX,73301 +290412,USB-C Charging Cable,2,11.95,2019-11-20 14:26:00,909 10th St, Portland,OR,97035 +290413,AAA Batteries (4-pack),2,2.99,2019-11-16 14:59:00,33 Maple St, Austin,TX,73301 +290414,Bose SoundSport Headphones,1,99.99,2019-11-01 17:15:00,57 Main St, Los Angeles,CA,90001 +290415,Bose SoundSport Headphones,1,99.99,2019-11-16 15:05:00,420 Jackson St, San Francisco,CA,94016 +290416,AA Batteries (4-pack),1,3.84,2019-11-12 16:29:00,358 Jefferson St, Los Angeles,CA,90001 +290417,Lightning Charging Cable,1,14.95,2019-11-05 13:26:00,827 South St, San Francisco,CA,94016 +290418,Wired Headphones,1,11.99,2019-11-10 11:23:00,7 Hickory St, Boston,MA,02215 +290419,USB-C Charging Cable,1,11.95,2019-11-22 11:50:00,560 North St, Los Angeles,CA,90001 +290420,Lightning Charging Cable,1,14.95,2019-11-25 22:57:00,195 Sunset St, New York City,NY,10001 +290421,Google Phone,1,600.0,2019-11-10 23:10:00,921 10th St, San Francisco,CA,94016 +290422,AA Batteries (4-pack),1,3.84,2019-11-13 22:12:00,547 4th St, San Francisco,CA,94016 +290423,Apple Airpods Headphones,1,150.0,2019-11-09 11:15:00,444 Willow St, San Francisco,CA,94016 +290424,Lightning Charging Cable,1,14.95,2019-11-13 09:54:00,813 Adams St, New York City,NY,10001 +290425,AA Batteries (4-pack),2,3.84,2019-11-20 11:41:00,6 Elm St, San Francisco,CA,94016 +290426,27in 4K Gaming Monitor,1,389.99,2019-11-14 20:24:00,765 Main St, Austin,TX,73301 +290427,USB-C Charging Cable,1,11.95,2019-11-10 17:38:00,876 South St, New York City,NY,10001 +290428,AAA Batteries (4-pack),1,2.99,2019-11-03 18:59:00,763 2nd St, Boston,MA,02215 +290429,Flatscreen TV,1,300.0,2019-11-19 20:18:00,32 2nd St, San Francisco,CA,94016 +290430,Bose SoundSport Headphones,1,99.99,2019-11-08 13:04:00,650 Park St, San Francisco,CA,94016 +290431,Macbook Pro Laptop,1,1700.0,2019-11-25 14:02:00,204 Pine St, Los Angeles,CA,90001 +290432,AA Batteries (4-pack),1,3.84,2019-11-12 08:15:00,508 River St, San Francisco,CA,94016 +290433,USB-C Charging Cable,1,11.95,2019-11-27 18:38:00,151 5th St, San Francisco,CA,94016 +290434,Bose SoundSport Headphones,1,99.99,2019-11-01 17:01:00,940 South St, New York City,NY,10001 +290435,USB-C Charging Cable,1,11.95,2019-11-10 13:54:00,532 Spruce St, Los Angeles,CA,90001 +290436,34in Ultrawide Monitor,1,379.99,2019-11-14 09:41:00,210 Forest St, San Francisco,CA,94016 +290437,AAA Batteries (4-pack),1,2.99,2019-11-27 09:36:00,917 Jackson St, New York City,NY,10001 +290438,Wired Headphones,1,11.99,2019-11-25 19:53:00,177 River St, Los Angeles,CA,90001 +290439,Apple Airpods Headphones,1,150.0,2019-11-03 12:11:00,452 Jefferson St, San Francisco,CA,94016 +290440,Apple Airpods Headphones,1,150.0,2019-11-27 09:29:00,883 Lincoln St, San Francisco,CA,94016 +290441,LG Dryer,1,600.0,2019-11-05 18:15:00,758 Elm St, Boston,MA,02215 +290442,USB-C Charging Cable,1,11.95,2019-11-20 17:20:00,877 1st St, Los Angeles,CA,90001 +290443,Macbook Pro Laptop,1,1700.0,2019-11-22 01:17:00,238 Walnut St, Los Angeles,CA,90001 +290444,Lightning Charging Cable,1,14.95,2019-11-30 11:32:00,442 Lake St, San Francisco,CA,94016 +290445,Apple Airpods Headphones,1,150.0,2019-11-23 03:04:00,271 Adams St, San Francisco,CA,94016 +290446,Bose SoundSport Headphones,1,99.99,2019-11-21 12:38:00,54 Forest St, Seattle,WA,98101 +290447,20in Monitor,1,109.99,2019-11-13 11:55:00,840 Forest St, Austin,TX,73301 +290448,Bose SoundSport Headphones,1,99.99,2019-11-13 07:55:00,357 Wilson St, Los Angeles,CA,90001 +290449,Flatscreen TV,1,300.0,2019-11-05 15:38:00,25 Hill St, San Francisco,CA,94016 +290450,Wired Headphones,1,11.99,2019-11-25 20:54:00,124 9th St, Los Angeles,CA,90001 +290451,Wired Headphones,1,11.99,2019-11-07 07:55:00,303 Spruce St, Austin,TX,73301 +290452,Lightning Charging Cable,1,14.95,2019-11-04 07:26:00,104 Chestnut St, Atlanta,GA,30301 +290453,USB-C Charging Cable,1,11.95,2019-11-18 18:32:00,318 Spruce St, San Francisco,CA,94016 +290454,Apple Airpods Headphones,1,150.0,2019-11-24 19:00:00,209 Spruce St, Los Angeles,CA,90001 +290455,LG Dryer,1,600.0,2019-11-18 09:07:00,829 Cedar St, Dallas,TX,75001 +290456,AAA Batteries (4-pack),2,2.99,2019-11-27 10:48:00,102 1st St, Dallas,TX,75001 +290457,Lightning Charging Cable,1,14.95,2019-11-18 09:53:00,865 Chestnut St, San Francisco,CA,94016 +290458,USB-C Charging Cable,1,11.95,2019-11-07 09:55:00,677 8th St, Seattle,WA,98101 +290459,AAA Batteries (4-pack),2,2.99,2019-11-20 16:23:00,76 Washington St, Los Angeles,CA,90001 +290460,Bose SoundSport Headphones,1,99.99,2019-11-08 06:51:00,163 South St, San Francisco,CA,94016 +290461,Flatscreen TV,1,300.0,2019-11-19 23:26:00,86 Dogwood St, Seattle,WA,98101 +290462,Flatscreen TV,1,300.0,2019-11-25 19:55:00,563 13th St, Boston,MA,02215 +290463,AAA Batteries (4-pack),1,2.99,2019-11-10 16:38:00,364 River St, Dallas,TX,75001 +290464,Bose SoundSport Headphones,1,99.99,2019-11-19 22:15:00,332 South St, Atlanta,GA,30301 +290465,USB-C Charging Cable,1,11.95,2019-11-06 19:51:00,894 Chestnut St, New York City,NY,10001 +290466,AAA Batteries (4-pack),1,2.99,2019-11-08 09:23:00,591 Dogwood St, Dallas,TX,75001 +290467,Lightning Charging Cable,1,14.95,2019-11-18 17:22:00,201 Cedar St, Los Angeles,CA,90001 +290468,AAA Batteries (4-pack),2,2.99,2019-11-22 16:02:00,769 Walnut St, Los Angeles,CA,90001 +290469,Flatscreen TV,1,300.0,2019-11-19 18:03:00,334 Hickory St, Portland,ME,04101 +290470,iPhone,1,700.0,2019-11-12 11:31:00,207 River St, New York City,NY,10001 +290470,Lightning Charging Cable,1,14.95,2019-11-12 11:31:00,207 River St, New York City,NY,10001 +290471,Apple Airpods Headphones,1,150.0,2019-11-24 18:59:00,309 Hickory St, San Francisco,CA,94016 +290472,Flatscreen TV,1,300.0,2019-11-22 09:43:00,717 Willow St, San Francisco,CA,94016 +290473,AAA Batteries (4-pack),1,2.99,2019-11-09 21:46:00,145 13th St, Boston,MA,02215 +290474,iPhone,1,700.0,2019-11-19 22:33:00,723 Pine St, San Francisco,CA,94016 +290475,Bose SoundSport Headphones,1,99.99,2019-11-13 10:40:00,674 Dogwood St, Atlanta,GA,30301 +290476,AAA Batteries (4-pack),2,2.99,2019-11-18 11:22:00,77 River St, San Francisco,CA,94016 +290477,USB-C Charging Cable,1,11.95,2019-11-02 16:50:00,8 8th St, New York City,NY,10001 +290478,AA Batteries (4-pack),1,3.84,2019-11-09 19:06:00,964 Washington St, San Francisco,CA,94016 +290479,AAA Batteries (4-pack),2,2.99,2019-11-08 09:40:00,88 Jackson St, San Francisco,CA,94016 +290480,Lightning Charging Cable,1,14.95,2019-11-04 12:23:00,832 Jefferson St, Austin,TX,73301 +290481,AA Batteries (4-pack),2,3.84,2019-11-12 15:03:00,723 Walnut St, Los Angeles,CA,90001 +290482,20in Monitor,1,109.99,2019-11-24 18:07:00,7 Dogwood St, San Francisco,CA,94016 +290483,AAA Batteries (4-pack),2,2.99,2019-11-05 19:36:00,810 11th St, Boston,MA,02215 +290484,AAA Batteries (4-pack),1,2.99,2019-11-26 18:41:00,627 Adams St, Boston,MA,02215 +290485,34in Ultrawide Monitor,1,379.99,2019-11-23 23:32:00,616 Willow St, Boston,MA,02215 +290486,AA Batteries (4-pack),1,3.84,2019-11-12 18:55:00,181 Ridge St, Boston,MA,02215 +290487,Bose SoundSport Headphones,1,99.99,2019-11-03 17:50:00,848 13th St, Boston,MA,02215 +290488,Lightning Charging Cable,1,14.95,2019-11-22 17:58:00,344 Center St, Atlanta,GA,30301 +290489,AAA Batteries (4-pack),3,2.99,2019-11-22 05:57:00,480 Lake St, Dallas,TX,75001 +290490,AAA Batteries (4-pack),1,2.99,2019-11-07 10:54:00,158 Sunset St, San Francisco,CA,94016 +290491,AA Batteries (4-pack),1,3.84,2019-11-04 02:17:00,271 Jefferson St, Los Angeles,CA,90001 +290492,AA Batteries (4-pack),1,3.84,2019-11-21 17:18:00,32 Willow St, Seattle,WA,98101 +290493,Google Phone,1,600.0,2019-11-28 08:07:00,631 4th St, Seattle,WA,98101 +290494,AAA Batteries (4-pack),1,2.99,2019-11-27 16:42:00,692 Walnut St, San Francisco,CA,94016 +290495,Google Phone,1,600.0,2019-11-05 10:51:00,451 Hickory St, Portland,OR,97035 +290496,Apple Airpods Headphones,1,150.0,2019-11-07 17:38:00,81 7th St, Los Angeles,CA,90001 +290497,27in FHD Monitor,1,149.99,2019-11-09 23:19:00,368 13th St, Los Angeles,CA,90001 +290498,Bose SoundSport Headphones,1,99.99,2019-11-15 17:46:00,798 Pine St, Atlanta,GA,30301 +290499,AAA Batteries (4-pack),1,2.99,2019-11-26 10:44:00,618 Wilson St, New York City,NY,10001 +290500,Bose SoundSport Headphones,1,99.99,2019-11-10 11:39:00,59 Wilson St, New York City,NY,10001 +290501,27in 4K Gaming Monitor,1,389.99,2019-11-30 10:35:00,812 Lincoln St, Portland,ME,04101 +290502,Lightning Charging Cable,1,14.95,2019-11-10 14:43:00,966 Dogwood St, Los Angeles,CA,90001 +290503,USB-C Charging Cable,1,11.95,2019-11-26 16:17:00,664 Walnut St, San Francisco,CA,94016 +290504,Bose SoundSport Headphones,1,99.99,2019-11-13 14:32:00,878 Hill St, Seattle,WA,98101 +290505,Lightning Charging Cable,1,14.95,2019-11-30 09:12:00,786 4th St, New York City,NY,10001 +290506,AAA Batteries (4-pack),1,2.99,2019-11-10 10:29:00,821 Madison St, Austin,TX,73301 +290507,Lightning Charging Cable,1,14.95,2019-11-02 21:01:00,636 Sunset St, New York City,NY,10001 +290508,AA Batteries (4-pack),2,3.84,2019-11-17 12:16:00,916 Adams St, Los Angeles,CA,90001 +290509,AAA Batteries (4-pack),3,2.99,2019-11-26 10:59:00,906 Dogwood St, San Francisco,CA,94016 +290510,AAA Batteries (4-pack),4,2.99,2019-11-04 19:10:00,146 Meadow St, New York City,NY,10001 +290511,Macbook Pro Laptop,1,1700.0,2019-11-08 19:39:00,85 Ridge St, Atlanta,GA,30301 +290512,Apple Airpods Headphones,1,150.0,2019-11-29 12:26:00,224 10th St, Atlanta,GA,30301 +290513,USB-C Charging Cable,2,11.95,2019-11-23 15:47:00,777 Dogwood St, San Francisco,CA,94016 +290514,USB-C Charging Cable,1,11.95,2019-11-13 21:38:00,762 8th St, Boston,MA,02215 +290515,Lightning Charging Cable,1,14.95,2019-11-09 14:00:00,846 8th St, Los Angeles,CA,90001 +290516,AA Batteries (4-pack),2,3.84,2019-11-16 18:43:00,696 Church St, San Francisco,CA,94016 +290517,Bose SoundSport Headphones,1,99.99,2019-11-13 13:40:00,323 Dogwood St, Atlanta,GA,30301 +290518,Lightning Charging Cable,1,14.95,2019-11-14 11:46:00,234 Lincoln St, Boston,MA,02215 +290519,Apple Airpods Headphones,1,150.0,2019-11-22 21:24:00,666 8th St, San Francisco,CA,94016 +290520,AA Batteries (4-pack),1,3.84,2019-11-20 18:30:00,325 Hickory St, San Francisco,CA,94016 +290521,27in 4K Gaming Monitor,1,389.99,2019-11-09 14:30:00,109 Cherry St, New York City,NY,10001 +290522,AAA Batteries (4-pack),1,2.99,2019-11-10 15:23:00,381 Washington St, New York City,NY,10001 +290523,Wired Headphones,1,11.99,2019-11-07 20:31:00,136 Sunset St, Atlanta,GA,30301 +290524,Apple Airpods Headphones,1,150.0,2019-11-27 14:40:00,346 South St, Dallas,TX,75001 +290525,Lightning Charging Cable,1,14.95,2019-11-17 15:09:00,123 9th St, New York City,NY,10001 +290526,Lightning Charging Cable,1,14.95,2019-11-13 16:46:00,722 12th St, Seattle,WA,98101 +290527,AAA Batteries (4-pack),1,2.99,2019-11-27 21:54:00,330 Lake St, Portland,OR,97035 +290528,AA Batteries (4-pack),1,3.84,2019-11-12 00:39:00,75 Sunset St, San Francisco,CA,94016 +290529,Lightning Charging Cable,1,14.95,2019-11-22 23:48:00,56 Hill St, Portland,OR,97035 +290530,USB-C Charging Cable,1,11.95,2019-11-14 10:41:00,351 Ridge St, San Francisco,CA,94016 +290531,Wired Headphones,1,11.99,2019-11-26 18:26:00,266 Hickory St, San Francisco,CA,94016 +290532,iPhone,1,700.0,2019-11-09 09:05:00,567 Dogwood St, San Francisco,CA,94016 +290533,AA Batteries (4-pack),1,3.84,2019-11-26 15:20:00,462 Park St, Boston,MA,02215 +290534,iPhone,1,700.0,2019-11-25 12:54:00,430 Adams St, Austin,TX,73301 +290535,USB-C Charging Cable,1,11.95,2019-11-08 14:53:00,234 Maple St, Atlanta,GA,30301 +290536,Lightning Charging Cable,1,14.95,2019-11-02 20:07:00,33 14th St, Dallas,TX,75001 +290537,USB-C Charging Cable,1,11.95,2019-11-22 18:53:00,471 Lakeview St, Atlanta,GA,30301 +290538,Lightning Charging Cable,1,14.95,2019-11-27 13:15:00,446 Hickory St, Seattle,WA,98101 +290539,USB-C Charging Cable,1,11.95,2019-11-17 18:08:00,729 Meadow St, San Francisco,CA,94016 +290540,Wired Headphones,1,11.99,2019-11-12 15:25:00,662 West St, Seattle,WA,98101 +290541,AA Batteries (4-pack),4,3.84,2019-11-08 08:26:00,552 8th St, Atlanta,GA,30301 +290542,USB-C Charging Cable,1,11.95,2019-11-02 23:57:00,548 Wilson St, Los Angeles,CA,90001 +290543,iPhone,1,700.0,2019-11-11 11:40:00,38 10th St, Seattle,WA,98101 +290544,USB-C Charging Cable,1,11.95,2019-11-01 13:13:00,264 Park St, New York City,NY,10001 +290545,34in Ultrawide Monitor,1,379.99,2019-11-19 19:55:00,422 Center St, San Francisco,CA,94016 +290546,Bose SoundSport Headphones,1,99.99,2019-11-06 11:28:00,727 North St, San Francisco,CA,94016 +290547,ThinkPad Laptop,1,999.99,2019-11-22 19:16:00,509 14th St, Dallas,TX,75001 +290548,20in Monitor,1,109.99,2019-11-10 19:32:00,523 Main St, Atlanta,GA,30301 +290549,Lightning Charging Cable,1,14.95,2019-11-10 16:48:00,884 2nd St, Atlanta,GA,30301 +290550,Bose SoundSport Headphones,1,99.99,2019-11-19 01:05:00,166 Elm St, New York City,NY,10001 +290551,Lightning Charging Cable,1,14.95,2019-11-30 18:02:00,805 Maple St, Boston,MA,02215 +290552,Apple Airpods Headphones,1,150.0,2019-11-27 11:58:00,194 13th St, Austin,TX,73301 +290553,Lightning Charging Cable,1,14.95,2019-11-06 15:55:00,80 6th St, Boston,MA,02215 +290554,Bose SoundSport Headphones,1,99.99,2019-11-21 17:25:00,858 Lincoln St, San Francisco,CA,94016 +290555,Wired Headphones,1,11.99,2019-11-03 20:39:00,678 Forest St, Boston,MA,02215 +290556,USB-C Charging Cable,1,11.95,2019-11-21 08:12:00,228 North St, Seattle,WA,98101 +290557,Apple Airpods Headphones,1,150.0,2019-11-24 21:34:00,222 Meadow St, Portland,ME,04101 +290558,AAA Batteries (4-pack),2,2.99,2019-11-13 10:21:00,998 1st St, Atlanta,GA,30301 +290559,20in Monitor,1,109.99,2019-11-24 23:10:00,251 Sunset St, Los Angeles,CA,90001 +290560,Vareebadd Phone,1,400.0,2019-11-11 14:35:00,473 Cedar St, Atlanta,GA,30301 +290561,Apple Airpods Headphones,1,150.0,2019-11-09 19:50:00,407 South St, San Francisco,CA,94016 +290562,Wired Headphones,1,11.99,2019-11-09 13:50:00,427 Jefferson St, San Francisco,CA,94016 +290563,27in FHD Monitor,1,149.99,2019-11-15 08:02:00,104 8th St, New York City,NY,10001 +290564,Lightning Charging Cable,1,14.95,2019-11-19 13:40:00,935 Park St, Seattle,WA,98101 +290565,Flatscreen TV,1,300.0,2019-11-25 09:26:00,571 Madison St, San Francisco,CA,94016 +290566,Lightning Charging Cable,1,14.95,2019-11-14 20:14:00,4 Pine St, New York City,NY,10001 +290567,Flatscreen TV,1,300.0,2019-11-21 19:31:00,172 Jefferson St, Dallas,TX,75001 +290568,27in FHD Monitor,1,149.99,2019-11-25 13:12:00,219 Sunset St, Portland,OR,97035 +290569,AA Batteries (4-pack),1,3.84,2019-11-27 05:56:00,628 Meadow St, Dallas,TX,75001 +290570,Vareebadd Phone,1,400.0,2019-11-07 19:03:00,397 8th St, San Francisco,CA,94016 +290570,USB-C Charging Cable,1,11.95,2019-11-07 19:03:00,397 8th St, San Francisco,CA,94016 +290571,AAA Batteries (4-pack),1,2.99,2019-11-24 11:59:00,335 North St, Atlanta,GA,30301 +290572,27in 4K Gaming Monitor,1,389.99,2019-11-21 12:09:00,2 Park St, New York City,NY,10001 +290573,AAA Batteries (4-pack),2,2.99,2019-11-19 12:12:00,328 Lakeview St, Austin,TX,73301 +290574,AA Batteries (4-pack),1,3.84,2019-11-09 09:46:00,390 Chestnut St, Atlanta,GA,30301 +290575,Wired Headphones,2,11.99,2019-11-24 16:35:00,678 South St, Los Angeles,CA,90001 +290576,USB-C Charging Cable,1,11.95,2019-11-06 07:20:00,949 Meadow St, New York City,NY,10001 +290577,USB-C Charging Cable,1,11.95,2019-11-02 14:00:00,658 Dogwood St, Los Angeles,CA,90001 +290578,20in Monitor,1,109.99,2019-11-03 18:14:00,864 Johnson St, San Francisco,CA,94016 +290579,Vareebadd Phone,1,400.0,2019-11-11 21:28:00,487 Madison St, Austin,TX,73301 +290579,USB-C Charging Cable,1,11.95,2019-11-11 21:28:00,487 Madison St, Austin,TX,73301 +290580,Lightning Charging Cable,1,14.95,2019-11-15 09:38:00,618 Maple St, New York City,NY,10001 +290581,AAA Batteries (4-pack),1,2.99,2019-11-30 21:37:00,428 Walnut St, New York City,NY,10001 +290582,iPhone,1,700.0,2019-11-10 17:15:00,638 Main St, Dallas,TX,75001 +290583,Flatscreen TV,1,300.0,2019-11-02 16:23:00,266 9th St, Dallas,TX,75001 +290584,iPhone,1,700.0,2019-11-12 21:18:00,658 Lake St, Atlanta,GA,30301 +290584,Wired Headphones,1,11.99,2019-11-12 21:18:00,658 Lake St, Atlanta,GA,30301 +290585,Lightning Charging Cable,1,14.95,2019-11-09 07:25:00,966 5th St, Boston,MA,02215 +290586,AAA Batteries (4-pack),1,2.99,2019-11-28 17:37:00,605 Ridge St, Los Angeles,CA,90001 +290587,AAA Batteries (4-pack),1,2.99,2019-11-05 22:13:00,433 Lincoln St, Austin,TX,73301 +290588,AA Batteries (4-pack),1,3.84,2019-11-04 07:31:00,144 7th St, Atlanta,GA,30301 +290589,Wired Headphones,1,11.99,2019-11-29 23:26:00,764 Highland St, Atlanta,GA,30301 +290590,34in Ultrawide Monitor,1,379.99,2019-11-03 15:42:00,244 Jackson St, Boston,MA,02215 +290591,AA Batteries (4-pack),1,3.84,2019-11-01 18:55:00,5 Meadow St, Dallas,TX,75001 +290592,Apple Airpods Headphones,1,150.0,2019-11-01 21:02:00,21 Jackson St, Los Angeles,CA,90001 +290593,Vareebadd Phone,1,400.0,2019-11-21 08:45:00,95 Willow St, Los Angeles,CA,90001 +290594,USB-C Charging Cable,1,11.95,2019-11-14 13:51:00,894 Willow St, San Francisco,CA,94016 +290595,Wired Headphones,1,11.99,2019-11-11 23:27:00,454 Hill St, Boston,MA,02215 +290596,AAA Batteries (4-pack),1,2.99,2019-11-26 19:45:00,821 Cedar St, New York City,NY,10001 +290597,Apple Airpods Headphones,1,150.0,2019-11-07 18:19:00,823 River St, San Francisco,CA,94016 +290598,Lightning Charging Cable,1,14.95,2019-11-13 15:06:00,283 5th St, New York City,NY,10001 +290599,Bose SoundSport Headphones,1,99.99,2019-11-07 14:25:00,483 Willow St, Los Angeles,CA,90001 +290600,ThinkPad Laptop,1,999.99,2019-11-25 11:50:00,131 Forest St, San Francisco,CA,94016 +290601,USB-C Charging Cable,1,11.95,2019-11-06 21:51:00,307 2nd St, Los Angeles,CA,90001 +290602,USB-C Charging Cable,1,11.95,2019-11-23 16:07:00,630 Dogwood St, Austin,TX,73301 +290603,Bose SoundSport Headphones,1,99.99,2019-11-09 22:00:00,862 Dogwood St, Austin,TX,73301 +290604,AAA Batteries (4-pack),1,2.99,2019-11-22 15:38:00,458 Jefferson St, San Francisco,CA,94016 +290605,Lightning Charging Cable,1,14.95,2019-11-20 13:42:00,733 Jefferson St, Seattle,WA,98101 +290606,USB-C Charging Cable,1,11.95,2019-11-22 20:40:00,903 Lakeview St, New York City,NY,10001 +290607,USB-C Charging Cable,1,11.95,2019-11-23 00:27:00,270 Lincoln St, San Francisco,CA,94016 +290608,AA Batteries (4-pack),1,3.84,2019-11-06 21:36:00,311 6th St, Boston,MA,02215 +290609,Apple Airpods Headphones,1,150.0,2019-11-12 14:39:00,520 Spruce St, Portland,OR,97035 +290610,AA Batteries (4-pack),2,3.84,2019-11-09 23:26:00,739 11th St, Dallas,TX,75001 +290611,Macbook Pro Laptop,1,1700.0,2019-11-08 20:10:00,810 Elm St, Portland,OR,97035 +290612,Bose SoundSport Headphones,1,99.99,2019-11-03 18:12:00,821 Jackson St, San Francisco,CA,94016 +290613,Bose SoundSport Headphones,1,99.99,2019-11-21 14:04:00,93 7th St, Seattle,WA,98101 +290614,Lightning Charging Cable,1,14.95,2019-11-17 22:36:00,842 6th St, New York City,NY,10001 +290615,Wired Headphones,1,11.99,2019-11-25 00:24:00,435 Wilson St, New York City,NY,10001 +290616,AA Batteries (4-pack),3,3.84,2019-11-12 12:16:00,818 Willow St, Los Angeles,CA,90001 +290616,Wired Headphones,1,11.99,2019-11-12 12:16:00,818 Willow St, Los Angeles,CA,90001 +290617,Bose SoundSport Headphones,1,99.99,2019-11-22 10:27:00,404 Forest St, San Francisco,CA,94016 +290618,iPhone,1,700.0,2019-11-30 18:01:00,892 13th St, Seattle,WA,98101 +290619,AAA Batteries (4-pack),1,2.99,2019-11-20 17:32:00,664 Elm St, Seattle,WA,98101 +290620,Lightning Charging Cable,1,14.95,2019-11-06 13:29:00,410 Meadow St, Portland,OR,97035 +290621,34in Ultrawide Monitor,1,379.99,2019-11-26 20:41:00,955 Lake St, Austin,TX,73301 +290622,Wired Headphones,1,11.99,2019-11-24 17:36:00,730 10th St, Los Angeles,CA,90001 +290623,AA Batteries (4-pack),1,3.84,2019-11-04 23:45:00,683 Forest St, San Francisco,CA,94016 +290624,AA Batteries (4-pack),2,3.84,2019-11-30 20:10:00,544 Park St, Seattle,WA,98101 +290625,34in Ultrawide Monitor,1,379.99,2019-11-03 23:05:00,544 12th St, New York City,NY,10001 +290626,AAA Batteries (4-pack),1,2.99,2019-11-06 01:45:00,121 Center St, Austin,TX,73301 +290627,Bose SoundSport Headphones,1,99.99,2019-11-19 04:27:00,418 8th St, Austin,TX,73301 +290628,20in Monitor,1,109.99,2019-11-22 22:12:00,529 South St, Seattle,WA,98101 +290629,Apple Airpods Headphones,1,150.0,2019-11-07 11:14:00,966 Jefferson St, Seattle,WA,98101 +290630,ThinkPad Laptop,1,999.99,2019-11-02 21:24:00,675 Elm St, Boston,MA,02215 +290631,Wired Headphones,1,11.99,2019-11-25 19:49:00,662 Dogwood St, Portland,OR,97035 +290632,Lightning Charging Cable,1,14.95,2019-11-22 14:12:00,82 8th St, Portland,OR,97035 +290633,Lightning Charging Cable,1,14.95,2019-11-06 19:14:00,809 Park St, San Francisco,CA,94016 +290634,AA Batteries (4-pack),1,3.84,2019-11-30 19:37:00,799 Dogwood St, Boston,MA,02215 +290635,Wired Headphones,1,11.99,2019-11-02 22:04:00,650 11th St, San Francisco,CA,94016 +290636,USB-C Charging Cable,1,11.95,2019-11-18 18:11:00,569 Jefferson St, Los Angeles,CA,90001 +290637,AAA Batteries (4-pack),1,2.99,2019-11-30 10:22:00,604 Madison St, Los Angeles,CA,90001 +290638,27in FHD Monitor,1,149.99,2019-11-29 13:56:00,827 14th St, San Francisco,CA,94016 +290639,34in Ultrawide Monitor,1,379.99,2019-11-12 18:36:00,709 Main St, New York City,NY,10001 +290640,USB-C Charging Cable,1,11.95,2019-11-16 15:05:00,198 7th St, San Francisco,CA,94016 +290641,USB-C Charging Cable,1,11.95,2019-11-19 20:34:00,360 4th St, San Francisco,CA,94016 +290642,iPhone,1,700.0,2019-11-24 19:36:00,838 Jackson St, Los Angeles,CA,90001 +290643,AA Batteries (4-pack),1,3.84,2019-11-30 12:06:00,528 13th St, San Francisco,CA,94016 +290644,Wired Headphones,1,11.99,2019-11-12 16:38:00,427 Forest St, Boston,MA,02215 +290645,Macbook Pro Laptop,1,1700.0,2019-11-12 10:17:00,20 Maple St, Boston,MA,02215 +290646,AAA Batteries (4-pack),2,2.99,2019-11-25 23:23:00,900 Spruce St, San Francisco,CA,94016 +290647,27in FHD Monitor,1,149.99,2019-11-01 17:34:00,655 Walnut St, Atlanta,GA,30301 +290648,Lightning Charging Cable,1,14.95,2019-11-13 16:27:00,554 Jackson St, Seattle,WA,98101 +290649,Apple Airpods Headphones,1,150.0,2019-11-28 13:51:00,878 Meadow St, New York City,NY,10001 +290650,USB-C Charging Cable,1,11.95,2019-11-16 10:40:00,847 14th St, Seattle,WA,98101 +290651,Lightning Charging Cable,1,14.95,2019-11-19 19:09:00,295 Hill St, San Francisco,CA,94016 +290652,Wired Headphones,1,11.99,2019-11-28 15:45:00,9 10th St, Seattle,WA,98101 +290653,Wired Headphones,1,11.99,2019-11-19 20:02:00,854 Adams St, San Francisco,CA,94016 +290654,iPhone,1,700.0,2019-11-02 11:24:00,965 Elm St, Portland,OR,97035 +290655,Wired Headphones,1,11.99,2019-11-03 13:16:00,756 Chestnut St, San Francisco,CA,94016 +290656,AAA Batteries (4-pack),3,2.99,2019-11-04 21:56:00,356 Johnson St, Dallas,TX,75001 +290657,Wired Headphones,1,11.99,2019-11-08 21:35:00,413 Main St, San Francisco,CA,94016 +290658,Apple Airpods Headphones,1,150.0,2019-11-17 22:43:00,115 5th St, New York City,NY,10001 +290659,Apple Airpods Headphones,1,150.0,2019-11-15 21:30:00,810 7th St, Los Angeles,CA,90001 +290660,AA Batteries (4-pack),1,3.84,2019-11-06 09:41:00,318 Dogwood St, San Francisco,CA,94016 +290661,27in 4K Gaming Monitor,1,389.99,2019-11-20 20:34:00,674 Highland St, Los Angeles,CA,90001 +290662,Wired Headphones,1,11.99,2019-11-01 15:55:00,783 Ridge St, Boston,MA,02215 +290663,USB-C Charging Cable,1,11.95,2019-11-09 20:52:00,9 Park St, Atlanta,GA,30301 +290664,27in FHD Monitor,1,149.99,2019-11-23 00:47:00,894 1st St, Los Angeles,CA,90001 +290665,27in FHD Monitor,1,149.99,2019-11-09 10:44:00,398 1st St, Boston,MA,02215 +290666,Apple Airpods Headphones,1,150.0,2019-11-17 11:59:00,386 Jefferson St, Los Angeles,CA,90001 +290667,Macbook Pro Laptop,1,1700.0,2019-11-18 15:02:00,197 South St, Atlanta,GA,30301 +290668,AA Batteries (4-pack),3,3.84,2019-11-01 23:52:00,909 Pine St, Boston,MA,02215 +290669,USB-C Charging Cable,1,11.95,2019-11-21 21:59:00,12 Washington St, Boston,MA,02215 +290670,34in Ultrawide Monitor,1,379.99,2019-11-26 14:05:00,149 Washington St, Los Angeles,CA,90001 +290671,Lightning Charging Cable,1,14.95,2019-11-17 11:43:00,128 Park St, New York City,NY,10001 +290672,ThinkPad Laptop,1,999.99,2019-11-16 17:10:00,956 Cedar St, New York City,NY,10001 +290673,Apple Airpods Headphones,1,150.0,2019-11-25 13:23:00,127 2nd St, Dallas,TX,75001 +290674,Apple Airpods Headphones,1,150.0,2019-11-09 13:35:00,161 West St, New York City,NY,10001 +290675,Bose SoundSport Headphones,1,99.99,2019-11-15 19:31:00,271 Meadow St, Los Angeles,CA,90001 +290676,AA Batteries (4-pack),1,3.84,2019-11-04 21:44:00,798 Center St, San Francisco,CA,94016 +290677,Flatscreen TV,1,300.0,2019-11-22 08:48:00,745 River St, Boston,MA,02215 +290678,27in FHD Monitor,1,149.99,2019-11-13 18:21:00,567 13th St, Los Angeles,CA,90001 +290679,USB-C Charging Cable,3,11.95,2019-11-23 09:25:00,420 Ridge St, San Francisco,CA,94016 +290680,ThinkPad Laptop,1,999.99,2019-11-22 19:42:00,354 6th St, Seattle,WA,98101 +290681,AA Batteries (4-pack),1,3.84,2019-11-29 17:43:00,731 Lake St, San Francisco,CA,94016 +290682,AAA Batteries (4-pack),1,2.99,2019-11-16 14:33:00,820 Maple St, San Francisco,CA,94016 +290683,Apple Airpods Headphones,1,150.0,2019-11-14 18:39:00,949 Johnson St, Seattle,WA,98101 +290684,20in Monitor,1,109.99,2019-11-30 17:42:00,320 Adams St, Los Angeles,CA,90001 +290685,Bose SoundSport Headphones,1,99.99,2019-11-06 16:01:00,514 Walnut St, Boston,MA,02215 +290686,Lightning Charging Cable,2,14.95,2019-11-01 17:21:00,594 9th St, New York City,NY,10001 +290687,AA Batteries (4-pack),1,3.84,2019-11-02 16:41:00,90 Spruce St, Boston,MA,02215 +290688,iPhone,1,700.0,2019-11-28 08:40:00,133 2nd St, Portland,OR,97035 +290689,AA Batteries (4-pack),1,3.84,2019-11-29 19:54:00,643 Main St, Seattle,WA,98101 +290690,ThinkPad Laptop,1,999.99,2019-11-22 12:51:00,163 Dogwood St, New York City,NY,10001 +290691,ThinkPad Laptop,1,999.99,2019-11-14 17:13:00,537 Dogwood St, San Francisco,CA,94016 +290692,Lightning Charging Cable,1,14.95,2019-11-03 18:38:00,251 Walnut St, San Francisco,CA,94016 +290692,Flatscreen TV,1,300.0,2019-11-03 18:38:00,251 Walnut St, San Francisco,CA,94016 +290693,iPhone,1,700.0,2019-11-02 00:57:00,723 Meadow St, Seattle,WA,98101 +290693,27in FHD Monitor,1,149.99,2019-11-02 00:57:00,723 Meadow St, Seattle,WA,98101 +290694,Macbook Pro Laptop,1,1700.0,2019-11-25 16:57:00,631 Meadow St, San Francisco,CA,94016 +290695,Apple Airpods Headphones,1,150.0,2019-11-20 15:35:00,146 Ridge St, San Francisco,CA,94016 +290696,Bose SoundSport Headphones,1,99.99,2019-11-02 12:04:00,854 Jefferson St, San Francisco,CA,94016 +290697,AA Batteries (4-pack),1,3.84,2019-11-13 12:18:00,369 Wilson St, San Francisco,CA,94016 +290698,Apple Airpods Headphones,1,150.0,2019-11-30 14:39:00,115 4th St, Dallas,TX,75001 +290699,Bose SoundSport Headphones,1,99.99,2019-11-04 18:22:00,462 Lake St, New York City,NY,10001 +290700,USB-C Charging Cable,1,11.95,2019-11-26 20:42:00,219 Lake St, San Francisco,CA,94016 +290701,ThinkPad Laptop,1,999.99,2019-11-15 01:47:00,514 Johnson St, Austin,TX,73301 +290702,Lightning Charging Cable,1,14.95,2019-11-26 17:39:00,957 Jackson St, New York City,NY,10001 +290703,Bose SoundSport Headphones,1,99.99,2019-11-06 12:27:00,540 6th St, San Francisco,CA,94016 +290704,AA Batteries (4-pack),1,3.84,2019-11-26 22:24:00,751 Forest St, Los Angeles,CA,90001 +290705,Bose SoundSport Headphones,1,99.99,2019-11-23 23:00:00,104 9th St, Los Angeles,CA,90001 +290706,USB-C Charging Cable,1,11.95,2019-11-29 13:46:00,308 Johnson St, Boston,MA,02215 +290707,Lightning Charging Cable,1,14.95,2019-11-10 23:58:00,45 River St, New York City,NY,10001 +290708,AAA Batteries (4-pack),2,2.99,2019-11-14 17:32:00,371 8th St, Portland,OR,97035 +290709,Wired Headphones,1,11.99,2019-11-28 13:15:00,671 Madison St, Los Angeles,CA,90001 +290710,Apple Airpods Headphones,1,150.0,2019-11-05 19:56:00,832 4th St, San Francisco,CA,94016 +290711,27in FHD Monitor,1,149.99,2019-11-08 11:40:00,614 Highland St, Boston,MA,02215 +290712,AA Batteries (4-pack),1,3.84,2019-11-25 08:54:00,469 Madison St, Los Angeles,CA,90001 +290713,AAA Batteries (4-pack),2,2.99,2019-11-20 14:28:00,255 Pine St, San Francisco,CA,94016 +290714,Apple Airpods Headphones,1,150.0,2019-11-09 19:00:00,725 Park St, New York City,NY,10001 +290715,34in Ultrawide Monitor,1,379.99,2019-11-30 19:48:00,266 Sunset St, San Francisco,CA,94016 +290716,USB-C Charging Cable,1,11.95,2019-11-02 13:20:00,537 Main St, Portland,OR,97035 +290717,Apple Airpods Headphones,1,150.0,2019-11-14 12:34:00,167 North St, San Francisco,CA,94016 +290718,Lightning Charging Cable,1,14.95,2019-11-28 14:34:00,87 1st St, San Francisco,CA,94016 +290719,27in 4K Gaming Monitor,1,389.99,2019-11-20 15:58:00,845 North St, New York City,NY,10001 +290720,AAA Batteries (4-pack),1,2.99,2019-11-05 13:00:00,122 10th St, Seattle,WA,98101 +290721,Wired Headphones,2,11.99,2019-11-13 18:14:00,216 North St, New York City,NY,10001 +290722,27in 4K Gaming Monitor,1,389.99,2019-11-26 10:29:00,290 2nd St, Los Angeles,CA,90001 +290723,ThinkPad Laptop,1,999.99,2019-11-12 13:07:00,513 Elm St, Los Angeles,CA,90001 +290724,USB-C Charging Cable,1,11.95,2019-11-02 16:27:00,860 Maple St, New York City,NY,10001 +290725,27in 4K Gaming Monitor,1,389.99,2019-11-11 20:06:00,43 West St, New York City,NY,10001 +290726,Lightning Charging Cable,1,14.95,2019-11-15 21:32:00,932 Pine St, Seattle,WA,98101 +290727,USB-C Charging Cable,1,11.95,2019-11-13 21:04:00,39 Chestnut St, Atlanta,GA,30301 +290728,Lightning Charging Cable,1,14.95,2019-11-25 12:29:00,301 Pine St, Los Angeles,CA,90001 +290729,27in 4K Gaming Monitor,1,389.99,2019-11-06 22:03:00,628 6th St, Austin,TX,73301 +290730,AAA Batteries (4-pack),2,2.99,2019-11-18 19:03:00,4 9th St, Austin,TX,73301 +290731,USB-C Charging Cable,2,11.95,2019-11-11 15:11:00,908 7th St, Atlanta,GA,30301 +290732,Google Phone,1,600.0,2019-11-01 23:53:00,192 Jackson St, San Francisco,CA,94016 +290733,Lightning Charging Cable,1,14.95,2019-11-09 21:08:00,827 2nd St, Atlanta,GA,30301 +290734,Bose SoundSport Headphones,1,99.99,2019-11-16 11:43:00,329 Maple St, New York City,NY,10001 +290735,AAA Batteries (4-pack),1,2.99,2019-11-26 10:37:00,461 Forest St, Los Angeles,CA,90001 +290736,USB-C Charging Cable,2,11.95,2019-11-01 21:44:00,15 Dogwood St, San Francisco,CA,94016 +290737,USB-C Charging Cable,1,11.95,2019-11-01 12:38:00,253 Center St, Portland,OR,97035 +290738,Google Phone,1,600.0,2019-11-07 14:13:00,463 Lakeview St, Boston,MA,02215 +290739,AA Batteries (4-pack),1,3.84,2019-11-09 19:48:00,484 9th St, New York City,NY,10001 +290740,AAA Batteries (4-pack),2,2.99,2019-11-27 12:16:00,33 Wilson St, Boston,MA,02215 +290741,Macbook Pro Laptop,1,1700.0,2019-11-04 21:45:00,188 North St, San Francisco,CA,94016 +290742,AAA Batteries (4-pack),1,2.99,2019-11-04 20:52:00,487 Highland St, San Francisco,CA,94016 +290743,Wired Headphones,1,11.99,2019-11-09 04:28:00,407 10th St, Portland,OR,97035 +290744,USB-C Charging Cable,1,11.95,2019-11-21 22:44:00,662 Washington St, San Francisco,CA,94016 +290745,Wired Headphones,1,11.99,2019-11-01 13:02:00,512 4th St, New York City,NY,10001 +290746,USB-C Charging Cable,1,11.95,2019-11-29 19:55:00,674 10th St, Dallas,TX,75001 +290747,27in FHD Monitor,1,149.99,2019-11-24 12:43:00,161 Cedar St, Seattle,WA,98101 +290748,Wired Headphones,1,11.99,2019-11-14 20:21:00,138 8th St, Los Angeles,CA,90001 +290749,Lightning Charging Cable,1,14.95,2019-11-07 18:11:00,819 Madison St, San Francisco,CA,94016 +290750,USB-C Charging Cable,1,11.95,2019-11-24 12:28:00,586 Wilson St, Atlanta,GA,30301 +290751,Lightning Charging Cable,1,14.95,2019-11-10 20:13:00,846 South St, Seattle,WA,98101 +290752,Wired Headphones,1,11.99,2019-11-16 18:05:00,65 Cherry St, Los Angeles,CA,90001 +290753,AAA Batteries (4-pack),1,2.99,2019-11-15 11:52:00,669 Hill St, Los Angeles,CA,90001 +290754,Wired Headphones,1,11.99,2019-11-26 14:12:00,720 2nd St, Dallas,TX,75001 +290755,27in FHD Monitor,1,149.99,2019-11-11 13:39:00,774 Cherry St, San Francisco,CA,94016 +290756,Wired Headphones,1,11.99,2019-11-17 13:33:00,436 Sunset St, Los Angeles,CA,90001 +290757,Bose SoundSport Headphones,1,99.99,2019-11-09 13:30:00,814 Willow St, Dallas,TX,75001 +290758,Wired Headphones,1,11.99,2019-11-29 10:05:00,23 12th St, Dallas,TX,75001 +290759,Lightning Charging Cable,1,14.95,2019-11-03 14:02:00,744 9th St, Atlanta,GA,30301 +290760,AA Batteries (4-pack),2,3.84,2019-11-25 17:14:00,879 Wilson St, San Francisco,CA,94016 +290761,27in FHD Monitor,1,149.99,2019-11-02 18:43:00,830 Hickory St, Boston,MA,02215 +290762,Wired Headphones,1,11.99,2019-11-11 17:20:00,997 Highland St, Los Angeles,CA,90001 +290763,USB-C Charging Cable,1,11.95,2019-11-17 11:03:00,879 Pine St, Portland,ME,04101 +290764,Lightning Charging Cable,1,14.95,2019-11-02 07:21:00,22 Forest St, Portland,ME,04101 +290765,Google Phone,1,600.0,2019-11-09 01:46:00,118 5th St, New York City,NY,10001 +290765,USB-C Charging Cable,1,11.95,2019-11-09 01:46:00,118 5th St, New York City,NY,10001 +290766,Bose SoundSport Headphones,1,99.99,2019-11-28 13:18:00,7 Washington St, Boston,MA,02215 +290767,AA Batteries (4-pack),1,3.84,2019-11-18 21:01:00,120 West St, New York City,NY,10001 +290768,Lightning Charging Cable,1,14.95,2019-11-22 09:31:00,165 Lincoln St, Atlanta,GA,30301 +290769,AAA Batteries (4-pack),1,2.99,2019-11-14 21:36:00,609 River St, Los Angeles,CA,90001 +290770,iPhone,1,700.0,2019-11-20 06:49:00,844 Wilson St, Portland,OR,97035 +290771,Lightning Charging Cable,1,14.95,2019-11-22 10:09:00,145 Meadow St, San Francisco,CA,94016 +290772,Bose SoundSport Headphones,1,99.99,2019-11-12 18:30:00,825 West St, Boston,MA,02215 +290773,Google Phone,1,600.0,2019-11-07 07:52:00,477 Church St, Seattle,WA,98101 +290773,Wired Headphones,1,11.99,2019-11-07 07:52:00,477 Church St, Seattle,WA,98101 +290774,Apple Airpods Headphones,1,150.0,2019-11-21 17:16:00,183 Madison St, San Francisco,CA,94016 +290775,Lightning Charging Cable,1,14.95,2019-11-22 19:59:00,38 Spruce St, Austin,TX,73301 +290776,AA Batteries (4-pack),1,3.84,2019-11-26 10:42:00,540 Ridge St, Austin,TX,73301 +290777,Bose SoundSport Headphones,1,99.99,2019-11-05 13:53:00,619 Adams St, Seattle,WA,98101 +290778,ThinkPad Laptop,1,999.99,2019-11-20 22:50:00,140 Highland St, San Francisco,CA,94016 +290779,USB-C Charging Cable,1,11.95,2019-11-05 20:42:00,672 Main St, San Francisco,CA,94016 +290780,Lightning Charging Cable,2,14.95,2019-11-22 04:21:00,151 14th St, Los Angeles,CA,90001 +290781,Wired Headphones,1,11.99,2019-11-02 02:59:00,687 Wilson St, Los Angeles,CA,90001 +290782,USB-C Charging Cable,1,11.95,2019-11-12 01:51:00,54 11th St, Seattle,WA,98101 +290783,Apple Airpods Headphones,1,150.0,2019-11-05 11:21:00,565 Dogwood St, Austin,TX,73301 +290784,Lightning Charging Cable,1,14.95,2019-11-01 11:44:00,115 Forest St, New York City,NY,10001 +290785,Apple Airpods Headphones,1,150.0,2019-11-29 10:31:00,857 Main St, San Francisco,CA,94016 +290786,Wired Headphones,1,11.99,2019-11-22 08:12:00,341 8th St, Portland,OR,97035 +290787,Wired Headphones,1,11.99,2019-11-04 22:45:00,167 1st St, Atlanta,GA,30301 +290788,USB-C Charging Cable,1,11.95,2019-11-24 04:07:00,947 Jackson St, Dallas,TX,75001 +290789,Apple Airpods Headphones,1,150.0,2019-11-07 17:40:00,21 Main St, New York City,NY,10001 +290790,Lightning Charging Cable,1,14.95,2019-11-05 19:38:00,611 Meadow St, Los Angeles,CA,90001 +290791,USB-C Charging Cable,1,11.95,2019-11-09 18:12:00,796 Walnut St, Los Angeles,CA,90001 +290792,Vareebadd Phone,1,400.0,2019-11-08 19:30:00,194 Center St, San Francisco,CA,94016 +290793,AAA Batteries (4-pack),1,2.99,2019-11-20 09:58:00,78 Madison St, Atlanta,GA,30301 +290793,Vareebadd Phone,1,400.0,2019-11-20 09:58:00,78 Madison St, Atlanta,GA,30301 +290794,AA Batteries (4-pack),2,3.84,2019-11-18 19:15:00,745 9th St, Los Angeles,CA,90001 +290795,Vareebadd Phone,1,400.0,2019-11-26 09:23:00,949 Meadow St, Los Angeles,CA,90001 +290796,AAA Batteries (4-pack),1,2.99,2019-11-15 20:13:00,184 West St, Los Angeles,CA,90001 +290797,Bose SoundSport Headphones,1,99.99,2019-11-12 21:05:00,610 2nd St, San Francisco,CA,94016 +290798,USB-C Charging Cable,1,11.95,2019-11-16 21:20:00,624 4th St, Boston,MA,02215 +290799,AAA Batteries (4-pack),2,2.99,2019-11-18 21:14:00,905 Jackson St, Los Angeles,CA,90001 +290800,USB-C Charging Cable,1,11.95,2019-11-21 06:55:00,104 River St, San Francisco,CA,94016 +290801,AA Batteries (4-pack),1,3.84,2019-11-20 09:24:00,517 Cherry St, Seattle,WA,98101 +290802,Bose SoundSport Headphones,1,99.99,2019-11-22 17:23:00,302 South St, Atlanta,GA,30301 +290803,AA Batteries (4-pack),1,3.84,2019-11-13 08:16:00,332 Jackson St, Boston,MA,02215 +290804,AA Batteries (4-pack),1,3.84,2019-11-03 11:23:00,966 Hill St, Boston,MA,02215 +290805,Wired Headphones,1,11.99,2019-11-21 14:02:00,10 Chestnut St, San Francisco,CA,94016 +290806,USB-C Charging Cable,1,11.95,2019-11-03 09:34:00,81 Meadow St, San Francisco,CA,94016 +290807,AA Batteries (4-pack),1,3.84,2019-11-12 15:48:00,709 Washington St, San Francisco,CA,94016 +290808,USB-C Charging Cable,1,11.95,2019-11-27 15:08:00,826 14th St, Los Angeles,CA,90001 +290809,AAA Batteries (4-pack),1,2.99,2019-11-21 10:32:00,83 12th St, San Francisco,CA,94016 +290810,iPhone,1,700.0,2019-11-23 12:46:00,710 Walnut St, Boston,MA,02215 +290811,Google Phone,1,600.0,2019-11-19 20:19:00,146 Chestnut St, Seattle,WA,98101 +290811,Bose SoundSport Headphones,1,99.99,2019-11-19 20:19:00,146 Chestnut St, Seattle,WA,98101 +290812,AA Batteries (4-pack),1,3.84,2019-11-23 21:35:00,271 Willow St, San Francisco,CA,94016 +290813,Vareebadd Phone,1,400.0,2019-11-08 09:32:00,663 Jackson St, Austin,TX,73301 +290814,AAA Batteries (4-pack),1,2.99,2019-11-20 12:07:00,289 2nd St, San Francisco,CA,94016 +290815,Flatscreen TV,1,300.0,2019-11-18 19:59:00,595 Chestnut St, San Francisco,CA,94016 +290816,Wired Headphones,1,11.99,2019-11-15 02:05:00,595 Jefferson St, Austin,TX,73301 +290817,ThinkPad Laptop,1,999.99,2019-11-24 19:35:00,905 Spruce St, Boston,MA,02215 +290818,34in Ultrawide Monitor,1,379.99,2019-11-19 06:57:00,548 Center St, San Francisco,CA,94016 +290819,20in Monitor,1,109.99,2019-11-04 11:52:00,156 14th St, New York City,NY,10001 +290820,Wired Headphones,1,11.99,2019-11-07 21:35:00,379 Dogwood St, Seattle,WA,98101 +290821,Apple Airpods Headphones,1,150.0,2019-11-29 19:07:00,244 Spruce St, San Francisco,CA,94016 +290822,Lightning Charging Cable,1,14.95,2019-11-23 16:23:00,736 Lakeview St, San Francisco,CA,94016 +290823,Apple Airpods Headphones,1,150.0,2019-11-27 18:50:00,615 Lakeview St, San Francisco,CA,94016 +290824,USB-C Charging Cable,1,11.95,2019-11-11 20:00:00,879 North St, Los Angeles,CA,90001 +290825,Google Phone,1,600.0,2019-11-11 19:34:00,850 8th St, Los Angeles,CA,90001 +290826,AA Batteries (4-pack),2,3.84,2019-11-29 23:37:00,570 Maple St, Austin,TX,73301 +290827,Lightning Charging Cable,1,14.95,2019-11-26 12:47:00,781 Highland St, Seattle,WA,98101 +290828,AA Batteries (4-pack),1,3.84,2019-11-11 13:47:00,451 West St, Los Angeles,CA,90001 +290829,Wired Headphones,1,11.99,2019-11-29 18:25:00,243 South St, San Francisco,CA,94016 +290830,Wired Headphones,1,11.99,2019-11-22 20:44:00,574 Washington St, San Francisco,CA,94016 +290831,Apple Airpods Headphones,1,150.0,2019-11-28 15:47:00,700 Maple St, Portland,OR,97035 +290832,AAA Batteries (4-pack),1,2.99,2019-11-29 23:04:00,275 5th St, Los Angeles,CA,90001 +290833,AAA Batteries (4-pack),2,2.99,2019-11-17 19:49:00,279 Park St, Boston,MA,02215 +290834,27in 4K Gaming Monitor,1,389.99,2019-11-06 00:00:00,93 1st St, Boston,MA,02215 +290835,Lightning Charging Cable,1,14.95,2019-11-14 22:23:00,518 14th St, San Francisco,CA,94016 +290836,AAA Batteries (4-pack),1,2.99,2019-11-23 11:30:00,909 Lake St, New York City,NY,10001 +290837,AAA Batteries (4-pack),3,2.99,2019-11-08 19:26:00,670 Dogwood St, San Francisco,CA,94016 +290838,27in FHD Monitor,1,149.99,2019-11-09 23:53:00,803 Sunset St, Los Angeles,CA,90001 +290839,Macbook Pro Laptop,1,1700.0,2019-11-21 22:37:00,7 Washington St, Atlanta,GA,30301 +290840,Bose SoundSport Headphones,1,99.99,2019-11-11 07:09:00,572 Spruce St, New York City,NY,10001 +290841,Wired Headphones,1,11.99,2019-11-23 16:55:00,489 Pine St, Dallas,TX,75001 +290842,Lightning Charging Cable,1,14.95,2019-11-15 21:32:00,313 Cedar St, Los Angeles,CA,90001 +290843,Apple Airpods Headphones,1,150.0,2019-11-21 15:00:00,42 Hill St, Seattle,WA,98101 +290844,Wired Headphones,1,11.99,2019-11-27 09:34:00,242 River St, Atlanta,GA,30301 +290845,AA Batteries (4-pack),1,3.84,2019-11-08 12:55:00,833 Walnut St, Seattle,WA,98101 +290846,AAA Batteries (4-pack),2,2.99,2019-11-06 22:38:00,805 North St, San Francisco,CA,94016 +290847,USB-C Charging Cable,1,11.95,2019-11-07 17:27:00,970 Walnut St, Los Angeles,CA,90001 +290848,Wired Headphones,1,11.99,2019-11-13 12:22:00,957 Dogwood St, San Francisco,CA,94016 +290849,Macbook Pro Laptop,1,1700.0,2019-11-17 09:26:00,750 Park St, Seattle,WA,98101 +290850,Lightning Charging Cable,1,14.95,2019-11-16 18:03:00,445 Lake St, Seattle,WA,98101 +290851,LG Dryer,1,600.0,2019-11-12 00:42:00,999 2nd St, Los Angeles,CA,90001 +290852,Apple Airpods Headphones,1,150.0,2019-11-19 20:12:00,21 10th St, Boston,MA,02215 +290853,AAA Batteries (4-pack),1,2.99,2019-11-06 10:04:00,136 12th St, New York City,NY,10001 +290854,ThinkPad Laptop,1,999.99,2019-11-14 02:56:00,895 Sunset St, Los Angeles,CA,90001 +290855,34in Ultrawide Monitor,1,379.99,2019-11-04 08:39:00,17 Church St, Boston,MA,02215 +290856,Apple Airpods Headphones,1,150.0,2019-11-11 17:04:00,422 14th St, New York City,NY,10001 +290857,27in 4K Gaming Monitor,1,389.99,2019-11-19 15:50:00,587 Madison St, Los Angeles,CA,90001 +290858,Apple Airpods Headphones,1,150.0,2019-11-20 10:15:00,388 Lincoln St, Los Angeles,CA,90001 +290859,34in Ultrawide Monitor,1,379.99,2019-11-18 12:38:00,545 Cherry St, Atlanta,GA,30301 +290860,USB-C Charging Cable,1,11.95,2019-11-18 16:16:00,793 River St, Los Angeles,CA,90001 +290861,20in Monitor,1,109.99,2019-11-22 19:57:00,323 Forest St, San Francisco,CA,94016 +290862,AAA Batteries (4-pack),1,2.99,2019-11-27 13:12:00,566 4th St, Austin,TX,73301 +290863,AAA Batteries (4-pack),3,2.99,2019-11-21 09:03:00,180 8th St, Austin,TX,73301 +290864,AA Batteries (4-pack),1,3.84,2019-11-16 20:11:00,156 Lincoln St, Los Angeles,CA,90001 +290865,USB-C Charging Cable,1,11.95,2019-11-03 17:38:00,473 1st St, San Francisco,CA,94016 +290866,LG Washing Machine,1,600.0,2019-11-30 13:57:00,596 Madison St, San Francisco,CA,94016 +290867,Wired Headphones,1,11.99,2019-11-22 10:03:00,273 Lakeview St, New York City,NY,10001 +290868,Lightning Charging Cable,1,14.95,2019-11-08 22:06:00,317 2nd St, Atlanta,GA,30301 +290869,Wired Headphones,1,11.99,2019-11-21 18:19:00,305 Forest St, Atlanta,GA,30301 +290870,Vareebadd Phone,1,400.0,2019-11-11 23:19:00,748 Main St, San Francisco,CA,94016 +290870,Bose SoundSport Headphones,1,99.99,2019-11-11 23:19:00,748 Main St, San Francisco,CA,94016 +290871,iPhone,1,700.0,2019-11-14 22:14:00,589 1st St, Portland,OR,97035 +290872,20in Monitor,1,109.99,2019-11-19 07:30:00,577 Cedar St, Portland,OR,97035 +290872,AAA Batteries (4-pack),2,2.99,2019-11-19 07:30:00,577 Cedar St, Portland,OR,97035 +290873,34in Ultrawide Monitor,1,379.99,2019-11-30 14:10:00,797 Lakeview St, Austin,TX,73301 +290874,Lightning Charging Cable,1,14.95,2019-11-27 18:32:00,276 Lakeview St, San Francisco,CA,94016 +290875,Wired Headphones,1,11.99,2019-11-10 20:15:00,50 Maple St, New York City,NY,10001 +290875,Bose SoundSport Headphones,1,99.99,2019-11-10 20:15:00,50 Maple St, New York City,NY,10001 +290876,Bose SoundSport Headphones,1,99.99,2019-11-18 12:16:00,574 Park St, Dallas,TX,75001 +290877,AA Batteries (4-pack),1,3.84,2019-11-10 21:54:00,822 14th St, San Francisco,CA,94016 +290878,27in 4K Gaming Monitor,1,389.99,2019-11-24 12:03:00,98 6th St, New York City,NY,10001 +290879,Bose SoundSport Headphones,1,99.99,2019-11-10 20:35:00,544 Hickory St, Austin,TX,73301 +290880,27in FHD Monitor,1,149.99,2019-11-14 13:21:00,2 Elm St, San Francisco,CA,94016 +290881,USB-C Charging Cable,1,11.95,2019-11-06 17:08:00,268 12th St, Seattle,WA,98101 +290882,AAA Batteries (4-pack),1,2.99,2019-11-14 11:20:00,617 Hill St, San Francisco,CA,94016 +290883,AA Batteries (4-pack),2,3.84,2019-11-13 18:36:00,976 Lake St, Boston,MA,02215 +290884,AAA Batteries (4-pack),1,2.99,2019-11-05 23:11:00,187 Lakeview St, Atlanta,GA,30301 +290885,Apple Airpods Headphones,1,150.0,2019-11-11 12:27:00,784 Highland St, Los Angeles,CA,90001 +290886,Bose SoundSport Headphones,1,99.99,2019-11-22 21:40:00,741 14th St, Seattle,WA,98101 +290887,AA Batteries (4-pack),1,3.84,2019-11-25 14:26:00,258 13th St, Dallas,TX,75001 +290888,AA Batteries (4-pack),2,3.84,2019-11-03 15:19:00,961 Pine St, Los Angeles,CA,90001 +290889,USB-C Charging Cable,1,11.95,2019-11-25 19:55:00,402 12th St, New York City,NY,10001 +290890,iPhone,1,700.0,2019-11-17 15:38:00,414 6th St, Boston,MA,02215 +290890,Lightning Charging Cable,1,14.95,2019-11-17 15:38:00,414 6th St, Boston,MA,02215 +290891,Bose SoundSport Headphones,1,99.99,2019-11-22 13:51:00,907 South St, San Francisco,CA,94016 +290892,Wired Headphones,1,11.99,2019-11-17 19:19:00,855 Church St, San Francisco,CA,94016 +290893,AAA Batteries (4-pack),1,2.99,2019-11-06 23:42:00,819 6th St, New York City,NY,10001 +290894,USB-C Charging Cable,1,11.95,2019-11-27 07:56:00,208 13th St, Seattle,WA,98101 +290895,Apple Airpods Headphones,1,150.0,2019-11-25 15:51:00,983 Johnson St, Portland,OR,97035 +290896,27in 4K Gaming Monitor,1,389.99,2019-11-22 13:18:00,332 10th St, Austin,TX,73301 +290897,Apple Airpods Headphones,1,150.0,2019-11-13 20:43:00,603 10th St, New York City,NY,10001 +290898,AAA Batteries (4-pack),2,2.99,2019-11-24 12:20:00,93 Main St, Portland,OR,97035 +290899,AAA Batteries (4-pack),1,2.99,2019-11-17 20:59:00,669 South St, Los Angeles,CA,90001 +290900,USB-C Charging Cable,1,11.95,2019-11-24 13:33:00,295 Spruce St, New York City,NY,10001 +290901,Lightning Charging Cable,1,14.95,2019-11-15 01:20:00,82 Elm St, New York City,NY,10001 +290901,Apple Airpods Headphones,1,150.0,2019-11-15 01:20:00,82 Elm St, New York City,NY,10001 +290902,AA Batteries (4-pack),1,3.84,2019-11-18 21:30:00,138 Main St, Seattle,WA,98101 +290903,Lightning Charging Cable,1,14.95,2019-11-26 22:52:00,910 Lincoln St, San Francisco,CA,94016 +290904,AAA Batteries (4-pack),1,2.99,2019-11-30 22:07:00,780 Hickory St, San Francisco,CA,94016 +290905,Flatscreen TV,1,300.0,2019-11-10 21:28:00,716 Sunset St, New York City,NY,10001 +290906,USB-C Charging Cable,1,11.95,2019-12-01 01:29:00,998 1st St, Los Angeles,CA,90001 +290907,USB-C Charging Cable,1,11.95,2019-11-28 10:23:00,522 9th St, Boston,MA,02215 +290908,Lightning Charging Cable,1,14.95,2019-11-09 15:41:00,57 Main St, San Francisco,CA,94016 +290909,USB-C Charging Cable,1,11.95,2019-11-03 23:47:00,179 7th St, San Francisco,CA,94016 +290910,Wired Headphones,1,11.99,2019-11-11 22:35:00,448 6th St, New York City,NY,10001 +290911,Lightning Charging Cable,1,14.95,2019-11-10 22:54:00,907 Hill St, Portland,OR,97035 +290912,Lightning Charging Cable,1,14.95,2019-11-24 21:46:00,237 Maple St, Atlanta,GA,30301 +290913,Wired Headphones,1,11.99,2019-11-06 11:58:00,119 4th St, Dallas,TX,75001 +290914,AAA Batteries (4-pack),1,2.99,2019-11-05 08:05:00,347 Ridge St, San Francisco,CA,94016 +290915,USB-C Charging Cable,1,11.95,2019-11-21 15:38:00,900 Jackson St, New York City,NY,10001 +290916,iPhone,1,700.0,2019-11-28 20:16:00,468 Pine St, Portland,OR,97035 +290917,AA Batteries (4-pack),1,3.84,2019-11-19 18:06:00,433 Main St, Boston,MA,02215 +290918,Vareebadd Phone,1,400.0,2019-11-24 22:06:00,460 Hickory St, New York City,NY,10001 +290919,USB-C Charging Cable,1,11.95,2019-11-28 22:27:00,772 Meadow St, San Francisco,CA,94016 +290920,AA Batteries (4-pack),3,3.84,2019-11-24 10:51:00,463 Walnut St, New York City,NY,10001 +290921,Apple Airpods Headphones,1,150.0,2019-11-03 17:27:00,375 Johnson St, Dallas,TX,75001 +290922,AAA Batteries (4-pack),2,2.99,2019-11-27 16:24:00,381 Lincoln St, Seattle,WA,98101 +290923,Flatscreen TV,1,300.0,2019-11-12 16:22:00,676 Wilson St, Austin,TX,73301 +290924,Flatscreen TV,1,300.0,2019-11-27 18:50:00,372 Wilson St, San Francisco,CA,94016 +290925,27in 4K Gaming Monitor,1,389.99,2019-11-18 14:35:00,180 Chestnut St, Boston,MA,02215 +290926,AAA Batteries (4-pack),2,2.99,2019-11-12 16:05:00,775 Jefferson St, Seattle,WA,98101 +290927,USB-C Charging Cable,1,11.95,2019-11-14 13:31:00,955 Chestnut St, Los Angeles,CA,90001 +290928,27in FHD Monitor,1,149.99,2019-11-08 18:01:00,30 7th St, Atlanta,GA,30301 +290929,Lightning Charging Cable,1,14.95,2019-11-12 18:45:00,861 Lakeview St, Portland,OR,97035 +290930,AA Batteries (4-pack),1,3.84,2019-11-07 11:01:00,307 Meadow St, San Francisco,CA,94016 +290931,Apple Airpods Headphones,1,150.0,2019-11-10 10:25:00,463 1st St, Los Angeles,CA,90001 +290932,27in FHD Monitor,1,149.99,2019-11-17 14:06:00,823 Hickory St, Austin,TX,73301 +290933,Lightning Charging Cable,1,14.95,2019-11-06 23:13:00,308 Wilson St, New York City,NY,10001 +290934,Lightning Charging Cable,1,14.95,2019-11-19 07:53:00,316 2nd St, Los Angeles,CA,90001 +290935,Wired Headphones,1,11.99,2019-11-02 14:54:00,39 Hill St, Los Angeles,CA,90001 +290936,AAA Batteries (4-pack),3,2.99,2019-11-07 14:50:00,858 Ridge St, New York City,NY,10001 +290937,Apple Airpods Headphones,1,150.0,2019-11-29 23:24:00,816 12th St, San Francisco,CA,94016 +290938,AAA Batteries (4-pack),1,2.99,2019-11-07 21:27:00,488 Madison St, San Francisco,CA,94016 +290939,Lightning Charging Cable,1,14.95,2019-11-26 11:50:00,635 10th St, Boston,MA,02215 +290940,USB-C Charging Cable,2,11.95,2019-11-29 21:41:00,722 Jefferson St, New York City,NY,10001 +290941,Macbook Pro Laptop,1,1700.0,2019-11-07 18:57:00,366 River St, Austin,TX,73301 +290942,34in Ultrawide Monitor,1,379.99,2019-11-24 13:17:00,508 Sunset St, Boston,MA,02215 +290943,Bose SoundSport Headphones,1,99.99,2019-11-17 00:12:00,422 8th St, San Francisco,CA,94016 +290944,AA Batteries (4-pack),1,3.84,2019-11-02 14:21:00,619 Center St, San Francisco,CA,94016 +290945,AAA Batteries (4-pack),1,2.99,2019-11-08 11:18:00,216 Highland St, Portland,OR,97035 +290946,AA Batteries (4-pack),1,3.84,2019-11-20 17:16:00,56 Hill St, Dallas,TX,75001 +290947,AA Batteries (4-pack),3,3.84,2019-11-13 17:18:00,21 Jackson St, New York City,NY,10001 +290948,Lightning Charging Cable,2,14.95,2019-11-21 19:09:00,12 12th St, Atlanta,GA,30301 +290949,Bose SoundSport Headphones,1,99.99,2019-11-28 22:08:00,591 Center St, San Francisco,CA,94016 +290950,Google Phone,1,600.0,2019-11-17 07:34:00,629 1st St, Atlanta,GA,30301 +290950,USB-C Charging Cable,1,11.95,2019-11-17 07:34:00,629 1st St, Atlanta,GA,30301 +290951,iPhone,1,700.0,2019-11-22 22:50:00,707 Church St, Portland,OR,97035 +290952,Wired Headphones,1,11.99,2019-11-10 13:32:00,646 Chestnut St, New York City,NY,10001 +290953,27in FHD Monitor,1,149.99,2019-11-12 16:57:00,423 Adams St, Austin,TX,73301 +290954,AA Batteries (4-pack),1,3.84,2019-11-06 22:35:00,119 Chestnut St, San Francisco,CA,94016 +290955,AA Batteries (4-pack),1,3.84,2019-11-26 14:59:00,415 Walnut St, Los Angeles,CA,90001 +290956,Lightning Charging Cable,1,14.95,2019-11-12 07:27:00,831 6th St, San Francisco,CA,94016 +290957,Apple Airpods Headphones,2,150.0,2019-11-29 01:46:00,677 Cherry St, San Francisco,CA,94016 +290958,Lightning Charging Cable,1,14.95,2019-11-12 21:38:00,761 2nd St, Boston,MA,02215 +290959,Apple Airpods Headphones,1,150.0,2019-11-20 13:03:00,284 Main St, Boston,MA,02215 +290960,Lightning Charging Cable,1,14.95,2019-11-11 19:26:00,566 Washington St, New York City,NY,10001 +290961,27in 4K Gaming Monitor,1,389.99,2019-11-30 20:50:00,385 Center St, Los Angeles,CA,90001 +290962,Bose SoundSport Headphones,1,99.99,2019-11-22 13:14:00,792 South St, San Francisco,CA,94016 +290963,AA Batteries (4-pack),2,3.84,2019-11-10 10:39:00,523 7th St, San Francisco,CA,94016 +290964,Wired Headphones,1,11.99,2019-11-19 14:41:00,663 Chestnut St, Atlanta,GA,30301 +290965,Lightning Charging Cable,2,14.95,2019-11-03 02:05:00,155 Madison St, Los Angeles,CA,90001 +290966,Wired Headphones,1,11.99,2019-11-02 12:54:00,968 Sunset St, Boston,MA,02215 +290967,USB-C Charging Cable,1,11.95,2019-11-10 19:40:00,596 Highland St, San Francisco,CA,94016 +290968,Lightning Charging Cable,1,14.95,2019-11-10 17:35:00,4 Sunset St, Los Angeles,CA,90001 +290969,AAA Batteries (4-pack),2,2.99,2019-11-07 22:44:00,214 North St, Boston,MA,02215 +290970,AA Batteries (4-pack),1,3.84,2019-11-23 19:44:00,530 13th St, Austin,TX,73301 +290971,USB-C Charging Cable,1,11.95,2019-11-02 19:07:00,485 Willow St, Boston,MA,02215 +290972,Wired Headphones,1,11.99,2019-11-28 11:16:00,697 Maple St, Boston,MA,02215 +290973,Apple Airpods Headphones,1,150.0,2019-11-13 10:27:00,146 4th St, Boston,MA,02215 +290974,AAA Batteries (4-pack),1,2.99,2019-11-29 17:21:00,806 Jackson St, New York City,NY,10001 +290975,27in FHD Monitor,1,149.99,2019-11-20 10:42:00,470 Ridge St, Seattle,WA,98101 +290976,Bose SoundSport Headphones,2,99.99,2019-11-14 07:30:00,741 North St, Atlanta,GA,30301 +290977,Wired Headphones,2,11.99,2019-11-13 14:36:00,684 13th St, San Francisco,CA,94016 +290978,34in Ultrawide Monitor,1,379.99,2019-11-13 16:30:00,599 Washington St, Portland,ME,04101 +290979,Wired Headphones,1,11.99,2019-11-19 12:31:00,223 Ridge St, Portland,ME,04101 +290980,AA Batteries (4-pack),1,3.84,2019-11-30 15:40:00,861 5th St, San Francisco,CA,94016 +290981,Wired Headphones,2,11.99,2019-11-24 10:20:00,920 10th St, Los Angeles,CA,90001 +290982,Lightning Charging Cable,1,14.95,2019-11-15 11:13:00,625 Willow St, San Francisco,CA,94016 +290983,Lightning Charging Cable,1,14.95,2019-11-15 21:54:00,428 4th St, Austin,TX,73301 +290984,27in FHD Monitor,1,149.99,2019-11-19 17:48:00,931 Johnson St, San Francisco,CA,94016 +290985,Wired Headphones,1,11.99,2019-11-16 06:04:00,91 6th St, Atlanta,GA,30301 +290986,34in Ultrawide Monitor,1,379.99,2019-11-24 16:44:00,183 9th St, Seattle,WA,98101 +290987,USB-C Charging Cable,1,11.95,2019-11-11 19:05:00,860 Jackson St, Seattle,WA,98101 +290988,Google Phone,1,600.0,2019-11-22 01:26:00,779 Ridge St, Dallas,TX,75001 +290989,LG Dryer,1,600.0,2019-11-07 09:21:00,700 Johnson St, New York City,NY,10001 +290990,Wired Headphones,1,11.99,2019-11-07 22:56:00,614 Main St, New York City,NY,10001 +290991,Bose SoundSport Headphones,1,99.99,2019-11-23 12:17:00,778 Chestnut St, Dallas,TX,75001 +290992,Macbook Pro Laptop,1,1700.0,2019-11-21 11:20:00,901 Chestnut St, Seattle,WA,98101 +290993,AAA Batteries (4-pack),2,2.99,2019-11-23 09:11:00,42 South St, Portland,OR,97035 +290994,Bose SoundSport Headphones,1,99.99,2019-11-27 15:12:00,774 1st St, Boston,MA,02215 +290995,AA Batteries (4-pack),1,3.84,2019-11-24 23:32:00,592 Johnson St, Los Angeles,CA,90001 +290996,27in FHD Monitor,1,149.99,2019-11-04 01:17:00,978 Chestnut St, Los Angeles,CA,90001 +290997,Bose SoundSport Headphones,1,99.99,2019-11-24 20:41:00,552 Madison St, New York City,NY,10001 +290998,Wired Headphones,1,11.99,2019-11-27 05:33:00,155 Hickory St, New York City,NY,10001 +290999,Apple Airpods Headphones,1,150.0,2019-11-20 23:28:00,346 Elm St, New York City,NY,10001 +291000,AAA Batteries (4-pack),1,2.99,2019-11-29 22:22:00,310 Lakeview St, San Francisco,CA,94016 +291001,USB-C Charging Cable,1,11.95,2019-11-05 16:28:00,79 Dogwood St, San Francisco,CA,94016 +291002,AA Batteries (4-pack),1,3.84,2019-11-05 12:10:00,936 4th St, New York City,NY,10001 +291003,USB-C Charging Cable,1,11.95,2019-11-20 17:18:00,236 Elm St, Los Angeles,CA,90001 +291004,AA Batteries (4-pack),1,3.84,2019-11-29 09:46:00,773 8th St, New York City,NY,10001 +291005,AA Batteries (4-pack),1,3.84,2019-11-21 09:38:00,112 10th St, Los Angeles,CA,90001 +291006,Lightning Charging Cable,2,14.95,2019-11-05 01:04:00,361 Wilson St, Portland,OR,97035 +291007,27in FHD Monitor,1,149.99,2019-11-08 01:25:00,3 Willow St, San Francisco,CA,94016 +291008,AA Batteries (4-pack),2,3.84,2019-11-01 13:20:00,371 Madison St, Portland,OR,97035 +291009,USB-C Charging Cable,1,11.95,2019-11-11 18:00:00,248 Forest St, Los Angeles,CA,90001 +291010,AA Batteries (4-pack),1,3.84,2019-11-28 05:38:00,894 Sunset St, San Francisco,CA,94016 +291011,Wired Headphones,1,11.99,2019-11-10 21:22:00,455 Cherry St, Los Angeles,CA,90001 +291012,Bose SoundSport Headphones,1,99.99,2019-11-21 19:36:00,675 North St, San Francisco,CA,94016 +291013,AAA Batteries (4-pack),1,2.99,2019-11-17 15:53:00,92 12th St, Los Angeles,CA,90001 +291014,Wired Headphones,1,11.99,2019-11-02 15:07:00,784 10th St, Los Angeles,CA,90001 +291015,Wired Headphones,1,11.99,2019-11-20 18:14:00,95 Main St, Seattle,WA,98101 +291016,Wired Headphones,1,11.99,2019-11-18 23:21:00,927 10th St, Dallas,TX,75001 +291017,ThinkPad Laptop,1,999.99,2019-11-09 13:59:00,292 5th St, Atlanta,GA,30301 +291018,Wired Headphones,1,11.99,2019-11-18 22:22:00,735 River St, Los Angeles,CA,90001 +291019,AAA Batteries (4-pack),1,2.99,2019-11-06 19:48:00,108 Jefferson St, New York City,NY,10001 +291020,Google Phone,1,600.0,2019-11-06 22:58:00,74 Cherry St, Los Angeles,CA,90001 +291021,Lightning Charging Cable,1,14.95,2019-11-23 20:30:00,299 10th St, San Francisco,CA,94016 +291022,AA Batteries (4-pack),1,3.84,2019-11-20 12:37:00,696 Main St, Los Angeles,CA,90001 +291023,Macbook Pro Laptop,1,1700.0,2019-11-08 14:24:00,916 1st St, Dallas,TX,75001 +291024,AA Batteries (4-pack),1,3.84,2019-11-09 15:06:00,795 Lincoln St, San Francisco,CA,94016 +291025,AAA Batteries (4-pack),3,2.99,2019-11-03 12:05:00,279 South St, Atlanta,GA,30301 +291026,AAA Batteries (4-pack),1,2.99,2019-11-16 20:05:00,684 13th St, Los Angeles,CA,90001 +291027,Macbook Pro Laptop,1,1700.0,2019-11-19 12:00:00,757 Lincoln St, Austin,TX,73301 +291028,20in Monitor,1,109.99,2019-11-04 12:16:00,355 West St, Los Angeles,CA,90001 +291029,USB-C Charging Cable,1,11.95,2019-11-12 21:46:00,309 Ridge St, Boston,MA,02215 +291030,Google Phone,1,600.0,2019-11-20 18:25:00,467 Forest St, Los Angeles,CA,90001 +291030,Wired Headphones,2,11.99,2019-11-20 18:25:00,467 Forest St, Los Angeles,CA,90001 +291031,27in FHD Monitor,1,149.99,2019-11-13 23:23:00,199 Sunset St, New York City,NY,10001 +291032,AAA Batteries (4-pack),2,2.99,2019-11-02 11:23:00,715 11th St, San Francisco,CA,94016 +291033,AAA Batteries (4-pack),1,2.99,2019-11-22 17:01:00,213 South St, Atlanta,GA,30301 +291034,AAA Batteries (4-pack),8,2.99,2019-11-09 16:30:00,268 Willow St, Dallas,TX,75001 +291035,27in FHD Monitor,1,149.99,2019-11-14 23:08:00,625 8th St, New York City,NY,10001 +291036,USB-C Charging Cable,1,11.95,2019-11-05 17:14:00,71 Ridge St, San Francisco,CA,94016 +291037,Lightning Charging Cable,1,14.95,2019-11-09 19:26:00,921 Washington St, San Francisco,CA,94016 +291038,Wired Headphones,1,11.99,2019-11-19 17:24:00,677 2nd St, San Francisco,CA,94016 +291039,Flatscreen TV,1,300.0,2019-11-11 05:53:00,362 Highland St, Los Angeles,CA,90001 +291039,ThinkPad Laptop,1,999.99,2019-11-11 05:53:00,362 Highland St, Los Angeles,CA,90001 +291040,AAA Batteries (4-pack),2,2.99,2019-11-18 13:13:00,237 Adams St, Austin,TX,73301 +291041,AA Batteries (4-pack),3,3.84,2019-11-04 19:48:00,78 Park St, San Francisco,CA,94016 +291042,27in FHD Monitor,1,149.99,2019-11-30 01:44:00,256 Jackson St, Dallas,TX,75001 +291043,AA Batteries (4-pack),1,3.84,2019-11-06 12:51:00,955 5th St, New York City,NY,10001 +291044,Wired Headphones,1,11.99,2019-11-17 18:00:00,197 10th St, Boston,MA,02215 +291045,Bose SoundSport Headphones,1,99.99,2019-11-22 21:08:00,459 Lincoln St, San Francisco,CA,94016 +291046,34in Ultrawide Monitor,1,379.99,2019-11-20 13:11:00,647 Cherry St, Austin,TX,73301 +291047,USB-C Charging Cable,1,11.95,2019-11-15 23:06:00,379 6th St, Seattle,WA,98101 +291047,AAA Batteries (4-pack),1,2.99,2019-11-15 23:06:00,379 6th St, Seattle,WA,98101 +291048,ThinkPad Laptop,1,999.99,2019-11-27 17:50:00,949 Church St, Atlanta,GA,30301 +291049,LG Dryer,1,600.0,2019-11-08 17:14:00,344 14th St, Austin,TX,73301 +291050,Wired Headphones,1,11.99,2019-11-03 20:41:00,16 Church St, Austin,TX,73301 +291051,USB-C Charging Cable,1,11.95,2019-11-22 19:15:00,39 12th St, Portland,OR,97035 +291052,Apple Airpods Headphones,1,150.0,2019-11-17 21:27:00,202 14th St, Seattle,WA,98101 +291053,27in FHD Monitor,1,149.99,2019-11-28 14:46:00,803 South St, Los Angeles,CA,90001 +291054,Lightning Charging Cable,1,14.95,2019-11-23 21:58:00,861 North St, San Francisco,CA,94016 +291055,AA Batteries (4-pack),1,3.84,2019-11-14 18:21:00,324 Lake St, Los Angeles,CA,90001 +291056,AA Batteries (4-pack),1,3.84,2019-11-17 16:22:00,598 5th St, New York City,NY,10001 +291057,USB-C Charging Cable,1,11.95,2019-11-21 12:48:00,35 13th St, Portland,OR,97035 +291057,Apple Airpods Headphones,1,150.0,2019-11-21 12:48:00,35 13th St, Portland,OR,97035 +291058,Vareebadd Phone,1,400.0,2019-11-24 19:15:00,894 Pine St, Los Angeles,CA,90001 +291058,Bose SoundSport Headphones,1,99.99,2019-11-24 19:15:00,894 Pine St, Los Angeles,CA,90001 +291058,Wired Headphones,1,11.99,2019-11-24 19:15:00,894 Pine St, Los Angeles,CA,90001 +291059,Google Phone,1,600.0,2019-11-23 19:04:00,86 Chestnut St, Boston,MA,02215 +291060,Wired Headphones,1,11.99,2019-11-26 16:57:00,687 7th St, New York City,NY,10001 +291061,27in FHD Monitor,1,149.99,2019-11-21 18:48:00,545 Meadow St, Seattle,WA,98101 +291062,AA Batteries (4-pack),1,3.84,2019-11-03 19:56:00,232 Highland St, Los Angeles,CA,90001 +291063,AA Batteries (4-pack),1,3.84,2019-11-24 18:07:00,894 4th St, San Francisco,CA,94016 +291064,iPhone,1,700.0,2019-11-05 20:53:00,516 11th St, Austin,TX,73301 +291065,USB-C Charging Cable,1,11.95,2019-11-10 22:19:00,839 Adams St, Atlanta,GA,30301 +291066,iPhone,1,700.0,2019-11-18 19:06:00,10 7th St, Los Angeles,CA,90001 +291067,ThinkPad Laptop,1,999.99,2019-11-07 12:35:00,209 South St, New York City,NY,10001 +291068,Wired Headphones,1,11.99,2019-11-11 14:03:00,346 Meadow St, San Francisco,CA,94016 +291069,34in Ultrawide Monitor,1,379.99,2019-11-08 23:01:00,462 Spruce St, Atlanta,GA,30301 +291070,USB-C Charging Cable,3,11.95,2019-11-16 11:41:00,846 Washington St, Austin,TX,73301 +291071,Lightning Charging Cable,1,14.95,2019-11-24 20:51:00,17 Forest St, Seattle,WA,98101 +291072,Apple Airpods Headphones,1,150.0,2019-11-08 20:57:00,286 Ridge St, Dallas,TX,75001 +291073,USB-C Charging Cable,1,11.95,2019-11-21 20:15:00,587 8th St, Seattle,WA,98101 +291074,USB-C Charging Cable,1,11.95,2019-11-06 12:33:00,347 Johnson St, San Francisco,CA,94016 +291075,Bose SoundSport Headphones,1,99.99,2019-11-18 10:19:00,209 West St, San Francisco,CA,94016 +291076,Google Phone,1,600.0,2019-11-06 13:42:00,805 10th St, Los Angeles,CA,90001 +291077,Apple Airpods Headphones,1,150.0,2019-11-26 22:13:00,496 Cedar St, San Francisco,CA,94016 +291078,AAA Batteries (4-pack),2,2.99,2019-11-21 10:43:00,303 Highland St, New York City,NY,10001 +291079,Lightning Charging Cable,1,14.95,2019-11-03 11:25:00,169 Johnson St, San Francisco,CA,94016 +291080,Lightning Charging Cable,1,14.95,2019-11-01 11:34:00,789 Wilson St, Los Angeles,CA,90001 +291081,USB-C Charging Cable,1,11.95,2019-11-17 12:29:00,958 Dogwood St, Seattle,WA,98101 +291082,27in 4K Gaming Monitor,1,389.99,2019-11-18 11:19:00,943 Walnut St, Boston,MA,02215 +291083,Wired Headphones,1,11.99,2019-11-09 12:58:00,906 Walnut St, Los Angeles,CA,90001 +291084,Wired Headphones,1,11.99,2019-11-25 19:13:00,527 2nd St, Dallas,TX,75001 +291085,Wired Headphones,1,11.99,2019-11-21 08:15:00,217 Meadow St, Los Angeles,CA,90001 +291086,Lightning Charging Cable,1,14.95,2019-11-26 15:53:00,223 Ridge St, New York City,NY,10001 +291087,Lightning Charging Cable,1,14.95,2019-11-12 00:01:00,295 Park St, San Francisco,CA,94016 +291088,ThinkPad Laptop,1,999.99,2019-11-17 17:55:00,13 2nd St, Boston,MA,02215 +291089,AAA Batteries (4-pack),1,2.99,2019-11-25 01:08:00,849 Sunset St, San Francisco,CA,94016 +291090,ThinkPad Laptop,1,999.99,2019-11-02 11:06:00,895 Lake St, Dallas,TX,75001 +291091,Wired Headphones,1,11.99,2019-11-29 20:37:00,350 Lakeview St, Austin,TX,73301 +291092,Flatscreen TV,1,300.0,2019-11-02 15:42:00,636 Jackson St, Austin,TX,73301 +291093,ThinkPad Laptop,1,999.99,2019-11-12 20:42:00,659 13th St, Los Angeles,CA,90001 +291094,Lightning Charging Cable,2,14.95,2019-11-08 08:53:00,579 Lincoln St, San Francisco,CA,94016 +291095,Wired Headphones,1,11.99,2019-11-18 11:48:00,340 Jefferson St, Boston,MA,02215 +291096,Google Phone,1,600.0,2019-11-08 08:52:00,974 South St, San Francisco,CA,94016 +291097,Lightning Charging Cable,1,14.95,2019-11-29 08:14:00,920 Meadow St, Atlanta,GA,30301 +291098,Google Phone,1,600.0,2019-11-15 12:04:00,407 Church St, San Francisco,CA,94016 +291098,USB-C Charging Cable,1,11.95,2019-11-15 12:04:00,407 Church St, San Francisco,CA,94016 +291099,27in FHD Monitor,1,149.99,2019-11-25 18:22:00,680 Church St, San Francisco,CA,94016 +291100,Bose SoundSport Headphones,1,99.99,2019-11-09 20:57:00,939 Cedar St, Boston,MA,02215 +291101,Vareebadd Phone,1,400.0,2019-11-06 08:29:00,949 Highland St, Boston,MA,02215 +291102,Lightning Charging Cable,1,14.95,2019-11-18 09:37:00,262 North St, San Francisco,CA,94016 +291103,34in Ultrawide Monitor,1,379.99,2019-11-25 15:45:00,332 Spruce St, Seattle,WA,98101 +291104,34in Ultrawide Monitor,1,379.99,2019-11-26 13:59:00,344 Meadow St, Boston,MA,02215 +291105,Apple Airpods Headphones,1,150.0,2019-11-20 00:57:00,483 14th St, Atlanta,GA,30301 +291106,AA Batteries (4-pack),1,3.84,2019-11-17 17:01:00,83 Meadow St, Boston,MA,02215 +291107,27in 4K Gaming Monitor,1,389.99,2019-11-25 17:53:00,195 9th St, San Francisco,CA,94016 +291108,Lightning Charging Cable,1,14.95,2019-11-13 11:18:00,267 West St, San Francisco,CA,94016 +291109,Apple Airpods Headphones,1,150.0,2019-11-08 17:27:00,519 Lakeview St, Atlanta,GA,30301 +291110,USB-C Charging Cable,1,11.95,2019-11-09 18:18:00,766 8th St, Atlanta,GA,30301 +291111,20in Monitor,1,109.99,2019-11-17 23:52:00,809 13th St, San Francisco,CA,94016 +291112,34in Ultrawide Monitor,1,379.99,2019-11-15 14:53:00,873 7th St, New York City,NY,10001 +291113,AA Batteries (4-pack),2,3.84,2019-11-13 21:35:00,620 Lincoln St, Dallas,TX,75001 +291114,AAA Batteries (4-pack),2,2.99,2019-11-22 23:30:00,813 Lincoln St, Dallas,TX,75001 +291115,AAA Batteries (4-pack),2,2.99,2019-11-19 09:22:00,430 8th St, San Francisco,CA,94016 +291116,AA Batteries (4-pack),1,3.84,2019-11-25 12:22:00,886 Hickory St, Los Angeles,CA,90001 +291117,AAA Batteries (4-pack),2,2.99,2019-11-06 08:51:00,495 Highland St, Atlanta,GA,30301 +291118,AAA Batteries (4-pack),1,2.99,2019-11-19 09:43:00,55 Wilson St, Austin,TX,73301 +291119,Wired Headphones,1,11.99,2019-11-19 22:20:00,696 Wilson St, Los Angeles,CA,90001 +291120,AA Batteries (4-pack),2,3.84,2019-11-26 12:44:00,649 14th St, Los Angeles,CA,90001 +291120,USB-C Charging Cable,1,11.95,2019-11-26 12:44:00,649 14th St, Los Angeles,CA,90001 +291121,USB-C Charging Cable,1,11.95,2019-11-07 13:29:00,894 13th St, New York City,NY,10001 +291122,AA Batteries (4-pack),2,3.84,2019-11-08 15:13:00,464 Cedar St, New York City,NY,10001 +291123,27in FHD Monitor,1,149.99,2019-11-09 14:15:00,651 Walnut St, Seattle,WA,98101 +291124,AAA Batteries (4-pack),1,2.99,2019-11-21 11:30:00,604 Lakeview St, Dallas,TX,75001 +291125,27in FHD Monitor,1,149.99,2019-11-18 18:05:00,884 Lake St, San Francisco,CA,94016 +291126,20in Monitor,1,109.99,2019-11-18 10:44:00,242 9th St, New York City,NY,10001 +291127,AA Batteries (4-pack),1,3.84,2019-11-02 22:07:00,100 Cherry St, Austin,TX,73301 +291128,Bose SoundSport Headphones,1,99.99,2019-11-26 10:30:00,373 Willow St, San Francisco,CA,94016 +291129,Bose SoundSport Headphones,1,99.99,2019-11-20 08:32:00,715 Ridge St, Boston,MA,02215 +291130,Apple Airpods Headphones,1,150.0,2019-11-02 23:58:00,780 6th St, New York City,NY,10001 +291131,27in 4K Gaming Monitor,1,389.99,2019-11-06 10:50:00,790 Johnson St, Austin,TX,73301 +291132,Lightning Charging Cable,1,14.95,2019-11-18 12:33:00,229 14th St, San Francisco,CA,94016 +291133,Flatscreen TV,1,300.0,2019-11-28 20:24:00,465 Jefferson St, Seattle,WA,98101 +291134,AAA Batteries (4-pack),1,2.99,2019-11-18 19:29:00,947 10th St, Atlanta,GA,30301 +291135,27in FHD Monitor,1,149.99,2019-11-22 20:46:00,646 Cherry St, Austin,TX,73301 +291136,Apple Airpods Headphones,1,150.0,2019-11-06 16:15:00,991 Church St, San Francisco,CA,94016 +291137,Flatscreen TV,2,300.0,2019-11-09 14:25:00,977 Walnut St, Seattle,WA,98101 +291138,Lightning Charging Cable,2,14.95,2019-11-28 23:18:00,502 7th St, Los Angeles,CA,90001 +291139,Lightning Charging Cable,1,14.95,2019-11-14 20:59:00,23 8th St, Portland,OR,97035 +291140,Apple Airpods Headphones,1,150.0,2019-11-22 11:51:00,798 Spruce St, Los Angeles,CA,90001 +291141,Macbook Pro Laptop,1,1700.0,2019-11-07 20:14:00,384 Sunset St, San Francisco,CA,94016 +291142,Flatscreen TV,1,300.0,2019-11-28 12:13:00,162 North St, Los Angeles,CA,90001 +291143,iPhone,1,700.0,2019-11-23 22:50:00,879 Jackson St, Boston,MA,02215 +291143,Lightning Charging Cable,1,14.95,2019-11-23 22:50:00,879 Jackson St, Boston,MA,02215 +291144,Lightning Charging Cable,1,14.95,2019-11-23 09:11:00,685 11th St, San Francisco,CA,94016 +291145,27in FHD Monitor,1,149.99,2019-11-23 13:39:00,718 Jackson St, Los Angeles,CA,90001 +291146,USB-C Charging Cable,1,11.95,2019-11-11 11:53:00,535 South St, New York City,NY,10001 +291147,Bose SoundSport Headphones,1,99.99,2019-11-18 21:20:00,809 Church St, San Francisco,CA,94016 +291148,27in 4K Gaming Monitor,1,389.99,2019-11-03 15:54:00,620 7th St, Atlanta,GA,30301 +291149,AAA Batteries (4-pack),1,2.99,2019-11-14 11:03:00,126 Hickory St, Seattle,WA,98101 +291150,AAA Batteries (4-pack),1,2.99,2019-11-05 01:09:00,441 4th St, Dallas,TX,75001 +291151,Lightning Charging Cable,1,14.95,2019-11-02 21:38:00,866 Jackson St, Portland,OR,97035 +291152,Google Phone,1,600.0,2019-11-15 18:42:00,934 Cherry St, San Francisco,CA,94016 +291153,AA Batteries (4-pack),2,3.84,2019-11-07 18:36:00,48 Walnut St, Dallas,TX,75001 +291154,Lightning Charging Cable,1,14.95,2019-11-16 08:48:00,581 Wilson St, San Francisco,CA,94016 +291155,iPhone,1,700.0,2019-11-21 12:33:00,603 Wilson St, San Francisco,CA,94016 +291156,AA Batteries (4-pack),4,3.84,2019-11-01 13:12:00,49 Chestnut St, San Francisco,CA,94016 +291157,20in Monitor,1,109.99,2019-11-18 09:55:00,541 6th St, Dallas,TX,75001 +291158,Flatscreen TV,1,300.0,2019-11-06 23:54:00,4 Spruce St, Boston,MA,02215 +291159,ThinkPad Laptop,1,999.99,2019-11-01 11:03:00,363 Maple St, Atlanta,GA,30301 +291160,Bose SoundSport Headphones,1,99.99,2019-11-18 14:13:00,790 Cedar St, Atlanta,GA,30301 +291161,USB-C Charging Cable,1,11.95,2019-11-04 00:28:00,510 6th St, Seattle,WA,98101 +291162,Wired Headphones,1,11.99,2019-11-26 17:11:00,460 Highland St, Boston,MA,02215 +291163,Bose SoundSport Headphones,1,99.99,2019-11-29 14:12:00,371 Lincoln St, San Francisco,CA,94016 +291164,AA Batteries (4-pack),2,3.84,2019-11-30 00:32:00,963 Walnut St, Los Angeles,CA,90001 +291165,Lightning Charging Cable,1,14.95,2019-11-23 12:32:00,112 West St, Austin,TX,73301 +291166,27in 4K Gaming Monitor,1,389.99,2019-11-08 01:07:00,952 11th St, Portland,OR,97035 +291167,Wired Headphones,1,11.99,2019-11-30 08:32:00,151 Main St, New York City,NY,10001 +291168,20in Monitor,1,109.99,2019-11-01 20:09:00,893 Church St, Dallas,TX,75001 +291169,Wired Headphones,3,11.99,2019-11-01 21:30:00,228 Highland St, Boston,MA,02215 +291170,USB-C Charging Cable,1,11.95,2019-11-11 15:26:00,414 Johnson St, Atlanta,GA,30301 +291171,Apple Airpods Headphones,1,150.0,2019-11-24 11:09:00,801 6th St, San Francisco,CA,94016 +291172,27in FHD Monitor,1,149.99,2019-11-22 14:18:00,257 Madison St, Portland,OR,97035 +291173,AA Batteries (4-pack),2,3.84,2019-11-15 10:32:00,808 Center St, San Francisco,CA,94016 +291174,Bose SoundSport Headphones,1,99.99,2019-11-07 01:47:00,398 Lakeview St, Atlanta,GA,30301 +291175,Bose SoundSport Headphones,1,99.99,2019-11-24 15:50:00,825 5th St, Portland,ME,04101 +291176,Apple Airpods Headphones,1,150.0,2019-11-01 11:10:00,542 11th St, Boston,MA,02215 +291177,34in Ultrawide Monitor,1,379.99,2019-11-21 21:05:00,15 11th St, San Francisco,CA,94016 +291178,AAA Batteries (4-pack),1,2.99,2019-11-21 09:16:00,754 West St, Seattle,WA,98101 +291179,34in Ultrawide Monitor,1,379.99,2019-11-05 18:17:00,964 Elm St, Austin,TX,73301 +291180,Bose SoundSport Headphones,1,99.99,2019-11-18 18:58:00,814 Maple St, New York City,NY,10001 +291181,USB-C Charging Cable,1,11.95,2019-11-18 16:03:00,780 Main St, Dallas,TX,75001 +291182,AA Batteries (4-pack),1,3.84,2019-11-09 16:19:00,882 Meadow St, New York City,NY,10001 +291183,Wired Headphones,1,11.99,2019-11-29 22:34:00,242 Church St, Austin,TX,73301 +291184,Apple Airpods Headphones,1,150.0,2019-11-10 15:50:00,907 Forest St, Austin,TX,73301 +291185,Apple Airpods Headphones,1,150.0,2019-11-02 16:26:00,625 West St, Los Angeles,CA,90001 +291186,Lightning Charging Cable,1,14.95,2019-11-01 11:23:00,343 Highland St, Atlanta,GA,30301 +291187,27in FHD Monitor,1,149.99,2019-11-29 13:02:00,799 Main St, San Francisco,CA,94016 +291188,27in FHD Monitor,1,149.99,2019-11-14 01:59:00,452 Washington St, Boston,MA,02215 +291189,Google Phone,1,600.0,2019-11-22 16:16:00,664 Dogwood St, Seattle,WA,98101 +291190,AAA Batteries (4-pack),1,2.99,2019-11-14 15:41:00,726 7th St, Atlanta,GA,30301 +291191,27in 4K Gaming Monitor,1,389.99,2019-11-19 11:45:00,388 Hill St, San Francisco,CA,94016 +291192,USB-C Charging Cable,1,11.95,2019-11-04 20:29:00,723 Forest St, Dallas,TX,75001 +291193,Vareebadd Phone,1,400.0,2019-11-16 18:37:00,890 Cedar St, New York City,NY,10001 +291193,Wired Headphones,3,11.99,2019-11-16 18:37:00,890 Cedar St, New York City,NY,10001 +291194,iPhone,1,700.0,2019-11-18 15:59:00,615 Cherry St, Los Angeles,CA,90001 +291194,Lightning Charging Cable,1,14.95,2019-11-18 15:59:00,615 Cherry St, Los Angeles,CA,90001 +291195,iPhone,1,700.0,2019-11-30 12:09:00,644 Walnut St, Los Angeles,CA,90001 +291196,Wired Headphones,1,11.99,2019-11-10 15:33:00,804 8th St, Portland,OR,97035 +291197,Lightning Charging Cable,1,14.95,2019-11-28 10:23:00,917 7th St, New York City,NY,10001 +291198,Flatscreen TV,1,300.0,2019-11-06 18:28:00,795 Madison St, New York City,NY,10001 +291199,USB-C Charging Cable,1,11.95,2019-11-28 14:16:00,781 5th St, Portland,OR,97035 +291200,USB-C Charging Cable,1,11.95,2019-11-29 13:18:00,543 Park St, Boston,MA,02215 +291201,AA Batteries (4-pack),1,3.84,2019-11-12 10:49:00,305 Lincoln St, San Francisco,CA,94016 +291202,AA Batteries (4-pack),1,3.84,2019-11-11 20:43:00,162 Maple St, Portland,OR,97035 +291203,Macbook Pro Laptop,1,1700.0,2019-11-25 13:58:00,211 Church St, Los Angeles,CA,90001 +291204,AA Batteries (4-pack),1,3.84,2019-11-23 19:08:00,81 5th St, Seattle,WA,98101 +291205,27in 4K Gaming Monitor,1,389.99,2019-11-23 21:44:00,855 Maple St, Dallas,TX,75001 +291206,Apple Airpods Headphones,1,150.0,2019-11-08 14:42:00,309 River St, Atlanta,GA,30301 +291207,USB-C Charging Cable,1,11.95,2019-11-21 15:04:00,109 8th St, Atlanta,GA,30301 +291208,Bose SoundSport Headphones,1,99.99,2019-11-11 16:53:00,910 Pine St, Los Angeles,CA,90001 +291209,AA Batteries (4-pack),1,3.84,2019-11-02 10:28:00,981 Lake St, New York City,NY,10001 +291210,AAA Batteries (4-pack),1,2.99,2019-11-11 20:58:00,614 Hickory St, Boston,MA,02215 +291211,USB-C Charging Cable,1,11.95,2019-11-12 14:44:00,23 13th St, Los Angeles,CA,90001 +291212,USB-C Charging Cable,2,11.95,2019-11-21 11:15:00,86 7th St, New York City,NY,10001 +291213,AAA Batteries (4-pack),1,2.99,2019-11-29 12:48:00,838 13th St, San Francisco,CA,94016 +291214,iPhone,1,700.0,2019-11-16 10:46:00,67 Elm St, San Francisco,CA,94016 +291214,Lightning Charging Cable,1,14.95,2019-11-16 10:46:00,67 Elm St, San Francisco,CA,94016 +291215,Wired Headphones,1,11.99,2019-11-25 22:29:00,824 9th St, Portland,OR,97035 +291216,AAA Batteries (4-pack),3,2.99,2019-11-15 00:28:00,535 Adams St, San Francisco,CA,94016 +291217,Google Phone,1,600.0,2019-11-13 03:03:00,724 Dogwood St, New York City,NY,10001 +291218,Macbook Pro Laptop,1,1700.0,2019-11-26 08:43:00,512 Highland St, Dallas,TX,75001 +291219,20in Monitor,1,109.99,2019-11-30 15:03:00,191 Park St, Los Angeles,CA,90001 +291220,Bose SoundSport Headphones,1,99.99,2019-11-20 12:57:00,223 Meadow St, New York City,NY,10001 +291221,USB-C Charging Cable,1,11.95,2019-11-21 21:47:00,614 North St, Portland,ME,04101 +291222,Lightning Charging Cable,1,14.95,2019-11-12 18:24:00,619 Spruce St, New York City,NY,10001 +291223,Apple Airpods Headphones,1,150.0,2019-11-30 13:08:00,11 Center St, Seattle,WA,98101 +291224,USB-C Charging Cable,1,11.95,2019-11-26 17:37:00,900 8th St, Seattle,WA,98101 +291225,Wired Headphones,1,11.99,2019-11-30 15:40:00,487 6th St, Los Angeles,CA,90001 +291226,AAA Batteries (4-pack),1,2.99,2019-11-08 21:36:00,848 Meadow St, San Francisco,CA,94016 +291227,34in Ultrawide Monitor,1,379.99,2019-11-06 08:31:00,181 Cherry St, Boston,MA,02215 +291228,34in Ultrawide Monitor,1,379.99,2019-11-22 20:02:00,387 8th St, Portland,ME,04101 +291229,Bose SoundSport Headphones,1,99.99,2019-11-11 21:12:00,988 Pine St, Los Angeles,CA,90001 +291230,Apple Airpods Headphones,1,150.0,2019-11-02 21:56:00,834 Lincoln St, Seattle,WA,98101 +291231,34in Ultrawide Monitor,1,379.99,2019-11-11 22:06:00,751 Meadow St, New York City,NY,10001 +291232,Bose SoundSport Headphones,1,99.99,2019-11-12 16:25:00,864 Sunset St, Los Angeles,CA,90001 +291233,Apple Airpods Headphones,1,150.0,2019-11-18 13:30:00,568 Cedar St, San Francisco,CA,94016 +291234,20in Monitor,1,109.99,2019-11-22 10:24:00,586 7th St, Portland,ME,04101 +291235,Apple Airpods Headphones,1,150.0,2019-11-09 09:22:00,577 Cherry St, Portland,ME,04101 +291236,AA Batteries (4-pack),1,3.84,2019-11-07 13:58:00,808 Highland St, Seattle,WA,98101 +291237,USB-C Charging Cable,1,11.95,2019-11-20 12:01:00,76 9th St, San Francisco,CA,94016 +291238,20in Monitor,1,109.99,2019-11-07 17:31:00,225 Maple St, San Francisco,CA,94016 +291239,Flatscreen TV,1,300.0,2019-11-20 16:31:00,143 Lincoln St, Portland,OR,97035 +291240,27in 4K Gaming Monitor,1,389.99,2019-11-13 18:56:00,804 Johnson St, Atlanta,GA,30301 +291241,27in FHD Monitor,1,149.99,2019-11-06 18:36:00,211 Lincoln St, Dallas,TX,75001 +291242,USB-C Charging Cable,1,11.95,2019-11-08 11:51:00,667 River St, San Francisco,CA,94016 +291243,USB-C Charging Cable,1,11.95,2019-11-06 13:13:00,119 Dogwood St, Seattle,WA,98101 +291244,Lightning Charging Cable,1,14.95,2019-11-21 12:16:00,100 Lincoln St, Los Angeles,CA,90001 +291245,Flatscreen TV,1,300.0,2019-11-19 22:01:00,435 2nd St, Portland,OR,97035 +291246,Flatscreen TV,1,300.0,2019-11-30 15:53:00,654 Ridge St, Atlanta,GA,30301 +291247,20in Monitor,1,109.99,2019-11-12 12:28:00,942 Meadow St, Austin,TX,73301 +291248,USB-C Charging Cable,1,11.95,2019-11-26 15:56:00,64 Willow St, Portland,OR,97035 +291249,27in FHD Monitor,1,149.99,2019-11-23 15:36:00,27 Sunset St, Atlanta,GA,30301 +291250,27in FHD Monitor,1,149.99,2019-11-29 22:02:00,399 Maple St, Dallas,TX,75001 +291251,Apple Airpods Headphones,1,150.0,2019-11-02 11:28:00,384 6th St, San Francisco,CA,94016 +291252,27in FHD Monitor,1,149.99,2019-11-28 18:11:00,963 Park St, Los Angeles,CA,90001 +291253,ThinkPad Laptop,1,999.99,2019-11-25 17:22:00,159 8th St, San Francisco,CA,94016 +291254,Flatscreen TV,1,300.0,2019-11-05 10:42:00,429 Park St, Boston,MA,02215 +291255,Macbook Pro Laptop,1,1700.0,2019-11-14 19:57:00,714 11th St, Austin,TX,73301 +291256,USB-C Charging Cable,2,11.95,2019-11-13 09:05:00,40 Cedar St, Los Angeles,CA,90001 +291257,USB-C Charging Cable,1,11.95,2019-11-09 12:44:00,432 13th St, Seattle,WA,98101 +291258,Wired Headphones,1,11.99,2019-11-04 03:58:00,10 Meadow St, Seattle,WA,98101 +291259,Google Phone,1,600.0,2019-11-27 09:14:00,470 Park St, San Francisco,CA,94016 +291260,USB-C Charging Cable,1,11.95,2019-11-03 20:02:00,689 13th St, Portland,OR,97035 +291261,AAA Batteries (4-pack),1,2.99,2019-11-04 21:55:00,304 11th St, Portland,OR,97035 +291262,USB-C Charging Cable,1,11.95,2019-11-14 20:36:00,284 Highland St, San Francisco,CA,94016 +291263,Wired Headphones,1,11.99,2019-11-13 16:45:00,156 Cedar St, Boston,MA,02215 +291264,27in 4K Gaming Monitor,1,389.99,2019-11-10 00:28:00,157 Hill St, Atlanta,GA,30301 +291265,Lightning Charging Cable,1,14.95,2019-11-28 02:15:00,970 Johnson St, Austin,TX,73301 +291266,AA Batteries (4-pack),1,3.84,2019-11-16 00:17:00,695 Main St, San Francisco,CA,94016 +291267,Bose SoundSport Headphones,1,99.99,2019-11-04 10:59:00,949 North St, San Francisco,CA,94016 +291268,Wired Headphones,1,11.99,2019-11-12 14:24:00,394 Lincoln St, Los Angeles,CA,90001 +291269,AA Batteries (4-pack),1,3.84,2019-11-09 18:26:00,217 Center St, San Francisco,CA,94016 +291270,Apple Airpods Headphones,1,150.0,2019-11-10 20:12:00,438 Chestnut St, San Francisco,CA,94016 +291271,ThinkPad Laptop,1,999.99,2019-11-04 13:59:00,959 5th St, Atlanta,GA,30301 +291272,AAA Batteries (4-pack),2,2.99,2019-11-03 19:36:00,811 1st St, Seattle,WA,98101 +291272,Lightning Charging Cable,2,14.95,2019-11-03 19:36:00,811 1st St, Seattle,WA,98101 +291273,USB-C Charging Cable,1,11.95,2019-11-29 15:46:00,642 Madison St, New York City,NY,10001 +291274,AAA Batteries (4-pack),2,2.99,2019-11-22 16:38:00,717 Willow St, New York City,NY,10001 +291275,27in FHD Monitor,1,149.99,2019-11-14 19:03:00,826 Meadow St, New York City,NY,10001 +291276,AAA Batteries (4-pack),2,2.99,2019-11-02 09:57:00,7 North St, New York City,NY,10001 +291277,USB-C Charging Cable,1,11.95,2019-11-01 15:38:00,71 Ridge St, Seattle,WA,98101 +291278,Lightning Charging Cable,1,14.95,2019-11-27 17:35:00,383 West St, San Francisco,CA,94016 +291279,Lightning Charging Cable,2,14.95,2019-11-19 22:13:00,47 Center St, Boston,MA,02215 +291280,Flatscreen TV,1,300.0,2019-11-23 16:20:00,36 Lake St, Dallas,TX,75001 +291281,Google Phone,1,600.0,2019-11-16 15:11:00,7 Church St, Los Angeles,CA,90001 +291281,USB-C Charging Cable,1,11.95,2019-11-16 15:11:00,7 Church St, Los Angeles,CA,90001 +291282,AA Batteries (4-pack),1,3.84,2019-11-12 09:12:00,843 Church St, Atlanta,GA,30301 +291283,Lightning Charging Cable,1,14.95,2019-11-01 14:52:00,152 Lincoln St, Atlanta,GA,30301 +291284,27in 4K Gaming Monitor,1,389.99,2019-11-24 23:31:00,832 1st St, Los Angeles,CA,90001 +291285,ThinkPad Laptop,1,999.99,2019-11-24 16:23:00,826 Madison St, San Francisco,CA,94016 +291286,USB-C Charging Cable,1,11.95,2019-11-07 12:52:00,553 Lake St, Seattle,WA,98101 +291287,iPhone,1,700.0,2019-11-15 09:38:00,662 11th St, San Francisco,CA,94016 +291288,20in Monitor,1,109.99,2019-11-30 18:17:00,695 Highland St, Atlanta,GA,30301 +291289,USB-C Charging Cable,1,11.95,2019-11-21 12:38:00,45 Adams St, San Francisco,CA,94016 +291290,Wired Headphones,1,11.99,2019-11-20 19:14:00,477 South St, San Francisco,CA,94016 +291291,USB-C Charging Cable,1,11.95,2019-11-19 21:14:00,233 Johnson St, New York City,NY,10001 +291292,Wired Headphones,1,11.99,2019-11-19 18:07:00,940 Hickory St, Los Angeles,CA,90001 +291293,Apple Airpods Headphones,1,150.0,2019-11-03 12:59:00,388 Park St, Boston,MA,02215 +291294,Bose SoundSport Headphones,1,99.99,2019-11-07 22:51:00,995 Sunset St, Boston,MA,02215 +291295,Bose SoundSport Headphones,1,99.99,2019-11-13 21:36:00,347 9th St, San Francisco,CA,94016 +291296,Lightning Charging Cable,1,14.95,2019-11-16 13:09:00,111 14th St, Boston,MA,02215 +291297,Lightning Charging Cable,1,14.95,2019-11-14 00:34:00,867 Maple St, Dallas,TX,75001 +291298,Bose SoundSport Headphones,1,99.99,2019-11-03 20:07:00,972 Willow St, Los Angeles,CA,90001 +291299,AA Batteries (4-pack),1,3.84,2019-11-06 15:08:00,35 13th St, Seattle,WA,98101 +291300,AA Batteries (4-pack),2,3.84,2019-11-22 09:41:00,883 Willow St, Seattle,WA,98101 +291301,Flatscreen TV,1,300.0,2019-11-09 18:56:00,959 13th St, Dallas,TX,75001 +291301,iPhone,1,700.0,2019-11-09 18:56:00,959 13th St, Dallas,TX,75001 +291302,AAA Batteries (4-pack),1,2.99,2019-11-09 19:12:00,747 Adams St, Boston,MA,02215 +291303,Flatscreen TV,1,300.0,2019-11-26 14:21:00,865 South St, Los Angeles,CA,90001 +291304,AA Batteries (4-pack),1,3.84,2019-11-14 14:52:00,235 Cherry St, Austin,TX,73301 +291305,Wired Headphones,1,11.99,2019-11-11 10:30:00,330 Lincoln St, Atlanta,GA,30301 +291306,AAA Batteries (4-pack),1,2.99,2019-11-13 22:26:00,203 4th St, Atlanta,GA,30301 +291307,ThinkPad Laptop,1,999.99,2019-11-26 21:20:00,281 Jefferson St, New York City,NY,10001 +291308,Lightning Charging Cable,1,14.95,2019-11-30 19:53:00,693 Washington St, Seattle,WA,98101 +291309,Wired Headphones,2,11.99,2019-11-28 22:03:00,263 2nd St, Boston,MA,02215 +291310,27in 4K Gaming Monitor,1,389.99,2019-11-24 01:29:00,792 Spruce St, Los Angeles,CA,90001 +291311,Macbook Pro Laptop,1,1700.0,2019-11-17 11:40:00,419 Church St, Los Angeles,CA,90001 +291312,Apple Airpods Headphones,1,150.0,2019-11-12 17:37:00,283 8th St, San Francisco,CA,94016 +291313,Macbook Pro Laptop,1,1700.0,2019-11-11 11:36:00,416 Lincoln St, Boston,MA,02215 +291314,USB-C Charging Cable,1,11.95,2019-11-14 17:05:00,381 Spruce St, Los Angeles,CA,90001 +291315,Bose SoundSport Headphones,1,99.99,2019-11-21 18:02:00,757 South St, Seattle,WA,98101 +291316,Lightning Charging Cable,1,14.95,2019-11-25 07:23:00,738 Highland St, San Francisco,CA,94016 +291317,34in Ultrawide Monitor,1,379.99,2019-11-24 23:51:00,29 West St, Boston,MA,02215 +291318,Bose SoundSport Headphones,1,99.99,2019-11-29 06:53:00,133 Madison St, Austin,TX,73301 +291319,Bose SoundSport Headphones,1,99.99,2019-11-09 17:33:00,470 Jefferson St, Boston,MA,02215 +291320,Bose SoundSport Headphones,1,99.99,2019-11-23 11:47:00,318 10th St, Los Angeles,CA,90001 +291321,ThinkPad Laptop,1,999.99,2019-11-27 13:58:00,253 South St, Boston,MA,02215 +291322,Apple Airpods Headphones,1,150.0,2019-11-02 21:11:00,822 Lakeview St, San Francisco,CA,94016 +291323,USB-C Charging Cable,1,11.95,2019-11-29 12:33:00,190 Chestnut St, New York City,NY,10001 +291324,AA Batteries (4-pack),1,3.84,2019-11-26 10:56:00,266 Sunset St, Dallas,TX,75001 +291325,Wired Headphones,1,11.99,2019-11-07 16:39:00,74 Walnut St, Austin,TX,73301 +291326,Macbook Pro Laptop,1,1700.0,2019-11-24 19:36:00,504 Madison St, San Francisco,CA,94016 +291327,20in Monitor,1,109.99,2019-11-28 14:19:00,4 1st St, San Francisco,CA,94016 +291328,34in Ultrawide Monitor,1,379.99,2019-11-23 21:49:00,543 7th St, Seattle,WA,98101 +291329,USB-C Charging Cable,2,11.95,2019-11-10 05:44:00,443 7th St, Austin,TX,73301 +291330,Apple Airpods Headphones,1,150.0,2019-11-07 02:44:00,911 Dogwood St, Dallas,TX,75001 +291331,AA Batteries (4-pack),1,3.84,2019-11-27 18:56:00,109 Jackson St, San Francisco,CA,94016 +291332,USB-C Charging Cable,1,11.95,2019-11-19 15:41:00,279 4th St, San Francisco,CA,94016 +291333,27in FHD Monitor,1,149.99,2019-11-10 17:38:00,784 14th St, San Francisco,CA,94016 +291334,USB-C Charging Cable,1,11.95,2019-11-04 13:16:00,762 Jackson St, Atlanta,GA,30301 +291335,27in FHD Monitor,1,149.99,2019-11-21 06:30:00,386 Dogwood St, New York City,NY,10001 +291336,Apple Airpods Headphones,1,150.0,2019-11-08 01:43:00,493 Wilson St, Los Angeles,CA,90001 +291337,USB-C Charging Cable,1,11.95,2019-11-19 19:49:00,520 Elm St, Boston,MA,02215 +291338,27in FHD Monitor,1,149.99,2019-11-08 03:07:00,312 6th St, Seattle,WA,98101 +291339,Bose SoundSport Headphones,1,99.99,2019-11-02 19:16:00,2 1st St, San Francisco,CA,94016 +291340,Flatscreen TV,1,300.0,2019-11-26 09:01:00,287 Wilson St, Boston,MA,02215 +291341,Bose SoundSport Headphones,1,99.99,2019-11-12 21:47:00,610 Walnut St, Los Angeles,CA,90001 +291342,ThinkPad Laptop,1,999.99,2019-11-27 18:49:00,997 Spruce St, Portland,OR,97035 +291343,Lightning Charging Cable,1,14.95,2019-11-04 10:36:00,776 Church St, New York City,NY,10001 +291344,AAA Batteries (4-pack),1,2.99,2019-11-29 19:56:00,136 11th St, Los Angeles,CA,90001 +291345,LG Dryer,1,600.0,2019-11-18 14:00:00,775 Ridge St, Portland,OR,97035 +291346,Wired Headphones,1,11.99,2019-11-01 07:52:00,129 Wilson St, San Francisco,CA,94016 +291347,Apple Airpods Headphones,1,150.0,2019-11-27 23:10:00,595 Elm St, New York City,NY,10001 +291348,Wired Headphones,1,11.99,2019-11-24 16:27:00,66 Maple St, New York City,NY,10001 +291349,Google Phone,1,600.0,2019-11-12 18:18:00,582 Walnut St, Los Angeles,CA,90001 +291350,Wired Headphones,1,11.99,2019-11-17 20:42:00,411 River St, New York City,NY,10001 +291351,AA Batteries (4-pack),2,3.84,2019-11-21 05:17:00,7 Willow St, San Francisco,CA,94016 +291352,Apple Airpods Headphones,1,150.0,2019-11-24 10:51:00,52 South St, San Francisco,CA,94016 +291353,34in Ultrawide Monitor,1,379.99,2019-11-10 14:03:00,455 Adams St, New York City,NY,10001 +291354,Bose SoundSport Headphones,1,99.99,2019-11-12 13:00:00,140 6th St, Portland,OR,97035 +291355,Wired Headphones,1,11.99,2019-11-27 22:09:00,809 Meadow St, San Francisco,CA,94016 +291356,Google Phone,1,600.0,2019-11-02 21:32:00,681 Lakeview St, New York City,NY,10001 +291357,AAA Batteries (4-pack),1,2.99,2019-11-20 16:32:00,456 Pine St, New York City,NY,10001 +291358,Lightning Charging Cable,1,14.95,2019-11-13 22:28:00,49 5th St, Atlanta,GA,30301 +291359,USB-C Charging Cable,1,11.95,2019-11-10 20:40:00,676 Madison St, Los Angeles,CA,90001 +291360,Wired Headphones,1,11.99,2019-11-25 13:26:00,322 1st St, Atlanta,GA,30301 +291361,20in Monitor,1,109.99,2019-11-12 14:06:00,828 Chestnut St, Portland,OR,97035 +291362,USB-C Charging Cable,1,11.95,2019-11-14 08:06:00,369 Washington St, Dallas,TX,75001 +291363,Bose SoundSport Headphones,1,99.99,2019-11-21 23:17:00,754 12th St, Atlanta,GA,30301 +291364,AA Batteries (4-pack),1,3.84,2019-11-21 20:15:00,298 Johnson St, Seattle,WA,98101 +291365,AA Batteries (4-pack),1,3.84,2019-11-23 14:34:00,36 9th St, Dallas,TX,75001 +291366,Apple Airpods Headphones,1,150.0,2019-11-20 17:34:00,380 13th St, San Francisco,CA,94016 +291367,AAA Batteries (4-pack),1,2.99,2019-11-16 08:41:00,621 Dogwood St, Portland,OR,97035 +291368,27in FHD Monitor,1,149.99,2019-11-19 00:02:00,750 Wilson St, Los Angeles,CA,90001 +291369,AAA Batteries (4-pack),1,2.99,2019-11-09 23:13:00,575 Lakeview St, Dallas,TX,75001 +291370,27in 4K Gaming Monitor,1,389.99,2019-11-14 17:16:00,566 Forest St, San Francisco,CA,94016 +291371,AA Batteries (4-pack),2,3.84,2019-11-19 11:09:00,674 Forest St, Los Angeles,CA,90001 +291372,Apple Airpods Headphones,1,150.0,2019-11-04 08:25:00,420 West St, San Francisco,CA,94016 +291373,AA Batteries (4-pack),1,3.84,2019-11-26 12:14:00,49 West St, New York City,NY,10001 +291374,Apple Airpods Headphones,1,150.0,2019-11-14 19:58:00,378 Washington St, San Francisco,CA,94016 +291375,27in FHD Monitor,1,149.99,2019-11-05 13:11:00,647 14th St, Los Angeles,CA,90001 +291376,Macbook Pro Laptop,1,1700.0,2019-11-18 12:33:00,881 Lakeview St, Portland,ME,04101 +291377,Macbook Pro Laptop,1,1700.0,2019-11-11 19:08:00,843 Ridge St, New York City,NY,10001 +291378,Flatscreen TV,1,300.0,2019-11-10 23:32:00,201 Adams St, Los Angeles,CA,90001 +291379,AA Batteries (4-pack),3,3.84,2019-11-06 07:33:00,10 River St, New York City,NY,10001 +291380,iPhone,1,700.0,2019-11-17 08:06:00,814 Willow St, Boston,MA,02215 +291380,Wired Headphones,1,11.99,2019-11-17 08:06:00,814 Willow St, Boston,MA,02215 +291381,Wired Headphones,1,11.99,2019-11-20 02:38:00,432 Hill St, Los Angeles,CA,90001 +291382,USB-C Charging Cable,1,11.95,2019-11-10 18:01:00,763 13th St, Los Angeles,CA,90001 +291383,Flatscreen TV,1,300.0,2019-11-26 20:52:00,72 Jackson St, Boston,MA,02215 +291384,AAA Batteries (4-pack),1,2.99,2019-11-05 18:12:00,550 Church St, San Francisco,CA,94016 +291385,AAA Batteries (4-pack),2,2.99,2019-11-14 01:34:00,259 River St, Los Angeles,CA,90001 +291386,Macbook Pro Laptop,1,1700.0,2019-11-24 22:03:00,386 8th St, San Francisco,CA,94016 +291387,ThinkPad Laptop,1,999.99,2019-11-09 12:48:00,56 Maple St, Seattle,WA,98101 +291388,27in FHD Monitor,1,149.99,2019-11-03 11:19:00,744 Willow St, Los Angeles,CA,90001 +291389,Google Phone,1,600.0,2019-11-11 22:19:00,380 Wilson St, Los Angeles,CA,90001 +291390,27in FHD Monitor,1,149.99,2019-11-26 01:13:00,838 North St, San Francisco,CA,94016 +291391,AA Batteries (4-pack),3,3.84,2019-11-28 10:28:00,553 Elm St, Los Angeles,CA,90001 +291392,ThinkPad Laptop,1,999.99,2019-11-12 13:02:00,139 Main St, Los Angeles,CA,90001 +291393,Lightning Charging Cable,1,14.95,2019-11-05 10:06:00,162 5th St, San Francisco,CA,94016 +291394,Wired Headphones,1,11.99,2019-11-15 20:52:00,338 4th St, Dallas,TX,75001 +291395,Flatscreen TV,1,300.0,2019-11-16 14:19:00,644 Sunset St, San Francisco,CA,94016 +291396,AA Batteries (4-pack),1,3.84,2019-11-07 22:48:00,614 Madison St, Seattle,WA,98101 +291397,AA Batteries (4-pack),1,3.84,2019-11-02 19:38:00,839 1st St, Dallas,TX,75001 +291398,Apple Airpods Headphones,1,150.0,2019-11-18 22:11:00,667 13th St, Los Angeles,CA,90001 +291399,AAA Batteries (4-pack),1,2.99,2019-11-27 20:14:00,747 8th St, San Francisco,CA,94016 +291400,20in Monitor,1,109.99,2019-11-27 20:22:00,573 Ridge St, Dallas,TX,75001 +291401,Macbook Pro Laptop,1,1700.0,2019-11-26 13:51:00,741 Willow St, Atlanta,GA,30301 +291402,USB-C Charging Cable,1,11.95,2019-11-14 14:06:00,32 14th St, San Francisco,CA,94016 +291403,AA Batteries (4-pack),2,3.84,2019-11-27 11:10:00,309 Walnut St, Los Angeles,CA,90001 +291404,AAA Batteries (4-pack),1,2.99,2019-11-22 18:26:00,907 2nd St, Portland,OR,97035 +291405,Bose SoundSport Headphones,1,99.99,2019-11-25 06:23:00,149 12th St, Atlanta,GA,30301 +291405,USB-C Charging Cable,1,11.95,2019-11-25 06:23:00,149 12th St, Atlanta,GA,30301 +291406,27in 4K Gaming Monitor,1,389.99,2019-11-09 18:21:00,936 Elm St, San Francisco,CA,94016 +291407,Wired Headphones,1,11.99,2019-11-03 17:25:00,722 4th St, Boston,MA,02215 +291408,27in FHD Monitor,1,149.99,2019-11-24 12:28:00,817 Sunset St, Seattle,WA,98101 +291409,Vareebadd Phone,1,400.0,2019-11-16 13:24:00,599 4th St, San Francisco,CA,94016 +291410,Apple Airpods Headphones,1,150.0,2019-11-02 18:36:00,74 Jackson St, New York City,NY,10001 +291411,Macbook Pro Laptop,1,1700.0,2019-11-12 20:43:00,95 Madison St, San Francisco,CA,94016 +291412,Apple Airpods Headphones,1,150.0,2019-11-24 13:41:00,407 Maple St, San Francisco,CA,94016 +291413,Wired Headphones,1,11.99,2019-11-08 07:07:00,148 11th St, Boston,MA,02215 +291414,Lightning Charging Cable,1,14.95,2019-11-01 11:29:00,977 Spruce St, Boston,MA,02215 +291415,Wired Headphones,2,11.99,2019-11-16 19:23:00,653 Spruce St, Dallas,TX,75001 +291416,Lightning Charging Cable,1,14.95,2019-11-24 18:20:00,388 Ridge St, New York City,NY,10001 +291416,USB-C Charging Cable,3,11.95,2019-11-24 18:20:00,388 Ridge St, New York City,NY,10001 +291417,AAA Batteries (4-pack),2,2.99,2019-11-20 12:53:00,765 8th St, San Francisco,CA,94016 +291418,34in Ultrawide Monitor,1,379.99,2019-11-06 11:28:00,326 Johnson St, New York City,NY,10001 +291419,Macbook Pro Laptop,1,1700.0,2019-11-29 20:31:00,808 Chestnut St, Seattle,WA,98101 +291420,AA Batteries (4-pack),1,3.84,2019-11-10 08:55:00,520 12th St, Seattle,WA,98101 +291421,Lightning Charging Cable,2,14.95,2019-11-27 15:59:00,311 Willow St, San Francisco,CA,94016 +291422,20in Monitor,1,109.99,2019-11-07 19:26:00,622 Jefferson St, San Francisco,CA,94016 +291423,Lightning Charging Cable,1,14.95,2019-11-10 10:21:00,324 Forest St, Boston,MA,02215 +291424,Wired Headphones,1,11.99,2019-11-08 22:36:00,695 Park St, San Francisco,CA,94016 +291425,27in FHD Monitor,1,149.99,2019-11-22 04:52:00,596 Washington St, Los Angeles,CA,90001 +291426,AA Batteries (4-pack),3,3.84,2019-11-05 13:36:00,602 13th St, Boston,MA,02215 +291427,AAA Batteries (4-pack),1,2.99,2019-11-09 14:46:00,95 12th St, Portland,OR,97035 +291428,34in Ultrawide Monitor,1,379.99,2019-11-21 08:44:00,112 Cherry St, Los Angeles,CA,90001 +291429,Vareebadd Phone,1,400.0,2019-11-01 08:59:00,602 7th St, Seattle,WA,98101 +291430,Wired Headphones,1,11.99,2019-11-08 08:33:00,638 5th St, Atlanta,GA,30301 +291431,AA Batteries (4-pack),1,3.84,2019-11-15 10:34:00,47 Lincoln St, San Francisco,CA,94016 +291432,Google Phone,1,600.0,2019-11-26 14:15:00,297 North St, San Francisco,CA,94016 +291432,Wired Headphones,1,11.99,2019-11-26 14:15:00,297 North St, San Francisco,CA,94016 +291433,iPhone,1,700.0,2019-11-12 18:49:00,268 Lincoln St, Boston,MA,02215 +291434,Bose SoundSport Headphones,1,99.99,2019-11-05 21:24:00,770 11th St, New York City,NY,10001 +291435,Apple Airpods Headphones,1,150.0,2019-11-05 19:50:00,443 Jefferson St, Los Angeles,CA,90001 +291436,AA Batteries (4-pack),1,3.84,2019-11-05 12:33:00,923 4th St, San Francisco,CA,94016 +291437,Bose SoundSport Headphones,1,99.99,2019-11-01 15:40:00,549 Adams St, San Francisco,CA,94016 +291438,AA Batteries (4-pack),1,3.84,2019-11-17 20:48:00,633 Pine St, Seattle,WA,98101 +291439,Lightning Charging Cable,1,14.95,2019-11-14 11:14:00,315 Dogwood St, Dallas,TX,75001 +291440,20in Monitor,1,109.99,2019-11-29 01:34:00,366 West St, San Francisco,CA,94016 +291441,iPhone,1,700.0,2019-11-26 23:25:00,917 1st St, San Francisco,CA,94016 +291442,AAA Batteries (4-pack),1,2.99,2019-11-06 19:17:00,39 Cedar St, Los Angeles,CA,90001 +291443,Apple Airpods Headphones,1,150.0,2019-11-28 11:42:00,924 Forest St, New York City,NY,10001 +291444,Lightning Charging Cable,1,14.95,2019-11-13 21:44:00,822 Lakeview St, Boston,MA,02215 +291445,AAA Batteries (4-pack),5,2.99,2019-11-13 20:28:00,187 6th St, Seattle,WA,98101 +291446,Apple Airpods Headphones,1,150.0,2019-11-29 17:30:00,707 10th St, Boston,MA,02215 +291447,AA Batteries (4-pack),1,3.84,2019-11-09 14:13:00,88 8th St, San Francisco,CA,94016 +291448,AA Batteries (4-pack),1,3.84,2019-11-11 13:54:00,275 1st St, Dallas,TX,75001 +291449,USB-C Charging Cable,1,11.95,2019-11-05 16:51:00,624 Willow St, Boston,MA,02215 +291450,iPhone,1,700.0,2019-11-21 11:28:00,367 North St, Dallas,TX,75001 +291451,Wired Headphones,1,11.99,2019-11-05 01:35:00,861 Willow St, San Francisco,CA,94016 +291452,AA Batteries (4-pack),2,3.84,2019-11-13 07:58:00,281 Madison St, Los Angeles,CA,90001 +291453,iPhone,1,700.0,2019-11-27 02:22:00,900 Highland St, Austin,TX,73301 +291454,AA Batteries (4-pack),1,3.84,2019-11-14 17:35:00,554 Lakeview St, San Francisco,CA,94016 +291455,Lightning Charging Cable,1,14.95,2019-11-25 15:07:00,643 4th St, San Francisco,CA,94016 +291456,Bose SoundSport Headphones,1,99.99,2019-11-30 07:44:00,308 Park St, San Francisco,CA,94016 +291457,Wired Headphones,1,11.99,2019-11-12 03:12:00,308 Lincoln St, Portland,OR,97035 +291458,AAA Batteries (4-pack),1,2.99,2019-11-07 16:16:00,824 Wilson St, San Francisco,CA,94016 +291459,AAA Batteries (4-pack),1,2.99,2019-11-09 19:03:00,873 Sunset St, Boston,MA,02215 +291460,AA Batteries (4-pack),1,3.84,2019-11-18 18:37:00,236 West St, Boston,MA,02215 +291461,27in 4K Gaming Monitor,1,389.99,2019-11-03 20:02:00,223 Forest St, Los Angeles,CA,90001 +291462,AA Batteries (4-pack),1,3.84,2019-11-22 20:58:00,317 Adams St, Los Angeles,CA,90001 +291463,iPhone,1,700.0,2019-11-12 21:07:00,94 Center St, Portland,OR,97035 +291464,20in Monitor,1,109.99,2019-11-15 22:43:00,655 Hickory St, Los Angeles,CA,90001 +291465,Wired Headphones,1,11.99,2019-11-28 13:36:00,889 6th St, Boston,MA,02215 +291466,AAA Batteries (4-pack),2,2.99,2019-11-27 14:13:00,811 River St, Boston,MA,02215 +291467,ThinkPad Laptop,1,999.99,2019-11-02 21:40:00,116 Center St, Austin,TX,73301 +291468,Apple Airpods Headphones,1,150.0,2019-11-17 22:36:00,166 Main St, San Francisco,CA,94016 +291469,ThinkPad Laptop,1,999.99,2019-11-30 01:34:00,302 Jefferson St, New York City,NY,10001 +291470,Wired Headphones,1,11.99,2019-11-28 13:21:00,206 Hill St, Boston,MA,02215 +291471,Flatscreen TV,1,300.0,2019-11-28 12:37:00,902 Washington St, Dallas,TX,75001 +291472,Lightning Charging Cable,1,14.95,2019-11-05 20:58:00,857 Jackson St, Los Angeles,CA,90001 +291473,iPhone,1,700.0,2019-11-27 23:04:00,238 Lake St, Boston,MA,02215 +291473,Apple Airpods Headphones,1,150.0,2019-11-27 23:04:00,238 Lake St, Boston,MA,02215 +291474,AAA Batteries (4-pack),1,2.99,2019-11-19 19:38:00,411 South St, San Francisco,CA,94016 +291475,Bose SoundSport Headphones,1,99.99,2019-11-24 09:32:00,377 River St, Portland,OR,97035 +291476,Lightning Charging Cable,1,14.95,2019-11-22 20:01:00,728 Cedar St, Austin,TX,73301 +291477,Wired Headphones,1,11.99,2019-11-21 07:05:00,609 Elm St, Seattle,WA,98101 +291478,Bose SoundSport Headphones,1,99.99,2019-11-24 15:11:00,852 11th St, New York City,NY,10001 +291479,USB-C Charging Cable,1,11.95,2019-11-15 20:19:00,644 14th St, San Francisco,CA,94016 +291480,AAA Batteries (4-pack),4,2.99,2019-11-03 12:58:00,332 Madison St, Dallas,TX,75001 +291481,AAA Batteries (4-pack),1,2.99,2019-11-19 06:29:00,488 Ridge St, Boston,MA,02215 +291482,27in FHD Monitor,1,149.99,2019-11-08 22:17:00,924 River St, Atlanta,GA,30301 +291483,AA Batteries (4-pack),1,3.84,2019-11-15 07:37:00,794 Highland St, San Francisco,CA,94016 +291484,AAA Batteries (4-pack),2,2.99,2019-11-08 17:15:00,901 Lincoln St, Dallas,TX,75001 +291485,iPhone,1,700.0,2019-11-19 14:20:00,397 Center St, New York City,NY,10001 +291486,Apple Airpods Headphones,1,150.0,2019-11-22 09:31:00,319 Church St, New York City,NY,10001 +291487,Lightning Charging Cable,1,14.95,2019-11-10 11:22:00,408 2nd St, San Francisco,CA,94016 +291488,Google Phone,1,600.0,2019-11-21 17:11:00,96 Ridge St, Seattle,WA,98101 +291488,USB-C Charging Cable,1,11.95,2019-11-21 17:11:00,96 Ridge St, Seattle,WA,98101 +291489,ThinkPad Laptop,1,999.99,2019-11-18 11:44:00,800 10th St, Boston,MA,02215 +291490,Wired Headphones,1,11.99,2019-11-06 12:26:00,293 Church St, Los Angeles,CA,90001 +291491,Lightning Charging Cable,1,14.95,2019-11-22 16:47:00,8 Lake St, New York City,NY,10001 +291492,USB-C Charging Cable,1,11.95,2019-11-28 16:04:00,247 1st St, San Francisco,CA,94016 +291493,Google Phone,1,600.0,2019-11-04 18:46:00,695 Main St, Portland,ME,04101 +291494,iPhone,1,700.0,2019-11-04 17:43:00,545 Walnut St, Dallas,TX,75001 +291495,Lightning Charging Cable,1,14.95,2019-11-09 10:25:00,741 7th St, Boston,MA,02215 +291496,AA Batteries (4-pack),2,3.84,2019-11-07 00:17:00,621 South St, San Francisco,CA,94016 +291497,Apple Airpods Headphones,1,150.0,2019-11-01 17:48:00,560 North St, San Francisco,CA,94016 +291498,USB-C Charging Cable,1,11.95,2019-11-18 07:51:00,906 Spruce St, New York City,NY,10001 +291499,AAA Batteries (4-pack),1,2.99,2019-11-29 23:21:00,270 Cherry St, Dallas,TX,75001 +291500,AAA Batteries (4-pack),2,2.99,2019-11-12 17:49:00,509 Wilson St, Atlanta,GA,30301 +291501,Wired Headphones,1,11.99,2019-11-14 20:36:00,74 Cedar St, San Francisco,CA,94016 +291502,34in Ultrawide Monitor,1,379.99,2019-11-10 11:47:00,269 Lake St, San Francisco,CA,94016 +291503,27in FHD Monitor,1,149.99,2019-11-03 09:29:00,743 Jackson St, San Francisco,CA,94016 +291504,Lightning Charging Cable,1,14.95,2019-11-26 09:04:00,948 Maple St, Dallas,TX,75001 +291505,Bose SoundSport Headphones,1,99.99,2019-11-28 19:42:00,649 Walnut St, New York City,NY,10001 +291506,Lightning Charging Cable,1,14.95,2019-11-08 11:55:00,711 Park St, Seattle,WA,98101 +291507,USB-C Charging Cable,1,11.95,2019-11-21 21:38:00,476 2nd St, San Francisco,CA,94016 +291508,Apple Airpods Headphones,1,150.0,2019-11-05 22:59:00,934 Maple St, Portland,ME,04101 +291509,Google Phone,1,600.0,2019-11-09 15:40:00,992 Spruce St, Boston,MA,02215 +291509,USB-C Charging Cable,1,11.95,2019-11-09 15:40:00,992 Spruce St, Boston,MA,02215 +291510,AAA Batteries (4-pack),1,2.99,2019-11-06 19:20:00,521 12th St, Los Angeles,CA,90001 +291511,USB-C Charging Cable,1,11.95,2019-11-15 13:17:00,526 Forest St, San Francisco,CA,94016 +291512,AA Batteries (4-pack),1,3.84,2019-11-24 16:20:00,643 Dogwood St, San Francisco,CA,94016 +291513,Bose SoundSport Headphones,1,99.99,2019-11-17 07:18:00,334 Chestnut St, San Francisco,CA,94016 +291514,34in Ultrawide Monitor,1,379.99,2019-11-28 08:19:00,440 Pine St, Los Angeles,CA,90001 +291515,ThinkPad Laptop,1,999.99,2019-11-17 17:36:00,255 14th St, Dallas,TX,75001 +291516,Google Phone,1,600.0,2019-11-20 11:24:00,82 Lincoln St, Austin,TX,73301 +291517,Flatscreen TV,1,300.0,2019-11-17 18:20:00,315 South St, Boston,MA,02215 +291518,Macbook Pro Laptop,1,1700.0,2019-11-23 18:30:00,602 Spruce St, Atlanta,GA,30301 +291519,Macbook Pro Laptop,1,1700.0,2019-11-14 22:12:00,518 Cedar St, San Francisco,CA,94016 +291520,AA Batteries (4-pack),1,3.84,2019-11-21 22:08:00,216 Maple St, Atlanta,GA,30301 +291521,27in 4K Gaming Monitor,1,389.99,2019-11-16 20:57:00,767 Ridge St, San Francisco,CA,94016 +291522,Bose SoundSport Headphones,1,99.99,2019-11-13 19:12:00,595 11th St, Austin,TX,73301 +291523,iPhone,1,700.0,2019-11-12 16:46:00,854 Pine St, Seattle,WA,98101 +291524,Bose SoundSport Headphones,1,99.99,2019-11-23 23:55:00,602 1st St, Los Angeles,CA,90001 +291525,Apple Airpods Headphones,1,150.0,2019-11-07 19:24:00,488 Hill St, San Francisco,CA,94016 +291526,iPhone,1,700.0,2019-11-11 09:50:00,761 9th St, New York City,NY,10001 +291527,Lightning Charging Cable,1,14.95,2019-11-18 07:09:00,255 Willow St, Seattle,WA,98101 +291528,AAA Batteries (4-pack),1,2.99,2019-11-17 05:15:00,26 2nd St, New York City,NY,10001 +291529,Flatscreen TV,1,300.0,2019-11-27 14:36:00,249 Washington St, Los Angeles,CA,90001 +291530,27in FHD Monitor,1,149.99,2019-11-08 09:23:00,964 Hill St, Portland,ME,04101 +291531,Apple Airpods Headphones,1,150.0,2019-11-02 19:15:00,272 Maple St, Portland,OR,97035 +291532,Flatscreen TV,1,300.0,2019-11-09 08:38:00,911 Elm St, Portland,OR,97035 +291533,AAA Batteries (4-pack),2,2.99,2019-11-10 09:15:00,70 West St, Los Angeles,CA,90001 +291534,AAA Batteries (4-pack),2,2.99,2019-11-12 21:20:00,67 Sunset St, New York City,NY,10001 +291535,Wired Headphones,1,11.99,2019-11-11 16:09:00,325 Cedar St, Boston,MA,02215 +291536,AA Batteries (4-pack),1,3.84,2019-11-09 09:33:00,64 7th St, Los Angeles,CA,90001 +291537,Vareebadd Phone,1,400.0,2019-11-23 21:23:00,349 Church St, Los Angeles,CA,90001 +291538,AA Batteries (4-pack),1,3.84,2019-11-14 17:20:00,622 North St, Dallas,TX,75001 +291539,20in Monitor,1,109.99,2019-11-30 11:45:00,518 14th St, San Francisco,CA,94016 +291540,AAA Batteries (4-pack),2,2.99,2019-11-30 15:00:00,205 Hill St, Boston,MA,02215 +291541,Lightning Charging Cable,1,14.95,2019-11-06 07:15:00,354 Chestnut St, Portland,OR,97035 +291542,Flatscreen TV,1,300.0,2019-11-18 15:13:00,793 7th St, San Francisco,CA,94016 +291543,Wired Headphones,1,11.99,2019-11-21 16:30:00,699 5th St, Seattle,WA,98101 +291544,Wired Headphones,1,11.99,2019-11-09 07:43:00,593 Elm St, Boston,MA,02215 +291545,27in 4K Gaming Monitor,1,389.99,2019-11-04 13:02:00,965 Highland St, San Francisco,CA,94016 +291546,Wired Headphones,1,11.99,2019-11-11 14:54:00,216 Johnson St, Los Angeles,CA,90001 +291547,iPhone,1,700.0,2019-11-05 18:25:00,21 4th St, San Francisco,CA,94016 +291548,AA Batteries (4-pack),1,3.84,2019-11-24 17:44:00,243 River St, New York City,NY,10001 +291549,Lightning Charging Cable,1,14.95,2019-11-21 19:01:00,131 4th St, Atlanta,GA,30301 +291550,AAA Batteries (4-pack),1,2.99,2019-11-20 18:19:00,768 12th St, New York City,NY,10001 +291551,27in 4K Gaming Monitor,1,389.99,2019-11-30 12:14:00,763 4th St, Los Angeles,CA,90001 +291552,AA Batteries (4-pack),3,3.84,2019-11-30 10:20:00,369 7th St, New York City,NY,10001 +291553,Wired Headphones,1,11.99,2019-11-03 13:03:00,241 14th St, New York City,NY,10001 +291554,34in Ultrawide Monitor,1,379.99,2019-11-26 15:47:00,584 5th St, New York City,NY,10001 +291555,Macbook Pro Laptop,1,1700.0,2019-11-25 10:36:00,250 Dogwood St, Austin,TX,73301 +291556,USB-C Charging Cable,1,11.95,2019-11-16 16:12:00,973 12th St, Los Angeles,CA,90001 +291557,Lightning Charging Cable,1,14.95,2019-11-11 23:29:00,934 Hill St, New York City,NY,10001 +291558,iPhone,1,700.0,2019-11-25 12:23:00,498 River St, Atlanta,GA,30301 +291558,USB-C Charging Cable,1,11.95,2019-11-25 12:23:00,498 River St, Atlanta,GA,30301 +291559,Bose SoundSport Headphones,1,99.99,2019-11-18 21:28:00,412 Willow St, Austin,TX,73301 +291560,USB-C Charging Cable,1,11.95,2019-11-20 20:40:00,110 West St, San Francisco,CA,94016 +291561,AAA Batteries (4-pack),1,2.99,2019-11-13 18:39:00,564 Wilson St, New York City,NY,10001 +291562,AAA Batteries (4-pack),3,2.99,2019-11-01 12:49:00,264 Ridge St, Seattle,WA,98101 +291563,Apple Airpods Headphones,1,150.0,2019-11-08 15:00:00,912 5th St, Portland,OR,97035 +291564,Wired Headphones,1,11.99,2019-11-26 19:47:00,572 Spruce St, Portland,OR,97035 +291565,AA Batteries (4-pack),1,3.84,2019-11-04 14:08:00,822 North St, New York City,NY,10001 +291566,USB-C Charging Cable,1,11.95,2019-11-29 22:11:00,977 Washington St, Los Angeles,CA,90001 +291567,Apple Airpods Headphones,1,150.0,2019-11-28 22:24:00,399 8th St, Boston,MA,02215 +291568,Bose SoundSport Headphones,1,99.99,2019-11-30 20:04:00,660 North St, San Francisco,CA,94016 +291569,Macbook Pro Laptop,1,1700.0,2019-11-19 19:13:00,33 Jackson St, Dallas,TX,75001 +291570,Wired Headphones,1,11.99,2019-11-26 20:19:00,918 Willow St, San Francisco,CA,94016 +291571,Macbook Pro Laptop,1,1700.0,2019-11-17 20:40:00,147 Hickory St, Atlanta,GA,30301 +291572,AA Batteries (4-pack),1,3.84,2019-11-02 22:18:00,191 4th St, Los Angeles,CA,90001 +291573,iPhone,1,700.0,2019-11-16 12:27:00,884 Forest St, San Francisco,CA,94016 +291573,Lightning Charging Cable,1,14.95,2019-11-16 12:27:00,884 Forest St, San Francisco,CA,94016 +291574,AA Batteries (4-pack),2,3.84,2019-11-19 22:06:00,268 Jefferson St, Los Angeles,CA,90001 +291575,USB-C Charging Cable,1,11.95,2019-11-21 20:00:00,514 13th St, San Francisco,CA,94016 +291576,AA Batteries (4-pack),1,3.84,2019-11-17 09:21:00,318 Forest St, Atlanta,GA,30301 +291577,Wired Headphones,2,11.99,2019-11-03 18:24:00,416 Maple St, Boston,MA,02215 +291578,AA Batteries (4-pack),2,3.84,2019-11-17 10:35:00,243 Spruce St, Atlanta,GA,30301 +291579,Flatscreen TV,1,300.0,2019-11-12 14:47:00,358 11th St, New York City,NY,10001 +291580,ThinkPad Laptop,1,999.99,2019-11-12 18:05:00,8 South St, New York City,NY,10001 +291580,AAA Batteries (4-pack),1,2.99,2019-11-12 18:05:00,8 South St, New York City,NY,10001 +291581,27in 4K Gaming Monitor,1,389.99,2019-11-27 22:21:00,627 Jackson St, Austin,TX,73301 +291582,AA Batteries (4-pack),1,3.84,2019-11-26 15:46:00,211 Spruce St, Portland,ME,04101 +291583,AA Batteries (4-pack),1,3.84,2019-11-02 17:00:00,378 Highland St, Dallas,TX,75001 +291584,Macbook Pro Laptop,1,1700.0,2019-11-21 14:53:00,140 Willow St, San Francisco,CA,94016 +291585,AAA Batteries (4-pack),1,2.99,2019-11-16 13:22:00,4 Chestnut St, Seattle,WA,98101 +291586,27in 4K Gaming Monitor,1,389.99,2019-11-21 16:21:00,497 Jackson St, New York City,NY,10001 +291587,AAA Batteries (4-pack),1,2.99,2019-11-21 12:49:00,329 8th St, Portland,ME,04101 +291588,Wired Headphones,2,11.99,2019-11-11 09:40:00,43 Highland St, Portland,ME,04101 +291589,Wired Headphones,1,11.99,2019-11-17 20:50:00,302 Cedar St, Boston,MA,02215 +291590,USB-C Charging Cable,1,11.95,2019-11-30 10:25:00,997 Johnson St, New York City,NY,10001 +291591,27in FHD Monitor,1,149.99,2019-11-21 09:45:00,539 12th St, Atlanta,GA,30301 +291592,27in FHD Monitor,1,149.99,2019-11-05 12:04:00,822 Lakeview St, Austin,TX,73301 +291593,Lightning Charging Cable,1,14.95,2019-11-02 18:13:00,505 Jefferson St, Los Angeles,CA,90001 +291594,Lightning Charging Cable,1,14.95,2019-11-15 22:28:00,70 Highland St, Atlanta,GA,30301 +291595,Apple Airpods Headphones,1,150.0,2019-11-25 23:12:00,682 4th St, New York City,NY,10001 +291596,Lightning Charging Cable,1,14.95,2019-11-25 20:06:00,958 2nd St, San Francisco,CA,94016 +291597,Apple Airpods Headphones,1,150.0,2019-11-12 18:59:00,616 12th St, Los Angeles,CA,90001 +291598,Lightning Charging Cable,1,14.95,2019-11-08 01:08:00,929 4th St, New York City,NY,10001 +291599,AAA Batteries (4-pack),1,2.99,2019-11-24 17:33:00,850 Lake St, San Francisco,CA,94016 +291600,Google Phone,1,600.0,2019-11-17 10:48:00,888 Forest St, Atlanta,GA,30301 +291601,Apple Airpods Headphones,1,150.0,2019-11-04 14:02:00,139 Pine St, Dallas,TX,75001 +291602,USB-C Charging Cable,1,11.95,2019-11-05 11:15:00,81 River St, Boston,MA,02215 +291603,AA Batteries (4-pack),1,3.84,2019-11-14 15:16:00,175 Jefferson St, Boston,MA,02215 +291604,Lightning Charging Cable,1,14.95,2019-11-21 11:31:00,15 5th St, San Francisco,CA,94016 +291605,AAA Batteries (4-pack),2,2.99,2019-11-01 11:59:00,125 Hickory St, Dallas,TX,75001 +291606,Bose SoundSport Headphones,1,99.99,2019-11-30 10:36:00,741 Cherry St, San Francisco,CA,94016 +291607,Wired Headphones,1,11.99,2019-11-27 17:52:00,943 2nd St, San Francisco,CA,94016 +291608,20in Monitor,1,109.99,2019-11-01 20:49:00,637 West St, Austin,TX,73301 +291609,Macbook Pro Laptop,1,1700.0,2019-11-09 16:57:00,455 4th St, Boston,MA,02215 +291610,Bose SoundSport Headphones,1,99.99,2019-11-07 22:58:00,976 12th St, Portland,OR,97035 +291611,AAA Batteries (4-pack),1,2.99,2019-11-16 16:00:00,447 Lakeview St, Seattle,WA,98101 +291612,Vareebadd Phone,1,400.0,2019-11-10 18:20:00,915 South St, Austin,TX,73301 +291613,Flatscreen TV,1,300.0,2019-11-06 21:44:00,388 Park St, Dallas,TX,75001 +291614,Lightning Charging Cable,1,14.95,2019-11-24 17:53:00,521 Park St, San Francisco,CA,94016 +291615,AAA Batteries (4-pack),2,2.99,2019-11-20 11:40:00,659 Lakeview St, San Francisco,CA,94016 +291616,AA Batteries (4-pack),1,3.84,2019-11-27 18:34:00,472 Lakeview St, Dallas,TX,75001 +291617,34in Ultrawide Monitor,1,379.99,2019-11-28 16:18:00,197 Main St, Portland,OR,97035 +291618,Bose SoundSport Headphones,1,99.99,2019-11-25 23:40:00,227 Lincoln St, Boston,MA,02215 +291619,Wired Headphones,1,11.99,2019-11-09 14:17:00,273 Forest St, Atlanta,GA,30301 +291620,AA Batteries (4-pack),1,3.84,2019-11-28 18:07:00,51 Center St, Atlanta,GA,30301 +291621,20in Monitor,1,109.99,2019-11-26 11:50:00,931 8th St, San Francisco,CA,94016 +291622,Apple Airpods Headphones,1,150.0,2019-11-27 14:10:00,457 Hickory St, Boston,MA,02215 +291623,AA Batteries (4-pack),1,3.84,2019-11-06 16:54:00,920 10th St, San Francisco,CA,94016 +291624,Wired Headphones,1,11.99,2019-11-08 16:30:00,784 Cedar St, San Francisco,CA,94016 +291625,USB-C Charging Cable,2,11.95,2019-11-01 11:52:00,393 Cedar St, Los Angeles,CA,90001 +291626,AA Batteries (4-pack),1,3.84,2019-11-15 10:55:00,846 Main St, Boston,MA,02215 +291627,Wired Headphones,1,11.99,2019-11-23 14:36:00,20 Walnut St, Los Angeles,CA,90001 +291628,Wired Headphones,1,11.99,2019-11-26 08:16:00,94 Willow St, San Francisco,CA,94016 +291629,Flatscreen TV,1,300.0,2019-11-13 19:40:00,375 11th St, Los Angeles,CA,90001 +291630,AA Batteries (4-pack),1,3.84,2019-11-21 21:25:00,758 Hill St, San Francisco,CA,94016 +291631,Google Phone,1,600.0,2019-11-23 19:43:00,465 Pine St, Seattle,WA,98101 +291632,Flatscreen TV,1,300.0,2019-11-08 21:49:00,614 Highland St, Austin,TX,73301 +291633,Lightning Charging Cable,1,14.95,2019-11-03 09:53:00,855 Wilson St, Austin,TX,73301 +291634,AAA Batteries (4-pack),2,2.99,2019-11-23 05:30:00,315 Chestnut St, Portland,OR,97035 +291635,Wired Headphones,1,11.99,2019-11-30 21:30:00,512 4th St, Seattle,WA,98101 +291636,Wired Headphones,1,11.99,2019-11-01 10:36:00,572 7th St, San Francisco,CA,94016 +291636,AAA Batteries (4-pack),1,2.99,2019-11-01 10:36:00,572 7th St, San Francisco,CA,94016 +291637,Wired Headphones,1,11.99,2019-11-30 15:20:00,28 Lincoln St, New York City,NY,10001 +291638,Flatscreen TV,1,300.0,2019-11-25 11:00:00,238 Washington St, Los Angeles,CA,90001 +291639,Wired Headphones,1,11.99,2019-11-13 13:10:00,293 Adams St, Los Angeles,CA,90001 +291640,Apple Airpods Headphones,1,150.0,2019-11-25 12:30:00,708 Walnut St, San Francisco,CA,94016 +291641,USB-C Charging Cable,1,11.95,2019-11-01 14:20:00,838 Main St, Atlanta,GA,30301 +291642,Wired Headphones,1,11.99,2019-11-19 13:07:00,922 Chestnut St, New York City,NY,10001 +291643,AAA Batteries (4-pack),2,2.99,2019-11-28 16:46:00,510 Chestnut St, Atlanta,GA,30301 +291644,AA Batteries (4-pack),1,3.84,2019-11-03 12:57:00,992 River St, Los Angeles,CA,90001 +291645,AAA Batteries (4-pack),1,2.99,2019-11-24 10:11:00,69 5th St, Los Angeles,CA,90001 +291646,USB-C Charging Cable,1,11.95,2019-11-04 19:50:00,680 5th St, Los Angeles,CA,90001 +291647,20in Monitor,1,109.99,2019-11-01 06:30:00,540 Hill St, San Francisco,CA,94016 +291648,USB-C Charging Cable,1,11.95,2019-11-17 01:42:00,296 Madison St, New York City,NY,10001 +291649,Bose SoundSport Headphones,1,99.99,2019-11-17 11:05:00,37 Hickory St, Los Angeles,CA,90001 +291650,27in 4K Gaming Monitor,1,389.99,2019-11-27 21:11:00,322 Main St, Austin,TX,73301 +291651,USB-C Charging Cable,1,11.95,2019-11-09 08:29:00,525 Chestnut St, Los Angeles,CA,90001 +291652,Google Phone,1,600.0,2019-11-05 21:23:00,880 11th St, Dallas,TX,75001 +291653,Apple Airpods Headphones,1,150.0,2019-11-27 18:28:00,924 Chestnut St, Los Angeles,CA,90001 +291654,AAA Batteries (4-pack),1,2.99,2019-11-15 19:08:00,217 Elm St, San Francisco,CA,94016 +291655,Wired Headphones,1,11.99,2019-11-04 10:32:00,205 Lincoln St, San Francisco,CA,94016 +291656,Bose SoundSport Headphones,1,99.99,2019-11-09 11:18:00,976 Cherry St, San Francisco,CA,94016 +291657,AAA Batteries (4-pack),2,2.99,2019-11-13 14:54:00,618 6th St, Los Angeles,CA,90001 +291658,USB-C Charging Cable,1,11.95,2019-11-06 00:13:00,136 4th St, San Francisco,CA,94016 +291659,Macbook Pro Laptop,1,1700.0,2019-11-09 17:01:00,190 Walnut St, Austin,TX,73301 +291660,Wired Headphones,1,11.99,2019-11-04 16:33:00,713 Jackson St, Los Angeles,CA,90001 +291661,AA Batteries (4-pack),1,3.84,2019-11-01 16:29:00,188 Ridge St, Portland,OR,97035 +291662,AAA Batteries (4-pack),1,2.99,2019-11-20 19:41:00,95 Lake St, New York City,NY,10001 +291663,USB-C Charging Cable,1,11.95,2019-11-09 20:44:00,992 Willow St, Boston,MA,02215 +291664,Apple Airpods Headphones,1,150.0,2019-11-02 22:19:00,97 Cherry St, Los Angeles,CA,90001 +291665,Wired Headphones,1,11.99,2019-11-26 08:10:00,631 Hill St, Atlanta,GA,30301 +291666,27in FHD Monitor,1,149.99,2019-11-26 20:13:00,954 10th St, San Francisco,CA,94016 +291667,Lightning Charging Cable,1,14.95,2019-11-02 20:31:00,492 Pine St, San Francisco,CA,94016 +291668,27in 4K Gaming Monitor,1,389.99,2019-11-22 10:46:00,793 11th St, San Francisco,CA,94016 +291669,Apple Airpods Headphones,1,150.0,2019-11-25 20:57:00,97 14th St, Los Angeles,CA,90001 +291670,AA Batteries (4-pack),1,3.84,2019-11-21 01:14:00,8 10th St, Dallas,TX,75001 +291671,AAA Batteries (4-pack),1,2.99,2019-11-27 14:44:00,589 Church St, Austin,TX,73301 +291671,Apple Airpods Headphones,1,150.0,2019-11-27 14:44:00,589 Church St, Austin,TX,73301 +291672,Bose SoundSport Headphones,1,99.99,2019-11-22 20:35:00,706 4th St, New York City,NY,10001 +291673,Lightning Charging Cable,1,14.95,2019-11-24 07:38:00,26 Adams St, New York City,NY,10001 +291674,Apple Airpods Headphones,1,150.0,2019-11-01 15:48:00,689 North St, Los Angeles,CA,90001 +291675,Wired Headphones,1,11.99,2019-11-09 09:50:00,470 4th St, Seattle,WA,98101 +291676,Apple Airpods Headphones,1,150.0,2019-11-13 10:24:00,854 Washington St, Dallas,TX,75001 +291677,iPhone,1,700.0,2019-11-03 07:57:00,957 Lake St, Boston,MA,02215 +291678,AA Batteries (4-pack),1,3.84,2019-11-07 15:31:00,67 Jackson St, New York City,NY,10001 +291679,USB-C Charging Cable,1,11.95,2019-11-19 10:06:00,314 Chestnut St, New York City,NY,10001 +291680,Wired Headphones,1,11.99,2019-11-09 07:34:00,512 Sunset St, Dallas,TX,75001 +291681,AAA Batteries (4-pack),1,2.99,2019-11-09 18:03:00,67 North St, Atlanta,GA,30301 +291682,iPhone,1,700.0,2019-11-19 08:30:00,214 Dogwood St, New York City,NY,10001 +291682,Lightning Charging Cable,1,14.95,2019-11-19 08:30:00,214 Dogwood St, New York City,NY,10001 +291683,Apple Airpods Headphones,1,150.0,2019-11-04 14:32:00,562 Hickory St, San Francisco,CA,94016 +291684,AAA Batteries (4-pack),2,2.99,2019-11-12 14:44:00,246 Spruce St, Atlanta,GA,30301 +291685,27in FHD Monitor,1,149.99,2019-11-01 13:14:00,681 Dogwood St, Boston,MA,02215 +291686,27in 4K Gaming Monitor,1,389.99,2019-11-30 15:43:00,640 Cherry St, San Francisco,CA,94016 +291687,AA Batteries (4-pack),1,3.84,2019-11-22 17:38:00,575 Cherry St, Portland,OR,97035 +291688,ThinkPad Laptop,1,999.99,2019-11-01 08:51:00,888 2nd St, San Francisco,CA,94016 +291689,ThinkPad Laptop,1,999.99,2019-11-21 19:12:00,339 6th St, Austin,TX,73301 +291690,Bose SoundSport Headphones,1,99.99,2019-11-29 15:15:00,396 Cedar St, San Francisco,CA,94016 +291691,ThinkPad Laptop,1,999.99,2019-11-06 15:15:00,386 South St, Boston,MA,02215 +291692,Apple Airpods Headphones,1,150.0,2019-11-15 17:41:00,214 Jackson St, San Francisco,CA,94016 +291693,27in FHD Monitor,1,149.99,2019-11-15 14:51:00,191 2nd St, New York City,NY,10001 +291694,AA Batteries (4-pack),2,3.84,2019-11-19 16:59:00,879 5th St, San Francisco,CA,94016 +291695,27in FHD Monitor,1,149.99,2019-11-05 18:42:00,749 North St, Atlanta,GA,30301 +291696,AA Batteries (4-pack),1,3.84,2019-11-22 09:48:00,247 Jackson St, Seattle,WA,98101 +291697,AA Batteries (4-pack),2,3.84,2019-11-06 20:33:00,387 Spruce St, Atlanta,GA,30301 +291698,Apple Airpods Headphones,1,150.0,2019-11-12 17:36:00,873 Johnson St, San Francisco,CA,94016 +291699,Lightning Charging Cable,1,14.95,2019-11-27 13:21:00,954 Church St, San Francisco,CA,94016 +291699,Wired Headphones,2,11.99,2019-11-27 13:21:00,954 Church St, San Francisco,CA,94016 +291700,Bose SoundSport Headphones,1,99.99,2019-11-19 17:36:00,78 8th St, Dallas,TX,75001 +291701,Vareebadd Phone,1,400.0,2019-11-23 13:35:00,900 Forest St, Los Angeles,CA,90001 +291702,USB-C Charging Cable,1,11.95,2019-11-19 10:31:00,410 11th St, Portland,OR,97035 +291703,Wired Headphones,1,11.99,2019-11-13 16:02:00,577 Lincoln St, Los Angeles,CA,90001 +291704,USB-C Charging Cable,1,11.95,2019-11-03 07:18:00,868 14th St, Seattle,WA,98101 +291705,Lightning Charging Cable,2,14.95,2019-11-09 20:59:00,285 Sunset St, Atlanta,GA,30301 +291706,AAA Batteries (4-pack),2,2.99,2019-11-27 00:40:00,76 Cedar St, San Francisco,CA,94016 +291707,Wired Headphones,1,11.99,2019-11-16 20:02:00,510 13th St, Austin,TX,73301 +291708,Wired Headphones,1,11.99,2019-11-04 20:55:00,706 12th St, New York City,NY,10001 +291709,AAA Batteries (4-pack),1,2.99,2019-11-25 13:19:00,662 12th St, Atlanta,GA,30301 +291710,iPhone,1,700.0,2019-11-09 18:23:00,583 West St, San Francisco,CA,94016 +291711,AA Batteries (4-pack),1,3.84,2019-11-04 22:50:00,244 West St, Boston,MA,02215 +291712,ThinkPad Laptop,1,999.99,2019-11-10 10:49:00,615 Lakeview St, Atlanta,GA,30301 +291713,AA Batteries (4-pack),2,3.84,2019-11-25 16:18:00,877 12th St, Atlanta,GA,30301 +291714,27in FHD Monitor,1,149.99,2019-11-27 12:53:00,824 South St, Los Angeles,CA,90001 +291715,Bose SoundSport Headphones,1,99.99,2019-11-05 21:58:00,193 Adams St, Los Angeles,CA,90001 +291716,Bose SoundSport Headphones,1,99.99,2019-11-08 16:33:00,624 Chestnut St, San Francisco,CA,94016 +291717,iPhone,1,700.0,2019-11-20 10:35:00,254 Washington St, Dallas,TX,75001 +291718,AAA Batteries (4-pack),1,2.99,2019-11-17 13:33:00,664 Washington St, Boston,MA,02215 +291719,USB-C Charging Cable,1,11.95,2019-11-26 09:39:00,194 Elm St, New York City,NY,10001 +291720,AAA Batteries (4-pack),1,2.99,2019-11-17 17:22:00,26 Cherry St, Atlanta,GA,30301 +291721,AAA Batteries (4-pack),2,2.99,2019-11-12 14:32:00,282 Center St, Los Angeles,CA,90001 +291722,Lightning Charging Cable,1,14.95,2019-11-27 20:22:00,43 8th St, Boston,MA,02215 +291723,27in FHD Monitor,1,149.99,2019-11-21 11:42:00,326 Dogwood St, San Francisco,CA,94016 +291724,USB-C Charging Cable,1,11.95,2019-11-21 04:26:00,368 Willow St, San Francisco,CA,94016 +291725,USB-C Charging Cable,1,11.95,2019-11-20 15:58:00,233 Madison St, Boston,MA,02215 +291726,USB-C Charging Cable,1,11.95,2019-11-21 16:24:00,314 12th St, San Francisco,CA,94016 +291727,Apple Airpods Headphones,1,150.0,2019-11-04 16:06:00,749 Pine St, Los Angeles,CA,90001 +291728,Lightning Charging Cable,1,14.95,2019-11-15 12:57:00,865 8th St, Los Angeles,CA,90001 +291729,Wired Headphones,1,11.99,2019-11-08 16:00:00,824 Lakeview St, New York City,NY,10001 +291730,27in 4K Gaming Monitor,1,389.99,2019-11-25 11:29:00,650 North St, Dallas,TX,75001 +291731,AA Batteries (4-pack),1,3.84,2019-11-11 17:55:00,996 Cherry St, Dallas,TX,75001 +291732,Vareebadd Phone,1,400.0,2019-11-19 07:49:00,534 Adams St, Los Angeles,CA,90001 +291732,USB-C Charging Cable,1,11.95,2019-11-19 07:49:00,534 Adams St, Los Angeles,CA,90001 +291733,AA Batteries (4-pack),2,3.84,2019-11-10 13:45:00,143 9th St, San Francisco,CA,94016 +291734,iPhone,1,700.0,2019-11-11 16:32:00,753 Chestnut St, San Francisco,CA,94016 +291735,USB-C Charging Cable,1,11.95,2019-11-23 19:35:00,433 9th St, San Francisco,CA,94016 +291736,AAA Batteries (4-pack),1,2.99,2019-11-18 20:49:00,118 Center St, San Francisco,CA,94016 +291737,AA Batteries (4-pack),1,3.84,2019-11-02 16:08:00,482 Wilson St, San Francisco,CA,94016 +291738,27in FHD Monitor,1,149.99,2019-11-19 12:10:00,952 Maple St, Los Angeles,CA,90001 +291739,iPhone,1,700.0,2019-11-25 16:49:00,342 Adams St, Los Angeles,CA,90001 +291740,Wired Headphones,2,11.99,2019-11-11 17:23:00,529 2nd St, Los Angeles,CA,90001 +291741,AA Batteries (4-pack),1,3.84,2019-11-26 19:51:00,108 Hickory St, New York City,NY,10001 +291742,AAA Batteries (4-pack),1,2.99,2019-11-13 13:02:00,823 Forest St, Dallas,TX,75001 +291743,Macbook Pro Laptop,1,1700.0,2019-11-07 18:37:00,589 10th St, Seattle,WA,98101 +291744,USB-C Charging Cable,1,11.95,2019-11-25 06:32:00,331 Maple St, Portland,OR,97035 +291745,27in FHD Monitor,1,149.99,2019-11-18 00:45:00,61 Cedar St, Los Angeles,CA,90001 +291746,Flatscreen TV,1,300.0,2019-11-18 21:35:00,560 Sunset St, San Francisco,CA,94016 +291747,34in Ultrawide Monitor,1,379.99,2019-11-01 21:17:00,726 7th St, Los Angeles,CA,90001 +291748,AA Batteries (4-pack),1,3.84,2019-11-17 23:34:00,164 Sunset St, Atlanta,GA,30301 +291749,AAA Batteries (4-pack),1,2.99,2019-11-12 23:18:00,912 Hill St, San Francisco,CA,94016 +291750,Wired Headphones,1,11.99,2019-11-07 20:42:00,732 Walnut St, Seattle,WA,98101 +291751,USB-C Charging Cable,1,11.95,2019-11-13 20:21:00,552 Johnson St, Portland,ME,04101 +291752,Lightning Charging Cable,1,14.95,2019-11-08 07:28:00,242 Ridge St, New York City,NY,10001 +291753,USB-C Charging Cable,1,11.95,2019-11-17 16:42:00,827 West St, Seattle,WA,98101 +291754,Bose SoundSport Headphones,1,99.99,2019-11-25 12:33:00,720 Jackson St, Boston,MA,02215 +291755,AAA Batteries (4-pack),2,2.99,2019-11-12 16:45:00,722 8th St, Seattle,WA,98101 +291756,iPhone,1,700.0,2019-11-07 19:24:00,724 Willow St, San Francisco,CA,94016 +291757,Wired Headphones,1,11.99,2019-11-03 22:11:00,667 1st St, Los Angeles,CA,90001 +291758,ThinkPad Laptop,1,999.99,2019-11-12 12:00:00,89 Elm St, San Francisco,CA,94016 +291759,34in Ultrawide Monitor,1,379.99,2019-11-22 11:17:00,147 Ridge St, Los Angeles,CA,90001 +291760,Apple Airpods Headphones,1,150.0,2019-11-20 12:30:00,327 River St, Boston,MA,02215 +291761,USB-C Charging Cable,1,11.95,2019-11-06 12:40:00,562 West St, Atlanta,GA,30301 +291762,Wired Headphones,1,11.99,2019-11-15 16:32:00,161 Main St, Boston,MA,02215 +291763,AA Batteries (4-pack),1,3.84,2019-11-15 08:38:00,691 13th St, Austin,TX,73301 +291764,AA Batteries (4-pack),1,3.84,2019-11-06 12:51:00,377 Cherry St, Los Angeles,CA,90001 +291765,Wired Headphones,1,11.99,2019-11-09 14:26:00,231 Johnson St, New York City,NY,10001 +291766,20in Monitor,1,109.99,2019-11-30 00:13:00,134 14th St, Dallas,TX,75001 +291767,USB-C Charging Cable,1,11.95,2019-11-08 22:23:00,195 River St, San Francisco,CA,94016 +291768,27in 4K Gaming Monitor,1,389.99,2019-11-25 09:39:00,919 9th St, Atlanta,GA,30301 +291769,AAA Batteries (4-pack),1,2.99,2019-11-10 19:16:00,726 Forest St, Los Angeles,CA,90001 +291770,Wired Headphones,1,11.99,2019-11-21 14:46:00,913 Johnson St, San Francisco,CA,94016 +291771,Macbook Pro Laptop,1,1700.0,2019-11-27 15:45:00,966 West St, San Francisco,CA,94016 +291772,AAA Batteries (4-pack),1,2.99,2019-11-13 15:46:00,326 River St, San Francisco,CA,94016 +291773,AA Batteries (4-pack),1,3.84,2019-11-30 10:59:00,122 Highland St, San Francisco,CA,94016 +291774,AA Batteries (4-pack),1,3.84,2019-11-02 15:17:00,207 Wilson St, Seattle,WA,98101 +291775,AA Batteries (4-pack),1,3.84,2019-11-07 14:25:00,373 Lakeview St, San Francisco,CA,94016 +291776,USB-C Charging Cable,1,11.95,2019-11-22 12:53:00,83 Elm St, Boston,MA,02215 +291777,Lightning Charging Cable,1,14.95,2019-11-07 09:32:00,540 2nd St, New York City,NY,10001 +291778,ThinkPad Laptop,1,999.99,2019-11-20 20:14:00,19 6th St, Seattle,WA,98101 +291778,27in FHD Monitor,1,149.99,2019-11-20 20:14:00,19 6th St, Seattle,WA,98101 +291779,27in 4K Gaming Monitor,1,389.99,2019-11-22 19:14:00,395 Cherry St, Seattle,WA,98101 +291780,20in Monitor,1,109.99,2019-11-13 14:45:00,94 Lakeview St, Boston,MA,02215 +291781,27in FHD Monitor,1,149.99,2019-11-30 12:35:00,770 Meadow St, Los Angeles,CA,90001 +291782,Apple Airpods Headphones,1,150.0,2019-11-20 13:28:00,879 Cherry St, Seattle,WA,98101 +291783,Bose SoundSport Headphones,1,99.99,2019-11-09 23:46:00,340 Lake St, San Francisco,CA,94016 +291784,Lightning Charging Cable,1,14.95,2019-11-26 21:52:00,691 Cedar St, New York City,NY,10001 +291785,USB-C Charging Cable,1,11.95,2019-11-15 13:55:00,905 13th St, Seattle,WA,98101 +291786,Wired Headphones,1,11.99,2019-11-29 19:42:00,924 1st St, Atlanta,GA,30301 +291787,USB-C Charging Cable,1,11.95,2019-11-13 12:55:00,377 Walnut St, New York City,NY,10001 +291788,AAA Batteries (4-pack),1,2.99,2019-11-15 18:33:00,576 6th St, San Francisco,CA,94016 +291789,USB-C Charging Cable,1,11.95,2019-11-01 16:26:00,928 Walnut St, Portland,OR,97035 +291790,Bose SoundSport Headphones,1,99.99,2019-11-16 16:40:00,15 14th St, Boston,MA,02215 +291791,Apple Airpods Headphones,1,150.0,2019-11-08 11:32:00,759 9th St, Los Angeles,CA,90001 +291792,34in Ultrawide Monitor,1,379.99,2019-11-22 20:51:00,216 9th St, San Francisco,CA,94016 +291793,AAA Batteries (4-pack),2,2.99,2019-11-08 09:34:00,665 7th St, New York City,NY,10001 +291794,Macbook Pro Laptop,1,1700.0,2019-11-29 13:14:00,856 Highland St, Boston,MA,02215 +291795,Lightning Charging Cable,1,14.95,2019-11-02 09:20:00,318 River St, Atlanta,GA,30301 +291796,AAA Batteries (4-pack),1,2.99,2019-11-22 11:34:00,889 Jefferson St, San Francisco,CA,94016 +291797,Google Phone,1,600.0,2019-11-04 16:45:00,194 Cedar St, Atlanta,GA,30301 +291798,Wired Headphones,1,11.99,2019-11-18 16:30:00,545 Highland St, Austin,TX,73301 +291799,USB-C Charging Cable,1,11.95,2019-11-21 01:28:00,70 Hill St, Dallas,TX,75001 +291800,Google Phone,1,600.0,2019-11-10 14:48:00,768 Jefferson St, Seattle,WA,98101 +291800,USB-C Charging Cable,1,11.95,2019-11-10 14:48:00,768 Jefferson St, Seattle,WA,98101 +291801,27in 4K Gaming Monitor,1,389.99,2019-11-02 16:49:00,644 Lakeview St, Los Angeles,CA,90001 +291802,27in FHD Monitor,1,149.99,2019-11-10 17:54:00,769 Pine St, New York City,NY,10001 +291803,Macbook Pro Laptop,1,1700.0,2019-11-12 17:39:00,747 14th St, San Francisco,CA,94016 +291804,AA Batteries (4-pack),4,3.84,2019-11-16 13:22:00,753 5th St, San Francisco,CA,94016 +291805,Wired Headphones,1,11.99,2019-11-13 03:46:00,599 Jackson St, San Francisco,CA,94016 +291806,USB-C Charging Cable,1,11.95,2019-11-02 21:11:00,21 13th St, Los Angeles,CA,90001 +291807,Lightning Charging Cable,2,14.95,2019-11-05 11:39:00,471 10th St, Boston,MA,02215 +291808,USB-C Charging Cable,2,11.95,2019-11-30 20:21:00,344 Lincoln St, Austin,TX,73301 +291809,AAA Batteries (4-pack),1,2.99,2019-11-25 04:00:00,548 2nd St, Boston,MA,02215 +291810,Google Phone,1,600.0,2019-11-16 23:48:00,810 12th St, New York City,NY,10001 +291810,Wired Headphones,1,11.99,2019-11-16 23:48:00,810 12th St, New York City,NY,10001 +291811,Wired Headphones,1,11.99,2019-11-18 20:05:00,42 Pine St, New York City,NY,10001 +291812,Bose SoundSport Headphones,1,99.99,2019-11-27 16:59:00,184 Lakeview St, Austin,TX,73301 +291813,AA Batteries (4-pack),1,3.84,2019-11-20 12:45:00,443 7th St, San Francisco,CA,94016 +291814,Google Phone,1,600.0,2019-11-24 15:11:00,833 Hickory St, Seattle,WA,98101 +291815,Google Phone,1,600.0,2019-11-10 09:52:00,211 Chestnut St, San Francisco,CA,94016 +291816,Lightning Charging Cable,1,14.95,2019-11-14 10:39:00,469 Park St, Los Angeles,CA,90001 +291817,34in Ultrawide Monitor,1,379.99,2019-11-02 14:50:00,515 Dogwood St, San Francisco,CA,94016 +291818,Wired Headphones,1,11.99,2019-11-24 11:14:00,217 2nd St, Boston,MA,02215 +291819,AA Batteries (4-pack),1,3.84,2019-11-11 21:10:00,940 Madison St, Boston,MA,02215 +291820,AAA Batteries (4-pack),2,2.99,2019-11-23 12:18:00,144 Meadow St, San Francisco,CA,94016 +291821,20in Monitor,1,109.99,2019-11-02 11:07:00,674 Hill St, Seattle,WA,98101 +291822,USB-C Charging Cable,1,11.95,2019-11-17 08:11:00,546 Park St, Dallas,TX,75001 +291823,27in 4K Gaming Monitor,1,389.99,2019-11-14 13:00:00,96 Main St, New York City,NY,10001 +291824,Apple Airpods Headphones,1,150.0,2019-11-10 13:09:00,250 7th St, Portland,ME,04101 +291825,AAA Batteries (4-pack),1,2.99,2019-11-15 17:16:00,173 Spruce St, Los Angeles,CA,90001 +291826,AA Batteries (4-pack),3,3.84,2019-11-06 20:48:00,385 Johnson St, Austin,TX,73301 +291827,Wired Headphones,3,11.99,2019-11-03 22:37:00,434 Walnut St, San Francisco,CA,94016 +291828,Apple Airpods Headphones,1,150.0,2019-11-07 16:21:00,767 West St, San Francisco,CA,94016 +291829,AA Batteries (4-pack),1,3.84,2019-11-05 01:24:00,472 North St, San Francisco,CA,94016 +291830,Wired Headphones,1,11.99,2019-11-20 10:01:00,531 Wilson St, Los Angeles,CA,90001 +291831,Bose SoundSport Headphones,2,99.99,2019-11-11 23:13:00,215 Highland St, San Francisco,CA,94016 +291832,Lightning Charging Cable,1,14.95,2019-11-28 10:30:00,83 Pine St, Atlanta,GA,30301 +291833,Lightning Charging Cable,1,14.95,2019-11-22 00:59:00,378 Church St, New York City,NY,10001 +291834,USB-C Charging Cable,1,11.95,2019-11-25 20:23:00,373 Washington St, San Francisco,CA,94016 +291835,USB-C Charging Cable,1,11.95,2019-11-20 19:53:00,145 Hickory St, Atlanta,GA,30301 +291836,Apple Airpods Headphones,1,150.0,2019-11-20 11:36:00,243 6th St, Atlanta,GA,30301 +291837,AAA Batteries (4-pack),2,2.99,2019-11-24 20:40:00,389 14th St, San Francisco,CA,94016 +291838,Bose SoundSport Headphones,1,99.99,2019-11-09 14:35:00,701 South St, Atlanta,GA,30301 +291838,Google Phone,1,600.0,2019-11-09 14:35:00,701 South St, Atlanta,GA,30301 +291839,USB-C Charging Cable,1,11.95,2019-11-18 11:15:00,935 12th St, San Francisco,CA,94016 +291840,AA Batteries (4-pack),1,3.84,2019-11-18 11:43:00,579 Madison St, New York City,NY,10001 +291841,27in 4K Gaming Monitor,1,389.99,2019-11-19 20:51:00,46 Lincoln St, Atlanta,GA,30301 +291842,USB-C Charging Cable,1,11.95,2019-11-19 19:57:00,623 Lincoln St, San Francisco,CA,94016 +291843,Lightning Charging Cable,1,14.95,2019-11-23 20:39:00,638 Lakeview St, San Francisco,CA,94016 +291844,Wired Headphones,1,11.99,2019-11-13 01:27:00,169 Dogwood St, Boston,MA,02215 +291845,Wired Headphones,1,11.99,2019-11-06 13:46:00,534 Willow St, San Francisco,CA,94016 +291846,Google Phone,1,600.0,2019-11-24 18:39:00,409 5th St, Boston,MA,02215 +291846,USB-C Charging Cable,1,11.95,2019-11-24 18:39:00,409 5th St, Boston,MA,02215 +291847,USB-C Charging Cable,1,11.95,2019-11-10 10:30:00,836 Wilson St, Portland,OR,97035 +291848,Apple Airpods Headphones,1,150.0,2019-11-01 10:36:00,984 9th St, San Francisco,CA,94016 +291849,Lightning Charging Cable,1,14.95,2019-11-19 19:27:00,904 11th St, Portland,OR,97035 +291850,Flatscreen TV,1,300.0,2019-11-19 15:19:00,784 7th St, Los Angeles,CA,90001 +291851,34in Ultrawide Monitor,1,379.99,2019-11-28 18:30:00,989 South St, Los Angeles,CA,90001 +291852,Lightning Charging Cable,1,14.95,2019-11-12 08:58:00,531 Main St, San Francisco,CA,94016 +291853,Lightning Charging Cable,1,14.95,2019-11-02 19:16:00,720 Ridge St, Dallas,TX,75001 +291854,AA Batteries (4-pack),1,3.84,2019-11-27 22:12:00,830 5th St, Los Angeles,CA,90001 +291855,iPhone,1,700.0,2019-11-05 23:40:00,67 Jackson St, Atlanta,GA,30301 +291856,Apple Airpods Headphones,1,150.0,2019-11-30 15:59:00,844 8th St, Austin,TX,73301 +291857,AA Batteries (4-pack),1,3.84,2019-11-13 00:44:00,759 Jackson St, Boston,MA,02215 +291858,AA Batteries (4-pack),1,3.84,2019-11-08 16:00:00,999 Park St, San Francisco,CA,94016 +291859,USB-C Charging Cable,1,11.95,2019-11-22 10:30:00,173 5th St, Atlanta,GA,30301 +291860,USB-C Charging Cable,1,11.95,2019-11-03 10:38:00,867 Wilson St, San Francisco,CA,94016 +291861,Lightning Charging Cable,1,14.95,2019-11-13 17:34:00,671 Hickory St, San Francisco,CA,94016 +291862,Lightning Charging Cable,1,14.95,2019-11-14 10:57:00,866 Spruce St, San Francisco,CA,94016 +291863,Flatscreen TV,1,300.0,2019-11-28 12:45:00,922 Lincoln St, New York City,NY,10001 +291864,iPhone,1,700.0,2019-11-09 14:12:00,89 Pine St, Dallas,TX,75001 +291865,USB-C Charging Cable,1,11.95,2019-11-04 20:26:00,435 Highland St, Atlanta,GA,30301 +291866,Lightning Charging Cable,1,14.95,2019-11-18 16:32:00,388 Sunset St, Seattle,WA,98101 +291867,20in Monitor,1,109.99,2019-11-15 18:13:00,241 7th St, New York City,NY,10001 +291868,Apple Airpods Headphones,1,150.0,2019-11-25 21:13:00,659 Lincoln St, Los Angeles,CA,90001 +291869,Bose SoundSport Headphones,1,99.99,2019-11-21 13:22:00,674 Center St, Atlanta,GA,30301 +291870,Bose SoundSport Headphones,1,99.99,2019-11-05 11:56:00,743 Jefferson St, Los Angeles,CA,90001 +291871,AA Batteries (4-pack),2,3.84,2019-11-11 17:23:00,227 Cedar St, San Francisco,CA,94016 +291872,Macbook Pro Laptop,1,1700.0,2019-11-30 19:42:00,666 River St, Boston,MA,02215 +291873,AA Batteries (4-pack),1,3.84,2019-11-27 13:03:00,792 Johnson St, Los Angeles,CA,90001 +291874,Wired Headphones,1,11.99,2019-11-20 12:09:00,884 4th St, San Francisco,CA,94016 +291875,Apple Airpods Headphones,1,150.0,2019-11-04 09:14:00,677 Pine St, San Francisco,CA,94016 +291876,27in 4K Gaming Monitor,1,389.99,2019-11-22 13:31:00,864 Highland St, Atlanta,GA,30301 +291877,USB-C Charging Cable,1,11.95,2019-11-06 08:58:00,74 14th St, San Francisco,CA,94016 +291878,34in Ultrawide Monitor,1,379.99,2019-11-07 17:50:00,966 Hickory St, Dallas,TX,75001 +291879,34in Ultrawide Monitor,1,379.99,2019-11-16 12:51:00,775 River St, Portland,OR,97035 +291880,Wired Headphones,1,11.99,2019-11-16 19:40:00,619 Walnut St, San Francisco,CA,94016 +291881,Apple Airpods Headphones,1,150.0,2019-11-06 11:02:00,175 Cherry St, San Francisco,CA,94016 +291882,Bose SoundSport Headphones,1,99.99,2019-11-22 20:46:00,188 8th St, Atlanta,GA,30301 +291883,Lightning Charging Cable,1,14.95,2019-11-22 13:07:00,203 Cherry St, San Francisco,CA,94016 +291884,AAA Batteries (4-pack),1,2.99,2019-11-15 14:35:00,133 Lake St, San Francisco,CA,94016 +291885,27in FHD Monitor,1,149.99,2019-11-01 16:31:00,717 Forest St, San Francisco,CA,94016 +291886,Bose SoundSport Headphones,1,99.99,2019-11-28 10:55:00,640 Pine St, Boston,MA,02215 +291887,Lightning Charging Cable,1,14.95,2019-11-12 21:28:00,199 6th St, Los Angeles,CA,90001 +291888,Bose SoundSport Headphones,1,99.99,2019-11-23 06:39:00,22 Walnut St, San Francisco,CA,94016 +291889,USB-C Charging Cable,2,11.95,2019-11-30 00:40:00,652 Pine St, San Francisco,CA,94016 +291890,Apple Airpods Headphones,1,150.0,2019-11-06 21:20:00,749 Wilson St, San Francisco,CA,94016 +291891,27in 4K Gaming Monitor,1,389.99,2019-11-24 09:50:00,494 5th St, San Francisco,CA,94016 +291892,Bose SoundSport Headphones,1,99.99,2019-11-25 22:04:00,753 Church St, Dallas,TX,75001 +291893,27in FHD Monitor,1,149.99,2019-11-19 18:16:00,80 11th St, New York City,NY,10001 +291894,AA Batteries (4-pack),1,3.84,2019-11-13 15:18:00,480 Sunset St, San Francisco,CA,94016 +291895,Lightning Charging Cable,1,14.95,2019-11-28 14:33:00,471 Walnut St, Boston,MA,02215 +291896,iPhone,1,700.0,2019-11-29 18:15:00,768 West St, Austin,TX,73301 +291897,AA Batteries (4-pack),1,3.84,2019-11-28 05:40:00,431 Sunset St, New York City,NY,10001 +291898,AA Batteries (4-pack),4,3.84,2019-11-02 13:06:00,317 13th St, Boston,MA,02215 +291899,AA Batteries (4-pack),1,3.84,2019-11-14 12:02:00,824 Madison St, New York City,NY,10001 +291900,20in Monitor,1,109.99,2019-11-22 16:14:00,256 Lincoln St, Dallas,TX,75001 +291901,Google Phone,1,600.0,2019-11-06 17:21:00,979 Hill St, Los Angeles,CA,90001 +291902,Apple Airpods Headphones,1,150.0,2019-11-02 21:45:00,430 Sunset St, San Francisco,CA,94016 +291903,Lightning Charging Cable,1,14.95,2019-11-04 15:12:00,781 12th St, Boston,MA,02215 +291904,AAA Batteries (4-pack),1,2.99,2019-11-21 14:23:00,957 Ridge St, San Francisco,CA,94016 +291905,27in FHD Monitor,1,149.99,2019-11-10 20:44:00,388 North St, Portland,OR,97035 +291906,Wired Headphones,1,11.99,2019-11-19 10:48:00,293 Park St, Atlanta,GA,30301 +291907,Macbook Pro Laptop,1,1700.0,2019-11-29 22:20:00,834 6th St, Los Angeles,CA,90001 +291908,Apple Airpods Headphones,1,150.0,2019-11-28 08:08:00,778 Cherry St, San Francisco,CA,94016 +291909,AA Batteries (4-pack),1,3.84,2019-11-29 04:19:00,732 Spruce St, Los Angeles,CA,90001 +291910,AA Batteries (4-pack),1,3.84,2019-11-14 09:18:00,814 13th St, Portland,OR,97035 +291911,Bose SoundSport Headphones,1,99.99,2019-11-04 10:50:00,856 Adams St, Austin,TX,73301 +291912,Apple Airpods Headphones,1,150.0,2019-11-02 12:51:00,882 Lakeview St, New York City,NY,10001 +291913,Lightning Charging Cable,2,14.95,2019-11-19 14:16:00,99 12th St, New York City,NY,10001 +291914,Bose SoundSport Headphones,1,99.99,2019-11-22 08:39:00,938 1st St, Dallas,TX,75001 +291915,Macbook Pro Laptop,1,1700.0,2019-11-17 23:58:00,655 Forest St, San Francisco,CA,94016 +291916,iPhone,1,700.0,2019-11-19 16:12:00,183 1st St, New York City,NY,10001 +291916,Apple Airpods Headphones,1,150.0,2019-11-19 16:12:00,183 1st St, New York City,NY,10001 +291917,Apple Airpods Headphones,1,150.0,2019-11-08 12:05:00,86 2nd St, Los Angeles,CA,90001 +291918,27in 4K Gaming Monitor,1,389.99,2019-11-14 22:17:00,503 2nd St, Portland,OR,97035 +291919,USB-C Charging Cable,1,11.95,2019-11-07 09:45:00,145 Lake St, Los Angeles,CA,90001 +291920,Bose SoundSport Headphones,1,99.99,2019-11-01 22:04:00,240 West St, Los Angeles,CA,90001 +291921,ThinkPad Laptop,1,999.99,2019-11-25 20:20:00,987 Washington St, Atlanta,GA,30301 +291922,Apple Airpods Headphones,1,150.0,2019-11-16 13:54:00,230 Willow St, Boston,MA,02215 +291923,AAA Batteries (4-pack),1,2.99,2019-11-10 21:42:00,580 Center St, San Francisco,CA,94016 +291924,Bose SoundSport Headphones,1,99.99,2019-11-09 07:26:00,490 Maple St, San Francisco,CA,94016 +291925,27in FHD Monitor,1,149.99,2019-11-03 08:31:00,471 5th St, New York City,NY,10001 +291926,20in Monitor,1,109.99,2019-11-17 10:29:00,193 10th St, New York City,NY,10001 +291927,AA Batteries (4-pack),1,3.84,2019-11-27 19:29:00,950 Adams St, Austin,TX,73301 +291928,AA Batteries (4-pack),1,3.84,2019-11-19 16:12:00,450 North St, Dallas,TX,75001 +291929,Apple Airpods Headphones,1,150.0,2019-11-07 10:04:00,862 2nd St, Atlanta,GA,30301 +291930,Wired Headphones,1,11.99,2019-11-01 08:13:00,656 Lake St, Dallas,TX,75001 +291931,USB-C Charging Cable,2,11.95,2019-11-06 07:43:00,50 Washington St, San Francisco,CA,94016 +291932,Flatscreen TV,1,300.0,2019-11-11 17:16:00,340 Center St, San Francisco,CA,94016 +291933,AA Batteries (4-pack),1,3.84,2019-11-25 20:51:00,436 11th St, Atlanta,GA,30301 +291934,Wired Headphones,1,11.99,2019-11-18 22:38:00,950 Cherry St, Los Angeles,CA,90001 +291935,AAA Batteries (4-pack),1,2.99,2019-11-28 19:46:00,712 2nd St, Boston,MA,02215 +291936,Wired Headphones,1,11.99,2019-11-29 21:23:00,787 Willow St, Los Angeles,CA,90001 +291937,Flatscreen TV,1,300.0,2019-11-27 15:08:00,759 14th St, Seattle,WA,98101 +291938,AAA Batteries (4-pack),1,2.99,2019-11-01 12:44:00,955 Washington St, Los Angeles,CA,90001 +291939,Apple Airpods Headphones,1,150.0,2019-11-01 16:32:00,780 8th St, New York City,NY,10001 +291940,iPhone,1,700.0,2019-11-27 22:21:00,148 1st St, Seattle,WA,98101 +291940,Apple Airpods Headphones,1,150.0,2019-11-27 22:21:00,148 1st St, Seattle,WA,98101 +291941,Lightning Charging Cable,1,14.95,2019-11-07 12:05:00,341 Jackson St, New York City,NY,10001 +291942,Macbook Pro Laptop,1,1700.0,2019-11-13 12:10:00,56 Hickory St, Los Angeles,CA,90001 +291943,Lightning Charging Cable,1,14.95,2019-11-06 09:11:00,680 Jefferson St, Seattle,WA,98101 +291944,27in FHD Monitor,1,149.99,2019-11-27 11:03:00,252 2nd St, Los Angeles,CA,90001 +291945,27in FHD Monitor,1,149.99,2019-11-24 18:52:00,514 Main St, San Francisco,CA,94016 +291946,Wired Headphones,1,11.99,2019-11-28 19:39:00,705 Jackson St, Dallas,TX,75001 +291947,34in Ultrawide Monitor,1,379.99,2019-11-16 02:20:00,627 North St, New York City,NY,10001 +291948,34in Ultrawide Monitor,1,379.99,2019-11-29 12:45:00,126 8th St, Los Angeles,CA,90001 +291949,Lightning Charging Cable,1,14.95,2019-11-30 23:22:00,114 Elm St, Atlanta,GA,30301 +291950,Lightning Charging Cable,1,14.95,2019-11-02 09:25:00,852 Willow St, New York City,NY,10001 +291951,AAA Batteries (4-pack),2,2.99,2019-11-24 13:41:00,351 Forest St, Los Angeles,CA,90001 +291952,AAA Batteries (4-pack),3,2.99,2019-11-15 12:40:00,361 Dogwood St, San Francisco,CA,94016 +291953,AAA Batteries (4-pack),1,2.99,2019-11-10 15:39:00,444 Adams St, Boston,MA,02215 +291954,USB-C Charging Cable,1,11.95,2019-11-20 01:48:00,650 Spruce St, Los Angeles,CA,90001 +291955,USB-C Charging Cable,1,11.95,2019-11-24 21:45:00,144 Willow St, Austin,TX,73301 +291956,AA Batteries (4-pack),3,3.84,2019-11-22 21:41:00,710 Washington St, Atlanta,GA,30301 +291957,AA Batteries (4-pack),1,3.84,2019-11-10 06:16:00,217 14th St, Atlanta,GA,30301 +291958,iPhone,1,700.0,2019-11-21 12:17:00,873 Washington St, New York City,NY,10001 +291959,AA Batteries (4-pack),1,3.84,2019-11-25 11:31:00,519 Cedar St, Dallas,TX,75001 +291960,USB-C Charging Cable,1,11.95,2019-11-26 21:22:00,513 7th St, Austin,TX,73301 +291961,27in FHD Monitor,1,149.99,2019-11-11 19:57:00,550 Jackson St, San Francisco,CA,94016 +291962,27in FHD Monitor,1,149.99,2019-11-24 11:14:00,35 Madison St, Los Angeles,CA,90001 +291963,Google Phone,1,600.0,2019-11-27 15:30:00,832 12th St, Seattle,WA,98101 +291964,Apple Airpods Headphones,1,150.0,2019-11-07 08:27:00,555 Willow St, New York City,NY,10001 +291965,34in Ultrawide Monitor,1,379.99,2019-11-19 20:55:00,145 1st St, Atlanta,GA,30301 +291966,27in 4K Gaming Monitor,1,389.99,2019-11-15 15:51:00,94 Hill St, Dallas,TX,75001 +291967,AAA Batteries (4-pack),1,2.99,2019-11-08 10:42:00,189 7th St, Seattle,WA,98101 +291968,USB-C Charging Cable,1,11.95,2019-11-05 11:44:00,663 Walnut St, Seattle,WA,98101 +291969,27in 4K Gaming Monitor,1,389.99,2019-11-27 11:41:00,45 14th St, San Francisco,CA,94016 +291970,Lightning Charging Cable,1,14.95,2019-11-08 16:21:00,998 Maple St, San Francisco,CA,94016 +291971,USB-C Charging Cable,1,11.95,2019-11-30 20:13:00,51 Church St, Los Angeles,CA,90001 +291972,27in 4K Gaming Monitor,1,389.99,2019-11-22 03:29:00,333 Lake St, Boston,MA,02215 +291973,AAA Batteries (4-pack),2,2.99,2019-11-12 11:54:00,572 Hickory St, Los Angeles,CA,90001 +291974,AAA Batteries (4-pack),1,2.99,2019-11-14 20:30:00,719 South St, Portland,OR,97035 +291975,LG Dryer,1,600.0,2019-11-26 20:01:00,409 Spruce St, New York City,NY,10001 +291976,AA Batteries (4-pack),1,3.84,2019-11-30 12:12:00,649 8th St, Boston,MA,02215 +291977,Bose SoundSport Headphones,1,99.99,2019-11-26 09:42:00,948 Chestnut St, New York City,NY,10001 +291978,20in Monitor,1,109.99,2019-11-20 11:29:00,84 4th St, San Francisco,CA,94016 +291979,AA Batteries (4-pack),1,3.84,2019-11-29 10:13:00,463 10th St, San Francisco,CA,94016 +291980,AAA Batteries (4-pack),2,2.99,2019-11-27 18:06:00,353 Cherry St, Boston,MA,02215 +291981,Bose SoundSport Headphones,1,99.99,2019-11-22 18:06:00,45 Lakeview St, San Francisco,CA,94016 +291982,Apple Airpods Headphones,1,150.0,2019-11-15 17:52:00,326 River St, Portland,OR,97035 +291983,27in FHD Monitor,1,149.99,2019-11-06 01:52:00,465 Lincoln St, San Francisco,CA,94016 +291984,USB-C Charging Cable,1,11.95,2019-11-13 19:38:00,364 Adams St, Seattle,WA,98101 +291985,USB-C Charging Cable,1,11.95,2019-11-21 09:34:00,554 Jefferson St, Atlanta,GA,30301 +291986,Lightning Charging Cable,1,14.95,2019-11-12 07:09:00,983 Hill St, New York City,NY,10001 +291986,Bose SoundSport Headphones,1,99.99,2019-11-12 07:09:00,983 Hill St, New York City,NY,10001 +291987,LG Washing Machine,1,600.0,2019-11-09 08:59:00,236 1st St, San Francisco,CA,94016 +291988,Lightning Charging Cable,1,14.95,2019-11-04 09:56:00,872 Jackson St, Seattle,WA,98101 +291989,Apple Airpods Headphones,1,150.0,2019-11-29 23:22:00,80 Dogwood St, Los Angeles,CA,90001 +291990,27in 4K Gaming Monitor,1,389.99,2019-11-05 12:26:00,959 Sunset St, New York City,NY,10001 +291991,Vareebadd Phone,1,400.0,2019-11-14 17:50:00,253 Elm St, Boston,MA,02215 +291991,USB-C Charging Cable,1,11.95,2019-11-14 17:50:00,253 Elm St, Boston,MA,02215 +291991,Wired Headphones,1,11.99,2019-11-14 17:50:00,253 Elm St, Boston,MA,02215 +291992,Apple Airpods Headphones,1,150.0,2019-11-15 20:16:00,458 Main St, Dallas,TX,75001 +291993,Apple Airpods Headphones,1,150.0,2019-11-17 12:19:00,2 Lakeview St, Seattle,WA,98101 +291994,Lightning Charging Cable,1,14.95,2019-11-04 18:18:00,141 Meadow St, Seattle,WA,98101 +291995,Bose SoundSport Headphones,1,99.99,2019-11-29 09:37:00,908 9th St, Los Angeles,CA,90001 +291996,Lightning Charging Cable,1,14.95,2019-11-02 13:37:00,614 Hill St, Atlanta,GA,30301 +291997,20in Monitor,1,109.99,2019-11-09 13:03:00,843 Forest St, Seattle,WA,98101 +291998,Lightning Charging Cable,1,14.95,2019-11-18 12:32:00,916 12th St, Seattle,WA,98101 +291999,AAA Batteries (4-pack),1,2.99,2019-11-22 21:00:00,243 Park St, San Francisco,CA,94016 +292000,iPhone,1,700.0,2019-11-06 22:28:00,301 River St, San Francisco,CA,94016 +292001,27in FHD Monitor,1,149.99,2019-11-07 01:43:00,992 Lake St, Atlanta,GA,30301 +292002,Bose SoundSport Headphones,1,99.99,2019-11-07 14:24:00,886 North St, San Francisco,CA,94016 +292003,AAA Batteries (4-pack),1,2.99,2019-11-07 13:53:00,422 Forest St, Portland,OR,97035 +292004,iPhone,1,700.0,2019-11-13 20:58:00,186 Wilson St, Boston,MA,02215 +292005,AA Batteries (4-pack),1,3.84,2019-11-21 09:27:00,907 6th St, Portland,OR,97035 +292006,USB-C Charging Cable,1,11.95,2019-11-12 12:47:00,772 Chestnut St, San Francisco,CA,94016 +292007,AA Batteries (4-pack),1,3.84,2019-11-07 10:21:00,700 Jackson St, San Francisco,CA,94016 +292008,20in Monitor,1,109.99,2019-11-03 19:16:00,901 Lakeview St, San Francisco,CA,94016 +292009,iPhone,1,700.0,2019-11-01 11:57:00,432 10th St, New York City,NY,10001 +292010,Google Phone,1,600.0,2019-11-02 12:58:00,76 Ridge St, Atlanta,GA,30301 +292011,Apple Airpods Headphones,1,150.0,2019-11-10 20:40:00,93 13th St, Los Angeles,CA,90001 +292012,Flatscreen TV,1,300.0,2019-11-26 14:18:00,664 9th St, San Francisco,CA,94016 +292013,Flatscreen TV,1,300.0,2019-11-21 13:45:00,604 North St, Atlanta,GA,30301 +292014,Wired Headphones,1,11.99,2019-11-11 20:20:00,958 13th St, Dallas,TX,75001 +292015,Lightning Charging Cable,1,14.95,2019-11-24 18:50:00,686 Main St, Los Angeles,CA,90001 +292016,Google Phone,1,600.0,2019-11-15 09:26:00,349 Elm St, Austin,TX,73301 +292017,AA Batteries (4-pack),2,3.84,2019-11-24 13:26:00,492 Dogwood St, Los Angeles,CA,90001 +292018,AA Batteries (4-pack),1,3.84,2019-11-29 23:35:00,298 6th St, Los Angeles,CA,90001 +292019,Apple Airpods Headphones,1,150.0,2019-11-26 22:59:00,677 West St, Austin,TX,73301 +292020,Google Phone,1,600.0,2019-11-28 00:00:00,970 6th St, Los Angeles,CA,90001 +292021,ThinkPad Laptop,1,999.99,2019-11-10 22:13:00,480 Hill St, New York City,NY,10001 +292022,Bose SoundSport Headphones,1,99.99,2019-11-02 10:10:00,42 7th St, Los Angeles,CA,90001 +292023,Apple Airpods Headphones,1,150.0,2019-11-21 11:59:00,553 6th St, San Francisco,CA,94016 +292024,USB-C Charging Cable,1,11.95,2019-11-26 09:07:00,405 Johnson St, Austin,TX,73301 +292025,Apple Airpods Headphones,2,150.0,2019-11-16 21:11:00,443 Forest St, Los Angeles,CA,90001 +292026,LG Dryer,1,600.0,2019-11-08 08:29:00,362 Main St, Los Angeles,CA,90001 +292027,USB-C Charging Cable,1,11.95,2019-11-01 13:04:00,791 Church St, Los Angeles,CA,90001 +292028,AA Batteries (4-pack),1,3.84,2019-11-05 13:33:00,796 Center St, Dallas,TX,75001 +292029,Wired Headphones,1,11.99,2019-11-17 00:09:00,624 Chestnut St, Dallas,TX,75001 +292030,Lightning Charging Cable,1,14.95,2019-11-03 02:53:00,441 River St, Boston,MA,02215 +292031,Bose SoundSport Headphones,1,99.99,2019-11-03 21:09:00,162 Church St, New York City,NY,10001 +292032,Wired Headphones,1,11.99,2019-11-11 23:31:00,105 West St, Dallas,TX,75001 +292033,Lightning Charging Cable,1,14.95,2019-11-09 06:16:00,539 Elm St, San Francisco,CA,94016 +292034,Lightning Charging Cable,1,14.95,2019-11-10 08:24:00,550 Spruce St, Los Angeles,CA,90001 +292035,Lightning Charging Cable,1,14.95,2019-11-01 19:54:00,645 Lakeview St, San Francisco,CA,94016 +292036,AAA Batteries (4-pack),1,2.99,2019-11-11 17:44:00,124 Adams St, New York City,NY,10001 +292037,Lightning Charging Cable,1,14.95,2019-11-24 20:23:00,965 Maple St, San Francisco,CA,94016 +292038,AA Batteries (4-pack),2,3.84,2019-11-08 08:46:00,227 Lincoln St, New York City,NY,10001 +292039,Bose SoundSport Headphones,1,99.99,2019-11-30 18:44:00,760 10th St, Boston,MA,02215 +292040,Lightning Charging Cable,1,14.95,2019-11-28 19:18:00,551 14th St, Portland,OR,97035 +292041,34in Ultrawide Monitor,1,379.99,2019-11-30 16:55:00,936 13th St, Seattle,WA,98101 +292042,AAA Batteries (4-pack),2,2.99,2019-11-13 11:57:00,858 Madison St, San Francisco,CA,94016 +292043,27in 4K Gaming Monitor,1,389.99,2019-11-27 09:38:00,789 Forest St, San Francisco,CA,94016 +292044,ThinkPad Laptop,1,999.99,2019-11-14 18:17:00,757 4th St, San Francisco,CA,94016 +292045,Lightning Charging Cable,1,14.95,2019-11-20 19:31:00,738 1st St, Los Angeles,CA,90001 +292046,Apple Airpods Headphones,1,150.0,2019-11-04 15:58:00,325 North St, San Francisco,CA,94016 +292047,27in FHD Monitor,1,149.99,2019-11-14 18:44:00,406 2nd St, Los Angeles,CA,90001 +292048,Wired Headphones,2,11.99,2019-11-25 21:04:00,691 6th St, Portland,OR,97035 +292049,USB-C Charging Cable,1,11.95,2019-11-20 13:57:00,247 Cedar St, Boston,MA,02215 +292050,Bose SoundSport Headphones,1,99.99,2019-11-28 18:02:00,778 Sunset St, Boston,MA,02215 +292051,Flatscreen TV,1,300.0,2019-11-20 14:18:00,964 Cedar St, Portland,OR,97035 +292052,AAA Batteries (4-pack),2,2.99,2019-11-22 18:10:00,803 South St, Los Angeles,CA,90001 +292053,Apple Airpods Headphones,1,150.0,2019-11-12 13:50:00,446 Lake St, New York City,NY,10001 +292054,AA Batteries (4-pack),1,3.84,2019-11-23 14:51:00,975 Wilson St, Los Angeles,CA,90001 +292055,USB-C Charging Cable,1,11.95,2019-11-22 17:12:00,710 Lakeview St, Boston,MA,02215 +292056,Apple Airpods Headphones,1,150.0,2019-11-26 21:44:00,84 9th St, New York City,NY,10001 +292057,AAA Batteries (4-pack),1,2.99,2019-11-11 10:15:00,496 Lincoln St, Boston,MA,02215 +292058,AAA Batteries (4-pack),2,2.99,2019-11-04 14:56:00,701 Jefferson St, Seattle,WA,98101 +292059,Bose SoundSport Headphones,1,99.99,2019-11-08 01:15:00,348 Lake St, Los Angeles,CA,90001 +292060,Wired Headphones,1,11.99,2019-11-12 11:07:00,908 13th St, Los Angeles,CA,90001 +292061,27in 4K Gaming Monitor,1,389.99,2019-11-01 19:07:00,508 South St, Boston,MA,02215 +292062,AAA Batteries (4-pack),1,2.99,2019-11-05 13:16:00,530 Jackson St, Dallas,TX,75001 +292063,Lightning Charging Cable,1,14.95,2019-11-02 21:24:00,700 Lake St, Seattle,WA,98101 +292064,Lightning Charging Cable,1,14.95,2019-11-24 23:07:00,839 13th St, Los Angeles,CA,90001 +292065,AA Batteries (4-pack),1,3.84,2019-11-30 13:07:00,395 Elm St, San Francisco,CA,94016 +292066,34in Ultrawide Monitor,1,379.99,2019-11-23 19:32:00,212 4th St, San Francisco,CA,94016 +292067,USB-C Charging Cable,1,11.95,2019-11-28 10:16:00,870 Hill St, New York City,NY,10001 +292068,Lightning Charging Cable,1,14.95,2019-11-21 09:22:00,797 Highland St, San Francisco,CA,94016 +292069,Macbook Pro Laptop,1,1700.0,2019-11-25 20:03:00,667 Pine St, Austin,TX,73301 +292070,Wired Headphones,1,11.99,2019-11-24 16:17:00,548 5th St, Seattle,WA,98101 +292071,AAA Batteries (4-pack),1,2.99,2019-11-04 12:37:00,270 5th St, Boston,MA,02215 +292072,27in FHD Monitor,1,149.99,2019-11-08 21:48:00,355 10th St, Portland,OR,97035 +292073,USB-C Charging Cable,1,11.95,2019-11-07 12:40:00,296 Hill St, Boston,MA,02215 +292074,34in Ultrawide Monitor,1,379.99,2019-11-03 14:36:00,330 Highland St, San Francisco,CA,94016 +292075,20in Monitor,1,109.99,2019-11-16 00:44:00,525 12th St, San Francisco,CA,94016 +292076,27in FHD Monitor,1,149.99,2019-11-04 21:24:00,707 Forest St, San Francisco,CA,94016 +292077,34in Ultrawide Monitor,1,379.99,2019-11-02 11:41:00,527 5th St, Los Angeles,CA,90001 +292078,iPhone,1,700.0,2019-11-14 12:00:00,227 Highland St, Los Angeles,CA,90001 +292079,AAA Batteries (4-pack),2,2.99,2019-11-20 17:47:00,405 West St, Boston,MA,02215 +292080,Macbook Pro Laptop,1,1700.0,2019-11-23 11:55:00,162 South St, Los Angeles,CA,90001 +292081,Macbook Pro Laptop,1,1700.0,2019-11-15 21:24:00,844 12th St, Seattle,WA,98101 +292082,27in 4K Gaming Monitor,1,389.99,2019-11-10 23:16:00,29 Sunset St, Atlanta,GA,30301 +292083,27in 4K Gaming Monitor,1,389.99,2019-11-17 14:03:00,828 Willow St, San Francisco,CA,94016 +292084,Wired Headphones,1,11.99,2019-11-22 13:51:00,475 Park St, San Francisco,CA,94016 +292085,27in FHD Monitor,1,149.99,2019-11-17 10:49:00,663 Pine St, Portland,OR,97035 +292086,Lightning Charging Cable,1,14.95,2019-11-16 13:12:00,922 11th St, San Francisco,CA,94016 +292087,AAA Batteries (4-pack),1,2.99,2019-11-26 06:27:00,706 14th St, Dallas,TX,75001 +292088,USB-C Charging Cable,1,11.95,2019-11-29 19:18:00,552 Willow St, San Francisco,CA,94016 +292089,Lightning Charging Cable,1,14.95,2019-11-30 17:06:00,591 Adams St, Los Angeles,CA,90001 +292090,AA Batteries (4-pack),1,3.84,2019-11-06 19:55:00,218 Chestnut St, San Francisco,CA,94016 +292091,AA Batteries (4-pack),1,3.84,2019-11-27 13:10:00,748 4th St, San Francisco,CA,94016 +292092,Apple Airpods Headphones,1,150.0,2019-11-20 12:15:00,734 Hickory St, Seattle,WA,98101 +292093,AAA Batteries (4-pack),1,2.99,2019-11-29 09:18:00,233 Cedar St, San Francisco,CA,94016 +292094,AA Batteries (4-pack),1,3.84,2019-11-28 20:33:00,334 Pine St, San Francisco,CA,94016 +292095,27in 4K Gaming Monitor,1,389.99,2019-11-11 07:59:00,972 Johnson St, Dallas,TX,75001 +292096,Lightning Charging Cable,1,14.95,2019-11-11 19:47:00,190 South St, San Francisco,CA,94016 +292097,AAA Batteries (4-pack),1,2.99,2019-11-16 09:51:00,315 Walnut St, Atlanta,GA,30301 +292098,Google Phone,1,600.0,2019-11-01 10:13:00,214 4th St, Dallas,TX,75001 +292098,USB-C Charging Cable,1,11.95,2019-11-01 10:13:00,214 4th St, Dallas,TX,75001 +292098,Lightning Charging Cable,1,14.95,2019-11-01 10:13:00,214 4th St, Dallas,TX,75001 +292099,AA Batteries (4-pack),1,3.84,2019-11-24 22:08:00,270 5th St, New York City,NY,10001 +292100,Wired Headphones,1,11.99,2019-11-29 01:57:00,432 Highland St, Los Angeles,CA,90001 +292101,Apple Airpods Headphones,1,150.0,2019-11-03 11:56:00,897 Willow St, Austin,TX,73301 +292102,Bose SoundSport Headphones,1,99.99,2019-11-07 12:53:00,662 Walnut St, Dallas,TX,75001 +292103,27in 4K Gaming Monitor,1,389.99,2019-11-24 16:31:00,477 Hill St, New York City,NY,10001 +292104,Wired Headphones,1,11.99,2019-11-03 12:28:00,131 South St, San Francisco,CA,94016 +292105,Macbook Pro Laptop,1,1700.0,2019-11-27 10:55:00,470 West St, New York City,NY,10001 +292106,USB-C Charging Cable,1,11.95,2019-11-23 08:34:00,201 Sunset St, San Francisco,CA,94016 +292107,Apple Airpods Headphones,1,150.0,2019-11-15 17:23:00,536 Forest St, Austin,TX,73301 +292108,20in Monitor,1,109.99,2019-11-01 13:43:00,46 5th St, Los Angeles,CA,90001 +292109,Lightning Charging Cable,1,14.95,2019-11-05 16:43:00,144 Ridge St, Seattle,WA,98101 +292110,27in FHD Monitor,1,149.99,2019-11-07 11:06:00,739 Elm St, Los Angeles,CA,90001 +292111,USB-C Charging Cable,1,11.95,2019-11-19 16:16:00,479 2nd St, New York City,NY,10001 +292112,27in FHD Monitor,1,149.99,2019-11-06 18:45:00,764 South St, Boston,MA,02215 +292113,AA Batteries (4-pack),1,3.84,2019-11-11 16:49:00,493 Park St, Austin,TX,73301 +292114,34in Ultrawide Monitor,1,379.99,2019-11-20 17:20:00,337 Center St, Los Angeles,CA,90001 +292115,Bose SoundSport Headphones,1,99.99,2019-11-21 20:07:00,246 Cherry St, New York City,NY,10001 +292116,AAA Batteries (4-pack),3,2.99,2019-11-17 00:10:00,659 4th St, Los Angeles,CA,90001 +292117,Wired Headphones,1,11.99,2019-11-06 21:48:00,870 Elm St, Boston,MA,02215 +292118,AAA Batteries (4-pack),2,2.99,2019-11-19 22:10:00,484 Maple St, San Francisco,CA,94016 +292119,Lightning Charging Cable,1,14.95,2019-11-11 07:01:00,6 8th St, Dallas,TX,75001 +292120,27in 4K Gaming Monitor,1,389.99,2019-11-26 20:35:00,138 Forest St, San Francisco,CA,94016 +292121,Lightning Charging Cable,1,14.95,2019-11-27 00:10:00,957 Main St, Boston,MA,02215 +292122,iPhone,1,700.0,2019-11-25 09:43:00,504 Lakeview St, San Francisco,CA,94016 +292123,AAA Batteries (4-pack),1,2.99,2019-11-17 17:38:00,89 Dogwood St, Seattle,WA,98101 +292124,Apple Airpods Headphones,1,150.0,2019-11-03 20:26:00,303 Jefferson St, Dallas,TX,75001 +292125,27in 4K Gaming Monitor,1,389.99,2019-11-20 14:34:00,606 Hickory St, Atlanta,GA,30301 +292126,AAA Batteries (4-pack),1,2.99,2019-11-23 00:05:00,96 Chestnut St, Los Angeles,CA,90001 +292127,USB-C Charging Cable,2,11.95,2019-11-03 15:48:00,772 Adams St, Los Angeles,CA,90001 +292128,Macbook Pro Laptop,1,1700.0,2019-11-10 22:45:00,789 West St, San Francisco,CA,94016 +292129,ThinkPad Laptop,1,999.99,2019-11-16 16:19:00,581 Pine St, Dallas,TX,75001 +292130,Lightning Charging Cable,1,14.95,2019-11-27 16:07:00,469 Cherry St, New York City,NY,10001 +292131,Apple Airpods Headphones,1,150.0,2019-11-03 11:51:00,205 14th St, New York City,NY,10001 +292132,Wired Headphones,1,11.99,2019-11-05 13:14:00,46 Maple St, Los Angeles,CA,90001 +292133,AA Batteries (4-pack),1,3.84,2019-11-19 08:39:00,111 Maple St, San Francisco,CA,94016 +292134,Lightning Charging Cable,1,14.95,2019-11-06 19:24:00,119 13th St, New York City,NY,10001 +292135,USB-C Charging Cable,1,11.95,2019-11-18 16:54:00,94 Ridge St, Austin,TX,73301 +292136,Bose SoundSport Headphones,1,99.99,2019-11-22 18:22:00,765 Adams St, San Francisco,CA,94016 +292137,iPhone,1,700.0,2019-11-21 20:57:00,914 Dogwood St, Los Angeles,CA,90001 +292138,Apple Airpods Headphones,1,150.0,2019-11-18 22:45:00,358 Sunset St, Boston,MA,02215 +292139,Apple Airpods Headphones,1,150.0,2019-11-08 22:04:00,634 Lakeview St, San Francisco,CA,94016 +292140,iPhone,1,700.0,2019-11-09 16:43:00,430 Chestnut St, Los Angeles,CA,90001 +292141,Lightning Charging Cable,2,14.95,2019-11-09 08:45:00,743 Highland St, Boston,MA,02215 +292142,Flatscreen TV,1,300.0,2019-11-13 06:21:00,118 Hill St, San Francisco,CA,94016 +292143,27in 4K Gaming Monitor,1,389.99,2019-11-19 06:44:00,233 Washington St, Portland,OR,97035 +292144,Lightning Charging Cable,1,14.95,2019-11-02 16:59:00,586 Lincoln St, New York City,NY,10001 +292145,AA Batteries (4-pack),1,3.84,2019-11-21 04:18:00,283 Johnson St, New York City,NY,10001 +292146,Apple Airpods Headphones,1,150.0,2019-11-13 10:43:00,796 6th St, New York City,NY,10001 +292147,Lightning Charging Cable,1,14.95,2019-11-19 13:58:00,764 Dogwood St, Portland,OR,97035 +292148,Apple Airpods Headphones,1,150.0,2019-11-26 11:56:00,657 Hickory St, Portland,ME,04101 +292149,27in FHD Monitor,1,149.99,2019-11-30 19:30:00,896 Hickory St, San Francisco,CA,94016 +292150,Macbook Pro Laptop,1,1700.0,2019-11-13 10:12:00,471 Adams St, Portland,OR,97035 +292151,Apple Airpods Headphones,1,150.0,2019-11-10 13:44:00,373 9th St, San Francisco,CA,94016 +292152,Bose SoundSport Headphones,1,99.99,2019-11-25 15:35:00,608 Cedar St, Portland,OR,97035 +292153,Lightning Charging Cable,1,14.95,2019-11-29 12:32:00,158 8th St, San Francisco,CA,94016 +292154,Macbook Pro Laptop,1,1700.0,2019-11-21 19:59:00,807 Walnut St, Portland,OR,97035 +292155,AAA Batteries (4-pack),2,2.99,2019-11-30 21:56:00,124 Wilson St, Dallas,TX,75001 +292156,USB-C Charging Cable,1,11.95,2019-11-11 14:07:00,101 West St, San Francisco,CA,94016 +292157,Lightning Charging Cable,1,14.95,2019-11-01 12:58:00,427 Hickory St, San Francisco,CA,94016 +292158,34in Ultrawide Monitor,1,379.99,2019-11-12 14:15:00,336 Chestnut St, New York City,NY,10001 +292159,Bose SoundSport Headphones,1,99.99,2019-11-30 13:22:00,122 10th St, Dallas,TX,75001 +292160,Apple Airpods Headphones,1,150.0,2019-11-04 09:53:00,146 13th St, Boston,MA,02215 +292161,Lightning Charging Cable,1,14.95,2019-11-03 23:18:00,788 North St, Portland,OR,97035 +292162,USB-C Charging Cable,1,11.95,2019-11-17 09:14:00,645 Madison St, Los Angeles,CA,90001 +292163,USB-C Charging Cable,1,11.95,2019-11-19 23:14:00,250 10th St, Atlanta,GA,30301 +292164,Wired Headphones,1,11.99,2019-11-15 20:00:00,571 Spruce St, Dallas,TX,75001 +292165,Macbook Pro Laptop,1,1700.0,2019-11-03 15:36:00,483 5th St, New York City,NY,10001 +292166,Apple Airpods Headphones,1,150.0,2019-11-23 23:44:00,332 11th St, Boston,MA,02215 +292167,AA Batteries (4-pack),3,3.84,2019-11-05 14:48:00,916 North St, Austin,TX,73301 +292168,Wired Headphones,1,11.99,2019-11-15 15:32:00,808 Jackson St, Boston,MA,02215 +292169,27in FHD Monitor,1,149.99,2019-11-22 11:21:00,762 Highland St, Portland,OR,97035 +292170,AA Batteries (4-pack),1,3.84,2019-11-12 19:44:00,728 Main St, Los Angeles,CA,90001 +292171,34in Ultrawide Monitor,1,379.99,2019-11-12 19:40:00,136 Ridge St, Seattle,WA,98101 +292172,20in Monitor,1,109.99,2019-11-07 19:27:00,954 Lincoln St, Portland,OR,97035 +292173,Wired Headphones,1,11.99,2019-11-07 11:02:00,674 South St, Portland,ME,04101 +292174,USB-C Charging Cable,1,11.95,2019-11-23 18:24:00,995 Maple St, Los Angeles,CA,90001 +292175,Wired Headphones,1,11.99,2019-11-29 18:55:00,506 Lakeview St, Boston,MA,02215 +292176,iPhone,1,700.0,2019-11-05 15:44:00,495 Cedar St, San Francisco,CA,94016 +292177,Lightning Charging Cable,1,14.95,2019-11-19 21:40:00,676 Cedar St, Los Angeles,CA,90001 +292178,Bose SoundSport Headphones,1,99.99,2019-11-23 02:00:00,114 North St, San Francisco,CA,94016 +292179,27in FHD Monitor,1,149.99,2019-11-13 18:29:00,669 Church St, San Francisco,CA,94016 +292180,Lightning Charging Cable,1,14.95,2019-11-19 08:15:00,926 8th St, Boston,MA,02215 +292181,USB-C Charging Cable,1,11.95,2019-11-14 20:20:00,100 Dogwood St, Los Angeles,CA,90001 +292182,USB-C Charging Cable,1,11.95,2019-11-17 10:36:00,741 Wilson St, Boston,MA,02215 +292183,Bose SoundSport Headphones,1,99.99,2019-11-03 19:34:00,730 Pine St, Los Angeles,CA,90001 +292184,27in 4K Gaming Monitor,1,389.99,2019-11-05 21:17:00,239 10th St, Portland,OR,97035 +292185,Apple Airpods Headphones,1,150.0,2019-11-25 19:58:00,729 Spruce St, Los Angeles,CA,90001 +292186,Lightning Charging Cable,2,14.95,2019-11-19 12:35:00,275 12th St, Los Angeles,CA,90001 +292187,Wired Headphones,2,11.99,2019-11-24 04:09:00,859 Walnut St, Dallas,TX,75001 +292188,Wired Headphones,1,11.99,2019-11-14 20:38:00,905 7th St, New York City,NY,10001 +292189,Bose SoundSport Headphones,1,99.99,2019-11-04 12:50:00,423 South St, Boston,MA,02215 +292190,Apple Airpods Headphones,1,150.0,2019-11-07 22:52:00,345 1st St, Dallas,TX,75001 +292191,AAA Batteries (4-pack),1,2.99,2019-11-30 22:50:00,220 Jackson St, San Francisco,CA,94016 +292192,AAA Batteries (4-pack),1,2.99,2019-11-03 00:57:00,663 Wilson St, San Francisco,CA,94016 +292193,27in 4K Gaming Monitor,1,389.99,2019-11-06 16:09:00,924 4th St, Atlanta,GA,30301 +292194,Wired Headphones,1,11.99,2019-11-01 09:08:00,36 Maple St, San Francisco,CA,94016 +292195,AAA Batteries (4-pack),1,2.99,2019-11-18 19:52:00,605 Madison St, Boston,MA,02215 +292196,27in 4K Gaming Monitor,1,389.99,2019-11-07 17:18:00,197 Hill St, New York City,NY,10001 +292197,Wired Headphones,1,11.99,2019-11-27 19:56:00,59 Center St, Boston,MA,02215 +292198,AA Batteries (4-pack),3,3.84,2019-11-04 18:30:00,492 Church St, Portland,ME,04101 +292199,Wired Headphones,1,11.99,2019-11-25 09:13:00,381 Wilson St, San Francisco,CA,94016 +292200,Bose SoundSport Headphones,1,99.99,2019-11-11 11:43:00,910 Spruce St, San Francisco,CA,94016 +292201,Wired Headphones,1,11.99,2019-11-23 17:05:00,668 6th St, Los Angeles,CA,90001 +292202,Lightning Charging Cable,2,14.95,2019-11-07 17:49:00,954 11th St, San Francisco,CA,94016 +292203,AAA Batteries (4-pack),2,2.99,2019-11-12 20:16:00,88 Forest St, San Francisco,CA,94016 +292204,USB-C Charging Cable,1,11.95,2019-11-26 22:32:00,663 Lincoln St, San Francisco,CA,94016 +292205,27in FHD Monitor,1,149.99,2019-11-01 03:50:00,123 Johnson St, Boston,MA,02215 +292206,USB-C Charging Cable,1,11.95,2019-11-30 22:08:00,851 Jackson St, Los Angeles,CA,90001 +292207,USB-C Charging Cable,1,11.95,2019-11-25 23:09:00,42 Dogwood St, Austin,TX,73301 +292208,Vareebadd Phone,1,400.0,2019-11-07 21:16:00,565 Meadow St, Dallas,TX,75001 +292209,27in 4K Gaming Monitor,1,389.99,2019-11-20 15:12:00,668 10th St, Boston,MA,02215 +292210,iPhone,1,700.0,2019-11-16 12:41:00,119 11th St, Boston,MA,02215 +292211,AA Batteries (4-pack),1,3.84,2019-11-11 12:49:00,435 Sunset St, Dallas,TX,75001 +292212,27in FHD Monitor,1,149.99,2019-11-30 08:59:00,294 South St, Boston,MA,02215 +292213,Lightning Charging Cable,1,14.95,2019-11-12 09:46:00,479 2nd St, San Francisco,CA,94016 +292214,Lightning Charging Cable,1,14.95,2019-11-01 17:33:00,157 Spruce St, Los Angeles,CA,90001 +292215,USB-C Charging Cable,1,11.95,2019-11-10 18:40:00,193 Elm St, San Francisco,CA,94016 +292216,Google Phone,1,600.0,2019-11-22 17:02:00,519 Meadow St, Atlanta,GA,30301 +292216,USB-C Charging Cable,1,11.95,2019-11-22 17:02:00,519 Meadow St, Atlanta,GA,30301 +292217,USB-C Charging Cable,1,11.95,2019-11-21 21:44:00,364 6th St, Boston,MA,02215 +292218,AA Batteries (4-pack),1,3.84,2019-11-01 18:35:00,627 Walnut St, Dallas,TX,75001 +292219,AA Batteries (4-pack),1,3.84,2019-11-27 17:00:00,239 South St, San Francisco,CA,94016 +292220,Vareebadd Phone,1,400.0,2019-11-14 22:44:00,292 Johnson St, New York City,NY,10001 +292220,USB-C Charging Cable,1,11.95,2019-11-14 22:44:00,292 Johnson St, New York City,NY,10001 +292221,Apple Airpods Headphones,1,150.0,2019-11-28 10:27:00,704 Meadow St, Los Angeles,CA,90001 +292222,Apple Airpods Headphones,1,150.0,2019-11-11 00:28:00,903 West St, Seattle,WA,98101 +292223,Apple Airpods Headphones,1,150.0,2019-11-17 09:19:00,916 8th St, New York City,NY,10001 +292224,AAA Batteries (4-pack),3,2.99,2019-11-03 07:30:00,586 13th St, Los Angeles,CA,90001 +292225,iPhone,1,700.0,2019-11-24 13:23:00,549 Forest St, Boston,MA,02215 +292226,34in Ultrawide Monitor,1,379.99,2019-11-06 19:31:00,598 Dogwood St, Seattle,WA,98101 +292227,Lightning Charging Cable,1,14.95,2019-11-06 15:06:00,199 River St, Atlanta,GA,30301 +292228,USB-C Charging Cable,1,11.95,2019-11-29 23:37:00,820 Walnut St, San Francisco,CA,94016 +292229,Bose SoundSport Headphones,1,99.99,2019-11-04 18:50:00,205 9th St, Austin,TX,73301 +292230,Google Phone,1,600.0,2019-11-03 21:42:00,279 Lakeview St, New York City,NY,10001 +292230,USB-C Charging Cable,2,11.95,2019-11-03 21:42:00,279 Lakeview St, New York City,NY,10001 +292230,Bose SoundSport Headphones,1,99.99,2019-11-03 21:42:00,279 Lakeview St, New York City,NY,10001 +292231,AA Batteries (4-pack),2,3.84,2019-11-14 19:13:00,463 Adams St, San Francisco,CA,94016 +292232,Wired Headphones,1,11.99,2019-11-14 17:56:00,524 Willow St, Atlanta,GA,30301 +292233,Wired Headphones,1,11.99,2019-11-17 17:47:00,866 Johnson St, San Francisco,CA,94016 +292234,Apple Airpods Headphones,1,150.0,2019-11-28 20:27:00,465 7th St, Austin,TX,73301 +292235,AAA Batteries (4-pack),1,2.99,2019-11-01 22:31:00,696 12th St, Boston,MA,02215 +292236,Lightning Charging Cable,1,14.95,2019-11-03 15:05:00,85 Washington St, Boston,MA,02215 +292237,USB-C Charging Cable,1,11.95,2019-11-02 20:58:00,973 Meadow St, Boston,MA,02215 +292238,AA Batteries (4-pack),1,3.84,2019-11-17 16:20:00,341 Lincoln St, San Francisco,CA,94016 +292239,Lightning Charging Cable,1,14.95,2019-11-03 16:59:00,422 Hill St, San Francisco,CA,94016 +292240,USB-C Charging Cable,1,11.95,2019-11-14 21:35:00,594 12th St, Los Angeles,CA,90001 +292241,Bose SoundSport Headphones,1,99.99,2019-11-26 14:56:00,367 Spruce St, New York City,NY,10001 +292242,Lightning Charging Cable,1,14.95,2019-11-13 17:01:00,894 Adams St, Boston,MA,02215 +292243,34in Ultrawide Monitor,1,379.99,2019-11-17 23:31:00,769 Jefferson St, Seattle,WA,98101 +292244,AAA Batteries (4-pack),2,2.99,2019-11-22 08:43:00,288 Adams St, Dallas,TX,75001 +292245,Google Phone,1,600.0,2019-11-06 21:51:00,229 Chestnut St, Dallas,TX,75001 +292246,Wired Headphones,1,11.99,2019-11-17 16:42:00,149 12th St, San Francisco,CA,94016 +292247,Lightning Charging Cable,1,14.95,2019-11-13 23:43:00,67 7th St, Boston,MA,02215 +292248,iPhone,1,700.0,2019-11-09 05:41:00,497 Forest St, Los Angeles,CA,90001 +292249,USB-C Charging Cable,1,11.95,2019-11-14 11:58:00,806 Adams St, New York City,NY,10001 +292250,USB-C Charging Cable,1,11.95,2019-11-25 07:42:00,262 1st St, New York City,NY,10001 +292251,27in FHD Monitor,1,149.99,2019-11-22 21:15:00,757 Main St, Seattle,WA,98101 +292252,USB-C Charging Cable,1,11.95,2019-11-26 12:22:00,567 6th St, San Francisco,CA,94016 +292253,USB-C Charging Cable,1,11.95,2019-11-23 14:59:00,482 Johnson St, Seattle,WA,98101 +292254,Wired Headphones,1,11.99,2019-11-06 17:20:00,752 13th St, San Francisco,CA,94016 +292255,27in 4K Gaming Monitor,1,389.99,2019-11-30 16:10:00,254 Walnut St, Dallas,TX,75001 +292256,27in 4K Gaming Monitor,1,389.99,2019-11-30 18:36:00,672 Highland St, San Francisco,CA,94016 +292257,USB-C Charging Cable,1,11.95,2019-11-03 10:30:00,615 Elm St, San Francisco,CA,94016 +292258,Wired Headphones,1,11.99,2019-11-02 19:15:00,55 11th St, San Francisco,CA,94016 +292259,AAA Batteries (4-pack),1,2.99,2019-11-06 16:41:00,378 Hill St, San Francisco,CA,94016 +292260,USB-C Charging Cable,1,11.95,2019-11-18 18:09:00,209 13th St, San Francisco,CA,94016 +292261,27in 4K Gaming Monitor,1,389.99,2019-11-27 10:30:00,610 Jackson St, San Francisco,CA,94016 +292262,Lightning Charging Cable,1,14.95,2019-11-19 04:02:00,662 Chestnut St, San Francisco,CA,94016 +292263,Apple Airpods Headphones,1,150.0,2019-11-19 23:25:00,114 Jefferson St, Seattle,WA,98101 +292264,Apple Airpods Headphones,1,150.0,2019-11-13 23:17:00,855 Sunset St, Seattle,WA,98101 +292265,Wired Headphones,1,11.99,2019-11-25 07:28:00,681 6th St, San Francisco,CA,94016 +292266,Google Phone,1,600.0,2019-11-01 19:49:00,912 Dogwood St, Atlanta,GA,30301 +292267,27in 4K Gaming Monitor,1,389.99,2019-11-18 19:13:00,774 Elm St, New York City,NY,10001 +292268,27in 4K Gaming Monitor,1,389.99,2019-11-17 09:16:00,539 8th St, Dallas,TX,75001 +292269,Wired Headphones,1,11.99,2019-12-01 01:30:00,629 13th St, New York City,NY,10001 +292270,AAA Batteries (4-pack),2,2.99,2019-11-09 20:41:00,43 Spruce St, New York City,NY,10001 +292271,USB-C Charging Cable,1,11.95,2019-11-20 14:32:00,655 Wilson St, Dallas,TX,75001 +292272,USB-C Charging Cable,1,11.95,2019-11-11 19:56:00,22 Spruce St, San Francisco,CA,94016 +292273,Lightning Charging Cable,2,14.95,2019-11-24 11:25:00,686 Maple St, New York City,NY,10001 +292274,Wired Headphones,1,11.99,2019-11-08 12:12:00,729 Walnut St, Los Angeles,CA,90001 +292275,Lightning Charging Cable,1,14.95,2019-11-26 13:42:00,298 Park St, New York City,NY,10001 +292276,Vareebadd Phone,1,400.0,2019-11-30 16:45:00,857 Pine St, Boston,MA,02215 +292276,Bose SoundSport Headphones,1,99.99,2019-11-30 16:45:00,857 Pine St, Boston,MA,02215 +292277,Lightning Charging Cable,1,14.95,2019-11-22 18:58:00,638 5th St, New York City,NY,10001 +292278,AA Batteries (4-pack),2,3.84,2019-11-02 01:25:00,738 Dogwood St, Boston,MA,02215 +292279,34in Ultrawide Monitor,1,379.99,2019-11-20 23:44:00,210 Park St, New York City,NY,10001 +292280,iPhone,1,700.0,2019-11-11 10:27:00,61 Lakeview St, Dallas,TX,75001 +292280,Lightning Charging Cable,1,14.95,2019-11-11 10:27:00,61 Lakeview St, Dallas,TX,75001 +292281,AA Batteries (4-pack),1,3.84,2019-11-03 00:24:00,434 Forest St, Austin,TX,73301 +292282,Wired Headphones,2,11.99,2019-11-18 08:45:00,499 Willow St, San Francisco,CA,94016 +292283,AA Batteries (4-pack),1,3.84,2019-11-23 18:21:00,824 11th St, San Francisco,CA,94016 +292284,27in 4K Gaming Monitor,1,389.99,2019-11-09 18:56:00,35 8th St, New York City,NY,10001 +292285,Lightning Charging Cable,1,14.95,2019-11-06 14:26:00,150 Adams St, New York City,NY,10001 +292286,27in FHD Monitor,1,149.99,2019-11-12 13:19:00,264 Lincoln St, Seattle,WA,98101 +292287,AAA Batteries (4-pack),2,2.99,2019-11-18 09:39:00,330 Highland St, Boston,MA,02215 +292288,20in Monitor,1,109.99,2019-11-03 14:29:00,818 9th St, Atlanta,GA,30301 +292289,AAA Batteries (4-pack),1,2.99,2019-11-05 22:34:00,842 Elm St, New York City,NY,10001 +292290,Lightning Charging Cable,1,14.95,2019-11-26 09:36:00,800 Johnson St, San Francisco,CA,94016 +292291,Google Phone,1,600.0,2019-11-02 18:03:00,106 Hill St, San Francisco,CA,94016 +292292,Apple Airpods Headphones,1,150.0,2019-11-08 12:09:00,522 Lakeview St, San Francisco,CA,94016 +292293,AA Batteries (4-pack),1,3.84,2019-11-07 20:19:00,272 Elm St, New York City,NY,10001 +292294,Wired Headphones,2,11.99,2019-11-09 07:39:00,129 Hickory St, Atlanta,GA,30301 +292295,Apple Airpods Headphones,1,150.0,2019-11-28 17:45:00,818 Forest St, San Francisco,CA,94016 +292296,Bose SoundSport Headphones,1,99.99,2019-11-16 22:46:00,517 6th St, Dallas,TX,75001 +292297,USB-C Charging Cable,1,11.95,2019-11-17 17:11:00,536 Hickory St, Atlanta,GA,30301 +292298,Wired Headphones,1,11.99,2019-11-12 06:26:00,566 Dogwood St, Seattle,WA,98101 +292299,USB-C Charging Cable,1,11.95,2019-11-01 11:43:00,427 River St, San Francisco,CA,94016 +292300,AAA Batteries (4-pack),3,2.99,2019-11-15 12:27:00,283 1st St, Dallas,TX,75001 +292301,Wired Headphones,1,11.99,2019-11-25 13:05:00,66 North St, New York City,NY,10001 +292302,27in FHD Monitor,1,149.99,2019-11-13 06:33:00,420 8th St, Boston,MA,02215 +292303,20in Monitor,1,109.99,2019-11-24 10:57:00,824 Willow St, Boston,MA,02215 +292304,Apple Airpods Headphones,1,150.0,2019-11-18 20:04:00,336 Pine St, Seattle,WA,98101 +292305,27in 4K Gaming Monitor,1,389.99,2019-11-23 20:47:00,520 South St, New York City,NY,10001 +292306,AA Batteries (4-pack),1,3.84,2019-11-18 19:09:00,732 Meadow St, San Francisco,CA,94016 +292307,Lightning Charging Cable,1,14.95,2019-11-13 19:09:00,262 Walnut St, Dallas,TX,75001 +292308,USB-C Charging Cable,1,11.95,2019-11-04 10:02:00,448 10th St, San Francisco,CA,94016 +292309,AA Batteries (4-pack),2,3.84,2019-11-29 11:21:00,674 8th St, Dallas,TX,75001 +292310,ThinkPad Laptop,1,999.99,2019-11-14 23:54:00,3 Sunset St, Los Angeles,CA,90001 +292311,27in FHD Monitor,1,149.99,2019-11-25 17:17:00,976 Park St, San Francisco,CA,94016 +292312,AA Batteries (4-pack),1,3.84,2019-11-12 19:26:00,592 Hickory St, San Francisco,CA,94016 +292313,Apple Airpods Headphones,1,150.0,2019-11-27 12:35:00,801 Walnut St, New York City,NY,10001 +292314,AAA Batteries (4-pack),1,2.99,2019-11-22 22:48:00,806 Hickory St, Seattle,WA,98101 +292315,Apple Airpods Headphones,1,150.0,2019-11-24 18:53:00,220 14th St, Dallas,TX,75001 +292316,AA Batteries (4-pack),2,3.84,2019-11-17 13:38:00,189 Wilson St, New York City,NY,10001 +292317,USB-C Charging Cable,2,11.95,2019-11-15 21:31:00,649 Lakeview St, San Francisco,CA,94016 +292318,AAA Batteries (4-pack),1,2.99,2019-11-04 11:49:00,25 Cedar St, Portland,OR,97035 +292319,20in Monitor,1,109.99,2019-11-26 20:47:00,669 6th St, Dallas,TX,75001 +292320,Wired Headphones,2,11.99,2019-11-06 19:44:00,983 River St, Los Angeles,CA,90001 +292321,Apple Airpods Headphones,1,150.0,2019-11-17 19:57:00,510 Jefferson St, New York City,NY,10001 +292322,USB-C Charging Cable,1,11.95,2019-11-23 16:32:00,442 Chestnut St, New York City,NY,10001 +292323,USB-C Charging Cable,1,11.95,2019-11-18 11:21:00,832 Park St, Dallas,TX,75001 +292324,Google Phone,1,600.0,2019-11-27 11:55:00,238 2nd St, New York City,NY,10001 +292324,USB-C Charging Cable,1,11.95,2019-11-27 11:55:00,238 2nd St, New York City,NY,10001 +292325,Macbook Pro Laptop,1,1700.0,2019-11-14 14:09:00,432 Walnut St, Dallas,TX,75001 +292326,20in Monitor,1,109.99,2019-11-25 20:48:00,770 8th St, New York City,NY,10001 +292327,AA Batteries (4-pack),1,3.84,2019-11-13 21:17:00,654 4th St, Atlanta,GA,30301 +292328,LG Dryer,1,600.0,2019-11-01 09:59:00,86 11th St, Los Angeles,CA,90001 +292329,34in Ultrawide Monitor,1,379.99,2019-11-24 13:39:00,747 10th St, Portland,ME,04101 +292330,AA Batteries (4-pack),1,3.84,2019-11-27 06:29:00,255 Church St, Austin,TX,73301 +292331,Apple Airpods Headphones,1,150.0,2019-11-07 11:08:00,274 Sunset St, San Francisco,CA,94016 +292332,Lightning Charging Cable,1,14.95,2019-11-06 15:45:00,838 Walnut St, New York City,NY,10001 +292333,Google Phone,1,600.0,2019-11-05 21:50:00,987 Madison St, Los Angeles,CA,90001 +292334,Apple Airpods Headphones,1,150.0,2019-11-15 13:00:00,633 Madison St, Boston,MA,02215 +292335,AA Batteries (4-pack),1,3.84,2019-11-09 11:23:00,834 5th St, Dallas,TX,75001 +292336,27in FHD Monitor,1,149.99,2019-11-24 11:09:00,829 Forest St, New York City,NY,10001 +292337,Bose SoundSport Headphones,1,99.99,2019-11-08 19:53:00,867 Chestnut St, Los Angeles,CA,90001 +292338,Google Phone,1,600.0,2019-11-02 09:35:00,288 Ridge St, Los Angeles,CA,90001 +292339,Lightning Charging Cable,1,14.95,2019-11-24 01:25:00,283 8th St, Dallas,TX,75001 +292340,USB-C Charging Cable,1,11.95,2019-11-12 16:15:00,599 Meadow St, Los Angeles,CA,90001 +292341,Bose SoundSport Headphones,1,99.99,2019-11-05 13:25:00,736 Hickory St, New York City,NY,10001 +292342,Macbook Pro Laptop,1,1700.0,2019-11-03 09:35:00,963 Wilson St, Los Angeles,CA,90001 +292343,Macbook Pro Laptop,1,1700.0,2019-11-30 09:36:00,909 Chestnut St, New York City,NY,10001 +292344,USB-C Charging Cable,1,11.95,2019-11-18 00:32:00,932 Lincoln St, Seattle,WA,98101 +292345,Wired Headphones,1,11.99,2019-11-11 20:13:00,530 South St, San Francisco,CA,94016 +292346,USB-C Charging Cable,1,11.95,2019-11-16 11:19:00,701 Willow St, Seattle,WA,98101 +292347,iPhone,1,700.0,2019-11-04 06:06:00,118 Chestnut St, New York City,NY,10001 +292348,USB-C Charging Cable,1,11.95,2019-11-13 18:41:00,947 1st St, Atlanta,GA,30301 +292349,Lightning Charging Cable,1,14.95,2019-11-10 07:01:00,257 Church St, Dallas,TX,75001 +292350,Bose SoundSport Headphones,1,99.99,2019-11-09 15:33:00,933 Lake St, Seattle,WA,98101 +292351,AA Batteries (4-pack),1,3.84,2019-11-21 11:53:00,206 Church St, Boston,MA,02215 +292352,Macbook Pro Laptop,1,1700.0,2019-11-22 14:24:00,154 Sunset St, San Francisco,CA,94016 +292353,USB-C Charging Cable,1,11.95,2019-11-16 20:12:00,170 Hickory St, Los Angeles,CA,90001 +292354,20in Monitor,1,109.99,2019-11-12 11:58:00,98 Lake St, Portland,OR,97035 +292355,AAA Batteries (4-pack),2,2.99,2019-11-05 10:57:00,29 Center St, New York City,NY,10001 +292356,AAA Batteries (4-pack),1,2.99,2019-11-13 16:23:00,881 Lakeview St, Los Angeles,CA,90001 +292357,USB-C Charging Cable,1,11.95,2019-11-01 20:29:00,115 Wilson St, Boston,MA,02215 +292358,AA Batteries (4-pack),1,3.84,2019-11-26 19:32:00,90 Forest St, Seattle,WA,98101 +292359,USB-C Charging Cable,1,11.95,2019-11-25 14:20:00,306 2nd St, Boston,MA,02215 +292360,Lightning Charging Cable,1,14.95,2019-11-29 05:34:00,648 13th St, Los Angeles,CA,90001 +292361,USB-C Charging Cable,1,11.95,2019-11-20 14:09:00,44 Hickory St, Boston,MA,02215 +292362,27in 4K Gaming Monitor,1,389.99,2019-11-04 15:46:00,761 Hill St, Dallas,TX,75001 +292363,Apple Airpods Headphones,1,150.0,2019-11-19 16:27:00,838 Walnut St, Boston,MA,02215 +292364,AA Batteries (4-pack),1,3.84,2019-11-14 23:26:00,350 Walnut St, Portland,OR,97035 +292364,27in FHD Monitor,1,149.99,2019-11-14 23:26:00,350 Walnut St, Portland,OR,97035 +292365,Lightning Charging Cable,1,14.95,2019-11-24 07:47:00,735 Ridge St, Portland,OR,97035 +292366,Wired Headphones,1,11.99,2019-11-10 23:00:00,266 Elm St, San Francisco,CA,94016 +292367,ThinkPad Laptop,1,999.99,2019-11-18 14:05:00,446 Hickory St, Los Angeles,CA,90001 +292368,Bose SoundSport Headphones,1,99.99,2019-11-16 09:14:00,937 Meadow St, New York City,NY,10001 +292369,Apple Airpods Headphones,1,150.0,2019-11-16 19:52:00,44 North St, Boston,MA,02215 +292370,34in Ultrawide Monitor,1,379.99,2019-11-07 20:45:00,425 10th St, New York City,NY,10001 +292371,Flatscreen TV,1,300.0,2019-11-02 00:27:00,860 Spruce St, Atlanta,GA,30301 +292372,Macbook Pro Laptop,1,1700.0,2019-11-08 14:06:00,636 Cherry St, New York City,NY,10001 +292373,AA Batteries (4-pack),1,3.84,2019-11-20 10:13:00,536 1st St, San Francisco,CA,94016 +292374,AA Batteries (4-pack),1,3.84,2019-11-26 09:08:00,935 9th St, Seattle,WA,98101 +292375,AAA Batteries (4-pack),3,2.99,2019-11-07 16:23:00,305 South St, New York City,NY,10001 +292376,iPhone,1,700.0,2019-11-19 23:58:00,363 12th St, Seattle,WA,98101 +292376,Lightning Charging Cable,1,14.95,2019-11-19 23:58:00,363 12th St, Seattle,WA,98101 +292377,AAA Batteries (4-pack),1,2.99,2019-11-14 15:19:00,226 Elm St, Austin,TX,73301 +292378,20in Monitor,1,109.99,2019-11-30 07:07:00,330 1st St, Los Angeles,CA,90001 +292379,Flatscreen TV,1,300.0,2019-11-24 14:50:00,893 South St, Los Angeles,CA,90001 +292380,Bose SoundSport Headphones,1,99.99,2019-11-04 20:54:00,711 Hill St, New York City,NY,10001 +292381,Flatscreen TV,1,300.0,2019-11-14 12:43:00,13 11th St, San Francisco,CA,94016 +292382,Wired Headphones,1,11.99,2019-11-04 10:15:00,333 Cherry St, Los Angeles,CA,90001 +292383,AAA Batteries (4-pack),3,2.99,2019-11-29 12:01:00,483 11th St, Portland,ME,04101 +292384,Lightning Charging Cable,2,14.95,2019-11-02 16:02:00,940 Dogwood St, New York City,NY,10001 +292385,27in 4K Gaming Monitor,1,389.99,2019-11-04 16:08:00,67 14th St, Atlanta,GA,30301 +292386,Flatscreen TV,1,300.0,2019-11-09 14:43:00,93 Elm St, San Francisco,CA,94016 +292387,Bose SoundSport Headphones,1,99.99,2019-11-20 18:39:00,591 Walnut St, Portland,OR,97035 +292388,27in 4K Gaming Monitor,1,389.99,2019-11-05 18:37:00,275 Church St, Los Angeles,CA,90001 +292389,Flatscreen TV,1,300.0,2019-11-19 09:55:00,84 Main St, Los Angeles,CA,90001 +292390,AAA Batteries (4-pack),2,2.99,2019-11-08 13:38:00,476 North St, San Francisco,CA,94016 +292391,USB-C Charging Cable,1,11.95,2019-11-13 10:27:00,934 2nd St, San Francisco,CA,94016 +292392,USB-C Charging Cable,1,11.95,2019-11-22 20:47:00,647 Center St, Austin,TX,73301 +292393,Wired Headphones,1,11.99,2019-11-22 08:39:00,966 Forest St, Atlanta,GA,30301 +292394,34in Ultrawide Monitor,1,379.99,2019-11-29 11:12:00,807 Church St, Atlanta,GA,30301 +292395,AAA Batteries (4-pack),1,2.99,2019-11-27 11:17:00,621 Johnson St, Boston,MA,02215 +292396,27in FHD Monitor,1,149.99,2019-11-19 16:17:00,839 Hill St, Dallas,TX,75001 +292397,Bose SoundSport Headphones,1,99.99,2019-11-13 20:18:00,508 Jefferson St, New York City,NY,10001 +292398,Wired Headphones,1,11.99,2019-11-03 20:06:00,200 5th St, New York City,NY,10001 +292399,Bose SoundSport Headphones,1,99.99,2019-11-21 20:28:00,673 Meadow St, Seattle,WA,98101 +292400,USB-C Charging Cable,1,11.95,2019-11-23 16:43:00,153 Highland St, New York City,NY,10001 +292401,27in FHD Monitor,1,149.99,2019-11-11 17:03:00,483 Pine St, New York City,NY,10001 +292402,Wired Headphones,1,11.99,2019-11-25 07:28:00,327 Jefferson St, San Francisco,CA,94016 +292403,27in FHD Monitor,1,149.99,2019-11-26 17:02:00,381 Forest St, San Francisco,CA,94016 +292404,Bose SoundSport Headphones,1,99.99,2019-11-21 19:35:00,404 South St, Austin,TX,73301 +292405,USB-C Charging Cable,1,11.95,2019-11-21 12:16:00,82 West St, Atlanta,GA,30301 +292406,AAA Batteries (4-pack),2,2.99,2019-11-01 13:56:00,449 Madison St, Boston,MA,02215 +292407,Wired Headphones,1,11.99,2019-11-17 10:28:00,778 2nd St, New York City,NY,10001 +292408,Flatscreen TV,1,300.0,2019-11-06 23:02:00,69 Hickory St, San Francisco,CA,94016 +292409,USB-C Charging Cable,1,11.95,2019-11-08 11:41:00,879 North St, Los Angeles,CA,90001 +292410,USB-C Charging Cable,1,11.95,2019-11-19 16:24:00,752 South St, San Francisco,CA,94016 +292411,Apple Airpods Headphones,1,150.0,2019-11-16 16:09:00,888 West St, New York City,NY,10001 +292412,27in FHD Monitor,1,149.99,2019-11-11 16:13:00,487 Forest St, San Francisco,CA,94016 +292413,AA Batteries (4-pack),1,3.84,2019-11-18 13:37:00,248 Lakeview St, New York City,NY,10001 +292414,Bose SoundSport Headphones,1,99.99,2019-11-16 11:31:00,860 Chestnut St, San Francisco,CA,94016 +292415,27in 4K Gaming Monitor,1,389.99,2019-11-19 19:11:00,695 Walnut St, Atlanta,GA,30301 +292416,AAA Batteries (4-pack),1,2.99,2019-11-02 12:02:00,52 Washington St, Los Angeles,CA,90001 +292417,Wired Headphones,1,11.99,2019-11-21 11:57:00,988 Lincoln St, New York City,NY,10001 +292417,USB-C Charging Cable,1,11.95,2019-11-21 11:57:00,988 Lincoln St, New York City,NY,10001 +292418,Bose SoundSport Headphones,1,99.99,2019-11-28 14:12:00,715 Center St, Dallas,TX,75001 +292419,AA Batteries (4-pack),1,3.84,2019-11-02 21:14:00,308 Park St, Los Angeles,CA,90001 +292420,AA Batteries (4-pack),1,3.84,2019-11-20 11:31:00,783 13th St, Dallas,TX,75001 +292421,USB-C Charging Cable,1,11.95,2019-11-16 12:38:00,784 Adams St, Austin,TX,73301 +292422,34in Ultrawide Monitor,1,379.99,2019-11-15 16:25:00,552 Elm St, Austin,TX,73301 +292423,AAA Batteries (4-pack),1,2.99,2019-11-01 11:55:00,454 Dogwood St, Austin,TX,73301 +292424,AA Batteries (4-pack),1,3.84,2019-11-07 19:17:00,788 Park St, Dallas,TX,75001 +292425,Bose SoundSport Headphones,1,99.99,2019-11-14 11:40:00,452 2nd St, San Francisco,CA,94016 +292426,Flatscreen TV,1,300.0,2019-11-13 21:03:00,479 Maple St, New York City,NY,10001 +292427,Lightning Charging Cable,1,14.95,2019-11-25 11:40:00,262 Johnson St, San Francisco,CA,94016 +292428,Lightning Charging Cable,1,14.95,2019-11-25 10:11:00,200 Meadow St, New York City,NY,10001 +292429,Wired Headphones,1,11.99,2019-11-25 02:39:00,906 13th St, New York City,NY,10001 +292430,Wired Headphones,1,11.99,2019-11-01 19:49:00,265 River St, New York City,NY,10001 +292431,34in Ultrawide Monitor,1,379.99,2019-11-09 16:50:00,968 West St, San Francisco,CA,94016 +292432,Apple Airpods Headphones,1,150.0,2019-11-28 10:16:00,400 Cherry St, Dallas,TX,75001 +292433,Lightning Charging Cable,1,14.95,2019-11-12 10:43:00,87 Johnson St, San Francisco,CA,94016 +292434,Wired Headphones,1,11.99,2019-11-08 13:45:00,434 Center St, San Francisco,CA,94016 +292435,AAA Batteries (4-pack),1,2.99,2019-11-08 12:45:00,256 South St, Portland,OR,97035 +292436,Lightning Charging Cable,1,14.95,2019-11-22 12:33:00,140 14th St, Seattle,WA,98101 +292437,Apple Airpods Headphones,1,150.0,2019-11-10 13:16:00,110 Cherry St, New York City,NY,10001 +292438,Lightning Charging Cable,1,14.95,2019-11-04 07:16:00,908 North St, San Francisco,CA,94016 +292439,Bose SoundSport Headphones,1,99.99,2019-11-02 17:40:00,794 North St, San Francisco,CA,94016 +292440,27in 4K Gaming Monitor,1,389.99,2019-11-29 09:53:00,422 Johnson St, San Francisco,CA,94016 +292441,Lightning Charging Cable,1,14.95,2019-11-16 23:29:00,810 Sunset St, San Francisco,CA,94016 +292442,Bose SoundSport Headphones,1,99.99,2019-11-29 23:14:00,725 Center St, Los Angeles,CA,90001 +292443,Wired Headphones,1,11.99,2019-11-16 15:00:00,521 Lincoln St, San Francisco,CA,94016 +292444,20in Monitor,1,109.99,2019-11-07 21:10:00,915 14th St, Austin,TX,73301 +292445,Lightning Charging Cable,1,14.95,2019-11-20 17:41:00,836 North St, San Francisco,CA,94016 +292446,Bose SoundSport Headphones,1,99.99,2019-11-27 11:14:00,500 12th St, New York City,NY,10001 +292446,Apple Airpods Headphones,1,150.0,2019-11-27 11:14:00,500 12th St, New York City,NY,10001 +292447,27in FHD Monitor,1,149.99,2019-11-27 16:16:00,424 Walnut St, San Francisco,CA,94016 +292448,AA Batteries (4-pack),1,3.84,2019-11-30 07:35:00,638 Cedar St, Austin,TX,73301 +292449,Bose SoundSport Headphones,1,99.99,2019-11-12 18:18:00,151 Walnut St, Los Angeles,CA,90001 +292450,Bose SoundSport Headphones,1,99.99,2019-11-26 23:05:00,603 Chestnut St, San Francisco,CA,94016 +292451,Apple Airpods Headphones,1,150.0,2019-11-14 22:48:00,840 Wilson St, San Francisco,CA,94016 +292452,Lightning Charging Cable,4,14.95,2019-11-26 19:26:00,763 River St, Atlanta,GA,30301 +292453,27in 4K Gaming Monitor,1,389.99,2019-11-03 22:44:00,921 8th St, Los Angeles,CA,90001 +292454,34in Ultrawide Monitor,1,379.99,2019-11-07 16:19:00,12 Adams St, Los Angeles,CA,90001 +292455,Wired Headphones,2,11.99,2019-11-18 11:49:00,304 Lakeview St, Austin,TX,73301 +292456,USB-C Charging Cable,1,11.95,2019-11-19 20:37:00,320 6th St, New York City,NY,10001 +292457,AAA Batteries (4-pack),1,2.99,2019-11-18 18:24:00,458 Cherry St, New York City,NY,10001 +292458,Apple Airpods Headphones,1,150.0,2019-11-01 12:22:00,133 7th St, Atlanta,GA,30301 +292459,AAA Batteries (4-pack),1,2.99,2019-11-03 10:43:00,94 West St, Seattle,WA,98101 +292460,Bose SoundSport Headphones,1,99.99,2019-11-20 12:20:00,961 7th St, San Francisco,CA,94016 +292461,Wired Headphones,1,11.99,2019-11-03 15:36:00,449 7th St, Atlanta,GA,30301 +292462,Lightning Charging Cable,1,14.95,2019-11-16 13:53:00,813 10th St, New York City,NY,10001 +292463,AA Batteries (4-pack),2,3.84,2019-11-22 16:56:00,406 Sunset St, Los Angeles,CA,90001 +292464,USB-C Charging Cable,1,11.95,2019-11-09 17:17:00,186 6th St, Dallas,TX,75001 +292465,AA Batteries (4-pack),1,3.84,2019-11-12 22:10:00,705 Washington St, Dallas,TX,75001 +292466,Wired Headphones,1,11.99,2019-11-23 12:38:00,519 2nd St, Atlanta,GA,30301 +292467,20in Monitor,1,109.99,2019-11-27 02:00:00,716 Highland St, New York City,NY,10001 +292468,USB-C Charging Cable,1,11.95,2019-11-05 05:19:00,845 Maple St, New York City,NY,10001 +292469,Wired Headphones,1,11.99,2019-11-28 16:15:00,185 Jackson St, New York City,NY,10001 +292470,Lightning Charging Cable,1,14.95,2019-11-29 20:03:00,266 River St, Los Angeles,CA,90001 +292471,AAA Batteries (4-pack),1,2.99,2019-11-18 10:41:00,596 Adams St, Los Angeles,CA,90001 +292472,AAA Batteries (4-pack),1,2.99,2019-11-12 20:45:00,273 Madison St, New York City,NY,10001 +292473,Bose SoundSport Headphones,1,99.99,2019-11-28 15:42:00,203 Elm St, Seattle,WA,98101 +292474,AAA Batteries (4-pack),1,2.99,2019-11-22 10:45:00,352 2nd St, Austin,TX,73301 +292475,Wired Headphones,1,11.99,2019-11-30 17:53:00,183 Willow St, New York City,NY,10001 +292476,USB-C Charging Cable,1,11.95,2019-11-07 16:19:00,619 Maple St, Los Angeles,CA,90001 +292477,27in 4K Gaming Monitor,1,389.99,2019-11-15 23:59:00,788 River St, San Francisco,CA,94016 +292478,27in FHD Monitor,1,149.99,2019-11-08 10:21:00,603 4th St, Boston,MA,02215 +292479,AA Batteries (4-pack),1,3.84,2019-11-10 15:28:00,150 10th St, Portland,OR,97035 +292480,USB-C Charging Cable,1,11.95,2019-11-26 14:24:00,987 Adams St, Portland,OR,97035 +292481,Wired Headphones,1,11.99,2019-11-07 13:00:00,153 Elm St, New York City,NY,10001 +292482,AAA Batteries (4-pack),1,2.99,2019-11-20 21:29:00,22 6th St, New York City,NY,10001 +292483,Lightning Charging Cable,1,14.95,2019-11-08 15:22:00,255 Highland St, San Francisco,CA,94016 +292484,Bose SoundSport Headphones,1,99.99,2019-11-27 00:13:00,689 13th St, San Francisco,CA,94016 +292485,AA Batteries (4-pack),2,3.84,2019-11-25 16:59:00,406 Hickory St, Dallas,TX,75001 +292486,27in FHD Monitor,1,149.99,2019-11-13 15:33:00,206 1st St, Boston,MA,02215 +292487,Google Phone,1,600.0,2019-11-19 03:02:00,830 Lake St, Dallas,TX,75001 +292488,Lightning Charging Cable,1,14.95,2019-11-10 14:08:00,520 Park St, Atlanta,GA,30301 +292489,27in FHD Monitor,1,149.99,2019-11-12 10:40:00,715 5th St, Atlanta,GA,30301 +292490,Bose SoundSport Headphones,1,99.99,2019-11-17 14:44:00,296 13th St, New York City,NY,10001 +292491,Apple Airpods Headphones,1,150.0,2019-11-22 18:14:00,372 Lakeview St, San Francisco,CA,94016 +292492,Wired Headphones,1,11.99,2019-11-23 04:46:00,332 Lake St, San Francisco,CA,94016 +292493,AAA Batteries (4-pack),1,2.99,2019-11-03 18:11:00,725 Wilson St, Dallas,TX,75001 +292494,Lightning Charging Cable,1,14.95,2019-11-04 10:14:00,412 West St, Boston,MA,02215 +292495,Flatscreen TV,1,300.0,2019-11-13 15:36:00,345 9th St, Boston,MA,02215 +292496,Lightning Charging Cable,1,14.95,2019-11-13 11:55:00,99 Forest St, Boston,MA,02215 +292497,27in FHD Monitor,1,149.99,2019-11-19 23:05:00,700 Johnson St, Austin,TX,73301 +292498,Google Phone,1,600.0,2019-11-06 15:31:00,657 Maple St, Seattle,WA,98101 +292499,Bose SoundSport Headphones,1,99.99,2019-11-05 20:35:00,647 Pine St, San Francisco,CA,94016 +292500,USB-C Charging Cable,1,11.95,2019-11-02 18:28:00,700 11th St, Los Angeles,CA,90001 +292501,USB-C Charging Cable,1,11.95,2019-11-03 19:35:00,617 Sunset St, New York City,NY,10001 +292502,AAA Batteries (4-pack),1,2.99,2019-11-14 21:33:00,98 Spruce St, San Francisco,CA,94016 +292503,AA Batteries (4-pack),3,3.84,2019-11-01 18:41:00,546 Wilson St, Los Angeles,CA,90001 +292504,Wired Headphones,1,11.99,2019-11-22 00:49:00,673 North St, Los Angeles,CA,90001 +292505,Wired Headphones,1,11.99,2019-11-19 13:05:00,707 Hill St, Austin,TX,73301 +292506,AAA Batteries (4-pack),1,2.99,2019-11-29 11:57:00,866 Adams St, New York City,NY,10001 +292507,AAA Batteries (4-pack),1,2.99,2019-11-24 18:21:00,150 5th St, San Francisco,CA,94016 +292508,Lightning Charging Cable,1,14.95,2019-11-09 10:58:00,22 11th St, Austin,TX,73301 +292508,27in FHD Monitor,2,149.99,2019-11-09 10:58:00,22 11th St, Austin,TX,73301 +292509,Vareebadd Phone,1,400.0,2019-11-28 13:32:00,346 Ridge St, Seattle,WA,98101 +292509,USB-C Charging Cable,1,11.95,2019-11-28 13:32:00,346 Ridge St, Seattle,WA,98101 +292510,LG Dryer,1,600.0,2019-11-10 13:27:00,428 Chestnut St, Seattle,WA,98101 +292511,iPhone,1,700.0,2019-11-29 11:39:00,215 8th St, Los Angeles,CA,90001 +292512,Lightning Charging Cable,1,14.95,2019-11-15 12:28:00,268 Elm St, Boston,MA,02215 +292513,AA Batteries (4-pack),1,3.84,2019-11-08 07:17:00,522 10th St, Boston,MA,02215 +292513,34in Ultrawide Monitor,1,379.99,2019-11-08 07:17:00,522 10th St, Boston,MA,02215 +292514,20in Monitor,1,109.99,2019-11-17 16:07:00,474 8th St, San Francisco,CA,94016 +292515,Apple Airpods Headphones,1,150.0,2019-11-02 16:20:00,143 Jefferson St, San Francisco,CA,94016 +292516,USB-C Charging Cable,1,11.95,2019-11-29 08:32:00,703 Pine St, Los Angeles,CA,90001 +292517,27in 4K Gaming Monitor,1,389.99,2019-11-06 16:38:00,663 Highland St, New York City,NY,10001 +292518,iPhone,1,700.0,2019-11-27 16:27:00,363 6th St, New York City,NY,10001 +292519,Apple Airpods Headphones,1,150.0,2019-11-16 14:53:00,511 Jackson St, Dallas,TX,75001 +292520,27in 4K Gaming Monitor,1,389.99,2019-11-30 14:43:00,860 1st St, Boston,MA,02215 +292521,AAA Batteries (4-pack),1,2.99,2019-11-19 09:09:00,738 Spruce St, Los Angeles,CA,90001 +292522,AAA Batteries (4-pack),2,2.99,2019-11-02 08:40:00,30 Madison St, Dallas,TX,75001 +292523,Bose SoundSport Headphones,1,99.99,2019-11-06 17:22:00,744 River St, Atlanta,GA,30301 +292524,Apple Airpods Headphones,1,150.0,2019-11-20 20:42:00,801 Highland St, Seattle,WA,98101 +292525,USB-C Charging Cable,1,11.95,2019-11-05 21:33:00,528 North St, San Francisco,CA,94016 +292526,AA Batteries (4-pack),2,3.84,2019-11-10 15:45:00,957 Willow St, San Francisco,CA,94016 +292527,Lightning Charging Cable,1,14.95,2019-11-13 11:24:00,523 Church St, San Francisco,CA,94016 +292528,LG Dryer,1,600.0,2019-11-15 20:39:00,141 Ridge St, San Francisco,CA,94016 +292529,Lightning Charging Cable,2,14.95,2019-11-14 10:44:00,507 11th St, New York City,NY,10001 +292530,Apple Airpods Headphones,1,150.0,2019-11-17 09:02:00,618 Spruce St, Boston,MA,02215 +292531,iPhone,1,700.0,2019-11-28 08:48:00,30 10th St, Boston,MA,02215 +292532,Apple Airpods Headphones,1,150.0,2019-11-20 13:09:00,603 South St, San Francisco,CA,94016 +292533,Lightning Charging Cable,1,14.95,2019-11-27 17:40:00,918 Willow St, San Francisco,CA,94016 +292534,27in FHD Monitor,1,149.99,2019-11-05 20:32:00,81 Chestnut St, Atlanta,GA,30301 +292535,USB-C Charging Cable,1,11.95,2019-11-16 20:08:00,587 Sunset St, San Francisco,CA,94016 +292536,Bose SoundSport Headphones,1,99.99,2019-11-17 19:46:00,267 11th St, Boston,MA,02215 +292537,AAA Batteries (4-pack),2,2.99,2019-11-24 13:42:00,406 Center St, Boston,MA,02215 +292538,USB-C Charging Cable,1,11.95,2019-11-22 14:06:00,908 Park St, Portland,ME,04101 +292539,Google Phone,1,600.0,2019-11-19 18:49:00,47 4th St, Seattle,WA,98101 +292539,USB-C Charging Cable,1,11.95,2019-11-19 18:49:00,47 4th St, Seattle,WA,98101 +292539,Wired Headphones,1,11.99,2019-11-19 18:49:00,47 4th St, Seattle,WA,98101 +292540,Wired Headphones,1,11.99,2019-11-13 19:43:00,821 Willow St, San Francisco,CA,94016 +292541,Flatscreen TV,1,300.0,2019-11-20 19:47:00,3 West St, San Francisco,CA,94016 +292542,Macbook Pro Laptop,1,1700.0,2019-11-24 14:06:00,923 9th St, New York City,NY,10001 +292543,Vareebadd Phone,1,400.0,2019-11-08 22:44:00,950 Center St, New York City,NY,10001 +292544,27in 4K Gaming Monitor,1,389.99,2019-11-25 09:43:00,326 Lincoln St, Seattle,WA,98101 +292545,Wired Headphones,1,11.99,2019-11-07 15:58:00,225 6th St, Dallas,TX,75001 +292546,Wired Headphones,1,11.99,2019-11-19 19:46:00,59 Forest St, San Francisco,CA,94016 +292547,20in Monitor,1,109.99,2019-11-03 10:04:00,257 Center St, Portland,ME,04101 +292548,AAA Batteries (4-pack),1,2.99,2019-11-03 22:55:00,141 Church St, New York City,NY,10001 +292549,ThinkPad Laptop,1,999.99,2019-11-10 19:09:00,161 6th St, New York City,NY,10001 +292550,Apple Airpods Headphones,1,150.0,2019-11-13 15:59:00,267 Jackson St, Los Angeles,CA,90001 +292551,34in Ultrawide Monitor,1,379.99,2019-11-20 05:37:00,244 Lake St, Los Angeles,CA,90001 +292552,Apple Airpods Headphones,1,150.0,2019-11-28 15:26:00,337 4th St, Austin,TX,73301 +292553,iPhone,1,700.0,2019-11-04 11:56:00,906 Ridge St, Dallas,TX,75001 +292554,27in 4K Gaming Monitor,1,389.99,2019-11-18 18:50:00,35 Cherry St, Los Angeles,CA,90001 +292555,Bose SoundSport Headphones,1,99.99,2019-11-07 10:41:00,18 Jackson St, Portland,OR,97035 +292556,AAA Batteries (4-pack),1,2.99,2019-11-01 14:38:00,238 8th St, Dallas,TX,75001 +292557,AAA Batteries (4-pack),1,2.99,2019-11-05 23:28:00,662 Chestnut St, San Francisco,CA,94016 +292558,Lightning Charging Cable,1,14.95,2019-11-30 21:53:00,734 Jefferson St, San Francisco,CA,94016 +292559,USB-C Charging Cable,1,11.95,2019-11-15 22:56:00,223 Maple St, Boston,MA,02215 +292560,Wired Headphones,1,11.99,2019-11-11 13:54:00,120 Lake St, Atlanta,GA,30301 +292561,Apple Airpods Headphones,1,150.0,2019-11-09 12:06:00,203 2nd St, Dallas,TX,75001 +292562,Google Phone,1,600.0,2019-11-18 09:48:00,737 Pine St, Los Angeles,CA,90001 +292563,Vareebadd Phone,1,400.0,2019-11-16 19:08:00,735 9th St, Austin,TX,73301 +292564,Apple Airpods Headphones,1,150.0,2019-11-18 19:36:00,296 13th St, New York City,NY,10001 +292565,Apple Airpods Headphones,1,150.0,2019-11-10 18:05:00,414 Maple St, San Francisco,CA,94016 +292566,USB-C Charging Cable,1,11.95,2019-11-11 11:12:00,239 Elm St, San Francisco,CA,94016 +292567,Macbook Pro Laptop,1,1700.0,2019-11-07 20:41:00,684 Madison St, San Francisco,CA,94016 +292568,USB-C Charging Cable,1,11.95,2019-11-27 00:21:00,925 Chestnut St, Los Angeles,CA,90001 +292569,Apple Airpods Headphones,1,150.0,2019-11-24 01:14:00,500 Jefferson St, New York City,NY,10001 +292570,Lightning Charging Cable,1,14.95,2019-11-22 08:43:00,512 Center St, New York City,NY,10001 +292571,AA Batteries (4-pack),1,3.84,2019-11-05 21:25:00,505 Lincoln St, Dallas,TX,75001 +292572,Bose SoundSport Headphones,1,99.99,2019-11-20 22:28:00,383 Cedar St, Austin,TX,73301 +292573,Lightning Charging Cable,1,14.95,2019-11-04 11:21:00,731 Adams St, Portland,OR,97035 +292574,Wired Headphones,1,11.99,2019-11-03 18:48:00,362 Adams St, New York City,NY,10001 +292575,LG Washing Machine,1,600.0,2019-11-30 12:12:00,706 Lakeview St, Atlanta,GA,30301 +292576,Lightning Charging Cable,1,14.95,2019-11-14 10:18:00,542 4th St, Seattle,WA,98101 +292577,27in 4K Gaming Monitor,1,389.99,2019-11-25 19:08:00,675 Dogwood St, Los Angeles,CA,90001 +292578,Apple Airpods Headphones,1,150.0,2019-11-25 02:39:00,747 Madison St, New York City,NY,10001 +292579,Bose SoundSport Headphones,1,99.99,2019-11-29 12:57:00,703 Pine St, New York City,NY,10001 +292580,iPhone,1,700.0,2019-11-23 13:37:00,721 Jackson St, Atlanta,GA,30301 +292581,AA Batteries (4-pack),1,3.84,2019-11-12 08:50:00,564 Madison St, Boston,MA,02215 +292582,AA Batteries (4-pack),4,3.84,2019-11-07 14:01:00,448 West St, Boston,MA,02215 +292583,iPhone,1,700.0,2019-11-27 20:27:00,770 Maple St, Seattle,WA,98101 +292584,Wired Headphones,1,11.99,2019-11-18 23:50:00,242 Meadow St, Los Angeles,CA,90001 +292585,USB-C Charging Cable,1,11.95,2019-11-09 15:07:00,854 Walnut St, Los Angeles,CA,90001 +292586,Lightning Charging Cable,1,14.95,2019-11-30 20:40:00,343 Lakeview St, Boston,MA,02215 +292587,Apple Airpods Headphones,1,150.0,2019-11-01 09:55:00,934 Elm St, Boston,MA,02215 +292588,Apple Airpods Headphones,1,150.0,2019-11-04 09:44:00,225 Church St, New York City,NY,10001 +292589,AA Batteries (4-pack),3,3.84,2019-11-07 17:50:00,46 Chestnut St, Los Angeles,CA,90001 +292590,Apple Airpods Headphones,1,150.0,2019-11-30 20:04:00,507 10th St, San Francisco,CA,94016 +292591,AAA Batteries (4-pack),1,2.99,2019-11-05 15:56:00,199 Forest St, Seattle,WA,98101 +292592,ThinkPad Laptop,1,999.99,2019-11-30 10:34:00,458 9th St, San Francisco,CA,94016 +292593,Wired Headphones,1,11.99,2019-11-02 23:58:00,529 Cedar St, Seattle,WA,98101 +292594,34in Ultrawide Monitor,1,379.99,2019-11-13 13:36:00,567 South St, Atlanta,GA,30301 +292595,AAA Batteries (4-pack),1,2.99,2019-11-13 11:56:00,628 6th St, San Francisco,CA,94016 +292596,Macbook Pro Laptop,1,1700.0,2019-11-27 14:29:00,601 North St, San Francisco,CA,94016 +292597,ThinkPad Laptop,1,999.99,2019-11-01 12:01:00,241 Chestnut St, San Francisco,CA,94016 +292598,Lightning Charging Cable,1,14.95,2019-11-13 10:51:00,879 Hill St, Atlanta,GA,30301 +292599,Lightning Charging Cable,1,14.95,2019-11-18 20:29:00,648 Hill St, Atlanta,GA,30301 +292600,27in FHD Monitor,1,149.99,2019-11-29 18:34:00,262 2nd St, San Francisco,CA,94016 +292601,Apple Airpods Headphones,1,150.0,2019-11-03 14:39:00,103 Hickory St, Atlanta,GA,30301 +292602,Google Phone,1,600.0,2019-11-29 16:08:00,545 12th St, New York City,NY,10001 +292603,27in FHD Monitor,1,149.99,2019-11-06 18:52:00,890 Center St, Boston,MA,02215 +292604,Bose SoundSport Headphones,1,99.99,2019-11-20 21:55:00,215 Maple St, Los Angeles,CA,90001 +292605,34in Ultrawide Monitor,1,379.99,2019-11-09 12:25:00,913 Wilson St, Boston,MA,02215 +292606,AA Batteries (4-pack),1,3.84,2019-11-18 19:35:00,923 Wilson St, Dallas,TX,75001 +292607,AAA Batteries (4-pack),1,2.99,2019-11-19 16:25:00,397 14th St, New York City,NY,10001 +292608,Bose SoundSport Headphones,1,99.99,2019-11-15 16:52:00,448 Jefferson St, Dallas,TX,75001 +292609,Lightning Charging Cable,1,14.95,2019-11-18 09:45:00,382 West St, Seattle,WA,98101 +292610,Apple Airpods Headphones,2,150.0,2019-11-26 20:56:00,514 8th St, Seattle,WA,98101 +292611,AA Batteries (4-pack),3,3.84,2019-11-06 17:55:00,781 South St, Dallas,TX,75001 +292612,Lightning Charging Cable,1,14.95,2019-11-22 09:38:00,335 Hill St, Seattle,WA,98101 +292613,USB-C Charging Cable,1,11.95,2019-11-01 13:25:00,404 Meadow St, San Francisco,CA,94016 +292614,Apple Airpods Headphones,1,150.0,2019-11-12 12:36:00,833 Madison St, Portland,OR,97035 +292615,Bose SoundSport Headphones,1,99.99,2019-11-30 20:16:00,469 Highland St, San Francisco,CA,94016 +292616,27in FHD Monitor,1,149.99,2019-11-16 00:18:00,147 Main St, Atlanta,GA,30301 +292617,AAA Batteries (4-pack),1,2.99,2019-11-16 08:12:00,34 Washington St, San Francisco,CA,94016 +292618,Google Phone,1,600.0,2019-11-23 19:47:00,524 Wilson St, New York City,NY,10001 +292619,AAA Batteries (4-pack),1,2.99,2019-11-10 22:16:00,664 Lake St, Seattle,WA,98101 +292620,ThinkPad Laptop,1,999.99,2019-11-29 11:40:00,722 Willow St, Los Angeles,CA,90001 +292621,Bose SoundSport Headphones,1,99.99,2019-11-27 13:55:00,336 Dogwood St, San Francisco,CA,94016 +292622,Apple Airpods Headphones,1,150.0,2019-11-27 11:26:00,983 2nd St, San Francisco,CA,94016 +292623,Bose SoundSport Headphones,1,99.99,2019-11-24 15:02:00,436 Madison St, Boston,MA,02215 +292624,AA Batteries (4-pack),2,3.84,2019-11-20 21:15:00,191 Center St, Los Angeles,CA,90001 +292625,AA Batteries (4-pack),1,3.84,2019-11-16 19:41:00,918 Lincoln St, San Francisco,CA,94016 +292626,20in Monitor,1,109.99,2019-11-10 05:07:00,62 Willow St, Atlanta,GA,30301 +292627,Flatscreen TV,1,300.0,2019-11-29 13:31:00,50 1st St, Portland,OR,97035 +292627,34in Ultrawide Monitor,1,379.99,2019-11-29 13:31:00,50 1st St, Portland,OR,97035 +292628,Lightning Charging Cable,1,14.95,2019-11-09 21:16:00,173 Maple St, Los Angeles,CA,90001 +292629,34in Ultrawide Monitor,1,379.99,2019-11-16 14:44:00,110 Main St, San Francisco,CA,94016 +292630,Bose SoundSport Headphones,1,99.99,2019-11-27 00:35:00,831 Adams St, San Francisco,CA,94016 +292631,34in Ultrawide Monitor,1,379.99,2019-11-01 13:41:00,117 Wilson St, Atlanta,GA,30301 +292632,USB-C Charging Cable,1,11.95,2019-11-18 14:15:00,395 1st St, Los Angeles,CA,90001 +292633,AAA Batteries (4-pack),1,2.99,2019-11-27 16:37:00,221 Ridge St, Los Angeles,CA,90001 +292634,AAA Batteries (4-pack),1,2.99,2019-11-06 11:49:00,573 West St, San Francisco,CA,94016 +292635,USB-C Charging Cable,2,11.95,2019-11-15 16:41:00,312 10th St, Los Angeles,CA,90001 +292636,Lightning Charging Cable,1,14.95,2019-11-15 16:38:00,405 Washington St, Seattle,WA,98101 +292637,Wired Headphones,1,11.99,2019-11-13 15:57:00,138 River St, Portland,OR,97035 +292638,AAA Batteries (4-pack),1,2.99,2019-11-19 13:35:00,649 Center St, Seattle,WA,98101 +292639,Lightning Charging Cable,1,14.95,2019-11-28 17:16:00,885 Chestnut St, Dallas,TX,75001 +292640,AA Batteries (4-pack),1,3.84,2019-11-21 13:24:00,601 Jefferson St, Atlanta,GA,30301 +292641,27in FHD Monitor,1,149.99,2019-11-26 11:13:00,687 14th St, San Francisco,CA,94016 +292642,iPhone,1,700.0,2019-11-04 21:57:00,861 Chestnut St, San Francisco,CA,94016 +292643,AAA Batteries (4-pack),1,2.99,2019-11-26 16:40:00,971 7th St, San Francisco,CA,94016 +292644,Wired Headphones,2,11.99,2019-11-14 19:15:00,898 6th St, Boston,MA,02215 +292645,AA Batteries (4-pack),1,3.84,2019-11-15 14:20:00,126 Pine St, Dallas,TX,75001 +292646,Wired Headphones,2,11.99,2019-11-13 14:27:00,85 Johnson St, Dallas,TX,75001 +292647,Macbook Pro Laptop,1,1700.0,2019-11-30 18:09:00,817 Washington St, San Francisco,CA,94016 +292648,Apple Airpods Headphones,1,150.0,2019-11-03 13:46:00,400 6th St, New York City,NY,10001 +292649,AA Batteries (4-pack),1,3.84,2019-11-10 14:46:00,828 Main St, Seattle,WA,98101 +292650,Lightning Charging Cable,1,14.95,2019-11-28 14:35:00,818 14th St, San Francisco,CA,94016 +292651,Vareebadd Phone,1,400.0,2019-11-22 10:39:00,241 Johnson St, Los Angeles,CA,90001 +292651,Google Phone,1,600.0,2019-11-22 10:39:00,241 Johnson St, Los Angeles,CA,90001 +292652,Macbook Pro Laptop,1,1700.0,2019-11-08 15:37:00,291 6th St, Boston,MA,02215 +292653,Lightning Charging Cable,1,14.95,2019-11-19 09:36:00,58 1st St, Austin,TX,73301 +292654,AAA Batteries (4-pack),3,2.99,2019-11-21 21:39:00,488 Park St, Portland,OR,97035 +292655,Lightning Charging Cable,1,14.95,2019-11-20 18:09:00,662 West St, New York City,NY,10001 +292656,AAA Batteries (4-pack),2,2.99,2019-11-18 06:19:00,805 2nd St, San Francisco,CA,94016 +292657,Apple Airpods Headphones,1,150.0,2019-11-26 11:28:00,166 9th St, Atlanta,GA,30301 +292658,34in Ultrawide Monitor,1,379.99,2019-11-23 09:47:00,145 Cedar St, Dallas,TX,75001 +292659,AA Batteries (4-pack),1,3.84,2019-11-21 23:57:00,746 Main St, New York City,NY,10001 +292660,AAA Batteries (4-pack),1,2.99,2019-11-22 01:07:00,407 Hickory St, Los Angeles,CA,90001 +292660,34in Ultrawide Monitor,1,379.99,2019-11-22 01:07:00,407 Hickory St, Los Angeles,CA,90001 +292661,27in 4K Gaming Monitor,1,389.99,2019-11-10 14:15:00,410 Forest St, Seattle,WA,98101 +292662,USB-C Charging Cable,1,11.95,2019-11-03 07:03:00,449 Jefferson St, New York City,NY,10001 +292663,AA Batteries (4-pack),1,3.84,2019-11-17 12:13:00,349 Lake St, San Francisco,CA,94016 +292664,ThinkPad Laptop,1,999.99,2019-11-13 23:37:00,454 River St, Atlanta,GA,30301 +292665,Apple Airpods Headphones,1,150.0,2019-11-24 19:50:00,244 Spruce St, Seattle,WA,98101 +292666,AA Batteries (4-pack),2,3.84,2019-11-06 17:33:00,62 Meadow St, Seattle,WA,98101 +292667,27in 4K Gaming Monitor,1,389.99,2019-11-06 09:59:00,584 Willow St, Boston,MA,02215 +292668,27in FHD Monitor,1,149.99,2019-11-08 08:25:00,136 Dogwood St, San Francisco,CA,94016 +292669,Flatscreen TV,1,300.0,2019-11-08 11:16:00,631 Walnut St, Boston,MA,02215 +292670,20in Monitor,1,109.99,2019-11-03 20:04:00,202 Main St, Atlanta,GA,30301 +292671,AA Batteries (4-pack),1,3.84,2019-11-05 10:14:00,320 11th St, Seattle,WA,98101 +292672,AAA Batteries (4-pack),1,2.99,2019-11-10 09:38:00,665 Lakeview St, Portland,ME,04101 +292673,USB-C Charging Cable,1,11.95,2019-11-17 07:54:00,522 Pine St, Seattle,WA,98101 +292674,AAA Batteries (4-pack),1,2.99,2019-11-26 15:37:00,381 Church St, Portland,OR,97035 +292674,AAA Batteries (4-pack),2,2.99,2019-11-26 15:37:00,381 Church St, Portland,OR,97035 +292675,ThinkPad Laptop,1,999.99,2019-11-15 16:56:00,240 Walnut St, Atlanta,GA,30301 +292676,AA Batteries (4-pack),1,3.84,2019-11-11 20:48:00,926 Walnut St, New York City,NY,10001 +292677,Bose SoundSport Headphones,1,99.99,2019-11-30 15:52:00,895 Cedar St, Austin,TX,73301 +292678,AAA Batteries (4-pack),2,2.99,2019-11-18 19:08:00,870 Main St, San Francisco,CA,94016 +292679,Apple Airpods Headphones,1,150.0,2019-11-23 14:05:00,266 Park St, San Francisco,CA,94016 +292680,USB-C Charging Cable,1,11.95,2019-11-30 17:27:00,644 7th St, New York City,NY,10001 +292681,Bose SoundSport Headphones,1,99.99,2019-11-11 09:51:00,221 6th St, San Francisco,CA,94016 +292682,Wired Headphones,1,11.99,2019-11-25 03:41:00,543 Meadow St, Los Angeles,CA,90001 +292683,USB-C Charging Cable,1,11.95,2019-11-27 11:34:00,518 Madison St, San Francisco,CA,94016 +292684,Apple Airpods Headphones,1,150.0,2019-11-09 14:35:00,140 4th St, San Francisco,CA,94016 +292685,USB-C Charging Cable,1,11.95,2019-11-17 07:57:00,79 Lakeview St, Los Angeles,CA,90001 +292686,Lightning Charging Cable,1,14.95,2019-11-08 16:25:00,672 12th St, Dallas,TX,75001 +292687,Wired Headphones,1,11.99,2019-11-01 11:39:00,908 6th St, Los Angeles,CA,90001 +292688,USB-C Charging Cable,1,11.95,2019-11-23 20:44:00,505 Maple St, San Francisco,CA,94016 +292688,Wired Headphones,1,11.99,2019-11-23 20:44:00,505 Maple St, San Francisco,CA,94016 +292689,Wired Headphones,1,11.99,2019-11-21 18:15:00,465 Ridge St, Dallas,TX,75001 +292690,AAA Batteries (4-pack),1,2.99,2019-11-28 18:19:00,856 2nd St, Los Angeles,CA,90001 +292691,USB-C Charging Cable,1,11.95,2019-11-21 19:09:00,992 14th St, Los Angeles,CA,90001 +292692,Bose SoundSport Headphones,1,99.99,2019-11-24 23:23:00,654 Highland St, New York City,NY,10001 +292693,20in Monitor,1,109.99,2019-11-15 19:19:00,764 7th St, Portland,OR,97035 +292694,AAA Batteries (4-pack),2,2.99,2019-11-10 14:05:00,520 Hickory St, Atlanta,GA,30301 +292695,Lightning Charging Cable,1,14.95,2019-11-05 12:14:00,975 11th St, Dallas,TX,75001 +292696,AAA Batteries (4-pack),1,2.99,2019-11-10 18:45:00,447 Madison St, Los Angeles,CA,90001 +292697,20in Monitor,2,109.99,2019-11-03 16:03:00,364 13th St, New York City,NY,10001 +292698,Flatscreen TV,1,300.0,2019-11-27 18:44:00,531 7th St, Boston,MA,02215 +292699,Bose SoundSport Headphones,1,99.99,2019-11-11 16:02:00,444 North St, Atlanta,GA,30301 +292700,AAA Batteries (4-pack),2,2.99,2019-11-01 03:18:00,586 Ridge St, New York City,NY,10001 +292701,Lightning Charging Cable,1,14.95,2019-11-07 20:20:00,896 Elm St, San Francisco,CA,94016 +292702,USB-C Charging Cable,1,11.95,2019-11-17 17:25:00,58 South St, Los Angeles,CA,90001 +292703,Bose SoundSport Headphones,1,99.99,2019-11-10 16:50:00,866 Dogwood St, San Francisco,CA,94016 +292704,Macbook Pro Laptop,1,1700.0,2019-11-22 02:53:00,253 Lake St, Dallas,TX,75001 +292705,27in FHD Monitor,1,149.99,2019-11-23 12:47:00,265 Highland St, San Francisco,CA,94016 +292706,34in Ultrawide Monitor,1,379.99,2019-11-23 20:53:00,934 Jackson St, Los Angeles,CA,90001 +292707,USB-C Charging Cable,1,11.95,2019-11-05 10:59:00,323 8th St, Seattle,WA,98101 +292708,Apple Airpods Headphones,1,150.0,2019-11-28 14:41:00,16 Church St, New York City,NY,10001 +292709,Wired Headphones,1,11.99,2019-11-02 22:06:00,917 Chestnut St, Seattle,WA,98101 +292709,Lightning Charging Cable,2,14.95,2019-11-02 22:06:00,917 Chestnut St, Seattle,WA,98101 +292710,USB-C Charging Cable,1,11.95,2019-11-19 04:32:00,954 Lincoln St, Seattle,WA,98101 +292711,USB-C Charging Cable,1,11.95,2019-11-29 09:28:00,604 Adams St, Boston,MA,02215 +292712,AAA Batteries (4-pack),1,2.99,2019-11-03 19:34:00,578 North St, San Francisco,CA,94016 +292713,Apple Airpods Headphones,1,150.0,2019-11-04 11:19:00,551 Madison St, New York City,NY,10001 +292714,Google Phone,1,600.0,2019-11-20 22:04:00,35 Madison St, Austin,TX,73301 +292715,Bose SoundSport Headphones,1,99.99,2019-11-01 15:42:00,69 11th St, Dallas,TX,75001 +292716,Wired Headphones,1,11.99,2019-11-05 13:55:00,620 Wilson St, Dallas,TX,75001 +292717,Flatscreen TV,1,300.0,2019-11-11 19:49:00,682 Lakeview St, New York City,NY,10001 +292718,iPhone,1,700.0,2019-11-30 10:21:00,391 Willow St, Seattle,WA,98101 +292719,34in Ultrawide Monitor,1,379.99,2019-11-06 13:00:00,759 11th St, Seattle,WA,98101 +292720,Google Phone,1,600.0,2019-11-06 20:42:00,20 Washington St, Portland,OR,97035 +292721,34in Ultrawide Monitor,1,379.99,2019-11-20 19:01:00,945 10th St, Portland,OR,97035 +292722,AA Batteries (4-pack),1,3.84,2019-11-02 09:08:00,390 Elm St, Los Angeles,CA,90001 +292723,27in 4K Gaming Monitor,1,389.99,2019-11-11 19:18:00,402 Center St, Austin,TX,73301 +292724,Wired Headphones,1,11.99,2019-11-16 14:11:00,437 Meadow St, Los Angeles,CA,90001 +292725,Wired Headphones,1,11.99,2019-11-30 11:43:00,352 2nd St, Atlanta,GA,30301 +292726,20in Monitor,1,109.99,2019-11-05 13:48:00,707 Elm St, Los Angeles,CA,90001 +292727,Google Phone,1,600.0,2019-11-11 12:25:00,278 Ridge St, New York City,NY,10001 +292727,USB-C Charging Cable,2,11.95,2019-11-11 12:25:00,278 Ridge St, New York City,NY,10001 +292728,USB-C Charging Cable,1,11.95,2019-11-13 16:19:00,329 10th St, Atlanta,GA,30301 +292729,Apple Airpods Headphones,1,150.0,2019-11-20 10:33:00,614 5th St, Los Angeles,CA,90001 +292730,Bose SoundSport Headphones,1,99.99,2019-11-07 14:04:00,515 Cherry St, Austin,TX,73301 +292731,Wired Headphones,1,11.99,2019-11-21 11:29:00,26 Lincoln St, Atlanta,GA,30301 +292732,Wired Headphones,1,11.99,2019-11-01 09:39:00,186 8th St, San Francisco,CA,94016 +292733,Lightning Charging Cable,1,14.95,2019-11-26 01:19:00,569 Park St, New York City,NY,10001 +292734,AAA Batteries (4-pack),1,2.99,2019-11-26 10:18:00,380 1st St, New York City,NY,10001 +292735,Bose SoundSport Headphones,1,99.99,2019-11-10 19:54:00,731 Adams St, New York City,NY,10001 +292736,AA Batteries (4-pack),2,3.84,2019-11-02 22:57:00,369 Maple St, Boston,MA,02215 +292737,Bose SoundSport Headphones,1,99.99,2019-11-21 19:00:00,113 9th St, Los Angeles,CA,90001 +292738,Apple Airpods Headphones,1,150.0,2019-11-30 18:10:00,309 South St, San Francisco,CA,94016 +292739,AAA Batteries (4-pack),1,2.99,2019-11-12 01:54:00,337 5th St, Los Angeles,CA,90001 +292740,Lightning Charging Cable,1,14.95,2019-11-04 12:50:00,326 Walnut St, Portland,OR,97035 +292741,ThinkPad Laptop,1,999.99,2019-11-03 19:17:00,940 Main St, New York City,NY,10001 +292742,AAA Batteries (4-pack),1,2.99,2019-11-01 10:31:00,837 Forest St, San Francisco,CA,94016 +292743,USB-C Charging Cable,1,11.95,2019-11-27 18:46:00,673 7th St, San Francisco,CA,94016 +292744,Apple Airpods Headphones,1,150.0,2019-11-14 13:13:00,351 Wilson St, Los Angeles,CA,90001 +292745,Vareebadd Phone,1,400.0,2019-11-07 13:51:00,183 Cedar St, Atlanta,GA,30301 +292746,Lightning Charging Cable,1,14.95,2019-11-18 11:38:00,249 11th St, New York City,NY,10001 +292747,Vareebadd Phone,1,400.0,2019-11-16 09:54:00,88 Pine St, Dallas,TX,75001 +292748,Lightning Charging Cable,1,14.95,2019-11-15 11:43:00,334 Hickory St, Boston,MA,02215 +292749,AAA Batteries (4-pack),2,2.99,2019-11-08 09:23:00,723 Cherry St, Los Angeles,CA,90001 +292750,Lightning Charging Cable,1,14.95,2019-11-30 08:47:00,366 1st St, San Francisco,CA,94016 +292751,Apple Airpods Headphones,1,150.0,2019-11-14 11:56:00,114 Walnut St, New York City,NY,10001 +292752,AAA Batteries (4-pack),1,2.99,2019-11-24 14:48:00,936 7th St, Boston,MA,02215 +292753,Lightning Charging Cable,1,14.95,2019-11-13 09:55:00,271 Ridge St, New York City,NY,10001 +292754,ThinkPad Laptop,1,999.99,2019-11-03 13:00:00,377 Hill St, New York City,NY,10001 +292755,AAA Batteries (4-pack),2,2.99,2019-11-05 18:07:00,213 11th St, San Francisco,CA,94016 +292756,USB-C Charging Cable,1,11.95,2019-11-20 02:00:00,213 Washington St, San Francisco,CA,94016 +292757,34in Ultrawide Monitor,1,379.99,2019-11-08 11:06:00,81 5th St, San Francisco,CA,94016 +292757,AAA Batteries (4-pack),5,2.99,2019-11-08 11:06:00,81 5th St, San Francisco,CA,94016 +292758,Apple Airpods Headphones,1,150.0,2019-11-25 15:58:00,460 Maple St, Los Angeles,CA,90001 +292759,27in FHD Monitor,1,149.99,2019-11-22 05:56:00,94 Maple St, Atlanta,GA,30301 +292759,Wired Headphones,1,11.99,2019-11-22 05:56:00,94 Maple St, Atlanta,GA,30301 +292760,AA Batteries (4-pack),2,3.84,2019-11-14 18:10:00,165 Adams St, Dallas,TX,75001 +292761,Lightning Charging Cable,1,14.95,2019-11-22 15:15:00,287 Willow St, San Francisco,CA,94016 +292762,Wired Headphones,1,11.99,2019-11-29 21:00:00,439 Wilson St, New York City,NY,10001 +292763,Bose SoundSport Headphones,1,99.99,2019-11-06 17:24:00,309 Meadow St, Seattle,WA,98101 +292764,AAA Batteries (4-pack),3,2.99,2019-11-13 21:22:00,349 Madison St, Austin,TX,73301 +292765,Apple Airpods Headphones,1,150.0,2019-11-15 16:32:00,386 9th St, Austin,TX,73301 +292766,Apple Airpods Headphones,1,150.0,2019-11-15 12:37:00,634 9th St, San Francisco,CA,94016 +292767,USB-C Charging Cable,1,11.95,2019-11-03 17:51:00,105 1st St, Atlanta,GA,30301 +292768,Lightning Charging Cable,1,14.95,2019-11-09 21:32:00,794 North St, New York City,NY,10001 +292769,iPhone,1,700.0,2019-11-19 21:01:00,167 2nd St, San Francisco,CA,94016 +292770,Wired Headphones,1,11.99,2019-11-26 08:57:00,881 Pine St, San Francisco,CA,94016 +292771,Apple Airpods Headphones,1,150.0,2019-11-15 21:51:00,696 Church St, Boston,MA,02215 +292772,Flatscreen TV,1,300.0,2019-11-11 18:51:00,416 Lincoln St, San Francisco,CA,94016 +292773,27in FHD Monitor,1,149.99,2019-11-14 22:10:00,141 Walnut St, Atlanta,GA,30301 +292774,USB-C Charging Cable,1,11.95,2019-11-13 20:02:00,863 2nd St, Atlanta,GA,30301 +292775,Lightning Charging Cable,1,14.95,2019-11-15 05:04:00,945 2nd St, Los Angeles,CA,90001 +292776,Apple Airpods Headphones,1,150.0,2019-11-09 16:38:00,729 Jackson St, Austin,TX,73301 +292777,34in Ultrawide Monitor,1,379.99,2019-11-04 13:07:00,769 Forest St, San Francisco,CA,94016 +292778,Macbook Pro Laptop,1,1700.0,2019-11-22 23:09:00,645 Jackson St, Dallas,TX,75001 +292779,AA Batteries (4-pack),1,3.84,2019-11-04 16:49:00,460 Wilson St, San Francisco,CA,94016 +292780,AA Batteries (4-pack),1,3.84,2019-12-01 00:46:00,636 7th St, San Francisco,CA,94016 +292781,Apple Airpods Headphones,1,150.0,2019-11-21 18:49:00,412 Maple St, New York City,NY,10001 +292782,Lightning Charging Cable,1,14.95,2019-11-29 15:28:00,450 West St, Los Angeles,CA,90001 +292783,Apple Airpods Headphones,1,150.0,2019-11-13 11:41:00,530 Lakeview St, New York City,NY,10001 +292784,Lightning Charging Cable,1,14.95,2019-11-27 21:00:00,237 6th St, Los Angeles,CA,90001 +292785,Wired Headphones,2,11.99,2019-11-02 06:31:00,389 Center St, Dallas,TX,75001 +292786,AA Batteries (4-pack),1,3.84,2019-11-15 17:03:00,521 1st St, Austin,TX,73301 +292787,Lightning Charging Cable,1,14.95,2019-11-30 13:26:00,483 Madison St, Atlanta,GA,30301 +292788,AAA Batteries (4-pack),1,2.99,2019-11-06 10:42:00,5 Lincoln St, San Francisco,CA,94016 +292789,Google Phone,1,600.0,2019-11-11 20:26:00,115 5th St, Dallas,TX,75001 +292790,ThinkPad Laptop,1,999.99,2019-11-19 08:00:00,999 Elm St, New York City,NY,10001 +292791,Lightning Charging Cable,1,14.95,2019-11-09 16:01:00,861 Ridge St, Los Angeles,CA,90001 +292792,27in FHD Monitor,1,149.99,2019-11-24 19:57:00,896 Cedar St, Austin,TX,73301 +292793,USB-C Charging Cable,1,11.95,2019-11-29 20:03:00,70 Meadow St, Los Angeles,CA,90001 +292794,Google Phone,1,600.0,2019-11-01 13:04:00,857 Chestnut St, Atlanta,GA,30301 +292795,AA Batteries (4-pack),1,3.84,2019-11-11 11:07:00,349 Chestnut St, Los Angeles,CA,90001 +292796,Macbook Pro Laptop,1,1700.0,2019-11-30 06:39:00,121 South St, New York City,NY,10001 +292797,Apple Airpods Headphones,1,150.0,2019-11-22 22:53:00,239 Chestnut St, Seattle,WA,98101 +292798,ThinkPad Laptop,1,999.99,2019-11-10 16:19:00,613 Hill St, New York City,NY,10001 +292799,Wired Headphones,1,11.99,2019-11-14 21:04:00,929 2nd St, Seattle,WA,98101 +292800,27in FHD Monitor,2,149.99,2019-11-26 08:38:00,739 Cherry St, Dallas,TX,75001 +292801,27in 4K Gaming Monitor,1,389.99,2019-11-16 11:13:00,329 Dogwood St, San Francisco,CA,94016 +292802,Bose SoundSport Headphones,1,99.99,2019-11-21 23:01:00,264 10th St, Los Angeles,CA,90001 +292803,USB-C Charging Cable,1,11.95,2019-11-27 16:19:00,517 Lakeview St, Atlanta,GA,30301 +292804,AA Batteries (4-pack),1,3.84,2019-11-16 09:53:00,665 Jefferson St, New York City,NY,10001 +292805,Lightning Charging Cable,1,14.95,2019-11-06 17:54:00,577 Lincoln St, Atlanta,GA,30301 +292806,AA Batteries (4-pack),3,3.84,2019-11-16 16:02:00,687 Chestnut St, Boston,MA,02215 +292807,Apple Airpods Headphones,1,150.0,2019-11-22 15:52:00,380 Highland St, San Francisco,CA,94016 +292808,Apple Airpods Headphones,1,150.0,2019-11-16 11:15:00,773 Cherry St, Austin,TX,73301 +292809,20in Monitor,1,109.99,2019-11-02 22:27:00,445 8th St, San Francisco,CA,94016 +292810,Bose SoundSport Headphones,1,99.99,2019-11-16 06:42:00,994 Jefferson St, Los Angeles,CA,90001 +292811,USB-C Charging Cable,1,11.95,2019-11-26 20:48:00,626 7th St, Boston,MA,02215 +292812,Bose SoundSport Headphones,1,99.99,2019-11-25 11:12:00,328 Main St, San Francisco,CA,94016 +292813,AA Batteries (4-pack),2,3.84,2019-11-07 16:34:00,507 Jackson St, San Francisco,CA,94016 +292814,Lightning Charging Cable,1,14.95,2019-11-03 07:18:00,212 Hickory St, Dallas,TX,75001 +292815,Bose SoundSport Headphones,1,99.99,2019-11-10 21:23:00,778 Madison St, Los Angeles,CA,90001 +292816,iPhone,1,700.0,2019-11-21 10:22:00,184 Dogwood St, Boston,MA,02215 +292817,Apple Airpods Headphones,1,150.0,2019-11-10 14:45:00,332 13th St, San Francisco,CA,94016 +292818,Google Phone,1,600.0,2019-11-21 17:53:00,129 Forest St, San Francisco,CA,94016 +292818,USB-C Charging Cable,1,11.95,2019-11-21 17:53:00,129 Forest St, San Francisco,CA,94016 +292819,Wired Headphones,1,11.99,2019-11-22 15:39:00,436 8th St, San Francisco,CA,94016 +292820,USB-C Charging Cable,1,11.95,2019-11-23 10:47:00,14 6th St, San Francisco,CA,94016 +292821,iPhone,1,700.0,2019-11-03 08:27:00,130 Church St, San Francisco,CA,94016 +292822,27in 4K Gaming Monitor,1,389.99,2019-11-12 21:05:00,59 10th St, Dallas,TX,75001 +292823,AAA Batteries (4-pack),1,2.99,2019-11-25 10:07:00,871 Cedar St, Boston,MA,02215 +292824,ThinkPad Laptop,1,999.99,2019-11-08 12:03:00,783 Hickory St, San Francisco,CA,94016 +292825,Bose SoundSport Headphones,1,99.99,2019-11-30 21:23:00,787 Main St, Boston,MA,02215 +292825,27in FHD Monitor,1,149.99,2019-11-30 21:23:00,787 Main St, Boston,MA,02215 +292826,Bose SoundSport Headphones,1,99.99,2019-11-05 14:19:00,590 14th St, San Francisco,CA,94016 +292827,USB-C Charging Cable,1,11.95,2019-11-21 11:35:00,683 Chestnut St, New York City,NY,10001 +292828,AA Batteries (4-pack),2,3.84,2019-11-09 13:23:00,368 1st St, San Francisco,CA,94016 +292829,Lightning Charging Cable,1,14.95,2019-11-29 12:21:00,205 Maple St, San Francisco,CA,94016 +292830,Bose SoundSport Headphones,1,99.99,2019-11-08 13:12:00,317 12th St, San Francisco,CA,94016 +292831,AA Batteries (4-pack),1,3.84,2019-11-24 18:35:00,216 9th St, Portland,OR,97035 +292832,Wired Headphones,1,11.99,2019-11-23 10:34:00,560 Walnut St, San Francisco,CA,94016 +292833,Apple Airpods Headphones,1,150.0,2019-11-14 13:14:00,322 Washington St, Austin,TX,73301 +292834,34in Ultrawide Monitor,1,379.99,2019-11-22 19:00:00,208 Jefferson St, Atlanta,GA,30301 +292835,AA Batteries (4-pack),1,3.84,2019-11-07 19:28:00,649 Pine St, Los Angeles,CA,90001 +292836,Wired Headphones,1,11.99,2019-11-17 00:10:00,601 Lakeview St, San Francisco,CA,94016 +292837,AAA Batteries (4-pack),1,2.99,2019-11-18 14:42:00,105 Jefferson St, Los Angeles,CA,90001 +292838,iPhone,1,700.0,2019-11-12 15:40:00,413 Cherry St, Los Angeles,CA,90001 +292839,AA Batteries (4-pack),2,3.84,2019-11-29 20:20:00,616 10th St, Los Angeles,CA,90001 +292840,ThinkPad Laptop,1,999.99,2019-11-08 13:16:00,561 Highland St, San Francisco,CA,94016 +292841,Vareebadd Phone,1,400.0,2019-11-25 22:23:00,614 Jackson St, Portland,OR,97035 +292842,AA Batteries (4-pack),1,3.84,2019-11-25 10:32:00,692 Hickory St, Boston,MA,02215 +292843,Apple Airpods Headphones,1,150.0,2019-11-21 06:23:00,611 5th St, Seattle,WA,98101 +292844,20in Monitor,1,109.99,2019-11-29 13:16:00,6 Walnut St, San Francisco,CA,94016 +292845,34in Ultrawide Monitor,1,379.99,2019-11-26 00:29:00,20 Jackson St, New York City,NY,10001 +292846,Macbook Pro Laptop,1,1700.0,2019-11-08 13:14:00,208 5th St, Atlanta,GA,30301 +292847,AAA Batteries (4-pack),2,2.99,2019-11-16 10:17:00,144 Park St, Dallas,TX,75001 +292848,USB-C Charging Cable,2,11.95,2019-11-04 07:44:00,336 West St, Los Angeles,CA,90001 +292849,AAA Batteries (4-pack),1,2.99,2019-11-13 11:16:00,703 Chestnut St, New York City,NY,10001 +292850,Macbook Pro Laptop,1,1700.0,2019-11-25 00:30:00,877 River St, Atlanta,GA,30301 +292851,USB-C Charging Cable,1,11.95,2019-11-25 01:35:00,496 Lake St, New York City,NY,10001 +292852,USB-C Charging Cable,1,11.95,2019-11-15 21:51:00,902 Highland St, San Francisco,CA,94016 +292853,AA Batteries (4-pack),1,3.84,2019-11-04 01:11:00,598 Lake St, Seattle,WA,98101 +292854,Vareebadd Phone,1,400.0,2019-11-20 17:31:00,357 Chestnut St, Los Angeles,CA,90001 +292855,iPhone,1,700.0,2019-11-29 22:02:00,969 6th St, Los Angeles,CA,90001 +292856,USB-C Charging Cable,2,11.95,2019-11-20 22:53:00,479 Hill St, Seattle,WA,98101 +292857,27in 4K Gaming Monitor,1,389.99,2019-11-26 20:07:00,14 West St, New York City,NY,10001 +292858,20in Monitor,1,109.99,2019-11-16 10:57:00,24 8th St, Seattle,WA,98101 +292859,AA Batteries (4-pack),1,3.84,2019-11-12 10:44:00,252 Jackson St, Dallas,TX,75001 +292860,AAA Batteries (4-pack),1,2.99,2019-11-21 12:31:00,360 9th St, New York City,NY,10001 +292861,Wired Headphones,2,11.99,2019-11-10 15:41:00,189 Walnut St, Atlanta,GA,30301 +292862,Wired Headphones,1,11.99,2019-11-18 19:53:00,187 4th St, Austin,TX,73301 +292863,Wired Headphones,1,11.99,2019-11-04 22:34:00,481 Wilson St, New York City,NY,10001 +292864,Wired Headphones,1,11.99,2019-11-04 15:04:00,626 Main St, Portland,OR,97035 +292865,AAA Batteries (4-pack),1,2.99,2019-11-28 14:46:00,383 14th St, Atlanta,GA,30301 +292866,Flatscreen TV,1,300.0,2019-11-02 17:30:00,881 14th St, San Francisco,CA,94016 +292867,27in FHD Monitor,1,149.99,2019-11-08 00:42:00,864 6th St, New York City,NY,10001 +292868,27in 4K Gaming Monitor,1,389.99,2019-11-05 23:05:00,983 Wilson St, Boston,MA,02215 +292869,Lightning Charging Cable,1,14.95,2019-11-13 17:49:00,812 Hickory St, Austin,TX,73301 +292870,Lightning Charging Cable,1,14.95,2019-11-23 13:06:00,656 6th St, Austin,TX,73301 +292871,Macbook Pro Laptop,1,1700.0,2019-11-02 14:51:00,748 Forest St, Atlanta,GA,30301 +292872,USB-C Charging Cable,1,11.95,2019-11-17 13:13:00,282 Madison St, Dallas,TX,75001 +292873,USB-C Charging Cable,2,11.95,2019-11-26 03:19:00,730 Washington St, San Francisco,CA,94016 +292874,Apple Airpods Headphones,1,150.0,2019-11-28 10:55:00,237 Spruce St, Austin,TX,73301 +292875,AA Batteries (4-pack),1,3.84,2019-11-20 15:04:00,467 Main St, Boston,MA,02215 +292876,27in FHD Monitor,1,149.99,2019-11-04 18:35:00,230 Madison St, Los Angeles,CA,90001 +292876,USB-C Charging Cable,1,11.95,2019-11-04 18:35:00,230 Madison St, Los Angeles,CA,90001 +292877,Lightning Charging Cable,1,14.95,2019-11-24 12:24:00,709 West St, New York City,NY,10001 +292878,Wired Headphones,1,11.99,2019-11-12 10:38:00,968 North St, New York City,NY,10001 +292879,AAA Batteries (4-pack),1,2.99,2019-11-22 13:39:00,467 Chestnut St, Los Angeles,CA,90001 +292880,AA Batteries (4-pack),1,3.84,2019-11-02 20:03:00,896 Park St, Seattle,WA,98101 +292881,iPhone,1,700.0,2019-11-28 20:20:00,699 4th St, San Francisco,CA,94016 +292882,AA Batteries (4-pack),1,3.84,2019-11-08 17:20:00,369 Walnut St, Los Angeles,CA,90001 +292883,Bose SoundSport Headphones,1,99.99,2019-11-11 09:05:00,634 7th St, Los Angeles,CA,90001 +292884,Wired Headphones,1,11.99,2019-11-20 11:21:00,642 9th St, Los Angeles,CA,90001 +292885,Lightning Charging Cable,1,14.95,2019-11-20 14:34:00,84 Main St, Boston,MA,02215 +292886,AAA Batteries (4-pack),1,2.99,2019-11-03 16:56:00,381 Hill St, Boston,MA,02215 +292887,Apple Airpods Headphones,1,150.0,2019-11-22 21:49:00,484 Walnut St, Atlanta,GA,30301 +292888,Wired Headphones,1,11.99,2019-11-24 17:01:00,616 Walnut St, Boston,MA,02215 +292889,Apple Airpods Headphones,1,150.0,2019-11-21 09:53:00,122 6th St, New York City,NY,10001 +292890,Macbook Pro Laptop,1,1700.0,2019-11-27 09:57:00,574 Jefferson St, San Francisco,CA,94016 +292891,Wired Headphones,1,11.99,2019-11-07 12:20:00,293 4th St, New York City,NY,10001 +292892,Apple Airpods Headphones,1,150.0,2019-11-14 23:27:00,907 5th St, Dallas,TX,75001 +292893,20in Monitor,1,109.99,2019-11-23 20:50:00,540 Hickory St, Los Angeles,CA,90001 +292894,AA Batteries (4-pack),1,3.84,2019-11-16 21:57:00,142 Ridge St, Boston,MA,02215 +292895,USB-C Charging Cable,1,11.95,2019-11-17 08:52:00,102 Madison St, Portland,OR,97035 +292896,ThinkPad Laptop,1,999.99,2019-11-11 21:43:00,221 11th St, Boston,MA,02215 +292897,USB-C Charging Cable,1,11.95,2019-11-21 12:59:00,855 10th St, New York City,NY,10001 +292898,Macbook Pro Laptop,1,1700.0,2019-11-13 18:42:00,658 Cedar St, Los Angeles,CA,90001 +292899,Flatscreen TV,1,300.0,2019-11-27 12:18:00,643 8th St, Austin,TX,73301 +292900,Flatscreen TV,1,300.0,2019-11-16 18:44:00,757 Walnut St, Atlanta,GA,30301 +292901,Lightning Charging Cable,1,14.95,2019-11-07 07:10:00,554 Meadow St, Dallas,TX,75001 +292902,AAA Batteries (4-pack),1,2.99,2019-11-30 08:00:00,575 Meadow St, Atlanta,GA,30301 +292903,27in 4K Gaming Monitor,1,389.99,2019-11-24 17:53:00,552 Washington St, Seattle,WA,98101 +292904,Wired Headphones,1,11.99,2019-11-22 19:37:00,782 Lake St, Atlanta,GA,30301 +292905,Wired Headphones,1,11.99,2019-11-04 17:03:00,304 Ridge St, Austin,TX,73301 +292906,Vareebadd Phone,1,400.0,2019-11-21 11:55:00,6 Spruce St, Atlanta,GA,30301 +292906,USB-C Charging Cable,1,11.95,2019-11-21 11:55:00,6 Spruce St, Atlanta,GA,30301 +292907,20in Monitor,1,109.99,2019-11-03 09:55:00,30 Willow St, New York City,NY,10001 +292908,27in 4K Gaming Monitor,1,389.99,2019-11-30 14:13:00,863 Walnut St, Atlanta,GA,30301 +292908,Macbook Pro Laptop,1,1700.0,2019-11-30 14:13:00,863 Walnut St, Atlanta,GA,30301 +292909,AAA Batteries (4-pack),2,2.99,2019-11-08 17:52:00,408 West St, Atlanta,GA,30301 +292910,AAA Batteries (4-pack),1,2.99,2019-11-01 22:02:00,789 North St, New York City,NY,10001 +292911,AAA Batteries (4-pack),1,2.99,2019-11-17 19:58:00,358 Lakeview St, Atlanta,GA,30301 +292912,27in 4K Gaming Monitor,1,389.99,2019-11-19 20:59:00,899 10th St, Boston,MA,02215 +292913,Bose SoundSport Headphones,1,99.99,2019-11-11 12:45:00,89 Forest St, San Francisco,CA,94016 +292914,AAA Batteries (4-pack),1,2.99,2019-11-02 18:26:00,371 Maple St, San Francisco,CA,94016 +292915,AA Batteries (4-pack),4,3.84,2019-11-28 10:56:00,359 Jackson St, San Francisco,CA,94016 +292916,AAA Batteries (4-pack),2,2.99,2019-11-01 20:53:00,996 9th St, San Francisco,CA,94016 +292917,AAA Batteries (4-pack),1,2.99,2019-11-02 18:54:00,213 North St, Dallas,TX,75001 +292918,USB-C Charging Cable,1,11.95,2019-11-26 10:48:00,321 Washington St, Dallas,TX,75001 +292919,Lightning Charging Cable,2,14.95,2019-11-09 18:32:00,6 Spruce St, San Francisco,CA,94016 +292920,iPhone,1,700.0,2019-11-22 18:55:00,52 Lake St, Los Angeles,CA,90001 +292920,Apple Airpods Headphones,1,150.0,2019-11-22 18:55:00,52 Lake St, Los Angeles,CA,90001 +292921,Wired Headphones,1,11.99,2019-11-19 08:03:00,684 Lake St, Boston,MA,02215 +292922,iPhone,1,700.0,2019-11-28 14:38:00,171 Highland St, Portland,OR,97035 +292923,AAA Batteries (4-pack),1,2.99,2019-11-27 15:49:00,422 Main St, Los Angeles,CA,90001 +292924,AA Batteries (4-pack),1,3.84,2019-11-25 23:19:00,442 Washington St, New York City,NY,10001 +292925,USB-C Charging Cable,1,11.95,2019-11-04 11:13:00,897 Jackson St, Dallas,TX,75001 +292926,27in 4K Gaming Monitor,1,389.99,2019-11-12 15:48:00,618 Wilson St, Atlanta,GA,30301 +292927,iPhone,1,700.0,2019-11-12 23:25:00,694 Madison St, Seattle,WA,98101 +292928,AAA Batteries (4-pack),2,2.99,2019-11-11 22:29:00,434 Dogwood St, Austin,TX,73301 +292929,Apple Airpods Headphones,1,150.0,2019-11-04 18:53:00,170 4th St, San Francisco,CA,94016 +292930,27in FHD Monitor,1,149.99,2019-11-04 11:20:00,751 Willow St, Los Angeles,CA,90001 +292931,LG Dryer,1,600.0,2019-11-20 18:35:00,512 Park St, Seattle,WA,98101 +292932,27in 4K Gaming Monitor,1,389.99,2019-11-28 09:47:00,808 Chestnut St, Seattle,WA,98101 +292933,AA Batteries (4-pack),1,3.84,2019-11-12 15:26:00,135 6th St, San Francisco,CA,94016 +292934,34in Ultrawide Monitor,1,379.99,2019-11-02 16:38:00,952 10th St, Los Angeles,CA,90001 +292935,Google Phone,1,600.0,2019-11-21 11:43:00,977 2nd St, San Francisco,CA,94016 +292935,Wired Headphones,1,11.99,2019-11-21 11:43:00,977 2nd St, San Francisco,CA,94016 +292936,Lightning Charging Cable,1,14.95,2019-11-01 13:05:00,363 13th St, Portland,ME,04101 +292937,Bose SoundSport Headphones,1,99.99,2019-11-21 16:04:00,369 Washington St, New York City,NY,10001 +292938,Flatscreen TV,1,300.0,2019-11-07 07:42:00,239 Washington St, San Francisco,CA,94016 +292939,AA Batteries (4-pack),1,3.84,2019-11-24 15:02:00,830 Park St, Los Angeles,CA,90001 +292940,Lightning Charging Cable,1,14.95,2019-11-21 23:24:00,668 West St, Austin,TX,73301 +292941,Vareebadd Phone,1,400.0,2019-11-14 22:41:00,751 Lake St, Seattle,WA,98101 +292942,Bose SoundSport Headphones,1,99.99,2019-11-01 23:35:00,539 Wilson St, Atlanta,GA,30301 +292943,Bose SoundSport Headphones,1,99.99,2019-11-29 20:26:00,355 Meadow St, Atlanta,GA,30301 +292944,Google Phone,1,600.0,2019-11-09 16:29:00,814 Johnson St, Atlanta,GA,30301 +292945,Apple Airpods Headphones,1,150.0,2019-11-04 17:58:00,728 14th St, Seattle,WA,98101 +292946,27in 4K Gaming Monitor,1,389.99,2019-11-17 17:01:00,13 7th St, Los Angeles,CA,90001 +292947,AA Batteries (4-pack),1,3.84,2019-11-28 22:19:00,158 Ridge St, Dallas,TX,75001 +292948,Apple Airpods Headphones,1,150.0,2019-11-02 10:19:00,638 Hill St, Los Angeles,CA,90001 +292949,Wired Headphones,1,11.99,2019-11-08 14:52:00,627 2nd St, Seattle,WA,98101 +292950,Bose SoundSport Headphones,1,99.99,2019-11-22 18:28:00,816 Lakeview St, San Francisco,CA,94016 +292951,34in Ultrawide Monitor,1,379.99,2019-11-27 19:57:00,861 8th St, San Francisco,CA,94016 +292952,AAA Batteries (4-pack),1,2.99,2019-11-05 09:28:00,167 Cherry St, New York City,NY,10001 +292953,34in Ultrawide Monitor,1,379.99,2019-11-20 18:54:00,712 Church St, Seattle,WA,98101 +292954,AA Batteries (4-pack),2,3.84,2019-11-28 21:34:00,653 Cherry St, Los Angeles,CA,90001 +292955,AA Batteries (4-pack),1,3.84,2019-11-27 12:26:00,294 River St, New York City,NY,10001 +292956,ThinkPad Laptop,1,999.99,2019-11-12 18:21:00,745 Willow St, San Francisco,CA,94016 +292957,Bose SoundSport Headphones,1,99.99,2019-11-20 14:00:00,757 Pine St, San Francisco,CA,94016 +292958,Vareebadd Phone,1,400.0,2019-11-26 12:54:00,752 River St, Los Angeles,CA,90001 +292959,iPhone,1,700.0,2019-11-09 15:44:00,311 Hickory St, Atlanta,GA,30301 +292960,AAA Batteries (4-pack),1,2.99,2019-11-25 08:31:00,78 Johnson St, New York City,NY,10001 +292961,Wired Headphones,1,11.99,2019-11-26 18:05:00,589 Jackson St, San Francisco,CA,94016 +292962,Lightning Charging Cable,1,14.95,2019-11-12 18:08:00,552 Dogwood St, Portland,OR,97035 +292963,Lightning Charging Cable,1,14.95,2019-11-21 16:38:00,188 Dogwood St, Seattle,WA,98101 +292964,Apple Airpods Headphones,1,150.0,2019-11-10 15:55:00,452 11th St, Portland,ME,04101 +292965,Bose SoundSport Headphones,1,99.99,2019-11-19 23:15:00,76 South St, San Francisco,CA,94016 +292966,USB-C Charging Cable,1,11.95,2019-11-24 10:05:00,14 Cherry St, Atlanta,GA,30301 +292967,27in FHD Monitor,1,149.99,2019-11-05 20:34:00,408 Park St, Austin,TX,73301 +292968,Wired Headphones,1,11.99,2019-11-08 19:01:00,1 5th St, Los Angeles,CA,90001 +292969,AA Batteries (4-pack),1,3.84,2019-11-15 12:16:00,673 1st St, Boston,MA,02215 +292969,Apple Airpods Headphones,1,150.0,2019-11-15 12:16:00,673 1st St, Boston,MA,02215 +292970,Lightning Charging Cable,2,14.95,2019-11-13 10:53:00,574 Washington St, Los Angeles,CA,90001 +292971,Lightning Charging Cable,1,14.95,2019-11-27 21:08:00,230 6th St, Los Angeles,CA,90001 +292972,27in 4K Gaming Monitor,1,389.99,2019-11-07 09:43:00,585 1st St, San Francisco,CA,94016 +292973,AAA Batteries (4-pack),1,2.99,2019-11-12 14:20:00,368 Jefferson St, New York City,NY,10001 +292974,Google Phone,1,600.0,2019-11-24 15:40:00,87 Hill St, Dallas,TX,75001 +292974,Wired Headphones,1,11.99,2019-11-24 15:40:00,87 Hill St, Dallas,TX,75001 +292975,AAA Batteries (4-pack),1,2.99,2019-11-15 19:54:00,989 Church St, San Francisco,CA,94016 +292976,Wired Headphones,1,11.99,2019-11-12 09:48:00,115 Johnson St, Seattle,WA,98101 +292977,USB-C Charging Cable,2,11.95,2019-11-22 11:24:00,980 Lake St, San Francisco,CA,94016 +292978,27in 4K Gaming Monitor,1,389.99,2019-11-25 13:00:00,271 Lincoln St, Boston,MA,02215 +292979,AA Batteries (4-pack),1,3.84,2019-11-06 23:29:00,923 10th St, San Francisco,CA,94016 +292980,AA Batteries (4-pack),1,3.84,2019-11-06 18:37:00,919 2nd St, Los Angeles,CA,90001 +292981,AAA Batteries (4-pack),1,2.99,2019-11-22 09:52:00,691 Chestnut St, Los Angeles,CA,90001 +292982,20in Monitor,1,109.99,2019-11-16 16:35:00,836 Wilson St, San Francisco,CA,94016 +292983,34in Ultrawide Monitor,1,379.99,2019-11-16 15:47:00,784 11th St, Boston,MA,02215 +292984,Vareebadd Phone,1,400.0,2019-11-12 09:07:00,552 5th St, Los Angeles,CA,90001 +292984,USB-C Charging Cable,1,11.95,2019-11-12 09:07:00,552 5th St, Los Angeles,CA,90001 +292985,AAA Batteries (4-pack),1,2.99,2019-11-18 23:57:00,294 Spruce St, Atlanta,GA,30301 +292986,AA Batteries (4-pack),1,3.84,2019-11-21 10:45:00,973 6th St, Dallas,TX,75001 +292987,Lightning Charging Cable,1,14.95,2019-11-28 08:53:00,401 Cherry St, Los Angeles,CA,90001 +292988,20in Monitor,1,109.99,2019-11-09 22:22:00,357 5th St, New York City,NY,10001 +292989,Lightning Charging Cable,1,14.95,2019-11-03 23:57:00,599 2nd St, Atlanta,GA,30301 +292990,Bose SoundSport Headphones,1,99.99,2019-11-03 22:07:00,801 Lincoln St, Seattle,WA,98101 +292991,AA Batteries (4-pack),1,3.84,2019-11-12 20:59:00,887 2nd St, New York City,NY,10001 +292992,Bose SoundSport Headphones,1,99.99,2019-11-20 14:01:00,617 7th St, Boston,MA,02215 +292993,Apple Airpods Headphones,1,150.0,2019-11-08 22:25:00,230 Elm St, Atlanta,GA,30301 +292994,AA Batteries (4-pack),1,3.84,2019-11-24 14:13:00,993 7th St, Boston,MA,02215 +292995,Bose SoundSport Headphones,1,99.99,2019-11-27 20:29:00,77 Chestnut St, Dallas,TX,75001 +292996,Lightning Charging Cable,1,14.95,2019-11-16 19:45:00,793 Sunset St, Austin,TX,73301 +292997,USB-C Charging Cable,1,11.95,2019-11-05 13:34:00,441 4th St, Atlanta,GA,30301 +292998,Lightning Charging Cable,1,14.95,2019-11-30 21:26:00,889 Center St, Dallas,TX,75001 +292999,USB-C Charging Cable,1,11.95,2019-11-25 16:46:00,744 South St, Atlanta,GA,30301 +293000,Wired Headphones,2,11.99,2019-11-10 12:35:00,878 Pine St, Boston,MA,02215 +293001,Apple Airpods Headphones,1,150.0,2019-11-14 20:06:00,605 10th St, New York City,NY,10001 +293002,ThinkPad Laptop,1,999.99,2019-11-28 21:56:00,198 North St, San Francisco,CA,94016 +293003,27in FHD Monitor,1,149.99,2019-11-13 05:29:00,409 12th St, San Francisco,CA,94016 +293004,Macbook Pro Laptop,1,1700.0,2019-11-30 19:08:00,86 Ridge St, San Francisco,CA,94016 +293005,34in Ultrawide Monitor,1,379.99,2019-11-20 23:02:00,127 13th St, Los Angeles,CA,90001 +293006,AA Batteries (4-pack),1,3.84,2019-11-30 18:19:00,178 13th St, Los Angeles,CA,90001 +293007,USB-C Charging Cable,1,11.95,2019-11-27 15:20:00,733 Hill St, Austin,TX,73301 +293008,Macbook Pro Laptop,1,1700.0,2019-11-30 18:50:00,644 Forest St, New York City,NY,10001 +293009,USB-C Charging Cable,1,11.95,2019-11-27 17:46:00,318 1st St, New York City,NY,10001 +293010,Lightning Charging Cable,1,14.95,2019-11-30 11:46:00,773 Park St, San Francisco,CA,94016 +293010,27in 4K Gaming Monitor,1,389.99,2019-11-30 11:46:00,773 Park St, San Francisco,CA,94016 +293011,iPhone,1,700.0,2019-11-18 22:11:00,763 River St, San Francisco,CA,94016 +293012,Wired Headphones,1,11.99,2019-11-21 16:06:00,794 7th St, Dallas,TX,75001 +293013,Lightning Charging Cable,1,14.95,2019-11-17 17:16:00,213 Main St, San Francisco,CA,94016 +293014,iPhone,1,700.0,2019-11-17 20:16:00,49 West St, Boston,MA,02215 +293015,Lightning Charging Cable,1,14.95,2019-11-27 17:03:00,288 5th St, New York City,NY,10001 +293016,AA Batteries (4-pack),1,3.84,2019-11-12 00:27:00,869 Washington St, San Francisco,CA,94016 +293017,Lightning Charging Cable,1,14.95,2019-11-25 13:45:00,991 River St, San Francisco,CA,94016 +293018,34in Ultrawide Monitor,1,379.99,2019-11-20 17:22:00,366 Johnson St, San Francisco,CA,94016 +293019,Wired Headphones,1,11.99,2019-11-02 14:21:00,960 Lakeview St, San Francisco,CA,94016 +293020,AAA Batteries (4-pack),1,2.99,2019-11-30 16:34:00,610 North St, New York City,NY,10001 +293021,AA Batteries (4-pack),2,3.84,2019-11-13 13:28:00,152 Main St, San Francisco,CA,94016 +293022,Wired Headphones,1,11.99,2019-11-03 12:11:00,346 Meadow St, New York City,NY,10001 +293023,USB-C Charging Cable,1,11.95,2019-11-21 14:50:00,393 2nd St, Los Angeles,CA,90001 +293024,iPhone,1,700.0,2019-11-10 12:07:00,879 1st St, Atlanta,GA,30301 +293024,Wired Headphones,1,11.99,2019-11-10 12:07:00,879 1st St, Atlanta,GA,30301 +293025,USB-C Charging Cable,1,11.95,2019-11-04 19:21:00,959 Meadow St, Dallas,TX,75001 +293026,Wired Headphones,1,11.99,2019-11-10 21:54:00,593 South St, Los Angeles,CA,90001 +293027,Macbook Pro Laptop,1,1700.0,2019-11-24 11:56:00,357 Highland St, Atlanta,GA,30301 +293028,Wired Headphones,1,11.99,2019-11-25 18:40:00,556 Highland St, San Francisco,CA,94016 +293029,USB-C Charging Cable,1,11.95,2019-11-13 16:52:00,900 North St, Atlanta,GA,30301 +293030,Wired Headphones,1,11.99,2019-11-28 16:22:00,216 Chestnut St, Seattle,WA,98101 +293031,Lightning Charging Cable,1,14.95,2019-11-26 14:45:00,496 4th St, Dallas,TX,75001 +293032,Apple Airpods Headphones,1,150.0,2019-11-23 16:43:00,678 Meadow St, Austin,TX,73301 +293033,USB-C Charging Cable,1,11.95,2019-11-28 07:41:00,133 North St, New York City,NY,10001 +293034,USB-C Charging Cable,1,11.95,2019-11-06 20:21:00,869 Adams St, Boston,MA,02215 +293035,Bose SoundSport Headphones,1,99.99,2019-11-20 15:15:00,643 Sunset St, San Francisco,CA,94016 +293036,Apple Airpods Headphones,1,150.0,2019-11-26 06:10:00,986 Center St, San Francisco,CA,94016 +293037,Lightning Charging Cable,1,14.95,2019-11-01 12:19:00,587 Spruce St, New York City,NY,10001 +293038,iPhone,1,700.0,2019-11-02 08:57:00,425 Jackson St, Portland,OR,97035 +293039,Wired Headphones,1,11.99,2019-11-08 18:49:00,930 Adams St, New York City,NY,10001 +293040,AAA Batteries (4-pack),7,2.99,2019-11-08 05:52:00,531 Maple St, New York City,NY,10001 +293041,Wired Headphones,2,11.99,2019-11-29 21:21:00,42 Forest St, Los Angeles,CA,90001 +293042,iPhone,1,700.0,2019-11-01 09:57:00,395 Pine St, San Francisco,CA,94016 +293043,Apple Airpods Headphones,1,150.0,2019-11-21 10:29:00,594 10th St, Portland,OR,97035 +293044,AAA Batteries (4-pack),1,2.99,2019-11-11 17:05:00,51 13th St, Portland,OR,97035 +293045,USB-C Charging Cable,1,11.95,2019-11-24 16:43:00,181 Forest St, Los Angeles,CA,90001 +293046,Wired Headphones,1,11.99,2019-11-04 19:31:00,955 6th St, New York City,NY,10001 +293047,Apple Airpods Headphones,1,150.0,2019-11-19 16:23:00,619 North St, Seattle,WA,98101 +293048,ThinkPad Laptop,1,999.99,2019-11-11 20:56:00,528 8th St, Boston,MA,02215 +293049,20in Monitor,1,109.99,2019-11-01 14:13:00,373 Lincoln St, Boston,MA,02215 +293050,iPhone,1,700.0,2019-11-24 16:04:00,511 Cherry St, Boston,MA,02215 +293051,ThinkPad Laptop,1,999.99,2019-11-14 08:32:00,306 4th St, Seattle,WA,98101 +293052,AAA Batteries (4-pack),4,2.99,2019-11-11 13:42:00,879 Willow St, Dallas,TX,75001 +293053,Lightning Charging Cable,1,14.95,2019-11-30 01:29:00,650 Chestnut St, Portland,OR,97035 +293054,Lightning Charging Cable,1,14.95,2019-11-27 21:59:00,153 Highland St, San Francisco,CA,94016 +293055,AAA Batteries (4-pack),1,2.99,2019-11-05 17:01:00,97 Maple St, Los Angeles,CA,90001 +293056,Apple Airpods Headphones,1,150.0,2019-11-19 19:21:00,665 11th St, Austin,TX,73301 +293057,Apple Airpods Headphones,1,150.0,2019-11-21 15:52:00,698 Elm St, Seattle,WA,98101 +293058,Bose SoundSport Headphones,1,99.99,2019-11-21 20:44:00,719 Meadow St, San Francisco,CA,94016 +293059,iPhone,1,700.0,2019-11-05 18:36:00,968 Wilson St, New York City,NY,10001 +293060,Bose SoundSport Headphones,1,99.99,2019-11-30 11:58:00,939 13th St, Los Angeles,CA,90001 +293061,iPhone,1,700.0,2019-11-01 15:25:00,93 Highland St, Los Angeles,CA,90001 +293061,Wired Headphones,1,11.99,2019-11-01 15:25:00,93 Highland St, Los Angeles,CA,90001 +293062,Wired Headphones,1,11.99,2019-11-03 12:55:00,79 5th St, Boston,MA,02215 +293063,AA Batteries (4-pack),1,3.84,2019-11-21 23:38:00,877 Pine St, San Francisco,CA,94016 +293064,Macbook Pro Laptop,1,1700.0,2019-11-11 20:04:00,209 Spruce St, New York City,NY,10001 +293065,AAA Batteries (4-pack),1,2.99,2019-11-19 13:10:00,909 Hill St, Atlanta,GA,30301 +293066,Lightning Charging Cable,1,14.95,2019-11-06 10:11:00,789 6th St, San Francisco,CA,94016 +293067,Lightning Charging Cable,1,14.95,2019-11-25 16:56:00,715 9th St, Austin,TX,73301 +293068,USB-C Charging Cable,1,11.95,2019-11-21 15:12:00,964 Lincoln St, San Francisco,CA,94016 +293069,27in 4K Gaming Monitor,1,389.99,2019-11-01 20:11:00,882 12th St, San Francisco,CA,94016 +293070,34in Ultrawide Monitor,1,379.99,2019-11-28 19:50:00,127 4th St, Atlanta,GA,30301 +293071,AAA Batteries (4-pack),2,2.99,2019-11-16 17:11:00,923 Cherry St, Boston,MA,02215 +293072,20in Monitor,1,109.99,2019-11-17 05:13:00,613 North St, Seattle,WA,98101 +293073,Apple Airpods Headphones,1,150.0,2019-11-30 04:14:00,565 1st St, Atlanta,GA,30301 +293074,Lightning Charging Cable,1,14.95,2019-11-19 14:35:00,997 12th St, San Francisco,CA,94016 +293075,iPhone,1,700.0,2019-11-30 05:29:00,775 Washington St, Los Angeles,CA,90001 +293076,AAA Batteries (4-pack),2,2.99,2019-11-22 11:29:00,295 1st St, Dallas,TX,75001 +293077,AAA Batteries (4-pack),1,2.99,2019-11-10 14:55:00,552 12th St, Los Angeles,CA,90001 +293078,AAA Batteries (4-pack),1,2.99,2019-11-29 08:19:00,828 Washington St, Boston,MA,02215 +293079,AA Batteries (4-pack),2,3.84,2019-11-27 22:01:00,378 12th St, New York City,NY,10001 +293079,AAA Batteries (4-pack),1,2.99,2019-11-27 22:01:00,378 12th St, New York City,NY,10001 +293080,Bose SoundSport Headphones,1,99.99,2019-11-10 10:29:00,972 Willow St, San Francisco,CA,94016 +293081,Lightning Charging Cable,1,14.95,2019-11-01 21:12:00,150 10th St, San Francisco,CA,94016 +293082,Apple Airpods Headphones,1,150.0,2019-11-13 16:44:00,215 Chestnut St, Dallas,TX,75001 +293083,Lightning Charging Cable,1,14.95,2019-11-11 09:36:00,961 Jackson St, Atlanta,GA,30301 +293084,Bose SoundSport Headphones,1,99.99,2019-11-05 18:03:00,318 Adams St, New York City,NY,10001 +293085,AAA Batteries (4-pack),2,2.99,2019-11-29 22:21:00,607 4th St, New York City,NY,10001 +293086,Apple Airpods Headphones,1,150.0,2019-11-30 18:14:00,503 Lakeview St, San Francisco,CA,94016 +293087,USB-C Charging Cable,1,11.95,2019-11-07 10:34:00,277 Walnut St, Los Angeles,CA,90001 +293088,Bose SoundSport Headphones,1,99.99,2019-11-18 17:12:00,680 5th St, Atlanta,GA,30301 +293089,AA Batteries (4-pack),2,3.84,2019-11-23 17:40:00,939 Walnut St, San Francisco,CA,94016 +293090,Apple Airpods Headphones,1,150.0,2019-11-17 06:26:00,369 Madison St, Boston,MA,02215 +293091,AAA Batteries (4-pack),1,2.99,2019-11-07 23:41:00,528 Chestnut St, Los Angeles,CA,90001 +293092,USB-C Charging Cable,1,11.95,2019-11-05 17:06:00,110 Center St, San Francisco,CA,94016 +293093,AAA Batteries (4-pack),1,2.99,2019-11-26 18:11:00,823 9th St, Austin,TX,73301 +293094,Wired Headphones,1,11.99,2019-11-06 09:59:00,368 Pine St, New York City,NY,10001 +293095,Wired Headphones,1,11.99,2019-11-18 00:11:00,671 Lake St, New York City,NY,10001 +293096,AA Batteries (4-pack),1,3.84,2019-11-22 12:06:00,57 4th St, New York City,NY,10001 +293097,34in Ultrawide Monitor,1,379.99,2019-11-08 12:11:00,196 Main St, San Francisco,CA,94016 +293098,Apple Airpods Headphones,1,150.0,2019-11-30 21:03:00,832 Walnut St, San Francisco,CA,94016 +293099,Apple Airpods Headphones,1,150.0,2019-11-03 22:30:00,935 Forest St, New York City,NY,10001 +293100,Wired Headphones,1,11.99,2019-11-09 11:11:00,55 Adams St, San Francisco,CA,94016 +293101,Apple Airpods Headphones,1,150.0,2019-11-28 19:40:00,796 10th St, Seattle,WA,98101 +293102,27in FHD Monitor,1,149.99,2019-11-17 09:20:00,235 8th St, Boston,MA,02215 +293103,AA Batteries (4-pack),1,3.84,2019-11-12 12:04:00,764 Chestnut St, Boston,MA,02215 +293104,AA Batteries (4-pack),1,3.84,2019-11-05 12:37:00,820 West St, Los Angeles,CA,90001 +293105,Bose SoundSport Headphones,1,99.99,2019-11-08 20:10:00,746 Main St, Atlanta,GA,30301 +293106,Wired Headphones,1,11.99,2019-11-30 21:14:00,135 Elm St, San Francisco,CA,94016 +293107,27in FHD Monitor,1,149.99,2019-11-06 15:15:00,230 11th St, Los Angeles,CA,90001 +293108,iPhone,1,700.0,2019-11-22 11:01:00,216 Meadow St, Dallas,TX,75001 +293108,Lightning Charging Cable,1,14.95,2019-11-22 11:01:00,216 Meadow St, Dallas,TX,75001 +293109,Bose SoundSport Headphones,1,99.99,2019-11-19 19:21:00,223 Center St, New York City,NY,10001 +293110,27in 4K Gaming Monitor,1,389.99,2019-11-09 17:31:00,746 Washington St, Seattle,WA,98101 +293111,Wired Headphones,1,11.99,2019-11-01 09:32:00,839 13th St, Portland,OR,97035 +293112,34in Ultrawide Monitor,1,379.99,2019-11-11 18:29:00,92 Lakeview St, Seattle,WA,98101 +293113,Wired Headphones,1,11.99,2019-11-20 12:09:00,286 13th St, San Francisco,CA,94016 +293114,USB-C Charging Cable,1,11.95,2019-11-29 14:35:00,145 8th St, Austin,TX,73301 +293115,AA Batteries (4-pack),1,3.84,2019-11-13 13:05:00,257 10th St, Seattle,WA,98101 +293116,Lightning Charging Cable,2,14.95,2019-11-05 20:51:00,966 9th St, Dallas,TX,75001 +293117,AA Batteries (4-pack),1,3.84,2019-11-25 17:23:00,187 Main St, Austin,TX,73301 +293118,AAA Batteries (4-pack),2,2.99,2019-11-05 21:06:00,859 Spruce St, San Francisco,CA,94016 +293119,AAA Batteries (4-pack),4,2.99,2019-11-19 14:55:00,404 River St, San Francisco,CA,94016 +293120,Bose SoundSport Headphones,1,99.99,2019-11-10 18:59:00,378 14th St, Atlanta,GA,30301 +293121,iPhone,1,700.0,2019-11-16 18:44:00,746 5th St, New York City,NY,10001 +293121,Lightning Charging Cable,1,14.95,2019-11-16 18:44:00,746 5th St, New York City,NY,10001 +293122,Wired Headphones,1,11.99,2019-11-27 18:19:00,794 Pine St, New York City,NY,10001 +293123,Apple Airpods Headphones,1,150.0,2019-11-11 14:11:00,311 8th St, Los Angeles,CA,90001 +293124,AAA Batteries (4-pack),1,2.99,2019-11-23 15:31:00,410 Meadow St, Dallas,TX,75001 +293125,27in FHD Monitor,1,149.99,2019-11-15 17:31:00,559 Dogwood St, San Francisco,CA,94016 +293126,Bose SoundSport Headphones,1,99.99,2019-11-01 22:43:00,7 6th St, Atlanta,GA,30301 +293127,ThinkPad Laptop,1,999.99,2019-11-20 18:06:00,730 Johnson St, Atlanta,GA,30301 +293128,AA Batteries (4-pack),1,3.84,2019-11-21 15:00:00,112 Pine St, Los Angeles,CA,90001 +293129,ThinkPad Laptop,1,999.99,2019-11-23 11:43:00,242 Center St, Los Angeles,CA,90001 +293130,ThinkPad Laptop,1,999.99,2019-11-21 17:33:00,483 Maple St, Portland,OR,97035 +293131,iPhone,1,700.0,2019-11-25 00:42:00,242 1st St, San Francisco,CA,94016 +293131,Apple Airpods Headphones,1,150.0,2019-11-25 00:42:00,242 1st St, San Francisco,CA,94016 +293132,ThinkPad Laptop,1,999.99,2019-11-25 23:07:00,908 Washington St, San Francisco,CA,94016 +293133,AA Batteries (4-pack),1,3.84,2019-11-30 06:13:00,155 Cedar St, New York City,NY,10001 +293134,AA Batteries (4-pack),2,3.84,2019-11-21 11:10:00,678 7th St, Los Angeles,CA,90001 +293135,Macbook Pro Laptop,1,1700.0,2019-11-01 17:01:00,278 Hill St, Boston,MA,02215 +293136,Lightning Charging Cable,2,14.95,2019-11-06 00:19:00,362 West St, Boston,MA,02215 +293137,27in FHD Monitor,1,149.99,2019-11-23 21:27:00,498 Highland St, Atlanta,GA,30301 +293138,Apple Airpods Headphones,1,150.0,2019-11-22 17:01:00,834 Washington St, Portland,OR,97035 +293139,Lightning Charging Cable,1,14.95,2019-11-22 20:52:00,489 Park St, Atlanta,GA,30301 +293140,Lightning Charging Cable,1,14.95,2019-11-12 15:13:00,114 Chestnut St, Los Angeles,CA,90001 +293141,Lightning Charging Cable,1,14.95,2019-11-18 22:16:00,789 Dogwood St, Dallas,TX,75001 +293142,USB-C Charging Cable,1,11.95,2019-11-23 19:47:00,46 South St, Atlanta,GA,30301 +293143,AA Batteries (4-pack),2,3.84,2019-11-10 18:23:00,607 Center St, New York City,NY,10001 +293144,Wired Headphones,2,11.99,2019-11-11 15:10:00,356 9th St, New York City,NY,10001 +293145,USB-C Charging Cable,1,11.95,2019-11-25 19:09:00,346 Lincoln St, San Francisco,CA,94016 +293146,Lightning Charging Cable,1,14.95,2019-11-21 23:06:00,3 Center St, New York City,NY,10001 +293147,Apple Airpods Headphones,1,150.0,2019-11-12 18:02:00,40 Cedar St, Atlanta,GA,30301 +293148,AA Batteries (4-pack),1,3.84,2019-11-04 20:36:00,923 7th St, Los Angeles,CA,90001 +293149,Apple Airpods Headphones,1,150.0,2019-11-08 12:57:00,862 12th St, San Francisco,CA,94016 +293150,USB-C Charging Cable,1,11.95,2019-11-03 17:08:00,254 8th St, Los Angeles,CA,90001 +293151,Apple Airpods Headphones,1,150.0,2019-11-15 01:53:00,383 Wilson St, New York City,NY,10001 +293152,27in FHD Monitor,1,149.99,2019-11-22 17:04:00,84 Walnut St, San Francisco,CA,94016 +293153,Apple Airpods Headphones,1,150.0,2019-11-06 13:01:00,38 Cedar St, Portland,OR,97035 +293154,Wired Headphones,1,11.99,2019-11-02 13:01:00,544 River St, New York City,NY,10001 +293155,iPhone,1,700.0,2019-11-11 16:33:00,857 Main St, Atlanta,GA,30301 +293155,Lightning Charging Cable,1,14.95,2019-11-11 16:33:00,857 Main St, Atlanta,GA,30301 +293156,Google Phone,1,600.0,2019-11-06 09:47:00,319 Meadow St, Portland,OR,97035 +293157,Bose SoundSport Headphones,1,99.99,2019-11-15 10:59:00,150 Jefferson St, Boston,MA,02215 +293158,USB-C Charging Cable,1,11.95,2019-11-29 20:32:00,402 Johnson St, Los Angeles,CA,90001 +293159,Macbook Pro Laptop,1,1700.0,2019-11-09 14:32:00,403 North St, Los Angeles,CA,90001 +293160,AAA Batteries (4-pack),4,2.99,2019-11-01 10:10:00,620 Wilson St, Seattle,WA,98101 +293160,iPhone,1,700.0,2019-11-01 10:10:00,620 Wilson St, Seattle,WA,98101 +293161,USB-C Charging Cable,1,11.95,2019-11-28 16:13:00,985 Sunset St, San Francisco,CA,94016 +293162,AA Batteries (4-pack),1,3.84,2019-11-30 18:32:00,642 Center St, San Francisco,CA,94016 +293163,USB-C Charging Cable,1,11.95,2019-11-30 17:18:00,803 Willow St, San Francisco,CA,94016 +293164,AAA Batteries (4-pack),4,2.99,2019-11-04 22:47:00,94 Meadow St, San Francisco,CA,94016 +293165,Flatscreen TV,1,300.0,2019-11-23 13:01:00,151 Ridge St, New York City,NY,10001 +293166,20in Monitor,1,109.99,2019-11-08 15:24:00,946 Cedar St, Seattle,WA,98101 +293167,Wired Headphones,1,11.99,2019-11-16 14:03:00,964 6th St, Los Angeles,CA,90001 +293168,20in Monitor,1,109.99,2019-11-08 17:31:00,581 Wilson St, New York City,NY,10001 +293169,Apple Airpods Headphones,1,150.0,2019-11-03 11:28:00,484 Washington St, Portland,OR,97035 +293170,AAA Batteries (4-pack),3,2.99,2019-11-23 23:39:00,54 Chestnut St, Atlanta,GA,30301 +293171,Bose SoundSport Headphones,1,99.99,2019-11-16 21:10:00,526 West St, Dallas,TX,75001 +293172,ThinkPad Laptop,1,999.99,2019-11-12 23:07:00,463 10th St, Atlanta,GA,30301 +293173,27in 4K Gaming Monitor,1,389.99,2019-11-19 11:18:00,283 Highland St, Atlanta,GA,30301 +293174,USB-C Charging Cable,1,11.95,2019-11-03 23:02:00,767 Maple St, Los Angeles,CA,90001 +293175,AA Batteries (4-pack),2,3.84,2019-11-07 13:18:00,411 11th St, Seattle,WA,98101 +293176,Lightning Charging Cable,1,14.95,2019-11-27 07:13:00,110 8th St, San Francisco,CA,94016 +293177,AA Batteries (4-pack),1,3.84,2019-11-26 12:38:00,970 Hickory St, New York City,NY,10001 +293178,Lightning Charging Cable,1,14.95,2019-11-25 08:36:00,274 Hickory St, Seattle,WA,98101 +293179,34in Ultrawide Monitor,1,379.99,2019-11-12 17:19:00,871 West St, Boston,MA,02215 +293180,iPhone,1,700.0,2019-11-25 13:27:00,298 6th St, Austin,TX,73301 +293181,34in Ultrawide Monitor,1,379.99,2019-11-11 06:27:00,465 Adams St, Seattle,WA,98101 +293182,Apple Airpods Headphones,1,150.0,2019-11-27 16:14:00,182 Center St, Austin,TX,73301 +293183,34in Ultrawide Monitor,1,379.99,2019-11-06 05:33:00,504 1st St, Atlanta,GA,30301 +293184,Flatscreen TV,1,300.0,2019-11-09 19:01:00,556 North St, Dallas,TX,75001 +293185,AA Batteries (4-pack),1,3.84,2019-11-04 10:04:00,806 Lake St, San Francisco,CA,94016 +293186,Bose SoundSport Headphones,1,99.99,2019-11-01 13:18:00,340 Johnson St, New York City,NY,10001 +293187,27in FHD Monitor,1,149.99,2019-11-19 21:21:00,418 6th St, Atlanta,GA,30301 +293188,Google Phone,1,600.0,2019-11-19 14:37:00,992 Elm St, New York City,NY,10001 +293189,AA Batteries (4-pack),1,3.84,2019-11-18 18:04:00,465 Highland St, San Francisco,CA,94016 +293190,USB-C Charging Cable,1,11.95,2019-11-28 20:39:00,621 Ridge St, Boston,MA,02215 +293191,AA Batteries (4-pack),1,3.84,2019-11-10 21:20:00,428 1st St, Seattle,WA,98101 +293192,AA Batteries (4-pack),1,3.84,2019-11-01 10:00:00,351 Elm St, Dallas,TX,75001 +293193,iPhone,1,700.0,2019-11-13 18:31:00,906 Willow St, San Francisco,CA,94016 +293194,Lightning Charging Cable,1,14.95,2019-11-26 10:33:00,167 Park St, Boston,MA,02215 +293195,Apple Airpods Headphones,1,150.0,2019-11-13 23:34:00,492 7th St, Los Angeles,CA,90001 +293196,Bose SoundSport Headphones,1,99.99,2019-11-15 21:06:00,994 10th St, New York City,NY,10001 +293197,Bose SoundSport Headphones,1,99.99,2019-11-29 16:10:00,567 11th St, Portland,OR,97035 +293198,USB-C Charging Cable,1,11.95,2019-11-07 20:41:00,972 Elm St, Los Angeles,CA,90001 +293199,Lightning Charging Cable,2,14.95,2019-11-11 08:42:00,387 10th St, San Francisco,CA,94016 +293200,Apple Airpods Headphones,1,150.0,2019-11-05 18:42:00,998 Jackson St, San Francisco,CA,94016 +293201,USB-C Charging Cable,1,11.95,2019-11-12 20:36:00,261 West St, Dallas,TX,75001 +293201,27in 4K Gaming Monitor,1,389.99,2019-11-12 20:36:00,261 West St, Dallas,TX,75001 +293202,Google Phone,1,600.0,2019-11-15 13:23:00,23 Main St, Atlanta,GA,30301 +293203,Wired Headphones,1,11.99,2019-11-15 13:09:00,907 14th St, Boston,MA,02215 +293204,USB-C Charging Cable,1,11.95,2019-11-15 15:08:00,69 Maple St, Seattle,WA,98101 +293205,AA Batteries (4-pack),1,3.84,2019-11-16 23:04:00,722 Sunset St, San Francisco,CA,94016 +293206,Lightning Charging Cable,1,14.95,2019-11-29 08:53:00,748 Forest St, Seattle,WA,98101 +293207,Lightning Charging Cable,1,14.95,2019-11-08 15:37:00,508 11th St, Dallas,TX,75001 +293208,Apple Airpods Headphones,1,150.0,2019-11-14 10:56:00,493 Lincoln St, San Francisco,CA,94016 +293209,AA Batteries (4-pack),1,3.84,2019-11-24 19:01:00,856 Forest St, New York City,NY,10001 +293210,Bose SoundSport Headphones,1,99.99,2019-11-05 10:34:00,790 1st St, San Francisco,CA,94016 +293211,AAA Batteries (4-pack),1,2.99,2019-11-30 10:16:00,739 Dogwood St, Portland,OR,97035 +293212,20in Monitor,1,109.99,2019-11-23 15:15:00,141 Center St, New York City,NY,10001 +293213,iPhone,1,700.0,2019-11-18 02:31:00,332 Main St, Los Angeles,CA,90001 +293214,AA Batteries (4-pack),1,3.84,2019-11-19 16:00:00,453 River St, Portland,OR,97035 +293215,Wired Headphones,1,11.99,2019-11-01 22:42:00,294 Cedar St, Los Angeles,CA,90001 +293216,Apple Airpods Headphones,1,150.0,2019-11-10 15:03:00,459 Sunset St, San Francisco,CA,94016 +293217,Lightning Charging Cable,1,14.95,2019-11-07 22:58:00,330 11th St, San Francisco,CA,94016 +293218,AAA Batteries (4-pack),1,2.99,2019-11-20 11:06:00,184 Pine St, Los Angeles,CA,90001 +293219,USB-C Charging Cable,1,11.95,2019-11-24 21:03:00,10 Ridge St, Dallas,TX,75001 +293220,USB-C Charging Cable,1,11.95,2019-11-07 11:56:00,866 Church St, San Francisco,CA,94016 +293221,AAA Batteries (4-pack),1,2.99,2019-11-24 09:32:00,562 13th St, New York City,NY,10001 +293222,Wired Headphones,2,11.99,2019-11-07 15:16:00,670 Wilson St, Seattle,WA,98101 +293223,Apple Airpods Headphones,1,150.0,2019-11-05 23:47:00,484 9th St, Atlanta,GA,30301 +293224,Bose SoundSport Headphones,1,99.99,2019-11-03 13:27:00,643 Pine St, Seattle,WA,98101 +293225,AA Batteries (4-pack),1,3.84,2019-11-18 21:35:00,128 Wilson St, Atlanta,GA,30301 +293226,AA Batteries (4-pack),1,3.84,2019-11-05 16:59:00,592 North St, New York City,NY,10001 +293227,Lightning Charging Cable,1,14.95,2019-11-01 14:32:00,855 10th St, Atlanta,GA,30301 +293228,27in 4K Gaming Monitor,1,389.99,2019-11-14 09:10:00,413 West St, Los Angeles,CA,90001 +293229,Wired Headphones,1,11.99,2019-11-09 19:58:00,890 Spruce St, Boston,MA,02215 +293230,AA Batteries (4-pack),1,3.84,2019-11-11 02:31:00,689 Dogwood St, Seattle,WA,98101 +293231,USB-C Charging Cable,1,11.95,2019-11-12 05:24:00,599 Highland St, Atlanta,GA,30301 +293232,USB-C Charging Cable,1,11.95,2019-11-20 17:45:00,251 Jefferson St, Atlanta,GA,30301 +293233,Apple Airpods Headphones,1,150.0,2019-11-30 15:48:00,439 9th St, Dallas,TX,75001 +293234,Apple Airpods Headphones,1,150.0,2019-11-18 19:03:00,236 Center St, San Francisco,CA,94016 +293235,27in FHD Monitor,1,149.99,2019-11-15 10:50:00,819 13th St, Atlanta,GA,30301 +293236,USB-C Charging Cable,1,11.95,2019-11-14 19:34:00,976 Sunset St, San Francisco,CA,94016 +293237,AA Batteries (4-pack),2,3.84,2019-11-06 10:33:00,341 Elm St, Atlanta,GA,30301 +293238,Lightning Charging Cable,2,14.95,2019-11-11 15:49:00,911 Lakeview St, Los Angeles,CA,90001 +293239,USB-C Charging Cable,1,11.95,2019-11-25 11:07:00,546 Meadow St, Portland,OR,97035 +293240,AAA Batteries (4-pack),1,2.99,2019-11-28 13:35:00,193 Hickory St, Los Angeles,CA,90001 +293241,Wired Headphones,1,11.99,2019-11-15 18:20:00,401 Wilson St, Los Angeles,CA,90001 +293242,Lightning Charging Cable,1,14.95,2019-11-06 08:12:00,220 Park St, Dallas,TX,75001 +293243,Apple Airpods Headphones,1,150.0,2019-11-22 11:01:00,649 11th St, Los Angeles,CA,90001 +293244,AAA Batteries (4-pack),2,2.99,2019-11-23 14:23:00,504 Wilson St, Los Angeles,CA,90001 +293245,Apple Airpods Headphones,1,150.0,2019-11-01 19:38:00,772 7th St, Portland,OR,97035 +293246,USB-C Charging Cable,1,11.95,2019-11-28 02:55:00,289 7th St, Los Angeles,CA,90001 +293247,27in FHD Monitor,1,149.99,2019-11-18 11:19:00,817 10th St, Austin,TX,73301 +293248,34in Ultrawide Monitor,1,379.99,2019-11-13 15:34:00,322 Center St, Los Angeles,CA,90001 +293249,AAA Batteries (4-pack),2,2.99,2019-11-25 20:50:00,191 Johnson St, New York City,NY,10001 +293250,34in Ultrawide Monitor,1,379.99,2019-11-15 23:34:00,17 Forest St, Portland,OR,97035 +293250,AA Batteries (4-pack),1,3.84,2019-11-15 23:34:00,17 Forest St, Portland,OR,97035 +293251,27in 4K Gaming Monitor,1,389.99,2019-11-19 12:14:00,319 River St, New York City,NY,10001 +293252,iPhone,1,700.0,2019-11-13 09:37:00,84 Johnson St, Boston,MA,02215 +293253,AAA Batteries (4-pack),3,2.99,2019-11-13 13:50:00,106 North St, Los Angeles,CA,90001 +293254,Apple Airpods Headphones,1,150.0,2019-11-01 12:07:00,762 12th St, San Francisco,CA,94016 +293255,AA Batteries (4-pack),3,3.84,2019-11-06 18:31:00,365 9th St, Dallas,TX,75001 +293256,27in 4K Gaming Monitor,1,389.99,2019-11-23 12:33:00,390 Highland St, Dallas,TX,75001 +293257,AAA Batteries (4-pack),1,2.99,2019-11-19 21:24:00,242 Dogwood St, Seattle,WA,98101 +293258,AA Batteries (4-pack),1,3.84,2019-11-14 09:18:00,795 North St, Los Angeles,CA,90001 +293259,USB-C Charging Cable,1,11.95,2019-11-22 20:50:00,26 Washington St, Los Angeles,CA,90001 +293260,Flatscreen TV,1,300.0,2019-11-14 11:58:00,201 13th St, Austin,TX,73301 +293261,AA Batteries (4-pack),1,3.84,2019-11-15 14:14:00,699 Walnut St, Austin,TX,73301 +293262,Wired Headphones,1,11.99,2019-11-12 12:22:00,5 9th St, Atlanta,GA,30301 +293263,Google Phone,1,600.0,2019-11-25 16:50:00,233 Forest St, New York City,NY,10001 +293264,USB-C Charging Cable,1,11.95,2019-11-20 22:52:00,995 7th St, Los Angeles,CA,90001 +293265,ThinkPad Laptop,1,999.99,2019-11-18 09:10:00,824 Madison St, San Francisco,CA,94016 +293266,Apple Airpods Headphones,1,150.0,2019-11-15 21:39:00,988 Elm St, San Francisco,CA,94016 +293267,Vareebadd Phone,1,400.0,2019-11-15 10:44:00,221 Spruce St, San Francisco,CA,94016 +293268,Lightning Charging Cable,1,14.95,2019-11-12 09:18:00,641 Cedar St, Seattle,WA,98101 +293269,Lightning Charging Cable,1,14.95,2019-11-26 23:07:00,374 Lakeview St, New York City,NY,10001 +293270,27in 4K Gaming Monitor,1,389.99,2019-11-04 00:09:00,449 6th St, San Francisco,CA,94016 +293271,Wired Headphones,1,11.99,2019-11-21 11:25:00,683 Pine St, San Francisco,CA,94016 +293272,20in Monitor,1,109.99,2019-11-23 08:53:00,990 Lakeview St, San Francisco,CA,94016 +293273,USB-C Charging Cable,1,11.95,2019-11-25 19:36:00,509 Main St, San Francisco,CA,94016 +293274,AA Batteries (4-pack),1,3.84,2019-11-08 15:42:00,47 Adams St, New York City,NY,10001 +293275,34in Ultrawide Monitor,1,379.99,2019-11-02 17:56:00,628 7th St, New York City,NY,10001 +293276,Lightning Charging Cable,1,14.95,2019-11-06 10:55:00,811 Park St, Seattle,WA,98101 +293277,USB-C Charging Cable,1,11.95,2019-11-07 12:43:00,250 Elm St, San Francisco,CA,94016 +293278,20in Monitor,1,109.99,2019-11-11 11:36:00,882 Park St, Austin,TX,73301 +293279,Apple Airpods Headphones,1,150.0,2019-11-28 09:52:00,43 Pine St, San Francisco,CA,94016 +293280,Lightning Charging Cable,1,14.95,2019-11-17 07:58:00,443 Pine St, Dallas,TX,75001 +293281,AA Batteries (4-pack),1,3.84,2019-11-04 08:23:00,114 Church St, Los Angeles,CA,90001 +293282,AA Batteries (4-pack),1,3.84,2019-11-18 15:09:00,443 11th St, Atlanta,GA,30301 +293283,AA Batteries (4-pack),1,3.84,2019-11-09 16:12:00,752 4th St, San Francisco,CA,94016 +293284,Wired Headphones,1,11.99,2019-11-07 20:19:00,795 Madison St, San Francisco,CA,94016 +293285,Google Phone,1,600.0,2019-11-15 16:25:00,488 Johnson St, Atlanta,GA,30301 +293285,USB-C Charging Cable,1,11.95,2019-11-15 16:25:00,488 Johnson St, Atlanta,GA,30301 +293286,Wired Headphones,1,11.99,2019-11-25 20:13:00,192 Pine St, San Francisco,CA,94016 +293287,USB-C Charging Cable,1,11.95,2019-11-09 15:16:00,171 Adams St, Atlanta,GA,30301 +293288,Wired Headphones,2,11.99,2019-11-26 19:34:00,759 Spruce St, Los Angeles,CA,90001 +293289,AA Batteries (4-pack),1,3.84,2019-11-19 20:59:00,795 Maple St, San Francisco,CA,94016 +293290,Apple Airpods Headphones,1,150.0,2019-11-06 10:42:00,748 Highland St, San Francisco,CA,94016 +293291,AAA Batteries (4-pack),1,2.99,2019-11-26 14:47:00,840 Willow St, Los Angeles,CA,90001 +293292,Lightning Charging Cable,1,14.95,2019-11-11 13:47:00,374 12th St, New York City,NY,10001 +293293,Bose SoundSport Headphones,1,99.99,2019-11-10 17:29:00,482 Jefferson St, Los Angeles,CA,90001 +293294,20in Monitor,1,109.99,2019-11-12 06:01:00,499 Dogwood St, Los Angeles,CA,90001 +293295,27in 4K Gaming Monitor,1,389.99,2019-11-28 10:54:00,444 Highland St, New York City,NY,10001 +293296,AA Batteries (4-pack),1,3.84,2019-11-17 09:26:00,605 Adams St, San Francisco,CA,94016 +293297,AA Batteries (4-pack),1,3.84,2019-11-25 15:36:00,691 Willow St, Portland,OR,97035 +293298,LG Dryer,1,600.0,2019-11-02 08:46:00,68 11th St, Portland,OR,97035 +293299,USB-C Charging Cable,1,11.95,2019-11-16 15:53:00,876 Adams St, Boston,MA,02215 +293300,AA Batteries (4-pack),1,3.84,2019-11-02 11:48:00,301 Highland St, Seattle,WA,98101 +293301,Wired Headphones,1,11.99,2019-11-30 13:16:00,532 14th St, San Francisco,CA,94016 +293302,Lightning Charging Cable,1,14.95,2019-11-08 10:18:00,357 Highland St, Seattle,WA,98101 +293303,Lightning Charging Cable,1,14.95,2019-11-28 16:54:00,568 Church St, New York City,NY,10001 +293304,USB-C Charging Cable,1,11.95,2019-11-29 07:28:00,906 Hickory St, San Francisco,CA,94016 +293305,Flatscreen TV,1,300.0,2019-11-18 11:57:00,672 10th St, Los Angeles,CA,90001 +293306,Bose SoundSport Headphones,1,99.99,2019-11-16 21:43:00,655 11th St, San Francisco,CA,94016 +293307,27in FHD Monitor,2,149.99,2019-11-25 03:16:00,203 Lincoln St, Los Angeles,CA,90001 +293308,iPhone,1,700.0,2019-11-01 18:14:00,980 Madison St, Dallas,TX,75001 +293309,AA Batteries (4-pack),1,3.84,2019-11-23 14:41:00,8 Lake St, San Francisco,CA,94016 +293310,27in FHD Monitor,1,149.99,2019-11-22 17:16:00,101 Spruce St, Boston,MA,02215 +293311,Bose SoundSport Headphones,1,99.99,2019-11-14 20:19:00,803 8th St, Austin,TX,73301 +293312,Lightning Charging Cable,1,14.95,2019-11-15 10:37:00,485 9th St, San Francisco,CA,94016 +293313,Wired Headphones,1,11.99,2019-11-27 14:37:00,693 Washington St, Portland,OR,97035 +293314,ThinkPad Laptop,1,999.99,2019-11-09 20:00:00,379 Adams St, San Francisco,CA,94016 +293315,27in FHD Monitor,1,149.99,2019-11-09 10:15:00,896 Chestnut St, San Francisco,CA,94016 +293316,Lightning Charging Cable,1,14.95,2019-11-22 19:53:00,835 Cherry St, New York City,NY,10001 +293317,Apple Airpods Headphones,1,150.0,2019-11-08 11:59:00,653 North St, San Francisco,CA,94016 +293318,AA Batteries (4-pack),3,3.84,2019-11-29 17:36:00,210 Meadow St, Austin,TX,73301 +293318,Wired Headphones,1,11.99,2019-11-29 17:36:00,210 Meadow St, Austin,TX,73301 +293319,iPhone,1,700.0,2019-11-26 00:18:00,840 Madison St, San Francisco,CA,94016 +293320,27in 4K Gaming Monitor,1,389.99,2019-11-02 00:30:00,330 Elm St, San Francisco,CA,94016 +293321,Apple Airpods Headphones,1,150.0,2019-11-12 12:54:00,161 Meadow St, San Francisco,CA,94016 +293322,iPhone,1,700.0,2019-11-27 19:50:00,397 Chestnut St, Austin,TX,73301 +293323,Bose SoundSport Headphones,1,99.99,2019-11-30 15:17:00,921 Center St, San Francisco,CA,94016 +293324,20in Monitor,1,109.99,2019-11-05 14:50:00,51 Elm St, San Francisco,CA,94016 +293325,Macbook Pro Laptop,1,1700.0,2019-11-25 20:29:00,335 Center St, Portland,OR,97035 +293326,AA Batteries (4-pack),1,3.84,2019-11-25 01:39:00,352 Park St, New York City,NY,10001 +293327,iPhone,1,700.0,2019-11-05 15:46:00,697 Jefferson St, Dallas,TX,75001 +293328,USB-C Charging Cable,1,11.95,2019-11-06 18:49:00,904 Dogwood St, Dallas,TX,75001 +293329,27in FHD Monitor,1,149.99,2019-11-08 17:27:00,936 2nd St, Boston,MA,02215 +293330,AA Batteries (4-pack),1,3.84,2019-11-13 13:57:00,797 River St, San Francisco,CA,94016 +293331,Bose SoundSport Headphones,1,99.99,2019-11-03 17:44:00,198 River St, New York City,NY,10001 +293332,AA Batteries (4-pack),1,3.84,2019-11-02 13:08:00,69 1st St, Dallas,TX,75001 +293333,Google Phone,1,600.0,2019-11-06 21:17:00,229 Sunset St, San Francisco,CA,94016 +293334,Flatscreen TV,1,300.0,2019-11-29 12:36:00,470 Park St, Seattle,WA,98101 +293335,LG Dryer,1,600.0,2019-11-03 10:27:00,532 7th St, Atlanta,GA,30301 +293336,Flatscreen TV,1,300.0,2019-11-25 18:22:00,192 Dogwood St, Los Angeles,CA,90001 +293337,USB-C Charging Cable,1,11.95,2019-11-14 23:11:00,880 Jefferson St, Seattle,WA,98101 +293338,Bose SoundSport Headphones,1,99.99,2019-11-20 15:46:00,969 Lakeview St, Portland,OR,97035 +293339,ThinkPad Laptop,1,999.99,2019-11-16 22:38:00,101 Lake St, Dallas,TX,75001 +293340,AAA Batteries (4-pack),2,2.99,2019-11-12 17:22:00,965 7th St, Los Angeles,CA,90001 +293340,Google Phone,1,600.0,2019-11-12 17:22:00,965 7th St, Los Angeles,CA,90001 +293341,AA Batteries (4-pack),1,3.84,2019-11-29 19:11:00,416 8th St, San Francisco,CA,94016 +293342,Apple Airpods Headphones,1,150.0,2019-11-05 12:15:00,42 Main St, Portland,ME,04101 +293343,AA Batteries (4-pack),1,3.84,2019-11-04 04:31:00,355 Meadow St, Los Angeles,CA,90001 +293344,Wired Headphones,1,11.99,2019-11-13 21:29:00,766 North St, Dallas,TX,75001 +293345,Lightning Charging Cable,1,14.95,2019-11-10 12:12:00,133 Meadow St, Dallas,TX,75001 +293346,Bose SoundSport Headphones,1,99.99,2019-11-06 16:31:00,474 14th St, Portland,OR,97035 +293347,Bose SoundSport Headphones,1,99.99,2019-11-19 00:04:00,964 Cherry St, Los Angeles,CA,90001 +293348,AA Batteries (4-pack),1,3.84,2019-11-25 16:21:00,632 7th St, New York City,NY,10001 +293349,Wired Headphones,1,11.99,2019-11-09 23:19:00,584 Jackson St, Atlanta,GA,30301 +293350,Apple Airpods Headphones,1,150.0,2019-11-11 20:22:00,898 River St, Los Angeles,CA,90001 +293351,USB-C Charging Cable,1,11.95,2019-11-03 16:12:00,657 Jefferson St, Los Angeles,CA,90001 +293352,USB-C Charging Cable,1,11.95,2019-11-18 18:53:00,66 Dogwood St, Portland,OR,97035 +293353,Google Phone,1,600.0,2019-11-29 14:53:00,733 Highland St, Portland,OR,97035 +293354,USB-C Charging Cable,1,11.95,2019-11-20 17:49:00,64 Adams St, Portland,OR,97035 +293355,Google Phone,1,600.0,2019-11-10 15:02:00,856 Hill St, San Francisco,CA,94016 +293356,USB-C Charging Cable,1,11.95,2019-11-13 00:59:00,394 Dogwood St, Dallas,TX,75001 +293357,Apple Airpods Headphones,1,150.0,2019-11-25 09:09:00,102 River St, Atlanta,GA,30301 +293358,Lightning Charging Cable,1,14.95,2019-11-30 13:29:00,780 Cherry St, Boston,MA,02215 +293359,Vareebadd Phone,1,400.0,2019-11-28 12:53:00,848 Jefferson St, Seattle,WA,98101 +293360,USB-C Charging Cable,1,11.95,2019-11-21 15:55:00,396 10th St, Los Angeles,CA,90001 +293361,Lightning Charging Cable,1,14.95,2019-11-04 11:28:00,905 Willow St, San Francisco,CA,94016 +293361,27in 4K Gaming Monitor,1,389.99,2019-11-04 11:28:00,905 Willow St, San Francisco,CA,94016 +293362,34in Ultrawide Monitor,1,379.99,2019-11-25 12:08:00,587 Lakeview St, Boston,MA,02215 +293363,Vareebadd Phone,1,400.0,2019-11-22 18:20:00,658 Hickory St, Dallas,TX,75001 +293364,Flatscreen TV,1,300.0,2019-11-25 10:29:00,269 Willow St, San Francisco,CA,94016 +293365,AAA Batteries (4-pack),1,2.99,2019-11-13 21:23:00,959 Elm St, Portland,ME,04101 +293366,Flatscreen TV,1,300.0,2019-11-11 09:07:00,704 Meadow St, Los Angeles,CA,90001 +293367,AAA Batteries (4-pack),1,2.99,2019-11-21 20:12:00,708 Main St, San Francisco,CA,94016 +293368,Bose SoundSport Headphones,1,99.99,2019-11-23 20:18:00,197 Highland St, Boston,MA,02215 +293369,Lightning Charging Cable,1,14.95,2019-11-03 22:01:00,163 Center St, Portland,OR,97035 +293370,Apple Airpods Headphones,1,150.0,2019-11-03 16:39:00,667 Park St, San Francisco,CA,94016 +293371,AA Batteries (4-pack),2,3.84,2019-11-14 11:56:00,862 13th St, Dallas,TX,75001 +293372,AAA Batteries (4-pack),1,2.99,2019-11-29 07:56:00,355 North St, San Francisco,CA,94016 +293373,LG Dryer,1,600.0,2019-11-18 21:33:00,585 South St, Los Angeles,CA,90001 +293374,Flatscreen TV,1,300.0,2019-11-13 12:12:00,409 Wilson St, Austin,TX,73301 +293375,Flatscreen TV,1,300.0,2019-11-22 16:18:00,738 8th St, San Francisco,CA,94016 +293376,Wired Headphones,1,11.99,2019-11-27 14:57:00,372 Center St, Austin,TX,73301 +293377,Bose SoundSport Headphones,1,99.99,2019-11-29 20:15:00,733 Church St, Seattle,WA,98101 +293378,Apple Airpods Headphones,1,150.0,2019-11-20 01:06:00,153 1st St, Atlanta,GA,30301 +293379,20in Monitor,1,109.99,2019-11-07 16:00:00,836 Adams St, Atlanta,GA,30301 +293380,Lightning Charging Cable,1,14.95,2019-11-10 12:50:00,800 Washington St, Portland,OR,97035 +293381,iPhone,1,700.0,2019-11-29 03:17:00,701 Chestnut St, San Francisco,CA,94016 +293382,AAA Batteries (4-pack),1,2.99,2019-11-07 19:43:00,839 Meadow St, Atlanta,GA,30301 +293383,USB-C Charging Cable,2,11.95,2019-11-03 11:28:00,780 River St, San Francisco,CA,94016 +293384,27in 4K Gaming Monitor,1,389.99,2019-11-04 13:32:00,197 7th St, Los Angeles,CA,90001 +293385,Flatscreen TV,1,300.0,2019-11-19 00:05:00,819 4th St, New York City,NY,10001 +293386,Macbook Pro Laptop,1,1700.0,2019-11-30 07:14:00,653 Washington St, Boston,MA,02215 +293387,AAA Batteries (4-pack),1,2.99,2019-11-12 13:32:00,738 10th St, New York City,NY,10001 +293388,Wired Headphones,1,11.99,2019-11-25 12:02:00,658 Maple St, San Francisco,CA,94016 +293389,AA Batteries (4-pack),1,3.84,2019-11-26 03:05:00,450 Meadow St, San Francisco,CA,94016 +293390,USB-C Charging Cable,1,11.95,2019-11-26 15:16:00,232 Dogwood St, San Francisco,CA,94016 +293391,Lightning Charging Cable,1,14.95,2019-11-13 09:58:00,911 Cedar St, San Francisco,CA,94016 +293392,Lightning Charging Cable,1,14.95,2019-11-30 12:08:00,93 Hickory St, Portland,OR,97035 +293393,AA Batteries (4-pack),2,3.84,2019-11-03 21:01:00,38 Cedar St, San Francisco,CA,94016 +293394,LG Dryer,1,600.0,2019-11-24 20:29:00,770 Elm St, Portland,OR,97035 +293395,AA Batteries (4-pack),1,3.84,2019-11-10 23:29:00,991 Sunset St, New York City,NY,10001 +293396,27in 4K Gaming Monitor,1,389.99,2019-11-27 00:31:00,946 Sunset St, Boston,MA,02215 +293397,Bose SoundSport Headphones,1,99.99,2019-11-12 12:38:00,526 Forest St, Portland,OR,97035 +293398,AA Batteries (4-pack),1,3.84,2019-11-05 13:10:00,538 Adams St, San Francisco,CA,94016 +293399,Flatscreen TV,1,300.0,2019-11-28 21:33:00,233 Jefferson St, New York City,NY,10001 +293400,USB-C Charging Cable,1,11.95,2019-11-23 21:15:00,830 Cedar St, San Francisco,CA,94016 +293401,AAA Batteries (4-pack),1,2.99,2019-11-09 12:20:00,740 Johnson St, San Francisco,CA,94016 +293402,AAA Batteries (4-pack),1,2.99,2019-11-07 20:41:00,149 Willow St, San Francisco,CA,94016 +293403,Apple Airpods Headphones,1,150.0,2019-11-02 10:37:00,873 Pine St, Boston,MA,02215 +293404,AAA Batteries (4-pack),1,2.99,2019-11-05 22:21:00,269 Maple St, Portland,OR,97035 +293405,Flatscreen TV,1,300.0,2019-11-19 20:31:00,257 Main St, Dallas,TX,75001 +293406,AA Batteries (4-pack),2,3.84,2019-11-12 14:48:00,244 2nd St, Los Angeles,CA,90001 +293407,Bose SoundSport Headphones,1,99.99,2019-11-13 15:34:00,896 Elm St, Los Angeles,CA,90001 +293408,Apple Airpods Headphones,1,150.0,2019-11-02 18:43:00,768 Cedar St, Portland,OR,97035 +293409,27in FHD Monitor,1,149.99,2019-11-21 13:25:00,370 Cherry St, Los Angeles,CA,90001 +293410,Google Phone,1,600.0,2019-11-08 15:47:00,346 11th St, Seattle,WA,98101 +293411,Lightning Charging Cable,1,14.95,2019-11-04 19:48:00,13 Washington St, Portland,OR,97035 +293412,27in 4K Gaming Monitor,1,389.99,2019-11-28 19:19:00,406 11th St, Seattle,WA,98101 +293413,USB-C Charging Cable,2,11.95,2019-11-07 21:25:00,693 Hill St, Boston,MA,02215 +293414,Flatscreen TV,1,300.0,2019-11-07 20:46:00,428 Madison St, Austin,TX,73301 +293415,USB-C Charging Cable,2,11.95,2019-11-01 10:12:00,466 8th St, Boston,MA,02215 +293416,Apple Airpods Headphones,1,150.0,2019-11-29 15:38:00,850 Park St, Seattle,WA,98101 +293417,USB-C Charging Cable,1,11.95,2019-11-18 11:22:00,558 South St, Portland,OR,97035 +293418,Lightning Charging Cable,1,14.95,2019-11-25 12:54:00,276 Walnut St, Dallas,TX,75001 +293419,Bose SoundSport Headphones,2,99.99,2019-11-12 20:43:00,355 Hickory St, San Francisco,CA,94016 +293420,USB-C Charging Cable,1,11.95,2019-11-13 15:45:00,903 Park St, Boston,MA,02215 +293421,AAA Batteries (4-pack),2,2.99,2019-11-27 14:14:00,851 7th St, Atlanta,GA,30301 +293422,Wired Headphones,1,11.99,2019-11-12 18:52:00,935 Dogwood St, Atlanta,GA,30301 +293423,20in Monitor,1,109.99,2019-11-06 11:09:00,782 8th St, Los Angeles,CA,90001 +293424,USB-C Charging Cable,2,11.95,2019-11-25 19:01:00,351 Dogwood St, New York City,NY,10001 +293425,AA Batteries (4-pack),1,3.84,2019-11-13 04:30:00,810 Spruce St, New York City,NY,10001 +293426,AAA Batteries (4-pack),1,2.99,2019-11-02 10:23:00,218 Cherry St, Los Angeles,CA,90001 +293427,USB-C Charging Cable,1,11.95,2019-11-10 12:16:00,929 7th St, Dallas,TX,75001 +293428,Lightning Charging Cable,1,14.95,2019-11-03 20:26:00,94 Pine St, San Francisco,CA,94016 +293429,27in FHD Monitor,1,149.99,2019-11-01 21:04:00,225 Willow St, Portland,OR,97035 +293430,Lightning Charging Cable,1,14.95,2019-11-14 18:44:00,525 11th St, New York City,NY,10001 +293431,Lightning Charging Cable,1,14.95,2019-11-24 20:28:00,83 Hill St, Seattle,WA,98101 +293432,Wired Headphones,1,11.99,2019-11-13 16:06:00,424 Forest St, New York City,NY,10001 +293433,Bose SoundSport Headphones,1,99.99,2019-11-25 18:30:00,500 Jackson St, Portland,OR,97035 +293434,Bose SoundSport Headphones,1,99.99,2019-11-11 16:58:00,507 Washington St, Seattle,WA,98101 +293435,34in Ultrawide Monitor,1,379.99,2019-11-20 22:06:00,390 Spruce St, Austin,TX,73301 +293436,AAA Batteries (4-pack),1,2.99,2019-11-20 19:43:00,868 Adams St, San Francisco,CA,94016 +293437,USB-C Charging Cable,1,11.95,2019-11-27 12:31:00,884 4th St, Portland,OR,97035 +293438,AA Batteries (4-pack),2,3.84,2019-11-22 12:50:00,881 Johnson St, Boston,MA,02215 +293439,AAA Batteries (4-pack),1,2.99,2019-11-06 23:57:00,563 Dogwood St, Los Angeles,CA,90001 +293440,Google Phone,1,600.0,2019-11-18 22:23:00,235 Hickory St, Boston,MA,02215 +293441,Apple Airpods Headphones,1,150.0,2019-11-16 18:15:00,348 Center St, Boston,MA,02215 +293442,AAA Batteries (4-pack),1,2.99,2019-11-25 11:51:00,503 Cherry St, Los Angeles,CA,90001 +293443,AAA Batteries (4-pack),1,2.99,2019-11-09 17:12:00,347 Lake St, Los Angeles,CA,90001 +293444,Lightning Charging Cable,1,14.95,2019-11-05 07:53:00,421 Lake St, Seattle,WA,98101 +293445,Lightning Charging Cable,1,14.95,2019-11-05 12:54:00,123 9th St, Atlanta,GA,30301 +293445,Bose SoundSport Headphones,1,99.99,2019-11-05 12:54:00,123 9th St, Atlanta,GA,30301 +293446,34in Ultrawide Monitor,1,379.99,2019-11-20 09:08:00,705 Main St, Atlanta,GA,30301 +293447,Flatscreen TV,1,300.0,2019-11-27 00:45:00,87 Jefferson St, San Francisco,CA,94016 +293448,AAA Batteries (4-pack),3,2.99,2019-11-08 11:02:00,546 Madison St, Dallas,TX,75001 +293449,27in 4K Gaming Monitor,1,389.99,2019-11-04 22:04:00,122 Dogwood St, New York City,NY,10001 +293450,USB-C Charging Cable,1,11.95,2019-12-01 01:47:00,890 9th St, San Francisco,CA,94016 +293451,USB-C Charging Cable,2,11.95,2019-11-07 14:56:00,403 11th St, San Francisco,CA,94016 +293452,AAA Batteries (4-pack),1,2.99,2019-11-28 18:12:00,973 River St, Dallas,TX,75001 +293453,20in Monitor,1,109.99,2019-11-15 15:49:00,771 Main St, San Francisco,CA,94016 +293454,Apple Airpods Headphones,1,150.0,2019-11-30 10:56:00,290 Spruce St, New York City,NY,10001 +293455,Wired Headphones,1,11.99,2019-11-21 14:45:00,210 Dogwood St, Los Angeles,CA,90001 +293456,Wired Headphones,1,11.99,2019-11-21 08:36:00,353 Spruce St, New York City,NY,10001 +293457,Bose SoundSport Headphones,1,99.99,2019-11-01 20:07:00,999 Chestnut St, Los Angeles,CA,90001 +293458,20in Monitor,1,109.99,2019-11-11 21:06:00,154 6th St, New York City,NY,10001 +293459,27in FHD Monitor,1,149.99,2019-11-06 18:16:00,519 Madison St, New York City,NY,10001 +293460,USB-C Charging Cable,1,11.95,2019-11-13 10:39:00,333 2nd St, Boston,MA,02215 +293461,AA Batteries (4-pack),3,3.84,2019-11-16 19:25:00,909 5th St, Atlanta,GA,30301 +293462,AAA Batteries (4-pack),1,2.99,2019-11-24 21:45:00,36 Cedar St, Seattle,WA,98101 +293463,Wired Headphones,1,11.99,2019-11-03 16:00:00,948 Lakeview St, Austin,TX,73301 +293464,27in FHD Monitor,1,149.99,2019-11-25 14:00:00,546 Adams St, Boston,MA,02215 +293465,Lightning Charging Cable,2,14.95,2019-11-02 18:40:00,507 Meadow St, Los Angeles,CA,90001 +293466,Wired Headphones,1,11.99,2019-11-17 16:58:00,167 West St, Dallas,TX,75001 +293467,Lightning Charging Cable,1,14.95,2019-11-26 20:32:00,75 Johnson St, Dallas,TX,75001 +293468,20in Monitor,1,109.99,2019-11-05 22:08:00,669 Spruce St, San Francisco,CA,94016 +293469,Google Phone,1,600.0,2019-11-25 18:33:00,713 Cherry St, Los Angeles,CA,90001 +293469,Wired Headphones,1,11.99,2019-11-25 18:33:00,713 Cherry St, Los Angeles,CA,90001 +293470,Bose SoundSport Headphones,1,99.99,2019-11-20 21:15:00,891 South St, Atlanta,GA,30301 +293471,AA Batteries (4-pack),1,3.84,2019-11-03 00:31:00,137 Lake St, San Francisco,CA,94016 +293472,Bose SoundSport Headphones,1,99.99,2019-11-02 20:32:00,836 Spruce St, Dallas,TX,75001 +293473,Wired Headphones,1,11.99,2019-11-26 10:39:00,231 8th St, Los Angeles,CA,90001 +293474,AA Batteries (4-pack),3,3.84,2019-11-28 10:14:00,660 6th St, Los Angeles,CA,90001 +293475,Apple Airpods Headphones,1,150.0,2019-11-18 15:17:00,240 1st St, New York City,NY,10001 +293476,27in 4K Gaming Monitor,1,389.99,2019-11-27 18:31:00,276 6th St, Seattle,WA,98101 +293477,AA Batteries (4-pack),1,3.84,2019-11-10 22:40:00,494 Lincoln St, Dallas,TX,75001 +293478,USB-C Charging Cable,1,11.95,2019-11-06 14:41:00,666 Maple St, Boston,MA,02215 +293479,Lightning Charging Cable,1,14.95,2019-11-16 16:48:00,197 Elm St, San Francisco,CA,94016 +293480,USB-C Charging Cable,1,11.95,2019-11-24 14:27:00,14 Park St, San Francisco,CA,94016 +293481,AA Batteries (4-pack),2,3.84,2019-11-10 14:12:00,86 2nd St, San Francisco,CA,94016 +293482,Lightning Charging Cable,1,14.95,2019-11-26 18:37:00,660 1st St, Dallas,TX,75001 +293483,Flatscreen TV,1,300.0,2019-11-11 11:46:00,700 Dogwood St, San Francisco,CA,94016 +293484,AAA Batteries (4-pack),1,2.99,2019-11-14 12:03:00,976 7th St, San Francisco,CA,94016 +293485,iPhone,1,700.0,2019-11-20 07:41:00,586 Willow St, San Francisco,CA,94016 +293485,Lightning Charging Cable,1,14.95,2019-11-20 07:41:00,586 Willow St, San Francisco,CA,94016 +293485,Wired Headphones,1,11.99,2019-11-20 07:41:00,586 Willow St, San Francisco,CA,94016 +293486,AAA Batteries (4-pack),3,2.99,2019-11-14 11:28:00,803 Hickory St, New York City,NY,10001 +293487,34in Ultrawide Monitor,1,379.99,2019-11-25 21:09:00,208 Park St, Portland,OR,97035 +293488,AAA Batteries (4-pack),1,2.99,2019-11-04 10:58:00,439 Walnut St, Portland,OR,97035 +293489,Apple Airpods Headphones,1,150.0,2019-11-19 20:05:00,791 Willow St, New York City,NY,10001 +293490,AA Batteries (4-pack),1,3.84,2019-11-06 18:56:00,476 South St, Boston,MA,02215 +293491,Lightning Charging Cable,2,14.95,2019-11-29 15:42:00,444 12th St, Seattle,WA,98101 +293492,Bose SoundSport Headphones,1,99.99,2019-11-20 23:37:00,707 Cedar St, Portland,OR,97035 +293493,34in Ultrawide Monitor,1,379.99,2019-11-19 15:50:00,582 Chestnut St, Atlanta,GA,30301 +293494,Vareebadd Phone,1,400.0,2019-11-10 20:51:00,939 Forest St, Dallas,TX,75001 +293495,USB-C Charging Cable,1,11.95,2019-11-30 13:21:00,459 Spruce St, San Francisco,CA,94016 +293496,Apple Airpods Headphones,1,150.0,2019-11-21 08:22:00,411 Madison St, San Francisco,CA,94016 +293497,AA Batteries (4-pack),1,3.84,2019-11-30 09:01:00,359 1st St, Los Angeles,CA,90001 +293498,Apple Airpods Headphones,1,150.0,2019-11-18 14:05:00,439 Chestnut St, San Francisco,CA,94016 +293499,AA Batteries (4-pack),1,3.84,2019-11-29 23:05:00,889 Maple St, New York City,NY,10001 +293500,AAA Batteries (4-pack),1,2.99,2019-11-28 07:28:00,306 5th St, Seattle,WA,98101 +293501,USB-C Charging Cable,1,11.95,2019-11-23 19:33:00,27 Maple St, Portland,OR,97035 +293502,AA Batteries (4-pack),1,3.84,2019-11-02 10:21:00,162 Washington St, San Francisco,CA,94016 +293503,27in FHD Monitor,1,149.99,2019-11-11 15:39:00,942 8th St, San Francisco,CA,94016 +293504,Wired Headphones,1,11.99,2019-11-18 17:17:00,76 14th St, Portland,OR,97035 +293505,Lightning Charging Cable,1,14.95,2019-11-01 17:37:00,510 North St, New York City,NY,10001 +293506,AA Batteries (4-pack),2,3.84,2019-11-16 12:42:00,88 Johnson St, Seattle,WA,98101 +293507,Bose SoundSport Headphones,1,99.99,2019-11-09 14:26:00,497 Spruce St, Portland,ME,04101 +293508,iPhone,1,700.0,2019-11-20 09:59:00,74 Ridge St, Dallas,TX,75001 +293509,Bose SoundSport Headphones,1,99.99,2019-11-05 16:43:00,517 Cherry St, Boston,MA,02215 +293510,34in Ultrawide Monitor,1,379.99,2019-11-26 16:41:00,330 7th St, Los Angeles,CA,90001 +293511,AAA Batteries (4-pack),1,2.99,2019-11-21 00:43:00,572 11th St, Los Angeles,CA,90001 +293512,AAA Batteries (4-pack),2,2.99,2019-11-09 16:22:00,704 Hickory St, San Francisco,CA,94016 +293513,iPhone,1,700.0,2019-11-02 12:37:00,255 Madison St, New York City,NY,10001 +293514,AA Batteries (4-pack),2,3.84,2019-11-13 13:49:00,797 Adams St, Los Angeles,CA,90001 +293515,Wired Headphones,1,11.99,2019-11-11 17:37:00,635 Johnson St, Atlanta,GA,30301 +293516,USB-C Charging Cable,1,11.95,2019-11-02 12:17:00,133 Washington St, New York City,NY,10001 +293517,Lightning Charging Cable,1,14.95,2019-11-15 19:10:00,144 North St, Portland,OR,97035 +293518,Lightning Charging Cable,1,14.95,2019-11-03 19:03:00,165 Madison St, Boston,MA,02215 +293519,Bose SoundSport Headphones,1,99.99,2019-11-18 21:57:00,114 Main St, Los Angeles,CA,90001 +293520,Apple Airpods Headphones,1,150.0,2019-11-17 17:08:00,486 Johnson St, New York City,NY,10001 +293520,Google Phone,1,600.0,2019-11-17 17:08:00,486 Johnson St, New York City,NY,10001 +293521,Wired Headphones,1,11.99,2019-11-09 14:05:00,147 Maple St, Los Angeles,CA,90001 +293522,AA Batteries (4-pack),4,3.84,2019-11-01 16:03:00,577 13th St, San Francisco,CA,94016 +293523,Wired Headphones,1,11.99,2019-11-22 13:51:00,445 14th St, San Francisco,CA,94016 +293524,Apple Airpods Headphones,1,150.0,2019-11-26 21:52:00,347 2nd St, San Francisco,CA,94016 +293525,27in FHD Monitor,1,149.99,2019-11-12 19:02:00,268 Elm St, New York City,NY,10001 +293526,AAA Batteries (4-pack),1,2.99,2019-11-28 14:53:00,473 Church St, Boston,MA,02215 +293527,USB-C Charging Cable,1,11.95,2019-11-14 10:31:00,224 Church St, San Francisco,CA,94016 +293528,Apple Airpods Headphones,1,150.0,2019-11-30 12:44:00,994 West St, New York City,NY,10001 +293529,Wired Headphones,1,11.99,2019-11-20 19:52:00,137 Madison St, Austin,TX,73301 +293530,Apple Airpods Headphones,1,150.0,2019-11-26 20:43:00,787 Lake St, San Francisco,CA,94016 +293531,20in Monitor,1,109.99,2019-11-06 17:42:00,967 Chestnut St, San Francisco,CA,94016 +293532,Bose SoundSport Headphones,1,99.99,2019-11-30 16:38:00,991 Hickory St, Dallas,TX,75001 +293533,Bose SoundSport Headphones,1,99.99,2019-11-01 11:10:00,877 Maple St, Los Angeles,CA,90001 +293534,27in 4K Gaming Monitor,1,389.99,2019-11-22 13:17:00,464 9th St, San Francisco,CA,94016 +293535,27in FHD Monitor,1,149.99,2019-11-21 15:46:00,293 Johnson St, New York City,NY,10001 +293536,Lightning Charging Cable,1,14.95,2019-11-23 16:39:00,396 13th St, Dallas,TX,75001 +293537,Wired Headphones,1,11.99,2019-11-11 18:43:00,910 Lakeview St, San Francisco,CA,94016 +293538,AA Batteries (4-pack),1,3.84,2019-11-02 20:14:00,94 Adams St, Seattle,WA,98101 +293539,AAA Batteries (4-pack),2,2.99,2019-11-11 18:28:00,732 Walnut St, Seattle,WA,98101 +293540,Macbook Pro Laptop,1,1700.0,2019-11-24 06:22:00,832 7th St, New York City,NY,10001 +293541,Wired Headphones,1,11.99,2019-11-05 19:59:00,996 Park St, San Francisco,CA,94016 +293542,Google Phone,1,600.0,2019-11-18 17:13:00,429 6th St, Boston,MA,02215 +293543,AAA Batteries (4-pack),1,2.99,2019-11-20 13:04:00,893 Jefferson St, Los Angeles,CA,90001 +293544,Wired Headphones,1,11.99,2019-11-02 23:19:00,924 West St, San Francisco,CA,94016 +293545,Lightning Charging Cable,1,14.95,2019-11-30 10:04:00,176 Elm St, Dallas,TX,75001 +293546,USB-C Charging Cable,1,11.95,2019-11-22 12:35:00,994 Dogwood St, Los Angeles,CA,90001 +293547,Apple Airpods Headphones,1,150.0,2019-11-06 23:07:00,355 Chestnut St, Austin,TX,73301 +293548,Flatscreen TV,1,300.0,2019-11-17 20:03:00,317 River St, Dallas,TX,75001 +293549,Bose SoundSport Headphones,1,99.99,2019-11-24 20:18:00,73 4th St, Portland,ME,04101 +293550,Wired Headphones,1,11.99,2019-11-06 22:47:00,785 12th St, San Francisco,CA,94016 +293551,Google Phone,1,600.0,2019-11-25 15:09:00,300 14th St, San Francisco,CA,94016 +293552,Apple Airpods Headphones,1,150.0,2019-11-13 05:15:00,689 Hickory St, San Francisco,CA,94016 +293553,Lightning Charging Cable,2,14.95,2019-11-27 21:14:00,761 Highland St, San Francisco,CA,94016 +293554,Apple Airpods Headphones,1,150.0,2019-11-09 20:13:00,660 Meadow St, Boston,MA,02215 +293555,Apple Airpods Headphones,1,150.0,2019-11-26 13:39:00,269 Washington St, Portland,OR,97035 +293556,USB-C Charging Cable,1,11.95,2019-11-15 17:57:00,795 Jackson St, San Francisco,CA,94016 +293557,USB-C Charging Cable,1,11.95,2019-11-28 13:35:00,676 Hill St, Los Angeles,CA,90001 +293558,Wired Headphones,1,11.99,2019-11-09 12:05:00,765 10th St, Boston,MA,02215 +293559,AA Batteries (4-pack),1,3.84,2019-11-25 23:42:00,413 South St, Dallas,TX,75001 +293560,27in 4K Gaming Monitor,1,389.99,2019-11-11 16:26:00,235 Chestnut St, New York City,NY,10001 +293560,Wired Headphones,1,11.99,2019-11-11 16:26:00,235 Chestnut St, New York City,NY,10001 +293561,AAA Batteries (4-pack),1,2.99,2019-11-21 21:18:00,131 9th St, New York City,NY,10001 +293562,Wired Headphones,1,11.99,2019-11-10 15:42:00,223 Lakeview St, San Francisco,CA,94016 +293563,Bose SoundSport Headphones,1,99.99,2019-11-24 19:43:00,424 Pine St, Austin,TX,73301 +293564,AA Batteries (4-pack),2,3.84,2019-11-13 16:52:00,488 Dogwood St, Los Angeles,CA,90001 +293565,Wired Headphones,1,11.99,2019-11-27 13:06:00,86 Ridge St, New York City,NY,10001 +293566,ThinkPad Laptop,1,999.99,2019-11-17 11:18:00,361 13th St, Seattle,WA,98101 +293567,AA Batteries (4-pack),1,3.84,2019-11-18 07:41:00,668 Chestnut St, Portland,ME,04101 +293568,AA Batteries (4-pack),1,3.84,2019-11-13 18:35:00,296 9th St, Boston,MA,02215 +293569,Bose SoundSport Headphones,1,99.99,2019-11-21 17:46:00,453 Church St, Los Angeles,CA,90001 +293570,Wired Headphones,1,11.99,2019-11-11 07:40:00,453 Lakeview St, Los Angeles,CA,90001 +293571,Lightning Charging Cable,1,14.95,2019-11-04 18:09:00,145 10th St, Atlanta,GA,30301 +293572,Wired Headphones,2,11.99,2019-11-08 09:43:00,230 11th St, Seattle,WA,98101 +293573,Lightning Charging Cable,1,14.95,2019-11-02 18:45:00,522 6th St, New York City,NY,10001 +293574,USB-C Charging Cable,1,11.95,2019-11-14 10:46:00,674 Park St, Dallas,TX,75001 +293575,Bose SoundSport Headphones,1,99.99,2019-11-30 17:34:00,940 Spruce St, New York City,NY,10001 +293576,USB-C Charging Cable,1,11.95,2019-11-16 10:31:00,721 Adams St, Boston,MA,02215 +293577,Bose SoundSport Headphones,1,99.99,2019-11-16 14:43:00,660 Spruce St, New York City,NY,10001 +293578,34in Ultrawide Monitor,1,379.99,2019-11-03 11:20:00,168 12th St, San Francisco,CA,94016 +293579,USB-C Charging Cable,1,11.95,2019-11-08 17:41:00,104 River St, San Francisco,CA,94016 +293580,27in 4K Gaming Monitor,1,389.99,2019-11-08 18:21:00,442 Lake St, Los Angeles,CA,90001 +293581,Wired Headphones,1,11.99,2019-11-13 14:48:00,125 8th St, San Francisco,CA,94016 +293582,Wired Headphones,1,11.99,2019-11-10 10:11:00,933 11th St, New York City,NY,10001 +293583,Lightning Charging Cable,1,14.95,2019-11-01 15:04:00,309 Jefferson St, Boston,MA,02215 +293584,Lightning Charging Cable,1,14.95,2019-11-12 20:50:00,221 Lake St, Atlanta,GA,30301 +293585,Lightning Charging Cable,1,14.95,2019-11-10 22:18:00,366 Willow St, Atlanta,GA,30301 +293586,Wired Headphones,1,11.99,2019-11-20 20:48:00,80 Pine St, Dallas,TX,75001 +293587,Apple Airpods Headphones,1,150.0,2019-11-26 22:22:00,148 Johnson St, Portland,OR,97035 +293588,Lightning Charging Cable,1,14.95,2019-11-18 13:57:00,143 Meadow St, Austin,TX,73301 +293589,AA Batteries (4-pack),1,3.84,2019-11-07 10:14:00,504 Lakeview St, San Francisco,CA,94016 +293590,Lightning Charging Cable,1,14.95,2019-11-03 08:53:00,138 Main St, Atlanta,GA,30301 +293591,USB-C Charging Cable,1,11.95,2019-11-26 09:22:00,549 Jackson St, Portland,OR,97035 +293592,Lightning Charging Cable,1,14.95,2019-11-29 19:29:00,62 12th St, Atlanta,GA,30301 +293593,Apple Airpods Headphones,1,150.0,2019-11-22 16:25:00,621 13th St, San Francisco,CA,94016 +293594,Flatscreen TV,1,300.0,2019-11-16 12:06:00,611 13th St, Dallas,TX,75001 +293595,27in FHD Monitor,1,149.99,2019-11-04 09:11:00,891 Spruce St, San Francisco,CA,94016 +293596,Apple Airpods Headphones,1,150.0,2019-11-28 14:57:00,1 Lake St, Los Angeles,CA,90001 +293597,Apple Airpods Headphones,1,150.0,2019-11-22 20:00:00,291 Meadow St, San Francisco,CA,94016 +293598,27in FHD Monitor,1,149.99,2019-11-13 23:02:00,347 Willow St, Los Angeles,CA,90001 +293599,Bose SoundSport Headphones,1,99.99,2019-11-19 13:40:00,551 Church St, Los Angeles,CA,90001 +293600,20in Monitor,1,109.99,2019-11-02 16:08:00,3 Lake St, San Francisco,CA,94016 +293601,LG Washing Machine,1,600.0,2019-11-22 17:34:00,383 Spruce St, San Francisco,CA,94016 +293602,ThinkPad Laptop,1,999.99,2019-11-19 20:20:00,217 8th St, Seattle,WA,98101 +293603,27in FHD Monitor,1,149.99,2019-11-08 12:43:00,559 Lincoln St, Seattle,WA,98101 +293604,LG Washing Machine,1,600.0,2019-11-24 18:40:00,458 Madison St, San Francisco,CA,94016 +293605,Apple Airpods Headphones,1,150.0,2019-11-16 01:16:00,279 9th St, Boston,MA,02215 +293606,AA Batteries (4-pack),1,3.84,2019-11-12 19:44:00,454 Highland St, New York City,NY,10001 +293607,Apple Airpods Headphones,1,150.0,2019-11-01 16:37:00,186 Washington St, San Francisco,CA,94016 +293608,Google Phone,1,600.0,2019-11-03 12:15:00,309 Chestnut St, Austin,TX,73301 +293609,AAA Batteries (4-pack),2,2.99,2019-11-06 23:16:00,937 Park St, Los Angeles,CA,90001 +293610,Flatscreen TV,1,300.0,2019-11-17 13:28:00,101 Lincoln St, Los Angeles,CA,90001 +293611,Apple Airpods Headphones,1,150.0,2019-11-09 16:36:00,493 West St, San Francisco,CA,94016 +293612,ThinkPad Laptop,1,999.99,2019-11-13 14:00:00,659 Elm St, New York City,NY,10001 +293612,Apple Airpods Headphones,1,150.0,2019-11-13 14:00:00,659 Elm St, New York City,NY,10001 +293613,USB-C Charging Cable,1,11.95,2019-11-26 19:36:00,276 Dogwood St, San Francisco,CA,94016 +293614,AAA Batteries (4-pack),4,2.99,2019-11-16 11:47:00,492 Church St, Los Angeles,CA,90001 +293615,AA Batteries (4-pack),2,3.84,2019-11-18 21:11:00,674 Hickory St, Los Angeles,CA,90001 +293616,Flatscreen TV,1,300.0,2019-11-14 13:50:00,587 Pine St, New York City,NY,10001 +293617,Apple Airpods Headphones,1,150.0,2019-11-27 13:49:00,682 West St, Seattle,WA,98101 +293618,Google Phone,1,600.0,2019-11-19 01:12:00,847 Wilson St, San Francisco,CA,94016 +293618,USB-C Charging Cable,1,11.95,2019-11-19 01:12:00,847 Wilson St, San Francisco,CA,94016 +293619,USB-C Charging Cable,1,11.95,2019-11-27 20:05:00,430 Willow St, Dallas,TX,75001 +293620,LG Washing Machine,1,600.0,2019-11-05 19:09:00,432 Sunset St, Atlanta,GA,30301 +293621,Bose SoundSport Headphones,1,99.99,2019-11-25 06:40:00,87 West St, Seattle,WA,98101 +293622,ThinkPad Laptop,1,999.99,2019-11-07 20:35:00,611 2nd St, Seattle,WA,98101 +293622,AAA Batteries (4-pack),7,2.99,2019-11-07 20:35:00,611 2nd St, Seattle,WA,98101 +293623,Apple Airpods Headphones,1,150.0,2019-11-25 10:52:00,957 Sunset St, Seattle,WA,98101 +293624,27in 4K Gaming Monitor,1,389.99,2019-11-09 20:30:00,843 Lakeview St, Atlanta,GA,30301 +293625,27in FHD Monitor,1,149.99,2019-11-16 11:04:00,463 Cedar St, New York City,NY,10001 +293626,iPhone,1,700.0,2019-11-03 02:33:00,787 Willow St, San Francisco,CA,94016 +293627,Lightning Charging Cable,1,14.95,2019-11-02 13:58:00,161 Walnut St, San Francisco,CA,94016 +293628,Lightning Charging Cable,2,14.95,2019-11-20 07:23:00,804 11th St, Seattle,WA,98101 +293629,AAA Batteries (4-pack),1,2.99,2019-11-21 19:09:00,164 Meadow St, San Francisco,CA,94016 +293630,34in Ultrawide Monitor,1,379.99,2019-11-19 11:32:00,758 Hickory St, Seattle,WA,98101 +293631,iPhone,1,700.0,2019-11-26 21:10:00,243 13th St, San Francisco,CA,94016 +293632,AA Batteries (4-pack),1,3.84,2019-11-23 07:58:00,891 Chestnut St, Boston,MA,02215 +293633,AAA Batteries (4-pack),1,2.99,2019-11-29 19:19:00,419 9th St, Boston,MA,02215 +293634,USB-C Charging Cable,1,11.95,2019-11-27 19:04:00,762 Hickory St, San Francisco,CA,94016 +293635,Apple Airpods Headphones,1,150.0,2019-11-22 10:51:00,927 North St, Boston,MA,02215 +293636,Apple Airpods Headphones,1,150.0,2019-11-16 22:29:00,735 Lake St, Dallas,TX,75001 +293637,Flatscreen TV,1,300.0,2019-11-30 12:05:00,376 2nd St, Boston,MA,02215 +293638,AAA Batteries (4-pack),1,2.99,2019-11-26 13:30:00,785 Hickory St, Boston,MA,02215 +293639,AA Batteries (4-pack),1,3.84,2019-11-12 09:25:00,316 6th St, Seattle,WA,98101 +293640,AAA Batteries (4-pack),1,2.99,2019-11-30 18:28:00,134 12th St, Atlanta,GA,30301 +293641,27in FHD Monitor,1,149.99,2019-11-22 21:13:00,241 4th St, Boston,MA,02215 +293642,iPhone,1,700.0,2019-11-30 15:49:00,652 Jackson St, San Francisco,CA,94016 +293643,Lightning Charging Cable,1,14.95,2019-11-19 15:07:00,976 Hickory St, San Francisco,CA,94016 +293644,Lightning Charging Cable,1,14.95,2019-11-08 23:41:00,122 Dogwood St, Boston,MA,02215 +293645,AA Batteries (4-pack),4,3.84,2019-11-26 22:21:00,574 Pine St, Boston,MA,02215 +293646,iPhone,1,700.0,2019-11-14 18:52:00,24 Church St, Dallas,TX,75001 +293647,iPhone,1,700.0,2019-11-20 07:49:00,900 Willow St, Atlanta,GA,30301 +293647,Lightning Charging Cable,2,14.95,2019-11-20 07:49:00,900 Willow St, Atlanta,GA,30301 +293647,AAA Batteries (4-pack),1,2.99,2019-11-20 07:49:00,900 Willow St, Atlanta,GA,30301 +293648,Bose SoundSport Headphones,1,99.99,2019-11-27 20:45:00,342 Park St, Portland,OR,97035 +293649,34in Ultrawide Monitor,1,379.99,2019-11-07 21:40:00,713 Washington St, New York City,NY,10001 +293650,Lightning Charging Cable,1,14.95,2019-11-18 15:15:00,319 Madison St, Los Angeles,CA,90001 +293651,27in 4K Gaming Monitor,1,389.99,2019-11-23 15:02:00,650 Forest St, Los Angeles,CA,90001 +293652,Lightning Charging Cable,1,14.95,2019-11-15 20:50:00,342 Willow St, Portland,ME,04101 +293653,AA Batteries (4-pack),1,3.84,2019-11-17 21:38:00,555 Cedar St, Los Angeles,CA,90001 +293654,Apple Airpods Headphones,1,150.0,2019-11-16 19:44:00,890 6th St, Atlanta,GA,30301 +293655,Macbook Pro Laptop,1,1700.0,2019-11-13 17:36:00,332 Madison St, New York City,NY,10001 +293656,Lightning Charging Cable,1,14.95,2019-11-30 13:33:00,981 South St, Atlanta,GA,30301 +293657,Bose SoundSport Headphones,1,99.99,2019-11-29 20:27:00,634 Spruce St, Portland,OR,97035 +293658,Lightning Charging Cable,1,14.95,2019-12-01 02:44:00,934 Lincoln St, Dallas,TX,75001 +293659,USB-C Charging Cable,1,11.95,2019-11-07 15:12:00,325 Spruce St, San Francisco,CA,94016 +293660,27in FHD Monitor,1,149.99,2019-11-17 00:11:00,405 Highland St, Portland,OR,97035 +293661,AA Batteries (4-pack),1,3.84,2019-11-15 14:36:00,863 Hickory St, New York City,NY,10001 +293662,AA Batteries (4-pack),2,3.84,2019-11-16 11:36:00,575 6th St, Dallas,TX,75001 +293663,AA Batteries (4-pack),1,3.84,2019-11-20 05:42:00,3 Jackson St, Portland,OR,97035 +293664,Bose SoundSport Headphones,1,99.99,2019-11-15 12:48:00,79 Center St, Boston,MA,02215 +293664,20in Monitor,1,109.99,2019-11-15 12:48:00,79 Center St, Boston,MA,02215 +293665,Apple Airpods Headphones,1,150.0,2019-11-27 22:14:00,76 Pine St, Dallas,TX,75001 +293666,Vareebadd Phone,1,400.0,2019-11-08 21:16:00,924 Chestnut St, Seattle,WA,98101 +293667,USB-C Charging Cable,1,11.95,2019-11-23 16:30:00,331 Adams St, San Francisco,CA,94016 +293668,USB-C Charging Cable,1,11.95,2019-11-03 21:40:00,476 Madison St, Los Angeles,CA,90001 +293669,USB-C Charging Cable,1,11.95,2019-11-22 10:15:00,3 Madison St, Boston,MA,02215 +293670,Wired Headphones,1,11.99,2019-11-11 14:19:00,538 9th St, Los Angeles,CA,90001 +293671,USB-C Charging Cable,1,11.95,2019-11-26 13:07:00,196 Elm St, Boston,MA,02215 +293672,Lightning Charging Cable,1,14.95,2019-11-17 23:44:00,9 Ridge St, Los Angeles,CA,90001 +293673,AA Batteries (4-pack),2,3.84,2019-11-24 18:03:00,368 Highland St, San Francisco,CA,94016 +293674,USB-C Charging Cable,1,11.95,2019-11-15 18:42:00,419 Sunset St, Seattle,WA,98101 +293675,27in 4K Gaming Monitor,1,389.99,2019-11-18 15:53:00,479 11th St, Boston,MA,02215 +293676,34in Ultrawide Monitor,1,379.99,2019-11-17 07:45:00,543 10th St, San Francisco,CA,94016 +293677,AAA Batteries (4-pack),3,2.99,2019-11-11 11:47:00,164 Wilson St, Seattle,WA,98101 +293678,AA Batteries (4-pack),2,3.84,2019-11-08 15:57:00,940 2nd St, Atlanta,GA,30301 +293679,AA Batteries (4-pack),1,3.84,2019-11-25 11:27:00,187 1st St, Seattle,WA,98101 +293680,iPhone,1,700.0,2019-11-13 11:48:00,820 Adams St, San Francisco,CA,94016 +293681,AA Batteries (4-pack),1,3.84,2019-11-20 16:21:00,176 9th St, San Francisco,CA,94016 +293682,AAA Batteries (4-pack),1,2.99,2019-11-24 13:45:00,274 Chestnut St, New York City,NY,10001 +293683,Apple Airpods Headphones,1,150.0,2019-11-03 15:47:00,967 7th St, Los Angeles,CA,90001 +293684,iPhone,1,700.0,2019-11-16 22:14:00,668 Elm St, Los Angeles,CA,90001 +293684,Wired Headphones,1,11.99,2019-11-16 22:14:00,668 Elm St, Los Angeles,CA,90001 +293685,iPhone,1,700.0,2019-11-30 12:43:00,459 Washington St, Dallas,TX,75001 +293686,27in 4K Gaming Monitor,1,389.99,2019-11-24 18:44:00,504 7th St, Portland,OR,97035 +293687,Lightning Charging Cable,1,14.95,2019-11-18 21:44:00,124 Johnson St, San Francisco,CA,94016 +293688,27in 4K Gaming Monitor,1,389.99,2019-11-09 09:38:00,363 7th St, San Francisco,CA,94016 +293689,USB-C Charging Cable,1,11.95,2019-11-17 20:11:00,239 Chestnut St, New York City,NY,10001 +293690,AAA Batteries (4-pack),1,2.99,2019-11-25 03:58:00,622 Hickory St, San Francisco,CA,94016 +293691,Wired Headphones,1,11.99,2019-11-16 22:12:00,851 Dogwood St, Los Angeles,CA,90001 +293692,Wired Headphones,1,11.99,2019-11-27 14:42:00,346 Johnson St, Seattle,WA,98101 +293693,Lightning Charging Cable,1,14.95,2019-11-10 13:55:00,184 Adams St, Dallas,TX,75001 +293694,Vareebadd Phone,1,400.0,2019-11-27 23:30:00,118 Sunset St, Boston,MA,02215 +293694,USB-C Charging Cable,1,11.95,2019-11-27 23:30:00,118 Sunset St, Boston,MA,02215 +293695,Lightning Charging Cable,1,14.95,2019-11-19 20:41:00,308 Chestnut St, Boston,MA,02215 +293696,Apple Airpods Headphones,1,150.0,2019-11-01 18:03:00,488 Washington St, San Francisco,CA,94016 +293697,Google Phone,1,600.0,2019-11-29 19:07:00,98 Jefferson St, Boston,MA,02215 +293698,27in 4K Gaming Monitor,1,389.99,2019-11-08 16:06:00,49 Wilson St, Los Angeles,CA,90001 +293699,Lightning Charging Cable,1,14.95,2019-11-14 10:20:00,494 14th St, New York City,NY,10001 +293700,Google Phone,1,600.0,2019-11-11 21:08:00,425 6th St, Dallas,TX,75001 +293701,34in Ultrawide Monitor,1,379.99,2019-11-06 14:28:00,968 6th St, New York City,NY,10001 +293702,USB-C Charging Cable,1,11.95,2019-11-27 18:10:00,838 Lakeview St, Portland,OR,97035 +293703,Apple Airpods Headphones,1,150.0,2019-11-09 12:50:00,469 4th St, Los Angeles,CA,90001 +293704,Macbook Pro Laptop,1,1700.0,2019-11-16 06:51:00,626 7th St, San Francisco,CA,94016 +293705,Apple Airpods Headphones,1,150.0,2019-11-21 20:46:00,586 6th St, Los Angeles,CA,90001 +293706,Wired Headphones,1,11.99,2019-11-13 14:55:00,344 Lake St, San Francisco,CA,94016 +293707,Apple Airpods Headphones,1,150.0,2019-11-02 09:54:00,411 8th St, Portland,OR,97035 +293708,Lightning Charging Cable,1,14.95,2019-11-12 13:03:00,299 Elm St, New York City,NY,10001 +293709,AA Batteries (4-pack),1,3.84,2019-11-19 00:26:00,78 7th St, Seattle,WA,98101 +293710,USB-C Charging Cable,1,11.95,2019-11-24 14:06:00,516 Madison St, Dallas,TX,75001 +293711,iPhone,1,700.0,2019-11-24 11:44:00,224 Spruce St, New York City,NY,10001 +293712,27in FHD Monitor,1,149.99,2019-11-05 16:52:00,826 6th St, New York City,NY,10001 +293713,Apple Airpods Headphones,1,150.0,2019-12-01 02:30:00,684 14th St, New York City,NY,10001 +293714,LG Dryer,1,600.0,2019-11-18 06:54:00,70 Main St, San Francisco,CA,94016 +293715,LG Dryer,1,600.0,2019-11-18 17:26:00,510 13th St, San Francisco,CA,94016 +293716,27in 4K Gaming Monitor,1,389.99,2019-11-15 09:44:00,299 Adams St, New York City,NY,10001 +293717,Flatscreen TV,1,300.0,2019-11-19 12:33:00,709 4th St, Los Angeles,CA,90001 +293718,Wired Headphones,1,11.99,2019-11-17 20:49:00,383 Maple St, San Francisco,CA,94016 +293719,Wired Headphones,1,11.99,2019-11-03 06:07:00,897 Lakeview St, Los Angeles,CA,90001 +293720,USB-C Charging Cable,1,11.95,2019-11-18 20:49:00,423 Highland St, Boston,MA,02215 +293721,AA Batteries (4-pack),1,3.84,2019-11-23 23:12:00,468 Highland St, Atlanta,GA,30301 +293722,AA Batteries (4-pack),1,3.84,2019-11-30 17:43:00,223 Lincoln St, San Francisco,CA,94016 +293723,Lightning Charging Cable,1,14.95,2019-11-06 18:23:00,690 Ridge St, Seattle,WA,98101 +293724,Bose SoundSport Headphones,1,99.99,2019-11-20 21:59:00,138 Hill St, Boston,MA,02215 +293725,Apple Airpods Headphones,1,150.0,2019-11-11 09:55:00,116 Forest St, Austin,TX,73301 +293726,27in FHD Monitor,1,149.99,2019-11-24 12:05:00,175 8th St, Los Angeles,CA,90001 +293727,Apple Airpods Headphones,1,150.0,2019-11-22 22:52:00,820 Church St, Seattle,WA,98101 +293728,ThinkPad Laptop,1,999.99,2019-11-18 19:31:00,232 Pine St, Austin,TX,73301 +293729,Bose SoundSport Headphones,1,99.99,2019-11-24 14:11:00,853 4th St, New York City,NY,10001 +293730,Macbook Pro Laptop,1,1700.0,2019-11-10 09:44:00,719 South St, Seattle,WA,98101 +293731,AA Batteries (4-pack),1,3.84,2019-11-18 09:53:00,5 12th St, San Francisco,CA,94016 +293732,USB-C Charging Cable,1,11.95,2019-11-20 13:05:00,191 River St, Seattle,WA,98101 +293733,Wired Headphones,2,11.99,2019-11-08 12:47:00,610 Chestnut St, San Francisco,CA,94016 +293734,USB-C Charging Cable,1,11.95,2019-11-09 13:16:00,473 North St, San Francisco,CA,94016 +293735,iPhone,1,700.0,2019-11-19 11:08:00,816 Madison St, San Francisco,CA,94016 +293736,USB-C Charging Cable,1,11.95,2019-11-17 14:56:00,873 South St, Austin,TX,73301 +293737,Wired Headphones,1,11.99,2019-11-25 23:09:00,755 10th St, Portland,ME,04101 +293738,Bose SoundSport Headphones,1,99.99,2019-11-20 11:25:00,936 Maple St, Dallas,TX,75001 +293739,Apple Airpods Headphones,1,150.0,2019-11-26 13:06:00,922 Cedar St, San Francisco,CA,94016 +293740,iPhone,1,700.0,2019-11-14 22:09:00,348 6th St, Los Angeles,CA,90001 +293741,AA Batteries (4-pack),1,3.84,2019-11-03 21:12:00,777 Wilson St, Boston,MA,02215 +293742,Lightning Charging Cable,1,14.95,2019-11-12 15:28:00,715 Lake St, Boston,MA,02215 +293743,27in 4K Gaming Monitor,1,389.99,2019-11-25 01:28:00,749 Elm St, Boston,MA,02215 +293744,27in FHD Monitor,1,149.99,2019-11-28 21:03:00,690 Hill St, New York City,NY,10001 +293745,27in FHD Monitor,1,149.99,2019-11-24 12:46:00,416 Jackson St, Boston,MA,02215 +293746,Vareebadd Phone,1,400.0,2019-11-16 12:17:00,569 Johnson St, San Francisco,CA,94016 +293746,Apple Airpods Headphones,1,150.0,2019-11-16 12:17:00,569 Johnson St, San Francisco,CA,94016 +293747,Wired Headphones,1,11.99,2019-11-10 21:42:00,591 Walnut St, New York City,NY,10001 +293748,Apple Airpods Headphones,1,150.0,2019-11-05 18:56:00,917 13th St, Los Angeles,CA,90001 +293749,34in Ultrawide Monitor,1,379.99,2019-11-27 15:04:00,168 Hill St, New York City,NY,10001 +293750,Vareebadd Phone,1,400.0,2019-11-16 17:20:00,555 Walnut St, San Francisco,CA,94016 +293750,Wired Headphones,1,11.99,2019-11-16 17:20:00,555 Walnut St, San Francisco,CA,94016 +293751,Bose SoundSport Headphones,1,99.99,2019-11-20 19:14:00,783 Jackson St, Los Angeles,CA,90001 +293752,Google Phone,1,600.0,2019-11-11 10:19:00,103 Center St, Seattle,WA,98101 +293753,USB-C Charging Cable,2,11.95,2019-11-18 13:20:00,317 Lake St, San Francisco,CA,94016 +293754,Wired Headphones,1,11.99,2019-11-17 22:16:00,621 Meadow St, New York City,NY,10001 +293755,Lightning Charging Cable,1,14.95,2019-11-15 08:45:00,700 Hickory St, New York City,NY,10001 +293756,AAA Batteries (4-pack),1,2.99,2019-11-16 12:42:00,975 9th St, Boston,MA,02215 +293757,iPhone,1,700.0,2019-11-24 18:01:00,931 River St, New York City,NY,10001 +293758,27in 4K Gaming Monitor,1,389.99,2019-11-03 17:06:00,536 Walnut St, Los Angeles,CA,90001 +293759,USB-C Charging Cable,1,11.95,2019-11-08 13:15:00,445 Sunset St, San Francisco,CA,94016 +293760,27in 4K Gaming Monitor,1,389.99,2019-11-19 10:01:00,334 Center St, Los Angeles,CA,90001 +293761,AAA Batteries (4-pack),1,2.99,2019-11-13 05:59:00,371 Chestnut St, Portland,OR,97035 +293762,AA Batteries (4-pack),1,3.84,2019-11-10 07:42:00,696 Wilson St, San Francisco,CA,94016 +293763,27in 4K Gaming Monitor,1,389.99,2019-11-29 21:44:00,145 1st St, Seattle,WA,98101 +293764,Google Phone,1,600.0,2019-11-07 10:54:00,10 West St, Boston,MA,02215 +293764,Wired Headphones,1,11.99,2019-11-07 10:54:00,10 West St, Boston,MA,02215 +293765,ThinkPad Laptop,1,999.99,2019-11-20 23:10:00,610 10th St, Portland,OR,97035 +293766,Apple Airpods Headphones,1,150.0,2019-11-06 10:48:00,343 Meadow St, San Francisco,CA,94016 +293767,Bose SoundSport Headphones,1,99.99,2019-11-05 21:57:00,941 5th St, Austin,TX,73301 +293768,Apple Airpods Headphones,1,150.0,2019-11-04 17:46:00,427 Center St, San Francisco,CA,94016 +293769,USB-C Charging Cable,1,11.95,2019-11-27 15:29:00,328 Jackson St, Los Angeles,CA,90001 +293770,Wired Headphones,1,11.99,2019-11-11 05:52:00,766 4th St, Seattle,WA,98101 +293771,Lightning Charging Cable,2,14.95,2019-11-21 17:40:00,295 Elm St, Atlanta,GA,30301 +293772,LG Washing Machine,1,600.0,2019-11-04 09:09:00,175 Madison St, San Francisco,CA,94016 +293773,LG Dryer,1,600.0,2019-11-29 14:39:00,428 8th St, Los Angeles,CA,90001 +293774,ThinkPad Laptop,1,999.99,2019-11-01 20:07:00,280 Chestnut St, New York City,NY,10001 +293775,20in Monitor,1,109.99,2019-11-17 20:26:00,913 Lakeview St, Atlanta,GA,30301 +293776,Wired Headphones,1,11.99,2019-11-18 21:26:00,572 Walnut St, New York City,NY,10001 +293777,AAA Batteries (4-pack),1,2.99,2019-11-09 03:48:00,131 Highland St, Seattle,WA,98101 +293778,Lightning Charging Cable,2,14.95,2019-11-14 23:49:00,905 11th St, Boston,MA,02215 +293779,Lightning Charging Cable,2,14.95,2019-11-04 11:58:00,605 7th St, Boston,MA,02215 +293780,USB-C Charging Cable,1,11.95,2019-11-23 08:01:00,957 4th St, Dallas,TX,75001 +293781,20in Monitor,1,109.99,2019-11-26 12:10:00,250 7th St, San Francisco,CA,94016 +293782,USB-C Charging Cable,1,11.95,2019-11-23 18:47:00,592 Elm St, Los Angeles,CA,90001 +293783,Lightning Charging Cable,1,14.95,2019-11-18 16:04:00,311 Highland St, San Francisco,CA,94016 +293784,Lightning Charging Cable,1,14.95,2019-11-23 11:50:00,791 Cherry St, Los Angeles,CA,90001 +293785,Bose SoundSport Headphones,1,99.99,2019-11-08 18:30:00,982 Highland St, Portland,ME,04101 +293786,Bose SoundSport Headphones,1,99.99,2019-11-16 23:10:00,361 14th St, New York City,NY,10001 +293787,iPhone,1,700.0,2019-11-17 11:31:00,370 Johnson St, Austin,TX,73301 +293788,Lightning Charging Cable,1,14.95,2019-11-04 14:32:00,473 Lincoln St, Portland,OR,97035 +293789,AA Batteries (4-pack),1,3.84,2019-11-03 14:51:00,424 Hickory St, Los Angeles,CA,90001 +293790,Vareebadd Phone,1,400.0,2019-11-18 12:19:00,750 Willow St, Seattle,WA,98101 +293791,Google Phone,1,600.0,2019-11-30 12:03:00,96 Maple St, Los Angeles,CA,90001 +293792,Wired Headphones,1,11.99,2019-11-22 23:06:00,595 Adams St, Atlanta,GA,30301 +293793,27in 4K Gaming Monitor,1,389.99,2019-11-05 22:28:00,896 Adams St, Atlanta,GA,30301 +293794,Apple Airpods Headphones,1,150.0,2019-11-15 11:31:00,283 Wilson St, Dallas,TX,75001 +293795,Bose SoundSport Headphones,1,99.99,2019-11-18 17:01:00,490 Wilson St, San Francisco,CA,94016 +293796,iPhone,1,700.0,2019-11-23 22:04:00,955 North St, San Francisco,CA,94016 +293797,AAA Batteries (4-pack),1,2.99,2019-11-04 13:33:00,722 Wilson St, San Francisco,CA,94016 +293798,AAA Batteries (4-pack),1,2.99,2019-11-28 21:14:00,397 Lakeview St, New York City,NY,10001 +293799,Lightning Charging Cable,1,14.95,2019-11-27 10:48:00,266 Chestnut St, San Francisco,CA,94016 +293800,Wired Headphones,1,11.99,2019-11-08 06:30:00,944 Elm St, Portland,OR,97035 +293801,AA Batteries (4-pack),2,3.84,2019-11-22 17:18:00,447 12th St, Los Angeles,CA,90001 +293802,20in Monitor,1,109.99,2019-11-21 11:32:00,742 7th St, New York City,NY,10001 +293803,AAA Batteries (4-pack),3,2.99,2019-11-18 13:43:00,532 Lincoln St, Atlanta,GA,30301 +293804,27in 4K Gaming Monitor,1,389.99,2019-11-19 17:54:00,656 Hickory St, San Francisco,CA,94016 +293805,AA Batteries (4-pack),1,3.84,2019-11-17 13:34:00,801 13th St, Boston,MA,02215 +293806,USB-C Charging Cable,2,11.95,2019-11-10 13:10:00,222 13th St, Seattle,WA,98101 +293807,Lightning Charging Cable,1,14.95,2019-11-20 18:47:00,895 Church St, Los Angeles,CA,90001 +293808,Bose SoundSport Headphones,1,99.99,2019-11-22 09:40:00,564 Hickory St, San Francisco,CA,94016 +293809,Apple Airpods Headphones,1,150.0,2019-11-18 00:09:00,509 Park St, Boston,MA,02215 +293810,20in Monitor,1,109.99,2019-11-15 11:09:00,4 South St, Los Angeles,CA,90001 +293811,Wired Headphones,1,11.99,2019-11-20 11:30:00,823 Wilson St, New York City,NY,10001 +293812,Wired Headphones,1,11.99,2019-11-14 22:02:00,26 Walnut St, Los Angeles,CA,90001 +293813,Wired Headphones,1,11.99,2019-11-17 11:13:00,110 2nd St, San Francisco,CA,94016 +293814,Lightning Charging Cable,2,14.95,2019-11-08 19:44:00,821 North St, Dallas,TX,75001 +293815,Wired Headphones,1,11.99,2019-11-14 10:32:00,963 4th St, Boston,MA,02215 +293816,34in Ultrawide Monitor,1,379.99,2019-11-09 11:38:00,53 9th St, Seattle,WA,98101 +293817,Apple Airpods Headphones,1,150.0,2019-11-18 21:47:00,91 Center St, San Francisco,CA,94016 +293818,Wired Headphones,1,11.99,2019-11-12 22:14:00,317 14th St, Austin,TX,73301 +293819,27in 4K Gaming Monitor,1,389.99,2019-11-26 19:40:00,686 10th St, Austin,TX,73301 +293820,USB-C Charging Cable,1,11.95,2019-11-27 01:46:00,951 6th St, Los Angeles,CA,90001 +293821,AAA Batteries (4-pack),4,2.99,2019-11-05 21:17:00,840 Highland St, Dallas,TX,75001 +293822,AAA Batteries (4-pack),1,2.99,2019-11-18 16:51:00,298 Forest St, San Francisco,CA,94016 +293823,USB-C Charging Cable,1,11.95,2019-11-08 19:12:00,962 Cherry St, Los Angeles,CA,90001 +293824,Google Phone,1,600.0,2019-11-09 10:03:00,572 Church St, Portland,OR,97035 +293824,Wired Headphones,3,11.99,2019-11-09 10:03:00,572 Church St, Portland,OR,97035 +293825,USB-C Charging Cable,1,11.95,2019-11-12 10:31:00,623 Walnut St, Seattle,WA,98101 +293826,AAA Batteries (4-pack),1,2.99,2019-11-05 08:29:00,133 Madison St, San Francisco,CA,94016 +293827,AA Batteries (4-pack),1,3.84,2019-11-08 17:26:00,65 Spruce St, Dallas,TX,75001 +293828,USB-C Charging Cable,1,11.95,2019-11-08 19:48:00,161 Cherry St, Boston,MA,02215 +293829,Lightning Charging Cable,1,14.95,2019-11-30 06:31:00,770 River St, Los Angeles,CA,90001 +293830,Wired Headphones,1,11.99,2019-11-19 07:40:00,871 Cedar St, New York City,NY,10001 +293831,Lightning Charging Cable,1,14.95,2019-11-12 19:56:00,426 Spruce St, Dallas,TX,75001 +293832,Apple Airpods Headphones,1,150.0,2019-11-26 16:14:00,384 14th St, San Francisco,CA,94016 +293833,USB-C Charging Cable,2,11.95,2019-11-17 23:34:00,399 Madison St, Seattle,WA,98101 +293834,Lightning Charging Cable,1,14.95,2019-11-17 13:02:00,762 13th St, San Francisco,CA,94016 +293835,Wired Headphones,1,11.99,2019-11-07 19:16:00,964 5th St, San Francisco,CA,94016 +293836,Wired Headphones,2,11.99,2019-11-24 23:50:00,415 Washington St, San Francisco,CA,94016 +293837,Bose SoundSport Headphones,1,99.99,2019-11-23 19:49:00,585 Washington St, Boston,MA,02215 +293838,iPhone,1,700.0,2019-11-28 10:14:00,35 North St, San Francisco,CA,94016 +293838,Lightning Charging Cable,1,14.95,2019-11-28 10:14:00,35 North St, San Francisco,CA,94016 +293839,Apple Airpods Headphones,1,150.0,2019-11-30 20:11:00,270 Elm St, San Francisco,CA,94016 +293840,Apple Airpods Headphones,1,150.0,2019-11-28 11:11:00,210 10th St, New York City,NY,10001 +293841,34in Ultrawide Monitor,1,379.99,2019-11-02 22:46:00,663 Church St, Dallas,TX,75001 +293842,Wired Headphones,1,11.99,2019-11-20 20:25:00,576 1st St, San Francisco,CA,94016 +293843,iPhone,1,700.0,2019-11-04 00:00:00,343 Hill St, San Francisco,CA,94016 +293843,AA Batteries (4-pack),1,3.84,2019-11-04 00:00:00,343 Hill St, San Francisco,CA,94016 +293844,Google Phone,1,600.0,2019-11-07 13:21:00,730 5th St, Los Angeles,CA,90001 +293845,Apple Airpods Headphones,1,150.0,2019-11-11 13:41:00,381 14th St, Portland,OR,97035 +293846,AAA Batteries (4-pack),1,2.99,2019-11-17 21:09:00,207 1st St, Seattle,WA,98101 +293847,Macbook Pro Laptop,1,1700.0,2019-11-20 10:08:00,68 North St, Portland,OR,97035 +293848,Lightning Charging Cable,1,14.95,2019-11-18 15:46:00,905 4th St, Los Angeles,CA,90001 +293849,USB-C Charging Cable,2,11.95,2019-11-11 14:59:00,726 Cedar St, San Francisco,CA,94016 +293850,Wired Headphones,1,11.99,2019-11-28 17:40:00,60 Lakeview St, San Francisco,CA,94016 +293851,Flatscreen TV,1,300.0,2019-11-14 04:01:00,306 Hill St, San Francisco,CA,94016 +293852,Lightning Charging Cable,1,14.95,2019-11-01 16:42:00,30 14th St, Los Angeles,CA,90001 +293853,USB-C Charging Cable,1,11.95,2019-11-23 22:11:00,125 10th St, Boston,MA,02215 +293854,Macbook Pro Laptop,1,1700.0,2019-11-09 15:56:00,958 Hill St, San Francisco,CA,94016 +293855,Wired Headphones,1,11.99,2019-11-24 15:04:00,898 Wilson St, New York City,NY,10001 +293856,AA Batteries (4-pack),1,3.84,2019-11-27 12:48:00,658 Forest St, San Francisco,CA,94016 +293857,27in FHD Monitor,1,149.99,2019-11-01 23:32:00,213 Walnut St, Portland,OR,97035 +293858,Apple Airpods Headphones,1,150.0,2019-11-12 06:11:00,958 Cherry St, San Francisco,CA,94016 +293859,Lightning Charging Cable,2,14.95,2019-11-20 20:20:00,657 North St, Seattle,WA,98101 +293860,Apple Airpods Headphones,1,150.0,2019-11-11 10:12:00,66 7th St, San Francisco,CA,94016 +293861,Macbook Pro Laptop,1,1700.0,2019-11-18 13:37:00,90 Lake St, New York City,NY,10001 +293862,AA Batteries (4-pack),1,3.84,2019-11-05 12:10:00,575 12th St, Seattle,WA,98101 +293863,AA Batteries (4-pack),1,3.84,2019-11-09 21:54:00,454 2nd St, San Francisco,CA,94016 +293864,AAA Batteries (4-pack),2,2.99,2019-11-20 04:07:00,807 Pine St, Boston,MA,02215 +293865,Bose SoundSport Headphones,1,99.99,2019-11-21 19:52:00,492 Dogwood St, Los Angeles,CA,90001 +293866,Apple Airpods Headphones,1,150.0,2019-11-22 15:05:00,115 1st St, San Francisco,CA,94016 +293867,Lightning Charging Cable,1,14.95,2019-11-30 17:07:00,767 10th St, Austin,TX,73301 +293868,AA Batteries (4-pack),1,3.84,2019-11-01 10:53:00,688 Spruce St, Boston,MA,02215 +293869,Apple Airpods Headphones,1,150.0,2019-11-28 12:23:00,253 Highland St, New York City,NY,10001 +293870,AAA Batteries (4-pack),2,2.99,2019-11-07 13:21:00,84 Center St, Los Angeles,CA,90001 +293871,AA Batteries (4-pack),1,3.84,2019-11-14 10:06:00,623 Lincoln St, Dallas,TX,75001 +293872,Wired Headphones,1,11.99,2019-11-18 12:13:00,706 Hill St, San Francisco,CA,94016 +293873,Bose SoundSport Headphones,1,99.99,2019-11-13 21:18:00,291 South St, Los Angeles,CA,90001 +293874,Google Phone,1,600.0,2019-11-25 08:04:00,383 14th St, San Francisco,CA,94016 +293874,USB-C Charging Cable,1,11.95,2019-11-25 08:04:00,383 14th St, San Francisco,CA,94016 +293875,Google Phone,1,600.0,2019-11-16 13:38:00,911 Jackson St, Portland,OR,97035 +293875,USB-C Charging Cable,1,11.95,2019-11-16 13:38:00,911 Jackson St, Portland,OR,97035 +293876,AAA Batteries (4-pack),1,2.99,2019-11-15 13:31:00,546 8th St, Boston,MA,02215 +293877,20in Monitor,1,109.99,2019-11-29 23:20:00,392 6th St, San Francisco,CA,94016 +293878,AA Batteries (4-pack),1,3.84,2019-11-28 23:31:00,617 Wilson St, Portland,OR,97035 +293879,Bose SoundSport Headphones,1,99.99,2019-11-07 07:20:00,651 2nd St, New York City,NY,10001 +293880,Bose SoundSport Headphones,1,99.99,2019-11-16 22:43:00,642 South St, Boston,MA,02215 +293881,Lightning Charging Cable,2,14.95,2019-11-21 06:30:00,493 Meadow St, Seattle,WA,98101 +293882,iPhone,1,700.0,2019-11-15 10:59:00,514 Church St, Dallas,TX,75001 +293883,Lightning Charging Cable,1,14.95,2019-11-08 21:10:00,16 13th St, Boston,MA,02215 +293884,Lightning Charging Cable,1,14.95,2019-11-18 16:08:00,194 Chestnut St, San Francisco,CA,94016 +293885,Apple Airpods Headphones,1,150.0,2019-11-01 20:28:00,881 Spruce St, San Francisco,CA,94016 +293886,Bose SoundSport Headphones,1,99.99,2019-11-21 14:29:00,600 2nd St, New York City,NY,10001 +293887,Macbook Pro Laptop,1,1700.0,2019-11-20 15:42:00,153 Forest St, Los Angeles,CA,90001 +293888,Flatscreen TV,1,300.0,2019-11-04 19:23:00,250 Hill St, Portland,OR,97035 +293889,20in Monitor,1,109.99,2019-11-10 16:11:00,878 Highland St, Portland,OR,97035 +293890,iPhone,1,700.0,2019-11-28 15:51:00,248 River St, New York City,NY,10001 +293890,Lightning Charging Cable,1,14.95,2019-11-28 15:51:00,248 River St, New York City,NY,10001 +293891,Apple Airpods Headphones,1,150.0,2019-11-13 10:40:00,330 10th St, San Francisco,CA,94016 +293892,USB-C Charging Cable,2,11.95,2019-11-08 20:50:00,13 6th St, San Francisco,CA,94016 +293893,27in 4K Gaming Monitor,1,389.99,2019-11-25 19:58:00,35 12th St, San Francisco,CA,94016 +293894,34in Ultrawide Monitor,1,379.99,2019-11-23 16:26:00,659 Highland St, San Francisco,CA,94016 +293895,27in 4K Gaming Monitor,1,389.99,2019-11-23 09:43:00,50 River St, Dallas,TX,75001 +293896,AAA Batteries (4-pack),2,2.99,2019-11-15 23:44:00,225 West St, Atlanta,GA,30301 +293897,USB-C Charging Cable,1,11.95,2019-11-11 01:08:00,89 Madison St, New York City,NY,10001 +293898,Apple Airpods Headphones,1,150.0,2019-11-02 20:34:00,852 Adams St, Los Angeles,CA,90001 +293899,27in 4K Gaming Monitor,1,389.99,2019-11-07 13:34:00,553 Hill St, Los Angeles,CA,90001 +293900,Lightning Charging Cable,1,14.95,2019-11-12 20:26:00,589 Park St, Boston,MA,02215 +293901,Macbook Pro Laptop,1,1700.0,2019-11-15 12:00:00,439 13th St, San Francisco,CA,94016 +293902,34in Ultrawide Monitor,1,379.99,2019-11-12 13:54:00,410 6th St, Los Angeles,CA,90001 +293903,Lightning Charging Cable,1,14.95,2019-11-11 06:49:00,618 Walnut St, San Francisco,CA,94016 +293904,USB-C Charging Cable,1,11.95,2019-11-29 19:34:00,337 Pine St, Dallas,TX,75001 +293905,Google Phone,1,600.0,2019-11-04 11:38:00,492 Dogwood St, Portland,OR,97035 +293906,AA Batteries (4-pack),1,3.84,2019-11-29 17:38:00,135 Meadow St, Portland,OR,97035 +293907,Bose SoundSport Headphones,1,99.99,2019-11-29 09:36:00,243 Pine St, Atlanta,GA,30301 +293908,AAA Batteries (4-pack),1,2.99,2019-11-14 16:13:00,191 Elm St, Los Angeles,CA,90001 +293909,USB-C Charging Cable,1,11.95,2019-11-20 19:36:00,402 2nd St, Boston,MA,02215 +293909,27in FHD Monitor,1,149.99,2019-11-20 19:36:00,402 2nd St, Boston,MA,02215 +293910,AA Batteries (4-pack),1,3.84,2019-11-19 18:45:00,397 River St, Los Angeles,CA,90001 +293911,Lightning Charging Cable,1,14.95,2019-11-16 21:22:00,121 Ridge St, Los Angeles,CA,90001 +293912,AAA Batteries (4-pack),1,2.99,2019-11-11 18:07:00,438 Forest St, Boston,MA,02215 +293913,Apple Airpods Headphones,1,150.0,2019-11-28 15:13:00,148 Maple St, San Francisco,CA,94016 +293914,iPhone,1,700.0,2019-11-20 19:10:00,291 Cedar St, San Francisco,CA,94016 +293915,Apple Airpods Headphones,1,150.0,2019-11-27 10:11:00,341 9th St, Portland,OR,97035 +293916,AA Batteries (4-pack),2,3.84,2019-11-16 12:29:00,702 Hickory St, Los Angeles,CA,90001 +293916,ThinkPad Laptop,1,999.99,2019-11-16 12:29:00,702 Hickory St, Los Angeles,CA,90001 +293917,AA Batteries (4-pack),1,3.84,2019-11-24 00:27:00,698 8th St, Boston,MA,02215 +293917,Wired Headphones,1,11.99,2019-11-24 00:27:00,698 8th St, Boston,MA,02215 +293918,Vareebadd Phone,1,400.0,2019-11-21 06:56:00,376 Johnson St, New York City,NY,10001 +293919,AA Batteries (4-pack),1,3.84,2019-11-26 13:01:00,530 12th St, Los Angeles,CA,90001 +293920,Bose SoundSport Headphones,1,99.99,2019-11-01 13:25:00,461 Ridge St, San Francisco,CA,94016 +293921,ThinkPad Laptop,1,999.99,2019-11-28 14:48:00,185 Main St, Boston,MA,02215 +293922,27in FHD Monitor,1,149.99,2019-11-08 13:56:00,317 2nd St, San Francisco,CA,94016 +293923,Apple Airpods Headphones,1,150.0,2019-11-20 15:11:00,545 12th St, Los Angeles,CA,90001 +293924,Wired Headphones,1,11.99,2019-11-13 10:11:00,357 Hickory St, New York City,NY,10001 +293925,Lightning Charging Cable,1,14.95,2019-11-08 17:20:00,933 Wilson St, Boston,MA,02215 +293926,AA Batteries (4-pack),1,3.84,2019-11-02 22:00:00,790 River St, San Francisco,CA,94016 +293927,Bose SoundSport Headphones,1,99.99,2019-11-16 17:53:00,314 Highland St, San Francisco,CA,94016 +293928,27in FHD Monitor,1,149.99,2019-11-24 19:25:00,535 Maple St, New York City,NY,10001 +293929,Apple Airpods Headphones,1,150.0,2019-11-19 10:09:00,662 8th St, San Francisco,CA,94016 +293930,20in Monitor,1,109.99,2019-11-13 21:07:00,420 Wilson St, San Francisco,CA,94016 +293931,iPhone,1,700.0,2019-11-30 15:32:00,429 Lake St, San Francisco,CA,94016 +293932,USB-C Charging Cable,2,11.95,2019-11-12 23:29:00,799 Main St, San Francisco,CA,94016 +293933,Lightning Charging Cable,1,14.95,2019-11-12 11:47:00,253 Adams St, Dallas,TX,75001 +293934,Macbook Pro Laptop,1,1700.0,2019-11-29 15:12:00,131 Dogwood St, Boston,MA,02215 +293934,Google Phone,1,600.0,2019-11-29 15:12:00,131 Dogwood St, Boston,MA,02215 +293935,Flatscreen TV,1,300.0,2019-11-21 10:31:00,683 Adams St, Los Angeles,CA,90001 +293936,Apple Airpods Headphones,1,150.0,2019-11-03 12:28:00,22 6th St, Seattle,WA,98101 +293937,Lightning Charging Cable,1,14.95,2019-11-22 10:47:00,633 West St, Boston,MA,02215 +293938,Lightning Charging Cable,1,14.95,2019-11-16 23:39:00,802 10th St, New York City,NY,10001 +293939,Apple Airpods Headphones,1,150.0,2019-11-05 22:42:00,822 14th St, Seattle,WA,98101 +293940,AA Batteries (4-pack),1,3.84,2019-11-28 12:00:00,543 Main St, San Francisco,CA,94016 +293941,Lightning Charging Cable,1,14.95,2019-11-17 11:31:00,704 7th St, Atlanta,GA,30301 +293942,Lightning Charging Cable,1,14.95,2019-11-29 21:31:00,659 River St, Atlanta,GA,30301 +293943,34in Ultrawide Monitor,1,379.99,2019-11-10 18:11:00,798 7th St, Dallas,TX,75001 +293944,Lightning Charging Cable,1,14.95,2019-11-18 15:23:00,776 Pine St, San Francisco,CA,94016 +293945,USB-C Charging Cable,1,11.95,2019-11-05 19:11:00,922 Park St, Seattle,WA,98101 +293946,AAA Batteries (4-pack),2,2.99,2019-11-18 08:23:00,152 Cedar St, San Francisco,CA,94016 +293947,Vareebadd Phone,1,400.0,2019-11-30 13:37:00,935 Madison St, New York City,NY,10001 +293947,USB-C Charging Cable,1,11.95,2019-11-30 13:37:00,935 Madison St, New York City,NY,10001 +293948,Wired Headphones,1,11.99,2019-11-17 00:35:00,468 14th St, Dallas,TX,75001 +293949,Lightning Charging Cable,1,14.95,2019-11-30 11:58:00,500 Adams St, New York City,NY,10001 +293950,27in FHD Monitor,1,149.99,2019-11-17 22:08:00,992 Maple St, San Francisco,CA,94016 +293951,AA Batteries (4-pack),1,3.84,2019-11-08 12:39:00,476 Johnson St, Boston,MA,02215 +293952,34in Ultrawide Monitor,1,379.99,2019-11-09 20:13:00,504 North St, San Francisco,CA,94016 +293952,Bose SoundSport Headphones,1,99.99,2019-11-09 20:13:00,504 North St, San Francisco,CA,94016 +293953,AA Batteries (4-pack),2,3.84,2019-11-28 12:36:00,868 Cherry St, Los Angeles,CA,90001 +293954,USB-C Charging Cable,1,11.95,2019-11-09 22:23:00,42 Park St, Boston,MA,02215 +293955,AAA Batteries (4-pack),2,2.99,2019-11-24 15:04:00,980 14th St, Atlanta,GA,30301 +293956,27in 4K Gaming Monitor,1,389.99,2019-11-08 22:18:00,479 7th St, Los Angeles,CA,90001 +293957,AA Batteries (4-pack),2,3.84,2019-11-04 17:09:00,865 Chestnut St, Los Angeles,CA,90001 +293958,Lightning Charging Cable,1,14.95,2019-11-14 21:45:00,26 Walnut St, San Francisco,CA,94016 +293958,Apple Airpods Headphones,1,150.0,2019-11-14 21:45:00,26 Walnut St, San Francisco,CA,94016 +293959,AAA Batteries (4-pack),1,2.99,2019-11-24 21:52:00,312 Madison St, Boston,MA,02215 +293960,Bose SoundSport Headphones,1,99.99,2019-11-23 16:45:00,185 Hill St, New York City,NY,10001 +293961,Macbook Pro Laptop,1,1700.0,2019-11-02 11:52:00,973 Willow St, San Francisco,CA,94016 +293962,Lightning Charging Cable,1,14.95,2019-11-23 18:37:00,200 Cedar St, Los Angeles,CA,90001 +293963,Bose SoundSport Headphones,1,99.99,2019-11-06 11:57:00,544 Walnut St, San Francisco,CA,94016 +293964,AAA Batteries (4-pack),3,2.99,2019-11-06 23:13:00,718 Sunset St, New York City,NY,10001 +293965,AA Batteries (4-pack),1,3.84,2019-11-24 09:19:00,135 Lake St, Los Angeles,CA,90001 +293966,AA Batteries (4-pack),2,3.84,2019-11-09 16:45:00,543 Madison St, Boston,MA,02215 +293967,Bose SoundSport Headphones,1,99.99,2019-11-29 19:37:00,107 13th St, San Francisco,CA,94016 +293968,USB-C Charging Cable,2,11.95,2019-11-30 12:15:00,927 10th St, San Francisco,CA,94016 +293969,27in FHD Monitor,1,149.99,2019-11-20 10:15:00,504 Hill St, Seattle,WA,98101 +293970,Apple Airpods Headphones,1,150.0,2019-11-18 19:25:00,126 Washington St, San Francisco,CA,94016 +293971,AAA Batteries (4-pack),1,2.99,2019-11-23 13:14:00,729 Church St, Dallas,TX,75001 +293972,Lightning Charging Cable,1,14.95,2019-11-26 09:50:00,681 North St, Boston,MA,02215 +293973,Lightning Charging Cable,1,14.95,2019-11-18 10:36:00,485 Johnson St, Los Angeles,CA,90001 +293974,Apple Airpods Headphones,1,150.0,2019-11-12 22:27:00,385 11th St, San Francisco,CA,94016 +293975,Bose SoundSport Headphones,1,99.99,2019-11-14 14:39:00,225 6th St, Seattle,WA,98101 +293976,AAA Batteries (4-pack),2,2.99,2019-11-16 16:04:00,383 Park St, Los Angeles,CA,90001 +293976,Google Phone,1,600.0,2019-11-16 16:04:00,383 Park St, Los Angeles,CA,90001 +293977,AAA Batteries (4-pack),1,2.99,2019-11-07 23:03:00,457 West St, Boston,MA,02215 +293978,34in Ultrawide Monitor,1,379.99,2019-11-27 22:53:00,117 Cherry St, New York City,NY,10001 +293979,Lightning Charging Cable,1,14.95,2019-11-26 11:31:00,600 South St, Boston,MA,02215 +293980,iPhone,1,700.0,2019-11-20 04:55:00,271 Hickory St, San Francisco,CA,94016 +293981,Wired Headphones,1,11.99,2019-11-03 11:08:00,813 Cherry St, San Francisco,CA,94016 +293982,Apple Airpods Headphones,1,150.0,2019-11-18 23:07:00,221 Lakeview St, San Francisco,CA,94016 +293983,USB-C Charging Cable,2,11.95,2019-11-04 04:26:00,880 5th St, Los Angeles,CA,90001 +293984,USB-C Charging Cable,1,11.95,2019-11-28 16:04:00,17 Pine St, San Francisco,CA,94016 +293985,AAA Batteries (4-pack),1,2.99,2019-11-06 07:47:00,629 11th St, Portland,OR,97035 +293986,20in Monitor,1,109.99,2019-11-17 08:31:00,84 Lincoln St, Los Angeles,CA,90001 +293987,Apple Airpods Headphones,1,150.0,2019-11-29 12:44:00,613 13th St, San Francisco,CA,94016 +293988,Macbook Pro Laptop,1,1700.0,2019-11-01 13:59:00,567 Main St, Portland,OR,97035 +293989,AAA Batteries (4-pack),1,2.99,2019-11-07 19:19:00,186 Lake St, Seattle,WA,98101 +293990,USB-C Charging Cable,1,11.95,2019-11-22 00:51:00,613 10th St, New York City,NY,10001 +293991,27in 4K Gaming Monitor,1,389.99,2019-11-29 15:40:00,622 Pine St, Boston,MA,02215 +293992,USB-C Charging Cable,1,11.95,2019-11-26 22:00:00,159 Hill St, Boston,MA,02215 +293993,AAA Batteries (4-pack),1,2.99,2019-12-01 00:41:00,999 10th St, San Francisco,CA,94016 +293994,AA Batteries (4-pack),1,3.84,2019-11-14 20:57:00,440 Johnson St, Dallas,TX,75001 +293995,Bose SoundSport Headphones,1,99.99,2019-11-24 21:34:00,465 Adams St, San Francisco,CA,94016 +293996,Vareebadd Phone,1,400.0,2019-11-21 00:55:00,53 North St, San Francisco,CA,94016 +293997,Macbook Pro Laptop,1,1700.0,2019-11-19 13:13:00,848 7th St, Atlanta,GA,30301 +293998,AA Batteries (4-pack),1,3.84,2019-11-18 22:04:00,442 West St, Austin,TX,73301 +293999,Bose SoundSport Headphones,1,99.99,2019-11-20 21:07:00,861 South St, Los Angeles,CA,90001 +294000,27in FHD Monitor,1,149.99,2019-11-26 18:41:00,695 Lakeview St, Austin,TX,73301 +294001,USB-C Charging Cable,1,11.95,2019-11-04 11:07:00,717 Elm St, Boston,MA,02215 +294002,iPhone,1,700.0,2019-11-07 20:55:00,391 Willow St, Austin,TX,73301 +294003,USB-C Charging Cable,1,11.95,2019-11-08 19:25:00,263 South St, San Francisco,CA,94016 +294004,Bose SoundSport Headphones,1,99.99,2019-11-07 16:03:00,615 Ridge St, New York City,NY,10001 +294005,34in Ultrawide Monitor,1,379.99,2019-11-21 21:18:00,433 2nd St, Seattle,WA,98101 +294006,Apple Airpods Headphones,1,150.0,2019-11-02 12:02:00,56 10th St, San Francisco,CA,94016 +294007,Lightning Charging Cable,1,14.95,2019-11-22 18:52:00,685 Sunset St, Los Angeles,CA,90001 +294008,AA Batteries (4-pack),1,3.84,2019-11-30 14:36:00,637 Wilson St, Portland,OR,97035 +294009,Apple Airpods Headphones,1,150.0,2019-11-26 17:20:00,612 Sunset St, Dallas,TX,75001 +294010,AAA Batteries (4-pack),1,2.99,2019-11-29 11:52:00,800 Jackson St, San Francisco,CA,94016 +294011,Lightning Charging Cable,1,14.95,2019-11-25 20:14:00,911 Cherry St, Los Angeles,CA,90001 +294012,AAA Batteries (4-pack),1,2.99,2019-11-07 19:33:00,619 River St, Portland,OR,97035 +294013,Lightning Charging Cable,1,14.95,2019-11-17 21:43:00,720 2nd St, Boston,MA,02215 +294014,AA Batteries (4-pack),1,3.84,2019-11-11 21:18:00,785 Lakeview St, San Francisco,CA,94016 +294015,20in Monitor,1,109.99,2019-11-21 11:12:00,776 10th St, New York City,NY,10001 +294016,AA Batteries (4-pack),1,3.84,2019-11-22 17:08:00,886 Adams St, San Francisco,CA,94016 +294017,USB-C Charging Cable,2,11.95,2019-11-18 21:08:00,969 Jackson St, Los Angeles,CA,90001 +294018,AAA Batteries (4-pack),1,2.99,2019-11-02 10:39:00,271 North St, New York City,NY,10001 +294019,iPhone,1,700.0,2019-11-11 22:28:00,147 Washington St, Los Angeles,CA,90001 +294020,27in FHD Monitor,1,149.99,2019-11-12 21:02:00,853 5th St, New York City,NY,10001 +294021,Apple Airpods Headphones,1,150.0,2019-11-29 16:13:00,333 2nd St, Los Angeles,CA,90001 +294022,Macbook Pro Laptop,1,1700.0,2019-11-07 11:29:00,678 Highland St, San Francisco,CA,94016 +294023,AAA Batteries (4-pack),1,2.99,2019-11-27 17:19:00,131 Johnson St, Portland,OR,97035 +294024,ThinkPad Laptop,1,999.99,2019-11-29 20:27:00,766 Hickory St, Portland,OR,97035 +294025,AA Batteries (4-pack),1,3.84,2019-11-25 18:32:00,727 Meadow St, San Francisco,CA,94016 +294026,USB-C Charging Cable,1,11.95,2019-11-04 22:59:00,483 Maple St, San Francisco,CA,94016 +294027,AAA Batteries (4-pack),1,2.99,2019-11-09 17:38:00,200 Park St, San Francisco,CA,94016 +294028,Macbook Pro Laptop,1,1700.0,2019-11-20 13:40:00,502 1st St, Portland,OR,97035 +294029,27in FHD Monitor,1,149.99,2019-11-05 08:15:00,99 Pine St, Atlanta,GA,30301 +294030,Lightning Charging Cable,1,14.95,2019-11-02 19:13:00,607 Forest St, Atlanta,GA,30301 +294031,AA Batteries (4-pack),4,3.84,2019-11-20 09:19:00,768 Cherry St, New York City,NY,10001 +294032,AAA Batteries (4-pack),1,2.99,2019-11-15 09:19:00,256 West St, San Francisco,CA,94016 +294033,Google Phone,1,600.0,2019-11-18 21:13:00,243 2nd St, San Francisco,CA,94016 +294034,27in 4K Gaming Monitor,1,389.99,2019-11-23 00:55:00,537 14th St, Seattle,WA,98101 +294035,Lightning Charging Cable,1,14.95,2019-11-25 21:32:00,92 South St, San Francisco,CA,94016 +294035,Apple Airpods Headphones,1,150.0,2019-11-25 21:32:00,92 South St, San Francisco,CA,94016 +294036,AAA Batteries (4-pack),1,2.99,2019-11-07 20:54:00,120 8th St, Boston,MA,02215 +294037,34in Ultrawide Monitor,1,379.99,2019-11-08 09:22:00,549 Meadow St, Los Angeles,CA,90001 +294038,AAA Batteries (4-pack),1,2.99,2019-11-03 23:54:00,275 Hickory St, Atlanta,GA,30301 +294039,Apple Airpods Headphones,1,150.0,2019-11-14 17:35:00,47 Hill St, Los Angeles,CA,90001 +294040,34in Ultrawide Monitor,1,379.99,2019-11-13 21:46:00,402 North St, New York City,NY,10001 +294041,Google Phone,1,600.0,2019-11-06 00:40:00,923 Hill St, New York City,NY,10001 +294042,34in Ultrawide Monitor,1,379.99,2019-11-29 17:31:00,877 Pine St, New York City,NY,10001 +294043,AA Batteries (4-pack),1,3.84,2019-11-23 03:55:00,310 Elm St, Atlanta,GA,30301 +294044,Lightning Charging Cable,1,14.95,2019-11-02 18:43:00,105 10th St, Boston,MA,02215 +294045,AA Batteries (4-pack),2,3.84,2019-11-16 12:35:00,56 West St, San Francisco,CA,94016 +294046,34in Ultrawide Monitor,1,379.99,2019-11-17 15:12:00,746 Washington St, Los Angeles,CA,90001 +294047,Lightning Charging Cable,1,14.95,2019-11-09 17:49:00,711 South St, San Francisco,CA,94016 +294048,Lightning Charging Cable,1,14.95,2019-11-29 22:29:00,712 1st St, New York City,NY,10001 +294049,Google Phone,1,600.0,2019-11-12 15:11:00,939 Highland St, San Francisco,CA,94016 +294050,Lightning Charging Cable,1,14.95,2019-11-22 17:29:00,376 Chestnut St, Los Angeles,CA,90001 +294051,USB-C Charging Cable,1,11.95,2019-11-03 10:01:00,667 Jackson St, Los Angeles,CA,90001 +294052,AAA Batteries (4-pack),1,2.99,2019-11-30 16:17:00,528 Washington St, Portland,ME,04101 +294053,AAA Batteries (4-pack),2,2.99,2019-11-27 08:36:00,956 Pine St, Dallas,TX,75001 +294054,27in 4K Gaming Monitor,1,389.99,2019-11-27 11:26:00,56 Main St, Austin,TX,73301 +294055,27in 4K Gaming Monitor,1,389.99,2019-11-20 13:19:00,969 Lake St, Dallas,TX,75001 +294056,Google Phone,1,600.0,2019-11-04 20:55:00,345 5th St, San Francisco,CA,94016 +294056,Bose SoundSport Headphones,1,99.99,2019-11-04 20:55:00,345 5th St, San Francisco,CA,94016 +294056,Wired Headphones,1,11.99,2019-11-04 20:55:00,345 5th St, San Francisco,CA,94016 +294057,Wired Headphones,1,11.99,2019-11-16 10:14:00,170 River St, Dallas,TX,75001 +294058,Wired Headphones,1,11.99,2019-11-12 14:08:00,925 Park St, Portland,OR,97035 +294059,AA Batteries (4-pack),2,3.84,2019-11-11 16:49:00,137 2nd St, Los Angeles,CA,90001 +294060,Lightning Charging Cable,1,14.95,2019-11-21 18:06:00,592 Lake St, Boston,MA,02215 +294061,27in 4K Gaming Monitor,1,389.99,2019-11-06 22:47:00,808 Ridge St, Los Angeles,CA,90001 +294062,Apple Airpods Headphones,1,150.0,2019-11-10 22:59:00,318 12th St, Boston,MA,02215 +294063,USB-C Charging Cable,1,11.95,2019-11-09 14:29:00,71 Meadow St, San Francisco,CA,94016 +294064,Flatscreen TV,1,300.0,2019-11-24 09:36:00,703 Church St, Boston,MA,02215 +294065,34in Ultrawide Monitor,1,379.99,2019-11-14 20:42:00,780 West St, Austin,TX,73301 +294066,Wired Headphones,1,11.99,2019-11-29 18:32:00,376 Hill St, Atlanta,GA,30301 +294067,Apple Airpods Headphones,1,150.0,2019-11-24 16:01:00,540 Ridge St, Los Angeles,CA,90001 +294068,iPhone,1,700.0,2019-11-13 17:39:00,103 Park St, Los Angeles,CA,90001 +294069,USB-C Charging Cable,1,11.95,2019-11-26 10:34:00,29 Maple St, Atlanta,GA,30301 +294070,20in Monitor,1,109.99,2019-11-16 00:43:00,303 7th St, New York City,NY,10001 +294071,AA Batteries (4-pack),1,3.84,2019-11-13 23:09:00,329 Main St, Los Angeles,CA,90001 +294072,Lightning Charging Cable,1,14.95,2019-11-11 23:13:00,560 North St, Los Angeles,CA,90001 +294073,AA Batteries (4-pack),2,3.84,2019-11-27 10:33:00,938 Washington St, Dallas,TX,75001 +294074,Apple Airpods Headphones,1,150.0,2019-11-09 06:44:00,197 Spruce St, Los Angeles,CA,90001 +294075,AAA Batteries (4-pack),1,2.99,2019-11-25 16:14:00,34 Jackson St, San Francisco,CA,94016 +294076,USB-C Charging Cable,1,11.95,2019-11-23 00:56:00,484 1st St, Atlanta,GA,30301 +294077,AAA Batteries (4-pack),1,2.99,2019-11-05 06:08:00,65 Washington St, San Francisco,CA,94016 +294078,USB-C Charging Cable,2,11.95,2019-11-05 15:25:00,864 Forest St, Seattle,WA,98101 +294079,Wired Headphones,1,11.99,2019-11-27 11:07:00,477 Lake St, Los Angeles,CA,90001 +294080,Wired Headphones,1,11.99,2019-11-15 06:07:00,844 5th St, San Francisco,CA,94016 +294081,Lightning Charging Cable,1,14.95,2019-11-18 18:44:00,337 Jefferson St, Seattle,WA,98101 +294082,AAA Batteries (4-pack),3,2.99,2019-11-17 10:33:00,309 Maple St, Los Angeles,CA,90001 +294083,AAA Batteries (4-pack),2,2.99,2019-11-25 13:24:00,66 South St, New York City,NY,10001 +294084,Apple Airpods Headphones,1,150.0,2019-11-15 18:18:00,721 2nd St, Austin,TX,73301 +294085,AAA Batteries (4-pack),1,2.99,2019-11-02 18:12:00,397 Washington St, Portland,OR,97035 +294086,USB-C Charging Cable,1,11.95,2019-11-05 22:19:00,429 Jefferson St, San Francisco,CA,94016 +294087,27in FHD Monitor,1,149.99,2019-11-14 22:55:00,162 12th St, New York City,NY,10001 +294088,iPhone,1,700.0,2019-11-25 21:59:00,135 4th St, Los Angeles,CA,90001 +294089,AA Batteries (4-pack),1,3.84,2019-11-11 18:56:00,59 Spruce St, New York City,NY,10001 +294090,USB-C Charging Cable,1,11.95,2019-11-22 11:28:00,707 North St, San Francisco,CA,94016 +294091,Apple Airpods Headphones,1,150.0,2019-11-18 20:11:00,413 Sunset St, New York City,NY,10001 +294092,20in Monitor,1,109.99,2019-11-08 20:50:00,566 Spruce St, San Francisco,CA,94016 +294092,USB-C Charging Cable,1,11.95,2019-11-08 20:50:00,566 Spruce St, San Francisco,CA,94016 +294093,USB-C Charging Cable,1,11.95,2019-12-01 00:37:00,51 Cherry St, New York City,NY,10001 +294094,AA Batteries (4-pack),1,3.84,2019-11-01 17:13:00,936 North St, Los Angeles,CA,90001 +294095,AAA Batteries (4-pack),2,2.99,2019-11-17 12:17:00,333 Main St, Portland,OR,97035 +294096,Wired Headphones,1,11.99,2019-11-09 19:28:00,508 Main St, New York City,NY,10001 +294097,iPhone,1,700.0,2019-11-27 12:24:00,599 Center St, San Francisco,CA,94016 +294098,AAA Batteries (4-pack),1,2.99,2019-11-18 21:49:00,820 Johnson St, New York City,NY,10001 +294099,USB-C Charging Cable,1,11.95,2019-11-27 07:48:00,149 Sunset St, Los Angeles,CA,90001 +294100,iPhone,1,700.0,2019-11-10 11:58:00,816 Madison St, Dallas,TX,75001 +294101,Lightning Charging Cable,1,14.95,2019-11-01 16:09:00,826 Church St, New York City,NY,10001 +294102,AAA Batteries (4-pack),1,2.99,2019-11-08 11:08:00,382 Walnut St, Portland,OR,97035 +294103,Lightning Charging Cable,1,14.95,2019-11-18 18:05:00,821 Willow St, Los Angeles,CA,90001 +294104,Wired Headphones,1,11.99,2019-11-29 18:18:00,320 Highland St, New York City,NY,10001 +294105,USB-C Charging Cable,2,11.95,2019-11-03 13:40:00,114 12th St, San Francisco,CA,94016 +294106,LG Washing Machine,1,600.0,2019-11-23 19:14:00,867 Spruce St, Dallas,TX,75001 +294107,USB-C Charging Cable,1,11.95,2019-11-17 19:40:00,133 2nd St, San Francisco,CA,94016 +294108,Wired Headphones,1,11.99,2019-11-15 22:55:00,201 10th St, San Francisco,CA,94016 +294109,USB-C Charging Cable,1,11.95,2019-11-19 11:59:00,36 Ridge St, San Francisco,CA,94016 +294110,ThinkPad Laptop,1,999.99,2019-11-10 14:59:00,148 Hickory St, San Francisco,CA,94016 +294111,Lightning Charging Cable,1,14.95,2019-11-01 11:31:00,770 10th St, Boston,MA,02215 +294112,Google Phone,1,600.0,2019-11-27 16:17:00,600 Pine St, Atlanta,GA,30301 +294113,27in FHD Monitor,1,149.99,2019-11-02 02:47:00,287 Sunset St, Austin,TX,73301 +294114,Wired Headphones,1,11.99,2019-11-21 20:52:00,124 5th St, Boston,MA,02215 +294115,27in FHD Monitor,1,149.99,2019-11-09 14:55:00,409 Cedar St, Atlanta,GA,30301 +294115,Wired Headphones,1,11.99,2019-11-09 14:55:00,409 Cedar St, Atlanta,GA,30301 +294116,Lightning Charging Cable,1,14.95,2019-11-06 12:06:00,298 Johnson St, Los Angeles,CA,90001 +294117,Wired Headphones,1,11.99,2019-11-09 10:15:00,314 Sunset St, Boston,MA,02215 +294118,iPhone,1,700.0,2019-11-25 17:12:00,771 Jackson St, New York City,NY,10001 +294119,Apple Airpods Headphones,1,150.0,2019-11-13 13:27:00,638 Sunset St, San Francisco,CA,94016 +294120,34in Ultrawide Monitor,1,379.99,2019-11-28 11:46:00,326 North St, San Francisco,CA,94016 +294121,Bose SoundSport Headphones,2,99.99,2019-11-08 16:19:00,458 Johnson St, Seattle,WA,98101 +294122,Lightning Charging Cable,1,14.95,2019-11-16 22:11:00,342 Forest St, San Francisco,CA,94016 +294123,USB-C Charging Cable,2,11.95,2019-11-06 18:54:00,237 8th St, Dallas,TX,75001 +294124,AA Batteries (4-pack),1,3.84,2019-11-11 22:11:00,224 5th St, New York City,NY,10001 +294125,20in Monitor,1,109.99,2019-11-20 08:31:00,994 6th St, Los Angeles,CA,90001 +294126,20in Monitor,1,109.99,2019-11-08 14:32:00,990 1st St, New York City,NY,10001 +294127,Apple Airpods Headphones,1,150.0,2019-11-24 19:28:00,451 14th St, Los Angeles,CA,90001 +294128,USB-C Charging Cable,1,11.95,2019-11-12 22:32:00,798 13th St, Atlanta,GA,30301 +294129,Wired Headphones,1,11.99,2019-11-10 15:30:00,755 2nd St, New York City,NY,10001 +294130,Apple Airpods Headphones,1,150.0,2019-11-27 14:13:00,895 10th St, New York City,NY,10001 +294131,Wired Headphones,1,11.99,2019-11-23 13:03:00,256 9th St, Los Angeles,CA,90001 +294132,Apple Airpods Headphones,1,150.0,2019-11-19 23:10:00,468 Jefferson St, Portland,OR,97035 +294133,USB-C Charging Cable,1,11.95,2019-11-04 19:39:00,179 Church St, San Francisco,CA,94016 +294134,USB-C Charging Cable,1,11.95,2019-11-10 11:26:00,423 Walnut St, Seattle,WA,98101 +294135,Wired Headphones,1,11.99,2019-11-27 12:58:00,35 Willow St, Boston,MA,02215 +294136,Lightning Charging Cable,1,14.95,2019-11-27 00:17:00,659 4th St, New York City,NY,10001 +294137,Apple Airpods Headphones,1,150.0,2019-11-06 15:22:00,589 6th St, New York City,NY,10001 +294138,20in Monitor,1,109.99,2019-11-18 18:13:00,382 Lakeview St, Atlanta,GA,30301 +294138,Wired Headphones,1,11.99,2019-11-18 18:13:00,382 Lakeview St, Atlanta,GA,30301 +294139,Bose SoundSport Headphones,1,99.99,2019-11-21 18:51:00,826 14th St, New York City,NY,10001 +294140,Google Phone,1,600.0,2019-11-02 09:51:00,30 Spruce St, Portland,ME,04101 +294141,AAA Batteries (4-pack),2,2.99,2019-11-04 16:44:00,413 Park St, Los Angeles,CA,90001 +294142,ThinkPad Laptop,1,999.99,2019-11-02 23:47:00,141 Sunset St, Los Angeles,CA,90001 +294143,AAA Batteries (4-pack),1,2.99,2019-11-30 21:35:00,387 Hill St, Boston,MA,02215 +294144,Apple Airpods Headphones,1,150.0,2019-11-06 09:22:00,922 6th St, Atlanta,GA,30301 +294145,ThinkPad Laptop,1,999.99,2019-11-07 21:36:00,141 West St, Seattle,WA,98101 +294146,Flatscreen TV,1,300.0,2019-11-02 06:26:00,341 West St, Atlanta,GA,30301 +294147,iPhone,1,700.0,2019-11-30 23:31:00,598 Willow St, Boston,MA,02215 +294147,Lightning Charging Cable,1,14.95,2019-11-30 23:31:00,598 Willow St, Boston,MA,02215 +294148,AAA Batteries (4-pack),1,2.99,2019-11-19 07:31:00,854 Forest St, Portland,OR,97035 +294149,Wired Headphones,1,11.99,2019-11-29 09:15:00,896 Pine St, San Francisco,CA,94016 +294150,27in FHD Monitor,1,149.99,2019-11-23 22:19:00,992 11th St, New York City,NY,10001 +294151,Lightning Charging Cable,1,14.95,2019-11-03 11:51:00,221 1st St, Boston,MA,02215 +294152,USB-C Charging Cable,1,11.95,2019-11-22 09:36:00,590 Washington St, Austin,TX,73301 +294153,AAA Batteries (4-pack),1,2.99,2019-11-04 09:30:00,330 Elm St, Seattle,WA,98101 +294154,Lightning Charging Cable,1,14.95,2019-11-24 09:23:00,444 Jefferson St, Los Angeles,CA,90001 +294155,Lightning Charging Cable,1,14.95,2019-11-07 22:39:00,235 Walnut St, Seattle,WA,98101 +294156,Lightning Charging Cable,1,14.95,2019-11-26 14:23:00,96 6th St, Austin,TX,73301 +294157,Lightning Charging Cable,1,14.95,2019-11-03 10:44:00,222 Church St, Atlanta,GA,30301 +294158,AAA Batteries (4-pack),3,2.99,2019-11-26 13:37:00,374 9th St, San Francisco,CA,94016 +294159,27in 4K Gaming Monitor,1,389.99,2019-11-18 12:37:00,129 Park St, Los Angeles,CA,90001 +294160,20in Monitor,1,109.99,2019-11-14 21:19:00,226 Center St, New York City,NY,10001 +294161,AAA Batteries (4-pack),4,2.99,2019-11-18 14:08:00,696 Pine St, Atlanta,GA,30301 +294162,ThinkPad Laptop,1,999.99,2019-11-08 14:20:00,284 5th St, New York City,NY,10001 +294163,Wired Headphones,1,11.99,2019-11-20 07:29:00,441 Johnson St, San Francisco,CA,94016 +294164,Flatscreen TV,1,300.0,2019-11-03 10:17:00,969 Park St, Portland,OR,97035 +294165,Wired Headphones,1,11.99,2019-11-26 20:31:00,282 Church St, Los Angeles,CA,90001 +294166,AAA Batteries (4-pack),1,2.99,2019-11-03 10:50:00,936 Adams St, New York City,NY,10001 +294167,34in Ultrawide Monitor,1,379.99,2019-11-10 03:55:00,880 Hill St, Seattle,WA,98101 +294168,Wired Headphones,1,11.99,2019-11-08 18:12:00,914 Hill St, San Francisco,CA,94016 +294169,Google Phone,1,600.0,2019-11-30 15:26:00,11 Center St, Portland,OR,97035 +294170,Bose SoundSport Headphones,1,99.99,2019-11-06 18:40:00,499 Adams St, Portland,OR,97035 +294171,AAA Batteries (4-pack),3,2.99,2019-11-30 20:22:00,742 10th St, San Francisco,CA,94016 +294172,Bose SoundSport Headphones,1,99.99,2019-11-28 11:05:00,986 Highland St, Seattle,WA,98101 +294172,Lightning Charging Cable,1,14.95,2019-11-28 11:05:00,986 Highland St, Seattle,WA,98101 +294173,USB-C Charging Cable,1,11.95,2019-11-29 12:39:00,897 Washington St, Los Angeles,CA,90001 +294174,Bose SoundSport Headphones,1,99.99,2019-11-05 16:09:00,191 9th St, San Francisco,CA,94016 +294175,AAA Batteries (4-pack),1,2.99,2019-11-04 17:59:00,724 Hickory St, Boston,MA,02215 +294176,AAA Batteries (4-pack),1,2.99,2019-11-21 21:24:00,43 Lake St, San Francisco,CA,94016 +294177,AAA Batteries (4-pack),2,2.99,2019-11-09 09:36:00,536 Jackson St, Austin,TX,73301 +294178,USB-C Charging Cable,1,11.95,2019-11-01 18:01:00,458 Wilson St, New York City,NY,10001 +294179,iPhone,1,700.0,2019-11-27 18:45:00,416 Madison St, Austin,TX,73301 +294180,Apple Airpods Headphones,1,150.0,2019-11-19 20:45:00,617 7th St, San Francisco,CA,94016 +294181,27in 4K Gaming Monitor,1,389.99,2019-11-25 19:45:00,850 4th St, New York City,NY,10001 +294182,Wired Headphones,1,11.99,2019-11-13 13:08:00,575 9th St, Boston,MA,02215 +294183,Wired Headphones,1,11.99,2019-11-14 17:42:00,710 Hickory St, Seattle,WA,98101 +294184,27in 4K Gaming Monitor,1,389.99,2019-11-14 13:10:00,642 Jefferson St, New York City,NY,10001 +294185,27in 4K Gaming Monitor,1,389.99,2019-11-05 15:31:00,285 Park St, New York City,NY,10001 +294186,USB-C Charging Cable,1,11.95,2019-11-28 17:07:00,622 Wilson St, New York City,NY,10001 +294187,Bose SoundSport Headphones,1,99.99,2019-11-22 08:14:00,324 Adams St, Boston,MA,02215 +294188,Wired Headphones,1,11.99,2019-11-20 19:58:00,772 Hickory St, Atlanta,GA,30301 +294189,Flatscreen TV,1,300.0,2019-11-25 20:16:00,268 Jefferson St, Boston,MA,02215 +294190,AAA Batteries (4-pack),1,2.99,2019-11-19 09:03:00,491 Jefferson St, Boston,MA,02215 +294190,iPhone,1,700.0,2019-11-19 09:03:00,491 Jefferson St, Boston,MA,02215 +294191,Apple Airpods Headphones,1,150.0,2019-11-26 04:52:00,499 Maple St, Los Angeles,CA,90001 +294191,USB-C Charging Cable,1,11.95,2019-11-26 04:52:00,499 Maple St, Los Angeles,CA,90001 +294192,LG Dryer,1,600.0,2019-11-28 23:31:00,831 7th St, San Francisco,CA,94016 +294193,27in 4K Gaming Monitor,1,389.99,2019-11-16 22:13:00,73 Johnson St, San Francisco,CA,94016 +294194,iPhone,1,700.0,2019-11-21 10:31:00,761 Park St, New York City,NY,10001 +294195,34in Ultrawide Monitor,1,379.99,2019-11-16 16:56:00,981 Jefferson St, New York City,NY,10001 +294196,Wired Headphones,1,11.99,2019-11-28 12:15:00,113 Church St, San Francisco,CA,94016 +294197,Apple Airpods Headphones,1,150.0,2019-11-22 00:10:00,963 Hickory St, San Francisco,CA,94016 +294198,27in 4K Gaming Monitor,1,389.99,2019-11-25 11:03:00,623 Jefferson St, Austin,TX,73301 +294199,iPhone,1,700.0,2019-11-23 16:52:00,742 Park St, Los Angeles,CA,90001 +294199,Lightning Charging Cable,1,14.95,2019-11-23 16:52:00,742 Park St, Los Angeles,CA,90001 +294199,Apple Airpods Headphones,1,150.0,2019-11-23 16:52:00,742 Park St, Los Angeles,CA,90001 +294200,Apple Airpods Headphones,1,150.0,2019-11-04 23:29:00,326 West St, Portland,OR,97035 +294201,AA Batteries (4-pack),2,3.84,2019-11-30 16:15:00,648 Dogwood St, Seattle,WA,98101 +294202,27in 4K Gaming Monitor,1,389.99,2019-11-14 17:46:00,7 Church St, Boston,MA,02215 +294203,27in FHD Monitor,1,149.99,2019-11-07 18:00:00,637 River St, Atlanta,GA,30301 +294204,Macbook Pro Laptop,1,1700.0,2019-11-16 11:22:00,914 Lake St, Atlanta,GA,30301 +294205,Lightning Charging Cable,1,14.95,2019-11-10 17:09:00,41 Sunset St, Los Angeles,CA,90001 +294206,AAA Batteries (4-pack),1,2.99,2019-11-09 16:33:00,950 Hill St, San Francisco,CA,94016 +294207,USB-C Charging Cable,2,11.95,2019-11-07 04:16:00,47 Main St, San Francisco,CA,94016 +294208,Bose SoundSport Headphones,1,99.99,2019-11-30 12:58:00,495 Spruce St, Los Angeles,CA,90001 +294209,AAA Batteries (4-pack),2,2.99,2019-11-06 16:45:00,761 Ridge St, Los Angeles,CA,90001 +294210,AA Batteries (4-pack),1,3.84,2019-11-28 11:35:00,119 River St, Los Angeles,CA,90001 +294211,USB-C Charging Cable,1,11.95,2019-11-04 22:23:00,63 2nd St, Portland,OR,97035 +294212,AAA Batteries (4-pack),2,2.99,2019-11-13 22:11:00,68 Washington St, San Francisco,CA,94016 +294213,Apple Airpods Headphones,1,150.0,2019-11-06 10:19:00,353 4th St, Portland,OR,97035 +294214,iPhone,1,700.0,2019-11-11 22:11:00,950 Maple St, Austin,TX,73301 +294214,Wired Headphones,1,11.99,2019-11-11 22:11:00,950 Maple St, Austin,TX,73301 +294215,34in Ultrawide Monitor,1,379.99,2019-11-05 17:26:00,532 14th St, San Francisco,CA,94016 +294216,Lightning Charging Cable,2,14.95,2019-11-29 09:05:00,816 Madison St, San Francisco,CA,94016 +294217,34in Ultrawide Monitor,1,379.99,2019-11-29 17:13:00,666 Sunset St, New York City,NY,10001 +294218,Apple Airpods Headphones,1,150.0,2019-11-24 14:53:00,535 Elm St, Seattle,WA,98101 +294219,Lightning Charging Cable,1,14.95,2019-11-06 13:29:00,804 South St, New York City,NY,10001 +294220,27in FHD Monitor,1,149.99,2019-11-02 07:10:00,283 Wilson St, Dallas,TX,75001 +294221,iPhone,1,700.0,2019-11-15 20:18:00,907 Church St, Seattle,WA,98101 +294222,Lightning Charging Cable,1,14.95,2019-11-08 11:50:00,162 Dogwood St, Los Angeles,CA,90001 +294223,27in 4K Gaming Monitor,1,389.99,2019-11-26 16:42:00,507 Washington St, Dallas,TX,75001 +294224,Lightning Charging Cable,2,14.95,2019-11-25 14:27:00,584 Walnut St, Los Angeles,CA,90001 +294225,27in FHD Monitor,1,149.99,2019-11-04 22:23:00,848 Adams St, Los Angeles,CA,90001 +294226,Lightning Charging Cable,1,14.95,2019-11-19 14:49:00,830 Elm St, San Francisco,CA,94016 +294227,AAA Batteries (4-pack),1,2.99,2019-11-24 10:04:00,851 Adams St, Dallas,TX,75001 +294228,AAA Batteries (4-pack),1,2.99,2019-11-20 00:41:00,275 Lakeview St, Boston,MA,02215 +294229,Lightning Charging Cable,1,14.95,2019-11-19 12:31:00,476 6th St, Atlanta,GA,30301 +294230,Lightning Charging Cable,1,14.95,2019-11-22 19:14:00,211 Cedar St, San Francisco,CA,94016 +294231,Vareebadd Phone,1,400.0,2019-11-13 22:17:00,47 13th St, Boston,MA,02215 +294232,AAA Batteries (4-pack),1,2.99,2019-11-03 13:41:00,781 Chestnut St, Dallas,TX,75001 +294233,AA Batteries (4-pack),2,3.84,2019-11-01 20:23:00,816 Forest St, Los Angeles,CA,90001 +294234,Lightning Charging Cable,1,14.95,2019-11-06 09:40:00,530 9th St, Boston,MA,02215 +294235,Google Phone,1,600.0,2019-11-30 22:55:00,394 Johnson St, Portland,OR,97035 +294236,AAA Batteries (4-pack),1,2.99,2019-11-26 22:34:00,494 Willow St, Atlanta,GA,30301 +294237,AAA Batteries (4-pack),1,2.99,2019-11-15 20:12:00,201 Center St, Los Angeles,CA,90001 +294238,Apple Airpods Headphones,1,150.0,2019-11-14 13:01:00,775 Maple St, New York City,NY,10001 +294239,AA Batteries (4-pack),1,3.84,2019-11-06 01:13:00,222 10th St, Portland,ME,04101 +294240,ThinkPad Laptop,1,999.99,2019-11-25 14:15:00,305 9th St, Austin,TX,73301 +294241,iPhone,1,700.0,2019-11-15 22:27:00,197 Main St, Boston,MA,02215 +294242,AAA Batteries (4-pack),1,2.99,2019-11-17 14:17:00,931 9th St, Austin,TX,73301 +294243,USB-C Charging Cable,1,11.95,2019-11-02 22:56:00,230 Walnut St, Los Angeles,CA,90001 +294244,Lightning Charging Cable,1,14.95,2019-11-27 11:26:00,883 1st St, Dallas,TX,75001 +294245,Lightning Charging Cable,1,14.95,2019-11-21 20:20:00,344 Madison St, New York City,NY,10001 +294246,AAA Batteries (4-pack),4,2.99,2019-11-26 17:22:00,402 Forest St, Portland,OR,97035 +294247,20in Monitor,1,109.99,2019-11-15 21:32:00,11 9th St, Boston,MA,02215 +294248,Apple Airpods Headphones,1,150.0,2019-11-18 09:04:00,444 Forest St, Atlanta,GA,30301 +294249,AAA Batteries (4-pack),4,2.99,2019-11-15 19:46:00,841 West St, San Francisco,CA,94016 +294250,USB-C Charging Cable,1,11.95,2019-11-05 17:46:00,398 6th St, San Francisco,CA,94016 +294251,Wired Headphones,1,11.99,2019-11-13 10:26:00,116 Spruce St, Atlanta,GA,30301 +294252,Lightning Charging Cable,1,14.95,2019-11-16 19:47:00,260 5th St, Dallas,TX,75001 +294253,Google Phone,1,600.0,2019-11-25 17:45:00,527 Church St, Dallas,TX,75001 +294254,Wired Headphones,1,11.99,2019-11-18 13:35:00,703 Lake St, San Francisco,CA,94016 +294255,AAA Batteries (4-pack),2,2.99,2019-11-09 06:45:00,733 Lincoln St, Boston,MA,02215 +294256,USB-C Charging Cable,1,11.95,2019-11-02 08:52:00,672 Madison St, New York City,NY,10001 +294257,27in 4K Gaming Monitor,1,389.99,2019-11-20 18:17:00,788 11th St, Dallas,TX,75001 +294258,Lightning Charging Cable,1,14.95,2019-11-28 22:18:00,89 Elm St, Boston,MA,02215 +294259,27in FHD Monitor,1,149.99,2019-11-26 23:56:00,379 Lake St, New York City,NY,10001 +294260,AAA Batteries (4-pack),1,2.99,2019-11-18 11:21:00,516 Hill St, Austin,TX,73301 +294261,AAA Batteries (4-pack),2,2.99,2019-11-19 22:07:00,585 13th St, San Francisco,CA,94016 +294262,Wired Headphones,2,11.99,2019-11-19 13:41:00,647 Hickory St, Dallas,TX,75001 +294263,Lightning Charging Cable,1,14.95,2019-11-01 17:19:00,195 13th St, Los Angeles,CA,90001 +294264,AA Batteries (4-pack),2,3.84,2019-11-16 10:46:00,967 River St, Los Angeles,CA,90001 +294265,Google Phone,1,600.0,2019-11-30 15:02:00,504 Center St, Austin,TX,73301 +294266,Lightning Charging Cable,1,14.95,2019-11-11 19:25:00,812 11th St, Los Angeles,CA,90001 +294267,AAA Batteries (4-pack),1,2.99,2019-11-14 22:21:00,52 Hickory St, Dallas,TX,75001 +294268,Bose SoundSport Headphones,1,99.99,2019-11-24 20:26:00,108 12th St, Portland,OR,97035 +294269,AAA Batteries (4-pack),1,2.99,2019-11-13 11:01:00,993 Center St, Los Angeles,CA,90001 +294270,Google Phone,1,600.0,2019-11-03 21:28:00,627 Pine St, New York City,NY,10001 +294271,AAA Batteries (4-pack),3,2.99,2019-11-30 18:14:00,526 Main St, Dallas,TX,75001 +294272,Bose SoundSport Headphones,1,99.99,2019-11-30 07:11:00,45 5th St, Los Angeles,CA,90001 +294273,Wired Headphones,1,11.99,2019-11-03 10:37:00,125 Highland St, Boston,MA,02215 +294274,Flatscreen TV,1,300.0,2019-11-15 23:20:00,327 Forest St, Atlanta,GA,30301 +294275,Wired Headphones,1,11.99,2019-11-08 19:08:00,767 12th St, Atlanta,GA,30301 +294276,Bose SoundSport Headphones,1,99.99,2019-11-03 00:01:00,565 11th St, San Francisco,CA,94016 +294277,Wired Headphones,1,11.99,2019-11-18 19:33:00,517 2nd St, Los Angeles,CA,90001 +294278,Vareebadd Phone,1,400.0,2019-11-25 15:09:00,63 Hickory St, Los Angeles,CA,90001 +294278,Bose SoundSport Headphones,1,99.99,2019-11-25 15:09:00,63 Hickory St, Los Angeles,CA,90001 +294279,Lightning Charging Cable,1,14.95,2019-11-29 15:20:00,965 Walnut St, San Francisco,CA,94016 +294280,USB-C Charging Cable,2,11.95,2019-11-21 14:37:00,157 13th St, Atlanta,GA,30301 +294281,AA Batteries (4-pack),2,3.84,2019-11-25 19:26:00,569 Elm St, Portland,OR,97035 +294282,Apple Airpods Headphones,1,150.0,2019-11-28 20:57:00,822 Sunset St, Los Angeles,CA,90001 +294283,Lightning Charging Cable,1,14.95,2019-11-10 20:36:00,552 11th St, San Francisco,CA,94016 +294284,27in FHD Monitor,1,149.99,2019-11-14 11:58:00,856 Center St, Boston,MA,02215 +294285,27in FHD Monitor,1,149.99,2019-11-14 14:29:00,203 Johnson St, Boston,MA,02215 +294286,Vareebadd Phone,1,400.0,2019-11-18 18:48:00,540 6th St, Los Angeles,CA,90001 +294287,27in FHD Monitor,1,149.99,2019-11-29 21:17:00,255 Park St, San Francisco,CA,94016 +294288,27in FHD Monitor,1,149.99,2019-11-16 09:05:00,811 4th St, San Francisco,CA,94016 +294289,27in FHD Monitor,1,149.99,2019-11-03 18:23:00,10 Sunset St, Portland,OR,97035 +294290,AA Batteries (4-pack),2,3.84,2019-11-08 10:12:00,402 Park St, Los Angeles,CA,90001 +294291,AA Batteries (4-pack),1,3.84,2019-11-03 10:29:00,991 Sunset St, Portland,ME,04101 +294292,USB-C Charging Cable,1,11.95,2019-11-15 20:43:00,768 2nd St, Portland,ME,04101 +294293,AAA Batteries (4-pack),2,2.99,2019-11-12 13:26:00,608 Cedar St, New York City,NY,10001 +294294,AA Batteries (4-pack),1,3.84,2019-11-21 14:52:00,251 Sunset St, New York City,NY,10001 +294295,Wired Headphones,2,11.99,2019-11-01 13:00:00,266 Jackson St, Dallas,TX,75001 +294296,Wired Headphones,1,11.99,2019-11-19 17:35:00,510 River St, Atlanta,GA,30301 +294297,AAA Batteries (4-pack),2,2.99,2019-11-13 10:46:00,464 Cherry St, New York City,NY,10001 +294298,iPhone,1,700.0,2019-11-28 10:38:00,124 West St, Dallas,TX,75001 +294299,USB-C Charging Cable,1,11.95,2019-11-20 00:44:00,261 Wilson St, New York City,NY,10001 +294300,AA Batteries (4-pack),2,3.84,2019-11-29 00:35:00,77 Hickory St, San Francisco,CA,94016 +294301,Macbook Pro Laptop,1,1700.0,2019-11-14 16:12:00,389 South St, Boston,MA,02215 +294302,Macbook Pro Laptop,1,1700.0,2019-11-27 11:15:00,753 5th St, Dallas,TX,75001 +294303,Wired Headphones,1,11.99,2019-11-20 08:10:00,206 2nd St, Los Angeles,CA,90001 +294304,Apple Airpods Headphones,1,150.0,2019-11-17 11:08:00,849 13th St, New York City,NY,10001 +294305,Apple Airpods Headphones,1,150.0,2019-11-29 19:37:00,589 Highland St, Seattle,WA,98101 +294306,27in 4K Gaming Monitor,1,389.99,2019-11-17 17:52:00,558 Hill St, Los Angeles,CA,90001 +294307,34in Ultrawide Monitor,1,379.99,2019-11-27 10:21:00,167 13th St, Los Angeles,CA,90001 +294308,Wired Headphones,1,11.99,2019-11-10 18:59:00,153 7th St, Atlanta,GA,30301 +294309,ThinkPad Laptop,1,999.99,2019-11-28 20:06:00,789 10th St, Austin,TX,73301 +294310,AA Batteries (4-pack),3,3.84,2019-11-13 17:39:00,978 7th St, Boston,MA,02215 +294311,USB-C Charging Cable,1,11.95,2019-11-30 01:56:00,889 9th St, San Francisco,CA,94016 +294312,Wired Headphones,1,11.99,2019-11-10 10:34:00,198 13th St, Boston,MA,02215 +294313,Wired Headphones,1,11.99,2019-11-28 09:40:00,897 Forest St, Los Angeles,CA,90001 +294314,iPhone,1,700.0,2019-11-20 22:02:00,267 Jefferson St, Boston,MA,02215 +294314,Apple Airpods Headphones,1,150.0,2019-11-20 22:02:00,267 Jefferson St, Boston,MA,02215 +294315,Wired Headphones,1,11.99,2019-11-24 09:29:00,404 Lincoln St, New York City,NY,10001 +294316,27in FHD Monitor,1,149.99,2019-11-20 22:32:00,320 4th St, San Francisco,CA,94016 +294317,27in 4K Gaming Monitor,1,389.99,2019-11-08 10:39:00,919 Cherry St, Los Angeles,CA,90001 +294318,AA Batteries (4-pack),1,3.84,2019-11-21 03:25:00,887 Center St, San Francisco,CA,94016 +294319,AA Batteries (4-pack),1,3.84,2019-11-10 12:12:00,704 Madison St, Los Angeles,CA,90001 +294320,Apple Airpods Headphones,1,150.0,2019-11-01 18:50:00,125 South St, Los Angeles,CA,90001 +294321,Apple Airpods Headphones,1,150.0,2019-11-03 16:23:00,762 Sunset St, New York City,NY,10001 +294322,Bose SoundSport Headphones,1,99.99,2019-11-25 21:27:00,53 Spruce St, San Francisco,CA,94016 +294323,Macbook Pro Laptop,1,1700.0,2019-11-04 20:17:00,562 River St, Boston,MA,02215 +294324,AA Batteries (4-pack),1,3.84,2019-11-28 15:43:00,36 Jackson St, New York City,NY,10001 +294325,Lightning Charging Cable,1,14.95,2019-11-09 15:28:00,500 14th St, Boston,MA,02215 +294326,27in 4K Gaming Monitor,1,389.99,2019-11-25 21:08:00,95 5th St, Boston,MA,02215 +294327,Lightning Charging Cable,1,14.95,2019-11-13 12:13:00,281 River St, Boston,MA,02215 +294328,Lightning Charging Cable,1,14.95,2019-11-29 19:36:00,2 Main St, Boston,MA,02215 +294329,Bose SoundSport Headphones,1,99.99,2019-11-08 01:26:00,728 Center St, New York City,NY,10001 +294330,AA Batteries (4-pack),1,3.84,2019-11-10 21:00:00,922 Chestnut St, San Francisco,CA,94016 +294331,AA Batteries (4-pack),1,3.84,2019-11-20 19:18:00,919 Sunset St, Los Angeles,CA,90001 +294332,27in FHD Monitor,1,149.99,2019-11-25 11:54:00,425 Cedar St, Seattle,WA,98101 +294333,34in Ultrawide Monitor,1,379.99,2019-11-15 04:33:00,107 Lakeview St, San Francisco,CA,94016 +294334,Wired Headphones,1,11.99,2019-11-16 12:49:00,808 Washington St, Los Angeles,CA,90001 +294335,Google Phone,1,600.0,2019-11-02 20:40:00,963 13th St, Portland,ME,04101 +294336,Lightning Charging Cable,1,14.95,2019-11-16 13:06:00,466 Cedar St, Los Angeles,CA,90001 +294337,Apple Airpods Headphones,1,150.0,2019-11-17 16:43:00,480 Willow St, New York City,NY,10001 +294338,AA Batteries (4-pack),1,3.84,2019-11-29 09:46:00,712 Ridge St, Atlanta,GA,30301 +294339,Google Phone,1,600.0,2019-11-05 23:48:00,671 Chestnut St, New York City,NY,10001 +294340,USB-C Charging Cable,1,11.95,2019-11-16 20:29:00,735 Forest St, Dallas,TX,75001 +294341,27in FHD Monitor,1,149.99,2019-11-04 15:58:00,110 Washington St, New York City,NY,10001 +294342,20in Monitor,1,109.99,2019-11-07 01:48:00,999 Park St, Los Angeles,CA,90001 +294343,AA Batteries (4-pack),2,3.84,2019-11-01 19:05:00,553 Lake St, San Francisco,CA,94016 +294344,AAA Batteries (4-pack),1,2.99,2019-11-25 18:27:00,731 Pine St, San Francisco,CA,94016 +294345,Bose SoundSport Headphones,1,99.99,2019-11-01 11:42:00,557 Lake St, Austin,TX,73301 +294346,USB-C Charging Cable,1,11.95,2019-11-04 11:20:00,657 Church St, Portland,OR,97035 +294347,Flatscreen TV,1,300.0,2019-11-30 08:24:00,518 Dogwood St, Los Angeles,CA,90001 +294348,34in Ultrawide Monitor,1,379.99,2019-11-06 17:05:00,975 Lincoln St, New York City,NY,10001 +294349,Lightning Charging Cable,1,14.95,2019-11-23 10:59:00,891 Elm St, Dallas,TX,75001 +294350,Apple Airpods Headphones,1,150.0,2019-11-02 01:16:00,586 1st St, Atlanta,GA,30301 +294351,20in Monitor,1,109.99,2019-11-27 17:38:00,313 West St, Los Angeles,CA,90001 +294352,AA Batteries (4-pack),1,3.84,2019-11-14 17:58:00,242 Willow St, Portland,OR,97035 +294353,USB-C Charging Cable,1,11.95,2019-11-22 16:53:00,801 8th St, San Francisco,CA,94016 +294354,USB-C Charging Cable,1,11.95,2019-11-29 02:13:00,781 Willow St, Dallas,TX,75001 +294355,Wired Headphones,1,11.99,2019-11-21 20:02:00,894 7th St, Seattle,WA,98101 +294356,Apple Airpods Headphones,1,150.0,2019-11-28 17:21:00,212 10th St, Austin,TX,73301 +294357,27in 4K Gaming Monitor,1,389.99,2019-11-07 21:43:00,926 Cherry St, New York City,NY,10001 +294358,AAA Batteries (4-pack),2,2.99,2019-11-03 19:36:00,160 South St, Boston,MA,02215 +294359,USB-C Charging Cable,1,11.95,2019-11-21 19:20:00,441 Forest St, Dallas,TX,75001 +294360,Google Phone,1,600.0,2019-11-02 23:24:00,957 1st St, Atlanta,GA,30301 +294360,Bose SoundSport Headphones,1,99.99,2019-11-02 23:24:00,957 1st St, Atlanta,GA,30301 +294361,AA Batteries (4-pack),3,3.84,2019-11-21 09:31:00,503 Sunset St, New York City,NY,10001 +294362,AA Batteries (4-pack),1,3.84,2019-11-02 14:25:00,315 Adams St, Dallas,TX,75001 +294363,USB-C Charging Cable,1,11.95,2019-11-08 07:10:00,625 5th St, Atlanta,GA,30301 +294364,Google Phone,1,600.0,2019-11-05 01:02:00,427 1st St, San Francisco,CA,94016 +294365,Macbook Pro Laptop,1,1700.0,2019-11-10 12:56:00,388 Lakeview St, Los Angeles,CA,90001 +294366,Apple Airpods Headphones,1,150.0,2019-11-10 14:22:00,703 Hickory St, Atlanta,GA,30301 +294367,Lightning Charging Cable,2,14.95,2019-11-23 08:15:00,997 Jackson St, Dallas,TX,75001 +294368,Apple Airpods Headphones,1,150.0,2019-11-28 21:33:00,632 Walnut St, Boston,MA,02215 +294369,20in Monitor,1,109.99,2019-11-06 14:31:00,69 11th St, San Francisco,CA,94016 +294370,Wired Headphones,1,11.99,2019-11-14 17:21:00,865 River St, New York City,NY,10001 +294371,Lightning Charging Cable,1,14.95,2019-11-07 08:41:00,545 Lake St, Dallas,TX,75001 +294372,AA Batteries (4-pack),1,3.84,2019-11-30 14:40:00,62 Center St, Los Angeles,CA,90001 +294373,Lightning Charging Cable,1,14.95,2019-11-29 11:55:00,186 8th St, Portland,OR,97035 +294374,AA Batteries (4-pack),1,3.84,2019-11-10 17:44:00,128 Main St, San Francisco,CA,94016 +294375,AA Batteries (4-pack),1,3.84,2019-11-03 16:29:00,121 Adams St, Austin,TX,73301 +294376,27in 4K Gaming Monitor,1,389.99,2019-11-14 17:36:00,638 Johnson St, Boston,MA,02215 +294377,27in FHD Monitor,1,149.99,2019-11-13 16:37:00,80 Dogwood St, Dallas,TX,75001 +294378,Vareebadd Phone,1,400.0,2019-11-18 09:29:00,942 Main St, Dallas,TX,75001 +294379,34in Ultrawide Monitor,1,379.99,2019-11-30 09:00:00,569 Cherry St, Boston,MA,02215 +294380,Wired Headphones,1,11.99,2019-11-17 15:19:00,19 Willow St, Boston,MA,02215 +294381,iPhone,1,700.0,2019-11-11 10:12:00,872 Willow St, Atlanta,GA,30301 +294381,Lightning Charging Cable,1,14.95,2019-11-11 10:12:00,872 Willow St, Atlanta,GA,30301 +294382,iPhone,1,700.0,2019-11-28 11:23:00,883 Hill St, San Francisco,CA,94016 +294383,Vareebadd Phone,1,400.0,2019-11-17 14:26:00,174 Highland St, Los Angeles,CA,90001 +294384,USB-C Charging Cable,1,11.95,2019-11-27 06:01:00,351 1st St, Los Angeles,CA,90001 +294385,USB-C Charging Cable,1,11.95,2019-11-02 10:32:00,910 Willow St, Los Angeles,CA,90001 +294386,LG Washing Machine,1,600.0,2019-11-27 18:59:00,603 5th St, New York City,NY,10001 +294387,Lightning Charging Cable,1,14.95,2019-11-02 17:48:00,200 Madison St, Atlanta,GA,30301 +294388,USB-C Charging Cable,1,11.95,2019-11-26 15:52:00,563 Cedar St, Los Angeles,CA,90001 +294389,Lightning Charging Cable,1,14.95,2019-11-29 16:27:00,711 11th St, San Francisco,CA,94016 +294390,Apple Airpods Headphones,1,150.0,2019-11-01 18:24:00,837 Willow St, Portland,OR,97035 +294391,27in FHD Monitor,1,149.99,2019-11-26 18:19:00,696 Walnut St, Dallas,TX,75001 +294392,AA Batteries (4-pack),1,3.84,2019-11-09 18:12:00,124 Lake St, San Francisco,CA,94016 +294393,Bose SoundSport Headphones,1,99.99,2019-11-21 17:47:00,552 Meadow St, Los Angeles,CA,90001 +294394,AA Batteries (4-pack),1,3.84,2019-11-17 19:58:00,853 12th St, Atlanta,GA,30301 +294395,Apple Airpods Headphones,1,150.0,2019-11-03 14:00:00,579 Main St, Boston,MA,02215 +294396,Vareebadd Phone,1,400.0,2019-11-24 19:55:00,640 Jefferson St, Portland,OR,97035 +294397,Wired Headphones,3,11.99,2019-11-21 13:02:00,96 Elm St, Atlanta,GA,30301 +294398,27in FHD Monitor,1,149.99,2019-11-09 21:22:00,858 Lincoln St, Austin,TX,73301 +294399,AA Batteries (4-pack),1,3.84,2019-11-08 22:33:00,446 Dogwood St, Portland,OR,97035 +294400,27in FHD Monitor,2,149.99,2019-11-06 19:16:00,790 12th St, Dallas,TX,75001 +294401,Flatscreen TV,1,300.0,2019-11-13 18:02:00,201 11th St, Boston,MA,02215 +294402,27in 4K Gaming Monitor,1,389.99,2019-11-30 13:34:00,698 13th St, Seattle,WA,98101 +294403,LG Dryer,1,600.0,2019-11-27 13:25:00,642 Cedar St, New York City,NY,10001 +294404,Bose SoundSport Headphones,1,99.99,2019-11-13 10:41:00,731 Highland St, San Francisco,CA,94016 +294405,Wired Headphones,1,11.99,2019-11-29 11:27:00,896 Pine St, San Francisco,CA,94016 +294406,USB-C Charging Cable,1,11.95,2019-11-20 09:36:00,516 Ridge St, Seattle,WA,98101 +294407,Flatscreen TV,1,300.0,2019-11-09 22:55:00,864 Lincoln St, Austin,TX,73301 +294408,Bose SoundSport Headphones,1,99.99,2019-11-29 00:41:00,102 8th St, Seattle,WA,98101 +294409,AAA Batteries (4-pack),1,2.99,2019-11-14 16:27:00,484 6th St, Boston,MA,02215 +294410,Wired Headphones,1,11.99,2019-11-10 12:54:00,109 14th St, Portland,ME,04101 +294411,USB-C Charging Cable,1,11.95,2019-11-23 08:34:00,842 West St, Boston,MA,02215 +294412,iPhone,1,700.0,2019-11-11 14:42:00,287 Lincoln St, Seattle,WA,98101 +294413,USB-C Charging Cable,1,11.95,2019-11-21 11:05:00,379 Dogwood St, Portland,OR,97035 +294414,27in FHD Monitor,1,149.99,2019-11-07 20:53:00,347 Jackson St, Boston,MA,02215 +294415,AAA Batteries (4-pack),2,2.99,2019-11-18 11:35:00,324 West St, Atlanta,GA,30301 +294416,AA Batteries (4-pack),1,3.84,2019-11-16 23:08:00,584 Pine St, Los Angeles,CA,90001 +294417,Wired Headphones,1,11.99,2019-11-13 18:18:00,312 Hill St, Dallas,TX,75001 +294418,USB-C Charging Cable,1,11.95,2019-11-13 19:42:00,909 Cherry St, San Francisco,CA,94016 +294419,AA Batteries (4-pack),1,3.84,2019-11-04 07:49:00,628 Washington St, Los Angeles,CA,90001 +294420,Wired Headphones,1,11.99,2019-11-09 23:01:00,480 Chestnut St, Boston,MA,02215 +294421,USB-C Charging Cable,1,11.95,2019-11-13 01:16:00,482 Madison St, Los Angeles,CA,90001 +294422,Lightning Charging Cable,1,14.95,2019-11-22 14:36:00,833 Jefferson St, Atlanta,GA,30301 +294423,iPhone,1,700.0,2019-11-16 11:42:00,900 Hickory St, Seattle,WA,98101 +294424,20in Monitor,1,109.99,2019-11-12 21:15:00,903 Lake St, Boston,MA,02215 +294425,Bose SoundSport Headphones,1,99.99,2019-11-18 05:40:00,620 Jackson St, Boston,MA,02215 +294426,Flatscreen TV,1,300.0,2019-11-06 09:50:00,732 Pine St, Portland,ME,04101 +294427,27in 4K Gaming Monitor,1,389.99,2019-11-11 01:45:00,961 Main St, Portland,OR,97035 +294428,27in 4K Gaming Monitor,1,389.99,2019-11-13 15:15:00,573 Park St, Portland,OR,97035 +294429,USB-C Charging Cable,1,11.95,2019-11-01 23:21:00,598 Highland St, San Francisco,CA,94016 +294430,Wired Headphones,1,11.99,2019-11-21 13:38:00,83 Sunset St, Atlanta,GA,30301 +294430,Bose SoundSport Headphones,1,99.99,2019-11-21 13:38:00,83 Sunset St, Atlanta,GA,30301 +294431,Apple Airpods Headphones,1,150.0,2019-11-21 17:42:00,541 Hickory St, Los Angeles,CA,90001 +294432,Macbook Pro Laptop,1,1700.0,2019-11-19 06:14:00,959 6th St, Boston,MA,02215 +294433,Wired Headphones,1,11.99,2019-11-23 16:51:00,521 4th St, New York City,NY,10001 +294434,Bose SoundSport Headphones,1,99.99,2019-11-13 14:17:00,632 Chestnut St, Los Angeles,CA,90001 +294435,27in 4K Gaming Monitor,1,389.99,2019-11-06 11:46:00,101 Hickory St, Seattle,WA,98101 +294436,Apple Airpods Headphones,1,150.0,2019-11-29 15:14:00,967 Sunset St, San Francisco,CA,94016 +294437,Apple Airpods Headphones,1,150.0,2019-11-21 09:04:00,895 Park St, Atlanta,GA,30301 +294438,USB-C Charging Cable,1,11.95,2019-11-23 19:09:00,236 Walnut St, New York City,NY,10001 +294439,USB-C Charging Cable,2,11.95,2019-11-06 10:37:00,5 7th St, San Francisco,CA,94016 +294439,Lightning Charging Cable,1,14.95,2019-11-06 10:37:00,5 7th St, San Francisco,CA,94016 +294440,Wired Headphones,1,11.99,2019-11-17 12:11:00,201 Highland St, Los Angeles,CA,90001 +294441,Wired Headphones,1,11.99,2019-12-01 00:52:00,469 Sunset St, San Francisco,CA,94016 +294442,Apple Airpods Headphones,1,150.0,2019-11-05 15:18:00,498 Maple St, Austin,TX,73301 +294443,Wired Headphones,1,11.99,2019-11-20 12:26:00,837 Willow St, San Francisco,CA,94016 +294444,27in 4K Gaming Monitor,1,389.99,2019-11-04 08:26:00,894 4th St, Los Angeles,CA,90001 +294445,Google Phone,1,600.0,2019-11-21 09:32:00,884 Adams St, San Francisco,CA,94016 +294446,LG Washing Machine,1,600.0,2019-11-15 16:04:00,304 Jefferson St, Boston,MA,02215 +294447,AAA Batteries (4-pack),4,2.99,2019-11-09 10:43:00,730 Johnson St, New York City,NY,10001 +294448,34in Ultrawide Monitor,1,379.99,2019-11-10 08:37:00,5 14th St, Boston,MA,02215 +294449,Lightning Charging Cable,1,14.95,2019-11-22 11:54:00,51 2nd St, Boston,MA,02215 +294450,AAA Batteries (4-pack),3,2.99,2019-11-18 13:54:00,800 11th St, San Francisco,CA,94016 +294451,ThinkPad Laptop,1,999.99,2019-11-09 23:04:00,591 13th St, Portland,ME,04101 +294452,Bose SoundSport Headphones,1,99.99,2019-11-30 08:33:00,352 Hickory St, Atlanta,GA,30301 +294453,Google Phone,1,600.0,2019-11-11 07:34:00,946 6th St, Atlanta,GA,30301 +294454,USB-C Charging Cable,1,11.95,2019-11-04 14:41:00,215 5th St, Boston,MA,02215 +294455,AAA Batteries (4-pack),1,2.99,2019-11-23 17:10:00,139 Ridge St, Seattle,WA,98101 +294456,Lightning Charging Cable,1,14.95,2019-11-14 10:41:00,106 South St, Boston,MA,02215 +294457,27in 4K Gaming Monitor,1,389.99,2019-11-12 22:53:00,2 Cedar St, Boston,MA,02215 +294458,Bose SoundSport Headphones,1,99.99,2019-11-20 19:37:00,185 Johnson St, Los Angeles,CA,90001 +294459,iPhone,1,700.0,2019-11-29 16:33:00,226 Church St, New York City,NY,10001 +294460,34in Ultrawide Monitor,1,379.99,2019-11-23 20:55:00,411 Walnut St, San Francisco,CA,94016 +294461,Lightning Charging Cable,1,14.95,2019-11-23 20:57:00,851 Willow St, Los Angeles,CA,90001 +294462,AA Batteries (4-pack),2,3.84,2019-11-24 13:23:00,104 Cedar St, San Francisco,CA,94016 +294463,Apple Airpods Headphones,2,150.0,2019-11-24 07:36:00,605 Hill St, New York City,NY,10001 +294464,AA Batteries (4-pack),1,3.84,2019-11-15 13:06:00,24 2nd St, Seattle,WA,98101 +294465,27in 4K Gaming Monitor,1,389.99,2019-11-01 19:54:00,573 5th St, Seattle,WA,98101 +294466,AA Batteries (4-pack),1,3.84,2019-11-29 20:54:00,158 Cedar St, San Francisco,CA,94016 +294467,Lightning Charging Cable,1,14.95,2019-11-29 01:23:00,59 9th St, San Francisco,CA,94016 +294468,Bose SoundSport Headphones,1,99.99,2019-11-30 11:27:00,932 8th St, San Francisco,CA,94016 +294469,iPhone,1,700.0,2019-11-20 22:29:00,188 Church St, San Francisco,CA,94016 +294470,AA Batteries (4-pack),1,3.84,2019-11-18 18:38:00,378 10th St, New York City,NY,10001 +294471,AAA Batteries (4-pack),1,2.99,2019-11-04 16:37:00,834 Madison St, Los Angeles,CA,90001 +294472,Wired Headphones,1,11.99,2019-11-22 19:12:00,99 Lake St, Portland,OR,97035 +294473,AAA Batteries (4-pack),1,2.99,2019-11-07 16:47:00,462 North St, San Francisco,CA,94016 +294474,iPhone,1,700.0,2019-11-09 09:09:00,673 Jefferson St, Boston,MA,02215 +294474,Lightning Charging Cable,1,14.95,2019-11-09 09:09:00,673 Jefferson St, Boston,MA,02215 +294475,Apple Airpods Headphones,1,150.0,2019-11-13 18:19:00,390 5th St, Los Angeles,CA,90001 +294476,AA Batteries (4-pack),1,3.84,2019-11-02 14:46:00,880 6th St, Portland,OR,97035 +294477,Macbook Pro Laptop,1,1700.0,2019-11-09 22:44:00,297 Park St, San Francisco,CA,94016 +294478,Wired Headphones,1,11.99,2019-11-24 17:19:00,339 North St, Dallas,TX,75001 +294479,ThinkPad Laptop,1,999.99,2019-11-17 07:38:00,448 11th St, Los Angeles,CA,90001 +294480,AAA Batteries (4-pack),1,2.99,2019-11-14 12:44:00,913 Meadow St, Seattle,WA,98101 +294481,Bose SoundSport Headphones,1,99.99,2019-11-15 10:47:00,734 12th St, Seattle,WA,98101 +294482,AAA Batteries (4-pack),1,2.99,2019-11-05 17:32:00,713 Jackson St, Austin,TX,73301 +294483,AAA Batteries (4-pack),1,2.99,2019-11-19 15:02:00,249 4th St, New York City,NY,10001 +294484,Wired Headphones,1,11.99,2019-11-22 20:33:00,155 River St, San Francisco,CA,94016 +294484,Apple Airpods Headphones,1,150.0,2019-11-22 20:33:00,155 River St, San Francisco,CA,94016 +294485,AA Batteries (4-pack),3,3.84,2019-11-05 19:43:00,908 14th St, Austin,TX,73301 +294486,Wired Headphones,1,11.99,2019-11-27 21:23:00,910 Jefferson St, San Francisco,CA,94016 +294487,iPhone,1,700.0,2019-11-27 18:39:00,443 Jackson St, Austin,TX,73301 +294488,ThinkPad Laptop,1,999.99,2019-11-18 13:33:00,617 Cedar St, Los Angeles,CA,90001 +294489,USB-C Charging Cable,1,11.95,2019-11-12 12:55:00,398 Adams St, Seattle,WA,98101 +294490,27in 4K Gaming Monitor,1,389.99,2019-11-22 14:51:00,615 Hickory St, Seattle,WA,98101 +294491,AA Batteries (4-pack),1,3.84,2019-11-23 11:33:00,285 Ridge St, Dallas,TX,75001 +294492,Wired Headphones,1,11.99,2019-11-26 12:03:00,55 9th St, San Francisco,CA,94016 +294493,AA Batteries (4-pack),1,3.84,2019-11-13 11:46:00,42 Dogwood St, San Francisco,CA,94016 +294494,Bose SoundSport Headphones,1,99.99,2019-11-15 19:13:00,620 Jefferson St, Boston,MA,02215 +294495,AA Batteries (4-pack),1,3.84,2019-11-18 19:12:00,840 Pine St, Los Angeles,CA,90001 +294496,20in Monitor,1,109.99,2019-11-19 12:29:00,316 Ridge St, San Francisco,CA,94016 +294497,USB-C Charging Cable,1,11.95,2019-11-30 14:03:00,678 Madison St, Los Angeles,CA,90001 +294498,AA Batteries (4-pack),3,3.84,2019-11-09 21:39:00,476 Willow St, Los Angeles,CA,90001 +294499,34in Ultrawide Monitor,1,379.99,2019-11-16 10:21:00,245 River St, New York City,NY,10001 +294500,Bose SoundSport Headphones,1,99.99,2019-11-04 11:49:00,461 North St, San Francisco,CA,94016 +294501,Lightning Charging Cable,1,14.95,2019-11-14 15:41:00,84 Cedar St, Dallas,TX,75001 +294501,AA Batteries (4-pack),1,3.84,2019-11-14 15:41:00,84 Cedar St, Dallas,TX,75001 +294502,USB-C Charging Cable,1,11.95,2019-11-24 11:38:00,683 Chestnut St, Atlanta,GA,30301 +294503,Bose SoundSport Headphones,1,99.99,2019-11-08 10:27:00,341 1st St, San Francisco,CA,94016 +294504,Apple Airpods Headphones,1,150.0,2019-11-08 20:00:00,27 West St, Dallas,TX,75001 +294505,Wired Headphones,1,11.99,2019-11-15 20:12:00,958 13th St, Austin,TX,73301 +294506,27in FHD Monitor,1,149.99,2019-11-04 19:32:00,369 Hickory St, Boston,MA,02215 +294507,Lightning Charging Cable,1,14.95,2019-11-18 12:30:00,60 South St, Dallas,TX,75001 +294508,AA Batteries (4-pack),1,3.84,2019-11-24 01:02:00,947 Cherry St, Dallas,TX,75001 +294509,Bose SoundSport Headphones,1,99.99,2019-11-06 18:46:00,381 7th St, Dallas,TX,75001 +294510,AA Batteries (4-pack),1,3.84,2019-11-26 20:57:00,320 9th St, Boston,MA,02215 +294511,AA Batteries (4-pack),1,3.84,2019-11-03 09:39:00,790 12th St, Portland,OR,97035 +294512,AAA Batteries (4-pack),3,2.99,2019-11-12 20:11:00,850 Spruce St, San Francisco,CA,94016 +294513,AA Batteries (4-pack),2,3.84,2019-11-24 08:38:00,933 Sunset St, Austin,TX,73301 +294514,Lightning Charging Cable,1,14.95,2019-11-24 17:53:00,857 Ridge St, New York City,NY,10001 +294515,AAA Batteries (4-pack),2,2.99,2019-11-20 07:10:00,68 Center St, Austin,TX,73301 +294516,AA Batteries (4-pack),1,3.84,2019-11-13 17:11:00,475 Jefferson St, Dallas,TX,75001 +294517,Bose SoundSport Headphones,1,99.99,2019-11-02 04:41:00,697 Willow St, Atlanta,GA,30301 +294518,USB-C Charging Cable,1,11.95,2019-11-16 16:37:00,235 Maple St, Los Angeles,CA,90001 +294519,Bose SoundSport Headphones,1,99.99,2019-11-23 14:19:00,138 South St, Los Angeles,CA,90001 +294520,27in FHD Monitor,1,149.99,2019-11-28 11:21:00,691 West St, Boston,MA,02215 +294521,Lightning Charging Cable,1,14.95,2019-11-09 07:51:00,82 1st St, New York City,NY,10001 +294522,20in Monitor,1,109.99,2019-11-05 12:39:00,838 South St, Los Angeles,CA,90001 +294523,AAA Batteries (4-pack),2,2.99,2019-11-26 12:58:00,582 Lakeview St, Dallas,TX,75001 +294524,27in FHD Monitor,1,149.99,2019-11-06 23:06:00,246 Elm St, Boston,MA,02215 +294525,USB-C Charging Cable,1,11.95,2019-11-29 16:09:00,188 Wilson St, Atlanta,GA,30301 +294526,Google Phone,1,600.0,2019-11-29 11:17:00,357 Hickory St, Portland,ME,04101 +294526,Wired Headphones,1,11.99,2019-11-29 11:17:00,357 Hickory St, Portland,ME,04101 +294527,Wired Headphones,1,11.99,2019-11-30 14:57:00,823 Church St, Dallas,TX,75001 +294528,AAA Batteries (4-pack),1,2.99,2019-11-26 15:29:00,370 Dogwood St, Atlanta,GA,30301 +294529,Flatscreen TV,1,300.0,2019-11-04 17:23:00,496 14th St, Boston,MA,02215 +294530,Wired Headphones,1,11.99,2019-11-19 16:00:00,890 Hickory St, Portland,OR,97035 +294531,Lightning Charging Cable,1,14.95,2019-11-04 08:49:00,321 South St, Seattle,WA,98101 +294532,Lightning Charging Cable,1,14.95,2019-11-26 18:14:00,242 7th St, Los Angeles,CA,90001 +294533,AA Batteries (4-pack),1,3.84,2019-11-10 10:02:00,284 Chestnut St, Boston,MA,02215 +294534,AA Batteries (4-pack),1,3.84,2019-11-25 12:29:00,559 Johnson St, Los Angeles,CA,90001 +294535,USB-C Charging Cable,1,11.95,2019-11-05 11:51:00,232 12th St, San Francisco,CA,94016 +294536,Bose SoundSport Headphones,1,99.99,2019-11-14 18:04:00,559 Jackson St, Los Angeles,CA,90001 +294537,AAA Batteries (4-pack),2,2.99,2019-11-09 15:43:00,52 Forest St, San Francisco,CA,94016 +294538,Apple Airpods Headphones,1,150.0,2019-11-29 12:00:00,395 11th St, Seattle,WA,98101 +294539,Apple Airpods Headphones,1,150.0,2019-11-21 11:17:00,971 4th St, New York City,NY,10001 +294540,AA Batteries (4-pack),1,3.84,2019-11-18 08:04:00,8 Park St, Portland,OR,97035 +294541,Macbook Pro Laptop,1,1700.0,2019-11-19 12:38:00,809 1st St, Atlanta,GA,30301 +294542,AAA Batteries (4-pack),3,2.99,2019-11-05 16:01:00,923 6th St, Dallas,TX,75001 +294543,Google Phone,1,600.0,2019-11-13 08:24:00,567 Pine St, New York City,NY,10001 +294544,Macbook Pro Laptop,1,1700.0,2019-11-05 15:10:00,680 Maple St, Los Angeles,CA,90001 +294545,AAA Batteries (4-pack),1,2.99,2019-11-11 08:02:00,40 Forest St, San Francisco,CA,94016 +294546,AAA Batteries (4-pack),2,2.99,2019-11-05 19:36:00,223 Spruce St, San Francisco,CA,94016 +294547,Macbook Pro Laptop,1,1700.0,2019-11-07 16:40:00,691 Jefferson St, Boston,MA,02215 +294548,Apple Airpods Headphones,1,150.0,2019-11-03 13:17:00,681 Ridge St, New York City,NY,10001 +294549,Bose SoundSport Headphones,1,99.99,2019-11-20 17:46:00,430 Jackson St, San Francisco,CA,94016 +294550,34in Ultrawide Monitor,1,379.99,2019-11-02 18:44:00,261 Sunset St, San Francisco,CA,94016 +294551,Macbook Pro Laptop,1,1700.0,2019-11-23 13:34:00,616 Hickory St, Dallas,TX,75001 +294552,AA Batteries (4-pack),1,3.84,2019-11-17 21:24:00,682 Washington St, Austin,TX,73301 +294553,USB-C Charging Cable,1,11.95,2019-11-29 13:52:00,120 South St, Los Angeles,CA,90001 +294554,AA Batteries (4-pack),1,3.84,2019-11-25 13:39:00,508 Lincoln St, New York City,NY,10001 +294555,27in 4K Gaming Monitor,1,389.99,2019-11-06 14:12:00,363 Hickory St, New York City,NY,10001 +294556,Bose SoundSport Headphones,1,99.99,2019-11-18 12:19:00,402 Adams St, Seattle,WA,98101 +294557,Macbook Pro Laptop,1,1700.0,2019-11-28 11:32:00,226 Jefferson St, Boston,MA,02215 +294558,27in 4K Gaming Monitor,1,389.99,2019-11-16 20:31:00,457 5th St, San Francisco,CA,94016 +294559,AAA Batteries (4-pack),1,2.99,2019-11-13 09:26:00,602 Washington St, Seattle,WA,98101 +294560,34in Ultrawide Monitor,1,379.99,2019-11-25 08:03:00,604 Jackson St, San Francisco,CA,94016 +294561,Macbook Pro Laptop,1,1700.0,2019-11-23 21:25:00,357 11th St, Dallas,TX,75001 +294562,AA Batteries (4-pack),2,3.84,2019-11-27 09:38:00,14 Lakeview St, Atlanta,GA,30301 +294563,Wired Headphones,1,11.99,2019-11-04 12:21:00,565 Park St, Austin,TX,73301 +294564,34in Ultrawide Monitor,1,379.99,2019-11-25 11:41:00,192 Lincoln St, San Francisco,CA,94016 +294565,USB-C Charging Cable,1,11.95,2019-11-12 06:13:00,360 Jefferson St, Dallas,TX,75001 +294566,AA Batteries (4-pack),1,3.84,2019-11-18 20:56:00,559 14th St, San Francisco,CA,94016 +294567,USB-C Charging Cable,1,11.95,2019-11-06 15:34:00,988 Wilson St, Seattle,WA,98101 +294568,Apple Airpods Headphones,1,150.0,2019-11-03 00:09:00,126 Washington St, Atlanta,GA,30301 +294569,Wired Headphones,1,11.99,2019-11-27 17:34:00,967 9th St, Dallas,TX,75001 +294570,Bose SoundSport Headphones,1,99.99,2019-11-11 13:19:00,177 Jefferson St, Los Angeles,CA,90001 +294571,Lightning Charging Cable,1,14.95,2019-11-26 06:59:00,133 Hickory St, Portland,OR,97035 +294572,Wired Headphones,1,11.99,2019-11-24 16:09:00,220 Meadow St, San Francisco,CA,94016 +294573,USB-C Charging Cable,1,11.95,2019-11-04 16:59:00,59 1st St, Los Angeles,CA,90001 +294574,Lightning Charging Cable,1,14.95,2019-11-17 12:19:00,359 Dogwood St, San Francisco,CA,94016 +294575,AA Batteries (4-pack),1,3.84,2019-11-06 13:55:00,574 Walnut St, Dallas,TX,75001 +294576,ThinkPad Laptop,1,999.99,2019-11-24 17:57:00,338 Elm St, Boston,MA,02215 +294577,Bose SoundSport Headphones,1,99.99,2019-11-04 10:58:00,592 Adams St, Los Angeles,CA,90001 +294578,USB-C Charging Cable,1,11.95,2019-11-30 16:10:00,172 6th St, Austin,TX,73301 +294579,Apple Airpods Headphones,1,150.0,2019-11-10 06:53:00,101 6th St, San Francisco,CA,94016 +294580,Bose SoundSport Headphones,1,99.99,2019-11-09 14:34:00,913 Jackson St, San Francisco,CA,94016 +294581,AA Batteries (4-pack),1,3.84,2019-11-23 18:29:00,463 Lakeview St, Atlanta,GA,30301 +294582,Flatscreen TV,1,300.0,2019-11-02 21:07:00,76 Walnut St, New York City,NY,10001 +294583,iPhone,1,700.0,2019-11-12 19:38:00,787 4th St, Boston,MA,02215 +294583,Lightning Charging Cable,1,14.95,2019-11-12 19:38:00,787 4th St, Boston,MA,02215 +294584,Macbook Pro Laptop,1,1700.0,2019-11-18 11:16:00,286 Cedar St, San Francisco,CA,94016 +294585,AAA Batteries (4-pack),3,2.99,2019-11-04 10:36:00,301 Spruce St, New York City,NY,10001 +294586,AAA Batteries (4-pack),1,2.99,2019-11-07 21:06:00,676 Church St, New York City,NY,10001 +294587,AAA Batteries (4-pack),1,2.99,2019-11-13 18:38:00,992 South St, Los Angeles,CA,90001 +294588,Bose SoundSport Headphones,1,99.99,2019-11-24 16:20:00,736 13th St, New York City,NY,10001 +294589,Wired Headphones,1,11.99,2019-11-13 18:52:00,253 Madison St, New York City,NY,10001 +294590,AA Batteries (4-pack),1,3.84,2019-11-12 12:32:00,956 Lakeview St, Boston,MA,02215 +294590,Lightning Charging Cable,1,14.95,2019-11-12 12:32:00,956 Lakeview St, Boston,MA,02215 +294591,iPhone,1,700.0,2019-11-01 15:48:00,575 Cedar St, Los Angeles,CA,90001 +294591,Apple Airpods Headphones,1,150.0,2019-11-01 15:48:00,575 Cedar St, Los Angeles,CA,90001 +294592,AAA Batteries (4-pack),1,2.99,2019-11-28 21:57:00,647 4th St, New York City,NY,10001 +294593,USB-C Charging Cable,1,11.95,2019-11-09 15:02:00,201 1st St, Los Angeles,CA,90001 +294594,Apple Airpods Headphones,1,150.0,2019-11-28 04:03:00,557 Jackson St, San Francisco,CA,94016 +294595,USB-C Charging Cable,1,11.95,2019-11-25 22:49:00,918 Ridge St, New York City,NY,10001 +294596,AA Batteries (4-pack),1,3.84,2019-11-11 22:39:00,530 Main St, Portland,OR,97035 +294597,AAA Batteries (4-pack),1,2.99,2019-11-07 19:44:00,544 Park St, New York City,NY,10001 +294598,Google Phone,1,600.0,2019-11-02 12:22:00,283 Jefferson St, Atlanta,GA,30301 +294598,USB-C Charging Cable,1,11.95,2019-11-02 12:22:00,283 Jefferson St, Atlanta,GA,30301 +294599,AA Batteries (4-pack),1,3.84,2019-11-10 17:12:00,982 Highland St, Los Angeles,CA,90001 +294600,iPhone,1,700.0,2019-11-20 16:21:00,660 Meadow St, San Francisco,CA,94016 +294601,AA Batteries (4-pack),1,3.84,2019-11-26 12:48:00,235 12th St, Portland,ME,04101 +294602,Lightning Charging Cable,1,14.95,2019-11-04 20:45:00,395 Elm St, New York City,NY,10001 +294603,Bose SoundSport Headphones,1,99.99,2019-11-28 20:45:00,972 Forest St, San Francisco,CA,94016 +294604,AA Batteries (4-pack),1,3.84,2019-11-26 00:46:00,516 Spruce St, Boston,MA,02215 +294605,AAA Batteries (4-pack),1,2.99,2019-11-16 12:37:00,386 2nd St, Los Angeles,CA,90001 +294606,AAA Batteries (4-pack),1,2.99,2019-11-04 21:08:00,755 2nd St, Los Angeles,CA,90001 +294607,Lightning Charging Cable,1,14.95,2019-11-22 18:54:00,542 2nd St, Atlanta,GA,30301 +294608,iPhone,1,700.0,2019-11-03 11:48:00,923 10th St, New York City,NY,10001 +294609,USB-C Charging Cable,1,11.95,2019-11-09 14:26:00,742 Center St, San Francisco,CA,94016 +294610,USB-C Charging Cable,1,11.95,2019-11-13 17:38:00,158 Forest St, New York City,NY,10001 +294611,Lightning Charging Cable,1,14.95,2019-11-29 15:32:00,896 Chestnut St, New York City,NY,10001 +294612,27in 4K Gaming Monitor,1,389.99,2019-11-03 21:54:00,430 Center St, San Francisco,CA,94016 +294613,Bose SoundSport Headphones,1,99.99,2019-11-04 13:18:00,582 Willow St, Portland,OR,97035 +294614,Apple Airpods Headphones,1,150.0,2019-11-29 11:08:00,513 9th St, Los Angeles,CA,90001 +294615,AA Batteries (4-pack),1,3.84,2019-11-22 18:27:00,215 Highland St, New York City,NY,10001 +294615,34in Ultrawide Monitor,1,379.99,2019-11-22 18:27:00,215 Highland St, New York City,NY,10001 +294616,AA Batteries (4-pack),1,3.84,2019-11-14 00:24:00,971 Madison St, New York City,NY,10001 +294617,ThinkPad Laptop,1,999.99,2019-11-09 23:30:00,632 Lake St, Dallas,TX,75001 +294618,USB-C Charging Cable,1,11.95,2019-11-18 22:17:00,129 Adams St, Boston,MA,02215 +294619,AA Batteries (4-pack),3,3.84,2019-11-08 17:34:00,931 14th St, New York City,NY,10001 +294620,Flatscreen TV,1,300.0,2019-11-09 20:40:00,809 Hill St, Dallas,TX,75001 +294621,Wired Headphones,1,11.99,2019-11-12 15:33:00,323 1st St, Seattle,WA,98101 +294622,AAA Batteries (4-pack),3,2.99,2019-11-25 00:28:00,374 North St, San Francisco,CA,94016 +294623,Google Phone,1,600.0,2019-11-23 12:31:00,868 Sunset St, New York City,NY,10001 +294624,27in FHD Monitor,1,149.99,2019-11-04 07:59:00,712 Madison St, Portland,OR,97035 +294625,Lightning Charging Cable,2,14.95,2019-11-17 01:57:00,319 Willow St, Boston,MA,02215 +294626,USB-C Charging Cable,1,11.95,2019-11-20 11:37:00,464 Park St, San Francisco,CA,94016 +294627,27in FHD Monitor,1,149.99,2019-11-29 20:54:00,227 River St, Los Angeles,CA,90001 +294628,AA Batteries (4-pack),2,3.84,2019-11-21 15:30:00,773 8th St, Los Angeles,CA,90001 +294629,Wired Headphones,1,11.99,2019-12-01 01:54:00,668 Ridge St, San Francisco,CA,94016 +294630,27in FHD Monitor,1,149.99,2019-11-01 21:36:00,945 North St, San Francisco,CA,94016 +294631,27in 4K Gaming Monitor,1,389.99,2019-11-19 09:40:00,61 North St, San Francisco,CA,94016 +294632,iPhone,1,700.0,2019-11-17 06:26:00,18 Church St, Boston,MA,02215 +294633,Lightning Charging Cable,1,14.95,2019-11-08 12:21:00,330 Willow St, Atlanta,GA,30301 +294634,Wired Headphones,1,11.99,2019-11-14 17:35:00,481 Chestnut St, San Francisco,CA,94016 +294635,Wired Headphones,1,11.99,2019-11-06 18:20:00,488 Walnut St, Boston,MA,02215 +294636,USB-C Charging Cable,1,11.95,2019-11-07 23:16:00,158 Meadow St, Portland,OR,97035 +294637,27in 4K Gaming Monitor,1,389.99,2019-11-10 13:20:00,290 Jefferson St, Dallas,TX,75001 +294638,27in 4K Gaming Monitor,1,389.99,2019-11-12 10:57:00,905 Highland St, Dallas,TX,75001 +294639,Flatscreen TV,1,300.0,2019-11-14 08:04:00,725 4th St, Portland,ME,04101 +294640,Lightning Charging Cable,1,14.95,2019-11-16 06:07:00,592 14th St, Los Angeles,CA,90001 +294640,iPhone,1,700.0,2019-11-16 06:07:00,592 14th St, Los Angeles,CA,90001 +294641,Apple Airpods Headphones,1,150.0,2019-11-21 13:56:00,217 Cedar St, San Francisco,CA,94016 +294642,AAA Batteries (4-pack),1,2.99,2019-11-28 20:35:00,804 14th St, Seattle,WA,98101 +294643,USB-C Charging Cable,1,11.95,2019-11-14 16:35:00,77 Cherry St, San Francisco,CA,94016 +294644,Google Phone,1,600.0,2019-11-06 11:36:00,347 10th St, San Francisco,CA,94016 +294645,Flatscreen TV,1,300.0,2019-11-16 17:08:00,11 Willow St, Portland,OR,97035 +294646,USB-C Charging Cable,1,11.95,2019-11-19 19:27:00,845 Maple St, San Francisco,CA,94016 +294647,Lightning Charging Cable,1,14.95,2019-11-10 16:10:00,393 Washington St, New York City,NY,10001 +294648,Lightning Charging Cable,1,14.95,2019-11-08 15:21:00,594 10th St, Los Angeles,CA,90001 +294649,Bose SoundSport Headphones,1,99.99,2019-11-29 16:18:00,364 North St, Los Angeles,CA,90001 +294650,Lightning Charging Cable,1,14.95,2019-11-20 21:36:00,742 Pine St, Boston,MA,02215 +294651,USB-C Charging Cable,1,11.95,2019-11-13 21:06:00,348 8th St, San Francisco,CA,94016 +294652,Flatscreen TV,1,300.0,2019-11-07 11:42:00,389 Meadow St, Los Angeles,CA,90001 +294653,Lightning Charging Cable,1,14.95,2019-11-30 10:49:00,90 14th St, San Francisco,CA,94016 +294654,Macbook Pro Laptop,1,1700.0,2019-11-10 20:19:00,204 River St, Boston,MA,02215 +294655,USB-C Charging Cable,1,11.95,2019-11-21 13:07:00,827 Meadow St, San Francisco,CA,94016 +294656,27in 4K Gaming Monitor,1,389.99,2019-11-06 12:04:00,449 Hill St, New York City,NY,10001 +294657,20in Monitor,1,109.99,2019-11-30 18:04:00,422 Elm St, Dallas,TX,75001 +294658,Wired Headphones,1,11.99,2019-11-23 11:27:00,95 4th St, Atlanta,GA,30301 +294659,Apple Airpods Headphones,1,150.0,2019-11-23 15:43:00,299 11th St, Boston,MA,02215 +294659,Bose SoundSport Headphones,1,99.99,2019-11-23 15:43:00,299 11th St, Boston,MA,02215 +294660,USB-C Charging Cable,1,11.95,2019-11-04 23:05:00,419 Madison St, Los Angeles,CA,90001 +294661,Bose SoundSport Headphones,1,99.99,2019-11-15 12:12:00,392 Maple St, San Francisco,CA,94016 +294662,Lightning Charging Cable,2,14.95,2019-11-30 18:32:00,728 1st St, Portland,OR,97035 +294663,Flatscreen TV,1,300.0,2019-11-12 09:54:00,342 Forest St, Boston,MA,02215 +294664,Lightning Charging Cable,1,14.95,2019-11-30 21:55:00,264 10th St, San Francisco,CA,94016 +294665,Apple Airpods Headphones,1,150.0,2019-11-10 21:36:00,622 5th St, Boston,MA,02215 +294666,Apple Airpods Headphones,1,150.0,2019-11-07 20:46:00,170 7th St, San Francisco,CA,94016 +294667,Wired Headphones,1,11.99,2019-11-18 10:35:00,547 10th St, San Francisco,CA,94016 +294668,USB-C Charging Cable,1,11.95,2019-11-26 13:10:00,136 Jackson St, San Francisco,CA,94016 +294668,20in Monitor,1,109.99,2019-11-26 13:10:00,136 Jackson St, San Francisco,CA,94016 +294669,AAA Batteries (4-pack),1,2.99,2019-11-16 10:56:00,348 Lakeview St, Los Angeles,CA,90001 +294669,Lightning Charging Cable,1,14.95,2019-11-16 10:56:00,348 Lakeview St, Los Angeles,CA,90001 +294670,Bose SoundSport Headphones,1,99.99,2019-11-08 12:00:00,471 Hickory St, Los Angeles,CA,90001 +294671,Google Phone,1,600.0,2019-11-02 19:56:00,445 River St, Portland,OR,97035 +294671,USB-C Charging Cable,1,11.95,2019-11-02 19:56:00,445 River St, Portland,OR,97035 +294672,27in FHD Monitor,1,149.99,2019-11-19 16:30:00,877 Lincoln St, San Francisco,CA,94016 +294673,Lightning Charging Cable,1,14.95,2019-11-07 08:16:00,876 Adams St, Portland,OR,97035 +294674,USB-C Charging Cable,1,11.95,2019-11-04 15:58:00,581 Lake St, Atlanta,GA,30301 +294675,USB-C Charging Cable,1,11.95,2019-11-24 10:27:00,548 Main St, Portland,ME,04101 +294676,Bose SoundSport Headphones,1,99.99,2019-11-05 08:33:00,523 8th St, San Francisco,CA,94016 +294677,Bose SoundSport Headphones,1,99.99,2019-11-13 23:56:00,957 River St, San Francisco,CA,94016 +294678,Flatscreen TV,1,300.0,2019-11-16 08:10:00,673 Hickory St, Austin,TX,73301 +294679,20in Monitor,1,109.99,2019-11-10 11:45:00,231 Adams St, Boston,MA,02215 +294680,USB-C Charging Cable,1,11.95,2019-11-08 13:06:00,977 14th St, Los Angeles,CA,90001 +294681,AAA Batteries (4-pack),1,2.99,2019-11-21 22:43:00,936 4th St, Los Angeles,CA,90001 +294682,Lightning Charging Cable,1,14.95,2019-11-28 20:40:00,388 Forest St, San Francisco,CA,94016 +294683,AAA Batteries (4-pack),3,2.99,2019-11-06 11:09:00,81 Lincoln St, Austin,TX,73301 +294684,AA Batteries (4-pack),1,3.84,2019-11-04 22:21:00,759 1st St, Los Angeles,CA,90001 +294685,AAA Batteries (4-pack),2,2.99,2019-11-27 17:55:00,225 11th St, San Francisco,CA,94016 +294686,Wired Headphones,1,11.99,2019-11-20 20:59:00,429 Washington St, Dallas,TX,75001 +294687,Lightning Charging Cable,1,14.95,2019-11-18 15:03:00,152 Hickory St, Dallas,TX,75001 +294688,AAA Batteries (4-pack),1,2.99,2019-11-21 14:39:00,321 Adams St, Portland,ME,04101 +294689,Lightning Charging Cable,1,14.95,2019-11-26 19:40:00,823 Johnson St, Seattle,WA,98101 +294690,Lightning Charging Cable,1,14.95,2019-11-21 15:48:00,244 Jackson St, New York City,NY,10001 +294691,AA Batteries (4-pack),1,3.84,2019-11-10 10:41:00,176 Lake St, San Francisco,CA,94016 +294692,Lightning Charging Cable,1,14.95,2019-11-10 21:18:00,212 6th St, San Francisco,CA,94016 +294693,Wired Headphones,1,11.99,2019-11-26 11:19:00,992 14th St, San Francisco,CA,94016 +294694,Wired Headphones,1,11.99,2019-11-10 08:19:00,623 Main St, San Francisco,CA,94016 +294695,27in 4K Gaming Monitor,1,389.99,2019-11-11 10:37:00,654 Center St, Los Angeles,CA,90001 +294696,Bose SoundSport Headphones,1,99.99,2019-11-29 21:30:00,542 7th St, Boston,MA,02215 +294697,Wired Headphones,1,11.99,2019-11-13 13:53:00,949 Meadow St, Los Angeles,CA,90001 +294698,ThinkPad Laptop,1,999.99,2019-11-14 15:57:00,902 Jackson St, San Francisco,CA,94016 +294699,AAA Batteries (4-pack),3,2.99,2019-11-05 00:09:00,820 2nd St, Dallas,TX,75001 +294700,Lightning Charging Cable,1,14.95,2019-11-13 11:18:00,687 Main St, Atlanta,GA,30301 +294701,ThinkPad Laptop,1,999.99,2019-11-23 22:32:00,70 Spruce St, New York City,NY,10001 +294702,Apple Airpods Headphones,1,150.0,2019-11-05 11:04:00,606 1st St, Boston,MA,02215 +294703,Wired Headphones,1,11.99,2019-11-19 11:26:00,459 1st St, Boston,MA,02215 +294704,34in Ultrawide Monitor,1,379.99,2019-11-21 10:05:00,440 Cherry St, San Francisco,CA,94016 +294705,Wired Headphones,1,11.99,2019-11-26 11:48:00,21 7th St, Portland,OR,97035 +294706,AAA Batteries (4-pack),1,2.99,2019-11-30 14:07:00,152 Adams St, Atlanta,GA,30301 +294707,Flatscreen TV,1,300.0,2019-11-18 07:35:00,468 Center St, San Francisco,CA,94016 +294708,Lightning Charging Cable,1,14.95,2019-11-25 14:50:00,116 Pine St, New York City,NY,10001 +294709,AAA Batteries (4-pack),1,2.99,2019-11-28 12:54:00,430 10th St, Boston,MA,02215 +294710,Bose SoundSport Headphones,1,99.99,2019-11-11 15:21:00,86 Pine St, Los Angeles,CA,90001 +294711,USB-C Charging Cable,1,11.95,2019-11-08 19:08:00,458 5th St, Atlanta,GA,30301 +294712,Apple Airpods Headphones,1,150.0,2019-11-15 11:58:00,414 Meadow St, Dallas,TX,75001 +294713,Flatscreen TV,1,300.0,2019-11-24 16:02:00,800 12th St, San Francisco,CA,94016 +294714,AA Batteries (4-pack),2,3.84,2019-11-22 05:11:00,155 Lincoln St, Boston,MA,02215 +294715,27in FHD Monitor,1,149.99,2019-11-29 08:33:00,986 Dogwood St, San Francisco,CA,94016 +294716,Bose SoundSport Headphones,1,99.99,2019-11-19 19:09:00,721 Jefferson St, Seattle,WA,98101 +294717,Lightning Charging Cable,1,14.95,2019-11-01 07:45:00,755 Lakeview St, Atlanta,GA,30301 +294718,iPhone,1,700.0,2019-11-06 14:05:00,388 Hickory St, New York City,NY,10001 +294718,Lightning Charging Cable,1,14.95,2019-11-06 14:05:00,388 Hickory St, New York City,NY,10001 +294719,Wired Headphones,1,11.99,2019-11-06 13:52:00,967 West St, Dallas,TX,75001 +294720,iPhone,1,700.0,2019-11-20 10:45:00,480 11th St, Seattle,WA,98101 +294720,ThinkPad Laptop,1,999.99,2019-11-20 10:45:00,480 11th St, Seattle,WA,98101 +294721,AA Batteries (4-pack),2,3.84,2019-11-09 04:23:00,216 14th St, San Francisco,CA,94016 +294722,Lightning Charging Cable,1,14.95,2019-11-20 13:23:00,594 Cedar St, San Francisco,CA,94016 +294723,Flatscreen TV,1,300.0,2019-11-19 08:40:00,243 14th St, Boston,MA,02215 +294724,Wired Headphones,1,11.99,2019-11-20 15:51:00,273 Maple St, New York City,NY,10001 +294725,Wired Headphones,1,11.99,2019-11-10 21:12:00,796 Main St, Seattle,WA,98101 +294726,USB-C Charging Cable,1,11.95,2019-11-08 19:34:00,679 Willow St, Boston,MA,02215 +294727,20in Monitor,1,109.99,2019-11-25 02:10:00,583 4th St, Los Angeles,CA,90001 +294728,AA Batteries (4-pack),1,3.84,2019-11-18 14:13:00,97 1st St, Atlanta,GA,30301 +294729,AA Batteries (4-pack),1,3.84,2019-11-30 19:46:00,673 Cherry St, New York City,NY,10001 +294730,27in 4K Gaming Monitor,1,389.99,2019-11-10 13:07:00,977 Spruce St, San Francisco,CA,94016 +294731,Vareebadd Phone,1,400.0,2019-11-17 06:52:00,978 10th St, New York City,NY,10001 +294732,AAA Batteries (4-pack),4,2.99,2019-11-18 11:40:00,890 Chestnut St, Dallas,TX,75001 +294732,Apple Airpods Headphones,1,150.0,2019-11-18 11:40:00,890 Chestnut St, Dallas,TX,75001 +294733,Bose SoundSport Headphones,1,99.99,2019-11-01 21:21:00,834 Wilson St, San Francisco,CA,94016 +294734,Apple Airpods Headphones,1,150.0,2019-11-07 12:21:00,922 Lincoln St, Los Angeles,CA,90001 +294735,Lightning Charging Cable,1,14.95,2019-11-09 03:01:00,815 10th St, Dallas,TX,75001 +294736,Apple Airpods Headphones,1,150.0,2019-11-30 14:47:00,708 North St, Los Angeles,CA,90001 +294737,AA Batteries (4-pack),1,3.84,2019-11-06 20:45:00,93 Washington St, Los Angeles,CA,90001 +294737,Lightning Charging Cable,1,14.95,2019-11-06 20:45:00,93 Washington St, Los Angeles,CA,90001 +294738,27in FHD Monitor,1,149.99,2019-11-02 23:31:00,158 8th St, San Francisco,CA,94016 +294739,AAA Batteries (4-pack),1,2.99,2019-11-28 22:14:00,426 Center St, Boston,MA,02215 +294740,AA Batteries (4-pack),1,3.84,2019-11-24 12:31:00,429 11th St, Portland,OR,97035 +294741,AA Batteries (4-pack),1,3.84,2019-11-28 20:44:00,841 7th St, New York City,NY,10001 +294742,Lightning Charging Cable,1,14.95,2019-11-23 13:52:00,604 Cherry St, Boston,MA,02215 +294743,27in FHD Monitor,1,149.99,2019-11-09 13:22:00,585 South St, New York City,NY,10001 +294744,Bose SoundSport Headphones,1,99.99,2019-11-06 14:32:00,685 West St, New York City,NY,10001 +294745,AAA Batteries (4-pack),1,2.99,2019-11-12 08:10:00,696 Forest St, Seattle,WA,98101 +294746,Google Phone,1,600.0,2019-11-24 17:14:00,869 Madison St, Seattle,WA,98101 +294747,ThinkPad Laptop,1,999.99,2019-11-14 10:07:00,778 7th St, Los Angeles,CA,90001 +294748,AA Batteries (4-pack),4,3.84,2019-11-14 14:49:00,788 Maple St, San Francisco,CA,94016 +294749,Wired Headphones,1,11.99,2019-11-25 21:28:00,994 Jackson St, San Francisco,CA,94016 +294750,27in 4K Gaming Monitor,1,389.99,2019-11-10 11:53:00,240 Walnut St, San Francisco,CA,94016 +294751,Macbook Pro Laptop,1,1700.0,2019-11-11 12:30:00,251 Hill St, Los Angeles,CA,90001 +294752,AA Batteries (4-pack),1,3.84,2019-11-12 13:35:00,367 Lake St, New York City,NY,10001 +294753,AAA Batteries (4-pack),1,2.99,2019-11-16 12:19:00,834 Washington St, Boston,MA,02215 +294754,Wired Headphones,1,11.99,2019-11-26 20:35:00,211 9th St, Boston,MA,02215 +294755,AAA Batteries (4-pack),1,2.99,2019-11-17 20:54:00,213 14th St, Austin,TX,73301 +294756,Apple Airpods Headphones,1,150.0,2019-11-09 23:15:00,474 Adams St, New York City,NY,10001 +294757,AA Batteries (4-pack),1,3.84,2019-11-21 11:39:00,132 Washington St, Los Angeles,CA,90001 +294758,USB-C Charging Cable,2,11.95,2019-11-11 20:27:00,681 Cherry St, San Francisco,CA,94016 +294759,AA Batteries (4-pack),1,3.84,2019-11-20 09:41:00,209 Jackson St, Los Angeles,CA,90001 +294760,AAA Batteries (4-pack),3,2.99,2019-11-07 22:37:00,421 7th St, Seattle,WA,98101 +294761,Wired Headphones,1,11.99,2019-11-05 12:01:00,574 Hickory St, Seattle,WA,98101 +294762,AAA Batteries (4-pack),1,2.99,2019-11-05 13:41:00,860 Elm St, Los Angeles,CA,90001 +294763,AAA Batteries (4-pack),1,2.99,2019-11-09 07:47:00,333 North St, Los Angeles,CA,90001 +294764,Bose SoundSport Headphones,1,99.99,2019-11-21 23:37:00,266 Center St, Dallas,TX,75001 +294765,Bose SoundSport Headphones,1,99.99,2019-11-25 11:16:00,344 Meadow St, San Francisco,CA,94016 +294766,AAA Batteries (4-pack),2,2.99,2019-11-15 11:02:00,966 Jefferson St, Los Angeles,CA,90001 +294767,Lightning Charging Cable,1,14.95,2019-11-13 21:07:00,924 West St, Boston,MA,02215 +294768,AA Batteries (4-pack),1,3.84,2019-11-15 22:49:00,1 Spruce St, Boston,MA,02215 +294769,USB-C Charging Cable,1,11.95,2019-11-01 13:19:00,154 River St, Dallas,TX,75001 +294770,Lightning Charging Cable,1,14.95,2019-11-06 23:30:00,238 2nd St, Dallas,TX,75001 +294771,Apple Airpods Headphones,1,150.0,2019-11-01 21:31:00,983 Meadow St, Austin,TX,73301 +294772,Bose SoundSport Headphones,1,99.99,2019-11-17 16:50:00,7 12th St, Boston,MA,02215 +294773,Lightning Charging Cable,1,14.95,2019-11-10 13:50:00,241 Hickory St, San Francisco,CA,94016 +294774,AA Batteries (4-pack),1,3.84,2019-11-07 22:14:00,699 North St, Boston,MA,02215 +294775,Wired Headphones,1,11.99,2019-11-07 18:01:00,87 1st St, San Francisco,CA,94016 +294776,Google Phone,1,600.0,2019-11-23 19:11:00,758 Center St, Boston,MA,02215 +294777,USB-C Charging Cable,1,11.95,2019-11-17 12:09:00,479 11th St, Atlanta,GA,30301 +294778,USB-C Charging Cable,1,11.95,2019-11-26 19:45:00,233 12th St, Los Angeles,CA,90001 +294779,AAA Batteries (4-pack),1,2.99,2019-11-10 16:41:00,105 Lake St, Los Angeles,CA,90001 +294780,AAA Batteries (4-pack),1,2.99,2019-11-04 13:20:00,824 River St, New York City,NY,10001 +294781,ThinkPad Laptop,1,999.99,2019-11-06 20:57:00,614 Forest St, Dallas,TX,75001 +294782,Apple Airpods Headphones,1,150.0,2019-11-14 22:23:00,798 Sunset St, Boston,MA,02215 +294783,Wired Headphones,1,11.99,2019-11-17 06:26:00,127 Church St, Los Angeles,CA,90001 +294784,Bose SoundSport Headphones,1,99.99,2019-11-01 18:28:00,419 1st St, Los Angeles,CA,90001 +294785,Lightning Charging Cable,1,14.95,2019-11-04 19:15:00,152 Willow St, Atlanta,GA,30301 +294786,Apple Airpods Headphones,1,150.0,2019-11-09 10:01:00,873 Pine St, Seattle,WA,98101 +294787,Macbook Pro Laptop,1,1700.0,2019-11-19 15:57:00,992 Maple St, Austin,TX,73301 +294788,AA Batteries (4-pack),1,3.84,2019-11-22 11:31:00,528 Chestnut St, Atlanta,GA,30301 +294789,Lightning Charging Cable,1,14.95,2019-11-15 13:21:00,548 Sunset St, Dallas,TX,75001 +294790,Google Phone,1,600.0,2019-11-25 09:47:00,841 Ridge St, Boston,MA,02215 +294791,AAA Batteries (4-pack),1,2.99,2019-11-28 13:43:00,45 12th St, Atlanta,GA,30301 +294792,Lightning Charging Cable,1,14.95,2019-11-19 21:32:00,316 Johnson St, Los Angeles,CA,90001 +294793,Apple Airpods Headphones,1,150.0,2019-11-02 14:04:00,520 5th St, Seattle,WA,98101 +294794,Flatscreen TV,1,300.0,2019-11-05 14:25:00,973 Cherry St, New York City,NY,10001 +294795,AA Batteries (4-pack),1,3.84,2019-11-30 23:04:00,268 Johnson St, Seattle,WA,98101 +294796,iPhone,1,700.0,2019-11-12 06:48:00,393 4th St, San Francisco,CA,94016 +294796,Lightning Charging Cable,1,14.95,2019-11-12 06:48:00,393 4th St, San Francisco,CA,94016 +294797,Bose SoundSport Headphones,1,99.99,2019-11-05 18:18:00,217 Lakeview St, San Francisco,CA,94016 +294798,27in FHD Monitor,1,149.99,2019-11-29 19:29:00,542 Adams St, Portland,OR,97035 +294799,AAA Batteries (4-pack),1,2.99,2019-11-10 12:43:00,289 South St, Seattle,WA,98101 +294800,AAA Batteries (4-pack),3,2.99,2019-11-15 12:29:00,466 Jefferson St, San Francisco,CA,94016 +294801,AA Batteries (4-pack),2,3.84,2019-11-04 06:48:00,707 Lincoln St, Boston,MA,02215 +294802,Apple Airpods Headphones,1,150.0,2019-11-12 10:34:00,237 10th St, San Francisco,CA,94016 +294803,iPhone,1,700.0,2019-11-27 20:56:00,769 Meadow St, Austin,TX,73301 +294804,Apple Airpods Headphones,1,150.0,2019-11-08 14:34:00,35 Washington St, Dallas,TX,75001 +294805,AA Batteries (4-pack),1,3.84,2019-11-08 19:56:00,714 Cedar St, San Francisco,CA,94016 +294806,Apple Airpods Headphones,1,150.0,2019-11-07 18:22:00,994 Elm St, Los Angeles,CA,90001 +294807,Apple Airpods Headphones,1,150.0,2019-11-04 18:57:00,768 Johnson St, New York City,NY,10001 +294808,AA Batteries (4-pack),1,3.84,2019-11-26 10:42:00,725 Lakeview St, San Francisco,CA,94016 +294809,AAA Batteries (4-pack),1,2.99,2019-11-28 15:31:00,334 13th St, Atlanta,GA,30301 +294810,ThinkPad Laptop,1,999.99,2019-11-15 12:40:00,739 1st St, Portland,OR,97035 +294811,Wired Headphones,1,11.99,2019-11-22 14:11:00,911 Chestnut St, San Francisco,CA,94016 +294811,Bose SoundSport Headphones,1,99.99,2019-11-22 14:11:00,911 Chestnut St, San Francisco,CA,94016 +294812,Apple Airpods Headphones,1,150.0,2019-11-21 14:06:00,180 11th St, Portland,OR,97035 +294813,Apple Airpods Headphones,1,150.0,2019-11-15 12:58:00,618 Maple St, Seattle,WA,98101 +294814,27in 4K Gaming Monitor,1,389.99,2019-11-24 16:02:00,206 Wilson St, New York City,NY,10001 +294815,AAA Batteries (4-pack),1,2.99,2019-11-20 09:00:00,53 West St, Los Angeles,CA,90001 +294816,Wired Headphones,1,11.99,2019-11-07 15:37:00,597 1st St, New York City,NY,10001 +294817,Bose SoundSport Headphones,1,99.99,2019-11-19 20:05:00,756 Chestnut St, Seattle,WA,98101 +294818,Lightning Charging Cable,1,14.95,2019-11-21 18:01:00,860 Ridge St, Boston,MA,02215 +294819,Lightning Charging Cable,1,14.95,2019-11-24 18:52:00,636 Elm St, San Francisco,CA,94016 +294820,ThinkPad Laptop,1,999.99,2019-11-07 14:20:00,733 11th St, New York City,NY,10001 +294821,AAA Batteries (4-pack),1,2.99,2019-11-26 09:51:00,563 River St, San Francisco,CA,94016 +294822,AAA Batteries (4-pack),5,2.99,2019-11-09 12:18:00,733 Forest St, San Francisco,CA,94016 +294823,AA Batteries (4-pack),1,3.84,2019-11-13 15:57:00,874 12th St, Austin,TX,73301 +294824,Apple Airpods Headphones,1,150.0,2019-11-02 11:21:00,435 Jackson St, Austin,TX,73301 +294825,AA Batteries (4-pack),1,3.84,2019-11-02 11:26:00,315 Sunset St, Atlanta,GA,30301 +294826,Lightning Charging Cable,1,14.95,2019-11-04 17:58:00,825 Jackson St, New York City,NY,10001 +294827,Lightning Charging Cable,1,14.95,2019-11-05 20:19:00,973 Hill St, New York City,NY,10001 +294828,iPhone,1,700.0,2019-11-14 19:57:00,547 West St, Portland,OR,97035 +294829,Lightning Charging Cable,1,14.95,2019-11-06 10:35:00,158 6th St, Los Angeles,CA,90001 +294830,iPhone,1,700.0,2019-11-08 13:05:00,385 9th St, Los Angeles,CA,90001 +294830,Lightning Charging Cable,1,14.95,2019-11-08 13:05:00,385 9th St, Los Angeles,CA,90001 +294830,Apple Airpods Headphones,1,150.0,2019-11-08 13:05:00,385 9th St, Los Angeles,CA,90001 +294831,AAA Batteries (4-pack),1,2.99,2019-11-11 13:53:00,493 Lincoln St, Los Angeles,CA,90001 +294832,Macbook Pro Laptop,1,1700.0,2019-11-24 09:45:00,303 9th St, Seattle,WA,98101 +294832,34in Ultrawide Monitor,1,379.99,2019-11-24 09:45:00,303 9th St, Seattle,WA,98101 +294833,Lightning Charging Cable,1,14.95,2019-11-14 19:49:00,293 9th St, New York City,NY,10001 +294834,AA Batteries (4-pack),1,3.84,2019-11-23 10:05:00,833 Meadow St, Los Angeles,CA,90001 +294835,AA Batteries (4-pack),1,3.84,2019-11-25 12:04:00,301 Willow St, Seattle,WA,98101 +294836,Lightning Charging Cable,1,14.95,2019-11-20 07:44:00,150 Forest St, Dallas,TX,75001 +294837,Wired Headphones,1,11.99,2019-11-27 12:48:00,178 Main St, Los Angeles,CA,90001 +294838,iPhone,1,700.0,2019-11-02 00:48:00,107 7th St, Seattle,WA,98101 +294839,Apple Airpods Headphones,1,150.0,2019-11-09 21:21:00,283 Forest St, Austin,TX,73301 +294840,Lightning Charging Cable,1,14.95,2019-11-04 04:33:00,383 Lakeview St, Boston,MA,02215 +294840,USB-C Charging Cable,1,11.95,2019-11-04 04:33:00,383 Lakeview St, Boston,MA,02215 +294841,Lightning Charging Cable,1,14.95,2019-11-08 14:31:00,117 River St, Los Angeles,CA,90001 +294842,Flatscreen TV,1,300.0,2019-11-10 08:13:00,12 Lake St, Seattle,WA,98101 +294843,USB-C Charging Cable,1,11.95,2019-11-18 12:04:00,313 Washington St, San Francisco,CA,94016 +294844,ThinkPad Laptop,1,999.99,2019-11-24 20:35:00,475 Jefferson St, Atlanta,GA,30301 +294845,Lightning Charging Cable,1,14.95,2019-11-10 21:36:00,290 Main St, Austin,TX,73301 +294846,Apple Airpods Headphones,1,150.0,2019-11-18 13:02:00,650 8th St, Austin,TX,73301 +294847,Wired Headphones,1,11.99,2019-11-29 18:10:00,329 Chestnut St, Dallas,TX,75001 +294848,USB-C Charging Cable,1,11.95,2019-11-10 18:51:00,88 Ridge St, Dallas,TX,75001 +294849,Wired Headphones,1,11.99,2019-11-04 16:44:00,19 Hickory St, Boston,MA,02215 +294850,27in 4K Gaming Monitor,1,389.99,2019-11-16 22:03:00,926 Wilson St, San Francisco,CA,94016 +294851,Lightning Charging Cable,1,14.95,2019-11-04 13:03:00,54 Washington St, Los Angeles,CA,90001 +294852,27in FHD Monitor,1,149.99,2019-11-04 10:01:00,593 6th St, Portland,OR,97035 +294853,Lightning Charging Cable,1,14.95,2019-11-27 17:57:00,939 Main St, New York City,NY,10001 +294854,AA Batteries (4-pack),2,3.84,2019-11-05 02:53:00,788 5th St, San Francisco,CA,94016 +294855,Lightning Charging Cable,1,14.95,2019-11-21 10:59:00,559 Center St, Atlanta,GA,30301 +294856,27in 4K Gaming Monitor,1,389.99,2019-11-02 20:04:00,227 Center St, Seattle,WA,98101 +294857,USB-C Charging Cable,1,11.95,2019-11-13 09:40:00,980 Walnut St, Atlanta,GA,30301 +294858,AAA Batteries (4-pack),1,2.99,2019-11-03 12:05:00,983 4th St, Portland,OR,97035 +294859,USB-C Charging Cable,1,11.95,2019-11-03 09:29:00,73 Hickory St, Atlanta,GA,30301 +294860,Bose SoundSport Headphones,1,99.99,2019-11-04 12:06:00,921 11th St, Boston,MA,02215 +294861,Bose SoundSport Headphones,1,99.99,2019-11-04 10:50:00,845 Chestnut St, Atlanta,GA,30301 +294862,27in FHD Monitor,1,149.99,2019-11-19 16:51:00,126 12th St, Portland,OR,97035 +294862,AA Batteries (4-pack),1,3.84,2019-11-19 16:51:00,126 12th St, Portland,OR,97035 +294863,Apple Airpods Headphones,1,150.0,2019-11-25 09:35:00,301 Madison St, Boston,MA,02215 +294864,AA Batteries (4-pack),1,3.84,2019-11-14 20:17:00,272 Maple St, Boston,MA,02215 +294865,AAA Batteries (4-pack),2,2.99,2019-11-12 22:36:00,740 4th St, Portland,OR,97035 +294866,AA Batteries (4-pack),2,3.84,2019-11-26 19:49:00,216 Wilson St, Los Angeles,CA,90001 +294867,Lightning Charging Cable,1,14.95,2019-11-03 20:39:00,991 Lake St, San Francisco,CA,94016 +294868,Apple Airpods Headphones,1,150.0,2019-11-08 09:25:00,21 Forest St, Portland,OR,97035 +294869,USB-C Charging Cable,1,11.95,2019-11-08 16:40:00,83 South St, New York City,NY,10001 +294870,AA Batteries (4-pack),1,3.84,2019-11-17 10:17:00,304 Chestnut St, Dallas,TX,75001 +294871,AA Batteries (4-pack),2,3.84,2019-11-10 01:29:00,79 14th St, Seattle,WA,98101 +294872,USB-C Charging Cable,1,11.95,2019-11-29 16:09:00,667 River St, Los Angeles,CA,90001 +294873,Flatscreen TV,1,300.0,2019-11-06 16:21:00,824 Church St, San Francisco,CA,94016 +294874,AAA Batteries (4-pack),1,2.99,2019-11-01 10:10:00,236 Walnut St, Atlanta,GA,30301 +294875,Macbook Pro Laptop,1,1700.0,2019-11-26 23:44:00,117 12th St, Boston,MA,02215 +294876,Lightning Charging Cable,1,14.95,2019-11-22 10:22:00,636 Dogwood St, Austin,TX,73301 +294877,34in Ultrawide Monitor,1,379.99,2019-11-14 21:42:00,64 1st St, Seattle,WA,98101 +294878,Flatscreen TV,1,300.0,2019-11-13 16:46:00,482 9th St, Los Angeles,CA,90001 +294879,Lightning Charging Cable,1,14.95,2019-11-08 10:28:00,508 Hill St, Boston,MA,02215 +294880,Lightning Charging Cable,1,14.95,2019-11-29 23:46:00,988 Wilson St, New York City,NY,10001 +294881,AAA Batteries (4-pack),1,2.99,2019-11-30 16:59:00,437 Lakeview St, San Francisco,CA,94016 +294882,AAA Batteries (4-pack),2,2.99,2019-11-15 09:19:00,244 Adams St, Portland,OR,97035 +294883,27in 4K Gaming Monitor,1,389.99,2019-11-28 15:19:00,928 14th St, New York City,NY,10001 +294884,AAA Batteries (4-pack),1,2.99,2019-11-05 18:06:00,861 Cherry St, Seattle,WA,98101 +294885,iPhone,1,700.0,2019-11-09 13:59:00,970 Highland St, New York City,NY,10001 +294885,Apple Airpods Headphones,1,150.0,2019-11-09 13:59:00,970 Highland St, New York City,NY,10001 +294886,Apple Airpods Headphones,1,150.0,2019-11-04 23:40:00,763 Lakeview St, San Francisco,CA,94016 +294887,34in Ultrawide Monitor,1,379.99,2019-11-29 18:58:00,973 Forest St, New York City,NY,10001 +294888,USB-C Charging Cable,1,11.95,2019-11-28 11:40:00,910 Johnson St, San Francisco,CA,94016 +294889,ThinkPad Laptop,1,999.99,2019-11-03 14:10:00,826 1st St, Los Angeles,CA,90001 +294890,Wired Headphones,1,11.99,2019-11-19 11:28:00,240 Cherry St, San Francisco,CA,94016 +294891,Bose SoundSport Headphones,1,99.99,2019-11-10 23:51:00,97 11th St, Los Angeles,CA,90001 +294892,Lightning Charging Cable,1,14.95,2019-11-05 14:36:00,182 Lake St, Boston,MA,02215 +294893,Lightning Charging Cable,1,14.95,2019-11-06 13:30:00,870 Cherry St, Dallas,TX,75001 +294894,Lightning Charging Cable,1,14.95,2019-11-30 08:42:00,605 6th St, Los Angeles,CA,90001 +294895,USB-C Charging Cable,1,11.95,2019-11-24 12:16:00,212 Jackson St, Seattle,WA,98101 +294896,Flatscreen TV,1,300.0,2019-11-12 09:13:00,337 Pine St, New York City,NY,10001 +294897,AAA Batteries (4-pack),2,2.99,2019-11-30 17:55:00,957 Main St, Boston,MA,02215 +294898,Apple Airpods Headphones,1,150.0,2019-11-06 19:20:00,830 11th St, New York City,NY,10001 +294899,Google Phone,1,600.0,2019-11-16 17:05:00,365 Spruce St, San Francisco,CA,94016 +294900,AAA Batteries (4-pack),2,2.99,2019-11-11 00:23:00,455 Johnson St, Los Angeles,CA,90001 +294901,Lightning Charging Cable,1,14.95,2019-11-12 15:00:00,281 Sunset St, Portland,OR,97035 +294902,Wired Headphones,1,11.99,2019-11-28 15:26:00,119 Cedar St, Seattle,WA,98101 +294903,27in 4K Gaming Monitor,1,389.99,2019-11-22 23:34:00,30 8th St, Atlanta,GA,30301 +294904,Apple Airpods Headphones,1,150.0,2019-11-25 20:05:00,897 7th St, Los Angeles,CA,90001 +294905,USB-C Charging Cable,1,11.95,2019-11-12 20:01:00,754 Wilson St, New York City,NY,10001 +294906,iPhone,1,700.0,2019-11-24 20:04:00,242 Willow St, Portland,OR,97035 +294906,Lightning Charging Cable,1,14.95,2019-11-24 20:04:00,242 Willow St, Portland,OR,97035 +294907,iPhone,1,700.0,2019-11-25 14:04:00,211 6th St, New York City,NY,10001 +294908,USB-C Charging Cable,1,11.95,2019-11-07 11:45:00,902 Pine St, Dallas,TX,75001 +294909,Lightning Charging Cable,1,14.95,2019-11-08 14:41:00,834 Adams St, Boston,MA,02215 +294910,AAA Batteries (4-pack),2,2.99,2019-11-03 15:16:00,725 12th St, San Francisco,CA,94016 +294911,Lightning Charging Cable,1,14.95,2019-11-08 21:42:00,425 Sunset St, San Francisco,CA,94016 +294912,Lightning Charging Cable,1,14.95,2019-11-14 15:01:00,799 Madison St, Dallas,TX,75001 +294913,USB-C Charging Cable,1,11.95,2019-11-11 12:25:00,982 Forest St, San Francisco,CA,94016 +294914,Wired Headphones,1,11.99,2019-11-29 20:35:00,761 Church St, Dallas,TX,75001 +294915,27in FHD Monitor,1,149.99,2019-11-25 11:58:00,485 Main St, New York City,NY,10001 +294916,USB-C Charging Cable,1,11.95,2019-11-11 02:26:00,924 West St, Boston,MA,02215 +294917,USB-C Charging Cable,1,11.95,2019-11-19 13:32:00,943 Meadow St, San Francisco,CA,94016 +294918,USB-C Charging Cable,1,11.95,2019-11-21 18:54:00,796 Adams St, Dallas,TX,75001 +294919,USB-C Charging Cable,1,11.95,2019-11-29 18:58:00,598 Ridge St, San Francisco,CA,94016 +294920,Bose SoundSport Headphones,1,99.99,2019-11-15 10:10:00,734 Jefferson St, San Francisco,CA,94016 +294921,Lightning Charging Cable,1,14.95,2019-11-08 16:07:00,481 Elm St, New York City,NY,10001 +294922,AAA Batteries (4-pack),1,2.99,2019-11-22 12:57:00,64 Cherry St, Boston,MA,02215 +294923,AA Batteries (4-pack),5,3.84,2019-11-19 21:18:00,814 Hickory St, Los Angeles,CA,90001 +294924,Apple Airpods Headphones,1,150.0,2019-11-04 11:04:00,876 River St, Dallas,TX,75001 +294925,Lightning Charging Cable,1,14.95,2019-11-19 19:12:00,741 Willow St, Seattle,WA,98101 +294926,AAA Batteries (4-pack),1,2.99,2019-11-09 22:38:00,211 Lakeview St, Portland,OR,97035 +294927,Google Phone,1,600.0,2019-11-12 21:29:00,564 Chestnut St, Seattle,WA,98101 +294928,27in FHD Monitor,1,149.99,2019-11-19 17:14:00,2 5th St, Boston,MA,02215 +294929,AA Batteries (4-pack),1,3.84,2019-11-23 05:34:00,213 Ridge St, San Francisco,CA,94016 +294930,AAA Batteries (4-pack),1,2.99,2019-11-10 22:05:00,790 Lakeview St, New York City,NY,10001 +294931,20in Monitor,1,109.99,2019-11-22 11:36:00,118 6th St, New York City,NY,10001 +294932,ThinkPad Laptop,1,999.99,2019-11-06 08:58:00,626 Church St, New York City,NY,10001 +294933,Bose SoundSport Headphones,1,99.99,2019-11-19 23:04:00,759 Spruce St, New York City,NY,10001 +294934,AA Batteries (4-pack),1,3.84,2019-11-09 11:10:00,850 Main St, Los Angeles,CA,90001 +294935,Wired Headphones,1,11.99,2019-11-08 20:27:00,791 Hickory St, San Francisco,CA,94016 +294936,AA Batteries (4-pack),1,3.84,2019-11-01 21:45:00,260 Forest St, Atlanta,GA,30301 +294937,20in Monitor,1,109.99,2019-11-29 21:36:00,206 7th St, Seattle,WA,98101 +294938,Bose SoundSport Headphones,1,99.99,2019-11-09 15:05:00,148 5th St, New York City,NY,10001 +294939,AAA Batteries (4-pack),1,2.99,2019-11-04 11:16:00,544 5th St, Boston,MA,02215 +294940,Flatscreen TV,1,300.0,2019-11-11 10:03:00,650 Spruce St, Atlanta,GA,30301 +294941,Wired Headphones,1,11.99,2019-11-20 20:51:00,600 West St, Portland,OR,97035 +294942,AA Batteries (4-pack),2,3.84,2019-11-21 01:01:00,104 West St, Los Angeles,CA,90001 +294943,AA Batteries (4-pack),1,3.84,2019-11-30 19:56:00,101 13th St, Boston,MA,02215 +294944,20in Monitor,1,109.99,2019-11-05 18:03:00,132 Forest St, Portland,OR,97035 +294945,iPhone,1,700.0,2019-11-15 19:19:00,492 Washington St, Boston,MA,02215 +294946,AA Batteries (4-pack),1,3.84,2019-11-22 08:47:00,363 Lakeview St, San Francisco,CA,94016 +294947,27in FHD Monitor,1,149.99,2019-11-08 12:42:00,626 9th St, Seattle,WA,98101 +294948,AA Batteries (4-pack),1,3.84,2019-11-01 21:00:00,659 Ridge St, San Francisco,CA,94016 +294949,Wired Headphones,1,11.99,2019-11-12 19:35:00,695 Walnut St, Austin,TX,73301 +294950,Lightning Charging Cable,1,14.95,2019-11-21 13:25:00,589 Jackson St, Dallas,TX,75001 +294951,Lightning Charging Cable,1,14.95,2019-11-20 18:08:00,74 14th St, New York City,NY,10001 +294952,iPhone,1,700.0,2019-11-22 16:14:00,176 12th St, San Francisco,CA,94016 +294953,34in Ultrawide Monitor,1,379.99,2019-11-22 01:32:00,827 Park St, Los Angeles,CA,90001 +294954,AAA Batteries (4-pack),2,2.99,2019-11-11 11:20:00,957 Chestnut St, Seattle,WA,98101 +294955,20in Monitor,1,109.99,2019-11-13 19:03:00,926 Chestnut St, Seattle,WA,98101 +294956,USB-C Charging Cable,1,11.95,2019-11-06 16:14:00,44 Spruce St, Atlanta,GA,30301 +294957,Bose SoundSport Headphones,1,99.99,2019-11-23 23:46:00,663 Willow St, Seattle,WA,98101 +294958,Wired Headphones,1,11.99,2019-11-04 18:42:00,137 River St, San Francisco,CA,94016 +294959,Wired Headphones,1,11.99,2019-11-09 15:11:00,716 1st St, Boston,MA,02215 +294960,AA Batteries (4-pack),1,3.84,2019-11-27 13:11:00,751 South St, New York City,NY,10001 +294961,27in FHD Monitor,1,149.99,2019-11-07 19:37:00,551 Jackson St, Los Angeles,CA,90001 +294962,27in 4K Gaming Monitor,1,389.99,2019-11-03 16:59:00,736 Spruce St, Seattle,WA,98101 +294963,iPhone,1,700.0,2019-11-01 16:57:00,916 Willow St, Portland,OR,97035 +294964,27in FHD Monitor,1,149.99,2019-11-25 11:24:00,2 Church St, San Francisco,CA,94016 +294965,AA Batteries (4-pack),1,3.84,2019-11-11 10:59:00,391 Cedar St, San Francisco,CA,94016 +294966,Bose SoundSport Headphones,1,99.99,2019-11-27 14:30:00,515 1st St, Dallas,TX,75001 +294967,Google Phone,1,600.0,2019-11-11 21:00:00,334 Church St, Los Angeles,CA,90001 +294968,AAA Batteries (4-pack),2,2.99,2019-11-01 18:29:00,549 Center St, Los Angeles,CA,90001 +294969,27in 4K Gaming Monitor,1,389.99,2019-11-04 16:27:00,809 West St, New York City,NY,10001 +294970,Macbook Pro Laptop,1,1700.0,2019-11-24 21:00:00,337 Maple St, Los Angeles,CA,90001 +294971,USB-C Charging Cable,1,11.95,2019-11-26 20:24:00,188 Maple St, Austin,TX,73301 +294972,Wired Headphones,1,11.99,2019-11-18 16:10:00,403 Maple St, Austin,TX,73301 +294973,Lightning Charging Cable,1,14.95,2019-11-30 21:11:00,777 Walnut St, San Francisco,CA,94016 +294974,27in FHD Monitor,1,149.99,2019-11-28 12:47:00,637 8th St, San Francisco,CA,94016 +294975,Apple Airpods Headphones,1,150.0,2019-11-03 08:47:00,27 Washington St, New York City,NY,10001 +294976,AAA Batteries (4-pack),1,2.99,2019-11-13 18:21:00,931 Madison St, Atlanta,GA,30301 +294977,USB-C Charging Cable,1,11.95,2019-11-19 22:55:00,591 11th St, Atlanta,GA,30301 +294978,iPhone,1,700.0,2019-11-24 13:29:00,982 River St, Austin,TX,73301 +294979,27in FHD Monitor,2,149.99,2019-11-18 06:27:00,443 Sunset St, Atlanta,GA,30301 +294980,Lightning Charging Cable,2,14.95,2019-11-24 21:02:00,770 Forest St, San Francisco,CA,94016 +294981,AA Batteries (4-pack),1,3.84,2019-11-09 02:31:00,218 12th St, Seattle,WA,98101 +294982,AAA Batteries (4-pack),1,2.99,2019-11-06 18:15:00,63 Pine St, Los Angeles,CA,90001 +294983,USB-C Charging Cable,1,11.95,2019-11-28 10:41:00,911 Lake St, Dallas,TX,75001 +294984,AA Batteries (4-pack),2,3.84,2019-11-10 08:48:00,479 10th St, San Francisco,CA,94016 +294985,27in FHD Monitor,1,149.99,2019-11-17 20:44:00,682 Cherry St, Portland,OR,97035 +294986,USB-C Charging Cable,1,11.95,2019-11-08 17:32:00,666 Wilson St, Boston,MA,02215 +294987,LG Washing Machine,1,600.0,2019-11-15 10:39:00,248 Adams St, Portland,OR,97035 +294988,27in FHD Monitor,1,149.99,2019-11-23 06:49:00,928 Madison St, San Francisco,CA,94016 +294989,Bose SoundSport Headphones,1,99.99,2019-11-07 12:36:00,789 West St, New York City,NY,10001 +294990,Apple Airpods Headphones,1,150.0,2019-11-19 10:54:00,176 Hickory St, New York City,NY,10001 +294991,AA Batteries (4-pack),1,3.84,2019-11-01 09:18:00,487 River St, San Francisco,CA,94016 +294992,Bose SoundSport Headphones,1,99.99,2019-11-01 10:30:00,281 7th St, New York City,NY,10001 +294993,Wired Headphones,1,11.99,2019-11-29 16:50:00,460 1st St, Atlanta,GA,30301 +294994,27in 4K Gaming Monitor,1,389.99,2019-11-19 00:29:00,450 Wilson St, San Francisco,CA,94016 +294995,AA Batteries (4-pack),2,3.84,2019-11-27 13:52:00,759 Willow St, San Francisco,CA,94016 +294996,Lightning Charging Cable,1,14.95,2019-11-17 22:42:00,113 Hill St, Atlanta,GA,30301 +294997,AAA Batteries (4-pack),2,2.99,2019-11-02 07:49:00,937 Church St, Austin,TX,73301 +294998,Apple Airpods Headphones,1,150.0,2019-11-06 13:53:00,471 4th St, Portland,ME,04101 +294999,iPhone,1,700.0,2019-11-18 08:20:00,764 Chestnut St, Los Angeles,CA,90001 +294999,Lightning Charging Cable,1,14.95,2019-11-18 08:20:00,764 Chestnut St, Los Angeles,CA,90001 +295000,Lightning Charging Cable,1,14.95,2019-11-06 17:13:00,210 Spruce St, Boston,MA,02215 +295001,Apple Airpods Headphones,1,150.0,2019-11-30 11:23:00,477 Lincoln St, Atlanta,GA,30301 +295002,Bose SoundSport Headphones,1,99.99,2019-11-14 12:05:00,298 Sunset St, Austin,TX,73301 +295002,Apple Airpods Headphones,1,150.0,2019-11-14 12:05:00,298 Sunset St, Austin,TX,73301 +295003,USB-C Charging Cable,1,11.95,2019-11-04 22:33:00,357 Forest St, Seattle,WA,98101 +295004,Bose SoundSport Headphones,1,99.99,2019-11-01 13:08:00,169 Cedar St, San Francisco,CA,94016 +295005,Macbook Pro Laptop,1,1700.0,2019-11-30 15:41:00,82 Spruce St, Portland,ME,04101 +295006,27in FHD Monitor,1,149.99,2019-11-08 21:24:00,520 Ridge St, San Francisco,CA,94016 +295007,USB-C Charging Cable,2,11.95,2019-11-20 11:15:00,810 Madison St, Dallas,TX,75001 +295008,27in FHD Monitor,1,149.99,2019-11-09 20:59:00,867 Madison St, San Francisco,CA,94016 +295009,Lightning Charging Cable,1,14.95,2019-11-02 16:40:00,713 Hickory St, Los Angeles,CA,90001 +295010,Lightning Charging Cable,1,14.95,2019-11-22 16:00:00,872 6th St, Dallas,TX,75001 +295011,AA Batteries (4-pack),1,3.84,2019-11-25 12:03:00,845 9th St, New York City,NY,10001 +295012,USB-C Charging Cable,1,11.95,2019-11-02 00:29:00,867 Pine St, Atlanta,GA,30301 +295013,Macbook Pro Laptop,1,1700.0,2019-11-18 12:21:00,404 Main St, Boston,MA,02215 +295014,Flatscreen TV,1,300.0,2019-11-03 23:25:00,780 Dogwood St, Los Angeles,CA,90001 +295015,AAA Batteries (4-pack),1,2.99,2019-11-05 12:01:00,883 Hickory St, Atlanta,GA,30301 +295015,20in Monitor,1,109.99,2019-11-05 12:01:00,883 Hickory St, Atlanta,GA,30301 +295016,Bose SoundSport Headphones,1,99.99,2019-11-23 17:10:00,499 Walnut St, Seattle,WA,98101 +295017,AAA Batteries (4-pack),1,2.99,2019-11-22 10:10:00,558 5th St, Boston,MA,02215 +295018,Lightning Charging Cable,1,14.95,2019-11-01 18:16:00,872 Wilson St, Los Angeles,CA,90001 +295019,Lightning Charging Cable,1,14.95,2019-11-24 20:04:00,170 10th St, Atlanta,GA,30301 +295020,AAA Batteries (4-pack),3,2.99,2019-11-19 09:43:00,444 Adams St, San Francisco,CA,94016 +295021,27in FHD Monitor,1,149.99,2019-11-20 18:31:00,617 Sunset St, Los Angeles,CA,90001 +295022,Wired Headphones,1,11.99,2019-11-23 10:30:00,323 Center St, Los Angeles,CA,90001 +295023,Bose SoundSport Headphones,1,99.99,2019-11-20 16:38:00,984 14th St, San Francisco,CA,94016 +295024,Google Phone,1,600.0,2019-11-03 17:14:00,941 Meadow St, San Francisco,CA,94016 +295024,USB-C Charging Cable,1,11.95,2019-11-03 17:14:00,941 Meadow St, San Francisco,CA,94016 +295024,Wired Headphones,1,11.99,2019-11-03 17:14:00,941 Meadow St, San Francisco,CA,94016 +295025,Bose SoundSport Headphones,1,99.99,2019-11-20 18:06:00,622 14th St, Seattle,WA,98101 +295026,AA Batteries (4-pack),3,3.84,2019-11-14 20:53:00,598 10th St, San Francisco,CA,94016 +295027,Google Phone,1,600.0,2019-11-16 09:51:00,986 Chestnut St, Los Angeles,CA,90001 +295028,Wired Headphones,1,11.99,2019-11-18 21:33:00,259 Lakeview St, New York City,NY,10001 +295029,27in 4K Gaming Monitor,1,389.99,2019-11-28 11:36:00,920 Sunset St, Atlanta,GA,30301 +295030,USB-C Charging Cable,1,11.95,2019-11-14 21:49:00,364 6th St, San Francisco,CA,94016 +295031,USB-C Charging Cable,1,11.95,2019-11-25 14:24:00,519 Main St, San Francisco,CA,94016 +295032,AAA Batteries (4-pack),3,2.99,2019-11-12 16:46:00,581 Washington St, Austin,TX,73301 +295033,Bose SoundSport Headphones,1,99.99,2019-11-12 10:43:00,807 Sunset St, New York City,NY,10001 +295034,27in 4K Gaming Monitor,1,389.99,2019-11-14 15:29:00,571 Cedar St, San Francisco,CA,94016 +295035,AAA Batteries (4-pack),1,2.99,2019-11-06 08:19:00,371 North St, Dallas,TX,75001 +295036,Macbook Pro Laptop,1,1700.0,2019-11-15 15:59:00,888 7th St, San Francisco,CA,94016 +295037,27in FHD Monitor,1,149.99,2019-11-11 11:45:00,366 8th St, San Francisco,CA,94016 +295038,20in Monitor,1,109.99,2019-11-15 16:30:00,767 Center St, Portland,OR,97035 +295039,Apple Airpods Headphones,1,150.0,2019-11-30 14:07:00,602 North St, New York City,NY,10001 +295039,20in Monitor,1,109.99,2019-11-30 14:07:00,602 North St, New York City,NY,10001 +295040,Wired Headphones,1,11.99,2019-11-13 17:20:00,844 Center St, Seattle,WA,98101 +295041,AAA Batteries (4-pack),1,2.99,2019-11-25 03:13:00,929 Willow St, San Francisco,CA,94016 +295042,27in 4K Gaming Monitor,1,389.99,2019-11-13 13:38:00,194 9th St, San Francisco,CA,94016 +295043,LG Dryer,1,600.0,2019-11-15 12:02:00,73 Washington St, Atlanta,GA,30301 +295044,Flatscreen TV,1,300.0,2019-11-11 03:35:00,176 Sunset St, Boston,MA,02215 +295045,Macbook Pro Laptop,1,1700.0,2019-11-07 17:11:00,888 West St, New York City,NY,10001 +295046,Google Phone,1,600.0,2019-11-19 12:29:00,211 Sunset St, Atlanta,GA,30301 +295047,AAA Batteries (4-pack),1,2.99,2019-11-20 10:26:00,12 Park St, Austin,TX,73301 +295048,AAA Batteries (4-pack),1,2.99,2019-11-21 20:56:00,215 Jefferson St, New York City,NY,10001 +295049,Apple Airpods Headphones,1,150.0,2019-11-16 16:11:00,555 14th St, Dallas,TX,75001 +295050,USB-C Charging Cable,1,11.95,2019-11-02 12:09:00,553 Park St, Atlanta,GA,30301 +295051,Macbook Pro Laptop,1,1700.0,2019-11-29 10:56:00,659 Pine St, San Francisco,CA,94016 +295052,AA Batteries (4-pack),2,3.84,2019-11-13 06:15:00,422 4th St, Dallas,TX,75001 +295053,USB-C Charging Cable,2,11.95,2019-11-17 11:35:00,625 Walnut St, Los Angeles,CA,90001 +295054,AAA Batteries (4-pack),2,2.99,2019-11-15 11:07:00,652 Wilson St, San Francisco,CA,94016 +295055,AAA Batteries (4-pack),1,2.99,2019-11-26 12:41:00,703 South St, Boston,MA,02215 +295056,Apple Airpods Headphones,1,150.0,2019-11-07 17:31:00,35 Dogwood St, Dallas,TX,75001 +295057,Lightning Charging Cable,1,14.95,2019-11-22 17:04:00,281 Elm St, Dallas,TX,75001 +295058,34in Ultrawide Monitor,1,379.99,2019-11-11 12:29:00,149 7th St, San Francisco,CA,94016 +295059,20in Monitor,1,109.99,2019-11-05 22:40:00,883 5th St, Dallas,TX,75001 +295060,Apple Airpods Headphones,1,150.0,2019-11-07 16:42:00,260 Elm St, Boston,MA,02215 +295061,ThinkPad Laptop,1,999.99,2019-11-25 07:07:00,358 Lincoln St, Seattle,WA,98101 +295062,Apple Airpods Headphones,1,150.0,2019-11-07 19:33:00,40 Hickory St, New York City,NY,10001 +295063,iPhone,1,700.0,2019-11-01 12:11:00,262 Hickory St, Los Angeles,CA,90001 +295064,AA Batteries (4-pack),1,3.84,2019-11-10 22:58:00,534 10th St, Atlanta,GA,30301 +295065,Lightning Charging Cable,1,14.95,2019-11-20 09:51:00,968 Pine St, New York City,NY,10001 +295066,USB-C Charging Cable,1,11.95,2019-11-13 13:27:00,739 South St, San Francisco,CA,94016 +295067,Wired Headphones,1,11.99,2019-11-21 10:23:00,883 Church St, Boston,MA,02215 +295068,Wired Headphones,1,11.99,2019-11-27 14:36:00,712 Hill St, Atlanta,GA,30301 +295069,AA Batteries (4-pack),1,3.84,2019-11-06 14:22:00,361 Johnson St, San Francisco,CA,94016 +295070,Wired Headphones,1,11.99,2019-11-20 17:14:00,330 West St, Atlanta,GA,30301 +295071,Apple Airpods Headphones,1,150.0,2019-11-13 18:17:00,351 2nd St, Austin,TX,73301 +295072,Flatscreen TV,1,300.0,2019-11-01 12:08:00,187 River St, New York City,NY,10001 +295073,Flatscreen TV,1,300.0,2019-11-02 19:05:00,701 Highland St, Austin,TX,73301 +295074,Lightning Charging Cable,1,14.95,2019-11-14 16:58:00,98 7th St, Los Angeles,CA,90001 +295075,Lightning Charging Cable,1,14.95,2019-11-12 09:00:00,701 Lake St, Portland,OR,97035 +295076,Google Phone,1,600.0,2019-11-23 22:32:00,213 13th St, San Francisco,CA,94016 +295076,USB-C Charging Cable,1,11.95,2019-11-23 22:32:00,213 13th St, San Francisco,CA,94016 +295077,USB-C Charging Cable,1,11.95,2019-11-02 11:53:00,923 Jefferson St, New York City,NY,10001 +295078,Apple Airpods Headphones,1,150.0,2019-11-10 18:35:00,273 10th St, San Francisco,CA,94016 +295079,AA Batteries (4-pack),3,3.84,2019-11-09 23:25:00,892 Park St, Boston,MA,02215 +295080,AA Batteries (4-pack),1,3.84,2019-11-09 11:09:00,700 13th St, Dallas,TX,75001 +295081,AAA Batteries (4-pack),3,2.99,2019-11-08 13:34:00,63 Willow St, Seattle,WA,98101 +295082,AAA Batteries (4-pack),2,2.99,2019-11-18 16:48:00,406 Dogwood St, Los Angeles,CA,90001 +295083,Lightning Charging Cable,2,14.95,2019-11-17 12:45:00,684 River St, Boston,MA,02215 +295084,USB-C Charging Cable,1,11.95,2019-11-09 06:51:00,44 1st St, Los Angeles,CA,90001 +295085,AA Batteries (4-pack),1,3.84,2019-11-03 11:43:00,711 9th St, Los Angeles,CA,90001 +295086,ThinkPad Laptop,1,999.99,2019-11-14 09:58:00,91 8th St, New York City,NY,10001 +295087,Apple Airpods Headphones,1,150.0,2019-11-17 08:07:00,219 Washington St, San Francisco,CA,94016 +295088,Apple Airpods Headphones,1,150.0,2019-11-04 23:20:00,200 14th St, San Francisco,CA,94016 +295089,Wired Headphones,1,11.99,2019-11-30 13:48:00,175 Jackson St, San Francisco,CA,94016 +295090,Google Phone,1,600.0,2019-11-19 19:23:00,620 Wilson St, New York City,NY,10001 +295091,iPhone,1,700.0,2019-11-26 15:04:00,844 Ridge St, Boston,MA,02215 +295092,Apple Airpods Headphones,1,150.0,2019-11-17 12:19:00,831 4th St, Atlanta,GA,30301 +295093,iPhone,1,700.0,2019-11-20 10:08:00,137 Center St, New York City,NY,10001 +295094,Wired Headphones,1,11.99,2019-11-02 18:41:00,843 1st St, Los Angeles,CA,90001 +295095,27in FHD Monitor,1,149.99,2019-11-08 09:52:00,49 Pine St, San Francisco,CA,94016 +295096,Apple Airpods Headphones,1,150.0,2019-11-29 21:16:00,938 Main St, Los Angeles,CA,90001 +295097,Lightning Charging Cable,1,14.95,2019-11-10 09:40:00,189 11th St, Los Angeles,CA,90001 +295098,Wired Headphones,1,11.99,2019-11-13 12:04:00,856 Lake St, Boston,MA,02215 +295099,USB-C Charging Cable,1,11.95,2019-11-17 07:53:00,33 Willow St, San Francisco,CA,94016 +295100,Bose SoundSport Headphones,1,99.99,2019-11-05 19:39:00,864 Ridge St, Boston,MA,02215 +295101,Google Phone,1,600.0,2019-11-30 13:53:00,133 6th St, Portland,OR,97035 +295102,USB-C Charging Cable,1,11.95,2019-11-11 19:52:00,691 14th St, Boston,MA,02215 +295103,Bose SoundSport Headphones,1,99.99,2019-11-23 16:39:00,849 Hickory St, San Francisco,CA,94016 +295103,AAA Batteries (4-pack),3,2.99,2019-11-23 16:39:00,849 Hickory St, San Francisco,CA,94016 +295104,Lightning Charging Cable,1,14.95,2019-11-15 22:17:00,633 2nd St, San Francisco,CA,94016 +295105,34in Ultrawide Monitor,1,379.99,2019-11-25 19:31:00,404 Cherry St, San Francisco,CA,94016 +295106,Wired Headphones,1,11.99,2019-11-30 08:57:00,119 Highland St, San Francisco,CA,94016 +295107,Apple Airpods Headphones,1,150.0,2019-11-02 04:24:00,845 Lincoln St, San Francisco,CA,94016 +295108,AAA Batteries (4-pack),1,2.99,2019-11-22 19:13:00,516 Cedar St, New York City,NY,10001 +295109,27in FHD Monitor,1,149.99,2019-11-09 08:08:00,324 Hickory St, New York City,NY,10001 +295110,AA Batteries (4-pack),1,3.84,2019-11-08 22:31:00,368 2nd St, San Francisco,CA,94016 +295111,Google Phone,1,600.0,2019-11-06 18:23:00,588 Wilson St, San Francisco,CA,94016 +295112,USB-C Charging Cable,1,11.95,2019-11-17 10:27:00,614 Hickory St, Atlanta,GA,30301 +295113,AA Batteries (4-pack),1,3.84,2019-11-10 22:17:00,103 5th St, Dallas,TX,75001 +295114,LG Washing Machine,1,600.0,2019-11-09 17:31:00,760 2nd St, Dallas,TX,75001 +295115,Lightning Charging Cable,1,14.95,2019-11-18 11:29:00,401 14th St, Los Angeles,CA,90001 +295116,AAA Batteries (4-pack),1,2.99,2019-11-09 00:56:00,976 Chestnut St, Dallas,TX,75001 +295117,Wired Headphones,1,11.99,2019-11-19 00:13:00,841 Jackson St, Atlanta,GA,30301 +295118,AAA Batteries (4-pack),2,2.99,2019-11-23 01:11:00,207 Chestnut St, Austin,TX,73301 +295119,Flatscreen TV,1,300.0,2019-11-04 06:41:00,616 Chestnut St, Portland,OR,97035 +295120,AAA Batteries (4-pack),2,2.99,2019-11-03 18:38:00,272 Park St, Los Angeles,CA,90001 +295121,Lightning Charging Cable,2,14.95,2019-11-14 16:08:00,248 Wilson St, Los Angeles,CA,90001 +295121,Bose SoundSport Headphones,1,99.99,2019-11-14 16:08:00,248 Wilson St, Los Angeles,CA,90001 +295122,Lightning Charging Cable,1,14.95,2019-11-03 12:57:00,357 Meadow St, Boston,MA,02215 +295123,20in Monitor,1,109.99,2019-11-16 00:08:00,121 Sunset St, San Francisco,CA,94016 +295124,AA Batteries (4-pack),1,3.84,2019-11-10 15:01:00,557 Highland St, San Francisco,CA,94016 +295125,34in Ultrawide Monitor,1,379.99,2019-11-26 14:12:00,652 Highland St, New York City,NY,10001 +295126,ThinkPad Laptop,1,999.99,2019-11-22 10:49:00,296 Jefferson St, Seattle,WA,98101 +295127,ThinkPad Laptop,1,999.99,2019-11-15 00:51:00,813 Elm St, San Francisco,CA,94016 +295128,Lightning Charging Cable,2,14.95,2019-11-21 20:47:00,262 Ridge St, San Francisco,CA,94016 +295129,USB-C Charging Cable,1,11.95,2019-11-06 14:10:00,352 14th St, Dallas,TX,75001 +295130,Wired Headphones,1,11.99,2019-11-16 09:29:00,836 5th St, San Francisco,CA,94016 +295131,AA Batteries (4-pack),1,3.84,2019-11-05 20:41:00,201 Ridge St, Austin,TX,73301 +295132,AA Batteries (4-pack),1,3.84,2019-11-04 21:45:00,108 Johnson St, Los Angeles,CA,90001 +295133,ThinkPad Laptop,1,999.99,2019-11-15 21:58:00,70 Hickory St, San Francisco,CA,94016 +295134,Apple Airpods Headphones,1,150.0,2019-11-07 22:02:00,926 Walnut St, New York City,NY,10001 +295135,USB-C Charging Cable,1,11.95,2019-11-10 15:57:00,215 Chestnut St, Dallas,TX,75001 +295136,iPhone,1,700.0,2019-11-19 09:32:00,647 Forest St, San Francisco,CA,94016 +295137,USB-C Charging Cable,1,11.95,2019-11-23 18:57:00,367 Park St, New York City,NY,10001 +295138,iPhone,1,700.0,2019-11-21 10:23:00,768 Chestnut St, Seattle,WA,98101 +295139,20in Monitor,1,109.99,2019-11-24 22:00:00,215 Church St, Dallas,TX,75001 +295140,Wired Headphones,2,11.99,2019-11-30 11:14:00,982 Adams St, Austin,TX,73301 +295141,AAA Batteries (4-pack),2,2.99,2019-11-05 05:43:00,299 Center St, Seattle,WA,98101 +295142,Lightning Charging Cable,1,14.95,2019-11-02 11:09:00,825 Willow St, Boston,MA,02215 +295143,27in FHD Monitor,1,149.99,2019-11-10 14:11:00,164 Lincoln St, Los Angeles,CA,90001 +295144,27in FHD Monitor,1,149.99,2019-11-19 22:43:00,545 Forest St, Boston,MA,02215 +295145,Macbook Pro Laptop,1,1700.0,2019-11-29 12:49:00,121 Main St, Atlanta,GA,30301 +295146,Apple Airpods Headphones,1,150.0,2019-11-28 14:49:00,273 6th St, Boston,MA,02215 +295147,AAA Batteries (4-pack),1,2.99,2019-11-09 22:13:00,67 Hickory St, New York City,NY,10001 +295148,Bose SoundSport Headphones,1,99.99,2019-11-13 09:59:00,905 Willow St, New York City,NY,10001 +295149,AAA Batteries (4-pack),1,2.99,2019-11-15 16:57:00,362 5th St, Atlanta,GA,30301 +295150,27in 4K Gaming Monitor,1,389.99,2019-11-04 20:31:00,795 Chestnut St, Austin,TX,73301 +295151,Macbook Pro Laptop,1,1700.0,2019-11-23 07:11:00,209 Maple St, New York City,NY,10001 +295152,Macbook Pro Laptop,1,1700.0,2019-11-25 05:26:00,905 Lincoln St, San Francisco,CA,94016 +295153,AA Batteries (4-pack),1,3.84,2019-11-04 11:34:00,45 Church St, Los Angeles,CA,90001 +295154,USB-C Charging Cable,1,11.95,2019-11-29 20:15:00,657 8th St, San Francisco,CA,94016 +295155,AA Batteries (4-pack),2,3.84,2019-11-19 09:00:00,596 West St, Atlanta,GA,30301 +295156,USB-C Charging Cable,1,11.95,2019-11-19 10:36:00,609 Madison St, San Francisco,CA,94016 +295157,Flatscreen TV,1,300.0,2019-11-28 21:16:00,513 6th St, Portland,OR,97035 +295158,Wired Headphones,2,11.99,2019-11-07 14:31:00,674 10th St, San Francisco,CA,94016 +295159,Lightning Charging Cable,1,14.95,2019-11-27 20:14:00,181 9th St, Seattle,WA,98101 +295160,AAA Batteries (4-pack),1,2.99,2019-11-13 11:52:00,150 Center St, Los Angeles,CA,90001 +295161,Wired Headphones,1,11.99,2019-11-26 08:39:00,647 Elm St, Atlanta,GA,30301 +295162,iPhone,1,700.0,2019-11-29 17:44:00,354 Lake St, San Francisco,CA,94016 +295163,27in 4K Gaming Monitor,1,389.99,2019-11-30 19:43:00,674 5th St, Dallas,TX,75001 +295164,Apple Airpods Headphones,1,150.0,2019-11-30 17:51:00,566 1st St, Boston,MA,02215 +295165,Apple Airpods Headphones,1,150.0,2019-11-02 19:33:00,209 11th St, Boston,MA,02215 +295166,AAA Batteries (4-pack),1,2.99,2019-11-30 13:52:00,522 Highland St, Atlanta,GA,30301 +295167,AA Batteries (4-pack),1,3.84,2019-11-09 00:37:00,65 Washington St, Portland,ME,04101 +295168,27in 4K Gaming Monitor,1,389.99,2019-11-23 23:31:00,859 Walnut St, Los Angeles,CA,90001 +295169,USB-C Charging Cable,1,11.95,2019-11-21 00:48:00,546 Highland St, Seattle,WA,98101 +295170,20in Monitor,1,109.99,2019-11-12 11:33:00,679 West St, Boston,MA,02215 +295171,AAA Batteries (4-pack),1,2.99,2019-11-23 23:25:00,84 Pine St, Portland,ME,04101 +295172,AA Batteries (4-pack),1,3.84,2019-11-01 22:50:00,693 Highland St, Atlanta,GA,30301 +295173,Bose SoundSport Headphones,1,99.99,2019-11-17 15:28:00,870 West St, San Francisco,CA,94016 +295174,AAA Batteries (4-pack),1,2.99,2019-11-05 09:23:00,810 Washington St, Atlanta,GA,30301 +295175,AAA Batteries (4-pack),1,2.99,2019-11-07 21:47:00,93 Main St, San Francisco,CA,94016 +295176,ThinkPad Laptop,1,999.99,2019-11-11 14:45:00,152 Hickory St, Dallas,TX,75001 +295177,Flatscreen TV,1,300.0,2019-11-16 08:25:00,74 8th St, San Francisco,CA,94016 +295178,Lightning Charging Cable,1,14.95,2019-11-13 19:37:00,374 Church St, San Francisco,CA,94016 +295179,Google Phone,1,600.0,2019-11-06 10:33:00,59 4th St, Los Angeles,CA,90001 +295180,Wired Headphones,1,11.99,2019-11-29 18:47:00,559 Lincoln St, San Francisco,CA,94016 +295181,Lightning Charging Cable,1,14.95,2019-11-24 16:54:00,490 Cherry St, San Francisco,CA,94016 +295182,27in FHD Monitor,1,149.99,2019-11-29 16:49:00,784 5th St, Los Angeles,CA,90001 +295183,Macbook Pro Laptop,1,1700.0,2019-11-24 11:55:00,668 Spruce St, Boston,MA,02215 +295184,34in Ultrawide Monitor,1,379.99,2019-11-27 19:15:00,47 Cherry St, Los Angeles,CA,90001 +295185,Google Phone,1,600.0,2019-11-21 18:02:00,963 4th St, Los Angeles,CA,90001 +295186,Lightning Charging Cable,1,14.95,2019-11-17 13:23:00,26 13th St, San Francisco,CA,94016 +295187,Macbook Pro Laptop,1,1700.0,2019-11-20 10:44:00,38 Lincoln St, Atlanta,GA,30301 +295188,Bose SoundSport Headphones,1,99.99,2019-11-10 10:28:00,436 Lake St, Boston,MA,02215 +295189,Macbook Pro Laptop,1,1700.0,2019-11-22 21:12:00,544 Johnson St, Atlanta,GA,30301 +295190,AA Batteries (4-pack),1,3.84,2019-11-03 20:15:00,447 10th St, Dallas,TX,75001 +295191,AAA Batteries (4-pack),2,2.99,2019-11-30 16:58:00,338 13th St, Dallas,TX,75001 +295192,Apple Airpods Headphones,1,150.0,2019-11-30 11:06:00,233 14th St, Los Angeles,CA,90001 +295193,ThinkPad Laptop,1,999.99,2019-11-21 13:48:00,620 River St, Boston,MA,02215 +295194,Wired Headphones,1,11.99,2019-11-10 19:08:00,474 South St, San Francisco,CA,94016 +295195,Wired Headphones,1,11.99,2019-11-25 19:51:00,5 Highland St, New York City,NY,10001 +295196,Flatscreen TV,1,300.0,2019-11-25 16:35:00,699 Chestnut St, Austin,TX,73301 +295197,AAA Batteries (4-pack),1,2.99,2019-11-16 20:24:00,713 Main St, San Francisco,CA,94016 +295198,Lightning Charging Cable,1,14.95,2019-11-19 15:14:00,803 Spruce St, Los Angeles,CA,90001 +295199,USB-C Charging Cable,1,11.95,2019-11-03 19:07:00,678 4th St, Boston,MA,02215 +295200,AAA Batteries (4-pack),1,2.99,2019-11-23 18:23:00,212 9th St, Boston,MA,02215 +295201,Lightning Charging Cable,1,14.95,2019-11-25 13:06:00,356 North St, Boston,MA,02215 +295202,AAA Batteries (4-pack),1,2.99,2019-11-22 10:26:00,370 Jackson St, Portland,OR,97035 +295203,Wired Headphones,1,11.99,2019-11-27 11:49:00,311 5th St, San Francisco,CA,94016 +295204,Vareebadd Phone,1,400.0,2019-11-26 13:01:00,434 North St, San Francisco,CA,94016 +295205,27in FHD Monitor,1,149.99,2019-11-07 13:13:00,630 5th St, San Francisco,CA,94016 +295206,Google Phone,1,600.0,2019-11-11 10:59:00,159 West St, Dallas,TX,75001 +295206,Bose SoundSport Headphones,1,99.99,2019-11-11 10:59:00,159 West St, Dallas,TX,75001 +295207,Wired Headphones,1,11.99,2019-11-30 13:28:00,719 Hill St, Portland,OR,97035 +295208,Lightning Charging Cable,1,14.95,2019-11-18 22:46:00,863 12th St, San Francisco,CA,94016 +295209,AAA Batteries (4-pack),2,2.99,2019-11-19 15:55:00,925 Wilson St, Atlanta,GA,30301 +295210,27in FHD Monitor,1,149.99,2019-11-13 17:02:00,350 Ridge St, San Francisco,CA,94016 +295211,USB-C Charging Cable,1,11.95,2019-11-25 11:45:00,977 Madison St, San Francisco,CA,94016 +295212,iPhone,1,700.0,2019-11-18 17:53:00,320 Elm St, Los Angeles,CA,90001 +295212,Wired Headphones,1,11.99,2019-11-18 17:53:00,320 Elm St, Los Angeles,CA,90001 +295213,AA Batteries (4-pack),2,3.84,2019-11-19 12:43:00,978 11th St, San Francisco,CA,94016 +295214,iPhone,1,700.0,2019-11-10 14:53:00,713 1st St, Dallas,TX,75001 +295214,Lightning Charging Cable,1,14.95,2019-11-10 14:53:00,713 1st St, Dallas,TX,75001 +295215,Wired Headphones,1,11.99,2019-11-09 23:48:00,886 Forest St, San Francisco,CA,94016 +295216,USB-C Charging Cable,1,11.95,2019-11-29 07:05:00,701 Willow St, Los Angeles,CA,90001 +295217,USB-C Charging Cable,1,11.95,2019-11-25 11:34:00,629 Chestnut St, New York City,NY,10001 +295218,AAA Batteries (4-pack),1,2.99,2019-11-07 10:55:00,281 Walnut St, New York City,NY,10001 +295219,Wired Headphones,1,11.99,2019-11-20 20:32:00,801 Madison St, Dallas,TX,75001 +295220,Bose SoundSport Headphones,1,99.99,2019-11-08 22:23:00,186 Dogwood St, Los Angeles,CA,90001 +295221,Bose SoundSport Headphones,1,99.99,2019-11-20 20:50:00,622 Jefferson St, New York City,NY,10001 +295222,Bose SoundSport Headphones,1,99.99,2019-11-21 21:18:00,507 14th St, Atlanta,GA,30301 +295223,Lightning Charging Cable,1,14.95,2019-11-09 16:50:00,746 Ridge St, Dallas,TX,75001 +295224,Apple Airpods Headphones,1,150.0,2019-11-06 09:14:00,985 1st St, San Francisco,CA,94016 +295225,Lightning Charging Cable,1,14.95,2019-11-17 08:25:00,360 Spruce St, San Francisco,CA,94016 +295226,AAA Batteries (4-pack),2,2.99,2019-11-18 12:08:00,305 8th St, New York City,NY,10001 +295227,Wired Headphones,1,11.99,2019-11-11 16:41:00,663 8th St, Austin,TX,73301 +295228,AA Batteries (4-pack),1,3.84,2019-11-10 15:48:00,823 Jefferson St, Austin,TX,73301 +295229,AAA Batteries (4-pack),2,2.99,2019-11-19 21:29:00,563 4th St, Portland,OR,97035 +295230,USB-C Charging Cable,2,11.95,2019-11-12 18:18:00,228 7th St, New York City,NY,10001 +295231,27in FHD Monitor,1,149.99,2019-11-10 09:30:00,507 Ridge St, Los Angeles,CA,90001 +295232,Wired Headphones,1,11.99,2019-11-20 19:44:00,794 Elm St, San Francisco,CA,94016 +295233,USB-C Charging Cable,1,11.95,2019-11-02 12:42:00,38 Sunset St, Austin,TX,73301 +295234,Bose SoundSport Headphones,1,99.99,2019-11-22 16:19:00,346 Center St, Seattle,WA,98101 +295235,Bose SoundSport Headphones,1,99.99,2019-11-01 17:17:00,987 Church St, Los Angeles,CA,90001 +295236,27in FHD Monitor,1,149.99,2019-11-03 19:39:00,941 Lakeview St, New York City,NY,10001 +295237,AA Batteries (4-pack),1,3.84,2019-11-03 22:29:00,936 Meadow St, Boston,MA,02215 +295238,USB-C Charging Cable,1,11.95,2019-11-15 18:07:00,106 Wilson St, San Francisco,CA,94016 +295239,USB-C Charging Cable,1,11.95,2019-11-10 07:24:00,304 Dogwood St, New York City,NY,10001 +295240,USB-C Charging Cable,1,11.95,2019-11-01 13:35:00,247 Hickory St, San Francisco,CA,94016 +295241,34in Ultrawide Monitor,1,379.99,2019-11-07 11:56:00,371 Wilson St, New York City,NY,10001 +295242,AA Batteries (4-pack),2,3.84,2019-11-24 15:59:00,32 Walnut St, Seattle,WA,98101 +295243,AA Batteries (4-pack),1,3.84,2019-11-01 10:32:00,755 Willow St, New York City,NY,10001 +295244,AA Batteries (4-pack),1,3.84,2019-11-03 20:25:00,504 Hill St, Los Angeles,CA,90001 +295245,USB-C Charging Cable,1,11.95,2019-11-13 16:33:00,870 6th St, Seattle,WA,98101 +295246,USB-C Charging Cable,1,11.95,2019-11-16 09:00:00,665 7th St, Los Angeles,CA,90001 +295247,Lightning Charging Cable,1,14.95,2019-11-12 13:53:00,522 Meadow St, Boston,MA,02215 +295247,Wired Headphones,2,11.99,2019-11-12 13:53:00,522 Meadow St, Boston,MA,02215 +295248,AA Batteries (4-pack),1,3.84,2019-11-11 11:47:00,928 Johnson St, New York City,NY,10001 +295249,AA Batteries (4-pack),1,3.84,2019-11-05 08:10:00,957 Lake St, San Francisco,CA,94016 +295250,Lightning Charging Cable,1,14.95,2019-11-20 12:37:00,313 Hill St, Dallas,TX,75001 +295251,Flatscreen TV,1,300.0,2019-11-04 15:27:00,89 9th St, Los Angeles,CA,90001 +295252,Lightning Charging Cable,1,14.95,2019-11-14 23:30:00,215 4th St, Los Angeles,CA,90001 +295253,AA Batteries (4-pack),1,3.84,2019-11-28 11:17:00,42 Lakeview St, Seattle,WA,98101 +295254,Lightning Charging Cable,1,14.95,2019-11-12 14:06:00,439 Maple St, San Francisco,CA,94016 +295255,Apple Airpods Headphones,1,150.0,2019-11-06 21:47:00,849 11th St, Portland,OR,97035 +295256,34in Ultrawide Monitor,1,379.99,2019-11-16 15:38:00,12 9th St, Dallas,TX,75001 +295257,Flatscreen TV,1,300.0,2019-11-10 19:22:00,398 Hickory St, San Francisco,CA,94016 +295258,27in 4K Gaming Monitor,1,389.99,2019-11-15 11:20:00,847 Johnson St, San Francisco,CA,94016 +295259,AAA Batteries (4-pack),1,2.99,2019-11-21 18:33:00,130 Wilson St, Dallas,TX,75001 +295260,iPhone,1,700.0,2019-11-10 12:10:00,59 6th St, Portland,OR,97035 +295261,Wired Headphones,1,11.99,2019-11-30 13:53:00,574 Jefferson St, New York City,NY,10001 +295262,USB-C Charging Cable,3,11.95,2019-11-11 17:19:00,15 6th St, San Francisco,CA,94016 +295263,USB-C Charging Cable,1,11.95,2019-11-04 12:10:00,800 Dogwood St, Boston,MA,02215 +295264,Bose SoundSport Headphones,1,99.99,2019-11-10 18:04:00,770 South St, San Francisco,CA,94016 +295265,Apple Airpods Headphones,1,150.0,2019-11-11 04:06:00,261 9th St, Portland,ME,04101 +295266,USB-C Charging Cable,1,11.95,2019-11-17 13:49:00,521 6th St, Los Angeles,CA,90001 +295267,ThinkPad Laptop,1,999.99,2019-11-04 22:25:00,898 5th St, Los Angeles,CA,90001 +295268,Wired Headphones,1,11.99,2019-11-21 09:46:00,361 Jefferson St, Atlanta,GA,30301 +295269,Macbook Pro Laptop,1,1700.0,2019-11-20 13:33:00,791 Walnut St, San Francisco,CA,94016 +295270,Lightning Charging Cable,1,14.95,2019-11-30 14:29:00,730 Forest St, New York City,NY,10001 +295271,27in FHD Monitor,1,149.99,2019-11-26 07:14:00,663 8th St, Portland,OR,97035 +295272,USB-C Charging Cable,1,11.95,2019-11-19 04:12:00,557 8th St, Los Angeles,CA,90001 +295273,Wired Headphones,1,11.99,2019-11-25 21:49:00,629 River St, New York City,NY,10001 +295274,27in 4K Gaming Monitor,1,389.99,2019-11-13 18:13:00,431 Johnson St, Dallas,TX,75001 +295275,ThinkPad Laptop,1,999.99,2019-11-29 12:27:00,280 Maple St, San Francisco,CA,94016 +295276,USB-C Charging Cable,1,11.95,2019-11-13 16:34:00,526 Main St, Austin,TX,73301 +295277,AAA Batteries (4-pack),1,2.99,2019-11-03 17:45:00,486 Maple St, New York City,NY,10001 +295278,Bose SoundSport Headphones,1,99.99,2019-11-20 13:25:00,362 Highland St, Austin,TX,73301 +295279,AAA Batteries (4-pack),3,2.99,2019-11-30 18:59:00,640 Walnut St, New York City,NY,10001 +295280,USB-C Charging Cable,1,11.95,2019-11-10 13:50:00,597 5th St, San Francisco,CA,94016 +295281,Google Phone,1,600.0,2019-11-13 06:44:00,69 Pine St, Boston,MA,02215 +295282,AA Batteries (4-pack),1,3.84,2019-11-02 12:30:00,939 Cherry St, San Francisco,CA,94016 +295283,USB-C Charging Cable,1,11.95,2019-11-22 17:19:00,759 River St, Boston,MA,02215 +295284,USB-C Charging Cable,2,11.95,2019-11-11 13:10:00,883 8th St, Seattle,WA,98101 +295285,27in FHD Monitor,1,149.99,2019-11-23 20:57:00,598 Main St, Atlanta,GA,30301 +295286,AAA Batteries (4-pack),1,2.99,2019-11-25 20:22:00,759 Willow St, San Francisco,CA,94016 +295287,AA Batteries (4-pack),1,3.84,2019-11-01 23:37:00,795 West St, Austin,TX,73301 +295288,USB-C Charging Cable,2,11.95,2019-11-25 12:19:00,735 Sunset St, New York City,NY,10001 +295289,Apple Airpods Headphones,1,150.0,2019-11-14 19:07:00,500 Cherry St, Atlanta,GA,30301 +295290,Apple Airpods Headphones,1,150.0,2019-11-17 18:39:00,258 7th St, Boston,MA,02215 +295291,iPhone,1,700.0,2019-11-02 20:19:00,841 Dogwood St, Seattle,WA,98101 +295292,Macbook Pro Laptop,1,1700.0,2019-11-05 13:55:00,826 5th St, San Francisco,CA,94016 +295293,Lightning Charging Cable,1,14.95,2019-11-25 09:36:00,346 Johnson St, Los Angeles,CA,90001 +295294,Wired Headphones,1,11.99,2019-11-27 09:01:00,84 12th St, Los Angeles,CA,90001 +295295,AA Batteries (4-pack),1,3.84,2019-11-06 19:44:00,10 Cherry St, Atlanta,GA,30301 +295296,27in FHD Monitor,1,149.99,2019-11-21 10:01:00,663 5th St, New York City,NY,10001 +295297,AAA Batteries (4-pack),1,2.99,2019-11-10 20:09:00,478 Church St, Los Angeles,CA,90001 +295298,ThinkPad Laptop,1,999.99,2019-11-28 12:24:00,959 6th St, Portland,OR,97035 +295299,27in FHD Monitor,1,149.99,2019-11-22 17:00:00,953 South St, Boston,MA,02215 +295300,Lightning Charging Cable,1,14.95,2019-11-16 12:11:00,683 South St, Dallas,TX,75001 +295301,27in FHD Monitor,1,149.99,2019-11-09 03:29:00,744 Madison St, Los Angeles,CA,90001 +295302,AA Batteries (4-pack),1,3.84,2019-11-23 21:04:00,49 River St, San Francisco,CA,94016 +295303,AAA Batteries (4-pack),1,2.99,2019-11-07 12:40:00,25 Ridge St, Dallas,TX,75001 +295304,Apple Airpods Headphones,1,150.0,2019-11-16 19:04:00,442 Spruce St, Los Angeles,CA,90001 +295305,AA Batteries (4-pack),1,3.84,2019-11-19 15:33:00,518 Church St, Austin,TX,73301 +295306,Apple Airpods Headphones,1,150.0,2019-11-23 07:02:00,761 14th St, Boston,MA,02215 +295307,USB-C Charging Cable,1,11.95,2019-11-13 13:37:00,982 Main St, New York City,NY,10001 +295308,Wired Headphones,1,11.99,2019-11-21 20:39:00,742 13th St, New York City,NY,10001 +295309,Lightning Charging Cable,1,14.95,2019-11-07 12:34:00,503 Center St, Boston,MA,02215 +295310,Bose SoundSport Headphones,1,99.99,2019-11-24 20:43:00,608 11th St, New York City,NY,10001 +295311,AA Batteries (4-pack),1,3.84,2019-11-23 08:14:00,912 Adams St, Seattle,WA,98101 +295312,Google Phone,1,600.0,2019-11-05 09:42:00,877 River St, Los Angeles,CA,90001 +295312,USB-C Charging Cable,2,11.95,2019-11-05 09:42:00,877 River St, Los Angeles,CA,90001 +295313,USB-C Charging Cable,1,11.95,2019-11-01 20:00:00,77 Washington St, Austin,TX,73301 +295314,Lightning Charging Cable,1,14.95,2019-11-15 20:23:00,505 Spruce St, New York City,NY,10001 +295315,iPhone,1,700.0,2019-11-01 06:18:00,774 4th St, Atlanta,GA,30301 +295316,Google Phone,1,600.0,2019-11-20 17:32:00,730 Lakeview St, Los Angeles,CA,90001 +295317,AA Batteries (4-pack),1,3.84,2019-11-05 07:19:00,934 Meadow St, San Francisco,CA,94016 +295318,Wired Headphones,1,11.99,2019-11-11 12:14:00,787 11th St, San Francisco,CA,94016 +295319,AA Batteries (4-pack),1,3.84,2019-11-02 18:03:00,96 Elm St, San Francisco,CA,94016 +295320,AA Batteries (4-pack),1,3.84,2019-11-16 07:02:00,740 8th St, Dallas,TX,75001 +295321,AA Batteries (4-pack),1,3.84,2019-11-11 17:09:00,298 Hill St, San Francisco,CA,94016 +295322,AA Batteries (4-pack),1,3.84,2019-11-13 18:43:00,398 Hickory St, Austin,TX,73301 +295323,USB-C Charging Cable,1,11.95,2019-11-07 07:55:00,444 9th St, San Francisco,CA,94016 +295324,Bose SoundSport Headphones,1,99.99,2019-11-16 13:36:00,991 Johnson St, Seattle,WA,98101 +295325,ThinkPad Laptop,1,999.99,2019-11-09 22:57:00,421 7th St, Dallas,TX,75001 +295326,Bose SoundSport Headphones,1,99.99,2019-11-18 08:42:00,949 Sunset St, Seattle,WA,98101 +295327,Lightning Charging Cable,1,14.95,2019-11-17 00:26:00,149 Forest St, San Francisco,CA,94016 +295328,AA Batteries (4-pack),1,3.84,2019-11-22 15:49:00,325 Elm St, Portland,OR,97035 +295329,USB-C Charging Cable,1,11.95,2019-11-24 14:15:00,813 Willow St, Boston,MA,02215 +295330,AAA Batteries (4-pack),1,2.99,2019-11-02 21:21:00,167 Ridge St, Portland,OR,97035 +295331,Apple Airpods Headphones,1,150.0,2019-11-21 18:06:00,433 Cedar St, Portland,ME,04101 +295332,27in FHD Monitor,1,149.99,2019-11-30 11:01:00,380 Adams St, Boston,MA,02215 +295333,Bose SoundSport Headphones,1,99.99,2019-11-08 15:29:00,766 Adams St, Dallas,TX,75001 +295334,Wired Headphones,1,11.99,2019-11-12 08:09:00,95 Adams St, Los Angeles,CA,90001 +295335,iPhone,1,700.0,2019-11-29 20:05:00,431 Lake St, Los Angeles,CA,90001 +295335,Lightning Charging Cable,1,14.95,2019-11-29 20:05:00,431 Lake St, Los Angeles,CA,90001 +295336,27in 4K Gaming Monitor,1,389.99,2019-11-24 08:30:00,446 11th St, Dallas,TX,75001 +295337,20in Monitor,1,109.99,2019-11-19 11:54:00,725 14th St, Atlanta,GA,30301 +295338,AAA Batteries (4-pack),2,2.99,2019-11-05 12:07:00,343 Maple St, Los Angeles,CA,90001 +295339,AA Batteries (4-pack),1,3.84,2019-11-19 12:23:00,165 North St, Dallas,TX,75001 +295339,AAA Batteries (4-pack),1,2.99,2019-11-19 12:23:00,165 North St, Dallas,TX,75001 +295340,ThinkPad Laptop,1,999.99,2019-11-15 12:21:00,811 Park St, New York City,NY,10001 +295341,AAA Batteries (4-pack),3,2.99,2019-11-18 07:03:00,859 Walnut St, San Francisco,CA,94016 +295342,27in FHD Monitor,1,149.99,2019-11-12 18:42:00,426 Center St, San Francisco,CA,94016 +295343,AA Batteries (4-pack),1,3.84,2019-11-08 17:47:00,406 12th St, Los Angeles,CA,90001 +295344,AA Batteries (4-pack),1,3.84,2019-11-10 22:05:00,115 Ridge St, Los Angeles,CA,90001 +295345,USB-C Charging Cable,1,11.95,2019-11-17 14:09:00,99 Willow St, Los Angeles,CA,90001 +295346,Wired Headphones,1,11.99,2019-11-29 22:52:00,607 Walnut St, Los Angeles,CA,90001 +295347,USB-C Charging Cable,1,11.95,2019-11-12 09:35:00,343 11th St, Seattle,WA,98101 +295348,Bose SoundSport Headphones,1,99.99,2019-11-08 13:15:00,37 South St, Portland,ME,04101 +295349,USB-C Charging Cable,1,11.95,2019-11-25 13:15:00,927 Washington St, San Francisco,CA,94016 +295350,Lightning Charging Cable,1,14.95,2019-11-19 10:33:00,960 Chestnut St, Boston,MA,02215 +295351,iPhone,1,700.0,2019-11-26 06:19:00,503 Maple St, Seattle,WA,98101 +295352,34in Ultrawide Monitor,1,379.99,2019-11-10 10:08:00,456 Lincoln St, New York City,NY,10001 +295353,Wired Headphones,1,11.99,2019-11-17 13:51:00,115 Lake St, Boston,MA,02215 +295354,34in Ultrawide Monitor,1,379.99,2019-11-12 22:37:00,243 Cedar St, New York City,NY,10001 +295355,Bose SoundSport Headphones,1,99.99,2019-11-14 09:14:00,107 Ridge St, New York City,NY,10001 +295356,Lightning Charging Cable,1,14.95,2019-11-03 21:57:00,861 11th St, Austin,TX,73301 +295357,Google Phone,1,600.0,2019-11-30 11:05:00,685 2nd St, Portland,OR,97035 +295358,AA Batteries (4-pack),1,3.84,2019-11-18 20:30:00,179 1st St, San Francisco,CA,94016 +295359,AA Batteries (4-pack),2,3.84,2019-11-30 18:13:00,243 Hill St, Atlanta,GA,30301 +295360,USB-C Charging Cable,2,11.95,2019-11-13 11:12:00,620 4th St, Los Angeles,CA,90001 +295361,USB-C Charging Cable,1,11.95,2019-11-26 11:01:00,251 Ridge St, New York City,NY,10001 +295362,Bose SoundSport Headphones,1,99.99,2019-11-14 15:50:00,183 Highland St, Atlanta,GA,30301 +295363,Lightning Charging Cable,1,14.95,2019-11-22 19:10:00,580 Lake St, Los Angeles,CA,90001 +295364,27in FHD Monitor,1,149.99,2019-11-24 11:29:00,568 Park St, San Francisco,CA,94016 +295365,Lightning Charging Cable,1,14.95,2019-11-15 16:12:00,975 Lincoln St, New York City,NY,10001 +295366,AAA Batteries (4-pack),1,2.99,2019-11-10 09:56:00,465 Pine St, Portland,OR,97035 +295367,USB-C Charging Cable,1,11.95,2019-11-30 11:58:00,957 Meadow St, Dallas,TX,75001 +295368,Bose SoundSport Headphones,1,99.99,2019-11-16 15:19:00,208 5th St, Austin,TX,73301 +295369,Lightning Charging Cable,1,14.95,2019-11-06 19:33:00,11 Center St, Los Angeles,CA,90001 +295370,Apple Airpods Headphones,1,150.0,2019-11-30 18:14:00,457 7th St, Atlanta,GA,30301 +295371,iPhone,1,700.0,2019-11-26 08:33:00,11 Willow St, Boston,MA,02215 +295372,USB-C Charging Cable,1,11.95,2019-11-03 19:10:00,145 1st St, New York City,NY,10001 +295373,USB-C Charging Cable,1,11.95,2019-11-05 19:01:00,266 Elm St, Portland,OR,97035 +295374,AAA Batteries (4-pack),1,2.99,2019-11-07 21:34:00,421 South St, New York City,NY,10001 +295375,Vareebadd Phone,1,400.0,2019-11-03 21:37:00,276 Center St, Los Angeles,CA,90001 +295376,AAA Batteries (4-pack),1,2.99,2019-11-15 20:08:00,772 Sunset St, Boston,MA,02215 +295377,AAA Batteries (4-pack),1,2.99,2019-11-01 22:22:00,596 Lakeview St, San Francisco,CA,94016 +295378,Wired Headphones,1,11.99,2019-11-09 06:48:00,723 Cedar St, Los Angeles,CA,90001 +295379,AA Batteries (4-pack),1,3.84,2019-11-06 14:31:00,68 10th St, San Francisco,CA,94016 +295380,Wired Headphones,1,11.99,2019-11-20 01:49:00,151 Jefferson St, Dallas,TX,75001 +295381,Lightning Charging Cable,1,14.95,2019-11-16 17:37:00,751 Willow St, San Francisco,CA,94016 +295382,Wired Headphones,1,11.99,2019-11-22 15:02:00,390 Lincoln St, Seattle,WA,98101 +295383,Lightning Charging Cable,1,14.95,2019-11-16 15:28:00,758 Adams St, Boston,MA,02215 +295384,AAA Batteries (4-pack),2,2.99,2019-11-20 13:09:00,670 6th St, Los Angeles,CA,90001 +295385,USB-C Charging Cable,2,11.95,2019-11-27 21:01:00,470 West St, Seattle,WA,98101 +295386,AA Batteries (4-pack),1,3.84,2019-11-06 21:33:00,739 West St, San Francisco,CA,94016 +295387,Macbook Pro Laptop,1,1700.0,2019-11-12 06:09:00,695 Cherry St, Los Angeles,CA,90001 +295388,Wired Headphones,1,11.99,2019-11-01 07:07:00,554 Walnut St, New York City,NY,10001 +295389,Google Phone,1,600.0,2019-11-17 12:58:00,482 West St, San Francisco,CA,94016 +295390,AAA Batteries (4-pack),2,2.99,2019-11-06 10:55:00,816 Lakeview St, Los Angeles,CA,90001 +295391,AA Batteries (4-pack),2,3.84,2019-11-18 08:01:00,193 Dogwood St, Atlanta,GA,30301 +295392,Wired Headphones,1,11.99,2019-11-07 23:18:00,804 1st St, New York City,NY,10001 +295393,AAA Batteries (4-pack),1,2.99,2019-11-23 20:07:00,859 13th St, Portland,OR,97035 +295394,USB-C Charging Cable,1,11.95,2019-11-13 22:00:00,47 12th St, San Francisco,CA,94016 +295395,Apple Airpods Headphones,1,150.0,2019-11-18 18:14:00,84 Dogwood St, Seattle,WA,98101 +295396,Apple Airpods Headphones,1,150.0,2019-11-02 13:56:00,130 Washington St, New York City,NY,10001 +295397,Apple Airpods Headphones,1,150.0,2019-11-11 15:18:00,577 Meadow St, Los Angeles,CA,90001 +295398,Lightning Charging Cable,1,14.95,2019-11-02 21:12:00,381 Forest St, Boston,MA,02215 +295399,iPhone,1,700.0,2019-11-10 08:39:00,188 11th St, New York City,NY,10001 +295399,Apple Airpods Headphones,1,150.0,2019-11-10 08:39:00,188 11th St, New York City,NY,10001 +295400,Lightning Charging Cable,2,14.95,2019-11-23 00:10:00,129 Main St, Dallas,TX,75001 +295401,ThinkPad Laptop,1,999.99,2019-11-17 18:25:00,923 Elm St, Atlanta,GA,30301 +295402,Wired Headphones,1,11.99,2019-11-27 11:40:00,661 Cherry St, Portland,OR,97035 +295403,Wired Headphones,1,11.99,2019-11-23 01:27:00,843 Adams St, Los Angeles,CA,90001 +295404,AAA Batteries (4-pack),2,2.99,2019-11-23 12:25:00,481 Maple St, Atlanta,GA,30301 +295405,Lightning Charging Cable,1,14.95,2019-11-26 23:24:00,272 Maple St, San Francisco,CA,94016 +295406,Bose SoundSport Headphones,1,99.99,2019-11-19 12:05:00,166 Cherry St, Boston,MA,02215 +295407,Apple Airpods Headphones,1,150.0,2019-11-16 15:29:00,908 Spruce St, Los Angeles,CA,90001 +295408,Vareebadd Phone,1,400.0,2019-11-25 11:39:00,849 1st St, Boston,MA,02215 +295408,USB-C Charging Cable,1,11.95,2019-11-25 11:39:00,849 1st St, Boston,MA,02215 +295409,Lightning Charging Cable,1,14.95,2019-11-17 19:25:00,942 Church St, Seattle,WA,98101 +295410,LG Dryer,1,600.0,2019-11-03 21:17:00,267 Main St, Atlanta,GA,30301 +295411,USB-C Charging Cable,1,11.95,2019-11-09 09:19:00,807 Maple St, Los Angeles,CA,90001 +295412,Wired Headphones,1,11.99,2019-11-10 14:28:00,786 Hickory St, Dallas,TX,75001 +295413,27in 4K Gaming Monitor,1,389.99,2019-11-28 14:31:00,834 West St, Atlanta,GA,30301 +295414,ThinkPad Laptop,1,999.99,2019-11-07 15:33:00,795 9th St, San Francisco,CA,94016 +295415,AAA Batteries (4-pack),1,2.99,2019-11-24 00:51:00,580 West St, Los Angeles,CA,90001 +295416,Lightning Charging Cable,1,14.95,2019-11-03 12:58:00,173 Walnut St, San Francisco,CA,94016 +295417,AAA Batteries (4-pack),6,2.99,2019-11-25 11:02:00,204 Church St, New York City,NY,10001 +295418,34in Ultrawide Monitor,1,379.99,2019-11-25 10:35:00,447 11th St, Austin,TX,73301 +295419,USB-C Charging Cable,1,11.95,2019-11-28 07:10:00,735 5th St, Portland,OR,97035 +295420,Wired Headphones,1,11.99,2019-11-26 21:41:00,640 Lakeview St, Los Angeles,CA,90001 +295421,Lightning Charging Cable,1,14.95,2019-11-06 01:29:00,456 Adams St, Boston,MA,02215 +295422,AA Batteries (4-pack),1,3.84,2019-11-30 21:02:00,14 Sunset St, Seattle,WA,98101 +295423,Lightning Charging Cable,1,14.95,2019-11-02 10:04:00,146 11th St, San Francisco,CA,94016 +295424,Vareebadd Phone,1,400.0,2019-11-26 14:43:00,602 Wilson St, Boston,MA,02215 +295425,27in 4K Gaming Monitor,1,389.99,2019-11-24 19:43:00,900 Cherry St, New York City,NY,10001 +295426,Apple Airpods Headphones,1,150.0,2019-11-22 20:10:00,123 4th St, Los Angeles,CA,90001 +295427,AA Batteries (4-pack),2,3.84,2019-11-04 21:48:00,421 Elm St, San Francisco,CA,94016 +295428,Lightning Charging Cable,1,14.95,2019-11-14 12:06:00,897 6th St, Los Angeles,CA,90001 +295429,Wired Headphones,1,11.99,2019-11-14 20:34:00,590 9th St, New York City,NY,10001 +295430,Wired Headphones,1,11.99,2019-11-12 20:05:00,361 9th St, Atlanta,GA,30301 +295431,AA Batteries (4-pack),1,3.84,2019-11-14 16:21:00,930 River St, Dallas,TX,75001 +295432,Apple Airpods Headphones,1,150.0,2019-11-21 19:15:00,130 Madison St, New York City,NY,10001 +295433,AA Batteries (4-pack),1,3.84,2019-11-15 18:44:00,382 2nd St, Boston,MA,02215 +295434,Flatscreen TV,1,300.0,2019-11-30 14:29:00,438 Lakeview St, Dallas,TX,75001 +295435,USB-C Charging Cable,1,11.95,2019-11-10 18:09:00,294 Lake St, Los Angeles,CA,90001 +295436,iPhone,1,700.0,2019-11-25 07:01:00,743 Madison St, San Francisco,CA,94016 +295437,34in Ultrawide Monitor,1,379.99,2019-11-02 18:45:00,483 10th St, Boston,MA,02215 +295438,Flatscreen TV,1,300.0,2019-11-07 11:20:00,318 Dogwood St, Seattle,WA,98101 +295439,USB-C Charging Cable,2,11.95,2019-11-07 18:43:00,380 Maple St, Los Angeles,CA,90001 +295440,Flatscreen TV,1,300.0,2019-11-30 09:08:00,606 13th St, New York City,NY,10001 +295441,Macbook Pro Laptop,1,1700.0,2019-11-05 12:34:00,224 Spruce St, Austin,TX,73301 +295442,AA Batteries (4-pack),1,3.84,2019-11-13 14:52:00,474 Pine St, Austin,TX,73301 +295443,USB-C Charging Cable,1,11.95,2019-11-26 08:31:00,841 10th St, Seattle,WA,98101 +295444,Lightning Charging Cable,1,14.95,2019-11-19 21:45:00,975 8th St, San Francisco,CA,94016 +295445,Bose SoundSport Headphones,1,99.99,2019-11-14 12:52:00,347 Forest St, Portland,OR,97035 +295446,AAA Batteries (4-pack),2,2.99,2019-11-14 14:30:00,598 Willow St, San Francisco,CA,94016 +295447,Vareebadd Phone,1,400.0,2019-11-01 06:20:00,662 Highland St, New York City,NY,10001 +295447,Wired Headphones,1,11.99,2019-11-01 06:20:00,662 Highland St, New York City,NY,10001 +295448,AA Batteries (4-pack),2,3.84,2019-11-02 23:18:00,52 11th St, San Francisco,CA,94016 +295449,USB-C Charging Cable,1,11.95,2019-11-01 12:22:00,81 Center St, San Francisco,CA,94016 +295450,Wired Headphones,1,11.99,2019-11-02 11:02:00,674 North St, San Francisco,CA,94016 +295451,LG Dryer,1,600.0,2019-11-17 10:58:00,266 Adams St, Los Angeles,CA,90001 +295452,iPhone,1,700.0,2019-11-04 13:51:00,371 1st St, San Francisco,CA,94016 +295453,USB-C Charging Cable,1,11.95,2019-11-22 05:55:00,941 Sunset St, San Francisco,CA,94016 +295454,Bose SoundSport Headphones,1,99.99,2019-11-05 12:53:00,787 Jefferson St, Boston,MA,02215 +295455,AAA Batteries (4-pack),1,2.99,2019-11-04 23:42:00,362 Lincoln St, San Francisco,CA,94016 +295456,Wired Headphones,1,11.99,2019-11-17 13:53:00,566 Sunset St, Dallas,TX,75001 +295457,USB-C Charging Cable,1,11.95,2019-11-10 19:13:00,535 Park St, New York City,NY,10001 +295458,AAA Batteries (4-pack),6,2.99,2019-11-19 20:02:00,258 Madison St, Portland,OR,97035 +295459,Apple Airpods Headphones,1,150.0,2019-11-02 13:14:00,993 7th St, Austin,TX,73301 +295460,Flatscreen TV,1,300.0,2019-11-13 20:11:00,782 13th St, Boston,MA,02215 +295461,AA Batteries (4-pack),1,3.84,2019-11-18 11:11:00,820 12th St, Los Angeles,CA,90001 +295462,USB-C Charging Cable,1,11.95,2019-11-30 18:37:00,690 Church St, Boston,MA,02215 +295463,USB-C Charging Cable,2,11.95,2019-11-02 18:21:00,640 Park St, Los Angeles,CA,90001 +295464,27in 4K Gaming Monitor,1,389.99,2019-11-28 12:48:00,101 7th St, New York City,NY,10001 +295465,AAA Batteries (4-pack),2,2.99,2019-11-25 23:32:00,554 Lincoln St, San Francisco,CA,94016 +295466,Apple Airpods Headphones,1,150.0,2019-11-21 16:54:00,103 Adams St, San Francisco,CA,94016 +295467,Bose SoundSport Headphones,1,99.99,2019-11-17 20:16:00,38 West St, San Francisco,CA,94016 +295468,Wired Headphones,1,11.99,2019-11-03 16:36:00,599 Hickory St, Los Angeles,CA,90001 +295469,AAA Batteries (4-pack),1,2.99,2019-11-16 09:30:00,115 11th St, Boston,MA,02215 +295470,AA Batteries (4-pack),1,3.84,2019-11-21 07:59:00,200 5th St, Los Angeles,CA,90001 +295471,Flatscreen TV,1,300.0,2019-11-14 13:09:00,668 Willow St, San Francisco,CA,94016 +295472,USB-C Charging Cable,1,11.95,2019-11-12 13:29:00,727 Lakeview St, San Francisco,CA,94016 +295473,USB-C Charging Cable,1,11.95,2019-11-08 15:00:00,272 Cedar St, San Francisco,CA,94016 +295474,Google Phone,1,600.0,2019-11-22 11:50:00,878 Ridge St, Boston,MA,02215 +295475,34in Ultrawide Monitor,1,379.99,2019-11-12 09:38:00,138 Cherry St, San Francisco,CA,94016 +295476,USB-C Charging Cable,1,11.95,2019-11-17 16:08:00,53 Madison St, San Francisco,CA,94016 +295477,Apple Airpods Headphones,1,150.0,2019-11-15 12:48:00,92 1st St, Los Angeles,CA,90001 +295478,AAA Batteries (4-pack),1,2.99,2019-11-28 22:46:00,467 Elm St, New York City,NY,10001 +295479,AAA Batteries (4-pack),1,2.99,2019-11-03 15:22:00,593 13th St, Atlanta,GA,30301 +295480,27in FHD Monitor,1,149.99,2019-11-01 11:03:00,880 1st St, Seattle,WA,98101 +295481,AA Batteries (4-pack),1,3.84,2019-11-17 08:03:00,643 Cherry St, Los Angeles,CA,90001 +295482,Flatscreen TV,1,300.0,2019-11-04 13:17:00,912 Dogwood St, New York City,NY,10001 +295483,Bose SoundSport Headphones,1,99.99,2019-11-15 13:01:00,370 Chestnut St, New York City,NY,10001 +295484,27in FHD Monitor,1,149.99,2019-11-11 20:28:00,392 South St, Portland,ME,04101 +295485,34in Ultrawide Monitor,1,379.99,2019-11-18 20:43:00,829 Jefferson St, Atlanta,GA,30301 +295486,Apple Airpods Headphones,1,150.0,2019-11-30 23:48:00,826 10th St, San Francisco,CA,94016 +295487,Apple Airpods Headphones,1,150.0,2019-11-23 19:22:00,235 Main St, San Francisco,CA,94016 +295487,Macbook Pro Laptop,1,1700.0,2019-11-23 19:22:00,235 Main St, San Francisco,CA,94016 +295488,Lightning Charging Cable,1,14.95,2019-11-16 07:09:00,876 Dogwood St, Boston,MA,02215 +295489,Wired Headphones,1,11.99,2019-11-27 16:59:00,373 Walnut St, Dallas,TX,75001 +295490,Lightning Charging Cable,1,14.95,2019-11-24 20:10:00,79 Sunset St, San Francisco,CA,94016 +295491,USB-C Charging Cable,1,11.95,2019-11-29 12:28:00,841 1st St, Seattle,WA,98101 +295492,Bose SoundSport Headphones,1,99.99,2019-11-28 22:51:00,554 6th St, New York City,NY,10001 +295493,Vareebadd Phone,1,400.0,2019-11-24 16:37:00,49 Chestnut St, San Francisco,CA,94016 +295494,Flatscreen TV,1,300.0,2019-11-12 19:11:00,944 7th St, Atlanta,GA,30301 +295495,Bose SoundSport Headphones,1,99.99,2019-11-12 18:49:00,723 South St, Dallas,TX,75001 +295496,Wired Headphones,1,11.99,2019-11-02 18:56:00,401 Walnut St, San Francisco,CA,94016 +295497,Lightning Charging Cable,2,14.95,2019-11-18 18:21:00,395 Main St, San Francisco,CA,94016 +295498,USB-C Charging Cable,1,11.95,2019-11-17 12:55:00,909 Lake St, Los Angeles,CA,90001 +295499,Macbook Pro Laptop,1,1700.0,2019-11-19 16:10:00,381 Park St, Dallas,TX,75001 +295500,Lightning Charging Cable,1,14.95,2019-11-23 15:13:00,894 6th St, Los Angeles,CA,90001 +295501,Lightning Charging Cable,1,14.95,2019-11-06 12:43:00,562 Hickory St, Seattle,WA,98101 +295502,AA Batteries (4-pack),1,3.84,2019-11-05 13:04:00,931 Forest St, New York City,NY,10001 +295503,AAA Batteries (4-pack),1,2.99,2019-11-08 20:40:00,559 Forest St, New York City,NY,10001 +295504,AAA Batteries (4-pack),2,2.99,2019-11-04 10:52:00,682 Madison St, San Francisco,CA,94016 +295505,AA Batteries (4-pack),1,3.84,2019-11-23 00:17:00,786 Highland St, Portland,OR,97035 +295506,Apple Airpods Headphones,1,150.0,2019-11-10 11:10:00,167 Jefferson St, Dallas,TX,75001 +295507,Lightning Charging Cable,1,14.95,2019-11-27 16:19:00,943 Maple St, Los Angeles,CA,90001 +295508,ThinkPad Laptop,1,999.99,2019-11-21 20:48:00,591 Spruce St, San Francisco,CA,94016 +295509,AAA Batteries (4-pack),1,2.99,2019-11-27 14:36:00,241 13th St, New York City,NY,10001 +295510,Wired Headphones,1,11.99,2019-11-01 18:55:00,496 Willow St, Boston,MA,02215 +295511,LG Dryer,1,600.0,2019-11-20 18:44:00,187 Lake St, San Francisco,CA,94016 +295512,AAA Batteries (4-pack),2,2.99,2019-11-20 12:52:00,978 South St, San Francisco,CA,94016 +295513,iPhone,1,700.0,2019-11-02 09:28:00,497 South St, San Francisco,CA,94016 +295513,Lightning Charging Cable,1,14.95,2019-11-02 09:28:00,497 South St, San Francisco,CA,94016 +295514,27in 4K Gaming Monitor,1,389.99,2019-11-12 14:36:00,955 9th St, Seattle,WA,98101 +295515,AA Batteries (4-pack),1,3.84,2019-11-02 22:25:00,760 Johnson St, Boston,MA,02215 +295516,iPhone,1,700.0,2019-11-19 23:16:00,603 4th St, Los Angeles,CA,90001 +295517,Flatscreen TV,1,300.0,2019-11-02 20:09:00,158 Wilson St, Dallas,TX,75001 +295518,27in FHD Monitor,1,149.99,2019-11-29 16:25:00,122 Lake St, Portland,ME,04101 +295519,Lightning Charging Cable,1,14.95,2019-11-19 19:04:00,979 Wilson St, New York City,NY,10001 +295520,AA Batteries (4-pack),3,3.84,2019-11-25 20:18:00,749 5th St, Los Angeles,CA,90001 +295521,27in FHD Monitor,1,149.99,2019-11-07 09:41:00,102 Pine St, New York City,NY,10001 +295522,AAA Batteries (4-pack),1,2.99,2019-11-02 13:16:00,882 9th St, New York City,NY,10001 +295523,AAA Batteries (4-pack),1,2.99,2019-11-19 17:52:00,965 Elm St, San Francisco,CA,94016 +295524,Wired Headphones,1,11.99,2019-11-13 18:49:00,166 1st St, San Francisco,CA,94016 +295525,USB-C Charging Cable,1,11.95,2019-11-22 20:26:00,453 12th St, New York City,NY,10001 +295526,Apple Airpods Headphones,1,150.0,2019-11-21 11:26:00,550 Park St, Dallas,TX,75001 +295526,27in FHD Monitor,1,149.99,2019-11-21 11:26:00,550 Park St, Dallas,TX,75001 +295527,AA Batteries (4-pack),1,3.84,2019-11-08 18:38:00,559 Jefferson St, Seattle,WA,98101 +295528,AA Batteries (4-pack),1,3.84,2019-11-27 18:10:00,354 8th St, San Francisco,CA,94016 +295529,Wired Headphones,1,11.99,2019-11-16 10:46:00,810 Lakeview St, Los Angeles,CA,90001 +295530,AAA Batteries (4-pack),2,2.99,2019-11-27 19:13:00,580 Center St, Austin,TX,73301 +295531,AA Batteries (4-pack),1,3.84,2019-11-26 07:12:00,793 Jefferson St, Austin,TX,73301 +295532,34in Ultrawide Monitor,1,379.99,2019-11-01 10:16:00,176 Main St, Portland,ME,04101 +295533,USB-C Charging Cable,1,11.95,2019-11-20 19:08:00,925 Meadow St, Austin,TX,73301 +295534,Google Phone,1,600.0,2019-11-06 19:21:00,22 Pine St, Boston,MA,02215 +295534,USB-C Charging Cable,1,11.95,2019-11-06 19:21:00,22 Pine St, Boston,MA,02215 +295535,Bose SoundSport Headphones,1,99.99,2019-11-15 10:52:00,501 Washington St, Seattle,WA,98101 +295536,iPhone,1,700.0,2019-11-26 10:28:00,162 Meadow St, Los Angeles,CA,90001 +295537,Google Phone,1,600.0,2019-11-09 12:42:00,591 Maple St, Atlanta,GA,30301 +295538,AAA Batteries (4-pack),1,2.99,2019-11-11 05:44:00,325 9th St, Atlanta,GA,30301 +295539,Wired Headphones,2,11.99,2019-11-05 18:58:00,407 Forest St, Seattle,WA,98101 +295540,Apple Airpods Headphones,1,150.0,2019-11-25 20:43:00,560 Hickory St, San Francisco,CA,94016 +295541,Lightning Charging Cable,1,14.95,2019-11-15 16:25:00,774 Madison St, Boston,MA,02215 +295542,LG Washing Machine,1,600.0,2019-11-25 13:47:00,406 Pine St, San Francisco,CA,94016 +295543,Lightning Charging Cable,1,14.95,2019-11-13 08:07:00,959 Jefferson St, New York City,NY,10001 +295544,Wired Headphones,1,11.99,2019-11-07 23:22:00,977 Forest St, San Francisco,CA,94016 +295545,USB-C Charging Cable,1,11.95,2019-11-24 21:52:00,851 Pine St, New York City,NY,10001 +295546,ThinkPad Laptop,1,999.99,2019-11-07 14:15:00,221 Walnut St, San Francisco,CA,94016 +295547,USB-C Charging Cable,1,11.95,2019-11-30 19:36:00,883 Lakeview St, Portland,ME,04101 +295548,USB-C Charging Cable,1,11.95,2019-11-07 13:52:00,39 Pine St, Los Angeles,CA,90001 +295549,34in Ultrawide Monitor,1,379.99,2019-11-09 14:25:00,881 Jackson St, Seattle,WA,98101 +295550,34in Ultrawide Monitor,1,379.99,2019-11-07 16:00:00,71 Elm St, Boston,MA,02215 +295551,Wired Headphones,1,11.99,2019-11-12 23:05:00,330 Forest St, New York City,NY,10001 +295552,iPhone,1,700.0,2019-11-17 00:08:00,45 Pine St, Los Angeles,CA,90001 +295553,AAA Batteries (4-pack),1,2.99,2019-11-27 20:08:00,549 Madison St, Seattle,WA,98101 +295554,Wired Headphones,1,11.99,2019-11-05 19:20:00,535 Sunset St, Atlanta,GA,30301 +295555,Macbook Pro Laptop,1,1700.0,2019-11-12 21:31:00,712 Maple St, San Francisco,CA,94016 +295556,AA Batteries (4-pack),1,3.84,2019-11-29 10:22:00,499 5th St, Los Angeles,CA,90001 +295557,Wired Headphones,1,11.99,2019-11-17 14:30:00,412 Adams St, San Francisco,CA,94016 +295558,ThinkPad Laptop,1,999.99,2019-11-28 13:09:00,577 1st St, San Francisco,CA,94016 +295559,Google Phone,1,600.0,2019-11-18 17:37:00,227 Hill St, San Francisco,CA,94016 +295560,Flatscreen TV,1,300.0,2019-11-06 11:47:00,916 Chestnut St, Los Angeles,CA,90001 +295561,Wired Headphones,1,11.99,2019-11-08 17:50:00,700 Cherry St, Seattle,WA,98101 +295562,Wired Headphones,1,11.99,2019-11-29 17:57:00,188 Meadow St, San Francisco,CA,94016 +295563,AA Batteries (4-pack),1,3.84,2019-11-21 22:48:00,113 Johnson St, Portland,OR,97035 +295564,Wired Headphones,1,11.99,2019-11-11 11:08:00,100 6th St, San Francisco,CA,94016 +295565,27in FHD Monitor,1,149.99,2019-11-11 19:24:00,900 10th St, Los Angeles,CA,90001 +295566,Wired Headphones,1,11.99,2019-11-26 11:00:00,526 Center St, Los Angeles,CA,90001 +295567,Apple Airpods Headphones,1,150.0,2019-11-20 10:38:00,672 Maple St, Dallas,TX,75001 +295568,Wired Headphones,1,11.99,2019-11-18 22:57:00,477 10th St, Los Angeles,CA,90001 +295569,34in Ultrawide Monitor,1,379.99,2019-11-21 05:27:00,631 9th St, Los Angeles,CA,90001 +295570,AAA Batteries (4-pack),1,2.99,2019-11-02 08:59:00,726 South St, New York City,NY,10001 +295571,Wired Headphones,1,11.99,2019-11-06 12:54:00,513 Ridge St, San Francisco,CA,94016 +295572,Bose SoundSport Headphones,1,99.99,2019-11-16 13:53:00,516 Ridge St, Atlanta,GA,30301 +295573,AA Batteries (4-pack),3,3.84,2019-11-24 12:34:00,865 Park St, San Francisco,CA,94016 +295574,Macbook Pro Laptop,1,1700.0,2019-11-25 16:05:00,592 Lincoln St, Atlanta,GA,30301 +295575,34in Ultrawide Monitor,1,379.99,2019-11-26 06:34:00,197 14th St, Boston,MA,02215 +295576,AA Batteries (4-pack),2,3.84,2019-11-09 17:06:00,269 2nd St, New York City,NY,10001 +295577,USB-C Charging Cable,1,11.95,2019-11-02 21:52:00,404 Highland St, Portland,OR,97035 +295578,Lightning Charging Cable,1,14.95,2019-11-18 20:35:00,319 Ridge St, Seattle,WA,98101 +295579,27in FHD Monitor,1,149.99,2019-11-30 21:32:00,627 Main St, Seattle,WA,98101 +295580,AA Batteries (4-pack),2,3.84,2019-11-04 21:25:00,111 7th St, New York City,NY,10001 +295581,Lightning Charging Cable,1,14.95,2019-11-08 21:01:00,288 Johnson St, New York City,NY,10001 +295582,Bose SoundSport Headphones,1,99.99,2019-11-15 18:26:00,820 Center St, San Francisco,CA,94016 +295583,AAA Batteries (4-pack),3,2.99,2019-11-08 12:44:00,575 Forest St, Los Angeles,CA,90001 +295584,Apple Airpods Headphones,1,150.0,2019-11-15 19:07:00,747 Forest St, New York City,NY,10001 +295585,Flatscreen TV,1,300.0,2019-11-03 06:03:00,380 Willow St, Los Angeles,CA,90001 +295586,USB-C Charging Cable,1,11.95,2019-11-15 20:42:00,138 North St, Boston,MA,02215 +295587,Bose SoundSport Headphones,2,99.99,2019-11-27 00:07:00,966 Main St, Los Angeles,CA,90001 +295588,Lightning Charging Cable,1,14.95,2019-11-02 16:07:00,416 Madison St, San Francisco,CA,94016 +295589,iPhone,1,700.0,2019-11-14 16:06:00,946 7th St, San Francisco,CA,94016 +295590,AA Batteries (4-pack),1,3.84,2019-11-19 09:41:00,772 South St, New York City,NY,10001 +295591,Lightning Charging Cable,1,14.95,2019-11-29 14:00:00,923 Highland St, New York City,NY,10001 +295592,Bose SoundSport Headphones,1,99.99,2019-11-28 00:35:00,99 West St, San Francisco,CA,94016 +295593,Apple Airpods Headphones,1,150.0,2019-11-07 20:00:00,481 Hickory St, Dallas,TX,75001 +295594,Lightning Charging Cable,1,14.95,2019-11-26 07:27:00,901 Madison St, New York City,NY,10001 +295595,Lightning Charging Cable,1,14.95,2019-11-08 07:20:00,405 Park St, New York City,NY,10001 +295596,Wired Headphones,1,11.99,2019-11-19 00:34:00,865 Lincoln St, San Francisco,CA,94016 +295597,ThinkPad Laptop,1,999.99,2019-11-29 21:47:00,587 11th St, Los Angeles,CA,90001 +295598,AAA Batteries (4-pack),1,2.99,2019-11-24 22:39:00,88 Johnson St, Atlanta,GA,30301 +295599,iPhone,1,700.0,2019-11-25 21:17:00,258 Ridge St, New York City,NY,10001 +295599,Apple Airpods Headphones,1,150.0,2019-11-25 21:17:00,258 Ridge St, New York City,NY,10001 +295600,AA Batteries (4-pack),1,3.84,2019-11-17 11:53:00,665 14th St, Seattle,WA,98101 +295601,27in FHD Monitor,1,149.99,2019-11-09 15:09:00,609 Cherry St, New York City,NY,10001 +295602,Bose SoundSport Headphones,1,99.99,2019-11-24 14:49:00,927 5th St, New York City,NY,10001 +295603,Lightning Charging Cable,1,14.95,2019-11-08 19:55:00,485 Wilson St, New York City,NY,10001 +295604,34in Ultrawide Monitor,1,379.99,2019-11-10 21:14:00,655 Walnut St, Los Angeles,CA,90001 +295605,Apple Airpods Headphones,1,150.0,2019-11-17 17:47:00,969 Hill St, San Francisco,CA,94016 +295606,Apple Airpods Headphones,1,150.0,2019-11-09 05:41:00,566 11th St, Austin,TX,73301 +295607,27in FHD Monitor,1,149.99,2019-11-15 19:46:00,92 12th St, San Francisco,CA,94016 +295608,AAA Batteries (4-pack),1,2.99,2019-11-12 17:19:00,769 Hickory St, Portland,OR,97035 +295609,20in Monitor,1,109.99,2019-11-01 10:21:00,307 Hickory St, San Francisco,CA,94016 +295610,Wired Headphones,1,11.99,2019-11-30 06:07:00,277 Jackson St, New York City,NY,10001 +295611,AAA Batteries (4-pack),1,2.99,2019-11-13 19:00:00,577 13th St, Atlanta,GA,30301 +295612,Bose SoundSport Headphones,1,99.99,2019-11-24 17:50:00,813 8th St, New York City,NY,10001 +295613,USB-C Charging Cable,1,11.95,2019-11-18 20:21:00,802 2nd St, Boston,MA,02215 +295614,AAA Batteries (4-pack),1,2.99,2019-11-29 10:25:00,816 Jackson St, Boston,MA,02215 +295615,Wired Headphones,1,11.99,2019-11-14 13:21:00,774 10th St, Dallas,TX,75001 +295616,USB-C Charging Cable,2,11.95,2019-11-17 15:28:00,726 South St, Atlanta,GA,30301 +295617,USB-C Charging Cable,1,11.95,2019-11-20 12:11:00,246 Chestnut St, Austin,TX,73301 +295618,Wired Headphones,1,11.99,2019-11-10 13:17:00,894 Ridge St, Atlanta,GA,30301 +295619,Apple Airpods Headphones,2,150.0,2019-11-01 12:58:00,610 Ridge St, Los Angeles,CA,90001 +295620,AA Batteries (4-pack),2,3.84,2019-11-18 23:39:00,802 9th St, Dallas,TX,75001 +295621,Bose SoundSport Headphones,1,99.99,2019-11-14 00:29:00,629 1st St, Los Angeles,CA,90001 +295622,Apple Airpods Headphones,1,150.0,2019-11-22 15:13:00,210 Elm St, Los Angeles,CA,90001 +295623,Bose SoundSport Headphones,1,99.99,2019-11-30 12:59:00,259 Sunset St, Atlanta,GA,30301 +295624,iPhone,1,700.0,2019-11-22 14:57:00,305 1st St, Austin,TX,73301 +295625,ThinkPad Laptop,1,999.99,2019-11-22 15:16:00,504 7th St, New York City,NY,10001 +295626,27in FHD Monitor,2,149.99,2019-11-01 09:53:00,786 Maple St, Dallas,TX,75001 +295627,34in Ultrawide Monitor,1,379.99,2019-11-23 21:01:00,982 Jefferson St, New York City,NY,10001 +295628,AA Batteries (4-pack),1,3.84,2019-11-09 22:12:00,515 Elm St, Boston,MA,02215 +295629,34in Ultrawide Monitor,1,379.99,2019-11-21 13:09:00,239 River St, Austin,TX,73301 +295630,ThinkPad Laptop,1,999.99,2019-11-16 15:12:00,382 10th St, Los Angeles,CA,90001 +295631,USB-C Charging Cable,1,11.95,2019-11-27 17:12:00,547 Jackson St, San Francisco,CA,94016 +295632,Lightning Charging Cable,2,14.95,2019-11-22 17:46:00,899 Main St, Dallas,TX,75001 +295633,Apple Airpods Headphones,1,150.0,2019-11-22 20:59:00,253 11th St, San Francisco,CA,94016 +295634,AA Batteries (4-pack),1,3.84,2019-11-24 08:03:00,378 Sunset St, Boston,MA,02215 +295635,Bose SoundSport Headphones,1,99.99,2019-11-17 09:11:00,379 Sunset St, San Francisco,CA,94016 +295636,AA Batteries (4-pack),2,3.84,2019-12-01 00:20:00,204 Walnut St, Dallas,TX,75001 +295637,AAA Batteries (4-pack),1,2.99,2019-11-09 20:35:00,516 Lincoln St, Seattle,WA,98101 +295638,Bose SoundSport Headphones,1,99.99,2019-11-11 12:39:00,359 Main St, Austin,TX,73301 +295639,Wired Headphones,1,11.99,2019-11-04 08:48:00,999 Jefferson St, Austin,TX,73301 +295640,USB-C Charging Cable,1,11.95,2019-11-18 14:41:00,862 Washington St, New York City,NY,10001 +295641,USB-C Charging Cable,1,11.95,2019-11-16 00:26:00,568 Adams St, San Francisco,CA,94016 +295642,AA Batteries (4-pack),1,3.84,2019-11-05 21:21:00,93 Washington St, Austin,TX,73301 +295643,20in Monitor,1,109.99,2019-11-27 14:25:00,530 13th St, Boston,MA,02215 +295644,AAA Batteries (4-pack),1,2.99,2019-11-12 20:53:00,558 6th St, Portland,OR,97035 +295645,USB-C Charging Cable,1,11.95,2019-11-04 18:27:00,213 Ridge St, Los Angeles,CA,90001 +295646,Flatscreen TV,1,300.0,2019-11-09 15:13:00,133 Park St, New York City,NY,10001 +295647,34in Ultrawide Monitor,1,379.99,2019-11-14 21:12:00,720 4th St, Boston,MA,02215 +295648,Bose SoundSport Headphones,1,99.99,2019-11-23 16:05:00,920 Hill St, San Francisco,CA,94016 +295649,AA Batteries (4-pack),1,3.84,2019-11-15 20:52:00,118 8th St, Los Angeles,CA,90001 +295650,Apple Airpods Headphones,1,150.0,2019-11-17 10:08:00,643 Main St, Atlanta,GA,30301 +295651,Macbook Pro Laptop,1,1700.0,2019-11-27 14:41:00,842 Chestnut St, New York City,NY,10001 +295652,Macbook Pro Laptop,1,1700.0,2019-11-22 10:29:00,983 Highland St, San Francisco,CA,94016 +295653,AA Batteries (4-pack),1,3.84,2019-11-24 16:06:00,299 Spruce St, New York City,NY,10001 +295654,Apple Airpods Headphones,1,150.0,2019-11-18 12:50:00,635 Wilson St, San Francisco,CA,94016 +295655,Wired Headphones,1,11.99,2019-11-10 10:39:00,246 Ridge St, New York City,NY,10001 +295656,Wired Headphones,1,11.99,2019-11-04 16:26:00,320 Pine St, Atlanta,GA,30301 +295657,AA Batteries (4-pack),1,3.84,2019-11-02 18:29:00,596 Cherry St, Atlanta,GA,30301 +295658,Google Phone,1,600.0,2019-11-17 13:37:00,949 River St, San Francisco,CA,94016 +295659,AA Batteries (4-pack),3,3.84,2019-11-22 20:07:00,173 11th St, San Francisco,CA,94016 +295660,AAA Batteries (4-pack),2,2.99,2019-11-04 14:17:00,574 4th St, Los Angeles,CA,90001 +295661,USB-C Charging Cable,1,11.95,2019-11-23 07:22:00,359 1st St, Austin,TX,73301 +295662,Lightning Charging Cable,1,14.95,2019-11-13 16:12:00,900 10th St, Boston,MA,02215 +295663,AAA Batteries (4-pack),1,2.99,2019-11-17 17:08:00,592 Sunset St, Boston,MA,02215 +295664,Google Phone,1,600.0,2019-11-17 16:13:00,428 Jackson St, Boston,MA,02215 +259358,34in Ultrawide Monitor,1,379.99,2019-10-28 10:56:00,609 Cherry St, Dallas,TX,75001 +259359,27in 4K Gaming Monitor,1,389.99,2019-10-28 17:26:00,225 5th St, Los Angeles,CA,90001 +259360,AAA Batteries (4-pack),2,2.99,2019-10-24 17:20:00,967 12th St, New York City,NY,10001 +259361,27in FHD Monitor,1,149.99,2019-10-14 22:26:00,628 Jefferson St, New York City,NY,10001 +259362,Wired Headphones,1,11.99,2019-10-07 16:10:00,534 14th St, Los Angeles,CA,90001 +259363,AAA Batteries (4-pack),1,2.99,2019-10-01 18:55:00,976 Lake St, New York City,NY,10001 +259364,Wired Headphones,1,11.99,2019-10-29 11:02:00,874 North St, Los Angeles,CA,90001 +259365,Lightning Charging Cable,1,14.95,2019-10-29 11:19:00,127 12th St, Los Angeles,CA,90001 +259366,Apple Airpods Headphones,1,150.0,2019-10-20 11:52:00,955 9th St, Los Angeles,CA,90001 +259367,Apple Airpods Headphones,1,150.0,2019-10-16 16:19:00,742 14th St, San Francisco,CA,94016 +259368,27in FHD Monitor,1,149.99,2019-10-13 13:47:00,960 Ridge St, Boston,MA,02215 +259369,USB-C Charging Cable,1,11.95,2019-10-26 10:54:00,538 Johnson St, Portland,OR,97035 +259370,20in Monitor,1,109.99,2019-10-28 23:56:00,528 Forest St, San Francisco,CA,94016 +259371,iPhone,1,700.0,2019-10-26 12:12:00,306 Main St, Los Angeles,CA,90001 +259372,Wired Headphones,1,11.99,2019-10-17 11:07:00,434 Madison St, San Francisco,CA,94016 +259373,27in FHD Monitor,1,149.99,2019-10-31 20:15:00,924 Church St, San Francisco,CA,94016 +259374,Apple Airpods Headphones,1,150.0,2019-10-17 22:14:00,784 6th St, Los Angeles,CA,90001 +259375,USB-C Charging Cable,1,11.95,2019-10-10 08:53:00,557 Forest St, San Francisco,CA,94016 +259376,27in FHD Monitor,1,149.99,2019-10-12 00:03:00,218 14th St, San Francisco,CA,94016 +259377,Bose SoundSport Headphones,1,99.99,2019-10-23 16:49:00,88 Main St, Boston,MA,02215 +259378,Lightning Charging Cable,1,14.95,2019-10-18 16:45:00,997 1st St, Boston,MA,02215 +259379,27in 4K Gaming Monitor,1,389.99,2019-10-09 13:15:00,148 Lincoln St, San Francisco,CA,94016 +259380,Apple Airpods Headphones,1,150.0,2019-10-19 12:21:00,424 North St, San Francisco,CA,94016 +259381,ThinkPad Laptop,1,999.99,2019-10-25 08:44:00,887 12th St, New York City,NY,10001 +259382,Wired Headphones,1,11.99,2019-10-18 14:16:00,605 Ridge St, New York City,NY,10001 +259383,Apple Airpods Headphones,1,150.0,2019-10-13 12:32:00,597 6th St, Los Angeles,CA,90001 +259384,ThinkPad Laptop,1,999.99,2019-10-29 23:22:00,383 Cedar St, Dallas,TX,75001 +259385,Lightning Charging Cable,1,14.95,2019-10-28 15:28:00,892 1st St, Los Angeles,CA,90001 +259386,Lightning Charging Cable,1,14.95,2019-10-16 21:39:00,966 Hickory St, Los Angeles,CA,90001 +259387,Bose SoundSport Headphones,1,99.99,2019-10-01 13:58:00,695 6th St, New York City,NY,10001 +259388,AA Batteries (4-pack),1,3.84,2019-10-12 13:15:00,948 Forest St, San Francisco,CA,94016 +259389,AAA Batteries (4-pack),1,2.99,2019-10-17 14:14:00,661 Maple St, Dallas,TX,75001 +259390,Lightning Charging Cable,1,14.95,2019-10-08 12:35:00,134 Cherry St, Atlanta,GA,30301 +259391,Google Phone,1,600.0,2019-10-24 12:51:00,374 Hill St, Dallas,TX,75001 +259392,Wired Headphones,1,11.99,2019-10-19 15:26:00,374 Forest St, Los Angeles,CA,90001 +259393,AA Batteries (4-pack),1,3.84,2019-10-22 20:35:00,2 13th St, New York City,NY,10001 +259394,AA Batteries (4-pack),1,3.84,2019-10-24 18:58:00,909 Lake St, Atlanta,GA,30301 +259395,Bose SoundSport Headphones,1,99.99,2019-10-13 13:55:00,235 Adams St, Atlanta,GA,30301 +259396,AAA Batteries (4-pack),1,2.99,2019-10-23 22:40:00,218 Spruce St, Austin,TX,73301 +259397,Wired Headphones,1,11.99,2019-10-01 14:39:00,901 Walnut St, Atlanta,GA,30301 +259398,Bose SoundSport Headphones,1,99.99,2019-10-22 10:20:00,367 Pine St, Seattle,WA,98101 +259399,AAA Batteries (4-pack),2,2.99,2019-10-31 19:06:00,263 Willow St, San Francisco,CA,94016 +259400,27in 4K Gaming Monitor,1,389.99,2019-10-19 09:24:00,628 Forest St, Los Angeles,CA,90001 +259401,Wired Headphones,1,11.99,2019-10-15 23:39:00,291 Lincoln St, Los Angeles,CA,90001 +259402,AA Batteries (4-pack),3,3.84,2019-10-09 20:27:00,11 Lakeview St, Seattle,WA,98101 +259403,USB-C Charging Cable,1,11.95,2019-10-25 19:42:00,255 Cedar St, New York City,NY,10001 +259404,Bose SoundSport Headphones,1,99.99,2019-10-07 19:48:00,883 5th St, Boston,MA,02215 +259405,Bose SoundSport Headphones,1,99.99,2019-10-07 19:19:00,698 Center St, Dallas,TX,75001 +259406,AA Batteries (4-pack),1,3.84,2019-10-12 12:01:00,665 Elm St, Atlanta,GA,30301 +259407,Lightning Charging Cable,1,14.95,2019-10-30 12:09:00,189 Chestnut St, San Francisco,CA,94016 +259408,34in Ultrawide Monitor,1,379.99,2019-10-21 20:09:00,36 Pine St, Los Angeles,CA,90001 +259409,27in FHD Monitor,1,149.99,2019-10-03 16:26:00,854 Main St, Austin,TX,73301 +259410,AA Batteries (4-pack),2,3.84,2019-10-01 21:32:00,110 Hill St, San Francisco,CA,94016 +259411,AA Batteries (4-pack),1,3.84,2019-10-09 14:47:00,39 West St, San Francisco,CA,94016 +259412,Apple Airpods Headphones,1,150.0,2019-10-24 18:05:00,276 North St, Los Angeles,CA,90001 +259413,Bose SoundSport Headphones,1,99.99,2019-10-30 09:54:00,387 West St, Boston,MA,02215 +259414,Apple Airpods Headphones,1,150.0,2019-10-08 21:01:00,29 Washington St, San Francisco,CA,94016 +259415,AAA Batteries (4-pack),2,2.99,2019-10-16 19:13:00,280 8th St, Portland,OR,97035 +259416,Vareebadd Phone,1,400.0,2019-10-10 19:10:00,680 South St, Dallas,TX,75001 +259417,Wired Headphones,1,11.99,2019-10-08 16:27:00,908 Washington St, Seattle,WA,98101 +259418,iPhone,1,700.0,2019-10-25 12:06:00,253 8th St, Austin,TX,73301 +259419,USB-C Charging Cable,1,11.95,2019-10-28 08:13:00,820 South St, Los Angeles,CA,90001 +259420,Google Phone,1,600.0,2019-10-18 08:54:00,791 Forest St, Los Angeles,CA,90001 +259420,USB-C Charging Cable,2,11.95,2019-10-18 08:54:00,791 Forest St, Los Angeles,CA,90001 +259421,Wired Headphones,1,11.99,2019-10-19 16:52:00,240 Chestnut St, San Francisco,CA,94016 +259422,Google Phone,1,600.0,2019-10-05 04:53:00,849 Ridge St, San Francisco,CA,94016 +259422,USB-C Charging Cable,1,11.95,2019-10-05 04:53:00,849 Ridge St, San Francisco,CA,94016 +259423,AA Batteries (4-pack),1,3.84,2019-10-14 15:37:00,32 12th St, New York City,NY,10001 +259424,USB-C Charging Cable,2,11.95,2019-10-31 22:54:00,64 Lake St, Atlanta,GA,30301 +259425,Lightning Charging Cable,1,14.95,2019-10-18 11:36:00,81 Spruce St, Austin,TX,73301 +259426,27in 4K Gaming Monitor,1,389.99,2019-10-17 10:43:00,595 6th St, Dallas,TX,75001 +259427,iPhone,1,700.0,2019-10-06 21:23:00,528 13th St, New York City,NY,10001 +259428,AA Batteries (4-pack),1,3.84,2019-10-07 22:09:00,891 14th St, Los Angeles,CA,90001 +259429,Lightning Charging Cable,1,14.95,2019-10-21 19:52:00,632 Willow St, San Francisco,CA,94016 +259430,USB-C Charging Cable,1,11.95,2019-10-02 23:59:00,212 Hill St, San Francisco,CA,94016 +259431,27in FHD Monitor,1,149.99,2019-10-23 13:13:00,962 South St, Boston,MA,02215 +259432,iPhone,1,700.0,2019-10-20 15:55:00,47 4th St, Boston,MA,02215 +259433,Bose SoundSport Headphones,1,99.99,2019-10-11 09:01:00,114 Park St, Boston,MA,02215 +259434,Lightning Charging Cable,1,14.95,2019-10-21 23:05:00,499 2nd St, Boston,MA,02215 +259435,Wired Headphones,1,11.99,2019-10-17 16:00:00,664 9th St, Boston,MA,02215 +259436,Wired Headphones,2,11.99,2019-10-26 00:30:00,23 Walnut St, San Francisco,CA,94016 +259437,AA Batteries (4-pack),1,3.84,2019-10-02 18:52:00,935 Willow St, Seattle,WA,98101 +259438,iPhone,1,700.0,2019-10-29 09:47:00,176 5th St, Los Angeles,CA,90001 +259438,Lightning Charging Cable,1,14.95,2019-10-29 09:47:00,176 5th St, Los Angeles,CA,90001 +259439,USB-C Charging Cable,1,11.95,2019-10-15 09:57:00,5 Hill St, San Francisco,CA,94016 +259440,AA Batteries (4-pack),1,3.84,2019-10-04 10:22:00,71 Meadow St, Los Angeles,CA,90001 +259441,AA Batteries (4-pack),1,3.84,2019-10-26 14:32:00,413 7th St, San Francisco,CA,94016 +259442,USB-C Charging Cable,1,11.95,2019-10-05 19:07:00,966 14th St, Los Angeles,CA,90001 +259443,Vareebadd Phone,1,400.0,2019-10-01 10:20:00,875 Lakeview St, Los Angeles,CA,90001 +259444,Google Phone,1,600.0,2019-10-29 14:27:00,982 8th St, Austin,TX,73301 +259445,USB-C Charging Cable,1,11.95,2019-10-29 15:45:00,301 4th St, Atlanta,GA,30301 +259446,20in Monitor,1,109.99,2019-10-16 15:01:00,796 Washington St, Los Angeles,CA,90001 +259447,27in FHD Monitor,1,149.99,2019-10-02 16:55:00,886 1st St, San Francisco,CA,94016 +259448,AA Batteries (4-pack),2,3.84,2019-10-18 21:47:00,145 River St, Los Angeles,CA,90001 +259449,AA Batteries (4-pack),1,3.84,2019-10-11 14:31:00,947 Sunset St, Boston,MA,02215 +259450,AAA Batteries (4-pack),1,2.99,2019-10-16 19:49:00,796 8th St, San Francisco,CA,94016 +259451,34in Ultrawide Monitor,1,379.99,2019-10-13 19:46:00,951 Elm St, Dallas,TX,75001 +259452,USB-C Charging Cable,1,11.95,2019-10-27 02:21:00,709 Madison St, San Francisco,CA,94016 +259453,Flatscreen TV,1,300.0,2019-10-10 12:59:00,94 Spruce St, Los Angeles,CA,90001 +259454,Wired Headphones,1,11.99,2019-10-02 18:36:00,387 7th St, New York City,NY,10001 +259455,Lightning Charging Cable,1,14.95,2019-10-13 12:32:00,750 7th St, San Francisco,CA,94016 +259456,Lightning Charging Cable,1,14.95,2019-10-25 22:06:00,271 River St, Dallas,TX,75001 +259457,Apple Airpods Headphones,1,150.0,2019-10-25 08:51:00,860 Main St, Boston,MA,02215 +259458,34in Ultrawide Monitor,1,379.99,2019-10-08 09:08:00,728 1st St, Portland,OR,97035 +259458,ThinkPad Laptop,1,999.99,2019-10-08 09:08:00,728 1st St, Portland,OR,97035 +259459,Bose SoundSport Headphones,1,99.99,2019-10-25 10:20:00,384 Ridge St, Boston,MA,02215 +259460,Apple Airpods Headphones,1,150.0,2019-10-11 17:51:00,368 Maple St, Atlanta,GA,30301 +259461,Apple Airpods Headphones,1,150.0,2019-10-08 15:21:00,495 Hickory St, Boston,MA,02215 +259462,USB-C Charging Cable,1,11.95,2019-10-18 12:48:00,582 2nd St, Boston,MA,02215 +259463,Wired Headphones,1,11.99,2019-10-27 00:49:00,647 8th St, Los Angeles,CA,90001 +259464,Lightning Charging Cable,1,14.95,2019-10-24 16:04:00,478 Church St, Austin,TX,73301 +259465,Wired Headphones,1,11.99,2019-10-08 12:39:00,953 West St, San Francisco,CA,94016 +259466,USB-C Charging Cable,1,11.95,2019-10-26 10:29:00,454 Ridge St, New York City,NY,10001 +259467,AA Batteries (4-pack),3,3.84,2019-10-06 12:22:00,512 1st St, Austin,TX,73301 +259468,Bose SoundSport Headphones,1,99.99,2019-10-28 14:13:00,221 River St, Portland,OR,97035 +259469,Macbook Pro Laptop,1,1700.0,2019-10-19 19:28:00,822 9th St, Atlanta,GA,30301 +259470,27in FHD Monitor,1,149.99,2019-10-28 13:41:00,226 Sunset St, San Francisco,CA,94016 +259471,Google Phone,1,600.0,2019-10-12 16:43:00,243 West St, Los Angeles,CA,90001 +259472,27in FHD Monitor,1,149.99,2019-10-25 14:46:00,144 Ridge St, Atlanta,GA,30301 +259473,Apple Airpods Headphones,1,150.0,2019-10-24 10:43:00,26 Chestnut St, Atlanta,GA,30301 +259474,Apple Airpods Headphones,1,150.0,2019-10-21 15:21:00,460 14th St, Austin,TX,73301 +259475,Bose SoundSport Headphones,1,99.99,2019-10-05 11:33:00,339 Spruce St, Los Angeles,CA,90001 +259476,Google Phone,1,600.0,2019-10-13 10:23:00,995 Main St, San Francisco,CA,94016 +259477,LG Dryer,1,600.0,2019-10-12 09:38:00,822 North St, San Francisco,CA,94016 +259477,AAA Batteries (4-pack),1,2.99,2019-10-12 09:38:00,822 North St, San Francisco,CA,94016 +259478,AAA Batteries (4-pack),2,2.99,2019-10-12 19:49:00,874 1st St, New York City,NY,10001 +259479,20in Monitor,1,109.99,2019-10-29 18:42:00,43 Sunset St, Atlanta,GA,30301 +259480,AAA Batteries (4-pack),1,2.99,2019-10-14 23:10:00,231 Ridge St, New York City,NY,10001 +259481,USB-C Charging Cable,1,11.95,2019-10-08 15:53:00,205 12th St, Seattle,WA,98101 +259482,Lightning Charging Cable,1,14.95,2019-10-24 16:53:00,280 Cherry St, New York City,NY,10001 +259483,AAA Batteries (4-pack),1,2.99,2019-10-23 22:12:00,872 Lakeview St, San Francisco,CA,94016 +259484,AAA Batteries (4-pack),1,2.99,2019-10-03 14:40:00,27 Cedar St, Seattle,WA,98101 +259485,27in 4K Gaming Monitor,1,389.99,2019-10-23 13:57:00,118 6th St, Los Angeles,CA,90001 +259486,34in Ultrawide Monitor,1,379.99,2019-10-27 13:22:00,766 Hickory St, San Francisco,CA,94016 +259487,ThinkPad Laptop,1,999.99,2019-10-09 12:35:00,699 Lake St, San Francisco,CA,94016 +259488,USB-C Charging Cable,1,11.95,2019-10-06 13:59:00,388 Highland St, New York City,NY,10001 +259489,Apple Airpods Headphones,1,150.0,2019-10-10 13:10:00,778 Maple St, Atlanta,GA,30301 +259490,Macbook Pro Laptop,1,1700.0,2019-10-29 04:08:00,721 8th St, New York City,NY,10001 +259491,Lightning Charging Cable,1,14.95,2019-10-05 07:19:00,592 Highland St, Los Angeles,CA,90001 +259492,USB-C Charging Cable,1,11.95,2019-10-27 10:18:00,930 Elm St, Los Angeles,CA,90001 +259493,Flatscreen TV,1,300.0,2019-10-19 06:12:00,336 Wilson St, Boston,MA,02215 +259494,Flatscreen TV,1,300.0,2019-10-06 19:12:00,252 Lake St, Atlanta,GA,30301 +259495,USB-C Charging Cable,1,11.95,2019-10-07 09:10:00,275 Washington St, Boston,MA,02215 +259496,Lightning Charging Cable,1,14.95,2019-10-13 23:19:00,325 Cherry St, San Francisco,CA,94016 +259497,Apple Airpods Headphones,1,150.0,2019-10-29 11:20:00,264 Willow St, Austin,TX,73301 +259498,Bose SoundSport Headphones,1,99.99,2019-10-11 20:58:00,253 8th St, Los Angeles,CA,90001 +259499,AAA Batteries (4-pack),2,2.99,2019-10-23 20:00:00,670 West St, Los Angeles,CA,90001 +259500,Wired Headphones,1,11.99,2019-10-21 09:04:00,221 Wilson St, Los Angeles,CA,90001 +259501,AA Batteries (4-pack),1,3.84,2019-10-16 12:17:00,7 11th St, Dallas,TX,75001 +259502,Wired Headphones,1,11.99,2019-10-06 08:37:00,381 Center St, Dallas,TX,75001 +259503,Lightning Charging Cable,1,14.95,2019-10-23 15:07:00,130 Highland St, San Francisco,CA,94016 +259504,AA Batteries (4-pack),1,3.84,2019-10-22 23:14:00,178 Washington St, Dallas,TX,75001 +259505,Apple Airpods Headphones,1,150.0,2019-10-24 22:21:00,375 River St, Los Angeles,CA,90001 +259506,Lightning Charging Cable,1,14.95,2019-10-24 01:52:00,114 Dogwood St, Boston,MA,02215 +259507,AAA Batteries (4-pack),1,2.99,2019-10-23 06:32:00,359 Lincoln St, Boston,MA,02215 +259508,USB-C Charging Cable,1,11.95,2019-10-28 08:58:00,63 South St, San Francisco,CA,94016 +259509,AAA Batteries (4-pack),2,2.99,2019-10-16 14:48:00,68 Chestnut St, New York City,NY,10001 +259510,AA Batteries (4-pack),4,3.84,2019-10-14 11:54:00,817 Maple St, San Francisco,CA,94016 +259511,AAA Batteries (4-pack),2,2.99,2019-10-03 13:05:00,237 Adams St, Los Angeles,CA,90001 +259512,Wired Headphones,1,11.99,2019-10-31 15:38:00,758 11th St, New York City,NY,10001 +259513,Lightning Charging Cable,1,14.95,2019-10-05 17:17:00,499 7th St, Boston,MA,02215 +259514,Lightning Charging Cable,1,14.95,2019-10-02 21:05:00,211 West St, San Francisco,CA,94016 +259515,Flatscreen TV,1,300.0,2019-10-12 10:35:00,279 Madison St, Austin,TX,73301 +259516,USB-C Charging Cable,1,11.95,2019-10-19 08:13:00,169 Maple St, Atlanta,GA,30301 +259517,Apple Airpods Headphones,1,150.0,2019-10-01 20:35:00,92 West St, San Francisco,CA,94016 +259518,34in Ultrawide Monitor,1,379.99,2019-10-25 14:09:00,662 West St, San Francisco,CA,94016 +259519,Google Phone,1,600.0,2019-10-14 19:02:00,448 11th St, Los Angeles,CA,90001 +259520,AA Batteries (4-pack),1,3.84,2019-10-09 20:07:00,427 Washington St, San Francisco,CA,94016 +259521,Wired Headphones,1,11.99,2019-10-03 11:40:00,24 Wilson St, Atlanta,GA,30301 +259522,Lightning Charging Cable,1,14.95,2019-10-27 06:57:00,653 5th St, New York City,NY,10001 +259523,27in FHD Monitor,1,149.99,2019-10-11 05:09:00,697 Chestnut St, New York City,NY,10001 +259524,34in Ultrawide Monitor,1,379.99,2019-10-12 21:04:00,384 Chestnut St, San Francisco,CA,94016 +259525,Lightning Charging Cable,1,14.95,2019-10-07 19:46:00,270 Main St, Los Angeles,CA,90001 +259526,Lightning Charging Cable,1,14.95,2019-10-07 13:14:00,836 Jackson St, Boston,MA,02215 +259527,Apple Airpods Headphones,1,150.0,2019-10-18 22:10:00,293 Hickory St, Austin,TX,73301 +259528,27in FHD Monitor,1,149.99,2019-10-22 22:48:00,936 Sunset St, Seattle,WA,98101 +259529,iPhone,1,700.0,2019-10-14 14:41:00,84 Washington St, San Francisco,CA,94016 +259529,Apple Airpods Headphones,1,150.0,2019-10-14 14:41:00,84 Washington St, San Francisco,CA,94016 +259529,Wired Headphones,1,11.99,2019-10-14 14:41:00,84 Washington St, San Francisco,CA,94016 +259530,AA Batteries (4-pack),1,3.84,2019-10-31 11:45:00,521 Maple St, Los Angeles,CA,90001 +259531,Lightning Charging Cable,1,14.95,2019-10-27 14:18:00,23 13th St, Boston,MA,02215 +259532,Apple Airpods Headphones,1,150.0,2019-10-28 11:09:00,895 Lincoln St, Boston,MA,02215 +259533,AA Batteries (4-pack),3,3.84,2019-10-19 17:38:00,730 Lakeview St, New York City,NY,10001 +259534,Wired Headphones,1,11.99,2019-10-22 19:23:00,714 River St, San Francisco,CA,94016 +259535,Wired Headphones,1,11.99,2019-10-09 16:11:00,812 11th St, Dallas,TX,75001 +259536,Lightning Charging Cable,1,14.95,2019-10-05 00:33:00,568 14th St, Atlanta,GA,30301 +259537,AAA Batteries (4-pack),2,2.99,2019-10-02 16:01:00,387 12th St, San Francisco,CA,94016 +259537,USB-C Charging Cable,1,11.95,2019-10-02 16:01:00,387 12th St, San Francisco,CA,94016 +259538,Lightning Charging Cable,1,14.95,2019-10-27 16:42:00,600 Hill St, Atlanta,GA,30301 +259539,AAA Batteries (4-pack),1,2.99,2019-10-27 12:48:00,444 Lakeview St, Portland,OR,97035 +259540,AAA Batteries (4-pack),4,2.99,2019-10-19 07:27:00,545 7th St, New York City,NY,10001 +259541,Bose SoundSport Headphones,1,99.99,2019-10-22 15:51:00,563 12th St, Dallas,TX,75001 +259542,AAA Batteries (4-pack),2,2.99,2019-10-22 00:11:00,227 Lake St, Boston,MA,02215 +259543,AAA Batteries (4-pack),1,2.99,2019-10-06 14:00:00,668 Johnson St, San Francisco,CA,94016 +259544,Wired Headphones,1,11.99,2019-10-28 10:26:00,238 Ridge St, New York City,NY,10001 +259545,Wired Headphones,1,11.99,2019-10-04 11:41:00,234 Sunset St, Austin,TX,73301 +259546,AA Batteries (4-pack),2,3.84,2019-10-22 18:05:00,113 Spruce St, Seattle,WA,98101 +259547,AAA Batteries (4-pack),1,2.99,2019-10-12 14:17:00,908 Hickory St, Atlanta,GA,30301 +259548,27in 4K Gaming Monitor,1,389.99,2019-10-30 16:01:00,941 1st St, Dallas,TX,75001 +259549,Wired Headphones,1,11.99,2019-10-22 07:43:00,479 Spruce St, New York City,NY,10001 +259550,USB-C Charging Cable,2,11.95,2019-10-24 16:14:00,359 6th St, Dallas,TX,75001 +259551,20in Monitor,1,109.99,2019-10-29 19:50:00,836 North St, Boston,MA,02215 +259552,AAA Batteries (4-pack),1,2.99,2019-10-12 09:05:00,663 Spruce St, Los Angeles,CA,90001 +259553,Google Phone,1,600.0,2019-10-04 13:30:00,149 Cedar St, Portland,OR,97035 +259554,Apple Airpods Headphones,1,150.0,2019-10-07 15:22:00,751 Hill St, Los Angeles,CA,90001 +259554,USB-C Charging Cable,1,11.95,2019-10-07 15:22:00,751 Hill St, Los Angeles,CA,90001 +259555,Lightning Charging Cable,1,14.95,2019-10-05 13:02:00,928 Park St, Los Angeles,CA,90001 +259556,AAA Batteries (4-pack),1,2.99,2019-10-08 14:45:00,946 South St, Los Angeles,CA,90001 +259557,iPhone,1,700.0,2019-10-12 09:56:00,605 13th St, Boston,MA,02215 +259558,AA Batteries (4-pack),1,3.84,2019-10-26 20:35:00,469 Lincoln St, New York City,NY,10001 +259559,USB-C Charging Cable,1,11.95,2019-10-16 01:41:00,589 Dogwood St, San Francisco,CA,94016 +259560,Wired Headphones,1,11.99,2019-10-25 12:29:00,669 5th St, Los Angeles,CA,90001 +259561,AAA Batteries (4-pack),1,2.99,2019-10-27 20:38:00,65 Jefferson St, Portland,OR,97035 +259562,34in Ultrawide Monitor,1,379.99,2019-10-05 20:03:00,85 8th St, Boston,MA,02215 +259563,AA Batteries (4-pack),1,3.84,2019-10-17 20:23:00,454 Highland St, New York City,NY,10001 +259564,AAA Batteries (4-pack),1,2.99,2019-10-24 11:47:00,55 Cherry St, San Francisco,CA,94016 +259565,AAA Batteries (4-pack),2,2.99,2019-10-21 09:25:00,358 8th St, Seattle,WA,98101 +259566,Macbook Pro Laptop,1,1700.0,2019-10-20 23:46:00,989 Main St, Los Angeles,CA,90001 +259567,Lightning Charging Cable,1,14.95,2019-10-21 15:21:00,667 Forest St, Los Angeles,CA,90001 +259568,USB-C Charging Cable,2,11.95,2019-10-31 02:08:00,312 Highland St, New York City,NY,10001 +259569,Lightning Charging Cable,2,14.95,2019-10-21 10:38:00,50 7th St, New York City,NY,10001 +259570,27in 4K Gaming Monitor,1,389.99,2019-10-31 18:05:00,854 Adams St, San Francisco,CA,94016 +259571,Apple Airpods Headphones,1,150.0,2019-10-14 00:57:00,844 14th St, Dallas,TX,75001 +259572,Wired Headphones,2,11.99,2019-10-26 10:53:00,668 Church St, San Francisco,CA,94016 +259573,USB-C Charging Cable,1,11.95,2019-10-23 18:59:00,606 2nd St, Atlanta,GA,30301 +259574,Apple Airpods Headphones,1,150.0,2019-10-06 21:27:00,310 1st St, New York City,NY,10001 +259575,AAA Batteries (4-pack),3,2.99,2019-10-01 05:32:00,434 Center St, Seattle,WA,98101 +259576,Apple Airpods Headphones,1,150.0,2019-10-01 09:41:00,682 Hickory St, Los Angeles,CA,90001 +259577,Wired Headphones,1,11.99,2019-10-05 21:57:00,437 Jefferson St, Los Angeles,CA,90001 +259578,Vareebadd Phone,1,400.0,2019-10-29 00:32:00,858 Willow St, San Francisco,CA,94016 +259579,Apple Airpods Headphones,1,150.0,2019-10-09 19:26:00,588 6th St, Portland,OR,97035 +259580,iPhone,1,700.0,2019-10-28 14:22:00,885 Willow St, Dallas,TX,75001 +259581,Bose SoundSport Headphones,1,99.99,2019-10-27 18:41:00,227 Lincoln St, Dallas,TX,75001 +259582,ThinkPad Laptop,1,999.99,2019-10-04 14:43:00,124 14th St, Dallas,TX,75001 +259583,Bose SoundSport Headphones,1,99.99,2019-10-20 17:44:00,686 Johnson St, Atlanta,GA,30301 +259584,iPhone,1,700.0,2019-10-20 21:05:00,311 Maple St, Seattle,WA,98101 +259584,Lightning Charging Cable,1,14.95,2019-10-20 21:05:00,311 Maple St, Seattle,WA,98101 +259585,AAA Batteries (4-pack),1,2.99,2019-10-16 19:00:00,751 Pine St, Seattle,WA,98101 +259586,USB-C Charging Cable,1,11.95,2019-10-27 11:18:00,133 12th St, San Francisco,CA,94016 +259587,Lightning Charging Cable,1,14.95,2019-10-11 11:25:00,117 Jackson St, San Francisco,CA,94016 +259588,USB-C Charging Cable,1,11.95,2019-10-14 12:03:00,554 Main St, Atlanta,GA,30301 +259589,27in 4K Gaming Monitor,1,389.99,2019-10-30 08:59:00,793 Park St, San Francisco,CA,94016 +259590,AA Batteries (4-pack),1,3.84,2019-10-02 12:31:00,792 Wilson St, San Francisco,CA,94016 +259591,AAA Batteries (4-pack),1,2.99,2019-10-08 15:55:00,999 7th St, Boston,MA,02215 +259592,Google Phone,1,600.0,2019-10-12 10:02:00,948 9th St, Boston,MA,02215 +259593,iPhone,1,700.0,2019-10-31 10:17:00,61 6th St, Dallas,TX,75001 +259594,AAA Batteries (4-pack),5,2.99,2019-10-18 10:06:00,165 Lincoln St, Los Angeles,CA,90001 +259595,Bose SoundSport Headphones,1,99.99,2019-10-22 12:22:00,735 Ridge St, San Francisco,CA,94016 +259596,Wired Headphones,1,11.99,2019-10-03 09:48:00,648 Elm St, Portland,OR,97035 +259597,Lightning Charging Cable,1,14.95,2019-10-22 12:26:00,600 Spruce St, Dallas,TX,75001 +259598,Lightning Charging Cable,1,14.95,2019-10-22 21:14:00,373 14th St, Los Angeles,CA,90001 +259599,AA Batteries (4-pack),2,3.84,2019-10-02 03:48:00,435 Cedar St, Seattle,WA,98101 +259600,Lightning Charging Cable,1,14.95,2019-10-14 09:12:00,530 Chestnut St, San Francisco,CA,94016 +259601,Lightning Charging Cable,1,14.95,2019-10-08 01:45:00,112 Ridge St, Atlanta,GA,30301 +259602,AAA Batteries (4-pack),2,2.99,2019-10-09 03:13:00,594 Lincoln St, Los Angeles,CA,90001 +259603,AA Batteries (4-pack),1,3.84,2019-10-07 20:39:00,437 Church St, Dallas,TX,75001 +259604,Apple Airpods Headphones,1,150.0,2019-10-04 21:57:00,62 Hill St, Los Angeles,CA,90001 +259605,Bose SoundSport Headphones,1,99.99,2019-10-11 16:44:00,746 6th St, Austin,TX,73301 +259606,USB-C Charging Cable,1,11.95,2019-10-08 16:53:00,263 Meadow St, Seattle,WA,98101 +259607,iPhone,1,700.0,2019-10-12 12:01:00,358 Center St, Portland,OR,97035 +259607,Lightning Charging Cable,1,14.95,2019-10-12 12:01:00,358 Center St, Portland,OR,97035 +259608,27in 4K Gaming Monitor,1,389.99,2019-10-01 08:55:00,447 Ridge St, Austin,TX,73301 +259609,USB-C Charging Cable,1,11.95,2019-10-03 12:01:00,112 West St, San Francisco,CA,94016 +259610,Lightning Charging Cable,1,14.95,2019-10-18 20:37:00,269 12th St, Boston,MA,02215 +259611,AAA Batteries (4-pack),4,2.99,2019-10-25 15:00:00,554 North St, Portland,OR,97035 +259612,USB-C Charging Cable,1,11.95,2019-10-01 08:41:00,735 Madison St, San Francisco,CA,94016 +259613,Apple Airpods Headphones,1,150.0,2019-10-20 22:52:00,632 Center St, Boston,MA,02215 +259614,AA Batteries (4-pack),1,3.84,2019-10-06 21:23:00,450 Highland St, Dallas,TX,75001 +259615,AA Batteries (4-pack),3,3.84,2019-10-02 22:45:00,282 North St, New York City,NY,10001 +259616,AA Batteries (4-pack),3,3.84,2019-10-06 22:34:00,809 Sunset St, Los Angeles,CA,90001 +259617,Wired Headphones,1,11.99,2019-10-02 14:02:00,416 Dogwood St, Los Angeles,CA,90001 +259618,34in Ultrawide Monitor,1,379.99,2019-10-03 16:16:00,11 Forest St, Dallas,TX,75001 +259619,Lightning Charging Cable,1,14.95,2019-10-08 17:48:00,151 Hickory St, Los Angeles,CA,90001 +259620,Google Phone,1,600.0,2019-10-29 12:19:00,514 10th St, Dallas,TX,75001 +259620,USB-C Charging Cable,1,11.95,2019-10-29 12:19:00,514 10th St, Dallas,TX,75001 +259621,Bose SoundSport Headphones,1,99.99,2019-10-19 06:46:00,997 Lincoln St, Seattle,WA,98101 +259622,AA Batteries (4-pack),1,3.84,2019-10-25 11:54:00,33 2nd St, Portland,OR,97035 +259623,Apple Airpods Headphones,1,150.0,2019-10-20 21:12:00,128 River St, San Francisco,CA,94016 +259624,34in Ultrawide Monitor,1,379.99,2019-10-30 12:45:00,60 9th St, Austin,TX,73301 +259625,AAA Batteries (4-pack),1,2.99,2019-10-30 18:37:00,946 13th St, San Francisco,CA,94016 +259626,AAA Batteries (4-pack),2,2.99,2019-10-22 15:15:00,419 South St, Seattle,WA,98101 +259627,AAA Batteries (4-pack),1,2.99,2019-10-09 20:05:00,30 Lake St, San Francisco,CA,94016 +259628,Lightning Charging Cable,1,14.95,2019-10-03 18:36:00,432 12th St, San Francisco,CA,94016 +259629,Lightning Charging Cable,1,14.95,2019-10-13 15:15:00,80 Hickory St, Seattle,WA,98101 +259630,34in Ultrawide Monitor,1,379.99,2019-10-06 18:22:00,615 Wilson St, Seattle,WA,98101 +259631,AA Batteries (4-pack),2,3.84,2019-10-25 20:34:00,668 Madison St, San Francisco,CA,94016 +259632,Lightning Charging Cable,1,14.95,2019-10-02 11:38:00,909 Main St, Portland,OR,97035 +259633,Wired Headphones,1,11.99,2019-10-06 22:44:00,785 Lincoln St, Los Angeles,CA,90001 +259634,Macbook Pro Laptop,1,1700.0,2019-10-06 11:33:00,122 2nd St, New York City,NY,10001 +259635,AAA Batteries (4-pack),1,2.99,2019-10-08 05:15:00,115 Meadow St, San Francisco,CA,94016 +259636,iPhone,1,700.0,2019-10-26 15:57:00,489 Madison St, Los Angeles,CA,90001 +259637,Wired Headphones,2,11.99,2019-10-22 16:26:00,361 River St, Atlanta,GA,30301 +259638,AAA Batteries (4-pack),1,2.99,2019-10-24 14:47:00,498 Church St, Dallas,TX,75001 +259639,AAA Batteries (4-pack),2,2.99,2019-10-31 12:06:00,375 Jefferson St, Dallas,TX,75001 +259640,USB-C Charging Cable,1,11.95,2019-10-18 12:42:00,656 Hill St, Boston,MA,02215 +259641,AAA Batteries (4-pack),1,2.99,2019-10-21 15:06:00,95 Forest St, San Francisco,CA,94016 +259642,AA Batteries (4-pack),1,3.84,2019-10-15 03:56:00,814 13th St, Seattle,WA,98101 +259643,AAA Batteries (4-pack),1,2.99,2019-10-26 07:01:00,301 9th St, Portland,OR,97035 +259644,ThinkPad Laptop,1,999.99,2019-10-01 13:26:00,477 Madison St, Portland,OR,97035 +259645,Apple Airpods Headphones,1,150.0,2019-10-17 14:09:00,249 Lake St, San Francisco,CA,94016 +259646,AA Batteries (4-pack),1,3.84,2019-10-16 21:42:00,281 Cedar St, San Francisco,CA,94016 +259647,Apple Airpods Headphones,1,150.0,2019-10-12 12:21:00,201 5th St, Boston,MA,02215 +259648,Bose SoundSport Headphones,1,99.99,2019-10-26 06:03:00,270 Forest St, Atlanta,GA,30301 +259649,AAA Batteries (4-pack),1,2.99,2019-10-22 19:59:00,966 Sunset St, San Francisco,CA,94016 +259650,AAA Batteries (4-pack),2,2.99,2019-10-06 17:24:00,805 Spruce St, Atlanta,GA,30301 +259651,AA Batteries (4-pack),4,3.84,2019-10-16 01:41:00,486 Main St, Los Angeles,CA,90001 +259652,USB-C Charging Cable,1,11.95,2019-10-10 23:05:00,736 Johnson St, New York City,NY,10001 +259653,Apple Airpods Headphones,1,150.0,2019-10-19 19:52:00,858 Hickory St, San Francisco,CA,94016 +259654,Google Phone,1,600.0,2019-10-06 20:46:00,271 Johnson St, Seattle,WA,98101 +259655,Google Phone,1,600.0,2019-10-13 14:41:00,154 Johnson St, New York City,NY,10001 +259656,iPhone,1,700.0,2019-10-05 19:33:00,173 Willow St, Dallas,TX,75001 +259657,27in 4K Gaming Monitor,1,389.99,2019-10-13 19:24:00,171 Forest St, San Francisco,CA,94016 +259658,AAA Batteries (4-pack),2,2.99,2019-10-03 23:17:00,79 5th St, Los Angeles,CA,90001 +259659,27in FHD Monitor,1,149.99,2019-10-19 13:13:00,354 Sunset St, Los Angeles,CA,90001 +259660,Google Phone,1,600.0,2019-10-19 17:07:00,957 2nd St, Boston,MA,02215 +259661,20in Monitor,1,109.99,2019-10-18 11:55:00,449 9th St, San Francisco,CA,94016 +259662,Lightning Charging Cable,1,14.95,2019-10-29 21:50:00,108 Cedar St, Los Angeles,CA,90001 +259663,USB-C Charging Cable,1,11.95,2019-10-11 15:16:00,138 9th St, Dallas,TX,75001 +259664,AAA Batteries (4-pack),2,2.99,2019-10-06 14:00:00,766 Hickory St, Los Angeles,CA,90001 +259665,Macbook Pro Laptop,1,1700.0,2019-10-10 17:34:00,117 River St, Atlanta,GA,30301 +259666,27in FHD Monitor,1,149.99,2019-10-27 22:37:00,962 12th St, San Francisco,CA,94016 +259667,AA Batteries (4-pack),1,3.84,2019-10-02 09:27:00,890 13th St, Boston,MA,02215 +259668,Lightning Charging Cable,1,14.95,2019-10-09 15:51:00,856 Jackson St, Los Angeles,CA,90001 +259669,27in FHD Monitor,1,149.99,2019-10-06 01:56:00,448 Maple St, Portland,OR,97035 +259670,AAA Batteries (4-pack),1,2.99,2019-10-17 23:53:00,658 Willow St, Austin,TX,73301 +259671,iPhone,1,700.0,2019-10-26 15:05:00,490 14th St, Seattle,WA,98101 +259672,AA Batteries (4-pack),1,3.84,2019-10-24 15:50:00,239 North St, Seattle,WA,98101 +259673,AA Batteries (4-pack),1,3.84,2019-10-18 20:01:00,746 12th St, Atlanta,GA,30301 +259674,ThinkPad Laptop,1,999.99,2019-10-06 20:30:00,325 14th St, San Francisco,CA,94016 +259675,Apple Airpods Headphones,1,150.0,2019-10-09 13:30:00,193 Meadow St, San Francisco,CA,94016 +259675,Wired Headphones,1,11.99,2019-10-09 13:30:00,193 Meadow St, San Francisco,CA,94016 +259676,AA Batteries (4-pack),1,3.84,2019-10-09 19:43:00,963 13th St, Los Angeles,CA,90001 +259677,34in Ultrawide Monitor,1,379.99,2019-10-14 17:16:00,363 Chestnut St, Atlanta,GA,30301 +259678,Vareebadd Phone,1,400.0,2019-10-29 09:16:00,782 Maple St, San Francisco,CA,94016 +259679,AA Batteries (4-pack),1,3.84,2019-10-24 18:42:00,76 West St, New York City,NY,10001 +259680,27in 4K Gaming Monitor,1,389.99,2019-10-06 09:08:00,239 Johnson St, Los Angeles,CA,90001 +259681,27in FHD Monitor,1,149.99,2019-10-21 13:31:00,499 Maple St, Los Angeles,CA,90001 +259682,Wired Headphones,1,11.99,2019-10-20 04:35:00,256 2nd St, Los Angeles,CA,90001 +259683,Apple Airpods Headphones,1,150.0,2019-10-17 11:13:00,104 Elm St, Los Angeles,CA,90001 +259684,Bose SoundSport Headphones,1,99.99,2019-10-21 18:50:00,300 North St, Los Angeles,CA,90001 +259685,Apple Airpods Headphones,1,150.0,2019-10-15 18:25:00,509 6th St, Dallas,TX,75001 +259686,AA Batteries (4-pack),1,3.84,2019-10-31 12:58:00,879 Ridge St, New York City,NY,10001 +259687,USB-C Charging Cable,1,11.95,2019-10-12 17:04:00,826 West St, San Francisco,CA,94016 +259688,AA Batteries (4-pack),1,3.84,2019-10-27 13:52:00,314 1st St, Atlanta,GA,30301 +259688,Bose SoundSport Headphones,1,99.99,2019-10-27 13:52:00,314 1st St, Atlanta,GA,30301 +259689,Apple Airpods Headphones,1,150.0,2019-10-08 19:28:00,807 12th St, Dallas,TX,75001 +259690,AAA Batteries (4-pack),1,2.99,2019-10-09 15:29:00,239 Park St, San Francisco,CA,94016 +259691,Lightning Charging Cable,1,14.95,2019-10-05 13:34:00,350 Main St, San Francisco,CA,94016 +259692,Flatscreen TV,1,300.0,2019-10-21 21:13:00,384 11th St, Dallas,TX,75001 +259693,Bose SoundSport Headphones,1,99.99,2019-10-16 16:14:00,497 Maple St, Los Angeles,CA,90001 +259694,Wired Headphones,1,11.99,2019-10-14 17:11:00,608 9th St, Portland,OR,97035 +259695,AAA Batteries (4-pack),1,2.99,2019-10-22 16:48:00,166 Hill St, San Francisco,CA,94016 +259696,Wired Headphones,1,11.99,2019-10-20 10:49:00,407 River St, New York City,NY,10001 +259697,Google Phone,1,600.0,2019-10-04 12:09:00,672 2nd St, Atlanta,GA,30301 +259697,USB-C Charging Cable,1,11.95,2019-10-04 12:09:00,672 2nd St, Atlanta,GA,30301 +259698,USB-C Charging Cable,1,11.95,2019-10-19 20:40:00,106 Jefferson St, San Francisco,CA,94016 +259699,USB-C Charging Cable,1,11.95,2019-10-07 10:26:00,448 Cedar St, Atlanta,GA,30301 +259700,Wired Headphones,1,11.99,2019-10-01 13:19:00,17 Lakeview St, Los Angeles,CA,90001 +259701,AAA Batteries (4-pack),2,2.99,2019-10-19 10:55:00,371 Adams St, Los Angeles,CA,90001 +259702,Vareebadd Phone,1,400.0,2019-10-13 23:10:00,239 Sunset St, Dallas,TX,75001 +259702,Wired Headphones,1,11.99,2019-10-13 23:10:00,239 Sunset St, Dallas,TX,75001 +259703,Lightning Charging Cable,1,14.95,2019-10-06 10:14:00,792 Dogwood St, New York City,NY,10001 +259704,Flatscreen TV,1,300.0,2019-10-13 16:45:00,281 Park St, New York City,NY,10001 +259705,Google Phone,1,600.0,2019-10-08 11:46:00,920 Chestnut St, Portland,ME,04101 +259705,USB-C Charging Cable,1,11.95,2019-10-08 11:46:00,920 Chestnut St, Portland,ME,04101 +259706,USB-C Charging Cable,1,11.95,2019-10-11 16:53:00,59 Adams St, Atlanta,GA,30301 +259707,Lightning Charging Cable,1,14.95,2019-10-12 19:47:00,892 Jefferson St, Seattle,WA,98101 +259708,Bose SoundSport Headphones,1,99.99,2019-10-22 21:42:00,66 Johnson St, Portland,OR,97035 +259709,ThinkPad Laptop,1,999.99,2019-10-12 22:28:00,729 Cedar St, Boston,MA,02215 +259710,Apple Airpods Headphones,1,150.0,2019-10-25 21:26:00,449 Church St, Atlanta,GA,30301 +259711,USB-C Charging Cable,1,11.95,2019-10-10 14:19:00,145 Walnut St, Los Angeles,CA,90001 +259712,AAA Batteries (4-pack),1,2.99,2019-10-06 22:14:00,625 Lincoln St, Los Angeles,CA,90001 +259713,34in Ultrawide Monitor,1,379.99,2019-10-17 11:58:00,777 2nd St, Los Angeles,CA,90001 +259714,Apple Airpods Headphones,1,150.0,2019-10-07 17:34:00,509 Elm St, New York City,NY,10001 +259715,Lightning Charging Cable,1,14.95,2019-10-21 11:37:00,317 River St, New York City,NY,10001 +259716,Wired Headphones,2,11.99,2019-10-07 18:09:00,279 Cherry St, San Francisco,CA,94016 +259717,27in 4K Gaming Monitor,1,389.99,2019-10-02 03:27:00,404 Forest St, New York City,NY,10001 +259718,Lightning Charging Cable,1,14.95,2019-10-06 10:39:00,368 Meadow St, San Francisco,CA,94016 +259719,AAA Batteries (4-pack),1,2.99,2019-10-09 13:10:00,227 Lincoln St, Los Angeles,CA,90001 +259720,Wired Headphones,1,11.99,2019-10-10 13:41:00,865 Cedar St, Atlanta,GA,30301 +259721,AA Batteries (4-pack),2,3.84,2019-10-16 19:57:00,546 Meadow St, Atlanta,GA,30301 +259722,34in Ultrawide Monitor,1,379.99,2019-10-22 19:14:00,47 Hickory St, Los Angeles,CA,90001 +259723,AA Batteries (4-pack),1,3.84,2019-10-10 17:09:00,720 Cedar St, Los Angeles,CA,90001 +259724,Apple Airpods Headphones,1,150.0,2019-10-03 11:41:00,875 6th St, Seattle,WA,98101 +259725,AA Batteries (4-pack),1,3.84,2019-10-28 20:37:00,586 13th St, New York City,NY,10001 +259726,Bose SoundSport Headphones,1,99.99,2019-10-05 08:53:00,548 4th St, San Francisco,CA,94016 +259727,Bose SoundSport Headphones,1,99.99,2019-10-12 20:59:00,288 5th St, Portland,OR,97035 +259728,AA Batteries (4-pack),1,3.84,2019-10-07 13:37:00,637 4th St, Los Angeles,CA,90001 +259729,Wired Headphones,1,11.99,2019-10-24 00:32:00,266 Lincoln St, Portland,OR,97035 +259730,AA Batteries (4-pack),2,3.84,2019-10-25 13:52:00,33 West St, New York City,NY,10001 +259731,Wired Headphones,1,11.99,2019-10-08 15:27:00,67 Spruce St, San Francisco,CA,94016 +259732,20in Monitor,1,109.99,2019-10-01 13:03:00,977 7th St, New York City,NY,10001 +259733,AA Batteries (4-pack),1,3.84,2019-10-30 13:29:00,786 South St, Dallas,TX,75001 +259734,AAA Batteries (4-pack),1,2.99,2019-10-30 19:06:00,192 Willow St, Dallas,TX,75001 +259735,AAA Batteries (4-pack),2,2.99,2019-10-04 08:35:00,320 Dogwood St, Los Angeles,CA,90001 +259736,Google Phone,1,600.0,2019-10-28 18:50:00,719 Wilson St, Los Angeles,CA,90001 +259737,Lightning Charging Cable,2,14.95,2019-10-22 19:18:00,811 Adams St, Los Angeles,CA,90001 +259738,USB-C Charging Cable,1,11.95,2019-10-31 11:47:00,316 10th St, Atlanta,GA,30301 +259739,AAA Batteries (4-pack),1,2.99,2019-10-24 22:48:00,321 Johnson St, San Francisco,CA,94016 +259740,AA Batteries (4-pack),1,3.84,2019-10-17 11:54:00,783 7th St, Portland,OR,97035 +259741,AA Batteries (4-pack),1,3.84,2019-10-05 13:52:00,790 Washington St, San Francisco,CA,94016 +259742,ThinkPad Laptop,1,999.99,2019-10-15 19:38:00,121 Lincoln St, Dallas,TX,75001 +259743,AA Batteries (4-pack),2,3.84,2019-10-08 12:15:00,816 Washington St, Dallas,TX,75001 +259744,Wired Headphones,2,11.99,2019-10-24 14:01:00,44 Sunset St, Atlanta,GA,30301 +259745,27in FHD Monitor,1,149.99,2019-10-14 11:08:00,798 14th St, Portland,ME,04101 +259746,AA Batteries (4-pack),1,3.84,2019-10-25 18:21:00,613 6th St, Los Angeles,CA,90001 +259747,20in Monitor,1,109.99,2019-10-21 15:07:00,24 Lincoln St, San Francisco,CA,94016 +259748,AA Batteries (4-pack),2,3.84,2019-10-12 16:53:00,870 Elm St, Atlanta,GA,30301 +259749,27in 4K Gaming Monitor,1,389.99,2019-10-20 16:08:00,925 Lincoln St, Atlanta,GA,30301 +259750,AAA Batteries (4-pack),2,2.99,2019-10-30 15:25:00,453 9th St, Austin,TX,73301 +259751,Macbook Pro Laptop,1,1700.0,2019-10-01 19:30:00,745 12th St, Los Angeles,CA,90001 +259752,AA Batteries (4-pack),1,3.84,2019-10-10 15:14:00,52 14th St, New York City,NY,10001 +259753,Macbook Pro Laptop,1,1700.0,2019-10-22 16:52:00,771 Forest St, Seattle,WA,98101 +259754,USB-C Charging Cable,1,11.95,2019-10-25 07:57:00,78 Park St, Boston,MA,02215 +259755,Macbook Pro Laptop,1,1700.0,2019-10-01 15:12:00,871 Wilson St, Boston,MA,02215 +259756,Lightning Charging Cable,1,14.95,2019-10-21 15:24:00,996 Washington St, Los Angeles,CA,90001 +259757,USB-C Charging Cable,1,11.95,2019-10-13 08:57:00,80 Church St, San Francisco,CA,94016 +259758,USB-C Charging Cable,2,11.95,2019-10-07 15:48:00,588 Walnut St, New York City,NY,10001 +259759,Apple Airpods Headphones,1,150.0,2019-10-04 05:42:00,756 Spruce St, Boston,MA,02215 +259760,Macbook Pro Laptop,1,1700.0,2019-10-12 01:59:00,836 North St, Atlanta,GA,30301 +259761,iPhone,1,700.0,2019-10-22 21:13:00,980 4th St, Seattle,WA,98101 +259762,ThinkPad Laptop,1,999.99,2019-10-19 14:33:00,370 10th St, Boston,MA,02215 +259763,27in FHD Monitor,1,149.99,2019-10-06 14:16:00,154 8th St, San Francisco,CA,94016 +259764,USB-C Charging Cable,1,11.95,2019-10-11 08:51:00,97 Lake St, Seattle,WA,98101 +259765,Lightning Charging Cable,1,14.95,2019-10-24 17:21:00,580 Lakeview St, San Francisco,CA,94016 +259766,AAA Batteries (4-pack),3,2.99,2019-10-16 16:20:00,145 Highland St, Seattle,WA,98101 +259767,Bose SoundSport Headphones,1,99.99,2019-10-24 12:35:00,274 10th St, Boston,MA,02215 +259768,Bose SoundSport Headphones,1,99.99,2019-10-27 17:41:00,845 2nd St, New York City,NY,10001 +259769,Wired Headphones,1,11.99,2019-10-15 08:19:00,459 Dogwood St, New York City,NY,10001 +259770,USB-C Charging Cable,1,11.95,2019-10-12 07:47:00,986 6th St, Los Angeles,CA,90001 +259771,Apple Airpods Headphones,1,150.0,2019-10-10 18:47:00,492 Jackson St, Dallas,TX,75001 +259772,Google Phone,1,600.0,2019-10-01 16:43:00,900 10th St, San Francisco,CA,94016 +259773,Flatscreen TV,1,300.0,2019-10-15 16:18:00,885 14th St, Seattle,WA,98101 +259774,USB-C Charging Cable,1,11.95,2019-10-27 17:45:00,749 South St, Boston,MA,02215 +259775,AAA Batteries (4-pack),1,2.99,2019-10-11 12:26:00,871 Chestnut St, Austin,TX,73301 +259776,AAA Batteries (4-pack),1,2.99,2019-10-05 15:11:00,620 Maple St, Dallas,TX,75001 +259777,AAA Batteries (4-pack),2,2.99,2019-10-06 17:19:00,148 14th St, Boston,MA,02215 +259778,AAA Batteries (4-pack),1,2.99,2019-10-03 07:57:00,253 12th St, Los Angeles,CA,90001 +259779,AAA Batteries (4-pack),2,2.99,2019-10-17 20:17:00,268 North St, Dallas,TX,75001 +259780,34in Ultrawide Monitor,1,379.99,2019-10-06 14:02:00,148 West St, San Francisco,CA,94016 +259781,27in 4K Gaming Monitor,1,389.99,2019-10-12 14:16:00,574 Church St, San Francisco,CA,94016 +259782,LG Washing Machine,1,600.0,2019-10-19 04:50:00,145 14th St, Portland,OR,97035 +259783,AAA Batteries (4-pack),1,2.99,2019-10-06 16:36:00,253 Church St, San Francisco,CA,94016 +259784,ThinkPad Laptop,1,999.99,2019-10-17 21:49:00,537 8th St, Seattle,WA,98101 +259785,Apple Airpods Headphones,1,150.0,2019-10-26 18:12:00,226 Main St, Seattle,WA,98101 +259786,Lightning Charging Cable,1,14.95,2019-10-26 20:26:00,513 Walnut St, Atlanta,GA,30301 +259787,Flatscreen TV,1,300.0,2019-10-04 16:59:00,421 7th St, New York City,NY,10001 +259788,USB-C Charging Cable,2,11.95,2019-10-25 12:13:00,849 Willow St, San Francisco,CA,94016 +259789,Lightning Charging Cable,1,14.95,2019-10-29 21:44:00,453 Meadow St, Seattle,WA,98101 +259790,Wired Headphones,1,11.99,2019-10-16 18:39:00,895 Church St, Seattle,WA,98101 +259791,Lightning Charging Cable,2,14.95,2019-10-29 11:56:00,209 River St, Boston,MA,02215 +259792,AAA Batteries (4-pack),2,2.99,2019-10-29 05:22:00,434 4th St, Los Angeles,CA,90001 +259793,ThinkPad Laptop,1,999.99,2019-10-09 07:31:00,835 Willow St, New York City,NY,10001 +259794,AAA Batteries (4-pack),1,2.99,2019-10-05 18:19:00,604 8th St, Seattle,WA,98101 +259794,iPhone,1,700.0,2019-10-05 18:19:00,604 8th St, Seattle,WA,98101 +259795,Bose SoundSport Headphones,1,99.99,2019-10-03 17:00:00,589 Pine St, Boston,MA,02215 +259796,Apple Airpods Headphones,1,150.0,2019-10-29 12:07:00,586 Elm St, Los Angeles,CA,90001 +259797,Lightning Charging Cable,1,14.95,2019-10-03 15:18:00,670 Sunset St, San Francisco,CA,94016 +259798,AAA Batteries (4-pack),1,2.99,2019-10-05 20:11:00,538 Meadow St, Boston,MA,02215 +259799,Wired Headphones,1,11.99,2019-10-16 02:52:00,650 Madison St, San Francisco,CA,94016 +259800,34in Ultrawide Monitor,1,379.99,2019-10-27 14:21:00,372 9th St, San Francisco,CA,94016 +259801,Lightning Charging Cable,1,14.95,2019-10-11 13:33:00,245 South St, Dallas,TX,75001 +259802,Wired Headphones,1,11.99,2019-10-28 20:41:00,816 West St, San Francisco,CA,94016 +259803,Macbook Pro Laptop,1,1700.0,2019-10-18 00:35:00,861 Main St, Los Angeles,CA,90001 +259804,Macbook Pro Laptop,1,1700.0,2019-10-27 16:22:00,702 12th St, Los Angeles,CA,90001 +259805,27in 4K Gaming Monitor,1,389.99,2019-10-18 11:39:00,795 Spruce St, San Francisco,CA,94016 +259806,ThinkPad Laptop,1,999.99,2019-10-23 06:26:00,650 Jackson St, New York City,NY,10001 +259807,USB-C Charging Cable,1,11.95,2019-10-15 15:15:00,235 Lakeview St, Boston,MA,02215 +259808,27in 4K Gaming Monitor,1,389.99,2019-10-23 14:16:00,940 Elm St, Boston,MA,02215 +259809,Apple Airpods Headphones,1,150.0,2019-10-26 13:33:00,38 Jackson St, Boston,MA,02215 +259810,USB-C Charging Cable,1,11.95,2019-10-31 21:16:00,428 Forest St, Austin,TX,73301 +259811,Lightning Charging Cable,1,14.95,2019-10-10 19:07:00,143 Maple St, Los Angeles,CA,90001 +259812,AA Batteries (4-pack),1,3.84,2019-10-23 15:55:00,273 South St, San Francisco,CA,94016 +259813,27in 4K Gaming Monitor,1,389.99,2019-10-12 21:29:00,499 Washington St, Portland,OR,97035 +259814,AA Batteries (4-pack),1,3.84,2019-10-09 11:33:00,338 Walnut St, San Francisco,CA,94016 +259815,34in Ultrawide Monitor,1,379.99,2019-10-04 03:11:00,16 Park St, Los Angeles,CA,90001 +259816,27in 4K Gaming Monitor,1,389.99,2019-10-20 14:22:00,3 10th St, Portland,ME,04101 +259817,20in Monitor,1,109.99,2019-10-19 14:14:00,723 Center St, Los Angeles,CA,90001 +259818,Apple Airpods Headphones,1,150.0,2019-10-04 00:51:00,791 8th St, Boston,MA,02215 +259819,27in FHD Monitor,1,149.99,2019-10-18 15:06:00,253 River St, Dallas,TX,75001 +259820,Wired Headphones,1,11.99,2019-10-11 22:04:00,552 Cherry St, Los Angeles,CA,90001 +259821,USB-C Charging Cable,1,11.95,2019-10-21 10:00:00,537 South St, San Francisco,CA,94016 +259822,Apple Airpods Headphones,1,150.0,2019-10-17 00:26:00,890 2nd St, Boston,MA,02215 +259823,Bose SoundSport Headphones,1,99.99,2019-10-16 12:53:00,34 Ridge St, San Francisco,CA,94016 +259823,27in 4K Gaming Monitor,1,389.99,2019-10-16 12:53:00,34 Ridge St, San Francisco,CA,94016 +259824,AA Batteries (4-pack),2,3.84,2019-10-20 07:43:00,200 Spruce St, San Francisco,CA,94016 +259825,iPhone,1,700.0,2019-10-12 20:59:00,929 5th St, Boston,MA,02215 +259826,AA Batteries (4-pack),2,3.84,2019-10-30 15:06:00,896 Main St, Los Angeles,CA,90001 +259827,AAA Batteries (4-pack),1,2.99,2019-10-01 17:36:00,527 Meadow St, Dallas,TX,75001 +259828,Wired Headphones,1,11.99,2019-10-26 22:34:00,902 Lincoln St, San Francisco,CA,94016 +259829,Apple Airpods Headphones,1,150.0,2019-10-30 12:20:00,472 7th St, San Francisco,CA,94016 +259830,Lightning Charging Cable,1,14.95,2019-10-25 12:40:00,666 West St, Los Angeles,CA,90001 +259831,AAA Batteries (4-pack),1,2.99,2019-10-25 18:30:00,21 Cedar St, Seattle,WA,98101 +259832,Google Phone,1,600.0,2019-10-28 08:54:00,420 Jackson St, San Francisco,CA,94016 +259833,Apple Airpods Headphones,1,150.0,2019-10-05 10:09:00,402 Lincoln St, Dallas,TX,75001 +259834,Wired Headphones,1,11.99,2019-10-10 00:57:00,58 Lakeview St, Dallas,TX,75001 +259835,Google Phone,1,600.0,2019-10-04 06:16:00,551 River St, Seattle,WA,98101 +259835,Bose SoundSport Headphones,1,99.99,2019-10-04 06:16:00,551 River St, Seattle,WA,98101 +259836,Wired Headphones,1,11.99,2019-10-22 08:51:00,287 Maple St, New York City,NY,10001 +259837,Bose SoundSport Headphones,1,99.99,2019-10-20 14:09:00,81 1st St, San Francisco,CA,94016 +259838,ThinkPad Laptop,1,999.99,2019-10-09 12:05:00,200 5th St, San Francisco,CA,94016 +259838,USB-C Charging Cable,1,11.95,2019-10-09 12:05:00,200 5th St, San Francisco,CA,94016 +259839,27in FHD Monitor,1,149.99,2019-10-04 21:09:00,847 Spruce St, New York City,NY,10001 +259840,34in Ultrawide Monitor,1,379.99,2019-10-06 13:32:00,755 Church St, Austin,TX,73301 +259841,AAA Batteries (4-pack),2,2.99,2019-10-17 22:19:00,736 Jefferson St, Boston,MA,02215 +259842,27in FHD Monitor,1,149.99,2019-10-05 12:33:00,172 North St, Boston,MA,02215 +259843,Bose SoundSport Headphones,1,99.99,2019-10-05 21:41:00,807 Madison St, Atlanta,GA,30301 +259844,AAA Batteries (4-pack),1,2.99,2019-10-18 20:27:00,585 4th St, Seattle,WA,98101 +259845,20in Monitor,1,109.99,2019-10-04 17:08:00,492 4th St, Portland,OR,97035 +259846,Wired Headphones,1,11.99,2019-10-23 23:49:00,79 Dogwood St, Boston,MA,02215 +259847,AA Batteries (4-pack),1,3.84,2019-10-13 11:22:00,703 Walnut St, Austin,TX,73301 +259848,AAA Batteries (4-pack),2,2.99,2019-10-20 13:20:00,616 Maple St, Austin,TX,73301 +259849,Apple Airpods Headphones,1,150.0,2019-10-30 21:33:00,232 Ridge St, New York City,NY,10001 +259850,iPhone,1,700.0,2019-10-02 08:43:00,226 Lincoln St, Boston,MA,02215 +259851,27in FHD Monitor,1,149.99,2019-10-21 16:22:00,968 7th St, San Francisco,CA,94016 +259852,USB-C Charging Cable,1,11.95,2019-10-06 23:14:00,872 Jackson St, Boston,MA,02215 +259853,USB-C Charging Cable,1,11.95,2019-10-06 18:47:00,459 5th St, Dallas,TX,75001 +259854,Google Phone,1,600.0,2019-10-05 09:20:00,777 10th St, Boston,MA,02215 +259855,Wired Headphones,1,11.99,2019-10-04 06:51:00,829 South St, Portland,OR,97035 +259856,Lightning Charging Cable,1,14.95,2019-10-28 00:17:00,647 6th St, New York City,NY,10001 +259857,iPhone,1,700.0,2019-10-07 14:25:00,221 Spruce St, Seattle,WA,98101 +259858,Lightning Charging Cable,1,14.95,2019-10-26 20:32:00,422 Hill St, San Francisco,CA,94016 +259859,AA Batteries (4-pack),1,3.84,2019-10-30 12:29:00,535 Highland St, New York City,NY,10001 +259860,Wired Headphones,1,11.99,2019-10-20 16:52:00,268 4th St, Dallas,TX,75001 +259861,Bose SoundSport Headphones,1,99.99,2019-10-14 17:40:00,317 Lake St, Los Angeles,CA,90001 +259862,iPhone,1,700.0,2019-10-05 19:12:00,587 Cedar St, San Francisco,CA,94016 +259862,Lightning Charging Cable,1,14.95,2019-10-05 19:12:00,587 Cedar St, San Francisco,CA,94016 +259863,AA Batteries (4-pack),1,3.84,2019-10-20 18:11:00,10 2nd St, Boston,MA,02215 +259864,Lightning Charging Cable,1,14.95,2019-10-21 17:36:00,869 1st St, San Francisco,CA,94016 +259865,27in 4K Gaming Monitor,1,389.99,2019-10-23 07:40:00,128 Chestnut St, Atlanta,GA,30301 +259866,27in FHD Monitor,1,149.99,2019-10-30 20:16:00,979 Sunset St, San Francisco,CA,94016 +259867,iPhone,1,700.0,2019-10-26 11:37:00,844 Willow St, Los Angeles,CA,90001 +259868,Macbook Pro Laptop,1,1700.0,2019-10-13 13:09:00,133 Ridge St, New York City,NY,10001 +259869,Apple Airpods Headphones,1,150.0,2019-10-07 21:32:00,186 7th St, Austin,TX,73301 +259870,Vareebadd Phone,1,400.0,2019-10-20 18:18:00,850 Lincoln St, New York City,NY,10001 +259871,Apple Airpods Headphones,1,150.0,2019-10-03 18:19:00,428 Elm St, Seattle,WA,98101 +259872,Lightning Charging Cable,1,14.95,2019-10-09 12:14:00,272 Forest St, San Francisco,CA,94016 +259873,AA Batteries (4-pack),1,3.84,2019-10-03 10:13:00,155 Pine St, Portland,OR,97035 +259874,Bose SoundSport Headphones,1,99.99,2019-10-25 13:03:00,946 9th St, Seattle,WA,98101 +259875,USB-C Charging Cable,1,11.95,2019-10-19 21:28:00,711 Elm St, Austin,TX,73301 +259876,AAA Batteries (4-pack),1,2.99,2019-10-19 18:37:00,951 5th St, Austin,TX,73301 +259877,Apple Airpods Headphones,1,150.0,2019-10-10 20:17:00,789 Center St, San Francisco,CA,94016 +259878,AAA Batteries (4-pack),1,2.99,2019-10-09 13:45:00,386 9th St, Atlanta,GA,30301 +259879,Vareebadd Phone,1,400.0,2019-10-26 15:02:00,618 Church St, New York City,NY,10001 +259879,USB-C Charging Cable,1,11.95,2019-10-26 15:02:00,618 Church St, New York City,NY,10001 +259880,USB-C Charging Cable,1,11.95,2019-10-08 12:45:00,93 14th St, Boston,MA,02215 +259881,AA Batteries (4-pack),2,3.84,2019-10-26 12:52:00,562 Johnson St, Portland,OR,97035 +259882,Wired Headphones,1,11.99,2019-10-17 12:04:00,525 Center St, New York City,NY,10001 +259883,Lightning Charging Cable,1,14.95,2019-10-15 13:13:00,917 14th St, Dallas,TX,75001 +259884,Apple Airpods Headphones,2,150.0,2019-10-01 16:40:00,180 Center St, Portland,OR,97035 +259885,AA Batteries (4-pack),1,3.84,2019-10-27 11:13:00,935 Johnson St, Boston,MA,02215 +259886,Apple Airpods Headphones,1,150.0,2019-10-04 00:42:00,2 Spruce St, Atlanta,GA,30301 +259887,34in Ultrawide Monitor,1,379.99,2019-10-24 16:34:00,946 7th St, New York City,NY,10001 +259888,Google Phone,1,600.0,2019-10-23 17:28:00,453 Washington St, Atlanta,GA,30301 +259889,AA Batteries (4-pack),3,3.84,2019-10-24 12:37:00,467 Church St, Los Angeles,CA,90001 +259890,USB-C Charging Cable,1,11.95,2019-10-22 15:48:00,161 Ridge St, Los Angeles,CA,90001 +259891,AAA Batteries (4-pack),1,2.99,2019-10-23 14:28:00,673 Elm St, New York City,NY,10001 +259892,Flatscreen TV,1,300.0,2019-10-26 22:14:00,928 Cedar St, New York City,NY,10001 +259893,USB-C Charging Cable,1,11.95,2019-10-15 18:36:00,647 13th St, San Francisco,CA,94016 +259894,AAA Batteries (4-pack),3,2.99,2019-10-08 10:33:00,360 North St, Boston,MA,02215 +259895,Wired Headphones,1,11.99,2019-10-06 12:30:00,144 Wilson St, Los Angeles,CA,90001 +259896,Lightning Charging Cable,1,14.95,2019-10-05 09:43:00,174 South St, San Francisco,CA,94016 +259897,AAA Batteries (4-pack),1,2.99,2019-10-03 09:00:00,480 5th St, San Francisco,CA,94016 +259898,USB-C Charging Cable,1,11.95,2019-10-24 08:24:00,679 6th St, Boston,MA,02215 +259899,USB-C Charging Cable,1,11.95,2019-10-23 17:41:00,949 2nd St, Boston,MA,02215 +259900,AA Batteries (4-pack),1,3.84,2019-10-30 21:14:00,143 Washington St, Los Angeles,CA,90001 +259901,34in Ultrawide Monitor,1,379.99,2019-10-07 14:41:00,917 Spruce St, San Francisco,CA,94016 +259902,27in FHD Monitor,1,149.99,2019-10-10 19:58:00,934 Cherry St, Portland,OR,97035 +259903,AA Batteries (4-pack),1,3.84,2019-10-22 06:14:00,792 Jefferson St, Seattle,WA,98101 +259904,AAA Batteries (4-pack),2,2.99,2019-10-08 07:54:00,482 Jefferson St, Dallas,TX,75001 +259905,Lightning Charging Cable,1,14.95,2019-10-22 19:09:00,883 Lake St, New York City,NY,10001 +259906,27in 4K Gaming Monitor,1,389.99,2019-10-26 18:41:00,925 Hickory St, Portland,OR,97035 +259907,Apple Airpods Headphones,1,150.0,2019-10-12 17:33:00,1 Wilson St, San Francisco,CA,94016 +259908,USB-C Charging Cable,3,11.95,2019-10-04 13:54:00,663 Sunset St, San Francisco,CA,94016 +259909,Apple Airpods Headphones,1,150.0,2019-10-19 16:46:00,592 Maple St, Austin,TX,73301 +259910,Lightning Charging Cable,1,14.95,2019-10-28 20:20:00,931 Lake St, Dallas,TX,75001 +259911,AAA Batteries (4-pack),1,2.99,2019-10-17 18:39:00,695 Hill St, Seattle,WA,98101 +259912,Wired Headphones,1,11.99,2019-10-21 21:57:00,353 Sunset St, Boston,MA,02215 +259913,27in FHD Monitor,1,149.99,2019-10-03 01:00:00,156 6th St, Atlanta,GA,30301 +259914,20in Monitor,1,109.99,2019-10-14 19:27:00,584 Cedar St, Boston,MA,02215 +259915,iPhone,1,700.0,2019-10-22 12:29:00,399 Jackson St, New York City,NY,10001 +259916,Lightning Charging Cable,1,14.95,2019-10-28 21:49:00,302 Forest St, New York City,NY,10001 +259917,Apple Airpods Headphones,1,150.0,2019-10-13 10:13:00,695 Pine St, San Francisco,CA,94016 +259918,USB-C Charging Cable,1,11.95,2019-10-30 10:04:00,148 9th St, Boston,MA,02215 +259919,Bose SoundSport Headphones,1,99.99,2019-10-26 21:53:00,309 Dogwood St, New York City,NY,10001 +259920,34in Ultrawide Monitor,1,379.99,2019-10-13 23:22:00,659 River St, San Francisco,CA,94016 +259921,USB-C Charging Cable,1,11.95,2019-10-13 14:41:00,321 6th St, San Francisco,CA,94016 +259922,USB-C Charging Cable,1,11.95,2019-10-30 14:52:00,471 8th St, New York City,NY,10001 +259923,AA Batteries (4-pack),1,3.84,2019-10-05 10:34:00,442 Center St, Boston,MA,02215 +259923,AAA Batteries (4-pack),2,2.99,2019-10-05 10:34:00,442 Center St, Boston,MA,02215 +259924,Google Phone,1,600.0,2019-10-21 15:06:00,883 Cedar St, Austin,TX,73301 +259924,USB-C Charging Cable,1,11.95,2019-10-21 15:06:00,883 Cedar St, Austin,TX,73301 +259925,Lightning Charging Cable,1,14.95,2019-10-05 12:09:00,112 Highland St, Portland,OR,97035 +259925,27in FHD Monitor,1,149.99,2019-10-05 12:09:00,112 Highland St, Portland,OR,97035 +259926,AA Batteries (4-pack),2,3.84,2019-10-15 14:44:00,560 Church St, Seattle,WA,98101 +259927,Bose SoundSport Headphones,1,99.99,2019-10-27 09:03:00,194 12th St, San Francisco,CA,94016 +259928,AAA Batteries (4-pack),1,2.99,2019-10-22 18:11:00,963 Adams St, San Francisco,CA,94016 +259929,USB-C Charging Cable,1,11.95,2019-10-12 18:23:00,283 14th St, San Francisco,CA,94016 +259930,AAA Batteries (4-pack),1,2.99,2019-10-24 18:30:00,868 Cedar St, San Francisco,CA,94016 +259931,Apple Airpods Headphones,1,150.0,2019-10-31 18:59:00,79 8th St, San Francisco,CA,94016 +259932,AA Batteries (4-pack),1,3.84,2019-10-19 18:46:00,91 7th St, Los Angeles,CA,90001 +259933,27in FHD Monitor,1,149.99,2019-10-28 08:47:00,149 9th St, Los Angeles,CA,90001 +259934,ThinkPad Laptop,1,999.99,2019-10-19 16:21:00,532 Dogwood St, San Francisco,CA,94016 +259935,Apple Airpods Headphones,1,150.0,2019-10-15 15:25:00,947 Dogwood St, Austin,TX,73301 +259936,Wired Headphones,1,11.99,2019-10-14 20:58:00,585 Walnut St, San Francisco,CA,94016 +259936,34in Ultrawide Monitor,1,379.99,2019-10-14 20:58:00,585 Walnut St, San Francisco,CA,94016 +259937,Bose SoundSport Headphones,1,99.99,2019-10-23 19:54:00,274 Cherry St, Los Angeles,CA,90001 +259938,AA Batteries (4-pack),2,3.84,2019-10-25 21:38:00,128 12th St, Los Angeles,CA,90001 +259939,AAA Batteries (4-pack),4,2.99,2019-10-07 19:06:00,460 6th St, Los Angeles,CA,90001 +259940,Bose SoundSport Headphones,1,99.99,2019-10-12 14:27:00,667 6th St, Seattle,WA,98101 +259941,USB-C Charging Cable,1,11.95,2019-10-20 00:53:00,979 Lakeview St, Atlanta,GA,30301 +259942,AAA Batteries (4-pack),3,2.99,2019-10-03 10:33:00,317 West St, Los Angeles,CA,90001 +259943,AA Batteries (4-pack),1,3.84,2019-10-12 09:57:00,996 Center St, Seattle,WA,98101 +259944,Bose SoundSport Headphones,1,99.99,2019-10-31 20:04:00,958 Highland St, New York City,NY,10001 +259945,USB-C Charging Cable,1,11.95,2019-10-12 12:01:00,987 Center St, Boston,MA,02215 +259946,USB-C Charging Cable,1,11.95,2019-10-06 10:02:00,19 Cedar St, Atlanta,GA,30301 +259947,USB-C Charging Cable,1,11.95,2019-10-26 19:15:00,946 Meadow St, New York City,NY,10001 +259948,Wired Headphones,1,11.99,2019-10-15 14:47:00,90 Jefferson St, Los Angeles,CA,90001 +259949,AAA Batteries (4-pack),2,2.99,2019-10-12 15:06:00,922 Wilson St, Seattle,WA,98101 +259950,Wired Headphones,1,11.99,2019-10-20 17:57:00,386 10th St, Dallas,TX,75001 +259951,27in FHD Monitor,1,149.99,2019-10-16 06:41:00,224 8th St, Dallas,TX,75001 +259952,AA Batteries (4-pack),1,3.84,2019-10-29 11:29:00,493 Center St, New York City,NY,10001 +259953,AAA Batteries (4-pack),1,2.99,2019-10-19 12:41:00,411 River St, San Francisco,CA,94016 +259954,Wired Headphones,1,11.99,2019-10-05 16:00:00,868 Elm St, Boston,MA,02215 +259955,20in Monitor,1,109.99,2019-10-29 07:06:00,39 10th St, San Francisco,CA,94016 +259956,ThinkPad Laptop,1,999.99,2019-10-25 20:20:00,262 Cedar St, Los Angeles,CA,90001 +259957,AAA Batteries (4-pack),1,2.99,2019-10-26 23:53:00,603 14th St, Boston,MA,02215 +259958,27in FHD Monitor,1,149.99,2019-10-17 19:19:00,829 River St, Portland,OR,97035 +259959,AAA Batteries (4-pack),1,2.99,2019-10-24 10:37:00,680 Center St, Austin,TX,73301 +259960,Bose SoundSport Headphones,1,99.99,2019-10-26 12:01:00,194 8th St, San Francisco,CA,94016 +259961,AAA Batteries (4-pack),2,2.99,2019-10-28 13:54:00,772 River St, New York City,NY,10001 +259962,Apple Airpods Headphones,1,150.0,2019-10-15 11:21:00,664 Lakeview St, San Francisco,CA,94016 +259963,USB-C Charging Cable,1,11.95,2019-10-15 21:53:00,862 Jefferson St, Boston,MA,02215 +259964,27in 4K Gaming Monitor,1,389.99,2019-10-13 08:32:00,645 Lincoln St, Boston,MA,02215 +259965,Bose SoundSport Headphones,1,99.99,2019-10-15 09:04:00,521 Walnut St, Los Angeles,CA,90001 +259965,34in Ultrawide Monitor,1,379.99,2019-10-15 09:04:00,521 Walnut St, Los Angeles,CA,90001 +259966,AAA Batteries (4-pack),1,2.99,2019-10-15 04:04:00,893 Cherry St, San Francisco,CA,94016 +259967,Lightning Charging Cable,1,14.95,2019-10-14 18:49:00,596 Pine St, Los Angeles,CA,90001 +259968,Bose SoundSport Headphones,1,99.99,2019-10-11 12:01:00,871 Lincoln St, New York City,NY,10001 +259969,USB-C Charging Cable,1,11.95,2019-10-05 09:29:00,73 11th St, Dallas,TX,75001 +259970,Bose SoundSport Headphones,1,99.99,2019-10-01 13:12:00,559 5th St, Dallas,TX,75001 +259971,AAA Batteries (4-pack),1,2.99,2019-10-06 09:37:00,650 Jefferson St, Boston,MA,02215 +259972,Macbook Pro Laptop,1,1700.0,2019-10-31 13:10:00,871 7th St, Boston,MA,02215 +259973,ThinkPad Laptop,1,999.99,2019-10-20 16:43:00,721 Cedar St, Dallas,TX,75001 +259974,Google Phone,1,600.0,2019-10-10 11:10:00,40 Adams St, San Francisco,CA,94016 +259975,iPhone,1,700.0,2019-10-22 10:23:00,861 Elm St, New York City,NY,10001 +259976,Apple Airpods Headphones,1,150.0,2019-10-11 23:26:00,676 Adams St, Boston,MA,02215 +259977,20in Monitor,1,109.99,2019-10-16 17:53:00,777 Spruce St, Los Angeles,CA,90001 +259978,USB-C Charging Cable,1,11.95,2019-10-16 14:07:00,214 8th St, Los Angeles,CA,90001 +259979,Lightning Charging Cable,1,14.95,2019-10-29 10:38:00,239 Lakeview St, Austin,TX,73301 +259980,Apple Airpods Headphones,1,150.0,2019-10-02 13:19:00,849 Dogwood St, New York City,NY,10001 +259981,USB-C Charging Cable,1,11.95,2019-10-24 17:14:00,103 Jefferson St, New York City,NY,10001 +259982,Bose SoundSport Headphones,1,99.99,2019-10-18 15:21:00,81 11th St, San Francisco,CA,94016 +259983,Wired Headphones,1,11.99,2019-10-18 12:48:00,442 Lake St, Los Angeles,CA,90001 +259984,iPhone,1,700.0,2019-10-12 09:44:00,291 Madison St, Portland,OR,97035 +259985,Lightning Charging Cable,1,14.95,2019-10-26 22:52:00,165 13th St, Los Angeles,CA,90001 +259986,Lightning Charging Cable,1,14.95,2019-10-23 23:53:00,260 South St, San Francisco,CA,94016 +259987,Bose SoundSport Headphones,1,99.99,2019-10-23 10:10:00,161 Dogwood St, San Francisco,CA,94016 +259988,Apple Airpods Headphones,1,150.0,2019-10-24 13:59:00,312 Madison St, Los Angeles,CA,90001 +259989,AA Batteries (4-pack),1,3.84,2019-10-29 18:06:00,965 Lincoln St, Los Angeles,CA,90001 +259990,AA Batteries (4-pack),3,3.84,2019-10-11 23:10:00,961 7th St, San Francisco,CA,94016 +259991,AA Batteries (4-pack),1,3.84,2019-10-26 17:31:00,837 8th St, Los Angeles,CA,90001 +259992,AA Batteries (4-pack),1,3.84,2019-10-07 21:17:00,26 Meadow St, Los Angeles,CA,90001 +259993,Lightning Charging Cable,1,14.95,2019-10-13 14:45:00,93 Sunset St, New York City,NY,10001 +259993,AA Batteries (4-pack),1,3.84,2019-10-13 14:45:00,93 Sunset St, New York City,NY,10001 +259994,USB-C Charging Cable,1,11.95,2019-10-28 16:36:00,949 Ridge St, San Francisco,CA,94016 +259995,iPhone,1,700.0,2019-10-27 09:47:00,683 Cedar St, New York City,NY,10001 +259996,AA Batteries (4-pack),1,3.84,2019-10-04 13:46:00,384 Jackson St, New York City,NY,10001 +259997,27in 4K Gaming Monitor,1,389.99,2019-10-08 15:19:00,948 Elm St, Austin,TX,73301 +259998,AA Batteries (4-pack),2,3.84,2019-10-17 18:20:00,330 River St, Dallas,TX,75001 +259999,Flatscreen TV,1,300.0,2019-10-06 18:21:00,656 Washington St, New York City,NY,10001 +260000,Wired Headphones,1,11.99,2019-10-03 08:58:00,228 Jackson St, San Francisco,CA,94016 +260001,Google Phone,1,600.0,2019-10-10 20:05:00,741 Chestnut St, San Francisco,CA,94016 +260001,USB-C Charging Cable,1,11.95,2019-10-10 20:05:00,741 Chestnut St, San Francisco,CA,94016 +260002,Wired Headphones,1,11.99,2019-10-21 20:01:00,50 Dogwood St, Dallas,TX,75001 +260003,AA Batteries (4-pack),1,3.84,2019-10-10 11:14:00,296 Meadow St, New York City,NY,10001 +260004,34in Ultrawide Monitor,1,379.99,2019-10-21 21:34:00,690 13th St, San Francisco,CA,94016 +260005,34in Ultrawide Monitor,1,379.99,2019-10-09 08:50:00,112 12th St, Boston,MA,02215 +260006,Google Phone,1,600.0,2019-10-09 12:35:00,312 Jefferson St, San Francisco,CA,94016 +260006,USB-C Charging Cable,1,11.95,2019-10-09 12:35:00,312 Jefferson St, San Francisco,CA,94016 +260007,Apple Airpods Headphones,1,150.0,2019-10-26 08:08:00,509 South St, Los Angeles,CA,90001 +260008,Google Phone,1,600.0,2019-10-16 16:02:00,4 4th St, San Francisco,CA,94016 +260009,Apple Airpods Headphones,1,150.0,2019-10-26 14:57:00,53 Jackson St, Los Angeles,CA,90001 +260010,Flatscreen TV,1,300.0,2019-10-07 09:57:00,436 6th St, San Francisco,CA,94016 +260011,USB-C Charging Cable,1,11.95,2019-10-14 14:10:00,101 Cedar St, San Francisco,CA,94016 +260012,Wired Headphones,3,11.99,2019-10-14 21:13:00,248 9th St, Los Angeles,CA,90001 +260013,Wired Headphones,1,11.99,2019-10-06 21:56:00,53 Meadow St, Seattle,WA,98101 +260014,Apple Airpods Headphones,1,150.0,2019-10-13 20:32:00,469 12th St, Boston,MA,02215 +260015,Macbook Pro Laptop,1,1700.0,2019-10-12 14:18:00,442 Highland St, Atlanta,GA,30301 +260016,34in Ultrawide Monitor,1,379.99,2019-10-30 17:24:00,706 Main St, Los Angeles,CA,90001 +260017,iPhone,1,700.0,2019-10-03 09:23:00,831 14th St, San Francisco,CA,94016 +260017,AAA Batteries (4-pack),1,2.99,2019-10-03 09:23:00,831 14th St, San Francisco,CA,94016 +260018,AA Batteries (4-pack),1,3.84,2019-10-09 17:47:00,431 Hill St, Los Angeles,CA,90001 +260019,USB-C Charging Cable,1,11.95,2019-10-08 11:52:00,310 Lake St, San Francisco,CA,94016 +260020,20in Monitor,1,109.99,2019-10-07 14:41:00,853 Wilson St, San Francisco,CA,94016 +260021,Lightning Charging Cable,1,14.95,2019-10-27 15:40:00,320 Maple St, Boston,MA,02215 +260022,Apple Airpods Headphones,1,150.0,2019-10-15 20:18:00,874 Johnson St, Austin,TX,73301 +260023,Vareebadd Phone,1,400.0,2019-10-19 09:11:00,224 Lake St, Atlanta,GA,30301 +260023,USB-C Charging Cable,1,11.95,2019-10-19 09:11:00,224 Lake St, Atlanta,GA,30301 +260024,iPhone,1,700.0,2019-10-28 14:11:00,525 Washington St, Seattle,WA,98101 +260025,34in Ultrawide Monitor,1,379.99,2019-10-08 17:05:00,849 Willow St, Atlanta,GA,30301 +260026,USB-C Charging Cable,1,11.95,2019-10-26 02:00:00,637 Lake St, San Francisco,CA,94016 +260027,27in 4K Gaming Monitor,1,389.99,2019-10-16 21:33:00,366 Elm St, Portland,OR,97035 +260028,iPhone,1,700.0,2019-10-30 18:57:00,145 Chestnut St, San Francisco,CA,94016 +260029,Lightning Charging Cable,1,14.95,2019-10-25 09:16:00,666 11th St, San Francisco,CA,94016 +260030,Flatscreen TV,1,300.0,2019-10-23 10:07:00,211 10th St, Austin,TX,73301 +260031,Wired Headphones,1,11.99,2019-10-19 10:27:00,231 Park St, Portland,ME,04101 +260032,Apple Airpods Headphones,1,150.0,2019-10-18 21:00:00,22 Cherry St, Los Angeles,CA,90001 +260033,Apple Airpods Headphones,1,150.0,2019-10-21 16:25:00,454 6th St, Los Angeles,CA,90001 +260034,Lightning Charging Cable,1,14.95,2019-10-27 20:07:00,255 Wilson St, Portland,OR,97035 +260035,Lightning Charging Cable,1,14.95,2019-10-22 16:02:00,449 13th St, New York City,NY,10001 +260036,Bose SoundSport Headphones,1,99.99,2019-10-04 20:35:00,326 Chestnut St, San Francisco,CA,94016 +260037,Bose SoundSport Headphones,1,99.99,2019-10-05 17:01:00,864 Hickory St, Los Angeles,CA,90001 +260038,ThinkPad Laptop,1,999.99,2019-10-07 17:01:00,556 Meadow St, Los Angeles,CA,90001 +260039,27in FHD Monitor,1,149.99,2019-10-20 22:27:00,366 12th St, Los Angeles,CA,90001 +260040,AAA Batteries (4-pack),3,2.99,2019-10-01 22:51:00,301 Meadow St, Portland,OR,97035 +260041,AAA Batteries (4-pack),1,2.99,2019-10-04 07:33:00,396 Meadow St, Boston,MA,02215 +260042,AAA Batteries (4-pack),1,2.99,2019-10-22 00:03:00,315 Elm St, Atlanta,GA,30301 +260043,USB-C Charging Cable,2,11.95,2019-10-19 22:37:00,725 6th St, Atlanta,GA,30301 +260044,USB-C Charging Cable,1,11.95,2019-10-08 19:51:00,32 9th St, New York City,NY,10001 +260044,27in FHD Monitor,1,149.99,2019-10-08 19:51:00,32 9th St, New York City,NY,10001 +260045,AAA Batteries (4-pack),2,2.99,2019-10-28 14:43:00,263 Washington St, Los Angeles,CA,90001 +260046,USB-C Charging Cable,1,11.95,2019-10-25 15:38:00,649 Hill St, San Francisco,CA,94016 +260047,AAA Batteries (4-pack),1,2.99,2019-10-31 07:32:00,85 Lake St, Los Angeles,CA,90001 +260048,AAA Batteries (4-pack),2,2.99,2019-10-29 17:22:00,455 Lakeview St, Boston,MA,02215 +260049,AAA Batteries (4-pack),2,2.99,2019-10-11 21:54:00,185 5th St, Boston,MA,02215 +260050,Apple Airpods Headphones,1,150.0,2019-10-24 21:02:00,358 River St, Portland,OR,97035 +260051,34in Ultrawide Monitor,1,379.99,2019-10-19 10:50:00,777 North St, San Francisco,CA,94016 +260052,Apple Airpods Headphones,1,150.0,2019-10-08 13:11:00,964 12th St, San Francisco,CA,94016 +260053,Flatscreen TV,1,300.0,2019-10-04 22:18:00,185 7th St, Dallas,TX,75001 +260054,27in 4K Gaming Monitor,1,389.99,2019-10-26 17:18:00,67 South St, Seattle,WA,98101 +260055,ThinkPad Laptop,1,999.99,2019-10-12 21:11:00,258 Elm St, New York City,NY,10001 +260055,34in Ultrawide Monitor,1,379.99,2019-10-12 21:11:00,258 Elm St, New York City,NY,10001 +260056,USB-C Charging Cable,1,11.95,2019-10-18 13:47:00,70 Church St, San Francisco,CA,94016 +260057,27in 4K Gaming Monitor,1,389.99,2019-10-20 00:12:00,997 Spruce St, Dallas,TX,75001 +260058,Flatscreen TV,1,300.0,2019-10-30 18:16:00,268 Lakeview St, Seattle,WA,98101 +260059,iPhone,1,700.0,2019-10-29 18:51:00,649 11th St, Atlanta,GA,30301 +260060,Wired Headphones,1,11.99,2019-10-13 21:37:00,640 9th St, Los Angeles,CA,90001 +260061,AA Batteries (4-pack),3,3.84,2019-10-16 12:49:00,530 Forest St, San Francisco,CA,94016 +260062,Lightning Charging Cable,1,14.95,2019-10-13 00:37:00,606 Center St, Seattle,WA,98101 +260063,AAA Batteries (4-pack),2,2.99,2019-10-20 09:16:00,701 South St, New York City,NY,10001 +260064,Flatscreen TV,1,300.0,2019-10-21 14:14:00,33 Johnson St, Boston,MA,02215 +260065,AA Batteries (4-pack),1,3.84,2019-10-06 08:25:00,629 14th St, San Francisco,CA,94016 +260066,Lightning Charging Cable,1,14.95,2019-10-11 15:17:00,370 8th St, Boston,MA,02215 +260067,Lightning Charging Cable,1,14.95,2019-10-23 07:48:00,990 Main St, Austin,TX,73301 +260068,Bose SoundSport Headphones,1,99.99,2019-10-14 22:20:00,154 West St, San Francisco,CA,94016 +260069,Macbook Pro Laptop,1,1700.0,2019-10-23 16:04:00,754 13th St, Portland,OR,97035 +260070,AA Batteries (4-pack),1,3.84,2019-10-07 06:12:00,922 8th St, Austin,TX,73301 +260071,Wired Headphones,1,11.99,2019-10-13 17:37:00,407 North St, Atlanta,GA,30301 +260072,AAA Batteries (4-pack),1,2.99,2019-10-10 21:16:00,681 Willow St, Boston,MA,02215 +260073,Bose SoundSport Headphones,1,99.99,2019-10-28 23:03:00,670 Johnson St, San Francisco,CA,94016 +260074,27in FHD Monitor,1,149.99,2019-10-25 12:46:00,547 Lincoln St, San Francisco,CA,94016 +260075,AAA Batteries (4-pack),2,2.99,2019-10-27 18:37:00,562 7th St, Los Angeles,CA,90001 +260076,AA Batteries (4-pack),1,3.84,2019-10-15 19:35:00,495 Lincoln St, New York City,NY,10001 +260077,USB-C Charging Cable,1,11.95,2019-10-19 09:51:00,153 6th St, New York City,NY,10001 +260078,AAA Batteries (4-pack),1,2.99,2019-10-19 23:59:00,7 Ridge St, San Francisco,CA,94016 +260079,Flatscreen TV,1,300.0,2019-10-05 07:29:00,645 Forest St, New York City,NY,10001 +260080,Apple Airpods Headphones,1,150.0,2019-10-01 19:27:00,75 Cedar St, Dallas,TX,75001 +260081,Lightning Charging Cable,1,14.95,2019-10-13 08:21:00,632 Jefferson St, Los Angeles,CA,90001 +260082,20in Monitor,1,109.99,2019-10-10 19:08:00,679 River St, Portland,OR,97035 +260083,USB-C Charging Cable,1,11.95,2019-10-03 16:26:00,874 11th St, Atlanta,GA,30301 +260084,Wired Headphones,1,11.99,2019-10-06 14:56:00,769 Center St, New York City,NY,10001 +260085,34in Ultrawide Monitor,1,379.99,2019-10-28 12:27:00,987 Wilson St, Portland,OR,97035 +260086,Lightning Charging Cable,1,14.95,2019-10-13 12:34:00,685 8th St, Boston,MA,02215 +260087,Apple Airpods Headphones,1,150.0,2019-10-28 18:50:00,987 Maple St, Austin,TX,73301 +260088,Lightning Charging Cable,1,14.95,2019-10-10 19:51:00,135 Elm St, San Francisco,CA,94016 +260089,USB-C Charging Cable,2,11.95,2019-10-05 16:39:00,382 River St, Boston,MA,02215 +260090,AA Batteries (4-pack),1,3.84,2019-10-02 18:46:00,128 Main St, Seattle,WA,98101 +260091,AAA Batteries (4-pack),1,2.99,2019-10-07 21:41:00,379 Church St, Boston,MA,02215 +260092,20in Monitor,1,109.99,2019-10-20 18:23:00,608 5th St, New York City,NY,10001 +260093,AAA Batteries (4-pack),1,2.99,2019-10-16 10:40:00,921 Washington St, Portland,OR,97035 +260094,iPhone,1,700.0,2019-10-10 12:08:00,202 Maple St, San Francisco,CA,94016 +260095,USB-C Charging Cable,1,11.95,2019-10-09 07:13:00,270 11th St, Boston,MA,02215 +260096,Wired Headphones,2,11.99,2019-10-01 18:44:00,648 Dogwood St, Los Angeles,CA,90001 +260097,USB-C Charging Cable,1,11.95,2019-10-22 14:09:00,745 13th St, Dallas,TX,75001 +260098,AA Batteries (4-pack),1,3.84,2019-10-30 22:59:00,91 Adams St, Los Angeles,CA,90001 +260099,USB-C Charging Cable,1,11.95,2019-10-30 12:03:00,702 Cedar St, San Francisco,CA,94016 +260100,Flatscreen TV,1,300.0,2019-10-25 21:55:00,819 14th St, Atlanta,GA,30301 +260101,Flatscreen TV,1,300.0,2019-10-08 11:53:00,559 4th St, Austin,TX,73301 +260102,AAA Batteries (4-pack),3,2.99,2019-10-23 06:36:00,626 Highland St, Seattle,WA,98101 +260103,AAA Batteries (4-pack),4,2.99,2019-10-24 12:01:00,327 11th St, New York City,NY,10001 +260104,AA Batteries (4-pack),1,3.84,2019-10-19 19:20:00,383 1st St, Portland,OR,97035 +260105,Apple Airpods Headphones,1,150.0,2019-10-13 23:38:00,777 Church St, Los Angeles,CA,90001 +260106,Wired Headphones,1,11.99,2019-10-15 12:46:00,473 8th St, Los Angeles,CA,90001 +260107,Lightning Charging Cable,1,14.95,2019-10-20 20:16:00,820 Center St, Atlanta,GA,30301 +260108,Wired Headphones,1,11.99,2019-10-22 12:23:00,954 Wilson St, Austin,TX,73301 +260109,Wired Headphones,1,11.99,2019-10-16 17:32:00,933 Dogwood St, New York City,NY,10001 +260110,34in Ultrawide Monitor,1,379.99,2019-10-17 20:32:00,472 River St, San Francisco,CA,94016 +260111,AAA Batteries (4-pack),1,2.99,2019-10-06 20:15:00,406 Madison St, Los Angeles,CA,90001 +260112,AA Batteries (4-pack),1,3.84,2019-10-11 10:24:00,626 Maple St, San Francisco,CA,94016 +260113,34in Ultrawide Monitor,1,379.99,2019-10-29 15:42:00,115 Jackson St, Seattle,WA,98101 +260114,AAA Batteries (4-pack),1,2.99,2019-10-19 23:31:00,645 7th St, Seattle,WA,98101 +260115,USB-C Charging Cable,1,11.95,2019-10-16 13:21:00,360 Walnut St, Seattle,WA,98101 +260116,Wired Headphones,1,11.99,2019-10-10 21:17:00,726 Cherry St, San Francisco,CA,94016 +260117,Wired Headphones,1,11.99,2019-10-23 17:25:00,740 River St, Portland,OR,97035 +260118,Wired Headphones,1,11.99,2019-10-02 16:30:00,727 Sunset St, San Francisco,CA,94016 +260119,Bose SoundSport Headphones,1,99.99,2019-10-26 15:25:00,319 Pine St, San Francisco,CA,94016 +260120,AA Batteries (4-pack),1,3.84,2019-10-15 18:52:00,980 Elm St, Austin,TX,73301 +260121,Lightning Charging Cable,1,14.95,2019-10-25 08:34:00,852 Chestnut St, San Francisco,CA,94016 +260122,Macbook Pro Laptop,1,1700.0,2019-10-29 23:29:00,466 Madison St, Portland,OR,97035 +260123,AA Batteries (4-pack),1,3.84,2019-10-09 12:50:00,573 1st St, Austin,TX,73301 +260124,iPhone,1,700.0,2019-10-22 21:09:00,358 Main St, Los Angeles,CA,90001 +260125,AAA Batteries (4-pack),2,2.99,2019-10-31 09:31:00,500 North St, Portland,OR,97035 +260126,Apple Airpods Headphones,1,150.0,2019-10-17 18:31:00,371 7th St, Los Angeles,CA,90001 +260127,iPhone,1,700.0,2019-10-06 23:57:00,227 Willow St, San Francisco,CA,94016 +260127,Lightning Charging Cable,1,14.95,2019-10-06 23:57:00,227 Willow St, San Francisco,CA,94016 +260127,Wired Headphones,1,11.99,2019-10-06 23:57:00,227 Willow St, San Francisco,CA,94016 +260128,AAA Batteries (4-pack),2,2.99,2019-10-18 12:54:00,360 Hill St, Atlanta,GA,30301 +260129,USB-C Charging Cable,1,11.95,2019-10-14 13:17:00,49 8th St, Los Angeles,CA,90001 +260130,AA Batteries (4-pack),1,3.84,2019-10-23 21:29:00,825 Chestnut St, Los Angeles,CA,90001 +260131,AA Batteries (4-pack),1,3.84,2019-10-07 22:29:00,766 Lakeview St, San Francisco,CA,94016 +260132,AA Batteries (4-pack),1,3.84,2019-10-25 16:48:00,920 Cedar St, Boston,MA,02215 +260133,Flatscreen TV,1,300.0,2019-10-18 19:32:00,245 Park St, Los Angeles,CA,90001 +260134,Bose SoundSport Headphones,1,99.99,2019-10-01 11:15:00,424 14th St, Boston,MA,02215 +260135,34in Ultrawide Monitor,1,379.99,2019-10-01 07:35:00,550 Cherry St, San Francisco,CA,94016 +260135,AA Batteries (4-pack),1,3.84,2019-10-01 07:35:00,550 Cherry St, San Francisco,CA,94016 +260136,AAA Batteries (4-pack),1,2.99,2019-10-16 08:12:00,532 13th St, Seattle,WA,98101 +260137,34in Ultrawide Monitor,1,379.99,2019-10-10 19:24:00,801 West St, Austin,TX,73301 +260138,AA Batteries (4-pack),3,3.84,2019-10-26 20:57:00,65 North St, Boston,MA,02215 +260139,Lightning Charging Cable,1,14.95,2019-10-14 19:35:00,775 12th St, San Francisco,CA,94016 +260140,USB-C Charging Cable,1,11.95,2019-10-11 17:14:00,822 14th St, San Francisco,CA,94016 +260141,AAA Batteries (4-pack),1,2.99,2019-10-30 00:20:00,574 Cedar St, New York City,NY,10001 +260142,Lightning Charging Cable,1,14.95,2019-10-09 13:59:00,781 Maple St, New York City,NY,10001 +260143,Apple Airpods Headphones,1,150.0,2019-10-23 10:11:00,94 Wilson St, San Francisco,CA,94016 +260144,27in FHD Monitor,1,149.99,2019-10-18 14:49:00,80 River St, Portland,OR,97035 +260145,Lightning Charging Cable,1,14.95,2019-10-09 14:15:00,436 Main St, San Francisco,CA,94016 +260146,AA Batteries (4-pack),2,3.84,2019-10-30 21:28:00,613 Church St, San Francisco,CA,94016 +260147,AAA Batteries (4-pack),1,2.99,2019-10-08 19:14:00,844 Cedar St, San Francisco,CA,94016 +260148,AAA Batteries (4-pack),1,2.99,2019-10-22 11:55:00,127 Highland St, Los Angeles,CA,90001 +260149,Wired Headphones,2,11.99,2019-10-01 07:08:00,382 Hill St, Seattle,WA,98101 +260150,Lightning Charging Cable,1,14.95,2019-10-31 12:14:00,852 Wilson St, San Francisco,CA,94016 +260151,USB-C Charging Cable,1,11.95,2019-10-16 12:31:00,660 7th St, Austin,TX,73301 +260152,Macbook Pro Laptop,1,1700.0,2019-10-23 17:25:00,926 Spruce St, San Francisco,CA,94016 +260153,AAA Batteries (4-pack),1,2.99,2019-10-13 05:49:00,274 Johnson St, San Francisco,CA,94016 +260154,AA Batteries (4-pack),1,3.84,2019-10-15 14:03:00,368 Park St, Dallas,TX,75001 +260155,AA Batteries (4-pack),1,3.84,2019-10-07 10:52:00,425 River St, Atlanta,GA,30301 +260156,AA Batteries (4-pack),2,3.84,2019-10-20 12:56:00,514 Adams St, Seattle,WA,98101 +260157,USB-C Charging Cable,1,11.95,2019-10-04 21:41:00,637 Spruce St, Atlanta,GA,30301 +260158,AA Batteries (4-pack),2,3.84,2019-10-23 19:35:00,86 South St, San Francisco,CA,94016 +260159,Lightning Charging Cable,1,14.95,2019-10-26 15:06:00,765 Cedar St, Boston,MA,02215 +260160,AA Batteries (4-pack),1,3.84,2019-10-10 14:16:00,100 Pine St, Boston,MA,02215 +260161,USB-C Charging Cable,1,11.95,2019-10-30 11:30:00,124 Cedar St, Dallas,TX,75001 +260162,Lightning Charging Cable,1,14.95,2019-10-21 11:37:00,977 Forest St, Atlanta,GA,30301 +260163,Wired Headphones,2,11.99,2019-10-10 00:31:00,372 Dogwood St, Portland,OR,97035 +260164,ThinkPad Laptop,1,999.99,2019-10-10 13:03:00,394 2nd St, Boston,MA,02215 +260165,Bose SoundSport Headphones,1,99.99,2019-10-28 00:03:00,509 9th St, San Francisco,CA,94016 +260166,Apple Airpods Headphones,1,150.0,2019-10-20 09:52:00,375 5th St, Seattle,WA,98101 +260167,Google Phone,1,600.0,2019-10-22 12:31:00,251 Dogwood St, Boston,MA,02215 +260168,Wired Headphones,1,11.99,2019-10-25 09:24:00,731 Pine St, Dallas,TX,75001 +260169,Lightning Charging Cable,1,14.95,2019-10-07 00:38:00,429 Ridge St, Dallas,TX,75001 +260170,27in 4K Gaming Monitor,1,389.99,2019-10-08 12:31:00,275 Sunset St, Los Angeles,CA,90001 +260171,Wired Headphones,1,11.99,2019-10-28 18:02:00,386 2nd St, Portland,OR,97035 +260172,Bose SoundSport Headphones,1,99.99,2019-10-16 21:03:00,636 Elm St, Boston,MA,02215 +260173,20in Monitor,1,109.99,2019-10-26 11:38:00,350 Washington St, Boston,MA,02215 +260174,USB-C Charging Cable,1,11.95,2019-10-16 09:22:00,889 Maple St, Austin,TX,73301 +260175,20in Monitor,1,109.99,2019-10-24 19:01:00,658 Church St, Dallas,TX,75001 +260176,34in Ultrawide Monitor,1,379.99,2019-10-20 22:37:00,209 West St, San Francisco,CA,94016 +260177,USB-C Charging Cable,1,11.95,2019-10-13 21:05:00,301 Pine St, San Francisco,CA,94016 +260178,USB-C Charging Cable,1,11.95,2019-10-30 14:04:00,478 Hickory St, Boston,MA,02215 +260179,AAA Batteries (4-pack),1,2.99,2019-10-20 10:30:00,328 7th St, Dallas,TX,75001 +260180,iPhone,1,700.0,2019-10-21 16:14:00,26 Meadow St, Austin,TX,73301 +260181,Bose SoundSport Headphones,1,99.99,2019-10-22 18:18:00,266 10th St, New York City,NY,10001 +260182,Wired Headphones,1,11.99,2019-10-20 16:14:00,32 Johnson St, Boston,MA,02215 +260183,Bose SoundSport Headphones,1,99.99,2019-10-17 01:16:00,184 West St, Atlanta,GA,30301 +260183,Lightning Charging Cable,1,14.95,2019-10-17 01:16:00,184 West St, Atlanta,GA,30301 +260184,AAA Batteries (4-pack),1,2.99,2019-10-09 11:50:00,607 Sunset St, San Francisco,CA,94016 +260185,iPhone,1,700.0,2019-10-20 10:18:00,52 Meadow St, San Francisco,CA,94016 +260186,ThinkPad Laptop,1,999.99,2019-10-16 14:19:00,697 Johnson St, New York City,NY,10001 +260187,20in Monitor,1,109.99,2019-10-21 08:34:00,113 Cedar St, Dallas,TX,75001 +260188,USB-C Charging Cable,1,11.95,2019-10-19 14:44:00,901 Park St, New York City,NY,10001 +260189,Google Phone,1,600.0,2019-10-17 23:22:00,257 South St, San Francisco,CA,94016 +260190,USB-C Charging Cable,1,11.95,2019-10-24 19:41:00,418 Walnut St, Atlanta,GA,30301 +260191,Bose SoundSport Headphones,1,99.99,2019-10-13 17:06:00,326 Highland St, San Francisco,CA,94016 +260192,USB-C Charging Cable,1,11.95,2019-10-09 13:00:00,358 14th St, Portland,OR,97035 +260193,Lightning Charging Cable,1,14.95,2019-10-25 22:10:00,521 Cedar St, San Francisco,CA,94016 +260194,AA Batteries (4-pack),1,3.84,2019-10-10 17:08:00,298 River St, Los Angeles,CA,90001 +260195,USB-C Charging Cable,1,11.95,2019-10-09 01:40:00,520 Sunset St, Los Angeles,CA,90001 +260196,Bose SoundSport Headphones,1,99.99,2019-10-20 13:34:00,904 12th St, New York City,NY,10001 +260197,USB-C Charging Cable,1,11.95,2019-10-09 16:02:00,409 Adams St, Dallas,TX,75001 +260198,AAA Batteries (4-pack),3,2.99,2019-10-17 19:32:00,428 9th St, San Francisco,CA,94016 +260199,AA Batteries (4-pack),1,3.84,2019-10-26 11:46:00,964 7th St, Los Angeles,CA,90001 +260200,34in Ultrawide Monitor,1,379.99,2019-10-12 19:19:00,40 Ridge St, Los Angeles,CA,90001 +260201,Bose SoundSport Headphones,1,99.99,2019-10-20 12:04:00,953 Spruce St, Los Angeles,CA,90001 +260202,Lightning Charging Cable,1,14.95,2019-10-02 01:53:00,677 North St, Atlanta,GA,30301 +260203,Wired Headphones,1,11.99,2019-10-20 13:01:00,588 Lake St, San Francisco,CA,94016 +260204,Lightning Charging Cable,1,14.95,2019-10-31 10:57:00,135 Johnson St, New York City,NY,10001 +260205,Lightning Charging Cable,1,14.95,2019-10-13 18:33:00,281 Lakeview St, Los Angeles,CA,90001 +260206,USB-C Charging Cable,1,11.95,2019-10-09 12:30:00,987 West St, Atlanta,GA,30301 +260207,Apple Airpods Headphones,1,150.0,2019-10-04 14:45:00,129 2nd St, Dallas,TX,75001 +260208,27in 4K Gaming Monitor,1,389.99,2019-10-16 18:47:00,121 Cherry St, San Francisco,CA,94016 +260209,Wired Headphones,1,11.99,2019-10-01 18:09:00,14 2nd St, Atlanta,GA,30301 +260210,27in 4K Gaming Monitor,1,389.99,2019-10-03 09:33:00,332 Dogwood St, Los Angeles,CA,90001 +260211,Apple Airpods Headphones,1,150.0,2019-10-27 23:30:00,716 Cedar St, New York City,NY,10001 +260212,Apple Airpods Headphones,1,150.0,2019-10-06 20:26:00,29 7th St, Boston,MA,02215 +260213,AA Batteries (4-pack),3,3.84,2019-10-08 22:03:00,210 Johnson St, Austin,TX,73301 +260214,Wired Headphones,1,11.99,2019-10-04 18:21:00,482 Chestnut St, Los Angeles,CA,90001 +260215,Google Phone,1,600.0,2019-10-09 18:49:00,630 1st St, Boston,MA,02215 +260215,USB-C Charging Cable,1,11.95,2019-10-09 18:49:00,630 1st St, Boston,MA,02215 +260216,USB-C Charging Cable,1,11.95,2019-10-28 12:38:00,971 West St, New York City,NY,10001 +260217,AA Batteries (4-pack),1,3.84,2019-10-15 16:32:00,482 Church St, Portland,OR,97035 +260218,Bose SoundSport Headphones,1,99.99,2019-10-14 11:52:00,56 Meadow St, New York City,NY,10001 +260219,27in FHD Monitor,1,149.99,2019-10-01 14:26:00,309 Pine St, Boston,MA,02215 +260219,USB-C Charging Cable,1,11.95,2019-10-01 14:26:00,309 Pine St, Boston,MA,02215 +260220,AA Batteries (4-pack),1,3.84,2019-10-13 17:36:00,898 6th St, Dallas,TX,75001 +260221,Apple Airpods Headphones,1,150.0,2019-10-14 20:13:00,208 Wilson St, Austin,TX,73301 +260222,27in FHD Monitor,1,149.99,2019-10-23 20:14:00,242 4th St, Boston,MA,02215 +260223,Wired Headphones,1,11.99,2019-10-10 19:06:00,678 Jackson St, Los Angeles,CA,90001 +260224,AAA Batteries (4-pack),1,2.99,2019-10-01 16:27:00,764 Forest St, San Francisco,CA,94016 +260225,Lightning Charging Cable,1,14.95,2019-10-19 19:15:00,323 Willow St, San Francisco,CA,94016 +260225,20in Monitor,1,109.99,2019-10-19 19:15:00,323 Willow St, San Francisco,CA,94016 +260226,iPhone,1,700.0,2019-10-01 22:41:00,121 4th St, Boston,MA,02215 +260226,Lightning Charging Cable,1,14.95,2019-10-01 22:41:00,121 4th St, Boston,MA,02215 +260227,27in FHD Monitor,1,149.99,2019-10-25 14:36:00,647 10th St, Dallas,TX,75001 +260228,Google Phone,1,600.0,2019-10-29 01:12:00,4 Lake St, Atlanta,GA,30301 +260229,AA Batteries (4-pack),1,3.84,2019-10-09 14:57:00,94 Wilson St, San Francisco,CA,94016 +260230,iPhone,1,700.0,2019-10-26 11:41:00,840 5th St, Dallas,TX,75001 +260231,27in FHD Monitor,1,149.99,2019-10-07 16:35:00,213 Washington St, Dallas,TX,75001 +260232,Apple Airpods Headphones,1,150.0,2019-10-01 17:51:00,292 North St, Austin,TX,73301 +260233,AA Batteries (4-pack),1,3.84,2019-10-15 19:00:00,30 Jefferson St, New York City,NY,10001 +260234,USB-C Charging Cable,1,11.95,2019-10-22 12:58:00,664 Jefferson St, New York City,NY,10001 +260235,USB-C Charging Cable,1,11.95,2019-10-10 13:23:00,275 River St, San Francisco,CA,94016 +260236,AA Batteries (4-pack),1,3.84,2019-10-04 18:50:00,52 Jackson St, Los Angeles,CA,90001 +260237,Bose SoundSport Headphones,1,99.99,2019-10-05 16:05:00,569 Elm St, San Francisco,CA,94016 +260238,Lightning Charging Cable,1,14.95,2019-10-17 16:00:00,887 Main St, Seattle,WA,98101 +260239,USB-C Charging Cable,1,11.95,2019-10-02 23:54:00,462 11th St, Los Angeles,CA,90001 +260240,AA Batteries (4-pack),1,3.84,2019-10-09 16:08:00,314 Ridge St, San Francisco,CA,94016 +260241,27in FHD Monitor,1,149.99,2019-10-21 08:08:00,920 Madison St, Boston,MA,02215 +260242,Lightning Charging Cable,1,14.95,2019-10-21 19:19:00,446 Pine St, San Francisco,CA,94016 +260243,AAA Batteries (4-pack),1,2.99,2019-10-08 20:33:00,796 Chestnut St, New York City,NY,10001 +260244,Wired Headphones,1,11.99,2019-10-22 09:19:00,353 Elm St, Dallas,TX,75001 +260245,AAA Batteries (4-pack),1,2.99,2019-10-06 13:18:00,207 5th St, San Francisco,CA,94016 +260246,AA Batteries (4-pack),3,3.84,2019-10-23 10:35:00,879 12th St, Atlanta,GA,30301 +260247,AAA Batteries (4-pack),1,2.99,2019-10-29 12:51:00,265 North St, Los Angeles,CA,90001 +260248,Lightning Charging Cable,2,14.95,2019-10-30 19:11:00,67 9th St, Dallas,TX,75001 +260249,Bose SoundSport Headphones,1,99.99,2019-10-02 15:52:00,973 7th St, Seattle,WA,98101 +260250,AA Batteries (4-pack),1,3.84,2019-10-20 18:13:00,25 North St, New York City,NY,10001 +260251,AAA Batteries (4-pack),1,2.99,2019-10-03 22:59:00,209 River St, Los Angeles,CA,90001 +260251,Google Phone,1,600.0,2019-10-03 22:59:00,209 River St, Los Angeles,CA,90001 +260252,20in Monitor,1,109.99,2019-10-10 22:45:00,809 Main St, Atlanta,GA,30301 +260253,Lightning Charging Cable,1,14.95,2019-10-07 10:57:00,997 Lakeview St, Seattle,WA,98101 +260254,USB-C Charging Cable,1,11.95,2019-10-03 17:31:00,444 Church St, Los Angeles,CA,90001 +260255,AA Batteries (4-pack),1,3.84,2019-10-01 14:45:00,72 Wilson St, Dallas,TX,75001 +260256,USB-C Charging Cable,1,11.95,2019-10-08 12:04:00,515 7th St, San Francisco,CA,94016 +260257,AAA Batteries (4-pack),1,2.99,2019-10-10 08:21:00,994 10th St, Seattle,WA,98101 +260258,Apple Airpods Headphones,1,150.0,2019-10-08 09:24:00,998 Dogwood St, Dallas,TX,75001 +260259,Wired Headphones,1,11.99,2019-10-09 16:25:00,761 Lake St, Atlanta,GA,30301 +260260,AA Batteries (4-pack),1,3.84,2019-10-21 06:27:00,490 River St, Los Angeles,CA,90001 +260261,Lightning Charging Cable,2,14.95,2019-10-05 12:04:00,526 4th St, Seattle,WA,98101 +260262,Apple Airpods Headphones,1,150.0,2019-10-26 17:08:00,282 Johnson St, Atlanta,GA,30301 +260263,Flatscreen TV,1,300.0,2019-10-02 15:02:00,903 2nd St, Seattle,WA,98101 +260264,Macbook Pro Laptop,1,1700.0,2019-10-28 13:39:00,310 North St, Dallas,TX,75001 +260265,27in FHD Monitor,1,149.99,2019-10-21 20:55:00,695 Elm St, New York City,NY,10001 +260266,AAA Batteries (4-pack),4,2.99,2019-10-26 00:53:00,487 9th St, New York City,NY,10001 +260267,AAA Batteries (4-pack),1,2.99,2019-10-13 16:08:00,931 South St, Boston,MA,02215 +260268,USB-C Charging Cable,1,11.95,2019-10-08 18:19:00,152 Park St, Atlanta,GA,30301 +260269,ThinkPad Laptop,1,999.99,2019-10-26 16:16:00,25 Sunset St, Boston,MA,02215 +260270,iPhone,1,700.0,2019-10-12 16:24:00,41 Lincoln St, San Francisco,CA,94016 +260271,27in FHD Monitor,1,149.99,2019-10-24 18:18:00,18 River St, San Francisco,CA,94016 +260272,Wired Headphones,1,11.99,2019-10-24 17:45:00,593 Forest St, Portland,ME,04101 +260273,27in 4K Gaming Monitor,1,389.99,2019-10-05 13:18:00,699 Park St, San Francisco,CA,94016 +260274,USB-C Charging Cable,2,11.95,2019-10-01 22:42:00,146 Hill St, San Francisco,CA,94016 +260275,Wired Headphones,1,11.99,2019-10-08 08:57:00,37 10th St, Dallas,TX,75001 +260276,USB-C Charging Cable,1,11.95,2019-10-25 13:05:00,31 North St, Los Angeles,CA,90001 +260277,Bose SoundSport Headphones,1,99.99,2019-10-22 15:52:00,959 Lakeview St, Dallas,TX,75001 +260278,USB-C Charging Cable,1,11.95,2019-10-28 02:37:00,309 Wilson St, Portland,OR,97035 +260279,Wired Headphones,1,11.99,2019-10-18 15:40:00,910 Lakeview St, San Francisco,CA,94016 +260280,Lightning Charging Cable,1,14.95,2019-10-04 11:46:00,185 1st St, Los Angeles,CA,90001 +260281,Macbook Pro Laptop,1,1700.0,2019-10-13 18:15:00,985 Adams St, Los Angeles,CA,90001 +260282,Lightning Charging Cable,1,14.95,2019-10-26 19:24:00,224 1st St, Boston,MA,02215 +260283,20in Monitor,1,109.99,2019-10-02 06:26:00,29 Pine St, San Francisco,CA,94016 +260284,Wired Headphones,1,11.99,2019-10-17 07:28:00,606 8th St, Los Angeles,CA,90001 +260285,AAA Batteries (4-pack),1,2.99,2019-10-27 12:15:00,956 Jackson St, Portland,ME,04101 +260286,AA Batteries (4-pack),1,3.84,2019-10-25 18:18:00,529 River St, New York City,NY,10001 +260287,Macbook Pro Laptop,1,1700.0,2019-10-04 16:26:00,620 9th St, New York City,NY,10001 +260288,Apple Airpods Headphones,1,150.0,2019-10-14 19:54:00,293 13th St, San Francisco,CA,94016 +260289,AAA Batteries (4-pack),1,2.99,2019-10-18 03:50:00,497 Spruce St, Seattle,WA,98101 +260290,34in Ultrawide Monitor,1,379.99,2019-10-17 13:12:00,812 Lakeview St, New York City,NY,10001 +260291,Apple Airpods Headphones,1,150.0,2019-10-01 19:23:00,896 Washington St, San Francisco,CA,94016 +260292,AA Batteries (4-pack),1,3.84,2019-10-03 20:43:00,137 Jefferson St, San Francisco,CA,94016 +260293,Google Phone,1,600.0,2019-10-10 11:44:00,795 Willow St, Los Angeles,CA,90001 +260293,Wired Headphones,1,11.99,2019-10-10 11:44:00,795 Willow St, Los Angeles,CA,90001 +260294,AAA Batteries (4-pack),1,2.99,2019-10-25 15:47:00,280 5th St, Los Angeles,CA,90001 +260295,Wired Headphones,1,11.99,2019-10-06 21:31:00,412 Church St, Portland,ME,04101 +260296,Lightning Charging Cable,1,14.95,2019-10-29 17:58:00,214 Jefferson St, San Francisco,CA,94016 +260297,USB-C Charging Cable,1,11.95,2019-10-11 12:32:00,428 Center St, New York City,NY,10001 +260298,iPhone,1,700.0,2019-10-31 16:21:00,561 Willow St, Austin,TX,73301 +260299,Lightning Charging Cable,1,14.95,2019-10-20 08:46:00,506 7th St, San Francisco,CA,94016 +260300,Vareebadd Phone,1,400.0,2019-10-28 11:33:00,806 Jefferson St, Atlanta,GA,30301 +260300,USB-C Charging Cable,1,11.95,2019-10-28 11:33:00,806 Jefferson St, Atlanta,GA,30301 +260301,iPhone,1,700.0,2019-10-12 12:28:00,209 Park St, Los Angeles,CA,90001 +260302,USB-C Charging Cable,1,11.95,2019-10-28 23:54:00,232 9th St, San Francisco,CA,94016 +260303,20in Monitor,1,109.99,2019-10-18 17:57:00,737 Jackson St, San Francisco,CA,94016 +260304,Lightning Charging Cable,1,14.95,2019-10-02 20:40:00,994 14th St, Seattle,WA,98101 +260305,27in 4K Gaming Monitor,1,389.99,2019-10-17 14:15:00,822 Pine St, San Francisco,CA,94016 +260306,34in Ultrawide Monitor,1,379.99,2019-10-20 11:51:00,872 Lakeview St, Seattle,WA,98101 +260307,Macbook Pro Laptop,1,1700.0,2019-10-10 17:25:00,500 Forest St, Seattle,WA,98101 +260308,Flatscreen TV,1,300.0,2019-10-05 10:28:00,814 Dogwood St, Seattle,WA,98101 +260309,27in 4K Gaming Monitor,1,389.99,2019-10-02 18:12:00,782 Wilson St, Austin,TX,73301 +260310,ThinkPad Laptop,1,999.99,2019-10-11 06:51:00,244 Willow St, Seattle,WA,98101 +260311,AA Batteries (4-pack),1,3.84,2019-10-15 18:41:00,111 11th St, Los Angeles,CA,90001 +260312,Bose SoundSport Headphones,1,99.99,2019-10-05 11:47:00,605 Walnut St, Dallas,TX,75001 +260313,Lightning Charging Cable,1,14.95,2019-10-22 11:16:00,448 River St, Austin,TX,73301 +260314,Wired Headphones,1,11.99,2019-10-27 13:24:00,960 Cherry St, Atlanta,GA,30301 +260315,AAA Batteries (4-pack),1,2.99,2019-10-30 22:39:00,984 Church St, Portland,OR,97035 +260316,AAA Batteries (4-pack),1,2.99,2019-10-28 04:31:00,875 6th St, Atlanta,GA,30301 +260317,AA Batteries (4-pack),2,3.84,2019-10-19 06:48:00,493 Cedar St, San Francisco,CA,94016 +260318,AA Batteries (4-pack),1,3.84,2019-10-19 12:44:00,847 Lakeview St, New York City,NY,10001 +260319,AAA Batteries (4-pack),1,2.99,2019-10-09 13:23:00,814 River St, New York City,NY,10001 +260320,Wired Headphones,1,11.99,2019-10-05 09:30:00,47 14th St, Dallas,TX,75001 +260321,USB-C Charging Cable,1,11.95,2019-10-22 21:49:00,252 Highland St, Los Angeles,CA,90001 +260322,Bose SoundSport Headphones,1,99.99,2019-10-02 11:14:00,724 1st St, Austin,TX,73301 +260323,Wired Headphones,1,11.99,2019-10-09 19:12:00,248 Pine St, San Francisco,CA,94016 +260324,Lightning Charging Cable,1,14.95,2019-10-26 18:23:00,645 Ridge St, Portland,OR,97035 +260325,20in Monitor,1,109.99,2019-10-03 11:08:00,416 Adams St, Boston,MA,02215 +260326,Bose SoundSport Headphones,1,99.99,2019-10-09 19:59:00,673 Maple St, Los Angeles,CA,90001 +260327,Wired Headphones,1,11.99,2019-10-12 05:26:00,834 Elm St, Austin,TX,73301 +260328,34in Ultrawide Monitor,1,379.99,2019-10-23 13:39:00,613 Main St, Austin,TX,73301 +260329,Vareebadd Phone,1,400.0,2019-10-20 13:46:00,808 South St, New York City,NY,10001 +260330,USB-C Charging Cable,1,11.95,2019-10-28 10:53:00,866 1st St, San Francisco,CA,94016 +260331,27in FHD Monitor,1,149.99,2019-10-31 11:39:00,881 Church St, Atlanta,GA,30301 +260332,27in FHD Monitor,1,149.99,2019-10-25 14:02:00,718 Lincoln St, Dallas,TX,75001 +260333,Apple Airpods Headphones,1,150.0,2019-10-31 18:19:00,615 North St, Portland,OR,97035 +260334,Wired Headphones,1,11.99,2019-10-01 21:49:00,992 7th St, Los Angeles,CA,90001 +260335,34in Ultrawide Monitor,1,379.99,2019-10-09 18:49:00,141 Jackson St, Seattle,WA,98101 +260336,AA Batteries (4-pack),1,3.84,2019-10-30 17:24:00,250 Lincoln St, Portland,OR,97035 +260337,AAA Batteries (4-pack),1,2.99,2019-10-25 20:48:00,591 Sunset St, Los Angeles,CA,90001 +260338,Lightning Charging Cable,1,14.95,2019-10-12 16:21:00,813 Spruce St, San Francisco,CA,94016 +260339,USB-C Charging Cable,1,11.95,2019-10-27 19:26:00,745 Cherry St, Los Angeles,CA,90001 +260340,Wired Headphones,1,11.99,2019-10-08 16:26:00,138 Hill St, San Francisco,CA,94016 +260341,27in FHD Monitor,1,149.99,2019-10-14 17:14:00,624 Spruce St, New York City,NY,10001 +260342,Lightning Charging Cable,1,14.95,2019-10-16 14:44:00,491 Lake St, Portland,OR,97035 +260343,iPhone,1,700.0,2019-10-12 21:45:00,404 River St, New York City,NY,10001 +260344,ThinkPad Laptop,1,999.99,2019-10-30 08:24:00,140 Church St, Seattle,WA,98101 +260345,Bose SoundSport Headphones,1,99.99,2019-10-31 18:11:00,78 8th St, Portland,OR,97035 +260346,iPhone,1,700.0,2019-10-30 21:28:00,328 Meadow St, Boston,MA,02215 +260346,Lightning Charging Cable,1,14.95,2019-10-30 21:28:00,328 Meadow St, Boston,MA,02215 +260347,Lightning Charging Cable,1,14.95,2019-10-07 20:23:00,856 Lake St, San Francisco,CA,94016 +260348,Wired Headphones,1,11.99,2019-10-29 12:08:00,893 13th St, San Francisco,CA,94016 +260349,Bose SoundSport Headphones,1,99.99,2019-10-14 19:33:00,621 River St, Portland,OR,97035 +260350,AAA Batteries (4-pack),5,2.99,2019-10-04 22:03:00,185 9th St, Atlanta,GA,30301 +260351,AAA Batteries (4-pack),1,2.99,2019-10-03 18:51:00,10 Park St, San Francisco,CA,94016 +260352,34in Ultrawide Monitor,1,379.99,2019-10-02 11:57:00,126 Cherry St, San Francisco,CA,94016 +260353,iPhone,1,700.0,2019-10-07 13:18:00,531 Cedar St, San Francisco,CA,94016 +260353,Lightning Charging Cable,1,14.95,2019-10-07 13:18:00,531 Cedar St, San Francisco,CA,94016 +260354,AA Batteries (4-pack),2,3.84,2019-10-14 13:16:00,505 Elm St, Seattle,WA,98101 +260355,USB-C Charging Cable,2,11.95,2019-10-26 13:38:00,500 Walnut St, Los Angeles,CA,90001 +260356,Apple Airpods Headphones,1,150.0,2019-10-06 23:55:00,953 Lincoln St, Los Angeles,CA,90001 +260357,Wired Headphones,2,11.99,2019-10-25 23:27:00,278 Walnut St, San Francisco,CA,94016 +260358,Lightning Charging Cable,2,14.95,2019-10-25 19:41:00,610 14th St, Portland,OR,97035 +260359,AAA Batteries (4-pack),1,2.99,2019-10-09 12:50:00,550 2nd St, Los Angeles,CA,90001 +260360,ThinkPad Laptop,1,999.99,2019-10-11 19:46:00,778 13th St, Austin,TX,73301 +260361,Lightning Charging Cable,1,14.95,2019-10-19 21:35:00,322 Church St, San Francisco,CA,94016 +260362,Flatscreen TV,1,300.0,2019-10-10 01:12:00,966 Adams St, Portland,OR,97035 +260363,27in 4K Gaming Monitor,1,389.99,2019-10-14 15:50:00,106 Highland St, San Francisco,CA,94016 +260364,Lightning Charging Cable,2,14.95,2019-10-15 17:42:00,616 8th St, New York City,NY,10001 +260365,Apple Airpods Headphones,1,150.0,2019-10-14 17:41:00,124 Chestnut St, Seattle,WA,98101 +260366,AAA Batteries (4-pack),1,2.99,2019-10-24 11:43:00,471 Dogwood St, San Francisco,CA,94016 +260367,Lightning Charging Cable,1,14.95,2019-10-10 13:35:00,443 14th St, San Francisco,CA,94016 +260368,USB-C Charging Cable,1,11.95,2019-10-06 23:25:00,649 Chestnut St, New York City,NY,10001 +260369,Flatscreen TV,1,300.0,2019-10-30 05:25:00,401 Spruce St, Seattle,WA,98101 +260370,Bose SoundSport Headphones,1,99.99,2019-10-04 11:12:00,224 Meadow St, Austin,TX,73301 +260371,34in Ultrawide Monitor,1,379.99,2019-10-03 11:08:00,163 Hill St, Boston,MA,02215 +260372,Vareebadd Phone,1,400.0,2019-10-21 12:15:00,672 Washington St, San Francisco,CA,94016 +260372,Wired Headphones,1,11.99,2019-10-21 12:15:00,672 Washington St, San Francisco,CA,94016 +260373,AA Batteries (4-pack),1,3.84,2019-10-31 08:48:00,283 6th St, Boston,MA,02215 +260374,Apple Airpods Headphones,1,150.0,2019-10-31 10:40:00,281 Lincoln St, Portland,OR,97035 +260375,ThinkPad Laptop,1,999.99,2019-10-16 10:42:00,195 14th St, San Francisco,CA,94016 +260376,Macbook Pro Laptop,1,1700.0,2019-10-07 12:01:00,444 Park St, Los Angeles,CA,90001 +260377,Bose SoundSport Headphones,1,99.99,2019-10-03 09:43:00,151 13th St, Seattle,WA,98101 +260378,iPhone,1,700.0,2019-10-28 21:23:00,163 Walnut St, New York City,NY,10001 +260379,AAA Batteries (4-pack),1,2.99,2019-10-03 16:01:00,67 River St, San Francisco,CA,94016 +260380,34in Ultrawide Monitor,1,379.99,2019-10-02 20:47:00,35 10th St, New York City,NY,10001 +260381,Wired Headphones,1,11.99,2019-10-18 12:46:00,443 Jackson St, New York City,NY,10001 +260382,Wired Headphones,1,11.99,2019-10-14 22:01:00,480 9th St, Atlanta,GA,30301 +260383,Lightning Charging Cable,1,14.95,2019-10-27 13:55:00,911 Washington St, Los Angeles,CA,90001 +260384,USB-C Charging Cable,1,11.95,2019-10-23 06:27:00,701 Cedar St, Portland,ME,04101 +260385,ThinkPad Laptop,1,999.99,2019-10-09 21:46:00,539 Johnson St, San Francisco,CA,94016 +260386,Lightning Charging Cable,1,14.95,2019-10-28 17:57:00,348 Jefferson St, New York City,NY,10001 +260387,AAA Batteries (4-pack),1,2.99,2019-10-24 21:28:00,738 Ridge St, Austin,TX,73301 +260388,Lightning Charging Cable,1,14.95,2019-10-07 15:42:00,242 Center St, Boston,MA,02215 +260389,Lightning Charging Cable,1,14.95,2019-10-15 12:20:00,396 Wilson St, Dallas,TX,75001 +260390,AA Batteries (4-pack),1,3.84,2019-10-25 20:12:00,855 Church St, Los Angeles,CA,90001 +260391,AA Batteries (4-pack),1,3.84,2019-10-28 14:11:00,45 Madison St, San Francisco,CA,94016 +260392,Bose SoundSport Headphones,2,99.99,2019-10-18 13:58:00,809 Church St, San Francisco,CA,94016 +260393,Apple Airpods Headphones,1,150.0,2019-10-17 14:43:00,159 Washington St, San Francisco,CA,94016 +260394,AA Batteries (4-pack),1,3.84,2019-10-27 13:38:00,26 11th St, Atlanta,GA,30301 +260395,AA Batteries (4-pack),3,3.84,2019-10-11 13:26:00,413 West St, New York City,NY,10001 +260396,Wired Headphones,1,11.99,2019-10-11 11:26:00,994 Willow St, San Francisco,CA,94016 +260397,34in Ultrawide Monitor,1,379.99,2019-10-18 00:45:00,11 1st St, Dallas,TX,75001 +260398,ThinkPad Laptop,1,999.99,2019-10-16 14:17:00,407 14th St, Boston,MA,02215 +260399,Flatscreen TV,1,300.0,2019-10-31 06:33:00,985 Cedar St, San Francisco,CA,94016 +260400,27in FHD Monitor,1,149.99,2019-10-15 05:36:00,689 Center St, San Francisco,CA,94016 +260401,Apple Airpods Headphones,1,150.0,2019-10-22 05:45:00,767 Maple St, San Francisco,CA,94016 +260402,USB-C Charging Cable,1,11.95,2019-10-05 21:18:00,395 9th St, San Francisco,CA,94016 +260403,27in 4K Gaming Monitor,1,389.99,2019-10-15 21:14:00,744 Sunset St, Atlanta,GA,30301 +260404,Flatscreen TV,1,300.0,2019-10-24 22:12:00,937 4th St, San Francisco,CA,94016 +260405,AA Batteries (4-pack),1,3.84,2019-10-25 09:25:00,769 5th St, Atlanta,GA,30301 +260406,ThinkPad Laptop,1,999.99,2019-10-09 23:25:00,847 5th St, San Francisco,CA,94016 +260407,27in 4K Gaming Monitor,1,389.99,2019-10-22 09:06:00,730 Adams St, San Francisco,CA,94016 +260408,USB-C Charging Cable,1,11.95,2019-10-01 09:23:00,399 8th St, San Francisco,CA,94016 +260409,Macbook Pro Laptop,1,1700.0,2019-10-17 19:33:00,499 5th St, San Francisco,CA,94016 +260410,AAA Batteries (4-pack),1,2.99,2019-10-06 01:40:00,543 9th St, San Francisco,CA,94016 +260411,Wired Headphones,1,11.99,2019-10-05 09:59:00,576 8th St, Dallas,TX,75001 +260412,Lightning Charging Cable,1,14.95,2019-10-14 12:25:00,5 Chestnut St, Atlanta,GA,30301 +260413,iPhone,1,700.0,2019-10-06 16:29:00,662 West St, Boston,MA,02215 +260414,USB-C Charging Cable,1,11.95,2019-10-27 21:41:00,866 Spruce St, Seattle,WA,98101 +260415,Lightning Charging Cable,1,14.95,2019-10-02 10:50:00,325 1st St, San Francisco,CA,94016 +260416,27in FHD Monitor,1,149.99,2019-10-24 14:51:00,61 Center St, Los Angeles,CA,90001 +260417,Apple Airpods Headphones,1,150.0,2019-10-14 14:17:00,34 13th St, Seattle,WA,98101 +260418,Wired Headphones,1,11.99,2019-10-20 23:16:00,612 Pine St, Los Angeles,CA,90001 +260419,Wired Headphones,1,11.99,2019-10-01 23:14:00,803 Lincoln St, San Francisco,CA,94016 +260420,USB-C Charging Cable,1,11.95,2019-10-18 22:29:00,11 Jefferson St, Dallas,TX,75001 +260421,Flatscreen TV,1,300.0,2019-10-18 20:39:00,500 7th St, Atlanta,GA,30301 +260422,Macbook Pro Laptop,1,1700.0,2019-10-31 13:11:00,650 6th St, Los Angeles,CA,90001 +260423,34in Ultrawide Monitor,1,379.99,2019-10-02 10:12:00,419 Church St, Los Angeles,CA,90001 +260424,AA Batteries (4-pack),1,3.84,2019-10-28 08:54:00,671 5th St, Atlanta,GA,30301 +260425,Wired Headphones,2,11.99,2019-10-09 16:52:00,16 Lincoln St, Boston,MA,02215 +260426,iPhone,1,700.0,2019-10-26 21:57:00,164 Dogwood St, Atlanta,GA,30301 +260427,ThinkPad Laptop,1,999.99,2019-10-27 22:19:00,800 Adams St, San Francisco,CA,94016 +260428,AA Batteries (4-pack),1,3.84,2019-10-19 17:09:00,130 4th St, Portland,ME,04101 +260429,iPhone,1,700.0,2019-10-14 10:14:00,802 7th St, Portland,ME,04101 +260429,Apple Airpods Headphones,1,150.0,2019-10-14 10:14:00,802 7th St, Portland,ME,04101 +260430,27in 4K Gaming Monitor,1,389.99,2019-10-08 08:35:00,801 Chestnut St, Portland,OR,97035 +260431,Flatscreen TV,1,300.0,2019-10-12 13:34:00,977 West St, Los Angeles,CA,90001 +260432,Apple Airpods Headphones,1,150.0,2019-10-24 11:29:00,259 7th St, Los Angeles,CA,90001 +260433,Apple Airpods Headphones,1,150.0,2019-10-01 09:41:00,775 Sunset St, San Francisco,CA,94016 +260434,USB-C Charging Cable,1,11.95,2019-10-16 14:46:00,313 West St, Seattle,WA,98101 +260435,27in FHD Monitor,1,149.99,2019-10-05 20:15:00,676 11th St, San Francisco,CA,94016 +260436,AA Batteries (4-pack),1,3.84,2019-10-24 22:43:00,526 10th St, Dallas,TX,75001 +260437,ThinkPad Laptop,1,999.99,2019-10-24 08:33:00,100 Elm St, San Francisco,CA,94016 +260438,AA Batteries (4-pack),1,3.84,2019-10-20 12:37:00,143 4th St, Austin,TX,73301 +260439,USB-C Charging Cable,1,11.95,2019-10-09 20:30:00,809 13th St, Boston,MA,02215 +260440,Lightning Charging Cable,1,14.95,2019-10-26 13:40:00,581 6th St, San Francisco,CA,94016 +260441,USB-C Charging Cable,3,11.95,2019-10-17 20:35:00,559 Spruce St, Los Angeles,CA,90001 +260442,27in 4K Gaming Monitor,1,389.99,2019-10-04 23:32:00,971 Highland St, New York City,NY,10001 +260443,Wired Headphones,2,11.99,2019-10-25 09:22:00,8 Cherry St, New York City,NY,10001 +260444,AAA Batteries (4-pack),1,2.99,2019-10-28 19:00:00,3 Center St, New York City,NY,10001 +260445,AA Batteries (4-pack),1,3.84,2019-10-03 11:59:00,599 Lakeview St, Boston,MA,02215 +260446,Wired Headphones,1,11.99,2019-10-18 22:12:00,226 North St, Austin,TX,73301 +260447,Wired Headphones,1,11.99,2019-10-03 19:28:00,930 Hill St, New York City,NY,10001 +260448,AA Batteries (4-pack),1,3.84,2019-10-05 20:29:00,648 Pine St, Portland,OR,97035 +260449,Lightning Charging Cable,1,14.95,2019-10-08 17:23:00,765 Wilson St, Los Angeles,CA,90001 +260450,AAA Batteries (4-pack),1,2.99,2019-10-18 09:09:00,415 Hickory St, San Francisco,CA,94016 +260451,Vareebadd Phone,1,400.0,2019-10-17 09:25:00,441 Madison St, San Francisco,CA,94016 +260451,USB-C Charging Cable,1,11.95,2019-10-17 09:25:00,441 Madison St, San Francisco,CA,94016 +260452,Bose SoundSport Headphones,1,99.99,2019-10-05 00:26:00,874 Madison St, Atlanta,GA,30301 +260453,27in 4K Gaming Monitor,1,389.99,2019-10-20 15:28:00,742 Adams St, San Francisco,CA,94016 +260454,AA Batteries (4-pack),1,3.84,2019-10-29 22:45:00,153 Lakeview St, San Francisco,CA,94016 +260455,AA Batteries (4-pack),2,3.84,2019-10-15 15:10:00,718 Dogwood St, San Francisco,CA,94016 +260456,Apple Airpods Headphones,1,150.0,2019-10-20 23:35:00,849 4th St, Atlanta,GA,30301 +260457,AAA Batteries (4-pack),1,2.99,2019-10-19 14:30:00,530 River St, New York City,NY,10001 +260458,Google Phone,1,600.0,2019-10-18 13:59:00,9 Jackson St, New York City,NY,10001 +260459,Wired Headphones,1,11.99,2019-10-10 21:02:00,537 5th St, New York City,NY,10001 +260460,Google Phone,1,600.0,2019-10-20 05:34:00,565 11th St, San Francisco,CA,94016 +260461,USB-C Charging Cable,1,11.95,2019-10-29 23:35:00,730 Elm St, San Francisco,CA,94016 +260462,Wired Headphones,1,11.99,2019-10-04 00:10:00,502 14th St, San Francisco,CA,94016 +260463,Wired Headphones,1,11.99,2019-10-17 10:29:00,737 Meadow St, Atlanta,GA,30301 +260464,34in Ultrawide Monitor,1,379.99,2019-10-02 12:55:00,92 Jefferson St, Seattle,WA,98101 +260465,Bose SoundSport Headphones,1,99.99,2019-10-24 12:17:00,49 1st St, Boston,MA,02215 +260466,AAA Batteries (4-pack),1,2.99,2019-10-07 13:56:00,777 Sunset St, Boston,MA,02215 +260467,ThinkPad Laptop,1,999.99,2019-10-19 09:37:00,658 Pine St, San Francisco,CA,94016 +260468,iPhone,1,700.0,2019-10-20 22:44:00,746 Jefferson St, Dallas,TX,75001 +260469,20in Monitor,1,109.99,2019-10-20 14:20:00,689 Highland St, San Francisco,CA,94016 +260470,Apple Airpods Headphones,1,150.0,2019-10-20 15:07:00,11 Wilson St, San Francisco,CA,94016 +260471,Apple Airpods Headphones,1,150.0,2019-10-09 21:04:00,736 Spruce St, Austin,TX,73301 +260472,Bose SoundSport Headphones,1,99.99,2019-10-14 20:33:00,360 12th St, San Francisco,CA,94016 +260473,USB-C Charging Cable,1,11.95,2019-10-08 14:04:00,970 Sunset St, Boston,MA,02215 +260474,Bose SoundSport Headphones,1,99.99,2019-10-22 18:07:00,206 Cherry St, San Francisco,CA,94016 +260475,Wired Headphones,1,11.99,2019-10-15 21:38:00,638 12th St, Boston,MA,02215 +260476,AA Batteries (4-pack),1,3.84,2019-10-05 17:03:00,896 Jackson St, San Francisco,CA,94016 +260477,AAA Batteries (4-pack),1,2.99,2019-10-29 01:06:00,71 Chestnut St, Seattle,WA,98101 +260478,34in Ultrawide Monitor,1,379.99,2019-10-08 17:47:00,693 7th St, New York City,NY,10001 +260479,34in Ultrawide Monitor,1,379.99,2019-10-25 19:30:00,737 West St, San Francisco,CA,94016 +260480,AA Batteries (4-pack),1,3.84,2019-10-16 02:38:00,364 10th St, New York City,NY,10001 +260481,Lightning Charging Cable,1,14.95,2019-10-07 04:16:00,714 2nd St, Dallas,TX,75001 +260482,Apple Airpods Headphones,1,150.0,2019-10-22 17:56:00,768 Walnut St, Boston,MA,02215 +260483,Lightning Charging Cable,1,14.95,2019-10-08 10:08:00,319 14th St, San Francisco,CA,94016 +260484,Wired Headphones,2,11.99,2019-10-26 13:09:00,366 9th St, Seattle,WA,98101 +260485,Apple Airpods Headphones,1,150.0,2019-10-16 15:46:00,258 Hickory St, Boston,MA,02215 +260486,AA Batteries (4-pack),1,3.84,2019-10-13 11:22:00,592 1st St, Los Angeles,CA,90001 +260487,Lightning Charging Cable,1,14.95,2019-10-28 18:00:00,861 Cedar St, San Francisco,CA,94016 +260488,20in Monitor,1,109.99,2019-10-17 09:42:00,562 South St, San Francisco,CA,94016 +260489,AA Batteries (4-pack),2,3.84,2019-10-10 16:41:00,860 Center St, Los Angeles,CA,90001 +260490,Lightning Charging Cable,1,14.95,2019-10-11 12:00:00,733 Madison St, New York City,NY,10001 +260491,AA Batteries (4-pack),1,3.84,2019-10-23 15:49:00,937 Hill St, New York City,NY,10001 +260492,Google Phone,1,600.0,2019-10-24 11:08:00,605 Lakeview St, San Francisco,CA,94016 +260493,AAA Batteries (4-pack),1,2.99,2019-10-23 07:21:00,425 5th St, Los Angeles,CA,90001 +260494,AAA Batteries (4-pack),1,2.99,2019-10-02 08:34:00,978 4th St, New York City,NY,10001 +260495,Apple Airpods Headphones,1,150.0,2019-10-07 09:15:00,377 Hickory St, San Francisco,CA,94016 +260496,AAA Batteries (4-pack),1,2.99,2019-10-22 11:26:00,761 Washington St, Los Angeles,CA,90001 +260497,AA Batteries (4-pack),3,3.84,2019-10-07 14:01:00,12 Spruce St, New York City,NY,10001 +260498,Lightning Charging Cable,1,14.95,2019-10-14 15:01:00,945 Elm St, Boston,MA,02215 +260499,Google Phone,1,600.0,2019-10-25 19:09:00,521 11th St, San Francisco,CA,94016 +260500,Bose SoundSport Headphones,1,99.99,2019-10-24 14:11:00,8 Hill St, Dallas,TX,75001 +260501,Google Phone,1,600.0,2019-10-30 23:12:00,155 South St, Dallas,TX,75001 +260501,USB-C Charging Cable,1,11.95,2019-10-30 23:12:00,155 South St, Dallas,TX,75001 +260502,AAA Batteries (4-pack),1,2.99,2019-10-19 21:22:00,586 Center St, San Francisco,CA,94016 +260503,AAA Batteries (4-pack),1,2.99,2019-10-13 19:29:00,152 Cedar St, Seattle,WA,98101 +260504,Lightning Charging Cable,2,14.95,2019-10-22 19:39:00,306 Lakeview St, Los Angeles,CA,90001 +260505,27in FHD Monitor,1,149.99,2019-10-12 11:49:00,508 Johnson St, New York City,NY,10001 +260506,Lightning Charging Cable,1,14.95,2019-10-06 11:23:00,632 Spruce St, San Francisco,CA,94016 +260507,Bose SoundSport Headphones,1,99.99,2019-10-13 12:14:00,485 Adams St, Seattle,WA,98101 +260508,20in Monitor,1,109.99,2019-10-23 14:00:00,999 Main St, San Francisco,CA,94016 +260509,Apple Airpods Headphones,1,150.0,2019-10-22 16:43:00,504 Park St, Boston,MA,02215 +260510,Lightning Charging Cable,1,14.95,2019-10-08 15:52:00,728 Wilson St, Atlanta,GA,30301 +260511,iPhone,1,700.0,2019-10-24 13:48:00,224 7th St, Atlanta,GA,30301 +260512,Wired Headphones,1,11.99,2019-10-20 10:20:00,68 Cedar St, San Francisco,CA,94016 +260513,Macbook Pro Laptop,1,1700.0,2019-10-12 08:45:00,311 4th St, Seattle,WA,98101 +260514,Lightning Charging Cable,1,14.95,2019-10-18 10:49:00,464 River St, San Francisco,CA,94016 +260515,iPhone,1,700.0,2019-10-17 22:41:00,340 12th St, New York City,NY,10001 +260516,USB-C Charging Cable,1,11.95,2019-10-16 12:00:00,312 13th St, San Francisco,CA,94016 +260517,AAA Batteries (4-pack),2,2.99,2019-10-29 17:54:00,881 Cherry St, Dallas,TX,75001 +260518,AA Batteries (4-pack),1,3.84,2019-10-13 20:26:00,673 Maple St, New York City,NY,10001 +260519,27in FHD Monitor,1,149.99,2019-10-27 13:20:00,151 Hill St, San Francisco,CA,94016 +260520,Apple Airpods Headphones,1,150.0,2019-10-11 15:14:00,480 11th St, Los Angeles,CA,90001 +260521,Wired Headphones,1,11.99,2019-10-31 23:36:00,727 2nd St, Los Angeles,CA,90001 +260522,AAA Batteries (4-pack),3,2.99,2019-10-05 23:07:00,154 Ridge St, Portland,OR,97035 +260523,20in Monitor,1,109.99,2019-10-06 10:52:00,238 13th St, Seattle,WA,98101 +260524,AA Batteries (4-pack),1,3.84,2019-10-24 18:57:00,911 Cherry St, Dallas,TX,75001 +260525,Lightning Charging Cable,1,14.95,2019-10-14 18:08:00,416 Walnut St, New York City,NY,10001 +260526,AA Batteries (4-pack),1,3.84,2019-10-30 09:54:00,481 Willow St, San Francisco,CA,94016 +260526,Bose SoundSport Headphones,1,99.99,2019-10-30 09:54:00,481 Willow St, San Francisco,CA,94016 +260527,Wired Headphones,1,11.99,2019-10-02 10:24:00,229 Willow St, New York City,NY,10001 +260528,AAA Batteries (4-pack),2,2.99,2019-10-06 21:54:00,777 14th St, Austin,TX,73301 +260529,Bose SoundSport Headphones,1,99.99,2019-10-22 11:27:00,480 5th St, Portland,ME,04101 +260530,AAA Batteries (4-pack),1,2.99,2019-10-02 21:55:00,170 1st St, San Francisco,CA,94016 +260531,Wired Headphones,1,11.99,2019-10-06 19:51:00,719 Maple St, Boston,MA,02215 +260532,27in FHD Monitor,1,149.99,2019-10-24 10:34:00,721 2nd St, Boston,MA,02215 +260533,Wired Headphones,2,11.99,2019-10-04 15:53:00,187 Chestnut St, Seattle,WA,98101 +260534,Wired Headphones,1,11.99,2019-10-26 23:26:00,932 Cedar St, Boston,MA,02215 +260535,Lightning Charging Cable,1,14.95,2019-10-05 21:45:00,632 Adams St, New York City,NY,10001 +260536,Lightning Charging Cable,1,14.95,2019-10-31 19:46:00,260 Washington St, Boston,MA,02215 +260537,AAA Batteries (4-pack),1,2.99,2019-10-02 17:46:00,802 1st St, San Francisco,CA,94016 +260538,34in Ultrawide Monitor,1,379.99,2019-10-11 10:38:00,813 South St, Dallas,TX,75001 +260539,Wired Headphones,1,11.99,2019-10-09 13:18:00,451 North St, Portland,OR,97035 +260540,27in 4K Gaming Monitor,1,389.99,2019-10-25 18:53:00,136 12th St, Portland,OR,97035 +260541,AA Batteries (4-pack),1,3.84,2019-10-12 09:32:00,571 Hill St, San Francisco,CA,94016 +260542,Bose SoundSport Headphones,1,99.99,2019-10-13 15:56:00,926 River St, San Francisco,CA,94016 +260543,USB-C Charging Cable,2,11.95,2019-10-14 09:52:00,626 Elm St, Los Angeles,CA,90001 +260544,20in Monitor,1,109.99,2019-10-23 13:52:00,384 Lincoln St, Atlanta,GA,30301 +260545,Macbook Pro Laptop,1,1700.0,2019-10-06 18:31:00,50 Lake St, Boston,MA,02215 +260546,34in Ultrawide Monitor,1,379.99,2019-10-06 20:54:00,645 Johnson St, Atlanta,GA,30301 +260547,Wired Headphones,1,11.99,2019-10-18 13:31:00,881 11th St, Austin,TX,73301 +260548,Bose SoundSport Headphones,1,99.99,2019-10-15 14:04:00,888 Cherry St, Austin,TX,73301 +260549,AA Batteries (4-pack),1,3.84,2019-10-16 15:03:00,424 13th St, San Francisco,CA,94016 +260550,Vareebadd Phone,1,400.0,2019-10-23 21:45:00,515 Madison St, San Francisco,CA,94016 +260550,Wired Headphones,1,11.99,2019-10-23 21:45:00,515 Madison St, San Francisco,CA,94016 +260551,27in 4K Gaming Monitor,1,389.99,2019-10-19 09:06:00,475 Church St, Austin,TX,73301 +260552,Apple Airpods Headphones,1,150.0,2019-10-10 10:55:00,580 Johnson St, Boston,MA,02215 +260553,Macbook Pro Laptop,1,1700.0,2019-10-21 17:36:00,997 North St, San Francisco,CA,94016 +260554,Wired Headphones,2,11.99,2019-10-17 21:02:00,551 Chestnut St, San Francisco,CA,94016 +260555,20in Monitor,1,109.99,2019-10-28 07:36:00,601 Jefferson St, San Francisco,CA,94016 +260556,AAA Batteries (4-pack),2,2.99,2019-10-14 01:34:00,143 Forest St, New York City,NY,10001 +260557,Wired Headphones,1,11.99,2019-10-15 13:47:00,750 Washington St, San Francisco,CA,94016 +260558,USB-C Charging Cable,2,11.95,2019-10-07 07:20:00,486 13th St, San Francisco,CA,94016 +260559,AA Batteries (4-pack),2,3.84,2019-10-23 20:41:00,60 Adams St, Boston,MA,02215 +260560,AAA Batteries (4-pack),1,2.99,2019-10-24 15:17:00,382 6th St, New York City,NY,10001 +260560,Lightning Charging Cable,1,14.95,2019-10-24 15:17:00,382 6th St, New York City,NY,10001 +260561,AA Batteries (4-pack),1,3.84,2019-10-02 11:15:00,356 Jefferson St, Dallas,TX,75001 +260562,27in FHD Monitor,1,149.99,2019-10-16 23:02:00,773 Johnson St, Dallas,TX,75001 +260563,Lightning Charging Cable,1,14.95,2019-10-28 15:08:00,10 Main St, Los Angeles,CA,90001 +260564,Wired Headphones,2,11.99,2019-10-06 15:07:00,246 Ridge St, Los Angeles,CA,90001 +260565,Apple Airpods Headphones,1,150.0,2019-10-26 06:52:00,564 Adams St, Portland,ME,04101 +260566,AAA Batteries (4-pack),1,2.99,2019-10-23 16:49:00,266 Ridge St, Los Angeles,CA,90001 +260567,27in FHD Monitor,1,149.99,2019-10-07 15:00:00,530 Walnut St, Los Angeles,CA,90001 +260568,20in Monitor,1,109.99,2019-10-03 20:02:00,448 2nd St, Dallas,TX,75001 +260569,Macbook Pro Laptop,1,1700.0,2019-10-08 19:49:00,117 South St, San Francisco,CA,94016 +260570,Bose SoundSport Headphones,1,99.99,2019-10-21 09:25:00,43 8th St, San Francisco,CA,94016 +260571,Apple Airpods Headphones,1,150.0,2019-10-03 21:19:00,539 12th St, Los Angeles,CA,90001 +260572,AAA Batteries (4-pack),1,2.99,2019-10-08 20:29:00,439 Lakeview St, Los Angeles,CA,90001 +260573,Flatscreen TV,1,300.0,2019-10-08 22:57:00,683 13th St, Atlanta,GA,30301 +260574,Lightning Charging Cable,1,14.95,2019-10-09 17:09:00,332 Ridge St, San Francisco,CA,94016 +260575,USB-C Charging Cable,1,11.95,2019-10-12 15:34:00,49 14th St, San Francisco,CA,94016 +260576,Wired Headphones,1,11.99,2019-10-22 20:08:00,896 14th St, Portland,OR,97035 +260577,Bose SoundSport Headphones,1,99.99,2019-10-25 20:18:00,358 Meadow St, New York City,NY,10001 +260578,USB-C Charging Cable,1,11.95,2019-10-08 12:33:00,853 North St, Seattle,WA,98101 +260579,Google Phone,1,600.0,2019-10-14 22:40:00,245 Adams St, Los Angeles,CA,90001 +260579,Apple Airpods Headphones,1,150.0,2019-10-14 22:40:00,245 Adams St, Los Angeles,CA,90001 +260580,Lightning Charging Cable,1,14.95,2019-10-06 06:42:00,838 Adams St, Atlanta,GA,30301 +260581,AAA Batteries (4-pack),1,2.99,2019-10-28 18:10:00,532 Washington St, San Francisco,CA,94016 +260582,AAA Batteries (4-pack),1,2.99,2019-10-20 16:38:00,102 Main St, New York City,NY,10001 +260583,Wired Headphones,1,11.99,2019-10-27 17:42:00,647 Jefferson St, New York City,NY,10001 +260584,AAA Batteries (4-pack),1,2.99,2019-10-18 22:44:00,262 Spruce St, Los Angeles,CA,90001 +260585,Lightning Charging Cable,1,14.95,2019-10-17 23:22:00,623 Johnson St, Boston,MA,02215 +260586,34in Ultrawide Monitor,1,379.99,2019-10-14 08:33:00,873 Elm St, Boston,MA,02215 +260587,Lightning Charging Cable,1,14.95,2019-10-10 12:33:00,297 South St, San Francisco,CA,94016 +260588,27in FHD Monitor,1,149.99,2019-10-18 02:19:00,485 6th St, New York City,NY,10001 +260589,Lightning Charging Cable,1,14.95,2019-10-18 11:25:00,716 1st St, San Francisco,CA,94016 +260590,Macbook Pro Laptop,1,1700.0,2019-10-18 07:57:00,506 7th St, San Francisco,CA,94016 +260591,ThinkPad Laptop,1,999.99,2019-10-14 05:35:00,599 Washington St, San Francisco,CA,94016 +260592,Bose SoundSport Headphones,1,99.99,2019-10-01 11:03:00,820 1st St, Austin,TX,73301 +260593,Bose SoundSport Headphones,1,99.99,2019-10-24 11:36:00,731 Cherry St, New York City,NY,10001 +260594,Apple Airpods Headphones,1,150.0,2019-10-30 14:30:00,457 Cedar St, Seattle,WA,98101 +260595,Lightning Charging Cable,1,14.95,2019-10-19 22:51:00,189 River St, Boston,MA,02215 +260596,Wired Headphones,1,11.99,2019-10-07 02:26:00,149 11th St, San Francisco,CA,94016 +260597,USB-C Charging Cable,1,11.95,2019-10-18 15:27:00,720 North St, San Francisco,CA,94016 +260598,Wired Headphones,1,11.99,2019-10-01 19:15:00,564 Washington St, San Francisco,CA,94016 +260599,27in 4K Gaming Monitor,1,389.99,2019-10-27 16:44:00,833 Park St, San Francisco,CA,94016 +260600,Wired Headphones,1,11.99,2019-10-29 16:09:00,763 Forest St, San Francisco,CA,94016 +260601,Google Phone,1,600.0,2019-10-30 11:24:00,108 North St, Portland,OR,97035 +260602,USB-C Charging Cable,1,11.95,2019-10-12 21:10:00,324 5th St, San Francisco,CA,94016 +260603,27in 4K Gaming Monitor,1,389.99,2019-10-23 04:11:00,532 Spruce St, San Francisco,CA,94016 +260604,AAA Batteries (4-pack),1,2.99,2019-10-24 19:26:00,262 Johnson St, Seattle,WA,98101 +260605,Apple Airpods Headphones,1,150.0,2019-10-01 12:22:00,117 Lakeview St, San Francisco,CA,94016 +260606,Wired Headphones,1,11.99,2019-10-31 22:31:00,807 Cedar St, San Francisco,CA,94016 +260607,Bose SoundSport Headphones,1,99.99,2019-10-10 12:14:00,542 South St, New York City,NY,10001 +260608,AA Batteries (4-pack),1,3.84,2019-10-07 08:51:00,522 Cherry St, Dallas,TX,75001 +260609,Apple Airpods Headphones,1,150.0,2019-10-15 07:52:00,808 Hill St, Boston,MA,02215 +260610,Wired Headphones,1,11.99,2019-10-02 22:08:00,548 Cherry St, Dallas,TX,75001 +260611,USB-C Charging Cable,2,11.95,2019-10-25 07:39:00,157 Walnut St, San Francisco,CA,94016 +260612,AAA Batteries (4-pack),4,2.99,2019-10-31 13:48:00,805 4th St, New York City,NY,10001 +260613,Apple Airpods Headphones,1,150.0,2019-10-09 14:36:00,968 Main St, Boston,MA,02215 +260614,USB-C Charging Cable,1,11.95,2019-10-30 01:10:00,427 Forest St, San Francisco,CA,94016 +260615,Lightning Charging Cable,1,14.95,2019-10-07 16:52:00,254 1st St, San Francisco,CA,94016 +260616,Apple Airpods Headphones,1,150.0,2019-10-12 19:13:00,519 Jackson St, Los Angeles,CA,90001 +260617,27in 4K Gaming Monitor,1,389.99,2019-10-11 02:16:00,136 Walnut St, Los Angeles,CA,90001 +260618,ThinkPad Laptop,1,999.99,2019-10-13 09:05:00,950 Park St, San Francisco,CA,94016 +260619,USB-C Charging Cable,1,11.95,2019-10-09 09:50:00,15 South St, San Francisco,CA,94016 +260620,iPhone,1,700.0,2019-10-04 17:16:00,103 Jefferson St, San Francisco,CA,94016 +260620,LG Washing Machine,1,600.0,2019-10-04 17:16:00,103 Jefferson St, San Francisco,CA,94016 +260621,34in Ultrawide Monitor,1,379.99,2019-10-21 09:56:00,812 Hickory St, Austin,TX,73301 +260622,Flatscreen TV,1,300.0,2019-10-02 12:23:00,823 West St, Portland,OR,97035 +260623,Bose SoundSport Headphones,1,99.99,2019-10-24 14:01:00,248 14th St, Boston,MA,02215 +260624,AA Batteries (4-pack),1,3.84,2019-10-23 22:55:00,833 Lincoln St, San Francisco,CA,94016 +260624,Macbook Pro Laptop,1,1700.0,2019-10-23 22:55:00,833 Lincoln St, San Francisco,CA,94016 +260625,34in Ultrawide Monitor,1,379.99,2019-10-10 21:18:00,24 River St, Dallas,TX,75001 +260626,Apple Airpods Headphones,1,150.0,2019-10-29 15:03:00,697 8th St, Dallas,TX,75001 +260627,AA Batteries (4-pack),1,3.84,2019-10-18 15:44:00,622 Meadow St, Boston,MA,02215 +260628,Wired Headphones,1,11.99,2019-10-02 11:38:00,836 14th St, Austin,TX,73301 +260629,AA Batteries (4-pack),1,3.84,2019-10-20 19:45:00,560 Lakeview St, Boston,MA,02215 +260630,Google Phone,1,600.0,2019-10-24 13:57:00,686 Jackson St, Seattle,WA,98101 +260631,AAA Batteries (4-pack),2,2.99,2019-10-16 23:29:00,828 Maple St, Dallas,TX,75001 +260632,iPhone,1,700.0,2019-10-26 20:18:00,39 Ridge St, New York City,NY,10001 +260633,34in Ultrawide Monitor,1,379.99,2019-10-27 17:39:00,112 Jackson St, Austin,TX,73301 +260634,Apple Airpods Headphones,1,150.0,2019-10-07 14:34:00,131 Church St, New York City,NY,10001 +260635,Apple Airpods Headphones,1,150.0,2019-10-19 17:38:00,37 Lincoln St, Los Angeles,CA,90001 +260636,AAA Batteries (4-pack),1,2.99,2019-10-29 15:05:00,265 4th St, New York City,NY,10001 +260637,27in 4K Gaming Monitor,1,389.99,2019-10-01 09:23:00,768 Hill St, Dallas,TX,75001 +260638,Wired Headphones,1,11.99,2019-10-08 15:29:00,352 Cedar St, Austin,TX,73301 +260639,20in Monitor,1,109.99,2019-10-18 07:33:00,636 Elm St, Los Angeles,CA,90001 +260640,Lightning Charging Cable,1,14.95,2019-10-19 14:10:00,45 West St, San Francisco,CA,94016 +260641,27in 4K Gaming Monitor,1,389.99,2019-10-24 11:40:00,891 Forest St, New York City,NY,10001 +260642,Wired Headphones,1,11.99,2019-10-18 09:51:00,158 Maple St, New York City,NY,10001 +260643,Macbook Pro Laptop,1,1700.0,2019-10-05 19:08:00,621 10th St, San Francisco,CA,94016 +260644,AA Batteries (4-pack),1,3.84,2019-10-28 18:48:00,125 River St, New York City,NY,10001 +260645,AAA Batteries (4-pack),1,2.99,2019-10-12 00:09:00,966 Madison St, Dallas,TX,75001 +260646,Vareebadd Phone,1,400.0,2019-10-24 11:05:00,84 Center St, Boston,MA,02215 +260647,Bose SoundSport Headphones,1,99.99,2019-10-10 08:20:00,306 11th St, Portland,ME,04101 +260648,AA Batteries (4-pack),1,3.84,2019-10-19 22:49:00,546 10th St, Atlanta,GA,30301 +260649,Bose SoundSport Headphones,1,99.99,2019-10-04 11:28:00,980 Jefferson St, Los Angeles,CA,90001 +260650,AA Batteries (4-pack),1,3.84,2019-10-08 13:38:00,343 Meadow St, New York City,NY,10001 +260651,AAA Batteries (4-pack),1,2.99,2019-10-18 20:24:00,685 Center St, Atlanta,GA,30301 +260652,AAA Batteries (4-pack),1,2.99,2019-10-06 19:48:00,90 Elm St, Portland,ME,04101 +260653,Wired Headphones,1,11.99,2019-10-12 19:37:00,212 Cedar St, San Francisco,CA,94016 +260654,AAA Batteries (4-pack),1,2.99,2019-10-24 21:26:00,387 10th St, Atlanta,GA,30301 +260655,Lightning Charging Cable,1,14.95,2019-10-29 11:33:00,680 Center St, New York City,NY,10001 +260656,Wired Headphones,2,11.99,2019-10-07 14:23:00,671 8th St, New York City,NY,10001 +260657,AA Batteries (4-pack),1,3.84,2019-10-18 18:30:00,945 11th St, San Francisco,CA,94016 +260658,Bose SoundSport Headphones,1,99.99,2019-10-01 22:20:00,444 5th St, Dallas,TX,75001 +260659,USB-C Charging Cable,1,11.95,2019-10-24 11:16:00,445 Washington St, San Francisco,CA,94016 +260660,Bose SoundSport Headphones,1,99.99,2019-10-19 22:20:00,237 Cedar St, Los Angeles,CA,90001 +260661,Wired Headphones,1,11.99,2019-10-12 13:44:00,376 1st St, Dallas,TX,75001 +260662,27in FHD Monitor,1,149.99,2019-10-27 22:14:00,381 Johnson St, Atlanta,GA,30301 +260663,Lightning Charging Cable,1,14.95,2019-10-29 13:57:00,687 4th St, Atlanta,GA,30301 +260664,Apple Airpods Headphones,1,150.0,2019-10-08 21:22:00,748 Walnut St, San Francisco,CA,94016 +260665,Wired Headphones,2,11.99,2019-10-16 08:31:00,865 7th St, Portland,OR,97035 +260666,Apple Airpods Headphones,1,150.0,2019-10-11 11:04:00,316 12th St, New York City,NY,10001 +260667,AA Batteries (4-pack),1,3.84,2019-10-17 17:00:00,448 South St, Portland,OR,97035 +260668,Lightning Charging Cable,1,14.95,2019-10-18 14:45:00,321 13th St, Los Angeles,CA,90001 +260669,Google Phone,1,600.0,2019-10-16 12:55:00,176 2nd St, Los Angeles,CA,90001 +260670,USB-C Charging Cable,1,11.95,2019-10-27 20:20:00,688 Jefferson St, San Francisco,CA,94016 +260671,34in Ultrawide Monitor,1,379.99,2019-10-30 10:21:00,663 Meadow St, New York City,NY,10001 +260672,Bose SoundSport Headphones,1,99.99,2019-10-13 09:29:00,785 Forest St, Los Angeles,CA,90001 +260673,Apple Airpods Headphones,1,150.0,2019-10-06 21:39:00,35 9th St, New York City,NY,10001 +260674,AAA Batteries (4-pack),2,2.99,2019-10-16 16:29:00,581 Pine St, Portland,OR,97035 +260675,Lightning Charging Cable,1,14.95,2019-10-17 09:45:00,475 Sunset St, Los Angeles,CA,90001 +260676,Macbook Pro Laptop,1,1700.0,2019-10-28 13:57:00,290 Lincoln St, Atlanta,GA,30301 +260676,USB-C Charging Cable,1,11.95,2019-10-28 13:57:00,290 Lincoln St, Atlanta,GA,30301 +260677,Wired Headphones,2,11.99,2019-10-18 10:27:00,595 2nd St, Dallas,TX,75001 +260678,USB-C Charging Cable,2,11.95,2019-10-11 12:22:00,696 Lincoln St, San Francisco,CA,94016 +260679,Bose SoundSport Headphones,1,99.99,2019-10-31 14:41:00,973 9th St, New York City,NY,10001 +260680,Macbook Pro Laptop,1,1700.0,2019-10-15 12:46:00,344 Lake St, San Francisco,CA,94016 +260681,USB-C Charging Cable,1,11.95,2019-10-09 14:19:00,281 Lake St, Boston,MA,02215 +260682,Lightning Charging Cable,1,14.95,2019-10-28 08:31:00,747 Cedar St, San Francisco,CA,94016 +260683,34in Ultrawide Monitor,1,379.99,2019-10-04 06:31:00,480 West St, Austin,TX,73301 +260684,Lightning Charging Cable,1,14.95,2019-10-16 21:10:00,708 Sunset St, San Francisco,CA,94016 +260685,Lightning Charging Cable,1,14.95,2019-10-05 13:08:00,198 Highland St, New York City,NY,10001 +260686,34in Ultrawide Monitor,1,379.99,2019-10-18 09:33:00,811 9th St, San Francisco,CA,94016 +260687,AA Batteries (4-pack),2,3.84,2019-10-16 14:39:00,337 Elm St, San Francisco,CA,94016 +260688,AAA Batteries (4-pack),1,2.99,2019-10-19 12:49:00,547 5th St, Austin,TX,73301 +260689,Apple Airpods Headphones,1,150.0,2019-10-09 09:49:00,317 8th St, Los Angeles,CA,90001 +260690,Lightning Charging Cable,1,14.95,2019-10-20 07:35:00,75 Adams St, New York City,NY,10001 +260691,Wired Headphones,1,11.99,2019-10-28 11:57:00,69 Park St, Dallas,TX,75001 +260692,Apple Airpods Headphones,2,150.0,2019-10-15 20:46:00,945 Elm St, San Francisco,CA,94016 +260693,Bose SoundSport Headphones,1,99.99,2019-10-03 22:45:00,999 12th St, Los Angeles,CA,90001 +260694,Lightning Charging Cable,1,14.95,2019-10-20 14:02:00,37 Jackson St, Dallas,TX,75001 +260695,AA Batteries (4-pack),1,3.84,2019-10-15 19:26:00,908 Lincoln St, Seattle,WA,98101 +260695,Wired Headphones,1,11.99,2019-10-15 19:26:00,908 Lincoln St, Seattle,WA,98101 +260696,27in 4K Gaming Monitor,1,389.99,2019-10-26 12:12:00,410 7th St, Dallas,TX,75001 +260697,Google Phone,1,600.0,2019-10-14 16:05:00,195 Maple St, Atlanta,GA,30301 +260697,Wired Headphones,2,11.99,2019-10-14 16:05:00,195 Maple St, Atlanta,GA,30301 +260698,Bose SoundSport Headphones,1,99.99,2019-10-13 11:22:00,459 Dogwood St, Los Angeles,CA,90001 +260699,AA Batteries (4-pack),1,3.84,2019-10-30 16:44:00,261 7th St, Boston,MA,02215 +260699,Wired Headphones,1,11.99,2019-10-30 16:44:00,261 7th St, Boston,MA,02215 +260700,Bose SoundSport Headphones,1,99.99,2019-10-07 12:47:00,864 Elm St, San Francisco,CA,94016 +260701,Wired Headphones,2,11.99,2019-10-11 16:10:00,256 South St, Atlanta,GA,30301 +260702,Wired Headphones,1,11.99,2019-10-10 13:00:00,870 West St, Austin,TX,73301 +260703,USB-C Charging Cable,1,11.95,2019-10-06 18:56:00,392 Center St, Portland,OR,97035 +260704,27in FHD Monitor,1,149.99,2019-10-17 05:23:00,304 River St, San Francisco,CA,94016 +260705,Flatscreen TV,1,300.0,2019-10-29 15:29:00,57 Highland St, New York City,NY,10001 +260706,AAA Batteries (4-pack),1,2.99,2019-10-24 15:14:00,479 Willow St, Dallas,TX,75001 +260707,AA Batteries (4-pack),1,3.84,2019-10-09 15:45:00,134 Walnut St, New York City,NY,10001 +260708,AAA Batteries (4-pack),1,2.99,2019-10-06 20:00:00,55 West St, Boston,MA,02215 +260709,Wired Headphones,1,11.99,2019-10-30 16:44:00,537 Center St, Los Angeles,CA,90001 +260710,27in 4K Gaming Monitor,1,389.99,2019-10-16 17:55:00,107 Hill St, New York City,NY,10001 +260711,Bose SoundSport Headphones,1,99.99,2019-10-22 12:22:00,38 6th St, Portland,ME,04101 +260712,Lightning Charging Cable,1,14.95,2019-10-25 06:15:00,292 Ridge St, Los Angeles,CA,90001 +260713,27in 4K Gaming Monitor,1,389.99,2019-10-09 21:08:00,380 6th St, Seattle,WA,98101 +260714,34in Ultrawide Monitor,1,379.99,2019-10-31 14:19:00,791 8th St, Atlanta,GA,30301 +260715,AAA Batteries (4-pack),2,2.99,2019-10-22 10:48:00,182 7th St, Los Angeles,CA,90001 +260716,Google Phone,1,600.0,2019-10-13 08:48:00,110 Chestnut St, San Francisco,CA,94016 +260717,34in Ultrawide Monitor,1,379.99,2019-10-24 18:15:00,12 Park St, New York City,NY,10001 +260718,Wired Headphones,1,11.99,2019-10-19 20:58:00,205 Elm St, Atlanta,GA,30301 +260719,Macbook Pro Laptop,1,1700.0,2019-10-10 17:34:00,837 Wilson St, Los Angeles,CA,90001 +260720,27in FHD Monitor,1,149.99,2019-10-02 09:06:00,329 Sunset St, Los Angeles,CA,90001 +260721,ThinkPad Laptop,1,999.99,2019-10-01 13:00:00,11 Park St, San Francisco,CA,94016 +260722,AAA Batteries (4-pack),1,2.99,2019-10-09 21:47:00,984 Lakeview St, Boston,MA,02215 +260723,AA Batteries (4-pack),1,3.84,2019-10-15 20:29:00,496 Ridge St, Boston,MA,02215 +260724,Wired Headphones,1,11.99,2019-10-07 10:01:00,586 Pine St, Boston,MA,02215 +260725,USB-C Charging Cable,1,11.95,2019-10-10 11:28:00,634 9th St, Atlanta,GA,30301 +260726,Lightning Charging Cable,2,14.95,2019-10-08 15:04:00,776 Park St, Dallas,TX,75001 +260727,Lightning Charging Cable,1,14.95,2019-10-17 07:53:00,920 Chestnut St, Atlanta,GA,30301 +260728,ThinkPad Laptop,1,999.99,2019-10-17 21:08:00,683 Meadow St, San Francisco,CA,94016 +260729,Bose SoundSport Headphones,1,99.99,2019-10-10 09:34:00,587 7th St, Boston,MA,02215 +260730,USB-C Charging Cable,1,11.95,2019-10-17 17:23:00,217 Adams St, Dallas,TX,75001 +260731,Lightning Charging Cable,1,14.95,2019-10-08 08:09:00,112 Main St, Atlanta,GA,30301 +260732,USB-C Charging Cable,1,11.95,2019-10-12 19:46:00,319 West St, New York City,NY,10001 +260733,AA Batteries (4-pack),1,3.84,2019-10-01 18:38:00,18 Wilson St, Los Angeles,CA,90001 +260734,Wired Headphones,1,11.99,2019-10-05 07:35:00,7 Lakeview St, Dallas,TX,75001 +260735,Apple Airpods Headphones,1,150.0,2019-10-18 13:08:00,443 10th St, Atlanta,GA,30301 +260736,Lightning Charging Cable,1,14.95,2019-10-01 18:31:00,453 River St, New York City,NY,10001 +260737,USB-C Charging Cable,1,11.95,2019-10-06 12:43:00,356 Hill St, Dallas,TX,75001 +260738,AAA Batteries (4-pack),1,2.99,2019-10-22 09:44:00,928 2nd St, New York City,NY,10001 +260739,AAA Batteries (4-pack),1,2.99,2019-10-09 23:06:00,372 9th St, Seattle,WA,98101 +260740,Wired Headphones,1,11.99,2019-10-02 13:08:00,110 Dogwood St, San Francisco,CA,94016 +260741,Bose SoundSport Headphones,1,99.99,2019-10-07 21:36:00,106 12th St, Los Angeles,CA,90001 +260742,Vareebadd Phone,1,400.0,2019-10-20 08:57:00,411 Pine St, Boston,MA,02215 +260743,USB-C Charging Cable,1,11.95,2019-10-02 13:05:00,538 Cherry St, Boston,MA,02215 +260743,27in FHD Monitor,1,149.99,2019-10-02 13:05:00,538 Cherry St, Boston,MA,02215 +260744,Flatscreen TV,1,300.0,2019-10-07 17:27:00,261 Spruce St, Atlanta,GA,30301 +260745,USB-C Charging Cable,1,11.95,2019-10-29 14:52:00,984 Walnut St, New York City,NY,10001 +260746,USB-C Charging Cable,1,11.95,2019-10-29 12:30:00,710 Pine St, Dallas,TX,75001 +260747,AA Batteries (4-pack),1,3.84,2019-10-27 20:16:00,727 Cedar St, Dallas,TX,75001 +260748,USB-C Charging Cable,1,11.95,2019-10-27 23:57:00,923 Madison St, Boston,MA,02215 +260749,Lightning Charging Cable,1,14.95,2019-10-12 14:05:00,74 7th St, Atlanta,GA,30301 +260750,34in Ultrawide Monitor,1,379.99,2019-10-16 19:24:00,871 Lincoln St, Portland,OR,97035 +260751,Lightning Charging Cable,1,14.95,2019-10-11 19:13:00,453 Main St, Dallas,TX,75001 +260752,USB-C Charging Cable,2,11.95,2019-10-07 08:18:00,36 Park St, Atlanta,GA,30301 +260752,Flatscreen TV,1,300.0,2019-10-07 08:18:00,36 Park St, Atlanta,GA,30301 +260753,AA Batteries (4-pack),1,3.84,2019-10-12 21:27:00,550 Park St, Los Angeles,CA,90001 +260754,AA Batteries (4-pack),1,3.84,2019-10-01 14:53:00,674 Willow St, San Francisco,CA,94016 +260755,Lightning Charging Cable,1,14.95,2019-10-14 20:09:00,613 Center St, Portland,OR,97035 +260756,Lightning Charging Cable,1,14.95,2019-10-09 18:26:00,293 Cherry St, San Francisco,CA,94016 +260757,AA Batteries (4-pack),2,3.84,2019-10-20 18:58:00,348 1st St, Boston,MA,02215 +260758,AA Batteries (4-pack),2,3.84,2019-10-13 10:52:00,224 12th St, Dallas,TX,75001 +260759,Vareebadd Phone,1,400.0,2019-10-26 09:07:00,364 West St, Seattle,WA,98101 +260759,USB-C Charging Cable,2,11.95,2019-10-26 09:07:00,364 West St, Seattle,WA,98101 +260760,USB-C Charging Cable,1,11.95,2019-10-17 21:39:00,692 South St, Dallas,TX,75001 +260761,Google Phone,1,600.0,2019-10-14 02:25:00,38 Meadow St, Seattle,WA,98101 +260762,Apple Airpods Headphones,1,150.0,2019-10-13 20:30:00,600 Maple St, New York City,NY,10001 +260763,iPhone,1,700.0,2019-10-01 11:59:00,951 West St, Dallas,TX,75001 +260763,Apple Airpods Headphones,1,150.0,2019-10-01 11:59:00,951 West St, Dallas,TX,75001 +260764,AA Batteries (4-pack),1,3.84,2019-10-26 15:59:00,714 Cedar St, New York City,NY,10001 +260765,Lightning Charging Cable,1,14.95,2019-10-08 22:26:00,481 Lakeview St, Boston,MA,02215 +260766,27in FHD Monitor,1,149.99,2019-10-26 04:54:00,954 Lincoln St, Boston,MA,02215 +260767,AA Batteries (4-pack),2,3.84,2019-10-17 16:33:00,651 Maple St, New York City,NY,10001 +260768,Vareebadd Phone,1,400.0,2019-10-07 08:49:00,530 8th St, Los Angeles,CA,90001 +260769,Apple Airpods Headphones,1,150.0,2019-10-28 09:47:00,906 2nd St, San Francisco,CA,94016 +260770,Apple Airpods Headphones,1,150.0,2019-10-13 18:36:00,17 Spruce St, Los Angeles,CA,90001 +260771,20in Monitor,1,109.99,2019-10-03 18:37:00,748 13th St, New York City,NY,10001 +260772,iPhone,1,700.0,2019-10-27 15:41:00,508 Jackson St, Portland,OR,97035 +260772,Lightning Charging Cable,1,14.95,2019-10-27 15:41:00,508 Jackson St, Portland,OR,97035 +260773,AAA Batteries (4-pack),1,2.99,2019-10-18 12:45:00,347 12th St, Seattle,WA,98101 +260774,Bose SoundSport Headphones,1,99.99,2019-10-27 18:25:00,311 Chestnut St, Seattle,WA,98101 +260775,Wired Headphones,1,11.99,2019-10-30 12:19:00,302 Spruce St, Atlanta,GA,30301 +260776,AAA Batteries (4-pack),1,2.99,2019-10-11 08:31:00,183 Center St, San Francisco,CA,94016 +260777,Lightning Charging Cable,1,14.95,2019-10-19 22:37:00,733 Ridge St, Boston,MA,02215 +260778,AA Batteries (4-pack),1,3.84,2019-10-30 00:47:00,156 14th St, Seattle,WA,98101 +260779,Bose SoundSport Headphones,1,99.99,2019-10-15 19:01:00,83 Jefferson St, New York City,NY,10001 +260780,Bose SoundSport Headphones,1,99.99,2019-10-31 18:02:00,520 Lake St, Portland,OR,97035 +260781,Flatscreen TV,1,300.0,2019-10-27 14:48:00,304 Church St, San Francisco,CA,94016 +260782,27in 4K Gaming Monitor,1,389.99,2019-10-17 18:10:00,429 Lincoln St, Seattle,WA,98101 +260783,Google Phone,1,600.0,2019-10-24 07:52:00,934 North St, Los Angeles,CA,90001 +260784,Macbook Pro Laptop,1,1700.0,2019-10-31 14:19:00,317 Willow St, San Francisco,CA,94016 +260785,USB-C Charging Cable,1,11.95,2019-10-21 20:57:00,155 13th St, Los Angeles,CA,90001 +260786,Wired Headphones,1,11.99,2019-10-05 20:30:00,84 Center St, Los Angeles,CA,90001 +260787,27in 4K Gaming Monitor,1,389.99,2019-10-22 11:45:00,979 Hill St, San Francisco,CA,94016 +260788,20in Monitor,1,109.99,2019-10-13 11:35:00,160 13th St, Seattle,WA,98101 +260789,Wired Headphones,1,11.99,2019-10-25 13:11:00,105 South St, San Francisco,CA,94016 +260790,iPhone,1,700.0,2019-10-17 22:34:00,57 2nd St, New York City,NY,10001 +260791,27in FHD Monitor,1,149.99,2019-10-15 13:49:00,120 Dogwood St, New York City,NY,10001 +260792,34in Ultrawide Monitor,1,379.99,2019-10-24 12:39:00,827 Walnut St, Portland,OR,97035 +260793,Bose SoundSport Headphones,1,99.99,2019-10-18 00:38:00,170 Main St, Boston,MA,02215 +260794,Vareebadd Phone,1,400.0,2019-10-21 14:23:00,257 9th St, New York City,NY,10001 +260795,AA Batteries (4-pack),2,3.84,2019-10-03 15:25:00,379 9th St, Boston,MA,02215 +260796,Google Phone,1,600.0,2019-10-06 20:13:00,94 14th St, Dallas,TX,75001 +260796,USB-C Charging Cable,1,11.95,2019-10-06 20:13:00,94 14th St, Dallas,TX,75001 +260797,AAA Batteries (4-pack),1,2.99,2019-10-07 15:49:00,507 Jefferson St, New York City,NY,10001 +260798,Lightning Charging Cable,2,14.95,2019-10-10 07:50:00,630 Lake St, Portland,ME,04101 +260799,AAA Batteries (4-pack),2,2.99,2019-10-25 15:39:00,515 Johnson St, Portland,OR,97035 +260800,27in FHD Monitor,1,149.99,2019-10-19 22:51:00,554 Lake St, New York City,NY,10001 +260801,USB-C Charging Cable,1,11.95,2019-10-02 21:19:00,218 2nd St, San Francisco,CA,94016 +260802,USB-C Charging Cable,1,11.95,2019-10-27 12:23:00,371 5th St, Los Angeles,CA,90001 +260803,iPhone,1,700.0,2019-10-27 16:32:00,776 Pine St, Seattle,WA,98101 +260803,Apple Airpods Headphones,1,150.0,2019-10-27 16:32:00,776 Pine St, Seattle,WA,98101 +260804,27in FHD Monitor,1,149.99,2019-10-23 17:21:00,201 Dogwood St, San Francisco,CA,94016 +260805,AA Batteries (4-pack),1,3.84,2019-10-20 00:26:00,729 Lakeview St, New York City,NY,10001 +260806,Macbook Pro Laptop,1,1700.0,2019-10-26 21:37:00,947 Johnson St, Dallas,TX,75001 +260807,iPhone,1,700.0,2019-10-21 16:16:00,604 Wilson St, Atlanta,GA,30301 +260808,AAA Batteries (4-pack),3,2.99,2019-10-03 18:43:00,607 Main St, New York City,NY,10001 +260809,Wired Headphones,1,11.99,2019-10-21 12:26:00,254 Elm St, San Francisco,CA,94016 +260810,USB-C Charging Cable,1,11.95,2019-10-13 17:06:00,723 Main St, San Francisco,CA,94016 +260811,Apple Airpods Headphones,1,150.0,2019-10-01 12:34:00,236 Madison St, San Francisco,CA,94016 +260812,Lightning Charging Cable,1,14.95,2019-10-09 19:08:00,115 Main St, San Francisco,CA,94016 +260813,iPhone,1,700.0,2019-10-31 00:45:00,82 14th St, New York City,NY,10001 +260813,Lightning Charging Cable,1,14.95,2019-10-31 00:45:00,82 14th St, New York City,NY,10001 +260814,Apple Airpods Headphones,1,150.0,2019-10-30 08:35:00,692 Main St, Atlanta,GA,30301 +260815,USB-C Charging Cable,1,11.95,2019-10-28 19:40:00,40 Adams St, Los Angeles,CA,90001 +260816,AAA Batteries (4-pack),1,2.99,2019-10-23 16:09:00,842 North St, New York City,NY,10001 +260817,AAA Batteries (4-pack),1,2.99,2019-10-09 14:12:00,931 Dogwood St, Portland,OR,97035 +260818,Lightning Charging Cable,1,14.95,2019-10-11 15:46:00,30 Pine St, New York City,NY,10001 +260819,27in 4K Gaming Monitor,1,389.99,2019-10-16 18:54:00,637 7th St, Dallas,TX,75001 +260820,USB-C Charging Cable,1,11.95,2019-10-21 14:56:00,621 1st St, San Francisco,CA,94016 +260821,AAA Batteries (4-pack),1,2.99,2019-10-05 21:44:00,86 10th St, San Francisco,CA,94016 +260822,Apple Airpods Headphones,1,150.0,2019-10-05 13:49:00,290 Ridge St, Portland,OR,97035 +260823,Lightning Charging Cable,1,14.95,2019-10-11 19:34:00,935 9th St, Los Angeles,CA,90001 +260824,ThinkPad Laptop,1,999.99,2019-10-27 10:15:00,48 West St, Boston,MA,02215 +260825,Bose SoundSport Headphones,1,99.99,2019-10-22 11:50:00,53 Highland St, San Francisco,CA,94016 +260826,Lightning Charging Cable,1,14.95,2019-10-01 18:12:00,270 Madison St, Boston,MA,02215 +260827,Apple Airpods Headphones,1,150.0,2019-10-08 13:39:00,951 14th St, San Francisco,CA,94016 +260828,Apple Airpods Headphones,1,150.0,2019-10-13 16:14:00,375 Highland St, Portland,OR,97035 +260829,Google Phone,1,600.0,2019-10-26 14:41:00,82 Forest St, San Francisco,CA,94016 +260830,Macbook Pro Laptop,1,1700.0,2019-10-04 18:26:00,129 12th St, Dallas,TX,75001 +260831,USB-C Charging Cable,1,11.95,2019-10-18 21:06:00,844 Jackson St, Austin,TX,73301 +260832,AAA Batteries (4-pack),1,2.99,2019-10-24 15:56:00,701 9th St, Boston,MA,02215 +260833,Wired Headphones,1,11.99,2019-10-02 19:03:00,77 Hill St, San Francisco,CA,94016 +260834,Lightning Charging Cable,1,14.95,2019-10-30 17:54:00,591 Jefferson St, Boston,MA,02215 +260835,Vareebadd Phone,1,400.0,2019-10-03 09:53:00,337 Park St, San Francisco,CA,94016 +260836,USB-C Charging Cable,1,11.95,2019-10-18 11:28:00,366 Maple St, San Francisco,CA,94016 +260837,Wired Headphones,1,11.99,2019-10-12 17:43:00,296 Spruce St, Portland,OR,97035 +260838,USB-C Charging Cable,1,11.95,2019-10-19 14:53:00,865 Johnson St, Los Angeles,CA,90001 +260839,Flatscreen TV,1,300.0,2019-10-25 09:01:00,296 Walnut St, San Francisco,CA,94016 +260840,Lightning Charging Cable,1,14.95,2019-10-18 00:37:00,718 Center St, San Francisco,CA,94016 +260841,USB-C Charging Cable,1,11.95,2019-10-08 09:59:00,835 7th St, Boston,MA,02215 +260842,AA Batteries (4-pack),4,3.84,2019-10-24 11:56:00,134 Forest St, Atlanta,GA,30301 +260843,Apple Airpods Headphones,1,150.0,2019-10-31 20:25:00,492 7th St, New York City,NY,10001 +260844,USB-C Charging Cable,1,11.95,2019-10-02 21:16:00,590 Highland St, Dallas,TX,75001 +260845,Lightning Charging Cable,1,14.95,2019-10-31 11:27:00,150 Cherry St, San Francisco,CA,94016 +260846,AA Batteries (4-pack),1,3.84,2019-10-20 18:52:00,793 Highland St, Portland,ME,04101 +260847,Apple Airpods Headphones,1,150.0,2019-10-01 10:33:00,327 Cherry St, San Francisco,CA,94016 +260848,Lightning Charging Cable,1,14.95,2019-10-11 21:03:00,688 Lakeview St, Boston,MA,02215 +260849,iPhone,1,700.0,2019-10-01 15:26:00,705 South St, Austin,TX,73301 +260850,USB-C Charging Cable,1,11.95,2019-10-16 11:06:00,923 6th St, Portland,OR,97035 +260851,Google Phone,1,600.0,2019-10-13 19:12:00,418 Church St, San Francisco,CA,94016 +260852,AA Batteries (4-pack),1,3.84,2019-10-14 11:28:00,98 Center St, Los Angeles,CA,90001 +260853,20in Monitor,1,109.99,2019-10-09 21:16:00,408 North St, San Francisco,CA,94016 +260854,27in 4K Gaming Monitor,1,389.99,2019-10-04 23:24:00,168 11th St, San Francisco,CA,94016 +260855,AAA Batteries (4-pack),3,2.99,2019-10-16 03:19:00,976 Johnson St, Austin,TX,73301 +260856,AAA Batteries (4-pack),1,2.99,2019-10-25 13:51:00,753 Cedar St, Austin,TX,73301 +260857,USB-C Charging Cable,1,11.95,2019-10-20 13:56:00,265 Sunset St, Boston,MA,02215 +260858,27in 4K Gaming Monitor,1,389.99,2019-10-25 14:51:00,946 12th St, Los Angeles,CA,90001 +260859,AA Batteries (4-pack),1,3.84,2019-10-19 12:40:00,907 North St, San Francisco,CA,94016 +260860,Bose SoundSport Headphones,1,99.99,2019-10-25 21:57:00,285 12th St, Los Angeles,CA,90001 +260861,USB-C Charging Cable,1,11.95,2019-10-12 20:52:00,599 Pine St, Portland,OR,97035 +260862,AA Batteries (4-pack),2,3.84,2019-10-22 19:35:00,352 12th St, San Francisco,CA,94016 +260863,27in FHD Monitor,1,149.99,2019-10-28 02:18:00,101 North St, New York City,NY,10001 +260864,27in 4K Gaming Monitor,1,389.99,2019-10-24 16:39:00,582 5th St, Austin,TX,73301 +260865,Lightning Charging Cable,1,14.95,2019-10-03 17:20:00,740 Highland St, Seattle,WA,98101 +260866,ThinkPad Laptop,1,999.99,2019-10-22 11:38:00,611 Dogwood St, San Francisco,CA,94016 +260867,USB-C Charging Cable,1,11.95,2019-10-04 11:33:00,163 13th St, Los Angeles,CA,90001 +260868,ThinkPad Laptop,1,999.99,2019-10-10 17:22:00,759 Cherry St, Boston,MA,02215 +260869,AA Batteries (4-pack),1,3.84,2019-10-05 23:44:00,547 Maple St, San Francisco,CA,94016 +260870,ThinkPad Laptop,1,999.99,2019-10-07 12:16:00,614 Sunset St, New York City,NY,10001 +260871,Macbook Pro Laptop,1,1700.0,2019-10-23 12:44:00,162 Spruce St, Los Angeles,CA,90001 +260872,AA Batteries (4-pack),1,3.84,2019-10-26 20:43:00,630 Spruce St, New York City,NY,10001 +260873,Macbook Pro Laptop,1,1700.0,2019-10-16 03:30:00,166 14th St, San Francisco,CA,94016 +260874,Lightning Charging Cable,2,14.95,2019-10-29 16:45:00,173 Walnut St, New York City,NY,10001 +260875,27in FHD Monitor,1,149.99,2019-10-12 00:07:00,265 Hill St, New York City,NY,10001 +260876,AA Batteries (4-pack),1,3.84,2019-10-09 10:04:00,910 2nd St, San Francisco,CA,94016 +260877,AA Batteries (4-pack),1,3.84,2019-10-06 15:50:00,781 Walnut St, Seattle,WA,98101 +260878,Apple Airpods Headphones,1,150.0,2019-10-30 13:29:00,718 Washington St, New York City,NY,10001 +260879,AA Batteries (4-pack),1,3.84,2019-10-19 13:16:00,477 Adams St, Dallas,TX,75001 +260880,AA Batteries (4-pack),1,3.84,2019-10-25 14:56:00,704 Walnut St, Portland,OR,97035 +260881,Flatscreen TV,1,300.0,2019-10-10 10:34:00,690 Maple St, Portland,OR,97035 +260882,iPhone,1,700.0,2019-10-06 20:49:00,386 Johnson St, New York City,NY,10001 +260883,Flatscreen TV,1,300.0,2019-10-16 13:27:00,290 Hill St, Seattle,WA,98101 +260884,USB-C Charging Cable,1,11.95,2019-10-31 11:07:00,193 12th St, San Francisco,CA,94016 +260885,Lightning Charging Cable,1,14.95,2019-10-15 21:30:00,964 North St, New York City,NY,10001 +260886,Apple Airpods Headphones,1,150.0,2019-10-24 03:46:00,495 Hickory St, San Francisco,CA,94016 +260887,iPhone,1,700.0,2019-10-24 22:29:00,349 11th St, Los Angeles,CA,90001 +260888,AAA Batteries (4-pack),2,2.99,2019-10-12 14:51:00,333 Hickory St, Boston,MA,02215 +260889,AAA Batteries (4-pack),1,2.99,2019-10-02 07:58:00,926 Elm St, Los Angeles,CA,90001 +260890,34in Ultrawide Monitor,1,379.99,2019-10-09 17:45:00,85 Madison St, Austin,TX,73301 +260891,AAA Batteries (4-pack),1,2.99,2019-10-24 09:58:00,714 Wilson St, Portland,OR,97035 +260892,USB-C Charging Cable,1,11.95,2019-10-01 15:07:00,673 Jefferson St, San Francisco,CA,94016 +260893,27in FHD Monitor,1,149.99,2019-10-18 03:11:00,388 9th St, New York City,NY,10001 +260894,iPhone,1,700.0,2019-10-17 05:30:00,930 Elm St, Los Angeles,CA,90001 +260895,AA Batteries (4-pack),1,3.84,2019-10-27 07:51:00,440 Jefferson St, Austin,TX,73301 +260896,Google Phone,1,600.0,2019-10-15 11:12:00,923 Hill St, New York City,NY,10001 +260896,Wired Headphones,1,11.99,2019-10-15 11:12:00,923 Hill St, New York City,NY,10001 +260897,AA Batteries (4-pack),1,3.84,2019-10-02 18:21:00,419 Washington St, San Francisco,CA,94016 +260898,iPhone,1,700.0,2019-10-04 09:16:00,543 Johnson St, Los Angeles,CA,90001 +260898,Lightning Charging Cable,1,14.95,2019-10-04 09:16:00,543 Johnson St, Los Angeles,CA,90001 +260899,Apple Airpods Headphones,1,150.0,2019-10-12 00:24:00,713 9th St, New York City,NY,10001 +260900,Lightning Charging Cable,1,14.95,2019-10-05 22:35:00,769 Pine St, Seattle,WA,98101 +260901,AAA Batteries (4-pack),1,2.99,2019-10-22 13:20:00,657 Johnson St, Atlanta,GA,30301 +260902,Lightning Charging Cable,1,14.95,2019-10-30 18:52:00,597 Lincoln St, Austin,TX,73301 +260903,Wired Headphones,1,11.99,2019-10-16 17:31:00,665 Jackson St, Austin,TX,73301 +260904,Flatscreen TV,1,300.0,2019-10-30 18:16:00,607 Johnson St, New York City,NY,10001 +260905,AA Batteries (4-pack),2,3.84,2019-10-06 12:34:00,247 West St, Dallas,TX,75001 +260906,AAA Batteries (4-pack),1,2.99,2019-10-28 15:18:00,536 2nd St, Dallas,TX,75001 +260907,27in FHD Monitor,1,149.99,2019-10-26 16:30:00,185 Lakeview St, San Francisco,CA,94016 +260908,27in 4K Gaming Monitor,1,389.99,2019-10-04 08:05:00,168 Adams St, San Francisco,CA,94016 +260909,AAA Batteries (4-pack),1,2.99,2019-10-07 21:43:00,550 Jackson St, San Francisco,CA,94016 +260909,20in Monitor,1,109.99,2019-10-07 21:43:00,550 Jackson St, San Francisco,CA,94016 +260910,27in FHD Monitor,1,149.99,2019-10-29 12:25:00,366 Forest St, San Francisco,CA,94016 +260911,Bose SoundSport Headphones,1,99.99,2019-10-25 09:57:00,433 Hickory St, San Francisco,CA,94016 +260912,AAA Batteries (4-pack),1,2.99,2019-10-18 10:33:00,639 11th St, Los Angeles,CA,90001 +260913,USB-C Charging Cable,1,11.95,2019-10-27 13:09:00,521 Meadow St, Boston,MA,02215 +260914,Bose SoundSport Headphones,1,99.99,2019-10-11 22:10:00,706 Lakeview St, Los Angeles,CA,90001 +260915,Vareebadd Phone,1,400.0,2019-10-27 22:52:00,100 Johnson St, Atlanta,GA,30301 +260915,USB-C Charging Cable,1,11.95,2019-10-27 22:52:00,100 Johnson St, Atlanta,GA,30301 +260916,Lightning Charging Cable,1,14.95,2019-10-08 15:55:00,754 South St, Los Angeles,CA,90001 +260917,AAA Batteries (4-pack),2,2.99,2019-10-24 13:33:00,742 Hill St, Los Angeles,CA,90001 +260918,Wired Headphones,1,11.99,2019-10-23 16:37:00,839 5th St, New York City,NY,10001 +260919,Bose SoundSport Headphones,1,99.99,2019-10-11 16:36:00,121 9th St, Dallas,TX,75001 +260920,Wired Headphones,1,11.99,2019-10-20 20:06:00,190 West St, Boston,MA,02215 +260921,Wired Headphones,1,11.99,2019-10-07 09:09:00,273 River St, Seattle,WA,98101 +260922,Wired Headphones,1,11.99,2019-10-20 21:07:00,68 River St, Seattle,WA,98101 +260923,Macbook Pro Laptop,1,1700.0,2019-10-22 17:48:00,101 Adams St, Boston,MA,02215 +260924,Macbook Pro Laptop,1,1700.0,2019-10-14 16:39:00,935 Forest St, Boston,MA,02215 +260925,Macbook Pro Laptop,1,1700.0,2019-10-19 21:11:00,822 North St, Los Angeles,CA,90001 +260926,USB-C Charging Cable,1,11.95,2019-10-06 08:02:00,123 West St, Portland,OR,97035 +260927,Lightning Charging Cable,1,14.95,2019-10-06 13:49:00,332 Hickory St, Seattle,WA,98101 +260928,USB-C Charging Cable,1,11.95,2019-10-02 11:05:00,153 Hill St, Boston,MA,02215 +260929,Wired Headphones,1,11.99,2019-10-04 17:48:00,934 Willow St, Portland,OR,97035 +260930,AAA Batteries (4-pack),1,2.99,2019-10-18 13:26:00,733 Sunset St, Seattle,WA,98101 +260931,AA Batteries (4-pack),1,3.84,2019-10-30 13:07:00,273 7th St, Los Angeles,CA,90001 +260932,27in FHD Monitor,1,149.99,2019-10-30 13:27:00,176 Hickory St, Atlanta,GA,30301 +260933,27in 4K Gaming Monitor,1,389.99,2019-10-29 13:59:00,850 Cherry St, Austin,TX,73301 +260934,USB-C Charging Cable,1,11.95,2019-10-31 00:46:00,966 Center St, San Francisco,CA,94016 +260935,Apple Airpods Headphones,1,150.0,2019-10-12 09:36:00,292 Elm St, Austin,TX,73301 +260936,USB-C Charging Cable,1,11.95,2019-10-06 10:43:00,358 12th St, Atlanta,GA,30301 +260937,iPhone,1,700.0,2019-10-04 14:16:00,245 Maple St, San Francisco,CA,94016 +260938,Google Phone,1,600.0,2019-10-29 14:14:00,218 1st St, Los Angeles,CA,90001 +260939,Wired Headphones,1,11.99,2019-10-13 18:14:00,190 Cherry St, Los Angeles,CA,90001 +260940,USB-C Charging Cable,1,11.95,2019-10-30 18:14:00,316 Center St, New York City,NY,10001 +260941,34in Ultrawide Monitor,1,379.99,2019-10-06 11:07:00,693 Highland St, Los Angeles,CA,90001 +260942,USB-C Charging Cable,1,11.95,2019-10-14 11:50:00,692 10th St, Los Angeles,CA,90001 +260943,USB-C Charging Cable,1,11.95,2019-10-17 19:30:00,892 Main St, Portland,OR,97035 +260944,AAA Batteries (4-pack),1,2.99,2019-10-22 17:24:00,45 West St, Boston,MA,02215 +260945,Bose SoundSport Headphones,1,99.99,2019-10-25 20:24:00,534 Highland St, San Francisco,CA,94016 +260946,Lightning Charging Cable,1,14.95,2019-10-21 12:02:00,253 Elm St, Seattle,WA,98101 +260947,Wired Headphones,1,11.99,2019-10-26 11:45:00,430 Sunset St, Austin,TX,73301 +260948,Apple Airpods Headphones,1,150.0,2019-10-15 19:18:00,185 Elm St, Los Angeles,CA,90001 +260949,USB-C Charging Cable,2,11.95,2019-10-25 00:53:00,562 Washington St, New York City,NY,10001 +260950,Bose SoundSport Headphones,1,99.99,2019-10-07 16:42:00,523 Washington St, San Francisco,CA,94016 +260951,USB-C Charging Cable,1,11.95,2019-10-05 15:24:00,503 5th St, New York City,NY,10001 +260952,AAA Batteries (4-pack),2,2.99,2019-10-12 11:22:00,372 Madison St, Atlanta,GA,30301 +260953,USB-C Charging Cable,1,11.95,2019-10-05 10:57:00,123 Hill St, Los Angeles,CA,90001 +260954,Lightning Charging Cable,1,14.95,2019-10-15 19:46:00,873 Willow St, Dallas,TX,75001 +260955,AAA Batteries (4-pack),1,2.99,2019-10-21 21:33:00,320 Madison St, New York City,NY,10001 +260956,Lightning Charging Cable,1,14.95,2019-10-23 12:40:00,298 Meadow St, Seattle,WA,98101 +260957,34in Ultrawide Monitor,1,379.99,2019-10-02 09:56:00,43 Highland St, Dallas,TX,75001 +260958,AAA Batteries (4-pack),1,2.99,2019-10-30 10:31:00,899 Adams St, Austin,TX,73301 +260959,Bose SoundSport Headphones,1,99.99,2019-10-29 14:38:00,753 10th St, Los Angeles,CA,90001 +260960,USB-C Charging Cable,1,11.95,2019-10-21 16:29:00,898 Forest St, San Francisco,CA,94016 +260961,Bose SoundSport Headphones,1,99.99,2019-10-23 07:47:00,883 5th St, San Francisco,CA,94016 +260962,USB-C Charging Cable,1,11.95,2019-10-28 19:18:00,660 West St, Dallas,TX,75001 +260963,AAA Batteries (4-pack),1,2.99,2019-10-21 13:38:00,220 Pine St, San Francisco,CA,94016 +260964,Lightning Charging Cable,1,14.95,2019-10-29 13:44:00,257 Center St, Atlanta,GA,30301 +260965,Lightning Charging Cable,1,14.95,2019-10-22 22:04:00,211 Main St, New York City,NY,10001 +260966,20in Monitor,1,109.99,2019-10-17 17:06:00,606 Jackson St, Austin,TX,73301 +260967,USB-C Charging Cable,1,11.95,2019-10-13 12:44:00,569 Washington St, New York City,NY,10001 +260968,AA Batteries (4-pack),2,3.84,2019-10-01 08:52:00,381 Lakeview St, Seattle,WA,98101 +260969,ThinkPad Laptop,1,999.99,2019-10-24 17:17:00,175 Dogwood St, Portland,ME,04101 +260970,Google Phone,1,600.0,2019-10-21 19:33:00,214 10th St, Los Angeles,CA,90001 +260971,USB-C Charging Cable,1,11.95,2019-10-28 06:56:00,715 Maple St, Los Angeles,CA,90001 +260972,Bose SoundSport Headphones,1,99.99,2019-10-15 18:25:00,25 5th St, New York City,NY,10001 +260973,AAA Batteries (4-pack),1,2.99,2019-10-05 10:57:00,38 Highland St, Seattle,WA,98101 +260974,USB-C Charging Cable,1,11.95,2019-10-15 22:59:00,659 Spruce St, New York City,NY,10001 +260975,Wired Headphones,2,11.99,2019-10-11 10:57:00,106 Washington St, San Francisco,CA,94016 +260976,Wired Headphones,1,11.99,2019-10-24 14:33:00,317 Walnut St, Atlanta,GA,30301 +260977,iPhone,1,700.0,2019-10-09 17:39:00,657 14th St, Los Angeles,CA,90001 +260978,AA Batteries (4-pack),1,3.84,2019-10-09 21:16:00,856 Wilson St, Dallas,TX,75001 +260979,Flatscreen TV,1,300.0,2019-10-11 22:30:00,726 Main St, San Francisco,CA,94016 +260980,Apple Airpods Headphones,1,150.0,2019-10-11 13:56:00,774 Pine St, San Francisco,CA,94016 +260981,Bose SoundSport Headphones,1,99.99,2019-10-12 17:06:00,86 Madison St, Atlanta,GA,30301 +260982,34in Ultrawide Monitor,1,379.99,2019-10-18 20:39:00,627 Maple St, Atlanta,GA,30301 +260983,20in Monitor,1,109.99,2019-10-06 19:52:00,796 Cherry St, San Francisco,CA,94016 +260984,34in Ultrawide Monitor,1,379.99,2019-10-10 21:34:00,879 8th St, Seattle,WA,98101 +260985,34in Ultrawide Monitor,1,379.99,2019-10-13 12:39:00,506 Johnson St, Dallas,TX,75001 +260986,Macbook Pro Laptop,1,1700.0,2019-10-09 16:27:00,110 Hill St, Los Angeles,CA,90001 +260987,20in Monitor,1,109.99,2019-10-24 18:29:00,909 Park St, San Francisco,CA,94016 +260988,AAA Batteries (4-pack),2,2.99,2019-10-07 23:04:00,783 Cherry St, Dallas,TX,75001 +260989,34in Ultrawide Monitor,1,379.99,2019-10-26 10:28:00,39 Elm St, New York City,NY,10001 +260990,27in FHD Monitor,1,149.99,2019-10-06 12:36:00,677 Chestnut St, San Francisco,CA,94016 +260991,USB-C Charging Cable,1,11.95,2019-10-12 11:48:00,240 Forest St, Los Angeles,CA,90001 +260992,Wired Headphones,1,11.99,2019-10-20 10:55:00,664 Cedar St, Dallas,TX,75001 +260993,USB-C Charging Cable,1,11.95,2019-10-25 10:11:00,266 West St, Atlanta,GA,30301 +260994,Google Phone,1,600.0,2019-10-07 20:40:00,421 Church St, Los Angeles,CA,90001 +260994,USB-C Charging Cable,1,11.95,2019-10-07 20:40:00,421 Church St, Los Angeles,CA,90001 +260995,27in 4K Gaming Monitor,1,389.99,2019-10-22 08:50:00,61 Forest St, Boston,MA,02215 +260995,Bose SoundSport Headphones,1,99.99,2019-10-22 08:50:00,61 Forest St, Boston,MA,02215 +260996,Wired Headphones,1,11.99,2019-10-27 09:00:00,849 South St, Los Angeles,CA,90001 +260997,Apple Airpods Headphones,1,150.0,2019-10-15 08:27:00,533 North St, San Francisco,CA,94016 +260998,Flatscreen TV,1,300.0,2019-10-25 09:25:00,549 South St, Boston,MA,02215 +260999,Wired Headphones,1,11.99,2019-10-13 22:45:00,308 14th St, San Francisco,CA,94016 +260999,Macbook Pro Laptop,1,1700.0,2019-10-13 22:45:00,308 14th St, San Francisco,CA,94016 +261000,AA Batteries (4-pack),1,3.84,2019-10-28 12:59:00,363 10th St, San Francisco,CA,94016 +261001,USB-C Charging Cable,1,11.95,2019-10-19 23:17:00,774 Spruce St, San Francisco,CA,94016 +261002,iPhone,1,700.0,2019-10-22 00:41:00,895 Willow St, New York City,NY,10001 +261003,ThinkPad Laptop,1,999.99,2019-10-12 22:30:00,735 Spruce St, Seattle,WA,98101 +261004,AAA Batteries (4-pack),1,2.99,2019-10-23 17:34:00,484 Sunset St, Los Angeles,CA,90001 +261005,34in Ultrawide Monitor,1,379.99,2019-10-01 20:18:00,67 Sunset St, Los Angeles,CA,90001 +261006,20in Monitor,1,109.99,2019-10-22 01:21:00,778 Willow St, Atlanta,GA,30301 +261007,AA Batteries (4-pack),1,3.84,2019-10-02 16:29:00,922 4th St, San Francisco,CA,94016 +261008,AAA Batteries (4-pack),1,2.99,2019-10-03 09:55:00,627 9th St, Austin,TX,73301 +261009,Apple Airpods Headphones,1,150.0,2019-10-03 20:24:00,589 12th St, Seattle,WA,98101 +261010,Bose SoundSport Headphones,1,99.99,2019-10-08 16:38:00,510 Madison St, New York City,NY,10001 +261011,Bose SoundSport Headphones,1,99.99,2019-10-19 17:36:00,272 1st St, Austin,TX,73301 +261012,34in Ultrawide Monitor,1,379.99,2019-10-19 18:39:00,42 12th St, Seattle,WA,98101 +261013,20in Monitor,1,109.99,2019-10-06 07:09:00,266 11th St, Dallas,TX,75001 +261014,Lightning Charging Cable,1,14.95,2019-10-11 07:54:00,792 4th St, Portland,OR,97035 +261015,27in 4K Gaming Monitor,1,389.99,2019-10-05 16:22:00,953 Elm St, New York City,NY,10001 +261016,34in Ultrawide Monitor,1,379.99,2019-10-17 21:01:00,442 Elm St, Los Angeles,CA,90001 +261017,iPhone,1,700.0,2019-10-31 15:07:00,584 Maple St, San Francisco,CA,94016 +261018,Wired Headphones,1,11.99,2019-10-09 08:38:00,665 2nd St, Los Angeles,CA,90001 +261019,Bose SoundSport Headphones,1,99.99,2019-10-15 14:40:00,839 1st St, Dallas,TX,75001 +261020,Flatscreen TV,1,300.0,2019-10-09 20:18:00,74 13th St, Seattle,WA,98101 +261021,AAA Batteries (4-pack),2,2.99,2019-10-15 16:42:00,14 Meadow St, San Francisco,CA,94016 +261022,Flatscreen TV,1,300.0,2019-10-25 10:58:00,314 Walnut St, San Francisco,CA,94016 +261023,ThinkPad Laptop,1,999.99,2019-10-23 17:55:00,445 Lakeview St, Dallas,TX,75001 +261024,USB-C Charging Cable,1,11.95,2019-10-29 10:57:00,202 Meadow St, Austin,TX,73301 +261025,Bose SoundSport Headphones,1,99.99,2019-10-21 10:40:00,822 Meadow St, Austin,TX,73301 +261026,Apple Airpods Headphones,1,150.0,2019-10-11 21:40:00,940 7th St, Dallas,TX,75001 +261027,Wired Headphones,1,11.99,2019-10-19 14:58:00,8 9th St, Boston,MA,02215 +261028,27in FHD Monitor,1,149.99,2019-10-17 15:46:00,971 14th St, Atlanta,GA,30301 +261029,Google Phone,1,600.0,2019-10-16 13:56:00,193 Washington St, Atlanta,GA,30301 +261030,ThinkPad Laptop,1,999.99,2019-10-18 16:36:00,445 Cedar St, Austin,TX,73301 +261031,USB-C Charging Cable,2,11.95,2019-10-16 05:58:00,910 12th St, Boston,MA,02215 +261032,AAA Batteries (4-pack),1,2.99,2019-10-25 17:57:00,763 Dogwood St, Dallas,TX,75001 +261033,34in Ultrawide Monitor,1,379.99,2019-10-26 19:42:00,330 Willow St, Boston,MA,02215 +261034,AA Batteries (4-pack),1,3.84,2019-10-21 18:57:00,785 Jackson St, Atlanta,GA,30301 +261035,Bose SoundSport Headphones,1,99.99,2019-10-23 09:57:00,24 6th St, San Francisco,CA,94016 +261036,USB-C Charging Cable,1,11.95,2019-10-29 09:58:00,299 Pine St, Seattle,WA,98101 +261037,USB-C Charging Cable,1,11.95,2019-10-31 21:27:00,418 1st St, San Francisco,CA,94016 +261038,USB-C Charging Cable,1,11.95,2019-10-04 17:18:00,891 Elm St, Atlanta,GA,30301 +261039,LG Washing Machine,1,600.0,2019-10-11 07:21:00,910 Jackson St, Dallas,TX,75001 +261040,27in FHD Monitor,1,149.99,2019-10-11 10:21:00,223 Dogwood St, New York City,NY,10001 +261041,USB-C Charging Cable,1,11.95,2019-10-12 11:21:00,441 Lincoln St, Los Angeles,CA,90001 +261042,ThinkPad Laptop,1,999.99,2019-10-20 14:10:00,717 Chestnut St, Austin,TX,73301 +261043,AAA Batteries (4-pack),1,2.99,2019-10-29 18:41:00,408 Spruce St, Boston,MA,02215 +261044,AA Batteries (4-pack),1,3.84,2019-10-07 10:39:00,490 North St, Boston,MA,02215 +261045,Lightning Charging Cable,1,14.95,2019-10-26 18:55:00,374 Dogwood St, San Francisco,CA,94016 +261046,Wired Headphones,2,11.99,2019-10-14 11:03:00,906 Jefferson St, Boston,MA,02215 +261047,Macbook Pro Laptop,1,1700.0,2019-10-20 20:13:00,403 5th St, Portland,ME,04101 +261048,AA Batteries (4-pack),1,3.84,2019-10-31 13:42:00,346 Dogwood St, San Francisco,CA,94016 +261049,27in 4K Gaming Monitor,1,389.99,2019-10-27 15:28:00,811 Walnut St, New York City,NY,10001 +261050,Wired Headphones,1,11.99,2019-10-02 18:00:00,533 Cedar St, Portland,OR,97035 +261051,Wired Headphones,1,11.99,2019-10-25 19:36:00,821 Hickory St, Dallas,TX,75001 +261052,Flatscreen TV,1,300.0,2019-10-07 21:51:00,597 Cherry St, New York City,NY,10001 +261053,Lightning Charging Cable,1,14.95,2019-10-10 10:28:00,992 South St, New York City,NY,10001 +261054,iPhone,1,700.0,2019-10-02 11:14:00,992 Cherry St, Atlanta,GA,30301 +261055,Macbook Pro Laptop,1,1700.0,2019-10-14 21:37:00,243 Dogwood St, Los Angeles,CA,90001 +261056,Lightning Charging Cable,1,14.95,2019-10-22 08:41:00,188 Sunset St, Los Angeles,CA,90001 +261057,34in Ultrawide Monitor,1,379.99,2019-10-27 17:13:00,526 1st St, San Francisco,CA,94016 +261058,LG Washing Machine,1,600.0,2019-10-13 13:26:00,419 9th St, Boston,MA,02215 +261059,AAA Batteries (4-pack),1,2.99,2019-10-15 18:59:00,975 2nd St, Dallas,TX,75001 +261060,Wired Headphones,1,11.99,2019-10-22 23:16:00,951 Jackson St, Los Angeles,CA,90001 +261061,Flatscreen TV,1,300.0,2019-10-07 12:55:00,214 6th St, Boston,MA,02215 +261062,AAA Batteries (4-pack),2,2.99,2019-10-09 11:31:00,81 Center St, Dallas,TX,75001 +261063,iPhone,1,700.0,2019-10-03 14:20:00,455 Pine St, Atlanta,GA,30301 +261064,USB-C Charging Cable,1,11.95,2019-10-10 19:29:00,230 14th St, Portland,OR,97035 +261065,ThinkPad Laptop,1,999.99,2019-10-21 21:55:00,81 Spruce St, Boston,MA,02215 +261066,AAA Batteries (4-pack),1,2.99,2019-10-30 07:22:00,141 Cedar St, San Francisco,CA,94016 +261067,USB-C Charging Cable,1,11.95,2019-10-19 15:39:00,807 10th St, Atlanta,GA,30301 +261068,USB-C Charging Cable,1,11.95,2019-10-03 23:27:00,370 Chestnut St, San Francisco,CA,94016 +261069,Lightning Charging Cable,1,14.95,2019-10-07 17:04:00,209 Wilson St, Los Angeles,CA,90001 +261070,AA Batteries (4-pack),1,3.84,2019-10-22 20:14:00,499 5th St, Los Angeles,CA,90001 +261071,34in Ultrawide Monitor,1,379.99,2019-10-02 16:52:00,49 Dogwood St, Portland,OR,97035 +261072,ThinkPad Laptop,1,999.99,2019-10-02 17:29:00,881 13th St, Los Angeles,CA,90001 +261073,Wired Headphones,1,11.99,2019-10-31 09:19:00,625 North St, New York City,NY,10001 +261074,Lightning Charging Cable,1,14.95,2019-10-20 10:22:00,785 Lake St, Boston,MA,02215 +261075,Wired Headphones,1,11.99,2019-10-15 20:22:00,287 Chestnut St, Austin,TX,73301 +261076,27in 4K Gaming Monitor,1,389.99,2019-10-27 20:03:00,861 Main St, Atlanta,GA,30301 +261077,34in Ultrawide Monitor,1,379.99,2019-10-24 13:28:00,807 Lincoln St, New York City,NY,10001 +261078,USB-C Charging Cable,1,11.95,2019-10-31 20:33:00,855 12th St, Boston,MA,02215 +261079,USB-C Charging Cable,2,11.95,2019-10-04 18:15:00,272 6th St, Los Angeles,CA,90001 +261080,AA Batteries (4-pack),1,3.84,2019-10-18 18:21:00,708 Highland St, Portland,OR,97035 +261081,Lightning Charging Cable,1,14.95,2019-10-13 20:29:00,170 Walnut St, New York City,NY,10001 +261082,Google Phone,1,600.0,2019-10-14 17:14:00,186 14th St, Portland,OR,97035 +261083,AA Batteries (4-pack),1,3.84,2019-10-28 17:45:00,324 Adams St, Los Angeles,CA,90001 +261084,Bose SoundSport Headphones,1,99.99,2019-10-01 14:10:00,936 7th St, New York City,NY,10001 +261085,AA Batteries (4-pack),1,3.84,2019-10-19 20:54:00,918 South St, New York City,NY,10001 +261086,AA Batteries (4-pack),4,3.84,2019-10-02 11:58:00,814 Hill St, San Francisco,CA,94016 +261087,USB-C Charging Cable,1,11.95,2019-10-05 13:04:00,649 Jackson St, Los Angeles,CA,90001 +261088,AA Batteries (4-pack),1,3.84,2019-10-23 13:43:00,972 Ridge St, Boston,MA,02215 +261089,AA Batteries (4-pack),1,3.84,2019-10-27 18:20:00,962 Spruce St, Boston,MA,02215 +261090,USB-C Charging Cable,1,11.95,2019-10-19 20:50:00,53 Spruce St, San Francisco,CA,94016 +261091,AAA Batteries (4-pack),1,2.99,2019-10-25 10:26:00,158 6th St, San Francisco,CA,94016 +261092,iPhone,1,700.0,2019-10-14 11:13:00,472 Lincoln St, San Francisco,CA,94016 +261093,Apple Airpods Headphones,1,150.0,2019-10-28 20:03:00,550 West St, San Francisco,CA,94016 +261094,AAA Batteries (4-pack),1,2.99,2019-10-01 18:58:00,798 Jefferson St, San Francisco,CA,94016 +261095,AAA Batteries (4-pack),1,2.99,2019-10-13 23:30:00,547 9th St, Los Angeles,CA,90001 +261096,AAA Batteries (4-pack),1,2.99,2019-10-21 11:37:00,844 Lakeview St, San Francisco,CA,94016 +261097,Wired Headphones,1,11.99,2019-10-18 23:57:00,415 2nd St, Los Angeles,CA,90001 +261098,Google Phone,1,600.0,2019-10-10 18:39:00,107 Walnut St, San Francisco,CA,94016 +261098,USB-C Charging Cable,1,11.95,2019-10-10 18:39:00,107 Walnut St, San Francisco,CA,94016 +261099,Wired Headphones,1,11.99,2019-10-24 13:24:00,516 Highland St, Austin,TX,73301 +261100,Apple Airpods Headphones,1,150.0,2019-10-19 12:05:00,903 6th St, Seattle,WA,98101 +261101,USB-C Charging Cable,1,11.95,2019-10-14 14:50:00,521 Wilson St, New York City,NY,10001 +261102,ThinkPad Laptop,1,999.99,2019-10-08 20:16:00,727 10th St, San Francisco,CA,94016 +261103,AA Batteries (4-pack),2,3.84,2019-10-07 17:29:00,231 11th St, San Francisco,CA,94016 +261104,Bose SoundSport Headphones,1,99.99,2019-10-27 09:11:00,994 9th St, Portland,OR,97035 +261105,34in Ultrawide Monitor,1,379.99,2019-10-20 18:14:00,454 Hill St, Los Angeles,CA,90001 +261106,34in Ultrawide Monitor,1,379.99,2019-10-18 20:56:00,236 Center St, Austin,TX,73301 +261107,Apple Airpods Headphones,1,150.0,2019-10-28 15:23:00,998 Forest St, Austin,TX,73301 +261108,34in Ultrawide Monitor,1,379.99,2019-10-03 17:40:00,906 Dogwood St, New York City,NY,10001 +261109,Bose SoundSport Headphones,1,99.99,2019-10-03 21:39:00,260 Jackson St, New York City,NY,10001 +261110,27in 4K Gaming Monitor,1,389.99,2019-10-25 14:47:00,473 Lake St, Austin,TX,73301 +261111,Bose SoundSport Headphones,1,99.99,2019-10-31 15:01:00,978 11th St, Boston,MA,02215 +261112,Apple Airpods Headphones,1,150.0,2019-10-02 17:26:00,60 7th St, San Francisco,CA,94016 +261113,AAA Batteries (4-pack),1,2.99,2019-10-30 05:19:00,768 Hickory St, San Francisco,CA,94016 +261114,Wired Headphones,1,11.99,2019-10-09 18:51:00,337 7th St, Los Angeles,CA,90001 +261115,Bose SoundSport Headphones,1,99.99,2019-10-29 19:50:00,779 6th St, Austin,TX,73301 +261116,Lightning Charging Cable,1,14.95,2019-10-22 13:44:00,366 Elm St, Dallas,TX,75001 +261117,Apple Airpods Headphones,1,150.0,2019-10-03 00:59:00,387 Chestnut St, San Francisco,CA,94016 +261118,20in Monitor,1,109.99,2019-10-07 15:46:00,387 Walnut St, Boston,MA,02215 +261119,27in FHD Monitor,1,149.99,2019-10-21 13:04:00,160 Elm St, Los Angeles,CA,90001 +261120,Apple Airpods Headphones,1,150.0,2019-10-20 01:20:00,466 Lake St, Los Angeles,CA,90001 +261121,Bose SoundSport Headphones,1,99.99,2019-10-16 21:17:00,210 Highland St, San Francisco,CA,94016 +261122,ThinkPad Laptop,1,999.99,2019-10-17 11:02:00,975 Meadow St, Los Angeles,CA,90001 +261123,Apple Airpods Headphones,1,150.0,2019-10-31 11:49:00,345 Madison St, Atlanta,GA,30301 +261124,Wired Headphones,1,11.99,2019-10-27 04:55:00,57 Adams St, Atlanta,GA,30301 +261125,Wired Headphones,1,11.99,2019-10-13 13:02:00,603 North St, Los Angeles,CA,90001 +261126,27in 4K Gaming Monitor,1,389.99,2019-10-26 11:23:00,144 North St, San Francisco,CA,94016 +261127,34in Ultrawide Monitor,1,379.99,2019-11-01 01:49:00,917 Madison St, Seattle,WA,98101 +261128,AA Batteries (4-pack),2,3.84,2019-10-11 21:30:00,184 Jefferson St, Boston,MA,02215 +261129,Lightning Charging Cable,1,14.95,2019-10-16 11:04:00,81 Chestnut St, San Francisco,CA,94016 +261130,34in Ultrawide Monitor,1,379.99,2019-10-22 23:52:00,792 Hickory St, Portland,ME,04101 +261131,Wired Headphones,1,11.99,2019-10-25 10:06:00,277 4th St, Seattle,WA,98101 +261132,Google Phone,1,600.0,2019-10-24 12:15:00,13 Lincoln St, San Francisco,CA,94016 +261132,USB-C Charging Cable,1,11.95,2019-10-24 12:15:00,13 Lincoln St, San Francisco,CA,94016 +261133,USB-C Charging Cable,1,11.95,2019-10-15 01:08:00,903 Johnson St, San Francisco,CA,94016 +261134,iPhone,1,700.0,2019-10-25 15:02:00,985 Elm St, Seattle,WA,98101 +261135,Lightning Charging Cable,1,14.95,2019-10-24 08:58:00,60 Wilson St, Seattle,WA,98101 +261136,Google Phone,1,600.0,2019-10-24 12:45:00,888 4th St, San Francisco,CA,94016 +261136,USB-C Charging Cable,1,11.95,2019-10-24 12:45:00,888 4th St, San Francisco,CA,94016 +261137,AAA Batteries (4-pack),1,2.99,2019-10-17 12:58:00,854 Highland St, San Francisco,CA,94016 +261138,Lightning Charging Cable,1,14.95,2019-10-11 10:56:00,272 Ridge St, New York City,NY,10001 +261139,AAA Batteries (4-pack),1,2.99,2019-10-09 19:06:00,862 Maple St, Atlanta,GA,30301 +261140,Wired Headphones,2,11.99,2019-10-05 21:00:00,600 Center St, San Francisco,CA,94016 +261141,27in FHD Monitor,1,149.99,2019-10-24 09:05:00,573 Wilson St, Los Angeles,CA,90001 +261142,Lightning Charging Cable,1,14.95,2019-10-25 14:33:00,39 Forest St, Los Angeles,CA,90001 +261143,27in 4K Gaming Monitor,1,389.99,2019-10-21 11:40:00,163 Wilson St, San Francisco,CA,94016 +261144,Flatscreen TV,1,300.0,2019-10-05 13:55:00,595 Church St, Seattle,WA,98101 +261145,USB-C Charging Cable,2,11.95,2019-10-13 16:48:00,981 1st St, Atlanta,GA,30301 +261146,Google Phone,1,600.0,2019-10-14 12:28:00,530 5th St, San Francisco,CA,94016 +261147,USB-C Charging Cable,1,11.95,2019-10-10 00:51:00,240 Dogwood St, San Francisco,CA,94016 +261148,Wired Headphones,1,11.99,2019-10-02 12:52:00,389 4th St, Seattle,WA,98101 +261149,Google Phone,1,600.0,2019-10-04 23:23:00,799 Jackson St, San Francisco,CA,94016 +261149,Wired Headphones,2,11.99,2019-10-04 23:23:00,799 Jackson St, San Francisco,CA,94016 +261150,Macbook Pro Laptop,1,1700.0,2019-10-23 19:48:00,310 Madison St, Seattle,WA,98101 +261151,27in FHD Monitor,1,149.99,2019-10-29 14:08:00,6 Elm St, Seattle,WA,98101 +261152,Lightning Charging Cable,1,14.95,2019-10-04 19:30:00,600 River St, Los Angeles,CA,90001 +261153,Google Phone,1,600.0,2019-10-30 23:42:00,430 Spruce St, Dallas,TX,75001 +261154,USB-C Charging Cable,1,11.95,2019-10-30 01:23:00,967 Maple St, Austin,TX,73301 +261155,34in Ultrawide Monitor,1,379.99,2019-10-25 19:39:00,691 Johnson St, Los Angeles,CA,90001 +261156,Macbook Pro Laptop,1,1700.0,2019-10-25 10:45:00,144 Cedar St, Boston,MA,02215 +261157,AAA Batteries (4-pack),1,2.99,2019-10-01 10:20:00,445 Hickory St, Austin,TX,73301 +261158,Google Phone,1,600.0,2019-10-10 20:48:00,190 Chestnut St, Los Angeles,CA,90001 +261159,AA Batteries (4-pack),1,3.84,2019-10-18 16:28:00,395 Cherry St, New York City,NY,10001 +261160,Wired Headphones,1,11.99,2019-10-22 20:01:00,563 10th St, San Francisco,CA,94016 +261161,Apple Airpods Headphones,1,150.0,2019-10-09 21:50:00,698 South St, Atlanta,GA,30301 +261162,USB-C Charging Cable,1,11.95,2019-10-06 17:17:00,637 5th St, New York City,NY,10001 +261163,USB-C Charging Cable,1,11.95,2019-10-29 11:05:00,107 Elm St, San Francisco,CA,94016 +261164,Wired Headphones,1,11.99,2019-10-11 21:51:00,976 Spruce St, Seattle,WA,98101 +261165,Lightning Charging Cable,1,14.95,2019-10-26 18:18:00,544 12th St, Dallas,TX,75001 +261166,AAA Batteries (4-pack),1,2.99,2019-10-21 09:47:00,603 Main St, Austin,TX,73301 +261167,Wired Headphones,1,11.99,2019-10-31 21:15:00,736 Johnson St, San Francisco,CA,94016 +261168,USB-C Charging Cable,1,11.95,2019-10-19 13:03:00,419 4th St, Atlanta,GA,30301 +261169,Wired Headphones,1,11.99,2019-10-12 12:58:00,442 Lakeview St, Portland,OR,97035 +261170,USB-C Charging Cable,1,11.95,2019-10-02 21:03:00,688 Hickory St, Dallas,TX,75001 +261171,Wired Headphones,1,11.99,2019-10-08 10:37:00,952 Willow St, San Francisco,CA,94016 +261172,Google Phone,1,600.0,2019-10-24 11:54:00,849 Dogwood St, Los Angeles,CA,90001 +261173,Wired Headphones,1,11.99,2019-10-05 22:54:00,387 Jefferson St, San Francisco,CA,94016 +261174,Apple Airpods Headphones,1,150.0,2019-10-05 21:14:00,315 12th St, Boston,MA,02215 +261175,27in FHD Monitor,1,149.99,2019-10-22 11:13:00,209 Ridge St, Atlanta,GA,30301 +261176,AAA Batteries (4-pack),1,2.99,2019-10-17 19:16:00,684 Meadow St, New York City,NY,10001 +261177,Wired Headphones,1,11.99,2019-10-18 09:32:00,229 Willow St, Los Angeles,CA,90001 +261178,Macbook Pro Laptop,1,1700.0,2019-10-13 12:22:00,630 4th St, New York City,NY,10001 +261179,USB-C Charging Cable,1,11.95,2019-10-07 14:52:00,127 Madison St, San Francisco,CA,94016 +261180,Wired Headphones,1,11.99,2019-10-11 21:11:00,234 Elm St, San Francisco,CA,94016 +261181,27in 4K Gaming Monitor,1,389.99,2019-10-30 18:23:00,896 Main St, Los Angeles,CA,90001 +261182,AA Batteries (4-pack),2,3.84,2019-10-29 20:08:00,630 Walnut St, Austin,TX,73301 +261183,Wired Headphones,2,11.99,2019-10-12 21:31:00,998 Ridge St, Boston,MA,02215 +261184,iPhone,1,700.0,2019-10-23 16:49:00,1 North St, Atlanta,GA,30301 +261185,AA Batteries (4-pack),2,3.84,2019-10-03 20:18:00,775 Maple St, San Francisco,CA,94016 +261186,USB-C Charging Cable,1,11.95,2019-10-22 11:11:00,755 5th St, Los Angeles,CA,90001 +261187,AAA Batteries (4-pack),1,2.99,2019-10-24 12:52:00,639 Park St, Los Angeles,CA,90001 +261188,AAA Batteries (4-pack),3,2.99,2019-10-26 12:20:00,602 Willow St, Atlanta,GA,30301 +261189,USB-C Charging Cable,1,11.95,2019-10-12 19:27:00,34 11th St, Los Angeles,CA,90001 +261190,Google Phone,1,600.0,2019-10-17 20:43:00,391 Pine St, Seattle,WA,98101 +261190,USB-C Charging Cable,1,11.95,2019-10-17 20:43:00,391 Pine St, Seattle,WA,98101 +261191,USB-C Charging Cable,1,11.95,2019-10-10 15:38:00,211 10th St, Los Angeles,CA,90001 +261192,AAA Batteries (4-pack),2,2.99,2019-10-03 20:06:00,520 Jefferson St, Los Angeles,CA,90001 +261192,Lightning Charging Cable,1,14.95,2019-10-03 20:06:00,520 Jefferson St, Los Angeles,CA,90001 +261193,Apple Airpods Headphones,1,150.0,2019-10-30 11:04:00,620 Washington St, Austin,TX,73301 +261194,AAA Batteries (4-pack),1,2.99,2019-10-05 13:59:00,553 Church St, Seattle,WA,98101 +261195,Flatscreen TV,1,300.0,2019-10-21 00:03:00,687 10th St, Dallas,TX,75001 +261196,AA Batteries (4-pack),2,3.84,2019-10-11 20:10:00,424 11th St, San Francisco,CA,94016 +261197,AAA Batteries (4-pack),1,2.99,2019-10-10 16:59:00,134 South St, Atlanta,GA,30301 +261198,USB-C Charging Cable,1,11.95,2019-10-16 10:11:00,255 West St, Dallas,TX,75001 +261199,ThinkPad Laptop,1,999.99,2019-10-13 01:35:00,884 Maple St, Dallas,TX,75001 +261200,Apple Airpods Headphones,1,150.0,2019-10-18 12:15:00,336 Center St, New York City,NY,10001 +261201,Bose SoundSport Headphones,1,99.99,2019-10-21 12:36:00,132 13th St, Atlanta,GA,30301 +261202,Wired Headphones,1,11.99,2019-10-11 15:46:00,216 Johnson St, San Francisco,CA,94016 +261203,Flatscreen TV,1,300.0,2019-10-20 12:17:00,42 Spruce St, Boston,MA,02215 +261204,Lightning Charging Cable,1,14.95,2019-10-13 13:36:00,24 Center St, Seattle,WA,98101 +261205,ThinkPad Laptop,1,999.99,2019-10-25 12:09:00,637 Lake St, San Francisco,CA,94016 +261206,AA Batteries (4-pack),1,3.84,2019-10-01 14:11:00,271 Meadow St, Boston,MA,02215 +261207,Apple Airpods Headphones,1,150.0,2019-10-10 14:55:00,710 Johnson St, New York City,NY,10001 +261208,USB-C Charging Cable,1,11.95,2019-10-27 13:59:00,599 Adams St, San Francisco,CA,94016 +261209,Macbook Pro Laptop,1,1700.0,2019-10-05 16:32:00,66 Center St, Boston,MA,02215 +261210,Apple Airpods Headphones,1,150.0,2019-10-05 00:18:00,550 Center St, New York City,NY,10001 +261211,Google Phone,1,600.0,2019-10-18 11:53:00,687 West St, Boston,MA,02215 +261212,Apple Airpods Headphones,1,150.0,2019-10-20 08:34:00,46 River St, San Francisco,CA,94016 +261213,AAA Batteries (4-pack),2,2.99,2019-10-08 11:53:00,560 12th St, Boston,MA,02215 +261214,Lightning Charging Cable,2,14.95,2019-10-01 14:31:00,515 River St, Austin,TX,73301 +261215,AAA Batteries (4-pack),2,2.99,2019-10-08 04:46:00,138 4th St, New York City,NY,10001 +261216,USB-C Charging Cable,1,11.95,2019-10-02 17:19:00,201 6th St, New York City,NY,10001 +261217,AAA Batteries (4-pack),1,2.99,2019-10-19 22:25:00,579 Chestnut St, Seattle,WA,98101 +261218,USB-C Charging Cable,1,11.95,2019-10-11 10:59:00,398 4th St, New York City,NY,10001 +261219,Wired Headphones,1,11.99,2019-10-24 11:28:00,276 North St, New York City,NY,10001 +261220,USB-C Charging Cable,1,11.95,2019-10-29 05:48:00,578 Ridge St, Boston,MA,02215 +261221,Google Phone,1,600.0,2019-10-18 21:49:00,883 Maple St, Los Angeles,CA,90001 +261222,USB-C Charging Cable,1,11.95,2019-10-17 19:20:00,2 Park St, San Francisco,CA,94016 +261223,Wired Headphones,1,11.99,2019-10-20 19:25:00,260 5th St, Los Angeles,CA,90001 +261224,AA Batteries (4-pack),1,3.84,2019-10-06 10:53:00,605 Ridge St, Los Angeles,CA,90001 +261225,Macbook Pro Laptop,1,1700.0,2019-10-29 05:33:00,36 Cherry St, Dallas,TX,75001 +261226,Wired Headphones,1,11.99,2019-10-14 18:55:00,376 Lincoln St, San Francisco,CA,94016 +261227,Google Phone,1,600.0,2019-10-01 12:23:00,622 Elm St, Boston,MA,02215 +261228,USB-C Charging Cable,1,11.95,2019-10-17 09:11:00,800 South St, San Francisco,CA,94016 +261229,Macbook Pro Laptop,1,1700.0,2019-10-06 11:05:00,725 8th St, Boston,MA,02215 +261230,34in Ultrawide Monitor,1,379.99,2019-10-06 11:13:00,839 South St, San Francisco,CA,94016 +261231,Wired Headphones,1,11.99,2019-10-10 09:44:00,410 Meadow St, Boston,MA,02215 +261232,AA Batteries (4-pack),1,3.84,2019-10-19 11:00:00,830 Center St, Dallas,TX,75001 +261233,iPhone,1,700.0,2019-10-24 11:33:00,754 Hill St, San Francisco,CA,94016 +261234,27in 4K Gaming Monitor,1,389.99,2019-10-23 14:36:00,171 Walnut St, San Francisco,CA,94016 +261235,27in 4K Gaming Monitor,1,389.99,2019-10-16 12:23:00,873 8th St, San Francisco,CA,94016 +261236,Bose SoundSport Headphones,1,99.99,2019-10-20 00:35:00,754 Main St, Boston,MA,02215 +261237,20in Monitor,1,109.99,2019-10-01 12:08:00,376 West St, San Francisco,CA,94016 +261238,USB-C Charging Cable,1,11.95,2019-10-28 12:37:00,826 Jefferson St, Seattle,WA,98101 +261239,Flatscreen TV,1,300.0,2019-10-17 13:21:00,320 Center St, Los Angeles,CA,90001 +261240,Google Phone,1,600.0,2019-10-22 18:21:00,758 Maple St, San Francisco,CA,94016 +261240,USB-C Charging Cable,1,11.95,2019-10-22 18:21:00,758 Maple St, San Francisco,CA,94016 +261241,AAA Batteries (4-pack),1,2.99,2019-10-17 15:52:00,909 9th St, New York City,NY,10001 +261242,Apple Airpods Headphones,1,150.0,2019-10-23 14:12:00,439 Main St, Seattle,WA,98101 +261243,Lightning Charging Cable,1,14.95,2019-10-21 19:26:00,461 Lincoln St, New York City,NY,10001 +261244,Flatscreen TV,1,300.0,2019-10-20 13:00:00,803 Jefferson St, Atlanta,GA,30301 +261245,Lightning Charging Cable,1,14.95,2019-10-22 17:53:00,779 Park St, Boston,MA,02215 +261246,Flatscreen TV,1,300.0,2019-10-04 16:52:00,788 4th St, Boston,MA,02215 +261247,AA Batteries (4-pack),1,3.84,2019-10-07 06:02:00,786 Adams St, San Francisco,CA,94016 +261248,Wired Headphones,1,11.99,2019-10-18 15:12:00,938 Center St, Portland,OR,97035 +261249,Wired Headphones,1,11.99,2019-10-07 17:01:00,519 Church St, Seattle,WA,98101 +261250,Flatscreen TV,1,300.0,2019-10-26 11:32:00,469 Jackson St, New York City,NY,10001 +261251,Google Phone,1,600.0,2019-10-25 15:20:00,541 Washington St, San Francisco,CA,94016 +261252,USB-C Charging Cable,2,11.95,2019-10-31 04:37:00,212 Center St, San Francisco,CA,94016 +261253,20in Monitor,1,109.99,2019-10-08 10:42:00,387 South St, Seattle,WA,98101 +261254,Lightning Charging Cable,1,14.95,2019-10-09 22:16:00,679 Chestnut St, San Francisco,CA,94016 +261255,Macbook Pro Laptop,1,1700.0,2019-10-15 18:03:00,655 Dogwood St, San Francisco,CA,94016 +261256,AAA Batteries (4-pack),1,2.99,2019-10-07 11:42:00,11 Cherry St, San Francisco,CA,94016 +261257,AA Batteries (4-pack),2,3.84,2019-10-15 17:43:00,220 Maple St, New York City,NY,10001 +261258,Bose SoundSport Headphones,1,99.99,2019-10-21 17:39:00,706 Jefferson St, New York City,NY,10001 +261259,Lightning Charging Cable,1,14.95,2019-10-11 20:56:00,617 River St, Portland,OR,97035 +261260,iPhone,1,700.0,2019-10-29 13:26:00,283 Lincoln St, New York City,NY,10001 +261261,AAA Batteries (4-pack),1,2.99,2019-10-03 21:26:00,862 River St, Los Angeles,CA,90001 +261262,27in 4K Gaming Monitor,1,389.99,2019-10-24 11:06:00,172 Lake St, Dallas,TX,75001 +261263,USB-C Charging Cable,1,11.95,2019-10-22 14:37:00,810 6th St, San Francisco,CA,94016 +261264,27in 4K Gaming Monitor,1,389.99,2019-10-01 08:25:00,786 9th St, Atlanta,GA,30301 +261265,AA Batteries (4-pack),1,3.84,2019-10-07 07:57:00,151 5th St, San Francisco,CA,94016 +261266,AA Batteries (4-pack),3,3.84,2019-10-23 19:30:00,866 Jackson St, Seattle,WA,98101 +261267,27in FHD Monitor,1,149.99,2019-10-16 23:58:00,176 Dogwood St, Dallas,TX,75001 +261268,AAA Batteries (4-pack),2,2.99,2019-10-14 04:59:00,837 Park St, San Francisco,CA,94016 +261269,Lightning Charging Cable,1,14.95,2019-10-07 13:05:00,169 South St, Los Angeles,CA,90001 +261270,Wired Headphones,2,11.99,2019-10-26 11:02:00,920 12th St, San Francisco,CA,94016 +261271,AAA Batteries (4-pack),1,2.99,2019-10-08 19:38:00,789 Church St, Portland,OR,97035 +261272,AA Batteries (4-pack),1,3.84,2019-10-26 12:23:00,56 Sunset St, Dallas,TX,75001 +261273,20in Monitor,1,109.99,2019-10-28 10:14:00,27 Dogwood St, Portland,OR,97035 +261274,AAA Batteries (4-pack),1,2.99,2019-10-26 18:04:00,109 7th St, Boston,MA,02215 +261275,USB-C Charging Cable,1,11.95,2019-10-29 02:19:00,670 Jackson St, Atlanta,GA,30301 +261276,AA Batteries (4-pack),1,3.84,2019-10-05 13:25:00,251 Lake St, New York City,NY,10001 +261277,AAA Batteries (4-pack),2,2.99,2019-10-30 17:23:00,120 Jefferson St, Atlanta,GA,30301 +261278,Wired Headphones,1,11.99,2019-10-08 18:44:00,68 14th St, New York City,NY,10001 +261279,34in Ultrawide Monitor,1,379.99,2019-10-09 09:35:00,606 4th St, Portland,OR,97035 +261280,Macbook Pro Laptop,1,1700.0,2019-10-29 10:06:00,25 Lake St, Dallas,TX,75001 +261281,AA Batteries (4-pack),1,3.84,2019-10-04 13:41:00,854 Pine St, Boston,MA,02215 +261282,USB-C Charging Cable,2,11.95,2019-10-21 23:12:00,363 Center St, Portland,OR,97035 +261283,20in Monitor,1,109.99,2019-10-29 14:44:00,374 5th St, New York City,NY,10001 +261284,Google Phone,1,600.0,2019-10-31 06:56:00,764 14th St, Dallas,TX,75001 +261284,USB-C Charging Cable,1,11.95,2019-10-31 06:56:00,764 14th St, Dallas,TX,75001 +261285,27in 4K Gaming Monitor,1,389.99,2019-10-28 00:03:00,108 Lincoln St, San Francisco,CA,94016 +261286,Apple Airpods Headphones,1,150.0,2019-10-26 00:10:00,292 2nd St, San Francisco,CA,94016 +261287,USB-C Charging Cable,1,11.95,2019-10-30 10:40:00,339 Meadow St, Seattle,WA,98101 +261288,AAA Batteries (4-pack),4,2.99,2019-10-16 11:49:00,512 West St, Portland,OR,97035 +261289,Lightning Charging Cable,1,14.95,2019-10-26 18:28:00,527 Cherry St, San Francisco,CA,94016 +261290,20in Monitor,1,109.99,2019-10-16 13:04:00,210 6th St, Portland,OR,97035 +261291,Lightning Charging Cable,1,14.95,2019-10-23 16:22:00,643 1st St, San Francisco,CA,94016 +261292,Apple Airpods Headphones,1,150.0,2019-10-27 13:31:00,613 Center St, Atlanta,GA,30301 +261293,AAA Batteries (4-pack),1,2.99,2019-10-03 15:58:00,660 Cedar St, San Francisco,CA,94016 +261294,USB-C Charging Cable,1,11.95,2019-10-05 13:35:00,871 Cedar St, Boston,MA,02215 +261295,Wired Headphones,1,11.99,2019-10-28 21:18:00,802 Lake St, Los Angeles,CA,90001 +261296,USB-C Charging Cable,1,11.95,2019-10-09 23:33:00,731 Hickory St, San Francisco,CA,94016 +261297,Lightning Charging Cable,1,14.95,2019-10-21 15:42:00,362 Lakeview St, Portland,OR,97035 +261298,AA Batteries (4-pack),1,3.84,2019-10-26 12:17:00,463 River St, Seattle,WA,98101 +261299,Wired Headphones,1,11.99,2019-10-19 19:53:00,572 Maple St, Boston,MA,02215 +261300,Lightning Charging Cable,1,14.95,2019-10-21 11:26:00,902 River St, Seattle,WA,98101 +261301,iPhone,1,700.0,2019-10-18 20:54:00,625 Willow St, Los Angeles,CA,90001 +261301,Apple Airpods Headphones,1,150.0,2019-10-18 20:54:00,625 Willow St, Los Angeles,CA,90001 +261302,Lightning Charging Cable,1,14.95,2019-10-16 11:01:00,763 2nd St, Los Angeles,CA,90001 +261303,Lightning Charging Cable,1,14.95,2019-10-28 00:33:00,940 Main St, San Francisco,CA,94016 +261304,Wired Headphones,1,11.99,2019-10-14 23:07:00,875 Lake St, Los Angeles,CA,90001 +261305,Lightning Charging Cable,1,14.95,2019-10-17 12:14:00,46 Forest St, Los Angeles,CA,90001 +261306,Flatscreen TV,1,300.0,2019-10-15 16:12:00,305 Walnut St, Boston,MA,02215 +261307,Lightning Charging Cable,1,14.95,2019-10-17 22:50:00,730 10th St, New York City,NY,10001 +261308,27in FHD Monitor,1,149.99,2019-10-20 12:21:00,443 Main St, San Francisco,CA,94016 +261309,Apple Airpods Headphones,1,150.0,2019-10-07 09:32:00,921 Hill St, Portland,OR,97035 +261310,Apple Airpods Headphones,1,150.0,2019-10-19 14:16:00,865 Lakeview St, Dallas,TX,75001 +261311,Wired Headphones,1,11.99,2019-10-14 06:24:00,520 Chestnut St, Los Angeles,CA,90001 +261312,iPhone,1,700.0,2019-10-16 19:52:00,774 Walnut St, New York City,NY,10001 +261313,27in FHD Monitor,1,149.99,2019-10-31 02:03:00,778 7th St, Atlanta,GA,30301 +261314,Apple Airpods Headphones,1,150.0,2019-10-21 13:44:00,365 Cedar St, San Francisco,CA,94016 +261315,34in Ultrawide Monitor,1,379.99,2019-10-14 19:05:00,29 Cherry St, Portland,OR,97035 +261316,USB-C Charging Cable,1,11.95,2019-10-07 09:07:00,498 Washington St, San Francisco,CA,94016 +261317,ThinkPad Laptop,1,999.99,2019-10-29 17:04:00,869 Meadow St, Los Angeles,CA,90001 +261318,Bose SoundSport Headphones,1,99.99,2019-10-13 17:27:00,700 Walnut St, San Francisco,CA,94016 +261319,Google Phone,1,600.0,2019-10-22 13:44:00,13 Washington St, San Francisco,CA,94016 +261320,Wired Headphones,1,11.99,2019-10-29 14:08:00,300 Lakeview St, Portland,OR,97035 +261321,USB-C Charging Cable,1,11.95,2019-10-15 09:18:00,452 Cherry St, Los Angeles,CA,90001 +261322,AA Batteries (4-pack),1,3.84,2019-10-03 14:22:00,371 Meadow St, San Francisco,CA,94016 +261323,Wired Headphones,1,11.99,2019-10-08 11:58:00,135 10th St, Atlanta,GA,30301 +261324,Wired Headphones,1,11.99,2019-10-31 13:12:00,848 Ridge St, Portland,OR,97035 +261325,AA Batteries (4-pack),1,3.84,2019-10-15 14:17:00,666 Elm St, Seattle,WA,98101 +261326,27in 4K Gaming Monitor,1,389.99,2019-10-14 16:26:00,688 South St, Los Angeles,CA,90001 +261327,Bose SoundSport Headphones,1,99.99,2019-10-26 00:09:00,485 Lakeview St, San Francisco,CA,94016 +261328,iPhone,1,700.0,2019-10-27 10:08:00,150 Highland St, Boston,MA,02215 +261329,34in Ultrawide Monitor,1,379.99,2019-10-09 11:08:00,790 4th St, Boston,MA,02215 +261330,Wired Headphones,1,11.99,2019-10-29 14:05:00,14 Johnson St, Austin,TX,73301 +261331,20in Monitor,1,109.99,2019-10-16 12:41:00,115 1st St, Seattle,WA,98101 +261332,Apple Airpods Headphones,1,150.0,2019-10-19 17:38:00,642 Highland St, Los Angeles,CA,90001 +261333,AAA Batteries (4-pack),2,2.99,2019-10-10 02:35:00,34 Main St, Boston,MA,02215 +261334,27in 4K Gaming Monitor,1,389.99,2019-10-24 21:15:00,777 Hill St, Los Angeles,CA,90001 +261335,AA Batteries (4-pack),1,3.84,2019-10-29 13:29:00,832 Sunset St, Los Angeles,CA,90001 +261336,AAA Batteries (4-pack),2,2.99,2019-10-27 18:14:00,687 Walnut St, San Francisco,CA,94016 +261337,AA Batteries (4-pack),1,3.84,2019-10-11 08:45:00,405 Hill St, Los Angeles,CA,90001 +261338,Google Phone,1,600.0,2019-10-15 15:32:00,606 West St, Boston,MA,02215 +261339,AA Batteries (4-pack),3,3.84,2019-10-15 20:43:00,195 13th St, San Francisco,CA,94016 +261340,27in FHD Monitor,1,149.99,2019-10-20 17:39:00,70 6th St, Dallas,TX,75001 +261341,Lightning Charging Cable,1,14.95,2019-10-07 09:02:00,36 12th St, Los Angeles,CA,90001 +261342,Wired Headphones,1,11.99,2019-10-22 05:04:00,468 Cedar St, Boston,MA,02215 +261343,AAA Batteries (4-pack),1,2.99,2019-10-10 21:54:00,402 14th St, Atlanta,GA,30301 +261344,USB-C Charging Cable,1,11.95,2019-10-04 10:05:00,952 Center St, New York City,NY,10001 +261345,Lightning Charging Cable,1,14.95,2019-10-04 22:00:00,62 14th St, Atlanta,GA,30301 +261346,Wired Headphones,1,11.99,2019-10-14 19:04:00,374 Sunset St, San Francisco,CA,94016 +261347,AAA Batteries (4-pack),3,2.99,2019-10-28 14:15:00,907 8th St, Seattle,WA,98101 +261348,27in FHD Monitor,1,149.99,2019-10-30 17:36:00,22 Jefferson St, Seattle,WA,98101 +261349,Lightning Charging Cable,1,14.95,2019-10-18 12:44:00,297 South St, San Francisco,CA,94016 +261350,AAA Batteries (4-pack),1,2.99,2019-10-17 01:18:00,272 Jackson St, Atlanta,GA,30301 +261351,27in FHD Monitor,1,149.99,2019-10-26 20:29:00,515 5th St, Los Angeles,CA,90001 +261352,AA Batteries (4-pack),1,3.84,2019-10-14 11:16:00,504 Wilson St, New York City,NY,10001 +261353,ThinkPad Laptop,1,999.99,2019-10-11 10:27:00,316 9th St, Austin,TX,73301 +261354,Lightning Charging Cable,1,14.95,2019-10-09 21:38:00,768 Hill St, Los Angeles,CA,90001 +261355,Flatscreen TV,1,300.0,2019-10-28 19:42:00,329 1st St, Portland,OR,97035 +261356,Lightning Charging Cable,1,14.95,2019-10-13 16:20:00,454 Church St, Boston,MA,02215 +261357,USB-C Charging Cable,1,11.95,2019-10-31 22:11:00,186 River St, Dallas,TX,75001 +261358,Apple Airpods Headphones,1,150.0,2019-10-04 08:17:00,587 9th St, Atlanta,GA,30301 +261359,iPhone,1,700.0,2019-10-27 08:36:00,180 Church St, Los Angeles,CA,90001 +261360,27in FHD Monitor,1,149.99,2019-10-31 10:45:00,952 Park St, Atlanta,GA,30301 +261361,Bose SoundSport Headphones,1,99.99,2019-10-19 10:05:00,729 7th St, New York City,NY,10001 +261362,Flatscreen TV,1,300.0,2019-10-20 17:45:00,867 Adams St, Los Angeles,CA,90001 +261363,AA Batteries (4-pack),1,3.84,2019-10-21 07:31:00,855 14th St, Portland,OR,97035 +261364,Wired Headphones,1,11.99,2019-10-31 18:39:00,820 Johnson St, Dallas,TX,75001 +261365,Lightning Charging Cable,1,14.95,2019-10-27 21:52:00,245 Madison St, San Francisco,CA,94016 +261366,Flatscreen TV,1,300.0,2019-10-24 16:28:00,728 Center St, Atlanta,GA,30301 +261367,Lightning Charging Cable,1,14.95,2019-10-23 21:36:00,860 Forest St, Los Angeles,CA,90001 +261368,Wired Headphones,1,11.99,2019-10-26 15:26:00,887 Forest St, Los Angeles,CA,90001 +261369,iPhone,1,700.0,2019-10-29 13:43:00,86 Jackson St, San Francisco,CA,94016 +261370,USB-C Charging Cable,2,11.95,2019-10-20 10:52:00,552 Spruce St, Los Angeles,CA,90001 +261371,USB-C Charging Cable,1,11.95,2019-10-13 22:31:00,805 Dogwood St, Seattle,WA,98101 +261372,27in 4K Gaming Monitor,1,389.99,2019-10-24 16:22:00,151 West St, Dallas,TX,75001 +261373,Google Phone,1,600.0,2019-10-27 01:28:00,72 Sunset St, San Francisco,CA,94016 +261374,AAA Batteries (4-pack),2,2.99,2019-10-11 21:19:00,18 Wilson St, Portland,OR,97035 +261375,27in FHD Monitor,1,149.99,2019-10-18 19:33:00,448 Meadow St, San Francisco,CA,94016 +261376,Macbook Pro Laptop,1,1700.0,2019-10-20 14:18:00,167 Lakeview St, Los Angeles,CA,90001 +261377,Wired Headphones,1,11.99,2019-10-01 13:05:00,579 Dogwood St, Seattle,WA,98101 +261378,Bose SoundSport Headphones,1,99.99,2019-10-19 12:02:00,489 Washington St, Austin,TX,73301 +261379,20in Monitor,1,109.99,2019-10-19 19:46:00,537 4th St, New York City,NY,10001 +261380,Wired Headphones,1,11.99,2019-10-14 19:48:00,182 5th St, San Francisco,CA,94016 +261381,AAA Batteries (4-pack),2,2.99,2019-10-04 19:14:00,544 Hill St, Atlanta,GA,30301 +261382,ThinkPad Laptop,1,999.99,2019-10-24 06:36:00,866 Dogwood St, Seattle,WA,98101 +261383,iPhone,1,700.0,2019-10-18 18:18:00,646 Meadow St, New York City,NY,10001 +261384,Bose SoundSport Headphones,2,99.99,2019-10-21 22:46:00,624 10th St, Portland,ME,04101 +261385,Wired Headphones,1,11.99,2019-10-18 16:05:00,693 10th St, Seattle,WA,98101 +261386,AA Batteries (4-pack),3,3.84,2019-10-13 16:27:00,617 Jefferson St, Portland,OR,97035 +261387,Apple Airpods Headphones,1,150.0,2019-10-04 07:31:00,103 Elm St, San Francisco,CA,94016 +261388,AA Batteries (4-pack),2,3.84,2019-10-26 15:50:00,528 10th St, Dallas,TX,75001 +261389,Flatscreen TV,1,300.0,2019-10-03 12:30:00,498 Main St, Boston,MA,02215 +261390,Wired Headphones,1,11.99,2019-10-08 10:08:00,16 Highland St, San Francisco,CA,94016 +261391,Bose SoundSport Headphones,1,99.99,2019-10-25 12:27:00,995 10th St, Portland,OR,97035 +261392,Apple Airpods Headphones,1,150.0,2019-10-07 14:29:00,592 Center St, San Francisco,CA,94016 +261393,Apple Airpods Headphones,1,150.0,2019-10-06 19:44:00,179 Sunset St, Portland,OR,97035 +261394,AA Batteries (4-pack),1,3.84,2019-10-22 23:54:00,818 Forest St, Atlanta,GA,30301 +261395,Wired Headphones,1,11.99,2019-10-22 16:21:00,880 12th St, Boston,MA,02215 +261396,Macbook Pro Laptop,1,1700.0,2019-10-07 11:26:00,722 West St, Austin,TX,73301 +261397,USB-C Charging Cable,1,11.95,2019-10-16 08:26:00,410 Johnson St, San Francisco,CA,94016 +261398,Wired Headphones,1,11.99,2019-10-01 15:24:00,755 Sunset St, New York City,NY,10001 +261399,AA Batteries (4-pack),1,3.84,2019-10-18 20:36:00,980 Elm St, Seattle,WA,98101 +261400,iPhone,1,700.0,2019-10-11 14:36:00,336 Highland St, San Francisco,CA,94016 +261400,Wired Headphones,1,11.99,2019-10-11 14:36:00,336 Highland St, San Francisco,CA,94016 +261401,Bose SoundSport Headphones,1,99.99,2019-10-19 19:25:00,559 Pine St, Austin,TX,73301 +261402,AA Batteries (4-pack),3,3.84,2019-10-19 20:35:00,9 Ridge St, New York City,NY,10001 +261403,AA Batteries (4-pack),1,3.84,2019-10-23 22:02:00,755 Park St, Portland,OR,97035 +261404,27in 4K Gaming Monitor,1,389.99,2019-10-06 16:13:00,710 Chestnut St, Los Angeles,CA,90001 +261405,Flatscreen TV,1,300.0,2019-10-07 17:16:00,418 Adams St, Austin,TX,73301 +261406,Bose SoundSport Headphones,1,99.99,2019-10-19 11:34:00,840 South St, San Francisco,CA,94016 +261407,AAA Batteries (4-pack),1,2.99,2019-10-04 22:22:00,956 Jackson St, Boston,MA,02215 +261408,AA Batteries (4-pack),1,3.84,2019-10-07 13:16:00,2 Cherry St, Boston,MA,02215 +261409,Bose SoundSport Headphones,1,99.99,2019-10-15 11:57:00,258 North St, Atlanta,GA,30301 +261410,AA Batteries (4-pack),2,3.84,2019-10-26 17:23:00,404 13th St, Los Angeles,CA,90001 +261411,27in 4K Gaming Monitor,1,389.99,2019-10-21 09:03:00,329 West St, Los Angeles,CA,90001 +261412,34in Ultrawide Monitor,1,379.99,2019-10-26 17:24:00,421 Main St, Los Angeles,CA,90001 +261413,Google Phone,1,600.0,2019-10-27 11:51:00,756 Maple St, San Francisco,CA,94016 +261414,USB-C Charging Cable,2,11.95,2019-10-12 12:23:00,41 Wilson St, Portland,ME,04101 +261415,USB-C Charging Cable,1,11.95,2019-10-15 16:53:00,708 Ridge St, Austin,TX,73301 +261416,Bose SoundSport Headphones,1,99.99,2019-10-21 22:10:00,440 North St, San Francisco,CA,94016 +261417,AA Batteries (4-pack),1,3.84,2019-10-19 12:24:00,738 Cherry St, Los Angeles,CA,90001 +261418,Google Phone,1,600.0,2019-10-26 08:40:00,848 Dogwood St, Portland,OR,97035 +261419,Lightning Charging Cable,1,14.95,2019-10-05 10:16:00,932 North St, San Francisco,CA,94016 +261420,ThinkPad Laptop,1,999.99,2019-10-18 13:21:00,676 Hill St, Boston,MA,02215 +261421,AAA Batteries (4-pack),1,2.99,2019-10-28 19:45:00,352 Jackson St, Seattle,WA,98101 +261422,Flatscreen TV,1,300.0,2019-10-26 00:11:00,274 13th St, Los Angeles,CA,90001 +261423,USB-C Charging Cable,1,11.95,2019-10-14 21:40:00,875 Hickory St, Dallas,TX,75001 +261424,AAA Batteries (4-pack),1,2.99,2019-10-20 17:02:00,617 West St, San Francisco,CA,94016 +261425,USB-C Charging Cable,2,11.95,2019-10-17 12:44:00,736 Dogwood St, San Francisco,CA,94016 +261426,Apple Airpods Headphones,1,150.0,2019-10-07 18:33:00,412 Hickory St, San Francisco,CA,94016 +261427,Lightning Charging Cable,1,14.95,2019-10-09 17:56:00,917 Hickory St, Atlanta,GA,30301 +261428,AAA Batteries (4-pack),1,2.99,2019-10-08 11:03:00,517 Willow St, Seattle,WA,98101 +261429,AA Batteries (4-pack),1,3.84,2019-10-29 13:47:00,266 Forest St, Boston,MA,02215 +261430,Bose SoundSport Headphones,1,99.99,2019-10-03 00:45:00,960 Park St, Austin,TX,73301 +261431,AA Batteries (4-pack),1,3.84,2019-10-07 14:24:00,788 Jefferson St, Portland,OR,97035 +261432,AAA Batteries (4-pack),1,2.99,2019-10-24 08:40:00,675 Hill St, Boston,MA,02215 +261433,27in 4K Gaming Monitor,1,389.99,2019-10-08 12:41:00,521 Cherry St, Dallas,TX,75001 +261434,USB-C Charging Cable,1,11.95,2019-10-31 00:51:00,668 Cherry St, Austin,TX,73301 +261435,Macbook Pro Laptop,1,1700.0,2019-10-22 10:45:00,813 Lincoln St, Los Angeles,CA,90001 +261436,Apple Airpods Headphones,1,150.0,2019-10-06 17:21:00,827 Ridge St, San Francisco,CA,94016 +261437,Wired Headphones,1,11.99,2019-10-25 21:20:00,713 6th St, Dallas,TX,75001 +261438,USB-C Charging Cable,1,11.95,2019-10-07 17:51:00,677 8th St, Los Angeles,CA,90001 +261439,Lightning Charging Cable,1,14.95,2019-10-26 20:12:00,468 Spruce St, Atlanta,GA,30301 +261440,USB-C Charging Cable,1,11.95,2019-10-08 15:00:00,90 12th St, Atlanta,GA,30301 +261441,Wired Headphones,1,11.99,2019-10-21 19:16:00,100 Forest St, Portland,OR,97035 +261442,AAA Batteries (4-pack),8,2.99,2019-10-16 20:31:00,36 Center St, Boston,MA,02215 +261443,AAA Batteries (4-pack),3,2.99,2019-10-10 16:36:00,63 Park St, Austin,TX,73301 +261444,ThinkPad Laptop,1,999.99,2019-10-27 02:44:00,250 Hill St, New York City,NY,10001 +261445,AA Batteries (4-pack),1,3.84,2019-10-31 11:37:00,15 West St, New York City,NY,10001 +261446,20in Monitor,1,109.99,2019-10-16 19:22:00,378 Park St, New York City,NY,10001 +261447,Macbook Pro Laptop,1,1700.0,2019-10-04 16:28:00,628 Wilson St, New York City,NY,10001 +261448,Apple Airpods Headphones,1,150.0,2019-10-11 15:36:00,873 Lakeview St, Los Angeles,CA,90001 +261449,Wired Headphones,1,11.99,2019-10-25 08:21:00,651 Main St, Los Angeles,CA,90001 +261450,USB-C Charging Cable,1,11.95,2019-10-27 11:44:00,784 12th St, Seattle,WA,98101 +261451,Bose SoundSport Headphones,1,99.99,2019-10-20 10:21:00,289 Washington St, Seattle,WA,98101 +261452,Bose SoundSport Headphones,1,99.99,2019-10-09 11:35:00,127 Lake St, Seattle,WA,98101 +261453,USB-C Charging Cable,1,11.95,2019-10-10 12:57:00,838 Willow St, Dallas,TX,75001 +261454,Apple Airpods Headphones,1,150.0,2019-10-23 11:06:00,376 Johnson St, Los Angeles,CA,90001 +261455,Lightning Charging Cable,1,14.95,2019-10-15 17:38:00,460 Highland St, New York City,NY,10001 +261456,Apple Airpods Headphones,1,150.0,2019-10-31 15:39:00,131 River St, New York City,NY,10001 +261457,Apple Airpods Headphones,1,150.0,2019-10-05 09:25:00,989 Dogwood St, Los Angeles,CA,90001 +261458,Bose SoundSport Headphones,1,99.99,2019-10-12 22:13:00,269 Dogwood St, Los Angeles,CA,90001 +261459,AA Batteries (4-pack),1,3.84,2019-10-26 20:24:00,245 Lincoln St, Atlanta,GA,30301 +261460,USB-C Charging Cable,1,11.95,2019-10-14 19:44:00,322 Wilson St, Los Angeles,CA,90001 +261461,ThinkPad Laptop,1,999.99,2019-10-10 15:31:00,522 Pine St, Atlanta,GA,30301 +261462,USB-C Charging Cable,2,11.95,2019-10-21 05:43:00,327 Dogwood St, San Francisco,CA,94016 +261463,USB-C Charging Cable,1,11.95,2019-10-11 00:24:00,78 Park St, Portland,OR,97035 +261464,Lightning Charging Cable,1,14.95,2019-10-01 15:18:00,339 West St, San Francisco,CA,94016 +261465,20in Monitor,1,109.99,2019-10-14 10:38:00,90 Church St, New York City,NY,10001 +261466,iPhone,1,700.0,2019-10-04 16:48:00,221 Main St, Portland,OR,97035 +261466,Wired Headphones,2,11.99,2019-10-04 16:48:00,221 Main St, Portland,OR,97035 +261467,27in 4K Gaming Monitor,1,389.99,2019-10-13 18:00:00,14 Cedar St, Boston,MA,02215 +261468,Apple Airpods Headphones,1,150.0,2019-10-02 18:55:00,544 North St, San Francisco,CA,94016 +261469,USB-C Charging Cable,1,11.95,2019-10-09 13:09:00,980 Walnut St, Austin,TX,73301 +261470,Vareebadd Phone,1,400.0,2019-10-07 13:58:00,548 West St, Portland,OR,97035 +261470,USB-C Charging Cable,2,11.95,2019-10-07 13:58:00,548 West St, Portland,OR,97035 +261471,USB-C Charging Cable,1,11.95,2019-10-28 10:38:00,551 Sunset St, Los Angeles,CA,90001 +261472,Lightning Charging Cable,1,14.95,2019-10-09 15:14:00,667 Lakeview St, Austin,TX,73301 +261473,Wired Headphones,1,11.99,2019-10-07 16:24:00,662 Lincoln St, Los Angeles,CA,90001 +261474,Lightning Charging Cable,1,14.95,2019-10-25 11:54:00,41 Maple St, Los Angeles,CA,90001 +261475,AA Batteries (4-pack),1,3.84,2019-10-08 17:31:00,584 Wilson St, New York City,NY,10001 +261476,Lightning Charging Cable,1,14.95,2019-10-29 21:47:00,946 Center St, Austin,TX,73301 +261477,Apple Airpods Headphones,1,150.0,2019-10-21 19:59:00,128 13th St, Dallas,TX,75001 +261478,iPhone,1,700.0,2019-10-08 20:04:00,398 13th St, Austin,TX,73301 +261479,Vareebadd Phone,1,400.0,2019-10-30 21:10:00,59 12th St, Dallas,TX,75001 +261480,Apple Airpods Headphones,1,150.0,2019-10-13 09:39:00,902 9th St, Austin,TX,73301 +261481,Google Phone,1,600.0,2019-10-19 17:25:00,881 7th St, Los Angeles,CA,90001 +261482,Flatscreen TV,1,300.0,2019-10-09 18:58:00,145 Cedar St, San Francisco,CA,94016 +261483,Bose SoundSport Headphones,1,99.99,2019-10-13 13:42:00,462 10th St, Seattle,WA,98101 +261484,Lightning Charging Cable,1,14.95,2019-10-05 14:17:00,782 Meadow St, Dallas,TX,75001 +261485,USB-C Charging Cable,1,11.95,2019-10-01 14:54:00,657 Cedar St, San Francisco,CA,94016 +261486,AA Batteries (4-pack),1,3.84,2019-10-09 16:19:00,402 Cedar St, Seattle,WA,98101 +261487,AAA Batteries (4-pack),3,2.99,2019-10-12 12:36:00,905 Jackson St, Los Angeles,CA,90001 +261488,AA Batteries (4-pack),2,3.84,2019-10-15 10:09:00,212 Madison St, San Francisco,CA,94016 +261489,USB-C Charging Cable,2,11.95,2019-10-15 20:21:00,381 Johnson St, Atlanta,GA,30301 +261490,Google Phone,1,600.0,2019-10-29 16:07:00,993 Highland St, New York City,NY,10001 +261491,27in 4K Gaming Monitor,1,389.99,2019-10-05 12:16:00,518 River St, Atlanta,GA,30301 +261492,AA Batteries (4-pack),1,3.84,2019-10-17 09:35:00,590 Walnut St, San Francisco,CA,94016 +261493,Lightning Charging Cable,1,14.95,2019-10-31 12:05:00,32 1st St, Los Angeles,CA,90001 +261494,Bose SoundSport Headphones,1,99.99,2019-10-17 14:08:00,946 Cedar St, Austin,TX,73301 +261495,Apple Airpods Headphones,1,150.0,2019-10-11 09:32:00,609 Adams St, New York City,NY,10001 +261496,iPhone,1,700.0,2019-10-29 14:35:00,67 Wilson St, Atlanta,GA,30301 +261496,Wired Headphones,1,11.99,2019-10-29 14:35:00,67 Wilson St, Atlanta,GA,30301 +261497,Google Phone,1,600.0,2019-10-09 21:14:00,649 Meadow St, Dallas,TX,75001 +261498,Flatscreen TV,1,300.0,2019-10-19 11:10:00,605 Jefferson St, Los Angeles,CA,90001 +261499,ThinkPad Laptop,1,999.99,2019-10-11 14:05:00,27 Wilson St, Dallas,TX,75001 +261500,AA Batteries (4-pack),3,3.84,2019-10-31 10:01:00,289 7th St, Boston,MA,02215 +261501,Lightning Charging Cable,1,14.95,2019-10-20 10:01:00,969 Ridge St, Austin,TX,73301 +261502,Bose SoundSport Headphones,1,99.99,2019-10-05 07:21:00,469 Lake St, San Francisco,CA,94016 +261503,Lightning Charging Cable,1,14.95,2019-10-08 12:22:00,203 Jefferson St, Portland,OR,97035 +261503,20in Monitor,1,109.99,2019-10-08 12:22:00,203 Jefferson St, Portland,OR,97035 +261504,USB-C Charging Cable,1,11.95,2019-10-21 10:01:00,241 Cedar St, Boston,MA,02215 +261505,USB-C Charging Cable,1,11.95,2019-10-12 13:31:00,574 North St, New York City,NY,10001 +261506,iPhone,1,700.0,2019-10-06 23:50:00,2 Forest St, Dallas,TX,75001 +261507,USB-C Charging Cable,1,11.95,2019-10-18 16:53:00,180 Spruce St, Los Angeles,CA,90001 +261508,Macbook Pro Laptop,1,1700.0,2019-10-12 01:34:00,663 Meadow St, New York City,NY,10001 +261509,Flatscreen TV,1,300.0,2019-10-14 11:39:00,919 Wilson St, Boston,MA,02215 +261510,Apple Airpods Headphones,1,150.0,2019-10-20 12:19:00,883 Pine St, Seattle,WA,98101 +261511,AA Batteries (4-pack),1,3.84,2019-10-28 00:52:00,456 Meadow St, New York City,NY,10001 +261512,Bose SoundSport Headphones,1,99.99,2019-10-10 20:32:00,408 Church St, San Francisco,CA,94016 +261513,USB-C Charging Cable,1,11.95,2019-10-27 14:11:00,865 South St, San Francisco,CA,94016 +261514,USB-C Charging Cable,1,11.95,2019-10-31 06:10:00,72 Spruce St, San Francisco,CA,94016 +261515,34in Ultrawide Monitor,1,379.99,2019-10-01 16:39:00,51 Lakeview St, Los Angeles,CA,90001 +261516,AAA Batteries (4-pack),1,2.99,2019-10-02 20:50:00,280 Johnson St, San Francisco,CA,94016 +261517,Wired Headphones,1,11.99,2019-10-28 18:43:00,39 Willow St, Dallas,TX,75001 +261518,USB-C Charging Cable,1,11.95,2019-10-06 02:00:00,755 Lakeview St, Los Angeles,CA,90001 +261519,AA Batteries (4-pack),1,3.84,2019-10-11 18:02:00,182 Lincoln St, San Francisco,CA,94016 +261520,Macbook Pro Laptop,1,1700.0,2019-10-29 23:11:00,628 Maple St, Dallas,TX,75001 +261521,AA Batteries (4-pack),1,3.84,2019-10-13 09:56:00,431 Lake St, Dallas,TX,75001 +261522,Lightning Charging Cable,1,14.95,2019-10-30 18:59:00,482 14th St, Austin,TX,73301 +261523,AA Batteries (4-pack),1,3.84,2019-10-17 12:55:00,997 5th St, Austin,TX,73301 +261524,Google Phone,1,600.0,2019-10-27 14:14:00,812 Highland St, Boston,MA,02215 +261525,AA Batteries (4-pack),1,3.84,2019-10-30 12:03:00,892 13th St, Los Angeles,CA,90001 +261526,AA Batteries (4-pack),1,3.84,2019-10-14 16:45:00,54 Chestnut St, Los Angeles,CA,90001 +261527,AA Batteries (4-pack),2,3.84,2019-10-26 18:15:00,346 Wilson St, Boston,MA,02215 +261528,Lightning Charging Cable,1,14.95,2019-10-02 21:59:00,121 North St, Boston,MA,02215 +261529,Lightning Charging Cable,1,14.95,2019-10-25 22:31:00,595 Cherry St, Portland,OR,97035 +261530,Bose SoundSport Headphones,1,99.99,2019-10-30 21:16:00,876 Pine St, San Francisco,CA,94016 +261531,Apple Airpods Headphones,1,150.0,2019-10-03 19:37:00,642 Hickory St, San Francisco,CA,94016 +261532,Macbook Pro Laptop,1,1700.0,2019-10-10 19:57:00,394 Cedar St, Portland,ME,04101 +261533,Lightning Charging Cable,2,14.95,2019-10-24 08:31:00,245 Walnut St, Los Angeles,CA,90001 +261534,Lightning Charging Cable,1,14.95,2019-10-29 20:33:00,646 Elm St, New York City,NY,10001 +261535,iPhone,1,700.0,2019-10-25 16:22:00,885 14th St, Los Angeles,CA,90001 +261535,Wired Headphones,1,11.99,2019-10-25 16:22:00,885 14th St, Los Angeles,CA,90001 +261536,USB-C Charging Cable,1,11.95,2019-10-19 23:05:00,422 Center St, San Francisco,CA,94016 +261537,20in Monitor,1,109.99,2019-10-06 18:42:00,902 Main St, Los Angeles,CA,90001 +261538,AA Batteries (4-pack),1,3.84,2019-10-12 17:23:00,422 Madison St, Portland,OR,97035 +261539,Bose SoundSport Headphones,1,99.99,2019-10-18 15:52:00,467 Jefferson St, San Francisco,CA,94016 +261540,27in FHD Monitor,1,149.99,2019-10-19 16:13:00,404 10th St, Los Angeles,CA,90001 +261541,Flatscreen TV,1,300.0,2019-10-07 16:47:00,725 Ridge St, New York City,NY,10001 +261542,Flatscreen TV,1,300.0,2019-10-05 17:31:00,951 Adams St, New York City,NY,10001 +261543,iPhone,1,700.0,2019-10-03 16:45:00,246 Pine St, San Francisco,CA,94016 +261543,Lightning Charging Cable,1,14.95,2019-10-03 16:45:00,246 Pine St, San Francisco,CA,94016 +261543,Wired Headphones,1,11.99,2019-10-03 16:45:00,246 Pine St, San Francisco,CA,94016 +261544,AA Batteries (4-pack),1,3.84,2019-10-26 19:53:00,452 9th St, Los Angeles,CA,90001 +261545,USB-C Charging Cable,1,11.95,2019-10-20 21:34:00,225 South St, New York City,NY,10001 +261546,27in 4K Gaming Monitor,1,389.99,2019-10-14 06:43:00,172 Wilson St, Boston,MA,02215 +261547,Apple Airpods Headphones,1,150.0,2019-10-27 12:18:00,109 Elm St, Boston,MA,02215 +261548,Wired Headphones,1,11.99,2019-10-24 21:13:00,302 14th St, San Francisco,CA,94016 +261549,Flatscreen TV,1,300.0,2019-10-14 09:51:00,823 6th St, San Francisco,CA,94016 +261550,Lightning Charging Cable,1,14.95,2019-10-30 09:18:00,379 13th St, San Francisco,CA,94016 +261551,Lightning Charging Cable,1,14.95,2019-10-16 13:23:00,627 Cedar St, San Francisco,CA,94016 +261552,AAA Batteries (4-pack),1,2.99,2019-10-31 10:04:00,570 6th St, New York City,NY,10001 +261553,Wired Headphones,1,11.99,2019-10-22 17:38:00,927 Madison St, Dallas,TX,75001 +261554,USB-C Charging Cable,1,11.95,2019-10-14 21:58:00,139 Walnut St, Dallas,TX,75001 +261555,iPhone,1,700.0,2019-10-27 23:32:00,168 Highland St, Seattle,WA,98101 +261556,iPhone,1,700.0,2019-10-08 16:24:00,141 Madison St, Los Angeles,CA,90001 +261557,34in Ultrawide Monitor,1,379.99,2019-10-09 19:51:00,284 Johnson St, Seattle,WA,98101 +261558,20in Monitor,1,109.99,2019-10-21 05:43:00,79 2nd St, Dallas,TX,75001 +261559,AA Batteries (4-pack),1,3.84,2019-10-13 20:21:00,223 2nd St, Los Angeles,CA,90001 +261560,Lightning Charging Cable,1,14.95,2019-10-10 16:05:00,804 11th St, Dallas,TX,75001 +261561,AAA Batteries (4-pack),1,2.99,2019-10-21 07:32:00,350 10th St, Atlanta,GA,30301 +261562,Lightning Charging Cable,1,14.95,2019-10-01 12:00:00,578 13th St, Boston,MA,02215 +261563,iPhone,1,700.0,2019-10-11 11:46:00,969 Church St, Dallas,TX,75001 +261564,Macbook Pro Laptop,1,1700.0,2019-10-23 01:08:00,486 1st St, Los Angeles,CA,90001 +261565,Wired Headphones,1,11.99,2019-10-30 21:19:00,149 West St, Los Angeles,CA,90001 +261566,Macbook Pro Laptop,1,1700.0,2019-10-30 13:51:00,659 Cedar St, Atlanta,GA,30301 +261567,AAA Batteries (4-pack),1,2.99,2019-10-18 22:52:00,809 Lake St, San Francisco,CA,94016 +261568,Wired Headphones,1,11.99,2019-10-19 20:03:00,399 8th St, San Francisco,CA,94016 +261569,iPhone,1,700.0,2019-10-10 04:03:00,976 8th St, Los Angeles,CA,90001 +261569,Apple Airpods Headphones,1,150.0,2019-10-10 04:03:00,976 8th St, Los Angeles,CA,90001 +261570,AAA Batteries (4-pack),1,2.99,2019-10-09 12:49:00,502 Pine St, Portland,OR,97035 +261571,AA Batteries (4-pack),1,3.84,2019-10-25 19:17:00,930 13th St, Los Angeles,CA,90001 +261572,Lightning Charging Cable,1,14.95,2019-10-14 15:48:00,545 Walnut St, San Francisco,CA,94016 +261573,iPhone,1,700.0,2019-10-01 09:40:00,461 9th St, Atlanta,GA,30301 +261574,iPhone,1,700.0,2019-10-07 21:55:00,883 Walnut St, New York City,NY,10001 +261575,USB-C Charging Cable,1,11.95,2019-10-02 16:45:00,931 Maple St, Atlanta,GA,30301 +261576,Lightning Charging Cable,1,14.95,2019-10-11 08:55:00,85 Adams St, San Francisco,CA,94016 +261577,AA Batteries (4-pack),2,3.84,2019-10-01 17:18:00,941 9th St, Boston,MA,02215 +261578,Wired Headphones,1,11.99,2019-10-15 12:27:00,786 2nd St, Los Angeles,CA,90001 +261579,AA Batteries (4-pack),1,3.84,2019-10-30 12:23:00,393 Church St, Los Angeles,CA,90001 +261580,27in 4K Gaming Monitor,1,389.99,2019-10-11 22:48:00,581 Adams St, New York City,NY,10001 +261581,27in FHD Monitor,1,149.99,2019-10-23 09:52:00,711 Center St, Boston,MA,02215 +261582,Vareebadd Phone,1,400.0,2019-10-04 08:58:00,438 5th St, San Francisco,CA,94016 +261583,Lightning Charging Cable,1,14.95,2019-10-12 20:15:00,287 Walnut St, Los Angeles,CA,90001 +261584,Wired Headphones,1,11.99,2019-10-04 09:12:00,583 Willow St, San Francisco,CA,94016 +261585,20in Monitor,1,109.99,2019-10-09 14:36:00,74 Lakeview St, Atlanta,GA,30301 +261586,AAA Batteries (4-pack),1,2.99,2019-10-11 20:03:00,703 Main St, Los Angeles,CA,90001 +261587,AAA Batteries (4-pack),1,2.99,2019-10-19 15:12:00,751 4th St, Los Angeles,CA,90001 +261588,34in Ultrawide Monitor,1,379.99,2019-10-16 17:10:00,887 Lake St, Boston,MA,02215 +261589,Flatscreen TV,1,300.0,2019-10-25 09:15:00,836 River St, San Francisco,CA,94016 +261590,Flatscreen TV,1,300.0,2019-10-07 22:03:00,851 Sunset St, Atlanta,GA,30301 +261591,USB-C Charging Cable,1,11.95,2019-10-15 14:14:00,77 Dogwood St, San Francisco,CA,94016 +261592,27in 4K Gaming Monitor,1,389.99,2019-10-31 18:34:00,938 Spruce St, Boston,MA,02215 +261593,Wired Headphones,1,11.99,2019-10-04 18:53:00,295 Spruce St, Dallas,TX,75001 +261594,iPhone,1,700.0,2019-10-26 07:43:00,267 Pine St, San Francisco,CA,94016 +261595,AAA Batteries (4-pack),2,2.99,2019-10-22 18:43:00,200 Pine St, San Francisco,CA,94016 +261596,Flatscreen TV,1,300.0,2019-10-12 11:26:00,603 Cedar St, Portland,OR,97035 +261597,34in Ultrawide Monitor,1,379.99,2019-10-18 22:07:00,817 Center St, Dallas,TX,75001 +261598,Bose SoundSport Headphones,1,99.99,2019-10-02 06:11:00,799 14th St, San Francisco,CA,94016 +261599,Bose SoundSport Headphones,1,99.99,2019-10-16 18:17:00,694 Main St, San Francisco,CA,94016 +261600,Lightning Charging Cable,1,14.95,2019-10-06 18:37:00,772 1st St, Los Angeles,CA,90001 +261601,27in FHD Monitor,1,149.99,2019-10-17 20:58:00,218 Meadow St, Boston,MA,02215 +261602,Wired Headphones,1,11.99,2019-10-17 23:51:00,750 Highland St, Seattle,WA,98101 +261603,AAA Batteries (4-pack),1,2.99,2019-10-16 20:32:00,852 Elm St, Dallas,TX,75001 +261604,Apple Airpods Headphones,1,150.0,2019-10-30 20:55:00,703 13th St, Portland,OR,97035 +261605,Lightning Charging Cable,1,14.95,2019-10-04 20:10:00,470 Elm St, Boston,MA,02215 +261606,AA Batteries (4-pack),1,3.84,2019-10-01 07:49:00,945 Hill St, Seattle,WA,98101 +261607,Wired Headphones,1,11.99,2019-10-24 20:23:00,83 6th St, Dallas,TX,75001 +261608,27in FHD Monitor,1,149.99,2019-10-13 09:33:00,823 Jefferson St, Los Angeles,CA,90001 +261609,USB-C Charging Cable,1,11.95,2019-10-11 19:09:00,981 Lake St, Seattle,WA,98101 +261610,Bose SoundSport Headphones,1,99.99,2019-10-30 02:05:00,879 Spruce St, New York City,NY,10001 +261611,27in FHD Monitor,1,149.99,2019-10-27 14:30:00,820 Main St, New York City,NY,10001 +261612,Google Phone,1,600.0,2019-10-03 07:46:00,883 12th St, Portland,OR,97035 +261613,AA Batteries (4-pack),1,3.84,2019-10-07 21:57:00,706 Madison St, Atlanta,GA,30301 +261614,27in 4K Gaming Monitor,1,389.99,2019-10-07 06:46:00,343 West St, San Francisco,CA,94016 +261615,34in Ultrawide Monitor,1,379.99,2019-10-28 12:29:00,98 Chestnut St, Atlanta,GA,30301 +261616,Bose SoundSport Headphones,1,99.99,2019-10-05 16:18:00,931 10th St, Seattle,WA,98101 +261617,Google Phone,1,600.0,2019-10-01 09:01:00,725 Adams St, San Francisco,CA,94016 +261617,USB-C Charging Cable,1,11.95,2019-10-01 09:01:00,725 Adams St, San Francisco,CA,94016 +261618,Lightning Charging Cable,2,14.95,2019-10-30 20:21:00,879 Cedar St, Los Angeles,CA,90001 +261619,34in Ultrawide Monitor,1,379.99,2019-10-25 10:43:00,979 Pine St, Los Angeles,CA,90001 +261620,AA Batteries (4-pack),1,3.84,2019-10-31 13:06:00,853 Hickory St, New York City,NY,10001 +261621,AA Batteries (4-pack),1,3.84,2019-10-31 23:18:00,959 Willow St, New York City,NY,10001 +261622,Apple Airpods Headphones,1,150.0,2019-10-21 21:20:00,215 Sunset St, San Francisco,CA,94016 +261623,iPhone,1,700.0,2019-10-20 20:18:00,775 West St, San Francisco,CA,94016 +261624,USB-C Charging Cable,2,11.95,2019-10-15 20:57:00,158 9th St, Austin,TX,73301 +261625,USB-C Charging Cable,1,11.95,2019-10-17 16:20:00,890 Meadow St, New York City,NY,10001 +261626,Bose SoundSport Headphones,1,99.99,2019-10-19 21:31:00,965 6th St, Austin,TX,73301 +261627,Lightning Charging Cable,1,14.95,2019-10-04 15:58:00,169 2nd St, New York City,NY,10001 +261628,Apple Airpods Headphones,1,150.0,2019-10-19 09:53:00,784 Ridge St, New York City,NY,10001 +261629,AAA Batteries (4-pack),1,2.99,2019-10-31 12:54:00,442 5th St, San Francisco,CA,94016 +261630,27in 4K Gaming Monitor,1,389.99,2019-10-05 12:15:00,323 Cherry St, Seattle,WA,98101 +261631,Apple Airpods Headphones,1,150.0,2019-10-15 09:40:00,493 4th St, New York City,NY,10001 +261632,AAA Batteries (4-pack),2,2.99,2019-10-17 09:12:00,353 Maple St, Atlanta,GA,30301 +261633,Lightning Charging Cable,1,14.95,2019-10-22 11:57:00,488 Hickory St, San Francisco,CA,94016 +261634,AA Batteries (4-pack),1,3.84,2019-10-09 13:04:00,199 Wilson St, Dallas,TX,75001 +261635,Apple Airpods Headphones,1,150.0,2019-10-30 09:05:00,546 Hickory St, San Francisco,CA,94016 +261636,AAA Batteries (4-pack),1,2.99,2019-10-27 21:15:00,869 Adams St, Los Angeles,CA,90001 +261637,Macbook Pro Laptop,1,1700.0,2019-10-09 20:16:00,43 5th St, San Francisco,CA,94016 +261638,Bose SoundSport Headphones,1,99.99,2019-10-01 20:29:00,640 Park St, San Francisco,CA,94016 +261639,Wired Headphones,1,11.99,2019-10-13 21:19:00,494 Cedar St, Los Angeles,CA,90001 +261639,AAA Batteries (4-pack),1,2.99,2019-10-13 21:19:00,494 Cedar St, Los Angeles,CA,90001 +261640,Google Phone,1,600.0,2019-10-11 13:09:00,161 Lakeview St, Dallas,TX,75001 +261641,20in Monitor,1,109.99,2019-10-31 17:09:00,424 Dogwood St, New York City,NY,10001 +261642,Macbook Pro Laptop,1,1700.0,2019-10-05 17:05:00,558 Washington St, New York City,NY,10001 +261643,Lightning Charging Cable,1,14.95,2019-10-23 10:43:00,530 Cherry St, New York City,NY,10001 +261644,27in FHD Monitor,1,149.99,2019-10-18 14:04:00,975 12th St, New York City,NY,10001 +261645,Apple Airpods Headphones,1,150.0,2019-10-21 22:30:00,508 Wilson St, Boston,MA,02215 +261646,Lightning Charging Cable,1,14.95,2019-10-30 10:52:00,194 2nd St, San Francisco,CA,94016 +261647,AA Batteries (4-pack),2,3.84,2019-10-30 20:33:00,817 West St, Portland,OR,97035 +261648,Wired Headphones,1,11.99,2019-10-04 06:54:00,943 Cherry St, New York City,NY,10001 +261649,USB-C Charging Cable,1,11.95,2019-10-02 21:07:00,895 North St, Boston,MA,02215 +261650,27in FHD Monitor,1,149.99,2019-10-27 12:13:00,209 5th St, San Francisco,CA,94016 +261651,Wired Headphones,1,11.99,2019-10-19 13:05:00,903 11th St, Dallas,TX,75001 +261652,AAA Batteries (4-pack),1,2.99,2019-10-11 10:44:00,931 Jackson St, New York City,NY,10001 +261652,27in FHD Monitor,1,149.99,2019-10-11 10:44:00,931 Jackson St, New York City,NY,10001 +261653,USB-C Charging Cable,1,11.95,2019-10-29 17:24:00,127 6th St, Dallas,TX,75001 +261654,AA Batteries (4-pack),3,3.84,2019-10-07 11:05:00,363 Chestnut St, Boston,MA,02215 +261655,AAA Batteries (4-pack),1,2.99,2019-10-12 09:33:00,468 Adams St, Portland,OR,97035 +261656,Lightning Charging Cable,1,14.95,2019-10-10 23:33:00,390 Adams St, Los Angeles,CA,90001 +261657,USB-C Charging Cable,1,11.95,2019-10-08 18:37:00,704 Chestnut St, San Francisco,CA,94016 +261658,AA Batteries (4-pack),1,3.84,2019-10-17 12:05:00,737 Washington St, Boston,MA,02215 +261659,AAA Batteries (4-pack),1,2.99,2019-10-24 09:19:00,743 Ridge St, Austin,TX,73301 +261660,AAA Batteries (4-pack),1,2.99,2019-10-11 16:08:00,455 Pine St, San Francisco,CA,94016 +261661,20in Monitor,1,109.99,2019-10-03 20:37:00,361 Adams St, Dallas,TX,75001 +261662,USB-C Charging Cable,1,11.95,2019-10-16 12:45:00,175 Walnut St, Atlanta,GA,30301 +261663,Apple Airpods Headphones,1,150.0,2019-10-14 10:26:00,54 6th St, Dallas,TX,75001 +261664,Lightning Charging Cable,1,14.95,2019-10-05 20:14:00,45 North St, New York City,NY,10001 +261665,27in FHD Monitor,1,149.99,2019-10-17 20:21:00,880 Main St, Dallas,TX,75001 +261666,Bose SoundSport Headphones,1,99.99,2019-10-07 21:54:00,679 4th St, San Francisco,CA,94016 +261667,Lightning Charging Cable,2,14.95,2019-10-05 22:57:00,637 Chestnut St, Los Angeles,CA,90001 +261668,Apple Airpods Headphones,1,150.0,2019-10-31 14:28:00,794 2nd St, Austin,TX,73301 +261669,AA Batteries (4-pack),1,3.84,2019-10-02 11:34:00,998 Center St, Portland,OR,97035 +261670,ThinkPad Laptop,1,999.99,2019-10-29 12:32:00,393 13th St, New York City,NY,10001 +261671,Wired Headphones,1,11.99,2019-10-23 13:06:00,356 4th St, Seattle,WA,98101 +261672,USB-C Charging Cable,1,11.95,2019-10-23 12:55:00,532 6th St, Boston,MA,02215 +261673,Bose SoundSport Headphones,1,99.99,2019-10-16 07:55:00,857 4th St, Los Angeles,CA,90001 +261674,34in Ultrawide Monitor,1,379.99,2019-10-26 13:50:00,263 Spruce St, Atlanta,GA,30301 +261675,AA Batteries (4-pack),2,3.84,2019-10-28 14:47:00,22 Maple St, San Francisco,CA,94016 +261676,Flatscreen TV,1,300.0,2019-10-25 19:02:00,990 Forest St, Dallas,TX,75001 +261677,AA Batteries (4-pack),2,3.84,2019-10-31 13:15:00,244 Lincoln St, Boston,MA,02215 +261678,LG Washing Machine,1,600.0,2019-10-04 11:44:00,88 Spruce St, Boston,MA,02215 +261679,USB-C Charging Cable,1,11.95,2019-10-05 11:44:00,97 11th St, San Francisco,CA,94016 +261680,AAA Batteries (4-pack),1,2.99,2019-10-28 07:35:00,656 12th St, San Francisco,CA,94016 +261681,20in Monitor,1,109.99,2019-10-07 13:09:00,758 Forest St, New York City,NY,10001 +261682,Lightning Charging Cable,1,14.95,2019-10-08 01:00:00,451 Wilson St, Seattle,WA,98101 +261683,Macbook Pro Laptop,1,1700.0,2019-10-04 11:29:00,392 Madison St, Dallas,TX,75001 +261683,ThinkPad Laptop,1,999.99,2019-10-04 11:29:00,392 Madison St, Dallas,TX,75001 +261684,20in Monitor,1,109.99,2019-10-12 13:17:00,434 Maple St, Boston,MA,02215 +261685,USB-C Charging Cable,1,11.95,2019-10-03 19:49:00,531 9th St, Seattle,WA,98101 +261686,USB-C Charging Cable,2,11.95,2019-10-30 19:07:00,761 Washington St, Austin,TX,73301 +261687,Macbook Pro Laptop,1,1700.0,2019-10-17 09:04:00,555 Highland St, Portland,OR,97035 +261688,Bose SoundSport Headphones,1,99.99,2019-10-03 16:12:00,58 Johnson St, New York City,NY,10001 +261689,34in Ultrawide Monitor,1,379.99,2019-10-14 09:13:00,569 Washington St, Austin,TX,73301 +261690,Wired Headphones,1,11.99,2019-10-13 14:45:00,951 Chestnut St, Los Angeles,CA,90001 +261691,27in FHD Monitor,1,149.99,2019-10-12 03:19:00,940 Cedar St, Austin,TX,73301 +261692,Bose SoundSport Headphones,1,99.99,2019-10-11 18:08:00,819 Meadow St, San Francisco,CA,94016 +261693,USB-C Charging Cable,1,11.95,2019-10-18 18:32:00,47 Cedar St, New York City,NY,10001 +261693,Apple Airpods Headphones,1,150.0,2019-10-18 18:32:00,47 Cedar St, New York City,NY,10001 +261694,Bose SoundSport Headphones,1,99.99,2019-10-06 19:50:00,184 8th St, New York City,NY,10001 +261695,27in 4K Gaming Monitor,1,389.99,2019-10-22 13:25:00,537 Sunset St, Boston,MA,02215 +261696,Wired Headphones,1,11.99,2019-10-27 13:36:00,266 11th St, Seattle,WA,98101 +261697,AAA Batteries (4-pack),1,2.99,2019-10-28 12:53:00,520 Walnut St, Los Angeles,CA,90001 +261698,AAA Batteries (4-pack),1,2.99,2019-10-28 20:43:00,499 Adams St, Boston,MA,02215 +261699,Lightning Charging Cable,2,14.95,2019-10-05 11:12:00,7 Sunset St, San Francisco,CA,94016 +261700,USB-C Charging Cable,1,11.95,2019-10-21 07:25:00,47 Park St, Atlanta,GA,30301 +261701,Macbook Pro Laptop,1,1700.0,2019-10-22 09:53:00,239 Church St, San Francisco,CA,94016 +261702,Wired Headphones,1,11.99,2019-10-06 12:49:00,209 Willow St, San Francisco,CA,94016 +261703,Bose SoundSport Headphones,1,99.99,2019-10-25 15:16:00,544 Highland St, Los Angeles,CA,90001 +261704,Apple Airpods Headphones,1,150.0,2019-10-22 17:35:00,808 Main St, Los Angeles,CA,90001 +261705,USB-C Charging Cable,1,11.95,2019-10-27 20:02:00,779 Hill St, Boston,MA,02215 +261706,AAA Batteries (4-pack),1,2.99,2019-10-26 15:36:00,683 Johnson St, San Francisco,CA,94016 +261707,USB-C Charging Cable,1,11.95,2019-10-24 10:24:00,30 6th St, New York City,NY,10001 +261708,AAA Batteries (4-pack),1,2.99,2019-10-09 21:17:00,569 5th St, San Francisco,CA,94016 +261709,AA Batteries (4-pack),1,3.84,2019-10-26 18:51:00,182 12th St, Portland,ME,04101 +261710,Macbook Pro Laptop,1,1700.0,2019-10-23 21:12:00,705 6th St, San Francisco,CA,94016 +261711,AA Batteries (4-pack),1,3.84,2019-10-21 15:21:00,521 9th St, New York City,NY,10001 +261712,Apple Airpods Headphones,1,150.0,2019-10-25 10:18:00,406 Lincoln St, Los Angeles,CA,90001 +261713,AAA Batteries (4-pack),2,2.99,2019-10-22 19:49:00,248 7th St, Portland,OR,97035 +261714,AA Batteries (4-pack),3,3.84,2019-10-20 18:54:00,393 Hickory St, Portland,OR,97035 +261715,Bose SoundSport Headphones,1,99.99,2019-10-25 12:05:00,3 West St, San Francisco,CA,94016 +261716,AAA Batteries (4-pack),1,2.99,2019-10-06 22:16:00,740 Ridge St, San Francisco,CA,94016 +261717,34in Ultrawide Monitor,1,379.99,2019-10-13 17:12:00,691 Church St, San Francisco,CA,94016 +261718,Apple Airpods Headphones,1,150.0,2019-10-21 15:33:00,151 Adams St, New York City,NY,10001 +261719,USB-C Charging Cable,1,11.95,2019-10-06 12:08:00,987 Madison St, Seattle,WA,98101 +261720,Macbook Pro Laptop,1,1700.0,2019-10-19 19:23:00,667 Elm St, Atlanta,GA,30301 +261721,AA Batteries (4-pack),2,3.84,2019-10-19 20:00:00,579 River St, Dallas,TX,75001 +261722,AAA Batteries (4-pack),1,2.99,2019-10-23 20:28:00,523 8th St, Los Angeles,CA,90001 +261723,27in 4K Gaming Monitor,1,389.99,2019-10-23 14:41:00,13 Jackson St, New York City,NY,10001 +261724,AAA Batteries (4-pack),1,2.99,2019-10-09 18:25:00,63 9th St, Los Angeles,CA,90001 +261725,AAA Batteries (4-pack),1,2.99,2019-10-14 11:28:00,205 North St, Dallas,TX,75001 +261726,Wired Headphones,1,11.99,2019-10-06 14:28:00,844 2nd St, New York City,NY,10001 +261727,Wired Headphones,1,11.99,2019-10-25 12:12:00,459 9th St, Austin,TX,73301 +261728,USB-C Charging Cable,1,11.95,2019-10-18 22:45:00,512 Highland St, Dallas,TX,75001 +261729,USB-C Charging Cable,1,11.95,2019-10-03 16:58:00,753 Park St, Los Angeles,CA,90001 +261730,USB-C Charging Cable,1,11.95,2019-10-23 21:02:00,907 Highland St, San Francisco,CA,94016 +261731,Wired Headphones,1,11.99,2019-10-19 15:08:00,14 West St, San Francisco,CA,94016 +261732,AA Batteries (4-pack),1,3.84,2019-10-10 23:01:00,229 12th St, San Francisco,CA,94016 +261733,34in Ultrawide Monitor,1,379.99,2019-10-10 17:43:00,874 4th St, San Francisco,CA,94016 +261734,20in Monitor,1,109.99,2019-10-11 02:27:00,452 9th St, Seattle,WA,98101 +261735,Bose SoundSport Headphones,1,99.99,2019-11-01 00:10:00,582 Spruce St, Atlanta,GA,30301 +261736,Wired Headphones,1,11.99,2019-10-23 18:26:00,139 Pine St, Seattle,WA,98101 +261737,Wired Headphones,1,11.99,2019-10-22 13:49:00,34 Highland St, Portland,OR,97035 +261738,Google Phone,1,600.0,2019-10-06 10:11:00,264 12th St, Seattle,WA,98101 +261739,27in FHD Monitor,1,149.99,2019-10-10 21:50:00,547 Jackson St, Los Angeles,CA,90001 +261740,AA Batteries (4-pack),2,3.84,2019-10-25 15:12:00,105 11th St, New York City,NY,10001 +261741,Lightning Charging Cable,1,14.95,2019-10-18 09:19:00,887 North St, Portland,OR,97035 +261742,iPhone,1,700.0,2019-10-14 14:33:00,816 4th St, Dallas,TX,75001 +261743,USB-C Charging Cable,1,11.95,2019-10-25 17:26:00,814 Johnson St, New York City,NY,10001 +261744,Wired Headphones,1,11.99,2019-10-13 09:29:00,975 Meadow St, New York City,NY,10001 +261745,27in FHD Monitor,1,149.99,2019-10-07 10:19:00,578 2nd St, Los Angeles,CA,90001 +261746,Google Phone,1,600.0,2019-10-22 14:14:00,715 Cedar St, San Francisco,CA,94016 +261747,27in 4K Gaming Monitor,1,389.99,2019-10-12 19:38:00,586 Lake St, Los Angeles,CA,90001 +261748,USB-C Charging Cable,1,11.95,2019-10-07 12:43:00,632 Cherry St, Atlanta,GA,30301 +261749,AAA Batteries (4-pack),1,2.99,2019-10-22 16:48:00,285 Park St, San Francisco,CA,94016 +261750,AA Batteries (4-pack),1,3.84,2019-10-08 13:40:00,880 Elm St, San Francisco,CA,94016 +261751,27in FHD Monitor,1,149.99,2019-10-26 19:14:00,763 6th St, San Francisco,CA,94016 +261752,ThinkPad Laptop,1,999.99,2019-10-11 00:26:00,79 4th St, Los Angeles,CA,90001 +261753,27in FHD Monitor,1,149.99,2019-10-06 11:29:00,635 Main St, Los Angeles,CA,90001 +261754,Lightning Charging Cable,1,14.95,2019-10-10 14:17:00,387 Park St, Portland,OR,97035 +261755,27in FHD Monitor,1,149.99,2019-10-16 16:16:00,272 Pine St, Atlanta,GA,30301 +261756,27in FHD Monitor,1,149.99,2019-10-01 13:25:00,954 8th St, Portland,OR,97035 +261757,AAA Batteries (4-pack),2,2.99,2019-10-04 07:14:00,612 Washington St, Austin,TX,73301 +261758,27in FHD Monitor,1,149.99,2019-10-31 13:19:00,992 Madison St, Atlanta,GA,30301 +261759,20in Monitor,1,109.99,2019-10-26 19:37:00,248 12th St, Atlanta,GA,30301 +261760,AAA Batteries (4-pack),1,2.99,2019-10-10 23:43:00,680 14th St, Seattle,WA,98101 +261761,AA Batteries (4-pack),1,3.84,2019-10-23 09:54:00,2 North St, Portland,ME,04101 +261762,AA Batteries (4-pack),1,3.84,2019-10-30 20:46:00,259 Cherry St, San Francisco,CA,94016 +261763,USB-C Charging Cable,1,11.95,2019-10-06 21:47:00,657 Cedar St, San Francisco,CA,94016 +261764,AA Batteries (4-pack),1,3.84,2019-10-24 16:01:00,215 Lincoln St, San Francisco,CA,94016 +261765,Lightning Charging Cable,1,14.95,2019-10-26 00:19:00,435 Hickory St, Portland,OR,97035 +261766,AA Batteries (4-pack),2,3.84,2019-10-26 12:41:00,937 10th St, Boston,MA,02215 +261767,USB-C Charging Cable,1,11.95,2019-10-01 08:52:00,241 Jackson St, New York City,NY,10001 +261768,USB-C Charging Cable,1,11.95,2019-10-26 12:01:00,680 Meadow St, Dallas,TX,75001 +261769,Vareebadd Phone,1,400.0,2019-10-03 19:44:00,650 11th St, New York City,NY,10001 +261770,Apple Airpods Headphones,1,150.0,2019-10-23 20:39:00,326 Pine St, San Francisco,CA,94016 +261771,Google Phone,1,600.0,2019-10-09 11:11:00,24 Hickory St, San Francisco,CA,94016 +261771,USB-C Charging Cable,1,11.95,2019-10-09 11:11:00,24 Hickory St, San Francisco,CA,94016 +261772,iPhone,1,700.0,2019-10-24 12:57:00,732 Jackson St, San Francisco,CA,94016 +261773,AAA Batteries (4-pack),1,2.99,2019-10-14 10:17:00,212 Meadow St, San Francisco,CA,94016 +261774,Wired Headphones,1,11.99,2019-10-18 18:21:00,563 Center St, Seattle,WA,98101 +261775,AA Batteries (4-pack),1,3.84,2019-10-28 14:10:00,533 5th St, Atlanta,GA,30301 +261776,AAA Batteries (4-pack),1,2.99,2019-10-31 22:06:00,927 8th St, Seattle,WA,98101 +261777,USB-C Charging Cable,1,11.95,2019-10-28 19:23:00,727 South St, Portland,OR,97035 +261778,27in FHD Monitor,1,149.99,2019-10-17 23:26:00,604 Cherry St, Austin,TX,73301 +261778,ThinkPad Laptop,1,999.99,2019-10-17 23:26:00,604 Cherry St, Austin,TX,73301 +261779,USB-C Charging Cable,1,11.95,2019-10-30 21:24:00,315 Madison St, Portland,OR,97035 +261780,Google Phone,1,600.0,2019-10-10 20:17:00,165 Adams St, Los Angeles,CA,90001 +261781,Bose SoundSport Headphones,1,99.99,2019-10-02 22:41:00,471 Johnson St, Boston,MA,02215 +261782,Wired Headphones,1,11.99,2019-10-15 02:46:00,523 West St, San Francisco,CA,94016 +261783,AAA Batteries (4-pack),2,2.99,2019-10-30 19:26:00,293 4th St, San Francisco,CA,94016 +261784,AAA Batteries (4-pack),1,2.99,2019-10-22 18:38:00,451 8th St, Seattle,WA,98101 +261785,Lightning Charging Cable,1,14.95,2019-10-01 10:02:00,793 North St, Los Angeles,CA,90001 +261786,AA Batteries (4-pack),1,3.84,2019-10-27 11:31:00,966 Main St, Los Angeles,CA,90001 +261787,AA Batteries (4-pack),1,3.84,2019-10-07 13:32:00,236 Lincoln St, Boston,MA,02215 +261788,34in Ultrawide Monitor,1,379.99,2019-10-26 13:27:00,879 Highland St, Seattle,WA,98101 +261789,Wired Headphones,2,11.99,2019-10-20 10:39:00,180 Elm St, San Francisco,CA,94016 +261790,USB-C Charging Cable,1,11.95,2019-10-19 12:06:00,252 2nd St, New York City,NY,10001 +261791,Lightning Charging Cable,1,14.95,2019-10-25 23:08:00,452 1st St, Austin,TX,73301 +261792,USB-C Charging Cable,1,11.95,2019-10-29 00:28:00,923 11th St, San Francisco,CA,94016 +261793,iPhone,1,700.0,2019-10-07 11:40:00,301 Adams St, San Francisco,CA,94016 +261794,Bose SoundSport Headphones,1,99.99,2019-10-02 12:35:00,180 4th St, Dallas,TX,75001 +261795,Flatscreen TV,1,300.0,2019-10-20 18:12:00,256 11th St, San Francisco,CA,94016 +261796,27in FHD Monitor,1,149.99,2019-10-12 02:35:00,516 Lakeview St, Dallas,TX,75001 +261797,Lightning Charging Cable,1,14.95,2019-10-13 21:23:00,647 Highland St, San Francisco,CA,94016 +261798,Apple Airpods Headphones,1,150.0,2019-10-03 15:11:00,143 South St, Portland,OR,97035 +261799,Apple Airpods Headphones,1,150.0,2019-10-10 22:16:00,763 West St, Los Angeles,CA,90001 +261800,USB-C Charging Cable,1,11.95,2019-10-04 20:15:00,900 Wilson St, Los Angeles,CA,90001 +261801,USB-C Charging Cable,1,11.95,2019-10-15 10:06:00,985 Johnson St, San Francisco,CA,94016 +261802,USB-C Charging Cable,1,11.95,2019-10-21 16:33:00,247 Meadow St, Austin,TX,73301 +261803,Wired Headphones,1,11.99,2019-10-15 17:45:00,741 1st St, Los Angeles,CA,90001 +261804,27in FHD Monitor,1,149.99,2019-10-10 10:48:00,133 Adams St, Dallas,TX,75001 +261805,AA Batteries (4-pack),1,3.84,2019-10-10 15:53:00,829 Church St, Portland,OR,97035 +261806,Lightning Charging Cable,1,14.95,2019-10-19 22:56:00,843 Main St, Dallas,TX,75001 +261807,Google Phone,1,600.0,2019-10-15 16:58:00,398 Hickory St, Boston,MA,02215 +261807,USB-C Charging Cable,1,11.95,2019-10-15 16:58:00,398 Hickory St, Boston,MA,02215 +261808,27in FHD Monitor,1,149.99,2019-10-29 19:41:00,876 Johnson St, Los Angeles,CA,90001 +261809,AA Batteries (4-pack),1,3.84,2019-10-06 21:04:00,119 8th St, New York City,NY,10001 +261810,Wired Headphones,1,11.99,2019-10-07 17:45:00,259 Dogwood St, Los Angeles,CA,90001 +261811,AAA Batteries (4-pack),2,2.99,2019-10-15 23:01:00,861 1st St, Austin,TX,73301 +261812,Apple Airpods Headphones,1,150.0,2019-10-05 22:53:00,886 Forest St, Los Angeles,CA,90001 +261813,Google Phone,1,600.0,2019-10-28 19:04:00,433 Center St, New York City,NY,10001 +261814,Bose SoundSport Headphones,1,99.99,2019-10-04 18:12:00,410 6th St, San Francisco,CA,94016 +261815,27in FHD Monitor,1,149.99,2019-10-27 18:48:00,229 South St, Dallas,TX,75001 +261816,USB-C Charging Cable,1,11.95,2019-10-20 16:17:00,999 6th St, Seattle,WA,98101 +261817,iPhone,1,700.0,2019-10-04 20:17:00,170 Ridge St, Seattle,WA,98101 +261818,Macbook Pro Laptop,1,1700.0,2019-10-28 21:38:00,512 Sunset St, Austin,TX,73301 +261819,Flatscreen TV,1,300.0,2019-10-17 08:40:00,236 Center St, San Francisco,CA,94016 +261820,Apple Airpods Headphones,1,150.0,2019-10-09 18:58:00,936 West St, Portland,OR,97035 +261821,iPhone,1,700.0,2019-10-23 12:18:00,769 8th St, San Francisco,CA,94016 +261822,Lightning Charging Cable,1,14.95,2019-10-30 21:41:00,216 South St, Los Angeles,CA,90001 +261823,AA Batteries (4-pack),1,3.84,2019-10-14 00:15:00,171 Wilson St, Austin,TX,73301 +261824,Wired Headphones,1,11.99,2019-10-14 18:16:00,240 8th St, New York City,NY,10001 +261825,Bose SoundSport Headphones,1,99.99,2019-10-11 07:53:00,354 Highland St, San Francisco,CA,94016 +261826,Lightning Charging Cable,1,14.95,2019-10-23 19:36:00,154 Church St, Portland,ME,04101 +261827,Apple Airpods Headphones,1,150.0,2019-10-25 21:20:00,760 Highland St, San Francisco,CA,94016 +261828,ThinkPad Laptop,1,999.99,2019-10-16 10:34:00,789 Pine St, Seattle,WA,98101 +261829,Flatscreen TV,1,300.0,2019-10-16 16:36:00,132 West St, San Francisco,CA,94016 +261830,USB-C Charging Cable,1,11.95,2019-10-24 13:10:00,478 Maple St, Atlanta,GA,30301 +261831,Wired Headphones,1,11.99,2019-10-18 16:42:00,684 South St, Boston,MA,02215 +261832,Wired Headphones,1,11.99,2019-10-01 06:29:00,299 Sunset St, San Francisco,CA,94016 +261833,Lightning Charging Cable,1,14.95,2019-10-05 11:07:00,292 River St, San Francisco,CA,94016 +261834,Google Phone,1,600.0,2019-10-26 12:41:00,637 13th St, Los Angeles,CA,90001 +261835,27in FHD Monitor,1,149.99,2019-10-29 18:54:00,41 Dogwood St, Boston,MA,02215 +261836,Macbook Pro Laptop,1,1700.0,2019-10-04 13:41:00,382 Dogwood St, San Francisco,CA,94016 +261837,iPhone,1,700.0,2019-10-19 21:10:00,79 West St, San Francisco,CA,94016 +261837,Apple Airpods Headphones,1,150.0,2019-10-19 21:10:00,79 West St, San Francisco,CA,94016 +261838,Flatscreen TV,1,300.0,2019-10-01 18:07:00,951 Spruce St, San Francisco,CA,94016 +261839,Lightning Charging Cable,1,14.95,2019-10-31 10:59:00,94 Washington St, Dallas,TX,75001 +261840,27in FHD Monitor,1,149.99,2019-10-29 20:45:00,463 14th St, Boston,MA,02215 +261841,AA Batteries (4-pack),1,3.84,2019-10-19 11:40:00,42 Washington St, Portland,OR,97035 +261841,AAA Batteries (4-pack),1,2.99,2019-10-19 11:40:00,42 Washington St, Portland,OR,97035 +261842,Apple Airpods Headphones,1,150.0,2019-10-03 19:11:00,69 Main St, Los Angeles,CA,90001 +261843,Bose SoundSport Headphones,1,99.99,2019-10-31 20:28:00,545 Lake St, Seattle,WA,98101 +261844,Bose SoundSport Headphones,1,99.99,2019-10-24 12:36:00,218 Spruce St, Boston,MA,02215 +261845,Bose SoundSport Headphones,1,99.99,2019-10-28 14:44:00,653 Sunset St, Seattle,WA,98101 +261846,USB-C Charging Cable,1,11.95,2019-10-15 15:36:00,323 Church St, Austin,TX,73301 +261847,AA Batteries (4-pack),1,3.84,2019-10-02 17:50:00,506 1st St, New York City,NY,10001 +261848,Lightning Charging Cable,1,14.95,2019-10-15 20:01:00,231 8th St, Boston,MA,02215 +261849,Apple Airpods Headphones,1,150.0,2019-10-20 22:36:00,442 9th St, Los Angeles,CA,90001 +261850,Apple Airpods Headphones,1,150.0,2019-10-15 08:26:00,783 Wilson St, Atlanta,GA,30301 +261851,Vareebadd Phone,1,400.0,2019-10-06 18:39:00,592 Willow St, Los Angeles,CA,90001 +261851,USB-C Charging Cable,1,11.95,2019-10-06 18:39:00,592 Willow St, Los Angeles,CA,90001 +261851,Bose SoundSport Headphones,1,99.99,2019-10-06 18:39:00,592 Willow St, Los Angeles,CA,90001 +261852,27in FHD Monitor,1,149.99,2019-10-02 06:44:00,207 South St, Dallas,TX,75001 +261853,AAA Batteries (4-pack),2,2.99,2019-10-13 14:25:00,763 Hill St, Los Angeles,CA,90001 +261854,Wired Headphones,1,11.99,2019-10-13 00:02:00,494 Lincoln St, Boston,MA,02215 +261855,USB-C Charging Cable,3,11.95,2019-10-08 18:50:00,222 5th St, Dallas,TX,75001 +261856,AAA Batteries (4-pack),1,2.99,2019-10-20 14:30:00,890 Wilson St, Los Angeles,CA,90001 +261857,AA Batteries (4-pack),1,3.84,2019-10-27 17:07:00,334 Madison St, San Francisco,CA,94016 +261858,AAA Batteries (4-pack),1,2.99,2019-10-14 12:16:00,922 Madison St, Seattle,WA,98101 +261858,Wired Headphones,1,11.99,2019-10-14 12:16:00,922 Madison St, Seattle,WA,98101 +261859,34in Ultrawide Monitor,1,379.99,2019-10-31 15:36:00,589 Lakeview St, Atlanta,GA,30301 +261860,ThinkPad Laptop,1,999.99,2019-10-20 17:08:00,180 Lakeview St, New York City,NY,10001 +261861,Lightning Charging Cable,1,14.95,2019-10-12 08:46:00,467 Madison St, New York City,NY,10001 +261862,USB-C Charging Cable,1,11.95,2019-10-27 08:03:00,872 10th St, New York City,NY,10001 +261863,Wired Headphones,1,11.99,2019-10-10 22:01:00,861 Chestnut St, San Francisco,CA,94016 +261864,Lightning Charging Cable,1,14.95,2019-10-02 02:26:00,781 West St, New York City,NY,10001 +261865,Google Phone,1,600.0,2019-10-10 20:46:00,124 Hill St, Los Angeles,CA,90001 +261866,AAA Batteries (4-pack),2,2.99,2019-10-10 07:24:00,430 Johnson St, Los Angeles,CA,90001 +261867,Apple Airpods Headphones,1,150.0,2019-10-26 17:32:00,354 2nd St, San Francisco,CA,94016 +261868,20in Monitor,1,109.99,2019-10-05 15:36:00,34 9th St, San Francisco,CA,94016 +261869,Apple Airpods Headphones,1,150.0,2019-10-29 10:03:00,643 4th St, New York City,NY,10001 +261870,Wired Headphones,1,11.99,2019-10-06 19:17:00,914 Center St, Los Angeles,CA,90001 +261871,Lightning Charging Cable,1,14.95,2019-10-19 16:47:00,300 Johnson St, Los Angeles,CA,90001 +261872,27in FHD Monitor,1,149.99,2019-10-30 22:20:00,232 Jefferson St, Atlanta,GA,30301 +261873,Google Phone,1,600.0,2019-10-05 08:35:00,145 12th St, Los Angeles,CA,90001 +261873,Bose SoundSport Headphones,1,99.99,2019-10-05 08:35:00,145 12th St, Los Angeles,CA,90001 +261874,Wired Headphones,1,11.99,2019-10-22 13:27:00,953 Forest St, New York City,NY,10001 +261875,Wired Headphones,1,11.99,2019-10-08 20:04:00,328 13th St, Seattle,WA,98101 +261876,34in Ultrawide Monitor,1,379.99,2019-10-21 10:43:00,382 Sunset St, San Francisco,CA,94016 +261877,USB-C Charging Cable,1,11.95,2019-10-11 13:02:00,928 Adams St, Los Angeles,CA,90001 +261878,AAA Batteries (4-pack),1,2.99,2019-10-26 16:56:00,644 Jackson St, Boston,MA,02215 +261879,LG Dryer,1,600.0,2019-10-16 17:16:00,289 Walnut St, Dallas,TX,75001 +261880,AA Batteries (4-pack),1,3.84,2019-10-18 15:08:00,52 10th St, Boston,MA,02215 +261881,Bose SoundSport Headphones,1,99.99,2019-10-20 21:49:00,804 Spruce St, New York City,NY,10001 +261882,27in FHD Monitor,1,149.99,2019-10-13 15:13:00,803 Hickory St, Seattle,WA,98101 +261883,AA Batteries (4-pack),1,3.84,2019-10-04 16:26:00,833 Jefferson St, New York City,NY,10001 +261884,ThinkPad Laptop,1,999.99,2019-10-19 12:23:00,785 12th St, San Francisco,CA,94016 +261885,USB-C Charging Cable,1,11.95,2019-10-14 15:55:00,170 Jefferson St, Boston,MA,02215 +261886,USB-C Charging Cable,1,11.95,2019-10-15 22:09:00,802 4th St, San Francisco,CA,94016 +261887,Bose SoundSport Headphones,1,99.99,2019-10-05 12:26:00,453 Hickory St, Seattle,WA,98101 +261887,AAA Batteries (4-pack),1,2.99,2019-10-05 12:26:00,453 Hickory St, Seattle,WA,98101 +261888,USB-C Charging Cable,1,11.95,2019-10-05 17:19:00,131 River St, Los Angeles,CA,90001 +261889,Apple Airpods Headphones,1,150.0,2019-10-23 14:14:00,959 Sunset St, Atlanta,GA,30301 +261890,Flatscreen TV,1,300.0,2019-10-24 16:31:00,657 Church St, Seattle,WA,98101 +261891,Lightning Charging Cable,1,14.95,2019-10-30 16:30:00,846 Lakeview St, Los Angeles,CA,90001 +261892,USB-C Charging Cable,1,11.95,2019-10-11 19:56:00,370 4th St, Los Angeles,CA,90001 +261893,USB-C Charging Cable,1,11.95,2019-10-02 13:59:00,582 Ridge St, New York City,NY,10001 +261894,Wired Headphones,1,11.99,2019-10-22 09:39:00,463 Maple St, Los Angeles,CA,90001 +261895,Flatscreen TV,1,300.0,2019-10-31 21:31:00,552 Madison St, Seattle,WA,98101 +261896,AA Batteries (4-pack),1,3.84,2019-10-17 15:22:00,936 Maple St, Los Angeles,CA,90001 +261897,Apple Airpods Headphones,1,150.0,2019-10-13 12:55:00,768 Lake St, San Francisco,CA,94016 +261898,Lightning Charging Cable,1,14.95,2019-10-06 15:05:00,898 14th St, Dallas,TX,75001 +261899,AA Batteries (4-pack),3,3.84,2019-10-27 07:04:00,93 Hickory St, Atlanta,GA,30301 +261900,Lightning Charging Cable,1,14.95,2019-10-28 04:19:00,812 Highland St, Seattle,WA,98101 +261901,27in 4K Gaming Monitor,1,389.99,2019-10-27 07:30:00,146 1st St, Boston,MA,02215 +261902,AAA Batteries (4-pack),1,2.99,2019-10-29 11:07:00,560 Church St, San Francisco,CA,94016 +261903,AA Batteries (4-pack),1,3.84,2019-10-27 14:28:00,894 10th St, New York City,NY,10001 +261904,LG Washing Machine,1,600.0,2019-10-15 11:54:00,694 4th St, San Francisco,CA,94016 +261905,Wired Headphones,1,11.99,2019-10-02 20:10:00,538 Jefferson St, Los Angeles,CA,90001 +261906,AA Batteries (4-pack),2,3.84,2019-10-05 15:47:00,851 7th St, Seattle,WA,98101 +261907,Apple Airpods Headphones,1,150.0,2019-10-27 16:05:00,484 8th St, San Francisco,CA,94016 +261907,Wired Headphones,1,11.99,2019-10-27 16:05:00,484 8th St, San Francisco,CA,94016 +261908,AA Batteries (4-pack),1,3.84,2019-10-27 22:08:00,262 14th St, Boston,MA,02215 +261909,AAA Batteries (4-pack),2,2.99,2019-10-08 13:10:00,391 14th St, New York City,NY,10001 +261910,Bose SoundSport Headphones,1,99.99,2019-10-24 22:48:00,854 South St, San Francisco,CA,94016 +261911,Apple Airpods Headphones,1,150.0,2019-10-13 16:50:00,886 Pine St, Boston,MA,02215 +261912,USB-C Charging Cable,1,11.95,2019-10-06 04:08:00,212 North St, Los Angeles,CA,90001 +261913,Bose SoundSport Headphones,1,99.99,2019-10-24 16:18:00,495 Lincoln St, San Francisco,CA,94016 +261914,27in FHD Monitor,1,149.99,2019-10-19 12:34:00,204 Ridge St, Los Angeles,CA,90001 +261915,USB-C Charging Cable,1,11.95,2019-10-07 10:12:00,232 Lakeview St, Austin,TX,73301 +261916,AAA Batteries (4-pack),1,2.99,2019-10-27 18:59:00,58 Jefferson St, New York City,NY,10001 +261917,Wired Headphones,1,11.99,2019-10-14 03:01:00,535 Hill St, Dallas,TX,75001 +261918,27in 4K Gaming Monitor,1,389.99,2019-10-22 14:54:00,516 Madison St, Los Angeles,CA,90001 +261919,AAA Batteries (4-pack),2,2.99,2019-10-22 15:37:00,778 West St, Boston,MA,02215 +261920,27in 4K Gaming Monitor,1,389.99,2019-10-21 00:02:00,690 Cherry St, San Francisco,CA,94016 +261921,Apple Airpods Headphones,1,150.0,2019-10-10 10:54:00,435 12th St, Portland,ME,04101 +261922,AA Batteries (4-pack),2,3.84,2019-10-07 14:23:00,888 Highland St, San Francisco,CA,94016 +261923,AA Batteries (4-pack),1,3.84,2019-10-21 17:28:00,724 Pine St, Austin,TX,73301 +261924,USB-C Charging Cable,1,11.95,2019-10-17 20:17:00,663 11th St, Los Angeles,CA,90001 +261925,20in Monitor,1,109.99,2019-10-02 10:56:00,988 Park St, Atlanta,GA,30301 +261926,Wired Headphones,1,11.99,2019-10-24 21:21:00,49 Meadow St, New York City,NY,10001 +261927,USB-C Charging Cable,1,11.95,2019-10-02 21:21:00,689 1st St, Atlanta,GA,30301 +261928,AA Batteries (4-pack),1,3.84,2019-10-08 14:22:00,781 1st St, New York City,NY,10001 +261929,USB-C Charging Cable,1,11.95,2019-10-09 20:09:00,75 Cedar St, Seattle,WA,98101 +261930,Apple Airpods Headphones,1,150.0,2019-10-24 19:41:00,93 Sunset St, Los Angeles,CA,90001 +261931,AA Batteries (4-pack),1,3.84,2019-10-23 23:36:00,640 Walnut St, Seattle,WA,98101 +261932,iPhone,1,700.0,2019-10-10 10:17:00,523 12th St, San Francisco,CA,94016 +261933,27in 4K Gaming Monitor,1,389.99,2019-10-31 18:49:00,413 9th St, San Francisco,CA,94016 +261934,Apple Airpods Headphones,1,150.0,2019-10-21 12:23:00,538 11th St, Los Angeles,CA,90001 +261935,Bose SoundSport Headphones,1,99.99,2019-10-08 14:26:00,127 Cherry St, San Francisco,CA,94016 +261936,ThinkPad Laptop,1,999.99,2019-10-27 21:59:00,169 5th St, New York City,NY,10001 +261937,27in 4K Gaming Monitor,1,389.99,2019-10-10 13:44:00,717 Main St, Atlanta,GA,30301 +261938,AAA Batteries (4-pack),1,2.99,2019-10-10 01:24:00,897 Washington St, San Francisco,CA,94016 +261939,Bose SoundSport Headphones,2,99.99,2019-10-21 18:42:00,501 Lake St, Atlanta,GA,30301 +261940,AAA Batteries (4-pack),2,2.99,2019-10-10 20:55:00,636 11th St, New York City,NY,10001 +261941,27in 4K Gaming Monitor,1,389.99,2019-10-15 23:44:00,800 Park St, New York City,NY,10001 +261941,34in Ultrawide Monitor,1,379.99,2019-10-15 23:44:00,800 Park St, New York City,NY,10001 +261942,AAA Batteries (4-pack),2,2.99,2019-10-22 21:25:00,535 Washington St, Dallas,TX,75001 +261943,AAA Batteries (4-pack),1,2.99,2019-10-11 08:36:00,575 Maple St, New York City,NY,10001 +261944,USB-C Charging Cable,1,11.95,2019-10-28 20:38:00,121 Meadow St, New York City,NY,10001 +261945,Lightning Charging Cable,1,14.95,2019-10-30 10:39:00,779 5th St, Atlanta,GA,30301 +261946,USB-C Charging Cable,1,11.95,2019-10-19 20:33:00,37 Willow St, Atlanta,GA,30301 +261947,ThinkPad Laptop,1,999.99,2019-10-09 13:29:00,977 Lakeview St, Atlanta,GA,30301 +261948,Wired Headphones,1,11.99,2019-10-28 17:32:00,321 Meadow St, Austin,TX,73301 +261949,Lightning Charging Cable,1,14.95,2019-10-16 17:00:00,467 Dogwood St, Dallas,TX,75001 +261950,Wired Headphones,2,11.99,2019-10-05 14:34:00,713 Walnut St, San Francisco,CA,94016 +261951,AA Batteries (4-pack),1,3.84,2019-10-22 11:10:00,432 Main St, Dallas,TX,75001 +261952,ThinkPad Laptop,1,999.99,2019-10-28 20:36:00,431 Ridge St, Atlanta,GA,30301 +261953,AA Batteries (4-pack),1,3.84,2019-10-10 10:19:00,719 North St, San Francisco,CA,94016 +261954,Apple Airpods Headphones,1,150.0,2019-10-13 16:17:00,942 Ridge St, San Francisco,CA,94016 +261955,AAA Batteries (4-pack),2,2.99,2019-10-16 09:58:00,558 Lakeview St, Austin,TX,73301 +261956,Wired Headphones,1,11.99,2019-10-17 15:59:00,261 7th St, Atlanta,GA,30301 +261957,Google Phone,1,600.0,2019-10-14 18:12:00,170 2nd St, San Francisco,CA,94016 +261958,AAA Batteries (4-pack),1,2.99,2019-10-27 23:25:00,409 6th St, Austin,TX,73301 +261959,AAA Batteries (4-pack),1,2.99,2019-10-14 01:11:00,513 Park St, Austin,TX,73301 +261960,ThinkPad Laptop,1,999.99,2019-10-25 12:46:00,32 7th St, Los Angeles,CA,90001 +261961,AA Batteries (4-pack),1,3.84,2019-10-03 12:35:00,479 Cherry St, Los Angeles,CA,90001 +261962,27in 4K Gaming Monitor,1,389.99,2019-10-17 12:02:00,727 River St, Boston,MA,02215 +261963,27in FHD Monitor,1,149.99,2019-10-01 09:09:00,769 Jackson St, Dallas,TX,75001 +261964,Bose SoundSport Headphones,1,99.99,2019-10-26 05:27:00,596 North St, Los Angeles,CA,90001 +261965,AA Batteries (4-pack),1,3.84,2019-10-27 11:54:00,916 Church St, San Francisco,CA,94016 +261966,Bose SoundSport Headphones,1,99.99,2019-10-09 11:53:00,134 Main St, Atlanta,GA,30301 +261967,Lightning Charging Cable,1,14.95,2019-10-29 11:09:00,386 Lakeview St, Portland,OR,97035 +261968,iPhone,1,700.0,2019-10-28 04:53:00,638 Dogwood St, New York City,NY,10001 +261968,Lightning Charging Cable,1,14.95,2019-10-28 04:53:00,638 Dogwood St, New York City,NY,10001 +261969,Vareebadd Phone,1,400.0,2019-10-21 12:48:00,626 Elm St, Dallas,TX,75001 +261970,Lightning Charging Cable,1,14.95,2019-10-26 08:22:00,509 Cherry St, Seattle,WA,98101 +261971,34in Ultrawide Monitor,1,379.99,2019-10-08 16:27:00,156 Ridge St, Dallas,TX,75001 +261972,Bose SoundSport Headphones,1,99.99,2019-10-03 23:17:00,791 Church St, San Francisco,CA,94016 +261973,Lightning Charging Cable,1,14.95,2019-10-04 07:37:00,328 12th St, San Francisco,CA,94016 +261974,Vareebadd Phone,1,400.0,2019-10-16 15:49:00,149 Main St, Boston,MA,02215 +261975,Bose SoundSport Headphones,1,99.99,2019-10-11 18:18:00,313 Lake St, San Francisco,CA,94016 +261976,27in FHD Monitor,1,149.99,2019-10-26 13:21:00,662 Highland St, Los Angeles,CA,90001 +261977,Flatscreen TV,1,300.0,2019-10-23 10:01:00,201 Chestnut St, San Francisco,CA,94016 +261978,Bose SoundSport Headphones,1,99.99,2019-10-03 21:01:00,620 5th St, Los Angeles,CA,90001 +261979,iPhone,1,700.0,2019-10-10 18:00:00,635 North St, New York City,NY,10001 +261980,Lightning Charging Cable,1,14.95,2019-10-23 19:35:00,746 Lakeview St, Seattle,WA,98101 +261981,Bose SoundSport Headphones,1,99.99,2019-10-20 18:06:00,231 Highland St, Dallas,TX,75001 +261982,iPhone,1,700.0,2019-10-18 00:14:00,350 13th St, Los Angeles,CA,90001 +261983,27in 4K Gaming Monitor,1,389.99,2019-10-25 16:30:00,778 Pine St, New York City,NY,10001 +261984,AAA Batteries (4-pack),2,2.99,2019-10-21 13:45:00,852 Jefferson St, San Francisco,CA,94016 +261985,Lightning Charging Cable,1,14.95,2019-10-18 19:10:00,436 Washington St, San Francisco,CA,94016 +261986,AAA Batteries (4-pack),1,2.99,2019-10-08 23:15:00,876 1st St, San Francisco,CA,94016 +261987,Flatscreen TV,1,300.0,2019-10-02 22:30:00,244 Forest St, New York City,NY,10001 +261988,Wired Headphones,1,11.99,2019-10-13 09:48:00,382 Center St, Atlanta,GA,30301 +261989,Lightning Charging Cable,1,14.95,2019-10-06 16:39:00,53 9th St, Dallas,TX,75001 +261990,27in FHD Monitor,1,149.99,2019-10-17 20:56:00,464 Maple St, Portland,OR,97035 +261991,Bose SoundSport Headphones,1,99.99,2019-10-23 08:55:00,653 West St, Portland,OR,97035 +261992,iPhone,1,700.0,2019-10-08 13:07:00,286 Cherry St, San Francisco,CA,94016 +261993,Wired Headphones,1,11.99,2019-10-30 22:32:00,64 Adams St, San Francisco,CA,94016 +261994,Flatscreen TV,1,300.0,2019-10-06 17:48:00,634 Main St, Boston,MA,02215 +261995,Lightning Charging Cable,1,14.95,2019-10-05 17:42:00,378 Park St, San Francisco,CA,94016 +261996,Wired Headphones,1,11.99,2019-10-17 13:06:00,607 Highland St, New York City,NY,10001 +261997,Wired Headphones,1,11.99,2019-10-28 23:38:00,190 10th St, Boston,MA,02215 +261998,AA Batteries (4-pack),2,3.84,2019-10-20 13:55:00,758 Johnson St, Portland,OR,97035 +261999,USB-C Charging Cable,1,11.95,2019-10-24 11:09:00,46 Maple St, Los Angeles,CA,90001 +262000,AA Batteries (4-pack),1,3.84,2019-10-20 19:22:00,761 Lake St, Boston,MA,02215 +262001,27in FHD Monitor,1,149.99,2019-10-31 15:29:00,632 13th St, Portland,OR,97035 +262002,Wired Headphones,1,11.99,2019-10-22 14:47:00,252 Jackson St, Boston,MA,02215 +262003,AAA Batteries (4-pack),1,2.99,2019-10-26 18:49:00,110 Sunset St, San Francisco,CA,94016 +262004,ThinkPad Laptop,1,999.99,2019-10-02 23:41:00,672 Meadow St, Portland,OR,97035 +262005,Lightning Charging Cable,1,14.95,2019-10-11 23:33:00,413 1st St, Seattle,WA,98101 +262006,Wired Headphones,1,11.99,2019-10-28 14:17:00,107 Jefferson St, San Francisco,CA,94016 +262007,iPhone,1,700.0,2019-10-13 19:51:00,575 7th St, San Francisco,CA,94016 +262008,Apple Airpods Headphones,1,150.0,2019-10-22 10:36:00,178 Wilson St, San Francisco,CA,94016 +262009,Macbook Pro Laptop,1,1700.0,2019-10-22 09:51:00,8 Washington St, Seattle,WA,98101 +262010,AA Batteries (4-pack),2,3.84,2019-10-13 11:16:00,17 Spruce St, San Francisco,CA,94016 +262011,Wired Headphones,1,11.99,2019-10-15 07:11:00,30 2nd St, New York City,NY,10001 +262012,Wired Headphones,1,11.99,2019-10-07 13:52:00,568 Hill St, Austin,TX,73301 +262013,Bose SoundSport Headphones,1,99.99,2019-10-26 15:41:00,321 Chestnut St, Dallas,TX,75001 +262014,Lightning Charging Cable,1,14.95,2019-10-26 21:15:00,783 Elm St, Austin,TX,73301 +262015,ThinkPad Laptop,1,999.99,2019-10-31 13:50:00,329 River St, Los Angeles,CA,90001 +262016,AAA Batteries (4-pack),1,2.99,2019-10-02 08:45:00,562 Jackson St, Boston,MA,02215 +262017,Bose SoundSport Headphones,1,99.99,2019-10-16 17:53:00,286 5th St, San Francisco,CA,94016 +262018,AAA Batteries (4-pack),1,2.99,2019-10-21 18:10:00,216 Walnut St, San Francisco,CA,94016 +262019,Google Phone,1,600.0,2019-10-22 00:18:00,280 Chestnut St, Boston,MA,02215 +262019,USB-C Charging Cable,1,11.95,2019-10-22 00:18:00,280 Chestnut St, Boston,MA,02215 +262019,Wired Headphones,1,11.99,2019-10-22 00:18:00,280 Chestnut St, Boston,MA,02215 +262020,Apple Airpods Headphones,1,150.0,2019-10-03 11:16:00,835 14th St, Dallas,TX,75001 +262021,AA Batteries (4-pack),1,3.84,2019-10-29 17:19:00,625 Highland St, San Francisco,CA,94016 +262022,AA Batteries (4-pack),1,3.84,2019-10-05 18:34:00,543 7th St, Boston,MA,02215 +262023,AA Batteries (4-pack),1,3.84,2019-10-10 21:54:00,788 Cherry St, Boston,MA,02215 +262024,Lightning Charging Cable,1,14.95,2019-10-12 13:13:00,801 Ridge St, San Francisco,CA,94016 +262025,Apple Airpods Headphones,1,150.0,2019-10-08 23:43:00,33 Chestnut St, Portland,OR,97035 +262026,Vareebadd Phone,1,400.0,2019-10-24 20:04:00,758 Lakeview St, Los Angeles,CA,90001 +262027,27in FHD Monitor,1,149.99,2019-10-14 17:07:00,489 Jackson St, Portland,OR,97035 +262028,Wired Headphones,1,11.99,2019-10-23 17:59:00,841 Highland St, Austin,TX,73301 +262029,27in FHD Monitor,1,149.99,2019-10-04 00:27:00,169 5th St, Portland,OR,97035 +262030,AAA Batteries (4-pack),1,2.99,2019-10-21 19:27:00,518 5th St, Boston,MA,02215 +262031,Google Phone,1,600.0,2019-10-26 16:21:00,281 10th St, New York City,NY,10001 +262032,AA Batteries (4-pack),1,3.84,2019-10-27 09:43:00,516 North St, Atlanta,GA,30301 +262033,ThinkPad Laptop,1,999.99,2019-10-10 12:24:00,571 River St, Los Angeles,CA,90001 +262034,Bose SoundSport Headphones,1,99.99,2019-10-22 22:23:00,960 North St, Los Angeles,CA,90001 +262035,AA Batteries (4-pack),1,3.84,2019-10-31 07:05:00,656 Wilson St, Portland,ME,04101 +262036,AA Batteries (4-pack),3,3.84,2019-10-03 22:01:00,481 Park St, Los Angeles,CA,90001 +262037,Lightning Charging Cable,1,14.95,2019-10-05 12:55:00,531 14th St, San Francisco,CA,94016 +262038,Lightning Charging Cable,1,14.95,2019-10-11 17:45:00,89 9th St, Portland,OR,97035 +262039,AA Batteries (4-pack),1,3.84,2019-10-29 17:16:00,540 Park St, Atlanta,GA,30301 +262040,Vareebadd Phone,1,400.0,2019-10-08 10:05:00,378 4th St, New York City,NY,10001 +262041,Bose SoundSport Headphones,1,99.99,2019-10-08 14:02:00,839 Ridge St, Los Angeles,CA,90001 +262042,34in Ultrawide Monitor,1,379.99,2019-10-02 16:50:00,62 Johnson St, Los Angeles,CA,90001 +262043,AAA Batteries (4-pack),4,2.99,2019-10-23 12:05:00,860 14th St, San Francisco,CA,94016 +262044,Lightning Charging Cable,2,14.95,2019-10-18 18:14:00,849 Chestnut St, Seattle,WA,98101 +262045,AA Batteries (4-pack),2,3.84,2019-10-12 10:58:00,247 Church St, Austin,TX,73301 +262046,USB-C Charging Cable,1,11.95,2019-10-20 18:59:00,874 Maple St, New York City,NY,10001 +262047,USB-C Charging Cable,1,11.95,2019-10-16 13:21:00,672 Cedar St, Portland,OR,97035 +262047,AAA Batteries (4-pack),2,2.99,2019-10-16 13:21:00,672 Cedar St, Portland,OR,97035 +262048,Lightning Charging Cable,1,14.95,2019-10-08 02:16:00,399 Lakeview St, San Francisco,CA,94016 +262049,USB-C Charging Cable,1,11.95,2019-10-26 09:27:00,848 Adams St, Los Angeles,CA,90001 +262050,Wired Headphones,1,11.99,2019-10-29 07:44:00,986 Meadow St, Seattle,WA,98101 +262051,AA Batteries (4-pack),1,3.84,2019-10-30 11:37:00,8 Elm St, San Francisco,CA,94016 +262052,USB-C Charging Cable,1,11.95,2019-10-18 21:15:00,832 12th St, Boston,MA,02215 +262053,Vareebadd Phone,1,400.0,2019-10-31 13:39:00,239 Chestnut St, Atlanta,GA,30301 +262054,AAA Batteries (4-pack),2,2.99,2019-10-24 11:44:00,533 Lakeview St, Seattle,WA,98101 +262055,20in Monitor,1,109.99,2019-10-22 20:28:00,549 Lincoln St, San Francisco,CA,94016 +262056,27in FHD Monitor,1,149.99,2019-10-14 13:26:00,38 Walnut St, Atlanta,GA,30301 +262057,Macbook Pro Laptop,1,1700.0,2019-10-31 15:39:00,724 West St, San Francisco,CA,94016 +262058,Wired Headphones,1,11.99,2019-10-24 18:33:00,931 11th St, Atlanta,GA,30301 +262059,34in Ultrawide Monitor,1,379.99,2019-10-31 16:20:00,77 Jackson St, Portland,OR,97035 +262060,Wired Headphones,1,11.99,2019-10-06 20:58:00,767 Lincoln St, Dallas,TX,75001 +262061,Lightning Charging Cable,1,14.95,2019-10-26 19:50:00,978 Ridge St, Portland,OR,97035 +262062,USB-C Charging Cable,1,11.95,2019-10-24 00:19:00,220 Forest St, Seattle,WA,98101 +262063,Lightning Charging Cable,1,14.95,2019-10-27 20:12:00,915 Lake St, San Francisco,CA,94016 +262064,27in FHD Monitor,1,149.99,2019-10-15 16:00:00,452 Forest St, New York City,NY,10001 +262065,Macbook Pro Laptop,1,1700.0,2019-10-08 21:01:00,298 Ridge St, Dallas,TX,75001 +262066,27in FHD Monitor,1,149.99,2019-10-14 16:23:00,383 Lake St, New York City,NY,10001 +262067,Lightning Charging Cable,1,14.95,2019-10-15 07:55:00,354 14th St, San Francisco,CA,94016 +262068,AAA Batteries (4-pack),2,2.99,2019-10-23 19:43:00,150 Pine St, Los Angeles,CA,90001 +262069,Bose SoundSport Headphones,1,99.99,2019-10-09 17:42:00,689 12th St, Boston,MA,02215 +262070,AAA Batteries (4-pack),1,2.99,2019-10-03 18:20:00,725 5th St, San Francisco,CA,94016 +262071,AA Batteries (4-pack),1,3.84,2019-10-30 15:25:00,742 Meadow St, Los Angeles,CA,90001 +262072,AAA Batteries (4-pack),5,2.99,2019-10-03 15:10:00,796 South St, San Francisco,CA,94016 +262073,Google Phone,1,600.0,2019-10-20 15:19:00,85 Pine St, San Francisco,CA,94016 +262074,AAA Batteries (4-pack),1,2.99,2019-10-03 21:47:00,19 Lakeview St, San Francisco,CA,94016 +262075,AA Batteries (4-pack),1,3.84,2019-10-13 23:12:00,432 Walnut St, Boston,MA,02215 +262076,AA Batteries (4-pack),1,3.84,2019-10-13 11:38:00,711 Lincoln St, Portland,ME,04101 +262077,Wired Headphones,1,11.99,2019-10-16 22:02:00,633 10th St, Los Angeles,CA,90001 +262078,Bose SoundSport Headphones,1,99.99,2019-10-01 15:22:00,158 Cherry St, San Francisco,CA,94016 +262079,Bose SoundSport Headphones,1,99.99,2019-10-12 16:57:00,326 11th St, Los Angeles,CA,90001 +262080,Bose SoundSport Headphones,1,99.99,2019-10-10 15:55:00,906 9th St, San Francisco,CA,94016 +262080,AAA Batteries (4-pack),1,2.99,2019-10-10 15:55:00,906 9th St, San Francisco,CA,94016 +262081,Wired Headphones,1,11.99,2019-10-08 17:19:00,603 South St, New York City,NY,10001 +262082,Flatscreen TV,1,300.0,2019-10-10 17:39:00,385 Willow St, Dallas,TX,75001 +262083,AA Batteries (4-pack),2,3.84,2019-10-27 19:34:00,213 Maple St, Dallas,TX,75001 +262084,ThinkPad Laptop,1,999.99,2019-10-31 11:41:00,489 Lakeview St, New York City,NY,10001 +262085,AA Batteries (4-pack),1,3.84,2019-10-19 20:22:00,81 Willow St, Boston,MA,02215 +262086,34in Ultrawide Monitor,1,379.99,2019-10-23 18:12:00,172 4th St, San Francisco,CA,94016 +262087,AA Batteries (4-pack),1,3.84,2019-10-20 09:18:00,564 Lakeview St, Dallas,TX,75001 +262088,Wired Headphones,1,11.99,2019-10-07 17:58:00,746 Sunset St, Austin,TX,73301 +262089,USB-C Charging Cable,2,11.95,2019-10-24 11:43:00,175 Lincoln St, Dallas,TX,75001 +262090,Bose SoundSport Headphones,1,99.99,2019-10-02 08:12:00,273 10th St, Portland,ME,04101 +262091,AA Batteries (4-pack),2,3.84,2019-10-23 17:31:00,69 Dogwood St, Los Angeles,CA,90001 +262092,Apple Airpods Headphones,1,150.0,2019-10-28 17:06:00,478 13th St, San Francisco,CA,94016 +262093,USB-C Charging Cable,1,11.95,2019-10-03 09:00:00,964 Pine St, San Francisco,CA,94016 +262094,34in Ultrawide Monitor,1,379.99,2019-10-29 11:59:00,762 14th St, San Francisco,CA,94016 +262094,Wired Headphones,1,11.99,2019-10-29 11:59:00,762 14th St, San Francisco,CA,94016 +262095,Google Phone,1,600.0,2019-10-07 07:38:00,394 9th St, Seattle,WA,98101 +262095,USB-C Charging Cable,1,11.95,2019-10-07 07:38:00,394 9th St, Seattle,WA,98101 +262096,27in FHD Monitor,1,149.99,2019-10-31 09:53:00,321 Chestnut St, San Francisco,CA,94016 +262097,Lightning Charging Cable,1,14.95,2019-10-11 23:33:00,202 11th St, San Francisco,CA,94016 +262098,Wired Headphones,1,11.99,2019-10-21 14:29:00,537 Washington St, Seattle,WA,98101 +262099,Apple Airpods Headphones,1,150.0,2019-10-10 10:55:00,980 9th St, Boston,MA,02215 +262100,AAA Batteries (4-pack),1,2.99,2019-10-05 08:42:00,439 Johnson St, San Francisco,CA,94016 +262101,AAA Batteries (4-pack),1,2.99,2019-10-26 15:41:00,548 11th St, Austin,TX,73301 +262102,AA Batteries (4-pack),1,3.84,2019-10-20 10:34:00,773 Wilson St, Atlanta,GA,30301 +262103,Lightning Charging Cable,1,14.95,2019-10-16 13:21:00,545 Madison St, New York City,NY,10001 +262104,Lightning Charging Cable,1,14.95,2019-10-14 11:40:00,728 11th St, Atlanta,GA,30301 +262105,AAA Batteries (4-pack),1,2.99,2019-10-27 20:06:00,774 West St, New York City,NY,10001 +262106,Wired Headphones,1,11.99,2019-10-01 11:34:00,260 Cedar St, Seattle,WA,98101 +262107,Bose SoundSport Headphones,1,99.99,2019-10-30 19:00:00,187 Madison St, Boston,MA,02215 +262108,Vareebadd Phone,1,400.0,2019-10-04 06:08:00,210 10th St, Los Angeles,CA,90001 +262108,USB-C Charging Cable,1,11.95,2019-10-04 06:08:00,210 10th St, Los Angeles,CA,90001 +262109,Vareebadd Phone,1,400.0,2019-10-02 09:20:00,522 Park St, Atlanta,GA,30301 +262110,USB-C Charging Cable,1,11.95,2019-10-20 10:56:00,204 12th St, Dallas,TX,75001 +262111,Flatscreen TV,1,300.0,2019-10-25 21:21:00,777 Spruce St, San Francisco,CA,94016 +262112,LG Washing Machine,1,600.0,2019-10-19 11:26:00,99 Cedar St, Los Angeles,CA,90001 +262113,USB-C Charging Cable,1,11.95,2019-10-30 18:59:00,548 Forest St, New York City,NY,10001 +262114,USB-C Charging Cable,1,11.95,2019-10-14 10:40:00,87 River St, Portland,OR,97035 +262115,34in Ultrawide Monitor,1,379.99,2019-10-26 12:07:00,183 Hill St, San Francisco,CA,94016 +262116,27in 4K Gaming Monitor,1,389.99,2019-10-26 20:00:00,399 Meadow St, Boston,MA,02215 +262117,AA Batteries (4-pack),1,3.84,2019-10-17 21:44:00,104 Dogwood St, San Francisco,CA,94016 +262118,Bose SoundSport Headphones,1,99.99,2019-10-06 07:15:00,564 North St, San Francisco,CA,94016 +262119,Google Phone,1,600.0,2019-10-26 08:42:00,62 Jackson St, Atlanta,GA,30301 +262120,Apple Airpods Headphones,1,150.0,2019-10-18 20:07:00,664 Maple St, New York City,NY,10001 +262121,27in 4K Gaming Monitor,1,389.99,2019-10-26 11:18:00,439 Hickory St, Austin,TX,73301 +262122,Google Phone,1,600.0,2019-10-16 14:08:00,927 Washington St, New York City,NY,10001 +262123,iPhone,1,700.0,2019-10-31 15:40:00,16 7th St, Portland,ME,04101 +262124,iPhone,1,700.0,2019-10-25 15:25:00,439 Cedar St, Los Angeles,CA,90001 +262125,AAA Batteries (4-pack),1,2.99,2019-10-10 12:05:00,832 Main St, Los Angeles,CA,90001 +262126,USB-C Charging Cable,1,11.95,2019-10-11 16:33:00,370 Jefferson St, Los Angeles,CA,90001 +262127,Wired Headphones,1,11.99,2019-10-02 19:14:00,833 2nd St, Boston,MA,02215 +262128,AAA Batteries (4-pack),1,2.99,2019-10-02 20:55:00,894 Lakeview St, New York City,NY,10001 +262129,Wired Headphones,2,11.99,2019-10-30 10:10:00,840 Cherry St, Portland,ME,04101 +262130,Apple Airpods Headphones,1,150.0,2019-10-24 18:40:00,675 4th St, Atlanta,GA,30301 +262131,USB-C Charging Cable,2,11.95,2019-10-02 06:23:00,154 Dogwood St, San Francisco,CA,94016 +262132,Wired Headphones,1,11.99,2019-10-20 12:47:00,522 Walnut St, Boston,MA,02215 +262133,Wired Headphones,1,11.99,2019-10-05 11:58:00,993 4th St, Los Angeles,CA,90001 +262134,34in Ultrawide Monitor,1,379.99,2019-10-25 22:25:00,448 Meadow St, Los Angeles,CA,90001 +262135,Bose SoundSport Headphones,1,99.99,2019-10-09 19:00:00,346 Lincoln St, Dallas,TX,75001 +262136,Macbook Pro Laptop,1,1700.0,2019-10-23 15:33:00,613 7th St, Los Angeles,CA,90001 +262137,USB-C Charging Cable,1,11.95,2019-10-13 15:07:00,877 Willow St, Boston,MA,02215 +262138,AAA Batteries (4-pack),1,2.99,2019-10-19 12:42:00,152 Adams St, Dallas,TX,75001 +262139,Apple Airpods Headphones,1,150.0,2019-10-12 13:13:00,411 South St, Boston,MA,02215 +262140,AA Batteries (4-pack),2,3.84,2019-10-05 13:23:00,418 Madison St, Boston,MA,02215 +262141,USB-C Charging Cable,1,11.95,2019-10-31 01:13:00,492 Lakeview St, San Francisco,CA,94016 +262142,Lightning Charging Cable,1,14.95,2019-10-05 21:05:00,307 Madison St, Seattle,WA,98101 +262143,Apple Airpods Headphones,1,150.0,2019-10-29 14:42:00,130 4th St, Boston,MA,02215 +262144,27in 4K Gaming Monitor,1,389.99,2019-10-04 14:47:00,87 13th St, Portland,OR,97035 +262145,Macbook Pro Laptop,1,1700.0,2019-10-19 02:54:00,469 2nd St, San Francisco,CA,94016 +262146,Wired Headphones,1,11.99,2019-10-25 09:44:00,406 Chestnut St, Portland,OR,97035 +262147,AA Batteries (4-pack),1,3.84,2019-10-20 16:21:00,370 Church St, New York City,NY,10001 +262148,iPhone,1,700.0,2019-10-15 22:45:00,150 Highland St, Boston,MA,02215 +262148,Lightning Charging Cable,1,14.95,2019-10-15 22:45:00,150 Highland St, Boston,MA,02215 +262148,USB-C Charging Cable,1,11.95,2019-10-15 22:45:00,150 Highland St, Boston,MA,02215 +262149,Google Phone,1,600.0,2019-10-17 10:06:00,274 Maple St, Dallas,TX,75001 +262150,Apple Airpods Headphones,1,150.0,2019-10-17 20:53:00,940 Willow St, Seattle,WA,98101 +262151,Lightning Charging Cable,1,14.95,2019-10-11 08:34:00,207 Dogwood St, Austin,TX,73301 +262152,Apple Airpods Headphones,1,150.0,2019-10-11 18:48:00,169 1st St, San Francisco,CA,94016 +262153,USB-C Charging Cable,1,11.95,2019-10-25 01:03:00,703 Highland St, Los Angeles,CA,90001 +262154,Vareebadd Phone,1,400.0,2019-10-28 07:44:00,377 Cedar St, New York City,NY,10001 +262154,USB-C Charging Cable,1,11.95,2019-10-28 07:44:00,377 Cedar St, New York City,NY,10001 +262155,AA Batteries (4-pack),1,3.84,2019-10-21 14:54:00,653 4th St, San Francisco,CA,94016 +262156,Apple Airpods Headphones,1,150.0,2019-10-21 20:11:00,50 Church St, Austin,TX,73301 +262156,Lightning Charging Cable,1,14.95,2019-10-21 20:11:00,50 Church St, Austin,TX,73301 +262157,USB-C Charging Cable,1,11.95,2019-10-11 13:30:00,449 Maple St, Boston,MA,02215 +262158,27in 4K Gaming Monitor,1,389.99,2019-10-09 08:40:00,382 Sunset St, Los Angeles,CA,90001 +262159,Macbook Pro Laptop,1,1700.0,2019-10-26 12:41:00,823 Hill St, Portland,OR,97035 +262160,AAA Batteries (4-pack),1,2.99,2019-10-08 09:06:00,371 Johnson St, Dallas,TX,75001 +262161,AAA Batteries (4-pack),1,2.99,2019-10-28 00:18:00,777 Lincoln St, San Francisco,CA,94016 +262162,AAA Batteries (4-pack),1,2.99,2019-10-16 18:26:00,822 Sunset St, Los Angeles,CA,90001 +262163,Lightning Charging Cable,1,14.95,2019-10-11 12:10:00,604 14th St, Los Angeles,CA,90001 +262164,AAA Batteries (4-pack),2,2.99,2019-10-27 23:50:00,930 11th St, San Francisco,CA,94016 +262165,Google Phone,1,600.0,2019-10-22 14:29:00,200 Johnson St, San Francisco,CA,94016 +262165,Wired Headphones,2,11.99,2019-10-22 14:29:00,200 Johnson St, San Francisco,CA,94016 +262166,USB-C Charging Cable,1,11.95,2019-10-06 11:17:00,902 Hill St, Boston,MA,02215 +262167,Lightning Charging Cable,1,14.95,2019-10-24 12:57:00,376 Center St, Portland,OR,97035 +262168,AAA Batteries (4-pack),1,2.99,2019-10-30 10:10:00,615 Center St, Atlanta,GA,30301 +262169,iPhone,1,700.0,2019-10-08 21:16:00,412 1st St, San Francisco,CA,94016 +262170,Lightning Charging Cable,1,14.95,2019-10-15 15:09:00,213 Chestnut St, Los Angeles,CA,90001 +262171,Lightning Charging Cable,1,14.95,2019-10-06 01:31:00,969 2nd St, Los Angeles,CA,90001 +262172,Lightning Charging Cable,1,14.95,2019-10-06 11:19:00,920 Chestnut St, Seattle,WA,98101 +262173,LG Washing Machine,1,600.0,2019-10-13 08:20:00,621 Lakeview St, Seattle,WA,98101 +262174,Apple Airpods Headphones,1,150.0,2019-10-14 14:23:00,380 Hickory St, San Francisco,CA,94016 +262175,Apple Airpods Headphones,1,150.0,2019-10-22 13:03:00,257 Cherry St, San Francisco,CA,94016 +262176,Bose SoundSport Headphones,1,99.99,2019-10-25 13:45:00,811 Willow St, Boston,MA,02215 +262177,AA Batteries (4-pack),2,3.84,2019-10-17 15:07:00,113 Meadow St, Boston,MA,02215 +262178,USB-C Charging Cable,1,11.95,2019-10-29 11:55:00,603 Hill St, Atlanta,GA,30301 +262179,27in 4K Gaming Monitor,1,389.99,2019-10-22 14:02:00,24 13th St, San Francisco,CA,94016 +262180,AA Batteries (4-pack),4,3.84,2019-10-30 10:47:00,475 Main St, Los Angeles,CA,90001 +262181,AA Batteries (4-pack),1,3.84,2019-10-11 23:35:00,651 Meadow St, Atlanta,GA,30301 +262182,AA Batteries (4-pack),2,3.84,2019-10-10 09:31:00,445 Willow St, Seattle,WA,98101 +262183,AAA Batteries (4-pack),1,2.99,2019-10-11 11:13:00,538 Highland St, San Francisco,CA,94016 +262184,20in Monitor,1,109.99,2019-10-27 09:14:00,291 Pine St, San Francisco,CA,94016 +262185,AA Batteries (4-pack),1,3.84,2019-10-05 15:12:00,75 Walnut St, Portland,OR,97035 +262186,Lightning Charging Cable,1,14.95,2019-10-18 11:15:00,250 13th St, Austin,TX,73301 +262187,ThinkPad Laptop,1,999.99,2019-10-03 07:00:00,695 Lakeview St, San Francisco,CA,94016 +262188,Lightning Charging Cable,1,14.95,2019-10-15 15:16:00,110 8th St, San Francisco,CA,94016 +262189,USB-C Charging Cable,1,11.95,2019-10-23 10:37:00,926 8th St, New York City,NY,10001 +262190,USB-C Charging Cable,1,11.95,2019-10-26 13:28:00,416 2nd St, Atlanta,GA,30301 +262191,Apple Airpods Headphones,1,150.0,2019-10-27 11:08:00,422 2nd St, Portland,OR,97035 +262192,ThinkPad Laptop,1,999.99,2019-10-05 00:08:00,493 Ridge St, Boston,MA,02215 +262193,34in Ultrawide Monitor,1,379.99,2019-10-08 19:51:00,319 6th St, San Francisco,CA,94016 +262194,AA Batteries (4-pack),2,3.84,2019-10-18 11:32:00,4 11th St, Dallas,TX,75001 +262195,20in Monitor,1,109.99,2019-10-05 20:39:00,240 West St, San Francisco,CA,94016 +262196,AA Batteries (4-pack),3,3.84,2019-10-05 09:26:00,785 Forest St, San Francisco,CA,94016 +262197,USB-C Charging Cable,1,11.95,2019-10-28 16:32:00,718 5th St, Portland,OR,97035 +262198,Lightning Charging Cable,1,14.95,2019-10-29 08:06:00,34 2nd St, Portland,OR,97035 +262199,AA Batteries (4-pack),1,3.84,2019-10-14 14:52:00,608 Johnson St, Seattle,WA,98101 +262200,USB-C Charging Cable,1,11.95,2019-10-26 07:54:00,461 Johnson St, Seattle,WA,98101 +262201,27in FHD Monitor,1,149.99,2019-10-30 09:54:00,211 Spruce St, Boston,MA,02215 +262202,USB-C Charging Cable,1,11.95,2019-10-21 00:39:00,32 5th St, Boston,MA,02215 +262203,AA Batteries (4-pack),1,3.84,2019-10-12 18:36:00,295 Lakeview St, San Francisco,CA,94016 +262204,Lightning Charging Cable,1,14.95,2019-10-12 18:37:00,160 Cherry St, Boston,MA,02215 +262205,Apple Airpods Headphones,1,150.0,2019-10-02 20:30:00,507 Jefferson St, San Francisco,CA,94016 +262206,AAA Batteries (4-pack),4,2.99,2019-10-28 21:34:00,455 13th St, Los Angeles,CA,90001 +262207,iPhone,1,700.0,2019-10-22 11:45:00,46 Elm St, Austin,TX,73301 +262207,Wired Headphones,1,11.99,2019-10-22 11:45:00,46 Elm St, Austin,TX,73301 +262208,Bose SoundSport Headphones,1,99.99,2019-10-04 23:32:00,856 10th St, New York City,NY,10001 +262209,Wired Headphones,1,11.99,2019-10-09 13:35:00,187 Park St, San Francisco,CA,94016 +262210,Lightning Charging Cable,1,14.95,2019-10-24 06:55:00,434 River St, Portland,OR,97035 +262211,34in Ultrawide Monitor,1,379.99,2019-10-11 07:27:00,527 Hickory St, Seattle,WA,98101 +262212,Wired Headphones,1,11.99,2019-10-13 18:41:00,225 14th St, Atlanta,GA,30301 +262213,AAA Batteries (4-pack),2,2.99,2019-10-30 13:49:00,231 Walnut St, Los Angeles,CA,90001 +262214,Wired Headphones,1,11.99,2019-10-02 20:29:00,502 Lakeview St, Dallas,TX,75001 +262215,Lightning Charging Cable,1,14.95,2019-10-19 16:22:00,489 12th St, Austin,TX,73301 +262216,Wired Headphones,1,11.99,2019-10-04 11:13:00,745 Cedar St, Los Angeles,CA,90001 +262217,iPhone,1,700.0,2019-10-02 11:25:00,404 Washington St, Atlanta,GA,30301 +262218,USB-C Charging Cable,1,11.95,2019-10-19 17:44:00,342 Cherry St, Boston,MA,02215 +262219,iPhone,1,700.0,2019-10-09 08:02:00,311 Forest St, Seattle,WA,98101 +262220,Lightning Charging Cable,1,14.95,2019-10-28 09:21:00,839 7th St, Los Angeles,CA,90001 +262221,AA Batteries (4-pack),1,3.84,2019-10-23 19:53:00,309 Meadow St, New York City,NY,10001 +262222,Flatscreen TV,1,300.0,2019-10-27 23:20:00,233 Jefferson St, Los Angeles,CA,90001 +262223,USB-C Charging Cable,1,11.95,2019-10-20 20:13:00,603 Adams St, Seattle,WA,98101 +262224,Google Phone,1,600.0,2019-10-04 08:00:00,737 Sunset St, San Francisco,CA,94016 +262225,Google Phone,1,600.0,2019-10-28 14:01:00,954 Pine St, San Francisco,CA,94016 +262225,Wired Headphones,1,11.99,2019-10-28 14:01:00,954 Pine St, San Francisco,CA,94016 +262226,Google Phone,1,600.0,2019-10-20 16:57:00,814 Adams St, Los Angeles,CA,90001 +262226,USB-C Charging Cable,1,11.95,2019-10-20 16:57:00,814 Adams St, Los Angeles,CA,90001 +262227,20in Monitor,1,109.99,2019-10-07 19:34:00,244 Lakeview St, New York City,NY,10001 +262228,LG Dryer,1,600.0,2019-10-10 10:06:00,697 Cherry St, Los Angeles,CA,90001 +262229,Flatscreen TV,1,300.0,2019-10-30 10:34:00,853 Park St, San Francisco,CA,94016 +262230,Flatscreen TV,1,300.0,2019-10-10 12:40:00,239 Walnut St, Seattle,WA,98101 +262231,Lightning Charging Cable,1,14.95,2019-10-18 12:10:00,192 Center St, San Francisco,CA,94016 +262232,Bose SoundSport Headphones,1,99.99,2019-10-14 15:07:00,193 9th St, Los Angeles,CA,90001 +262233,AA Batteries (4-pack),2,3.84,2019-10-02 01:09:00,119 14th St, Los Angeles,CA,90001 +262234,Apple Airpods Headphones,1,150.0,2019-10-13 16:34:00,773 Cherry St, Boston,MA,02215 +262235,AAA Batteries (4-pack),1,2.99,2019-10-23 21:18:00,918 9th St, San Francisco,CA,94016 +262236,Lightning Charging Cable,1,14.95,2019-10-27 11:14:00,133 4th St, Atlanta,GA,30301 +262237,Apple Airpods Headphones,1,150.0,2019-10-06 13:23:00,844 Jackson St, San Francisco,CA,94016 +262238,Google Phone,1,600.0,2019-10-26 18:19:00,929 Adams St, San Francisco,CA,94016 +262239,USB-C Charging Cable,2,11.95,2019-10-07 21:55:00,4 Center St, Los Angeles,CA,90001 +262240,AAA Batteries (4-pack),1,2.99,2019-10-24 11:49:00,626 Hill St, New York City,NY,10001 +262241,Apple Airpods Headphones,1,150.0,2019-10-29 10:32:00,576 Cherry St, Atlanta,GA,30301 +262242,iPhone,1,700.0,2019-10-11 09:35:00,558 6th St, Boston,MA,02215 +262242,Wired Headphones,1,11.99,2019-10-11 09:35:00,558 6th St, Boston,MA,02215 +262243,34in Ultrawide Monitor,1,379.99,2019-10-31 10:14:00,177 Chestnut St, Atlanta,GA,30301 +262244,AAA Batteries (4-pack),2,2.99,2019-10-22 12:03:00,38 Sunset St, Seattle,WA,98101 +262245,AA Batteries (4-pack),2,3.84,2019-10-24 10:41:00,666 Washington St, Austin,TX,73301 +262246,Vareebadd Phone,1,400.0,2019-10-30 21:28:00,106 Dogwood St, Dallas,TX,75001 +262246,USB-C Charging Cable,1,11.95,2019-10-30 21:28:00,106 Dogwood St, Dallas,TX,75001 +262247,AA Batteries (4-pack),1,3.84,2019-10-11 19:09:00,668 5th St, San Francisco,CA,94016 +262248,AA Batteries (4-pack),1,3.84,2019-10-24 14:03:00,412 Sunset St, Boston,MA,02215 +262249,Wired Headphones,1,11.99,2019-10-21 09:34:00,866 Johnson St, New York City,NY,10001 +262250,Apple Airpods Headphones,1,150.0,2019-10-10 11:54:00,415 Maple St, Los Angeles,CA,90001 +262250,USB-C Charging Cable,1,11.95,2019-10-10 11:54:00,415 Maple St, Los Angeles,CA,90001 +262251,Wired Headphones,1,11.99,2019-10-03 18:16:00,253 Hickory St, Los Angeles,CA,90001 +262252,20in Monitor,1,109.99,2019-10-09 12:11:00,302 Cedar St, San Francisco,CA,94016 +262253,Lightning Charging Cable,1,14.95,2019-10-03 16:08:00,737 12th St, Los Angeles,CA,90001 +262254,Lightning Charging Cable,1,14.95,2019-10-09 12:46:00,644 12th St, San Francisco,CA,94016 +262255,Lightning Charging Cable,1,14.95,2019-10-10 11:56:00,528 Maple St, San Francisco,CA,94016 +262256,Lightning Charging Cable,1,14.95,2019-10-19 17:12:00,904 4th St, San Francisco,CA,94016 +262257,Flatscreen TV,1,300.0,2019-10-07 16:22:00,896 Park St, San Francisco,CA,94016 +262258,Wired Headphones,1,11.99,2019-10-09 20:28:00,77 Jefferson St, Portland,OR,97035 +262259,AA Batteries (4-pack),2,3.84,2019-10-25 20:21:00,324 Walnut St, Dallas,TX,75001 +262260,AAA Batteries (4-pack),1,2.99,2019-10-11 01:22:00,710 9th St, New York City,NY,10001 +262261,20in Monitor,1,109.99,2019-10-26 08:00:00,442 Walnut St, Boston,MA,02215 +262262,iPhone,1,700.0,2019-10-20 07:50:00,828 8th St, San Francisco,CA,94016 +262262,Lightning Charging Cable,1,14.95,2019-10-20 07:50:00,828 8th St, San Francisco,CA,94016 +262263,Apple Airpods Headphones,1,150.0,2019-10-26 10:30:00,241 Forest St, Seattle,WA,98101 +262264,Vareebadd Phone,1,400.0,2019-10-12 12:24:00,579 Pine St, New York City,NY,10001 +262265,AA Batteries (4-pack),1,3.84,2019-10-05 12:55:00,800 Madison St, Austin,TX,73301 +262266,iPhone,1,700.0,2019-10-17 16:49:00,508 Cedar St, Portland,OR,97035 +262267,Bose SoundSport Headphones,1,99.99,2019-10-17 11:32:00,282 Cherry St, Los Angeles,CA,90001 +262268,USB-C Charging Cable,1,11.95,2019-10-02 21:43:00,653 Walnut St, Los Angeles,CA,90001 +262269,AA Batteries (4-pack),1,3.84,2019-10-19 20:47:00,137 Spruce St, Boston,MA,02215 +262270,Lightning Charging Cable,1,14.95,2019-10-31 07:07:00,628 Meadow St, Seattle,WA,98101 +262271,AAA Batteries (4-pack),1,2.99,2019-10-11 16:44:00,699 14th St, Portland,OR,97035 +262272,USB-C Charging Cable,1,11.95,2019-10-23 14:45:00,56 Maple St, San Francisco,CA,94016 +262273,USB-C Charging Cable,1,11.95,2019-10-09 16:02:00,207 Lincoln St, New York City,NY,10001 +262274,Apple Airpods Headphones,1,150.0,2019-10-02 13:40:00,469 Walnut St, Austin,TX,73301 +262275,Lightning Charging Cable,1,14.95,2019-10-13 12:10:00,989 Lincoln St, Portland,OR,97035 +262276,Wired Headphones,1,11.99,2019-10-04 12:55:00,906 Dogwood St, Los Angeles,CA,90001 +262277,Wired Headphones,2,11.99,2019-10-26 22:19:00,859 Sunset St, New York City,NY,10001 +262278,AA Batteries (4-pack),1,3.84,2019-10-22 18:11:00,905 Meadow St, Portland,OR,97035 +262279,USB-C Charging Cable,1,11.95,2019-10-08 16:59:00,871 Jackson St, Seattle,WA,98101 +262280,Apple Airpods Headphones,1,150.0,2019-10-25 18:00:00,898 5th St, Portland,OR,97035 +262281,AAA Batteries (4-pack),1,2.99,2019-10-03 17:24:00,37 6th St, Boston,MA,02215 +262282,ThinkPad Laptop,1,999.99,2019-10-04 09:36:00,788 River St, New York City,NY,10001 +262283,Wired Headphones,1,11.99,2019-10-03 13:32:00,996 6th St, San Francisco,CA,94016 +262284,AAA Batteries (4-pack),1,2.99,2019-10-17 08:53:00,464 Hill St, Los Angeles,CA,90001 +262285,Lightning Charging Cable,1,14.95,2019-10-01 10:23:00,367 13th St, New York City,NY,10001 +262286,27in FHD Monitor,1,149.99,2019-10-01 06:49:00,95 11th St, Austin,TX,73301 +262287,27in FHD Monitor,1,149.99,2019-10-19 11:46:00,850 9th St, Dallas,TX,75001 +262288,Google Phone,1,600.0,2019-10-06 09:28:00,377 Dogwood St, Atlanta,GA,30301 +262288,Bose SoundSport Headphones,1,99.99,2019-10-06 09:28:00,377 Dogwood St, Atlanta,GA,30301 +262289,Wired Headphones,1,11.99,2019-10-10 22:36:00,326 Walnut St, San Francisco,CA,94016 +262290,Lightning Charging Cable,1,14.95,2019-10-29 21:19:00,135 Willow St, Boston,MA,02215 +262291,USB-C Charging Cable,1,11.95,2019-10-21 19:40:00,531 Hill St, Boston,MA,02215 +262292,Bose SoundSport Headphones,1,99.99,2019-10-20 21:46:00,922 Park St, Portland,OR,97035 +262293,27in FHD Monitor,1,149.99,2019-10-16 13:45:00,310 Sunset St, Portland,OR,97035 +262293,AA Batteries (4-pack),2,3.84,2019-10-16 13:45:00,310 Sunset St, Portland,OR,97035 +262294,27in 4K Gaming Monitor,1,389.99,2019-10-18 16:36:00,417 Lincoln St, Boston,MA,02215 +262295,AAA Batteries (4-pack),2,2.99,2019-10-21 18:48:00,871 Lake St, Los Angeles,CA,90001 +262296,Wired Headphones,1,11.99,2019-10-28 19:41:00,109 5th St, Dallas,TX,75001 +262297,AAA Batteries (4-pack),1,2.99,2019-10-22 11:41:00,647 Forest St, Dallas,TX,75001 +262298,AAA Batteries (4-pack),1,2.99,2019-10-04 23:59:00,92 Sunset St, Portland,OR,97035 +262299,Bose SoundSport Headphones,1,99.99,2019-10-30 15:04:00,421 12th St, Los Angeles,CA,90001 +262300,AA Batteries (4-pack),1,3.84,2019-10-13 09:07:00,953 Washington St, Dallas,TX,75001 +262301,Macbook Pro Laptop,1,1700.0,2019-10-14 12:13:00,12 South St, Los Angeles,CA,90001 +262302,Lightning Charging Cable,1,14.95,2019-10-17 21:30:00,217 Jefferson St, Atlanta,GA,30301 +262303,AAA Batteries (4-pack),2,2.99,2019-10-17 21:42:00,517 1st St, Austin,TX,73301 +262304,ThinkPad Laptop,1,999.99,2019-10-17 19:08:00,232 Hill St, Atlanta,GA,30301 +262305,Wired Headphones,1,11.99,2019-10-01 14:46:00,8 Lakeview St, Portland,ME,04101 +262306,AA Batteries (4-pack),1,3.84,2019-10-24 15:39:00,235 Pine St, San Francisco,CA,94016 +262307,AA Batteries (4-pack),1,3.84,2019-10-21 06:38:00,451 Forest St, Los Angeles,CA,90001 +262308,Bose SoundSport Headphones,1,99.99,2019-10-15 21:43:00,15 Forest St, New York City,NY,10001 +262309,Macbook Pro Laptop,1,1700.0,2019-10-07 17:02:00,72 2nd St, Dallas,TX,75001 +262310,Flatscreen TV,1,300.0,2019-10-08 16:12:00,809 Ridge St, San Francisco,CA,94016 +262311,Google Phone,1,600.0,2019-10-31 08:06:00,890 Jackson St, San Francisco,CA,94016 +262312,Wired Headphones,1,11.99,2019-10-21 19:05:00,403 6th St, New York City,NY,10001 +262313,AA Batteries (4-pack),1,3.84,2019-10-30 23:34:00,904 Willow St, Los Angeles,CA,90001 +262314,USB-C Charging Cable,1,11.95,2019-10-18 22:22:00,537 Madison St, San Francisco,CA,94016 +262315,Apple Airpods Headphones,1,150.0,2019-10-28 09:34:00,487 2nd St, Los Angeles,CA,90001 +262316,Apple Airpods Headphones,1,150.0,2019-10-24 19:23:00,621 Maple St, Seattle,WA,98101 +262316,Bose SoundSport Headphones,1,99.99,2019-10-24 19:23:00,621 Maple St, Seattle,WA,98101 +262317,iPhone,1,700.0,2019-10-31 22:13:00,108 Center St, New York City,NY,10001 +262318,Wired Headphones,1,11.99,2019-10-12 20:33:00,858 Meadow St, Los Angeles,CA,90001 +262319,ThinkPad Laptop,1,999.99,2019-10-31 17:28:00,245 Madison St, San Francisco,CA,94016 +262320,20in Monitor,1,109.99,2019-10-16 15:12:00,696 Main St, Los Angeles,CA,90001 +262321,Apple Airpods Headphones,1,150.0,2019-10-29 19:12:00,783 Pine St, Dallas,TX,75001 +262322,Bose SoundSport Headphones,1,99.99,2019-10-05 19:22:00,670 Jackson St, New York City,NY,10001 +262323,AA Batteries (4-pack),2,3.84,2019-10-08 13:10:00,23 South St, Los Angeles,CA,90001 +262324,AA Batteries (4-pack),3,3.84,2019-10-26 20:56:00,127 11th St, Seattle,WA,98101 +262325,USB-C Charging Cable,1,11.95,2019-10-05 11:04:00,592 Johnson St, Los Angeles,CA,90001 +262326,AA Batteries (4-pack),1,3.84,2019-10-25 23:05:00,724 12th St, Los Angeles,CA,90001 +262327,Wired Headphones,1,11.99,2019-10-06 22:06:00,808 5th St, Los Angeles,CA,90001 +262328,Wired Headphones,1,11.99,2019-10-03 16:21:00,13 6th St, Boston,MA,02215 +262329,Lightning Charging Cable,1,14.95,2019-10-19 11:15:00,946 Wilson St, Atlanta,GA,30301 +262330,27in 4K Gaming Monitor,1,389.99,2019-10-01 08:08:00,763 River St, Portland,OR,97035 +262331,Macbook Pro Laptop,1,1700.0,2019-10-04 21:24:00,451 Maple St, Atlanta,GA,30301 +262332,AA Batteries (4-pack),2,3.84,2019-10-28 10:34:00,33 2nd St, Portland,OR,97035 +262333,AA Batteries (4-pack),1,3.84,2019-10-04 12:33:00,637 Walnut St, New York City,NY,10001 +262334,Macbook Pro Laptop,1,1700.0,2019-10-30 11:12:00,995 4th St, Seattle,WA,98101 +262335,Apple Airpods Headphones,1,150.0,2019-10-29 17:15:00,317 Walnut St, San Francisco,CA,94016 +262336,Wired Headphones,1,11.99,2019-10-08 20:24:00,112 Chestnut St, Atlanta,GA,30301 +262337,Wired Headphones,1,11.99,2019-10-28 13:54:00,514 Hill St, Seattle,WA,98101 +262338,27in FHD Monitor,1,149.99,2019-10-10 17:21:00,839 12th St, New York City,NY,10001 +262339,AA Batteries (4-pack),1,3.84,2019-10-04 15:00:00,687 Ridge St, Boston,MA,02215 +262340,Lightning Charging Cable,1,14.95,2019-10-13 16:40:00,266 Hickory St, Dallas,TX,75001 +262341,Lightning Charging Cable,1,14.95,2019-10-26 11:04:00,876 8th St, Boston,MA,02215 +262342,27in 4K Gaming Monitor,1,389.99,2019-10-05 13:16:00,242 River St, Austin,TX,73301 +262343,Wired Headphones,1,11.99,2019-10-01 17:19:00,644 South St, Dallas,TX,75001 +262344,Macbook Pro Laptop,1,1700.0,2019-10-19 19:45:00,245 Park St, Dallas,TX,75001 +262345,AA Batteries (4-pack),1,3.84,2019-10-19 06:57:00,531 Walnut St, San Francisco,CA,94016 +262346,Apple Airpods Headphones,1,150.0,2019-10-10 15:26:00,363 Highland St, New York City,NY,10001 +262347,34in Ultrawide Monitor,1,379.99,2019-10-22 05:40:00,433 Ridge St, Atlanta,GA,30301 +262348,Bose SoundSport Headphones,1,99.99,2019-10-26 19:37:00,341 Church St, San Francisco,CA,94016 +262349,iPhone,1,700.0,2019-10-06 18:14:00,152 Spruce St, Portland,OR,97035 +262350,Lightning Charging Cable,1,14.95,2019-10-31 21:32:00,5 Wilson St, San Francisco,CA,94016 +262351,AAA Batteries (4-pack),2,2.99,2019-10-07 08:02:00,865 South St, Boston,MA,02215 +262352,Bose SoundSport Headphones,1,99.99,2019-10-29 23:07:00,415 Hill St, San Francisco,CA,94016 +262353,AAA Batteries (4-pack),2,2.99,2019-10-25 11:03:00,398 Walnut St, San Francisco,CA,94016 +262354,Google Phone,1,600.0,2019-10-17 22:17:00,404 8th St, Atlanta,GA,30301 +262354,USB-C Charging Cable,1,11.95,2019-10-17 22:17:00,404 8th St, Atlanta,GA,30301 +262355,Google Phone,1,600.0,2019-10-15 10:25:00,554 Washington St, Seattle,WA,98101 +262356,Google Phone,1,600.0,2019-10-07 11:44:00,434 River St, Los Angeles,CA,90001 +262357,Lightning Charging Cable,1,14.95,2019-10-09 11:04:00,476 Forest St, Austin,TX,73301 +262358,AAA Batteries (4-pack),1,2.99,2019-10-25 15:09:00,59 Main St, Boston,MA,02215 +262359,AA Batteries (4-pack),1,3.84,2019-10-28 01:57:00,657 Washington St, Los Angeles,CA,90001 +262360,Lightning Charging Cable,1,14.95,2019-10-03 17:26:00,880 14th St, Austin,TX,73301 +262361,Bose SoundSport Headphones,1,99.99,2019-10-08 12:49:00,271 Meadow St, San Francisco,CA,94016 +262362,34in Ultrawide Monitor,1,379.99,2019-10-23 11:40:00,135 North St, Boston,MA,02215 +262363,34in Ultrawide Monitor,1,379.99,2019-10-31 13:53:00,709 9th St, Dallas,TX,75001 +262364,Bose SoundSport Headphones,1,99.99,2019-10-17 20:14:00,135 4th St, San Francisco,CA,94016 +262365,Wired Headphones,1,11.99,2019-10-06 21:35:00,347 Spruce St, Atlanta,GA,30301 +262366,Apple Airpods Headphones,1,150.0,2019-10-04 19:26:00,875 Forest St, Portland,OR,97035 +262367,Bose SoundSport Headphones,1,99.99,2019-10-18 06:50:00,782 12th St, San Francisco,CA,94016 +262368,USB-C Charging Cable,1,11.95,2019-10-07 00:54:00,556 7th St, Dallas,TX,75001 +262369,AA Batteries (4-pack),1,3.84,2019-10-02 14:26:00,901 Lincoln St, Dallas,TX,75001 +262370,AA Batteries (4-pack),1,3.84,2019-10-28 12:03:00,1 North St, San Francisco,CA,94016 +262371,34in Ultrawide Monitor,1,379.99,2019-10-23 22:48:00,514 Ridge St, Atlanta,GA,30301 +262372,Wired Headphones,1,11.99,2019-10-24 14:36:00,860 Maple St, San Francisco,CA,94016 +262373,Bose SoundSport Headphones,1,99.99,2019-10-02 09:03:00,191 River St, San Francisco,CA,94016 +262374,AAA Batteries (4-pack),1,2.99,2019-10-29 06:04:00,80 Forest St, New York City,NY,10001 +262375,AA Batteries (4-pack),1,3.84,2019-10-06 20:03:00,603 2nd St, New York City,NY,10001 +262376,Wired Headphones,1,11.99,2019-10-31 11:14:00,332 Highland St, Seattle,WA,98101 +262377,AAA Batteries (4-pack),1,2.99,2019-10-24 19:59:00,3 South St, Portland,OR,97035 +262378,34in Ultrawide Monitor,1,379.99,2019-10-20 14:34:00,408 4th St, Los Angeles,CA,90001 +262379,USB-C Charging Cable,1,11.95,2019-10-05 10:52:00,717 Spruce St, Austin,TX,73301 +262380,AAA Batteries (4-pack),1,2.99,2019-10-22 13:14:00,891 4th St, Boston,MA,02215 +262381,AAA Batteries (4-pack),1,2.99,2019-10-11 08:38:00,904 Jackson St, San Francisco,CA,94016 +262382,USB-C Charging Cable,1,11.95,2019-10-19 17:52:00,674 7th St, Portland,OR,97035 +262383,USB-C Charging Cable,1,11.95,2019-10-15 20:20:00,277 Wilson St, San Francisco,CA,94016 +262384,iPhone,1,700.0,2019-10-30 16:19:00,994 Highland St, San Francisco,CA,94016 +262385,Bose SoundSport Headphones,1,99.99,2019-10-02 12:55:00,805 Forest St, San Francisco,CA,94016 +262386,34in Ultrawide Monitor,1,379.99,2019-10-20 10:47:00,836 Maple St, Los Angeles,CA,90001 +262387,20in Monitor,1,109.99,2019-10-21 21:47:00,922 Willow St, Boston,MA,02215 +262388,Apple Airpods Headphones,1,150.0,2019-10-14 13:37:00,705 Jefferson St, Portland,ME,04101 +262389,AAA Batteries (4-pack),1,2.99,2019-10-02 19:30:00,34 Maple St, San Francisco,CA,94016 +262390,AAA Batteries (4-pack),1,2.99,2019-10-17 11:52:00,507 Pine St, San Francisco,CA,94016 +262391,Lightning Charging Cable,1,14.95,2019-10-16 11:09:00,372 North St, Los Angeles,CA,90001 +262392,Wired Headphones,1,11.99,2019-10-09 19:26:00,570 Elm St, San Francisco,CA,94016 +262393,USB-C Charging Cable,1,11.95,2019-10-27 23:23:00,705 West St, Portland,OR,97035 +262394,AA Batteries (4-pack),2,3.84,2019-10-09 14:20:00,592 Chestnut St, Los Angeles,CA,90001 +262395,Apple Airpods Headphones,1,150.0,2019-10-21 15:26:00,938 Lake St, New York City,NY,10001 +262396,USB-C Charging Cable,1,11.95,2019-10-29 12:33:00,995 Willow St, Austin,TX,73301 +262397,Wired Headphones,2,11.99,2019-10-28 13:00:00,670 Lincoln St, Austin,TX,73301 +262398,AAA Batteries (4-pack),1,2.99,2019-10-08 16:17:00,989 Adams St, Los Angeles,CA,90001 +262399,Apple Airpods Headphones,1,150.0,2019-10-16 09:51:00,913 Ridge St, Portland,OR,97035 +262400,Lightning Charging Cable,1,14.95,2019-10-30 11:43:00,462 Willow St, San Francisco,CA,94016 +262401,34in Ultrawide Monitor,1,379.99,2019-10-27 22:15:00,986 Spruce St, Austin,TX,73301 +262402,AAA Batteries (4-pack),1,2.99,2019-10-27 13:31:00,23 Forest St, Los Angeles,CA,90001 +262403,AA Batteries (4-pack),1,3.84,2019-10-23 18:54:00,463 9th St, Atlanta,GA,30301 +262404,Apple Airpods Headphones,1,150.0,2019-10-20 06:19:00,281 1st St, New York City,NY,10001 +262405,AAA Batteries (4-pack),1,2.99,2019-10-10 18:16:00,681 12th St, San Francisco,CA,94016 +262406,AAA Batteries (4-pack),1,2.99,2019-10-14 16:01:00,592 Willow St, Seattle,WA,98101 +262407,AAA Batteries (4-pack),3,2.99,2019-10-25 13:53:00,638 12th St, Los Angeles,CA,90001 +262408,Wired Headphones,1,11.99,2019-10-15 13:13:00,276 Park St, Dallas,TX,75001 +262409,Wired Headphones,1,11.99,2019-10-17 15:45:00,311 12th St, Los Angeles,CA,90001 +262410,Vareebadd Phone,1,400.0,2019-10-23 09:38:00,561 Meadow St, New York City,NY,10001 +262411,20in Monitor,1,109.99,2019-10-17 04:17:00,8 Walnut St, San Francisco,CA,94016 +262412,Lightning Charging Cable,1,14.95,2019-10-27 10:21:00,946 Center St, Portland,OR,97035 +262413,ThinkPad Laptop,1,999.99,2019-10-02 19:28:00,775 Cedar St, Boston,MA,02215 +262414,AA Batteries (4-pack),1,3.84,2019-10-19 07:37:00,484 Madison St, Los Angeles,CA,90001 +262415,Lightning Charging Cable,1,14.95,2019-10-26 10:42:00,297 Lake St, San Francisco,CA,94016 +262416,USB-C Charging Cable,1,11.95,2019-10-01 10:01:00,568 Johnson St, Boston,MA,02215 +262417,Lightning Charging Cable,1,14.95,2019-10-27 18:33:00,518 Meadow St, San Francisco,CA,94016 +262418,AAA Batteries (4-pack),1,2.99,2019-10-23 09:01:00,279 River St, San Francisco,CA,94016 +262419,Bose SoundSport Headphones,1,99.99,2019-10-17 10:36:00,577 Highland St, New York City,NY,10001 +262420,Flatscreen TV,1,300.0,2019-10-05 18:47:00,411 Jefferson St, Dallas,TX,75001 +262421,27in 4K Gaming Monitor,1,389.99,2019-10-07 22:12:00,15 River St, Atlanta,GA,30301 +262422,AA Batteries (4-pack),1,3.84,2019-10-14 21:12:00,533 Chestnut St, San Francisco,CA,94016 +262423,34in Ultrawide Monitor,1,379.99,2019-10-28 11:48:00,887 Elm St, Dallas,TX,75001 +262424,Apple Airpods Headphones,1,150.0,2019-10-06 12:37:00,445 Dogwood St, Atlanta,GA,30301 +262425,Lightning Charging Cable,2,14.95,2019-10-23 20:58:00,222 1st St, Boston,MA,02215 +262426,USB-C Charging Cable,1,11.95,2019-10-31 21:35:00,444 1st St, Boston,MA,02215 +262427,Lightning Charging Cable,1,14.95,2019-10-02 01:25:00,121 12th St, San Francisco,CA,94016 +262428,Lightning Charging Cable,1,14.95,2019-10-16 19:20:00,761 Washington St, Dallas,TX,75001 +262429,20in Monitor,1,109.99,2019-10-03 09:16:00,461 14th St, San Francisco,CA,94016 +262430,Lightning Charging Cable,1,14.95,2019-10-06 12:44:00,683 Chestnut St, New York City,NY,10001 +262431,AA Batteries (4-pack),1,3.84,2019-10-02 16:52:00,82 Walnut St, Los Angeles,CA,90001 +262432,Flatscreen TV,1,300.0,2019-10-20 19:08:00,413 Adams St, Austin,TX,73301 +262433,iPhone,1,700.0,2019-10-24 13:32:00,472 10th St, Boston,MA,02215 +262434,Bose SoundSport Headphones,1,99.99,2019-10-02 19:58:00,253 River St, New York City,NY,10001 +262435,AAA Batteries (4-pack),1,2.99,2019-10-30 12:02:00,505 Highland St, San Francisco,CA,94016 +262436,Lightning Charging Cable,1,14.95,2019-10-11 09:15:00,957 Cherry St, Boston,MA,02215 +262437,ThinkPad Laptop,1,999.99,2019-10-02 14:28:00,146 Jackson St, Seattle,WA,98101 +262438,Wired Headphones,1,11.99,2019-10-04 13:33:00,547 Main St, Boston,MA,02215 +262439,Bose SoundSport Headphones,1,99.99,2019-10-23 17:48:00,557 South St, Los Angeles,CA,90001 +262440,Lightning Charging Cable,1,14.95,2019-10-04 17:45:00,672 Pine St, Dallas,TX,75001 +262441,Lightning Charging Cable,1,14.95,2019-10-31 15:43:00,883 5th St, New York City,NY,10001 +262442,AA Batteries (4-pack),1,3.84,2019-10-06 12:22:00,431 9th St, Los Angeles,CA,90001 +262443,AAA Batteries (4-pack),1,2.99,2019-10-03 14:04:00,179 8th St, Atlanta,GA,30301 +262444,USB-C Charging Cable,1,11.95,2019-10-16 12:37:00,683 Lakeview St, San Francisco,CA,94016 +262445,Wired Headphones,1,11.99,2019-10-08 13:07:00,695 Maple St, San Francisco,CA,94016 +262446,AA Batteries (4-pack),1,3.84,2019-10-24 08:53:00,842 Meadow St, San Francisco,CA,94016 +262447,AA Batteries (4-pack),1,3.84,2019-10-28 18:04:00,549 1st St, Los Angeles,CA,90001 +262448,Bose SoundSport Headphones,1,99.99,2019-10-30 10:36:00,303 Willow St, Portland,OR,97035 +262449,Lightning Charging Cable,1,14.95,2019-10-20 21:22:00,565 Meadow St, Seattle,WA,98101 +262450,Bose SoundSport Headphones,1,99.99,2019-10-06 17:25:00,219 13th St, New York City,NY,10001 +262451,ThinkPad Laptop,1,999.99,2019-10-18 12:27:00,137 Lake St, San Francisco,CA,94016 +262452,Bose SoundSport Headphones,1,99.99,2019-10-26 13:26:00,95 Wilson St, Portland,OR,97035 +262453,Lightning Charging Cable,1,14.95,2019-10-02 14:19:00,890 Sunset St, Portland,OR,97035 +262454,Flatscreen TV,1,300.0,2019-10-16 16:49:00,836 2nd St, San Francisco,CA,94016 +262455,Apple Airpods Headphones,1,150.0,2019-10-10 13:41:00,511 Church St, Atlanta,GA,30301 +262456,Google Phone,1,600.0,2019-10-05 14:48:00,556 Adams St, Boston,MA,02215 +262457,USB-C Charging Cable,1,11.95,2019-10-19 17:37:00,574 Ridge St, San Francisco,CA,94016 +262458,USB-C Charging Cable,1,11.95,2019-10-28 16:57:00,497 5th St, Seattle,WA,98101 +262459,Macbook Pro Laptop,1,1700.0,2019-10-21 13:27:00,949 Lake St, Portland,OR,97035 +262460,Lightning Charging Cable,1,14.95,2019-10-23 06:57:00,664 Chestnut St, San Francisco,CA,94016 +262461,AAA Batteries (4-pack),3,2.99,2019-10-31 19:17:00,255 11th St, New York City,NY,10001 +262462,Lightning Charging Cable,1,14.95,2019-10-27 11:50:00,585 4th St, Portland,OR,97035 +262462,27in 4K Gaming Monitor,1,389.99,2019-10-27 11:50:00,585 4th St, Portland,OR,97035 +262463,AAA Batteries (4-pack),1,2.99,2019-10-22 01:00:00,206 Highland St, Los Angeles,CA,90001 +262464,AA Batteries (4-pack),1,3.84,2019-10-16 10:27:00,845 Sunset St, San Francisco,CA,94016 +262465,Bose SoundSport Headphones,1,99.99,2019-10-20 08:28:00,561 Lakeview St, Portland,OR,97035 +262466,USB-C Charging Cable,1,11.95,2019-10-31 14:49:00,228 South St, Dallas,TX,75001 +262467,Lightning Charging Cable,1,14.95,2019-10-15 19:27:00,654 Chestnut St, Atlanta,GA,30301 +262468,Flatscreen TV,1,300.0,2019-10-24 14:49:00,274 Chestnut St, San Francisco,CA,94016 +262469,Lightning Charging Cable,1,14.95,2019-10-18 17:10:00,923 1st St, Los Angeles,CA,90001 +262470,34in Ultrawide Monitor,1,379.99,2019-10-19 18:18:00,129 5th St, Dallas,TX,75001 +262471,Google Phone,1,600.0,2019-10-03 15:52:00,197 Lakeview St, Los Angeles,CA,90001 +262471,USB-C Charging Cable,1,11.95,2019-10-03 15:52:00,197 Lakeview St, Los Angeles,CA,90001 +262472,ThinkPad Laptop,1,999.99,2019-10-05 12:55:00,285 Park St, New York City,NY,10001 +262473,27in 4K Gaming Monitor,1,389.99,2019-10-11 16:33:00,769 Sunset St, Dallas,TX,75001 +262474,20in Monitor,1,109.99,2019-10-31 00:25:00,51 Ridge St, Boston,MA,02215 +262475,AAA Batteries (4-pack),2,2.99,2019-10-23 22:49:00,829 Wilson St, San Francisco,CA,94016 +262476,Macbook Pro Laptop,1,1700.0,2019-10-28 18:20:00,723 Lincoln St, New York City,NY,10001 +262477,Google Phone,1,600.0,2019-10-02 08:08:00,147 11th St, New York City,NY,10001 +262478,27in 4K Gaming Monitor,1,389.99,2019-10-01 09:35:00,971 Center St, New York City,NY,10001 +262479,Lightning Charging Cable,1,14.95,2019-10-27 13:24:00,526 Jefferson St, Austin,TX,73301 +262480,AAA Batteries (4-pack),1,2.99,2019-10-03 11:23:00,721 7th St, San Francisco,CA,94016 +262481,27in FHD Monitor,1,149.99,2019-10-09 21:55:00,519 8th St, San Francisco,CA,94016 +262482,Google Phone,1,600.0,2019-10-14 11:39:00,644 Ridge St, Dallas,TX,75001 +262483,Lightning Charging Cable,1,14.95,2019-10-06 15:01:00,523 1st St, Austin,TX,73301 +262484,20in Monitor,1,109.99,2019-10-11 15:48:00,992 Wilson St, San Francisco,CA,94016 +262485,Lightning Charging Cable,1,14.95,2019-10-15 12:39:00,197 Adams St, New York City,NY,10001 +262486,Bose SoundSport Headphones,1,99.99,2019-10-26 16:21:00,917 North St, San Francisco,CA,94016 +262487,Google Phone,1,600.0,2019-10-01 23:16:00,308 Johnson St, San Francisco,CA,94016 +262488,Macbook Pro Laptop,1,1700.0,2019-10-02 16:50:00,604 2nd St, San Francisco,CA,94016 +262489,Lightning Charging Cable,1,14.95,2019-10-12 11:13:00,436 Forest St, San Francisco,CA,94016 +262490,Lightning Charging Cable,1,14.95,2019-10-31 17:13:00,901 Adams St, New York City,NY,10001 +262491,AA Batteries (4-pack),1,3.84,2019-10-23 22:44:00,246 Lake St, San Francisco,CA,94016 +262492,USB-C Charging Cable,2,11.95,2019-10-06 18:59:00,111 2nd St, New York City,NY,10001 +262493,USB-C Charging Cable,1,11.95,2019-10-18 08:35:00,488 River St, San Francisco,CA,94016 +262494,27in FHD Monitor,1,149.99,2019-10-16 20:41:00,327 Forest St, New York City,NY,10001 +262495,Wired Headphones,2,11.99,2019-10-15 13:33:00,587 Forest St, Boston,MA,02215 +262496,Lightning Charging Cable,1,14.95,2019-10-02 09:39:00,423 Washington St, New York City,NY,10001 +262497,Lightning Charging Cable,1,14.95,2019-10-11 10:52:00,118 7th St, Seattle,WA,98101 +262498,Macbook Pro Laptop,1,1700.0,2019-10-05 23:10:00,290 Church St, Los Angeles,CA,90001 +262499,AAA Batteries (4-pack),2,2.99,2019-10-15 02:49:00,183 Wilson St, Portland,OR,97035 +262500,AA Batteries (4-pack),2,3.84,2019-10-13 16:48:00,329 Elm St, San Francisco,CA,94016 +262501,ThinkPad Laptop,1,999.99,2019-10-28 17:24:00,549 Adams St, Austin,TX,73301 +262502,27in 4K Gaming Monitor,1,389.99,2019-10-07 09:56:00,174 5th St, San Francisco,CA,94016 +262503,Wired Headphones,1,11.99,2019-10-28 08:49:00,233 Pine St, Dallas,TX,75001 +262504,Wired Headphones,4,11.99,2019-10-26 12:41:00,846 Meadow St, Seattle,WA,98101 +262505,LG Dryer,1,600.0,2019-10-02 12:53:00,541 Wilson St, New York City,NY,10001 +262506,Apple Airpods Headphones,1,150.0,2019-10-22 21:54:00,829 Church St, Atlanta,GA,30301 +262507,Flatscreen TV,1,300.0,2019-10-14 22:26:00,184 Hill St, San Francisco,CA,94016 +262508,USB-C Charging Cable,1,11.95,2019-10-02 13:57:00,102 Pine St, San Francisco,CA,94016 +262509,Bose SoundSport Headphones,1,99.99,2019-10-23 05:32:00,470 8th St, San Francisco,CA,94016 +262510,Lightning Charging Cable,1,14.95,2019-10-15 15:54:00,481 6th St, Los Angeles,CA,90001 +262511,Apple Airpods Headphones,1,150.0,2019-10-27 17:34:00,846 14th St, San Francisco,CA,94016 +262512,AAA Batteries (4-pack),2,2.99,2019-10-28 22:32:00,361 Walnut St, Austin,TX,73301 +262513,iPhone,1,700.0,2019-10-18 14:34:00,837 Spruce St, Atlanta,GA,30301 +262513,Lightning Charging Cable,1,14.95,2019-10-18 14:34:00,837 Spruce St, Atlanta,GA,30301 +262514,iPhone,1,700.0,2019-10-28 20:13:00,895 Park St, Los Angeles,CA,90001 +262514,Wired Headphones,2,11.99,2019-10-28 20:13:00,895 Park St, Los Angeles,CA,90001 +262515,34in Ultrawide Monitor,1,379.99,2019-10-25 07:30:00,373 Cedar St, Seattle,WA,98101 +262516,AAA Batteries (4-pack),1,2.99,2019-10-05 20:34:00,612 Cherry St, Austin,TX,73301 +262517,Wired Headphones,1,11.99,2019-10-10 13:01:00,415 Jackson St, San Francisco,CA,94016 +262518,Bose SoundSport Headphones,1,99.99,2019-10-10 16:36:00,737 Maple St, Portland,OR,97035 +262519,Lightning Charging Cable,2,14.95,2019-10-04 17:21:00,142 8th St, New York City,NY,10001 +262520,34in Ultrawide Monitor,1,379.99,2019-10-22 13:24:00,877 North St, Austin,TX,73301 +262521,AA Batteries (4-pack),1,3.84,2019-10-15 14:36:00,66 Walnut St, Boston,MA,02215 +262522,Apple Airpods Headphones,1,150.0,2019-10-12 10:59:00,446 14th St, New York City,NY,10001 +262523,Apple Airpods Headphones,1,150.0,2019-10-23 10:44:00,953 Pine St, Los Angeles,CA,90001 +262524,27in FHD Monitor,1,149.99,2019-10-15 06:27:00,840 Johnson St, Atlanta,GA,30301 +262525,Apple Airpods Headphones,1,150.0,2019-10-16 20:32:00,168 Meadow St, San Francisco,CA,94016 +262526,Google Phone,1,600.0,2019-10-02 16:21:00,240 Hickory St, Boston,MA,02215 +262527,Lightning Charging Cable,1,14.95,2019-10-16 13:23:00,621 Dogwood St, Boston,MA,02215 +262528,34in Ultrawide Monitor,1,379.99,2019-10-03 15:56:00,514 Hickory St, Boston,MA,02215 +262529,34in Ultrawide Monitor,1,379.99,2019-10-23 13:44:00,832 Dogwood St, San Francisco,CA,94016 +262530,Apple Airpods Headphones,1,150.0,2019-10-10 09:55:00,506 Cedar St, Atlanta,GA,30301 +262531,Lightning Charging Cable,1,14.95,2019-10-30 21:05:00,723 Lincoln St, Dallas,TX,75001 +262532,AA Batteries (4-pack),2,3.84,2019-10-04 00:15:00,193 Spruce St, Atlanta,GA,30301 +262533,iPhone,1,700.0,2019-10-14 21:33:00,921 Lake St, San Francisco,CA,94016 +262534,USB-C Charging Cable,2,11.95,2019-10-07 15:36:00,523 14th St, San Francisco,CA,94016 +262535,AA Batteries (4-pack),3,3.84,2019-10-24 10:04:00,535 South St, Atlanta,GA,30301 +262536,Wired Headphones,2,11.99,2019-10-20 09:34:00,518 West St, New York City,NY,10001 +262537,USB-C Charging Cable,1,11.95,2019-10-16 20:37:00,873 Washington St, Los Angeles,CA,90001 +262538,Bose SoundSport Headphones,1,99.99,2019-10-27 01:47:00,55 Wilson St, San Francisco,CA,94016 +262539,Wired Headphones,1,11.99,2019-10-01 23:40:00,874 Lakeview St, San Francisco,CA,94016 +262540,AAA Batteries (4-pack),1,2.99,2019-10-31 23:38:00,647 Maple St, Los Angeles,CA,90001 +262541,AA Batteries (4-pack),1,3.84,2019-10-21 21:32:00,452 Adams St, San Francisco,CA,94016 +262542,Apple Airpods Headphones,1,150.0,2019-10-05 08:44:00,874 Highland St, Los Angeles,CA,90001 +262543,34in Ultrawide Monitor,1,379.99,2019-10-13 15:30:00,890 Lincoln St, Portland,OR,97035 +262544,USB-C Charging Cable,1,11.95,2019-10-09 10:56:00,337 Cherry St, Los Angeles,CA,90001 +262545,Lightning Charging Cable,1,14.95,2019-10-17 23:50:00,525 6th St, San Francisco,CA,94016 +262546,Lightning Charging Cable,1,14.95,2019-10-10 16:15:00,468 Cedar St, Los Angeles,CA,90001 +262547,Lightning Charging Cable,1,14.95,2019-10-08 22:29:00,296 10th St, San Francisco,CA,94016 +262548,Apple Airpods Headphones,1,150.0,2019-10-14 16:38:00,879 Cherry St, Boston,MA,02215 +262549,AAA Batteries (4-pack),1,2.99,2019-10-13 12:50:00,911 River St, San Francisco,CA,94016 +262550,27in 4K Gaming Monitor,1,389.99,2019-10-31 20:03:00,372 14th St, Austin,TX,73301 +262551,AAA Batteries (4-pack),1,2.99,2019-10-30 00:55:00,844 Pine St, Atlanta,GA,30301 +262552,AAA Batteries (4-pack),4,2.99,2019-10-04 14:47:00,56 Cedar St, Los Angeles,CA,90001 +262553,Apple Airpods Headphones,1,150.0,2019-10-28 13:42:00,366 Spruce St, Los Angeles,CA,90001 +262554,AAA Batteries (4-pack),1,2.99,2019-10-21 16:43:00,188 Wilson St, Seattle,WA,98101 +262555,Lightning Charging Cable,1,14.95,2019-10-23 08:23:00,216 1st St, Austin,TX,73301 +262556,AA Batteries (4-pack),1,3.84,2019-10-01 21:06:00,932 6th St, Los Angeles,CA,90001 +262557,AAA Batteries (4-pack),3,2.99,2019-10-02 09:10:00,608 Dogwood St, Seattle,WA,98101 +262558,AA Batteries (4-pack),1,3.84,2019-10-15 19:35:00,428 10th St, Portland,OR,97035 +262559,34in Ultrawide Monitor,1,379.99,2019-10-18 09:20:00,500 Meadow St, Boston,MA,02215 +262560,AA Batteries (4-pack),2,3.84,2019-10-23 13:48:00,619 Meadow St, Atlanta,GA,30301 +262561,USB-C Charging Cable,1,11.95,2019-10-07 22:58:00,949 Sunset St, Los Angeles,CA,90001 +262562,Macbook Pro Laptop,1,1700.0,2019-10-27 08:46:00,424 West St, San Francisco,CA,94016 +262563,Wired Headphones,2,11.99,2019-10-03 14:09:00,693 Hill St, Los Angeles,CA,90001 +262564,Apple Airpods Headphones,1,150.0,2019-10-27 16:30:00,543 1st St, San Francisco,CA,94016 +262565,Macbook Pro Laptop,1,1700.0,2019-10-04 15:56:00,779 Cedar St, New York City,NY,10001 +262566,Bose SoundSport Headphones,1,99.99,2019-10-20 16:12:00,483 Pine St, San Francisco,CA,94016 +262567,USB-C Charging Cable,3,11.95,2019-10-01 22:42:00,6 Park St, Los Angeles,CA,90001 +262568,34in Ultrawide Monitor,1,379.99,2019-10-07 14:05:00,666 Lake St, New York City,NY,10001 +262569,Flatscreen TV,1,300.0,2019-10-23 10:07:00,930 6th St, Atlanta,GA,30301 +262570,Lightning Charging Cable,1,14.95,2019-10-21 18:28:00,255 7th St, Seattle,WA,98101 +262571,AA Batteries (4-pack),1,3.84,2019-10-13 20:09:00,288 Chestnut St, Los Angeles,CA,90001 +262572,27in FHD Monitor,1,149.99,2019-10-15 21:47:00,595 West St, Los Angeles,CA,90001 +262573,Wired Headphones,1,11.99,2019-10-01 13:41:00,944 Pine St, San Francisco,CA,94016 +262574,Lightning Charging Cable,1,14.95,2019-10-09 14:36:00,10 Lincoln St, Portland,OR,97035 +262575,Apple Airpods Headphones,1,150.0,2019-10-15 15:26:00,502 Chestnut St, Los Angeles,CA,90001 +262576,Apple Airpods Headphones,1,150.0,2019-10-11 10:12:00,590 Washington St, Los Angeles,CA,90001 +262577,USB-C Charging Cable,1,11.95,2019-10-02 11:04:00,269 10th St, Seattle,WA,98101 +262578,27in 4K Gaming Monitor,1,389.99,2019-10-12 21:34:00,922 Center St, San Francisco,CA,94016 +262579,Wired Headphones,1,11.99,2019-10-04 12:50:00,141 Pine St, New York City,NY,10001 +262580,AAA Batteries (4-pack),1,2.99,2019-10-03 01:54:00,699 Park St, Los Angeles,CA,90001 +262581,27in FHD Monitor,1,149.99,2019-10-24 13:55:00,505 West St, Boston,MA,02215 +262582,USB-C Charging Cable,1,11.95,2019-10-13 18:56:00,167 Washington St, Los Angeles,CA,90001 +262583,iPhone,1,700.0,2019-10-22 19:36:00,359 Forest St, New York City,NY,10001 +262584,Lightning Charging Cable,1,14.95,2019-10-04 17:32:00,795 Jackson St, Atlanta,GA,30301 +262585,27in FHD Monitor,1,149.99,2019-10-27 11:44:00,77 Johnson St, Portland,ME,04101 +262586,Lightning Charging Cable,1,14.95,2019-10-16 15:18:00,440 Center St, San Francisco,CA,94016 +262587,Apple Airpods Headphones,1,150.0,2019-10-18 20:05:00,258 Lake St, Los Angeles,CA,90001 +262588,AA Batteries (4-pack),1,3.84,2019-10-26 12:43:00,405 1st St, Seattle,WA,98101 +262589,Apple Airpods Headphones,1,150.0,2019-10-10 11:07:00,154 Maple St, Los Angeles,CA,90001 +262590,AA Batteries (4-pack),2,3.84,2019-10-11 17:11:00,991 2nd St, Los Angeles,CA,90001 +262591,34in Ultrawide Monitor,1,379.99,2019-10-15 14:45:00,671 Willow St, San Francisco,CA,94016 +262592,USB-C Charging Cable,2,11.95,2019-10-10 17:11:00,464 Chestnut St, Dallas,TX,75001 +262593,iPhone,1,700.0,2019-10-14 07:51:00,284 8th St, New York City,NY,10001 +262594,AA Batteries (4-pack),1,3.84,2019-10-10 11:19:00,492 Forest St, Boston,MA,02215 +262595,Macbook Pro Laptop,1,1700.0,2019-10-08 21:03:00,134 Johnson St, Dallas,TX,75001 +262596,iPhone,1,700.0,2019-10-11 09:59:00,725 Lake St, Dallas,TX,75001 +262596,Apple Airpods Headphones,1,150.0,2019-10-11 09:59:00,725 Lake St, Dallas,TX,75001 +262597,AA Batteries (4-pack),1,3.84,2019-10-08 12:02:00,111 14th St, San Francisco,CA,94016 +262598,Wired Headphones,1,11.99,2019-10-22 20:45:00,236 Lincoln St, Portland,OR,97035 +262599,USB-C Charging Cable,1,11.95,2019-10-24 00:05:00,842 Johnson St, New York City,NY,10001 +262600,Wired Headphones,1,11.99,2019-10-25 21:39:00,810 Lake St, Dallas,TX,75001 +262601,AA Batteries (4-pack),1,3.84,2019-10-07 19:54:00,914 Center St, Dallas,TX,75001 +262602,AAA Batteries (4-pack),4,2.99,2019-10-14 09:42:00,372 Hickory St, Seattle,WA,98101 +262603,ThinkPad Laptop,1,999.99,2019-10-29 10:32:00,386 Lincoln St, Dallas,TX,75001 +262604,Bose SoundSport Headphones,1,99.99,2019-10-12 23:49:00,523 12th St, Los Angeles,CA,90001 +262605,Bose SoundSport Headphones,1,99.99,2019-10-11 10:43:00,913 Willow St, Boston,MA,02215 +262606,AAA Batteries (4-pack),3,2.99,2019-10-16 18:35:00,220 Cherry St, New York City,NY,10001 +262607,Lightning Charging Cable,1,14.95,2019-10-26 14:50:00,637 Center St, Austin,TX,73301 +262608,AAA Batteries (4-pack),4,2.99,2019-10-10 13:42:00,590 Meadow St, New York City,NY,10001 +262609,AA Batteries (4-pack),1,3.84,2019-10-12 14:19:00,721 Willow St, Boston,MA,02215 +262610,Apple Airpods Headphones,1,150.0,2019-10-16 13:01:00,888 Cherry St, Los Angeles,CA,90001 +262611,AA Batteries (4-pack),1,3.84,2019-10-15 20:38:00,187 Adams St, San Francisco,CA,94016 +262612,iPhone,1,700.0,2019-10-03 20:19:00,247 Highland St, San Francisco,CA,94016 +262613,Wired Headphones,1,11.99,2019-10-12 17:09:00,417 14th St, Portland,OR,97035 +262614,AA Batteries (4-pack),1,3.84,2019-10-11 12:43:00,673 Spruce St, Los Angeles,CA,90001 +262615,20in Monitor,1,109.99,2019-10-20 08:00:00,378 Lake St, Seattle,WA,98101 +262616,USB-C Charging Cable,1,11.95,2019-10-25 08:58:00,247 Church St, San Francisco,CA,94016 +262617,Bose SoundSport Headphones,1,99.99,2019-10-23 15:09:00,41 Madison St, Atlanta,GA,30301 +262618,Bose SoundSport Headphones,1,99.99,2019-10-06 04:49:00,507 South St, Los Angeles,CA,90001 +262619,USB-C Charging Cable,2,11.95,2019-10-27 01:39:00,358 10th St, Boston,MA,02215 +262620,iPhone,1,700.0,2019-10-31 22:22:00,826 Sunset St, New York City,NY,10001 +262620,Apple Airpods Headphones,1,150.0,2019-10-31 22:22:00,826 Sunset St, New York City,NY,10001 +262621,USB-C Charging Cable,1,11.95,2019-10-25 21:20:00,205 River St, Portland,OR,97035 +262622,USB-C Charging Cable,1,11.95,2019-10-04 20:18:00,671 1st St, San Francisco,CA,94016 +262623,AAA Batteries (4-pack),1,2.99,2019-10-08 10:17:00,229 Maple St, Atlanta,GA,30301 +262624,Flatscreen TV,1,300.0,2019-10-05 17:26:00,575 7th St, Dallas,TX,75001 +262625,iPhone,1,700.0,2019-10-02 19:37:00,594 Main St, Boston,MA,02215 +262626,Bose SoundSport Headphones,1,99.99,2019-10-08 23:36:00,52 5th St, San Francisco,CA,94016 +262627,Apple Airpods Headphones,1,150.0,2019-10-20 13:32:00,413 2nd St, Seattle,WA,98101 +262628,34in Ultrawide Monitor,1,379.99,2019-10-17 18:01:00,128 Lakeview St, San Francisco,CA,94016 +262629,20in Monitor,1,109.99,2019-10-12 19:54:00,319 Elm St, Austin,TX,73301 +262630,Macbook Pro Laptop,1,1700.0,2019-10-18 23:47:00,700 Hickory St, Los Angeles,CA,90001 +262631,Lightning Charging Cable,1,14.95,2019-10-03 11:55:00,453 11th St, San Francisco,CA,94016 +262632,Google Phone,1,600.0,2019-10-19 13:39:00,239 Hickory St, Boston,MA,02215 +262633,Lightning Charging Cable,1,14.95,2019-10-29 14:17:00,454 Maple St, Austin,TX,73301 +262634,Macbook Pro Laptop,1,1700.0,2019-10-31 00:42:00,927 Hickory St, Boston,MA,02215 +262635,ThinkPad Laptop,1,999.99,2019-10-17 18:55:00,885 South St, Seattle,WA,98101 +262636,Wired Headphones,1,11.99,2019-10-31 16:44:00,124 Pine St, Seattle,WA,98101 +262637,Lightning Charging Cable,1,14.95,2019-10-14 09:03:00,3 Park St, San Francisco,CA,94016 +262638,AA Batteries (4-pack),1,3.84,2019-10-08 12:17:00,383 Washington St, Los Angeles,CA,90001 +262639,27in FHD Monitor,1,149.99,2019-10-18 20:27:00,476 Hickory St, Portland,ME,04101 +262640,AAA Batteries (4-pack),2,2.99,2019-10-24 12:35:00,105 Meadow St, Portland,OR,97035 +262641,Bose SoundSport Headphones,1,99.99,2019-10-28 09:43:00,633 14th St, San Francisco,CA,94016 +262642,27in FHD Monitor,1,149.99,2019-10-21 16:02:00,588 13th St, Seattle,WA,98101 +262643,Lightning Charging Cable,1,14.95,2019-10-30 10:54:00,152 Forest St, Boston,MA,02215 +262644,Flatscreen TV,1,300.0,2019-10-31 22:08:00,128 River St, Boston,MA,02215 +262645,Lightning Charging Cable,1,14.95,2019-10-25 19:51:00,59 Dogwood St, New York City,NY,10001 +262646,Google Phone,1,600.0,2019-10-24 18:18:00,420 West St, San Francisco,CA,94016 +262647,AA Batteries (4-pack),2,3.84,2019-10-17 21:54:00,564 14th St, Los Angeles,CA,90001 +262648,AA Batteries (4-pack),1,3.84,2019-10-26 17:52:00,818 12th St, Portland,OR,97035 +262649,AAA Batteries (4-pack),1,2.99,2019-10-09 07:37:00,631 Center St, San Francisco,CA,94016 +262650,27in 4K Gaming Monitor,1,389.99,2019-10-10 17:45:00,312 River St, Atlanta,GA,30301 +262651,Bose SoundSport Headphones,1,99.99,2019-10-09 18:05:00,565 5th St, Seattle,WA,98101 +262652,Google Phone,1,600.0,2019-10-12 21:56:00,898 5th St, San Francisco,CA,94016 +262653,Google Phone,1,600.0,2019-10-01 12:36:00,430 Dogwood St, New York City,NY,10001 +262654,AA Batteries (4-pack),2,3.84,2019-10-21 08:11:00,96 2nd St, San Francisco,CA,94016 +262655,AAA Batteries (4-pack),1,2.99,2019-10-21 21:36:00,761 Lakeview St, New York City,NY,10001 +262656,Google Phone,1,600.0,2019-10-16 01:19:00,207 Hill St, Dallas,TX,75001 +262657,AA Batteries (4-pack),1,3.84,2019-10-04 23:13:00,659 12th St, San Francisco,CA,94016 +262658,AAA Batteries (4-pack),2,2.99,2019-10-21 08:44:00,436 14th St, Dallas,TX,75001 +262659,Apple Airpods Headphones,1,150.0,2019-10-18 17:19:00,832 Walnut St, Atlanta,GA,30301 +262660,Bose SoundSport Headphones,1,99.99,2019-10-26 00:53:00,892 Hickory St, Los Angeles,CA,90001 +262661,AAA Batteries (4-pack),1,2.99,2019-10-10 18:45:00,511 Hickory St, San Francisco,CA,94016 +262662,AA Batteries (4-pack),1,3.84,2019-10-11 13:20:00,983 Chestnut St, Seattle,WA,98101 +262663,Lightning Charging Cable,1,14.95,2019-10-30 18:12:00,676 Forest St, Boston,MA,02215 +262664,AA Batteries (4-pack),1,3.84,2019-10-17 15:40:00,689 North St, New York City,NY,10001 +262665,Lightning Charging Cable,1,14.95,2019-10-11 13:14:00,638 Adams St, San Francisco,CA,94016 +262666,34in Ultrawide Monitor,1,379.99,2019-10-28 23:49:00,705 Ridge St, Austin,TX,73301 +262667,USB-C Charging Cable,1,11.95,2019-10-08 20:59:00,954 Forest St, San Francisco,CA,94016 +262668,Bose SoundSport Headphones,1,99.99,2019-10-18 08:15:00,500 Chestnut St, New York City,NY,10001 +262669,Lightning Charging Cable,1,14.95,2019-10-04 19:57:00,516 5th St, Seattle,WA,98101 +262670,USB-C Charging Cable,1,11.95,2019-10-09 13:04:00,517 Meadow St, Dallas,TX,75001 +262671,USB-C Charging Cable,1,11.95,2019-10-15 15:38:00,193 Jackson St, Dallas,TX,75001 +262672,AA Batteries (4-pack),1,3.84,2019-10-16 00:27:00,305 Sunset St, Los Angeles,CA,90001 +262673,Lightning Charging Cable,1,14.95,2019-10-23 09:16:00,394 Lakeview St, Seattle,WA,98101 +262674,AA Batteries (4-pack),1,3.84,2019-10-28 10:23:00,463 Lakeview St, Seattle,WA,98101 +262674,Wired Headphones,1,11.99,2019-10-28 10:23:00,463 Lakeview St, Seattle,WA,98101 +262675,ThinkPad Laptop,1,999.99,2019-10-12 11:32:00,291 Lakeview St, Los Angeles,CA,90001 +262676,AA Batteries (4-pack),1,3.84,2019-10-04 22:32:00,5 Pine St, New York City,NY,10001 +262677,Bose SoundSport Headphones,1,99.99,2019-10-25 14:44:00,760 6th St, Austin,TX,73301 +262678,Wired Headphones,1,11.99,2019-10-02 23:32:00,84 Park St, Boston,MA,02215 +262679,AA Batteries (4-pack),1,3.84,2019-10-14 20:22:00,715 Washington St, Atlanta,GA,30301 +262680,ThinkPad Laptop,1,999.99,2019-10-01 14:22:00,119 Adams St, San Francisco,CA,94016 +262681,AA Batteries (4-pack),1,3.84,2019-10-08 21:00:00,135 Forest St, Boston,MA,02215 +262682,Lightning Charging Cable,1,14.95,2019-10-25 22:14:00,572 6th St, San Francisco,CA,94016 +262683,AAA Batteries (4-pack),1,2.99,2019-10-29 12:46:00,511 10th St, San Francisco,CA,94016 +262684,AA Batteries (4-pack),2,3.84,2019-10-18 23:13:00,778 11th St, Los Angeles,CA,90001 +262685,Lightning Charging Cable,1,14.95,2019-10-22 10:51:00,441 Johnson St, San Francisco,CA,94016 +262686,Lightning Charging Cable,1,14.95,2019-10-07 05:19:00,211 11th St, San Francisco,CA,94016 +262687,Bose SoundSport Headphones,1,99.99,2019-10-13 16:20:00,130 Lincoln St, Boston,MA,02215 +262688,ThinkPad Laptop,1,999.99,2019-10-18 16:50:00,499 Hill St, Los Angeles,CA,90001 +262689,ThinkPad Laptop,1,999.99,2019-10-31 17:49:00,896 Lincoln St, Portland,OR,97035 +262690,Macbook Pro Laptop,1,1700.0,2019-10-12 18:56:00,835 Spruce St, San Francisco,CA,94016 +262691,Wired Headphones,1,11.99,2019-10-03 20:34:00,57 North St, San Francisco,CA,94016 +262692,Lightning Charging Cable,1,14.95,2019-10-17 14:08:00,653 Cedar St, San Francisco,CA,94016 +262693,AAA Batteries (4-pack),1,2.99,2019-10-30 13:13:00,400 Chestnut St, New York City,NY,10001 +262694,Bose SoundSport Headphones,1,99.99,2019-10-12 21:28:00,419 Madison St, Los Angeles,CA,90001 +262695,USB-C Charging Cable,1,11.95,2019-10-25 12:34:00,742 Lakeview St, Los Angeles,CA,90001 +262696,ThinkPad Laptop,1,999.99,2019-10-19 23:29:00,851 Ridge St, Boston,MA,02215 +262697,AA Batteries (4-pack),1,3.84,2019-10-18 13:41:00,620 West St, Dallas,TX,75001 +262698,27in 4K Gaming Monitor,1,389.99,2019-10-07 21:19:00,15 7th St, Seattle,WA,98101 +262699,Apple Airpods Headphones,1,150.0,2019-10-09 00:28:00,69 Sunset St, San Francisco,CA,94016 +262700,Lightning Charging Cable,1,14.95,2019-10-11 16:05:00,857 4th St, Dallas,TX,75001 +262701,Apple Airpods Headphones,1,150.0,2019-10-22 07:47:00,404 9th St, Dallas,TX,75001 +262702,AAA Batteries (4-pack),4,2.99,2019-10-13 16:51:00,121 South St, San Francisco,CA,94016 +262703,AAA Batteries (4-pack),1,2.99,2019-10-16 13:57:00,325 Spruce St, New York City,NY,10001 +262704,AA Batteries (4-pack),1,3.84,2019-10-29 07:38:00,678 Madison St, Portland,OR,97035 +262705,Lightning Charging Cable,1,14.95,2019-10-11 19:24:00,952 Main St, Portland,ME,04101 +262706,USB-C Charging Cable,1,11.95,2019-10-06 01:46:00,759 Washington St, Atlanta,GA,30301 +262707,iPhone,1,700.0,2019-10-16 12:33:00,494 4th St, Los Angeles,CA,90001 +262708,27in FHD Monitor,1,149.99,2019-10-14 11:30:00,494 Johnson St, Austin,TX,73301 +262709,Bose SoundSport Headphones,1,99.99,2019-10-09 13:46:00,458 9th St, Boston,MA,02215 +262710,AA Batteries (4-pack),1,3.84,2019-10-18 15:22:00,95 7th St, San Francisco,CA,94016 +262711,AA Batteries (4-pack),1,3.84,2019-10-02 21:23:00,106 Washington St, Atlanta,GA,30301 +262712,AAA Batteries (4-pack),1,2.99,2019-10-07 19:44:00,385 North St, San Francisco,CA,94016 +262713,AAA Batteries (4-pack),2,2.99,2019-10-03 13:58:00,954 Hickory St, Los Angeles,CA,90001 +262714,Bose SoundSport Headphones,1,99.99,2019-10-02 09:44:00,793 Johnson St, Austin,TX,73301 +262715,USB-C Charging Cable,2,11.95,2019-10-18 18:27:00,373 Walnut St, Los Angeles,CA,90001 +262716,27in FHD Monitor,1,149.99,2019-10-05 22:31:00,163 8th St, Boston,MA,02215 +262717,27in 4K Gaming Monitor,1,389.99,2019-10-08 09:08:00,629 2nd St, Portland,OR,97035 +262718,Wired Headphones,2,11.99,2019-10-25 10:54:00,510 Chestnut St, San Francisco,CA,94016 +262719,Lightning Charging Cable,1,14.95,2019-10-29 11:20:00,837 Maple St, Atlanta,GA,30301 +262720,USB-C Charging Cable,1,11.95,2019-10-24 22:59:00,497 Madison St, Seattle,WA,98101 +262721,iPhone,1,700.0,2019-10-07 18:52:00,117 Washington St, San Francisco,CA,94016 +262721,Lightning Charging Cable,1,14.95,2019-10-07 18:52:00,117 Washington St, San Francisco,CA,94016 +262722,iPhone,1,700.0,2019-10-03 14:31:00,850 Walnut St, Austin,TX,73301 +262723,Wired Headphones,1,11.99,2019-10-27 12:47:00,50 Lake St, Boston,MA,02215 +262724,27in 4K Gaming Monitor,1,389.99,2019-10-11 17:43:00,876 9th St, Dallas,TX,75001 +262725,AAA Batteries (4-pack),1,2.99,2019-10-22 19:29:00,212 South St, Dallas,TX,75001 +262725,Bose SoundSport Headphones,1,99.99,2019-10-22 19:29:00,212 South St, Dallas,TX,75001 +262726,Apple Airpods Headphones,1,150.0,2019-10-02 20:21:00,600 Adams St, New York City,NY,10001 +262727,Wired Headphones,1,11.99,2019-10-14 19:34:00,348 Forest St, Seattle,WA,98101 +262728,20in Monitor,1,109.99,2019-10-25 10:22:00,118 6th St, San Francisco,CA,94016 +262729,20in Monitor,1,109.99,2019-10-03 18:20:00,420 Chestnut St, San Francisco,CA,94016 +262730,USB-C Charging Cable,1,11.95,2019-10-06 20:35:00,969 Dogwood St, Portland,OR,97035 +262731,AAA Batteries (4-pack),1,2.99,2019-10-16 16:30:00,667 Hickory St, New York City,NY,10001 +262732,USB-C Charging Cable,1,11.95,2019-10-26 14:55:00,474 Highland St, Austin,TX,73301 +262733,AA Batteries (4-pack),1,3.84,2019-10-23 16:20:00,474 Adams St, Atlanta,GA,30301 +262734,AAA Batteries (4-pack),1,2.99,2019-10-18 12:07:00,686 9th St, Boston,MA,02215 +262735,AAA Batteries (4-pack),1,2.99,2019-10-23 18:04:00,854 Pine St, New York City,NY,10001 +262736,Macbook Pro Laptop,1,1700.0,2019-10-24 07:17:00,443 14th St, Seattle,WA,98101 +262737,Flatscreen TV,1,300.0,2019-10-16 10:17:00,838 Sunset St, San Francisco,CA,94016 +262738,27in 4K Gaming Monitor,1,389.99,2019-10-18 10:21:00,636 8th St, New York City,NY,10001 +262739,20in Monitor,1,109.99,2019-10-04 12:20:00,905 Spruce St, San Francisco,CA,94016 +262740,Apple Airpods Headphones,1,150.0,2019-10-15 22:17:00,112 10th St, Los Angeles,CA,90001 +262741,Bose SoundSport Headphones,1,99.99,2019-10-08 07:59:00,541 2nd St, Seattle,WA,98101 +262742,Wired Headphones,1,11.99,2019-10-22 19:53:00,246 12th St, San Francisco,CA,94016 +262743,USB-C Charging Cable,1,11.95,2019-10-26 08:29:00,113 8th St, Boston,MA,02215 +262744,27in FHD Monitor,1,149.99,2019-10-03 07:16:00,452 West St, Los Angeles,CA,90001 +262745,AAA Batteries (4-pack),3,2.99,2019-10-22 17:48:00,378 Willow St, Los Angeles,CA,90001 +262746,AA Batteries (4-pack),1,3.84,2019-10-21 12:07:00,649 1st St, Los Angeles,CA,90001 +262747,AA Batteries (4-pack),1,3.84,2019-10-12 17:34:00,165 Washington St, Portland,OR,97035 +262748,iPhone,1,700.0,2019-10-25 14:40:00,907 13th St, Seattle,WA,98101 +262749,Lightning Charging Cable,1,14.95,2019-10-09 07:02:00,883 Sunset St, Los Angeles,CA,90001 +262750,Lightning Charging Cable,1,14.95,2019-10-24 19:55:00,231 8th St, Los Angeles,CA,90001 +262751,AA Batteries (4-pack),1,3.84,2019-10-15 20:10:00,168 Spruce St, Portland,ME,04101 +262752,Apple Airpods Headphones,1,150.0,2019-10-04 11:30:00,374 13th St, Seattle,WA,98101 +262753,ThinkPad Laptop,1,999.99,2019-10-20 10:35:00,477 Main St, Los Angeles,CA,90001 +262754,Bose SoundSport Headphones,1,99.99,2019-10-05 21:41:00,342 Highland St, Boston,MA,02215 +262755,iPhone,1,700.0,2019-10-12 19:36:00,496 Hill St, New York City,NY,10001 +262756,AAA Batteries (4-pack),1,2.99,2019-10-26 11:47:00,979 Chestnut St, Boston,MA,02215 +262756,Lightning Charging Cable,1,14.95,2019-10-26 11:47:00,979 Chestnut St, Boston,MA,02215 +262757,USB-C Charging Cable,1,11.95,2019-10-12 19:53:00,481 10th St, New York City,NY,10001 +262758,34in Ultrawide Monitor,1,379.99,2019-10-05 10:26:00,226 Pine St, San Francisco,CA,94016 +262759,Macbook Pro Laptop,1,1700.0,2019-10-03 17:11:00,721 Spruce St, Portland,ME,04101 +262760,Lightning Charging Cable,1,14.95,2019-10-20 20:17:00,990 Sunset St, Portland,OR,97035 +262761,AA Batteries (4-pack),1,3.84,2019-10-11 12:01:00,26 Ridge St, Austin,TX,73301 +262762,AA Batteries (4-pack),1,3.84,2019-10-08 20:43:00,855 Ridge St, Los Angeles,CA,90001 +262763,ThinkPad Laptop,1,999.99,2019-10-06 22:35:00,309 5th St, Atlanta,GA,30301 +262764,USB-C Charging Cable,1,11.95,2019-10-30 22:17:00,176 Forest St, San Francisco,CA,94016 +262765,Lightning Charging Cable,1,14.95,2019-10-14 16:22:00,912 2nd St, New York City,NY,10001 +262766,34in Ultrawide Monitor,1,379.99,2019-10-01 09:34:00,600 Main St, Austin,TX,73301 +262767,Bose SoundSport Headphones,1,99.99,2019-10-01 15:55:00,262 Main St, Boston,MA,02215 +262768,27in FHD Monitor,1,149.99,2019-10-30 17:58:00,174 4th St, Boston,MA,02215 +262769,Lightning Charging Cable,1,14.95,2019-10-18 21:30:00,334 Meadow St, San Francisco,CA,94016 +262770,Lightning Charging Cable,2,14.95,2019-10-17 01:11:00,368 11th St, New York City,NY,10001 +262771,Lightning Charging Cable,1,14.95,2019-10-30 19:57:00,416 Sunset St, Los Angeles,CA,90001 +262772,Google Phone,1,600.0,2019-10-14 18:14:00,18 South St, Dallas,TX,75001 +262772,Bose SoundSport Headphones,1,99.99,2019-10-14 18:14:00,18 South St, Dallas,TX,75001 +262772,Lightning Charging Cable,1,14.95,2019-10-14 18:14:00,18 South St, Dallas,TX,75001 +262773,ThinkPad Laptop,1,999.99,2019-10-04 19:51:00,115 Washington St, New York City,NY,10001 +262774,Bose SoundSport Headphones,1,99.99,2019-10-28 16:09:00,484 Meadow St, Los Angeles,CA,90001 +262775,Lightning Charging Cable,1,14.95,2019-10-02 17:17:00,242 Forest St, San Francisco,CA,94016 +262776,AA Batteries (4-pack),1,3.84,2019-10-01 22:52:00,893 North St, Austin,TX,73301 +262776,AAA Batteries (4-pack),1,2.99,2019-10-01 22:52:00,893 North St, Austin,TX,73301 +262777,iPhone,1,700.0,2019-10-17 13:33:00,979 Washington St, Seattle,WA,98101 +262777,Wired Headphones,1,11.99,2019-10-17 13:33:00,979 Washington St, Seattle,WA,98101 +262778,27in FHD Monitor,1,149.99,2019-10-04 13:56:00,479 13th St, Portland,OR,97035 +262779,Google Phone,1,600.0,2019-10-03 00:39:00,117 Lincoln St, Portland,ME,04101 +262780,ThinkPad Laptop,1,999.99,2019-10-26 12:07:00,392 Main St, Dallas,TX,75001 +262781,27in FHD Monitor,1,149.99,2019-10-23 01:10:00,406 2nd St, San Francisco,CA,94016 +262782,AA Batteries (4-pack),1,3.84,2019-10-19 22:08:00,794 13th St, Atlanta,GA,30301 +262783,Lightning Charging Cable,1,14.95,2019-10-04 19:15:00,29 Pine St, San Francisco,CA,94016 +262784,AA Batteries (4-pack),1,3.84,2019-10-06 10:23:00,138 Cedar St, New York City,NY,10001 +262785,Bose SoundSport Headphones,1,99.99,2019-10-19 14:48:00,431 Washington St, Boston,MA,02215 +262786,Wired Headphones,1,11.99,2019-10-28 15:23:00,426 Center St, San Francisco,CA,94016 +262787,Lightning Charging Cable,1,14.95,2019-10-11 14:32:00,161 Sunset St, Boston,MA,02215 +262788,Apple Airpods Headphones,1,150.0,2019-10-06 21:15:00,207 Jefferson St, Dallas,TX,75001 +262789,Lightning Charging Cable,1,14.95,2019-10-27 15:34:00,581 9th St, New York City,NY,10001 +262790,Apple Airpods Headphones,1,150.0,2019-10-13 14:17:00,506 8th St, Portland,OR,97035 +262791,Apple Airpods Headphones,1,150.0,2019-10-24 23:40:00,924 Forest St, San Francisco,CA,94016 +262792,27in 4K Gaming Monitor,1,389.99,2019-10-29 12:55:00,536 Lakeview St, San Francisco,CA,94016 +262793,Google Phone,1,600.0,2019-10-15 01:37:00,361 Lincoln St, New York City,NY,10001 +262794,iPhone,1,700.0,2019-10-02 19:27:00,559 Adams St, Los Angeles,CA,90001 +262795,AA Batteries (4-pack),1,3.84,2019-10-05 11:13:00,224 Hill St, Seattle,WA,98101 +262796,Apple Airpods Headphones,1,150.0,2019-10-19 22:48:00,311 Lakeview St, Atlanta,GA,30301 +262797,Apple Airpods Headphones,1,150.0,2019-10-12 00:21:00,115 Jefferson St, Los Angeles,CA,90001 +262798,Bose SoundSport Headphones,1,99.99,2019-10-18 16:26:00,705 Maple St, Austin,TX,73301 +262799,AAA Batteries (4-pack),1,2.99,2019-10-19 10:39:00,508 River St, Los Angeles,CA,90001 +262800,Bose SoundSport Headphones,1,99.99,2019-10-02 14:14:00,694 Jefferson St, Dallas,TX,75001 +262801,Flatscreen TV,1,300.0,2019-10-22 16:58:00,581 11th St, Los Angeles,CA,90001 +262802,20in Monitor,1,109.99,2019-10-26 04:50:00,812 12th St, Seattle,WA,98101 +262803,Bose SoundSport Headphones,1,99.99,2019-10-05 16:25:00,472 Lincoln St, San Francisco,CA,94016 +262804,Bose SoundSport Headphones,1,99.99,2019-10-08 13:55:00,915 Chestnut St, San Francisco,CA,94016 +262805,Wired Headphones,1,11.99,2019-10-20 19:44:00,479 13th St, Los Angeles,CA,90001 +262806,Google Phone,1,600.0,2019-10-04 02:00:00,930 Cherry St, Boston,MA,02215 +262807,USB-C Charging Cable,1,11.95,2019-10-08 09:07:00,443 Maple St, New York City,NY,10001 +262808,Lightning Charging Cable,1,14.95,2019-10-31 07:03:00,388 Cherry St, Atlanta,GA,30301 +262809,Wired Headphones,1,11.99,2019-10-19 11:01:00,217 14th St, San Francisco,CA,94016 +262810,Google Phone,1,600.0,2019-10-20 19:20:00,471 Dogwood St, Atlanta,GA,30301 +262811,AAA Batteries (4-pack),1,2.99,2019-10-17 09:34:00,256 11th St, New York City,NY,10001 +262812,Wired Headphones,1,11.99,2019-10-25 20:11:00,734 West St, Los Angeles,CA,90001 +262813,ThinkPad Laptop,1,999.99,2019-10-04 11:21:00,235 Madison St, Dallas,TX,75001 +262814,27in FHD Monitor,1,149.99,2019-10-06 19:22:00,166 Lakeview St, Dallas,TX,75001 +262815,Flatscreen TV,1,300.0,2019-10-05 21:52:00,643 Park St, San Francisco,CA,94016 +262816,Bose SoundSport Headphones,1,99.99,2019-10-26 09:42:00,205 Center St, Seattle,WA,98101 +262817,Lightning Charging Cable,1,14.95,2019-10-12 10:56:00,436 Jefferson St, New York City,NY,10001 +262818,Wired Headphones,1,11.99,2019-10-04 20:52:00,141 Meadow St, San Francisco,CA,94016 +262819,AA Batteries (4-pack),1,3.84,2019-10-23 12:36:00,267 Center St, San Francisco,CA,94016 +262820,AAA Batteries (4-pack),4,2.99,2019-10-19 19:00:00,36 Lake St, Boston,MA,02215 +262821,iPhone,1,700.0,2019-10-07 16:30:00,220 Sunset St, Los Angeles,CA,90001 +262821,Lightning Charging Cable,1,14.95,2019-10-07 16:30:00,220 Sunset St, Los Angeles,CA,90001 +262822,USB-C Charging Cable,1,11.95,2019-10-04 09:37:00,91 Johnson St, Austin,TX,73301 +262823,Apple Airpods Headphones,1,150.0,2019-10-22 11:43:00,454 13th St, Austin,TX,73301 +262824,Apple Airpods Headphones,1,150.0,2019-10-05 18:32:00,560 Jefferson St, Atlanta,GA,30301 +262825,Apple Airpods Headphones,1,150.0,2019-10-25 11:06:00,146 7th St, Los Angeles,CA,90001 +262826,Vareebadd Phone,1,400.0,2019-10-31 20:12:00,90 Hickory St, Seattle,WA,98101 +262827,Bose SoundSport Headphones,1,99.99,2019-10-20 11:38:00,59 14th St, Los Angeles,CA,90001 +262828,USB-C Charging Cable,2,11.95,2019-10-22 00:42:00,203 Lakeview St, Dallas,TX,75001 +262829,AA Batteries (4-pack),1,3.84,2019-10-19 20:50:00,69 8th St, San Francisco,CA,94016 +262830,34in Ultrawide Monitor,1,379.99,2019-10-17 14:04:00,101 Meadow St, San Francisco,CA,94016 +262831,34in Ultrawide Monitor,1,379.99,2019-10-31 20:41:00,741 Walnut St, Boston,MA,02215 +262832,27in 4K Gaming Monitor,1,389.99,2019-10-27 15:35:00,191 1st St, Atlanta,GA,30301 +262833,AAA Batteries (4-pack),3,2.99,2019-10-07 09:31:00,687 14th St, Portland,ME,04101 +262834,USB-C Charging Cable,1,11.95,2019-10-15 10:44:00,37 Dogwood St, Boston,MA,02215 +262835,AA Batteries (4-pack),2,3.84,2019-10-26 18:15:00,664 11th St, Boston,MA,02215 +262836,Google Phone,1,600.0,2019-10-24 08:48:00,840 Willow St, New York City,NY,10001 +262837,AA Batteries (4-pack),1,3.84,2019-10-30 19:47:00,12 7th St, Atlanta,GA,30301 +262838,Lightning Charging Cable,1,14.95,2019-10-15 12:32:00,720 13th St, Austin,TX,73301 +262839,Bose SoundSport Headphones,1,99.99,2019-10-02 21:36:00,46 Meadow St, Los Angeles,CA,90001 +262840,Lightning Charging Cable,1,14.95,2019-10-17 22:35:00,511 Lake St, Portland,ME,04101 +262841,Wired Headphones,1,11.99,2019-10-26 12:21:00,1 12th St, New York City,NY,10001 +262842,Google Phone,1,600.0,2019-10-02 09:19:00,157 North St, San Francisco,CA,94016 +262842,USB-C Charging Cable,2,11.95,2019-10-02 09:19:00,157 North St, San Francisco,CA,94016 +262843,AA Batteries (4-pack),1,3.84,2019-10-18 20:51:00,473 Madison St, San Francisco,CA,94016 +262843,27in FHD Monitor,1,149.99,2019-10-18 20:51:00,473 Madison St, San Francisco,CA,94016 +262844,USB-C Charging Cable,1,11.95,2019-10-03 12:10:00,356 Johnson St, San Francisco,CA,94016 +262845,Macbook Pro Laptop,1,1700.0,2019-10-26 20:50:00,271 4th St, Boston,MA,02215 +262846,Apple Airpods Headphones,1,150.0,2019-10-24 14:45:00,770 Jefferson St, San Francisco,CA,94016 +262847,Wired Headphones,1,11.99,2019-10-31 01:44:00,557 South St, Los Angeles,CA,90001 +262848,AAA Batteries (4-pack),1,2.99,2019-10-28 19:35:00,963 1st St, New York City,NY,10001 +262849,Apple Airpods Headphones,1,150.0,2019-10-16 08:27:00,176 Washington St, Dallas,TX,75001 +262850,Wired Headphones,1,11.99,2019-10-19 21:16:00,580 Hill St, Atlanta,GA,30301 +262851,27in FHD Monitor,1,149.99,2019-10-20 10:00:00,289 Elm St, Los Angeles,CA,90001 +262852,Macbook Pro Laptop,1,1700.0,2019-10-05 01:28:00,171 Adams St, New York City,NY,10001 +262853,AAA Batteries (4-pack),2,2.99,2019-10-02 14:38:00,604 Forest St, New York City,NY,10001 +262854,Lightning Charging Cable,1,14.95,2019-10-14 07:57:00,489 Jackson St, San Francisco,CA,94016 +262855,Google Phone,1,600.0,2019-10-19 21:24:00,704 7th St, New York City,NY,10001 +262855,USB-C Charging Cable,1,11.95,2019-10-19 21:24:00,704 7th St, New York City,NY,10001 +262856,ThinkPad Laptop,1,999.99,2019-10-30 20:31:00,958 Elm St, San Francisco,CA,94016 +262857,USB-C Charging Cable,1,11.95,2019-10-07 18:28:00,799 Lincoln St, Dallas,TX,75001 +262858,ThinkPad Laptop,1,999.99,2019-10-12 20:28:00,419 2nd St, Atlanta,GA,30301 +262859,Bose SoundSport Headphones,1,99.99,2019-10-21 18:01:00,264 Pine St, Portland,ME,04101 +262860,27in FHD Monitor,1,149.99,2019-10-14 10:52:00,939 4th St, San Francisco,CA,94016 +262861,Lightning Charging Cable,1,14.95,2019-10-01 23:08:00,307 Chestnut St, Atlanta,GA,30301 +262862,USB-C Charging Cable,1,11.95,2019-10-12 11:16:00,172 11th St, Boston,MA,02215 +262863,Macbook Pro Laptop,1,1700.0,2019-10-21 14:33:00,270 Meadow St, San Francisco,CA,94016 +262864,AAA Batteries (4-pack),1,2.99,2019-10-26 19:05:00,729 Spruce St, Atlanta,GA,30301 +262865,AA Batteries (4-pack),1,3.84,2019-10-11 23:00:00,51 Maple St, San Francisco,CA,94016 +262866,Apple Airpods Headphones,1,150.0,2019-10-22 16:34:00,742 Cherry St, Los Angeles,CA,90001 +262867,Wired Headphones,1,11.99,2019-10-28 15:58:00,58 Sunset St, Los Angeles,CA,90001 +262868,AAA Batteries (4-pack),1,2.99,2019-10-01 13:48:00,339 Elm St, Austin,TX,73301 +262869,27in FHD Monitor,1,149.99,2019-10-08 19:02:00,208 River St, Dallas,TX,75001 +262870,Wired Headphones,1,11.99,2019-10-27 13:53:00,359 Cherry St, Los Angeles,CA,90001 +262871,27in 4K Gaming Monitor,1,389.99,2019-10-01 16:37:00,384 Dogwood St, Atlanta,GA,30301 +262872,USB-C Charging Cable,1,11.95,2019-10-28 22:23:00,118 8th St, San Francisco,CA,94016 +262873,Lightning Charging Cable,1,14.95,2019-10-17 19:38:00,772 1st St, Boston,MA,02215 +262874,Wired Headphones,1,11.99,2019-10-19 15:49:00,560 Main St, Los Angeles,CA,90001 +262875,Wired Headphones,1,11.99,2019-10-29 21:06:00,573 Forest St, San Francisco,CA,94016 +262876,Apple Airpods Headphones,1,150.0,2019-10-19 22:17:00,977 6th St, Portland,OR,97035 +262877,Lightning Charging Cable,1,14.95,2019-10-01 13:22:00,899 Park St, Austin,TX,73301 +262878,Macbook Pro Laptop,1,1700.0,2019-10-01 21:19:00,529 Lake St, Portland,OR,97035 +262879,Lightning Charging Cable,1,14.95,2019-10-31 18:16:00,181 Spruce St, New York City,NY,10001 +262880,Macbook Pro Laptop,1,1700.0,2019-10-26 16:15:00,59 8th St, Dallas,TX,75001 +262881,Wired Headphones,1,11.99,2019-10-05 21:24:00,94 Walnut St, Dallas,TX,75001 +262882,Vareebadd Phone,1,400.0,2019-10-06 17:09:00,627 10th St, Austin,TX,73301 +262883,AAA Batteries (4-pack),1,2.99,2019-10-08 18:43:00,84 9th St, Boston,MA,02215 +262884,Lightning Charging Cable,1,14.95,2019-10-10 18:00:00,720 Chestnut St, San Francisco,CA,94016 +262885,27in FHD Monitor,1,149.99,2019-10-13 13:42:00,338 Main St, Dallas,TX,75001 +262886,AA Batteries (4-pack),1,3.84,2019-10-08 23:36:00,318 Hickory St, San Francisco,CA,94016 +262887,Bose SoundSport Headphones,1,99.99,2019-10-15 08:23:00,343 Johnson St, Dallas,TX,75001 +262888,Lightning Charging Cable,1,14.95,2019-10-01 11:41:00,951 1st St, New York City,NY,10001 +262889,AA Batteries (4-pack),2,3.84,2019-10-03 13:49:00,465 9th St, Austin,TX,73301 +262890,Macbook Pro Laptop,1,1700.0,2019-10-16 19:41:00,678 Sunset St, Boston,MA,02215 +262891,Wired Headphones,2,11.99,2019-10-24 16:20:00,706 Adams St, Dallas,TX,75001 +262892,27in 4K Gaming Monitor,1,389.99,2019-10-14 21:44:00,390 Park St, San Francisco,CA,94016 +262892,Google Phone,1,600.0,2019-10-14 21:44:00,390 Park St, San Francisco,CA,94016 +262893,34in Ultrawide Monitor,1,379.99,2019-10-08 22:33:00,227 Forest St, Boston,MA,02215 +262894,Wired Headphones,1,11.99,2019-10-14 20:12:00,36 12th St, Dallas,TX,75001 +262895,AA Batteries (4-pack),1,3.84,2019-10-23 23:09:00,363 Chestnut St, San Francisco,CA,94016 +262896,USB-C Charging Cable,1,11.95,2019-10-25 07:49:00,498 Center St, San Francisco,CA,94016 +262897,AAA Batteries (4-pack),2,2.99,2019-10-01 10:50:00,844 Chestnut St, Boston,MA,02215 +262898,AAA Batteries (4-pack),1,2.99,2019-10-28 18:04:00,873 2nd St, San Francisco,CA,94016 +262899,Wired Headphones,1,11.99,2019-10-19 19:08:00,971 Church St, Los Angeles,CA,90001 +262900,USB-C Charging Cable,1,11.95,2019-10-19 11:32:00,169 Johnson St, Los Angeles,CA,90001 +262901,Lightning Charging Cable,1,14.95,2019-10-04 19:31:00,978 Adams St, Atlanta,GA,30301 +262902,Vareebadd Phone,1,400.0,2019-10-04 18:24:00,378 West St, Boston,MA,02215 +262902,USB-C Charging Cable,1,11.95,2019-10-04 18:24:00,378 West St, Boston,MA,02215 +262903,Google Phone,1,600.0,2019-10-07 19:57:00,725 10th St, Seattle,WA,98101 +262904,Macbook Pro Laptop,1,1700.0,2019-10-22 13:56:00,174 12th St, Austin,TX,73301 +262905,AAA Batteries (4-pack),1,2.99,2019-10-19 06:41:00,951 Jefferson St, Atlanta,GA,30301 +262906,Wired Headphones,1,11.99,2019-10-11 20:51:00,203 Sunset St, Boston,MA,02215 +262907,USB-C Charging Cable,1,11.95,2019-10-26 14:17:00,394 South St, Los Angeles,CA,90001 +262908,AA Batteries (4-pack),1,3.84,2019-10-04 14:23:00,934 Center St, Los Angeles,CA,90001 +262909,AA Batteries (4-pack),1,3.84,2019-10-19 09:33:00,971 Hill St, Seattle,WA,98101 +262910,USB-C Charging Cable,1,11.95,2019-10-06 00:08:00,786 14th St, San Francisco,CA,94016 +262911,AA Batteries (4-pack),1,3.84,2019-10-10 14:20:00,349 12th St, Atlanta,GA,30301 +262912,AA Batteries (4-pack),1,3.84,2019-10-08 16:41:00,17 14th St, Los Angeles,CA,90001 +262913,Flatscreen TV,1,300.0,2019-10-30 17:51:00,72 Hickory St, Atlanta,GA,30301 +262914,Bose SoundSport Headphones,1,99.99,2019-10-12 10:53:00,663 9th St, Austin,TX,73301 +262915,AAA Batteries (4-pack),1,2.99,2019-10-17 20:08:00,427 14th St, Los Angeles,CA,90001 +262916,Apple Airpods Headphones,1,150.0,2019-10-26 12:55:00,164 Jackson St, Los Angeles,CA,90001 +262917,34in Ultrawide Monitor,1,379.99,2019-10-25 13:58:00,749 Maple St, New York City,NY,10001 +262918,LG Dryer,1,600.0,2019-10-26 15:39:00,376 South St, San Francisco,CA,94016 +262919,AAA Batteries (4-pack),1,2.99,2019-10-23 10:07:00,651 Sunset St, New York City,NY,10001 +262920,Bose SoundSport Headphones,1,99.99,2019-10-10 20:04:00,274 Hill St, Atlanta,GA,30301 +262921,Wired Headphones,1,11.99,2019-10-20 09:23:00,286 6th St, Boston,MA,02215 +262922,Bose SoundSport Headphones,1,99.99,2019-10-03 13:52:00,368 Lakeview St, Boston,MA,02215 +262923,USB-C Charging Cable,1,11.95,2019-10-07 14:42:00,386 Lakeview St, Boston,MA,02215 +262924,Apple Airpods Headphones,1,150.0,2019-10-08 20:32:00,609 7th St, Austin,TX,73301 +262925,USB-C Charging Cable,1,11.95,2019-10-21 23:16:00,941 6th St, San Francisco,CA,94016 +262926,USB-C Charging Cable,1,11.95,2019-10-30 10:56:00,928 Pine St, San Francisco,CA,94016 +262927,20in Monitor,1,109.99,2019-10-02 05:45:00,930 Madison St, Atlanta,GA,30301 +262928,Lightning Charging Cable,1,14.95,2019-11-01 02:33:00,89 4th St, New York City,NY,10001 +262929,Lightning Charging Cable,1,14.95,2019-10-02 01:38:00,784 Ridge St, Los Angeles,CA,90001 +262930,AA Batteries (4-pack),1,3.84,2019-10-13 17:21:00,278 River St, San Francisco,CA,94016 +262931,Flatscreen TV,1,300.0,2019-10-17 10:20:00,790 Hickory St, Austin,TX,73301 +262932,Lightning Charging Cable,1,14.95,2019-10-18 07:26:00,447 Spruce St, Boston,MA,02215 +262933,AAA Batteries (4-pack),2,2.99,2019-10-12 08:25:00,406 9th St, Atlanta,GA,30301 +262934,AAA Batteries (4-pack),1,2.99,2019-10-16 10:53:00,329 South St, Portland,OR,97035 +262935,Lightning Charging Cable,1,14.95,2019-10-24 10:12:00,232 6th St, Austin,TX,73301 +262936,Flatscreen TV,1,300.0,2019-10-17 22:52:00,764 11th St, San Francisco,CA,94016 +262937,Google Phone,1,600.0,2019-10-01 08:38:00,513 14th St, Boston,MA,02215 +262938,27in 4K Gaming Monitor,1,389.99,2019-10-12 09:25:00,406 5th St, San Francisco,CA,94016 +262939,34in Ultrawide Monitor,1,379.99,2019-10-13 19:52:00,270 Walnut St, San Francisco,CA,94016 +262940,27in FHD Monitor,1,149.99,2019-10-02 20:07:00,307 4th St, San Francisco,CA,94016 +262941,AA Batteries (4-pack),2,3.84,2019-10-25 11:53:00,228 Pine St, Los Angeles,CA,90001 +262942,AA Batteries (4-pack),1,3.84,2019-10-28 15:24:00,676 River St, Los Angeles,CA,90001 +262943,Lightning Charging Cable,1,14.95,2019-10-22 20:17:00,325 Ridge St, Los Angeles,CA,90001 +262944,Apple Airpods Headphones,1,150.0,2019-10-10 12:55:00,180 Elm St, Boston,MA,02215 +262945,Wired Headphones,1,11.99,2019-10-07 05:06:00,268 South St, Portland,OR,97035 +262946,34in Ultrawide Monitor,1,379.99,2019-10-04 15:53:00,99 14th St, Atlanta,GA,30301 +262947,Apple Airpods Headphones,1,150.0,2019-10-07 15:17:00,279 Wilson St, San Francisco,CA,94016 +262948,Apple Airpods Headphones,1,150.0,2019-10-28 09:24:00,755 Center St, Atlanta,GA,30301 +262949,Google Phone,1,600.0,2019-10-27 12:03:00,955 Walnut St, Boston,MA,02215 +262950,27in FHD Monitor,1,149.99,2019-10-30 20:55:00,44 12th St, San Francisco,CA,94016 +262951,Wired Headphones,1,11.99,2019-10-05 15:54:00,331 Sunset St, San Francisco,CA,94016 +262952,Flatscreen TV,1,300.0,2019-10-12 16:55:00,938 6th St, Boston,MA,02215 +262953,Macbook Pro Laptop,1,1700.0,2019-10-20 13:12:00,789 4th St, Atlanta,GA,30301 +262954,Lightning Charging Cable,1,14.95,2019-10-31 18:10:00,642 10th St, Austin,TX,73301 +262955,Apple Airpods Headphones,1,150.0,2019-10-17 13:37:00,819 4th St, San Francisco,CA,94016 +262956,USB-C Charging Cable,1,11.95,2019-10-03 04:12:00,364 Wilson St, San Francisco,CA,94016 +262957,27in 4K Gaming Monitor,1,389.99,2019-10-09 13:05:00,176 Willow St, New York City,NY,10001 +262958,Apple Airpods Headphones,1,150.0,2019-10-29 15:58:00,768 6th St, Dallas,TX,75001 +262959,AA Batteries (4-pack),1,3.84,2019-10-26 11:15:00,98 Cedar St, Atlanta,GA,30301 +262960,27in 4K Gaming Monitor,1,389.99,2019-10-17 11:32:00,681 7th St, San Francisco,CA,94016 +262961,20in Monitor,1,109.99,2019-10-05 17:20:00,473 Lake St, San Francisco,CA,94016 +262962,Wired Headphones,1,11.99,2019-10-28 17:54:00,921 Madison St, Los Angeles,CA,90001 +262963,Flatscreen TV,1,300.0,2019-10-14 19:35:00,899 Maple St, Seattle,WA,98101 +262964,Wired Headphones,1,11.99,2019-10-27 19:32:00,400 4th St, San Francisco,CA,94016 +262965,Macbook Pro Laptop,1,1700.0,2019-10-20 10:07:00,317 South St, Los Angeles,CA,90001 +262965,AAA Batteries (4-pack),1,2.99,2019-10-20 10:07:00,317 South St, Los Angeles,CA,90001 +262966,ThinkPad Laptop,1,999.99,2019-10-08 07:21:00,193 Pine St, Los Angeles,CA,90001 +262967,Lightning Charging Cable,1,14.95,2019-10-11 13:26:00,568 14th St, Los Angeles,CA,90001 +262968,USB-C Charging Cable,1,11.95,2019-10-13 19:20:00,739 4th St, Portland,OR,97035 +262969,AA Batteries (4-pack),1,3.84,2019-10-22 22:13:00,760 8th St, Los Angeles,CA,90001 +262970,Wired Headphones,1,11.99,2019-10-12 10:17:00,557 Maple St, Los Angeles,CA,90001 +262971,Bose SoundSport Headphones,1,99.99,2019-10-25 17:03:00,634 West St, Portland,OR,97035 +262972,AAA Batteries (4-pack),1,2.99,2019-10-04 22:44:00,811 6th St, Los Angeles,CA,90001 +262973,AA Batteries (4-pack),1,3.84,2019-10-29 16:24:00,138 Pine St, San Francisco,CA,94016 +262974,Lightning Charging Cable,1,14.95,2019-10-31 18:19:00,842 Willow St, New York City,NY,10001 +262975,Lightning Charging Cable,1,14.95,2019-10-26 11:37:00,100 Main St, New York City,NY,10001 +262976,27in 4K Gaming Monitor,1,389.99,2019-10-08 15:26:00,199 Main St, Boston,MA,02215 +262977,Apple Airpods Headphones,1,150.0,2019-10-03 16:23:00,482 Dogwood St, New York City,NY,10001 +262978,Wired Headphones,1,11.99,2019-10-02 14:21:00,600 2nd St, Los Angeles,CA,90001 +262979,Lightning Charging Cable,1,14.95,2019-10-10 21:29:00,713 Walnut St, San Francisco,CA,94016 +262980,Apple Airpods Headphones,1,150.0,2019-10-08 17:49:00,466 4th St, Los Angeles,CA,90001 +262981,27in FHD Monitor,1,149.99,2019-10-06 13:59:00,560 Jefferson St, Atlanta,GA,30301 +262982,AA Batteries (4-pack),1,3.84,2019-10-07 16:00:00,637 West St, Atlanta,GA,30301 +262983,Apple Airpods Headphones,1,150.0,2019-10-10 20:20:00,195 Pine St, Atlanta,GA,30301 +262984,Wired Headphones,1,11.99,2019-10-03 13:04:00,283 Spruce St, San Francisco,CA,94016 +262985,Google Phone,1,600.0,2019-10-06 05:34:00,680 Ridge St, San Francisco,CA,94016 +262985,Bose SoundSport Headphones,1,99.99,2019-10-06 05:34:00,680 Ridge St, San Francisco,CA,94016 +262986,Macbook Pro Laptop,1,1700.0,2019-10-09 10:40:00,86 Cherry St, New York City,NY,10001 +262987,27in 4K Gaming Monitor,1,389.99,2019-10-23 11:32:00,829 Walnut St, Boston,MA,02215 +262988,27in FHD Monitor,1,149.99,2019-10-31 18:34:00,827 11th St, San Francisco,CA,94016 +262989,AA Batteries (4-pack),1,3.84,2019-10-12 11:28:00,316 Jackson St, Atlanta,GA,30301 +262990,AA Batteries (4-pack),1,3.84,2019-10-10 21:28:00,967 Elm St, New York City,NY,10001 +262991,34in Ultrawide Monitor,1,379.99,2019-10-25 13:58:00,65 9th St, Portland,OR,97035 +262992,Lightning Charging Cable,1,14.95,2019-10-20 19:46:00,426 2nd St, Atlanta,GA,30301 +262993,ThinkPad Laptop,1,999.99,2019-10-15 19:12:00,917 Cherry St, San Francisco,CA,94016 +262994,Lightning Charging Cable,1,14.95,2019-10-08 21:31:00,204 8th St, Los Angeles,CA,90001 +262995,Wired Headphones,1,11.99,2019-10-18 21:28:00,824 Hickory St, Portland,OR,97035 +262996,Apple Airpods Headphones,1,150.0,2019-10-26 20:02:00,701 13th St, San Francisco,CA,94016 +262997,Macbook Pro Laptop,1,1700.0,2019-10-10 10:03:00,899 11th St, New York City,NY,10001 +262998,Google Phone,1,600.0,2019-10-23 06:19:00,645 6th St, Los Angeles,CA,90001 +262999,USB-C Charging Cable,1,11.95,2019-10-04 13:07:00,288 Jackson St, Seattle,WA,98101 +263000,Google Phone,1,600.0,2019-10-07 19:02:00,986 Wilson St, Austin,TX,73301 +263001,AAA Batteries (4-pack),1,2.99,2019-10-09 15:34:00,926 Park St, San Francisco,CA,94016 +263002,Lightning Charging Cable,1,14.95,2019-10-18 10:00:00,983 Jackson St, Los Angeles,CA,90001 +263003,ThinkPad Laptop,1,999.99,2019-10-27 02:23:00,719 Forest St, Boston,MA,02215 +263004,USB-C Charging Cable,1,11.95,2019-10-09 11:09:00,995 Washington St, New York City,NY,10001 +263005,AA Batteries (4-pack),4,3.84,2019-10-04 20:09:00,237 Jackson St, Dallas,TX,75001 +263006,34in Ultrawide Monitor,1,379.99,2019-10-30 22:40:00,274 6th St, San Francisco,CA,94016 +263007,Bose SoundSport Headphones,1,99.99,2019-10-20 07:05:00,174 Madison St, Atlanta,GA,30301 +263008,ThinkPad Laptop,1,999.99,2019-10-31 13:21:00,263 Maple St, New York City,NY,10001 +263009,AA Batteries (4-pack),1,3.84,2019-10-26 16:49:00,168 8th St, New York City,NY,10001 +263010,Lightning Charging Cable,1,14.95,2019-10-03 12:29:00,94 Lake St, New York City,NY,10001 +263011,Bose SoundSport Headphones,1,99.99,2019-10-15 17:08:00,73 5th St, San Francisco,CA,94016 +263012,Wired Headphones,1,11.99,2019-10-06 16:16:00,982 South St, Dallas,TX,75001 +263013,Macbook Pro Laptop,1,1700.0,2019-10-05 08:56:00,943 12th St, Dallas,TX,75001 +263014,20in Monitor,1,109.99,2019-10-15 17:34:00,206 Adams St, Los Angeles,CA,90001 +263015,Apple Airpods Headphones,1,150.0,2019-10-25 23:29:00,953 Jefferson St, Atlanta,GA,30301 +263016,Wired Headphones,1,11.99,2019-10-30 21:26:00,581 Forest St, New York City,NY,10001 +263017,Macbook Pro Laptop,1,1700.0,2019-10-01 15:17:00,911 West St, Boston,MA,02215 +263018,27in FHD Monitor,1,149.99,2019-10-23 20:08:00,932 10th St, New York City,NY,10001 +263019,Lightning Charging Cable,1,14.95,2019-10-22 15:46:00,795 Meadow St, Boston,MA,02215 +263020,Flatscreen TV,1,300.0,2019-10-19 14:40:00,143 Wilson St, New York City,NY,10001 +263021,USB-C Charging Cable,2,11.95,2019-10-16 12:59:00,102 Forest St, Boston,MA,02215 +263022,AAA Batteries (4-pack),1,2.99,2019-10-28 19:22:00,4 Lakeview St, San Francisco,CA,94016 +263023,Lightning Charging Cable,1,14.95,2019-10-08 08:31:00,741 Cherry St, New York City,NY,10001 +263024,Apple Airpods Headphones,1,150.0,2019-10-29 14:01:00,23 Dogwood St, San Francisco,CA,94016 +263025,Wired Headphones,1,11.99,2019-10-07 12:01:00,524 Hill St, San Francisco,CA,94016 +263026,USB-C Charging Cable,1,11.95,2019-10-05 15:40:00,501 Center St, New York City,NY,10001 +263027,AAA Batteries (4-pack),1,2.99,2019-10-03 10:18:00,62 Elm St, Atlanta,GA,30301 +263028,AAA Batteries (4-pack),1,2.99,2019-10-25 20:51:00,351 Adams St, Atlanta,GA,30301 +263029,Lightning Charging Cable,1,14.95,2019-10-31 13:10:00,977 Maple St, Los Angeles,CA,90001 +263030,AA Batteries (4-pack),1,3.84,2019-10-12 21:10:00,203 1st St, Boston,MA,02215 +263031,Wired Headphones,1,11.99,2019-10-04 20:38:00,125 6th St, Portland,ME,04101 +263032,AAA Batteries (4-pack),1,2.99,2019-10-13 21:37:00,768 Jefferson St, Dallas,TX,75001 +263033,Apple Airpods Headphones,1,150.0,2019-10-26 18:42:00,769 12th St, Seattle,WA,98101 +263034,USB-C Charging Cable,1,11.95,2019-10-05 12:48:00,799 Hill St, San Francisco,CA,94016 +263035,34in Ultrawide Monitor,1,379.99,2019-10-03 09:53:00,113 Spruce St, New York City,NY,10001 +263036,AA Batteries (4-pack),1,3.84,2019-10-29 11:19:00,843 Lakeview St, Seattle,WA,98101 +263037,AA Batteries (4-pack),1,3.84,2019-10-03 21:22:00,182 Elm St, Boston,MA,02215 +263038,20in Monitor,1,109.99,2019-10-27 09:12:00,275 Main St, Dallas,TX,75001 +263039,AA Batteries (4-pack),1,3.84,2019-10-06 21:38:00,810 Center St, Los Angeles,CA,90001 +263040,USB-C Charging Cable,1,11.95,2019-10-17 18:27:00,618 11th St, Los Angeles,CA,90001 +263041,iPhone,1,700.0,2019-10-06 16:29:00,339 Park St, Los Angeles,CA,90001 +263042,AAA Batteries (4-pack),1,2.99,2019-10-15 10:54:00,513 2nd St, Austin,TX,73301 +263043,Wired Headphones,1,11.99,2019-10-10 17:48:00,267 Meadow St, San Francisco,CA,94016 +263044,Google Phone,1,600.0,2019-10-03 19:00:00,36 Elm St, Los Angeles,CA,90001 +263044,Wired Headphones,1,11.99,2019-10-03 19:00:00,36 Elm St, Los Angeles,CA,90001 +263045,Lightning Charging Cable,1,14.95,2019-10-31 08:41:00,389 Hickory St, Atlanta,GA,30301 +263046,Lightning Charging Cable,1,14.95,2019-10-19 14:22:00,798 Hickory St, Austin,TX,73301 +263047,USB-C Charging Cable,1,11.95,2019-10-23 19:15:00,783 Ridge St, Boston,MA,02215 +263048,Macbook Pro Laptop,1,1700.0,2019-10-30 12:45:00,644 Washington St, San Francisco,CA,94016 +263049,27in 4K Gaming Monitor,1,389.99,2019-10-20 19:31:00,931 South St, Dallas,TX,75001 +263050,Lightning Charging Cable,1,14.95,2019-10-11 17:36:00,932 Dogwood St, San Francisco,CA,94016 +263051,AAA Batteries (4-pack),1,2.99,2019-10-19 15:42:00,384 Pine St, Los Angeles,CA,90001 +263052,LG Washing Machine,1,600.0,2019-10-13 06:47:00,613 5th St, Los Angeles,CA,90001 +263053,USB-C Charging Cable,1,11.95,2019-10-27 13:53:00,329 Pine St, Boston,MA,02215 +263054,Bose SoundSport Headphones,1,99.99,2019-10-20 14:21:00,20 Ridge St, Seattle,WA,98101 +263055,Wired Headphones,1,11.99,2019-10-24 08:58:00,720 Dogwood St, San Francisco,CA,94016 +263056,Bose SoundSport Headphones,1,99.99,2019-10-17 08:00:00,287 North St, New York City,NY,10001 +263057,AA Batteries (4-pack),1,3.84,2019-10-07 17:33:00,10 Center St, Austin,TX,73301 +263058,Wired Headphones,1,11.99,2019-10-29 20:05:00,345 Jefferson St, San Francisco,CA,94016 +263059,Lightning Charging Cable,1,14.95,2019-10-11 10:27:00,801 11th St, Atlanta,GA,30301 +263060,AAA Batteries (4-pack),1,2.99,2019-10-19 22:51:00,666 Lakeview St, Boston,MA,02215 +263061,USB-C Charging Cable,1,11.95,2019-10-15 15:21:00,693 Willow St, Atlanta,GA,30301 +263062,Macbook Pro Laptop,1,1700.0,2019-10-09 10:39:00,78 Maple St, Atlanta,GA,30301 +263063,Bose SoundSport Headphones,1,99.99,2019-10-07 17:23:00,31 Johnson St, Boston,MA,02215 +263064,Wired Headphones,1,11.99,2019-10-29 15:18:00,491 Sunset St, Atlanta,GA,30301 +263065,Apple Airpods Headphones,1,150.0,2019-10-20 09:53:00,985 Lakeview St, San Francisco,CA,94016 +263066,Apple Airpods Headphones,1,150.0,2019-10-13 14:45:00,8 South St, San Francisco,CA,94016 +263067,Apple Airpods Headphones,1,150.0,2019-10-07 16:41:00,938 Maple St, Boston,MA,02215 +263068,34in Ultrawide Monitor,1,379.99,2019-10-13 19:13:00,537 Hill St, San Francisco,CA,94016 +263069,Apple Airpods Headphones,1,150.0,2019-10-05 17:37:00,590 14th St, Los Angeles,CA,90001 +263070,AA Batteries (4-pack),1,3.84,2019-10-23 17:33:00,82 12th St, San Francisco,CA,94016 +263071,AAA Batteries (4-pack),1,2.99,2019-10-14 10:03:00,725 Johnson St, Seattle,WA,98101 +263072,Flatscreen TV,1,300.0,2019-10-12 16:27:00,670 Johnson St, Atlanta,GA,30301 +263073,USB-C Charging Cable,1,11.95,2019-10-21 07:31:00,24 South St, Los Angeles,CA,90001 +263074,Lightning Charging Cable,1,14.95,2019-10-25 21:30:00,450 Ridge St, Dallas,TX,75001 +263075,AAA Batteries (4-pack),1,2.99,2019-10-23 12:43:00,370 Sunset St, Atlanta,GA,30301 +263076,Flatscreen TV,1,300.0,2019-10-10 14:08:00,208 River St, New York City,NY,10001 +263077,Bose SoundSport Headphones,1,99.99,2019-10-09 20:19:00,779 Main St, Los Angeles,CA,90001 +263078,USB-C Charging Cable,1,11.95,2019-10-20 09:37:00,390 Jackson St, Austin,TX,73301 +263079,Wired Headphones,1,11.99,2019-10-31 14:30:00,311 Sunset St, Los Angeles,CA,90001 +263080,Flatscreen TV,1,300.0,2019-10-31 11:35:00,878 Lakeview St, San Francisco,CA,94016 +263081,Wired Headphones,1,11.99,2019-10-17 21:24:00,744 5th St, Austin,TX,73301 +263082,AA Batteries (4-pack),1,3.84,2019-10-22 22:28:00,74 Sunset St, Los Angeles,CA,90001 +263083,Wired Headphones,1,11.99,2019-10-24 08:57:00,427 Jackson St, Dallas,TX,75001 +263084,AAA Batteries (4-pack),2,2.99,2019-10-13 14:06:00,280 Church St, Boston,MA,02215 +263085,Wired Headphones,1,11.99,2019-10-10 11:05:00,621 Pine St, Portland,OR,97035 +263086,Google Phone,1,600.0,2019-10-02 10:58:00,898 14th St, San Francisco,CA,94016 +263087,34in Ultrawide Monitor,1,379.99,2019-10-24 20:11:00,453 2nd St, Dallas,TX,75001 +263088,AA Batteries (4-pack),1,3.84,2019-10-28 15:21:00,777 4th St, Los Angeles,CA,90001 +263089,AAA Batteries (4-pack),1,2.99,2019-10-08 19:38:00,521 8th St, Atlanta,GA,30301 +263090,AAA Batteries (4-pack),1,2.99,2019-10-07 16:39:00,872 6th St, Los Angeles,CA,90001 +263091,Wired Headphones,1,11.99,2019-10-12 22:18:00,79 6th St, Dallas,TX,75001 +263092,Flatscreen TV,1,300.0,2019-10-23 13:18:00,852 Cedar St, Portland,OR,97035 +263093,AAA Batteries (4-pack),1,2.99,2019-10-05 13:20:00,803 11th St, Portland,OR,97035 +263094,Apple Airpods Headphones,1,150.0,2019-10-11 18:12:00,55 Ridge St, Los Angeles,CA,90001 +263095,Bose SoundSport Headphones,1,99.99,2019-10-05 13:20:00,860 Jackson St, Boston,MA,02215 +263096,Lightning Charging Cable,1,14.95,2019-10-20 12:59:00,359 12th St, San Francisco,CA,94016 +263097,Apple Airpods Headphones,1,150.0,2019-10-07 13:02:00,592 Maple St, San Francisco,CA,94016 +263098,Apple Airpods Headphones,1,150.0,2019-10-26 12:45:00,81 5th St, Los Angeles,CA,90001 +263099,20in Monitor,1,109.99,2019-10-13 10:14:00,484 Madison St, Portland,OR,97035 +263100,AAA Batteries (4-pack),1,2.99,2019-10-11 13:54:00,852 10th St, Portland,OR,97035 +263101,USB-C Charging Cable,1,11.95,2019-10-15 20:05:00,28 Willow St, Austin,TX,73301 +263102,USB-C Charging Cable,1,11.95,2019-10-12 11:33:00,282 Forest St, Los Angeles,CA,90001 +263103,USB-C Charging Cable,1,11.95,2019-10-27 12:31:00,902 Church St, New York City,NY,10001 +263104,AA Batteries (4-pack),1,3.84,2019-10-29 14:27:00,250 2nd St, Boston,MA,02215 +263105,Vareebadd Phone,1,400.0,2019-10-23 11:02:00,435 Madison St, San Francisco,CA,94016 +263105,USB-C Charging Cable,1,11.95,2019-10-23 11:02:00,435 Madison St, San Francisco,CA,94016 +263105,Bose SoundSport Headphones,1,99.99,2019-10-23 11:02:00,435 Madison St, San Francisco,CA,94016 +263106,AAA Batteries (4-pack),1,2.99,2019-10-30 18:29:00,523 Dogwood St, San Francisco,CA,94016 +263107,Google Phone,1,600.0,2019-10-28 12:33:00,343 11th St, Los Angeles,CA,90001 +263107,USB-C Charging Cable,1,11.95,2019-10-28 12:33:00,343 11th St, Los Angeles,CA,90001 +263108,iPhone,1,700.0,2019-10-26 09:19:00,590 Elm St, San Francisco,CA,94016 +263108,Macbook Pro Laptop,1,1700.0,2019-10-26 09:19:00,590 Elm St, San Francisco,CA,94016 +263109,Wired Headphones,1,11.99,2019-10-27 22:12:00,624 South St, Portland,OR,97035 +263110,AA Batteries (4-pack),1,3.84,2019-10-31 02:59:00,624 Washington St, Atlanta,GA,30301 +263111,Wired Headphones,1,11.99,2019-10-23 20:07:00,4 Meadow St, Los Angeles,CA,90001 +263112,Bose SoundSport Headphones,1,99.99,2019-10-12 20:52:00,599 Ridge St, Austin,TX,73301 +263113,Bose SoundSport Headphones,1,99.99,2019-10-28 21:22:00,980 Main St, New York City,NY,10001 +263114,AAA Batteries (4-pack),2,2.99,2019-10-08 11:32:00,465 South St, Los Angeles,CA,90001 +263115,AAA Batteries (4-pack),1,2.99,2019-10-01 11:24:00,864 Main St, San Francisco,CA,94016 +263116,AAA Batteries (4-pack),2,2.99,2019-10-07 12:19:00,371 11th St, Seattle,WA,98101 +263117,USB-C Charging Cable,1,11.95,2019-10-26 00:25:00,441 South St, Austin,TX,73301 +263118,AA Batteries (4-pack),3,3.84,2019-10-09 18:39:00,852 4th St, Los Angeles,CA,90001 +263119,27in FHD Monitor,1,149.99,2019-10-29 20:15:00,100 9th St, San Francisco,CA,94016 +263120,USB-C Charging Cable,2,11.95,2019-10-21 09:12:00,140 11th St, San Francisco,CA,94016 +263121,Wired Headphones,2,11.99,2019-10-24 18:09:00,745 North St, Dallas,TX,75001 +263122,Vareebadd Phone,1,400.0,2019-10-06 14:12:00,543 Forest St, Austin,TX,73301 +263122,Wired Headphones,1,11.99,2019-10-06 14:12:00,543 Forest St, Austin,TX,73301 +263123,27in FHD Monitor,1,149.99,2019-10-20 17:11:00,359 8th St, Portland,OR,97035 +263124,Apple Airpods Headphones,1,150.0,2019-10-07 12:50:00,564 Lincoln St, New York City,NY,10001 +263125,USB-C Charging Cable,1,11.95,2019-10-10 17:30:00,663 Jackson St, San Francisco,CA,94016 +263126,AAA Batteries (4-pack),1,2.99,2019-10-27 23:44:00,861 Walnut St, Los Angeles,CA,90001 +263127,Google Phone,1,600.0,2019-10-20 22:50:00,926 2nd St, Los Angeles,CA,90001 +263128,USB-C Charging Cable,1,11.95,2019-10-06 20:28:00,360 5th St, San Francisco,CA,94016 +263129,Apple Airpods Headphones,1,150.0,2019-10-31 16:28:00,344 Spruce St, San Francisco,CA,94016 +263130,AAA Batteries (4-pack),1,2.99,2019-10-25 15:46:00,649 Lakeview St, San Francisco,CA,94016 +263131,Vareebadd Phone,1,400.0,2019-10-14 21:21:00,555 South St, Los Angeles,CA,90001 +263132,Lightning Charging Cable,1,14.95,2019-10-28 10:00:00,233 Johnson St, Los Angeles,CA,90001 +263133,Lightning Charging Cable,1,14.95,2019-10-27 12:28:00,81 Chestnut St, Seattle,WA,98101 +263134,Google Phone,1,600.0,2019-10-25 14:29:00,277 Washington St, Los Angeles,CA,90001 +263135,Lightning Charging Cable,1,14.95,2019-10-23 12:59:00,944 North St, San Francisco,CA,94016 +263136,Lightning Charging Cable,1,14.95,2019-10-08 16:13:00,973 Jackson St, New York City,NY,10001 +263137,Vareebadd Phone,1,400.0,2019-10-02 21:31:00,227 Cherry St, New York City,NY,10001 +263138,Google Phone,1,600.0,2019-10-11 21:18:00,52 13th St, Boston,MA,02215 +263139,AA Batteries (4-pack),1,3.84,2019-10-28 12:19:00,853 Willow St, Seattle,WA,98101 +263140,USB-C Charging Cable,1,11.95,2019-10-09 10:20:00,669 Center St, Boston,MA,02215 +263141,27in 4K Gaming Monitor,1,389.99,2019-10-20 11:32:00,720 Forest St, San Francisco,CA,94016 +263142,Wired Headphones,1,11.99,2019-10-26 18:30:00,905 Hickory St, Atlanta,GA,30301 +263143,Macbook Pro Laptop,1,1700.0,2019-10-16 19:06:00,156 Chestnut St, New York City,NY,10001 +263144,AA Batteries (4-pack),1,3.84,2019-10-11 11:25:00,83 Spruce St, San Francisco,CA,94016 +263145,Wired Headphones,2,11.99,2019-10-16 09:57:00,212 Lakeview St, Portland,OR,97035 +263146,USB-C Charging Cable,1,11.95,2019-10-15 15:46:00,889 Highland St, Dallas,TX,75001 +263147,iPhone,1,700.0,2019-10-31 11:43:00,177 6th St, Atlanta,GA,30301 +263148,USB-C Charging Cable,2,11.95,2019-10-16 09:52:00,262 River St, Seattle,WA,98101 +263149,Google Phone,1,600.0,2019-10-15 12:05:00,16 13th St, Los Angeles,CA,90001 +263150,USB-C Charging Cable,2,11.95,2019-10-08 15:05:00,98 Center St, Seattle,WA,98101 +263151,Bose SoundSport Headphones,1,99.99,2019-10-16 10:27:00,452 2nd St, Portland,OR,97035 +263152,Vareebadd Phone,1,400.0,2019-10-03 14:37:00,303 Ridge St, Dallas,TX,75001 +263153,Apple Airpods Headphones,1,150.0,2019-10-30 12:30:00,803 5th St, New York City,NY,10001 +263154,27in 4K Gaming Monitor,1,389.99,2019-10-15 09:57:00,185 Lincoln St, Portland,ME,04101 +263155,Lightning Charging Cable,1,14.95,2019-10-30 20:17:00,544 Johnson St, Portland,OR,97035 +263156,USB-C Charging Cable,1,11.95,2019-10-30 13:36:00,515 Washington St, Boston,MA,02215 +263157,AA Batteries (4-pack),1,3.84,2019-10-17 22:35:00,540 10th St, Atlanta,GA,30301 +263158,34in Ultrawide Monitor,1,379.99,2019-10-03 12:57:00,64 Dogwood St, Atlanta,GA,30301 +263159,Lightning Charging Cable,1,14.95,2019-10-20 09:14:00,637 Maple St, San Francisco,CA,94016 +263160,Wired Headphones,1,11.99,2019-10-16 00:31:00,479 Walnut St, Boston,MA,02215 +263161,Flatscreen TV,1,300.0,2019-10-19 17:12:00,310 Wilson St, Los Angeles,CA,90001 +263162,AAA Batteries (4-pack),1,2.99,2019-11-01 00:09:00,741 Dogwood St, Austin,TX,73301 +263163,AAA Batteries (4-pack),4,2.99,2019-10-14 09:24:00,366 Wilson St, Austin,TX,73301 +263164,USB-C Charging Cable,1,11.95,2019-10-04 14:15:00,619 Jackson St, San Francisco,CA,94016 +263165,Lightning Charging Cable,1,14.95,2019-10-29 20:56:00,856 4th St, Atlanta,GA,30301 +263166,Apple Airpods Headphones,1,150.0,2019-10-04 15:19:00,648 Lakeview St, Austin,TX,73301 +263167,Bose SoundSport Headphones,1,99.99,2019-10-19 15:54:00,622 Willow St, Atlanta,GA,30301 +263168,Apple Airpods Headphones,1,150.0,2019-10-11 21:57:00,749 North St, Los Angeles,CA,90001 +263169,ThinkPad Laptop,1,999.99,2019-10-23 19:46:00,532 4th St, Los Angeles,CA,90001 +263170,AAA Batteries (4-pack),1,2.99,2019-10-23 12:30:00,520 Jackson St, Atlanta,GA,30301 +263171,Lightning Charging Cable,1,14.95,2019-10-15 09:53:00,451 Lake St, Boston,MA,02215 +263172,Wired Headphones,1,11.99,2019-10-30 09:56:00,275 8th St, San Francisco,CA,94016 +263173,Bose SoundSport Headphones,1,99.99,2019-10-05 17:17:00,744 Washington St, San Francisco,CA,94016 +263174,Apple Airpods Headphones,1,150.0,2019-10-24 13:00:00,373 Cedar St, Boston,MA,02215 +263175,iPhone,1,700.0,2019-10-27 20:10:00,278 Hill St, Dallas,TX,75001 +263175,Lightning Charging Cable,1,14.95,2019-10-27 20:10:00,278 Hill St, Dallas,TX,75001 +263176,Wired Headphones,1,11.99,2019-10-06 17:02:00,739 Lake St, Dallas,TX,75001 +263177,AAA Batteries (4-pack),4,2.99,2019-10-05 14:28:00,358 Center St, New York City,NY,10001 +263178,AAA Batteries (4-pack),2,2.99,2019-10-01 13:48:00,711 Elm St, Dallas,TX,75001 +263179,Google Phone,1,600.0,2019-10-11 17:54:00,861 5th St, Portland,OR,97035 +263180,Apple Airpods Headphones,1,150.0,2019-10-08 17:57:00,150 Sunset St, San Francisco,CA,94016 +263181,AAA Batteries (4-pack),1,2.99,2019-10-11 18:18:00,404 Pine St, Portland,OR,97035 +263182,AA Batteries (4-pack),1,3.84,2019-10-22 18:00:00,415 2nd St, Atlanta,GA,30301 +263183,27in FHD Monitor,1,149.99,2019-10-21 07:34:00,209 4th St, New York City,NY,10001 +263184,Wired Headphones,1,11.99,2019-10-21 22:21:00,210 Johnson St, Atlanta,GA,30301 +263185,AA Batteries (4-pack),1,3.84,2019-10-09 18:18:00,299 13th St, Atlanta,GA,30301 +263186,Wired Headphones,1,11.99,2019-10-03 21:07:00,634 Maple St, New York City,NY,10001 +263187,27in FHD Monitor,1,149.99,2019-10-09 14:06:00,757 Washington St, Los Angeles,CA,90001 +263188,Wired Headphones,1,11.99,2019-10-02 18:43:00,990 Jefferson St, New York City,NY,10001 +263189,iPhone,1,700.0,2019-10-25 13:01:00,268 6th St, San Francisco,CA,94016 +263190,USB-C Charging Cable,1,11.95,2019-10-25 11:28:00,446 Hickory St, San Francisco,CA,94016 +263191,AA Batteries (4-pack),1,3.84,2019-10-29 18:23:00,689 Hill St, Los Angeles,CA,90001 +263192,Apple Airpods Headphones,1,150.0,2019-10-10 11:38:00,722 Forest St, Boston,MA,02215 +263193,USB-C Charging Cable,1,11.95,2019-10-06 22:42:00,924 Lake St, New York City,NY,10001 +263194,AA Batteries (4-pack),1,3.84,2019-10-16 11:13:00,560 North St, Boston,MA,02215 +263195,Wired Headphones,1,11.99,2019-10-08 22:56:00,851 7th St, Atlanta,GA,30301 +263196,AAA Batteries (4-pack),1,2.99,2019-10-28 19:06:00,960 Lake St, Atlanta,GA,30301 +263197,Apple Airpods Headphones,1,150.0,2019-10-21 12:39:00,731 10th St, Boston,MA,02215 +263198,USB-C Charging Cable,1,11.95,2019-10-01 12:15:00,243 13th St, New York City,NY,10001 +263199,Google Phone,1,600.0,2019-10-29 06:07:00,950 Lakeview St, Boston,MA,02215 +263200,Apple Airpods Headphones,1,150.0,2019-10-26 11:33:00,797 Dogwood St, San Francisco,CA,94016 +263201,AA Batteries (4-pack),1,3.84,2019-10-11 19:37:00,495 Forest St, Los Angeles,CA,90001 +263202,AA Batteries (4-pack),1,3.84,2019-10-23 00:50:00,740 Johnson St, Seattle,WA,98101 +263203,USB-C Charging Cable,1,11.95,2019-10-08 13:27:00,36 Chestnut St, Portland,OR,97035 +263204,AA Batteries (4-pack),1,3.84,2019-10-07 23:44:00,114 8th St, Seattle,WA,98101 +263205,Lightning Charging Cable,1,14.95,2019-10-10 10:20:00,491 Lake St, Portland,OR,97035 +263206,Apple Airpods Headphones,1,150.0,2019-10-12 19:06:00,579 River St, Atlanta,GA,30301 +263207,Wired Headphones,1,11.99,2019-10-31 11:05:00,682 River St, New York City,NY,10001 +263208,AAA Batteries (4-pack),1,2.99,2019-10-26 23:37:00,503 6th St, New York City,NY,10001 +263209,Apple Airpods Headphones,1,150.0,2019-10-21 19:13:00,724 9th St, Austin,TX,73301 +263210,USB-C Charging Cable,1,11.95,2019-10-01 10:11:00,15 Wilson St, Seattle,WA,98101 +263211,Apple Airpods Headphones,1,150.0,2019-10-23 18:00:00,87 Highland St, San Francisco,CA,94016 +263212,Wired Headphones,1,11.99,2019-10-04 09:02:00,935 Elm St, San Francisco,CA,94016 +263213,AA Batteries (4-pack),3,3.84,2019-10-11 12:55:00,27 Elm St, Seattle,WA,98101 +263214,27in FHD Monitor,1,149.99,2019-10-30 17:56:00,54 Chestnut St, New York City,NY,10001 +263215,Flatscreen TV,1,300.0,2019-10-28 11:55:00,24 Jefferson St, New York City,NY,10001 +263216,Apple Airpods Headphones,1,150.0,2019-10-22 19:13:00,928 Pine St, Dallas,TX,75001 +263217,27in FHD Monitor,1,149.99,2019-10-21 11:09:00,23 Park St, Seattle,WA,98101 +263218,AA Batteries (4-pack),2,3.84,2019-10-22 07:06:00,493 Willow St, Atlanta,GA,30301 +263219,27in 4K Gaming Monitor,1,389.99,2019-10-27 04:55:00,33 Ridge St, San Francisco,CA,94016 +263220,Bose SoundSport Headphones,1,99.99,2019-10-25 15:21:00,300 Cedar St, Atlanta,GA,30301 +263221,AAA Batteries (4-pack),1,2.99,2019-10-17 17:38:00,790 Center St, Austin,TX,73301 +263222,Apple Airpods Headphones,1,150.0,2019-10-26 20:36:00,483 Walnut St, Boston,MA,02215 +263223,AA Batteries (4-pack),2,3.84,2019-10-27 07:02:00,532 Ridge St, Los Angeles,CA,90001 +263224,Apple Airpods Headphones,1,150.0,2019-10-19 09:08:00,110 Meadow St, Dallas,TX,75001 +263225,iPhone,1,700.0,2019-10-06 14:46:00,496 4th St, New York City,NY,10001 +263226,Macbook Pro Laptop,1,1700.0,2019-10-31 18:20:00,713 Highland St, San Francisco,CA,94016 +263227,USB-C Charging Cable,1,11.95,2019-10-31 16:28:00,666 Walnut St, New York City,NY,10001 +263228,AA Batteries (4-pack),1,3.84,2019-10-10 17:39:00,626 Chestnut St, Dallas,TX,75001 +263229,Wired Headphones,1,11.99,2019-10-23 09:02:00,330 11th St, New York City,NY,10001 +263230,34in Ultrawide Monitor,1,379.99,2019-10-24 00:48:00,97 Chestnut St, San Francisco,CA,94016 +263231,USB-C Charging Cable,1,11.95,2019-10-25 20:25:00,727 Dogwood St, Seattle,WA,98101 +263232,USB-C Charging Cable,1,11.95,2019-10-10 22:11:00,689 Pine St, Atlanta,GA,30301 +263233,USB-C Charging Cable,1,11.95,2019-10-10 14:14:00,977 7th St, Dallas,TX,75001 +263234,USB-C Charging Cable,1,11.95,2019-10-28 20:08:00,928 Park St, Portland,OR,97035 +263235,27in FHD Monitor,1,149.99,2019-10-25 18:47:00,96 West St, Atlanta,GA,30301 +263236,27in FHD Monitor,1,149.99,2019-10-27 14:51:00,513 4th St, Seattle,WA,98101 +263237,Apple Airpods Headphones,1,150.0,2019-10-19 14:16:00,282 River St, San Francisco,CA,94016 +263238,Lightning Charging Cable,1,14.95,2019-10-08 00:41:00,757 Elm St, San Francisco,CA,94016 +263239,Apple Airpods Headphones,1,150.0,2019-10-21 23:11:00,249 Sunset St, Boston,MA,02215 +263240,27in 4K Gaming Monitor,1,389.99,2019-10-11 23:27:00,147 10th St, New York City,NY,10001 +263241,Apple Airpods Headphones,1,150.0,2019-10-22 10:32:00,349 2nd St, Los Angeles,CA,90001 +263242,Lightning Charging Cable,1,14.95,2019-10-17 17:24:00,232 12th St, Los Angeles,CA,90001 +263243,Apple Airpods Headphones,1,150.0,2019-10-20 09:53:00,912 Ridge St, Seattle,WA,98101 +263244,Lightning Charging Cable,1,14.95,2019-10-20 19:53:00,384 Church St, Los Angeles,CA,90001 +263245,AAA Batteries (4-pack),1,2.99,2019-10-03 16:05:00,68 Wilson St, Los Angeles,CA,90001 +263246,USB-C Charging Cable,1,11.95,2019-10-21 09:41:00,90 Chestnut St, San Francisco,CA,94016 +263247,20in Monitor,1,109.99,2019-10-31 15:12:00,794 Sunset St, Boston,MA,02215 +263248,Apple Airpods Headphones,1,150.0,2019-10-20 12:37:00,175 Meadow St, Los Angeles,CA,90001 +263249,USB-C Charging Cable,2,11.95,2019-10-10 10:55:00,677 West St, Boston,MA,02215 +263249,20in Monitor,1,109.99,2019-10-10 10:55:00,677 West St, Boston,MA,02215 +263250,USB-C Charging Cable,1,11.95,2019-10-19 20:33:00,308 1st St, Portland,OR,97035 +263251,AA Batteries (4-pack),1,3.84,2019-10-19 20:51:00,356 Elm St, San Francisco,CA,94016 +263252,USB-C Charging Cable,1,11.95,2019-10-25 19:48:00,72 Adams St, San Francisco,CA,94016 +263253,LG Washing Machine,1,600.0,2019-10-07 17:44:00,274 River St, San Francisco,CA,94016 +263254,Google Phone,1,600.0,2019-10-27 06:49:00,865 10th St, Los Angeles,CA,90001 +263255,Wired Headphones,1,11.99,2019-10-16 10:43:00,151 Center St, Dallas,TX,75001 +263256,AA Batteries (4-pack),2,3.84,2019-10-30 11:41:00,58 West St, New York City,NY,10001 +263257,27in 4K Gaming Monitor,1,389.99,2019-10-27 19:36:00,921 5th St, New York City,NY,10001 +263258,Wired Headphones,1,11.99,2019-10-27 05:09:00,963 Madison St, Seattle,WA,98101 +263259,27in FHD Monitor,1,149.99,2019-10-07 12:21:00,111 Lake St, New York City,NY,10001 +263260,AAA Batteries (4-pack),2,2.99,2019-10-05 11:03:00,924 Lake St, Boston,MA,02215 +263261,USB-C Charging Cable,1,11.95,2019-10-17 18:54:00,109 Washington St, New York City,NY,10001 +263262,AAA Batteries (4-pack),1,2.99,2019-10-02 07:54:00,912 Johnson St, Boston,MA,02215 +263263,Wired Headphones,1,11.99,2019-10-15 21:00:00,511 Center St, Atlanta,GA,30301 +263264,ThinkPad Laptop,1,999.99,2019-10-02 21:52:00,860 South St, Boston,MA,02215 +263265,Macbook Pro Laptop,1,1700.0,2019-10-13 10:00:00,699 Cedar St, Los Angeles,CA,90001 +263266,USB-C Charging Cable,1,11.95,2019-10-18 15:43:00,217 Wilson St, Los Angeles,CA,90001 +263267,AA Batteries (4-pack),1,3.84,2019-10-09 16:14:00,945 Lakeview St, Boston,MA,02215 +263268,Apple Airpods Headphones,1,150.0,2019-10-06 21:37:00,755 Walnut St, Portland,OR,97035 +263269,27in FHD Monitor,1,149.99,2019-10-22 02:15:00,823 Elm St, Boston,MA,02215 +263270,Wired Headphones,1,11.99,2019-10-07 17:45:00,216 9th St, San Francisco,CA,94016 +263271,AAA Batteries (4-pack),3,2.99,2019-10-20 21:51:00,408 Willow St, San Francisco,CA,94016 +263272,AAA Batteries (4-pack),1,2.99,2019-10-01 16:53:00,992 Willow St, San Francisco,CA,94016 +263273,Google Phone,1,600.0,2019-10-29 12:54:00,796 Park St, San Francisco,CA,94016 +263274,Lightning Charging Cable,1,14.95,2019-10-26 14:40:00,695 Lakeview St, Austin,TX,73301 +263275,AAA Batteries (4-pack),1,2.99,2019-10-15 21:20:00,914 Pine St, Atlanta,GA,30301 +263276,Apple Airpods Headphones,1,150.0,2019-10-14 19:15:00,967 Madison St, Seattle,WA,98101 +263277,Wired Headphones,2,11.99,2019-10-05 16:11:00,11 Jefferson St, Atlanta,GA,30301 +263278,AAA Batteries (4-pack),1,2.99,2019-10-03 20:23:00,433 Meadow St, Austin,TX,73301 +263279,AAA Batteries (4-pack),3,2.99,2019-10-04 01:19:00,177 Willow St, Los Angeles,CA,90001 +263280,AA Batteries (4-pack),1,3.84,2019-10-13 15:40:00,388 South St, San Francisco,CA,94016 +263281,AAA Batteries (4-pack),3,2.99,2019-10-22 14:07:00,173 Lincoln St, Boston,MA,02215 +263282,USB-C Charging Cable,1,11.95,2019-10-02 09:54:00,184 Center St, San Francisco,CA,94016 +263283,Bose SoundSport Headphones,1,99.99,2019-10-05 09:00:00,994 Park St, Los Angeles,CA,90001 +263284,AA Batteries (4-pack),2,3.84,2019-10-25 07:38:00,95 Cherry St, Atlanta,GA,30301 +263285,AAA Batteries (4-pack),1,2.99,2019-10-30 10:44:00,435 12th St, San Francisco,CA,94016 +263286,AA Batteries (4-pack),1,3.84,2019-10-31 13:46:00,488 Lakeview St, Austin,TX,73301 +263287,USB-C Charging Cable,2,11.95,2019-10-12 18:32:00,504 4th St, Los Angeles,CA,90001 +263288,Lightning Charging Cable,1,14.95,2019-10-26 19:11:00,960 Maple St, San Francisco,CA,94016 +263289,Apple Airpods Headphones,1,150.0,2019-10-15 23:03:00,469 South St, Los Angeles,CA,90001 +263290,Flatscreen TV,1,300.0,2019-10-16 09:14:00,720 Center St, Atlanta,GA,30301 +263291,AA Batteries (4-pack),1,3.84,2019-10-17 18:19:00,555 Ridge St, San Francisco,CA,94016 +263292,Lightning Charging Cable,1,14.95,2019-10-19 16:00:00,62 10th St, San Francisco,CA,94016 +263293,iPhone,1,700.0,2019-10-18 11:15:00,957 Washington St, San Francisco,CA,94016 +263294,Macbook Pro Laptop,1,1700.0,2019-10-08 17:59:00,442 Adams St, Seattle,WA,98101 +263295,AA Batteries (4-pack),1,3.84,2019-10-17 15:13:00,673 Maple St, San Francisco,CA,94016 +263296,27in FHD Monitor,1,149.99,2019-10-15 13:20:00,430 Main St, San Francisco,CA,94016 +263297,AAA Batteries (4-pack),1,2.99,2019-10-17 11:19:00,245 Sunset St, Seattle,WA,98101 +263298,27in FHD Monitor,1,149.99,2019-10-07 19:55:00,614 Hill St, Los Angeles,CA,90001 +263299,27in 4K Gaming Monitor,1,389.99,2019-10-21 21:43:00,395 Highland St, San Francisco,CA,94016 +263300,USB-C Charging Cable,1,11.95,2019-10-31 12:09:00,681 9th St, San Francisco,CA,94016 +263301,AAA Batteries (4-pack),1,2.99,2019-10-08 21:23:00,845 Chestnut St, Seattle,WA,98101 +263302,Apple Airpods Headphones,1,150.0,2019-10-28 11:55:00,812 7th St, Boston,MA,02215 +263303,AA Batteries (4-pack),1,3.84,2019-10-23 07:24:00,223 Chestnut St, New York City,NY,10001 +263304,Bose SoundSport Headphones,1,99.99,2019-10-30 13:51:00,426 Washington St, Atlanta,GA,30301 +263305,AA Batteries (4-pack),1,3.84,2019-10-30 15:17:00,853 Ridge St, Los Angeles,CA,90001 +263306,Wired Headphones,1,11.99,2019-10-26 12:32:00,402 Highland St, Los Angeles,CA,90001 +263307,USB-C Charging Cable,1,11.95,2019-10-18 14:46:00,601 10th St, New York City,NY,10001 +263308,27in FHD Monitor,1,149.99,2019-10-20 19:59:00,484 Forest St, Austin,TX,73301 +263309,27in FHD Monitor,1,149.99,2019-10-08 13:13:00,851 Madison St, Boston,MA,02215 +263310,27in 4K Gaming Monitor,1,389.99,2019-10-11 10:20:00,69 Pine St, Dallas,TX,75001 +263311,iPhone,1,700.0,2019-10-18 18:39:00,814 14th St, San Francisco,CA,94016 +263311,Wired Headphones,1,11.99,2019-10-18 18:39:00,814 14th St, San Francisco,CA,94016 +263312,AA Batteries (4-pack),1,3.84,2019-10-13 13:39:00,503 Highland St, Los Angeles,CA,90001 +263313,Lightning Charging Cable,1,14.95,2019-10-08 17:47:00,423 Center St, San Francisco,CA,94016 +263314,AAA Batteries (4-pack),1,2.99,2019-10-31 22:09:00,613 12th St, Atlanta,GA,30301 +263315,Lightning Charging Cable,1,14.95,2019-10-22 19:46:00,679 Hickory St, Seattle,WA,98101 +263316,AA Batteries (4-pack),1,3.84,2019-10-21 01:55:00,384 Hill St, New York City,NY,10001 +263317,27in 4K Gaming Monitor,1,389.99,2019-10-08 08:09:00,1 South St, Atlanta,GA,30301 +263318,20in Monitor,1,109.99,2019-10-08 21:40:00,360 11th St, Los Angeles,CA,90001 +263319,Lightning Charging Cable,1,14.95,2019-10-19 23:48:00,696 River St, Atlanta,GA,30301 +263320,USB-C Charging Cable,1,11.95,2019-10-25 22:45:00,96 Jackson St, San Francisco,CA,94016 +263321,USB-C Charging Cable,1,11.95,2019-10-02 15:47:00,256 Adams St, New York City,NY,10001 +263322,27in FHD Monitor,1,149.99,2019-10-19 13:22:00,729 Center St, Atlanta,GA,30301 +263323,AAA Batteries (4-pack),2,2.99,2019-10-19 19:40:00,635 Maple St, Atlanta,GA,30301 +263324,AA Batteries (4-pack),1,3.84,2019-10-27 15:49:00,476 Center St, Atlanta,GA,30301 +263325,AAA Batteries (4-pack),1,2.99,2019-10-09 14:22:00,84 Jackson St, Dallas,TX,75001 +263326,AAA Batteries (4-pack),1,2.99,2019-10-16 17:21:00,546 9th St, San Francisco,CA,94016 +263327,USB-C Charging Cable,1,11.95,2019-10-11 13:31:00,194 14th St, San Francisco,CA,94016 +263328,LG Dryer,1,600.0,2019-10-13 18:11:00,586 Elm St, San Francisco,CA,94016 +263329,34in Ultrawide Monitor,1,379.99,2019-10-02 06:53:00,671 14th St, Portland,OR,97035 +263330,27in 4K Gaming Monitor,1,389.99,2019-10-02 11:01:00,313 10th St, Boston,MA,02215 +263331,LG Washing Machine,1,600.0,2019-10-13 14:47:00,174 Maple St, Portland,OR,97035 +263332,Lightning Charging Cable,1,14.95,2019-10-30 14:30:00,11 Ridge St, Los Angeles,CA,90001 +263333,34in Ultrawide Monitor,1,379.99,2019-10-30 21:39:00,525 Meadow St, San Francisco,CA,94016 +263334,Lightning Charging Cable,1,14.95,2019-10-14 19:21:00,300 Dogwood St, San Francisco,CA,94016 +263335,iPhone,1,700.0,2019-10-15 14:25:00,610 Madison St, Atlanta,GA,30301 +263336,Wired Headphones,1,11.99,2019-10-08 18:49:00,613 Adams St, New York City,NY,10001 +263337,Lightning Charging Cable,1,14.95,2019-10-22 17:18:00,126 12th St, Portland,OR,97035 +263338,Bose SoundSport Headphones,1,99.99,2019-10-13 16:30:00,27 Wilson St, Seattle,WA,98101 +263339,Macbook Pro Laptop,1,1700.0,2019-10-05 12:22:00,42 11th St, Seattle,WA,98101 +263340,USB-C Charging Cable,1,11.95,2019-10-11 19:21:00,212 Hill St, Austin,TX,73301 +263341,Wired Headphones,1,11.99,2019-10-15 22:02:00,432 4th St, Atlanta,GA,30301 +263342,iPhone,1,700.0,2019-10-18 06:26:00,779 Madison St, Boston,MA,02215 +263343,Lightning Charging Cable,2,14.95,2019-10-13 10:22:00,206 Walnut St, Dallas,TX,75001 +263344,iPhone,1,700.0,2019-10-24 20:54:00,622 Center St, Portland,OR,97035 +263345,ThinkPad Laptop,1,999.99,2019-10-05 22:39:00,971 Jackson St, Atlanta,GA,30301 +263346,Flatscreen TV,1,300.0,2019-10-21 18:23:00,846 1st St, San Francisco,CA,94016 +263347,Lightning Charging Cable,1,14.95,2019-10-13 19:09:00,259 Walnut St, Los Angeles,CA,90001 +263348,Google Phone,1,600.0,2019-10-13 10:32:00,800 Willow St, San Francisco,CA,94016 +263349,AA Batteries (4-pack),2,3.84,2019-10-19 12:56:00,409 Adams St, Portland,OR,97035 +263350,Macbook Pro Laptop,1,1700.0,2019-10-23 12:08:00,77 Johnson St, San Francisco,CA,94016 +263350,Wired Headphones,1,11.99,2019-10-23 12:08:00,77 Johnson St, San Francisco,CA,94016 +263351,Wired Headphones,1,11.99,2019-10-21 12:57:00,440 12th St, San Francisco,CA,94016 +263352,Lightning Charging Cable,1,14.95,2019-10-23 08:26:00,890 Center St, Los Angeles,CA,90001 +263353,Lightning Charging Cable,1,14.95,2019-10-10 14:01:00,567 Chestnut St, Seattle,WA,98101 +263354,AA Batteries (4-pack),1,3.84,2019-10-31 00:31:00,337 Cedar St, Dallas,TX,75001 +263355,AA Batteries (4-pack),1,3.84,2019-10-01 10:53:00,539 9th St, Boston,MA,02215 +263355,USB-C Charging Cable,1,11.95,2019-10-01 10:53:00,539 9th St, Boston,MA,02215 +263356,Bose SoundSport Headphones,1,99.99,2019-10-31 21:23:00,581 10th St, New York City,NY,10001 +263357,AAA Batteries (4-pack),1,2.99,2019-10-01 06:21:00,407 9th St, San Francisco,CA,94016 +263358,Wired Headphones,1,11.99,2019-10-24 15:42:00,810 Adams St, Atlanta,GA,30301 +263359,USB-C Charging Cable,1,11.95,2019-10-31 17:13:00,606 Church St, Portland,OR,97035 +263360,34in Ultrawide Monitor,1,379.99,2019-10-03 17:37:00,507 Dogwood St, San Francisco,CA,94016 +263361,27in FHD Monitor,1,149.99,2019-10-15 09:24:00,479 Jackson St, San Francisco,CA,94016 +263362,Lightning Charging Cable,1,14.95,2019-10-09 17:36:00,96 Center St, New York City,NY,10001 +263363,AAA Batteries (4-pack),1,2.99,2019-10-07 21:02:00,161 Ridge St, Atlanta,GA,30301 +263364,AAA Batteries (4-pack),1,2.99,2019-10-14 02:05:00,97 Cherry St, New York City,NY,10001 +263365,Bose SoundSport Headphones,1,99.99,2019-10-01 21:31:00,153 8th St, Portland,OR,97035 +263366,AA Batteries (4-pack),1,3.84,2019-10-27 09:31:00,480 14th St, Los Angeles,CA,90001 +263367,Apple Airpods Headphones,1,150.0,2019-10-12 09:28:00,254 12th St, San Francisco,CA,94016 +263368,27in 4K Gaming Monitor,1,389.99,2019-10-25 19:29:00,530 Ridge St, Los Angeles,CA,90001 +263369,20in Monitor,1,109.99,2019-10-15 17:06:00,23 Lakeview St, Atlanta,GA,30301 +263370,Google Phone,1,600.0,2019-10-17 00:24:00,422 Ridge St, Seattle,WA,98101 +263370,USB-C Charging Cable,1,11.95,2019-10-17 00:24:00,422 Ridge St, Seattle,WA,98101 +263371,Lightning Charging Cable,1,14.95,2019-10-21 10:27:00,631 Park St, New York City,NY,10001 +263372,iPhone,1,700.0,2019-10-04 19:48:00,766 2nd St, Los Angeles,CA,90001 +263373,USB-C Charging Cable,1,11.95,2019-10-10 16:45:00,670 13th St, San Francisco,CA,94016 +263374,34in Ultrawide Monitor,1,379.99,2019-10-13 08:19:00,822 Pine St, Dallas,TX,75001 +263375,AAA Batteries (4-pack),5,2.99,2019-10-18 12:57:00,438 4th St, San Francisco,CA,94016 +263376,AAA Batteries (4-pack),1,2.99,2019-10-03 15:56:00,19 14th St, San Francisco,CA,94016 +263377,USB-C Charging Cable,1,11.95,2019-10-11 06:53:00,971 River St, Atlanta,GA,30301 +263378,LG Washing Machine,1,600.0,2019-10-15 10:01:00,514 South St, Seattle,WA,98101 +263379,27in 4K Gaming Monitor,1,389.99,2019-10-23 15:50:00,658 7th St, San Francisco,CA,94016 +263380,ThinkPad Laptop,1,999.99,2019-10-21 17:55:00,317 Lincoln St, Seattle,WA,98101 +263381,27in FHD Monitor,1,149.99,2019-10-08 14:37:00,681 10th St, Boston,MA,02215 +263382,AA Batteries (4-pack),2,3.84,2019-10-10 09:17:00,642 Meadow St, Atlanta,GA,30301 +263383,27in 4K Gaming Monitor,1,389.99,2019-10-27 19:39:00,745 Washington St, San Francisco,CA,94016 +263384,AA Batteries (4-pack),1,3.84,2019-10-08 20:20:00,901 6th St, Boston,MA,02215 +263385,Bose SoundSport Headphones,1,99.99,2019-10-25 19:25:00,773 Walnut St, New York City,NY,10001 +263386,Bose SoundSport Headphones,1,99.99,2019-10-07 13:09:00,793 11th St, Boston,MA,02215 +263387,Google Phone,1,600.0,2019-10-30 22:18:00,97 Cedar St, Boston,MA,02215 +263387,USB-C Charging Cable,1,11.95,2019-10-30 22:18:00,97 Cedar St, Boston,MA,02215 +263387,Wired Headphones,1,11.99,2019-10-30 22:18:00,97 Cedar St, Boston,MA,02215 +263388,Apple Airpods Headphones,1,150.0,2019-10-20 00:19:00,281 7th St, San Francisco,CA,94016 +263389,Lightning Charging Cable,1,14.95,2019-10-05 11:42:00,887 Dogwood St, San Francisco,CA,94016 +263390,iPhone,1,700.0,2019-10-07 12:21:00,187 1st St, Seattle,WA,98101 +263391,USB-C Charging Cable,1,11.95,2019-10-14 18:09:00,337 Washington St, New York City,NY,10001 +263392,AAA Batteries (4-pack),1,2.99,2019-10-11 12:53:00,605 Pine St, Portland,OR,97035 +263393,Apple Airpods Headphones,1,150.0,2019-10-17 14:58:00,644 5th St, Los Angeles,CA,90001 +263394,AA Batteries (4-pack),1,3.84,2019-10-24 13:17:00,437 Adams St, Los Angeles,CA,90001 +263395,Flatscreen TV,1,300.0,2019-10-16 11:52:00,527 10th St, Atlanta,GA,30301 +263396,Lightning Charging Cable,1,14.95,2019-10-04 13:47:00,883 10th St, Dallas,TX,75001 +263397,ThinkPad Laptop,1,999.99,2019-10-23 23:44:00,953 Madison St, Atlanta,GA,30301 +263398,34in Ultrawide Monitor,1,379.99,2019-10-22 12:10:00,558 Church St, Boston,MA,02215 +263399,ThinkPad Laptop,1,999.99,2019-10-23 18:37:00,469 Cedar St, Boston,MA,02215 +263400,Lightning Charging Cable,1,14.95,2019-10-11 19:06:00,573 7th St, Boston,MA,02215 +263401,USB-C Charging Cable,1,11.95,2019-10-21 04:59:00,676 Ridge St, Los Angeles,CA,90001 +263402,iPhone,1,700.0,2019-10-05 13:49:00,829 13th St, Dallas,TX,75001 +263402,Wired Headphones,1,11.99,2019-10-05 13:49:00,829 13th St, Dallas,TX,75001 +263403,Apple Airpods Headphones,1,150.0,2019-10-20 20:58:00,30 13th St, New York City,NY,10001 +263404,Lightning Charging Cable,1,14.95,2019-10-25 15:21:00,414 4th St, Boston,MA,02215 +263405,AAA Batteries (4-pack),2,2.99,2019-10-22 10:30:00,861 1st St, San Francisco,CA,94016 +263406,Lightning Charging Cable,1,14.95,2019-10-10 00:19:00,278 10th St, Portland,OR,97035 +263407,Apple Airpods Headphones,1,150.0,2019-10-20 14:23:00,699 South St, Portland,ME,04101 +263408,Lightning Charging Cable,1,14.95,2019-10-16 02:35:00,576 South St, Atlanta,GA,30301 +263409,USB-C Charging Cable,1,11.95,2019-10-01 12:08:00,625 Lake St, Boston,MA,02215 +263410,Wired Headphones,1,11.99,2019-10-06 13:56:00,391 Adams St, Boston,MA,02215 +263411,iPhone,1,700.0,2019-10-29 00:35:00,647 11th St, New York City,NY,10001 +263411,Wired Headphones,1,11.99,2019-10-29 00:35:00,647 11th St, New York City,NY,10001 +263412,AA Batteries (4-pack),1,3.84,2019-10-24 16:15:00,978 Wilson St, San Francisco,CA,94016 +263413,Wired Headphones,1,11.99,2019-10-14 12:43:00,161 8th St, Dallas,TX,75001 +263414,Lightning Charging Cable,1,14.95,2019-10-28 11:30:00,866 Lincoln St, San Francisco,CA,94016 +263415,iPhone,1,700.0,2019-10-12 12:39:00,521 Hickory St, Dallas,TX,75001 +263415,Wired Headphones,1,11.99,2019-10-12 12:39:00,521 Hickory St, Dallas,TX,75001 +263416,Bose SoundSport Headphones,1,99.99,2019-10-25 17:27:00,911 Lincoln St, New York City,NY,10001 +263417,AA Batteries (4-pack),1,3.84,2019-10-04 23:10:00,266 Madison St, Dallas,TX,75001 +263418,Macbook Pro Laptop,1,1700.0,2019-10-23 12:40:00,236 6th St, Austin,TX,73301 +263419,Apple Airpods Headphones,1,150.0,2019-10-03 00:04:00,102 Elm St, Portland,OR,97035 +263420,Bose SoundSport Headphones,1,99.99,2019-10-04 11:23:00,836 River St, San Francisco,CA,94016 +263421,Google Phone,1,600.0,2019-10-01 09:06:00,765 Jackson St, San Francisco,CA,94016 +263421,USB-C Charging Cable,1,11.95,2019-10-01 09:06:00,765 Jackson St, San Francisco,CA,94016 +263422,AAA Batteries (4-pack),1,2.99,2019-10-01 07:44:00,826 Main St, Atlanta,GA,30301 +263423,20in Monitor,1,109.99,2019-10-15 19:20:00,837 River St, San Francisco,CA,94016 +263424,Bose SoundSport Headphones,1,99.99,2019-10-22 10:05:00,827 Maple St, Austin,TX,73301 +263424,Lightning Charging Cable,1,14.95,2019-10-22 10:05:00,827 Maple St, Austin,TX,73301 +263425,Bose SoundSport Headphones,1,99.99,2019-10-05 18:15:00,870 11th St, Dallas,TX,75001 +263426,AAA Batteries (4-pack),2,2.99,2019-10-16 20:47:00,782 Chestnut St, San Francisco,CA,94016 +263427,USB-C Charging Cable,1,11.95,2019-10-01 14:46:00,907 6th St, Boston,MA,02215 +263428,AA Batteries (4-pack),1,3.84,2019-10-19 21:47:00,198 10th St, New York City,NY,10001 +263429,Apple Airpods Headphones,1,150.0,2019-10-26 10:57:00,51 Walnut St, San Francisco,CA,94016 +263430,iPhone,1,700.0,2019-10-17 19:48:00,686 14th St, San Francisco,CA,94016 +263430,Lightning Charging Cable,1,14.95,2019-10-17 19:48:00,686 14th St, San Francisco,CA,94016 +263431,Apple Airpods Headphones,1,150.0,2019-10-31 01:41:00,640 Lakeview St, New York City,NY,10001 +263432,USB-C Charging Cable,1,11.95,2019-10-16 21:47:00,664 Lakeview St, Portland,OR,97035 +263433,AA Batteries (4-pack),1,3.84,2019-10-04 19:03:00,985 Dogwood St, Portland,OR,97035 +263434,Lightning Charging Cable,1,14.95,2019-10-09 16:37:00,459 Wilson St, Atlanta,GA,30301 +263435,Bose SoundSport Headphones,1,99.99,2019-10-25 16:02:00,478 Forest St, New York City,NY,10001 +263436,USB-C Charging Cable,1,11.95,2019-10-31 13:15:00,793 North St, Dallas,TX,75001 +263437,Wired Headphones,1,11.99,2019-10-24 19:40:00,36 Willow St, Los Angeles,CA,90001 +263438,Wired Headphones,1,11.99,2019-10-30 21:47:00,868 Hill St, Boston,MA,02215 +263439,Macbook Pro Laptop,1,1700.0,2019-10-12 20:58:00,614 9th St, Boston,MA,02215 +263440,Bose SoundSport Headphones,1,99.99,2019-10-28 15:52:00,485 Hickory St, Los Angeles,CA,90001 +263441,Wired Headphones,1,11.99,2019-10-16 19:24:00,690 Lincoln St, Austin,TX,73301 +263442,Apple Airpods Headphones,1,150.0,2019-10-03 19:25:00,247 River St, Boston,MA,02215 +263443,Apple Airpods Headphones,1,150.0,2019-10-02 21:24:00,499 8th St, Portland,OR,97035 +263444,Lightning Charging Cable,1,14.95,2019-10-21 09:51:00,544 Church St, Boston,MA,02215 +263445,USB-C Charging Cable,1,11.95,2019-10-20 16:35:00,371 13th St, San Francisco,CA,94016 +263446,ThinkPad Laptop,1,999.99,2019-10-20 00:44:00,195 Johnson St, Atlanta,GA,30301 +263447,Flatscreen TV,1,300.0,2019-10-26 11:21:00,265 Park St, San Francisco,CA,94016 +263448,AAA Batteries (4-pack),1,2.99,2019-10-21 20:44:00,564 Willow St, San Francisco,CA,94016 +263449,USB-C Charging Cable,1,11.95,2019-10-16 10:19:00,16 Willow St, San Francisco,CA,94016 +263450,Lightning Charging Cable,3,14.95,2019-10-25 08:11:00,946 Wilson St, Los Angeles,CA,90001 +263451,AA Batteries (4-pack),1,3.84,2019-10-24 07:11:00,467 11th St, Atlanta,GA,30301 +263452,Apple Airpods Headphones,1,150.0,2019-10-17 09:40:00,302 Dogwood St, Los Angeles,CA,90001 +263453,AAA Batteries (4-pack),1,2.99,2019-10-03 21:14:00,795 Jefferson St, San Francisco,CA,94016 +263454,Apple Airpods Headphones,1,150.0,2019-10-29 11:24:00,202 Madison St, Boston,MA,02215 +263455,AAA Batteries (4-pack),1,2.99,2019-10-18 12:59:00,487 Cedar St, Atlanta,GA,30301 +263456,34in Ultrawide Monitor,1,379.99,2019-10-23 13:22:00,418 Park St, New York City,NY,10001 +263457,Wired Headphones,1,11.99,2019-10-19 18:16:00,458 Highland St, San Francisco,CA,94016 +263458,Lightning Charging Cable,1,14.95,2019-10-18 11:13:00,192 10th St, San Francisco,CA,94016 +263458,AAA Batteries (4-pack),4,2.99,2019-10-18 11:13:00,192 10th St, San Francisco,CA,94016 +263459,Wired Headphones,1,11.99,2019-10-12 13:46:00,677 Main St, Atlanta,GA,30301 +263460,Apple Airpods Headphones,1,150.0,2019-10-31 15:48:00,158 West St, Seattle,WA,98101 +263461,Lightning Charging Cable,1,14.95,2019-10-25 16:46:00,439 Jefferson St, San Francisco,CA,94016 +263462,Apple Airpods Headphones,1,150.0,2019-10-25 20:17:00,704 Lincoln St, Boston,MA,02215 +263463,AAA Batteries (4-pack),1,2.99,2019-10-09 00:49:00,48 6th St, Seattle,WA,98101 +263464,ThinkPad Laptop,1,999.99,2019-10-28 15:54:00,936 2nd St, Dallas,TX,75001 +263465,34in Ultrawide Monitor,1,379.99,2019-10-08 12:12:00,198 Meadow St, San Francisco,CA,94016 +263466,AA Batteries (4-pack),1,3.84,2019-10-16 10:31:00,780 13th St, San Francisco,CA,94016 +263467,AA Batteries (4-pack),1,3.84,2019-10-23 23:57:00,207 Cherry St, Seattle,WA,98101 +263468,Flatscreen TV,1,300.0,2019-10-23 07:32:00,772 Johnson St, Boston,MA,02215 +263469,Apple Airpods Headphones,1,150.0,2019-10-29 09:53:00,59 Wilson St, San Francisco,CA,94016 +263470,Flatscreen TV,1,300.0,2019-10-15 12:06:00,552 14th St, San Francisco,CA,94016 +263471,USB-C Charging Cable,1,11.95,2019-10-08 13:23:00,182 Ridge St, Dallas,TX,75001 +263472,Wired Headphones,1,11.99,2019-10-28 19:23:00,900 11th St, San Francisco,CA,94016 +263473,AA Batteries (4-pack),1,3.84,2019-10-05 12:22:00,781 Hill St, Boston,MA,02215 +263474,Apple Airpods Headphones,1,150.0,2019-10-23 15:03:00,287 Elm St, Dallas,TX,75001 +263475,Wired Headphones,1,11.99,2019-10-19 18:03:00,312 Meadow St, Boston,MA,02215 +263476,AA Batteries (4-pack),1,3.84,2019-10-02 11:46:00,162 Hill St, Portland,OR,97035 +263477,USB-C Charging Cable,1,11.95,2019-10-08 19:54:00,751 14th St, Boston,MA,02215 +263478,AAA Batteries (4-pack),2,2.99,2019-10-12 17:27:00,626 Washington St, Los Angeles,CA,90001 +263479,USB-C Charging Cable,1,11.95,2019-10-10 09:53:00,805 Lake St, San Francisco,CA,94016 +263479,27in FHD Monitor,1,149.99,2019-10-10 09:53:00,805 Lake St, San Francisco,CA,94016 +263480,Google Phone,1,600.0,2019-10-23 10:08:00,735 13th St, Seattle,WA,98101 +263480,Wired Headphones,1,11.99,2019-10-23 10:08:00,735 13th St, Seattle,WA,98101 +263481,27in FHD Monitor,1,149.99,2019-10-21 16:20:00,225 River St, San Francisco,CA,94016 +263482,Apple Airpods Headphones,1,150.0,2019-10-05 11:37:00,98 Dogwood St, Los Angeles,CA,90001 +263483,AAA Batteries (4-pack),1,2.99,2019-10-17 06:00:00,122 Cedar St, Dallas,TX,75001 +263484,Wired Headphones,1,11.99,2019-10-17 02:34:00,914 5th St, New York City,NY,10001 +263485,AA Batteries (4-pack),2,3.84,2019-10-24 18:43:00,324 Meadow St, New York City,NY,10001 +263486,USB-C Charging Cable,1,11.95,2019-10-27 11:31:00,258 Sunset St, Boston,MA,02215 +263487,Apple Airpods Headphones,1,150.0,2019-10-10 13:59:00,447 Willow St, Portland,OR,97035 +263488,Wired Headphones,2,11.99,2019-10-14 08:27:00,427 10th St, San Francisco,CA,94016 +263489,USB-C Charging Cable,1,11.95,2019-10-21 12:37:00,248 13th St, Los Angeles,CA,90001 +263490,Wired Headphones,1,11.99,2019-10-05 20:07:00,847 14th St, San Francisco,CA,94016 +263491,Wired Headphones,1,11.99,2019-10-18 20:42:00,94 Dogwood St, New York City,NY,10001 +263492,Google Phone,1,600.0,2019-10-24 18:38:00,717 9th St, Austin,TX,73301 +263493,Lightning Charging Cable,1,14.95,2019-10-18 20:53:00,748 West St, San Francisco,CA,94016 +263494,AA Batteries (4-pack),1,3.84,2019-10-10 00:02:00,425 14th St, New York City,NY,10001 +263495,Lightning Charging Cable,1,14.95,2019-10-04 13:27:00,217 Main St, Los Angeles,CA,90001 +263496,USB-C Charging Cable,1,11.95,2019-10-12 16:43:00,643 Lakeview St, Atlanta,GA,30301 +263497,USB-C Charging Cable,1,11.95,2019-10-17 16:49:00,742 North St, Austin,TX,73301 +263498,Google Phone,1,600.0,2019-10-21 09:33:00,451 4th St, Los Angeles,CA,90001 +263499,AA Batteries (4-pack),1,3.84,2019-10-08 12:08:00,292 Hickory St, Portland,OR,97035 +263500,Bose SoundSport Headphones,1,99.99,2019-10-25 10:53:00,123 River St, San Francisco,CA,94016 +263501,AAA Batteries (4-pack),1,2.99,2019-10-03 10:08:00,347 Hill St, Los Angeles,CA,90001 +263502,34in Ultrawide Monitor,1,379.99,2019-10-17 21:54:00,946 Park St, Boston,MA,02215 +263503,27in 4K Gaming Monitor,1,389.99,2019-10-10 05:07:00,566 Hickory St, Boston,MA,02215 +263504,Lightning Charging Cable,1,14.95,2019-10-10 16:12:00,935 Elm St, Atlanta,GA,30301 +263505,Flatscreen TV,1,300.0,2019-10-27 12:16:00,469 13th St, Los Angeles,CA,90001 +263506,USB-C Charging Cable,1,11.95,2019-10-22 09:19:00,901 Pine St, Portland,OR,97035 +263507,Wired Headphones,1,11.99,2019-10-22 19:30:00,771 West St, Los Angeles,CA,90001 +263508,34in Ultrawide Monitor,1,379.99,2019-10-21 19:06:00,765 Jefferson St, Dallas,TX,75001 +263509,Apple Airpods Headphones,1,150.0,2019-10-14 10:37:00,69 Jefferson St, Los Angeles,CA,90001 +263510,iPhone,1,700.0,2019-10-06 12:18:00,368 Sunset St, San Francisco,CA,94016 +263511,AA Batteries (4-pack),1,3.84,2019-10-21 12:24:00,318 Church St, Portland,ME,04101 +263512,Lightning Charging Cable,1,14.95,2019-10-26 22:54:00,262 Jefferson St, Boston,MA,02215 +263513,Apple Airpods Headphones,1,150.0,2019-10-11 19:39:00,156 Hill St, Boston,MA,02215 +263514,AAA Batteries (4-pack),1,2.99,2019-10-12 18:44:00,732 Willow St, New York City,NY,10001 +263515,Apple Airpods Headphones,1,150.0,2019-10-16 17:45:00,496 Forest St, Boston,MA,02215 +263516,AA Batteries (4-pack),1,3.84,2019-10-02 16:41:00,384 Meadow St, Los Angeles,CA,90001 +263517,AAA Batteries (4-pack),1,2.99,2019-10-22 17:07:00,660 Sunset St, Los Angeles,CA,90001 +263518,Wired Headphones,1,11.99,2019-10-24 18:15:00,478 Forest St, Dallas,TX,75001 +263519,34in Ultrawide Monitor,1,379.99,2019-10-08 14:45:00,371 Forest St, Los Angeles,CA,90001 +263520,Apple Airpods Headphones,1,150.0,2019-10-16 21:20:00,182 Lakeview St, Atlanta,GA,30301 +263521,iPhone,1,700.0,2019-10-03 20:55:00,128 11th St, Dallas,TX,75001 +263522,Wired Headphones,1,11.99,2019-10-21 13:34:00,503 Adams St, New York City,NY,10001 +263523,Apple Airpods Headphones,1,150.0,2019-10-30 10:06:00,946 14th St, San Francisco,CA,94016 +263524,AA Batteries (4-pack),1,3.84,2019-10-17 16:28:00,676 Hickory St, San Francisco,CA,94016 +263525,Google Phone,1,600.0,2019-10-13 23:01:00,207 Jackson St, San Francisco,CA,94016 +263526,Bose SoundSport Headphones,1,99.99,2019-10-22 17:10:00,543 Pine St, Seattle,WA,98101 +263527,Apple Airpods Headphones,1,150.0,2019-10-09 23:53:00,633 14th St, Boston,MA,02215 +263528,AAA Batteries (4-pack),2,2.99,2019-10-20 16:38:00,531 River St, San Francisco,CA,94016 +263529,ThinkPad Laptop,1,999.99,2019-10-21 01:36:00,761 Elm St, Los Angeles,CA,90001 +263530,Apple Airpods Headphones,1,150.0,2019-10-10 10:13:00,115 9th St, Austin,TX,73301 +263531,AAA Batteries (4-pack),1,2.99,2019-10-07 19:27:00,212 West St, New York City,NY,10001 +263532,Wired Headphones,1,11.99,2019-10-07 19:52:00,216 Maple St, Los Angeles,CA,90001 +263533,USB-C Charging Cable,1,11.95,2019-10-17 13:12:00,562 11th St, Boston,MA,02215 +263534,AA Batteries (4-pack),1,3.84,2019-10-23 09:38:00,429 4th St, Seattle,WA,98101 +263534,34in Ultrawide Monitor,1,379.99,2019-10-23 09:38:00,429 4th St, Seattle,WA,98101 +263535,34in Ultrawide Monitor,1,379.99,2019-10-26 16:36:00,67 Ridge St, Boston,MA,02215 +263536,AAA Batteries (4-pack),1,2.99,2019-10-17 16:47:00,163 Ridge St, Boston,MA,02215 +263537,AA Batteries (4-pack),1,3.84,2019-10-24 11:37:00,157 Sunset St, Atlanta,GA,30301 +263538,Lightning Charging Cable,1,14.95,2019-10-29 15:27:00,826 Center St, Austin,TX,73301 +263539,Lightning Charging Cable,1,14.95,2019-10-18 00:49:00,143 Johnson St, Portland,OR,97035 +263540,Wired Headphones,1,11.99,2019-10-02 15:54:00,890 Jefferson St, Seattle,WA,98101 +263541,Lightning Charging Cable,3,14.95,2019-10-31 16:19:00,781 Park St, New York City,NY,10001 +263542,27in 4K Gaming Monitor,1,389.99,2019-10-05 15:26:00,471 8th St, San Francisco,CA,94016 +263543,AAA Batteries (4-pack),2,2.99,2019-10-10 21:38:00,319 Park St, Seattle,WA,98101 +263544,AAA Batteries (4-pack),1,2.99,2019-10-30 10:49:00,580 2nd St, Los Angeles,CA,90001 +263545,27in FHD Monitor,1,149.99,2019-10-10 09:35:00,672 8th St, Seattle,WA,98101 +263546,Wired Headphones,1,11.99,2019-10-31 08:41:00,5 Highland St, Austin,TX,73301 +263547,Wired Headphones,1,11.99,2019-10-28 12:42:00,496 Jackson St, Atlanta,GA,30301 +263548,AAA Batteries (4-pack),1,2.99,2019-10-22 23:29:00,498 Hickory St, Boston,MA,02215 +263549,USB-C Charging Cable,1,11.95,2019-10-14 09:18:00,300 Johnson St, Boston,MA,02215 +263550,iPhone,1,700.0,2019-10-24 08:12:00,519 Wilson St, San Francisco,CA,94016 +263551,Wired Headphones,1,11.99,2019-10-10 09:58:00,529 Adams St, New York City,NY,10001 +263552,Lightning Charging Cable,1,14.95,2019-10-18 14:23:00,746 Chestnut St, Seattle,WA,98101 +263553,USB-C Charging Cable,1,11.95,2019-10-25 20:04:00,386 4th St, Atlanta,GA,30301 +263554,USB-C Charging Cable,3,11.95,2019-10-26 21:40:00,810 Hickory St, Portland,OR,97035 +263555,Apple Airpods Headphones,1,150.0,2019-10-22 12:01:00,862 Main St, Austin,TX,73301 +263556,ThinkPad Laptop,1,999.99,2019-10-10 17:35:00,368 Lake St, Austin,TX,73301 +263557,Bose SoundSport Headphones,1,99.99,2019-10-31 12:41:00,403 10th St, Austin,TX,73301 +263558,Lightning Charging Cable,1,14.95,2019-10-29 11:27:00,428 13th St, San Francisco,CA,94016 +263559,Apple Airpods Headphones,1,150.0,2019-10-24 09:10:00,696 Willow St, Seattle,WA,98101 +263560,Bose SoundSport Headphones,1,99.99,2019-10-18 11:36:00,364 Jackson St, Atlanta,GA,30301 +263561,USB-C Charging Cable,1,11.95,2019-10-24 14:16:00,630 Hill St, New York City,NY,10001 +263561,Wired Headphones,1,11.99,2019-10-24 14:16:00,630 Hill St, New York City,NY,10001 +263562,Apple Airpods Headphones,1,150.0,2019-10-10 19:53:00,119 Spruce St, Austin,TX,73301 +263563,Lightning Charging Cable,1,14.95,2019-10-28 23:17:00,526 7th St, San Francisco,CA,94016 +263564,AAA Batteries (4-pack),1,2.99,2019-10-16 00:05:00,989 Main St, Seattle,WA,98101 +263565,27in 4K Gaming Monitor,1,389.99,2019-10-30 11:29:00,160 Wilson St, Portland,OR,97035 +263566,AAA Batteries (4-pack),1,2.99,2019-10-31 16:07:00,86 Forest St, Seattle,WA,98101 +263567,Wired Headphones,1,11.99,2019-10-21 10:19:00,176 Park St, Seattle,WA,98101 +263568,USB-C Charging Cable,1,11.95,2019-10-12 14:14:00,467 13th St, Boston,MA,02215 +263569,ThinkPad Laptop,1,999.99,2019-10-17 20:28:00,399 2nd St, San Francisco,CA,94016 +263570,Bose SoundSport Headphones,1,99.99,2019-10-14 18:46:00,483 Dogwood St, Seattle,WA,98101 +263571,27in FHD Monitor,1,149.99,2019-10-27 15:54:00,437 Meadow St, New York City,NY,10001 +263572,Bose SoundSport Headphones,1,99.99,2019-10-20 11:18:00,277 Highland St, San Francisco,CA,94016 +263573,Lightning Charging Cable,1,14.95,2019-10-02 22:09:00,741 Lincoln St, Atlanta,GA,30301 +263574,AAA Batteries (4-pack),1,2.99,2019-10-10 23:20:00,130 Walnut St, Austin,TX,73301 +263575,AA Batteries (4-pack),1,3.84,2019-10-14 16:42:00,719 Johnson St, Seattle,WA,98101 +263576,USB-C Charging Cable,1,11.95,2019-10-23 23:25:00,292 Hickory St, Boston,MA,02215 +263577,27in FHD Monitor,1,149.99,2019-10-27 09:12:00,572 14th St, San Francisco,CA,94016 +263578,ThinkPad Laptop,1,999.99,2019-10-20 17:51:00,971 10th St, San Francisco,CA,94016 +263579,Wired Headphones,1,11.99,2019-10-07 00:32:00,550 Main St, San Francisco,CA,94016 +263580,27in FHD Monitor,1,149.99,2019-10-16 12:39:00,922 Lakeview St, Atlanta,GA,30301 +263581,AA Batteries (4-pack),1,3.84,2019-10-02 14:45:00,928 West St, Los Angeles,CA,90001 +263582,AAA Batteries (4-pack),1,2.99,2019-10-19 23:40:00,918 Hickory St, New York City,NY,10001 +263583,Flatscreen TV,1,300.0,2019-10-05 12:35:00,634 Adams St, Los Angeles,CA,90001 +263584,Macbook Pro Laptop,1,1700.0,2019-10-27 17:08:00,76 8th St, Atlanta,GA,30301 +263585,Lightning Charging Cable,1,14.95,2019-10-30 16:57:00,659 Cedar St, San Francisco,CA,94016 +263586,USB-C Charging Cable,2,11.95,2019-10-04 22:54:00,160 South St, Boston,MA,02215 +263587,Lightning Charging Cable,1,14.95,2019-10-07 10:31:00,545 Sunset St, Los Angeles,CA,90001 +263588,Apple Airpods Headphones,1,150.0,2019-10-21 17:35:00,321 Johnson St, San Francisco,CA,94016 +263589,Wired Headphones,1,11.99,2019-10-26 21:36:00,777 9th St, San Francisco,CA,94016 +263590,Wired Headphones,1,11.99,2019-10-22 00:49:00,943 Washington St, Dallas,TX,75001 +263591,USB-C Charging Cable,2,11.95,2019-10-14 13:28:00,289 Hickory St, Los Angeles,CA,90001 +263592,34in Ultrawide Monitor,1,379.99,2019-10-12 20:48:00,659 West St, Los Angeles,CA,90001 +263593,Wired Headphones,2,11.99,2019-10-08 16:55:00,630 Jackson St, Los Angeles,CA,90001 +263594,AAA Batteries (4-pack),1,2.99,2019-10-30 18:30:00,972 West St, Atlanta,GA,30301 +263595,20in Monitor,1,109.99,2019-10-23 20:38:00,665 South St, Portland,ME,04101 +263596,34in Ultrawide Monitor,1,379.99,2019-10-09 14:00:00,292 Washington St, San Francisco,CA,94016 +263597,AAA Batteries (4-pack),1,2.99,2019-10-31 18:49:00,948 9th St, New York City,NY,10001 +263598,Apple Airpods Headphones,1,150.0,2019-10-24 15:09:00,785 7th St, Los Angeles,CA,90001 +263599,Bose SoundSport Headphones,1,99.99,2019-10-08 22:30:00,132 9th St, New York City,NY,10001 +263600,iPhone,1,700.0,2019-10-06 01:36:00,561 Meadow St, Seattle,WA,98101 +263600,Lightning Charging Cable,1,14.95,2019-10-06 01:36:00,561 Meadow St, Seattle,WA,98101 +263600,Apple Airpods Headphones,1,150.0,2019-10-06 01:36:00,561 Meadow St, Seattle,WA,98101 +263601,iPhone,1,700.0,2019-10-28 22:23:00,908 Pine St, Portland,OR,97035 +263602,AAA Batteries (4-pack),1,2.99,2019-10-23 15:43:00,412 13th St, San Francisco,CA,94016 +263603,USB-C Charging Cable,1,11.95,2019-10-04 14:03:00,127 Forest St, Portland,OR,97035 +263604,iPhone,1,700.0,2019-10-02 12:32:00,863 7th St, Austin,TX,73301 +263605,Bose SoundSport Headphones,1,99.99,2019-10-24 16:52:00,369 Lakeview St, San Francisco,CA,94016 +263606,iPhone,1,700.0,2019-10-07 16:35:00,251 South St, San Francisco,CA,94016 +263606,Lightning Charging Cable,1,14.95,2019-10-07 16:35:00,251 South St, San Francisco,CA,94016 +263607,Flatscreen TV,1,300.0,2019-10-28 21:45:00,61 Lincoln St, New York City,NY,10001 +263608,USB-C Charging Cable,1,11.95,2019-10-29 07:46:00,586 Willow St, Boston,MA,02215 +263609,Wired Headphones,1,11.99,2019-10-03 14:21:00,979 2nd St, Los Angeles,CA,90001 +263610,Wired Headphones,1,11.99,2019-10-06 08:33:00,542 Elm St, Seattle,WA,98101 +263611,USB-C Charging Cable,1,11.95,2019-10-17 09:21:00,508 9th St, Austin,TX,73301 +263612,27in FHD Monitor,1,149.99,2019-10-10 18:34:00,516 Walnut St, Los Angeles,CA,90001 +263613,Apple Airpods Headphones,1,150.0,2019-10-23 00:38:00,312 8th St, New York City,NY,10001 +263614,AAA Batteries (4-pack),1,2.99,2019-10-19 12:12:00,502 Willow St, Atlanta,GA,30301 +263615,Wired Headphones,1,11.99,2019-10-14 12:23:00,916 12th St, Seattle,WA,98101 +263615,27in 4K Gaming Monitor,1,389.99,2019-10-14 12:23:00,916 12th St, Seattle,WA,98101 +263616,USB-C Charging Cable,2,11.95,2019-10-27 15:56:00,816 Jackson St, New York City,NY,10001 +263617,20in Monitor,1,109.99,2019-10-27 12:01:00,772 North St, Boston,MA,02215 +263618,AAA Batteries (4-pack),2,2.99,2019-10-13 09:58:00,501 5th St, Seattle,WA,98101 +263619,Apple Airpods Headphones,1,150.0,2019-11-01 01:45:00,87 Sunset St, Atlanta,GA,30301 +263620,Bose SoundSport Headphones,1,99.99,2019-10-16 12:43:00,249 9th St, Austin,TX,73301 +263621,Wired Headphones,1,11.99,2019-10-14 12:52:00,147 Hickory St, Boston,MA,02215 +263622,Flatscreen TV,1,300.0,2019-10-15 22:57:00,198 Forest St, Los Angeles,CA,90001 +263623,Bose SoundSport Headphones,1,99.99,2019-10-10 09:53:00,800 2nd St, San Francisco,CA,94016 +263624,Lightning Charging Cable,1,14.95,2019-10-06 20:34:00,714 4th St, Atlanta,GA,30301 +263625,Apple Airpods Headphones,1,150.0,2019-10-06 15:46:00,28 Lake St, San Francisco,CA,94016 +263626,Bose SoundSport Headphones,1,99.99,2019-10-17 12:18:00,367 10th St, Austin,TX,73301 +263627,AAA Batteries (4-pack),1,2.99,2019-10-16 18:58:00,323 Main St, New York City,NY,10001 +263628,Bose SoundSport Headphones,1,99.99,2019-10-07 20:34:00,777 Lincoln St, Los Angeles,CA,90001 +263629,Lightning Charging Cable,1,14.95,2019-10-04 20:18:00,201 Johnson St, Los Angeles,CA,90001 +263630,27in FHD Monitor,1,149.99,2019-10-23 07:28:00,221 Jefferson St, San Francisco,CA,94016 +263631,34in Ultrawide Monitor,1,379.99,2019-10-11 16:03:00,468 Forest St, Austin,TX,73301 +263632,USB-C Charging Cable,1,11.95,2019-10-16 19:30:00,323 9th St, Boston,MA,02215 +263633,Wired Headphones,1,11.99,2019-10-16 07:56:00,852 14th St, Boston,MA,02215 +263634,27in FHD Monitor,1,149.99,2019-10-17 11:41:00,647 Spruce St, San Francisco,CA,94016 +263635,27in FHD Monitor,1,149.99,2019-10-15 20:31:00,416 Washington St, Atlanta,GA,30301 +263636,AAA Batteries (4-pack),1,2.99,2019-10-18 08:14:00,160 6th St, Boston,MA,02215 +263637,Macbook Pro Laptop,1,1700.0,2019-10-16 11:23:00,674 Ridge St, San Francisco,CA,94016 +263638,USB-C Charging Cable,1,11.95,2019-10-19 21:59:00,160 Walnut St, Seattle,WA,98101 +263639,Lightning Charging Cable,1,14.95,2019-10-26 19:26:00,356 Church St, Los Angeles,CA,90001 +263640,Lightning Charging Cable,1,14.95,2019-10-09 16:32:00,133 South St, Seattle,WA,98101 +263641,20in Monitor,1,109.99,2019-10-01 22:17:00,258 5th St, Dallas,TX,75001 +263642,USB-C Charging Cable,1,11.95,2019-10-07 20:24:00,62 7th St, Los Angeles,CA,90001 +263643,Wired Headphones,1,11.99,2019-10-15 10:17:00,225 Park St, Los Angeles,CA,90001 +263644,Wired Headphones,1,11.99,2019-10-16 18:49:00,433 Walnut St, New York City,NY,10001 +263645,AA Batteries (4-pack),1,3.84,2019-10-13 09:19:00,675 12th St, San Francisco,CA,94016 +263646,Apple Airpods Headphones,1,150.0,2019-10-12 13:15:00,122 Park St, Austin,TX,73301 +263647,AA Batteries (4-pack),1,3.84,2019-10-27 15:54:00,259 Cherry St, Portland,OR,97035 +263648,Lightning Charging Cable,1,14.95,2019-10-11 16:20:00,251 14th St, New York City,NY,10001 +263649,Apple Airpods Headphones,1,150.0,2019-10-29 21:35:00,186 Spruce St, New York City,NY,10001 +263650,Wired Headphones,1,11.99,2019-10-01 21:45:00,94 Cedar St, San Francisco,CA,94016 +263651,ThinkPad Laptop,1,999.99,2019-10-09 15:14:00,946 Jefferson St, Seattle,WA,98101 +263652,27in 4K Gaming Monitor,1,389.99,2019-10-12 10:38:00,871 Forest St, San Francisco,CA,94016 +263653,Apple Airpods Headphones,1,150.0,2019-10-26 23:59:00,270 Washington St, Los Angeles,CA,90001 +263654,Wired Headphones,1,11.99,2019-10-19 16:52:00,433 14th St, Austin,TX,73301 +263655,AAA Batteries (4-pack),1,2.99,2019-10-05 08:41:00,319 North St, Seattle,WA,98101 +263656,Apple Airpods Headphones,1,150.0,2019-10-13 18:09:00,784 Park St, Boston,MA,02215 +263657,USB-C Charging Cable,1,11.95,2019-10-06 04:28:00,708 Main St, San Francisco,CA,94016 +263658,AA Batteries (4-pack),1,3.84,2019-10-07 21:59:00,867 6th St, San Francisco,CA,94016 +263659,Apple Airpods Headphones,1,150.0,2019-10-31 13:27:00,258 14th St, Atlanta,GA,30301 +263660,Wired Headphones,1,11.99,2019-10-21 10:00:00,334 Elm St, New York City,NY,10001 +263661,AA Batteries (4-pack),1,3.84,2019-10-03 19:12:00,910 River St, San Francisco,CA,94016 +263662,ThinkPad Laptop,1,999.99,2019-10-12 15:30:00,376 Walnut St, New York City,NY,10001 +263663,Lightning Charging Cable,1,14.95,2019-10-06 18:08:00,652 1st St, San Francisco,CA,94016 +263664,Lightning Charging Cable,1,14.95,2019-10-23 13:20:00,843 Washington St, San Francisco,CA,94016 +263665,Wired Headphones,1,11.99,2019-10-11 23:30:00,210 Main St, Portland,OR,97035 +263666,34in Ultrawide Monitor,1,379.99,2019-10-16 05:29:00,763 Lincoln St, Atlanta,GA,30301 +263667,USB-C Charging Cable,1,11.95,2019-10-18 00:15:00,695 Meadow St, Boston,MA,02215 +263668,Apple Airpods Headphones,1,150.0,2019-10-10 11:14:00,47 2nd St, Boston,MA,02215 +263669,AA Batteries (4-pack),2,3.84,2019-10-20 21:59:00,907 1st St, San Francisco,CA,94016 +263670,AAA Batteries (4-pack),2,2.99,2019-10-27 23:17:00,268 Jefferson St, San Francisco,CA,94016 +263671,AAA Batteries (4-pack),1,2.99,2019-10-01 18:43:00,304 Cherry St, Los Angeles,CA,90001 +263672,20in Monitor,1,109.99,2019-10-20 20:23:00,290 5th St, New York City,NY,10001 +263673,Lightning Charging Cable,1,14.95,2019-10-05 20:53:00,526 11th St, Portland,OR,97035 +263674,Lightning Charging Cable,1,14.95,2019-10-02 17:41:00,898 South St, Seattle,WA,98101 +263675,Lightning Charging Cable,1,14.95,2019-10-19 21:21:00,352 5th St, Boston,MA,02215 +263676,AAA Batteries (4-pack),1,2.99,2019-10-24 18:17:00,553 Cherry St, Boston,MA,02215 +263676,Wired Headphones,2,11.99,2019-10-24 18:17:00,553 Cherry St, Boston,MA,02215 +263677,20in Monitor,1,109.99,2019-10-11 16:32:00,252 6th St, San Francisco,CA,94016 +263678,Lightning Charging Cable,1,14.95,2019-10-15 12:18:00,335 West St, San Francisco,CA,94016 +263679,Lightning Charging Cable,1,14.95,2019-10-25 16:01:00,751 Highland St, Dallas,TX,75001 +263680,Lightning Charging Cable,1,14.95,2019-10-05 12:51:00,683 Chestnut St, San Francisco,CA,94016 +263681,27in 4K Gaming Monitor,1,389.99,2019-10-03 18:48:00,426 1st St, San Francisco,CA,94016 +263682,Bose SoundSport Headphones,1,99.99,2019-10-12 22:13:00,332 Chestnut St, Los Angeles,CA,90001 +263683,USB-C Charging Cable,1,11.95,2019-10-10 21:21:00,614 4th St, Boston,MA,02215 +263684,Bose SoundSport Headphones,1,99.99,2019-10-06 09:49:00,175 Main St, Los Angeles,CA,90001 +263685,Wired Headphones,1,11.99,2019-10-21 00:24:00,471 Highland St, New York City,NY,10001 +263686,Wired Headphones,1,11.99,2019-10-21 21:56:00,504 13th St, Boston,MA,02215 +263687,AAA Batteries (4-pack),1,2.99,2019-10-26 20:36:00,270 Highland St, Seattle,WA,98101 +263688,27in FHD Monitor,1,149.99,2019-10-05 18:27:00,202 7th St, San Francisco,CA,94016 +263689,AA Batteries (4-pack),1,3.84,2019-10-05 15:52:00,599 Walnut St, Los Angeles,CA,90001 +263689,Bose SoundSport Headphones,1,99.99,2019-10-05 15:52:00,599 Walnut St, Los Angeles,CA,90001 +263690,Wired Headphones,1,11.99,2019-10-30 02:04:00,650 Willow St, Austin,TX,73301 +263691,iPhone,1,700.0,2019-10-18 12:04:00,320 Willow St, Atlanta,GA,30301 +263691,Apple Airpods Headphones,1,150.0,2019-10-18 12:04:00,320 Willow St, Atlanta,GA,30301 +263692,AAA Batteries (4-pack),1,2.99,2019-10-17 10:04:00,6 Ridge St, Portland,OR,97035 +263693,Lightning Charging Cable,1,14.95,2019-10-09 13:23:00,859 Dogwood St, Los Angeles,CA,90001 +263694,Apple Airpods Headphones,1,150.0,2019-10-22 10:14:00,603 Lakeview St, Seattle,WA,98101 +263695,ThinkPad Laptop,1,999.99,2019-10-17 18:49:00,842 Cherry St, New York City,NY,10001 +263696,Apple Airpods Headphones,1,150.0,2019-10-05 10:41:00,183 North St, San Francisco,CA,94016 +263697,AAA Batteries (4-pack),1,2.99,2019-10-03 20:49:00,474 Highland St, Seattle,WA,98101 +263698,Apple Airpods Headphones,1,150.0,2019-10-31 05:34:00,726 Willow St, Boston,MA,02215 +263699,Lightning Charging Cable,1,14.95,2019-10-18 13:21:00,473 Elm St, San Francisco,CA,94016 +263700,Bose SoundSport Headphones,1,99.99,2019-10-08 12:23:00,931 Washington St, Los Angeles,CA,90001 +263701,USB-C Charging Cable,1,11.95,2019-10-30 17:53:00,534 Jefferson St, San Francisco,CA,94016 +263702,AAA Batteries (4-pack),1,2.99,2019-10-28 17:08:00,122 Wilson St, San Francisco,CA,94016 +263703,AA Batteries (4-pack),1,3.84,2019-10-12 13:42:00,449 6th St, Seattle,WA,98101 +263704,Lightning Charging Cable,1,14.95,2019-10-26 07:40:00,348 West St, Seattle,WA,98101 +263705,Lightning Charging Cable,1,14.95,2019-10-23 21:14:00,81 West St, Boston,MA,02215 +263706,27in 4K Gaming Monitor,1,389.99,2019-10-22 10:08:00,439 Forest St, Atlanta,GA,30301 +263707,USB-C Charging Cable,1,11.95,2019-10-23 13:02:00,733 Jefferson St, New York City,NY,10001 +263708,Lightning Charging Cable,1,14.95,2019-10-10 18:55:00,938 Pine St, Austin,TX,73301 +263709,34in Ultrawide Monitor,1,379.99,2019-10-31 12:34:00,293 South St, San Francisco,CA,94016 +263710,Wired Headphones,1,11.99,2019-10-29 13:14:00,192 Jackson St, Austin,TX,73301 +263711,Apple Airpods Headphones,1,150.0,2019-10-17 19:00:00,18 River St, Atlanta,GA,30301 +263712,iPhone,1,700.0,2019-10-06 15:05:00,610 5th St, New York City,NY,10001 +263712,Wired Headphones,1,11.99,2019-10-06 15:05:00,610 5th St, New York City,NY,10001 +263713,Lightning Charging Cable,1,14.95,2019-10-30 00:22:00,642 Park St, San Francisco,CA,94016 +263714,Macbook Pro Laptop,1,1700.0,2019-10-17 21:31:00,410 Johnson St, Portland,ME,04101 +263715,Flatscreen TV,1,300.0,2019-10-04 15:23:00,739 Walnut St, New York City,NY,10001 +263716,USB-C Charging Cable,1,11.95,2019-10-08 10:47:00,760 Hickory St, Atlanta,GA,30301 +263717,Lightning Charging Cable,1,14.95,2019-10-28 20:20:00,520 Dogwood St, San Francisco,CA,94016 +263718,Apple Airpods Headphones,1,150.0,2019-10-09 14:04:00,969 North St, Los Angeles,CA,90001 +263719,Google Phone,1,600.0,2019-10-28 11:44:00,404 7th St, San Francisco,CA,94016 +263719,Bose SoundSport Headphones,1,99.99,2019-10-28 11:44:00,404 7th St, San Francisco,CA,94016 +263719,Wired Headphones,1,11.99,2019-10-28 11:44:00,404 7th St, San Francisco,CA,94016 +263720,AA Batteries (4-pack),1,3.84,2019-10-18 15:13:00,107 Lake St, New York City,NY,10001 +263721,Wired Headphones,1,11.99,2019-10-13 08:21:00,527 1st St, Boston,MA,02215 +263722,AA Batteries (4-pack),1,3.84,2019-10-21 17:57:00,388 6th St, Atlanta,GA,30301 +263723,USB-C Charging Cable,1,11.95,2019-10-23 22:31:00,604 River St, Dallas,TX,75001 +263724,Vareebadd Phone,1,400.0,2019-10-19 21:42:00,625 Madison St, San Francisco,CA,94016 +263724,Wired Headphones,1,11.99,2019-10-19 21:42:00,625 Madison St, San Francisco,CA,94016 +263725,Bose SoundSport Headphones,1,99.99,2019-10-09 07:40:00,712 1st St, New York City,NY,10001 +263726,USB-C Charging Cable,1,11.95,2019-10-19 18:59:00,693 Adams St, Atlanta,GA,30301 +263727,ThinkPad Laptop,1,999.99,2019-10-20 15:49:00,141 Park St, San Francisco,CA,94016 +263728,Bose SoundSport Headphones,1,99.99,2019-10-30 19:18:00,23 Park St, Los Angeles,CA,90001 +263729,Apple Airpods Headphones,1,150.0,2019-10-19 18:38:00,333 Dogwood St, Atlanta,GA,30301 +263730,iPhone,1,700.0,2019-10-06 12:07:00,305 Maple St, Los Angeles,CA,90001 +263731,ThinkPad Laptop,1,999.99,2019-10-29 19:00:00,366 Johnson St, Portland,ME,04101 +263732,ThinkPad Laptop,1,999.99,2019-10-29 10:08:00,20 Hickory St, Boston,MA,02215 +263733,AAA Batteries (4-pack),1,2.99,2019-10-24 15:54:00,979 Cherry St, New York City,NY,10001 +263734,AA Batteries (4-pack),1,3.84,2019-10-13 18:16:00,822 Main St, San Francisco,CA,94016 +263735,LG Dryer,1,600.0,2019-10-11 23:01:00,337 14th St, San Francisco,CA,94016 +263736,Apple Airpods Headphones,1,150.0,2019-10-18 10:37:00,863 4th St, Portland,OR,97035 +263737,Apple Airpods Headphones,1,150.0,2019-10-06 09:51:00,197 Adams St, Atlanta,GA,30301 +263738,ThinkPad Laptop,1,999.99,2019-10-21 07:56:00,390 Sunset St, San Francisco,CA,94016 +263739,AAA Batteries (4-pack),1,2.99,2019-10-13 17:58:00,806 North St, Atlanta,GA,30301 +263740,AA Batteries (4-pack),1,3.84,2019-10-15 20:17:00,210 13th St, Los Angeles,CA,90001 +263741,Apple Airpods Headphones,1,150.0,2019-10-24 23:41:00,163 Lincoln St, Boston,MA,02215 +263742,Bose SoundSport Headphones,1,99.99,2019-10-16 19:20:00,958 Dogwood St, Dallas,TX,75001 +263743,AA Batteries (4-pack),1,3.84,2019-10-14 09:08:00,471 Highland St, Seattle,WA,98101 +263744,AAA Batteries (4-pack),1,2.99,2019-10-27 17:14:00,123 8th St, Los Angeles,CA,90001 +263745,AA Batteries (4-pack),2,3.84,2019-10-07 22:59:00,10 4th St, San Francisco,CA,94016 +263746,Google Phone,1,600.0,2019-10-18 10:27:00,983 6th St, Los Angeles,CA,90001 +263747,Lightning Charging Cable,1,14.95,2019-10-28 17:17:00,171 Chestnut St, Atlanta,GA,30301 +263748,AAA Batteries (4-pack),1,2.99,2019-10-28 19:26:00,725 Adams St, San Francisco,CA,94016 +263749,Bose SoundSport Headphones,1,99.99,2019-10-04 23:06:00,473 South St, Los Angeles,CA,90001 +263750,Wired Headphones,1,11.99,2019-10-10 10:56:00,510 Ridge St, San Francisco,CA,94016 +263751,Lightning Charging Cable,1,14.95,2019-10-29 08:59:00,452 2nd St, San Francisco,CA,94016 +263752,USB-C Charging Cable,1,11.95,2019-10-09 13:22:00,752 Lake St, Atlanta,GA,30301 +263753,Apple Airpods Headphones,1,150.0,2019-10-08 07:34:00,886 North St, San Francisco,CA,94016 +263754,AAA Batteries (4-pack),2,2.99,2019-10-20 11:45:00,267 5th St, Austin,TX,73301 +263755,AAA Batteries (4-pack),2,2.99,2019-10-22 17:14:00,415 Washington St, Seattle,WA,98101 +263756,Apple Airpods Headphones,1,150.0,2019-10-10 21:47:00,832 Madison St, San Francisco,CA,94016 +263757,AAA Batteries (4-pack),1,2.99,2019-10-29 20:09:00,74 Washington St, San Francisco,CA,94016 +263758,Wired Headphones,1,11.99,2019-10-26 19:23:00,703 Hickory St, Dallas,TX,75001 +263759,Macbook Pro Laptop,1,1700.0,2019-10-13 19:36:00,656 Park St, San Francisco,CA,94016 +263760,AA Batteries (4-pack),3,3.84,2019-10-17 17:26:00,406 Elm St, Los Angeles,CA,90001 +263761,Lightning Charging Cable,1,14.95,2019-10-29 17:50:00,750 7th St, San Francisco,CA,94016 +263762,AAA Batteries (4-pack),2,2.99,2019-10-17 21:59:00,240 Sunset St, Boston,MA,02215 +263763,USB-C Charging Cable,1,11.95,2019-10-26 17:18:00,631 8th St, Atlanta,GA,30301 +263764,Bose SoundSport Headphones,1,99.99,2019-10-17 08:25:00,457 Madison St, Boston,MA,02215 +263765,AA Batteries (4-pack),2,3.84,2019-10-01 18:32:00,503 Cedar St, San Francisco,CA,94016 +263766,Lightning Charging Cable,1,14.95,2019-10-16 17:22:00,932 Maple St, Atlanta,GA,30301 +263767,27in FHD Monitor,1,149.99,2019-10-07 21:10:00,958 2nd St, Los Angeles,CA,90001 +263768,Apple Airpods Headphones,1,150.0,2019-10-31 15:27:00,277 Main St, Boston,MA,02215 +263769,Lightning Charging Cable,1,14.95,2019-10-06 22:32:00,604 Forest St, Austin,TX,73301 +263770,Bose SoundSport Headphones,1,99.99,2019-10-21 17:31:00,321 14th St, San Francisco,CA,94016 +263771,USB-C Charging Cable,1,11.95,2019-10-17 20:07:00,557 11th St, New York City,NY,10001 +263772,USB-C Charging Cable,1,11.95,2019-10-26 14:09:00,752 11th St, San Francisco,CA,94016 +263773,AAA Batteries (4-pack),1,2.99,2019-10-24 10:31:00,878 Hill St, Seattle,WA,98101 +263774,27in 4K Gaming Monitor,1,389.99,2019-10-17 16:11:00,931 Hill St, Seattle,WA,98101 +263775,USB-C Charging Cable,1,11.95,2019-10-23 12:39:00,163 Lake St, Boston,MA,02215 +263776,USB-C Charging Cable,1,11.95,2019-10-27 10:10:00,80 Main St, San Francisco,CA,94016 +263777,Bose SoundSport Headphones,1,99.99,2019-10-29 08:02:00,650 Madison St, Los Angeles,CA,90001 +263778,20in Monitor,1,109.99,2019-10-11 07:24:00,886 Center St, San Francisco,CA,94016 +263779,34in Ultrawide Monitor,1,379.99,2019-10-12 12:12:00,723 4th St, San Francisco,CA,94016 +263780,27in 4K Gaming Monitor,1,389.99,2019-10-11 10:23:00,403 Jefferson St, Los Angeles,CA,90001 +263781,AAA Batteries (4-pack),1,2.99,2019-10-30 10:59:00,654 12th St, Los Angeles,CA,90001 +263782,Google Phone,1,600.0,2019-10-06 01:59:00,661 Washington St, New York City,NY,10001 +263783,Bose SoundSport Headphones,1,99.99,2019-10-02 00:52:00,821 Johnson St, San Francisco,CA,94016 +263784,Flatscreen TV,1,300.0,2019-10-22 09:14:00,421 Cherry St, Austin,TX,73301 +263785,AAA Batteries (4-pack),4,2.99,2019-10-24 14:04:00,341 Spruce St, New York City,NY,10001 +263786,Lightning Charging Cable,1,14.95,2019-10-05 11:51:00,443 Jefferson St, San Francisco,CA,94016 +263787,27in 4K Gaming Monitor,1,389.99,2019-10-26 08:14:00,353 West St, New York City,NY,10001 +263788,AA Batteries (4-pack),1,3.84,2019-10-31 09:27:00,76 Sunset St, New York City,NY,10001 +263789,20in Monitor,1,109.99,2019-10-04 17:37:00,280 4th St, New York City,NY,10001 +263790,iPhone,1,700.0,2019-10-05 18:25:00,79 Ridge St, San Francisco,CA,94016 +263791,Wired Headphones,1,11.99,2019-10-21 04:22:00,254 Church St, Seattle,WA,98101 +263792,AAA Batteries (4-pack),3,2.99,2019-10-26 22:14:00,464 Church St, Los Angeles,CA,90001 +263793,Bose SoundSport Headphones,1,99.99,2019-10-24 23:05:00,187 Cedar St, Los Angeles,CA,90001 +263794,AAA Batteries (4-pack),1,2.99,2019-10-08 19:50:00,388 6th St, Atlanta,GA,30301 +263795,USB-C Charging Cable,1,11.95,2019-10-10 10:20:00,114 13th St, Portland,OR,97035 +263796,AA Batteries (4-pack),1,3.84,2019-10-27 19:21:00,946 Lake St, San Francisco,CA,94016 +263797,27in 4K Gaming Monitor,1,389.99,2019-10-31 22:12:00,565 Forest St, San Francisco,CA,94016 +263798,ThinkPad Laptop,1,999.99,2019-10-28 12:32:00,966 Dogwood St, Boston,MA,02215 +263799,Wired Headphones,1,11.99,2019-10-04 22:19:00,779 Washington St, Portland,OR,97035 +263800,Vareebadd Phone,1,400.0,2019-10-11 01:44:00,433 North St, New York City,NY,10001 +263800,Wired Headphones,1,11.99,2019-10-11 01:44:00,433 North St, New York City,NY,10001 +263801,27in FHD Monitor,1,149.99,2019-10-23 11:09:00,594 Johnson St, New York City,NY,10001 +263802,Macbook Pro Laptop,1,1700.0,2019-10-03 14:33:00,262 Lakeview St, San Francisco,CA,94016 +263803,AAA Batteries (4-pack),1,2.99,2019-10-12 09:19:00,915 Elm St, Los Angeles,CA,90001 +263804,27in 4K Gaming Monitor,1,389.99,2019-10-03 09:39:00,334 12th St, San Francisco,CA,94016 +263805,Google Phone,1,600.0,2019-10-05 01:52:00,261 Wilson St, San Francisco,CA,94016 +263806,20in Monitor,1,109.99,2019-10-14 17:47:00,133 10th St, Los Angeles,CA,90001 +263807,AAA Batteries (4-pack),1,2.99,2019-10-27 17:19:00,456 Chestnut St, New York City,NY,10001 +263808,Wired Headphones,2,11.99,2019-10-19 12:14:00,423 13th St, Atlanta,GA,30301 +263809,AA Batteries (4-pack),1,3.84,2019-10-10 13:12:00,487 Meadow St, New York City,NY,10001 +263810,AAA Batteries (4-pack),1,2.99,2019-10-30 20:22:00,537 6th St, San Francisco,CA,94016 +263811,iPhone,1,700.0,2019-10-18 13:31:00,371 14th St, San Francisco,CA,94016 +263812,Bose SoundSport Headphones,1,99.99,2019-10-23 09:46:00,274 Meadow St, San Francisco,CA,94016 +263813,Lightning Charging Cable,1,14.95,2019-10-21 22:39:00,525 Park St, Portland,OR,97035 +263814,AAA Batteries (4-pack),2,2.99,2019-10-04 14:15:00,29 14th St, Los Angeles,CA,90001 +263815,Apple Airpods Headphones,1,150.0,2019-10-01 19:05:00,916 Lake St, Los Angeles,CA,90001 +263816,Macbook Pro Laptop,1,1700.0,2019-10-09 23:14:00,834 5th St, New York City,NY,10001 +263817,USB-C Charging Cable,1,11.95,2019-10-01 19:48:00,409 Elm St, Dallas,TX,75001 +263818,20in Monitor,1,109.99,2019-10-14 11:41:00,680 Lincoln St, Seattle,WA,98101 +263819,Lightning Charging Cable,1,14.95,2019-10-14 13:39:00,290 Madison St, Los Angeles,CA,90001 +263820,AA Batteries (4-pack),1,3.84,2019-10-17 07:31:00,40 Maple St, San Francisco,CA,94016 +263821,Flatscreen TV,1,300.0,2019-10-14 08:59:00,810 Lake St, New York City,NY,10001 +263822,Bose SoundSport Headphones,1,99.99,2019-10-31 13:17:00,259 14th St, Atlanta,GA,30301 +263823,Apple Airpods Headphones,1,150.0,2019-10-08 20:02:00,311 Highland St, Seattle,WA,98101 +263824,AAA Batteries (4-pack),1,2.99,2019-10-17 21:47:00,18 River St, New York City,NY,10001 +263825,Bose SoundSport Headphones,1,99.99,2019-10-12 10:41:00,902 Forest St, Dallas,TX,75001 +263826,USB-C Charging Cable,1,11.95,2019-10-24 11:19:00,943 4th St, New York City,NY,10001 +263827,Lightning Charging Cable,1,14.95,2019-10-14 18:12:00,286 7th St, Atlanta,GA,30301 +263828,AAA Batteries (4-pack),1,2.99,2019-10-05 22:23:00,260 Wilson St, San Francisco,CA,94016 +263829,Wired Headphones,1,11.99,2019-10-24 17:49:00,162 4th St, San Francisco,CA,94016 +263830,Macbook Pro Laptop,1,1700.0,2019-10-24 16:34:00,140 Hill St, Austin,TX,73301 +263831,iPhone,1,700.0,2019-10-03 11:41:00,966 4th St, San Francisco,CA,94016 +263832,Bose SoundSport Headphones,1,99.99,2019-10-06 08:31:00,851 Adams St, Austin,TX,73301 +263833,34in Ultrawide Monitor,1,379.99,2019-10-16 09:54:00,14 Spruce St, Seattle,WA,98101 +263834,Wired Headphones,1,11.99,2019-10-10 19:00:00,855 Washington St, Portland,OR,97035 +263835,27in FHD Monitor,1,149.99,2019-10-09 14:49:00,120 Willow St, Seattle,WA,98101 +263836,ThinkPad Laptop,1,999.99,2019-10-09 12:29:00,827 Lincoln St, New York City,NY,10001 +263837,Bose SoundSport Headphones,1,99.99,2019-10-18 03:10:00,239 West St, Boston,MA,02215 +263838,Apple Airpods Headphones,1,150.0,2019-10-17 19:40:00,109 Cherry St, Boston,MA,02215 +263839,Wired Headphones,1,11.99,2019-10-14 13:38:00,442 Lake St, Seattle,WA,98101 +263840,USB-C Charging Cable,1,11.95,2019-10-03 18:28:00,794 Hickory St, Portland,OR,97035 +263841,Lightning Charging Cable,1,14.95,2019-10-10 11:54:00,644 7th St, New York City,NY,10001 +263842,AA Batteries (4-pack),1,3.84,2019-10-25 14:48:00,548 Lakeview St, Boston,MA,02215 +263843,34in Ultrawide Monitor,1,379.99,2019-10-20 21:07:00,900 Center St, Austin,TX,73301 +263844,USB-C Charging Cable,1,11.95,2019-10-21 14:18:00,520 Willow St, Seattle,WA,98101 +263845,iPhone,1,700.0,2019-10-26 12:11:00,339 Willow St, Los Angeles,CA,90001 +263846,Apple Airpods Headphones,1,150.0,2019-10-23 15:11:00,704 Spruce St, New York City,NY,10001 +263847,USB-C Charging Cable,3,11.95,2019-10-28 11:19:00,841 Forest St, Los Angeles,CA,90001 +263848,AA Batteries (4-pack),1,3.84,2019-10-11 10:54:00,654 Willow St, Seattle,WA,98101 +263849,Macbook Pro Laptop,1,1700.0,2019-10-16 21:53:00,347 Adams St, Seattle,WA,98101 +263850,Apple Airpods Headphones,1,150.0,2019-10-06 16:56:00,666 10th St, New York City,NY,10001 +263851,AA Batteries (4-pack),2,3.84,2019-10-24 09:48:00,738 4th St, Los Angeles,CA,90001 +263852,Lightning Charging Cable,1,14.95,2019-10-25 15:46:00,841 6th St, New York City,NY,10001 +263853,AAA Batteries (4-pack),2,2.99,2019-10-14 18:38:00,286 Forest St, Los Angeles,CA,90001 +263854,27in 4K Gaming Monitor,1,389.99,2019-10-29 08:17:00,472 Chestnut St, Boston,MA,02215 +263855,Apple Airpods Headphones,1,150.0,2019-10-28 09:59:00,330 10th St, San Francisco,CA,94016 +263856,ThinkPad Laptop,1,999.99,2019-10-12 09:49:00,568 Adams St, Los Angeles,CA,90001 +263857,Bose SoundSport Headphones,1,99.99,2019-10-29 18:24:00,545 Johnson St, Dallas,TX,75001 +263858,ThinkPad Laptop,1,999.99,2019-10-24 18:33:00,617 Jefferson St, Portland,ME,04101 +263859,AA Batteries (4-pack),1,3.84,2019-10-08 20:50:00,298 South St, Portland,OR,97035 +263860,Bose SoundSport Headphones,1,99.99,2019-10-05 13:21:00,380 Ridge St, Seattle,WA,98101 +263861,USB-C Charging Cable,1,11.95,2019-10-24 18:13:00,980 Center St, Seattle,WA,98101 +263862,Macbook Pro Laptop,1,1700.0,2019-10-20 10:02:00,333 6th St, New York City,NY,10001 +263863,AA Batteries (4-pack),1,3.84,2019-10-08 15:01:00,506 Maple St, New York City,NY,10001 +263864,Google Phone,1,600.0,2019-10-13 11:23:00,552 River St, San Francisco,CA,94016 +263865,AAA Batteries (4-pack),2,2.99,2019-10-13 00:37:00,885 Willow St, Los Angeles,CA,90001 +263866,AA Batteries (4-pack),1,3.84,2019-10-30 09:03:00,95 River St, Los Angeles,CA,90001 +263867,Flatscreen TV,1,300.0,2019-10-07 06:35:00,452 11th St, Boston,MA,02215 +263868,AAA Batteries (4-pack),2,2.99,2019-10-05 14:50:00,403 Highland St, New York City,NY,10001 +263869,Wired Headphones,1,11.99,2019-10-30 12:07:00,440 Walnut St, Los Angeles,CA,90001 +263870,Wired Headphones,1,11.99,2019-10-22 11:04:00,89 Ridge St, Boston,MA,02215 +263871,Flatscreen TV,1,300.0,2019-10-07 11:11:00,277 Johnson St, San Francisco,CA,94016 +263872,AA Batteries (4-pack),1,3.84,2019-10-04 10:05:00,428 Lakeview St, San Francisco,CA,94016 +263873,Apple Airpods Headphones,1,150.0,2019-10-07 21:22:00,292 Park St, Boston,MA,02215 +263874,AA Batteries (4-pack),1,3.84,2019-10-09 20:26:00,244 Cherry St, New York City,NY,10001 +263875,Lightning Charging Cable,1,14.95,2019-10-29 18:37:00,788 Forest St, Boston,MA,02215 +263876,AA Batteries (4-pack),5,3.84,2019-10-02 10:46:00,34 5th St, Los Angeles,CA,90001 +263877,Google Phone,1,600.0,2019-10-18 13:25:00,249 14th St, New York City,NY,10001 +263878,27in 4K Gaming Monitor,1,389.99,2019-10-02 22:44:00,265 Park St, Austin,TX,73301 +263879,Wired Headphones,1,11.99,2019-10-09 15:41:00,933 Johnson St, New York City,NY,10001 +263880,AA Batteries (4-pack),1,3.84,2019-10-22 15:57:00,443 12th St, Los Angeles,CA,90001 +263881,AA Batteries (4-pack),1,3.84,2019-10-15 17:04:00,199 North St, Seattle,WA,98101 +263882,Lightning Charging Cable,1,14.95,2019-10-20 16:23:00,152 Hickory St, Dallas,TX,75001 +263883,Lightning Charging Cable,1,14.95,2019-10-10 17:51:00,291 Forest St, Portland,OR,97035 +263884,Macbook Pro Laptop,1,1700.0,2019-10-10 06:50:00,350 Hill St, Boston,MA,02215 +263885,Wired Headphones,1,11.99,2019-10-31 17:46:00,635 Willow St, Austin,TX,73301 +263886,27in FHD Monitor,1,149.99,2019-10-01 17:59:00,948 12th St, San Francisco,CA,94016 +263887,Lightning Charging Cable,1,14.95,2019-10-18 17:32:00,75 Lakeview St, San Francisco,CA,94016 +263888,Lightning Charging Cable,1,14.95,2019-10-31 15:52:00,82 Center St, New York City,NY,10001 +263889,Bose SoundSport Headphones,1,99.99,2019-10-22 18:20:00,604 Lakeview St, Boston,MA,02215 +263890,AAA Batteries (4-pack),1,2.99,2019-10-29 14:35:00,173 Hill St, Dallas,TX,75001 +263891,Wired Headphones,1,11.99,2019-10-10 19:53:00,737 Spruce St, New York City,NY,10001 +263892,Wired Headphones,1,11.99,2019-10-11 20:43:00,251 Wilson St, New York City,NY,10001 +263893,Bose SoundSport Headphones,1,99.99,2019-10-26 22:16:00,709 12th St, Atlanta,GA,30301 +263894,iPhone,1,700.0,2019-10-18 14:12:00,415 9th St, Austin,TX,73301 +263894,Lightning Charging Cable,1,14.95,2019-10-18 14:12:00,415 9th St, Austin,TX,73301 +263895,AA Batteries (4-pack),1,3.84,2019-10-30 20:23:00,990 1st St, Boston,MA,02215 +263896,Lightning Charging Cable,1,14.95,2019-10-01 15:28:00,350 13th St, San Francisco,CA,94016 +263897,Bose SoundSport Headphones,1,99.99,2019-10-04 18:06:00,766 Walnut St, San Francisco,CA,94016 +263898,Bose SoundSport Headphones,1,99.99,2019-10-21 13:10:00,152 6th St, Seattle,WA,98101 +263899,AAA Batteries (4-pack),1,2.99,2019-10-29 22:00:00,356 Wilson St, Portland,OR,97035 +263900,Lightning Charging Cable,1,14.95,2019-10-20 16:00:00,537 Wilson St, Los Angeles,CA,90001 +263901,Wired Headphones,1,11.99,2019-10-23 11:17:00,631 2nd St, San Francisco,CA,94016 +263902,iPhone,1,700.0,2019-10-03 12:25:00,678 Cedar St, Los Angeles,CA,90001 +263903,Apple Airpods Headphones,1,150.0,2019-10-10 12:19:00,75 Lake St, Atlanta,GA,30301 +263904,AAA Batteries (4-pack),1,2.99,2019-10-25 13:46:00,450 Park St, New York City,NY,10001 +263904,Wired Headphones,1,11.99,2019-10-25 13:46:00,450 Park St, New York City,NY,10001 +263905,Bose SoundSport Headphones,1,99.99,2019-10-05 18:11:00,359 Park St, Seattle,WA,98101 +263906,AA Batteries (4-pack),2,3.84,2019-10-04 14:59:00,538 Walnut St, Seattle,WA,98101 +263907,Wired Headphones,1,11.99,2019-10-01 17:31:00,31 Forest St, Boston,MA,02215 +263908,34in Ultrawide Monitor,1,379.99,2019-10-09 21:37:00,701 Adams St, Atlanta,GA,30301 +263909,USB-C Charging Cable,1,11.95,2019-10-12 06:12:00,943 Center St, Seattle,WA,98101 +263910,AAA Batteries (4-pack),2,2.99,2019-10-23 03:13:00,182 Willow St, New York City,NY,10001 +263911,USB-C Charging Cable,1,11.95,2019-10-20 08:05:00,519 8th St, Dallas,TX,75001 +263912,AA Batteries (4-pack),2,3.84,2019-10-23 15:23:00,453 2nd St, Los Angeles,CA,90001 +263913,Wired Headphones,1,11.99,2019-10-02 08:57:00,780 Pine St, Boston,MA,02215 +263914,Apple Airpods Headphones,1,150.0,2019-10-05 19:40:00,509 10th St, New York City,NY,10001 +263915,AA Batteries (4-pack),1,3.84,2019-10-15 21:24:00,922 Adams St, New York City,NY,10001 +263916,AAA Batteries (4-pack),2,2.99,2019-10-19 00:25:00,657 4th St, Austin,TX,73301 +263917,AAA Batteries (4-pack),1,2.99,2019-10-18 13:41:00,530 14th St, New York City,NY,10001 +263918,Vareebadd Phone,1,400.0,2019-10-31 10:17:00,680 West St, San Francisco,CA,94016 +263918,USB-C Charging Cable,1,11.95,2019-10-31 10:17:00,680 West St, San Francisco,CA,94016 +263918,Bose SoundSport Headphones,1,99.99,2019-10-31 10:17:00,680 West St, San Francisco,CA,94016 +263918,Wired Headphones,1,11.99,2019-10-31 10:17:00,680 West St, San Francisco,CA,94016 +263919,AA Batteries (4-pack),1,3.84,2019-10-04 19:59:00,178 Hickory St, Portland,OR,97035 +263920,Wired Headphones,1,11.99,2019-10-27 13:24:00,118 Elm St, Dallas,TX,75001 +263921,AAA Batteries (4-pack),2,2.99,2019-10-03 16:03:00,936 Dogwood St, Boston,MA,02215 +263922,Wired Headphones,1,11.99,2019-10-23 06:03:00,313 Main St, Boston,MA,02215 +263923,iPhone,1,700.0,2019-10-16 15:31:00,349 Highland St, Atlanta,GA,30301 +263924,Wired Headphones,1,11.99,2019-10-18 18:03:00,323 Park St, San Francisco,CA,94016 +263925,Apple Airpods Headphones,1,150.0,2019-10-19 10:41:00,802 Johnson St, San Francisco,CA,94016 +263926,Bose SoundSport Headphones,1,99.99,2019-10-22 18:27:00,834 2nd St, Boston,MA,02215 +263927,Bose SoundSport Headphones,1,99.99,2019-10-07 19:32:00,888 Jackson St, Los Angeles,CA,90001 +263928,AAA Batteries (4-pack),1,2.99,2019-10-29 21:22:00,747 Cherry St, Austin,TX,73301 +263929,34in Ultrawide Monitor,1,379.99,2019-10-13 13:43:00,80 Lincoln St, Boston,MA,02215 +263930,Google Phone,1,600.0,2019-10-06 15:51:00,794 1st St, New York City,NY,10001 +263931,AAA Batteries (4-pack),1,2.99,2019-10-07 10:54:00,156 8th St, Austin,TX,73301 +263932,Lightning Charging Cable,1,14.95,2019-10-21 16:31:00,577 Hill St, Portland,ME,04101 +263933,Bose SoundSport Headphones,1,99.99,2019-10-04 20:12:00,405 8th St, New York City,NY,10001 +263934,Wired Headphones,1,11.99,2019-10-30 20:29:00,856 Pine St, New York City,NY,10001 +263935,Bose SoundSport Headphones,1,99.99,2019-10-14 05:53:00,911 Jackson St, San Francisco,CA,94016 +263936,USB-C Charging Cable,1,11.95,2019-10-24 20:52:00,947 Jefferson St, Boston,MA,02215 +263937,Wired Headphones,1,11.99,2019-10-08 01:16:00,141 Hill St, San Francisco,CA,94016 +263938,Flatscreen TV,1,300.0,2019-10-27 22:01:00,444 Lincoln St, Seattle,WA,98101 +263939,Apple Airpods Headphones,1,150.0,2019-10-23 23:51:00,53 Cedar St, Atlanta,GA,30301 +263940,Apple Airpods Headphones,1,150.0,2019-10-13 13:54:00,403 14th St, Boston,MA,02215 +263941,Apple Airpods Headphones,1,150.0,2019-10-31 19:00:00,544 10th St, Los Angeles,CA,90001 +263942,AAA Batteries (4-pack),3,2.99,2019-10-17 14:57:00,793 Willow St, Atlanta,GA,30301 +263943,AAA Batteries (4-pack),1,2.99,2019-10-09 22:06:00,850 Chestnut St, New York City,NY,10001 +263944,iPhone,1,700.0,2019-10-18 13:40:00,92 Maple St, Boston,MA,02215 +263945,Wired Headphones,1,11.99,2019-10-04 22:27:00,848 North St, San Francisco,CA,94016 +263946,AA Batteries (4-pack),1,3.84,2019-10-27 18:23:00,530 Jackson St, New York City,NY,10001 +263947,34in Ultrawide Monitor,1,379.99,2019-10-31 12:15:00,13 5th St, Boston,MA,02215 +263948,USB-C Charging Cable,1,11.95,2019-10-20 20:46:00,918 7th St, San Francisco,CA,94016 +263949,34in Ultrawide Monitor,1,379.99,2019-10-22 18:18:00,317 10th St, Atlanta,GA,30301 +263950,Wired Headphones,1,11.99,2019-10-09 19:09:00,427 Spruce St, Atlanta,GA,30301 +263951,USB-C Charging Cable,1,11.95,2019-10-17 13:21:00,264 8th St, New York City,NY,10001 +263952,Wired Headphones,1,11.99,2019-10-26 11:52:00,383 7th St, Los Angeles,CA,90001 +263953,USB-C Charging Cable,1,11.95,2019-10-15 17:00:00,313 Center St, Los Angeles,CA,90001 +263954,Apple Airpods Headphones,1,150.0,2019-10-08 18:54:00,307 Maple St, Atlanta,GA,30301 +263955,AA Batteries (4-pack),1,3.84,2019-10-14 21:01:00,519 Lincoln St, Seattle,WA,98101 +263956,Wired Headphones,1,11.99,2019-10-13 10:50:00,454 Main St, San Francisco,CA,94016 +263957,Wired Headphones,1,11.99,2019-10-12 14:20:00,596 7th St, Los Angeles,CA,90001 +263958,27in 4K Gaming Monitor,1,389.99,2019-10-28 17:24:00,112 Cherry St, Atlanta,GA,30301 +263959,AAA Batteries (4-pack),1,2.99,2019-10-03 11:29:00,602 North St, Seattle,WA,98101 +263960,ThinkPad Laptop,1,999.99,2019-10-03 09:18:00,221 10th St, San Francisco,CA,94016 +263961,Flatscreen TV,1,300.0,2019-10-02 13:17:00,885 Lakeview St, Atlanta,GA,30301 +263962,Apple Airpods Headphones,1,150.0,2019-10-29 00:34:00,733 7th St, Atlanta,GA,30301 +263963,Bose SoundSport Headphones,1,99.99,2019-10-12 20:08:00,765 Hill St, Los Angeles,CA,90001 +263964,AA Batteries (4-pack),1,3.84,2019-10-19 14:07:00,218 Johnson St, Portland,OR,97035 +263965,Wired Headphones,1,11.99,2019-10-28 21:52:00,749 Sunset St, San Francisco,CA,94016 +263966,Macbook Pro Laptop,1,1700.0,2019-10-01 17:51:00,550 Wilson St, New York City,NY,10001 +263967,27in FHD Monitor,1,149.99,2019-10-08 16:06:00,738 14th St, Portland,OR,97035 +263968,Wired Headphones,1,11.99,2019-10-07 20:23:00,292 Maple St, Boston,MA,02215 +263969,ThinkPad Laptop,1,999.99,2019-10-22 23:26:00,328 Chestnut St, Seattle,WA,98101 +263970,Lightning Charging Cable,1,14.95,2019-10-14 10:12:00,913 Chestnut St, Los Angeles,CA,90001 +263971,AAA Batteries (4-pack),2,2.99,2019-10-28 23:03:00,635 Madison St, Dallas,TX,75001 +263971,Google Phone,1,600.0,2019-10-28 23:03:00,635 Madison St, Dallas,TX,75001 +263972,Apple Airpods Headphones,1,150.0,2019-10-06 19:47:00,150 Lakeview St, San Francisco,CA,94016 +263973,AAA Batteries (4-pack),3,2.99,2019-10-28 12:26:00,155 South St, New York City,NY,10001 +263974,USB-C Charging Cable,1,11.95,2019-10-04 14:06:00,824 Meadow St, New York City,NY,10001 +263975,27in FHD Monitor,1,149.99,2019-10-05 03:14:00,771 Ridge St, Boston,MA,02215 +263976,USB-C Charging Cable,1,11.95,2019-10-31 10:48:00,19 North St, Los Angeles,CA,90001 +263977,Wired Headphones,1,11.99,2019-10-13 18:33:00,277 14th St, San Francisco,CA,94016 +263978,27in FHD Monitor,1,149.99,2019-10-03 22:30:00,165 Madison St, Boston,MA,02215 +263979,Wired Headphones,1,11.99,2019-10-24 19:01:00,944 Chestnut St, San Francisco,CA,94016 +263980,27in 4K Gaming Monitor,1,389.99,2019-10-23 10:47:00,565 Ridge St, New York City,NY,10001 +263981,AA Batteries (4-pack),1,3.84,2019-10-15 22:23:00,934 Highland St, Los Angeles,CA,90001 +263982,USB-C Charging Cable,1,11.95,2019-10-06 21:02:00,173 Lakeview St, Atlanta,GA,30301 +263983,USB-C Charging Cable,1,11.95,2019-10-23 18:28:00,13 Cedar St, New York City,NY,10001 +263984,AAA Batteries (4-pack),3,2.99,2019-10-07 16:34:00,567 Sunset St, Austin,TX,73301 +263985,Apple Airpods Headphones,1,150.0,2019-10-15 22:04:00,91 1st St, Dallas,TX,75001 +263986,Flatscreen TV,1,300.0,2019-10-19 13:56:00,668 7th St, San Francisco,CA,94016 +263987,AAA Batteries (4-pack),1,2.99,2019-10-26 07:34:00,320 Main St, Seattle,WA,98101 +263988,AAA Batteries (4-pack),1,2.99,2019-10-07 13:59:00,313 Meadow St, Dallas,TX,75001 +263989,Bose SoundSport Headphones,2,99.99,2019-10-07 19:48:00,237 Johnson St, Austin,TX,73301 +263990,Lightning Charging Cable,1,14.95,2019-10-20 14:48:00,965 8th St, New York City,NY,10001 +263991,AAA Batteries (4-pack),1,2.99,2019-10-21 22:20:00,506 Lake St, Boston,MA,02215 +263992,Lightning Charging Cable,2,14.95,2019-10-02 22:00:00,21 Cherry St, Seattle,WA,98101 +263993,LG Washing Machine,1,600.0,2019-10-31 21:10:00,237 North St, Seattle,WA,98101 +263994,Lightning Charging Cable,3,14.95,2019-10-25 11:07:00,3 Walnut St, Atlanta,GA,30301 +263995,USB-C Charging Cable,1,11.95,2019-10-10 08:55:00,511 Adams St, Los Angeles,CA,90001 +263996,LG Washing Machine,1,600.0,2019-10-25 13:46:00,547 13th St, Boston,MA,02215 +263997,USB-C Charging Cable,1,11.95,2019-10-16 23:34:00,600 2nd St, Austin,TX,73301 +263998,Lightning Charging Cable,1,14.95,2019-10-01 20:42:00,877 Elm St, Portland,ME,04101 +263999,AAA Batteries (4-pack),2,2.99,2019-10-31 07:32:00,19 11th St, Los Angeles,CA,90001 +264000,USB-C Charging Cable,1,11.95,2019-10-15 12:49:00,937 River St, New York City,NY,10001 +264001,Wired Headphones,1,11.99,2019-10-19 15:48:00,826 Lake St, Dallas,TX,75001 +264001,USB-C Charging Cable,1,11.95,2019-10-19 15:48:00,826 Lake St, Dallas,TX,75001 +264002,USB-C Charging Cable,1,11.95,2019-10-28 14:48:00,625 7th St, Atlanta,GA,30301 +264003,Wired Headphones,1,11.99,2019-10-18 19:19:00,918 5th St, New York City,NY,10001 +264004,ThinkPad Laptop,1,999.99,2019-10-14 15:42:00,565 Dogwood St, Los Angeles,CA,90001 +264005,AAA Batteries (4-pack),1,2.99,2019-10-22 10:22:00,915 Johnson St, San Francisco,CA,94016 +264006,AAA Batteries (4-pack),2,2.99,2019-10-05 11:54:00,487 Highland St, Portland,OR,97035 +264007,Lightning Charging Cable,1,14.95,2019-10-09 19:33:00,933 Sunset St, San Francisco,CA,94016 +264008,Bose SoundSport Headphones,1,99.99,2019-10-28 16:17:00,458 Lake St, San Francisco,CA,94016 +264009,Wired Headphones,1,11.99,2019-10-14 14:11:00,759 Dogwood St, Los Angeles,CA,90001 +264010,Lightning Charging Cable,1,14.95,2019-10-13 20:51:00,65 8th St, Seattle,WA,98101 +264011,USB-C Charging Cable,1,11.95,2019-10-11 00:54:00,246 Willow St, Los Angeles,CA,90001 +264012,ThinkPad Laptop,1,999.99,2019-10-06 15:49:00,148 1st St, San Francisco,CA,94016 +264013,AA Batteries (4-pack),1,3.84,2019-10-20 07:30:00,891 West St, New York City,NY,10001 +264014,27in FHD Monitor,1,149.99,2019-10-10 18:02:00,274 4th St, San Francisco,CA,94016 +264015,Apple Airpods Headphones,1,150.0,2019-10-23 13:53:00,243 10th St, San Francisco,CA,94016 +264016,Google Phone,1,600.0,2019-10-30 09:46:00,861 North St, New York City,NY,10001 +264017,AAA Batteries (4-pack),1,2.99,2019-10-27 16:17:00,465 West St, San Francisco,CA,94016 +264018,Bose SoundSport Headphones,1,99.99,2019-10-27 08:28:00,813 Lincoln St, San Francisco,CA,94016 +264019,Apple Airpods Headphones,1,150.0,2019-10-11 20:55:00,726 Ridge St, Boston,MA,02215 +264020,Apple Airpods Headphones,1,150.0,2019-10-04 11:51:00,939 Center St, Los Angeles,CA,90001 +264021,ThinkPad Laptop,1,999.99,2019-10-12 12:16:00,975 Jackson St, Seattle,WA,98101 +264022,USB-C Charging Cable,1,11.95,2019-10-13 04:42:00,169 Cherry St, San Francisco,CA,94016 +264023,Bose SoundSport Headphones,1,99.99,2019-10-16 17:22:00,410 Johnson St, Los Angeles,CA,90001 +264024,Bose SoundSport Headphones,1,99.99,2019-10-03 12:15:00,557 Washington St, San Francisco,CA,94016 +264025,AA Batteries (4-pack),1,3.84,2019-10-22 19:58:00,228 Lake St, Boston,MA,02215 +264026,AA Batteries (4-pack),1,3.84,2019-10-01 17:43:00,41 2nd St, Boston,MA,02215 +264027,AA Batteries (4-pack),1,3.84,2019-10-05 20:23:00,116 Lincoln St, Los Angeles,CA,90001 +264028,AAA Batteries (4-pack),1,2.99,2019-10-23 19:15:00,418 Chestnut St, San Francisco,CA,94016 +264029,Wired Headphones,1,11.99,2019-10-25 15:59:00,510 Jackson St, New York City,NY,10001 +264030,AAA Batteries (4-pack),1,2.99,2019-10-16 20:43:00,160 1st St, Austin,TX,73301 +264031,Apple Airpods Headphones,1,150.0,2019-10-03 17:46:00,136 Hill St, San Francisco,CA,94016 +264032,USB-C Charging Cable,1,11.95,2019-10-15 20:35:00,115 Church St, Atlanta,GA,30301 +264033,Lightning Charging Cable,1,14.95,2019-10-15 14:18:00,900 12th St, Seattle,WA,98101 +264034,Wired Headphones,1,11.99,2019-10-30 20:04:00,541 12th St, Portland,ME,04101 +264035,USB-C Charging Cable,1,11.95,2019-10-16 15:51:00,817 12th St, Los Angeles,CA,90001 +264036,Lightning Charging Cable,1,14.95,2019-10-07 17:14:00,443 Highland St, Los Angeles,CA,90001 +264037,27in 4K Gaming Monitor,1,389.99,2019-10-15 15:34:00,107 Pine St, Atlanta,GA,30301 +264038,Wired Headphones,1,11.99,2019-10-01 05:01:00,347 4th St, Los Angeles,CA,90001 +264039,AAA Batteries (4-pack),1,2.99,2019-10-15 19:59:00,608 West St, Atlanta,GA,30301 +264040,Bose SoundSport Headphones,1,99.99,2019-10-07 18:02:00,231 2nd St, Seattle,WA,98101 +264041,USB-C Charging Cable,1,11.95,2019-10-19 14:37:00,673 Adams St, New York City,NY,10001 +264042,AAA Batteries (4-pack),1,2.99,2019-10-27 11:01:00,667 Hill St, Atlanta,GA,30301 +264043,USB-C Charging Cable,2,11.95,2019-10-31 15:24:00,830 6th St, Los Angeles,CA,90001 +264044,Bose SoundSport Headphones,1,99.99,2019-10-17 20:29:00,457 Hill St, San Francisco,CA,94016 +264045,AAA Batteries (4-pack),2,2.99,2019-10-30 12:13:00,364 Lakeview St, San Francisco,CA,94016 +264046,USB-C Charging Cable,1,11.95,2019-10-24 08:23:00,269 Cedar St, Seattle,WA,98101 +264047,27in 4K Gaming Monitor,1,389.99,2019-10-25 20:53:00,783 West St, Portland,OR,97035 +264048,Wired Headphones,1,11.99,2019-10-04 17:14:00,210 13th St, New York City,NY,10001 +264049,LG Dryer,1,600.0,2019-10-13 08:45:00,528 River St, Austin,TX,73301 +264050,Macbook Pro Laptop,1,1700.0,2019-10-28 07:36:00,509 Adams St, Portland,OR,97035 +264051,Lightning Charging Cable,1,14.95,2019-10-23 21:42:00,936 12th St, Austin,TX,73301 +264052,USB-C Charging Cable,2,11.95,2019-10-18 11:45:00,776 Chestnut St, Boston,MA,02215 +264053,USB-C Charging Cable,1,11.95,2019-10-14 22:43:00,945 Jackson St, Portland,OR,97035 +264053,iPhone,1,700.0,2019-10-14 22:43:00,945 Jackson St, Portland,OR,97035 +264054,Vareebadd Phone,1,400.0,2019-10-19 03:38:00,520 10th St, San Francisco,CA,94016 +264054,Bose SoundSport Headphones,1,99.99,2019-10-19 03:38:00,520 10th St, San Francisco,CA,94016 +264055,Macbook Pro Laptop,1,1700.0,2019-10-15 08:42:00,102 Hickory St, San Francisco,CA,94016 +264056,USB-C Charging Cable,1,11.95,2019-10-17 22:32:00,556 Center St, Portland,OR,97035 +264057,LG Washing Machine,1,600.0,2019-10-07 07:50:00,456 8th St, Seattle,WA,98101 +264058,AAA Batteries (4-pack),2,2.99,2019-10-19 11:11:00,789 8th St, San Francisco,CA,94016 +264059,AAA Batteries (4-pack),1,2.99,2019-10-28 19:43:00,505 4th St, Seattle,WA,98101 +264060,Lightning Charging Cable,1,14.95,2019-10-08 05:22:00,848 Lake St, Los Angeles,CA,90001 +264061,USB-C Charging Cable,1,11.95,2019-10-14 12:52:00,38 7th St, Boston,MA,02215 +264061,Lightning Charging Cable,2,14.95,2019-10-14 12:52:00,38 7th St, Boston,MA,02215 +264062,Bose SoundSport Headphones,1,99.99,2019-10-24 19:47:00,854 Washington St, Los Angeles,CA,90001 +264063,Flatscreen TV,1,300.0,2019-10-26 14:22:00,709 Lake St, Los Angeles,CA,90001 +264064,USB-C Charging Cable,1,11.95,2019-10-08 10:25:00,856 Jefferson St, Portland,OR,97035 +264065,Wired Headphones,1,11.99,2019-10-16 21:36:00,687 9th St, San Francisco,CA,94016 +264066,Lightning Charging Cable,1,14.95,2019-10-24 12:11:00,107 Wilson St, Boston,MA,02215 +264067,AA Batteries (4-pack),1,3.84,2019-10-02 13:20:00,356 Maple St, Los Angeles,CA,90001 +264068,27in FHD Monitor,1,149.99,2019-10-06 19:28:00,142 South St, New York City,NY,10001 +264069,Lightning Charging Cable,1,14.95,2019-10-07 07:45:00,868 Jefferson St, Austin,TX,73301 +264070,Flatscreen TV,1,300.0,2019-10-08 08:04:00,213 South St, Boston,MA,02215 +264071,Bose SoundSport Headphones,1,99.99,2019-10-08 20:35:00,673 Cedar St, Los Angeles,CA,90001 +264072,Google Phone,1,600.0,2019-10-15 19:23:00,176 Lincoln St, Boston,MA,02215 +264072,Wired Headphones,1,11.99,2019-10-15 19:23:00,176 Lincoln St, Boston,MA,02215 +264073,USB-C Charging Cable,1,11.95,2019-10-11 16:43:00,256 12th St, Boston,MA,02215 +264074,Lightning Charging Cable,1,14.95,2019-10-13 06:36:00,644 West St, Portland,OR,97035 +264075,Wired Headphones,1,11.99,2019-10-10 11:55:00,943 13th St, Portland,OR,97035 +264076,AAA Batteries (4-pack),1,2.99,2019-10-08 11:46:00,505 1st St, Boston,MA,02215 +264077,Lightning Charging Cable,1,14.95,2019-10-03 19:51:00,673 Highland St, Seattle,WA,98101 +264078,AA Batteries (4-pack),1,3.84,2019-10-23 12:41:00,498 Madison St, Atlanta,GA,30301 +264079,27in 4K Gaming Monitor,1,389.99,2019-10-01 23:18:00,759 Highland St, New York City,NY,10001 +264080,20in Monitor,1,109.99,2019-10-07 15:38:00,96 Forest St, Los Angeles,CA,90001 +264081,iPhone,1,700.0,2019-10-26 11:00:00,162 13th St, Los Angeles,CA,90001 +264082,Lightning Charging Cable,1,14.95,2019-10-21 10:05:00,6 Forest St, Atlanta,GA,30301 +264083,Lightning Charging Cable,1,14.95,2019-10-17 14:09:00,37 Sunset St, Portland,ME,04101 +264084,27in 4K Gaming Monitor,1,389.99,2019-10-10 00:35:00,676 Hill St, Seattle,WA,98101 +264085,34in Ultrawide Monitor,1,379.99,2019-10-01 18:19:00,242 Hickory St, New York City,NY,10001 +264086,Google Phone,1,600.0,2019-10-19 19:06:00,807 Johnson St, Los Angeles,CA,90001 +264087,Wired Headphones,1,11.99,2019-10-25 16:54:00,233 9th St, Boston,MA,02215 +264088,Wired Headphones,1,11.99,2019-10-15 10:04:00,444 Church St, Boston,MA,02215 +264089,Apple Airpods Headphones,1,150.0,2019-10-20 18:33:00,602 9th St, Boston,MA,02215 +264090,Vareebadd Phone,1,400.0,2019-10-02 21:16:00,971 Washington St, Seattle,WA,98101 +264090,USB-C Charging Cable,1,11.95,2019-10-02 21:16:00,971 Washington St, Seattle,WA,98101 +264091,AA Batteries (4-pack),1,3.84,2019-10-11 12:45:00,527 2nd St, San Francisco,CA,94016 +264092,Macbook Pro Laptop,1,1700.0,2019-10-11 08:50:00,85 Cedar St, San Francisco,CA,94016 +264093,AA Batteries (4-pack),1,3.84,2019-10-30 11:29:00,779 Jefferson St, New York City,NY,10001 +264094,Macbook Pro Laptop,1,1700.0,2019-10-01 17:52:00,557 Johnson St, Los Angeles,CA,90001 +264095,ThinkPad Laptop,1,999.99,2019-10-05 17:36:00,195 Adams St, Atlanta,GA,30301 +264096,USB-C Charging Cable,1,11.95,2019-10-17 17:35:00,338 13th St, San Francisco,CA,94016 +264097,27in FHD Monitor,1,149.99,2019-10-25 00:56:00,148 Jackson St, Los Angeles,CA,90001 +264098,Lightning Charging Cable,1,14.95,2019-10-26 11:08:00,490 Lincoln St, Dallas,TX,75001 +264099,Vareebadd Phone,1,400.0,2019-10-17 08:54:00,217 4th St, Dallas,TX,75001 +264100,Macbook Pro Laptop,1,1700.0,2019-10-14 21:58:00,493 Maple St, Los Angeles,CA,90001 +264101,Wired Headphones,2,11.99,2019-10-31 21:14:00,623 River St, San Francisco,CA,94016 +264102,Apple Airpods Headphones,1,150.0,2019-10-09 18:47:00,616 Washington St, New York City,NY,10001 +264103,AA Batteries (4-pack),1,3.84,2019-10-19 13:04:00,682 Johnson St, San Francisco,CA,94016 +264104,Wired Headphones,1,11.99,2019-10-22 13:41:00,572 5th St, Portland,ME,04101 +264105,Wired Headphones,1,11.99,2019-10-14 17:06:00,334 West St, Austin,TX,73301 +264106,AA Batteries (4-pack),1,3.84,2019-10-05 10:51:00,594 Johnson St, San Francisco,CA,94016 +264107,Google Phone,1,600.0,2019-10-04 14:25:00,299 Hickory St, New York City,NY,10001 +264108,Lightning Charging Cable,1,14.95,2019-10-04 07:32:00,33 Lake St, Austin,TX,73301 +264109,Lightning Charging Cable,1,14.95,2019-10-26 17:46:00,896 Wilson St, Boston,MA,02215 +264110,Bose SoundSport Headphones,1,99.99,2019-10-16 18:53:00,679 Main St, Seattle,WA,98101 +264111,Lightning Charging Cable,1,14.95,2019-10-26 09:38:00,431 6th St, San Francisco,CA,94016 +264112,Lightning Charging Cable,1,14.95,2019-10-14 23:00:00,355 1st St, San Francisco,CA,94016 +264113,Bose SoundSport Headphones,1,99.99,2019-10-28 17:42:00,995 Cherry St, Boston,MA,02215 +264114,Vareebadd Phone,1,400.0,2019-10-04 13:35:00,595 Dogwood St, New York City,NY,10001 +264114,Bose SoundSport Headphones,1,99.99,2019-10-04 13:35:00,595 Dogwood St, New York City,NY,10001 +264115,27in FHD Monitor,1,149.99,2019-10-22 14:27:00,878 Adams St, New York City,NY,10001 +264116,USB-C Charging Cable,1,11.95,2019-10-20 03:08:00,456 Main St, San Francisco,CA,94016 +264117,Wired Headphones,1,11.99,2019-10-25 18:14:00,368 Willow St, Los Angeles,CA,90001 +264118,Lightning Charging Cable,1,14.95,2019-10-14 08:45:00,15 Walnut St, Los Angeles,CA,90001 +264119,Lightning Charging Cable,1,14.95,2019-10-21 09:39:00,919 Park St, San Francisco,CA,94016 +264120,USB-C Charging Cable,1,11.95,2019-10-07 21:15:00,95 Church St, Boston,MA,02215 +264121,Lightning Charging Cable,1,14.95,2019-10-03 11:46:00,906 North St, Los Angeles,CA,90001 +264122,Apple Airpods Headphones,1,150.0,2019-10-18 18:14:00,702 7th St, San Francisco,CA,94016 +264123,Lightning Charging Cable,1,14.95,2019-10-29 09:50:00,711 Willow St, Boston,MA,02215 +264124,Bose SoundSport Headphones,1,99.99,2019-10-01 20:21:00,99 Wilson St, San Francisco,CA,94016 +264125,AAA Batteries (4-pack),1,2.99,2019-10-16 15:55:00,715 Jackson St, Portland,OR,97035 +264126,Lightning Charging Cable,1,14.95,2019-10-10 08:09:00,42 Jefferson St, Seattle,WA,98101 +264127,AA Batteries (4-pack),2,3.84,2019-10-28 18:36:00,515 River St, Portland,OR,97035 +264128,Lightning Charging Cable,1,14.95,2019-10-16 09:50:00,562 Meadow St, New York City,NY,10001 +264129,USB-C Charging Cable,1,11.95,2019-10-19 15:20:00,844 Highland St, San Francisco,CA,94016 +264130,AA Batteries (4-pack),1,3.84,2019-10-15 12:28:00,153 Meadow St, Portland,ME,04101 +264131,Apple Airpods Headphones,1,150.0,2019-10-09 10:48:00,256 Spruce St, Dallas,TX,75001 +264132,AAA Batteries (4-pack),2,2.99,2019-10-06 07:43:00,663 Maple St, San Francisco,CA,94016 +264133,Wired Headphones,1,11.99,2019-10-26 18:48:00,910 Walnut St, San Francisco,CA,94016 +264134,34in Ultrawide Monitor,1,379.99,2019-10-10 11:44:00,979 Park St, Dallas,TX,75001 +264135,AA Batteries (4-pack),2,3.84,2019-10-18 20:20:00,353 Walnut St, Los Angeles,CA,90001 +264136,Macbook Pro Laptop,1,1700.0,2019-10-03 13:32:00,312 Elm St, San Francisco,CA,94016 +264137,Lightning Charging Cable,1,14.95,2019-10-06 22:33:00,69 Spruce St, Atlanta,GA,30301 +264138,USB-C Charging Cable,1,11.95,2019-10-22 11:44:00,468 Elm St, Dallas,TX,75001 +264139,AA Batteries (4-pack),2,3.84,2019-10-26 11:14:00,317 Hickory St, San Francisco,CA,94016 +264140,AA Batteries (4-pack),1,3.84,2019-10-18 22:12:00,861 Elm St, Atlanta,GA,30301 +264141,Bose SoundSport Headphones,1,99.99,2019-10-31 10:56:00,580 14th St, Boston,MA,02215 +264142,Apple Airpods Headphones,1,150.0,2019-10-01 14:15:00,783 11th St, San Francisco,CA,94016 +264143,AAA Batteries (4-pack),1,2.99,2019-10-25 15:28:00,782 4th St, Boston,MA,02215 +264144,34in Ultrawide Monitor,1,379.99,2019-10-14 19:05:00,815 River St, New York City,NY,10001 +264145,Lightning Charging Cable,1,14.95,2019-10-12 21:22:00,560 Center St, Boston,MA,02215 +264146,ThinkPad Laptop,1,999.99,2019-10-17 11:10:00,601 Park St, Boston,MA,02215 +264147,Lightning Charging Cable,1,14.95,2019-10-29 09:20:00,288 Maple St, San Francisco,CA,94016 +264148,34in Ultrawide Monitor,1,379.99,2019-10-29 17:34:00,869 Hickory St, Boston,MA,02215 +264149,Lightning Charging Cable,1,14.95,2019-10-25 12:13:00,896 Adams St, San Francisco,CA,94016 +264150,Wired Headphones,1,11.99,2019-10-11 16:37:00,210 4th St, Atlanta,GA,30301 +264151,Google Phone,1,600.0,2019-10-04 16:53:00,447 Forest St, San Francisco,CA,94016 +264152,Lightning Charging Cable,1,14.95,2019-10-12 00:37:00,196 Willow St, Dallas,TX,75001 +264153,Wired Headphones,1,11.99,2019-10-19 09:16:00,943 Maple St, San Francisco,CA,94016 +264154,Lightning Charging Cable,1,14.95,2019-10-26 16:08:00,683 Sunset St, Dallas,TX,75001 +264155,27in FHD Monitor,1,149.99,2019-10-30 18:59:00,230 Hickory St, Los Angeles,CA,90001 +264156,USB-C Charging Cable,1,11.95,2019-10-15 19:29:00,471 Wilson St, Atlanta,GA,30301 +264157,27in FHD Monitor,1,149.99,2019-10-25 18:27:00,505 River St, Los Angeles,CA,90001 +264158,Apple Airpods Headphones,1,150.0,2019-10-30 18:26:00,647 1st St, San Francisco,CA,94016 +264159,USB-C Charging Cable,1,11.95,2019-10-12 13:42:00,905 Highland St, Seattle,WA,98101 +264160,Wired Headphones,1,11.99,2019-10-10 12:38:00,594 6th St, San Francisco,CA,94016 +264161,AAA Batteries (4-pack),1,2.99,2019-10-18 09:34:00,359 10th St, Los Angeles,CA,90001 +264162,USB-C Charging Cable,1,11.95,2019-10-14 23:40:00,783 Johnson St, Los Angeles,CA,90001 +264163,Apple Airpods Headphones,1,150.0,2019-10-25 08:59:00,648 Madison St, Dallas,TX,75001 +264164,Wired Headphones,1,11.99,2019-10-02 10:57:00,282 Wilson St, Los Angeles,CA,90001 +264164,Lightning Charging Cable,1,14.95,2019-10-02 10:57:00,282 Wilson St, Los Angeles,CA,90001 +264165,27in FHD Monitor,1,149.99,2019-10-26 08:14:00,326 7th St, Austin,TX,73301 +264165,20in Monitor,1,109.99,2019-10-26 08:14:00,326 7th St, Austin,TX,73301 +264166,Apple Airpods Headphones,1,150.0,2019-10-20 12:18:00,734 Jackson St, San Francisco,CA,94016 +264167,USB-C Charging Cable,2,11.95,2019-10-14 16:10:00,504 8th St, Los Angeles,CA,90001 +264168,27in FHD Monitor,1,149.99,2019-10-17 18:53:00,611 11th St, Dallas,TX,75001 +264169,AA Batteries (4-pack),1,3.84,2019-10-02 10:50:00,126 4th St, San Francisco,CA,94016 +264170,Lightning Charging Cable,1,14.95,2019-10-13 14:24:00,448 12th St, San Francisco,CA,94016 +264171,Vareebadd Phone,1,400.0,2019-10-15 22:11:00,815 North St, Dallas,TX,75001 +264171,USB-C Charging Cable,1,11.95,2019-10-15 22:11:00,815 North St, Dallas,TX,75001 +264172,Apple Airpods Headphones,1,150.0,2019-10-29 23:24:00,515 Elm St, Los Angeles,CA,90001 +264173,Lightning Charging Cable,1,14.95,2019-10-09 22:20:00,327 4th St, San Francisco,CA,94016 +264174,27in FHD Monitor,1,149.99,2019-10-22 13:11:00,248 Meadow St, Dallas,TX,75001 +264175,Wired Headphones,1,11.99,2019-10-21 16:08:00,570 Adams St, New York City,NY,10001 +264176,AA Batteries (4-pack),2,3.84,2019-10-31 17:57:00,98 Madison St, Seattle,WA,98101 +264177,ThinkPad Laptop,1,999.99,2019-10-27 15:30:00,476 River St, San Francisco,CA,94016 +264178,Google Phone,1,600.0,2019-10-18 17:54:00,483 Church St, Dallas,TX,75001 +264179,AA Batteries (4-pack),1,3.84,2019-10-18 04:14:00,259 Park St, Dallas,TX,75001 +264180,27in 4K Gaming Monitor,1,389.99,2019-10-31 19:51:00,815 Washington St, Atlanta,GA,30301 +264181,Lightning Charging Cable,1,14.95,2019-10-02 11:53:00,209 5th St, Austin,TX,73301 +264182,Lightning Charging Cable,1,14.95,2019-10-18 19:39:00,321 5th St, Los Angeles,CA,90001 +264183,27in FHD Monitor,1,149.99,2019-10-27 11:19:00,247 8th St, Atlanta,GA,30301 +264184,Macbook Pro Laptop,1,1700.0,2019-10-25 22:12:00,117 2nd St, San Francisco,CA,94016 +264185,Lightning Charging Cable,1,14.95,2019-10-12 22:26:00,396 Jefferson St, Los Angeles,CA,90001 +264186,Apple Airpods Headphones,1,150.0,2019-10-29 13:09:00,667 Highland St, Atlanta,GA,30301 +264187,USB-C Charging Cable,1,11.95,2019-10-30 13:24:00,972 Lincoln St, Dallas,TX,75001 +264188,Apple Airpods Headphones,1,150.0,2019-10-19 23:43:00,74 North St, New York City,NY,10001 +264189,AA Batteries (4-pack),1,3.84,2019-10-19 08:15:00,54 Washington St, San Francisco,CA,94016 +264190,Wired Headphones,1,11.99,2019-10-21 15:08:00,780 1st St, Atlanta,GA,30301 +264191,ThinkPad Laptop,1,999.99,2019-10-10 09:38:00,833 Johnson St, New York City,NY,10001 +264192,iPhone,1,700.0,2019-10-21 20:50:00,637 Dogwood St, San Francisco,CA,94016 +264193,AAA Batteries (4-pack),1,2.99,2019-10-16 19:23:00,196 Spruce St, San Francisco,CA,94016 +264194,Lightning Charging Cable,1,14.95,2019-10-21 22:08:00,818 6th St, San Francisco,CA,94016 +264195,USB-C Charging Cable,1,11.95,2019-10-13 00:37:00,698 4th St, Los Angeles,CA,90001 +264196,Lightning Charging Cable,1,14.95,2019-10-15 11:51:00,321 Dogwood St, Portland,OR,97035 +264197,Wired Headphones,1,11.99,2019-10-07 07:30:00,788 Ridge St, Portland,OR,97035 +264198,Flatscreen TV,1,300.0,2019-10-23 17:58:00,889 5th St, Los Angeles,CA,90001 +264199,AA Batteries (4-pack),3,3.84,2019-10-03 20:18:00,582 5th St, San Francisco,CA,94016 +264200,iPhone,1,700.0,2019-10-31 19:08:00,314 Chestnut St, Dallas,TX,75001 +264200,Lightning Charging Cable,1,14.95,2019-10-31 19:08:00,314 Chestnut St, Dallas,TX,75001 +264201,AAA Batteries (4-pack),1,2.99,2019-10-15 21:16:00,754 Main St, Dallas,TX,75001 +264202,Apple Airpods Headphones,1,150.0,2019-10-08 15:58:00,988 Lincoln St, Los Angeles,CA,90001 +264203,AAA Batteries (4-pack),1,2.99,2019-10-10 22:22:00,231 5th St, Austin,TX,73301 +264204,AA Batteries (4-pack),2,3.84,2019-10-20 15:32:00,553 8th St, Boston,MA,02215 +264205,Wired Headphones,1,11.99,2019-10-31 05:50:00,95 West St, Seattle,WA,98101 +264206,Lightning Charging Cable,1,14.95,2019-10-02 15:03:00,416 Cedar St, Portland,OR,97035 +264206,27in FHD Monitor,1,149.99,2019-10-02 15:03:00,416 Cedar St, Portland,OR,97035 +264207,LG Washing Machine,1,600.0,2019-10-25 15:51:00,875 Pine St, Seattle,WA,98101 +264208,USB-C Charging Cable,1,11.95,2019-10-28 20:04:00,678 Jackson St, San Francisco,CA,94016 +264209,AA Batteries (4-pack),2,3.84,2019-10-15 19:08:00,721 Wilson St, Seattle,WA,98101 +264210,AA Batteries (4-pack),1,3.84,2019-10-20 18:56:00,355 Church St, Los Angeles,CA,90001 +264211,AAA Batteries (4-pack),2,2.99,2019-10-15 15:03:00,228 Wilson St, San Francisco,CA,94016 +264212,USB-C Charging Cable,2,11.95,2019-10-23 21:30:00,726 6th St, Boston,MA,02215 +264213,USB-C Charging Cable,1,11.95,2019-10-24 00:21:00,926 Forest St, New York City,NY,10001 +264214,Lightning Charging Cable,1,14.95,2019-10-05 09:03:00,335 Jefferson St, Boston,MA,02215 +264215,Lightning Charging Cable,1,14.95,2019-10-12 23:25:00,79 Sunset St, San Francisco,CA,94016 +264216,AAA Batteries (4-pack),2,2.99,2019-10-03 16:56:00,948 Lincoln St, Los Angeles,CA,90001 +264217,Flatscreen TV,1,300.0,2019-10-10 06:22:00,1 Meadow St, Boston,MA,02215 +264218,Bose SoundSport Headphones,1,99.99,2019-10-15 11:35:00,430 Pine St, Boston,MA,02215 +264219,Lightning Charging Cable,1,14.95,2019-10-03 12:20:00,197 14th St, Seattle,WA,98101 +264220,Apple Airpods Headphones,1,150.0,2019-10-22 15:04:00,612 7th St, San Francisco,CA,94016 +264221,AA Batteries (4-pack),1,3.84,2019-10-21 11:11:00,583 10th St, Boston,MA,02215 +264222,27in FHD Monitor,1,149.99,2019-10-20 22:17:00,861 Maple St, San Francisco,CA,94016 +264223,USB-C Charging Cable,1,11.95,2019-10-02 22:40:00,300 Jackson St, San Francisco,CA,94016 +264224,USB-C Charging Cable,1,11.95,2019-10-20 12:57:00,343 2nd St, San Francisco,CA,94016 +264225,Wired Headphones,1,11.99,2019-10-06 12:33:00,381 Forest St, Los Angeles,CA,90001 +264226,Lightning Charging Cable,1,14.95,2019-10-22 15:30:00,973 4th St, Boston,MA,02215 +264227,Apple Airpods Headphones,1,150.0,2019-10-07 12:51:00,769 Highland St, Boston,MA,02215 +264228,AAA Batteries (4-pack),1,2.99,2019-10-24 20:24:00,602 10th St, San Francisco,CA,94016 +264229,USB-C Charging Cable,2,11.95,2019-10-21 15:43:00,136 South St, Portland,ME,04101 +264230,USB-C Charging Cable,2,11.95,2019-10-24 12:06:00,136 Center St, Dallas,TX,75001 +264231,iPhone,1,700.0,2019-10-25 22:57:00,835 Washington St, San Francisco,CA,94016 +264231,Apple Airpods Headphones,1,150.0,2019-10-25 22:57:00,835 Washington St, San Francisco,CA,94016 +264232,USB-C Charging Cable,1,11.95,2019-10-18 17:50:00,747 Highland St, San Francisco,CA,94016 +264233,Lightning Charging Cable,1,14.95,2019-10-14 09:17:00,624 Ridge St, Boston,MA,02215 +264234,Wired Headphones,1,11.99,2019-10-30 18:19:00,579 Madison St, San Francisco,CA,94016 +264235,Lightning Charging Cable,1,14.95,2019-10-04 10:24:00,351 9th St, Portland,OR,97035 +264236,AAA Batteries (4-pack),1,2.99,2019-10-14 12:08:00,907 6th St, San Francisco,CA,94016 +264237,Apple Airpods Headphones,1,150.0,2019-10-14 21:22:00,537 Highland St, San Francisco,CA,94016 +264238,Lightning Charging Cable,1,14.95,2019-10-16 20:14:00,347 Park St, New York City,NY,10001 +264239,AA Batteries (4-pack),1,3.84,2019-10-26 08:09:00,282 Sunset St, San Francisco,CA,94016 +264240,USB-C Charging Cable,1,11.95,2019-10-08 09:10:00,967 West St, New York City,NY,10001 +264241,34in Ultrawide Monitor,1,379.99,2019-10-23 15:16:00,992 11th St, Portland,OR,97035 +264242,USB-C Charging Cable,1,11.95,2019-10-20 07:51:00,951 Park St, Austin,TX,73301 +264243,Apple Airpods Headphones,1,150.0,2019-10-03 10:43:00,251 Center St, San Francisco,CA,94016 +264244,AAA Batteries (4-pack),2,2.99,2019-10-15 20:34:00,100 12th St, New York City,NY,10001 +264245,Apple Airpods Headphones,1,150.0,2019-10-01 22:04:00,616 6th St, Seattle,WA,98101 +264246,iPhone,1,700.0,2019-10-10 07:28:00,979 Maple St, San Francisco,CA,94016 +264247,USB-C Charging Cable,1,11.95,2019-10-21 15:55:00,949 Maple St, Atlanta,GA,30301 +264248,AA Batteries (4-pack),1,3.84,2019-10-25 21:57:00,255 River St, Los Angeles,CA,90001 +264249,AA Batteries (4-pack),1,3.84,2019-10-15 15:57:00,659 Main St, Portland,OR,97035 +264250,Bose SoundSport Headphones,1,99.99,2019-10-30 20:55:00,896 Lincoln St, Seattle,WA,98101 +264251,AA Batteries (4-pack),3,3.84,2019-10-07 17:43:00,800 Church St, San Francisco,CA,94016 +264252,AAA Batteries (4-pack),1,2.99,2019-10-14 09:29:00,540 Highland St, New York City,NY,10001 +264253,Flatscreen TV,1,300.0,2019-10-28 13:49:00,635 Lake St, San Francisco,CA,94016 +264254,iPhone,1,700.0,2019-10-20 14:28:00,774 Jefferson St, Atlanta,GA,30301 +264254,Flatscreen TV,1,300.0,2019-10-20 14:28:00,774 Jefferson St, Atlanta,GA,30301 +264255,Apple Airpods Headphones,1,150.0,2019-10-21 12:07:00,43 8th St, Boston,MA,02215 +264256,Bose SoundSport Headphones,1,99.99,2019-10-14 17:13:00,514 West St, Los Angeles,CA,90001 +264257,USB-C Charging Cable,1,11.95,2019-10-10 21:07:00,57 Cedar St, Boston,MA,02215 +264258,ThinkPad Laptop,1,999.99,2019-10-22 15:16:00,142 Hill St, San Francisco,CA,94016 +264259,Lightning Charging Cable,1,14.95,2019-10-02 16:03:00,343 Madison St, Boston,MA,02215 +264260,27in 4K Gaming Monitor,1,389.99,2019-10-04 15:56:00,13 Meadow St, Atlanta,GA,30301 +264261,USB-C Charging Cable,1,11.95,2019-10-18 19:01:00,678 Johnson St, New York City,NY,10001 +264262,34in Ultrawide Monitor,1,379.99,2019-10-01 19:27:00,637 7th St, Atlanta,GA,30301 +264263,USB-C Charging Cable,1,11.95,2019-10-16 19:18:00,899 Lincoln St, Dallas,TX,75001 +264264,27in FHD Monitor,1,149.99,2019-10-31 12:50:00,694 12th St, Los Angeles,CA,90001 +264265,Wired Headphones,1,11.99,2019-10-14 15:05:00,572 5th St, Los Angeles,CA,90001 +264266,Lightning Charging Cable,1,14.95,2019-10-06 18:52:00,316 Washington St, New York City,NY,10001 +264267,Lightning Charging Cable,1,14.95,2019-10-04 11:18:00,729 Hickory St, Boston,MA,02215 +264268,Flatscreen TV,1,300.0,2019-10-26 08:26:00,707 Adams St, Los Angeles,CA,90001 +264269,AA Batteries (4-pack),2,3.84,2019-10-13 18:13:00,475 South St, Seattle,WA,98101 +264270,AA Batteries (4-pack),1,3.84,2019-10-12 13:15:00,387 Center St, San Francisco,CA,94016 +264271,Apple Airpods Headphones,1,150.0,2019-10-07 07:25:00,767 Sunset St, Dallas,TX,75001 +264272,AAA Batteries (4-pack),2,2.99,2019-10-23 13:47:00,8 9th St, Dallas,TX,75001 +264273,USB-C Charging Cable,1,11.95,2019-10-19 07:15:00,120 1st St, San Francisco,CA,94016 +264274,Bose SoundSport Headphones,1,99.99,2019-10-27 16:41:00,62 5th St, Dallas,TX,75001 +264275,20in Monitor,1,109.99,2019-10-11 12:21:00,537 11th St, San Francisco,CA,94016 +264275,Bose SoundSport Headphones,1,99.99,2019-10-11 12:21:00,537 11th St, San Francisco,CA,94016 +264276,Apple Airpods Headphones,1,150.0,2019-10-12 17:01:00,606 Maple St, San Francisco,CA,94016 +264277,AA Batteries (4-pack),1,3.84,2019-10-07 08:53:00,356 Main St, Dallas,TX,75001 +264278,AA Batteries (4-pack),1,3.84,2019-10-02 15:21:00,476 Ridge St, San Francisco,CA,94016 +264279,34in Ultrawide Monitor,1,379.99,2019-10-18 23:38:00,758 Chestnut St, Los Angeles,CA,90001 +264280,AAA Batteries (4-pack),2,2.99,2019-10-08 12:40:00,240 8th St, Boston,MA,02215 +264281,Lightning Charging Cable,1,14.95,2019-10-19 13:32:00,31 Hickory St, Boston,MA,02215 +264282,iPhone,1,700.0,2019-10-07 13:26:00,88 South St, Austin,TX,73301 +264283,20in Monitor,1,109.99,2019-10-25 16:12:00,186 Jefferson St, Los Angeles,CA,90001 +264284,34in Ultrawide Monitor,1,379.99,2019-10-25 08:08:00,938 1st St, Portland,ME,04101 +264285,USB-C Charging Cable,1,11.95,2019-10-03 12:45:00,17 Hill St, Atlanta,GA,30301 +264286,AA Batteries (4-pack),1,3.84,2019-10-13 22:50:00,921 Forest St, Los Angeles,CA,90001 +264287,Apple Airpods Headphones,1,150.0,2019-10-02 22:29:00,331 Main St, Austin,TX,73301 +264288,Wired Headphones,1,11.99,2019-10-20 01:04:00,847 Park St, San Francisco,CA,94016 +264289,USB-C Charging Cable,1,11.95,2019-10-24 19:21:00,408 7th St, New York City,NY,10001 +264290,Bose SoundSport Headphones,1,99.99,2019-10-03 14:37:00,886 North St, San Francisco,CA,94016 +264291,Flatscreen TV,1,300.0,2019-10-17 08:38:00,341 11th St, Los Angeles,CA,90001 +264292,Wired Headphones,1,11.99,2019-10-21 17:56:00,766 Maple St, San Francisco,CA,94016 +264293,Google Phone,1,600.0,2019-10-24 11:27:00,749 11th St, Boston,MA,02215 +264294,Apple Airpods Headphones,1,150.0,2019-10-28 09:21:00,455 North St, Seattle,WA,98101 +264295,Lightning Charging Cable,1,14.95,2019-10-30 11:52:00,29 Pine St, Los Angeles,CA,90001 +264296,iPhone,1,700.0,2019-10-18 22:43:00,825 Church St, San Francisco,CA,94016 +264297,Apple Airpods Headphones,1,150.0,2019-10-03 16:34:00,222 Johnson St, New York City,NY,10001 +264298,LG Washing Machine,1,600.0,2019-10-08 15:29:00,850 10th St, Seattle,WA,98101 +264299,USB-C Charging Cable,1,11.95,2019-10-26 23:39:00,602 South St, New York City,NY,10001 +264300,Apple Airpods Headphones,1,150.0,2019-10-05 12:52:00,415 Madison St, Los Angeles,CA,90001 +264301,AA Batteries (4-pack),1,3.84,2019-10-09 13:51:00,962 Lakeview St, New York City,NY,10001 +264301,Google Phone,1,600.0,2019-10-09 13:51:00,962 Lakeview St, New York City,NY,10001 +264302,20in Monitor,1,109.99,2019-10-10 15:52:00,958 Lincoln St, New York City,NY,10001 +264303,Wired Headphones,1,11.99,2019-10-02 17:40:00,934 12th St, Los Angeles,CA,90001 +264304,AA Batteries (4-pack),1,3.84,2019-10-05 08:31:00,637 Park St, Los Angeles,CA,90001 +264305,Lightning Charging Cable,1,14.95,2019-10-19 06:11:00,354 Maple St, San Francisco,CA,94016 +264306,Lightning Charging Cable,1,14.95,2019-10-14 16:14:00,317 Park St, San Francisco,CA,94016 +264307,34in Ultrawide Monitor,1,379.99,2019-10-24 19:49:00,234 Hill St, New York City,NY,10001 +264308,27in 4K Gaming Monitor,1,389.99,2019-10-08 16:04:00,988 10th St, Seattle,WA,98101 +264309,Apple Airpods Headphones,1,150.0,2019-10-12 17:35:00,799 14th St, Los Angeles,CA,90001 +264310,Apple Airpods Headphones,1,150.0,2019-10-31 22:31:00,595 Madison St, Seattle,WA,98101 +264311,Apple Airpods Headphones,1,150.0,2019-10-05 15:11:00,661 4th St, San Francisco,CA,94016 +264312,Wired Headphones,1,11.99,2019-10-20 20:51:00,344 5th St, Boston,MA,02215 +264312,Macbook Pro Laptop,1,1700.0,2019-10-20 20:51:00,344 5th St, Boston,MA,02215 +264313,20in Monitor,1,109.99,2019-10-18 20:01:00,345 Highland St, New York City,NY,10001 +264314,AA Batteries (4-pack),1,3.84,2019-10-03 15:30:00,700 Ridge St, Atlanta,GA,30301 +264315,AA Batteries (4-pack),1,3.84,2019-10-28 11:30:00,954 Hickory St, New York City,NY,10001 +264316,AAA Batteries (4-pack),2,2.99,2019-10-23 16:54:00,829 12th St, Boston,MA,02215 +264317,27in 4K Gaming Monitor,1,389.99,2019-10-10 12:28:00,647 10th St, Atlanta,GA,30301 +264318,USB-C Charging Cable,1,11.95,2019-10-17 11:21:00,719 Church St, Portland,ME,04101 +264319,Wired Headphones,1,11.99,2019-10-21 21:37:00,498 Center St, San Francisco,CA,94016 +264320,34in Ultrawide Monitor,1,379.99,2019-10-17 14:24:00,464 West St, New York City,NY,10001 +264321,Vareebadd Phone,1,400.0,2019-10-31 23:13:00,436 Cedar St, New York City,NY,10001 +264322,Bose SoundSport Headphones,1,99.99,2019-10-19 11:49:00,595 Wilson St, Seattle,WA,98101 +264323,Apple Airpods Headphones,1,150.0,2019-10-11 12:58:00,844 Pine St, Los Angeles,CA,90001 +264324,Apple Airpods Headphones,1,150.0,2019-10-19 15:08:00,834 6th St, Atlanta,GA,30301 +264325,Wired Headphones,2,11.99,2019-10-17 19:26:00,416 2nd St, New York City,NY,10001 +264326,Apple Airpods Headphones,1,150.0,2019-10-22 19:32:00,456 9th St, San Francisco,CA,94016 +264327,Bose SoundSport Headphones,1,99.99,2019-10-07 19:13:00,142 Park St, San Francisco,CA,94016 +264328,Bose SoundSport Headphones,1,99.99,2019-10-20 12:47:00,113 Lake St, Seattle,WA,98101 +264329,LG Washing Machine,1,600.0,2019-10-13 20:09:00,34 13th St, San Francisco,CA,94016 +264330,Macbook Pro Laptop,1,1700.0,2019-10-07 10:44:00,597 Lincoln St, Atlanta,GA,30301 +264331,AA Batteries (4-pack),1,3.84,2019-10-12 21:06:00,955 Madison St, New York City,NY,10001 +264332,27in FHD Monitor,1,149.99,2019-10-24 11:35:00,24 4th St, Atlanta,GA,30301 +264333,34in Ultrawide Monitor,1,379.99,2019-10-23 15:12:00,576 Lincoln St, Austin,TX,73301 +264334,USB-C Charging Cable,1,11.95,2019-10-21 17:22:00,381 4th St, Atlanta,GA,30301 +264335,Apple Airpods Headphones,1,150.0,2019-10-31 03:58:00,256 Willow St, Portland,OR,97035 +264336,USB-C Charging Cable,2,11.95,2019-10-11 19:26:00,527 Hickory St, Los Angeles,CA,90001 +264337,USB-C Charging Cable,1,11.95,2019-10-31 18:32:00,260 Johnson St, Portland,OR,97035 +264338,Wired Headphones,1,11.99,2019-10-30 13:14:00,764 Lakeview St, San Francisco,CA,94016 +264339,Wired Headphones,1,11.99,2019-10-29 21:38:00,169 Wilson St, Dallas,TX,75001 +264340,Lightning Charging Cable,1,14.95,2019-10-28 20:18:00,702 Lincoln St, Boston,MA,02215 +264341,Apple Airpods Headphones,1,150.0,2019-10-29 16:48:00,997 Center St, San Francisco,CA,94016 +264342,Lightning Charging Cable,1,14.95,2019-10-28 20:45:00,142 Johnson St, San Francisco,CA,94016 +264343,iPhone,1,700.0,2019-10-18 10:57:00,806 Church St, Atlanta,GA,30301 +264344,AA Batteries (4-pack),1,3.84,2019-10-15 21:21:00,310 Jefferson St, Los Angeles,CA,90001 +264345,Wired Headphones,1,11.99,2019-10-15 21:46:00,817 Madison St, Dallas,TX,75001 +264346,AAA Batteries (4-pack),1,2.99,2019-10-11 23:25:00,431 Sunset St, Los Angeles,CA,90001 +264347,Apple Airpods Headphones,1,150.0,2019-10-02 19:24:00,523 Lincoln St, New York City,NY,10001 +264348,Bose SoundSport Headphones,1,99.99,2019-10-21 16:39:00,278 Sunset St, Boston,MA,02215 +264349,AAA Batteries (4-pack),1,2.99,2019-10-14 21:52:00,47 Forest St, San Francisco,CA,94016 +264350,Apple Airpods Headphones,1,150.0,2019-10-28 19:14:00,9 2nd St, San Francisco,CA,94016 +264351,27in FHD Monitor,1,149.99,2019-10-31 22:08:00,689 6th St, Austin,TX,73301 +264352,AA Batteries (4-pack),1,3.84,2019-10-09 14:47:00,520 2nd St, New York City,NY,10001 +264353,Wired Headphones,1,11.99,2019-10-23 16:44:00,448 Church St, Atlanta,GA,30301 +264354,AA Batteries (4-pack),1,3.84,2019-10-09 13:58:00,757 Chestnut St, New York City,NY,10001 +264355,Vareebadd Phone,1,400.0,2019-10-09 19:16:00,640 Church St, Seattle,WA,98101 +264356,AA Batteries (4-pack),1,3.84,2019-10-04 17:45:00,300 9th St, Atlanta,GA,30301 +264357,Lightning Charging Cable,1,14.95,2019-10-22 22:20:00,235 Hickory St, New York City,NY,10001 +264358,AA Batteries (4-pack),1,3.84,2019-10-03 20:22:00,529 Meadow St, New York City,NY,10001 +264359,iPhone,1,700.0,2019-10-05 14:04:00,261 West St, San Francisco,CA,94016 +264360,Macbook Pro Laptop,1,1700.0,2019-10-28 11:13:00,135 Center St, Los Angeles,CA,90001 +264361,USB-C Charging Cable,1,11.95,2019-10-22 04:43:00,870 West St, Boston,MA,02215 +264362,AA Batteries (4-pack),2,3.84,2019-10-18 21:36:00,58 10th St, Austin,TX,73301 +264363,AAA Batteries (4-pack),1,2.99,2019-10-06 11:49:00,13 14th St, Atlanta,GA,30301 +264364,ThinkPad Laptop,1,999.99,2019-10-11 08:03:00,198 Cedar St, Los Angeles,CA,90001 +264365,AAA Batteries (4-pack),2,2.99,2019-10-23 22:07:00,746 1st St, San Francisco,CA,94016 +264366,Lightning Charging Cable,1,14.95,2019-10-07 23:27:00,285 Hill St, Atlanta,GA,30301 +264367,Lightning Charging Cable,1,14.95,2019-10-23 20:49:00,78 Sunset St, Seattle,WA,98101 +264368,Bose SoundSport Headphones,1,99.99,2019-10-08 11:05:00,906 8th St, Boston,MA,02215 +264369,ThinkPad Laptop,1,999.99,2019-10-19 22:52:00,674 7th St, Seattle,WA,98101 +264370,27in FHD Monitor,1,149.99,2019-10-06 15:04:00,880 14th St, Atlanta,GA,30301 +264371,AAA Batteries (4-pack),1,2.99,2019-10-03 23:31:00,989 14th St, Los Angeles,CA,90001 +264372,AA Batteries (4-pack),1,3.84,2019-10-01 13:54:00,60 7th St, San Francisco,CA,94016 +264373,Lightning Charging Cable,1,14.95,2019-10-13 10:46:00,621 Willow St, San Francisco,CA,94016 +264374,Wired Headphones,1,11.99,2019-10-25 14:28:00,789 Spruce St, Portland,OR,97035 +264375,Lightning Charging Cable,1,14.95,2019-10-08 16:04:00,652 1st St, San Francisco,CA,94016 +264376,USB-C Charging Cable,1,11.95,2019-10-18 15:32:00,94 Ridge St, San Francisco,CA,94016 +264377,AAA Batteries (4-pack),1,2.99,2019-10-07 09:26:00,298 Hickory St, New York City,NY,10001 +264378,Wired Headphones,1,11.99,2019-10-29 14:01:00,604 Meadow St, Boston,MA,02215 +264379,AAA Batteries (4-pack),1,2.99,2019-10-04 08:13:00,693 Pine St, New York City,NY,10001 +264380,USB-C Charging Cable,1,11.95,2019-10-22 18:55:00,733 10th St, Portland,OR,97035 +264381,ThinkPad Laptop,1,999.99,2019-10-07 05:41:00,224 5th St, Portland,OR,97035 +264382,27in FHD Monitor,1,149.99,2019-10-22 03:40:00,593 13th St, Boston,MA,02215 +264383,AAA Batteries (4-pack),2,2.99,2019-10-01 20:29:00,904 Madison St, New York City,NY,10001 +264384,Wired Headphones,2,11.99,2019-10-03 11:04:00,579 Hill St, Portland,ME,04101 +264385,27in FHD Monitor,1,149.99,2019-10-20 19:30:00,789 Park St, New York City,NY,10001 +264386,Wired Headphones,1,11.99,2019-10-16 12:21:00,387 Park St, Dallas,TX,75001 +264387,AA Batteries (4-pack),1,3.84,2019-10-04 17:55:00,76 Madison St, San Francisco,CA,94016 +264388,Apple Airpods Headphones,1,150.0,2019-10-25 09:35:00,277 Willow St, Austin,TX,73301 +264389,Flatscreen TV,1,300.0,2019-10-12 15:03:00,535 Hickory St, Seattle,WA,98101 +264390,AAA Batteries (4-pack),1,2.99,2019-10-30 10:02:00,662 Adams St, San Francisco,CA,94016 +264391,Wired Headphones,1,11.99,2019-10-21 17:41:00,997 Jackson St, Los Angeles,CA,90001 +264392,AAA Batteries (4-pack),1,2.99,2019-10-01 15:25:00,326 Jefferson St, Portland,OR,97035 +264393,AAA Batteries (4-pack),1,2.99,2019-10-29 10:05:00,30 Madison St, Los Angeles,CA,90001 +264394,20in Monitor,1,109.99,2019-10-17 16:16:00,837 Center St, Boston,MA,02215 +264395,USB-C Charging Cable,1,11.95,2019-10-21 17:08:00,917 Park St, Los Angeles,CA,90001 +264396,USB-C Charging Cable,1,11.95,2019-10-17 15:12:00,78 Willow St, New York City,NY,10001 +264397,Wired Headphones,1,11.99,2019-10-19 16:03:00,391 Ridge St, Atlanta,GA,30301 +264398,Lightning Charging Cable,2,14.95,2019-10-26 08:56:00,658 Cherry St, Atlanta,GA,30301 +264399,Wired Headphones,1,11.99,2019-10-27 11:46:00,173 Main St, San Francisco,CA,94016 +264400,AAA Batteries (4-pack),1,2.99,2019-10-24 09:55:00,764 Jackson St, Boston,MA,02215 +264401,AAA Batteries (4-pack),2,2.99,2019-10-12 09:51:00,703 Hill St, Los Angeles,CA,90001 +264402,AA Batteries (4-pack),1,3.84,2019-10-24 14:50:00,548 Meadow St, San Francisco,CA,94016 +264403,Apple Airpods Headphones,1,150.0,2019-10-21 18:13:00,67 10th St, Austin,TX,73301 +264404,AA Batteries (4-pack),2,3.84,2019-10-16 11:23:00,543 Jefferson St, New York City,NY,10001 +264405,34in Ultrawide Monitor,1,379.99,2019-10-17 12:03:00,516 Wilson St, New York City,NY,10001 +264406,ThinkPad Laptop,1,999.99,2019-10-15 12:52:00,66 12th St, Los Angeles,CA,90001 +264407,USB-C Charging Cable,1,11.95,2019-11-01 00:34:00,455 Walnut St, Portland,OR,97035 +264408,USB-C Charging Cable,1,11.95,2019-10-05 14:03:00,807 Highland St, Portland,OR,97035 +264409,27in 4K Gaming Monitor,1,389.99,2019-10-02 19:46:00,850 2nd St, San Francisco,CA,94016 +264410,Vareebadd Phone,1,400.0,2019-10-15 14:48:00,88 Cherry St, San Francisco,CA,94016 +264411,Wired Headphones,1,11.99,2019-10-17 17:45:00,667 River St, Austin,TX,73301 +264412,AA Batteries (4-pack),1,3.84,2019-10-22 22:34:00,912 Hickory St, San Francisco,CA,94016 +264413,Wired Headphones,1,11.99,2019-10-29 13:29:00,957 Lincoln St, San Francisco,CA,94016 +264414,AAA Batteries (4-pack),3,2.99,2019-10-09 22:27:00,883 Adams St, Atlanta,GA,30301 +264415,Apple Airpods Headphones,1,150.0,2019-10-19 18:17:00,210 2nd St, New York City,NY,10001 +264416,Google Phone,1,600.0,2019-10-26 18:42:00,361 Ridge St, San Francisco,CA,94016 +264417,AAA Batteries (4-pack),1,2.99,2019-10-19 07:54:00,273 Walnut St, Austin,TX,73301 +264418,Google Phone,1,600.0,2019-10-12 11:54:00,390 Ridge St, New York City,NY,10001 +264419,AA Batteries (4-pack),1,3.84,2019-10-18 11:07:00,964 12th St, Seattle,WA,98101 +264420,Lightning Charging Cable,1,14.95,2019-10-18 15:06:00,889 Sunset St, Seattle,WA,98101 +264421,34in Ultrawide Monitor,1,379.99,2019-10-29 23:59:00,344 Church St, Boston,MA,02215 +264422,AA Batteries (4-pack),3,3.84,2019-10-02 23:07:00,103 Lakeview St, Seattle,WA,98101 +264423,AAA Batteries (4-pack),1,2.99,2019-10-31 18:43:00,763 Main St, New York City,NY,10001 +264424,AA Batteries (4-pack),1,3.84,2019-10-16 15:01:00,758 14th St, San Francisco,CA,94016 +264425,AAA Batteries (4-pack),2,2.99,2019-10-22 10:43:00,134 14th St, Boston,MA,02215 +264426,AAA Batteries (4-pack),2,2.99,2019-10-07 13:47:00,780 11th St, Los Angeles,CA,90001 +264427,AAA Batteries (4-pack),1,2.99,2019-10-29 21:23:00,129 12th St, Portland,OR,97035 +264428,AA Batteries (4-pack),1,3.84,2019-10-15 11:58:00,469 Pine St, Los Angeles,CA,90001 +264429,Lightning Charging Cable,1,14.95,2019-10-09 11:56:00,425 5th St, San Francisco,CA,94016 +264430,AA Batteries (4-pack),1,3.84,2019-10-02 17:36:00,621 5th St, Los Angeles,CA,90001 +264431,Apple Airpods Headphones,1,150.0,2019-10-01 19:25:00,536 North St, New York City,NY,10001 +264432,USB-C Charging Cable,1,11.95,2019-10-23 09:58:00,807 River St, San Francisco,CA,94016 +264433,AA Batteries (4-pack),2,3.84,2019-10-29 23:41:00,652 8th St, San Francisco,CA,94016 +264434,USB-C Charging Cable,1,11.95,2019-10-28 17:38:00,401 Cedar St, Los Angeles,CA,90001 +264435,AAA Batteries (4-pack),1,2.99,2019-10-23 19:10:00,726 Highland St, Atlanta,GA,30301 +264436,Lightning Charging Cable,1,14.95,2019-10-19 19:50:00,87 Lake St, San Francisco,CA,94016 +264437,Flatscreen TV,1,300.0,2019-10-30 14:51:00,671 Wilson St, San Francisco,CA,94016 +264438,Wired Headphones,1,11.99,2019-10-17 21:19:00,122 6th St, Los Angeles,CA,90001 +264439,Lightning Charging Cable,1,14.95,2019-10-21 12:55:00,873 Pine St, San Francisco,CA,94016 +264440,ThinkPad Laptop,1,999.99,2019-10-10 22:25:00,78 Lakeview St, Los Angeles,CA,90001 +264441,Wired Headphones,1,11.99,2019-10-19 14:01:00,683 4th St, Portland,OR,97035 +264442,Vareebadd Phone,1,400.0,2019-10-22 16:45:00,992 6th St, Austin,TX,73301 +264443,Wired Headphones,1,11.99,2019-10-25 14:32:00,843 9th St, San Francisco,CA,94016 +264444,27in 4K Gaming Monitor,1,389.99,2019-10-24 16:44:00,955 7th St, San Francisco,CA,94016 +264445,27in 4K Gaming Monitor,1,389.99,2019-10-14 12:20:00,654 Walnut St, Dallas,TX,75001 +264445,AAA Batteries (4-pack),2,2.99,2019-10-14 12:20:00,654 Walnut St, Dallas,TX,75001 +264446,AAA Batteries (4-pack),2,2.99,2019-10-06 19:40:00,294 Center St, Austin,TX,73301 +264447,ThinkPad Laptop,1,999.99,2019-10-03 17:16:00,967 12th St, Los Angeles,CA,90001 +264448,AA Batteries (4-pack),1,3.84,2019-10-23 14:05:00,106 Dogwood St, New York City,NY,10001 +264449,Lightning Charging Cable,1,14.95,2019-10-27 18:50:00,279 Meadow St, Boston,MA,02215 +264450,AAA Batteries (4-pack),4,2.99,2019-10-19 17:55:00,578 Maple St, Los Angeles,CA,90001 +264451,Apple Airpods Headphones,1,150.0,2019-10-26 12:08:00,311 Sunset St, Atlanta,GA,30301 +264452,AA Batteries (4-pack),2,3.84,2019-10-24 13:05:00,744 13th St, Los Angeles,CA,90001 +264453,USB-C Charging Cable,1,11.95,2019-10-17 14:24:00,9 Walnut St, New York City,NY,10001 +264453,iPhone,1,700.0,2019-10-17 14:24:00,9 Walnut St, New York City,NY,10001 +264454,Macbook Pro Laptop,1,1700.0,2019-10-24 16:22:00,49 Highland St, Los Angeles,CA,90001 +264455,Lightning Charging Cable,1,14.95,2019-10-18 13:38:00,951 Forest St, Boston,MA,02215 +264456,AA Batteries (4-pack),1,3.84,2019-10-22 19:45:00,31 Wilson St, Atlanta,GA,30301 +264457,Google Phone,1,600.0,2019-10-26 17:22:00,853 6th St, Austin,TX,73301 +264457,Bose SoundSport Headphones,1,99.99,2019-10-26 17:22:00,853 6th St, Austin,TX,73301 +264458,iPhone,1,700.0,2019-10-22 14:40:00,816 2nd St, San Francisco,CA,94016 +264459,Lightning Charging Cable,1,14.95,2019-10-25 19:41:00,456 9th St, Los Angeles,CA,90001 +264460,Bose SoundSport Headphones,1,99.99,2019-10-04 11:44:00,353 10th St, Austin,TX,73301 +264461,Apple Airpods Headphones,1,150.0,2019-10-14 13:44:00,323 Hill St, Los Angeles,CA,90001 +264462,ThinkPad Laptop,1,999.99,2019-10-01 15:50:00,271 Chestnut St, Los Angeles,CA,90001 +264463,Bose SoundSport Headphones,1,99.99,2019-10-04 09:31:00,362 North St, Portland,OR,97035 +264464,Lightning Charging Cable,1,14.95,2019-10-15 17:10:00,39 Church St, San Francisco,CA,94016 +264465,34in Ultrawide Monitor,1,379.99,2019-10-20 16:28:00,949 Adams St, Los Angeles,CA,90001 +264466,27in 4K Gaming Monitor,1,389.99,2019-10-11 23:48:00,237 13th St, Los Angeles,CA,90001 +264467,AA Batteries (4-pack),1,3.84,2019-10-10 09:57:00,662 Lake St, Dallas,TX,75001 +264468,ThinkPad Laptop,1,999.99,2019-10-13 19:01:00,10 7th St, Portland,ME,04101 +264469,USB-C Charging Cable,1,11.95,2019-10-20 09:21:00,439 Madison St, Boston,MA,02215 +264470,USB-C Charging Cable,1,11.95,2019-10-15 07:02:00,701 Forest St, San Francisco,CA,94016 +264471,34in Ultrawide Monitor,1,379.99,2019-10-02 23:04:00,400 Hill St, San Francisco,CA,94016 +264472,USB-C Charging Cable,1,11.95,2019-10-07 21:03:00,639 River St, Los Angeles,CA,90001 +264473,34in Ultrawide Monitor,1,379.99,2019-10-25 13:05:00,493 1st St, Boston,MA,02215 +264474,Lightning Charging Cable,1,14.95,2019-10-17 15:16:00,84 9th St, Los Angeles,CA,90001 +264475,Wired Headphones,1,11.99,2019-10-25 14:33:00,505 Willow St, Los Angeles,CA,90001 +264476,Wired Headphones,1,11.99,2019-10-30 01:14:00,642 Highland St, Austin,TX,73301 +264477,34in Ultrawide Monitor,1,379.99,2019-10-09 21:50:00,968 9th St, San Francisco,CA,94016 +264478,Lightning Charging Cable,1,14.95,2019-10-10 16:05:00,451 13th St, Boston,MA,02215 +264479,AAA Batteries (4-pack),1,2.99,2019-10-28 23:13:00,16 Lakeview St, Boston,MA,02215 +264480,27in 4K Gaming Monitor,1,389.99,2019-10-24 12:51:00,616 Jefferson St, Seattle,WA,98101 +264481,AAA Batteries (4-pack),1,2.99,2019-10-08 21:20:00,101 Spruce St, San Francisco,CA,94016 +264482,USB-C Charging Cable,1,11.95,2019-10-12 04:51:00,755 Cedar St, New York City,NY,10001 +264483,LG Dryer,1,600.0,2019-10-26 14:15:00,740 Ridge St, Los Angeles,CA,90001 +264484,Apple Airpods Headphones,1,150.0,2019-10-16 23:47:00,38 4th St, New York City,NY,10001 +264485,AAA Batteries (4-pack),1,2.99,2019-10-22 14:57:00,99 12th St, San Francisco,CA,94016 +264486,AAA Batteries (4-pack),1,2.99,2019-10-06 12:07:00,768 Walnut St, New York City,NY,10001 +264487,Vareebadd Phone,1,400.0,2019-10-25 16:13:00,943 Pine St, New York City,NY,10001 +264488,AA Batteries (4-pack),1,3.84,2019-10-18 12:44:00,305 Spruce St, San Francisco,CA,94016 +264489,AAA Batteries (4-pack),1,2.99,2019-10-06 22:34:00,934 Cedar St, New York City,NY,10001 +264490,USB-C Charging Cable,1,11.95,2019-10-18 08:26:00,433 Elm St, San Francisco,CA,94016 +264491,Bose SoundSport Headphones,1,99.99,2019-10-14 11:32:00,96 Main St, San Francisco,CA,94016 +264492,Apple Airpods Headphones,1,150.0,2019-10-24 10:20:00,492 8th St, San Francisco,CA,94016 +264493,Apple Airpods Headphones,1,150.0,2019-10-05 13:06:00,486 Lincoln St, San Francisco,CA,94016 +264494,AAA Batteries (4-pack),1,2.99,2019-10-17 04:14:00,963 14th St, San Francisco,CA,94016 +264494,27in FHD Monitor,1,149.99,2019-10-17 04:14:00,963 14th St, San Francisco,CA,94016 +264495,USB-C Charging Cable,1,11.95,2019-10-21 18:01:00,512 Washington St, Los Angeles,CA,90001 +264496,USB-C Charging Cable,1,11.95,2019-10-24 13:58:00,619 Pine St, Los Angeles,CA,90001 +264497,Lightning Charging Cable,2,14.95,2019-10-10 10:54:00,325 Madison St, Dallas,TX,75001 +264498,AAA Batteries (4-pack),1,2.99,2019-10-06 19:37:00,401 8th St, Boston,MA,02215 +264499,AA Batteries (4-pack),1,3.84,2019-10-23 22:18:00,783 9th St, Dallas,TX,75001 +264500,AAA Batteries (4-pack),1,2.99,2019-10-10 12:55:00,885 Cedar St, Atlanta,GA,30301 +264501,Bose SoundSport Headphones,1,99.99,2019-10-31 11:40:00,862 2nd St, Atlanta,GA,30301 +264502,Flatscreen TV,1,300.0,2019-10-01 07:50:00,497 Cherry St, Atlanta,GA,30301 +264503,Bose SoundSport Headphones,1,99.99,2019-10-06 17:38:00,811 Maple St, New York City,NY,10001 +264504,USB-C Charging Cable,1,11.95,2019-10-05 19:10:00,39 West St, Los Angeles,CA,90001 +264505,USB-C Charging Cable,3,11.95,2019-10-24 13:49:00,801 Johnson St, Los Angeles,CA,90001 +264506,Wired Headphones,1,11.99,2019-10-19 13:01:00,945 Center St, San Francisco,CA,94016 +264507,Google Phone,1,600.0,2019-10-09 07:42:00,213 Lincoln St, Los Angeles,CA,90001 +264508,AA Batteries (4-pack),1,3.84,2019-10-29 14:20:00,647 Walnut St, San Francisco,CA,94016 +264509,Bose SoundSport Headphones,1,99.99,2019-10-21 23:27:00,781 8th St, Atlanta,GA,30301 +264510,Lightning Charging Cable,1,14.95,2019-10-25 19:04:00,965 Pine St, San Francisco,CA,94016 +264511,27in 4K Gaming Monitor,1,389.99,2019-10-14 09:47:00,970 5th St, New York City,NY,10001 +264512,Google Phone,1,600.0,2019-10-20 17:51:00,487 River St, Austin,TX,73301 +264513,Apple Airpods Headphones,1,150.0,2019-10-29 10:07:00,824 8th St, Seattle,WA,98101 +264514,Vareebadd Phone,1,400.0,2019-10-31 14:34:00,901 11th St, Portland,OR,97035 +264514,Bose SoundSport Headphones,1,99.99,2019-10-31 14:34:00,901 11th St, Portland,OR,97035 +264515,Vareebadd Phone,1,400.0,2019-10-20 00:51:00,202 Chestnut St, Boston,MA,02215 +264516,AAA Batteries (4-pack),3,2.99,2019-10-05 09:43:00,459 Spruce St, San Francisco,CA,94016 +264516,ThinkPad Laptop,1,999.99,2019-10-05 09:43:00,459 Spruce St, San Francisco,CA,94016 +264517,Wired Headphones,1,11.99,2019-10-17 23:24:00,814 Adams St, Boston,MA,02215 +264518,AAA Batteries (4-pack),1,2.99,2019-10-24 14:16:00,432 Church St, San Francisco,CA,94016 +264519,Bose SoundSport Headphones,1,99.99,2019-10-25 08:54:00,792 Church St, San Francisco,CA,94016 +264520,27in 4K Gaming Monitor,1,389.99,2019-10-13 11:46:00,765 Lincoln St, San Francisco,CA,94016 +264521,AA Batteries (4-pack),1,3.84,2019-10-13 07:38:00,6 South St, Atlanta,GA,30301 +264522,AA Batteries (4-pack),1,3.84,2019-10-21 18:29:00,42 Sunset St, New York City,NY,10001 +264523,ThinkPad Laptop,1,999.99,2019-10-17 09:24:00,689 Lakeview St, Los Angeles,CA,90001 +264524,Apple Airpods Headphones,1,150.0,2019-10-10 10:34:00,263 Wilson St, Dallas,TX,75001 +264525,Google Phone,1,600.0,2019-10-17 12:18:00,329 2nd St, Boston,MA,02215 +264525,Wired Headphones,1,11.99,2019-10-17 12:18:00,329 2nd St, Boston,MA,02215 +264526,27in 4K Gaming Monitor,1,389.99,2019-10-22 11:42:00,15 Wilson St, Boston,MA,02215 +264527,AA Batteries (4-pack),1,3.84,2019-10-02 14:56:00,618 Hickory St, Dallas,TX,75001 +264528,27in 4K Gaming Monitor,1,389.99,2019-10-11 17:02:00,554 13th St, Seattle,WA,98101 +264529,20in Monitor,1,109.99,2019-10-17 13:02:00,603 Elm St, New York City,NY,10001 +264530,Wired Headphones,1,11.99,2019-10-08 01:05:00,113 Jackson St, Austin,TX,73301 +264531,Vareebadd Phone,1,400.0,2019-10-03 13:17:00,298 Hill St, San Francisco,CA,94016 +264532,Flatscreen TV,1,300.0,2019-10-19 17:34:00,473 Meadow St, New York City,NY,10001 +264533,AA Batteries (4-pack),1,3.84,2019-10-21 20:22:00,918 West St, San Francisco,CA,94016 +264534,AAA Batteries (4-pack),2,2.99,2019-10-24 10:43:00,381 12th St, Boston,MA,02215 +264535,Macbook Pro Laptop,1,1700.0,2019-10-09 15:08:00,289 Park St, Atlanta,GA,30301 +264536,27in 4K Gaming Monitor,1,389.99,2019-10-28 17:29:00,909 12th St, Seattle,WA,98101 +264537,Apple Airpods Headphones,1,150.0,2019-10-05 21:32:00,264 Elm St, San Francisco,CA,94016 +264538,27in FHD Monitor,1,149.99,2019-10-24 13:59:00,169 Johnson St, New York City,NY,10001 +264539,AAA Batteries (4-pack),1,2.99,2019-10-13 11:11:00,983 Chestnut St, Dallas,TX,75001 +264540,Google Phone,1,600.0,2019-10-28 16:50:00,329 Lincoln St, Seattle,WA,98101 +264540,USB-C Charging Cable,1,11.95,2019-10-28 16:50:00,329 Lincoln St, Seattle,WA,98101 +264541,Google Phone,1,600.0,2019-10-16 23:33:00,971 4th St, Dallas,TX,75001 +264541,USB-C Charging Cable,1,11.95,2019-10-16 23:33:00,971 4th St, Dallas,TX,75001 +264542,USB-C Charging Cable,1,11.95,2019-10-05 21:49:00,793 Walnut St, Dallas,TX,75001 +264543,AA Batteries (4-pack),2,3.84,2019-10-22 08:52:00,277 Meadow St, New York City,NY,10001 +264544,AA Batteries (4-pack),1,3.84,2019-10-12 21:18:00,732 Main St, Seattle,WA,98101 +264545,USB-C Charging Cable,4,11.95,2019-10-15 14:05:00,744 10th St, Los Angeles,CA,90001 +264546,Wired Headphones,1,11.99,2019-10-12 10:15:00,487 Lincoln St, Boston,MA,02215 +264547,USB-C Charging Cable,1,11.95,2019-10-03 10:47:00,425 Lake St, San Francisco,CA,94016 +264548,AAA Batteries (4-pack),1,2.99,2019-10-26 17:28:00,100 6th St, New York City,NY,10001 +264549,Lightning Charging Cable,1,14.95,2019-10-09 23:26:00,231 Church St, San Francisco,CA,94016 +264550,Wired Headphones,1,11.99,2019-10-17 18:42:00,726 5th St, Atlanta,GA,30301 +264551,34in Ultrawide Monitor,1,379.99,2019-10-23 20:37:00,703 Cedar St, Los Angeles,CA,90001 +264552,AAA Batteries (4-pack),1,2.99,2019-10-20 13:40:00,303 Adams St, Portland,OR,97035 +264553,AAA Batteries (4-pack),1,2.99,2019-10-19 19:46:00,82 Highland St, New York City,NY,10001 +264554,USB-C Charging Cable,1,11.95,2019-10-27 21:09:00,183 South St, Los Angeles,CA,90001 +264555,USB-C Charging Cable,1,11.95,2019-10-01 20:05:00,356 Washington St, Boston,MA,02215 +264556,34in Ultrawide Monitor,1,379.99,2019-10-22 13:47:00,243 Park St, Seattle,WA,98101 +264557,Wired Headphones,1,11.99,2019-10-02 17:15:00,793 14th St, Los Angeles,CA,90001 +264558,AA Batteries (4-pack),1,3.84,2019-10-03 14:33:00,350 Spruce St, Seattle,WA,98101 +264559,USB-C Charging Cable,1,11.95,2019-10-02 09:25:00,745 11th St, Boston,MA,02215 +264560,USB-C Charging Cable,1,11.95,2019-10-23 19:37:00,453 11th St, Seattle,WA,98101 +264561,27in 4K Gaming Monitor,1,389.99,2019-10-05 20:22:00,370 8th St, Dallas,TX,75001 +264562,iPhone,1,700.0,2019-10-14 06:38:00,929 Center St, Austin,TX,73301 +264563,Bose SoundSport Headphones,1,99.99,2019-10-19 14:15:00,225 Dogwood St, San Francisco,CA,94016 +264564,USB-C Charging Cable,1,11.95,2019-10-23 13:35:00,175 Dogwood St, San Francisco,CA,94016 +264565,Lightning Charging Cable,1,14.95,2019-10-13 15:58:00,368 Center St, Los Angeles,CA,90001 +264566,20in Monitor,1,109.99,2019-10-02 20:58:00,417 Johnson St, Atlanta,GA,30301 +264567,34in Ultrawide Monitor,1,379.99,2019-10-18 17:56:00,608 Elm St, San Francisco,CA,94016 +264568,Macbook Pro Laptop,1,1700.0,2019-10-26 13:27:00,246 Willow St, Portland,OR,97035 +264568,USB-C Charging Cable,1,11.95,2019-10-26 13:27:00,246 Willow St, Portland,OR,97035 +264569,Google Phone,1,600.0,2019-10-08 09:47:00,255 Pine St, Boston,MA,02215 +264570,USB-C Charging Cable,1,11.95,2019-10-11 19:49:00,693 13th St, Portland,OR,97035 +264571,Lightning Charging Cable,2,14.95,2019-10-25 11:22:00,619 Lincoln St, San Francisco,CA,94016 +264572,27in 4K Gaming Monitor,1,389.99,2019-10-22 12:37:00,981 Church St, Boston,MA,02215 +264573,Wired Headphones,1,11.99,2019-10-29 13:46:00,313 13th St, Los Angeles,CA,90001 +264574,AAA Batteries (4-pack),2,2.99,2019-10-22 03:12:00,962 North St, New York City,NY,10001 +264575,AA Batteries (4-pack),1,3.84,2019-10-17 22:19:00,361 Elm St, San Francisco,CA,94016 +264576,AA Batteries (4-pack),1,3.84,2019-10-13 18:08:00,850 10th St, Atlanta,GA,30301 +264577,Lightning Charging Cable,1,14.95,2019-10-22 01:20:00,21 4th St, San Francisco,CA,94016 +264578,AA Batteries (4-pack),1,3.84,2019-10-13 11:42:00,548 Johnson St, San Francisco,CA,94016 +264579,AA Batteries (4-pack),1,3.84,2019-10-20 09:36:00,842 Dogwood St, New York City,NY,10001 +264580,Wired Headphones,1,11.99,2019-10-04 17:32:00,886 Jackson St, Los Angeles,CA,90001 +264581,Macbook Pro Laptop,1,1700.0,2019-10-30 20:13:00,129 Willow St, Atlanta,GA,30301 +264582,Bose SoundSport Headphones,1,99.99,2019-10-27 20:47:00,890 Cherry St, Seattle,WA,98101 +264583,USB-C Charging Cable,1,11.95,2019-10-09 00:17:00,119 Hill St, San Francisco,CA,94016 +264584,AAA Batteries (4-pack),1,2.99,2019-10-02 22:39:00,36 7th St, Seattle,WA,98101 +264585,34in Ultrawide Monitor,1,379.99,2019-10-17 13:39:00,595 8th St, Boston,MA,02215 +264586,34in Ultrawide Monitor,1,379.99,2019-10-19 11:34:00,182 Hill St, Dallas,TX,75001 +264587,Lightning Charging Cable,1,14.95,2019-10-09 19:46:00,417 Meadow St, Los Angeles,CA,90001 +264588,iPhone,1,700.0,2019-10-10 12:46:00,653 South St, San Francisco,CA,94016 +264589,USB-C Charging Cable,1,11.95,2019-10-07 17:49:00,47 Spruce St, Seattle,WA,98101 +264590,USB-C Charging Cable,1,11.95,2019-10-03 02:31:00,656 Wilson St, San Francisco,CA,94016 +264591,Apple Airpods Headphones,1,150.0,2019-10-14 00:17:00,160 Willow St, Boston,MA,02215 +264592,AA Batteries (4-pack),1,3.84,2019-10-03 13:21:00,240 Ridge St, Los Angeles,CA,90001 +264593,Apple Airpods Headphones,1,150.0,2019-10-28 19:34:00,994 Lincoln St, Boston,MA,02215 +264594,AA Batteries (4-pack),2,3.84,2019-10-26 23:41:00,202 Lakeview St, New York City,NY,10001 +264595,AA Batteries (4-pack),1,3.84,2019-10-30 19:42:00,68 Adams St, Los Angeles,CA,90001 +264596,Bose SoundSport Headphones,1,99.99,2019-10-25 01:01:00,638 Chestnut St, San Francisco,CA,94016 +264597,USB-C Charging Cable,1,11.95,2019-10-14 17:04:00,672 Lake St, Boston,MA,02215 +264598,USB-C Charging Cable,1,11.95,2019-10-10 17:00:00,325 Meadow St, Los Angeles,CA,90001 +264599,Lightning Charging Cable,1,14.95,2019-10-10 11:38:00,975 10th St, Boston,MA,02215 +264600,AA Batteries (4-pack),1,3.84,2019-10-07 13:23:00,532 Maple St, San Francisco,CA,94016 +264601,iPhone,1,700.0,2019-10-27 00:42:00,958 Church St, Austin,TX,73301 +264602,27in 4K Gaming Monitor,1,389.99,2019-10-02 16:59:00,246 Chestnut St, Los Angeles,CA,90001 +264603,Wired Headphones,1,11.99,2019-10-28 19:30:00,401 Washington St, Los Angeles,CA,90001 +264604,Macbook Pro Laptop,1,1700.0,2019-10-17 17:59:00,222 4th St, Dallas,TX,75001 +264605,Wired Headphones,1,11.99,2019-10-07 09:41:00,346 7th St, San Francisco,CA,94016 +264606,Apple Airpods Headphones,1,150.0,2019-10-16 09:22:00,17 Madison St, New York City,NY,10001 +264607,AAA Batteries (4-pack),3,2.99,2019-10-29 07:15:00,173 10th St, New York City,NY,10001 +264607,Apple Airpods Headphones,1,150.0,2019-10-29 07:15:00,173 10th St, New York City,NY,10001 +264608,Bose SoundSport Headphones,1,99.99,2019-10-01 10:20:00,261 6th St, Portland,ME,04101 +264609,Bose SoundSport Headphones,1,99.99,2019-10-02 17:39:00,299 Pine St, Los Angeles,CA,90001 +264610,Lightning Charging Cable,1,14.95,2019-10-16 14:07:00,299 Chestnut St, Portland,OR,97035 +264611,Wired Headphones,1,11.99,2019-10-14 15:39:00,152 13th St, San Francisco,CA,94016 +264612,34in Ultrawide Monitor,1,379.99,2019-10-21 00:27:00,90 Jefferson St, Seattle,WA,98101 +264613,Wired Headphones,1,11.99,2019-10-28 03:18:00,349 Madison St, Dallas,TX,75001 +264614,20in Monitor,1,109.99,2019-10-02 08:39:00,482 Adams St, San Francisco,CA,94016 +264615,20in Monitor,1,109.99,2019-10-15 21:44:00,58 10th St, Atlanta,GA,30301 +264616,Wired Headphones,1,11.99,2019-10-04 17:34:00,931 Maple St, Boston,MA,02215 +264617,Wired Headphones,2,11.99,2019-10-13 13:47:00,595 Hickory St, Seattle,WA,98101 +264618,Wired Headphones,1,11.99,2019-10-10 18:25:00,122 Willow St, Boston,MA,02215 +264619,USB-C Charging Cable,1,11.95,2019-10-25 12:07:00,288 Chestnut St, Los Angeles,CA,90001 +264620,Flatscreen TV,1,300.0,2019-10-13 14:25:00,152 Adams St, Seattle,WA,98101 +264621,Vareebadd Phone,1,400.0,2019-10-17 01:07:00,879 Spruce St, New York City,NY,10001 +264621,USB-C Charging Cable,1,11.95,2019-10-17 01:07:00,879 Spruce St, New York City,NY,10001 +264622,USB-C Charging Cable,1,11.95,2019-10-31 13:09:00,651 11th St, Portland,OR,97035 +264623,AA Batteries (4-pack),1,3.84,2019-10-11 18:16:00,432 Walnut St, San Francisco,CA,94016 +264624,Google Phone,1,600.0,2019-10-10 16:45:00,56 Pine St, Boston,MA,02215 +264625,Wired Headphones,1,11.99,2019-10-10 20:14:00,54 West St, San Francisco,CA,94016 +264626,Vareebadd Phone,1,400.0,2019-10-31 07:52:00,594 River St, Atlanta,GA,30301 +264627,34in Ultrawide Monitor,1,379.99,2019-10-17 13:57:00,3 Madison St, Dallas,TX,75001 +264628,USB-C Charging Cable,1,11.95,2019-10-05 18:09:00,47 12th St, San Francisco,CA,94016 +264629,AAA Batteries (4-pack),2,2.99,2019-10-07 22:37:00,59 Wilson St, Los Angeles,CA,90001 +264630,Lightning Charging Cable,1,14.95,2019-10-31 23:14:00,1 Wilson St, New York City,NY,10001 +264631,Apple Airpods Headphones,1,150.0,2019-10-26 20:57:00,81 6th St, Dallas,TX,75001 +264632,AAA Batteries (4-pack),1,2.99,2019-10-15 20:57:00,612 13th St, Atlanta,GA,30301 +264633,AAA Batteries (4-pack),2,2.99,2019-10-25 01:06:00,438 12th St, Seattle,WA,98101 +264634,AAA Batteries (4-pack),1,2.99,2019-10-18 08:32:00,649 Church St, Atlanta,GA,30301 +264635,Lightning Charging Cable,1,14.95,2019-10-08 17:44:00,428 11th St, San Francisco,CA,94016 +264636,AA Batteries (4-pack),1,3.84,2019-10-05 21:30:00,210 Center St, San Francisco,CA,94016 +264637,Wired Headphones,1,11.99,2019-10-30 18:59:00,373 Meadow St, Portland,OR,97035 +264638,AAA Batteries (4-pack),1,2.99,2019-10-18 18:26:00,872 2nd St, Atlanta,GA,30301 +264639,Lightning Charging Cable,2,14.95,2019-10-09 11:15:00,666 14th St, San Francisco,CA,94016 +264640,LG Dryer,1,600.0,2019-10-04 13:21:00,350 Park St, Seattle,WA,98101 +264641,Apple Airpods Headphones,1,150.0,2019-10-07 21:21:00,67 Sunset St, Seattle,WA,98101 +264642,AAA Batteries (4-pack),1,2.99,2019-10-23 10:46:00,47 North St, New York City,NY,10001 +264643,Bose SoundSport Headphones,1,99.99,2019-10-30 20:30:00,710 Washington St, Atlanta,GA,30301 +264644,Bose SoundSport Headphones,1,99.99,2019-10-03 22:12:00,842 Elm St, New York City,NY,10001 +264645,34in Ultrawide Monitor,1,379.99,2019-10-09 17:24:00,879 Johnson St, Boston,MA,02215 +264646,AAA Batteries (4-pack),2,2.99,2019-10-29 15:25:00,922 Pine St, Los Angeles,CA,90001 +264647,Lightning Charging Cable,2,14.95,2019-10-26 20:17:00,879 Elm St, New York City,NY,10001 +264648,AA Batteries (4-pack),1,3.84,2019-10-24 06:22:00,76 Main St, Dallas,TX,75001 +264649,Macbook Pro Laptop,1,1700.0,2019-10-01 21:05:00,230 Lake St, Los Angeles,CA,90001 +264650,Macbook Pro Laptop,1,1700.0,2019-10-07 16:41:00,812 2nd St, Atlanta,GA,30301 +264651,AA Batteries (4-pack),1,3.84,2019-10-15 20:24:00,328 Lake St, Dallas,TX,75001 +264652,27in 4K Gaming Monitor,1,389.99,2019-10-04 19:28:00,357 Adams St, San Francisco,CA,94016 +264653,Lightning Charging Cable,1,14.95,2019-10-21 11:18:00,849 Wilson St, Boston,MA,02215 +264654,AAA Batteries (4-pack),2,2.99,2019-10-18 14:31:00,970 Cherry St, Atlanta,GA,30301 +264655,Lightning Charging Cable,1,14.95,2019-10-02 13:43:00,213 12th St, New York City,NY,10001 +264656,ThinkPad Laptop,1,999.99,2019-10-05 08:18:00,714 North St, Seattle,WA,98101 +264657,USB-C Charging Cable,1,11.95,2019-10-10 10:26:00,48 12th St, Boston,MA,02215 +264658,Wired Headphones,1,11.99,2019-10-14 14:00:00,570 Adams St, Boston,MA,02215 +264659,AA Batteries (4-pack),1,3.84,2019-10-20 19:57:00,335 Maple St, San Francisco,CA,94016 +264660,Lightning Charging Cable,1,14.95,2019-10-19 21:58:00,955 Cedar St, Austin,TX,73301 +264661,34in Ultrawide Monitor,1,379.99,2019-10-29 19:18:00,709 14th St, Los Angeles,CA,90001 +264662,Lightning Charging Cable,1,14.95,2019-10-07 17:51:00,637 West St, San Francisco,CA,94016 +264663,Apple Airpods Headphones,1,150.0,2019-10-06 12:49:00,453 Adams St, Boston,MA,02215 +264664,Wired Headphones,1,11.99,2019-10-23 17:52:00,394 13th St, San Francisco,CA,94016 +264665,AA Batteries (4-pack),1,3.84,2019-10-30 17:24:00,564 14th St, Dallas,TX,75001 +264666,USB-C Charging Cable,1,11.95,2019-10-21 18:41:00,82 14th St, Los Angeles,CA,90001 +264667,Bose SoundSport Headphones,1,99.99,2019-10-30 17:37:00,24 Lake St, Los Angeles,CA,90001 +264668,Lightning Charging Cable,2,14.95,2019-10-26 16:03:00,519 Spruce St, San Francisco,CA,94016 +264669,Lightning Charging Cable,1,14.95,2019-10-24 15:15:00,303 Ridge St, Austin,TX,73301 +264670,27in FHD Monitor,1,149.99,2019-10-13 14:26:00,134 2nd St, Los Angeles,CA,90001 +264671,AA Batteries (4-pack),1,3.84,2019-10-16 17:31:00,920 14th St, San Francisco,CA,94016 +264672,Flatscreen TV,1,300.0,2019-10-13 10:01:00,590 9th St, Portland,OR,97035 +264673,Lightning Charging Cable,1,14.95,2019-10-27 23:44:00,542 8th St, San Francisco,CA,94016 +264674,Lightning Charging Cable,1,14.95,2019-10-22 16:57:00,431 12th St, Seattle,WA,98101 +264675,Apple Airpods Headphones,1,150.0,2019-10-12 16:20:00,58 Lincoln St, New York City,NY,10001 +264676,Wired Headphones,2,11.99,2019-10-22 09:45:00,130 Walnut St, San Francisco,CA,94016 +264677,Lightning Charging Cable,1,14.95,2019-10-09 18:46:00,573 South St, Portland,OR,97035 +264678,Wired Headphones,2,11.99,2019-10-21 22:10:00,266 Pine St, Austin,TX,73301 +264679,27in FHD Monitor,2,149.99,2019-10-05 19:17:00,736 Walnut St, Dallas,TX,75001 +264680,AA Batteries (4-pack),1,3.84,2019-10-31 09:53:00,11 Forest St, Portland,OR,97035 +264681,27in 4K Gaming Monitor,1,389.99,2019-10-14 18:55:00,76 6th St, Portland,ME,04101 +264682,AAA Batteries (4-pack),3,2.99,2019-10-26 14:16:00,729 Lake St, San Francisco,CA,94016 +264683,Wired Headphones,1,11.99,2019-10-18 22:59:00,212 Meadow St, Portland,ME,04101 +264684,34in Ultrawide Monitor,1,379.99,2019-10-30 09:56:00,26 Hickory St, New York City,NY,10001 +264685,Wired Headphones,1,11.99,2019-10-25 22:30:00,299 Pine St, Portland,ME,04101 +264686,AA Batteries (4-pack),1,3.84,2019-10-28 08:23:00,123 10th St, San Francisco,CA,94016 +264687,Lightning Charging Cable,1,14.95,2019-10-06 11:32:00,297 10th St, San Francisco,CA,94016 +264688,Bose SoundSport Headphones,1,99.99,2019-10-31 15:23:00,706 Center St, Los Angeles,CA,90001 +264689,Wired Headphones,1,11.99,2019-10-06 13:25:00,644 4th St, San Francisco,CA,94016 +264690,ThinkPad Laptop,1,999.99,2019-10-03 11:27:00,165 South St, Los Angeles,CA,90001 +264691,Google Phone,1,600.0,2019-10-31 14:27:00,927 Hill St, Atlanta,GA,30301 +264691,USB-C Charging Cable,1,11.95,2019-10-31 14:27:00,927 Hill St, Atlanta,GA,30301 +264692,Wired Headphones,1,11.99,2019-10-14 10:03:00,94 9th St, San Francisco,CA,94016 +264693,Lightning Charging Cable,1,14.95,2019-10-04 21:52:00,807 6th St, Atlanta,GA,30301 +264694,27in FHD Monitor,1,149.99,2019-10-19 06:41:00,820 Sunset St, Los Angeles,CA,90001 +264695,USB-C Charging Cable,1,11.95,2019-10-21 19:05:00,539 North St, Atlanta,GA,30301 +264696,Apple Airpods Headphones,1,150.0,2019-10-02 17:53:00,987 Adams St, Austin,TX,73301 +264697,USB-C Charging Cable,1,11.95,2019-10-08 08:54:00,437 Madison St, Dallas,TX,75001 +264698,27in FHD Monitor,1,149.99,2019-10-24 15:15:00,712 Park St, New York City,NY,10001 +264699,Google Phone,1,600.0,2019-10-06 11:57:00,385 Cherry St, Austin,TX,73301 +264700,AAA Batteries (4-pack),2,2.99,2019-10-04 07:15:00,816 6th St, Atlanta,GA,30301 +264701,USB-C Charging Cable,1,11.95,2019-10-09 12:26:00,278 River St, Atlanta,GA,30301 +264702,Lightning Charging Cable,1,14.95,2019-10-01 16:54:00,223 11th St, Portland,OR,97035 +264703,AA Batteries (4-pack),2,3.84,2019-10-07 09:03:00,570 13th St, Portland,OR,97035 +264704,AA Batteries (4-pack),1,3.84,2019-10-07 12:53:00,790 Jefferson St, Boston,MA,02215 +264705,Lightning Charging Cable,1,14.95,2019-10-13 19:15:00,906 Maple St, Boston,MA,02215 +264706,Lightning Charging Cable,1,14.95,2019-10-16 21:12:00,137 Cherry St, Los Angeles,CA,90001 +264707,USB-C Charging Cable,1,11.95,2019-10-22 15:22:00,709 14th St, New York City,NY,10001 +264708,Wired Headphones,1,11.99,2019-10-13 15:07:00,874 14th St, Los Angeles,CA,90001 +264709,USB-C Charging Cable,1,11.95,2019-10-12 23:32:00,375 Lincoln St, San Francisco,CA,94016 +264710,Lightning Charging Cable,1,14.95,2019-10-03 04:13:00,902 Church St, Boston,MA,02215 +264711,Lightning Charging Cable,1,14.95,2019-10-13 17:45:00,819 North St, Boston,MA,02215 +264712,USB-C Charging Cable,2,11.95,2019-10-16 15:11:00,1 14th St, Portland,OR,97035 +264712,Macbook Pro Laptop,1,1700.0,2019-10-16 15:11:00,1 14th St, Portland,OR,97035 +264713,34in Ultrawide Monitor,1,379.99,2019-10-09 14:30:00,986 North St, Boston,MA,02215 +264714,34in Ultrawide Monitor,1,379.99,2019-10-05 10:52:00,86 North St, Dallas,TX,75001 +264715,Wired Headphones,1,11.99,2019-10-17 20:56:00,9 Johnson St, Dallas,TX,75001 +264716,AA Batteries (4-pack),1,3.84,2019-10-29 20:25:00,85 Cedar St, San Francisco,CA,94016 +264717,AAA Batteries (4-pack),1,2.99,2019-10-14 20:58:00,758 Sunset St, San Francisco,CA,94016 +264718,Bose SoundSport Headphones,1,99.99,2019-10-07 21:23:00,779 14th St, Los Angeles,CA,90001 +264719,AAA Batteries (4-pack),1,2.99,2019-10-18 01:54:00,941 Johnson St, Seattle,WA,98101 +264720,Lightning Charging Cable,1,14.95,2019-10-06 00:08:00,465 Ridge St, Dallas,TX,75001 +264721,20in Monitor,1,109.99,2019-10-24 15:01:00,852 Cedar St, Seattle,WA,98101 +264722,USB-C Charging Cable,1,11.95,2019-10-29 16:13:00,796 Hill St, Portland,ME,04101 +264723,ThinkPad Laptop,1,999.99,2019-10-19 14:35:00,894 13th St, San Francisco,CA,94016 +264724,Wired Headphones,2,11.99,2019-10-19 18:43:00,313 14th St, New York City,NY,10001 +264725,AA Batteries (4-pack),1,3.84,2019-10-01 21:02:00,80 Center St, Los Angeles,CA,90001 +264726,Apple Airpods Headphones,1,150.0,2019-10-22 22:19:00,905 1st St, Atlanta,GA,30301 +264727,Apple Airpods Headphones,1,150.0,2019-10-25 15:31:00,935 Meadow St, San Francisco,CA,94016 +264728,Apple Airpods Headphones,1,150.0,2019-10-01 21:54:00,814 South St, San Francisco,CA,94016 +264729,Wired Headphones,1,11.99,2019-10-03 14:38:00,349 Johnson St, Los Angeles,CA,90001 +264730,AA Batteries (4-pack),1,3.84,2019-10-06 20:50:00,427 14th St, Dallas,TX,75001 +264731,USB-C Charging Cable,1,11.95,2019-10-22 22:44:00,288 Adams St, Dallas,TX,75001 +264732,Wired Headphones,1,11.99,2019-10-19 17:13:00,868 Forest St, Austin,TX,73301 +264732,USB-C Charging Cable,1,11.95,2019-10-19 17:13:00,868 Forest St, Austin,TX,73301 +264733,Bose SoundSport Headphones,1,99.99,2019-10-01 10:23:00,357 Sunset St, San Francisco,CA,94016 +264734,iPhone,1,700.0,2019-10-10 20:34:00,955 9th St, Seattle,WA,98101 +264735,AA Batteries (4-pack),1,3.84,2019-10-26 11:27:00,767 Cedar St, New York City,NY,10001 +264736,27in 4K Gaming Monitor,1,389.99,2019-10-26 09:30:00,839 Spruce St, San Francisco,CA,94016 +264737,Wired Headphones,1,11.99,2019-10-26 18:02:00,375 Johnson St, San Francisco,CA,94016 +264738,AA Batteries (4-pack),2,3.84,2019-10-02 09:04:00,598 Park St, Dallas,TX,75001 +264739,Wired Headphones,1,11.99,2019-10-09 16:08:00,476 2nd St, San Francisco,CA,94016 +264740,Google Phone,1,600.0,2019-10-02 00:56:00,95 Dogwood St, Los Angeles,CA,90001 +264741,20in Monitor,1,109.99,2019-10-19 12:14:00,261 Jefferson St, San Francisco,CA,94016 +264742,Flatscreen TV,1,300.0,2019-10-22 15:38:00,230 1st St, Boston,MA,02215 +264743,Wired Headphones,2,11.99,2019-10-26 14:16:00,988 River St, New York City,NY,10001 +264744,Lightning Charging Cable,1,14.95,2019-10-06 19:09:00,935 13th St, Dallas,TX,75001 +264745,Google Phone,1,600.0,2019-10-21 10:56:00,682 9th St, Dallas,TX,75001 +264745,Lightning Charging Cable,1,14.95,2019-10-21 10:56:00,682 9th St, Dallas,TX,75001 +264746,34in Ultrawide Monitor,1,379.99,2019-10-26 12:20:00,163 Lakeview St, San Francisco,CA,94016 +264747,Apple Airpods Headphones,1,150.0,2019-10-03 23:27:00,326 12th St, Atlanta,GA,30301 +264748,AA Batteries (4-pack),1,3.84,2019-10-25 21:29:00,298 Willow St, Seattle,WA,98101 +264749,Lightning Charging Cable,1,14.95,2019-10-10 16:37:00,127 West St, San Francisco,CA,94016 +264750,USB-C Charging Cable,1,11.95,2019-10-19 13:57:00,972 Meadow St, Portland,OR,97035 +264751,Flatscreen TV,1,300.0,2019-10-15 13:26:00,835 Spruce St, San Francisco,CA,94016 +264752,AA Batteries (4-pack),1,3.84,2019-10-25 13:03:00,854 Spruce St, Atlanta,GA,30301 +264753,iPhone,1,700.0,2019-10-01 10:53:00,378 Adams St, San Francisco,CA,94016 +264754,AAA Batteries (4-pack),2,2.99,2019-10-21 19:37:00,949 10th St, Atlanta,GA,30301 +264755,AAA Batteries (4-pack),6,2.99,2019-10-03 20:52:00,311 Lincoln St, New York City,NY,10001 +264756,Apple Airpods Headphones,1,150.0,2019-10-28 09:55:00,74 14th St, Los Angeles,CA,90001 +264757,Lightning Charging Cable,1,14.95,2019-10-17 17:19:00,102 Center St, Dallas,TX,75001 +264758,Lightning Charging Cable,1,14.95,2019-10-04 16:16:00,497 Johnson St, Los Angeles,CA,90001 +264759,AA Batteries (4-pack),1,3.84,2019-10-26 14:39:00,374 Hill St, New York City,NY,10001 +264760,AA Batteries (4-pack),1,3.84,2019-10-28 01:15:00,947 8th St, Austin,TX,73301 +264761,Lightning Charging Cable,1,14.95,2019-10-24 10:50:00,332 7th St, Austin,TX,73301 +264761,AA Batteries (4-pack),1,3.84,2019-10-24 10:50:00,332 7th St, Austin,TX,73301 +264762,Lightning Charging Cable,1,14.95,2019-10-09 14:35:00,712 Lincoln St, New York City,NY,10001 +264763,Bose SoundSport Headphones,1,99.99,2019-10-24 07:47:00,701 Walnut St, Boston,MA,02215 +264764,27in FHD Monitor,1,149.99,2019-10-04 15:10:00,910 Meadow St, San Francisco,CA,94016 +264765,AAA Batteries (4-pack),1,2.99,2019-10-08 10:32:00,258 Highland St, San Francisco,CA,94016 +264766,Wired Headphones,1,11.99,2019-10-28 16:37:00,409 Highland St, New York City,NY,10001 +264767,Lightning Charging Cable,1,14.95,2019-10-07 07:21:00,145 8th St, Los Angeles,CA,90001 +264768,Macbook Pro Laptop,1,1700.0,2019-10-06 16:44:00,276 Lincoln St, Dallas,TX,75001 +264768,LG Washing Machine,1,600.0,2019-10-06 16:44:00,276 Lincoln St, Dallas,TX,75001 +264769,27in 4K Gaming Monitor,1,389.99,2019-10-23 15:54:00,836 North St, Seattle,WA,98101 +264770,iPhone,1,700.0,2019-10-26 20:48:00,632 Lake St, San Francisco,CA,94016 +264770,Wired Headphones,1,11.99,2019-10-26 20:48:00,632 Lake St, San Francisco,CA,94016 +264771,Bose SoundSport Headphones,1,99.99,2019-10-20 16:24:00,668 Adams St, New York City,NY,10001 +264772,AA Batteries (4-pack),1,3.84,2019-10-02 17:59:00,64 Wilson St, Austin,TX,73301 +264773,USB-C Charging Cable,1,11.95,2019-10-31 22:33:00,213 Jackson St, Los Angeles,CA,90001 +264774,AA Batteries (4-pack),1,3.84,2019-10-05 20:12:00,738 Dogwood St, Portland,ME,04101 +264775,USB-C Charging Cable,1,11.95,2019-10-02 19:37:00,347 5th St, Dallas,TX,75001 +264776,34in Ultrawide Monitor,1,379.99,2019-10-30 15:36:00,267 14th St, Seattle,WA,98101 +264777,Wired Headphones,1,11.99,2019-10-24 10:32:00,363 1st St, San Francisco,CA,94016 +264778,AA Batteries (4-pack),1,3.84,2019-10-04 18:56:00,974 Meadow St, Seattle,WA,98101 +264779,USB-C Charging Cable,1,11.95,2019-10-27 19:24:00,417 Sunset St, Boston,MA,02215 +264780,34in Ultrawide Monitor,1,379.99,2019-10-16 16:44:00,350 Wilson St, Portland,OR,97035 +264781,Flatscreen TV,1,300.0,2019-10-02 07:27:00,672 North St, Los Angeles,CA,90001 +264782,Flatscreen TV,1,300.0,2019-10-05 23:23:00,763 9th St, San Francisco,CA,94016 +264783,Lightning Charging Cable,1,14.95,2019-10-13 11:14:00,607 North St, Portland,ME,04101 +264784,27in FHD Monitor,1,149.99,2019-10-25 22:49:00,304 South St, Seattle,WA,98101 +264785,AA Batteries (4-pack),1,3.84,2019-10-11 06:39:00,639 12th St, San Francisco,CA,94016 +264786,AAA Batteries (4-pack),7,2.99,2019-10-29 20:51:00,415 Hickory St, Los Angeles,CA,90001 +264787,AA Batteries (4-pack),1,3.84,2019-10-09 14:17:00,457 Johnson St, Atlanta,GA,30301 +264788,27in 4K Gaming Monitor,1,389.99,2019-10-14 22:51:00,225 Church St, Boston,MA,02215 +264789,iPhone,1,700.0,2019-10-28 21:54:00,766 10th St, Atlanta,GA,30301 +264790,AA Batteries (4-pack),1,3.84,2019-10-14 05:29:00,370 Jefferson St, Dallas,TX,75001 +264791,USB-C Charging Cable,1,11.95,2019-10-30 20:20:00,546 10th St, San Francisco,CA,94016 +264792,AA Batteries (4-pack),1,3.84,2019-10-15 15:07:00,967 6th St, New York City,NY,10001 +264793,Apple Airpods Headphones,1,150.0,2019-10-31 13:35:00,420 Johnson St, New York City,NY,10001 +264794,Flatscreen TV,1,300.0,2019-10-26 13:26:00,612 Hickory St, Los Angeles,CA,90001 +264795,AA Batteries (4-pack),2,3.84,2019-10-22 18:07:00,274 Lake St, Boston,MA,02215 +264796,Lightning Charging Cable,1,14.95,2019-10-11 20:09:00,862 Highland St, Atlanta,GA,30301 +264797,Lightning Charging Cable,1,14.95,2019-10-30 09:42:00,373 River St, San Francisco,CA,94016 +264798,USB-C Charging Cable,1,11.95,2019-10-25 20:28:00,987 Lakeview St, Los Angeles,CA,90001 +264799,AAA Batteries (4-pack),1,2.99,2019-10-26 22:59:00,471 12th St, Los Angeles,CA,90001 +264800,AA Batteries (4-pack),1,3.84,2019-10-14 17:28:00,17 Pine St, Dallas,TX,75001 +264801,Google Phone,1,600.0,2019-10-11 20:41:00,530 Cedar St, San Francisco,CA,94016 +264802,Macbook Pro Laptop,1,1700.0,2019-10-26 14:22:00,637 Maple St, Boston,MA,02215 +264803,Google Phone,1,600.0,2019-10-23 22:51:00,556 Jackson St, San Francisco,CA,94016 +264803,USB-C Charging Cable,1,11.95,2019-10-23 22:51:00,556 Jackson St, San Francisco,CA,94016 +264804,Wired Headphones,1,11.99,2019-10-08 17:13:00,9 Pine St, Boston,MA,02215 +264805,USB-C Charging Cable,1,11.95,2019-10-26 17:37:00,507 Center St, New York City,NY,10001 +264806,Lightning Charging Cable,1,14.95,2019-10-05 23:32:00,420 Willow St, Seattle,WA,98101 +264807,Apple Airpods Headphones,1,150.0,2019-10-18 21:06:00,844 West St, Boston,MA,02215 +264808,27in 4K Gaming Monitor,1,389.99,2019-10-01 10:53:00,450 Meadow St, San Francisco,CA,94016 +264809,Wired Headphones,1,11.99,2019-10-15 17:55:00,58 Hickory St, Los Angeles,CA,90001 +264810,Lightning Charging Cable,1,14.95,2019-10-13 10:59:00,550 Cedar St, Los Angeles,CA,90001 +264811,AA Batteries (4-pack),1,3.84,2019-10-20 08:37:00,254 Lincoln St, San Francisco,CA,94016 +264812,USB-C Charging Cable,1,11.95,2019-10-29 22:12:00,247 5th St, Boston,MA,02215 +264812,Wired Headphones,1,11.99,2019-10-29 22:12:00,247 5th St, Boston,MA,02215 +264813,Bose SoundSport Headphones,1,99.99,2019-10-16 20:19:00,236 Willow St, New York City,NY,10001 +264814,27in 4K Gaming Monitor,1,389.99,2019-10-27 05:56:00,546 Cherry St, Austin,TX,73301 +264815,USB-C Charging Cable,1,11.95,2019-10-05 13:24:00,588 Meadow St, Dallas,TX,75001 +264816,USB-C Charging Cable,1,11.95,2019-10-14 18:33:00,940 Willow St, San Francisco,CA,94016 +264817,Lightning Charging Cable,2,14.95,2019-10-01 19:18:00,429 Madison St, San Francisco,CA,94016 +264818,ThinkPad Laptop,1,999.99,2019-10-28 20:58:00,800 Dogwood St, New York City,NY,10001 +264819,AAA Batteries (4-pack),2,2.99,2019-10-05 12:44:00,947 12th St, Austin,TX,73301 +264820,Lightning Charging Cable,1,14.95,2019-10-16 21:21:00,35 Jefferson St, Atlanta,GA,30301 +264821,27in FHD Monitor,1,149.99,2019-10-14 00:19:00,892 Elm St, Boston,MA,02215 +264822,Google Phone,1,600.0,2019-10-08 19:20:00,358 Pine St, Los Angeles,CA,90001 +264823,Lightning Charging Cable,1,14.95,2019-10-31 08:31:00,390 Highland St, San Francisco,CA,94016 +264824,Lightning Charging Cable,1,14.95,2019-10-10 14:56:00,922 Madison St, San Francisco,CA,94016 +264825,Lightning Charging Cable,1,14.95,2019-10-12 16:35:00,270 Johnson St, Los Angeles,CA,90001 +264826,34in Ultrawide Monitor,1,379.99,2019-10-11 21:26:00,423 8th St, San Francisco,CA,94016 +264827,27in FHD Monitor,1,149.99,2019-10-02 18:52:00,110 1st St, Atlanta,GA,30301 +264828,Bose SoundSport Headphones,1,99.99,2019-10-13 01:16:00,559 Jefferson St, San Francisco,CA,94016 +264829,AAA Batteries (4-pack),1,2.99,2019-10-04 19:17:00,599 Main St, San Francisco,CA,94016 +264830,Apple Airpods Headphones,1,150.0,2019-10-15 20:45:00,956 Highland St, San Francisco,CA,94016 +264831,Wired Headphones,1,11.99,2019-10-18 14:22:00,42 Chestnut St, Seattle,WA,98101 +264832,Macbook Pro Laptop,1,1700.0,2019-10-16 15:57:00,229 Lakeview St, San Francisco,CA,94016 +264833,USB-C Charging Cable,1,11.95,2019-10-11 14:03:00,78 Hill St, New York City,NY,10001 +264834,AAA Batteries (4-pack),1,2.99,2019-10-08 23:23:00,938 6th St, Los Angeles,CA,90001 +264835,Wired Headphones,1,11.99,2019-10-23 12:28:00,732 Highland St, New York City,NY,10001 +264836,34in Ultrawide Monitor,1,379.99,2019-10-18 18:10:00,54 9th St, San Francisco,CA,94016 +264837,Apple Airpods Headphones,1,150.0,2019-10-29 08:50:00,248 South St, New York City,NY,10001 +264838,AAA Batteries (4-pack),1,2.99,2019-10-27 23:58:00,623 Jackson St, Austin,TX,73301 +264839,iPhone,1,700.0,2019-10-09 13:33:00,133 North St, San Francisco,CA,94016 +264840,USB-C Charging Cable,1,11.95,2019-10-28 20:04:00,209 Lincoln St, Seattle,WA,98101 +264841,AA Batteries (4-pack),1,3.84,2019-10-16 22:09:00,97 Pine St, Austin,TX,73301 +264842,Wired Headphones,1,11.99,2019-10-22 23:17:00,514 Adams St, Dallas,TX,75001 +264843,AAA Batteries (4-pack),1,2.99,2019-10-02 19:34:00,421 Lake St, Los Angeles,CA,90001 +264844,20in Monitor,1,109.99,2019-10-28 10:02:00,155 Highland St, San Francisco,CA,94016 +264845,AAA Batteries (4-pack),1,2.99,2019-10-26 08:13:00,939 Elm St, Austin,TX,73301 +264846,Lightning Charging Cable,1,14.95,2019-10-16 02:52:00,731 Lake St, Seattle,WA,98101 +264847,27in FHD Monitor,1,149.99,2019-10-28 20:16:00,978 4th St, Boston,MA,02215 +264848,Apple Airpods Headphones,1,150.0,2019-10-10 12:02:00,218 9th St, Atlanta,GA,30301 +264849,USB-C Charging Cable,1,11.95,2019-10-21 12:37:00,127 Lincoln St, Seattle,WA,98101 +264850,Google Phone,1,600.0,2019-10-30 12:59:00,649 14th St, New York City,NY,10001 +264851,Wired Headphones,1,11.99,2019-10-03 01:39:00,386 Forest St, Seattle,WA,98101 +264852,Google Phone,1,600.0,2019-10-16 07:39:00,499 4th St, San Francisco,CA,94016 +264852,USB-C Charging Cable,1,11.95,2019-10-16 07:39:00,499 4th St, San Francisco,CA,94016 +264852,Wired Headphones,1,11.99,2019-10-16 07:39:00,499 4th St, San Francisco,CA,94016 +264853,AA Batteries (4-pack),1,3.84,2019-10-28 20:01:00,771 11th St, Boston,MA,02215 +264854,Wired Headphones,1,11.99,2019-10-22 17:20:00,752 Spruce St, Los Angeles,CA,90001 +264855,27in FHD Monitor,1,149.99,2019-10-17 10:21:00,762 Cedar St, San Francisco,CA,94016 +264856,USB-C Charging Cable,1,11.95,2019-10-16 12:27:00,32 Lake St, New York City,NY,10001 +264857,Lightning Charging Cable,2,14.95,2019-10-07 07:57:00,384 Johnson St, Portland,OR,97035 +264858,27in 4K Gaming Monitor,1,389.99,2019-10-14 10:44:00,149 Highland St, Los Angeles,CA,90001 +264859,USB-C Charging Cable,1,11.95,2019-10-30 00:26:00,693 9th St, New York City,NY,10001 +264860,Apple Airpods Headphones,1,150.0,2019-10-22 15:55:00,767 Jackson St, Boston,MA,02215 +264861,Macbook Pro Laptop,1,1700.0,2019-10-21 13:43:00,119 5th St, San Francisco,CA,94016 +264862,Bose SoundSport Headphones,1,99.99,2019-10-31 12:21:00,238 10th St, San Francisco,CA,94016 +264863,ThinkPad Laptop,1,999.99,2019-10-19 19:36:00,841 Elm St, Los Angeles,CA,90001 +264864,Bose SoundSport Headphones,1,99.99,2019-10-04 13:06:00,917 West St, San Francisco,CA,94016 +264865,USB-C Charging Cable,2,11.95,2019-10-27 23:09:00,795 Maple St, New York City,NY,10001 +264866,Wired Headphones,1,11.99,2019-10-25 13:53:00,54 6th St, San Francisco,CA,94016 +264867,Wired Headphones,1,11.99,2019-10-08 17:07:00,23 10th St, San Francisco,CA,94016 +264868,Apple Airpods Headphones,1,150.0,2019-10-20 08:56:00,473 Maple St, Seattle,WA,98101 +264869,27in FHD Monitor,1,149.99,2019-10-10 19:23:00,37 Jefferson St, New York City,NY,10001 +264870,iPhone,1,700.0,2019-10-19 22:53:00,882 Park St, Los Angeles,CA,90001 +264871,AAA Batteries (4-pack),1,2.99,2019-10-22 07:28:00,465 Walnut St, Seattle,WA,98101 +264872,USB-C Charging Cable,1,11.95,2019-10-09 20:51:00,526 Lincoln St, Dallas,TX,75001 +264873,27in FHD Monitor,1,149.99,2019-10-06 16:59:00,847 5th St, San Francisco,CA,94016 +264874,Wired Headphones,1,11.99,2019-10-26 15:17:00,38 Cedar St, Portland,OR,97035 +264875,Vareebadd Phone,1,400.0,2019-10-30 15:18:00,918 Spruce St, San Francisco,CA,94016 +264876,Flatscreen TV,1,300.0,2019-10-18 08:13:00,437 Highland St, Dallas,TX,75001 +264877,Wired Headphones,1,11.99,2019-10-31 09:22:00,497 Walnut St, Boston,MA,02215 +264878,Lightning Charging Cable,1,14.95,2019-10-10 18:38:00,746 River St, Los Angeles,CA,90001 +264879,Wired Headphones,1,11.99,2019-10-19 16:16:00,321 4th St, San Francisco,CA,94016 +264880,AAA Batteries (4-pack),1,2.99,2019-10-06 20:13:00,553 Madison St, San Francisco,CA,94016 +264881,Apple Airpods Headphones,1,150.0,2019-10-03 11:55:00,4 Cedar St, Los Angeles,CA,90001 +264882,AAA Batteries (4-pack),1,2.99,2019-10-23 12:32:00,419 Forest St, New York City,NY,10001 +264883,Google Phone,1,600.0,2019-10-07 19:28:00,170 Main St, San Francisco,CA,94016 +264884,ThinkPad Laptop,1,999.99,2019-10-01 16:43:00,802 Chestnut St, Seattle,WA,98101 +264885,AA Batteries (4-pack),1,3.84,2019-10-28 21:10:00,814 Walnut St, Dallas,TX,75001 +264886,Vareebadd Phone,1,400.0,2019-10-31 09:19:00,128 Pine St, Boston,MA,02215 +264887,Wired Headphones,1,11.99,2019-10-04 11:35:00,291 Dogwood St, Atlanta,GA,30301 +264888,Google Phone,1,600.0,2019-10-31 22:07:00,798 Madison St, Seattle,WA,98101 +264889,AA Batteries (4-pack),1,3.84,2019-10-30 14:30:00,241 Ridge St, San Francisco,CA,94016 +264890,Wired Headphones,1,11.99,2019-10-01 10:06:00,638 Lake St, Seattle,WA,98101 +264891,Flatscreen TV,1,300.0,2019-10-26 15:59:00,887 Meadow St, Dallas,TX,75001 +264892,USB-C Charging Cable,1,11.95,2019-10-25 10:53:00,449 1st St, Los Angeles,CA,90001 +264893,27in FHD Monitor,1,149.99,2019-10-05 15:23:00,588 Church St, Los Angeles,CA,90001 +264894,Lightning Charging Cable,1,14.95,2019-10-22 11:47:00,399 River St, San Francisco,CA,94016 +264895,Lightning Charging Cable,1,14.95,2019-10-19 08:03:00,39 Elm St, New York City,NY,10001 +264896,Lightning Charging Cable,1,14.95,2019-10-05 20:06:00,215 6th St, New York City,NY,10001 +264897,Bose SoundSport Headphones,1,99.99,2019-10-22 11:22:00,432 5th St, Los Angeles,CA,90001 +264898,Google Phone,1,600.0,2019-10-16 16:30:00,349 Park St, San Francisco,CA,94016 +264899,27in 4K Gaming Monitor,1,389.99,2019-10-17 03:34:00,196 Hill St, Seattle,WA,98101 +264900,USB-C Charging Cable,1,11.95,2019-10-08 23:00:00,557 14th St, San Francisco,CA,94016 +264901,Apple Airpods Headphones,1,150.0,2019-10-20 23:34:00,124 South St, Seattle,WA,98101 +264902,Wired Headphones,1,11.99,2019-10-05 07:05:00,509 Jefferson St, San Francisco,CA,94016 +264903,Macbook Pro Laptop,1,1700.0,2019-10-27 12:46:00,954 Adams St, Austin,TX,73301 +264904,34in Ultrawide Monitor,1,379.99,2019-10-11 15:05:00,591 Main St, New York City,NY,10001 +264905,AAA Batteries (4-pack),1,2.99,2019-10-15 19:08:00,195 1st St, New York City,NY,10001 +264906,AAA Batteries (4-pack),1,2.99,2019-10-21 17:00:00,846 6th St, San Francisco,CA,94016 +264907,USB-C Charging Cable,1,11.95,2019-10-31 16:11:00,535 Park St, Dallas,TX,75001 +264908,iPhone,1,700.0,2019-10-03 13:41:00,284 Main St, Atlanta,GA,30301 +264909,AAA Batteries (4-pack),1,2.99,2019-10-31 18:56:00,735 Willow St, New York City,NY,10001 +264910,Lightning Charging Cable,1,14.95,2019-10-10 22:01:00,555 Lincoln St, Dallas,TX,75001 +264911,AA Batteries (4-pack),1,3.84,2019-10-21 17:52:00,959 4th St, Los Angeles,CA,90001 +264912,Wired Headphones,2,11.99,2019-10-12 15:18:00,384 River St, Atlanta,GA,30301 +264913,Wired Headphones,1,11.99,2019-10-23 11:24:00,859 Meadow St, Seattle,WA,98101 +264914,27in FHD Monitor,1,149.99,2019-10-14 20:38:00,682 14th St, Los Angeles,CA,90001 +264915,Lightning Charging Cable,1,14.95,2019-10-31 07:46:00,502 1st St, San Francisco,CA,94016 +264916,AAA Batteries (4-pack),1,2.99,2019-10-26 13:05:00,801 South St, Dallas,TX,75001 +264917,AA Batteries (4-pack),1,3.84,2019-10-04 18:24:00,20 11th St, San Francisco,CA,94016 +264918,Google Phone,1,600.0,2019-10-29 14:58:00,351 West St, Dallas,TX,75001 +264919,iPhone,1,700.0,2019-10-27 10:13:00,458 South St, New York City,NY,10001 +264920,34in Ultrawide Monitor,1,379.99,2019-10-12 01:26:00,76 Lakeview St, San Francisco,CA,94016 +264921,Google Phone,1,600.0,2019-10-23 22:04:00,211 West St, San Francisco,CA,94016 +264922,USB-C Charging Cable,1,11.95,2019-10-01 10:49:00,449 Meadow St, San Francisco,CA,94016 +264923,AA Batteries (4-pack),1,3.84,2019-10-08 15:59:00,594 Willow St, Austin,TX,73301 +264924,Lightning Charging Cable,1,14.95,2019-10-13 18:31:00,517 Cherry St, Boston,MA,02215 +264925,iPhone,1,700.0,2019-10-02 01:01:00,75 9th St, Portland,OR,97035 +264925,Apple Airpods Headphones,1,150.0,2019-10-02 01:01:00,75 9th St, Portland,OR,97035 +264926,Lightning Charging Cable,1,14.95,2019-10-12 11:41:00,116 8th St, Boston,MA,02215 +264927,AAA Batteries (4-pack),1,2.99,2019-10-03 15:03:00,656 1st St, New York City,NY,10001 +264928,USB-C Charging Cable,1,11.95,2019-10-28 19:20:00,574 1st St, Seattle,WA,98101 +264929,AA Batteries (4-pack),2,3.84,2019-10-27 00:52:00,137 2nd St, Atlanta,GA,30301 +264930,34in Ultrawide Monitor,1,379.99,2019-10-12 13:19:00,840 14th St, Atlanta,GA,30301 +264931,27in FHD Monitor,1,149.99,2019-10-06 10:19:00,661 Jackson St, Boston,MA,02215 +264932,27in 4K Gaming Monitor,1,389.99,2019-10-18 15:15:00,389 Adams St, New York City,NY,10001 +264933,27in 4K Gaming Monitor,1,389.99,2019-10-06 13:37:00,494 Lake St, Austin,TX,73301 +264934,Flatscreen TV,1,300.0,2019-10-07 19:50:00,541 Highland St, Austin,TX,73301 +264935,AAA Batteries (4-pack),2,2.99,2019-10-18 18:16:00,195 Walnut St, Seattle,WA,98101 +264936,Apple Airpods Headphones,1,150.0,2019-10-13 10:38:00,239 12th St, San Francisco,CA,94016 +264937,Macbook Pro Laptop,1,1700.0,2019-10-20 19:27:00,78 Park St, New York City,NY,10001 +264938,ThinkPad Laptop,1,999.99,2019-10-08 22:22:00,782 2nd St, San Francisco,CA,94016 +264939,Bose SoundSport Headphones,1,99.99,2019-10-28 17:01:00,683 Meadow St, San Francisco,CA,94016 +264940,AAA Batteries (4-pack),1,2.99,2019-10-06 14:31:00,653 Highland St, Los Angeles,CA,90001 +264941,AA Batteries (4-pack),2,3.84,2019-10-02 19:13:00,756 11th St, New York City,NY,10001 +264942,27in 4K Gaming Monitor,1,389.99,2019-10-02 11:07:00,864 Spruce St, Boston,MA,02215 +264943,Wired Headphones,1,11.99,2019-10-24 17:03:00,658 Hill St, Seattle,WA,98101 +264944,Wired Headphones,1,11.99,2019-10-31 22:05:00,881 Center St, San Francisco,CA,94016 +264945,Lightning Charging Cable,1,14.95,2019-10-31 14:53:00,308 13th St, Los Angeles,CA,90001 +264946,Bose SoundSport Headphones,1,99.99,2019-10-12 07:26:00,786 Wilson St, San Francisco,CA,94016 +264947,27in 4K Gaming Monitor,1,389.99,2019-10-11 15:25:00,337 Lincoln St, Boston,MA,02215 +264948,27in FHD Monitor,1,149.99,2019-10-29 00:24:00,311 2nd St, Boston,MA,02215 +264949,Bose SoundSport Headphones,1,99.99,2019-10-28 14:49:00,737 Lakeview St, Austin,TX,73301 +264950,AAA Batteries (4-pack),1,2.99,2019-10-25 08:51:00,645 Lake St, Los Angeles,CA,90001 +264951,iPhone,1,700.0,2019-10-30 13:38:00,725 Walnut St, Dallas,TX,75001 +264952,AAA Batteries (4-pack),1,2.99,2019-10-14 11:25:00,223 7th St, Los Angeles,CA,90001 +264953,USB-C Charging Cable,1,11.95,2019-10-01 12:20:00,874 Jefferson St, New York City,NY,10001 +264954,AA Batteries (4-pack),1,3.84,2019-10-15 04:10:00,433 Highland St, New York City,NY,10001 +264955,AAA Batteries (4-pack),1,2.99,2019-10-12 21:08:00,670 Cedar St, Boston,MA,02215 +264956,ThinkPad Laptop,1,999.99,2019-10-31 09:02:00,580 7th St, New York City,NY,10001 +264957,AAA Batteries (4-pack),1,2.99,2019-10-15 14:56:00,120 Jefferson St, Boston,MA,02215 +264958,Lightning Charging Cable,1,14.95,2019-10-12 21:11:00,882 Spruce St, Seattle,WA,98101 +264959,20in Monitor,1,109.99,2019-10-03 15:15:00,770 Hickory St, Austin,TX,73301 +264960,27in FHD Monitor,1,149.99,2019-10-02 15:00:00,917 Walnut St, Atlanta,GA,30301 +264961,Lightning Charging Cable,1,14.95,2019-10-09 17:04:00,341 South St, Portland,OR,97035 +264962,Lightning Charging Cable,1,14.95,2019-10-12 11:08:00,118 Cherry St, Los Angeles,CA,90001 +264963,27in FHD Monitor,1,149.99,2019-10-13 06:00:00,905 Center St, Atlanta,GA,30301 +264964,Wired Headphones,1,11.99,2019-10-20 09:35:00,451 9th St, Boston,MA,02215 +264965,Apple Airpods Headphones,1,150.0,2019-10-27 18:02:00,20 River St, Portland,ME,04101 +264966,iPhone,1,700.0,2019-10-29 12:58:00,203 Church St, San Francisco,CA,94016 +264967,AAA Batteries (4-pack),1,2.99,2019-10-19 19:27:00,438 Spruce St, Dallas,TX,75001 +264968,AAA Batteries (4-pack),1,2.99,2019-10-06 09:37:00,235 14th St, Boston,MA,02215 +264969,AAA Batteries (4-pack),3,2.99,2019-10-24 23:22:00,170 12th St, New York City,NY,10001 +264970,20in Monitor,1,109.99,2019-10-25 19:03:00,350 11th St, San Francisco,CA,94016 +264971,Apple Airpods Headphones,1,150.0,2019-10-21 00:56:00,16 Elm St, San Francisco,CA,94016 +264972,Apple Airpods Headphones,1,150.0,2019-10-27 12:45:00,278 Adams St, Portland,OR,97035 +264973,27in 4K Gaming Monitor,1,389.99,2019-10-09 14:49:00,376 4th St, Dallas,TX,75001 +264974,USB-C Charging Cable,1,11.95,2019-10-30 15:05:00,911 4th St, San Francisco,CA,94016 +264975,Lightning Charging Cable,1,14.95,2019-10-11 22:03:00,110 1st St, Seattle,WA,98101 +264976,34in Ultrawide Monitor,1,379.99,2019-10-10 14:22:00,713 5th St, New York City,NY,10001 +264977,Lightning Charging Cable,1,14.95,2019-10-04 21:35:00,536 Ridge St, Los Angeles,CA,90001 +264978,Apple Airpods Headphones,1,150.0,2019-10-01 08:17:00,534 Maple St, Los Angeles,CA,90001 +264979,Apple Airpods Headphones,1,150.0,2019-10-04 19:23:00,211 Park St, Atlanta,GA,30301 +264980,USB-C Charging Cable,1,11.95,2019-10-07 18:47:00,835 Hill St, Los Angeles,CA,90001 +264981,AAA Batteries (4-pack),2,2.99,2019-10-29 21:19:00,795 Church St, New York City,NY,10001 +264982,Wired Headphones,1,11.99,2019-10-31 22:38:00,728 River St, Atlanta,GA,30301 +264983,USB-C Charging Cable,1,11.95,2019-10-26 18:17:00,444 Wilson St, Boston,MA,02215 +264984,AAA Batteries (4-pack),1,2.99,2019-10-30 22:22:00,967 Madison St, Atlanta,GA,30301 +264985,Wired Headphones,1,11.99,2019-10-27 17:10:00,964 11th St, Portland,OR,97035 +264986,Apple Airpods Headphones,1,150.0,2019-10-26 11:41:00,42 Dogwood St, Atlanta,GA,30301 +264987,20in Monitor,1,109.99,2019-10-10 13:09:00,508 Elm St, New York City,NY,10001 +264988,27in FHD Monitor,1,149.99,2019-10-03 02:41:00,193 Hickory St, San Francisco,CA,94016 +264989,AA Batteries (4-pack),1,3.84,2019-10-30 16:09:00,443 Jefferson St, New York City,NY,10001 +264990,Bose SoundSport Headphones,2,99.99,2019-10-28 17:37:00,658 River St, Austin,TX,73301 +264991,Lightning Charging Cable,1,14.95,2019-10-18 12:06:00,465 Lake St, Dallas,TX,75001 +264992,USB-C Charging Cable,1,11.95,2019-10-25 13:58:00,659 14th St, Boston,MA,02215 +264993,Apple Airpods Headphones,1,150.0,2019-10-01 19:02:00,267 North St, Boston,MA,02215 +264994,AA Batteries (4-pack),1,3.84,2019-10-20 20:11:00,925 13th St, New York City,NY,10001 +264995,Wired Headphones,2,11.99,2019-10-22 11:49:00,348 8th St, San Francisco,CA,94016 +264996,Wired Headphones,1,11.99,2019-10-18 18:11:00,149 11th St, Portland,OR,97035 +264997,Apple Airpods Headphones,1,150.0,2019-10-15 08:46:00,516 5th St, San Francisco,CA,94016 +264998,Wired Headphones,1,11.99,2019-10-19 13:00:00,902 7th St, Dallas,TX,75001 +264999,27in 4K Gaming Monitor,1,389.99,2019-10-05 17:56:00,169 Elm St, San Francisco,CA,94016 +265000,Bose SoundSport Headphones,1,99.99,2019-10-11 11:33:00,333 Park St, Seattle,WA,98101 +265001,27in 4K Gaming Monitor,1,389.99,2019-10-03 04:41:00,157 1st St, Los Angeles,CA,90001 +265002,AA Batteries (4-pack),1,3.84,2019-10-04 18:18:00,723 West St, San Francisco,CA,94016 +265003,AAA Batteries (4-pack),1,2.99,2019-10-06 10:42:00,214 11th St, New York City,NY,10001 +265004,AA Batteries (4-pack),1,3.84,2019-10-26 21:00:00,582 Cherry St, New York City,NY,10001 +265005,AA Batteries (4-pack),2,3.84,2019-10-31 12:38:00,516 9th St, Los Angeles,CA,90001 +265006,AA Batteries (4-pack),1,3.84,2019-10-26 14:43:00,817 Madison St, Boston,MA,02215 +265007,Wired Headphones,1,11.99,2019-10-10 16:58:00,463 13th St, San Francisco,CA,94016 +265008,Wired Headphones,1,11.99,2019-10-12 10:33:00,4 Lincoln St, Los Angeles,CA,90001 +265009,iPhone,1,700.0,2019-10-14 08:09:00,528 Chestnut St, Los Angeles,CA,90001 +265010,AAA Batteries (4-pack),2,2.99,2019-10-28 13:28:00,318 4th St, Los Angeles,CA,90001 +265011,Apple Airpods Headphones,1,150.0,2019-10-08 21:05:00,225 1st St, Austin,TX,73301 +265012,USB-C Charging Cable,1,11.95,2019-10-26 07:19:00,804 North St, Seattle,WA,98101 +265013,Wired Headphones,1,11.99,2019-10-14 13:10:00,275 Highland St, Portland,OR,97035 +265014,AAA Batteries (4-pack),3,2.99,2019-10-27 09:11:00,995 11th St, Los Angeles,CA,90001 +265015,USB-C Charging Cable,1,11.95,2019-10-06 17:18:00,431 Church St, San Francisco,CA,94016 +265016,AAA Batteries (4-pack),1,2.99,2019-10-13 18:33:00,636 Hill St, Boston,MA,02215 +265017,Bose SoundSport Headphones,1,99.99,2019-10-26 13:01:00,425 West St, Boston,MA,02215 +265018,Lightning Charging Cable,2,14.95,2019-10-25 11:28:00,275 2nd St, San Francisco,CA,94016 +265019,34in Ultrawide Monitor,1,379.99,2019-10-15 20:11:00,271 Jefferson St, Boston,MA,02215 +265020,20in Monitor,1,109.99,2019-10-31 08:25:00,265 Johnson St, San Francisco,CA,94016 +265021,Wired Headphones,1,11.99,2019-10-06 12:05:00,716 South St, San Francisco,CA,94016 +265022,USB-C Charging Cable,1,11.95,2019-10-23 18:56:00,154 Wilson St, Boston,MA,02215 +265023,Wired Headphones,1,11.99,2019-10-13 22:39:00,78 Cedar St, San Francisco,CA,94016 +265024,ThinkPad Laptop,1,999.99,2019-10-07 21:46:00,535 Willow St, Portland,OR,97035 +265025,Apple Airpods Headphones,1,150.0,2019-10-03 18:36:00,513 West St, Austin,TX,73301 +265026,Wired Headphones,1,11.99,2019-10-21 09:12:00,422 Church St, Portland,OR,97035 +265027,AAA Batteries (4-pack),1,2.99,2019-10-20 19:57:00,232 8th St, Los Angeles,CA,90001 +265028,34in Ultrawide Monitor,1,379.99,2019-10-12 16:19:00,337 13th St, Portland,OR,97035 +265029,34in Ultrawide Monitor,1,379.99,2019-10-02 12:05:00,960 West St, Atlanta,GA,30301 +265030,34in Ultrawide Monitor,1,379.99,2019-10-06 18:45:00,393 11th St, Atlanta,GA,30301 +265031,Apple Airpods Headphones,1,150.0,2019-10-14 14:59:00,598 Pine St, San Francisco,CA,94016 +265032,Bose SoundSport Headphones,1,99.99,2019-10-12 19:46:00,239 Jackson St, Austin,TX,73301 +265033,Wired Headphones,1,11.99,2019-10-26 12:08:00,393 Lakeview St, Atlanta,GA,30301 +265034,Flatscreen TV,1,300.0,2019-10-10 17:38:00,505 Jefferson St, Boston,MA,02215 +265035,20in Monitor,1,109.99,2019-10-10 19:43:00,804 Johnson St, San Francisco,CA,94016 +265036,iPhone,1,700.0,2019-10-21 18:41:00,453 Lakeview St, Portland,OR,97035 +265036,Lightning Charging Cable,1,14.95,2019-10-21 18:41:00,453 Lakeview St, Portland,OR,97035 +265037,27in FHD Monitor,1,149.99,2019-10-23 20:13:00,543 Washington St, San Francisco,CA,94016 +265038,Flatscreen TV,1,300.0,2019-10-15 16:37:00,6 4th St, Los Angeles,CA,90001 +265039,AA Batteries (4-pack),1,3.84,2019-10-26 16:22:00,945 Lincoln St, New York City,NY,10001 +265040,USB-C Charging Cable,1,11.95,2019-10-26 01:33:00,596 Washington St, San Francisco,CA,94016 +265041,Lightning Charging Cable,1,14.95,2019-10-13 16:19:00,716 12th St, Los Angeles,CA,90001 +265042,Google Phone,1,600.0,2019-10-31 10:52:00,563 Maple St, Dallas,TX,75001 +265042,Bose SoundSport Headphones,1,99.99,2019-10-31 10:52:00,563 Maple St, Dallas,TX,75001 +265043,Bose SoundSport Headphones,1,99.99,2019-10-28 16:28:00,195 South St, Dallas,TX,75001 +265044,27in FHD Monitor,1,149.99,2019-10-28 09:42:00,624 South St, New York City,NY,10001 +265045,Wired Headphones,1,11.99,2019-10-28 11:36:00,119 7th St, Los Angeles,CA,90001 +265046,AA Batteries (4-pack),3,3.84,2019-10-02 19:13:00,291 Main St, San Francisco,CA,94016 +265047,Wired Headphones,1,11.99,2019-10-03 12:42:00,549 Sunset St, Los Angeles,CA,90001 +265048,Google Phone,1,600.0,2019-10-05 08:08:00,27 5th St, Boston,MA,02215 +265049,Apple Airpods Headphones,1,150.0,2019-10-12 14:54:00,197 Walnut St, San Francisco,CA,94016 +265050,27in 4K Gaming Monitor,1,389.99,2019-10-15 11:21:00,457 River St, Los Angeles,CA,90001 +265051,Lightning Charging Cable,1,14.95,2019-10-07 19:53:00,151 Walnut St, Portland,OR,97035 +265052,Google Phone,1,600.0,2019-10-07 19:23:00,395 Chestnut St, New York City,NY,10001 +265053,Bose SoundSport Headphones,1,99.99,2019-10-31 19:59:00,29 Forest St, Los Angeles,CA,90001 +265054,Google Phone,1,600.0,2019-10-09 23:01:00,580 Madison St, Dallas,TX,75001 +265055,AAA Batteries (4-pack),1,2.99,2019-10-30 14:53:00,119 13th St, Dallas,TX,75001 +265056,AAA Batteries (4-pack),1,2.99,2019-10-31 14:28:00,338 9th St, San Francisco,CA,94016 +265057,Wired Headphones,1,11.99,2019-10-24 20:01:00,68 Wilson St, San Francisco,CA,94016 +265058,Lightning Charging Cable,1,14.95,2019-10-14 08:01:00,234 Jackson St, Los Angeles,CA,90001 +265059,Lightning Charging Cable,1,14.95,2019-10-22 21:26:00,418 6th St, Los Angeles,CA,90001 +265060,AA Batteries (4-pack),5,3.84,2019-10-08 18:49:00,25 14th St, Boston,MA,02215 +265061,Apple Airpods Headphones,1,150.0,2019-10-18 11:00:00,865 Jefferson St, Austin,TX,73301 +265062,Vareebadd Phone,1,400.0,2019-10-12 20:46:00,340 Ridge St, Los Angeles,CA,90001 +265063,USB-C Charging Cable,1,11.95,2019-10-16 10:58:00,953 Forest St, Dallas,TX,75001 +265064,AA Batteries (4-pack),1,3.84,2019-10-18 07:06:00,654 Johnson St, Austin,TX,73301 +265065,34in Ultrawide Monitor,1,379.99,2019-10-31 20:35:00,120 Wilson St, San Francisco,CA,94016 +265066,20in Monitor,1,109.99,2019-10-25 05:50:00,193 Lakeview St, Los Angeles,CA,90001 +265067,ThinkPad Laptop,1,999.99,2019-10-10 17:03:00,64 7th St, New York City,NY,10001 +265068,AAA Batteries (4-pack),1,2.99,2019-10-06 17:47:00,152 7th St, Dallas,TX,75001 +265069,AA Batteries (4-pack),1,3.84,2019-10-13 13:57:00,92 Elm St, Los Angeles,CA,90001 +265070,Lightning Charging Cable,1,14.95,2019-10-30 16:57:00,42 Sunset St, San Francisco,CA,94016 +265071,Google Phone,1,600.0,2019-10-22 12:03:00,572 Johnson St, Seattle,WA,98101 +265072,34in Ultrawide Monitor,1,379.99,2019-10-15 19:23:00,54 South St, Seattle,WA,98101 +265073,AAA Batteries (4-pack),1,2.99,2019-10-22 08:47:00,403 12th St, Los Angeles,CA,90001 +265074,AAA Batteries (4-pack),1,2.99,2019-10-09 18:15:00,79 9th St, San Francisco,CA,94016 +265075,Bose SoundSport Headphones,1,99.99,2019-10-17 16:53:00,385 Meadow St, New York City,NY,10001 +265076,USB-C Charging Cable,2,11.95,2019-10-21 23:42:00,678 Jefferson St, Seattle,WA,98101 +265077,Wired Headphones,1,11.99,2019-10-16 14:10:00,461 4th St, Los Angeles,CA,90001 +265078,AA Batteries (4-pack),1,3.84,2019-10-18 21:15:00,845 Spruce St, Seattle,WA,98101 +265079,ThinkPad Laptop,1,999.99,2019-10-01 10:03:00,526 Sunset St, Dallas,TX,75001 +265080,USB-C Charging Cable,1,11.95,2019-10-16 13:22:00,807 Main St, New York City,NY,10001 +265081,AA Batteries (4-pack),1,3.84,2019-10-10 09:27:00,888 Madison St, Atlanta,GA,30301 +265082,Apple Airpods Headphones,1,150.0,2019-10-09 12:01:00,929 Johnson St, Seattle,WA,98101 +265083,AAA Batteries (4-pack),1,2.99,2019-10-31 13:43:00,114 5th St, New York City,NY,10001 +265084,AA Batteries (4-pack),1,3.84,2019-10-26 20:13:00,384 Chestnut St, Atlanta,GA,30301 +265085,ThinkPad Laptop,1,999.99,2019-10-26 08:37:00,349 Hickory St, Atlanta,GA,30301 +265086,Lightning Charging Cable,1,14.95,2019-10-06 13:32:00,527 Highland St, San Francisco,CA,94016 +265087,Flatscreen TV,1,300.0,2019-10-20 21:58:00,725 Meadow St, Austin,TX,73301 +265088,Wired Headphones,2,11.99,2019-10-26 20:53:00,511 14th St, Los Angeles,CA,90001 +265089,Flatscreen TV,1,300.0,2019-10-10 19:38:00,154 South St, San Francisco,CA,94016 +265090,Wired Headphones,1,11.99,2019-10-13 11:09:00,335 Hickory St, Seattle,WA,98101 +265091,27in 4K Gaming Monitor,1,389.99,2019-10-03 13:09:00,637 Sunset St, Boston,MA,02215 +265092,Bose SoundSport Headphones,1,99.99,2019-10-12 09:59:00,809 Jackson St, Dallas,TX,75001 +265093,iPhone,1,700.0,2019-10-01 21:36:00,95 Lake St, New York City,NY,10001 +265093,Lightning Charging Cable,1,14.95,2019-10-01 21:36:00,95 Lake St, New York City,NY,10001 +265094,34in Ultrawide Monitor,1,379.99,2019-10-22 21:38:00,205 Adams St, San Francisco,CA,94016 +265095,Wired Headphones,1,11.99,2019-10-08 10:14:00,583 Park St, San Francisco,CA,94016 +265096,AAA Batteries (4-pack),3,2.99,2019-10-13 10:27:00,317 Maple St, Atlanta,GA,30301 +265097,Wired Headphones,1,11.99,2019-10-12 21:16:00,544 6th St, San Francisco,CA,94016 +265098,Flatscreen TV,1,300.0,2019-10-15 21:06:00,572 Maple St, Atlanta,GA,30301 +265099,Lightning Charging Cable,1,14.95,2019-10-29 22:58:00,997 Center St, Los Angeles,CA,90001 +265100,iPhone,1,700.0,2019-10-02 12:53:00,23 Adams St, Dallas,TX,75001 +265101,Lightning Charging Cable,1,14.95,2019-10-22 22:32:00,95 Jefferson St, San Francisco,CA,94016 +265102,Lightning Charging Cable,1,14.95,2019-10-29 01:19:00,387 Forest St, Austin,TX,73301 +265103,20in Monitor,1,109.99,2019-10-07 21:58:00,334 8th St, Los Angeles,CA,90001 +265104,Wired Headphones,1,11.99,2019-10-09 19:08:00,247 Main St, Seattle,WA,98101 +265105,Bose SoundSport Headphones,1,99.99,2019-10-22 14:24:00,804 13th St, San Francisco,CA,94016 +265106,27in 4K Gaming Monitor,1,389.99,2019-10-28 13:38:00,815 Spruce St, Atlanta,GA,30301 +265107,AA Batteries (4-pack),1,3.84,2019-10-23 09:53:00,936 Church St, New York City,NY,10001 +265108,Vareebadd Phone,1,400.0,2019-10-21 19:53:00,851 Highland St, Seattle,WA,98101 +265109,USB-C Charging Cable,1,11.95,2019-10-03 16:46:00,872 Church St, New York City,NY,10001 +265110,Wired Headphones,1,11.99,2019-10-19 16:31:00,735 8th St, Los Angeles,CA,90001 +265111,Wired Headphones,1,11.99,2019-10-24 10:51:00,896 Washington St, Los Angeles,CA,90001 +265112,iPhone,1,700.0,2019-10-23 11:07:00,598 Willow St, Portland,OR,97035 +265113,Bose SoundSport Headphones,1,99.99,2019-10-21 08:37:00,913 Pine St, New York City,NY,10001 +265114,Wired Headphones,1,11.99,2019-10-21 14:11:00,937 Walnut St, Los Angeles,CA,90001 +265115,iPhone,1,700.0,2019-10-11 21:48:00,817 14th St, Dallas,TX,75001 +265115,Lightning Charging Cable,1,14.95,2019-10-11 21:48:00,817 14th St, Dallas,TX,75001 +265116,AAA Batteries (4-pack),1,2.99,2019-10-31 11:01:00,689 13th St, Austin,TX,73301 +265117,20in Monitor,1,109.99,2019-10-23 13:50:00,279 4th St, Seattle,WA,98101 +265118,Wired Headphones,1,11.99,2019-10-31 22:17:00,330 Hickory St, Atlanta,GA,30301 +265119,Bose SoundSport Headphones,1,99.99,2019-10-04 16:27:00,506 14th St, Austin,TX,73301 +265120,Vareebadd Phone,1,400.0,2019-10-31 09:08:00,386 Church St, Los Angeles,CA,90001 +265121,AAA Batteries (4-pack),1,2.99,2019-10-14 18:45:00,565 Adams St, San Francisco,CA,94016 +265122,USB-C Charging Cable,1,11.95,2019-10-28 22:05:00,769 Lincoln St, Seattle,WA,98101 +265123,AAA Batteries (4-pack),1,2.99,2019-10-20 11:52:00,56 Cherry St, Los Angeles,CA,90001 +265124,USB-C Charging Cable,1,11.95,2019-10-13 03:37:00,100 Hickory St, Los Angeles,CA,90001 +265125,Flatscreen TV,1,300.0,2019-10-07 13:36:00,624 8th St, Boston,MA,02215 +265126,USB-C Charging Cable,1,11.95,2019-10-17 07:50:00,275 2nd St, New York City,NY,10001 +265127,AAA Batteries (4-pack),2,2.99,2019-10-26 20:56:00,726 Wilson St, Los Angeles,CA,90001 +265128,Lightning Charging Cable,1,14.95,2019-10-23 19:17:00,325 Jackson St, San Francisco,CA,94016 +265129,Wired Headphones,1,11.99,2019-10-08 20:08:00,602 5th St, Seattle,WA,98101 +265130,iPhone,1,700.0,2019-10-25 08:04:00,816 Park St, Los Angeles,CA,90001 +265131,Lightning Charging Cable,1,14.95,2019-10-27 08:01:00,874 Wilson St, San Francisco,CA,94016 +265132,Macbook Pro Laptop,1,1700.0,2019-10-29 18:45:00,242 Church St, Seattle,WA,98101 +265133,iPhone,1,700.0,2019-10-05 12:14:00,386 4th St, Seattle,WA,98101 +265134,iPhone,1,700.0,2019-10-03 23:11:00,874 Church St, Los Angeles,CA,90001 +265135,USB-C Charging Cable,1,11.95,2019-10-04 18:41:00,346 14th St, San Francisco,CA,94016 +265135,ThinkPad Laptop,1,999.99,2019-10-04 18:41:00,346 14th St, San Francisco,CA,94016 +265136,AA Batteries (4-pack),1,3.84,2019-10-18 14:49:00,196 Jackson St, Boston,MA,02215 +265137,27in FHD Monitor,1,149.99,2019-10-10 20:22:00,14 7th St, New York City,NY,10001 +265138,27in 4K Gaming Monitor,1,389.99,2019-10-18 22:20:00,543 Spruce St, Boston,MA,02215 +265139,AAA Batteries (4-pack),1,2.99,2019-10-10 04:35:00,854 Adams St, Atlanta,GA,30301 +265140,Bose SoundSport Headphones,1,99.99,2019-10-26 13:00:00,281 Johnson St, New York City,NY,10001 +265141,iPhone,1,700.0,2019-10-04 15:37:00,869 Dogwood St, New York City,NY,10001 +265142,Lightning Charging Cable,1,14.95,2019-10-12 11:38:00,413 Walnut St, Atlanta,GA,30301 +265143,Wired Headphones,2,11.99,2019-10-09 23:25:00,912 5th St, Boston,MA,02215 +265144,Lightning Charging Cable,1,14.95,2019-10-25 14:07:00,636 6th St, San Francisco,CA,94016 +265145,USB-C Charging Cable,1,11.95,2019-10-26 16:25:00,201 North St, Portland,OR,97035 +265146,USB-C Charging Cable,1,11.95,2019-10-16 13:06:00,856 Elm St, New York City,NY,10001 +265147,34in Ultrawide Monitor,1,379.99,2019-10-06 19:27:00,791 Adams St, Portland,ME,04101 +265148,AAA Batteries (4-pack),1,2.99,2019-10-31 12:10:00,61 Sunset St, San Francisco,CA,94016 +265149,USB-C Charging Cable,1,11.95,2019-10-26 15:38:00,881 6th St, San Francisco,CA,94016 +265150,USB-C Charging Cable,1,11.95,2019-10-01 20:40:00,698 Pine St, New York City,NY,10001 +265151,Macbook Pro Laptop,1,1700.0,2019-10-29 09:43:00,815 Walnut St, San Francisco,CA,94016 +265152,Bose SoundSport Headphones,1,99.99,2019-10-15 08:55:00,330 7th St, Seattle,WA,98101 +265153,USB-C Charging Cable,1,11.95,2019-10-23 10:10:00,675 Center St, Atlanta,GA,30301 +265154,iPhone,1,700.0,2019-10-28 18:06:00,758 Johnson St, Los Angeles,CA,90001 +265155,AAA Batteries (4-pack),4,2.99,2019-10-21 14:19:00,691 7th St, Austin,TX,73301 +265156,Flatscreen TV,1,300.0,2019-10-26 21:50:00,463 Lakeview St, Atlanta,GA,30301 +265157,Wired Headphones,1,11.99,2019-10-14 18:15:00,4 Walnut St, San Francisco,CA,94016 +265158,Macbook Pro Laptop,1,1700.0,2019-10-01 08:58:00,351 Pine St, Los Angeles,CA,90001 +265159,Wired Headphones,1,11.99,2019-10-29 22:49:00,44 Cedar St, Portland,OR,97035 +265160,AA Batteries (4-pack),1,3.84,2019-10-03 20:43:00,613 5th St, San Francisco,CA,94016 +265161,Wired Headphones,1,11.99,2019-10-10 08:21:00,348 Cedar St, Boston,MA,02215 +265162,Apple Airpods Headphones,1,150.0,2019-10-07 05:31:00,265 Spruce St, Atlanta,GA,30301 +265163,AAA Batteries (4-pack),2,2.99,2019-10-21 19:26:00,342 Wilson St, Los Angeles,CA,90001 +265164,AA Batteries (4-pack),1,3.84,2019-10-22 19:16:00,123 Madison St, Seattle,WA,98101 +265165,Apple Airpods Headphones,1,150.0,2019-10-22 10:49:00,291 Main St, Dallas,TX,75001 +265166,Flatscreen TV,1,300.0,2019-10-05 15:17:00,289 Lake St, New York City,NY,10001 +265167,Bose SoundSport Headphones,1,99.99,2019-10-09 21:56:00,453 Hickory St, Seattle,WA,98101 +265168,Bose SoundSport Headphones,1,99.99,2019-10-13 13:22:00,9 Hill St, Boston,MA,02215 +265169,Wired Headphones,1,11.99,2019-10-28 08:37:00,799 Ridge St, Los Angeles,CA,90001 +265170,27in 4K Gaming Monitor,1,389.99,2019-10-04 12:30:00,678 Jefferson St, New York City,NY,10001 +265171,Lightning Charging Cable,1,14.95,2019-10-25 14:41:00,952 Cherry St, Seattle,WA,98101 +265172,USB-C Charging Cable,1,11.95,2019-10-18 12:10:00,731 Lincoln St, Los Angeles,CA,90001 +265173,Lightning Charging Cable,1,14.95,2019-10-15 09:01:00,317 6th St, San Francisco,CA,94016 +265174,USB-C Charging Cable,1,11.95,2019-10-20 17:09:00,368 Hill St, Boston,MA,02215 +265175,AA Batteries (4-pack),1,3.84,2019-10-15 14:44:00,390 2nd St, Boston,MA,02215 +265176,AAA Batteries (4-pack),1,2.99,2019-10-20 17:10:00,541 1st St, Los Angeles,CA,90001 +265177,Apple Airpods Headphones,1,150.0,2019-10-05 13:49:00,242 Pine St, Boston,MA,02215 +265178,AAA Batteries (4-pack),2,2.99,2019-10-19 18:36:00,512 Cherry St, San Francisco,CA,94016 +265179,Wired Headphones,1,11.99,2019-10-29 12:12:00,336 Cherry St, Portland,OR,97035 +265180,Apple Airpods Headphones,1,150.0,2019-10-03 21:54:00,162 Lincoln St, Austin,TX,73301 +265181,iPhone,1,700.0,2019-10-21 09:05:00,228 Lincoln St, Portland,OR,97035 +265182,ThinkPad Laptop,1,999.99,2019-10-19 16:34:00,471 4th St, New York City,NY,10001 +265183,AA Batteries (4-pack),1,3.84,2019-10-27 15:55:00,709 12th St, Los Angeles,CA,90001 +265184,Wired Headphones,1,11.99,2019-10-30 14:18:00,315 Jackson St, Austin,TX,73301 +265185,AAA Batteries (4-pack),1,2.99,2019-10-09 13:46:00,951 Dogwood St, San Francisco,CA,94016 +265186,USB-C Charging Cable,2,11.95,2019-10-13 08:14:00,146 6th St, Dallas,TX,75001 +265187,Bose SoundSport Headphones,1,99.99,2019-10-18 18:41:00,383 Lakeview St, Los Angeles,CA,90001 +265188,AA Batteries (4-pack),1,3.84,2019-10-04 20:33:00,202 Maple St, Boston,MA,02215 +265189,AAA Batteries (4-pack),1,2.99,2019-10-17 08:05:00,662 Main St, Dallas,TX,75001 +265190,AAA Batteries (4-pack),1,2.99,2019-10-20 20:55:00,647 Washington St, Dallas,TX,75001 +265191,ThinkPad Laptop,1,999.99,2019-10-13 23:36:00,805 Willow St, Los Angeles,CA,90001 +265192,20in Monitor,1,109.99,2019-10-19 18:06:00,991 Hickory St, New York City,NY,10001 +265193,Google Phone,1,600.0,2019-10-08 20:26:00,463 12th St, Atlanta,GA,30301 +265193,USB-C Charging Cable,1,11.95,2019-10-08 20:26:00,463 12th St, Atlanta,GA,30301 +265194,USB-C Charging Cable,1,11.95,2019-10-21 14:29:00,55 12th St, Portland,ME,04101 +265195,ThinkPad Laptop,1,999.99,2019-10-09 18:05:00,253 Jackson St, Atlanta,GA,30301 +265196,Flatscreen TV,1,300.0,2019-10-06 00:10:00,70 1st St, Boston,MA,02215 +265197,AAA Batteries (4-pack),1,2.99,2019-10-19 09:50:00,160 11th St, Los Angeles,CA,90001 +265198,Wired Headphones,1,11.99,2019-10-22 10:17:00,279 1st St, Atlanta,GA,30301 +265199,AAA Batteries (4-pack),1,2.99,2019-10-09 06:55:00,962 2nd St, Portland,OR,97035 +265200,Wired Headphones,2,11.99,2019-10-08 10:44:00,507 6th St, Seattle,WA,98101 +265201,Lightning Charging Cable,1,14.95,2019-10-10 14:20:00,138 12th St, New York City,NY,10001 +265202,Apple Airpods Headphones,1,150.0,2019-10-01 20:38:00,885 Cherry St, Austin,TX,73301 +265203,Bose SoundSport Headphones,1,99.99,2019-10-24 14:17:00,61 Main St, Seattle,WA,98101 +265204,27in FHD Monitor,1,149.99,2019-10-15 15:30:00,128 Park St, Boston,MA,02215 +265205,Macbook Pro Laptop,1,1700.0,2019-10-29 11:38:00,575 Cedar St, San Francisco,CA,94016 +265206,AA Batteries (4-pack),1,3.84,2019-10-26 19:31:00,341 Hickory St, Los Angeles,CA,90001 +265207,Apple Airpods Headphones,1,150.0,2019-10-20 19:53:00,544 Lincoln St, New York City,NY,10001 +265208,Apple Airpods Headphones,1,150.0,2019-10-31 00:16:00,672 Lake St, San Francisco,CA,94016 +265209,AAA Batteries (4-pack),2,2.99,2019-10-02 01:06:00,509 Hickory St, Portland,ME,04101 +265210,Macbook Pro Laptop,1,1700.0,2019-10-01 12:18:00,947 Willow St, Boston,MA,02215 +265211,Flatscreen TV,1,300.0,2019-10-03 21:11:00,613 Chestnut St, New York City,NY,10001 +265212,Apple Airpods Headphones,1,150.0,2019-10-30 20:07:00,581 6th St, Portland,OR,97035 +265213,Apple Airpods Headphones,1,150.0,2019-10-10 10:17:00,662 Sunset St, Los Angeles,CA,90001 +265214,Wired Headphones,1,11.99,2019-10-20 07:25:00,878 1st St, San Francisco,CA,94016 +265215,AA Batteries (4-pack),3,3.84,2019-10-13 16:57:00,605 South St, San Francisco,CA,94016 +265216,USB-C Charging Cable,1,11.95,2019-10-11 10:28:00,323 Hickory St, Austin,TX,73301 +265217,27in 4K Gaming Monitor,1,389.99,2019-10-15 19:03:00,504 Hickory St, Atlanta,GA,30301 +265218,Wired Headphones,1,11.99,2019-10-10 19:18:00,365 Spruce St, New York City,NY,10001 +265219,27in 4K Gaming Monitor,1,389.99,2019-10-17 22:27:00,686 7th St, San Francisco,CA,94016 +265220,Apple Airpods Headphones,1,150.0,2019-10-29 08:34:00,165 Maple St, Atlanta,GA,30301 +265221,USB-C Charging Cable,1,11.95,2019-10-23 13:04:00,743 Jackson St, New York City,NY,10001 +265222,Bose SoundSport Headphones,1,99.99,2019-10-09 09:30:00,786 6th St, Seattle,WA,98101 +265223,Wired Headphones,1,11.99,2019-10-13 13:11:00,911 Meadow St, Portland,OR,97035 +265224,Lightning Charging Cable,1,14.95,2019-10-01 10:34:00,304 Highland St, Los Angeles,CA,90001 +265225,Wired Headphones,1,11.99,2019-10-22 12:32:00,599 Maple St, New York City,NY,10001 +265226,Bose SoundSport Headphones,1,99.99,2019-10-30 15:43:00,829 Jackson St, Los Angeles,CA,90001 +265227,Macbook Pro Laptop,1,1700.0,2019-10-28 23:40:00,88 Jefferson St, Los Angeles,CA,90001 +265228,AAA Batteries (4-pack),1,2.99,2019-10-23 09:15:00,238 2nd St, San Francisco,CA,94016 +265229,AA Batteries (4-pack),1,3.84,2019-10-25 11:37:00,911 Ridge St, Atlanta,GA,30301 +265230,Flatscreen TV,1,300.0,2019-10-08 22:00:00,102 Sunset St, New York City,NY,10001 +265231,34in Ultrawide Monitor,1,379.99,2019-10-31 18:03:00,270 South St, Los Angeles,CA,90001 +265232,Wired Headphones,1,11.99,2019-10-31 06:31:00,862 7th St, San Francisco,CA,94016 +265233,Apple Airpods Headphones,1,150.0,2019-10-23 21:22:00,714 12th St, Atlanta,GA,30301 +265234,iPhone,1,700.0,2019-10-08 21:27:00,767 Willow St, New York City,NY,10001 +265235,AA Batteries (4-pack),1,3.84,2019-10-31 08:52:00,829 Sunset St, New York City,NY,10001 +265236,AAA Batteries (4-pack),1,2.99,2019-10-15 10:09:00,255 13th St, San Francisco,CA,94016 +265237,AA Batteries (4-pack),1,3.84,2019-10-23 17:24:00,785 Lakeview St, Los Angeles,CA,90001 +265238,Wired Headphones,1,11.99,2019-10-23 19:15:00,220 Lincoln St, New York City,NY,10001 +265239,USB-C Charging Cable,1,11.95,2019-10-11 10:30:00,119 South St, San Francisco,CA,94016 +265240,27in 4K Gaming Monitor,1,389.99,2019-10-01 12:34:00,333 Cedar St, Los Angeles,CA,90001 +265241,AAA Batteries (4-pack),1,2.99,2019-10-29 21:29:00,530 Cedar St, Los Angeles,CA,90001 +265242,27in 4K Gaming Monitor,1,389.99,2019-10-28 20:19:00,539 Hickory St, New York City,NY,10001 +265243,AA Batteries (4-pack),1,3.84,2019-10-26 16:51:00,907 Willow St, Boston,MA,02215 +265244,AAA Batteries (4-pack),1,2.99,2019-10-26 18:23:00,882 Spruce St, San Francisco,CA,94016 +265245,Lightning Charging Cable,1,14.95,2019-10-01 08:33:00,104 5th St, New York City,NY,10001 +265246,AA Batteries (4-pack),1,3.84,2019-10-26 21:08:00,2 Sunset St, San Francisco,CA,94016 +265247,Wired Headphones,1,11.99,2019-10-22 11:50:00,844 Jackson St, Austin,TX,73301 +265248,Lightning Charging Cable,1,14.95,2019-10-02 12:00:00,797 Spruce St, New York City,NY,10001 +265249,Wired Headphones,1,11.99,2019-10-08 11:11:00,421 9th St, Boston,MA,02215 +265250,Google Phone,1,600.0,2019-10-04 22:03:00,761 6th St, New York City,NY,10001 +265251,Macbook Pro Laptop,1,1700.0,2019-10-14 15:07:00,318 8th St, San Francisco,CA,94016 +265252,34in Ultrawide Monitor,1,379.99,2019-10-10 18:00:00,717 Ridge St, San Francisco,CA,94016 +265253,Flatscreen TV,1,300.0,2019-10-04 11:35:00,852 Jackson St, Dallas,TX,75001 +265254,Apple Airpods Headphones,1,150.0,2019-10-19 22:03:00,169 Hickory St, New York City,NY,10001 +265255,AA Batteries (4-pack),1,3.84,2019-10-28 13:59:00,759 5th St, New York City,NY,10001 +265256,iPhone,1,700.0,2019-10-31 08:59:00,126 Hill St, Los Angeles,CA,90001 +265257,Lightning Charging Cable,1,14.95,2019-10-20 19:39:00,2 Adams St, San Francisco,CA,94016 +265258,Bose SoundSport Headphones,1,99.99,2019-10-01 13:46:00,642 Spruce St, San Francisco,CA,94016 +265259,Google Phone,1,600.0,2019-10-20 07:45:00,33 11th St, Los Angeles,CA,90001 +265260,Wired Headphones,1,11.99,2019-10-16 22:24:00,798 Johnson St, Dallas,TX,75001 +265261,USB-C Charging Cable,1,11.95,2019-10-21 17:23:00,867 Walnut St, Dallas,TX,75001 +265262,USB-C Charging Cable,1,11.95,2019-10-22 13:28:00,33 4th St, Boston,MA,02215 +265263,Wired Headphones,1,11.99,2019-10-18 16:31:00,571 Lincoln St, Portland,OR,97035 +265264,Flatscreen TV,1,300.0,2019-10-24 21:27:00,110 5th St, Los Angeles,CA,90001 +265265,AAA Batteries (4-pack),1,2.99,2019-10-27 12:58:00,803 North St, Los Angeles,CA,90001 +265266,iPhone,1,700.0,2019-10-29 19:27:00,716 Main St, San Francisco,CA,94016 +265266,Lightning Charging Cable,1,14.95,2019-10-29 19:27:00,716 Main St, San Francisco,CA,94016 +265267,AAA Batteries (4-pack),1,2.99,2019-10-07 07:44:00,345 Johnson St, Dallas,TX,75001 +265268,Bose SoundSport Headphones,1,99.99,2019-10-28 08:49:00,74 4th St, San Francisco,CA,94016 +265269,Lightning Charging Cable,1,14.95,2019-10-09 11:54:00,750 Highland St, Los Angeles,CA,90001 +265270,Google Phone,1,600.0,2019-10-08 06:23:00,743 River St, Seattle,WA,98101 +265271,Bose SoundSport Headphones,1,99.99,2019-10-17 11:23:00,241 Elm St, Los Angeles,CA,90001 +265272,Bose SoundSport Headphones,1,99.99,2019-10-23 23:21:00,366 Center St, Dallas,TX,75001 +265273,Lightning Charging Cable,1,14.95,2019-10-04 12:25:00,655 Johnson St, Los Angeles,CA,90001 +265274,AAA Batteries (4-pack),1,2.99,2019-10-28 19:07:00,350 Cherry St, San Francisco,CA,94016 +265275,iPhone,1,700.0,2019-10-23 14:26:00,702 Willow St, New York City,NY,10001 +265276,USB-C Charging Cable,1,11.95,2019-10-19 10:23:00,792 Hill St, New York City,NY,10001 +265277,Lightning Charging Cable,1,14.95,2019-10-08 21:24:00,980 Washington St, San Francisco,CA,94016 +265278,USB-C Charging Cable,1,11.95,2019-10-29 20:33:00,558 Wilson St, Boston,MA,02215 +265279,USB-C Charging Cable,1,11.95,2019-10-28 10:20:00,446 North St, Austin,TX,73301 +265280,Flatscreen TV,1,300.0,2019-10-03 12:08:00,291 1st St, Austin,TX,73301 +265281,Apple Airpods Headphones,1,150.0,2019-10-14 07:50:00,919 West St, Los Angeles,CA,90001 +265282,Apple Airpods Headphones,1,150.0,2019-10-17 12:42:00,916 West St, Seattle,WA,98101 +265283,Lightning Charging Cable,1,14.95,2019-10-02 01:09:00,227 Willow St, Los Angeles,CA,90001 +265284,Bose SoundSport Headphones,1,99.99,2019-10-04 19:43:00,841 Main St, Atlanta,GA,30301 +265285,USB-C Charging Cable,1,11.95,2019-10-24 18:06:00,82 Dogwood St, Atlanta,GA,30301 +265286,Wired Headphones,1,11.99,2019-10-01 10:18:00,736 Johnson St, San Francisco,CA,94016 +265287,iPhone,1,700.0,2019-10-23 12:42:00,535 12th St, Portland,OR,97035 +265287,Apple Airpods Headphones,1,150.0,2019-10-23 12:42:00,535 12th St, Portland,OR,97035 +265288,Bose SoundSport Headphones,1,99.99,2019-10-06 09:58:00,292 Dogwood St, Seattle,WA,98101 +265289,Bose SoundSport Headphones,1,99.99,2019-10-26 09:03:00,659 Lincoln St, Boston,MA,02215 +265290,USB-C Charging Cable,1,11.95,2019-10-03 01:19:00,281 Hickory St, Los Angeles,CA,90001 +265291,Bose SoundSport Headphones,1,99.99,2019-10-30 03:44:00,681 Church St, Seattle,WA,98101 +265292,Lightning Charging Cable,1,14.95,2019-10-13 08:54:00,63 Park St, Seattle,WA,98101 +265293,Lightning Charging Cable,1,14.95,2019-10-27 13:43:00,534 Cherry St, Los Angeles,CA,90001 +265294,34in Ultrawide Monitor,1,379.99,2019-10-18 10:17:00,513 7th St, Dallas,TX,75001 +265295,iPhone,1,700.0,2019-10-01 09:23:00,258 Center St, San Francisco,CA,94016 +265295,Wired Headphones,1,11.99,2019-10-01 09:23:00,258 Center St, San Francisco,CA,94016 +265296,AA Batteries (4-pack),1,3.84,2019-10-18 09:51:00,3 Lincoln St, New York City,NY,10001 +265297,USB-C Charging Cable,1,11.95,2019-10-22 00:16:00,298 Lake St, New York City,NY,10001 +265298,27in 4K Gaming Monitor,1,389.99,2019-10-05 19:55:00,241 10th St, Portland,ME,04101 +265299,AAA Batteries (4-pack),2,2.99,2019-10-24 14:07:00,172 Forest St, Los Angeles,CA,90001 +265300,AA Batteries (4-pack),1,3.84,2019-10-27 11:58:00,974 Lake St, New York City,NY,10001 +265301,USB-C Charging Cable,1,11.95,2019-10-28 16:11:00,19 Lakeview St, Atlanta,GA,30301 +265302,USB-C Charging Cable,1,11.95,2019-10-08 12:44:00,841 Walnut St, San Francisco,CA,94016 +265303,AAA Batteries (4-pack),1,2.99,2019-10-11 16:07:00,637 Pine St, Portland,OR,97035 +265304,Wired Headphones,1,11.99,2019-10-20 12:18:00,256 Lakeview St, Boston,MA,02215 +265305,Wired Headphones,1,11.99,2019-10-29 10:59:00,204 Sunset St, Los Angeles,CA,90001 +265306,AAA Batteries (4-pack),1,2.99,2019-10-24 14:54:00,193 Park St, San Francisco,CA,94016 +265307,Bose SoundSport Headphones,1,99.99,2019-10-08 13:17:00,631 Center St, Los Angeles,CA,90001 +265308,iPhone,1,700.0,2019-10-09 15:55:00,335 Adams St, Seattle,WA,98101 +265309,AA Batteries (4-pack),2,3.84,2019-10-20 20:48:00,257 Lakeview St, Atlanta,GA,30301 +265310,27in FHD Monitor,1,149.99,2019-10-05 11:13:00,303 Center St, Seattle,WA,98101 +265311,Lightning Charging Cable,1,14.95,2019-10-22 10:38:00,742 West St, San Francisco,CA,94016 +265312,Apple Airpods Headphones,1,150.0,2019-10-22 15:47:00,546 Wilson St, Los Angeles,CA,90001 +265313,USB-C Charging Cable,1,11.95,2019-10-21 16:06:00,239 6th St, Atlanta,GA,30301 +265314,Apple Airpods Headphones,1,150.0,2019-10-26 10:37:00,814 6th St, Boston,MA,02215 +265315,USB-C Charging Cable,1,11.95,2019-10-28 22:17:00,799 South St, San Francisco,CA,94016 +265316,AA Batteries (4-pack),1,3.84,2019-10-17 18:26:00,734 Pine St, Portland,OR,97035 +265317,AA Batteries (4-pack),1,3.84,2019-10-08 11:37:00,867 Hill St, Seattle,WA,98101 +265318,USB-C Charging Cable,1,11.95,2019-10-28 07:31:00,867 South St, San Francisco,CA,94016 +265319,27in 4K Gaming Monitor,1,389.99,2019-10-03 14:34:00,632 Hickory St, Dallas,TX,75001 +265320,AA Batteries (4-pack),1,3.84,2019-10-10 16:58:00,900 Willow St, Portland,OR,97035 +265321,AA Batteries (4-pack),1,3.84,2019-10-03 10:41:00,940 2nd St, Boston,MA,02215 +265322,AA Batteries (4-pack),1,3.84,2019-10-08 12:16:00,241 Jefferson St, Portland,OR,97035 +265323,Flatscreen TV,1,300.0,2019-10-16 17:46:00,291 7th St, Los Angeles,CA,90001 +265324,Wired Headphones,1,11.99,2019-10-13 21:51:00,101 Forest St, Seattle,WA,98101 +265325,AA Batteries (4-pack),1,3.84,2019-10-29 21:26:00,977 Lake St, San Francisco,CA,94016 +265326,iPhone,1,700.0,2019-10-05 16:44:00,164 Hill St, San Francisco,CA,94016 +265327,Wired Headphones,1,11.99,2019-10-27 18:56:00,902 12th St, Austin,TX,73301 +265328,Lightning Charging Cable,1,14.95,2019-10-16 12:47:00,945 Maple St, Atlanta,GA,30301 +265329,AAA Batteries (4-pack),1,2.99,2019-10-19 17:27:00,612 Church St, San Francisco,CA,94016 +265330,Lightning Charging Cable,1,14.95,2019-10-14 19:11:00,410 12th St, Los Angeles,CA,90001 +265331,27in 4K Gaming Monitor,1,389.99,2019-10-15 15:26:00,366 10th St, San Francisco,CA,94016 +265332,Apple Airpods Headphones,1,150.0,2019-10-14 15:23:00,892 Meadow St, Seattle,WA,98101 +265333,Macbook Pro Laptop,1,1700.0,2019-10-11 02:00:00,561 7th St, Atlanta,GA,30301 +265334,Flatscreen TV,1,300.0,2019-10-11 00:37:00,177 Hickory St, San Francisco,CA,94016 +265335,Lightning Charging Cable,1,14.95,2019-10-25 10:57:00,981 Hill St, Seattle,WA,98101 +265336,USB-C Charging Cable,1,11.95,2019-10-03 19:18:00,132 Washington St, San Francisco,CA,94016 +265337,iPhone,1,700.0,2019-10-20 15:59:00,84 Maple St, Atlanta,GA,30301 +265338,iPhone,1,700.0,2019-10-16 22:30:00,359 Lake St, Atlanta,GA,30301 +265339,27in 4K Gaming Monitor,1,389.99,2019-10-12 08:54:00,297 4th St, Portland,OR,97035 +265340,ThinkPad Laptop,1,999.99,2019-10-29 12:35:00,870 4th St, Seattle,WA,98101 +265341,Bose SoundSport Headphones,1,99.99,2019-10-02 07:01:00,503 4th St, Atlanta,GA,30301 +265342,Wired Headphones,1,11.99,2019-10-03 22:35:00,689 Cedar St, Seattle,WA,98101 +265343,iPhone,1,700.0,2019-10-21 14:25:00,454 Ridge St, Los Angeles,CA,90001 +265343,Apple Airpods Headphones,1,150.0,2019-10-21 14:25:00,454 Ridge St, Los Angeles,CA,90001 +265344,AA Batteries (4-pack),3,3.84,2019-10-22 13:11:00,178 10th St, Austin,TX,73301 +265345,Bose SoundSport Headphones,1,99.99,2019-10-08 14:41:00,309 Highland St, Los Angeles,CA,90001 +265346,AA Batteries (4-pack),2,3.84,2019-10-31 16:21:00,884 2nd St, San Francisco,CA,94016 +265347,USB-C Charging Cable,1,11.95,2019-10-13 18:55:00,419 South St, San Francisco,CA,94016 +265348,Lightning Charging Cable,1,14.95,2019-10-01 18:04:00,700 Chestnut St, Austin,TX,73301 +265349,27in FHD Monitor,1,149.99,2019-10-11 13:21:00,949 Park St, Boston,MA,02215 +265350,Wired Headphones,1,11.99,2019-10-20 20:07:00,294 8th St, Austin,TX,73301 +265351,AAA Batteries (4-pack),1,2.99,2019-10-15 15:47:00,643 Church St, New York City,NY,10001 +265352,AA Batteries (4-pack),1,3.84,2019-10-07 13:37:00,630 4th St, New York City,NY,10001 +265353,AA Batteries (4-pack),2,3.84,2019-10-07 15:27:00,492 13th St, Dallas,TX,75001 +265354,Wired Headphones,3,11.99,2019-10-19 13:48:00,284 Sunset St, San Francisco,CA,94016 +265355,34in Ultrawide Monitor,1,379.99,2019-10-17 14:23:00,330 Chestnut St, New York City,NY,10001 +265356,AA Batteries (4-pack),1,3.84,2019-10-12 06:40:00,323 Church St, Dallas,TX,75001 +265357,Wired Headphones,1,11.99,2019-10-10 14:34:00,634 7th St, Los Angeles,CA,90001 +265358,Wired Headphones,1,11.99,2019-10-10 13:46:00,153 Forest St, Los Angeles,CA,90001 +265359,Apple Airpods Headphones,2,150.0,2019-10-12 12:27:00,339 Center St, Portland,ME,04101 +265360,iPhone,1,700.0,2019-10-22 19:49:00,120 5th St, Portland,OR,97035 +265361,Flatscreen TV,1,300.0,2019-10-25 11:23:00,654 5th St, Atlanta,GA,30301 +265362,Google Phone,1,600.0,2019-10-13 18:21:00,265 5th St, Dallas,TX,75001 +265363,AAA Batteries (4-pack),1,2.99,2019-10-30 11:14:00,872 Highland St, Portland,OR,97035 +265364,AAA Batteries (4-pack),1,2.99,2019-10-04 23:51:00,689 Maple St, Austin,TX,73301 +265365,Lightning Charging Cable,1,14.95,2019-10-22 20:30:00,256 Wilson St, Boston,MA,02215 +265365,Wired Headphones,1,11.99,2019-10-22 20:30:00,256 Wilson St, Boston,MA,02215 +265366,AA Batteries (4-pack),1,3.84,2019-10-24 19:36:00,357 Ridge St, San Francisco,CA,94016 +265367,Wired Headphones,2,11.99,2019-10-02 20:14:00,522 Walnut St, Portland,OR,97035 +265368,Bose SoundSport Headphones,1,99.99,2019-10-10 19:19:00,714 Washington St, Atlanta,GA,30301 +265369,USB-C Charging Cable,1,11.95,2019-10-27 19:46:00,249 Elm St, Atlanta,GA,30301 +265370,AAA Batteries (4-pack),2,2.99,2019-10-27 10:43:00,818 13th St, San Francisco,CA,94016 +265371,AAA Batteries (4-pack),1,2.99,2019-10-06 13:41:00,568 North St, Los Angeles,CA,90001 +265372,AAA Batteries (4-pack),1,2.99,2019-10-19 19:37:00,439 Johnson St, New York City,NY,10001 +265373,Flatscreen TV,1,300.0,2019-10-09 23:32:00,876 Hill St, San Francisco,CA,94016 +265374,27in 4K Gaming Monitor,1,389.99,2019-10-23 19:49:00,987 Lake St, Boston,MA,02215 +265375,Lightning Charging Cable,1,14.95,2019-10-04 22:37:00,686 10th St, New York City,NY,10001 +265376,Wired Headphones,1,11.99,2019-10-21 11:32:00,79 Elm St, Seattle,WA,98101 +265377,Apple Airpods Headphones,1,150.0,2019-10-23 18:29:00,135 10th St, Los Angeles,CA,90001 +265378,Apple Airpods Headphones,1,150.0,2019-10-02 11:45:00,42 Washington St, Austin,TX,73301 +265379,Lightning Charging Cable,1,14.95,2019-10-25 11:56:00,389 Lake St, Los Angeles,CA,90001 +265380,Apple Airpods Headphones,1,150.0,2019-10-02 16:41:00,675 Walnut St, Los Angeles,CA,90001 +265381,Macbook Pro Laptop,1,1700.0,2019-10-08 21:10:00,16 9th St, Portland,ME,04101 +265382,Bose SoundSport Headphones,1,99.99,2019-10-03 00:44:00,752 Adams St, New York City,NY,10001 +265382,AAA Batteries (4-pack),3,2.99,2019-10-03 00:44:00,752 Adams St, New York City,NY,10001 +265383,AAA Batteries (4-pack),3,2.99,2019-10-05 09:44:00,951 Cedar St, Dallas,TX,75001 +265384,Bose SoundSport Headphones,1,99.99,2019-10-19 11:36:00,30 Johnson St, New York City,NY,10001 +265385,34in Ultrawide Monitor,1,379.99,2019-10-18 21:50:00,105 Cedar St, San Francisco,CA,94016 +265386,27in FHD Monitor,1,149.99,2019-10-05 00:27:00,258 Dogwood St, Boston,MA,02215 +265387,USB-C Charging Cable,1,11.95,2019-10-09 11:08:00,438 Hickory St, Boston,MA,02215 +265388,Wired Headphones,1,11.99,2019-10-30 14:49:00,229 Madison St, Atlanta,GA,30301 +265389,Google Phone,1,600.0,2019-10-09 17:53:00,680 Sunset St, San Francisco,CA,94016 +265390,Macbook Pro Laptop,1,1700.0,2019-10-28 19:35:00,617 Pine St, Dallas,TX,75001 +265391,Google Phone,1,600.0,2019-10-28 14:15:00,768 Elm St, San Francisco,CA,94016 +265392,Wired Headphones,1,11.99,2019-10-05 18:04:00,963 Forest St, San Francisco,CA,94016 +265393,Apple Airpods Headphones,1,150.0,2019-10-21 00:08:00,632 Highland St, Boston,MA,02215 +265394,Apple Airpods Headphones,1,150.0,2019-10-02 12:47:00,843 Wilson St, Dallas,TX,75001 +265395,Lightning Charging Cable,1,14.95,2019-10-17 15:40:00,920 Wilson St, San Francisco,CA,94016 +265396,20in Monitor,1,109.99,2019-10-12 14:34:00,544 8th St, Dallas,TX,75001 +265397,Google Phone,1,600.0,2019-10-11 16:26:00,698 5th St, New York City,NY,10001 +265398,Bose SoundSport Headphones,1,99.99,2019-10-21 12:56:00,51 Lakeview St, San Francisco,CA,94016 +265399,USB-C Charging Cable,2,11.95,2019-10-25 19:24:00,893 North St, New York City,NY,10001 +265400,Bose SoundSport Headphones,1,99.99,2019-10-04 20:57:00,711 Washington St, Los Angeles,CA,90001 +265401,ThinkPad Laptop,1,999.99,2019-10-18 10:24:00,239 Chestnut St, Boston,MA,02215 +265402,AA Batteries (4-pack),1,3.84,2019-10-14 18:08:00,293 Johnson St, San Francisco,CA,94016 +265403,Apple Airpods Headphones,1,150.0,2019-10-18 22:05:00,575 Lincoln St, Seattle,WA,98101 +265404,Lightning Charging Cable,1,14.95,2019-10-19 20:00:00,588 River St, Dallas,TX,75001 +265405,Bose SoundSport Headphones,1,99.99,2019-10-01 19:17:00,472 Pine St, Boston,MA,02215 +265406,AAA Batteries (4-pack),2,2.99,2019-10-18 14:38:00,591 Lincoln St, New York City,NY,10001 +265407,AAA Batteries (4-pack),1,2.99,2019-10-18 06:42:00,378 6th St, Austin,TX,73301 +265408,Lightning Charging Cable,1,14.95,2019-10-04 19:45:00,920 South St, Seattle,WA,98101 +265409,27in FHD Monitor,1,149.99,2019-10-08 13:27:00,709 Ridge St, San Francisco,CA,94016 +265410,Lightning Charging Cable,2,14.95,2019-10-20 16:07:00,104 West St, San Francisco,CA,94016 +265411,34in Ultrawide Monitor,1,379.99,2019-10-06 10:26:00,707 Walnut St, New York City,NY,10001 +265412,Lightning Charging Cable,1,14.95,2019-10-20 21:19:00,610 8th St, Los Angeles,CA,90001 +265413,Wired Headphones,2,11.99,2019-10-28 20:17:00,559 4th St, San Francisco,CA,94016 +265414,Google Phone,1,600.0,2019-10-22 10:54:00,130 Lincoln St, Dallas,TX,75001 +265415,AAA Batteries (4-pack),4,2.99,2019-10-20 14:56:00,819 Johnson St, Boston,MA,02215 +265416,Wired Headphones,1,11.99,2019-10-01 15:06:00,862 13th St, San Francisco,CA,94016 +265417,AA Batteries (4-pack),1,3.84,2019-10-04 15:10:00,821 Center St, Boston,MA,02215 +265418,Flatscreen TV,1,300.0,2019-10-15 22:02:00,103 10th St, Atlanta,GA,30301 +265419,LG Washing Machine,1,600.0,2019-10-26 12:43:00,249 Pine St, San Francisco,CA,94016 +265420,USB-C Charging Cable,1,11.95,2019-10-16 17:19:00,759 2nd St, Austin,TX,73301 +265421,AAA Batteries (4-pack),2,2.99,2019-10-01 15:58:00,696 Johnson St, San Francisco,CA,94016 +265422,ThinkPad Laptop,1,999.99,2019-10-09 16:59:00,169 Church St, Boston,MA,02215 +265423,Lightning Charging Cable,1,14.95,2019-10-13 10:03:00,770 Jackson St, New York City,NY,10001 +265424,27in 4K Gaming Monitor,1,389.99,2019-10-10 11:01:00,166 Willow St, Austin,TX,73301 +265425,Flatscreen TV,1,300.0,2019-10-02 10:37:00,895 Jefferson St, Austin,TX,73301 +265426,Google Phone,1,600.0,2019-10-23 14:07:00,777 Main St, San Francisco,CA,94016 +265427,Bose SoundSport Headphones,1,99.99,2019-10-19 12:35:00,853 Center St, San Francisco,CA,94016 +265427,Lightning Charging Cable,1,14.95,2019-10-19 12:35:00,853 Center St, San Francisco,CA,94016 +265428,Bose SoundSport Headphones,1,99.99,2019-10-05 17:09:00,840 14th St, San Francisco,CA,94016 +265429,34in Ultrawide Monitor,1,379.99,2019-10-20 18:28:00,86 Spruce St, San Francisco,CA,94016 +265430,27in FHD Monitor,1,149.99,2019-10-09 12:20:00,78 Church St, Los Angeles,CA,90001 +265431,Lightning Charging Cable,1,14.95,2019-10-31 13:06:00,605 Madison St, Los Angeles,CA,90001 +265432,34in Ultrawide Monitor,1,379.99,2019-10-29 22:11:00,756 Main St, San Francisco,CA,94016 +265433,Apple Airpods Headphones,1,150.0,2019-10-26 12:11:00,463 Johnson St, San Francisco,CA,94016 +265434,Apple Airpods Headphones,1,150.0,2019-10-24 07:11:00,190 Highland St, Los Angeles,CA,90001 +265435,AAA Batteries (4-pack),2,2.99,2019-10-17 15:44:00,542 Forest St, Los Angeles,CA,90001 +265436,AAA Batteries (4-pack),2,2.99,2019-10-18 07:45:00,476 Meadow St, San Francisco,CA,94016 +265437,AA Batteries (4-pack),1,3.84,2019-10-30 08:48:00,128 9th St, Boston,MA,02215 +265438,Lightning Charging Cable,1,14.95,2019-10-22 18:51:00,102 Cherry St, Dallas,TX,75001 +265439,Wired Headphones,1,11.99,2019-10-17 12:39:00,827 North St, Seattle,WA,98101 +265440,Wired Headphones,1,11.99,2019-10-04 01:14:00,669 Chestnut St, Boston,MA,02215 +265441,USB-C Charging Cable,1,11.95,2019-10-09 10:08:00,759 14th St, Atlanta,GA,30301 +265442,AA Batteries (4-pack),1,3.84,2019-10-03 18:14:00,778 Highland St, New York City,NY,10001 +265443,AA Batteries (4-pack),2,3.84,2019-10-11 10:40:00,716 Park St, New York City,NY,10001 +265444,USB-C Charging Cable,1,11.95,2019-10-22 12:44:00,688 1st St, San Francisco,CA,94016 +265445,AA Batteries (4-pack),2,3.84,2019-10-15 23:24:00,644 Chestnut St, New York City,NY,10001 +265446,Wired Headphones,1,11.99,2019-10-04 10:14:00,203 Forest St, San Francisco,CA,94016 +265447,AAA Batteries (4-pack),1,2.99,2019-10-29 21:00:00,256 Elm St, Austin,TX,73301 +265448,iPhone,1,700.0,2019-10-29 16:41:00,377 Meadow St, New York City,NY,10001 +265449,USB-C Charging Cable,1,11.95,2019-10-17 13:40:00,96 Willow St, Los Angeles,CA,90001 +265450,AAA Batteries (4-pack),3,2.99,2019-10-16 09:00:00,115 Lake St, Boston,MA,02215 +265451,Lightning Charging Cable,1,14.95,2019-10-06 19:26:00,799 Spruce St, Los Angeles,CA,90001 +265452,20in Monitor,1,109.99,2019-10-10 23:20:00,86 Hill St, Portland,OR,97035 +265453,USB-C Charging Cable,1,11.95,2019-10-25 11:39:00,42 Church St, Seattle,WA,98101 +265454,AAA Batteries (4-pack),1,2.99,2019-10-27 14:32:00,983 14th St, San Francisco,CA,94016 +265455,AA Batteries (4-pack),1,3.84,2019-10-16 08:09:00,329 Hill St, San Francisco,CA,94016 +265456,34in Ultrawide Monitor,1,379.99,2019-10-30 18:34:00,950 Hill St, Boston,MA,02215 +265457,ThinkPad Laptop,1,999.99,2019-10-01 14:37:00,31 5th St, Dallas,TX,75001 +265458,USB-C Charging Cable,1,11.95,2019-10-18 19:54:00,872 Dogwood St, Portland,OR,97035 +265459,Macbook Pro Laptop,1,1700.0,2019-10-14 02:30:00,747 Church St, New York City,NY,10001 +265460,Bose SoundSport Headphones,1,99.99,2019-10-27 11:45:00,285 Meadow St, Seattle,WA,98101 +265461,27in 4K Gaming Monitor,1,389.99,2019-10-10 06:35:00,423 South St, Portland,OR,97035 +265462,USB-C Charging Cable,1,11.95,2019-10-25 15:46:00,577 Sunset St, Boston,MA,02215 +265463,AA Batteries (4-pack),1,3.84,2019-10-18 08:38:00,141 Main St, Atlanta,GA,30301 +265464,Lightning Charging Cable,1,14.95,2019-10-22 11:53:00,514 Jefferson St, New York City,NY,10001 +265465,Bose SoundSport Headphones,1,99.99,2019-10-18 12:25:00,220 West St, Seattle,WA,98101 +265466,Wired Headphones,1,11.99,2019-10-12 01:13:00,804 13th St, Seattle,WA,98101 +265467,AA Batteries (4-pack),1,3.84,2019-10-22 12:52:00,824 Lincoln St, Dallas,TX,75001 +265468,Bose SoundSport Headphones,1,99.99,2019-10-01 14:45:00,47 Pine St, Portland,ME,04101 +265469,34in Ultrawide Monitor,1,379.99,2019-10-08 02:08:00,170 Madison St, New York City,NY,10001 +265470,Lightning Charging Cable,1,14.95,2019-10-06 20:07:00,203 10th St, Los Angeles,CA,90001 +265471,Lightning Charging Cable,1,14.95,2019-10-16 15:12:00,221 Maple St, San Francisco,CA,94016 +265472,iPhone,1,700.0,2019-10-16 20:16:00,195 Spruce St, Seattle,WA,98101 +265472,Wired Headphones,1,11.99,2019-10-16 20:16:00,195 Spruce St, Seattle,WA,98101 +265473,Wired Headphones,1,11.99,2019-10-04 11:56:00,972 West St, Boston,MA,02215 +265474,Wired Headphones,1,11.99,2019-10-10 20:35:00,641 Sunset St, San Francisco,CA,94016 +265475,USB-C Charging Cable,1,11.95,2019-10-30 21:42:00,213 9th St, New York City,NY,10001 +265476,Lightning Charging Cable,1,14.95,2019-10-16 06:56:00,348 Washington St, New York City,NY,10001 +265477,27in FHD Monitor,1,149.99,2019-10-19 12:03:00,334 Main St, Boston,MA,02215 +265478,USB-C Charging Cable,1,11.95,2019-10-03 22:06:00,537 Cedar St, Boston,MA,02215 +265479,Bose SoundSport Headphones,1,99.99,2019-10-13 15:24:00,476 Cedar St, New York City,NY,10001 +265480,Lightning Charging Cable,1,14.95,2019-10-23 15:41:00,341 Lakeview St, San Francisco,CA,94016 +265481,Vareebadd Phone,1,400.0,2019-10-24 01:46:00,807 Jackson St, Boston,MA,02215 +265482,Wired Headphones,1,11.99,2019-10-21 19:10:00,109 Lakeview St, Austin,TX,73301 +265483,Wired Headphones,1,11.99,2019-10-05 18:50:00,686 Washington St, Seattle,WA,98101 +265484,Macbook Pro Laptop,1,1700.0,2019-10-08 12:30:00,80 Ridge St, Dallas,TX,75001 +265485,27in FHD Monitor,1,149.99,2019-10-14 13:40:00,205 Elm St, Atlanta,GA,30301 +265486,Flatscreen TV,1,300.0,2019-10-11 09:59:00,259 Wilson St, New York City,NY,10001 +265487,Lightning Charging Cable,1,14.95,2019-10-10 19:36:00,2 Willow St, San Francisco,CA,94016 +265488,AAA Batteries (4-pack),1,2.99,2019-10-21 14:03:00,188 14th St, Dallas,TX,75001 +265489,Macbook Pro Laptop,1,1700.0,2019-10-23 10:29:00,4 Pine St, Dallas,TX,75001 +265490,iPhone,1,700.0,2019-10-30 11:05:00,902 13th St, Los Angeles,CA,90001 +265491,AAA Batteries (4-pack),1,2.99,2019-10-15 10:52:00,900 12th St, San Francisco,CA,94016 +265492,USB-C Charging Cable,1,11.95,2019-10-19 09:16:00,349 Center St, San Francisco,CA,94016 +265493,Flatscreen TV,1,300.0,2019-10-21 10:32:00,470 Maple St, New York City,NY,10001 +265494,Bose SoundSport Headphones,1,99.99,2019-10-29 17:09:00,538 Ridge St, Atlanta,GA,30301 +265495,Wired Headphones,1,11.99,2019-10-17 15:34:00,860 Highland St, Austin,TX,73301 +265496,iPhone,1,700.0,2019-10-11 16:55:00,137 Meadow St, San Francisco,CA,94016 +265497,USB-C Charging Cable,1,11.95,2019-10-11 16:32:00,245 9th St, Atlanta,GA,30301 +265498,USB-C Charging Cable,1,11.95,2019-10-27 16:58:00,731 Park St, San Francisco,CA,94016 +265499,Wired Headphones,1,11.99,2019-10-10 12:50:00,894 Jackson St, San Francisco,CA,94016 +265500,AAA Batteries (4-pack),1,2.99,2019-10-23 06:18:00,848 2nd St, Seattle,WA,98101 +265501,34in Ultrawide Monitor,1,379.99,2019-10-10 17:15:00,366 Cedar St, New York City,NY,10001 +265502,Bose SoundSport Headphones,1,99.99,2019-10-26 19:55:00,29 Forest St, San Francisco,CA,94016 +265503,20in Monitor,1,109.99,2019-10-10 15:12:00,990 Sunset St, Boston,MA,02215 +265504,USB-C Charging Cable,1,11.95,2019-10-03 07:29:00,511 Johnson St, San Francisco,CA,94016 +265505,Apple Airpods Headphones,1,150.0,2019-10-03 11:25:00,29 13th St, San Francisco,CA,94016 +265506,Wired Headphones,1,11.99,2019-10-24 13:25:00,711 1st St, San Francisco,CA,94016 +265507,LG Washing Machine,1,600.0,2019-10-25 13:03:00,273 Dogwood St, San Francisco,CA,94016 +265508,USB-C Charging Cable,1,11.95,2019-10-20 10:55:00,564 6th St, Atlanta,GA,30301 +265509,Apple Airpods Headphones,1,150.0,2019-10-29 17:04:00,120 Spruce St, Boston,MA,02215 +265510,USB-C Charging Cable,1,11.95,2019-10-15 08:27:00,890 Jackson St, Dallas,TX,75001 +265511,AAA Batteries (4-pack),1,2.99,2019-10-18 11:06:00,745 5th St, Los Angeles,CA,90001 +265512,27in 4K Gaming Monitor,1,389.99,2019-10-30 10:27:00,671 Spruce St, San Francisco,CA,94016 +265513,Apple Airpods Headphones,1,150.0,2019-10-22 13:49:00,22 Elm St, Atlanta,GA,30301 +265514,27in FHD Monitor,1,149.99,2019-10-04 20:26:00,609 South St, Portland,OR,97035 +265515,Wired Headphones,1,11.99,2019-10-31 10:57:00,806 Main St, San Francisco,CA,94016 +265516,USB-C Charging Cable,1,11.95,2019-10-07 19:26:00,768 6th St, Dallas,TX,75001 +265517,Apple Airpods Headphones,1,150.0,2019-10-23 21:33:00,854 6th St, Dallas,TX,75001 +265518,AA Batteries (4-pack),1,3.84,2019-10-15 09:33:00,92 Forest St, Los Angeles,CA,90001 +265519,34in Ultrawide Monitor,1,379.99,2019-10-27 20:15:00,582 Jackson St, Seattle,WA,98101 +265520,27in 4K Gaming Monitor,1,389.99,2019-10-09 09:10:00,479 Washington St, Austin,TX,73301 +265521,Wired Headphones,1,11.99,2019-10-26 20:15:00,655 Lakeview St, Seattle,WA,98101 +265522,AAA Batteries (4-pack),1,2.99,2019-10-27 22:23:00,643 11th St, Dallas,TX,75001 +265523,AA Batteries (4-pack),1,3.84,2019-10-01 11:52:00,484 Highland St, Austin,TX,73301 +265524,Vareebadd Phone,1,400.0,2019-10-09 21:09:00,177 Spruce St, San Francisco,CA,94016 +265525,LG Dryer,1,600.0,2019-10-12 18:34:00,882 Highland St, San Francisco,CA,94016 +265526,Lightning Charging Cable,1,14.95,2019-10-13 11:39:00,750 Cherry St, Seattle,WA,98101 +265527,Bose SoundSport Headphones,1,99.99,2019-10-24 13:34:00,309 Highland St, Boston,MA,02215 +265528,27in FHD Monitor,1,149.99,2019-10-27 16:26:00,699 1st St, New York City,NY,10001 +265529,AAA Batteries (4-pack),1,2.99,2019-10-14 15:33:00,870 Lincoln St, Austin,TX,73301 +265530,Lightning Charging Cable,1,14.95,2019-10-16 16:34:00,756 Elm St, Portland,ME,04101 +265531,AAA Batteries (4-pack),1,2.99,2019-10-24 19:52:00,801 Lakeview St, New York City,NY,10001 +265532,27in FHD Monitor,1,149.99,2019-10-10 20:30:00,359 12th St, Boston,MA,02215 +265533,Lightning Charging Cable,1,14.95,2019-10-22 15:28:00,129 Highland St, Los Angeles,CA,90001 +265534,AAA Batteries (4-pack),1,2.99,2019-10-13 23:35:00,303 8th St, San Francisco,CA,94016 +265535,AA Batteries (4-pack),1,3.84,2019-10-28 17:29:00,827 Lincoln St, New York City,NY,10001 +265536,AA Batteries (4-pack),1,3.84,2019-10-17 20:07:00,855 Chestnut St, New York City,NY,10001 +265537,Wired Headphones,1,11.99,2019-10-18 17:48:00,811 River St, New York City,NY,10001 +265538,Wired Headphones,1,11.99,2019-10-11 21:31:00,446 Dogwood St, Los Angeles,CA,90001 +265539,AA Batteries (4-pack),1,3.84,2019-10-19 12:10:00,15 West St, Dallas,TX,75001 +265540,USB-C Charging Cable,1,11.95,2019-10-10 10:44:00,145 Madison St, New York City,NY,10001 +265541,Apple Airpods Headphones,1,150.0,2019-10-15 09:39:00,277 11th St, San Francisco,CA,94016 +265542,Apple Airpods Headphones,1,150.0,2019-10-19 15:08:00,890 River St, Boston,MA,02215 +265543,AA Batteries (4-pack),1,3.84,2019-10-11 17:50:00,120 8th St, Portland,OR,97035 +265544,Lightning Charging Cable,1,14.95,2019-10-14 09:29:00,578 Church St, San Francisco,CA,94016 +265545,20in Monitor,1,109.99,2019-10-09 14:41:00,369 14th St, Seattle,WA,98101 +265546,Wired Headphones,1,11.99,2019-10-29 13:13:00,827 4th St, Los Angeles,CA,90001 +265547,Lightning Charging Cable,1,14.95,2019-10-17 21:26:00,585 Hill St, New York City,NY,10001 +265548,Lightning Charging Cable,1,14.95,2019-10-14 19:09:00,6 Pine St, Los Angeles,CA,90001 +265549,AAA Batteries (4-pack),1,2.99,2019-10-07 14:14:00,574 Elm St, Los Angeles,CA,90001 +265550,AAA Batteries (4-pack),2,2.99,2019-10-23 17:50:00,615 Hickory St, San Francisco,CA,94016 +265551,Vareebadd Phone,1,400.0,2019-10-25 11:51:00,601 9th St, Los Angeles,CA,90001 +265552,USB-C Charging Cable,1,11.95,2019-10-30 15:01:00,288 Lincoln St, San Francisco,CA,94016 +265553,Apple Airpods Headphones,1,150.0,2019-10-26 16:15:00,793 Cedar St, Boston,MA,02215 +265554,USB-C Charging Cable,1,11.95,2019-10-13 03:54:00,877 Cherry St, Atlanta,GA,30301 +265555,USB-C Charging Cable,1,11.95,2019-10-15 23:12:00,229 Adams St, San Francisco,CA,94016 +265556,USB-C Charging Cable,1,11.95,2019-10-09 16:34:00,942 Cherry St, San Francisco,CA,94016 +265557,Wired Headphones,1,11.99,2019-10-25 20:16:00,441 4th St, Seattle,WA,98101 +265558,Flatscreen TV,1,300.0,2019-10-17 19:22:00,842 Madison St, Austin,TX,73301 +265559,USB-C Charging Cable,2,11.95,2019-10-01 15:15:00,373 Lakeview St, New York City,NY,10001 +265560,Wired Headphones,1,11.99,2019-10-14 16:17:00,777 Cedar St, Boston,MA,02215 +265561,Wired Headphones,1,11.99,2019-10-09 00:04:00,972 Lakeview St, Los Angeles,CA,90001 +265562,Lightning Charging Cable,2,14.95,2019-10-13 03:22:00,593 6th St, Austin,TX,73301 +265563,Vareebadd Phone,1,400.0,2019-10-19 14:20:00,419 6th St, San Francisco,CA,94016 +265563,Wired Headphones,1,11.99,2019-10-19 14:20:00,419 6th St, San Francisco,CA,94016 +265564,AA Batteries (4-pack),1,3.84,2019-10-12 14:43:00,526 Walnut St, Portland,OR,97035 +265565,USB-C Charging Cable,1,11.95,2019-10-21 00:28:00,503 Dogwood St, Seattle,WA,98101 +265566,USB-C Charging Cable,1,11.95,2019-10-20 21:42:00,174 12th St, New York City,NY,10001 +265567,Wired Headphones,1,11.99,2019-10-28 08:10:00,451 1st St, New York City,NY,10001 +265568,AAA Batteries (4-pack),1,2.99,2019-10-19 19:09:00,812 Johnson St, Austin,TX,73301 +265569,Apple Airpods Headphones,1,150.0,2019-10-09 12:57:00,914 Sunset St, San Francisco,CA,94016 +265570,USB-C Charging Cable,1,11.95,2019-10-04 14:42:00,668 10th St, New York City,NY,10001 +265571,27in 4K Gaming Monitor,1,389.99,2019-10-31 11:12:00,999 Dogwood St, Los Angeles,CA,90001 +265572,27in 4K Gaming Monitor,1,389.99,2019-10-22 14:25:00,504 Washington St, Dallas,TX,75001 +265573,ThinkPad Laptop,1,999.99,2019-10-13 11:18:00,686 12th St, San Francisco,CA,94016 +265574,Bose SoundSport Headphones,1,99.99,2019-10-11 14:44:00,917 Meadow St, New York City,NY,10001 +265575,Macbook Pro Laptop,1,1700.0,2019-10-13 13:35:00,89 6th St, Los Angeles,CA,90001 +265576,AAA Batteries (4-pack),1,2.99,2019-10-24 15:28:00,218 13th St, San Francisco,CA,94016 +265577,Bose SoundSport Headphones,1,99.99,2019-10-28 12:25:00,617 Dogwood St, Los Angeles,CA,90001 +265578,Wired Headphones,1,11.99,2019-10-20 18:26:00,110 Elm St, Atlanta,GA,30301 +265579,Apple Airpods Headphones,1,150.0,2019-10-19 14:53:00,805 Jackson St, Atlanta,GA,30301 +265580,AAA Batteries (4-pack),1,2.99,2019-10-28 19:03:00,797 Chestnut St, New York City,NY,10001 +265581,27in FHD Monitor,1,149.99,2019-10-26 11:02:00,311 Main St, Los Angeles,CA,90001 +265582,Apple Airpods Headphones,1,150.0,2019-10-22 23:27:00,790 Madison St, Atlanta,GA,30301 +265583,Bose SoundSport Headphones,1,99.99,2019-10-29 14:18:00,87 10th St, San Francisco,CA,94016 +265584,Wired Headphones,1,11.99,2019-10-07 18:46:00,481 West St, Atlanta,GA,30301 +265585,27in 4K Gaming Monitor,1,389.99,2019-10-03 07:37:00,453 2nd St, Los Angeles,CA,90001 +265586,34in Ultrawide Monitor,1,379.99,2019-10-08 11:57:00,576 Adams St, Dallas,TX,75001 +265587,AAA Batteries (4-pack),1,2.99,2019-10-25 18:19:00,483 8th St, Boston,MA,02215 +265588,Lightning Charging Cable,1,14.95,2019-10-11 22:22:00,995 Lake St, San Francisco,CA,94016 +265589,Lightning Charging Cable,1,14.95,2019-10-15 00:37:00,819 4th St, Los Angeles,CA,90001 +265590,Bose SoundSport Headphones,1,99.99,2019-10-01 13:22:00,162 North St, Boston,MA,02215 +265591,27in FHD Monitor,1,149.99,2019-10-31 18:08:00,751 Cherry St, Seattle,WA,98101 +265592,27in 4K Gaming Monitor,1,389.99,2019-10-20 21:25:00,745 2nd St, New York City,NY,10001 +265593,Wired Headphones,1,11.99,2019-10-01 08:53:00,50 Madison St, New York City,NY,10001 +265594,AA Batteries (4-pack),1,3.84,2019-10-12 04:40:00,198 Forest St, Austin,TX,73301 +265595,Apple Airpods Headphones,1,150.0,2019-10-20 00:14:00,524 8th St, Los Angeles,CA,90001 +265596,Lightning Charging Cable,1,14.95,2019-10-04 16:04:00,631 Park St, San Francisco,CA,94016 +265597,Lightning Charging Cable,1,14.95,2019-10-18 10:53:00,654 2nd St, San Francisco,CA,94016 +265598,AAA Batteries (4-pack),1,2.99,2019-10-29 11:11:00,914 Washington St, New York City,NY,10001 +265599,USB-C Charging Cable,1,11.95,2019-10-03 14:16:00,37 River St, San Francisco,CA,94016 +265600,AA Batteries (4-pack),1,3.84,2019-10-19 22:36:00,144 Jackson St, Boston,MA,02215 +265601,Bose SoundSport Headphones,1,99.99,2019-10-23 00:05:00,107 Maple St, Portland,OR,97035 +265602,Google Phone,1,600.0,2019-10-31 16:38:00,858 Walnut St, Boston,MA,02215 +265603,Bose SoundSport Headphones,1,99.99,2019-10-02 22:21:00,386 West St, Austin,TX,73301 +265604,Wired Headphones,1,11.99,2019-10-24 19:54:00,706 Wilson St, Los Angeles,CA,90001 +265605,Lightning Charging Cable,1,14.95,2019-10-26 18:36:00,841 Ridge St, Portland,ME,04101 +265606,Google Phone,1,600.0,2019-10-31 16:17:00,852 Center St, Los Angeles,CA,90001 +265606,Bose SoundSport Headphones,1,99.99,2019-10-31 16:17:00,852 Center St, Los Angeles,CA,90001 +265607,iPhone,1,700.0,2019-10-27 16:11:00,83 Cedar St, Boston,MA,02215 +265607,Wired Headphones,1,11.99,2019-10-27 16:11:00,83 Cedar St, Boston,MA,02215 +265608,Apple Airpods Headphones,1,150.0,2019-10-17 22:24:00,685 7th St, San Francisco,CA,94016 +265609,iPhone,1,700.0,2019-10-14 18:51:00,832 5th St, San Francisco,CA,94016 +265610,Macbook Pro Laptop,1,1700.0,2019-10-07 19:48:00,864 9th St, Los Angeles,CA,90001 +265611,Apple Airpods Headphones,1,150.0,2019-10-29 06:37:00,999 Main St, Austin,TX,73301 +265612,Apple Airpods Headphones,1,150.0,2019-10-26 13:07:00,545 Cedar St, Austin,TX,73301 +265613,Wired Headphones,1,11.99,2019-10-06 20:08:00,620 4th St, Portland,OR,97035 +265614,iPhone,1,700.0,2019-10-10 16:11:00,246 Johnson St, New York City,NY,10001 +265615,AAA Batteries (4-pack),2,2.99,2019-10-29 16:58:00,523 Highland St, San Francisco,CA,94016 +265616,AAA Batteries (4-pack),1,2.99,2019-10-18 22:49:00,882 Hickory St, Atlanta,GA,30301 +265617,Apple Airpods Headphones,1,150.0,2019-10-16 00:42:00,844 Jefferson St, Atlanta,GA,30301 +265618,Bose SoundSport Headphones,1,99.99,2019-10-11 18:54:00,613 Lincoln St, Los Angeles,CA,90001 +265619,AAA Batteries (4-pack),5,2.99,2019-10-28 13:02:00,699 Jefferson St, San Francisco,CA,94016 +265620,AA Batteries (4-pack),1,3.84,2019-10-15 16:56:00,557 Lake St, Dallas,TX,75001 +265621,Apple Airpods Headphones,1,150.0,2019-10-10 20:49:00,561 Center St, Austin,TX,73301 +265622,AAA Batteries (4-pack),1,2.99,2019-10-13 19:10:00,419 Lakeview St, San Francisco,CA,94016 +265623,Apple Airpods Headphones,1,150.0,2019-10-28 14:01:00,48 Jefferson St, San Francisco,CA,94016 +265624,USB-C Charging Cable,1,11.95,2019-10-16 16:22:00,183 South St, Seattle,WA,98101 +265625,AAA Batteries (4-pack),1,2.99,2019-10-01 23:45:00,116 Main St, San Francisco,CA,94016 +265626,27in FHD Monitor,1,149.99,2019-10-16 17:22:00,572 Walnut St, New York City,NY,10001 +265627,AAA Batteries (4-pack),2,2.99,2019-10-22 22:36:00,19 Washington St, Boston,MA,02215 +265628,27in 4K Gaming Monitor,1,389.99,2019-10-20 11:46:00,515 10th St, San Francisco,CA,94016 +265629,USB-C Charging Cable,1,11.95,2019-10-06 22:55:00,547 10th St, Boston,MA,02215 +265630,ThinkPad Laptop,1,999.99,2019-10-24 23:08:00,381 Church St, Los Angeles,CA,90001 +265631,20in Monitor,1,109.99,2019-10-27 16:14:00,446 Forest St, Los Angeles,CA,90001 +265632,27in FHD Monitor,1,149.99,2019-10-22 19:40:00,702 Hickory St, New York City,NY,10001 +265633,AAA Batteries (4-pack),2,2.99,2019-10-27 10:46:00,265 Park St, Seattle,WA,98101 +265634,AA Batteries (4-pack),1,3.84,2019-10-15 16:05:00,319 Walnut St, Los Angeles,CA,90001 +265635,Apple Airpods Headphones,1,150.0,2019-10-07 17:43:00,413 Forest St, Los Angeles,CA,90001 +265636,Bose SoundSport Headphones,1,99.99,2019-10-05 21:46:00,773 Meadow St, San Francisco,CA,94016 +265637,AA Batteries (4-pack),2,3.84,2019-10-06 11:55:00,988 Hickory St, Boston,MA,02215 +265638,iPhone,1,700.0,2019-10-24 11:22:00,178 13th St, Boston,MA,02215 +265638,Lightning Charging Cable,1,14.95,2019-10-24 11:22:00,178 13th St, Boston,MA,02215 +265639,Lightning Charging Cable,1,14.95,2019-10-22 11:10:00,972 Willow St, Dallas,TX,75001 +265640,Wired Headphones,1,11.99,2019-10-28 12:56:00,60 13th St, New York City,NY,10001 +265641,34in Ultrawide Monitor,1,379.99,2019-10-20 17:31:00,789 8th St, San Francisco,CA,94016 +265642,USB-C Charging Cable,2,11.95,2019-10-12 17:36:00,740 Pine St, Los Angeles,CA,90001 +265643,Apple Airpods Headphones,1,150.0,2019-10-13 21:08:00,11 10th St, Seattle,WA,98101 +265644,AA Batteries (4-pack),6,3.84,2019-10-12 13:02:00,441 11th St, Los Angeles,CA,90001 +265645,Wired Headphones,1,11.99,2019-10-08 23:24:00,900 Lincoln St, Boston,MA,02215 +265646,USB-C Charging Cable,1,11.95,2019-10-13 19:07:00,803 10th St, San Francisco,CA,94016 +265647,Wired Headphones,1,11.99,2019-10-25 11:44:00,212 11th St, New York City,NY,10001 +265648,AAA Batteries (4-pack),2,2.99,2019-10-16 07:48:00,278 Spruce St, Atlanta,GA,30301 +265649,Lightning Charging Cable,1,14.95,2019-10-23 10:25:00,852 Madison St, New York City,NY,10001 +265650,ThinkPad Laptop,1,999.99,2019-10-11 12:15:00,388 12th St, San Francisco,CA,94016 +265651,Flatscreen TV,1,300.0,2019-10-29 18:35:00,577 Chestnut St, San Francisco,CA,94016 +265652,AA Batteries (4-pack),1,3.84,2019-10-11 11:23:00,788 Washington St, Los Angeles,CA,90001 +265653,Apple Airpods Headphones,1,150.0,2019-10-24 09:49:00,737 West St, San Francisco,CA,94016 +265654,AAA Batteries (4-pack),1,2.99,2019-10-16 21:19:00,731 Lakeview St, Seattle,WA,98101 +265655,34in Ultrawide Monitor,1,379.99,2019-10-26 22:40:00,863 Ridge St, San Francisco,CA,94016 +265656,Lightning Charging Cable,1,14.95,2019-10-02 20:55:00,708 Elm St, Austin,TX,73301 +265657,USB-C Charging Cable,1,11.95,2019-10-28 23:03:00,280 River St, Atlanta,GA,30301 +265658,Apple Airpods Headphones,1,150.0,2019-10-01 22:27:00,165 Cedar St, San Francisco,CA,94016 +265659,USB-C Charging Cable,1,11.95,2019-10-08 21:47:00,666 Washington St, New York City,NY,10001 +265660,Apple Airpods Headphones,1,150.0,2019-10-16 10:51:00,494 Jackson St, San Francisco,CA,94016 +265661,Apple Airpods Headphones,1,150.0,2019-10-12 21:24:00,114 1st St, Los Angeles,CA,90001 +265662,Lightning Charging Cable,1,14.95,2019-10-29 19:55:00,196 11th St, New York City,NY,10001 +265663,34in Ultrawide Monitor,1,379.99,2019-10-31 15:25:00,563 Forest St, Dallas,TX,75001 +265664,Lightning Charging Cable,1,14.95,2019-10-03 10:01:00,739 Johnson St, Atlanta,GA,30301 +265665,Bose SoundSport Headphones,1,99.99,2019-10-25 20:05:00,11 Willow St, Portland,ME,04101 +265666,Wired Headphones,1,11.99,2019-10-21 09:02:00,203 5th St, San Francisco,CA,94016 +265667,Wired Headphones,1,11.99,2019-10-03 09:44:00,785 Dogwood St, San Francisco,CA,94016 +265668,Apple Airpods Headphones,1,150.0,2019-10-27 14:18:00,741 Lake St, Boston,MA,02215 +265669,20in Monitor,1,109.99,2019-10-13 15:12:00,446 Chestnut St, Los Angeles,CA,90001 +265670,Google Phone,1,600.0,2019-10-12 20:30:00,137 Maple St, San Francisco,CA,94016 +265670,Wired Headphones,1,11.99,2019-10-12 20:30:00,137 Maple St, San Francisco,CA,94016 +265671,AAA Batteries (4-pack),1,2.99,2019-10-15 21:15:00,166 Meadow St, Atlanta,GA,30301 +265672,iPhone,1,700.0,2019-10-20 14:26:00,204 Wilson St, San Francisco,CA,94016 +265673,34in Ultrawide Monitor,1,379.99,2019-10-18 00:42:00,545 West St, Los Angeles,CA,90001 +265674,Lightning Charging Cable,1,14.95,2019-10-24 14:35:00,645 Church St, Los Angeles,CA,90001 +265674,Bose SoundSport Headphones,1,99.99,2019-10-24 14:35:00,645 Church St, Los Angeles,CA,90001 +265675,Lightning Charging Cable,1,14.95,2019-10-29 13:48:00,585 South St, New York City,NY,10001 +265676,Wired Headphones,1,11.99,2019-10-17 14:48:00,229 14th St, San Francisco,CA,94016 +265677,AA Batteries (4-pack),2,3.84,2019-10-23 10:36:00,438 Willow St, Boston,MA,02215 +265678,ThinkPad Laptop,1,999.99,2019-10-04 13:35:00,570 West St, Atlanta,GA,30301 +265679,Lightning Charging Cable,1,14.95,2019-10-03 07:57:00,910 9th St, Atlanta,GA,30301 +265679,Wired Headphones,1,11.99,2019-10-03 07:57:00,910 9th St, Atlanta,GA,30301 +265680,USB-C Charging Cable,1,11.95,2019-10-25 19:53:00,280 13th St, New York City,NY,10001 +265681,Wired Headphones,1,11.99,2019-10-31 16:52:00,19 Jackson St, San Francisco,CA,94016 +265682,AA Batteries (4-pack),1,3.84,2019-10-11 11:49:00,336 Ridge St, Los Angeles,CA,90001 +265683,Bose SoundSport Headphones,1,99.99,2019-10-23 18:22:00,689 6th St, San Francisco,CA,94016 +265684,AAA Batteries (4-pack),1,2.99,2019-10-26 07:17:00,402 6th St, San Francisco,CA,94016 +265685,Lightning Charging Cable,1,14.95,2019-10-05 07:28:00,79 Lake St, San Francisco,CA,94016 +265686,AAA Batteries (4-pack),2,2.99,2019-10-14 00:16:00,140 Chestnut St, Boston,MA,02215 +265687,USB-C Charging Cable,1,11.95,2019-10-23 13:54:00,671 Meadow St, San Francisco,CA,94016 +265688,AA Batteries (4-pack),1,3.84,2019-10-22 18:54:00,98 Lincoln St, Boston,MA,02215 +265689,Wired Headphones,1,11.99,2019-10-17 11:44:00,633 14th St, Los Angeles,CA,90001 +265690,AA Batteries (4-pack),1,3.84,2019-10-12 13:28:00,232 13th St, Los Angeles,CA,90001 +265691,Apple Airpods Headphones,1,150.0,2019-10-21 21:31:00,603 Highland St, Los Angeles,CA,90001 +265692,Lightning Charging Cable,1,14.95,2019-10-04 18:35:00,829 Chestnut St, Atlanta,GA,30301 +265693,USB-C Charging Cable,1,11.95,2019-10-15 09:15:00,392 Spruce St, New York City,NY,10001 +265694,Bose SoundSport Headphones,1,99.99,2019-10-30 18:38:00,358 Spruce St, Boston,MA,02215 +265695,AA Batteries (4-pack),2,3.84,2019-10-02 20:34:00,368 Lakeview St, Portland,OR,97035 +265696,Bose SoundSport Headphones,1,99.99,2019-10-11 15:03:00,331 6th St, Atlanta,GA,30301 +265697,Lightning Charging Cable,1,14.95,2019-10-09 11:37:00,965 10th St, Boston,MA,02215 +265698,Google Phone,1,600.0,2019-10-11 01:45:00,50 Center St, Portland,ME,04101 +265699,AA Batteries (4-pack),1,3.84,2019-10-09 14:12:00,441 2nd St, Austin,TX,73301 +265700,Wired Headphones,1,11.99,2019-10-19 10:34:00,945 Cedar St, New York City,NY,10001 +265701,Wired Headphones,1,11.99,2019-10-04 19:01:00,718 Hickory St, San Francisco,CA,94016 +265702,27in FHD Monitor,1,149.99,2019-10-03 14:26:00,892 Church St, Atlanta,GA,30301 +265703,Lightning Charging Cable,1,14.95,2019-10-08 14:38:00,705 Sunset St, New York City,NY,10001 +265704,27in 4K Gaming Monitor,1,389.99,2019-10-23 14:48:00,453 9th St, San Francisco,CA,94016 +265705,AA Batteries (4-pack),2,3.84,2019-10-25 19:27:00,355 14th St, Los Angeles,CA,90001 +265706,Flatscreen TV,1,300.0,2019-10-08 15:09:00,949 2nd St, San Francisco,CA,94016 +265707,AAA Batteries (4-pack),1,2.99,2019-10-29 06:22:00,94 Walnut St, San Francisco,CA,94016 +265708,Lightning Charging Cable,1,14.95,2019-10-23 02:48:00,942 Maple St, San Francisco,CA,94016 +265709,Bose SoundSport Headphones,1,99.99,2019-10-15 20:17:00,760 Cherry St, Los Angeles,CA,90001 +265710,Bose SoundSport Headphones,1,99.99,2019-10-30 14:07:00,539 Ridge St, San Francisco,CA,94016 +265711,Lightning Charging Cable,1,14.95,2019-10-07 17:09:00,262 Walnut St, San Francisco,CA,94016 +265712,Lightning Charging Cable,1,14.95,2019-10-21 13:39:00,788 Maple St, Dallas,TX,75001 +265713,USB-C Charging Cable,1,11.95,2019-10-29 18:38:00,246 West St, Seattle,WA,98101 +265714,AAA Batteries (4-pack),1,2.99,2019-10-06 16:08:00,349 9th St, Los Angeles,CA,90001 +265715,Lightning Charging Cable,1,14.95,2019-10-10 10:30:00,524 Spruce St, San Francisco,CA,94016 +265716,AA Batteries (4-pack),1,3.84,2019-10-11 08:25:00,356 Hickory St, Boston,MA,02215 +265717,Apple Airpods Headphones,1,150.0,2019-10-19 10:53:00,883 Church St, Seattle,WA,98101 +265718,Flatscreen TV,1,300.0,2019-10-04 21:07:00,806 Jackson St, San Francisco,CA,94016 +265719,Macbook Pro Laptop,1,1700.0,2019-10-22 12:38:00,498 11th St, San Francisco,CA,94016 +265720,Bose SoundSport Headphones,1,99.99,2019-10-07 20:16:00,1 Adams St, Los Angeles,CA,90001 +265721,iPhone,1,700.0,2019-10-16 23:25:00,131 7th St, New York City,NY,10001 +265722,AA Batteries (4-pack),2,3.84,2019-10-04 17:39:00,798 1st St, San Francisco,CA,94016 +265723,AA Batteries (4-pack),1,3.84,2019-10-06 09:50:00,881 Church St, Austin,TX,73301 +265724,Apple Airpods Headphones,1,150.0,2019-10-17 18:55:00,694 Adams St, Atlanta,GA,30301 +265725,Lightning Charging Cable,1,14.95,2019-10-09 08:52:00,619 Chestnut St, Los Angeles,CA,90001 +265726,27in FHD Monitor,1,149.99,2019-10-23 12:02:00,138 Madison St, San Francisco,CA,94016 +265727,Apple Airpods Headphones,1,150.0,2019-10-06 14:55:00,733 North St, New York City,NY,10001 +265728,AA Batteries (4-pack),1,3.84,2019-10-15 16:38:00,480 Elm St, New York City,NY,10001 +265729,Macbook Pro Laptop,1,1700.0,2019-10-29 22:30:00,765 Elm St, Portland,OR,97035 +265730,Lightning Charging Cable,1,14.95,2019-10-20 19:15:00,257 Willow St, San Francisco,CA,94016 +265731,USB-C Charging Cable,1,11.95,2019-10-07 09:51:00,416 Johnson St, Dallas,TX,75001 +265732,AAA Batteries (4-pack),2,2.99,2019-10-16 14:58:00,990 Maple St, Dallas,TX,75001 +265733,AAA Batteries (4-pack),1,2.99,2019-10-23 14:32:00,417 Maple St, New York City,NY,10001 +265734,AA Batteries (4-pack),1,3.84,2019-10-01 18:41:00,516 Lake St, San Francisco,CA,94016 +265735,Lightning Charging Cable,1,14.95,2019-10-22 18:35:00,546 Pine St, Boston,MA,02215 +265736,Bose SoundSport Headphones,1,99.99,2019-10-06 04:17:00,12 Adams St, Dallas,TX,75001 +265736,Wired Headphones,1,11.99,2019-10-06 04:17:00,12 Adams St, Dallas,TX,75001 +265737,34in Ultrawide Monitor,1,379.99,2019-10-21 15:49:00,59 4th St, Boston,MA,02215 +265738,USB-C Charging Cable,1,11.95,2019-10-22 14:30:00,169 Chestnut St, Los Angeles,CA,90001 +265739,Flatscreen TV,1,300.0,2019-10-05 17:36:00,441 Lakeview St, Austin,TX,73301 +265740,iPhone,1,700.0,2019-10-01 10:16:00,224 Walnut St, Los Angeles,CA,90001 +265740,Apple Airpods Headphones,1,150.0,2019-10-01 10:16:00,224 Walnut St, Los Angeles,CA,90001 +265741,Wired Headphones,1,11.99,2019-10-21 21:58:00,999 Lincoln St, Boston,MA,02215 +265742,Apple Airpods Headphones,1,150.0,2019-10-20 13:43:00,486 Main St, Seattle,WA,98101 +265743,ThinkPad Laptop,1,999.99,2019-10-06 19:48:00,527 Elm St, New York City,NY,10001 +265744,Wired Headphones,1,11.99,2019-10-24 15:45:00,536 Lake St, Austin,TX,73301 +265745,Wired Headphones,1,11.99,2019-10-04 09:42:00,180 10th St, San Francisco,CA,94016 +265746,USB-C Charging Cable,1,11.95,2019-10-29 10:57:00,345 Johnson St, Boston,MA,02215 +265747,Macbook Pro Laptop,1,1700.0,2019-10-02 19:59:00,712 Hill St, New York City,NY,10001 +265748,AA Batteries (4-pack),1,3.84,2019-10-06 09:36:00,352 Lincoln St, Portland,OR,97035 +265749,Bose SoundSport Headphones,1,99.99,2019-10-29 13:52:00,742 Washington St, Seattle,WA,98101 +265750,Lightning Charging Cable,1,14.95,2019-10-10 17:31:00,675 Cherry St, San Francisco,CA,94016 +265751,AA Batteries (4-pack),1,3.84,2019-10-27 06:36:00,525 Sunset St, New York City,NY,10001 +265752,AAA Batteries (4-pack),3,2.99,2019-10-08 19:44:00,828 Hickory St, New York City,NY,10001 +265753,AA Batteries (4-pack),2,3.84,2019-10-03 19:25:00,855 Cedar St, San Francisco,CA,94016 +265754,USB-C Charging Cable,2,11.95,2019-10-23 20:00:00,993 Maple St, San Francisco,CA,94016 +265755,34in Ultrawide Monitor,1,379.99,2019-10-26 20:18:00,367 Hill St, New York City,NY,10001 +265756,AAA Batteries (4-pack),2,2.99,2019-10-27 19:06:00,975 West St, New York City,NY,10001 +265757,Lightning Charging Cable,1,14.95,2019-10-04 20:13:00,931 Wilson St, Seattle,WA,98101 +265758,20in Monitor,1,109.99,2019-10-02 21:09:00,147 14th St, Seattle,WA,98101 +265759,AAA Batteries (4-pack),1,2.99,2019-10-26 15:25:00,75 Forest St, New York City,NY,10001 +265760,USB-C Charging Cable,1,11.95,2019-10-07 18:08:00,302 Hickory St, Portland,OR,97035 +265761,20in Monitor,1,109.99,2019-10-06 01:10:00,564 Chestnut St, Los Angeles,CA,90001 +265762,Bose SoundSport Headphones,1,99.99,2019-10-08 20:52:00,478 Maple St, San Francisco,CA,94016 +265763,Lightning Charging Cable,1,14.95,2019-10-08 19:55:00,699 8th St, Los Angeles,CA,90001 +265764,Wired Headphones,1,11.99,2019-10-01 15:30:00,880 5th St, New York City,NY,10001 +265765,USB-C Charging Cable,1,11.95,2019-10-24 15:32:00,660 Center St, Boston,MA,02215 +265766,Apple Airpods Headphones,1,150.0,2019-10-16 21:38:00,431 Cherry St, Dallas,TX,75001 +265767,Wired Headphones,1,11.99,2019-10-31 00:18:00,18 12th St, Austin,TX,73301 +265768,USB-C Charging Cable,1,11.95,2019-10-02 11:27:00,827 8th St, Dallas,TX,75001 +265769,Vareebadd Phone,1,400.0,2019-10-30 08:38:00,960 Church St, Dallas,TX,75001 +265770,AA Batteries (4-pack),1,3.84,2019-10-10 17:01:00,290 Church St, Portland,OR,97035 +265771,AAA Batteries (4-pack),2,2.99,2019-10-17 20:38:00,819 Forest St, Portland,OR,97035 +265772,AAA Batteries (4-pack),1,2.99,2019-10-18 11:17:00,518 1st St, Los Angeles,CA,90001 +265773,USB-C Charging Cable,1,11.95,2019-10-21 18:33:00,949 5th St, Boston,MA,02215 +265774,Google Phone,1,600.0,2019-10-20 12:25:00,882 Spruce St, Atlanta,GA,30301 +265775,Bose SoundSport Headphones,1,99.99,2019-10-15 11:12:00,33 West St, San Francisco,CA,94016 +265776,AA Batteries (4-pack),1,3.84,2019-10-10 18:30:00,66 14th St, Los Angeles,CA,90001 +265777,USB-C Charging Cable,1,11.95,2019-10-02 21:32:00,462 Dogwood St, Los Angeles,CA,90001 +265778,USB-C Charging Cable,1,11.95,2019-10-06 21:07:00,513 Cherry St, San Francisco,CA,94016 +265779,34in Ultrawide Monitor,1,379.99,2019-10-24 21:17:00,482 10th St, Seattle,WA,98101 +265780,AAA Batteries (4-pack),1,2.99,2019-10-10 14:33:00,516 Dogwood St, Los Angeles,CA,90001 +265781,Lightning Charging Cable,3,14.95,2019-10-20 10:42:00,798 8th St, Atlanta,GA,30301 +265782,27in 4K Gaming Monitor,1,389.99,2019-10-30 02:26:00,183 Church St, Atlanta,GA,30301 +265783,USB-C Charging Cable,1,11.95,2019-10-15 18:52:00,908 Church St, Atlanta,GA,30301 +265784,LG Dryer,1,600.0,2019-10-31 20:09:00,618 River St, Los Angeles,CA,90001 +265785,AAA Batteries (4-pack),2,2.99,2019-10-03 19:58:00,947 Highland St, Seattle,WA,98101 +265786,Flatscreen TV,1,300.0,2019-10-23 11:04:00,677 Pine St, San Francisco,CA,94016 +265787,ThinkPad Laptop,1,999.99,2019-10-07 21:50:00,166 River St, Austin,TX,73301 +265788,AA Batteries (4-pack),1,3.84,2019-10-14 15:11:00,45 13th St, Los Angeles,CA,90001 +265789,AA Batteries (4-pack),1,3.84,2019-10-02 01:22:00,30 Adams St, Los Angeles,CA,90001 +265790,Lightning Charging Cable,1,14.95,2019-10-22 14:08:00,66 Wilson St, San Francisco,CA,94016 +265791,ThinkPad Laptop,1,999.99,2019-10-11 11:56:00,256 Spruce St, Atlanta,GA,30301 +265792,20in Monitor,1,109.99,2019-10-11 18:36:00,264 Park St, New York City,NY,10001 +265793,20in Monitor,1,109.99,2019-10-02 12:58:00,483 River St, New York City,NY,10001 +265794,Vareebadd Phone,1,400.0,2019-10-10 15:17:00,245 West St, San Francisco,CA,94016 +265795,Macbook Pro Laptop,1,1700.0,2019-10-12 12:59:00,852 Johnson St, New York City,NY,10001 +265796,Flatscreen TV,1,300.0,2019-10-15 12:17:00,810 Cedar St, Portland,OR,97035 +265797,Apple Airpods Headphones,1,150.0,2019-10-10 11:16:00,312 Dogwood St, Dallas,TX,75001 +265798,Wired Headphones,1,11.99,2019-10-27 16:33:00,405 Madison St, Boston,MA,02215 +265799,AAA Batteries (4-pack),1,2.99,2019-10-07 21:08:00,247 8th St, Seattle,WA,98101 +265800,Lightning Charging Cable,1,14.95,2019-10-21 20:09:00,909 Jackson St, Atlanta,GA,30301 +265801,Bose SoundSport Headphones,1,99.99,2019-10-24 11:41:00,499 River St, San Francisco,CA,94016 +265802,Lightning Charging Cable,1,14.95,2019-10-30 23:25:00,204 7th St, San Francisco,CA,94016 +265803,Apple Airpods Headphones,1,150.0,2019-10-06 21:03:00,158 Chestnut St, Boston,MA,02215 +265804,Apple Airpods Headphones,1,150.0,2019-10-18 20:22:00,197 Lake St, New York City,NY,10001 +265805,Lightning Charging Cable,1,14.95,2019-10-11 03:25:00,852 8th St, San Francisco,CA,94016 +265806,AA Batteries (4-pack),1,3.84,2019-10-25 20:05:00,174 South St, Boston,MA,02215 +265807,27in 4K Gaming Monitor,1,389.99,2019-10-19 22:22:00,280 Jefferson St, Los Angeles,CA,90001 +265808,Bose SoundSport Headphones,1,99.99,2019-10-09 16:40:00,800 Johnson St, Dallas,TX,75001 +265809,AAA Batteries (4-pack),1,2.99,2019-10-25 13:55:00,478 13th St, Los Angeles,CA,90001 +265810,ThinkPad Laptop,1,999.99,2019-10-12 22:12:00,946 Chestnut St, Austin,TX,73301 +265811,Apple Airpods Headphones,1,150.0,2019-10-20 15:04:00,366 Meadow St, San Francisco,CA,94016 +265812,AAA Batteries (4-pack),1,2.99,2019-10-23 15:11:00,479 8th St, San Francisco,CA,94016 +265813,Lightning Charging Cable,1,14.95,2019-10-15 21:09:00,496 Hickory St, Boston,MA,02215 +265814,USB-C Charging Cable,1,11.95,2019-10-27 19:43:00,434 Cedar St, Dallas,TX,75001 +265815,Lightning Charging Cable,1,14.95,2019-10-29 18:17:00,424 9th St, San Francisco,CA,94016 +265816,Lightning Charging Cable,1,14.95,2019-10-29 16:17:00,211 North St, Dallas,TX,75001 +265817,Bose SoundSport Headphones,1,99.99,2019-10-23 16:29:00,235 1st St, Dallas,TX,75001 +265818,AA Batteries (4-pack),1,3.84,2019-10-23 15:27:00,218 Wilson St, San Francisco,CA,94016 +265819,USB-C Charging Cable,1,11.95,2019-10-21 23:22:00,604 11th St, New York City,NY,10001 +265820,AA Batteries (4-pack),2,3.84,2019-10-11 00:33:00,401 5th St, Seattle,WA,98101 +265821,20in Monitor,1,109.99,2019-10-18 20:35:00,905 River St, Boston,MA,02215 +265822,Wired Headphones,1,11.99,2019-10-05 19:37:00,612 Jefferson St, New York City,NY,10001 +265823,Bose SoundSport Headphones,1,99.99,2019-10-30 09:39:00,760 13th St, New York City,NY,10001 +265824,AAA Batteries (4-pack),3,2.99,2019-10-31 18:51:00,613 Washington St, Boston,MA,02215 +265825,Google Phone,1,600.0,2019-10-16 11:53:00,477 Jackson St, Portland,OR,97035 +265825,Wired Headphones,1,11.99,2019-10-16 11:53:00,477 Jackson St, Portland,OR,97035 +265826,Apple Airpods Headphones,1,150.0,2019-10-02 12:50:00,39 West St, New York City,NY,10001 +265827,Vareebadd Phone,1,400.0,2019-10-03 06:55:00,839 Ridge St, San Francisco,CA,94016 +265828,AA Batteries (4-pack),1,3.84,2019-10-27 20:00:00,232 1st St, Portland,OR,97035 +265829,AA Batteries (4-pack),1,3.84,2019-10-19 18:34:00,655 12th St, Atlanta,GA,30301 +265830,USB-C Charging Cable,1,11.95,2019-10-04 14:32:00,183 Park St, Atlanta,GA,30301 +265831,AA Batteries (4-pack),1,3.84,2019-10-23 19:16:00,323 Walnut St, Los Angeles,CA,90001 +265832,Wired Headphones,1,11.99,2019-10-03 13:26:00,963 Park St, New York City,NY,10001 +265833,iPhone,1,700.0,2019-10-20 07:02:00,581 2nd St, San Francisco,CA,94016 +265833,Lightning Charging Cable,1,14.95,2019-10-20 07:02:00,581 2nd St, San Francisco,CA,94016 +265834,20in Monitor,1,109.99,2019-10-08 16:56:00,956 Adams St, San Francisco,CA,94016 +265835,Lightning Charging Cable,1,14.95,2019-10-13 19:15:00,296 12th St, San Francisco,CA,94016 +265836,Lightning Charging Cable,1,14.95,2019-10-08 21:20:00,657 1st St, San Francisco,CA,94016 +265837,Flatscreen TV,1,300.0,2019-10-06 14:51:00,364 Adams St, San Francisco,CA,94016 +265838,Wired Headphones,1,11.99,2019-10-22 14:47:00,813 North St, Atlanta,GA,30301 +265839,AAA Batteries (4-pack),1,2.99,2019-10-27 22:21:00,54 South St, San Francisco,CA,94016 +265840,Wired Headphones,1,11.99,2019-10-23 13:03:00,328 River St, Austin,TX,73301 +265841,AAA Batteries (4-pack),2,2.99,2019-10-02 19:27:00,978 Hickory St, Atlanta,GA,30301 +265842,AA Batteries (4-pack),1,3.84,2019-10-20 21:20:00,443 Lincoln St, San Francisco,CA,94016 +265843,Bose SoundSport Headphones,1,99.99,2019-10-01 14:27:00,481 1st St, San Francisco,CA,94016 +265844,Bose SoundSport Headphones,1,99.99,2019-10-12 12:04:00,833 Park St, San Francisco,CA,94016 +265845,Google Phone,1,600.0,2019-10-10 08:10:00,244 14th St, Los Angeles,CA,90001 +265846,Bose SoundSport Headphones,1,99.99,2019-10-31 13:57:00,584 North St, Los Angeles,CA,90001 +265847,USB-C Charging Cable,1,11.95,2019-10-02 10:21:00,606 Lakeview St, San Francisco,CA,94016 +265848,Bose SoundSport Headphones,1,99.99,2019-10-08 11:39:00,875 Spruce St, Atlanta,GA,30301 +265849,AA Batteries (4-pack),1,3.84,2019-10-01 14:05:00,922 Hickory St, San Francisco,CA,94016 +265850,USB-C Charging Cable,1,11.95,2019-10-03 09:39:00,748 Willow St, Los Angeles,CA,90001 +265851,Bose SoundSport Headphones,1,99.99,2019-10-02 22:41:00,302 Park St, Boston,MA,02215 +265852,AAA Batteries (4-pack),1,2.99,2019-10-08 09:02:00,970 Pine St, San Francisco,CA,94016 +265853,Apple Airpods Headphones,1,150.0,2019-10-26 15:30:00,265 12th St, New York City,NY,10001 +265854,27in 4K Gaming Monitor,1,389.99,2019-10-30 11:34:00,739 Pine St, Los Angeles,CA,90001 +265855,27in 4K Gaming Monitor,1,389.99,2019-10-13 11:57:00,693 Walnut St, Portland,OR,97035 +265856,27in FHD Monitor,1,149.99,2019-10-10 13:13:00,844 Forest St, New York City,NY,10001 +265857,AA Batteries (4-pack),2,3.84,2019-10-27 21:26:00,4 Willow St, San Francisco,CA,94016 +265858,Apple Airpods Headphones,1,150.0,2019-10-15 21:15:00,616 Meadow St, Los Angeles,CA,90001 +265859,AA Batteries (4-pack),1,3.84,2019-10-07 22:15:00,700 Meadow St, Austin,TX,73301 +265860,Apple Airpods Headphones,1,150.0,2019-10-09 10:20:00,982 1st St, New York City,NY,10001 +265861,Wired Headphones,1,11.99,2019-10-14 12:22:00,958 14th St, Los Angeles,CA,90001 +265862,Wired Headphones,1,11.99,2019-10-13 13:00:00,629 Maple St, Boston,MA,02215 +265863,iPhone,1,700.0,2019-10-02 16:27:00,609 7th St, Austin,TX,73301 +265863,AA Batteries (4-pack),1,3.84,2019-10-02 16:27:00,609 7th St, Austin,TX,73301 +265864,Wired Headphones,1,11.99,2019-10-22 20:41:00,848 Pine St, Boston,MA,02215 +265865,USB-C Charging Cable,1,11.95,2019-10-04 18:36:00,391 Madison St, New York City,NY,10001 +265866,AA Batteries (4-pack),1,3.84,2019-10-15 19:57:00,130 5th St, Los Angeles,CA,90001 +265867,Lightning Charging Cable,2,14.95,2019-10-31 22:17:00,632 Highland St, Seattle,WA,98101 +265868,Apple Airpods Headphones,1,150.0,2019-10-17 12:28:00,642 Chestnut St, New York City,NY,10001 +265869,AA Batteries (4-pack),1,3.84,2019-10-10 21:52:00,37 Church St, San Francisco,CA,94016 +265870,USB-C Charging Cable,1,11.95,2019-10-25 19:15:00,97 Spruce St, Boston,MA,02215 +265871,Bose SoundSport Headphones,1,99.99,2019-10-15 23:05:00,448 10th St, San Francisco,CA,94016 +265872,Lightning Charging Cable,1,14.95,2019-10-30 16:40:00,404 Pine St, Los Angeles,CA,90001 +265873,Apple Airpods Headphones,1,150.0,2019-10-16 10:25:00,792 Main St, Portland,OR,97035 +265874,Apple Airpods Headphones,1,150.0,2019-10-14 11:02:00,686 10th St, San Francisco,CA,94016 +265875,AA Batteries (4-pack),1,3.84,2019-10-10 09:51:00,200 Chestnut St, Seattle,WA,98101 +265876,27in 4K Gaming Monitor,1,389.99,2019-10-12 21:33:00,399 Pine St, Los Angeles,CA,90001 +265877,Bose SoundSport Headphones,1,99.99,2019-10-06 19:06:00,403 Main St, Los Angeles,CA,90001 +265878,Lightning Charging Cable,1,14.95,2019-10-11 05:07:00,761 Elm St, Austin,TX,73301 +265879,20in Monitor,1,109.99,2019-10-13 11:48:00,950 Center St, New York City,NY,10001 +265880,USB-C Charging Cable,3,11.95,2019-10-13 19:17:00,547 12th St, Boston,MA,02215 +265881,iPhone,1,700.0,2019-10-09 13:52:00,308 Meadow St, New York City,NY,10001 +265882,27in 4K Gaming Monitor,1,389.99,2019-10-19 08:24:00,109 13th St, San Francisco,CA,94016 +265883,Lightning Charging Cable,1,14.95,2019-10-15 09:17:00,181 South St, Los Angeles,CA,90001 +265884,Wired Headphones,1,11.99,2019-10-19 22:52:00,112 14th St, Portland,OR,97035 +265885,Lightning Charging Cable,1,14.95,2019-10-27 05:55:00,405 Lake St, New York City,NY,10001 +265886,Bose SoundSport Headphones,1,99.99,2019-10-10 11:07:00,892 Jackson St, New York City,NY,10001 +265887,Google Phone,1,600.0,2019-10-27 20:57:00,597 Hickory St, Los Angeles,CA,90001 +265888,34in Ultrawide Monitor,1,379.99,2019-10-19 11:27:00,344 Chestnut St, Atlanta,GA,30301 +265889,USB-C Charging Cable,1,11.95,2019-10-02 09:57:00,196 Hill St, Dallas,TX,75001 +265890,Lightning Charging Cable,2,14.95,2019-10-03 15:01:00,992 Elm St, San Francisco,CA,94016 +265891,Lightning Charging Cable,1,14.95,2019-10-09 20:11:00,824 Jefferson St, San Francisco,CA,94016 +265892,ThinkPad Laptop,1,999.99,2019-10-04 12:31:00,862 Madison St, Boston,MA,02215 +265893,Apple Airpods Headphones,1,150.0,2019-10-23 15:55:00,592 Madison St, San Francisco,CA,94016 +265894,Lightning Charging Cable,1,14.95,2019-10-02 20:00:00,416 Elm St, San Francisco,CA,94016 +265895,Apple Airpods Headphones,1,150.0,2019-10-28 02:22:00,723 9th St, San Francisco,CA,94016 +265896,Google Phone,1,600.0,2019-10-29 10:52:00,295 Sunset St, Seattle,WA,98101 +265897,Wired Headphones,1,11.99,2019-10-15 14:26:00,736 Lakeview St, Boston,MA,02215 +265897,AAA Batteries (4-pack),1,2.99,2019-10-15 14:26:00,736 Lakeview St, Boston,MA,02215 +265898,AA Batteries (4-pack),1,3.84,2019-10-04 11:20:00,157 7th St, New York City,NY,10001 +265899,iPhone,1,700.0,2019-10-06 21:10:00,71 Walnut St, San Francisco,CA,94016 +265900,20in Monitor,1,109.99,2019-10-19 08:46:00,649 Willow St, San Francisco,CA,94016 +265901,AA Batteries (4-pack),1,3.84,2019-10-05 21:11:00,727 Sunset St, New York City,NY,10001 +265901,Apple Airpods Headphones,1,150.0,2019-10-05 21:11:00,727 Sunset St, New York City,NY,10001 +265902,AA Batteries (4-pack),1,3.84,2019-10-29 11:46:00,928 Meadow St, Portland,OR,97035 +265903,27in FHD Monitor,1,149.99,2019-10-20 13:58:00,595 2nd St, Portland,OR,97035 +265904,Lightning Charging Cable,1,14.95,2019-10-28 12:32:00,671 Main St, Portland,OR,97035 +265905,Wired Headphones,1,11.99,2019-10-02 05:20:00,245 Lake St, Boston,MA,02215 +265906,AA Batteries (4-pack),2,3.84,2019-10-07 06:29:00,457 Cedar St, Los Angeles,CA,90001 +265907,Bose SoundSport Headphones,1,99.99,2019-10-20 14:29:00,212 Lake St, Austin,TX,73301 +265908,Macbook Pro Laptop,1,1700.0,2019-10-31 14:34:00,990 10th St, San Francisco,CA,94016 +265909,AA Batteries (4-pack),2,3.84,2019-10-15 13:51:00,753 Hickory St, San Francisco,CA,94016 +265910,Lightning Charging Cable,1,14.95,2019-10-21 12:41:00,772 North St, New York City,NY,10001 +265911,Lightning Charging Cable,1,14.95,2019-10-25 14:29:00,124 Hickory St, Boston,MA,02215 +265912,Google Phone,1,600.0,2019-10-06 16:36:00,293 Jackson St, Los Angeles,CA,90001 +265912,Bose SoundSport Headphones,1,99.99,2019-10-06 16:36:00,293 Jackson St, Los Angeles,CA,90001 +265913,27in 4K Gaming Monitor,1,389.99,2019-10-02 12:31:00,306 Cherry St, New York City,NY,10001 +265914,Macbook Pro Laptop,1,1700.0,2019-10-07 20:20:00,821 11th St, New York City,NY,10001 +265915,Wired Headphones,1,11.99,2019-10-09 02:40:00,430 Hill St, Los Angeles,CA,90001 +265916,AA Batteries (4-pack),2,3.84,2019-10-28 05:39:00,669 10th St, New York City,NY,10001 +265917,Bose SoundSport Headphones,1,99.99,2019-10-17 16:16:00,66 South St, Los Angeles,CA,90001 +265918,20in Monitor,1,109.99,2019-10-29 22:51:00,882 South St, New York City,NY,10001 +265919,34in Ultrawide Monitor,1,379.99,2019-10-20 14:38:00,46 Cedar St, Atlanta,GA,30301 +265920,Flatscreen TV,1,300.0,2019-10-18 21:21:00,663 Willow St, New York City,NY,10001 +265921,27in 4K Gaming Monitor,1,389.99,2019-10-16 19:42:00,788 Johnson St, Austin,TX,73301 +265922,Wired Headphones,1,11.99,2019-10-12 18:55:00,723 West St, San Francisco,CA,94016 +265923,AAA Batteries (4-pack),1,2.99,2019-10-03 19:17:00,275 Johnson St, Boston,MA,02215 +265924,Macbook Pro Laptop,1,1700.0,2019-10-17 23:19:00,317 11th St, Boston,MA,02215 +265925,27in FHD Monitor,1,149.99,2019-10-09 14:17:00,974 Walnut St, Los Angeles,CA,90001 +265926,Bose SoundSport Headphones,1,99.99,2019-10-04 21:44:00,731 Forest St, San Francisco,CA,94016 +265927,AAA Batteries (4-pack),1,2.99,2019-10-21 16:56:00,765 Cherry St, Portland,OR,97035 +265928,AA Batteries (4-pack),1,3.84,2019-10-14 19:59:00,600 9th St, Atlanta,GA,30301 +265929,AA Batteries (4-pack),2,3.84,2019-10-21 17:03:00,798 9th St, Austin,TX,73301 +265930,USB-C Charging Cable,1,11.95,2019-10-03 12:33:00,826 6th St, Los Angeles,CA,90001 +265931,Lightning Charging Cable,2,14.95,2019-10-25 18:25:00,539 Main St, Portland,OR,97035 +265932,Apple Airpods Headphones,1,150.0,2019-10-06 01:55:00,889 Church St, New York City,NY,10001 +265933,AAA Batteries (4-pack),1,2.99,2019-10-17 18:03:00,674 11th St, Boston,MA,02215 +265934,AA Batteries (4-pack),1,3.84,2019-10-22 22:24:00,509 Willow St, New York City,NY,10001 +265935,34in Ultrawide Monitor,1,379.99,2019-10-17 17:02:00,989 Jackson St, Atlanta,GA,30301 +265936,USB-C Charging Cable,1,11.95,2019-10-12 18:14:00,298 Lake St, San Francisco,CA,94016 +265937,Vareebadd Phone,1,400.0,2019-10-05 08:38:00,771 Wilson St, San Francisco,CA,94016 +265938,USB-C Charging Cable,1,11.95,2019-10-07 13:37:00,389 Spruce St, Atlanta,GA,30301 +265939,Vareebadd Phone,1,400.0,2019-10-14 15:10:00,644 4th St, San Francisco,CA,94016 +265940,Lightning Charging Cable,1,14.95,2019-10-30 13:26:00,962 Chestnut St, Los Angeles,CA,90001 +265941,Wired Headphones,2,11.99,2019-10-15 11:34:00,213 Meadow St, San Francisco,CA,94016 +265942,Macbook Pro Laptop,1,1700.0,2019-10-11 18:33:00,7 Washington St, New York City,NY,10001 +265943,AAA Batteries (4-pack),2,2.99,2019-10-08 10:24:00,881 Johnson St, Seattle,WA,98101 +265944,AAA Batteries (4-pack),5,2.99,2019-10-14 10:12:00,660 Sunset St, Los Angeles,CA,90001 +265945,Lightning Charging Cable,1,14.95,2019-10-25 06:55:00,388 Chestnut St, Dallas,TX,75001 +265946,iPhone,1,700.0,2019-10-09 17:27:00,371 Hill St, San Francisco,CA,94016 +265947,Macbook Pro Laptop,1,1700.0,2019-10-27 12:38:00,949 Spruce St, Los Angeles,CA,90001 +265948,20in Monitor,1,109.99,2019-10-22 22:32:00,113 Ridge St, Dallas,TX,75001 +265949,USB-C Charging Cable,1,11.95,2019-10-21 13:19:00,462 6th St, San Francisco,CA,94016 +265950,Lightning Charging Cable,1,14.95,2019-10-10 20:39:00,748 Wilson St, Atlanta,GA,30301 +265951,Lightning Charging Cable,1,14.95,2019-10-26 18:01:00,87 Dogwood St, Atlanta,GA,30301 +265952,Lightning Charging Cable,1,14.95,2019-10-11 07:51:00,524 Chestnut St, New York City,NY,10001 +265953,Apple Airpods Headphones,1,150.0,2019-10-12 07:31:00,582 River St, Los Angeles,CA,90001 +265954,Wired Headphones,1,11.99,2019-10-10 11:41:00,200 13th St, Los Angeles,CA,90001 +265955,Wired Headphones,1,11.99,2019-10-12 10:56:00,578 Pine St, San Francisco,CA,94016 +265956,AAA Batteries (4-pack),1,2.99,2019-10-02 11:04:00,860 13th St, Boston,MA,02215 +265957,ThinkPad Laptop,1,999.99,2019-10-30 21:22:00,814 Spruce St, Los Angeles,CA,90001 +265958,AAA Batteries (4-pack),1,2.99,2019-10-26 03:26:00,393 1st St, San Francisco,CA,94016 +265959,Apple Airpods Headphones,1,150.0,2019-10-21 16:38:00,884 Church St, San Francisco,CA,94016 +265960,Wired Headphones,1,11.99,2019-10-27 10:54:00,837 Center St, Seattle,WA,98101 +265961,Flatscreen TV,1,300.0,2019-10-02 23:04:00,331 Main St, Boston,MA,02215 +265962,USB-C Charging Cable,1,11.95,2019-10-19 16:45:00,781 Madison St, Atlanta,GA,30301 +265963,Lightning Charging Cable,1,14.95,2019-10-09 21:49:00,463 Lincoln St, New York City,NY,10001 +265964,AA Batteries (4-pack),1,3.84,2019-10-28 14:20:00,642 Cedar St, Boston,MA,02215 +265965,Wired Headphones,1,11.99,2019-10-03 11:28:00,525 Highland St, Los Angeles,CA,90001 +265966,AA Batteries (4-pack),2,3.84,2019-10-10 12:06:00,409 Church St, San Francisco,CA,94016 +265967,AA Batteries (4-pack),3,3.84,2019-10-10 21:01:00,803 6th St, Atlanta,GA,30301 +265968,ThinkPad Laptop,1,999.99,2019-10-19 22:16:00,357 Madison St, New York City,NY,10001 +265969,AA Batteries (4-pack),2,3.84,2019-10-18 13:04:00,613 9th St, Seattle,WA,98101 +265970,iPhone,1,700.0,2019-10-17 12:47:00,803 Center St, San Francisco,CA,94016 +265971,USB-C Charging Cable,1,11.95,2019-10-21 18:55:00,757 9th St, San Francisco,CA,94016 +265972,USB-C Charging Cable,1,11.95,2019-10-01 20:00:00,490 Lake St, San Francisco,CA,94016 +265973,Wired Headphones,1,11.99,2019-10-19 20:58:00,267 Hill St, New York City,NY,10001 +265974,Apple Airpods Headphones,1,150.0,2019-10-15 19:03:00,604 Hill St, San Francisco,CA,94016 +265975,27in 4K Gaming Monitor,1,389.99,2019-10-19 14:42:00,665 Park St, San Francisco,CA,94016 +265976,iPhone,1,700.0,2019-10-21 02:19:00,204 Chestnut St, Atlanta,GA,30301 +265977,Lightning Charging Cable,1,14.95,2019-10-22 23:22:00,688 Hill St, Portland,OR,97035 +265978,AAA Batteries (4-pack),3,2.99,2019-10-16 19:50:00,123 14th St, San Francisco,CA,94016 +265979,AA Batteries (4-pack),1,3.84,2019-10-12 12:50:00,536 Jackson St, New York City,NY,10001 +265980,Apple Airpods Headphones,1,150.0,2019-10-04 15:04:00,447 5th St, New York City,NY,10001 +265981,Apple Airpods Headphones,1,150.0,2019-10-09 09:29:00,855 Sunset St, Dallas,TX,75001 +265982,Wired Headphones,1,11.99,2019-10-07 21:09:00,280 Dogwood St, Dallas,TX,75001 +265983,iPhone,1,700.0,2019-10-12 12:57:00,588 River St, San Francisco,CA,94016 +265984,USB-C Charging Cable,1,11.95,2019-10-06 14:58:00,717 Forest St, Atlanta,GA,30301 +265985,27in FHD Monitor,1,149.99,2019-10-05 08:23:00,571 Cherry St, Dallas,TX,75001 +265986,AA Batteries (4-pack),2,3.84,2019-10-09 14:22:00,184 Jackson St, Los Angeles,CA,90001 +265987,Apple Airpods Headphones,2,150.0,2019-10-08 08:55:00,851 Wilson St, Dallas,TX,75001 +265988,Bose SoundSport Headphones,1,99.99,2019-10-12 17:01:00,986 Adams St, San Francisco,CA,94016 +265989,Wired Headphones,1,11.99,2019-10-30 21:09:00,397 Spruce St, Boston,MA,02215 +265990,Lightning Charging Cable,1,14.95,2019-10-28 22:06:00,179 Chestnut St, San Francisco,CA,94016 +265991,Lightning Charging Cable,1,14.95,2019-10-13 13:19:00,793 1st St, San Francisco,CA,94016 +265992,USB-C Charging Cable,1,11.95,2019-10-17 04:27:00,718 Center St, Boston,MA,02215 +265993,27in 4K Gaming Monitor,1,389.99,2019-10-08 13:38:00,743 Park St, Los Angeles,CA,90001 +265994,AAA Batteries (4-pack),2,2.99,2019-10-18 19:17:00,127 2nd St, Los Angeles,CA,90001 +265995,20in Monitor,1,109.99,2019-10-02 13:04:00,511 11th St, Austin,TX,73301 +265996,Bose SoundSport Headphones,1,99.99,2019-10-22 17:07:00,447 Hill St, New York City,NY,10001 +265997,Bose SoundSport Headphones,1,99.99,2019-10-30 16:45:00,917 13th St, Portland,OR,97035 +265998,USB-C Charging Cable,1,11.95,2019-10-23 13:52:00,555 Adams St, Austin,TX,73301 +265999,USB-C Charging Cable,1,11.95,2019-10-01 21:16:00,432 6th St, Boston,MA,02215 +266000,USB-C Charging Cable,1,11.95,2019-10-28 21:31:00,103 Chestnut St, Austin,TX,73301 +266001,Lightning Charging Cable,1,14.95,2019-10-09 11:01:00,239 Dogwood St, San Francisco,CA,94016 +266002,Bose SoundSport Headphones,1,99.99,2019-10-16 12:32:00,551 Elm St, Los Angeles,CA,90001 +266003,Lightning Charging Cable,1,14.95,2019-10-01 17:50:00,278 8th St, Los Angeles,CA,90001 +266004,34in Ultrawide Monitor,1,379.99,2019-10-02 21:33:00,313 Forest St, New York City,NY,10001 +266005,Google Phone,1,600.0,2019-10-11 17:32:00,555 Jackson St, Dallas,TX,75001 +266006,ThinkPad Laptop,1,999.99,2019-10-30 22:43:00,573 Jackson St, San Francisco,CA,94016 +266007,AA Batteries (4-pack),2,3.84,2019-10-10 11:06:00,465 Maple St, New York City,NY,10001 +266008,AA Batteries (4-pack),1,3.84,2019-10-17 15:23:00,587 Jefferson St, New York City,NY,10001 +266009,34in Ultrawide Monitor,1,379.99,2019-10-01 21:20:00,544 Jackson St, Seattle,WA,98101 +266010,27in 4K Gaming Monitor,1,389.99,2019-10-02 12:22:00,46 2nd St, San Francisco,CA,94016 +266011,Apple Airpods Headphones,1,150.0,2019-10-09 22:53:00,316 Forest St, Atlanta,GA,30301 +266012,Macbook Pro Laptop,1,1700.0,2019-10-10 17:45:00,210 Park St, Atlanta,GA,30301 +266013,iPhone,1,700.0,2019-10-11 21:13:00,157 Highland St, Boston,MA,02215 +266013,Lightning Charging Cable,1,14.95,2019-10-11 21:13:00,157 Highland St, Boston,MA,02215 +266014,USB-C Charging Cable,1,11.95,2019-10-27 08:42:00,362 Ridge St, New York City,NY,10001 +266015,iPhone,1,700.0,2019-10-31 21:45:00,148 Adams St, New York City,NY,10001 +266016,27in 4K Gaming Monitor,1,389.99,2019-10-24 15:34:00,838 4th St, Los Angeles,CA,90001 +266017,Lightning Charging Cable,1,14.95,2019-10-26 19:20:00,636 Walnut St, Boston,MA,02215 +266018,USB-C Charging Cable,1,11.95,2019-10-27 13:29:00,724 Madison St, New York City,NY,10001 +266019,Bose SoundSport Headphones,1,99.99,2019-10-29 20:48:00,140 Ridge St, Seattle,WA,98101 +266020,USB-C Charging Cable,1,11.95,2019-10-16 16:00:00,934 West St, Dallas,TX,75001 +266021,AAA Batteries (4-pack),3,2.99,2019-10-13 17:57:00,11 Adams St, Portland,OR,97035 +266022,AAA Batteries (4-pack),1,2.99,2019-10-20 21:49:00,72 9th St, New York City,NY,10001 +266023,Bose SoundSport Headphones,1,99.99,2019-10-30 13:10:00,843 River St, San Francisco,CA,94016 +266024,AAA Batteries (4-pack),1,2.99,2019-10-02 05:27:00,409 6th St, Boston,MA,02215 +266025,ThinkPad Laptop,1,999.99,2019-10-15 10:25:00,563 Chestnut St, Seattle,WA,98101 +266026,Google Phone,1,600.0,2019-10-11 21:38:00,164 Lakeview St, Boston,MA,02215 +266027,AAA Batteries (4-pack),1,2.99,2019-10-19 15:58:00,347 Ridge St, Seattle,WA,98101 +266028,Wired Headphones,1,11.99,2019-10-23 15:31:00,612 Chestnut St, Atlanta,GA,30301 +266029,27in 4K Gaming Monitor,1,389.99,2019-10-19 23:18:00,983 South St, Atlanta,GA,30301 +266030,27in FHD Monitor,1,149.99,2019-10-02 07:12:00,525 Lake St, San Francisco,CA,94016 +266031,34in Ultrawide Monitor,1,379.99,2019-10-23 18:30:00,201 6th St, New York City,NY,10001 +266032,AA Batteries (4-pack),1,3.84,2019-10-02 21:21:00,532 Cedar St, Boston,MA,02215 +266033,Lightning Charging Cable,1,14.95,2019-10-08 17:27:00,278 Adams St, Austin,TX,73301 +266034,LG Dryer,1,600.0,2019-10-12 11:09:00,804 Meadow St, Los Angeles,CA,90001 +266035,AAA Batteries (4-pack),3,2.99,2019-10-16 11:22:00,358 Pine St, Atlanta,GA,30301 +266036,USB-C Charging Cable,1,11.95,2019-10-12 07:08:00,876 Lake St, San Francisco,CA,94016 +266037,USB-C Charging Cable,1,11.95,2019-10-16 19:49:00,756 Park St, Portland,OR,97035 +266038,Wired Headphones,1,11.99,2019-10-27 11:18:00,599 Maple St, San Francisco,CA,94016 +266039,USB-C Charging Cable,1,11.95,2019-10-10 11:26:00,42 Wilson St, Seattle,WA,98101 +266040,Wired Headphones,2,11.99,2019-10-23 22:25:00,619 Spruce St, San Francisco,CA,94016 +266041,Wired Headphones,1,11.99,2019-10-28 16:21:00,759 Forest St, San Francisco,CA,94016 +266042,USB-C Charging Cable,1,11.95,2019-10-27 12:47:00,794 Elm St, Boston,MA,02215 +266043,USB-C Charging Cable,1,11.95,2019-10-04 10:32:00,535 11th St, Portland,ME,04101 +266044,AAA Batteries (4-pack),1,2.99,2019-10-02 09:23:00,619 Park St, San Francisco,CA,94016 +266045,ThinkPad Laptop,1,999.99,2019-10-29 14:17:00,744 12th St, Seattle,WA,98101 +266046,AAA Batteries (4-pack),1,2.99,2019-10-19 10:29:00,23 Forest St, Dallas,TX,75001 +266047,27in FHD Monitor,1,149.99,2019-10-29 22:08:00,658 4th St, Seattle,WA,98101 +266048,Flatscreen TV,1,300.0,2019-10-30 13:39:00,269 Lake St, Dallas,TX,75001 +266049,AAA Batteries (4-pack),1,2.99,2019-10-15 11:49:00,206 Church St, San Francisco,CA,94016 +266050,Lightning Charging Cable,1,14.95,2019-10-31 15:51:00,386 South St, Portland,OR,97035 +266051,Wired Headphones,1,11.99,2019-10-29 10:23:00,239 Lakeview St, Boston,MA,02215 +266052,20in Monitor,1,109.99,2019-10-11 22:29:00,945 South St, San Francisco,CA,94016 +266053,USB-C Charging Cable,1,11.95,2019-10-03 19:05:00,88 Park St, Seattle,WA,98101 +266054,Bose SoundSport Headphones,1,99.99,2019-10-29 06:45:00,62 North St, New York City,NY,10001 +266054,AAA Batteries (4-pack),1,2.99,2019-10-29 06:45:00,62 North St, New York City,NY,10001 +266055,iPhone,1,700.0,2019-10-14 16:10:00,594 Cherry St, San Francisco,CA,94016 +266055,Wired Headphones,1,11.99,2019-10-14 16:10:00,594 Cherry St, San Francisco,CA,94016 +266056,AAA Batteries (4-pack),1,2.99,2019-10-13 17:17:00,954 Hickory St, Seattle,WA,98101 +266057,USB-C Charging Cable,1,11.95,2019-10-26 17:52:00,571 South St, Seattle,WA,98101 +266058,Wired Headphones,1,11.99,2019-10-10 22:36:00,434 Park St, Austin,TX,73301 +266058,USB-C Charging Cable,1,11.95,2019-10-10 22:36:00,434 Park St, Austin,TX,73301 +266059,Bose SoundSport Headphones,1,99.99,2019-10-16 15:13:00,569 Hickory St, Boston,MA,02215 +266060,Flatscreen TV,1,300.0,2019-10-11 20:35:00,655 5th St, Boston,MA,02215 +266061,Bose SoundSport Headphones,1,99.99,2019-10-26 08:00:00,881 5th St, Boston,MA,02215 +266062,Vareebadd Phone,1,400.0,2019-10-22 22:30:00,167 Ridge St, San Francisco,CA,94016 +266063,Apple Airpods Headphones,1,150.0,2019-10-02 19:54:00,389 1st St, New York City,NY,10001 +266064,AAA Batteries (4-pack),1,2.99,2019-10-20 09:58:00,254 Jackson St, Boston,MA,02215 +266065,AAA Batteries (4-pack),1,2.99,2019-10-15 19:20:00,99 Spruce St, New York City,NY,10001 +266066,Lightning Charging Cable,1,14.95,2019-10-17 21:07:00,251 10th St, San Francisco,CA,94016 +266067,Wired Headphones,1,11.99,2019-10-18 08:35:00,752 Center St, San Francisco,CA,94016 +266068,Lightning Charging Cable,1,14.95,2019-10-07 01:50:00,24 9th St, San Francisco,CA,94016 +266069,Wired Headphones,1,11.99,2019-10-31 20:26:00,641 2nd St, Portland,ME,04101 +266070,USB-C Charging Cable,1,11.95,2019-10-10 11:34:00,975 Jackson St, New York City,NY,10001 +266071,Google Phone,1,600.0,2019-10-13 21:24:00,664 Maple St, Los Angeles,CA,90001 +266071,Lightning Charging Cable,1,14.95,2019-10-13 21:24:00,664 Maple St, Los Angeles,CA,90001 +266072,Macbook Pro Laptop,1,1700.0,2019-10-27 13:05:00,521 River St, New York City,NY,10001 +266073,AA Batteries (4-pack),1,3.84,2019-10-20 18:04:00,888 Lincoln St, San Francisco,CA,94016 +266074,Wired Headphones,1,11.99,2019-10-06 00:31:00,418 South St, San Francisco,CA,94016 +266075,Lightning Charging Cable,1,14.95,2019-10-13 17:03:00,506 Wilson St, Austin,TX,73301 +266076,AA Batteries (4-pack),1,3.84,2019-10-11 23:49:00,316 North St, Seattle,WA,98101 +266077,Lightning Charging Cable,1,14.95,2019-10-02 10:40:00,407 Ridge St, Portland,OR,97035 +266078,Google Phone,1,600.0,2019-10-17 16:14:00,896 Ridge St, San Francisco,CA,94016 +266079,AA Batteries (4-pack),1,3.84,2019-10-18 11:16:00,377 Hickory St, Austin,TX,73301 +266080,iPhone,1,700.0,2019-10-08 12:11:00,952 Dogwood St, Dallas,TX,75001 +266081,Apple Airpods Headphones,1,150.0,2019-10-17 17:23:00,501 Main St, Los Angeles,CA,90001 +266082,AAA Batteries (4-pack),2,2.99,2019-10-26 10:47:00,146 9th St, New York City,NY,10001 +266083,Apple Airpods Headphones,1,150.0,2019-10-01 08:03:00,767 Wilson St, Los Angeles,CA,90001 +266084,Flatscreen TV,1,300.0,2019-10-23 06:26:00,303 Center St, Atlanta,GA,30301 +266085,Bose SoundSport Headphones,1,99.99,2019-10-21 12:29:00,351 River St, San Francisco,CA,94016 +266086,Wired Headphones,1,11.99,2019-10-07 18:06:00,14 Willow St, Portland,ME,04101 +266087,Wired Headphones,1,11.99,2019-10-25 15:52:00,815 Spruce St, Boston,MA,02215 +266088,Apple Airpods Headphones,1,150.0,2019-10-29 16:12:00,405 6th St, San Francisco,CA,94016 +266089,USB-C Charging Cable,1,11.95,2019-10-22 08:13:00,631 13th St, Boston,MA,02215 +266090,27in 4K Gaming Monitor,1,389.99,2019-10-07 19:19:00,501 Center St, Los Angeles,CA,90001 +266091,27in 4K Gaming Monitor,1,389.99,2019-10-10 20:27:00,310 Elm St, San Francisco,CA,94016 +266092,ThinkPad Laptop,1,999.99,2019-10-09 09:59:00,265 Adams St, Dallas,TX,75001 +266093,Macbook Pro Laptop,1,1700.0,2019-10-11 11:00:00,953 Johnson St, Los Angeles,CA,90001 +266094,AA Batteries (4-pack),3,3.84,2019-10-17 18:42:00,72 12th St, Atlanta,GA,30301 +266095,20in Monitor,1,109.99,2019-10-29 23:22:00,267 Chestnut St, San Francisco,CA,94016 +266096,Apple Airpods Headphones,1,150.0,2019-10-20 17:26:00,451 6th St, New York City,NY,10001 +266097,Flatscreen TV,1,300.0,2019-10-05 19:51:00,114 10th St, San Francisco,CA,94016 +266098,Lightning Charging Cable,1,14.95,2019-10-01 15:39:00,696 Cherry St, Portland,OR,97035 +266099,Flatscreen TV,1,300.0,2019-10-31 09:13:00,109 Chestnut St, Atlanta,GA,30301 +266100,Bose SoundSport Headphones,1,99.99,2019-10-10 14:57:00,587 Walnut St, New York City,NY,10001 +266101,Lightning Charging Cable,1,14.95,2019-10-11 19:49:00,301 Sunset St, San Francisco,CA,94016 +266102,iPhone,1,700.0,2019-10-22 21:29:00,974 Main St, Dallas,TX,75001 +266103,AA Batteries (4-pack),1,3.84,2019-10-31 02:54:00,496 5th St, Seattle,WA,98101 +266104,Lightning Charging Cable,1,14.95,2019-10-27 20:30:00,984 1st St, Portland,OR,97035 +266105,Macbook Pro Laptop,1,1700.0,2019-10-07 11:31:00,773 8th St, New York City,NY,10001 +266106,34in Ultrawide Monitor,1,379.99,2019-10-19 09:25:00,289 North St, Seattle,WA,98101 +266107,Lightning Charging Cable,1,14.95,2019-10-06 08:55:00,212 Jackson St, Boston,MA,02215 +266108,iPhone,1,700.0,2019-10-31 13:49:00,57 Pine St, Portland,OR,97035 +266109,iPhone,1,700.0,2019-10-09 12:43:00,663 Wilson St, Seattle,WA,98101 +266110,USB-C Charging Cable,2,11.95,2019-10-25 17:22:00,88 13th St, San Francisco,CA,94016 +266111,iPhone,1,700.0,2019-10-11 22:21:00,61 Johnson St, Los Angeles,CA,90001 +266112,Macbook Pro Laptop,1,1700.0,2019-10-06 21:08:00,664 Cherry St, Los Angeles,CA,90001 +266113,ThinkPad Laptop,1,999.99,2019-10-02 21:37:00,16 Highland St, Atlanta,GA,30301 +266114,27in 4K Gaming Monitor,1,389.99,2019-10-23 00:44:00,573 6th St, Los Angeles,CA,90001 +266115,AAA Batteries (4-pack),3,2.99,2019-10-06 17:40:00,243 North St, San Francisco,CA,94016 +266116,USB-C Charging Cable,1,11.95,2019-10-02 08:56:00,887 Sunset St, San Francisco,CA,94016 +266116,AA Batteries (4-pack),1,3.84,2019-10-02 08:56:00,887 Sunset St, San Francisco,CA,94016 +266117,Apple Airpods Headphones,1,150.0,2019-10-01 14:56:00,692 8th St, Dallas,TX,75001 +266118,AAA Batteries (4-pack),5,2.99,2019-10-05 00:45:00,852 West St, Boston,MA,02215 +266119,USB-C Charging Cable,1,11.95,2019-10-12 15:53:00,993 Ridge St, San Francisco,CA,94016 +266120,34in Ultrawide Monitor,1,379.99,2019-10-03 20:30:00,532 Maple St, Seattle,WA,98101 +266121,Wired Headphones,1,11.99,2019-10-22 11:48:00,698 Meadow St, Seattle,WA,98101 +266122,USB-C Charging Cable,1,11.95,2019-10-29 12:55:00,260 8th St, Atlanta,GA,30301 +266123,27in FHD Monitor,1,149.99,2019-10-05 17:57:00,170 Spruce St, Atlanta,GA,30301 +266124,Macbook Pro Laptop,1,1700.0,2019-10-25 16:38:00,136 Hickory St, Austin,TX,73301 +266125,Lightning Charging Cable,1,14.95,2019-10-21 22:19:00,173 Sunset St, San Francisco,CA,94016 +266126,USB-C Charging Cable,2,11.95,2019-10-26 21:13:00,626 Maple St, Portland,OR,97035 +266127,Apple Airpods Headphones,1,150.0,2019-10-21 14:37:00,737 4th St, Dallas,TX,75001 +266128,27in FHD Monitor,1,149.99,2019-10-10 11:58:00,690 Center St, Seattle,WA,98101 +266129,AAA Batteries (4-pack),2,2.99,2019-10-06 19:18:00,820 Pine St, San Francisco,CA,94016 +266130,20in Monitor,1,109.99,2019-10-13 14:45:00,82 Main St, San Francisco,CA,94016 +266131,34in Ultrawide Monitor,1,379.99,2019-10-28 09:14:00,630 Pine St, Seattle,WA,98101 +266132,Apple Airpods Headphones,1,150.0,2019-10-27 22:18:00,692 Walnut St, Seattle,WA,98101 +266133,USB-C Charging Cable,1,11.95,2019-10-20 13:07:00,892 14th St, New York City,NY,10001 +266134,27in 4K Gaming Monitor,1,389.99,2019-10-13 16:44:00,846 South St, San Francisco,CA,94016 +266135,Google Phone,1,600.0,2019-11-01 01:10:00,551 Cherry St, Dallas,TX,75001 +266136,27in 4K Gaming Monitor,1,389.99,2019-10-08 11:19:00,899 13th St, Portland,OR,97035 +266137,AAA Batteries (4-pack),1,2.99,2019-10-31 14:06:00,274 Cedar St, Austin,TX,73301 +266138,AA Batteries (4-pack),2,3.84,2019-10-22 16:31:00,588 Forest St, Austin,TX,73301 +266139,Bose SoundSport Headphones,1,99.99,2019-10-05 01:20:00,807 2nd St, Dallas,TX,75001 +266140,Bose SoundSport Headphones,1,99.99,2019-10-30 15:27:00,346 14th St, San Francisco,CA,94016 +266141,Apple Airpods Headphones,1,150.0,2019-10-02 14:43:00,569 Chestnut St, Portland,OR,97035 +266142,Lightning Charging Cable,1,14.95,2019-10-26 08:36:00,248 Center St, Los Angeles,CA,90001 +266143,AAA Batteries (4-pack),2,2.99,2019-10-14 10:32:00,53 Walnut St, San Francisco,CA,94016 +266144,20in Monitor,1,109.99,2019-10-28 10:58:00,846 9th St, San Francisco,CA,94016 +266145,Lightning Charging Cable,1,14.95,2019-10-06 17:01:00,701 West St, San Francisco,CA,94016 +266146,AAA Batteries (4-pack),1,2.99,2019-10-06 08:57:00,316 Park St, San Francisco,CA,94016 +266147,Lightning Charging Cable,1,14.95,2019-10-26 10:59:00,169 Cedar St, New York City,NY,10001 +266148,Lightning Charging Cable,1,14.95,2019-10-25 07:52:00,996 Chestnut St, San Francisco,CA,94016 +266149,AA Batteries (4-pack),1,3.84,2019-10-22 18:35:00,259 Main St, San Francisco,CA,94016 +266150,Wired Headphones,1,11.99,2019-10-11 11:37:00,268 4th St, Boston,MA,02215 +266151,USB-C Charging Cable,1,11.95,2019-10-31 21:13:00,321 Hickory St, Portland,OR,97035 +266152,27in 4K Gaming Monitor,1,389.99,2019-10-18 13:00:00,129 Washington St, Los Angeles,CA,90001 +266153,Macbook Pro Laptop,1,1700.0,2019-10-22 13:25:00,825 Madison St, Seattle,WA,98101 +266154,Google Phone,1,600.0,2019-10-23 13:33:00,37 South St, Atlanta,GA,30301 +266155,27in FHD Monitor,1,149.99,2019-10-24 12:18:00,210 5th St, San Francisco,CA,94016 +266156,Google Phone,1,600.0,2019-10-23 10:40:00,341 River St, Los Angeles,CA,90001 +266156,Wired Headphones,1,11.99,2019-10-23 10:40:00,341 River St, Los Angeles,CA,90001 +266157,Lightning Charging Cable,1,14.95,2019-10-07 07:29:00,742 6th St, Dallas,TX,75001 +266158,Apple Airpods Headphones,1,150.0,2019-10-27 17:26:00,227 South St, San Francisco,CA,94016 +266159,Lightning Charging Cable,1,14.95,2019-10-05 18:33:00,751 6th St, Austin,TX,73301 +266160,AAA Batteries (4-pack),3,2.99,2019-10-21 21:11:00,86 Lincoln St, Dallas,TX,75001 +266161,Lightning Charging Cable,1,14.95,2019-10-04 21:58:00,507 Willow St, Boston,MA,02215 +266162,Apple Airpods Headphones,1,150.0,2019-10-31 22:18:00,475 Church St, Dallas,TX,75001 +266163,USB-C Charging Cable,1,11.95,2019-10-21 08:40:00,745 Pine St, San Francisco,CA,94016 +266164,Bose SoundSport Headphones,1,99.99,2019-10-20 23:15:00,966 Adams St, Los Angeles,CA,90001 +266165,Apple Airpods Headphones,1,150.0,2019-10-25 16:17:00,254 North St, New York City,NY,10001 +266166,Flatscreen TV,1,300.0,2019-10-21 18:54:00,277 Washington St, San Francisco,CA,94016 +266167,Apple Airpods Headphones,1,150.0,2019-10-16 17:12:00,766 North St, Los Angeles,CA,90001 +266168,27in 4K Gaming Monitor,1,389.99,2019-10-27 19:22:00,859 4th St, Seattle,WA,98101 +266169,Flatscreen TV,1,300.0,2019-10-28 08:45:00,384 Chestnut St, San Francisco,CA,94016 +266170,34in Ultrawide Monitor,1,379.99,2019-10-05 16:19:00,478 6th St, San Francisco,CA,94016 +266171,AAA Batteries (4-pack),1,2.99,2019-10-09 08:50:00,182 Cherry St, Seattle,WA,98101 +266172,Lightning Charging Cable,1,14.95,2019-10-02 14:01:00,575 Church St, Dallas,TX,75001 +266173,AA Batteries (4-pack),1,3.84,2019-10-17 15:25:00,224 2nd St, San Francisco,CA,94016 +266174,Bose SoundSport Headphones,1,99.99,2019-10-03 18:05:00,669 Cherry St, San Francisco,CA,94016 +266175,Lightning Charging Cable,1,14.95,2019-10-31 09:54:00,154 River St, Boston,MA,02215 +266176,27in FHD Monitor,1,149.99,2019-10-09 16:40:00,159 Elm St, San Francisco,CA,94016 +266177,Lightning Charging Cable,1,14.95,2019-10-20 15:18:00,250 7th St, Los Angeles,CA,90001 +266178,Wired Headphones,1,11.99,2019-10-25 14:08:00,995 9th St, Los Angeles,CA,90001 +266179,Lightning Charging Cable,1,14.95,2019-10-07 21:50:00,972 Jackson St, Atlanta,GA,30301 +266180,USB-C Charging Cable,1,11.95,2019-10-10 19:56:00,943 12th St, San Francisco,CA,94016 +266181,34in Ultrawide Monitor,1,379.99,2019-10-05 23:14:00,334 Elm St, San Francisco,CA,94016 +266182,AA Batteries (4-pack),1,3.84,2019-10-28 18:32:00,306 Willow St, San Francisco,CA,94016 +266183,AA Batteries (4-pack),1,3.84,2019-10-15 01:07:00,975 Jackson St, San Francisco,CA,94016 +266184,Bose SoundSport Headphones,1,99.99,2019-10-01 11:35:00,114 Spruce St, San Francisco,CA,94016 +266185,Wired Headphones,1,11.99,2019-10-18 21:17:00,32 8th St, Los Angeles,CA,90001 +266186,USB-C Charging Cable,2,11.95,2019-10-30 22:54:00,445 Meadow St, Seattle,WA,98101 +266187,Apple Airpods Headphones,1,150.0,2019-10-20 05:54:00,630 Johnson St, Los Angeles,CA,90001 +266188,Wired Headphones,1,11.99,2019-10-05 15:36:00,646 9th St, Austin,TX,73301 +266189,Lightning Charging Cable,1,14.95,2019-10-18 08:15:00,779 Adams St, San Francisco,CA,94016 +266190,ThinkPad Laptop,1,999.99,2019-10-12 20:58:00,934 Adams St, New York City,NY,10001 +266191,AA Batteries (4-pack),1,3.84,2019-10-13 16:09:00,797 Cherry St, Austin,TX,73301 +266192,20in Monitor,1,109.99,2019-10-21 16:54:00,268 Willow St, Boston,MA,02215 +266193,iPhone,1,700.0,2019-10-08 01:48:00,535 13th St, Los Angeles,CA,90001 +266194,Lightning Charging Cable,1,14.95,2019-10-02 20:27:00,822 Cedar St, Austin,TX,73301 +266195,ThinkPad Laptop,1,999.99,2019-10-08 20:00:00,443 4th St, Los Angeles,CA,90001 +266196,AAA Batteries (4-pack),1,2.99,2019-10-05 07:43:00,93 Maple St, Los Angeles,CA,90001 +266197,27in 4K Gaming Monitor,1,389.99,2019-10-01 06:05:00,349 11th St, Dallas,TX,75001 +266198,USB-C Charging Cable,1,11.95,2019-10-23 19:00:00,545 Sunset St, New York City,NY,10001 +266199,Bose SoundSport Headphones,1,99.99,2019-10-13 15:19:00,41 Maple St, Austin,TX,73301 +266200,Bose SoundSport Headphones,1,99.99,2019-10-21 12:59:00,476 10th St, Seattle,WA,98101 +266201,Bose SoundSport Headphones,1,99.99,2019-10-27 20:07:00,785 14th St, Austin,TX,73301 +266202,27in FHD Monitor,1,149.99,2019-10-15 05:49:00,479 13th St, San Francisco,CA,94016 +266203,27in FHD Monitor,1,149.99,2019-10-15 13:30:00,120 14th St, Boston,MA,02215 +266204,USB-C Charging Cable,1,11.95,2019-10-17 19:53:00,277 Cedar St, Austin,TX,73301 +266205,AA Batteries (4-pack),1,3.84,2019-10-16 22:07:00,331 Cedar St, Atlanta,GA,30301 +266206,AAA Batteries (4-pack),1,2.99,2019-10-30 08:59:00,516 Johnson St, Atlanta,GA,30301 +266207,Lightning Charging Cable,2,14.95,2019-10-09 17:26:00,636 West St, Portland,OR,97035 +266208,USB-C Charging Cable,1,11.95,2019-10-26 10:42:00,169 9th St, Dallas,TX,75001 +266209,AAA Batteries (4-pack),1,2.99,2019-10-15 12:19:00,778 Elm St, San Francisco,CA,94016 +266210,Flatscreen TV,1,300.0,2019-10-22 10:48:00,739 12th St, San Francisco,CA,94016 +266211,Wired Headphones,1,11.99,2019-10-30 07:40:00,204 Meadow St, San Francisco,CA,94016 +266212,Apple Airpods Headphones,1,150.0,2019-10-02 09:39:00,935 Park St, Atlanta,GA,30301 +266213,Lightning Charging Cable,1,14.95,2019-10-28 22:02:00,176 Pine St, Dallas,TX,75001 +266214,Apple Airpods Headphones,1,150.0,2019-10-24 14:59:00,265 Walnut St, Dallas,TX,75001 +266215,AAA Batteries (4-pack),1,2.99,2019-10-25 12:44:00,708 Jefferson St, Dallas,TX,75001 +266216,Wired Headphones,1,11.99,2019-10-21 14:56:00,706 6th St, Seattle,WA,98101 +266217,Apple Airpods Headphones,1,150.0,2019-10-03 19:36:00,190 Center St, Los Angeles,CA,90001 +266218,AA Batteries (4-pack),1,3.84,2019-10-27 09:45:00,514 12th St, Boston,MA,02215 +266219,Apple Airpods Headphones,1,150.0,2019-10-01 08:47:00,645 West St, Portland,OR,97035 +266220,iPhone,1,700.0,2019-10-19 13:43:00,415 Cherry St, Atlanta,GA,30301 +266221,Apple Airpods Headphones,1,150.0,2019-10-29 12:05:00,255 11th St, New York City,NY,10001 +266222,Lightning Charging Cable,1,14.95,2019-10-12 00:51:00,31 South St, Los Angeles,CA,90001 +266223,USB-C Charging Cable,1,11.95,2019-10-22 18:13:00,898 Washington St, Portland,OR,97035 +266224,34in Ultrawide Monitor,1,379.99,2019-10-15 19:36:00,425 14th St, New York City,NY,10001 +266225,USB-C Charging Cable,1,11.95,2019-10-15 10:22:00,165 Madison St, Seattle,WA,98101 +266226,USB-C Charging Cable,1,11.95,2019-10-11 00:42:00,802 8th St, Atlanta,GA,30301 +266227,Wired Headphones,1,11.99,2019-10-11 21:07:00,898 Dogwood St, San Francisco,CA,94016 +266228,34in Ultrawide Monitor,1,379.99,2019-10-05 13:47:00,161 West St, Dallas,TX,75001 +266229,AAA Batteries (4-pack),1,2.99,2019-10-09 17:22:00,216 North St, San Francisco,CA,94016 +266230,AA Batteries (4-pack),2,3.84,2019-10-07 09:14:00,357 Forest St, Los Angeles,CA,90001 +266231,Bose SoundSport Headphones,1,99.99,2019-10-24 16:46:00,305 River St, Atlanta,GA,30301 +266232,AA Batteries (4-pack),1,3.84,2019-10-10 20:34:00,479 Madison St, Atlanta,GA,30301 +266233,AA Batteries (4-pack),1,3.84,2019-10-05 17:55:00,768 12th St, Atlanta,GA,30301 +266234,Vareebadd Phone,1,400.0,2019-10-30 19:47:00,936 Highland St, San Francisco,CA,94016 +266235,AAA Batteries (4-pack),4,2.99,2019-10-27 02:15:00,402 Park St, Seattle,WA,98101 +266236,AAA Batteries (4-pack),2,2.99,2019-10-10 16:31:00,591 Washington St, Los Angeles,CA,90001 +266237,Apple Airpods Headphones,1,150.0,2019-10-21 23:37:00,221 Jefferson St, Portland,OR,97035 +266238,27in FHD Monitor,1,149.99,2019-10-21 06:29:00,98 Washington St, New York City,NY,10001 +266239,Lightning Charging Cable,1,14.95,2019-10-25 20:39:00,622 Wilson St, Los Angeles,CA,90001 +266240,27in FHD Monitor,1,149.99,2019-10-30 17:16:00,969 Adams St, New York City,NY,10001 +266241,Bose SoundSport Headphones,1,99.99,2019-10-22 16:06:00,407 Church St, San Francisco,CA,94016 +266242,Lightning Charging Cable,1,14.95,2019-10-19 23:05:00,72 Wilson St, Portland,OR,97035 +266243,Wired Headphones,1,11.99,2019-10-18 13:26:00,899 Highland St, Portland,OR,97035 +266244,Bose SoundSport Headphones,1,99.99,2019-10-26 12:52:00,707 Chestnut St, Los Angeles,CA,90001 +266245,Bose SoundSport Headphones,1,99.99,2019-10-08 20:07:00,991 Forest St, Austin,TX,73301 +266246,AA Batteries (4-pack),1,3.84,2019-10-06 20:04:00,556 Meadow St, New York City,NY,10001 +266247,20in Monitor,1,109.99,2019-10-15 16:24:00,938 Madison St, New York City,NY,10001 +266247,AA Batteries (4-pack),1,3.84,2019-10-15 16:24:00,938 Madison St, New York City,NY,10001 +266248,AA Batteries (4-pack),1,3.84,2019-10-25 16:47:00,945 2nd St, Boston,MA,02215 +266249,Wired Headphones,1,11.99,2019-10-13 08:47:00,555 Hill St, Los Angeles,CA,90001 +266250,AA Batteries (4-pack),3,3.84,2019-10-16 09:07:00,646 Hill St, Seattle,WA,98101 +266251,AAA Batteries (4-pack),1,2.99,2019-10-21 18:14:00,634 Hickory St, San Francisco,CA,94016 +266252,AA Batteries (4-pack),4,3.84,2019-10-05 21:19:00,14 Adams St, New York City,NY,10001 +266253,AA Batteries (4-pack),3,3.84,2019-10-19 20:18:00,262 Cherry St, New York City,NY,10001 +266254,20in Monitor,1,109.99,2019-10-18 11:33:00,687 6th St, Dallas,TX,75001 +266255,AAA Batteries (4-pack),2,2.99,2019-10-27 18:32:00,541 Washington St, Boston,MA,02215 +266256,Lightning Charging Cable,1,14.95,2019-10-05 10:46:00,967 River St, San Francisco,CA,94016 +266257,Apple Airpods Headphones,1,150.0,2019-10-25 14:28:00,987 2nd St, New York City,NY,10001 +266258,USB-C Charging Cable,1,11.95,2019-10-26 10:24:00,959 Adams St, Atlanta,GA,30301 +266259,Wired Headphones,1,11.99,2019-10-22 22:59:00,105 Main St, Los Angeles,CA,90001 +266260,Apple Airpods Headphones,1,150.0,2019-10-30 20:52:00,318 Cedar St, Dallas,TX,75001 +266261,AAA Batteries (4-pack),2,2.99,2019-10-04 17:59:00,583 Elm St, San Francisco,CA,94016 +266262,Lightning Charging Cable,1,14.95,2019-10-20 15:59:00,644 Maple St, Boston,MA,02215 +266263,AA Batteries (4-pack),2,3.84,2019-10-29 20:08:00,158 11th St, Boston,MA,02215 +266264,USB-C Charging Cable,1,11.95,2019-10-26 05:23:00,609 Spruce St, New York City,NY,10001 +266265,Vareebadd Phone,1,400.0,2019-10-26 12:59:00,449 Maple St, New York City,NY,10001 +266266,Wired Headphones,1,11.99,2019-10-30 22:14:00,837 Church St, Dallas,TX,75001 +266267,Lightning Charging Cable,1,14.95,2019-10-08 12:59:00,417 Lakeview St, Boston,MA,02215 +266268,USB-C Charging Cable,2,11.95,2019-10-11 18:40:00,606 Hill St, Boston,MA,02215 +266269,27in 4K Gaming Monitor,1,389.99,2019-10-02 11:07:00,148 9th St, San Francisco,CA,94016 +266270,ThinkPad Laptop,1,999.99,2019-10-31 10:49:00,675 Adams St, Dallas,TX,75001 +266271,Apple Airpods Headphones,1,150.0,2019-10-15 11:11:00,902 6th St, Dallas,TX,75001 +266272,Wired Headphones,1,11.99,2019-10-13 09:23:00,621 7th St, Los Angeles,CA,90001 +266273,AA Batteries (4-pack),1,3.84,2019-10-06 08:15:00,13 Elm St, New York City,NY,10001 +266274,USB-C Charging Cable,1,11.95,2019-10-27 22:44:00,37 9th St, Dallas,TX,75001 +266275,27in FHD Monitor,1,149.99,2019-10-08 21:38:00,997 Hickory St, San Francisco,CA,94016 +266276,AA Batteries (4-pack),2,3.84,2019-10-11 21:39:00,124 Johnson St, San Francisco,CA,94016 +266277,Wired Headphones,1,11.99,2019-10-14 00:59:00,433 Center St, San Francisco,CA,94016 +266278,ThinkPad Laptop,1,999.99,2019-10-23 18:35:00,168 Forest St, New York City,NY,10001 +266279,USB-C Charging Cable,1,11.95,2019-10-18 21:15:00,988 13th St, Seattle,WA,98101 +266280,USB-C Charging Cable,1,11.95,2019-10-02 11:11:00,53 Dogwood St, Portland,OR,97035 +266281,Bose SoundSport Headphones,1,99.99,2019-10-20 12:15:00,847 Hickory St, Seattle,WA,98101 +266282,USB-C Charging Cable,1,11.95,2019-10-12 17:25:00,573 Main St, Los Angeles,CA,90001 +266283,ThinkPad Laptop,1,999.99,2019-10-20 12:08:00,689 Highland St, Atlanta,GA,30301 +266284,Bose SoundSport Headphones,1,99.99,2019-10-30 14:52:00,237 5th St, San Francisco,CA,94016 +266285,USB-C Charging Cable,1,11.95,2019-10-21 11:04:00,362 Johnson St, San Francisco,CA,94016 +266286,AAA Batteries (4-pack),2,2.99,2019-10-30 07:26:00,564 Maple St, New York City,NY,10001 +266286,AAA Batteries (4-pack),1,2.99,2019-10-30 07:26:00,564 Maple St, New York City,NY,10001 +266287,Wired Headphones,1,11.99,2019-10-02 02:26:00,702 Ridge St, New York City,NY,10001 +266288,Apple Airpods Headphones,1,150.0,2019-10-01 11:31:00,717 Park St, San Francisco,CA,94016 +266289,Macbook Pro Laptop,1,1700.0,2019-10-10 16:14:00,797 Wilson St, New York City,NY,10001 +266290,Wired Headphones,1,11.99,2019-10-17 11:40:00,75 Park St, Los Angeles,CA,90001 +266291,AAA Batteries (4-pack),1,2.99,2019-10-31 15:56:00,196 West St, Austin,TX,73301 +266292,Lightning Charging Cable,1,14.95,2019-10-02 10:27:00,719 South St, Boston,MA,02215 +266293,USB-C Charging Cable,1,11.95,2019-10-18 01:15:00,370 9th St, Boston,MA,02215 +266294,Apple Airpods Headphones,1,150.0,2019-10-21 01:15:00,199 Cherry St, San Francisco,CA,94016 +266295,Wired Headphones,1,11.99,2019-10-21 16:20:00,854 10th St, Austin,TX,73301 +266296,Lightning Charging Cable,1,14.95,2019-10-27 23:49:00,662 9th St, Boston,MA,02215 +266297,Apple Airpods Headphones,1,150.0,2019-10-04 02:11:00,244 South St, Boston,MA,02215 +266298,AA Batteries (4-pack),1,3.84,2019-10-03 23:17:00,107 Park St, San Francisco,CA,94016 +266299,Lightning Charging Cable,1,14.95,2019-10-08 18:12:00,786 6th St, Los Angeles,CA,90001 +266300,27in FHD Monitor,1,149.99,2019-10-05 16:31:00,24 5th St, San Francisco,CA,94016 +266301,iPhone,1,700.0,2019-10-15 20:55:00,253 Johnson St, Los Angeles,CA,90001 +266302,AAA Batteries (4-pack),1,2.99,2019-10-12 20:14:00,738 Sunset St, Dallas,TX,75001 +266303,ThinkPad Laptop,1,999.99,2019-10-01 17:52:00,329 10th St, Los Angeles,CA,90001 +266304,AA Batteries (4-pack),1,3.84,2019-10-02 19:54:00,232 1st St, Boston,MA,02215 +266305,iPhone,1,700.0,2019-10-12 11:40:00,80 Highland St, Portland,OR,97035 +266306,Macbook Pro Laptop,1,1700.0,2019-10-06 21:45:00,399 Cedar St, New York City,NY,10001 +266307,Vareebadd Phone,1,400.0,2019-10-31 19:14:00,768 Chestnut St, New York City,NY,10001 +266308,Wired Headphones,1,11.99,2019-10-08 15:24:00,472 Washington St, Austin,TX,73301 +266309,iPhone,1,700.0,2019-10-19 12:40:00,519 Wilson St, Seattle,WA,98101 +266310,Apple Airpods Headphones,1,150.0,2019-10-03 10:22:00,821 Pine St, San Francisco,CA,94016 +266311,AA Batteries (4-pack),2,3.84,2019-10-15 22:15:00,90 7th St, New York City,NY,10001 +266312,34in Ultrawide Monitor,1,379.99,2019-10-30 11:17:00,850 2nd St, Los Angeles,CA,90001 +266313,Lightning Charging Cable,1,14.95,2019-10-09 11:31:00,650 9th St, Los Angeles,CA,90001 +266314,USB-C Charging Cable,1,11.95,2019-10-07 10:20:00,932 6th St, San Francisco,CA,94016 +266315,AAA Batteries (4-pack),1,2.99,2019-10-25 13:22:00,133 11th St, New York City,NY,10001 +266316,Apple Airpods Headphones,1,150.0,2019-10-14 21:05:00,574 South St, San Francisco,CA,94016 +266317,AAA Batteries (4-pack),1,2.99,2019-10-20 18:19:00,95 9th St, Los Angeles,CA,90001 +266318,Lightning Charging Cable,1,14.95,2019-10-30 20:09:00,161 Dogwood St, New York City,NY,10001 +266319,USB-C Charging Cable,1,11.95,2019-10-26 12:17:00,222 Cedar St, Atlanta,GA,30301 +266320,USB-C Charging Cable,1,11.95,2019-10-09 20:42:00,508 Lake St, Boston,MA,02215 +266321,Macbook Pro Laptop,1,1700.0,2019-10-06 14:20:00,762 Main St, Los Angeles,CA,90001 +266322,iPhone,1,700.0,2019-10-15 21:40:00,843 Cherry St, Boston,MA,02215 +266323,20in Monitor,1,109.99,2019-10-16 23:17:00,427 Madison St, Portland,ME,04101 +266324,27in 4K Gaming Monitor,1,389.99,2019-10-12 13:07:00,276 Jackson St, New York City,NY,10001 +266325,USB-C Charging Cable,1,11.95,2019-10-20 12:55:00,330 9th St, Portland,OR,97035 +266326,Bose SoundSport Headphones,1,99.99,2019-10-16 21:56:00,170 Jackson St, New York City,NY,10001 +266327,Apple Airpods Headphones,1,150.0,2019-10-05 14:39:00,868 Lake St, Los Angeles,CA,90001 +266328,Bose SoundSport Headphones,1,99.99,2019-10-11 13:37:00,8 Madison St, San Francisco,CA,94016 +266329,Wired Headphones,1,11.99,2019-10-07 15:18:00,594 1st St, Boston,MA,02215 +266330,Lightning Charging Cable,1,14.95,2019-10-16 12:07:00,279 Jefferson St, Portland,OR,97035 +266331,Wired Headphones,1,11.99,2019-10-26 21:59:00,483 10th St, Seattle,WA,98101 +266331,20in Monitor,1,109.99,2019-10-26 21:59:00,483 10th St, Seattle,WA,98101 +266332,AA Batteries (4-pack),1,3.84,2019-10-23 15:55:00,108 Lake St, New York City,NY,10001 +266333,iPhone,1,700.0,2019-10-15 13:06:00,899 5th St, San Francisco,CA,94016 +266334,iPhone,1,700.0,2019-10-07 19:34:00,165 Church St, Seattle,WA,98101 +266335,27in FHD Monitor,1,149.99,2019-10-22 16:16:00,321 Dogwood St, Los Angeles,CA,90001 +266336,ThinkPad Laptop,1,999.99,2019-10-16 15:07:00,805 West St, Austin,TX,73301 +266337,AAA Batteries (4-pack),1,2.99,2019-10-26 18:55:00,60 Walnut St, Dallas,TX,75001 +266338,Flatscreen TV,1,300.0,2019-10-21 01:36:00,670 Jackson St, Boston,MA,02215 +266339,34in Ultrawide Monitor,1,379.99,2019-10-20 18:57:00,62 9th St, Dallas,TX,75001 +266340,AAA Batteries (4-pack),1,2.99,2019-10-02 20:27:00,920 14th St, Los Angeles,CA,90001 +266341,USB-C Charging Cable,1,11.95,2019-10-05 07:51:00,547 10th St, Atlanta,GA,30301 +266342,iPhone,1,700.0,2019-10-25 08:54:00,67 Meadow St, Atlanta,GA,30301 +266343,USB-C Charging Cable,1,11.95,2019-10-29 12:53:00,14 Hickory St, Atlanta,GA,30301 +266344,34in Ultrawide Monitor,1,379.99,2019-10-02 11:42:00,351 Spruce St, New York City,NY,10001 +266345,Macbook Pro Laptop,1,1700.0,2019-10-08 11:26:00,833 12th St, San Francisco,CA,94016 +266346,USB-C Charging Cable,1,11.95,2019-10-02 22:07:00,688 Spruce St, San Francisco,CA,94016 +266347,Google Phone,1,600.0,2019-10-14 04:18:00,302 8th St, Atlanta,GA,30301 +266347,Wired Headphones,1,11.99,2019-10-14 04:18:00,302 8th St, Atlanta,GA,30301 +266348,USB-C Charging Cable,1,11.95,2019-10-26 12:02:00,40 2nd St, Seattle,WA,98101 +266349,AA Batteries (4-pack),2,3.84,2019-10-05 12:56:00,427 Forest St, Los Angeles,CA,90001 +266350,Wired Headphones,3,11.99,2019-10-01 10:53:00,127 Cherry St, Seattle,WA,98101 +266351,iPhone,1,700.0,2019-10-07 10:20:00,317 Ridge St, San Francisco,CA,94016 +266352,USB-C Charging Cable,1,11.95,2019-10-06 22:38:00,992 11th St, Los Angeles,CA,90001 +266353,USB-C Charging Cable,1,11.95,2019-10-02 15:55:00,826 Pine St, Los Angeles,CA,90001 +266354,27in 4K Gaming Monitor,1,389.99,2019-10-06 16:34:00,173 Elm St, Portland,OR,97035 +266355,Wired Headphones,1,11.99,2019-10-02 11:26:00,986 Dogwood St, New York City,NY,10001 +266356,Wired Headphones,1,11.99,2019-10-29 21:42:00,10 Hill St, Boston,MA,02215 +266357,ThinkPad Laptop,1,999.99,2019-10-05 11:06:00,357 North St, Dallas,TX,75001 +266358,Macbook Pro Laptop,1,1700.0,2019-10-03 11:02:00,771 Church St, Dallas,TX,75001 +266359,USB-C Charging Cable,1,11.95,2019-10-27 20:56:00,168 8th St, New York City,NY,10001 +266360,27in FHD Monitor,1,149.99,2019-10-22 21:36:00,7 Dogwood St, Austin,TX,73301 +266361,AAA Batteries (4-pack),1,2.99,2019-10-15 21:59:00,715 Wilson St, Boston,MA,02215 +266362,Bose SoundSport Headphones,1,99.99,2019-10-06 23:32:00,866 Forest St, Seattle,WA,98101 +266363,AAA Batteries (4-pack),1,2.99,2019-10-03 11:10:00,36 7th St, New York City,NY,10001 +266364,AA Batteries (4-pack),1,3.84,2019-10-19 21:57:00,291 11th St, San Francisco,CA,94016 +266365,AAA Batteries (4-pack),3,2.99,2019-10-21 00:46:00,692 Walnut St, Portland,OR,97035 +266366,Lightning Charging Cable,1,14.95,2019-10-01 19:27:00,359 Lakeview St, Atlanta,GA,30301 +266367,USB-C Charging Cable,1,11.95,2019-10-14 21:17:00,397 Main St, New York City,NY,10001 +266368,27in FHD Monitor,1,149.99,2019-10-20 14:38:00,743 12th St, Portland,OR,97035 +266369,iPhone,1,700.0,2019-10-02 11:01:00,216 Lincoln St, Austin,TX,73301 +266370,AAA Batteries (4-pack),2,2.99,2019-10-16 10:34:00,934 Sunset St, Portland,OR,97035 +266371,Macbook Pro Laptop,1,1700.0,2019-10-05 17:15:00,556 Hickory St, Boston,MA,02215 +266372,iPhone,1,700.0,2019-10-22 02:27:00,685 Center St, Dallas,TX,75001 +266373,Macbook Pro Laptop,1,1700.0,2019-10-10 14:30:00,731 Lakeview St, Portland,OR,97035 +266374,AA Batteries (4-pack),1,3.84,2019-10-17 20:54:00,774 Willow St, Los Angeles,CA,90001 +266375,Bose SoundSport Headphones,1,99.99,2019-10-29 18:47:00,828 4th St, Portland,OR,97035 +266376,27in FHD Monitor,1,149.99,2019-10-26 18:16:00,622 Dogwood St, New York City,NY,10001 +266377,AA Batteries (4-pack),1,3.84,2019-10-15 15:01:00,705 10th St, New York City,NY,10001 +266378,AAA Batteries (4-pack),1,2.99,2019-10-20 09:08:00,650 Highland St, San Francisco,CA,94016 +266379,AAA Batteries (4-pack),2,2.99,2019-10-24 17:51:00,149 Walnut St, Atlanta,GA,30301 +266380,USB-C Charging Cable,1,11.95,2019-10-07 11:15:00,267 Jefferson St, Los Angeles,CA,90001 +266381,Lightning Charging Cable,1,14.95,2019-10-03 11:13:00,203 Sunset St, Boston,MA,02215 +266382,20in Monitor,1,109.99,2019-10-09 07:27:00,359 Elm St, Seattle,WA,98101 +266383,Wired Headphones,1,11.99,2019-10-18 00:50:00,139 Lincoln St, Portland,OR,97035 +266384,AAA Batteries (4-pack),1,2.99,2019-10-02 22:07:00,462 1st St, San Francisco,CA,94016 +266385,Bose SoundSport Headphones,1,99.99,2019-10-08 17:09:00,395 Cedar St, Los Angeles,CA,90001 +266386,Wired Headphones,1,11.99,2019-10-09 21:08:00,643 Main St, New York City,NY,10001 +266387,USB-C Charging Cable,1,11.95,2019-10-08 09:53:00,445 Meadow St, San Francisco,CA,94016 +266388,AAA Batteries (4-pack),2,2.99,2019-10-13 12:06:00,13 10th St, San Francisco,CA,94016 +266389,AAA Batteries (4-pack),1,2.99,2019-10-07 20:26:00,818 Walnut St, Los Angeles,CA,90001 +266390,Wired Headphones,1,11.99,2019-10-06 15:54:00,689 Jackson St, Dallas,TX,75001 +266391,AAA Batteries (4-pack),1,2.99,2019-10-11 08:26:00,673 Jefferson St, Seattle,WA,98101 +266392,USB-C Charging Cable,1,11.95,2019-10-25 08:50:00,641 Washington St, Seattle,WA,98101 +266393,AA Batteries (4-pack),1,3.84,2019-10-11 20:21:00,842 Lakeview St, Seattle,WA,98101 +266394,Apple Airpods Headphones,1,150.0,2019-10-04 11:17:00,112 Ridge St, Seattle,WA,98101 +266395,AA Batteries (4-pack),1,3.84,2019-10-31 21:16:00,784 Hickory St, Atlanta,GA,30301 +266396,34in Ultrawide Monitor,1,379.99,2019-10-04 02:26:00,837 Main St, San Francisco,CA,94016 +266397,Bose SoundSport Headphones,1,99.99,2019-10-19 14:02:00,736 West St, Portland,OR,97035 +266398,Macbook Pro Laptop,1,1700.0,2019-10-26 23:39:00,170 Ridge St, New York City,NY,10001 +266399,AAA Batteries (4-pack),1,2.99,2019-10-31 12:20:00,963 Willow St, Seattle,WA,98101 +266400,27in 4K Gaming Monitor,1,389.99,2019-10-28 12:15:00,244 Wilson St, Los Angeles,CA,90001 +266401,AA Batteries (4-pack),1,3.84,2019-10-20 22:07:00,189 6th St, San Francisco,CA,94016 +266402,Bose SoundSport Headphones,1,99.99,2019-10-03 21:11:00,291 Church St, New York City,NY,10001 +266403,27in 4K Gaming Monitor,1,389.99,2019-10-09 22:48:00,905 13th St, Boston,MA,02215 +266404,LG Dryer,1,600.0,2019-10-09 21:54:00,808 Lincoln St, San Francisco,CA,94016 +266405,27in 4K Gaming Monitor,1,389.99,2019-10-10 06:26:00,250 1st St, Austin,TX,73301 +266406,USB-C Charging Cable,1,11.95,2019-10-30 15:27:00,639 Lincoln St, San Francisco,CA,94016 +266407,Lightning Charging Cable,1,14.95,2019-10-13 11:16:00,156 2nd St, Portland,OR,97035 +266408,AAA Batteries (4-pack),4,2.99,2019-10-12 13:41:00,67 5th St, Los Angeles,CA,90001 +266409,USB-C Charging Cable,1,11.95,2019-10-20 07:59:00,396 10th St, Dallas,TX,75001 +266410,Wired Headphones,1,11.99,2019-10-02 13:21:00,989 North St, San Francisco,CA,94016 +266411,AA Batteries (4-pack),1,3.84,2019-10-18 18:13:00,322 Johnson St, Los Angeles,CA,90001 +266412,Bose SoundSport Headphones,1,99.99,2019-10-08 13:30:00,457 Madison St, Boston,MA,02215 +266413,Lightning Charging Cable,1,14.95,2019-10-29 22:28:00,883 Wilson St, Atlanta,GA,30301 +266414,27in 4K Gaming Monitor,1,389.99,2019-10-24 08:44:00,676 Wilson St, San Francisco,CA,94016 +266415,Apple Airpods Headphones,1,150.0,2019-10-02 15:19:00,852 Pine St, San Francisco,CA,94016 +266416,AAA Batteries (4-pack),1,2.99,2019-10-20 17:55:00,606 14th St, San Francisco,CA,94016 +266417,27in 4K Gaming Monitor,1,389.99,2019-10-16 15:58:00,481 Maple St, Atlanta,GA,30301 +266418,Apple Airpods Headphones,1,150.0,2019-10-25 22:15:00,916 Maple St, San Francisco,CA,94016 +266419,Bose SoundSport Headphones,1,99.99,2019-10-06 17:56:00,768 South St, Atlanta,GA,30301 +266420,Google Phone,1,600.0,2019-10-28 16:24:00,731 Walnut St, Portland,ME,04101 +266421,Wired Headphones,1,11.99,2019-10-29 10:41:00,455 Ridge St, Seattle,WA,98101 +266422,USB-C Charging Cable,1,11.95,2019-10-12 02:17:00,559 Jefferson St, New York City,NY,10001 +266423,USB-C Charging Cable,1,11.95,2019-10-18 08:30:00,468 Church St, Los Angeles,CA,90001 +266424,Lightning Charging Cable,1,14.95,2019-10-31 16:03:00,500 9th St, Los Angeles,CA,90001 +266425,AAA Batteries (4-pack),1,2.99,2019-10-11 13:04:00,259 Chestnut St, Los Angeles,CA,90001 +266426,USB-C Charging Cable,1,11.95,2019-10-19 19:52:00,93 South St, Los Angeles,CA,90001 +266427,Macbook Pro Laptop,1,1700.0,2019-10-05 08:35:00,798 Lincoln St, San Francisco,CA,94016 +266428,Flatscreen TV,1,300.0,2019-10-07 13:40:00,4 Main St, Portland,OR,97035 +266429,Lightning Charging Cable,1,14.95,2019-10-30 17:27:00,627 Meadow St, Atlanta,GA,30301 +266430,Google Phone,1,600.0,2019-10-04 22:41:00,753 North St, Portland,OR,97035 +266431,Bose SoundSport Headphones,1,99.99,2019-10-22 08:44:00,708 Main St, Los Angeles,CA,90001 +266431,Lightning Charging Cable,2,14.95,2019-10-22 08:44:00,708 Main St, Los Angeles,CA,90001 +266432,AA Batteries (4-pack),1,3.84,2019-10-30 21:31:00,802 6th St, San Francisco,CA,94016 +266433,USB-C Charging Cable,1,11.95,2019-10-23 00:15:00,893 Center St, San Francisco,CA,94016 +266434,Wired Headphones,1,11.99,2019-10-18 16:28:00,187 Center St, Boston,MA,02215 +266435,34in Ultrawide Monitor,1,379.99,2019-10-11 16:24:00,828 Lake St, Dallas,TX,75001 +266436,20in Monitor,1,109.99,2019-10-27 22:46:00,415 Pine St, Atlanta,GA,30301 +266437,ThinkPad Laptop,1,999.99,2019-10-19 11:49:00,718 Spruce St, Atlanta,GA,30301 +266438,AAA Batteries (4-pack),2,2.99,2019-10-11 06:45:00,990 Chestnut St, San Francisco,CA,94016 +266439,34in Ultrawide Monitor,1,379.99,2019-10-15 00:44:00,810 Main St, New York City,NY,10001 +266440,Wired Headphones,1,11.99,2019-10-17 10:57:00,29 Meadow St, Dallas,TX,75001 +266441,Google Phone,1,600.0,2019-10-07 18:03:00,218 Main St, Dallas,TX,75001 +266442,AA Batteries (4-pack),1,3.84,2019-10-31 19:55:00,705 9th St, San Francisco,CA,94016 +266443,Apple Airpods Headphones,1,150.0,2019-10-11 11:01:00,607 Washington St, San Francisco,CA,94016 +266444,Wired Headphones,1,11.99,2019-10-30 13:53:00,409 Meadow St, Austin,TX,73301 +266445,Apple Airpods Headphones,1,150.0,2019-10-14 18:26:00,177 7th St, Boston,MA,02215 +266446,Bose SoundSport Headphones,1,99.99,2019-10-25 17:56:00,320 5th St, New York City,NY,10001 +266447,Wired Headphones,1,11.99,2019-10-05 19:45:00,154 Dogwood St, San Francisco,CA,94016 +266448,USB-C Charging Cable,1,11.95,2019-10-14 20:20:00,163 River St, Portland,OR,97035 +266449,USB-C Charging Cable,1,11.95,2019-10-19 11:11:00,934 11th St, San Francisco,CA,94016 +266450,Google Phone,1,600.0,2019-10-23 22:48:00,774 9th St, Dallas,TX,75001 +266451,Bose SoundSport Headphones,1,99.99,2019-10-29 12:33:00,158 Lakeview St, Dallas,TX,75001 +266452,AAA Batteries (4-pack),1,2.99,2019-10-26 19:23:00,567 Meadow St, San Francisco,CA,94016 +266453,AAA Batteries (4-pack),1,2.99,2019-10-15 17:22:00,729 8th St, New York City,NY,10001 +266454,Wired Headphones,1,11.99,2019-10-28 20:15:00,980 Willow St, New York City,NY,10001 +266455,AA Batteries (4-pack),1,3.84,2019-10-20 21:41:00,858 Adams St, San Francisco,CA,94016 +266456,Lightning Charging Cable,1,14.95,2019-10-20 16:25:00,63 Madison St, San Francisco,CA,94016 +266457,Lightning Charging Cable,1,14.95,2019-10-03 04:30:00,417 Wilson St, Atlanta,GA,30301 +266458,AA Batteries (4-pack),1,3.84,2019-10-28 07:18:00,466 Lake St, San Francisco,CA,94016 +266459,AA Batteries (4-pack),2,3.84,2019-10-08 13:37:00,829 West St, San Francisco,CA,94016 +266460,USB-C Charging Cable,1,11.95,2019-10-21 10:48:00,411 13th St, Seattle,WA,98101 +266461,Flatscreen TV,1,300.0,2019-10-02 21:23:00,209 Adams St, San Francisco,CA,94016 +266462,Wired Headphones,1,11.99,2019-10-28 21:30:00,57 1st St, Atlanta,GA,30301 +266463,27in FHD Monitor,1,149.99,2019-10-07 09:47:00,487 Wilson St, Boston,MA,02215 +266464,AA Batteries (4-pack),1,3.84,2019-10-18 11:38:00,796 Cherry St, Seattle,WA,98101 +266465,Bose SoundSport Headphones,1,99.99,2019-10-19 14:21:00,136 11th St, Los Angeles,CA,90001 +266466,USB-C Charging Cable,2,11.95,2019-10-11 00:54:00,146 Washington St, Los Angeles,CA,90001 +266467,AAA Batteries (4-pack),1,2.99,2019-10-21 17:50:00,313 Elm St, Dallas,TX,75001 +266468,USB-C Charging Cable,1,11.95,2019-10-08 21:12:00,997 Lakeview St, Los Angeles,CA,90001 +266469,Google Phone,1,600.0,2019-10-05 10:26:00,665 5th St, New York City,NY,10001 +266470,USB-C Charging Cable,1,11.95,2019-10-12 15:41:00,264 Johnson St, Boston,MA,02215 +266471,AAA Batteries (4-pack),1,2.99,2019-10-16 21:14:00,245 South St, Boston,MA,02215 +266472,USB-C Charging Cable,1,11.95,2019-10-05 13:34:00,886 South St, Boston,MA,02215 +266473,27in 4K Gaming Monitor,1,389.99,2019-10-03 19:52:00,883 Lake St, Dallas,TX,75001 +266474,Wired Headphones,1,11.99,2019-10-23 14:50:00,333 1st St, Boston,MA,02215 +266475,Bose SoundSport Headphones,1,99.99,2019-10-04 08:40:00,312 Sunset St, San Francisco,CA,94016 +266476,AA Batteries (4-pack),1,3.84,2019-10-17 02:24:00,331 Sunset St, Portland,OR,97035 +266477,Apple Airpods Headphones,1,150.0,2019-10-10 10:01:00,845 Lincoln St, San Francisco,CA,94016 +266478,20in Monitor,1,109.99,2019-10-09 18:23:00,106 Sunset St, Atlanta,GA,30301 +266479,Apple Airpods Headphones,1,150.0,2019-10-15 20:03:00,751 Highland St, New York City,NY,10001 +266480,Apple Airpods Headphones,1,150.0,2019-10-10 14:07:00,273 Park St, Los Angeles,CA,90001 +266481,iPhone,1,700.0,2019-10-20 20:14:00,545 Dogwood St, Los Angeles,CA,90001 +266482,34in Ultrawide Monitor,1,379.99,2019-10-13 10:08:00,784 Madison St, San Francisco,CA,94016 +266483,Wired Headphones,2,11.99,2019-10-31 19:38:00,817 Center St, San Francisco,CA,94016 +266484,AAA Batteries (4-pack),1,2.99,2019-10-26 08:03:00,7 Chestnut St, San Francisco,CA,94016 +266485,USB-C Charging Cable,1,11.95,2019-10-09 16:12:00,142 7th St, Seattle,WA,98101 +266486,Apple Airpods Headphones,1,150.0,2019-10-20 12:03:00,657 Cedar St, Austin,TX,73301 +266487,Google Phone,1,600.0,2019-10-23 20:32:00,982 5th St, New York City,NY,10001 +266488,iPhone,1,700.0,2019-10-08 00:37:00,632 Hill St, New York City,NY,10001 +266489,Apple Airpods Headphones,1,150.0,2019-10-28 09:58:00,207 Pine St, Atlanta,GA,30301 +266490,20in Monitor,1,109.99,2019-10-04 13:44:00,480 4th St, Austin,TX,73301 +266491,USB-C Charging Cable,1,11.95,2019-10-17 11:46:00,363 10th St, New York City,NY,10001 +266492,USB-C Charging Cable,1,11.95,2019-10-10 07:17:00,820 Sunset St, Boston,MA,02215 +266493,ThinkPad Laptop,1,999.99,2019-10-10 17:22:00,473 Madison St, Austin,TX,73301 +266494,Wired Headphones,1,11.99,2019-10-10 08:20:00,679 Church St, Austin,TX,73301 +266495,Wired Headphones,1,11.99,2019-10-25 11:19:00,21 Johnson St, Portland,OR,97035 +266496,AA Batteries (4-pack),2,3.84,2019-10-26 18:55:00,129 Chestnut St, New York City,NY,10001 +266497,Lightning Charging Cable,1,14.95,2019-10-30 10:32:00,501 14th St, Boston,MA,02215 +266498,34in Ultrawide Monitor,1,379.99,2019-10-30 07:04:00,185 Lake St, Los Angeles,CA,90001 +266498,Apple Airpods Headphones,1,150.0,2019-10-30 07:04:00,185 Lake St, Los Angeles,CA,90001 +266499,Apple Airpods Headphones,1,150.0,2019-10-02 22:53:00,79 12th St, Atlanta,GA,30301 +266500,34in Ultrawide Monitor,1,379.99,2019-10-06 20:35:00,551 1st St, Boston,MA,02215 +266501,AAA Batteries (4-pack),1,2.99,2019-10-24 21:24:00,291 Sunset St, Boston,MA,02215 +266502,USB-C Charging Cable,1,11.95,2019-10-03 22:09:00,839 Jackson St, New York City,NY,10001 +266503,Bose SoundSport Headphones,1,99.99,2019-10-13 14:18:00,133 Madison St, Dallas,TX,75001 +266504,ThinkPad Laptop,1,999.99,2019-10-29 15:46:00,807 Lincoln St, Portland,ME,04101 +266504,AA Batteries (4-pack),2,3.84,2019-10-29 15:46:00,807 Lincoln St, Portland,ME,04101 +266505,USB-C Charging Cable,1,11.95,2019-10-05 14:36:00,377 6th St, New York City,NY,10001 +266506,iPhone,1,700.0,2019-10-20 09:15:00,899 Wilson St, Boston,MA,02215 +266506,Lightning Charging Cable,2,14.95,2019-10-20 09:15:00,899 Wilson St, Boston,MA,02215 +266506,Wired Headphones,1,11.99,2019-10-20 09:15:00,899 Wilson St, Boston,MA,02215 +266507,Wired Headphones,1,11.99,2019-10-04 12:36:00,46 Spruce St, Boston,MA,02215 +266508,Bose SoundSport Headphones,1,99.99,2019-10-22 22:02:00,68 Park St, Atlanta,GA,30301 +266509,ThinkPad Laptop,1,999.99,2019-10-24 17:04:00,439 Lakeview St, Los Angeles,CA,90001 +266510,AAA Batteries (4-pack),3,2.99,2019-10-01 09:39:00,355 13th St, New York City,NY,10001 +266511,20in Monitor,1,109.99,2019-10-05 21:10:00,581 Main St, Boston,MA,02215 +266512,Google Phone,1,600.0,2019-10-24 20:32:00,44 Johnson St, San Francisco,CA,94016 +266513,AA Batteries (4-pack),1,3.84,2019-10-07 00:24:00,285 Park St, San Francisco,CA,94016 +266514,Wired Headphones,1,11.99,2019-10-01 21:23:00,530 Hickory St, New York City,NY,10001 +266515,AAA Batteries (4-pack),1,2.99,2019-10-12 10:40:00,582 Johnson St, San Francisco,CA,94016 +266516,27in FHD Monitor,1,149.99,2019-10-22 08:27:00,189 Willow St, San Francisco,CA,94016 +266517,AAA Batteries (4-pack),1,2.99,2019-10-04 09:42:00,382 Forest St, San Francisco,CA,94016 +266518,Google Phone,1,600.0,2019-10-25 18:40:00,99 River St, Atlanta,GA,30301 +266519,AA Batteries (4-pack),3,3.84,2019-10-01 14:28:00,50 Cedar St, Boston,MA,02215 +266520,USB-C Charging Cable,1,11.95,2019-10-02 21:54:00,373 5th St, San Francisco,CA,94016 +266521,20in Monitor,1,109.99,2019-10-23 19:12:00,416 West St, San Francisco,CA,94016 +266522,Wired Headphones,1,11.99,2019-10-10 11:59:00,22 Highland St, Dallas,TX,75001 +266523,Wired Headphones,1,11.99,2019-10-11 22:43:00,379 Spruce St, New York City,NY,10001 +266524,Bose SoundSport Headphones,1,99.99,2019-10-31 18:53:00,862 Wilson St, Atlanta,GA,30301 +266525,Lightning Charging Cable,1,14.95,2019-10-18 08:58:00,181 13th St, San Francisco,CA,94016 +266526,Apple Airpods Headphones,1,150.0,2019-10-24 09:44:00,787 Jefferson St, Boston,MA,02215 +266527,Apple Airpods Headphones,1,150.0,2019-10-10 12:58:00,440 14th St, Dallas,TX,75001 +266528,AAA Batteries (4-pack),1,2.99,2019-10-17 12:55:00,418 8th St, Portland,OR,97035 +266529,Flatscreen TV,1,300.0,2019-10-29 17:06:00,294 Hill St, Atlanta,GA,30301 +266530,Lightning Charging Cable,1,14.95,2019-10-07 21:37:00,703 Dogwood St, San Francisco,CA,94016 +266531,LG Washing Machine,1,600.0,2019-10-28 16:04:00,121 Lincoln St, Boston,MA,02215 +266532,USB-C Charging Cable,1,11.95,2019-10-22 14:31:00,116 6th St, Los Angeles,CA,90001 +266533,20in Monitor,1,109.99,2019-10-08 09:28:00,255 Elm St, San Francisco,CA,94016 +266534,27in 4K Gaming Monitor,1,389.99,2019-10-13 20:35:00,291 Chestnut St, Boston,MA,02215 +266535,AA Batteries (4-pack),1,3.84,2019-10-11 10:33:00,811 Park St, Los Angeles,CA,90001 +266536,Lightning Charging Cable,1,14.95,2019-10-18 18:30:00,50 Main St, Atlanta,GA,30301 +266537,AAA Batteries (4-pack),3,2.99,2019-10-24 10:56:00,995 4th St, Atlanta,GA,30301 +266538,Google Phone,1,600.0,2019-10-17 16:32:00,794 12th St, San Francisco,CA,94016 +266539,AAA Batteries (4-pack),1,2.99,2019-10-29 15:52:00,350 8th St, Los Angeles,CA,90001 +266540,Wired Headphones,1,11.99,2019-10-30 16:12:00,785 Park St, Dallas,TX,75001 +266541,27in 4K Gaming Monitor,1,389.99,2019-10-30 14:08:00,313 11th St, San Francisco,CA,94016 +266542,27in 4K Gaming Monitor,1,389.99,2019-10-29 14:02:00,679 North St, Los Angeles,CA,90001 +266543,AA Batteries (4-pack),1,3.84,2019-10-16 13:00:00,740 2nd St, Dallas,TX,75001 +266544,Lightning Charging Cable,1,14.95,2019-10-04 12:29:00,984 Highland St, Seattle,WA,98101 +266545,AA Batteries (4-pack),5,3.84,2019-10-23 20:40:00,451 Elm St, Boston,MA,02215 +266546,27in FHD Monitor,1,149.99,2019-10-05 09:51:00,936 Meadow St, San Francisco,CA,94016 +266547,27in 4K Gaming Monitor,1,389.99,2019-10-25 19:33:00,409 2nd St, New York City,NY,10001 +266548,Bose SoundSport Headphones,1,99.99,2019-10-17 05:34:00,27 Jackson St, Los Angeles,CA,90001 +266549,USB-C Charging Cable,1,11.95,2019-10-07 09:24:00,661 Hill St, Los Angeles,CA,90001 +266550,Google Phone,1,600.0,2019-10-19 17:54:00,67 11th St, Los Angeles,CA,90001 +266551,Bose SoundSport Headphones,1,99.99,2019-10-26 16:15:00,375 8th St, Dallas,TX,75001 +266552,Apple Airpods Headphones,1,150.0,2019-10-02 22:44:00,299 Main St, Boston,MA,02215 +266553,27in FHD Monitor,1,149.99,2019-10-05 20:25:00,776 11th St, New York City,NY,10001 +266554,34in Ultrawide Monitor,1,379.99,2019-10-09 13:25:00,229 5th St, New York City,NY,10001 +266555,AAA Batteries (4-pack),1,2.99,2019-10-14 09:54:00,841 9th St, Boston,MA,02215 +266556,AA Batteries (4-pack),1,3.84,2019-10-09 11:35:00,202 Lincoln St, San Francisco,CA,94016 +266557,20in Monitor,1,109.99,2019-10-18 18:32:00,728 2nd St, Austin,TX,73301 +266558,iPhone,1,700.0,2019-10-28 18:53:00,610 Pine St, San Francisco,CA,94016 +266559,ThinkPad Laptop,1,999.99,2019-10-24 15:55:00,108 Lakeview St, San Francisco,CA,94016 +266560,AA Batteries (4-pack),2,3.84,2019-10-12 06:18:00,22 River St, San Francisco,CA,94016 +266561,27in FHD Monitor,1,149.99,2019-10-25 16:35:00,126 8th St, San Francisco,CA,94016 +266562,Apple Airpods Headphones,1,150.0,2019-10-22 23:52:00,489 Johnson St, Los Angeles,CA,90001 +266563,Lightning Charging Cable,1,14.95,2019-10-25 09:27:00,145 14th St, New York City,NY,10001 +266564,Apple Airpods Headphones,1,150.0,2019-10-06 10:55:00,686 6th St, San Francisco,CA,94016 +266565,Bose SoundSport Headphones,1,99.99,2019-10-31 15:08:00,664 Main St, Los Angeles,CA,90001 +266566,Bose SoundSport Headphones,1,99.99,2019-10-27 13:15:00,618 West St, New York City,NY,10001 +266567,Google Phone,1,600.0,2019-10-18 09:01:00,637 Johnson St, Seattle,WA,98101 +266568,AAA Batteries (4-pack),1,2.99,2019-10-20 13:16:00,134 Forest St, Portland,ME,04101 +266569,27in 4K Gaming Monitor,1,389.99,2019-10-25 18:30:00,994 Cherry St, San Francisco,CA,94016 +266570,Apple Airpods Headphones,1,150.0,2019-10-22 07:37:00,696 Forest St, San Francisco,CA,94016 +266571,Bose SoundSport Headphones,1,99.99,2019-10-03 19:35:00,636 Ridge St, Portland,OR,97035 +266572,Lightning Charging Cable,1,14.95,2019-10-12 11:58:00,485 2nd St, San Francisco,CA,94016 +266573,Flatscreen TV,1,300.0,2019-10-21 21:04:00,710 Pine St, Los Angeles,CA,90001 +266574,Bose SoundSport Headphones,1,99.99,2019-10-15 11:47:00,628 Sunset St, Los Angeles,CA,90001 +266575,Lightning Charging Cable,2,14.95,2019-10-16 13:57:00,195 Johnson St, San Francisco,CA,94016 +266576,Apple Airpods Headphones,1,150.0,2019-10-25 20:26:00,652 6th St, Portland,OR,97035 +266577,AA Batteries (4-pack),1,3.84,2019-10-06 21:44:00,308 Main St, Seattle,WA,98101 +266578,USB-C Charging Cable,1,11.95,2019-10-11 17:06:00,838 Sunset St, New York City,NY,10001 +266579,iPhone,1,700.0,2019-10-23 22:25:00,519 North St, Los Angeles,CA,90001 +266580,27in FHD Monitor,1,149.99,2019-10-19 11:54:00,588 Madison St, Boston,MA,02215 +266581,AA Batteries (4-pack),1,3.84,2019-10-02 20:09:00,271 Washington St, Atlanta,GA,30301 +266582,Bose SoundSport Headphones,1,99.99,2019-10-05 19:35:00,481 Johnson St, Austin,TX,73301 +266583,AAA Batteries (4-pack),2,2.99,2019-10-09 12:14:00,908 Ridge St, Boston,MA,02215 +266584,Lightning Charging Cable,1,14.95,2019-10-23 21:57:00,406 Cedar St, Austin,TX,73301 +266585,Bose SoundSport Headphones,1,99.99,2019-10-05 19:21:00,57 Lakeview St, Austin,TX,73301 +266586,AAA Batteries (4-pack),1,2.99,2019-10-06 14:01:00,999 Lakeview St, Boston,MA,02215 +266587,AA Batteries (4-pack),1,3.84,2019-10-21 14:47:00,722 Elm St, San Francisco,CA,94016 +266588,Wired Headphones,2,11.99,2019-10-10 04:04:00,554 Spruce St, Seattle,WA,98101 +266589,27in FHD Monitor,1,149.99,2019-10-30 12:24:00,805 7th St, Los Angeles,CA,90001 +266590,iPhone,1,700.0,2019-10-31 10:05:00,583 Spruce St, Los Angeles,CA,90001 +266590,Wired Headphones,1,11.99,2019-10-31 10:05:00,583 Spruce St, Los Angeles,CA,90001 +266591,Wired Headphones,1,11.99,2019-10-26 05:16:00,673 Church St, San Francisco,CA,94016 +266592,Lightning Charging Cable,1,14.95,2019-10-06 21:49:00,390 Pine St, San Francisco,CA,94016 +266593,27in FHD Monitor,1,149.99,2019-10-15 17:27:00,337 Lakeview St, Atlanta,GA,30301 +266594,AAA Batteries (4-pack),1,2.99,2019-10-18 10:22:00,193 5th St, Los Angeles,CA,90001 +266595,27in 4K Gaming Monitor,1,389.99,2019-10-18 17:44:00,331 12th St, New York City,NY,10001 +266596,ThinkPad Laptop,1,999.99,2019-10-12 13:14:00,823 Adams St, New York City,NY,10001 +266597,USB-C Charging Cable,1,11.95,2019-10-06 22:47:00,412 Sunset St, Portland,OR,97035 +266598,Bose SoundSport Headphones,1,99.99,2019-10-03 20:57:00,785 7th St, Austin,TX,73301 +266599,Bose SoundSport Headphones,1,99.99,2019-10-10 07:22:00,755 Johnson St, Atlanta,GA,30301 +266600,AA Batteries (4-pack),1,3.84,2019-10-18 17:37:00,430 Center St, Atlanta,GA,30301 +266601,20in Monitor,1,109.99,2019-10-19 15:22:00,471 Church St, Los Angeles,CA,90001 +266602,USB-C Charging Cable,1,11.95,2019-10-27 22:34:00,653 Hickory St, Dallas,TX,75001 +266603,Lightning Charging Cable,1,14.95,2019-10-23 13:03:00,615 Lake St, Boston,MA,02215 +266604,Lightning Charging Cable,1,14.95,2019-10-22 15:33:00,979 Jackson St, Los Angeles,CA,90001 +266605,Google Phone,1,600.0,2019-10-05 12:38:00,173 Chestnut St, Dallas,TX,75001 +266606,Macbook Pro Laptop,1,1700.0,2019-10-03 17:19:00,298 11th St, Boston,MA,02215 +266607,Apple Airpods Headphones,1,150.0,2019-10-19 15:43:00,574 Center St, Seattle,WA,98101 +266608,27in 4K Gaming Monitor,1,389.99,2019-10-03 14:24:00,161 Jefferson St, Atlanta,GA,30301 +266609,AAA Batteries (4-pack),2,2.99,2019-10-03 09:11:00,297 Lincoln St, Atlanta,GA,30301 +266610,iPhone,1,700.0,2019-10-31 12:19:00,142 Walnut St, San Francisco,CA,94016 +266611,Wired Headphones,1,11.99,2019-10-17 17:14:00,169 Church St, Austin,TX,73301 +266612,USB-C Charging Cable,2,11.95,2019-10-26 11:11:00,132 Wilson St, Seattle,WA,98101 +266613,20in Monitor,1,109.99,2019-10-12 14:03:00,663 Lake St, New York City,NY,10001 +266614,Wired Headphones,1,11.99,2019-10-02 16:44:00,192 Johnson St, Portland,OR,97035 +266615,AAA Batteries (4-pack),1,2.99,2019-10-17 15:38:00,319 14th St, Los Angeles,CA,90001 +266616,Wired Headphones,1,11.99,2019-10-09 09:56:00,44 1st St, Austin,TX,73301 +266617,34in Ultrawide Monitor,1,379.99,2019-10-29 21:51:00,409 Willow St, Atlanta,GA,30301 +266618,Google Phone,1,600.0,2019-10-28 23:06:00,513 Maple St, Austin,TX,73301 +266619,Apple Airpods Headphones,1,150.0,2019-10-26 10:14:00,326 Elm St, New York City,NY,10001 +266620,Lightning Charging Cable,2,14.95,2019-10-13 06:38:00,679 Maple St, San Francisco,CA,94016 +266621,iPhone,1,700.0,2019-10-06 13:55:00,225 Hickory St, Portland,ME,04101 +266622,Wired Headphones,1,11.99,2019-10-23 08:27:00,44 Highland St, Austin,TX,73301 +266623,Bose SoundSport Headphones,1,99.99,2019-10-22 23:24:00,200 12th St, San Francisco,CA,94016 +266624,ThinkPad Laptop,1,999.99,2019-10-25 22:00:00,616 Jackson St, New York City,NY,10001 +266625,Wired Headphones,1,11.99,2019-10-24 12:31:00,854 Wilson St, San Francisco,CA,94016 +266626,Flatscreen TV,1,300.0,2019-10-11 08:48:00,679 Hickory St, Portland,ME,04101 +266627,Apple Airpods Headphones,1,150.0,2019-10-17 14:19:00,785 2nd St, Seattle,WA,98101 +266628,AA Batteries (4-pack),2,3.84,2019-10-16 02:26:00,802 Adams St, San Francisco,CA,94016 +266629,USB-C Charging Cable,1,11.95,2019-10-21 23:22:00,404 Highland St, New York City,NY,10001 +266630,AAA Batteries (4-pack),3,2.99,2019-10-22 22:40:00,751 Hill St, San Francisco,CA,94016 +266631,Lightning Charging Cable,1,14.95,2019-10-11 10:43:00,594 Washington St, San Francisco,CA,94016 +266632,Apple Airpods Headphones,1,150.0,2019-10-17 14:48:00,207 Highland St, San Francisco,CA,94016 +266633,Flatscreen TV,1,300.0,2019-10-20 05:48:00,725 Main St, San Francisco,CA,94016 +266633,AAA Batteries (4-pack),1,2.99,2019-10-20 05:48:00,725 Main St, San Francisco,CA,94016 +266634,Lightning Charging Cable,1,14.95,2019-10-23 10:57:00,499 9th St, San Francisco,CA,94016 +266635,Lightning Charging Cable,1,14.95,2019-10-09 22:48:00,789 Jackson St, Atlanta,GA,30301 +266636,AAA Batteries (4-pack),1,2.99,2019-10-23 19:06:00,17 11th St, Austin,TX,73301 +266637,Macbook Pro Laptop,1,1700.0,2019-10-17 21:48:00,316 Elm St, New York City,NY,10001 +266637,Google Phone,1,600.0,2019-10-17 21:48:00,316 Elm St, New York City,NY,10001 +266638,AA Batteries (4-pack),2,3.84,2019-10-24 18:23:00,488 Jefferson St, Los Angeles,CA,90001 +266639,Macbook Pro Laptop,1,1700.0,2019-10-16 01:19:00,81 Church St, San Francisco,CA,94016 +266640,USB-C Charging Cable,1,11.95,2019-10-30 11:24:00,43 Walnut St, Los Angeles,CA,90001 +266641,AA Batteries (4-pack),1,3.84,2019-10-29 20:30:00,939 8th St, San Francisco,CA,94016 +266642,AAA Batteries (4-pack),1,2.99,2019-10-31 21:10:00,559 10th St, San Francisco,CA,94016 +266643,Lightning Charging Cable,1,14.95,2019-10-05 13:34:00,350 Hickory St, Dallas,TX,75001 +266644,Apple Airpods Headphones,1,150.0,2019-10-02 19:15:00,561 Adams St, Dallas,TX,75001 +266645,Bose SoundSport Headphones,1,99.99,2019-10-03 07:03:00,494 South St, Los Angeles,CA,90001 +266646,20in Monitor,1,109.99,2019-10-02 08:17:00,655 Johnson St, San Francisco,CA,94016 +266647,AAA Batteries (4-pack),1,2.99,2019-10-19 18:36:00,705 Washington St, Portland,OR,97035 +266648,Wired Headphones,1,11.99,2019-10-31 12:39:00,198 West St, Atlanta,GA,30301 +266649,Lightning Charging Cable,1,14.95,2019-10-29 17:28:00,986 Park St, Los Angeles,CA,90001 +266650,Bose SoundSport Headphones,1,99.99,2019-10-21 17:58:00,734 Pine St, Dallas,TX,75001 +266651,ThinkPad Laptop,1,999.99,2019-10-03 16:35:00,399 11th St, Los Angeles,CA,90001 +266652,iPhone,1,700.0,2019-10-29 20:00:00,751 Ridge St, Dallas,TX,75001 +266653,Wired Headphones,1,11.99,2019-10-05 22:42:00,99 North St, San Francisco,CA,94016 +266654,Macbook Pro Laptop,1,1700.0,2019-10-17 21:35:00,599 Pine St, San Francisco,CA,94016 +266655,USB-C Charging Cable,1,11.95,2019-10-12 00:41:00,400 14th St, Portland,OR,97035 +266656,USB-C Charging Cable,1,11.95,2019-10-14 00:32:00,705 Cherry St, Seattle,WA,98101 +266657,AAA Batteries (4-pack),1,2.99,2019-10-07 13:49:00,75 2nd St, San Francisco,CA,94016 +266658,Apple Airpods Headphones,1,150.0,2019-10-09 22:28:00,737 Hill St, New York City,NY,10001 +266659,AA Batteries (4-pack),1,3.84,2019-10-22 15:33:00,530 Johnson St, Los Angeles,CA,90001 +266660,USB-C Charging Cable,1,11.95,2019-10-30 08:55:00,147 Church St, San Francisco,CA,94016 +266661,iPhone,1,700.0,2019-10-20 17:43:00,972 North St, Portland,OR,97035 +266662,Lightning Charging Cable,1,14.95,2019-10-08 09:39:00,451 Madison St, Los Angeles,CA,90001 +266663,20in Monitor,1,109.99,2019-10-04 19:31:00,363 Lincoln St, San Francisco,CA,94016 +266664,Wired Headphones,1,11.99,2019-10-11 15:55:00,60 Adams St, Boston,MA,02215 +266665,USB-C Charging Cable,1,11.95,2019-10-08 03:47:00,962 9th St, Boston,MA,02215 +266666,AA Batteries (4-pack),1,3.84,2019-10-20 10:22:00,826 4th St, San Francisco,CA,94016 +266667,Flatscreen TV,1,300.0,2019-10-18 16:30:00,245 South St, Atlanta,GA,30301 +266668,AA Batteries (4-pack),1,3.84,2019-10-12 12:35:00,440 West St, Seattle,WA,98101 +266669,AAA Batteries (4-pack),2,2.99,2019-10-30 21:03:00,150 Forest St, New York City,NY,10001 +266670,Wired Headphones,1,11.99,2019-10-24 20:41:00,68 Pine St, Atlanta,GA,30301 +266671,Flatscreen TV,1,300.0,2019-10-02 09:13:00,375 5th St, Boston,MA,02215 +266672,ThinkPad Laptop,1,999.99,2019-10-04 23:02:00,354 Center St, Los Angeles,CA,90001 +266673,Macbook Pro Laptop,1,1700.0,2019-10-20 14:43:00,8 Jackson St, Portland,OR,97035 +266674,LG Washing Machine,1,600.0,2019-10-27 18:14:00,485 12th St, Portland,ME,04101 +266675,AA Batteries (4-pack),1,3.84,2019-10-17 14:47:00,941 Meadow St, Atlanta,GA,30301 +266676,AA Batteries (4-pack),1,3.84,2019-10-08 10:39:00,650 Hill St, San Francisco,CA,94016 +266677,USB-C Charging Cable,1,11.95,2019-10-30 20:14:00,746 Jackson St, Seattle,WA,98101 +266678,AAA Batteries (4-pack),1,2.99,2019-10-09 16:28:00,419 Lincoln St, Boston,MA,02215 +266679,Lightning Charging Cable,1,14.95,2019-10-19 23:00:00,646 Cedar St, Seattle,WA,98101 +266680,AAA Batteries (4-pack),1,2.99,2019-10-13 01:34:00,860 Johnson St, Los Angeles,CA,90001 +266681,Apple Airpods Headphones,1,150.0,2019-10-23 08:06:00,445 9th St, Los Angeles,CA,90001 +266682,Wired Headphones,1,11.99,2019-10-25 15:10:00,656 4th St, Boston,MA,02215 +266683,USB-C Charging Cable,1,11.95,2019-10-15 12:44:00,70 2nd St, New York City,NY,10001 +266684,Wired Headphones,1,11.99,2019-10-30 20:17:00,660 Maple St, Dallas,TX,75001 +266685,AAA Batteries (4-pack),4,2.99,2019-10-03 00:29:00,560 9th St, Los Angeles,CA,90001 +266686,AA Batteries (4-pack),1,3.84,2019-10-13 13:22:00,713 River St, Boston,MA,02215 +266687,USB-C Charging Cable,1,11.95,2019-10-16 00:16:00,475 Sunset St, New York City,NY,10001 +266688,Wired Headphones,1,11.99,2019-10-01 11:53:00,666 Washington St, Los Angeles,CA,90001 +266689,AAA Batteries (4-pack),1,2.99,2019-10-31 09:05:00,354 Madison St, Los Angeles,CA,90001 +266690,AAA Batteries (4-pack),1,2.99,2019-10-16 17:01:00,627 Dogwood St, San Francisco,CA,94016 +266691,27in FHD Monitor,1,149.99,2019-10-30 21:59:00,421 Center St, Los Angeles,CA,90001 +266692,Bose SoundSport Headphones,1,99.99,2019-10-21 13:42:00,664 Dogwood St, Atlanta,GA,30301 +266693,USB-C Charging Cable,1,11.95,2019-10-15 18:23:00,856 North St, Atlanta,GA,30301 +266694,Lightning Charging Cable,1,14.95,2019-10-12 20:18:00,226 Church St, Seattle,WA,98101 +266695,AA Batteries (4-pack),3,3.84,2019-10-16 06:55:00,218 Sunset St, Boston,MA,02215 +266696,27in FHD Monitor,1,149.99,2019-10-12 15:52:00,745 Jackson St, San Francisco,CA,94016 +266697,USB-C Charging Cable,1,11.95,2019-10-05 13:46:00,722 Wilson St, New York City,NY,10001 +266698,27in FHD Monitor,1,149.99,2019-10-22 18:45:00,136 Lincoln St, Los Angeles,CA,90001 +266699,Wired Headphones,1,11.99,2019-10-22 22:28:00,796 5th St, San Francisco,CA,94016 +266700,Lightning Charging Cable,1,14.95,2019-10-17 18:23:00,900 Church St, San Francisco,CA,94016 +266701,AAA Batteries (4-pack),1,2.99,2019-10-10 23:07:00,939 Main St, Los Angeles,CA,90001 +266702,Wired Headphones,1,11.99,2019-10-24 21:00:00,128 Lake St, New York City,NY,10001 +266703,Lightning Charging Cable,1,14.95,2019-10-21 16:24:00,355 Meadow St, New York City,NY,10001 +266704,27in 4K Gaming Monitor,1,389.99,2019-10-07 11:38:00,980 11th St, Los Angeles,CA,90001 +266705,Lightning Charging Cable,1,14.95,2019-10-12 13:20:00,881 Madison St, Portland,OR,97035 +266706,AAA Batteries (4-pack),2,2.99,2019-10-27 06:31:00,51 Johnson St, Boston,MA,02215 +266707,USB-C Charging Cable,1,11.95,2019-10-19 18:58:00,46 Hickory St, Seattle,WA,98101 +266708,Bose SoundSport Headphones,1,99.99,2019-10-03 09:49:00,333 Forest St, San Francisco,CA,94016 +266709,USB-C Charging Cable,1,11.95,2019-10-26 17:53:00,541 Church St, Atlanta,GA,30301 +266710,AAA Batteries (4-pack),1,2.99,2019-10-13 21:27:00,516 West St, New York City,NY,10001 +266711,34in Ultrawide Monitor,1,379.99,2019-10-28 01:57:00,625 Highland St, New York City,NY,10001 +266712,AAA Batteries (4-pack),1,2.99,2019-10-25 21:54:00,30 River St, Los Angeles,CA,90001 +266713,Apple Airpods Headphones,1,150.0,2019-10-01 16:06:00,467 12th St, Seattle,WA,98101 +266714,27in FHD Monitor,1,149.99,2019-10-16 18:30:00,106 Highland St, San Francisco,CA,94016 +266715,AA Batteries (4-pack),1,3.84,2019-10-17 13:31:00,713 9th St, Boston,MA,02215 +266716,Bose SoundSport Headphones,1,99.99,2019-10-18 01:10:00,662 Cedar St, Atlanta,GA,30301 +266717,Lightning Charging Cable,1,14.95,2019-10-22 14:24:00,236 Forest St, Los Angeles,CA,90001 +266718,Apple Airpods Headphones,1,150.0,2019-10-18 13:51:00,212 Adams St, Seattle,WA,98101 +266719,AAA Batteries (4-pack),1,2.99,2019-10-11 14:27:00,217 River St, Atlanta,GA,30301 +266720,Lightning Charging Cable,1,14.95,2019-10-31 20:10:00,862 Jackson St, Boston,MA,02215 +266721,USB-C Charging Cable,2,11.95,2019-10-27 17:28:00,865 Jackson St, Seattle,WA,98101 +266722,Wired Headphones,1,11.99,2019-10-21 11:55:00,95 Washington St, New York City,NY,10001 +266723,Flatscreen TV,1,300.0,2019-10-23 21:49:00,437 Johnson St, New York City,NY,10001 +266724,LG Dryer,1,600.0,2019-10-22 21:32:00,692 Spruce St, Los Angeles,CA,90001 +266725,USB-C Charging Cable,1,11.95,2019-10-31 20:19:00,213 Lakeview St, Seattle,WA,98101 +266726,AA Batteries (4-pack),1,3.84,2019-10-22 14:01:00,809 Forest St, Los Angeles,CA,90001 +266727,AAA Batteries (4-pack),2,2.99,2019-10-18 12:28:00,90 Highland St, Los Angeles,CA,90001 +266728,27in 4K Gaming Monitor,1,389.99,2019-10-02 11:37:00,144 Main St, Dallas,TX,75001 +266729,AA Batteries (4-pack),1,3.84,2019-10-06 10:08:00,398 1st St, New York City,NY,10001 +266730,iPhone,1,700.0,2019-10-04 06:15:00,649 Lakeview St, San Francisco,CA,94016 +266731,27in FHD Monitor,1,149.99,2019-10-21 20:51:00,245 Meadow St, Austin,TX,73301 +266732,AA Batteries (4-pack),1,3.84,2019-10-31 09:33:00,102 Sunset St, Portland,ME,04101 +266733,Wired Headphones,1,11.99,2019-10-01 17:10:00,519 Willow St, Portland,OR,97035 +266734,Wired Headphones,1,11.99,2019-10-24 17:28:00,780 4th St, San Francisco,CA,94016 +266735,34in Ultrawide Monitor,1,379.99,2019-10-17 20:50:00,494 6th St, San Francisco,CA,94016 +266736,AA Batteries (4-pack),1,3.84,2019-10-02 04:24:00,765 6th St, San Francisco,CA,94016 +266737,Lightning Charging Cable,1,14.95,2019-10-14 12:39:00,699 Chestnut St, Atlanta,GA,30301 +266738,34in Ultrawide Monitor,1,379.99,2019-10-02 18:17:00,822 Walnut St, Boston,MA,02215 +266739,USB-C Charging Cable,1,11.95,2019-10-08 16:05:00,635 Pine St, San Francisco,CA,94016 +266740,Bose SoundSport Headphones,1,99.99,2019-10-01 19:21:00,301 9th St, Seattle,WA,98101 +266741,Google Phone,1,600.0,2019-10-22 10:19:00,365 Lincoln St, Dallas,TX,75001 +266741,20in Monitor,1,109.99,2019-10-22 10:19:00,365 Lincoln St, Dallas,TX,75001 +266742,27in 4K Gaming Monitor,1,389.99,2019-10-09 13:29:00,176 North St, San Francisco,CA,94016 +266743,Lightning Charging Cable,1,14.95,2019-10-19 21:34:00,811 Lake St, Los Angeles,CA,90001 +266744,AAA Batteries (4-pack),2,2.99,2019-10-01 10:22:00,344 Madison St, San Francisco,CA,94016 +266745,Wired Headphones,1,11.99,2019-10-10 14:22:00,655 Hill St, Austin,TX,73301 +266746,USB-C Charging Cable,1,11.95,2019-10-27 11:25:00,369 11th St, Seattle,WA,98101 +266747,iPhone,1,700.0,2019-10-28 16:58:00,487 Dogwood St, Atlanta,GA,30301 +266748,AAA Batteries (4-pack),4,2.99,2019-10-02 12:08:00,727 West St, Austin,TX,73301 +266749,USB-C Charging Cable,1,11.95,2019-10-06 18:00:00,554 Madison St, Portland,OR,97035 +266750,USB-C Charging Cable,1,11.95,2019-10-13 23:06:00,425 Cedar St, Dallas,TX,75001 +266751,Lightning Charging Cable,1,14.95,2019-10-06 13:50:00,153 Hickory St, Los Angeles,CA,90001 +266752,Bose SoundSport Headphones,1,99.99,2019-10-04 22:47:00,974 Chestnut St, New York City,NY,10001 +266753,Flatscreen TV,1,300.0,2019-10-23 09:35:00,176 Elm St, Dallas,TX,75001 +266754,Bose SoundSport Headphones,1,99.99,2019-10-07 17:13:00,159 10th St, Los Angeles,CA,90001 +266755,USB-C Charging Cable,1,11.95,2019-10-22 19:11:00,194 8th St, Atlanta,GA,30301 +266756,AAA Batteries (4-pack),1,2.99,2019-10-04 10:55:00,658 Forest St, San Francisco,CA,94016 +266757,Wired Headphones,1,11.99,2019-10-11 12:08:00,651 Spruce St, Atlanta,GA,30301 +266758,34in Ultrawide Monitor,1,379.99,2019-10-22 21:39:00,681 Cedar St, Dallas,TX,75001 +266759,AAA Batteries (4-pack),1,2.99,2019-10-08 09:38:00,486 Ridge St, Dallas,TX,75001 +266760,Wired Headphones,1,11.99,2019-10-20 15:15:00,90 Jackson St, Boston,MA,02215 +266761,Wired Headphones,1,11.99,2019-10-26 18:41:00,437 Lakeview St, Portland,OR,97035 +266762,USB-C Charging Cable,1,11.95,2019-10-24 20:23:00,700 Spruce St, Dallas,TX,75001 +266763,USB-C Charging Cable,1,11.95,2019-10-03 18:09:00,439 Main St, Portland,ME,04101 +266764,Lightning Charging Cable,1,14.95,2019-10-28 17:17:00,265 Dogwood St, New York City,NY,10001 +266765,Google Phone,1,600.0,2019-10-20 15:23:00,593 Ridge St, Los Angeles,CA,90001 +266765,USB-C Charging Cable,1,11.95,2019-10-20 15:23:00,593 Ridge St, Los Angeles,CA,90001 +266766,Macbook Pro Laptop,1,1700.0,2019-10-03 17:59:00,529 Washington St, Boston,MA,02215 +266767,Bose SoundSport Headphones,1,99.99,2019-10-08 22:18:00,554 Sunset St, Atlanta,GA,30301 +266768,Wired Headphones,1,11.99,2019-10-03 16:36:00,175 Church St, San Francisco,CA,94016 +266769,AAA Batteries (4-pack),1,2.99,2019-10-12 13:16:00,856 South St, Boston,MA,02215 +266770,Wired Headphones,1,11.99,2019-10-14 18:11:00,608 8th St, Dallas,TX,75001 +266771,Lightning Charging Cable,1,14.95,2019-10-04 19:08:00,51 Pine St, Boston,MA,02215 +266772,USB-C Charging Cable,2,11.95,2019-10-09 19:40:00,908 6th St, San Francisco,CA,94016 +266773,27in 4K Gaming Monitor,1,389.99,2019-10-11 17:26:00,56 Cherry St, Los Angeles,CA,90001 +266774,Wired Headphones,1,11.99,2019-10-11 19:50:00,460 6th St, Dallas,TX,75001 +266775,27in FHD Monitor,1,149.99,2019-10-26 14:12:00,735 Park St, San Francisco,CA,94016 +266775,Bose SoundSport Headphones,1,99.99,2019-10-26 14:12:00,735 Park St, San Francisco,CA,94016 +266776,iPhone,1,700.0,2019-10-30 11:04:00,4 8th St, San Francisco,CA,94016 +266776,Wired Headphones,1,11.99,2019-10-30 11:04:00,4 8th St, San Francisco,CA,94016 +266777,Bose SoundSport Headphones,1,99.99,2019-10-27 19:59:00,322 Johnson St, Seattle,WA,98101 +266778,Lightning Charging Cable,1,14.95,2019-10-10 18:00:00,735 Elm St, New York City,NY,10001 +266779,Wired Headphones,1,11.99,2019-10-18 20:31:00,575 2nd St, Los Angeles,CA,90001 +266780,ThinkPad Laptop,1,999.99,2019-10-05 13:59:00,760 Jefferson St, San Francisco,CA,94016 +266781,USB-C Charging Cable,1,11.95,2019-10-01 16:43:00,326 Ridge St, Boston,MA,02215 +266782,USB-C Charging Cable,1,11.95,2019-10-01 09:18:00,365 Lincoln St, Los Angeles,CA,90001 +266783,Wired Headphones,1,11.99,2019-10-27 13:10:00,318 Sunset St, San Francisco,CA,94016 +266784,Google Phone,1,600.0,2019-10-14 08:08:00,176 Main St, Dallas,TX,75001 +266785,AAA Batteries (4-pack),1,2.99,2019-10-27 13:16:00,995 7th St, Dallas,TX,75001 +266786,Wired Headphones,1,11.99,2019-10-02 07:51:00,436 Elm St, Seattle,WA,98101 +266787,USB-C Charging Cable,1,11.95,2019-10-02 09:16:00,267 Adams St, Boston,MA,02215 +266788,Wired Headphones,1,11.99,2019-10-05 19:54:00,23 Highland St, San Francisco,CA,94016 +266789,AA Batteries (4-pack),1,3.84,2019-10-09 10:46:00,980 Jefferson St, Dallas,TX,75001 +266790,27in 4K Gaming Monitor,1,389.99,2019-10-23 16:03:00,902 Jackson St, Los Angeles,CA,90001 +266791,Wired Headphones,1,11.99,2019-10-29 15:37:00,338 Lakeview St, Dallas,TX,75001 +266792,Google Phone,1,600.0,2019-10-03 13:11:00,463 8th St, Seattle,WA,98101 +266792,Wired Headphones,1,11.99,2019-10-03 13:11:00,463 8th St, Seattle,WA,98101 +266793,AA Batteries (4-pack),1,3.84,2019-10-18 20:30:00,951 8th St, Los Angeles,CA,90001 +266794,Wired Headphones,1,11.99,2019-10-17 18:13:00,354 5th St, Austin,TX,73301 +266795,Lightning Charging Cable,1,14.95,2019-10-08 19:29:00,612 West St, San Francisco,CA,94016 +266796,Lightning Charging Cable,1,14.95,2019-10-31 12:06:00,352 5th St, Atlanta,GA,30301 +266797,Wired Headphones,1,11.99,2019-10-05 17:44:00,670 13th St, Portland,OR,97035 +266798,Lightning Charging Cable,1,14.95,2019-10-20 05:53:00,230 Forest St, Dallas,TX,75001 +266799,Bose SoundSport Headphones,1,99.99,2019-10-13 23:12:00,262 4th St, Boston,MA,02215 +266800,Lightning Charging Cable,1,14.95,2019-10-06 22:40:00,902 Spruce St, Los Angeles,CA,90001 +266801,Flatscreen TV,1,300.0,2019-10-17 10:16:00,374 13th St, New York City,NY,10001 +266802,USB-C Charging Cable,2,11.95,2019-10-31 20:20:00,816 7th St, Boston,MA,02215 +266803,AA Batteries (4-pack),1,3.84,2019-10-25 11:59:00,120 Lincoln St, Portland,OR,97035 +266804,Wired Headphones,1,11.99,2019-10-20 12:32:00,664 4th St, Atlanta,GA,30301 +266805,AAA Batteries (4-pack),1,2.99,2019-10-15 10:36:00,727 Hickory St, San Francisco,CA,94016 +266806,20in Monitor,1,109.99,2019-10-30 21:28:00,21 Jackson St, Seattle,WA,98101 +266807,AAA Batteries (4-pack),1,2.99,2019-10-14 01:21:00,515 Walnut St, Austin,TX,73301 +266808,Apple Airpods Headphones,1,150.0,2019-10-29 16:23:00,68 1st St, San Francisco,CA,94016 +266809,Lightning Charging Cable,1,14.95,2019-10-31 17:58:00,627 Lakeview St, Los Angeles,CA,90001 +266810,Bose SoundSport Headphones,1,99.99,2019-10-16 01:37:00,257 Pine St, San Francisco,CA,94016 +266811,Apple Airpods Headphones,1,150.0,2019-10-06 16:00:00,176 Ridge St, New York City,NY,10001 +266812,AA Batteries (4-pack),2,3.84,2019-10-29 01:12:00,54 Maple St, Boston,MA,02215 +266813,AA Batteries (4-pack),1,3.84,2019-10-17 19:01:00,702 13th St, Atlanta,GA,30301 +266814,Wired Headphones,1,11.99,2019-10-27 21:33:00,444 North St, Seattle,WA,98101 +266815,LG Dryer,1,600.0,2019-10-12 06:23:00,76 Forest St, Dallas,TX,75001 +266816,Apple Airpods Headphones,1,150.0,2019-10-28 18:45:00,780 Spruce St, Dallas,TX,75001 +266817,27in 4K Gaming Monitor,1,389.99,2019-10-28 18:35:00,902 Forest St, Seattle,WA,98101 +266818,AAA Batteries (4-pack),3,2.99,2019-10-09 10:39:00,218 Ridge St, San Francisco,CA,94016 +266819,AA Batteries (4-pack),1,3.84,2019-10-20 14:15:00,841 Maple St, Dallas,TX,75001 +266820,20in Monitor,1,109.99,2019-10-16 16:27:00,89 Wilson St, Seattle,WA,98101 +266821,USB-C Charging Cable,1,11.95,2019-10-12 22:13:00,617 Johnson St, Los Angeles,CA,90001 +266822,ThinkPad Laptop,1,999.99,2019-10-25 22:11:00,380 12th St, Dallas,TX,75001 +266823,Lightning Charging Cable,1,14.95,2019-10-14 05:35:00,232 Pine St, San Francisco,CA,94016 +266824,USB-C Charging Cable,1,11.95,2019-10-22 20:24:00,295 Hickory St, Boston,MA,02215 +266825,Macbook Pro Laptop,1,1700.0,2019-10-03 15:02:00,876 West St, Seattle,WA,98101 +266826,AAA Batteries (4-pack),1,2.99,2019-10-23 03:21:00,831 Church St, Austin,TX,73301 +266827,Lightning Charging Cable,1,14.95,2019-10-20 20:21:00,311 Dogwood St, San Francisco,CA,94016 +266828,27in FHD Monitor,1,149.99,2019-10-08 17:35:00,181 Cherry St, New York City,NY,10001 +266829,AA Batteries (4-pack),1,3.84,2019-10-22 13:29:00,683 Jefferson St, Dallas,TX,75001 +266830,Apple Airpods Headphones,1,150.0,2019-10-10 18:14:00,265 Lincoln St, Los Angeles,CA,90001 +266831,Bose SoundSport Headphones,1,99.99,2019-10-30 14:01:00,537 6th St, Portland,OR,97035 +266832,AAA Batteries (4-pack),1,2.99,2019-10-09 16:19:00,214 Wilson St, New York City,NY,10001 +266833,Apple Airpods Headphones,1,150.0,2019-10-08 20:51:00,572 Main St, Atlanta,GA,30301 +266834,Bose SoundSport Headphones,1,99.99,2019-10-20 17:32:00,270 Madison St, San Francisco,CA,94016 +266835,Wired Headphones,1,11.99,2019-10-29 23:18:00,997 Pine St, Boston,MA,02215 +266836,Apple Airpods Headphones,1,150.0,2019-10-30 19:59:00,830 Jackson St, Seattle,WA,98101 +266837,Flatscreen TV,1,300.0,2019-10-15 16:01:00,146 Meadow St, San Francisco,CA,94016 +266838,Lightning Charging Cable,1,14.95,2019-10-04 12:35:00,557 9th St, New York City,NY,10001 +266839,Bose SoundSport Headphones,1,99.99,2019-10-27 12:13:00,762 Johnson St, Los Angeles,CA,90001 +266840,iPhone,1,700.0,2019-10-10 22:54:00,838 Hickory St, Los Angeles,CA,90001 +266841,Lightning Charging Cable,1,14.95,2019-10-08 16:08:00,375 Jackson St, San Francisco,CA,94016 +266842,27in FHD Monitor,1,149.99,2019-10-23 14:01:00,650 13th St, Atlanta,GA,30301 +266843,Wired Headphones,1,11.99,2019-10-22 23:34:00,740 Maple St, Boston,MA,02215 +266844,AA Batteries (4-pack),1,3.84,2019-10-19 09:54:00,908 Meadow St, Los Angeles,CA,90001 +266845,Bose SoundSport Headphones,1,99.99,2019-10-27 17:54:00,186 Jefferson St, Seattle,WA,98101 +266846,Apple Airpods Headphones,1,150.0,2019-10-24 18:39:00,519 Maple St, Boston,MA,02215 +266847,USB-C Charging Cable,1,11.95,2019-10-24 12:32:00,963 Hill St, San Francisco,CA,94016 +266848,iPhone,1,700.0,2019-10-14 00:22:00,467 Cedar St, Boston,MA,02215 +266849,AAA Batteries (4-pack),1,2.99,2019-10-16 21:56:00,283 North St, San Francisco,CA,94016 +266850,AAA Batteries (4-pack),2,2.99,2019-10-21 22:49:00,126 Madison St, New York City,NY,10001 +266851,Bose SoundSport Headphones,1,99.99,2019-10-05 16:16:00,733 14th St, Portland,OR,97035 +266852,Lightning Charging Cable,1,14.95,2019-10-06 21:52:00,232 Highland St, Los Angeles,CA,90001 +266853,AAA Batteries (4-pack),1,2.99,2019-10-28 15:49:00,484 North St, Los Angeles,CA,90001 +266854,Lightning Charging Cable,1,14.95,2019-10-17 22:01:00,39 Center St, Dallas,TX,75001 +266855,AA Batteries (4-pack),1,3.84,2019-10-14 07:37:00,291 Hickory St, New York City,NY,10001 +266856,Lightning Charging Cable,1,14.95,2019-10-05 14:44:00,880 Lake St, Boston,MA,02215 +266857,AA Batteries (4-pack),1,3.84,2019-10-11 14:04:00,450 Walnut St, San Francisco,CA,94016 +266858,Apple Airpods Headphones,1,150.0,2019-10-12 17:32:00,569 Adams St, San Francisco,CA,94016 +266859,AA Batteries (4-pack),1,3.84,2019-10-06 15:47:00,947 5th St, Atlanta,GA,30301 +266860,27in 4K Gaming Monitor,1,389.99,2019-10-31 21:49:00,173 Adams St, San Francisco,CA,94016 +266861,Apple Airpods Headphones,1,150.0,2019-10-19 14:51:00,342 5th St, Boston,MA,02215 +266862,AAA Batteries (4-pack),1,2.99,2019-10-10 12:15:00,842 Pine St, Austin,TX,73301 +266863,AAA Batteries (4-pack),2,2.99,2019-10-05 13:47:00,822 11th St, San Francisco,CA,94016 +266864,Apple Airpods Headphones,1,150.0,2019-10-02 23:33:00,999 Lincoln St, Seattle,WA,98101 +266865,Lightning Charging Cable,1,14.95,2019-10-20 09:21:00,930 Spruce St, San Francisco,CA,94016 +266866,USB-C Charging Cable,1,11.95,2019-10-09 15:56:00,925 Park St, San Francisco,CA,94016 +266867,Wired Headphones,1,11.99,2019-10-01 13:45:00,804 Johnson St, San Francisco,CA,94016 +266868,Lightning Charging Cable,1,14.95,2019-10-28 14:12:00,141 Ridge St, Atlanta,GA,30301 +266869,AA Batteries (4-pack),1,3.84,2019-10-19 17:55:00,839 Highland St, Seattle,WA,98101 +266870,iPhone,1,700.0,2019-10-03 10:16:00,320 Madison St, Portland,ME,04101 +266870,Wired Headphones,1,11.99,2019-10-03 10:16:00,320 Madison St, Portland,ME,04101 +266871,Apple Airpods Headphones,1,150.0,2019-10-02 06:17:00,426 Walnut St, Los Angeles,CA,90001 +266872,Lightning Charging Cable,1,14.95,2019-10-24 13:05:00,310 Jefferson St, San Francisco,CA,94016 +266873,AA Batteries (4-pack),1,3.84,2019-10-05 10:54:00,5 Madison St, San Francisco,CA,94016 +266874,Wired Headphones,2,11.99,2019-10-06 23:36:00,413 Cedar St, Boston,MA,02215 +266875,Lightning Charging Cable,1,14.95,2019-10-03 19:47:00,697 Pine St, Seattle,WA,98101 +266876,AAA Batteries (4-pack),1,2.99,2019-10-04 21:48:00,867 1st St, San Francisco,CA,94016 +266877,Bose SoundSport Headphones,1,99.99,2019-10-30 10:11:00,989 Spruce St, San Francisco,CA,94016 +266878,Bose SoundSport Headphones,1,99.99,2019-10-25 13:58:00,838 Cherry St, Seattle,WA,98101 +266878,AA Batteries (4-pack),1,3.84,2019-10-25 13:58:00,838 Cherry St, Seattle,WA,98101 +266879,27in 4K Gaming Monitor,1,389.99,2019-10-10 16:12:00,133 Cherry St, Atlanta,GA,30301 +266880,AA Batteries (4-pack),1,3.84,2019-10-10 20:27:00,533 Spruce St, Boston,MA,02215 +266881,Lightning Charging Cable,1,14.95,2019-10-20 10:28:00,254 Walnut St, San Francisco,CA,94016 +266882,iPhone,1,700.0,2019-10-25 09:55:00,872 Cherry St, Atlanta,GA,30301 +266882,Wired Headphones,1,11.99,2019-10-25 09:55:00,872 Cherry St, Atlanta,GA,30301 +266883,Lightning Charging Cable,1,14.95,2019-10-04 16:59:00,644 Hill St, Los Angeles,CA,90001 +266884,Lightning Charging Cable,1,14.95,2019-10-28 21:54:00,198 5th St, Atlanta,GA,30301 +266885,AAA Batteries (4-pack),1,2.99,2019-10-01 17:08:00,392 1st St, Portland,OR,97035 +266886,USB-C Charging Cable,2,11.95,2019-10-01 10:52:00,126 Dogwood St, Los Angeles,CA,90001 +266887,Apple Airpods Headphones,1,150.0,2019-10-09 21:55:00,3 Madison St, Atlanta,GA,30301 +266888,Bose SoundSport Headphones,1,99.99,2019-10-19 20:20:00,669 Highland St, Boston,MA,02215 +266889,USB-C Charging Cable,1,11.95,2019-10-26 22:24:00,301 Center St, San Francisco,CA,94016 +266890,USB-C Charging Cable,1,11.95,2019-10-25 17:30:00,921 Cedar St, Dallas,TX,75001 +266891,Lightning Charging Cable,1,14.95,2019-10-27 09:32:00,832 Adams St, New York City,NY,10001 +266892,27in 4K Gaming Monitor,1,389.99,2019-10-06 16:35:00,133 South St, Austin,TX,73301 +266893,USB-C Charging Cable,1,11.95,2019-10-02 13:48:00,899 Wilson St, New York City,NY,10001 +266894,Bose SoundSport Headphones,1,99.99,2019-10-17 19:02:00,55 Chestnut St, Los Angeles,CA,90001 +266895,Lightning Charging Cable,1,14.95,2019-10-06 23:26:00,820 4th St, Portland,OR,97035 +266896,AA Batteries (4-pack),1,3.84,2019-10-27 16:05:00,826 Main St, Austin,TX,73301 +266897,34in Ultrawide Monitor,1,379.99,2019-10-20 18:01:00,37 8th St, Dallas,TX,75001 +266898,27in 4K Gaming Monitor,1,389.99,2019-10-01 23:21:00,233 Adams St, Los Angeles,CA,90001 +266899,Flatscreen TV,1,300.0,2019-10-15 00:03:00,600 Cherry St, Austin,TX,73301 +266900,Apple Airpods Headphones,1,150.0,2019-10-22 09:01:00,202 14th St, Los Angeles,CA,90001 +266901,USB-C Charging Cable,1,11.95,2019-10-28 14:15:00,81 11th St, Austin,TX,73301 +266902,AA Batteries (4-pack),1,3.84,2019-10-14 23:26:00,890 Lakeview St, Seattle,WA,98101 +266903,USB-C Charging Cable,1,11.95,2019-10-25 01:40:00,55 4th St, Dallas,TX,75001 +266904,AAA Batteries (4-pack),4,2.99,2019-10-27 00:49:00,438 10th St, Boston,MA,02215 +266905,Lightning Charging Cable,1,14.95,2019-10-06 22:14:00,829 9th St, Seattle,WA,98101 +266906,AA Batteries (4-pack),1,3.84,2019-10-21 15:50:00,294 Main St, San Francisco,CA,94016 +266907,Wired Headphones,1,11.99,2019-10-24 10:16:00,376 River St, New York City,NY,10001 +266908,Google Phone,1,600.0,2019-10-01 15:00:00,66 Jackson St, Seattle,WA,98101 +266908,Bose SoundSport Headphones,1,99.99,2019-10-01 15:00:00,66 Jackson St, Seattle,WA,98101 +266909,Bose SoundSport Headphones,1,99.99,2019-10-08 19:25:00,672 13th St, San Francisco,CA,94016 +266910,Apple Airpods Headphones,1,150.0,2019-10-06 09:41:00,157 Cedar St, Atlanta,GA,30301 +266911,Macbook Pro Laptop,1,1700.0,2019-10-11 18:02:00,820 Hickory St, New York City,NY,10001 +266912,Flatscreen TV,1,300.0,2019-10-19 19:46:00,914 Cedar St, New York City,NY,10001 +266913,AAA Batteries (4-pack),1,2.99,2019-10-20 10:44:00,192 13th St, Dallas,TX,75001 +266914,Apple Airpods Headphones,1,150.0,2019-10-05 10:12:00,382 Center St, Portland,OR,97035 +266915,Lightning Charging Cable,1,14.95,2019-10-21 00:08:00,555 Main St, New York City,NY,10001 +266916,Bose SoundSport Headphones,1,99.99,2019-10-05 13:05:00,847 West St, Atlanta,GA,30301 +266917,AA Batteries (4-pack),1,3.84,2019-10-25 12:36:00,511 Wilson St, Seattle,WA,98101 +266918,Macbook Pro Laptop,1,1700.0,2019-10-23 17:00:00,848 12th St, Los Angeles,CA,90001 +266919,Wired Headphones,1,11.99,2019-10-05 12:05:00,600 1st St, Dallas,TX,75001 +266920,Wired Headphones,1,11.99,2019-10-29 11:27:00,81 9th St, San Francisco,CA,94016 +266921,AAA Batteries (4-pack),1,2.99,2019-10-05 18:48:00,831 1st St, Boston,MA,02215 +266922,Wired Headphones,1,11.99,2019-10-27 19:21:00,561 Highland St, Boston,MA,02215 +266923,34in Ultrawide Monitor,1,379.99,2019-10-17 20:43:00,97 Main St, Los Angeles,CA,90001 +266924,USB-C Charging Cable,1,11.95,2019-10-08 12:51:00,612 12th St, San Francisco,CA,94016 +266925,AA Batteries (4-pack),1,3.84,2019-10-15 10:18:00,801 Jackson St, San Francisco,CA,94016 +266926,27in 4K Gaming Monitor,1,389.99,2019-10-11 11:36:00,504 North St, Los Angeles,CA,90001 +266927,AA Batteries (4-pack),1,3.84,2019-10-01 12:21:00,380 14th St, San Francisco,CA,94016 +266928,Wired Headphones,1,11.99,2019-10-01 09:56:00,499 8th St, Los Angeles,CA,90001 +266929,27in FHD Monitor,1,149.99,2019-10-24 14:36:00,115 4th St, Los Angeles,CA,90001 +266930,Lightning Charging Cable,1,14.95,2019-10-15 22:41:00,675 Highland St, Seattle,WA,98101 +266931,AAA Batteries (4-pack),1,2.99,2019-10-26 20:31:00,395 Center St, Austin,TX,73301 +266932,AAA Batteries (4-pack),2,2.99,2019-10-27 08:34:00,18 Chestnut St, San Francisco,CA,94016 +266933,27in 4K Gaming Monitor,1,389.99,2019-10-11 11:20:00,103 Johnson St, Los Angeles,CA,90001 +266934,Wired Headphones,1,11.99,2019-10-25 23:24:00,538 5th St, Los Angeles,CA,90001 +266935,AAA Batteries (4-pack),1,2.99,2019-10-13 18:55:00,692 Lakeview St, San Francisco,CA,94016 +266936,AA Batteries (4-pack),1,3.84,2019-10-16 08:29:00,749 7th St, San Francisco,CA,94016 +266937,Bose SoundSport Headphones,1,99.99,2019-10-22 15:15:00,67 13th St, Dallas,TX,75001 +266938,34in Ultrawide Monitor,1,379.99,2019-10-20 08:52:00,28 1st St, Los Angeles,CA,90001 +266939,AAA Batteries (4-pack),3,2.99,2019-10-13 14:24:00,760 Hill St, Boston,MA,02215 +266940,Flatscreen TV,1,300.0,2019-10-02 15:21:00,739 Cedar St, Los Angeles,CA,90001 +266941,Lightning Charging Cable,1,14.95,2019-10-03 13:00:00,639 Johnson St, San Francisco,CA,94016 +266942,USB-C Charging Cable,1,11.95,2019-10-25 12:45:00,116 6th St, San Francisco,CA,94016 +266943,Bose SoundSport Headphones,1,99.99,2019-10-27 18:03:00,984 Park St, Los Angeles,CA,90001 +266944,Apple Airpods Headphones,1,150.0,2019-10-05 17:49:00,115 Lincoln St, Boston,MA,02215 +266945,Bose SoundSport Headphones,1,99.99,2019-10-19 09:35:00,695 Cherry St, Los Angeles,CA,90001 +266946,27in 4K Gaming Monitor,1,389.99,2019-10-17 17:20:00,706 West St, Seattle,WA,98101 +266947,27in FHD Monitor,1,149.99,2019-10-24 09:23:00,177 8th St, Boston,MA,02215 +266948,Lightning Charging Cable,1,14.95,2019-10-10 22:03:00,687 12th St, Los Angeles,CA,90001 +266949,AAA Batteries (4-pack),2,2.99,2019-10-11 17:42:00,305 Jefferson St, Portland,OR,97035 +266950,Apple Airpods Headphones,1,150.0,2019-10-08 15:08:00,166 Ridge St, San Francisco,CA,94016 +266951,Wired Headphones,1,11.99,2019-10-06 15:53:00,638 14th St, Boston,MA,02215 +266952,USB-C Charging Cable,1,11.95,2019-10-16 15:53:00,653 Maple St, Los Angeles,CA,90001 +266953,USB-C Charging Cable,1,11.95,2019-10-15 14:09:00,51 River St, Portland,OR,97035 +266954,Lightning Charging Cable,1,14.95,2019-10-06 17:26:00,680 Maple St, Portland,OR,97035 +266955,27in FHD Monitor,1,149.99,2019-10-21 10:19:00,12 Washington St, Atlanta,GA,30301 +266956,20in Monitor,1,109.99,2019-10-23 15:29:00,703 11th St, San Francisco,CA,94016 +266957,AAA Batteries (4-pack),1,2.99,2019-10-09 09:00:00,312 14th St, Seattle,WA,98101 +266958,Lightning Charging Cable,1,14.95,2019-10-13 08:24:00,566 Main St, Los Angeles,CA,90001 +266959,AA Batteries (4-pack),2,3.84,2019-10-29 21:21:00,851 North St, Seattle,WA,98101 +266960,USB-C Charging Cable,1,11.95,2019-10-06 11:48:00,364 Lakeview St, San Francisco,CA,94016 +266961,Wired Headphones,1,11.99,2019-10-09 07:35:00,376 Johnson St, Seattle,WA,98101 +266962,Apple Airpods Headphones,1,150.0,2019-10-25 08:30:00,110 Hickory St, New York City,NY,10001 +266963,Apple Airpods Headphones,1,150.0,2019-10-01 20:31:00,916 North St, New York City,NY,10001 +266964,AAA Batteries (4-pack),1,2.99,2019-10-02 00:00:00,438 Washington St, Boston,MA,02215 +266965,27in FHD Monitor,1,149.99,2019-10-30 22:53:00,654 Center St, San Francisco,CA,94016 +266966,USB-C Charging Cable,1,11.95,2019-10-31 07:43:00,986 7th St, Los Angeles,CA,90001 +266967,USB-C Charging Cable,1,11.95,2019-10-21 06:03:00,719 Walnut St, San Francisco,CA,94016 +266968,AA Batteries (4-pack),1,3.84,2019-10-31 14:54:00,560 Spruce St, Boston,MA,02215 +266969,AAA Batteries (4-pack),3,2.99,2019-10-04 09:13:00,1 Sunset St, Austin,TX,73301 +266970,AAA Batteries (4-pack),1,2.99,2019-10-23 21:04:00,712 Maple St, San Francisco,CA,94016 +266971,AA Batteries (4-pack),1,3.84,2019-10-01 10:47:00,100 6th St, New York City,NY,10001 +266972,Lightning Charging Cable,1,14.95,2019-10-25 22:46:00,480 Center St, Dallas,TX,75001 +266973,Apple Airpods Headphones,1,150.0,2019-10-20 13:50:00,937 10th St, San Francisco,CA,94016 +266974,ThinkPad Laptop,1,999.99,2019-10-29 06:55:00,5 Center St, Los Angeles,CA,90001 +266975,AA Batteries (4-pack),2,3.84,2019-10-14 11:40:00,418 Jefferson St, Seattle,WA,98101 +266976,Bose SoundSport Headphones,1,99.99,2019-10-09 11:50:00,478 Meadow St, San Francisco,CA,94016 +266977,Vareebadd Phone,1,400.0,2019-10-22 10:14:00,757 Chestnut St, Seattle,WA,98101 +266977,USB-C Charging Cable,1,11.95,2019-10-22 10:14:00,757 Chestnut St, Seattle,WA,98101 +266977,Wired Headphones,1,11.99,2019-10-22 10:14:00,757 Chestnut St, Seattle,WA,98101 +266978,Lightning Charging Cable,1,14.95,2019-10-08 19:48:00,223 Hickory St, Portland,OR,97035 +266979,USB-C Charging Cable,1,11.95,2019-10-15 10:43:00,761 Jackson St, New York City,NY,10001 +266980,Wired Headphones,1,11.99,2019-10-21 23:09:00,89 4th St, Dallas,TX,75001 +266980,Apple Airpods Headphones,1,150.0,2019-10-21 23:09:00,89 4th St, Dallas,TX,75001 +266981,Lightning Charging Cable,2,14.95,2019-10-07 21:16:00,418 4th St, San Francisco,CA,94016 +266982,Apple Airpods Headphones,1,150.0,2019-10-02 19:41:00,70 Pine St, Seattle,WA,98101 +266983,AAA Batteries (4-pack),2,2.99,2019-10-24 13:32:00,548 10th St, Seattle,WA,98101 +266984,AAA Batteries (4-pack),1,2.99,2019-10-07 09:50:00,907 4th St, Boston,MA,02215 +266985,AAA Batteries (4-pack),1,2.99,2019-10-12 09:19:00,912 Johnson St, Los Angeles,CA,90001 +266986,Apple Airpods Headphones,1,150.0,2019-10-23 08:41:00,90 Highland St, San Francisco,CA,94016 +266987,AAA Batteries (4-pack),1,2.99,2019-10-30 13:21:00,756 Hill St, Boston,MA,02215 +266988,Lightning Charging Cable,1,14.95,2019-10-09 10:47:00,401 Cherry St, Dallas,TX,75001 +266989,Apple Airpods Headphones,1,150.0,2019-10-26 10:37:00,167 Center St, Dallas,TX,75001 +266990,AA Batteries (4-pack),2,3.84,2019-10-02 09:34:00,767 Wilson St, Boston,MA,02215 +266991,Bose SoundSport Headphones,1,99.99,2019-10-09 14:34:00,408 Cedar St, Austin,TX,73301 +266992,Lightning Charging Cable,1,14.95,2019-10-15 15:27:00,85 River St, Los Angeles,CA,90001 +266993,Flatscreen TV,2,300.0,2019-10-21 16:47:00,646 9th St, Los Angeles,CA,90001 +266994,Bose SoundSport Headphones,1,99.99,2019-10-22 08:37:00,617 1st St, Boston,MA,02215 +266995,34in Ultrawide Monitor,1,379.99,2019-10-16 06:52:00,370 Spruce St, Los Angeles,CA,90001 +266996,20in Monitor,1,109.99,2019-10-11 12:47:00,440 6th St, San Francisco,CA,94016 +266997,iPhone,1,700.0,2019-10-20 17:54:00,228 1st St, Austin,TX,73301 +266997,Lightning Charging Cable,1,14.95,2019-10-20 17:54:00,228 1st St, Austin,TX,73301 +266998,27in 4K Gaming Monitor,1,389.99,2019-10-01 19:32:00,712 Main St, San Francisco,CA,94016 +266999,Lightning Charging Cable,1,14.95,2019-10-02 13:04:00,370 Willow St, Dallas,TX,75001 +267000,Apple Airpods Headphones,1,150.0,2019-10-04 19:37:00,557 Lakeview St, Los Angeles,CA,90001 +267001,USB-C Charging Cable,1,11.95,2019-10-29 11:02:00,126 Cherry St, San Francisco,CA,94016 +267002,Vareebadd Phone,1,400.0,2019-10-17 22:44:00,907 Cedar St, San Francisco,CA,94016 +267002,Bose SoundSport Headphones,1,99.99,2019-10-17 22:44:00,907 Cedar St, San Francisco,CA,94016 +267003,Apple Airpods Headphones,1,150.0,2019-10-21 11:47:00,76 Washington St, Boston,MA,02215 +267004,AAA Batteries (4-pack),2,2.99,2019-10-06 15:21:00,507 8th St, Austin,TX,73301 +267005,27in FHD Monitor,1,149.99,2019-10-06 06:46:00,981 South St, Los Angeles,CA,90001 +267006,AA Batteries (4-pack),1,3.84,2019-10-15 22:43:00,278 Chestnut St, New York City,NY,10001 +267007,Wired Headphones,1,11.99,2019-10-06 11:51:00,637 Wilson St, Los Angeles,CA,90001 +267008,Bose SoundSport Headphones,1,99.99,2019-10-03 17:27:00,683 Lincoln St, San Francisco,CA,94016 +267009,Bose SoundSport Headphones,1,99.99,2019-10-02 15:28:00,964 Cherry St, San Francisco,CA,94016 +267010,iPhone,1,700.0,2019-10-02 19:09:00,917 Cherry St, Dallas,TX,75001 +267011,USB-C Charging Cable,2,11.95,2019-10-03 09:18:00,929 Wilson St, Austin,TX,73301 +267012,Wired Headphones,1,11.99,2019-10-06 18:12:00,900 Jefferson St, Dallas,TX,75001 +267013,Lightning Charging Cable,1,14.95,2019-10-07 11:37:00,823 Highland St, New York City,NY,10001 +267013,AAA Batteries (4-pack),2,2.99,2019-10-07 11:37:00,823 Highland St, New York City,NY,10001 +267014,Flatscreen TV,1,300.0,2019-10-03 08:18:00,799 9th St, Seattle,WA,98101 +267015,USB-C Charging Cable,1,11.95,2019-10-03 09:02:00,266 Chestnut St, Los Angeles,CA,90001 +267016,AAA Batteries (4-pack),1,2.99,2019-10-03 16:36:00,996 Hickory St, Los Angeles,CA,90001 +267017,Flatscreen TV,1,300.0,2019-10-27 14:20:00,123 Willow St, Portland,OR,97035 +267018,USB-C Charging Cable,1,11.95,2019-10-06 19:30:00,937 Hickory St, San Francisco,CA,94016 +267019,Wired Headphones,1,11.99,2019-10-06 15:20:00,259 Willow St, Atlanta,GA,30301 +267020,iPhone,1,700.0,2019-10-16 18:39:00,162 Ridge St, New York City,NY,10001 +267021,USB-C Charging Cable,1,11.95,2019-10-29 19:34:00,689 11th St, Seattle,WA,98101 +267022,USB-C Charging Cable,1,11.95,2019-10-30 18:13:00,194 2nd St, Los Angeles,CA,90001 +267023,USB-C Charging Cable,1,11.95,2019-10-17 11:43:00,635 Main St, Dallas,TX,75001 +267024,Lightning Charging Cable,1,14.95,2019-10-02 10:36:00,704 Sunset St, San Francisco,CA,94016 +267025,AA Batteries (4-pack),1,3.84,2019-10-11 08:50:00,907 Church St, Atlanta,GA,30301 +267026,Bose SoundSport Headphones,1,99.99,2019-10-16 13:06:00,150 Maple St, San Francisco,CA,94016 +267027,USB-C Charging Cable,1,11.95,2019-10-14 20:28:00,344 9th St, San Francisco,CA,94016 +267028,USB-C Charging Cable,1,11.95,2019-10-28 17:42:00,194 5th St, Atlanta,GA,30301 +267029,AAA Batteries (4-pack),1,2.99,2019-10-14 10:03:00,483 Walnut St, San Francisco,CA,94016 +267030,Apple Airpods Headphones,1,150.0,2019-10-19 22:45:00,714 Hill St, Dallas,TX,75001 +267031,AAA Batteries (4-pack),4,2.99,2019-10-17 16:59:00,540 Pine St, Portland,ME,04101 +267032,USB-C Charging Cable,1,11.95,2019-10-14 09:01:00,714 Madison St, Los Angeles,CA,90001 +267032,Apple Airpods Headphones,1,150.0,2019-10-14 09:01:00,714 Madison St, Los Angeles,CA,90001 +267033,Macbook Pro Laptop,1,1700.0,2019-10-02 19:59:00,98 Dogwood St, Portland,OR,97035 +267034,Apple Airpods Headphones,1,150.0,2019-10-30 13:38:00,987 Lake St, Dallas,TX,75001 +267035,Apple Airpods Headphones,1,150.0,2019-10-24 07:57:00,704 Hickory St, Los Angeles,CA,90001 +267036,Lightning Charging Cable,1,14.95,2019-10-04 20:48:00,637 Sunset St, Los Angeles,CA,90001 +267037,27in FHD Monitor,1,149.99,2019-10-05 03:18:00,176 Cherry St, Seattle,WA,98101 +267038,Bose SoundSport Headphones,1,99.99,2019-10-13 22:05:00,141 Elm St, San Francisco,CA,94016 +267039,AA Batteries (4-pack),1,3.84,2019-10-21 03:44:00,219 Johnson St, Los Angeles,CA,90001 +267040,27in FHD Monitor,1,149.99,2019-10-16 14:37:00,174 Cedar St, Los Angeles,CA,90001 +267041,Lightning Charging Cable,1,14.95,2019-10-12 19:39:00,148 Washington St, San Francisco,CA,94016 +267042,Apple Airpods Headphones,1,150.0,2019-10-15 11:06:00,700 Main St, Atlanta,GA,30301 +267043,Bose SoundSport Headphones,1,99.99,2019-10-20 11:41:00,207 Chestnut St, New York City,NY,10001 +267044,27in FHD Monitor,1,149.99,2019-10-21 00:25:00,163 Madison St, Atlanta,GA,30301 +267045,AAA Batteries (4-pack),1,2.99,2019-10-03 06:41:00,578 12th St, Boston,MA,02215 +267046,AA Batteries (4-pack),1,3.84,2019-10-05 16:44:00,663 River St, San Francisco,CA,94016 +267047,LG Dryer,1,600.0,2019-10-30 12:05:00,712 2nd St, Los Angeles,CA,90001 +267048,USB-C Charging Cable,1,11.95,2019-10-21 17:23:00,740 West St, Boston,MA,02215 +267049,AAA Batteries (4-pack),1,2.99,2019-10-16 23:46:00,68 Elm St, New York City,NY,10001 +267050,Vareebadd Phone,1,400.0,2019-10-13 18:16:00,505 10th St, Atlanta,GA,30301 +267051,Lightning Charging Cable,2,14.95,2019-10-01 23:25:00,958 Ridge St, San Francisco,CA,94016 +267052,AAA Batteries (4-pack),1,2.99,2019-10-26 02:49:00,808 Madison St, New York City,NY,10001 +267053,Lightning Charging Cable,1,14.95,2019-10-10 10:42:00,318 Walnut St, New York City,NY,10001 +267054,Wired Headphones,1,11.99,2019-10-08 10:50:00,827 Lakeview St, San Francisco,CA,94016 +267055,AAA Batteries (4-pack),2,2.99,2019-10-15 06:52:00,924 Lincoln St, Los Angeles,CA,90001 +267056,Macbook Pro Laptop,1,1700.0,2019-10-25 21:13:00,432 Park St, Atlanta,GA,30301 +267057,Lightning Charging Cable,1,14.95,2019-10-04 20:19:00,311 7th St, San Francisco,CA,94016 +267058,iPhone,1,700.0,2019-10-21 19:48:00,982 Willow St, Seattle,WA,98101 +267059,AAA Batteries (4-pack),1,2.99,2019-10-04 19:34:00,755 Pine St, Los Angeles,CA,90001 +267060,34in Ultrawide Monitor,1,379.99,2019-10-05 20:33:00,162 River St, San Francisco,CA,94016 +267061,Bose SoundSport Headphones,1,99.99,2019-10-28 03:55:00,792 7th St, Boston,MA,02215 +267062,AAA Batteries (4-pack),1,2.99,2019-10-25 22:11:00,84 2nd St, San Francisco,CA,94016 +267063,Vareebadd Phone,1,400.0,2019-10-07 01:10:00,844 Willow St, San Francisco,CA,94016 +267064,USB-C Charging Cable,1,11.95,2019-10-27 22:08:00,266 Forest St, Seattle,WA,98101 +267065,Macbook Pro Laptop,1,1700.0,2019-10-22 20:36:00,133 Church St, Dallas,TX,75001 +267066,27in FHD Monitor,1,149.99,2019-10-16 15:27:00,266 Cherry St, Seattle,WA,98101 +267067,27in 4K Gaming Monitor,1,389.99,2019-10-05 10:55:00,508 South St, Atlanta,GA,30301 +267068,AA Batteries (4-pack),1,3.84,2019-10-08 18:15:00,154 Lincoln St, Los Angeles,CA,90001 +267069,USB-C Charging Cable,1,11.95,2019-10-07 09:30:00,603 5th St, Seattle,WA,98101 +267070,ThinkPad Laptop,1,999.99,2019-10-21 18:40:00,668 Jefferson St, New York City,NY,10001 +267071,Bose SoundSport Headphones,1,99.99,2019-10-21 12:37:00,688 Church St, Los Angeles,CA,90001 +267072,ThinkPad Laptop,1,999.99,2019-10-15 07:41:00,988 6th St, Portland,OR,97035 +267073,USB-C Charging Cable,1,11.95,2019-10-28 20:17:00,675 Washington St, Dallas,TX,75001 +267074,Google Phone,1,600.0,2019-10-05 12:21:00,91 9th St, New York City,NY,10001 +267074,Wired Headphones,1,11.99,2019-10-05 12:21:00,91 9th St, New York City,NY,10001 +267075,AA Batteries (4-pack),2,3.84,2019-10-05 16:34:00,7 Forest St, Seattle,WA,98101 +267076,Lightning Charging Cable,2,14.95,2019-10-06 09:45:00,516 Willow St, Los Angeles,CA,90001 +267077,AA Batteries (4-pack),1,3.84,2019-10-18 16:48:00,268 Hill St, Boston,MA,02215 +267078,AAA Batteries (4-pack),1,2.99,2019-10-07 08:24:00,438 10th St, Dallas,TX,75001 +267079,Macbook Pro Laptop,1,1700.0,2019-10-28 13:04:00,478 14th St, San Francisco,CA,94016 +267080,AA Batteries (4-pack),1,3.84,2019-10-16 18:43:00,48 Hill St, Austin,TX,73301 +267081,Lightning Charging Cable,1,14.95,2019-10-10 12:45:00,643 Forest St, Boston,MA,02215 +267082,Apple Airpods Headphones,1,150.0,2019-10-08 10:04:00,547 Walnut St, Los Angeles,CA,90001 +267083,Macbook Pro Laptop,1,1700.0,2019-10-18 12:00:00,434 Jackson St, Atlanta,GA,30301 +267084,Wired Headphones,1,11.99,2019-10-05 20:33:00,345 11th St, Austin,TX,73301 +267085,Lightning Charging Cable,1,14.95,2019-10-19 05:39:00,569 Hill St, Seattle,WA,98101 +267086,Apple Airpods Headphones,1,150.0,2019-10-11 12:44:00,87 Main St, Boston,MA,02215 +267087,USB-C Charging Cable,1,11.95,2019-10-23 14:46:00,682 Jackson St, Atlanta,GA,30301 +267088,Lightning Charging Cable,1,14.95,2019-10-28 16:29:00,730 Hill St, San Francisco,CA,94016 +267089,Bose SoundSport Headphones,1,99.99,2019-10-18 20:14:00,402 Maple St, San Francisco,CA,94016 +267090,Macbook Pro Laptop,1,1700.0,2019-10-14 23:43:00,259 Sunset St, Dallas,TX,75001 +267091,Apple Airpods Headphones,1,150.0,2019-10-05 13:39:00,912 Forest St, Seattle,WA,98101 +267092,AAA Batteries (4-pack),1,2.99,2019-10-27 15:08:00,942 Ridge St, Boston,MA,02215 +267093,Wired Headphones,1,11.99,2019-10-06 17:11:00,268 Cedar St, New York City,NY,10001 +267094,AA Batteries (4-pack),2,3.84,2019-10-30 10:23:00,519 Walnut St, Atlanta,GA,30301 +267095,Lightning Charging Cable,1,14.95,2019-10-14 18:22:00,44 10th St, Portland,OR,97035 +267096,Macbook Pro Laptop,1,1700.0,2019-10-20 14:08:00,450 Walnut St, Los Angeles,CA,90001 +267097,AA Batteries (4-pack),2,3.84,2019-10-24 05:53:00,953 Willow St, Boston,MA,02215 +267098,AAA Batteries (4-pack),1,2.99,2019-10-03 22:04:00,902 Main St, Portland,OR,97035 +267099,Google Phone,1,600.0,2019-10-16 09:39:00,295 Church St, Los Angeles,CA,90001 +267100,AAA Batteries (4-pack),2,2.99,2019-10-31 19:29:00,644 Lakeview St, San Francisco,CA,94016 +267101,Apple Airpods Headphones,1,150.0,2019-10-15 07:51:00,354 Forest St, San Francisco,CA,94016 +267102,Macbook Pro Laptop,1,1700.0,2019-10-09 20:50:00,320 Church St, San Francisco,CA,94016 +267103,USB-C Charging Cable,1,11.95,2019-10-08 11:07:00,408 Washington St, Austin,TX,73301 +267103,Lightning Charging Cable,1,14.95,2019-10-08 11:07:00,408 Washington St, Austin,TX,73301 +267104,iPhone,1,700.0,2019-10-14 21:15:00,333 10th St, Atlanta,GA,30301 +267105,AAA Batteries (4-pack),1,2.99,2019-10-24 14:33:00,877 2nd St, Los Angeles,CA,90001 +267106,AAA Batteries (4-pack),2,2.99,2019-10-07 01:14:00,753 Sunset St, New York City,NY,10001 +267107,AAA Batteries (4-pack),1,2.99,2019-10-06 10:06:00,330 Jackson St, Austin,TX,73301 +267108,Lightning Charging Cable,1,14.95,2019-10-26 11:32:00,639 Elm St, San Francisco,CA,94016 +267109,Apple Airpods Headphones,1,150.0,2019-10-29 17:57:00,705 Highland St, San Francisco,CA,94016 +267110,34in Ultrawide Monitor,1,379.99,2019-10-09 13:21:00,858 14th St, Dallas,TX,75001 +267111,USB-C Charging Cable,2,11.95,2019-10-26 12:46:00,720 Lake St, San Francisco,CA,94016 +267112,AA Batteries (4-pack),1,3.84,2019-10-05 10:36:00,701 Adams St, Boston,MA,02215 +267113,Bose SoundSport Headphones,1,99.99,2019-10-12 10:38:00,632 14th St, Boston,MA,02215 +267114,Bose SoundSport Headphones,1,99.99,2019-10-22 23:06:00,620 Wilson St, Seattle,WA,98101 +267115,Vareebadd Phone,1,400.0,2019-10-20 10:59:00,562 Johnson St, Seattle,WA,98101 +267115,USB-C Charging Cable,1,11.95,2019-10-20 10:59:00,562 Johnson St, Seattle,WA,98101 +267115,Wired Headphones,1,11.99,2019-10-20 10:59:00,562 Johnson St, Seattle,WA,98101 +267116,USB-C Charging Cable,1,11.95,2019-10-03 05:39:00,268 Chestnut St, Los Angeles,CA,90001 +267117,20in Monitor,1,109.99,2019-10-10 13:21:00,555 North St, Los Angeles,CA,90001 +267118,AAA Batteries (4-pack),1,2.99,2019-10-28 15:50:00,386 1st St, Seattle,WA,98101 +267119,Apple Airpods Headphones,1,150.0,2019-10-08 14:12:00,377 Wilson St, Los Angeles,CA,90001 +267120,Lightning Charging Cable,1,14.95,2019-10-02 11:18:00,169 Cedar St, New York City,NY,10001 +267121,USB-C Charging Cable,2,11.95,2019-10-07 21:26:00,918 North St, Boston,MA,02215 +267122,Wired Headphones,1,11.99,2019-10-11 17:29:00,992 Cherry St, San Francisco,CA,94016 +267123,20in Monitor,1,109.99,2019-10-01 14:05:00,495 North St, San Francisco,CA,94016 +267124,USB-C Charging Cable,1,11.95,2019-10-11 13:47:00,751 Washington St, San Francisco,CA,94016 +267125,Lightning Charging Cable,1,14.95,2019-10-13 19:19:00,912 Elm St, San Francisco,CA,94016 +267126,AAA Batteries (4-pack),1,2.99,2019-10-13 13:25:00,586 5th St, Dallas,TX,75001 +267127,iPhone,1,700.0,2019-10-07 22:41:00,630 1st St, New York City,NY,10001 +267128,iPhone,1,700.0,2019-10-23 01:56:00,318 Ridge St, Dallas,TX,75001 +267128,Wired Headphones,1,11.99,2019-10-23 01:56:00,318 Ridge St, Dallas,TX,75001 +267129,Lightning Charging Cable,1,14.95,2019-10-22 00:55:00,207 Cherry St, Dallas,TX,75001 +267130,Google Phone,1,600.0,2019-10-25 13:00:00,720 Lake St, Seattle,WA,98101 +267131,USB-C Charging Cable,1,11.95,2019-10-16 11:52:00,233 South St, Seattle,WA,98101 +267132,AA Batteries (4-pack),2,3.84,2019-10-27 11:59:00,238 10th St, Seattle,WA,98101 +267133,27in 4K Gaming Monitor,1,389.99,2019-10-22 17:00:00,38 South St, New York City,NY,10001 +267134,USB-C Charging Cable,2,11.95,2019-10-12 18:38:00,594 7th St, San Francisco,CA,94016 +267135,LG Dryer,1,600.0,2019-10-04 19:47:00,620 West St, Los Angeles,CA,90001 +267136,iPhone,1,700.0,2019-10-28 01:20:00,678 North St, Dallas,TX,75001 +267137,27in FHD Monitor,1,149.99,2019-10-16 16:59:00,89 13th St, Seattle,WA,98101 +267138,AA Batteries (4-pack),1,3.84,2019-10-09 11:09:00,84 10th St, Atlanta,GA,30301 +267139,Macbook Pro Laptop,1,1700.0,2019-10-22 14:37:00,135 Jackson St, Austin,TX,73301 +267140,AA Batteries (4-pack),1,3.84,2019-10-19 12:01:00,806 6th St, San Francisco,CA,94016 +267141,Wired Headphones,1,11.99,2019-10-20 05:45:00,906 Willow St, Seattle,WA,98101 +267142,Google Phone,1,600.0,2019-10-12 13:51:00,499 6th St, Seattle,WA,98101 +267143,iPhone,1,700.0,2019-10-27 17:04:00,939 Madison St, Los Angeles,CA,90001 +267144,AAA Batteries (4-pack),1,2.99,2019-10-13 16:41:00,583 4th St, Seattle,WA,98101 +267145,AAA Batteries (4-pack),1,2.99,2019-10-28 18:33:00,89 South St, New York City,NY,10001 +267146,Wired Headphones,1,11.99,2019-10-15 14:45:00,820 Cedar St, Los Angeles,CA,90001 +267147,USB-C Charging Cable,1,11.95,2019-10-15 18:59:00,803 9th St, San Francisco,CA,94016 +267148,Lightning Charging Cable,1,14.95,2019-10-30 10:02:00,196 2nd St, Atlanta,GA,30301 +267149,Vareebadd Phone,1,400.0,2019-10-03 12:28:00,684 Dogwood St, Dallas,TX,75001 +267150,AA Batteries (4-pack),1,3.84,2019-10-31 11:56:00,525 Lake St, San Francisco,CA,94016 +267151,iPhone,1,700.0,2019-10-02 10:39:00,183 Highland St, San Francisco,CA,94016 +267151,Lightning Charging Cable,1,14.95,2019-10-02 10:39:00,183 Highland St, San Francisco,CA,94016 +267152,AA Batteries (4-pack),1,3.84,2019-10-21 11:59:00,120 13th St, San Francisco,CA,94016 +267153,ThinkPad Laptop,1,999.99,2019-10-25 16:01:00,248 Walnut St, Los Angeles,CA,90001 +267154,iPhone,1,700.0,2019-10-01 18:22:00,80 6th St, New York City,NY,10001 +267155,AA Batteries (4-pack),1,3.84,2019-10-12 16:39:00,568 Hickory St, Boston,MA,02215 +267156,Wired Headphones,1,11.99,2019-10-21 11:16:00,840 North St, Boston,MA,02215 +267157,Wired Headphones,1,11.99,2019-10-10 09:50:00,561 Wilson St, Los Angeles,CA,90001 +267158,Wired Headphones,1,11.99,2019-10-04 10:27:00,377 Wilson St, Dallas,TX,75001 +267159,AAA Batteries (4-pack),1,2.99,2019-10-13 08:05:00,49 14th St, Boston,MA,02215 +267160,Lightning Charging Cable,1,14.95,2019-10-01 20:48:00,833 Pine St, San Francisco,CA,94016 +267161,Lightning Charging Cable,1,14.95,2019-10-10 19:30:00,986 Main St, Los Angeles,CA,90001 +267162,AAA Batteries (4-pack),1,2.99,2019-10-07 16:47:00,151 Highland St, San Francisco,CA,94016 +267163,Lightning Charging Cable,1,14.95,2019-10-25 18:35:00,32 7th St, Los Angeles,CA,90001 +267164,Bose SoundSport Headphones,1,99.99,2019-10-15 13:32:00,916 8th St, Los Angeles,CA,90001 +267165,Lightning Charging Cable,1,14.95,2019-10-26 17:15:00,287 Center St, San Francisco,CA,94016 +267166,27in FHD Monitor,1,149.99,2019-10-15 20:04:00,253 Willow St, Boston,MA,02215 +267167,Apple Airpods Headphones,1,150.0,2019-10-28 20:15:00,628 1st St, Los Angeles,CA,90001 +267168,Apple Airpods Headphones,1,150.0,2019-10-31 06:49:00,860 14th St, Los Angeles,CA,90001 +267169,Wired Headphones,1,11.99,2019-10-21 09:34:00,185 Park St, Boston,MA,02215 +267170,27in FHD Monitor,1,149.99,2019-10-23 17:52:00,511 Lakeview St, Dallas,TX,75001 +267171,Apple Airpods Headphones,1,150.0,2019-10-08 06:46:00,225 Main St, Los Angeles,CA,90001 +267172,AAA Batteries (4-pack),1,2.99,2019-10-23 09:23:00,895 Spruce St, San Francisco,CA,94016 +267173,USB-C Charging Cable,1,11.95,2019-10-20 21:31:00,578 Sunset St, Los Angeles,CA,90001 +267174,Lightning Charging Cable,1,14.95,2019-10-29 15:17:00,341 13th St, Los Angeles,CA,90001 +267175,Wired Headphones,1,11.99,2019-10-28 22:48:00,591 Adams St, San Francisco,CA,94016 +267176,AA Batteries (4-pack),1,3.84,2019-10-25 20:40:00,325 Jackson St, San Francisco,CA,94016 +267177,Bose SoundSport Headphones,1,99.99,2019-10-01 09:40:00,302 5th St, Los Angeles,CA,90001 +267178,Macbook Pro Laptop,1,1700.0,2019-10-15 17:02:00,360 Madison St, Boston,MA,02215 +267179,ThinkPad Laptop,1,999.99,2019-10-23 13:37:00,984 4th St, Austin,TX,73301 +267180,Apple Airpods Headphones,1,150.0,2019-10-22 13:08:00,421 Washington St, Seattle,WA,98101 +267181,Apple Airpods Headphones,2,150.0,2019-10-02 17:44:00,463 Lakeview St, Portland,OR,97035 +267182,Google Phone,1,600.0,2019-10-26 08:11:00,501 Sunset St, Los Angeles,CA,90001 +267183,Wired Headphones,1,11.99,2019-10-12 09:47:00,159 12th St, New York City,NY,10001 +267184,AAA Batteries (4-pack),2,2.99,2019-10-27 11:00:00,401 Sunset St, New York City,NY,10001 +267184,Wired Headphones,1,11.99,2019-10-27 11:00:00,401 Sunset St, New York City,NY,10001 +267185,AAA Batteries (4-pack),1,2.99,2019-10-03 19:23:00,346 13th St, Los Angeles,CA,90001 +267186,Apple Airpods Headphones,1,150.0,2019-10-27 12:07:00,98 Adams St, New York City,NY,10001 +267187,20in Monitor,1,109.99,2019-10-01 13:26:00,9 Church St, New York City,NY,10001 +267188,Macbook Pro Laptop,1,1700.0,2019-10-16 14:32:00,805 Ridge St, San Francisco,CA,94016 +267189,Lightning Charging Cable,2,14.95,2019-10-09 19:45:00,68 Sunset St, San Francisco,CA,94016 +267190,Lightning Charging Cable,1,14.95,2019-10-25 13:56:00,547 Maple St, New York City,NY,10001 +267191,27in FHD Monitor,1,149.99,2019-10-17 08:29:00,61 Johnson St, New York City,NY,10001 +267192,USB-C Charging Cable,1,11.95,2019-10-13 14:28:00,792 Forest St, Los Angeles,CA,90001 +267193,Apple Airpods Headphones,1,150.0,2019-10-16 17:11:00,78 14th St, Dallas,TX,75001 +267194,AAA Batteries (4-pack),3,2.99,2019-10-26 08:00:00,329 13th St, Los Angeles,CA,90001 +267195,Bose SoundSport Headphones,1,99.99,2019-10-23 17:03:00,40 Forest St, Seattle,WA,98101 +267196,Lightning Charging Cable,1,14.95,2019-10-20 14:43:00,7 12th St, Portland,OR,97035 +267197,Google Phone,1,600.0,2019-10-12 11:39:00,204 Wilson St, Boston,MA,02215 +267198,34in Ultrawide Monitor,1,379.99,2019-10-04 11:45:00,925 Pine St, San Francisco,CA,94016 +267199,USB-C Charging Cable,1,11.95,2019-10-02 10:48:00,406 10th St, San Francisco,CA,94016 +267200,20in Monitor,1,109.99,2019-10-01 20:13:00,971 Pine St, San Francisco,CA,94016 +267201,Bose SoundSport Headphones,1,99.99,2019-10-04 10:36:00,231 Chestnut St, Seattle,WA,98101 +267202,Lightning Charging Cable,1,14.95,2019-10-23 17:39:00,195 Walnut St, New York City,NY,10001 +267203,Lightning Charging Cable,1,14.95,2019-10-06 20:32:00,888 8th St, San Francisco,CA,94016 +267204,27in 4K Gaming Monitor,1,389.99,2019-10-02 18:53:00,939 Dogwood St, San Francisco,CA,94016 +267205,Lightning Charging Cable,1,14.95,2019-10-19 18:48:00,978 North St, Boston,MA,02215 +267206,Flatscreen TV,1,300.0,2019-10-04 10:07:00,749 Hill St, Boston,MA,02215 +267207,AA Batteries (4-pack),1,3.84,2019-10-14 14:46:00,273 River St, San Francisco,CA,94016 +267208,ThinkPad Laptop,1,999.99,2019-10-25 13:20:00,444 4th St, Austin,TX,73301 +267209,Bose SoundSport Headphones,1,99.99,2019-10-01 18:10:00,851 2nd St, Portland,OR,97035 +267210,AA Batteries (4-pack),2,3.84,2019-10-17 10:03:00,778 Spruce St, San Francisco,CA,94016 +267211,USB-C Charging Cable,1,11.95,2019-10-14 19:11:00,909 Meadow St, Los Angeles,CA,90001 +267212,Google Phone,1,600.0,2019-10-22 13:57:00,852 North St, San Francisco,CA,94016 +267212,Wired Headphones,1,11.99,2019-10-22 13:57:00,852 North St, San Francisco,CA,94016 +267213,AA Batteries (4-pack),1,3.84,2019-10-11 19:20:00,267 Forest St, Austin,TX,73301 +267214,USB-C Charging Cable,1,11.95,2019-10-15 23:00:00,581 Maple St, San Francisco,CA,94016 +267215,iPhone,1,700.0,2019-10-11 11:27:00,836 Hill St, Los Angeles,CA,90001 +267215,Apple Airpods Headphones,1,150.0,2019-10-11 11:27:00,836 Hill St, Los Angeles,CA,90001 +267216,Wired Headphones,1,11.99,2019-10-16 19:16:00,901 Maple St, San Francisco,CA,94016 +267217,Flatscreen TV,1,300.0,2019-10-07 13:54:00,73 Jackson St, New York City,NY,10001 +267218,AA Batteries (4-pack),1,3.84,2019-10-20 14:12:00,9 Willow St, Boston,MA,02215 +267219,Lightning Charging Cable,1,14.95,2019-10-01 10:01:00,299 River St, New York City,NY,10001 +267220,AAA Batteries (4-pack),1,2.99,2019-10-20 17:46:00,957 12th St, Los Angeles,CA,90001 +267221,Lightning Charging Cable,1,14.95,2019-10-04 06:23:00,841 Highland St, New York City,NY,10001 +267222,20in Monitor,1,109.99,2019-10-07 09:23:00,694 Chestnut St, San Francisco,CA,94016 +267223,Lightning Charging Cable,1,14.95,2019-10-13 14:02:00,742 Hickory St, Boston,MA,02215 +267224,Bose SoundSport Headphones,1,99.99,2019-10-26 11:39:00,763 Main St, Portland,OR,97035 +267225,ThinkPad Laptop,1,999.99,2019-10-09 17:54:00,760 Park St, Portland,OR,97035 +267226,Lightning Charging Cable,1,14.95,2019-10-26 06:24:00,713 11th St, San Francisco,CA,94016 +267227,Bose SoundSport Headphones,1,99.99,2019-10-22 10:13:00,535 Maple St, San Francisco,CA,94016 +267228,Lightning Charging Cable,1,14.95,2019-10-21 19:46:00,637 6th St, Boston,MA,02215 +267229,USB-C Charging Cable,1,11.95,2019-10-07 00:16:00,812 Spruce St, Dallas,TX,75001 +267230,AA Batteries (4-pack),1,3.84,2019-10-26 17:44:00,852 Forest St, Portland,ME,04101 +267231,AAA Batteries (4-pack),1,2.99,2019-10-25 13:59:00,810 13th St, Atlanta,GA,30301 +267232,Lightning Charging Cable,1,14.95,2019-10-21 19:55:00,664 Jackson St, Boston,MA,02215 +267233,AAA Batteries (4-pack),2,2.99,2019-10-19 18:08:00,300 Hill St, New York City,NY,10001 +267234,AAA Batteries (4-pack),1,2.99,2019-10-31 08:55:00,608 Lakeview St, New York City,NY,10001 +267235,Macbook Pro Laptop,1,1700.0,2019-10-04 13:32:00,303 Meadow St, Austin,TX,73301 +267236,AA Batteries (4-pack),1,3.84,2019-10-10 18:13:00,266 10th St, Austin,TX,73301 +267237,iPhone,1,700.0,2019-10-25 00:06:00,244 Walnut St, San Francisco,CA,94016 +267238,USB-C Charging Cable,1,11.95,2019-10-25 21:32:00,254 14th St, New York City,NY,10001 +267239,27in FHD Monitor,1,149.99,2019-10-05 07:43:00,611 Forest St, Boston,MA,02215 +267240,iPhone,1,700.0,2019-10-30 21:07:00,593 Wilson St, Los Angeles,CA,90001 +267241,Lightning Charging Cable,1,14.95,2019-10-24 22:44:00,403 Washington St, San Francisco,CA,94016 +267242,USB-C Charging Cable,1,11.95,2019-10-22 07:42:00,940 Jackson St, Los Angeles,CA,90001 +267243,AA Batteries (4-pack),1,3.84,2019-10-17 23:50:00,137 Lake St, Austin,TX,73301 +267244,AA Batteries (4-pack),1,3.84,2019-10-06 10:18:00,201 Meadow St, New York City,NY,10001 +267245,20in Monitor,1,109.99,2019-10-27 20:35:00,605 Cherry St, Dallas,TX,75001 +267246,iPhone,1,700.0,2019-10-22 08:50:00,769 Wilson St, Portland,ME,04101 +267247,27in FHD Monitor,1,149.99,2019-10-08 15:53:00,301 River St, Austin,TX,73301 +267248,27in 4K Gaming Monitor,1,389.99,2019-10-18 15:36:00,70 14th St, Boston,MA,02215 +267249,Bose SoundSport Headphones,1,99.99,2019-10-22 11:29:00,136 Elm St, Los Angeles,CA,90001 +267250,ThinkPad Laptop,1,999.99,2019-10-30 16:27:00,371 Maple St, San Francisco,CA,94016 +267251,USB-C Charging Cable,1,11.95,2019-10-29 21:03:00,873 10th St, Boston,MA,02215 +267252,Lightning Charging Cable,1,14.95,2019-10-03 16:25:00,895 Cedar St, Atlanta,GA,30301 +267253,Flatscreen TV,1,300.0,2019-10-05 14:51:00,638 5th St, Portland,OR,97035 +267254,Bose SoundSport Headphones,1,99.99,2019-10-06 14:36:00,491 South St, Austin,TX,73301 +267255,Bose SoundSport Headphones,1,99.99,2019-10-16 22:13:00,92 Forest St, Boston,MA,02215 +267256,AA Batteries (4-pack),1,3.84,2019-10-24 09:42:00,510 River St, Boston,MA,02215 +267257,20in Monitor,1,109.99,2019-10-07 13:35:00,757 6th St, Portland,OR,97035 +267258,27in 4K Gaming Monitor,1,389.99,2019-10-30 20:46:00,37 10th St, Seattle,WA,98101 +267259,Lightning Charging Cable,1,14.95,2019-10-05 13:59:00,887 South St, Dallas,TX,75001 +267260,Lightning Charging Cable,1,14.95,2019-10-21 00:09:00,544 Park St, San Francisco,CA,94016 +267261,27in 4K Gaming Monitor,1,389.99,2019-10-03 16:52:00,421 North St, San Francisco,CA,94016 +267262,Lightning Charging Cable,1,14.95,2019-10-08 17:47:00,122 Lake St, Boston,MA,02215 +267263,Macbook Pro Laptop,1,1700.0,2019-10-31 23:48:00,912 South St, Los Angeles,CA,90001 +267264,Lightning Charging Cable,1,14.95,2019-10-14 11:46:00,852 Hickory St, San Francisco,CA,94016 +267265,Lightning Charging Cable,1,14.95,2019-10-15 12:24:00,127 Jefferson St, Boston,MA,02215 +267266,Bose SoundSport Headphones,1,99.99,2019-10-14 09:08:00,558 Johnson St, San Francisco,CA,94016 +267267,Wired Headphones,1,11.99,2019-10-25 16:58:00,956 Wilson St, Dallas,TX,75001 +267268,Google Phone,1,600.0,2019-10-26 22:09:00,291 Main St, Dallas,TX,75001 +267269,AAA Batteries (4-pack),1,2.99,2019-10-11 14:31:00,957 Cherry St, New York City,NY,10001 +267270,USB-C Charging Cable,1,11.95,2019-10-13 22:28:00,97 8th St, Los Angeles,CA,90001 +267271,AAA Batteries (4-pack),3,2.99,2019-10-07 11:00:00,524 9th St, Boston,MA,02215 +267272,Apple Airpods Headphones,1,150.0,2019-10-17 01:38:00,844 Chestnut St, Los Angeles,CA,90001 +267273,USB-C Charging Cable,1,11.95,2019-10-21 17:37:00,628 14th St, Atlanta,GA,30301 +267274,ThinkPad Laptop,1,999.99,2019-10-05 11:13:00,223 North St, Boston,MA,02215 +267275,Wired Headphones,1,11.99,2019-10-06 10:46:00,562 Dogwood St, San Francisco,CA,94016 +267276,AAA Batteries (4-pack),1,2.99,2019-10-06 13:38:00,444 Willow St, San Francisco,CA,94016 +267277,AA Batteries (4-pack),1,3.84,2019-10-02 18:45:00,325 River St, Austin,TX,73301 +267278,AAA Batteries (4-pack),1,2.99,2019-10-21 19:20:00,933 Washington St, Portland,OR,97035 +267279,Lightning Charging Cable,1,14.95,2019-10-22 21:20:00,459 7th St, Dallas,TX,75001 +267279,AAA Batteries (4-pack),1,2.99,2019-10-22 21:20:00,459 7th St, Dallas,TX,75001 +267280,AA Batteries (4-pack),1,3.84,2019-10-25 11:45:00,872 Main St, Los Angeles,CA,90001 +267281,Bose SoundSport Headphones,1,99.99,2019-10-17 14:37:00,624 5th St, San Francisco,CA,94016 +267282,Flatscreen TV,1,300.0,2019-10-06 23:50:00,433 Main St, Atlanta,GA,30301 +267283,Apple Airpods Headphones,1,150.0,2019-10-22 20:58:00,931 Washington St, Los Angeles,CA,90001 +267284,LG Washing Machine,1,600.0,2019-10-24 06:42:00,779 13th St, Atlanta,GA,30301 +267285,AAA Batteries (4-pack),1,2.99,2019-10-28 16:56:00,607 Spruce St, San Francisco,CA,94016 +267286,Apple Airpods Headphones,1,150.0,2019-10-29 23:13:00,671 Chestnut St, Los Angeles,CA,90001 +267287,Macbook Pro Laptop,1,1700.0,2019-10-12 12:00:00,858 Walnut St, Dallas,TX,75001 +267288,AA Batteries (4-pack),3,3.84,2019-10-27 10:52:00,443 North St, San Francisco,CA,94016 +267289,AA Batteries (4-pack),1,3.84,2019-10-20 11:35:00,746 Adams St, Atlanta,GA,30301 +267290,Lightning Charging Cable,1,14.95,2019-10-19 15:37:00,1 14th St, New York City,NY,10001 +267291,AAA Batteries (4-pack),1,2.99,2019-10-15 09:46:00,25 Walnut St, New York City,NY,10001 +267292,27in FHD Monitor,1,149.99,2019-10-14 00:18:00,995 River St, Portland,ME,04101 +267293,AA Batteries (4-pack),2,3.84,2019-10-23 15:20:00,399 Forest St, Atlanta,GA,30301 +267294,Bose SoundSport Headphones,1,99.99,2019-10-20 17:41:00,294 Washington St, Portland,OR,97035 +267295,Bose SoundSport Headphones,1,99.99,2019-10-12 15:58:00,937 Lakeview St, Los Angeles,CA,90001 +267296,Google Phone,1,600.0,2019-10-28 13:12:00,621 8th St, Los Angeles,CA,90001 +267297,34in Ultrawide Monitor,1,379.99,2019-10-09 19:01:00,648 Park St, Austin,TX,73301 +267298,34in Ultrawide Monitor,1,379.99,2019-10-18 07:05:00,698 Meadow St, Austin,TX,73301 +267299,Apple Airpods Headphones,1,150.0,2019-10-16 10:09:00,284 1st St, San Francisco,CA,94016 +267300,AAA Batteries (4-pack),2,2.99,2019-10-03 10:05:00,951 Cedar St, Boston,MA,02215 +267301,Wired Headphones,1,11.99,2019-10-15 18:40:00,932 Sunset St, Atlanta,GA,30301 +267302,AA Batteries (4-pack),2,3.84,2019-10-16 10:02:00,862 4th St, Atlanta,GA,30301 +267303,USB-C Charging Cable,1,11.95,2019-10-30 17:45:00,113 8th St, Austin,TX,73301 +267304,iPhone,1,700.0,2019-10-27 10:57:00,154 Maple St, San Francisco,CA,94016 +267305,AAA Batteries (4-pack),1,2.99,2019-10-31 10:34:00,637 2nd St, Boston,MA,02215 +267306,Lightning Charging Cable,1,14.95,2019-10-01 21:58:00,512 Forest St, Boston,MA,02215 +267307,AA Batteries (4-pack),1,3.84,2019-10-26 11:12:00,660 2nd St, San Francisco,CA,94016 +267308,LG Dryer,1,600.0,2019-10-12 09:54:00,814 Main St, Dallas,TX,75001 +267309,USB-C Charging Cable,1,11.95,2019-10-11 20:16:00,431 5th St, San Francisco,CA,94016 +267310,Apple Airpods Headphones,1,150.0,2019-10-05 21:39:00,368 Hickory St, New York City,NY,10001 +267311,Apple Airpods Headphones,1,150.0,2019-10-10 20:49:00,569 Highland St, New York City,NY,10001 +267312,iPhone,1,700.0,2019-10-21 21:35:00,456 1st St, San Francisco,CA,94016 +267312,Lightning Charging Cable,1,14.95,2019-10-21 21:35:00,456 1st St, San Francisco,CA,94016 +267313,Lightning Charging Cable,1,14.95,2019-10-13 15:12:00,70 14th St, San Francisco,CA,94016 +267314,LG Dryer,1,600.0,2019-10-03 11:50:00,124 Hickory St, Los Angeles,CA,90001 +267315,iPhone,1,700.0,2019-10-29 18:07:00,140 8th St, Austin,TX,73301 +267316,Macbook Pro Laptop,1,1700.0,2019-10-13 09:50:00,63 11th St, San Francisco,CA,94016 +267317,AA Batteries (4-pack),1,3.84,2019-10-02 12:20:00,407 Center St, New York City,NY,10001 +267318,Wired Headphones,1,11.99,2019-10-25 12:09:00,461 4th St, Portland,OR,97035 +267319,Wired Headphones,1,11.99,2019-10-03 09:19:00,96 Madison St, Los Angeles,CA,90001 +267320,Wired Headphones,1,11.99,2019-10-16 12:21:00,739 Washington St, Dallas,TX,75001 +267321,AA Batteries (4-pack),3,3.84,2019-10-31 09:18:00,232 Dogwood St, New York City,NY,10001 +267322,Bose SoundSport Headphones,1,99.99,2019-10-30 00:24:00,17 Park St, Dallas,TX,75001 +267323,USB-C Charging Cable,1,11.95,2019-10-25 22:04:00,317 2nd St, Portland,OR,97035 +267324,Apple Airpods Headphones,1,150.0,2019-10-28 23:16:00,829 Park St, Seattle,WA,98101 +267325,Wired Headphones,2,11.99,2019-10-18 12:19:00,815 Hickory St, Atlanta,GA,30301 +267325,Lightning Charging Cable,1,14.95,2019-10-18 12:19:00,815 Hickory St, Atlanta,GA,30301 +267326,AAA Batteries (4-pack),1,2.99,2019-10-27 12:03:00,90 8th St, Austin,TX,73301 +267327,Bose SoundSport Headphones,1,99.99,2019-10-15 22:27:00,558 Adams St, New York City,NY,10001 +267328,Flatscreen TV,1,300.0,2019-10-06 00:41:00,263 Church St, San Francisco,CA,94016 +267329,Google Phone,1,600.0,2019-10-24 15:39:00,673 2nd St, Boston,MA,02215 +267330,USB-C Charging Cable,1,11.95,2019-10-05 13:46:00,690 Lake St, Dallas,TX,75001 +267331,AA Batteries (4-pack),1,3.84,2019-10-18 00:10:00,174 West St, Boston,MA,02215 +267332,ThinkPad Laptop,1,999.99,2019-10-29 19:48:00,801 Spruce St, San Francisco,CA,94016 +267333,AAA Batteries (4-pack),4,2.99,2019-10-16 14:47:00,831 Lakeview St, Los Angeles,CA,90001 +267334,27in 4K Gaming Monitor,1,389.99,2019-10-15 09:30:00,429 Chestnut St, Los Angeles,CA,90001 +267335,27in FHD Monitor,1,149.99,2019-10-30 21:18:00,634 Park St, Atlanta,GA,30301 +267336,AA Batteries (4-pack),1,3.84,2019-10-17 17:40:00,753 5th St, Portland,OR,97035 +267337,AAA Batteries (4-pack),1,2.99,2019-10-19 14:01:00,676 Pine St, Portland,OR,97035 +267338,USB-C Charging Cable,1,11.95,2019-10-10 10:27:00,588 South St, San Francisco,CA,94016 +267339,AA Batteries (4-pack),1,3.84,2019-10-25 11:53:00,128 Spruce St, San Francisco,CA,94016 +267340,Macbook Pro Laptop,1,1700.0,2019-10-21 14:23:00,68 River St, Los Angeles,CA,90001 +267341,AAA Batteries (4-pack),1,2.99,2019-10-09 23:21:00,926 Hickory St, Los Angeles,CA,90001 +267342,AAA Batteries (4-pack),1,2.99,2019-10-15 09:29:00,102 2nd St, Boston,MA,02215 +267343,AA Batteries (4-pack),1,3.84,2019-10-24 22:06:00,544 Meadow St, San Francisco,CA,94016 +267344,LG Washing Machine,1,600.0,2019-10-09 19:09:00,634 Cherry St, Dallas,TX,75001 +267345,Lightning Charging Cable,1,14.95,2019-10-28 10:36:00,729 4th St, Los Angeles,CA,90001 +267346,AAA Batteries (4-pack),2,2.99,2019-10-28 08:33:00,346 8th St, Los Angeles,CA,90001 +267347,27in 4K Gaming Monitor,1,389.99,2019-10-12 21:16:00,869 1st St, Austin,TX,73301 +267348,Macbook Pro Laptop,1,1700.0,2019-10-01 18:15:00,800 Lake St, Dallas,TX,75001 +267349,AA Batteries (4-pack),1,3.84,2019-10-28 10:47:00,159 Maple St, Atlanta,GA,30301 +267350,USB-C Charging Cable,1,11.95,2019-10-31 15:02:00,783 1st St, Atlanta,GA,30301 +267350,AAA Batteries (4-pack),1,2.99,2019-10-31 15:02:00,783 1st St, Atlanta,GA,30301 +267351,Apple Airpods Headphones,1,150.0,2019-10-06 13:20:00,422 Spruce St, San Francisco,CA,94016 +267352,Apple Airpods Headphones,1,150.0,2019-10-13 13:07:00,951 Adams St, Seattle,WA,98101 +267353,Wired Headphones,1,11.99,2019-10-01 17:53:00,440 Cedar St, San Francisco,CA,94016 +267354,Flatscreen TV,1,300.0,2019-10-27 14:40:00,559 Sunset St, Los Angeles,CA,90001 +267355,AA Batteries (4-pack),2,3.84,2019-10-13 22:41:00,860 Lincoln St, San Francisco,CA,94016 +267355,AA Batteries (4-pack),1,3.84,2019-10-13 22:41:00,860 Lincoln St, San Francisco,CA,94016 +267356,Apple Airpods Headphones,1,150.0,2019-10-30 15:39:00,393 Park St, Los Angeles,CA,90001 +267357,Bose SoundSport Headphones,1,99.99,2019-10-03 19:13:00,49 Main St, Atlanta,GA,30301 +267358,USB-C Charging Cable,1,11.95,2019-10-19 13:14:00,157 12th St, New York City,NY,10001 +267359,Wired Headphones,1,11.99,2019-10-14 18:03:00,616 Jackson St, San Francisco,CA,94016 +267360,Lightning Charging Cable,1,14.95,2019-10-20 07:36:00,55 13th St, Los Angeles,CA,90001 +267361,USB-C Charging Cable,1,11.95,2019-10-04 09:15:00,320 North St, New York City,NY,10001 +267362,AAA Batteries (4-pack),1,2.99,2019-10-04 21:02:00,388 7th St, San Francisco,CA,94016 +267363,AA Batteries (4-pack),1,3.84,2019-10-25 16:26:00,281 Cedar St, Los Angeles,CA,90001 +267364,Lightning Charging Cable,1,14.95,2019-10-22 00:32:00,129 Church St, Portland,OR,97035 +267365,Google Phone,1,600.0,2019-10-13 02:42:00,947 Jackson St, Portland,OR,97035 +267365,USB-C Charging Cable,1,11.95,2019-10-13 02:42:00,947 Jackson St, Portland,OR,97035 +267365,Wired Headphones,1,11.99,2019-10-13 02:42:00,947 Jackson St, Portland,OR,97035 +267366,34in Ultrawide Monitor,1,379.99,2019-10-22 19:13:00,368 11th St, San Francisco,CA,94016 +267367,iPhone,1,700.0,2019-10-24 10:00:00,114 South St, Los Angeles,CA,90001 +267367,Wired Headphones,1,11.99,2019-10-24 10:00:00,114 South St, Los Angeles,CA,90001 +267368,Google Phone,1,600.0,2019-10-07 10:02:00,233 1st St, Austin,TX,73301 +267368,Bose SoundSport Headphones,1,99.99,2019-10-07 10:02:00,233 1st St, Austin,TX,73301 +267369,iPhone,1,700.0,2019-10-16 02:39:00,22 Lakeview St, Boston,MA,02215 +267370,20in Monitor,1,109.99,2019-10-16 15:54:00,379 Walnut St, San Francisco,CA,94016 +267371,AAA Batteries (4-pack),1,2.99,2019-10-16 18:54:00,952 Lake St, Atlanta,GA,30301 +267372,iPhone,1,700.0,2019-10-04 11:39:00,540 2nd St, Austin,TX,73301 +267373,Apple Airpods Headphones,1,150.0,2019-10-12 10:12:00,234 Jefferson St, San Francisco,CA,94016 +267374,USB-C Charging Cable,1,11.95,2019-10-24 16:41:00,326 Meadow St, Atlanta,GA,30301 +267375,AAA Batteries (4-pack),1,2.99,2019-10-26 17:33:00,308 North St, Atlanta,GA,30301 +267376,Google Phone,1,600.0,2019-10-22 12:24:00,246 Lake St, Portland,OR,97035 +267376,USB-C Charging Cable,1,11.95,2019-10-22 12:24:00,246 Lake St, Portland,OR,97035 +267376,Bose SoundSport Headphones,1,99.99,2019-10-22 12:24:00,246 Lake St, Portland,OR,97035 +267377,Lightning Charging Cable,1,14.95,2019-10-13 13:23:00,490 Church St, Los Angeles,CA,90001 +267378,Lightning Charging Cable,1,14.95,2019-10-12 15:16:00,374 14th St, San Francisco,CA,94016 +267379,Wired Headphones,1,11.99,2019-10-27 11:39:00,455 Jefferson St, San Francisco,CA,94016 +267380,Wired Headphones,1,11.99,2019-10-04 16:08:00,500 Spruce St, Atlanta,GA,30301 +267381,AAA Batteries (4-pack),1,2.99,2019-10-04 22:42:00,13 Hickory St, San Francisco,CA,94016 +267382,Bose SoundSport Headphones,1,99.99,2019-10-11 13:48:00,856 Maple St, San Francisco,CA,94016 +267383,Bose SoundSport Headphones,1,99.99,2019-10-01 13:30:00,464 14th St, San Francisco,CA,94016 +267384,27in FHD Monitor,1,149.99,2019-10-03 20:44:00,268 Park St, Seattle,WA,98101 +267385,Lightning Charging Cable,1,14.95,2019-10-02 15:18:00,795 Hill St, San Francisco,CA,94016 +267386,Lightning Charging Cable,1,14.95,2019-10-24 12:32:00,260 5th St, Atlanta,GA,30301 +267387,Google Phone,1,600.0,2019-10-19 00:41:00,114 Church St, Seattle,WA,98101 +267388,27in 4K Gaming Monitor,1,389.99,2019-10-12 19:57:00,758 2nd St, Atlanta,GA,30301 +267388,Apple Airpods Headphones,1,150.0,2019-10-12 19:57:00,758 2nd St, Atlanta,GA,30301 +267389,USB-C Charging Cable,1,11.95,2019-10-20 00:14:00,2 Church St, Boston,MA,02215 +267390,USB-C Charging Cable,1,11.95,2019-10-26 16:56:00,121 Adams St, New York City,NY,10001 +267391,AAA Batteries (4-pack),1,2.99,2019-10-29 14:19:00,665 Pine St, New York City,NY,10001 +267391,Flatscreen TV,1,300.0,2019-10-29 14:19:00,665 Pine St, New York City,NY,10001 +267392,Wired Headphones,1,11.99,2019-10-21 20:12:00,399 8th St, New York City,NY,10001 +267393,27in FHD Monitor,1,149.99,2019-10-31 14:45:00,695 5th St, Los Angeles,CA,90001 +267394,Lightning Charging Cable,1,14.95,2019-10-13 18:51:00,444 Maple St, Portland,OR,97035 +267395,AAA Batteries (4-pack),1,2.99,2019-10-10 19:53:00,423 Ridge St, San Francisco,CA,94016 +267396,AA Batteries (4-pack),1,3.84,2019-10-10 10:10:00,942 Church St, Seattle,WA,98101 +267397,iPhone,1,700.0,2019-10-28 12:49:00,704 Lakeview St, San Francisco,CA,94016 +267398,Bose SoundSport Headphones,1,99.99,2019-10-06 17:59:00,105 Willow St, Boston,MA,02215 +267399,AAA Batteries (4-pack),1,2.99,2019-10-19 21:40:00,718 8th St, Austin,TX,73301 +267400,AA Batteries (4-pack),1,3.84,2019-10-04 13:25:00,918 Cedar St, Los Angeles,CA,90001 +267401,27in 4K Gaming Monitor,1,389.99,2019-10-22 10:19:00,31 Jackson St, San Francisco,CA,94016 +267402,USB-C Charging Cable,1,11.95,2019-10-21 09:56:00,27 Cherry St, Boston,MA,02215 +267403,Macbook Pro Laptop,1,1700.0,2019-10-10 14:41:00,940 Washington St, New York City,NY,10001 +267404,Apple Airpods Headphones,1,150.0,2019-10-03 19:28:00,670 Highland St, Dallas,TX,75001 +267405,Lightning Charging Cable,1,14.95,2019-10-03 22:49:00,716 1st St, New York City,NY,10001 +267406,Apple Airpods Headphones,1,150.0,2019-10-03 21:04:00,299 Adams St, Portland,ME,04101 +267407,USB-C Charging Cable,1,11.95,2019-10-25 20:21:00,418 8th St, New York City,NY,10001 +267408,AA Batteries (4-pack),1,3.84,2019-10-03 10:46:00,958 Jefferson St, Seattle,WA,98101 +267409,USB-C Charging Cable,1,11.95,2019-10-17 20:55:00,63 Meadow St, Seattle,WA,98101 +267410,Bose SoundSport Headphones,1,99.99,2019-10-05 16:14:00,484 Maple St, Atlanta,GA,30301 +267411,20in Monitor,1,109.99,2019-10-14 12:41:00,649 Elm St, Los Angeles,CA,90001 +267412,Apple Airpods Headphones,1,150.0,2019-10-24 23:30:00,115 11th St, Los Angeles,CA,90001 +267413,AAA Batteries (4-pack),3,2.99,2019-10-08 19:21:00,489 13th St, Dallas,TX,75001 +267414,Lightning Charging Cable,1,14.95,2019-10-20 07:01:00,230 Madison St, San Francisco,CA,94016 +267415,AAA Batteries (4-pack),1,2.99,2019-10-17 13:01:00,397 Pine St, San Francisco,CA,94016 +267416,Apple Airpods Headphones,1,150.0,2019-10-18 07:06:00,127 Madison St, New York City,NY,10001 +267417,AA Batteries (4-pack),1,3.84,2019-10-13 21:02:00,308 South St, San Francisco,CA,94016 +267418,AAA Batteries (4-pack),1,2.99,2019-10-18 21:01:00,677 Church St, Portland,OR,97035 +267419,20in Monitor,1,109.99,2019-10-13 21:55:00,864 Main St, New York City,NY,10001 +267420,Wired Headphones,1,11.99,2019-10-05 16:52:00,113 Spruce St, Atlanta,GA,30301 +267421,34in Ultrawide Monitor,1,379.99,2019-10-04 11:49:00,312 Wilson St, New York City,NY,10001 +267422,USB-C Charging Cable,2,11.95,2019-10-22 17:51:00,375 Park St, Portland,ME,04101 +267423,Wired Headphones,1,11.99,2019-10-22 14:04:00,589 Park St, Seattle,WA,98101 +267424,Wired Headphones,1,11.99,2019-10-31 00:15:00,103 Sunset St, Portland,ME,04101 +267425,Wired Headphones,2,11.99,2019-10-02 13:29:00,724 Willow St, Los Angeles,CA,90001 +267426,Lightning Charging Cable,1,14.95,2019-10-26 12:21:00,725 Johnson St, Los Angeles,CA,90001 +267427,AAA Batteries (4-pack),1,2.99,2019-10-31 13:00:00,779 Adams St, Boston,MA,02215 +267428,20in Monitor,1,109.99,2019-10-10 12:33:00,5 Hickory St, Los Angeles,CA,90001 +267428,Google Phone,1,600.0,2019-10-10 12:33:00,5 Hickory St, Los Angeles,CA,90001 +267429,Wired Headphones,1,11.99,2019-10-14 15:10:00,970 Sunset St, Boston,MA,02215 +267430,Google Phone,1,600.0,2019-10-14 00:30:00,882 5th St, San Francisco,CA,94016 +267431,27in 4K Gaming Monitor,1,389.99,2019-10-12 20:59:00,251 Jefferson St, Los Angeles,CA,90001 +267432,Google Phone,1,600.0,2019-10-07 14:15:00,491 7th St, Atlanta,GA,30301 +267433,AA Batteries (4-pack),1,3.84,2019-10-23 06:49:00,895 6th St, San Francisco,CA,94016 +267434,iPhone,1,700.0,2019-10-05 08:40:00,132 Maple St, San Francisco,CA,94016 +267435,Lightning Charging Cable,1,14.95,2019-10-09 10:45:00,914 9th St, San Francisco,CA,94016 +267435,AA Batteries (4-pack),1,3.84,2019-10-09 10:45:00,914 9th St, San Francisco,CA,94016 +267436,Wired Headphones,1,11.99,2019-10-22 19:37:00,824 Center St, New York City,NY,10001 +267437,ThinkPad Laptop,1,999.99,2019-10-08 12:09:00,512 Church St, San Francisco,CA,94016 +267438,Apple Airpods Headphones,1,150.0,2019-10-13 01:35:00,74 6th St, San Francisco,CA,94016 +267439,USB-C Charging Cable,1,11.95,2019-10-23 19:11:00,861 Cherry St, Los Angeles,CA,90001 +267440,USB-C Charging Cable,1,11.95,2019-10-25 21:36:00,867 Center St, San Francisco,CA,94016 +267441,20in Monitor,1,109.99,2019-10-12 14:10:00,599 Willow St, Dallas,TX,75001 +267442,AAA Batteries (4-pack),1,2.99,2019-10-02 06:20:00,917 Meadow St, Seattle,WA,98101 +267443,Vareebadd Phone,1,400.0,2019-10-16 09:55:00,339 Forest St, New York City,NY,10001 +267443,USB-C Charging Cable,1,11.95,2019-10-16 09:55:00,339 Forest St, New York City,NY,10001 +267444,Wired Headphones,1,11.99,2019-10-25 16:55:00,648 8th St, San Francisco,CA,94016 +267444,ThinkPad Laptop,1,999.99,2019-10-25 16:55:00,648 8th St, San Francisco,CA,94016 +267445,AA Batteries (4-pack),1,3.84,2019-10-20 10:16:00,627 Jefferson St, Austin,TX,73301 +267446,AAA Batteries (4-pack),2,2.99,2019-10-24 11:26:00,173 4th St, Los Angeles,CA,90001 +267447,AA Batteries (4-pack),1,3.84,2019-10-20 09:01:00,689 Johnson St, San Francisco,CA,94016 +267448,Bose SoundSport Headphones,1,99.99,2019-10-13 18:03:00,348 Center St, Los Angeles,CA,90001 +267449,Lightning Charging Cable,1,14.95,2019-10-03 19:31:00,372 Spruce St, Portland,OR,97035 +267450,27in FHD Monitor,1,149.99,2019-10-22 09:18:00,647 Sunset St, New York City,NY,10001 +267451,Lightning Charging Cable,1,14.95,2019-10-23 14:28:00,262 7th St, Los Angeles,CA,90001 +267452,Wired Headphones,1,11.99,2019-10-03 01:32:00,222 Sunset St, Los Angeles,CA,90001 +267453,Lightning Charging Cable,1,14.95,2019-10-03 16:58:00,766 7th St, Boston,MA,02215 +267454,Bose SoundSport Headphones,1,99.99,2019-10-18 11:45:00,429 Main St, San Francisco,CA,94016 +267455,Bose SoundSport Headphones,2,99.99,2019-10-23 14:45:00,984 Cedar St, San Francisco,CA,94016 +267456,27in FHD Monitor,1,149.99,2019-10-04 19:23:00,597 4th St, Boston,MA,02215 +267457,USB-C Charging Cable,2,11.95,2019-10-08 08:55:00,246 Hill St, Boston,MA,02215 +267458,USB-C Charging Cable,1,11.95,2019-10-10 15:31:00,19 Lakeview St, Los Angeles,CA,90001 +267459,27in FHD Monitor,1,149.99,2019-10-01 16:47:00,283 Ridge St, San Francisco,CA,94016 +267460,Lightning Charging Cable,1,14.95,2019-10-31 08:20:00,18 Jackson St, Austin,TX,73301 +267461,Apple Airpods Headphones,1,150.0,2019-10-03 20:16:00,643 Park St, Dallas,TX,75001 +267462,AA Batteries (4-pack),1,3.84,2019-10-16 11:35:00,755 Hill St, Seattle,WA,98101 +267463,Flatscreen TV,1,300.0,2019-10-01 17:16:00,862 Lincoln St, Los Angeles,CA,90001 +267464,Vareebadd Phone,1,400.0,2019-10-07 20:59:00,819 West St, Atlanta,GA,30301 +267464,USB-C Charging Cable,2,11.95,2019-10-07 20:59:00,819 West St, Atlanta,GA,30301 +267465,Apple Airpods Headphones,1,150.0,2019-10-25 12:53:00,402 Maple St, Austin,TX,73301 +267466,Apple Airpods Headphones,1,150.0,2019-10-24 00:21:00,296 River St, Boston,MA,02215 +267467,Lightning Charging Cable,1,14.95,2019-10-12 07:57:00,750 4th St, Los Angeles,CA,90001 +267468,34in Ultrawide Monitor,1,379.99,2019-10-28 14:36:00,890 4th St, Atlanta,GA,30301 +267469,Wired Headphones,1,11.99,2019-10-10 13:46:00,708 2nd St, San Francisco,CA,94016 +267470,Flatscreen TV,1,300.0,2019-10-16 21:35:00,766 Church St, Boston,MA,02215 +267471,AA Batteries (4-pack),2,3.84,2019-10-19 10:23:00,433 Lakeview St, San Francisco,CA,94016 +267472,AAA Batteries (4-pack),3,2.99,2019-10-18 20:21:00,991 6th St, New York City,NY,10001 +267473,Bose SoundSport Headphones,1,99.99,2019-10-13 19:12:00,907 Spruce St, New York City,NY,10001 +267474,Bose SoundSport Headphones,1,99.99,2019-10-08 13:02:00,461 West St, Dallas,TX,75001 +267475,Lightning Charging Cable,1,14.95,2019-10-25 15:15:00,671 11th St, Portland,ME,04101 +267476,27in 4K Gaming Monitor,1,389.99,2019-10-25 18:36:00,832 10th St, San Francisco,CA,94016 +267477,Flatscreen TV,1,300.0,2019-10-30 22:25:00,299 Cedar St, San Francisco,CA,94016 +267478,Apple Airpods Headphones,1,150.0,2019-10-24 21:51:00,781 Wilson St, Dallas,TX,75001 +267479,USB-C Charging Cable,2,11.95,2019-10-22 07:32:00,706 Chestnut St, Portland,OR,97035 +267480,Flatscreen TV,1,300.0,2019-10-22 18:01:00,278 Hill St, Los Angeles,CA,90001 +267481,iPhone,1,700.0,2019-10-29 12:43:00,586 6th St, Austin,TX,73301 +267482,Bose SoundSport Headphones,1,99.99,2019-10-19 18:00:00,650 West St, San Francisco,CA,94016 +267483,Apple Airpods Headphones,1,150.0,2019-10-31 21:21:00,559 Walnut St, Dallas,TX,75001 +267484,Macbook Pro Laptop,1,1700.0,2019-10-20 20:20:00,401 11th St, Boston,MA,02215 +267485,USB-C Charging Cable,1,11.95,2019-10-18 14:38:00,417 2nd St, San Francisco,CA,94016 +267486,AA Batteries (4-pack),1,3.84,2019-10-24 11:41:00,964 Washington St, San Francisco,CA,94016 +267487,27in FHD Monitor,1,149.99,2019-10-04 17:22:00,22 7th St, Los Angeles,CA,90001 +267488,USB-C Charging Cable,1,11.95,2019-10-31 17:52:00,768 Church St, San Francisco,CA,94016 +267489,Lightning Charging Cable,1,14.95,2019-10-27 16:48:00,952 2nd St, Boston,MA,02215 +267490,Wired Headphones,1,11.99,2019-10-01 16:36:00,22 Main St, Los Angeles,CA,90001 +267491,AAA Batteries (4-pack),1,2.99,2019-10-27 15:45:00,622 Hill St, Austin,TX,73301 +267492,27in 4K Gaming Monitor,1,389.99,2019-10-19 13:55:00,168 Hill St, Dallas,TX,75001 +267493,Apple Airpods Headphones,1,150.0,2019-10-17 11:11:00,178 Johnson St, Atlanta,GA,30301 +267494,AA Batteries (4-pack),1,3.84,2019-10-19 20:40:00,186 Forest St, New York City,NY,10001 +267495,34in Ultrawide Monitor,1,379.99,2019-10-01 20:42:00,194 Main St, Los Angeles,CA,90001 +267496,Flatscreen TV,1,300.0,2019-10-26 09:27:00,242 Adams St, Portland,OR,97035 +267497,AA Batteries (4-pack),1,3.84,2019-10-21 10:27:00,955 Forest St, Boston,MA,02215 +267498,AA Batteries (4-pack),1,3.84,2019-10-01 19:44:00,76 Ridge St, San Francisco,CA,94016 +267499,USB-C Charging Cable,2,11.95,2019-10-15 02:28:00,773 Lakeview St, Atlanta,GA,30301 +267500,USB-C Charging Cable,1,11.95,2019-10-13 20:04:00,153 Adams St, San Francisco,CA,94016 +267501,AAA Batteries (4-pack),3,2.99,2019-10-07 13:19:00,497 Lincoln St, Boston,MA,02215 +267502,USB-C Charging Cable,1,11.95,2019-10-13 10:29:00,539 Main St, Portland,OR,97035 +267503,AAA Batteries (4-pack),1,2.99,2019-10-14 09:21:00,303 Johnson St, Portland,OR,97035 +267504,Lightning Charging Cable,1,14.95,2019-10-24 14:47:00,482 Sunset St, San Francisco,CA,94016 +267505,USB-C Charging Cable,1,11.95,2019-10-13 11:58:00,828 Highland St, Portland,OR,97035 +267506,USB-C Charging Cable,1,11.95,2019-10-10 22:10:00,215 Lincoln St, Seattle,WA,98101 +267507,Apple Airpods Headphones,1,150.0,2019-10-08 10:40:00,422 Hill St, San Francisco,CA,94016 +267508,USB-C Charging Cable,1,11.95,2019-10-18 19:41:00,466 4th St, Atlanta,GA,30301 +267509,Apple Airpods Headphones,1,150.0,2019-10-14 12:02:00,213 Willow St, Atlanta,GA,30301 +267510,27in 4K Gaming Monitor,1,389.99,2019-10-17 20:16:00,310 Forest St, San Francisco,CA,94016 +267511,AA Batteries (4-pack),1,3.84,2019-10-15 11:07:00,743 Walnut St, Los Angeles,CA,90001 +267512,Macbook Pro Laptop,1,1700.0,2019-10-11 11:29:00,503 11th St, New York City,NY,10001 +267512,Wired Headphones,1,11.99,2019-10-11 11:29:00,503 11th St, New York City,NY,10001 +267513,27in 4K Gaming Monitor,1,389.99,2019-10-25 11:15:00,891 2nd St, Los Angeles,CA,90001 +267514,AA Batteries (4-pack),1,3.84,2019-10-30 09:04:00,923 5th St, Los Angeles,CA,90001 +267515,27in FHD Monitor,1,149.99,2019-10-26 09:27:00,693 Church St, Atlanta,GA,30301 +267516,27in FHD Monitor,1,149.99,2019-10-30 20:03:00,619 Adams St, San Francisco,CA,94016 +267517,27in FHD Monitor,1,149.99,2019-10-25 11:12:00,727 7th St, Seattle,WA,98101 +267518,iPhone,1,700.0,2019-10-03 19:17:00,435 10th St, Los Angeles,CA,90001 +267518,Lightning Charging Cable,1,14.95,2019-10-03 19:17:00,435 10th St, Los Angeles,CA,90001 +267519,AAA Batteries (4-pack),2,2.99,2019-10-11 15:24:00,659 Cedar St, Austin,TX,73301 +267520,Flatscreen TV,1,300.0,2019-10-04 18:40:00,126 Chestnut St, San Francisco,CA,94016 +267521,Flatscreen TV,1,300.0,2019-10-04 12:55:00,668 11th St, Austin,TX,73301 +267522,AA Batteries (4-pack),1,3.84,2019-10-19 14:25:00,427 Center St, New York City,NY,10001 +267523,Lightning Charging Cable,1,14.95,2019-10-08 18:26:00,651 Forest St, San Francisco,CA,94016 +267524,USB-C Charging Cable,1,11.95,2019-10-14 07:22:00,775 South St, New York City,NY,10001 +267525,Lightning Charging Cable,1,14.95,2019-10-19 01:51:00,638 12th St, Portland,OR,97035 +267526,AAA Batteries (4-pack),1,2.99,2019-10-01 19:04:00,795 7th St, Los Angeles,CA,90001 +267527,ThinkPad Laptop,1,999.99,2019-10-05 18:14:00,611 2nd St, Los Angeles,CA,90001 +267528,USB-C Charging Cable,1,11.95,2019-10-19 14:41:00,367 Lake St, Seattle,WA,98101 +267529,USB-C Charging Cable,1,11.95,2019-10-13 17:14:00,513 Chestnut St, New York City,NY,10001 +267530,Flatscreen TV,1,300.0,2019-10-19 08:26:00,944 13th St, San Francisco,CA,94016 +267531,Google Phone,1,600.0,2019-10-06 07:24:00,258 Pine St, Dallas,TX,75001 +267532,AAA Batteries (4-pack),1,2.99,2019-10-25 20:31:00,474 9th St, Boston,MA,02215 +267533,Lightning Charging Cable,2,14.95,2019-10-23 10:12:00,865 Lakeview St, Los Angeles,CA,90001 +267534,27in FHD Monitor,1,149.99,2019-10-01 16:55:00,884 Hill St, Portland,OR,97035 +267535,USB-C Charging Cable,1,11.95,2019-10-11 10:25:00,908 Forest St, Atlanta,GA,30301 +267536,20in Monitor,1,109.99,2019-10-05 12:01:00,808 Main St, Austin,TX,73301 +267537,USB-C Charging Cable,1,11.95,2019-10-01 15:31:00,962 Spruce St, Seattle,WA,98101 +267538,USB-C Charging Cable,1,11.95,2019-10-23 14:35:00,163 West St, Los Angeles,CA,90001 +267539,Bose SoundSport Headphones,2,99.99,2019-10-16 15:29:00,200 Chestnut St, Austin,TX,73301 +267540,Lightning Charging Cable,1,14.95,2019-10-27 18:14:00,131 Cedar St, San Francisco,CA,94016 +267541,AA Batteries (4-pack),2,3.84,2019-10-22 06:25:00,384 12th St, Seattle,WA,98101 +267542,Wired Headphones,1,11.99,2019-10-13 22:01:00,612 Maple St, Los Angeles,CA,90001 +267543,Bose SoundSport Headphones,1,99.99,2019-10-06 08:36:00,657 1st St, Austin,TX,73301 +267544,Bose SoundSport Headphones,1,99.99,2019-10-01 17:17:00,777 Church St, Portland,ME,04101 +267545,AA Batteries (4-pack),1,3.84,2019-10-14 18:02:00,471 Meadow St, Dallas,TX,75001 +267546,Bose SoundSport Headphones,1,99.99,2019-10-25 16:59:00,229 Walnut St, Austin,TX,73301 +267547,iPhone,1,700.0,2019-10-05 09:46:00,762 Willow St, Los Angeles,CA,90001 +267548,Macbook Pro Laptop,1,1700.0,2019-10-22 13:59:00,329 Lincoln St, Los Angeles,CA,90001 +267549,Google Phone,1,600.0,2019-10-17 14:09:00,680 Hill St, San Francisco,CA,94016 +267550,27in FHD Monitor,1,149.99,2019-10-30 16:43:00,778 Walnut St, New York City,NY,10001 +267551,Bose SoundSport Headphones,1,99.99,2019-10-08 08:56:00,946 Jefferson St, New York City,NY,10001 +267552,Apple Airpods Headphones,1,150.0,2019-10-08 11:17:00,138 Jefferson St, Boston,MA,02215 +267553,AA Batteries (4-pack),1,3.84,2019-10-30 22:37:00,318 North St, Dallas,TX,75001 +267554,USB-C Charging Cable,1,11.95,2019-10-03 08:10:00,716 5th St, Boston,MA,02215 +267555,Lightning Charging Cable,1,14.95,2019-10-07 16:09:00,411 9th St, San Francisco,CA,94016 +267556,Macbook Pro Laptop,1,1700.0,2019-10-28 17:31:00,713 Hickory St, Los Angeles,CA,90001 +267557,Macbook Pro Laptop,1,1700.0,2019-10-29 16:23:00,862 Pine St, Atlanta,GA,30301 +267558,Wired Headphones,1,11.99,2019-10-21 09:01:00,805 West St, San Francisco,CA,94016 +267559,AAA Batteries (4-pack),1,2.99,2019-10-28 19:11:00,773 Lincoln St, Boston,MA,02215 +267560,Wired Headphones,2,11.99,2019-10-16 11:31:00,708 Cherry St, Los Angeles,CA,90001 +267561,USB-C Charging Cable,1,11.95,2019-10-02 11:11:00,491 Lincoln St, San Francisco,CA,94016 +267562,27in FHD Monitor,1,149.99,2019-10-10 13:07:00,811 Wilson St, Austin,TX,73301 +267563,Wired Headphones,1,11.99,2019-10-29 11:44:00,461 8th St, New York City,NY,10001 +267564,Apple Airpods Headphones,1,150.0,2019-10-21 16:13:00,437 9th St, Seattle,WA,98101 +267565,Lightning Charging Cable,1,14.95,2019-10-30 09:11:00,542 13th St, Boston,MA,02215 +267566,Wired Headphones,1,11.99,2019-10-20 15:59:00,932 4th St, San Francisco,CA,94016 +267567,Apple Airpods Headphones,1,150.0,2019-10-08 19:01:00,568 Johnson St, San Francisco,CA,94016 +267568,Wired Headphones,1,11.99,2019-10-20 18:34:00,831 North St, Boston,MA,02215 +267569,Vareebadd Phone,1,400.0,2019-10-23 22:48:00,338 4th St, Atlanta,GA,30301 +267570,Lightning Charging Cable,1,14.95,2019-10-02 13:50:00,489 Lincoln St, San Francisco,CA,94016 +267571,Apple Airpods Headphones,1,150.0,2019-10-12 11:23:00,632 Jefferson St, Portland,OR,97035 +267572,Lightning Charging Cable,1,14.95,2019-10-23 12:32:00,132 Hill St, Atlanta,GA,30301 +267572,Flatscreen TV,1,300.0,2019-10-23 12:32:00,132 Hill St, Atlanta,GA,30301 +267573,Wired Headphones,4,11.99,2019-10-26 09:24:00,510 Center St, Austin,TX,73301 +267574,Wired Headphones,1,11.99,2019-10-28 13:30:00,951 Madison St, Boston,MA,02215 +267575,Lightning Charging Cable,1,14.95,2019-10-08 14:09:00,20 West St, San Francisco,CA,94016 +267576,Lightning Charging Cable,1,14.95,2019-10-28 20:29:00,128 Elm St, San Francisco,CA,94016 +267577,Google Phone,1,600.0,2019-10-19 17:14:00,654 Pine St, Atlanta,GA,30301 +267578,Lightning Charging Cable,1,14.95,2019-10-02 16:47:00,74 South St, Austin,TX,73301 +267579,AA Batteries (4-pack),1,3.84,2019-10-03 11:19:00,275 6th St, Austin,TX,73301 +267580,Macbook Pro Laptop,1,1700.0,2019-10-31 09:32:00,507 Jackson St, Boston,MA,02215 +267581,Lightning Charging Cable,1,14.95,2019-10-10 16:08:00,721 Jackson St, New York City,NY,10001 +267582,USB-C Charging Cable,1,11.95,2019-10-24 15:47:00,18 Highland St, San Francisco,CA,94016 +267583,Wired Headphones,1,11.99,2019-10-31 23:29:00,174 4th St, Los Angeles,CA,90001 +267584,iPhone,1,700.0,2019-10-12 16:28:00,725 Elm St, Seattle,WA,98101 +267585,USB-C Charging Cable,1,11.95,2019-10-04 17:25:00,633 Johnson St, New York City,NY,10001 +267586,USB-C Charging Cable,2,11.95,2019-10-07 11:25:00,999 Lake St, Austin,TX,73301 +267587,USB-C Charging Cable,1,11.95,2019-10-31 18:19:00,637 Forest St, Boston,MA,02215 +267588,Bose SoundSport Headphones,1,99.99,2019-10-05 15:21:00,993 Church St, Boston,MA,02215 +267589,34in Ultrawide Monitor,1,379.99,2019-10-26 18:28:00,921 5th St, Los Angeles,CA,90001 +267590,Macbook Pro Laptop,1,1700.0,2019-10-23 21:23:00,146 Highland St, Los Angeles,CA,90001 +267591,Google Phone,1,600.0,2019-10-13 22:21:00,422 11th St, New York City,NY,10001 +267591,Wired Headphones,1,11.99,2019-10-13 22:21:00,422 11th St, New York City,NY,10001 +267592,AA Batteries (4-pack),1,3.84,2019-10-02 16:21:00,217 Dogwood St, Dallas,TX,75001 +267593,Bose SoundSport Headphones,1,99.99,2019-10-02 19:33:00,732 Wilson St, Los Angeles,CA,90001 +267594,USB-C Charging Cable,1,11.95,2019-10-22 21:36:00,678 Maple St, Dallas,TX,75001 +267595,AAA Batteries (4-pack),1,2.99,2019-10-14 17:17:00,759 1st St, New York City,NY,10001 +267596,Bose SoundSport Headphones,1,99.99,2019-10-03 17:33:00,989 South St, Portland,OR,97035 +267597,AA Batteries (4-pack),1,3.84,2019-10-23 20:37:00,550 Dogwood St, Portland,ME,04101 +267598,USB-C Charging Cable,1,11.95,2019-10-08 18:23:00,228 Johnson St, New York City,NY,10001 +267599,USB-C Charging Cable,1,11.95,2019-10-29 04:32:00,553 2nd St, Seattle,WA,98101 +267600,Apple Airpods Headphones,1,150.0,2019-10-12 11:08:00,101 2nd St, San Francisco,CA,94016 +267601,Apple Airpods Headphones,1,150.0,2019-10-16 20:20:00,854 Walnut St, San Francisco,CA,94016 +267602,AA Batteries (4-pack),1,3.84,2019-10-05 11:35:00,274 Church St, San Francisco,CA,94016 +267603,Lightning Charging Cable,2,14.95,2019-10-21 12:12:00,153 Jackson St, New York City,NY,10001 +267604,Apple Airpods Headphones,1,150.0,2019-10-07 22:04:00,259 Hickory St, Austin,TX,73301 +267605,Macbook Pro Laptop,1,1700.0,2019-10-11 16:16:00,462 Lincoln St, San Francisco,CA,94016 +267606,AAA Batteries (4-pack),1,2.99,2019-10-04 16:23:00,790 Lake St, Atlanta,GA,30301 +267607,Wired Headphones,1,11.99,2019-10-02 13:53:00,933 7th St, Dallas,TX,75001 +267608,USB-C Charging Cable,1,11.95,2019-10-22 13:21:00,779 7th St, Dallas,TX,75001 +267609,Bose SoundSport Headphones,1,99.99,2019-10-31 13:18:00,490 River St, Seattle,WA,98101 +267610,Apple Airpods Headphones,1,150.0,2019-10-19 18:30:00,237 Pine St, Austin,TX,73301 +267611,Google Phone,1,600.0,2019-10-29 20:21:00,788 4th St, Seattle,WA,98101 +267612,USB-C Charging Cable,1,11.95,2019-10-20 10:24:00,298 Maple St, Portland,OR,97035 +267613,27in FHD Monitor,1,149.99,2019-10-06 15:02:00,138 Lincoln St, Dallas,TX,75001 +267614,27in 4K Gaming Monitor,1,389.99,2019-10-11 20:41:00,732 Walnut St, Seattle,WA,98101 +267615,AAA Batteries (4-pack),1,2.99,2019-10-26 16:14:00,859 Madison St, Portland,OR,97035 +267616,Wired Headphones,1,11.99,2019-10-09 10:29:00,966 Lincoln St, Los Angeles,CA,90001 +267617,Lightning Charging Cable,1,14.95,2019-10-08 21:38:00,251 Main St, Los Angeles,CA,90001 +267618,20in Monitor,1,109.99,2019-10-27 22:29:00,583 Willow St, Portland,ME,04101 +267619,AAA Batteries (4-pack),1,2.99,2019-10-12 17:42:00,17 Cherry St, Los Angeles,CA,90001 +267620,AA Batteries (4-pack),2,3.84,2019-10-18 16:14:00,574 North St, Boston,MA,02215 +267621,Apple Airpods Headphones,1,150.0,2019-10-03 12:51:00,814 12th St, Seattle,WA,98101 +267622,Lightning Charging Cable,1,14.95,2019-10-25 08:14:00,449 South St, Los Angeles,CA,90001 +267623,AAA Batteries (4-pack),1,2.99,2019-10-17 16:46:00,708 Wilson St, New York City,NY,10001 +267624,AAA Batteries (4-pack),2,2.99,2019-10-14 15:06:00,778 Chestnut St, Dallas,TX,75001 +267625,Lightning Charging Cable,1,14.95,2019-10-26 12:30:00,406 Pine St, San Francisco,CA,94016 +267626,AA Batteries (4-pack),1,3.84,2019-10-06 19:40:00,412 6th St, San Francisco,CA,94016 +267627,USB-C Charging Cable,1,11.95,2019-10-13 20:30:00,99 Pine St, New York City,NY,10001 +267628,Lightning Charging Cable,2,14.95,2019-10-26 21:37:00,796 Lake St, Los Angeles,CA,90001 +267629,USB-C Charging Cable,1,11.95,2019-10-29 19:31:00,753 Meadow St, Dallas,TX,75001 +267630,USB-C Charging Cable,1,11.95,2019-10-06 21:32:00,181 Park St, Atlanta,GA,30301 +267631,AAA Batteries (4-pack),1,2.99,2019-10-01 12:58:00,507 West St, San Francisco,CA,94016 +267632,Apple Airpods Headphones,1,150.0,2019-10-08 16:06:00,704 11th St, Atlanta,GA,30301 +267633,AA Batteries (4-pack),1,3.84,2019-10-29 17:24:00,366 River St, Boston,MA,02215 +267634,27in FHD Monitor,1,149.99,2019-10-28 21:18:00,599 Main St, Austin,TX,73301 +267635,Wired Headphones,2,11.99,2019-10-27 21:47:00,747 9th St, San Francisco,CA,94016 +267636,AAA Batteries (4-pack),1,2.99,2019-10-07 17:30:00,103 Johnson St, Atlanta,GA,30301 +267637,AA Batteries (4-pack),4,3.84,2019-10-28 13:28:00,833 Jackson St, Los Angeles,CA,90001 +267638,Flatscreen TV,1,300.0,2019-10-12 09:50:00,618 Maple St, Atlanta,GA,30301 +267639,34in Ultrawide Monitor,1,379.99,2019-10-09 12:45:00,270 Adams St, San Francisco,CA,94016 +267640,AA Batteries (4-pack),1,3.84,2019-10-21 12:04:00,527 Walnut St, New York City,NY,10001 +267641,Lightning Charging Cable,1,14.95,2019-10-01 19:26:00,762 7th St, Portland,ME,04101 +267642,AA Batteries (4-pack),1,3.84,2019-10-04 10:08:00,792 Center St, Portland,OR,97035 +267643,iPhone,1,700.0,2019-10-23 12:25:00,109 Cedar St, San Francisco,CA,94016 +267644,Bose SoundSport Headphones,1,99.99,2019-10-07 00:04:00,953 Jackson St, Portland,OR,97035 +267645,AA Batteries (4-pack),1,3.84,2019-10-08 21:27:00,676 River St, San Francisco,CA,94016 +267646,Lightning Charging Cable,1,14.95,2019-10-10 16:06:00,480 10th St, Dallas,TX,75001 +267647,iPhone,1,700.0,2019-10-07 19:46:00,165 Main St, San Francisco,CA,94016 +267648,Flatscreen TV,1,300.0,2019-10-05 15:18:00,496 6th St, San Francisco,CA,94016 +267649,Apple Airpods Headphones,1,150.0,2019-10-25 17:59:00,227 Lakeview St, San Francisco,CA,94016 +267650,27in FHD Monitor,1,149.99,2019-10-11 12:14:00,754 Maple St, Dallas,TX,75001 +267651,AAA Batteries (4-pack),1,2.99,2019-10-20 21:10:00,358 6th St, San Francisco,CA,94016 +267652,Wired Headphones,1,11.99,2019-10-22 12:20:00,802 Forest St, Seattle,WA,98101 +267653,Apple Airpods Headphones,1,150.0,2019-10-29 11:24:00,733 Madison St, San Francisco,CA,94016 +267654,AAA Batteries (4-pack),1,2.99,2019-10-28 12:07:00,539 Madison St, Los Angeles,CA,90001 +267655,Macbook Pro Laptop,1,1700.0,2019-10-28 01:02:00,324 Jackson St, Atlanta,GA,30301 +267656,Apple Airpods Headphones,1,150.0,2019-10-04 18:27:00,214 River St, New York City,NY,10001 +267657,ThinkPad Laptop,1,999.99,2019-10-25 11:37:00,515 Center St, Austin,TX,73301 +267658,ThinkPad Laptop,1,999.99,2019-10-10 23:31:00,387 Willow St, Seattle,WA,98101 +267659,iPhone,1,700.0,2019-10-11 21:09:00,997 Pine St, Austin,TX,73301 +267659,Lightning Charging Cable,1,14.95,2019-10-11 21:09:00,997 Pine St, Austin,TX,73301 +267660,AAA Batteries (4-pack),1,2.99,2019-10-28 21:57:00,271 Highland St, Austin,TX,73301 +267661,Google Phone,1,600.0,2019-10-21 12:35:00,765 7th St, New York City,NY,10001 +267662,USB-C Charging Cable,1,11.95,2019-10-17 16:54:00,981 Park St, New York City,NY,10001 +267663,27in 4K Gaming Monitor,1,389.99,2019-10-19 00:01:00,28 Lincoln St, Dallas,TX,75001 +267664,USB-C Charging Cable,1,11.95,2019-10-09 17:34:00,573 Washington St, Los Angeles,CA,90001 +267665,USB-C Charging Cable,1,11.95,2019-10-11 16:59:00,767 11th St, New York City,NY,10001 +267666,Lightning Charging Cable,1,14.95,2019-10-02 20:44:00,890 Washington St, Los Angeles,CA,90001 +267667,27in 4K Gaming Monitor,1,389.99,2019-10-02 23:09:00,805 Elm St, Portland,OR,97035 +267668,USB-C Charging Cable,1,11.95,2019-10-23 14:57:00,845 Walnut St, San Francisco,CA,94016 +267669,AA Batteries (4-pack),1,3.84,2019-10-28 21:54:00,875 Johnson St, Dallas,TX,75001 +267670,27in FHD Monitor,1,149.99,2019-10-13 00:17:00,982 Meadow St, San Francisco,CA,94016 +267671,Wired Headphones,1,11.99,2019-10-19 19:03:00,374 Cherry St, Los Angeles,CA,90001 +267672,AA Batteries (4-pack),1,3.84,2019-10-17 21:09:00,864 River St, New York City,NY,10001 +267673,Bose SoundSport Headphones,1,99.99,2019-10-10 21:23:00,812 Park St, New York City,NY,10001 +267674,Wired Headphones,1,11.99,2019-10-24 07:00:00,25 7th St, Seattle,WA,98101 +267675,Wired Headphones,1,11.99,2019-10-26 18:02:00,572 2nd St, San Francisco,CA,94016 +267676,Google Phone,1,600.0,2019-10-04 01:11:00,689 Chestnut St, Atlanta,GA,30301 +267676,Wired Headphones,1,11.99,2019-10-04 01:11:00,689 Chestnut St, Atlanta,GA,30301 +267677,AA Batteries (4-pack),1,3.84,2019-10-29 20:46:00,880 14th St, New York City,NY,10001 +267678,Lightning Charging Cable,2,14.95,2019-10-04 22:13:00,378 9th St, Austin,TX,73301 +267679,iPhone,1,700.0,2019-10-08 08:31:00,812 Dogwood St, Dallas,TX,75001 +267680,Lightning Charging Cable,1,14.95,2019-10-10 13:40:00,691 Forest St, San Francisco,CA,94016 +267681,27in FHD Monitor,1,149.99,2019-10-10 17:13:00,498 Spruce St, Portland,OR,97035 +267682,Bose SoundSport Headphones,1,99.99,2019-10-23 12:46:00,33 Center St, Dallas,TX,75001 +267683,Apple Airpods Headphones,1,150.0,2019-10-14 17:51:00,614 North St, Boston,MA,02215 +267684,27in FHD Monitor,1,149.99,2019-10-17 13:07:00,668 Lakeview St, Los Angeles,CA,90001 +267685,iPhone,1,700.0,2019-10-22 20:03:00,208 North St, Los Angeles,CA,90001 +267686,AAA Batteries (4-pack),1,2.99,2019-10-04 07:58:00,953 Adams St, Los Angeles,CA,90001 +267687,AA Batteries (4-pack),1,3.84,2019-10-25 23:33:00,462 Jackson St, Seattle,WA,98101 +267688,USB-C Charging Cable,1,11.95,2019-10-30 15:30:00,680 River St, Atlanta,GA,30301 +267689,AAA Batteries (4-pack),1,2.99,2019-10-28 01:03:00,348 Highland St, San Francisco,CA,94016 +267690,AAA Batteries (4-pack),1,2.99,2019-10-20 12:21:00,870 Forest St, Portland,OR,97035 +267691,27in 4K Gaming Monitor,1,389.99,2019-10-28 02:57:00,667 Maple St, Portland,OR,97035 +267692,Apple Airpods Headphones,1,150.0,2019-10-03 11:35:00,294 Center St, Atlanta,GA,30301 +267693,Flatscreen TV,1,300.0,2019-10-24 23:36:00,272 Chestnut St, San Francisco,CA,94016 +267694,Lightning Charging Cable,1,14.95,2019-10-11 09:56:00,888 Hickory St, San Francisco,CA,94016 +267695,Bose SoundSport Headphones,1,99.99,2019-10-26 01:07:00,952 Willow St, San Francisco,CA,94016 +267696,Lightning Charging Cable,1,14.95,2019-10-26 15:06:00,649 7th St, Los Angeles,CA,90001 +267697,ThinkPad Laptop,1,999.99,2019-10-23 15:39:00,277 Jefferson St, San Francisco,CA,94016 +267698,Flatscreen TV,1,300.0,2019-10-25 14:44:00,378 2nd St, San Francisco,CA,94016 +267699,USB-C Charging Cable,1,11.95,2019-10-30 11:00:00,143 9th St, New York City,NY,10001 +267700,Lightning Charging Cable,1,14.95,2019-10-11 12:26:00,567 10th St, Atlanta,GA,30301 +267701,27in FHD Monitor,1,149.99,2019-10-13 11:26:00,302 Highland St, Los Angeles,CA,90001 +267702,Lightning Charging Cable,1,14.95,2019-10-15 07:30:00,42 9th St, San Francisco,CA,94016 +267703,Lightning Charging Cable,1,14.95,2019-10-14 17:57:00,657 Forest St, New York City,NY,10001 +267704,Wired Headphones,1,11.99,2019-10-15 14:43:00,138 River St, Atlanta,GA,30301 +267705,Lightning Charging Cable,1,14.95,2019-10-09 14:47:00,632 Center St, San Francisco,CA,94016 +267705,27in 4K Gaming Monitor,1,389.99,2019-10-09 14:47:00,632 Center St, San Francisco,CA,94016 +267706,Wired Headphones,1,11.99,2019-10-15 12:26:00,803 Lincoln St, Los Angeles,CA,90001 +267707,Google Phone,1,600.0,2019-10-21 20:34:00,876 8th St, Atlanta,GA,30301 +267708,AA Batteries (4-pack),1,3.84,2019-10-04 21:41:00,611 12th St, Boston,MA,02215 +267709,Macbook Pro Laptop,1,1700.0,2019-10-22 22:44:00,375 Washington St, New York City,NY,10001 +267710,AAA Batteries (4-pack),1,2.99,2019-10-30 07:28:00,774 Maple St, New York City,NY,10001 +267711,Lightning Charging Cable,1,14.95,2019-10-30 11:45:00,987 Hickory St, Atlanta,GA,30301 +267712,USB-C Charging Cable,1,11.95,2019-10-05 20:11:00,268 Highland St, Seattle,WA,98101 +267713,USB-C Charging Cable,3,11.95,2019-10-01 19:40:00,634 2nd St, Atlanta,GA,30301 +267714,27in FHD Monitor,1,149.99,2019-10-31 03:33:00,283 Elm St, Los Angeles,CA,90001 +267715,Wired Headphones,1,11.99,2019-10-10 22:17:00,992 5th St, Seattle,WA,98101 +267716,Wired Headphones,2,11.99,2019-10-08 02:35:00,449 Pine St, Austin,TX,73301 +267717,Vareebadd Phone,1,400.0,2019-10-29 13:04:00,294 South St, Austin,TX,73301 +267718,Wired Headphones,1,11.99,2019-10-25 16:45:00,95 4th St, Los Angeles,CA,90001 +267719,Wired Headphones,1,11.99,2019-10-09 15:35:00,172 10th St, Los Angeles,CA,90001 +267720,USB-C Charging Cable,1,11.95,2019-10-31 12:31:00,45 1st St, Portland,ME,04101 +267721,Flatscreen TV,1,300.0,2019-10-22 20:44:00,856 Lakeview St, Los Angeles,CA,90001 +267722,AA Batteries (4-pack),1,3.84,2019-10-17 12:57:00,348 Hickory St, Los Angeles,CA,90001 +267723,USB-C Charging Cable,1,11.95,2019-10-31 23:04:00,929 Jackson St, Seattle,WA,98101 +267724,Apple Airpods Headphones,1,150.0,2019-10-11 19:44:00,876 12th St, San Francisco,CA,94016 +267725,27in FHD Monitor,1,149.99,2019-10-18 17:56:00,981 North St, San Francisco,CA,94016 +267726,Wired Headphones,1,11.99,2019-10-17 18:30:00,495 Wilson St, Boston,MA,02215 +267727,AA Batteries (4-pack),1,3.84,2019-10-14 14:52:00,814 Adams St, New York City,NY,10001 +267728,Bose SoundSport Headphones,1,99.99,2019-10-25 23:04:00,208 Cedar St, Boston,MA,02215 +267729,USB-C Charging Cable,1,11.95,2019-10-13 16:45:00,257 Dogwood St, Boston,MA,02215 +267730,Wired Headphones,1,11.99,2019-10-08 18:43:00,352 Elm St, Dallas,TX,75001 +267731,Wired Headphones,1,11.99,2019-10-23 22:14:00,201 Hill St, San Francisco,CA,94016 +267732,Wired Headphones,1,11.99,2019-10-20 11:19:00,932 Willow St, New York City,NY,10001 +267733,27in 4K Gaming Monitor,1,389.99,2019-10-04 21:05:00,90 South St, San Francisco,CA,94016 +267734,AAA Batteries (4-pack),1,2.99,2019-10-21 13:54:00,111 Johnson St, Portland,OR,97035 +267735,AAA Batteries (4-pack),1,2.99,2019-10-09 08:52:00,759 1st St, New York City,NY,10001 +267736,Wired Headphones,1,11.99,2019-10-24 17:20:00,865 8th St, Los Angeles,CA,90001 +267737,Bose SoundSport Headphones,1,99.99,2019-10-13 06:56:00,495 6th St, San Francisco,CA,94016 +267738,USB-C Charging Cable,1,11.95,2019-10-30 18:58:00,840 Highland St, Atlanta,GA,30301 +267739,AAA Batteries (4-pack),1,2.99,2019-10-27 18:09:00,589 4th St, San Francisco,CA,94016 +267740,Wired Headphones,1,11.99,2019-10-18 07:43:00,234 Lincoln St, San Francisco,CA,94016 +267741,Google Phone,1,600.0,2019-10-30 07:01:00,362 West St, Dallas,TX,75001 +267741,Wired Headphones,2,11.99,2019-10-30 07:01:00,362 West St, Dallas,TX,75001 +267742,Lightning Charging Cable,2,14.95,2019-10-30 02:55:00,724 Sunset St, San Francisco,CA,94016 +267743,Wired Headphones,1,11.99,2019-10-13 19:09:00,186 Cherry St, San Francisco,CA,94016 +267744,Wired Headphones,1,11.99,2019-10-11 09:40:00,162 2nd St, Los Angeles,CA,90001 +267745,27in 4K Gaming Monitor,1,389.99,2019-10-09 08:11:00,315 11th St, Boston,MA,02215 +267746,USB-C Charging Cable,1,11.95,2019-10-25 09:36:00,95 6th St, Austin,TX,73301 +267747,AA Batteries (4-pack),1,3.84,2019-10-13 11:00:00,706 Spruce St, Seattle,WA,98101 +267748,Lightning Charging Cable,1,14.95,2019-10-09 17:48:00,268 Cedar St, New York City,NY,10001 +267749,Bose SoundSport Headphones,1,99.99,2019-10-14 10:45:00,51 Cherry St, Dallas,TX,75001 +267750,iPhone,1,700.0,2019-10-19 19:16:00,2 Lake St, Los Angeles,CA,90001 +267750,Wired Headphones,1,11.99,2019-10-19 19:16:00,2 Lake St, Los Angeles,CA,90001 +267751,AA Batteries (4-pack),2,3.84,2019-10-18 17:17:00,946 South St, Los Angeles,CA,90001 +267752,AAA Batteries (4-pack),1,2.99,2019-10-16 21:08:00,834 Park St, Atlanta,GA,30301 +267753,Wired Headphones,1,11.99,2019-10-13 12:07:00,719 Center St, Boston,MA,02215 +267754,Apple Airpods Headphones,1,150.0,2019-10-04 14:07:00,304 Sunset St, Los Angeles,CA,90001 +267755,Lightning Charging Cable,1,14.95,2019-10-28 15:13:00,652 Lakeview St, Los Angeles,CA,90001 +267756,Lightning Charging Cable,1,14.95,2019-10-17 10:44:00,604 North St, Los Angeles,CA,90001 +267757,AAA Batteries (4-pack),4,2.99,2019-10-12 12:35:00,551 Maple St, Austin,TX,73301 +267758,USB-C Charging Cable,1,11.95,2019-10-02 14:27:00,812 Madison St, Austin,TX,73301 +267759,AA Batteries (4-pack),2,3.84,2019-10-02 11:10:00,859 Wilson St, New York City,NY,10001 +267760,AAA Batteries (4-pack),2,2.99,2019-10-16 09:29:00,209 South St, San Francisco,CA,94016 +267761,AAA Batteries (4-pack),1,2.99,2019-10-31 14:13:00,580 Willow St, New York City,NY,10001 +267762,27in FHD Monitor,1,149.99,2019-10-22 13:23:00,278 Park St, Austin,TX,73301 +267763,USB-C Charging Cable,1,11.95,2019-10-17 13:29:00,410 13th St, San Francisco,CA,94016 +267764,AA Batteries (4-pack),1,3.84,2019-10-22 08:56:00,523 Jackson St, Boston,MA,02215 +267764,Apple Airpods Headphones,1,150.0,2019-10-22 08:56:00,523 Jackson St, Boston,MA,02215 +267765,Lightning Charging Cable,1,14.95,2019-10-24 20:42:00,450 Lake St, Dallas,TX,75001 +267766,20in Monitor,1,109.99,2019-10-28 22:52:00,753 Maple St, Seattle,WA,98101 +267767,AAA Batteries (4-pack),1,2.99,2019-10-01 19:08:00,274 Walnut St, Austin,TX,73301 +267768,AA Batteries (4-pack),1,3.84,2019-10-28 09:55:00,212 13th St, Los Angeles,CA,90001 +267769,LG Washing Machine,1,600.0,2019-10-31 21:18:00,431 10th St, Portland,OR,97035 +267770,AA Batteries (4-pack),1,3.84,2019-10-08 17:28:00,221 11th St, New York City,NY,10001 +267771,AA Batteries (4-pack),1,3.84,2019-10-28 12:16:00,283 Meadow St, New York City,NY,10001 +267772,Wired Headphones,1,11.99,2019-10-22 12:54:00,244 1st St, New York City,NY,10001 +267773,Vareebadd Phone,1,400.0,2019-10-25 20:46:00,898 14th St, Dallas,TX,75001 +267774,Bose SoundSport Headphones,1,99.99,2019-10-03 19:10:00,512 2nd St, Los Angeles,CA,90001 +267775,Lightning Charging Cable,2,14.95,2019-10-31 12:21:00,618 Washington St, San Francisco,CA,94016 +267776,AAA Batteries (4-pack),2,2.99,2019-10-30 05:42:00,565 8th St, Los Angeles,CA,90001 +267777,USB-C Charging Cable,1,11.95,2019-10-09 14:46:00,110 Washington St, Atlanta,GA,30301 +267778,Lightning Charging Cable,1,14.95,2019-10-31 07:07:00,316 Walnut St, Atlanta,GA,30301 +267779,Vareebadd Phone,1,400.0,2019-10-13 14:04:00,929 Jefferson St, San Francisco,CA,94016 +267780,AA Batteries (4-pack),1,3.84,2019-10-13 14:38:00,135 Washington St, Los Angeles,CA,90001 +267781,Flatscreen TV,1,300.0,2019-10-25 18:42:00,638 Spruce St, Los Angeles,CA,90001 +267782,20in Monitor,1,109.99,2019-10-29 01:08:00,125 8th St, Austin,TX,73301 +267783,USB-C Charging Cable,1,11.95,2019-10-18 14:34:00,805 Cedar St, Los Angeles,CA,90001 +267784,Lightning Charging Cable,1,14.95,2019-10-07 17:17:00,255 Willow St, Austin,TX,73301 +267785,Wired Headphones,1,11.99,2019-10-06 20:06:00,937 Sunset St, San Francisco,CA,94016 +267786,Macbook Pro Laptop,1,1700.0,2019-10-26 19:38:00,9 Forest St, Seattle,WA,98101 +267787,Vareebadd Phone,1,400.0,2019-10-23 22:07:00,460 Forest St, Los Angeles,CA,90001 +267788,Bose SoundSport Headphones,1,99.99,2019-10-17 11:51:00,783 Jackson St, New York City,NY,10001 +267789,Lightning Charging Cable,1,14.95,2019-10-14 13:25:00,411 10th St, Atlanta,GA,30301 +267790,iPhone,1,700.0,2019-10-28 19:15:00,587 Dogwood St, Atlanta,GA,30301 +267791,AAA Batteries (4-pack),1,2.99,2019-10-27 21:00:00,739 Meadow St, Los Angeles,CA,90001 +267792,USB-C Charging Cable,3,11.95,2019-10-01 19:10:00,220 Johnson St, San Francisco,CA,94016 +267793,20in Monitor,1,109.99,2019-10-21 11:58:00,767 Chestnut St, San Francisco,CA,94016 +267794,Flatscreen TV,1,300.0,2019-10-30 14:07:00,870 8th St, Dallas,TX,75001 +267795,Bose SoundSport Headphones,2,99.99,2019-10-09 22:58:00,817 South St, Atlanta,GA,30301 +267796,USB-C Charging Cable,1,11.95,2019-10-16 12:34:00,52 Johnson St, Austin,TX,73301 +267797,27in FHD Monitor,1,149.99,2019-10-06 18:05:00,697 Park St, Boston,MA,02215 +267798,Wired Headphones,1,11.99,2019-10-25 19:23:00,197 Maple St, Boston,MA,02215 +267798,Lightning Charging Cable,1,14.95,2019-10-25 19:23:00,197 Maple St, Boston,MA,02215 +267799,27in FHD Monitor,1,149.99,2019-10-17 09:08:00,439 Lakeview St, San Francisco,CA,94016 +267800,AAA Batteries (4-pack),1,2.99,2019-10-02 19:54:00,791 Willow St, Portland,ME,04101 +267801,AA Batteries (4-pack),4,3.84,2019-10-25 23:13:00,998 Chestnut St, Dallas,TX,75001 +267802,Apple Airpods Headphones,1,150.0,2019-10-25 19:12:00,395 Ridge St, San Francisco,CA,94016 +267803,AA Batteries (4-pack),1,3.84,2019-10-05 19:47:00,326 10th St, Boston,MA,02215 +267804,AAA Batteries (4-pack),1,2.99,2019-10-06 13:09:00,129 Highland St, San Francisco,CA,94016 +267805,Wired Headphones,1,11.99,2019-10-16 18:41:00,116 Chestnut St, Portland,OR,97035 +267806,27in FHD Monitor,1,149.99,2019-10-02 04:27:00,836 14th St, Portland,OR,97035 +267807,Google Phone,1,600.0,2019-10-06 19:33:00,354 Cedar St, Dallas,TX,75001 +267808,AA Batteries (4-pack),1,3.84,2019-10-23 11:12:00,842 1st St, New York City,NY,10001 +267808,Bose SoundSport Headphones,1,99.99,2019-10-23 11:12:00,842 1st St, New York City,NY,10001 +267809,Apple Airpods Headphones,1,150.0,2019-10-23 09:47:00,146 Hickory St, New York City,NY,10001 +267810,AAA Batteries (4-pack),2,2.99,2019-10-25 18:58:00,430 Park St, Los Angeles,CA,90001 +267811,Apple Airpods Headphones,1,150.0,2019-10-21 12:07:00,110 1st St, San Francisco,CA,94016 +267812,Flatscreen TV,1,300.0,2019-10-11 11:30:00,73 Forest St, San Francisco,CA,94016 +267813,34in Ultrawide Monitor,1,379.99,2019-10-13 13:28:00,384 Walnut St, New York City,NY,10001 +267813,AA Batteries (4-pack),3,3.84,2019-10-13 13:28:00,384 Walnut St, New York City,NY,10001 +267814,Flatscreen TV,1,300.0,2019-10-14 08:25:00,403 4th St, Los Angeles,CA,90001 +267815,Wired Headphones,1,11.99,2019-10-20 20:52:00,944 Lake St, Los Angeles,CA,90001 +267816,iPhone,1,700.0,2019-10-22 18:11:00,773 Madison St, Portland,ME,04101 +267816,Lightning Charging Cable,1,14.95,2019-10-22 18:11:00,773 Madison St, Portland,ME,04101 +267817,AAA Batteries (4-pack),1,2.99,2019-10-19 11:44:00,380 Lincoln St, Los Angeles,CA,90001 +267818,Wired Headphones,1,11.99,2019-10-08 12:02:00,164 10th St, San Francisco,CA,94016 +267819,34in Ultrawide Monitor,1,379.99,2019-10-10 01:07:00,757 6th St, San Francisco,CA,94016 +267820,Apple Airpods Headphones,1,150.0,2019-10-02 21:11:00,467 Madison St, Dallas,TX,75001 +267821,Wired Headphones,1,11.99,2019-10-09 11:45:00,452 7th St, Los Angeles,CA,90001 +267822,27in FHD Monitor,1,149.99,2019-10-08 12:08:00,918 North St, San Francisco,CA,94016 +267823,ThinkPad Laptop,1,999.99,2019-10-29 00:32:00,609 Sunset St, San Francisco,CA,94016 +267824,Bose SoundSport Headphones,1,99.99,2019-10-26 23:14:00,58 Washington St, New York City,NY,10001 +267825,AAA Batteries (4-pack),3,2.99,2019-10-04 11:51:00,50 Meadow St, Austin,TX,73301 +267826,Apple Airpods Headphones,1,150.0,2019-10-14 12:49:00,828 Chestnut St, San Francisco,CA,94016 +267827,AA Batteries (4-pack),1,3.84,2019-10-19 13:36:00,21 Center St, Boston,MA,02215 +267828,Wired Headphones,1,11.99,2019-10-20 13:48:00,162 Jefferson St, San Francisco,CA,94016 +267829,iPhone,1,700.0,2019-10-23 14:53:00,461 12th St, Boston,MA,02215 +267830,27in 4K Gaming Monitor,1,389.99,2019-10-16 21:17:00,3 River St, Seattle,WA,98101 +267831,Wired Headphones,1,11.99,2019-10-20 11:49:00,508 Hickory St, Los Angeles,CA,90001 +267831,Apple Airpods Headphones,1,150.0,2019-10-20 11:49:00,508 Hickory St, Los Angeles,CA,90001 +267832,Macbook Pro Laptop,1,1700.0,2019-10-26 06:37:00,368 Dogwood St, San Francisco,CA,94016 +267833,AAA Batteries (4-pack),3,2.99,2019-10-17 16:11:00,381 Washington St, New York City,NY,10001 +267834,20in Monitor,1,109.99,2019-10-07 21:09:00,863 Highland St, Atlanta,GA,30301 +267835,Google Phone,1,600.0,2019-10-15 11:51:00,431 Sunset St, San Francisco,CA,94016 +267835,Bose SoundSport Headphones,1,99.99,2019-10-15 11:51:00,431 Sunset St, San Francisco,CA,94016 +267836,USB-C Charging Cable,1,11.95,2019-10-08 20:33:00,464 North St, San Francisco,CA,94016 +267837,34in Ultrawide Monitor,1,379.99,2019-10-09 10:12:00,96 Spruce St, Boston,MA,02215 +267837,AAA Batteries (4-pack),3,2.99,2019-10-09 10:12:00,96 Spruce St, Boston,MA,02215 +267838,Wired Headphones,1,11.99,2019-10-31 08:04:00,374 7th St, New York City,NY,10001 +267839,Wired Headphones,1,11.99,2019-10-27 21:11:00,543 Park St, Los Angeles,CA,90001 +267840,USB-C Charging Cable,1,11.95,2019-10-31 06:39:00,945 River St, San Francisco,CA,94016 +267841,AA Batteries (4-pack),2,3.84,2019-10-08 21:05:00,388 8th St, Portland,OR,97035 +267842,Wired Headphones,1,11.99,2019-10-17 21:34:00,658 South St, Boston,MA,02215 +267843,Lightning Charging Cable,1,14.95,2019-10-11 09:08:00,107 Center St, San Francisco,CA,94016 +267844,Lightning Charging Cable,1,14.95,2019-10-28 06:03:00,429 4th St, New York City,NY,10001 +267845,AAA Batteries (4-pack),1,2.99,2019-10-10 19:02:00,173 Madison St, Portland,OR,97035 +267846,27in FHD Monitor,1,149.99,2019-10-13 11:34:00,199 10th St, New York City,NY,10001 +267847,20in Monitor,1,109.99,2019-10-30 04:52:00,718 Hill St, Seattle,WA,98101 +267848,AAA Batteries (4-pack),1,2.99,2019-10-01 14:46:00,860 Hill St, New York City,NY,10001 +267849,Lightning Charging Cable,1,14.95,2019-10-31 09:33:00,200 1st St, Los Angeles,CA,90001 +267850,iPhone,1,700.0,2019-10-12 20:40:00,854 Chestnut St, Los Angeles,CA,90001 +267851,Lightning Charging Cable,1,14.95,2019-10-01 10:24:00,106 Washington St, New York City,NY,10001 +267852,Vareebadd Phone,1,400.0,2019-10-09 07:31:00,195 Spruce St, New York City,NY,10001 +267852,Wired Headphones,1,11.99,2019-10-09 07:31:00,195 Spruce St, New York City,NY,10001 +267853,Bose SoundSport Headphones,1,99.99,2019-10-13 11:28:00,892 Highland St, Boston,MA,02215 +267854,AAA Batteries (4-pack),2,2.99,2019-10-10 16:04:00,262 South St, Dallas,TX,75001 +267855,Lightning Charging Cable,1,14.95,2019-10-29 10:26:00,514 Cherry St, Dallas,TX,75001 +267856,27in FHD Monitor,1,149.99,2019-10-14 10:43:00,591 Lincoln St, Seattle,WA,98101 +267857,Apple Airpods Headphones,1,150.0,2019-10-10 11:39:00,338 4th St, Los Angeles,CA,90001 +267858,AA Batteries (4-pack),2,3.84,2019-10-06 18:02:00,263 Lakeview St, Austin,TX,73301 +267859,Bose SoundSport Headphones,1,99.99,2019-10-21 23:24:00,877 South St, San Francisco,CA,94016 +267860,USB-C Charging Cable,1,11.95,2019-10-25 09:03:00,808 West St, Los Angeles,CA,90001 +267861,Flatscreen TV,1,300.0,2019-10-09 00:29:00,552 Ridge St, Seattle,WA,98101 +267862,LG Washing Machine,1,600.0,2019-10-18 21:49:00,760 Cherry St, Austin,TX,73301 +267863,USB-C Charging Cable,1,11.95,2019-10-19 12:11:00,421 Johnson St, Portland,OR,97035 +267864,Apple Airpods Headphones,1,150.0,2019-10-13 07:23:00,718 Walnut St, Atlanta,GA,30301 +267865,Bose SoundSport Headphones,1,99.99,2019-10-20 17:14:00,561 Walnut St, San Francisco,CA,94016 +267866,Lightning Charging Cable,1,14.95,2019-10-31 18:08:00,605 5th St, New York City,NY,10001 +267867,AAA Batteries (4-pack),1,2.99,2019-10-12 18:11:00,315 11th St, Los Angeles,CA,90001 +267868,Wired Headphones,1,11.99,2019-10-24 11:09:00,573 Church St, San Francisco,CA,94016 +267869,USB-C Charging Cable,1,11.95,2019-10-21 03:50:00,510 Johnson St, Seattle,WA,98101 +267870,27in FHD Monitor,1,149.99,2019-10-01 19:55:00,468 13th St, San Francisco,CA,94016 +267871,Bose SoundSport Headphones,1,99.99,2019-10-09 21:45:00,600 Chestnut St, Boston,MA,02215 +267872,Wired Headphones,2,11.99,2019-10-03 23:16:00,6 Center St, Seattle,WA,98101 +267873,USB-C Charging Cable,1,11.95,2019-10-16 18:24:00,9 1st St, San Francisco,CA,94016 +267874,27in FHD Monitor,1,149.99,2019-10-01 13:40:00,597 Maple St, San Francisco,CA,94016 +267875,Macbook Pro Laptop,1,1700.0,2019-10-29 08:45:00,11 Spruce St, Los Angeles,CA,90001 +267876,USB-C Charging Cable,1,11.95,2019-10-25 21:35:00,798 Spruce St, Boston,MA,02215 +267877,AAA Batteries (4-pack),1,2.99,2019-10-23 18:12:00,827 Cherry St, Atlanta,GA,30301 +267878,AA Batteries (4-pack),1,3.84,2019-10-30 12:27:00,141 Lakeview St, Los Angeles,CA,90001 +267879,Lightning Charging Cable,1,14.95,2019-10-21 20:22:00,329 Center St, New York City,NY,10001 +267880,Lightning Charging Cable,1,14.95,2019-10-03 10:57:00,983 Wilson St, Los Angeles,CA,90001 +267881,AA Batteries (4-pack),1,3.84,2019-10-24 15:34:00,257 Maple St, Seattle,WA,98101 +267882,Apple Airpods Headphones,1,150.0,2019-10-25 18:50:00,231 4th St, San Francisco,CA,94016 +267883,USB-C Charging Cable,1,11.95,2019-10-12 18:29:00,733 Lake St, New York City,NY,10001 +267884,Bose SoundSport Headphones,1,99.99,2019-10-15 12:53:00,728 Spruce St, San Francisco,CA,94016 +267885,Apple Airpods Headphones,1,150.0,2019-10-17 11:51:00,18 Highland St, New York City,NY,10001 +267886,Macbook Pro Laptop,1,1700.0,2019-10-31 09:53:00,879 South St, Austin,TX,73301 +267887,Flatscreen TV,1,300.0,2019-10-05 19:34:00,47 South St, New York City,NY,10001 +267888,Bose SoundSport Headphones,1,99.99,2019-10-10 07:31:00,450 North St, Seattle,WA,98101 +267889,27in 4K Gaming Monitor,1,389.99,2019-10-01 15:10:00,868 Lakeview St, San Francisco,CA,94016 +267890,AAA Batteries (4-pack),3,2.99,2019-10-06 15:33:00,366 10th St, New York City,NY,10001 +267891,34in Ultrawide Monitor,1,379.99,2019-10-20 16:01:00,54 12th St, Atlanta,GA,30301 +267892,Apple Airpods Headphones,1,150.0,2019-10-09 23:46:00,590 Elm St, San Francisco,CA,94016 +267893,USB-C Charging Cable,1,11.95,2019-10-07 06:58:00,754 Adams St, San Francisco,CA,94016 +267894,Lightning Charging Cable,1,14.95,2019-10-16 13:57:00,814 River St, Los Angeles,CA,90001 +267895,AAA Batteries (4-pack),1,2.99,2019-10-06 20:37:00,32 Lake St, Boston,MA,02215 +267896,Apple Airpods Headphones,1,150.0,2019-10-19 11:01:00,528 Lincoln St, Portland,OR,97035 +267897,iPhone,1,700.0,2019-10-18 16:42:00,554 Willow St, Seattle,WA,98101 +267898,USB-C Charging Cable,1,11.95,2019-10-15 08:34:00,165 6th St, Atlanta,GA,30301 +267899,Apple Airpods Headphones,1,150.0,2019-10-30 19:56:00,951 Forest St, San Francisco,CA,94016 +267900,USB-C Charging Cable,1,11.95,2019-10-29 17:38:00,937 11th St, Atlanta,GA,30301 +267901,Wired Headphones,1,11.99,2019-10-14 11:24:00,410 12th St, New York City,NY,10001 +267902,Apple Airpods Headphones,1,150.0,2019-10-19 16:20:00,911 Forest St, San Francisco,CA,94016 +267903,AAA Batteries (4-pack),1,2.99,2019-10-27 08:10:00,887 14th St, Los Angeles,CA,90001 +267904,Lightning Charging Cable,1,14.95,2019-10-24 11:29:00,716 13th St, Atlanta,GA,30301 +267905,Bose SoundSport Headphones,1,99.99,2019-10-25 12:50:00,920 Adams St, Dallas,TX,75001 +267906,Lightning Charging Cable,1,14.95,2019-10-26 12:31:00,666 Madison St, Seattle,WA,98101 +267906,27in FHD Monitor,1,149.99,2019-10-26 12:31:00,666 Madison St, Seattle,WA,98101 +267907,ThinkPad Laptop,1,999.99,2019-10-31 14:50:00,929 5th St, Los Angeles,CA,90001 +267908,Lightning Charging Cable,1,14.95,2019-10-24 08:54:00,404 Park St, Seattle,WA,98101 +267909,AAA Batteries (4-pack),4,2.99,2019-10-19 16:21:00,175 8th St, San Francisco,CA,94016 +267910,Google Phone,1,600.0,2019-10-02 10:24:00,321 Dogwood St, Boston,MA,02215 +267911,Apple Airpods Headphones,1,150.0,2019-10-18 18:57:00,186 2nd St, Seattle,WA,98101 +267912,Macbook Pro Laptop,1,1700.0,2019-10-25 11:53:00,47 Cherry St, San Francisco,CA,94016 +267913,Macbook Pro Laptop,1,1700.0,2019-10-02 21:26:00,905 Chestnut St, Boston,MA,02215 +267914,AA Batteries (4-pack),1,3.84,2019-10-16 15:45:00,355 10th St, Portland,OR,97035 +267915,ThinkPad Laptop,1,999.99,2019-10-24 22:45:00,562 West St, Boston,MA,02215 +267916,AA Batteries (4-pack),1,3.84,2019-10-22 13:44:00,83 Forest St, New York City,NY,10001 +267917,AA Batteries (4-pack),1,3.84,2019-10-23 22:26:00,767 Main St, Boston,MA,02215 +267918,Lightning Charging Cable,1,14.95,2019-10-09 12:32:00,868 Hill St, Seattle,WA,98101 +267919,Wired Headphones,1,11.99,2019-10-13 18:16:00,554 5th St, New York City,NY,10001 +267920,Wired Headphones,1,11.99,2019-10-14 14:54:00,208 Main St, Dallas,TX,75001 +267920,AA Batteries (4-pack),1,3.84,2019-10-14 14:54:00,208 Main St, Dallas,TX,75001 +267921,USB-C Charging Cable,1,11.95,2019-10-31 23:51:00,344 Center St, Boston,MA,02215 +267922,AA Batteries (4-pack),1,3.84,2019-10-23 11:29:00,106 Lake St, San Francisco,CA,94016 +267923,Wired Headphones,1,11.99,2019-10-23 11:16:00,105 2nd St, Seattle,WA,98101 +267924,AA Batteries (4-pack),2,3.84,2019-10-18 23:00:00,940 Ridge St, Boston,MA,02215 +267925,Lightning Charging Cable,1,14.95,2019-10-01 17:26:00,326 Park St, New York City,NY,10001 +267926,Wired Headphones,1,11.99,2019-10-19 11:05:00,165 Johnson St, Dallas,TX,75001 +267927,Flatscreen TV,1,300.0,2019-10-12 11:02:00,754 Elm St, Los Angeles,CA,90001 +267928,Wired Headphones,1,11.99,2019-10-08 08:37:00,714 Chestnut St, Boston,MA,02215 +267929,Bose SoundSport Headphones,1,99.99,2019-10-13 20:31:00,899 Lake St, Dallas,TX,75001 +267930,AA Batteries (4-pack),1,3.84,2019-10-06 12:37:00,499 Main St, Portland,OR,97035 +267931,20in Monitor,1,109.99,2019-10-29 09:38:00,52 Madison St, San Francisco,CA,94016 +267932,AAA Batteries (4-pack),1,2.99,2019-10-22 11:47:00,72 Jefferson St, San Francisco,CA,94016 +267933,AAA Batteries (4-pack),2,2.99,2019-10-05 20:59:00,474 Wilson St, Austin,TX,73301 +267934,iPhone,1,700.0,2019-10-23 19:38:00,74 Meadow St, Los Angeles,CA,90001 +267935,AA Batteries (4-pack),1,3.84,2019-10-17 13:19:00,432 13th St, Boston,MA,02215 +267936,AA Batteries (4-pack),1,3.84,2019-10-21 16:34:00,872 4th St, Los Angeles,CA,90001 +267937,ThinkPad Laptop,1,999.99,2019-10-29 12:48:00,533 Hill St, San Francisco,CA,94016 +267938,AA Batteries (4-pack),2,3.84,2019-10-11 19:02:00,145 Chestnut St, Dallas,TX,75001 +267939,34in Ultrawide Monitor,1,379.99,2019-10-05 15:13:00,226 7th St, Dallas,TX,75001 +267940,27in 4K Gaming Monitor,1,389.99,2019-10-09 19:24:00,553 Walnut St, Seattle,WA,98101 +267941,Apple Airpods Headphones,1,150.0,2019-10-10 12:53:00,699 River St, Boston,MA,02215 +267942,USB-C Charging Cable,2,11.95,2019-10-14 16:06:00,756 Wilson St, Portland,OR,97035 +267943,Lightning Charging Cable,1,14.95,2019-10-19 16:34:00,386 South St, Los Angeles,CA,90001 +267944,Wired Headphones,1,11.99,2019-10-15 16:28:00,469 Madison St, Los Angeles,CA,90001 +267945,Wired Headphones,1,11.99,2019-10-22 16:06:00,669 Pine St, San Francisco,CA,94016 +267946,Google Phone,1,600.0,2019-10-12 12:14:00,146 14th St, Portland,OR,97035 +267947,Wired Headphones,1,11.99,2019-10-10 21:50:00,158 Meadow St, Dallas,TX,75001 +267948,AAA Batteries (4-pack),1,2.99,2019-10-24 22:49:00,47 11th St, New York City,NY,10001 +267949,34in Ultrawide Monitor,1,379.99,2019-10-14 15:47:00,295 Lakeview St, Los Angeles,CA,90001 +267950,Bose SoundSport Headphones,1,99.99,2019-10-18 11:52:00,923 8th St, Atlanta,GA,30301 +267951,AAA Batteries (4-pack),1,2.99,2019-10-02 09:23:00,163 Jackson St, Portland,OR,97035 +267952,Apple Airpods Headphones,1,150.0,2019-10-01 23:30:00,723 Highland St, Atlanta,GA,30301 +267953,Apple Airpods Headphones,1,150.0,2019-10-20 08:31:00,790 West St, San Francisco,CA,94016 +267954,34in Ultrawide Monitor,1,379.99,2019-10-26 11:14:00,440 Center St, Seattle,WA,98101 +267955,AA Batteries (4-pack),1,3.84,2019-10-23 10:39:00,314 12th St, Los Angeles,CA,90001 +267956,iPhone,1,700.0,2019-10-28 11:01:00,912 Washington St, Seattle,WA,98101 +267956,Lightning Charging Cable,1,14.95,2019-10-28 11:01:00,912 Washington St, Seattle,WA,98101 +267957,Wired Headphones,1,11.99,2019-10-20 13:02:00,610 North St, San Francisco,CA,94016 +267957,27in FHD Monitor,1,149.99,2019-10-20 13:02:00,610 North St, San Francisco,CA,94016 +267958,Wired Headphones,2,11.99,2019-10-04 17:37:00,740 8th St, Los Angeles,CA,90001 +267959,Apple Airpods Headphones,1,150.0,2019-10-07 16:26:00,973 Dogwood St, Dallas,TX,75001 +267960,Google Phone,1,600.0,2019-10-04 23:27:00,195 Lincoln St, Seattle,WA,98101 +267961,Bose SoundSport Headphones,1,99.99,2019-10-30 15:13:00,587 Forest St, San Francisco,CA,94016 +267962,AA Batteries (4-pack),1,3.84,2019-10-23 10:04:00,928 Jefferson St, Austin,TX,73301 +267963,AAA Batteries (4-pack),1,2.99,2019-10-12 10:25:00,442 Johnson St, San Francisco,CA,94016 +267964,USB-C Charging Cable,1,11.95,2019-10-20 15:37:00,726 Lake St, Portland,ME,04101 +267965,USB-C Charging Cable,1,11.95,2019-10-20 13:11:00,275 7th St, San Francisco,CA,94016 +267966,Apple Airpods Headphones,1,150.0,2019-10-04 14:30:00,985 Johnson St, Portland,OR,97035 +267967,AAA Batteries (4-pack),1,2.99,2019-10-10 11:53:00,951 Hickory St, San Francisco,CA,94016 +267968,27in 4K Gaming Monitor,1,389.99,2019-10-28 19:44:00,699 Lincoln St, Los Angeles,CA,90001 +267969,Wired Headphones,1,11.99,2019-10-30 16:50:00,760 Adams St, New York City,NY,10001 +267970,AAA Batteries (4-pack),1,2.99,2019-10-05 17:10:00,810 Elm St, Dallas,TX,75001 +267971,USB-C Charging Cable,1,11.95,2019-10-28 00:18:00,992 Lake St, Los Angeles,CA,90001 +267972,AA Batteries (4-pack),1,3.84,2019-10-09 17:36:00,945 Park St, Austin,TX,73301 +267973,AAA Batteries (4-pack),1,2.99,2019-10-09 18:55:00,79 Willow St, Atlanta,GA,30301 +267974,AA Batteries (4-pack),1,3.84,2019-10-07 06:54:00,56 South St, Dallas,TX,75001 +267975,Lightning Charging Cable,1,14.95,2019-10-10 21:03:00,444 River St, Boston,MA,02215 +267976,AAA Batteries (4-pack),1,2.99,2019-10-10 13:15:00,2 Lake St, Atlanta,GA,30301 +267977,Flatscreen TV,1,300.0,2019-10-24 10:29:00,274 Maple St, Atlanta,GA,30301 +267978,Wired Headphones,1,11.99,2019-10-25 21:37:00,289 Ridge St, Boston,MA,02215 +267979,27in FHD Monitor,1,149.99,2019-10-18 19:17:00,94 Cedar St, Seattle,WA,98101 +267980,20in Monitor,1,109.99,2019-10-26 14:46:00,282 5th St, Los Angeles,CA,90001 +267981,Lightning Charging Cable,1,14.95,2019-10-30 01:03:00,185 4th St, Austin,TX,73301 +267982,Bose SoundSport Headphones,1,99.99,2019-10-02 01:05:00,178 Wilson St, New York City,NY,10001 +267983,AAA Batteries (4-pack),1,2.99,2019-10-16 17:29:00,61 Pine St, Portland,OR,97035 +267984,iPhone,1,700.0,2019-10-04 21:40:00,651 Lake St, New York City,NY,10001 +267985,Google Phone,1,600.0,2019-10-17 18:18:00,196 Pine St, Atlanta,GA,30301 +267986,AA Batteries (4-pack),2,3.84,2019-10-08 18:53:00,496 8th St, Boston,MA,02215 +267987,Apple Airpods Headphones,1,150.0,2019-10-09 19:41:00,594 Cedar St, Seattle,WA,98101 +267988,Apple Airpods Headphones,1,150.0,2019-10-12 19:26:00,188 Main St, Dallas,TX,75001 +267989,Lightning Charging Cable,1,14.95,2019-10-06 09:53:00,331 Madison St, San Francisco,CA,94016 +267990,AAA Batteries (4-pack),1,2.99,2019-10-27 01:11:00,13 Washington St, New York City,NY,10001 +267991,Lightning Charging Cable,1,14.95,2019-10-07 17:58:00,456 Spruce St, Seattle,WA,98101 +267992,34in Ultrawide Monitor,1,379.99,2019-10-25 22:54:00,884 Johnson St, Los Angeles,CA,90001 +267993,27in FHD Monitor,1,149.99,2019-10-03 21:27:00,465 Forest St, Seattle,WA,98101 +267994,AA Batteries (4-pack),1,3.84,2019-10-09 20:56:00,542 Forest St, Austin,TX,73301 +267995,AA Batteries (4-pack),1,3.84,2019-10-24 13:15:00,777 4th St, New York City,NY,10001 +267996,USB-C Charging Cable,1,11.95,2019-10-14 15:13:00,721 Cherry St, Boston,MA,02215 +267997,AAA Batteries (4-pack),1,2.99,2019-10-08 21:47:00,632 Dogwood St, San Francisco,CA,94016 +267998,Apple Airpods Headphones,1,150.0,2019-10-12 12:29:00,535 Forest St, New York City,NY,10001 +267999,Bose SoundSport Headphones,1,99.99,2019-10-09 11:42:00,886 Lincoln St, Dallas,TX,75001 +268000,27in FHD Monitor,1,149.99,2019-10-21 01:45:00,742 Spruce St, San Francisco,CA,94016 +268001,AA Batteries (4-pack),1,3.84,2019-10-17 10:43:00,653 Lake St, Seattle,WA,98101 +268002,Bose SoundSport Headphones,1,99.99,2019-10-28 20:16:00,81 Lincoln St, Boston,MA,02215 +268003,Apple Airpods Headphones,1,150.0,2019-10-15 08:49:00,227 12th St, Atlanta,GA,30301 +268004,Flatscreen TV,1,300.0,2019-10-28 13:04:00,643 5th St, Los Angeles,CA,90001 +268005,27in FHD Monitor,1,149.99,2019-10-04 14:59:00,415 1st St, Atlanta,GA,30301 +268006,USB-C Charging Cable,1,11.95,2019-10-10 16:05:00,344 9th St, New York City,NY,10001 +268007,AA Batteries (4-pack),1,3.84,2019-10-16 07:05:00,809 1st St, San Francisco,CA,94016 +268008,27in FHD Monitor,1,149.99,2019-10-03 13:43:00,775 South St, San Francisco,CA,94016 +268009,Lightning Charging Cable,1,14.95,2019-10-26 13:19:00,659 1st St, San Francisco,CA,94016 +268010,Bose SoundSport Headphones,1,99.99,2019-10-19 06:21:00,678 Chestnut St, Los Angeles,CA,90001 +268011,Apple Airpods Headphones,1,150.0,2019-10-26 19:50:00,664 9th St, Dallas,TX,75001 +268012,Lightning Charging Cable,2,14.95,2019-10-13 12:03:00,855 Highland St, Atlanta,GA,30301 +268012,Lightning Charging Cable,1,14.95,2019-10-13 12:03:00,855 Highland St, Atlanta,GA,30301 +268013,Apple Airpods Headphones,1,150.0,2019-10-10 10:38:00,852 Park St, San Francisco,CA,94016 +268014,Google Phone,1,600.0,2019-10-03 16:46:00,502 Pine St, San Francisco,CA,94016 +268015,Macbook Pro Laptop,1,1700.0,2019-10-17 18:33:00,972 2nd St, New York City,NY,10001 +268016,AA Batteries (4-pack),1,3.84,2019-10-19 16:41:00,572 Johnson St, Los Angeles,CA,90001 +268017,Lightning Charging Cable,1,14.95,2019-10-21 17:46:00,939 Johnson St, San Francisco,CA,94016 +268018,27in 4K Gaming Monitor,1,389.99,2019-10-11 15:21:00,13 Highland St, Boston,MA,02215 +268019,34in Ultrawide Monitor,1,379.99,2019-10-13 13:02:00,954 Park St, Los Angeles,CA,90001 +268020,Wired Headphones,1,11.99,2019-10-03 13:31:00,327 Willow St, Los Angeles,CA,90001 +268021,AA Batteries (4-pack),2,3.84,2019-10-22 15:38:00,22 Lakeview St, Dallas,TX,75001 +268021,20in Monitor,1,109.99,2019-10-22 15:38:00,22 Lakeview St, Dallas,TX,75001 +268022,USB-C Charging Cable,1,11.95,2019-10-03 19:02:00,6 Cherry St, Portland,OR,97035 +268023,AA Batteries (4-pack),1,3.84,2019-10-22 13:23:00,911 9th St, New York City,NY,10001 +268024,Wired Headphones,1,11.99,2019-10-03 16:53:00,454 West St, San Francisco,CA,94016 +268025,AA Batteries (4-pack),2,3.84,2019-10-23 13:25:00,842 Spruce St, Austin,TX,73301 +268026,Apple Airpods Headphones,1,150.0,2019-10-10 20:59:00,233 Cherry St, San Francisco,CA,94016 +268027,Bose SoundSport Headphones,1,99.99,2019-10-26 19:14:00,709 Maple St, Dallas,TX,75001 +268028,Lightning Charging Cable,1,14.95,2019-10-13 23:36:00,923 9th St, Los Angeles,CA,90001 +268029,USB-C Charging Cable,2,11.95,2019-10-22 15:06:00,368 Washington St, Los Angeles,CA,90001 +268030,iPhone,1,700.0,2019-10-21 19:11:00,701 Hill St, Los Angeles,CA,90001 +268030,Lightning Charging Cable,1,14.95,2019-10-21 19:11:00,701 Hill St, Los Angeles,CA,90001 +268031,ThinkPad Laptop,1,999.99,2019-10-17 21:58:00,79 Center St, San Francisco,CA,94016 +268032,20in Monitor,1,109.99,2019-10-13 15:42:00,624 Jefferson St, Austin,TX,73301 +268033,USB-C Charging Cable,1,11.95,2019-10-05 21:58:00,859 13th St, San Francisco,CA,94016 +268034,USB-C Charging Cable,1,11.95,2019-10-02 21:35:00,55 10th St, Seattle,WA,98101 +268035,AAA Batteries (4-pack),3,2.99,2019-10-07 13:40:00,542 West St, Seattle,WA,98101 +268036,AAA Batteries (4-pack),1,2.99,2019-10-01 09:58:00,252 Willow St, Seattle,WA,98101 +268037,Vareebadd Phone,1,400.0,2019-10-06 21:32:00,36 7th St, Portland,OR,97035 +268037,Wired Headphones,1,11.99,2019-10-06 21:32:00,36 7th St, Portland,OR,97035 +268038,Apple Airpods Headphones,1,150.0,2019-10-13 07:15:00,933 Maple St, New York City,NY,10001 +268039,AAA Batteries (4-pack),1,2.99,2019-10-08 19:47:00,669 South St, New York City,NY,10001 +268040,AA Batteries (4-pack),1,3.84,2019-10-16 14:53:00,284 11th St, Atlanta,GA,30301 +268041,Apple Airpods Headphones,1,150.0,2019-10-06 10:26:00,456 Ridge St, San Francisco,CA,94016 +268041,Bose SoundSport Headphones,1,99.99,2019-10-06 10:26:00,456 Ridge St, San Francisco,CA,94016 +268042,20in Monitor,1,109.99,2019-10-28 10:46:00,408 Main St, Portland,OR,97035 +268043,Flatscreen TV,1,300.0,2019-10-20 19:59:00,262 Meadow St, Austin,TX,73301 +268044,Lightning Charging Cable,1,14.95,2019-10-13 08:27:00,586 12th St, Seattle,WA,98101 +268045,iPhone,1,700.0,2019-10-21 18:36:00,278 Chestnut St, San Francisco,CA,94016 +268045,Wired Headphones,1,11.99,2019-10-21 18:36:00,278 Chestnut St, San Francisco,CA,94016 +268046,Apple Airpods Headphones,1,150.0,2019-10-22 15:02:00,672 4th St, San Francisco,CA,94016 +268047,34in Ultrawide Monitor,1,379.99,2019-10-18 06:36:00,196 Pine St, Austin,TX,73301 +268048,Apple Airpods Headphones,1,150.0,2019-10-04 21:16:00,421 Jefferson St, New York City,NY,10001 +268049,AAA Batteries (4-pack),2,2.99,2019-10-04 16:35:00,809 Jackson St, Los Angeles,CA,90001 +268050,AA Batteries (4-pack),1,3.84,2019-10-10 20:57:00,702 11th St, Los Angeles,CA,90001 +268051,Bose SoundSport Headphones,1,99.99,2019-10-05 20:36:00,279 Jefferson St, New York City,NY,10001 +268052,AA Batteries (4-pack),1,3.84,2019-10-19 23:22:00,529 Washington St, Boston,MA,02215 +268053,AA Batteries (4-pack),1,3.84,2019-10-15 12:51:00,760 Park St, Portland,ME,04101 +268054,AA Batteries (4-pack),1,3.84,2019-10-22 21:38:00,743 14th St, Seattle,WA,98101 +268055,iPhone,1,700.0,2019-10-10 15:56:00,476 Willow St, Los Angeles,CA,90001 +268056,Lightning Charging Cable,1,14.95,2019-10-05 20:01:00,130 River St, San Francisco,CA,94016 +268057,iPhone,1,700.0,2019-10-08 17:27:00,646 Hill St, Boston,MA,02215 +268058,Wired Headphones,1,11.99,2019-10-17 11:48:00,723 5th St, San Francisco,CA,94016 +268059,USB-C Charging Cable,2,11.95,2019-10-01 10:42:00,871 Hill St, Seattle,WA,98101 +268060,USB-C Charging Cable,1,11.95,2019-10-03 16:54:00,475 Adams St, San Francisco,CA,94016 +268060,Lightning Charging Cable,2,14.95,2019-10-03 16:54:00,475 Adams St, San Francisco,CA,94016 +268061,LG Dryer,1,600.0,2019-10-14 16:06:00,205 Madison St, Atlanta,GA,30301 +268062,Bose SoundSport Headphones,1,99.99,2019-10-20 11:46:00,198 Adams St, Dallas,TX,75001 +268063,USB-C Charging Cable,1,11.95,2019-10-25 12:12:00,646 River St, New York City,NY,10001 +268064,USB-C Charging Cable,1,11.95,2019-10-12 10:53:00,470 Hill St, Los Angeles,CA,90001 +268065,Bose SoundSport Headphones,1,99.99,2019-10-09 05:38:00,549 Cherry St, New York City,NY,10001 +268066,27in 4K Gaming Monitor,1,389.99,2019-10-27 23:04:00,181 8th St, Atlanta,GA,30301 +268067,AA Batteries (4-pack),4,3.84,2019-10-16 14:57:00,787 1st St, New York City,NY,10001 +268068,Wired Headphones,1,11.99,2019-10-10 19:45:00,366 Center St, New York City,NY,10001 +268069,iPhone,1,700.0,2019-10-13 15:15:00,959 1st St, Dallas,TX,75001 +268070,AA Batteries (4-pack),3,3.84,2019-10-28 09:56:00,549 Ridge St, Portland,OR,97035 +268071,Bose SoundSport Headphones,1,99.99,2019-10-31 00:34:00,471 Elm St, San Francisco,CA,94016 +268072,iPhone,1,700.0,2019-10-27 11:56:00,448 8th St, Boston,MA,02215 +268073,Bose SoundSport Headphones,1,99.99,2019-10-30 18:47:00,550 Sunset St, San Francisco,CA,94016 +268074,27in 4K Gaming Monitor,1,389.99,2019-10-29 11:38:00,922 Hickory St, Los Angeles,CA,90001 +268075,27in FHD Monitor,1,149.99,2019-10-21 09:03:00,648 7th St, New York City,NY,10001 +268076,Wired Headphones,1,11.99,2019-10-14 12:58:00,699 Cedar St, New York City,NY,10001 +268077,AAA Batteries (4-pack),1,2.99,2019-10-17 15:35:00,583 Elm St, Dallas,TX,75001 +268078,Google Phone,1,600.0,2019-10-15 10:27:00,133 Willow St, San Francisco,CA,94016 +268078,USB-C Charging Cable,1,11.95,2019-10-15 10:27:00,133 Willow St, San Francisco,CA,94016 +268079,27in FHD Monitor,1,149.99,2019-10-16 17:26:00,660 Walnut St, Portland,OR,97035 +268080,27in 4K Gaming Monitor,1,389.99,2019-10-20 00:19:00,269 Church St, San Francisco,CA,94016 +268081,Bose SoundSport Headphones,1,99.99,2019-11-01 02:15:00,140 13th St, Atlanta,GA,30301 +268082,Flatscreen TV,1,300.0,2019-10-20 10:03:00,554 South St, Dallas,TX,75001 +268083,20in Monitor,1,109.99,2019-10-20 21:15:00,665 10th St, San Francisco,CA,94016 +268084,Wired Headphones,1,11.99,2019-10-28 11:11:00,804 Wilson St, Atlanta,GA,30301 +268085,Macbook Pro Laptop,1,1700.0,2019-10-13 12:27:00,646 Wilson St, New York City,NY,10001 +268086,AA Batteries (4-pack),5,3.84,2019-10-21 15:30:00,301 Cherry St, Atlanta,GA,30301 +268087,AA Batteries (4-pack),1,3.84,2019-10-24 19:38:00,427 Maple St, Seattle,WA,98101 +268088,Flatscreen TV,1,300.0,2019-10-12 11:15:00,404 1st St, New York City,NY,10001 +268089,USB-C Charging Cable,1,11.95,2019-10-20 17:16:00,271 Cedar St, Boston,MA,02215 +268090,Macbook Pro Laptop,1,1700.0,2019-10-31 11:03:00,782 2nd St, New York City,NY,10001 +268091,AAA Batteries (4-pack),2,2.99,2019-10-17 18:54:00,588 Lincoln St, Boston,MA,02215 +268092,Lightning Charging Cable,1,14.95,2019-10-23 21:29:00,811 Cedar St, Dallas,TX,75001 +268093,AA Batteries (4-pack),1,3.84,2019-10-05 06:45:00,780 12th St, San Francisco,CA,94016 +268093,AAA Batteries (4-pack),2,2.99,2019-10-05 06:45:00,780 12th St, San Francisco,CA,94016 +268094,34in Ultrawide Monitor,1,379.99,2019-10-04 15:17:00,935 Maple St, New York City,NY,10001 +268095,AA Batteries (4-pack),2,3.84,2019-10-05 08:54:00,630 Wilson St, Los Angeles,CA,90001 +268096,34in Ultrawide Monitor,1,379.99,2019-10-01 10:29:00,384 Chestnut St, Boston,MA,02215 +268097,Apple Airpods Headphones,1,150.0,2019-10-08 17:58:00,742 14th St, Seattle,WA,98101 +268098,Macbook Pro Laptop,1,1700.0,2019-10-06 12:30:00,791 12th St, Los Angeles,CA,90001 +268099,Macbook Pro Laptop,1,1700.0,2019-10-05 08:56:00,797 8th St, San Francisco,CA,94016 +268100,Lightning Charging Cable,1,14.95,2019-10-29 19:27:00,20 Wilson St, Seattle,WA,98101 +268101,Lightning Charging Cable,1,14.95,2019-10-20 13:19:00,658 Main St, New York City,NY,10001 +268102,Apple Airpods Headphones,1,150.0,2019-10-07 20:35:00,493 Willow St, Boston,MA,02215 +268103,iPhone,1,700.0,2019-10-31 12:59:00,929 7th St, Seattle,WA,98101 +268103,Lightning Charging Cable,1,14.95,2019-10-31 12:59:00,929 7th St, Seattle,WA,98101 +268104,Google Phone,1,600.0,2019-10-26 18:06:00,336 11th St, Dallas,TX,75001 +268104,Bose SoundSport Headphones,1,99.99,2019-10-26 18:06:00,336 11th St, Dallas,TX,75001 +268104,Wired Headphones,1,11.99,2019-10-26 18:06:00,336 11th St, Dallas,TX,75001 +268105,AAA Batteries (4-pack),1,2.99,2019-10-02 09:34:00,776 Chestnut St, New York City,NY,10001 +268106,iPhone,1,700.0,2019-10-04 14:59:00,503 Hill St, San Francisco,CA,94016 +268107,27in 4K Gaming Monitor,1,389.99,2019-10-10 11:02:00,921 Jackson St, San Francisco,CA,94016 +268108,Wired Headphones,1,11.99,2019-10-11 14:54:00,516 Maple St, Seattle,WA,98101 +268109,Bose SoundSport Headphones,1,99.99,2019-10-13 18:02:00,306 Pine St, San Francisco,CA,94016 +268109,27in 4K Gaming Monitor,1,389.99,2019-10-13 18:02:00,306 Pine St, San Francisco,CA,94016 +268110,AA Batteries (4-pack),1,3.84,2019-10-24 22:33:00,644 Elm St, Atlanta,GA,30301 +268111,iPhone,1,700.0,2019-10-09 20:06:00,114 Main St, Los Angeles,CA,90001 +268112,Lightning Charging Cable,1,14.95,2019-10-25 19:01:00,831 Forest St, New York City,NY,10001 +268113,AAA Batteries (4-pack),1,2.99,2019-10-24 19:39:00,42 Willow St, Dallas,TX,75001 +268114,Bose SoundSport Headphones,1,99.99,2019-10-04 10:33:00,114 Jackson St, Portland,OR,97035 +268115,USB-C Charging Cable,1,11.95,2019-10-24 14:27:00,996 6th St, Boston,MA,02215 +268116,AAA Batteries (4-pack),3,2.99,2019-10-03 13:23:00,466 5th St, Los Angeles,CA,90001 +268117,AA Batteries (4-pack),1,3.84,2019-10-09 16:49:00,742 14th St, San Francisco,CA,94016 +268118,Lightning Charging Cable,1,14.95,2019-10-24 11:37:00,879 Jefferson St, Los Angeles,CA,90001 +268119,AAA Batteries (4-pack),2,2.99,2019-10-26 20:10:00,624 5th St, New York City,NY,10001 +268120,AAA Batteries (4-pack),5,2.99,2019-10-29 10:47:00,701 5th St, Los Angeles,CA,90001 +268121,AA Batteries (4-pack),1,3.84,2019-10-19 11:09:00,890 Walnut St, Boston,MA,02215 +268122,Bose SoundSport Headphones,1,99.99,2019-10-24 19:19:00,180 Spruce St, Seattle,WA,98101 +268123,AAA Batteries (4-pack),1,2.99,2019-10-07 11:41:00,612 West St, San Francisco,CA,94016 +268124,USB-C Charging Cable,1,11.95,2019-10-02 10:01:00,957 Meadow St, San Francisco,CA,94016 +268125,Google Phone,1,600.0,2019-10-15 13:57:00,356 North St, New York City,NY,10001 +268126,Flatscreen TV,1,300.0,2019-10-28 19:11:00,61 Main St, Los Angeles,CA,90001 +268127,Macbook Pro Laptop,1,1700.0,2019-10-24 06:53:00,787 Willow St, Portland,OR,97035 +268128,Apple Airpods Headphones,1,150.0,2019-10-08 16:37:00,203 Sunset St, San Francisco,CA,94016 +268129,AA Batteries (4-pack),1,3.84,2019-10-28 18:57:00,76 1st St, Atlanta,GA,30301 +268130,AAA Batteries (4-pack),1,2.99,2019-10-10 19:25:00,674 13th St, Los Angeles,CA,90001 +268131,Macbook Pro Laptop,1,1700.0,2019-10-28 08:37:00,916 Washington St, San Francisco,CA,94016 +268132,Apple Airpods Headphones,1,150.0,2019-10-16 15:58:00,223 Hickory St, New York City,NY,10001 +268133,USB-C Charging Cable,1,11.95,2019-10-21 11:09:00,782 Center St, Dallas,TX,75001 +268134,Google Phone,1,600.0,2019-10-25 22:38:00,826 Meadow St, San Francisco,CA,94016 +268134,Bose SoundSport Headphones,1,99.99,2019-10-25 22:38:00,826 Meadow St, San Francisco,CA,94016 +268135,Wired Headphones,1,11.99,2019-10-16 12:12:00,336 Lakeview St, Boston,MA,02215 +268136,Flatscreen TV,1,300.0,2019-10-11 08:39:00,32 South St, Boston,MA,02215 +268137,USB-C Charging Cable,2,11.95,2019-10-19 13:06:00,303 Church St, Boston,MA,02215 +268138,USB-C Charging Cable,1,11.95,2019-10-04 22:17:00,956 Highland St, Portland,OR,97035 +268139,AAA Batteries (4-pack),2,2.99,2019-10-06 15:17:00,694 Jefferson St, New York City,NY,10001 +268140,USB-C Charging Cable,1,11.95,2019-10-08 16:36:00,607 Cedar St, New York City,NY,10001 +268141,Apple Airpods Headphones,1,150.0,2019-10-08 12:52:00,977 Park St, San Francisco,CA,94016 +268142,USB-C Charging Cable,1,11.95,2019-10-18 19:55:00,565 Lakeview St, San Francisco,CA,94016 +268143,Wired Headphones,1,11.99,2019-10-06 20:49:00,213 Spruce St, San Francisco,CA,94016 +268144,USB-C Charging Cable,1,11.95,2019-10-12 13:20:00,170 4th St, San Francisco,CA,94016 +268145,AA Batteries (4-pack),1,3.84,2019-10-13 19:22:00,957 River St, Los Angeles,CA,90001 +268146,27in FHD Monitor,1,149.99,2019-10-01 18:19:00,504 Johnson St, Dallas,TX,75001 +268147,Apple Airpods Headphones,1,150.0,2019-10-05 09:46:00,188 7th St, Portland,ME,04101 +268148,Lightning Charging Cable,1,14.95,2019-10-01 08:34:00,81 2nd St, San Francisco,CA,94016 +268149,AAA Batteries (4-pack),2,2.99,2019-10-26 21:21:00,339 Jackson St, Seattle,WA,98101 +268150,Wired Headphones,1,11.99,2019-10-31 03:08:00,490 9th St, Atlanta,GA,30301 +268151,20in Monitor,1,109.99,2019-10-31 09:17:00,772 Elm St, Dallas,TX,75001 +268152,AAA Batteries (4-pack),2,2.99,2019-10-23 21:52:00,588 7th St, San Francisco,CA,94016 +268153,27in 4K Gaming Monitor,1,389.99,2019-10-25 17:08:00,861 14th St, Los Angeles,CA,90001 +268154,34in Ultrawide Monitor,1,379.99,2019-10-22 00:51:00,292 1st St, Seattle,WA,98101 +268155,Wired Headphones,2,11.99,2019-10-05 09:45:00,523 Cherry St, Seattle,WA,98101 +268156,Apple Airpods Headphones,1,150.0,2019-10-01 21:31:00,93 Center St, Los Angeles,CA,90001 +268157,Apple Airpods Headphones,1,150.0,2019-10-12 19:55:00,320 Center St, San Francisco,CA,94016 +268158,AAA Batteries (4-pack),1,2.99,2019-10-13 16:40:00,174 1st St, San Francisco,CA,94016 +268159,AA Batteries (4-pack),1,3.84,2019-10-30 09:35:00,383 4th St, Los Angeles,CA,90001 +268160,Flatscreen TV,1,300.0,2019-10-24 15:59:00,583 Hill St, Los Angeles,CA,90001 +268160,Macbook Pro Laptop,1,1700.0,2019-10-24 15:59:00,583 Hill St, Los Angeles,CA,90001 +268161,USB-C Charging Cable,1,11.95,2019-10-03 17:17:00,259 Madison St, Los Angeles,CA,90001 +268162,Lightning Charging Cable,1,14.95,2019-10-26 16:53:00,844 Center St, Boston,MA,02215 +268163,Wired Headphones,1,11.99,2019-10-06 08:25:00,259 Dogwood St, Portland,OR,97035 +268164,Bose SoundSport Headphones,1,99.99,2019-10-25 16:06:00,892 1st St, Austin,TX,73301 +268165,AAA Batteries (4-pack),1,2.99,2019-10-15 13:15:00,939 Hickory St, Dallas,TX,75001 +268166,Lightning Charging Cable,2,14.95,2019-10-16 17:21:00,839 11th St, Seattle,WA,98101 +268167,AAA Batteries (4-pack),1,2.99,2019-10-26 13:49:00,816 Johnson St, Seattle,WA,98101 +268168,Flatscreen TV,1,300.0,2019-10-07 09:14:00,884 River St, Atlanta,GA,30301 +268169,Flatscreen TV,1,300.0,2019-10-25 16:00:00,768 Chestnut St, Austin,TX,73301 +268170,34in Ultrawide Monitor,1,379.99,2019-10-11 19:44:00,607 14th St, Los Angeles,CA,90001 +268171,Apple Airpods Headphones,1,150.0,2019-10-31 20:06:00,762 11th St, Portland,OR,97035 +268172,Wired Headphones,1,11.99,2019-10-08 23:45:00,282 4th St, San Francisco,CA,94016 +268173,Flatscreen TV,1,300.0,2019-10-10 20:06:00,939 River St, Atlanta,GA,30301 +268174,27in 4K Gaming Monitor,1,389.99,2019-10-05 10:54:00,193 South St, Los Angeles,CA,90001 +268175,Macbook Pro Laptop,1,1700.0,2019-10-11 11:19:00,992 Willow St, Los Angeles,CA,90001 +268176,USB-C Charging Cable,1,11.95,2019-10-13 20:42:00,811 7th St, San Francisco,CA,94016 +268177,Wired Headphones,1,11.99,2019-10-11 16:47:00,755 1st St, San Francisco,CA,94016 +268178,Wired Headphones,1,11.99,2019-10-02 20:13:00,403 Sunset St, Portland,OR,97035 +268179,ThinkPad Laptop,1,999.99,2019-10-09 17:08:00,926 Madison St, San Francisco,CA,94016 +268180,AA Batteries (4-pack),1,3.84,2019-10-31 11:12:00,337 7th St, New York City,NY,10001 +268181,Wired Headphones,1,11.99,2019-10-13 13:43:00,76 Park St, Austin,TX,73301 +268182,AA Batteries (4-pack),2,3.84,2019-10-13 20:07:00,187 North St, Boston,MA,02215 +268183,USB-C Charging Cable,1,11.95,2019-10-06 00:16:00,756 North St, New York City,NY,10001 +268184,ThinkPad Laptop,1,999.99,2019-10-13 16:12:00,517 9th St, Seattle,WA,98101 +268185,AAA Batteries (4-pack),1,2.99,2019-10-27 04:49:00,155 14th St, Portland,ME,04101 +268186,20in Monitor,1,109.99,2019-10-04 13:59:00,686 Spruce St, San Francisco,CA,94016 +268187,Lightning Charging Cable,1,14.95,2019-10-08 12:38:00,746 Pine St, Boston,MA,02215 +268188,27in FHD Monitor,1,149.99,2019-10-07 00:21:00,989 Forest St, Atlanta,GA,30301 +268189,Wired Headphones,2,11.99,2019-10-21 12:30:00,27 10th St, Los Angeles,CA,90001 +268190,27in FHD Monitor,1,149.99,2019-10-06 22:25:00,715 4th St, New York City,NY,10001 +268191,Flatscreen TV,1,300.0,2019-10-02 11:59:00,110 Hickory St, San Francisco,CA,94016 +268192,Flatscreen TV,1,300.0,2019-10-22 20:27:00,180 Willow St, New York City,NY,10001 +268193,AA Batteries (4-pack),1,3.84,2019-10-23 17:16:00,920 Sunset St, San Francisco,CA,94016 +268194,Apple Airpods Headphones,1,150.0,2019-10-31 21:17:00,490 2nd St, Austin,TX,73301 +268195,Wired Headphones,1,11.99,2019-10-05 17:29:00,367 6th St, San Francisco,CA,94016 +268195,AAA Batteries (4-pack),2,2.99,2019-10-05 17:29:00,367 6th St, San Francisco,CA,94016 +268196,ThinkPad Laptop,1,999.99,2019-10-31 21:28:00,833 10th St, New York City,NY,10001 +268197,Apple Airpods Headphones,1,150.0,2019-10-22 21:01:00,382 11th St, San Francisco,CA,94016 +268198,AA Batteries (4-pack),1,3.84,2019-10-17 11:34:00,611 Meadow St, Los Angeles,CA,90001 +268199,ThinkPad Laptop,1,999.99,2019-10-08 19:16:00,502 4th St, Boston,MA,02215 +268200,USB-C Charging Cable,1,11.95,2019-10-28 21:11:00,999 14th St, Atlanta,GA,30301 +268201,27in 4K Gaming Monitor,1,389.99,2019-10-23 22:49:00,439 7th St, Dallas,TX,75001 +268202,27in FHD Monitor,1,149.99,2019-10-28 09:16:00,756 Forest St, San Francisco,CA,94016 +268203,AA Batteries (4-pack),1,3.84,2019-10-02 19:14:00,636 Pine St, New York City,NY,10001 +268204,AA Batteries (4-pack),1,3.84,2019-10-10 16:05:00,591 11th St, New York City,NY,10001 +268205,ThinkPad Laptop,1,999.99,2019-10-27 15:34:00,259 Willow St, Los Angeles,CA,90001 +268206,Flatscreen TV,1,300.0,2019-10-29 12:38:00,983 Walnut St, Atlanta,GA,30301 +268207,Vareebadd Phone,1,400.0,2019-10-27 19:58:00,7 Maple St, Dallas,TX,75001 +268208,iPhone,1,700.0,2019-10-11 18:24:00,54 Park St, Los Angeles,CA,90001 +268209,Flatscreen TV,1,300.0,2019-10-12 01:06:00,694 Park St, San Francisco,CA,94016 +268210,USB-C Charging Cable,1,11.95,2019-10-11 23:39:00,468 11th St, Portland,OR,97035 +268211,Bose SoundSport Headphones,1,99.99,2019-10-14 22:23:00,65 Walnut St, San Francisco,CA,94016 +268212,Apple Airpods Headphones,1,150.0,2019-10-15 11:31:00,812 11th St, Los Angeles,CA,90001 +268213,ThinkPad Laptop,1,999.99,2019-10-03 21:28:00,966 9th St, Dallas,TX,75001 +268214,AAA Batteries (4-pack),1,2.99,2019-10-12 08:54:00,418 Washington St, San Francisco,CA,94016 +268215,Wired Headphones,1,11.99,2019-10-11 20:39:00,327 9th St, New York City,NY,10001 +268216,AAA Batteries (4-pack),1,2.99,2019-10-31 15:36:00,341 10th St, New York City,NY,10001 +268217,Wired Headphones,1,11.99,2019-10-23 17:33:00,957 Jefferson St, Austin,TX,73301 +268218,34in Ultrawide Monitor,1,379.99,2019-10-21 10:18:00,802 Wilson St, San Francisco,CA,94016 +268219,AAA Batteries (4-pack),3,2.99,2019-10-19 11:40:00,388 7th St, Dallas,TX,75001 +268220,USB-C Charging Cable,1,11.95,2019-10-09 16:07:00,794 Meadow St, Los Angeles,CA,90001 +268221,AA Batteries (4-pack),1,3.84,2019-10-18 11:13:00,497 Lincoln St, San Francisco,CA,94016 +268222,Wired Headphones,1,11.99,2019-10-12 16:15:00,42 5th St, Austin,TX,73301 +268223,USB-C Charging Cable,1,11.95,2019-10-01 22:46:00,206 Willow St, Dallas,TX,75001 +268224,34in Ultrawide Monitor,1,379.99,2019-10-18 10:37:00,818 Forest St, San Francisco,CA,94016 +268225,AAA Batteries (4-pack),1,2.99,2019-10-03 12:57:00,93 Lake St, San Francisco,CA,94016 +268226,USB-C Charging Cable,1,11.95,2019-10-17 05:56:00,272 12th St, Seattle,WA,98101 +268227,AA Batteries (4-pack),1,3.84,2019-10-08 18:41:00,917 10th St, Los Angeles,CA,90001 +268228,Wired Headphones,2,11.99,2019-10-06 20:13:00,505 7th St, Los Angeles,CA,90001 +268229,Wired Headphones,1,11.99,2019-10-14 11:02:00,316 North St, Atlanta,GA,30301 +268230,Bose SoundSport Headphones,1,99.99,2019-10-05 10:44:00,728 South St, Boston,MA,02215 +268231,AA Batteries (4-pack),1,3.84,2019-10-19 02:03:00,983 Church St, San Francisco,CA,94016 +268232,Apple Airpods Headphones,1,150.0,2019-10-04 18:21:00,506 7th St, New York City,NY,10001 +268233,Wired Headphones,1,11.99,2019-10-15 13:03:00,952 4th St, New York City,NY,10001 +268234,USB-C Charging Cable,1,11.95,2019-10-22 15:21:00,822 11th St, Boston,MA,02215 +268235,iPhone,1,700.0,2019-10-14 20:14:00,56 Willow St, Seattle,WA,98101 +268236,USB-C Charging Cable,2,11.95,2019-10-09 13:34:00,689 12th St, San Francisco,CA,94016 +268237,20in Monitor,1,109.99,2019-10-26 22:42:00,583 11th St, Los Angeles,CA,90001 +268238,AAA Batteries (4-pack),1,2.99,2019-10-29 19:44:00,962 Highland St, Seattle,WA,98101 +268239,Apple Airpods Headphones,1,150.0,2019-10-10 19:17:00,123 Lakeview St, Portland,ME,04101 +268240,USB-C Charging Cable,1,11.95,2019-10-26 16:23:00,665 Sunset St, Boston,MA,02215 +268241,USB-C Charging Cable,1,11.95,2019-10-30 14:54:00,883 Maple St, Dallas,TX,75001 +268242,20in Monitor,1,109.99,2019-10-06 23:47:00,921 Lake St, San Francisco,CA,94016 +268243,27in 4K Gaming Monitor,1,389.99,2019-10-20 21:01:00,920 Park St, New York City,NY,10001 +268244,AA Batteries (4-pack),1,3.84,2019-10-29 01:51:00,835 Elm St, New York City,NY,10001 +268245,Apple Airpods Headphones,1,150.0,2019-10-09 09:20:00,736 River St, San Francisco,CA,94016 +268245,27in FHD Monitor,1,149.99,2019-10-09 09:20:00,736 River St, San Francisco,CA,94016 +268246,USB-C Charging Cable,1,11.95,2019-10-24 23:00:00,203 Forest St, San Francisco,CA,94016 +268247,AA Batteries (4-pack),1,3.84,2019-10-05 17:07:00,799 Highland St, San Francisco,CA,94016 +268248,iPhone,1,700.0,2019-10-27 19:31:00,981 Pine St, San Francisco,CA,94016 +268248,Lightning Charging Cable,1,14.95,2019-10-27 19:31:00,981 Pine St, San Francisco,CA,94016 +268249,Lightning Charging Cable,1,14.95,2019-10-16 22:31:00,587 Ridge St, Boston,MA,02215 +268250,Apple Airpods Headphones,1,150.0,2019-10-04 19:30:00,43 North St, San Francisco,CA,94016 +268251,USB-C Charging Cable,1,11.95,2019-10-22 11:21:00,556 Chestnut St, New York City,NY,10001 +268252,27in FHD Monitor,1,149.99,2019-10-13 13:04:00,643 14th St, Dallas,TX,75001 +268253,USB-C Charging Cable,1,11.95,2019-10-16 19:24:00,920 5th St, New York City,NY,10001 +268254,27in 4K Gaming Monitor,1,389.99,2019-10-09 12:30:00,776 Center St, San Francisco,CA,94016 +268255,Lightning Charging Cable,1,14.95,2019-10-04 14:04:00,732 11th St, Dallas,TX,75001 +268256,AAA Batteries (4-pack),1,2.99,2019-10-04 13:37:00,141 Park St, Austin,TX,73301 +268257,USB-C Charging Cable,1,11.95,2019-10-25 13:31:00,731 Lake St, Atlanta,GA,30301 +268258,AAA Batteries (4-pack),1,2.99,2019-10-12 17:47:00,910 River St, Los Angeles,CA,90001 +268259,Lightning Charging Cable,1,14.95,2019-10-30 11:11:00,367 9th St, New York City,NY,10001 +268260,Apple Airpods Headphones,1,150.0,2019-10-14 14:02:00,802 Ridge St, San Francisco,CA,94016 +268261,Lightning Charging Cable,1,14.95,2019-10-31 21:30:00,717 Ridge St, Los Angeles,CA,90001 +268262,iPhone,1,700.0,2019-10-15 22:49:00,910 Highland St, Atlanta,GA,30301 +268263,Lightning Charging Cable,1,14.95,2019-10-24 20:52:00,280 Ridge St, Boston,MA,02215 +268264,AA Batteries (4-pack),2,3.84,2019-10-16 16:43:00,766 Pine St, Seattle,WA,98101 +268265,27in 4K Gaming Monitor,1,389.99,2019-10-27 17:02:00,974 7th St, Los Angeles,CA,90001 +268266,Macbook Pro Laptop,1,1700.0,2019-10-13 13:32:00,169 Madison St, Atlanta,GA,30301 +268267,34in Ultrawide Monitor,1,379.99,2019-10-27 12:59:00,593 Walnut St, Austin,TX,73301 +268268,Google Phone,1,600.0,2019-10-15 18:09:00,960 Highland St, Portland,OR,97035 +268269,USB-C Charging Cable,1,11.95,2019-10-20 11:42:00,946 4th St, Portland,OR,97035 +268270,27in 4K Gaming Monitor,1,389.99,2019-10-09 23:03:00,925 14th St, Boston,MA,02215 +268271,Wired Headphones,1,11.99,2019-10-04 18:20:00,675 12th St, Los Angeles,CA,90001 +268272,Apple Airpods Headphones,1,150.0,2019-10-13 10:46:00,67 South St, Dallas,TX,75001 +268273,AAA Batteries (4-pack),3,2.99,2019-10-19 12:24:00,827 Lincoln St, New York City,NY,10001 +268274,27in 4K Gaming Monitor,1,389.99,2019-10-31 15:11:00,933 Cherry St, San Francisco,CA,94016 +268275,USB-C Charging Cable,1,11.95,2019-10-28 19:19:00,931 Johnson St, New York City,NY,10001 +268276,iPhone,1,700.0,2019-10-30 15:33:00,88 Highland St, San Francisco,CA,94016 +268277,34in Ultrawide Monitor,1,379.99,2019-10-15 21:21:00,377 Jefferson St, New York City,NY,10001 +268278,Wired Headphones,1,11.99,2019-10-22 12:22:00,686 South St, Austin,TX,73301 +268279,iPhone,1,700.0,2019-10-04 14:16:00,858 5th St, Dallas,TX,75001 +268279,Lightning Charging Cable,1,14.95,2019-10-04 14:16:00,858 5th St, Dallas,TX,75001 +268280,USB-C Charging Cable,1,11.95,2019-10-01 21:20:00,930 North St, New York City,NY,10001 +268281,AAA Batteries (4-pack),1,2.99,2019-10-03 19:31:00,520 River St, Portland,ME,04101 +268282,Bose SoundSport Headphones,1,99.99,2019-10-28 09:49:00,364 Wilson St, Los Angeles,CA,90001 +268283,Apple Airpods Headphones,1,150.0,2019-10-09 18:58:00,985 12th St, Portland,ME,04101 +268284,AAA Batteries (4-pack),2,2.99,2019-10-18 15:41:00,859 5th St, Austin,TX,73301 +268285,iPhone,1,700.0,2019-10-10 12:23:00,233 13th St, Atlanta,GA,30301 +268286,Bose SoundSport Headphones,1,99.99,2019-10-18 23:17:00,424 South St, Seattle,WA,98101 +268287,Wired Headphones,1,11.99,2019-10-08 18:18:00,39 Forest St, Los Angeles,CA,90001 +268288,Wired Headphones,1,11.99,2019-10-23 16:25:00,857 Meadow St, Los Angeles,CA,90001 +268289,USB-C Charging Cable,1,11.95,2019-10-28 19:53:00,596 Pine St, Austin,TX,73301 +268290,Apple Airpods Headphones,1,150.0,2019-10-23 15:41:00,958 Sunset St, Seattle,WA,98101 +268291,Apple Airpods Headphones,1,150.0,2019-10-06 18:03:00,402 Jackson St, New York City,NY,10001 +268292,34in Ultrawide Monitor,1,379.99,2019-10-14 12:39:00,558 West St, San Francisco,CA,94016 +268293,Apple Airpods Headphones,1,150.0,2019-10-17 23:12:00,870 9th St, Austin,TX,73301 +268294,Vareebadd Phone,1,400.0,2019-10-13 16:01:00,653 Washington St, San Francisco,CA,94016 +268295,Apple Airpods Headphones,1,150.0,2019-10-28 11:29:00,450 West St, San Francisco,CA,94016 +268296,Lightning Charging Cable,1,14.95,2019-10-26 00:10:00,156 Cherry St, Atlanta,GA,30301 +268297,Wired Headphones,1,11.99,2019-10-30 01:02:00,989 Johnson St, New York City,NY,10001 +268298,USB-C Charging Cable,1,11.95,2019-10-04 14:04:00,931 11th St, San Francisco,CA,94016 +268299,Bose SoundSport Headphones,1,99.99,2019-10-16 13:54:00,47 Wilson St, Los Angeles,CA,90001 +268300,Apple Airpods Headphones,1,150.0,2019-10-15 18:56:00,954 8th St, San Francisco,CA,94016 +268301,Lightning Charging Cable,1,14.95,2019-10-13 21:07:00,329 South St, San Francisco,CA,94016 +268302,AAA Batteries (4-pack),1,2.99,2019-10-02 13:07:00,617 Sunset St, Seattle,WA,98101 +268303,AA Batteries (4-pack),2,3.84,2019-10-17 17:29:00,117 Maple St, New York City,NY,10001 +268304,AAA Batteries (4-pack),1,2.99,2019-10-05 20:30:00,695 Cherry St, Los Angeles,CA,90001 +268305,Bose SoundSport Headphones,1,99.99,2019-10-26 21:06:00,13 11th St, New York City,NY,10001 +268306,Bose SoundSport Headphones,1,99.99,2019-10-24 06:27:00,201 West St, Portland,ME,04101 +268307,Apple Airpods Headphones,1,150.0,2019-10-14 10:24:00,994 Madison St, New York City,NY,10001 +268308,AAA Batteries (4-pack),1,2.99,2019-10-28 20:54:00,896 Dogwood St, Seattle,WA,98101 +268309,AAA Batteries (4-pack),1,2.99,2019-10-14 15:08:00,608 Ridge St, Boston,MA,02215 +268310,Apple Airpods Headphones,1,150.0,2019-10-16 16:09:00,660 Jefferson St, San Francisco,CA,94016 +268311,Vareebadd Phone,1,400.0,2019-10-09 18:04:00,685 Willow St, New York City,NY,10001 +268312,USB-C Charging Cable,1,11.95,2019-10-04 22:45:00,339 Walnut St, Atlanta,GA,30301 +268313,Wired Headphones,1,11.99,2019-10-14 23:24:00,214 4th St, San Francisco,CA,94016 +268314,Apple Airpods Headphones,1,150.0,2019-10-06 11:33:00,95 Sunset St, Los Angeles,CA,90001 +268315,USB-C Charging Cable,1,11.95,2019-10-30 16:15:00,284 South St, Portland,OR,97035 +268316,ThinkPad Laptop,1,999.99,2019-10-23 18:33:00,111 Lakeview St, Austin,TX,73301 +268317,AAA Batteries (4-pack),1,2.99,2019-10-16 07:35:00,423 Center St, New York City,NY,10001 +268318,USB-C Charging Cable,1,11.95,2019-10-31 14:14:00,712 Walnut St, Boston,MA,02215 +268319,Lightning Charging Cable,1,14.95,2019-10-31 19:01:00,271 Sunset St, Los Angeles,CA,90001 +268320,Bose SoundSport Headphones,1,99.99,2019-10-28 09:32:00,80 6th St, New York City,NY,10001 +268321,AA Batteries (4-pack),1,3.84,2019-10-24 22:38:00,238 Walnut St, Seattle,WA,98101 +268322,AA Batteries (4-pack),2,3.84,2019-10-23 17:12:00,859 10th St, San Francisco,CA,94016 +268323,Bose SoundSport Headphones,1,99.99,2019-10-18 22:28:00,34 River St, Los Angeles,CA,90001 +268324,iPhone,1,700.0,2019-10-14 19:37:00,724 Meadow St, Los Angeles,CA,90001 +268325,AAA Batteries (4-pack),1,2.99,2019-10-08 14:08:00,171 Chestnut St, San Francisco,CA,94016 +268326,Bose SoundSport Headphones,1,99.99,2019-10-23 08:22:00,605 12th St, Boston,MA,02215 +268327,Lightning Charging Cable,1,14.95,2019-10-21 14:24:00,509 Park St, Austin,TX,73301 +268328,Wired Headphones,1,11.99,2019-10-10 16:01:00,267 Center St, Austin,TX,73301 +268329,Bose SoundSport Headphones,1,99.99,2019-10-21 16:39:00,442 1st St, Dallas,TX,75001 +268330,Apple Airpods Headphones,1,150.0,2019-10-10 10:41:00,399 Sunset St, Dallas,TX,75001 +268331,Bose SoundSport Headphones,1,99.99,2019-10-29 21:02:00,102 8th St, San Francisco,CA,94016 +268332,iPhone,1,700.0,2019-10-12 23:31:00,475 South St, Los Angeles,CA,90001 +268333,AA Batteries (4-pack),1,3.84,2019-10-06 07:12:00,166 Meadow St, San Francisco,CA,94016 +268334,27in 4K Gaming Monitor,1,389.99,2019-10-08 19:52:00,559 Maple St, New York City,NY,10001 +268335,LG Washing Machine,1,600.0,2019-10-15 12:47:00,391 1st St, San Francisco,CA,94016 +268336,27in 4K Gaming Monitor,1,389.99,2019-10-18 10:30:00,597 11th St, Boston,MA,02215 +268337,LG Washing Machine,1,600.0,2019-10-09 21:20:00,28 7th St, Los Angeles,CA,90001 +268338,Apple Airpods Headphones,1,150.0,2019-10-09 17:30:00,819 1st St, Dallas,TX,75001 +268339,Flatscreen TV,1,300.0,2019-10-24 19:48:00,998 River St, Dallas,TX,75001 +268340,Apple Airpods Headphones,1,150.0,2019-10-18 19:45:00,382 Chestnut St, Boston,MA,02215 +268341,iPhone,1,700.0,2019-10-24 21:37:00,891 Jefferson St, Boston,MA,02215 +268342,20in Monitor,1,109.99,2019-10-15 21:09:00,929 5th St, Los Angeles,CA,90001 +268343,27in FHD Monitor,1,149.99,2019-10-14 07:01:00,358 Jefferson St, Dallas,TX,75001 +268344,AAA Batteries (4-pack),1,2.99,2019-10-10 14:47:00,166 Chestnut St, Portland,OR,97035 +268345,Lightning Charging Cable,1,14.95,2019-10-03 12:55:00,100 Lincoln St, San Francisco,CA,94016 +268346,Macbook Pro Laptop,1,1700.0,2019-10-06 14:32:00,242 5th St, San Francisco,CA,94016 +268347,AA Batteries (4-pack),1,3.84,2019-10-02 07:43:00,771 Lincoln St, San Francisco,CA,94016 +268348,Macbook Pro Laptop,1,1700.0,2019-10-20 19:35:00,431 Lincoln St, Boston,MA,02215 +268349,Apple Airpods Headphones,1,150.0,2019-10-23 12:36:00,770 Highland St, New York City,NY,10001 +268350,Wired Headphones,1,11.99,2019-10-08 16:03:00,803 Main St, Los Angeles,CA,90001 +268351,Wired Headphones,1,11.99,2019-10-29 19:03:00,515 Jackson St, Portland,OR,97035 +268352,Wired Headphones,1,11.99,2019-10-24 10:58:00,6 Hill St, Boston,MA,02215 +268353,USB-C Charging Cable,1,11.95,2019-10-22 00:25:00,302 6th St, San Francisco,CA,94016 +268354,Bose SoundSport Headphones,1,99.99,2019-10-06 22:50:00,189 Lincoln St, Seattle,WA,98101 +268355,27in FHD Monitor,1,149.99,2019-10-25 12:00:00,893 Lincoln St, Los Angeles,CA,90001 +268356,Wired Headphones,1,11.99,2019-10-08 15:17:00,463 2nd St, Boston,MA,02215 +268357,Bose SoundSport Headphones,1,99.99,2019-10-12 22:25:00,537 Washington St, Atlanta,GA,30301 +268358,Lightning Charging Cable,1,14.95,2019-10-12 18:11:00,552 11th St, Austin,TX,73301 +268359,Lightning Charging Cable,1,14.95,2019-10-20 16:56:00,717 Cherry St, Los Angeles,CA,90001 +268359,Bose SoundSport Headphones,1,99.99,2019-10-20 16:56:00,717 Cherry St, Los Angeles,CA,90001 +268360,Bose SoundSport Headphones,1,99.99,2019-10-27 04:56:00,22 West St, San Francisco,CA,94016 +268361,Lightning Charging Cable,1,14.95,2019-10-14 17:05:00,409 Hill St, Atlanta,GA,30301 +268362,AA Batteries (4-pack),2,3.84,2019-10-07 22:17:00,848 Ridge St, Los Angeles,CA,90001 +268363,Wired Headphones,1,11.99,2019-10-13 07:05:00,253 Adams St, Dallas,TX,75001 +268364,AA Batteries (4-pack),1,3.84,2019-10-21 08:28:00,611 Johnson St, Atlanta,GA,30301 +268365,27in 4K Gaming Monitor,1,389.99,2019-10-19 10:29:00,594 Lincoln St, Austin,TX,73301 +268366,Lightning Charging Cable,1,14.95,2019-10-22 15:14:00,16 Elm St, Portland,OR,97035 +268367,AAA Batteries (4-pack),1,2.99,2019-10-14 23:03:00,101 1st St, Seattle,WA,98101 +268368,USB-C Charging Cable,1,11.95,2019-10-10 13:06:00,935 Maple St, Portland,OR,97035 +268369,AA Batteries (4-pack),1,3.84,2019-10-22 17:25:00,364 West St, Seattle,WA,98101 +268370,Bose SoundSport Headphones,1,99.99,2019-10-25 09:23:00,485 Walnut St, Dallas,TX,75001 +268371,27in 4K Gaming Monitor,1,389.99,2019-10-12 09:34:00,510 Meadow St, Portland,OR,97035 +268372,27in 4K Gaming Monitor,1,389.99,2019-10-18 20:28:00,15 Maple St, Portland,OR,97035 +268373,AAA Batteries (4-pack),1,2.99,2019-10-26 20:42:00,796 Sunset St, San Francisco,CA,94016 +268374,AA Batteries (4-pack),1,3.84,2019-10-25 12:12:00,567 Sunset St, Austin,TX,73301 +268375,Wired Headphones,2,11.99,2019-10-28 20:04:00,661 Pine St, New York City,NY,10001 +268376,USB-C Charging Cable,1,11.95,2019-10-15 17:00:00,309 Meadow St, Los Angeles,CA,90001 +268377,Bose SoundSport Headphones,1,99.99,2019-10-10 11:31:00,20 8th St, New York City,NY,10001 +268378,Lightning Charging Cable,1,14.95,2019-10-07 17:25:00,431 Madison St, Seattle,WA,98101 +268379,Wired Headphones,1,11.99,2019-10-05 22:41:00,865 14th St, San Francisco,CA,94016 +268380,Lightning Charging Cable,1,14.95,2019-10-08 15:30:00,37 River St, Boston,MA,02215 +268381,Bose SoundSport Headphones,1,99.99,2019-10-19 23:30:00,522 8th St, Atlanta,GA,30301 +268382,Apple Airpods Headphones,1,150.0,2019-10-01 10:56:00,845 Madison St, Seattle,WA,98101 +268383,AAA Batteries (4-pack),1,2.99,2019-10-17 21:42:00,528 South St, Seattle,WA,98101 +268384,LG Dryer,1,600.0,2019-10-22 11:18:00,719 Cherry St, San Francisco,CA,94016 +268385,Vareebadd Phone,1,400.0,2019-10-29 21:05:00,77 Main St, Boston,MA,02215 +268386,AA Batteries (4-pack),1,3.84,2019-10-22 11:28:00,52 Jackson St, San Francisco,CA,94016 +268387,Bose SoundSport Headphones,1,99.99,2019-10-19 18:53:00,747 Jackson St, New York City,NY,10001 +268388,Lightning Charging Cable,1,14.95,2019-10-27 12:47:00,347 Lake St, San Francisco,CA,94016 +268389,Apple Airpods Headphones,1,150.0,2019-10-22 18:56:00,606 Hill St, Los Angeles,CA,90001 +268390,Macbook Pro Laptop,1,1700.0,2019-10-18 11:49:00,793 Chestnut St, San Francisco,CA,94016 +268391,Wired Headphones,1,11.99,2019-10-21 15:28:00,41 Church St, Seattle,WA,98101 +268392,Apple Airpods Headphones,1,150.0,2019-10-30 14:08:00,255 Johnson St, New York City,NY,10001 +268393,AA Batteries (4-pack),1,3.84,2019-10-26 00:35:00,550 North St, Portland,OR,97035 +268394,Bose SoundSport Headphones,1,99.99,2019-10-23 11:58:00,726 Cedar St, San Francisco,CA,94016 +268395,Vareebadd Phone,1,400.0,2019-10-17 21:15:00,137 Chestnut St, San Francisco,CA,94016 +268396,AA Batteries (4-pack),1,3.84,2019-10-09 14:41:00,179 Park St, Atlanta,GA,30301 +268397,Lightning Charging Cable,1,14.95,2019-10-21 10:54:00,612 Jackson St, Portland,OR,97035 +268398,Apple Airpods Headphones,1,150.0,2019-10-03 12:00:00,767 7th St, Austin,TX,73301 +268399,27in 4K Gaming Monitor,1,389.99,2019-10-13 20:37:00,781 Pine St, New York City,NY,10001 +268400,Bose SoundSport Headphones,1,99.99,2019-10-07 14:27:00,618 Highland St, New York City,NY,10001 +268401,USB-C Charging Cable,1,11.95,2019-10-20 13:39:00,240 Sunset St, Los Angeles,CA,90001 +268402,27in 4K Gaming Monitor,1,389.99,2019-10-13 19:46:00,427 Forest St, Dallas,TX,75001 +268403,34in Ultrawide Monitor,1,379.99,2019-10-13 20:47:00,411 Spruce St, San Francisco,CA,94016 +268404,20in Monitor,1,109.99,2019-10-21 05:18:00,722 4th St, Austin,TX,73301 +268405,Apple Airpods Headphones,1,150.0,2019-10-12 11:57:00,269 North St, Los Angeles,CA,90001 +268406,Wired Headphones,2,11.99,2019-10-31 12:10:00,618 9th St, San Francisco,CA,94016 +268407,Lightning Charging Cable,1,14.95,2019-10-24 15:42:00,776 Madison St, New York City,NY,10001 +268408,27in FHD Monitor,1,149.99,2019-10-14 20:52:00,299 Spruce St, San Francisco,CA,94016 +268409,Apple Airpods Headphones,1,150.0,2019-10-22 12:32:00,630 Church St, Dallas,TX,75001 +268410,AAA Batteries (4-pack),3,2.99,2019-10-02 00:33:00,985 Chestnut St, Boston,MA,02215 +268411,AAA Batteries (4-pack),1,2.99,2019-10-09 08:00:00,39 Maple St, Boston,MA,02215 +268412,USB-C Charging Cable,1,11.95,2019-10-06 22:38:00,560 Madison St, Austin,TX,73301 +268413,AA Batteries (4-pack),2,3.84,2019-10-27 22:29:00,262 Dogwood St, San Francisco,CA,94016 +268414,Flatscreen TV,1,300.0,2019-10-31 12:42:00,669 Washington St, Los Angeles,CA,90001 +268415,Wired Headphones,1,11.99,2019-10-27 10:14:00,93 Main St, San Francisco,CA,94016 +268416,AAA Batteries (4-pack),1,2.99,2019-10-25 11:37:00,111 Johnson St, San Francisco,CA,94016 +268417,Apple Airpods Headphones,1,150.0,2019-10-20 23:27:00,968 Johnson St, Seattle,WA,98101 +268418,27in FHD Monitor,1,149.99,2019-10-10 09:39:00,799 River St, New York City,NY,10001 +268419,USB-C Charging Cable,1,11.95,2019-10-13 14:29:00,831 Maple St, New York City,NY,10001 +268420,iPhone,1,700.0,2019-10-29 10:50:00,653 14th St, Los Angeles,CA,90001 +268421,AAA Batteries (4-pack),1,2.99,2019-10-07 20:15:00,386 11th St, Seattle,WA,98101 +268422,Wired Headphones,1,11.99,2019-10-18 17:53:00,760 8th St, San Francisco,CA,94016 +268423,Wired Headphones,1,11.99,2019-10-19 11:21:00,366 Maple St, Seattle,WA,98101 +268424,Lightning Charging Cable,1,14.95,2019-10-04 12:33:00,736 Hickory St, Boston,MA,02215 +268425,Wired Headphones,1,11.99,2019-10-15 14:51:00,444 Lincoln St, Los Angeles,CA,90001 +268426,Lightning Charging Cable,1,14.95,2019-10-22 19:18:00,788 Walnut St, Seattle,WA,98101 +268427,20in Monitor,1,109.99,2019-10-06 19:03:00,402 Cedar St, New York City,NY,10001 +268428,Wired Headphones,1,11.99,2019-10-16 12:02:00,617 Pine St, Los Angeles,CA,90001 +268429,AA Batteries (4-pack),1,3.84,2019-10-26 09:16:00,373 10th St, New York City,NY,10001 +268430,AA Batteries (4-pack),1,3.84,2019-10-29 12:45:00,769 Sunset St, Los Angeles,CA,90001 +268431,27in 4K Gaming Monitor,1,389.99,2019-10-01 15:23:00,51 Ridge St, Boston,MA,02215 +268432,AAA Batteries (4-pack),3,2.99,2019-10-27 20:57:00,439 Center St, San Francisco,CA,94016 +268433,Apple Airpods Headphones,1,150.0,2019-10-23 20:10:00,106 14th St, San Francisco,CA,94016 +268434,USB-C Charging Cable,1,11.95,2019-10-24 20:28:00,876 South St, Dallas,TX,75001 +268435,Bose SoundSport Headphones,1,99.99,2019-10-18 21:42:00,729 13th St, Los Angeles,CA,90001 +268435,USB-C Charging Cable,1,11.95,2019-10-18 21:42:00,729 13th St, Los Angeles,CA,90001 +268436,iPhone,1,700.0,2019-10-31 18:47:00,516 Lakeview St, Los Angeles,CA,90001 +268437,Wired Headphones,1,11.99,2019-10-08 15:33:00,460 2nd St, Atlanta,GA,30301 +268438,AA Batteries (4-pack),2,3.84,2019-10-17 13:51:00,50 Lake St, Seattle,WA,98101 +268439,USB-C Charging Cable,2,11.95,2019-10-15 20:51:00,439 Park St, San Francisco,CA,94016 +268440,Bose SoundSport Headphones,1,99.99,2019-10-03 17:39:00,36 2nd St, San Francisco,CA,94016 +268441,Wired Headphones,1,11.99,2019-10-08 22:06:00,950 Elm St, Los Angeles,CA,90001 +268442,34in Ultrawide Monitor,1,379.99,2019-10-28 09:01:00,472 Forest St, Boston,MA,02215 +268443,AAA Batteries (4-pack),2,2.99,2019-10-22 15:13:00,440 Jackson St, Seattle,WA,98101 +268444,Bose SoundSport Headphones,1,99.99,2019-10-27 19:29:00,644 Cedar St, San Francisco,CA,94016 +268445,AAA Batteries (4-pack),1,2.99,2019-10-30 14:11:00,541 Pine St, San Francisco,CA,94016 +268446,27in 4K Gaming Monitor,1,389.99,2019-10-28 16:23:00,30 Jefferson St, San Francisco,CA,94016 +268447,AA Batteries (4-pack),1,3.84,2019-10-18 09:50:00,787 Chestnut St, San Francisco,CA,94016 +268448,Lightning Charging Cable,1,14.95,2019-10-25 12:07:00,363 Elm St, Austin,TX,73301 +268449,Wired Headphones,1,11.99,2019-10-26 23:07:00,740 1st St, Portland,OR,97035 +268450,Apple Airpods Headphones,1,150.0,2019-10-10 17:01:00,923 12th St, Portland,OR,97035 +268451,Flatscreen TV,1,300.0,2019-10-24 07:28:00,14 Highland St, Boston,MA,02215 +268452,USB-C Charging Cable,1,11.95,2019-10-25 22:12:00,359 Lake St, Portland,OR,97035 +268453,AA Batteries (4-pack),1,3.84,2019-10-22 17:31:00,610 Hickory St, Atlanta,GA,30301 +268454,AA Batteries (4-pack),1,3.84,2019-10-24 09:19:00,217 Dogwood St, Dallas,TX,75001 +268455,Google Phone,1,600.0,2019-10-13 20:29:00,103 Cedar St, Atlanta,GA,30301 +268456,USB-C Charging Cable,1,11.95,2019-10-08 19:28:00,540 Forest St, Los Angeles,CA,90001 +268457,AAA Batteries (4-pack),1,2.99,2019-10-10 13:03:00,161 Walnut St, Los Angeles,CA,90001 +268458,Bose SoundSport Headphones,1,99.99,2019-10-03 08:23:00,84 Sunset St, Los Angeles,CA,90001 +268459,ThinkPad Laptop,1,999.99,2019-10-09 09:21:00,240 Ridge St, Portland,OR,97035 +268460,ThinkPad Laptop,1,999.99,2019-10-03 07:33:00,483 14th St, Portland,OR,97035 +268461,USB-C Charging Cable,1,11.95,2019-10-13 22:22:00,26 6th St, San Francisco,CA,94016 +268462,20in Monitor,1,109.99,2019-10-25 10:02:00,350 Highland St, Boston,MA,02215 +268463,27in 4K Gaming Monitor,1,389.99,2019-10-04 08:58:00,909 South St, Boston,MA,02215 +268464,AA Batteries (4-pack),1,3.84,2019-10-13 08:17:00,59 Madison St, San Francisco,CA,94016 +268465,USB-C Charging Cable,1,11.95,2019-10-20 06:13:00,491 Willow St, Dallas,TX,75001 +268466,AAA Batteries (4-pack),2,2.99,2019-10-30 16:59:00,653 Pine St, New York City,NY,10001 +268467,USB-C Charging Cable,1,11.95,2019-10-07 19:16:00,358 Pine St, San Francisco,CA,94016 +268468,34in Ultrawide Monitor,1,379.99,2019-10-31 12:13:00,404 Washington St, New York City,NY,10001 +268469,Bose SoundSport Headphones,1,99.99,2019-10-19 16:47:00,533 Ridge St, New York City,NY,10001 +268470,AA Batteries (4-pack),1,3.84,2019-10-31 22:55:00,146 Lincoln St, Seattle,WA,98101 +268471,Macbook Pro Laptop,1,1700.0,2019-10-17 17:54:00,398 Madison St, Boston,MA,02215 +268472,AA Batteries (4-pack),2,3.84,2019-10-13 20:46:00,181 West St, Austin,TX,73301 +268473,USB-C Charging Cable,1,11.95,2019-10-16 11:59:00,592 Elm St, San Francisco,CA,94016 +268474,27in FHD Monitor,1,149.99,2019-10-20 14:37:00,25 12th St, San Francisco,CA,94016 +268475,Bose SoundSport Headphones,1,99.99,2019-10-06 18:55:00,571 Jackson St, Seattle,WA,98101 +268476,AA Batteries (4-pack),1,3.84,2019-10-10 22:06:00,56 Ridge St, Portland,OR,97035 +268477,AA Batteries (4-pack),2,3.84,2019-10-28 14:26:00,354 Forest St, New York City,NY,10001 +268478,USB-C Charging Cable,1,11.95,2019-10-29 12:51:00,924 Adams St, New York City,NY,10001 +268479,AAA Batteries (4-pack),4,2.99,2019-10-13 10:56:00,476 Willow St, New York City,NY,10001 +268480,ThinkPad Laptop,1,999.99,2019-10-19 12:41:00,139 Highland St, Boston,MA,02215 +268481,Macbook Pro Laptop,1,1700.0,2019-10-05 06:33:00,351 Dogwood St, Seattle,WA,98101 +268482,Google Phone,1,600.0,2019-10-16 22:04:00,297 Park St, Dallas,TX,75001 +268483,Wired Headphones,1,11.99,2019-10-01 18:39:00,263 Church St, New York City,NY,10001 +268484,iPhone,1,700.0,2019-10-18 13:56:00,380 Sunset St, Los Angeles,CA,90001 +268485,Wired Headphones,1,11.99,2019-10-26 09:53:00,191 Forest St, Atlanta,GA,30301 +268486,Bose SoundSport Headphones,1,99.99,2019-10-15 18:23:00,998 Wilson St, Atlanta,GA,30301 +268486,USB-C Charging Cable,1,11.95,2019-10-15 18:23:00,998 Wilson St, Atlanta,GA,30301 +268487,20in Monitor,1,109.99,2019-10-14 19:45:00,310 Meadow St, Boston,MA,02215 +268488,USB-C Charging Cable,1,11.95,2019-10-24 00:14:00,127 Madison St, Atlanta,GA,30301 +268489,USB-C Charging Cable,1,11.95,2019-10-16 21:01:00,529 Center St, Austin,TX,73301 +268490,Wired Headphones,1,11.99,2019-10-15 16:20:00,490 14th St, Seattle,WA,98101 +268491,Wired Headphones,1,11.99,2019-10-21 15:22:00,701 2nd St, Portland,OR,97035 +268492,AA Batteries (4-pack),2,3.84,2019-10-05 04:40:00,21 9th St, Atlanta,GA,30301 +268493,Lightning Charging Cable,1,14.95,2019-10-23 18:45:00,479 10th St, Atlanta,GA,30301 +268494,USB-C Charging Cable,1,11.95,2019-10-18 16:48:00,508 Adams St, San Francisco,CA,94016 +268495,27in 4K Gaming Monitor,1,389.99,2019-10-07 09:20:00,294 Meadow St, Atlanta,GA,30301 +268496,ThinkPad Laptop,1,999.99,2019-10-12 15:24:00,277 Highland St, Los Angeles,CA,90001 +268497,AAA Batteries (4-pack),1,2.99,2019-10-01 19:24:00,66 9th St, Los Angeles,CA,90001 +268498,Lightning Charging Cable,1,14.95,2019-10-08 14:32:00,377 North St, Boston,MA,02215 +268499,AA Batteries (4-pack),1,3.84,2019-10-06 04:28:00,347 Dogwood St, Portland,OR,97035 +268500,Apple Airpods Headphones,1,150.0,2019-10-03 12:53:00,513 Walnut St, Los Angeles,CA,90001 +268501,Bose SoundSport Headphones,1,99.99,2019-10-07 19:17:00,463 Meadow St, San Francisco,CA,94016 +268502,Apple Airpods Headphones,1,150.0,2019-10-17 00:59:00,443 5th St, San Francisco,CA,94016 +268502,Macbook Pro Laptop,1,1700.0,2019-10-17 00:59:00,443 5th St, San Francisco,CA,94016 +268503,AA Batteries (4-pack),1,3.84,2019-10-20 23:03:00,550 Ridge St, San Francisco,CA,94016 +268504,AA Batteries (4-pack),1,3.84,2019-10-04 18:41:00,866 10th St, Austin,TX,73301 +268505,Lightning Charging Cable,1,14.95,2019-10-08 22:34:00,676 Center St, Atlanta,GA,30301 +268506,USB-C Charging Cable,1,11.95,2019-10-03 02:36:00,120 Hickory St, San Francisco,CA,94016 +268506,Google Phone,1,600.0,2019-10-03 02:36:00,120 Hickory St, San Francisco,CA,94016 +268507,Wired Headphones,1,11.99,2019-10-22 16:07:00,834 Walnut St, Austin,TX,73301 +268508,AA Batteries (4-pack),1,3.84,2019-10-05 00:34:00,971 North St, Boston,MA,02215 +268509,Wired Headphones,1,11.99,2019-10-11 23:52:00,609 5th St, Los Angeles,CA,90001 +268510,AAA Batteries (4-pack),1,2.99,2019-10-10 08:04:00,560 Spruce St, Boston,MA,02215 +268511,Wired Headphones,1,11.99,2019-10-10 22:56:00,700 Pine St, Los Angeles,CA,90001 +268512,Lightning Charging Cable,1,14.95,2019-10-03 19:21:00,713 Johnson St, Los Angeles,CA,90001 +268513,Apple Airpods Headphones,1,150.0,2019-10-13 18:05:00,407 Sunset St, Seattle,WA,98101 +268514,27in FHD Monitor,1,149.99,2019-10-24 17:34:00,302 Willow St, Atlanta,GA,30301 +268515,27in FHD Monitor,1,149.99,2019-10-25 10:09:00,330 Walnut St, Portland,ME,04101 +268516,Vareebadd Phone,1,400.0,2019-10-01 20:01:00,890 Dogwood St, New York City,NY,10001 +268516,USB-C Charging Cable,1,11.95,2019-10-01 20:01:00,890 Dogwood St, New York City,NY,10001 +268517,Apple Airpods Headphones,1,150.0,2019-10-12 16:43:00,987 Lincoln St, New York City,NY,10001 +268518,Lightning Charging Cable,1,14.95,2019-10-28 12:29:00,368 4th St, Boston,MA,02215 +268519,AA Batteries (4-pack),1,3.84,2019-10-02 20:46:00,172 Wilson St, San Francisco,CA,94016 +268520,Flatscreen TV,1,300.0,2019-10-18 18:27:00,637 Maple St, New York City,NY,10001 +268521,Vareebadd Phone,1,400.0,2019-10-18 21:11:00,744 12th St, Seattle,WA,98101 +268522,Wired Headphones,1,11.99,2019-10-24 12:41:00,573 Pine St, Austin,TX,73301 +268523,AAA Batteries (4-pack),1,2.99,2019-10-27 16:20:00,738 Maple St, Boston,MA,02215 +268524,USB-C Charging Cable,1,11.95,2019-10-01 15:43:00,960 Hickory St, Seattle,WA,98101 +268525,AAA Batteries (4-pack),1,2.99,2019-10-23 15:41:00,856 Main St, San Francisco,CA,94016 +268526,Lightning Charging Cable,1,14.95,2019-10-27 06:39:00,768 14th St, New York City,NY,10001 +268527,Bose SoundSport Headphones,1,99.99,2019-10-07 10:57:00,753 River St, San Francisco,CA,94016 +268528,Google Phone,1,600.0,2019-10-06 16:55:00,12 Dogwood St, Los Angeles,CA,90001 +268529,USB-C Charging Cable,1,11.95,2019-10-27 23:09:00,95 River St, New York City,NY,10001 +268529,iPhone,1,700.0,2019-10-27 23:09:00,95 River St, New York City,NY,10001 +268530,AA Batteries (4-pack),2,3.84,2019-10-13 23:23:00,644 West St, Boston,MA,02215 +268531,AAA Batteries (4-pack),1,2.99,2019-10-22 18:36:00,619 Pine St, Seattle,WA,98101 +268532,AA Batteries (4-pack),1,3.84,2019-10-22 13:07:00,158 North St, New York City,NY,10001 +268533,Macbook Pro Laptop,1,1700.0,2019-10-26 21:51:00,834 North St, Atlanta,GA,30301 +268533,Bose SoundSport Headphones,1,99.99,2019-10-26 21:51:00,834 North St, Atlanta,GA,30301 +268534,Macbook Pro Laptop,1,1700.0,2019-10-16 11:47:00,182 Church St, Atlanta,GA,30301 +268535,Wired Headphones,1,11.99,2019-10-22 22:34:00,994 South St, Los Angeles,CA,90001 +268536,Bose SoundSport Headphones,1,99.99,2019-10-27 18:41:00,674 5th St, Dallas,TX,75001 +268537,27in 4K Gaming Monitor,1,389.99,2019-10-08 23:23:00,822 10th St, San Francisco,CA,94016 +268538,iPhone,1,700.0,2019-10-19 10:23:00,233 Church St, Atlanta,GA,30301 +268539,iPhone,1,700.0,2019-10-20 18:25:00,422 10th St, Boston,MA,02215 +268540,AAA Batteries (4-pack),2,2.99,2019-10-24 17:15:00,127 5th St, San Francisco,CA,94016 +268541,AA Batteries (4-pack),1,3.84,2019-10-07 14:58:00,854 Willow St, San Francisco,CA,94016 +268542,iPhone,1,700.0,2019-10-10 09:01:00,509 Sunset St, Los Angeles,CA,90001 +268543,Wired Headphones,1,11.99,2019-10-31 14:19:00,641 Ridge St, San Francisco,CA,94016 +268544,Apple Airpods Headphones,1,150.0,2019-10-10 09:42:00,401 Hill St, Atlanta,GA,30301 +268545,Wired Headphones,1,11.99,2019-10-12 21:10:00,837 Church St, San Francisco,CA,94016 +268546,Lightning Charging Cable,1,14.95,2019-10-31 07:52:00,628 8th St, Atlanta,GA,30301 +268547,Wired Headphones,1,11.99,2019-10-19 20:43:00,476 Jackson St, Boston,MA,02215 +268547,ThinkPad Laptop,1,999.99,2019-10-19 20:43:00,476 Jackson St, Boston,MA,02215 +268548,AAA Batteries (4-pack),1,2.99,2019-10-04 20:54:00,222 Cedar St, Boston,MA,02215 +268549,27in 4K Gaming Monitor,1,389.99,2019-10-14 18:28:00,775 Elm St, San Francisco,CA,94016 +268550,AAA Batteries (4-pack),1,2.99,2019-10-07 02:56:00,362 5th St, San Francisco,CA,94016 +268551,Lightning Charging Cable,1,14.95,2019-10-02 15:20:00,515 Pine St, San Francisco,CA,94016 +268552,USB-C Charging Cable,1,11.95,2019-10-20 21:55:00,86 Adams St, San Francisco,CA,94016 +268553,Wired Headphones,1,11.99,2019-10-28 16:43:00,480 Lincoln St, Portland,OR,97035 +268554,AA Batteries (4-pack),1,3.84,2019-10-15 22:27:00,528 Madison St, New York City,NY,10001 +268555,Wired Headphones,1,11.99,2019-10-03 11:10:00,307 Cedar St, Atlanta,GA,30301 +268556,34in Ultrawide Monitor,1,379.99,2019-10-12 10:19:00,278 1st St, San Francisco,CA,94016 +268557,AAA Batteries (4-pack),1,2.99,2019-10-06 11:04:00,660 8th St, Dallas,TX,75001 +268558,Bose SoundSport Headphones,1,99.99,2019-10-02 09:20:00,670 Johnson St, San Francisco,CA,94016 +268559,Bose SoundSport Headphones,1,99.99,2019-10-30 21:28:00,337 North St, Portland,OR,97035 +268560,USB-C Charging Cable,1,11.95,2019-10-25 12:29:00,265 Walnut St, Atlanta,GA,30301 +268561,Apple Airpods Headphones,1,150.0,2019-10-27 12:52:00,42 Chestnut St, Los Angeles,CA,90001 +268562,USB-C Charging Cable,1,11.95,2019-10-10 21:08:00,8 Adams St, Los Angeles,CA,90001 +268563,Lightning Charging Cable,1,14.95,2019-10-11 17:30:00,825 Highland St, Portland,OR,97035 +268564,Apple Airpods Headphones,1,150.0,2019-10-21 10:36:00,381 Pine St, Dallas,TX,75001 +268565,27in 4K Gaming Monitor,1,389.99,2019-10-04 16:05:00,552 6th St, Los Angeles,CA,90001 +268566,Bose SoundSport Headphones,1,99.99,2019-10-21 00:12:00,278 12th St, San Francisco,CA,94016 +268567,Lightning Charging Cable,2,14.95,2019-10-10 16:41:00,80 Sunset St, Seattle,WA,98101 +268568,Bose SoundSport Headphones,1,99.99,2019-10-21 13:19:00,439 6th St, San Francisco,CA,94016 +268569,AA Batteries (4-pack),1,3.84,2019-10-22 05:43:00,410 Lake St, San Francisco,CA,94016 +268570,Bose SoundSport Headphones,1,99.99,2019-10-13 00:49:00,436 13th St, Austin,TX,73301 +268571,AAA Batteries (4-pack),2,2.99,2019-10-20 06:36:00,607 Highland St, San Francisco,CA,94016 +268572,Lightning Charging Cable,3,14.95,2019-10-23 15:21:00,905 Willow St, Boston,MA,02215 +268573,AA Batteries (4-pack),1,3.84,2019-10-02 14:14:00,270 5th St, Portland,ME,04101 +268574,AA Batteries (4-pack),2,3.84,2019-10-19 02:30:00,449 14th St, Atlanta,GA,30301 +268575,Bose SoundSport Headphones,1,99.99,2019-10-30 11:18:00,191 Maple St, Boston,MA,02215 +268576,27in FHD Monitor,1,149.99,2019-10-08 10:26:00,926 Wilson St, Los Angeles,CA,90001 +268577,AAA Batteries (4-pack),1,2.99,2019-10-30 11:56:00,275 Lakeview St, Austin,TX,73301 +268578,Lightning Charging Cable,1,14.95,2019-10-13 23:52:00,422 Highland St, Portland,OR,97035 +268579,Macbook Pro Laptop,1,1700.0,2019-10-13 14:07:00,639 5th St, San Francisco,CA,94016 +268580,Bose SoundSport Headphones,1,99.99,2019-10-02 13:59:00,592 Dogwood St, New York City,NY,10001 +268581,Macbook Pro Laptop,1,1700.0,2019-10-04 08:24:00,317 Spruce St, Boston,MA,02215 +268582,Apple Airpods Headphones,1,150.0,2019-10-14 18:24:00,586 14th St, Los Angeles,CA,90001 +268583,Apple Airpods Headphones,1,150.0,2019-10-22 20:37:00,337 9th St, Seattle,WA,98101 +268584,USB-C Charging Cable,1,11.95,2019-10-23 21:19:00,214 Forest St, Los Angeles,CA,90001 +268585,iPhone,1,700.0,2019-10-22 19:21:00,16 12th St, San Francisco,CA,94016 +268586,Lightning Charging Cable,1,14.95,2019-10-08 18:56:00,586 Sunset St, Los Angeles,CA,90001 +268587,Wired Headphones,1,11.99,2019-10-30 17:57:00,686 Chestnut St, Boston,MA,02215 +268588,Wired Headphones,1,11.99,2019-10-18 11:17:00,283 North St, Los Angeles,CA,90001 +268589,AAA Batteries (4-pack),1,2.99,2019-10-09 16:19:00,721 7th St, Los Angeles,CA,90001 +268590,Google Phone,1,600.0,2019-10-11 17:34:00,451 Maple St, New York City,NY,10001 +268591,Wired Headphones,1,11.99,2019-10-24 09:45:00,444 Adams St, San Francisco,CA,94016 +268592,AAA Batteries (4-pack),1,2.99,2019-10-28 18:33:00,60 8th St, Los Angeles,CA,90001 +268593,AA Batteries (4-pack),1,3.84,2019-10-12 10:36:00,427 Walnut St, New York City,NY,10001 +268594,USB-C Charging Cable,1,11.95,2019-10-15 12:17:00,716 13th St, San Francisco,CA,94016 +268595,34in Ultrawide Monitor,1,379.99,2019-10-17 11:54:00,782 Pine St, Los Angeles,CA,90001 +268596,Lightning Charging Cable,1,14.95,2019-10-13 07:35:00,344 10th St, Los Angeles,CA,90001 +268597,Wired Headphones,1,11.99,2019-10-17 11:54:00,354 13th St, Seattle,WA,98101 +268598,USB-C Charging Cable,1,11.95,2019-10-08 18:18:00,690 8th St, Los Angeles,CA,90001 +268599,iPhone,1,700.0,2019-10-04 12:06:00,457 Center St, Los Angeles,CA,90001 +268600,Lightning Charging Cable,1,14.95,2019-10-14 08:35:00,562 5th St, San Francisco,CA,94016 +268601,AAA Batteries (4-pack),1,2.99,2019-10-31 20:35:00,736 North St, San Francisco,CA,94016 +268602,USB-C Charging Cable,1,11.95,2019-10-25 18:27:00,142 Church St, Boston,MA,02215 +268603,AAA Batteries (4-pack),1,2.99,2019-10-24 22:25:00,33 Hickory St, New York City,NY,10001 +268604,27in 4K Gaming Monitor,1,389.99,2019-10-08 09:10:00,475 Sunset St, San Francisco,CA,94016 +268605,Flatscreen TV,1,300.0,2019-10-26 15:10:00,657 Forest St, Portland,OR,97035 +268606,Lightning Charging Cable,1,14.95,2019-10-07 10:12:00,150 2nd St, New York City,NY,10001 +268607,Wired Headphones,1,11.99,2019-10-17 11:59:00,469 Adams St, Seattle,WA,98101 +268608,Apple Airpods Headphones,1,150.0,2019-10-28 19:38:00,16 Meadow St, Boston,MA,02215 +268609,AAA Batteries (4-pack),1,2.99,2019-10-25 19:43:00,885 Ridge St, Seattle,WA,98101 +268610,20in Monitor,1,109.99,2019-10-17 11:03:00,223 Lake St, Los Angeles,CA,90001 +268611,Wired Headphones,1,11.99,2019-10-12 11:30:00,411 Madison St, Dallas,TX,75001 +268612,Wired Headphones,1,11.99,2019-10-27 19:28:00,55 6th St, New York City,NY,10001 +268613,AA Batteries (4-pack),1,3.84,2019-10-26 07:05:00,399 Pine St, Los Angeles,CA,90001 +268614,Macbook Pro Laptop,1,1700.0,2019-10-31 19:44:00,884 2nd St, San Francisco,CA,94016 +268615,AA Batteries (4-pack),2,3.84,2019-10-27 16:37:00,749 2nd St, Seattle,WA,98101 +268616,Apple Airpods Headphones,1,150.0,2019-10-21 11:29:00,422 Walnut St, New York City,NY,10001 +268617,Bose SoundSport Headphones,1,99.99,2019-10-13 21:01:00,618 South St, San Francisco,CA,94016 +268618,27in 4K Gaming Monitor,1,389.99,2019-10-29 01:27:00,604 9th St, Portland,OR,97035 +268619,iPhone,1,700.0,2019-10-14 17:24:00,330 8th St, Austin,TX,73301 +268619,Lightning Charging Cable,1,14.95,2019-10-14 17:24:00,330 8th St, Austin,TX,73301 +268619,Wired Headphones,1,11.99,2019-10-14 17:24:00,330 8th St, Austin,TX,73301 +268620,Lightning Charging Cable,1,14.95,2019-10-07 08:39:00,517 Hill St, Los Angeles,CA,90001 +268621,Lightning Charging Cable,1,14.95,2019-10-19 02:32:00,810 4th St, Portland,OR,97035 +268622,34in Ultrawide Monitor,1,379.99,2019-10-17 11:09:00,859 River St, Dallas,TX,75001 +268623,AA Batteries (4-pack),3,3.84,2019-10-20 12:30:00,765 2nd St, San Francisco,CA,94016 +268623,AAA Batteries (4-pack),3,2.99,2019-10-20 12:30:00,765 2nd St, San Francisco,CA,94016 +268624,Google Phone,1,600.0,2019-10-16 23:41:00,489 11th St, Boston,MA,02215 +268625,Google Phone,1,600.0,2019-10-16 19:38:00,795 4th St, Boston,MA,02215 +268625,Wired Headphones,1,11.99,2019-10-16 19:38:00,795 4th St, Boston,MA,02215 +268626,27in FHD Monitor,1,149.99,2019-10-04 09:18:00,958 Jackson St, Austin,TX,73301 +268627,Lightning Charging Cable,1,14.95,2019-10-27 22:07:00,466 Lakeview St, San Francisco,CA,94016 +268628,Lightning Charging Cable,1,14.95,2019-10-25 11:13:00,279 4th St, Dallas,TX,75001 +268629,Vareebadd Phone,1,400.0,2019-10-10 23:52:00,735 Forest St, Seattle,WA,98101 +268629,USB-C Charging Cable,1,11.95,2019-10-10 23:52:00,735 Forest St, Seattle,WA,98101 +268630,Wired Headphones,1,11.99,2019-10-18 09:50:00,880 6th St, Boston,MA,02215 +268631,Vareebadd Phone,1,400.0,2019-10-21 20:41:00,865 Maple St, New York City,NY,10001 +268631,USB-C Charging Cable,1,11.95,2019-10-21 20:41:00,865 Maple St, New York City,NY,10001 +268632,27in 4K Gaming Monitor,1,389.99,2019-10-28 11:07:00,739 8th St, Boston,MA,02215 +268633,Lightning Charging Cable,1,14.95,2019-10-28 13:13:00,41 Johnson St, Atlanta,GA,30301 +268634,Lightning Charging Cable,1,14.95,2019-10-09 13:19:00,947 7th St, Atlanta,GA,30301 +268635,Apple Airpods Headphones,1,150.0,2019-10-31 02:29:00,509 Madison St, Los Angeles,CA,90001 +268636,27in 4K Gaming Monitor,1,389.99,2019-10-30 16:08:00,861 9th St, Dallas,TX,75001 +268637,Apple Airpods Headphones,1,150.0,2019-10-17 10:26:00,130 6th St, Seattle,WA,98101 +268638,Flatscreen TV,1,300.0,2019-10-18 13:35:00,651 Cherry St, Austin,TX,73301 +268639,Apple Airpods Headphones,1,150.0,2019-10-17 07:52:00,303 Johnson St, Portland,ME,04101 +268640,AAA Batteries (4-pack),1,2.99,2019-10-13 09:25:00,502 Chestnut St, Atlanta,GA,30301 +268641,USB-C Charging Cable,2,11.95,2019-10-31 09:04:00,695 2nd St, Atlanta,GA,30301 +268642,Apple Airpods Headphones,1,150.0,2019-10-19 23:02:00,985 Pine St, Atlanta,GA,30301 +268643,USB-C Charging Cable,1,11.95,2019-10-22 13:45:00,851 6th St, San Francisco,CA,94016 +268644,AA Batteries (4-pack),1,3.84,2019-10-25 23:09:00,517 Walnut St, San Francisco,CA,94016 +268645,AA Batteries (4-pack),2,3.84,2019-10-19 12:56:00,767 7th St, San Francisco,CA,94016 +268646,27in 4K Gaming Monitor,1,389.99,2019-10-24 14:02:00,108 9th St, New York City,NY,10001 +268647,34in Ultrawide Monitor,1,379.99,2019-10-10 21:40:00,4 Washington St, San Francisco,CA,94016 +268648,27in FHD Monitor,1,149.99,2019-10-03 11:55:00,96 South St, Atlanta,GA,30301 +268649,AA Batteries (4-pack),1,3.84,2019-10-07 17:27:00,209 5th St, New York City,NY,10001 +268650,Apple Airpods Headphones,1,150.0,2019-10-28 13:50:00,893 6th St, Boston,MA,02215 +268651,Apple Airpods Headphones,1,150.0,2019-10-05 10:05:00,477 14th St, Boston,MA,02215 +268652,Wired Headphones,1,11.99,2019-10-05 22:33:00,402 13th St, Los Angeles,CA,90001 +268653,Google Phone,1,600.0,2019-10-08 08:29:00,331 Elm St, Los Angeles,CA,90001 +268654,Apple Airpods Headphones,1,150.0,2019-10-31 13:59:00,970 River St, Austin,TX,73301 +268655,27in 4K Gaming Monitor,1,389.99,2019-10-31 12:05:00,812 Meadow St, Seattle,WA,98101 +268656,Flatscreen TV,1,300.0,2019-10-14 18:24:00,373 Walnut St, Los Angeles,CA,90001 +268657,Lightning Charging Cable,1,14.95,2019-10-10 15:26:00,129 Park St, Los Angeles,CA,90001 +268658,34in Ultrawide Monitor,1,379.99,2019-10-22 17:13:00,912 Washington St, Los Angeles,CA,90001 +268659,27in FHD Monitor,1,149.99,2019-10-27 21:08:00,233 Washington St, New York City,NY,10001 +268660,27in FHD Monitor,1,149.99,2019-10-22 23:01:00,575 Park St, Dallas,TX,75001 +268661,Apple Airpods Headphones,1,150.0,2019-10-22 19:44:00,79 Johnson St, San Francisco,CA,94016 +268662,Wired Headphones,1,11.99,2019-10-14 10:45:00,462 9th St, Boston,MA,02215 +268663,AA Batteries (4-pack),2,3.84,2019-10-07 14:08:00,961 4th St, San Francisco,CA,94016 +268664,AAA Batteries (4-pack),1,2.99,2019-10-04 13:15:00,782 Ridge St, Dallas,TX,75001 +268665,USB-C Charging Cable,1,11.95,2019-10-27 15:46:00,661 Spruce St, New York City,NY,10001 +268666,USB-C Charging Cable,1,11.95,2019-10-03 10:33:00,959 8th St, New York City,NY,10001 +268667,Apple Airpods Headphones,1,150.0,2019-10-05 09:18:00,974 Chestnut St, New York City,NY,10001 +268668,AA Batteries (4-pack),1,3.84,2019-10-03 13:04:00,228 Jackson St, San Francisco,CA,94016 +268669,27in FHD Monitor,1,149.99,2019-10-19 14:10:00,877 Dogwood St, Boston,MA,02215 +268670,AA Batteries (4-pack),1,3.84,2019-10-23 10:46:00,380 Lincoln St, Los Angeles,CA,90001 +268671,AAA Batteries (4-pack),2,2.99,2019-10-27 14:20:00,200 4th St, Boston,MA,02215 +268672,Apple Airpods Headphones,1,150.0,2019-10-18 09:50:00,840 2nd St, Dallas,TX,75001 +268673,USB-C Charging Cable,1,11.95,2019-10-18 21:04:00,21 Jefferson St, New York City,NY,10001 +268674,Wired Headphones,1,11.99,2019-10-23 09:54:00,244 11th St, Los Angeles,CA,90001 +268675,AAA Batteries (4-pack),1,2.99,2019-10-05 17:35:00,880 West St, San Francisco,CA,94016 +268676,USB-C Charging Cable,1,11.95,2019-10-26 11:47:00,759 Walnut St, Los Angeles,CA,90001 +268677,iPhone,1,700.0,2019-10-26 23:52:00,364 Maple St, Atlanta,GA,30301 +268678,USB-C Charging Cable,1,11.95,2019-10-24 21:16:00,319 14th St, Los Angeles,CA,90001 +268679,USB-C Charging Cable,2,11.95,2019-10-01 10:17:00,59 Center St, Seattle,WA,98101 +268680,Bose SoundSport Headphones,1,99.99,2019-10-12 22:57:00,453 Jefferson St, San Francisco,CA,94016 +268681,Bose SoundSport Headphones,1,99.99,2019-10-31 15:22:00,690 Hickory St, Dallas,TX,75001 +268682,Vareebadd Phone,1,400.0,2019-10-22 13:11:00,55 Highland St, Seattle,WA,98101 +268683,Apple Airpods Headphones,1,150.0,2019-10-23 14:48:00,780 1st St, Atlanta,GA,30301 +268684,34in Ultrawide Monitor,1,379.99,2019-10-21 22:35:00,881 13th St, Dallas,TX,75001 +268684,USB-C Charging Cable,1,11.95,2019-10-21 22:35:00,881 13th St, Dallas,TX,75001 +268685,Apple Airpods Headphones,1,150.0,2019-10-17 10:38:00,226 10th St, Portland,OR,97035 +268686,Bose SoundSport Headphones,1,99.99,2019-10-09 03:48:00,336 Church St, Portland,OR,97035 +268687,Bose SoundSport Headphones,1,99.99,2019-10-06 13:08:00,870 6th St, San Francisco,CA,94016 +268688,USB-C Charging Cable,1,11.95,2019-10-24 09:11:00,956 13th St, Portland,ME,04101 +268689,USB-C Charging Cable,2,11.95,2019-10-28 15:06:00,732 10th St, Dallas,TX,75001 +268690,Apple Airpods Headphones,1,150.0,2019-10-02 19:45:00,637 Maple St, San Francisco,CA,94016 +268691,USB-C Charging Cable,1,11.95,2019-10-16 09:44:00,381 West St, New York City,NY,10001 +268692,USB-C Charging Cable,1,11.95,2019-10-24 16:01:00,294 Main St, Atlanta,GA,30301 +268693,Google Phone,1,600.0,2019-10-16 21:01:00,351 Willow St, New York City,NY,10001 +268693,Wired Headphones,1,11.99,2019-10-16 21:01:00,351 Willow St, New York City,NY,10001 +268694,USB-C Charging Cable,1,11.95,2019-10-02 13:03:00,63 Cedar St, Los Angeles,CA,90001 +268695,USB-C Charging Cable,1,11.95,2019-10-17 09:44:00,957 Hill St, Los Angeles,CA,90001 +268696,AAA Batteries (4-pack),1,2.99,2019-10-10 23:22:00,969 Spruce St, Los Angeles,CA,90001 +268697,Wired Headphones,3,11.99,2019-10-01 16:02:00,734 8th St, New York City,NY,10001 +268698,Bose SoundSport Headphones,1,99.99,2019-10-15 20:58:00,91 Forest St, San Francisco,CA,94016 +268699,iPhone,1,700.0,2019-10-13 09:02:00,468 South St, Seattle,WA,98101 +268700,Google Phone,1,600.0,2019-10-15 19:06:00,482 1st St, Seattle,WA,98101 +268700,Bose SoundSport Headphones,1,99.99,2019-10-15 19:06:00,482 1st St, Seattle,WA,98101 +268701,AAA Batteries (4-pack),4,2.99,2019-10-28 16:33:00,493 Center St, San Francisco,CA,94016 +268702,Lightning Charging Cable,1,14.95,2019-10-05 19:53:00,149 Willow St, Dallas,TX,75001 +268703,Lightning Charging Cable,1,14.95,2019-10-07 08:38:00,304 13th St, New York City,NY,10001 +268704,Wired Headphones,1,11.99,2019-10-06 13:09:00,473 Dogwood St, Atlanta,GA,30301 +268705,Vareebadd Phone,1,400.0,2019-10-02 19:55:00,487 Sunset St, Boston,MA,02215 +268705,USB-C Charging Cable,1,11.95,2019-10-02 19:55:00,487 Sunset St, Boston,MA,02215 +268706,27in 4K Gaming Monitor,1,389.99,2019-10-09 12:01:00,50 5th St, Atlanta,GA,30301 +268707,Apple Airpods Headphones,1,150.0,2019-10-02 17:32:00,864 6th St, San Francisco,CA,94016 +268708,Lightning Charging Cable,1,14.95,2019-10-12 08:57:00,578 North St, New York City,NY,10001 +268709,AAA Batteries (4-pack),1,2.99,2019-10-09 16:22:00,996 Sunset St, Boston,MA,02215 +268710,Lightning Charging Cable,1,14.95,2019-10-01 18:15:00,112 8th St, New York City,NY,10001 +268711,20in Monitor,1,109.99,2019-10-05 22:33:00,356 West St, New York City,NY,10001 +268712,AAA Batteries (4-pack),1,2.99,2019-10-27 13:49:00,704 Center St, Los Angeles,CA,90001 +268713,Lightning Charging Cable,1,14.95,2019-10-31 11:31:00,600 Lincoln St, Boston,MA,02215 +268714,USB-C Charging Cable,1,11.95,2019-10-24 17:15:00,58 Cherry St, New York City,NY,10001 +268715,AAA Batteries (4-pack),1,2.99,2019-10-25 12:01:00,141 Highland St, Boston,MA,02215 +268716,AA Batteries (4-pack),1,3.84,2019-10-17 17:35:00,271 Center St, Los Angeles,CA,90001 +268717,Vareebadd Phone,1,400.0,2019-10-08 14:03:00,384 West St, Los Angeles,CA,90001 +268718,AA Batteries (4-pack),1,3.84,2019-10-04 10:54:00,531 Jefferson St, Los Angeles,CA,90001 +268719,iPhone,1,700.0,2019-10-02 19:42:00,530 Madison St, San Francisco,CA,94016 +268720,AA Batteries (4-pack),1,3.84,2019-10-15 18:14:00,549 12th St, San Francisco,CA,94016 +268721,Lightning Charging Cable,1,14.95,2019-10-19 18:07:00,251 Lincoln St, Boston,MA,02215 +268722,AA Batteries (4-pack),1,3.84,2019-10-30 15:50:00,597 Hickory St, Boston,MA,02215 +268723,Lightning Charging Cable,1,14.95,2019-10-05 03:34:00,259 Ridge St, Portland,OR,97035 +268724,AA Batteries (4-pack),1,3.84,2019-10-15 22:52:00,357 Main St, Austin,TX,73301 +268725,ThinkPad Laptop,1,999.99,2019-10-25 16:57:00,173 10th St, Atlanta,GA,30301 +268726,Flatscreen TV,1,300.0,2019-10-04 12:15:00,606 10th St, San Francisco,CA,94016 +268727,20in Monitor,1,109.99,2019-10-15 22:52:00,164 Dogwood St, Boston,MA,02215 +268728,Apple Airpods Headphones,1,150.0,2019-10-16 01:28:00,230 12th St, Los Angeles,CA,90001 +268729,Bose SoundSport Headphones,1,99.99,2019-10-26 16:05:00,457 Main St, Boston,MA,02215 +268730,USB-C Charging Cable,1,11.95,2019-10-17 12:36:00,83 Meadow St, Boston,MA,02215 +268731,Lightning Charging Cable,1,14.95,2019-10-09 08:23:00,649 West St, Austin,TX,73301 +268732,Lightning Charging Cable,1,14.95,2019-10-20 21:01:00,603 West St, Boston,MA,02215 +268733,Wired Headphones,1,11.99,2019-10-12 12:50:00,668 11th St, Atlanta,GA,30301 +268734,USB-C Charging Cable,1,11.95,2019-10-06 19:46:00,274 West St, New York City,NY,10001 +268735,20in Monitor,1,109.99,2019-10-13 18:11:00,120 Cedar St, Boston,MA,02215 +268736,AAA Batteries (4-pack),2,2.99,2019-10-17 14:39:00,144 Jackson St, New York City,NY,10001 +268737,Wired Headphones,1,11.99,2019-10-24 15:17:00,198 5th St, San Francisco,CA,94016 +268738,Lightning Charging Cable,1,14.95,2019-10-18 20:43:00,95 Jackson St, San Francisco,CA,94016 +268739,27in 4K Gaming Monitor,1,389.99,2019-10-05 16:57:00,856 Dogwood St, San Francisco,CA,94016 +268740,Lightning Charging Cable,1,14.95,2019-10-28 12:51:00,310 Sunset St, Seattle,WA,98101 +268741,AAA Batteries (4-pack),1,2.99,2019-10-15 21:48:00,229 Hill St, Los Angeles,CA,90001 +268742,AA Batteries (4-pack),1,3.84,2019-10-18 19:41:00,882 River St, San Francisco,CA,94016 +268742,Google Phone,1,600.0,2019-10-18 19:41:00,882 River St, San Francisco,CA,94016 +268743,Wired Headphones,1,11.99,2019-10-30 18:54:00,372 14th St, Boston,MA,02215 +268744,AA Batteries (4-pack),4,3.84,2019-10-17 17:53:00,625 6th St, Dallas,TX,75001 +268745,USB-C Charging Cable,1,11.95,2019-10-03 14:29:00,147 8th St, Austin,TX,73301 +268746,Apple Airpods Headphones,1,150.0,2019-10-24 10:31:00,244 11th St, Los Angeles,CA,90001 +268747,27in FHD Monitor,1,149.99,2019-10-24 13:32:00,781 Center St, Seattle,WA,98101 +268748,34in Ultrawide Monitor,1,379.99,2019-10-31 13:33:00,727 Dogwood St, Dallas,TX,75001 +268749,AAA Batteries (4-pack),4,2.99,2019-10-26 10:16:00,177 8th St, San Francisco,CA,94016 +268750,USB-C Charging Cable,1,11.95,2019-10-03 16:47:00,200 7th St, San Francisco,CA,94016 +268751,Bose SoundSport Headphones,1,99.99,2019-10-14 23:25:00,639 Highland St, San Francisco,CA,94016 +268752,Macbook Pro Laptop,1,1700.0,2019-10-29 10:55:00,126 Wilson St, Dallas,TX,75001 +268753,iPhone,1,700.0,2019-10-02 23:17:00,375 9th St, New York City,NY,10001 +268753,Apple Airpods Headphones,1,150.0,2019-10-02 23:17:00,375 9th St, New York City,NY,10001 +268754,AAA Batteries (4-pack),2,2.99,2019-10-07 18:07:00,864 14th St, San Francisco,CA,94016 +268755,27in FHD Monitor,1,149.99,2019-10-16 23:35:00,802 Cherry St, Los Angeles,CA,90001 +268756,27in FHD Monitor,1,149.99,2019-10-01 20:28:00,791 Wilson St, Los Angeles,CA,90001 +268757,USB-C Charging Cable,1,11.95,2019-10-12 14:27:00,615 Willow St, Dallas,TX,75001 +268758,27in FHD Monitor,1,149.99,2019-10-06 21:55:00,422 Center St, Los Angeles,CA,90001 +268759,AAA Batteries (4-pack),1,2.99,2019-10-28 07:53:00,911 Spruce St, Boston,MA,02215 +268760,AA Batteries (4-pack),2,3.84,2019-10-25 12:54:00,26 Main St, San Francisco,CA,94016 +268761,Wired Headphones,1,11.99,2019-10-11 17:27:00,846 Jefferson St, San Francisco,CA,94016 +268762,Wired Headphones,1,11.99,2019-10-10 21:10:00,88 1st St, Atlanta,GA,30301 +268763,Macbook Pro Laptop,1,1700.0,2019-10-08 20:48:00,87 2nd St, Dallas,TX,75001 +268764,AAA Batteries (4-pack),2,2.99,2019-10-09 17:27:00,788 14th St, Seattle,WA,98101 +268765,Bose SoundSport Headphones,1,99.99,2019-10-29 03:16:00,226 14th St, Los Angeles,CA,90001 +268766,Bose SoundSport Headphones,1,99.99,2019-10-29 18:21:00,543 2nd St, San Francisco,CA,94016 +268767,Bose SoundSport Headphones,1,99.99,2019-10-10 22:19:00,948 South St, Portland,OR,97035 +268768,Wired Headphones,1,11.99,2019-10-18 17:01:00,426 7th St, San Francisco,CA,94016 +268769,Apple Airpods Headphones,1,150.0,2019-10-29 13:51:00,527 11th St, Dallas,TX,75001 +268770,iPhone,1,700.0,2019-10-12 12:59:00,833 Jefferson St, Portland,OR,97035 +268770,Wired Headphones,1,11.99,2019-10-12 12:59:00,833 Jefferson St, Portland,OR,97035 +268771,AAA Batteries (4-pack),1,2.99,2019-10-27 08:54:00,578 Center St, New York City,NY,10001 +268772,Wired Headphones,2,11.99,2019-10-07 10:07:00,357 11th St, Portland,OR,97035 +268773,USB-C Charging Cable,1,11.95,2019-10-15 11:35:00,278 Highland St, New York City,NY,10001 +268774,Bose SoundSport Headphones,1,99.99,2019-10-31 12:21:00,389 Forest St, Los Angeles,CA,90001 +268775,AA Batteries (4-pack),1,3.84,2019-10-10 18:20:00,280 Hill St, Los Angeles,CA,90001 +268776,Lightning Charging Cable,1,14.95,2019-10-18 09:31:00,798 Church St, Dallas,TX,75001 +268777,Bose SoundSport Headphones,1,99.99,2019-10-11 14:33:00,493 Maple St, Portland,OR,97035 +268778,AAA Batteries (4-pack),2,2.99,2019-10-21 21:52:00,559 4th St, Austin,TX,73301 +268779,ThinkPad Laptop,1,999.99,2019-10-15 21:46:00,31 5th St, New York City,NY,10001 +268780,AAA Batteries (4-pack),2,2.99,2019-10-17 11:52:00,81 Cedar St, New York City,NY,10001 +268781,USB-C Charging Cable,1,11.95,2019-10-17 01:30:00,413 9th St, Los Angeles,CA,90001 +268782,Bose SoundSport Headphones,2,99.99,2019-10-30 19:12:00,591 Jackson St, Portland,ME,04101 +268783,AAA Batteries (4-pack),2,2.99,2019-10-22 10:54:00,83 5th St, San Francisco,CA,94016 +268784,AAA Batteries (4-pack),1,2.99,2019-10-03 22:17:00,954 7th St, San Francisco,CA,94016 +268785,Macbook Pro Laptop,1,1700.0,2019-10-11 22:26:00,138 Madison St, Dallas,TX,75001 +268786,Lightning Charging Cable,1,14.95,2019-10-08 15:42:00,134 Chestnut St, Seattle,WA,98101 +268787,27in 4K Gaming Monitor,1,389.99,2019-10-02 09:30:00,558 14th St, Portland,OR,97035 +268788,AAA Batteries (4-pack),1,2.99,2019-10-08 14:38:00,651 Main St, Austin,TX,73301 +268789,Wired Headphones,1,11.99,2019-10-02 18:26:00,497 11th St, San Francisco,CA,94016 +268790,AA Batteries (4-pack),1,3.84,2019-10-05 10:44:00,611 Cedar St, San Francisco,CA,94016 +268791,Wired Headphones,1,11.99,2019-10-09 19:28:00,999 North St, San Francisco,CA,94016 +268792,Wired Headphones,1,11.99,2019-10-11 14:45:00,835 Hill St, Dallas,TX,75001 +268793,AAA Batteries (4-pack),1,2.99,2019-10-25 21:49:00,322 Ridge St, Seattle,WA,98101 +268794,20in Monitor,1,109.99,2019-10-11 12:10:00,393 Dogwood St, Los Angeles,CA,90001 +268795,USB-C Charging Cable,1,11.95,2019-10-07 13:39:00,605 13th St, San Francisco,CA,94016 +268796,Apple Airpods Headphones,1,150.0,2019-10-06 22:17:00,879 Cherry St, Los Angeles,CA,90001 +268797,Lightning Charging Cable,1,14.95,2019-10-20 17:46:00,485 Main St, San Francisco,CA,94016 +268798,Lightning Charging Cable,1,14.95,2019-10-17 17:59:00,830 Elm St, Los Angeles,CA,90001 +268799,Apple Airpods Headphones,1,150.0,2019-10-15 00:52:00,795 7th St, Los Angeles,CA,90001 +268800,Wired Headphones,1,11.99,2019-10-30 11:17:00,249 10th St, San Francisco,CA,94016 +268801,Macbook Pro Laptop,1,1700.0,2019-10-27 13:28:00,95 Sunset St, Dallas,TX,75001 +268802,AAA Batteries (4-pack),2,2.99,2019-10-26 16:16:00,244 8th St, New York City,NY,10001 +268803,USB-C Charging Cable,1,11.95,2019-10-04 19:25:00,861 North St, Boston,MA,02215 +268804,27in 4K Gaming Monitor,1,389.99,2019-10-28 12:58:00,562 Chestnut St, Atlanta,GA,30301 +268805,Wired Headphones,1,11.99,2019-10-30 23:47:00,916 Lakeview St, Boston,MA,02215 +268806,USB-C Charging Cable,1,11.95,2019-10-26 02:10:00,445 Elm St, Boston,MA,02215 +268807,Lightning Charging Cable,1,14.95,2019-10-28 23:36:00,417 7th St, Los Angeles,CA,90001 +268808,Google Phone,1,600.0,2019-10-02 19:54:00,36 Church St, Boston,MA,02215 +268809,AA Batteries (4-pack),1,3.84,2019-10-08 09:12:00,592 10th St, New York City,NY,10001 +268810,27in 4K Gaming Monitor,1,389.99,2019-10-27 20:32:00,23 9th St, San Francisco,CA,94016 +268811,Apple Airpods Headphones,1,150.0,2019-10-20 16:33:00,852 Elm St, Seattle,WA,98101 +268812,Lightning Charging Cable,2,14.95,2019-10-01 12:04:00,517 Washington St, Los Angeles,CA,90001 +268813,Apple Airpods Headphones,1,150.0,2019-10-24 14:17:00,907 14th St, New York City,NY,10001 +268814,AA Batteries (4-pack),2,3.84,2019-10-18 17:38:00,58 5th St, Portland,OR,97035 +268815,iPhone,1,700.0,2019-10-27 20:21:00,159 4th St, New York City,NY,10001 +268816,Apple Airpods Headphones,1,150.0,2019-10-15 06:21:00,965 Willow St, Los Angeles,CA,90001 +268817,27in FHD Monitor,1,149.99,2019-10-19 14:55:00,677 Hill St, Los Angeles,CA,90001 +268818,USB-C Charging Cable,2,11.95,2019-10-02 20:09:00,740 13th St, New York City,NY,10001 +268819,USB-C Charging Cable,1,11.95,2019-10-16 19:30:00,132 Meadow St, Los Angeles,CA,90001 +268820,USB-C Charging Cable,1,11.95,2019-10-05 18:32:00,619 Forest St, Austin,TX,73301 +268821,Wired Headphones,1,11.99,2019-10-22 11:36:00,941 13th St, Austin,TX,73301 +268822,ThinkPad Laptop,1,999.99,2019-10-17 15:22:00,229 Cedar St, San Francisco,CA,94016 +268823,Bose SoundSport Headphones,1,99.99,2019-10-16 18:50:00,418 River St, Dallas,TX,75001 +268824,Wired Headphones,1,11.99,2019-10-20 13:53:00,901 West St, San Francisco,CA,94016 +268825,AAA Batteries (4-pack),4,2.99,2019-10-18 14:22:00,956 Dogwood St, San Francisco,CA,94016 +268826,Apple Airpods Headphones,1,150.0,2019-10-19 10:40:00,458 8th St, Dallas,TX,75001 +268826,Bose SoundSport Headphones,1,99.99,2019-10-19 10:40:00,458 8th St, Dallas,TX,75001 +268827,USB-C Charging Cable,1,11.95,2019-10-11 13:30:00,843 Madison St, Atlanta,GA,30301 +268827,Lightning Charging Cable,1,14.95,2019-10-11 13:30:00,843 Madison St, Atlanta,GA,30301 +268828,Bose SoundSport Headphones,1,99.99,2019-10-08 17:06:00,755 14th St, New York City,NY,10001 +268829,iPhone,1,700.0,2019-10-20 21:10:00,344 South St, Boston,MA,02215 +268830,Bose SoundSport Headphones,1,99.99,2019-10-28 08:39:00,22 Park St, Seattle,WA,98101 +268831,AAA Batteries (4-pack),1,2.99,2019-10-18 12:05:00,796 13th St, Seattle,WA,98101 +268832,AA Batteries (4-pack),1,3.84,2019-10-15 17:39:00,833 Church St, New York City,NY,10001 +268833,AAA Batteries (4-pack),1,2.99,2019-10-28 19:30:00,773 7th St, New York City,NY,10001 +268834,USB-C Charging Cable,1,11.95,2019-10-11 07:38:00,66 Willow St, San Francisco,CA,94016 +268835,Google Phone,1,600.0,2019-10-05 20:55:00,89 Lake St, San Francisco,CA,94016 +268835,USB-C Charging Cable,1,11.95,2019-10-05 20:55:00,89 Lake St, San Francisco,CA,94016 +268836,Wired Headphones,1,11.99,2019-10-11 12:38:00,599 Jefferson St, New York City,NY,10001 +268837,AA Batteries (4-pack),2,3.84,2019-10-02 15:53:00,215 6th St, Atlanta,GA,30301 +268838,Apple Airpods Headphones,1,150.0,2019-10-28 15:15:00,427 North St, Seattle,WA,98101 +268839,Wired Headphones,1,11.99,2019-10-21 21:19:00,770 5th St, Seattle,WA,98101 +268840,AAA Batteries (4-pack),3,2.99,2019-10-08 13:15:00,751 5th St, Los Angeles,CA,90001 +268841,AAA Batteries (4-pack),1,2.99,2019-10-31 11:17:00,775 Meadow St, Dallas,TX,75001 +268842,Flatscreen TV,1,300.0,2019-10-11 16:31:00,468 4th St, New York City,NY,10001 +268843,AAA Batteries (4-pack),1,2.99,2019-10-01 07:08:00,234 1st St, New York City,NY,10001 +268844,Apple Airpods Headphones,1,150.0,2019-10-31 11:38:00,442 Highland St, Boston,MA,02215 +268845,AA Batteries (4-pack),1,3.84,2019-10-29 16:32:00,151 River St, Portland,OR,97035 +268846,USB-C Charging Cable,1,11.95,2019-10-21 22:14:00,429 9th St, Dallas,TX,75001 +268847,USB-C Charging Cable,1,11.95,2019-10-22 07:24:00,148 Main St, Seattle,WA,98101 +268848,AAA Batteries (4-pack),1,2.99,2019-10-26 16:51:00,343 South St, San Francisco,CA,94016 +268849,Lightning Charging Cable,1,14.95,2019-10-02 21:05:00,632 Highland St, Los Angeles,CA,90001 +268850,Bose SoundSport Headphones,1,99.99,2019-10-12 11:33:00,328 Cedar St, Seattle,WA,98101 +268851,AAA Batteries (4-pack),1,2.99,2019-10-25 09:07:00,643 Hickory St, Seattle,WA,98101 +268852,Apple Airpods Headphones,1,150.0,2019-10-01 21:43:00,919 12th St, Boston,MA,02215 +268853,27in 4K Gaming Monitor,1,389.99,2019-10-22 17:19:00,70 7th St, Atlanta,GA,30301 +268854,AAA Batteries (4-pack),1,2.99,2019-10-05 14:15:00,152 Jefferson St, Austin,TX,73301 +268855,AAA Batteries (4-pack),1,2.99,2019-10-12 19:05:00,427 Wilson St, San Francisco,CA,94016 +268856,Bose SoundSport Headphones,1,99.99,2019-10-13 12:36:00,749 14th St, Los Angeles,CA,90001 +268857,Bose SoundSport Headphones,1,99.99,2019-10-04 07:46:00,212 South St, Los Angeles,CA,90001 +268858,20in Monitor,1,109.99,2019-10-16 19:09:00,759 South St, Atlanta,GA,30301 +268859,Lightning Charging Cable,1,14.95,2019-10-16 13:58:00,432 4th St, New York City,NY,10001 +268860,ThinkPad Laptop,1,999.99,2019-10-17 09:37:00,851 Highland St, Atlanta,GA,30301 +268861,AA Batteries (4-pack),1,3.84,2019-10-09 23:17:00,985 Wilson St, San Francisco,CA,94016 +268862,AAA Batteries (4-pack),1,2.99,2019-10-03 10:05:00,686 Lake St, San Francisco,CA,94016 +268863,USB-C Charging Cable,1,11.95,2019-10-15 13:57:00,42 Meadow St, San Francisco,CA,94016 +268864,AAA Batteries (4-pack),1,2.99,2019-10-21 19:13:00,274 Willow St, Boston,MA,02215 +268865,USB-C Charging Cable,1,11.95,2019-10-30 12:58:00,244 Sunset St, San Francisco,CA,94016 +268866,AA Batteries (4-pack),1,3.84,2019-10-09 07:02:00,865 Hickory St, San Francisco,CA,94016 +268867,Lightning Charging Cable,1,14.95,2019-10-01 17:36:00,283 North St, San Francisco,CA,94016 +268868,Wired Headphones,1,11.99,2019-10-05 18:38:00,346 Sunset St, San Francisco,CA,94016 +268869,AAA Batteries (4-pack),1,2.99,2019-10-10 14:51:00,676 South St, San Francisco,CA,94016 +268870,20in Monitor,1,109.99,2019-10-04 13:08:00,37 Church St, Dallas,TX,75001 +268871,Vareebadd Phone,1,400.0,2019-10-27 22:16:00,473 14th St, San Francisco,CA,94016 +268872,Wired Headphones,1,11.99,2019-10-22 02:43:00,38 Lake St, San Francisco,CA,94016 +268873,USB-C Charging Cable,1,11.95,2019-10-08 08:04:00,585 2nd St, Los Angeles,CA,90001 +268874,AA Batteries (4-pack),1,3.84,2019-10-17 19:50:00,260 Hill St, New York City,NY,10001 +268875,Lightning Charging Cable,1,14.95,2019-10-04 19:29:00,99 Forest St, Boston,MA,02215 +268876,Apple Airpods Headphones,1,150.0,2019-10-29 10:55:00,366 Pine St, Los Angeles,CA,90001 +268877,AA Batteries (4-pack),2,3.84,2019-10-10 20:17:00,972 River St, San Francisco,CA,94016 +268878,Bose SoundSport Headphones,1,99.99,2019-10-21 11:34:00,119 North St, Dallas,TX,75001 +268879,Lightning Charging Cable,1,14.95,2019-10-23 16:01:00,778 7th St, San Francisco,CA,94016 +268879,20in Monitor,1,109.99,2019-10-23 16:01:00,778 7th St, San Francisco,CA,94016 +268880,Lightning Charging Cable,1,14.95,2019-10-22 12:35:00,63 7th St, Boston,MA,02215 +268881,ThinkPad Laptop,1,999.99,2019-10-19 23:52:00,84 Hill St, Austin,TX,73301 +268882,AA Batteries (4-pack),2,3.84,2019-10-25 17:37:00,955 6th St, San Francisco,CA,94016 +268883,Wired Headphones,1,11.99,2019-10-31 12:40:00,732 North St, Austin,TX,73301 +268884,Bose SoundSport Headphones,1,99.99,2019-10-15 17:58:00,154 5th St, San Francisco,CA,94016 +268885,AAA Batteries (4-pack),1,2.99,2019-10-30 11:54:00,540 Lakeview St, New York City,NY,10001 +268886,Apple Airpods Headphones,1,150.0,2019-10-05 16:59:00,630 Elm St, Seattle,WA,98101 +268887,Apple Airpods Headphones,1,150.0,2019-10-04 12:37:00,534 Walnut St, San Francisco,CA,94016 +268888,Macbook Pro Laptop,1,1700.0,2019-10-14 21:40:00,537 Church St, Seattle,WA,98101 +268889,AA Batteries (4-pack),1,3.84,2019-10-17 21:54:00,150 7th St, Boston,MA,02215 +268890,27in FHD Monitor,1,149.99,2019-10-13 21:19:00,421 Highland St, Portland,OR,97035 +268891,USB-C Charging Cable,1,11.95,2019-10-17 12:57:00,737 Sunset St, Boston,MA,02215 +268892,Apple Airpods Headphones,1,150.0,2019-10-04 08:37:00,263 6th St, Atlanta,GA,30301 +268893,AA Batteries (4-pack),2,3.84,2019-10-08 19:50:00,611 Meadow St, Portland,ME,04101 +268894,AA Batteries (4-pack),1,3.84,2019-10-07 06:15:00,597 8th St, San Francisco,CA,94016 +268895,ThinkPad Laptop,1,999.99,2019-10-23 16:43:00,891 Cedar St, Austin,TX,73301 +268896,Lightning Charging Cable,1,14.95,2019-10-05 22:23:00,859 2nd St, Portland,OR,97035 +268897,Wired Headphones,1,11.99,2019-10-06 11:37:00,132 West St, Dallas,TX,75001 +268898,AAA Batteries (4-pack),1,2.99,2019-11-01 00:24:00,654 12th St, New York City,NY,10001 +268899,ThinkPad Laptop,1,999.99,2019-10-26 21:06:00,194 Cedar St, Austin,TX,73301 +268900,Lightning Charging Cable,1,14.95,2019-10-25 23:45:00,771 Meadow St, San Francisco,CA,94016 +268901,AA Batteries (4-pack),1,3.84,2019-10-24 14:23:00,335 Jackson St, New York City,NY,10001 +268902,27in 4K Gaming Monitor,1,389.99,2019-10-30 17:08:00,408 River St, Seattle,WA,98101 +268903,AA Batteries (4-pack),1,3.84,2019-10-27 11:07:00,879 Elm St, Dallas,TX,75001 +268904,AAA Batteries (4-pack),1,2.99,2019-10-29 00:13:00,867 Hickory St, Boston,MA,02215 +268905,AA Batteries (4-pack),1,3.84,2019-10-11 12:55:00,37 11th St, Dallas,TX,75001 +268906,AAA Batteries (4-pack),2,2.99,2019-10-09 11:28:00,777 10th St, San Francisco,CA,94016 +268907,AA Batteries (4-pack),2,3.84,2019-10-29 20:27:00,524 Jackson St, Atlanta,GA,30301 +268908,USB-C Charging Cable,1,11.95,2019-10-20 18:27:00,456 6th St, Portland,OR,97035 +268909,AAA Batteries (4-pack),7,2.99,2019-10-03 15:30:00,744 North St, Austin,TX,73301 +268910,Lightning Charging Cable,1,14.95,2019-10-03 18:17:00,864 Johnson St, Boston,MA,02215 +268911,27in 4K Gaming Monitor,1,389.99,2019-10-29 03:04:00,279 Wilson St, Atlanta,GA,30301 +268912,Google Phone,1,600.0,2019-10-12 22:45:00,8 9th St, Boston,MA,02215 +268912,Bose SoundSport Headphones,1,99.99,2019-10-12 22:45:00,8 9th St, Boston,MA,02215 +268913,27in FHD Monitor,1,149.99,2019-10-29 16:02:00,733 7th St, Boston,MA,02215 +268914,AAA Batteries (4-pack),2,2.99,2019-10-25 20:03:00,987 North St, Seattle,WA,98101 +268915,Flatscreen TV,1,300.0,2019-10-23 10:24:00,216 Dogwood St, Atlanta,GA,30301 +268916,Google Phone,1,600.0,2019-10-16 20:27:00,612 Willow St, Portland,OR,97035 +268917,27in 4K Gaming Monitor,1,389.99,2019-10-27 16:22:00,191 5th St, New York City,NY,10001 +268918,Lightning Charging Cable,1,14.95,2019-10-01 20:57:00,637 South St, Los Angeles,CA,90001 +268919,Bose SoundSport Headphones,1,99.99,2019-10-26 00:03:00,310 South St, Los Angeles,CA,90001 +268920,Lightning Charging Cable,1,14.95,2019-10-20 17:35:00,751 Pine St, Portland,OR,97035 +268921,AA Batteries (4-pack),2,3.84,2019-10-03 11:12:00,984 Pine St, Los Angeles,CA,90001 +268922,27in 4K Gaming Monitor,1,389.99,2019-10-29 10:14:00,570 Madison St, New York City,NY,10001 +268923,AAA Batteries (4-pack),1,2.99,2019-10-17 01:52:00,833 Hill St, Austin,TX,73301 +268924,Wired Headphones,1,11.99,2019-10-05 10:40:00,19 Jefferson St, Los Angeles,CA,90001 +268925,AAA Batteries (4-pack),1,2.99,2019-10-02 14:07:00,953 11th St, Portland,OR,97035 +268926,27in FHD Monitor,1,149.99,2019-10-28 23:14:00,833 River St, Los Angeles,CA,90001 +268927,iPhone,1,700.0,2019-10-24 12:31:00,952 Main St, San Francisco,CA,94016 +268928,Lightning Charging Cable,1,14.95,2019-10-20 21:16:00,52 Center St, Austin,TX,73301 +268929,Lightning Charging Cable,1,14.95,2019-10-28 21:52:00,133 1st St, Atlanta,GA,30301 +268930,AA Batteries (4-pack),1,3.84,2019-10-12 22:50:00,713 Wilson St, Los Angeles,CA,90001 +268931,Apple Airpods Headphones,1,150.0,2019-10-23 10:06:00,920 Cherry St, Portland,ME,04101 +268932,34in Ultrawide Monitor,1,379.99,2019-10-15 00:10:00,46 Meadow St, Seattle,WA,98101 +268933,Lightning Charging Cable,1,14.95,2019-10-06 19:38:00,355 Madison St, San Francisco,CA,94016 +268934,USB-C Charging Cable,1,11.95,2019-10-07 12:40:00,437 1st St, San Francisco,CA,94016 +268935,Bose SoundSport Headphones,1,99.99,2019-10-16 18:56:00,920 5th St, New York City,NY,10001 +268936,AAA Batteries (4-pack),1,2.99,2019-10-27 12:38:00,367 7th St, Boston,MA,02215 +268937,Apple Airpods Headphones,1,150.0,2019-10-08 19:07:00,192 Cherry St, San Francisco,CA,94016 +268938,AA Batteries (4-pack),3,3.84,2019-10-08 10:41:00,77 Walnut St, New York City,NY,10001 +268939,Lightning Charging Cable,1,14.95,2019-10-13 18:46:00,528 14th St, Austin,TX,73301 +268940,AAA Batteries (4-pack),1,2.99,2019-10-30 21:08:00,949 10th St, Los Angeles,CA,90001 +268941,Bose SoundSport Headphones,1,99.99,2019-10-09 08:32:00,471 Center St, Portland,OR,97035 +268942,Bose SoundSport Headphones,1,99.99,2019-10-27 10:01:00,188 Walnut St, Portland,OR,97035 +268943,Apple Airpods Headphones,1,150.0,2019-10-09 14:18:00,312 8th St, Portland,OR,97035 +268944,Wired Headphones,1,11.99,2019-10-05 17:59:00,622 Pine St, Austin,TX,73301 +268945,Lightning Charging Cable,1,14.95,2019-10-30 19:05:00,691 South St, Portland,OR,97035 +268946,Bose SoundSport Headphones,1,99.99,2019-10-02 16:41:00,752 13th St, Atlanta,GA,30301 +268947,Macbook Pro Laptop,1,1700.0,2019-10-25 03:05:00,823 River St, San Francisco,CA,94016 +268948,27in FHD Monitor,1,149.99,2019-10-21 19:16:00,648 14th St, San Francisco,CA,94016 +268949,Apple Airpods Headphones,1,150.0,2019-10-25 09:46:00,909 Main St, Seattle,WA,98101 +268950,AAA Batteries (4-pack),3,2.99,2019-10-02 12:00:00,564 9th St, Boston,MA,02215 +268951,Lightning Charging Cable,1,14.95,2019-10-06 20:46:00,461 Ridge St, Boston,MA,02215 +268952,Flatscreen TV,1,300.0,2019-10-01 10:26:00,249 Center St, San Francisco,CA,94016 +268953,Macbook Pro Laptop,1,1700.0,2019-10-28 16:02:00,15 River St, San Francisco,CA,94016 +268954,Apple Airpods Headphones,1,150.0,2019-10-29 09:31:00,184 1st St, Atlanta,GA,30301 +268955,AAA Batteries (4-pack),2,2.99,2019-10-10 18:31:00,826 Lakeview St, Dallas,TX,75001 +268956,Lightning Charging Cable,1,14.95,2019-10-07 22:18:00,60 Jackson St, Boston,MA,02215 +268957,USB-C Charging Cable,1,11.95,2019-10-06 19:34:00,243 Willow St, Los Angeles,CA,90001 +268958,AA Batteries (4-pack),1,3.84,2019-10-26 13:17:00,953 7th St, San Francisco,CA,94016 +268959,AAA Batteries (4-pack),1,2.99,2019-10-13 21:01:00,766 11th St, Atlanta,GA,30301 +268960,Google Phone,1,600.0,2019-10-27 10:08:00,50 13th St, Los Angeles,CA,90001 +268961,AA Batteries (4-pack),1,3.84,2019-10-20 21:34:00,281 9th St, Los Angeles,CA,90001 +268962,AAA Batteries (4-pack),1,2.99,2019-10-25 11:27:00,891 Church St, Atlanta,GA,30301 +268963,AAA Batteries (4-pack),1,2.99,2019-10-07 19:05:00,85 Elm St, Atlanta,GA,30301 +268964,AAA Batteries (4-pack),2,2.99,2019-10-29 10:35:00,952 Lakeview St, New York City,NY,10001 +268965,Lightning Charging Cable,1,14.95,2019-10-02 19:34:00,998 Adams St, New York City,NY,10001 +268966,Google Phone,1,600.0,2019-10-02 21:46:00,472 6th St, New York City,NY,10001 +268967,AA Batteries (4-pack),1,3.84,2019-10-16 19:41:00,829 Madison St, San Francisco,CA,94016 +268968,AA Batteries (4-pack),1,3.84,2019-10-05 15:34:00,358 Hickory St, San Francisco,CA,94016 +268969,Google Phone,1,600.0,2019-10-21 19:55:00,221 4th St, New York City,NY,10001 +268970,USB-C Charging Cable,1,11.95,2019-10-15 19:59:00,69 North St, Dallas,TX,75001 +268971,Lightning Charging Cable,1,14.95,2019-10-09 00:35:00,666 Sunset St, Los Angeles,CA,90001 +268972,AA Batteries (4-pack),1,3.84,2019-10-06 12:12:00,354 Johnson St, Seattle,WA,98101 +268973,AAA Batteries (4-pack),2,2.99,2019-10-17 11:42:00,388 West St, Atlanta,GA,30301 +268974,Apple Airpods Headphones,1,150.0,2019-10-30 13:20:00,598 Jackson St, Los Angeles,CA,90001 +268975,Wired Headphones,1,11.99,2019-10-31 10:29:00,774 10th St, San Francisco,CA,94016 +268976,AAA Batteries (4-pack),3,2.99,2019-10-15 18:58:00,989 6th St, Dallas,TX,75001 +268977,Lightning Charging Cable,1,14.95,2019-10-19 13:03:00,551 River St, San Francisco,CA,94016 +268978,Google Phone,1,600.0,2019-10-26 18:18:00,449 Meadow St, Austin,TX,73301 +268979,USB-C Charging Cable,1,11.95,2019-10-27 12:10:00,383 Hickory St, Atlanta,GA,30301 +268980,Apple Airpods Headphones,1,150.0,2019-10-23 20:04:00,891 Meadow St, Los Angeles,CA,90001 +268981,AA Batteries (4-pack),1,3.84,2019-10-21 12:38:00,109 9th St, San Francisco,CA,94016 +268982,Lightning Charging Cable,1,14.95,2019-10-10 07:54:00,926 Spruce St, Portland,ME,04101 +268983,USB-C Charging Cable,1,11.95,2019-10-20 23:41:00,318 Adams St, Portland,OR,97035 +268984,Flatscreen TV,1,300.0,2019-10-06 14:17:00,36 Maple St, Los Angeles,CA,90001 +268985,AA Batteries (4-pack),1,3.84,2019-10-19 20:05:00,770 Sunset St, New York City,NY,10001 +268986,27in FHD Monitor,1,149.99,2019-10-06 19:21:00,155 6th St, Boston,MA,02215 +268987,Lightning Charging Cable,2,14.95,2019-10-27 21:44:00,109 5th St, San Francisco,CA,94016 +268988,Apple Airpods Headphones,1,150.0,2019-10-22 19:07:00,222 Maple St, Portland,OR,97035 +268989,Wired Headphones,1,11.99,2019-10-17 12:13:00,130 Wilson St, Los Angeles,CA,90001 +268990,AA Batteries (4-pack),1,3.84,2019-10-01 14:46:00,39 Maple St, Los Angeles,CA,90001 +268991,AAA Batteries (4-pack),1,2.99,2019-10-12 10:23:00,955 Lake St, New York City,NY,10001 +268992,Bose SoundSport Headphones,1,99.99,2019-10-29 19:55:00,394 12th St, New York City,NY,10001 +268993,AA Batteries (4-pack),1,3.84,2019-10-20 20:48:00,731 Meadow St, San Francisco,CA,94016 +268994,iPhone,2,700.0,2019-10-13 08:31:00,477 4th St, Seattle,WA,98101 +268995,Apple Airpods Headphones,1,150.0,2019-10-19 08:33:00,669 South St, San Francisco,CA,94016 +268996,Macbook Pro Laptop,1,1700.0,2019-10-18 03:03:00,787 Spruce St, Portland,OR,97035 +268997,20in Monitor,1,109.99,2019-10-17 11:10:00,749 Pine St, Atlanta,GA,30301 +268998,AA Batteries (4-pack),2,3.84,2019-10-30 14:32:00,910 14th St, Boston,MA,02215 +268999,27in 4K Gaming Monitor,1,389.99,2019-10-12 12:55:00,368 8th St, Seattle,WA,98101 +269000,USB-C Charging Cable,1,11.95,2019-10-14 23:36:00,368 West St, Los Angeles,CA,90001 +269001,Apple Airpods Headphones,1,150.0,2019-10-23 19:09:00,994 Center St, Austin,TX,73301 +269002,AAA Batteries (4-pack),1,2.99,2019-10-10 22:22:00,462 13th St, Atlanta,GA,30301 +269003,ThinkPad Laptop,1,999.99,2019-10-31 22:12:00,646 Lake St, New York City,NY,10001 +269004,Lightning Charging Cable,1,14.95,2019-10-21 12:01:00,37 Lake St, Los Angeles,CA,90001 +269005,27in 4K Gaming Monitor,1,389.99,2019-10-08 15:54:00,333 Willow St, San Francisco,CA,94016 +269006,Apple Airpods Headphones,1,150.0,2019-10-19 15:10:00,578 Main St, San Francisco,CA,94016 +269007,Lightning Charging Cable,1,14.95,2019-10-06 13:42:00,258 9th St, San Francisco,CA,94016 +269008,Bose SoundSport Headphones,1,99.99,2019-10-16 16:00:00,802 Ridge St, Los Angeles,CA,90001 +269009,Lightning Charging Cable,1,14.95,2019-10-04 17:51:00,912 8th St, Boston,MA,02215 +269010,Wired Headphones,1,11.99,2019-10-31 06:09:00,942 Forest St, Seattle,WA,98101 +269011,iPhone,1,700.0,2019-10-12 17:18:00,772 13th St, Los Angeles,CA,90001 +269012,Macbook Pro Laptop,1,1700.0,2019-10-29 19:35:00,9 Lincoln St, New York City,NY,10001 +269013,Bose SoundSport Headphones,1,99.99,2019-10-11 20:35:00,708 Cherry St, New York City,NY,10001 +269014,Bose SoundSport Headphones,1,99.99,2019-10-15 08:20:00,139 Chestnut St, Portland,OR,97035 +269015,Apple Airpods Headphones,1,150.0,2019-10-26 04:35:00,607 6th St, San Francisco,CA,94016 +269016,Bose SoundSport Headphones,1,99.99,2019-10-09 17:26:00,374 West St, Boston,MA,02215 +269017,Apple Airpods Headphones,1,150.0,2019-10-20 07:15:00,371 1st St, Portland,OR,97035 +269018,Apple Airpods Headphones,1,150.0,2019-10-16 12:54:00,234 Dogwood St, Los Angeles,CA,90001 +269019,AAA Batteries (4-pack),1,2.99,2019-10-30 11:38:00,267 Lake St, Seattle,WA,98101 +269020,AAA Batteries (4-pack),2,2.99,2019-10-25 15:46:00,635 12th St, Portland,OR,97035 +269021,Apple Airpods Headphones,1,150.0,2019-10-12 09:51:00,198 Ridge St, Los Angeles,CA,90001 +269022,USB-C Charging Cable,1,11.95,2019-10-07 05:51:00,65 Lake St, San Francisco,CA,94016 +269023,20in Monitor,1,109.99,2019-10-08 19:31:00,508 Center St, Los Angeles,CA,90001 +269024,AA Batteries (4-pack),1,3.84,2019-10-01 07:30:00,570 Cherry St, Austin,TX,73301 +269025,Bose SoundSport Headphones,1,99.99,2019-10-23 20:51:00,239 Lake St, Portland,OR,97035 +269026,AA Batteries (4-pack),1,3.84,2019-10-29 20:53:00,289 Church St, Dallas,TX,75001 +269027,27in 4K Gaming Monitor,1,389.99,2019-10-28 14:54:00,643 Spruce St, San Francisco,CA,94016 +269028,USB-C Charging Cable,1,11.95,2019-10-25 11:31:00,654 Washington St, Boston,MA,02215 +269029,Google Phone,1,600.0,2019-10-30 22:33:00,362 Center St, San Francisco,CA,94016 +269030,iPhone,1,700.0,2019-10-14 21:44:00,922 Lake St, Seattle,WA,98101 +269031,AAA Batteries (4-pack),1,2.99,2019-10-17 13:54:00,573 Spruce St, Dallas,TX,75001 +269032,AAA Batteries (4-pack),1,2.99,2019-10-07 12:47:00,72 12th St, Seattle,WA,98101 +269033,Google Phone,1,600.0,2019-10-30 00:50:00,47 Hill St, Atlanta,GA,30301 +269034,AAA Batteries (4-pack),1,2.99,2019-10-20 12:21:00,374 Highland St, San Francisco,CA,94016 +269035,Apple Airpods Headphones,1,150.0,2019-10-03 14:13:00,648 Spruce St, New York City,NY,10001 +269036,USB-C Charging Cable,1,11.95,2019-10-22 20:54:00,278 12th St, New York City,NY,10001 +269037,27in 4K Gaming Monitor,1,389.99,2019-10-22 19:25:00,621 Spruce St, San Francisco,CA,94016 +269038,AA Batteries (4-pack),2,3.84,2019-10-26 00:43:00,344 Lake St, New York City,NY,10001 +269039,Bose SoundSport Headphones,1,99.99,2019-10-03 18:29:00,790 Sunset St, New York City,NY,10001 +269040,Bose SoundSport Headphones,1,99.99,2019-10-27 17:11:00,349 Chestnut St, Los Angeles,CA,90001 +269041,Lightning Charging Cable,2,14.95,2019-10-12 14:32:00,801 Hickory St, San Francisco,CA,94016 +269042,Wired Headphones,1,11.99,2019-10-28 10:30:00,895 Wilson St, Boston,MA,02215 +269043,USB-C Charging Cable,1,11.95,2019-10-26 08:50:00,486 2nd St, New York City,NY,10001 +269044,Wired Headphones,1,11.99,2019-10-17 01:22:00,575 Wilson St, Portland,ME,04101 +269045,AA Batteries (4-pack),1,3.84,2019-10-26 15:56:00,822 West St, San Francisco,CA,94016 +269046,AA Batteries (4-pack),2,3.84,2019-10-25 11:37:00,516 Sunset St, San Francisco,CA,94016 +269047,AAA Batteries (4-pack),4,2.99,2019-10-01 22:07:00,189 Ridge St, San Francisco,CA,94016 +269048,AAA Batteries (4-pack),2,2.99,2019-10-08 19:00:00,763 1st St, San Francisco,CA,94016 +269049,34in Ultrawide Monitor,1,379.99,2019-10-15 14:54:00,91 Adams St, New York City,NY,10001 +269050,Bose SoundSport Headphones,1,99.99,2019-10-02 17:40:00,601 Spruce St, Los Angeles,CA,90001 +269051,Apple Airpods Headphones,1,150.0,2019-10-07 14:52:00,887 Lincoln St, Los Angeles,CA,90001 +269052,USB-C Charging Cable,1,11.95,2019-10-06 11:54:00,675 Madison St, Austin,TX,73301 +269053,AAA Batteries (4-pack),1,2.99,2019-10-23 16:09:00,387 Cherry St, San Francisco,CA,94016 +269054,Wired Headphones,1,11.99,2019-10-22 11:15:00,689 Maple St, Los Angeles,CA,90001 +269055,Flatscreen TV,1,300.0,2019-10-01 18:49:00,890 Adams St, Atlanta,GA,30301 +269056,AAA Batteries (4-pack),1,2.99,2019-10-24 10:57:00,426 Main St, New York City,NY,10001 +269057,Lightning Charging Cable,1,14.95,2019-10-16 09:43:00,828 Jefferson St, San Francisco,CA,94016 +269058,Bose SoundSport Headphones,1,99.99,2019-10-01 11:45:00,169 Ridge St, Seattle,WA,98101 +269059,ThinkPad Laptop,1,999.99,2019-10-04 17:37:00,832 2nd St, Austin,TX,73301 +269060,Apple Airpods Headphones,1,150.0,2019-10-15 15:49:00,515 14th St, Los Angeles,CA,90001 +269061,27in 4K Gaming Monitor,1,389.99,2019-10-07 20:08:00,714 14th St, Boston,MA,02215 +269062,34in Ultrawide Monitor,1,379.99,2019-10-28 20:36:00,328 North St, Seattle,WA,98101 +269063,AA Batteries (4-pack),2,3.84,2019-10-16 13:07:00,261 13th St, San Francisco,CA,94016 +269064,27in FHD Monitor,1,149.99,2019-10-06 15:57:00,177 Maple St, Los Angeles,CA,90001 +269065,USB-C Charging Cable,1,11.95,2019-10-19 18:14:00,870 Cedar St, Seattle,WA,98101 +269066,27in FHD Monitor,1,149.99,2019-10-29 15:47:00,274 9th St, Boston,MA,02215 +269067,Lightning Charging Cable,1,14.95,2019-10-31 14:05:00,655 Spruce St, Austin,TX,73301 +269068,AA Batteries (4-pack),1,3.84,2019-10-06 13:13:00,221 13th St, Los Angeles,CA,90001 +269069,USB-C Charging Cable,1,11.95,2019-10-24 17:15:00,264 Maple St, Portland,OR,97035 +269070,20in Monitor,1,109.99,2019-10-06 12:56:00,190 Highland St, New York City,NY,10001 +269071,USB-C Charging Cable,1,11.95,2019-10-31 06:46:00,439 Wilson St, Seattle,WA,98101 +269072,AA Batteries (4-pack),3,3.84,2019-10-20 13:12:00,909 Park St, San Francisco,CA,94016 +269073,Lightning Charging Cable,1,14.95,2019-10-18 08:19:00,1 West St, Los Angeles,CA,90001 +269074,AA Batteries (4-pack),1,3.84,2019-10-22 08:50:00,615 Washington St, San Francisco,CA,94016 +269075,AAA Batteries (4-pack),2,2.99,2019-10-09 10:51:00,47 Forest St, Los Angeles,CA,90001 +269076,Wired Headphones,1,11.99,2019-10-16 14:08:00,826 Spruce St, Los Angeles,CA,90001 +269077,Wired Headphones,1,11.99,2019-10-18 07:41:00,612 Church St, Dallas,TX,75001 +269078,20in Monitor,1,109.99,2019-10-22 19:02:00,143 1st St, New York City,NY,10001 +269079,AA Batteries (4-pack),1,3.84,2019-10-30 10:04:00,45 Meadow St, Dallas,TX,75001 +269080,iPhone,1,700.0,2019-10-23 12:19:00,855 Spruce St, Boston,MA,02215 +269081,Apple Airpods Headphones,1,150.0,2019-10-06 12:53:00,667 1st St, Seattle,WA,98101 +269082,Apple Airpods Headphones,1,150.0,2019-10-07 10:42:00,434 West St, Boston,MA,02215 +269083,Flatscreen TV,1,300.0,2019-10-24 15:27:00,714 Adams St, San Francisco,CA,94016 +269084,USB-C Charging Cable,1,11.95,2019-10-31 13:47:00,358 North St, Dallas,TX,75001 +269085,Wired Headphones,1,11.99,2019-10-30 20:45:00,940 Madison St, New York City,NY,10001 +269086,Flatscreen TV,1,300.0,2019-10-07 20:45:00,348 5th St, San Francisco,CA,94016 +269087,Wired Headphones,1,11.99,2019-10-15 19:33:00,3 Adams St, Los Angeles,CA,90001 +269088,AA Batteries (4-pack),1,3.84,2019-10-14 11:05:00,279 South St, San Francisco,CA,94016 +269089,USB-C Charging Cable,1,11.95,2019-10-20 11:00:00,680 Lincoln St, San Francisco,CA,94016 +269090,Wired Headphones,1,11.99,2019-10-23 12:46:00,618 7th St, Seattle,WA,98101 +269091,Lightning Charging Cable,1,14.95,2019-10-23 10:51:00,208 Main St, San Francisco,CA,94016 +269092,27in 4K Gaming Monitor,1,389.99,2019-10-06 15:27:00,287 14th St, San Francisco,CA,94016 +269093,Wired Headphones,1,11.99,2019-10-27 16:42:00,715 11th St, New York City,NY,10001 +269094,Lightning Charging Cable,1,14.95,2019-10-07 18:39:00,11 9th St, Los Angeles,CA,90001 +269095,USB-C Charging Cable,1,11.95,2019-10-21 10:58:00,137 Chestnut St, Dallas,TX,75001 +269096,AAA Batteries (4-pack),2,2.99,2019-10-30 11:52:00,815 Willow St, Boston,MA,02215 +269097,Apple Airpods Headphones,1,150.0,2019-10-25 18:00:00,995 Madison St, Seattle,WA,98101 +269098,Lightning Charging Cable,1,14.95,2019-10-06 20:31:00,590 9th St, Seattle,WA,98101 +269099,Wired Headphones,1,11.99,2019-10-31 12:43:00,976 Cherry St, San Francisco,CA,94016 +269100,USB-C Charging Cable,2,11.95,2019-10-05 18:57:00,931 2nd St, Los Angeles,CA,90001 +269101,Apple Airpods Headphones,1,150.0,2019-10-10 18:50:00,575 Walnut St, New York City,NY,10001 +269102,Macbook Pro Laptop,1,1700.0,2019-10-08 21:45:00,865 Highland St, Los Angeles,CA,90001 +269103,Lightning Charging Cable,1,14.95,2019-10-17 06:48:00,374 Lake St, San Francisco,CA,94016 +269104,USB-C Charging Cable,1,11.95,2019-10-21 21:29:00,139 Pine St, San Francisco,CA,94016 +269105,AAA Batteries (4-pack),1,2.99,2019-10-07 23:11:00,807 Highland St, San Francisco,CA,94016 +269106,USB-C Charging Cable,1,11.95,2019-10-12 20:50:00,73 Sunset St, Austin,TX,73301 +269107,AAA Batteries (4-pack),2,2.99,2019-10-12 22:24:00,398 Ridge St, Boston,MA,02215 +269108,AA Batteries (4-pack),1,3.84,2019-10-20 13:00:00,325 River St, San Francisco,CA,94016 +269109,Flatscreen TV,1,300.0,2019-10-07 16:38:00,334 1st St, Atlanta,GA,30301 +269110,Macbook Pro Laptop,1,1700.0,2019-10-19 20:21:00,602 South St, Seattle,WA,98101 +269111,USB-C Charging Cable,1,11.95,2019-10-12 10:13:00,720 14th St, San Francisco,CA,94016 +269112,Apple Airpods Headphones,1,150.0,2019-10-23 13:15:00,36 Lake St, Atlanta,GA,30301 +269113,Macbook Pro Laptop,1,1700.0,2019-10-19 16:13:00,400 7th St, Seattle,WA,98101 +269114,Wired Headphones,1,11.99,2019-10-23 16:05:00,80 North St, San Francisco,CA,94016 +269114,AAA Batteries (4-pack),2,2.99,2019-10-23 16:05:00,80 North St, San Francisco,CA,94016 +269115,iPhone,1,700.0,2019-10-28 22:11:00,157 Spruce St, Portland,OR,97035 +269116,AAA Batteries (4-pack),1,2.99,2019-10-19 20:52:00,283 Lincoln St, Los Angeles,CA,90001 +269117,Apple Airpods Headphones,1,150.0,2019-10-18 18:14:00,246 West St, New York City,NY,10001 +269118,iPhone,1,700.0,2019-10-02 11:44:00,513 Lincoln St, Seattle,WA,98101 +269119,USB-C Charging Cable,1,11.95,2019-10-20 11:42:00,820 Dogwood St, Los Angeles,CA,90001 +269120,34in Ultrawide Monitor,1,379.99,2019-10-23 14:30:00,530 9th St, Boston,MA,02215 +269121,Bose SoundSport Headphones,1,99.99,2019-10-25 23:05:00,266 14th St, Dallas,TX,75001 +269122,AA Batteries (4-pack),1,3.84,2019-10-13 21:33:00,527 Wilson St, Dallas,TX,75001 +269123,Flatscreen TV,1,300.0,2019-10-22 12:52:00,745 Willow St, New York City,NY,10001 +269124,34in Ultrawide Monitor,1,379.99,2019-10-27 11:42:00,363 Center St, New York City,NY,10001 +269125,Lightning Charging Cable,1,14.95,2019-10-28 13:06:00,658 4th St, Los Angeles,CA,90001 +269126,AA Batteries (4-pack),1,3.84,2019-10-30 14:44:00,73 Center St, San Francisco,CA,94016 +269127,Flatscreen TV,1,300.0,2019-10-22 12:20:00,531 North St, New York City,NY,10001 +269128,AA Batteries (4-pack),1,3.84,2019-10-16 15:27:00,57 Spruce St, Portland,OR,97035 +269129,USB-C Charging Cable,1,11.95,2019-10-13 10:28:00,438 Lake St, Seattle,WA,98101 +269130,Wired Headphones,1,11.99,2019-10-28 23:48:00,590 1st St, Seattle,WA,98101 +269131,AAA Batteries (4-pack),1,2.99,2019-10-19 19:21:00,891 Dogwood St, San Francisco,CA,94016 +269132,AAA Batteries (4-pack),1,2.99,2019-10-19 11:32:00,816 Jefferson St, Dallas,TX,75001 +269133,USB-C Charging Cable,1,11.95,2019-10-12 20:25:00,101 Jackson St, Los Angeles,CA,90001 +269134,Wired Headphones,2,11.99,2019-10-19 06:48:00,147 Lake St, Dallas,TX,75001 +269135,Lightning Charging Cable,2,14.95,2019-10-31 11:01:00,547 River St, San Francisco,CA,94016 +269136,Wired Headphones,1,11.99,2019-10-30 09:31:00,516 Jackson St, Los Angeles,CA,90001 +269137,Google Phone,1,600.0,2019-10-18 16:59:00,569 Spruce St, Dallas,TX,75001 +269138,34in Ultrawide Monitor,1,379.99,2019-10-14 14:22:00,59 Willow St, New York City,NY,10001 +269139,AA Batteries (4-pack),1,3.84,2019-10-04 14:24:00,352 Maple St, Los Angeles,CA,90001 +269140,27in 4K Gaming Monitor,1,389.99,2019-10-17 21:29:00,216 12th St, Seattle,WA,98101 +269141,Lightning Charging Cable,1,14.95,2019-10-02 18:07:00,350 Park St, San Francisco,CA,94016 +269142,Apple Airpods Headphones,1,150.0,2019-10-30 11:01:00,892 2nd St, San Francisco,CA,94016 +269143,Google Phone,1,600.0,2019-10-25 13:58:00,176 8th St, New York City,NY,10001 +269144,27in 4K Gaming Monitor,1,389.99,2019-10-12 00:07:00,547 Lincoln St, Los Angeles,CA,90001 +269145,Apple Airpods Headphones,1,150.0,2019-10-17 23:44:00,147 Park St, San Francisco,CA,94016 +269146,USB-C Charging Cable,1,11.95,2019-10-08 17:44:00,399 Center St, Portland,ME,04101 +269147,Apple Airpods Headphones,1,150.0,2019-10-25 17:51:00,558 Highland St, San Francisco,CA,94016 +269148,AA Batteries (4-pack),1,3.84,2019-10-06 00:14:00,361 7th St, Dallas,TX,75001 +269149,Wired Headphones,1,11.99,2019-10-20 15:12:00,182 10th St, New York City,NY,10001 +269150,Macbook Pro Laptop,1,1700.0,2019-10-25 11:16:00,115 13th St, Atlanta,GA,30301 +269151,AA Batteries (4-pack),2,3.84,2019-10-10 11:58:00,907 Highland St, Los Angeles,CA,90001 +269152,Apple Airpods Headphones,1,150.0,2019-10-15 20:09:00,495 Lincoln St, Portland,OR,97035 +269153,USB-C Charging Cable,1,11.95,2019-10-10 14:59:00,302 Lincoln St, Los Angeles,CA,90001 +269154,34in Ultrawide Monitor,1,379.99,2019-10-13 14:19:00,558 Washington St, San Francisco,CA,94016 +269155,USB-C Charging Cable,1,11.95,2019-10-02 18:40:00,451 5th St, Los Angeles,CA,90001 +269156,Lightning Charging Cable,1,14.95,2019-10-08 18:43:00,329 Walnut St, Boston,MA,02215 +269157,Bose SoundSport Headphones,1,99.99,2019-10-11 07:38:00,268 South St, Boston,MA,02215 +269158,Apple Airpods Headphones,1,150.0,2019-10-25 17:47:00,797 Pine St, Portland,ME,04101 +269159,Vareebadd Phone,1,400.0,2019-10-23 08:16:00,198 North St, Atlanta,GA,30301 +269160,34in Ultrawide Monitor,1,379.99,2019-10-21 18:21:00,200 2nd St, San Francisco,CA,94016 +269161,USB-C Charging Cable,1,11.95,2019-10-18 11:20:00,897 Washington St, Austin,TX,73301 +269162,AA Batteries (4-pack),1,3.84,2019-10-13 01:10:00,333 North St, Los Angeles,CA,90001 +269163,Lightning Charging Cable,1,14.95,2019-10-24 19:44:00,909 Park St, New York City,NY,10001 +269164,20in Monitor,1,109.99,2019-10-01 04:24:00,856 13th St, New York City,NY,10001 +269165,Bose SoundSport Headphones,1,99.99,2019-10-14 09:06:00,167 12th St, San Francisco,CA,94016 +269166,27in FHD Monitor,1,149.99,2019-10-19 21:51:00,490 7th St, New York City,NY,10001 +269167,AAA Batteries (4-pack),1,2.99,2019-10-24 18:35:00,189 5th St, Dallas,TX,75001 +269168,LG Dryer,1,600.0,2019-10-14 17:27:00,504 Hickory St, Atlanta,GA,30301 +269169,27in FHD Monitor,1,149.99,2019-10-23 15:13:00,356 Cedar St, Portland,OR,97035 +269170,Vareebadd Phone,1,400.0,2019-10-27 00:12:00,706 Park St, San Francisco,CA,94016 +269171,Google Phone,1,600.0,2019-10-06 20:15:00,30 Jefferson St, San Francisco,CA,94016 +269172,Wired Headphones,1,11.99,2019-10-02 18:48:00,330 Jackson St, Boston,MA,02215 +269173,iPhone,1,700.0,2019-10-28 18:50:00,678 Center St, Dallas,TX,75001 +269174,AAA Batteries (4-pack),3,2.99,2019-10-31 16:38:00,652 9th St, Los Angeles,CA,90001 +269175,Lightning Charging Cable,1,14.95,2019-10-22 14:13:00,151 9th St, Atlanta,GA,30301 +269176,Lightning Charging Cable,1,14.95,2019-10-07 20:13:00,4 South St, San Francisco,CA,94016 +269177,Apple Airpods Headphones,1,150.0,2019-10-11 10:21:00,883 Walnut St, San Francisco,CA,94016 +269178,USB-C Charging Cable,1,11.95,2019-10-03 20:19:00,139 1st St, New York City,NY,10001 +269179,27in 4K Gaming Monitor,1,389.99,2019-10-25 21:00:00,232 Pine St, San Francisco,CA,94016 +269180,Lightning Charging Cable,3,14.95,2019-10-11 14:25:00,274 Center St, Los Angeles,CA,90001 +269181,AA Batteries (4-pack),3,3.84,2019-10-12 02:33:00,461 Park St, Boston,MA,02215 +269182,AA Batteries (4-pack),1,3.84,2019-10-03 21:57:00,18 Hill St, Dallas,TX,75001 +269183,20in Monitor,1,109.99,2019-10-25 12:31:00,598 Madison St, San Francisco,CA,94016 +269184,USB-C Charging Cable,2,11.95,2019-10-27 19:21:00,694 River St, Austin,TX,73301 +269185,LG Washing Machine,1,600.0,2019-10-09 10:24:00,777 Cedar St, San Francisco,CA,94016 +269186,Google Phone,1,600.0,2019-10-05 20:11:00,971 North St, Boston,MA,02215 +269187,Google Phone,1,600.0,2019-10-26 16:49:00,171 Main St, Austin,TX,73301 +269188,AA Batteries (4-pack),3,3.84,2019-10-23 21:58:00,295 River St, New York City,NY,10001 +269189,AA Batteries (4-pack),1,3.84,2019-10-26 22:05:00,547 Lincoln St, Los Angeles,CA,90001 +269190,Apple Airpods Headphones,1,150.0,2019-10-02 19:24:00,537 8th St, San Francisco,CA,94016 +269191,AA Batteries (4-pack),1,3.84,2019-10-25 18:48:00,247 Madison St, Austin,TX,73301 +269192,AA Batteries (4-pack),1,3.84,2019-10-16 17:34:00,122 8th St, San Francisco,CA,94016 +269193,Google Phone,1,600.0,2019-10-20 22:52:00,229 9th St, Atlanta,GA,30301 +269194,AAA Batteries (4-pack),1,2.99,2019-10-23 22:59:00,857 Church St, Atlanta,GA,30301 +269195,Vareebadd Phone,1,400.0,2019-10-31 11:11:00,339 Washington St, Seattle,WA,98101 +269196,AA Batteries (4-pack),3,3.84,2019-10-17 12:16:00,589 Elm St, San Francisco,CA,94016 +269197,Lightning Charging Cable,1,14.95,2019-10-17 20:39:00,97 West St, Portland,OR,97035 +269198,AA Batteries (4-pack),4,3.84,2019-10-25 11:50:00,97 12th St, San Francisco,CA,94016 +269199,LG Washing Machine,1,600.0,2019-10-01 15:13:00,181 South St, Los Angeles,CA,90001 +269200,27in FHD Monitor,1,149.99,2019-10-03 19:17:00,963 Pine St, Atlanta,GA,30301 +269201,USB-C Charging Cable,1,11.95,2019-10-15 12:18:00,506 11th St, New York City,NY,10001 +269202,USB-C Charging Cable,1,11.95,2019-10-29 17:05:00,98 5th St, Los Angeles,CA,90001 +269203,USB-C Charging Cable,1,11.95,2019-10-14 15:30:00,954 Meadow St, Boston,MA,02215 +269204,USB-C Charging Cable,1,11.95,2019-10-12 23:32:00,523 Hill St, Portland,ME,04101 +269205,Wired Headphones,1,11.99,2019-10-01 15:01:00,238 Chestnut St, San Francisco,CA,94016 +269206,USB-C Charging Cable,2,11.95,2019-10-30 22:04:00,907 Cedar St, Atlanta,GA,30301 +269207,Macbook Pro Laptop,1,1700.0,2019-10-04 20:51:00,605 Church St, San Francisco,CA,94016 +269208,AAA Batteries (4-pack),1,2.99,2019-10-07 19:02:00,701 Maple St, Seattle,WA,98101 +269209,AA Batteries (4-pack),4,3.84,2019-10-18 23:43:00,442 West St, Portland,OR,97035 +269210,Wired Headphones,1,11.99,2019-10-05 13:20:00,188 Sunset St, Boston,MA,02215 +269211,Apple Airpods Headphones,1,150.0,2019-10-22 21:36:00,490 Spruce St, Seattle,WA,98101 +269212,Wired Headphones,1,11.99,2019-10-08 21:23:00,870 River St, Atlanta,GA,30301 +269213,LG Washing Machine,1,600.0,2019-10-15 18:04:00,244 Dogwood St, Seattle,WA,98101 +269214,20in Monitor,1,109.99,2019-10-10 15:16:00,738 Meadow St, San Francisco,CA,94016 +269215,AAA Batteries (4-pack),2,2.99,2019-10-01 20:59:00,332 Jefferson St, Atlanta,GA,30301 +269216,Wired Headphones,1,11.99,2019-10-26 17:42:00,653 Meadow St, Los Angeles,CA,90001 +269217,AA Batteries (4-pack),1,3.84,2019-10-26 20:29:00,63 South St, San Francisco,CA,94016 +269218,Wired Headphones,1,11.99,2019-10-05 20:12:00,826 Madison St, New York City,NY,10001 +269219,Bose SoundSport Headphones,1,99.99,2019-10-27 09:24:00,436 10th St, Portland,OR,97035 +269220,AAA Batteries (4-pack),2,2.99,2019-10-29 09:13:00,468 6th St, Boston,MA,02215 +269221,27in 4K Gaming Monitor,1,389.99,2019-10-15 20:42:00,621 Sunset St, Austin,TX,73301 +269222,Apple Airpods Headphones,1,150.0,2019-10-19 20:40:00,880 Jefferson St, Atlanta,GA,30301 +269223,Wired Headphones,1,11.99,2019-10-16 13:20:00,255 Chestnut St, San Francisco,CA,94016 +269224,USB-C Charging Cable,1,11.95,2019-10-19 18:19:00,540 Dogwood St, Los Angeles,CA,90001 +269225,Lightning Charging Cable,1,14.95,2019-10-04 17:23:00,43 Sunset St, San Francisco,CA,94016 +269226,AA Batteries (4-pack),1,3.84,2019-10-12 02:01:00,173 13th St, Portland,OR,97035 +269227,Flatscreen TV,1,300.0,2019-10-09 21:35:00,421 1st St, Seattle,WA,98101 +269228,Vareebadd Phone,1,400.0,2019-10-23 13:46:00,547 10th St, Los Angeles,CA,90001 +269229,27in FHD Monitor,1,149.99,2019-10-06 20:26:00,105 Lakeview St, San Francisco,CA,94016 +269230,Apple Airpods Headphones,1,150.0,2019-10-14 07:38:00,834 Lakeview St, New York City,NY,10001 +269231,Flatscreen TV,1,300.0,2019-10-19 19:54:00,916 5th St, Portland,OR,97035 +269232,Wired Headphones,1,11.99,2019-10-13 23:22:00,82 Chestnut St, Austin,TX,73301 +269233,Lightning Charging Cable,1,14.95,2019-10-26 23:14:00,991 Pine St, Seattle,WA,98101 +269234,Wired Headphones,2,11.99,2019-10-20 20:58:00,636 Madison St, Los Angeles,CA,90001 +269235,AA Batteries (4-pack),1,3.84,2019-10-09 07:44:00,313 6th St, San Francisco,CA,94016 +269236,Apple Airpods Headphones,1,150.0,2019-10-16 09:48:00,948 Cherry St, San Francisco,CA,94016 +269237,Bose SoundSport Headphones,1,99.99,2019-10-23 09:47:00,679 7th St, New York City,NY,10001 +269238,USB-C Charging Cable,1,11.95,2019-10-22 10:57:00,382 Walnut St, San Francisco,CA,94016 +269239,Wired Headphones,2,11.99,2019-10-02 18:45:00,564 Walnut St, Atlanta,GA,30301 +269240,Lightning Charging Cable,2,14.95,2019-10-11 21:48:00,905 Sunset St, Atlanta,GA,30301 +269241,Lightning Charging Cable,1,14.95,2019-10-15 18:40:00,997 Meadow St, Atlanta,GA,30301 +269242,27in 4K Gaming Monitor,1,389.99,2019-10-19 19:40:00,736 South St, Boston,MA,02215 +269243,Wired Headphones,1,11.99,2019-10-20 01:37:00,941 Spruce St, Boston,MA,02215 +269244,Wired Headphones,1,11.99,2019-10-04 12:25:00,87 Madison St, Boston,MA,02215 +269245,Wired Headphones,1,11.99,2019-10-18 07:50:00,952 14th St, San Francisco,CA,94016 +269246,USB-C Charging Cable,1,11.95,2019-10-27 20:22:00,456 Spruce St, Boston,MA,02215 +269247,Macbook Pro Laptop,1,1700.0,2019-10-20 21:11:00,483 Cedar St, Seattle,WA,98101 +269248,AA Batteries (4-pack),3,3.84,2019-10-21 19:59:00,907 9th St, Dallas,TX,75001 +269249,Wired Headphones,1,11.99,2019-10-19 12:47:00,519 River St, Seattle,WA,98101 +269249,AA Batteries (4-pack),3,3.84,2019-10-19 12:47:00,519 River St, Seattle,WA,98101 +269250,Bose SoundSport Headphones,1,99.99,2019-10-22 15:59:00,52 Center St, Los Angeles,CA,90001 +269251,34in Ultrawide Monitor,1,379.99,2019-10-13 22:37:00,590 Willow St, Atlanta,GA,30301 +269251,Macbook Pro Laptop,1,1700.0,2019-10-13 22:37:00,590 Willow St, Atlanta,GA,30301 +269252,Bose SoundSport Headphones,1,99.99,2019-10-18 22:18:00,794 Hickory St, Atlanta,GA,30301 +269253,AAA Batteries (4-pack),1,2.99,2019-10-25 01:04:00,390 Lake St, San Francisco,CA,94016 +269254,USB-C Charging Cable,1,11.95,2019-10-25 22:01:00,554 Highland St, San Francisco,CA,94016 +269255,Apple Airpods Headphones,1,150.0,2019-10-18 12:28:00,123 4th St, Boston,MA,02215 +269256,Wired Headphones,1,11.99,2019-10-27 11:14:00,195 Elm St, Boston,MA,02215 +269257,Wired Headphones,1,11.99,2019-10-16 23:58:00,803 Highland St, San Francisco,CA,94016 +269258,Apple Airpods Headphones,1,150.0,2019-10-31 08:11:00,879 12th St, San Francisco,CA,94016 +269259,AAA Batteries (4-pack),2,2.99,2019-10-24 20:29:00,216 4th St, Austin,TX,73301 +269260,AAA Batteries (4-pack),1,2.99,2019-10-28 08:30:00,753 Jefferson St, Los Angeles,CA,90001 +269261,Flatscreen TV,1,300.0,2019-10-23 19:15:00,62 1st St, San Francisco,CA,94016 +269262,27in 4K Gaming Monitor,1,389.99,2019-10-17 17:38:00,899 South St, Portland,OR,97035 +269263,Apple Airpods Headphones,1,150.0,2019-10-01 11:42:00,75 7th St, Los Angeles,CA,90001 +269264,Apple Airpods Headphones,1,150.0,2019-10-01 21:14:00,212 Dogwood St, San Francisco,CA,94016 +269265,AA Batteries (4-pack),1,3.84,2019-10-22 09:00:00,660 8th St, Seattle,WA,98101 +269266,USB-C Charging Cable,2,11.95,2019-10-12 19:59:00,347 Hill St, New York City,NY,10001 +269267,USB-C Charging Cable,1,11.95,2019-10-22 16:52:00,743 North St, Dallas,TX,75001 +269268,Google Phone,1,600.0,2019-10-20 18:08:00,928 Dogwood St, New York City,NY,10001 +269268,Bose SoundSport Headphones,1,99.99,2019-10-20 18:08:00,928 Dogwood St, New York City,NY,10001 +269269,USB-C Charging Cable,3,11.95,2019-10-09 10:01:00,529 Dogwood St, San Francisco,CA,94016 +269270,Flatscreen TV,1,300.0,2019-10-20 01:40:00,135 7th St, Los Angeles,CA,90001 +269271,Apple Airpods Headphones,1,150.0,2019-10-13 14:20:00,88 Chestnut St, Portland,OR,97035 +269272,iPhone,1,700.0,2019-10-31 11:48:00,204 Willow St, San Francisco,CA,94016 +269273,Google Phone,1,600.0,2019-10-05 19:09:00,751 Hickory St, Los Angeles,CA,90001 +269274,Lightning Charging Cable,1,14.95,2019-10-05 01:09:00,189 Cedar St, Atlanta,GA,30301 +269275,27in FHD Monitor,1,149.99,2019-10-13 10:19:00,319 12th St, Seattle,WA,98101 +269276,Apple Airpods Headphones,1,150.0,2019-10-29 20:14:00,821 Madison St, Seattle,WA,98101 +269277,AA Batteries (4-pack),1,3.84,2019-10-11 15:26:00,66 Willow St, Seattle,WA,98101 +269278,Apple Airpods Headphones,1,150.0,2019-10-04 12:01:00,961 South St, San Francisco,CA,94016 +269279,20in Monitor,1,109.99,2019-10-24 00:09:00,313 Johnson St, Boston,MA,02215 +269280,Lightning Charging Cable,1,14.95,2019-10-22 18:43:00,492 1st St, San Francisco,CA,94016 +269281,AA Batteries (4-pack),2,3.84,2019-10-15 18:47:00,343 Ridge St, Atlanta,GA,30301 +269282,20in Monitor,1,109.99,2019-10-21 00:32:00,301 8th St, Portland,OR,97035 +269283,Wired Headphones,1,11.99,2019-10-25 11:48:00,501 Adams St, Seattle,WA,98101 +269284,Macbook Pro Laptop,1,1700.0,2019-10-18 10:47:00,117 Meadow St, San Francisco,CA,94016 +269285,AAA Batteries (4-pack),2,2.99,2019-10-20 19:58:00,391 Cedar St, Portland,OR,97035 +269286,Lightning Charging Cable,1,14.95,2019-10-25 09:34:00,542 Willow St, Portland,OR,97035 +269287,27in FHD Monitor,1,149.99,2019-10-02 02:13:00,398 North St, New York City,NY,10001 +269288,Vareebadd Phone,1,400.0,2019-10-10 18:27:00,55 Ridge St, Los Angeles,CA,90001 +269289,Wired Headphones,1,11.99,2019-10-23 16:56:00,452 Hickory St, Atlanta,GA,30301 +269290,Lightning Charging Cable,1,14.95,2019-10-08 13:58:00,527 River St, San Francisco,CA,94016 +269291,AA Batteries (4-pack),1,3.84,2019-10-08 20:58:00,657 9th St, Atlanta,GA,30301 +269292,Bose SoundSport Headphones,1,99.99,2019-10-02 13:21:00,216 12th St, Seattle,WA,98101 +269293,USB-C Charging Cable,1,11.95,2019-10-22 15:41:00,373 River St, Los Angeles,CA,90001 +269294,34in Ultrawide Monitor,1,379.99,2019-10-30 21:13:00,937 6th St, Dallas,TX,75001 +269295,Bose SoundSport Headphones,2,99.99,2019-10-07 16:49:00,314 Center St, Austin,TX,73301 +269296,AAA Batteries (4-pack),1,2.99,2019-10-19 20:55:00,517 7th St, Seattle,WA,98101 +269297,34in Ultrawide Monitor,1,379.99,2019-10-18 17:01:00,233 Lincoln St, Los Angeles,CA,90001 +269298,Wired Headphones,1,11.99,2019-10-11 16:31:00,765 Lakeview St, San Francisco,CA,94016 +269299,Google Phone,1,600.0,2019-10-24 21:09:00,929 Dogwood St, San Francisco,CA,94016 +269300,Vareebadd Phone,1,400.0,2019-10-14 19:09:00,178 14th St, New York City,NY,10001 +269301,Lightning Charging Cable,1,14.95,2019-10-03 17:08:00,315 13th St, San Francisco,CA,94016 +269302,Lightning Charging Cable,1,14.95,2019-10-27 09:38:00,518 Jefferson St, San Francisco,CA,94016 +269303,Lightning Charging Cable,1,14.95,2019-10-20 10:08:00,2 River St, Austin,TX,73301 +269304,27in FHD Monitor,1,149.99,2019-10-19 13:29:00,263 2nd St, San Francisco,CA,94016 +269305,Vareebadd Phone,1,400.0,2019-10-28 18:29:00,916 Dogwood St, Dallas,TX,75001 +269306,USB-C Charging Cable,2,11.95,2019-10-28 06:06:00,477 5th St, Seattle,WA,98101 +269307,AAA Batteries (4-pack),3,2.99,2019-10-31 12:54:00,916 Cherry St, San Francisco,CA,94016 +269308,AAA Batteries (4-pack),1,2.99,2019-10-18 17:54:00,207 Park St, Seattle,WA,98101 +269309,Lightning Charging Cable,1,14.95,2019-10-22 19:31:00,456 Hickory St, Portland,OR,97035 +269310,LG Washing Machine,1,600.0,2019-10-15 15:56:00,599 13th St, Los Angeles,CA,90001 +269311,Wired Headphones,1,11.99,2019-10-31 13:18:00,350 Cherry St, San Francisco,CA,94016 +269312,Apple Airpods Headphones,1,150.0,2019-10-01 17:45:00,273 Main St, San Francisco,CA,94016 +269313,Bose SoundSport Headphones,1,99.99,2019-10-28 04:26:00,641 9th St, Austin,TX,73301 +269314,LG Dryer,1,600.0,2019-10-29 17:24:00,178 Chestnut St, New York City,NY,10001 +269315,Apple Airpods Headphones,1,150.0,2019-10-17 19:33:00,460 2nd St, Los Angeles,CA,90001 +269316,Bose SoundSport Headphones,1,99.99,2019-10-31 18:53:00,970 Meadow St, Los Angeles,CA,90001 +269317,AAA Batteries (4-pack),1,2.99,2019-10-31 11:09:00,545 Lake St, San Francisco,CA,94016 +269317,Vareebadd Phone,1,400.0,2019-10-31 11:09:00,545 Lake St, San Francisco,CA,94016 +269318,AA Batteries (4-pack),1,3.84,2019-10-27 02:16:00,643 5th St, Austin,TX,73301 +269319,AA Batteries (4-pack),1,3.84,2019-10-07 23:06:00,52 7th St, San Francisco,CA,94016 +269320,Flatscreen TV,1,300.0,2019-10-24 20:20:00,874 South St, San Francisco,CA,94016 +269321,27in FHD Monitor,1,149.99,2019-10-09 20:09:00,7 10th St, San Francisco,CA,94016 +269322,Apple Airpods Headphones,1,150.0,2019-10-05 19:23:00,848 Adams St, Los Angeles,CA,90001 +269323,AA Batteries (4-pack),1,3.84,2019-10-28 01:27:00,99 North St, Seattle,WA,98101 +269324,Bose SoundSport Headphones,1,99.99,2019-10-18 09:27:00,332 14th St, Los Angeles,CA,90001 +269324,USB-C Charging Cable,1,11.95,2019-10-18 09:27:00,332 14th St, Los Angeles,CA,90001 +269325,Wired Headphones,1,11.99,2019-10-26 15:51:00,821 Ridge St, San Francisco,CA,94016 +269326,Wired Headphones,1,11.99,2019-10-29 21:59:00,937 Main St, Portland,OR,97035 +269327,AA Batteries (4-pack),1,3.84,2019-10-23 14:11:00,803 Elm St, Los Angeles,CA,90001 +269328,27in 4K Gaming Monitor,1,389.99,2019-10-25 21:34:00,599 Hickory St, Los Angeles,CA,90001 +269329,AA Batteries (4-pack),2,3.84,2019-10-02 18:14:00,709 Church St, New York City,NY,10001 +269330,AA Batteries (4-pack),2,3.84,2019-10-09 18:07:00,508 Jefferson St, San Francisco,CA,94016 +269331,USB-C Charging Cable,1,11.95,2019-10-09 11:01:00,323 Madison St, San Francisco,CA,94016 +269332,ThinkPad Laptop,1,999.99,2019-10-01 13:36:00,658 Adams St, San Francisco,CA,94016 +269333,AAA Batteries (4-pack),2,2.99,2019-10-20 11:40:00,22 Willow St, San Francisco,CA,94016 +269334,AAA Batteries (4-pack),2,2.99,2019-10-29 19:40:00,545 13th St, San Francisco,CA,94016 +269335,AAA Batteries (4-pack),3,2.99,2019-10-16 17:05:00,508 Highland St, Los Angeles,CA,90001 +269336,AAA Batteries (4-pack),1,2.99,2019-10-08 15:05:00,628 Jefferson St, New York City,NY,10001 +269337,Google Phone,1,600.0,2019-10-24 08:16:00,14 Church St, Los Angeles,CA,90001 +269338,Wired Headphones,1,11.99,2019-10-16 08:09:00,647 West St, New York City,NY,10001 +269339,27in 4K Gaming Monitor,1,389.99,2019-10-20 16:03:00,327 Johnson St, Los Angeles,CA,90001 +269340,AA Batteries (4-pack),2,3.84,2019-10-23 10:05:00,976 Highland St, Boston,MA,02215 +269341,AAA Batteries (4-pack),2,2.99,2019-10-21 23:42:00,618 Madison St, Los Angeles,CA,90001 +269342,AAA Batteries (4-pack),1,2.99,2019-10-08 17:34:00,233 Center St, Los Angeles,CA,90001 +269343,iPhone,1,700.0,2019-10-14 18:50:00,586 Lincoln St, Los Angeles,CA,90001 +269344,AA Batteries (4-pack),2,3.84,2019-10-05 00:38:00,992 Jefferson St, Dallas,TX,75001 +269345,AAA Batteries (4-pack),1,2.99,2019-10-14 11:42:00,613 Sunset St, Seattle,WA,98101 +269346,AAA Batteries (4-pack),1,2.99,2019-10-07 18:57:00,920 Jackson St, San Francisco,CA,94016 +269347,27in 4K Gaming Monitor,1,389.99,2019-10-12 17:40:00,4 Willow St, Los Angeles,CA,90001 +269348,Wired Headphones,1,11.99,2019-10-20 17:45:00,460 Elm St, San Francisco,CA,94016 +269349,Bose SoundSport Headphones,1,99.99,2019-10-16 14:12:00,315 10th St, San Francisco,CA,94016 +269350,AAA Batteries (4-pack),1,2.99,2019-10-02 09:03:00,740 Church St, Boston,MA,02215 +269351,Wired Headphones,1,11.99,2019-10-03 23:27:00,759 West St, New York City,NY,10001 +269352,AAA Batteries (4-pack),1,2.99,2019-10-27 16:23:00,655 Pine St, Los Angeles,CA,90001 +269353,AA Batteries (4-pack),1,3.84,2019-10-23 17:39:00,195 Lake St, San Francisco,CA,94016 +269354,USB-C Charging Cable,1,11.95,2019-10-27 19:34:00,41 Lake St, Boston,MA,02215 +269355,Lightning Charging Cable,1,14.95,2019-10-14 16:23:00,37 Elm St, Dallas,TX,75001 +269356,USB-C Charging Cable,1,11.95,2019-10-04 10:41:00,994 12th St, Portland,OR,97035 +269357,Bose SoundSport Headphones,1,99.99,2019-10-17 19:46:00,833 9th St, Dallas,TX,75001 +269358,AAA Batteries (4-pack),1,2.99,2019-10-03 15:40:00,857 Adams St, Atlanta,GA,30301 +269359,Lightning Charging Cable,1,14.95,2019-10-03 10:20:00,60 Sunset St, Dallas,TX,75001 +269360,Wired Headphones,1,11.99,2019-10-27 18:41:00,61 9th St, Seattle,WA,98101 +269361,AAA Batteries (4-pack),1,2.99,2019-10-07 18:17:00,237 Lincoln St, Boston,MA,02215 +269362,Bose SoundSport Headphones,1,99.99,2019-10-16 23:03:00,18 Cherry St, Dallas,TX,75001 +269363,Apple Airpods Headphones,1,150.0,2019-10-12 23:27:00,520 2nd St, Portland,OR,97035 +269363,Bose SoundSport Headphones,1,99.99,2019-10-12 23:27:00,520 2nd St, Portland,OR,97035 +269364,ThinkPad Laptop,1,999.99,2019-10-11 21:12:00,862 Dogwood St, Los Angeles,CA,90001 +269365,USB-C Charging Cable,1,11.95,2019-10-01 19:36:00,298 14th St, Austin,TX,73301 +269366,Apple Airpods Headphones,1,150.0,2019-10-13 09:05:00,585 Willow St, Portland,OR,97035 +269367,Wired Headphones,1,11.99,2019-10-29 20:57:00,922 Madison St, Dallas,TX,75001 +269368,USB-C Charging Cable,1,11.95,2019-10-01 09:46:00,234 1st St, New York City,NY,10001 +269369,USB-C Charging Cable,1,11.95,2019-10-26 11:08:00,919 Lincoln St, Seattle,WA,98101 +269370,Lightning Charging Cable,1,14.95,2019-10-05 12:12:00,275 Wilson St, Boston,MA,02215 +269371,iPhone,1,700.0,2019-10-25 17:14:00,248 North St, San Francisco,CA,94016 +269372,34in Ultrawide Monitor,1,379.99,2019-10-11 18:48:00,492 14th St, San Francisco,CA,94016 +269373,AAA Batteries (4-pack),2,2.99,2019-10-05 19:48:00,90 Chestnut St, New York City,NY,10001 +269374,Wired Headphones,1,11.99,2019-10-02 13:37:00,19 Jefferson St, New York City,NY,10001 +269375,Wired Headphones,1,11.99,2019-10-02 11:15:00,503 Walnut St, Atlanta,GA,30301 +269376,AA Batteries (4-pack),1,3.84,2019-10-12 17:55:00,671 10th St, San Francisco,CA,94016 +269377,Wired Headphones,1,11.99,2019-10-06 15:02:00,332 River St, New York City,NY,10001 +269378,AAA Batteries (4-pack),1,2.99,2019-10-30 06:09:00,90 11th St, Boston,MA,02215 +269379,USB-C Charging Cable,1,11.95,2019-10-23 01:55:00,952 9th St, Dallas,TX,75001 +269380,AAA Batteries (4-pack),1,2.99,2019-10-07 21:45:00,821 6th St, San Francisco,CA,94016 +269381,AAA Batteries (4-pack),2,2.99,2019-10-18 17:37:00,75 West St, Dallas,TX,75001 +269382,AA Batteries (4-pack),1,3.84,2019-10-22 19:58:00,606 Adams St, New York City,NY,10001 +269383,Bose SoundSport Headphones,1,99.99,2019-10-21 19:12:00,25 Main St, Los Angeles,CA,90001 +269384,Wired Headphones,1,11.99,2019-10-30 14:37:00,338 13th St, Austin,TX,73301 +269385,USB-C Charging Cable,1,11.95,2019-10-31 13:49:00,844 Park St, Los Angeles,CA,90001 +269386,Flatscreen TV,1,300.0,2019-10-15 11:34:00,490 4th St, San Francisco,CA,94016 +269387,Apple Airpods Headphones,1,150.0,2019-10-08 11:16:00,953 Madison St, New York City,NY,10001 +269388,AA Batteries (4-pack),1,3.84,2019-10-10 12:40:00,383 Chestnut St, San Francisco,CA,94016 +269389,Wired Headphones,1,11.99,2019-10-17 10:29:00,293 Johnson St, Los Angeles,CA,90001 +269390,27in 4K Gaming Monitor,1,389.99,2019-10-08 20:10:00,241 Johnson St, Austin,TX,73301 +269391,Wired Headphones,1,11.99,2019-10-22 20:23:00,430 Lakeview St, Atlanta,GA,30301 +269392,iPhone,1,700.0,2019-10-19 20:21:00,354 Highland St, Dallas,TX,75001 +269393,Bose SoundSport Headphones,1,99.99,2019-10-22 09:11:00,398 Lake St, Boston,MA,02215 +269394,Lightning Charging Cable,1,14.95,2019-10-21 15:22:00,213 Johnson St, San Francisco,CA,94016 +269395,Google Phone,1,600.0,2019-10-13 08:35:00,552 Sunset St, Dallas,TX,75001 +269396,AA Batteries (4-pack),1,3.84,2019-10-05 15:22:00,176 Washington St, Austin,TX,73301 +269397,Macbook Pro Laptop,1,1700.0,2019-10-12 15:11:00,836 Sunset St, Los Angeles,CA,90001 +269398,Flatscreen TV,1,300.0,2019-10-28 19:44:00,399 2nd St, New York City,NY,10001 +269399,34in Ultrawide Monitor,1,379.99,2019-10-09 15:36:00,838 Church St, New York City,NY,10001 +269400,AAA Batteries (4-pack),1,2.99,2019-10-06 16:16:00,643 Park St, Los Angeles,CA,90001 +269401,AA Batteries (4-pack),1,3.84,2019-10-07 13:15:00,569 Lincoln St, Boston,MA,02215 +269402,iPhone,1,700.0,2019-10-18 20:56:00,823 1st St, San Francisco,CA,94016 +269403,Bose SoundSport Headphones,1,99.99,2019-10-29 21:52:00,997 Elm St, Los Angeles,CA,90001 +269404,Bose SoundSport Headphones,1,99.99,2019-10-19 15:37:00,865 8th St, San Francisco,CA,94016 +269405,Google Phone,1,600.0,2019-10-16 19:42:00,899 Highland St, Atlanta,GA,30301 +269405,USB-C Charging Cable,1,11.95,2019-10-16 19:42:00,899 Highland St, Atlanta,GA,30301 +269406,Wired Headphones,1,11.99,2019-10-13 21:42:00,264 Adams St, Dallas,TX,75001 +269407,Wired Headphones,1,11.99,2019-10-29 22:58:00,520 Main St, San Francisco,CA,94016 +269408,AAA Batteries (4-pack),3,2.99,2019-10-17 13:50:00,285 Highland St, Boston,MA,02215 +269409,Vareebadd Phone,1,400.0,2019-10-03 12:43:00,307 Willow St, Boston,MA,02215 +269410,Apple Airpods Headphones,1,150.0,2019-10-15 14:42:00,335 Jefferson St, Portland,OR,97035 +269411,AAA Batteries (4-pack),1,2.99,2019-10-17 10:16:00,485 11th St, Boston,MA,02215 +269412,AAA Batteries (4-pack),2,2.99,2019-10-02 13:34:00,421 Center St, Boston,MA,02215 +269413,Apple Airpods Headphones,1,150.0,2019-10-21 18:44:00,448 Elm St, New York City,NY,10001 +269414,27in 4K Gaming Monitor,1,389.99,2019-10-12 17:56:00,215 Willow St, San Francisco,CA,94016 +269415,AA Batteries (4-pack),2,3.84,2019-10-26 10:48:00,76 Adams St, San Francisco,CA,94016 +269416,Apple Airpods Headphones,1,150.0,2019-10-24 00:29:00,338 11th St, New York City,NY,10001 +269417,Apple Airpods Headphones,1,150.0,2019-10-05 07:01:00,197 Maple St, San Francisco,CA,94016 +269418,Apple Airpods Headphones,1,150.0,2019-10-23 13:23:00,168 Hickory St, New York City,NY,10001 +269419,USB-C Charging Cable,1,11.95,2019-10-25 19:23:00,782 Highland St, San Francisco,CA,94016 +269420,USB-C Charging Cable,1,11.95,2019-10-29 22:17:00,321 Chestnut St, Los Angeles,CA,90001 +269421,Wired Headphones,1,11.99,2019-10-02 18:45:00,291 Wilson St, Los Angeles,CA,90001 +269422,USB-C Charging Cable,1,11.95,2019-10-10 17:12:00,726 Spruce St, San Francisco,CA,94016 +269423,Wired Headphones,1,11.99,2019-10-29 10:31:00,897 9th St, Boston,MA,02215 +269424,AA Batteries (4-pack),1,3.84,2019-10-02 10:23:00,692 Willow St, Atlanta,GA,30301 +269425,AA Batteries (4-pack),1,3.84,2019-10-06 13:31:00,766 Johnson St, San Francisco,CA,94016 +269426,20in Monitor,1,109.99,2019-10-16 08:00:00,662 Meadow St, New York City,NY,10001 +269427,AAA Batteries (4-pack),1,2.99,2019-10-26 06:31:00,192 8th St, San Francisco,CA,94016 +269428,USB-C Charging Cable,1,11.95,2019-10-16 18:12:00,717 Hickory St, Seattle,WA,98101 +269429,34in Ultrawide Monitor,1,379.99,2019-10-17 16:47:00,578 Walnut St, San Francisco,CA,94016 +269430,ThinkPad Laptop,1,999.99,2019-10-28 14:59:00,160 13th St, New York City,NY,10001 +269431,Apple Airpods Headphones,1,150.0,2019-10-21 16:56:00,409 5th St, Portland,OR,97035 +269432,iPhone,1,700.0,2019-10-17 22:44:00,863 4th St, Los Angeles,CA,90001 +269433,USB-C Charging Cable,1,11.95,2019-10-30 15:34:00,840 11th St, Seattle,WA,98101 +269434,AAA Batteries (4-pack),4,2.99,2019-10-29 19:22:00,827 Park St, Los Angeles,CA,90001 +269435,Wired Headphones,1,11.99,2019-10-02 16:18:00,275 Johnson St, New York City,NY,10001 +269436,AAA Batteries (4-pack),1,2.99,2019-10-04 08:30:00,27 Forest St, New York City,NY,10001 +269437,AA Batteries (4-pack),1,3.84,2019-10-04 13:00:00,715 Ridge St, Los Angeles,CA,90001 +269438,USB-C Charging Cable,1,11.95,2019-10-20 12:56:00,363 Willow St, Los Angeles,CA,90001 +269439,27in 4K Gaming Monitor,1,389.99,2019-10-23 13:45:00,430 Spruce St, San Francisco,CA,94016 +269440,AA Batteries (4-pack),1,3.84,2019-10-08 00:41:00,678 Lakeview St, Boston,MA,02215 +269441,Bose SoundSport Headphones,1,99.99,2019-10-26 18:11:00,18 Hickory St, Atlanta,GA,30301 +269442,Google Phone,1,600.0,2019-10-18 23:00:00,153 Jackson St, Austin,TX,73301 +269443,Bose SoundSport Headphones,1,99.99,2019-10-11 12:25:00,601 13th St, San Francisco,CA,94016 +269444,USB-C Charging Cable,1,11.95,2019-10-30 12:29:00,830 Willow St, Atlanta,GA,30301 +269445,USB-C Charging Cable,1,11.95,2019-10-07 20:26:00,962 River St, Dallas,TX,75001 +269446,AAA Batteries (4-pack),1,2.99,2019-10-17 13:22:00,359 Lakeview St, Seattle,WA,98101 +269447,USB-C Charging Cable,1,11.95,2019-10-19 09:41:00,443 Main St, Dallas,TX,75001 +269448,Lightning Charging Cable,2,14.95,2019-10-07 21:31:00,289 Madison St, Austin,TX,73301 +269449,USB-C Charging Cable,1,11.95,2019-10-05 21:09:00,757 2nd St, Los Angeles,CA,90001 +269450,Bose SoundSport Headphones,1,99.99,2019-10-11 16:43:00,43 7th St, Dallas,TX,75001 +269451,Bose SoundSport Headphones,1,99.99,2019-10-29 18:14:00,672 North St, Los Angeles,CA,90001 +269452,USB-C Charging Cable,1,11.95,2019-10-25 12:07:00,638 Madison St, Seattle,WA,98101 +269453,USB-C Charging Cable,1,11.95,2019-10-28 13:47:00,464 Elm St, New York City,NY,10001 +269454,AA Batteries (4-pack),2,3.84,2019-10-22 07:45:00,261 River St, New York City,NY,10001 +269455,Wired Headphones,1,11.99,2019-10-10 22:58:00,764 4th St, Los Angeles,CA,90001 +269456,AAA Batteries (4-pack),3,2.99,2019-10-31 13:59:00,886 Johnson St, New York City,NY,10001 +269457,Wired Headphones,1,11.99,2019-10-18 08:40:00,798 Washington St, Portland,OR,97035 +269458,USB-C Charging Cable,1,11.95,2019-10-04 10:04:00,633 Wilson St, New York City,NY,10001 +269458,Bose SoundSport Headphones,1,99.99,2019-10-04 10:04:00,633 Wilson St, New York City,NY,10001 +269459,Wired Headphones,1,11.99,2019-10-14 16:36:00,796 Dogwood St, San Francisco,CA,94016 +269460,Macbook Pro Laptop,1,1700.0,2019-10-22 16:44:00,64 Spruce St, San Francisco,CA,94016 +269461,Lightning Charging Cable,1,14.95,2019-10-18 12:12:00,653 4th St, Seattle,WA,98101 +269462,AA Batteries (4-pack),1,3.84,2019-10-21 09:50:00,600 2nd St, Boston,MA,02215 +269463,Wired Headphones,2,11.99,2019-10-31 00:35:00,164 Madison St, Boston,MA,02215 +269464,iPhone,1,700.0,2019-10-14 21:19:00,129 14th St, Austin,TX,73301 +269465,AAA Batteries (4-pack),1,2.99,2019-10-30 23:36:00,150 Lakeview St, Seattle,WA,98101 +269466,AAA Batteries (4-pack),1,2.99,2019-10-14 12:38:00,288 Johnson St, San Francisco,CA,94016 +269467,Vareebadd Phone,1,400.0,2019-10-02 13:39:00,965 Sunset St, Austin,TX,73301 +269468,Wired Headphones,2,11.99,2019-10-20 20:28:00,74 4th St, Dallas,TX,75001 +269469,Apple Airpods Headphones,1,150.0,2019-10-15 16:48:00,231 Madison St, San Francisco,CA,94016 +269470,27in 4K Gaming Monitor,1,389.99,2019-10-12 19:53:00,606 12th St, Seattle,WA,98101 +269471,Lightning Charging Cable,1,14.95,2019-10-09 23:23:00,858 Hill St, Boston,MA,02215 +269472,34in Ultrawide Monitor,1,379.99,2019-10-06 09:58:00,265 Elm St, San Francisco,CA,94016 +269473,Wired Headphones,1,11.99,2019-10-31 12:51:00,994 Lincoln St, Boston,MA,02215 +269474,Wired Headphones,1,11.99,2019-10-05 17:19:00,570 Madison St, Atlanta,GA,30301 +269475,Wired Headphones,1,11.99,2019-10-16 18:03:00,391 14th St, Portland,ME,04101 +269476,USB-C Charging Cable,1,11.95,2019-10-02 21:42:00,81 West St, New York City,NY,10001 +269477,27in FHD Monitor,1,149.99,2019-10-31 09:17:00,497 Maple St, Boston,MA,02215 +269478,Flatscreen TV,1,300.0,2019-10-12 16:27:00,593 Spruce St, San Francisco,CA,94016 +269479,Apple Airpods Headphones,1,150.0,2019-10-06 20:41:00,442 Lake St, Atlanta,GA,30301 +269480,AAA Batteries (4-pack),1,2.99,2019-10-25 14:11:00,68 Jackson St, Los Angeles,CA,90001 +269481,AA Batteries (4-pack),1,3.84,2019-10-11 23:59:00,602 2nd St, San Francisco,CA,94016 +269482,AAA Batteries (4-pack),4,2.99,2019-10-19 10:45:00,428 13th St, Austin,TX,73301 +269483,AAA Batteries (4-pack),1,2.99,2019-10-16 19:04:00,523 Chestnut St, Boston,MA,02215 +269484,iPhone,1,700.0,2019-10-29 14:53:00,927 Ridge St, Boston,MA,02215 +269485,Lightning Charging Cable,1,14.95,2019-10-15 12:16:00,493 5th St, New York City,NY,10001 +269486,iPhone,1,700.0,2019-10-23 17:26:00,486 11th St, Dallas,TX,75001 +269487,AA Batteries (4-pack),1,3.84,2019-10-18 13:20:00,416 Hickory St, Seattle,WA,98101 +269488,AAA Batteries (4-pack),1,2.99,2019-10-28 15:30:00,934 River St, Atlanta,GA,30301 +269489,Flatscreen TV,1,300.0,2019-10-23 16:10:00,222 8th St, Los Angeles,CA,90001 +269490,Apple Airpods Headphones,1,150.0,2019-10-20 13:53:00,178 Hill St, New York City,NY,10001 +269491,Apple Airpods Headphones,1,150.0,2019-10-11 21:05:00,833 Hill St, Los Angeles,CA,90001 +269492,Wired Headphones,1,11.99,2019-10-03 13:35:00,275 Cedar St, Seattle,WA,98101 +269493,Lightning Charging Cable,1,14.95,2019-10-18 05:16:00,342 Jackson St, San Francisco,CA,94016 +269494,AA Batteries (4-pack),1,3.84,2019-10-21 14:03:00,782 13th St, Boston,MA,02215 +269495,Bose SoundSport Headphones,1,99.99,2019-10-03 09:50:00,287 Washington St, Boston,MA,02215 +269496,USB-C Charging Cable,1,11.95,2019-10-17 19:05:00,681 Sunset St, Los Angeles,CA,90001 +269497,AAA Batteries (4-pack),1,2.99,2019-10-13 21:20:00,912 1st St, Dallas,TX,75001 +269498,AAA Batteries (4-pack),2,2.99,2019-10-25 19:39:00,158 14th St, Dallas,TX,75001 +269499,Lightning Charging Cable,2,14.95,2019-10-15 09:06:00,545 Church St, Los Angeles,CA,90001 +269500,Google Phone,1,600.0,2019-10-25 20:45:00,243 West St, Los Angeles,CA,90001 +269501,USB-C Charging Cable,1,11.95,2019-10-25 13:04:00,218 Elm St, San Francisco,CA,94016 +269502,USB-C Charging Cable,2,11.95,2019-10-06 13:12:00,856 Walnut St, San Francisco,CA,94016 +269503,AAA Batteries (4-pack),3,2.99,2019-10-18 19:46:00,697 Chestnut St, Atlanta,GA,30301 +269504,Lightning Charging Cable,1,14.95,2019-10-05 12:38:00,321 8th St, Portland,OR,97035 +269505,AA Batteries (4-pack),1,3.84,2019-10-01 08:19:00,879 14th St, Portland,OR,97035 +269506,Lightning Charging Cable,1,14.95,2019-10-27 17:00:00,468 Sunset St, Portland,OR,97035 +269507,AA Batteries (4-pack),1,3.84,2019-10-28 17:58:00,756 Jefferson St, Dallas,TX,75001 +269508,Lightning Charging Cable,1,14.95,2019-10-06 12:47:00,524 1st St, Dallas,TX,75001 +269509,Bose SoundSport Headphones,1,99.99,2019-10-22 14:08:00,927 Madison St, Seattle,WA,98101 +269510,USB-C Charging Cable,1,11.95,2019-10-10 21:33:00,241 Elm St, Los Angeles,CA,90001 +269511,ThinkPad Laptop,1,999.99,2019-10-31 16:15:00,622 13th St, Seattle,WA,98101 +269512,Lightning Charging Cable,1,14.95,2019-10-30 18:38:00,4 Adams St, Dallas,TX,75001 +269513,AAA Batteries (4-pack),2,2.99,2019-10-22 23:37:00,256 Washington St, Seattle,WA,98101 +269514,AA Batteries (4-pack),1,3.84,2019-10-02 15:42:00,70 Hill St, Portland,OR,97035 +269515,Flatscreen TV,1,300.0,2019-10-18 10:34:00,976 Sunset St, Seattle,WA,98101 +269516,AA Batteries (4-pack),1,3.84,2019-10-12 07:24:00,449 1st St, Boston,MA,02215 +269517,27in FHD Monitor,1,149.99,2019-10-24 19:31:00,264 Cherry St, New York City,NY,10001 +269518,27in FHD Monitor,1,149.99,2019-10-02 10:40:00,601 Wilson St, Seattle,WA,98101 +269519,Lightning Charging Cable,1,14.95,2019-10-11 16:10:00,323 Lake St, Los Angeles,CA,90001 +269520,27in FHD Monitor,1,149.99,2019-10-28 20:01:00,126 Church St, Seattle,WA,98101 +269521,iPhone,1,700.0,2019-10-20 19:06:00,304 Ridge St, Seattle,WA,98101 +269522,AAA Batteries (4-pack),1,2.99,2019-10-07 13:25:00,244 14th St, Los Angeles,CA,90001 +269523,USB-C Charging Cable,1,11.95,2019-10-18 11:24:00,492 Park St, San Francisco,CA,94016 +269524,USB-C Charging Cable,1,11.95,2019-10-30 15:30:00,177 Johnson St, Atlanta,GA,30301 +269525,ThinkPad Laptop,1,999.99,2019-10-27 08:19:00,156 Madison St, Los Angeles,CA,90001 +269526,Lightning Charging Cable,1,14.95,2019-10-11 22:53:00,861 River St, Atlanta,GA,30301 +269527,AA Batteries (4-pack),1,3.84,2019-10-17 19:36:00,405 Cherry St, New York City,NY,10001 +269528,AAA Batteries (4-pack),1,2.99,2019-10-17 15:35:00,848 2nd St, Los Angeles,CA,90001 +269529,Apple Airpods Headphones,1,150.0,2019-10-13 14:14:00,733 Ridge St, Dallas,TX,75001 +269530,Google Phone,1,600.0,2019-10-19 10:02:00,31 Meadow St, San Francisco,CA,94016 +269531,Bose SoundSport Headphones,2,99.99,2019-10-17 04:54:00,753 North St, Los Angeles,CA,90001 +269532,USB-C Charging Cable,1,11.95,2019-10-24 00:09:00,627 Jackson St, New York City,NY,10001 +269533,27in 4K Gaming Monitor,1,389.99,2019-10-26 22:43:00,977 11th St, Seattle,WA,98101 +269534,USB-C Charging Cable,1,11.95,2019-10-27 16:44:00,443 Jefferson St, Los Angeles,CA,90001 +269535,USB-C Charging Cable,1,11.95,2019-10-14 13:15:00,635 Sunset St, Seattle,WA,98101 +269536,USB-C Charging Cable,1,11.95,2019-10-11 06:51:00,371 Madison St, Boston,MA,02215 +269537,Bose SoundSport Headphones,1,99.99,2019-10-09 13:55:00,960 Hill St, Los Angeles,CA,90001 +269538,AA Batteries (4-pack),1,3.84,2019-10-18 17:32:00,118 Lake St, Portland,OR,97035 +269539,Wired Headphones,1,11.99,2019-10-20 21:53:00,444 South St, San Francisco,CA,94016 +269540,Apple Airpods Headphones,1,150.0,2019-10-02 10:12:00,741 Center St, Seattle,WA,98101 +269541,Flatscreen TV,1,300.0,2019-10-26 08:36:00,888 Washington St, San Francisco,CA,94016 +269542,Lightning Charging Cable,1,14.95,2019-10-27 20:00:00,346 7th St, New York City,NY,10001 +269543,USB-C Charging Cable,1,11.95,2019-10-01 19:54:00,808 5th St, San Francisco,CA,94016 +269544,AA Batteries (4-pack),2,3.84,2019-10-15 12:37:00,858 Church St, Portland,OR,97035 +269545,USB-C Charging Cable,1,11.95,2019-10-14 14:39:00,899 Pine St, New York City,NY,10001 +269546,AAA Batteries (4-pack),1,2.99,2019-10-04 20:11:00,964 Sunset St, Los Angeles,CA,90001 +269547,27in 4K Gaming Monitor,1,389.99,2019-10-07 19:52:00,667 Washington St, San Francisco,CA,94016 +269548,USB-C Charging Cable,1,11.95,2019-10-09 10:50:00,25 Church St, New York City,NY,10001 +269549,27in FHD Monitor,1,149.99,2019-10-20 10:16:00,553 4th St, Los Angeles,CA,90001 +269550,Flatscreen TV,1,300.0,2019-10-17 11:37:00,882 Washington St, Los Angeles,CA,90001 +269551,USB-C Charging Cable,1,11.95,2019-10-18 17:38:00,341 Cherry St, Los Angeles,CA,90001 +269552,20in Monitor,1,109.99,2019-10-01 13:13:00,784 14th St, Boston,MA,02215 +269553,USB-C Charging Cable,1,11.95,2019-10-15 21:54:00,897 Hill St, Los Angeles,CA,90001 +269554,iPhone,1,700.0,2019-10-18 01:06:00,891 Sunset St, Dallas,TX,75001 +269554,Apple Airpods Headphones,1,150.0,2019-10-18 01:06:00,891 Sunset St, Dallas,TX,75001 +269555,AAA Batteries (4-pack),3,2.99,2019-10-31 21:30:00,322 North St, Portland,OR,97035 +269556,iPhone,1,700.0,2019-10-27 16:37:00,406 13th St, San Francisco,CA,94016 +269557,Google Phone,1,600.0,2019-10-15 23:11:00,605 7th St, Seattle,WA,98101 +269557,USB-C Charging Cable,1,11.95,2019-10-15 23:11:00,605 7th St, Seattle,WA,98101 +269558,USB-C Charging Cable,1,11.95,2019-10-30 18:23:00,535 Dogwood St, Atlanta,GA,30301 +269559,AAA Batteries (4-pack),5,2.99,2019-10-14 16:27:00,507 11th St, San Francisco,CA,94016 +269560,Apple Airpods Headphones,1,150.0,2019-10-12 10:52:00,816 Hill St, Boston,MA,02215 +269561,Wired Headphones,1,11.99,2019-10-29 00:23:00,319 11th St, Dallas,TX,75001 +269562,27in 4K Gaming Monitor,1,389.99,2019-10-31 03:41:00,383 Cedar St, Los Angeles,CA,90001 +269563,iPhone,1,700.0,2019-10-08 15:24:00,924 Meadow St, Boston,MA,02215 +269563,Apple Airpods Headphones,1,150.0,2019-10-08 15:24:00,924 Meadow St, Boston,MA,02215 +269564,Apple Airpods Headphones,1,150.0,2019-10-05 14:11:00,833 Johnson St, New York City,NY,10001 +269565,Flatscreen TV,1,300.0,2019-10-25 00:55:00,899 1st St, Los Angeles,CA,90001 +269566,Apple Airpods Headphones,1,150.0,2019-10-30 02:58:00,326 12th St, New York City,NY,10001 +269567,iPhone,1,700.0,2019-10-20 08:29:00,203 Pine St, San Francisco,CA,94016 +269567,Lightning Charging Cable,1,14.95,2019-10-20 08:29:00,203 Pine St, San Francisco,CA,94016 +269568,AA Batteries (4-pack),1,3.84,2019-10-28 11:53:00,952 Center St, Seattle,WA,98101 +269569,AAA Batteries (4-pack),2,2.99,2019-10-18 18:39:00,313 13th St, Boston,MA,02215 +269570,LG Dryer,1,600.0,2019-10-27 23:49:00,552 4th St, Boston,MA,02215 +269571,27in 4K Gaming Monitor,1,389.99,2019-10-02 14:22:00,903 Lakeview St, San Francisco,CA,94016 +269572,34in Ultrawide Monitor,1,379.99,2019-10-03 13:00:00,367 Pine St, Los Angeles,CA,90001 +269573,Bose SoundSport Headphones,1,99.99,2019-10-10 09:28:00,914 Jackson St, Boston,MA,02215 +269574,Wired Headphones,1,11.99,2019-10-21 17:09:00,781 9th St, San Francisco,CA,94016 +269575,Google Phone,1,600.0,2019-10-26 22:09:00,910 Hickory St, Boston,MA,02215 +269575,USB-C Charging Cable,1,11.95,2019-10-26 22:09:00,910 Hickory St, Boston,MA,02215 +269576,Bose SoundSport Headphones,1,99.99,2019-10-16 14:11:00,319 Adams St, Seattle,WA,98101 +269577,Flatscreen TV,1,300.0,2019-10-20 10:47:00,564 Jefferson St, Dallas,TX,75001 +269578,27in FHD Monitor,1,149.99,2019-10-25 09:31:00,585 Sunset St, Austin,TX,73301 +269579,Lightning Charging Cable,1,14.95,2019-10-03 08:14:00,694 6th St, San Francisco,CA,94016 +269580,Wired Headphones,1,11.99,2019-10-23 13:32:00,4 Walnut St, San Francisco,CA,94016 +269581,Wired Headphones,1,11.99,2019-10-14 14:08:00,841 Walnut St, San Francisco,CA,94016 +269582,iPhone,1,700.0,2019-10-09 02:08:00,490 North St, Dallas,TX,75001 +269583,Lightning Charging Cable,1,14.95,2019-10-13 21:09:00,39 Forest St, San Francisco,CA,94016 +269584,Wired Headphones,1,11.99,2019-10-11 11:54:00,829 Jefferson St, Boston,MA,02215 +269585,Apple Airpods Headphones,1,150.0,2019-10-12 11:36:00,201 Madison St, Atlanta,GA,30301 +269586,iPhone,1,700.0,2019-10-14 18:50:00,334 11th St, Seattle,WA,98101 +269587,AAA Batteries (4-pack),2,2.99,2019-10-30 20:18:00,60 South St, Los Angeles,CA,90001 +269588,AA Batteries (4-pack),1,3.84,2019-10-10 10:04:00,209 Maple St, Boston,MA,02215 +269589,Lightning Charging Cable,1,14.95,2019-10-28 14:37:00,123 Dogwood St, Boston,MA,02215 +269589,AA Batteries (4-pack),1,3.84,2019-10-28 14:37:00,123 Dogwood St, Boston,MA,02215 +269590,ThinkPad Laptop,1,999.99,2019-10-01 03:12:00,907 2nd St, Los Angeles,CA,90001 +269591,Lightning Charging Cable,1,14.95,2019-10-01 19:17:00,447 Jackson St, Dallas,TX,75001 +269592,USB-C Charging Cable,1,11.95,2019-10-19 12:28:00,239 Meadow St, New York City,NY,10001 +269593,USB-C Charging Cable,2,11.95,2019-10-30 15:19:00,857 Center St, Boston,MA,02215 +269594,Wired Headphones,1,11.99,2019-10-18 10:16:00,687 South St, Boston,MA,02215 +269595,ThinkPad Laptop,1,999.99,2019-10-16 15:39:00,704 Wilson St, Los Angeles,CA,90001 +269596,Lightning Charging Cable,1,14.95,2019-10-21 13:11:00,740 Madison St, Los Angeles,CA,90001 +269597,AAA Batteries (4-pack),1,2.99,2019-10-08 06:23:00,767 1st St, Austin,TX,73301 +269598,Lightning Charging Cable,1,14.95,2019-10-17 10:54:00,649 Wilson St, Atlanta,GA,30301 +269599,USB-C Charging Cable,1,11.95,2019-10-31 08:03:00,48 Cedar St, New York City,NY,10001 +269600,27in FHD Monitor,1,149.99,2019-10-08 11:42:00,344 Adams St, San Francisco,CA,94016 +269601,27in 4K Gaming Monitor,1,389.99,2019-10-06 17:35:00,549 Jackson St, Boston,MA,02215 +269602,Bose SoundSport Headphones,1,99.99,2019-10-07 11:54:00,978 Jefferson St, Los Angeles,CA,90001 +269603,iPhone,1,700.0,2019-10-29 22:19:00,785 13th St, New York City,NY,10001 +269604,Flatscreen TV,1,300.0,2019-10-09 18:38:00,819 Hickory St, Los Angeles,CA,90001 +269605,27in FHD Monitor,1,149.99,2019-10-28 16:41:00,904 14th St, Los Angeles,CA,90001 +269606,Google Phone,1,600.0,2019-10-13 10:18:00,426 9th St, New York City,NY,10001 +269606,Bose SoundSport Headphones,1,99.99,2019-10-13 10:18:00,426 9th St, New York City,NY,10001 +269607,USB-C Charging Cable,1,11.95,2019-10-08 16:06:00,380 Pine St, San Francisco,CA,94016 +269608,Bose SoundSport Headphones,1,99.99,2019-10-23 18:39:00,945 Forest St, Austin,TX,73301 +269609,USB-C Charging Cable,1,11.95,2019-10-02 16:45:00,525 8th St, Boston,MA,02215 +269610,USB-C Charging Cable,1,11.95,2019-10-13 22:02:00,519 Walnut St, Atlanta,GA,30301 +269611,Bose SoundSport Headphones,1,99.99,2019-10-03 18:54:00,245 Johnson St, Atlanta,GA,30301 +269612,AAA Batteries (4-pack),1,2.99,2019-10-01 15:02:00,930 9th St, Seattle,WA,98101 +269613,AAA Batteries (4-pack),1,2.99,2019-10-08 19:08:00,658 10th St, San Francisco,CA,94016 +269614,USB-C Charging Cable,2,11.95,2019-10-27 19:56:00,287 10th St, Los Angeles,CA,90001 +269615,Google Phone,1,600.0,2019-10-14 15:04:00,153 Chestnut St, Los Angeles,CA,90001 +269616,USB-C Charging Cable,1,11.95,2019-10-21 23:53:00,100 Highland St, San Francisco,CA,94016 +269617,Flatscreen TV,1,300.0,2019-10-06 16:12:00,865 Johnson St, San Francisco,CA,94016 +269618,Lightning Charging Cable,1,14.95,2019-10-01 12:44:00,161 12th St, Dallas,TX,75001 +269619,Wired Headphones,1,11.99,2019-10-27 21:29:00,880 Walnut St, Dallas,TX,75001 +269620,USB-C Charging Cable,1,11.95,2019-10-10 20:03:00,502 Center St, Seattle,WA,98101 +269621,AA Batteries (4-pack),2,3.84,2019-10-01 12:42:00,23 6th St, San Francisco,CA,94016 +269622,iPhone,1,700.0,2019-10-20 15:35:00,509 Highland St, San Francisco,CA,94016 +269623,27in 4K Gaming Monitor,1,389.99,2019-10-18 12:45:00,294 Ridge St, Boston,MA,02215 +269624,AAA Batteries (4-pack),2,2.99,2019-10-10 12:27:00,78 Meadow St, Portland,ME,04101 +269625,Bose SoundSport Headphones,1,99.99,2019-10-03 21:01:00,885 Highland St, Austin,TX,73301 +269626,Apple Airpods Headphones,1,150.0,2019-10-20 13:06:00,871 Ridge St, Los Angeles,CA,90001 +269626,27in 4K Gaming Monitor,1,389.99,2019-10-20 13:06:00,871 Ridge St, Los Angeles,CA,90001 +269627,20in Monitor,1,109.99,2019-10-23 15:06:00,32 Spruce St, New York City,NY,10001 +269628,Apple Airpods Headphones,1,150.0,2019-10-02 21:46:00,552 Jefferson St, New York City,NY,10001 +269629,iPhone,1,700.0,2019-10-20 09:50:00,357 Lake St, Atlanta,GA,30301 +269629,Lightning Charging Cable,1,14.95,2019-10-20 09:50:00,357 Lake St, Atlanta,GA,30301 +269630,27in 4K Gaming Monitor,1,389.99,2019-10-05 17:22:00,796 6th St, Los Angeles,CA,90001 +269631,AAA Batteries (4-pack),1,2.99,2019-10-14 13:32:00,388 South St, San Francisco,CA,94016 +269632,Lightning Charging Cable,1,14.95,2019-10-26 04:44:00,340 Jackson St, San Francisco,CA,94016 +269633,Flatscreen TV,1,300.0,2019-10-23 16:54:00,338 Johnson St, New York City,NY,10001 +269634,Wired Headphones,1,11.99,2019-10-04 11:41:00,14 Main St, San Francisco,CA,94016 +269635,Wired Headphones,1,11.99,2019-10-03 12:45:00,65 8th St, San Francisco,CA,94016 +269636,AA Batteries (4-pack),1,3.84,2019-10-21 19:01:00,968 14th St, Portland,OR,97035 +269637,Apple Airpods Headphones,1,150.0,2019-10-16 12:05:00,352 2nd St, Dallas,TX,75001 +269638,Macbook Pro Laptop,1,1700.0,2019-10-18 07:47:00,130 West St, Los Angeles,CA,90001 +269639,27in FHD Monitor,1,149.99,2019-10-09 13:37:00,464 14th St, Dallas,TX,75001 +269640,Wired Headphones,1,11.99,2019-10-30 18:08:00,226 13th St, Austin,TX,73301 +269641,Bose SoundSport Headphones,1,99.99,2019-10-10 12:55:00,741 Dogwood St, San Francisco,CA,94016 +269642,USB-C Charging Cable,1,11.95,2019-10-23 20:49:00,915 Spruce St, Portland,OR,97035 +269643,Lightning Charging Cable,1,14.95,2019-10-18 09:33:00,745 Lakeview St, San Francisco,CA,94016 +269644,USB-C Charging Cable,1,11.95,2019-10-20 15:22:00,680 13th St, San Francisco,CA,94016 +269645,Google Phone,1,600.0,2019-10-29 20:48:00,736 Lincoln St, San Francisco,CA,94016 +269646,USB-C Charging Cable,1,11.95,2019-10-15 09:20:00,218 Spruce St, San Francisco,CA,94016 +269647,AA Batteries (4-pack),1,3.84,2019-10-08 23:03:00,451 5th St, Boston,MA,02215 +269648,iPhone,1,700.0,2019-10-10 22:30:00,947 9th St, San Francisco,CA,94016 +269649,20in Monitor,1,109.99,2019-10-21 15:03:00,383 Highland St, Portland,OR,97035 +269650,27in 4K Gaming Monitor,1,389.99,2019-10-18 10:21:00,282 9th St, Portland,ME,04101 +269650,27in FHD Monitor,1,149.99,2019-10-18 10:21:00,282 9th St, Portland,ME,04101 +269651,iPhone,1,700.0,2019-10-15 12:55:00,26 Jackson St, Portland,OR,97035 +269652,Bose SoundSport Headphones,1,99.99,2019-10-26 09:43:00,971 Chestnut St, San Francisco,CA,94016 +269653,USB-C Charging Cable,3,11.95,2019-10-11 18:03:00,40 5th St, Los Angeles,CA,90001 +269654,Wired Headphones,1,11.99,2019-10-11 17:21:00,724 Hill St, Austin,TX,73301 +269655,Bose SoundSport Headphones,1,99.99,2019-10-16 10:13:00,768 Jackson St, San Francisco,CA,94016 +269656,Macbook Pro Laptop,1,1700.0,2019-10-10 12:24:00,18 Washington St, Austin,TX,73301 +269657,AAA Batteries (4-pack),1,2.99,2019-10-07 16:56:00,665 Willow St, San Francisco,CA,94016 +269658,iPhone,1,700.0,2019-10-29 20:46:00,125 7th St, Boston,MA,02215 +269658,Apple Airpods Headphones,1,150.0,2019-10-29 20:46:00,125 7th St, Boston,MA,02215 +269659,AA Batteries (4-pack),1,3.84,2019-10-29 17:04:00,604 4th St, San Francisco,CA,94016 +269660,AA Batteries (4-pack),1,3.84,2019-10-25 09:19:00,986 Hickory St, New York City,NY,10001 +269661,USB-C Charging Cable,1,11.95,2019-10-02 12:08:00,116 Forest St, San Francisco,CA,94016 +269662,Bose SoundSport Headphones,1,99.99,2019-10-05 20:13:00,164 6th St, Boston,MA,02215 +269663,27in FHD Monitor,1,149.99,2019-10-08 00:15:00,261 13th St, Los Angeles,CA,90001 +269664,20in Monitor,1,109.99,2019-10-04 22:35:00,125 Forest St, Los Angeles,CA,90001 +269665,Flatscreen TV,1,300.0,2019-10-25 18:12:00,53 Park St, San Francisco,CA,94016 +269666,Apple Airpods Headphones,1,150.0,2019-10-21 21:46:00,310 Park St, Los Angeles,CA,90001 +269667,Wired Headphones,1,11.99,2019-10-08 03:54:00,204 Maple St, Los Angeles,CA,90001 +269668,AA Batteries (4-pack),2,3.84,2019-10-16 20:43:00,568 Jefferson St, Portland,OR,97035 +269669,Macbook Pro Laptop,1,1700.0,2019-10-20 16:21:00,961 Jackson St, New York City,NY,10001 +269670,AAA Batteries (4-pack),3,2.99,2019-10-11 15:41:00,508 Spruce St, Boston,MA,02215 +269671,AAA Batteries (4-pack),1,2.99,2019-10-06 20:23:00,520 11th St, Los Angeles,CA,90001 +269672,Apple Airpods Headphones,1,150.0,2019-10-21 13:27:00,275 Walnut St, New York City,NY,10001 +269673,Bose SoundSport Headphones,1,99.99,2019-10-12 17:03:00,477 11th St, San Francisco,CA,94016 +269674,Google Phone,1,600.0,2019-10-10 20:33:00,927 Hickory St, San Francisco,CA,94016 +269675,Wired Headphones,1,11.99,2019-10-16 00:02:00,217 11th St, Boston,MA,02215 +269676,Lightning Charging Cable,1,14.95,2019-10-10 13:06:00,188 Ridge St, San Francisco,CA,94016 +269677,Macbook Pro Laptop,1,1700.0,2019-10-31 19:24:00,466 Hill St, San Francisco,CA,94016 +269678,AAA Batteries (4-pack),1,2.99,2019-10-30 19:55:00,780 Cherry St, Atlanta,GA,30301 +269679,Flatscreen TV,1,300.0,2019-10-12 15:43:00,43 Highland St, Seattle,WA,98101 +269680,Apple Airpods Headphones,1,150.0,2019-10-07 16:33:00,585 Maple St, Austin,TX,73301 +269681,USB-C Charging Cable,1,11.95,2019-10-08 17:38:00,18 5th St, San Francisco,CA,94016 +269682,AA Batteries (4-pack),1,3.84,2019-10-14 10:42:00,105 Cedar St, Dallas,TX,75001 +269683,ThinkPad Laptop,1,999.99,2019-10-31 16:33:00,944 10th St, New York City,NY,10001 +269684,Macbook Pro Laptop,1,1700.0,2019-10-16 21:37:00,195 Lake St, New York City,NY,10001 +269685,Macbook Pro Laptop,1,1700.0,2019-10-25 11:29:00,174 9th St, Seattle,WA,98101 +269686,Macbook Pro Laptop,1,1700.0,2019-10-16 14:41:00,341 Adams St, Boston,MA,02215 +269687,Wired Headphones,1,11.99,2019-10-16 16:12:00,910 Chestnut St, New York City,NY,10001 +269688,iPhone,1,700.0,2019-10-29 16:36:00,317 North St, Dallas,TX,75001 +269688,Lightning Charging Cable,1,14.95,2019-10-29 16:36:00,317 North St, Dallas,TX,75001 +269689,USB-C Charging Cable,1,11.95,2019-10-04 13:25:00,678 Sunset St, New York City,NY,10001 +269690,USB-C Charging Cable,2,11.95,2019-10-24 13:38:00,702 Wilson St, Portland,OR,97035 +269691,USB-C Charging Cable,1,11.95,2019-10-25 22:11:00,235 8th St, Atlanta,GA,30301 +269692,AAA Batteries (4-pack),1,2.99,2019-10-07 09:10:00,377 Madison St, Portland,OR,97035 +269693,Apple Airpods Headphones,1,150.0,2019-10-19 09:41:00,753 Willow St, Los Angeles,CA,90001 +269694,27in FHD Monitor,1,149.99,2019-10-07 17:16:00,944 Lakeview St, New York City,NY,10001 +269694,AAA Batteries (4-pack),1,2.99,2019-10-07 17:16:00,944 Lakeview St, New York City,NY,10001 +269695,USB-C Charging Cable,1,11.95,2019-10-27 18:57:00,387 2nd St, New York City,NY,10001 +269696,AA Batteries (4-pack),5,3.84,2019-10-10 13:06:00,326 12th St, Seattle,WA,98101 +269697,Bose SoundSport Headphones,1,99.99,2019-10-22 18:51:00,605 Adams St, Austin,TX,73301 +269698,Lightning Charging Cable,1,14.95,2019-10-19 19:19:00,801 Hickory St, Seattle,WA,98101 +269699,AA Batteries (4-pack),1,3.84,2019-10-28 22:49:00,925 Spruce St, Los Angeles,CA,90001 +269700,AAA Batteries (4-pack),2,2.99,2019-10-07 18:52:00,589 7th St, Los Angeles,CA,90001 +269701,Wired Headphones,1,11.99,2019-10-09 23:21:00,735 11th St, Los Angeles,CA,90001 +269702,Bose SoundSport Headphones,1,99.99,2019-10-21 21:23:00,21 Hickory St, Los Angeles,CA,90001 +269703,Google Phone,1,600.0,2019-10-03 16:33:00,972 Dogwood St, Dallas,TX,75001 +269703,USB-C Charging Cable,1,11.95,2019-10-03 16:33:00,972 Dogwood St, Dallas,TX,75001 +269703,Wired Headphones,1,11.99,2019-10-03 16:33:00,972 Dogwood St, Dallas,TX,75001 +269704,USB-C Charging Cable,1,11.95,2019-10-25 09:13:00,867 Ridge St, Atlanta,GA,30301 +269705,Lightning Charging Cable,1,14.95,2019-10-16 10:26:00,543 2nd St, San Francisco,CA,94016 +269706,AA Batteries (4-pack),1,3.84,2019-10-11 20:28:00,370 Johnson St, Dallas,TX,75001 +269707,Lightning Charging Cable,1,14.95,2019-10-24 19:10:00,93 Hill St, New York City,NY,10001 +269708,Apple Airpods Headphones,1,150.0,2019-10-29 11:47:00,203 10th St, San Francisco,CA,94016 +269709,AAA Batteries (4-pack),2,2.99,2019-10-26 17:20:00,644 Madison St, San Francisco,CA,94016 +269710,Apple Airpods Headphones,1,150.0,2019-10-15 08:50:00,251 Highland St, Los Angeles,CA,90001 +269711,AA Batteries (4-pack),1,3.84,2019-10-04 21:45:00,932 10th St, Boston,MA,02215 +269712,Macbook Pro Laptop,1,1700.0,2019-10-21 18:33:00,1 11th St, Los Angeles,CA,90001 +269713,27in FHD Monitor,1,149.99,2019-10-18 18:09:00,938 Chestnut St, Boston,MA,02215 +269714,Apple Airpods Headphones,1,150.0,2019-10-07 18:50:00,40 Adams St, Austin,TX,73301 +269714,Lightning Charging Cable,1,14.95,2019-10-07 18:50:00,40 Adams St, Austin,TX,73301 +269715,AAA Batteries (4-pack),1,2.99,2019-10-30 08:07:00,956 10th St, Austin,TX,73301 +269716,Wired Headphones,2,11.99,2019-10-22 10:51:00,496 Hickory St, Atlanta,GA,30301 +269717,34in Ultrawide Monitor,1,379.99,2019-10-03 01:34:00,211 Washington St, Austin,TX,73301 +269718,AA Batteries (4-pack),1,3.84,2019-10-15 08:05:00,42 River St, Atlanta,GA,30301 +269719,AAA Batteries (4-pack),2,2.99,2019-10-27 11:32:00,423 1st St, Portland,OR,97035 +269720,iPhone,1,700.0,2019-10-09 19:39:00,119 14th St, San Francisco,CA,94016 +269721,Macbook Pro Laptop,1,1700.0,2019-10-06 22:06:00,949 Hickory St, New York City,NY,10001 +269722,USB-C Charging Cable,1,11.95,2019-10-31 06:20:00,902 5th St, Boston,MA,02215 +269723,Apple Airpods Headphones,1,150.0,2019-10-12 01:22:00,879 Cherry St, San Francisco,CA,94016 +269724,Bose SoundSport Headphones,1,99.99,2019-10-01 21:05:00,521 Hill St, Dallas,TX,75001 +269725,Lightning Charging Cable,1,14.95,2019-10-01 12:55:00,508 4th St, Los Angeles,CA,90001 +269726,Wired Headphones,1,11.99,2019-10-19 19:57:00,919 11th St, Los Angeles,CA,90001 +269727,AAA Batteries (4-pack),1,2.99,2019-10-09 11:21:00,387 Willow St, Seattle,WA,98101 +269728,AAA Batteries (4-pack),1,2.99,2019-10-05 19:10:00,121 North St, Atlanta,GA,30301 +269729,Bose SoundSport Headphones,1,99.99,2019-10-28 17:36:00,959 Dogwood St, San Francisco,CA,94016 +269730,Wired Headphones,1,11.99,2019-10-01 21:44:00,704 6th St, New York City,NY,10001 +269731,AA Batteries (4-pack),1,3.84,2019-10-11 21:06:00,605 10th St, New York City,NY,10001 +269732,AA Batteries (4-pack),2,3.84,2019-10-02 17:08:00,718 Wilson St, Boston,MA,02215 +269733,AA Batteries (4-pack),1,3.84,2019-10-30 09:57:00,615 Church St, Dallas,TX,75001 +269734,Google Phone,1,600.0,2019-10-04 20:08:00,935 Cherry St, Atlanta,GA,30301 +269734,Wired Headphones,1,11.99,2019-10-04 20:08:00,935 Cherry St, Atlanta,GA,30301 +269735,Macbook Pro Laptop,1,1700.0,2019-10-13 18:04:00,993 Lakeview St, Atlanta,GA,30301 +269736,USB-C Charging Cable,1,11.95,2019-10-06 10:42:00,764 Main St, Los Angeles,CA,90001 +269737,Lightning Charging Cable,1,14.95,2019-10-13 15:08:00,875 Meadow St, San Francisco,CA,94016 +269738,USB-C Charging Cable,1,11.95,2019-10-20 15:05:00,394 Maple St, San Francisco,CA,94016 +269739,Bose SoundSport Headphones,1,99.99,2019-10-24 12:08:00,26 Ridge St, Portland,OR,97035 +269740,Macbook Pro Laptop,1,1700.0,2019-10-19 12:12:00,667 Church St, Boston,MA,02215 +269740,Wired Headphones,1,11.99,2019-10-19 12:12:00,667 Church St, Boston,MA,02215 +269741,Wired Headphones,1,11.99,2019-10-14 15:24:00,424 2nd St, Atlanta,GA,30301 +269742,Lightning Charging Cable,1,14.95,2019-10-04 17:10:00,639 Lakeview St, Los Angeles,CA,90001 +269743,LG Washing Machine,1,600.0,2019-10-12 22:30:00,34 Dogwood St, San Francisco,CA,94016 +269744,34in Ultrawide Monitor,1,379.99,2019-10-04 19:03:00,400 Hickory St, Portland,ME,04101 +269745,27in 4K Gaming Monitor,1,389.99,2019-10-07 17:28:00,676 11th St, New York City,NY,10001 +269745,USB-C Charging Cable,2,11.95,2019-10-07 17:28:00,676 11th St, New York City,NY,10001 +269746,Apple Airpods Headphones,1,150.0,2019-10-24 18:43:00,621 Maple St, Atlanta,GA,30301 +269747,Wired Headphones,1,11.99,2019-10-11 12:06:00,726 9th St, New York City,NY,10001 +269748,USB-C Charging Cable,1,11.95,2019-10-23 19:42:00,577 Maple St, San Francisco,CA,94016 +269749,AAA Batteries (4-pack),4,2.99,2019-10-15 11:01:00,466 South St, San Francisco,CA,94016 +269750,AA Batteries (4-pack),3,3.84,2019-10-23 09:06:00,643 Ridge St, Austin,TX,73301 +269751,Lightning Charging Cable,1,14.95,2019-10-09 04:49:00,564 5th St, New York City,NY,10001 +269752,USB-C Charging Cable,1,11.95,2019-10-05 18:32:00,709 Lake St, Seattle,WA,98101 +269753,LG Dryer,1,600.0,2019-10-25 12:24:00,737 Hill St, Los Angeles,CA,90001 +269754,AAA Batteries (4-pack),2,2.99,2019-10-19 20:26:00,304 Meadow St, Seattle,WA,98101 +269755,Macbook Pro Laptop,1,1700.0,2019-10-27 21:14:00,963 River St, Boston,MA,02215 +269756,Vareebadd Phone,1,400.0,2019-10-18 21:38:00,73 10th St, Los Angeles,CA,90001 +269757,Google Phone,1,600.0,2019-10-18 09:38:00,866 8th St, Los Angeles,CA,90001 +269758,Wired Headphones,1,11.99,2019-10-11 23:32:00,190 Lakeview St, Dallas,TX,75001 +269759,Bose SoundSport Headphones,1,99.99,2019-10-20 21:39:00,90 Jefferson St, San Francisco,CA,94016 +269760,AA Batteries (4-pack),1,3.84,2019-10-06 15:38:00,322 Walnut St, Austin,TX,73301 +269761,34in Ultrawide Monitor,1,379.99,2019-10-24 18:05:00,509 Main St, Seattle,WA,98101 +269762,Apple Airpods Headphones,1,150.0,2019-10-05 18:54:00,730 Madison St, Boston,MA,02215 +269763,ThinkPad Laptop,1,999.99,2019-10-26 11:21:00,515 Wilson St, Dallas,TX,75001 +269764,USB-C Charging Cable,1,11.95,2019-10-19 10:30:00,466 Park St, San Francisco,CA,94016 +269765,AAA Batteries (4-pack),2,2.99,2019-10-03 11:10:00,121 Hill St, Atlanta,GA,30301 +269766,27in 4K Gaming Monitor,1,389.99,2019-10-04 11:03:00,261 Hickory St, Los Angeles,CA,90001 +269767,AAA Batteries (4-pack),2,2.99,2019-10-20 19:41:00,465 Elm St, Seattle,WA,98101 +269768,Lightning Charging Cable,1,14.95,2019-10-15 20:48:00,635 Wilson St, Seattle,WA,98101 +269769,Lightning Charging Cable,1,14.95,2019-10-01 08:15:00,358 14th St, Portland,OR,97035 +269770,AA Batteries (4-pack),1,3.84,2019-10-27 23:40:00,70 Washington St, Los Angeles,CA,90001 +269771,USB-C Charging Cable,1,11.95,2019-10-10 11:16:00,739 Spruce St, Los Angeles,CA,90001 +269772,27in 4K Gaming Monitor,1,389.99,2019-10-28 22:28:00,737 North St, Seattle,WA,98101 +269773,Lightning Charging Cable,1,14.95,2019-10-11 15:23:00,774 Elm St, Portland,OR,97035 +269774,Google Phone,1,600.0,2019-10-02 11:47:00,270 10th St, Boston,MA,02215 +269775,USB-C Charging Cable,1,11.95,2019-10-04 12:57:00,138 Hill St, Atlanta,GA,30301 +269776,Google Phone,1,600.0,2019-10-12 22:36:00,212 12th St, Seattle,WA,98101 +269776,USB-C Charging Cable,1,11.95,2019-10-12 22:36:00,212 12th St, Seattle,WA,98101 +269777,Apple Airpods Headphones,1,150.0,2019-10-08 19:10:00,125 5th St, San Francisco,CA,94016 +269778,USB-C Charging Cable,1,11.95,2019-10-06 19:10:00,769 Madison St, Los Angeles,CA,90001 +269779,Apple Airpods Headphones,1,150.0,2019-10-28 08:05:00,538 Ridge St, Atlanta,GA,30301 +269780,USB-C Charging Cable,2,11.95,2019-10-19 17:11:00,272 Main St, San Francisco,CA,94016 +269781,Apple Airpods Headphones,1,150.0,2019-10-16 13:55:00,425 Dogwood St, Los Angeles,CA,90001 +269782,USB-C Charging Cable,1,11.95,2019-10-18 18:11:00,91 Johnson St, Austin,TX,73301 +269783,AAA Batteries (4-pack),1,2.99,2019-10-18 19:10:00,925 Church St, Dallas,TX,75001 +269784,20in Monitor,1,109.99,2019-10-11 16:17:00,629 Center St, San Francisco,CA,94016 +269785,ThinkPad Laptop,1,999.99,2019-10-09 09:26:00,898 North St, New York City,NY,10001 +269786,USB-C Charging Cable,1,11.95,2019-10-08 22:51:00,97 Center St, San Francisco,CA,94016 +269787,USB-C Charging Cable,1,11.95,2019-10-20 20:08:00,528 Hickory St, Los Angeles,CA,90001 +269788,AA Batteries (4-pack),2,3.84,2019-10-07 15:06:00,553 Pine St, New York City,NY,10001 +269789,AA Batteries (4-pack),1,3.84,2019-10-07 06:25:00,897 Main St, Los Angeles,CA,90001 +269789,USB-C Charging Cable,1,11.95,2019-10-07 06:25:00,897 Main St, Los Angeles,CA,90001 +269790,USB-C Charging Cable,1,11.95,2019-10-24 16:34:00,587 Center St, Portland,OR,97035 +269791,27in 4K Gaming Monitor,1,389.99,2019-10-16 09:50:00,524 8th St, Los Angeles,CA,90001 +269792,AA Batteries (4-pack),1,3.84,2019-10-11 17:36:00,488 11th St, Los Angeles,CA,90001 +269793,AAA Batteries (4-pack),1,2.99,2019-10-11 07:56:00,933 8th St, New York City,NY,10001 +269794,Wired Headphones,1,11.99,2019-10-11 01:14:00,486 Spruce St, Atlanta,GA,30301 +269795,AAA Batteries (4-pack),1,2.99,2019-10-12 21:04:00,620 South St, Los Angeles,CA,90001 +269796,Bose SoundSport Headphones,1,99.99,2019-10-12 18:30:00,93 South St, San Francisco,CA,94016 +269797,27in 4K Gaming Monitor,1,389.99,2019-10-31 18:34:00,551 Dogwood St, Atlanta,GA,30301 +269798,Lightning Charging Cable,1,14.95,2019-10-16 14:52:00,473 6th St, Boston,MA,02215 +269799,Wired Headphones,1,11.99,2019-10-13 21:24:00,383 West St, San Francisco,CA,94016 +269800,34in Ultrawide Monitor,1,379.99,2019-10-20 00:56:00,825 Church St, Los Angeles,CA,90001 +269801,AA Batteries (4-pack),3,3.84,2019-10-19 00:44:00,656 5th St, Portland,OR,97035 +269802,27in FHD Monitor,1,149.99,2019-10-13 12:25:00,263 Sunset St, San Francisco,CA,94016 +269803,27in 4K Gaming Monitor,1,389.99,2019-10-20 19:05:00,249 Maple St, Seattle,WA,98101 +269804,AA Batteries (4-pack),1,3.84,2019-10-03 14:30:00,742 8th St, San Francisco,CA,94016 +269805,Macbook Pro Laptop,1,1700.0,2019-10-02 01:40:00,331 Hickory St, Portland,OR,97035 +269806,Lightning Charging Cable,1,14.95,2019-10-09 20:06:00,688 14th St, Seattle,WA,98101 +269807,AA Batteries (4-pack),1,3.84,2019-10-29 15:30:00,29 Wilson St, San Francisco,CA,94016 +269808,Wired Headphones,1,11.99,2019-10-20 15:01:00,85 Lake St, Los Angeles,CA,90001 +269809,Flatscreen TV,1,300.0,2019-10-21 15:25:00,659 Sunset St, New York City,NY,10001 +269810,Wired Headphones,1,11.99,2019-10-19 11:04:00,108 West St, Austin,TX,73301 +269811,USB-C Charging Cable,1,11.95,2019-10-27 20:53:00,113 Spruce St, Boston,MA,02215 +269812,27in FHD Monitor,1,149.99,2019-10-24 14:34:00,811 5th St, Austin,TX,73301 +269813,27in FHD Monitor,1,149.99,2019-10-10 21:23:00,367 Spruce St, Los Angeles,CA,90001 +269814,Macbook Pro Laptop,1,1700.0,2019-10-01 16:27:00,79 13th St, Boston,MA,02215 +269815,Apple Airpods Headphones,1,150.0,2019-10-01 19:41:00,684 Jackson St, Atlanta,GA,30301 +269816,AA Batteries (4-pack),1,3.84,2019-10-30 23:57:00,128 River St, Seattle,WA,98101 +269817,AAA Batteries (4-pack),2,2.99,2019-10-01 13:53:00,740 Adams St, Seattle,WA,98101 +269818,AAA Batteries (4-pack),1,2.99,2019-10-30 19:45:00,898 Madison St, San Francisco,CA,94016 +269819,AA Batteries (4-pack),1,3.84,2019-10-21 21:06:00,240 Pine St, Atlanta,GA,30301 +269820,Wired Headphones,1,11.99,2019-10-26 22:23:00,463 7th St, New York City,NY,10001 +269821,Apple Airpods Headphones,1,150.0,2019-10-11 08:10:00,276 Maple St, Dallas,TX,75001 +269822,Apple Airpods Headphones,1,150.0,2019-10-30 20:53:00,434 Center St, San Francisco,CA,94016 +269823,Wired Headphones,1,11.99,2019-10-20 11:11:00,690 Sunset St, San Francisco,CA,94016 +269824,Google Phone,1,600.0,2019-10-19 17:31:00,999 Sunset St, Atlanta,GA,30301 +269825,AA Batteries (4-pack),1,3.84,2019-10-07 16:52:00,463 1st St, Seattle,WA,98101 +269826,Wired Headphones,1,11.99,2019-10-18 19:25:00,936 11th St, San Francisco,CA,94016 +269827,Wired Headphones,2,11.99,2019-10-01 21:36:00,37 Adams St, San Francisco,CA,94016 +269828,20in Monitor,1,109.99,2019-10-05 13:08:00,681 Jackson St, New York City,NY,10001 +269829,AA Batteries (4-pack),1,3.84,2019-10-30 17:54:00,827 1st St, Boston,MA,02215 +269830,Google Phone,1,600.0,2019-10-28 12:56:00,519 Highland St, San Francisco,CA,94016 +269831,Wired Headphones,1,11.99,2019-10-10 22:57:00,501 Adams St, San Francisco,CA,94016 +269832,iPhone,1,700.0,2019-10-10 22:04:00,936 Main St, Dallas,TX,75001 +269833,AA Batteries (4-pack),1,3.84,2019-10-03 02:14:00,660 Forest St, Austin,TX,73301 +269834,Flatscreen TV,1,300.0,2019-10-21 22:17:00,849 Church St, Seattle,WA,98101 +269835,Lightning Charging Cable,1,14.95,2019-10-05 09:29:00,338 Adams St, Atlanta,GA,30301 +269836,Google Phone,1,600.0,2019-10-18 21:30:00,842 1st St, Boston,MA,02215 +269836,USB-C Charging Cable,1,11.95,2019-10-18 21:30:00,842 1st St, Boston,MA,02215 +269837,Wired Headphones,1,11.99,2019-10-03 13:12:00,89 2nd St, New York City,NY,10001 +269838,20in Monitor,1,109.99,2019-10-05 20:05:00,24 Dogwood St, New York City,NY,10001 +269839,Apple Airpods Headphones,1,150.0,2019-10-02 15:32:00,594 14th St, New York City,NY,10001 +269840,USB-C Charging Cable,1,11.95,2019-10-03 12:19:00,922 Chestnut St, Atlanta,GA,30301 +269841,AAA Batteries (4-pack),2,2.99,2019-10-23 22:00:00,931 River St, San Francisco,CA,94016 +269842,AA Batteries (4-pack),1,3.84,2019-10-31 10:56:00,58 14th St, Atlanta,GA,30301 +269843,Apple Airpods Headphones,1,150.0,2019-10-18 10:16:00,28 Washington St, San Francisco,CA,94016 +269844,Lightning Charging Cable,1,14.95,2019-10-15 00:43:00,770 Spruce St, Dallas,TX,75001 +269845,ThinkPad Laptop,1,999.99,2019-10-14 10:16:00,545 North St, Seattle,WA,98101 +269846,USB-C Charging Cable,1,11.95,2019-10-20 09:24:00,253 West St, Seattle,WA,98101 +269847,Lightning Charging Cable,1,14.95,2019-10-25 09:48:00,652 Park St, Los Angeles,CA,90001 +269848,Lightning Charging Cable,1,14.95,2019-10-09 16:04:00,367 Lakeview St, Los Angeles,CA,90001 +269849,27in 4K Gaming Monitor,1,389.99,2019-10-01 18:58:00,388 Cherry St, San Francisco,CA,94016 +269850,AAA Batteries (4-pack),1,2.99,2019-10-28 21:09:00,108 Wilson St, Seattle,WA,98101 +269851,Apple Airpods Headphones,1,150.0,2019-10-19 17:20:00,843 Highland St, New York City,NY,10001 +269852,AAA Batteries (4-pack),2,2.99,2019-10-09 21:34:00,448 Hickory St, San Francisco,CA,94016 +269853,Bose SoundSport Headphones,1,99.99,2019-10-02 18:36:00,914 Center St, New York City,NY,10001 +269854,27in 4K Gaming Monitor,1,389.99,2019-10-23 11:30:00,66 Chestnut St, Austin,TX,73301 +269855,Lightning Charging Cable,1,14.95,2019-10-01 18:45:00,839 5th St, Los Angeles,CA,90001 +269856,Lightning Charging Cable,1,14.95,2019-10-28 07:51:00,377 Cherry St, Los Angeles,CA,90001 +269857,Wired Headphones,2,11.99,2019-10-24 10:45:00,603 Jackson St, San Francisco,CA,94016 +269858,Google Phone,1,600.0,2019-10-12 22:49:00,127 Forest St, Boston,MA,02215 +269859,Bose SoundSport Headphones,1,99.99,2019-10-12 14:32:00,988 Center St, San Francisco,CA,94016 +269860,Bose SoundSport Headphones,1,99.99,2019-10-23 10:54:00,657 Hill St, San Francisco,CA,94016 +269861,Bose SoundSport Headphones,1,99.99,2019-10-24 14:08:00,855 7th St, Los Angeles,CA,90001 +269862,20in Monitor,1,109.99,2019-10-11 08:22:00,371 Lake St, Portland,OR,97035 +269863,USB-C Charging Cable,1,11.95,2019-10-08 12:12:00,497 Forest St, New York City,NY,10001 +269864,iPhone,1,700.0,2019-10-13 12:55:00,81 Jefferson St, San Francisco,CA,94016 +269865,Wired Headphones,1,11.99,2019-10-28 08:27:00,369 Jefferson St, Los Angeles,CA,90001 +269866,Bose SoundSport Headphones,1,99.99,2019-10-28 17:10:00,783 Willow St, Atlanta,GA,30301 +269867,AA Batteries (4-pack),1,3.84,2019-10-23 02:56:00,389 Center St, San Francisco,CA,94016 +269868,AAA Batteries (4-pack),1,2.99,2019-10-06 04:45:00,858 Spruce St, Boston,MA,02215 +269869,AA Batteries (4-pack),1,3.84,2019-10-24 23:41:00,662 14th St, Austin,TX,73301 +269870,Google Phone,1,600.0,2019-10-15 18:56:00,774 Forest St, Boston,MA,02215 +269871,Bose SoundSport Headphones,1,99.99,2019-10-25 16:44:00,252 4th St, New York City,NY,10001 +269872,AAA Batteries (4-pack),2,2.99,2019-10-04 07:26:00,422 Walnut St, San Francisco,CA,94016 +269873,20in Monitor,1,109.99,2019-10-15 09:08:00,480 10th St, New York City,NY,10001 +269874,AAA Batteries (4-pack),1,2.99,2019-10-24 15:49:00,469 Johnson St, Los Angeles,CA,90001 +269875,AA Batteries (4-pack),1,3.84,2019-10-02 10:03:00,650 Adams St, Los Angeles,CA,90001 +269876,USB-C Charging Cable,1,11.95,2019-10-01 10:27:00,478 9th St, Los Angeles,CA,90001 +269877,Apple Airpods Headphones,1,150.0,2019-10-09 17:56:00,833 North St, San Francisco,CA,94016 +269878,Flatscreen TV,1,300.0,2019-10-16 18:15:00,803 Main St, San Francisco,CA,94016 +269879,Bose SoundSport Headphones,1,99.99,2019-10-22 19:55:00,56 Park St, Seattle,WA,98101 +269880,AA Batteries (4-pack),1,3.84,2019-10-28 20:55:00,906 13th St, New York City,NY,10001 +269881,Lightning Charging Cable,1,14.95,2019-10-07 06:08:00,119 Hickory St, Los Angeles,CA,90001 +269882,Lightning Charging Cable,1,14.95,2019-10-29 07:23:00,740 13th St, Seattle,WA,98101 +269883,AA Batteries (4-pack),1,3.84,2019-10-12 12:05:00,849 7th St, San Francisco,CA,94016 +269884,27in FHD Monitor,1,149.99,2019-10-10 18:57:00,543 Hill St, Austin,TX,73301 +269885,Lightning Charging Cable,2,14.95,2019-10-28 18:04:00,480 8th St, San Francisco,CA,94016 +269886,27in 4K Gaming Monitor,1,389.99,2019-10-06 08:53:00,252 2nd St, San Francisco,CA,94016 +269887,iPhone,1,700.0,2019-10-17 12:59:00,302 West St, Atlanta,GA,30301 +269888,Google Phone,1,600.0,2019-10-01 17:44:00,468 North St, Portland,OR,97035 +269889,iPhone,1,700.0,2019-10-16 15:10:00,229 10th St, Austin,TX,73301 +269889,Lightning Charging Cable,1,14.95,2019-10-16 15:10:00,229 10th St, Austin,TX,73301 +269890,Apple Airpods Headphones,1,150.0,2019-10-28 09:30:00,546 South St, Dallas,TX,75001 +269891,Google Phone,1,600.0,2019-10-12 14:39:00,401 6th St, San Francisco,CA,94016 +269891,USB-C Charging Cable,1,11.95,2019-10-12 14:39:00,401 6th St, San Francisco,CA,94016 +269892,27in 4K Gaming Monitor,1,389.99,2019-10-14 09:44:00,126 North St, Los Angeles,CA,90001 +269893,AA Batteries (4-pack),2,3.84,2019-10-12 12:35:00,397 West St, Boston,MA,02215 +269894,Flatscreen TV,1,300.0,2019-10-01 10:18:00,128 2nd St, New York City,NY,10001 +269895,27in FHD Monitor,1,149.99,2019-10-25 19:09:00,159 Walnut St, San Francisco,CA,94016 +269896,USB-C Charging Cable,1,11.95,2019-10-24 14:15:00,271 Johnson St, Dallas,TX,75001 +269897,AAA Batteries (4-pack),1,2.99,2019-10-29 20:21:00,664 Elm St, Boston,MA,02215 +269898,Apple Airpods Headphones,1,150.0,2019-10-21 14:50:00,13 North St, Los Angeles,CA,90001 +269899,27in 4K Gaming Monitor,1,389.99,2019-10-16 18:46:00,844 Forest St, Seattle,WA,98101 +269900,Wired Headphones,1,11.99,2019-10-11 14:14:00,321 Washington St, Atlanta,GA,30301 +269901,iPhone,1,700.0,2019-10-17 11:22:00,735 Spruce St, Seattle,WA,98101 +269901,Lightning Charging Cable,1,14.95,2019-10-17 11:22:00,735 Spruce St, Seattle,WA,98101 +269901,Wired Headphones,1,11.99,2019-10-17 11:22:00,735 Spruce St, Seattle,WA,98101 +269902,USB-C Charging Cable,2,11.95,2019-10-01 19:51:00,844 Willow St, Boston,MA,02215 +269903,Lightning Charging Cable,1,14.95,2019-10-25 14:38:00,918 Jackson St, Los Angeles,CA,90001 +269904,Bose SoundSport Headphones,1,99.99,2019-10-22 12:44:00,511 Elm St, Boston,MA,02215 +269905,AA Batteries (4-pack),1,3.84,2019-10-20 09:38:00,39 Meadow St, Dallas,TX,75001 +269906,Apple Airpods Headphones,1,150.0,2019-10-24 13:02:00,828 West St, New York City,NY,10001 +269907,AAA Batteries (4-pack),1,2.99,2019-10-23 21:50:00,806 Madison St, San Francisco,CA,94016 +269908,Lightning Charging Cable,1,14.95,2019-10-23 14:48:00,842 12th St, Los Angeles,CA,90001 +269909,Lightning Charging Cable,1,14.95,2019-10-12 20:08:00,630 Meadow St, Atlanta,GA,30301 +269910,AAA Batteries (4-pack),1,2.99,2019-10-02 20:39:00,818 1st St, New York City,NY,10001 +269911,34in Ultrawide Monitor,1,379.99,2019-10-12 17:45:00,866 9th St, Seattle,WA,98101 +269912,Wired Headphones,1,11.99,2019-10-23 22:59:00,283 South St, Los Angeles,CA,90001 +269913,Lightning Charging Cable,1,14.95,2019-10-22 12:48:00,916 Park St, Atlanta,GA,30301 +269914,Wired Headphones,1,11.99,2019-10-02 21:15:00,922 Madison St, Seattle,WA,98101 +269915,AA Batteries (4-pack),1,3.84,2019-10-29 12:51:00,782 1st St, New York City,NY,10001 +269916,AAA Batteries (4-pack),1,2.99,2019-10-12 01:56:00,144 West St, Atlanta,GA,30301 +269917,USB-C Charging Cable,2,11.95,2019-10-06 13:08:00,14 Jackson St, Seattle,WA,98101 +269918,Lightning Charging Cable,1,14.95,2019-10-26 17:41:00,651 Hickory St, Atlanta,GA,30301 +269919,Apple Airpods Headphones,1,150.0,2019-10-11 17:32:00,431 Meadow St, Dallas,TX,75001 +269920,Bose SoundSport Headphones,1,99.99,2019-10-16 19:58:00,967 West St, San Francisco,CA,94016 +269921,27in FHD Monitor,1,149.99,2019-10-07 11:39:00,133 Washington St, Dallas,TX,75001 +269922,27in FHD Monitor,1,149.99,2019-10-28 09:35:00,74 Church St, Seattle,WA,98101 +269923,Macbook Pro Laptop,1,1700.0,2019-10-17 19:06:00,170 12th St, Seattle,WA,98101 +269924,AAA Batteries (4-pack),2,2.99,2019-10-22 10:52:00,314 2nd St, Boston,MA,02215 +269925,Bose SoundSport Headphones,1,99.99,2019-10-28 12:16:00,174 Pine St, Seattle,WA,98101 +269926,Wired Headphones,1,11.99,2019-10-15 10:58:00,280 North St, Los Angeles,CA,90001 +269927,Apple Airpods Headphones,1,150.0,2019-10-25 14:48:00,107 8th St, New York City,NY,10001 +269928,Bose SoundSport Headphones,2,99.99,2019-10-18 07:34:00,471 Pine St, Boston,MA,02215 +269929,34in Ultrawide Monitor,1,379.99,2019-10-29 23:27:00,813 4th St, New York City,NY,10001 +269930,Lightning Charging Cable,1,14.95,2019-10-30 15:10:00,98 6th St, New York City,NY,10001 +269931,AAA Batteries (4-pack),2,2.99,2019-10-27 19:38:00,744 Ridge St, New York City,NY,10001 +269932,Lightning Charging Cable,1,14.95,2019-10-19 03:16:00,594 Maple St, Portland,OR,97035 +269933,AAA Batteries (4-pack),2,2.99,2019-10-21 08:32:00,415 6th St, Atlanta,GA,30301 +269934,Flatscreen TV,1,300.0,2019-10-04 13:07:00,981 River St, Seattle,WA,98101 +269935,27in FHD Monitor,1,149.99,2019-10-08 06:00:00,88 4th St, Austin,TX,73301 +269936,Lightning Charging Cable,1,14.95,2019-10-17 14:29:00,796 Maple St, Portland,OR,97035 +269937,USB-C Charging Cable,1,11.95,2019-10-13 12:29:00,400 Jefferson St, Austin,TX,73301 +269938,20in Monitor,1,109.99,2019-10-11 11:46:00,653 Ridge St, San Francisco,CA,94016 +269939,AA Batteries (4-pack),1,3.84,2019-10-30 22:15:00,119 8th St, Austin,TX,73301 +269940,AA Batteries (4-pack),2,3.84,2019-10-31 18:20:00,329 Center St, Atlanta,GA,30301 +269941,iPhone,1,700.0,2019-10-31 06:35:00,170 Hickory St, Dallas,TX,75001 +269942,USB-C Charging Cable,1,11.95,2019-10-24 15:41:00,734 Meadow St, Boston,MA,02215 +269943,AAA Batteries (4-pack),2,2.99,2019-10-16 22:04:00,650 9th St, New York City,NY,10001 +269944,Apple Airpods Headphones,1,150.0,2019-10-24 18:06:00,836 9th St, Los Angeles,CA,90001 +269945,Vareebadd Phone,1,400.0,2019-10-26 14:26:00,130 6th St, Boston,MA,02215 +269946,27in 4K Gaming Monitor,1,389.99,2019-10-12 13:49:00,654 8th St, Boston,MA,02215 +269947,Lightning Charging Cable,2,14.95,2019-10-11 21:35:00,41 Forest St, Los Angeles,CA,90001 +269948,AA Batteries (4-pack),1,3.84,2019-10-01 08:58:00,263 Park St, New York City,NY,10001 +269949,27in 4K Gaming Monitor,1,389.99,2019-10-31 23:34:00,375 12th St, Austin,TX,73301 +269950,AA Batteries (4-pack),1,3.84,2019-10-08 20:10:00,386 Wilson St, Austin,TX,73301 +269951,Flatscreen TV,1,300.0,2019-10-24 12:54:00,80 Church St, Boston,MA,02215 +269952,AA Batteries (4-pack),2,3.84,2019-10-12 20:17:00,176 Willow St, Seattle,WA,98101 +269953,Apple Airpods Headphones,1,150.0,2019-10-16 16:19:00,966 5th St, Los Angeles,CA,90001 +269954,34in Ultrawide Monitor,1,379.99,2019-10-31 19:54:00,599 Highland St, Atlanta,GA,30301 +269955,Wired Headphones,1,11.99,2019-10-05 00:46:00,763 Willow St, Austin,TX,73301 +269956,AA Batteries (4-pack),2,3.84,2019-10-03 12:28:00,447 Cherry St, Dallas,TX,75001 +269957,27in FHD Monitor,1,149.99,2019-10-14 18:38:00,21 West St, Atlanta,GA,30301 +269958,Wired Headphones,1,11.99,2019-10-26 19:58:00,681 Willow St, Portland,ME,04101 +269959,AA Batteries (4-pack),1,3.84,2019-10-04 12:54:00,599 Lake St, Dallas,TX,75001 +269960,Wired Headphones,1,11.99,2019-10-29 18:28:00,43 8th St, Boston,MA,02215 +269961,AAA Batteries (4-pack),1,2.99,2019-10-25 16:44:00,966 Highland St, San Francisco,CA,94016 +269962,USB-C Charging Cable,1,11.95,2019-10-22 12:31:00,75 Jefferson St, San Francisco,CA,94016 +269963,Bose SoundSport Headphones,1,99.99,2019-10-08 14:06:00,748 Lakeview St, San Francisco,CA,94016 +269964,Flatscreen TV,1,300.0,2019-10-01 15:09:00,940 Forest St, New York City,NY,10001 +269965,Bose SoundSport Headphones,1,99.99,2019-10-26 12:49:00,411 6th St, Portland,OR,97035 +269966,ThinkPad Laptop,1,999.99,2019-10-21 05:30:00,462 Hill St, Dallas,TX,75001 +269967,AA Batteries (4-pack),1,3.84,2019-10-02 17:22:00,18 Lakeview St, Atlanta,GA,30301 +269968,AA Batteries (4-pack),1,3.84,2019-10-28 08:22:00,411 Lake St, Boston,MA,02215 +269969,27in FHD Monitor,1,149.99,2019-10-29 20:17:00,100 8th St, Los Angeles,CA,90001 +269970,Bose SoundSport Headphones,1,99.99,2019-10-30 18:13:00,238 Jackson St, San Francisco,CA,94016 +269971,Wired Headphones,1,11.99,2019-10-24 17:25:00,276 5th St, Austin,TX,73301 +269972,AA Batteries (4-pack),1,3.84,2019-10-16 19:35:00,497 12th St, Los Angeles,CA,90001 +269973,Lightning Charging Cable,1,14.95,2019-10-29 13:39:00,853 Spruce St, Atlanta,GA,30301 +269974,Lightning Charging Cable,1,14.95,2019-10-15 01:46:00,979 Highland St, San Francisco,CA,94016 +269975,Flatscreen TV,1,300.0,2019-10-16 07:02:00,599 Chestnut St, New York City,NY,10001 +269976,34in Ultrawide Monitor,1,379.99,2019-10-29 21:15:00,508 Adams St, New York City,NY,10001 +269977,USB-C Charging Cable,1,11.95,2019-10-24 20:54:00,330 Church St, Dallas,TX,75001 +269978,USB-C Charging Cable,1,11.95,2019-10-28 17:19:00,140 Cedar St, Los Angeles,CA,90001 +269979,Google Phone,1,600.0,2019-10-18 11:44:00,83 14th St, Dallas,TX,75001 +269979,Bose SoundSport Headphones,1,99.99,2019-10-18 11:44:00,83 14th St, Dallas,TX,75001 +269979,Wired Headphones,1,11.99,2019-10-18 11:44:00,83 14th St, Dallas,TX,75001 +269980,Macbook Pro Laptop,1,1700.0,2019-10-18 20:11:00,894 4th St, Portland,OR,97035 +269981,Lightning Charging Cable,1,14.95,2019-10-02 13:20:00,401 Elm St, Seattle,WA,98101 +269982,Wired Headphones,2,11.99,2019-10-22 11:50:00,304 Pine St, Austin,TX,73301 +269983,34in Ultrawide Monitor,1,379.99,2019-10-16 19:15:00,595 12th St, Boston,MA,02215 +269984,Wired Headphones,1,11.99,2019-10-26 13:37:00,842 Lake St, New York City,NY,10001 +269985,Lightning Charging Cable,1,14.95,2019-10-03 06:06:00,509 Lake St, Los Angeles,CA,90001 +269986,Macbook Pro Laptop,1,1700.0,2019-10-16 21:42:00,201 7th St, San Francisco,CA,94016 +269987,AA Batteries (4-pack),1,3.84,2019-10-19 22:47:00,645 13th St, Seattle,WA,98101 +269987,AAA Batteries (4-pack),3,2.99,2019-10-19 22:47:00,645 13th St, Seattle,WA,98101 +269988,Lightning Charging Cable,1,14.95,2019-10-30 17:21:00,251 Ridge St, San Francisco,CA,94016 +269989,iPhone,1,700.0,2019-10-27 18:11:00,439 Spruce St, San Francisco,CA,94016 +269990,USB-C Charging Cable,1,11.95,2019-10-24 13:07:00,316 Forest St, New York City,NY,10001 +269991,AA Batteries (4-pack),1,3.84,2019-10-10 10:14:00,714 Walnut St, Los Angeles,CA,90001 +269992,Bose SoundSport Headphones,1,99.99,2019-10-04 13:57:00,803 13th St, Boston,MA,02215 +269993,Bose SoundSport Headphones,1,99.99,2019-10-25 09:00:00,517 Lincoln St, Dallas,TX,75001 +269994,Bose SoundSport Headphones,1,99.99,2019-10-25 21:12:00,441 Walnut St, Portland,OR,97035 +269995,27in 4K Gaming Monitor,1,389.99,2019-10-16 10:49:00,849 Lincoln St, Austin,TX,73301 +269996,AAA Batteries (4-pack),1,2.99,2019-10-31 15:56:00,735 Ridge St, Austin,TX,73301 +269997,AA Batteries (4-pack),1,3.84,2019-10-04 15:03:00,496 14th St, Atlanta,GA,30301 +269998,Bose SoundSport Headphones,1,99.99,2019-10-23 20:44:00,758 9th St, Los Angeles,CA,90001 +269999,ThinkPad Laptop,1,999.99,2019-10-22 07:00:00,980 Jefferson St, New York City,NY,10001 +270000,Google Phone,1,600.0,2019-10-09 11:54:00,140 Hill St, San Francisco,CA,94016 +270001,Google Phone,1,600.0,2019-10-03 18:08:00,40 River St, San Francisco,CA,94016 +270002,Bose SoundSport Headphones,1,99.99,2019-10-02 17:15:00,583 Highland St, Los Angeles,CA,90001 +270003,AAA Batteries (4-pack),1,2.99,2019-10-16 17:25:00,260 Park St, Los Angeles,CA,90001 +270004,Wired Headphones,2,11.99,2019-10-15 01:23:00,495 Chestnut St, Boston,MA,02215 +270005,Flatscreen TV,1,300.0,2019-10-10 17:36:00,967 Cherry St, New York City,NY,10001 +270006,AAA Batteries (4-pack),1,2.99,2019-10-14 07:30:00,900 Madison St, New York City,NY,10001 +270007,Google Phone,1,600.0,2019-10-17 07:45:00,536 Center St, Los Angeles,CA,90001 +270008,Wired Headphones,1,11.99,2019-10-27 12:49:00,149 Highland St, Portland,OR,97035 +270009,Lightning Charging Cable,1,14.95,2019-10-22 16:19:00,549 2nd St, Austin,TX,73301 +270010,27in FHD Monitor,1,149.99,2019-10-27 14:49:00,932 Cherry St, Los Angeles,CA,90001 +270011,Flatscreen TV,1,300.0,2019-10-27 16:36:00,294 Highland St, Boston,MA,02215 +270012,AAA Batteries (4-pack),1,2.99,2019-10-13 01:09:00,136 7th St, New York City,NY,10001 +270013,AAA Batteries (4-pack),1,2.99,2019-10-01 10:56:00,360 Lincoln St, New York City,NY,10001 +270014,Apple Airpods Headphones,1,150.0,2019-10-06 11:49:00,463 14th St, Dallas,TX,75001 +270015,iPhone,1,700.0,2019-10-06 15:34:00,533 Jackson St, Boston,MA,02215 +270016,27in FHD Monitor,1,149.99,2019-10-23 08:25:00,890 14th St, San Francisco,CA,94016 +270017,AA Batteries (4-pack),3,3.84,2019-10-27 12:43:00,69 Cherry St, New York City,NY,10001 +270018,27in 4K Gaming Monitor,1,389.99,2019-10-21 10:00:00,926 Willow St, Los Angeles,CA,90001 +270019,Flatscreen TV,1,300.0,2019-10-17 10:36:00,833 10th St, Boston,MA,02215 +270020,ThinkPad Laptop,1,999.99,2019-10-21 22:11:00,421 Church St, San Francisco,CA,94016 +270021,Wired Headphones,1,11.99,2019-10-09 06:44:00,525 11th St, New York City,NY,10001 +270022,USB-C Charging Cable,2,11.95,2019-10-30 12:20:00,541 10th St, Seattle,WA,98101 +270023,Apple Airpods Headphones,1,150.0,2019-10-12 21:42:00,362 Church St, Dallas,TX,75001 +270024,AAA Batteries (4-pack),1,2.99,2019-10-07 16:19:00,280 5th St, Boston,MA,02215 +270025,AAA Batteries (4-pack),1,2.99,2019-10-05 11:11:00,253 West St, San Francisco,CA,94016 +270026,Lightning Charging Cable,1,14.95,2019-10-30 10:44:00,755 North St, Boston,MA,02215 +270027,AA Batteries (4-pack),1,3.84,2019-10-30 11:10:00,820 11th St, San Francisco,CA,94016 +270028,AA Batteries (4-pack),1,3.84,2019-10-19 20:22:00,370 Center St, New York City,NY,10001 +270029,Wired Headphones,2,11.99,2019-10-09 02:17:00,87 Willow St, San Francisco,CA,94016 +270030,Lightning Charging Cable,1,14.95,2019-10-11 17:13:00,432 Elm St, Los Angeles,CA,90001 +270031,Bose SoundSport Headphones,1,99.99,2019-10-06 14:42:00,835 South St, San Francisco,CA,94016 +270032,Wired Headphones,2,11.99,2019-10-23 20:12:00,227 Meadow St, Portland,OR,97035 +270033,Bose SoundSport Headphones,1,99.99,2019-10-12 00:44:00,238 Hickory St, Atlanta,GA,30301 +270034,USB-C Charging Cable,1,11.95,2019-10-04 08:20:00,367 13th St, Boston,MA,02215 +270035,USB-C Charging Cable,1,11.95,2019-10-15 07:58:00,818 Sunset St, Dallas,TX,75001 +270036,Wired Headphones,1,11.99,2019-10-22 11:03:00,791 South St, Los Angeles,CA,90001 +270037,Bose SoundSport Headphones,2,99.99,2019-10-12 19:31:00,424 Highland St, Seattle,WA,98101 +270038,USB-C Charging Cable,1,11.95,2019-10-04 14:35:00,312 West St, Boston,MA,02215 +270039,Bose SoundSport Headphones,1,99.99,2019-10-17 06:11:00,59 Dogwood St, New York City,NY,10001 +270040,Bose SoundSport Headphones,1,99.99,2019-10-07 11:59:00,380 6th St, San Francisco,CA,94016 +270041,USB-C Charging Cable,1,11.95,2019-10-02 13:51:00,59 Walnut St, New York City,NY,10001 +270042,USB-C Charging Cable,1,11.95,2019-10-11 14:26:00,345 Washington St, Dallas,TX,75001 +270043,Apple Airpods Headphones,1,150.0,2019-10-02 02:14:00,319 4th St, San Francisco,CA,94016 +270044,USB-C Charging Cable,1,11.95,2019-10-16 07:01:00,540 1st St, Portland,OR,97035 +270045,34in Ultrawide Monitor,1,379.99,2019-10-03 20:27:00,171 5th St, Los Angeles,CA,90001 +270046,Lightning Charging Cable,1,14.95,2019-10-26 14:17:00,114 Washington St, New York City,NY,10001 +270047,27in 4K Gaming Monitor,1,389.99,2019-10-29 09:16:00,120 Madison St, San Francisco,CA,94016 +270048,AAA Batteries (4-pack),1,2.99,2019-10-04 22:37:00,669 Jackson St, Seattle,WA,98101 +270049,iPhone,1,700.0,2019-10-05 14:35:00,404 6th St, Dallas,TX,75001 +270050,AA Batteries (4-pack),1,3.84,2019-10-12 11:17:00,773 1st St, Atlanta,GA,30301 +270050,Wired Headphones,1,11.99,2019-10-12 11:17:00,773 1st St, Atlanta,GA,30301 +270051,Wired Headphones,1,11.99,2019-10-05 21:46:00,296 Ridge St, Atlanta,GA,30301 +270052,Wired Headphones,1,11.99,2019-10-20 13:12:00,191 Cherry St, San Francisco,CA,94016 +270053,Wired Headphones,1,11.99,2019-10-10 19:42:00,720 7th St, San Francisco,CA,94016 +270054,USB-C Charging Cable,1,11.95,2019-10-31 08:12:00,946 Lakeview St, Seattle,WA,98101 +270055,AAA Batteries (4-pack),1,2.99,2019-10-28 12:56:00,840 Johnson St, San Francisco,CA,94016 +270056,ThinkPad Laptop,1,999.99,2019-10-14 10:58:00,810 Church St, Dallas,TX,75001 +270057,Wired Headphones,1,11.99,2019-10-19 00:27:00,542 Ridge St, Los Angeles,CA,90001 +270058,Lightning Charging Cable,1,14.95,2019-10-30 19:15:00,959 Center St, New York City,NY,10001 +270059,USB-C Charging Cable,1,11.95,2019-10-08 16:52:00,823 North St, San Francisco,CA,94016 +270060,AA Batteries (4-pack),2,3.84,2019-10-15 13:20:00,649 Ridge St, San Francisco,CA,94016 +270060,Wired Headphones,2,11.99,2019-10-15 13:20:00,649 Ridge St, San Francisco,CA,94016 +270061,Bose SoundSport Headphones,1,99.99,2019-10-24 13:28:00,439 Lakeview St, San Francisco,CA,94016 +270062,Bose SoundSport Headphones,1,99.99,2019-10-26 20:15:00,389 10th St, Seattle,WA,98101 +270063,USB-C Charging Cable,1,11.95,2019-10-20 06:08:00,144 North St, Austin,TX,73301 +270064,AAA Batteries (4-pack),2,2.99,2019-10-15 17:30:00,399 Highland St, Austin,TX,73301 +270065,27in FHD Monitor,1,149.99,2019-10-29 20:17:00,71 10th St, Portland,ME,04101 +270066,Wired Headphones,1,11.99,2019-10-14 23:14:00,265 River St, Dallas,TX,75001 +270067,34in Ultrawide Monitor,1,379.99,2019-10-25 19:54:00,579 4th St, San Francisco,CA,94016 +270068,AA Batteries (4-pack),2,3.84,2019-10-01 13:24:00,513 Pine St, Dallas,TX,75001 +270069,27in FHD Monitor,1,149.99,2019-10-11 18:39:00,156 Hickory St, Atlanta,GA,30301 +270070,20in Monitor,1,109.99,2019-10-18 12:44:00,289 Ridge St, San Francisco,CA,94016 +270071,Bose SoundSport Headphones,1,99.99,2019-10-30 10:58:00,739 Wilson St, Seattle,WA,98101 +270072,Lightning Charging Cable,1,14.95,2019-10-20 18:23:00,389 South St, Los Angeles,CA,90001 +270072,Flatscreen TV,1,300.0,2019-10-20 18:23:00,389 South St, Los Angeles,CA,90001 +270073,USB-C Charging Cable,1,11.95,2019-10-11 00:11:00,490 Park St, Seattle,WA,98101 +270074,Google Phone,1,600.0,2019-10-22 11:46:00,817 Elm St, San Francisco,CA,94016 +270075,Wired Headphones,1,11.99,2019-10-07 11:30:00,484 Pine St, Atlanta,GA,30301 +270076,AAA Batteries (4-pack),1,2.99,2019-10-04 07:17:00,996 4th St, Atlanta,GA,30301 +270077,Bose SoundSport Headphones,1,99.99,2019-10-26 16:04:00,298 11th St, San Francisco,CA,94016 +270078,27in FHD Monitor,1,149.99,2019-10-21 03:50:00,810 Sunset St, San Francisco,CA,94016 +270079,Apple Airpods Headphones,1,150.0,2019-10-18 10:51:00,783 West St, Seattle,WA,98101 +270080,Wired Headphones,1,11.99,2019-10-13 11:54:00,403 9th St, Los Angeles,CA,90001 +270081,USB-C Charging Cable,1,11.95,2019-10-21 08:54:00,725 Hickory St, San Francisco,CA,94016 +270082,AA Batteries (4-pack),1,3.84,2019-10-21 06:34:00,899 Church St, Los Angeles,CA,90001 +270083,20in Monitor,1,109.99,2019-10-30 18:04:00,777 9th St, New York City,NY,10001 +270084,20in Monitor,1,109.99,2019-10-08 17:17:00,667 Madison St, Atlanta,GA,30301 +270085,AA Batteries (4-pack),1,3.84,2019-10-25 22:37:00,179 Main St, San Francisco,CA,94016 +270086,USB-C Charging Cable,1,11.95,2019-10-05 15:48:00,760 12th St, New York City,NY,10001 +270087,Lightning Charging Cable,1,14.95,2019-10-16 17:50:00,115 Spruce St, New York City,NY,10001 +270088,Wired Headphones,1,11.99,2019-10-25 17:14:00,571 Lake St, San Francisco,CA,94016 +270089,USB-C Charging Cable,1,11.95,2019-10-21 15:50:00,410 12th St, New York City,NY,10001 +270090,ThinkPad Laptop,1,999.99,2019-10-29 15:44:00,219 14th St, San Francisco,CA,94016 +270091,Lightning Charging Cable,1,14.95,2019-10-05 10:53:00,507 4th St, Boston,MA,02215 +270092,27in 4K Gaming Monitor,1,389.99,2019-10-12 15:10:00,546 9th St, Dallas,TX,75001 +270093,USB-C Charging Cable,1,11.95,2019-10-15 16:31:00,886 Wilson St, Atlanta,GA,30301 +270094,34in Ultrawide Monitor,1,379.99,2019-10-17 10:43:00,920 13th St, San Francisco,CA,94016 +270095,USB-C Charging Cable,1,11.95,2019-10-12 20:13:00,801 6th St, Seattle,WA,98101 +270096,USB-C Charging Cable,1,11.95,2019-10-24 22:07:00,169 Willow St, Los Angeles,CA,90001 +270097,AA Batteries (4-pack),1,3.84,2019-10-18 16:56:00,91 4th St, San Francisco,CA,94016 +270098,Vareebadd Phone,1,400.0,2019-10-04 14:01:00,742 Cherry St, Dallas,TX,75001 +270099,20in Monitor,1,109.99,2019-10-04 08:02:00,632 10th St, New York City,NY,10001 +270100,Macbook Pro Laptop,1,1700.0,2019-10-15 21:27:00,61 Wilson St, Los Angeles,CA,90001 +270101,AA Batteries (4-pack),1,3.84,2019-10-28 09:49:00,314 Jackson St, Los Angeles,CA,90001 +270102,AA Batteries (4-pack),1,3.84,2019-10-06 14:38:00,668 8th St, San Francisco,CA,94016 +270103,20in Monitor,1,109.99,2019-10-22 11:44:00,864 Hill St, San Francisco,CA,94016 +270104,Lightning Charging Cable,1,14.95,2019-10-02 22:31:00,147 Walnut St, New York City,NY,10001 +270105,AA Batteries (4-pack),1,3.84,2019-10-24 17:08:00,943 River St, New York City,NY,10001 +270106,Bose SoundSport Headphones,1,99.99,2019-10-04 20:24:00,583 10th St, New York City,NY,10001 +270107,Google Phone,1,600.0,2019-10-08 01:36:00,301 Forest St, Seattle,WA,98101 +270107,USB-C Charging Cable,1,11.95,2019-10-08 01:36:00,301 Forest St, Seattle,WA,98101 +270108,AAA Batteries (4-pack),1,2.99,2019-10-08 07:37:00,597 Hickory St, Boston,MA,02215 +270109,AA Batteries (4-pack),1,3.84,2019-10-26 19:42:00,871 Willow St, Atlanta,GA,30301 +270110,Apple Airpods Headphones,1,150.0,2019-10-21 12:03:00,654 Lincoln St, Seattle,WA,98101 +270111,Lightning Charging Cable,2,14.95,2019-10-22 13:29:00,745 North St, Dallas,TX,75001 +270112,34in Ultrawide Monitor,1,379.99,2019-10-21 15:28:00,676 Walnut St, Boston,MA,02215 +270113,27in FHD Monitor,1,149.99,2019-10-30 09:01:00,790 Wilson St, Seattle,WA,98101 +270114,Bose SoundSport Headphones,1,99.99,2019-10-03 16:04:00,822 Pine St, Boston,MA,02215 +270115,Apple Airpods Headphones,1,150.0,2019-10-21 22:53:00,923 Cedar St, New York City,NY,10001 +270116,AAA Batteries (4-pack),3,2.99,2019-10-22 06:15:00,662 7th St, San Francisco,CA,94016 +270117,AA Batteries (4-pack),1,3.84,2019-10-25 08:03:00,1 River St, New York City,NY,10001 +270118,USB-C Charging Cable,2,11.95,2019-10-27 20:43:00,101 12th St, Portland,OR,97035 +270119,Apple Airpods Headphones,1,150.0,2019-10-16 00:03:00,244 South St, New York City,NY,10001 +270120,27in 4K Gaming Monitor,1,389.99,2019-10-31 17:32:00,710 Adams St, Dallas,TX,75001 +270121,AAA Batteries (4-pack),1,2.99,2019-10-08 11:19:00,806 14th St, Austin,TX,73301 +270122,Google Phone,1,600.0,2019-10-26 13:12:00,777 Forest St, Boston,MA,02215 +270123,Lightning Charging Cable,1,14.95,2019-10-01 14:06:00,139 Madison St, San Francisco,CA,94016 +270124,AAA Batteries (4-pack),1,2.99,2019-10-23 08:14:00,912 Church St, Boston,MA,02215 +270125,USB-C Charging Cable,1,11.95,2019-10-24 09:31:00,344 Willow St, Seattle,WA,98101 +270126,Lightning Charging Cable,1,14.95,2019-10-31 21:43:00,153 4th St, Boston,MA,02215 +270127,AAA Batteries (4-pack),1,2.99,2019-10-06 16:15:00,207 Jefferson St, New York City,NY,10001 +270128,34in Ultrawide Monitor,1,379.99,2019-10-31 13:44:00,537 Church St, Austin,TX,73301 +270129,Bose SoundSport Headphones,1,99.99,2019-10-29 19:04:00,26 4th St, San Francisco,CA,94016 +270130,iPhone,1,700.0,2019-10-26 18:25:00,530 Cherry St, Austin,TX,73301 +270131,Google Phone,1,600.0,2019-10-01 13:38:00,51 Highland St, Los Angeles,CA,90001 +270132,AA Batteries (4-pack),1,3.84,2019-10-07 19:21:00,696 Maple St, New York City,NY,10001 +270133,iPhone,1,700.0,2019-10-03 18:57:00,273 Jackson St, Boston,MA,02215 +270134,27in FHD Monitor,1,149.99,2019-10-15 20:20:00,952 Sunset St, Los Angeles,CA,90001 +270135,Apple Airpods Headphones,1,150.0,2019-10-09 17:28:00,691 Cedar St, San Francisco,CA,94016 +270136,Bose SoundSport Headphones,1,99.99,2019-10-28 10:30:00,911 Adams St, San Francisco,CA,94016 +270137,AA Batteries (4-pack),1,3.84,2019-10-17 14:33:00,668 1st St, Seattle,WA,98101 +270138,Apple Airpods Headphones,1,150.0,2019-10-08 07:36:00,162 10th St, New York City,NY,10001 +270139,USB-C Charging Cable,2,11.95,2019-10-15 19:17:00,51 Wilson St, Los Angeles,CA,90001 +270140,Apple Airpods Headphones,1,150.0,2019-10-13 17:10:00,443 Forest St, Boston,MA,02215 +270141,Apple Airpods Headphones,1,150.0,2019-10-13 01:09:00,908 Hickory St, New York City,NY,10001 +270142,AAA Batteries (4-pack),1,2.99,2019-10-31 19:30:00,596 Cherry St, Atlanta,GA,30301 +270142,Lightning Charging Cable,1,14.95,2019-10-31 19:30:00,596 Cherry St, Atlanta,GA,30301 +270143,27in FHD Monitor,1,149.99,2019-10-17 10:41:00,593 Wilson St, Dallas,TX,75001 +270144,Apple Airpods Headphones,1,150.0,2019-10-12 14:43:00,483 Cedar St, San Francisco,CA,94016 +270145,Wired Headphones,1,11.99,2019-10-18 02:32:00,673 10th St, Los Angeles,CA,90001 +270146,27in 4K Gaming Monitor,1,389.99,2019-10-10 15:00:00,440 Elm St, Austin,TX,73301 +270147,AA Batteries (4-pack),1,3.84,2019-10-19 17:42:00,270 Hill St, Los Angeles,CA,90001 +270148,AAA Batteries (4-pack),1,2.99,2019-10-01 19:06:00,3 Madison St, Portland,OR,97035 +270149,27in FHD Monitor,1,149.99,2019-10-26 13:30:00,198 Church St, Los Angeles,CA,90001 +270150,Bose SoundSport Headphones,1,99.99,2019-10-28 11:50:00,857 Highland St, Atlanta,GA,30301 +270151,Bose SoundSport Headphones,1,99.99,2019-10-28 12:23:00,782 10th St, San Francisco,CA,94016 +270152,Wired Headphones,1,11.99,2019-10-03 12:10:00,186 North St, Boston,MA,02215 +270153,USB-C Charging Cable,1,11.95,2019-10-04 23:29:00,283 River St, San Francisco,CA,94016 +270154,Wired Headphones,1,11.99,2019-10-15 14:14:00,462 Wilson St, Los Angeles,CA,90001 +270155,Bose SoundSport Headphones,1,99.99,2019-10-14 03:35:00,964 Hickory St, Atlanta,GA,30301 +270156,AAA Batteries (4-pack),1,2.99,2019-10-30 16:38:00,817 West St, Boston,MA,02215 +270157,34in Ultrawide Monitor,1,379.99,2019-10-31 16:31:00,149 South St, San Francisco,CA,94016 +270158,Apple Airpods Headphones,1,150.0,2019-10-27 12:07:00,884 Sunset St, San Francisco,CA,94016 +270159,AAA Batteries (4-pack),1,2.99,2019-10-09 18:15:00,671 South St, San Francisco,CA,94016 +270160,iPhone,1,700.0,2019-10-21 11:54:00,860 Jackson St, Austin,TX,73301 +270161,Google Phone,1,600.0,2019-10-29 13:04:00,171 Chestnut St, Los Angeles,CA,90001 +270162,Lightning Charging Cable,1,14.95,2019-10-22 09:54:00,452 Center St, Dallas,TX,75001 +270163,USB-C Charging Cable,1,11.95,2019-10-29 13:36:00,886 Ridge St, San Francisco,CA,94016 +270164,Bose SoundSport Headphones,1,99.99,2019-10-20 00:36:00,193 Hickory St, Los Angeles,CA,90001 +270165,AA Batteries (4-pack),2,3.84,2019-10-26 00:21:00,122 Main St, New York City,NY,10001 +270166,Macbook Pro Laptop,1,1700.0,2019-10-19 15:18:00,343 Park St, New York City,NY,10001 +270167,27in FHD Monitor,1,149.99,2019-10-15 21:17:00,944 Forest St, Atlanta,GA,30301 +270168,USB-C Charging Cable,1,11.95,2019-10-30 13:30:00,557 North St, New York City,NY,10001 +270169,iPhone,1,700.0,2019-10-17 15:37:00,22 Maple St, Boston,MA,02215 +270170,Macbook Pro Laptop,1,1700.0,2019-10-02 12:21:00,737 13th St, Seattle,WA,98101 +270171,AA Batteries (4-pack),1,3.84,2019-10-14 13:05:00,924 Adams St, Los Angeles,CA,90001 +270172,AAA Batteries (4-pack),1,2.99,2019-10-12 11:00:00,20 Sunset St, Atlanta,GA,30301 +270173,34in Ultrawide Monitor,1,379.99,2019-10-21 16:32:00,967 9th St, New York City,NY,10001 +270174,Wired Headphones,1,11.99,2019-10-05 09:38:00,482 Lakeview St, New York City,NY,10001 +270175,AAA Batteries (4-pack),1,2.99,2019-10-25 10:57:00,201 Elm St, Boston,MA,02215 +270175,Apple Airpods Headphones,1,150.0,2019-10-25 10:57:00,201 Elm St, Boston,MA,02215 +270176,Bose SoundSport Headphones,1,99.99,2019-10-06 14:17:00,522 Highland St, Dallas,TX,75001 +270177,20in Monitor,1,109.99,2019-10-09 21:33:00,313 Sunset St, Seattle,WA,98101 +270178,Wired Headphones,1,11.99,2019-10-19 16:09:00,378 Sunset St, Los Angeles,CA,90001 +270179,Lightning Charging Cable,1,14.95,2019-10-31 08:18:00,524 Chestnut St, Portland,OR,97035 +270180,AAA Batteries (4-pack),2,2.99,2019-10-23 08:28:00,165 Lakeview St, New York City,NY,10001 +270181,Apple Airpods Headphones,1,150.0,2019-10-23 12:18:00,651 River St, Dallas,TX,75001 +270182,AA Batteries (4-pack),1,3.84,2019-10-14 20:12:00,47 Sunset St, Seattle,WA,98101 +270183,Macbook Pro Laptop,1,1700.0,2019-10-25 15:44:00,655 Wilson St, Atlanta,GA,30301 +270184,AA Batteries (4-pack),1,3.84,2019-10-21 21:02:00,275 Main St, Dallas,TX,75001 +270185,Bose SoundSport Headphones,1,99.99,2019-10-18 21:29:00,585 14th St, San Francisco,CA,94016 +270186,Lightning Charging Cable,1,14.95,2019-10-14 20:34:00,419 Washington St, Boston,MA,02215 +270187,AA Batteries (4-pack),1,3.84,2019-10-23 16:21:00,812 River St, Portland,OR,97035 +270188,Wired Headphones,1,11.99,2019-10-08 16:41:00,712 Johnson St, New York City,NY,10001 +270189,USB-C Charging Cable,1,11.95,2019-10-31 15:40:00,13 Ridge St, Boston,MA,02215 +270190,Bose SoundSport Headphones,2,99.99,2019-10-26 23:29:00,135 1st St, Boston,MA,02215 +270191,Wired Headphones,1,11.99,2019-10-17 18:15:00,410 Chestnut St, New York City,NY,10001 +270192,AA Batteries (4-pack),1,3.84,2019-10-31 11:42:00,997 South St, Boston,MA,02215 +270193,Wired Headphones,1,11.99,2019-10-24 11:28:00,345 Hickory St, San Francisco,CA,94016 +270194,USB-C Charging Cable,1,11.95,2019-10-08 17:31:00,295 Sunset St, Los Angeles,CA,90001 +270195,Flatscreen TV,1,300.0,2019-10-31 09:12:00,326 North St, Dallas,TX,75001 +270196,USB-C Charging Cable,1,11.95,2019-10-22 02:22:00,265 Johnson St, San Francisco,CA,94016 +270197,Google Phone,1,600.0,2019-10-26 13:12:00,179 Cherry St, New York City,NY,10001 +270198,AAA Batteries (4-pack),1,2.99,2019-10-06 12:32:00,402 Jefferson St, San Francisco,CA,94016 +270199,AA Batteries (4-pack),4,3.84,2019-10-21 18:35:00,6 Walnut St, Los Angeles,CA,90001 +270200,Lightning Charging Cable,1,14.95,2019-10-18 20:00:00,364 Cherry St, Los Angeles,CA,90001 +270201,Macbook Pro Laptop,1,1700.0,2019-10-01 20:29:00,966 1st St, Atlanta,GA,30301 +270202,Wired Headphones,1,11.99,2019-10-23 11:02:00,614 Madison St, Boston,MA,02215 +270203,ThinkPad Laptop,1,999.99,2019-10-16 15:52:00,205 Madison St, Atlanta,GA,30301 +270204,Apple Airpods Headphones,1,150.0,2019-10-06 07:03:00,344 1st St, Atlanta,GA,30301 +270205,27in 4K Gaming Monitor,1,389.99,2019-10-06 22:31:00,678 Johnson St, Seattle,WA,98101 +270206,27in 4K Gaming Monitor,1,389.99,2019-10-23 12:47:00,783 Hill St, Dallas,TX,75001 +270207,AAA Batteries (4-pack),1,2.99,2019-10-29 10:20:00,304 13th St, New York City,NY,10001 +270208,Google Phone,1,600.0,2019-10-05 17:16:00,548 Jefferson St, Dallas,TX,75001 +270208,USB-C Charging Cable,1,11.95,2019-10-05 17:16:00,548 Jefferson St, Dallas,TX,75001 +270209,Bose SoundSport Headphones,1,99.99,2019-10-09 12:39:00,192 8th St, Portland,ME,04101 +270210,27in 4K Gaming Monitor,1,389.99,2019-10-17 17:13:00,591 4th St, San Francisco,CA,94016 +270211,Wired Headphones,1,11.99,2019-10-04 12:37:00,176 1st St, Portland,OR,97035 +270212,ThinkPad Laptop,1,999.99,2019-10-16 22:44:00,996 Elm St, Boston,MA,02215 +270213,Wired Headphones,1,11.99,2019-10-21 17:07:00,808 Dogwood St, San Francisco,CA,94016 +270214,Lightning Charging Cable,1,14.95,2019-10-13 22:36:00,547 South St, San Francisco,CA,94016 +270215,USB-C Charging Cable,1,11.95,2019-10-06 16:40:00,458 West St, Los Angeles,CA,90001 +270216,Bose SoundSport Headphones,1,99.99,2019-10-25 15:47:00,770 Hickory St, Austin,TX,73301 +270217,Apple Airpods Headphones,1,150.0,2019-10-11 14:37:00,837 Jefferson St, New York City,NY,10001 +270218,Flatscreen TV,1,300.0,2019-10-06 17:11:00,912 Jefferson St, Los Angeles,CA,90001 +270219,Apple Airpods Headphones,1,150.0,2019-10-21 13:07:00,128 Pine St, New York City,NY,10001 +270220,Wired Headphones,1,11.99,2019-10-12 21:32:00,102 11th St, New York City,NY,10001 +270221,Flatscreen TV,1,300.0,2019-10-31 12:11:00,673 Willow St, Portland,OR,97035 +270222,ThinkPad Laptop,1,999.99,2019-10-23 08:47:00,337 12th St, San Francisco,CA,94016 +270223,Google Phone,1,600.0,2019-10-25 18:53:00,423 Elm St, Boston,MA,02215 +270223,Bose SoundSport Headphones,1,99.99,2019-10-25 18:53:00,423 Elm St, Boston,MA,02215 +270224,27in FHD Monitor,1,149.99,2019-10-26 00:10:00,981 8th St, San Francisco,CA,94016 +270225,USB-C Charging Cable,1,11.95,2019-10-20 20:58:00,647 Lakeview St, New York City,NY,10001 +270226,Bose SoundSport Headphones,1,99.99,2019-10-01 20:49:00,210 Adams St, Los Angeles,CA,90001 +270227,AA Batteries (4-pack),3,3.84,2019-10-17 14:13:00,42 Meadow St, New York City,NY,10001 +270228,Vareebadd Phone,1,400.0,2019-10-13 11:28:00,33 South St, Portland,OR,97035 +270228,USB-C Charging Cable,2,11.95,2019-10-13 11:28:00,33 South St, Portland,OR,97035 +270229,Flatscreen TV,1,300.0,2019-10-07 14:41:00,7 Hill St, Los Angeles,CA,90001 +270230,Wired Headphones,1,11.99,2019-10-23 14:45:00,592 West St, San Francisco,CA,94016 +270231,Lightning Charging Cable,1,14.95,2019-10-04 00:15:00,854 8th St, Boston,MA,02215 +270232,USB-C Charging Cable,1,11.95,2019-10-09 20:03:00,943 Sunset St, San Francisco,CA,94016 +270233,AA Batteries (4-pack),3,3.84,2019-10-10 18:23:00,459 Hill St, New York City,NY,10001 +270234,Lightning Charging Cable,1,14.95,2019-10-01 11:34:00,75 Maple St, San Francisco,CA,94016 +270235,Apple Airpods Headphones,1,150.0,2019-10-15 14:48:00,40 Park St, Austin,TX,73301 +270236,Wired Headphones,1,11.99,2019-10-04 19:11:00,771 Johnson St, Boston,MA,02215 +270237,Wired Headphones,1,11.99,2019-10-03 09:19:00,635 8th St, San Francisco,CA,94016 +270238,Bose SoundSport Headphones,1,99.99,2019-10-13 19:50:00,340 Lake St, Los Angeles,CA,90001 +270239,Lightning Charging Cable,1,14.95,2019-10-15 16:25:00,533 Forest St, San Francisco,CA,94016 +270240,Lightning Charging Cable,1,14.95,2019-10-20 02:36:00,237 Church St, Atlanta,GA,30301 +270241,Lightning Charging Cable,1,14.95,2019-10-18 11:38:00,579 8th St, Portland,OR,97035 +270242,AA Batteries (4-pack),1,3.84,2019-10-25 10:11:00,193 Highland St, Dallas,TX,75001 +270243,Macbook Pro Laptop,1,1700.0,2019-10-02 17:13:00,699 9th St, San Francisco,CA,94016 +270244,ThinkPad Laptop,1,999.99,2019-10-19 10:33:00,88 West St, Portland,ME,04101 +270245,AAA Batteries (4-pack),1,2.99,2019-10-13 12:34:00,210 Highland St, Austin,TX,73301 +270246,27in 4K Gaming Monitor,1,389.99,2019-10-24 14:19:00,290 Cherry St, Atlanta,GA,30301 +270246,USB-C Charging Cable,1,11.95,2019-10-24 14:19:00,290 Cherry St, Atlanta,GA,30301 +270247,Lightning Charging Cable,1,14.95,2019-10-08 14:34:00,145 11th St, Boston,MA,02215 +270248,Bose SoundSport Headphones,1,99.99,2019-10-19 12:20:00,470 Maple St, Atlanta,GA,30301 +270249,Flatscreen TV,1,300.0,2019-10-01 16:02:00,422 13th St, Dallas,TX,75001 +270250,USB-C Charging Cable,2,11.95,2019-10-16 20:36:00,695 Spruce St, New York City,NY,10001 +270251,Bose SoundSport Headphones,1,99.99,2019-10-19 16:47:00,187 Park St, Atlanta,GA,30301 +270252,USB-C Charging Cable,1,11.95,2019-10-21 18:50:00,4 8th St, Seattle,WA,98101 +270253,Lightning Charging Cable,1,14.95,2019-10-31 22:44:00,332 Lincoln St, Atlanta,GA,30301 +270254,ThinkPad Laptop,1,999.99,2019-10-26 17:17:00,403 Madison St, Los Angeles,CA,90001 +270255,27in FHD Monitor,1,149.99,2019-10-06 17:14:00,672 Lake St, Seattle,WA,98101 +270256,AA Batteries (4-pack),2,3.84,2019-10-08 11:24:00,16 Dogwood St, New York City,NY,10001 +270257,AA Batteries (4-pack),1,3.84,2019-10-01 17:41:00,267 Meadow St, Los Angeles,CA,90001 +270258,Google Phone,1,600.0,2019-10-31 11:30:00,934 North St, Boston,MA,02215 +270259,USB-C Charging Cable,1,11.95,2019-10-09 15:42:00,921 5th St, Austin,TX,73301 +270260,AA Batteries (4-pack),1,3.84,2019-10-13 22:31:00,278 Johnson St, San Francisco,CA,94016 +270261,Lightning Charging Cable,1,14.95,2019-10-10 09:28:00,597 Jefferson St, Atlanta,GA,30301 +270262,Lightning Charging Cable,1,14.95,2019-10-25 13:10:00,825 14th St, Boston,MA,02215 +270263,Bose SoundSport Headphones,1,99.99,2019-10-19 08:56:00,481 5th St, Los Angeles,CA,90001 +270264,AA Batteries (4-pack),1,3.84,2019-10-04 10:37:00,431 Cedar St, Los Angeles,CA,90001 +270265,34in Ultrawide Monitor,1,379.99,2019-10-02 13:23:00,584 8th St, Portland,OR,97035 +270266,Bose SoundSport Headphones,1,99.99,2019-10-19 22:56:00,496 Willow St, Dallas,TX,75001 +270267,Lightning Charging Cable,1,14.95,2019-10-18 17:43:00,345 Jackson St, New York City,NY,10001 +270268,Google Phone,1,600.0,2019-10-26 16:09:00,479 Highland St, San Francisco,CA,94016 +270268,Bose SoundSport Headphones,1,99.99,2019-10-26 16:09:00,479 Highland St, San Francisco,CA,94016 +270269,USB-C Charging Cable,1,11.95,2019-10-16 10:45:00,408 Cedar St, Portland,OR,97035 +270270,34in Ultrawide Monitor,1,379.99,2019-10-11 10:03:00,65 River St, Atlanta,GA,30301 +270271,Wired Headphones,1,11.99,2019-10-30 19:49:00,375 West St, Seattle,WA,98101 +270272,Flatscreen TV,1,300.0,2019-10-07 21:14:00,136 Elm St, San Francisco,CA,94016 +270273,USB-C Charging Cable,1,11.95,2019-10-23 11:57:00,406 Pine St, New York City,NY,10001 +270274,Bose SoundSport Headphones,1,99.99,2019-10-11 19:20:00,958 Wilson St, Los Angeles,CA,90001 +270274,AAA Batteries (4-pack),1,2.99,2019-10-11 19:20:00,958 Wilson St, Los Angeles,CA,90001 +270275,Google Phone,1,600.0,2019-10-10 01:24:00,437 Lakeview St, San Francisco,CA,94016 +270276,AA Batteries (4-pack),1,3.84,2019-10-11 19:34:00,727 Sunset St, Dallas,TX,75001 +270277,Wired Headphones,1,11.99,2019-10-16 20:34:00,20 Dogwood St, Los Angeles,CA,90001 +270278,Bose SoundSport Headphones,1,99.99,2019-10-15 12:08:00,242 Wilson St, Dallas,TX,75001 +270279,27in FHD Monitor,1,149.99,2019-10-08 15:09:00,326 Walnut St, Boston,MA,02215 +270280,Google Phone,1,600.0,2019-10-21 21:29:00,72 Cherry St, San Francisco,CA,94016 +270281,Lightning Charging Cable,2,14.95,2019-10-22 11:50:00,44 5th St, Dallas,TX,75001 +270282,USB-C Charging Cable,1,11.95,2019-10-17 20:10:00,694 Jackson St, Dallas,TX,75001 +270283,Wired Headphones,1,11.99,2019-10-02 14:51:00,327 Meadow St, San Francisco,CA,94016 +270284,Google Phone,1,600.0,2019-10-08 18:15:00,803 Willow St, New York City,NY,10001 +270285,AA Batteries (4-pack),1,3.84,2019-10-13 17:04:00,128 Lincoln St, Dallas,TX,75001 +270286,Wired Headphones,1,11.99,2019-10-08 20:55:00,916 1st St, Seattle,WA,98101 +270287,Wired Headphones,1,11.99,2019-10-01 10:01:00,934 Lakeview St, Dallas,TX,75001 +270288,Apple Airpods Headphones,1,150.0,2019-10-01 17:34:00,934 Forest St, New York City,NY,10001 +270289,27in FHD Monitor,1,149.99,2019-10-22 15:31:00,853 Johnson St, Austin,TX,73301 +270290,Macbook Pro Laptop,1,1700.0,2019-10-25 22:10:00,179 5th St, Atlanta,GA,30301 +270291,ThinkPad Laptop,1,999.99,2019-10-02 20:17:00,16 Washington St, Atlanta,GA,30301 +270292,Bose SoundSport Headphones,1,99.99,2019-10-03 15:54:00,64 Pine St, New York City,NY,10001 +270293,Wired Headphones,1,11.99,2019-10-18 01:52:00,851 Hill St, New York City,NY,10001 +270294,Wired Headphones,2,11.99,2019-10-12 13:40:00,503 Highland St, Seattle,WA,98101 +270295,Apple Airpods Headphones,1,150.0,2019-10-29 14:57:00,465 Church St, Los Angeles,CA,90001 +270296,20in Monitor,1,109.99,2019-10-09 11:26:00,906 Lake St, Los Angeles,CA,90001 +270297,USB-C Charging Cable,1,11.95,2019-10-07 20:03:00,91 13th St, New York City,NY,10001 +270298,iPhone,1,700.0,2019-10-02 11:50:00,901 13th St, Seattle,WA,98101 +270299,USB-C Charging Cable,1,11.95,2019-10-13 11:29:00,482 Dogwood St, San Francisco,CA,94016 +270300,27in 4K Gaming Monitor,1,389.99,2019-10-27 22:59:00,596 Hickory St, New York City,NY,10001 +270301,34in Ultrawide Monitor,1,379.99,2019-10-23 10:50:00,608 10th St, San Francisco,CA,94016 +270302,Wired Headphones,1,11.99,2019-10-28 21:44:00,452 Jefferson St, Boston,MA,02215 +270303,AAA Batteries (4-pack),2,2.99,2019-10-02 11:59:00,447 West St, Austin,TX,73301 +270304,Wired Headphones,1,11.99,2019-10-07 10:26:00,345 Cherry St, New York City,NY,10001 +270305,Wired Headphones,1,11.99,2019-10-05 20:03:00,140 Lakeview St, Dallas,TX,75001 +270306,iPhone,1,700.0,2019-10-04 16:46:00,311 Park St, San Francisco,CA,94016 +270307,Bose SoundSport Headphones,1,99.99,2019-10-29 19:12:00,410 Walnut St, Austin,TX,73301 +270308,USB-C Charging Cable,1,11.95,2019-10-24 13:58:00,453 Sunset St, Dallas,TX,75001 +270309,27in FHD Monitor,1,149.99,2019-10-17 12:29:00,912 8th St, San Francisco,CA,94016 +270310,Lightning Charging Cable,1,14.95,2019-10-23 08:21:00,521 South St, New York City,NY,10001 +270311,LG Washing Machine,1,600.0,2019-10-22 17:23:00,963 14th St, New York City,NY,10001 +270312,AAA Batteries (4-pack),1,2.99,2019-10-15 10:13:00,683 Center St, Seattle,WA,98101 +270313,Lightning Charging Cable,1,14.95,2019-10-15 08:48:00,34 Lincoln St, San Francisco,CA,94016 +270314,34in Ultrawide Monitor,1,379.99,2019-10-27 18:27:00,801 Center St, Los Angeles,CA,90001 +270315,AAA Batteries (4-pack),2,2.99,2019-10-19 12:25:00,169 8th St, Atlanta,GA,30301 +270316,AA Batteries (4-pack),1,3.84,2019-10-29 13:50:00,920 Ridge St, San Francisco,CA,94016 +270317,Lightning Charging Cable,1,14.95,2019-10-10 19:52:00,346 Walnut St, San Francisco,CA,94016 +270318,Wired Headphones,1,11.99,2019-10-18 15:57:00,530 Dogwood St, Los Angeles,CA,90001 +270319,AA Batteries (4-pack),1,3.84,2019-10-28 08:25:00,993 Johnson St, Atlanta,GA,30301 +270320,34in Ultrawide Monitor,1,379.99,2019-10-20 10:12:00,563 North St, Austin,TX,73301 +270321,27in FHD Monitor,1,149.99,2019-10-09 13:00:00,961 Spruce St, Austin,TX,73301 +270322,27in 4K Gaming Monitor,1,389.99,2019-10-16 14:19:00,162 4th St, Boston,MA,02215 +270323,Macbook Pro Laptop,1,1700.0,2019-10-12 10:14:00,240 8th St, Portland,ME,04101 +270324,USB-C Charging Cable,2,11.95,2019-10-09 21:05:00,656 Wilson St, Los Angeles,CA,90001 +270325,AA Batteries (4-pack),2,3.84,2019-10-04 12:10:00,627 Center St, San Francisco,CA,94016 +270326,Apple Airpods Headphones,1,150.0,2019-10-29 19:58:00,912 Adams St, San Francisco,CA,94016 +270327,Vareebadd Phone,1,400.0,2019-10-21 20:04:00,628 Willow St, San Francisco,CA,94016 +270328,Apple Airpods Headphones,1,150.0,2019-10-04 15:10:00,247 Lakeview St, New York City,NY,10001 +270329,27in FHD Monitor,1,149.99,2019-10-03 11:50:00,166 13th St, San Francisco,CA,94016 +270330,20in Monitor,1,109.99,2019-10-29 09:29:00,629 Lakeview St, Los Angeles,CA,90001 +270331,Wired Headphones,1,11.99,2019-10-27 09:26:00,10 Pine St, San Francisco,CA,94016 +270332,AA Batteries (4-pack),1,3.84,2019-10-10 20:28:00,553 Jefferson St, Los Angeles,CA,90001 +270333,Wired Headphones,2,11.99,2019-10-04 18:00:00,76 North St, Seattle,WA,98101 +270334,Apple Airpods Headphones,1,150.0,2019-10-28 23:06:00,580 Johnson St, Boston,MA,02215 +270335,Apple Airpods Headphones,1,150.0,2019-10-10 12:25:00,385 9th St, New York City,NY,10001 +270336,AA Batteries (4-pack),1,3.84,2019-10-11 22:57:00,820 Willow St, Atlanta,GA,30301 +270337,iPhone,1,700.0,2019-10-07 11:29:00,623 10th St, Boston,MA,02215 +270338,Bose SoundSport Headphones,1,99.99,2019-10-12 16:45:00,396 11th St, New York City,NY,10001 +270339,20in Monitor,1,109.99,2019-10-12 16:57:00,960 River St, San Francisco,CA,94016 +270340,Macbook Pro Laptop,1,1700.0,2019-10-08 14:51:00,896 8th St, Dallas,TX,75001 +270341,Apple Airpods Headphones,1,150.0,2019-10-31 23:24:00,228 Wilson St, Los Angeles,CA,90001 +270342,Wired Headphones,1,11.99,2019-10-01 11:56:00,233 Main St, Boston,MA,02215 +270343,Wired Headphones,1,11.99,2019-10-14 15:44:00,520 South St, San Francisco,CA,94016 +270344,ThinkPad Laptop,1,999.99,2019-10-06 15:35:00,175 12th St, Boston,MA,02215 +270345,USB-C Charging Cable,1,11.95,2019-10-17 23:27:00,504 River St, San Francisco,CA,94016 +270346,AA Batteries (4-pack),1,3.84,2019-10-04 00:00:00,809 13th St, San Francisco,CA,94016 +270347,USB-C Charging Cable,1,11.95,2019-10-31 17:58:00,783 Ridge St, San Francisco,CA,94016 +270348,USB-C Charging Cable,1,11.95,2019-10-12 16:09:00,234 Johnson St, Seattle,WA,98101 +270349,34in Ultrawide Monitor,1,379.99,2019-10-14 06:34:00,637 West St, Atlanta,GA,30301 +270350,AAA Batteries (4-pack),2,2.99,2019-10-04 18:26:00,303 Center St, New York City,NY,10001 +270351,AA Batteries (4-pack),1,3.84,2019-10-23 13:56:00,697 Park St, Dallas,TX,75001 +270352,Apple Airpods Headphones,1,150.0,2019-10-03 15:06:00,306 Willow St, Austin,TX,73301 +270353,Lightning Charging Cable,1,14.95,2019-10-08 18:11:00,719 Elm St, San Francisco,CA,94016 +270354,34in Ultrawide Monitor,1,379.99,2019-10-16 14:57:00,767 11th St, Los Angeles,CA,90001 +270355,Apple Airpods Headphones,1,150.0,2019-10-16 19:13:00,652 14th St, San Francisco,CA,94016 +270356,USB-C Charging Cable,1,11.95,2019-10-26 19:38:00,365 Lakeview St, San Francisco,CA,94016 +270357,Flatscreen TV,1,300.0,2019-10-21 13:01:00,490 Forest St, Los Angeles,CA,90001 +270358,AA Batteries (4-pack),2,3.84,2019-10-31 22:32:00,18 Hill St, San Francisco,CA,94016 +270359,AA Batteries (4-pack),1,3.84,2019-10-21 20:30:00,836 Hill St, San Francisco,CA,94016 +270360,iPhone,1,700.0,2019-10-20 16:25:00,650 Spruce St, Austin,TX,73301 +270361,Lightning Charging Cable,1,14.95,2019-10-14 10:33:00,49 Park St, Boston,MA,02215 +270362,AA Batteries (4-pack),1,3.84,2019-10-13 09:40:00,588 Main St, New York City,NY,10001 +270363,ThinkPad Laptop,1,999.99,2019-10-13 17:46:00,317 1st St, New York City,NY,10001 +270364,AAA Batteries (4-pack),2,2.99,2019-10-10 19:37:00,342 Washington St, San Francisco,CA,94016 +270365,AAA Batteries (4-pack),2,2.99,2019-10-15 16:27:00,791 Park St, New York City,NY,10001 +270366,Bose SoundSport Headphones,1,99.99,2019-10-01 16:50:00,528 Jackson St, Atlanta,GA,30301 +270367,Bose SoundSport Headphones,1,99.99,2019-10-17 10:59:00,516 13th St, Dallas,TX,75001 +270368,USB-C Charging Cable,1,11.95,2019-10-31 12:53:00,877 Lake St, Boston,MA,02215 +270369,27in 4K Gaming Monitor,1,389.99,2019-10-06 06:23:00,686 14th St, New York City,NY,10001 +270370,AA Batteries (4-pack),1,3.84,2019-10-20 13:25:00,728 10th St, Dallas,TX,75001 +270371,Wired Headphones,1,11.99,2019-10-29 08:54:00,258 Forest St, Seattle,WA,98101 +270372,AAA Batteries (4-pack),1,2.99,2019-10-05 23:08:00,36 10th St, Los Angeles,CA,90001 +270373,Apple Airpods Headphones,1,150.0,2019-10-10 22:53:00,907 8th St, Portland,ME,04101 +270374,Wired Headphones,1,11.99,2019-10-24 10:36:00,715 West St, Seattle,WA,98101 +270375,iPhone,1,700.0,2019-10-03 09:23:00,284 Adams St, Portland,OR,97035 +270375,Lightning Charging Cable,2,14.95,2019-10-03 09:23:00,284 Adams St, Portland,OR,97035 +270376,AA Batteries (4-pack),1,3.84,2019-10-28 11:21:00,956 Park St, Atlanta,GA,30301 +270377,34in Ultrawide Monitor,1,379.99,2019-10-24 16:44:00,241 Wilson St, Los Angeles,CA,90001 +270378,AA Batteries (4-pack),2,3.84,2019-10-19 12:19:00,497 Lake St, Austin,TX,73301 +270379,Bose SoundSport Headphones,1,99.99,2019-10-19 19:18:00,931 12th St, Portland,OR,97035 +270380,AAA Batteries (4-pack),1,2.99,2019-10-21 13:35:00,67 Ridge St, Boston,MA,02215 +270381,USB-C Charging Cable,1,11.95,2019-10-18 13:23:00,353 8th St, Atlanta,GA,30301 +270382,AAA Batteries (4-pack),1,2.99,2019-10-22 23:09:00,241 Lakeview St, New York City,NY,10001 +270383,Apple Airpods Headphones,1,150.0,2019-10-25 16:37:00,721 South St, Atlanta,GA,30301 +270384,AA Batteries (4-pack),1,3.84,2019-10-22 10:55:00,387 8th St, San Francisco,CA,94016 +270385,USB-C Charging Cable,1,11.95,2019-10-20 13:07:00,234 Wilson St, Austin,TX,73301 +270386,Lightning Charging Cable,1,14.95,2019-10-30 23:21:00,641 Lincoln St, Austin,TX,73301 +270387,iPhone,1,700.0,2019-10-08 09:35:00,406 Wilson St, Los Angeles,CA,90001 +270387,Wired Headphones,1,11.99,2019-10-08 09:35:00,406 Wilson St, Los Angeles,CA,90001 +270388,Apple Airpods Headphones,1,150.0,2019-10-11 21:13:00,616 Washington St, San Francisco,CA,94016 +270389,USB-C Charging Cable,1,11.95,2019-10-19 14:02:00,873 Church St, San Francisco,CA,94016 +270390,AA Batteries (4-pack),2,3.84,2019-10-20 16:16:00,96 Lake St, Austin,TX,73301 +270391,Apple Airpods Headphones,1,150.0,2019-10-19 18:52:00,94 Spruce St, Austin,TX,73301 +270392,Google Phone,1,600.0,2019-10-11 15:24:00,922 Hickory St, San Francisco,CA,94016 +270392,USB-C Charging Cable,1,11.95,2019-10-11 15:24:00,922 Hickory St, San Francisco,CA,94016 +270393,AAA Batteries (4-pack),2,2.99,2019-10-27 12:50:00,986 11th St, New York City,NY,10001 +270394,AA Batteries (4-pack),1,3.84,2019-10-14 13:45:00,566 9th St, Boston,MA,02215 +270395,USB-C Charging Cable,1,11.95,2019-10-31 22:40:00,221 Ridge St, San Francisco,CA,94016 +270396,USB-C Charging Cable,1,11.95,2019-10-18 18:38:00,819 9th St, Seattle,WA,98101 +270397,Lightning Charging Cable,1,14.95,2019-10-16 16:03:00,626 Sunset St, Los Angeles,CA,90001 +270398,Bose SoundSport Headphones,1,99.99,2019-10-20 19:57:00,474 Madison St, San Francisco,CA,94016 +270399,AA Batteries (4-pack),1,3.84,2019-10-23 17:32:00,779 Washington St, San Francisco,CA,94016 +270400,ThinkPad Laptop,1,999.99,2019-10-19 11:03:00,882 Spruce St, Austin,TX,73301 +270401,Apple Airpods Headphones,1,150.0,2019-10-14 21:37:00,343 Elm St, New York City,NY,10001 +270402,AAA Batteries (4-pack),2,2.99,2019-10-03 09:14:00,312 Lakeview St, San Francisco,CA,94016 +270403,Lightning Charging Cable,1,14.95,2019-10-06 23:25:00,488 Park St, Dallas,TX,75001 +270404,27in FHD Monitor,1,149.99,2019-10-18 12:53:00,54 Willow St, New York City,NY,10001 +270405,Bose SoundSport Headphones,1,99.99,2019-10-10 12:12:00,359 Pine St, Seattle,WA,98101 +270406,USB-C Charging Cable,1,11.95,2019-10-28 19:18:00,170 4th St, San Francisco,CA,94016 +270407,Bose SoundSport Headphones,1,99.99,2019-10-02 16:14:00,734 Jackson St, Dallas,TX,75001 +270408,USB-C Charging Cable,1,11.95,2019-10-27 10:46:00,639 14th St, New York City,NY,10001 +270409,Vareebadd Phone,1,400.0,2019-10-31 21:32:00,693 Lakeview St, Dallas,TX,75001 +270410,Lightning Charging Cable,1,14.95,2019-10-22 07:45:00,950 Wilson St, Portland,OR,97035 +270411,Bose SoundSport Headphones,1,99.99,2019-10-06 13:56:00,291 Lakeview St, San Francisco,CA,94016 +270412,Lightning Charging Cable,1,14.95,2019-10-28 11:07:00,756 Jackson St, Portland,OR,97035 +270413,Apple Airpods Headphones,1,150.0,2019-10-02 09:25:00,130 Johnson St, Atlanta,GA,30301 +270414,27in 4K Gaming Monitor,1,389.99,2019-10-18 23:05:00,401 Washington St, Dallas,TX,75001 +270415,AAA Batteries (4-pack),3,2.99,2019-10-03 05:46:00,312 11th St, Los Angeles,CA,90001 +270416,USB-C Charging Cable,1,11.95,2019-10-25 11:55:00,368 Sunset St, Los Angeles,CA,90001 +270417,AAA Batteries (4-pack),2,2.99,2019-10-22 14:50:00,392 Madison St, San Francisco,CA,94016 +270418,Wired Headphones,1,11.99,2019-10-10 10:30:00,55 Jackson St, Seattle,WA,98101 +270419,Lightning Charging Cable,1,14.95,2019-10-17 21:00:00,488 Wilson St, San Francisco,CA,94016 +270420,34in Ultrawide Monitor,1,379.99,2019-10-10 19:57:00,676 Highland St, San Francisco,CA,94016 +270421,Lightning Charging Cable,1,14.95,2019-10-09 18:16:00,491 Park St, San Francisco,CA,94016 +270422,34in Ultrawide Monitor,1,379.99,2019-10-03 14:19:00,331 4th St, Portland,ME,04101 +270423,AA Batteries (4-pack),1,3.84,2019-10-14 22:51:00,479 Madison St, New York City,NY,10001 +270424,Vareebadd Phone,1,400.0,2019-10-27 06:31:00,183 Washington St, New York City,NY,10001 +270424,Wired Headphones,1,11.99,2019-10-27 06:31:00,183 Washington St, New York City,NY,10001 +270425,Apple Airpods Headphones,1,150.0,2019-10-10 23:17:00,292 Highland St, Los Angeles,CA,90001 +270426,34in Ultrawide Monitor,1,379.99,2019-10-24 13:30:00,626 Hill St, San Francisco,CA,94016 +270427,27in FHD Monitor,1,149.99,2019-10-06 21:33:00,402 Forest St, New York City,NY,10001 +270428,Lightning Charging Cable,1,14.95,2019-10-07 21:01:00,96 Cedar St, New York City,NY,10001 +270429,AAA Batteries (4-pack),1,2.99,2019-10-24 08:18:00,919 Main St, Los Angeles,CA,90001 +270430,Google Phone,1,600.0,2019-10-27 09:38:00,550 7th St, Boston,MA,02215 +270430,Bose SoundSport Headphones,1,99.99,2019-10-27 09:38:00,550 7th St, Boston,MA,02215 +270431,iPhone,1,700.0,2019-10-06 09:07:00,369 9th St, New York City,NY,10001 +270432,AA Batteries (4-pack),2,3.84,2019-10-30 16:20:00,752 Madison St, Atlanta,GA,30301 +270433,USB-C Charging Cable,1,11.95,2019-10-29 20:18:00,941 13th St, Seattle,WA,98101 +270434,Apple Airpods Headphones,1,150.0,2019-10-28 22:01:00,404 Hickory St, Los Angeles,CA,90001 +270435,USB-C Charging Cable,1,11.95,2019-10-28 18:04:00,978 South St, Los Angeles,CA,90001 +270436,34in Ultrawide Monitor,1,379.99,2019-10-12 18:16:00,607 2nd St, Atlanta,GA,30301 +270436,Lightning Charging Cable,1,14.95,2019-10-12 18:16:00,607 2nd St, Atlanta,GA,30301 +270437,USB-C Charging Cable,1,11.95,2019-10-17 14:09:00,423 Madison St, New York City,NY,10001 +270438,AA Batteries (4-pack),1,3.84,2019-10-17 15:13:00,731 Park St, Portland,OR,97035 +270439,Apple Airpods Headphones,1,150.0,2019-10-10 17:07:00,91 Wilson St, Atlanta,GA,30301 +270440,Apple Airpods Headphones,1,150.0,2019-10-07 00:00:00,70 West St, Boston,MA,02215 +270441,USB-C Charging Cable,1,11.95,2019-10-13 19:31:00,533 South St, Dallas,TX,75001 +270442,USB-C Charging Cable,1,11.95,2019-10-14 12:34:00,252 5th St, New York City,NY,10001 +270443,Lightning Charging Cable,1,14.95,2019-10-08 17:49:00,36 14th St, Boston,MA,02215 +270444,Wired Headphones,1,11.99,2019-10-23 22:55:00,487 9th St, Los Angeles,CA,90001 +270445,Apple Airpods Headphones,1,150.0,2019-10-31 15:50:00,39 Maple St, New York City,NY,10001 +270446,ThinkPad Laptop,1,999.99,2019-10-13 15:53:00,465 Main St, New York City,NY,10001 +270447,27in 4K Gaming Monitor,1,389.99,2019-10-12 13:44:00,35 Washington St, Boston,MA,02215 +270448,27in 4K Gaming Monitor,1,389.99,2019-10-28 12:12:00,588 Lakeview St, San Francisco,CA,94016 +270449,Flatscreen TV,1,300.0,2019-10-27 14:42:00,521 Highland St, San Francisco,CA,94016 +270450,27in FHD Monitor,1,149.99,2019-10-03 19:27:00,514 10th St, Austin,TX,73301 +270451,Lightning Charging Cable,1,14.95,2019-10-05 10:20:00,940 9th St, San Francisco,CA,94016 +270452,27in FHD Monitor,1,149.99,2019-10-11 15:42:00,476 6th St, Los Angeles,CA,90001 +270453,Apple Airpods Headphones,1,150.0,2019-10-19 12:28:00,107 Pine St, New York City,NY,10001 +270454,AA Batteries (4-pack),1,3.84,2019-10-05 17:20:00,497 Hill St, Dallas,TX,75001 +270455,USB-C Charging Cable,1,11.95,2019-10-27 19:50:00,255 Meadow St, Los Angeles,CA,90001 +270456,Apple Airpods Headphones,1,150.0,2019-10-16 17:37:00,44 North St, Los Angeles,CA,90001 +270457,iPhone,1,700.0,2019-10-21 09:35:00,340 West St, San Francisco,CA,94016 +270458,34in Ultrawide Monitor,1,379.99,2019-10-16 18:20:00,412 West St, Portland,OR,97035 +270459,34in Ultrawide Monitor,1,379.99,2019-10-02 15:05:00,559 South St, Seattle,WA,98101 +270460,Wired Headphones,1,11.99,2019-10-22 13:50:00,413 Dogwood St, Los Angeles,CA,90001 +270461,iPhone,1,700.0,2019-10-23 16:13:00,437 Main St, San Francisco,CA,94016 +270461,Lightning Charging Cable,1,14.95,2019-10-23 16:13:00,437 Main St, San Francisco,CA,94016 +270462,ThinkPad Laptop,1,999.99,2019-10-09 12:36:00,918 Sunset St, San Francisco,CA,94016 +270463,ThinkPad Laptop,1,999.99,2019-10-07 07:43:00,705 6th St, Dallas,TX,75001 +270464,Apple Airpods Headphones,1,150.0,2019-10-02 00:04:00,588 14th St, Los Angeles,CA,90001 +270465,Apple Airpods Headphones,1,150.0,2019-10-11 10:17:00,426 9th St, Boston,MA,02215 +270466,Bose SoundSport Headphones,2,99.99,2019-10-11 23:54:00,789 Willow St, Los Angeles,CA,90001 +270467,AAA Batteries (4-pack),2,2.99,2019-10-07 12:50:00,808 7th St, Dallas,TX,75001 +270468,AAA Batteries (4-pack),3,2.99,2019-10-24 11:31:00,748 Main St, Portland,OR,97035 +270468,ThinkPad Laptop,1,999.99,2019-10-24 11:31:00,748 Main St, Portland,OR,97035 +270469,34in Ultrawide Monitor,1,379.99,2019-10-10 11:04:00,88 Center St, New York City,NY,10001 +270470,Wired Headphones,1,11.99,2019-10-15 07:11:00,603 10th St, San Francisco,CA,94016 +270471,Lightning Charging Cable,1,14.95,2019-10-16 15:31:00,103 Washington St, San Francisco,CA,94016 +270472,AA Batteries (4-pack),1,3.84,2019-10-20 17:23:00,6 Cedar St, Boston,MA,02215 +270473,34in Ultrawide Monitor,1,379.99,2019-10-17 22:36:00,521 Jefferson St, Atlanta,GA,30301 +270474,AAA Batteries (4-pack),1,2.99,2019-10-13 07:40:00,307 12th St, Boston,MA,02215 +270475,AAA Batteries (4-pack),1,2.99,2019-10-23 19:25:00,935 13th St, New York City,NY,10001 +270476,Macbook Pro Laptop,1,1700.0,2019-10-14 18:53:00,663 Pine St, Los Angeles,CA,90001 +270477,Bose SoundSport Headphones,1,99.99,2019-10-10 13:52:00,146 Spruce St, Atlanta,GA,30301 +270478,USB-C Charging Cable,1,11.95,2019-10-17 10:29:00,946 Spruce St, San Francisco,CA,94016 +270479,AAA Batteries (4-pack),1,2.99,2019-10-07 12:13:00,503 Lake St, Dallas,TX,75001 +270480,Wired Headphones,1,11.99,2019-10-13 18:23:00,891 West St, Los Angeles,CA,90001 +270481,Lightning Charging Cable,1,14.95,2019-10-17 18:52:00,60 Lake St, Austin,TX,73301 +270482,Apple Airpods Headphones,1,150.0,2019-10-22 02:37:00,987 12th St, San Francisco,CA,94016 +270483,AA Batteries (4-pack),1,3.84,2019-10-02 01:22:00,345 Highland St, Los Angeles,CA,90001 +270484,AA Batteries (4-pack),2,3.84,2019-10-25 12:05:00,8 Wilson St, Boston,MA,02215 +270485,20in Monitor,1,109.99,2019-10-31 06:21:00,905 Cedar St, San Francisco,CA,94016 +270486,USB-C Charging Cable,1,11.95,2019-10-21 06:34:00,296 Lakeview St, New York City,NY,10001 +270487,Apple Airpods Headphones,1,150.0,2019-10-13 19:20:00,378 Jefferson St, San Francisco,CA,94016 +270488,Bose SoundSport Headphones,1,99.99,2019-10-21 08:53:00,702 Elm St, Los Angeles,CA,90001 +270489,Lightning Charging Cable,2,14.95,2019-10-20 18:32:00,913 Chestnut St, San Francisco,CA,94016 +270490,Bose SoundSport Headphones,1,99.99,2019-10-03 22:50:00,525 Washington St, Boston,MA,02215 +270491,Apple Airpods Headphones,1,150.0,2019-10-03 17:14:00,160 Madison St, San Francisco,CA,94016 +270492,ThinkPad Laptop,1,999.99,2019-10-24 14:07:00,82 Cedar St, Los Angeles,CA,90001 +270492,USB-C Charging Cable,1,11.95,2019-10-24 14:07:00,82 Cedar St, Los Angeles,CA,90001 +270493,AAA Batteries (4-pack),1,2.99,2019-10-12 21:28:00,514 Main St, Dallas,TX,75001 +270494,Wired Headphones,1,11.99,2019-10-18 10:55:00,494 Cedar St, Los Angeles,CA,90001 +270495,iPhone,1,700.0,2019-10-31 12:34:00,560 Center St, Austin,TX,73301 +270496,Apple Airpods Headphones,1,150.0,2019-10-06 11:13:00,365 Church St, San Francisco,CA,94016 +270497,Apple Airpods Headphones,1,150.0,2019-10-18 09:09:00,771 Main St, Dallas,TX,75001 +270498,Google Phone,1,600.0,2019-10-09 11:29:00,334 Washington St, San Francisco,CA,94016 +270498,Wired Headphones,1,11.99,2019-10-09 11:29:00,334 Washington St, San Francisco,CA,94016 +270499,Lightning Charging Cable,1,14.95,2019-10-26 22:36:00,62 7th St, New York City,NY,10001 +270500,AAA Batteries (4-pack),1,2.99,2019-10-17 09:23:00,798 6th St, Los Angeles,CA,90001 +270501,USB-C Charging Cable,1,11.95,2019-10-20 12:55:00,755 2nd St, Seattle,WA,98101 +270502,Bose SoundSport Headphones,1,99.99,2019-10-28 19:59:00,281 13th St, Los Angeles,CA,90001 +270503,34in Ultrawide Monitor,1,379.99,2019-10-04 11:43:00,308 Dogwood St, New York City,NY,10001 +270504,Google Phone,1,600.0,2019-10-18 08:13:00,274 Adams St, Dallas,TX,75001 +270505,27in FHD Monitor,1,149.99,2019-10-06 07:11:00,772 Elm St, Los Angeles,CA,90001 +270506,Google Phone,1,600.0,2019-10-29 16:49:00,556 2nd St, San Francisco,CA,94016 +270507,Wired Headphones,1,11.99,2019-10-14 12:16:00,503 Dogwood St, Los Angeles,CA,90001 +270508,Lightning Charging Cable,2,14.95,2019-10-14 19:41:00,174 11th St, San Francisco,CA,94016 +270509,Flatscreen TV,1,300.0,2019-10-07 12:57:00,444 7th St, New York City,NY,10001 +270510,Flatscreen TV,1,300.0,2019-10-09 13:20:00,911 Park St, Boston,MA,02215 +270511,34in Ultrawide Monitor,1,379.99,2019-10-31 18:10:00,659 5th St, Portland,OR,97035 +270512,AA Batteries (4-pack),1,3.84,2019-10-23 19:01:00,589 Maple St, Seattle,WA,98101 +270513,27in 4K Gaming Monitor,1,389.99,2019-10-29 00:15:00,589 Hickory St, Austin,TX,73301 +270514,USB-C Charging Cable,1,11.95,2019-10-22 18:24:00,202 Forest St, Dallas,TX,75001 +270515,Wired Headphones,1,11.99,2019-10-11 12:25:00,121 Dogwood St, Austin,TX,73301 +270516,Apple Airpods Headphones,1,150.0,2019-10-14 16:54:00,319 Chestnut St, Austin,TX,73301 +270517,AAA Batteries (4-pack),1,2.99,2019-10-29 13:43:00,266 Elm St, Atlanta,GA,30301 +270518,AA Batteries (4-pack),1,3.84,2019-10-18 19:25:00,969 11th St, New York City,NY,10001 +270519,AA Batteries (4-pack),1,3.84,2019-10-03 13:03:00,608 Pine St, Los Angeles,CA,90001 +270520,AA Batteries (4-pack),2,3.84,2019-10-13 13:41:00,699 Jefferson St, Los Angeles,CA,90001 +270521,Lightning Charging Cable,3,14.95,2019-10-13 20:34:00,17 Spruce St, Boston,MA,02215 +270522,USB-C Charging Cable,1,11.95,2019-10-04 13:03:00,761 2nd St, Atlanta,GA,30301 +270523,AA Batteries (4-pack),1,3.84,2019-10-17 23:22:00,51 Dogwood St, San Francisco,CA,94016 +270524,Lightning Charging Cable,1,14.95,2019-10-27 10:28:00,820 6th St, San Francisco,CA,94016 +270525,USB-C Charging Cable,1,11.95,2019-10-22 20:47:00,293 North St, Los Angeles,CA,90001 +270526,Bose SoundSport Headphones,1,99.99,2019-10-01 05:11:00,973 9th St, Los Angeles,CA,90001 +270527,27in FHD Monitor,1,149.99,2019-10-19 19:40:00,788 2nd St, Los Angeles,CA,90001 +270528,Bose SoundSport Headphones,1,99.99,2019-10-26 22:06:00,793 11th St, San Francisco,CA,94016 +270529,AA Batteries (4-pack),1,3.84,2019-10-28 22:30:00,776 4th St, Los Angeles,CA,90001 +270530,27in 4K Gaming Monitor,1,389.99,2019-10-07 09:47:00,617 4th St, Austin,TX,73301 +270531,34in Ultrawide Monitor,1,379.99,2019-10-13 08:50:00,693 8th St, Boston,MA,02215 +270532,AAA Batteries (4-pack),4,2.99,2019-10-08 14:31:00,746 1st St, San Francisco,CA,94016 +270533,USB-C Charging Cable,1,11.95,2019-10-20 11:48:00,897 Church St, Portland,OR,97035 +270534,Flatscreen TV,1,300.0,2019-10-01 10:57:00,829 Pine St, San Francisco,CA,94016 +270535,Google Phone,1,600.0,2019-10-18 11:58:00,859 13th St, Atlanta,GA,30301 +270535,USB-C Charging Cable,1,11.95,2019-10-18 11:58:00,859 13th St, Atlanta,GA,30301 +270536,Lightning Charging Cable,1,14.95,2019-10-05 16:16:00,234 Jefferson St, Los Angeles,CA,90001 +270537,USB-C Charging Cable,1,11.95,2019-10-06 18:59:00,381 9th St, Boston,MA,02215 +270538,27in FHD Monitor,1,149.99,2019-10-31 16:46:00,664 North St, New York City,NY,10001 +270539,Bose SoundSport Headphones,1,99.99,2019-10-12 08:16:00,218 Cedar St, San Francisco,CA,94016 +270540,AAA Batteries (4-pack),1,2.99,2019-10-18 16:16:00,253 Park St, Dallas,TX,75001 +270541,Lightning Charging Cable,1,14.95,2019-10-27 16:09:00,511 Lakeview St, San Francisco,CA,94016 +270542,USB-C Charging Cable,1,11.95,2019-10-26 13:45:00,637 Johnson St, San Francisco,CA,94016 +270543,AAA Batteries (4-pack),4,2.99,2019-10-29 13:37:00,946 Church St, New York City,NY,10001 +270544,Macbook Pro Laptop,1,1700.0,2019-10-01 12:58:00,753 Jefferson St, Los Angeles,CA,90001 +270545,Lightning Charging Cable,1,14.95,2019-10-14 08:22:00,71 Maple St, Portland,ME,04101 +270546,27in FHD Monitor,1,149.99,2019-10-28 21:15:00,988 Jackson St, Seattle,WA,98101 +270547,34in Ultrawide Monitor,1,379.99,2019-10-12 16:56:00,931 Church St, San Francisco,CA,94016 +270547,USB-C Charging Cable,1,11.95,2019-10-12 16:56:00,931 Church St, San Francisco,CA,94016 +270548,20in Monitor,1,109.99,2019-10-07 10:57:00,339 Lakeview St, Dallas,TX,75001 +270549,Macbook Pro Laptop,1,1700.0,2019-10-02 20:15:00,993 Hickory St, Los Angeles,CA,90001 +270550,iPhone,1,700.0,2019-10-16 19:43:00,569 Lake St, New York City,NY,10001 +270551,USB-C Charging Cable,1,11.95,2019-10-25 22:41:00,543 6th St, Atlanta,GA,30301 +270552,AA Batteries (4-pack),1,3.84,2019-10-18 13:12:00,257 Madison St, Los Angeles,CA,90001 +270553,AA Batteries (4-pack),1,3.84,2019-10-08 13:04:00,168 2nd St, Boston,MA,02215 +270554,Apple Airpods Headphones,1,150.0,2019-10-28 12:42:00,766 Lincoln St, Los Angeles,CA,90001 +270555,USB-C Charging Cable,1,11.95,2019-10-14 16:26:00,226 Washington St, Dallas,TX,75001 +270556,USB-C Charging Cable,1,11.95,2019-10-06 00:58:00,291 River St, San Francisco,CA,94016 +270557,AAA Batteries (4-pack),1,2.99,2019-10-28 18:05:00,570 9th St, Los Angeles,CA,90001 +270558,Vareebadd Phone,1,400.0,2019-10-09 08:24:00,841 6th St, San Francisco,CA,94016 +270558,Wired Headphones,1,11.99,2019-10-09 08:24:00,841 6th St, San Francisco,CA,94016 +270559,Wired Headphones,1,11.99,2019-10-22 11:09:00,547 2nd St, Austin,TX,73301 +270560,Apple Airpods Headphones,1,150.0,2019-10-02 11:47:00,443 Johnson St, New York City,NY,10001 +270561,USB-C Charging Cable,1,11.95,2019-10-03 10:44:00,613 Washington St, Los Angeles,CA,90001 +270562,Lightning Charging Cable,1,14.95,2019-10-10 12:06:00,191 12th St, Dallas,TX,75001 +270563,27in FHD Monitor,1,149.99,2019-10-04 19:24:00,891 Center St, Los Angeles,CA,90001 +270564,Flatscreen TV,1,300.0,2019-10-26 15:03:00,153 10th St, New York City,NY,10001 +270565,34in Ultrawide Monitor,1,379.99,2019-10-24 10:39:00,993 Adams St, San Francisco,CA,94016 +270566,27in FHD Monitor,1,149.99,2019-10-13 09:27:00,929 Lakeview St, New York City,NY,10001 +270567,Lightning Charging Cable,1,14.95,2019-10-25 21:39:00,705 Lake St, Seattle,WA,98101 +270568,27in FHD Monitor,1,149.99,2019-10-21 16:42:00,398 Elm St, Portland,OR,97035 +270569,AAA Batteries (4-pack),1,2.99,2019-10-17 14:43:00,172 6th St, New York City,NY,10001 +270570,iPhone,1,700.0,2019-10-02 10:15:00,625 Center St, Los Angeles,CA,90001 +270571,27in 4K Gaming Monitor,1,389.99,2019-10-25 11:24:00,335 Lakeview St, New York City,NY,10001 +270572,Apple Airpods Headphones,1,150.0,2019-10-10 11:23:00,594 4th St, San Francisco,CA,94016 +270573,Lightning Charging Cable,1,14.95,2019-10-25 18:13:00,995 Cherry St, Portland,OR,97035 +270574,27in 4K Gaming Monitor,1,389.99,2019-10-21 08:02:00,334 Jefferson St, San Francisco,CA,94016 +270575,Bose SoundSport Headphones,1,99.99,2019-10-13 19:21:00,803 Lincoln St, Portland,ME,04101 +270576,AAA Batteries (4-pack),1,2.99,2019-10-15 13:25:00,449 Cherry St, Los Angeles,CA,90001 +270577,Google Phone,1,600.0,2019-10-17 15:31:00,696 Lake St, San Francisco,CA,94016 +270578,27in FHD Monitor,1,149.99,2019-10-20 12:37:00,435 9th St, Atlanta,GA,30301 +270579,Apple Airpods Headphones,1,150.0,2019-10-25 20:43:00,939 Maple St, Dallas,TX,75001 +270580,USB-C Charging Cable,1,11.95,2019-10-29 14:49:00,497 Pine St, San Francisco,CA,94016 +270581,Macbook Pro Laptop,1,1700.0,2019-10-13 18:53:00,492 Elm St, Atlanta,GA,30301 +270581,27in 4K Gaming Monitor,1,389.99,2019-10-13 18:53:00,492 Elm St, Atlanta,GA,30301 +270582,AAA Batteries (4-pack),2,2.99,2019-10-26 21:05:00,842 Park St, Seattle,WA,98101 +270583,Lightning Charging Cable,1,14.95,2019-10-14 22:13:00,138 9th St, New York City,NY,10001 +270584,AAA Batteries (4-pack),3,2.99,2019-10-04 20:56:00,677 Center St, Atlanta,GA,30301 +270585,AA Batteries (4-pack),2,3.84,2019-10-11 21:50:00,9 Elm St, Atlanta,GA,30301 +270586,Lightning Charging Cable,1,14.95,2019-10-17 07:24:00,944 Madison St, Seattle,WA,98101 +270587,34in Ultrawide Monitor,1,379.99,2019-10-05 08:46:00,329 4th St, New York City,NY,10001 +270588,USB-C Charging Cable,1,11.95,2019-10-26 16:44:00,380 Cherry St, Atlanta,GA,30301 +270589,AA Batteries (4-pack),1,3.84,2019-10-06 18:53:00,217 Cedar St, San Francisco,CA,94016 +270590,27in 4K Gaming Monitor,1,389.99,2019-10-31 13:54:00,656 Maple St, Portland,OR,97035 +270591,Macbook Pro Laptop,1,1700.0,2019-10-31 19:46:00,706 South St, Los Angeles,CA,90001 +270592,AAA Batteries (4-pack),2,2.99,2019-10-01 08:18:00,261 11th St, Austin,TX,73301 +270593,USB-C Charging Cable,1,11.95,2019-10-31 15:40:00,882 6th St, Los Angeles,CA,90001 +270594,Wired Headphones,1,11.99,2019-10-08 20:35:00,704 Church St, Dallas,TX,75001 +270595,AA Batteries (4-pack),1,3.84,2019-10-10 12:29:00,927 Wilson St, Seattle,WA,98101 +270596,AA Batteries (4-pack),1,3.84,2019-10-06 19:50:00,884 Meadow St, Seattle,WA,98101 +270597,Lightning Charging Cable,1,14.95,2019-10-02 11:01:00,175 Center St, San Francisco,CA,94016 +270598,AAA Batteries (4-pack),1,2.99,2019-10-14 20:10:00,32 8th St, San Francisco,CA,94016 +270599,Bose SoundSport Headphones,1,99.99,2019-10-03 15:59:00,283 12th St, Dallas,TX,75001 +270600,USB-C Charging Cable,1,11.95,2019-10-14 21:42:00,22 Ridge St, Boston,MA,02215 +270601,USB-C Charging Cable,2,11.95,2019-10-21 23:43:00,391 Pine St, Austin,TX,73301 +270602,Google Phone,1,600.0,2019-10-01 15:15:00,637 Meadow St, Atlanta,GA,30301 +270603,AAA Batteries (4-pack),1,2.99,2019-10-25 06:58:00,634 South St, Atlanta,GA,30301 +270604,Apple Airpods Headphones,1,150.0,2019-10-21 17:33:00,62 Meadow St, Portland,OR,97035 +270605,AA Batteries (4-pack),1,3.84,2019-10-19 16:47:00,89 14th St, Atlanta,GA,30301 +270606,AAA Batteries (4-pack),3,2.99,2019-10-16 17:40:00,385 South St, San Francisco,CA,94016 +270607,AAA Batteries (4-pack),2,2.99,2019-10-31 13:07:00,659 14th St, Boston,MA,02215 +270608,Macbook Pro Laptop,1,1700.0,2019-10-09 20:02:00,987 Lake St, San Francisco,CA,94016 +270609,Macbook Pro Laptop,1,1700.0,2019-10-07 01:04:00,283 Spruce St, Los Angeles,CA,90001 +270610,Flatscreen TV,1,300.0,2019-10-05 13:14:00,276 5th St, San Francisco,CA,94016 +270611,34in Ultrawide Monitor,1,379.99,2019-10-26 19:07:00,195 Hill St, Portland,OR,97035 +270612,Apple Airpods Headphones,1,150.0,2019-10-01 12:14:00,50 Lincoln St, Atlanta,GA,30301 +270613,AA Batteries (4-pack),1,3.84,2019-10-02 19:06:00,205 Jackson St, Los Angeles,CA,90001 +270614,Google Phone,1,600.0,2019-10-21 15:50:00,417 Wilson St, New York City,NY,10001 +270615,USB-C Charging Cable,1,11.95,2019-10-23 12:54:00,366 8th St, San Francisco,CA,94016 +270616,Bose SoundSport Headphones,1,99.99,2019-10-17 02:55:00,176 North St, San Francisco,CA,94016 +270617,USB-C Charging Cable,1,11.95,2019-10-02 11:18:00,51 Park St, Boston,MA,02215 +270618,Wired Headphones,1,11.99,2019-10-26 14:49:00,531 7th St, Boston,MA,02215 +270619,AAA Batteries (4-pack),2,2.99,2019-10-03 09:21:00,238 14th St, Atlanta,GA,30301 +270620,USB-C Charging Cable,1,11.95,2019-10-14 07:02:00,834 Meadow St, San Francisco,CA,94016 +270621,USB-C Charging Cable,1,11.95,2019-10-03 06:47:00,476 North St, New York City,NY,10001 +270622,LG Washing Machine,1,600.0,2019-10-11 10:00:00,771 Park St, New York City,NY,10001 +270623,Lightning Charging Cable,1,14.95,2019-10-27 14:42:00,438 Elm St, Boston,MA,02215 +270624,USB-C Charging Cable,1,11.95,2019-10-19 10:41:00,998 Forest St, Atlanta,GA,30301 +270625,Bose SoundSport Headphones,1,99.99,2019-10-08 23:12:00,457 9th St, Los Angeles,CA,90001 +270626,Apple Airpods Headphones,1,150.0,2019-10-09 12:12:00,568 Maple St, New York City,NY,10001 +270627,AAA Batteries (4-pack),2,2.99,2019-10-05 17:57:00,193 7th St, Atlanta,GA,30301 +270628,Macbook Pro Laptop,1,1700.0,2019-10-04 00:03:00,845 Jefferson St, Los Angeles,CA,90001 +270629,Google Phone,1,600.0,2019-10-20 23:05:00,415 Lake St, Los Angeles,CA,90001 +270629,USB-C Charging Cable,1,11.95,2019-10-20 23:05:00,415 Lake St, Los Angeles,CA,90001 +270630,Google Phone,1,600.0,2019-10-06 20:34:00,280 5th St, San Francisco,CA,94016 +270631,AA Batteries (4-pack),1,3.84,2019-10-22 18:14:00,362 Hickory St, Atlanta,GA,30301 +270632,Lightning Charging Cable,1,14.95,2019-10-20 10:13:00,583 1st St, New York City,NY,10001 +270633,AA Batteries (4-pack),2,3.84,2019-10-23 17:48:00,706 Wilson St, Boston,MA,02215 +270634,Lightning Charging Cable,1,14.95,2019-10-19 22:59:00,237 Wilson St, Dallas,TX,75001 +270635,AA Batteries (4-pack),1,3.84,2019-10-07 08:49:00,695 Lakeview St, Seattle,WA,98101 +270636,USB-C Charging Cable,1,11.95,2019-10-04 16:18:00,756 Center St, San Francisco,CA,94016 +270637,USB-C Charging Cable,1,11.95,2019-10-22 20:46:00,11 10th St, Boston,MA,02215 +270638,AA Batteries (4-pack),1,3.84,2019-10-03 20:23:00,611 Pine St, Dallas,TX,75001 +270639,34in Ultrawide Monitor,1,379.99,2019-10-11 15:31:00,601 Jackson St, San Francisco,CA,94016 +270640,USB-C Charging Cable,2,11.95,2019-10-10 18:36:00,906 Jackson St, New York City,NY,10001 +270641,Wired Headphones,1,11.99,2019-10-15 23:11:00,611 Sunset St, San Francisco,CA,94016 +270642,AAA Batteries (4-pack),4,2.99,2019-10-25 12:35:00,336 Adams St, Atlanta,GA,30301 +270643,Lightning Charging Cable,1,14.95,2019-10-15 12:58:00,222 West St, San Francisco,CA,94016 +270644,USB-C Charging Cable,1,11.95,2019-10-25 00:00:00,765 Cherry St, New York City,NY,10001 +270645,Lightning Charging Cable,1,14.95,2019-10-07 20:06:00,802 Ridge St, New York City,NY,10001 +270646,iPhone,1,700.0,2019-10-10 16:39:00,630 14th St, San Francisco,CA,94016 +270646,Apple Airpods Headphones,1,150.0,2019-10-10 16:39:00,630 14th St, San Francisco,CA,94016 +270647,USB-C Charging Cable,2,11.95,2019-10-03 14:24:00,179 Park St, Seattle,WA,98101 +270648,AAA Batteries (4-pack),1,2.99,2019-10-28 11:05:00,450 Lincoln St, Austin,TX,73301 +270649,27in 4K Gaming Monitor,1,389.99,2019-10-22 23:27:00,189 West St, San Francisco,CA,94016 +270650,USB-C Charging Cable,1,11.95,2019-10-02 20:36:00,832 Forest St, San Francisco,CA,94016 +270651,27in FHD Monitor,1,149.99,2019-10-08 09:55:00,533 Pine St, Dallas,TX,75001 +270652,Wired Headphones,1,11.99,2019-10-04 11:45:00,568 Jefferson St, Austin,TX,73301 +270653,USB-C Charging Cable,1,11.95,2019-10-30 18:30:00,698 Highland St, Los Angeles,CA,90001 +270654,Lightning Charging Cable,1,14.95,2019-10-15 13:15:00,363 Elm St, Boston,MA,02215 +270655,Macbook Pro Laptop,1,1700.0,2019-10-12 10:33:00,462 Cedar St, Dallas,TX,75001 +270656,27in 4K Gaming Monitor,1,389.99,2019-10-25 16:38:00,551 Center St, Portland,OR,97035 +270657,AAA Batteries (4-pack),1,2.99,2019-10-09 14:18:00,689 Park St, Los Angeles,CA,90001 +270658,Flatscreen TV,1,300.0,2019-10-08 08:23:00,872 4th St, San Francisco,CA,94016 +270659,AAA Batteries (4-pack),1,2.99,2019-10-24 08:48:00,944 Pine St, San Francisco,CA,94016 +270660,AAA Batteries (4-pack),3,2.99,2019-10-19 09:48:00,187 Wilson St, Los Angeles,CA,90001 +270661,USB-C Charging Cable,2,11.95,2019-10-31 23:03:00,652 Hill St, Atlanta,GA,30301 +270662,AA Batteries (4-pack),1,3.84,2019-10-01 14:00:00,913 Highland St, Los Angeles,CA,90001 +270663,Flatscreen TV,1,300.0,2019-10-19 20:20:00,400 Lakeview St, San Francisco,CA,94016 +270664,Apple Airpods Headphones,1,150.0,2019-10-06 19:20:00,32 14th St, Seattle,WA,98101 +270665,AA Batteries (4-pack),1,3.84,2019-10-24 03:57:00,206 14th St, New York City,NY,10001 +270666,Lightning Charging Cable,1,14.95,2019-10-13 17:56:00,86 4th St, Austin,TX,73301 +270667,Lightning Charging Cable,2,14.95,2019-10-14 19:02:00,105 Sunset St, Portland,OR,97035 +270668,USB-C Charging Cable,1,11.95,2019-10-04 16:24:00,508 Center St, San Francisco,CA,94016 +270669,Wired Headphones,2,11.99,2019-10-28 16:46:00,338 Lakeview St, Dallas,TX,75001 +270670,Google Phone,1,600.0,2019-10-20 21:15:00,276 Jefferson St, Dallas,TX,75001 +270670,Wired Headphones,1,11.99,2019-10-20 21:15:00,276 Jefferson St, Dallas,TX,75001 +270671,iPhone,1,700.0,2019-10-13 08:38:00,431 Pine St, Los Angeles,CA,90001 +270672,Wired Headphones,1,11.99,2019-10-07 10:51:00,995 Ridge St, Seattle,WA,98101 +270673,Lightning Charging Cable,1,14.95,2019-10-07 15:21:00,185 Pine St, New York City,NY,10001 +270674,Wired Headphones,1,11.99,2019-10-28 09:32:00,142 11th St, Los Angeles,CA,90001 +270675,Bose SoundSport Headphones,1,99.99,2019-10-01 18:33:00,58 Walnut St, Seattle,WA,98101 +270676,iPhone,1,700.0,2019-10-20 13:39:00,693 5th St, San Francisco,CA,94016 +270676,Wired Headphones,1,11.99,2019-10-20 13:39:00,693 5th St, San Francisco,CA,94016 +270677,AAA Batteries (4-pack),1,2.99,2019-10-06 17:11:00,479 Adams St, New York City,NY,10001 +270678,AAA Batteries (4-pack),2,2.99,2019-10-24 12:01:00,814 South St, Boston,MA,02215 +270679,27in FHD Monitor,1,149.99,2019-10-03 15:11:00,15 Lakeview St, Dallas,TX,75001 +270680,USB-C Charging Cable,1,11.95,2019-10-05 09:00:00,921 8th St, New York City,NY,10001 +270681,Apple Airpods Headphones,1,150.0,2019-10-20 22:39:00,272 5th St, Dallas,TX,75001 +270682,USB-C Charging Cable,1,11.95,2019-10-05 10:42:00,367 Spruce St, San Francisco,CA,94016 +270683,AA Batteries (4-pack),1,3.84,2019-10-21 11:44:00,141 Center St, San Francisco,CA,94016 +270684,20in Monitor,2,109.99,2019-10-16 09:04:00,77 Elm St, San Francisco,CA,94016 +270685,34in Ultrawide Monitor,1,379.99,2019-10-21 16:21:00,407 9th St, San Francisco,CA,94016 +270686,USB-C Charging Cable,1,11.95,2019-10-16 19:35:00,791 Maple St, Dallas,TX,75001 +270687,AA Batteries (4-pack),1,3.84,2019-10-05 16:33:00,732 Church St, New York City,NY,10001 +270688,AAA Batteries (4-pack),1,2.99,2019-10-05 09:12:00,735 Pine St, Boston,MA,02215 +270689,USB-C Charging Cable,1,11.95,2019-10-10 09:53:00,684 River St, Boston,MA,02215 +270690,Lightning Charging Cable,2,14.95,2019-10-27 10:20:00,958 Dogwood St, Los Angeles,CA,90001 +270691,USB-C Charging Cable,1,11.95,2019-10-09 14:34:00,622 Lake St, San Francisco,CA,94016 +270692,Macbook Pro Laptop,1,1700.0,2019-10-11 11:31:00,154 Lake St, New York City,NY,10001 +270693,Lightning Charging Cable,1,14.95,2019-10-08 14:42:00,980 Johnson St, Los Angeles,CA,90001 +270694,USB-C Charging Cable,2,11.95,2019-10-22 08:55:00,954 Forest St, San Francisco,CA,94016 +270695,Lightning Charging Cable,1,14.95,2019-10-14 18:03:00,687 Madison St, San Francisco,CA,94016 +270696,AA Batteries (4-pack),2,3.84,2019-10-18 23:21:00,937 Lincoln St, San Francisco,CA,94016 +270697,USB-C Charging Cable,1,11.95,2019-10-22 18:48:00,452 Lakeview St, San Francisco,CA,94016 +270697,27in FHD Monitor,1,149.99,2019-10-22 18:48:00,452 Lakeview St, San Francisco,CA,94016 +270698,Lightning Charging Cable,1,14.95,2019-10-26 18:59:00,926 Forest St, San Francisco,CA,94016 +270699,Bose SoundSport Headphones,1,99.99,2019-10-12 13:23:00,349 Lakeview St, Atlanta,GA,30301 +270700,Bose SoundSport Headphones,1,99.99,2019-10-08 13:24:00,897 Forest St, San Francisco,CA,94016 +270701,Macbook Pro Laptop,1,1700.0,2019-10-05 18:16:00,503 Chestnut St, San Francisco,CA,94016 +270702,20in Monitor,1,109.99,2019-10-05 17:46:00,641 Cherry St, New York City,NY,10001 +270703,AAA Batteries (4-pack),1,2.99,2019-10-07 15:26:00,290 7th St, San Francisco,CA,94016 +270704,Apple Airpods Headphones,1,150.0,2019-10-06 17:23:00,737 9th St, Los Angeles,CA,90001 +270705,20in Monitor,1,109.99,2019-10-21 14:02:00,402 Johnson St, Los Angeles,CA,90001 +270706,20in Monitor,1,109.99,2019-10-01 10:57:00,273 11th St, San Francisco,CA,94016 +270707,Bose SoundSport Headphones,1,99.99,2019-10-12 18:42:00,899 Church St, Los Angeles,CA,90001 +270708,Apple Airpods Headphones,1,150.0,2019-10-12 12:18:00,257 Ridge St, New York City,NY,10001 +270709,AAA Batteries (4-pack),1,2.99,2019-10-31 12:49:00,259 Walnut St, Boston,MA,02215 +270710,USB-C Charging Cable,1,11.95,2019-10-08 17:09:00,663 Ridge St, Atlanta,GA,30301 +270711,Lightning Charging Cable,1,14.95,2019-10-17 09:26:00,106 11th St, San Francisco,CA,94016 +270712,AAA Batteries (4-pack),1,2.99,2019-10-08 11:24:00,728 Center St, Dallas,TX,75001 +270713,AAA Batteries (4-pack),1,2.99,2019-10-30 11:57:00,427 Lincoln St, Atlanta,GA,30301 +270714,Bose SoundSport Headphones,1,99.99,2019-10-30 18:15:00,185 Park St, San Francisco,CA,94016 +270715,AA Batteries (4-pack),2,3.84,2019-10-20 13:41:00,637 Dogwood St, Portland,OR,97035 +270716,27in 4K Gaming Monitor,1,389.99,2019-10-30 01:44:00,659 9th St, New York City,NY,10001 +270717,34in Ultrawide Monitor,1,379.99,2019-10-16 20:09:00,654 Chestnut St, San Francisco,CA,94016 +270718,Bose SoundSport Headphones,1,99.99,2019-10-24 12:45:00,110 6th St, New York City,NY,10001 +270719,Lightning Charging Cable,2,14.95,2019-10-06 22:24:00,597 Elm St, Los Angeles,CA,90001 +270720,AAA Batteries (4-pack),5,2.99,2019-10-18 17:58:00,550 Center St, New York City,NY,10001 +270721,Bose SoundSport Headphones,1,99.99,2019-10-18 15:49:00,999 8th St, Los Angeles,CA,90001 +270722,Lightning Charging Cable,1,14.95,2019-10-31 16:13:00,842 Dogwood St, New York City,NY,10001 +270723,27in 4K Gaming Monitor,1,389.99,2019-10-12 16:45:00,281 Chestnut St, New York City,NY,10001 +270724,USB-C Charging Cable,1,11.95,2019-10-29 23:00:00,319 Dogwood St, Los Angeles,CA,90001 +270725,Apple Airpods Headphones,1,150.0,2019-10-15 14:14:00,737 Willow St, Dallas,TX,75001 +270726,AA Batteries (4-pack),1,3.84,2019-10-31 06:48:00,13 Washington St, Boston,MA,02215 +270727,USB-C Charging Cable,1,11.95,2019-10-19 08:05:00,511 Wilson St, Seattle,WA,98101 +270728,Google Phone,1,600.0,2019-10-18 10:09:00,337 12th St, San Francisco,CA,94016 +270728,USB-C Charging Cable,1,11.95,2019-10-18 10:09:00,337 12th St, San Francisco,CA,94016 +270728,Wired Headphones,1,11.99,2019-10-18 10:09:00,337 12th St, San Francisco,CA,94016 +270729,iPhone,1,700.0,2019-10-02 13:53:00,563 West St, Atlanta,GA,30301 +270730,AA Batteries (4-pack),1,3.84,2019-10-14 00:53:00,674 North St, Seattle,WA,98101 +270731,AAA Batteries (4-pack),1,2.99,2019-10-18 07:13:00,926 Madison St, New York City,NY,10001 +270732,34in Ultrawide Monitor,1,379.99,2019-10-24 16:15:00,248 Jackson St, San Francisco,CA,94016 +270732,Apple Airpods Headphones,1,150.0,2019-10-24 16:15:00,248 Jackson St, San Francisco,CA,94016 +270733,Lightning Charging Cable,1,14.95,2019-10-01 15:50:00,16 6th St, Atlanta,GA,30301 +270734,Wired Headphones,1,11.99,2019-10-30 22:07:00,791 Wilson St, San Francisco,CA,94016 +270735,Google Phone,1,600.0,2019-10-02 23:31:00,662 Chestnut St, New York City,NY,10001 +270736,Bose SoundSport Headphones,1,99.99,2019-10-08 12:34:00,890 Meadow St, Los Angeles,CA,90001 +270737,Wired Headphones,1,11.99,2019-10-10 14:11:00,831 Lake St, Boston,MA,02215 +270738,27in FHD Monitor,1,149.99,2019-10-05 17:22:00,790 Center St, San Francisco,CA,94016 +270739,Macbook Pro Laptop,1,1700.0,2019-10-07 17:07:00,414 Main St, Atlanta,GA,30301 +270740,USB-C Charging Cable,1,11.95,2019-10-29 12:10:00,404 14th St, Boston,MA,02215 +270741,34in Ultrawide Monitor,1,379.99,2019-10-31 09:57:00,443 Center St, Boston,MA,02215 +270742,USB-C Charging Cable,1,11.95,2019-10-21 15:20:00,22 Ridge St, Los Angeles,CA,90001 +270743,27in FHD Monitor,1,149.99,2019-10-27 20:29:00,862 Spruce St, San Francisco,CA,94016 +270744,iPhone,1,700.0,2019-10-07 11:31:00,615 Park St, Boston,MA,02215 +270745,iPhone,1,700.0,2019-10-12 16:01:00,260 Adams St, San Francisco,CA,94016 +270746,27in FHD Monitor,1,149.99,2019-10-17 18:24:00,217 Church St, New York City,NY,10001 +270747,Bose SoundSport Headphones,1,99.99,2019-10-20 10:41:00,2 West St, Boston,MA,02215 +270748,Bose SoundSport Headphones,1,99.99,2019-10-25 10:45:00,63 4th St, San Francisco,CA,94016 +270749,Flatscreen TV,1,300.0,2019-10-21 17:58:00,834 1st St, Dallas,TX,75001 +270750,iPhone,1,700.0,2019-10-08 21:27:00,21 13th St, San Francisco,CA,94016 +270751,ThinkPad Laptop,1,999.99,2019-10-15 17:44:00,151 Jefferson St, Boston,MA,02215 +270752,USB-C Charging Cable,1,11.95,2019-10-19 17:31:00,271 Walnut St, San Francisco,CA,94016 +270753,Bose SoundSport Headphones,1,99.99,2019-10-22 15:20:00,580 Center St, Portland,OR,97035 +270754,AAA Batteries (4-pack),3,2.99,2019-10-10 07:57:00,351 7th St, Seattle,WA,98101 +270755,AA Batteries (4-pack),1,3.84,2019-10-24 18:45:00,305 North St, Seattle,WA,98101 +270756,AAA Batteries (4-pack),3,2.99,2019-10-26 09:53:00,959 Elm St, Dallas,TX,75001 +270757,Wired Headphones,1,11.99,2019-10-25 16:58:00,26 Park St, New York City,NY,10001 +270758,ThinkPad Laptop,1,999.99,2019-10-22 23:45:00,458 Adams St, New York City,NY,10001 +270759,Google Phone,1,600.0,2019-10-04 18:32:00,944 Elm St, Dallas,TX,75001 +270760,USB-C Charging Cable,1,11.95,2019-10-31 17:35:00,255 Church St, San Francisco,CA,94016 +270761,34in Ultrawide Monitor,1,379.99,2019-10-28 11:55:00,546 Jackson St, Portland,ME,04101 +270762,34in Ultrawide Monitor,1,379.99,2019-10-06 22:45:00,263 Hill St, San Francisco,CA,94016 +270763,Flatscreen TV,1,300.0,2019-10-30 12:17:00,659 Madison St, San Francisco,CA,94016 +270764,USB-C Charging Cable,1,11.95,2019-10-30 15:39:00,816 10th St, New York City,NY,10001 +270765,Flatscreen TV,1,300.0,2019-10-11 21:08:00,625 Chestnut St, San Francisco,CA,94016 +270766,AAA Batteries (4-pack),2,2.99,2019-10-27 19:30:00,46 Meadow St, Boston,MA,02215 +270767,AAA Batteries (4-pack),1,2.99,2019-10-16 20:37:00,660 13th St, San Francisco,CA,94016 +270768,Apple Airpods Headphones,1,150.0,2019-10-06 04:10:00,705 Adams St, Los Angeles,CA,90001 +270769,Apple Airpods Headphones,1,150.0,2019-10-11 00:06:00,36 4th St, Austin,TX,73301 +270770,USB-C Charging Cable,1,11.95,2019-10-31 11:55:00,820 South St, Los Angeles,CA,90001 +270771,Lightning Charging Cable,2,14.95,2019-10-20 17:21:00,778 Center St, Los Angeles,CA,90001 +270772,20in Monitor,1,109.99,2019-10-03 13:44:00,653 Park St, Boston,MA,02215 +270773,AAA Batteries (4-pack),1,2.99,2019-10-03 14:38:00,971 5th St, Boston,MA,02215 +270774,27in FHD Monitor,1,149.99,2019-10-22 09:48:00,812 Sunset St, Los Angeles,CA,90001 +270775,USB-C Charging Cable,1,11.95,2019-10-16 08:45:00,928 Cedar St, Boston,MA,02215 +270776,Lightning Charging Cable,1,14.95,2019-10-15 22:44:00,829 12th St, San Francisco,CA,94016 +270777,USB-C Charging Cable,1,11.95,2019-10-17 17:51:00,698 10th St, Portland,OR,97035 +270778,27in FHD Monitor,1,149.99,2019-10-30 22:22:00,370 Ridge St, Seattle,WA,98101 +270779,AA Batteries (4-pack),1,3.84,2019-10-24 13:39:00,705 Elm St, San Francisco,CA,94016 +270780,USB-C Charging Cable,1,11.95,2019-10-09 15:27:00,871 10th St, Seattle,WA,98101 +270781,Apple Airpods Headphones,1,150.0,2019-10-22 19:28:00,27 Meadow St, Los Angeles,CA,90001 +270782,Wired Headphones,2,11.99,2019-10-09 19:34:00,17 9th St, Los Angeles,CA,90001 +270783,AAA Batteries (4-pack),2,2.99,2019-10-21 16:42:00,61 Pine St, San Francisco,CA,94016 +270784,AA Batteries (4-pack),2,3.84,2019-10-27 18:46:00,282 South St, New York City,NY,10001 +270785,AAA Batteries (4-pack),1,2.99,2019-10-02 18:13:00,565 Hickory St, Portland,OR,97035 +270786,27in FHD Monitor,1,149.99,2019-10-31 11:37:00,105 Hill St, Atlanta,GA,30301 +270787,27in FHD Monitor,1,149.99,2019-10-23 15:01:00,765 12th St, Seattle,WA,98101 +270788,Flatscreen TV,1,300.0,2019-10-23 01:07:00,424 Maple St, San Francisco,CA,94016 +270789,Bose SoundSport Headphones,1,99.99,2019-10-20 10:29:00,346 Maple St, Seattle,WA,98101 +270790,USB-C Charging Cable,1,11.95,2019-10-26 09:14:00,120 River St, Atlanta,GA,30301 +270791,Google Phone,1,600.0,2019-10-08 13:36:00,363 Meadow St, Dallas,TX,75001 +270792,Wired Headphones,1,11.99,2019-10-18 16:35:00,858 Madison St, Boston,MA,02215 +270793,27in 4K Gaming Monitor,1,389.99,2019-10-28 09:59:00,319 Maple St, Boston,MA,02215 +270794,27in 4K Gaming Monitor,1,389.99,2019-10-25 11:02:00,671 Meadow St, Seattle,WA,98101 +270795,Macbook Pro Laptop,1,1700.0,2019-10-26 14:57:00,335 Madison St, Dallas,TX,75001 +270796,USB-C Charging Cable,1,11.95,2019-10-21 16:18:00,843 Jefferson St, Los Angeles,CA,90001 +270797,USB-C Charging Cable,1,11.95,2019-10-05 17:30:00,677 Cherry St, Austin,TX,73301 +270798,AAA Batteries (4-pack),3,2.99,2019-10-09 13:27:00,258 Spruce St, Atlanta,GA,30301 +270799,Wired Headphones,1,11.99,2019-10-20 11:00:00,876 Jackson St, New York City,NY,10001 +270800,AAA Batteries (4-pack),1,2.99,2019-10-21 19:22:00,668 6th St, San Francisco,CA,94016 +270801,Lightning Charging Cable,1,14.95,2019-10-11 12:34:00,334 8th St, Dallas,TX,75001 +270802,Google Phone,1,600.0,2019-10-07 10:11:00,897 Lake St, San Francisco,CA,94016 +270803,AA Batteries (4-pack),2,3.84,2019-10-21 21:33:00,189 13th St, Boston,MA,02215 +270804,AAA Batteries (4-pack),1,2.99,2019-10-21 09:27:00,943 7th St, San Francisco,CA,94016 +270805,Bose SoundSport Headphones,1,99.99,2019-10-11 17:43:00,808 2nd St, San Francisco,CA,94016 +270806,AA Batteries (4-pack),1,3.84,2019-10-15 16:13:00,212 Dogwood St, Boston,MA,02215 +270807,Google Phone,1,600.0,2019-10-14 22:40:00,219 14th St, Atlanta,GA,30301 +270807,Wired Headphones,1,11.99,2019-10-14 22:40:00,219 14th St, Atlanta,GA,30301 +270808,USB-C Charging Cable,1,11.95,2019-10-10 10:12:00,354 Park St, San Francisco,CA,94016 +270809,Apple Airpods Headphones,1,150.0,2019-10-05 11:56:00,362 Washington St, Dallas,TX,75001 +270810,34in Ultrawide Monitor,1,379.99,2019-10-28 13:12:00,533 9th St, Seattle,WA,98101 +270811,AAA Batteries (4-pack),1,2.99,2019-10-11 22:33:00,423 Meadow St, Portland,OR,97035 +270812,Wired Headphones,1,11.99,2019-10-02 11:07:00,667 7th St, Austin,TX,73301 +270813,AA Batteries (4-pack),1,3.84,2019-10-24 20:44:00,416 Lakeview St, Los Angeles,CA,90001 +270814,Macbook Pro Laptop,1,1700.0,2019-10-25 09:23:00,383 West St, San Francisco,CA,94016 +270815,Apple Airpods Headphones,1,150.0,2019-10-23 21:48:00,40 Pine St, Atlanta,GA,30301 +270816,Lightning Charging Cable,1,14.95,2019-10-12 07:02:00,346 Johnson St, San Francisco,CA,94016 +270817,USB-C Charging Cable,1,11.95,2019-10-29 12:30:00,718 Madison St, New York City,NY,10001 +270818,Apple Airpods Headphones,1,150.0,2019-10-22 13:33:00,611 Maple St, Seattle,WA,98101 +270819,Wired Headphones,1,11.99,2019-10-03 14:46:00,303 Lake St, Austin,TX,73301 +270820,34in Ultrawide Monitor,1,379.99,2019-10-10 15:11:00,290 Jackson St, San Francisco,CA,94016 +270821,Lightning Charging Cable,1,14.95,2019-10-21 10:47:00,253 4th St, San Francisco,CA,94016 +270822,Lightning Charging Cable,1,14.95,2019-10-27 07:23:00,344 Dogwood St, Boston,MA,02215 +270822,AAA Batteries (4-pack),1,2.99,2019-10-27 07:23:00,344 Dogwood St, Boston,MA,02215 +270823,ThinkPad Laptop,1,999.99,2019-10-17 15:37:00,381 Hill St, Dallas,TX,75001 +270824,Apple Airpods Headphones,1,150.0,2019-10-01 18:41:00,770 5th St, Dallas,TX,75001 +270825,Lightning Charging Cable,1,14.95,2019-10-21 10:02:00,95 River St, Atlanta,GA,30301 +270826,USB-C Charging Cable,1,11.95,2019-10-05 14:10:00,517 7th St, Dallas,TX,75001 +270827,AAA Batteries (4-pack),1,2.99,2019-10-26 19:32:00,388 10th St, Atlanta,GA,30301 +270828,Lightning Charging Cable,1,14.95,2019-10-25 12:03:00,695 5th St, Los Angeles,CA,90001 +270829,Apple Airpods Headphones,1,150.0,2019-10-24 10:00:00,689 Lakeview St, San Francisco,CA,94016 +270830,Lightning Charging Cable,1,14.95,2019-10-13 19:46:00,180 5th St, Seattle,WA,98101 +270831,USB-C Charging Cable,1,11.95,2019-10-24 23:04:00,249 7th St, Atlanta,GA,30301 +270832,Apple Airpods Headphones,1,150.0,2019-10-09 14:05:00,724 Walnut St, Portland,OR,97035 +270833,Apple Airpods Headphones,1,150.0,2019-10-07 19:42:00,995 12th St, Boston,MA,02215 +270834,AA Batteries (4-pack),1,3.84,2019-10-30 14:34:00,131 Lake St, Los Angeles,CA,90001 +270835,AAA Batteries (4-pack),1,2.99,2019-10-03 18:26:00,288 Elm St, San Francisco,CA,94016 +270836,AAA Batteries (4-pack),2,2.99,2019-10-03 05:44:00,567 1st St, Seattle,WA,98101 +270837,Lightning Charging Cable,1,14.95,2019-10-17 18:45:00,320 7th St, Atlanta,GA,30301 +270838,AAA Batteries (4-pack),2,2.99,2019-10-17 11:17:00,413 6th St, New York City,NY,10001 +270839,USB-C Charging Cable,1,11.95,2019-10-04 05:40:00,628 West St, Portland,ME,04101 +270840,Wired Headphones,1,11.99,2019-10-12 14:45:00,644 Lakeview St, Los Angeles,CA,90001 +270841,27in FHD Monitor,1,149.99,2019-10-20 14:08:00,777 1st St, Los Angeles,CA,90001 +270842,AAA Batteries (4-pack),1,2.99,2019-10-14 21:28:00,148 Walnut St, Seattle,WA,98101 +270843,Apple Airpods Headphones,1,150.0,2019-10-04 16:34:00,242 Main St, Dallas,TX,75001 +270844,USB-C Charging Cable,1,11.95,2019-10-09 11:25:00,231 Maple St, Atlanta,GA,30301 +270845,USB-C Charging Cable,1,11.95,2019-10-20 17:54:00,277 7th St, Los Angeles,CA,90001 +270846,Bose SoundSport Headphones,1,99.99,2019-10-19 16:24:00,325 9th St, Atlanta,GA,30301 +270847,Bose SoundSport Headphones,1,99.99,2019-10-25 15:33:00,590 Sunset St, Boston,MA,02215 +270848,Lightning Charging Cable,2,14.95,2019-10-14 22:22:00,625 Sunset St, Los Angeles,CA,90001 +270849,AA Batteries (4-pack),2,3.84,2019-10-09 10:27:00,317 8th St, San Francisco,CA,94016 +270850,iPhone,1,700.0,2019-10-19 14:46:00,14 Forest St, Dallas,TX,75001 +270850,Lightning Charging Cable,1,14.95,2019-10-19 14:46:00,14 Forest St, Dallas,TX,75001 +270851,Lightning Charging Cable,1,14.95,2019-10-26 15:04:00,31 Chestnut St, Boston,MA,02215 +270852,Wired Headphones,1,11.99,2019-10-28 19:22:00,896 Lake St, New York City,NY,10001 +270853,AA Batteries (4-pack),1,3.84,2019-10-15 21:14:00,941 Forest St, Boston,MA,02215 +270854,27in 4K Gaming Monitor,1,389.99,2019-10-19 20:38:00,454 Elm St, New York City,NY,10001 +270855,USB-C Charging Cable,1,11.95,2019-10-13 09:33:00,288 Elm St, Dallas,TX,75001 +270856,Apple Airpods Headphones,1,150.0,2019-10-04 18:30:00,945 Spruce St, Atlanta,GA,30301 +270857,iPhone,1,700.0,2019-10-01 12:38:00,449 Center St, Dallas,TX,75001 +270857,Apple Airpods Headphones,1,150.0,2019-10-01 12:38:00,449 Center St, Dallas,TX,75001 +270858,Lightning Charging Cable,1,14.95,2019-10-01 12:31:00,854 Cherry St, New York City,NY,10001 +270859,Lightning Charging Cable,1,14.95,2019-10-10 20:34:00,973 9th St, San Francisco,CA,94016 +270860,AA Batteries (4-pack),1,3.84,2019-10-27 09:58:00,360 4th St, San Francisco,CA,94016 +270861,AA Batteries (4-pack),2,3.84,2019-10-25 19:11:00,933 Elm St, Dallas,TX,75001 +270862,Macbook Pro Laptop,1,1700.0,2019-10-25 10:26:00,657 8th St, Austin,TX,73301 +270863,Bose SoundSport Headphones,1,99.99,2019-10-01 18:02:00,531 Johnson St, Austin,TX,73301 +270864,27in FHD Monitor,1,149.99,2019-10-01 14:09:00,871 5th St, New York City,NY,10001 +270865,AAA Batteries (4-pack),1,2.99,2019-10-17 19:58:00,890 6th St, New York City,NY,10001 +270866,Wired Headphones,1,11.99,2019-10-30 21:54:00,569 Meadow St, Portland,ME,04101 +270867,Wired Headphones,1,11.99,2019-10-29 15:14:00,632 Forest St, Dallas,TX,75001 +270868,34in Ultrawide Monitor,1,379.99,2019-10-19 18:52:00,330 Jefferson St, New York City,NY,10001 +270869,34in Ultrawide Monitor,1,379.99,2019-10-03 11:11:00,444 Lake St, Los Angeles,CA,90001 +270870,Flatscreen TV,1,300.0,2019-10-09 17:35:00,24 Hill St, New York City,NY,10001 +270871,Wired Headphones,1,11.99,2019-10-02 15:00:00,650 Cedar St, Boston,MA,02215 +270872,AAA Batteries (4-pack),2,2.99,2019-10-30 20:56:00,904 Park St, San Francisco,CA,94016 +270873,Vareebadd Phone,1,400.0,2019-10-22 14:38:00,657 South St, Boston,MA,02215 +270874,Lightning Charging Cable,1,14.95,2019-10-29 00:33:00,434 Highland St, Seattle,WA,98101 +270875,AAA Batteries (4-pack),1,2.99,2019-10-28 20:52:00,922 7th St, Seattle,WA,98101 +270876,AAA Batteries (4-pack),1,2.99,2019-10-12 19:16:00,203 Hickory St, Los Angeles,CA,90001 +270877,Bose SoundSport Headphones,1,99.99,2019-10-14 19:09:00,973 14th St, Dallas,TX,75001 +270878,Macbook Pro Laptop,1,1700.0,2019-10-27 12:26:00,251 Washington St, Atlanta,GA,30301 +270879,Bose SoundSport Headphones,1,99.99,2019-10-13 11:54:00,608 Jefferson St, Portland,OR,97035 +270880,Wired Headphones,1,11.99,2019-10-29 21:36:00,635 Hickory St, Portland,OR,97035 +270881,AAA Batteries (4-pack),1,2.99,2019-10-13 11:52:00,606 Sunset St, Dallas,TX,75001 +270882,AA Batteries (4-pack),2,3.84,2019-10-09 22:50:00,3 Lincoln St, Seattle,WA,98101 +270883,Bose SoundSport Headphones,1,99.99,2019-10-12 16:26:00,4 2nd St, Los Angeles,CA,90001 +270884,27in FHD Monitor,1,149.99,2019-10-29 00:11:00,220 7th St, Seattle,WA,98101 +270885,Bose SoundSport Headphones,1,99.99,2019-10-12 22:09:00,753 Spruce St, Los Angeles,CA,90001 +270886,AA Batteries (4-pack),1,3.84,2019-10-25 18:59:00,785 Chestnut St, Boston,MA,02215 +270887,Wired Headphones,1,11.99,2019-10-21 11:56:00,62 Wilson St, Seattle,WA,98101 +270888,Apple Airpods Headphones,1,150.0,2019-10-27 09:08:00,959 Adams St, Portland,OR,97035 +270889,iPhone,1,700.0,2019-10-30 21:02:00,364 6th St, New York City,NY,10001 +270890,AA Batteries (4-pack),2,3.84,2019-10-13 22:15:00,176 Park St, Austin,TX,73301 +270891,AA Batteries (4-pack),1,3.84,2019-10-19 01:01:00,554 Highland St, New York City,NY,10001 +270892,Bose SoundSport Headphones,1,99.99,2019-10-15 21:50:00,568 5th St, San Francisco,CA,94016 +270893,Bose SoundSport Headphones,1,99.99,2019-10-07 22:13:00,614 Jackson St, Los Angeles,CA,90001 +270894,AAA Batteries (4-pack),1,2.99,2019-10-19 11:18:00,622 11th St, San Francisco,CA,94016 +270895,AA Batteries (4-pack),1,3.84,2019-10-13 22:57:00,936 Jefferson St, Boston,MA,02215 +270896,Bose SoundSport Headphones,1,99.99,2019-10-07 11:19:00,300 Elm St, Dallas,TX,75001 +270897,AAA Batteries (4-pack),1,2.99,2019-10-28 03:42:00,860 Madison St, New York City,NY,10001 +270898,USB-C Charging Cable,1,11.95,2019-10-09 09:43:00,115 South St, Dallas,TX,75001 +270899,34in Ultrawide Monitor,1,379.99,2019-10-06 11:51:00,928 Walnut St, Seattle,WA,98101 +270900,iPhone,1,700.0,2019-10-24 20:56:00,594 5th St, New York City,NY,10001 +270900,Apple Airpods Headphones,1,150.0,2019-10-24 20:56:00,594 5th St, New York City,NY,10001 +270901,34in Ultrawide Monitor,1,379.99,2019-10-26 21:26:00,812 14th St, Dallas,TX,75001 +270901,iPhone,1,700.0,2019-10-26 21:26:00,812 14th St, Dallas,TX,75001 +270902,USB-C Charging Cable,1,11.95,2019-10-18 15:44:00,755 South St, Dallas,TX,75001 +270903,Apple Airpods Headphones,1,150.0,2019-10-25 19:48:00,595 North St, Portland,OR,97035 +270904,Apple Airpods Headphones,1,150.0,2019-10-30 10:47:00,933 7th St, Dallas,TX,75001 +270905,27in FHD Monitor,1,149.99,2019-10-29 14:08:00,224 River St, Los Angeles,CA,90001 +270906,Bose SoundSport Headphones,1,99.99,2019-10-09 12:12:00,562 11th St, New York City,NY,10001 +270907,Apple Airpods Headphones,1,150.0,2019-10-11 18:35:00,805 Meadow St, Portland,ME,04101 +270908,AAA Batteries (4-pack),1,2.99,2019-10-27 08:32:00,364 Park St, Los Angeles,CA,90001 +270909,ThinkPad Laptop,1,999.99,2019-10-26 21:39:00,826 9th St, Dallas,TX,75001 +270910,Bose SoundSport Headphones,1,99.99,2019-10-03 15:19:00,286 Cedar St, San Francisco,CA,94016 +270911,AAA Batteries (4-pack),2,2.99,2019-10-24 08:34:00,615 2nd St, Seattle,WA,98101 +270912,USB-C Charging Cable,1,11.95,2019-10-27 11:41:00,395 8th St, Dallas,TX,75001 +270913,Flatscreen TV,1,300.0,2019-10-10 11:37:00,853 Adams St, San Francisco,CA,94016 +270914,Flatscreen TV,1,300.0,2019-10-06 16:02:00,980 Cedar St, New York City,NY,10001 +270915,Lightning Charging Cable,1,14.95,2019-10-05 08:03:00,399 Pine St, Los Angeles,CA,90001 +270916,Apple Airpods Headphones,1,150.0,2019-10-22 12:32:00,55 Lake St, San Francisco,CA,94016 +270917,Lightning Charging Cable,1,14.95,2019-10-19 17:18:00,866 10th St, Portland,OR,97035 +270918,AAA Batteries (4-pack),1,2.99,2019-10-15 09:34:00,790 5th St, Boston,MA,02215 +270919,USB-C Charging Cable,1,11.95,2019-10-05 12:25:00,91 Main St, San Francisco,CA,94016 +270920,Apple Airpods Headphones,1,150.0,2019-10-31 16:42:00,797 Park St, Boston,MA,02215 +270921,Wired Headphones,1,11.99,2019-10-20 11:59:00,800 Walnut St, Boston,MA,02215 +270922,Flatscreen TV,1,300.0,2019-10-19 18:15:00,32 Hickory St, San Francisco,CA,94016 +270923,Lightning Charging Cable,1,14.95,2019-10-11 10:05:00,397 Madison St, Los Angeles,CA,90001 +270924,Apple Airpods Headphones,1,150.0,2019-10-09 15:21:00,64 Dogwood St, San Francisco,CA,94016 +270925,Lightning Charging Cable,1,14.95,2019-10-10 21:09:00,467 Madison St, Dallas,TX,75001 +270926,ThinkPad Laptop,1,999.99,2019-10-05 09:47:00,660 Chestnut St, Portland,OR,97035 +270927,Wired Headphones,1,11.99,2019-10-14 09:59:00,622 12th St, New York City,NY,10001 +270928,34in Ultrawide Monitor,1,379.99,2019-10-27 21:48:00,978 Maple St, Los Angeles,CA,90001 +270929,ThinkPad Laptop,1,999.99,2019-10-11 11:09:00,919 Chestnut St, San Francisco,CA,94016 +270930,Wired Headphones,1,11.99,2019-10-22 22:06:00,118 Dogwood St, Austin,TX,73301 +270931,ThinkPad Laptop,1,999.99,2019-10-31 19:25:00,232 Elm St, San Francisco,CA,94016 +270932,Apple Airpods Headphones,1,150.0,2019-10-26 12:21:00,384 Hickory St, New York City,NY,10001 +270933,Bose SoundSport Headphones,1,99.99,2019-10-22 06:49:00,496 Pine St, Seattle,WA,98101 +270934,34in Ultrawide Monitor,1,379.99,2019-10-27 08:52:00,896 Hickory St, Los Angeles,CA,90001 +270935,34in Ultrawide Monitor,1,379.99,2019-10-12 16:08:00,854 Center St, Dallas,TX,75001 +270936,USB-C Charging Cable,1,11.95,2019-10-18 12:30:00,376 Church St, New York City,NY,10001 +270937,USB-C Charging Cable,1,11.95,2019-10-19 21:14:00,941 South St, Dallas,TX,75001 +270938,USB-C Charging Cable,1,11.95,2019-10-29 12:40:00,896 Chestnut St, Boston,MA,02215 +270939,Lightning Charging Cable,1,14.95,2019-10-30 21:00:00,831 Adams St, New York City,NY,10001 +270940,AA Batteries (4-pack),1,3.84,2019-10-18 18:22:00,206 Main St, Atlanta,GA,30301 +270941,Lightning Charging Cable,1,14.95,2019-10-25 14:48:00,672 Church St, New York City,NY,10001 +270941,Bose SoundSport Headphones,2,99.99,2019-10-25 14:48:00,672 Church St, New York City,NY,10001 +270942,27in 4K Gaming Monitor,1,389.99,2019-10-21 18:06:00,213 Church St, San Francisco,CA,94016 +270943,Lightning Charging Cable,1,14.95,2019-10-27 14:22:00,448 Maple St, Portland,ME,04101 +270944,Apple Airpods Headphones,1,150.0,2019-10-06 06:26:00,373 Forest St, Boston,MA,02215 +270945,Lightning Charging Cable,1,14.95,2019-10-03 12:59:00,522 Cherry St, San Francisco,CA,94016 +270946,Apple Airpods Headphones,1,150.0,2019-10-22 19:19:00,415 Forest St, Atlanta,GA,30301 +270946,Wired Headphones,1,11.99,2019-10-22 19:19:00,415 Forest St, Atlanta,GA,30301 +270947,Lightning Charging Cable,1,14.95,2019-10-20 20:58:00,627 6th St, Los Angeles,CA,90001 +270948,Lightning Charging Cable,1,14.95,2019-10-04 19:42:00,32 Cedar St, San Francisco,CA,94016 +270949,Lightning Charging Cable,1,14.95,2019-10-11 13:25:00,464 Cherry St, Los Angeles,CA,90001 +270950,Wired Headphones,1,11.99,2019-10-10 21:26:00,181 Main St, Los Angeles,CA,90001 +270951,Flatscreen TV,1,300.0,2019-10-30 11:27:00,447 10th St, Boston,MA,02215 +270952,AAA Batteries (4-pack),2,2.99,2019-10-17 12:02:00,339 Maple St, San Francisco,CA,94016 +270953,AAA Batteries (4-pack),1,2.99,2019-10-12 13:02:00,59 9th St, Dallas,TX,75001 +270954,Wired Headphones,1,11.99,2019-10-30 18:44:00,612 Adams St, Portland,ME,04101 +270955,Bose SoundSport Headphones,1,99.99,2019-10-06 15:00:00,656 Park St, New York City,NY,10001 +270956,Bose SoundSport Headphones,1,99.99,2019-10-19 21:02:00,633 1st St, Boston,MA,02215 +270957,AA Batteries (4-pack),1,3.84,2019-10-24 22:06:00,332 Cherry St, Dallas,TX,75001 +270958,27in 4K Gaming Monitor,1,389.99,2019-10-18 22:02:00,666 13th St, San Francisco,CA,94016 +270959,LG Dryer,1,600.0,2019-10-23 23:44:00,583 6th St, San Francisco,CA,94016 +270960,USB-C Charging Cable,1,11.95,2019-10-01 15:23:00,780 Willow St, Boston,MA,02215 +270961,Flatscreen TV,1,300.0,2019-10-19 21:55:00,680 Hill St, Dallas,TX,75001 +270962,Wired Headphones,1,11.99,2019-10-23 10:01:00,164 Lakeview St, New York City,NY,10001 +270963,USB-C Charging Cable,1,11.95,2019-10-31 08:35:00,978 13th St, New York City,NY,10001 +270964,34in Ultrawide Monitor,1,379.99,2019-10-25 21:58:00,444 11th St, San Francisco,CA,94016 +270965,USB-C Charging Cable,1,11.95,2019-10-08 01:10:00,870 Lakeview St, San Francisco,CA,94016 +270966,USB-C Charging Cable,1,11.95,2019-10-03 09:06:00,807 7th St, San Francisco,CA,94016 +270967,ThinkPad Laptop,1,999.99,2019-10-26 20:20:00,796 Walnut St, San Francisco,CA,94016 +270968,27in 4K Gaming Monitor,1,389.99,2019-10-06 23:04:00,602 Sunset St, New York City,NY,10001 +270969,Apple Airpods Headphones,1,150.0,2019-10-05 20:24:00,583 Cedar St, Seattle,WA,98101 +270970,Lightning Charging Cable,1,14.95,2019-10-14 15:17:00,459 2nd St, Los Angeles,CA,90001 +270971,AA Batteries (4-pack),2,3.84,2019-10-18 14:36:00,409 Madison St, San Francisco,CA,94016 +270972,Wired Headphones,1,11.99,2019-10-27 16:01:00,113 1st St, Los Angeles,CA,90001 +270973,USB-C Charging Cable,1,11.95,2019-10-27 10:40:00,859 Walnut St, Seattle,WA,98101 +270974,34in Ultrawide Monitor,1,379.99,2019-10-11 16:27:00,277 Church St, Atlanta,GA,30301 +270975,iPhone,1,700.0,2019-10-05 00:38:00,916 Chestnut St, New York City,NY,10001 +270976,AA Batteries (4-pack),1,3.84,2019-10-14 20:32:00,424 Dogwood St, Dallas,TX,75001 +270977,Bose SoundSport Headphones,1,99.99,2019-10-27 11:20:00,101 Hill St, San Francisco,CA,94016 +270978,AA Batteries (4-pack),2,3.84,2019-10-31 13:14:00,533 Hill St, Los Angeles,CA,90001 +270979,27in FHD Monitor,1,149.99,2019-10-02 22:09:00,127 Lake St, San Francisco,CA,94016 +270980,Wired Headphones,1,11.99,2019-10-15 17:39:00,380 2nd St, San Francisco,CA,94016 +270981,AA Batteries (4-pack),2,3.84,2019-10-02 18:43:00,851 9th St, San Francisco,CA,94016 +270982,ThinkPad Laptop,1,999.99,2019-10-11 10:17:00,593 5th St, San Francisco,CA,94016 +270982,USB-C Charging Cable,1,11.95,2019-10-11 10:17:00,593 5th St, San Francisco,CA,94016 +270983,Wired Headphones,1,11.99,2019-10-20 21:05:00,828 River St, Portland,OR,97035 +270984,20in Monitor,1,109.99,2019-10-08 16:59:00,737 Lakeview St, New York City,NY,10001 +270985,Wired Headphones,1,11.99,2019-10-07 13:37:00,171 Highland St, Dallas,TX,75001 +270986,USB-C Charging Cable,1,11.95,2019-10-01 11:33:00,318 Dogwood St, Austin,TX,73301 +270987,USB-C Charging Cable,1,11.95,2019-10-12 13:59:00,716 Spruce St, Los Angeles,CA,90001 +270988,USB-C Charging Cable,1,11.95,2019-10-15 08:33:00,968 Lincoln St, Seattle,WA,98101 +270989,USB-C Charging Cable,1,11.95,2019-10-30 18:26:00,370 6th St, Dallas,TX,75001 +270990,Bose SoundSport Headphones,1,99.99,2019-10-26 23:31:00,183 Cedar St, Austin,TX,73301 +270991,20in Monitor,1,109.99,2019-10-05 16:21:00,466 10th St, Seattle,WA,98101 +270992,Bose SoundSport Headphones,1,99.99,2019-10-23 14:58:00,349 River St, Los Angeles,CA,90001 +270993,AAA Batteries (4-pack),1,2.99,2019-10-02 19:45:00,49 Ridge St, Boston,MA,02215 +270994,Wired Headphones,1,11.99,2019-10-23 15:32:00,496 Highland St, Austin,TX,73301 +270995,USB-C Charging Cable,1,11.95,2019-10-08 16:11:00,991 Adams St, Los Angeles,CA,90001 +270996,Bose SoundSport Headphones,1,99.99,2019-10-30 09:37:00,553 North St, Seattle,WA,98101 +270997,AA Batteries (4-pack),1,3.84,2019-10-17 20:44:00,642 Wilson St, San Francisco,CA,94016 +270998,AA Batteries (4-pack),3,3.84,2019-10-01 11:46:00,291 Dogwood St, Los Angeles,CA,90001 +270999,AA Batteries (4-pack),1,3.84,2019-10-26 10:14:00,813 2nd St, Los Angeles,CA,90001 +271000,AA Batteries (4-pack),1,3.84,2019-10-18 00:09:00,435 12th St, San Francisco,CA,94016 +271001,27in FHD Monitor,1,149.99,2019-10-16 20:25:00,900 1st St, Boston,MA,02215 +271002,AA Batteries (4-pack),2,3.84,2019-10-21 17:52:00,668 West St, Atlanta,GA,30301 +271003,27in 4K Gaming Monitor,1,389.99,2019-10-07 09:51:00,190 10th St, San Francisco,CA,94016 +271004,Macbook Pro Laptop,1,1700.0,2019-10-27 18:37:00,842 Willow St, New York City,NY,10001 +271005,Lightning Charging Cable,1,14.95,2019-10-14 21:36:00,54 Hickory St, Portland,OR,97035 +271006,AAA Batteries (4-pack),1,2.99,2019-10-31 03:50:00,615 Church St, San Francisco,CA,94016 +271007,Apple Airpods Headphones,1,150.0,2019-10-30 02:18:00,913 4th St, Boston,MA,02215 +271008,34in Ultrawide Monitor,1,379.99,2019-10-14 18:07:00,404 South St, Boston,MA,02215 +271009,Apple Airpods Headphones,1,150.0,2019-10-09 20:51:00,682 Lakeview St, Seattle,WA,98101 +271010,Lightning Charging Cable,1,14.95,2019-10-21 10:51:00,298 Madison St, Los Angeles,CA,90001 +271011,27in FHD Monitor,1,149.99,2019-10-16 21:10:00,283 2nd St, New York City,NY,10001 +271012,Bose SoundSport Headphones,1,99.99,2019-10-01 19:55:00,827 Highland St, Austin,TX,73301 +271013,USB-C Charging Cable,1,11.95,2019-10-08 15:05:00,525 Chestnut St, Portland,ME,04101 +271014,AA Batteries (4-pack),1,3.84,2019-10-07 17:56:00,435 Center St, Boston,MA,02215 +271015,AAA Batteries (4-pack),1,2.99,2019-10-01 08:53:00,221 Ridge St, Dallas,TX,75001 +271016,Lightning Charging Cable,1,14.95,2019-10-30 14:50:00,856 Johnson St, Seattle,WA,98101 +271017,Google Phone,1,600.0,2019-10-13 11:50:00,195 Sunset St, Atlanta,GA,30301 +271018,Lightning Charging Cable,1,14.95,2019-10-31 20:42:00,646 West St, Portland,OR,97035 +271019,Lightning Charging Cable,1,14.95,2019-10-31 07:02:00,405 Hill St, Los Angeles,CA,90001 +271020,Bose SoundSport Headphones,1,99.99,2019-10-26 14:39:00,958 1st St, Boston,MA,02215 +271021,Bose SoundSport Headphones,1,99.99,2019-10-04 12:37:00,580 Sunset St, Los Angeles,CA,90001 +271022,Lightning Charging Cable,1,14.95,2019-10-31 15:16:00,973 Church St, San Francisco,CA,94016 +271023,USB-C Charging Cable,1,11.95,2019-10-21 14:48:00,827 8th St, San Francisco,CA,94016 +271024,iPhone,1,700.0,2019-10-01 12:31:00,130 Spruce St, San Francisco,CA,94016 +271025,AAA Batteries (4-pack),2,2.99,2019-10-20 15:51:00,949 North St, Boston,MA,02215 +271026,Flatscreen TV,1,300.0,2019-10-10 20:26:00,441 Highland St, Austin,TX,73301 +271027,Lightning Charging Cable,1,14.95,2019-10-06 18:42:00,486 5th St, Portland,ME,04101 +271028,USB-C Charging Cable,1,11.95,2019-10-01 06:42:00,432 Lincoln St, Boston,MA,02215 +271029,AA Batteries (4-pack),1,3.84,2019-10-30 17:32:00,184 Hickory St, Los Angeles,CA,90001 +271030,Google Phone,1,600.0,2019-10-31 12:00:00,843 North St, Portland,OR,97035 +271031,27in 4K Gaming Monitor,1,389.99,2019-10-14 11:35:00,625 Park St, Atlanta,GA,30301 +271032,Google Phone,1,600.0,2019-10-13 10:35:00,490 7th St, San Francisco,CA,94016 +271033,AA Batteries (4-pack),1,3.84,2019-10-03 18:39:00,115 13th St, Los Angeles,CA,90001 +271033,Flatscreen TV,1,300.0,2019-10-03 18:39:00,115 13th St, Los Angeles,CA,90001 +271034,Wired Headphones,1,11.99,2019-10-28 07:50:00,347 West St, Dallas,TX,75001 +271035,Bose SoundSport Headphones,1,99.99,2019-10-09 02:01:00,586 River St, Los Angeles,CA,90001 +271036,Vareebadd Phone,1,400.0,2019-10-02 18:14:00,357 Park St, Dallas,TX,75001 +271037,Apple Airpods Headphones,1,150.0,2019-10-14 16:44:00,165 Johnson St, Boston,MA,02215 +271038,Apple Airpods Headphones,1,150.0,2019-10-22 15:41:00,575 Lakeview St, Atlanta,GA,30301 +271039,27in 4K Gaming Monitor,1,389.99,2019-10-20 22:53:00,336 Washington St, Portland,ME,04101 +271040,AAA Batteries (4-pack),2,2.99,2019-10-07 12:57:00,468 Highland St, San Francisco,CA,94016 +271041,Bose SoundSport Headphones,1,99.99,2019-10-14 15:04:00,621 Madison St, Los Angeles,CA,90001 +271042,Wired Headphones,1,11.99,2019-10-25 16:46:00,960 Meadow St, Los Angeles,CA,90001 +271043,AA Batteries (4-pack),1,3.84,2019-10-04 20:27:00,557 Elm St, San Francisco,CA,94016 +271044,USB-C Charging Cable,1,11.95,2019-10-16 09:58:00,609 Forest St, New York City,NY,10001 +271045,27in 4K Gaming Monitor,1,389.99,2019-10-31 23:49:00,259 10th St, Los Angeles,CA,90001 +271046,Wired Headphones,1,11.99,2019-10-05 16:09:00,684 Washington St, New York City,NY,10001 +271047,Lightning Charging Cable,1,14.95,2019-10-03 13:14:00,309 Lincoln St, San Francisco,CA,94016 +271048,Flatscreen TV,1,300.0,2019-10-17 19:50:00,120 Cedar St, Boston,MA,02215 +271049,AAA Batteries (4-pack),1,2.99,2019-10-30 19:05:00,647 12th St, Los Angeles,CA,90001 +271050,AAA Batteries (4-pack),2,2.99,2019-10-13 22:15:00,879 6th St, San Francisco,CA,94016 +271051,34in Ultrawide Monitor,1,379.99,2019-10-03 15:45:00,670 11th St, Seattle,WA,98101 +271052,34in Ultrawide Monitor,1,379.99,2019-10-23 21:26:00,510 13th St, Dallas,TX,75001 +271053,Bose SoundSport Headphones,1,99.99,2019-10-09 20:34:00,853 4th St, Dallas,TX,75001 +271054,Flatscreen TV,1,300.0,2019-10-18 11:53:00,986 Center St, New York City,NY,10001 +271055,27in FHD Monitor,1,149.99,2019-10-29 12:35:00,436 14th St, Atlanta,GA,30301 +271056,Lightning Charging Cable,1,14.95,2019-10-25 13:25:00,343 River St, New York City,NY,10001 +271056,AAA Batteries (4-pack),1,2.99,2019-10-25 13:25:00,343 River St, New York City,NY,10001 +271057,Lightning Charging Cable,1,14.95,2019-10-23 06:08:00,439 5th St, San Francisco,CA,94016 +271058,Apple Airpods Headphones,1,150.0,2019-10-19 21:08:00,497 Church St, Los Angeles,CA,90001 +271059,AA Batteries (4-pack),1,3.84,2019-10-12 14:31:00,374 Walnut St, San Francisco,CA,94016 +271060,Wired Headphones,1,11.99,2019-10-17 21:52:00,492 Maple St, Boston,MA,02215 +271061,USB-C Charging Cable,1,11.95,2019-10-06 06:14:00,723 1st St, Los Angeles,CA,90001 +271062,USB-C Charging Cable,1,11.95,2019-10-24 21:56:00,204 5th St, New York City,NY,10001 +271063,27in 4K Gaming Monitor,1,389.99,2019-10-12 16:35:00,777 Dogwood St, Boston,MA,02215 +271064,AA Batteries (4-pack),2,3.84,2019-10-11 19:23:00,481 7th St, San Francisco,CA,94016 +271065,Apple Airpods Headphones,1,150.0,2019-10-06 20:29:00,949 Church St, Seattle,WA,98101 +271066,AA Batteries (4-pack),1,3.84,2019-10-21 11:14:00,958 Hickory St, Boston,MA,02215 +271067,27in FHD Monitor,1,149.99,2019-10-14 13:25:00,400 12th St, Los Angeles,CA,90001 +271068,AAA Batteries (4-pack),3,2.99,2019-10-04 09:47:00,496 River St, San Francisco,CA,94016 +271069,Google Phone,1,600.0,2019-10-08 12:02:00,67 Jackson St, Los Angeles,CA,90001 +271069,USB-C Charging Cable,1,11.95,2019-10-08 12:02:00,67 Jackson St, Los Angeles,CA,90001 +271070,20in Monitor,1,109.99,2019-10-11 23:00:00,876 Lake St, Dallas,TX,75001 +271071,Apple Airpods Headphones,1,150.0,2019-10-04 19:45:00,35 West St, San Francisco,CA,94016 +271072,USB-C Charging Cable,1,11.95,2019-10-05 18:53:00,519 Park St, Portland,ME,04101 +271073,AA Batteries (4-pack),1,3.84,2019-10-26 12:29:00,860 Lake St, San Francisco,CA,94016 +271074,Apple Airpods Headphones,1,150.0,2019-10-02 11:18:00,965 13th St, Portland,ME,04101 +271075,27in 4K Gaming Monitor,1,389.99,2019-10-05 19:04:00,417 5th St, San Francisco,CA,94016 +271076,AA Batteries (4-pack),1,3.84,2019-10-16 12:04:00,168 Sunset St, Austin,TX,73301 +271077,Bose SoundSport Headphones,1,99.99,2019-10-31 15:13:00,576 Forest St, Portland,OR,97035 +271078,USB-C Charging Cable,1,11.95,2019-10-07 18:29:00,70 Cedar St, San Francisco,CA,94016 +271079,Lightning Charging Cable,1,14.95,2019-10-23 07:46:00,434 West St, Atlanta,GA,30301 +271080,AA Batteries (4-pack),1,3.84,2019-10-07 00:14:00,821 10th St, Dallas,TX,75001 +271081,Lightning Charging Cable,1,14.95,2019-10-18 22:02:00,192 Pine St, San Francisco,CA,94016 +271082,Lightning Charging Cable,1,14.95,2019-10-04 13:32:00,70 1st St, San Francisco,CA,94016 +271083,Bose SoundSport Headphones,1,99.99,2019-10-23 11:21:00,303 Church St, San Francisco,CA,94016 +271084,USB-C Charging Cable,1,11.95,2019-10-16 17:21:00,216 Wilson St, San Francisco,CA,94016 +271085,Vareebadd Phone,1,400.0,2019-10-29 12:41:00,189 Wilson St, San Francisco,CA,94016 +271085,Bose SoundSport Headphones,1,99.99,2019-10-29 12:41:00,189 Wilson St, San Francisco,CA,94016 +271086,Bose SoundSport Headphones,1,99.99,2019-10-06 18:54:00,922 9th St, Atlanta,GA,30301 +271087,Lightning Charging Cable,1,14.95,2019-10-07 17:46:00,731 River St, New York City,NY,10001 +271088,USB-C Charging Cable,1,11.95,2019-10-17 10:58:00,350 Washington St, San Francisco,CA,94016 +271089,Wired Headphones,1,11.99,2019-10-20 16:57:00,156 Pine St, Boston,MA,02215 +271090,Wired Headphones,1,11.99,2019-10-22 20:04:00,535 5th St, San Francisco,CA,94016 +271091,AAA Batteries (4-pack),1,2.99,2019-10-17 15:22:00,939 South St, Seattle,WA,98101 +271092,AA Batteries (4-pack),1,3.84,2019-10-31 17:36:00,831 2nd St, Portland,ME,04101 +271093,Wired Headphones,1,11.99,2019-10-12 12:29:00,392 Ridge St, Atlanta,GA,30301 +271094,AAA Batteries (4-pack),6,2.99,2019-10-08 16:36:00,494 11th St, Portland,OR,97035 +271095,AAA Batteries (4-pack),1,2.99,2019-10-08 22:02:00,763 11th St, Seattle,WA,98101 +271096,Bose SoundSport Headphones,1,99.99,2019-10-23 09:21:00,615 Lincoln St, New York City,NY,10001 +271097,Vareebadd Phone,1,400.0,2019-10-10 18:37:00,290 Jefferson St, Dallas,TX,75001 +271098,Bose SoundSport Headphones,1,99.99,2019-10-23 12:26:00,360 Jackson St, Los Angeles,CA,90001 +271099,Apple Airpods Headphones,1,150.0,2019-10-17 15:07:00,70 Maple St, Boston,MA,02215 +271100,Lightning Charging Cable,1,14.95,2019-10-27 09:49:00,770 8th St, Los Angeles,CA,90001 +271101,AAA Batteries (4-pack),2,2.99,2019-10-22 02:08:00,479 5th St, New York City,NY,10001 +271102,AA Batteries (4-pack),1,3.84,2019-10-05 21:36:00,696 West St, New York City,NY,10001 +271103,Apple Airpods Headphones,1,150.0,2019-10-13 11:52:00,635 Johnson St, New York City,NY,10001 +271104,USB-C Charging Cable,1,11.95,2019-10-28 21:35:00,352 5th St, New York City,NY,10001 +271105,Bose SoundSport Headphones,1,99.99,2019-10-15 20:00:00,212 Sunset St, Boston,MA,02215 +271106,AAA Batteries (4-pack),1,2.99,2019-10-19 20:46:00,493 Cherry St, Atlanta,GA,30301 +271107,27in 4K Gaming Monitor,1,389.99,2019-10-24 14:43:00,31 8th St, Portland,OR,97035 +271108,AA Batteries (4-pack),1,3.84,2019-10-23 09:35:00,970 12th St, Los Angeles,CA,90001 +271109,Lightning Charging Cable,1,14.95,2019-10-26 22:43:00,37 Sunset St, Austin,TX,73301 +271110,Flatscreen TV,1,300.0,2019-10-20 08:48:00,861 Jefferson St, Boston,MA,02215 +271111,AA Batteries (4-pack),3,3.84,2019-10-03 11:50:00,31 9th St, Los Angeles,CA,90001 +271112,27in 4K Gaming Monitor,1,389.99,2019-10-18 16:37:00,205 Pine St, Atlanta,GA,30301 +271113,Wired Headphones,1,11.99,2019-10-30 23:15:00,311 River St, San Francisco,CA,94016 +271114,Google Phone,1,600.0,2019-10-05 18:51:00,943 2nd St, Los Angeles,CA,90001 +271115,AAA Batteries (4-pack),1,2.99,2019-10-26 23:05:00,10 Lakeview St, Dallas,TX,75001 +271116,Flatscreen TV,1,300.0,2019-10-21 20:59:00,988 6th St, Boston,MA,02215 +271117,Wired Headphones,1,11.99,2019-10-05 17:06:00,425 7th St, New York City,NY,10001 +271118,AA Batteries (4-pack),1,3.84,2019-10-05 19:11:00,289 12th St, Dallas,TX,75001 +271119,Lightning Charging Cable,1,14.95,2019-10-22 10:11:00,986 Forest St, Boston,MA,02215 +271120,AA Batteries (4-pack),2,3.84,2019-10-08 11:03:00,906 Spruce St, Boston,MA,02215 +271121,Wired Headphones,1,11.99,2019-10-18 18:04:00,451 Jackson St, Los Angeles,CA,90001 +271122,Apple Airpods Headphones,1,150.0,2019-10-23 09:55:00,245 Ridge St, San Francisco,CA,94016 +271123,Bose SoundSport Headphones,1,99.99,2019-10-08 19:39:00,653 1st St, Los Angeles,CA,90001 +271124,Macbook Pro Laptop,1,1700.0,2019-10-04 16:50:00,752 6th St, Seattle,WA,98101 +271125,Apple Airpods Headphones,1,150.0,2019-10-04 22:04:00,678 South St, San Francisco,CA,94016 +271126,Lightning Charging Cable,1,14.95,2019-10-23 11:02:00,37 Center St, Los Angeles,CA,90001 +271127,AA Batteries (4-pack),3,3.84,2019-10-31 07:38:00,639 9th St, Los Angeles,CA,90001 +271128,AAA Batteries (4-pack),2,2.99,2019-10-06 18:39:00,860 Lincoln St, Austin,TX,73301 +271129,USB-C Charging Cable,1,11.95,2019-10-24 18:26:00,903 Pine St, Los Angeles,CA,90001 +271130,Wired Headphones,1,11.99,2019-10-13 23:16:00,953 Jefferson St, New York City,NY,10001 +271131,AA Batteries (4-pack),1,3.84,2019-10-06 09:20:00,298 Church St, Portland,OR,97035 +271132,27in 4K Gaming Monitor,2,389.99,2019-10-10 10:43:00,758 2nd St, Portland,OR,97035 +271133,Apple Airpods Headphones,1,150.0,2019-10-24 12:47:00,367 Lincoln St, San Francisco,CA,94016 +271134,27in FHD Monitor,1,149.99,2019-10-27 20:31:00,74 Park St, Los Angeles,CA,90001 +271135,Apple Airpods Headphones,2,150.0,2019-10-05 10:59:00,458 8th St, San Francisco,CA,94016 +271136,USB-C Charging Cable,1,11.95,2019-10-15 08:39:00,411 Maple St, Seattle,WA,98101 +271137,27in 4K Gaming Monitor,1,389.99,2019-10-05 10:12:00,125 Forest St, San Francisco,CA,94016 +271138,USB-C Charging Cable,2,11.95,2019-10-10 18:02:00,597 Wilson St, Los Angeles,CA,90001 +271139,USB-C Charging Cable,1,11.95,2019-10-11 14:43:00,722 Dogwood St, Los Angeles,CA,90001 +271140,Lightning Charging Cable,1,14.95,2019-10-02 16:35:00,224 1st St, San Francisco,CA,94016 +271141,USB-C Charging Cable,1,11.95,2019-10-16 13:00:00,269 Madison St, Seattle,WA,98101 +271142,20in Monitor,1,109.99,2019-10-09 10:11:00,968 12th St, New York City,NY,10001 +271143,27in 4K Gaming Monitor,1,389.99,2019-10-21 08:43:00,234 Cedar St, Austin,TX,73301 +271144,AAA Batteries (4-pack),1,2.99,2019-10-29 20:29:00,951 4th St, New York City,NY,10001 +271145,27in FHD Monitor,1,149.99,2019-10-18 19:28:00,869 12th St, Portland,OR,97035 +271146,Bose SoundSport Headphones,1,99.99,2019-10-16 23:46:00,308 Maple St, Austin,TX,73301 +271147,Lightning Charging Cable,1,14.95,2019-10-18 01:09:00,589 Hickory St, Austin,TX,73301 +271148,27in FHD Monitor,1,149.99,2019-10-15 20:03:00,414 Madison St, Los Angeles,CA,90001 +271149,Bose SoundSport Headphones,1,99.99,2019-10-18 11:05:00,479 Church St, San Francisco,CA,94016 +271150,27in FHD Monitor,1,149.99,2019-10-03 16:51:00,149 Johnson St, San Francisco,CA,94016 +271151,AA Batteries (4-pack),1,3.84,2019-10-10 09:08:00,67 13th St, Austin,TX,73301 +271152,27in FHD Monitor,1,149.99,2019-10-31 14:13:00,476 Maple St, Dallas,TX,75001 +271153,Bose SoundSport Headphones,1,99.99,2019-10-30 16:19:00,740 Park St, San Francisco,CA,94016 +271154,iPhone,1,700.0,2019-10-19 15:16:00,579 Willow St, San Francisco,CA,94016 +271155,AA Batteries (4-pack),2,3.84,2019-10-27 21:28:00,88 Center St, Atlanta,GA,30301 +271156,Apple Airpods Headphones,1,150.0,2019-10-17 15:19:00,912 Cedar St, Los Angeles,CA,90001 +271157,Wired Headphones,1,11.99,2019-10-11 11:53:00,622 4th St, New York City,NY,10001 +271158,USB-C Charging Cable,1,11.95,2019-10-17 10:17:00,362 Madison St, Los Angeles,CA,90001 +271159,AA Batteries (4-pack),1,3.84,2019-10-19 17:07:00,204 1st St, Atlanta,GA,30301 +271160,Bose SoundSport Headphones,1,99.99,2019-10-02 17:24:00,572 Johnson St, Seattle,WA,98101 +271161,USB-C Charging Cable,1,11.95,2019-10-05 17:34:00,904 Willow St, Dallas,TX,75001 +271162,Lightning Charging Cable,1,14.95,2019-10-16 21:14:00,38 13th St, Atlanta,GA,30301 +271163,27in FHD Monitor,1,149.99,2019-10-03 17:38:00,827 River St, Portland,OR,97035 +271164,Bose SoundSport Headphones,1,99.99,2019-10-29 19:11:00,663 Main St, San Francisco,CA,94016 +271165,Bose SoundSport Headphones,1,99.99,2019-10-27 09:06:00,204 5th St, San Francisco,CA,94016 +271166,Lightning Charging Cable,1,14.95,2019-10-16 23:22:00,327 Sunset St, New York City,NY,10001 +271167,Wired Headphones,1,11.99,2019-10-25 13:46:00,656 Wilson St, New York City,NY,10001 +271168,Apple Airpods Headphones,1,150.0,2019-10-24 08:32:00,244 Forest St, Atlanta,GA,30301 +271169,ThinkPad Laptop,1,999.99,2019-10-10 15:33:00,119 Washington St, Dallas,TX,75001 +271170,Apple Airpods Headphones,1,150.0,2019-10-06 16:23:00,871 Hill St, San Francisco,CA,94016 +271171,Apple Airpods Headphones,1,150.0,2019-10-27 00:10:00,98 Wilson St, Atlanta,GA,30301 +271172,Apple Airpods Headphones,1,150.0,2019-10-06 17:01:00,839 Jefferson St, Seattle,WA,98101 +271173,Google Phone,1,600.0,2019-10-05 18:35:00,244 Hickory St, Seattle,WA,98101 +271174,Lightning Charging Cable,1,14.95,2019-10-31 18:09:00,918 6th St, Atlanta,GA,30301 +271175,USB-C Charging Cable,1,11.95,2019-10-19 13:03:00,764 Willow St, Los Angeles,CA,90001 +271176,Lightning Charging Cable,1,14.95,2019-10-29 07:00:00,884 Lakeview St, New York City,NY,10001 +271177,Wired Headphones,1,11.99,2019-10-19 23:24:00,82 Lakeview St, Dallas,TX,75001 +271178,Apple Airpods Headphones,1,150.0,2019-10-16 12:30:00,392 Park St, Dallas,TX,75001 +271179,USB-C Charging Cable,1,11.95,2019-10-23 13:46:00,475 Cedar St, Dallas,TX,75001 +271180,Lightning Charging Cable,1,14.95,2019-10-12 18:04:00,329 6th St, Dallas,TX,75001 +271181,34in Ultrawide Monitor,1,379.99,2019-10-16 18:19:00,465 Church St, Seattle,WA,98101 +271182,Wired Headphones,1,11.99,2019-10-06 14:10:00,35 11th St, San Francisco,CA,94016 +271183,Macbook Pro Laptop,1,1700.0,2019-10-01 23:49:00,361 12th St, Los Angeles,CA,90001 +271184,USB-C Charging Cable,1,11.95,2019-10-30 11:43:00,400 Highland St, San Francisco,CA,94016 +271185,AAA Batteries (4-pack),1,2.99,2019-10-23 14:59:00,97 Wilson St, Portland,OR,97035 +271186,Wired Headphones,1,11.99,2019-10-29 00:14:00,761 Lake St, Portland,OR,97035 +271187,USB-C Charging Cable,1,11.95,2019-10-14 12:33:00,864 Church St, New York City,NY,10001 +271188,AA Batteries (4-pack),2,3.84,2019-10-27 10:58:00,809 7th St, New York City,NY,10001 +271189,iPhone,1,700.0,2019-10-21 12:34:00,706 13th St, San Francisco,CA,94016 +271189,Lightning Charging Cable,1,14.95,2019-10-21 12:34:00,706 13th St, San Francisco,CA,94016 +271190,27in 4K Gaming Monitor,1,389.99,2019-10-10 22:16:00,664 11th St, Boston,MA,02215 +271191,Google Phone,1,600.0,2019-10-13 16:20:00,855 Cherry St, Dallas,TX,75001 +271191,USB-C Charging Cable,1,11.95,2019-10-13 16:20:00,855 Cherry St, Dallas,TX,75001 +271192,Vareebadd Phone,1,400.0,2019-10-14 09:56:00,276 Lincoln St, New York City,NY,10001 +271193,USB-C Charging Cable,1,11.95,2019-10-30 09:21:00,638 Center St, New York City,NY,10001 +271194,Wired Headphones,1,11.99,2019-10-08 06:44:00,984 12th St, San Francisco,CA,94016 +271195,AAA Batteries (4-pack),2,2.99,2019-10-26 21:19:00,875 14th St, New York City,NY,10001 +271196,34in Ultrawide Monitor,1,379.99,2019-10-09 12:14:00,136 1st St, New York City,NY,10001 +271197,USB-C Charging Cable,1,11.95,2019-10-12 07:13:00,918 Maple St, Los Angeles,CA,90001 +271198,Lightning Charging Cable,1,14.95,2019-10-28 19:09:00,191 Hickory St, Los Angeles,CA,90001 +271199,Vareebadd Phone,1,400.0,2019-10-13 18:21:00,305 River St, Boston,MA,02215 +271199,USB-C Charging Cable,1,11.95,2019-10-13 18:21:00,305 River St, Boston,MA,02215 +271200,27in 4K Gaming Monitor,1,389.99,2019-10-10 19:49:00,767 Meadow St, Boston,MA,02215 +271201,AA Batteries (4-pack),1,3.84,2019-10-23 10:40:00,247 Pine St, Los Angeles,CA,90001 +271202,AAA Batteries (4-pack),1,2.99,2019-10-30 13:41:00,245 Dogwood St, Los Angeles,CA,90001 +271203,Wired Headphones,1,11.99,2019-10-30 20:03:00,337 Dogwood St, Seattle,WA,98101 +271204,Google Phone,1,600.0,2019-10-21 19:18:00,815 5th St, Boston,MA,02215 +271205,AA Batteries (4-pack),2,3.84,2019-10-08 09:44:00,882 Elm St, San Francisco,CA,94016 +271206,iPhone,1,700.0,2019-10-31 15:39:00,688 Church St, Seattle,WA,98101 +271207,Apple Airpods Headphones,1,150.0,2019-10-28 13:01:00,580 River St, Los Angeles,CA,90001 +271208,Bose SoundSport Headphones,1,99.99,2019-10-04 19:16:00,763 Adams St, Los Angeles,CA,90001 +271209,AA Batteries (4-pack),1,3.84,2019-10-19 23:41:00,183 8th St, Boston,MA,02215 +271209,34in Ultrawide Monitor,1,379.99,2019-10-19 23:41:00,183 8th St, Boston,MA,02215 +271210,AA Batteries (4-pack),2,3.84,2019-10-05 08:19:00,162 Adams St, Austin,TX,73301 +271211,AAA Batteries (4-pack),3,2.99,2019-10-15 00:16:00,645 5th St, Boston,MA,02215 +271212,34in Ultrawide Monitor,1,379.99,2019-10-06 17:14:00,353 South St, Austin,TX,73301 +271213,Macbook Pro Laptop,1,1700.0,2019-10-30 17:07:00,78 Dogwood St, Portland,OR,97035 +271214,Apple Airpods Headphones,1,150.0,2019-10-22 05:07:00,74 Wilson St, Austin,TX,73301 +271215,Flatscreen TV,1,300.0,2019-10-03 11:10:00,876 Wilson St, San Francisco,CA,94016 +271216,USB-C Charging Cable,1,11.95,2019-10-12 20:45:00,657 Wilson St, San Francisco,CA,94016 +271217,Wired Headphones,1,11.99,2019-10-11 20:36:00,769 Willow St, Dallas,TX,75001 +271218,Bose SoundSport Headphones,1,99.99,2019-10-13 22:52:00,301 Main St, Los Angeles,CA,90001 +271219,AAA Batteries (4-pack),2,2.99,2019-10-18 16:58:00,855 South St, New York City,NY,10001 +271220,Lightning Charging Cable,1,14.95,2019-10-29 18:39:00,675 River St, San Francisco,CA,94016 +271221,27in FHD Monitor,1,149.99,2019-10-30 16:17:00,100 Madison St, Los Angeles,CA,90001 +271222,USB-C Charging Cable,1,11.95,2019-10-16 10:59:00,716 Cherry St, Atlanta,GA,30301 +271223,USB-C Charging Cable,1,11.95,2019-10-10 20:38:00,491 Chestnut St, Atlanta,GA,30301 +271224,Lightning Charging Cable,1,14.95,2019-10-11 13:50:00,756 9th St, Atlanta,GA,30301 +271225,Macbook Pro Laptop,1,1700.0,2019-10-26 07:41:00,413 Spruce St, San Francisco,CA,94016 +271226,34in Ultrawide Monitor,1,379.99,2019-10-05 18:26:00,559 2nd St, San Francisco,CA,94016 +271227,27in 4K Gaming Monitor,1,389.99,2019-10-27 22:24:00,753 Willow St, New York City,NY,10001 +271228,USB-C Charging Cable,1,11.95,2019-10-23 19:38:00,685 South St, Boston,MA,02215 +271229,Apple Airpods Headphones,1,150.0,2019-10-28 21:46:00,810 Madison St, New York City,NY,10001 +271230,27in 4K Gaming Monitor,1,389.99,2019-10-02 19:19:00,866 Lincoln St, Boston,MA,02215 +271231,AAA Batteries (4-pack),2,2.99,2019-10-12 17:11:00,245 Lincoln St, Dallas,TX,75001 +271232,USB-C Charging Cable,1,11.95,2019-10-09 20:12:00,811 Washington St, Seattle,WA,98101 +271233,Wired Headphones,1,11.99,2019-10-02 19:18:00,515 Center St, San Francisco,CA,94016 +271234,AAA Batteries (4-pack),1,2.99,2019-10-04 13:20:00,179 Elm St, Los Angeles,CA,90001 +271235,Bose SoundSport Headphones,1,99.99,2019-10-17 18:41:00,421 Pine St, San Francisco,CA,94016 +271236,Lightning Charging Cable,1,14.95,2019-10-25 00:49:00,679 Dogwood St, New York City,NY,10001 +271237,Lightning Charging Cable,1,14.95,2019-10-12 11:41:00,814 5th St, Portland,OR,97035 +271238,AAA Batteries (4-pack),2,2.99,2019-10-28 07:35:00,83 Johnson St, Boston,MA,02215 +271239,USB-C Charging Cable,1,11.95,2019-10-07 08:53:00,311 North St, San Francisco,CA,94016 +271240,AAA Batteries (4-pack),1,2.99,2019-10-02 01:51:00,492 Cedar St, Seattle,WA,98101 +271241,27in 4K Gaming Monitor,1,389.99,2019-10-29 11:29:00,508 Lakeview St, San Francisco,CA,94016 +271242,Bose SoundSport Headphones,1,99.99,2019-10-17 11:54:00,594 Meadow St, Atlanta,GA,30301 +271243,20in Monitor,1,109.99,2019-10-12 07:53:00,484 Johnson St, Atlanta,GA,30301 +271244,AAA Batteries (4-pack),1,2.99,2019-10-11 09:14:00,901 Madison St, Portland,OR,97035 +271245,AA Batteries (4-pack),1,3.84,2019-10-14 12:48:00,113 Main St, Dallas,TX,75001 +271246,Lightning Charging Cable,1,14.95,2019-10-29 10:22:00,354 River St, Austin,TX,73301 +271247,AAA Batteries (4-pack),2,2.99,2019-10-28 11:53:00,414 Forest St, Boston,MA,02215 +271248,Lightning Charging Cable,1,14.95,2019-10-16 08:54:00,312 Walnut St, Boston,MA,02215 +271249,AAA Batteries (4-pack),1,2.99,2019-10-22 20:16:00,927 River St, Atlanta,GA,30301 +271250,AA Batteries (4-pack),1,3.84,2019-10-11 13:34:00,308 Dogwood St, Los Angeles,CA,90001 +271251,Apple Airpods Headphones,1,150.0,2019-10-26 09:44:00,220 Meadow St, New York City,NY,10001 +271252,27in FHD Monitor,1,149.99,2019-10-21 12:12:00,635 North St, New York City,NY,10001 +271253,AA Batteries (4-pack),1,3.84,2019-10-12 08:36:00,45 Lake St, San Francisco,CA,94016 +271254,Wired Headphones,1,11.99,2019-10-27 18:12:00,470 Chestnut St, Los Angeles,CA,90001 +271255,Vareebadd Phone,1,400.0,2019-10-24 15:49:00,963 Johnson St, Los Angeles,CA,90001 +271256,Bose SoundSport Headphones,1,99.99,2019-10-26 19:42:00,84 Jackson St, San Francisco,CA,94016 +271257,Bose SoundSport Headphones,1,99.99,2019-10-27 13:40:00,382 Willow St, Austin,TX,73301 +271258,Wired Headphones,1,11.99,2019-10-22 18:18:00,383 2nd St, Austin,TX,73301 +271259,USB-C Charging Cable,1,11.95,2019-10-15 09:14:00,728 West St, Boston,MA,02215 +271260,27in FHD Monitor,1,149.99,2019-10-05 17:39:00,233 6th St, New York City,NY,10001 +271261,AA Batteries (4-pack),1,3.84,2019-10-07 10:59:00,206 Forest St, Boston,MA,02215 +271262,Lightning Charging Cable,1,14.95,2019-10-10 17:24:00,342 Forest St, Los Angeles,CA,90001 +271263,27in 4K Gaming Monitor,1,389.99,2019-10-31 22:00:00,742 Maple St, New York City,NY,10001 +271264,ThinkPad Laptop,1,999.99,2019-10-04 18:56:00,821 Church St, Seattle,WA,98101 +271265,20in Monitor,1,109.99,2019-10-09 19:41:00,369 Highland St, Atlanta,GA,30301 +271266,Lightning Charging Cable,1,14.95,2019-10-29 17:42:00,977 Elm St, San Francisco,CA,94016 +271267,iPhone,1,700.0,2019-10-25 07:50:00,311 Center St, Portland,OR,97035 +271268,USB-C Charging Cable,2,11.95,2019-10-31 12:53:00,927 Sunset St, Seattle,WA,98101 +271269,Bose SoundSport Headphones,1,99.99,2019-10-22 15:41:00,585 Pine St, San Francisco,CA,94016 +271270,AA Batteries (4-pack),1,3.84,2019-10-09 15:14:00,822 Hill St, Dallas,TX,75001 +271271,USB-C Charging Cable,1,11.95,2019-10-19 13:11:00,732 Spruce St, Los Angeles,CA,90001 +271272,Apple Airpods Headphones,1,150.0,2019-10-01 10:57:00,127 7th St, Los Angeles,CA,90001 +271273,Macbook Pro Laptop,1,1700.0,2019-10-10 07:34:00,197 2nd St, Dallas,TX,75001 +271274,Wired Headphones,2,11.99,2019-10-05 14:44:00,299 Forest St, San Francisco,CA,94016 +271275,27in FHD Monitor,1,149.99,2019-10-15 22:24:00,208 5th St, Portland,OR,97035 +271276,34in Ultrawide Monitor,1,379.99,2019-10-01 13:23:00,900 Lake St, Portland,OR,97035 +271277,USB-C Charging Cable,1,11.95,2019-10-21 11:37:00,235 7th St, Boston,MA,02215 +271278,27in 4K Gaming Monitor,1,389.99,2019-10-28 21:36:00,392 Highland St, San Francisco,CA,94016 +271279,Lightning Charging Cable,1,14.95,2019-10-23 20:19:00,7 11th St, Atlanta,GA,30301 +271280,20in Monitor,1,109.99,2019-10-20 19:26:00,407 Cherry St, Los Angeles,CA,90001 +271281,Lightning Charging Cable,1,14.95,2019-10-12 18:00:00,267 10th St, New York City,NY,10001 +271282,USB-C Charging Cable,1,11.95,2019-10-12 09:19:00,530 7th St, Los Angeles,CA,90001 +271283,Lightning Charging Cable,1,14.95,2019-10-28 19:54:00,880 Pine St, Boston,MA,02215 +271284,USB-C Charging Cable,1,11.95,2019-10-12 10:18:00,219 Chestnut St, Boston,MA,02215 +271285,Apple Airpods Headphones,1,150.0,2019-10-18 18:03:00,581 North St, San Francisco,CA,94016 +271286,AAA Batteries (4-pack),1,2.99,2019-10-20 20:07:00,296 Dogwood St, Boston,MA,02215 +271287,34in Ultrawide Monitor,1,379.99,2019-10-16 20:42:00,791 Main St, Los Angeles,CA,90001 +271288,Lightning Charging Cable,1,14.95,2019-10-03 09:25:00,223 2nd St, Portland,OR,97035 +271289,AAA Batteries (4-pack),1,2.99,2019-10-11 19:42:00,22 Lake St, Los Angeles,CA,90001 +271290,USB-C Charging Cable,1,11.95,2019-10-18 13:16:00,473 Willow St, San Francisco,CA,94016 +271291,Wired Headphones,1,11.99,2019-10-31 21:57:00,345 Jackson St, Los Angeles,CA,90001 +271292,Apple Airpods Headphones,1,150.0,2019-10-15 15:26:00,956 Maple St, Los Angeles,CA,90001 +271293,20in Monitor,1,109.99,2019-10-03 16:43:00,861 Pine St, Austin,TX,73301 +271294,Apple Airpods Headphones,1,150.0,2019-10-03 15:07:00,48 Lincoln St, San Francisco,CA,94016 +271295,Apple Airpods Headphones,1,150.0,2019-10-08 18:56:00,613 Ridge St, Austin,TX,73301 +271296,AA Batteries (4-pack),1,3.84,2019-10-02 15:54:00,722 Park St, San Francisco,CA,94016 +271297,AA Batteries (4-pack),3,3.84,2019-10-16 21:48:00,588 Elm St, Dallas,TX,75001 +271298,AA Batteries (4-pack),1,3.84,2019-10-12 22:22:00,372 Cedar St, San Francisco,CA,94016 +271299,AAA Batteries (4-pack),2,2.99,2019-10-12 10:46:00,858 Spruce St, Austin,TX,73301 +271300,AA Batteries (4-pack),1,3.84,2019-10-25 07:21:00,501 Center St, San Francisco,CA,94016 +271301,AA Batteries (4-pack),2,3.84,2019-10-04 19:59:00,474 Elm St, San Francisco,CA,94016 +271302,AA Batteries (4-pack),1,3.84,2019-10-27 22:41:00,889 Main St, Los Angeles,CA,90001 +271303,AA Batteries (4-pack),1,3.84,2019-10-18 13:49:00,101 Main St, Boston,MA,02215 +271304,27in FHD Monitor,1,149.99,2019-10-14 22:23:00,371 12th St, Portland,OR,97035 +271305,AA Batteries (4-pack),2,3.84,2019-10-06 17:25:00,608 1st St, New York City,NY,10001 +271306,Wired Headphones,1,11.99,2019-10-14 14:43:00,999 5th St, San Francisco,CA,94016 +271307,Apple Airpods Headphones,1,150.0,2019-10-16 15:31:00,507 Forest St, New York City,NY,10001 +271308,ThinkPad Laptop,1,999.99,2019-10-13 08:10:00,476 10th St, Boston,MA,02215 +271309,Apple Airpods Headphones,1,150.0,2019-10-14 17:04:00,374 12th St, San Francisco,CA,94016 +271310,Lightning Charging Cable,1,14.95,2019-10-15 14:50:00,849 Jackson St, New York City,NY,10001 +271311,AAA Batteries (4-pack),1,2.99,2019-10-27 22:15:00,768 8th St, New York City,NY,10001 +271312,AA Batteries (4-pack),1,3.84,2019-10-03 17:26:00,115 South St, New York City,NY,10001 +271313,USB-C Charging Cable,1,11.95,2019-10-04 13:18:00,255 2nd St, Portland,OR,97035 +271314,Bose SoundSport Headphones,1,99.99,2019-10-30 14:36:00,322 Meadow St, Los Angeles,CA,90001 +271315,27in FHD Monitor,1,149.99,2019-10-27 11:28:00,947 Lake St, San Francisco,CA,94016 +271316,Wired Headphones,1,11.99,2019-10-11 22:37:00,384 Dogwood St, Los Angeles,CA,90001 +271317,iPhone,1,700.0,2019-10-26 13:06:00,466 Lakeview St, New York City,NY,10001 +271318,34in Ultrawide Monitor,1,379.99,2019-10-12 12:18:00,634 Lakeview St, San Francisco,CA,94016 +271319,27in 4K Gaming Monitor,1,389.99,2019-10-30 18:26:00,414 Lakeview St, New York City,NY,10001 +271320,27in 4K Gaming Monitor,1,389.99,2019-10-06 13:01:00,289 Forest St, Los Angeles,CA,90001 +271321,AA Batteries (4-pack),1,3.84,2019-10-23 22:12:00,299 Wilson St, San Francisco,CA,94016 +271322,iPhone,1,700.0,2019-10-03 15:23:00,727 Washington St, Boston,MA,02215 +271323,Apple Airpods Headphones,1,150.0,2019-10-20 21:56:00,86 Lake St, San Francisco,CA,94016 +271324,Lightning Charging Cable,1,14.95,2019-10-21 10:01:00,683 Walnut St, Portland,OR,97035 +271325,Flatscreen TV,1,300.0,2019-10-18 15:34:00,785 11th St, New York City,NY,10001 +271326,Bose SoundSport Headphones,1,99.99,2019-10-07 10:41:00,607 Forest St, Austin,TX,73301 +271327,AAA Batteries (4-pack),1,2.99,2019-10-19 20:37:00,225 River St, Atlanta,GA,30301 +271328,Google Phone,1,600.0,2019-10-15 07:14:00,736 Washington St, San Francisco,CA,94016 +271328,USB-C Charging Cable,1,11.95,2019-10-15 07:14:00,736 Washington St, San Francisco,CA,94016 +271329,Lightning Charging Cable,2,14.95,2019-10-19 16:10:00,882 Main St, Dallas,TX,75001 +271330,USB-C Charging Cable,1,11.95,2019-10-26 08:50:00,128 5th St, New York City,NY,10001 +271331,AAA Batteries (4-pack),1,2.99,2019-10-15 21:19:00,816 Adams St, San Francisco,CA,94016 +271332,Apple Airpods Headphones,1,150.0,2019-10-11 22:37:00,275 10th St, Boston,MA,02215 +271333,Bose SoundSport Headphones,1,99.99,2019-10-05 18:51:00,706 River St, New York City,NY,10001 +271334,20in Monitor,1,109.99,2019-10-01 13:53:00,255 Maple St, Portland,OR,97035 +271335,AAA Batteries (4-pack),1,2.99,2019-10-31 10:27:00,117 Willow St, Los Angeles,CA,90001 +271336,Bose SoundSport Headphones,1,99.99,2019-10-15 10:24:00,131 8th St, Austin,TX,73301 +271337,Wired Headphones,1,11.99,2019-10-07 16:09:00,695 Jackson St, Boston,MA,02215 +271338,USB-C Charging Cable,1,11.95,2019-10-24 21:59:00,406 Adams St, Los Angeles,CA,90001 +271339,AA Batteries (4-pack),4,3.84,2019-10-01 20:02:00,533 Lincoln St, New York City,NY,10001 +271340,Lightning Charging Cable,1,14.95,2019-10-03 10:28:00,12 12th St, San Francisco,CA,94016 +271340,Apple Airpods Headphones,1,150.0,2019-10-03 10:28:00,12 12th St, San Francisco,CA,94016 +271341,Wired Headphones,1,11.99,2019-10-26 12:42:00,530 Highland St, San Francisco,CA,94016 +271342,iPhone,1,700.0,2019-10-18 22:54:00,124 Forest St, Seattle,WA,98101 +271343,AAA Batteries (4-pack),1,2.99,2019-10-25 19:18:00,549 Park St, San Francisco,CA,94016 +271344,Bose SoundSport Headphones,1,99.99,2019-10-07 19:33:00,158 4th St, New York City,NY,10001 +271345,Wired Headphones,1,11.99,2019-10-31 07:54:00,181 Hickory St, San Francisco,CA,94016 +271346,Apple Airpods Headphones,1,150.0,2019-10-31 13:28:00,582 Lincoln St, Los Angeles,CA,90001 +271347,iPhone,1,700.0,2019-10-11 21:31:00,966 4th St, Portland,OR,97035 +271348,USB-C Charging Cable,1,11.95,2019-10-04 12:30:00,684 7th St, Seattle,WA,98101 +271349,27in FHD Monitor,1,149.99,2019-10-11 15:22:00,416 Hill St, San Francisco,CA,94016 +271350,Flatscreen TV,1,300.0,2019-10-29 04:33:00,281 10th St, New York City,NY,10001 +271351,AAA Batteries (4-pack),1,2.99,2019-10-25 00:44:00,576 Center St, Dallas,TX,75001 +271352,Wired Headphones,1,11.99,2019-10-04 10:57:00,330 Hill St, Los Angeles,CA,90001 +271353,iPhone,1,700.0,2019-10-30 11:55:00,569 Main St, New York City,NY,10001 +271354,Google Phone,1,600.0,2019-10-07 19:55:00,47 4th St, Seattle,WA,98101 +271355,iPhone,1,700.0,2019-10-06 18:36:00,519 West St, Boston,MA,02215 +271355,Lightning Charging Cable,1,14.95,2019-10-06 18:36:00,519 West St, Boston,MA,02215 +271356,Wired Headphones,1,11.99,2019-10-17 13:01:00,63 2nd St, New York City,NY,10001 +271357,AA Batteries (4-pack),1,3.84,2019-10-03 21:14:00,789 North St, New York City,NY,10001 +271358,AAA Batteries (4-pack),3,2.99,2019-10-10 10:01:00,718 Meadow St, Boston,MA,02215 +271359,iPhone,1,700.0,2019-10-25 23:17:00,703 Lakeview St, Boston,MA,02215 +271359,Lightning Charging Cable,1,14.95,2019-10-25 23:17:00,703 Lakeview St, Boston,MA,02215 +271360,Apple Airpods Headphones,1,150.0,2019-10-18 21:49:00,315 Hill St, Los Angeles,CA,90001 +271361,AAA Batteries (4-pack),3,2.99,2019-10-14 21:18:00,715 7th St, Portland,OR,97035 +271362,Lightning Charging Cable,2,14.95,2019-10-02 10:32:00,698 North St, Seattle,WA,98101 +271363,Lightning Charging Cable,1,14.95,2019-10-10 17:41:00,820 Dogwood St, Boston,MA,02215 +271364,Wired Headphones,1,11.99,2019-10-21 15:53:00,684 Ridge St, Los Angeles,CA,90001 +271365,ThinkPad Laptop,1,999.99,2019-10-16 13:21:00,829 7th St, San Francisco,CA,94016 +271366,USB-C Charging Cable,1,11.95,2019-10-12 06:16:00,111 Spruce St, San Francisco,CA,94016 +271367,AA Batteries (4-pack),1,3.84,2019-10-14 16:41:00,338 Cedar St, Boston,MA,02215 +271368,Wired Headphones,1,11.99,2019-10-05 08:09:00,343 Wilson St, San Francisco,CA,94016 +271369,ThinkPad Laptop,1,999.99,2019-10-16 23:03:00,991 Hickory St, Dallas,TX,75001 +271370,AAA Batteries (4-pack),2,2.99,2019-10-20 10:05:00,209 Jackson St, Portland,OR,97035 +271371,iPhone,1,700.0,2019-10-15 10:11:00,86 West St, San Francisco,CA,94016 +271372,34in Ultrawide Monitor,1,379.99,2019-10-26 13:38:00,809 Main St, Austin,TX,73301 +271373,Flatscreen TV,1,300.0,2019-10-11 10:09:00,144 7th St, Dallas,TX,75001 +271374,Lightning Charging Cable,1,14.95,2019-10-19 18:51:00,233 Hickory St, Dallas,TX,75001 +271375,Flatscreen TV,1,300.0,2019-10-17 12:32:00,415 12th St, Atlanta,GA,30301 +271376,Lightning Charging Cable,1,14.95,2019-10-05 00:11:00,64 North St, Dallas,TX,75001 +271377,Lightning Charging Cable,1,14.95,2019-10-08 08:15:00,485 Lakeview St, San Francisco,CA,94016 +271378,USB-C Charging Cable,1,11.95,2019-10-23 17:16:00,952 Washington St, Los Angeles,CA,90001 +271378,AAA Batteries (4-pack),1,2.99,2019-10-23 17:16:00,952 Washington St, Los Angeles,CA,90001 +271379,Lightning Charging Cable,1,14.95,2019-10-06 12:29:00,784 11th St, Austin,TX,73301 +271380,iPhone,1,700.0,2019-10-11 09:15:00,138 South St, San Francisco,CA,94016 +271381,27in 4K Gaming Monitor,1,389.99,2019-10-26 06:25:00,891 2nd St, New York City,NY,10001 +271382,iPhone,1,700.0,2019-10-10 15:06:00,246 Hickory St, New York City,NY,10001 +271383,Macbook Pro Laptop,1,1700.0,2019-10-08 10:41:00,324 Jefferson St, New York City,NY,10001 +271384,USB-C Charging Cable,1,11.95,2019-10-15 13:06:00,136 13th St, San Francisco,CA,94016 +271385,27in FHD Monitor,1,149.99,2019-10-10 13:19:00,857 South St, Seattle,WA,98101 +271386,AAA Batteries (4-pack),2,2.99,2019-10-02 14:18:00,889 Forest St, Los Angeles,CA,90001 +271387,20in Monitor,1,109.99,2019-10-17 13:25:00,508 Ridge St, Los Angeles,CA,90001 +271388,AAA Batteries (4-pack),1,2.99,2019-10-26 12:53:00,318 5th St, Los Angeles,CA,90001 +271389,USB-C Charging Cable,1,11.95,2019-10-07 14:52:00,946 11th St, New York City,NY,10001 +271390,Bose SoundSport Headphones,1,99.99,2019-10-27 08:54:00,36 14th St, Boston,MA,02215 +271391,Macbook Pro Laptop,1,1700.0,2019-10-01 11:57:00,380 Sunset St, Los Angeles,CA,90001 +271392,Lightning Charging Cable,2,14.95,2019-10-28 00:14:00,413 Lake St, San Francisco,CA,94016 +271393,27in FHD Monitor,1,149.99,2019-10-20 12:34:00,416 1st St, Atlanta,GA,30301 +271393,Lightning Charging Cable,1,14.95,2019-10-20 12:34:00,416 1st St, Atlanta,GA,30301 +271394,USB-C Charging Cable,1,11.95,2019-10-06 21:28:00,993 Park St, New York City,NY,10001 +271395,Apple Airpods Headphones,1,150.0,2019-10-07 22:07:00,790 8th St, Atlanta,GA,30301 +271396,USB-C Charging Cable,1,11.95,2019-10-07 16:40:00,861 Jackson St, San Francisco,CA,94016 +271397,USB-C Charging Cable,1,11.95,2019-10-15 12:10:00,71 Ridge St, Seattle,WA,98101 +271398,Bose SoundSport Headphones,1,99.99,2019-10-15 13:27:00,382 North St, San Francisco,CA,94016 +271399,AAA Batteries (4-pack),1,2.99,2019-10-27 00:39:00,522 Center St, Los Angeles,CA,90001 +271400,Lightning Charging Cable,1,14.95,2019-10-05 20:25:00,53 Adams St, Boston,MA,02215 +271401,Wired Headphones,2,11.99,2019-10-16 12:14:00,209 West St, Seattle,WA,98101 +271402,27in FHD Monitor,1,149.99,2019-10-19 12:42:00,726 Chestnut St, New York City,NY,10001 +271403,AA Batteries (4-pack),1,3.84,2019-10-25 16:45:00,502 Meadow St, Dallas,TX,75001 +271404,27in 4K Gaming Monitor,1,389.99,2019-10-27 18:29:00,972 2nd St, Los Angeles,CA,90001 +271405,Apple Airpods Headphones,1,150.0,2019-10-02 11:46:00,28 South St, Los Angeles,CA,90001 +271405,iPhone,1,700.0,2019-10-02 11:46:00,28 South St, Los Angeles,CA,90001 +271406,AA Batteries (4-pack),1,3.84,2019-10-21 21:05:00,205 Johnson St, New York City,NY,10001 +271407,Lightning Charging Cable,1,14.95,2019-10-29 11:03:00,191 12th St, Los Angeles,CA,90001 +271408,Lightning Charging Cable,1,14.95,2019-10-13 14:29:00,699 Forest St, Boston,MA,02215 +271409,iPhone,1,700.0,2019-10-29 12:16:00,420 1st St, San Francisco,CA,94016 +271409,Wired Headphones,1,11.99,2019-10-29 12:16:00,420 1st St, San Francisco,CA,94016 +271410,USB-C Charging Cable,1,11.95,2019-10-16 21:31:00,20 Ridge St, New York City,NY,10001 +271411,AAA Batteries (4-pack),1,2.99,2019-10-10 06:48:00,724 Forest St, Atlanta,GA,30301 +271412,Bose SoundSport Headphones,1,99.99,2019-10-23 00:49:00,572 7th St, San Francisco,CA,94016 +271413,Bose SoundSport Headphones,1,99.99,2019-10-23 20:55:00,369 Pine St, San Francisco,CA,94016 +271414,AAA Batteries (4-pack),3,2.99,2019-10-31 16:46:00,637 Lakeview St, New York City,NY,10001 +271415,Google Phone,1,600.0,2019-10-29 18:54:00,919 Jackson St, Portland,OR,97035 +271415,Wired Headphones,1,11.99,2019-10-29 18:54:00,919 Jackson St, Portland,OR,97035 +271416,Wired Headphones,1,11.99,2019-10-22 19:14:00,599 Lincoln St, San Francisco,CA,94016 +271417,AAA Batteries (4-pack),1,2.99,2019-10-23 15:38:00,80 Hickory St, Los Angeles,CA,90001 +271418,Bose SoundSport Headphones,1,99.99,2019-10-30 00:00:00,104 Jackson St, New York City,NY,10001 +271419,Apple Airpods Headphones,1,150.0,2019-10-03 12:42:00,76 Lake St, Atlanta,GA,30301 +271420,USB-C Charging Cable,1,11.95,2019-10-06 15:20:00,209 West St, San Francisco,CA,94016 +271421,iPhone,1,700.0,2019-10-22 13:32:00,27 2nd St, Portland,OR,97035 +271422,Wired Headphones,1,11.99,2019-10-08 21:28:00,365 Hill St, Atlanta,GA,30301 +271423,Apple Airpods Headphones,1,150.0,2019-10-26 12:20:00,190 Ridge St, San Francisco,CA,94016 +271424,Lightning Charging Cable,1,14.95,2019-10-09 16:46:00,799 11th St, Los Angeles,CA,90001 +271425,Apple Airpods Headphones,1,150.0,2019-10-14 00:04:00,708 Willow St, Los Angeles,CA,90001 +271426,Apple Airpods Headphones,1,150.0,2019-10-07 09:13:00,776 Highland St, San Francisco,CA,94016 +271427,27in FHD Monitor,1,149.99,2019-10-26 10:01:00,204 6th St, New York City,NY,10001 +271428,AA Batteries (4-pack),1,3.84,2019-10-27 21:01:00,37 Highland St, San Francisco,CA,94016 +271429,USB-C Charging Cable,3,11.95,2019-10-29 14:07:00,502 Dogwood St, Atlanta,GA,30301 +271430,Lightning Charging Cable,1,14.95,2019-10-29 16:35:00,535 Church St, Austin,TX,73301 +271431,Lightning Charging Cable,2,14.95,2019-10-24 11:27:00,48 8th St, Los Angeles,CA,90001 +271432,Wired Headphones,1,11.99,2019-10-07 16:10:00,383 Forest St, San Francisco,CA,94016 +271433,Wired Headphones,1,11.99,2019-10-24 13:51:00,985 Madison St, San Francisco,CA,94016 +271434,27in FHD Monitor,1,149.99,2019-10-06 10:39:00,616 Madison St, Boston,MA,02215 +271435,27in FHD Monitor,1,149.99,2019-10-07 23:11:00,85 Cedar St, Dallas,TX,75001 +271436,Bose SoundSport Headphones,1,99.99,2019-10-10 14:30:00,474 Sunset St, Atlanta,GA,30301 +271437,Lightning Charging Cable,1,14.95,2019-10-01 22:10:00,14 Madison St, Los Angeles,CA,90001 +271438,AA Batteries (4-pack),1,3.84,2019-10-22 23:23:00,717 12th St, New York City,NY,10001 +271439,AAA Batteries (4-pack),1,2.99,2019-10-12 07:02:00,575 5th St, Boston,MA,02215 +271440,AA Batteries (4-pack),1,3.84,2019-10-10 19:07:00,215 Lake St, Boston,MA,02215 +271441,Wired Headphones,1,11.99,2019-10-18 20:38:00,109 Main St, Los Angeles,CA,90001 +271442,AAA Batteries (4-pack),1,2.99,2019-10-13 19:59:00,143 Johnson St, Boston,MA,02215 +271443,Wired Headphones,1,11.99,2019-10-03 23:07:00,898 Johnson St, San Francisco,CA,94016 +271444,AAA Batteries (4-pack),1,2.99,2019-10-30 14:24:00,415 River St, Boston,MA,02215 +271445,Google Phone,1,600.0,2019-10-03 16:08:00,649 13th St, Dallas,TX,75001 +271446,Lightning Charging Cable,2,14.95,2019-10-25 14:51:00,887 Forest St, Portland,OR,97035 +271447,USB-C Charging Cable,1,11.95,2019-10-17 04:23:00,806 Dogwood St, New York City,NY,10001 +271448,Wired Headphones,1,11.99,2019-10-02 19:23:00,831 Lakeview St, Dallas,TX,75001 +271449,20in Monitor,1,109.99,2019-10-30 21:47:00,498 10th St, Los Angeles,CA,90001 +271450,Google Phone,1,600.0,2019-10-09 21:48:00,192 Cherry St, Seattle,WA,98101 +271451,Lightning Charging Cable,1,14.95,2019-10-17 09:25:00,672 7th St, Austin,TX,73301 +271452,Lightning Charging Cable,2,14.95,2019-10-13 19:56:00,790 Willow St, Los Angeles,CA,90001 +271453,Wired Headphones,1,11.99,2019-10-10 21:11:00,698 8th St, San Francisco,CA,94016 +271454,Apple Airpods Headphones,1,150.0,2019-10-27 12:45:00,370 Chestnut St, Seattle,WA,98101 +271455,20in Monitor,1,109.99,2019-10-12 21:15:00,821 North St, Boston,MA,02215 +271456,Wired Headphones,1,11.99,2019-10-07 10:30:00,377 Hickory St, Los Angeles,CA,90001 +271457,AAA Batteries (4-pack),1,2.99,2019-10-11 18:46:00,386 Chestnut St, Los Angeles,CA,90001 +271458,Lightning Charging Cable,1,14.95,2019-10-01 20:22:00,64 5th St, Boston,MA,02215 +271459,USB-C Charging Cable,1,11.95,2019-10-21 00:04:00,283 Maple St, San Francisco,CA,94016 +271460,ThinkPad Laptop,1,999.99,2019-10-11 11:41:00,483 5th St, New York City,NY,10001 +271461,Apple Airpods Headphones,1,150.0,2019-10-24 12:54:00,193 Chestnut St, Atlanta,GA,30301 +271462,27in FHD Monitor,1,149.99,2019-10-20 17:15:00,173 Cherry St, Dallas,TX,75001 +271463,Lightning Charging Cable,1,14.95,2019-10-02 10:15:00,362 Cedar St, New York City,NY,10001 +271464,ThinkPad Laptop,1,999.99,2019-10-20 21:08:00,367 6th St, Los Angeles,CA,90001 +271465,AA Batteries (4-pack),3,3.84,2019-10-18 12:56:00,290 Dogwood St, San Francisco,CA,94016 +271466,USB-C Charging Cable,1,11.95,2019-10-03 15:06:00,31 Willow St, San Francisco,CA,94016 +271467,Bose SoundSport Headphones,1,99.99,2019-10-26 23:51:00,323 Meadow St, Los Angeles,CA,90001 +271468,Wired Headphones,1,11.99,2019-10-09 23:20:00,523 4th St, Atlanta,GA,30301 +271469,Wired Headphones,1,11.99,2019-10-30 20:36:00,611 Wilson St, Los Angeles,CA,90001 +271470,AA Batteries (4-pack),1,3.84,2019-10-23 11:00:00,54 2nd St, Portland,OR,97035 +271471,AAA Batteries (4-pack),1,2.99,2019-10-04 15:33:00,164 Lincoln St, San Francisco,CA,94016 +271472,Google Phone,1,600.0,2019-10-13 06:13:00,307 Dogwood St, New York City,NY,10001 +271473,Apple Airpods Headphones,1,150.0,2019-10-17 23:24:00,531 9th St, Los Angeles,CA,90001 +271474,27in 4K Gaming Monitor,1,389.99,2019-10-11 22:47:00,682 Cedar St, San Francisco,CA,94016 +271475,Apple Airpods Headphones,1,150.0,2019-10-12 21:49:00,897 Main St, Los Angeles,CA,90001 +271476,LG Washing Machine,1,600.0,2019-10-16 21:22:00,259 13th St, San Francisco,CA,94016 +271477,Bose SoundSport Headphones,1,99.99,2019-10-21 23:33:00,834 Spruce St, Portland,OR,97035 +271478,Google Phone,1,600.0,2019-10-04 13:51:00,542 Wilson St, San Francisco,CA,94016 +271479,USB-C Charging Cable,1,11.95,2019-10-19 09:40:00,803 11th St, Seattle,WA,98101 +271480,Bose SoundSport Headphones,1,99.99,2019-10-31 10:59:00,419 South St, Los Angeles,CA,90001 +271481,AA Batteries (4-pack),1,3.84,2019-10-28 17:06:00,118 Cedar St, Portland,OR,97035 +271482,Lightning Charging Cable,1,14.95,2019-10-27 14:30:00,780 Spruce St, New York City,NY,10001 +271483,AA Batteries (4-pack),1,3.84,2019-10-03 18:29:00,727 Maple St, San Francisco,CA,94016 +271484,USB-C Charging Cable,1,11.95,2019-10-26 06:57:00,372 1st St, Portland,OR,97035 +271485,AA Batteries (4-pack),1,3.84,2019-10-08 21:03:00,107 Jackson St, Atlanta,GA,30301 +271486,AAA Batteries (4-pack),2,2.99,2019-10-31 20:04:00,492 River St, San Francisco,CA,94016 +271487,Lightning Charging Cable,1,14.95,2019-10-30 15:29:00,756 Lake St, San Francisco,CA,94016 +271488,AAA Batteries (4-pack),1,2.99,2019-10-23 22:01:00,82 12th St, Los Angeles,CA,90001 +271489,Apple Airpods Headphones,1,150.0,2019-10-23 14:35:00,573 Maple St, Boston,MA,02215 +271490,LG Dryer,1,600.0,2019-10-22 18:51:00,8 13th St, Boston,MA,02215 +271491,iPhone,1,700.0,2019-10-08 10:57:00,448 Sunset St, San Francisco,CA,94016 +271491,Wired Headphones,1,11.99,2019-10-08 10:57:00,448 Sunset St, San Francisco,CA,94016 +271492,USB-C Charging Cable,1,11.95,2019-10-27 07:16:00,958 9th St, Dallas,TX,75001 +271493,Lightning Charging Cable,1,14.95,2019-10-09 13:15:00,684 13th St, New York City,NY,10001 +271494,AAA Batteries (4-pack),1,2.99,2019-10-03 07:16:00,751 13th St, New York City,NY,10001 +271495,AAA Batteries (4-pack),2,2.99,2019-10-28 11:57:00,534 Meadow St, Boston,MA,02215 +271496,Wired Headphones,1,11.99,2019-10-09 12:09:00,307 Lincoln St, San Francisco,CA,94016 +271497,Wired Headphones,1,11.99,2019-10-05 07:49:00,740 10th St, Boston,MA,02215 +271498,34in Ultrawide Monitor,1,379.99,2019-10-11 18:10:00,321 9th St, Los Angeles,CA,90001 +271499,USB-C Charging Cable,1,11.95,2019-10-16 19:16:00,76 Chestnut St, San Francisco,CA,94016 +271500,Google Phone,1,600.0,2019-10-01 15:42:00,503 Main St, New York City,NY,10001 +271501,Lightning Charging Cable,1,14.95,2019-10-17 22:18:00,145 1st St, Los Angeles,CA,90001 +271502,Bose SoundSport Headphones,1,99.99,2019-10-06 10:20:00,491 Forest St, San Francisco,CA,94016 +271503,Lightning Charging Cable,1,14.95,2019-10-16 22:28:00,539 Elm St, San Francisco,CA,94016 +271504,AA Batteries (4-pack),1,3.84,2019-10-08 20:12:00,387 Sunset St, Boston,MA,02215 +271505,Wired Headphones,1,11.99,2019-10-29 18:03:00,537 Lakeview St, Portland,OR,97035 +271506,Apple Airpods Headphones,1,150.0,2019-10-22 22:23:00,267 Elm St, San Francisco,CA,94016 +271507,Lightning Charging Cable,1,14.95,2019-10-30 12:54:00,933 Highland St, San Francisco,CA,94016 +271508,iPhone,1,700.0,2019-10-18 18:41:00,609 Dogwood St, Seattle,WA,98101 +271509,AA Batteries (4-pack),1,3.84,2019-10-24 17:06:00,824 4th St, Dallas,TX,75001 +271510,Wired Headphones,2,11.99,2019-10-23 17:02:00,837 Elm St, Dallas,TX,75001 +271511,Bose SoundSport Headphones,1,99.99,2019-10-24 18:57:00,328 Hill St, Dallas,TX,75001 +271512,USB-C Charging Cable,1,11.95,2019-10-30 16:41:00,667 Johnson St, Los Angeles,CA,90001 +271513,USB-C Charging Cable,1,11.95,2019-10-17 17:04:00,901 Church St, Boston,MA,02215 +271514,AAA Batteries (4-pack),1,2.99,2019-10-03 13:59:00,660 2nd St, Los Angeles,CA,90001 +271515,Wired Headphones,1,11.99,2019-10-04 08:53:00,291 Meadow St, Los Angeles,CA,90001 +271516,Lightning Charging Cable,3,14.95,2019-10-31 17:09:00,974 Willow St, Los Angeles,CA,90001 +271517,Lightning Charging Cable,1,14.95,2019-10-26 22:01:00,635 2nd St, Los Angeles,CA,90001 +271518,27in FHD Monitor,1,149.99,2019-10-23 02:11:00,649 Church St, Los Angeles,CA,90001 +271519,AA Batteries (4-pack),1,3.84,2019-10-09 12:00:00,579 Church St, Los Angeles,CA,90001 +271519,AAA Batteries (4-pack),1,2.99,2019-10-09 12:00:00,579 Church St, Los Angeles,CA,90001 +271520,Apple Airpods Headphones,1,150.0,2019-10-24 12:17:00,954 9th St, Seattle,WA,98101 +271521,20in Monitor,1,109.99,2019-10-14 18:50:00,814 8th St, Dallas,TX,75001 +271522,iPhone,1,700.0,2019-10-26 13:37:00,678 Ridge St, Boston,MA,02215 +271523,Wired Headphones,1,11.99,2019-10-16 08:41:00,171 Meadow St, San Francisco,CA,94016 +271524,Bose SoundSport Headphones,1,99.99,2019-10-15 08:57:00,925 Meadow St, New York City,NY,10001 +271525,Wired Headphones,1,11.99,2019-10-13 10:43:00,686 Jackson St, Los Angeles,CA,90001 +271526,Apple Airpods Headphones,1,150.0,2019-10-29 17:46:00,98 Ridge St, Austin,TX,73301 +271527,27in FHD Monitor,1,149.99,2019-10-02 18:20:00,973 4th St, Portland,OR,97035 +271528,Lightning Charging Cable,2,14.95,2019-10-08 19:40:00,554 Cedar St, New York City,NY,10001 +271529,27in FHD Monitor,1,149.99,2019-10-23 18:37:00,109 Spruce St, Los Angeles,CA,90001 +271530,Bose SoundSport Headphones,1,99.99,2019-10-21 13:46:00,455 Park St, Los Angeles,CA,90001 +271531,Lightning Charging Cable,1,14.95,2019-10-20 17:54:00,742 Jefferson St, Atlanta,GA,30301 +271532,AA Batteries (4-pack),1,3.84,2019-10-24 01:48:00,513 Washington St, San Francisco,CA,94016 +271533,Lightning Charging Cable,1,14.95,2019-10-13 10:08:00,393 Sunset St, San Francisco,CA,94016 +271534,Macbook Pro Laptop,1,1700.0,2019-10-07 20:29:00,923 South St, New York City,NY,10001 +271535,USB-C Charging Cable,2,11.95,2019-10-21 17:41:00,595 Adams St, Boston,MA,02215 +271536,ThinkPad Laptop,1,999.99,2019-10-28 06:46:00,257 Adams St, Boston,MA,02215 +271537,AA Batteries (4-pack),1,3.84,2019-10-22 11:34:00,746 Walnut St, Boston,MA,02215 +271538,34in Ultrawide Monitor,1,379.99,2019-10-07 16:01:00,444 Madison St, Atlanta,GA,30301 +271539,Lightning Charging Cable,1,14.95,2019-10-25 21:45:00,829 Lake St, San Francisco,CA,94016 +271540,Lightning Charging Cable,1,14.95,2019-10-25 14:21:00,798 Elm St, Seattle,WA,98101 +271541,iPhone,1,700.0,2019-10-20 22:19:00,396 South St, Austin,TX,73301 +271542,ThinkPad Laptop,1,999.99,2019-10-20 00:31:00,764 Washington St, Seattle,WA,98101 +271543,27in 4K Gaming Monitor,1,389.99,2019-10-22 12:21:00,778 13th St, Boston,MA,02215 +271544,Apple Airpods Headphones,1,150.0,2019-10-29 16:12:00,648 13th St, Los Angeles,CA,90001 +271545,AA Batteries (4-pack),1,3.84,2019-10-20 18:22:00,483 Lake St, Seattle,WA,98101 +271546,Bose SoundSport Headphones,1,99.99,2019-10-29 08:55:00,105 Elm St, Portland,OR,97035 +271547,34in Ultrawide Monitor,1,379.99,2019-10-19 09:47:00,822 4th St, San Francisco,CA,94016 +271548,AA Batteries (4-pack),1,3.84,2019-10-01 19:15:00,825 Spruce St, Los Angeles,CA,90001 +271549,27in 4K Gaming Monitor,1,389.99,2019-10-26 15:37:00,63 6th St, New York City,NY,10001 +271550,20in Monitor,1,109.99,2019-10-06 18:00:00,939 6th St, San Francisco,CA,94016 +271551,Lightning Charging Cable,1,14.95,2019-10-09 14:07:00,618 4th St, San Francisco,CA,94016 +271552,AAA Batteries (4-pack),1,2.99,2019-10-29 14:54:00,996 Adams St, Austin,TX,73301 +271553,AA Batteries (4-pack),1,3.84,2019-10-17 20:51:00,903 Pine St, San Francisco,CA,94016 +271554,ThinkPad Laptop,1,999.99,2019-10-08 21:49:00,244 Park St, San Francisco,CA,94016 +271555,Lightning Charging Cable,1,14.95,2019-10-04 07:41:00,911 Johnson St, Dallas,TX,75001 +271556,Lightning Charging Cable,1,14.95,2019-10-24 14:03:00,294 Park St, San Francisco,CA,94016 +271557,27in FHD Monitor,1,149.99,2019-10-09 18:28:00,158 Forest St, Los Angeles,CA,90001 +271558,Apple Airpods Headphones,1,150.0,2019-10-24 21:50:00,737 Washington St, New York City,NY,10001 +271559,Lightning Charging Cable,1,14.95,2019-10-14 14:27:00,13 Ridge St, Los Angeles,CA,90001 +271560,AA Batteries (4-pack),1,3.84,2019-10-19 13:31:00,317 Hickory St, Atlanta,GA,30301 +271561,AA Batteries (4-pack),3,3.84,2019-10-25 20:46:00,843 Dogwood St, New York City,NY,10001 +271562,Wired Headphones,1,11.99,2019-10-15 09:54:00,256 6th St, Boston,MA,02215 +271563,Flatscreen TV,1,300.0,2019-10-21 13:01:00,140 Highland St, San Francisco,CA,94016 +271564,USB-C Charging Cable,1,11.95,2019-10-03 12:16:00,442 12th St, Los Angeles,CA,90001 +271565,AA Batteries (4-pack),1,3.84,2019-10-06 18:40:00,938 12th St, New York City,NY,10001 +271566,Lightning Charging Cable,1,14.95,2019-10-10 21:26:00,463 Pine St, Los Angeles,CA,90001 +271567,Bose SoundSport Headphones,1,99.99,2019-10-24 15:25:00,409 Spruce St, Los Angeles,CA,90001 +271568,27in 4K Gaming Monitor,1,389.99,2019-10-07 11:48:00,289 7th St, Los Angeles,CA,90001 +271569,Macbook Pro Laptop,1,1700.0,2019-10-29 17:00:00,160 Park St, Los Angeles,CA,90001 +271570,Apple Airpods Headphones,1,150.0,2019-10-21 15:59:00,460 Johnson St, San Francisco,CA,94016 +271571,Lightning Charging Cable,1,14.95,2019-10-15 10:48:00,953 1st St, Boston,MA,02215 +271572,Apple Airpods Headphones,1,150.0,2019-10-24 18:04:00,578 10th St, San Francisco,CA,94016 +271573,Bose SoundSport Headphones,1,99.99,2019-10-17 10:32:00,560 South St, Dallas,TX,75001 +271574,USB-C Charging Cable,1,11.95,2019-10-17 04:09:00,944 Park St, Austin,TX,73301 +271575,Apple Airpods Headphones,1,150.0,2019-10-16 20:27:00,846 5th St, Los Angeles,CA,90001 +271576,AAA Batteries (4-pack),1,2.99,2019-10-30 11:58:00,81 South St, New York City,NY,10001 +271577,iPhone,1,700.0,2019-10-17 13:34:00,746 West St, Austin,TX,73301 +271578,AA Batteries (4-pack),4,3.84,2019-10-08 20:33:00,690 Chestnut St, Portland,OR,97035 +271579,USB-C Charging Cable,1,11.95,2019-10-26 18:06:00,579 River St, Dallas,TX,75001 +271580,Bose SoundSport Headphones,1,99.99,2019-10-16 09:00:00,877 8th St, Seattle,WA,98101 +271581,Google Phone,1,600.0,2019-10-14 09:11:00,607 13th St, Los Angeles,CA,90001 +271581,USB-C Charging Cable,2,11.95,2019-10-14 09:11:00,607 13th St, Los Angeles,CA,90001 +271582,USB-C Charging Cable,1,11.95,2019-10-21 11:01:00,421 11th St, Atlanta,GA,30301 +271583,Wired Headphones,1,11.99,2019-10-14 12:40:00,76 Johnson St, Seattle,WA,98101 +271584,AAA Batteries (4-pack),1,2.99,2019-10-17 17:58:00,449 Forest St, Boston,MA,02215 +271585,Apple Airpods Headphones,1,150.0,2019-10-09 07:48:00,261 7th St, Seattle,WA,98101 +271586,27in 4K Gaming Monitor,1,389.99,2019-10-25 11:27:00,51 Cedar St, Seattle,WA,98101 +271587,20in Monitor,1,109.99,2019-10-02 06:14:00,753 Park St, Los Angeles,CA,90001 +271588,Apple Airpods Headphones,1,150.0,2019-10-05 15:14:00,812 Church St, Los Angeles,CA,90001 +271589,AAA Batteries (4-pack),1,2.99,2019-10-23 15:11:00,539 Wilson St, Atlanta,GA,30301 +271590,Lightning Charging Cable,1,14.95,2019-10-23 22:13:00,899 Meadow St, New York City,NY,10001 +271591,Flatscreen TV,1,300.0,2019-10-13 17:10:00,185 7th St, Los Angeles,CA,90001 +271592,LG Washing Machine,1,600.0,2019-10-05 09:33:00,719 Adams St, Boston,MA,02215 +271593,Apple Airpods Headphones,1,150.0,2019-10-20 10:38:00,883 Wilson St, Dallas,TX,75001 +271594,Apple Airpods Headphones,1,150.0,2019-10-09 11:40:00,114 Dogwood St, Dallas,TX,75001 +271594,Wired Headphones,1,11.99,2019-10-09 11:40:00,114 Dogwood St, Dallas,TX,75001 +271595,iPhone,1,700.0,2019-10-13 16:38:00,911 South St, New York City,NY,10001 +271596,AAA Batteries (4-pack),1,2.99,2019-10-25 05:48:00,688 10th St, New York City,NY,10001 +271597,AAA Batteries (4-pack),2,2.99,2019-10-14 15:10:00,171 Adams St, Atlanta,GA,30301 +271598,20in Monitor,1,109.99,2019-10-05 18:20:00,93 Park St, Dallas,TX,75001 +271599,Lightning Charging Cable,1,14.95,2019-10-09 15:49:00,778 Meadow St, San Francisco,CA,94016 +271600,AA Batteries (4-pack),1,3.84,2019-10-06 14:26:00,804 Hill St, Los Angeles,CA,90001 +271601,Wired Headphones,1,11.99,2019-10-27 07:48:00,890 13th St, Los Angeles,CA,90001 +271602,Macbook Pro Laptop,1,1700.0,2019-10-21 19:53:00,814 Cedar St, Seattle,WA,98101 +271603,iPhone,1,700.0,2019-10-23 01:26:00,960 2nd St, Los Angeles,CA,90001 +271604,USB-C Charging Cable,2,11.95,2019-10-18 09:55:00,480 Ridge St, San Francisco,CA,94016 +271605,USB-C Charging Cable,1,11.95,2019-10-06 17:25:00,513 Sunset St, New York City,NY,10001 +271606,27in FHD Monitor,1,149.99,2019-10-11 09:33:00,691 Lincoln St, Los Angeles,CA,90001 +271607,USB-C Charging Cable,1,11.95,2019-10-11 18:05:00,639 4th St, San Francisco,CA,94016 +271608,iPhone,1,700.0,2019-10-12 20:19:00,204 Ridge St, Boston,MA,02215 +271609,Bose SoundSport Headphones,1,99.99,2019-10-18 13:30:00,454 Jefferson St, Atlanta,GA,30301 +271610,Macbook Pro Laptop,1,1700.0,2019-10-14 22:13:00,915 South St, Los Angeles,CA,90001 +271611,Lightning Charging Cable,1,14.95,2019-10-16 21:10:00,684 Pine St, Atlanta,GA,30301 +271612,AA Batteries (4-pack),2,3.84,2019-10-10 09:59:00,69 6th St, Boston,MA,02215 +271613,Bose SoundSport Headphones,1,99.99,2019-10-17 06:35:00,739 Forest St, San Francisco,CA,94016 +271614,Macbook Pro Laptop,1,1700.0,2019-10-12 13:42:00,13 South St, Atlanta,GA,30301 +271615,27in FHD Monitor,1,149.99,2019-10-30 07:55:00,724 Maple St, San Francisco,CA,94016 +271616,ThinkPad Laptop,1,999.99,2019-10-31 10:29:00,978 Cedar St, Los Angeles,CA,90001 +271617,USB-C Charging Cable,1,11.95,2019-10-06 13:59:00,382 Willow St, San Francisco,CA,94016 +271618,ThinkPad Laptop,1,999.99,2019-10-01 12:00:00,451 Cedar St, Boston,MA,02215 +271619,AA Batteries (4-pack),1,3.84,2019-10-29 16:02:00,812 6th St, New York City,NY,10001 +271620,Wired Headphones,1,11.99,2019-10-22 08:29:00,165 1st St, New York City,NY,10001 +271621,iPhone,1,700.0,2019-10-26 19:14:00,134 Meadow St, Boston,MA,02215 +271621,Lightning Charging Cable,1,14.95,2019-10-26 19:14:00,134 Meadow St, Boston,MA,02215 +271621,Apple Airpods Headphones,1,150.0,2019-10-26 19:14:00,134 Meadow St, Boston,MA,02215 +271622,Lightning Charging Cable,1,14.95,2019-10-22 18:02:00,555 Cedar St, Boston,MA,02215 +271623,Apple Airpods Headphones,1,150.0,2019-10-19 19:59:00,861 Church St, Los Angeles,CA,90001 +271624,Wired Headphones,1,11.99,2019-10-25 13:40:00,962 Johnson St, San Francisco,CA,94016 +271625,USB-C Charging Cable,1,11.95,2019-10-31 10:24:00,546 2nd St, Seattle,WA,98101 +271626,AA Batteries (4-pack),1,3.84,2019-10-07 20:48:00,171 Sunset St, Los Angeles,CA,90001 +271627,AAA Batteries (4-pack),1,2.99,2019-10-10 20:48:00,367 1st St, Austin,TX,73301 +271628,AA Batteries (4-pack),1,3.84,2019-10-17 16:24:00,908 Highland St, San Francisco,CA,94016 +271629,Vareebadd Phone,1,400.0,2019-10-05 22:52:00,966 Lake St, New York City,NY,10001 +271630,Wired Headphones,1,11.99,2019-10-11 17:53:00,915 11th St, New York City,NY,10001 +271631,27in 4K Gaming Monitor,1,389.99,2019-10-10 20:52:00,801 13th St, Atlanta,GA,30301 +271632,Lightning Charging Cable,1,14.95,2019-10-29 21:36:00,475 Johnson St, Boston,MA,02215 +271633,Wired Headphones,1,11.99,2019-10-22 09:49:00,242 Madison St, Seattle,WA,98101 +271634,Lightning Charging Cable,1,14.95,2019-10-13 12:09:00,270 2nd St, New York City,NY,10001 +271635,Apple Airpods Headphones,1,150.0,2019-10-18 18:50:00,670 Elm St, Austin,TX,73301 +271636,Lightning Charging Cable,1,14.95,2019-10-04 09:10:00,418 North St, San Francisco,CA,94016 +271637,Google Phone,1,600.0,2019-10-08 18:29:00,719 Dogwood St, Austin,TX,73301 +271638,27in FHD Monitor,1,149.99,2019-10-30 18:20:00,192 Washington St, New York City,NY,10001 +271639,USB-C Charging Cable,1,11.95,2019-10-19 10:17:00,186 Willow St, Portland,OR,97035 +271640,USB-C Charging Cable,1,11.95,2019-10-04 22:08:00,122 Johnson St, San Francisco,CA,94016 +271641,USB-C Charging Cable,1,11.95,2019-10-22 11:30:00,827 Park St, Los Angeles,CA,90001 +271642,AA Batteries (4-pack),1,3.84,2019-10-25 21:13:00,504 7th St, Los Angeles,CA,90001 +271643,AA Batteries (4-pack),1,3.84,2019-10-11 17:47:00,190 Johnson St, Dallas,TX,75001 +271644,ThinkPad Laptop,1,999.99,2019-10-07 14:59:00,33 10th St, San Francisco,CA,94016 +271645,AA Batteries (4-pack),1,3.84,2019-10-29 15:32:00,3 Wilson St, San Francisco,CA,94016 +271646,Wired Headphones,1,11.99,2019-10-03 19:30:00,560 Walnut St, Los Angeles,CA,90001 +271647,20in Monitor,1,109.99,2019-10-29 17:40:00,905 11th St, Boston,MA,02215 +271648,Lightning Charging Cable,1,14.95,2019-10-21 16:47:00,866 13th St, Atlanta,GA,30301 +271649,ThinkPad Laptop,1,999.99,2019-10-17 20:37:00,20 Cedar St, Los Angeles,CA,90001 +271650,Lightning Charging Cable,1,14.95,2019-10-16 20:59:00,230 Ridge St, Atlanta,GA,30301 +271651,Lightning Charging Cable,1,14.95,2019-10-03 22:37:00,113 Highland St, Atlanta,GA,30301 +271652,USB-C Charging Cable,1,11.95,2019-10-06 19:23:00,271 Elm St, Los Angeles,CA,90001 +271653,27in FHD Monitor,1,149.99,2019-10-05 10:37:00,883 4th St, Boston,MA,02215 +271654,AA Batteries (4-pack),1,3.84,2019-10-06 10:41:00,162 West St, Austin,TX,73301 +271655,AA Batteries (4-pack),1,3.84,2019-10-28 17:14:00,670 Park St, New York City,NY,10001 +271656,Wired Headphones,1,11.99,2019-10-29 14:32:00,599 Lake St, Austin,TX,73301 +271657,AA Batteries (4-pack),1,3.84,2019-10-23 19:12:00,569 Cherry St, San Francisco,CA,94016 +271658,AAA Batteries (4-pack),1,2.99,2019-10-14 14:18:00,638 Meadow St, San Francisco,CA,94016 +271659,AAA Batteries (4-pack),1,2.99,2019-10-30 16:40:00,878 Walnut St, Austin,TX,73301 +271660,Apple Airpods Headphones,1,150.0,2019-10-22 15:22:00,767 10th St, San Francisco,CA,94016 +271661,AAA Batteries (4-pack),1,2.99,2019-10-19 18:16:00,104 7th St, San Francisco,CA,94016 +271662,27in FHD Monitor,1,149.99,2019-10-22 08:42:00,852 Meadow St, New York City,NY,10001 +271663,27in FHD Monitor,1,149.99,2019-10-18 11:36:00,263 Park St, San Francisco,CA,94016 +271664,USB-C Charging Cable,1,11.95,2019-10-15 12:29:00,408 Meadow St, Boston,MA,02215 +271665,USB-C Charging Cable,1,11.95,2019-10-06 11:32:00,685 Madison St, Boston,MA,02215 +271666,USB-C Charging Cable,1,11.95,2019-10-15 11:28:00,296 Chestnut St, San Francisco,CA,94016 +271667,Lightning Charging Cable,1,14.95,2019-10-13 15:34:00,266 6th St, San Francisco,CA,94016 +271668,Vareebadd Phone,1,400.0,2019-10-19 21:51:00,288 Walnut St, Seattle,WA,98101 +271668,Bose SoundSport Headphones,1,99.99,2019-10-19 21:51:00,288 Walnut St, Seattle,WA,98101 +271668,Flatscreen TV,1,300.0,2019-10-19 21:51:00,288 Walnut St, Seattle,WA,98101 +271669,AAA Batteries (4-pack),1,2.99,2019-10-31 23:31:00,529 Dogwood St, Austin,TX,73301 +271670,Wired Headphones,1,11.99,2019-10-16 10:53:00,432 Forest St, San Francisco,CA,94016 +271671,Flatscreen TV,1,300.0,2019-10-16 21:09:00,955 Forest St, San Francisco,CA,94016 +271672,USB-C Charging Cable,1,11.95,2019-10-21 14:21:00,650 6th St, Los Angeles,CA,90001 +271673,ThinkPad Laptop,1,999.99,2019-10-01 11:44:00,41 11th St, New York City,NY,10001 +271674,AA Batteries (4-pack),1,3.84,2019-10-01 12:06:00,97 Spruce St, San Francisco,CA,94016 +271675,Lightning Charging Cable,1,14.95,2019-10-20 01:33:00,846 Cedar St, Dallas,TX,75001 +271676,Flatscreen TV,1,300.0,2019-10-03 16:26:00,20 Lincoln St, Los Angeles,CA,90001 +271677,USB-C Charging Cable,1,11.95,2019-10-04 19:40:00,446 Walnut St, Los Angeles,CA,90001 +271678,iPhone,1,700.0,2019-10-21 10:17:00,67 14th St, Los Angeles,CA,90001 +271679,Bose SoundSport Headphones,1,99.99,2019-10-22 13:37:00,325 West St, Atlanta,GA,30301 +271680,AA Batteries (4-pack),1,3.84,2019-10-26 13:26:00,439 10th St, New York City,NY,10001 +271681,USB-C Charging Cable,1,11.95,2019-10-08 08:31:00,499 South St, Atlanta,GA,30301 +271681,AA Batteries (4-pack),2,3.84,2019-10-08 08:31:00,499 South St, Atlanta,GA,30301 +271682,Wired Headphones,1,11.99,2019-10-27 22:11:00,470 Jefferson St, Portland,OR,97035 +271683,34in Ultrawide Monitor,1,379.99,2019-10-07 23:12:00,722 Highland St, Dallas,TX,75001 +271684,iPhone,1,700.0,2019-10-27 10:40:00,93 11th St, Dallas,TX,75001 +271685,Wired Headphones,1,11.99,2019-10-20 15:37:00,422 Wilson St, Boston,MA,02215 +271686,Wired Headphones,1,11.99,2019-10-05 22:50:00,251 4th St, San Francisco,CA,94016 +271687,34in Ultrawide Monitor,1,379.99,2019-10-13 09:45:00,946 Ridge St, Boston,MA,02215 +271688,Google Phone,1,600.0,2019-10-05 19:26:00,299 8th St, Portland,OR,97035 +271688,USB-C Charging Cable,1,11.95,2019-10-05 19:26:00,299 8th St, Portland,OR,97035 +271688,Wired Headphones,1,11.99,2019-10-05 19:26:00,299 8th St, Portland,OR,97035 +271689,Lightning Charging Cable,1,14.95,2019-10-01 19:21:00,433 Highland St, Austin,TX,73301 +271690,Lightning Charging Cable,1,14.95,2019-10-07 19:14:00,750 1st St, San Francisco,CA,94016 +271691,Macbook Pro Laptop,1,1700.0,2019-10-14 23:21:00,489 13th St, Seattle,WA,98101 +271691,AA Batteries (4-pack),1,3.84,2019-10-14 23:21:00,489 13th St, Seattle,WA,98101 +271692,Google Phone,1,600.0,2019-10-21 15:23:00,426 Wilson St, Portland,OR,97035 +271693,AA Batteries (4-pack),1,3.84,2019-10-24 14:47:00,806 6th St, New York City,NY,10001 +271694,ThinkPad Laptop,1,999.99,2019-10-08 14:39:00,980 1st St, Los Angeles,CA,90001 +271695,ThinkPad Laptop,1,999.99,2019-10-14 19:35:00,402 North St, Atlanta,GA,30301 +271696,Lightning Charging Cable,1,14.95,2019-10-05 12:09:00,311 South St, San Francisco,CA,94016 +271697,Apple Airpods Headphones,1,150.0,2019-10-09 20:42:00,197 13th St, Boston,MA,02215 +271697,27in FHD Monitor,1,149.99,2019-10-09 20:42:00,197 13th St, Boston,MA,02215 +271698,USB-C Charging Cable,1,11.95,2019-10-01 19:36:00,308 Walnut St, Portland,OR,97035 +271699,Wired Headphones,1,11.99,2019-10-08 20:40:00,120 Center St, Portland,OR,97035 +271700,AAA Batteries (4-pack),2,2.99,2019-10-31 12:46:00,797 6th St, Dallas,TX,75001 +271701,Wired Headphones,1,11.99,2019-10-15 20:10:00,453 Park St, Austin,TX,73301 +271702,AA Batteries (4-pack),1,3.84,2019-10-23 11:58:00,988 Lake St, Atlanta,GA,30301 +271703,27in 4K Gaming Monitor,1,389.99,2019-10-21 10:08:00,717 5th St, New York City,NY,10001 +271704,iPhone,1,700.0,2019-10-10 19:59:00,413 Ridge St, San Francisco,CA,94016 +271704,Apple Airpods Headphones,1,150.0,2019-10-10 19:59:00,413 Ridge St, San Francisco,CA,94016 +271705,Bose SoundSport Headphones,1,99.99,2019-10-28 16:04:00,355 Jefferson St, Atlanta,GA,30301 +271706,Google Phone,1,600.0,2019-10-24 10:36:00,535 Jackson St, Portland,OR,97035 +271707,AAA Batteries (4-pack),2,2.99,2019-10-31 08:31:00,102 Lakeview St, Los Angeles,CA,90001 +271708,AAA Batteries (4-pack),1,2.99,2019-10-30 09:25:00,372 12th St, Portland,OR,97035 +271709,Lightning Charging Cable,1,14.95,2019-10-18 10:36:00,620 Wilson St, New York City,NY,10001 +271710,Lightning Charging Cable,1,14.95,2019-10-02 18:24:00,782 Dogwood St, Los Angeles,CA,90001 +271711,27in FHD Monitor,1,149.99,2019-10-20 18:29:00,58 9th St, Los Angeles,CA,90001 +271712,27in FHD Monitor,1,149.99,2019-10-05 09:32:00,141 West St, San Francisco,CA,94016 +271713,Wired Headphones,1,11.99,2019-10-02 16:19:00,424 Elm St, Atlanta,GA,30301 +271714,Bose SoundSport Headphones,2,99.99,2019-10-18 17:37:00,83 Spruce St, Boston,MA,02215 +271715,27in FHD Monitor,1,149.99,2019-10-03 15:10:00,244 Sunset St, New York City,NY,10001 +271716,27in 4K Gaming Monitor,1,389.99,2019-10-15 01:47:00,691 Adams St, Portland,OR,97035 +271717,USB-C Charging Cable,1,11.95,2019-10-14 00:53:00,120 Spruce St, San Francisco,CA,94016 +271718,iPhone,1,700.0,2019-10-11 10:30:00,274 Cedar St, Boston,MA,02215 +271719,34in Ultrawide Monitor,1,379.99,2019-10-28 08:25:00,53 Forest St, San Francisco,CA,94016 +271720,AA Batteries (4-pack),1,3.84,2019-10-30 14:59:00,128 Elm St, San Francisco,CA,94016 +271721,USB-C Charging Cable,1,11.95,2019-10-18 06:58:00,217 Park St, San Francisco,CA,94016 +271722,27in FHD Monitor,1,149.99,2019-10-20 08:59:00,725 Park St, Portland,OR,97035 +271723,AA Batteries (4-pack),1,3.84,2019-10-23 10:11:00,54 Washington St, Los Angeles,CA,90001 +271724,USB-C Charging Cable,1,11.95,2019-10-11 00:18:00,407 Jefferson St, San Francisco,CA,94016 +271725,USB-C Charging Cable,1,11.95,2019-10-20 18:36:00,123 West St, Los Angeles,CA,90001 +271726,Macbook Pro Laptop,1,1700.0,2019-10-05 07:46:00,133 Willow St, New York City,NY,10001 +271727,USB-C Charging Cable,1,11.95,2019-10-05 19:13:00,438 Lincoln St, Seattle,WA,98101 +271727,AA Batteries (4-pack),1,3.84,2019-10-05 19:13:00,438 Lincoln St, Seattle,WA,98101 +271728,Lightning Charging Cable,1,14.95,2019-10-22 20:34:00,308 9th St, San Francisco,CA,94016 +271729,Lightning Charging Cable,1,14.95,2019-10-07 22:45:00,10 Johnson St, San Francisco,CA,94016 +271729,Bose SoundSport Headphones,1,99.99,2019-10-07 22:45:00,10 Johnson St, San Francisco,CA,94016 +271730,Bose SoundSport Headphones,1,99.99,2019-10-17 20:01:00,861 Lakeview St, Los Angeles,CA,90001 +271731,AA Batteries (4-pack),1,3.84,2019-10-18 19:19:00,697 Forest St, New York City,NY,10001 +271732,Google Phone,1,600.0,2019-10-31 06:31:00,616 10th St, Dallas,TX,75001 +271733,Wired Headphones,1,11.99,2019-10-12 21:27:00,854 Johnson St, Los Angeles,CA,90001 +271734,AA Batteries (4-pack),1,3.84,2019-10-25 17:10:00,690 Spruce St, San Francisco,CA,94016 +271735,Macbook Pro Laptop,1,1700.0,2019-10-16 16:33:00,192 5th St, Portland,OR,97035 +271736,Wired Headphones,1,11.99,2019-10-29 15:49:00,185 6th St, New York City,NY,10001 +271737,Wired Headphones,1,11.99,2019-10-22 10:49:00,99 Cedar St, San Francisco,CA,94016 +271738,34in Ultrawide Monitor,1,379.99,2019-10-28 10:09:00,391 5th St, Los Angeles,CA,90001 +271739,34in Ultrawide Monitor,1,379.99,2019-10-16 07:08:00,292 9th St, New York City,NY,10001 +271740,AA Batteries (4-pack),1,3.84,2019-10-03 00:11:00,251 Cherry St, Los Angeles,CA,90001 +271741,AA Batteries (4-pack),1,3.84,2019-10-16 18:30:00,938 Church St, Portland,OR,97035 +271742,Bose SoundSport Headphones,1,99.99,2019-10-20 20:29:00,347 Center St, San Francisco,CA,94016 +271743,Wired Headphones,1,11.99,2019-10-03 08:34:00,633 Elm St, San Francisco,CA,94016 +271744,Bose SoundSport Headphones,1,99.99,2019-10-29 10:49:00,618 11th St, Boston,MA,02215 +271745,Wired Headphones,1,11.99,2019-10-13 12:25:00,379 Forest St, New York City,NY,10001 +271746,ThinkPad Laptop,1,999.99,2019-10-10 07:30:00,333 13th St, Atlanta,GA,30301 +271747,Lightning Charging Cable,1,14.95,2019-10-23 09:02:00,202 Meadow St, Portland,OR,97035 +271748,Wired Headphones,1,11.99,2019-10-14 17:04:00,927 South St, New York City,NY,10001 +271748,AAA Batteries (4-pack),1,2.99,2019-10-14 17:04:00,927 South St, New York City,NY,10001 +271749,20in Monitor,1,109.99,2019-10-17 20:51:00,857 Johnson St, Boston,MA,02215 +271750,USB-C Charging Cable,1,11.95,2019-10-16 01:00:00,574 14th St, Portland,OR,97035 +271751,AA Batteries (4-pack),4,3.84,2019-10-23 18:42:00,192 Forest St, New York City,NY,10001 +271752,Macbook Pro Laptop,1,1700.0,2019-10-06 14:48:00,992 Adams St, Boston,MA,02215 +271753,34in Ultrawide Monitor,1,379.99,2019-10-22 13:11:00,139 4th St, Atlanta,GA,30301 +271754,Apple Airpods Headphones,1,150.0,2019-10-31 13:23:00,569 Ridge St, Los Angeles,CA,90001 +271755,Apple Airpods Headphones,1,150.0,2019-10-09 10:14:00,16 Madison St, Los Angeles,CA,90001 +271756,iPhone,1,700.0,2019-10-18 12:23:00,780 Dogwood St, Boston,MA,02215 +271756,Lightning Charging Cable,1,14.95,2019-10-18 12:23:00,780 Dogwood St, Boston,MA,02215 +271757,Vareebadd Phone,1,400.0,2019-10-28 20:35:00,401 Madison St, Atlanta,GA,30301 +271757,USB-C Charging Cable,1,11.95,2019-10-28 20:35:00,401 Madison St, Atlanta,GA,30301 +271758,Apple Airpods Headphones,1,150.0,2019-10-02 11:30:00,138 Lake St, Los Angeles,CA,90001 +271759,Macbook Pro Laptop,1,1700.0,2019-10-06 19:55:00,875 13th St, San Francisco,CA,94016 +271760,27in 4K Gaming Monitor,1,389.99,2019-10-22 11:36:00,887 Hickory St, San Francisco,CA,94016 +271761,AA Batteries (4-pack),1,3.84,2019-10-31 13:13:00,141 Maple St, San Francisco,CA,94016 +271762,USB-C Charging Cable,2,11.95,2019-10-21 18:05:00,393 South St, New York City,NY,10001 +271763,27in FHD Monitor,1,149.99,2019-10-12 09:33:00,722 Cedar St, Los Angeles,CA,90001 +271764,Flatscreen TV,1,300.0,2019-10-25 13:10:00,645 Church St, Los Angeles,CA,90001 +271765,Wired Headphones,1,11.99,2019-10-13 17:55:00,322 Spruce St, New York City,NY,10001 +271766,Bose SoundSport Headphones,1,99.99,2019-10-07 16:27:00,567 2nd St, Portland,OR,97035 +271767,27in 4K Gaming Monitor,1,389.99,2019-10-26 17:11:00,217 Jefferson St, Austin,TX,73301 +271768,AA Batteries (4-pack),1,3.84,2019-10-21 07:36:00,333 Willow St, Boston,MA,02215 +271769,Bose SoundSport Headphones,1,99.99,2019-10-16 19:31:00,325 Washington St, Dallas,TX,75001 +271770,ThinkPad Laptop,1,999.99,2019-10-05 22:17:00,150 Highland St, Portland,ME,04101 +271771,Lightning Charging Cable,1,14.95,2019-10-28 21:08:00,750 Cedar St, San Francisco,CA,94016 +271772,Wired Headphones,1,11.99,2019-10-28 08:51:00,42 Wilson St, Los Angeles,CA,90001 +271773,AA Batteries (4-pack),3,3.84,2019-10-04 13:53:00,172 Hickory St, San Francisco,CA,94016 +271774,AA Batteries (4-pack),1,3.84,2019-10-27 23:04:00,485 Meadow St, San Francisco,CA,94016 +271775,20in Monitor,1,109.99,2019-10-08 13:44:00,656 5th St, Los Angeles,CA,90001 +271776,Apple Airpods Headphones,1,150.0,2019-10-01 12:14:00,863 5th St, Dallas,TX,75001 +271777,Bose SoundSport Headphones,1,99.99,2019-10-19 20:05:00,121 7th St, Atlanta,GA,30301 +271778,27in FHD Monitor,1,149.99,2019-10-04 23:09:00,92 Elm St, Dallas,TX,75001 +271779,Google Phone,1,600.0,2019-10-03 12:30:00,230 6th St, Seattle,WA,98101 +271779,USB-C Charging Cable,1,11.95,2019-10-03 12:30:00,230 6th St, Seattle,WA,98101 +271780,Apple Airpods Headphones,1,150.0,2019-10-02 08:33:00,790 14th St, Portland,ME,04101 +271781,27in FHD Monitor,1,149.99,2019-10-21 15:10:00,357 Lakeview St, Seattle,WA,98101 +271782,AAA Batteries (4-pack),1,2.99,2019-10-02 12:13:00,40 2nd St, New York City,NY,10001 +271783,Bose SoundSport Headphones,1,99.99,2019-10-02 09:18:00,928 Cedar St, Atlanta,GA,30301 +271784,AA Batteries (4-pack),1,3.84,2019-10-11 19:34:00,799 Johnson St, New York City,NY,10001 +271785,Lightning Charging Cable,1,14.95,2019-10-11 12:38:00,701 Forest St, San Francisco,CA,94016 +271786,Google Phone,1,600.0,2019-10-27 22:49:00,757 1st St, Los Angeles,CA,90001 +271787,27in 4K Gaming Monitor,1,389.99,2019-10-30 15:53:00,783 South St, Boston,MA,02215 +271788,AAA Batteries (4-pack),1,2.99,2019-10-01 13:13:00,454 Willow St, Portland,OR,97035 +271789,27in FHD Monitor,1,149.99,2019-10-14 10:56:00,384 1st St, New York City,NY,10001 +271790,Lightning Charging Cable,1,14.95,2019-10-25 12:22:00,919 Cherry St, New York City,NY,10001 +271791,AA Batteries (4-pack),1,3.84,2019-10-27 04:05:00,284 Sunset St, Seattle,WA,98101 +271792,ThinkPad Laptop,1,999.99,2019-10-29 15:33:00,302 Chestnut St, Atlanta,GA,30301 +271793,Bose SoundSport Headphones,1,99.99,2019-10-22 16:25:00,236 Wilson St, Austin,TX,73301 +271794,Google Phone,1,600.0,2019-10-23 06:20:00,949 9th St, Austin,TX,73301 +271795,AAA Batteries (4-pack),2,2.99,2019-10-30 18:42:00,727 Lakeview St, Portland,OR,97035 +271796,Lightning Charging Cable,1,14.95,2019-10-07 18:33:00,283 Maple St, Los Angeles,CA,90001 +271797,AA Batteries (4-pack),1,3.84,2019-10-11 11:24:00,776 Madison St, Dallas,TX,75001 +271798,Wired Headphones,1,11.99,2019-10-19 09:27:00,155 Forest St, Atlanta,GA,30301 +271799,AAA Batteries (4-pack),3,2.99,2019-10-17 22:21:00,674 9th St, San Francisco,CA,94016 +271800,iPhone,1,700.0,2019-10-01 18:51:00,960 Park St, Dallas,TX,75001 +271801,Lightning Charging Cable,1,14.95,2019-10-12 00:28:00,67 Dogwood St, Los Angeles,CA,90001 +271802,AA Batteries (4-pack),2,3.84,2019-10-04 20:35:00,87 South St, Atlanta,GA,30301 +271802,Flatscreen TV,1,300.0,2019-10-04 20:35:00,87 South St, Atlanta,GA,30301 +271803,Bose SoundSport Headphones,1,99.99,2019-10-04 10:58:00,370 West St, Los Angeles,CA,90001 +271804,AA Batteries (4-pack),1,3.84,2019-10-13 08:16:00,974 North St, Portland,OR,97035 +271805,27in 4K Gaming Monitor,2,389.99,2019-10-28 19:18:00,394 Chestnut St, San Francisco,CA,94016 +271806,Lightning Charging Cable,1,14.95,2019-10-23 10:57:00,42 Chestnut St, Los Angeles,CA,90001 +271807,Wired Headphones,1,11.99,2019-10-22 14:18:00,303 North St, San Francisco,CA,94016 +271808,AAA Batteries (4-pack),1,2.99,2019-10-19 11:43:00,60 Hickory St, Seattle,WA,98101 +271809,AAA Batteries (4-pack),3,2.99,2019-10-30 13:09:00,794 Park St, Los Angeles,CA,90001 +271810,Wired Headphones,1,11.99,2019-10-11 16:31:00,90 Meadow St, New York City,NY,10001 +271811,Wired Headphones,1,11.99,2019-10-23 17:38:00,615 South St, Seattle,WA,98101 +271812,AA Batteries (4-pack),2,3.84,2019-10-06 10:44:00,501 11th St, Portland,ME,04101 +271813,Lightning Charging Cable,1,14.95,2019-10-01 15:51:00,533 2nd St, San Francisco,CA,94016 +271814,Apple Airpods Headphones,1,150.0,2019-10-15 21:09:00,226 North St, Los Angeles,CA,90001 +271814,AAA Batteries (4-pack),1,2.99,2019-10-15 21:09:00,226 North St, Los Angeles,CA,90001 +271815,AAA Batteries (4-pack),2,2.99,2019-10-01 23:26:00,97 Lake St, Los Angeles,CA,90001 +271816,AAA Batteries (4-pack),1,2.99,2019-10-24 12:10:00,568 Forest St, Portland,OR,97035 +271817,Lightning Charging Cable,1,14.95,2019-10-31 22:22:00,535 6th St, Boston,MA,02215 +271818,20in Monitor,1,109.99,2019-10-27 10:53:00,682 12th St, Los Angeles,CA,90001 +271819,Apple Airpods Headphones,1,150.0,2019-10-25 19:19:00,784 Madison St, Dallas,TX,75001 +271820,Bose SoundSport Headphones,1,99.99,2019-10-14 19:13:00,543 Elm St, Los Angeles,CA,90001 +271821,Lightning Charging Cable,1,14.95,2019-10-07 15:35:00,662 Park St, Dallas,TX,75001 +271822,Flatscreen TV,1,300.0,2019-10-31 07:46:00,180 Cedar St, Los Angeles,CA,90001 +271823,AA Batteries (4-pack),1,3.84,2019-10-14 21:25:00,30 1st St, Los Angeles,CA,90001 +271824,USB-C Charging Cable,1,11.95,2019-10-04 20:49:00,448 Center St, Atlanta,GA,30301 +271825,iPhone,1,700.0,2019-10-01 20:49:00,588 5th St, New York City,NY,10001 +271826,34in Ultrawide Monitor,1,379.99,2019-10-11 13:51:00,257 Hickory St, Portland,OR,97035 +271827,Lightning Charging Cable,1,14.95,2019-10-31 19:18:00,283 Spruce St, New York City,NY,10001 +271828,AA Batteries (4-pack),1,3.84,2019-10-12 18:02:00,344 Willow St, New York City,NY,10001 +271829,AA Batteries (4-pack),1,3.84,2019-10-08 20:24:00,700 Hickory St, New York City,NY,10001 +271830,34in Ultrawide Monitor,1,379.99,2019-10-26 23:12:00,713 Pine St, San Francisco,CA,94016 +271831,Wired Headphones,1,11.99,2019-10-14 12:17:00,645 Lakeview St, Boston,MA,02215 +271832,Vareebadd Phone,1,400.0,2019-10-30 13:59:00,855 Pine St, San Francisco,CA,94016 +271833,20in Monitor,1,109.99,2019-10-20 12:11:00,572 Maple St, Boston,MA,02215 +271834,Google Phone,1,600.0,2019-10-04 02:31:00,488 Chestnut St, Austin,TX,73301 +271835,Apple Airpods Headphones,1,150.0,2019-10-04 21:11:00,639 River St, Los Angeles,CA,90001 +271836,27in FHD Monitor,1,149.99,2019-10-24 18:02:00,281 4th St, Seattle,WA,98101 +271837,Google Phone,1,600.0,2019-10-23 19:52:00,502 Spruce St, New York City,NY,10001 +271838,27in FHD Monitor,1,149.99,2019-10-31 21:34:00,799 Maple St, Atlanta,GA,30301 +271839,AAA Batteries (4-pack),1,2.99,2019-10-17 13:47:00,444 Elm St, Austin,TX,73301 +271840,Apple Airpods Headphones,1,150.0,2019-10-16 22:08:00,549 West St, New York City,NY,10001 +271841,iPhone,1,700.0,2019-10-11 20:04:00,26 Jackson St, Los Angeles,CA,90001 +271842,Apple Airpods Headphones,1,150.0,2019-10-22 16:47:00,41 7th St, Seattle,WA,98101 +271843,Bose SoundSport Headphones,1,99.99,2019-10-08 12:39:00,673 Highland St, Seattle,WA,98101 +271844,USB-C Charging Cable,1,11.95,2019-10-30 10:27:00,680 Jackson St, Portland,ME,04101 +271845,34in Ultrawide Monitor,1,379.99,2019-10-01 14:50:00,826 7th St, Seattle,WA,98101 +271846,Google Phone,1,600.0,2019-10-31 19:56:00,95 Center St, New York City,NY,10001 +271847,Apple Airpods Headphones,1,150.0,2019-10-04 10:56:00,994 Chestnut St, Atlanta,GA,30301 +271848,USB-C Charging Cable,1,11.95,2019-10-19 16:10:00,199 9th St, Los Angeles,CA,90001 +271849,34in Ultrawide Monitor,1,379.99,2019-10-23 00:21:00,351 Main St, Seattle,WA,98101 +271850,Apple Airpods Headphones,1,150.0,2019-10-19 10:18:00,193 6th St, San Francisco,CA,94016 +271851,USB-C Charging Cable,1,11.95,2019-10-03 23:48:00,104 Washington St, Seattle,WA,98101 +271852,27in 4K Gaming Monitor,1,389.99,2019-10-02 15:51:00,54 Jackson St, Seattle,WA,98101 +271853,USB-C Charging Cable,1,11.95,2019-10-07 19:54:00,41 Park St, Atlanta,GA,30301 +271854,AAA Batteries (4-pack),2,2.99,2019-10-17 13:43:00,944 West St, San Francisco,CA,94016 +271855,Wired Headphones,1,11.99,2019-10-01 15:14:00,468 Elm St, San Francisco,CA,94016 +271856,Lightning Charging Cable,1,14.95,2019-10-22 16:14:00,763 13th St, Seattle,WA,98101 +271857,USB-C Charging Cable,1,11.95,2019-10-08 22:25:00,562 Cedar St, Los Angeles,CA,90001 +271858,USB-C Charging Cable,1,11.95,2019-10-30 11:13:00,290 Madison St, New York City,NY,10001 +271859,AA Batteries (4-pack),1,3.84,2019-10-05 21:40:00,417 Elm St, Dallas,TX,75001 +271860,Lightning Charging Cable,1,14.95,2019-10-18 19:18:00,241 Dogwood St, Los Angeles,CA,90001 +271861,USB-C Charging Cable,1,11.95,2019-10-12 16:51:00,99 Main St, Boston,MA,02215 +271862,AAA Batteries (4-pack),1,2.99,2019-10-17 21:01:00,765 Lincoln St, Boston,MA,02215 +271863,USB-C Charging Cable,1,11.95,2019-10-31 22:00:00,604 Jackson St, New York City,NY,10001 +271864,AAA Batteries (4-pack),1,2.99,2019-10-07 09:34:00,596 Park St, New York City,NY,10001 +271865,AA Batteries (4-pack),1,3.84,2019-10-19 15:52:00,981 Jackson St, Dallas,TX,75001 +271866,27in FHD Monitor,1,149.99,2019-10-11 18:00:00,758 Jackson St, Los Angeles,CA,90001 +271867,Lightning Charging Cable,1,14.95,2019-10-13 12:15:00,225 9th St, Los Angeles,CA,90001 +271868,27in FHD Monitor,1,149.99,2019-10-11 19:21:00,561 Ridge St, Seattle,WA,98101 +271869,AAA Batteries (4-pack),3,2.99,2019-10-06 13:11:00,487 Spruce St, San Francisco,CA,94016 +271870,Google Phone,1,600.0,2019-10-17 17:31:00,890 6th St, Portland,OR,97035 +271871,Wired Headphones,1,11.99,2019-10-28 18:50:00,77 Elm St, Seattle,WA,98101 +271872,27in 4K Gaming Monitor,1,389.99,2019-10-18 09:11:00,93 River St, Austin,TX,73301 +271873,Macbook Pro Laptop,1,1700.0,2019-10-04 22:10:00,873 Washington St, Los Angeles,CA,90001 +271874,USB-C Charging Cable,1,11.95,2019-10-03 21:44:00,472 Sunset St, Atlanta,GA,30301 +271875,Macbook Pro Laptop,1,1700.0,2019-10-12 22:18:00,695 Johnson St, Atlanta,GA,30301 +271876,Bose SoundSport Headphones,1,99.99,2019-10-05 21:05:00,689 Madison St, Los Angeles,CA,90001 +271877,Wired Headphones,1,11.99,2019-10-01 16:44:00,433 Washington St, Portland,OR,97035 +271878,Lightning Charging Cable,1,14.95,2019-10-11 19:35:00,590 Spruce St, San Francisco,CA,94016 +271879,Lightning Charging Cable,1,14.95,2019-10-15 12:41:00,417 8th St, Seattle,WA,98101 +271880,Lightning Charging Cable,1,14.95,2019-10-01 15:26:00,395 10th St, San Francisco,CA,94016 +271880,Lightning Charging Cable,2,14.95,2019-10-01 15:26:00,395 10th St, San Francisco,CA,94016 +271881,Apple Airpods Headphones,1,150.0,2019-10-21 17:39:00,60 Forest St, Seattle,WA,98101 +271882,ThinkPad Laptop,1,999.99,2019-10-24 10:21:00,683 Hickory St, Portland,OR,97035 +271883,Google Phone,1,600.0,2019-10-07 13:30:00,902 11th St, Dallas,TX,75001 +271883,USB-C Charging Cable,1,11.95,2019-10-07 13:30:00,902 11th St, Dallas,TX,75001 +271884,USB-C Charging Cable,1,11.95,2019-10-24 15:58:00,149 Chestnut St, Los Angeles,CA,90001 +271885,Lightning Charging Cable,1,14.95,2019-10-21 16:11:00,649 Jefferson St, Seattle,WA,98101 +271886,Lightning Charging Cable,1,14.95,2019-10-08 22:15:00,44 North St, Portland,OR,97035 +271887,Bose SoundSport Headphones,1,99.99,2019-10-05 18:08:00,488 5th St, Seattle,WA,98101 +271888,AA Batteries (4-pack),2,3.84,2019-10-21 17:05:00,486 Hill St, San Francisco,CA,94016 +271889,Apple Airpods Headphones,1,150.0,2019-10-17 21:34:00,357 Spruce St, Atlanta,GA,30301 +271890,Wired Headphones,1,11.99,2019-10-08 15:41:00,14 Jackson St, Seattle,WA,98101 +271891,Bose SoundSport Headphones,1,99.99,2019-10-06 12:53:00,677 Hickory St, Los Angeles,CA,90001 +271892,AAA Batteries (4-pack),1,2.99,2019-10-17 08:10:00,406 12th St, Los Angeles,CA,90001 +271893,USB-C Charging Cable,1,11.95,2019-10-16 21:21:00,893 Park St, Los Angeles,CA,90001 +271894,Lightning Charging Cable,1,14.95,2019-10-02 19:20:00,760 5th St, Portland,ME,04101 +271895,Wired Headphones,1,11.99,2019-10-17 01:12:00,383 Forest St, San Francisco,CA,94016 +271896,USB-C Charging Cable,1,11.95,2019-10-12 10:39:00,289 11th St, San Francisco,CA,94016 +271897,Wired Headphones,1,11.99,2019-10-25 21:44:00,654 North St, San Francisco,CA,94016 +271898,34in Ultrawide Monitor,1,379.99,2019-10-15 02:23:00,197 Adams St, San Francisco,CA,94016 +271899,AAA Batteries (4-pack),1,2.99,2019-10-12 19:05:00,442 5th St, Seattle,WA,98101 +271900,Bose SoundSport Headphones,1,99.99,2019-10-12 18:29:00,342 Pine St, Los Angeles,CA,90001 +271901,34in Ultrawide Monitor,1,379.99,2019-10-14 19:38:00,239 Church St, Los Angeles,CA,90001 +271902,20in Monitor,1,109.99,2019-10-22 08:57:00,293 13th St, San Francisco,CA,94016 +271903,AA Batteries (4-pack),1,3.84,2019-10-23 18:53:00,918 North St, Portland,OR,97035 +271904,Lightning Charging Cable,1,14.95,2019-10-16 15:53:00,919 Walnut St, Austin,TX,73301 +271905,ThinkPad Laptop,1,999.99,2019-10-30 10:16:00,631 6th St, Atlanta,GA,30301 +271906,iPhone,1,700.0,2019-10-28 09:01:00,515 2nd St, Atlanta,GA,30301 +271907,USB-C Charging Cable,1,11.95,2019-10-27 18:42:00,395 Park St, San Francisco,CA,94016 +271908,Lightning Charging Cable,1,14.95,2019-10-14 21:55:00,947 9th St, Seattle,WA,98101 +271909,iPhone,1,700.0,2019-10-27 09:25:00,862 6th St, Boston,MA,02215 +271910,Macbook Pro Laptop,1,1700.0,2019-10-23 08:51:00,761 Lake St, New York City,NY,10001 +271911,27in FHD Monitor,1,149.99,2019-10-08 10:50:00,258 Hill St, San Francisco,CA,94016 +271912,USB-C Charging Cable,1,11.95,2019-10-29 23:16:00,688 Spruce St, San Francisco,CA,94016 +271913,USB-C Charging Cable,2,11.95,2019-10-29 16:38:00,384 10th St, San Francisco,CA,94016 +271914,34in Ultrawide Monitor,1,379.99,2019-10-04 13:44:00,531 10th St, New York City,NY,10001 +271915,Lightning Charging Cable,1,14.95,2019-10-04 20:03:00,199 10th St, San Francisco,CA,94016 +271916,USB-C Charging Cable,1,11.95,2019-10-16 19:55:00,161 8th St, New York City,NY,10001 +271917,20in Monitor,1,109.99,2019-10-31 20:40:00,985 River St, San Francisco,CA,94016 +271918,USB-C Charging Cable,1,11.95,2019-10-10 21:13:00,866 Walnut St, San Francisco,CA,94016 +271919,Wired Headphones,1,11.99,2019-10-03 12:36:00,356 Johnson St, San Francisco,CA,94016 +271920,Bose SoundSport Headphones,1,99.99,2019-10-07 22:15:00,757 14th St, San Francisco,CA,94016 +271921,AA Batteries (4-pack),1,3.84,2019-10-29 09:57:00,917 14th St, New York City,NY,10001 +271922,Apple Airpods Headphones,1,150.0,2019-10-29 12:54:00,836 River St, Dallas,TX,75001 +271923,AAA Batteries (4-pack),1,2.99,2019-10-22 05:32:00,411 Lake St, New York City,NY,10001 +271924,Wired Headphones,1,11.99,2019-10-18 10:41:00,592 Meadow St, San Francisco,CA,94016 +271925,Bose SoundSport Headphones,1,99.99,2019-10-04 18:16:00,768 Lincoln St, Atlanta,GA,30301 +271926,Apple Airpods Headphones,1,150.0,2019-10-23 14:02:00,39 Park St, San Francisco,CA,94016 +271927,AA Batteries (4-pack),1,3.84,2019-10-20 10:18:00,211 Chestnut St, New York City,NY,10001 +271928,AA Batteries (4-pack),1,3.84,2019-10-02 16:05:00,129 Elm St, Portland,OR,97035 +271929,Wired Headphones,1,11.99,2019-10-23 11:52:00,125 Hickory St, Austin,TX,73301 +271930,USB-C Charging Cable,1,11.95,2019-10-22 12:14:00,479 North St, San Francisco,CA,94016 +271931,Wired Headphones,2,11.99,2019-10-23 13:58:00,215 North St, New York City,NY,10001 +271932,AA Batteries (4-pack),1,3.84,2019-10-29 19:27:00,768 Main St, Los Angeles,CA,90001 +271933,Wired Headphones,1,11.99,2019-10-09 18:19:00,710 8th St, Seattle,WA,98101 +271934,Lightning Charging Cable,1,14.95,2019-10-12 14:19:00,23 8th St, San Francisco,CA,94016 +271935,Wired Headphones,1,11.99,2019-10-02 10:57:00,987 Willow St, Dallas,TX,75001 +271936,Bose SoundSport Headphones,1,99.99,2019-10-30 20:55:00,792 Park St, Portland,ME,04101 +271937,Lightning Charging Cable,1,14.95,2019-10-17 12:28:00,739 Adams St, Boston,MA,02215 +271938,USB-C Charging Cable,1,11.95,2019-10-28 16:35:00,621 Washington St, San Francisco,CA,94016 +271939,USB-C Charging Cable,1,11.95,2019-10-07 19:39:00,398 West St, Boston,MA,02215 +271940,AA Batteries (4-pack),1,3.84,2019-10-14 16:44:00,880 Cedar St, Dallas,TX,75001 +271941,34in Ultrawide Monitor,1,379.99,2019-10-13 19:08:00,645 Dogwood St, Atlanta,GA,30301 +271942,34in Ultrawide Monitor,1,379.99,2019-10-03 10:16:00,584 Hill St, Atlanta,GA,30301 +271943,Lightning Charging Cable,1,14.95,2019-10-27 10:50:00,192 13th St, Atlanta,GA,30301 +271944,Wired Headphones,1,11.99,2019-10-11 21:22:00,763 Elm St, Atlanta,GA,30301 +271945,34in Ultrawide Monitor,1,379.99,2019-10-26 20:39:00,468 Center St, Portland,ME,04101 +271946,AAA Batteries (4-pack),1,2.99,2019-10-03 13:06:00,980 Center St, New York City,NY,10001 +271947,Lightning Charging Cable,1,14.95,2019-10-30 15:27:00,501 Wilson St, San Francisco,CA,94016 +271948,iPhone,1,700.0,2019-10-02 11:23:00,638 Chestnut St, San Francisco,CA,94016 +271949,iPhone,1,700.0,2019-10-31 19:53:00,792 12th St, San Francisco,CA,94016 +271950,Apple Airpods Headphones,1,150.0,2019-10-27 17:54:00,744 Dogwood St, Portland,OR,97035 +271951,27in FHD Monitor,1,149.99,2019-11-01 00:31:00,817 Highland St, Portland,OR,97035 +271952,AA Batteries (4-pack),1,3.84,2019-10-11 16:01:00,152 Church St, New York City,NY,10001 +271953,Bose SoundSport Headphones,1,99.99,2019-10-26 15:48:00,382 Cedar St, Boston,MA,02215 +271954,Wired Headphones,1,11.99,2019-10-07 12:28:00,890 Highland St, Austin,TX,73301 +271955,iPhone,1,700.0,2019-10-13 09:38:00,453 Maple St, San Francisco,CA,94016 +271955,Lightning Charging Cable,1,14.95,2019-10-13 09:38:00,453 Maple St, San Francisco,CA,94016 +271956,Vareebadd Phone,1,400.0,2019-10-14 06:59:00,595 Johnson St, Los Angeles,CA,90001 +271957,Apple Airpods Headphones,1,150.0,2019-10-22 08:08:00,764 5th St, Los Angeles,CA,90001 +271958,Wired Headphones,1,11.99,2019-10-05 15:15:00,687 Main St, San Francisco,CA,94016 +271959,AA Batteries (4-pack),2,3.84,2019-10-16 20:05:00,116 Wilson St, Atlanta,GA,30301 +271960,Apple Airpods Headphones,1,150.0,2019-10-29 21:01:00,685 5th St, Seattle,WA,98101 +271961,Macbook Pro Laptop,1,1700.0,2019-10-21 16:50:00,508 10th St, New York City,NY,10001 +271962,USB-C Charging Cable,1,11.95,2019-10-20 05:07:00,533 8th St, San Francisco,CA,94016 +271963,ThinkPad Laptop,1,999.99,2019-10-15 15:30:00,880 Lincoln St, San Francisco,CA,94016 +271964,27in 4K Gaming Monitor,1,389.99,2019-10-24 22:13:00,978 Center St, Austin,TX,73301 +271965,34in Ultrawide Monitor,1,379.99,2019-10-25 10:03:00,271 Park St, Dallas,TX,75001 +271966,AA Batteries (4-pack),2,3.84,2019-10-19 21:40:00,189 Ridge St, New York City,NY,10001 +271967,AA Batteries (4-pack),1,3.84,2019-10-23 23:55:00,825 Highland St, San Francisco,CA,94016 +271968,Google Phone,1,600.0,2019-10-16 10:42:00,555 Lincoln St, San Francisco,CA,94016 +271968,USB-C Charging Cable,1,11.95,2019-10-16 10:42:00,555 Lincoln St, San Francisco,CA,94016 +271969,Wired Headphones,1,11.99,2019-10-25 20:14:00,341 Dogwood St, New York City,NY,10001 +271970,LG Dryer,1,600.0,2019-10-10 14:48:00,583 Maple St, San Francisco,CA,94016 +271971,AAA Batteries (4-pack),1,2.99,2019-10-24 18:50:00,897 Spruce St, Los Angeles,CA,90001 +271972,27in FHD Monitor,1,149.99,2019-10-19 19:08:00,547 Church St, Atlanta,GA,30301 +271973,Google Phone,1,600.0,2019-10-22 10:09:00,313 Forest St, Los Angeles,CA,90001 +271973,Wired Headphones,1,11.99,2019-10-22 10:09:00,313 Forest St, Los Angeles,CA,90001 +271974,34in Ultrawide Monitor,1,379.99,2019-10-02 19:36:00,760 Willow St, Dallas,TX,75001 +271975,Lightning Charging Cable,1,14.95,2019-10-30 22:16:00,778 Walnut St, Boston,MA,02215 +271976,Apple Airpods Headphones,1,150.0,2019-10-07 13:57:00,976 Washington St, Dallas,TX,75001 +271977,AAA Batteries (4-pack),3,2.99,2019-10-09 21:51:00,324 Lakeview St, New York City,NY,10001 +271978,AAA Batteries (4-pack),1,2.99,2019-10-07 23:17:00,702 Wilson St, Portland,OR,97035 +271979,AA Batteries (4-pack),2,3.84,2019-10-07 12:19:00,948 7th St, Portland,OR,97035 +271980,Bose SoundSport Headphones,1,99.99,2019-10-12 23:26:00,735 11th St, Boston,MA,02215 +271981,Lightning Charging Cable,1,14.95,2019-10-13 08:33:00,453 Walnut St, San Francisco,CA,94016 +271982,Apple Airpods Headphones,1,150.0,2019-10-31 12:44:00,586 Park St, Boston,MA,02215 +271983,AA Batteries (4-pack),1,3.84,2019-10-13 20:43:00,16 14th St, New York City,NY,10001 +271984,AA Batteries (4-pack),1,3.84,2019-10-14 10:31:00,372 Forest St, New York City,NY,10001 +271985,34in Ultrawide Monitor,1,379.99,2019-10-25 20:28:00,104 Chestnut St, New York City,NY,10001 +271986,iPhone,1,700.0,2019-10-17 17:47:00,637 12th St, Los Angeles,CA,90001 +271987,27in 4K Gaming Monitor,1,389.99,2019-10-31 19:06:00,425 Lake St, Austin,TX,73301 +271988,Wired Headphones,1,11.99,2019-10-08 12:04:00,709 11th St, Los Angeles,CA,90001 +271989,AAA Batteries (4-pack),1,2.99,2019-10-07 12:36:00,885 Jefferson St, Seattle,WA,98101 +271990,34in Ultrawide Monitor,1,379.99,2019-10-04 16:14:00,643 Center St, San Francisco,CA,94016 +271990,Wired Headphones,1,11.99,2019-10-04 16:14:00,643 Center St, San Francisco,CA,94016 +271991,Flatscreen TV,1,300.0,2019-10-26 12:57:00,860 Lincoln St, Atlanta,GA,30301 +271992,AAA Batteries (4-pack),1,2.99,2019-10-12 19:46:00,807 Ridge St, Boston,MA,02215 +271993,34in Ultrawide Monitor,1,379.99,2019-10-31 13:30:00,820 Ridge St, Seattle,WA,98101 +271994,Apple Airpods Headphones,1,150.0,2019-10-21 13:11:00,93 Walnut St, Austin,TX,73301 +271995,Apple Airpods Headphones,1,150.0,2019-10-31 17:01:00,974 5th St, New York City,NY,10001 +271996,iPhone,1,700.0,2019-10-16 10:00:00,17 Meadow St, New York City,NY,10001 +271997,USB-C Charging Cable,1,11.95,2019-10-10 13:09:00,53 Meadow St, Boston,MA,02215 +271998,iPhone,1,700.0,2019-10-27 20:41:00,395 Maple St, Portland,OR,97035 +271999,34in Ultrawide Monitor,1,379.99,2019-10-19 20:39:00,570 1st St, Dallas,TX,75001 +272000,Bose SoundSport Headphones,1,99.99,2019-10-29 19:25:00,623 River St, Los Angeles,CA,90001 +272001,Bose SoundSport Headphones,1,99.99,2019-10-31 08:20:00,553 11th St, Dallas,TX,75001 +272002,USB-C Charging Cable,1,11.95,2019-10-19 21:55:00,380 Sunset St, Seattle,WA,98101 +272002,AAA Batteries (4-pack),1,2.99,2019-10-19 21:55:00,380 Sunset St, Seattle,WA,98101 +272003,AA Batteries (4-pack),1,3.84,2019-10-16 18:43:00,151 Chestnut St, New York City,NY,10001 +272004,Bose SoundSport Headphones,1,99.99,2019-10-23 14:04:00,831 Adams St, New York City,NY,10001 +272005,AAA Batteries (4-pack),3,2.99,2019-10-19 05:30:00,712 Highland St, New York City,NY,10001 +272006,iPhone,1,700.0,2019-10-13 14:13:00,968 River St, Boston,MA,02215 +272007,Lightning Charging Cable,1,14.95,2019-10-17 08:29:00,594 Lincoln St, Atlanta,GA,30301 +272008,AA Batteries (4-pack),1,3.84,2019-10-04 14:36:00,508 Chestnut St, Austin,TX,73301 +272009,Wired Headphones,1,11.99,2019-10-17 09:53:00,183 7th St, New York City,NY,10001 +272010,Lightning Charging Cable,1,14.95,2019-10-31 19:22:00,281 11th St, Atlanta,GA,30301 +272011,iPhone,1,700.0,2019-10-05 01:20:00,240 Ridge St, Atlanta,GA,30301 +272011,Wired Headphones,1,11.99,2019-10-05 01:20:00,240 Ridge St, Atlanta,GA,30301 +272012,27in FHD Monitor,1,149.99,2019-10-06 16:17:00,788 12th St, San Francisco,CA,94016 +272013,AA Batteries (4-pack),1,3.84,2019-10-29 18:08:00,629 Elm St, Atlanta,GA,30301 +272014,Wired Headphones,1,11.99,2019-10-31 12:05:00,743 14th St, New York City,NY,10001 +272015,AA Batteries (4-pack),1,3.84,2019-10-05 18:56:00,836 1st St, Austin,TX,73301 +272016,34in Ultrawide Monitor,1,379.99,2019-10-24 04:39:00,747 7th St, Los Angeles,CA,90001 +272017,AA Batteries (4-pack),1,3.84,2019-10-26 21:29:00,345 Johnson St, Atlanta,GA,30301 +272018,Vareebadd Phone,1,400.0,2019-10-26 12:57:00,604 Highland St, Los Angeles,CA,90001 +272019,AA Batteries (4-pack),1,3.84,2019-10-27 19:12:00,276 Cherry St, San Francisco,CA,94016 +272020,Macbook Pro Laptop,1,1700.0,2019-10-08 23:40:00,917 5th St, San Francisco,CA,94016 +272021,Wired Headphones,1,11.99,2019-10-25 11:47:00,28 Ridge St, New York City,NY,10001 +272022,USB-C Charging Cable,1,11.95,2019-10-18 07:18:00,76 South St, San Francisco,CA,94016 +272023,iPhone,1,700.0,2019-10-14 09:09:00,840 Johnson St, Atlanta,GA,30301 +272024,Lightning Charging Cable,1,14.95,2019-10-17 13:20:00,750 14th St, Portland,OR,97035 +272025,Apple Airpods Headphones,1,150.0,2019-10-04 22:56:00,372 Jackson St, Dallas,TX,75001 +272026,AA Batteries (4-pack),1,3.84,2019-10-03 21:18:00,821 14th St, San Francisco,CA,94016 +272027,AAA Batteries (4-pack),1,2.99,2019-10-18 11:55:00,962 Sunset St, Atlanta,GA,30301 +272028,AAA Batteries (4-pack),1,2.99,2019-10-26 10:31:00,626 Walnut St, San Francisco,CA,94016 +272029,AA Batteries (4-pack),1,3.84,2019-10-24 16:36:00,711 Park St, Los Angeles,CA,90001 +272030,AA Batteries (4-pack),2,3.84,2019-10-31 19:21:00,575 Maple St, San Francisco,CA,94016 +272031,AA Batteries (4-pack),3,3.84,2019-10-31 15:44:00,9 Highland St, Boston,MA,02215 +272032,AAA Batteries (4-pack),3,2.99,2019-10-01 20:15:00,39 10th St, Austin,TX,73301 +272033,AA Batteries (4-pack),1,3.84,2019-10-14 12:21:00,719 6th St, New York City,NY,10001 +272034,Lightning Charging Cable,1,14.95,2019-10-02 14:53:00,520 10th St, Los Angeles,CA,90001 +272035,AA Batteries (4-pack),1,3.84,2019-10-02 04:57:00,180 Park St, Atlanta,GA,30301 +272036,AAA Batteries (4-pack),1,2.99,2019-10-19 12:47:00,657 Ridge St, Los Angeles,CA,90001 +272037,ThinkPad Laptop,1,999.99,2019-10-07 06:58:00,624 Cedar St, San Francisco,CA,94016 +272038,Macbook Pro Laptop,1,1700.0,2019-10-30 12:46:00,532 5th St, San Francisco,CA,94016 +272039,20in Monitor,1,109.99,2019-10-14 18:39:00,241 Jackson St, Los Angeles,CA,90001 +272040,AA Batteries (4-pack),1,3.84,2019-10-30 19:58:00,537 Cherry St, New York City,NY,10001 +272041,27in 4K Gaming Monitor,1,389.99,2019-10-03 20:43:00,908 Walnut St, Portland,OR,97035 +272042,Wired Headphones,1,11.99,2019-10-29 14:28:00,733 Washington St, Boston,MA,02215 +272043,20in Monitor,1,109.99,2019-10-28 08:30:00,187 Center St, Dallas,TX,75001 +272044,AAA Batteries (4-pack),3,2.99,2019-10-21 13:43:00,724 12th St, San Francisco,CA,94016 +272045,USB-C Charging Cable,1,11.95,2019-10-06 13:13:00,957 Washington St, San Francisco,CA,94016 +272046,Wired Headphones,1,11.99,2019-10-12 12:42:00,930 Lakeview St, Dallas,TX,75001 +272047,USB-C Charging Cable,1,11.95,2019-10-28 18:13:00,22 Sunset St, Los Angeles,CA,90001 +272048,Lightning Charging Cable,1,14.95,2019-10-16 18:41:00,997 Maple St, Austin,TX,73301 +272049,AA Batteries (4-pack),2,3.84,2019-10-27 14:35:00,244 Sunset St, Seattle,WA,98101 +272050,Lightning Charging Cable,1,14.95,2019-10-08 11:45:00,108 11th St, New York City,NY,10001 +272051,ThinkPad Laptop,1,999.99,2019-10-08 12:28:00,696 10th St, Portland,ME,04101 +272052,Wired Headphones,1,11.99,2019-10-17 14:47:00,620 Dogwood St, San Francisco,CA,94016 +272053,AA Batteries (4-pack),1,3.84,2019-10-24 18:21:00,261 Forest St, San Francisco,CA,94016 +272054,ThinkPad Laptop,1,999.99,2019-10-06 23:39:00,392 Hickory St, New York City,NY,10001 +272055,AAA Batteries (4-pack),2,2.99,2019-10-01 07:02:00,550 Spruce St, Boston,MA,02215 +272056,Apple Airpods Headphones,1,150.0,2019-10-10 11:28:00,99 Church St, New York City,NY,10001 +272057,Lightning Charging Cable,1,14.95,2019-10-27 21:17:00,684 Jackson St, San Francisco,CA,94016 +272057,iPhone,1,700.0,2019-10-27 21:17:00,684 Jackson St, San Francisco,CA,94016 +272058,Bose SoundSport Headphones,1,99.99,2019-10-02 11:29:00,454 West St, Seattle,WA,98101 +272059,USB-C Charging Cable,1,11.95,2019-10-23 21:20:00,809 Chestnut St, Austin,TX,73301 +272060,Wired Headphones,1,11.99,2019-10-20 21:12:00,568 Center St, Seattle,WA,98101 +272061,Apple Airpods Headphones,1,150.0,2019-10-18 15:53:00,212 Main St, Los Angeles,CA,90001 +272062,Apple Airpods Headphones,1,150.0,2019-10-23 07:30:00,936 Hill St, Los Angeles,CA,90001 +272063,Apple Airpods Headphones,1,150.0,2019-10-31 07:17:00,917 Lakeview St, San Francisco,CA,94016 +272064,Flatscreen TV,1,300.0,2019-10-31 19:51:00,371 5th St, New York City,NY,10001 +272065,iPhone,1,700.0,2019-10-22 22:07:00,902 Lake St, San Francisco,CA,94016 +272066,AAA Batteries (4-pack),1,2.99,2019-10-23 07:06:00,354 Lake St, Dallas,TX,75001 +272067,AAA Batteries (4-pack),1,2.99,2019-10-11 22:13:00,162 6th St, Austin,TX,73301 +272068,AAA Batteries (4-pack),2,2.99,2019-10-06 13:28:00,90 14th St, Austin,TX,73301 +272069,Macbook Pro Laptop,1,1700.0,2019-10-16 19:58:00,570 West St, San Francisco,CA,94016 +272070,27in 4K Gaming Monitor,1,389.99,2019-10-02 18:02:00,90 Jefferson St, New York City,NY,10001 +272071,Wired Headphones,1,11.99,2019-10-13 10:16:00,364 Maple St, San Francisco,CA,94016 +272072,ThinkPad Laptop,1,999.99,2019-10-07 18:05:00,643 Pine St, Los Angeles,CA,90001 +272073,Apple Airpods Headphones,1,150.0,2019-10-27 13:47:00,999 West St, Boston,MA,02215 +272074,AAA Batteries (4-pack),1,2.99,2019-10-02 19:14:00,491 Johnson St, Dallas,TX,75001 +272075,Wired Headphones,1,11.99,2019-10-16 19:13:00,891 8th St, Los Angeles,CA,90001 +272076,USB-C Charging Cable,1,11.95,2019-10-25 21:15:00,256 Forest St, Boston,MA,02215 +272077,AAA Batteries (4-pack),1,2.99,2019-10-03 17:50:00,649 Pine St, Boston,MA,02215 +272078,USB-C Charging Cable,1,11.95,2019-10-11 14:23:00,929 Wilson St, Boston,MA,02215 +272079,ThinkPad Laptop,1,999.99,2019-10-02 08:31:00,901 River St, Austin,TX,73301 +272080,AAA Batteries (4-pack),1,2.99,2019-10-08 12:25:00,281 River St, San Francisco,CA,94016 +272081,34in Ultrawide Monitor,1,379.99,2019-10-15 11:12:00,752 West St, New York City,NY,10001 +272082,Bose SoundSport Headphones,1,99.99,2019-10-11 14:38:00,908 Lakeview St, Seattle,WA,98101 +272083,27in FHD Monitor,1,149.99,2019-10-09 16:43:00,816 14th St, Los Angeles,CA,90001 +272084,Lightning Charging Cable,1,14.95,2019-10-16 03:33:00,911 Pine St, New York City,NY,10001 +272085,Apple Airpods Headphones,1,150.0,2019-10-03 17:48:00,959 Meadow St, Seattle,WA,98101 +272086,Google Phone,1,600.0,2019-10-20 12:14:00,333 North St, San Francisco,CA,94016 +272087,USB-C Charging Cable,1,11.95,2019-10-30 13:50:00,272 Center St, Portland,ME,04101 +272088,AAA Batteries (4-pack),2,2.99,2019-10-01 13:13:00,299 11th St, Boston,MA,02215 +272089,27in FHD Monitor,1,149.99,2019-10-14 19:58:00,493 Johnson St, San Francisco,CA,94016 +272090,AAA Batteries (4-pack),1,2.99,2019-10-30 22:10:00,596 Willow St, Boston,MA,02215 +272091,Lightning Charging Cable,1,14.95,2019-10-12 11:16:00,333 9th St, Atlanta,GA,30301 +272092,iPhone,1,700.0,2019-10-04 14:25:00,267 Church St, Seattle,WA,98101 +272092,Lightning Charging Cable,1,14.95,2019-10-04 14:25:00,267 Church St, Seattle,WA,98101 +272093,iPhone,1,700.0,2019-10-19 02:02:00,378 Johnson St, Atlanta,GA,30301 +272093,Lightning Charging Cable,1,14.95,2019-10-19 02:02:00,378 Johnson St, Atlanta,GA,30301 +272094,AAA Batteries (4-pack),1,2.99,2019-10-26 12:12:00,82 Forest St, San Francisco,CA,94016 +272095,ThinkPad Laptop,1,999.99,2019-10-15 19:54:00,757 Main St, Dallas,TX,75001 +272096,AAA Batteries (4-pack),4,2.99,2019-10-23 12:49:00,269 Washington St, San Francisco,CA,94016 +272097,AAA Batteries (4-pack),1,2.99,2019-10-31 10:24:00,596 14th St, Seattle,WA,98101 +272098,Bose SoundSport Headphones,1,99.99,2019-10-03 12:26:00,145 7th St, Seattle,WA,98101 +272099,Google Phone,1,600.0,2019-10-29 13:37:00,589 Dogwood St, Dallas,TX,75001 +272100,Lightning Charging Cable,1,14.95,2019-10-12 16:35:00,332 Park St, San Francisco,CA,94016 +272101,AA Batteries (4-pack),2,3.84,2019-10-19 13:40:00,164 11th St, San Francisco,CA,94016 +272102,Lightning Charging Cable,1,14.95,2019-10-21 13:59:00,171 North St, Los Angeles,CA,90001 +272103,AAA Batteries (4-pack),2,2.99,2019-10-25 16:52:00,506 11th St, Austin,TX,73301 +272104,AA Batteries (4-pack),1,3.84,2019-10-04 09:52:00,82 Jefferson St, San Francisco,CA,94016 +272105,Lightning Charging Cable,1,14.95,2019-10-08 17:04:00,902 Lincoln St, San Francisco,CA,94016 +272106,AA Batteries (4-pack),2,3.84,2019-10-21 15:05:00,707 6th St, New York City,NY,10001 +272107,34in Ultrawide Monitor,1,379.99,2019-10-01 14:33:00,80 Pine St, New York City,NY,10001 +272108,Lightning Charging Cable,1,14.95,2019-10-17 18:16:00,616 Willow St, Boston,MA,02215 +272109,Wired Headphones,1,11.99,2019-10-27 19:05:00,30 Jackson St, Seattle,WA,98101 +272110,27in FHD Monitor,1,149.99,2019-10-10 19:57:00,310 Spruce St, New York City,NY,10001 +272111,Lightning Charging Cable,1,14.95,2019-10-04 21:30:00,695 Dogwood St, New York City,NY,10001 +272112,USB-C Charging Cable,1,11.95,2019-10-30 15:40:00,523 Jefferson St, Portland,OR,97035 +272113,Lightning Charging Cable,1,14.95,2019-10-26 21:05:00,127 Maple St, San Francisco,CA,94016 +272114,Lightning Charging Cable,1,14.95,2019-10-26 12:58:00,722 6th St, Atlanta,GA,30301 +272115,27in FHD Monitor,1,149.99,2019-10-01 09:48:00,43 West St, New York City,NY,10001 +272116,AAA Batteries (4-pack),1,2.99,2019-10-28 11:55:00,852 South St, San Francisco,CA,94016 +272117,Apple Airpods Headphones,1,150.0,2019-10-18 11:09:00,291 2nd St, Portland,OR,97035 +272118,Wired Headphones,1,11.99,2019-10-13 22:33:00,366 Forest St, San Francisco,CA,94016 +272119,AAA Batteries (4-pack),2,2.99,2019-10-24 17:32:00,398 13th St, San Francisco,CA,94016 +272120,Bose SoundSport Headphones,1,99.99,2019-10-10 19:53:00,619 Forest St, Portland,OR,97035 +272121,Google Phone,1,600.0,2019-10-05 01:20:00,551 Johnson St, Dallas,TX,75001 +272121,Wired Headphones,2,11.99,2019-10-05 01:20:00,551 Johnson St, Dallas,TX,75001 +272122,AAA Batteries (4-pack),1,2.99,2019-10-12 17:49:00,859 Cedar St, Los Angeles,CA,90001 +272123,Wired Headphones,1,11.99,2019-10-22 00:50:00,677 Jefferson St, New York City,NY,10001 +272124,20in Monitor,1,109.99,2019-10-27 20:10:00,795 Sunset St, Los Angeles,CA,90001 +272125,Wired Headphones,1,11.99,2019-10-05 19:46:00,675 Ridge St, San Francisco,CA,94016 +272126,AAA Batteries (4-pack),2,2.99,2019-10-07 00:42:00,520 11th St, Portland,OR,97035 +272127,Wired Headphones,1,11.99,2019-10-20 10:34:00,128 12th St, New York City,NY,10001 +272128,AAA Batteries (4-pack),2,2.99,2019-10-06 15:38:00,600 Chestnut St, Los Angeles,CA,90001 +272129,AA Batteries (4-pack),3,3.84,2019-10-23 01:22:00,414 5th St, San Francisco,CA,94016 +272130,Wired Headphones,1,11.99,2019-10-30 09:47:00,872 Lake St, Seattle,WA,98101 +272131,Google Phone,1,600.0,2019-10-29 10:13:00,361 Chestnut St, San Francisco,CA,94016 +272132,AA Batteries (4-pack),2,3.84,2019-10-03 12:23:00,78 Lake St, Portland,OR,97035 +272132,27in FHD Monitor,1,149.99,2019-10-03 12:23:00,78 Lake St, Portland,OR,97035 +272133,USB-C Charging Cable,1,11.95,2019-10-09 11:37:00,634 Church St, Atlanta,GA,30301 +272134,USB-C Charging Cable,1,11.95,2019-10-04 11:14:00,379 1st St, New York City,NY,10001 +272135,Lightning Charging Cable,1,14.95,2019-10-08 13:02:00,689 Dogwood St, Austin,TX,73301 +272136,Bose SoundSport Headphones,1,99.99,2019-10-16 11:23:00,345 Church St, Boston,MA,02215 +272137,USB-C Charging Cable,1,11.95,2019-10-02 20:32:00,265 Lincoln St, San Francisco,CA,94016 +272138,Lightning Charging Cable,1,14.95,2019-10-05 12:41:00,768 Cedar St, Los Angeles,CA,90001 +272139,Lightning Charging Cable,1,14.95,2019-10-07 18:47:00,796 Cherry St, San Francisco,CA,94016 +272140,Lightning Charging Cable,1,14.95,2019-10-26 23:51:00,951 Main St, Seattle,WA,98101 +272141,AA Batteries (4-pack),2,3.84,2019-10-08 20:58:00,608 13th St, Los Angeles,CA,90001 +272142,AA Batteries (4-pack),1,3.84,2019-10-15 19:32:00,220 Lakeview St, New York City,NY,10001 +272143,AA Batteries (4-pack),1,3.84,2019-10-10 10:04:00,932 14th St, San Francisco,CA,94016 +272144,AAA Batteries (4-pack),4,2.99,2019-10-27 19:52:00,809 Walnut St, New York City,NY,10001 +272145,Bose SoundSport Headphones,1,99.99,2019-10-25 19:18:00,946 Washington St, Portland,OR,97035 +272146,Wired Headphones,1,11.99,2019-10-12 10:26:00,220 Spruce St, Boston,MA,02215 +272147,Apple Airpods Headphones,1,150.0,2019-10-10 15:41:00,378 8th St, Los Angeles,CA,90001 +272148,USB-C Charging Cable,1,11.95,2019-10-22 10:14:00,336 Lincoln St, New York City,NY,10001 +272149,USB-C Charging Cable,1,11.95,2019-10-16 10:38:00,747 5th St, New York City,NY,10001 +272150,AAA Batteries (4-pack),1,2.99,2019-10-01 14:55:00,783 Park St, Boston,MA,02215 +272151,Macbook Pro Laptop,1,1700.0,2019-10-17 12:26:00,609 Dogwood St, Seattle,WA,98101 +272152,Lightning Charging Cable,1,14.95,2019-10-15 20:54:00,716 2nd St, Boston,MA,02215 +272153,AAA Batteries (4-pack),2,2.99,2019-10-19 19:37:00,511 Madison St, San Francisco,CA,94016 +272154,Google Phone,1,600.0,2019-10-01 10:01:00,480 2nd St, San Francisco,CA,94016 +272154,USB-C Charging Cable,2,11.95,2019-10-01 10:01:00,480 2nd St, San Francisco,CA,94016 +272155,Macbook Pro Laptop,1,1700.0,2019-10-29 14:20:00,87 Park St, Boston,MA,02215 +272156,AA Batteries (4-pack),2,3.84,2019-10-28 17:26:00,876 Main St, Dallas,TX,75001 +272157,Lightning Charging Cable,1,14.95,2019-10-05 15:03:00,740 9th St, Atlanta,GA,30301 +272158,USB-C Charging Cable,1,11.95,2019-10-03 17:15:00,751 7th St, Atlanta,GA,30301 +272159,AA Batteries (4-pack),1,3.84,2019-10-01 19:43:00,214 Jefferson St, San Francisco,CA,94016 +272160,Apple Airpods Headphones,1,150.0,2019-10-22 08:05:00,164 Maple St, Seattle,WA,98101 +272161,ThinkPad Laptop,1,999.99,2019-10-14 23:40:00,536 Wilson St, New York City,NY,10001 +272162,Bose SoundSport Headphones,1,99.99,2019-10-12 13:14:00,310 8th St, Los Angeles,CA,90001 +272163,27in FHD Monitor,1,149.99,2019-10-07 17:37:00,910 Spruce St, San Francisco,CA,94016 +272164,Macbook Pro Laptop,1,1700.0,2019-10-20 09:15:00,315 Chestnut St, Portland,OR,97035 +272165,Bose SoundSport Headphones,1,99.99,2019-10-13 13:47:00,135 Park St, New York City,NY,10001 +272166,AA Batteries (4-pack),2,3.84,2019-10-21 15:22:00,875 Adams St, Portland,ME,04101 +272167,Lightning Charging Cable,1,14.95,2019-10-05 12:00:00,895 11th St, Portland,OR,97035 +272168,Apple Airpods Headphones,1,150.0,2019-10-10 15:39:00,77 River St, Boston,MA,02215 +272169,AA Batteries (4-pack),1,3.84,2019-10-30 16:18:00,668 Willow St, Atlanta,GA,30301 +272170,AA Batteries (4-pack),1,3.84,2019-10-13 13:52:00,676 Johnson St, San Francisco,CA,94016 +272171,AA Batteries (4-pack),2,3.84,2019-10-15 13:02:00,648 4th St, Boston,MA,02215 +272172,Macbook Pro Laptop,1,1700.0,2019-10-17 12:34:00,859 North St, San Francisco,CA,94016 +272173,34in Ultrawide Monitor,1,379.99,2019-10-09 18:54:00,390 South St, San Francisco,CA,94016 +272174,iPhone,1,700.0,2019-10-22 13:06:00,472 Park St, New York City,NY,10001 +272175,27in 4K Gaming Monitor,1,389.99,2019-10-07 13:46:00,883 Walnut St, Los Angeles,CA,90001 +272176,AA Batteries (4-pack),2,3.84,2019-10-02 15:37:00,950 9th St, San Francisco,CA,94016 +272177,Apple Airpods Headphones,1,150.0,2019-10-10 09:32:00,2 Johnson St, Austin,TX,73301 +272178,Lightning Charging Cable,1,14.95,2019-10-27 10:25:00,295 Hill St, New York City,NY,10001 +272179,AAA Batteries (4-pack),3,2.99,2019-10-19 18:05:00,120 Church St, Dallas,TX,75001 +272180,AA Batteries (4-pack),1,3.84,2019-10-02 17:04:00,190 River St, Los Angeles,CA,90001 +272181,20in Monitor,1,109.99,2019-10-18 14:25:00,569 6th St, San Francisco,CA,94016 +272182,ThinkPad Laptop,1,999.99,2019-10-31 15:53:00,768 Park St, Dallas,TX,75001 +272183,AA Batteries (4-pack),1,3.84,2019-10-24 23:49:00,860 Sunset St, Los Angeles,CA,90001 +272184,USB-C Charging Cable,1,11.95,2019-10-22 21:25:00,250 Highland St, San Francisco,CA,94016 +272185,AA Batteries (4-pack),1,3.84,2019-10-30 15:38:00,742 Cherry St, San Francisco,CA,94016 +272186,ThinkPad Laptop,1,999.99,2019-10-06 11:54:00,260 Jackson St, Austin,TX,73301 +272187,Wired Headphones,1,11.99,2019-10-07 19:53:00,929 4th St, Dallas,TX,75001 +272188,Wired Headphones,1,11.99,2019-10-18 10:05:00,134 Elm St, Los Angeles,CA,90001 +272189,USB-C Charging Cable,1,11.95,2019-10-15 17:19:00,683 South St, Austin,TX,73301 +272190,34in Ultrawide Monitor,1,379.99,2019-10-30 21:54:00,356 Lake St, Los Angeles,CA,90001 +272191,USB-C Charging Cable,1,11.95,2019-10-22 19:42:00,118 Wilson St, Portland,OR,97035 +272192,USB-C Charging Cable,1,11.95,2019-10-31 11:54:00,752 13th St, Seattle,WA,98101 +272193,Vareebadd Phone,1,400.0,2019-10-07 07:56:00,265 Main St, Boston,MA,02215 +272194,AAA Batteries (4-pack),1,2.99,2019-10-02 17:32:00,186 2nd St, San Francisco,CA,94016 +272194,Lightning Charging Cable,1,14.95,2019-10-02 17:32:00,186 2nd St, San Francisco,CA,94016 +272195,ThinkPad Laptop,1,999.99,2019-10-30 07:34:00,852 Jefferson St, Dallas,TX,75001 +272196,Wired Headphones,1,11.99,2019-10-06 16:43:00,105 1st St, Boston,MA,02215 +272197,27in FHD Monitor,1,149.99,2019-10-08 19:48:00,608 Jackson St, San Francisco,CA,94016 +272198,iPhone,1,700.0,2019-10-28 15:04:00,587 Hill St, Los Angeles,CA,90001 +272198,Lightning Charging Cable,1,14.95,2019-10-28 15:04:00,587 Hill St, Los Angeles,CA,90001 +272199,AAA Batteries (4-pack),2,2.99,2019-10-04 20:34:00,428 9th St, Dallas,TX,75001 +272200,Wired Headphones,1,11.99,2019-10-03 10:05:00,95 Washington St, Atlanta,GA,30301 +272201,Apple Airpods Headphones,1,150.0,2019-10-17 11:36:00,567 Washington St, Dallas,TX,75001 +272202,USB-C Charging Cable,1,11.95,2019-10-20 18:16:00,526 Maple St, Atlanta,GA,30301 +272203,USB-C Charging Cable,1,11.95,2019-10-23 23:08:00,30 Lincoln St, Portland,OR,97035 +272204,ThinkPad Laptop,1,999.99,2019-10-12 04:45:00,31 Church St, Boston,MA,02215 +272205,USB-C Charging Cable,1,11.95,2019-10-06 18:27:00,202 Meadow St, Boston,MA,02215 +272206,Macbook Pro Laptop,1,1700.0,2019-10-25 20:21:00,939 Lake St, Los Angeles,CA,90001 +272207,USB-C Charging Cable,2,11.95,2019-10-16 09:29:00,681 Church St, San Francisco,CA,94016 +272208,Flatscreen TV,1,300.0,2019-10-20 18:21:00,956 2nd St, Atlanta,GA,30301 +272209,AA Batteries (4-pack),2,3.84,2019-10-19 22:32:00,14 Sunset St, Portland,ME,04101 +272210,Lightning Charging Cable,1,14.95,2019-10-24 21:55:00,199 North St, San Francisco,CA,94016 +272211,Bose SoundSport Headphones,1,99.99,2019-10-10 16:00:00,853 River St, Boston,MA,02215 +272212,Google Phone,1,600.0,2019-10-06 03:16:00,311 Willow St, Atlanta,GA,30301 +272213,Lightning Charging Cable,1,14.95,2019-10-18 20:08:00,750 Madison St, New York City,NY,10001 +272214,Lightning Charging Cable,1,14.95,2019-10-13 20:53:00,614 12th St, Los Angeles,CA,90001 +272215,Lightning Charging Cable,1,14.95,2019-10-10 12:58:00,371 9th St, San Francisco,CA,94016 +272216,Wired Headphones,1,11.99,2019-10-22 08:43:00,134 West St, Portland,OR,97035 +272217,27in 4K Gaming Monitor,1,389.99,2019-10-31 16:37:00,48 Church St, New York City,NY,10001 +272218,Bose SoundSport Headphones,1,99.99,2019-10-06 19:30:00,611 6th St, Los Angeles,CA,90001 +272219,AAA Batteries (4-pack),1,2.99,2019-10-22 13:40:00,986 8th St, Los Angeles,CA,90001 +272220,34in Ultrawide Monitor,1,379.99,2019-10-07 20:34:00,219 River St, Dallas,TX,75001 +272221,27in 4K Gaming Monitor,1,389.99,2019-10-01 13:05:00,860 River St, Austin,TX,73301 +272222,AAA Batteries (4-pack),2,2.99,2019-10-24 10:36:00,145 Adams St, San Francisco,CA,94016 +272223,AA Batteries (4-pack),1,3.84,2019-10-19 21:54:00,622 6th St, Portland,OR,97035 +272224,Apple Airpods Headphones,1,150.0,2019-10-29 20:58:00,969 5th St, Dallas,TX,75001 +272225,AAA Batteries (4-pack),2,2.99,2019-10-08 19:55:00,332 Adams St, San Francisco,CA,94016 +272226,Apple Airpods Headphones,1,150.0,2019-10-07 13:52:00,397 Ridge St, New York City,NY,10001 +272227,Wired Headphones,2,11.99,2019-10-05 22:44:00,510 1st St, Los Angeles,CA,90001 +272228,AAA Batteries (4-pack),4,2.99,2019-10-16 14:05:00,974 Johnson St, Los Angeles,CA,90001 +272229,27in FHD Monitor,1,149.99,2019-10-31 18:03:00,305 Madison St, New York City,NY,10001 +272230,Flatscreen TV,1,300.0,2019-10-25 21:35:00,142 Sunset St, Los Angeles,CA,90001 +272231,Apple Airpods Headphones,1,150.0,2019-10-27 08:25:00,887 Madison St, Los Angeles,CA,90001 +272232,AAA Batteries (4-pack),1,2.99,2019-10-24 12:12:00,584 Hickory St, Seattle,WA,98101 +272233,iPhone,1,700.0,2019-10-16 12:10:00,946 7th St, Atlanta,GA,30301 +272234,Apple Airpods Headphones,1,150.0,2019-10-14 10:20:00,976 8th St, Boston,MA,02215 +272235,34in Ultrawide Monitor,1,379.99,2019-10-03 09:07:00,115 Jackson St, San Francisco,CA,94016 +272236,AAA Batteries (4-pack),1,2.99,2019-10-04 08:13:00,359 Willow St, Seattle,WA,98101 +272237,Google Phone,1,600.0,2019-10-11 13:55:00,914 Washington St, San Francisco,CA,94016 +272237,USB-C Charging Cable,1,11.95,2019-10-11 13:55:00,914 Washington St, San Francisco,CA,94016 +272238,AA Batteries (4-pack),1,3.84,2019-10-27 15:44:00,405 Lakeview St, New York City,NY,10001 +272239,Apple Airpods Headphones,1,150.0,2019-10-19 10:13:00,775 Madison St, San Francisco,CA,94016 +272240,Wired Headphones,1,11.99,2019-10-09 10:13:00,248 Jackson St, Boston,MA,02215 +272241,Lightning Charging Cable,1,14.95,2019-10-26 22:33:00,643 North St, Los Angeles,CA,90001 +272242,Google Phone,1,600.0,2019-10-14 11:48:00,295 Spruce St, San Francisco,CA,94016 +272243,Apple Airpods Headphones,1,150.0,2019-10-25 21:53:00,533 Lakeview St, Austin,TX,73301 +272244,34in Ultrawide Monitor,1,379.99,2019-10-04 12:23:00,294 1st St, Los Angeles,CA,90001 +272245,Bose SoundSport Headphones,1,99.99,2019-10-16 00:57:00,521 5th St, San Francisco,CA,94016 +272246,20in Monitor,1,109.99,2019-10-17 15:33:00,460 Jackson St, Atlanta,GA,30301 +272247,ThinkPad Laptop,1,999.99,2019-10-19 20:06:00,818 Washington St, Los Angeles,CA,90001 +272248,USB-C Charging Cable,1,11.95,2019-10-28 17:09:00,299 West St, New York City,NY,10001 +272249,27in 4K Gaming Monitor,1,389.99,2019-10-27 23:14:00,364 4th St, Boston,MA,02215 +272250,AAA Batteries (4-pack),1,2.99,2019-10-08 08:45:00,767 River St, San Francisco,CA,94016 +272251,34in Ultrawide Monitor,1,379.99,2019-10-09 16:31:00,719 Jefferson St, Los Angeles,CA,90001 +272252,Wired Headphones,1,11.99,2019-10-01 16:22:00,441 Spruce St, Dallas,TX,75001 +272253,Bose SoundSport Headphones,1,99.99,2019-10-29 18:44:00,13 Park St, Los Angeles,CA,90001 +272254,AAA Batteries (4-pack),4,2.99,2019-10-30 18:10:00,93 Pine St, Dallas,TX,75001 +272255,USB-C Charging Cable,1,11.95,2019-10-03 21:57:00,195 Highland St, Seattle,WA,98101 +272256,27in 4K Gaming Monitor,1,389.99,2019-10-02 20:35:00,14 Johnson St, San Francisco,CA,94016 +272257,Wired Headphones,1,11.99,2019-10-04 17:10:00,24 10th St, Boston,MA,02215 +272258,ThinkPad Laptop,1,999.99,2019-10-30 15:37:00,83 Lakeview St, San Francisco,CA,94016 +272259,34in Ultrawide Monitor,1,379.99,2019-10-31 07:58:00,981 Main St, Los Angeles,CA,90001 +272260,Lightning Charging Cable,1,14.95,2019-10-27 12:17:00,542 Pine St, Portland,OR,97035 +272261,ThinkPad Laptop,1,999.99,2019-10-07 20:40:00,746 Ridge St, San Francisco,CA,94016 +272262,Wired Headphones,1,11.99,2019-10-14 12:04:00,751 6th St, Boston,MA,02215 +272263,Lightning Charging Cable,1,14.95,2019-10-19 19:04:00,924 Lake St, Portland,ME,04101 +272264,Lightning Charging Cable,1,14.95,2019-10-24 01:35:00,164 12th St, Seattle,WA,98101 +272265,27in FHD Monitor,1,149.99,2019-10-11 11:30:00,561 Hickory St, Seattle,WA,98101 +272266,Lightning Charging Cable,1,14.95,2019-10-25 17:13:00,688 Madison St, Atlanta,GA,30301 +272267,27in FHD Monitor,1,149.99,2019-10-28 19:24:00,311 Wilson St, Los Angeles,CA,90001 +272268,iPhone,1,700.0,2019-10-15 06:03:00,414 Washington St, Los Angeles,CA,90001 +272269,Lightning Charging Cable,1,14.95,2019-10-23 11:24:00,641 Hill St, Los Angeles,CA,90001 +272270,Apple Airpods Headphones,1,150.0,2019-10-27 07:52:00,626 10th St, Portland,ME,04101 +272271,Wired Headphones,2,11.99,2019-10-11 13:42:00,612 Maple St, New York City,NY,10001 +272272,AA Batteries (4-pack),2,3.84,2019-10-12 17:43:00,803 Jefferson St, Austin,TX,73301 +272273,Apple Airpods Headphones,1,150.0,2019-10-09 12:35:00,99 Spruce St, San Francisco,CA,94016 +272274,Apple Airpods Headphones,1,150.0,2019-10-08 18:18:00,926 Ridge St, New York City,NY,10001 +272275,Google Phone,1,600.0,2019-10-13 15:34:00,136 Elm St, Portland,OR,97035 +272276,Bose SoundSport Headphones,1,99.99,2019-10-21 15:03:00,568 Adams St, San Francisco,CA,94016 +272277,Apple Airpods Headphones,1,150.0,2019-10-05 10:08:00,250 Lakeview St, San Francisco,CA,94016 +272278,AA Batteries (4-pack),1,3.84,2019-10-12 18:37:00,969 Pine St, New York City,NY,10001 +272279,Apple Airpods Headphones,1,150.0,2019-10-17 19:33:00,580 Ridge St, San Francisco,CA,94016 +272279,Bose SoundSport Headphones,1,99.99,2019-10-17 19:33:00,580 Ridge St, San Francisco,CA,94016 +272280,27in 4K Gaming Monitor,1,389.99,2019-10-11 22:11:00,283 10th St, Los Angeles,CA,90001 +272281,34in Ultrawide Monitor,1,379.99,2019-10-27 07:34:00,431 Cedar St, Los Angeles,CA,90001 +272282,AAA Batteries (4-pack),1,2.99,2019-10-29 21:21:00,551 Hickory St, Boston,MA,02215 +272283,Flatscreen TV,1,300.0,2019-10-26 20:17:00,326 Wilson St, Atlanta,GA,30301 +272284,Apple Airpods Headphones,1,150.0,2019-10-19 16:43:00,544 Cherry St, Seattle,WA,98101 +272285,AA Batteries (4-pack),1,3.84,2019-10-11 14:02:00,903 6th St, Seattle,WA,98101 +272286,27in FHD Monitor,1,149.99,2019-10-23 09:18:00,855 Johnson St, New York City,NY,10001 +272286,Lightning Charging Cable,1,14.95,2019-10-23 09:18:00,855 Johnson St, New York City,NY,10001 +272287,Google Phone,1,600.0,2019-10-05 22:24:00,546 Sunset St, New York City,NY,10001 +272288,27in FHD Monitor,1,149.99,2019-10-17 19:54:00,456 4th St, San Francisco,CA,94016 +272289,AAA Batteries (4-pack),2,2.99,2019-10-23 10:49:00,238 Maple St, Atlanta,GA,30301 +272290,Lightning Charging Cable,1,14.95,2019-10-29 18:14:00,561 Madison St, New York City,NY,10001 +272291,34in Ultrawide Monitor,1,379.99,2019-10-20 19:24:00,263 7th St, Austin,TX,73301 +272292,Wired Headphones,1,11.99,2019-10-10 19:37:00,917 Spruce St, Dallas,TX,75001 +272293,AAA Batteries (4-pack),1,2.99,2019-10-08 22:56:00,172 11th St, New York City,NY,10001 +272294,Wired Headphones,1,11.99,2019-10-17 16:29:00,468 Pine St, Portland,OR,97035 +272295,AAA Batteries (4-pack),1,2.99,2019-10-02 10:12:00,326 Sunset St, Atlanta,GA,30301 +272296,20in Monitor,1,109.99,2019-10-16 15:01:00,428 Jackson St, Boston,MA,02215 +272297,Lightning Charging Cable,1,14.95,2019-10-23 23:28:00,447 10th St, Los Angeles,CA,90001 +272298,20in Monitor,1,109.99,2019-10-09 11:27:00,394 4th St, Dallas,TX,75001 +272299,LG Dryer,1,600.0,2019-10-20 22:49:00,400 8th St, Portland,OR,97035 +272300,AA Batteries (4-pack),1,3.84,2019-10-18 21:36:00,694 Highland St, Los Angeles,CA,90001 +272301,Lightning Charging Cable,1,14.95,2019-10-23 00:02:00,742 7th St, San Francisco,CA,94016 +272302,Macbook Pro Laptop,1,1700.0,2019-10-25 14:02:00,698 South St, San Francisco,CA,94016 +272303,AAA Batteries (4-pack),1,2.99,2019-10-28 13:19:00,810 Hill St, New York City,NY,10001 +272304,iPhone,1,700.0,2019-10-24 18:50:00,343 Lakeview St, San Francisco,CA,94016 +272305,34in Ultrawide Monitor,1,379.99,2019-10-11 12:26:00,911 Forest St, Seattle,WA,98101 +272306,AA Batteries (4-pack),1,3.84,2019-10-11 13:09:00,461 South St, Atlanta,GA,30301 +272307,Apple Airpods Headphones,1,150.0,2019-10-03 11:24:00,792 5th St, New York City,NY,10001 +272308,Wired Headphones,2,11.99,2019-10-22 18:47:00,846 5th St, New York City,NY,10001 +272309,iPhone,1,700.0,2019-10-01 11:58:00,238 Maple St, Atlanta,GA,30301 +272310,Lightning Charging Cable,1,14.95,2019-10-10 13:00:00,242 River St, Austin,TX,73301 +272311,USB-C Charging Cable,2,11.95,2019-10-22 19:59:00,188 2nd St, Dallas,TX,75001 +272312,USB-C Charging Cable,3,11.95,2019-10-26 14:16:00,917 Dogwood St, Los Angeles,CA,90001 +272313,AA Batteries (4-pack),1,3.84,2019-10-07 13:54:00,630 Maple St, Los Angeles,CA,90001 +272314,27in 4K Gaming Monitor,1,389.99,2019-10-05 16:28:00,800 Park St, San Francisco,CA,94016 +272315,Apple Airpods Headphones,1,150.0,2019-10-31 09:41:00,638 Church St, Los Angeles,CA,90001 +272316,Wired Headphones,1,11.99,2019-10-05 17:16:00,292 Cedar St, Dallas,TX,75001 +272317,AAA Batteries (4-pack),2,2.99,2019-10-04 17:38:00,793 Spruce St, Atlanta,GA,30301 +272318,AAA Batteries (4-pack),1,2.99,2019-10-23 21:12:00,106 Cherry St, Atlanta,GA,30301 +272319,AAA Batteries (4-pack),3,2.99,2019-10-29 14:26:00,807 Walnut St, San Francisco,CA,94016 +272320,AAA Batteries (4-pack),1,2.99,2019-10-24 19:09:00,240 Johnson St, Los Angeles,CA,90001 +272321,Lightning Charging Cable,1,14.95,2019-10-17 11:33:00,707 Johnson St, San Francisco,CA,94016 +272322,Flatscreen TV,1,300.0,2019-10-10 09:09:00,996 Adams St, San Francisco,CA,94016 +272323,AA Batteries (4-pack),4,3.84,2019-10-22 19:32:00,307 4th St, Portland,OR,97035 +272324,AA Batteries (4-pack),1,3.84,2019-10-07 15:29:00,353 South St, Boston,MA,02215 +272325,20in Monitor,1,109.99,2019-10-19 08:28:00,849 4th St, New York City,NY,10001 +272326,Vareebadd Phone,1,400.0,2019-10-28 19:39:00,692 Main St, San Francisco,CA,94016 +272327,Lightning Charging Cable,1,14.95,2019-10-19 01:07:00,372 Church St, New York City,NY,10001 +272328,USB-C Charging Cable,1,11.95,2019-10-13 15:13:00,381 Meadow St, San Francisco,CA,94016 +272329,27in FHD Monitor,1,149.99,2019-10-04 11:15:00,544 Adams St, Dallas,TX,75001 +272330,Bose SoundSport Headphones,1,99.99,2019-10-28 19:11:00,899 West St, New York City,NY,10001 +272331,AA Batteries (4-pack),1,3.84,2019-10-23 17:17:00,339 Jackson St, Boston,MA,02215 +272332,iPhone,1,700.0,2019-10-03 09:03:00,81 Sunset St, San Francisco,CA,94016 +272332,Wired Headphones,1,11.99,2019-10-03 09:03:00,81 Sunset St, San Francisco,CA,94016 +272333,Google Phone,1,600.0,2019-10-30 11:18:00,952 Pine St, Portland,OR,97035 +272333,USB-C Charging Cable,1,11.95,2019-10-30 11:18:00,952 Pine St, Portland,OR,97035 +272334,AA Batteries (4-pack),3,3.84,2019-10-02 15:07:00,173 Dogwood St, Seattle,WA,98101 +272335,Bose SoundSport Headphones,1,99.99,2019-10-12 12:58:00,969 Lakeview St, Atlanta,GA,30301 +272336,Vareebadd Phone,1,400.0,2019-10-26 00:28:00,890 5th St, San Francisco,CA,94016 +272337,USB-C Charging Cable,1,11.95,2019-10-12 11:23:00,677 14th St, Dallas,TX,75001 +272338,AAA Batteries (4-pack),1,2.99,2019-10-27 21:21:00,335 Willow St, Los Angeles,CA,90001 +272339,Wired Headphones,1,11.99,2019-10-14 10:16:00,619 Pine St, Boston,MA,02215 +272340,27in FHD Monitor,1,149.99,2019-10-27 09:14:00,748 Cedar St, Portland,OR,97035 +272341,AA Batteries (4-pack),1,3.84,2019-10-22 07:40:00,641 Jefferson St, Boston,MA,02215 +272342,34in Ultrawide Monitor,1,379.99,2019-10-29 13:58:00,528 Forest St, Los Angeles,CA,90001 +272343,Apple Airpods Headphones,1,150.0,2019-10-15 21:27:00,540 Wilson St, Atlanta,GA,30301 +272344,AA Batteries (4-pack),1,3.84,2019-10-23 11:19:00,898 12th St, Atlanta,GA,30301 +272345,ThinkPad Laptop,1,999.99,2019-10-22 08:33:00,473 Cedar St, Seattle,WA,98101 +272346,Apple Airpods Headphones,1,150.0,2019-10-03 11:54:00,945 Jackson St, Portland,OR,97035 +272347,20in Monitor,1,109.99,2019-10-01 07:47:00,621 South St, San Francisco,CA,94016 +272348,Wired Headphones,1,11.99,2019-10-28 09:07:00,835 Lakeview St, Boston,MA,02215 +272349,27in 4K Gaming Monitor,1,389.99,2019-10-21 07:59:00,701 Madison St, Boston,MA,02215 +272350,27in FHD Monitor,1,149.99,2019-10-13 12:47:00,638 6th St, Portland,OR,97035 +272351,Bose SoundSport Headphones,1,99.99,2019-10-08 17:12:00,765 Cherry St, Dallas,TX,75001 +272352,Wired Headphones,2,11.99,2019-10-06 11:48:00,111 2nd St, Portland,ME,04101 +272353,Lightning Charging Cable,1,14.95,2019-10-02 17:49:00,183 Spruce St, San Francisco,CA,94016 +272354,Wired Headphones,1,11.99,2019-10-16 13:33:00,406 Lincoln St, Seattle,WA,98101 +272355,Lightning Charging Cable,1,14.95,2019-10-15 21:55:00,5 River St, Seattle,WA,98101 +272356,Bose SoundSport Headphones,1,99.99,2019-10-27 22:51:00,69 South St, New York City,NY,10001 +272357,AA Batteries (4-pack),1,3.84,2019-10-12 10:02:00,944 Ridge St, Seattle,WA,98101 +272358,USB-C Charging Cable,1,11.95,2019-10-28 14:00:00,155 Adams St, San Francisco,CA,94016 +272359,Bose SoundSport Headphones,1,99.99,2019-10-13 10:34:00,855 Jackson St, San Francisco,CA,94016 +272360,iPhone,1,700.0,2019-10-04 19:47:00,6 Lakeview St, Atlanta,GA,30301 +272361,LG Dryer,1,600.0,2019-10-12 18:42:00,288 Church St, Austin,TX,73301 +272362,27in FHD Monitor,1,149.99,2019-10-09 13:31:00,13 Meadow St, Atlanta,GA,30301 +272363,Lightning Charging Cable,2,14.95,2019-10-13 23:49:00,531 Washington St, San Francisco,CA,94016 +272364,Lightning Charging Cable,1,14.95,2019-10-28 07:51:00,338 Cedar St, San Francisco,CA,94016 +272365,USB-C Charging Cable,1,11.95,2019-10-17 23:17:00,210 Meadow St, Atlanta,GA,30301 +272366,27in FHD Monitor,1,149.99,2019-10-21 15:49:00,990 8th St, Los Angeles,CA,90001 +272367,Lightning Charging Cable,1,14.95,2019-10-31 18:23:00,439 Madison St, Atlanta,GA,30301 +272368,AA Batteries (4-pack),1,3.84,2019-10-10 13:38:00,530 Maple St, Seattle,WA,98101 +272369,Wired Headphones,1,11.99,2019-10-27 20:26:00,225 11th St, New York City,NY,10001 +272370,Wired Headphones,1,11.99,2019-10-23 14:43:00,510 Main St, Boston,MA,02215 +272371,Lightning Charging Cable,1,14.95,2019-10-14 07:38:00,782 Cedar St, Boston,MA,02215 +272372,34in Ultrawide Monitor,1,379.99,2019-10-25 13:43:00,259 Chestnut St, Los Angeles,CA,90001 +272373,Lightning Charging Cable,1,14.95,2019-10-19 09:20:00,305 4th St, San Francisco,CA,94016 +272374,USB-C Charging Cable,1,11.95,2019-10-01 11:32:00,23 Ridge St, New York City,NY,10001 +272375,34in Ultrawide Monitor,1,379.99,2019-10-07 12:52:00,301 Ridge St, Austin,TX,73301 +272376,34in Ultrawide Monitor,1,379.99,2019-10-27 11:52:00,784 Lake St, New York City,NY,10001 +272377,Apple Airpods Headphones,1,150.0,2019-10-30 04:13:00,836 7th St, Los Angeles,CA,90001 +272378,Bose SoundSport Headphones,1,99.99,2019-10-24 18:50:00,819 Willow St, Austin,TX,73301 +272379,34in Ultrawide Monitor,1,379.99,2019-10-25 11:48:00,463 Ridge St, Austin,TX,73301 +272380,Wired Headphones,1,11.99,2019-10-06 14:13:00,875 Park St, Boston,MA,02215 +272381,Wired Headphones,1,11.99,2019-10-24 09:54:00,410 8th St, San Francisco,CA,94016 +272382,Lightning Charging Cable,1,14.95,2019-10-28 13:31:00,56 1st St, Seattle,WA,98101 +272383,Lightning Charging Cable,1,14.95,2019-10-10 12:33:00,994 Cedar St, Atlanta,GA,30301 +272384,Bose SoundSport Headphones,1,99.99,2019-10-22 18:02:00,75 Lincoln St, Los Angeles,CA,90001 +272385,AAA Batteries (4-pack),2,2.99,2019-10-23 06:20:00,53 Johnson St, San Francisco,CA,94016 +272386,AAA Batteries (4-pack),4,2.99,2019-10-01 11:12:00,646 Park St, Seattle,WA,98101 +272387,Wired Headphones,1,11.99,2019-10-15 00:01:00,749 Meadow St, Atlanta,GA,30301 +272388,USB-C Charging Cable,1,11.95,2019-10-24 21:11:00,869 Cherry St, Los Angeles,CA,90001 +272389,Lightning Charging Cable,2,14.95,2019-10-05 13:05:00,276 Wilson St, Los Angeles,CA,90001 +272390,27in FHD Monitor,1,149.99,2019-10-04 21:37:00,375 Ridge St, Boston,MA,02215 +272391,ThinkPad Laptop,1,999.99,2019-10-14 10:18:00,729 Willow St, San Francisco,CA,94016 +272392,27in FHD Monitor,1,149.99,2019-10-05 01:03:00,970 12th St, Dallas,TX,75001 +272393,Wired Headphones,1,11.99,2019-10-15 04:03:00,670 6th St, Portland,OR,97035 +272394,Lightning Charging Cable,1,14.95,2019-10-31 20:54:00,726 7th St, San Francisco,CA,94016 +272395,iPhone,1,700.0,2019-10-31 19:33:00,593 Spruce St, Los Angeles,CA,90001 +272396,Apple Airpods Headphones,1,150.0,2019-10-09 11:29:00,36 Lincoln St, Los Angeles,CA,90001 +272397,27in 4K Gaming Monitor,1,389.99,2019-10-18 23:54:00,262 8th St, Portland,OR,97035 +272398,Bose SoundSport Headphones,1,99.99,2019-10-30 10:45:00,826 Park St, Atlanta,GA,30301 +272399,USB-C Charging Cable,1,11.95,2019-10-07 13:15:00,774 Wilson St, Atlanta,GA,30301 +272400,27in 4K Gaming Monitor,1,389.99,2019-10-12 17:06:00,600 Wilson St, Seattle,WA,98101 +272401,AA Batteries (4-pack),1,3.84,2019-10-18 10:18:00,58 Hickory St, Austin,TX,73301 +272402,Apple Airpods Headphones,1,150.0,2019-10-14 21:30:00,134 Elm St, San Francisco,CA,94016 +272403,Flatscreen TV,1,300.0,2019-10-22 20:45:00,905 Elm St, Atlanta,GA,30301 +272404,Macbook Pro Laptop,1,1700.0,2019-10-30 12:51:00,408 Forest St, New York City,NY,10001 +272405,USB-C Charging Cable,1,11.95,2019-10-22 00:23:00,586 12th St, San Francisco,CA,94016 +272406,iPhone,1,700.0,2019-10-11 22:02:00,503 Center St, Seattle,WA,98101 +272407,USB-C Charging Cable,1,11.95,2019-10-09 20:43:00,499 Spruce St, Boston,MA,02215 +272408,Apple Airpods Headphones,1,150.0,2019-10-13 17:59:00,398 Madison St, San Francisco,CA,94016 +272409,AA Batteries (4-pack),2,3.84,2019-10-27 06:11:00,494 Elm St, Los Angeles,CA,90001 +272410,Apple Airpods Headphones,1,150.0,2019-10-16 17:24:00,416 2nd St, Dallas,TX,75001 +272411,USB-C Charging Cable,1,11.95,2019-10-24 08:23:00,50 River St, Boston,MA,02215 +272412,AAA Batteries (4-pack),1,2.99,2019-10-23 19:15:00,957 Lake St, New York City,NY,10001 +272413,Google Phone,1,600.0,2019-10-24 18:34:00,891 Center St, New York City,NY,10001 +272414,AAA Batteries (4-pack),1,2.99,2019-10-07 22:15:00,481 Highland St, San Francisco,CA,94016 +272415,AA Batteries (4-pack),1,3.84,2019-10-18 15:11:00,294 1st St, Boston,MA,02215 +272416,27in 4K Gaming Monitor,1,389.99,2019-10-03 20:43:00,649 6th St, Austin,TX,73301 +272417,27in FHD Monitor,1,149.99,2019-10-06 17:43:00,737 Park St, Seattle,WA,98101 +272418,AAA Batteries (4-pack),1,2.99,2019-10-29 19:05:00,849 Hickory St, Boston,MA,02215 +272419,Bose SoundSport Headphones,1,99.99,2019-10-12 13:00:00,931 Willow St, San Francisco,CA,94016 +272420,Lightning Charging Cable,1,14.95,2019-10-05 13:24:00,858 12th St, Seattle,WA,98101 +272421,Google Phone,1,600.0,2019-10-16 07:16:00,490 13th St, San Francisco,CA,94016 +272422,Wired Headphones,1,11.99,2019-10-18 14:13:00,85 8th St, Boston,MA,02215 +272423,Lightning Charging Cable,1,14.95,2019-10-31 19:45:00,902 7th St, San Francisco,CA,94016 +272424,Apple Airpods Headphones,1,150.0,2019-10-14 17:32:00,66 9th St, Seattle,WA,98101 +272425,AAA Batteries (4-pack),2,2.99,2019-10-05 08:57:00,2 South St, Boston,MA,02215 +272426,AA Batteries (4-pack),1,3.84,2019-10-11 16:33:00,781 14th St, Atlanta,GA,30301 +272427,Lightning Charging Cable,1,14.95,2019-10-27 01:55:00,24 Sunset St, New York City,NY,10001 +272428,Wired Headphones,1,11.99,2019-10-01 12:38:00,94 Wilson St, Austin,TX,73301 +272429,Google Phone,1,600.0,2019-10-04 22:58:00,709 Forest St, Los Angeles,CA,90001 +272430,Macbook Pro Laptop,1,1700.0,2019-10-27 19:34:00,641 Ridge St, Seattle,WA,98101 +272431,27in FHD Monitor,1,149.99,2019-10-07 10:54:00,975 Johnson St, Dallas,TX,75001 +272432,iPhone,1,700.0,2019-10-11 11:58:00,531 Chestnut St, New York City,NY,10001 +272432,Lightning Charging Cable,1,14.95,2019-10-11 11:58:00,531 Chestnut St, New York City,NY,10001 +272433,AA Batteries (4-pack),2,3.84,2019-10-15 13:31:00,152 Jefferson St, Boston,MA,02215 +272434,AAA Batteries (4-pack),1,2.99,2019-10-15 17:51:00,331 11th St, Boston,MA,02215 +272435,AAA Batteries (4-pack),1,2.99,2019-10-19 09:40:00,333 12th St, Atlanta,GA,30301 +272436,AA Batteries (4-pack),1,3.84,2019-10-10 13:49:00,771 11th St, San Francisco,CA,94016 +272437,27in FHD Monitor,1,149.99,2019-10-16 06:30:00,379 9th St, Los Angeles,CA,90001 +272438,AA Batteries (4-pack),1,3.84,2019-10-28 11:39:00,307 Johnson St, Boston,MA,02215 +272439,Lightning Charging Cable,1,14.95,2019-10-17 15:14:00,467 9th St, San Francisco,CA,94016 +272440,AAA Batteries (4-pack),1,2.99,2019-10-21 10:28:00,707 4th St, San Francisco,CA,94016 +272441,USB-C Charging Cable,1,11.95,2019-10-13 15:04:00,68 Pine St, Boston,MA,02215 +272442,Apple Airpods Headphones,1,150.0,2019-10-11 18:55:00,712 Washington St, San Francisco,CA,94016 +272443,iPhone,1,700.0,2019-10-04 18:50:00,89 Sunset St, Los Angeles,CA,90001 +272444,USB-C Charging Cable,1,11.95,2019-10-09 14:12:00,314 North St, San Francisco,CA,94016 +272445,Flatscreen TV,1,300.0,2019-10-29 05:17:00,106 Johnson St, Dallas,TX,75001 +272446,Lightning Charging Cable,1,14.95,2019-10-26 12:51:00,239 Forest St, Seattle,WA,98101 +272447,Macbook Pro Laptop,1,1700.0,2019-10-15 23:04:00,362 West St, Dallas,TX,75001 +272448,USB-C Charging Cable,1,11.95,2019-10-08 10:23:00,630 Maple St, Boston,MA,02215 +272449,AAA Batteries (4-pack),2,2.99,2019-10-24 14:13:00,653 Meadow St, Seattle,WA,98101 +272450,AAA Batteries (4-pack),1,2.99,2019-10-24 16:41:00,944 13th St, San Francisco,CA,94016 +272451,Lightning Charging Cable,1,14.95,2019-10-16 18:38:00,869 Wilson St, San Francisco,CA,94016 +272452,USB-C Charging Cable,1,11.95,2019-10-06 15:37:00,684 Washington St, Boston,MA,02215 +272453,Apple Airpods Headphones,1,150.0,2019-10-14 11:26:00,662 Elm St, Los Angeles,CA,90001 +272454,iPhone,1,700.0,2019-10-01 16:48:00,845 Maple St, Austin,TX,73301 +272455,ThinkPad Laptop,1,999.99,2019-10-26 18:09:00,148 Pine St, Seattle,WA,98101 +272456,Lightning Charging Cable,1,14.95,2019-10-07 15:20:00,883 Johnson St, Boston,MA,02215 +272457,Lightning Charging Cable,1,14.95,2019-10-13 15:17:00,406 Lakeview St, Boston,MA,02215 +272458,Bose SoundSport Headphones,1,99.99,2019-10-30 17:15:00,252 Wilson St, Seattle,WA,98101 +272459,USB-C Charging Cable,1,11.95,2019-10-21 11:24:00,383 Church St, Los Angeles,CA,90001 +272460,AAA Batteries (4-pack),1,2.99,2019-10-20 14:07:00,933 Walnut St, New York City,NY,10001 +272461,AAA Batteries (4-pack),1,2.99,2019-10-11 00:44:00,3 Chestnut St, Seattle,WA,98101 +272462,AA Batteries (4-pack),2,3.84,2019-10-15 22:37:00,941 Lake St, San Francisco,CA,94016 +272463,Google Phone,1,600.0,2019-10-06 08:50:00,120 Center St, Dallas,TX,75001 +272464,Bose SoundSport Headphones,1,99.99,2019-10-18 10:45:00,795 1st St, Los Angeles,CA,90001 +272465,AA Batteries (4-pack),1,3.84,2019-10-18 14:51:00,284 5th St, New York City,NY,10001 +272466,34in Ultrawide Monitor,1,379.99,2019-10-10 11:51:00,137 Cherry St, Seattle,WA,98101 +272467,USB-C Charging Cable,2,11.95,2019-10-16 16:34:00,776 Maple St, Austin,TX,73301 +272468,27in 4K Gaming Monitor,1,389.99,2019-10-15 10:01:00,841 Church St, New York City,NY,10001 +272469,Lightning Charging Cable,1,14.95,2019-10-06 12:11:00,149 Maple St, Boston,MA,02215 +272470,iPhone,1,700.0,2019-10-05 19:39:00,175 Lake St, New York City,NY,10001 +272470,Apple Airpods Headphones,1,150.0,2019-10-05 19:39:00,175 Lake St, New York City,NY,10001 +272471,AAA Batteries (4-pack),1,2.99,2019-10-05 18:11:00,229 12th St, Atlanta,GA,30301 +272472,AA Batteries (4-pack),1,3.84,2019-10-25 21:25:00,481 4th St, Los Angeles,CA,90001 +272473,34in Ultrawide Monitor,1,379.99,2019-10-22 12:15:00,574 Pine St, San Francisco,CA,94016 +272474,20in Monitor,1,109.99,2019-10-24 14:30:00,171 Wilson St, New York City,NY,10001 +272475,AAA Batteries (4-pack),2,2.99,2019-10-28 12:07:00,722 2nd St, Los Angeles,CA,90001 +272476,Lightning Charging Cable,1,14.95,2019-10-27 16:06:00,747 11th St, Boston,MA,02215 +272476,Apple Airpods Headphones,1,150.0,2019-10-27 16:06:00,747 11th St, Boston,MA,02215 +272477,Lightning Charging Cable,1,14.95,2019-10-23 10:32:00,618 Lincoln St, Seattle,WA,98101 +272478,ThinkPad Laptop,1,999.99,2019-10-26 16:54:00,453 Adams St, San Francisco,CA,94016 +272479,AAA Batteries (4-pack),1,2.99,2019-10-30 18:34:00,455 River St, Los Angeles,CA,90001 +272480,Wired Headphones,1,11.99,2019-10-04 15:59:00,471 Hill St, Los Angeles,CA,90001 +272480,Apple Airpods Headphones,1,150.0,2019-10-04 15:59:00,471 Hill St, Los Angeles,CA,90001 +272481,LG Dryer,1,600.0,2019-10-16 11:34:00,344 Cherry St, San Francisco,CA,94016 +272482,Wired Headphones,1,11.99,2019-10-12 21:53:00,165 North St, Portland,OR,97035 +272483,Lightning Charging Cable,1,14.95,2019-10-18 14:01:00,116 Ridge St, Atlanta,GA,30301 +272484,Lightning Charging Cable,1,14.95,2019-10-01 11:34:00,910 8th St, San Francisco,CA,94016 +272485,AA Batteries (4-pack),1,3.84,2019-10-03 17:23:00,134 Ridge St, Atlanta,GA,30301 +272486,Apple Airpods Headphones,1,150.0,2019-10-19 14:40:00,808 Washington St, San Francisco,CA,94016 +272487,Apple Airpods Headphones,1,150.0,2019-10-02 05:15:00,506 Jefferson St, New York City,NY,10001 +272488,AAA Batteries (4-pack),2,2.99,2019-10-21 16:47:00,733 Maple St, Boston,MA,02215 +272489,AA Batteries (4-pack),1,3.84,2019-10-30 20:19:00,34 Meadow St, New York City,NY,10001 +272490,iPhone,1,700.0,2019-10-06 12:18:00,386 Elm St, Los Angeles,CA,90001 +272490,Lightning Charging Cable,1,14.95,2019-10-06 12:18:00,386 Elm St, Los Angeles,CA,90001 +272491,USB-C Charging Cable,1,11.95,2019-10-16 23:04:00,116 Cedar St, Portland,ME,04101 +272491,Apple Airpods Headphones,1,150.0,2019-10-16 23:04:00,116 Cedar St, Portland,ME,04101 +272492,USB-C Charging Cable,1,11.95,2019-10-24 21:03:00,211 Jackson St, New York City,NY,10001 +272493,Lightning Charging Cable,1,14.95,2019-10-15 15:42:00,82 Jackson St, Los Angeles,CA,90001 +272494,Wired Headphones,1,11.99,2019-10-01 13:01:00,681 Jackson St, Atlanta,GA,30301 +272495,Lightning Charging Cable,1,14.95,2019-10-09 17:09:00,615 Church St, Boston,MA,02215 +272496,Wired Headphones,1,11.99,2019-10-21 19:19:00,628 Willow St, New York City,NY,10001 +272496,Lightning Charging Cable,1,14.95,2019-10-21 19:19:00,628 Willow St, New York City,NY,10001 +272497,AA Batteries (4-pack),1,3.84,2019-10-06 08:16:00,93 Main St, Los Angeles,CA,90001 +272498,Google Phone,1,600.0,2019-10-05 18:14:00,835 Ridge St, Los Angeles,CA,90001 +272498,Wired Headphones,1,11.99,2019-10-05 18:14:00,835 Ridge St, Los Angeles,CA,90001 +272499,27in 4K Gaming Monitor,1,389.99,2019-10-21 13:16:00,490 Walnut St, San Francisco,CA,94016 +272500,Lightning Charging Cable,1,14.95,2019-10-09 17:01:00,526 Park St, San Francisco,CA,94016 +272501,USB-C Charging Cable,1,11.95,2019-10-14 09:57:00,651 14th St, Atlanta,GA,30301 +272502,USB-C Charging Cable,1,11.95,2019-10-13 08:40:00,705 7th St, New York City,NY,10001 +272503,Apple Airpods Headphones,1,150.0,2019-10-26 08:05:00,389 Church St, Atlanta,GA,30301 +272504,USB-C Charging Cable,1,11.95,2019-10-16 22:20:00,203 River St, San Francisco,CA,94016 +272505,USB-C Charging Cable,1,11.95,2019-10-13 17:03:00,216 Cedar St, Los Angeles,CA,90001 +272506,Wired Headphones,1,11.99,2019-10-26 21:05:00,567 8th St, Dallas,TX,75001 +272507,Flatscreen TV,1,300.0,2019-10-23 21:46:00,957 Church St, Boston,MA,02215 +272508,AAA Batteries (4-pack),2,2.99,2019-10-01 22:46:00,115 Meadow St, Boston,MA,02215 +272509,USB-C Charging Cable,1,11.95,2019-10-26 11:25:00,879 8th St, San Francisco,CA,94016 +272510,Vareebadd Phone,1,400.0,2019-10-17 15:26:00,151 12th St, New York City,NY,10001 +272510,USB-C Charging Cable,1,11.95,2019-10-17 15:26:00,151 12th St, New York City,NY,10001 +272511,AAA Batteries (4-pack),1,2.99,2019-10-22 11:58:00,541 Cherry St, Dallas,TX,75001 +272512,USB-C Charging Cable,1,11.95,2019-10-27 06:08:00,828 Sunset St, Atlanta,GA,30301 +272513,Lightning Charging Cable,1,14.95,2019-10-13 05:52:00,250 5th St, Boston,MA,02215 +272514,USB-C Charging Cable,1,11.95,2019-10-05 11:44:00,896 4th St, Boston,MA,02215 +272515,Wired Headphones,1,11.99,2019-10-12 10:32:00,980 7th St, Dallas,TX,75001 +272516,Lightning Charging Cable,1,14.95,2019-10-30 10:58:00,70 Lincoln St, San Francisco,CA,94016 +272517,AAA Batteries (4-pack),2,2.99,2019-10-23 17:48:00,588 Jackson St, San Francisco,CA,94016 +272518,Vareebadd Phone,1,400.0,2019-10-08 20:31:00,32 4th St, San Francisco,CA,94016 +272518,Wired Headphones,1,11.99,2019-10-08 20:31:00,32 4th St, San Francisco,CA,94016 +272519,Google Phone,1,600.0,2019-10-19 23:55:00,75 Main St, Atlanta,GA,30301 +272519,USB-C Charging Cable,1,11.95,2019-10-19 23:55:00,75 Main St, Atlanta,GA,30301 +272520,Wired Headphones,1,11.99,2019-10-30 11:29:00,298 14th St, Dallas,TX,75001 +272521,Wired Headphones,1,11.99,2019-10-12 11:55:00,366 Willow St, Atlanta,GA,30301 +272522,AA Batteries (4-pack),1,3.84,2019-10-21 13:06:00,351 Washington St, New York City,NY,10001 +272523,Lightning Charging Cable,1,14.95,2019-10-13 11:04:00,642 Walnut St, Austin,TX,73301 +272524,USB-C Charging Cable,1,11.95,2019-10-17 21:08:00,894 Hickory St, San Francisco,CA,94016 +272525,USB-C Charging Cable,2,11.95,2019-10-30 10:59:00,802 13th St, Boston,MA,02215 +272526,Lightning Charging Cable,1,14.95,2019-10-19 15:00:00,928 Washington St, Dallas,TX,75001 +272527,Apple Airpods Headphones,1,150.0,2019-10-10 20:59:00,438 5th St, Seattle,WA,98101 +272528,Bose SoundSport Headphones,1,99.99,2019-10-30 16:17:00,115 Meadow St, Seattle,WA,98101 +272529,34in Ultrawide Monitor,1,379.99,2019-10-18 15:51:00,460 Jefferson St, Dallas,TX,75001 +272530,27in 4K Gaming Monitor,1,389.99,2019-10-11 20:52:00,657 8th St, San Francisco,CA,94016 +272531,AAA Batteries (4-pack),4,2.99,2019-10-14 12:00:00,776 Main St, San Francisco,CA,94016 +272532,Google Phone,1,600.0,2019-10-26 18:12:00,562 Park St, Dallas,TX,75001 +272533,Bose SoundSport Headphones,1,99.99,2019-10-23 13:21:00,922 Lincoln St, Seattle,WA,98101 +272534,AAA Batteries (4-pack),1,2.99,2019-10-11 23:09:00,507 Dogwood St, Portland,OR,97035 +272535,LG Washing Machine,1,600.0,2019-10-27 13:24:00,748 Highland St, Los Angeles,CA,90001 +272536,27in 4K Gaming Monitor,1,389.99,2019-10-11 14:17:00,616 Forest St, Atlanta,GA,30301 +272537,Wired Headphones,1,11.99,2019-10-25 15:52:00,234 4th St, Boston,MA,02215 +272538,20in Monitor,1,109.99,2019-10-19 23:21:00,384 River St, Dallas,TX,75001 +272539,AAA Batteries (4-pack),1,2.99,2019-10-11 21:37:00,74 7th St, San Francisco,CA,94016 +272540,Wired Headphones,1,11.99,2019-10-15 13:23:00,739 10th St, Los Angeles,CA,90001 +272541,AA Batteries (4-pack),2,3.84,2019-10-15 19:09:00,452 North St, New York City,NY,10001 +272542,Lightning Charging Cable,2,14.95,2019-10-21 13:23:00,978 Forest St, Portland,OR,97035 +272543,27in 4K Gaming Monitor,1,389.99,2019-10-07 21:19:00,314 Chestnut St, Boston,MA,02215 +272544,Lightning Charging Cable,2,14.95,2019-10-16 17:37:00,124 9th St, Boston,MA,02215 +272545,USB-C Charging Cable,1,11.95,2019-10-13 17:14:00,461 Highland St, Atlanta,GA,30301 +272546,Wired Headphones,1,11.99,2019-10-29 17:19:00,39 12th St, San Francisco,CA,94016 +272547,Apple Airpods Headphones,1,150.0,2019-10-29 17:37:00,948 Cedar St, Portland,ME,04101 +272548,AAA Batteries (4-pack),2,2.99,2019-10-03 18:47:00,306 Meadow St, Los Angeles,CA,90001 +272549,Apple Airpods Headphones,1,150.0,2019-10-24 09:25:00,320 Washington St, Atlanta,GA,30301 +272550,Bose SoundSport Headphones,1,99.99,2019-10-03 21:14:00,456 2nd St, New York City,NY,10001 +272551,Wired Headphones,2,11.99,2019-10-11 11:10:00,527 Lincoln St, Dallas,TX,75001 +272552,AAA Batteries (4-pack),2,2.99,2019-10-16 13:36:00,53 Cedar St, Dallas,TX,75001 +272553,Macbook Pro Laptop,1,1700.0,2019-10-11 21:13:00,661 Cherry St, Dallas,TX,75001 +272554,USB-C Charging Cable,1,11.95,2019-10-31 22:11:00,352 Jefferson St, Dallas,TX,75001 +272555,Lightning Charging Cable,1,14.95,2019-10-24 08:55:00,651 6th St, San Francisco,CA,94016 +272556,Lightning Charging Cable,1,14.95,2019-10-14 14:07:00,266 Center St, New York City,NY,10001 +272557,27in FHD Monitor,1,149.99,2019-10-22 22:03:00,803 6th St, Dallas,TX,75001 +272558,AA Batteries (4-pack),1,3.84,2019-10-28 18:34:00,704 Cedar St, Atlanta,GA,30301 +272559,Wired Headphones,1,11.99,2019-10-26 11:46:00,378 Elm St, San Francisco,CA,94016 +272560,Flatscreen TV,1,300.0,2019-10-05 17:08:00,758 12th St, Portland,OR,97035 +272561,Flatscreen TV,1,300.0,2019-10-07 11:37:00,930 Lake St, Portland,OR,97035 +272562,USB-C Charging Cable,1,11.95,2019-10-23 23:56:00,933 1st St, San Francisco,CA,94016 +272563,Bose SoundSport Headphones,1,99.99,2019-10-20 23:13:00,521 2nd St, Dallas,TX,75001 +272564,AAA Batteries (4-pack),2,2.99,2019-10-25 21:59:00,643 North St, Portland,OR,97035 +272565,20in Monitor,1,109.99,2019-10-06 22:41:00,177 1st St, Austin,TX,73301 +272566,Apple Airpods Headphones,1,150.0,2019-10-06 14:43:00,808 Center St, Atlanta,GA,30301 +272567,AA Batteries (4-pack),1,3.84,2019-10-13 16:12:00,918 1st St, Atlanta,GA,30301 +272568,AAA Batteries (4-pack),1,2.99,2019-10-07 19:37:00,446 9th St, Atlanta,GA,30301 +272569,AA Batteries (4-pack),3,3.84,2019-10-24 21:39:00,70 South St, New York City,NY,10001 +272570,USB-C Charging Cable,1,11.95,2019-10-29 00:47:00,613 Cedar St, Los Angeles,CA,90001 +272571,Wired Headphones,1,11.99,2019-10-24 18:41:00,140 Pine St, New York City,NY,10001 +272572,iPhone,1,700.0,2019-10-27 20:40:00,885 11th St, Los Angeles,CA,90001 +272572,Lightning Charging Cable,1,14.95,2019-10-27 20:40:00,885 11th St, Los Angeles,CA,90001 +272572,Wired Headphones,1,11.99,2019-10-27 20:40:00,885 11th St, Los Angeles,CA,90001 +272573,AAA Batteries (4-pack),1,2.99,2019-10-16 19:07:00,870 Highland St, Los Angeles,CA,90001 +272574,27in 4K Gaming Monitor,1,389.99,2019-10-16 23:01:00,119 Jackson St, Atlanta,GA,30301 +272575,USB-C Charging Cable,1,11.95,2019-10-25 12:17:00,688 9th St, New York City,NY,10001 +272576,27in 4K Gaming Monitor,1,389.99,2019-10-15 11:35:00,959 1st St, Boston,MA,02215 +272577,LG Washing Machine,1,600.0,2019-10-26 00:09:00,41 Madison St, San Francisco,CA,94016 +272578,AA Batteries (4-pack),1,3.84,2019-10-12 09:54:00,638 Madison St, New York City,NY,10001 +272579,AAA Batteries (4-pack),1,2.99,2019-10-05 19:05:00,388 7th St, San Francisco,CA,94016 +272580,Wired Headphones,1,11.99,2019-10-31 12:52:00,871 Jackson St, San Francisco,CA,94016 +272581,Apple Airpods Headphones,1,150.0,2019-10-22 18:14:00,395 1st St, New York City,NY,10001 +272582,USB-C Charging Cable,1,11.95,2019-10-14 11:46:00,135 Cedar St, New York City,NY,10001 +272583,AA Batteries (4-pack),1,3.84,2019-10-23 08:36:00,986 River St, New York City,NY,10001 +272584,AA Batteries (4-pack),1,3.84,2019-10-17 07:54:00,349 Main St, San Francisco,CA,94016 +272585,27in 4K Gaming Monitor,1,389.99,2019-10-19 16:01:00,951 Sunset St, Los Angeles,CA,90001 +272586,Apple Airpods Headphones,1,150.0,2019-10-06 20:56:00,246 Lakeview St, Dallas,TX,75001 +272587,AAA Batteries (4-pack),1,2.99,2019-10-11 14:13:00,113 Walnut St, Boston,MA,02215 +272588,Apple Airpods Headphones,1,150.0,2019-10-26 10:43:00,755 2nd St, Los Angeles,CA,90001 +272588,Wired Headphones,1,11.99,2019-10-26 10:43:00,755 2nd St, Los Angeles,CA,90001 +272589,AA Batteries (4-pack),1,3.84,2019-10-13 07:15:00,230 Lake St, Dallas,TX,75001 +272590,AA Batteries (4-pack),1,3.84,2019-10-25 18:15:00,116 River St, Atlanta,GA,30301 +272591,27in FHD Monitor,1,149.99,2019-10-25 19:30:00,289 13th St, Boston,MA,02215 +272592,Lightning Charging Cable,1,14.95,2019-10-08 14:34:00,785 Lake St, San Francisco,CA,94016 +272593,Flatscreen TV,1,300.0,2019-10-14 12:41:00,363 Jackson St, Los Angeles,CA,90001 +272594,Apple Airpods Headphones,1,150.0,2019-10-25 10:33:00,907 Jackson St, San Francisco,CA,94016 +272595,27in FHD Monitor,1,149.99,2019-10-08 12:02:00,727 7th St, San Francisco,CA,94016 +272596,AA Batteries (4-pack),1,3.84,2019-10-28 15:19:00,245 4th St, San Francisco,CA,94016 +272597,27in 4K Gaming Monitor,1,389.99,2019-10-09 16:06:00,291 5th St, San Francisco,CA,94016 +272598,ThinkPad Laptop,1,999.99,2019-10-13 01:46:00,483 Forest St, Seattle,WA,98101 +272599,AA Batteries (4-pack),2,3.84,2019-10-11 11:43:00,684 Jefferson St, Boston,MA,02215 +272600,Bose SoundSport Headphones,1,99.99,2019-10-08 21:40:00,3 4th St, Atlanta,GA,30301 +272601,Lightning Charging Cable,1,14.95,2019-10-23 10:48:00,960 Adams St, San Francisco,CA,94016 +272602,Lightning Charging Cable,1,14.95,2019-10-01 21:17:00,230 Highland St, Los Angeles,CA,90001 +272603,USB-C Charging Cable,1,11.95,2019-10-25 11:50:00,96 Lincoln St, San Francisco,CA,94016 +272604,Apple Airpods Headphones,1,150.0,2019-10-26 02:42:00,881 Forest St, Atlanta,GA,30301 +272605,Apple Airpods Headphones,1,150.0,2019-10-03 06:01:00,66 Pine St, San Francisco,CA,94016 +272606,AAA Batteries (4-pack),1,2.99,2019-10-24 18:31:00,985 4th St, Los Angeles,CA,90001 +272607,Macbook Pro Laptop,1,1700.0,2019-10-21 13:20:00,34 6th St, San Francisco,CA,94016 +272608,USB-C Charging Cable,1,11.95,2019-10-01 19:55:00,448 Pine St, San Francisco,CA,94016 +272609,Lightning Charging Cable,1,14.95,2019-10-05 10:17:00,698 Spruce St, Boston,MA,02215 +272610,Apple Airpods Headphones,1,150.0,2019-10-05 14:46:00,925 7th St, Seattle,WA,98101 +272611,Apple Airpods Headphones,1,150.0,2019-10-30 19:27:00,531 Maple St, Austin,TX,73301 +272612,AAA Batteries (4-pack),1,2.99,2019-10-21 16:03:00,985 12th St, San Francisco,CA,94016 +272613,Lightning Charging Cable,1,14.95,2019-10-09 21:49:00,418 Johnson St, Dallas,TX,75001 +272614,USB-C Charging Cable,2,11.95,2019-10-24 14:04:00,786 Chestnut St, San Francisco,CA,94016 +272615,Bose SoundSport Headphones,1,99.99,2019-10-28 11:34:00,511 Highland St, Los Angeles,CA,90001 +272616,AAA Batteries (4-pack),2,2.99,2019-10-03 21:41:00,998 Chestnut St, Portland,OR,97035 +272617,Google Phone,1,600.0,2019-10-28 06:30:00,731 Dogwood St, San Francisco,CA,94016 +272618,Lightning Charging Cable,2,14.95,2019-10-30 14:21:00,527 Lake St, Boston,MA,02215 +272619,AA Batteries (4-pack),1,3.84,2019-10-11 14:54:00,331 Cedar St, Boston,MA,02215 +272620,Apple Airpods Headphones,1,150.0,2019-10-29 22:13:00,745 6th St, Atlanta,GA,30301 +272621,AA Batteries (4-pack),1,3.84,2019-10-03 20:01:00,676 9th St, San Francisco,CA,94016 +272622,Bose SoundSport Headphones,1,99.99,2019-10-07 08:33:00,11 Center St, New York City,NY,10001 +272623,27in 4K Gaming Monitor,1,389.99,2019-10-23 19:57:00,594 6th St, Seattle,WA,98101 +272624,Wired Headphones,1,11.99,2019-10-12 06:27:00,529 Walnut St, Dallas,TX,75001 +272625,Bose SoundSport Headphones,1,99.99,2019-10-16 21:06:00,646 Jackson St, Los Angeles,CA,90001 +272626,34in Ultrawide Monitor,1,379.99,2019-10-08 14:59:00,768 Meadow St, San Francisco,CA,94016 +272627,Bose SoundSport Headphones,1,99.99,2019-10-02 12:53:00,823 Hill St, Austin,TX,73301 +272628,AA Batteries (4-pack),1,3.84,2019-10-13 09:14:00,568 Cedar St, San Francisco,CA,94016 +272629,27in 4K Gaming Monitor,1,389.99,2019-10-03 21:59:00,834 North St, New York City,NY,10001 +272630,iPhone,1,700.0,2019-10-30 23:11:00,644 Church St, San Francisco,CA,94016 +272631,Apple Airpods Headphones,1,150.0,2019-10-12 09:49:00,810 River St, Seattle,WA,98101 +272632,USB-C Charging Cable,1,11.95,2019-10-07 10:56:00,279 Forest St, Portland,OR,97035 +272633,Lightning Charging Cable,1,14.95,2019-10-24 10:41:00,830 7th St, Boston,MA,02215 +272634,27in 4K Gaming Monitor,1,389.99,2019-10-06 14:27:00,380 8th St, Los Angeles,CA,90001 +272635,34in Ultrawide Monitor,1,379.99,2019-10-29 14:22:00,550 Chestnut St, Los Angeles,CA,90001 +272636,Bose SoundSport Headphones,1,99.99,2019-10-19 21:52:00,382 Willow St, San Francisco,CA,94016 +272637,AAA Batteries (4-pack),2,2.99,2019-10-15 11:18:00,80 11th St, San Francisco,CA,94016 +272638,Lightning Charging Cable,1,14.95,2019-10-04 01:16:00,828 1st St, Dallas,TX,75001 +272639,iPhone,1,700.0,2019-10-17 00:41:00,642 2nd St, Boston,MA,02215 +272640,AA Batteries (4-pack),1,3.84,2019-10-11 12:01:00,148 Jackson St, San Francisco,CA,94016 +272641,27in 4K Gaming Monitor,1,389.99,2019-10-09 19:15:00,430 Spruce St, Los Angeles,CA,90001 +272642,USB-C Charging Cable,4,11.95,2019-10-14 21:35:00,717 Main St, Los Angeles,CA,90001 +272643,ThinkPad Laptop,1,999.99,2019-10-12 20:16:00,614 South St, San Francisco,CA,94016 +272644,Wired Headphones,1,11.99,2019-10-04 14:51:00,556 Church St, Los Angeles,CA,90001 +272645,Macbook Pro Laptop,1,1700.0,2019-10-18 16:46:00,473 9th St, San Francisco,CA,94016 +272646,AAA Batteries (4-pack),1,2.99,2019-10-03 20:01:00,67 Elm St, Los Angeles,CA,90001 +272647,Lightning Charging Cable,2,14.95,2019-10-09 12:17:00,876 Ridge St, Dallas,TX,75001 +272648,Wired Headphones,1,11.99,2019-10-16 13:44:00,645 Madison St, Los Angeles,CA,90001 +272649,AA Batteries (4-pack),1,3.84,2019-10-02 20:01:00,763 9th St, Los Angeles,CA,90001 +272650,AA Batteries (4-pack),1,3.84,2019-10-09 14:00:00,722 Jefferson St, San Francisco,CA,94016 +272651,Google Phone,1,600.0,2019-10-09 01:02:00,763 Lake St, Dallas,TX,75001 +272652,AA Batteries (4-pack),1,3.84,2019-10-15 11:24:00,771 4th St, Boston,MA,02215 +272653,Lightning Charging Cable,1,14.95,2019-10-20 14:42:00,595 Forest St, Los Angeles,CA,90001 +272654,AA Batteries (4-pack),1,3.84,2019-10-22 14:11:00,873 5th St, Los Angeles,CA,90001 +272655,USB-C Charging Cable,1,11.95,2019-10-23 19:29:00,902 1st St, Seattle,WA,98101 +272656,AAA Batteries (4-pack),2,2.99,2019-10-04 14:28:00,307 5th St, Los Angeles,CA,90001 +272657,Lightning Charging Cable,1,14.95,2019-10-19 12:25:00,678 South St, New York City,NY,10001 +272658,Wired Headphones,1,11.99,2019-10-21 09:15:00,534 6th St, Los Angeles,CA,90001 +272659,Wired Headphones,1,11.99,2019-10-28 23:33:00,943 West St, New York City,NY,10001 +272660,USB-C Charging Cable,1,11.95,2019-10-24 12:59:00,93 Wilson St, Austin,TX,73301 +272661,AAA Batteries (4-pack),1,2.99,2019-10-11 19:21:00,597 West St, Dallas,TX,75001 +272662,USB-C Charging Cable,1,11.95,2019-10-12 19:01:00,182 Main St, New York City,NY,10001 +272663,Bose SoundSport Headphones,1,99.99,2019-10-05 22:05:00,492 2nd St, Portland,OR,97035 +272664,ThinkPad Laptop,1,999.99,2019-10-29 09:05:00,102 Hickory St, Seattle,WA,98101 +272665,Wired Headphones,1,11.99,2019-10-29 19:52:00,138 Madison St, Dallas,TX,75001 +272666,27in FHD Monitor,1,149.99,2019-10-29 01:36:00,638 Park St, San Francisco,CA,94016 +272667,Wired Headphones,1,11.99,2019-10-13 18:09:00,542 Hill St, San Francisco,CA,94016 +272668,27in FHD Monitor,1,149.99,2019-10-24 12:01:00,231 Forest St, Los Angeles,CA,90001 +272669,USB-C Charging Cable,1,11.95,2019-10-23 11:22:00,752 Sunset St, Los Angeles,CA,90001 +272670,AA Batteries (4-pack),1,3.84,2019-10-12 14:50:00,11 4th St, San Francisco,CA,94016 +272671,AA Batteries (4-pack),1,3.84,2019-10-16 13:32:00,410 Meadow St, Seattle,WA,98101 +272672,Wired Headphones,1,11.99,2019-10-20 12:03:00,270 14th St, Los Angeles,CA,90001 +272673,AAA Batteries (4-pack),1,2.99,2019-10-16 16:24:00,145 Meadow St, Los Angeles,CA,90001 +272674,27in FHD Monitor,1,149.99,2019-10-17 12:11:00,373 6th St, Portland,ME,04101 +272675,AAA Batteries (4-pack),1,2.99,2019-10-07 20:34:00,343 4th St, San Francisco,CA,94016 +272676,USB-C Charging Cable,1,11.95,2019-10-05 17:20:00,666 Cherry St, Atlanta,GA,30301 +272677,Lightning Charging Cable,1,14.95,2019-10-09 14:29:00,244 South St, New York City,NY,10001 +272678,27in FHD Monitor,1,149.99,2019-10-06 09:48:00,400 Park St, Atlanta,GA,30301 +272679,Lightning Charging Cable,1,14.95,2019-10-24 19:01:00,943 North St, Los Angeles,CA,90001 +272680,Bose SoundSport Headphones,1,99.99,2019-10-08 09:11:00,303 Forest St, Seattle,WA,98101 +272681,AAA Batteries (4-pack),1,2.99,2019-10-15 14:34:00,558 Jackson St, Dallas,TX,75001 +272682,USB-C Charging Cable,1,11.95,2019-10-30 13:41:00,507 7th St, Boston,MA,02215 +272683,USB-C Charging Cable,1,11.95,2019-10-30 17:51:00,113 South St, Austin,TX,73301 +272684,AA Batteries (4-pack),2,3.84,2019-10-08 20:26:00,477 11th St, Los Angeles,CA,90001 +272685,AAA Batteries (4-pack),1,2.99,2019-10-10 11:58:00,210 Sunset St, Portland,OR,97035 +272686,27in FHD Monitor,1,149.99,2019-10-31 20:29:00,258 Pine St, New York City,NY,10001 +272687,USB-C Charging Cable,1,11.95,2019-10-23 11:55:00,730 Madison St, San Francisco,CA,94016 +272688,USB-C Charging Cable,1,11.95,2019-10-02 21:36:00,635 Lake St, San Francisco,CA,94016 +272689,Google Phone,1,600.0,2019-10-04 22:43:00,366 Lincoln St, New York City,NY,10001 +272690,Wired Headphones,1,11.99,2019-10-14 12:25:00,252 Forest St, Boston,MA,02215 +272691,AAA Batteries (4-pack),1,2.99,2019-10-31 10:11:00,995 Wilson St, Austin,TX,73301 +272692,Wired Headphones,1,11.99,2019-10-15 17:19:00,49 12th St, San Francisco,CA,94016 +272693,AA Batteries (4-pack),1,3.84,2019-10-25 08:30:00,687 10th St, Austin,TX,73301 +272694,27in FHD Monitor,1,149.99,2019-10-15 11:03:00,685 Madison St, San Francisco,CA,94016 +272695,Bose SoundSport Headphones,1,99.99,2019-10-08 15:32:00,909 Lakeview St, New York City,NY,10001 +272696,USB-C Charging Cable,1,11.95,2019-10-03 00:05:00,931 Highland St, San Francisco,CA,94016 +272697,AA Batteries (4-pack),1,3.84,2019-10-07 16:42:00,871 5th St, Atlanta,GA,30301 +272698,Bose SoundSport Headphones,1,99.99,2019-10-20 10:35:00,766 4th St, San Francisco,CA,94016 +272699,Wired Headphones,1,11.99,2019-10-30 19:46:00,453 West St, Portland,OR,97035 +272700,USB-C Charging Cable,1,11.95,2019-10-12 22:05:00,277 Meadow St, San Francisco,CA,94016 +272701,Apple Airpods Headphones,1,150.0,2019-10-15 09:26:00,514 Cherry St, Los Angeles,CA,90001 +272702,Flatscreen TV,1,300.0,2019-10-17 20:28:00,677 Forest St, San Francisco,CA,94016 +272703,iPhone,1,700.0,2019-10-29 05:51:00,251 Jackson St, San Francisco,CA,94016 +272703,Lightning Charging Cable,1,14.95,2019-10-29 05:51:00,251 Jackson St, San Francisco,CA,94016 +272704,Flatscreen TV,1,300.0,2019-10-09 12:41:00,554 Maple St, Los Angeles,CA,90001 +272705,iPhone,1,700.0,2019-10-01 17:38:00,979 Park St, San Francisco,CA,94016 +272706,27in FHD Monitor,1,149.99,2019-10-13 17:55:00,14 Cedar St, Austin,TX,73301 +272707,Flatscreen TV,1,300.0,2019-10-20 21:05:00,499 Lakeview St, Seattle,WA,98101 +272708,Lightning Charging Cable,1,14.95,2019-10-04 10:59:00,64 6th St, Boston,MA,02215 +272709,Apple Airpods Headphones,1,150.0,2019-10-10 22:19:00,250 4th St, San Francisco,CA,94016 +272710,AAA Batteries (4-pack),4,2.99,2019-10-02 01:12:00,277 Lake St, Atlanta,GA,30301 +272711,iPhone,1,700.0,2019-10-21 19:30:00,750 Chestnut St, New York City,NY,10001 +272712,Wired Headphones,1,11.99,2019-10-30 09:41:00,658 Lakeview St, Los Angeles,CA,90001 +272713,Apple Airpods Headphones,1,150.0,2019-10-13 09:28:00,802 12th St, Boston,MA,02215 +272714,27in FHD Monitor,1,149.99,2019-10-23 19:03:00,657 8th St, New York City,NY,10001 +272715,AAA Batteries (4-pack),1,2.99,2019-10-18 19:32:00,79 14th St, New York City,NY,10001 +272715,Lightning Charging Cable,1,14.95,2019-10-18 19:32:00,79 14th St, New York City,NY,10001 +272716,27in FHD Monitor,1,149.99,2019-10-31 18:39:00,19 Elm St, Boston,MA,02215 +272717,USB-C Charging Cable,1,11.95,2019-10-13 18:33:00,850 Spruce St, Boston,MA,02215 +272718,AA Batteries (4-pack),1,3.84,2019-10-06 15:11:00,619 Lincoln St, Seattle,WA,98101 +272719,USB-C Charging Cable,1,11.95,2019-10-06 19:11:00,979 Walnut St, Dallas,TX,75001 +272720,Macbook Pro Laptop,1,1700.0,2019-10-05 17:34:00,434 Forest St, Seattle,WA,98101 +272721,USB-C Charging Cable,1,11.95,2019-10-30 14:26:00,188 Walnut St, Atlanta,GA,30301 +272722,Lightning Charging Cable,1,14.95,2019-10-23 10:34:00,450 Madison St, Los Angeles,CA,90001 +272723,USB-C Charging Cable,1,11.95,2019-10-07 13:45:00,64 Elm St, San Francisco,CA,94016 +272724,34in Ultrawide Monitor,1,379.99,2019-10-30 06:55:00,21 1st St, Austin,TX,73301 +272725,USB-C Charging Cable,1,11.95,2019-10-17 10:36:00,706 13th St, Atlanta,GA,30301 +272726,34in Ultrawide Monitor,1,379.99,2019-10-26 14:10:00,331 14th St, New York City,NY,10001 +272727,Lightning Charging Cable,1,14.95,2019-10-01 10:34:00,218 Cherry St, Atlanta,GA,30301 +272728,27in 4K Gaming Monitor,1,389.99,2019-10-05 20:57:00,305 Elm St, Seattle,WA,98101 +272729,27in 4K Gaming Monitor,1,389.99,2019-10-13 19:29:00,898 Lincoln St, San Francisco,CA,94016 +272730,Wired Headphones,1,11.99,2019-10-07 16:11:00,84 Cedar St, Los Angeles,CA,90001 +272731,USB-C Charging Cable,1,11.95,2019-10-27 12:56:00,13 River St, Seattle,WA,98101 +272732,USB-C Charging Cable,1,11.95,2019-10-11 09:11:00,36 13th St, Dallas,TX,75001 +272733,Wired Headphones,1,11.99,2019-10-25 12:29:00,327 14th St, Atlanta,GA,30301 +272734,Bose SoundSport Headphones,1,99.99,2019-10-02 07:29:00,392 Main St, New York City,NY,10001 +272735,USB-C Charging Cable,1,11.95,2019-10-12 17:36:00,213 Chestnut St, San Francisco,CA,94016 +272736,34in Ultrawide Monitor,1,379.99,2019-10-09 09:32:00,51 Cherry St, Dallas,TX,75001 +272737,Lightning Charging Cable,1,14.95,2019-10-30 11:47:00,822 Chestnut St, New York City,NY,10001 +272738,iPhone,1,700.0,2019-10-16 09:51:00,931 Lakeview St, New York City,NY,10001 +272739,Wired Headphones,1,11.99,2019-10-02 22:44:00,843 Cedar St, New York City,NY,10001 +272740,AAA Batteries (4-pack),1,2.99,2019-10-08 23:56:00,228 West St, Austin,TX,73301 +272741,AA Batteries (4-pack),1,3.84,2019-10-18 17:49:00,979 11th St, San Francisco,CA,94016 +272742,34in Ultrawide Monitor,1,379.99,2019-10-03 20:42:00,361 North St, San Francisco,CA,94016 +272743,Bose SoundSport Headphones,1,99.99,2019-10-14 10:23:00,869 Maple St, Los Angeles,CA,90001 +272744,iPhone,1,700.0,2019-10-30 22:49:00,991 Main St, Los Angeles,CA,90001 +272745,34in Ultrawide Monitor,1,379.99,2019-10-30 19:00:00,385 Center St, Portland,OR,97035 +272746,Bose SoundSport Headphones,1,99.99,2019-10-09 23:06:00,189 11th St, Atlanta,GA,30301 +272747,Wired Headphones,1,11.99,2019-10-18 08:38:00,929 Cherry St, Los Angeles,CA,90001 +272748,AA Batteries (4-pack),2,3.84,2019-10-17 23:06:00,978 South St, Boston,MA,02215 +272749,34in Ultrawide Monitor,1,379.99,2019-10-17 22:51:00,490 Walnut St, San Francisco,CA,94016 +272750,USB-C Charging Cable,1,11.95,2019-10-05 00:19:00,433 12th St, San Francisco,CA,94016 +272751,Vareebadd Phone,1,400.0,2019-10-03 11:02:00,990 Cedar St, Los Angeles,CA,90001 +272752,Apple Airpods Headphones,1,150.0,2019-10-25 21:52:00,292 Lakeview St, Los Angeles,CA,90001 +272753,USB-C Charging Cable,1,11.95,2019-10-25 11:32:00,426 Chestnut St, New York City,NY,10001 +272754,Lightning Charging Cable,1,14.95,2019-10-20 22:19:00,14 Jefferson St, Dallas,TX,75001 +272755,Apple Airpods Headphones,1,150.0,2019-10-09 01:01:00,425 2nd St, Austin,TX,73301 +272756,AAA Batteries (4-pack),2,2.99,2019-10-20 13:23:00,271 Chestnut St, Boston,MA,02215 +272757,Wired Headphones,1,11.99,2019-10-31 06:43:00,787 Dogwood St, New York City,NY,10001 +272758,AA Batteries (4-pack),1,3.84,2019-10-26 09:44:00,298 12th St, Austin,TX,73301 +272759,Apple Airpods Headphones,1,150.0,2019-10-12 19:27:00,377 Main St, Dallas,TX,75001 +272760,AAA Batteries (4-pack),1,2.99,2019-10-10 14:39:00,658 1st St, Los Angeles,CA,90001 +272761,Lightning Charging Cable,1,14.95,2019-10-04 07:15:00,986 Forest St, New York City,NY,10001 +272762,Wired Headphones,1,11.99,2019-10-26 11:17:00,857 5th St, San Francisco,CA,94016 +272763,AA Batteries (4-pack),1,3.84,2019-10-08 14:18:00,686 7th St, Los Angeles,CA,90001 +272763,Apple Airpods Headphones,1,150.0,2019-10-08 14:18:00,686 7th St, Los Angeles,CA,90001 +272764,USB-C Charging Cable,1,11.95,2019-10-23 21:08:00,272 Wilson St, San Francisco,CA,94016 +272765,34in Ultrawide Monitor,1,379.99,2019-10-13 09:56:00,268 Wilson St, New York City,NY,10001 +272766,USB-C Charging Cable,1,11.95,2019-10-15 15:48:00,314 Chestnut St, San Francisco,CA,94016 +272767,Bose SoundSport Headphones,1,99.99,2019-10-26 08:13:00,13 1st St, Portland,OR,97035 +272768,AA Batteries (4-pack),3,3.84,2019-10-05 10:05:00,990 Chestnut St, Dallas,TX,75001 +272769,Lightning Charging Cable,1,14.95,2019-10-19 11:30:00,590 Dogwood St, San Francisco,CA,94016 +272770,AAA Batteries (4-pack),2,2.99,2019-10-16 00:05:00,986 Adams St, Los Angeles,CA,90001 +272771,Apple Airpods Headphones,1,150.0,2019-10-05 19:46:00,226 2nd St, New York City,NY,10001 +272772,Apple Airpods Headphones,1,150.0,2019-10-20 23:37:00,70 Hickory St, New York City,NY,10001 +272773,iPhone,1,700.0,2019-10-24 17:43:00,422 7th St, Austin,TX,73301 +272773,Apple Airpods Headphones,1,150.0,2019-10-24 17:43:00,422 7th St, Austin,TX,73301 +272774,AA Batteries (4-pack),1,3.84,2019-10-25 01:42:00,751 Chestnut St, San Francisco,CA,94016 +272775,ThinkPad Laptop,1,999.99,2019-10-24 14:41:00,668 Madison St, Dallas,TX,75001 +272776,AA Batteries (4-pack),1,3.84,2019-10-17 11:58:00,977 4th St, Portland,OR,97035 +272777,Apple Airpods Headphones,1,150.0,2019-10-13 03:26:00,541 Washington St, San Francisco,CA,94016 +272778,34in Ultrawide Monitor,1,379.99,2019-10-27 07:52:00,822 Cedar St, Dallas,TX,75001 +272779,Lightning Charging Cable,1,14.95,2019-10-05 19:09:00,527 South St, Austin,TX,73301 +272780,Apple Airpods Headphones,1,150.0,2019-10-25 00:47:00,48 Church St, San Francisco,CA,94016 +272781,AA Batteries (4-pack),2,3.84,2019-10-14 18:17:00,803 8th St, Dallas,TX,75001 +272782,AAA Batteries (4-pack),1,2.99,2019-10-03 16:06:00,885 Maple St, Boston,MA,02215 +272783,Apple Airpods Headphones,1,150.0,2019-10-24 12:27:00,554 Pine St, Boston,MA,02215 +272784,AAA Batteries (4-pack),1,2.99,2019-10-05 11:53:00,159 11th St, Seattle,WA,98101 +272785,27in 4K Gaming Monitor,1,389.99,2019-10-18 22:52:00,12 Lakeview St, New York City,NY,10001 +272786,Wired Headphones,1,11.99,2019-10-02 16:12:00,874 Lincoln St, San Francisco,CA,94016 +272787,Lightning Charging Cable,1,14.95,2019-10-22 21:03:00,604 Wilson St, Los Angeles,CA,90001 +272788,AAA Batteries (4-pack),1,2.99,2019-10-19 08:28:00,526 14th St, Seattle,WA,98101 +272789,Wired Headphones,2,11.99,2019-10-04 17:03:00,783 5th St, San Francisco,CA,94016 +272790,USB-C Charging Cable,1,11.95,2019-10-25 11:35:00,424 Ridge St, San Francisco,CA,94016 +272791,AA Batteries (4-pack),2,3.84,2019-10-07 18:53:00,267 Hickory St, Atlanta,GA,30301 +272792,Wired Headphones,1,11.99,2019-10-30 21:20:00,554 Ridge St, New York City,NY,10001 +272793,Lightning Charging Cable,1,14.95,2019-10-12 08:38:00,378 12th St, San Francisco,CA,94016 +272794,Google Phone,1,600.0,2019-10-04 03:35:00,92 10th St, Portland,OR,97035 +272795,Apple Airpods Headphones,1,150.0,2019-10-01 10:10:00,955 7th St, Austin,TX,73301 +272796,Wired Headphones,1,11.99,2019-10-16 13:08:00,581 Park St, Los Angeles,CA,90001 +272797,27in FHD Monitor,1,149.99,2019-10-09 19:18:00,490 Forest St, Boston,MA,02215 +272798,Flatscreen TV,1,300.0,2019-10-02 20:14:00,972 13th St, San Francisco,CA,94016 +272799,USB-C Charging Cable,1,11.95,2019-10-14 13:17:00,824 Maple St, Boston,MA,02215 +272800,AAA Batteries (4-pack),1,2.99,2019-10-20 13:28:00,944 Cedar St, New York City,NY,10001 +272801,AAA Batteries (4-pack),1,2.99,2019-10-08 20:42:00,377 Park St, Boston,MA,02215 +272802,AA Batteries (4-pack),1,3.84,2019-10-29 19:15:00,174 Lakeview St, Seattle,WA,98101 +272803,USB-C Charging Cable,1,11.95,2019-10-08 12:16:00,853 North St, San Francisco,CA,94016 +272804,Wired Headphones,1,11.99,2019-10-13 17:00:00,503 South St, Portland,OR,97035 +272805,AA Batteries (4-pack),1,3.84,2019-10-09 06:21:00,592 13th St, Dallas,TX,75001 +272806,Lightning Charging Cable,1,14.95,2019-10-23 19:36:00,261 Lake St, San Francisco,CA,94016 +272807,Wired Headphones,1,11.99,2019-10-28 22:06:00,126 12th St, Portland,OR,97035 +272808,ThinkPad Laptop,1,999.99,2019-10-08 21:03:00,386 10th St, Boston,MA,02215 +272809,Lightning Charging Cable,1,14.95,2019-10-05 22:42:00,301 Jefferson St, Portland,ME,04101 +272810,Vareebadd Phone,1,400.0,2019-10-02 15:54:00,798 Cedar St, Dallas,TX,75001 +272811,Macbook Pro Laptop,1,1700.0,2019-10-08 01:08:00,847 5th St, Los Angeles,CA,90001 +272812,Bose SoundSport Headphones,1,99.99,2019-10-22 14:42:00,730 Forest St, San Francisco,CA,94016 +272813,27in 4K Gaming Monitor,1,389.99,2019-10-10 14:08:00,157 Park St, Boston,MA,02215 +272814,Apple Airpods Headphones,1,150.0,2019-10-30 10:26:00,107 Cedar St, Boston,MA,02215 +272815,USB-C Charging Cable,1,11.95,2019-10-18 17:04:00,761 Church St, Seattle,WA,98101 +272816,AA Batteries (4-pack),1,3.84,2019-10-15 08:10:00,557 Maple St, Atlanta,GA,30301 +272817,Bose SoundSport Headphones,1,99.99,2019-10-10 17:02:00,820 8th St, Dallas,TX,75001 +272818,Vareebadd Phone,1,400.0,2019-10-04 00:17:00,444 Highland St, New York City,NY,10001 +272819,Lightning Charging Cable,1,14.95,2019-10-24 17:08:00,917 5th St, Austin,TX,73301 +272820,AAA Batteries (4-pack),1,2.99,2019-10-31 12:03:00,466 Ridge St, Los Angeles,CA,90001 +272821,USB-C Charging Cable,1,11.95,2019-10-12 10:49:00,852 Lakeview St, New York City,NY,10001 +272822,27in FHD Monitor,1,149.99,2019-10-09 06:52:00,663 4th St, San Francisco,CA,94016 +272823,AA Batteries (4-pack),2,3.84,2019-10-26 08:11:00,146 Meadow St, New York City,NY,10001 +272824,ThinkPad Laptop,1,999.99,2019-10-08 13:35:00,888 Main St, Atlanta,GA,30301 +272825,AAA Batteries (4-pack),2,2.99,2019-10-15 21:08:00,185 River St, Los Angeles,CA,90001 +272826,Lightning Charging Cable,1,14.95,2019-10-25 13:13:00,780 Dogwood St, Boston,MA,02215 +272827,Flatscreen TV,1,300.0,2019-10-21 16:21:00,417 Cherry St, Dallas,TX,75001 +272828,27in 4K Gaming Monitor,1,389.99,2019-10-03 20:48:00,490 Sunset St, Los Angeles,CA,90001 +272829,USB-C Charging Cable,2,11.95,2019-10-28 11:35:00,87 Dogwood St, Portland,OR,97035 +272830,USB-C Charging Cable,1,11.95,2019-10-03 20:02:00,692 Washington St, New York City,NY,10001 +272831,AAA Batteries (4-pack),1,2.99,2019-10-21 16:45:00,958 11th St, Boston,MA,02215 +272832,27in FHD Monitor,1,149.99,2019-10-22 15:49:00,755 Adams St, Austin,TX,73301 +272833,AAA Batteries (4-pack),1,2.99,2019-10-28 21:33:00,509 10th St, New York City,NY,10001 +272834,27in FHD Monitor,1,149.99,2019-10-23 03:26:00,626 Meadow St, New York City,NY,10001 +272835,Flatscreen TV,1,300.0,2019-10-21 17:17:00,533 Johnson St, Atlanta,GA,30301 +272836,20in Monitor,1,109.99,2019-10-04 18:31:00,899 Church St, San Francisco,CA,94016 +272837,Bose SoundSport Headphones,1,99.99,2019-10-18 09:52:00,928 West St, Dallas,TX,75001 +272838,Lightning Charging Cable,1,14.95,2019-10-31 14:06:00,879 Main St, Austin,TX,73301 +272839,Apple Airpods Headphones,1,150.0,2019-10-03 13:10:00,24 Park St, Seattle,WA,98101 +272840,Apple Airpods Headphones,1,150.0,2019-10-01 19:03:00,456 Walnut St, Dallas,TX,75001 +272841,USB-C Charging Cable,1,11.95,2019-10-18 17:38:00,297 Elm St, Boston,MA,02215 +272842,Lightning Charging Cable,1,14.95,2019-10-17 12:16:00,772 Chestnut St, New York City,NY,10001 +272843,AAA Batteries (4-pack),1,2.99,2019-10-14 13:16:00,695 Jackson St, Austin,TX,73301 +272844,USB-C Charging Cable,1,11.95,2019-10-14 17:25:00,116 Hill St, Los Angeles,CA,90001 +272845,USB-C Charging Cable,1,11.95,2019-10-06 13:39:00,283 Spruce St, Los Angeles,CA,90001 +272846,AA Batteries (4-pack),4,3.84,2019-10-02 20:10:00,285 North St, Los Angeles,CA,90001 +272847,34in Ultrawide Monitor,1,379.99,2019-10-07 23:28:00,339 Washington St, Austin,TX,73301 +272848,Lightning Charging Cable,1,14.95,2019-10-19 10:42:00,235 5th St, San Francisco,CA,94016 +272849,Lightning Charging Cable,1,14.95,2019-10-05 08:42:00,418 Cedar St, San Francisco,CA,94016 +272850,27in 4K Gaming Monitor,1,389.99,2019-10-17 18:25:00,837 Maple St, Boston,MA,02215 +272851,AA Batteries (4-pack),1,3.84,2019-10-05 18:33:00,314 Willow St, New York City,NY,10001 +272852,iPhone,1,700.0,2019-10-07 20:12:00,564 Church St, New York City,NY,10001 +272853,Apple Airpods Headphones,1,150.0,2019-10-05 15:16:00,202 2nd St, Atlanta,GA,30301 +272854,Lightning Charging Cable,1,14.95,2019-10-08 11:30:00,596 Pine St, San Francisco,CA,94016 +272855,34in Ultrawide Monitor,1,379.99,2019-10-21 08:33:00,493 Jefferson St, Los Angeles,CA,90001 +272856,Bose SoundSport Headphones,1,99.99,2019-10-09 19:26:00,29 Dogwood St, Austin,TX,73301 +272857,AA Batteries (4-pack),1,3.84,2019-10-08 22:21:00,484 Ridge St, Portland,ME,04101 +272858,AA Batteries (4-pack),3,3.84,2019-10-19 18:08:00,536 Jackson St, Los Angeles,CA,90001 +272859,USB-C Charging Cable,1,11.95,2019-10-14 07:58:00,153 Church St, Portland,OR,97035 +272860,AAA Batteries (4-pack),1,2.99,2019-10-15 18:53:00,546 Sunset St, New York City,NY,10001 +272861,Apple Airpods Headphones,1,150.0,2019-10-25 18:53:00,347 Jackson St, Dallas,TX,75001 +272862,USB-C Charging Cable,1,11.95,2019-10-31 13:26:00,42 9th St, San Francisco,CA,94016 +272863,AAA Batteries (4-pack),2,2.99,2019-10-28 08:15:00,492 Church St, San Francisco,CA,94016 +272864,USB-C Charging Cable,1,11.95,2019-10-02 08:49:00,85 South St, Boston,MA,02215 +272865,AAA Batteries (4-pack),1,2.99,2019-10-20 11:33:00,83 14th St, Dallas,TX,75001 +272866,Bose SoundSport Headphones,1,99.99,2019-10-08 00:23:00,639 Cherry St, Austin,TX,73301 +272867,USB-C Charging Cable,1,11.95,2019-10-17 10:31:00,918 West St, San Francisco,CA,94016 +272868,AAA Batteries (4-pack),1,2.99,2019-10-24 11:23:00,356 Jefferson St, Dallas,TX,75001 +272869,Apple Airpods Headphones,1,150.0,2019-10-11 14:25:00,533 South St, San Francisco,CA,94016 +272870,Wired Headphones,1,11.99,2019-10-23 01:44:00,211 Pine St, Boston,MA,02215 +272871,USB-C Charging Cable,2,11.95,2019-10-27 11:23:00,344 Church St, Boston,MA,02215 +272872,iPhone,1,700.0,2019-10-08 20:11:00,800 Willow St, San Francisco,CA,94016 +272873,AAA Batteries (4-pack),2,2.99,2019-10-22 23:20:00,148 Chestnut St, Los Angeles,CA,90001 +272874,ThinkPad Laptop,1,999.99,2019-10-03 18:04:00,656 Willow St, Los Angeles,CA,90001 +272875,34in Ultrawide Monitor,1,379.99,2019-10-08 18:11:00,100 Meadow St, New York City,NY,10001 +272876,AAA Batteries (4-pack),1,2.99,2019-10-28 15:28:00,491 Lake St, Seattle,WA,98101 +272877,AA Batteries (4-pack),1,3.84,2019-10-07 13:31:00,471 10th St, Portland,OR,97035 +272878,USB-C Charging Cable,1,11.95,2019-10-05 17:18:00,845 Sunset St, Los Angeles,CA,90001 +272879,34in Ultrawide Monitor,1,379.99,2019-10-26 10:24:00,769 Cedar St, San Francisco,CA,94016 +272880,AA Batteries (4-pack),1,3.84,2019-10-19 22:45:00,388 11th St, New York City,NY,10001 +272881,AA Batteries (4-pack),2,3.84,2019-10-12 23:06:00,581 Dogwood St, Dallas,TX,75001 +272882,iPhone,1,700.0,2019-10-26 16:32:00,114 Cedar St, San Francisco,CA,94016 +272883,ThinkPad Laptop,1,999.99,2019-10-02 15:21:00,618 Spruce St, San Francisco,CA,94016 +272884,Apple Airpods Headphones,1,150.0,2019-10-16 12:23:00,423 Dogwood St, Los Angeles,CA,90001 +272885,Lightning Charging Cable,1,14.95,2019-10-02 01:49:00,133 11th St, New York City,NY,10001 +272886,27in 4K Gaming Monitor,1,389.99,2019-10-19 14:57:00,239 Johnson St, San Francisco,CA,94016 +272887,Lightning Charging Cable,1,14.95,2019-10-26 17:19:00,829 Cedar St, Austin,TX,73301 +272888,AAA Batteries (4-pack),2,2.99,2019-10-13 15:37:00,371 Madison St, Portland,OR,97035 +272889,Bose SoundSport Headphones,1,99.99,2019-10-20 19:11:00,166 10th St, Dallas,TX,75001 +272890,Lightning Charging Cable,1,14.95,2019-10-30 18:54:00,952 South St, Boston,MA,02215 +272891,AAA Batteries (4-pack),1,2.99,2019-10-30 17:38:00,19 South St, Los Angeles,CA,90001 +272892,Apple Airpods Headphones,1,150.0,2019-10-21 12:03:00,476 Dogwood St, Dallas,TX,75001 +272893,Bose SoundSport Headphones,1,99.99,2019-10-14 21:22:00,552 Jackson St, San Francisco,CA,94016 +272894,27in 4K Gaming Monitor,1,389.99,2019-10-15 14:27:00,99 West St, San Francisco,CA,94016 +272895,iPhone,1,700.0,2019-10-27 00:11:00,676 Wilson St, Dallas,TX,75001 +272896,AAA Batteries (4-pack),1,2.99,2019-10-23 18:12:00,475 12th St, San Francisco,CA,94016 +272897,Lightning Charging Cable,1,14.95,2019-10-20 09:12:00,572 14th St, Los Angeles,CA,90001 +272898,USB-C Charging Cable,2,11.95,2019-10-20 12:21:00,180 Maple St, Los Angeles,CA,90001 +272899,Apple Airpods Headphones,1,150.0,2019-10-01 20:52:00,258 West St, San Francisco,CA,94016 +272900,Bose SoundSport Headphones,1,99.99,2019-10-07 16:56:00,841 Highland St, New York City,NY,10001 +272901,Bose SoundSport Headphones,1,99.99,2019-10-29 15:22:00,294 2nd St, New York City,NY,10001 +272902,LG Dryer,1,600.0,2019-10-05 17:51:00,905 5th St, San Francisco,CA,94016 +272903,Google Phone,1,600.0,2019-10-22 11:48:00,91 Lake St, Seattle,WA,98101 +272904,USB-C Charging Cable,1,11.95,2019-10-18 12:24:00,676 Lincoln St, Portland,ME,04101 +272905,27in FHD Monitor,1,149.99,2019-10-09 18:16:00,63 Johnson St, New York City,NY,10001 +272906,27in 4K Gaming Monitor,1,389.99,2019-10-06 11:45:00,120 8th St, San Francisco,CA,94016 +272907,Lightning Charging Cable,1,14.95,2019-10-25 20:54:00,435 Spruce St, Boston,MA,02215 +272908,AAA Batteries (4-pack),1,2.99,2019-10-18 13:49:00,633 Park St, Seattle,WA,98101 +272909,27in FHD Monitor,1,149.99,2019-10-28 14:14:00,882 Dogwood St, San Francisco,CA,94016 +272910,USB-C Charging Cable,1,11.95,2019-10-01 18:58:00,233 Cedar St, San Francisco,CA,94016 +272911,Wired Headphones,1,11.99,2019-10-28 10:21:00,182 6th St, San Francisco,CA,94016 +272912,AAA Batteries (4-pack),3,2.99,2019-10-24 22:14:00,312 Highland St, San Francisco,CA,94016 +272913,Lightning Charging Cable,1,14.95,2019-10-27 10:24:00,270 Hill St, Atlanta,GA,30301 +272914,iPhone,1,700.0,2019-10-22 20:15:00,973 Johnson St, New York City,NY,10001 +272915,Apple Airpods Headphones,1,150.0,2019-10-30 20:25:00,844 Lake St, San Francisco,CA,94016 +272916,USB-C Charging Cable,1,11.95,2019-10-15 18:40:00,361 Lake St, Boston,MA,02215 +272917,iPhone,1,700.0,2019-10-18 09:12:00,623 North St, Austin,TX,73301 +272918,AA Batteries (4-pack),1,3.84,2019-10-27 10:29:00,287 Elm St, New York City,NY,10001 +272919,Lightning Charging Cable,1,14.95,2019-10-29 19:24:00,881 1st St, San Francisco,CA,94016 +272920,Lightning Charging Cable,2,14.95,2019-10-12 09:27:00,543 Adams St, San Francisco,CA,94016 +272921,Wired Headphones,1,11.99,2019-10-10 20:24:00,5 10th St, Dallas,TX,75001 +272922,USB-C Charging Cable,1,11.95,2019-10-05 13:16:00,946 Center St, Boston,MA,02215 +272923,27in FHD Monitor,1,149.99,2019-10-15 10:23:00,868 Washington St, San Francisco,CA,94016 +272924,Wired Headphones,1,11.99,2019-10-30 20:26:00,208 2nd St, Los Angeles,CA,90001 +272925,AAA Batteries (4-pack),2,2.99,2019-10-15 21:01:00,303 Jefferson St, Seattle,WA,98101 +272926,Apple Airpods Headphones,1,150.0,2019-10-24 13:09:00,735 10th St, Seattle,WA,98101 +272927,Lightning Charging Cable,1,14.95,2019-10-16 15:42:00,331 Jackson St, Atlanta,GA,30301 +272928,AA Batteries (4-pack),2,3.84,2019-10-26 14:36:00,979 Park St, Boston,MA,02215 +272929,AA Batteries (4-pack),3,3.84,2019-10-04 12:18:00,814 Chestnut St, San Francisco,CA,94016 +272930,AAA Batteries (4-pack),2,2.99,2019-10-20 10:39:00,792 Hickory St, San Francisco,CA,94016 +272931,34in Ultrawide Monitor,1,379.99,2019-10-29 15:54:00,477 West St, San Francisco,CA,94016 +272932,LG Washing Machine,1,600.0,2019-10-23 11:43:00,962 Elm St, Boston,MA,02215 +272933,Google Phone,1,600.0,2019-10-15 19:56:00,898 12th St, San Francisco,CA,94016 +272934,Bose SoundSport Headphones,1,99.99,2019-10-31 16:10:00,754 Park St, San Francisco,CA,94016 +272935,AA Batteries (4-pack),1,3.84,2019-10-23 19:01:00,923 Center St, San Francisco,CA,94016 +272936,AAA Batteries (4-pack),1,2.99,2019-10-22 08:17:00,102 Walnut St, San Francisco,CA,94016 +272937,Vareebadd Phone,1,400.0,2019-10-27 10:32:00,907 Chestnut St, Portland,OR,97035 +272937,USB-C Charging Cable,1,11.95,2019-10-27 10:32:00,907 Chestnut St, Portland,OR,97035 +272938,Apple Airpods Headphones,1,150.0,2019-10-15 17:27:00,282 Johnson St, Seattle,WA,98101 +272939,USB-C Charging Cable,1,11.95,2019-10-29 10:58:00,231 Lincoln St, Boston,MA,02215 +272940,Lightning Charging Cable,1,14.95,2019-10-05 22:31:00,304 Spruce St, Los Angeles,CA,90001 +272941,Lightning Charging Cable,1,14.95,2019-10-29 00:52:00,98 Forest St, Seattle,WA,98101 +272941,Wired Headphones,2,11.99,2019-10-29 00:52:00,98 Forest St, Seattle,WA,98101 +272942,Wired Headphones,2,11.99,2019-10-24 00:34:00,565 River St, Boston,MA,02215 +272943,Google Phone,1,600.0,2019-10-05 18:59:00,450 9th St, New York City,NY,10001 +272944,34in Ultrawide Monitor,1,379.99,2019-10-17 23:08:00,628 5th St, Atlanta,GA,30301 +272945,USB-C Charging Cable,1,11.95,2019-10-27 21:44:00,50 Sunset St, New York City,NY,10001 +272946,Lightning Charging Cable,1,14.95,2019-10-22 21:19:00,380 Dogwood St, San Francisco,CA,94016 +272947,Wired Headphones,1,11.99,2019-10-14 08:10:00,416 Jefferson St, Austin,TX,73301 +272948,AAA Batteries (4-pack),1,2.99,2019-10-12 22:56:00,578 Johnson St, Boston,MA,02215 +272949,AAA Batteries (4-pack),1,2.99,2019-10-12 17:48:00,817 Forest St, New York City,NY,10001 +272950,34in Ultrawide Monitor,1,379.99,2019-10-11 19:19:00,104 Elm St, Los Angeles,CA,90001 +272951,AA Batteries (4-pack),1,3.84,2019-10-11 21:18:00,15 Wilson St, Austin,TX,73301 +272952,Lightning Charging Cable,1,14.95,2019-10-07 12:15:00,899 Willow St, San Francisco,CA,94016 +272953,Apple Airpods Headphones,1,150.0,2019-10-30 23:20:00,747 Sunset St, San Francisco,CA,94016 +272954,Apple Airpods Headphones,1,150.0,2019-10-04 20:36:00,206 Washington St, San Francisco,CA,94016 +272955,AAA Batteries (4-pack),1,2.99,2019-10-15 10:07:00,642 West St, San Francisco,CA,94016 +272956,Apple Airpods Headphones,1,150.0,2019-10-04 06:07:00,273 11th St, Seattle,WA,98101 +272957,AA Batteries (4-pack),1,3.84,2019-11-01 00:00:00,125 Sunset St, Seattle,WA,98101 +272958,Macbook Pro Laptop,1,1700.0,2019-10-31 08:31:00,604 7th St, Portland,OR,97035 +272959,USB-C Charging Cable,1,11.95,2019-10-26 17:43:00,430 Ridge St, San Francisco,CA,94016 +272960,AA Batteries (4-pack),1,3.84,2019-10-11 19:03:00,713 12th St, Portland,OR,97035 +272961,34in Ultrawide Monitor,1,379.99,2019-10-27 07:27:00,121 Walnut St, Portland,OR,97035 +272962,AA Batteries (4-pack),2,3.84,2019-10-27 10:37:00,915 Walnut St, Boston,MA,02215 +272963,AAA Batteries (4-pack),2,2.99,2019-10-28 18:15:00,43 Forest St, Los Angeles,CA,90001 +272964,20in Monitor,1,109.99,2019-10-23 10:33:00,722 Highland St, Boston,MA,02215 +272965,Bose SoundSport Headphones,1,99.99,2019-10-07 19:09:00,118 6th St, Boston,MA,02215 +272966,Lightning Charging Cable,1,14.95,2019-10-07 14:45:00,702 Hickory St, New York City,NY,10001 +272967,Apple Airpods Headphones,1,150.0,2019-10-12 09:01:00,125 Park St, Boston,MA,02215 +272968,27in 4K Gaming Monitor,1,389.99,2019-10-08 23:57:00,207 Jefferson St, Portland,OR,97035 +272969,USB-C Charging Cable,1,11.95,2019-10-09 20:08:00,722 11th St, San Francisco,CA,94016 +272970,Macbook Pro Laptop,1,1700.0,2019-10-28 18:11:00,565 Hill St, Atlanta,GA,30301 +272970,USB-C Charging Cable,1,11.95,2019-10-28 18:11:00,565 Hill St, Atlanta,GA,30301 +272971,AA Batteries (4-pack),1,3.84,2019-10-28 16:29:00,750 Hickory St, Seattle,WA,98101 +272972,AAA Batteries (4-pack),3,2.99,2019-10-08 20:44:00,300 Jackson St, Boston,MA,02215 +272973,Vareebadd Phone,1,400.0,2019-10-18 08:26:00,211 4th St, New York City,NY,10001 +272974,Google Phone,1,600.0,2019-10-23 12:06:00,235 Ridge St, San Francisco,CA,94016 +272975,iPhone,1,700.0,2019-10-12 19:34:00,715 West St, Portland,OR,97035 +272976,AAA Batteries (4-pack),1,2.99,2019-10-15 18:05:00,401 Pine St, Los Angeles,CA,90001 +272977,AAA Batteries (4-pack),4,2.99,2019-10-30 02:59:00,124 Chestnut St, Portland,OR,97035 +272978,AA Batteries (4-pack),2,3.84,2019-10-14 16:29:00,537 Pine St, San Francisco,CA,94016 +272979,Apple Airpods Headphones,1,150.0,2019-10-09 22:09:00,612 Main St, New York City,NY,10001 +272980,USB-C Charging Cable,1,11.95,2019-10-16 06:23:00,210 Wilson St, Los Angeles,CA,90001 +272981,AAA Batteries (4-pack),1,2.99,2019-10-12 15:08:00,373 Willow St, Austin,TX,73301 +272982,Google Phone,1,600.0,2019-10-31 05:50:00,541 Main St, Austin,TX,73301 +272982,USB-C Charging Cable,1,11.95,2019-10-31 05:50:00,541 Main St, Austin,TX,73301 +272983,Apple Airpods Headphones,1,150.0,2019-10-30 21:07:00,735 Lake St, San Francisco,CA,94016 +272984,AA Batteries (4-pack),1,3.84,2019-10-05 17:57:00,9 2nd St, Boston,MA,02215 +272985,AAA Batteries (4-pack),1,2.99,2019-10-27 15:36:00,779 Forest St, New York City,NY,10001 +272986,AAA Batteries (4-pack),3,2.99,2019-10-15 14:27:00,774 Madison St, Dallas,TX,75001 +272987,AAA Batteries (4-pack),1,2.99,2019-10-11 15:20:00,268 Spruce St, Portland,OR,97035 +272988,27in 4K Gaming Monitor,1,389.99,2019-10-17 12:15:00,883 Willow St, New York City,NY,10001 +272989,iPhone,1,700.0,2019-10-05 09:58:00,725 Highland St, San Francisco,CA,94016 +272990,Lightning Charging Cable,1,14.95,2019-10-26 00:16:00,115 Wilson St, Atlanta,GA,30301 +272991,USB-C Charging Cable,1,11.95,2019-10-01 20:37:00,967 14th St, Seattle,WA,98101 +272992,USB-C Charging Cable,1,11.95,2019-10-26 15:19:00,403 Chestnut St, Atlanta,GA,30301 +272993,Macbook Pro Laptop,1,1700.0,2019-10-07 19:33:00,679 5th St, Portland,OR,97035 +272994,iPhone,1,700.0,2019-10-28 16:55:00,78 11th St, Atlanta,GA,30301 +272995,Google Phone,1,600.0,2019-10-15 12:42:00,625 4th St, San Francisco,CA,94016 +272995,USB-C Charging Cable,1,11.95,2019-10-15 12:42:00,625 4th St, San Francisco,CA,94016 +272996,Bose SoundSport Headphones,1,99.99,2019-10-26 19:04:00,566 Forest St, New York City,NY,10001 +272997,AAA Batteries (4-pack),1,2.99,2019-10-02 22:12:00,687 Lincoln St, Los Angeles,CA,90001 +272998,Wired Headphones,1,11.99,2019-10-07 14:04:00,653 13th St, San Francisco,CA,94016 +272999,USB-C Charging Cable,1,11.95,2019-10-19 21:55:00,829 Sunset St, San Francisco,CA,94016 +273000,Bose SoundSport Headphones,1,99.99,2019-10-25 19:52:00,802 4th St, Los Angeles,CA,90001 +273001,AA Batteries (4-pack),1,3.84,2019-10-26 16:46:00,686 11th St, Dallas,TX,75001 +273002,Wired Headphones,1,11.99,2019-10-17 18:58:00,81 10th St, New York City,NY,10001 +273003,Flatscreen TV,1,300.0,2019-10-01 17:55:00,49 Dogwood St, Boston,MA,02215 +273004,USB-C Charging Cable,1,11.95,2019-10-04 12:59:00,26 Hickory St, New York City,NY,10001 +273005,Lightning Charging Cable,1,14.95,2019-10-22 01:16:00,9 Lincoln St, San Francisco,CA,94016 +273006,AAA Batteries (4-pack),1,2.99,2019-10-07 14:50:00,778 Wilson St, New York City,NY,10001 +273007,USB-C Charging Cable,1,11.95,2019-10-23 18:03:00,754 Madison St, Dallas,TX,75001 +273008,Bose SoundSport Headphones,1,99.99,2019-10-10 16:42:00,400 Cherry St, Seattle,WA,98101 +273009,iPhone,1,700.0,2019-10-04 14:30:00,913 7th St, Atlanta,GA,30301 +273010,Macbook Pro Laptop,1,1700.0,2019-10-14 14:06:00,894 Dogwood St, Seattle,WA,98101 +273011,USB-C Charging Cable,1,11.95,2019-10-04 19:43:00,111 Washington St, Austin,TX,73301 +273012,AAA Batteries (4-pack),3,2.99,2019-10-05 17:54:00,609 Dogwood St, Atlanta,GA,30301 +273013,27in FHD Monitor,1,149.99,2019-10-27 17:02:00,589 Center St, Portland,OR,97035 +273014,AAA Batteries (4-pack),1,2.99,2019-10-22 13:29:00,436 Maple St, Boston,MA,02215 +273015,Lightning Charging Cable,1,14.95,2019-10-08 20:21:00,142 Ridge St, Seattle,WA,98101 +273016,USB-C Charging Cable,1,11.95,2019-10-18 13:58:00,848 Center St, Los Angeles,CA,90001 +273017,Bose SoundSport Headphones,1,99.99,2019-10-07 09:51:00,597 Spruce St, Atlanta,GA,30301 +273018,Lightning Charging Cable,1,14.95,2019-10-12 21:20:00,572 Lake St, Seattle,WA,98101 +273019,Google Phone,1,600.0,2019-10-11 19:03:00,557 Johnson St, New York City,NY,10001 +273020,Wired Headphones,1,11.99,2019-10-06 12:14:00,772 Cherry St, Seattle,WA,98101 +273021,Wired Headphones,1,11.99,2019-10-24 15:51:00,500 8th St, Los Angeles,CA,90001 +273022,Wired Headphones,1,11.99,2019-10-03 21:01:00,657 Washington St, New York City,NY,10001 +273023,Lightning Charging Cable,1,14.95,2019-10-07 11:38:00,301 6th St, Los Angeles,CA,90001 +273024,USB-C Charging Cable,1,11.95,2019-10-16 19:00:00,736 Washington St, New York City,NY,10001 +273025,Lightning Charging Cable,2,14.95,2019-10-21 15:26:00,306 Chestnut St, San Francisco,CA,94016 +273026,34in Ultrawide Monitor,1,379.99,2019-10-24 20:38:00,126 4th St, Seattle,WA,98101 +273027,USB-C Charging Cable,1,11.95,2019-10-26 23:45:00,328 Dogwood St, Los Angeles,CA,90001 +273028,34in Ultrawide Monitor,1,379.99,2019-10-02 12:55:00,215 Ridge St, Portland,OR,97035 +273029,Flatscreen TV,1,300.0,2019-10-05 00:03:00,947 7th St, New York City,NY,10001 +273030,AA Batteries (4-pack),1,3.84,2019-10-09 21:26:00,529 Meadow St, Portland,OR,97035 +273031,AA Batteries (4-pack),1,3.84,2019-10-08 19:36:00,109 Johnson St, New York City,NY,10001 +273032,AAA Batteries (4-pack),1,2.99,2019-10-17 21:17:00,148 South St, Atlanta,GA,30301 +273033,Bose SoundSport Headphones,1,99.99,2019-10-29 18:53:00,456 Highland St, Seattle,WA,98101 +273034,Lightning Charging Cable,1,14.95,2019-10-09 09:32:00,776 14th St, Los Angeles,CA,90001 +273035,USB-C Charging Cable,2,11.95,2019-10-10 11:35:00,920 Walnut St, San Francisco,CA,94016 +273036,Lightning Charging Cable,1,14.95,2019-10-24 20:16:00,264 Highland St, Austin,TX,73301 +273037,27in 4K Gaming Monitor,1,389.99,2019-10-16 09:57:00,393 South St, Los Angeles,CA,90001 +273038,20in Monitor,1,109.99,2019-10-06 20:18:00,68 5th St, Dallas,TX,75001 +273039,Wired Headphones,1,11.99,2019-10-28 17:21:00,122 7th St, New York City,NY,10001 +273040,Vareebadd Phone,1,400.0,2019-10-27 16:32:00,441 Park St, Boston,MA,02215 +273041,20in Monitor,1,109.99,2019-10-15 11:16:00,765 14th St, San Francisco,CA,94016 +273042,AAA Batteries (4-pack),1,2.99,2019-10-28 15:52:00,495 7th St, New York City,NY,10001 +273043,27in 4K Gaming Monitor,1,389.99,2019-10-27 17:00:00,762 Hill St, San Francisco,CA,94016 +273044,Apple Airpods Headphones,1,150.0,2019-10-25 19:54:00,589 Adams St, San Francisco,CA,94016 +273045,Wired Headphones,1,11.99,2019-10-03 15:45:00,20 Lakeview St, Los Angeles,CA,90001 +273046,Apple Airpods Headphones,1,150.0,2019-10-29 19:24:00,881 14th St, San Francisco,CA,94016 +273047,USB-C Charging Cable,1,11.95,2019-10-11 09:22:00,743 Pine St, San Francisco,CA,94016 +273048,Lightning Charging Cable,1,14.95,2019-10-16 09:36:00,172 South St, Atlanta,GA,30301 +273049,Bose SoundSport Headphones,1,99.99,2019-10-10 10:29:00,589 Main St, Atlanta,GA,30301 +273050,Apple Airpods Headphones,1,150.0,2019-10-21 13:50:00,485 Elm St, Portland,OR,97035 +273051,AA Batteries (4-pack),1,3.84,2019-10-23 08:19:00,297 Wilson St, Los Angeles,CA,90001 +273052,Wired Headphones,1,11.99,2019-10-26 22:41:00,338 12th St, San Francisco,CA,94016 +273053,AA Batteries (4-pack),1,3.84,2019-10-07 21:12:00,300 Highland St, Los Angeles,CA,90001 +273054,iPhone,1,700.0,2019-10-31 16:33:00,876 8th St, Dallas,TX,75001 +273055,Wired Headphones,1,11.99,2019-10-27 19:41:00,17 Pine St, San Francisco,CA,94016 +273056,Wired Headphones,2,11.99,2019-10-28 16:42:00,741 1st St, San Francisco,CA,94016 +273057,Wired Headphones,2,11.99,2019-10-02 11:19:00,683 Lakeview St, Los Angeles,CA,90001 +273058,AAA Batteries (4-pack),2,2.99,2019-10-14 10:53:00,754 North St, Los Angeles,CA,90001 +273059,Apple Airpods Headphones,1,150.0,2019-10-11 13:07:00,690 Sunset St, Dallas,TX,75001 +273060,Wired Headphones,1,11.99,2019-10-12 11:59:00,59 Elm St, Atlanta,GA,30301 +273061,AAA Batteries (4-pack),1,2.99,2019-10-16 16:05:00,76 Willow St, San Francisco,CA,94016 +273062,34in Ultrawide Monitor,1,379.99,2019-10-25 11:25:00,691 10th St, San Francisco,CA,94016 +273063,ThinkPad Laptop,1,999.99,2019-10-10 21:50:00,737 Hickory St, Dallas,TX,75001 +273064,USB-C Charging Cable,1,11.95,2019-10-09 10:52:00,757 13th St, Dallas,TX,75001 +273065,AAA Batteries (4-pack),3,2.99,2019-10-12 19:01:00,706 Forest St, San Francisco,CA,94016 +273066,AAA Batteries (4-pack),1,2.99,2019-10-03 11:50:00,387 10th St, San Francisco,CA,94016 +273067,AAA Batteries (4-pack),6,2.99,2019-10-12 11:26:00,775 Willow St, New York City,NY,10001 +273068,USB-C Charging Cable,1,11.95,2019-10-20 19:25:00,490 Spruce St, Los Angeles,CA,90001 +273069,AAA Batteries (4-pack),1,2.99,2019-10-29 13:06:00,152 Madison St, New York City,NY,10001 +273070,20in Monitor,1,109.99,2019-10-01 12:02:00,484 Pine St, Boston,MA,02215 +273071,USB-C Charging Cable,1,11.95,2019-10-30 16:46:00,569 Jefferson St, Seattle,WA,98101 +273072,Flatscreen TV,1,300.0,2019-10-29 19:34:00,726 Ridge St, San Francisco,CA,94016 +273073,AA Batteries (4-pack),1,3.84,2019-10-13 22:23:00,671 Park St, Seattle,WA,98101 +273074,AAA Batteries (4-pack),2,2.99,2019-10-05 14:14:00,501 5th St, San Francisco,CA,94016 +273075,AA Batteries (4-pack),2,3.84,2019-10-04 16:09:00,779 Jackson St, San Francisco,CA,94016 +273076,34in Ultrawide Monitor,1,379.99,2019-10-31 02:36:00,660 Park St, San Francisco,CA,94016 +273077,AA Batteries (4-pack),1,3.84,2019-10-17 16:13:00,668 Walnut St, Los Angeles,CA,90001 +273078,Wired Headphones,2,11.99,2019-10-27 12:27:00,141 Spruce St, Portland,OR,97035 +273079,iPhone,1,700.0,2019-10-04 19:19:00,840 11th St, Los Angeles,CA,90001 +273079,Wired Headphones,1,11.99,2019-10-04 19:19:00,840 11th St, Los Angeles,CA,90001 +273080,AA Batteries (4-pack),1,3.84,2019-10-02 00:09:00,403 Pine St, San Francisco,CA,94016 +273081,34in Ultrawide Monitor,1,379.99,2019-10-31 22:38:00,404 Lake St, Seattle,WA,98101 +273082,USB-C Charging Cable,1,11.95,2019-10-31 15:29:00,130 West St, Boston,MA,02215 +273083,AA Batteries (4-pack),2,3.84,2019-10-04 00:43:00,618 Walnut St, Austin,TX,73301 +273084,AAA Batteries (4-pack),1,2.99,2019-10-30 19:27:00,76 Ridge St, Los Angeles,CA,90001 +273085,USB-C Charging Cable,1,11.95,2019-10-24 19:10:00,657 West St, San Francisco,CA,94016 +273086,Bose SoundSport Headphones,1,99.99,2019-10-24 20:12:00,573 Madison St, San Francisco,CA,94016 +273087,USB-C Charging Cable,1,11.95,2019-10-15 23:24:00,933 Lincoln St, Los Angeles,CA,90001 +273088,34in Ultrawide Monitor,1,379.99,2019-10-18 13:59:00,840 Lakeview St, Seattle,WA,98101 +273089,34in Ultrawide Monitor,1,379.99,2019-10-30 19:28:00,303 10th St, Dallas,TX,75001 +273090,Lightning Charging Cable,1,14.95,2019-10-10 21:09:00,33 Jackson St, Los Angeles,CA,90001 +273091,Lightning Charging Cable,2,14.95,2019-10-10 15:43:00,528 5th St, Seattle,WA,98101 +273092,iPhone,1,700.0,2019-10-08 19:24:00,414 Park St, Los Angeles,CA,90001 +273093,27in FHD Monitor,1,149.99,2019-10-14 14:40:00,474 West St, Seattle,WA,98101 +273094,iPhone,1,700.0,2019-10-29 14:40:00,661 5th St, Seattle,WA,98101 +273095,Apple Airpods Headphones,1,150.0,2019-10-04 21:43:00,607 Johnson St, Atlanta,GA,30301 +273096,AAA Batteries (4-pack),1,2.99,2019-10-13 19:01:00,467 6th St, Los Angeles,CA,90001 +273097,iPhone,1,700.0,2019-10-28 10:40:00,428 Lakeview St, Seattle,WA,98101 +273098,Apple Airpods Headphones,1,150.0,2019-10-07 16:45:00,70 River St, Seattle,WA,98101 +273099,USB-C Charging Cable,1,11.95,2019-10-14 22:25:00,81 4th St, San Francisco,CA,94016 +273100,AAA Batteries (4-pack),1,2.99,2019-10-13 23:20:00,938 Main St, Seattle,WA,98101 +273101,Bose SoundSport Headphones,1,99.99,2019-10-06 19:34:00,364 8th St, Los Angeles,CA,90001 +273102,Apple Airpods Headphones,1,150.0,2019-10-14 16:45:00,929 Lakeview St, Atlanta,GA,30301 +273103,USB-C Charging Cable,1,11.95,2019-10-01 16:59:00,766 10th St, Boston,MA,02215 +273104,Macbook Pro Laptop,1,1700.0,2019-10-29 09:57:00,530 North St, New York City,NY,10001 +273105,AAA Batteries (4-pack),2,2.99,2019-10-17 02:01:00,733 Lake St, Seattle,WA,98101 +273106,AA Batteries (4-pack),1,3.84,2019-10-26 08:42:00,979 Lakeview St, Dallas,TX,75001 +273107,AA Batteries (4-pack),1,3.84,2019-10-01 10:50:00,217 Hill St, Los Angeles,CA,90001 +273108,AA Batteries (4-pack),3,3.84,2019-10-20 12:30:00,646 Madison St, New York City,NY,10001 +273109,Apple Airpods Headphones,1,150.0,2019-10-18 20:00:00,90 Dogwood St, Dallas,TX,75001 +273110,USB-C Charging Cable,1,11.95,2019-10-27 20:08:00,556 6th St, Boston,MA,02215 +273111,iPhone,1,700.0,2019-10-30 11:33:00,249 North St, Atlanta,GA,30301 +273112,AA Batteries (4-pack),2,3.84,2019-10-22 12:00:00,144 5th St, New York City,NY,10001 +273113,20in Monitor,1,109.99,2019-10-01 05:24:00,472 Cedar St, Los Angeles,CA,90001 +273114,iPhone,1,700.0,2019-10-14 12:46:00,590 Lakeview St, Seattle,WA,98101 +273114,Lightning Charging Cable,1,14.95,2019-10-14 12:46:00,590 Lakeview St, Seattle,WA,98101 +273115,Bose SoundSport Headphones,2,99.99,2019-10-31 12:08:00,121 Main St, San Francisco,CA,94016 +273116,Google Phone,1,600.0,2019-10-11 18:36:00,791 Lakeview St, San Francisco,CA,94016 +273117,Flatscreen TV,1,300.0,2019-10-11 20:08:00,274 North St, Atlanta,GA,30301 +273118,Google Phone,1,600.0,2019-10-04 12:05:00,439 Cedar St, New York City,NY,10001 +273119,Lightning Charging Cable,1,14.95,2019-10-27 13:47:00,300 Main St, New York City,NY,10001 +273120,AA Batteries (4-pack),1,3.84,2019-10-28 16:09:00,955 Hickory St, Los Angeles,CA,90001 +273121,34in Ultrawide Monitor,1,379.99,2019-10-31 09:41:00,713 1st St, New York City,NY,10001 +273122,Wired Headphones,1,11.99,2019-10-20 20:01:00,425 River St, New York City,NY,10001 +273123,ThinkPad Laptop,1,999.99,2019-10-10 18:46:00,110 Willow St, New York City,NY,10001 +273124,Bose SoundSport Headphones,1,99.99,2019-10-29 11:06:00,98 Meadow St, New York City,NY,10001 +273125,AA Batteries (4-pack),1,3.84,2019-10-30 13:27:00,588 8th St, New York City,NY,10001 +273126,iPhone,1,700.0,2019-10-10 11:45:00,85 Jefferson St, New York City,NY,10001 +273127,USB-C Charging Cable,2,11.95,2019-10-31 17:11:00,486 5th St, Dallas,TX,75001 +273128,AAA Batteries (4-pack),4,2.99,2019-10-05 12:44:00,222 Highland St, Los Angeles,CA,90001 +273129,AA Batteries (4-pack),2,3.84,2019-10-12 18:07:00,147 Jefferson St, Dallas,TX,75001 +273130,Bose SoundSport Headphones,1,99.99,2019-10-02 16:28:00,278 14th St, New York City,NY,10001 +273131,Lightning Charging Cable,1,14.95,2019-10-07 12:25:00,215 4th St, San Francisco,CA,94016 +273132,AA Batteries (4-pack),1,3.84,2019-10-06 16:57:00,648 Forest St, San Francisco,CA,94016 +273133,Bose SoundSport Headphones,1,99.99,2019-10-07 08:06:00,358 Maple St, Los Angeles,CA,90001 +273134,Flatscreen TV,1,300.0,2019-10-07 13:26:00,933 Jackson St, San Francisco,CA,94016 +273135,Lightning Charging Cable,1,14.95,2019-10-01 16:33:00,621 Jackson St, New York City,NY,10001 +273136,Google Phone,1,600.0,2019-10-10 22:04:00,304 4th St, Atlanta,GA,30301 +273137,USB-C Charging Cable,1,11.95,2019-10-19 11:00:00,418 River St, Seattle,WA,98101 +273138,Google Phone,1,600.0,2019-10-26 14:50:00,142 Wilson St, Portland,OR,97035 +273139,27in FHD Monitor,1,149.99,2019-10-11 13:55:00,642 Park St, New York City,NY,10001 +273140,Apple Airpods Headphones,1,150.0,2019-10-17 00:34:00,370 Wilson St, Dallas,TX,75001 +273141,Lightning Charging Cable,1,14.95,2019-10-11 15:47:00,898 9th St, Seattle,WA,98101 +273142,Apple Airpods Headphones,1,150.0,2019-10-18 00:59:00,45 5th St, San Francisco,CA,94016 +273143,Google Phone,1,600.0,2019-10-24 11:49:00,205 Cherry St, San Francisco,CA,94016 +273144,20in Monitor,1,109.99,2019-10-13 01:57:00,194 8th St, Atlanta,GA,30301 +273145,Wired Headphones,1,11.99,2019-10-12 10:00:00,665 Madison St, Seattle,WA,98101 +273146,LG Dryer,1,600.0,2019-10-13 10:50:00,619 Cedar St, San Francisco,CA,94016 +273147,USB-C Charging Cable,1,11.95,2019-10-27 15:25:00,937 Pine St, San Francisco,CA,94016 +273148,34in Ultrawide Monitor,1,379.99,2019-10-05 05:14:00,199 Washington St, Seattle,WA,98101 +273149,Apple Airpods Headphones,1,150.0,2019-10-27 08:42:00,140 7th St, San Francisco,CA,94016 +273150,Lightning Charging Cable,1,14.95,2019-10-12 19:08:00,781 2nd St, San Francisco,CA,94016 +273151,Bose SoundSport Headphones,1,99.99,2019-10-13 15:00:00,295 11th St, Seattle,WA,98101 +273152,iPhone,1,700.0,2019-10-14 07:58:00,322 Johnson St, New York City,NY,10001 +273152,Lightning Charging Cable,1,14.95,2019-10-14 07:58:00,322 Johnson St, New York City,NY,10001 +273153,AAA Batteries (4-pack),1,2.99,2019-10-13 12:27:00,737 Hill St, New York City,NY,10001 +273154,Wired Headphones,1,11.99,2019-10-25 22:53:00,626 10th St, New York City,NY,10001 +273155,Wired Headphones,1,11.99,2019-10-04 19:00:00,664 Church St, Boston,MA,02215 +273156,Lightning Charging Cable,1,14.95,2019-10-13 14:11:00,630 South St, Portland,OR,97035 +273157,USB-C Charging Cable,1,11.95,2019-10-24 10:13:00,551 9th St, San Francisco,CA,94016 +273158,Lightning Charging Cable,1,14.95,2019-10-15 14:40:00,616 5th St, Los Angeles,CA,90001 +273159,Bose SoundSport Headphones,1,99.99,2019-10-18 11:27:00,916 Washington St, Seattle,WA,98101 +273160,Lightning Charging Cable,1,14.95,2019-10-04 17:37:00,727 8th St, San Francisco,CA,94016 +273161,AAA Batteries (4-pack),1,2.99,2019-10-27 22:38:00,371 13th St, San Francisco,CA,94016 +273162,Apple Airpods Headphones,1,150.0,2019-10-21 18:11:00,477 7th St, Los Angeles,CA,90001 +273163,Apple Airpods Headphones,1,150.0,2019-10-02 03:42:00,73 South St, San Francisco,CA,94016 +273164,AA Batteries (4-pack),1,3.84,2019-10-05 12:43:00,969 Highland St, New York City,NY,10001 +273165,AAA Batteries (4-pack),1,2.99,2019-10-27 12:15:00,208 Ridge St, San Francisco,CA,94016 +273166,Apple Airpods Headphones,1,150.0,2019-10-17 13:52:00,492 Lincoln St, Atlanta,GA,30301 +273167,Apple Airpods Headphones,2,150.0,2019-10-21 10:15:00,656 Main St, Dallas,TX,75001 +273168,Bose SoundSport Headphones,1,99.99,2019-10-09 20:39:00,926 8th St, San Francisco,CA,94016 +273169,Lightning Charging Cable,1,14.95,2019-10-29 19:36:00,246 Washington St, Dallas,TX,75001 +273170,Wired Headphones,1,11.99,2019-10-19 19:00:00,291 Chestnut St, San Francisco,CA,94016 +273171,AA Batteries (4-pack),1,3.84,2019-10-29 03:13:00,350 14th St, San Francisco,CA,94016 +273172,27in 4K Gaming Monitor,1,389.99,2019-10-13 19:17:00,361 Lake St, Austin,TX,73301 +273173,Wired Headphones,1,11.99,2019-10-11 10:09:00,967 Hill St, Boston,MA,02215 +273174,Lightning Charging Cable,1,14.95,2019-10-17 19:12:00,676 Willow St, Los Angeles,CA,90001 +273175,20in Monitor,1,109.99,2019-10-21 11:51:00,265 14th St, Dallas,TX,75001 +273176,27in FHD Monitor,1,149.99,2019-10-06 20:41:00,509 Center St, Boston,MA,02215 +273177,AA Batteries (4-pack),2,3.84,2019-10-03 06:27:00,953 Lincoln St, San Francisco,CA,94016 +273178,27in FHD Monitor,1,149.99,2019-10-31 17:15:00,992 Park St, Austin,TX,73301 +273179,ThinkPad Laptop,1,999.99,2019-10-19 00:01:00,185 Church St, Atlanta,GA,30301 +273180,ThinkPad Laptop,1,999.99,2019-10-06 10:42:00,704 Spruce St, Austin,TX,73301 +273181,Google Phone,1,600.0,2019-10-16 06:15:00,61 Main St, San Francisco,CA,94016 +273181,USB-C Charging Cable,1,11.95,2019-10-16 06:15:00,61 Main St, San Francisco,CA,94016 +273182,USB-C Charging Cable,1,11.95,2019-10-10 08:13:00,702 13th St, Dallas,TX,75001 +273183,AAA Batteries (4-pack),1,2.99,2019-10-12 18:01:00,344 Johnson St, San Francisco,CA,94016 +273184,Macbook Pro Laptop,1,1700.0,2019-10-22 15:34:00,829 12th St, New York City,NY,10001 +273184,Bose SoundSport Headphones,1,99.99,2019-10-22 15:34:00,829 12th St, New York City,NY,10001 +273185,AAA Batteries (4-pack),1,2.99,2019-10-17 03:33:00,252 West St, San Francisco,CA,94016 +273186,Wired Headphones,1,11.99,2019-10-04 10:44:00,613 Pine St, San Francisco,CA,94016 +273187,34in Ultrawide Monitor,1,379.99,2019-10-06 15:06:00,510 North St, Austin,TX,73301 +273188,USB-C Charging Cable,1,11.95,2019-10-08 23:15:00,97 Chestnut St, Dallas,TX,75001 +273189,Wired Headphones,1,11.99,2019-10-27 10:39:00,70 Church St, Los Angeles,CA,90001 +273190,Apple Airpods Headphones,1,150.0,2019-10-08 19:25:00,730 Hill St, Dallas,TX,75001 +273191,AA Batteries (4-pack),1,3.84,2019-10-05 11:43:00,450 Johnson St, Seattle,WA,98101 +273192,Macbook Pro Laptop,1,1700.0,2019-10-17 15:58:00,10 Walnut St, New York City,NY,10001 +273193,AAA Batteries (4-pack),2,2.99,2019-10-17 14:18:00,644 6th St, Dallas,TX,75001 +273194,Apple Airpods Headphones,1,150.0,2019-10-22 16:39:00,336 Ridge St, Seattle,WA,98101 +273195,iPhone,1,700.0,2019-10-07 18:56:00,465 11th St, New York City,NY,10001 +273196,AAA Batteries (4-pack),3,2.99,2019-10-08 16:17:00,47 Highland St, Seattle,WA,98101 +273197,iPhone,1,700.0,2019-10-01 16:16:00,270 South St, Seattle,WA,98101 +273198,27in 4K Gaming Monitor,1,389.99,2019-10-02 18:43:00,401 1st St, Portland,OR,97035 +273199,Macbook Pro Laptop,1,1700.0,2019-10-10 23:13:00,67 13th St, New York City,NY,10001 +273200,Lightning Charging Cable,1,14.95,2019-10-01 15:31:00,703 Maple St, San Francisco,CA,94016 +273201,Apple Airpods Headphones,1,150.0,2019-10-03 14:24:00,472 Ridge St, Boston,MA,02215 +273202,AA Batteries (4-pack),1,3.84,2019-10-10 11:09:00,228 Meadow St, Boston,MA,02215 +273203,AAA Batteries (4-pack),1,2.99,2019-10-19 11:21:00,88 Washington St, Atlanta,GA,30301 +273204,iPhone,1,700.0,2019-10-14 17:43:00,462 Jefferson St, Boston,MA,02215 +273205,USB-C Charging Cable,1,11.95,2019-10-30 11:49:00,849 Washington St, Los Angeles,CA,90001 +273206,Apple Airpods Headphones,1,150.0,2019-10-27 18:16:00,135 11th St, Los Angeles,CA,90001 +273207,AA Batteries (4-pack),1,3.84,2019-10-28 16:00:00,388 Lakeview St, New York City,NY,10001 +273208,AAA Batteries (4-pack),1,2.99,2019-10-02 15:10:00,724 North St, Boston,MA,02215 +273209,AAA Batteries (4-pack),1,2.99,2019-10-10 11:23:00,260 Lake St, Boston,MA,02215 +273210,Apple Airpods Headphones,1,150.0,2019-10-10 10:58:00,795 10th St, Dallas,TX,75001 +273211,AAA Batteries (4-pack),1,2.99,2019-10-10 20:00:00,186 13th St, San Francisco,CA,94016 +273212,USB-C Charging Cable,1,11.95,2019-10-10 10:05:00,845 2nd St, Portland,OR,97035 +273213,AAA Batteries (4-pack),1,2.99,2019-10-30 16:54:00,382 12th St, Los Angeles,CA,90001 +273214,AAA Batteries (4-pack),1,2.99,2019-10-03 17:46:00,941 13th St, San Francisco,CA,94016 +273215,AA Batteries (4-pack),1,3.84,2019-10-06 16:44:00,315 Main St, Los Angeles,CA,90001 +273216,iPhone,1,700.0,2019-10-29 18:46:00,435 Cherry St, Seattle,WA,98101 +273217,AA Batteries (4-pack),1,3.84,2019-10-08 19:35:00,640 12th St, San Francisco,CA,94016 +273218,AAA Batteries (4-pack),1,2.99,2019-10-25 20:37:00,733 13th St, Boston,MA,02215 +273219,AA Batteries (4-pack),1,3.84,2019-10-02 11:54:00,597 9th St, Los Angeles,CA,90001 +273220,27in 4K Gaming Monitor,1,389.99,2019-10-24 18:46:00,969 Maple St, Los Angeles,CA,90001 +273221,Lightning Charging Cable,1,14.95,2019-10-12 20:17:00,428 14th St, Boston,MA,02215 +273222,USB-C Charging Cable,2,11.95,2019-10-15 22:52:00,922 Spruce St, New York City,NY,10001 +273223,27in FHD Monitor,1,149.99,2019-10-15 21:48:00,529 Lakeview St, Dallas,TX,75001 +273224,Apple Airpods Headphones,1,150.0,2019-10-02 21:44:00,686 Lake St, Los Angeles,CA,90001 +273225,Lightning Charging Cable,1,14.95,2019-10-01 15:44:00,429 13th St, San Francisco,CA,94016 +273226,ThinkPad Laptop,1,999.99,2019-10-01 17:43:00,61 13th St, New York City,NY,10001 +273227,AAA Batteries (4-pack),1,2.99,2019-10-30 12:16:00,616 Cedar St, New York City,NY,10001 +273228,Flatscreen TV,1,300.0,2019-10-09 11:10:00,501 Wilson St, Austin,TX,73301 +273229,Wired Headphones,1,11.99,2019-10-18 18:52:00,417 Adams St, Austin,TX,73301 +273230,Bose SoundSport Headphones,1,99.99,2019-10-07 12:36:00,185 13th St, Portland,OR,97035 +273231,AA Batteries (4-pack),1,3.84,2019-10-06 13:38:00,11 Washington St, Seattle,WA,98101 +273232,AA Batteries (4-pack),1,3.84,2019-10-01 18:50:00,607 Spruce St, New York City,NY,10001 +273233,34in Ultrawide Monitor,1,379.99,2019-10-16 10:07:00,502 Sunset St, New York City,NY,10001 +273234,Lightning Charging Cable,1,14.95,2019-10-31 14:11:00,994 Hickory St, Boston,MA,02215 +273235,Lightning Charging Cable,1,14.95,2019-10-28 18:45:00,468 2nd St, San Francisco,CA,94016 +273236,27in FHD Monitor,1,149.99,2019-10-01 10:38:00,67 1st St, New York City,NY,10001 +273236,AA Batteries (4-pack),1,3.84,2019-10-01 10:38:00,67 1st St, New York City,NY,10001 +273237,AAA Batteries (4-pack),1,2.99,2019-10-29 17:33:00,664 North St, Boston,MA,02215 +273238,AAA Batteries (4-pack),2,2.99,2019-10-02 22:16:00,248 Elm St, Los Angeles,CA,90001 +273239,20in Monitor,1,109.99,2019-10-20 05:08:00,157 11th St, San Francisco,CA,94016 +273240,Flatscreen TV,1,300.0,2019-10-16 09:01:00,77 4th St, New York City,NY,10001 +273241,AA Batteries (4-pack),1,3.84,2019-10-07 16:54:00,886 North St, Austin,TX,73301 +273242,Lightning Charging Cable,1,14.95,2019-10-18 16:50:00,237 Lake St, San Francisco,CA,94016 +273243,AA Batteries (4-pack),2,3.84,2019-10-02 12:47:00,146 West St, Dallas,TX,75001 +273244,Lightning Charging Cable,1,14.95,2019-10-27 12:03:00,172 Meadow St, Seattle,WA,98101 +273245,AA Batteries (4-pack),1,3.84,2019-10-31 14:36:00,218 Chestnut St, New York City,NY,10001 +273246,Bose SoundSport Headphones,1,99.99,2019-10-30 20:25:00,319 Church St, Portland,OR,97035 +273247,Apple Airpods Headphones,1,150.0,2019-10-31 12:12:00,310 Dogwood St, Dallas,TX,75001 +273248,AA Batteries (4-pack),1,3.84,2019-10-22 22:06:00,159 Wilson St, Los Angeles,CA,90001 +273249,AAA Batteries (4-pack),1,2.99,2019-10-12 09:51:00,796 Elm St, Los Angeles,CA,90001 +273250,iPhone,1,700.0,2019-10-12 21:15:00,453 Cedar St, San Francisco,CA,94016 +273250,Lightning Charging Cable,1,14.95,2019-10-12 21:15:00,453 Cedar St, San Francisco,CA,94016 +273251,USB-C Charging Cable,1,11.95,2019-10-12 15:46:00,974 12th St, Boston,MA,02215 +273252,Flatscreen TV,1,300.0,2019-10-29 21:46:00,194 Chestnut St, Austin,TX,73301 +273253,27in FHD Monitor,1,149.99,2019-10-19 06:40:00,487 Lincoln St, New York City,NY,10001 +273254,34in Ultrawide Monitor,1,379.99,2019-10-18 14:20:00,582 Highland St, Austin,TX,73301 +273255,USB-C Charging Cable,1,11.95,2019-10-23 10:47:00,830 13th St, Los Angeles,CA,90001 +273256,Wired Headphones,1,11.99,2019-10-03 07:02:00,763 Highland St, Portland,OR,97035 +273257,AA Batteries (4-pack),1,3.84,2019-10-18 14:40:00,952 West St, Seattle,WA,98101 +273258,27in FHD Monitor,1,149.99,2019-10-07 19:30:00,6 West St, Boston,MA,02215 +273259,AA Batteries (4-pack),1,3.84,2019-10-16 19:50:00,624 10th St, San Francisco,CA,94016 +273260,Lightning Charging Cable,1,14.95,2019-10-30 18:49:00,357 Main St, San Francisco,CA,94016 +273261,USB-C Charging Cable,1,11.95,2019-10-22 19:53:00,262 Hickory St, Los Angeles,CA,90001 +273262,Flatscreen TV,1,300.0,2019-11-01 01:26:00,14 5th St, Portland,OR,97035 +273263,Macbook Pro Laptop,1,1700.0,2019-10-17 20:06:00,709 Hickory St, New York City,NY,10001 +273264,Lightning Charging Cable,1,14.95,2019-10-26 17:48:00,36 Hickory St, Portland,OR,97035 +273265,Macbook Pro Laptop,1,1700.0,2019-10-20 21:52:00,527 13th St, Boston,MA,02215 +273266,Wired Headphones,1,11.99,2019-10-28 09:04:00,823 Ridge St, Seattle,WA,98101 +273267,USB-C Charging Cable,1,11.95,2019-10-11 21:45:00,950 Johnson St, San Francisco,CA,94016 +273268,Lightning Charging Cable,1,14.95,2019-10-27 23:12:00,407 12th St, Los Angeles,CA,90001 +273269,iPhone,1,700.0,2019-10-24 05:33:00,498 11th St, Los Angeles,CA,90001 +273270,AAA Batteries (4-pack),1,2.99,2019-10-13 21:56:00,815 Willow St, New York City,NY,10001 +273271,Vareebadd Phone,1,400.0,2019-10-27 23:51:00,40 Main St, Boston,MA,02215 +273272,USB-C Charging Cable,1,11.95,2019-10-10 01:19:00,92 Wilson St, San Francisco,CA,94016 +273273,Apple Airpods Headphones,1,150.0,2019-10-20 11:57:00,730 Hickory St, Boston,MA,02215 +273274,iPhone,1,700.0,2019-10-16 15:10:00,207 West St, Atlanta,GA,30301 +273275,AA Batteries (4-pack),1,3.84,2019-10-31 08:46:00,242 Chestnut St, Los Angeles,CA,90001 +273276,Lightning Charging Cable,1,14.95,2019-10-06 20:08:00,946 Jefferson St, New York City,NY,10001 +273277,Lightning Charging Cable,1,14.95,2019-10-11 19:34:00,647 Cedar St, San Francisco,CA,94016 +273278,27in 4K Gaming Monitor,1,389.99,2019-10-28 19:54:00,118 Meadow St, Seattle,WA,98101 +273279,Bose SoundSport Headphones,1,99.99,2019-10-10 20:58:00,549 Wilson St, San Francisco,CA,94016 +273280,34in Ultrawide Monitor,1,379.99,2019-10-20 19:26:00,563 Elm St, Seattle,WA,98101 +273281,27in 4K Gaming Monitor,1,389.99,2019-10-13 11:23:00,124 Chestnut St, Dallas,TX,75001 +273282,Wired Headphones,1,11.99,2019-10-21 17:53:00,443 Main St, Austin,TX,73301 +273283,USB-C Charging Cable,1,11.95,2019-10-28 16:15:00,298 Lincoln St, Los Angeles,CA,90001 +273284,27in FHD Monitor,1,149.99,2019-10-05 16:19:00,609 7th St, New York City,NY,10001 +273285,AA Batteries (4-pack),2,3.84,2019-10-25 22:52:00,406 7th St, Dallas,TX,75001 +273286,AAA Batteries (4-pack),1,2.99,2019-10-20 18:15:00,297 10th St, Boston,MA,02215 +273287,AAA Batteries (4-pack),2,2.99,2019-10-26 19:56:00,806 Cedar St, Atlanta,GA,30301 +273288,Bose SoundSport Headphones,1,99.99,2019-10-14 10:46:00,727 Lincoln St, Dallas,TX,75001 +273289,27in FHD Monitor,1,149.99,2019-10-23 20:58:00,759 Jackson St, New York City,NY,10001 +273290,Lightning Charging Cable,1,14.95,2019-10-17 15:14:00,30 Main St, San Francisco,CA,94016 +273291,27in 4K Gaming Monitor,1,389.99,2019-10-26 08:30:00,609 12th St, San Francisco,CA,94016 +273292,AA Batteries (4-pack),2,3.84,2019-10-18 10:34:00,891 Main St, Portland,OR,97035 +273293,USB-C Charging Cable,1,11.95,2019-10-14 13:34:00,73 2nd St, Austin,TX,73301 +273294,AAA Batteries (4-pack),4,2.99,2019-10-23 12:24:00,760 Jefferson St, Boston,MA,02215 +273294,AA Batteries (4-pack),1,3.84,2019-10-23 12:24:00,760 Jefferson St, Boston,MA,02215 +273295,27in FHD Monitor,1,149.99,2019-10-26 05:37:00,439 7th St, San Francisco,CA,94016 +273296,Lightning Charging Cable,1,14.95,2019-10-25 08:06:00,642 Chestnut St, San Francisco,CA,94016 +273297,AAA Batteries (4-pack),4,2.99,2019-10-16 22:09:00,569 Cherry St, Atlanta,GA,30301 +273298,ThinkPad Laptop,1,999.99,2019-10-18 09:03:00,450 Maple St, San Francisco,CA,94016 +273299,iPhone,1,700.0,2019-10-27 11:32:00,362 Jefferson St, San Francisco,CA,94016 +273300,27in 4K Gaming Monitor,1,389.99,2019-10-11 16:20:00,590 Washington St, Boston,MA,02215 +273301,27in FHD Monitor,1,149.99,2019-10-03 14:54:00,991 Spruce St, San Francisco,CA,94016 +273302,27in FHD Monitor,1,149.99,2019-10-16 18:16:00,395 4th St, Boston,MA,02215 +273303,Google Phone,1,600.0,2019-10-02 06:58:00,377 North St, Seattle,WA,98101 +273304,AAA Batteries (4-pack),1,2.99,2019-10-12 22:26:00,544 Madison St, New York City,NY,10001 +273305,Wired Headphones,1,11.99,2019-10-28 01:20:00,854 8th St, Los Angeles,CA,90001 +273306,27in FHD Monitor,1,149.99,2019-10-10 16:52:00,816 South St, Dallas,TX,75001 +273307,Vareebadd Phone,1,400.0,2019-10-20 12:30:00,347 Sunset St, Dallas,TX,75001 +273308,27in FHD Monitor,1,149.99,2019-10-12 18:26:00,799 12th St, Portland,OR,97035 +273309,USB-C Charging Cable,1,11.95,2019-10-30 23:19:00,824 Church St, Austin,TX,73301 +273310,USB-C Charging Cable,1,11.95,2019-10-15 18:30:00,844 6th St, Portland,OR,97035 +273311,USB-C Charging Cable,1,11.95,2019-10-25 13:55:00,548 North St, Atlanta,GA,30301 +273312,Apple Airpods Headphones,1,150.0,2019-10-17 16:35:00,305 Sunset St, San Francisco,CA,94016 +273313,USB-C Charging Cable,1,11.95,2019-10-04 19:49:00,437 Washington St, San Francisco,CA,94016 +273314,Lightning Charging Cable,1,14.95,2019-10-07 22:42:00,813 Jackson St, Austin,TX,73301 +273315,USB-C Charging Cable,2,11.95,2019-10-16 18:44:00,127 10th St, San Francisco,CA,94016 +273316,iPhone,1,700.0,2019-10-18 13:59:00,708 Center St, Los Angeles,CA,90001 +273317,Lightning Charging Cable,1,14.95,2019-10-03 17:03:00,969 Hill St, Los Angeles,CA,90001 +273318,Apple Airpods Headphones,1,150.0,2019-10-11 11:52:00,800 Lincoln St, San Francisco,CA,94016 +273319,AA Batteries (4-pack),1,3.84,2019-10-01 10:42:00,728 Cherry St, Seattle,WA,98101 +273320,ThinkPad Laptop,1,999.99,2019-10-20 13:06:00,677 Lakeview St, San Francisco,CA,94016 +273321,Lightning Charging Cable,1,14.95,2019-10-28 17:56:00,788 Adams St, Atlanta,GA,30301 +273322,Bose SoundSport Headphones,1,99.99,2019-10-30 18:12:00,424 Church St, San Francisco,CA,94016 +273323,Bose SoundSport Headphones,1,99.99,2019-10-25 15:42:00,493 Main St, Seattle,WA,98101 +273324,Lightning Charging Cable,1,14.95,2019-10-05 14:44:00,50 11th St, San Francisco,CA,94016 +273325,Bose SoundSport Headphones,1,99.99,2019-10-23 09:38:00,871 Lake St, New York City,NY,10001 +273326,Flatscreen TV,1,300.0,2019-10-30 16:55:00,825 4th St, Dallas,TX,75001 +273327,Apple Airpods Headphones,1,150.0,2019-10-11 20:11:00,635 South St, New York City,NY,10001 +273328,Google Phone,1,600.0,2019-10-18 12:36:00,853 Willow St, New York City,NY,10001 +273328,USB-C Charging Cable,1,11.95,2019-10-18 12:36:00,853 Willow St, New York City,NY,10001 +273329,20in Monitor,1,109.99,2019-10-17 16:39:00,177 Meadow St, Dallas,TX,75001 +273330,27in FHD Monitor,1,149.99,2019-10-25 11:33:00,7 7th St, San Francisco,CA,94016 +273331,AAA Batteries (4-pack),1,2.99,2019-10-08 17:33:00,723 Church St, Atlanta,GA,30301 +273332,Wired Headphones,1,11.99,2019-10-18 20:45:00,294 Cedar St, San Francisco,CA,94016 +273333,AA Batteries (4-pack),1,3.84,2019-10-24 11:46:00,543 Willow St, Dallas,TX,75001 +273334,Lightning Charging Cable,1,14.95,2019-10-01 18:19:00,691 Ridge St, Boston,MA,02215 +273335,Wired Headphones,1,11.99,2019-10-14 13:25:00,827 Sunset St, San Francisco,CA,94016 +273336,Lightning Charging Cable,1,14.95,2019-10-10 11:36:00,195 Lincoln St, Boston,MA,02215 +273337,Apple Airpods Headphones,1,150.0,2019-10-18 02:55:00,775 Dogwood St, San Francisco,CA,94016 +273338,AA Batteries (4-pack),1,3.84,2019-10-14 10:35:00,640 8th St, Atlanta,GA,30301 +273339,Lightning Charging Cable,1,14.95,2019-10-01 23:47:00,522 Dogwood St, Dallas,TX,75001 +273340,AA Batteries (4-pack),1,3.84,2019-10-08 13:39:00,928 Wilson St, San Francisco,CA,94016 +273341,AA Batteries (4-pack),1,3.84,2019-10-09 17:04:00,305 Jackson St, Portland,OR,97035 +273342,Macbook Pro Laptop,1,1700.0,2019-10-26 20:11:00,516 6th St, Los Angeles,CA,90001 +273343,Flatscreen TV,1,300.0,2019-10-17 15:09:00,762 Forest St, Seattle,WA,98101 +273344,AAA Batteries (4-pack),1,2.99,2019-10-23 09:26:00,681 Lincoln St, San Francisco,CA,94016 +273345,Bose SoundSport Headphones,1,99.99,2019-10-23 10:37:00,768 Madison St, San Francisco,CA,94016 +273346,AAA Batteries (4-pack),1,2.99,2019-10-21 09:47:00,615 Sunset St, Los Angeles,CA,90001 +273347,AA Batteries (4-pack),1,3.84,2019-10-10 11:37:00,352 North St, Austin,TX,73301 +273348,Lightning Charging Cable,1,14.95,2019-10-26 10:51:00,713 Johnson St, Los Angeles,CA,90001 +273349,20in Monitor,1,109.99,2019-10-30 13:25:00,538 Spruce St, San Francisco,CA,94016 +273350,20in Monitor,1,109.99,2019-10-20 06:52:00,124 Chestnut St, New York City,NY,10001 +273351,27in FHD Monitor,1,149.99,2019-10-28 18:02:00,294 Church St, San Francisco,CA,94016 +273352,Macbook Pro Laptop,1,1700.0,2019-10-26 11:30:00,234 Lake St, Los Angeles,CA,90001 +273353,AA Batteries (4-pack),1,3.84,2019-10-24 22:41:00,818 1st St, Portland,OR,97035 +273354,USB-C Charging Cable,1,11.95,2019-10-09 16:24:00,203 Wilson St, Seattle,WA,98101 +273355,Lightning Charging Cable,1,14.95,2019-10-07 01:53:00,565 Church St, Boston,MA,02215 +273356,AA Batteries (4-pack),1,3.84,2019-10-07 21:20:00,660 Highland St, San Francisco,CA,94016 +273357,USB-C Charging Cable,1,11.95,2019-10-26 17:38:00,615 Ridge St, San Francisco,CA,94016 +273358,Lightning Charging Cable,1,14.95,2019-10-04 21:36:00,992 North St, San Francisco,CA,94016 +273359,Lightning Charging Cable,1,14.95,2019-10-05 19:22:00,71 Hill St, Atlanta,GA,30301 +273360,27in 4K Gaming Monitor,1,389.99,2019-10-08 18:37:00,632 Lakeview St, Los Angeles,CA,90001 +273361,Google Phone,1,600.0,2019-10-22 04:24:00,854 Cedar St, Los Angeles,CA,90001 +273362,USB-C Charging Cable,1,11.95,2019-10-05 22:48:00,874 Main St, San Francisco,CA,94016 +273363,AA Batteries (4-pack),2,3.84,2019-10-06 14:52:00,547 Meadow St, Atlanta,GA,30301 +273364,AAA Batteries (4-pack),2,2.99,2019-10-04 10:30:00,458 Willow St, San Francisco,CA,94016 +273365,Wired Headphones,1,11.99,2019-10-26 19:58:00,940 6th St, Atlanta,GA,30301 +273366,Lightning Charging Cable,1,14.95,2019-10-01 16:51:00,107 South St, Atlanta,GA,30301 +273367,Apple Airpods Headphones,1,150.0,2019-10-11 18:47:00,142 Main St, Austin,TX,73301 +273368,Apple Airpods Headphones,1,150.0,2019-10-25 19:30:00,144 5th St, Dallas,TX,75001 +273369,27in 4K Gaming Monitor,1,389.99,2019-10-08 07:20:00,547 9th St, Seattle,WA,98101 +273370,Lightning Charging Cable,1,14.95,2019-10-14 13:28:00,527 Highland St, San Francisco,CA,94016 +273371,Wired Headphones,1,11.99,2019-10-18 22:51:00,752 5th St, New York City,NY,10001 +273372,34in Ultrawide Monitor,1,379.99,2019-10-29 14:17:00,736 5th St, Dallas,TX,75001 +273373,Flatscreen TV,1,300.0,2019-10-30 09:30:00,117 North St, San Francisco,CA,94016 +273374,27in 4K Gaming Monitor,1,389.99,2019-10-01 07:25:00,215 Walnut St, Los Angeles,CA,90001 +273375,USB-C Charging Cable,2,11.95,2019-10-17 14:34:00,429 River St, Seattle,WA,98101 +273376,Lightning Charging Cable,1,14.95,2019-10-07 18:19:00,865 Spruce St, New York City,NY,10001 +273377,USB-C Charging Cable,1,11.95,2019-10-31 19:17:00,630 Lincoln St, New York City,NY,10001 +273378,Apple Airpods Headphones,1,150.0,2019-10-03 13:14:00,963 West St, Boston,MA,02215 +273379,27in 4K Gaming Monitor,1,389.99,2019-10-11 11:47:00,529 Lincoln St, Boston,MA,02215 +273380,Lightning Charging Cable,1,14.95,2019-10-24 18:19:00,795 4th St, San Francisco,CA,94016 +273381,Wired Headphones,1,11.99,2019-10-12 16:30:00,328 Adams St, San Francisco,CA,94016 +273382,Bose SoundSport Headphones,1,99.99,2019-10-21 21:47:00,791 Cherry St, New York City,NY,10001 +273383,AAA Batteries (4-pack),1,2.99,2019-10-19 13:17:00,350 Lake St, San Francisco,CA,94016 +273384,Lightning Charging Cable,1,14.95,2019-10-01 17:45:00,174 Maple St, Dallas,TX,75001 +273385,iPhone,1,700.0,2019-10-20 13:15:00,328 Pine St, New York City,NY,10001 +273386,AA Batteries (4-pack),1,3.84,2019-10-18 12:28:00,510 13th St, San Francisco,CA,94016 +273387,Lightning Charging Cable,1,14.95,2019-10-21 17:08:00,5 River St, Los Angeles,CA,90001 +273388,AAA Batteries (4-pack),1,2.99,2019-10-10 16:47:00,217 4th St, Los Angeles,CA,90001 +273389,AA Batteries (4-pack),1,3.84,2019-10-24 17:07:00,346 Jefferson St, San Francisco,CA,94016 +273390,AA Batteries (4-pack),4,3.84,2019-10-18 12:21:00,760 9th St, San Francisco,CA,94016 +273391,AA Batteries (4-pack),1,3.84,2019-10-25 22:48:00,124 Lincoln St, Los Angeles,CA,90001 +273392,Bose SoundSport Headphones,1,99.99,2019-10-03 19:05:00,59 Center St, Dallas,TX,75001 +273393,34in Ultrawide Monitor,1,379.99,2019-10-21 07:30:00,532 Willow St, New York City,NY,10001 +273394,20in Monitor,1,109.99,2019-10-04 09:41:00,445 Jefferson St, San Francisco,CA,94016 +273395,USB-C Charging Cable,1,11.95,2019-10-03 05:21:00,956 Lake St, Seattle,WA,98101 +273396,Vareebadd Phone,1,400.0,2019-10-29 01:36:00,624 Elm St, San Francisco,CA,94016 +273396,USB-C Charging Cable,1,11.95,2019-10-29 01:36:00,624 Elm St, San Francisco,CA,94016 +273397,Macbook Pro Laptop,1,1700.0,2019-10-13 17:15:00,118 Church St, Los Angeles,CA,90001 +273398,AA Batteries (4-pack),1,3.84,2019-10-21 08:35:00,19 West St, Los Angeles,CA,90001 +273399,AAA Batteries (4-pack),1,2.99,2019-10-30 20:54:00,564 Hickory St, Los Angeles,CA,90001 +273400,Wired Headphones,1,11.99,2019-10-14 16:08:00,945 11th St, Portland,OR,97035 +273401,Bose SoundSport Headphones,1,99.99,2019-10-31 21:10:00,738 5th St, New York City,NY,10001 +273402,USB-C Charging Cable,1,11.95,2019-10-01 19:19:00,999 6th St, Los Angeles,CA,90001 +273403,USB-C Charging Cable,1,11.95,2019-10-22 09:14:00,81 10th St, Austin,TX,73301 +273404,Lightning Charging Cable,1,14.95,2019-10-11 09:29:00,586 West St, Boston,MA,02215 +273405,Lightning Charging Cable,1,14.95,2019-10-18 14:02:00,917 Lincoln St, San Francisco,CA,94016 +273406,Google Phone,1,600.0,2019-10-14 18:36:00,516 Washington St, Seattle,WA,98101 +273407,USB-C Charging Cable,1,11.95,2019-10-14 19:07:00,688 Jackson St, Boston,MA,02215 +273408,Lightning Charging Cable,1,14.95,2019-10-03 22:34:00,335 6th St, San Francisco,CA,94016 +273409,Bose SoundSport Headphones,1,99.99,2019-10-16 00:56:00,324 Elm St, Boston,MA,02215 +273410,Apple Airpods Headphones,1,150.0,2019-10-15 21:07:00,370 13th St, Portland,ME,04101 +273411,Macbook Pro Laptop,1,1700.0,2019-10-24 16:47:00,852 Sunset St, San Francisco,CA,94016 +273412,Lightning Charging Cable,1,14.95,2019-10-19 15:18:00,276 Forest St, San Francisco,CA,94016 +273413,AAA Batteries (4-pack),1,2.99,2019-10-15 20:09:00,993 Forest St, Los Angeles,CA,90001 +273414,USB-C Charging Cable,1,11.95,2019-10-10 18:47:00,365 12th St, Boston,MA,02215 +273415,USB-C Charging Cable,1,11.95,2019-10-27 22:10:00,870 Lincoln St, San Francisco,CA,94016 +273416,Wired Headphones,1,11.99,2019-10-04 12:39:00,255 Highland St, Atlanta,GA,30301 +273417,Lightning Charging Cable,1,14.95,2019-10-19 21:04:00,670 Cherry St, San Francisco,CA,94016 +273418,Google Phone,1,600.0,2019-10-21 23:33:00,155 West St, Dallas,TX,75001 +273418,USB-C Charging Cable,1,11.95,2019-10-21 23:33:00,155 West St, Dallas,TX,75001 +273419,AAA Batteries (4-pack),2,2.99,2019-10-16 10:19:00,210 Washington St, Los Angeles,CA,90001 +273419,USB-C Charging Cable,1,11.95,2019-10-16 10:19:00,210 Washington St, Los Angeles,CA,90001 +273420,Lightning Charging Cable,1,14.95,2019-10-05 19:23:00,625 River St, Los Angeles,CA,90001 +273421,USB-C Charging Cable,1,11.95,2019-10-07 08:06:00,882 9th St, San Francisco,CA,94016 +273422,Bose SoundSport Headphones,1,99.99,2019-10-13 14:02:00,647 Washington St, Boston,MA,02215 +273423,Wired Headphones,1,11.99,2019-10-21 09:30:00,586 Madison St, New York City,NY,10001 +273424,Lightning Charging Cable,1,14.95,2019-10-03 00:56:00,612 12th St, Austin,TX,73301 +273425,AA Batteries (4-pack),1,3.84,2019-10-31 11:48:00,771 Jefferson St, Seattle,WA,98101 +273426,Wired Headphones,1,11.99,2019-10-26 18:37:00,338 Willow St, Los Angeles,CA,90001 +273427,USB-C Charging Cable,1,11.95,2019-10-29 12:02:00,359 Highland St, Dallas,TX,75001 +273428,Apple Airpods Headphones,1,150.0,2019-10-07 05:26:00,649 Church St, Boston,MA,02215 +273429,Wired Headphones,1,11.99,2019-10-20 09:48:00,781 Hickory St, Dallas,TX,75001 +273430,USB-C Charging Cable,1,11.95,2019-10-11 18:01:00,447 Ridge St, San Francisco,CA,94016 +273431,27in FHD Monitor,1,149.99,2019-10-26 14:32:00,453 North St, Los Angeles,CA,90001 +273432,AAA Batteries (4-pack),1,2.99,2019-10-28 16:34:00,896 Dogwood St, San Francisco,CA,94016 +273433,AA Batteries (4-pack),3,3.84,2019-10-08 13:29:00,551 Center St, Los Angeles,CA,90001 +273434,Macbook Pro Laptop,1,1700.0,2019-10-24 15:25:00,234 Park St, New York City,NY,10001 +273435,Lightning Charging Cable,1,14.95,2019-10-21 02:21:00,471 River St, San Francisco,CA,94016 +273436,Bose SoundSport Headphones,1,99.99,2019-10-07 20:04:00,891 Sunset St, New York City,NY,10001 +273437,USB-C Charging Cable,1,11.95,2019-10-20 09:35:00,781 2nd St, New York City,NY,10001 +273438,Wired Headphones,2,11.99,2019-10-23 01:56:00,285 Lake St, San Francisco,CA,94016 +273439,AAA Batteries (4-pack),1,2.99,2019-10-13 09:50:00,592 Lincoln St, Seattle,WA,98101 +273440,27in 4K Gaming Monitor,1,389.99,2019-10-07 08:09:00,473 Walnut St, New York City,NY,10001 +273441,27in 4K Gaming Monitor,1,389.99,2019-10-12 18:21:00,250 9th St, Atlanta,GA,30301 +273442,20in Monitor,1,109.99,2019-10-20 19:15:00,276 14th St, New York City,NY,10001 +273443,Google Phone,1,600.0,2019-10-01 08:00:00,118 7th St, San Francisco,CA,94016 +273443,USB-C Charging Cable,1,11.95,2019-10-01 08:00:00,118 7th St, San Francisco,CA,94016 +273444,Wired Headphones,1,11.99,2019-10-24 00:21:00,746 Jefferson St, Seattle,WA,98101 +273445,27in FHD Monitor,1,149.99,2019-10-13 19:01:00,387 Pine St, Austin,TX,73301 +273446,Bose SoundSport Headphones,1,99.99,2019-10-19 11:16:00,682 Center St, Boston,MA,02215 +273447,iPhone,1,700.0,2019-10-12 13:17:00,246 Adams St, Seattle,WA,98101 +273447,Lightning Charging Cable,1,14.95,2019-10-12 13:17:00,246 Adams St, Seattle,WA,98101 +273447,Flatscreen TV,1,300.0,2019-10-12 13:17:00,246 Adams St, Seattle,WA,98101 +273448,iPhone,1,700.0,2019-10-05 09:52:00,682 Chestnut St, San Francisco,CA,94016 +273449,Bose SoundSport Headphones,1,99.99,2019-10-21 20:49:00,702 Lakeview St, Boston,MA,02215 +273450,Lightning Charging Cable,1,14.95,2019-10-05 11:34:00,43 14th St, New York City,NY,10001 +273451,USB-C Charging Cable,3,11.95,2019-10-09 20:14:00,996 Center St, San Francisco,CA,94016 +273452,iPhone,1,700.0,2019-10-07 11:31:00,30 Madison St, San Francisco,CA,94016 +273452,Wired Headphones,1,11.99,2019-10-07 11:31:00,30 Madison St, San Francisco,CA,94016 +273453,Wired Headphones,1,11.99,2019-10-30 12:22:00,541 Center St, San Francisco,CA,94016 +273454,Apple Airpods Headphones,1,150.0,2019-10-29 08:10:00,634 13th St, Boston,MA,02215 +273455,USB-C Charging Cable,1,11.95,2019-10-20 13:13:00,502 Johnson St, Portland,OR,97035 +273456,iPhone,1,700.0,2019-10-18 10:03:00,780 7th St, San Francisco,CA,94016 +273456,Wired Headphones,1,11.99,2019-10-18 10:03:00,780 7th St, San Francisco,CA,94016 +273457,27in 4K Gaming Monitor,1,389.99,2019-10-29 14:22:00,94 9th St, Los Angeles,CA,90001 +273458,Lightning Charging Cable,1,14.95,2019-10-29 07:50:00,923 14th St, San Francisco,CA,94016 +273459,AA Batteries (4-pack),1,3.84,2019-10-12 14:40:00,722 Meadow St, Portland,OR,97035 +273460,Wired Headphones,1,11.99,2019-10-27 13:14:00,111 Hickory St, Portland,OR,97035 +273461,USB-C Charging Cable,2,11.95,2019-10-02 18:56:00,428 Maple St, Atlanta,GA,30301 +273462,AA Batteries (4-pack),1,3.84,2019-10-28 23:52:00,473 Lakeview St, San Francisco,CA,94016 +273463,Macbook Pro Laptop,1,1700.0,2019-10-17 00:02:00,585 10th St, Boston,MA,02215 +273464,iPhone,1,700.0,2019-10-15 17:08:00,921 Hill St, Austin,TX,73301 +273465,AA Batteries (4-pack),1,3.84,2019-10-07 17:37:00,410 Lake St, Austin,TX,73301 +273466,Apple Airpods Headphones,1,150.0,2019-10-06 10:51:00,558 Lakeview St, New York City,NY,10001 +273467,Bose SoundSport Headphones,1,99.99,2019-10-12 19:05:00,527 11th St, Seattle,WA,98101 +273468,AA Batteries (4-pack),1,3.84,2019-10-15 15:30:00,102 Chestnut St, Los Angeles,CA,90001 +273469,Wired Headphones,1,11.99,2019-10-10 12:10:00,685 10th St, Boston,MA,02215 +273469,USB-C Charging Cable,1,11.95,2019-10-10 12:10:00,685 10th St, Boston,MA,02215 +273470,AAA Batteries (4-pack),1,2.99,2019-10-19 18:32:00,747 Jefferson St, New York City,NY,10001 +273471,USB-C Charging Cable,1,11.95,2019-10-02 22:49:00,613 Main St, San Francisco,CA,94016 +273472,AAA Batteries (4-pack),2,2.99,2019-10-11 22:17:00,279 Cherry St, New York City,NY,10001 +273473,USB-C Charging Cable,1,11.95,2019-10-18 18:27:00,200 10th St, San Francisco,CA,94016 +273474,USB-C Charging Cable,3,11.95,2019-10-26 20:52:00,918 14th St, Atlanta,GA,30301 +273475,Bose SoundSport Headphones,1,99.99,2019-10-31 17:55:00,364 Spruce St, Portland,OR,97035 +273476,Apple Airpods Headphones,1,150.0,2019-10-25 21:01:00,971 Spruce St, Seattle,WA,98101 +273477,27in FHD Monitor,1,149.99,2019-10-08 09:29:00,839 Sunset St, San Francisco,CA,94016 +273478,Apple Airpods Headphones,1,150.0,2019-10-24 09:40:00,276 Ridge St, Dallas,TX,75001 +273479,34in Ultrawide Monitor,1,379.99,2019-10-02 19:15:00,28 Center St, Boston,MA,02215 +273479,Bose SoundSport Headphones,1,99.99,2019-10-02 19:15:00,28 Center St, Boston,MA,02215 +273480,AA Batteries (4-pack),1,3.84,2019-10-05 08:23:00,640 Lake St, Seattle,WA,98101 +273481,Apple Airpods Headphones,1,150.0,2019-10-03 08:41:00,775 Ridge St, Boston,MA,02215 +273482,AA Batteries (4-pack),1,3.84,2019-10-06 11:29:00,839 Ridge St, San Francisco,CA,94016 +273483,Apple Airpods Headphones,1,150.0,2019-10-30 12:16:00,944 North St, Seattle,WA,98101 +273484,Bose SoundSport Headphones,1,99.99,2019-10-31 16:40:00,644 North St, Los Angeles,CA,90001 +273485,AA Batteries (4-pack),1,3.84,2019-10-19 12:09:00,829 Hickory St, San Francisco,CA,94016 +273486,34in Ultrawide Monitor,1,379.99,2019-10-26 13:26:00,599 1st St, Los Angeles,CA,90001 +273487,27in 4K Gaming Monitor,1,389.99,2019-10-14 16:44:00,262 Cherry St, New York City,NY,10001 +273488,USB-C Charging Cable,1,11.95,2019-10-14 11:56:00,640 Adams St, Los Angeles,CA,90001 +273489,Lightning Charging Cable,1,14.95,2019-10-06 05:01:00,134 5th St, San Francisco,CA,94016 +273490,AAA Batteries (4-pack),3,2.99,2019-10-26 16:00:00,456 10th St, New York City,NY,10001 +273491,Wired Headphones,1,11.99,2019-10-27 07:09:00,794 Jefferson St, San Francisco,CA,94016 +273491,AAA Batteries (4-pack),1,2.99,2019-10-27 07:09:00,794 Jefferson St, San Francisco,CA,94016 +273492,27in 4K Gaming Monitor,1,389.99,2019-10-12 19:09:00,57 Hickory St, Austin,TX,73301 +273493,iPhone,1,700.0,2019-10-13 15:55:00,779 South St, Los Angeles,CA,90001 +273493,Lightning Charging Cable,2,14.95,2019-10-13 15:55:00,779 South St, Los Angeles,CA,90001 +273494,AA Batteries (4-pack),1,3.84,2019-10-22 20:46:00,359 Washington St, Boston,MA,02215 +273495,ThinkPad Laptop,1,999.99,2019-10-28 13:25:00,856 Main St, Dallas,TX,75001 +273496,AA Batteries (4-pack),1,3.84,2019-10-01 21:39:00,830 13th St, Los Angeles,CA,90001 +273497,34in Ultrawide Monitor,1,379.99,2019-10-12 13:22:00,405 2nd St, San Francisco,CA,94016 +273498,ThinkPad Laptop,1,999.99,2019-10-02 00:29:00,507 Cedar St, Boston,MA,02215 +273499,USB-C Charging Cable,2,11.95,2019-10-17 08:13:00,981 Madison St, Portland,OR,97035 +273500,Lightning Charging Cable,1,14.95,2019-10-19 11:55:00,545 Spruce St, Boston,MA,02215 +273501,27in FHD Monitor,1,149.99,2019-10-06 04:54:00,643 Meadow St, San Francisco,CA,94016 +273502,20in Monitor,1,109.99,2019-10-29 20:15:00,20 Johnson St, Los Angeles,CA,90001 +273503,USB-C Charging Cable,1,11.95,2019-10-03 11:09:00,640 Highland St, San Francisco,CA,94016 +273504,Lightning Charging Cable,1,14.95,2019-10-25 23:25:00,89 4th St, San Francisco,CA,94016 +273505,iPhone,1,700.0,2019-10-05 17:57:00,895 River St, Atlanta,GA,30301 +273506,AA Batteries (4-pack),1,3.84,2019-10-11 22:57:00,230 Elm St, New York City,NY,10001 +273507,27in FHD Monitor,1,149.99,2019-10-05 19:12:00,354 Meadow St, Boston,MA,02215 +273508,AA Batteries (4-pack),1,3.84,2019-10-01 22:28:00,637 Hill St, San Francisco,CA,94016 +273509,AAA Batteries (4-pack),2,2.99,2019-10-27 21:02:00,445 Sunset St, Los Angeles,CA,90001 +273510,Macbook Pro Laptop,1,1700.0,2019-10-07 13:05:00,212 2nd St, Seattle,WA,98101 +273511,USB-C Charging Cable,1,11.95,2019-10-26 16:33:00,65 12th St, Atlanta,GA,30301 +273512,Apple Airpods Headphones,1,150.0,2019-10-29 16:30:00,787 Lincoln St, Los Angeles,CA,90001 +273513,27in 4K Gaming Monitor,1,389.99,2019-10-26 12:50:00,368 Willow St, Seattle,WA,98101 +273514,Bose SoundSport Headphones,1,99.99,2019-10-25 19:15:00,227 Cedar St, New York City,NY,10001 +273515,USB-C Charging Cable,1,11.95,2019-10-24 20:02:00,986 10th St, Boston,MA,02215 +273516,27in FHD Monitor,1,149.99,2019-10-06 16:01:00,835 6th St, San Francisco,CA,94016 +273516,USB-C Charging Cable,1,11.95,2019-10-06 16:01:00,835 6th St, San Francisco,CA,94016 +273517,27in FHD Monitor,1,149.99,2019-10-09 01:06:00,984 North St, Seattle,WA,98101 +273518,AAA Batteries (4-pack),3,2.99,2019-10-09 20:41:00,70 Walnut St, San Francisco,CA,94016 +273519,AA Batteries (4-pack),1,3.84,2019-10-13 19:28:00,802 Meadow St, Los Angeles,CA,90001 +273519,Lightning Charging Cable,1,14.95,2019-10-13 19:28:00,802 Meadow St, Los Angeles,CA,90001 +273520,Flatscreen TV,1,300.0,2019-10-18 16:06:00,798 Hill St, New York City,NY,10001 +273521,USB-C Charging Cable,2,11.95,2019-10-14 11:03:00,205 Walnut St, San Francisco,CA,94016 +273522,AAA Batteries (4-pack),2,2.99,2019-10-19 14:20:00,186 Walnut St, Atlanta,GA,30301 +273523,27in FHD Monitor,1,149.99,2019-10-23 12:04:00,514 11th St, San Francisco,CA,94016 +273524,AAA Batteries (4-pack),1,2.99,2019-10-20 11:59:00,725 Jefferson St, San Francisco,CA,94016 +273525,AAA Batteries (4-pack),1,2.99,2019-10-01 17:11:00,520 4th St, Los Angeles,CA,90001 +273526,Lightning Charging Cable,1,14.95,2019-10-15 10:19:00,453 Johnson St, San Francisco,CA,94016 +273527,Lightning Charging Cable,1,14.95,2019-10-02 18:07:00,687 12th St, Seattle,WA,98101 +273528,34in Ultrawide Monitor,1,379.99,2019-10-29 10:11:00,943 14th St, San Francisco,CA,94016 +273529,Bose SoundSport Headphones,1,99.99,2019-10-06 01:47:00,29 Forest St, Atlanta,GA,30301 +273530,ThinkPad Laptop,1,999.99,2019-10-24 18:08:00,530 Highland St, San Francisco,CA,94016 +273531,34in Ultrawide Monitor,1,379.99,2019-10-18 23:26:00,306 Center St, Dallas,TX,75001 +273532,USB-C Charging Cable,1,11.95,2019-10-06 17:13:00,799 10th St, San Francisco,CA,94016 +273533,Flatscreen TV,1,300.0,2019-10-17 11:23:00,350 Pine St, Boston,MA,02215 +273533,Bose SoundSport Headphones,1,99.99,2019-10-17 11:23:00,350 Pine St, Boston,MA,02215 +273534,AA Batteries (4-pack),1,3.84,2019-10-08 11:01:00,96 Elm St, Seattle,WA,98101 +273535,AAA Batteries (4-pack),3,2.99,2019-10-01 17:26:00,166 Pine St, San Francisco,CA,94016 +273536,Lightning Charging Cable,1,14.95,2019-10-11 18:03:00,59 Maple St, Los Angeles,CA,90001 +273537,Bose SoundSport Headphones,1,99.99,2019-10-06 12:42:00,971 South St, Portland,ME,04101 +273538,Wired Headphones,1,11.99,2019-10-05 06:04:00,754 Maple St, Boston,MA,02215 +273538,AAA Batteries (4-pack),1,2.99,2019-10-05 06:04:00,754 Maple St, Boston,MA,02215 +273539,Apple Airpods Headphones,1,150.0,2019-10-30 11:55:00,402 Johnson St, New York City,NY,10001 +273540,27in 4K Gaming Monitor,1,389.99,2019-10-24 16:28:00,165 Dogwood St, New York City,NY,10001 +273541,Lightning Charging Cable,2,14.95,2019-10-18 08:26:00,970 Center St, San Francisco,CA,94016 +273542,27in FHD Monitor,1,149.99,2019-10-05 13:15:00,734 7th St, Dallas,TX,75001 +273543,ThinkPad Laptop,1,999.99,2019-10-04 10:52:00,502 7th St, Los Angeles,CA,90001 +273544,Apple Airpods Headphones,1,150.0,2019-10-29 16:45:00,895 Adams St, San Francisco,CA,94016 +273545,34in Ultrawide Monitor,1,379.99,2019-10-05 13:58:00,92 Jefferson St, Los Angeles,CA,90001 +273546,Apple Airpods Headphones,1,150.0,2019-10-09 19:05:00,998 Adams St, San Francisco,CA,94016 +273547,27in 4K Gaming Monitor,1,389.99,2019-10-18 22:08:00,771 Washington St, Atlanta,GA,30301 +273548,27in 4K Gaming Monitor,1,389.99,2019-10-04 21:35:00,454 6th St, San Francisco,CA,94016 +273549,Bose SoundSport Headphones,1,99.99,2019-10-20 18:01:00,424 Center St, Boston,MA,02215 +273550,USB-C Charging Cable,1,11.95,2019-10-09 21:35:00,805 8th St, San Francisco,CA,94016 +273551,USB-C Charging Cable,1,11.95,2019-10-19 19:37:00,881 Madison St, Boston,MA,02215 +273552,Bose SoundSport Headphones,1,99.99,2019-10-13 03:31:00,74 12th St, San Francisco,CA,94016 +273553,ThinkPad Laptop,1,999.99,2019-10-29 18:40:00,874 4th St, San Francisco,CA,94016 +273554,27in 4K Gaming Monitor,1,389.99,2019-10-23 19:47:00,898 Jackson St, New York City,NY,10001 +273555,27in FHD Monitor,1,149.99,2019-10-14 12:33:00,963 Johnson St, Dallas,TX,75001 +273556,Google Phone,1,600.0,2019-10-16 10:55:00,948 11th St, Atlanta,GA,30301 +273557,USB-C Charging Cable,1,11.95,2019-10-22 21:44:00,643 West St, San Francisco,CA,94016 +273558,AAA Batteries (4-pack),1,2.99,2019-10-29 18:52:00,489 Walnut St, Boston,MA,02215 +273559,27in FHD Monitor,1,149.99,2019-10-22 18:29:00,534 Park St, Boston,MA,02215 +273560,Wired Headphones,1,11.99,2019-10-21 22:23:00,357 Johnson St, Boston,MA,02215 +273561,27in 4K Gaming Monitor,1,389.99,2019-10-13 16:38:00,120 Madison St, Los Angeles,CA,90001 +273562,Wired Headphones,1,11.99,2019-10-12 07:45:00,268 Lincoln St, San Francisco,CA,94016 +273563,Apple Airpods Headphones,1,150.0,2019-10-21 19:15:00,86 14th St, New York City,NY,10001 +273564,Bose SoundSport Headphones,1,99.99,2019-10-18 11:24:00,775 8th St, San Francisco,CA,94016 +273565,Lightning Charging Cable,1,14.95,2019-10-04 09:38:00,692 14th St, San Francisco,CA,94016 +273566,Bose SoundSport Headphones,1,99.99,2019-10-25 17:31:00,140 Cedar St, San Francisco,CA,94016 +273567,27in 4K Gaming Monitor,1,389.99,2019-10-27 16:42:00,835 Chestnut St, Seattle,WA,98101 +273568,AA Batteries (4-pack),2,3.84,2019-10-08 07:49:00,864 Cedar St, Boston,MA,02215 +273569,AA Batteries (4-pack),1,3.84,2019-10-29 09:44:00,573 Dogwood St, Seattle,WA,98101 +273570,Apple Airpods Headphones,1,150.0,2019-10-20 16:13:00,814 6th St, New York City,NY,10001 +273571,Flatscreen TV,1,300.0,2019-10-22 18:28:00,85 Spruce St, San Francisco,CA,94016 +273572,AAA Batteries (4-pack),1,2.99,2019-10-15 16:09:00,926 Main St, Dallas,TX,75001 +273573,USB-C Charging Cable,1,11.95,2019-11-01 00:34:00,288 Lake St, Boston,MA,02215 +273574,34in Ultrawide Monitor,1,379.99,2019-10-29 08:12:00,946 12th St, San Francisco,CA,94016 +273575,27in FHD Monitor,1,149.99,2019-10-30 00:44:00,517 Hill St, Atlanta,GA,30301 +273576,Apple Airpods Headphones,1,150.0,2019-10-16 13:54:00,175 Lincoln St, Boston,MA,02215 +273577,34in Ultrawide Monitor,1,379.99,2019-10-11 07:42:00,45 Chestnut St, Atlanta,GA,30301 +273578,Lightning Charging Cable,1,14.95,2019-10-04 18:53:00,896 Center St, Los Angeles,CA,90001 +273579,Lightning Charging Cable,1,14.95,2019-10-08 10:20:00,688 8th St, Portland,OR,97035 +273580,Apple Airpods Headphones,1,150.0,2019-10-19 15:55:00,89 West St, Los Angeles,CA,90001 +273581,USB-C Charging Cable,1,11.95,2019-10-13 11:15:00,375 Ridge St, Los Angeles,CA,90001 +273582,AA Batteries (4-pack),1,3.84,2019-10-05 13:04:00,437 9th St, Los Angeles,CA,90001 +273583,Lightning Charging Cable,1,14.95,2019-10-10 16:07:00,332 Wilson St, Seattle,WA,98101 +273584,Lightning Charging Cable,1,14.95,2019-10-14 15:54:00,56 Elm St, Los Angeles,CA,90001 +273585,USB-C Charging Cable,1,11.95,2019-10-14 19:52:00,791 Washington St, Dallas,TX,75001 +273586,AAA Batteries (4-pack),1,2.99,2019-10-12 09:14:00,544 Lincoln St, Boston,MA,02215 +273587,iPhone,1,700.0,2019-10-28 10:23:00,784 Church St, Seattle,WA,98101 +273588,Apple Airpods Headphones,1,150.0,2019-10-16 12:35:00,227 4th St, Dallas,TX,75001 +273589,AA Batteries (4-pack),1,3.84,2019-10-07 12:47:00,10 Willow St, Austin,TX,73301 +273590,USB-C Charging Cable,1,11.95,2019-10-28 11:38:00,415 Pine St, Dallas,TX,75001 +273591,Wired Headphones,1,11.99,2019-10-10 00:08:00,720 Willow St, Los Angeles,CA,90001 +273592,34in Ultrawide Monitor,1,379.99,2019-10-29 18:49:00,704 7th St, Dallas,TX,75001 +273593,Wired Headphones,1,11.99,2019-10-30 14:42:00,385 Cedar St, New York City,NY,10001 +273594,Flatscreen TV,1,300.0,2019-10-10 00:46:00,38 Park St, San Francisco,CA,94016 +273595,34in Ultrawide Monitor,1,379.99,2019-10-18 20:31:00,859 9th St, New York City,NY,10001 +273596,ThinkPad Laptop,1,999.99,2019-10-05 21:14:00,254 Meadow St, Los Angeles,CA,90001 +273597,USB-C Charging Cable,1,11.95,2019-10-08 15:52:00,549 Main St, San Francisco,CA,94016 +273598,27in FHD Monitor,1,149.99,2019-10-27 12:01:00,515 West St, Austin,TX,73301 +273599,iPhone,1,700.0,2019-10-31 21:37:00,357 Pine St, Boston,MA,02215 +273600,LG Dryer,1,600.0,2019-10-08 14:23:00,257 Forest St, Los Angeles,CA,90001 +273601,AAA Batteries (4-pack),1,2.99,2019-10-26 14:53:00,32 Ridge St, San Francisco,CA,94016 +273602,27in 4K Gaming Monitor,1,389.99,2019-10-27 17:57:00,332 Lake St, New York City,NY,10001 +273603,Bose SoundSport Headphones,1,99.99,2019-10-01 16:21:00,326 South St, San Francisco,CA,94016 +273604,Bose SoundSport Headphones,1,99.99,2019-10-13 09:50:00,976 Cedar St, Boston,MA,02215 +273605,34in Ultrawide Monitor,1,379.99,2019-10-18 17:15:00,928 Spruce St, San Francisco,CA,94016 +273606,Wired Headphones,1,11.99,2019-10-12 08:16:00,540 Maple St, San Francisco,CA,94016 +273607,iPhone,1,700.0,2019-10-01 10:57:00,548 Hill St, San Francisco,CA,94016 +273607,Lightning Charging Cable,1,14.95,2019-10-01 10:57:00,548 Hill St, San Francisco,CA,94016 +273608,Bose SoundSport Headphones,1,99.99,2019-10-19 14:55:00,600 9th St, San Francisco,CA,94016 +273609,Apple Airpods Headphones,1,150.0,2019-10-24 23:40:00,598 Washington St, Dallas,TX,75001 +273610,AA Batteries (4-pack),1,3.84,2019-10-18 14:16:00,474 Cedar St, Los Angeles,CA,90001 +273611,Lightning Charging Cable,1,14.95,2019-10-20 18:56:00,879 Madison St, Dallas,TX,75001 +273612,AA Batteries (4-pack),2,3.84,2019-10-04 12:07:00,359 North St, Boston,MA,02215 +273613,AA Batteries (4-pack),1,3.84,2019-10-18 10:36:00,454 Pine St, Dallas,TX,75001 +273614,Bose SoundSport Headphones,1,99.99,2019-10-30 11:28:00,711 11th St, Dallas,TX,75001 +273615,Google Phone,1,600.0,2019-10-18 18:38:00,143 Lincoln St, Atlanta,GA,30301 +273616,34in Ultrawide Monitor,1,379.99,2019-10-17 20:57:00,117 7th St, New York City,NY,10001 +273617,AAA Batteries (4-pack),1,2.99,2019-10-04 16:06:00,667 Forest St, New York City,NY,10001 +273618,Flatscreen TV,1,300.0,2019-10-11 08:55:00,158 Lakeview St, New York City,NY,10001 +273619,Lightning Charging Cable,2,14.95,2019-10-21 15:10:00,596 7th St, Boston,MA,02215 +273620,AA Batteries (4-pack),1,3.84,2019-10-07 09:01:00,313 10th St, Austin,TX,73301 +273621,Apple Airpods Headphones,1,150.0,2019-10-15 15:27:00,369 2nd St, Atlanta,GA,30301 +273622,Flatscreen TV,1,300.0,2019-10-13 14:53:00,836 Spruce St, Los Angeles,CA,90001 +273623,34in Ultrawide Monitor,1,379.99,2019-10-06 00:21:00,179 12th St, Austin,TX,73301 +273624,AAA Batteries (4-pack),1,2.99,2019-10-08 12:47:00,685 Lakeview St, Los Angeles,CA,90001 +273625,34in Ultrawide Monitor,1,379.99,2019-10-25 23:34:00,361 8th St, Dallas,TX,75001 +273626,LG Dryer,1,600.0,2019-10-02 07:49:00,959 14th St, San Francisco,CA,94016 +273627,Bose SoundSport Headphones,1,99.99,2019-10-11 17:24:00,357 2nd St, San Francisco,CA,94016 +273628,Apple Airpods Headphones,1,150.0,2019-10-07 19:55:00,84 West St, New York City,NY,10001 +273629,Wired Headphones,1,11.99,2019-10-13 15:14:00,970 13th St, San Francisco,CA,94016 +273630,USB-C Charging Cable,3,11.95,2019-10-28 22:35:00,135 Lake St, Los Angeles,CA,90001 +273631,Lightning Charging Cable,1,14.95,2019-10-15 20:41:00,251 Adams St, Boston,MA,02215 +273632,AA Batteries (4-pack),1,3.84,2019-10-19 13:12:00,720 4th St, Atlanta,GA,30301 +273633,AAA Batteries (4-pack),2,2.99,2019-10-13 14:01:00,532 River St, Los Angeles,CA,90001 +273634,Wired Headphones,1,11.99,2019-10-11 14:29:00,995 9th St, Boston,MA,02215 +273635,Bose SoundSport Headphones,1,99.99,2019-10-11 20:25:00,448 Spruce St, San Francisco,CA,94016 +273636,Flatscreen TV,1,300.0,2019-10-08 07:25:00,197 River St, Atlanta,GA,30301 +273637,USB-C Charging Cable,1,11.95,2019-10-25 22:05:00,902 5th St, San Francisco,CA,94016 +273638,USB-C Charging Cable,1,11.95,2019-10-02 07:50:00,510 Walnut St, Atlanta,GA,30301 +273639,Lightning Charging Cable,1,14.95,2019-10-29 16:09:00,636 Wilson St, New York City,NY,10001 +273640,AA Batteries (4-pack),1,3.84,2019-10-04 18:41:00,276 Lake St, Portland,OR,97035 +273641,AA Batteries (4-pack),1,3.84,2019-10-26 22:22:00,869 Jackson St, Boston,MA,02215 +273642,USB-C Charging Cable,1,11.95,2019-10-17 19:00:00,302 Church St, Los Angeles,CA,90001 +273643,USB-C Charging Cable,1,11.95,2019-10-21 12:30:00,763 Wilson St, New York City,NY,10001 +273644,27in 4K Gaming Monitor,1,389.99,2019-10-18 09:02:00,791 Center St, Seattle,WA,98101 +273645,Google Phone,1,600.0,2019-10-20 08:13:00,594 West St, Los Angeles,CA,90001 +273645,USB-C Charging Cable,1,11.95,2019-10-20 08:13:00,594 West St, Los Angeles,CA,90001 +273646,USB-C Charging Cable,1,11.95,2019-10-01 18:26:00,899 Madison St, New York City,NY,10001 +273647,Wired Headphones,1,11.99,2019-10-18 20:23:00,516 Highland St, Los Angeles,CA,90001 +273648,USB-C Charging Cable,1,11.95,2019-10-10 19:02:00,944 Walnut St, Boston,MA,02215 +273649,AAA Batteries (4-pack),2,2.99,2019-10-03 22:44:00,38 Lake St, San Francisco,CA,94016 +273650,AA Batteries (4-pack),1,3.84,2019-10-21 20:44:00,108 Cedar St, New York City,NY,10001 +273651,USB-C Charging Cable,1,11.95,2019-10-15 20:05:00,524 West St, San Francisco,CA,94016 +273652,Bose SoundSport Headphones,1,99.99,2019-10-22 10:08:00,835 Willow St, Los Angeles,CA,90001 +273653,Lightning Charging Cable,1,14.95,2019-10-13 13:35:00,114 Sunset St, San Francisco,CA,94016 +273654,AAA Batteries (4-pack),1,2.99,2019-10-13 16:43:00,783 13th St, San Francisco,CA,94016 +273655,Apple Airpods Headphones,1,150.0,2019-11-01 01:58:00,313 Jefferson St, New York City,NY,10001 +273656,USB-C Charging Cable,1,11.95,2019-10-04 20:46:00,37 8th St, Los Angeles,CA,90001 +273657,Lightning Charging Cable,1,14.95,2019-10-27 13:30:00,933 Washington St, Atlanta,GA,30301 +273658,Wired Headphones,1,11.99,2019-10-05 22:19:00,137 Church St, Seattle,WA,98101 +273659,Apple Airpods Headphones,1,150.0,2019-10-28 01:32:00,260 Jefferson St, Seattle,WA,98101 +273660,Lightning Charging Cable,1,14.95,2019-10-23 11:11:00,685 Spruce St, New York City,NY,10001 +273661,Bose SoundSport Headphones,1,99.99,2019-10-22 23:21:00,528 Lakeview St, Dallas,TX,75001 +273662,Wired Headphones,1,11.99,2019-10-28 18:56:00,31 11th St, Boston,MA,02215 +273663,AA Batteries (4-pack),1,3.84,2019-10-10 15:33:00,37 13th St, San Francisco,CA,94016 +273664,AA Batteries (4-pack),2,3.84,2019-10-14 19:15:00,771 Ridge St, Austin,TX,73301 +273665,USB-C Charging Cable,1,11.95,2019-10-19 18:22:00,825 5th St, Los Angeles,CA,90001 +273666,AA Batteries (4-pack),1,3.84,2019-10-31 03:22:00,533 Cedar St, Boston,MA,02215 +273666,AA Batteries (4-pack),2,3.84,2019-10-31 03:22:00,533 Cedar St, Boston,MA,02215 +273667,AAA Batteries (4-pack),2,2.99,2019-10-01 13:43:00,880 West St, San Francisco,CA,94016 +273668,Apple Airpods Headphones,1,150.0,2019-10-14 23:02:00,225 Main St, Los Angeles,CA,90001 +273669,27in FHD Monitor,1,149.99,2019-10-21 12:42:00,181 Chestnut St, Atlanta,GA,30301 +273670,AAA Batteries (4-pack),1,2.99,2019-10-09 07:00:00,546 6th St, San Francisco,CA,94016 +273671,AAA Batteries (4-pack),1,2.99,2019-10-14 16:52:00,875 Hickory St, Portland,OR,97035 +273672,Bose SoundSport Headphones,1,99.99,2019-10-14 12:59:00,320 6th St, New York City,NY,10001 +273673,Apple Airpods Headphones,1,150.0,2019-10-31 07:46:00,478 Willow St, Seattle,WA,98101 +273674,27in 4K Gaming Monitor,1,389.99,2019-10-25 13:15:00,810 14th St, New York City,NY,10001 +273675,Lightning Charging Cable,2,14.95,2019-10-01 10:41:00,979 Johnson St, New York City,NY,10001 +273676,AA Batteries (4-pack),4,3.84,2019-10-07 13:14:00,444 10th St, Boston,MA,02215 +273677,Macbook Pro Laptop,1,1700.0,2019-10-28 16:00:00,947 Jackson St, Dallas,TX,75001 +273678,USB-C Charging Cable,1,11.95,2019-10-02 11:38:00,309 North St, San Francisco,CA,94016 +273679,Bose SoundSport Headphones,1,99.99,2019-10-10 10:59:00,416 10th St, Austin,TX,73301 +273680,Lightning Charging Cable,1,14.95,2019-10-30 19:36:00,984 Meadow St, Boston,MA,02215 +273681,Wired Headphones,1,11.99,2019-10-28 18:43:00,498 River St, San Francisco,CA,94016 +273681,AAA Batteries (4-pack),1,2.99,2019-10-28 18:43:00,498 River St, San Francisco,CA,94016 +273682,Apple Airpods Headphones,1,150.0,2019-10-25 19:24:00,932 Madison St, San Francisco,CA,94016 +273683,27in FHD Monitor,1,149.99,2019-10-21 10:55:00,311 2nd St, San Francisco,CA,94016 +273684,Lightning Charging Cable,1,14.95,2019-10-25 22:33:00,847 10th St, Seattle,WA,98101 +273685,USB-C Charging Cable,1,11.95,2019-10-15 19:17:00,50 Adams St, Austin,TX,73301 +273686,Bose SoundSport Headphones,1,99.99,2019-10-07 12:42:00,933 Willow St, San Francisco,CA,94016 +273687,Lightning Charging Cable,1,14.95,2019-10-25 17:13:00,874 9th St, San Francisco,CA,94016 +273688,USB-C Charging Cable,1,11.95,2019-10-31 13:13:00,656 Elm St, Seattle,WA,98101 +273689,AA Batteries (4-pack),1,3.84,2019-10-02 21:08:00,350 West St, Seattle,WA,98101 +273690,27in 4K Gaming Monitor,1,389.99,2019-10-20 10:24:00,644 Maple St, Boston,MA,02215 +273691,Apple Airpods Headphones,1,150.0,2019-10-27 19:35:00,858 Spruce St, Dallas,TX,75001 +273692,Bose SoundSport Headphones,1,99.99,2019-10-27 14:52:00,969 13th St, Dallas,TX,75001 +273693,iPhone,1,700.0,2019-10-17 16:16:00,998 Washington St, Boston,MA,02215 +273693,USB-C Charging Cable,1,11.95,2019-10-17 16:16:00,998 Washington St, Boston,MA,02215 +273694,20in Monitor,1,109.99,2019-10-10 13:36:00,2 Hill St, San Francisco,CA,94016 +273695,Wired Headphones,2,11.99,2019-10-16 11:01:00,76 Dogwood St, Atlanta,GA,30301 +273696,Wired Headphones,1,11.99,2019-10-19 09:56:00,794 14th St, New York City,NY,10001 +273697,Bose SoundSport Headphones,1,99.99,2019-10-08 17:59:00,295 Highland St, Boston,MA,02215 +273698,AA Batteries (4-pack),1,3.84,2019-10-11 17:54:00,488 Ridge St, Boston,MA,02215 +273699,Lightning Charging Cable,1,14.95,2019-10-26 16:50:00,412 Sunset St, New York City,NY,10001 +273700,27in FHD Monitor,1,149.99,2019-10-16 23:09:00,352 5th St, San Francisco,CA,94016 +273701,Lightning Charging Cable,1,14.95,2019-10-17 20:44:00,56 South St, Dallas,TX,75001 +273702,USB-C Charging Cable,1,11.95,2019-10-28 11:55:00,782 Highland St, San Francisco,CA,94016 +273703,AA Batteries (4-pack),2,3.84,2019-10-19 08:35:00,997 2nd St, Seattle,WA,98101 +273704,LG Washing Machine,1,600.0,2019-10-12 21:18:00,998 11th St, Boston,MA,02215 +273705,Flatscreen TV,1,300.0,2019-10-30 20:44:00,944 11th St, San Francisco,CA,94016 +273706,AAA Batteries (4-pack),1,2.99,2019-10-09 12:38:00,848 West St, Seattle,WA,98101 +273707,AAA Batteries (4-pack),2,2.99,2019-10-04 09:17:00,756 Ridge St, Los Angeles,CA,90001 +273708,USB-C Charging Cable,1,11.95,2019-10-17 05:18:00,996 1st St, Atlanta,GA,30301 +273709,USB-C Charging Cable,1,11.95,2019-10-01 13:27:00,839 Walnut St, Boston,MA,02215 +273710,AAA Batteries (4-pack),1,2.99,2019-10-19 18:04:00,619 10th St, Los Angeles,CA,90001 +273711,Apple Airpods Headphones,1,150.0,2019-10-23 08:18:00,72 Adams St, Dallas,TX,75001 +273712,AA Batteries (4-pack),1,3.84,2019-10-30 19:04:00,164 13th St, New York City,NY,10001 +273713,USB-C Charging Cable,1,11.95,2019-10-07 18:48:00,770 10th St, Portland,OR,97035 +273714,27in 4K Gaming Monitor,1,389.99,2019-10-08 04:03:00,549 2nd St, Seattle,WA,98101 +273715,Wired Headphones,1,11.99,2019-10-22 13:01:00,88 Willow St, Los Angeles,CA,90001 +273716,AAA Batteries (4-pack),1,2.99,2019-10-17 23:02:00,449 Sunset St, Austin,TX,73301 +273717,Wired Headphones,1,11.99,2019-10-12 18:45:00,973 Cherry St, Los Angeles,CA,90001 +273718,34in Ultrawide Monitor,1,379.99,2019-10-06 22:27:00,856 Pine St, Austin,TX,73301 +273719,Bose SoundSport Headphones,1,99.99,2019-10-23 12:46:00,490 Jackson St, San Francisco,CA,94016 +273720,27in FHD Monitor,1,149.99,2019-10-29 18:52:00,441 Chestnut St, Dallas,TX,75001 +273721,AA Batteries (4-pack),3,3.84,2019-10-20 11:37:00,819 11th St, New York City,NY,10001 +273722,AAA Batteries (4-pack),1,2.99,2019-10-18 19:49:00,967 North St, Atlanta,GA,30301 +273723,ThinkPad Laptop,1,999.99,2019-10-21 07:09:00,753 5th St, Austin,TX,73301 +273724,Apple Airpods Headphones,1,150.0,2019-10-07 18:12:00,78 1st St, Portland,OR,97035 +273725,AA Batteries (4-pack),1,3.84,2019-10-25 19:45:00,132 North St, San Francisco,CA,94016 +273726,Apple Airpods Headphones,1,150.0,2019-10-07 20:15:00,328 Highland St, New York City,NY,10001 +273727,USB-C Charging Cable,1,11.95,2019-10-25 23:49:00,484 River St, San Francisco,CA,94016 +273728,AAA Batteries (4-pack),1,2.99,2019-10-04 13:42:00,106 5th St, San Francisco,CA,94016 +273729,Google Phone,1,600.0,2019-10-06 12:20:00,578 9th St, Seattle,WA,98101 +273730,USB-C Charging Cable,2,11.95,2019-10-29 19:58:00,376 West St, Boston,MA,02215 +273731,AA Batteries (4-pack),1,3.84,2019-10-11 10:01:00,441 14th St, Seattle,WA,98101 +273732,Apple Airpods Headphones,1,150.0,2019-10-09 12:18:00,417 Washington St, New York City,NY,10001 +273733,27in FHD Monitor,1,149.99,2019-10-17 10:40:00,443 Wilson St, New York City,NY,10001 +273734,AA Batteries (4-pack),1,3.84,2019-10-03 19:40:00,137 4th St, San Francisco,CA,94016 +273735,Apple Airpods Headphones,1,150.0,2019-10-15 23:33:00,139 Wilson St, Portland,OR,97035 +273736,Flatscreen TV,1,300.0,2019-10-04 08:05:00,758 13th St, Seattle,WA,98101 +273737,AA Batteries (4-pack),1,3.84,2019-10-20 19:53:00,32 10th St, New York City,NY,10001 +273738,34in Ultrawide Monitor,1,379.99,2019-10-31 11:43:00,400 River St, Boston,MA,02215 +273739,Macbook Pro Laptop,1,1700.0,2019-10-19 15:07:00,948 Cedar St, Atlanta,GA,30301 +273740,USB-C Charging Cable,1,11.95,2019-10-04 20:23:00,40 Church St, Boston,MA,02215 +273741,Bose SoundSport Headphones,1,99.99,2019-10-16 22:37:00,663 Elm St, Boston,MA,02215 +273742,Flatscreen TV,1,300.0,2019-10-15 08:58:00,323 11th St, Boston,MA,02215 +273743,Lightning Charging Cable,1,14.95,2019-10-16 12:19:00,53 11th St, Los Angeles,CA,90001 +273744,USB-C Charging Cable,1,11.95,2019-10-03 16:25:00,270 Park St, Los Angeles,CA,90001 +273745,Apple Airpods Headphones,1,150.0,2019-10-03 14:11:00,741 6th St, Seattle,WA,98101 +273746,Wired Headphones,1,11.99,2019-10-11 01:50:00,852 Ridge St, Austin,TX,73301 +273747,Macbook Pro Laptop,1,1700.0,2019-10-22 08:50:00,934 10th St, Dallas,TX,75001 +273748,Lightning Charging Cable,1,14.95,2019-10-01 15:18:00,29 Highland St, San Francisco,CA,94016 +273749,AAA Batteries (4-pack),1,2.99,2019-10-01 13:29:00,28 Highland St, Los Angeles,CA,90001 +273750,Apple Airpods Headphones,1,150.0,2019-10-07 14:07:00,198 1st St, Los Angeles,CA,90001 +273751,iPhone,1,700.0,2019-11-01 00:47:00,678 4th St, San Francisco,CA,94016 +273751,Apple Airpods Headphones,1,150.0,2019-11-01 00:47:00,678 4th St, San Francisco,CA,94016 +273751,Wired Headphones,1,11.99,2019-11-01 00:47:00,678 4th St, San Francisco,CA,94016 +273752,Macbook Pro Laptop,1,1700.0,2019-10-13 20:04:00,690 8th St, New York City,NY,10001 +273753,Lightning Charging Cable,1,14.95,2019-10-19 15:19:00,503 South St, Austin,TX,73301 +273754,AAA Batteries (4-pack),1,2.99,2019-10-01 17:41:00,150 Hill St, Los Angeles,CA,90001 +273755,Wired Headphones,1,11.99,2019-10-17 13:12:00,201 Highland St, San Francisco,CA,94016 +273756,27in FHD Monitor,1,149.99,2019-10-11 23:30:00,341 Cherry St, Atlanta,GA,30301 +273757,34in Ultrawide Monitor,1,379.99,2019-10-24 22:53:00,220 Spruce St, New York City,NY,10001 +273758,USB-C Charging Cable,1,11.95,2019-10-03 09:40:00,926 5th St, San Francisco,CA,94016 +273759,Macbook Pro Laptop,1,1700.0,2019-10-15 19:57:00,350 6th St, Dallas,TX,75001 +273760,27in FHD Monitor,1,149.99,2019-10-13 12:53:00,844 9th St, San Francisco,CA,94016 +273761,Bose SoundSport Headphones,1,99.99,2019-10-14 14:13:00,271 12th St, Portland,OR,97035 +273762,Flatscreen TV,1,300.0,2019-10-23 21:10:00,697 Dogwood St, Atlanta,GA,30301 +273763,Google Phone,1,600.0,2019-10-30 10:09:00,37 8th St, Seattle,WA,98101 +273764,AAA Batteries (4-pack),3,2.99,2019-10-14 13:30:00,651 Main St, Austin,TX,73301 +273765,Lightning Charging Cable,1,14.95,2019-10-09 17:34:00,23 Highland St, Austin,TX,73301 +273766,Lightning Charging Cable,1,14.95,2019-10-26 09:50:00,693 5th St, Austin,TX,73301 +273767,USB-C Charging Cable,1,11.95,2019-10-14 19:30:00,889 Willow St, Boston,MA,02215 +273768,Lightning Charging Cable,1,14.95,2019-10-31 20:50:00,510 South St, San Francisco,CA,94016 +273769,USB-C Charging Cable,1,11.95,2019-10-04 01:32:00,415 1st St, New York City,NY,10001 +273770,Lightning Charging Cable,1,14.95,2019-10-21 17:56:00,692 Chestnut St, Los Angeles,CA,90001 +273771,AA Batteries (4-pack),1,3.84,2019-10-04 15:19:00,333 5th St, San Francisco,CA,94016 +273772,Apple Airpods Headphones,1,150.0,2019-10-03 22:36:00,897 Willow St, San Francisco,CA,94016 +273773,Wired Headphones,1,11.99,2019-10-23 09:59:00,198 Lincoln St, San Francisco,CA,94016 +273774,AA Batteries (4-pack),1,3.84,2019-10-06 17:04:00,49 Hill St, San Francisco,CA,94016 +273775,Wired Headphones,1,11.99,2019-10-01 11:14:00,938 Chestnut St, Dallas,TX,75001 +273776,Lightning Charging Cable,1,14.95,2019-10-27 19:30:00,643 13th St, New York City,NY,10001 +273777,Apple Airpods Headphones,1,150.0,2019-10-15 21:15:00,189 Dogwood St, Los Angeles,CA,90001 +273778,AA Batteries (4-pack),1,3.84,2019-10-13 08:40:00,243 Hill St, San Francisco,CA,94016 +273779,34in Ultrawide Monitor,1,379.99,2019-10-22 00:59:00,827 10th St, Los Angeles,CA,90001 +273780,27in FHD Monitor,1,149.99,2019-10-29 18:36:00,777 Jefferson St, New York City,NY,10001 +273781,AAA Batteries (4-pack),1,2.99,2019-10-12 07:53:00,252 6th St, New York City,NY,10001 +273782,Bose SoundSport Headphones,1,99.99,2019-10-02 08:08:00,227 8th St, Seattle,WA,98101 +273783,Wired Headphones,1,11.99,2019-10-23 18:17:00,274 9th St, San Francisco,CA,94016 +273784,Apple Airpods Headphones,1,150.0,2019-10-08 10:00:00,196 Jackson St, New York City,NY,10001 +273785,USB-C Charging Cable,1,11.95,2019-10-03 13:55:00,317 Washington St, Boston,MA,02215 +273786,USB-C Charging Cable,2,11.95,2019-10-15 16:53:00,744 Park St, Seattle,WA,98101 +273787,27in 4K Gaming Monitor,1,389.99,2019-10-11 12:27:00,610 Lake St, San Francisco,CA,94016 +273788,iPhone,1,700.0,2019-10-06 19:38:00,795 Church St, San Francisco,CA,94016 +273789,Bose SoundSport Headphones,1,99.99,2019-10-27 19:57:00,400 Sunset St, Los Angeles,CA,90001 +273790,34in Ultrawide Monitor,1,379.99,2019-10-06 17:36:00,686 Ridge St, San Francisco,CA,94016 +273791,Vareebadd Phone,1,400.0,2019-10-24 19:27:00,141 Jackson St, New York City,NY,10001 +273792,USB-C Charging Cable,1,11.95,2019-10-19 00:49:00,461 Chestnut St, San Francisco,CA,94016 +273793,Lightning Charging Cable,1,14.95,2019-10-19 10:39:00,405 Forest St, Austin,TX,73301 +273794,LG Washing Machine,1,600.0,2019-10-02 10:05:00,473 Walnut St, Seattle,WA,98101 +273795,USB-C Charging Cable,2,11.95,2019-10-31 20:16:00,448 Chestnut St, Portland,OR,97035 +273796,Apple Airpods Headphones,1,150.0,2019-10-05 00:54:00,455 Cherry St, Los Angeles,CA,90001 +273797,Apple Airpods Headphones,1,150.0,2019-10-10 16:28:00,985 Park St, Portland,OR,97035 +273798,AAA Batteries (4-pack),1,2.99,2019-10-20 13:57:00,44 4th St, Portland,OR,97035 +273799,Wired Headphones,1,11.99,2019-10-23 18:48:00,323 Jackson St, Los Angeles,CA,90001 +273800,Wired Headphones,1,11.99,2019-10-13 17:52:00,567 Hickory St, San Francisco,CA,94016 +273801,27in FHD Monitor,1,149.99,2019-10-09 21:27:00,478 Meadow St, Los Angeles,CA,90001 +273801,Lightning Charging Cable,1,14.95,2019-10-09 21:27:00,478 Meadow St, Los Angeles,CA,90001 +273802,Wired Headphones,1,11.99,2019-10-03 19:46:00,676 Dogwood St, Atlanta,GA,30301 +273803,AAA Batteries (4-pack),1,2.99,2019-10-28 15:10:00,729 1st St, San Francisco,CA,94016 +273804,Wired Headphones,1,11.99,2019-10-04 17:05:00,765 Lincoln St, Los Angeles,CA,90001 +273805,Apple Airpods Headphones,1,150.0,2019-10-13 17:48:00,558 Wilson St, New York City,NY,10001 +273806,Lightning Charging Cable,1,14.95,2019-10-15 13:35:00,358 Johnson St, New York City,NY,10001 +273807,Apple Airpods Headphones,1,150.0,2019-10-25 13:05:00,144 Washington St, San Francisco,CA,94016 +273808,ThinkPad Laptop,1,999.99,2019-10-12 19:08:00,788 4th St, Portland,OR,97035 +273809,AAA Batteries (4-pack),1,2.99,2019-10-08 11:43:00,734 Elm St, Los Angeles,CA,90001 +273810,USB-C Charging Cable,1,11.95,2019-10-17 23:38:00,599 13th St, Atlanta,GA,30301 +273811,AA Batteries (4-pack),1,3.84,2019-10-31 15:35:00,74 Hickory St, Boston,MA,02215 +273812,Wired Headphones,1,11.99,2019-10-19 17:47:00,983 Ridge St, Portland,ME,04101 +273813,Vareebadd Phone,1,400.0,2019-10-24 13:07:00,630 Chestnut St, New York City,NY,10001 +273813,USB-C Charging Cable,1,11.95,2019-10-24 13:07:00,630 Chestnut St, New York City,NY,10001 +273814,AA Batteries (4-pack),1,3.84,2019-10-06 18:54:00,937 Church St, Dallas,TX,75001 +273815,Wired Headphones,3,11.99,2019-10-25 12:49:00,432 10th St, Los Angeles,CA,90001 +273816,AA Batteries (4-pack),2,3.84,2019-10-23 05:37:00,59 Elm St, Portland,ME,04101 +273817,USB-C Charging Cable,1,11.95,2019-10-17 06:43:00,956 Ridge St, Dallas,TX,75001 +273818,AA Batteries (4-pack),2,3.84,2019-10-28 00:45:00,442 10th St, San Francisco,CA,94016 +273819,AAA Batteries (4-pack),3,2.99,2019-10-12 11:10:00,927 Jackson St, San Francisco,CA,94016 +273820,27in FHD Monitor,1,149.99,2019-10-20 13:27:00,272 Willow St, Dallas,TX,75001 +273821,Lightning Charging Cable,1,14.95,2019-10-27 19:39:00,181 Washington St, San Francisco,CA,94016 +273822,Lightning Charging Cable,1,14.95,2019-10-26 11:04:00,733 Adams St, San Francisco,CA,94016 +273823,Macbook Pro Laptop,1,1700.0,2019-10-13 10:18:00,59 7th St, Los Angeles,CA,90001 +273824,Lightning Charging Cable,1,14.95,2019-10-14 16:50:00,635 10th St, New York City,NY,10001 +273825,20in Monitor,1,109.99,2019-10-31 06:35:00,770 Washington St, San Francisco,CA,94016 +273826,Flatscreen TV,1,300.0,2019-10-03 14:15:00,459 Ridge St, New York City,NY,10001 +273827,Lightning Charging Cable,1,14.95,2019-10-28 17:03:00,575 Church St, Seattle,WA,98101 +273828,AAA Batteries (4-pack),1,2.99,2019-10-08 22:41:00,972 Hickory St, San Francisco,CA,94016 +273829,27in FHD Monitor,1,149.99,2019-10-27 12:41:00,113 Ridge St, Seattle,WA,98101 +273830,Lightning Charging Cable,1,14.95,2019-10-14 08:46:00,245 2nd St, New York City,NY,10001 +273831,USB-C Charging Cable,1,11.95,2019-10-10 14:43:00,460 Dogwood St, Atlanta,GA,30301 +273832,Google Phone,1,600.0,2019-10-13 23:09:00,14 Willow St, Seattle,WA,98101 +273832,USB-C Charging Cable,1,11.95,2019-10-13 23:09:00,14 Willow St, Seattle,WA,98101 +273832,Wired Headphones,1,11.99,2019-10-13 23:09:00,14 Willow St, Seattle,WA,98101 +273833,20in Monitor,1,109.99,2019-10-07 18:41:00,785 Adams St, Austin,TX,73301 +273834,27in 4K Gaming Monitor,1,389.99,2019-10-03 08:32:00,480 Forest St, Atlanta,GA,30301 +273835,iPhone,1,700.0,2019-10-08 11:20:00,905 1st St, Los Angeles,CA,90001 +273836,iPhone,1,700.0,2019-10-24 10:28:00,160 Center St, San Francisco,CA,94016 +273836,Lightning Charging Cable,1,14.95,2019-10-24 10:28:00,160 Center St, San Francisco,CA,94016 +273837,AAA Batteries (4-pack),1,2.99,2019-10-16 17:13:00,443 Adams St, Seattle,WA,98101 +273838,AA Batteries (4-pack),1,3.84,2019-10-21 12:09:00,884 7th St, Dallas,TX,75001 +273839,Wired Headphones,1,11.99,2019-10-15 17:10:00,676 Cedar St, San Francisco,CA,94016 +273840,ThinkPad Laptop,1,999.99,2019-10-14 19:49:00,872 14th St, San Francisco,CA,94016 +273841,Apple Airpods Headphones,1,150.0,2019-10-12 19:37:00,331 Highland St, New York City,NY,10001 +273842,Apple Airpods Headphones,1,150.0,2019-10-13 07:38:00,647 6th St, Los Angeles,CA,90001 +273843,iPhone,1,700.0,2019-10-16 10:14:00,19 Spruce St, Seattle,WA,98101 +273844,Apple Airpods Headphones,1,150.0,2019-10-14 08:40:00,402 Jefferson St, Seattle,WA,98101 +273845,Flatscreen TV,1,300.0,2019-10-25 13:01:00,555 Hill St, Boston,MA,02215 +273846,27in FHD Monitor,1,149.99,2019-10-02 09:34:00,138 Forest St, San Francisco,CA,94016 +273847,AA Batteries (4-pack),2,3.84,2019-10-30 16:35:00,943 5th St, Boston,MA,02215 +273848,34in Ultrawide Monitor,1,379.99,2019-10-26 13:26:00,948 6th St, San Francisco,CA,94016 +273849,Wired Headphones,1,11.99,2019-10-22 15:12:00,713 Chestnut St, Dallas,TX,75001 +273850,Wired Headphones,1,11.99,2019-10-22 19:44:00,364 Cherry St, Atlanta,GA,30301 +273851,AAA Batteries (4-pack),3,2.99,2019-10-31 10:07:00,803 12th St, Atlanta,GA,30301 +273852,Wired Headphones,1,11.99,2019-10-01 10:25:00,236 Chestnut St, Boston,MA,02215 +273853,Wired Headphones,1,11.99,2019-10-02 19:28:00,832 Lake St, Austin,TX,73301 +273854,USB-C Charging Cable,2,11.95,2019-10-10 23:24:00,978 Lake St, Portland,ME,04101 +273855,Wired Headphones,1,11.99,2019-10-26 12:32:00,995 Adams St, Portland,ME,04101 +273856,Bose SoundSport Headphones,1,99.99,2019-10-28 09:49:00,324 1st St, Los Angeles,CA,90001 +273857,Lightning Charging Cable,1,14.95,2019-10-21 19:07:00,227 Jackson St, Seattle,WA,98101 +273858,USB-C Charging Cable,1,11.95,2019-10-30 20:52:00,509 Ridge St, Seattle,WA,98101 +273859,27in FHD Monitor,1,149.99,2019-10-06 21:16:00,20 Sunset St, Boston,MA,02215 +273860,AA Batteries (4-pack),1,3.84,2019-10-31 11:27:00,245 Forest St, New York City,NY,10001 +273861,Apple Airpods Headphones,1,150.0,2019-10-04 11:05:00,565 Hill St, Los Angeles,CA,90001 +273862,Wired Headphones,1,11.99,2019-10-21 20:26:00,349 Hickory St, New York City,NY,10001 +273862,34in Ultrawide Monitor,1,379.99,2019-10-21 20:26:00,349 Hickory St, New York City,NY,10001 +273863,27in FHD Monitor,1,149.99,2019-10-05 13:14:00,841 Cedar St, New York City,NY,10001 +273864,Apple Airpods Headphones,1,150.0,2019-10-03 17:44:00,720 Center St, New York City,NY,10001 +273865,USB-C Charging Cable,1,11.95,2019-10-28 11:04:00,967 Elm St, Seattle,WA,98101 +273866,Wired Headphones,1,11.99,2019-10-14 18:43:00,420 6th St, Los Angeles,CA,90001 +273867,Wired Headphones,1,11.99,2019-10-07 18:53:00,72 9th St, Los Angeles,CA,90001 +273868,20in Monitor,1,109.99,2019-10-20 10:56:00,568 6th St, New York City,NY,10001 +273869,AA Batteries (4-pack),1,3.84,2019-10-18 10:02:00,522 North St, San Francisco,CA,94016 +273869,Wired Headphones,1,11.99,2019-10-18 10:02:00,522 North St, San Francisco,CA,94016 +273870,Wired Headphones,1,11.99,2019-10-13 16:27:00,293 Park St, Los Angeles,CA,90001 +273871,Apple Airpods Headphones,1,150.0,2019-10-02 02:47:00,76 South St, San Francisco,CA,94016 +273872,Apple Airpods Headphones,1,150.0,2019-10-28 19:32:00,234 Main St, Los Angeles,CA,90001 +273873,AA Batteries (4-pack),1,3.84,2019-10-13 08:34:00,77 Lakeview St, Los Angeles,CA,90001 +273874,Apple Airpods Headphones,1,150.0,2019-10-17 10:18:00,294 Cherry St, New York City,NY,10001 +273875,Vareebadd Phone,1,400.0,2019-10-28 13:55:00,167 11th St, Austin,TX,73301 +273876,Wired Headphones,1,11.99,2019-10-14 02:36:00,949 Church St, New York City,NY,10001 +273877,AAA Batteries (4-pack),1,2.99,2019-10-27 17:09:00,372 Lincoln St, Los Angeles,CA,90001 +273878,Apple Airpods Headphones,1,150.0,2019-10-07 16:06:00,914 Center St, San Francisco,CA,94016 +273879,Lightning Charging Cable,1,14.95,2019-10-26 13:59:00,761 Wilson St, Los Angeles,CA,90001 +273880,27in 4K Gaming Monitor,1,389.99,2019-10-19 07:12:00,297 Lake St, Los Angeles,CA,90001 +273881,Bose SoundSport Headphones,1,99.99,2019-10-27 21:52:00,437 Church St, New York City,NY,10001 +273882,USB-C Charging Cable,1,11.95,2019-10-09 19:39:00,514 1st St, Dallas,TX,75001 +273883,Wired Headphones,1,11.99,2019-10-24 16:00:00,803 14th St, San Francisco,CA,94016 +273884,USB-C Charging Cable,2,11.95,2019-10-14 17:36:00,567 Maple St, San Francisco,CA,94016 +273885,USB-C Charging Cable,1,11.95,2019-10-14 21:38:00,240 Lincoln St, Austin,TX,73301 +273886,27in FHD Monitor,1,149.99,2019-10-20 22:16:00,786 Johnson St, Seattle,WA,98101 +273886,Macbook Pro Laptop,1,1700.0,2019-10-20 22:16:00,786 Johnson St, Seattle,WA,98101 +273887,AAA Batteries (4-pack),3,2.99,2019-10-04 18:37:00,703 Lincoln St, Portland,OR,97035 +273888,Bose SoundSport Headphones,1,99.99,2019-10-04 18:22:00,922 South St, Dallas,TX,75001 +273889,27in 4K Gaming Monitor,1,389.99,2019-10-17 10:27:00,349 Spruce St, Austin,TX,73301 +273890,Bose SoundSport Headphones,1,99.99,2019-10-06 15:51:00,456 Elm St, Los Angeles,CA,90001 +273891,AA Batteries (4-pack),1,3.84,2019-10-29 17:56:00,394 Adams St, San Francisco,CA,94016 +273892,Apple Airpods Headphones,1,150.0,2019-10-01 14:15:00,456 Cherry St, Boston,MA,02215 +273893,AAA Batteries (4-pack),1,2.99,2019-10-14 20:32:00,751 10th St, San Francisco,CA,94016 +273894,AAA Batteries (4-pack),3,2.99,2019-10-15 18:14:00,114 Hickory St, San Francisco,CA,94016 +273895,27in 4K Gaming Monitor,1,389.99,2019-10-20 14:29:00,127 Willow St, Atlanta,GA,30301 +273896,Macbook Pro Laptop,1,1700.0,2019-10-12 19:45:00,773 Main St, San Francisco,CA,94016 +273897,Macbook Pro Laptop,1,1700.0,2019-10-19 14:09:00,795 1st St, Atlanta,GA,30301 +273898,Bose SoundSport Headphones,1,99.99,2019-10-25 13:34:00,573 South St, New York City,NY,10001 +273899,Wired Headphones,1,11.99,2019-10-29 09:26:00,738 Wilson St, Los Angeles,CA,90001 +273900,AA Batteries (4-pack),1,3.84,2019-10-05 09:27:00,899 Dogwood St, Seattle,WA,98101 +273901,Wired Headphones,1,11.99,2019-10-30 18:01:00,849 River St, Boston,MA,02215 +273902,USB-C Charging Cable,1,11.95,2019-10-28 20:55:00,838 Spruce St, Dallas,TX,75001 +273903,AAA Batteries (4-pack),1,2.99,2019-10-27 22:55:00,987 Maple St, San Francisco,CA,94016 +273904,Bose SoundSport Headphones,1,99.99,2019-10-05 21:54:00,776 1st St, Boston,MA,02215 +273905,Macbook Pro Laptop,1,1700.0,2019-10-14 13:08:00,614 Spruce St, San Francisco,CA,94016 +273906,Lightning Charging Cable,1,14.95,2019-10-14 14:51:00,473 6th St, New York City,NY,10001 +273907,AAA Batteries (4-pack),1,2.99,2019-10-17 09:37:00,211 12th St, New York City,NY,10001 +273908,Lightning Charging Cable,1,14.95,2019-10-09 10:50:00,914 4th St, Portland,OR,97035 +273909,AAA Batteries (4-pack),1,2.99,2019-10-19 19:40:00,314 8th St, San Francisco,CA,94016 +273910,Wired Headphones,1,11.99,2019-10-18 21:44:00,678 West St, Los Angeles,CA,90001 +273911,Vareebadd Phone,1,400.0,2019-10-06 05:19:00,886 11th St, San Francisco,CA,94016 +273912,Lightning Charging Cable,1,14.95,2019-10-20 17:32:00,815 Ridge St, San Francisco,CA,94016 +273913,USB-C Charging Cable,1,11.95,2019-10-19 22:36:00,440 6th St, Atlanta,GA,30301 +273914,Bose SoundSport Headphones,1,99.99,2019-10-27 19:18:00,760 Hill St, San Francisco,CA,94016 +273915,Google Phone,1,600.0,2019-10-30 11:59:00,693 Main St, New York City,NY,10001 +273916,iPhone,1,700.0,2019-10-07 13:20:00,91 Walnut St, Los Angeles,CA,90001 +273917,27in 4K Gaming Monitor,1,389.99,2019-10-01 13:28:00,556 Forest St, San Francisco,CA,94016 +273918,USB-C Charging Cable,1,11.95,2019-10-11 20:59:00,917 Church St, New York City,NY,10001 +273919,Bose SoundSport Headphones,1,99.99,2019-10-22 23:29:00,276 Cherry St, San Francisco,CA,94016 +273920,Bose SoundSport Headphones,1,99.99,2019-10-22 12:28:00,520 Main St, San Francisco,CA,94016 +273921,USB-C Charging Cable,1,11.95,2019-10-25 12:29:00,623 Main St, Austin,TX,73301 +273922,USB-C Charging Cable,1,11.95,2019-10-22 10:43:00,389 7th St, Seattle,WA,98101 +273923,ThinkPad Laptop,1,999.99,2019-10-10 16:59:00,59 Walnut St, Portland,OR,97035 +273924,Lightning Charging Cable,1,14.95,2019-10-20 02:38:00,675 Main St, Seattle,WA,98101 +273925,AAA Batteries (4-pack),1,2.99,2019-10-02 10:17:00,925 Elm St, Atlanta,GA,30301 +273926,Vareebadd Phone,1,400.0,2019-10-28 15:45:00,848 11th St, Seattle,WA,98101 +273926,Wired Headphones,1,11.99,2019-10-28 15:45:00,848 11th St, Seattle,WA,98101 +273927,AA Batteries (4-pack),1,3.84,2019-10-26 10:30:00,255 Jefferson St, Portland,OR,97035 +273928,Wired Headphones,1,11.99,2019-10-23 12:45:00,385 11th St, San Francisco,CA,94016 +273929,Wired Headphones,1,11.99,2019-10-29 09:51:00,358 Lake St, Dallas,TX,75001 +273930,Apple Airpods Headphones,1,150.0,2019-10-01 08:31:00,191 Chestnut St, Boston,MA,02215 +273931,34in Ultrawide Monitor,1,379.99,2019-10-25 12:04:00,83 Washington St, Portland,OR,97035 +273932,USB-C Charging Cable,1,11.95,2019-10-26 14:57:00,715 6th St, Los Angeles,CA,90001 +273933,AAA Batteries (4-pack),1,2.99,2019-10-17 17:03:00,921 9th St, San Francisco,CA,94016 +273934,27in FHD Monitor,1,149.99,2019-10-29 12:43:00,235 West St, San Francisco,CA,94016 +273935,Apple Airpods Headphones,1,150.0,2019-10-01 22:52:00,988 Pine St, Seattle,WA,98101 +273936,Wired Headphones,1,11.99,2019-10-30 19:22:00,54 Lakeview St, New York City,NY,10001 +273937,iPhone,1,700.0,2019-10-15 11:12:00,428 Madison St, Atlanta,GA,30301 +273938,Macbook Pro Laptop,1,1700.0,2019-10-11 11:05:00,958 Wilson St, New York City,NY,10001 +273939,27in FHD Monitor,1,149.99,2019-10-05 22:02:00,660 Cedar St, Boston,MA,02215 +273940,34in Ultrawide Monitor,1,379.99,2019-10-18 16:39:00,937 Maple St, Boston,MA,02215 +273941,USB-C Charging Cable,1,11.95,2019-10-27 07:24:00,574 5th St, Atlanta,GA,30301 +273942,27in 4K Gaming Monitor,1,389.99,2019-10-07 17:03:00,344 Jackson St, Dallas,TX,75001 +273943,USB-C Charging Cable,1,11.95,2019-10-12 00:45:00,478 Sunset St, Seattle,WA,98101 +273944,20in Monitor,1,109.99,2019-10-21 22:19:00,698 2nd St, Portland,OR,97035 +273945,Wired Headphones,1,11.99,2019-10-09 22:52:00,773 Maple St, Los Angeles,CA,90001 +273946,Google Phone,1,600.0,2019-10-07 16:18:00,232 Madison St, Seattle,WA,98101 +273946,Wired Headphones,1,11.99,2019-10-07 16:18:00,232 Madison St, Seattle,WA,98101 +273947,27in FHD Monitor,1,149.99,2019-10-19 11:47:00,290 Lake St, Los Angeles,CA,90001 +273948,Apple Airpods Headphones,1,150.0,2019-10-22 09:06:00,196 6th St, Atlanta,GA,30301 +273949,Wired Headphones,1,11.99,2019-10-29 16:48:00,24 Lincoln St, San Francisco,CA,94016 +273950,Lightning Charging Cable,1,14.95,2019-10-31 17:08:00,619 Center St, Dallas,TX,75001 +273951,Bose SoundSport Headphones,1,99.99,2019-10-30 11:23:00,731 West St, Seattle,WA,98101 +273952,AAA Batteries (4-pack),1,2.99,2019-10-23 07:57:00,303 Cherry St, New York City,NY,10001 +273953,USB-C Charging Cable,1,11.95,2019-10-20 21:25:00,999 8th St, Atlanta,GA,30301 +273954,AA Batteries (4-pack),1,3.84,2019-10-15 11:09:00,265 Highland St, Los Angeles,CA,90001 +273955,20in Monitor,1,109.99,2019-10-20 19:44:00,213 14th St, Boston,MA,02215 +273956,AAA Batteries (4-pack),1,2.99,2019-10-25 21:46:00,835 Elm St, Dallas,TX,75001 +273957,USB-C Charging Cable,1,11.95,2019-10-29 22:46:00,898 Cherry St, New York City,NY,10001 +273958,USB-C Charging Cable,1,11.95,2019-10-08 20:02:00,132 Willow St, New York City,NY,10001 +273959,Lightning Charging Cable,1,14.95,2019-10-14 11:45:00,330 West St, New York City,NY,10001 +273959,AA Batteries (4-pack),1,3.84,2019-10-14 11:45:00,330 West St, New York City,NY,10001 +273960,ThinkPad Laptop,1,999.99,2019-10-24 22:51:00,193 Dogwood St, Seattle,WA,98101 +273961,USB-C Charging Cable,1,11.95,2019-10-18 16:07:00,821 Elm St, Los Angeles,CA,90001 +273961,Lightning Charging Cable,1,14.95,2019-10-18 16:07:00,821 Elm St, Los Angeles,CA,90001 +273962,20in Monitor,1,109.99,2019-10-01 20:11:00,970 Willow St, San Francisco,CA,94016 +273963,Macbook Pro Laptop,1,1700.0,2019-10-17 20:48:00,198 Main St, Los Angeles,CA,90001 +273964,Lightning Charging Cable,1,14.95,2019-10-04 12:35:00,574 West St, San Francisco,CA,94016 +273965,Macbook Pro Laptop,1,1700.0,2019-10-18 14:28:00,470 Adams St, Austin,TX,73301 +273966,Lightning Charging Cable,1,14.95,2019-10-23 21:50:00,6 2nd St, Los Angeles,CA,90001 +273967,Wired Headphones,1,11.99,2019-10-31 16:52:00,37 Wilson St, Portland,OR,97035 +273968,Macbook Pro Laptop,1,1700.0,2019-10-28 21:05:00,380 Cherry St, Dallas,TX,75001 +273969,34in Ultrawide Monitor,1,379.99,2019-10-05 22:18:00,55 Lincoln St, Los Angeles,CA,90001 +273970,USB-C Charging Cable,1,11.95,2019-10-16 20:29:00,234 Center St, San Francisco,CA,94016 +273970,Apple Airpods Headphones,1,150.0,2019-10-16 20:29:00,234 Center St, San Francisco,CA,94016 +273971,USB-C Charging Cable,1,11.95,2019-10-17 22:55:00,716 6th St, Los Angeles,CA,90001 +273972,27in 4K Gaming Monitor,1,389.99,2019-10-03 20:43:00,180 Highland St, Atlanta,GA,30301 +273973,Lightning Charging Cable,1,14.95,2019-10-25 16:49:00,189 River St, Dallas,TX,75001 +273974,Lightning Charging Cable,1,14.95,2019-10-09 10:36:00,956 Chestnut St, Atlanta,GA,30301 +273975,27in FHD Monitor,1,149.99,2019-10-13 15:18:00,449 Willow St, San Francisco,CA,94016 +273976,USB-C Charging Cable,1,11.95,2019-10-23 12:40:00,903 Meadow St, New York City,NY,10001 +273977,Lightning Charging Cable,1,14.95,2019-10-28 21:40:00,810 7th St, Seattle,WA,98101 +273978,20in Monitor,1,109.99,2019-10-26 09:47:00,132 Forest St, Los Angeles,CA,90001 +273979,Wired Headphones,1,11.99,2019-10-10 10:18:00,332 Park St, Seattle,WA,98101 +273980,iPhone,1,700.0,2019-10-17 06:26:00,738 Cherry St, Portland,ME,04101 +273980,Lightning Charging Cable,1,14.95,2019-10-17 06:26:00,738 Cherry St, Portland,ME,04101 +273981,USB-C Charging Cable,1,11.95,2019-10-05 12:10:00,947 Lake St, Boston,MA,02215 +273982,AA Batteries (4-pack),2,3.84,2019-10-25 03:39:00,266 South St, Seattle,WA,98101 +273983,iPhone,1,700.0,2019-10-04 06:54:00,208 Pine St, Portland,OR,97035 +273984,34in Ultrawide Monitor,1,379.99,2019-10-14 16:28:00,314 Lincoln St, New York City,NY,10001 +273985,Wired Headphones,2,11.99,2019-10-04 14:15:00,463 5th St, Atlanta,GA,30301 +273986,AAA Batteries (4-pack),2,2.99,2019-10-23 19:12:00,844 Dogwood St, Seattle,WA,98101 +273987,USB-C Charging Cable,1,11.95,2019-10-24 20:15:00,675 River St, Boston,MA,02215 +273988,Wired Headphones,1,11.99,2019-10-15 00:46:00,631 Maple St, Seattle,WA,98101 +273989,27in 4K Gaming Monitor,1,389.99,2019-10-11 23:03:00,617 5th St, Seattle,WA,98101 +273990,AA Batteries (4-pack),1,3.84,2019-10-17 19:51:00,100 Pine St, Los Angeles,CA,90001 +273991,AA Batteries (4-pack),2,3.84,2019-10-08 14:46:00,936 9th St, Austin,TX,73301 +273992,Wired Headphones,1,11.99,2019-10-12 20:33:00,479 14th St, San Francisco,CA,94016 +273993,Apple Airpods Headphones,1,150.0,2019-10-16 18:22:00,788 South St, Los Angeles,CA,90001 +273994,AAA Batteries (4-pack),1,2.99,2019-10-06 10:55:00,489 River St, Boston,MA,02215 +273995,Apple Airpods Headphones,1,150.0,2019-10-27 09:21:00,474 Spruce St, Dallas,TX,75001 +273996,20in Monitor,1,109.99,2019-10-23 09:48:00,355 North St, New York City,NY,10001 +273997,Wired Headphones,1,11.99,2019-10-10 21:44:00,261 Pine St, Los Angeles,CA,90001 +273998,Bose SoundSport Headphones,1,99.99,2019-10-14 00:34:00,759 6th St, Portland,OR,97035 +273999,Apple Airpods Headphones,1,150.0,2019-10-01 22:06:00,248 Spruce St, Seattle,WA,98101 +274000,Macbook Pro Laptop,1,1700.0,2019-10-12 14:56:00,671 Lakeview St, San Francisco,CA,94016 +274001,AAA Batteries (4-pack),1,2.99,2019-10-11 16:52:00,8 Forest St, New York City,NY,10001 +274002,Apple Airpods Headphones,1,150.0,2019-10-15 10:42:00,323 Cherry St, New York City,NY,10001 +274003,20in Monitor,1,109.99,2019-10-26 19:47:00,337 2nd St, Dallas,TX,75001 +274004,Wired Headphones,2,11.99,2019-10-10 21:37:00,277 1st St, Seattle,WA,98101 +274005,Apple Airpods Headphones,1,150.0,2019-10-22 10:48:00,215 10th St, Los Angeles,CA,90001 +274006,Lightning Charging Cable,1,14.95,2019-10-17 01:59:00,89 9th St, Dallas,TX,75001 +274007,USB-C Charging Cable,1,11.95,2019-10-04 00:04:00,231 9th St, Austin,TX,73301 +274008,iPhone,1,700.0,2019-10-21 16:27:00,87 Meadow St, Dallas,TX,75001 +274008,Lightning Charging Cable,1,14.95,2019-10-21 16:27:00,87 Meadow St, Dallas,TX,75001 +274009,Apple Airpods Headphones,1,150.0,2019-10-28 11:41:00,615 Dogwood St, Boston,MA,02215 +274010,Macbook Pro Laptop,1,1700.0,2019-10-15 19:25:00,85 8th St, New York City,NY,10001 +274011,Lightning Charging Cable,1,14.95,2019-10-26 10:02:00,722 2nd St, Los Angeles,CA,90001 +274012,Google Phone,1,600.0,2019-10-28 12:32:00,178 Forest St, San Francisco,CA,94016 +274012,USB-C Charging Cable,1,11.95,2019-10-28 12:32:00,178 Forest St, San Francisco,CA,94016 +274013,Apple Airpods Headphones,1,150.0,2019-10-16 09:33:00,454 North St, Los Angeles,CA,90001 +274014,USB-C Charging Cable,2,11.95,2019-10-19 10:52:00,479 Park St, Austin,TX,73301 +274015,27in 4K Gaming Monitor,1,389.99,2019-10-12 15:02:00,746 Center St, San Francisco,CA,94016 +274016,34in Ultrawide Monitor,1,379.99,2019-10-10 21:13:00,315 Highland St, San Francisco,CA,94016 +274017,ThinkPad Laptop,1,999.99,2019-10-14 19:28:00,451 6th St, San Francisco,CA,94016 +274018,USB-C Charging Cable,1,11.95,2019-10-06 22:14:00,690 Main St, Seattle,WA,98101 +274019,Wired Headphones,1,11.99,2019-10-15 16:36:00,532 Highland St, New York City,NY,10001 +274020,LG Washing Machine,1,600.0,2019-10-08 07:56:00,884 Jackson St, Seattle,WA,98101 +274021,Flatscreen TV,1,300.0,2019-10-22 18:51:00,338 Hill St, Boston,MA,02215 +274022,Flatscreen TV,1,300.0,2019-10-30 03:10:00,669 7th St, Seattle,WA,98101 +274023,USB-C Charging Cable,1,11.95,2019-10-24 00:58:00,980 5th St, San Francisco,CA,94016 +274024,Wired Headphones,1,11.99,2019-10-24 10:23:00,701 Cherry St, New York City,NY,10001 +274025,AAA Batteries (4-pack),1,2.99,2019-10-03 13:03:00,8 Forest St, San Francisco,CA,94016 +274026,27in 4K Gaming Monitor,1,389.99,2019-10-01 12:08:00,920 Sunset St, Seattle,WA,98101 +274027,iPhone,1,700.0,2019-10-13 06:14:00,356 Maple St, San Francisco,CA,94016 +274028,Lightning Charging Cable,1,14.95,2019-10-25 23:16:00,908 Elm St, Los Angeles,CA,90001 +274029,USB-C Charging Cable,1,11.95,2019-10-24 20:03:00,34 Ridge St, Seattle,WA,98101 +274030,27in 4K Gaming Monitor,1,389.99,2019-10-21 17:03:00,814 Walnut St, Dallas,TX,75001 +274031,Bose SoundSport Headphones,1,99.99,2019-10-22 13:04:00,120 Forest St, San Francisco,CA,94016 +274032,Lightning Charging Cable,1,14.95,2019-10-05 17:40:00,273 1st St, Atlanta,GA,30301 +274032,Wired Headphones,1,11.99,2019-10-05 17:40:00,273 1st St, Atlanta,GA,30301 +274033,Lightning Charging Cable,1,14.95,2019-10-18 13:50:00,474 Center St, Atlanta,GA,30301 +274034,Lightning Charging Cable,1,14.95,2019-10-24 06:33:00,760 Dogwood St, Los Angeles,CA,90001 +274035,AAA Batteries (4-pack),1,2.99,2019-10-21 12:19:00,106 Jefferson St, Austin,TX,73301 +274036,Wired Headphones,2,11.99,2019-10-25 23:47:00,842 11th St, San Francisco,CA,94016 +274037,Apple Airpods Headphones,1,150.0,2019-10-01 13:36:00,680 Pine St, Dallas,TX,75001 +274038,Google Phone,1,600.0,2019-10-18 12:28:00,417 9th St, Los Angeles,CA,90001 +274039,Lightning Charging Cable,1,14.95,2019-10-16 21:24:00,619 Maple St, Atlanta,GA,30301 +274040,Apple Airpods Headphones,1,150.0,2019-10-31 17:43:00,788 Church St, Los Angeles,CA,90001 +274041,AA Batteries (4-pack),1,3.84,2019-10-02 07:15:00,993 14th St, Boston,MA,02215 +274042,Apple Airpods Headphones,1,150.0,2019-10-06 08:07:00,39 Hill St, Dallas,TX,75001 +274043,Wired Headphones,1,11.99,2019-10-17 10:32:00,906 9th St, Dallas,TX,75001 +274044,iPhone,1,700.0,2019-10-01 09:18:00,746 Maple St, Seattle,WA,98101 +274045,iPhone,1,700.0,2019-10-30 14:38:00,123 Hickory St, Seattle,WA,98101 +274046,Apple Airpods Headphones,1,150.0,2019-10-07 18:02:00,489 Hill St, Boston,MA,02215 +274047,AAA Batteries (4-pack),3,2.99,2019-10-08 10:53:00,818 Pine St, New York City,NY,10001 +274048,Lightning Charging Cable,1,14.95,2019-10-14 19:02:00,504 Walnut St, Seattle,WA,98101 +274049,27in 4K Gaming Monitor,1,389.99,2019-10-14 15:43:00,604 Main St, Portland,ME,04101 +274050,Apple Airpods Headphones,1,150.0,2019-10-21 16:23:00,47 Hill St, Seattle,WA,98101 +274051,USB-C Charging Cable,2,11.95,2019-10-02 12:57:00,40 Main St, Atlanta,GA,30301 +274052,Wired Headphones,1,11.99,2019-10-08 13:35:00,862 River St, Los Angeles,CA,90001 +274053,Macbook Pro Laptop,1,1700.0,2019-10-21 16:13:00,350 Park St, San Francisco,CA,94016 +274054,iPhone,1,700.0,2019-10-22 17:35:00,949 6th St, San Francisco,CA,94016 +274055,AAA Batteries (4-pack),2,2.99,2019-10-19 08:30:00,452 6th St, Seattle,WA,98101 +274056,USB-C Charging Cable,1,11.95,2019-10-08 13:18:00,198 Ridge St, New York City,NY,10001 +274057,AA Batteries (4-pack),3,3.84,2019-10-19 19:21:00,239 Highland St, San Francisco,CA,94016 +274058,USB-C Charging Cable,1,11.95,2019-10-25 21:16:00,5 Elm St, Seattle,WA,98101 +274059,27in 4K Gaming Monitor,1,389.99,2019-10-08 11:41:00,962 8th St, Austin,TX,73301 +274060,Wired Headphones,1,11.99,2019-10-05 13:30:00,934 Center St, Los Angeles,CA,90001 +274061,27in 4K Gaming Monitor,1,389.99,2019-10-14 03:17:00,741 Chestnut St, Portland,OR,97035 +274062,AA Batteries (4-pack),1,3.84,2019-10-25 14:55:00,359 5th St, New York City,NY,10001 +274063,27in 4K Gaming Monitor,1,389.99,2019-10-17 20:22:00,598 South St, San Francisco,CA,94016 +274064,AA Batteries (4-pack),1,3.84,2019-10-11 21:55:00,745 5th St, Portland,OR,97035 +274065,Macbook Pro Laptop,1,1700.0,2019-10-07 09:47:00,978 Cedar St, Los Angeles,CA,90001 +274066,iPhone,1,700.0,2019-10-24 11:58:00,861 Pine St, New York City,NY,10001 +274066,Lightning Charging Cable,2,14.95,2019-10-24 11:58:00,861 Pine St, New York City,NY,10001 +274067,Apple Airpods Headphones,1,150.0,2019-10-06 17:19:00,560 Johnson St, Atlanta,GA,30301 +274068,AAA Batteries (4-pack),2,2.99,2019-10-01 10:38:00,951 Lake St, New York City,NY,10001 +274069,Bose SoundSport Headphones,1,99.99,2019-10-09 16:11:00,534 Forest St, Atlanta,GA,30301 +274070,20in Monitor,1,109.99,2019-10-21 09:38:00,509 9th St, Seattle,WA,98101 +274071,27in 4K Gaming Monitor,1,389.99,2019-10-26 22:25:00,202 North St, Los Angeles,CA,90001 +274072,20in Monitor,1,109.99,2019-10-22 09:03:00,894 Lincoln St, New York City,NY,10001 +274073,AA Batteries (4-pack),1,3.84,2019-10-07 14:05:00,798 4th St, Dallas,TX,75001 +274074,Lightning Charging Cable,1,14.95,2019-10-18 16:31:00,260 Wilson St, New York City,NY,10001 +274075,27in FHD Monitor,1,149.99,2019-10-19 14:35:00,412 Main St, Seattle,WA,98101 +274076,20in Monitor,1,109.99,2019-10-17 18:31:00,533 4th St, Atlanta,GA,30301 +274077,AA Batteries (4-pack),2,3.84,2019-10-11 14:53:00,84 12th St, Los Angeles,CA,90001 +274078,iPhone,1,700.0,2019-10-03 09:53:00,936 Lakeview St, Atlanta,GA,30301 +274079,Google Phone,1,600.0,2019-10-24 06:58:00,939 Jackson St, Los Angeles,CA,90001 +274080,AA Batteries (4-pack),1,3.84,2019-10-01 12:08:00,34 Church St, Los Angeles,CA,90001 +274081,Macbook Pro Laptop,1,1700.0,2019-10-30 12:18:00,534 North St, Austin,TX,73301 +274082,Wired Headphones,2,11.99,2019-10-28 00:49:00,729 Lincoln St, Austin,TX,73301 +274083,AAA Batteries (4-pack),1,2.99,2019-10-15 18:08:00,52 6th St, Dallas,TX,75001 +274084,AAA Batteries (4-pack),1,2.99,2019-10-05 15:33:00,353 Meadow St, Boston,MA,02215 +274085,USB-C Charging Cable,1,11.95,2019-10-02 10:55:00,609 1st St, Boston,MA,02215 +274086,Flatscreen TV,1,300.0,2019-10-19 23:55:00,209 2nd St, New York City,NY,10001 +274087,27in FHD Monitor,1,149.99,2019-10-10 14:03:00,516 Willow St, Boston,MA,02215 +274088,Bose SoundSport Headphones,1,99.99,2019-10-12 23:35:00,669 Church St, Portland,ME,04101 +274089,AA Batteries (4-pack),2,3.84,2019-10-04 16:08:00,57 Madison St, San Francisco,CA,94016 +274090,AAA Batteries (4-pack),1,2.99,2019-10-04 10:41:00,726 Wilson St, Boston,MA,02215 +274091,Bose SoundSport Headphones,1,99.99,2019-10-18 11:21:00,294 Chestnut St, San Francisco,CA,94016 +274092,USB-C Charging Cable,1,11.95,2019-10-13 18:35:00,751 13th St, Boston,MA,02215 +274093,Bose SoundSport Headphones,1,99.99,2019-10-15 08:37:00,1 Chestnut St, San Francisco,CA,94016 +274094,Lightning Charging Cable,1,14.95,2019-10-05 16:35:00,662 Ridge St, Boston,MA,02215 +274095,iPhone,1,700.0,2019-10-04 18:10:00,801 West St, Los Angeles,CA,90001 +274096,AAA Batteries (4-pack),1,2.99,2019-10-03 11:51:00,324 Johnson St, San Francisco,CA,94016 +274097,AA Batteries (4-pack),1,3.84,2019-10-29 20:49:00,188 14th St, Austin,TX,73301 +274097,27in 4K Gaming Monitor,1,389.99,2019-10-29 20:49:00,188 14th St, Austin,TX,73301 +274098,Apple Airpods Headphones,1,150.0,2019-10-28 20:40:00,380 Jackson St, Dallas,TX,75001 +274099,27in FHD Monitor,1,149.99,2019-10-31 21:08:00,329 Hickory St, New York City,NY,10001 +274100,Bose SoundSport Headphones,1,99.99,2019-10-10 22:42:00,859 9th St, Seattle,WA,98101 +274101,Lightning Charging Cable,1,14.95,2019-10-19 14:34:00,227 Hickory St, San Francisco,CA,94016 +274102,Bose SoundSport Headphones,1,99.99,2019-10-09 10:14:00,448 7th St, New York City,NY,10001 +274103,27in 4K Gaming Monitor,1,389.99,2019-10-14 12:37:00,938 Johnson St, San Francisco,CA,94016 +274104,AAA Batteries (4-pack),1,2.99,2019-10-30 18:08:00,665 6th St, Dallas,TX,75001 +274105,AA Batteries (4-pack),4,3.84,2019-10-17 07:52:00,87 Jefferson St, Seattle,WA,98101 +274106,AAA Batteries (4-pack),1,2.99,2019-10-11 11:53:00,599 9th St, San Francisco,CA,94016 +274107,Wired Headphones,1,11.99,2019-10-21 22:13:00,181 West St, Austin,TX,73301 +274108,Wired Headphones,1,11.99,2019-10-18 16:32:00,869 Highland St, San Francisco,CA,94016 +274109,Wired Headphones,1,11.99,2019-10-14 18:22:00,20 Main St, Los Angeles,CA,90001 +274110,Apple Airpods Headphones,1,150.0,2019-10-20 19:49:00,309 Johnson St, Los Angeles,CA,90001 +274111,Apple Airpods Headphones,1,150.0,2019-10-15 21:59:00,485 7th St, New York City,NY,10001 +274112,Lightning Charging Cable,1,14.95,2019-10-31 10:16:00,703 Chestnut St, Seattle,WA,98101 +274113,AAA Batteries (4-pack),1,2.99,2019-10-01 09:38:00,87 Main St, Boston,MA,02215 +274114,Bose SoundSport Headphones,1,99.99,2019-10-23 10:24:00,221 9th St, San Francisco,CA,94016 +274115,USB-C Charging Cable,1,11.95,2019-10-20 11:12:00,700 2nd St, Atlanta,GA,30301 +274116,Lightning Charging Cable,1,14.95,2019-10-07 09:50:00,427 11th St, Boston,MA,02215 +274117,AAA Batteries (4-pack),1,2.99,2019-10-02 13:16:00,614 Dogwood St, Boston,MA,02215 +274118,Lightning Charging Cable,1,14.95,2019-10-07 10:10:00,319 West St, Boston,MA,02215 +274119,USB-C Charging Cable,1,11.95,2019-10-28 12:30:00,515 Cherry St, Boston,MA,02215 +274120,AA Batteries (4-pack),1,3.84,2019-10-05 09:46:00,695 8th St, New York City,NY,10001 +274121,AA Batteries (4-pack),2,3.84,2019-10-03 18:45:00,181 Elm St, Seattle,WA,98101 +274122,Flatscreen TV,1,300.0,2019-10-28 15:28:00,170 8th St, Austin,TX,73301 +274123,Lightning Charging Cable,1,14.95,2019-10-27 17:34:00,388 Dogwood St, Los Angeles,CA,90001 +274123,27in FHD Monitor,1,149.99,2019-10-27 17:34:00,388 Dogwood St, Los Angeles,CA,90001 +274124,AAA Batteries (4-pack),1,2.99,2019-10-28 13:57:00,48 Church St, Boston,MA,02215 +274125,USB-C Charging Cable,1,11.95,2019-10-02 22:43:00,562 12th St, San Francisco,CA,94016 +274126,iPhone,1,700.0,2019-10-16 12:33:00,177 Adams St, San Francisco,CA,94016 +274127,Lightning Charging Cable,1,14.95,2019-10-18 20:57:00,946 Hickory St, Dallas,TX,75001 +274128,Bose SoundSport Headphones,1,99.99,2019-10-20 20:08:00,710 Hill St, Los Angeles,CA,90001 +274129,27in FHD Monitor,1,149.99,2019-10-27 20:33:00,338 Jefferson St, Dallas,TX,75001 +274130,Wired Headphones,1,11.99,2019-10-10 04:34:00,428 11th St, Los Angeles,CA,90001 +274131,AAA Batteries (4-pack),1,2.99,2019-10-14 10:51:00,108 Walnut St, San Francisco,CA,94016 +274132,Lightning Charging Cable,1,14.95,2019-10-17 18:35:00,554 Spruce St, San Francisco,CA,94016 +274133,AA Batteries (4-pack),1,3.84,2019-10-06 17:44:00,82 Dogwood St, New York City,NY,10001 +274134,34in Ultrawide Monitor,1,379.99,2019-10-10 11:17:00,669 Madison St, Austin,TX,73301 +274135,AAA Batteries (4-pack),1,2.99,2019-10-24 16:02:00,896 14th St, Portland,OR,97035 +274136,27in 4K Gaming Monitor,1,389.99,2019-10-17 00:07:00,224 5th St, San Francisco,CA,94016 +274137,Flatscreen TV,1,300.0,2019-10-06 00:57:00,82 Elm St, Boston,MA,02215 +274138,AA Batteries (4-pack),1,3.84,2019-10-21 18:05:00,105 South St, Boston,MA,02215 +274139,Vareebadd Phone,1,400.0,2019-10-29 10:22:00,453 Spruce St, Los Angeles,CA,90001 +274139,USB-C Charging Cable,1,11.95,2019-10-29 10:22:00,453 Spruce St, Los Angeles,CA,90001 +274140,Bose SoundSport Headphones,1,99.99,2019-10-08 11:53:00,860 8th St, Los Angeles,CA,90001 +274141,AA Batteries (4-pack),1,3.84,2019-10-16 17:54:00,168 Forest St, Portland,OR,97035 +274142,Lightning Charging Cable,1,14.95,2019-10-04 10:01:00,890 Meadow St, San Francisco,CA,94016 +274143,Wired Headphones,1,11.99,2019-10-19 01:30:00,588 Walnut St, Seattle,WA,98101 +274144,AAA Batteries (4-pack),1,2.99,2019-10-25 12:27:00,952 4th St, Boston,MA,02215 +274145,Lightning Charging Cable,1,14.95,2019-10-14 20:47:00,913 Jackson St, Boston,MA,02215 +274146,Macbook Pro Laptop,1,1700.0,2019-10-14 15:36:00,983 Forest St, Atlanta,GA,30301 +274147,Wired Headphones,1,11.99,2019-10-18 15:34:00,497 Maple St, Atlanta,GA,30301 +274148,AA Batteries (4-pack),1,3.84,2019-10-04 10:10:00,151 Forest St, Boston,MA,02215 +274149,Apple Airpods Headphones,1,150.0,2019-10-31 07:21:00,184 6th St, Portland,OR,97035 +274150,27in FHD Monitor,1,149.99,2019-10-05 12:32:00,774 Lincoln St, Austin,TX,73301 +274151,ThinkPad Laptop,1,999.99,2019-10-01 14:50:00,716 Church St, Boston,MA,02215 +274152,Macbook Pro Laptop,1,1700.0,2019-10-01 16:25:00,387 11th St, Boston,MA,02215 +274153,AA Batteries (4-pack),1,3.84,2019-10-21 10:11:00,41 Chestnut St, Boston,MA,02215 +274154,Bose SoundSport Headphones,1,99.99,2019-10-06 11:23:00,525 Cedar St, Boston,MA,02215 +274155,Google Phone,1,600.0,2019-10-18 19:33:00,12 Madison St, Atlanta,GA,30301 +274156,AAA Batteries (4-pack),1,2.99,2019-10-10 20:51:00,446 7th St, Seattle,WA,98101 +274157,AA Batteries (4-pack),1,3.84,2019-10-10 19:11:00,126 Chestnut St, San Francisco,CA,94016 +274158,Macbook Pro Laptop,1,1700.0,2019-10-06 13:01:00,430 Park St, Austin,TX,73301 +274159,AAA Batteries (4-pack),1,2.99,2019-10-07 13:48:00,432 Elm St, New York City,NY,10001 +274160,Bose SoundSport Headphones,1,99.99,2019-10-09 09:58:00,568 Madison St, Portland,OR,97035 +274161,Wired Headphones,1,11.99,2019-10-28 11:36:00,161 Ridge St, San Francisco,CA,94016 +274162,Wired Headphones,2,11.99,2019-10-31 16:06:00,722 Johnson St, Dallas,TX,75001 +274163,USB-C Charging Cable,1,11.95,2019-10-28 14:29:00,873 Wilson St, New York City,NY,10001 +274164,Bose SoundSport Headphones,1,99.99,2019-10-13 10:20:00,162 North St, Austin,TX,73301 +274165,Lightning Charging Cable,1,14.95,2019-10-22 15:02:00,357 Jefferson St, Atlanta,GA,30301 +274166,Wired Headphones,1,11.99,2019-10-23 15:56:00,999 Madison St, Seattle,WA,98101 +274167,27in 4K Gaming Monitor,1,389.99,2019-10-07 13:10:00,623 Cherry St, San Francisco,CA,94016 +274168,AAA Batteries (4-pack),2,2.99,2019-10-18 05:50:00,116 Ridge St, Los Angeles,CA,90001 +274169,iPhone,1,700.0,2019-10-08 12:44:00,377 Highland St, Los Angeles,CA,90001 +274170,Bose SoundSport Headphones,1,99.99,2019-10-10 21:08:00,746 8th St, Los Angeles,CA,90001 +274171,Wired Headphones,1,11.99,2019-10-10 17:28:00,522 Adams St, New York City,NY,10001 +274172,USB-C Charging Cable,1,11.95,2019-10-22 19:35:00,534 West St, New York City,NY,10001 +274173,AA Batteries (4-pack),2,3.84,2019-10-09 14:05:00,385 Lake St, Los Angeles,CA,90001 +274174,AA Batteries (4-pack),1,3.84,2019-10-18 10:55:00,825 Pine St, Dallas,TX,75001 +274175,Lightning Charging Cable,1,14.95,2019-10-28 07:26:00,32 River St, Boston,MA,02215 +274176,USB-C Charging Cable,1,11.95,2019-10-24 21:23:00,895 Jefferson St, Dallas,TX,75001 +274177,Lightning Charging Cable,1,14.95,2019-10-20 20:36:00,887 Highland St, Los Angeles,CA,90001 +274178,Lightning Charging Cable,1,14.95,2019-10-01 07:26:00,775 Walnut St, Seattle,WA,98101 +274179,ThinkPad Laptop,1,999.99,2019-10-12 12:21:00,561 8th St, Atlanta,GA,30301 +274180,Wired Headphones,1,11.99,2019-10-06 22:11:00,268 Jackson St, Los Angeles,CA,90001 +274181,Lightning Charging Cable,1,14.95,2019-10-21 12:42:00,778 Center St, Seattle,WA,98101 +274182,USB-C Charging Cable,1,11.95,2019-10-21 20:22:00,808 Johnson St, Los Angeles,CA,90001 +274183,AA Batteries (4-pack),3,3.84,2019-10-22 13:53:00,857 Lakeview St, New York City,NY,10001 +274184,AA Batteries (4-pack),1,3.84,2019-10-26 19:25:00,947 7th St, San Francisco,CA,94016 +274185,Apple Airpods Headphones,1,150.0,2019-10-20 13:45:00,799 6th St, Dallas,TX,75001 +274186,Wired Headphones,1,11.99,2019-10-23 21:21:00,412 Hickory St, Atlanta,GA,30301 +274187,Bose SoundSport Headphones,1,99.99,2019-10-09 09:17:00,715 13th St, Atlanta,GA,30301 +274188,AA Batteries (4-pack),2,3.84,2019-10-02 12:42:00,194 8th St, Los Angeles,CA,90001 +274189,Lightning Charging Cable,1,14.95,2019-10-01 09:02:00,811 River St, Seattle,WA,98101 +274190,34in Ultrawide Monitor,1,379.99,2019-10-21 20:08:00,449 Chestnut St, San Francisco,CA,94016 +274191,Apple Airpods Headphones,1,150.0,2019-10-31 19:55:00,568 Jefferson St, Boston,MA,02215 +274192,Lightning Charging Cable,1,14.95,2019-10-15 09:03:00,353 Hill St, Dallas,TX,75001 +274193,AA Batteries (4-pack),1,3.84,2019-10-12 18:25:00,683 Church St, San Francisco,CA,94016 +274194,Macbook Pro Laptop,1,1700.0,2019-10-08 22:01:00,224 Willow St, Atlanta,GA,30301 +274195,27in FHD Monitor,1,149.99,2019-10-08 12:48:00,779 Willow St, Boston,MA,02215 +274196,27in FHD Monitor,1,149.99,2019-10-31 10:09:00,620 Spruce St, New York City,NY,10001 +274197,AAA Batteries (4-pack),2,2.99,2019-10-12 10:19:00,965 Lincoln St, San Francisco,CA,94016 +274198,27in FHD Monitor,1,149.99,2019-10-23 14:30:00,702 Jackson St, San Francisco,CA,94016 +274199,Macbook Pro Laptop,1,1700.0,2019-10-02 11:45:00,210 Meadow St, San Francisco,CA,94016 +274200,AAA Batteries (4-pack),2,2.99,2019-10-07 14:17:00,536 Adams St, New York City,NY,10001 +274201,Apple Airpods Headphones,1,150.0,2019-10-07 10:01:00,613 Dogwood St, San Francisco,CA,94016 +274202,USB-C Charging Cable,1,11.95,2019-10-03 22:08:00,907 Willow St, Austin,TX,73301 +274203,AA Batteries (4-pack),2,3.84,2019-10-11 21:40:00,290 Willow St, Los Angeles,CA,90001 +274204,Flatscreen TV,1,300.0,2019-10-06 17:33:00,550 5th St, Portland,OR,97035 +274205,AA Batteries (4-pack),1,3.84,2019-10-13 21:52:00,78 14th St, Dallas,TX,75001 +274206,ThinkPad Laptop,1,999.99,2019-10-30 21:36:00,141 Washington St, New York City,NY,10001 +274207,Apple Airpods Headphones,1,150.0,2019-10-18 14:26:00,21 4th St, Los Angeles,CA,90001 +274208,AAA Batteries (4-pack),4,2.99,2019-10-04 12:57:00,499 Meadow St, New York City,NY,10001 +274209,27in FHD Monitor,1,149.99,2019-10-24 14:30:00,433 Hill St, Boston,MA,02215 +274210,AA Batteries (4-pack),1,3.84,2019-10-13 17:28:00,467 12th St, Boston,MA,02215 +274211,USB-C Charging Cable,1,11.95,2019-10-16 00:27:00,545 Lincoln St, San Francisco,CA,94016 +274212,27in 4K Gaming Monitor,1,389.99,2019-10-06 17:14:00,506 Willow St, Los Angeles,CA,90001 +274213,AA Batteries (4-pack),1,3.84,2019-10-06 04:00:00,745 Walnut St, New York City,NY,10001 +274214,Bose SoundSport Headphones,1,99.99,2019-10-08 15:00:00,456 Pine St, Atlanta,GA,30301 +274215,Lightning Charging Cable,1,14.95,2019-10-05 11:00:00,703 Hill St, Dallas,TX,75001 +274216,Apple Airpods Headphones,1,150.0,2019-10-16 18:34:00,801 Wilson St, San Francisco,CA,94016 +274217,Macbook Pro Laptop,1,1700.0,2019-10-10 07:01:00,638 West St, Los Angeles,CA,90001 +274218,iPhone,1,700.0,2019-10-12 21:39:00,594 Madison St, Seattle,WA,98101 +274219,Flatscreen TV,1,300.0,2019-10-12 20:05:00,493 14th St, Boston,MA,02215 +274220,Flatscreen TV,1,300.0,2019-10-14 23:11:00,542 Main St, San Francisco,CA,94016 +274221,AA Batteries (4-pack),1,3.84,2019-10-10 15:54:00,549 Main St, Los Angeles,CA,90001 +274222,Wired Headphones,1,11.99,2019-10-12 14:09:00,968 Willow St, Seattle,WA,98101 +274223,ThinkPad Laptop,1,999.99,2019-10-09 15:56:00,859 South St, Los Angeles,CA,90001 +274224,iPhone,1,700.0,2019-10-07 18:35:00,323 South St, Seattle,WA,98101 +274225,34in Ultrawide Monitor,1,379.99,2019-10-19 14:59:00,413 Jefferson St, Atlanta,GA,30301 +274226,Google Phone,1,600.0,2019-10-03 13:16:00,990 Lincoln St, Los Angeles,CA,90001 +274226,Wired Headphones,1,11.99,2019-10-03 13:16:00,990 Lincoln St, Los Angeles,CA,90001 +274227,USB-C Charging Cable,1,11.95,2019-10-04 01:24:00,37 1st St, Boston,MA,02215 +274228,Apple Airpods Headphones,1,150.0,2019-10-28 17:21:00,777 South St, San Francisco,CA,94016 +274229,Wired Headphones,1,11.99,2019-10-15 01:05:00,626 Lakeview St, Seattle,WA,98101 +274230,ThinkPad Laptop,1,999.99,2019-10-04 13:29:00,946 1st St, Los Angeles,CA,90001 +274231,Wired Headphones,1,11.99,2019-10-08 11:07:00,418 Lincoln St, Portland,OR,97035 +274232,27in 4K Gaming Monitor,1,389.99,2019-10-20 08:56:00,636 Johnson St, Portland,OR,97035 +274233,Lightning Charging Cable,1,14.95,2019-10-10 14:45:00,99 Highland St, Seattle,WA,98101 +274234,USB-C Charging Cable,1,11.95,2019-10-18 13:40:00,311 North St, Los Angeles,CA,90001 +274235,Flatscreen TV,1,300.0,2019-10-14 12:14:00,658 14th St, San Francisco,CA,94016 +274236,Macbook Pro Laptop,1,1700.0,2019-10-11 14:59:00,839 Ridge St, Seattle,WA,98101 +274237,LG Washing Machine,1,600.0,2019-10-13 13:48:00,886 South St, New York City,NY,10001 +274238,Lightning Charging Cable,1,14.95,2019-10-08 16:20:00,599 14th St, San Francisco,CA,94016 +274239,ThinkPad Laptop,1,999.99,2019-10-30 11:56:00,909 11th St, Austin,TX,73301 +274240,AAA Batteries (4-pack),1,2.99,2019-10-15 22:07:00,700 Main St, Boston,MA,02215 +274241,Lightning Charging Cable,1,14.95,2019-10-18 10:30:00,143 Cherry St, Los Angeles,CA,90001 +274242,AAA Batteries (4-pack),1,2.99,2019-10-10 18:39:00,965 Ridge St, San Francisco,CA,94016 +274243,USB-C Charging Cable,1,11.95,2019-10-19 14:43:00,799 5th St, San Francisco,CA,94016 +274244,20in Monitor,1,109.99,2019-10-14 23:27:00,445 Hickory St, Los Angeles,CA,90001 +274245,Macbook Pro Laptop,1,1700.0,2019-10-20 21:38:00,226 Hill St, San Francisco,CA,94016 +274246,Lightning Charging Cable,1,14.95,2019-10-02 21:15:00,742 Madison St, San Francisco,CA,94016 +274246,27in FHD Monitor,1,149.99,2019-10-02 21:15:00,742 Madison St, San Francisco,CA,94016 +274247,AAA Batteries (4-pack),1,2.99,2019-10-29 18:41:00,677 Forest St, Boston,MA,02215 +274248,iPhone,1,700.0,2019-10-05 19:06:00,790 Jackson St, Portland,ME,04101 +274249,Apple Airpods Headphones,1,150.0,2019-10-31 13:16:00,36 Maple St, Atlanta,GA,30301 +274250,AA Batteries (4-pack),1,3.84,2019-10-17 08:03:00,320 Lincoln St, Los Angeles,CA,90001 +274251,Lightning Charging Cable,1,14.95,2019-10-09 20:20:00,612 West St, Dallas,TX,75001 +274252,34in Ultrawide Monitor,1,379.99,2019-10-28 14:31:00,417 4th St, Los Angeles,CA,90001 +274253,AA Batteries (4-pack),1,3.84,2019-10-18 16:55:00,548 South St, San Francisco,CA,94016 +274254,Google Phone,1,600.0,2019-10-28 14:44:00,908 Wilson St, Los Angeles,CA,90001 +274255,Wired Headphones,1,11.99,2019-10-31 14:28:00,342 Willow St, Boston,MA,02215 +274256,LG Washing Machine,1,600.0,2019-10-13 09:39:00,138 Park St, Boston,MA,02215 +274257,iPhone,1,700.0,2019-10-15 17:25:00,37 Johnson St, Dallas,TX,75001 +274257,Lightning Charging Cable,1,14.95,2019-10-15 17:25:00,37 Johnson St, Dallas,TX,75001 +274258,27in FHD Monitor,1,149.99,2019-10-09 14:55:00,115 Chestnut St, San Francisco,CA,94016 +274259,Google Phone,1,600.0,2019-10-23 09:32:00,601 Maple St, New York City,NY,10001 +274260,Macbook Pro Laptop,1,1700.0,2019-10-25 14:59:00,392 8th St, New York City,NY,10001 +274261,Wired Headphones,1,11.99,2019-10-11 10:44:00,241 Center St, San Francisco,CA,94016 +274262,Flatscreen TV,1,300.0,2019-10-05 13:12:00,739 11th St, Atlanta,GA,30301 +274262,USB-C Charging Cable,2,11.95,2019-10-05 13:12:00,739 11th St, Atlanta,GA,30301 +274263,Lightning Charging Cable,2,14.95,2019-10-28 13:22:00,234 Chestnut St, New York City,NY,10001 +274264,Lightning Charging Cable,1,14.95,2019-10-02 09:32:00,908 Forest St, New York City,NY,10001 +274265,Lightning Charging Cable,1,14.95,2019-10-08 09:33:00,436 1st St, Los Angeles,CA,90001 +274266,Lightning Charging Cable,1,14.95,2019-10-05 13:42:00,959 Cedar St, San Francisco,CA,94016 +274267,27in FHD Monitor,1,149.99,2019-10-25 13:29:00,528 10th St, Boston,MA,02215 +274268,Macbook Pro Laptop,1,1700.0,2019-10-17 17:52:00,325 Pine St, Los Angeles,CA,90001 +274269,AAA Batteries (4-pack),1,2.99,2019-10-14 20:18:00,80 Center St, New York City,NY,10001 +274270,27in 4K Gaming Monitor,1,389.99,2019-10-07 16:03:00,561 Meadow St, Los Angeles,CA,90001 +274271,AA Batteries (4-pack),1,3.84,2019-10-18 22:51:00,321 Hickory St, Portland,OR,97035 +274272,AA Batteries (4-pack),3,3.84,2019-10-02 23:29:00,688 6th St, Austin,TX,73301 +274273,AA Batteries (4-pack),2,3.84,2019-10-31 20:18:00,108 South St, Los Angeles,CA,90001 +274274,USB-C Charging Cable,2,11.95,2019-10-11 12:44:00,218 Chestnut St, Dallas,TX,75001 +274275,AA Batteries (4-pack),1,3.84,2019-10-29 13:51:00,750 Willow St, Los Angeles,CA,90001 +274276,AAA Batteries (4-pack),1,2.99,2019-10-02 21:59:00,531 5th St, Boston,MA,02215 +274277,USB-C Charging Cable,1,11.95,2019-10-23 10:35:00,600 South St, Austin,TX,73301 +274278,27in FHD Monitor,1,149.99,2019-10-11 10:48:00,311 Park St, Seattle,WA,98101 +274279,Apple Airpods Headphones,1,150.0,2019-10-28 13:11:00,565 South St, Los Angeles,CA,90001 +274280,AAA Batteries (4-pack),2,2.99,2019-10-04 14:25:00,602 Madison St, New York City,NY,10001 +274281,Apple Airpods Headphones,1,150.0,2019-10-14 18:18:00,906 9th St, Seattle,WA,98101 +274282,Macbook Pro Laptop,1,1700.0,2019-10-03 14:47:00,29 South St, San Francisco,CA,94016 +274283,ThinkPad Laptop,1,999.99,2019-10-19 15:16:00,418 Hickory St, Boston,MA,02215 +274284,Apple Airpods Headphones,1,150.0,2019-10-25 19:49:00,88 Lake St, San Francisco,CA,94016 +274285,AA Batteries (4-pack),1,3.84,2019-10-30 01:44:00,464 Hickory St, Portland,OR,97035 +274286,AAA Batteries (4-pack),5,2.99,2019-10-06 16:47:00,433 Spruce St, Los Angeles,CA,90001 +274287,iPhone,1,700.0,2019-10-27 18:36:00,158 11th St, Boston,MA,02215 +274288,27in 4K Gaming Monitor,1,389.99,2019-10-08 15:43:00,225 Elm St, Los Angeles,CA,90001 +274289,Macbook Pro Laptop,1,1700.0,2019-10-27 14:08:00,786 Dogwood St, Los Angeles,CA,90001 +274290,Wired Headphones,1,11.99,2019-10-28 02:10:00,253 Park St, Seattle,WA,98101 +274291,27in 4K Gaming Monitor,1,389.99,2019-10-03 23:53:00,517 Jefferson St, Dallas,TX,75001 +274292,Lightning Charging Cable,1,14.95,2019-10-31 19:12:00,535 10th St, Los Angeles,CA,90001 +274293,USB-C Charging Cable,1,11.95,2019-10-10 18:37:00,677 Center St, Los Angeles,CA,90001 +274294,27in FHD Monitor,1,149.99,2019-10-09 16:05:00,337 13th St, Los Angeles,CA,90001 +274295,27in 4K Gaming Monitor,1,389.99,2019-10-06 12:36:00,522 4th St, San Francisco,CA,94016 +274296,Apple Airpods Headphones,1,150.0,2019-10-03 08:06:00,889 Cedar St, San Francisco,CA,94016 +274297,ThinkPad Laptop,1,999.99,2019-10-27 23:08:00,584 Maple St, Boston,MA,02215 +274298,Bose SoundSport Headphones,1,99.99,2019-10-21 08:56:00,826 10th St, Austin,TX,73301 +274299,Wired Headphones,1,11.99,2019-10-07 20:02:00,512 13th St, Portland,OR,97035 +274300,AAA Batteries (4-pack),2,2.99,2019-10-21 19:02:00,863 14th St, Los Angeles,CA,90001 +274301,27in 4K Gaming Monitor,1,389.99,2019-10-09 20:54:00,249 Forest St, Atlanta,GA,30301 +274302,AA Batteries (4-pack),1,3.84,2019-10-31 12:58:00,395 North St, San Francisco,CA,94016 +274303,AA Batteries (4-pack),1,3.84,2019-10-24 12:59:00,51 10th St, New York City,NY,10001 +274304,Apple Airpods Headphones,1,150.0,2019-10-08 14:07:00,625 Forest St, Austin,TX,73301 +274305,Macbook Pro Laptop,1,1700.0,2019-10-13 02:18:00,902 Main St, Austin,TX,73301 +274306,Vareebadd Phone,1,400.0,2019-10-13 15:40:00,718 Spruce St, New York City,NY,10001 +274307,AA Batteries (4-pack),1,3.84,2019-10-22 01:33:00,107 Johnson St, Austin,TX,73301 +274308,27in 4K Gaming Monitor,1,389.99,2019-10-21 15:42:00,775 4th St, Los Angeles,CA,90001 +274309,Apple Airpods Headphones,1,150.0,2019-10-06 13:30:00,30 5th St, Seattle,WA,98101 +274310,34in Ultrawide Monitor,1,379.99,2019-10-20 20:29:00,912 North St, Portland,OR,97035 +274311,34in Ultrawide Monitor,1,379.99,2019-10-27 13:32:00,754 Meadow St, Seattle,WA,98101 +274312,USB-C Charging Cable,1,11.95,2019-10-14 10:15:00,790 Highland St, Los Angeles,CA,90001 +274313,Lightning Charging Cable,1,14.95,2019-10-09 15:52:00,587 8th St, San Francisco,CA,94016 +274314,Lightning Charging Cable,1,14.95,2019-10-21 18:36:00,873 2nd St, San Francisco,CA,94016 +274315,Lightning Charging Cable,1,14.95,2019-10-25 17:44:00,210 Meadow St, Austin,TX,73301 +274316,Wired Headphones,1,11.99,2019-10-21 21:02:00,126 Park St, San Francisco,CA,94016 +274317,27in FHD Monitor,1,149.99,2019-10-10 14:46:00,990 Center St, Los Angeles,CA,90001 +274318,Wired Headphones,1,11.99,2019-10-20 22:14:00,662 11th St, New York City,NY,10001 +274319,USB-C Charging Cable,1,11.95,2019-10-23 15:38:00,718 13th St, San Francisco,CA,94016 +274320,USB-C Charging Cable,1,11.95,2019-10-23 08:46:00,895 Highland St, Boston,MA,02215 +274321,34in Ultrawide Monitor,1,379.99,2019-10-27 16:14:00,312 6th St, Los Angeles,CA,90001 +274322,USB-C Charging Cable,1,11.95,2019-10-18 13:44:00,696 Willow St, Atlanta,GA,30301 +274323,Wired Headphones,1,11.99,2019-10-15 12:53:00,207 Meadow St, San Francisco,CA,94016 +274324,27in 4K Gaming Monitor,1,389.99,2019-10-04 10:38:00,827 South St, Dallas,TX,75001 +274325,Bose SoundSport Headphones,1,99.99,2019-10-12 01:07:00,695 Jackson St, Los Angeles,CA,90001 +274326,Lightning Charging Cable,2,14.95,2019-10-12 13:22:00,579 1st St, San Francisco,CA,94016 +274327,27in FHD Monitor,1,149.99,2019-10-21 20:14:00,533 2nd St, Austin,TX,73301 +274328,Lightning Charging Cable,1,14.95,2019-10-28 22:07:00,773 Church St, Los Angeles,CA,90001 +274329,AAA Batteries (4-pack),1,2.99,2019-10-15 09:43:00,701 Willow St, Los Angeles,CA,90001 +274330,34in Ultrawide Monitor,1,379.99,2019-10-20 11:05:00,752 Church St, Atlanta,GA,30301 +274331,AAA Batteries (4-pack),3,2.99,2019-10-30 19:01:00,248 Wilson St, San Francisco,CA,94016 +274332,Apple Airpods Headphones,1,150.0,2019-10-04 20:26:00,66 1st St, Dallas,TX,75001 +274333,AAA Batteries (4-pack),1,2.99,2019-10-10 22:19:00,669 1st St, Boston,MA,02215 +274334,Wired Headphones,1,11.99,2019-10-06 19:17:00,486 11th St, Dallas,TX,75001 +274335,Apple Airpods Headphones,1,150.0,2019-10-03 18:48:00,884 11th St, San Francisco,CA,94016 +274336,27in FHD Monitor,1,149.99,2019-10-22 18:47:00,342 Maple St, Austin,TX,73301 +274337,Lightning Charging Cable,1,14.95,2019-10-23 12:29:00,254 Highland St, Dallas,TX,75001 +274338,AAA Batteries (4-pack),1,2.99,2019-10-26 11:38:00,496 Jackson St, Los Angeles,CA,90001 +274339,Wired Headphones,1,11.99,2019-10-30 22:20:00,622 Center St, Seattle,WA,98101 +274340,27in FHD Monitor,1,149.99,2019-10-19 13:14:00,277 Highland St, Boston,MA,02215 +274341,34in Ultrawide Monitor,1,379.99,2019-10-26 10:41:00,978 Center St, Austin,TX,73301 +274342,Apple Airpods Headphones,1,150.0,2019-10-11 12:24:00,188 Lincoln St, Los Angeles,CA,90001 +274343,Vareebadd Phone,1,400.0,2019-10-29 13:45:00,182 Hickory St, Dallas,TX,75001 +274343,USB-C Charging Cable,1,11.95,2019-10-29 13:45:00,182 Hickory St, Dallas,TX,75001 +274344,20in Monitor,1,109.99,2019-10-25 12:54:00,172 Cherry St, Los Angeles,CA,90001 +274345,AAA Batteries (4-pack),3,2.99,2019-10-11 23:38:00,728 Wilson St, New York City,NY,10001 +274346,iPhone,1,700.0,2019-10-19 18:50:00,317 14th St, San Francisco,CA,94016 +274347,USB-C Charging Cable,1,11.95,2019-10-13 10:14:00,384 Madison St, Atlanta,GA,30301 +274348,USB-C Charging Cable,3,11.95,2019-10-16 20:46:00,708 Ridge St, New York City,NY,10001 +274349,Wired Headphones,1,11.99,2019-10-30 17:12:00,462 Adams St, Portland,OR,97035 +274350,Lightning Charging Cable,1,14.95,2019-10-29 15:04:00,997 11th St, Austin,TX,73301 +274351,USB-C Charging Cable,1,11.95,2019-10-18 10:51:00,367 Center St, San Francisco,CA,94016 +274352,iPhone,1,700.0,2019-10-17 18:34:00,549 Jackson St, Los Angeles,CA,90001 +274352,Lightning Charging Cable,1,14.95,2019-10-17 18:34:00,549 Jackson St, Los Angeles,CA,90001 +274353,LG Washing Machine,1,600.0,2019-10-25 00:18:00,463 River St, Seattle,WA,98101 +274354,Apple Airpods Headphones,1,150.0,2019-10-08 13:36:00,683 Wilson St, Seattle,WA,98101 +274355,Apple Airpods Headphones,1,150.0,2019-10-27 22:47:00,810 Center St, San Francisco,CA,94016 +274356,27in 4K Gaming Monitor,1,389.99,2019-10-06 11:30:00,429 Center St, Portland,OR,97035 +274357,34in Ultrawide Monitor,1,379.99,2019-10-29 21:44:00,267 Cedar St, Boston,MA,02215 +274358,Bose SoundSport Headphones,1,99.99,2019-10-15 06:36:00,158 Lincoln St, San Francisco,CA,94016 +274359,AA Batteries (4-pack),1,3.84,2019-10-11 20:49:00,205 Lake St, Boston,MA,02215 +274360,AA Batteries (4-pack),3,3.84,2019-10-13 22:40:00,172 Park St, Austin,TX,73301 +274361,Google Phone,1,600.0,2019-10-08 20:18:00,585 Hickory St, New York City,NY,10001 +274361,USB-C Charging Cable,1,11.95,2019-10-08 20:18:00,585 Hickory St, New York City,NY,10001 +274362,Bose SoundSport Headphones,1,99.99,2019-10-02 14:24:00,276 River St, New York City,NY,10001 +274363,Bose SoundSport Headphones,1,99.99,2019-10-30 23:41:00,57 Chestnut St, San Francisco,CA,94016 +274364,Lightning Charging Cable,1,14.95,2019-10-06 15:56:00,747 12th St, Boston,MA,02215 +274365,AAA Batteries (4-pack),1,2.99,2019-10-22 08:14:00,618 14th St, Boston,MA,02215 +274366,AAA Batteries (4-pack),1,2.99,2019-10-04 10:46:00,622 Center St, Seattle,WA,98101 +274367,AAA Batteries (4-pack),1,2.99,2019-10-05 12:33:00,980 Jackson St, San Francisco,CA,94016 +274368,USB-C Charging Cable,1,11.95,2019-10-13 12:01:00,176 Wilson St, San Francisco,CA,94016 +274369,27in FHD Monitor,1,149.99,2019-10-25 13:30:00,598 Hickory St, Atlanta,GA,30301 +274370,Wired Headphones,1,11.99,2019-10-06 17:39:00,983 Main St, San Francisco,CA,94016 +274371,Lightning Charging Cable,1,14.95,2019-10-20 10:35:00,257 4th St, San Francisco,CA,94016 +274372,Vareebadd Phone,1,400.0,2019-10-01 23:48:00,529 13th St, Dallas,TX,75001 +274372,USB-C Charging Cable,1,11.95,2019-10-01 23:48:00,529 13th St, Dallas,TX,75001 +274373,Bose SoundSport Headphones,1,99.99,2019-10-27 10:18:00,195 Willow St, San Francisco,CA,94016 +274374,Apple Airpods Headphones,1,150.0,2019-10-22 02:17:00,27 West St, New York City,NY,10001 +274375,Wired Headphones,1,11.99,2019-10-16 10:58:00,239 Cedar St, Los Angeles,CA,90001 +274376,iPhone,1,700.0,2019-10-23 10:54:00,107 6th St, Los Angeles,CA,90001 +274377,AA Batteries (4-pack),2,3.84,2019-10-23 16:00:00,200 13th St, San Francisco,CA,94016 +274378,LG Dryer,1,600.0,2019-10-30 14:48:00,59 Wilson St, Dallas,TX,75001 +274379,AAA Batteries (4-pack),1,2.99,2019-10-13 13:20:00,354 Lake St, San Francisco,CA,94016 +274380,AA Batteries (4-pack),1,3.84,2019-10-03 10:41:00,277 Ridge St, Los Angeles,CA,90001 +274381,LG Washing Machine,1,600.0,2019-10-23 00:31:00,211 Cedar St, Atlanta,GA,30301 +274382,Google Phone,1,600.0,2019-10-22 09:30:00,711 9th St, San Francisco,CA,94016 +274382,USB-C Charging Cable,1,11.95,2019-10-22 09:30:00,711 9th St, San Francisco,CA,94016 +274382,AA Batteries (4-pack),1,3.84,2019-10-22 09:30:00,711 9th St, San Francisco,CA,94016 +274383,Lightning Charging Cable,1,14.95,2019-10-02 18:47:00,706 11th St, Austin,TX,73301 +274384,Macbook Pro Laptop,1,1700.0,2019-10-07 20:52:00,221 2nd St, San Francisco,CA,94016 +274385,Bose SoundSport Headphones,1,99.99,2019-10-31 17:14:00,846 13th St, Boston,MA,02215 +274386,Lightning Charging Cable,1,14.95,2019-10-03 16:28:00,851 South St, New York City,NY,10001 +274387,AA Batteries (4-pack),1,3.84,2019-10-20 17:15:00,599 13th St, Los Angeles,CA,90001 +274388,27in FHD Monitor,1,149.99,2019-10-20 19:51:00,137 Dogwood St, Los Angeles,CA,90001 +274389,34in Ultrawide Monitor,1,379.99,2019-10-29 20:16:00,747 Lake St, San Francisco,CA,94016 +274390,20in Monitor,1,109.99,2019-10-07 16:31:00,803 Church St, San Francisco,CA,94016 +274391,AA Batteries (4-pack),1,3.84,2019-10-02 22:14:00,487 10th St, Austin,TX,73301 +274392,AA Batteries (4-pack),1,3.84,2019-10-08 19:10:00,499 Meadow St, Boston,MA,02215 +274393,Wired Headphones,1,11.99,2019-10-09 13:49:00,388 River St, Seattle,WA,98101 +274394,Wired Headphones,1,11.99,2019-10-20 00:25:00,131 Cedar St, Seattle,WA,98101 +274395,Lightning Charging Cable,1,14.95,2019-10-12 11:12:00,243 Lakeview St, San Francisco,CA,94016 +274396,Apple Airpods Headphones,1,150.0,2019-10-21 20:15:00,135 Church St, Dallas,TX,75001 +274397,AAA Batteries (4-pack),1,2.99,2019-10-05 16:37:00,305 Hickory St, Los Angeles,CA,90001 +274398,USB-C Charging Cable,1,11.95,2019-10-06 16:42:00,88 Washington St, Seattle,WA,98101 +274399,USB-C Charging Cable,1,11.95,2019-10-19 17:32:00,829 Cedar St, Portland,ME,04101 +274400,Lightning Charging Cable,1,14.95,2019-10-28 17:58:00,860 South St, New York City,NY,10001 +274401,27in 4K Gaming Monitor,1,389.99,2019-10-23 05:45:00,306 13th St, Los Angeles,CA,90001 +274402,Apple Airpods Headphones,1,150.0,2019-10-23 11:17:00,654 2nd St, New York City,NY,10001 +274403,AA Batteries (4-pack),1,3.84,2019-10-16 10:26:00,738 Hill St, Seattle,WA,98101 +274404,Google Phone,1,600.0,2019-10-28 21:02:00,33 Maple St, Atlanta,GA,30301 +274405,Google Phone,1,600.0,2019-10-19 15:44:00,528 River St, Boston,MA,02215 +274405,Wired Headphones,1,11.99,2019-10-19 15:44:00,528 River St, Boston,MA,02215 +274406,AAA Batteries (4-pack),2,2.99,2019-10-21 12:46:00,740 Church St, New York City,NY,10001 +274407,USB-C Charging Cable,1,11.95,2019-10-28 18:44:00,466 Adams St, Dallas,TX,75001 +274408,USB-C Charging Cable,1,11.95,2019-10-18 15:02:00,265 8th St, Los Angeles,CA,90001 +274409,iPhone,1,700.0,2019-10-08 15:55:00,368 North St, Portland,OR,97035 +274409,Lightning Charging Cable,1,14.95,2019-10-08 15:55:00,368 North St, Portland,OR,97035 +274410,Wired Headphones,1,11.99,2019-10-24 16:47:00,112 Adams St, San Francisco,CA,94016 +274411,Wired Headphones,1,11.99,2019-10-06 13:13:00,771 Hickory St, Los Angeles,CA,90001 +274412,USB-C Charging Cable,2,11.95,2019-10-10 23:34:00,19 12th St, Los Angeles,CA,90001 +274413,Wired Headphones,1,11.99,2019-10-01 22:03:00,332 Cherry St, Boston,MA,02215 +274414,Bose SoundSport Headphones,1,99.99,2019-10-08 11:27:00,57 Meadow St, San Francisco,CA,94016 +274415,Bose SoundSport Headphones,1,99.99,2019-10-26 18:47:00,156 Sunset St, Los Angeles,CA,90001 +274416,27in FHD Monitor,1,149.99,2019-10-06 17:52:00,159 Madison St, Atlanta,GA,30301 +274417,Macbook Pro Laptop,1,1700.0,2019-10-24 12:32:00,119 1st St, Los Angeles,CA,90001 +274418,AA Batteries (4-pack),1,3.84,2019-10-13 17:28:00,970 Highland St, San Francisco,CA,94016 +274419,AA Batteries (4-pack),2,3.84,2019-10-23 09:28:00,818 12th St, Atlanta,GA,30301 +274420,Bose SoundSport Headphones,1,99.99,2019-10-31 10:14:00,584 Hickory St, Dallas,TX,75001 +274421,Bose SoundSport Headphones,1,99.99,2019-10-21 20:13:00,645 10th St, San Francisco,CA,94016 +274422,AAA Batteries (4-pack),1,2.99,2019-10-29 18:12:00,802 Ridge St, Los Angeles,CA,90001 +274423,Apple Airpods Headphones,1,150.0,2019-10-22 19:12:00,381 Cherry St, Seattle,WA,98101 +274424,USB-C Charging Cable,1,11.95,2019-10-13 23:01:00,215 Park St, Boston,MA,02215 +274425,Lightning Charging Cable,1,14.95,2019-10-16 15:59:00,88 12th St, New York City,NY,10001 +274426,USB-C Charging Cable,1,11.95,2019-10-05 10:01:00,109 Ridge St, Portland,OR,97035 +274427,Apple Airpods Headphones,1,150.0,2019-10-14 10:13:00,358 Jefferson St, San Francisco,CA,94016 +274427,Lightning Charging Cable,1,14.95,2019-10-14 10:13:00,358 Jefferson St, San Francisco,CA,94016 +274428,Bose SoundSport Headphones,1,99.99,2019-10-06 18:17:00,277 Walnut St, Dallas,TX,75001 +274429,USB-C Charging Cable,1,11.95,2019-10-09 16:24:00,569 10th St, San Francisco,CA,94016 +274430,Flatscreen TV,1,300.0,2019-10-31 10:16:00,690 7th St, Dallas,TX,75001 +274431,Wired Headphones,1,11.99,2019-10-01 13:04:00,187 West St, Boston,MA,02215 +274431,USB-C Charging Cable,2,11.95,2019-10-01 13:04:00,187 West St, Boston,MA,02215 +274432,AA Batteries (4-pack),1,3.84,2019-10-10 10:11:00,926 North St, Seattle,WA,98101 +274433,USB-C Charging Cable,1,11.95,2019-10-25 11:38:00,903 Walnut St, Seattle,WA,98101 +274434,Flatscreen TV,1,300.0,2019-10-24 15:40:00,845 4th St, Dallas,TX,75001 +274435,AAA Batteries (4-pack),1,2.99,2019-10-24 18:23:00,302 River St, Austin,TX,73301 +274436,AAA Batteries (4-pack),4,2.99,2019-10-26 07:50:00,426 2nd St, Austin,TX,73301 +274437,27in 4K Gaming Monitor,1,389.99,2019-10-03 18:59:00,965 Pine St, Los Angeles,CA,90001 +274438,USB-C Charging Cable,1,11.95,2019-10-10 16:31:00,514 Maple St, Austin,TX,73301 +274439,Lightning Charging Cable,1,14.95,2019-10-24 04:39:00,998 Adams St, Dallas,TX,75001 +274440,Bose SoundSport Headphones,1,99.99,2019-10-23 21:45:00,749 West St, San Francisco,CA,94016 +274441,Apple Airpods Headphones,1,150.0,2019-10-10 12:01:00,491 11th St, New York City,NY,10001 +274442,Flatscreen TV,1,300.0,2019-10-03 20:31:00,131 Chestnut St, New York City,NY,10001 +274443,Bose SoundSport Headphones,2,99.99,2019-10-17 13:36:00,827 2nd St, Seattle,WA,98101 +274444,Google Phone,1,600.0,2019-10-07 20:56:00,203 Forest St, San Francisco,CA,94016 +274444,USB-C Charging Cable,1,11.95,2019-10-07 20:56:00,203 Forest St, San Francisco,CA,94016 +274445,AA Batteries (4-pack),1,3.84,2019-10-03 16:29:00,898 6th St, San Francisco,CA,94016 +274446,Lightning Charging Cable,1,14.95,2019-10-13 15:42:00,770 Pine St, San Francisco,CA,94016 +274447,AAA Batteries (4-pack),2,2.99,2019-10-12 18:47:00,487 Madison St, San Francisco,CA,94016 +274448,27in 4K Gaming Monitor,1,389.99,2019-10-03 16:30:00,323 Johnson St, Seattle,WA,98101 +274449,AA Batteries (4-pack),1,3.84,2019-10-23 02:01:00,721 Maple St, San Francisco,CA,94016 +274450,iPhone,1,700.0,2019-10-25 12:49:00,805 Hill St, Atlanta,GA,30301 +274450,Lightning Charging Cable,2,14.95,2019-10-25 12:49:00,805 Hill St, Atlanta,GA,30301 +274450,Wired Headphones,1,11.99,2019-10-25 12:49:00,805 Hill St, Atlanta,GA,30301 +274451,27in 4K Gaming Monitor,1,389.99,2019-10-19 08:06:00,264 Johnson St, Dallas,TX,75001 +274452,iPhone,1,700.0,2019-10-19 19:35:00,10 8th St, Seattle,WA,98101 +274453,Bose SoundSport Headphones,1,99.99,2019-10-15 13:52:00,928 Meadow St, Atlanta,GA,30301 +274454,20in Monitor,1,109.99,2019-10-03 19:39:00,945 6th St, Los Angeles,CA,90001 +274455,Apple Airpods Headphones,1,150.0,2019-10-02 14:01:00,378 4th St, Los Angeles,CA,90001 +274456,AA Batteries (4-pack),1,3.84,2019-10-01 17:21:00,452 Madison St, Dallas,TX,75001 +274457,AA Batteries (4-pack),1,3.84,2019-10-09 19:34:00,204 Cedar St, San Francisco,CA,94016 +274458,Google Phone,1,600.0,2019-10-04 22:31:00,663 Wilson St, Los Angeles,CA,90001 +274459,Lightning Charging Cable,1,14.95,2019-10-19 13:59:00,154 Wilson St, Portland,OR,97035 +274460,USB-C Charging Cable,1,11.95,2019-10-14 19:27:00,679 Lake St, San Francisco,CA,94016 +274461,Wired Headphones,1,11.99,2019-10-21 11:17:00,15 8th St, San Francisco,CA,94016 +274462,AA Batteries (4-pack),1,3.84,2019-10-30 10:11:00,168 Center St, Portland,OR,97035 +274463,Wired Headphones,1,11.99,2019-10-25 14:33:00,852 7th St, Atlanta,GA,30301 +274464,Apple Airpods Headphones,1,150.0,2019-10-02 12:02:00,454 Hill St, Los Angeles,CA,90001 +274465,AA Batteries (4-pack),1,3.84,2019-10-11 09:47:00,336 Washington St, New York City,NY,10001 +274466,27in 4K Gaming Monitor,1,389.99,2019-10-17 06:51:00,427 6th St, Boston,MA,02215 +274467,Lightning Charging Cable,1,14.95,2019-10-21 21:18:00,473 Church St, Dallas,TX,75001 +274468,AA Batteries (4-pack),1,3.84,2019-10-28 22:40:00,246 Jefferson St, Boston,MA,02215 +274469,AA Batteries (4-pack),1,3.84,2019-10-20 20:48:00,407 13th St, Austin,TX,73301 +274470,Lightning Charging Cable,1,14.95,2019-10-08 15:19:00,114 Chestnut St, Atlanta,GA,30301 +274471,AA Batteries (4-pack),2,3.84,2019-10-15 18:27:00,886 Cedar St, San Francisco,CA,94016 +274472,20in Monitor,1,109.99,2019-10-03 10:54:00,662 Spruce St, Portland,OR,97035 +274473,USB-C Charging Cable,1,11.95,2019-10-24 17:27:00,741 Lakeview St, Boston,MA,02215 +274474,Apple Airpods Headphones,1,150.0,2019-10-05 13:39:00,435 Johnson St, San Francisco,CA,94016 +274475,Apple Airpods Headphones,1,150.0,2019-10-23 17:08:00,390 Cedar St, Boston,MA,02215 +274476,20in Monitor,1,109.99,2019-10-03 12:39:00,321 Johnson St, Los Angeles,CA,90001 +274477,Apple Airpods Headphones,1,150.0,2019-10-13 12:42:00,278 Park St, Los Angeles,CA,90001 +274478,AAA Batteries (4-pack),2,2.99,2019-10-15 19:24:00,375 Hickory St, Seattle,WA,98101 +274479,Flatscreen TV,1,300.0,2019-10-12 21:21:00,720 River St, New York City,NY,10001 +274480,USB-C Charging Cable,1,11.95,2019-10-26 18:40:00,908 Chestnut St, Dallas,TX,75001 +274481,Lightning Charging Cable,1,14.95,2019-10-17 22:02:00,792 Main St, Austin,TX,73301 +274482,Apple Airpods Headphones,1,150.0,2019-10-12 12:45:00,562 Highland St, Los Angeles,CA,90001 +274483,Wired Headphones,1,11.99,2019-10-09 22:18:00,196 Meadow St, Seattle,WA,98101 +274484,Vareebadd Phone,1,400.0,2019-10-13 12:33:00,205 Wilson St, Dallas,TX,75001 +274484,USB-C Charging Cable,1,11.95,2019-10-13 12:33:00,205 Wilson St, Dallas,TX,75001 +274485,34in Ultrawide Monitor,1,379.99,2019-10-06 14:49:00,179 10th St, New York City,NY,10001 +274486,Wired Headphones,2,11.99,2019-10-21 08:27:00,274 11th St, Boston,MA,02215 +274487,AAA Batteries (4-pack),2,2.99,2019-10-29 19:31:00,492 South St, San Francisco,CA,94016 +274488,Google Phone,1,600.0,2019-10-22 16:49:00,846 Elm St, Boston,MA,02215 +274489,27in 4K Gaming Monitor,2,389.99,2019-10-23 13:29:00,714 Cherry St, Dallas,TX,75001 +274490,Lightning Charging Cable,1,14.95,2019-10-29 13:46:00,234 Forest St, Los Angeles,CA,90001 +274491,AA Batteries (4-pack),1,3.84,2019-10-20 00:22:00,369 13th St, San Francisco,CA,94016 +274492,Bose SoundSport Headphones,1,99.99,2019-10-27 17:38:00,504 10th St, San Francisco,CA,94016 +274493,Lightning Charging Cable,1,14.95,2019-10-03 03:11:00,411 Johnson St, San Francisco,CA,94016 +274494,Wired Headphones,1,11.99,2019-10-13 21:34:00,127 Main St, Boston,MA,02215 +274495,Lightning Charging Cable,1,14.95,2019-10-12 15:38:00,102 Center St, Portland,OR,97035 +274496,ThinkPad Laptop,1,999.99,2019-10-13 20:51:00,271 Madison St, Dallas,TX,75001 +274497,AA Batteries (4-pack),1,3.84,2019-10-25 15:15:00,773 9th St, Dallas,TX,75001 +274498,Bose SoundSport Headphones,1,99.99,2019-10-19 00:41:00,408 Maple St, Los Angeles,CA,90001 +274499,Lightning Charging Cable,1,14.95,2019-10-04 22:58:00,994 Chestnut St, San Francisco,CA,94016 +274500,USB-C Charging Cable,1,11.95,2019-10-07 18:38:00,624 14th St, Los Angeles,CA,90001 +274501,Bose SoundSport Headphones,1,99.99,2019-10-23 07:07:00,560 1st St, Los Angeles,CA,90001 +274502,Google Phone,1,600.0,2019-10-23 11:52:00,916 Meadow St, San Francisco,CA,94016 +274503,27in 4K Gaming Monitor,1,389.99,2019-10-06 13:04:00,725 Hill St, San Francisco,CA,94016 +274504,USB-C Charging Cable,1,11.95,2019-10-01 14:21:00,623 Forest St, San Francisco,CA,94016 +274505,Wired Headphones,1,11.99,2019-10-16 10:31:00,833 Madison St, Boston,MA,02215 +274506,Lightning Charging Cable,1,14.95,2019-10-24 00:45:00,502 Sunset St, Los Angeles,CA,90001 +274507,AAA Batteries (4-pack),1,2.99,2019-10-09 21:55:00,200 Spruce St, Austin,TX,73301 +274508,AAA Batteries (4-pack),1,2.99,2019-10-24 08:55:00,274 Adams St, San Francisco,CA,94016 +274509,LG Dryer,1,600.0,2019-10-10 15:01:00,936 7th St, Seattle,WA,98101 +274510,Wired Headphones,1,11.99,2019-10-09 21:44:00,820 11th St, Los Angeles,CA,90001 +274511,Bose SoundSport Headphones,1,99.99,2019-10-01 18:52:00,118 Elm St, Los Angeles,CA,90001 +274512,Apple Airpods Headphones,1,150.0,2019-10-05 01:56:00,206 Spruce St, Atlanta,GA,30301 +274513,USB-C Charging Cable,1,11.95,2019-10-25 16:38:00,204 Jackson St, San Francisco,CA,94016 +274514,iPhone,1,700.0,2019-10-09 10:05:00,931 Willow St, Austin,TX,73301 +274515,Wired Headphones,1,11.99,2019-10-06 10:19:00,43 Dogwood St, Dallas,TX,75001 +274516,Apple Airpods Headphones,1,150.0,2019-10-18 15:38:00,838 Cherry St, Boston,MA,02215 +274517,USB-C Charging Cable,1,11.95,2019-10-26 00:22:00,219 Walnut St, Dallas,TX,75001 +274518,AAA Batteries (4-pack),1,2.99,2019-10-05 23:07:00,268 10th St, Seattle,WA,98101 +274519,Lightning Charging Cable,2,14.95,2019-10-26 21:36:00,188 Sunset St, Dallas,TX,75001 +274520,20in Monitor,1,109.99,2019-10-07 12:58:00,668 2nd St, San Francisco,CA,94016 +274521,Apple Airpods Headphones,1,150.0,2019-10-29 03:12:00,369 Jefferson St, Boston,MA,02215 +274522,Bose SoundSport Headphones,1,99.99,2019-10-05 10:31:00,751 1st St, New York City,NY,10001 +274523,USB-C Charging Cable,1,11.95,2019-10-20 21:11:00,405 Pine St, San Francisco,CA,94016 +274524,Apple Airpods Headphones,1,150.0,2019-10-28 13:27:00,483 Maple St, Boston,MA,02215 +274525,Wired Headphones,1,11.99,2019-10-24 18:32:00,367 10th St, Boston,MA,02215 +274526,AA Batteries (4-pack),1,3.84,2019-10-18 20:32:00,202 Cedar St, San Francisco,CA,94016 +274527,USB-C Charging Cable,1,11.95,2019-10-22 08:21:00,100 Highland St, San Francisco,CA,94016 +274528,27in 4K Gaming Monitor,1,389.99,2019-10-20 12:59:00,570 Meadow St, New York City,NY,10001 +274529,Apple Airpods Headphones,1,150.0,2019-10-24 22:32:00,217 Church St, San Francisco,CA,94016 +274530,Apple Airpods Headphones,1,150.0,2019-10-07 18:19:00,910 6th St, New York City,NY,10001 +274531,Bose SoundSport Headphones,1,99.99,2019-10-29 21:16:00,383 Wilson St, Portland,OR,97035 +274532,USB-C Charging Cable,1,11.95,2019-10-28 19:31:00,7 Cherry St, San Francisco,CA,94016 +274533,Wired Headphones,1,11.99,2019-10-31 16:10:00,808 Lake St, Austin,TX,73301 +274534,Lightning Charging Cable,1,14.95,2019-10-09 18:38:00,55 North St, Atlanta,GA,30301 +274535,Flatscreen TV,1,300.0,2019-10-02 08:41:00,327 Madison St, Los Angeles,CA,90001 +274536,Lightning Charging Cable,1,14.95,2019-10-03 16:53:00,150 Park St, Dallas,TX,75001 +274537,20in Monitor,1,109.99,2019-10-04 18:44:00,306 River St, Austin,TX,73301 +274538,Wired Headphones,2,11.99,2019-10-26 04:19:00,423 Main St, San Francisco,CA,94016 +274539,AAA Batteries (4-pack),1,2.99,2019-10-21 21:56:00,548 Dogwood St, San Francisco,CA,94016 +274540,AA Batteries (4-pack),1,3.84,2019-10-04 11:33:00,716 Cherry St, Los Angeles,CA,90001 +274541,iPhone,1,700.0,2019-10-04 01:42:00,638 Main St, San Francisco,CA,94016 +274541,Wired Headphones,1,11.99,2019-10-04 01:42:00,638 Main St, San Francisco,CA,94016 +274542,USB-C Charging Cable,1,11.95,2019-10-10 08:32:00,990 Hickory St, Seattle,WA,98101 +274543,AA Batteries (4-pack),2,3.84,2019-10-17 12:45:00,399 2nd St, Los Angeles,CA,90001 +274544,Wired Headphones,1,11.99,2019-10-12 18:13:00,124 4th St, San Francisco,CA,94016 +274545,Flatscreen TV,1,300.0,2019-10-26 08:58:00,674 Washington St, Los Angeles,CA,90001 +274546,AAA Batteries (4-pack),1,2.99,2019-10-17 15:28:00,892 12th St, Boston,MA,02215 +274547,Google Phone,1,600.0,2019-10-24 07:27:00,927 Center St, Atlanta,GA,30301 +274548,USB-C Charging Cable,1,11.95,2019-10-27 10:25:00,664 Willow St, Seattle,WA,98101 +274549,AAA Batteries (4-pack),1,2.99,2019-10-08 16:36:00,473 Lincoln St, Boston,MA,02215 +274550,AAA Batteries (4-pack),1,2.99,2019-10-07 19:16:00,353 8th St, New York City,NY,10001 +274551,iPhone,1,700.0,2019-10-25 19:39:00,174 Hill St, Los Angeles,CA,90001 +274551,Apple Airpods Headphones,1,150.0,2019-10-25 19:39:00,174 Hill St, Los Angeles,CA,90001 +274552,Lightning Charging Cable,1,14.95,2019-10-17 10:43:00,469 12th St, Austin,TX,73301 +274553,Macbook Pro Laptop,1,1700.0,2019-10-13 10:23:00,468 Jefferson St, San Francisco,CA,94016 +274554,Wired Headphones,1,11.99,2019-10-05 20:21:00,755 1st St, Seattle,WA,98101 +274555,27in 4K Gaming Monitor,1,389.99,2019-10-17 14:05:00,767 1st St, Portland,OR,97035 +274556,ThinkPad Laptop,1,999.99,2019-10-14 19:51:00,370 North St, New York City,NY,10001 +274557,Macbook Pro Laptop,1,1700.0,2019-10-06 21:09:00,386 Forest St, New York City,NY,10001 +274558,Apple Airpods Headphones,1,150.0,2019-10-03 15:40:00,956 Adams St, New York City,NY,10001 +274559,AAA Batteries (4-pack),3,2.99,2019-10-02 12:16:00,988 Highland St, Seattle,WA,98101 +274560,AA Batteries (4-pack),1,3.84,2019-10-26 18:41:00,819 Dogwood St, Los Angeles,CA,90001 +274561,Flatscreen TV,1,300.0,2019-10-15 11:37:00,244 North St, Dallas,TX,75001 +274562,Google Phone,1,600.0,2019-10-06 10:44:00,617 Lincoln St, New York City,NY,10001 +274563,Flatscreen TV,1,300.0,2019-10-06 01:52:00,862 Center St, New York City,NY,10001 +274564,USB-C Charging Cable,1,11.95,2019-10-13 09:30:00,984 12th St, Boston,MA,02215 +274565,34in Ultrawide Monitor,1,379.99,2019-10-19 16:05:00,294 2nd St, Los Angeles,CA,90001 +274566,27in FHD Monitor,1,149.99,2019-10-02 13:30:00,752 Hill St, Seattle,WA,98101 +274567,34in Ultrawide Monitor,2,379.99,2019-10-17 15:22:00,994 Lakeview St, Atlanta,GA,30301 +274568,34in Ultrawide Monitor,1,379.99,2019-10-16 17:55:00,386 5th St, San Francisco,CA,94016 +274569,34in Ultrawide Monitor,1,379.99,2019-10-15 21:58:00,879 Park St, San Francisco,CA,94016 +274569,Bose SoundSport Headphones,1,99.99,2019-10-15 21:58:00,879 Park St, San Francisco,CA,94016 +274570,Lightning Charging Cable,1,14.95,2019-10-28 21:56:00,33 11th St, Atlanta,GA,30301 +274571,Bose SoundSport Headphones,1,99.99,2019-10-22 02:42:00,468 Lincoln St, Boston,MA,02215 +274572,USB-C Charging Cable,1,11.95,2019-10-09 11:15:00,213 7th St, Dallas,TX,75001 +274573,Flatscreen TV,1,300.0,2019-10-27 11:57:00,731 Elm St, Atlanta,GA,30301 +274574,Lightning Charging Cable,1,14.95,2019-10-28 10:45:00,961 12th St, San Francisco,CA,94016 +274575,Macbook Pro Laptop,1,1700.0,2019-10-22 06:43:00,212 River St, Portland,ME,04101 +274576,USB-C Charging Cable,1,11.95,2019-10-19 20:19:00,682 River St, Seattle,WA,98101 +274577,ThinkPad Laptop,1,999.99,2019-10-15 17:18:00,611 11th St, Portland,OR,97035 +274578,AAA Batteries (4-pack),1,2.99,2019-10-25 20:52:00,703 Willow St, San Francisco,CA,94016 +274579,Bose SoundSport Headphones,1,99.99,2019-10-06 10:24:00,97 Jackson St, Dallas,TX,75001 +274580,Bose SoundSport Headphones,1,99.99,2019-10-14 20:48:00,661 Elm St, New York City,NY,10001 +274581,Wired Headphones,1,11.99,2019-10-01 06:18:00,303 12th St, Seattle,WA,98101 +274582,Lightning Charging Cable,1,14.95,2019-10-13 23:41:00,114 Meadow St, Seattle,WA,98101 +274583,Apple Airpods Headphones,1,150.0,2019-10-17 09:09:00,443 Cherry St, Los Angeles,CA,90001 +274584,Vareebadd Phone,1,400.0,2019-10-07 15:32:00,386 Spruce St, Dallas,TX,75001 +274585,USB-C Charging Cable,1,11.95,2019-10-03 11:16:00,960 5th St, New York City,NY,10001 +274586,Bose SoundSport Headphones,1,99.99,2019-10-05 08:55:00,476 11th St, San Francisco,CA,94016 +274587,Lightning Charging Cable,1,14.95,2019-10-27 19:23:00,151 Lake St, Seattle,WA,98101 +274588,Google Phone,1,600.0,2019-10-26 19:32:00,60 Hickory St, New York City,NY,10001 +274588,Wired Headphones,1,11.99,2019-10-26 19:32:00,60 Hickory St, New York City,NY,10001 +274589,AAA Batteries (4-pack),1,2.99,2019-10-09 07:50:00,243 Meadow St, San Francisco,CA,94016 +274590,AAA Batteries (4-pack),1,2.99,2019-10-28 18:16:00,915 Jackson St, Boston,MA,02215 +274591,Flatscreen TV,1,300.0,2019-10-08 11:27:00,647 West St, Austin,TX,73301 +274592,Google Phone,1,600.0,2019-10-12 06:01:00,404 Sunset St, Boston,MA,02215 +274593,AA Batteries (4-pack),1,3.84,2019-10-07 19:35:00,607 Hickory St, Austin,TX,73301 +274594,USB-C Charging Cable,1,11.95,2019-10-01 20:44:00,887 Forest St, New York City,NY,10001 +274594,AA Batteries (4-pack),1,3.84,2019-10-01 20:44:00,887 Forest St, New York City,NY,10001 +274595,USB-C Charging Cable,2,11.95,2019-10-16 13:59:00,185 14th St, New York City,NY,10001 +274596,iPhone,1,700.0,2019-10-13 17:37:00,395 Church St, San Francisco,CA,94016 +274597,Bose SoundSport Headphones,1,99.99,2019-10-01 15:05:00,866 7th St, San Francisco,CA,94016 +274598,Lightning Charging Cable,1,14.95,2019-10-31 13:11:00,153 Church St, Portland,OR,97035 +274599,Lightning Charging Cable,1,14.95,2019-10-25 18:00:00,721 Dogwood St, New York City,NY,10001 +274600,Wired Headphones,1,11.99,2019-10-04 12:12:00,180 Main St, San Francisco,CA,94016 +274601,AAA Batteries (4-pack),1,2.99,2019-10-29 18:47:00,247 Dogwood St, New York City,NY,10001 +274602,Wired Headphones,1,11.99,2019-10-04 11:32:00,463 South St, Boston,MA,02215 +274603,LG Dryer,1,600.0,2019-10-06 18:20:00,842 14th St, San Francisco,CA,94016 +274604,Bose SoundSport Headphones,1,99.99,2019-10-10 12:02:00,378 South St, New York City,NY,10001 +274605,Lightning Charging Cable,1,14.95,2019-10-15 09:48:00,965 10th St, Los Angeles,CA,90001 +274606,AAA Batteries (4-pack),1,2.99,2019-10-15 15:42:00,71 Highland St, New York City,NY,10001 +274607,Google Phone,1,600.0,2019-10-26 09:53:00,691 Jackson St, San Francisco,CA,94016 +274608,Wired Headphones,1,11.99,2019-10-01 14:33:00,719 Washington St, New York City,NY,10001 +274609,20in Monitor,1,109.99,2019-10-07 21:14:00,916 Church St, Austin,TX,73301 +274610,AAA Batteries (4-pack),1,2.99,2019-10-24 19:07:00,392 Cedar St, Los Angeles,CA,90001 +274611,Lightning Charging Cable,1,14.95,2019-10-12 17:03:00,611 Johnson St, San Francisco,CA,94016 +274612,ThinkPad Laptop,1,999.99,2019-10-13 13:27:00,190 5th St, Dallas,TX,75001 +274613,Wired Headphones,2,11.99,2019-10-23 19:10:00,228 4th St, Los Angeles,CA,90001 +274614,Macbook Pro Laptop,1,1700.0,2019-10-22 12:26:00,746 Center St, San Francisco,CA,94016 +274615,34in Ultrawide Monitor,1,379.99,2019-10-05 11:45:00,441 Main St, New York City,NY,10001 +274616,Lightning Charging Cable,1,14.95,2019-10-06 07:13:00,861 West St, Los Angeles,CA,90001 +274617,Lightning Charging Cable,1,14.95,2019-10-10 21:06:00,206 14th St, New York City,NY,10001 +274618,Wired Headphones,1,11.99,2019-10-01 16:52:00,789 1st St, San Francisco,CA,94016 +274619,Flatscreen TV,1,300.0,2019-10-15 18:22:00,850 Sunset St, Seattle,WA,98101 +274620,Apple Airpods Headphones,1,150.0,2019-10-17 21:01:00,226 Jefferson St, Portland,OR,97035 +274621,27in 4K Gaming Monitor,1,389.99,2019-10-07 11:50:00,139 Church St, Los Angeles,CA,90001 +274622,AA Batteries (4-pack),2,3.84,2019-10-22 15:03:00,210 River St, Portland,OR,97035 +274623,20in Monitor,1,109.99,2019-10-02 23:16:00,860 13th St, Dallas,TX,75001 +274624,AA Batteries (4-pack),1,3.84,2019-10-19 16:38:00,688 Lake St, San Francisco,CA,94016 +274625,AA Batteries (4-pack),1,3.84,2019-10-21 10:37:00,729 4th St, Dallas,TX,75001 +274626,Apple Airpods Headphones,1,150.0,2019-10-20 22:29:00,300 South St, Seattle,WA,98101 +274627,Google Phone,1,600.0,2019-10-21 09:54:00,380 Ridge St, Dallas,TX,75001 +274628,Lightning Charging Cable,1,14.95,2019-10-23 17:43:00,993 North St, Austin,TX,73301 +274629,Vareebadd Phone,1,400.0,2019-10-23 06:05:00,470 North St, San Francisco,CA,94016 +274630,27in 4K Gaming Monitor,1,389.99,2019-10-08 01:23:00,581 Hickory St, Boston,MA,02215 +274631,Apple Airpods Headphones,1,150.0,2019-10-28 16:39:00,836 Pine St, Dallas,TX,75001 +274631,AAA Batteries (4-pack),2,2.99,2019-10-28 16:39:00,836 Pine St, Dallas,TX,75001 +274632,AA Batteries (4-pack),1,3.84,2019-10-28 22:19:00,950 Center St, Boston,MA,02215 +274633,Bose SoundSport Headphones,1,99.99,2019-10-28 17:42:00,340 Chestnut St, San Francisco,CA,94016 +274634,Wired Headphones,1,11.99,2019-10-30 23:18:00,889 Maple St, Boston,MA,02215 +274635,Flatscreen TV,1,300.0,2019-10-21 05:07:00,119 Highland St, Seattle,WA,98101 +274636,AAA Batteries (4-pack),4,2.99,2019-10-01 13:48:00,890 Elm St, San Francisco,CA,94016 +274637,iPhone,1,700.0,2019-10-21 19:08:00,592 Washington St, Los Angeles,CA,90001 +274638,USB-C Charging Cable,1,11.95,2019-10-10 21:59:00,982 Hickory St, Los Angeles,CA,90001 +274639,ThinkPad Laptop,1,999.99,2019-10-18 23:11:00,223 5th St, Atlanta,GA,30301 +274640,Wired Headphones,1,11.99,2019-10-14 12:46:00,754 Chestnut St, Dallas,TX,75001 +274641,20in Monitor,1,109.99,2019-10-22 11:54:00,958 Johnson St, New York City,NY,10001 +274642,Lightning Charging Cable,1,14.95,2019-10-15 11:18:00,591 Jefferson St, Atlanta,GA,30301 +274643,Apple Airpods Headphones,1,150.0,2019-10-02 14:24:00,343 14th St, Atlanta,GA,30301 +274644,iPhone,1,700.0,2019-10-30 11:30:00,597 Center St, Dallas,TX,75001 +274644,Lightning Charging Cable,1,14.95,2019-10-30 11:30:00,597 Center St, Dallas,TX,75001 +274645,27in FHD Monitor,1,149.99,2019-10-24 09:44:00,533 Johnson St, Boston,MA,02215 +274646,AAA Batteries (4-pack),1,2.99,2019-10-09 08:16:00,639 Maple St, San Francisco,CA,94016 +274647,USB-C Charging Cable,1,11.95,2019-10-01 07:38:00,624 7th St, New York City,NY,10001 +274648,USB-C Charging Cable,1,11.95,2019-10-25 13:29:00,155 Spruce St, Portland,OR,97035 +274649,AA Batteries (4-pack),2,3.84,2019-10-28 10:57:00,842 Pine St, Seattle,WA,98101 +274650,Macbook Pro Laptop,1,1700.0,2019-10-15 10:58:00,316 11th St, Atlanta,GA,30301 +274651,Lightning Charging Cable,1,14.95,2019-10-20 20:20:00,900 Lakeview St, San Francisco,CA,94016 +274652,Macbook Pro Laptop,1,1700.0,2019-10-22 17:37:00,496 Lakeview St, Dallas,TX,75001 +274653,Wired Headphones,1,11.99,2019-10-25 15:55:00,275 Lincoln St, Boston,MA,02215 +274654,AAA Batteries (4-pack),1,2.99,2019-10-02 21:08:00,475 1st St, Dallas,TX,75001 +274654,Wired Headphones,1,11.99,2019-10-02 21:08:00,475 1st St, Dallas,TX,75001 +274655,USB-C Charging Cable,1,11.95,2019-10-26 15:22:00,736 North St, San Francisco,CA,94016 +274656,Wired Headphones,2,11.99,2019-10-04 12:17:00,908 Meadow St, Seattle,WA,98101 +274657,Lightning Charging Cable,1,14.95,2019-10-06 00:32:00,590 Chestnut St, Atlanta,GA,30301 +274658,AAA Batteries (4-pack),1,2.99,2019-10-31 20:52:00,151 Lake St, Portland,ME,04101 +274659,Apple Airpods Headphones,1,150.0,2019-10-12 07:17:00,36 Spruce St, Dallas,TX,75001 +274660,AAA Batteries (4-pack),4,2.99,2019-10-24 21:17:00,890 River St, New York City,NY,10001 +274661,Vareebadd Phone,1,400.0,2019-10-05 08:10:00,805 Elm St, New York City,NY,10001 +274662,Lightning Charging Cable,1,14.95,2019-10-08 22:00:00,127 North St, Los Angeles,CA,90001 +274663,AA Batteries (4-pack),1,3.84,2019-10-17 14:48:00,303 Dogwood St, Los Angeles,CA,90001 +274664,Lightning Charging Cable,1,14.95,2019-10-16 08:02:00,349 Pine St, Portland,OR,97035 +274665,iPhone,1,700.0,2019-10-21 08:33:00,112 Church St, Los Angeles,CA,90001 +274666,Flatscreen TV,1,300.0,2019-10-26 18:15:00,380 Cherry St, San Francisco,CA,94016 +274667,AA Batteries (4-pack),1,3.84,2019-10-15 12:03:00,906 Jefferson St, New York City,NY,10001 +274668,AA Batteries (4-pack),1,3.84,2019-10-23 21:03:00,448 1st St, Dallas,TX,75001 +274669,Wired Headphones,1,11.99,2019-10-08 11:10:00,809 Wilson St, New York City,NY,10001 +274670,Wired Headphones,1,11.99,2019-10-28 14:56:00,972 13th St, San Francisco,CA,94016 +274671,AA Batteries (4-pack),1,3.84,2019-10-08 14:53:00,118 Park St, Atlanta,GA,30301 +274672,AA Batteries (4-pack),1,3.84,2019-10-11 10:06:00,841 6th St, San Francisco,CA,94016 +274673,34in Ultrawide Monitor,1,379.99,2019-10-29 08:10:00,753 Cedar St, Los Angeles,CA,90001 +274674,AAA Batteries (4-pack),1,2.99,2019-10-04 22:59:00,383 5th St, New York City,NY,10001 +274675,Lightning Charging Cable,1,14.95,2019-10-20 16:38:00,191 Highland St, San Francisco,CA,94016 +274675,27in 4K Gaming Monitor,1,389.99,2019-10-20 16:38:00,191 Highland St, San Francisco,CA,94016 +274676,ThinkPad Laptop,1,999.99,2019-10-02 21:06:00,618 Jackson St, Los Angeles,CA,90001 +274677,Wired Headphones,1,11.99,2019-10-28 10:04:00,127 Dogwood St, Los Angeles,CA,90001 +274678,LG Washing Machine,1,600.0,2019-10-14 12:58:00,327 Sunset St, New York City,NY,10001 +274679,Wired Headphones,1,11.99,2019-10-27 22:13:00,502 Lake St, Los Angeles,CA,90001 +274680,USB-C Charging Cable,1,11.95,2019-10-15 11:10:00,362 Jefferson St, New York City,NY,10001 +274681,Lightning Charging Cable,1,14.95,2019-10-09 10:47:00,603 9th St, New York City,NY,10001 +274682,Bose SoundSport Headphones,1,99.99,2019-10-04 14:52:00,686 12th St, Boston,MA,02215 +274683,20in Monitor,1,109.99,2019-10-28 12:47:00,327 North St, Seattle,WA,98101 +274684,Wired Headphones,1,11.99,2019-10-22 19:31:00,76 2nd St, San Francisco,CA,94016 +274685,Lightning Charging Cable,1,14.95,2019-10-27 19:37:00,112 North St, San Francisco,CA,94016 +274686,Google Phone,1,600.0,2019-10-04 18:53:00,135 6th St, Boston,MA,02215 +274687,AAA Batteries (4-pack),2,2.99,2019-10-15 13:23:00,91 10th St, Los Angeles,CA,90001 +274688,USB-C Charging Cable,1,11.95,2019-10-31 19:01:00,74 Cherry St, Atlanta,GA,30301 +274689,20in Monitor,1,109.99,2019-10-02 18:57:00,385 Cherry St, Dallas,TX,75001 +274690,USB-C Charging Cable,1,11.95,2019-10-07 06:13:00,793 Lake St, Boston,MA,02215 +274691,AAA Batteries (4-pack),1,2.99,2019-10-28 10:01:00,432 Center St, Los Angeles,CA,90001 +274692,AA Batteries (4-pack),1,3.84,2019-10-21 15:08:00,509 9th St, Portland,OR,97035 +274693,USB-C Charging Cable,1,11.95,2019-10-06 14:21:00,627 Jackson St, San Francisco,CA,94016 +274694,Lightning Charging Cable,1,14.95,2019-10-08 14:58:00,376 Lakeview St, Boston,MA,02215 +274695,Lightning Charging Cable,1,14.95,2019-10-20 11:07:00,901 Lincoln St, Austin,TX,73301 +274696,AAA Batteries (4-pack),6,2.99,2019-10-19 14:50:00,869 Pine St, Dallas,TX,75001 +274697,Wired Headphones,1,11.99,2019-10-01 07:23:00,822 North St, San Francisco,CA,94016 +274698,USB-C Charging Cable,1,11.95,2019-10-09 11:45:00,374 Madison St, Dallas,TX,75001 +274699,iPhone,1,700.0,2019-10-18 17:26:00,741 Cherry St, Seattle,WA,98101 +274700,Lightning Charging Cable,1,14.95,2019-10-04 16:08:00,913 10th St, Los Angeles,CA,90001 +274701,AAA Batteries (4-pack),1,2.99,2019-10-12 20:36:00,85 Meadow St, Dallas,TX,75001 +274702,USB-C Charging Cable,2,11.95,2019-10-12 18:48:00,132 5th St, New York City,NY,10001 +274703,Wired Headphones,1,11.99,2019-10-26 20:44:00,701 Dogwood St, San Francisco,CA,94016 +274704,Apple Airpods Headphones,1,150.0,2019-10-31 15:47:00,146 Maple St, Los Angeles,CA,90001 +274705,USB-C Charging Cable,1,11.95,2019-10-18 14:24:00,188 Washington St, New York City,NY,10001 +274706,Apple Airpods Headphones,1,150.0,2019-10-18 12:11:00,460 7th St, Austin,TX,73301 +274707,Bose SoundSport Headphones,1,99.99,2019-10-18 13:03:00,418 Lincoln St, Dallas,TX,75001 +274708,ThinkPad Laptop,1,999.99,2019-10-09 14:33:00,842 Washington St, Portland,OR,97035 +274709,Lightning Charging Cable,2,14.95,2019-10-09 07:42:00,152 Sunset St, Austin,TX,73301 +274710,iPhone,1,700.0,2019-10-10 19:58:00,722 Cedar St, Los Angeles,CA,90001 +274711,Wired Headphones,1,11.99,2019-10-29 13:36:00,78 Pine St, Los Angeles,CA,90001 +274712,Lightning Charging Cable,1,14.95,2019-10-19 08:38:00,38 Lake St, New York City,NY,10001 +274713,Bose SoundSport Headphones,1,99.99,2019-10-03 17:35:00,365 Cedar St, Dallas,TX,75001 +274714,Bose SoundSport Headphones,1,99.99,2019-10-31 20:59:00,282 Jefferson St, Los Angeles,CA,90001 +274715,Apple Airpods Headphones,1,150.0,2019-10-19 21:23:00,586 Ridge St, Atlanta,GA,30301 +274716,USB-C Charging Cable,1,11.95,2019-10-05 22:48:00,323 8th St, Los Angeles,CA,90001 +274717,Wired Headphones,2,11.99,2019-10-23 17:20:00,993 Church St, San Francisco,CA,94016 +274718,AAA Batteries (4-pack),3,2.99,2019-10-31 15:23:00,815 Johnson St, Dallas,TX,75001 +274719,ThinkPad Laptop,1,999.99,2019-10-18 21:30:00,176 Dogwood St, Portland,OR,97035 +274720,USB-C Charging Cable,1,11.95,2019-10-02 20:36:00,614 Center St, New York City,NY,10001 +274721,34in Ultrawide Monitor,1,379.99,2019-10-08 10:45:00,572 Cherry St, Atlanta,GA,30301 +274722,27in 4K Gaming Monitor,1,389.99,2019-10-04 16:54:00,755 Lakeview St, Boston,MA,02215 +274723,AA Batteries (4-pack),1,3.84,2019-10-19 16:19:00,421 11th St, Boston,MA,02215 +274724,Bose SoundSport Headphones,1,99.99,2019-10-24 19:17:00,619 11th St, Seattle,WA,98101 +274725,iPhone,1,700.0,2019-10-23 17:26:00,76 Cherry St, New York City,NY,10001 +274726,27in 4K Gaming Monitor,1,389.99,2019-10-27 12:19:00,794 11th St, Austin,TX,73301 +274727,Google Phone,1,600.0,2019-10-27 22:25:00,42 Maple St, Dallas,TX,75001 +274727,USB-C Charging Cable,1,11.95,2019-10-27 22:25:00,42 Maple St, Dallas,TX,75001 +274728,iPhone,1,700.0,2019-10-25 12:36:00,345 5th St, Los Angeles,CA,90001 +274729,USB-C Charging Cable,1,11.95,2019-10-28 23:03:00,448 Lake St, Portland,OR,97035 +274730,Apple Airpods Headphones,1,150.0,2019-10-17 12:36:00,183 Lincoln St, Los Angeles,CA,90001 +274731,AAA Batteries (4-pack),1,2.99,2019-10-25 10:18:00,790 Lincoln St, Los Angeles,CA,90001 +274732,Wired Headphones,1,11.99,2019-10-17 21:52:00,312 Wilson St, Atlanta,GA,30301 +274733,Lightning Charging Cable,1,14.95,2019-10-01 12:55:00,555 South St, Austin,TX,73301 +274734,AA Batteries (4-pack),2,3.84,2019-10-14 17:15:00,940 Madison St, San Francisco,CA,94016 +274735,AA Batteries (4-pack),1,3.84,2019-10-04 18:50:00,703 Church St, Atlanta,GA,30301 +274736,Apple Airpods Headphones,1,150.0,2019-10-29 07:00:00,991 Jefferson St, New York City,NY,10001 +274737,Lightning Charging Cable,1,14.95,2019-10-09 14:00:00,585 8th St, San Francisco,CA,94016 +274738,Apple Airpods Headphones,1,150.0,2019-10-06 13:51:00,761 Meadow St, San Francisco,CA,94016 +274739,AAA Batteries (4-pack),1,2.99,2019-10-18 12:32:00,60 Spruce St, Boston,MA,02215 +274740,Apple Airpods Headphones,1,150.0,2019-10-05 22:14:00,164 Forest St, Atlanta,GA,30301 +274741,AA Batteries (4-pack),2,3.84,2019-10-04 11:19:00,920 Meadow St, New York City,NY,10001 +274742,Apple Airpods Headphones,1,150.0,2019-10-06 10:08:00,754 Highland St, Boston,MA,02215 +274743,Lightning Charging Cable,1,14.95,2019-10-15 17:52:00,784 11th St, New York City,NY,10001 +274744,AAA Batteries (4-pack),1,2.99,2019-10-22 11:11:00,688 Jefferson St, Portland,OR,97035 +274745,Wired Headphones,1,11.99,2019-10-19 20:13:00,277 14th St, New York City,NY,10001 +274746,Lightning Charging Cable,1,14.95,2019-10-18 16:19:00,881 Dogwood St, Portland,ME,04101 +274747,Bose SoundSport Headphones,1,99.99,2019-10-08 12:35:00,448 8th St, San Francisco,CA,94016 +274748,27in 4K Gaming Monitor,1,389.99,2019-10-29 23:40:00,638 8th St, New York City,NY,10001 +274748,AAA Batteries (4-pack),1,2.99,2019-10-29 23:40:00,638 8th St, New York City,NY,10001 +274749,USB-C Charging Cable,1,11.95,2019-10-25 21:23:00,303 Johnson St, Seattle,WA,98101 +274750,AAA Batteries (4-pack),1,2.99,2019-10-19 20:57:00,68 Forest St, Dallas,TX,75001 +274751,Bose SoundSport Headphones,1,99.99,2019-10-17 10:36:00,956 Lake St, Los Angeles,CA,90001 +274752,ThinkPad Laptop,1,999.99,2019-10-07 08:49:00,109 Cedar St, Seattle,WA,98101 +274753,AAA Batteries (4-pack),1,2.99,2019-10-24 09:08:00,869 Chestnut St, Dallas,TX,75001 +274754,USB-C Charging Cable,1,11.95,2019-10-09 18:10:00,351 Maple St, Boston,MA,02215 +274755,Bose SoundSport Headphones,1,99.99,2019-10-18 17:23:00,906 Chestnut St, San Francisco,CA,94016 +274756,AA Batteries (4-pack),1,3.84,2019-10-16 00:02:00,198 10th St, Los Angeles,CA,90001 +274757,USB-C Charging Cable,1,11.95,2019-10-27 21:11:00,396 Washington St, Austin,TX,73301 +274758,AA Batteries (4-pack),1,3.84,2019-10-20 13:50:00,925 North St, San Francisco,CA,94016 +274759,Apple Airpods Headphones,1,150.0,2019-10-26 21:51:00,721 Pine St, Seattle,WA,98101 +274760,27in FHD Monitor,1,149.99,2019-10-08 23:25:00,228 4th St, San Francisco,CA,94016 +274761,Bose SoundSport Headphones,1,99.99,2019-10-02 15:51:00,467 13th St, Los Angeles,CA,90001 +274762,Macbook Pro Laptop,1,1700.0,2019-10-02 18:48:00,739 Pine St, San Francisco,CA,94016 +274762,34in Ultrawide Monitor,1,379.99,2019-10-02 18:48:00,739 Pine St, San Francisco,CA,94016 +274763,Wired Headphones,1,11.99,2019-10-15 11:14:00,482 Maple St, San Francisco,CA,94016 +274764,USB-C Charging Cable,1,11.95,2019-10-19 18:43:00,45 Meadow St, Boston,MA,02215 +274765,Wired Headphones,1,11.99,2019-10-06 15:23:00,589 2nd St, Portland,ME,04101 +274766,Apple Airpods Headphones,1,150.0,2019-10-19 17:05:00,338 14th St, New York City,NY,10001 +274767,Lightning Charging Cable,1,14.95,2019-10-23 13:45:00,942 Spruce St, San Francisco,CA,94016 +274768,AAA Batteries (4-pack),1,2.99,2019-10-25 02:57:00,546 South St, Atlanta,GA,30301 +274769,20in Monitor,1,109.99,2019-10-21 14:25:00,143 Center St, Austin,TX,73301 +274770,AA Batteries (4-pack),1,3.84,2019-10-02 18:30:00,892 14th St, Los Angeles,CA,90001 +274771,Wired Headphones,1,11.99,2019-10-15 00:13:00,263 8th St, Dallas,TX,75001 +274772,27in FHD Monitor,1,149.99,2019-10-21 19:17:00,449 Madison St, Dallas,TX,75001 +274773,USB-C Charging Cable,1,11.95,2019-10-26 00:33:00,493 2nd St, Boston,MA,02215 +274774,27in FHD Monitor,1,149.99,2019-10-15 16:55:00,4 13th St, Atlanta,GA,30301 +274775,AA Batteries (4-pack),2,3.84,2019-10-27 03:24:00,813 Highland St, Seattle,WA,98101 +274776,USB-C Charging Cable,1,11.95,2019-10-10 19:21:00,759 West St, Dallas,TX,75001 +274777,20in Monitor,1,109.99,2019-10-23 15:24:00,284 Jackson St, Los Angeles,CA,90001 +274778,Lightning Charging Cable,1,14.95,2019-10-13 11:21:00,626 Jefferson St, Austin,TX,73301 +274779,Wired Headphones,1,11.99,2019-10-20 20:08:00,1 Jackson St, Los Angeles,CA,90001 +274780,Bose SoundSport Headphones,1,99.99,2019-10-31 17:32:00,785 Pine St, Seattle,WA,98101 +274781,AA Batteries (4-pack),1,3.84,2019-10-27 12:25:00,589 12th St, New York City,NY,10001 +274782,USB-C Charging Cable,1,11.95,2019-10-03 09:16:00,389 Adams St, Atlanta,GA,30301 +274783,USB-C Charging Cable,1,11.95,2019-10-14 22:06:00,799 Highland St, Portland,OR,97035 +274784,AAA Batteries (4-pack),2,2.99,2019-10-30 08:37:00,73 Main St, Portland,ME,04101 +274785,Lightning Charging Cable,1,14.95,2019-10-04 20:56:00,540 Church St, San Francisco,CA,94016 +274786,ThinkPad Laptop,1,999.99,2019-10-28 11:22:00,796 Dogwood St, San Francisco,CA,94016 +274787,Flatscreen TV,1,300.0,2019-10-03 14:05:00,43 Johnson St, Portland,OR,97035 +274788,AAA Batteries (4-pack),1,2.99,2019-10-07 14:07:00,8 Meadow St, San Francisco,CA,94016 +274789,27in FHD Monitor,1,149.99,2019-10-30 14:00:00,441 7th St, San Francisco,CA,94016 +274790,iPhone,1,700.0,2019-10-20 16:18:00,904 Chestnut St, San Francisco,CA,94016 +274791,AA Batteries (4-pack),2,3.84,2019-10-12 20:31:00,490 Jefferson St, Los Angeles,CA,90001 +274792,Apple Airpods Headphones,1,150.0,2019-10-31 09:28:00,169 7th St, Seattle,WA,98101 +274793,Apple Airpods Headphones,1,150.0,2019-10-26 20:24:00,892 9th St, San Francisco,CA,94016 +274794,USB-C Charging Cable,1,11.95,2019-10-31 18:38:00,373 Hill St, New York City,NY,10001 +274795,20in Monitor,1,109.99,2019-10-26 22:28:00,204 Sunset St, Boston,MA,02215 +274796,Macbook Pro Laptop,1,1700.0,2019-10-18 07:50:00,429 Elm St, New York City,NY,10001 +274797,AA Batteries (4-pack),2,3.84,2019-10-02 00:39:00,977 Dogwood St, Dallas,TX,75001 +274798,USB-C Charging Cable,1,11.95,2019-10-17 15:02:00,109 1st St, San Francisco,CA,94016 +274799,34in Ultrawide Monitor,1,379.99,2019-10-31 11:15:00,785 Jackson St, San Francisco,CA,94016 +274800,AAA Batteries (4-pack),1,2.99,2019-10-23 15:27:00,17 Walnut St, Dallas,TX,75001 +274801,AAA Batteries (4-pack),1,2.99,2019-10-20 13:25:00,789 Maple St, Seattle,WA,98101 +274801,27in 4K Gaming Monitor,1,389.99,2019-10-20 13:25:00,789 Maple St, Seattle,WA,98101 +274802,Macbook Pro Laptop,1,1700.0,2019-10-16 22:50:00,25 South St, Boston,MA,02215 +274803,ThinkPad Laptop,1,999.99,2019-10-25 11:23:00,783 Lincoln St, Atlanta,GA,30301 +274804,USB-C Charging Cable,1,11.95,2019-10-30 08:32:00,118 Jackson St, San Francisco,CA,94016 +274805,USB-C Charging Cable,1,11.95,2019-10-14 07:20:00,617 14th St, Boston,MA,02215 +274806,AAA Batteries (4-pack),3,2.99,2019-10-04 07:15:00,827 Johnson St, Austin,TX,73301 +274807,Apple Airpods Headphones,1,150.0,2019-10-07 12:15:00,268 Jefferson St, San Francisco,CA,94016 +274808,Flatscreen TV,1,300.0,2019-10-31 11:24:00,944 12th St, Los Angeles,CA,90001 +274809,AAA Batteries (4-pack),1,2.99,2019-10-01 14:19:00,212 5th St, Seattle,WA,98101 +274810,27in 4K Gaming Monitor,1,389.99,2019-10-21 20:40:00,47 Maple St, Atlanta,GA,30301 +274811,Apple Airpods Headphones,1,150.0,2019-10-02 10:07:00,259 6th St, Boston,MA,02215 +274812,Lightning Charging Cable,1,14.95,2019-10-23 19:25:00,716 Washington St, San Francisco,CA,94016 +274813,20in Monitor,1,109.99,2019-10-16 19:05:00,864 Cherry St, Dallas,TX,75001 +274814,Wired Headphones,1,11.99,2019-10-04 13:12:00,925 14th St, Austin,TX,73301 +274815,USB-C Charging Cable,1,11.95,2019-10-15 15:00:00,364 5th St, San Francisco,CA,94016 +274816,20in Monitor,1,109.99,2019-10-26 00:18:00,153 Park St, Austin,TX,73301 +274817,AAA Batteries (4-pack),2,2.99,2019-10-20 20:50:00,456 12th St, Portland,OR,97035 +274818,ThinkPad Laptop,1,999.99,2019-10-21 22:37:00,519 Church St, San Francisco,CA,94016 +274819,AA Batteries (4-pack),3,3.84,2019-10-17 22:10:00,478 7th St, Los Angeles,CA,90001 +274820,Wired Headphones,1,11.99,2019-10-01 16:58:00,560 5th St, New York City,NY,10001 +274821,AA Batteries (4-pack),1,3.84,2019-10-20 23:21:00,204 Adams St, Los Angeles,CA,90001 +274822,Lightning Charging Cable,1,14.95,2019-10-09 16:45:00,886 Pine St, Dallas,TX,75001 +274823,Apple Airpods Headphones,1,150.0,2019-10-30 17:47:00,765 Dogwood St, San Francisco,CA,94016 +274824,27in FHD Monitor,1,149.99,2019-10-19 21:06:00,98 Lake St, Portland,ME,04101 +274825,Lightning Charging Cable,1,14.95,2019-10-06 12:22:00,811 Church St, Dallas,TX,75001 +274826,Apple Airpods Headphones,1,150.0,2019-10-25 00:01:00,781 Madison St, Los Angeles,CA,90001 +274827,Vareebadd Phone,1,400.0,2019-10-01 13:06:00,745 Walnut St, Seattle,WA,98101 +274827,USB-C Charging Cable,1,11.95,2019-10-01 13:06:00,745 Walnut St, Seattle,WA,98101 +274828,Bose SoundSport Headphones,1,99.99,2019-10-30 20:24:00,405 Center St, Los Angeles,CA,90001 +274829,Bose SoundSport Headphones,1,99.99,2019-10-28 16:30:00,314 Hill St, San Francisco,CA,94016 +274830,Wired Headphones,1,11.99,2019-10-07 11:38:00,87 Church St, Boston,MA,02215 +274831,Bose SoundSport Headphones,1,99.99,2019-10-26 22:29:00,539 Center St, Boston,MA,02215 +274832,USB-C Charging Cable,1,11.95,2019-10-05 20:19:00,854 Lincoln St, Atlanta,GA,30301 +274833,iPhone,1,700.0,2019-10-23 15:00:00,38 5th St, Los Angeles,CA,90001 +274834,Macbook Pro Laptop,1,1700.0,2019-10-22 09:17:00,205 14th St, Los Angeles,CA,90001 +274835,Lightning Charging Cable,1,14.95,2019-10-09 15:30:00,278 6th St, Portland,OR,97035 +274836,AA Batteries (4-pack),1,3.84,2019-10-21 19:39:00,890 Washington St, Los Angeles,CA,90001 +274837,34in Ultrawide Monitor,1,379.99,2019-10-16 13:13:00,570 Dogwood St, Seattle,WA,98101 +274838,Wired Headphones,1,11.99,2019-10-06 09:22:00,92 9th St, Dallas,TX,75001 +274839,34in Ultrawide Monitor,1,379.99,2019-10-21 16:22:00,277 Center St, Boston,MA,02215 +274840,Flatscreen TV,1,300.0,2019-10-30 15:05:00,980 1st St, Los Angeles,CA,90001 +274841,AA Batteries (4-pack),3,3.84,2019-10-22 13:12:00,107 Spruce St, Los Angeles,CA,90001 +274842,Lightning Charging Cable,1,14.95,2019-10-07 01:06:00,44 Church St, San Francisco,CA,94016 +274843,ThinkPad Laptop,1,999.99,2019-10-01 11:13:00,207 Highland St, Atlanta,GA,30301 +274844,Apple Airpods Headphones,1,150.0,2019-10-16 14:59:00,953 Hill St, Austin,TX,73301 +274845,AAA Batteries (4-pack),3,2.99,2019-10-09 14:09:00,499 7th St, Los Angeles,CA,90001 +274846,Lightning Charging Cable,1,14.95,2019-10-13 11:43:00,125 Madison St, Atlanta,GA,30301 +274847,USB-C Charging Cable,1,11.95,2019-10-14 15:14:00,703 11th St, Los Angeles,CA,90001 +274848,Bose SoundSport Headphones,1,99.99,2019-10-17 12:01:00,963 Walnut St, Boston,MA,02215 +274849,27in FHD Monitor,1,149.99,2019-10-02 21:39:00,950 Church St, Boston,MA,02215 +274850,AA Batteries (4-pack),4,3.84,2019-10-24 14:23:00,767 8th St, Dallas,TX,75001 +274851,Apple Airpods Headphones,1,150.0,2019-10-30 13:07:00,948 Meadow St, San Francisco,CA,94016 +274852,20in Monitor,1,109.99,2019-10-26 21:05:00,426 Jefferson St, Los Angeles,CA,90001 +274853,USB-C Charging Cable,1,11.95,2019-10-07 07:40:00,169 Jackson St, Seattle,WA,98101 +274854,Lightning Charging Cable,1,14.95,2019-10-26 18:00:00,581 Madison St, Portland,OR,97035 +274855,Macbook Pro Laptop,1,1700.0,2019-10-06 12:00:00,790 Adams St, Portland,OR,97035 +274856,USB-C Charging Cable,1,11.95,2019-10-24 15:43:00,619 Jackson St, San Francisco,CA,94016 +274857,Apple Airpods Headphones,1,150.0,2019-10-07 13:08:00,438 Lakeview St, Dallas,TX,75001 +274858,AA Batteries (4-pack),1,3.84,2019-10-10 08:28:00,842 Meadow St, Dallas,TX,75001 +274859,USB-C Charging Cable,1,11.95,2019-10-16 08:42:00,640 Cherry St, Los Angeles,CA,90001 +274860,AAA Batteries (4-pack),1,2.99,2019-10-06 17:48:00,31 Lakeview St, Dallas,TX,75001 +274861,iPhone,1,700.0,2019-10-18 14:37:00,876 North St, Seattle,WA,98101 +274862,27in 4K Gaming Monitor,1,389.99,2019-10-11 00:32:00,135 9th St, San Francisco,CA,94016 +274863,AA Batteries (4-pack),1,3.84,2019-10-27 21:20:00,259 Center St, Seattle,WA,98101 +274864,27in FHD Monitor,1,149.99,2019-10-21 16:13:00,821 Spruce St, Austin,TX,73301 +274865,USB-C Charging Cable,1,11.95,2019-10-15 11:29:00,893 Pine St, San Francisco,CA,94016 +274866,27in FHD Monitor,1,149.99,2019-10-26 16:10:00,348 Willow St, Los Angeles,CA,90001 +274867,Bose SoundSport Headphones,1,99.99,2019-10-27 17:23:00,740 Spruce St, Portland,OR,97035 +274868,Bose SoundSport Headphones,1,99.99,2019-10-13 10:58:00,581 Lake St, New York City,NY,10001 +274869,AAA Batteries (4-pack),1,2.99,2019-10-21 13:25:00,585 Center St, Los Angeles,CA,90001 +274870,Lightning Charging Cable,1,14.95,2019-10-09 16:41:00,258 2nd St, Los Angeles,CA,90001 +274871,34in Ultrawide Monitor,1,379.99,2019-10-12 09:01:00,170 Sunset St, New York City,NY,10001 +274872,USB-C Charging Cable,1,11.95,2019-10-12 21:24:00,989 Jackson St, Austin,TX,73301 +274873,Lightning Charging Cable,2,14.95,2019-10-26 14:57:00,568 6th St, Atlanta,GA,30301 +274874,AAA Batteries (4-pack),1,2.99,2019-10-24 20:37:00,204 Maple St, Austin,TX,73301 +274875,Wired Headphones,1,11.99,2019-10-11 19:52:00,83 2nd St, Austin,TX,73301 +274876,Apple Airpods Headphones,1,150.0,2019-10-23 19:32:00,379 5th St, San Francisco,CA,94016 +274877,USB-C Charging Cable,1,11.95,2019-10-09 10:39:00,628 South St, Austin,TX,73301 +274878,Bose SoundSport Headphones,1,99.99,2019-10-06 11:38:00,768 9th St, New York City,NY,10001 +274879,USB-C Charging Cable,1,11.95,2019-10-18 12:02:00,479 River St, Dallas,TX,75001 +274879,AA Batteries (4-pack),1,3.84,2019-10-18 12:02:00,479 River St, Dallas,TX,75001 +274880,USB-C Charging Cable,1,11.95,2019-10-13 13:15:00,457 Lake St, Dallas,TX,75001 +274881,AA Batteries (4-pack),2,3.84,2019-10-26 14:50:00,84 Center St, Atlanta,GA,30301 +274882,27in FHD Monitor,1,149.99,2019-10-11 20:46:00,263 Dogwood St, Portland,OR,97035 +274883,Lightning Charging Cable,1,14.95,2019-10-01 10:29:00,58 14th St, Dallas,TX,75001 +274884,USB-C Charging Cable,1,11.95,2019-10-09 06:57:00,562 Ridge St, Austin,TX,73301 +274885,Google Phone,1,600.0,2019-10-27 11:58:00,626 Maple St, Atlanta,GA,30301 +274885,Bose SoundSport Headphones,1,99.99,2019-10-27 11:58:00,626 Maple St, Atlanta,GA,30301 +274886,Flatscreen TV,1,300.0,2019-10-29 01:45:00,394 Wilson St, Los Angeles,CA,90001 +274887,Lightning Charging Cable,2,14.95,2019-10-13 21:42:00,975 2nd St, Los Angeles,CA,90001 +274888,USB-C Charging Cable,1,11.95,2019-10-24 21:10:00,73 Meadow St, New York City,NY,10001 +274889,Apple Airpods Headphones,1,150.0,2019-10-29 11:57:00,307 Center St, Boston,MA,02215 +274890,Wired Headphones,1,11.99,2019-10-29 22:57:00,535 1st St, Boston,MA,02215 +274891,Lightning Charging Cable,1,14.95,2019-10-17 11:15:00,436 West St, Austin,TX,73301 +274892,Lightning Charging Cable,1,14.95,2019-10-03 20:58:00,839 Cherry St, Atlanta,GA,30301 +274893,AAA Batteries (4-pack),3,2.99,2019-10-31 07:46:00,78 Pine St, San Francisco,CA,94016 +274894,ThinkPad Laptop,1,999.99,2019-10-15 12:59:00,304 Elm St, Atlanta,GA,30301 +274895,Lightning Charging Cable,1,14.95,2019-10-13 14:01:00,750 Washington St, San Francisco,CA,94016 +274896,27in 4K Gaming Monitor,1,389.99,2019-10-27 22:59:00,877 Jefferson St, Dallas,TX,75001 +274897,AAA Batteries (4-pack),1,2.99,2019-10-12 10:51:00,676 Highland St, Los Angeles,CA,90001 +274898,34in Ultrawide Monitor,1,379.99,2019-10-17 12:26:00,743 Lake St, New York City,NY,10001 +274899,27in FHD Monitor,1,149.99,2019-10-29 22:15:00,113 Church St, Seattle,WA,98101 +274900,34in Ultrawide Monitor,1,379.99,2019-10-10 16:42:00,620 2nd St, Portland,OR,97035 +274901,AA Batteries (4-pack),1,3.84,2019-10-10 08:36:00,166 Cherry St, New York City,NY,10001 +274902,AAA Batteries (4-pack),1,2.99,2019-10-12 13:21:00,85 Highland St, Los Angeles,CA,90001 +274903,Lightning Charging Cable,1,14.95,2019-10-06 10:48:00,925 Meadow St, Dallas,TX,75001 +274904,Lightning Charging Cable,1,14.95,2019-10-17 11:40:00,565 Hickory St, Dallas,TX,75001 +274905,20in Monitor,1,109.99,2019-10-07 22:06:00,357 South St, Austin,TX,73301 +274906,AA Batteries (4-pack),1,3.84,2019-10-19 19:07:00,864 Willow St, New York City,NY,10001 +274907,AA Batteries (4-pack),1,3.84,2019-10-13 12:45:00,235 Meadow St, New York City,NY,10001 +274908,Lightning Charging Cable,1,14.95,2019-10-12 13:23:00,653 Main St, Los Angeles,CA,90001 +274909,27in 4K Gaming Monitor,1,389.99,2019-10-28 20:47:00,719 Jackson St, Atlanta,GA,30301 +274910,Wired Headphones,1,11.99,2019-10-29 00:43:00,982 North St, Los Angeles,CA,90001 +274911,Lightning Charging Cable,1,14.95,2019-10-19 21:51:00,679 Meadow St, Boston,MA,02215 +274912,Wired Headphones,1,11.99,2019-10-28 21:29:00,451 South St, Seattle,WA,98101 +274913,AAA Batteries (4-pack),1,2.99,2019-10-28 09:55:00,542 South St, New York City,NY,10001 +274914,Lightning Charging Cable,1,14.95,2019-10-09 13:56:00,959 Jackson St, New York City,NY,10001 +274915,USB-C Charging Cable,1,11.95,2019-10-24 11:10:00,11 Jefferson St, New York City,NY,10001 +274916,27in FHD Monitor,1,149.99,2019-10-30 10:51:00,955 Wilson St, New York City,NY,10001 +274917,27in 4K Gaming Monitor,1,389.99,2019-10-06 22:46:00,84 14th St, Boston,MA,02215 +274918,USB-C Charging Cable,1,11.95,2019-10-27 07:13:00,295 West St, Seattle,WA,98101 +274919,Macbook Pro Laptop,1,1700.0,2019-10-28 00:32:00,865 14th St, Boston,MA,02215 +274920,LG Dryer,1,600.0,2019-10-11 22:16:00,642 7th St, San Francisco,CA,94016 +274921,34in Ultrawide Monitor,1,379.99,2019-10-02 15:07:00,469 5th St, Seattle,WA,98101 +274922,AAA Batteries (4-pack),2,2.99,2019-10-26 08:19:00,529 10th St, Seattle,WA,98101 +274923,27in 4K Gaming Monitor,1,389.99,2019-10-20 12:06:00,640 Highland St, Boston,MA,02215 +274924,20in Monitor,1,109.99,2019-10-06 21:58:00,123 Chestnut St, Dallas,TX,75001 +274925,27in 4K Gaming Monitor,1,389.99,2019-10-18 10:22:00,265 Johnson St, San Francisco,CA,94016 +274925,Apple Airpods Headphones,1,150.0,2019-10-18 10:22:00,265 Johnson St, San Francisco,CA,94016 +274926,27in 4K Gaming Monitor,1,389.99,2019-10-11 13:09:00,769 Church St, Dallas,TX,75001 +274927,AAA Batteries (4-pack),1,2.99,2019-10-19 22:41:00,159 7th St, Atlanta,GA,30301 +274928,AA Batteries (4-pack),2,3.84,2019-10-13 12:06:00,772 Lake St, New York City,NY,10001 +274929,AA Batteries (4-pack),1,3.84,2019-10-12 18:24:00,920 14th St, Los Angeles,CA,90001 +274930,iPhone,1,700.0,2019-10-11 08:11:00,959 Madison St, Boston,MA,02215 +274931,AA Batteries (4-pack),1,3.84,2019-10-06 20:39:00,141 South St, Dallas,TX,75001 +274932,Apple Airpods Headphones,1,150.0,2019-10-19 20:12:00,229 Walnut St, Los Angeles,CA,90001 +274933,USB-C Charging Cable,1,11.95,2019-10-07 15:00:00,198 Johnson St, Los Angeles,CA,90001 +274934,AA Batteries (4-pack),1,3.84,2019-10-31 11:28:00,870 Lincoln St, San Francisco,CA,94016 +274935,Apple Airpods Headphones,1,150.0,2019-10-28 01:06:00,24 Hickory St, San Francisco,CA,94016 +274936,Lightning Charging Cable,1,14.95,2019-10-02 10:28:00,22 7th St, Seattle,WA,98101 +274937,Lightning Charging Cable,1,14.95,2019-10-01 09:38:00,574 8th St, Los Angeles,CA,90001 +274938,iPhone,1,700.0,2019-10-03 19:02:00,688 Highland St, Boston,MA,02215 +274938,Wired Headphones,1,11.99,2019-10-03 19:02:00,688 Highland St, Boston,MA,02215 +274939,Wired Headphones,1,11.99,2019-10-27 16:04:00,241 Willow St, New York City,NY,10001 +274940,AA Batteries (4-pack),3,3.84,2019-10-14 12:32:00,11 Hickory St, Los Angeles,CA,90001 +274941,Apple Airpods Headphones,1,150.0,2019-10-13 11:06:00,791 Highland St, Seattle,WA,98101 +274942,AA Batteries (4-pack),1,3.84,2019-10-22 12:58:00,669 Meadow St, San Francisco,CA,94016 +274943,Lightning Charging Cable,1,14.95,2019-10-13 14:28:00,226 South St, San Francisco,CA,94016 +274944,USB-C Charging Cable,1,11.95,2019-10-18 19:40:00,944 8th St, Austin,TX,73301 +274945,Flatscreen TV,1,300.0,2019-10-07 11:44:00,491 Madison St, Portland,OR,97035 +274946,AAA Batteries (4-pack),1,2.99,2019-10-28 20:25:00,190 Jefferson St, Atlanta,GA,30301 +274947,27in 4K Gaming Monitor,1,389.99,2019-10-12 16:53:00,874 Wilson St, New York City,NY,10001 +274948,Wired Headphones,1,11.99,2019-10-09 22:13:00,586 Jackson St, Dallas,TX,75001 +274949,Wired Headphones,1,11.99,2019-10-21 08:21:00,800 11th St, Dallas,TX,75001 +274950,27in FHD Monitor,1,149.99,2019-10-19 19:08:00,580 Forest St, San Francisco,CA,94016 +274951,ThinkPad Laptop,1,999.99,2019-10-06 21:23:00,621 7th St, New York City,NY,10001 +274952,Apple Airpods Headphones,1,150.0,2019-10-15 16:18:00,121 Maple St, San Francisco,CA,94016 +274953,Bose SoundSport Headphones,1,99.99,2019-10-04 09:17:00,102 North St, Boston,MA,02215 +274954,AAA Batteries (4-pack),1,2.99,2019-10-16 19:19:00,136 14th St, Boston,MA,02215 +274955,Lightning Charging Cable,1,14.95,2019-10-16 20:19:00,31 Elm St, Portland,OR,97035 +274956,Lightning Charging Cable,1,14.95,2019-10-21 13:19:00,287 Center St, Los Angeles,CA,90001 +274957,ThinkPad Laptop,1,999.99,2019-10-14 17:25:00,967 Main St, Los Angeles,CA,90001 +274958,Vareebadd Phone,1,400.0,2019-10-07 17:26:00,95 Wilson St, Atlanta,GA,30301 +274959,27in FHD Monitor,1,149.99,2019-10-01 12:36:00,271 Chestnut St, Los Angeles,CA,90001 +274960,Bose SoundSport Headphones,1,99.99,2019-10-15 12:27:00,562 Willow St, Los Angeles,CA,90001 +274961,AAA Batteries (4-pack),1,2.99,2019-10-31 10:35:00,590 11th St, Portland,OR,97035 +274962,AAA Batteries (4-pack),2,2.99,2019-10-06 04:36:00,971 Lakeview St, Seattle,WA,98101 +274963,34in Ultrawide Monitor,1,379.99,2019-10-20 20:04:00,387 Jefferson St, San Francisco,CA,94016 +274964,Wired Headphones,1,11.99,2019-10-25 00:05:00,93 Lakeview St, Los Angeles,CA,90001 +274965,Apple Airpods Headphones,1,150.0,2019-10-30 09:20:00,823 Highland St, San Francisco,CA,94016 +274966,27in FHD Monitor,1,149.99,2019-10-10 10:43:00,646 Maple St, New York City,NY,10001 +274967,Apple Airpods Headphones,1,150.0,2019-10-02 18:27:00,660 Jefferson St, New York City,NY,10001 +274968,AAA Batteries (4-pack),3,2.99,2019-10-20 16:57:00,27 Cedar St, Dallas,TX,75001 +274969,Apple Airpods Headphones,1,150.0,2019-10-10 15:38:00,356 Lincoln St, Seattle,WA,98101 +274970,AA Batteries (4-pack),1,3.84,2019-10-06 01:18:00,15 Spruce St, Seattle,WA,98101 +274971,Google Phone,1,600.0,2019-10-07 12:17:00,364 Dogwood St, Los Angeles,CA,90001 +274971,Bose SoundSport Headphones,1,99.99,2019-10-07 12:17:00,364 Dogwood St, Los Angeles,CA,90001 +274971,Wired Headphones,1,11.99,2019-10-07 12:17:00,364 Dogwood St, Los Angeles,CA,90001 +274972,ThinkPad Laptop,1,999.99,2019-10-28 18:55:00,172 1st St, Los Angeles,CA,90001 +274973,USB-C Charging Cable,1,11.95,2019-10-06 21:35:00,790 Hickory St, Los Angeles,CA,90001 +274974,Wired Headphones,1,11.99,2019-10-18 00:17:00,625 1st St, San Francisco,CA,94016 +274975,Wired Headphones,1,11.99,2019-10-08 09:26:00,163 Jefferson St, Portland,OR,97035 +274976,Google Phone,1,600.0,2019-10-27 13:40:00,793 12th St, Atlanta,GA,30301 +274977,27in 4K Gaming Monitor,1,389.99,2019-10-08 22:04:00,907 11th St, Seattle,WA,98101 +274978,Lightning Charging Cable,1,14.95,2019-10-05 15:51:00,429 Washington St, New York City,NY,10001 +274979,USB-C Charging Cable,1,11.95,2019-10-10 03:39:00,501 Hickory St, San Francisco,CA,94016 +274980,Macbook Pro Laptop,1,1700.0,2019-10-18 18:51:00,436 Lincoln St, Los Angeles,CA,90001 +274981,Wired Headphones,1,11.99,2019-10-31 22:59:00,947 Willow St, Los Angeles,CA,90001 +274982,Lightning Charging Cable,2,14.95,2019-10-27 21:54:00,601 Adams St, San Francisco,CA,94016 +274983,AAA Batteries (4-pack),2,2.99,2019-10-04 19:20:00,287 2nd St, San Francisco,CA,94016 +274984,Macbook Pro Laptop,1,1700.0,2019-10-27 21:14:00,329 Maple St, Seattle,WA,98101 +274985,USB-C Charging Cable,1,11.95,2019-10-23 22:14:00,988 Johnson St, Dallas,TX,75001 +274986,Bose SoundSport Headphones,1,99.99,2019-10-29 00:26:00,636 Washington St, San Francisco,CA,94016 +274987,USB-C Charging Cable,1,11.95,2019-10-28 14:23:00,313 Forest St, Portland,OR,97035 +274988,Flatscreen TV,1,300.0,2019-10-15 13:45:00,538 12th St, Boston,MA,02215 +274989,20in Monitor,1,109.99,2019-10-21 17:28:00,712 14th St, Los Angeles,CA,90001 +274990,AAA Batteries (4-pack),1,2.99,2019-10-02 05:34:00,523 11th St, San Francisco,CA,94016 +274991,Bose SoundSport Headphones,1,99.99,2019-10-31 20:13:00,322 Chestnut St, Portland,OR,97035 +274992,Wired Headphones,1,11.99,2019-10-21 19:10:00,104 Church St, Portland,OR,97035 +274993,AAA Batteries (4-pack),2,2.99,2019-10-21 18:55:00,979 Cedar St, Atlanta,GA,30301 +274994,AAA Batteries (4-pack),1,2.99,2019-10-13 04:18:00,85 West St, Portland,ME,04101 +274995,Bose SoundSport Headphones,1,99.99,2019-10-22 09:28:00,277 Ridge St, Boston,MA,02215 +274996,AA Batteries (4-pack),2,3.84,2019-10-04 10:58:00,723 Elm St, Atlanta,GA,30301 +274997,34in Ultrawide Monitor,1,379.99,2019-10-04 23:46:00,66 Lakeview St, New York City,NY,10001 +274998,ThinkPad Laptop,1,999.99,2019-10-25 12:19:00,570 Wilson St, San Francisco,CA,94016 +274999,AAA Batteries (4-pack),1,2.99,2019-10-19 20:32:00,27 Pine St, San Francisco,CA,94016 +275000,Bose SoundSport Headphones,1,99.99,2019-10-18 19:42:00,98 Madison St, Dallas,TX,75001 +275001,34in Ultrawide Monitor,1,379.99,2019-10-02 16:36:00,731 River St, New York City,NY,10001 +275002,Google Phone,1,600.0,2019-10-01 20:31:00,470 Lincoln St, San Francisco,CA,94016 +275003,Lightning Charging Cable,1,14.95,2019-10-23 21:30:00,151 Wilson St, Dallas,TX,75001 +275004,20in Monitor,1,109.99,2019-10-21 00:17:00,967 Maple St, San Francisco,CA,94016 +275005,LG Washing Machine,1,600.0,2019-10-17 18:21:00,943 12th St, New York City,NY,10001 +275006,AA Batteries (4-pack),1,3.84,2019-10-21 19:17:00,175 Madison St, Boston,MA,02215 +275007,iPhone,1,700.0,2019-10-17 13:27:00,95 Walnut St, Dallas,TX,75001 +275008,Macbook Pro Laptop,1,1700.0,2019-10-01 14:16:00,168 Church St, Boston,MA,02215 +275009,Apple Airpods Headphones,1,150.0,2019-10-11 23:08:00,493 Lake St, Portland,OR,97035 +275010,Lightning Charging Cable,1,14.95,2019-10-14 13:01:00,282 Spruce St, Atlanta,GA,30301 +275011,Lightning Charging Cable,1,14.95,2019-10-25 21:30:00,748 12th St, San Francisco,CA,94016 +275012,USB-C Charging Cable,1,11.95,2019-10-26 00:15:00,583 Chestnut St, Boston,MA,02215 +275013,Lightning Charging Cable,1,14.95,2019-10-06 08:46:00,757 Center St, Austin,TX,73301 +275014,AA Batteries (4-pack),1,3.84,2019-10-18 20:19:00,294 Maple St, Boston,MA,02215 +275015,AAA Batteries (4-pack),2,2.99,2019-10-06 19:30:00,459 Madison St, Austin,TX,73301 +275016,AAA Batteries (4-pack),1,2.99,2019-10-23 07:24:00,201 2nd St, Portland,OR,97035 +275017,Apple Airpods Headphones,1,150.0,2019-10-14 13:25:00,433 Hill St, San Francisco,CA,94016 +275018,Apple Airpods Headphones,1,150.0,2019-10-20 06:07:00,293 Cedar St, Los Angeles,CA,90001 +275019,Flatscreen TV,1,300.0,2019-10-24 14:05:00,563 Maple St, Boston,MA,02215 +275020,USB-C Charging Cable,1,11.95,2019-10-12 21:13:00,339 Spruce St, Atlanta,GA,30301 +275021,iPhone,1,700.0,2019-10-15 21:59:00,853 Maple St, New York City,NY,10001 +275021,Lightning Charging Cable,1,14.95,2019-10-15 21:59:00,853 Maple St, New York City,NY,10001 +275022,USB-C Charging Cable,1,11.95,2019-10-08 04:27:00,241 2nd St, Austin,TX,73301 +275023,AA Batteries (4-pack),1,3.84,2019-10-11 14:13:00,991 11th St, San Francisco,CA,94016 +275024,iPhone,1,700.0,2019-10-24 23:58:00,218 5th St, Boston,MA,02215 +275025,Wired Headphones,1,11.99,2019-10-04 16:25:00,220 Lakeview St, Atlanta,GA,30301 +275026,Bose SoundSport Headphones,1,99.99,2019-10-15 10:44:00,357 9th St, Atlanta,GA,30301 +275026,AA Batteries (4-pack),1,3.84,2019-10-15 10:44:00,357 9th St, Atlanta,GA,30301 +275027,27in 4K Gaming Monitor,1,389.99,2019-10-10 14:30:00,183 Center St, New York City,NY,10001 +275028,Lightning Charging Cable,1,14.95,2019-10-25 19:49:00,72 8th St, Austin,TX,73301 +275029,USB-C Charging Cable,1,11.95,2019-10-14 11:42:00,646 13th St, New York City,NY,10001 +275029,AA Batteries (4-pack),1,3.84,2019-10-14 11:42:00,646 13th St, New York City,NY,10001 +275030,Bose SoundSport Headphones,1,99.99,2019-10-10 20:00:00,155 5th St, Austin,TX,73301 +275031,AA Batteries (4-pack),2,3.84,2019-10-04 16:08:00,288 Ridge St, San Francisco,CA,94016 +275032,Google Phone,1,600.0,2019-10-13 12:34:00,47 Washington St, Portland,OR,97035 +275032,Wired Headphones,1,11.99,2019-10-13 12:34:00,47 Washington St, Portland,OR,97035 +275033,AA Batteries (4-pack),1,3.84,2019-10-13 00:39:00,384 Lakeview St, San Francisco,CA,94016 +275034,34in Ultrawide Monitor,1,379.99,2019-10-16 10:27:00,976 Forest St, San Francisco,CA,94016 +275035,Wired Headphones,1,11.99,2019-10-24 13:18:00,601 Jackson St, Los Angeles,CA,90001 +275036,Lightning Charging Cable,1,14.95,2019-10-08 07:32:00,933 South St, Dallas,TX,75001 +275037,Flatscreen TV,1,300.0,2019-10-06 13:31:00,992 1st St, San Francisco,CA,94016 +275038,Bose SoundSport Headphones,1,99.99,2019-10-05 18:47:00,111 13th St, New York City,NY,10001 +275039,Apple Airpods Headphones,1,150.0,2019-10-18 14:46:00,178 7th St, San Francisco,CA,94016 +275040,Wired Headphones,2,11.99,2019-10-01 17:14:00,485 5th St, Dallas,TX,75001 +275041,20in Monitor,1,109.99,2019-10-02 16:40:00,31 Cherry St, New York City,NY,10001 +275042,AAA Batteries (4-pack),1,2.99,2019-10-13 20:32:00,111 Church St, Los Angeles,CA,90001 +275043,Flatscreen TV,1,300.0,2019-10-15 19:06:00,920 Maple St, Boston,MA,02215 +275044,20in Monitor,1,109.99,2019-10-14 20:30:00,200 7th St, Boston,MA,02215 +275045,27in 4K Gaming Monitor,1,389.99,2019-10-27 22:20:00,568 Sunset St, Los Angeles,CA,90001 +275046,AAA Batteries (4-pack),1,2.99,2019-10-14 08:14:00,987 7th St, Atlanta,GA,30301 +275047,Lightning Charging Cable,1,14.95,2019-10-10 09:36:00,354 Wilson St, Los Angeles,CA,90001 +275048,Macbook Pro Laptop,1,1700.0,2019-10-17 14:26:00,764 Center St, Portland,OR,97035 +275049,27in FHD Monitor,1,149.99,2019-10-12 11:58:00,327 11th St, Los Angeles,CA,90001 +275050,USB-C Charging Cable,2,11.95,2019-10-01 09:34:00,244 Main St, Los Angeles,CA,90001 +275051,Apple Airpods Headphones,1,150.0,2019-10-05 21:22:00,151 Willow St, San Francisco,CA,94016 +275052,Macbook Pro Laptop,1,1700.0,2019-10-23 20:04:00,37 Center St, New York City,NY,10001 +275053,27in 4K Gaming Monitor,1,389.99,2019-10-02 18:41:00,767 Pine St, Seattle,WA,98101 +275054,AAA Batteries (4-pack),1,2.99,2019-10-17 06:41:00,473 Main St, Boston,MA,02215 +275055,Flatscreen TV,1,300.0,2019-10-15 06:15:00,154 Lake St, San Francisco,CA,94016 +275056,Wired Headphones,1,11.99,2019-10-21 13:59:00,937 5th St, Boston,MA,02215 +275057,AAA Batteries (4-pack),5,2.99,2019-10-02 08:24:00,368 Forest St, Los Angeles,CA,90001 +275058,Bose SoundSport Headphones,1,99.99,2019-10-12 04:17:00,417 Center St, San Francisco,CA,94016 +275059,Google Phone,1,600.0,2019-10-02 15:03:00,439 Cedar St, Boston,MA,02215 +275060,USB-C Charging Cable,1,11.95,2019-10-25 21:32:00,910 Chestnut St, San Francisco,CA,94016 +275061,34in Ultrawide Monitor,1,379.99,2019-10-29 18:57:00,739 Center St, New York City,NY,10001 +275062,27in FHD Monitor,1,149.99,2019-10-03 04:44:00,654 11th St, Los Angeles,CA,90001 +275063,Lightning Charging Cable,1,14.95,2019-10-02 11:17:00,219 Dogwood St, Boston,MA,02215 +275064,20in Monitor,1,109.99,2019-10-29 17:55:00,301 Church St, Seattle,WA,98101 +275065,USB-C Charging Cable,1,11.95,2019-10-30 09:22:00,816 Dogwood St, Los Angeles,CA,90001 +275066,USB-C Charging Cable,1,11.95,2019-10-29 17:45:00,511 Church St, Boston,MA,02215 +275067,Macbook Pro Laptop,1,1700.0,2019-10-17 05:33:00,92 6th St, Seattle,WA,98101 +275068,Lightning Charging Cable,1,14.95,2019-10-06 19:14:00,493 River St, Los Angeles,CA,90001 +275069,AA Batteries (4-pack),1,3.84,2019-10-15 18:07:00,742 5th St, Portland,OR,97035 +275070,AA Batteries (4-pack),5,3.84,2019-10-11 14:05:00,894 Lakeview St, Boston,MA,02215 +275071,USB-C Charging Cable,1,11.95,2019-10-09 23:05:00,343 River St, New York City,NY,10001 +275072,AA Batteries (4-pack),1,3.84,2019-10-29 22:45:00,231 Lincoln St, Boston,MA,02215 +275073,34in Ultrawide Monitor,1,379.99,2019-10-19 10:02:00,466 River St, New York City,NY,10001 +275074,USB-C Charging Cable,1,11.95,2019-10-15 16:31:00,200 Johnson St, Atlanta,GA,30301 +275075,USB-C Charging Cable,1,11.95,2019-10-23 12:54:00,632 1st St, Los Angeles,CA,90001 +275076,Apple Airpods Headphones,1,150.0,2019-10-29 06:00:00,190 11th St, San Francisco,CA,94016 +275077,Google Phone,1,600.0,2019-10-23 14:15:00,91 Adams St, San Francisco,CA,94016 +275078,AAA Batteries (4-pack),1,2.99,2019-10-27 09:21:00,816 Maple St, Los Angeles,CA,90001 +275079,USB-C Charging Cable,1,11.95,2019-10-06 18:35:00,620 12th St, Atlanta,GA,30301 +275080,27in FHD Monitor,1,149.99,2019-10-31 00:18:00,47 Cherry St, Austin,TX,73301 +275081,34in Ultrawide Monitor,1,379.99,2019-10-14 17:30:00,273 Elm St, San Francisco,CA,94016 +275082,27in FHD Monitor,1,149.99,2019-10-24 19:44:00,109 Willow St, San Francisco,CA,94016 +275082,AA Batteries (4-pack),4,3.84,2019-10-24 19:44:00,109 Willow St, San Francisco,CA,94016 +275083,AA Batteries (4-pack),1,3.84,2019-10-10 12:56:00,133 Lake St, Seattle,WA,98101 +275084,Lightning Charging Cable,1,14.95,2019-10-30 05:03:00,512 Lake St, Portland,OR,97035 +275085,27in 4K Gaming Monitor,1,389.99,2019-10-18 17:38:00,11 Highland St, Los Angeles,CA,90001 +275086,34in Ultrawide Monitor,1,379.99,2019-10-11 20:39:00,66 Lakeview St, New York City,NY,10001 +275087,27in FHD Monitor,1,149.99,2019-10-05 21:08:00,673 5th St, Seattle,WA,98101 +275088,Bose SoundSport Headphones,1,99.99,2019-10-20 15:02:00,625 Sunset St, Los Angeles,CA,90001 +275089,34in Ultrawide Monitor,1,379.99,2019-10-14 00:03:00,334 Maple St, Atlanta,GA,30301 +275090,ThinkPad Laptop,1,999.99,2019-10-06 12:07:00,723 2nd St, Los Angeles,CA,90001 +275091,AAA Batteries (4-pack),1,2.99,2019-10-23 12:33:00,327 5th St, Los Angeles,CA,90001 +275092,Lightning Charging Cable,1,14.95,2019-10-14 09:36:00,971 Highland St, Seattle,WA,98101 +275093,AA Batteries (4-pack),2,3.84,2019-10-04 13:41:00,855 Hickory St, San Francisco,CA,94016 +275094,Wired Headphones,1,11.99,2019-10-17 18:12:00,490 14th St, San Francisco,CA,94016 +275095,Apple Airpods Headphones,1,150.0,2019-10-15 09:24:00,972 Cedar St, San Francisco,CA,94016 +275096,34in Ultrawide Monitor,1,379.99,2019-10-23 21:09:00,113 Adams St, Portland,OR,97035 +275097,ThinkPad Laptop,1,999.99,2019-10-10 11:27:00,436 Cedar St, New York City,NY,10001 +275098,Lightning Charging Cable,1,14.95,2019-10-19 21:09:00,855 8th St, Dallas,TX,75001 +275099,Apple Airpods Headphones,1,150.0,2019-10-05 18:01:00,800 14th St, Austin,TX,73301 +275100,iPhone,1,700.0,2019-10-14 19:33:00,178 Willow St, Atlanta,GA,30301 +275101,AAA Batteries (4-pack),1,2.99,2019-10-13 16:06:00,815 Park St, Los Angeles,CA,90001 +275102,iPhone,1,700.0,2019-10-25 08:03:00,294 Main St, Boston,MA,02215 +275103,AAA Batteries (4-pack),1,2.99,2019-10-22 01:22:00,583 7th St, San Francisco,CA,94016 +275104,Wired Headphones,1,11.99,2019-10-14 15:02:00,142 Center St, Seattle,WA,98101 +275105,iPhone,1,700.0,2019-10-14 04:06:00,474 Spruce St, San Francisco,CA,94016 +275106,Lightning Charging Cable,1,14.95,2019-10-07 09:14:00,768 River St, San Francisco,CA,94016 +275107,Lightning Charging Cable,1,14.95,2019-10-02 12:16:00,497 Cherry St, San Francisco,CA,94016 +275108,Google Phone,1,600.0,2019-10-19 11:21:00,889 Maple St, Seattle,WA,98101 +275109,AAA Batteries (4-pack),2,2.99,2019-10-21 01:01:00,148 River St, Atlanta,GA,30301 +275110,Lightning Charging Cable,1,14.95,2019-10-30 13:38:00,793 9th St, San Francisco,CA,94016 +275111,iPhone,1,700.0,2019-10-19 18:59:00,762 5th St, San Francisco,CA,94016 +275112,27in 4K Gaming Monitor,1,389.99,2019-10-13 12:13:00,997 Ridge St, New York City,NY,10001 +275113,Lightning Charging Cable,2,14.95,2019-10-29 19:55:00,328 Johnson St, New York City,NY,10001 +275114,Wired Headphones,1,11.99,2019-10-19 06:14:00,532 Meadow St, San Francisco,CA,94016 +275115,ThinkPad Laptop,1,999.99,2019-10-10 17:06:00,556 Chestnut St, New York City,NY,10001 +275116,Apple Airpods Headphones,1,150.0,2019-10-15 13:08:00,692 Wilson St, New York City,NY,10001 +275117,Wired Headphones,1,11.99,2019-10-21 23:24:00,373 11th St, New York City,NY,10001 +275118,ThinkPad Laptop,1,999.99,2019-10-28 16:04:00,125 1st St, Seattle,WA,98101 +275119,Bose SoundSport Headphones,1,99.99,2019-10-12 13:37:00,58 12th St, San Francisco,CA,94016 +275120,AA Batteries (4-pack),1,3.84,2019-10-26 17:27:00,722 Main St, Boston,MA,02215 +275121,AAA Batteries (4-pack),1,2.99,2019-10-03 16:49:00,888 Cherry St, New York City,NY,10001 +275122,USB-C Charging Cable,1,11.95,2019-10-20 21:00:00,616 9th St, Austin,TX,73301 +275123,Lightning Charging Cable,1,14.95,2019-10-01 08:48:00,817 Cedar St, Seattle,WA,98101 +275124,USB-C Charging Cable,1,11.95,2019-10-20 19:51:00,230 Jefferson St, New York City,NY,10001 +275125,AAA Batteries (4-pack),3,2.99,2019-10-31 19:48:00,349 7th St, Dallas,TX,75001 +275126,AAA Batteries (4-pack),2,2.99,2019-10-05 16:43:00,883 Washington St, Los Angeles,CA,90001 +275127,27in 4K Gaming Monitor,1,389.99,2019-10-11 15:04:00,899 12th St, Los Angeles,CA,90001 +275128,AA Batteries (4-pack),1,3.84,2019-10-15 22:19:00,92 Johnson St, Atlanta,GA,30301 +275129,Wired Headphones,1,11.99,2019-10-17 12:51:00,465 Cedar St, Los Angeles,CA,90001 +275130,Flatscreen TV,1,300.0,2019-10-26 21:05:00,181 Cherry St, New York City,NY,10001 +275131,ThinkPad Laptop,1,999.99,2019-10-27 13:02:00,683 Hill St, San Francisco,CA,94016 +275132,AAA Batteries (4-pack),1,2.99,2019-10-17 20:37:00,654 West St, Boston,MA,02215 +275133,Wired Headphones,1,11.99,2019-10-20 14:24:00,18 Chestnut St, New York City,NY,10001 +275134,27in 4K Gaming Monitor,1,389.99,2019-10-04 15:03:00,245 Hill St, Atlanta,GA,30301 +275135,Lightning Charging Cable,1,14.95,2019-10-25 19:58:00,129 1st St, Seattle,WA,98101 +275136,Wired Headphones,1,11.99,2019-10-03 16:18:00,295 Pine St, Atlanta,GA,30301 +275137,Bose SoundSport Headphones,1,99.99,2019-10-19 12:49:00,709 Hickory St, San Francisco,CA,94016 +275138,27in FHD Monitor,1,149.99,2019-10-22 13:05:00,688 Chestnut St, San Francisco,CA,94016 +275139,Apple Airpods Headphones,1,150.0,2019-10-05 09:22:00,172 5th St, Dallas,TX,75001 +275140,27in FHD Monitor,1,149.99,2019-10-23 20:54:00,282 Hickory St, San Francisco,CA,94016 +275141,Wired Headphones,1,11.99,2019-10-13 14:57:00,150 4th St, Dallas,TX,75001 +275142,USB-C Charging Cable,1,11.95,2019-10-15 20:24:00,20 Chestnut St, Dallas,TX,75001 +275143,Wired Headphones,1,11.99,2019-10-10 13:44:00,318 Sunset St, Los Angeles,CA,90001 +275144,LG Dryer,1,600.0,2019-10-01 17:28:00,214 7th St, Los Angeles,CA,90001 +275145,Lightning Charging Cable,1,14.95,2019-10-27 16:48:00,727 Washington St, Seattle,WA,98101 +275146,Lightning Charging Cable,2,14.95,2019-10-19 06:57:00,90 13th St, Dallas,TX,75001 +275147,27in FHD Monitor,1,149.99,2019-10-19 22:14:00,915 Elm St, New York City,NY,10001 +275148,Google Phone,1,600.0,2019-10-25 21:37:00,341 4th St, Boston,MA,02215 +275149,Bose SoundSport Headphones,1,99.99,2019-10-30 22:37:00,370 Madison St, San Francisco,CA,94016 +275150,Wired Headphones,1,11.99,2019-10-13 14:38:00,88 5th St, San Francisco,CA,94016 +275151,AA Batteries (4-pack),2,3.84,2019-10-08 17:54:00,878 Cedar St, San Francisco,CA,94016 +275152,Bose SoundSport Headphones,1,99.99,2019-10-27 17:50:00,145 5th St, Austin,TX,73301 +275153,Wired Headphones,1,11.99,2019-10-08 20:49:00,42 Chestnut St, Los Angeles,CA,90001 +275154,Apple Airpods Headphones,1,150.0,2019-10-04 13:21:00,65 Sunset St, Atlanta,GA,30301 +275155,AAA Batteries (4-pack),1,2.99,2019-10-27 20:27:00,547 Hill St, Austin,TX,73301 +275156,iPhone,1,700.0,2019-10-05 11:44:00,168 13th St, Austin,TX,73301 +275157,AA Batteries (4-pack),2,3.84,2019-10-21 12:26:00,887 5th St, Atlanta,GA,30301 +275158,AA Batteries (4-pack),1,3.84,2019-10-07 23:14:00,566 Spruce St, Dallas,TX,75001 +275159,USB-C Charging Cable,1,11.95,2019-10-27 00:37:00,540 Washington St, Boston,MA,02215 +275160,Bose SoundSport Headphones,1,99.99,2019-10-01 13:41:00,376 Church St, Los Angeles,CA,90001 +275161,USB-C Charging Cable,1,11.95,2019-10-04 08:07:00,374 Church St, New York City,NY,10001 +275162,Lightning Charging Cable,1,14.95,2019-10-14 12:01:00,141 Meadow St, Atlanta,GA,30301 +275163,USB-C Charging Cable,1,11.95,2019-10-28 21:51:00,804 8th St, Austin,TX,73301 +275164,Google Phone,1,600.0,2019-10-24 20:25:00,250 4th St, San Francisco,CA,94016 +275164,USB-C Charging Cable,1,11.95,2019-10-24 20:25:00,250 4th St, San Francisco,CA,94016 +275165,Wired Headphones,1,11.99,2019-10-07 17:54:00,866 Cedar St, San Francisco,CA,94016 +275166,Lightning Charging Cable,1,14.95,2019-10-25 17:42:00,515 12th St, Los Angeles,CA,90001 +275167,Vareebadd Phone,1,400.0,2019-10-08 19:58:00,402 Willow St, Portland,OR,97035 +275168,27in FHD Monitor,1,149.99,2019-10-22 11:15:00,907 Highland St, Boston,MA,02215 +275169,AA Batteries (4-pack),1,3.84,2019-10-18 20:21:00,86 14th St, Los Angeles,CA,90001 +275170,iPhone,1,700.0,2019-10-30 21:58:00,96 Pine St, San Francisco,CA,94016 +275170,Lightning Charging Cable,1,14.95,2019-10-30 21:58:00,96 Pine St, San Francisco,CA,94016 +275171,AAA Batteries (4-pack),1,2.99,2019-10-12 17:44:00,418 Ridge St, New York City,NY,10001 +275172,AA Batteries (4-pack),3,3.84,2019-10-09 18:38:00,433 8th St, Boston,MA,02215 +275173,ThinkPad Laptop,1,999.99,2019-10-20 11:20:00,328 South St, Dallas,TX,75001 +275174,Lightning Charging Cable,1,14.95,2019-10-10 13:45:00,978 Meadow St, Portland,OR,97035 +275175,Wired Headphones,1,11.99,2019-10-29 19:47:00,588 Dogwood St, Portland,OR,97035 +275176,AA Batteries (4-pack),1,3.84,2019-10-12 20:53:00,247 Cedar St, Portland,OR,97035 +275177,USB-C Charging Cable,1,11.95,2019-10-27 05:28:00,824 Maple St, Los Angeles,CA,90001 +275178,Lightning Charging Cable,1,14.95,2019-10-07 20:33:00,185 Washington St, Los Angeles,CA,90001 +275179,AA Batteries (4-pack),2,3.84,2019-10-22 16:08:00,605 Adams St, Boston,MA,02215 +275180,Apple Airpods Headphones,1,150.0,2019-10-07 19:55:00,336 11th St, San Francisco,CA,94016 +275181,Bose SoundSport Headphones,1,99.99,2019-10-04 12:23:00,768 Lincoln St, Austin,TX,73301 +275182,Flatscreen TV,1,300.0,2019-10-05 14:29:00,952 Hickory St, Portland,OR,97035 +275183,Macbook Pro Laptop,1,1700.0,2019-10-25 12:52:00,561 Elm St, New York City,NY,10001 +275184,Flatscreen TV,1,300.0,2019-10-31 16:52:00,524 Cedar St, Los Angeles,CA,90001 +275185,Lightning Charging Cable,1,14.95,2019-10-25 18:01:00,368 Washington St, Los Angeles,CA,90001 +275186,Wired Headphones,1,11.99,2019-10-15 20:27:00,818 Center St, San Francisco,CA,94016 +275187,AAA Batteries (4-pack),1,2.99,2019-10-13 16:26:00,335 13th St, San Francisco,CA,94016 +275188,ThinkPad Laptop,1,999.99,2019-10-22 16:43:00,231 River St, Austin,TX,73301 +275189,Flatscreen TV,1,300.0,2019-10-31 23:50:00,668 9th St, New York City,NY,10001 +275190,Apple Airpods Headphones,1,150.0,2019-10-31 20:23:00,659 Main St, Los Angeles,CA,90001 +275191,AA Batteries (4-pack),1,3.84,2019-10-18 20:01:00,869 Highland St, Portland,OR,97035 +275192,27in 4K Gaming Monitor,1,389.99,2019-10-05 18:15:00,448 4th St, Boston,MA,02215 +275193,ThinkPad Laptop,1,999.99,2019-10-13 07:50:00,657 Jackson St, Atlanta,GA,30301 +275194,Bose SoundSport Headphones,1,99.99,2019-10-08 11:21:00,475 Dogwood St, Los Angeles,CA,90001 +275195,Apple Airpods Headphones,1,150.0,2019-10-23 16:44:00,447 River St, Dallas,TX,75001 +275196,AAA Batteries (4-pack),2,2.99,2019-10-04 16:57:00,399 5th St, New York City,NY,10001 +275197,LG Washing Machine,1,600.0,2019-10-23 22:52:00,899 11th St, New York City,NY,10001 +275198,Lightning Charging Cable,2,14.95,2019-10-18 21:33:00,560 Adams St, Atlanta,GA,30301 +275199,Google Phone,1,600.0,2019-10-10 23:45:00,321 Sunset St, Portland,OR,97035 +275199,USB-C Charging Cable,1,11.95,2019-10-10 23:45:00,321 Sunset St, Portland,OR,97035 +275200,Bose SoundSport Headphones,1,99.99,2019-10-13 21:35:00,711 Jackson St, Boston,MA,02215 +275201,AAA Batteries (4-pack),2,2.99,2019-11-01 00:47:00,859 Jefferson St, New York City,NY,10001 +275202,AA Batteries (4-pack),2,3.84,2019-10-30 21:27:00,430 Hill St, Los Angeles,CA,90001 +275203,Lightning Charging Cable,1,14.95,2019-10-15 21:33:00,764 Adams St, Los Angeles,CA,90001 +275204,Lightning Charging Cable,1,14.95,2019-10-28 19:47:00,714 Cedar St, Los Angeles,CA,90001 +275205,AAA Batteries (4-pack),1,2.99,2019-10-19 13:51:00,531 Jefferson St, Los Angeles,CA,90001 +275206,Vareebadd Phone,1,400.0,2019-10-19 14:05:00,836 Meadow St, Los Angeles,CA,90001 +275206,USB-C Charging Cable,1,11.95,2019-10-19 14:05:00,836 Meadow St, Los Angeles,CA,90001 +275207,ThinkPad Laptop,1,999.99,2019-10-06 10:55:00,100 7th St, San Francisco,CA,94016 +275208,27in FHD Monitor,1,149.99,2019-10-26 09:44:00,354 Elm St, Los Angeles,CA,90001 +275209,Bose SoundSport Headphones,1,99.99,2019-10-29 06:20:00,934 Center St, Dallas,TX,75001 +275210,20in Monitor,1,109.99,2019-10-23 12:13:00,678 Walnut St, Dallas,TX,75001 +275211,Lightning Charging Cable,1,14.95,2019-10-24 01:21:00,971 Madison St, San Francisco,CA,94016 +275212,34in Ultrawide Monitor,1,379.99,2019-10-12 23:59:00,68 Walnut St, New York City,NY,10001 +275213,AA Batteries (4-pack),1,3.84,2019-10-10 17:23:00,164 Jefferson St, San Francisco,CA,94016 +275214,AAA Batteries (4-pack),1,2.99,2019-10-06 16:22:00,678 5th St, Seattle,WA,98101 +275215,AAA Batteries (4-pack),1,2.99,2019-10-09 06:47:00,429 Lake St, San Francisco,CA,94016 +275216,USB-C Charging Cable,1,11.95,2019-10-03 00:08:00,261 Willow St, Dallas,TX,75001 +275217,Flatscreen TV,1,300.0,2019-10-22 20:35:00,983 Jackson St, Boston,MA,02215 +275218,Lightning Charging Cable,1,14.95,2019-10-15 19:48:00,558 Park St, New York City,NY,10001 +275219,Lightning Charging Cable,1,14.95,2019-10-28 21:51:00,279 Cedar St, New York City,NY,10001 +275220,Google Phone,1,600.0,2019-10-25 19:01:00,380 Ridge St, New York City,NY,10001 +275221,AAA Batteries (4-pack),1,2.99,2019-10-23 16:31:00,794 4th St, New York City,NY,10001 +275222,Lightning Charging Cable,1,14.95,2019-10-09 19:29:00,550 Dogwood St, Atlanta,GA,30301 +275223,27in FHD Monitor,1,149.99,2019-10-16 17:23:00,658 Maple St, San Francisco,CA,94016 +275224,Google Phone,1,600.0,2019-10-27 07:29:00,150 7th St, Austin,TX,73301 +275224,USB-C Charging Cable,1,11.95,2019-10-27 07:29:00,150 7th St, Austin,TX,73301 +275225,Bose SoundSport Headphones,1,99.99,2019-10-26 20:00:00,621 Johnson St, Dallas,TX,75001 +275226,AA Batteries (4-pack),1,3.84,2019-10-09 16:58:00,405 Lincoln St, New York City,NY,10001 +275227,AA Batteries (4-pack),1,3.84,2019-10-12 09:25:00,26 Walnut St, Boston,MA,02215 +275228,USB-C Charging Cable,1,11.95,2019-10-23 11:26:00,501 7th St, San Francisco,CA,94016 +275229,Lightning Charging Cable,1,14.95,2019-10-23 10:21:00,718 Wilson St, Seattle,WA,98101 +275230,27in 4K Gaming Monitor,1,389.99,2019-10-12 00:40:00,255 7th St, New York City,NY,10001 +275231,AA Batteries (4-pack),1,3.84,2019-10-26 13:02:00,624 Adams St, New York City,NY,10001 +275232,Wired Headphones,1,11.99,2019-10-15 19:21:00,617 Center St, Los Angeles,CA,90001 +275233,Bose SoundSport Headphones,1,99.99,2019-10-11 21:55:00,87 Willow St, Atlanta,GA,30301 +275234,AA Batteries (4-pack),1,3.84,2019-10-02 23:11:00,29 5th St, New York City,NY,10001 +275235,34in Ultrawide Monitor,1,379.99,2019-10-08 18:54:00,728 Sunset St, New York City,NY,10001 +275236,USB-C Charging Cable,1,11.95,2019-10-07 08:20:00,317 Johnson St, Seattle,WA,98101 +275237,AA Batteries (4-pack),1,3.84,2019-10-08 18:18:00,725 12th St, Los Angeles,CA,90001 +275238,Google Phone,1,600.0,2019-10-24 14:04:00,88 11th St, Los Angeles,CA,90001 +275239,34in Ultrawide Monitor,1,379.99,2019-10-10 14:31:00,453 Maple St, New York City,NY,10001 +275240,USB-C Charging Cable,1,11.95,2019-10-30 21:29:00,983 Sunset St, Atlanta,GA,30301 +275241,Lightning Charging Cable,1,14.95,2019-10-03 17:07:00,970 14th St, Seattle,WA,98101 +275242,27in 4K Gaming Monitor,1,389.99,2019-10-04 13:41:00,250 2nd St, San Francisco,CA,94016 +275243,34in Ultrawide Monitor,1,379.99,2019-10-15 13:28:00,686 2nd St, Los Angeles,CA,90001 +275244,Bose SoundSport Headphones,1,99.99,2019-10-26 14:15:00,304 Wilson St, Los Angeles,CA,90001 +275245,27in FHD Monitor,1,149.99,2019-10-01 07:46:00,945 Ridge St, Seattle,WA,98101 +275246,Macbook Pro Laptop,1,1700.0,2019-10-11 14:48:00,193 Washington St, Boston,MA,02215 +275247,iPhone,1,700.0,2019-10-04 21:23:00,962 Johnson St, Austin,TX,73301 +275248,Wired Headphones,1,11.99,2019-10-23 17:59:00,119 Park St, New York City,NY,10001 +275249,AAA Batteries (4-pack),2,2.99,2019-10-23 15:30:00,315 Jackson St, San Francisco,CA,94016 +275250,USB-C Charging Cable,1,11.95,2019-10-04 22:06:00,21 Chestnut St, Seattle,WA,98101 +275251,27in FHD Monitor,1,149.99,2019-10-28 12:08:00,397 Pine St, Dallas,TX,75001 +275252,34in Ultrawide Monitor,1,379.99,2019-10-08 17:29:00,727 Cedar St, San Francisco,CA,94016 +275253,AAA Batteries (4-pack),2,2.99,2019-10-25 20:12:00,976 Meadow St, San Francisco,CA,94016 +275254,iPhone,1,700.0,2019-10-03 09:48:00,247 River St, Seattle,WA,98101 +275255,AA Batteries (4-pack),1,3.84,2019-10-29 10:12:00,795 Washington St, Portland,OR,97035 +275256,Apple Airpods Headphones,1,150.0,2019-10-02 11:27:00,274 Spruce St, Dallas,TX,75001 +275257,AA Batteries (4-pack),1,3.84,2019-10-12 20:13:00,193 Madison St, Los Angeles,CA,90001 +275258,27in 4K Gaming Monitor,1,389.99,2019-10-11 02:04:00,328 1st St, Atlanta,GA,30301 +275259,AA Batteries (4-pack),1,3.84,2019-10-25 19:54:00,94 Lake St, New York City,NY,10001 +275260,Apple Airpods Headphones,1,150.0,2019-10-12 18:02:00,983 Forest St, San Francisco,CA,94016 +275261,Flatscreen TV,1,300.0,2019-10-15 22:14:00,303 Cherry St, Boston,MA,02215 +275262,Wired Headphones,1,11.99,2019-10-26 23:10:00,679 River St, Los Angeles,CA,90001 +275263,AAA Batteries (4-pack),1,2.99,2019-10-27 09:01:00,942 Highland St, San Francisco,CA,94016 +275264,Apple Airpods Headphones,1,150.0,2019-10-24 16:57:00,264 10th St, San Francisco,CA,94016 +275265,AA Batteries (4-pack),1,3.84,2019-10-26 14:20:00,918 10th St, Dallas,TX,75001 +275266,USB-C Charging Cable,1,11.95,2019-10-11 20:28:00,612 Adams St, Atlanta,GA,30301 +275267,Bose SoundSport Headphones,1,99.99,2019-10-05 21:02:00,697 2nd St, San Francisco,CA,94016 +275268,AA Batteries (4-pack),1,3.84,2019-10-12 23:13:00,419 8th St, Portland,ME,04101 +275269,Apple Airpods Headphones,1,150.0,2019-10-05 13:22:00,230 Center St, Atlanta,GA,30301 +275270,Apple Airpods Headphones,1,150.0,2019-10-15 22:55:00,362 Hickory St, San Francisco,CA,94016 +275271,Apple Airpods Headphones,1,150.0,2019-10-02 20:04:00,691 14th St, Boston,MA,02215 +275272,34in Ultrawide Monitor,1,379.99,2019-10-30 14:16:00,616 Lakeview St, New York City,NY,10001 +275273,Lightning Charging Cable,1,14.95,2019-10-06 18:15:00,457 Hickory St, Dallas,TX,75001 +275274,AA Batteries (4-pack),1,3.84,2019-10-25 19:29:00,932 Adams St, New York City,NY,10001 +275275,iPhone,1,700.0,2019-10-15 10:09:00,752 Highland St, San Francisco,CA,94016 +275276,AA Batteries (4-pack),1,3.84,2019-10-24 09:43:00,588 River St, New York City,NY,10001 +275277,iPhone,1,700.0,2019-10-26 10:13:00,176 10th St, Seattle,WA,98101 +275278,AA Batteries (4-pack),1,3.84,2019-10-07 19:03:00,479 6th St, Portland,OR,97035 +275279,AA Batteries (4-pack),1,3.84,2019-10-28 15:39:00,269 Church St, San Francisco,CA,94016 +275280,27in FHD Monitor,1,149.99,2019-10-11 13:42:00,26 6th St, San Francisco,CA,94016 +275281,AA Batteries (4-pack),1,3.84,2019-10-31 21:01:00,413 Ridge St, Seattle,WA,98101 +275282,Apple Airpods Headphones,1,150.0,2019-10-08 07:07:00,713 1st St, Los Angeles,CA,90001 +275283,Macbook Pro Laptop,1,1700.0,2019-10-22 14:10:00,112 Walnut St, Los Angeles,CA,90001 +275284,AA Batteries (4-pack),2,3.84,2019-10-28 15:06:00,572 Lake St, Seattle,WA,98101 +275285,iPhone,1,700.0,2019-10-09 16:56:00,642 8th St, Los Angeles,CA,90001 +275286,Apple Airpods Headphones,1,150.0,2019-10-08 23:33:00,346 Willow St, Boston,MA,02215 +275287,Macbook Pro Laptop,1,1700.0,2019-10-25 14:10:00,45 Madison St, Los Angeles,CA,90001 +275288,Apple Airpods Headphones,1,150.0,2019-10-03 16:01:00,806 Highland St, Boston,MA,02215 +275289,Google Phone,1,600.0,2019-10-29 18:24:00,656 Church St, Atlanta,GA,30301 +275290,Bose SoundSport Headphones,1,99.99,2019-10-10 15:14:00,855 Adams St, Boston,MA,02215 +275291,Macbook Pro Laptop,1,1700.0,2019-10-18 11:14:00,39 Hickory St, San Francisco,CA,94016 +275292,Bose SoundSport Headphones,1,99.99,2019-10-07 09:49:00,240 Elm St, Los Angeles,CA,90001 +275293,AAA Batteries (4-pack),1,2.99,2019-10-09 13:47:00,286 Jefferson St, Los Angeles,CA,90001 +275294,LG Washing Machine,1,600.0,2019-10-08 12:48:00,257 12th St, San Francisco,CA,94016 +275295,AAA Batteries (4-pack),2,2.99,2019-10-09 12:19:00,75 Jackson St, Dallas,TX,75001 +275296,Google Phone,1,600.0,2019-10-06 11:21:00,50 Sunset St, San Francisco,CA,94016 +275296,Bose SoundSport Headphones,1,99.99,2019-10-06 11:21:00,50 Sunset St, San Francisco,CA,94016 +275297,AAA Batteries (4-pack),1,2.99,2019-10-19 16:35:00,558 Chestnut St, Portland,OR,97035 +275298,Lightning Charging Cable,1,14.95,2019-10-31 23:31:00,253 2nd St, San Francisco,CA,94016 +275299,Lightning Charging Cable,1,14.95,2019-10-20 10:27:00,474 13th St, San Francisco,CA,94016 +275300,Apple Airpods Headphones,1,150.0,2019-10-19 07:52:00,332 Spruce St, Portland,OR,97035 +275301,Apple Airpods Headphones,1,150.0,2019-10-06 19:46:00,349 Johnson St, San Francisco,CA,94016 +275302,iPhone,1,700.0,2019-10-06 18:41:00,932 8th St, San Francisco,CA,94016 +275303,20in Monitor,1,109.99,2019-10-19 14:57:00,867 10th St, San Francisco,CA,94016 +275304,AA Batteries (4-pack),2,3.84,2019-10-16 10:40:00,992 6th St, Portland,ME,04101 +275305,Lightning Charging Cable,1,14.95,2019-10-12 16:26:00,565 Sunset St, Dallas,TX,75001 +275306,USB-C Charging Cable,1,11.95,2019-10-14 10:51:00,271 Chestnut St, Los Angeles,CA,90001 +275307,Lightning Charging Cable,1,14.95,2019-10-31 19:13:00,129 Dogwood St, New York City,NY,10001 +275308,AA Batteries (4-pack),2,3.84,2019-10-18 19:24:00,809 8th St, Los Angeles,CA,90001 +275309,USB-C Charging Cable,1,11.95,2019-10-01 20:18:00,665 Elm St, Portland,OR,97035 +275310,34in Ultrawide Monitor,1,379.99,2019-10-16 21:42:00,675 Hickory St, San Francisco,CA,94016 +275311,Flatscreen TV,1,300.0,2019-10-03 18:04:00,771 Johnson St, New York City,NY,10001 +275312,USB-C Charging Cable,1,11.95,2019-10-16 09:16:00,93 Meadow St, Los Angeles,CA,90001 +275313,USB-C Charging Cable,1,11.95,2019-10-13 17:19:00,402 4th St, Boston,MA,02215 +275314,Flatscreen TV,1,300.0,2019-10-23 13:16:00,273 Pine St, Atlanta,GA,30301 +275315,Bose SoundSport Headphones,1,99.99,2019-10-05 12:13:00,752 Meadow St, Boston,MA,02215 +275316,USB-C Charging Cable,1,11.95,2019-10-18 12:51:00,571 Lakeview St, Dallas,TX,75001 +275317,AAA Batteries (4-pack),2,2.99,2019-10-27 11:16:00,760 South St, Los Angeles,CA,90001 +275318,Wired Headphones,1,11.99,2019-10-20 16:42:00,338 Johnson St, Los Angeles,CA,90001 +275319,USB-C Charging Cable,1,11.95,2019-10-13 12:22:00,347 2nd St, Portland,OR,97035 +275320,USB-C Charging Cable,1,11.95,2019-10-02 19:24:00,883 6th St, San Francisco,CA,94016 +275321,USB-C Charging Cable,1,11.95,2019-10-16 14:05:00,709 1st St, Seattle,WA,98101 +275322,Apple Airpods Headphones,1,150.0,2019-10-17 15:20:00,253 Lake St, Boston,MA,02215 +275323,Apple Airpods Headphones,1,150.0,2019-10-12 11:12:00,655 14th St, New York City,NY,10001 +275324,USB-C Charging Cable,1,11.95,2019-10-11 10:25:00,586 Lakeview St, Atlanta,GA,30301 +275325,AA Batteries (4-pack),1,3.84,2019-10-30 15:34:00,184 Lincoln St, Austin,TX,73301 +275326,Macbook Pro Laptop,1,1700.0,2019-10-19 20:45:00,517 7th St, San Francisco,CA,94016 +275327,AAA Batteries (4-pack),1,2.99,2019-10-25 07:05:00,259 6th St, San Francisco,CA,94016 +275328,27in 4K Gaming Monitor,1,389.99,2019-10-30 13:22:00,726 Willow St, New York City,NY,10001 +275329,Wired Headphones,1,11.99,2019-10-24 21:09:00,75 Elm St, Los Angeles,CA,90001 +275330,34in Ultrawide Monitor,1,379.99,2019-10-14 02:53:00,343 6th St, Seattle,WA,98101 +275331,Lightning Charging Cable,1,14.95,2019-10-08 21:48:00,230 Cherry St, San Francisco,CA,94016 +275332,Flatscreen TV,1,300.0,2019-10-27 10:09:00,512 Madison St, Austin,TX,73301 +275333,Bose SoundSport Headphones,1,99.99,2019-10-14 20:39:00,107 Elm St, San Francisco,CA,94016 +275334,Lightning Charging Cable,1,14.95,2019-10-06 23:52:00,543 Lincoln St, Los Angeles,CA,90001 +275335,USB-C Charging Cable,1,11.95,2019-10-30 11:49:00,315 North St, Seattle,WA,98101 +275336,USB-C Charging Cable,1,11.95,2019-10-29 12:31:00,61 West St, San Francisco,CA,94016 +275337,Apple Airpods Headphones,1,150.0,2019-10-02 14:06:00,245 2nd St, Dallas,TX,75001 +275338,AAA Batteries (4-pack),3,2.99,2019-10-10 21:12:00,157 Madison St, Los Angeles,CA,90001 +275339,Lightning Charging Cable,1,14.95,2019-10-11 18:45:00,374 Lake St, Seattle,WA,98101 +275340,Apple Airpods Headphones,1,150.0,2019-10-23 21:08:00,692 13th St, Los Angeles,CA,90001 +275341,27in 4K Gaming Monitor,1,389.99,2019-10-25 19:57:00,349 Lincoln St, Dallas,TX,75001 +275342,Lightning Charging Cable,1,14.95,2019-10-19 16:48:00,738 West St, San Francisco,CA,94016 +275343,Wired Headphones,1,11.99,2019-10-23 21:20:00,28 Wilson St, Atlanta,GA,30301 +275344,Bose SoundSport Headphones,1,99.99,2019-10-05 23:28:00,5 Highland St, San Francisco,CA,94016 +275345,Apple Airpods Headphones,1,150.0,2019-10-06 20:42:00,559 9th St, Los Angeles,CA,90001 +275346,USB-C Charging Cable,1,11.95,2019-10-20 12:38:00,57 12th St, Seattle,WA,98101 +275347,USB-C Charging Cable,1,11.95,2019-10-22 11:12:00,535 12th St, San Francisco,CA,94016 +275348,Lightning Charging Cable,1,14.95,2019-10-20 10:50:00,132 River St, Seattle,WA,98101 +275348,USB-C Charging Cable,1,11.95,2019-10-20 10:50:00,132 River St, Seattle,WA,98101 +275349,AAA Batteries (4-pack),1,2.99,2019-10-03 11:05:00,831 Jefferson St, Dallas,TX,75001 +275350,USB-C Charging Cable,1,11.95,2019-10-02 17:10:00,623 5th St, San Francisco,CA,94016 +275351,AAA Batteries (4-pack),1,2.99,2019-10-08 12:44:00,287 Lakeview St, Boston,MA,02215 +275352,AA Batteries (4-pack),1,3.84,2019-10-25 12:12:00,822 Wilson St, Los Angeles,CA,90001 +275353,Bose SoundSport Headphones,1,99.99,2019-10-12 00:45:00,15 Johnson St, San Francisco,CA,94016 +275354,Bose SoundSport Headphones,1,99.99,2019-10-10 22:59:00,927 Main St, Los Angeles,CA,90001 +275355,Wired Headphones,1,11.99,2019-10-12 10:12:00,832 1st St, San Francisco,CA,94016 +275356,USB-C Charging Cable,1,11.95,2019-10-25 16:56:00,853 River St, Boston,MA,02215 +275357,USB-C Charging Cable,1,11.95,2019-10-05 08:49:00,142 4th St, Los Angeles,CA,90001 +275358,USB-C Charging Cable,1,11.95,2019-10-13 15:06:00,596 Hickory St, Portland,OR,97035 +275359,AA Batteries (4-pack),1,3.84,2019-10-15 05:18:00,413 Pine St, New York City,NY,10001 +275360,Apple Airpods Headphones,1,150.0,2019-10-11 12:24:00,646 Park St, Portland,ME,04101 +275361,Lightning Charging Cable,1,14.95,2019-10-18 16:37:00,258 Dogwood St, Boston,MA,02215 +275362,iPhone,1,700.0,2019-10-12 20:42:00,479 9th St, Portland,OR,97035 +275363,Google Phone,1,600.0,2019-10-01 07:59:00,696 Highland St, New York City,NY,10001 +275364,AAA Batteries (4-pack),3,2.99,2019-10-26 14:14:00,796 1st St, Los Angeles,CA,90001 +275364,Lightning Charging Cable,1,14.95,2019-10-26 14:14:00,796 1st St, Los Angeles,CA,90001 +275365,Lightning Charging Cable,1,14.95,2019-10-23 09:53:00,369 Washington St, Seattle,WA,98101 +275366,Apple Airpods Headphones,1,150.0,2019-10-21 10:31:00,313 North St, Dallas,TX,75001 +275367,Bose SoundSport Headphones,1,99.99,2019-10-08 19:04:00,627 4th St, Atlanta,GA,30301 +275368,AAA Batteries (4-pack),1,2.99,2019-10-29 13:21:00,665 North St, New York City,NY,10001 +275369,20in Monitor,1,109.99,2019-10-24 16:15:00,177 Ridge St, Boston,MA,02215 +275370,Macbook Pro Laptop,1,1700.0,2019-10-08 22:25:00,888 Spruce St, Austin,TX,73301 +275371,USB-C Charging Cable,1,11.95,2019-10-03 18:31:00,425 Center St, Boston,MA,02215 +275372,AAA Batteries (4-pack),4,2.99,2019-10-30 11:16:00,687 Maple St, Los Angeles,CA,90001 +275373,Google Phone,1,600.0,2019-10-31 14:36:00,725 Dogwood St, Portland,OR,97035 +275373,Lightning Charging Cable,1,14.95,2019-10-31 14:36:00,725 Dogwood St, Portland,OR,97035 +275374,AAA Batteries (4-pack),1,2.99,2019-10-28 20:26:00,517 Meadow St, San Francisco,CA,94016 +275375,Lightning Charging Cable,1,14.95,2019-10-30 12:46:00,129 Sunset St, Boston,MA,02215 +275376,USB-C Charging Cable,1,11.95,2019-10-04 21:00:00,710 6th St, Los Angeles,CA,90001 +275377,ThinkPad Laptop,1,999.99,2019-10-28 21:55:00,468 8th St, Dallas,TX,75001 +275378,Bose SoundSport Headphones,1,99.99,2019-10-10 12:30:00,829 Washington St, New York City,NY,10001 +275379,iPhone,1,700.0,2019-10-04 14:27:00,66 Cedar St, San Francisco,CA,94016 +275380,Bose SoundSport Headphones,1,99.99,2019-10-23 09:34:00,353 Center St, New York City,NY,10001 +275381,ThinkPad Laptop,1,999.99,2019-10-01 11:03:00,198 1st St, San Francisco,CA,94016 +275382,27in 4K Gaming Monitor,1,389.99,2019-10-24 17:25:00,576 7th St, Los Angeles,CA,90001 +275383,27in 4K Gaming Monitor,1,389.99,2019-10-06 16:33:00,18 Chestnut St, New York City,NY,10001 +275384,Macbook Pro Laptop,1,1700.0,2019-10-05 15:00:00,610 14th St, Los Angeles,CA,90001 +275385,AA Batteries (4-pack),2,3.84,2019-10-30 14:09:00,169 Lincoln St, San Francisco,CA,94016 +275386,Vareebadd Phone,1,400.0,2019-10-22 15:34:00,911 Main St, Dallas,TX,75001 +275387,27in FHD Monitor,1,149.99,2019-10-17 16:04:00,75 Main St, Dallas,TX,75001 +275388,Wired Headphones,1,11.99,2019-10-28 07:54:00,512 6th St, Los Angeles,CA,90001 +275389,AA Batteries (4-pack),1,3.84,2019-10-12 14:53:00,404 Elm St, Atlanta,GA,30301 +275390,Bose SoundSport Headphones,1,99.99,2019-10-25 12:02:00,59 North St, Los Angeles,CA,90001 +275391,Lightning Charging Cable,2,14.95,2019-10-03 10:36:00,539 Lake St, New York City,NY,10001 +275392,Flatscreen TV,1,300.0,2019-10-16 20:02:00,972 Wilson St, San Francisco,CA,94016 +275393,AA Batteries (4-pack),3,3.84,2019-10-19 11:51:00,705 South St, Dallas,TX,75001 +275394,34in Ultrawide Monitor,1,379.99,2019-10-05 09:51:00,147 Jefferson St, New York City,NY,10001 +275395,Wired Headphones,1,11.99,2019-10-09 14:28:00,50 Church St, San Francisco,CA,94016 +275396,USB-C Charging Cable,1,11.95,2019-10-05 05:36:00,648 Jackson St, San Francisco,CA,94016 +275397,AAA Batteries (4-pack),1,2.99,2019-10-02 23:32:00,23 Maple St, Austin,TX,73301 +275398,ThinkPad Laptop,1,999.99,2019-10-25 07:24:00,111 4th St, Seattle,WA,98101 +275399,27in FHD Monitor,1,149.99,2019-10-20 12:34:00,134 Forest St, New York City,NY,10001 +275400,AAA Batteries (4-pack),4,2.99,2019-10-19 23:53:00,510 West St, Los Angeles,CA,90001 +275401,AA Batteries (4-pack),1,3.84,2019-10-06 12:33:00,706 Hill St, San Francisco,CA,94016 +275402,Lightning Charging Cable,1,14.95,2019-10-28 17:58:00,122 Cherry St, Austin,TX,73301 +275403,USB-C Charging Cable,2,11.95,2019-10-06 19:37:00,53 Maple St, Atlanta,GA,30301 +275404,AA Batteries (4-pack),1,3.84,2019-10-05 22:31:00,759 2nd St, Los Angeles,CA,90001 +275405,Apple Airpods Headphones,1,150.0,2019-10-17 15:21:00,599 Church St, Los Angeles,CA,90001 +275406,AA Batteries (4-pack),1,3.84,2019-10-23 21:28:00,385 Meadow St, Los Angeles,CA,90001 +275407,Flatscreen TV,1,300.0,2019-10-26 10:29:00,965 Chestnut St, San Francisco,CA,94016 +275408,27in FHD Monitor,1,149.99,2019-10-14 08:56:00,186 Adams St, San Francisco,CA,94016 +275409,USB-C Charging Cable,1,11.95,2019-10-16 14:28:00,185 Cedar St, Portland,OR,97035 +275410,AAA Batteries (4-pack),1,2.99,2019-10-24 22:57:00,289 West St, San Francisco,CA,94016 +275411,AA Batteries (4-pack),1,3.84,2019-10-14 20:35:00,784 9th St, Los Angeles,CA,90001 +275412,Wired Headphones,1,11.99,2019-10-22 17:49:00,897 5th St, Los Angeles,CA,90001 +275413,20in Monitor,1,109.99,2019-10-20 11:38:00,976 Elm St, Boston,MA,02215 +275414,Macbook Pro Laptop,1,1700.0,2019-10-06 16:54:00,475 4th St, San Francisco,CA,94016 +275415,AA Batteries (4-pack),1,3.84,2019-10-11 12:21:00,970 River St, Los Angeles,CA,90001 +275416,USB-C Charging Cable,1,11.95,2019-10-20 10:32:00,160 6th St, Portland,OR,97035 +275417,Wired Headphones,2,11.99,2019-10-31 15:35:00,746 Church St, Boston,MA,02215 +275418,Apple Airpods Headphones,1,150.0,2019-10-05 15:21:00,895 6th St, New York City,NY,10001 +275418,Wired Headphones,1,11.99,2019-10-05 15:21:00,895 6th St, New York City,NY,10001 +275419,20in Monitor,1,109.99,2019-10-30 12:09:00,728 Lake St, San Francisco,CA,94016 +275420,Lightning Charging Cable,1,14.95,2019-10-17 16:20:00,975 Jackson St, Boston,MA,02215 +275421,iPhone,1,700.0,2019-10-02 11:36:00,815 10th St, New York City,NY,10001 +275422,Bose SoundSport Headphones,1,99.99,2019-10-08 12:45:00,734 5th St, Boston,MA,02215 +275423,27in 4K Gaming Monitor,1,389.99,2019-10-04 15:45:00,38 Ridge St, Atlanta,GA,30301 +275424,Apple Airpods Headphones,1,150.0,2019-10-09 16:45:00,126 Johnson St, New York City,NY,10001 +275425,Wired Headphones,1,11.99,2019-10-20 13:14:00,995 Church St, Dallas,TX,75001 +275426,AAA Batteries (4-pack),1,2.99,2019-10-11 05:29:00,167 6th St, Dallas,TX,75001 +275427,34in Ultrawide Monitor,1,379.99,2019-10-26 12:54:00,154 10th St, Dallas,TX,75001 +275428,Macbook Pro Laptop,1,1700.0,2019-10-28 17:07:00,392 2nd St, Seattle,WA,98101 +275429,Flatscreen TV,1,300.0,2019-10-30 20:29:00,703 5th St, Portland,OR,97035 +275430,Google Phone,1,600.0,2019-10-04 06:16:00,367 North St, San Francisco,CA,94016 +275431,USB-C Charging Cable,1,11.95,2019-10-10 22:00:00,168 Washington St, San Francisco,CA,94016 +275432,AA Batteries (4-pack),1,3.84,2019-10-02 11:39:00,65 North St, Los Angeles,CA,90001 +275433,Apple Airpods Headphones,1,150.0,2019-10-27 08:01:00,410 Willow St, Los Angeles,CA,90001 +275434,AAA Batteries (4-pack),1,2.99,2019-10-27 12:58:00,194 4th St, Dallas,TX,75001 +275435,34in Ultrawide Monitor,1,379.99,2019-10-25 17:51:00,852 Park St, Atlanta,GA,30301 +275436,USB-C Charging Cable,1,11.95,2019-10-31 12:07:00,757 Highland St, Portland,ME,04101 +275437,USB-C Charging Cable,1,11.95,2019-10-20 12:48:00,785 Spruce St, Portland,OR,97035 +275438,AAA Batteries (4-pack),2,2.99,2019-10-13 22:06:00,575 8th St, New York City,NY,10001 +275439,AA Batteries (4-pack),3,3.84,2019-10-25 11:54:00,133 Park St, Seattle,WA,98101 +275440,Lightning Charging Cable,1,14.95,2019-10-10 15:20:00,854 Jackson St, New York City,NY,10001 +275441,AA Batteries (4-pack),1,3.84,2019-10-03 22:39:00,158 Hill St, San Francisco,CA,94016 +275442,Lightning Charging Cable,1,14.95,2019-10-23 22:05:00,635 Ridge St, San Francisco,CA,94016 +275443,Bose SoundSport Headphones,1,99.99,2019-10-10 17:44:00,547 North St, Boston,MA,02215 +275444,34in Ultrawide Monitor,1,379.99,2019-10-09 05:46:00,435 Lake St, Los Angeles,CA,90001 +275445,34in Ultrawide Monitor,1,379.99,2019-10-06 22:36:00,282 Meadow St, Portland,OR,97035 +275446,Bose SoundSport Headphones,1,99.99,2019-10-31 11:41:00,750 Church St, Los Angeles,CA,90001 +275447,Lightning Charging Cable,1,14.95,2019-10-19 10:19:00,155 Willow St, Austin,TX,73301 +275448,Lightning Charging Cable,1,14.95,2019-10-31 15:55:00,724 Spruce St, Dallas,TX,75001 +275449,USB-C Charging Cable,1,11.95,2019-10-28 11:49:00,726 10th St, New York City,NY,10001 +275450,iPhone,1,700.0,2019-10-01 05:20:00,337 North St, Dallas,TX,75001 +275451,Macbook Pro Laptop,1,1700.0,2019-10-29 21:35:00,164 Madison St, New York City,NY,10001 +275452,Bose SoundSport Headphones,1,99.99,2019-10-19 14:48:00,699 Forest St, Seattle,WA,98101 +275453,27in 4K Gaming Monitor,1,389.99,2019-10-10 21:15:00,486 Adams St, Dallas,TX,75001 +275454,Google Phone,1,600.0,2019-10-19 22:25:00,900 River St, Portland,OR,97035 +275455,20in Monitor,1,109.99,2019-10-01 12:22:00,739 9th St, San Francisco,CA,94016 +275456,AA Batteries (4-pack),1,3.84,2019-10-27 20:01:00,796 14th St, Los Angeles,CA,90001 +275456,iPhone,1,700.0,2019-10-27 20:01:00,796 14th St, Los Angeles,CA,90001 +275457,Macbook Pro Laptop,1,1700.0,2019-10-15 09:44:00,710 8th St, Portland,ME,04101 +275458,AA Batteries (4-pack),1,3.84,2019-10-21 15:14:00,293 Wilson St, San Francisco,CA,94016 +275459,USB-C Charging Cable,1,11.95,2019-10-20 06:27:00,396 Spruce St, Atlanta,GA,30301 +275460,AA Batteries (4-pack),1,3.84,2019-10-08 14:08:00,673 Jefferson St, Boston,MA,02215 +275461,Lightning Charging Cable,1,14.95,2019-10-20 08:48:00,698 Center St, Atlanta,GA,30301 +275462,Wired Headphones,1,11.99,2019-10-07 15:21:00,557 12th St, Los Angeles,CA,90001 +275463,34in Ultrawide Monitor,1,379.99,2019-10-18 11:32:00,229 Jackson St, New York City,NY,10001 +275463,USB-C Charging Cable,1,11.95,2019-10-18 11:32:00,229 Jackson St, New York City,NY,10001 +275464,AA Batteries (4-pack),1,3.84,2019-10-02 11:23:00,869 Cherry St, Boston,MA,02215 +275465,27in 4K Gaming Monitor,1,389.99,2019-10-16 08:53:00,211 Elm St, San Francisco,CA,94016 +275466,AAA Batteries (4-pack),1,2.99,2019-10-12 15:25:00,858 Hill St, Portland,ME,04101 +275467,Lightning Charging Cable,1,14.95,2019-10-16 19:04:00,984 8th St, San Francisco,CA,94016 +275468,USB-C Charging Cable,1,11.95,2019-10-25 15:32:00,503 Cherry St, New York City,NY,10001 +275469,Lightning Charging Cable,1,14.95,2019-10-30 14:58:00,129 West St, Portland,OR,97035 +275470,AAA Batteries (4-pack),2,2.99,2019-10-30 00:15:00,601 Hill St, Boston,MA,02215 +275471,LG Washing Machine,1,600.0,2019-10-09 09:35:00,962 Chestnut St, Boston,MA,02215 +275472,USB-C Charging Cable,2,11.95,2019-10-08 15:48:00,385 Adams St, Atlanta,GA,30301 +275473,Bose SoundSport Headphones,1,99.99,2019-10-29 22:36:00,574 Jefferson St, Boston,MA,02215 +275474,iPhone,1,700.0,2019-10-01 10:14:00,554 Jefferson St, Austin,TX,73301 +275474,Wired Headphones,1,11.99,2019-10-01 10:14:00,554 Jefferson St, Austin,TX,73301 +275475,USB-C Charging Cable,2,11.95,2019-10-18 18:56:00,505 Ridge St, Los Angeles,CA,90001 +275476,Wired Headphones,1,11.99,2019-10-09 22:20:00,925 Center St, San Francisco,CA,94016 +275477,Wired Headphones,1,11.99,2019-10-21 09:55:00,145 11th St, Atlanta,GA,30301 +275478,Wired Headphones,1,11.99,2019-10-06 14:36:00,385 Walnut St, Seattle,WA,98101 +275479,Flatscreen TV,1,300.0,2019-10-23 01:06:00,657 Sunset St, Dallas,TX,75001 +275480,Lightning Charging Cable,1,14.95,2019-10-30 21:05:00,943 6th St, New York City,NY,10001 +275481,AAA Batteries (4-pack),1,2.99,2019-10-28 00:08:00,27 Cherry St, Boston,MA,02215 +275482,34in Ultrawide Monitor,1,379.99,2019-10-11 23:11:00,358 Jackson St, New York City,NY,10001 +275483,Vareebadd Phone,1,400.0,2019-10-09 17:53:00,523 Highland St, Portland,OR,97035 +275484,20in Monitor,1,109.99,2019-10-27 12:10:00,311 River St, Los Angeles,CA,90001 +275485,Wired Headphones,1,11.99,2019-10-09 17:29:00,448 Dogwood St, Los Angeles,CA,90001 +275486,27in 4K Gaming Monitor,1,389.99,2019-10-30 09:21:00,847 Johnson St, Boston,MA,02215 +275487,AAA Batteries (4-pack),1,2.99,2019-10-20 06:01:00,217 Dogwood St, New York City,NY,10001 +275488,Lightning Charging Cable,1,14.95,2019-10-09 12:42:00,815 Church St, Seattle,WA,98101 +275489,20in Monitor,1,109.99,2019-10-20 11:51:00,515 Cedar St, Boston,MA,02215 +275490,Google Phone,1,600.0,2019-10-18 16:29:00,546 Highland St, San Francisco,CA,94016 +275490,USB-C Charging Cable,4,11.95,2019-10-18 16:29:00,546 Highland St, San Francisco,CA,94016 +275491,Apple Airpods Headphones,1,150.0,2019-10-26 10:29:00,62 Hickory St, New York City,NY,10001 +275492,AAA Batteries (4-pack),1,2.99,2019-10-17 14:10:00,418 13th St, Los Angeles,CA,90001 +275493,USB-C Charging Cable,1,11.95,2019-10-11 17:52:00,72 7th St, Boston,MA,02215 +275494,Google Phone,1,600.0,2019-10-28 16:39:00,915 Forest St, Atlanta,GA,30301 +275495,Apple Airpods Headphones,1,150.0,2019-10-10 18:05:00,402 Madison St, Atlanta,GA,30301 +275496,USB-C Charging Cable,1,11.95,2019-10-22 12:21:00,635 5th St, Austin,TX,73301 +275497,Flatscreen TV,1,300.0,2019-10-10 21:34:00,881 West St, Boston,MA,02215 +275498,AAA Batteries (4-pack),1,2.99,2019-10-26 09:25:00,487 Meadow St, San Francisco,CA,94016 +275499,AAA Batteries (4-pack),1,2.99,2019-10-05 14:36:00,4 Forest St, San Francisco,CA,94016 +275500,34in Ultrawide Monitor,1,379.99,2019-10-08 19:26:00,734 Lakeview St, New York City,NY,10001 +275501,27in 4K Gaming Monitor,1,389.99,2019-10-28 10:56:00,528 Adams St, Boston,MA,02215 +275502,20in Monitor,1,109.99,2019-10-25 19:26:00,747 12th St, Boston,MA,02215 +275503,27in 4K Gaming Monitor,1,389.99,2019-10-10 13:02:00,360 10th St, Los Angeles,CA,90001 +275504,AA Batteries (4-pack),2,3.84,2019-10-30 11:56:00,110 Dogwood St, San Francisco,CA,94016 +275505,27in 4K Gaming Monitor,1,389.99,2019-10-20 20:30:00,710 Lake St, Seattle,WA,98101 +275506,USB-C Charging Cable,2,11.95,2019-10-31 12:32:00,825 Cedar St, Seattle,WA,98101 +275507,Lightning Charging Cable,1,14.95,2019-10-02 17:01:00,235 River St, Los Angeles,CA,90001 +275508,Wired Headphones,1,11.99,2019-10-04 17:44:00,41 Pine St, New York City,NY,10001 +275509,20in Monitor,1,109.99,2019-10-17 18:41:00,45 North St, Dallas,TX,75001 +275510,AAA Batteries (4-pack),2,2.99,2019-10-07 12:00:00,55 9th St, San Francisco,CA,94016 +275511,Apple Airpods Headphones,1,150.0,2019-10-13 18:35:00,732 12th St, San Francisco,CA,94016 +275512,Bose SoundSport Headphones,1,99.99,2019-10-24 06:04:00,680 4th St, San Francisco,CA,94016 +275513,AAA Batteries (4-pack),2,2.99,2019-10-19 18:22:00,308 River St, Seattle,WA,98101 +275514,Apple Airpods Headphones,1,150.0,2019-10-06 12:33:00,639 Center St, Los Angeles,CA,90001 +275515,Flatscreen TV,1,300.0,2019-10-28 19:36:00,643 Main St, New York City,NY,10001 +275516,AAA Batteries (4-pack),1,2.99,2019-10-05 12:29:00,516 Ridge St, Los Angeles,CA,90001 +275517,AA Batteries (4-pack),1,3.84,2019-10-15 16:40:00,271 12th St, Dallas,TX,75001 +275518,AA Batteries (4-pack),1,3.84,2019-10-12 08:48:00,48 10th St, San Francisco,CA,94016 +275519,Bose SoundSport Headphones,1,99.99,2019-10-05 21:00:00,148 Spruce St, Boston,MA,02215 +275520,ThinkPad Laptop,1,999.99,2019-10-29 11:32:00,979 9th St, Portland,OR,97035 +275521,Lightning Charging Cable,1,14.95,2019-10-12 21:11:00,602 Church St, Los Angeles,CA,90001 +275522,Lightning Charging Cable,2,14.95,2019-10-13 19:27:00,350 9th St, Boston,MA,02215 +275523,USB-C Charging Cable,1,11.95,2019-10-03 20:24:00,518 14th St, San Francisco,CA,94016 +275524,AA Batteries (4-pack),1,3.84,2019-10-22 15:17:00,146 Madison St, New York City,NY,10001 +275525,AAA Batteries (4-pack),1,2.99,2019-10-13 13:00:00,565 Lakeview St, Seattle,WA,98101 +275526,Lightning Charging Cable,1,14.95,2019-10-18 09:59:00,258 Madison St, Atlanta,GA,30301 +275527,AA Batteries (4-pack),2,3.84,2019-10-10 20:14:00,848 14th St, Austin,TX,73301 +275528,AA Batteries (4-pack),1,3.84,2019-10-14 14:22:00,938 Sunset St, Boston,MA,02215 +275529,Lightning Charging Cable,1,14.95,2019-10-03 22:35:00,423 Adams St, New York City,NY,10001 +275530,27in FHD Monitor,1,149.99,2019-10-30 19:14:00,23 12th St, Los Angeles,CA,90001 +275531,Apple Airpods Headphones,1,150.0,2019-10-31 09:06:00,35 Dogwood St, Austin,TX,73301 +275532,Google Phone,1,600.0,2019-10-17 18:24:00,393 Church St, San Francisco,CA,94016 +275533,Wired Headphones,1,11.99,2019-10-29 00:15:00,104 2nd St, San Francisco,CA,94016 +275534,USB-C Charging Cable,1,11.95,2019-10-04 11:41:00,305 6th St, Los Angeles,CA,90001 +275535,Flatscreen TV,1,300.0,2019-10-14 00:57:00,905 Lakeview St, San Francisco,CA,94016 +275536,Lightning Charging Cable,1,14.95,2019-10-25 06:45:00,373 South St, Portland,OR,97035 +275537,Wired Headphones,1,11.99,2019-10-20 22:20:00,774 Pine St, San Francisco,CA,94016 +275538,Wired Headphones,1,11.99,2019-10-20 16:05:00,579 Willow St, Atlanta,GA,30301 +275539,Lightning Charging Cable,1,14.95,2019-10-27 18:12:00,615 River St, New York City,NY,10001 +275540,20in Monitor,1,109.99,2019-10-27 17:27:00,310 1st St, Los Angeles,CA,90001 +275541,Macbook Pro Laptop,1,1700.0,2019-10-29 21:45:00,320 Ridge St, Los Angeles,CA,90001 +275542,AAA Batteries (4-pack),1,2.99,2019-10-02 12:34:00,899 West St, Atlanta,GA,30301 +275543,AAA Batteries (4-pack),2,2.99,2019-10-02 21:48:00,629 Pine St, San Francisco,CA,94016 +275544,AAA Batteries (4-pack),2,2.99,2019-10-20 16:52:00,324 Spruce St, Austin,TX,73301 +275545,Google Phone,1,600.0,2019-10-20 15:46:00,592 Park St, New York City,NY,10001 +275545,USB-C Charging Cable,1,11.95,2019-10-20 15:46:00,592 Park St, New York City,NY,10001 +275545,Wired Headphones,1,11.99,2019-10-20 15:46:00,592 Park St, New York City,NY,10001 +275546,USB-C Charging Cable,2,11.95,2019-11-01 02:38:00,571 North St, Seattle,WA,98101 +275547,Bose SoundSport Headphones,1,99.99,2019-10-05 00:21:00,367 Dogwood St, Boston,MA,02215 +275548,USB-C Charging Cable,1,11.95,2019-10-04 06:37:00,665 River St, Atlanta,GA,30301 +275549,AAA Batteries (4-pack),1,2.99,2019-10-14 20:22:00,664 Park St, Boston,MA,02215 +275550,27in 4K Gaming Monitor,1,389.99,2019-10-18 18:16:00,901 Jackson St, San Francisco,CA,94016 +275551,27in FHD Monitor,1,149.99,2019-10-10 15:06:00,810 Hill St, Los Angeles,CA,90001 +275552,Flatscreen TV,1,300.0,2019-10-04 08:51:00,940 14th St, San Francisco,CA,94016 +275553,Lightning Charging Cable,1,14.95,2019-10-01 11:21:00,402 Adams St, Boston,MA,02215 +275554,iPhone,1,700.0,2019-10-05 17:17:00,773 7th St, Atlanta,GA,30301 +275554,Wired Headphones,1,11.99,2019-10-05 17:17:00,773 7th St, Atlanta,GA,30301 +275555,Apple Airpods Headphones,1,150.0,2019-10-24 01:13:00,652 7th St, Los Angeles,CA,90001 +275556,Lightning Charging Cable,1,14.95,2019-10-14 07:12:00,260 14th St, Austin,TX,73301 +275557,20in Monitor,1,109.99,2019-10-09 21:51:00,736 Johnson St, San Francisco,CA,94016 +275558,Wired Headphones,1,11.99,2019-10-06 18:32:00,262 Adams St, Los Angeles,CA,90001 +275559,Bose SoundSport Headphones,1,99.99,2019-10-06 10:04:00,326 2nd St, Atlanta,GA,30301 +275560,Lightning Charging Cable,1,14.95,2019-10-29 16:08:00,564 Jackson St, New York City,NY,10001 +275561,Apple Airpods Headphones,1,150.0,2019-10-15 04:21:00,883 Center St, Austin,TX,73301 +275562,34in Ultrawide Monitor,1,379.99,2019-10-29 14:52:00,877 Jefferson St, Dallas,TX,75001 +275563,Apple Airpods Headphones,1,150.0,2019-10-03 10:57:00,230 Hickory St, Boston,MA,02215 +275564,iPhone,1,700.0,2019-10-30 02:07:00,686 Chestnut St, San Francisco,CA,94016 +275565,Lightning Charging Cable,1,14.95,2019-10-09 15:34:00,881 Church St, San Francisco,CA,94016 +275565,34in Ultrawide Monitor,1,379.99,2019-10-09 15:34:00,881 Church St, San Francisco,CA,94016 +275566,USB-C Charging Cable,1,11.95,2019-10-15 11:30:00,682 12th St, San Francisco,CA,94016 +275567,AAA Batteries (4-pack),1,2.99,2019-10-09 12:13:00,136 Spruce St, New York City,NY,10001 +275568,Wired Headphones,1,11.99,2019-10-31 12:28:00,535 West St, Boston,MA,02215 +275569,AAA Batteries (4-pack),1,2.99,2019-10-21 03:52:00,1 Church St, New York City,NY,10001 +275570,USB-C Charging Cable,2,11.95,2019-10-20 21:38:00,521 West St, Los Angeles,CA,90001 +275571,AAA Batteries (4-pack),2,2.99,2019-10-11 19:59:00,256 Lincoln St, San Francisco,CA,94016 +275572,USB-C Charging Cable,1,11.95,2019-10-19 23:46:00,301 Adams St, Portland,OR,97035 +275573,Apple Airpods Headphones,1,150.0,2019-10-10 11:20:00,390 Elm St, Los Angeles,CA,90001 +275574,AAA Batteries (4-pack),2,2.99,2019-10-27 12:03:00,955 5th St, New York City,NY,10001 +275575,Lightning Charging Cable,1,14.95,2019-10-03 19:25:00,849 Cedar St, San Francisco,CA,94016 +275576,USB-C Charging Cable,1,11.95,2019-10-15 13:16:00,903 11th St, Los Angeles,CA,90001 +275577,iPhone,1,700.0,2019-10-11 21:29:00,181 Center St, Atlanta,GA,30301 +275578,Apple Airpods Headphones,1,150.0,2019-10-22 09:44:00,154 Walnut St, Atlanta,GA,30301 +275579,Vareebadd Phone,1,400.0,2019-10-12 11:28:00,132 Ridge St, Seattle,WA,98101 +275580,Flatscreen TV,1,300.0,2019-10-01 22:17:00,906 12th St, Seattle,WA,98101 +275581,USB-C Charging Cable,1,11.95,2019-10-10 12:49:00,671 1st St, San Francisco,CA,94016 +275582,Lightning Charging Cable,1,14.95,2019-10-05 14:29:00,205 Wilson St, Portland,OR,97035 +275583,AA Batteries (4-pack),1,3.84,2019-10-11 08:32:00,26 Sunset St, Los Angeles,CA,90001 +275584,27in 4K Gaming Monitor,1,389.99,2019-10-23 17:43:00,502 West St, San Francisco,CA,94016 +275585,Apple Airpods Headphones,1,150.0,2019-10-22 20:07:00,6 Park St, Seattle,WA,98101 +275586,Apple Airpods Headphones,1,150.0,2019-10-02 16:09:00,677 Walnut St, Atlanta,GA,30301 +275587,Wired Headphones,1,11.99,2019-10-24 21:53:00,533 Lakeview St, Los Angeles,CA,90001 +275588,AAA Batteries (4-pack),1,2.99,2019-10-11 19:44:00,848 Jefferson St, Los Angeles,CA,90001 +275589,AAA Batteries (4-pack),1,2.99,2019-10-25 21:37:00,411 Hill St, Los Angeles,CA,90001 +275590,USB-C Charging Cable,1,11.95,2019-10-31 08:30:00,362 12th St, San Francisco,CA,94016 +275591,Wired Headphones,1,11.99,2019-10-07 09:04:00,380 Ridge St, Boston,MA,02215 +275592,LG Washing Machine,1,600.0,2019-10-31 19:36:00,400 Sunset St, Los Angeles,CA,90001 +275593,20in Monitor,1,109.99,2019-10-01 07:25:00,51 Main St, Atlanta,GA,30301 +275594,AA Batteries (4-pack),1,3.84,2019-10-15 00:57:00,89 North St, New York City,NY,10001 +275595,Bose SoundSport Headphones,1,99.99,2019-10-04 13:40:00,108 Chestnut St, Boston,MA,02215 +275596,Lightning Charging Cable,1,14.95,2019-10-15 23:23:00,279 Jackson St, San Francisco,CA,94016 +275597,27in 4K Gaming Monitor,1,389.99,2019-10-08 15:15:00,922 Madison St, San Francisco,CA,94016 +275598,Lightning Charging Cable,1,14.95,2019-10-19 17:22:00,463 Spruce St, San Francisco,CA,94016 +275599,USB-C Charging Cable,1,11.95,2019-10-21 08:36:00,390 5th St, San Francisco,CA,94016 +275600,Bose SoundSport Headphones,1,99.99,2019-10-08 20:52:00,665 Main St, Dallas,TX,75001 +275601,Wired Headphones,1,11.99,2019-10-07 12:06:00,170 Wilson St, Boston,MA,02215 +275602,27in 4K Gaming Monitor,1,389.99,2019-10-18 22:35:00,635 Walnut St, Boston,MA,02215 +275603,AAA Batteries (4-pack),1,2.99,2019-10-26 10:32:00,588 2nd St, Atlanta,GA,30301 +275604,34in Ultrawide Monitor,1,379.99,2019-10-14 19:45:00,946 Hill St, San Francisco,CA,94016 +275605,USB-C Charging Cable,1,11.95,2019-10-12 13:00:00,556 6th St, New York City,NY,10001 +275606,Lightning Charging Cable,2,14.95,2019-10-26 10:15:00,697 11th St, Los Angeles,CA,90001 +275606,34in Ultrawide Monitor,1,379.99,2019-10-26 10:15:00,697 11th St, Los Angeles,CA,90001 +275607,AA Batteries (4-pack),1,3.84,2019-10-14 19:49:00,522 West St, Austin,TX,73301 +275608,AA Batteries (4-pack),1,3.84,2019-10-11 14:05:00,336 1st St, Dallas,TX,75001 +275609,27in FHD Monitor,1,149.99,2019-10-15 20:36:00,36 Hickory St, Portland,OR,97035 +275610,Bose SoundSport Headphones,1,99.99,2019-10-28 10:35:00,327 Lake St, Atlanta,GA,30301 +275611,Google Phone,1,600.0,2019-10-01 12:32:00,196 Jackson St, Portland,OR,97035 +275612,Bose SoundSport Headphones,1,99.99,2019-10-12 23:34:00,166 South St, New York City,NY,10001 +275613,Apple Airpods Headphones,1,150.0,2019-10-25 14:11:00,550 Walnut St, Atlanta,GA,30301 +275614,AA Batteries (4-pack),1,3.84,2019-10-11 20:02:00,783 West St, San Francisco,CA,94016 +275615,27in FHD Monitor,1,149.99,2019-10-15 19:48:00,762 South St, Portland,OR,97035 +275616,Lightning Charging Cable,1,14.95,2019-10-06 06:06:00,967 5th St, Boston,MA,02215 +275617,Bose SoundSport Headphones,1,99.99,2019-10-31 13:55:00,874 Dogwood St, New York City,NY,10001 +275618,Apple Airpods Headphones,2,150.0,2019-10-26 20:29:00,921 Cedar St, Los Angeles,CA,90001 +275619,Apple Airpods Headphones,1,150.0,2019-10-31 19:07:00,319 Spruce St, New York City,NY,10001 +275620,Lightning Charging Cable,1,14.95,2019-10-05 19:42:00,167 Madison St, New York City,NY,10001 +275621,iPhone,1,700.0,2019-10-28 07:38:00,430 Dogwood St, New York City,NY,10001 +275621,Apple Airpods Headphones,1,150.0,2019-10-28 07:38:00,430 Dogwood St, New York City,NY,10001 +275622,LG Dryer,1,600.0,2019-10-07 10:32:00,122 Wilson St, Los Angeles,CA,90001 +275623,AAA Batteries (4-pack),1,2.99,2019-10-30 22:42:00,124 9th St, San Francisco,CA,94016 +275624,Bose SoundSport Headphones,1,99.99,2019-10-13 19:07:00,585 River St, Atlanta,GA,30301 +275625,AAA Batteries (4-pack),1,2.99,2019-10-18 12:31:00,71 Jefferson St, Portland,ME,04101 +275626,Lightning Charging Cable,1,14.95,2019-10-09 10:49:00,54 Jackson St, New York City,NY,10001 +275627,27in 4K Gaming Monitor,1,389.99,2019-10-24 10:44:00,892 8th St, Dallas,TX,75001 +275627,Apple Airpods Headphones,1,150.0,2019-10-24 10:44:00,892 8th St, Dallas,TX,75001 +275628,AA Batteries (4-pack),1,3.84,2019-10-18 17:55:00,426 Jackson St, Dallas,TX,75001 +275629,Google Phone,1,600.0,2019-10-05 03:38:00,912 Hill St, Atlanta,GA,30301 +275630,Lightning Charging Cable,1,14.95,2019-10-20 11:36:00,462 Lakeview St, New York City,NY,10001 +275631,Flatscreen TV,1,300.0,2019-10-01 18:32:00,427 6th St, Dallas,TX,75001 +275632,Lightning Charging Cable,1,14.95,2019-10-23 08:09:00,444 Wilson St, Los Angeles,CA,90001 +275633,20in Monitor,1,109.99,2019-10-02 13:48:00,500 7th St, San Francisco,CA,94016 +275634,Wired Headphones,1,11.99,2019-10-01 20:19:00,355 5th St, Dallas,TX,75001 +275635,Lightning Charging Cable,1,14.95,2019-10-19 04:47:00,245 14th St, San Francisco,CA,94016 +275636,Lightning Charging Cable,2,14.95,2019-10-04 18:49:00,717 14th St, Boston,MA,02215 +275637,Wired Headphones,2,11.99,2019-10-17 19:21:00,657 Main St, Dallas,TX,75001 +275638,Google Phone,1,600.0,2019-10-15 14:17:00,689 Pine St, San Francisco,CA,94016 +275638,Wired Headphones,1,11.99,2019-10-15 14:17:00,689 Pine St, San Francisco,CA,94016 +275639,Lightning Charging Cable,1,14.95,2019-10-20 17:55:00,756 Madison St, Portland,OR,97035 +275640,Bose SoundSport Headphones,1,99.99,2019-10-13 07:19:00,912 Adams St, Portland,OR,97035 +275641,Apple Airpods Headphones,1,150.0,2019-10-05 12:04:00,877 Lakeview St, San Francisco,CA,94016 +275642,iPhone,1,700.0,2019-10-24 10:39:00,324 Madison St, San Francisco,CA,94016 +275642,Wired Headphones,1,11.99,2019-10-24 10:39:00,324 Madison St, San Francisco,CA,94016 +275643,Google Phone,1,600.0,2019-10-29 19:48:00,674 9th St, New York City,NY,10001 +275643,Bose SoundSport Headphones,1,99.99,2019-10-29 19:48:00,674 9th St, New York City,NY,10001 +275644,AAA Batteries (4-pack),1,2.99,2019-10-11 10:01:00,195 8th St, San Francisco,CA,94016 +275645,Flatscreen TV,1,300.0,2019-10-26 21:18:00,97 9th St, Los Angeles,CA,90001 +275646,Google Phone,1,600.0,2019-10-04 17:57:00,28 Jackson St, Boston,MA,02215 +275647,Wired Headphones,2,11.99,2019-10-25 18:59:00,983 Lakeview St, Atlanta,GA,30301 +275647,AA Batteries (4-pack),1,3.84,2019-10-25 18:59:00,983 Lakeview St, Atlanta,GA,30301 +275648,AA Batteries (4-pack),1,3.84,2019-10-31 13:27:00,659 Washington St, San Francisco,CA,94016 +275649,Lightning Charging Cable,2,14.95,2019-10-29 15:11:00,869 Cedar St, Boston,MA,02215 +275650,20in Monitor,1,109.99,2019-10-27 20:36:00,664 Chestnut St, New York City,NY,10001 +275651,AAA Batteries (4-pack),2,2.99,2019-10-20 14:53:00,33 River St, Boston,MA,02215 +275652,USB-C Charging Cable,1,11.95,2019-10-27 09:48:00,585 Forest St, Dallas,TX,75001 +275653,Bose SoundSport Headphones,1,99.99,2019-10-30 11:29:00,399 Maple St, New York City,NY,10001 +275654,Google Phone,1,600.0,2019-10-30 23:53:00,102 Lincoln St, Los Angeles,CA,90001 +275655,AAA Batteries (4-pack),1,2.99,2019-10-21 08:29:00,561 Willow St, Seattle,WA,98101 +275656,iPhone,1,700.0,2019-10-27 14:06:00,693 Maple St, New York City,NY,10001 +275657,Lightning Charging Cable,1,14.95,2019-10-08 19:32:00,108 Hickory St, Portland,OR,97035 +275658,Lightning Charging Cable,1,14.95,2019-10-26 21:00:00,851 North St, Los Angeles,CA,90001 +275659,Wired Headphones,1,11.99,2019-10-27 10:28:00,166 Cedar St, Seattle,WA,98101 +275660,AAA Batteries (4-pack),1,2.99,2019-10-29 19:04:00,620 11th St, Portland,OR,97035 +275661,Apple Airpods Headphones,1,150.0,2019-10-07 17:29:00,508 Madison St, Austin,TX,73301 +275662,AAA Batteries (4-pack),1,2.99,2019-10-08 14:36:00,507 Jackson St, San Francisco,CA,94016 +275663,Vareebadd Phone,1,400.0,2019-10-04 22:24:00,69 Cedar St, Atlanta,GA,30301 +275664,Wired Headphones,1,11.99,2019-10-24 09:31:00,494 Highland St, Boston,MA,02215 +275665,27in FHD Monitor,1,149.99,2019-10-30 16:32:00,629 Pine St, Austin,TX,73301 +275666,Bose SoundSport Headphones,1,99.99,2019-10-05 09:37:00,379 Elm St, Seattle,WA,98101 +275667,AAA Batteries (4-pack),2,2.99,2019-10-26 19:34:00,873 14th St, San Francisco,CA,94016 +275668,Flatscreen TV,1,300.0,2019-10-26 16:04:00,685 Cherry St, Atlanta,GA,30301 +275669,Wired Headphones,1,11.99,2019-10-28 14:21:00,836 Lakeview St, New York City,NY,10001 +275670,27in 4K Gaming Monitor,1,389.99,2019-10-26 09:56:00,491 Elm St, New York City,NY,10001 +275671,AA Batteries (4-pack),1,3.84,2019-10-11 15:09:00,152 Madison St, San Francisco,CA,94016 +275672,AA Batteries (4-pack),2,3.84,2019-10-22 19:25:00,588 8th St, Dallas,TX,75001 +275673,Lightning Charging Cable,1,14.95,2019-10-30 18:48:00,364 Hill St, Dallas,TX,75001 +275674,Apple Airpods Headphones,1,150.0,2019-10-22 12:17:00,513 6th St, San Francisco,CA,94016 +275675,Lightning Charging Cable,1,14.95,2019-10-14 18:09:00,159 West St, Los Angeles,CA,90001 +275676,iPhone,1,700.0,2019-10-28 16:29:00,657 Lakeview St, Los Angeles,CA,90001 +275677,AAA Batteries (4-pack),3,2.99,2019-10-23 20:28:00,845 7th St, Boston,MA,02215 +275678,Lightning Charging Cable,1,14.95,2019-10-03 12:51:00,276 Cedar St, Portland,ME,04101 +275679,Google Phone,1,600.0,2019-10-02 12:56:00,64 Maple St, San Francisco,CA,94016 +275680,USB-C Charging Cable,1,11.95,2019-10-07 01:47:00,650 Hickory St, Dallas,TX,75001 +275681,AA Batteries (4-pack),1,3.84,2019-10-14 13:04:00,905 13th St, Los Angeles,CA,90001 +275682,Bose SoundSport Headphones,1,99.99,2019-10-02 21:36:00,548 14th St, San Francisco,CA,94016 +275683,USB-C Charging Cable,2,11.95,2019-10-12 20:53:00,684 Lakeview St, Austin,TX,73301 +275684,Wired Headphones,1,11.99,2019-10-24 18:35:00,536 6th St, Seattle,WA,98101 +275685,20in Monitor,1,109.99,2019-10-16 16:01:00,672 Willow St, Boston,MA,02215 +275686,34in Ultrawide Monitor,1,379.99,2019-10-25 23:42:00,500 Jefferson St, New York City,NY,10001 +275686,Lightning Charging Cable,1,14.95,2019-10-25 23:42:00,500 Jefferson St, New York City,NY,10001 +275687,AAA Batteries (4-pack),1,2.99,2019-10-25 12:22:00,176 Center St, Los Angeles,CA,90001 +275688,27in 4K Gaming Monitor,1,389.99,2019-10-29 20:15:00,89 Church St, Portland,OR,97035 +275689,AA Batteries (4-pack),1,3.84,2019-10-03 11:30:00,496 West St, Seattle,WA,98101 +275690,ThinkPad Laptop,1,999.99,2019-10-01 11:59:00,721 Chestnut St, Dallas,TX,75001 +275691,USB-C Charging Cable,1,11.95,2019-10-24 19:16:00,259 2nd St, Los Angeles,CA,90001 +275692,AAA Batteries (4-pack),1,2.99,2019-10-16 14:35:00,976 River St, San Francisco,CA,94016 +275693,Lightning Charging Cable,1,14.95,2019-10-27 20:55:00,610 Park St, San Francisco,CA,94016 +275694,Lightning Charging Cable,1,14.95,2019-10-02 10:53:00,453 Pine St, New York City,NY,10001 +275695,Lightning Charging Cable,1,14.95,2019-10-20 15:56:00,274 Highland St, Seattle,WA,98101 +275696,AAA Batteries (4-pack),2,2.99,2019-10-06 17:03:00,191 Jackson St, San Francisco,CA,94016 +275697,USB-C Charging Cable,1,11.95,2019-10-09 13:29:00,648 Park St, San Francisco,CA,94016 +275698,AAA Batteries (4-pack),1,2.99,2019-10-21 18:30:00,184 12th St, San Francisco,CA,94016 +275699,USB-C Charging Cable,1,11.95,2019-10-20 16:25:00,385 9th St, Los Angeles,CA,90001 +275700,AA Batteries (4-pack),2,3.84,2019-10-09 11:53:00,328 North St, Seattle,WA,98101 +275701,34in Ultrawide Monitor,1,379.99,2019-10-04 00:22:00,116 10th St, New York City,NY,10001 +275702,Wired Headphones,1,11.99,2019-10-18 16:54:00,17 Elm St, Los Angeles,CA,90001 +275703,Apple Airpods Headphones,1,150.0,2019-10-11 19:53:00,867 2nd St, San Francisco,CA,94016 +275704,USB-C Charging Cable,1,11.95,2019-10-16 09:27:00,826 Highland St, Dallas,TX,75001 +275705,Wired Headphones,1,11.99,2019-10-11 05:25:00,820 5th St, San Francisco,CA,94016 +275705,20in Monitor,1,109.99,2019-10-11 05:25:00,820 5th St, San Francisco,CA,94016 +275706,USB-C Charging Cable,1,11.95,2019-10-20 18:36:00,394 Hill St, Seattle,WA,98101 +275707,27in FHD Monitor,1,149.99,2019-10-07 12:09:00,264 Meadow St, Boston,MA,02215 +275708,AAA Batteries (4-pack),1,2.99,2019-10-01 13:41:00,989 Hill St, Seattle,WA,98101 +275709,AAA Batteries (4-pack),1,2.99,2019-10-28 00:40:00,786 Center St, New York City,NY,10001 +275710,Macbook Pro Laptop,1,1700.0,2019-10-23 13:18:00,254 1st St, San Francisco,CA,94016 +275711,AAA Batteries (4-pack),1,2.99,2019-10-30 18:55:00,852 Lake St, San Francisco,CA,94016 +275712,Lightning Charging Cable,1,14.95,2019-10-28 07:48:00,179 Park St, New York City,NY,10001 +275713,Apple Airpods Headphones,1,150.0,2019-10-27 14:31:00,215 9th St, Atlanta,GA,30301 +275714,Macbook Pro Laptop,1,1700.0,2019-10-19 19:43:00,477 Hickory St, San Francisco,CA,94016 +275715,Apple Airpods Headphones,1,150.0,2019-10-05 20:51:00,221 1st St, San Francisco,CA,94016 +275716,Lightning Charging Cable,1,14.95,2019-10-27 14:27:00,800 West St, Seattle,WA,98101 +275717,USB-C Charging Cable,1,11.95,2019-10-13 23:12:00,827 Dogwood St, New York City,NY,10001 +275717,27in 4K Gaming Monitor,1,389.99,2019-10-13 23:12:00,827 Dogwood St, New York City,NY,10001 +275718,USB-C Charging Cable,1,11.95,2019-10-28 11:09:00,317 Elm St, New York City,NY,10001 +275719,USB-C Charging Cable,1,11.95,2019-10-28 06:24:00,636 Lincoln St, Los Angeles,CA,90001 +275720,27in 4K Gaming Monitor,1,389.99,2019-10-12 12:40:00,426 Willow St, New York City,NY,10001 +275721,USB-C Charging Cable,1,11.95,2019-10-10 15:59:00,499 Elm St, Los Angeles,CA,90001 +275722,Lightning Charging Cable,1,14.95,2019-10-22 10:05:00,813 Lincoln St, San Francisco,CA,94016 +275723,USB-C Charging Cable,1,11.95,2019-10-11 09:28:00,976 Jefferson St, Dallas,TX,75001 +275724,AA Batteries (4-pack),1,3.84,2019-10-26 14:06:00,964 2nd St, New York City,NY,10001 +275725,Google Phone,1,600.0,2019-10-30 16:20:00,695 Spruce St, San Francisco,CA,94016 +275726,Macbook Pro Laptop,1,1700.0,2019-10-11 18:24:00,256 Hill St, San Francisco,CA,94016 +275727,Lightning Charging Cable,1,14.95,2019-10-14 13:13:00,785 13th St, Austin,TX,73301 +275728,Apple Airpods Headphones,1,150.0,2019-10-25 14:08:00,605 Walnut St, Boston,MA,02215 +275729,Lightning Charging Cable,1,14.95,2019-10-05 00:28:00,679 Johnson St, Austin,TX,73301 +275730,AAA Batteries (4-pack),1,2.99,2019-10-23 18:39:00,385 7th St, Seattle,WA,98101 +275731,AAA Batteries (4-pack),1,2.99,2019-10-05 10:18:00,817 Spruce St, Atlanta,GA,30301 +275732,AAA Batteries (4-pack),1,2.99,2019-10-14 23:48:00,103 Church St, Los Angeles,CA,90001 +275733,Google Phone,1,600.0,2019-10-25 15:04:00,128 Sunset St, San Francisco,CA,94016 +275734,LG Dryer,1,600.0,2019-10-30 18:09:00,544 Highland St, Portland,OR,97035 +275735,USB-C Charging Cable,1,11.95,2019-10-23 22:11:00,9 Chestnut St, Dallas,TX,75001 +275736,USB-C Charging Cable,1,11.95,2019-10-30 22:11:00,768 5th St, Austin,TX,73301 +275737,AA Batteries (4-pack),1,3.84,2019-10-28 00:23:00,164 8th St, Los Angeles,CA,90001 +275738,Lightning Charging Cable,1,14.95,2019-10-08 09:50:00,334 Johnson St, Boston,MA,02215 +275739,USB-C Charging Cable,1,11.95,2019-10-03 17:06:00,192 Hickory St, New York City,NY,10001 +275740,USB-C Charging Cable,1,11.95,2019-10-11 19:04:00,185 Jefferson St, Boston,MA,02215 +275741,Lightning Charging Cable,1,14.95,2019-10-28 12:47:00,493 Pine St, San Francisco,CA,94016 +275742,Google Phone,1,600.0,2019-10-08 15:36:00,1 Dogwood St, New York City,NY,10001 +275743,Apple Airpods Headphones,1,150.0,2019-10-04 15:41:00,398 7th St, Boston,MA,02215 +275744,Lightning Charging Cable,1,14.95,2019-10-09 21:38:00,110 Park St, San Francisco,CA,94016 +275745,USB-C Charging Cable,2,11.95,2019-10-06 14:57:00,181 14th St, Dallas,TX,75001 +275746,AAA Batteries (4-pack),3,2.99,2019-10-09 01:22:00,322 Adams St, Portland,OR,97035 +275747,Wired Headphones,1,11.99,2019-10-02 14:08:00,775 Hickory St, San Francisco,CA,94016 +275748,27in 4K Gaming Monitor,1,389.99,2019-10-28 16:50:00,568 Wilson St, Atlanta,GA,30301 +275749,Macbook Pro Laptop,1,1700.0,2019-10-22 00:19:00,724 Meadow St, San Francisco,CA,94016 +275750,Lightning Charging Cable,1,14.95,2019-10-24 14:10:00,962 Spruce St, San Francisco,CA,94016 +275751,AA Batteries (4-pack),1,3.84,2019-10-18 19:35:00,34 Sunset St, Los Angeles,CA,90001 +275752,AAA Batteries (4-pack),1,2.99,2019-10-03 18:23:00,985 Adams St, Boston,MA,02215 +275753,AA Batteries (4-pack),1,3.84,2019-10-21 14:58:00,497 Ridge St, Los Angeles,CA,90001 +275754,Flatscreen TV,1,300.0,2019-10-01 16:48:00,998 7th St, Boston,MA,02215 +275755,USB-C Charging Cable,1,11.95,2019-10-11 12:07:00,309 Elm St, Dallas,TX,75001 +275756,Flatscreen TV,1,300.0,2019-10-02 20:47:00,410 Spruce St, Seattle,WA,98101 +275757,27in FHD Monitor,1,149.99,2019-10-31 16:59:00,912 West St, Boston,MA,02215 +275758,Lightning Charging Cable,1,14.95,2019-10-17 19:20:00,175 Hickory St, Portland,OR,97035 +275759,27in 4K Gaming Monitor,1,389.99,2019-10-07 21:24:00,665 West St, Boston,MA,02215 +275760,iPhone,1,700.0,2019-10-27 13:04:00,42 Church St, Seattle,WA,98101 +275760,Lightning Charging Cable,2,14.95,2019-10-27 13:04:00,42 Church St, Seattle,WA,98101 +275761,27in FHD Monitor,1,149.99,2019-10-26 12:43:00,598 Forest St, Los Angeles,CA,90001 +275762,Wired Headphones,1,11.99,2019-10-08 10:56:00,756 7th St, Portland,OR,97035 +275763,USB-C Charging Cable,1,11.95,2019-10-24 13:26:00,73 9th St, New York City,NY,10001 +275764,Wired Headphones,1,11.99,2019-10-12 12:51:00,219 1st St, New York City,NY,10001 +275765,AA Batteries (4-pack),1,3.84,2019-10-19 22:30:00,388 Johnson St, San Francisco,CA,94016 +275766,Lightning Charging Cable,1,14.95,2019-10-15 11:51:00,75 5th St, Boston,MA,02215 +275767,AAA Batteries (4-pack),3,2.99,2019-10-13 10:15:00,246 1st St, San Francisco,CA,94016 +275768,Bose SoundSport Headphones,1,99.99,2019-10-02 10:54:00,355 10th St, Portland,OR,97035 +275769,AA Batteries (4-pack),1,3.84,2019-10-26 11:41:00,350 9th St, Boston,MA,02215 +275770,Flatscreen TV,1,300.0,2019-10-01 22:42:00,327 Jefferson St, Boston,MA,02215 +275771,AA Batteries (4-pack),1,3.84,2019-10-01 11:04:00,969 Pine St, Los Angeles,CA,90001 +275772,AAA Batteries (4-pack),2,2.99,2019-10-02 22:10:00,352 Lake St, Los Angeles,CA,90001 +275773,Wired Headphones,1,11.99,2019-10-16 21:24:00,625 Lincoln St, Seattle,WA,98101 +275774,AA Batteries (4-pack),2,3.84,2019-10-11 19:09:00,122 5th St, Los Angeles,CA,90001 +275775,AAA Batteries (4-pack),1,2.99,2019-10-15 16:28:00,817 South St, Los Angeles,CA,90001 +275776,AA Batteries (4-pack),2,3.84,2019-10-02 18:22:00,974 1st St, San Francisco,CA,94016 +275777,USB-C Charging Cable,1,11.95,2019-10-08 11:30:00,197 Walnut St, New York City,NY,10001 +275778,AAA Batteries (4-pack),1,2.99,2019-10-04 09:09:00,119 Jackson St, Los Angeles,CA,90001 +275779,AA Batteries (4-pack),2,3.84,2019-10-27 22:03:00,569 10th St, New York City,NY,10001 +275780,Vareebadd Phone,1,400.0,2019-10-19 06:29:00,624 Madison St, New York City,NY,10001 +275780,USB-C Charging Cable,1,11.95,2019-10-19 06:29:00,624 Madison St, New York City,NY,10001 +275781,Lightning Charging Cable,1,14.95,2019-10-12 02:49:00,460 14th St, Atlanta,GA,30301 +275782,Vareebadd Phone,1,400.0,2019-10-18 20:23:00,927 Adams St, Boston,MA,02215 +275783,AAA Batteries (4-pack),1,2.99,2019-10-19 22:26:00,443 Church St, Seattle,WA,98101 +275784,Vareebadd Phone,1,400.0,2019-10-18 17:44:00,2 11th St, San Francisco,CA,94016 +275785,Google Phone,1,600.0,2019-10-20 19:17:00,748 8th St, New York City,NY,10001 +275786,34in Ultrawide Monitor,1,379.99,2019-10-23 13:04:00,872 Pine St, Portland,OR,97035 +275787,Lightning Charging Cable,1,14.95,2019-10-22 11:11:00,783 Sunset St, Portland,OR,97035 +275788,AA Batteries (4-pack),1,3.84,2019-10-30 12:24:00,996 Jackson St, San Francisco,CA,94016 +275789,20in Monitor,1,109.99,2019-10-04 08:40:00,747 Center St, Dallas,TX,75001 +275790,iPhone,1,700.0,2019-10-08 14:43:00,686 Walnut St, Boston,MA,02215 +275790,Apple Airpods Headphones,1,150.0,2019-10-08 14:43:00,686 Walnut St, Boston,MA,02215 +275791,ThinkPad Laptop,1,999.99,2019-10-12 17:59:00,630 Jefferson St, Seattle,WA,98101 +275792,Lightning Charging Cable,1,14.95,2019-10-21 18:57:00,783 Jackson St, Seattle,WA,98101 +275793,AA Batteries (4-pack),1,3.84,2019-10-09 09:10:00,490 Cherry St, Austin,TX,73301 +275794,USB-C Charging Cable,2,11.95,2019-10-18 00:53:00,856 7th St, Boston,MA,02215 +275795,Google Phone,1,600.0,2019-10-16 08:11:00,710 Adams St, New York City,NY,10001 +275796,AAA Batteries (4-pack),1,2.99,2019-10-28 10:20:00,495 14th St, Los Angeles,CA,90001 +275797,Lightning Charging Cable,1,14.95,2019-10-02 20:16:00,211 West St, Boston,MA,02215 +275798,AAA Batteries (4-pack),1,2.99,2019-10-31 08:41:00,526 Adams St, San Francisco,CA,94016 +275799,27in 4K Gaming Monitor,1,389.99,2019-10-27 19:18:00,285 Washington St, Boston,MA,02215 +275800,34in Ultrawide Monitor,1,379.99,2019-10-10 00:59:00,414 13th St, Dallas,TX,75001 +275801,27in FHD Monitor,1,149.99,2019-10-18 16:17:00,169 5th St, New York City,NY,10001 +275801,Lightning Charging Cable,1,14.95,2019-10-18 16:17:00,169 5th St, New York City,NY,10001 +275802,AA Batteries (4-pack),1,3.84,2019-10-10 10:47:00,143 Dogwood St, San Francisco,CA,94016 +275803,Macbook Pro Laptop,1,1700.0,2019-10-15 12:39:00,628 Forest St, Dallas,TX,75001 +275804,27in FHD Monitor,1,149.99,2019-10-10 22:59:00,783 Maple St, Boston,MA,02215 +275805,Wired Headphones,1,11.99,2019-10-17 11:57:00,763 14th St, Seattle,WA,98101 +275806,Bose SoundSport Headphones,1,99.99,2019-10-15 07:48:00,819 Wilson St, Boston,MA,02215 +275807,AA Batteries (4-pack),1,3.84,2019-10-05 16:28:00,377 8th St, Dallas,TX,75001 +275808,Google Phone,1,600.0,2019-10-13 17:01:00,777 Lincoln St, Boston,MA,02215 +275809,Lightning Charging Cable,1,14.95,2019-10-07 14:23:00,157 13th St, Atlanta,GA,30301 +275810,AA Batteries (4-pack),2,3.84,2019-10-24 12:30:00,678 Walnut St, Los Angeles,CA,90001 +275811,AA Batteries (4-pack),1,3.84,2019-10-27 20:28:00,939 Washington St, Portland,OR,97035 +275812,USB-C Charging Cable,1,11.95,2019-10-10 23:11:00,806 10th St, Los Angeles,CA,90001 +275813,20in Monitor,1,109.99,2019-10-01 12:55:00,808 Madison St, New York City,NY,10001 +275814,Lightning Charging Cable,1,14.95,2019-10-02 20:46:00,225 Lake St, San Francisco,CA,94016 +275815,Apple Airpods Headphones,1,150.0,2019-10-05 11:22:00,103 2nd St, Austin,TX,73301 +275816,Bose SoundSport Headphones,1,99.99,2019-10-02 10:32:00,499 Elm St, San Francisco,CA,94016 +275817,27in 4K Gaming Monitor,1,389.99,2019-10-02 13:54:00,802 Elm St, Boston,MA,02215 +275818,Lightning Charging Cable,1,14.95,2019-10-24 18:16:00,139 5th St, Boston,MA,02215 +275818,ThinkPad Laptop,1,999.99,2019-10-24 18:16:00,139 5th St, Boston,MA,02215 +275819,AA Batteries (4-pack),1,3.84,2019-10-06 18:53:00,493 14th St, Seattle,WA,98101 +275820,Apple Airpods Headphones,1,150.0,2019-10-28 21:41:00,617 Cherry St, Portland,ME,04101 +275821,Lightning Charging Cable,1,14.95,2019-10-26 19:35:00,467 Highland St, Los Angeles,CA,90001 +275822,Wired Headphones,1,11.99,2019-10-03 14:18:00,140 2nd St, Seattle,WA,98101 +275823,Apple Airpods Headphones,1,150.0,2019-10-27 19:02:00,441 2nd St, Los Angeles,CA,90001 +275824,Lightning Charging Cable,1,14.95,2019-10-11 13:26:00,160 Lake St, San Francisco,CA,94016 +275825,Google Phone,1,600.0,2019-10-01 06:38:00,809 Main St, San Francisco,CA,94016 +275826,USB-C Charging Cable,1,11.95,2019-10-04 04:40:00,99 5th St, Seattle,WA,98101 +275827,AA Batteries (4-pack),3,3.84,2019-10-03 23:36:00,939 Lincoln St, Seattle,WA,98101 +275828,USB-C Charging Cable,1,11.95,2019-10-23 13:32:00,479 Wilson St, New York City,NY,10001 +275829,USB-C Charging Cable,1,11.95,2019-10-03 20:26:00,816 9th St, San Francisco,CA,94016 +275830,USB-C Charging Cable,1,11.95,2019-10-18 08:32:00,744 11th St, Dallas,TX,75001 +275831,27in FHD Monitor,1,149.99,2019-10-26 19:56:00,337 Spruce St, Los Angeles,CA,90001 +275832,Flatscreen TV,1,300.0,2019-10-17 12:46:00,127 2nd St, Austin,TX,73301 +275833,ThinkPad Laptop,1,999.99,2019-10-05 21:06:00,431 Ridge St, San Francisco,CA,94016 +275834,Lightning Charging Cable,1,14.95,2019-10-29 08:38:00,132 Forest St, San Francisco,CA,94016 +275835,USB-C Charging Cable,1,11.95,2019-10-21 01:58:00,300 Willow St, San Francisco,CA,94016 +275836,Apple Airpods Headphones,1,150.0,2019-10-09 19:11:00,416 Walnut St, Dallas,TX,75001 +275837,Bose SoundSport Headphones,1,99.99,2019-10-20 12:09:00,150 Highland St, Boston,MA,02215 +275838,Lightning Charging Cable,1,14.95,2019-10-17 00:30:00,418 9th St, Portland,OR,97035 +275839,Apple Airpods Headphones,1,150.0,2019-10-03 15:45:00,590 Meadow St, Dallas,TX,75001 +275840,AA Batteries (4-pack),1,3.84,2019-10-21 17:23:00,520 Cedar St, Seattle,WA,98101 +275841,Macbook Pro Laptop,1,1700.0,2019-10-21 19:01:00,345 Pine St, Austin,TX,73301 +275842,27in 4K Gaming Monitor,1,389.99,2019-10-29 23:04:00,975 Dogwood St, Los Angeles,CA,90001 +275843,Bose SoundSport Headphones,1,99.99,2019-10-02 16:10:00,96 11th St, San Francisco,CA,94016 +275844,Google Phone,1,600.0,2019-10-28 13:51:00,451 1st St, San Francisco,CA,94016 +275845,34in Ultrawide Monitor,1,379.99,2019-10-18 12:24:00,8 1st St, San Francisco,CA,94016 +275846,AA Batteries (4-pack),2,3.84,2019-10-10 22:23:00,258 9th St, Portland,OR,97035 +275847,Lightning Charging Cable,1,14.95,2019-10-14 11:24:00,351 Maple St, New York City,NY,10001 +275848,34in Ultrawide Monitor,1,379.99,2019-10-31 13:39:00,696 Hill St, San Francisco,CA,94016 +275849,27in 4K Gaming Monitor,1,389.99,2019-10-26 15:17:00,444 Dogwood St, Boston,MA,02215 +275850,AAA Batteries (4-pack),1,2.99,2019-10-06 22:33:00,998 Dogwood St, San Francisco,CA,94016 +275851,Apple Airpods Headphones,1,150.0,2019-10-07 16:27:00,474 7th St, Los Angeles,CA,90001 +275852,34in Ultrawide Monitor,1,379.99,2019-10-16 12:44:00,252 Center St, Portland,ME,04101 +275853,AAA Batteries (4-pack),1,2.99,2019-10-14 11:14:00,118 Forest St, Dallas,TX,75001 +275854,27in FHD Monitor,1,149.99,2019-10-31 13:29:00,234 2nd St, Dallas,TX,75001 +275855,Bose SoundSport Headphones,1,99.99,2019-10-17 14:19:00,218 14th St, Dallas,TX,75001 +275856,AA Batteries (4-pack),1,3.84,2019-10-02 07:08:00,960 Adams St, Boston,MA,02215 +275857,Lightning Charging Cable,1,14.95,2019-10-24 20:33:00,865 Chestnut St, Dallas,TX,75001 +275858,Lightning Charging Cable,1,14.95,2019-10-22 13:00:00,695 Wilson St, Seattle,WA,98101 +275859,USB-C Charging Cable,1,11.95,2019-10-16 14:53:00,804 Highland St, Boston,MA,02215 +275860,Apple Airpods Headphones,1,150.0,2019-10-29 06:41:00,151 Johnson St, San Francisco,CA,94016 +275861,Lightning Charging Cable,1,14.95,2019-10-04 13:59:00,524 Washington St, San Francisco,CA,94016 +275862,27in 4K Gaming Monitor,1,389.99,2019-10-07 16:53:00,450 Willow St, Boston,MA,02215 +275863,AAA Batteries (4-pack),1,2.99,2019-10-06 11:48:00,251 Lincoln St, San Francisco,CA,94016 +275864,AA Batteries (4-pack),1,3.84,2019-10-04 19:53:00,286 Hickory St, San Francisco,CA,94016 +275865,iPhone,1,700.0,2019-10-01 22:07:00,476 11th St, Atlanta,GA,30301 +275866,AA Batteries (4-pack),1,3.84,2019-10-06 20:12:00,944 Lake St, San Francisco,CA,94016 +275867,Lightning Charging Cable,1,14.95,2019-10-31 23:21:00,726 2nd St, Los Angeles,CA,90001 +275868,AAA Batteries (4-pack),1,2.99,2019-10-02 12:36:00,59 8th St, Portland,OR,97035 +275869,34in Ultrawide Monitor,1,379.99,2019-10-26 12:08:00,189 13th St, San Francisco,CA,94016 +275870,AA Batteries (4-pack),1,3.84,2019-10-17 13:53:00,812 Main St, New York City,NY,10001 +275871,Apple Airpods Headphones,1,150.0,2019-10-19 12:26:00,877 Ridge St, Los Angeles,CA,90001 +275872,Apple Airpods Headphones,1,150.0,2019-11-01 01:11:00,939 South St, Los Angeles,CA,90001 +275873,AA Batteries (4-pack),1,3.84,2019-10-13 17:33:00,887 Chestnut St, Boston,MA,02215 +275874,20in Monitor,1,109.99,2019-10-06 15:46:00,828 Forest St, Austin,TX,73301 +275875,Bose SoundSport Headphones,1,99.99,2019-10-29 08:05:00,456 Cherry St, San Francisco,CA,94016 +275876,AA Batteries (4-pack),1,3.84,2019-10-14 09:51:00,925 Elm St, Dallas,TX,75001 +275877,Wired Headphones,3,11.99,2019-10-10 20:26:00,959 Adams St, Austin,TX,73301 +275878,Lightning Charging Cable,2,14.95,2019-10-29 10:12:00,331 Main St, Atlanta,GA,30301 +275879,Google Phone,1,600.0,2019-10-29 15:19:00,555 Madison St, Seattle,WA,98101 +275880,20in Monitor,1,109.99,2019-10-08 09:57:00,553 7th St, Boston,MA,02215 +275881,Bose SoundSport Headphones,1,99.99,2019-10-27 21:14:00,867 Lake St, Boston,MA,02215 +275882,AAA Batteries (4-pack),4,2.99,2019-10-23 17:49:00,565 5th St, San Francisco,CA,94016 +275883,27in FHD Monitor,1,149.99,2019-10-30 18:27:00,233 Elm St, Dallas,TX,75001 +275884,AAA Batteries (4-pack),1,2.99,2019-10-31 18:06:00,54 Jefferson St, New York City,NY,10001 +275885,Lightning Charging Cable,1,14.95,2019-10-05 07:15:00,904 Cherry St, San Francisco,CA,94016 +275886,iPhone,1,700.0,2019-10-11 12:17:00,753 Cherry St, Portland,OR,97035 +275887,Flatscreen TV,1,300.0,2019-10-09 11:26:00,749 14th St, San Francisco,CA,94016 +275888,Macbook Pro Laptop,1,1700.0,2019-10-21 12:53:00,796 South St, Atlanta,GA,30301 +275889,Apple Airpods Headphones,1,150.0,2019-10-26 22:19:00,838 Adams St, Los Angeles,CA,90001 +275890,USB-C Charging Cable,1,11.95,2019-10-03 18:35:00,590 11th St, San Francisco,CA,94016 +275891,USB-C Charging Cable,1,11.95,2019-10-03 20:37:00,999 Dogwood St, San Francisco,CA,94016 +275892,27in 4K Gaming Monitor,1,389.99,2019-10-03 18:28:00,359 2nd St, Austin,TX,73301 +275893,USB-C Charging Cable,1,11.95,2019-10-23 08:27:00,74 Lincoln St, San Francisco,CA,94016 +275894,20in Monitor,1,109.99,2019-10-14 15:04:00,797 6th St, Boston,MA,02215 +275895,ThinkPad Laptop,1,999.99,2019-10-29 00:33:00,351 Sunset St, San Francisco,CA,94016 +275896,27in 4K Gaming Monitor,1,389.99,2019-10-21 16:29:00,314 Jefferson St, Los Angeles,CA,90001 +275897,Apple Airpods Headphones,1,150.0,2019-10-16 14:27:00,550 Dogwood St, San Francisco,CA,94016 +275898,Bose SoundSport Headphones,1,99.99,2019-10-06 21:34:00,445 10th St, San Francisco,CA,94016 +275899,AAA Batteries (4-pack),2,2.99,2019-10-03 18:25:00,131 Jefferson St, Los Angeles,CA,90001 +275900,AAA Batteries (4-pack),2,2.99,2019-10-18 21:19:00,508 5th St, Austin,TX,73301 +275901,Wired Headphones,1,11.99,2019-10-06 23:53:00,914 4th St, New York City,NY,10001 +275902,Wired Headphones,1,11.99,2019-10-18 18:58:00,49 14th St, Dallas,TX,75001 +275903,34in Ultrawide Monitor,1,379.99,2019-10-27 19:47:00,877 12th St, Seattle,WA,98101 +275904,AAA Batteries (4-pack),3,2.99,2019-10-08 10:52:00,427 14th St, Seattle,WA,98101 +275905,AAA Batteries (4-pack),1,2.99,2019-10-21 19:46:00,219 Center St, San Francisco,CA,94016 +275906,AA Batteries (4-pack),1,3.84,2019-10-02 11:00:00,931 Highland St, Atlanta,GA,30301 +275907,Bose SoundSport Headphones,1,99.99,2019-10-04 23:52:00,254 Forest St, Dallas,TX,75001 +275908,LG Washing Machine,1,600.0,2019-10-23 23:03:00,212 North St, San Francisco,CA,94016 +275909,Lightning Charging Cable,1,14.95,2019-10-25 20:36:00,993 2nd St, Atlanta,GA,30301 +275910,27in FHD Monitor,1,149.99,2019-10-05 12:05:00,155 1st St, Boston,MA,02215 +275910,Wired Headphones,1,11.99,2019-10-05 12:05:00,155 1st St, Boston,MA,02215 +275911,Apple Airpods Headphones,1,150.0,2019-10-29 13:09:00,88 Adams St, Los Angeles,CA,90001 +275912,USB-C Charging Cable,1,11.95,2019-10-04 21:39:00,479 Forest St, Los Angeles,CA,90001 +275913,AAA Batteries (4-pack),1,2.99,2019-10-10 15:36:00,106 Lincoln St, San Francisco,CA,94016 +275914,USB-C Charging Cable,1,11.95,2019-10-19 12:44:00,376 Ridge St, Los Angeles,CA,90001 +275915,ThinkPad Laptop,1,999.99,2019-10-22 15:28:00,653 Park St, Los Angeles,CA,90001 +275916,USB-C Charging Cable,1,11.95,2019-10-22 14:08:00,474 West St, Austin,TX,73301 +275917,AA Batteries (4-pack),1,3.84,2019-10-25 11:25:00,386 Hill St, Los Angeles,CA,90001 +275918,AAA Batteries (4-pack),1,2.99,2019-10-27 00:13:00,447 Church St, San Francisco,CA,94016 +275919,27in 4K Gaming Monitor,1,389.99,2019-10-14 13:10:00,312 Spruce St, New York City,NY,10001 +275920,AA Batteries (4-pack),1,3.84,2019-10-26 16:52:00,628 Ridge St, New York City,NY,10001 +275921,Lightning Charging Cable,2,14.95,2019-10-31 07:05:00,806 Hill St, Seattle,WA,98101 +275921,AA Batteries (4-pack),1,3.84,2019-10-31 07:05:00,806 Hill St, Seattle,WA,98101 +275922,USB-C Charging Cable,1,11.95,2019-10-30 11:43:00,101 Cherry St, Seattle,WA,98101 +275923,27in FHD Monitor,1,149.99,2019-10-07 08:50:00,246 7th St, New York City,NY,10001 +275924,Lightning Charging Cable,1,14.95,2019-10-11 13:29:00,622 14th St, Atlanta,GA,30301 +275925,Apple Airpods Headphones,1,150.0,2019-10-08 11:02:00,980 West St, Boston,MA,02215 +275926,Vareebadd Phone,1,400.0,2019-10-03 08:33:00,906 Elm St, Seattle,WA,98101 +275927,27in 4K Gaming Monitor,1,389.99,2019-10-22 00:21:00,131 Dogwood St, Boston,MA,02215 +275928,AAA Batteries (4-pack),1,2.99,2019-10-10 18:32:00,50 Forest St, Austin,TX,73301 +275929,AA Batteries (4-pack),1,3.84,2019-10-28 23:17:00,677 8th St, San Francisco,CA,94016 +275930,AAA Batteries (4-pack),5,2.99,2019-10-04 13:51:00,260 Walnut St, Dallas,TX,75001 +275931,USB-C Charging Cable,1,11.95,2019-10-14 20:55:00,446 11th St, San Francisco,CA,94016 +275932,Lightning Charging Cable,1,14.95,2019-10-20 15:57:00,401 Cedar St, San Francisco,CA,94016 +275933,Bose SoundSport Headphones,1,99.99,2019-10-12 16:02:00,104 10th St, New York City,NY,10001 +275934,USB-C Charging Cable,1,11.95,2019-10-10 18:50:00,671 6th St, Boston,MA,02215 +275935,Wired Headphones,1,11.99,2019-10-27 05:23:00,80 Forest St, Seattle,WA,98101 +275936,Flatscreen TV,1,300.0,2019-10-06 17:06:00,832 Hill St, Los Angeles,CA,90001 +275937,27in 4K Gaming Monitor,2,389.99,2019-10-02 12:02:00,9 7th St, San Francisco,CA,94016 +275938,Bose SoundSport Headphones,1,99.99,2019-10-21 10:43:00,521 Center St, Los Angeles,CA,90001 +275939,AAA Batteries (4-pack),1,2.99,2019-10-23 20:31:00,698 Jefferson St, San Francisco,CA,94016 +275940,AA Batteries (4-pack),1,3.84,2019-10-28 11:40:00,46 Hickory St, Los Angeles,CA,90001 +275941,27in FHD Monitor,1,149.99,2019-10-31 19:46:00,763 North St, San Francisco,CA,94016 +275942,Wired Headphones,1,11.99,2019-10-14 11:48:00,13 Lake St, Atlanta,GA,30301 +275943,34in Ultrawide Monitor,1,379.99,2019-10-25 20:49:00,821 Lake St, Seattle,WA,98101 +275944,USB-C Charging Cable,1,11.95,2019-10-01 18:29:00,472 Spruce St, Portland,ME,04101 +275945,Apple Airpods Headphones,1,150.0,2019-10-03 16:49:00,942 Maple St, Dallas,TX,75001 +275946,27in FHD Monitor,1,149.99,2019-10-06 14:15:00,845 12th St, Portland,OR,97035 +275947,27in FHD Monitor,1,149.99,2019-10-26 11:41:00,795 9th St, New York City,NY,10001 +275948,Flatscreen TV,1,300.0,2019-10-14 19:09:00,887 4th St, Atlanta,GA,30301 +275949,Apple Airpods Headphones,1,150.0,2019-10-10 17:07:00,950 Madison St, San Francisco,CA,94016 +275950,AAA Batteries (4-pack),1,2.99,2019-10-18 16:42:00,51 Jackson St, Boston,MA,02215 +275951,Macbook Pro Laptop,1,1700.0,2019-10-22 19:32:00,591 12th St, Austin,TX,73301 +275952,ThinkPad Laptop,1,999.99,2019-10-19 19:34:00,964 14th St, Dallas,TX,75001 +275952,Flatscreen TV,1,300.0,2019-10-19 19:34:00,964 14th St, Dallas,TX,75001 +275953,Apple Airpods Headphones,1,150.0,2019-10-15 18:03:00,232 Main St, Seattle,WA,98101 +275954,Wired Headphones,1,11.99,2019-10-09 22:25:00,515 Church St, San Francisco,CA,94016 +275955,Google Phone,1,600.0,2019-10-03 15:25:00,993 Meadow St, New York City,NY,10001 +275956,Lightning Charging Cable,1,14.95,2019-10-07 15:42:00,171 1st St, Dallas,TX,75001 +275957,Lightning Charging Cable,1,14.95,2019-10-15 10:39:00,20 7th St, New York City,NY,10001 +275958,Lightning Charging Cable,1,14.95,2019-10-13 09:59:00,574 Highland St, New York City,NY,10001 +275959,Wired Headphones,2,11.99,2019-10-22 12:37:00,524 Willow St, San Francisco,CA,94016 +275959,27in 4K Gaming Monitor,1,389.99,2019-10-22 12:37:00,524 Willow St, San Francisco,CA,94016 +275960,Lightning Charging Cable,1,14.95,2019-10-30 23:54:00,184 South St, Dallas,TX,75001 +275961,Lightning Charging Cable,1,14.95,2019-10-27 10:46:00,423 Adams St, Seattle,WA,98101 +275962,27in 4K Gaming Monitor,1,389.99,2019-10-28 23:44:00,557 Dogwood St, Austin,TX,73301 +275963,Lightning Charging Cable,1,14.95,2019-10-01 22:28:00,814 5th St, Los Angeles,CA,90001 +275964,Wired Headphones,1,11.99,2019-10-25 18:55:00,590 Church St, Boston,MA,02215 +275965,AAA Batteries (4-pack),1,2.99,2019-10-20 20:34:00,790 Spruce St, Atlanta,GA,30301 +275966,ThinkPad Laptop,1,999.99,2019-10-11 12:58:00,540 12th St, Seattle,WA,98101 +275967,Wired Headphones,1,11.99,2019-10-01 17:03:00,839 7th St, Seattle,WA,98101 +275968,Vareebadd Phone,1,400.0,2019-10-13 15:39:00,645 Walnut St, San Francisco,CA,94016 +275969,27in 4K Gaming Monitor,1,389.99,2019-10-05 13:24:00,74 Madison St, San Francisco,CA,94016 +275970,Wired Headphones,1,11.99,2019-10-09 14:29:00,38 River St, New York City,NY,10001 +275971,USB-C Charging Cable,2,11.95,2019-10-10 12:10:00,52 13th St, Boston,MA,02215 +275972,Lightning Charging Cable,1,14.95,2019-10-23 09:09:00,926 Washington St, New York City,NY,10001 +275973,Bose SoundSport Headphones,1,99.99,2019-10-14 19:05:00,806 Maple St, San Francisco,CA,94016 +275974,AAA Batteries (4-pack),1,2.99,2019-10-06 12:42:00,371 8th St, New York City,NY,10001 +275975,Google Phone,1,600.0,2019-10-27 08:59:00,850 13th St, Boston,MA,02215 +275975,Bose SoundSport Headphones,1,99.99,2019-10-27 08:59:00,850 13th St, Boston,MA,02215 +275976,34in Ultrawide Monitor,1,379.99,2019-10-04 13:23:00,533 Hill St, Los Angeles,CA,90001 +275977,Flatscreen TV,1,300.0,2019-10-05 18:02:00,716 Jackson St, Austin,TX,73301 +275978,Lightning Charging Cable,1,14.95,2019-10-28 01:26:00,967 Maple St, Dallas,TX,75001 +275979,Vareebadd Phone,1,400.0,2019-10-02 12:51:00,163 11th St, Atlanta,GA,30301 +275979,USB-C Charging Cable,2,11.95,2019-10-02 12:51:00,163 11th St, Atlanta,GA,30301 +275980,Apple Airpods Headphones,1,150.0,2019-10-17 19:46:00,119 Center St, Los Angeles,CA,90001 +275981,Apple Airpods Headphones,1,150.0,2019-10-26 21:58:00,566 Main St, New York City,NY,10001 +275982,Wired Headphones,1,11.99,2019-10-28 11:25:00,277 West St, San Francisco,CA,94016 +275983,Vareebadd Phone,1,400.0,2019-10-21 11:50:00,264 West St, Dallas,TX,75001 +275984,Wired Headphones,1,11.99,2019-10-13 22:19:00,398 Elm St, Los Angeles,CA,90001 +275985,AA Batteries (4-pack),2,3.84,2019-10-02 00:42:00,976 Main St, San Francisco,CA,94016 +275986,27in FHD Monitor,1,149.99,2019-10-05 22:22:00,911 Maple St, San Francisco,CA,94016 +275987,AAA Batteries (4-pack),2,2.99,2019-10-29 08:59:00,227 Meadow St, San Francisco,CA,94016 +275988,AAA Batteries (4-pack),1,2.99,2019-10-11 20:25:00,468 8th St, San Francisco,CA,94016 +275989,AA Batteries (4-pack),4,3.84,2019-10-18 06:35:00,113 14th St, Boston,MA,02215 +275990,AA Batteries (4-pack),1,3.84,2019-10-20 14:59:00,714 Dogwood St, Portland,OR,97035 +275991,AA Batteries (4-pack),1,3.84,2019-10-06 10:53:00,683 1st St, Portland,OR,97035 +275992,20in Monitor,1,109.99,2019-10-27 17:37:00,418 14th St, New York City,NY,10001 +275993,AA Batteries (4-pack),1,3.84,2019-10-06 19:58:00,250 1st St, Seattle,WA,98101 +275994,Apple Airpods Headphones,1,150.0,2019-10-10 16:49:00,237 Walnut St, Portland,OR,97035 +275995,27in 4K Gaming Monitor,1,389.99,2019-10-02 14:42:00,843 13th St, New York City,NY,10001 +275996,AA Batteries (4-pack),1,3.84,2019-10-01 08:57:00,319 Wilson St, Austin,TX,73301 +275997,AA Batteries (4-pack),2,3.84,2019-10-07 20:48:00,261 Spruce St, New York City,NY,10001 +275998,AA Batteries (4-pack),1,3.84,2019-10-18 14:35:00,41 11th St, San Francisco,CA,94016 +275999,Lightning Charging Cable,2,14.95,2019-10-24 09:19:00,923 Cedar St, Atlanta,GA,30301 +276000,USB-C Charging Cable,1,11.95,2019-10-18 11:56:00,257 Wilson St, Atlanta,GA,30301 +276001,Apple Airpods Headphones,1,150.0,2019-10-10 11:51:00,21 Meadow St, Portland,OR,97035 +276002,USB-C Charging Cable,1,11.95,2019-10-20 10:15:00,795 Hickory St, Los Angeles,CA,90001 +276003,Bose SoundSport Headphones,1,99.99,2019-10-18 17:03:00,871 6th St, Seattle,WA,98101 +276004,Apple Airpods Headphones,1,150.0,2019-10-26 22:02:00,483 Washington St, Dallas,TX,75001 +276005,AAA Batteries (4-pack),3,2.99,2019-10-31 00:23:00,175 Spruce St, Seattle,WA,98101 +276006,AAA Batteries (4-pack),1,2.99,2019-10-14 20:36:00,898 10th St, Los Angeles,CA,90001 +276007,Wired Headphones,1,11.99,2019-10-01 17:57:00,193 Hickory St, Dallas,TX,75001 +276008,AAA Batteries (4-pack),1,2.99,2019-10-17 15:20:00,942 6th St, Los Angeles,CA,90001 +276009,27in FHD Monitor,1,149.99,2019-10-07 13:53:00,845 Park St, Boston,MA,02215 +276010,ThinkPad Laptop,1,999.99,2019-10-20 16:48:00,345 West St, New York City,NY,10001 +276011,AAA Batteries (4-pack),1,2.99,2019-10-26 18:52:00,221 Pine St, Atlanta,GA,30301 +276012,USB-C Charging Cable,1,11.95,2019-10-02 13:46:00,842 Spruce St, Atlanta,GA,30301 +276013,USB-C Charging Cable,1,11.95,2019-10-30 21:10:00,375 4th St, Boston,MA,02215 +276014,USB-C Charging Cable,1,11.95,2019-10-16 16:16:00,32 Jackson St, Los Angeles,CA,90001 +276015,Flatscreen TV,1,300.0,2019-10-30 18:45:00,86 Highland St, San Francisco,CA,94016 +276016,Lightning Charging Cable,1,14.95,2019-10-12 21:51:00,804 Lincoln St, Portland,OR,97035 +276017,USB-C Charging Cable,1,11.95,2019-10-09 22:00:00,353 Highland St, New York City,NY,10001 +276018,Google Phone,1,600.0,2019-10-24 01:46:00,581 Wilson St, New York City,NY,10001 +276019,Bose SoundSport Headphones,1,99.99,2019-10-12 16:00:00,581 Lakeview St, Seattle,WA,98101 +276020,Bose SoundSport Headphones,1,99.99,2019-10-13 20:41:00,935 Johnson St, Los Angeles,CA,90001 +276021,Apple Airpods Headphones,1,150.0,2019-10-18 19:28:00,89 Elm St, New York City,NY,10001 +276022,iPhone,1,700.0,2019-10-06 10:18:00,470 1st St, Seattle,WA,98101 +276023,Lightning Charging Cable,1,14.95,2019-10-31 10:55:00,529 Adams St, New York City,NY,10001 +276024,Lightning Charging Cable,1,14.95,2019-10-13 16:51:00,750 Cedar St, Dallas,TX,75001 +276025,USB-C Charging Cable,1,11.95,2019-10-14 16:45:00,690 10th St, New York City,NY,10001 +276026,Lightning Charging Cable,1,14.95,2019-10-07 07:43:00,273 10th St, Los Angeles,CA,90001 +276027,AA Batteries (4-pack),1,3.84,2019-10-26 21:47:00,574 Church St, New York City,NY,10001 +276028,AA Batteries (4-pack),2,3.84,2019-10-16 09:48:00,103 Spruce St, Seattle,WA,98101 +276029,Wired Headphones,1,11.99,2019-10-28 12:54:00,824 Park St, Atlanta,GA,30301 +276030,Apple Airpods Headphones,1,150.0,2019-10-02 12:39:00,873 5th St, San Francisco,CA,94016 +276031,Bose SoundSport Headphones,1,99.99,2019-10-03 10:04:00,624 Washington St, New York City,NY,10001 +276032,27in 4K Gaming Monitor,1,389.99,2019-10-28 13:56:00,818 Chestnut St, Los Angeles,CA,90001 +276033,Wired Headphones,1,11.99,2019-10-23 22:55:00,938 Wilson St, San Francisco,CA,94016 +276034,USB-C Charging Cable,1,11.95,2019-10-05 06:25:00,617 Lakeview St, Los Angeles,CA,90001 +276035,Lightning Charging Cable,1,14.95,2019-10-21 17:56:00,272 Willow St, San Francisco,CA,94016 +276036,Wired Headphones,1,11.99,2019-10-30 21:54:00,747 Jefferson St, Seattle,WA,98101 +276037,Lightning Charging Cable,1,14.95,2019-10-10 09:13:00,850 Forest St, Austin,TX,73301 +276038,20in Monitor,1,109.99,2019-10-20 14:52:00,290 South St, San Francisco,CA,94016 +276039,Wired Headphones,1,11.99,2019-10-19 15:19:00,219 Lakeview St, Boston,MA,02215 +276040,AA Batteries (4-pack),1,3.84,2019-10-21 19:47:00,85 Jackson St, San Francisco,CA,94016 +276041,USB-C Charging Cable,1,11.95,2019-10-05 11:36:00,546 14th St, New York City,NY,10001 +276042,Lightning Charging Cable,1,14.95,2019-10-26 11:22:00,800 Washington St, San Francisco,CA,94016 +276043,AAA Batteries (4-pack),2,2.99,2019-10-15 18:34:00,364 4th St, Los Angeles,CA,90001 +276044,AA Batteries (4-pack),1,3.84,2019-10-21 22:37:00,711 Cherry St, Dallas,TX,75001 +276045,ThinkPad Laptop,1,999.99,2019-10-19 22:34:00,353 10th St, Seattle,WA,98101 +276046,AAA Batteries (4-pack),1,2.99,2019-10-23 16:55:00,590 Jefferson St, Los Angeles,CA,90001 +276047,20in Monitor,1,109.99,2019-10-13 16:11:00,300 Hill St, Atlanta,GA,30301 +276048,iPhone,1,700.0,2019-10-03 23:03:00,360 Hill St, Los Angeles,CA,90001 +276048,Lightning Charging Cable,1,14.95,2019-10-03 23:03:00,360 Hill St, Los Angeles,CA,90001 +276049,USB-C Charging Cable,1,11.95,2019-10-14 14:40:00,234 12th St, Austin,TX,73301 +276050,Flatscreen TV,1,300.0,2019-10-18 12:21:00,744 10th St, Los Angeles,CA,90001 +276051,Wired Headphones,1,11.99,2019-10-29 21:35:00,928 2nd St, Atlanta,GA,30301 +276052,Wired Headphones,1,11.99,2019-10-19 11:57:00,675 Maple St, Austin,TX,73301 +276053,27in FHD Monitor,1,149.99,2019-10-30 15:29:00,146 4th St, Los Angeles,CA,90001 +276054,Flatscreen TV,1,300.0,2019-10-14 09:03:00,48 Meadow St, Seattle,WA,98101 +276055,ThinkPad Laptop,1,999.99,2019-10-15 00:53:00,908 Forest St, Boston,MA,02215 +276056,AA Batteries (4-pack),1,3.84,2019-10-13 08:20:00,828 6th St, San Francisco,CA,94016 +276057,27in FHD Monitor,1,149.99,2019-10-23 12:43:00,900 Chestnut St, Boston,MA,02215 +276058,USB-C Charging Cable,1,11.95,2019-10-01 12:54:00,183 9th St, Atlanta,GA,30301 +276059,ThinkPad Laptop,1,999.99,2019-10-29 13:15:00,957 Highland St, Dallas,TX,75001 +276060,Google Phone,1,600.0,2019-10-08 23:26:00,676 Lakeview St, Portland,ME,04101 +276061,Macbook Pro Laptop,1,1700.0,2019-10-04 13:10:00,846 Wilson St, Los Angeles,CA,90001 +276062,Flatscreen TV,1,300.0,2019-10-17 09:14:00,592 Spruce St, Portland,OR,97035 +276063,Wired Headphones,2,11.99,2019-10-10 09:36:00,155 Elm St, Seattle,WA,98101 +276064,20in Monitor,1,109.99,2019-10-13 20:24:00,381 1st St, New York City,NY,10001 +276065,AAA Batteries (4-pack),1,2.99,2019-10-23 18:08:00,816 7th St, San Francisco,CA,94016 +276066,Bose SoundSport Headphones,1,99.99,2019-10-17 01:41:00,762 Center St, New York City,NY,10001 +276067,34in Ultrawide Monitor,1,379.99,2019-10-17 11:22:00,499 Maple St, San Francisco,CA,94016 +276068,34in Ultrawide Monitor,1,379.99,2019-10-02 13:52:00,333 13th St, Seattle,WA,98101 +276069,Apple Airpods Headphones,1,150.0,2019-10-16 00:24:00,464 Lincoln St, New York City,NY,10001 +276070,27in 4K Gaming Monitor,1,389.99,2019-10-26 16:56:00,702 Jackson St, San Francisco,CA,94016 +276071,27in 4K Gaming Monitor,1,389.99,2019-10-16 18:54:00,593 Ridge St, New York City,NY,10001 +276072,Lightning Charging Cable,1,14.95,2019-10-10 12:07:00,475 Highland St, Los Angeles,CA,90001 +276073,USB-C Charging Cable,1,11.95,2019-10-28 21:30:00,248 Hickory St, Portland,OR,97035 +276074,iPhone,1,700.0,2019-10-06 08:31:00,217 2nd St, San Francisco,CA,94016 +276075,Apple Airpods Headphones,1,150.0,2019-10-18 08:46:00,198 West St, Boston,MA,02215 +276076,34in Ultrawide Monitor,1,379.99,2019-10-07 17:32:00,726 Adams St, Boston,MA,02215 +276077,AAA Batteries (4-pack),2,2.99,2019-10-15 14:29:00,81 River St, Dallas,TX,75001 +276078,AA Batteries (4-pack),1,3.84,2019-10-21 11:00:00,906 Washington St, San Francisco,CA,94016 +276079,iPhone,1,700.0,2019-10-06 15:41:00,37 4th St, Los Angeles,CA,90001 +276079,Lightning Charging Cable,1,14.95,2019-10-06 15:41:00,37 4th St, Los Angeles,CA,90001 +276080,Wired Headphones,1,11.99,2019-10-15 10:34:00,836 Ridge St, New York City,NY,10001 +276081,AAA Batteries (4-pack),1,2.99,2019-10-02 09:51:00,59 South St, San Francisco,CA,94016 +276082,AA Batteries (4-pack),1,3.84,2019-10-11 16:08:00,614 Spruce St, Portland,OR,97035 +276083,iPhone,1,700.0,2019-10-19 13:24:00,545 2nd St, San Francisco,CA,94016 +276083,Apple Airpods Headphones,1,150.0,2019-10-19 13:24:00,545 2nd St, San Francisco,CA,94016 +276083,Wired Headphones,1,11.99,2019-10-19 13:24:00,545 2nd St, San Francisco,CA,94016 +276084,Wired Headphones,1,11.99,2019-10-09 21:39:00,189 Sunset St, Los Angeles,CA,90001 +276085,AA Batteries (4-pack),1,3.84,2019-10-03 21:49:00,756 6th St, Seattle,WA,98101 +276086,Lightning Charging Cable,2,14.95,2019-10-17 17:04:00,195 West St, Boston,MA,02215 +276087,27in FHD Monitor,1,149.99,2019-10-20 20:56:00,767 Park St, San Francisco,CA,94016 +276088,AAA Batteries (4-pack),1,2.99,2019-10-23 19:14:00,168 Forest St, Austin,TX,73301 +276089,Flatscreen TV,1,300.0,2019-10-14 19:49:00,405 Sunset St, Austin,TX,73301 +276090,USB-C Charging Cable,1,11.95,2019-10-26 17:51:00,205 River St, Los Angeles,CA,90001 +276091,Wired Headphones,1,11.99,2019-10-04 19:20:00,949 Johnson St, Portland,OR,97035 +276092,Bose SoundSport Headphones,1,99.99,2019-10-08 14:37:00,838 Ridge St, Atlanta,GA,30301 +276093,USB-C Charging Cable,1,11.95,2019-10-23 22:42:00,412 Sunset St, Los Angeles,CA,90001 +276094,Wired Headphones,1,11.99,2019-10-08 09:11:00,137 Pine St, Los Angeles,CA,90001 +276095,AAA Batteries (4-pack),2,2.99,2019-10-28 15:38:00,915 Lake St, San Francisco,CA,94016 +276096,Apple Airpods Headphones,1,150.0,2019-10-24 13:54:00,886 10th St, Los Angeles,CA,90001 +276097,Lightning Charging Cable,1,14.95,2019-10-07 19:46:00,312 Ridge St, Seattle,WA,98101 +276098,AA Batteries (4-pack),1,3.84,2019-10-16 19:04:00,896 5th St, Seattle,WA,98101 +276099,27in 4K Gaming Monitor,1,389.99,2019-10-22 13:38:00,339 Maple St, Los Angeles,CA,90001 +276100,AA Batteries (4-pack),2,3.84,2019-10-10 12:48:00,562 Maple St, Los Angeles,CA,90001 +276101,Bose SoundSport Headphones,1,99.99,2019-10-09 00:03:00,770 Walnut St, Los Angeles,CA,90001 +276102,27in 4K Gaming Monitor,1,389.99,2019-10-11 09:04:00,893 7th St, New York City,NY,10001 +276103,USB-C Charging Cable,1,11.95,2019-10-27 20:24:00,984 Chestnut St, Dallas,TX,75001 +276104,20in Monitor,1,109.99,2019-10-11 07:31:00,96 4th St, Los Angeles,CA,90001 +276105,Bose SoundSport Headphones,1,99.99,2019-10-31 16:32:00,541 Pine St, San Francisco,CA,94016 +276106,27in FHD Monitor,1,149.99,2019-10-07 15:01:00,959 River St, Los Angeles,CA,90001 +276107,27in 4K Gaming Monitor,1,389.99,2019-10-19 11:07:00,455 Madison St, Portland,OR,97035 +276108,Wired Headphones,1,11.99,2019-10-11 11:07:00,841 Jefferson St, Portland,OR,97035 +276109,Apple Airpods Headphones,1,150.0,2019-10-28 07:32:00,228 Pine St, New York City,NY,10001 +276110,27in FHD Monitor,1,149.99,2019-10-12 17:44:00,279 Lake St, Los Angeles,CA,90001 +276111,27in 4K Gaming Monitor,1,389.99,2019-10-02 18:17:00,815 Church St, Dallas,TX,75001 +276112,20in Monitor,1,109.99,2019-10-02 01:28:00,487 Cedar St, Dallas,TX,75001 +276113,27in FHD Monitor,1,149.99,2019-10-07 13:36:00,325 Dogwood St, Dallas,TX,75001 +276114,Bose SoundSport Headphones,1,99.99,2019-10-21 13:49:00,570 Church St, Atlanta,GA,30301 +276115,Wired Headphones,1,11.99,2019-10-21 23:30:00,261 Pine St, Portland,OR,97035 +276116,AA Batteries (4-pack),1,3.84,2019-10-10 15:41:00,466 Cedar St, Boston,MA,02215 +276117,Google Phone,1,600.0,2019-10-30 17:28:00,886 Lakeview St, Seattle,WA,98101 +276118,34in Ultrawide Monitor,1,379.99,2019-10-07 16:49:00,174 Meadow St, Seattle,WA,98101 +276119,AAA Batteries (4-pack),2,2.99,2019-10-19 09:43:00,4 Center St, Portland,OR,97035 +276120,USB-C Charging Cable,1,11.95,2019-10-10 14:18:00,613 Lincoln St, Portland,OR,97035 +276121,iPhone,1,700.0,2019-10-22 15:33:00,321 Cedar St, New York City,NY,10001 +276122,27in FHD Monitor,1,149.99,2019-10-21 11:15:00,749 Madison St, Atlanta,GA,30301 +276123,34in Ultrawide Monitor,1,379.99,2019-10-03 15:15:00,111 Hickory St, New York City,NY,10001 +276124,AA Batteries (4-pack),1,3.84,2019-10-09 19:36:00,86 Cedar St, San Francisco,CA,94016 +276125,AA Batteries (4-pack),1,3.84,2019-10-11 10:47:00,623 9th St, Austin,TX,73301 +276126,iPhone,1,700.0,2019-10-18 11:42:00,20 Lakeview St, Boston,MA,02215 +276127,Lightning Charging Cable,1,14.95,2019-10-09 12:49:00,687 West St, Seattle,WA,98101 +276128,Wired Headphones,1,11.99,2019-10-20 08:13:00,446 West St, Los Angeles,CA,90001 +276129,LG Washing Machine,1,600.0,2019-10-15 08:55:00,863 Adams St, Los Angeles,CA,90001 +276130,27in FHD Monitor,1,149.99,2019-10-11 02:01:00,862 Lakeview St, San Francisco,CA,94016 +276131,Lightning Charging Cable,1,14.95,2019-10-05 10:34:00,95 Johnson St, Los Angeles,CA,90001 +276132,ThinkPad Laptop,1,999.99,2019-10-16 20:15:00,190 8th St, Los Angeles,CA,90001 +276132,USB-C Charging Cable,1,11.95,2019-10-16 20:15:00,190 8th St, Los Angeles,CA,90001 +276133,Wired Headphones,1,11.99,2019-10-25 13:07:00,955 Elm St, Los Angeles,CA,90001 +276134,Macbook Pro Laptop,1,1700.0,2019-10-19 21:49:00,601 Park St, New York City,NY,10001 +276135,Wired Headphones,1,11.99,2019-10-12 17:41:00,937 Cherry St, Seattle,WA,98101 +276136,Bose SoundSport Headphones,1,99.99,2019-10-15 09:44:00,490 Center St, Portland,ME,04101 +276137,27in FHD Monitor,1,149.99,2019-10-30 09:45:00,799 Maple St, Boston,MA,02215 +276138,27in FHD Monitor,1,149.99,2019-10-26 14:13:00,576 Willow St, Boston,MA,02215 +276139,ThinkPad Laptop,1,999.99,2019-10-17 06:45:00,53 Willow St, Seattle,WA,98101 +276140,AA Batteries (4-pack),1,3.84,2019-10-24 23:01:00,804 Cedar St, San Francisco,CA,94016 +276141,34in Ultrawide Monitor,1,379.99,2019-10-26 23:41:00,633 Church St, New York City,NY,10001 +276142,USB-C Charging Cable,1,11.95,2019-10-08 10:04:00,995 Lincoln St, New York City,NY,10001 +276143,Lightning Charging Cable,1,14.95,2019-10-31 12:45:00,219 9th St, Dallas,TX,75001 +276144,AA Batteries (4-pack),1,3.84,2019-10-13 13:45:00,767 Lincoln St, Austin,TX,73301 +276145,USB-C Charging Cable,1,11.95,2019-10-12 13:22:00,626 North St, New York City,NY,10001 +276146,Apple Airpods Headphones,1,150.0,2019-10-02 05:35:00,731 North St, New York City,NY,10001 +276146,AA Batteries (4-pack),1,3.84,2019-10-02 05:35:00,731 North St, New York City,NY,10001 +276147,Bose SoundSport Headphones,1,99.99,2019-10-31 19:00:00,279 West St, Boston,MA,02215 +276148,USB-C Charging Cable,1,11.95,2019-10-12 23:25:00,127 Center St, Boston,MA,02215 +276149,AA Batteries (4-pack),3,3.84,2019-10-27 21:46:00,706 Meadow St, New York City,NY,10001 +276150,Bose SoundSport Headphones,1,99.99,2019-10-11 15:36:00,582 10th St, San Francisco,CA,94016 +276151,Bose SoundSport Headphones,1,99.99,2019-10-22 20:10:00,169 Lincoln St, San Francisco,CA,94016 +276152,Apple Airpods Headphones,1,150.0,2019-10-18 20:52:00,697 North St, Seattle,WA,98101 +276153,AA Batteries (4-pack),1,3.84,2019-10-17 15:11:00,192 South St, Dallas,TX,75001 +276154,Bose SoundSport Headphones,1,99.99,2019-10-28 17:01:00,871 Jackson St, San Francisco,CA,94016 +276155,USB-C Charging Cable,1,11.95,2019-10-24 16:21:00,260 14th St, Boston,MA,02215 +276156,Lightning Charging Cable,1,14.95,2019-10-16 19:19:00,284 Adams St, Los Angeles,CA,90001 +276157,Apple Airpods Headphones,1,150.0,2019-10-26 16:05:00,202 Spruce St, Los Angeles,CA,90001 +276158,iPhone,1,700.0,2019-10-05 17:56:00,899 4th St, Boston,MA,02215 +276159,AAA Batteries (4-pack),1,2.99,2019-10-19 23:21:00,637 1st St, Seattle,WA,98101 +276160,Wired Headphones,1,11.99,2019-10-06 08:46:00,39 Highland St, Atlanta,GA,30301 +276161,iPhone,1,700.0,2019-10-25 18:41:00,315 Center St, San Francisco,CA,94016 +276162,Flatscreen TV,1,300.0,2019-10-19 15:01:00,258 Cedar St, New York City,NY,10001 +276163,Lightning Charging Cable,1,14.95,2019-10-14 15:37:00,923 9th St, Los Angeles,CA,90001 +276164,USB-C Charging Cable,1,11.95,2019-10-27 20:34:00,341 9th St, Los Angeles,CA,90001 +276165,AAA Batteries (4-pack),2,2.99,2019-10-30 13:29:00,951 Adams St, Dallas,TX,75001 +276166,34in Ultrawide Monitor,1,379.99,2019-10-29 12:35:00,394 Main St, Los Angeles,CA,90001 +276167,Bose SoundSport Headphones,1,99.99,2019-10-26 09:49:00,284 Cedar St, San Francisco,CA,94016 +276168,AA Batteries (4-pack),1,3.84,2019-10-07 22:35:00,741 River St, Los Angeles,CA,90001 +276169,Lightning Charging Cable,1,14.95,2019-10-25 16:03:00,477 Johnson St, Atlanta,GA,30301 +276170,USB-C Charging Cable,1,11.95,2019-10-07 18:07:00,13 12th St, Austin,TX,73301 +276171,Bose SoundSport Headphones,1,99.99,2019-10-11 22:23:00,215 Hickory St, Los Angeles,CA,90001 +276172,USB-C Charging Cable,1,11.95,2019-10-21 10:33:00,904 Pine St, San Francisco,CA,94016 +276173,Lightning Charging Cable,1,14.95,2019-10-18 17:11:00,548 Main St, Dallas,TX,75001 +276174,AAA Batteries (4-pack),1,2.99,2019-10-30 11:23:00,762 5th St, Boston,MA,02215 +276175,Flatscreen TV,1,300.0,2019-10-24 19:05:00,953 11th St, New York City,NY,10001 +276176,iPhone,1,700.0,2019-10-27 11:38:00,374 Meadow St, San Francisco,CA,94016 +276177,Lightning Charging Cable,1,14.95,2019-10-08 16:36:00,300 Hickory St, Portland,OR,97035 +276178,Lightning Charging Cable,1,14.95,2019-10-16 22:34:00,766 Jefferson St, Boston,MA,02215 +276179,iPhone,1,700.0,2019-10-15 19:17:00,931 11th St, New York City,NY,10001 +276180,Apple Airpods Headphones,1,150.0,2019-10-24 19:18:00,152 Dogwood St, Los Angeles,CA,90001 +276181,iPhone,1,700.0,2019-10-10 12:19:00,545 Adams St, Los Angeles,CA,90001 +276182,USB-C Charging Cable,1,11.95,2019-10-17 13:51:00,180 10th St, San Francisco,CA,94016 +276183,AA Batteries (4-pack),1,3.84,2019-10-02 13:26:00,899 Willow St, Dallas,TX,75001 +276184,Bose SoundSport Headphones,1,99.99,2019-10-31 15:31:00,979 Sunset St, Los Angeles,CA,90001 +276185,USB-C Charging Cable,1,11.95,2019-10-07 16:55:00,953 Main St, Portland,OR,97035 +276186,27in FHD Monitor,1,149.99,2019-10-13 13:52:00,262 Jefferson St, Seattle,WA,98101 +276187,Wired Headphones,1,11.99,2019-10-31 10:12:00,786 Cedar St, Los Angeles,CA,90001 +276188,Flatscreen TV,1,300.0,2019-10-07 11:44:00,188 North St, Boston,MA,02215 +276189,Bose SoundSport Headphones,1,99.99,2019-10-19 20:41:00,505 Cedar St, Seattle,WA,98101 +276190,Wired Headphones,1,11.99,2019-10-16 11:13:00,246 Church St, San Francisco,CA,94016 +276191,AAA Batteries (4-pack),1,2.99,2019-10-12 23:07:00,600 Cedar St, Austin,TX,73301 +276192,Wired Headphones,1,11.99,2019-10-02 22:08:00,714 Cherry St, Seattle,WA,98101 +276193,AA Batteries (4-pack),1,3.84,2019-10-24 08:08:00,501 Elm St, Los Angeles,CA,90001 +276194,AAA Batteries (4-pack),1,2.99,2019-10-26 17:56:00,462 9th St, New York City,NY,10001 +276195,20in Monitor,1,109.99,2019-10-18 23:05:00,915 Park St, Los Angeles,CA,90001 +276196,Bose SoundSport Headphones,1,99.99,2019-10-20 09:28:00,844 Jackson St, New York City,NY,10001 +276197,AA Batteries (4-pack),1,3.84,2019-10-10 14:35:00,778 13th St, New York City,NY,10001 +276198,USB-C Charging Cable,1,11.95,2019-10-18 19:31:00,888 North St, Austin,TX,73301 +276199,Macbook Pro Laptop,1,1700.0,2019-10-28 15:17:00,753 Johnson St, Los Angeles,CA,90001 +276200,USB-C Charging Cable,1,11.95,2019-10-11 11:26:00,290 Center St, San Francisco,CA,94016 +276201,USB-C Charging Cable,1,11.95,2019-10-22 22:33:00,445 7th St, Portland,OR,97035 +276202,Bose SoundSport Headphones,1,99.99,2019-10-10 15:17:00,220 13th St, New York City,NY,10001 +276203,Lightning Charging Cable,1,14.95,2019-10-02 15:03:00,643 Park St, Los Angeles,CA,90001 +276204,27in 4K Gaming Monitor,1,389.99,2019-10-07 14:29:00,583 Willow St, Atlanta,GA,30301 +276205,Flatscreen TV,1,300.0,2019-10-14 10:16:00,281 Jackson St, San Francisco,CA,94016 +276206,Wired Headphones,1,11.99,2019-10-20 16:27:00,891 Walnut St, Boston,MA,02215 +276207,34in Ultrawide Monitor,1,379.99,2019-10-05 00:31:00,873 Walnut St, San Francisco,CA,94016 +276208,Macbook Pro Laptop,1,1700.0,2019-10-30 15:03:00,652 10th St, Boston,MA,02215 +276209,ThinkPad Laptop,1,999.99,2019-10-21 18:20:00,184 Chestnut St, Dallas,TX,75001 +276210,ThinkPad Laptop,1,999.99,2019-10-06 18:08:00,251 Highland St, San Francisco,CA,94016 +276211,34in Ultrawide Monitor,1,379.99,2019-10-09 22:25:00,212 Spruce St, Boston,MA,02215 +276212,Bose SoundSport Headphones,1,99.99,2019-10-10 12:48:00,628 Maple St, Boston,MA,02215 +276213,Lightning Charging Cable,1,14.95,2019-10-08 21:56:00,859 5th St, New York City,NY,10001 +276214,Bose SoundSport Headphones,1,99.99,2019-10-31 16:43:00,531 6th St, Los Angeles,CA,90001 +276215,Bose SoundSport Headphones,1,99.99,2019-10-08 14:16:00,442 Wilson St, Boston,MA,02215 +276216,Lightning Charging Cable,1,14.95,2019-10-17 14:10:00,790 10th St, Boston,MA,02215 +276217,USB-C Charging Cable,1,11.95,2019-10-27 19:11:00,142 River St, Dallas,TX,75001 +276218,ThinkPad Laptop,1,999.99,2019-10-17 19:20:00,987 South St, Boston,MA,02215 +276219,27in FHD Monitor,1,149.99,2019-10-18 15:02:00,412 6th St, Atlanta,GA,30301 +276220,ThinkPad Laptop,1,999.99,2019-10-15 16:25:00,929 Lakeview St, Boston,MA,02215 +276221,27in 4K Gaming Monitor,1,389.99,2019-10-27 22:51:00,739 4th St, San Francisco,CA,94016 +276222,Bose SoundSport Headphones,1,99.99,2019-10-02 21:22:00,159 Spruce St, Boston,MA,02215 +276223,Bose SoundSport Headphones,1,99.99,2019-10-03 15:06:00,931 Spruce St, San Francisco,CA,94016 +276224,Bose SoundSport Headphones,1,99.99,2019-10-24 19:19:00,650 Johnson St, New York City,NY,10001 +276225,AAA Batteries (4-pack),1,2.99,2019-10-21 20:05:00,803 8th St, Portland,OR,97035 +276225,Flatscreen TV,1,300.0,2019-10-21 20:05:00,803 8th St, Portland,OR,97035 +276226,Lightning Charging Cable,1,14.95,2019-10-25 10:39:00,154 Cherry St, Boston,MA,02215 +276227,Bose SoundSport Headphones,1,99.99,2019-10-11 17:50:00,161 Ridge St, Portland,OR,97035 +276228,ThinkPad Laptop,1,999.99,2019-10-01 23:17:00,666 Sunset St, Los Angeles,CA,90001 +276229,USB-C Charging Cable,1,11.95,2019-10-01 12:18:00,928 Highland St, Los Angeles,CA,90001 +276230,34in Ultrawide Monitor,1,379.99,2019-10-02 20:18:00,222 14th St, New York City,NY,10001 +276231,Apple Airpods Headphones,1,150.0,2019-10-28 11:54:00,80 Wilson St, Seattle,WA,98101 +276232,USB-C Charging Cable,1,11.95,2019-10-20 19:09:00,118 14th St, Los Angeles,CA,90001 +276233,AA Batteries (4-pack),1,3.84,2019-10-31 18:48:00,380 Madison St, San Francisco,CA,94016 +276234,Wired Headphones,1,11.99,2019-10-24 13:51:00,194 Willow St, San Francisco,CA,94016 +276235,Google Phone,1,600.0,2019-10-25 11:00:00,587 Spruce St, Los Angeles,CA,90001 +276236,Bose SoundSport Headphones,1,99.99,2019-10-31 14:27:00,937 7th St, Portland,OR,97035 +276237,AAA Batteries (4-pack),1,2.99,2019-10-02 16:25:00,800 9th St, Dallas,TX,75001 +276238,AAA Batteries (4-pack),1,2.99,2019-10-01 21:00:00,64 Pine St, Austin,TX,73301 +276238,LG Dryer,1,600.0,2019-10-01 21:00:00,64 Pine St, Austin,TX,73301 +276239,Google Phone,1,600.0,2019-10-04 19:15:00,625 South St, Dallas,TX,75001 +276240,Bose SoundSport Headphones,1,99.99,2019-10-05 09:56:00,43 Dogwood St, San Francisco,CA,94016 +276240,AAA Batteries (4-pack),2,2.99,2019-10-05 09:56:00,43 Dogwood St, San Francisco,CA,94016 +276241,Lightning Charging Cable,1,14.95,2019-10-19 10:27:00,208 11th St, Los Angeles,CA,90001 +276242,Wired Headphones,1,11.99,2019-10-14 10:26:00,641 Jefferson St, New York City,NY,10001 +276243,iPhone,1,700.0,2019-10-15 11:48:00,257 Lakeview St, San Francisco,CA,94016 +276244,AA Batteries (4-pack),1,3.84,2019-10-08 06:14:00,492 Madison St, San Francisco,CA,94016 +276245,Bose SoundSport Headphones,1,99.99,2019-10-26 23:36:00,147 Willow St, San Francisco,CA,94016 +276246,AA Batteries (4-pack),1,3.84,2019-10-30 15:49:00,859 2nd St, Seattle,WA,98101 +276247,AA Batteries (4-pack),2,3.84,2019-10-28 19:35:00,409 Washington St, Atlanta,GA,30301 +276248,Bose SoundSport Headphones,1,99.99,2019-10-11 22:30:00,699 Cedar St, San Francisco,CA,94016 +276249,Google Phone,1,600.0,2019-10-10 15:02:00,722 Cherry St, San Francisco,CA,94016 +276249,USB-C Charging Cable,2,11.95,2019-10-10 15:02:00,722 Cherry St, San Francisco,CA,94016 +276250,Macbook Pro Laptop,1,1700.0,2019-10-17 11:26:00,503 4th St, San Francisco,CA,94016 +276251,Lightning Charging Cable,1,14.95,2019-10-08 08:02:00,117 Pine St, Seattle,WA,98101 +276252,Flatscreen TV,1,300.0,2019-10-06 08:14:00,547 9th St, Seattle,WA,98101 +276253,USB-C Charging Cable,1,11.95,2019-10-22 21:07:00,617 7th St, San Francisco,CA,94016 +276254,Vareebadd Phone,1,400.0,2019-10-31 11:13:00,889 11th St, San Francisco,CA,94016 +276255,Bose SoundSport Headphones,1,99.99,2019-10-28 14:57:00,193 Washington St, Los Angeles,CA,90001 +276256,AAA Batteries (4-pack),1,2.99,2019-10-11 07:47:00,646 Cherry St, Dallas,TX,75001 +276257,AA Batteries (4-pack),1,3.84,2019-10-12 16:18:00,885 4th St, San Francisco,CA,94016 +276258,Bose SoundSport Headphones,1,99.99,2019-10-07 21:04:00,666 Washington St, Atlanta,GA,30301 +276259,Macbook Pro Laptop,1,1700.0,2019-10-06 06:07:00,111 5th St, New York City,NY,10001 +276260,Flatscreen TV,1,300.0,2019-10-21 12:06:00,695 Johnson St, Los Angeles,CA,90001 +276261,27in 4K Gaming Monitor,1,389.99,2019-10-17 18:12:00,739 Cherry St, Boston,MA,02215 +276262,Lightning Charging Cable,1,14.95,2019-10-06 16:18:00,318 7th St, San Francisco,CA,94016 +276263,20in Monitor,1,109.99,2019-10-16 08:24:00,2 Adams St, Portland,ME,04101 +276264,Lightning Charging Cable,1,14.95,2019-10-22 08:06:00,326 Spruce St, New York City,NY,10001 +276265,USB-C Charging Cable,1,11.95,2019-10-24 13:08:00,224 Cedar St, Austin,TX,73301 +276266,27in FHD Monitor,1,149.99,2019-10-19 12:42:00,558 Madison St, Seattle,WA,98101 +276267,Google Phone,1,600.0,2019-10-21 08:49:00,669 Lakeview St, Portland,ME,04101 +276268,USB-C Charging Cable,1,11.95,2019-10-24 12:49:00,516 Washington St, Los Angeles,CA,90001 +276269,Lightning Charging Cable,1,14.95,2019-10-06 22:33:00,428 5th St, Los Angeles,CA,90001 +276270,Wired Headphones,1,11.99,2019-10-27 14:30:00,513 Jefferson St, Boston,MA,02215 +276271,34in Ultrawide Monitor,1,379.99,2019-10-07 21:12:00,113 Willow St, Boston,MA,02215 +276272,Lightning Charging Cable,1,14.95,2019-10-09 20:57:00,280 Madison St, New York City,NY,10001 +276273,34in Ultrawide Monitor,1,379.99,2019-10-29 10:56:00,229 Washington St, San Francisco,CA,94016 +276274,20in Monitor,1,109.99,2019-10-18 19:10:00,527 5th St, San Francisco,CA,94016 +276275,USB-C Charging Cable,1,11.95,2019-10-20 14:55:00,189 Lake St, Atlanta,GA,30301 +276276,USB-C Charging Cable,1,11.95,2019-10-10 11:19:00,482 Lakeview St, Atlanta,GA,30301 +276277,27in FHD Monitor,1,149.99,2019-10-30 23:19:00,39 4th St, San Francisco,CA,94016 +276278,Lightning Charging Cable,1,14.95,2019-10-31 21:53:00,82 West St, San Francisco,CA,94016 +276279,Bose SoundSport Headphones,1,99.99,2019-10-19 18:21:00,231 Walnut St, San Francisco,CA,94016 +276280,Lightning Charging Cable,1,14.95,2019-10-15 14:58:00,154 Cherry St, Dallas,TX,75001 +276281,Bose SoundSport Headphones,1,99.99,2019-10-26 20:23:00,89 6th St, Austin,TX,73301 +276282,Apple Airpods Headphones,1,150.0,2019-10-19 20:47:00,858 10th St, San Francisco,CA,94016 +276283,Wired Headphones,1,11.99,2019-10-17 15:29:00,733 Adams St, Portland,ME,04101 +276284,Bose SoundSport Headphones,1,99.99,2019-10-26 10:15:00,387 8th St, New York City,NY,10001 +276285,AA Batteries (4-pack),1,3.84,2019-10-07 09:58:00,321 South St, San Francisco,CA,94016 +276286,Wired Headphones,1,11.99,2019-10-01 07:26:00,420 11th St, Austin,TX,73301 +276287,Flatscreen TV,1,300.0,2019-10-07 06:56:00,258 Johnson St, Boston,MA,02215 +276288,USB-C Charging Cable,1,11.95,2019-10-22 17:23:00,923 Jefferson St, San Francisco,CA,94016 +276289,AAA Batteries (4-pack),1,2.99,2019-10-30 16:08:00,588 Jefferson St, Atlanta,GA,30301 +276290,USB-C Charging Cable,1,11.95,2019-10-24 09:37:00,689 Spruce St, Atlanta,GA,30301 +276291,AAA Batteries (4-pack),1,2.99,2019-10-06 10:15:00,864 Pine St, Seattle,WA,98101 +276292,Vareebadd Phone,1,400.0,2019-10-10 23:16:00,614 Spruce St, Boston,MA,02215 +276292,USB-C Charging Cable,1,11.95,2019-10-10 23:16:00,614 Spruce St, Boston,MA,02215 +276293,Lightning Charging Cable,1,14.95,2019-10-23 13:17:00,931 5th St, San Francisco,CA,94016 +276294,AA Batteries (4-pack),1,3.84,2019-10-22 22:30:00,658 Chestnut St, Dallas,TX,75001 +276295,Bose SoundSport Headphones,1,99.99,2019-10-08 12:49:00,555 Forest St, Seattle,WA,98101 +276296,USB-C Charging Cable,1,11.95,2019-10-15 12:33:00,642 Cherry St, Portland,OR,97035 +276297,AAA Batteries (4-pack),1,2.99,2019-10-11 15:59:00,44 Lincoln St, Seattle,WA,98101 +276298,Wired Headphones,1,11.99,2019-10-10 17:38:00,26 Madison St, Los Angeles,CA,90001 +276299,Macbook Pro Laptop,1,1700.0,2019-10-20 20:14:00,153 Washington St, New York City,NY,10001 +276300,Apple Airpods Headphones,1,150.0,2019-10-04 19:19:00,173 Wilson St, San Francisco,CA,94016 +276301,USB-C Charging Cable,1,11.95,2019-10-30 23:22:00,750 13th St, Portland,OR,97035 +276302,Apple Airpods Headphones,1,150.0,2019-10-14 11:11:00,523 5th St, San Francisco,CA,94016 +276303,Google Phone,1,600.0,2019-10-20 11:04:00,988 12th St, Los Angeles,CA,90001 +276304,Wired Headphones,1,11.99,2019-10-04 10:38:00,844 West St, Dallas,TX,75001 +276305,USB-C Charging Cable,1,11.95,2019-10-06 16:34:00,881 11th St, Seattle,WA,98101 +276306,ThinkPad Laptop,1,999.99,2019-10-06 19:30:00,33 Adams St, Portland,ME,04101 +276307,Lightning Charging Cable,1,14.95,2019-10-26 23:34:00,265 Willow St, New York City,NY,10001 +276308,27in FHD Monitor,1,149.99,2019-10-24 23:33:00,865 Adams St, Austin,TX,73301 +276309,Lightning Charging Cable,3,14.95,2019-10-28 11:12:00,186 Spruce St, Seattle,WA,98101 +276310,34in Ultrawide Monitor,1,379.99,2019-10-08 14:42:00,378 Lakeview St, Los Angeles,CA,90001 +276311,AA Batteries (4-pack),2,3.84,2019-10-01 15:48:00,832 Sunset St, Los Angeles,CA,90001 +276312,USB-C Charging Cable,1,11.95,2019-10-27 01:08:00,934 Willow St, New York City,NY,10001 +276313,Bose SoundSport Headphones,1,99.99,2019-10-05 22:47:00,77 8th St, Austin,TX,73301 +276314,AAA Batteries (4-pack),1,2.99,2019-10-02 12:08:00,375 11th St, New York City,NY,10001 +276315,AAA Batteries (4-pack),1,2.99,2019-10-12 23:45:00,8 8th St, New York City,NY,10001 +276316,Wired Headphones,1,11.99,2019-10-22 19:16:00,727 West St, Portland,OR,97035 +276317,AAA Batteries (4-pack),1,2.99,2019-10-29 11:00:00,287 Park St, San Francisco,CA,94016 +276318,USB-C Charging Cable,1,11.95,2019-10-27 18:50:00,752 Ridge St, New York City,NY,10001 +276319,Wired Headphones,1,11.99,2019-10-17 22:17:00,405 5th St, Atlanta,GA,30301 +276320,Lightning Charging Cable,1,14.95,2019-10-15 19:40:00,805 Madison St, New York City,NY,10001 +276321,Flatscreen TV,1,300.0,2019-10-18 08:26:00,209 Forest St, San Francisco,CA,94016 +276322,Apple Airpods Headphones,1,150.0,2019-10-28 19:14:00,142 Hickory St, Boston,MA,02215 +276323,AA Batteries (4-pack),1,3.84,2019-10-24 20:54:00,985 Lincoln St, Seattle,WA,98101 +276324,Lightning Charging Cable,1,14.95,2019-10-14 09:32:00,174 Jackson St, Los Angeles,CA,90001 +276325,ThinkPad Laptop,1,999.99,2019-10-18 15:28:00,56 4th St, San Francisco,CA,94016 +276326,USB-C Charging Cable,1,11.95,2019-10-04 09:17:00,581 11th St, Los Angeles,CA,90001 +276327,AA Batteries (4-pack),1,3.84,2019-10-26 20:05:00,472 8th St, Atlanta,GA,30301 +276328,ThinkPad Laptop,1,999.99,2019-10-23 21:30:00,811 4th St, Los Angeles,CA,90001 +276329,AAA Batteries (4-pack),1,2.99,2019-10-20 09:55:00,402 Meadow St, Los Angeles,CA,90001 +276330,27in FHD Monitor,1,149.99,2019-10-31 13:34:00,542 14th St, San Francisco,CA,94016 +276331,27in FHD Monitor,1,149.99,2019-10-11 05:28:00,662 Ridge St, Los Angeles,CA,90001 +276332,Lightning Charging Cable,1,14.95,2019-10-09 17:11:00,219 River St, Boston,MA,02215 +276332,Bose SoundSport Headphones,2,99.99,2019-10-09 17:11:00,219 River St, Boston,MA,02215 +276333,27in FHD Monitor,1,149.99,2019-10-08 11:58:00,569 Walnut St, Los Angeles,CA,90001 +276334,Flatscreen TV,1,300.0,2019-10-10 11:16:00,570 13th St, Austin,TX,73301 +276335,Wired Headphones,1,11.99,2019-10-17 21:31:00,852 Madison St, Seattle,WA,98101 +276336,USB-C Charging Cable,1,11.95,2019-10-08 22:17:00,548 Lakeview St, Boston,MA,02215 +276337,Lightning Charging Cable,1,14.95,2019-10-29 16:15:00,447 Cedar St, San Francisco,CA,94016 +276338,ThinkPad Laptop,1,999.99,2019-10-15 17:35:00,817 8th St, Austin,TX,73301 +276339,USB-C Charging Cable,1,11.95,2019-10-06 22:32:00,123 Hill St, New York City,NY,10001 +276340,AA Batteries (4-pack),1,3.84,2019-10-11 15:29:00,628 Walnut St, San Francisco,CA,94016 +276341,20in Monitor,1,109.99,2019-10-20 17:03:00,779 North St, New York City,NY,10001 +276342,USB-C Charging Cable,1,11.95,2019-10-17 22:17:00,38 Dogwood St, Los Angeles,CA,90001 +276343,Wired Headphones,1,11.99,2019-10-23 17:00:00,20 Washington St, San Francisco,CA,94016 +276344,Apple Airpods Headphones,1,150.0,2019-10-29 21:13:00,261 6th St, New York City,NY,10001 +276345,Apple Airpods Headphones,1,150.0,2019-10-17 19:15:00,17 Chestnut St, New York City,NY,10001 +276346,Wired Headphones,1,11.99,2019-10-03 19:12:00,732 4th St, San Francisco,CA,94016 +276347,AAA Batteries (4-pack),1,2.99,2019-10-05 18:30:00,361 South St, Los Angeles,CA,90001 +276348,Vareebadd Phone,1,400.0,2019-10-19 10:53:00,749 Jefferson St, Los Angeles,CA,90001 +276349,AAA Batteries (4-pack),1,2.99,2019-10-29 19:17:00,816 Forest St, Los Angeles,CA,90001 +276350,Google Phone,1,600.0,2019-10-29 02:39:00,251 8th St, San Francisco,CA,94016 +276351,Wired Headphones,2,11.99,2019-10-17 15:16:00,140 Meadow St, San Francisco,CA,94016 +276352,Apple Airpods Headphones,1,150.0,2019-10-07 18:23:00,166 13th St, Portland,ME,04101 +276353,USB-C Charging Cable,1,11.95,2019-10-19 16:56:00,696 1st St, Boston,MA,02215 +276354,Wired Headphones,1,11.99,2019-10-10 14:22:00,740 West St, Los Angeles,CA,90001 +276355,Wired Headphones,1,11.99,2019-10-13 20:32:00,131 Pine St, San Francisco,CA,94016 +276356,Wired Headphones,1,11.99,2019-10-17 06:51:00,443 7th St, San Francisco,CA,94016 +276357,AAA Batteries (4-pack),1,2.99,2019-10-27 16:25:00,410 Dogwood St, Los Angeles,CA,90001 +276357,27in FHD Monitor,1,149.99,2019-10-27 16:25:00,410 Dogwood St, Los Angeles,CA,90001 +276358,iPhone,1,700.0,2019-10-28 11:52:00,25 Lincoln St, Los Angeles,CA,90001 +276359,AA Batteries (4-pack),2,3.84,2019-10-24 22:48:00,415 Jefferson St, Los Angeles,CA,90001 +276360,Bose SoundSport Headphones,1,99.99,2019-10-17 10:43:00,741 Washington St, Seattle,WA,98101 +276361,USB-C Charging Cable,1,11.95,2019-10-04 20:31:00,372 Willow St, New York City,NY,10001 +276362,USB-C Charging Cable,1,11.95,2019-10-06 11:54:00,612 South St, Dallas,TX,75001 +276363,Bose SoundSport Headphones,1,99.99,2019-10-26 10:05:00,761 Lakeview St, San Francisco,CA,94016 +276364,Wired Headphones,1,11.99,2019-10-05 09:06:00,585 Washington St, New York City,NY,10001 +276365,27in FHD Monitor,1,149.99,2019-10-09 08:43:00,476 Hill St, New York City,NY,10001 +276366,USB-C Charging Cable,1,11.95,2019-10-31 19:04:00,783 Madison St, Dallas,TX,75001 +276367,Lightning Charging Cable,1,14.95,2019-10-25 18:30:00,239 Chestnut St, Dallas,TX,75001 +276368,AA Batteries (4-pack),1,3.84,2019-10-28 05:41:00,177 Lake St, Atlanta,GA,30301 +276369,27in 4K Gaming Monitor,1,389.99,2019-10-27 15:17:00,778 Lake St, Dallas,TX,75001 +276370,Lightning Charging Cable,1,14.95,2019-10-01 22:25:00,330 North St, San Francisco,CA,94016 +276371,Lightning Charging Cable,1,14.95,2019-10-11 21:07:00,26 Spruce St, Los Angeles,CA,90001 +276372,Apple Airpods Headphones,1,150.0,2019-10-05 20:28:00,995 Jefferson St, Portland,OR,97035 +276373,USB-C Charging Cable,1,11.95,2019-10-15 19:09:00,215 Elm St, New York City,NY,10001 +276374,Macbook Pro Laptop,1,1700.0,2019-10-06 08:30:00,45 Chestnut St, San Francisco,CA,94016 +276375,27in 4K Gaming Monitor,1,389.99,2019-10-17 07:39:00,469 Madison St, Dallas,TX,75001 +276376,AAA Batteries (4-pack),1,2.99,2019-10-02 13:58:00,933 Madison St, Boston,MA,02215 +276377,34in Ultrawide Monitor,1,379.99,2019-10-07 23:08:00,231 Cedar St, San Francisco,CA,94016 +276378,Wired Headphones,1,11.99,2019-10-05 19:40:00,385 Meadow St, Los Angeles,CA,90001 +276379,Bose SoundSport Headphones,1,99.99,2019-10-30 19:37:00,550 Chestnut St, New York City,NY,10001 +276380,USB-C Charging Cable,1,11.95,2019-10-13 20:01:00,433 4th St, New York City,NY,10001 +276381,Lightning Charging Cable,1,14.95,2019-10-05 18:27:00,852 Chestnut St, San Francisco,CA,94016 +276382,Flatscreen TV,1,300.0,2019-10-02 18:30:00,401 Jackson St, New York City,NY,10001 +276383,27in 4K Gaming Monitor,1,389.99,2019-10-08 23:19:00,76 Meadow St, San Francisco,CA,94016 +276384,AAA Batteries (4-pack),2,2.99,2019-10-27 18:26:00,812 Highland St, San Francisco,CA,94016 +276385,AAA Batteries (4-pack),1,2.99,2019-10-23 15:16:00,940 Jefferson St, Boston,MA,02215 +276386,27in 4K Gaming Monitor,1,389.99,2019-10-14 21:29:00,716 14th St, San Francisco,CA,94016 +276387,Wired Headphones,1,11.99,2019-10-17 11:52:00,332 Lake St, Seattle,WA,98101 +276388,ThinkPad Laptop,1,999.99,2019-10-26 03:30:00,572 Johnson St, Los Angeles,CA,90001 +276389,Macbook Pro Laptop,1,1700.0,2019-10-11 19:44:00,429 5th St, Portland,OR,97035 +276390,Wired Headphones,1,11.99,2019-10-19 12:52:00,664 1st St, New York City,NY,10001 +276391,Lightning Charging Cable,1,14.95,2019-10-30 14:35:00,446 Adams St, San Francisco,CA,94016 +276392,iPhone,1,700.0,2019-10-22 19:12:00,479 Center St, San Francisco,CA,94016 +276393,AA Batteries (4-pack),2,3.84,2019-10-12 09:03:00,259 South St, Atlanta,GA,30301 +276393,AA Batteries (4-pack),1,3.84,2019-10-12 09:03:00,259 South St, Atlanta,GA,30301 +276394,USB-C Charging Cable,1,11.95,2019-10-24 06:50:00,48 10th St, Portland,OR,97035 +276395,USB-C Charging Cable,1,11.95,2019-10-05 22:43:00,128 Elm St, New York City,NY,10001 +276396,ThinkPad Laptop,1,999.99,2019-10-06 07:36:00,366 9th St, Seattle,WA,98101 +276397,USB-C Charging Cable,1,11.95,2019-10-28 17:34:00,421 Lakeview St, San Francisco,CA,94016 +276398,27in FHD Monitor,1,149.99,2019-10-23 21:05:00,556 Jackson St, Dallas,TX,75001 +276399,Bose SoundSport Headphones,1,99.99,2019-10-09 11:56:00,750 14th St, Seattle,WA,98101 +276400,27in 4K Gaming Monitor,1,389.99,2019-10-24 19:04:00,412 Church St, Dallas,TX,75001 +276401,Wired Headphones,1,11.99,2019-10-29 16:14:00,362 Spruce St, Seattle,WA,98101 +276402,Lightning Charging Cable,1,14.95,2019-10-25 20:14:00,684 13th St, Boston,MA,02215 +276403,Lightning Charging Cable,1,14.95,2019-10-01 18:55:00,248 Washington St, Atlanta,GA,30301 +276404,USB-C Charging Cable,1,11.95,2019-10-29 10:49:00,605 Wilson St, Seattle,WA,98101 +276405,Bose SoundSport Headphones,1,99.99,2019-10-08 15:20:00,293 Meadow St, New York City,NY,10001 +276406,AAA Batteries (4-pack),1,2.99,2019-10-08 17:55:00,643 Highland St, Los Angeles,CA,90001 +276407,Apple Airpods Headphones,1,150.0,2019-10-24 08:04:00,369 River St, San Francisco,CA,94016 +276408,34in Ultrawide Monitor,1,379.99,2019-10-21 10:36:00,674 6th St, Los Angeles,CA,90001 +276409,Lightning Charging Cable,1,14.95,2019-10-13 13:25:00,733 Spruce St, New York City,NY,10001 +276410,Wired Headphones,1,11.99,2019-10-28 18:45:00,277 Walnut St, Portland,OR,97035 +276411,Flatscreen TV,1,300.0,2019-10-03 06:32:00,800 Center St, San Francisco,CA,94016 +276412,Apple Airpods Headphones,1,150.0,2019-10-03 15:41:00,885 Sunset St, San Francisco,CA,94016 +276413,USB-C Charging Cable,1,11.95,2019-10-30 12:29:00,393 Lincoln St, New York City,NY,10001 +276414,AA Batteries (4-pack),1,3.84,2019-10-27 17:39:00,965 Park St, Seattle,WA,98101 +276415,Macbook Pro Laptop,1,1700.0,2019-10-14 11:24:00,731 2nd St, Boston,MA,02215 +276416,27in FHD Monitor,1,149.99,2019-10-18 20:36:00,438 Highland St, Seattle,WA,98101 +276417,Lightning Charging Cable,1,14.95,2019-10-14 17:38:00,615 4th St, Los Angeles,CA,90001 +276418,34in Ultrawide Monitor,1,379.99,2019-10-24 10:00:00,670 Center St, San Francisco,CA,94016 +276419,27in 4K Gaming Monitor,1,389.99,2019-10-02 12:42:00,324 South St, Seattle,WA,98101 +276420,Apple Airpods Headphones,1,150.0,2019-10-08 12:42:00,836 6th St, San Francisco,CA,94016 +276421,Wired Headphones,1,11.99,2019-10-30 12:02:00,770 7th St, Dallas,TX,75001 +276422,USB-C Charging Cable,1,11.95,2019-10-24 19:13:00,948 Dogwood St, San Francisco,CA,94016 +276423,Apple Airpods Headphones,1,150.0,2019-10-25 15:13:00,866 Lakeview St, New York City,NY,10001 +276424,USB-C Charging Cable,1,11.95,2019-10-18 22:36:00,871 Adams St, Seattle,WA,98101 +276425,AA Batteries (4-pack),1,3.84,2019-10-10 08:39:00,937 7th St, San Francisco,CA,94016 +276426,Lightning Charging Cable,1,14.95,2019-10-28 08:10:00,440 Lakeview St, Portland,OR,97035 +276427,Google Phone,1,600.0,2019-10-11 09:25:00,497 Forest St, New York City,NY,10001 +276427,Bose SoundSport Headphones,1,99.99,2019-10-11 09:25:00,497 Forest St, New York City,NY,10001 +276428,27in FHD Monitor,1,149.99,2019-10-18 16:35:00,639 Jackson St, New York City,NY,10001 +276429,AA Batteries (4-pack),2,3.84,2019-10-14 12:33:00,280 10th St, Los Angeles,CA,90001 +276430,AA Batteries (4-pack),1,3.84,2019-10-13 20:13:00,706 Cedar St, Seattle,WA,98101 +276431,USB-C Charging Cable,1,11.95,2019-10-04 15:06:00,636 6th St, Portland,OR,97035 +276432,Lightning Charging Cable,1,14.95,2019-10-08 13:58:00,280 1st St, Los Angeles,CA,90001 +276433,27in FHD Monitor,1,149.99,2019-10-08 21:36:00,695 Center St, Los Angeles,CA,90001 +276434,27in FHD Monitor,1,149.99,2019-10-31 17:27:00,926 Sunset St, San Francisco,CA,94016 +276435,Apple Airpods Headphones,1,150.0,2019-10-29 16:27:00,465 Elm St, New York City,NY,10001 +276436,Wired Headphones,1,11.99,2019-10-21 17:20:00,781 4th St, Los Angeles,CA,90001 +276437,iPhone,1,700.0,2019-10-17 11:50:00,429 14th St, Los Angeles,CA,90001 +276438,Bose SoundSport Headphones,1,99.99,2019-10-08 19:50:00,798 8th St, San Francisco,CA,94016 +276439,27in 4K Gaming Monitor,1,389.99,2019-10-20 20:19:00,841 2nd St, Boston,MA,02215 +276440,Flatscreen TV,1,300.0,2019-10-12 18:50:00,886 Park St, San Francisco,CA,94016 +276441,Vareebadd Phone,1,400.0,2019-10-02 14:12:00,967 2nd St, San Francisco,CA,94016 +276442,Apple Airpods Headphones,1,150.0,2019-10-01 09:45:00,157 Meadow St, Boston,MA,02215 +276443,USB-C Charging Cable,1,11.95,2019-10-30 16:09:00,116 West St, Seattle,WA,98101 +276444,Wired Headphones,1,11.99,2019-10-27 13:20:00,8 12th St, Boston,MA,02215 +276445,20in Monitor,1,109.99,2019-10-04 20:37:00,342 Lincoln St, New York City,NY,10001 +276446,AA Batteries (4-pack),1,3.84,2019-10-06 08:43:00,624 Church St, San Francisco,CA,94016 +276447,AA Batteries (4-pack),1,3.84,2019-10-11 20:39:00,622 12th St, Seattle,WA,98101 +276448,Apple Airpods Headphones,1,150.0,2019-10-24 11:18:00,656 South St, New York City,NY,10001 +276449,iPhone,1,700.0,2019-10-17 00:05:00,487 13th St, Boston,MA,02215 +276450,AA Batteries (4-pack),1,3.84,2019-10-07 00:01:00,216 Madison St, New York City,NY,10001 +276451,AA Batteries (4-pack),1,3.84,2019-10-16 21:01:00,840 7th St, Boston,MA,02215 +276452,USB-C Charging Cable,1,11.95,2019-10-12 23:25:00,150 Center St, Dallas,TX,75001 +276453,ThinkPad Laptop,1,999.99,2019-10-31 14:07:00,890 Elm St, Atlanta,GA,30301 +276454,Lightning Charging Cable,1,14.95,2019-10-23 10:16:00,237 14th St, Portland,OR,97035 +276455,AA Batteries (4-pack),1,3.84,2019-10-03 14:17:00,397 Jefferson St, Seattle,WA,98101 +276456,Wired Headphones,1,11.99,2019-10-17 22:29:00,110 Spruce St, San Francisco,CA,94016 +276457,AAA Batteries (4-pack),2,2.99,2019-10-12 21:43:00,432 14th St, San Francisco,CA,94016 +276458,Bose SoundSport Headphones,1,99.99,2019-10-27 10:44:00,54 13th St, Los Angeles,CA,90001 +276459,AA Batteries (4-pack),1,3.84,2019-10-14 19:46:00,51 Elm St, San Francisco,CA,94016 +276460,Wired Headphones,1,11.99,2019-10-27 10:09:00,613 Park St, Boston,MA,02215 +276461,AAA Batteries (4-pack),1,2.99,2019-10-12 13:52:00,739 Madison St, San Francisco,CA,94016 +276462,ThinkPad Laptop,1,999.99,2019-10-09 15:23:00,527 8th St, Austin,TX,73301 +276463,34in Ultrawide Monitor,1,379.99,2019-10-14 09:49:00,576 Center St, Los Angeles,CA,90001 +276464,27in FHD Monitor,1,149.99,2019-10-06 16:38:00,39 2nd St, Atlanta,GA,30301 +276465,27in 4K Gaming Monitor,1,389.99,2019-10-21 19:42:00,565 13th St, New York City,NY,10001 +276466,27in FHD Monitor,1,149.99,2019-10-05 19:27:00,967 9th St, Dallas,TX,75001 +276467,USB-C Charging Cable,1,11.95,2019-10-05 20:22:00,398 2nd St, Seattle,WA,98101 +276468,Lightning Charging Cable,1,14.95,2019-10-25 20:36:00,756 Highland St, Seattle,WA,98101 +276469,Vareebadd Phone,1,400.0,2019-10-22 18:57:00,577 10th St, Seattle,WA,98101 +276470,AA Batteries (4-pack),1,3.84,2019-10-15 14:28:00,784 North St, Seattle,WA,98101 +276471,34in Ultrawide Monitor,1,379.99,2019-10-11 11:15:00,956 5th St, San Francisco,CA,94016 +276472,20in Monitor,1,109.99,2019-10-27 00:14:00,853 Hickory St, Atlanta,GA,30301 +276473,AAA Batteries (4-pack),2,2.99,2019-10-29 18:12:00,951 Jackson St, Atlanta,GA,30301 +276474,ThinkPad Laptop,1,999.99,2019-10-06 21:52:00,189 5th St, San Francisco,CA,94016 +276475,AAA Batteries (4-pack),2,2.99,2019-10-15 16:29:00,585 Church St, San Francisco,CA,94016 +276476,Flatscreen TV,1,300.0,2019-10-16 00:16:00,930 Main St, New York City,NY,10001 +276476,34in Ultrawide Monitor,1,379.99,2019-10-16 00:16:00,930 Main St, New York City,NY,10001 +276477,USB-C Charging Cable,1,11.95,2019-10-10 19:32:00,722 Walnut St, Austin,TX,73301 +276478,Wired Headphones,1,11.99,2019-10-15 21:56:00,748 Meadow St, San Francisco,CA,94016 +276479,USB-C Charging Cable,1,11.95,2019-10-21 19:13:00,762 Sunset St, Atlanta,GA,30301 +276480,Google Phone,1,600.0,2019-10-12 01:11:00,751 Adams St, Seattle,WA,98101 +276480,Bose SoundSport Headphones,1,99.99,2019-10-12 01:11:00,751 Adams St, Seattle,WA,98101 +276481,Lightning Charging Cable,2,14.95,2019-10-29 17:00:00,508 Main St, Atlanta,GA,30301 +276482,AAA Batteries (4-pack),1,2.99,2019-10-26 22:10:00,575 Sunset St, San Francisco,CA,94016 +276483,AA Batteries (4-pack),1,3.84,2019-10-12 14:23:00,247 Maple St, San Francisco,CA,94016 +276484,Lightning Charging Cable,1,14.95,2019-10-03 18:43:00,422 5th St, Boston,MA,02215 +276485,Apple Airpods Headphones,1,150.0,2019-10-03 12:00:00,446 Spruce St, San Francisco,CA,94016 +276486,AAA Batteries (4-pack),1,2.99,2019-10-21 13:01:00,390 Cherry St, Atlanta,GA,30301 +276487,Flatscreen TV,1,300.0,2019-10-06 13:16:00,310 Center St, Boston,MA,02215 +276488,Bose SoundSport Headphones,1,99.99,2019-10-20 13:04:00,872 Adams St, Los Angeles,CA,90001 +276489,Apple Airpods Headphones,1,150.0,2019-10-14 14:36:00,98 7th St, New York City,NY,10001 +276490,27in 4K Gaming Monitor,1,389.99,2019-10-07 16:14:00,618 Jefferson St, San Francisco,CA,94016 +276491,34in Ultrawide Monitor,1,379.99,2019-10-07 22:12:00,476 Main St, Austin,TX,73301 +276492,Google Phone,1,600.0,2019-10-24 16:35:00,614 Madison St, Los Angeles,CA,90001 +276493,Lightning Charging Cable,1,14.95,2019-10-23 18:19:00,437 14th St, Dallas,TX,75001 +276494,27in FHD Monitor,1,149.99,2019-10-12 20:11:00,105 Park St, Los Angeles,CA,90001 +276495,Lightning Charging Cable,1,14.95,2019-10-20 21:09:00,518 6th St, Boston,MA,02215 +276496,ThinkPad Laptop,1,999.99,2019-10-31 09:21:00,156 Hill St, Austin,TX,73301 +276497,AA Batteries (4-pack),3,3.84,2019-10-04 11:15:00,713 Jackson St, San Francisco,CA,94016 +276498,AAA Batteries (4-pack),1,2.99,2019-10-20 17:35:00,235 1st St, Austin,TX,73301 +276499,AAA Batteries (4-pack),2,2.99,2019-10-24 07:55:00,145 5th St, Boston,MA,02215 +276500,Apple Airpods Headphones,1,150.0,2019-10-30 15:26:00,750 14th St, San Francisco,CA,94016 +276501,AAA Batteries (4-pack),2,2.99,2019-10-18 16:26:00,272 14th St, Portland,OR,97035 +276502,AAA Batteries (4-pack),1,2.99,2019-10-24 07:05:00,710 Adams St, San Francisco,CA,94016 +276503,AAA Batteries (4-pack),1,2.99,2019-10-08 01:04:00,481 Adams St, Atlanta,GA,30301 +276504,AA Batteries (4-pack),2,3.84,2019-10-16 12:47:00,218 Hickory St, Atlanta,GA,30301 +276505,Lightning Charging Cable,1,14.95,2019-10-14 14:18:00,153 9th St, New York City,NY,10001 +276506,USB-C Charging Cable,1,11.95,2019-10-21 08:33:00,843 Park St, Los Angeles,CA,90001 +276507,Lightning Charging Cable,1,14.95,2019-10-27 15:51:00,606 Washington St, Atlanta,GA,30301 +276508,27in 4K Gaming Monitor,1,389.99,2019-10-16 21:31:00,149 1st St, Portland,OR,97035 +276509,Apple Airpods Headphones,1,150.0,2019-10-21 13:02:00,79 Elm St, Boston,MA,02215 +276510,Lightning Charging Cable,1,14.95,2019-10-10 11:10:00,527 Maple St, Dallas,TX,75001 +276511,Lightning Charging Cable,1,14.95,2019-10-02 04:49:00,3 Dogwood St, Boston,MA,02215 +276512,Bose SoundSport Headphones,1,99.99,2019-10-17 17:52:00,152 1st St, Seattle,WA,98101 +276513,Lightning Charging Cable,1,14.95,2019-10-15 17:17:00,376 Ridge St, Dallas,TX,75001 +276514,Flatscreen TV,1,300.0,2019-10-14 20:02:00,580 Hill St, San Francisco,CA,94016 +276515,AAA Batteries (4-pack),1,2.99,2019-10-11 19:44:00,565 2nd St, New York City,NY,10001 +276515,AA Batteries (4-pack),1,3.84,2019-10-11 19:44:00,565 2nd St, New York City,NY,10001 +276516,Wired Headphones,1,11.99,2019-10-15 10:47:00,961 Maple St, San Francisco,CA,94016 +276517,AA Batteries (4-pack),1,3.84,2019-10-30 23:37:00,990 9th St, San Francisco,CA,94016 +276518,USB-C Charging Cable,1,11.95,2019-10-14 23:06:00,167 7th St, New York City,NY,10001 +276519,Wired Headphones,1,11.99,2019-10-26 17:47:00,763 North St, Seattle,WA,98101 +276520,Bose SoundSport Headphones,1,99.99,2019-10-06 14:07:00,220 Dogwood St, San Francisco,CA,94016 +276521,34in Ultrawide Monitor,1,379.99,2019-10-28 20:05:00,869 Lincoln St, New York City,NY,10001 +276522,AAA Batteries (4-pack),1,2.99,2019-10-19 22:04:00,697 Lakeview St, Portland,ME,04101 +276523,Lightning Charging Cable,1,14.95,2019-10-18 10:57:00,758 Church St, Austin,TX,73301 +276524,Wired Headphones,1,11.99,2019-10-29 12:53:00,785 Main St, Los Angeles,CA,90001 +276525,27in 4K Gaming Monitor,1,389.99,2019-10-09 11:43:00,600 Lincoln St, New York City,NY,10001 +276526,AAA Batteries (4-pack),2,2.99,2019-10-04 22:01:00,558 Maple St, Seattle,WA,98101 +276527,Lightning Charging Cable,1,14.95,2019-10-05 21:36:00,515 West St, Dallas,TX,75001 +276528,Wired Headphones,1,11.99,2019-10-21 21:06:00,837 Madison St, Austin,TX,73301 +276529,Apple Airpods Headphones,1,150.0,2019-10-04 19:51:00,549 Cedar St, San Francisco,CA,94016 +276530,USB-C Charging Cable,2,11.95,2019-10-29 16:14:00,633 Lincoln St, San Francisco,CA,94016 +276531,Lightning Charging Cable,1,14.95,2019-10-21 08:44:00,703 1st St, Dallas,TX,75001 +276532,AAA Batteries (4-pack),1,2.99,2019-10-03 11:54:00,410 Elm St, Boston,MA,02215 +276533,AA Batteries (4-pack),1,3.84,2019-10-25 11:45:00,690 Elm St, Dallas,TX,75001 +276534,AAA Batteries (4-pack),1,2.99,2019-10-31 20:38:00,677 Washington St, Boston,MA,02215 +276535,Lightning Charging Cable,1,14.95,2019-10-07 08:27:00,993 11th St, New York City,NY,10001 +276536,ThinkPad Laptop,1,999.99,2019-10-04 15:28:00,701 Hill St, Dallas,TX,75001 +276537,Wired Headphones,1,11.99,2019-10-15 19:09:00,807 Hill St, Los Angeles,CA,90001 +276537,Bose SoundSport Headphones,1,99.99,2019-10-15 19:09:00,807 Hill St, Los Angeles,CA,90001 +276538,Apple Airpods Headphones,1,150.0,2019-10-25 21:26:00,385 Highland St, Seattle,WA,98101 +276539,34in Ultrawide Monitor,1,379.99,2019-10-18 18:23:00,573 Washington St, Los Angeles,CA,90001 +276540,AAA Batteries (4-pack),1,2.99,2019-10-24 12:05:00,957 14th St, New York City,NY,10001 +276541,Wired Headphones,1,11.99,2019-10-05 08:19:00,89 South St, San Francisco,CA,94016 +276542,Bose SoundSport Headphones,1,99.99,2019-10-25 14:06:00,433 Johnson St, San Francisco,CA,94016 +276543,Lightning Charging Cable,1,14.95,2019-10-10 21:51:00,944 Center St, San Francisco,CA,94016 +276544,AAA Batteries (4-pack),1,2.99,2019-10-29 19:12:00,361 Maple St, Atlanta,GA,30301 +276545,27in FHD Monitor,1,149.99,2019-10-12 21:59:00,579 Willow St, New York City,NY,10001 +276546,27in FHD Monitor,1,149.99,2019-10-12 09:36:00,461 5th St, Atlanta,GA,30301 +276547,Lightning Charging Cable,1,14.95,2019-10-05 17:57:00,637 Hickory St, Boston,MA,02215 +276548,Apple Airpods Headphones,1,150.0,2019-10-28 09:27:00,591 West St, Los Angeles,CA,90001 +276549,Lightning Charging Cable,1,14.95,2019-10-26 12:42:00,692 South St, Seattle,WA,98101 +276550,AAA Batteries (4-pack),1,2.99,2019-10-02 23:46:00,929 Spruce St, San Francisco,CA,94016 +276551,AAA Batteries (4-pack),1,2.99,2019-10-23 09:57:00,830 Lake St, Boston,MA,02215 +276552,Lightning Charging Cable,1,14.95,2019-10-07 16:57:00,636 Church St, Portland,OR,97035 +276553,27in 4K Gaming Monitor,1,389.99,2019-10-03 10:52:00,561 8th St, Seattle,WA,98101 +276554,AA Batteries (4-pack),2,3.84,2019-10-01 09:36:00,811 4th St, Los Angeles,CA,90001 +276555,USB-C Charging Cable,1,11.95,2019-10-05 23:05:00,385 Dogwood St, Los Angeles,CA,90001 +276556,Apple Airpods Headphones,1,150.0,2019-10-28 20:36:00,83 Madison St, Dallas,TX,75001 +276557,AAA Batteries (4-pack),1,2.99,2019-10-07 20:38:00,525 Hill St, Los Angeles,CA,90001 +276558,27in 4K Gaming Monitor,1,389.99,2019-10-15 18:05:00,77 South St, Boston,MA,02215 +276559,ThinkPad Laptop,1,999.99,2019-10-21 14:34:00,805 Jefferson St, New York City,NY,10001 +276560,Apple Airpods Headphones,1,150.0,2019-10-26 08:56:00,684 River St, Dallas,TX,75001 +276561,Lightning Charging Cable,1,14.95,2019-10-27 21:09:00,329 12th St, Los Angeles,CA,90001 +276562,Wired Headphones,1,11.99,2019-10-11 18:34:00,418 10th St, Los Angeles,CA,90001 +276563,AA Batteries (4-pack),1,3.84,2019-10-17 12:51:00,932 Lincoln St, New York City,NY,10001 +276564,Lightning Charging Cable,1,14.95,2019-10-16 11:37:00,395 5th St, San Francisco,CA,94016 +276565,Wired Headphones,1,11.99,2019-10-10 08:50:00,774 1st St, New York City,NY,10001 +276566,AA Batteries (4-pack),1,3.84,2019-10-12 19:39:00,790 12th St, Austin,TX,73301 +276567,AAA Batteries (4-pack),1,2.99,2019-10-22 08:43:00,182 Willow St, Boston,MA,02215 +276568,AA Batteries (4-pack),1,3.84,2019-10-22 11:02:00,409 7th St, Boston,MA,02215 +276569,Flatscreen TV,1,300.0,2019-10-03 13:02:00,112 Ridge St, Boston,MA,02215 +276570,Lightning Charging Cable,1,14.95,2019-10-19 09:56:00,529 10th St, San Francisco,CA,94016 +276571,Flatscreen TV,1,300.0,2019-10-02 18:15:00,999 Spruce St, Dallas,TX,75001 +276572,27in FHD Monitor,1,149.99,2019-10-29 12:48:00,79 North St, Boston,MA,02215 +276573,iPhone,1,700.0,2019-10-05 01:31:00,979 Meadow St, Portland,OR,97035 +276573,Apple Airpods Headphones,1,150.0,2019-10-05 01:31:00,979 Meadow St, Portland,OR,97035 +276574,27in FHD Monitor,1,149.99,2019-10-06 17:29:00,476 Hill St, Dallas,TX,75001 +276575,27in 4K Gaming Monitor,1,389.99,2019-10-19 08:43:00,963 Main St, Seattle,WA,98101 +276576,Macbook Pro Laptop,1,1700.0,2019-10-01 15:10:00,475 River St, San Francisco,CA,94016 +276577,AAA Batteries (4-pack),1,2.99,2019-10-25 15:10:00,885 Chestnut St, New York City,NY,10001 +276578,Google Phone,1,600.0,2019-10-13 13:50:00,449 5th St, San Francisco,CA,94016 +276578,Wired Headphones,1,11.99,2019-10-13 13:50:00,449 5th St, San Francisco,CA,94016 +276579,Wired Headphones,2,11.99,2019-10-03 12:54:00,650 Jackson St, Dallas,TX,75001 +276580,Macbook Pro Laptop,1,1700.0,2019-10-01 17:39:00,208 Jackson St, Austin,TX,73301 +276581,Wired Headphones,1,11.99,2019-10-18 11:23:00,480 5th St, Los Angeles,CA,90001 +276582,Bose SoundSport Headphones,1,99.99,2019-10-26 07:22:00,306 Jackson St, Portland,OR,97035 +276583,AAA Batteries (4-pack),2,2.99,2019-10-31 15:18:00,589 Lincoln St, San Francisco,CA,94016 +276584,Lightning Charging Cable,1,14.95,2019-10-15 17:18:00,973 Cherry St, Los Angeles,CA,90001 +276585,Wired Headphones,1,11.99,2019-10-16 08:42:00,872 Adams St, Dallas,TX,75001 +276586,20in Monitor,1,109.99,2019-10-23 17:04:00,267 Madison St, San Francisco,CA,94016 +276587,AAA Batteries (4-pack),4,2.99,2019-10-05 23:03:00,316 South St, San Francisco,CA,94016 +276588,AAA Batteries (4-pack),3,2.99,2019-10-05 09:41:00,789 Hickory St, Los Angeles,CA,90001 +276589,Wired Headphones,1,11.99,2019-10-04 22:59:00,730 14th St, San Francisco,CA,94016 +276590,USB-C Charging Cable,1,11.95,2019-10-10 12:46:00,186 11th St, San Francisco,CA,94016 +276591,27in FHD Monitor,1,149.99,2019-10-18 10:05:00,378 Hickory St, Los Angeles,CA,90001 +276592,USB-C Charging Cable,1,11.95,2019-10-08 18:52:00,680 Wilson St, Los Angeles,CA,90001 +276593,Lightning Charging Cable,1,14.95,2019-10-16 12:24:00,120 South St, New York City,NY,10001 +276594,34in Ultrawide Monitor,1,379.99,2019-10-13 23:10:00,535 Washington St, New York City,NY,10001 +276595,Wired Headphones,1,11.99,2019-10-03 21:19:00,681 8th St, New York City,NY,10001 +276596,Apple Airpods Headphones,1,150.0,2019-10-14 14:00:00,127 6th St, New York City,NY,10001 +276597,ThinkPad Laptop,1,999.99,2019-10-14 19:36:00,226 Washington St, Austin,TX,73301 +276598,Macbook Pro Laptop,1,1700.0,2019-10-31 04:02:00,232 Sunset St, New York City,NY,10001 +276599,Lightning Charging Cable,1,14.95,2019-10-12 14:42:00,550 Willow St, Portland,OR,97035 +276600,Wired Headphones,1,11.99,2019-10-12 11:32:00,158 Highland St, Portland,ME,04101 +276601,AAA Batteries (4-pack),1,2.99,2019-10-11 14:19:00,482 5th St, Dallas,TX,75001 +276602,27in FHD Monitor,1,149.99,2019-10-17 13:22:00,357 Lakeview St, Boston,MA,02215 +276603,Apple Airpods Headphones,1,150.0,2019-10-23 07:29:00,389 Washington St, Seattle,WA,98101 +276604,Apple Airpods Headphones,1,150.0,2019-10-22 17:31:00,213 11th St, Boston,MA,02215 +276605,34in Ultrawide Monitor,1,379.99,2019-10-22 22:21:00,693 Adams St, Los Angeles,CA,90001 +276606,27in 4K Gaming Monitor,1,389.99,2019-10-22 11:50:00,253 Elm St, Boston,MA,02215 +276607,27in FHD Monitor,1,149.99,2019-10-22 08:32:00,821 South St, Atlanta,GA,30301 +276608,iPhone,1,700.0,2019-10-31 15:28:00,882 Cedar St, San Francisco,CA,94016 +276609,AAA Batteries (4-pack),1,2.99,2019-10-24 19:50:00,822 West St, Dallas,TX,75001 +276610,Lightning Charging Cable,1,14.95,2019-10-22 09:33:00,374 Pine St, New York City,NY,10001 +276611,27in FHD Monitor,1,149.99,2019-10-28 06:53:00,888 Maple St, New York City,NY,10001 +276612,27in 4K Gaming Monitor,1,389.99,2019-10-24 20:59:00,655 Church St, San Francisco,CA,94016 +276613,Google Phone,1,600.0,2019-10-17 09:27:00,681 12th St, Austin,TX,73301 +276614,Lightning Charging Cable,1,14.95,2019-10-15 09:20:00,153 Hickory St, San Francisco,CA,94016 +276615,Wired Headphones,1,11.99,2019-10-04 08:12:00,196 Pine St, Dallas,TX,75001 +276616,34in Ultrawide Monitor,1,379.99,2019-10-23 21:20:00,606 Dogwood St, San Francisco,CA,94016 +276617,Flatscreen TV,1,300.0,2019-10-10 21:10:00,193 1st St, Atlanta,GA,30301 +276618,AAA Batteries (4-pack),3,2.99,2019-10-31 10:40:00,604 10th St, San Francisco,CA,94016 +276619,34in Ultrawide Monitor,1,379.99,2019-10-12 21:21:00,780 12th St, San Francisco,CA,94016 +276620,Bose SoundSport Headphones,1,99.99,2019-10-26 17:26:00,674 Sunset St, San Francisco,CA,94016 +276621,Wired Headphones,1,11.99,2019-10-24 13:40:00,780 Center St, Austin,TX,73301 +276622,Wired Headphones,1,11.99,2019-10-09 17:35:00,959 River St, Dallas,TX,75001 +276622,20in Monitor,1,109.99,2019-10-09 17:35:00,959 River St, Dallas,TX,75001 +276623,34in Ultrawide Monitor,1,379.99,2019-10-26 19:15:00,2 Sunset St, Seattle,WA,98101 +276624,Apple Airpods Headphones,1,150.0,2019-10-03 11:56:00,225 Forest St, Dallas,TX,75001 +276625,ThinkPad Laptop,1,999.99,2019-10-28 23:24:00,260 4th St, Seattle,WA,98101 +276626,Google Phone,1,600.0,2019-10-03 08:18:00,177 Dogwood St, New York City,NY,10001 +276627,Macbook Pro Laptop,1,1700.0,2019-10-07 00:04:00,314 Meadow St, San Francisco,CA,94016 +276628,Lightning Charging Cable,1,14.95,2019-10-06 22:04:00,269 Washington St, Los Angeles,CA,90001 +276629,Lightning Charging Cable,1,14.95,2019-10-20 15:10:00,735 Dogwood St, San Francisco,CA,94016 +276630,Lightning Charging Cable,1,14.95,2019-10-18 11:45:00,9 Pine St, San Francisco,CA,94016 +276631,Google Phone,1,600.0,2019-10-02 13:18:00,173 Cherry St, Dallas,TX,75001 +276632,20in Monitor,1,109.99,2019-10-29 14:38:00,628 Sunset St, San Francisco,CA,94016 +276633,Wired Headphones,1,11.99,2019-10-02 03:19:00,670 Willow St, Dallas,TX,75001 +276634,Lightning Charging Cable,1,14.95,2019-10-22 13:56:00,623 Maple St, Boston,MA,02215 +276635,AA Batteries (4-pack),1,3.84,2019-10-29 22:33:00,742 Meadow St, Los Angeles,CA,90001 +276636,Macbook Pro Laptop,1,1700.0,2019-10-02 07:58:00,102 6th St, Austin,TX,73301 +276637,AA Batteries (4-pack),1,3.84,2019-10-02 09:47:00,374 Wilson St, Dallas,TX,75001 +276638,AAA Batteries (4-pack),1,2.99,2019-10-25 10:47:00,246 Lakeview St, San Francisco,CA,94016 +276639,AA Batteries (4-pack),1,3.84,2019-10-26 06:19:00,286 7th St, Los Angeles,CA,90001 +276640,Lightning Charging Cable,1,14.95,2019-10-09 23:31:00,149 Forest St, New York City,NY,10001 +276641,AAA Batteries (4-pack),1,2.99,2019-10-20 21:43:00,716 Lake St, New York City,NY,10001 +276642,Bose SoundSport Headphones,1,99.99,2019-10-04 11:59:00,69 Willow St, Atlanta,GA,30301 +276643,AAA Batteries (4-pack),2,2.99,2019-10-28 10:35:00,13 Lincoln St, Los Angeles,CA,90001 +276644,Apple Airpods Headphones,1,150.0,2019-10-18 13:36:00,680 Elm St, New York City,NY,10001 +276645,USB-C Charging Cable,1,11.95,2019-10-17 02:14:00,441 North St, San Francisco,CA,94016 +276646,Lightning Charging Cable,1,14.95,2019-10-26 14:00:00,596 North St, Portland,OR,97035 +276647,iPhone,1,700.0,2019-10-23 21:13:00,661 Pine St, San Francisco,CA,94016 +276648,USB-C Charging Cable,1,11.95,2019-10-30 22:05:00,168 6th St, New York City,NY,10001 +276649,Apple Airpods Headphones,1,150.0,2019-10-26 22:13:00,376 Main St, Los Angeles,CA,90001 +276650,Lightning Charging Cable,1,14.95,2019-10-18 04:52:00,85 Lake St, San Francisco,CA,94016 +276651,Lightning Charging Cable,1,14.95,2019-10-02 10:30:00,49 Walnut St, Los Angeles,CA,90001 +276652,AA Batteries (4-pack),3,3.84,2019-10-25 08:14:00,708 River St, Seattle,WA,98101 +276653,Lightning Charging Cable,1,14.95,2019-10-03 17:24:00,558 Hill St, Dallas,TX,75001 +276654,AA Batteries (4-pack),1,3.84,2019-10-19 22:36:00,121 Spruce St, Los Angeles,CA,90001 +276655,Lightning Charging Cable,1,14.95,2019-10-22 22:09:00,211 Main St, San Francisco,CA,94016 +276656,Lightning Charging Cable,1,14.95,2019-10-19 22:01:00,302 Jackson St, San Francisco,CA,94016 +276657,AAA Batteries (4-pack),1,2.99,2019-10-13 01:40:00,784 Chestnut St, Dallas,TX,75001 +276658,Lightning Charging Cable,2,14.95,2019-10-09 20:06:00,992 Willow St, Seattle,WA,98101 +276659,AA Batteries (4-pack),1,3.84,2019-10-02 16:07:00,686 Maple St, Dallas,TX,75001 +276660,Wired Headphones,1,11.99,2019-10-31 14:34:00,709 Cedar St, Austin,TX,73301 +276661,USB-C Charging Cable,1,11.95,2019-10-01 14:34:00,846 Spruce St, Los Angeles,CA,90001 +276662,Wired Headphones,1,11.99,2019-10-20 19:44:00,84 Pine St, Los Angeles,CA,90001 +276663,AA Batteries (4-pack),1,3.84,2019-10-11 12:00:00,734 Meadow St, San Francisco,CA,94016 +276664,AA Batteries (4-pack),1,3.84,2019-10-09 19:36:00,210 Walnut St, Seattle,WA,98101 +276665,AAA Batteries (4-pack),1,2.99,2019-10-21 15:50:00,742 Jackson St, Dallas,TX,75001 +276666,ThinkPad Laptop,1,999.99,2019-10-29 10:20:00,935 Highland St, Boston,MA,02215 +276667,AA Batteries (4-pack),2,3.84,2019-10-27 17:41:00,349 1st St, Austin,TX,73301 +276668,AAA Batteries (4-pack),3,2.99,2019-10-20 23:08:00,854 8th St, Austin,TX,73301 +276669,Wired Headphones,1,11.99,2019-10-16 13:47:00,51 Jefferson St, San Francisco,CA,94016 +276670,Macbook Pro Laptop,1,1700.0,2019-10-11 13:59:00,486 Hickory St, San Francisco,CA,94016 +276671,Google Phone,1,600.0,2019-10-05 18:41:00,757 Park St, Dallas,TX,75001 +276672,Bose SoundSport Headphones,1,99.99,2019-10-26 23:14:00,33 Cherry St, Los Angeles,CA,90001 +276673,AA Batteries (4-pack),1,3.84,2019-10-28 09:22:00,904 Adams St, New York City,NY,10001 +276674,27in 4K Gaming Monitor,1,389.99,2019-10-26 11:23:00,170 2nd St, New York City,NY,10001 +276675,AAA Batteries (4-pack),1,2.99,2019-10-29 14:57:00,16 4th St, Los Angeles,CA,90001 +276676,AA Batteries (4-pack),1,3.84,2019-10-11 22:23:00,884 Chestnut St, New York City,NY,10001 +276677,USB-C Charging Cable,1,11.95,2019-10-21 14:52:00,596 7th St, Los Angeles,CA,90001 +276678,27in FHD Monitor,1,149.99,2019-10-25 22:22:00,179 Cherry St, New York City,NY,10001 +276679,Apple Airpods Headphones,1,150.0,2019-10-17 14:39:00,339 4th St, Los Angeles,CA,90001 +276680,Google Phone,1,600.0,2019-10-05 15:22:00,621 West St, Los Angeles,CA,90001 +276681,Lightning Charging Cable,1,14.95,2019-10-22 18:34:00,301 Hickory St, San Francisco,CA,94016 +276682,ThinkPad Laptop,1,999.99,2019-10-09 18:28:00,296 Elm St, Portland,OR,97035 +276683,27in 4K Gaming Monitor,1,389.99,2019-10-16 18:14:00,530 West St, Boston,MA,02215 +276684,Macbook Pro Laptop,1,1700.0,2019-10-28 22:34:00,811 5th St, San Francisco,CA,94016 +276685,AA Batteries (4-pack),1,3.84,2019-10-22 15:38:00,371 Hill St, New York City,NY,10001 +276686,AA Batteries (4-pack),1,3.84,2019-10-02 12:47:00,314 Willow St, Portland,OR,97035 +276687,AAA Batteries (4-pack),1,2.99,2019-10-27 04:56:00,738 Lake St, San Francisco,CA,94016 +276688,20in Monitor,1,109.99,2019-10-02 18:12:00,623 7th St, New York City,NY,10001 +276689,Lightning Charging Cable,1,14.95,2019-10-21 18:04:00,124 12th St, Boston,MA,02215 +276690,Bose SoundSport Headphones,1,99.99,2019-10-25 06:03:00,701 Pine St, Dallas,TX,75001 +276691,Wired Headphones,1,11.99,2019-10-08 21:08:00,203 Walnut St, Los Angeles,CA,90001 +276692,20in Monitor,1,109.99,2019-10-23 10:52:00,939 River St, Atlanta,GA,30301 +276693,USB-C Charging Cable,1,11.95,2019-10-09 16:55:00,6 Meadow St, Dallas,TX,75001 +276694,AAA Batteries (4-pack),2,2.99,2019-10-08 13:14:00,972 4th St, New York City,NY,10001 +276695,Lightning Charging Cable,1,14.95,2019-10-30 10:50:00,43 Madison St, Los Angeles,CA,90001 +276696,Bose SoundSport Headphones,1,99.99,2019-10-29 15:51:00,475 Wilson St, San Francisco,CA,94016 +276697,Wired Headphones,1,11.99,2019-10-20 09:27:00,641 River St, Austin,TX,73301 +276698,Lightning Charging Cable,1,14.95,2019-10-02 00:16:00,90 Chestnut St, New York City,NY,10001 +276699,USB-C Charging Cable,1,11.95,2019-10-02 21:50:00,39 Pine St, Dallas,TX,75001 +276700,34in Ultrawide Monitor,1,379.99,2019-10-16 23:19:00,375 Spruce St, San Francisco,CA,94016 +276701,Macbook Pro Laptop,1,1700.0,2019-10-14 09:43:00,358 7th St, Seattle,WA,98101 +276702,Flatscreen TV,1,300.0,2019-10-07 22:19:00,935 Church St, Los Angeles,CA,90001 +276703,AA Batteries (4-pack),1,3.84,2019-10-08 17:33:00,875 Jackson St, Dallas,TX,75001 +276704,AAA Batteries (4-pack),5,2.99,2019-10-12 10:33:00,238 West St, Dallas,TX,75001 +276705,Lightning Charging Cable,1,14.95,2019-10-27 10:58:00,359 Chestnut St, Austin,TX,73301 +276706,Vareebadd Phone,1,400.0,2019-10-28 20:11:00,541 Lakeview St, Dallas,TX,75001 +276707,Lightning Charging Cable,1,14.95,2019-10-24 19:44:00,335 West St, Los Angeles,CA,90001 +276708,Google Phone,1,600.0,2019-10-22 13:24:00,274 West St, San Francisco,CA,94016 +276708,Bose SoundSport Headphones,1,99.99,2019-10-22 13:24:00,274 West St, San Francisco,CA,94016 +276708,Wired Headphones,2,11.99,2019-10-22 13:24:00,274 West St, San Francisco,CA,94016 +276709,USB-C Charging Cable,1,11.95,2019-10-09 18:09:00,81 Lincoln St, Los Angeles,CA,90001 +276710,Bose SoundSport Headphones,1,99.99,2019-10-31 18:58:00,315 Forest St, San Francisco,CA,94016 +276711,AA Batteries (4-pack),2,3.84,2019-10-17 02:44:00,988 Meadow St, New York City,NY,10001 +276712,27in FHD Monitor,1,149.99,2019-10-24 18:47:00,119 Walnut St, Los Angeles,CA,90001 +276713,27in 4K Gaming Monitor,1,389.99,2019-10-24 18:59:00,553 Highland St, San Francisco,CA,94016 +276714,27in 4K Gaming Monitor,1,389.99,2019-10-01 12:31:00,635 Lincoln St, Boston,MA,02215 +276715,USB-C Charging Cable,2,11.95,2019-10-18 19:48:00,945 Jackson St, New York City,NY,10001 +276716,AA Batteries (4-pack),1,3.84,2019-10-01 18:59:00,52 Walnut St, Los Angeles,CA,90001 +276717,Wired Headphones,1,11.99,2019-10-05 09:58:00,322 Jefferson St, San Francisco,CA,94016 +276718,34in Ultrawide Monitor,1,379.99,2019-10-13 18:00:00,248 Ridge St, Atlanta,GA,30301 +276719,Lightning Charging Cable,1,14.95,2019-10-21 07:19:00,394 10th St, New York City,NY,10001 +276720,Apple Airpods Headphones,1,150.0,2019-10-15 18:24:00,890 6th St, Boston,MA,02215 +276721,AA Batteries (4-pack),1,3.84,2019-10-15 20:52:00,302 10th St, Portland,OR,97035 +276722,AAA Batteries (4-pack),1,2.99,2019-10-08 10:44:00,303 Lakeview St, New York City,NY,10001 +276723,27in FHD Monitor,1,149.99,2019-10-13 03:23:00,377 Adams St, San Francisco,CA,94016 +276724,Bose SoundSport Headphones,2,99.99,2019-10-12 11:29:00,333 Ridge St, Los Angeles,CA,90001 +276725,AAA Batteries (4-pack),1,2.99,2019-10-12 15:25:00,992 Lake St, San Francisco,CA,94016 +276726,Wired Headphones,1,11.99,2019-10-15 10:16:00,702 Chestnut St, Los Angeles,CA,90001 +276727,Wired Headphones,1,11.99,2019-10-09 16:09:00,866 Park St, San Francisco,CA,94016 +276728,USB-C Charging Cable,1,11.95,2019-10-07 16:20:00,832 Washington St, Dallas,TX,75001 +276729,Lightning Charging Cable,1,14.95,2019-10-13 07:59:00,420 2nd St, Los Angeles,CA,90001 +276730,Google Phone,1,600.0,2019-10-24 00:15:00,899 12th St, Seattle,WA,98101 +276731,Apple Airpods Headphones,1,150.0,2019-10-07 12:28:00,191 Sunset St, Dallas,TX,75001 +276732,27in 4K Gaming Monitor,1,389.99,2019-10-29 13:33:00,197 Dogwood St, Los Angeles,CA,90001 +276733,USB-C Charging Cable,1,11.95,2019-10-03 02:05:00,507 Wilson St, New York City,NY,10001 +276734,AA Batteries (4-pack),1,3.84,2019-10-15 20:54:00,411 7th St, San Francisco,CA,94016 +276735,Vareebadd Phone,1,400.0,2019-10-08 23:51:00,297 South St, San Francisco,CA,94016 +276736,Lightning Charging Cable,1,14.95,2019-10-18 15:02:00,198 Johnson St, Atlanta,GA,30301 +276737,iPhone,1,700.0,2019-10-19 23:43:00,589 Spruce St, Atlanta,GA,30301 +276738,AA Batteries (4-pack),1,3.84,2019-10-31 21:31:00,718 6th St, Portland,ME,04101 +276739,Wired Headphones,1,11.99,2019-10-01 18:56:00,373 4th St, Portland,OR,97035 +276740,iPhone,1,700.0,2019-10-28 17:12:00,692 Lincoln St, New York City,NY,10001 +276741,27in 4K Gaming Monitor,1,389.99,2019-10-13 17:02:00,41 Cedar St, Los Angeles,CA,90001 +276742,Bose SoundSport Headphones,1,99.99,2019-10-13 20:02:00,866 2nd St, Boston,MA,02215 +276743,Lightning Charging Cable,1,14.95,2019-10-24 15:52:00,20 Jefferson St, San Francisco,CA,94016 +276744,Wired Headphones,1,11.99,2019-10-23 12:05:00,605 Willow St, San Francisco,CA,94016 +276745,Bose SoundSport Headphones,1,99.99,2019-10-20 15:39:00,810 Cherry St, San Francisco,CA,94016 +276746,AAA Batteries (4-pack),1,2.99,2019-10-17 20:13:00,226 Ridge St, Atlanta,GA,30301 +276747,Lightning Charging Cable,1,14.95,2019-10-02 20:33:00,783 River St, Los Angeles,CA,90001 +276748,Wired Headphones,1,11.99,2019-10-15 19:14:00,411 8th St, Dallas,TX,75001 +276749,Wired Headphones,1,11.99,2019-10-26 04:48:00,20 Park St, San Francisco,CA,94016 +276750,Lightning Charging Cable,1,14.95,2019-10-22 06:58:00,186 Highland St, Dallas,TX,75001 +276751,Lightning Charging Cable,1,14.95,2019-10-26 17:51:00,83 4th St, Seattle,WA,98101 +276752,AAA Batteries (4-pack),6,2.99,2019-10-16 16:39:00,45 13th St, Boston,MA,02215 +276753,Wired Headphones,1,11.99,2019-10-13 13:25:00,506 Spruce St, San Francisco,CA,94016 +276754,AAA Batteries (4-pack),1,2.99,2019-10-22 20:52:00,220 Hickory St, Los Angeles,CA,90001 +276755,AAA Batteries (4-pack),2,2.99,2019-10-24 23:26:00,937 Meadow St, San Francisco,CA,94016 +276756,Bose SoundSport Headphones,1,99.99,2019-10-22 21:09:00,780 Forest St, Boston,MA,02215 +276757,Google Phone,1,600.0,2019-10-22 13:28:00,963 Lincoln St, Boston,MA,02215 +276758,Bose SoundSport Headphones,1,99.99,2019-10-05 12:12:00,220 Center St, San Francisco,CA,94016 +276759,27in FHD Monitor,1,149.99,2019-10-28 16:01:00,503 River St, New York City,NY,10001 +276760,Lightning Charging Cable,1,14.95,2019-10-14 21:59:00,858 Dogwood St, Boston,MA,02215 +276761,AA Batteries (4-pack),1,3.84,2019-10-02 11:44:00,655 River St, Atlanta,GA,30301 +276762,Google Phone,1,600.0,2019-10-02 13:30:00,509 Ridge St, Dallas,TX,75001 +276763,Apple Airpods Headphones,1,150.0,2019-10-09 20:15:00,891 Park St, Seattle,WA,98101 +276764,Wired Headphones,1,11.99,2019-10-29 15:00:00,806 River St, Boston,MA,02215 +276765,USB-C Charging Cable,1,11.95,2019-10-31 15:26:00,833 Lincoln St, Boston,MA,02215 +276766,Wired Headphones,1,11.99,2019-10-12 04:54:00,8 Johnson St, Austin,TX,73301 +276767,Wired Headphones,1,11.99,2019-10-02 07:15:00,600 7th St, Seattle,WA,98101 +276768,AA Batteries (4-pack),1,3.84,2019-10-03 21:28:00,612 Chestnut St, San Francisco,CA,94016 +276769,27in 4K Gaming Monitor,1,389.99,2019-10-07 19:47:00,4 13th St, Seattle,WA,98101 +276770,Lightning Charging Cable,1,14.95,2019-10-14 19:18:00,303 8th St, Boston,MA,02215 +276771,AAA Batteries (4-pack),1,2.99,2019-10-08 23:22:00,662 12th St, Austin,TX,73301 +276772,Apple Airpods Headphones,1,150.0,2019-10-04 00:03:00,394 Jefferson St, Dallas,TX,75001 +276773,Flatscreen TV,1,300.0,2019-10-19 21:18:00,107 Madison St, San Francisco,CA,94016 +276774,Lightning Charging Cable,1,14.95,2019-10-17 16:41:00,482 Willow St, Los Angeles,CA,90001 +276775,20in Monitor,1,109.99,2019-10-20 09:07:00,972 Elm St, San Francisco,CA,94016 +276776,AAA Batteries (4-pack),2,2.99,2019-10-17 06:09:00,965 Wilson St, Seattle,WA,98101 +276777,Lightning Charging Cable,1,14.95,2019-10-14 09:43:00,929 Highland St, Seattle,WA,98101 +276778,Wired Headphones,1,11.99,2019-10-03 19:15:00,445 7th St, New York City,NY,10001 +276779,Wired Headphones,2,11.99,2019-10-07 15:32:00,744 Highland St, Los Angeles,CA,90001 +276780,Wired Headphones,1,11.99,2019-10-06 18:41:00,881 6th St, New York City,NY,10001 +276781,AA Batteries (4-pack),1,3.84,2019-10-27 16:58:00,703 Adams St, San Francisco,CA,94016 +276782,AAA Batteries (4-pack),1,2.99,2019-10-19 05:16:00,400 8th St, Los Angeles,CA,90001 +276783,Bose SoundSport Headphones,1,99.99,2019-10-07 15:15:00,882 Maple St, San Francisco,CA,94016 +276784,Lightning Charging Cable,2,14.95,2019-10-07 12:47:00,384 Spruce St, San Francisco,CA,94016 +276785,AAA Batteries (4-pack),1,2.99,2019-10-10 12:01:00,343 Hickory St, Los Angeles,CA,90001 +276786,27in 4K Gaming Monitor,1,389.99,2019-10-30 18:02:00,838 4th St, Boston,MA,02215 +276787,Bose SoundSport Headphones,1,99.99,2019-10-20 08:44:00,790 Dogwood St, Portland,OR,97035 +276788,Wired Headphones,1,11.99,2019-10-12 20:24:00,378 North St, San Francisco,CA,94016 +276788,AAA Batteries (4-pack),1,2.99,2019-10-12 20:24:00,378 North St, San Francisco,CA,94016 +276789,AA Batteries (4-pack),1,3.84,2019-10-13 10:06:00,307 13th St, New York City,NY,10001 +276790,AAA Batteries (4-pack),1,2.99,2019-10-25 20:01:00,100 Johnson St, San Francisco,CA,94016 +276791,Lightning Charging Cable,1,14.95,2019-10-03 07:01:00,823 Sunset St, Boston,MA,02215 +276792,Wired Headphones,1,11.99,2019-10-04 22:32:00,472 13th St, Portland,OR,97035 +276793,Flatscreen TV,1,300.0,2019-10-13 12:34:00,358 7th St, Los Angeles,CA,90001 +276794,20in Monitor,1,109.99,2019-10-12 20:31:00,926 7th St, Atlanta,GA,30301 +276795,Lightning Charging Cable,1,14.95,2019-10-06 06:19:00,303 Willow St, Dallas,TX,75001 +276796,27in FHD Monitor,1,149.99,2019-10-12 06:54:00,668 Walnut St, Seattle,WA,98101 +276797,AAA Batteries (4-pack),1,2.99,2019-10-27 11:32:00,322 Maple St, Austin,TX,73301 +276798,Flatscreen TV,1,300.0,2019-10-11 13:03:00,220 Johnson St, New York City,NY,10001 +276799,Apple Airpods Headphones,1,150.0,2019-10-19 17:41:00,610 Elm St, Dallas,TX,75001 +276800,Bose SoundSport Headphones,2,99.99,2019-10-04 03:46:00,734 9th St, San Francisco,CA,94016 +276801,ThinkPad Laptop,1,999.99,2019-10-20 21:43:00,489 Ridge St, Seattle,WA,98101 +276802,AA Batteries (4-pack),2,3.84,2019-10-19 23:16:00,825 North St, San Francisco,CA,94016 +276803,Wired Headphones,1,11.99,2019-10-18 13:42:00,846 Main St, New York City,NY,10001 +276804,27in 4K Gaming Monitor,1,389.99,2019-10-18 10:36:00,500 South St, Boston,MA,02215 +276805,Flatscreen TV,1,300.0,2019-10-13 10:47:00,363 5th St, San Francisco,CA,94016 +276806,Bose SoundSport Headphones,2,99.99,2019-10-02 16:56:00,627 Main St, Portland,OR,97035 +276807,AAA Batteries (4-pack),1,2.99,2019-10-25 13:55:00,256 Spruce St, San Francisco,CA,94016 +276808,AAA Batteries (4-pack),2,2.99,2019-10-05 12:51:00,454 Lake St, Boston,MA,02215 +276809,27in FHD Monitor,1,149.99,2019-10-23 07:36:00,961 Forest St, San Francisco,CA,94016 +276810,USB-C Charging Cable,1,11.95,2019-10-30 16:15:00,432 Walnut St, Seattle,WA,98101 +276811,Macbook Pro Laptop,1,1700.0,2019-10-10 16:49:00,110 North St, Los Angeles,CA,90001 +276812,USB-C Charging Cable,1,11.95,2019-10-29 14:31:00,627 Walnut St, Atlanta,GA,30301 +276813,27in FHD Monitor,1,149.99,2019-10-06 01:03:00,107 Wilson St, San Francisco,CA,94016 +276814,AAA Batteries (4-pack),2,2.99,2019-10-10 19:02:00,677 Cherry St, Boston,MA,02215 +276815,AAA Batteries (4-pack),1,2.99,2019-10-07 17:15:00,67 Willow St, Atlanta,GA,30301 +276816,27in FHD Monitor,1,149.99,2019-10-25 18:23:00,841 South St, San Francisco,CA,94016 +276817,USB-C Charging Cable,1,11.95,2019-10-18 11:58:00,529 Willow St, New York City,NY,10001 +276818,34in Ultrawide Monitor,1,379.99,2019-10-14 15:40:00,388 South St, Los Angeles,CA,90001 +276819,AAA Batteries (4-pack),1,2.99,2019-10-07 19:16:00,5 Center St, Los Angeles,CA,90001 +276820,Wired Headphones,1,11.99,2019-10-25 12:43:00,445 13th St, Los Angeles,CA,90001 +276821,Wired Headphones,1,11.99,2019-10-31 21:34:00,540 11th St, Los Angeles,CA,90001 +276822,iPhone,1,700.0,2019-10-13 21:14:00,532 South St, San Francisco,CA,94016 +276823,Wired Headphones,1,11.99,2019-10-08 12:29:00,481 Main St, San Francisco,CA,94016 +276824,USB-C Charging Cable,1,11.95,2019-10-03 15:22:00,273 12th St, New York City,NY,10001 +276825,Apple Airpods Headphones,1,150.0,2019-10-27 18:59:00,762 Washington St, New York City,NY,10001 +276826,20in Monitor,1,109.99,2019-10-07 14:32:00,945 Cherry St, San Francisco,CA,94016 +276827,34in Ultrawide Monitor,1,379.99,2019-10-22 12:06:00,186 Spruce St, Portland,OR,97035 +276828,AA Batteries (4-pack),3,3.84,2019-10-04 16:07:00,214 Cherry St, Los Angeles,CA,90001 +276829,AAA Batteries (4-pack),1,2.99,2019-10-03 04:42:00,386 Maple St, San Francisco,CA,94016 +276830,Lightning Charging Cable,1,14.95,2019-10-04 11:16:00,715 1st St, Boston,MA,02215 +276831,Apple Airpods Headphones,1,150.0,2019-10-23 04:49:00,204 Meadow St, San Francisco,CA,94016 +276832,AA Batteries (4-pack),1,3.84,2019-10-26 17:46:00,675 North St, Seattle,WA,98101 +276833,Lightning Charging Cable,1,14.95,2019-10-21 17:39:00,104 2nd St, New York City,NY,10001 +276834,USB-C Charging Cable,1,11.95,2019-10-08 14:37:00,569 Johnson St, Portland,OR,97035 +276835,AAA Batteries (4-pack),3,2.99,2019-10-07 20:52:00,661 14th St, Portland,ME,04101 +276836,AAA Batteries (4-pack),1,2.99,2019-10-05 05:00:00,630 Ridge St, Boston,MA,02215 +276837,AAA Batteries (4-pack),1,2.99,2019-10-14 12:47:00,669 West St, Atlanta,GA,30301 +276838,Flatscreen TV,1,300.0,2019-10-22 00:44:00,233 Jefferson St, San Francisco,CA,94016 +276839,Apple Airpods Headphones,1,150.0,2019-10-16 21:16:00,374 Center St, Los Angeles,CA,90001 +276839,Wired Headphones,1,11.99,2019-10-16 21:16:00,374 Center St, Los Angeles,CA,90001 +276840,USB-C Charging Cable,1,11.95,2019-10-31 09:03:00,691 Jackson St, New York City,NY,10001 +276841,USB-C Charging Cable,1,11.95,2019-10-23 21:18:00,2 7th St, Dallas,TX,75001 +276842,27in FHD Monitor,1,149.99,2019-10-25 11:11:00,316 7th St, Seattle,WA,98101 +276843,Google Phone,1,600.0,2019-10-06 22:58:00,557 Lakeview St, Boston,MA,02215 +276844,Flatscreen TV,1,300.0,2019-10-26 22:51:00,44 Cedar St, San Francisco,CA,94016 +276845,AA Batteries (4-pack),1,3.84,2019-10-12 16:41:00,839 4th St, Dallas,TX,75001 +276846,AAA Batteries (4-pack),1,2.99,2019-10-11 11:07:00,819 Park St, Atlanta,GA,30301 +276847,AAA Batteries (4-pack),4,2.99,2019-10-01 05:03:00,907 Meadow St, Portland,OR,97035 +276847,Wired Headphones,2,11.99,2019-10-01 05:03:00,907 Meadow St, Portland,OR,97035 +276848,iPhone,1,700.0,2019-10-13 20:09:00,319 12th St, New York City,NY,10001 +276848,Lightning Charging Cable,1,14.95,2019-10-13 20:09:00,319 12th St, New York City,NY,10001 +276849,27in FHD Monitor,1,149.99,2019-10-09 17:07:00,843 Ridge St, San Francisco,CA,94016 +276850,AAA Batteries (4-pack),3,2.99,2019-10-22 09:45:00,758 7th St, San Francisco,CA,94016 +276851,20in Monitor,1,109.99,2019-10-26 13:22:00,33 River St, San Francisco,CA,94016 +276852,Apple Airpods Headphones,1,150.0,2019-10-24 11:25:00,249 Lincoln St, Austin,TX,73301 +276853,Flatscreen TV,1,300.0,2019-10-05 17:39:00,571 14th St, Seattle,WA,98101 +276854,USB-C Charging Cable,1,11.95,2019-10-17 23:38:00,553 Wilson St, San Francisco,CA,94016 +276855,Bose SoundSport Headphones,1,99.99,2019-10-17 21:47:00,275 Forest St, San Francisco,CA,94016 +276856,Lightning Charging Cable,1,14.95,2019-10-17 09:37:00,724 Ridge St, Boston,MA,02215 +276857,Lightning Charging Cable,1,14.95,2019-10-03 20:04:00,385 5th St, Dallas,TX,75001 +276858,USB-C Charging Cable,1,11.95,2019-10-23 16:31:00,784 Washington St, New York City,NY,10001 +276859,Lightning Charging Cable,1,14.95,2019-10-20 07:21:00,831 2nd St, Boston,MA,02215 +276860,USB-C Charging Cable,1,11.95,2019-10-30 22:49:00,224 Washington St, Dallas,TX,75001 +276861,Lightning Charging Cable,1,14.95,2019-10-23 18:16:00,79 Adams St, New York City,NY,10001 +276862,iPhone,1,700.0,2019-10-03 19:21:00,870 South St, Atlanta,GA,30301 +276863,Wired Headphones,1,11.99,2019-10-28 23:29:00,134 Wilson St, Los Angeles,CA,90001 +276864,Bose SoundSport Headphones,1,99.99,2019-10-10 08:44:00,363 West St, Los Angeles,CA,90001 +276865,Wired Headphones,1,11.99,2019-10-23 20:51:00,775 Adams St, Dallas,TX,75001 +276866,Lightning Charging Cable,1,14.95,2019-10-14 13:30:00,475 13th St, San Francisco,CA,94016 +276867,27in FHD Monitor,1,149.99,2019-10-29 16:13:00,161 Elm St, San Francisco,CA,94016 +276868,Wired Headphones,1,11.99,2019-10-09 17:23:00,681 Pine St, Atlanta,GA,30301 +276869,Wired Headphones,1,11.99,2019-10-02 16:22:00,664 Dogwood St, Portland,OR,97035 +276870,Wired Headphones,1,11.99,2019-10-12 13:51:00,864 12th St, Seattle,WA,98101 +276871,AA Batteries (4-pack),1,3.84,2019-10-19 13:53:00,114 Hill St, Los Angeles,CA,90001 +276872,AA Batteries (4-pack),2,3.84,2019-10-04 20:21:00,660 8th St, Boston,MA,02215 +276873,Bose SoundSport Headphones,1,99.99,2019-10-26 19:29:00,963 Adams St, Austin,TX,73301 +276874,AA Batteries (4-pack),1,3.84,2019-10-05 17:44:00,938 1st St, Boston,MA,02215 +276875,AAA Batteries (4-pack),3,2.99,2019-10-16 18:30:00,726 Willow St, San Francisco,CA,94016 +276876,Wired Headphones,1,11.99,2019-10-27 23:42:00,283 Meadow St, San Francisco,CA,94016 +276877,AAA Batteries (4-pack),1,2.99,2019-10-06 06:52:00,150 Walnut St, Los Angeles,CA,90001 +276878,Flatscreen TV,1,300.0,2019-10-04 12:02:00,519 Cherry St, San Francisco,CA,94016 +276879,27in FHD Monitor,1,149.99,2019-10-13 16:42:00,176 West St, Boston,MA,02215 +276879,Apple Airpods Headphones,1,150.0,2019-10-13 16:42:00,176 West St, Boston,MA,02215 +276880,AAA Batteries (4-pack),1,2.99,2019-10-23 19:43:00,700 River St, Boston,MA,02215 +276881,Apple Airpods Headphones,1,150.0,2019-10-24 09:51:00,374 River St, Los Angeles,CA,90001 +276882,USB-C Charging Cable,1,11.95,2019-10-07 21:54:00,953 Sunset St, San Francisco,CA,94016 +276883,AA Batteries (4-pack),1,3.84,2019-10-19 22:47:00,940 South St, San Francisco,CA,94016 +276884,Flatscreen TV,1,300.0,2019-10-10 20:44:00,677 Walnut St, Los Angeles,CA,90001 +276885,AA Batteries (4-pack),1,3.84,2019-10-27 16:23:00,453 2nd St, New York City,NY,10001 +276886,USB-C Charging Cable,1,11.95,2019-10-08 17:27:00,623 4th St, Dallas,TX,75001 +276887,iPhone,1,700.0,2019-10-27 05:35:00,571 Sunset St, San Francisco,CA,94016 +276887,Lightning Charging Cable,1,14.95,2019-10-27 05:35:00,571 Sunset St, San Francisco,CA,94016 +276887,Wired Headphones,1,11.99,2019-10-27 05:35:00,571 Sunset St, San Francisco,CA,94016 +276888,Bose SoundSport Headphones,1,99.99,2019-10-10 21:48:00,928 Meadow St, Boston,MA,02215 +276889,AA Batteries (4-pack),1,3.84,2019-10-06 13:32:00,62 12th St, San Francisco,CA,94016 +276890,27in FHD Monitor,1,149.99,2019-10-27 13:44:00,871 Adams St, New York City,NY,10001 +276891,20in Monitor,1,109.99,2019-10-20 19:58:00,471 6th St, Los Angeles,CA,90001 +276892,AAA Batteries (4-pack),1,2.99,2019-10-26 13:30:00,86 Johnson St, Los Angeles,CA,90001 +276893,AAA Batteries (4-pack),1,2.99,2019-10-01 15:52:00,269 Wilson St, New York City,NY,10001 +276893,27in FHD Monitor,1,149.99,2019-10-01 15:52:00,269 Wilson St, New York City,NY,10001 +276894,27in 4K Gaming Monitor,1,389.99,2019-10-15 07:49:00,338 Willow St, Atlanta,GA,30301 +276895,AAA Batteries (4-pack),3,2.99,2019-10-16 15:23:00,463 12th St, Austin,TX,73301 +276896,USB-C Charging Cable,1,11.95,2019-10-30 17:39:00,898 Forest St, San Francisco,CA,94016 +276897,AAA Batteries (4-pack),4,2.99,2019-10-29 21:50:00,814 Willow St, San Francisco,CA,94016 +276898,Wired Headphones,1,11.99,2019-10-04 14:31:00,824 Cherry St, Portland,ME,04101 +276899,27in FHD Monitor,1,149.99,2019-10-11 06:16:00,666 6th St, Dallas,TX,75001 +276900,34in Ultrawide Monitor,1,379.99,2019-10-30 00:42:00,407 South St, Atlanta,GA,30301 +276901,AAA Batteries (4-pack),1,2.99,2019-10-30 12:27:00,69 10th St, Portland,OR,97035 +276902,Wired Headphones,1,11.99,2019-10-05 16:38:00,99 Forest St, San Francisco,CA,94016 +276903,Vareebadd Phone,1,400.0,2019-10-06 21:45:00,274 10th St, Boston,MA,02215 +276904,27in FHD Monitor,1,149.99,2019-10-13 20:47:00,606 8th St, Seattle,WA,98101 +276905,Bose SoundSport Headphones,1,99.99,2019-10-28 19:34:00,875 2nd St, Los Angeles,CA,90001 +276906,20in Monitor,1,109.99,2019-10-07 09:50:00,207 Main St, Portland,ME,04101 +276907,Apple Airpods Headphones,1,150.0,2019-10-05 06:37:00,662 Chestnut St, Boston,MA,02215 +276908,Lightning Charging Cable,1,14.95,2019-10-25 18:59:00,636 7th St, Los Angeles,CA,90001 +276909,27in 4K Gaming Monitor,1,389.99,2019-10-22 18:26:00,234 Cherry St, Los Angeles,CA,90001 +276910,Wired Headphones,2,11.99,2019-10-20 14:47:00,547 6th St, New York City,NY,10001 +276911,AA Batteries (4-pack),3,3.84,2019-10-08 17:42:00,971 Main St, Los Angeles,CA,90001 +276912,USB-C Charging Cable,1,11.95,2019-10-16 14:06:00,510 Madison St, New York City,NY,10001 +276913,USB-C Charging Cable,1,11.95,2019-10-30 12:02:00,859 Adams St, San Francisco,CA,94016 +276914,Vareebadd Phone,1,400.0,2019-10-16 09:07:00,766 Hill St, Los Angeles,CA,90001 +276915,Lightning Charging Cable,1,14.95,2019-10-16 16:10:00,583 Johnson St, Los Angeles,CA,90001 +276916,Apple Airpods Headphones,1,150.0,2019-10-26 10:29:00,747 Pine St, Austin,TX,73301 +276917,Bose SoundSport Headphones,1,99.99,2019-10-16 13:07:00,58 Jackson St, Atlanta,GA,30301 +276918,Wired Headphones,1,11.99,2019-10-27 18:02:00,405 9th St, San Francisco,CA,94016 +276918,Vareebadd Phone,1,400.0,2019-10-27 18:02:00,405 9th St, San Francisco,CA,94016 +276919,USB-C Charging Cable,1,11.95,2019-10-23 17:04:00,451 Lakeview St, Portland,OR,97035 +276920,Apple Airpods Headphones,1,150.0,2019-10-05 17:28:00,873 Chestnut St, San Francisco,CA,94016 +276921,iPhone,1,700.0,2019-10-11 21:48:00,225 River St, Dallas,TX,75001 +276922,AAA Batteries (4-pack),2,2.99,2019-10-07 21:30:00,648 6th St, San Francisco,CA,94016 +276923,Apple Airpods Headphones,1,150.0,2019-10-22 20:01:00,51 Washington St, Los Angeles,CA,90001 +276924,Wired Headphones,1,11.99,2019-10-21 17:58:00,21 Maple St, San Francisco,CA,94016 +276925,iPhone,1,700.0,2019-10-03 15:56:00,357 Sunset St, San Francisco,CA,94016 +276925,Apple Airpods Headphones,1,150.0,2019-10-03 15:56:00,357 Sunset St, San Francisco,CA,94016 +276925,Wired Headphones,1,11.99,2019-10-03 15:56:00,357 Sunset St, San Francisco,CA,94016 +276926,Lightning Charging Cable,1,14.95,2019-10-13 09:57:00,97 Hill St, Dallas,TX,75001 +276927,Wired Headphones,1,11.99,2019-10-28 19:08:00,906 Jefferson St, Seattle,WA,98101 +276928,AAA Batteries (4-pack),1,2.99,2019-10-26 10:43:00,908 Sunset St, Portland,OR,97035 +276929,Wired Headphones,1,11.99,2019-10-19 19:26:00,294 Maple St, Los Angeles,CA,90001 +276930,USB-C Charging Cable,1,11.95,2019-10-27 12:37:00,214 Wilson St, Boston,MA,02215 +276931,USB-C Charging Cable,1,11.95,2019-10-05 21:42:00,403 Johnson St, San Francisco,CA,94016 +276932,AA Batteries (4-pack),2,3.84,2019-10-17 19:15:00,560 Johnson St, Atlanta,GA,30301 +276933,Wired Headphones,1,11.99,2019-10-03 18:28:00,279 South St, Austin,TX,73301 +276934,27in FHD Monitor,1,149.99,2019-10-26 18:51:00,572 North St, Los Angeles,CA,90001 +276935,USB-C Charging Cable,1,11.95,2019-10-12 14:09:00,392 Sunset St, San Francisco,CA,94016 +276936,AA Batteries (4-pack),1,3.84,2019-10-22 20:14:00,855 13th St, New York City,NY,10001 +276937,USB-C Charging Cable,1,11.95,2019-10-20 21:43:00,579 Adams St, Seattle,WA,98101 +276938,Apple Airpods Headphones,1,150.0,2019-10-26 14:08:00,365 Sunset St, Austin,TX,73301 +276939,27in FHD Monitor,1,149.99,2019-10-14 23:18:00,885 6th St, New York City,NY,10001 +276940,Lightning Charging Cable,1,14.95,2019-10-23 16:16:00,322 North St, Los Angeles,CA,90001 +276941,Bose SoundSport Headphones,1,99.99,2019-10-05 17:12:00,537 Jackson St, Atlanta,GA,30301 +276941,Lightning Charging Cable,1,14.95,2019-10-05 17:12:00,537 Jackson St, Atlanta,GA,30301 +276942,34in Ultrawide Monitor,1,379.99,2019-10-27 19:33:00,537 Center St, Atlanta,GA,30301 +276943,AAA Batteries (4-pack),1,2.99,2019-10-06 22:34:00,320 Jefferson St, Dallas,TX,75001 +276944,Bose SoundSport Headphones,1,99.99,2019-10-19 13:11:00,169 Spruce St, Los Angeles,CA,90001 +276945,Wired Headphones,1,11.99,2019-10-25 21:35:00,335 Cedar St, Boston,MA,02215 +276946,AA Batteries (4-pack),1,3.84,2019-10-25 11:27:00,501 Hill St, Portland,OR,97035 +276947,USB-C Charging Cable,1,11.95,2019-10-18 21:16:00,958 Spruce St, New York City,NY,10001 +276948,20in Monitor,1,109.99,2019-10-19 15:19:00,597 9th St, San Francisco,CA,94016 +276949,Lightning Charging Cable,1,14.95,2019-10-14 15:05:00,530 Pine St, Boston,MA,02215 +276950,USB-C Charging Cable,1,11.95,2019-10-30 20:19:00,123 Park St, Seattle,WA,98101 +276951,iPhone,1,700.0,2019-10-12 20:07:00,232 Adams St, Atlanta,GA,30301 +276952,USB-C Charging Cable,2,11.95,2019-10-19 11:03:00,983 Walnut St, New York City,NY,10001 +276953,USB-C Charging Cable,1,11.95,2019-10-15 15:11:00,850 12th St, Los Angeles,CA,90001 +276954,USB-C Charging Cable,1,11.95,2019-10-05 19:48:00,414 4th St, Los Angeles,CA,90001 +276955,USB-C Charging Cable,1,11.95,2019-10-01 08:27:00,822 13th St, San Francisco,CA,94016 +276956,Lightning Charging Cable,1,14.95,2019-10-13 19:09:00,864 Dogwood St, Austin,TX,73301 +276957,AA Batteries (4-pack),1,3.84,2019-10-20 13:57:00,393 Maple St, San Francisco,CA,94016 +276958,Wired Headphones,1,11.99,2019-10-21 09:42:00,877 Jefferson St, Los Angeles,CA,90001 +276959,AAA Batteries (4-pack),2,2.99,2019-10-14 10:44:00,37 Ridge St, Boston,MA,02215 +276960,Wired Headphones,1,11.99,2019-10-29 13:15:00,177 Main St, Boston,MA,02215 +276961,Bose SoundSport Headphones,1,99.99,2019-10-04 18:16:00,846 Forest St, Los Angeles,CA,90001 +276962,USB-C Charging Cable,1,11.95,2019-10-13 11:02:00,442 Meadow St, New York City,NY,10001 +276963,27in FHD Monitor,1,149.99,2019-10-20 19:59:00,475 14th St, Seattle,WA,98101 +276964,AAA Batteries (4-pack),1,2.99,2019-10-28 10:53:00,482 14th St, New York City,NY,10001 +276965,iPhone,1,700.0,2019-10-07 13:37:00,325 Jefferson St, New York City,NY,10001 +276966,27in 4K Gaming Monitor,1,389.99,2019-10-26 01:20:00,134 Chestnut St, Dallas,TX,75001 +276967,Wired Headphones,1,11.99,2019-10-13 21:00:00,666 River St, Los Angeles,CA,90001 +276968,Flatscreen TV,1,300.0,2019-10-02 13:46:00,916 River St, Boston,MA,02215 +276969,Bose SoundSport Headphones,1,99.99,2019-10-24 15:20:00,633 Wilson St, New York City,NY,10001 +276970,iPhone,1,700.0,2019-10-14 07:32:00,243 6th St, Los Angeles,CA,90001 +276971,Lightning Charging Cable,1,14.95,2019-10-20 13:23:00,911 Park St, Boston,MA,02215 +276972,Lightning Charging Cable,1,14.95,2019-10-26 12:29:00,405 Center St, San Francisco,CA,94016 +276973,34in Ultrawide Monitor,1,379.99,2019-10-09 18:40:00,319 Cherry St, Los Angeles,CA,90001 +276974,Bose SoundSport Headphones,1,99.99,2019-10-07 11:43:00,833 Dogwood St, Los Angeles,CA,90001 +276975,USB-C Charging Cable,1,11.95,2019-10-25 18:58:00,262 Cedar St, New York City,NY,10001 +276976,Bose SoundSport Headphones,1,99.99,2019-10-20 17:16:00,391 Chestnut St, Los Angeles,CA,90001 +276977,Macbook Pro Laptop,1,1700.0,2019-10-03 14:00:00,828 Church St, New York City,NY,10001 +276978,Macbook Pro Laptop,1,1700.0,2019-10-25 00:16:00,819 Lake St, Boston,MA,02215 +276979,Bose SoundSport Headphones,1,99.99,2019-10-27 16:37:00,609 Church St, Portland,OR,97035 +276980,AAA Batteries (4-pack),4,2.99,2019-10-12 21:38:00,246 Highland St, Atlanta,GA,30301 +276981,AA Batteries (4-pack),1,3.84,2019-10-15 09:02:00,474 Meadow St, Atlanta,GA,30301 +276982,Lightning Charging Cable,1,14.95,2019-10-20 10:26:00,377 Dogwood St, Portland,ME,04101 +276983,Lightning Charging Cable,1,14.95,2019-10-17 17:47:00,827 Lincoln St, Seattle,WA,98101 +276984,USB-C Charging Cable,1,11.95,2019-10-12 18:46:00,656 Willow St, Dallas,TX,75001 +276985,USB-C Charging Cable,1,11.95,2019-10-24 23:46:00,685 Wilson St, Atlanta,GA,30301 +276986,USB-C Charging Cable,1,11.95,2019-10-20 00:31:00,651 11th St, Atlanta,GA,30301 +276987,Wired Headphones,3,11.99,2019-10-05 21:33:00,605 Forest St, Atlanta,GA,30301 +276988,Lightning Charging Cable,1,14.95,2019-10-24 13:06:00,898 Wilson St, Boston,MA,02215 +276989,USB-C Charging Cable,1,11.95,2019-10-06 12:32:00,591 Center St, Seattle,WA,98101 +276990,AA Batteries (4-pack),2,3.84,2019-10-12 17:00:00,537 10th St, Los Angeles,CA,90001 +276991,Lightning Charging Cable,1,14.95,2019-10-10 15:19:00,275 4th St, New York City,NY,10001 +276992,AA Batteries (4-pack),3,3.84,2019-10-12 00:45:00,248 Lincoln St, Los Angeles,CA,90001 +276993,27in FHD Monitor,1,149.99,2019-10-26 16:09:00,842 Chestnut St, Austin,TX,73301 +276994,Apple Airpods Headphones,1,150.0,2019-10-29 15:25:00,298 10th St, Los Angeles,CA,90001 +276995,20in Monitor,1,109.99,2019-10-13 14:33:00,511 South St, Los Angeles,CA,90001 +276996,USB-C Charging Cable,1,11.95,2019-10-25 20:12:00,321 Meadow St, Dallas,TX,75001 +276997,Lightning Charging Cable,1,14.95,2019-10-04 11:43:00,428 Pine St, Atlanta,GA,30301 +276998,Bose SoundSport Headphones,1,99.99,2019-10-03 20:46:00,523 1st St, Dallas,TX,75001 +276999,USB-C Charging Cable,1,11.95,2019-10-21 18:23:00,962 4th St, Austin,TX,73301 +277000,AAA Batteries (4-pack),2,2.99,2019-10-10 16:17:00,286 8th St, Boston,MA,02215 +277001,Lightning Charging Cable,1,14.95,2019-10-28 14:38:00,474 4th St, Seattle,WA,98101 +277002,Wired Headphones,1,11.99,2019-10-03 19:41:00,251 Washington St, Los Angeles,CA,90001 +277003,Bose SoundSport Headphones,1,99.99,2019-10-20 13:20:00,110 9th St, Los Angeles,CA,90001 +277004,AAA Batteries (4-pack),3,2.99,2019-10-03 23:07:00,583 Lincoln St, Seattle,WA,98101 +277005,AA Batteries (4-pack),1,3.84,2019-10-16 07:45:00,551 8th St, Los Angeles,CA,90001 +277006,AA Batteries (4-pack),1,3.84,2019-10-26 21:12:00,564 12th St, San Francisco,CA,94016 +277007,Lightning Charging Cable,1,14.95,2019-10-19 00:46:00,497 5th St, Los Angeles,CA,90001 +277008,AA Batteries (4-pack),1,3.84,2019-10-31 20:48:00,259 West St, Austin,TX,73301 +277009,Lightning Charging Cable,1,14.95,2019-10-04 20:18:00,180 13th St, Dallas,TX,75001 +277010,Apple Airpods Headphones,1,150.0,2019-10-21 23:30:00,428 Cherry St, San Francisco,CA,94016 +277011,20in Monitor,1,109.99,2019-10-04 17:32:00,525 10th St, Austin,TX,73301 +277012,Wired Headphones,1,11.99,2019-10-14 10:57:00,439 Forest St, Los Angeles,CA,90001 +277013,Lightning Charging Cable,1,14.95,2019-10-30 07:22:00,355 North St, Dallas,TX,75001 +277014,AAA Batteries (4-pack),1,2.99,2019-10-03 18:37:00,760 5th St, San Francisco,CA,94016 +277015,USB-C Charging Cable,1,11.95,2019-10-30 17:14:00,750 Main St, San Francisco,CA,94016 +277016,AAA Batteries (4-pack),2,2.99,2019-10-16 09:28:00,859 Park St, Dallas,TX,75001 +277017,Bose SoundSport Headphones,1,99.99,2019-10-29 23:30:00,258 Elm St, New York City,NY,10001 +277018,Apple Airpods Headphones,1,150.0,2019-10-29 18:15:00,47 Washington St, Austin,TX,73301 +277019,Wired Headphones,1,11.99,2019-10-06 21:18:00,922 1st St, Boston,MA,02215 +277020,USB-C Charging Cable,1,11.95,2019-10-28 13:22:00,736 Sunset St, San Francisco,CA,94016 +277021,Wired Headphones,1,11.99,2019-10-21 18:17:00,630 14th St, New York City,NY,10001 +277022,AAA Batteries (4-pack),2,2.99,2019-10-07 11:04:00,593 Cedar St, Portland,OR,97035 +277023,Lightning Charging Cable,1,14.95,2019-10-27 14:34:00,683 Main St, Dallas,TX,75001 +277024,20in Monitor,1,109.99,2019-10-11 06:21:00,44 10th St, San Francisco,CA,94016 +277025,Bose SoundSport Headphones,1,99.99,2019-10-27 10:37:00,604 13th St, Los Angeles,CA,90001 +277026,Wired Headphones,1,11.99,2019-10-10 14:17:00,198 Lake St, Seattle,WA,98101 +277027,Macbook Pro Laptop,1,1700.0,2019-10-05 18:01:00,899 14th St, Los Angeles,CA,90001 +277028,AA Batteries (4-pack),1,3.84,2019-10-03 11:51:00,82 Jackson St, Boston,MA,02215 +277029,USB-C Charging Cable,1,11.95,2019-10-15 20:12:00,540 Hill St, San Francisco,CA,94016 +277030,AAA Batteries (4-pack),1,2.99,2019-10-06 21:09:00,318 Wilson St, New York City,NY,10001 +277031,Wired Headphones,1,11.99,2019-10-11 14:38:00,824 Sunset St, Atlanta,GA,30301 +277032,27in FHD Monitor,1,149.99,2019-10-04 18:45:00,980 Park St, Boston,MA,02215 +277033,20in Monitor,1,109.99,2019-10-18 10:29:00,164 13th St, San Francisco,CA,94016 +277034,Google Phone,1,600.0,2019-10-07 13:11:00,418 12th St, Los Angeles,CA,90001 +277034,USB-C Charging Cable,1,11.95,2019-10-07 13:11:00,418 12th St, Los Angeles,CA,90001 +277035,USB-C Charging Cable,1,11.95,2019-10-17 22:25:00,755 13th St, New York City,NY,10001 +277036,Bose SoundSport Headphones,1,99.99,2019-10-11 17:37:00,403 4th St, Los Angeles,CA,90001 +277037,Lightning Charging Cable,1,14.95,2019-10-28 23:36:00,420 1st St, San Francisco,CA,94016 +277038,ThinkPad Laptop,1,999.99,2019-10-14 09:56:00,592 Spruce St, Boston,MA,02215 +277039,Lightning Charging Cable,1,14.95,2019-10-01 12:35:00,873 Cedar St, Dallas,TX,75001 +277040,USB-C Charging Cable,1,11.95,2019-10-15 14:46:00,25 4th St, San Francisco,CA,94016 +277041,AA Batteries (4-pack),1,3.84,2019-10-15 21:08:00,846 Church St, Boston,MA,02215 +277042,AA Batteries (4-pack),1,3.84,2019-10-25 00:23:00,437 Pine St, Dallas,TX,75001 +277043,USB-C Charging Cable,1,11.95,2019-10-26 10:12:00,616 13th St, Atlanta,GA,30301 +277044,Apple Airpods Headphones,1,150.0,2019-10-16 11:05:00,204 Jefferson St, San Francisco,CA,94016 +277045,27in 4K Gaming Monitor,1,389.99,2019-10-07 20:31:00,894 9th St, Seattle,WA,98101 +277046,27in 4K Gaming Monitor,1,389.99,2019-10-14 22:01:00,386 Wilson St, Boston,MA,02215 +277047,ThinkPad Laptop,1,999.99,2019-10-04 21:25:00,724 Chestnut St, San Francisco,CA,94016 +277048,AA Batteries (4-pack),1,3.84,2019-10-28 10:40:00,106 10th St, Atlanta,GA,30301 +277049,Lightning Charging Cable,1,14.95,2019-10-21 12:44:00,324 Highland St, San Francisco,CA,94016 +277050,Bose SoundSport Headphones,1,99.99,2019-10-03 09:00:00,444 Sunset St, New York City,NY,10001 +277051,Lightning Charging Cable,1,14.95,2019-10-10 22:24:00,330 14th St, Dallas,TX,75001 +277052,iPhone,1,700.0,2019-10-23 09:38:00,116 Highland St, Atlanta,GA,30301 +277053,Lightning Charging Cable,1,14.95,2019-10-13 22:56:00,393 4th St, San Francisco,CA,94016 +277054,Bose SoundSport Headphones,1,99.99,2019-10-20 09:21:00,998 Adams St, Dallas,TX,75001 +277055,Apple Airpods Headphones,1,150.0,2019-10-07 23:10:00,541 Washington St, New York City,NY,10001 +277056,USB-C Charging Cable,1,11.95,2019-10-29 19:44:00,825 Center St, Boston,MA,02215 +277057,Vareebadd Phone,1,400.0,2019-10-20 22:37:00,267 Dogwood St, Los Angeles,CA,90001 +277058,Apple Airpods Headphones,1,150.0,2019-10-25 20:16:00,406 Elm St, Atlanta,GA,30301 +277059,ThinkPad Laptop,1,999.99,2019-10-25 11:28:00,427 4th St, Portland,OR,97035 +277060,AA Batteries (4-pack),1,3.84,2019-10-15 00:47:00,639 1st St, New York City,NY,10001 +277061,Macbook Pro Laptop,1,1700.0,2019-10-25 04:38:00,244 Chestnut St, San Francisco,CA,94016 +277061,Bose SoundSport Headphones,1,99.99,2019-10-25 04:38:00,244 Chestnut St, San Francisco,CA,94016 +277062,AAA Batteries (4-pack),3,2.99,2019-10-17 13:05:00,3 Wilson St, Atlanta,GA,30301 +277063,Lightning Charging Cable,1,14.95,2019-10-05 08:19:00,907 Hill St, New York City,NY,10001 +277064,AA Batteries (4-pack),2,3.84,2019-10-04 22:52:00,102 Center St, Portland,ME,04101 +277065,Wired Headphones,1,11.99,2019-10-14 06:03:00,430 South St, Dallas,TX,75001 +277065,34in Ultrawide Monitor,1,379.99,2019-10-14 06:03:00,430 South St, Dallas,TX,75001 +277066,Apple Airpods Headphones,1,150.0,2019-10-19 06:57:00,508 South St, Portland,OR,97035 +277067,USB-C Charging Cable,1,11.95,2019-10-26 19:29:00,545 Johnson St, New York City,NY,10001 +277068,Wired Headphones,1,11.99,2019-10-19 23:21:00,447 Pine St, San Francisco,CA,94016 +277069,AAA Batteries (4-pack),1,2.99,2019-10-01 12:01:00,612 North St, Portland,OR,97035 +277070,Lightning Charging Cable,1,14.95,2019-10-02 16:27:00,805 5th St, Los Angeles,CA,90001 +277071,Wired Headphones,2,11.99,2019-10-09 13:00:00,990 Cedar St, New York City,NY,10001 +277072,AAA Batteries (4-pack),3,2.99,2019-10-07 12:23:00,489 Dogwood St, San Francisco,CA,94016 +277073,LG Washing Machine,1,600.0,2019-10-19 12:39:00,39 2nd St, Los Angeles,CA,90001 +277074,USB-C Charging Cable,1,11.95,2019-10-23 08:14:00,911 Adams St, Austin,TX,73301 +277075,Lightning Charging Cable,1,14.95,2019-10-31 06:27:00,837 South St, San Francisco,CA,94016 +277076,Lightning Charging Cable,1,14.95,2019-10-10 09:53:00,163 2nd St, New York City,NY,10001 +277077,Flatscreen TV,1,300.0,2019-10-11 08:21:00,574 Willow St, Boston,MA,02215 +277078,27in FHD Monitor,1,149.99,2019-10-12 09:52:00,319 Wilson St, Dallas,TX,75001 +277079,AA Batteries (4-pack),1,3.84,2019-10-14 11:56:00,274 12th St, Dallas,TX,75001 +277080,34in Ultrawide Monitor,1,379.99,2019-10-29 13:27:00,463 North St, Portland,OR,97035 +277081,Flatscreen TV,1,300.0,2019-10-27 10:33:00,301 12th St, Portland,ME,04101 +277082,USB-C Charging Cable,1,11.95,2019-10-30 18:04:00,682 14th St, Dallas,TX,75001 +277083,AAA Batteries (4-pack),2,2.99,2019-10-10 11:47:00,158 Center St, Atlanta,GA,30301 +277084,USB-C Charging Cable,1,11.95,2019-10-28 11:32:00,624 Hill St, Atlanta,GA,30301 +277085,Wired Headphones,1,11.99,2019-10-12 18:02:00,215 Ridge St, Atlanta,GA,30301 +277086,Lightning Charging Cable,1,14.95,2019-10-02 06:39:00,673 Forest St, Portland,ME,04101 +277087,Lightning Charging Cable,1,14.95,2019-10-31 20:47:00,577 Dogwood St, San Francisco,CA,94016 +277088,34in Ultrawide Monitor,1,379.99,2019-10-21 15:31:00,389 Adams St, Los Angeles,CA,90001 +277089,USB-C Charging Cable,1,11.95,2019-10-03 11:14:00,575 Chestnut St, San Francisco,CA,94016 +277090,Lightning Charging Cable,1,14.95,2019-10-30 06:43:00,267 Park St, Boston,MA,02215 +277091,AAA Batteries (4-pack),1,2.99,2019-10-21 06:22:00,392 Willow St, Portland,OR,97035 +277092,Bose SoundSport Headphones,1,99.99,2019-10-01 19:56:00,941 South St, New York City,NY,10001 +277093,Lightning Charging Cable,1,14.95,2019-10-24 11:53:00,264 Lincoln St, Boston,MA,02215 +277094,AAA Batteries (4-pack),1,2.99,2019-10-24 19:21:00,706 Ridge St, Boston,MA,02215 +277095,iPhone,1,700.0,2019-10-22 16:30:00,849 Lakeview St, New York City,NY,10001 +277096,Bose SoundSport Headphones,1,99.99,2019-10-10 20:58:00,15 Adams St, Dallas,TX,75001 +277097,27in FHD Monitor,1,149.99,2019-10-11 15:12:00,197 1st St, San Francisco,CA,94016 +277098,Wired Headphones,1,11.99,2019-10-05 15:36:00,340 9th St, Los Angeles,CA,90001 +277099,USB-C Charging Cable,2,11.95,2019-10-03 12:16:00,692 Elm St, San Francisco,CA,94016 +277100,AAA Batteries (4-pack),1,2.99,2019-10-15 10:05:00,876 Sunset St, New York City,NY,10001 +277101,AAA Batteries (4-pack),2,2.99,2019-10-05 17:10:00,391 Madison St, Atlanta,GA,30301 +277102,iPhone,1,700.0,2019-10-24 04:57:00,559 Johnson St, Portland,OR,97035 +277102,Apple Airpods Headphones,1,150.0,2019-10-24 04:57:00,559 Johnson St, Portland,OR,97035 +277103,AAA Batteries (4-pack),1,2.99,2019-10-23 11:44:00,99 Johnson St, Seattle,WA,98101 +277104,Macbook Pro Laptop,1,1700.0,2019-10-09 10:34:00,762 Spruce St, Los Angeles,CA,90001 +277105,Google Phone,1,600.0,2019-10-29 11:24:00,544 Jackson St, New York City,NY,10001 +277105,USB-C Charging Cable,1,11.95,2019-10-29 11:24:00,544 Jackson St, New York City,NY,10001 +277106,iPhone,1,700.0,2019-10-07 01:38:00,240 Elm St, San Francisco,CA,94016 +277107,Bose SoundSport Headphones,1,99.99,2019-10-21 21:16:00,29 Walnut St, Austin,TX,73301 +277108,AAA Batteries (4-pack),3,2.99,2019-10-08 13:48:00,548 Elm St, Boston,MA,02215 +277109,Bose SoundSport Headphones,1,99.99,2019-10-05 17:42:00,661 Wilson St, Dallas,TX,75001 +277110,Apple Airpods Headphones,1,150.0,2019-10-10 09:25:00,701 Hill St, Los Angeles,CA,90001 +277111,Google Phone,1,600.0,2019-10-20 13:04:00,225 4th St, San Francisco,CA,94016 +277112,Apple Airpods Headphones,1,150.0,2019-10-10 16:55:00,167 Meadow St, Dallas,TX,75001 +277113,Bose SoundSport Headphones,1,99.99,2019-10-26 17:27:00,257 West St, Los Angeles,CA,90001 +277114,AA Batteries (4-pack),1,3.84,2019-10-07 12:04:00,929 13th St, Portland,ME,04101 +277115,Wired Headphones,1,11.99,2019-10-13 16:37:00,275 Dogwood St, San Francisco,CA,94016 +277116,Wired Headphones,1,11.99,2019-10-07 20:14:00,11 Chestnut St, Boston,MA,02215 +277117,27in 4K Gaming Monitor,1,389.99,2019-10-16 21:16:00,734 Cherry St, Los Angeles,CA,90001 +277118,AAA Batteries (4-pack),1,2.99,2019-10-08 17:34:00,806 6th St, Los Angeles,CA,90001 +277119,Wired Headphones,1,11.99,2019-10-22 16:50:00,322 Lake St, Los Angeles,CA,90001 +277120,AA Batteries (4-pack),1,3.84,2019-10-20 08:57:00,884 Walnut St, San Francisco,CA,94016 +277121,Lightning Charging Cable,1,14.95,2019-10-31 20:45:00,356 Ridge St, Portland,ME,04101 +277122,Wired Headphones,1,11.99,2019-10-29 19:37:00,823 Hickory St, Los Angeles,CA,90001 +277123,Apple Airpods Headphones,1,150.0,2019-10-19 15:12:00,9 West St, San Francisco,CA,94016 +277124,Lightning Charging Cable,1,14.95,2019-10-11 16:22:00,79 Johnson St, Atlanta,GA,30301 +277125,Bose SoundSport Headphones,1,99.99,2019-10-14 10:40:00,124 Cedar St, Portland,OR,97035 +277126,USB-C Charging Cable,1,11.95,2019-10-15 22:04:00,765 North St, Boston,MA,02215 +277127,Wired Headphones,1,11.99,2019-10-10 09:52:00,593 12th St, Los Angeles,CA,90001 +277128,27in FHD Monitor,1,149.99,2019-10-13 20:56:00,414 11th St, Atlanta,GA,30301 +277129,Bose SoundSport Headphones,1,99.99,2019-10-15 20:27:00,248 Maple St, San Francisco,CA,94016 +277130,Wired Headphones,1,11.99,2019-10-26 22:42:00,516 Cherry St, Atlanta,GA,30301 +277131,ThinkPad Laptop,1,999.99,2019-10-25 00:44:00,32 Park St, Boston,MA,02215 +277132,Bose SoundSport Headphones,1,99.99,2019-10-26 21:59:00,310 Wilson St, New York City,NY,10001 +277133,Macbook Pro Laptop,1,1700.0,2019-10-06 16:19:00,554 8th St, San Francisco,CA,94016 +277134,USB-C Charging Cable,1,11.95,2019-10-09 07:21:00,8 Lake St, Austin,TX,73301 +277135,AA Batteries (4-pack),1,3.84,2019-10-19 18:43:00,725 14th St, San Francisco,CA,94016 +277136,AA Batteries (4-pack),2,3.84,2019-10-28 12:18:00,409 Hickory St, Dallas,TX,75001 +277136,34in Ultrawide Monitor,1,379.99,2019-10-28 12:18:00,409 Hickory St, Dallas,TX,75001 +277137,AAA Batteries (4-pack),4,2.99,2019-10-20 07:10:00,944 West St, San Francisco,CA,94016 +277138,Google Phone,1,600.0,2019-10-13 13:02:00,35 Elm St, San Francisco,CA,94016 +277139,Apple Airpods Headphones,1,150.0,2019-10-24 06:18:00,961 9th St, San Francisco,CA,94016 +277140,27in 4K Gaming Monitor,1,389.99,2019-10-22 17:02:00,964 South St, Austin,TX,73301 +277141,Lightning Charging Cable,1,14.95,2019-10-24 17:10:00,855 Wilson St, New York City,NY,10001 +277142,Lightning Charging Cable,1,14.95,2019-10-18 20:56:00,658 Willow St, Austin,TX,73301 +277143,AAA Batteries (4-pack),2,2.99,2019-10-01 17:43:00,691 Lake St, New York City,NY,10001 +277144,AAA Batteries (4-pack),1,2.99,2019-10-04 09:22:00,36 6th St, Boston,MA,02215 +277145,Google Phone,1,600.0,2019-10-05 19:19:00,372 Johnson St, Los Angeles,CA,90001 +277146,USB-C Charging Cable,1,11.95,2019-10-06 16:38:00,729 10th St, New York City,NY,10001 +277147,Wired Headphones,1,11.99,2019-10-10 09:29:00,863 Lincoln St, New York City,NY,10001 +277147,USB-C Charging Cable,1,11.95,2019-10-10 09:29:00,863 Lincoln St, New York City,NY,10001 +277148,Flatscreen TV,1,300.0,2019-10-31 18:35:00,294 Ridge St, San Francisco,CA,94016 +277149,Macbook Pro Laptop,1,1700.0,2019-10-06 18:18:00,190 12th St, Atlanta,GA,30301 +277150,AAA Batteries (4-pack),1,2.99,2019-10-07 12:52:00,433 Hill St, San Francisco,CA,94016 +277151,AAA Batteries (4-pack),1,2.99,2019-10-13 12:36:00,598 Lake St, Dallas,TX,75001 +277152,20in Monitor,1,109.99,2019-10-25 12:17:00,249 Willow St, Dallas,TX,75001 +277153,AAA Batteries (4-pack),2,2.99,2019-10-14 10:49:00,236 Ridge St, Los Angeles,CA,90001 +277154,AA Batteries (4-pack),2,3.84,2019-10-13 21:02:00,825 Washington St, Seattle,WA,98101 +277155,Macbook Pro Laptop,1,1700.0,2019-10-09 19:10:00,481 Lakeview St, San Francisco,CA,94016 +277156,Lightning Charging Cable,1,14.95,2019-10-21 07:54:00,137 Johnson St, Austin,TX,73301 +277157,Wired Headphones,2,11.99,2019-10-05 10:32:00,613 Church St, New York City,NY,10001 +277158,AA Batteries (4-pack),2,3.84,2019-10-06 03:16:00,113 5th St, San Francisco,CA,94016 +277159,AA Batteries (4-pack),1,3.84,2019-10-11 20:54:00,461 Park St, New York City,NY,10001 +277160,27in 4K Gaming Monitor,1,389.99,2019-10-22 18:47:00,653 Church St, San Francisco,CA,94016 +277161,AAA Batteries (4-pack),1,2.99,2019-10-17 16:56:00,436 Sunset St, Los Angeles,CA,90001 +277162,USB-C Charging Cable,1,11.95,2019-10-29 13:51:00,196 Center St, San Francisco,CA,94016 +277163,Lightning Charging Cable,1,14.95,2019-10-03 07:28:00,576 Center St, Portland,ME,04101 +277164,Lightning Charging Cable,1,14.95,2019-10-03 00:28:00,921 Lake St, Seattle,WA,98101 +277165,Lightning Charging Cable,1,14.95,2019-10-11 15:05:00,888 Sunset St, Boston,MA,02215 +277166,34in Ultrawide Monitor,1,379.99,2019-10-22 21:56:00,989 Park St, Dallas,TX,75001 +277167,Wired Headphones,1,11.99,2019-10-03 15:39:00,924 West St, Los Angeles,CA,90001 +277168,USB-C Charging Cable,1,11.95,2019-10-08 13:40:00,405 Hill St, San Francisco,CA,94016 +277169,Bose SoundSport Headphones,1,99.99,2019-10-13 12:29:00,24 2nd St, Portland,OR,97035 +277170,Lightning Charging Cable,1,14.95,2019-10-16 21:39:00,20 River St, Austin,TX,73301 +277171,USB-C Charging Cable,1,11.95,2019-10-28 09:23:00,698 10th St, San Francisco,CA,94016 +277172,AAA Batteries (4-pack),2,2.99,2019-10-07 18:12:00,396 4th St, New York City,NY,10001 +277173,Flatscreen TV,1,300.0,2019-10-16 19:33:00,752 Johnson St, San Francisco,CA,94016 +277174,Wired Headphones,1,11.99,2019-10-04 13:10:00,331 South St, San Francisco,CA,94016 +277175,AAA Batteries (4-pack),1,2.99,2019-10-17 11:00:00,377 Ridge St, Los Angeles,CA,90001 +277176,AAA Batteries (4-pack),2,2.99,2019-10-07 16:09:00,181 Washington St, Boston,MA,02215 +277177,AAA Batteries (4-pack),1,2.99,2019-10-23 20:28:00,75 Adams St, Boston,MA,02215 +277178,Lightning Charging Cable,1,14.95,2019-10-14 20:01:00,241 Hickory St, San Francisco,CA,94016 +277179,AA Batteries (4-pack),1,3.84,2019-10-15 15:19:00,49 Maple St, San Francisco,CA,94016 +277180,Bose SoundSport Headphones,1,99.99,2019-10-06 19:38:00,725 South St, San Francisco,CA,94016 +277181,AA Batteries (4-pack),1,3.84,2019-10-13 19:18:00,398 Spruce St, Portland,OR,97035 +277182,Bose SoundSport Headphones,1,99.99,2019-10-07 00:34:00,532 Ridge St, Dallas,TX,75001 +277183,Lightning Charging Cable,1,14.95,2019-10-24 22:14:00,761 9th St, New York City,NY,10001 +277184,20in Monitor,1,109.99,2019-10-06 16:13:00,641 Ridge St, Seattle,WA,98101 +277185,AAA Batteries (4-pack),2,2.99,2019-10-21 16:33:00,532 Center St, Dallas,TX,75001 +277186,AA Batteries (4-pack),1,3.84,2019-10-05 21:55:00,397 Center St, Los Angeles,CA,90001 +277187,AA Batteries (4-pack),3,3.84,2019-10-09 01:07:00,122 Johnson St, Los Angeles,CA,90001 +277188,Wired Headphones,2,11.99,2019-10-02 06:52:00,814 North St, San Francisco,CA,94016 +277189,Wired Headphones,1,11.99,2019-10-27 06:46:00,458 Wilson St, San Francisco,CA,94016 +277190,Vareebadd Phone,1,400.0,2019-10-20 19:05:00,972 Pine St, Boston,MA,02215 +277191,AA Batteries (4-pack),2,3.84,2019-10-01 09:23:00,565 Adams St, Dallas,TX,75001 +277192,27in 4K Gaming Monitor,1,389.99,2019-10-26 22:36:00,163 9th St, San Francisco,CA,94016 +277193,AAA Batteries (4-pack),1,2.99,2019-10-12 12:22:00,491 Meadow St, Seattle,WA,98101 +277194,AAA Batteries (4-pack),1,2.99,2019-10-04 12:07:00,974 North St, Boston,MA,02215 +277195,Macbook Pro Laptop,1,1700.0,2019-10-24 16:21:00,291 6th St, Dallas,TX,75001 +277196,Flatscreen TV,1,300.0,2019-10-09 23:02:00,451 12th St, New York City,NY,10001 +277197,Wired Headphones,1,11.99,2019-10-19 20:52:00,465 Maple St, Dallas,TX,75001 +277197,27in FHD Monitor,1,149.99,2019-10-19 20:52:00,465 Maple St, Dallas,TX,75001 +277198,iPhone,1,700.0,2019-10-06 20:59:00,24 14th St, Portland,OR,97035 +277199,AAA Batteries (4-pack),1,2.99,2019-10-28 15:10:00,19 Forest St, Atlanta,GA,30301 +277200,USB-C Charging Cable,1,11.95,2019-10-30 20:59:00,738 1st St, San Francisco,CA,94016 +277201,Google Phone,1,600.0,2019-10-17 13:28:00,152 9th St, Austin,TX,73301 +277202,Wired Headphones,1,11.99,2019-10-17 16:52:00,671 14th St, San Francisco,CA,94016 +277203,34in Ultrawide Monitor,1,379.99,2019-10-31 22:34:00,645 Center St, New York City,NY,10001 +277204,Bose SoundSport Headphones,1,99.99,2019-10-26 21:27:00,43 Washington St, Portland,OR,97035 +277205,AAA Batteries (4-pack),1,2.99,2019-10-11 01:00:00,937 11th St, Seattle,WA,98101 +277206,20in Monitor,1,109.99,2019-10-06 12:57:00,906 North St, Los Angeles,CA,90001 +277207,Flatscreen TV,1,300.0,2019-10-16 15:14:00,44 1st St, Dallas,TX,75001 +277208,USB-C Charging Cable,1,11.95,2019-10-04 00:48:00,100 1st St, Los Angeles,CA,90001 +277209,AA Batteries (4-pack),1,3.84,2019-10-15 17:45:00,233 8th St, Seattle,WA,98101 +277210,ThinkPad Laptop,1,999.99,2019-10-21 20:23:00,765 Washington St, Los Angeles,CA,90001 +277211,AA Batteries (4-pack),1,3.84,2019-10-16 06:54:00,421 7th St, San Francisco,CA,94016 +277211,USB-C Charging Cable,1,11.95,2019-10-16 06:54:00,421 7th St, San Francisco,CA,94016 +277212,AA Batteries (4-pack),2,3.84,2019-10-29 16:44:00,814 Cedar St, Dallas,TX,75001 +277213,20in Monitor,1,109.99,2019-10-02 12:50:00,809 Dogwood St, Austin,TX,73301 +277214,USB-C Charging Cable,2,11.95,2019-10-03 13:06:00,698 14th St, Portland,ME,04101 +277215,AA Batteries (4-pack),1,3.84,2019-10-11 19:56:00,205 Park St, Seattle,WA,98101 +277216,27in 4K Gaming Monitor,1,389.99,2019-10-27 19:40:00,180 Highland St, Los Angeles,CA,90001 +277217,Lightning Charging Cable,1,14.95,2019-10-16 08:58:00,4 Park St, Boston,MA,02215 +277218,AA Batteries (4-pack),3,3.84,2019-10-18 13:19:00,128 Jackson St, San Francisco,CA,94016 +277219,Lightning Charging Cable,1,14.95,2019-10-13 13:48:00,349 Lincoln St, Los Angeles,CA,90001 +277219,Wired Headphones,2,11.99,2019-10-13 13:48:00,349 Lincoln St, Los Angeles,CA,90001 +277220,AA Batteries (4-pack),1,3.84,2019-10-06 14:42:00,27 Wilson St, Portland,OR,97035 +277221,Wired Headphones,1,11.99,2019-10-03 17:11:00,125 Elm St, Seattle,WA,98101 +277222,ThinkPad Laptop,1,999.99,2019-10-25 23:31:00,945 Cedar St, Boston,MA,02215 +277223,Flatscreen TV,1,300.0,2019-10-12 06:28:00,325 5th St, Dallas,TX,75001 +277224,34in Ultrawide Monitor,1,379.99,2019-10-18 16:45:00,491 Dogwood St, San Francisco,CA,94016 +277225,Flatscreen TV,1,300.0,2019-10-07 20:13:00,575 8th St, Boston,MA,02215 +277226,Lightning Charging Cable,1,14.95,2019-10-22 14:42:00,461 South St, Los Angeles,CA,90001 +277227,Lightning Charging Cable,1,14.95,2019-10-19 09:37:00,475 Dogwood St, San Francisco,CA,94016 +277228,AAA Batteries (4-pack),1,2.99,2019-10-23 13:32:00,995 Meadow St, San Francisco,CA,94016 +277229,AA Batteries (4-pack),1,3.84,2019-10-06 10:09:00,263 Walnut St, San Francisco,CA,94016 +277230,27in 4K Gaming Monitor,1,389.99,2019-10-17 20:27:00,938 Willow St, San Francisco,CA,94016 +277231,AAA Batteries (4-pack),2,2.99,2019-10-23 17:00:00,782 Spruce St, San Francisco,CA,94016 +277232,USB-C Charging Cable,1,11.95,2019-10-01 17:56:00,455 7th St, San Francisco,CA,94016 +277233,Bose SoundSport Headphones,2,99.99,2019-10-16 10:40:00,186 Washington St, Atlanta,GA,30301 +277234,AA Batteries (4-pack),1,3.84,2019-10-26 11:56:00,553 Ridge St, San Francisco,CA,94016 +277235,AA Batteries (4-pack),1,3.84,2019-10-26 11:47:00,905 Lakeview St, Seattle,WA,98101 +277236,Lightning Charging Cable,1,14.95,2019-10-15 13:52:00,191 Center St, San Francisco,CA,94016 +277237,Bose SoundSport Headphones,1,99.99,2019-10-10 00:48:00,383 Willow St, Portland,ME,04101 +277238,AAA Batteries (4-pack),1,2.99,2019-10-02 22:43:00,590 Walnut St, New York City,NY,10001 +277239,AA Batteries (4-pack),1,3.84,2019-10-14 18:43:00,537 Church St, San Francisco,CA,94016 +277240,Lightning Charging Cable,1,14.95,2019-10-06 17:38:00,957 Pine St, Portland,OR,97035 +277241,Lightning Charging Cable,1,14.95,2019-10-09 11:48:00,572 Adams St, San Francisco,CA,94016 +277242,27in 4K Gaming Monitor,1,389.99,2019-10-01 09:40:00,378 2nd St, San Francisco,CA,94016 +277243,USB-C Charging Cable,1,11.95,2019-10-14 14:42:00,610 Hickory St, Atlanta,GA,30301 +277244,34in Ultrawide Monitor,1,379.99,2019-10-22 20:00:00,33 North St, San Francisco,CA,94016 +277244,AA Batteries (4-pack),1,3.84,2019-10-22 20:00:00,33 North St, San Francisco,CA,94016 +277245,Bose SoundSport Headphones,1,99.99,2019-10-28 00:22:00,361 1st St, San Francisco,CA,94016 +277246,Bose SoundSport Headphones,1,99.99,2019-10-05 16:05:00,411 Hill St, New York City,NY,10001 +277247,Apple Airpods Headphones,1,150.0,2019-10-05 19:09:00,220 Hill St, San Francisco,CA,94016 +277248,27in FHD Monitor,1,149.99,2019-10-02 16:54:00,149 Maple St, San Francisco,CA,94016 +277249,Wired Headphones,1,11.99,2019-10-19 14:30:00,425 Elm St, Boston,MA,02215 +277250,Google Phone,1,600.0,2019-10-05 14:24:00,243 Adams St, New York City,NY,10001 +277251,Google Phone,1,600.0,2019-10-16 15:07:00,705 Washington St, Los Angeles,CA,90001 +277251,USB-C Charging Cable,1,11.95,2019-10-16 15:07:00,705 Washington St, Los Angeles,CA,90001 +277252,AAA Batteries (4-pack),1,2.99,2019-10-24 11:47:00,794 4th St, San Francisco,CA,94016 +277253,27in 4K Gaming Monitor,1,389.99,2019-10-31 13:23:00,991 Pine St, Dallas,TX,75001 +277254,AA Batteries (4-pack),2,3.84,2019-10-11 15:05:00,415 Dogwood St, Seattle,WA,98101 +277255,AAA Batteries (4-pack),3,2.99,2019-10-01 15:25:00,631 River St, Los Angeles,CA,90001 +277256,iPhone,1,700.0,2019-10-24 23:21:00,656 Willow St, Austin,TX,73301 +277257,USB-C Charging Cable,1,11.95,2019-10-31 12:43:00,977 Lake St, Atlanta,GA,30301 +277258,Apple Airpods Headphones,1,150.0,2019-10-08 21:25:00,527 Lincoln St, New York City,NY,10001 +277259,AAA Batteries (4-pack),1,2.99,2019-10-11 06:02:00,557 Wilson St, New York City,NY,10001 +277260,Bose SoundSport Headphones,1,99.99,2019-10-22 19:38:00,833 8th St, Atlanta,GA,30301 +277261,Flatscreen TV,1,300.0,2019-10-24 16:40:00,446 Wilson St, New York City,NY,10001 +277262,Bose SoundSport Headphones,1,99.99,2019-10-03 13:50:00,136 North St, New York City,NY,10001 +277263,Bose SoundSport Headphones,1,99.99,2019-10-11 14:46:00,637 South St, Portland,OR,97035 +277264,Lightning Charging Cable,1,14.95,2019-10-26 15:33:00,578 Adams St, Austin,TX,73301 +277265,AA Batteries (4-pack),1,3.84,2019-10-17 00:04:00,283 Church St, Austin,TX,73301 +277266,AA Batteries (4-pack),1,3.84,2019-10-24 12:43:00,896 Willow St, Los Angeles,CA,90001 +277267,AAA Batteries (4-pack),1,2.99,2019-10-07 11:29:00,181 Hickory St, Boston,MA,02215 +277268,USB-C Charging Cable,1,11.95,2019-10-09 21:32:00,784 10th St, New York City,NY,10001 +277269,Lightning Charging Cable,1,14.95,2019-10-05 22:42:00,956 Lincoln St, San Francisco,CA,94016 +277269,USB-C Charging Cable,1,11.95,2019-10-05 22:42:00,956 Lincoln St, San Francisco,CA,94016 +277270,Macbook Pro Laptop,1,1700.0,2019-10-01 21:13:00,762 Lake St, Austin,TX,73301 +277271,AAA Batteries (4-pack),2,2.99,2019-10-18 07:26:00,586 Willow St, Portland,OR,97035 +277272,AA Batteries (4-pack),2,3.84,2019-10-22 11:55:00,840 Lakeview St, Los Angeles,CA,90001 +277273,AAA Batteries (4-pack),2,2.99,2019-10-29 20:07:00,435 West St, Dallas,TX,75001 +277274,Wired Headphones,1,11.99,2019-10-16 17:58:00,297 Jefferson St, Los Angeles,CA,90001 +277275,iPhone,1,700.0,2019-10-26 11:45:00,724 Cherry St, Los Angeles,CA,90001 +277276,AA Batteries (4-pack),1,3.84,2019-10-14 14:51:00,408 Dogwood St, Los Angeles,CA,90001 +277277,Flatscreen TV,1,300.0,2019-10-01 21:11:00,174 Washington St, San Francisco,CA,94016 +277278,USB-C Charging Cable,1,11.95,2019-10-18 23:38:00,627 1st St, Boston,MA,02215 +277279,27in 4K Gaming Monitor,1,389.99,2019-10-19 19:40:00,820 Jefferson St, Austin,TX,73301 +277280,AA Batteries (4-pack),2,3.84,2019-10-09 01:10:00,673 13th St, New York City,NY,10001 +277281,Google Phone,1,600.0,2019-10-06 02:52:00,765 West St, Seattle,WA,98101 +277281,USB-C Charging Cable,1,11.95,2019-10-06 02:52:00,765 West St, Seattle,WA,98101 +277282,AAA Batteries (4-pack),1,2.99,2019-10-01 16:13:00,574 Walnut St, San Francisco,CA,94016 +277283,34in Ultrawide Monitor,1,379.99,2019-10-16 20:29:00,498 Forest St, Portland,ME,04101 +277284,ThinkPad Laptop,1,999.99,2019-10-23 12:49:00,114 4th St, San Francisco,CA,94016 +277285,AA Batteries (4-pack),1,3.84,2019-10-11 18:43:00,892 Lake St, New York City,NY,10001 +277286,Lightning Charging Cable,1,14.95,2019-10-23 00:01:00,830 Washington St, New York City,NY,10001 +277287,AAA Batteries (4-pack),1,2.99,2019-10-17 21:53:00,419 Meadow St, Los Angeles,CA,90001 +277288,Wired Headphones,1,11.99,2019-10-05 16:23:00,362 Ridge St, Los Angeles,CA,90001 +277289,AA Batteries (4-pack),1,3.84,2019-10-25 22:34:00,974 Hill St, Los Angeles,CA,90001 +277290,34in Ultrawide Monitor,1,379.99,2019-10-21 02:31:00,169 Cherry St, Los Angeles,CA,90001 +277291,27in FHD Monitor,1,149.99,2019-10-09 09:57:00,244 10th St, New York City,NY,10001 +277292,USB-C Charging Cable,1,11.95,2019-10-22 12:25:00,144 North St, Boston,MA,02215 +277293,Bose SoundSport Headphones,1,99.99,2019-10-12 11:26:00,696 Maple St, New York City,NY,10001 +277294,Wired Headphones,1,11.99,2019-10-29 12:42:00,730 11th St, New York City,NY,10001 +277295,Flatscreen TV,1,300.0,2019-10-28 19:34:00,352 Dogwood St, San Francisco,CA,94016 +277296,Wired Headphones,1,11.99,2019-10-06 13:36:00,478 Willow St, Atlanta,GA,30301 +277297,Lightning Charging Cable,1,14.95,2019-10-17 10:13:00,608 8th St, Seattle,WA,98101 +277298,AAA Batteries (4-pack),3,2.99,2019-10-08 12:12:00,986 Cherry St, Los Angeles,CA,90001 +277299,AA Batteries (4-pack),2,3.84,2019-10-02 14:15:00,922 Park St, Boston,MA,02215 +277300,Lightning Charging Cable,1,14.95,2019-10-15 11:17:00,388 Jefferson St, Seattle,WA,98101 +277301,AAA Batteries (4-pack),2,2.99,2019-10-18 11:44:00,763 Dogwood St, San Francisco,CA,94016 +277302,34in Ultrawide Monitor,1,379.99,2019-10-29 11:38:00,259 Johnson St, New York City,NY,10001 +277303,Wired Headphones,1,11.99,2019-10-28 23:28:00,668 Chestnut St, Portland,OR,97035 +277304,27in 4K Gaming Monitor,1,389.99,2019-10-15 11:09:00,600 Forest St, Los Angeles,CA,90001 +277305,27in 4K Gaming Monitor,1,389.99,2019-10-07 13:22:00,543 10th St, San Francisco,CA,94016 +277306,AA Batteries (4-pack),1,3.84,2019-10-20 22:40:00,328 2nd St, Dallas,TX,75001 +277307,ThinkPad Laptop,1,999.99,2019-10-02 15:37:00,920 Maple St, Seattle,WA,98101 +277308,AA Batteries (4-pack),1,3.84,2019-10-16 12:05:00,407 12th St, Austin,TX,73301 +277309,Wired Headphones,1,11.99,2019-10-08 19:17:00,289 River St, Seattle,WA,98101 +277310,Apple Airpods Headphones,1,150.0,2019-10-19 09:34:00,325 5th St, San Francisco,CA,94016 +277311,Google Phone,1,600.0,2019-10-24 15:42:00,952 5th St, Portland,OR,97035 +277311,USB-C Charging Cable,1,11.95,2019-10-24 15:42:00,952 5th St, Portland,OR,97035 +277312,Google Phone,1,600.0,2019-10-21 10:08:00,795 Center St, San Francisco,CA,94016 +277313,34in Ultrawide Monitor,1,379.99,2019-10-03 12:02:00,566 14th St, San Francisco,CA,94016 +277314,Bose SoundSport Headphones,1,99.99,2019-10-14 12:28:00,622 1st St, Seattle,WA,98101 +277315,Lightning Charging Cable,1,14.95,2019-10-30 09:23:00,843 Main St, Atlanta,GA,30301 +277316,USB-C Charging Cable,1,11.95,2019-10-22 22:41:00,728 Walnut St, New York City,NY,10001 +277317,USB-C Charging Cable,1,11.95,2019-10-04 19:28:00,299 Main St, Portland,OR,97035 +277318,27in FHD Monitor,1,149.99,2019-10-24 21:58:00,22 Center St, Portland,OR,97035 +277319,Lightning Charging Cable,1,14.95,2019-10-20 10:16:00,145 Hill St, Boston,MA,02215 +277320,AA Batteries (4-pack),2,3.84,2019-10-16 12:47:00,39 West St, San Francisco,CA,94016 +277321,34in Ultrawide Monitor,1,379.99,2019-10-10 10:58:00,109 14th St, Los Angeles,CA,90001 +277322,Lightning Charging Cable,1,14.95,2019-10-15 12:13:00,81 2nd St, Boston,MA,02215 +277323,Macbook Pro Laptop,1,1700.0,2019-10-22 19:21:00,92 Highland St, Seattle,WA,98101 +277324,AA Batteries (4-pack),1,3.84,2019-10-15 15:23:00,576 Cherry St, Los Angeles,CA,90001 +277325,Wired Headphones,2,11.99,2019-10-02 00:58:00,439 Meadow St, Los Angeles,CA,90001 +277326,Wired Headphones,1,11.99,2019-10-22 20:09:00,397 2nd St, Portland,OR,97035 +277327,AA Batteries (4-pack),1,3.84,2019-10-12 14:07:00,550 Hill St, Seattle,WA,98101 +277328,27in 4K Gaming Monitor,1,389.99,2019-10-08 12:27:00,169 Wilson St, Los Angeles,CA,90001 +277329,27in FHD Monitor,1,149.99,2019-10-27 00:09:00,612 Hill St, Los Angeles,CA,90001 +277330,AA Batteries (4-pack),1,3.84,2019-10-18 13:34:00,717 South St, Seattle,WA,98101 +277331,Lightning Charging Cable,1,14.95,2019-10-18 13:14:00,564 14th St, Seattle,WA,98101 +277332,Apple Airpods Headphones,1,150.0,2019-10-09 11:46:00,12 North St, Los Angeles,CA,90001 +277333,USB-C Charging Cable,1,11.95,2019-10-21 16:18:00,620 Lakeview St, Austin,TX,73301 +277334,Macbook Pro Laptop,1,1700.0,2019-10-14 21:50:00,50 Highland St, New York City,NY,10001 +277335,LG Dryer,1,600.0,2019-10-24 13:51:00,79 10th St, San Francisco,CA,94016 +277336,Lightning Charging Cable,1,14.95,2019-10-05 18:42:00,158 North St, New York City,NY,10001 +277337,34in Ultrawide Monitor,1,379.99,2019-10-27 22:20:00,592 Hill St, Austin,TX,73301 +277338,Flatscreen TV,1,300.0,2019-10-13 17:35:00,13 Hill St, Seattle,WA,98101 +277339,Wired Headphones,1,11.99,2019-10-09 08:53:00,297 14th St, Dallas,TX,75001 +277340,Apple Airpods Headphones,1,150.0,2019-10-20 13:34:00,955 6th St, San Francisco,CA,94016 +277341,Wired Headphones,1,11.99,2019-10-25 15:20:00,863 Cherry St, New York City,NY,10001 +277342,Lightning Charging Cable,1,14.95,2019-10-28 12:35:00,576 Main St, San Francisco,CA,94016 +277343,USB-C Charging Cable,1,11.95,2019-10-05 19:12:00,790 Jackson St, Los Angeles,CA,90001 +277344,27in 4K Gaming Monitor,1,389.99,2019-10-11 13:02:00,874 Jefferson St, New York City,NY,10001 +277345,USB-C Charging Cable,1,11.95,2019-10-15 21:41:00,273 Dogwood St, San Francisco,CA,94016 +277346,Lightning Charging Cable,1,14.95,2019-10-28 22:23:00,838 Elm St, San Francisco,CA,94016 +277346,AA Batteries (4-pack),1,3.84,2019-10-28 22:23:00,838 Elm St, San Francisco,CA,94016 +277347,AA Batteries (4-pack),1,3.84,2019-10-03 15:08:00,739 8th St, San Francisco,CA,94016 +277348,27in FHD Monitor,1,149.99,2019-10-29 16:02:00,568 Willow St, New York City,NY,10001 +277349,Google Phone,1,600.0,2019-10-29 17:48:00,990 Lincoln St, Boston,MA,02215 +277349,USB-C Charging Cable,1,11.95,2019-10-29 17:48:00,990 Lincoln St, Boston,MA,02215 +277350,ThinkPad Laptop,1,999.99,2019-10-31 13:39:00,884 Jefferson St, Atlanta,GA,30301 +277351,27in 4K Gaming Monitor,1,389.99,2019-10-31 22:39:00,803 West St, Seattle,WA,98101 +277352,AAA Batteries (4-pack),1,2.99,2019-10-26 23:52:00,829 Jackson St, Portland,OR,97035 +277353,Apple Airpods Headphones,1,150.0,2019-10-28 19:09:00,472 Center St, Atlanta,GA,30301 +277354,AAA Batteries (4-pack),1,2.99,2019-10-15 09:30:00,114 14th St, San Francisco,CA,94016 +277355,Apple Airpods Headphones,1,150.0,2019-10-12 14:10:00,912 2nd St, Boston,MA,02215 +277356,AAA Batteries (4-pack),1,2.99,2019-10-10 16:47:00,605 4th St, San Francisco,CA,94016 +277357,USB-C Charging Cable,1,11.95,2019-10-11 20:12:00,661 South St, New York City,NY,10001 +277358,Macbook Pro Laptop,1,1700.0,2019-10-20 12:43:00,719 North St, Portland,ME,04101 +277359,Lightning Charging Cable,1,14.95,2019-10-04 06:58:00,649 South St, Dallas,TX,75001 +277360,Lightning Charging Cable,1,14.95,2019-10-16 23:29:00,592 Lakeview St, Dallas,TX,75001 +277361,iPhone,1,700.0,2019-10-14 17:35:00,937 Elm St, Atlanta,GA,30301 +277362,AAA Batteries (4-pack),2,2.99,2019-10-29 17:55:00,949 North St, Dallas,TX,75001 +277363,AAA Batteries (4-pack),1,2.99,2019-10-17 11:39:00,457 Hill St, San Francisco,CA,94016 +277364,Google Phone,1,600.0,2019-10-26 14:36:00,997 Hickory St, Portland,OR,97035 +277364,USB-C Charging Cable,1,11.95,2019-10-26 14:36:00,997 Hickory St, Portland,OR,97035 +277365,USB-C Charging Cable,1,11.95,2019-10-26 17:33:00,9 Meadow St, San Francisco,CA,94016 +277366,AA Batteries (4-pack),2,3.84,2019-10-07 19:35:00,535 2nd St, San Francisco,CA,94016 +277367,27in 4K Gaming Monitor,1,389.99,2019-10-09 19:21:00,435 Cherry St, New York City,NY,10001 +277368,USB-C Charging Cable,1,11.95,2019-10-04 18:12:00,893 Lake St, Los Angeles,CA,90001 +277369,Flatscreen TV,1,300.0,2019-10-22 18:26:00,39 Lincoln St, San Francisco,CA,94016 +277370,iPhone,1,700.0,2019-10-30 04:07:00,211 Pine St, Boston,MA,02215 +277371,Lightning Charging Cable,1,14.95,2019-10-30 22:09:00,281 Maple St, Los Angeles,CA,90001 +277372,27in 4K Gaming Monitor,1,389.99,2019-10-13 10:29:00,379 Jefferson St, Seattle,WA,98101 +277373,Wired Headphones,2,11.99,2019-10-26 18:59:00,749 14th St, San Francisco,CA,94016 +277374,27in FHD Monitor,1,149.99,2019-10-18 19:08:00,125 4th St, Atlanta,GA,30301 +277375,Apple Airpods Headphones,1,150.0,2019-10-11 23:08:00,121 River St, Austin,TX,73301 +277376,20in Monitor,1,109.99,2019-10-19 03:37:00,679 Chestnut St, Dallas,TX,75001 +277377,Wired Headphones,1,11.99,2019-10-11 12:58:00,869 South St, Seattle,WA,98101 +277378,Wired Headphones,1,11.99,2019-10-13 15:56:00,36 Spruce St, San Francisco,CA,94016 +277379,Apple Airpods Headphones,1,150.0,2019-10-07 22:44:00,407 Center St, Boston,MA,02215 +277380,Apple Airpods Headphones,1,150.0,2019-10-09 07:33:00,781 Maple St, Boston,MA,02215 +277381,Wired Headphones,1,11.99,2019-10-08 20:53:00,681 West St, Atlanta,GA,30301 +277382,Bose SoundSport Headphones,1,99.99,2019-10-03 17:44:00,342 Lakeview St, New York City,NY,10001 +277383,20in Monitor,1,109.99,2019-10-25 18:52:00,560 Cherry St, San Francisco,CA,94016 +277384,ThinkPad Laptop,1,999.99,2019-10-31 10:27:00,622 Meadow St, Los Angeles,CA,90001 +277385,Lightning Charging Cable,1,14.95,2019-10-09 23:02:00,998 7th St, San Francisco,CA,94016 +277386,Lightning Charging Cable,1,14.95,2019-10-21 20:20:00,716 Adams St, Portland,OR,97035 +277387,Wired Headphones,1,11.99,2019-10-13 20:31:00,152 Hickory St, Portland,OR,97035 +277388,Bose SoundSport Headphones,1,99.99,2019-10-07 22:04:00,968 North St, Atlanta,GA,30301 +277389,Google Phone,1,600.0,2019-10-23 13:28:00,811 11th St, Dallas,TX,75001 +277390,Bose SoundSport Headphones,1,99.99,2019-10-02 18:33:00,491 Maple St, Los Angeles,CA,90001 +277391,Lightning Charging Cable,1,14.95,2019-10-21 12:58:00,408 Highland St, San Francisco,CA,94016 +277392,20in Monitor,1,109.99,2019-10-27 10:31:00,734 Main St, Los Angeles,CA,90001 +277393,iPhone,1,700.0,2019-10-28 16:39:00,882 Cherry St, Portland,OR,97035 +277394,USB-C Charging Cable,1,11.95,2019-10-01 16:40:00,151 Washington St, San Francisco,CA,94016 +277395,AA Batteries (4-pack),1,3.84,2019-10-10 13:46:00,529 River St, Austin,TX,73301 +277396,ThinkPad Laptop,1,999.99,2019-10-30 23:12:00,613 River St, Austin,TX,73301 +277397,27in FHD Monitor,1,149.99,2019-10-05 17:59:00,411 Hickory St, Seattle,WA,98101 +277398,AA Batteries (4-pack),1,3.84,2019-10-06 01:12:00,962 Walnut St, Boston,MA,02215 +277399,AA Batteries (4-pack),1,3.84,2019-10-08 16:30:00,204 South St, Boston,MA,02215 +277400,AAA Batteries (4-pack),2,2.99,2019-10-02 18:53:00,452 Center St, San Francisco,CA,94016 +277401,Lightning Charging Cable,1,14.95,2019-10-27 19:59:00,807 Washington St, Los Angeles,CA,90001 +277402,iPhone,1,700.0,2019-10-25 18:53:00,688 Adams St, Austin,TX,73301 +277403,AA Batteries (4-pack),1,3.84,2019-10-12 13:45:00,385 Willow St, Portland,OR,97035 +277404,AAA Batteries (4-pack),2,2.99,2019-10-22 12:32:00,417 Hickory St, Dallas,TX,75001 +277405,Bose SoundSport Headphones,1,99.99,2019-10-16 22:58:00,561 Elm St, Seattle,WA,98101 +277406,AAA Batteries (4-pack),1,2.99,2019-10-23 18:30:00,107 Sunset St, Boston,MA,02215 +277407,AA Batteries (4-pack),1,3.84,2019-10-07 19:27:00,461 Chestnut St, Seattle,WA,98101 +277408,AAA Batteries (4-pack),1,2.99,2019-10-28 14:45:00,459 Wilson St, Los Angeles,CA,90001 +277409,AA Batteries (4-pack),1,3.84,2019-10-18 15:28:00,128 Cedar St, Boston,MA,02215 +277410,Wired Headphones,1,11.99,2019-10-04 23:03:00,783 North St, New York City,NY,10001 +277411,Lightning Charging Cable,1,14.95,2019-10-15 16:28:00,299 Wilson St, New York City,NY,10001 +277412,USB-C Charging Cable,1,11.95,2019-10-20 21:22:00,18 Cherry St, Austin,TX,73301 +277413,Lightning Charging Cable,1,14.95,2019-10-14 18:00:00,957 6th St, Seattle,WA,98101 +277414,AA Batteries (4-pack),1,3.84,2019-10-28 20:58:00,833 Church St, New York City,NY,10001 +277415,AA Batteries (4-pack),2,3.84,2019-10-24 16:06:00,309 Meadow St, Seattle,WA,98101 +277416,USB-C Charging Cable,1,11.95,2019-10-28 17:51:00,586 12th St, Atlanta,GA,30301 +277417,Wired Headphones,1,11.99,2019-10-14 14:30:00,428 Meadow St, New York City,NY,10001 +277418,Wired Headphones,1,11.99,2019-10-25 17:39:00,199 Washington St, Boston,MA,02215 +277419,USB-C Charging Cable,1,11.95,2019-10-24 21:18:00,533 Forest St, Boston,MA,02215 +277420,Bose SoundSport Headphones,1,99.99,2019-10-07 15:05:00,900 Jefferson St, Seattle,WA,98101 +277421,USB-C Charging Cable,1,11.95,2019-10-13 11:35:00,260 Adams St, San Francisco,CA,94016 +277422,AAA Batteries (4-pack),1,2.99,2019-10-15 13:05:00,389 5th St, Atlanta,GA,30301 +277423,iPhone,1,700.0,2019-10-13 16:10:00,272 Lake St, Dallas,TX,75001 +277424,AA Batteries (4-pack),4,3.84,2019-10-10 17:33:00,62 Hill St, San Francisco,CA,94016 +277425,Macbook Pro Laptop,1,1700.0,2019-10-30 21:20:00,462 West St, Dallas,TX,75001 +277426,ThinkPad Laptop,1,999.99,2019-10-29 18:45:00,778 7th St, Atlanta,GA,30301 +277427,Lightning Charging Cable,1,14.95,2019-10-15 08:08:00,857 14th St, Seattle,WA,98101 +277428,AAA Batteries (4-pack),1,2.99,2019-10-03 23:00:00,667 Willow St, Boston,MA,02215 +277429,Macbook Pro Laptop,1,1700.0,2019-10-28 19:15:00,226 Cherry St, Boston,MA,02215 +277430,Lightning Charging Cable,1,14.95,2019-10-24 09:21:00,635 5th St, Los Angeles,CA,90001 +277431,Lightning Charging Cable,1,14.95,2019-10-15 12:53:00,747 7th St, San Francisco,CA,94016 +277432,USB-C Charging Cable,1,11.95,2019-10-07 20:34:00,334 Washington St, Portland,OR,97035 +277432,Wired Headphones,1,11.99,2019-10-07 20:34:00,334 Washington St, Portland,OR,97035 +277433,Wired Headphones,2,11.99,2019-10-28 21:50:00,443 South St, Los Angeles,CA,90001 +277434,Lightning Charging Cable,1,14.95,2019-10-22 10:38:00,136 Lincoln St, Seattle,WA,98101 +277435,AA Batteries (4-pack),1,3.84,2019-10-30 00:05:00,659 Jackson St, Boston,MA,02215 +277436,Wired Headphones,1,11.99,2019-10-10 20:30:00,100 Main St, Boston,MA,02215 +277437,Bose SoundSport Headphones,1,99.99,2019-10-06 11:32:00,421 Jackson St, Los Angeles,CA,90001 +277438,Apple Airpods Headphones,1,150.0,2019-10-13 10:00:00,954 8th St, San Francisco,CA,94016 +277439,Lightning Charging Cable,1,14.95,2019-10-08 14:50:00,472 Highland St, San Francisco,CA,94016 +277440,Apple Airpods Headphones,1,150.0,2019-10-05 17:20:00,961 Johnson St, Portland,ME,04101 +277441,AA Batteries (4-pack),2,3.84,2019-10-20 12:09:00,634 Jackson St, New York City,NY,10001 +277442,Apple Airpods Headphones,1,150.0,2019-10-17 10:44:00,364 7th St, Seattle,WA,98101 +277443,AAA Batteries (4-pack),1,2.99,2019-10-01 20:13:00,157 Park St, Portland,OR,97035 +277444,Vareebadd Phone,1,400.0,2019-10-28 14:14:00,934 Washington St, Los Angeles,CA,90001 +277445,Lightning Charging Cable,1,14.95,2019-10-05 16:58:00,941 7th St, Seattle,WA,98101 +277446,AAA Batteries (4-pack),1,2.99,2019-10-27 21:30:00,550 Park St, Portland,OR,97035 +277447,USB-C Charging Cable,1,11.95,2019-10-23 16:39:00,16 Lake St, New York City,NY,10001 +277448,27in 4K Gaming Monitor,1,389.99,2019-10-26 12:04:00,352 4th St, San Francisco,CA,94016 +277449,Lightning Charging Cable,1,14.95,2019-10-04 16:37:00,665 Park St, Dallas,TX,75001 +277450,Apple Airpods Headphones,1,150.0,2019-10-19 20:43:00,702 Adams St, Boston,MA,02215 +277451,AA Batteries (4-pack),1,3.84,2019-10-14 00:42:00,30 Jackson St, Boston,MA,02215 +277452,USB-C Charging Cable,1,11.95,2019-10-15 10:14:00,936 4th St, Atlanta,GA,30301 +277453,USB-C Charging Cable,1,11.95,2019-10-14 11:54:00,541 Chestnut St, Los Angeles,CA,90001 +277454,AAA Batteries (4-pack),3,2.99,2019-10-05 17:27:00,50 5th St, Dallas,TX,75001 +277455,USB-C Charging Cable,1,11.95,2019-10-22 11:06:00,799 2nd St, New York City,NY,10001 +277456,AA Batteries (4-pack),1,3.84,2019-10-28 10:26:00,547 Jackson St, Los Angeles,CA,90001 +277457,Lightning Charging Cable,1,14.95,2019-10-20 22:25:00,178 Forest St, San Francisco,CA,94016 +277458,Wired Headphones,1,11.99,2019-10-15 20:02:00,261 Dogwood St, San Francisco,CA,94016 +277459,Wired Headphones,1,11.99,2019-10-08 13:20:00,109 Lincoln St, Los Angeles,CA,90001 +277460,iPhone,1,700.0,2019-10-12 02:00:00,213 Sunset St, Seattle,WA,98101 +277460,Apple Airpods Headphones,1,150.0,2019-10-12 02:00:00,213 Sunset St, Seattle,WA,98101 +277461,ThinkPad Laptop,1,999.99,2019-10-01 10:00:00,484 2nd St, Los Angeles,CA,90001 +277462,Macbook Pro Laptop,1,1700.0,2019-10-28 18:24:00,512 Pine St, Portland,OR,97035 +277463,USB-C Charging Cable,1,11.95,2019-10-01 20:27:00,228 Highland St, Boston,MA,02215 +277464,Lightning Charging Cable,1,14.95,2019-10-12 18:41:00,267 Johnson St, Los Angeles,CA,90001 +277465,Google Phone,1,600.0,2019-10-22 17:09:00,162 Willow St, Los Angeles,CA,90001 +277466,AAA Batteries (4-pack),1,2.99,2019-10-02 12:03:00,523 13th St, Boston,MA,02215 +277467,AA Batteries (4-pack),2,3.84,2019-10-31 16:33:00,692 Center St, Dallas,TX,75001 +277468,Google Phone,1,600.0,2019-10-01 08:08:00,462 9th St, New York City,NY,10001 +277469,27in FHD Monitor,1,149.99,2019-10-28 12:24:00,444 Dogwood St, Los Angeles,CA,90001 +277470,AAA Batteries (4-pack),1,2.99,2019-10-19 18:44:00,40 Washington St, Austin,TX,73301 +277471,AAA Batteries (4-pack),7,2.99,2019-10-09 17:48:00,158 Lakeview St, San Francisco,CA,94016 +277472,AA Batteries (4-pack),1,3.84,2019-10-26 11:48:00,124 Forest St, Dallas,TX,75001 +277473,AA Batteries (4-pack),2,3.84,2019-10-24 21:12:00,531 12th St, San Francisco,CA,94016 +277474,AA Batteries (4-pack),2,3.84,2019-10-07 07:19:00,16 Maple St, Dallas,TX,75001 +277475,Apple Airpods Headphones,1,150.0,2019-10-17 12:24:00,118 Lake St, San Francisco,CA,94016 +277476,AA Batteries (4-pack),1,3.84,2019-10-17 22:35:00,628 Lake St, Los Angeles,CA,90001 +277477,AAA Batteries (4-pack),1,2.99,2019-10-17 19:31:00,350 Washington St, Boston,MA,02215 +277478,Wired Headphones,1,11.99,2019-10-12 14:42:00,23 Jackson St, New York City,NY,10001 +277479,Apple Airpods Headphones,1,150.0,2019-10-19 20:58:00,953 Park St, Los Angeles,CA,90001 +277480,Bose SoundSport Headphones,1,99.99,2019-10-06 20:18:00,443 9th St, Los Angeles,CA,90001 +277481,Wired Headphones,1,11.99,2019-10-20 21:36:00,581 Cherry St, San Francisco,CA,94016 +277482,Google Phone,1,600.0,2019-10-29 08:02:00,156 Dogwood St, Boston,MA,02215 +277483,USB-C Charging Cable,3,11.95,2019-10-30 18:07:00,23 Lincoln St, San Francisco,CA,94016 +277484,Wired Headphones,1,11.99,2019-10-06 16:04:00,516 Wilson St, Portland,OR,97035 +277485,Lightning Charging Cable,1,14.95,2019-10-02 11:24:00,865 10th St, Los Angeles,CA,90001 +277486,USB-C Charging Cable,1,11.95,2019-10-26 14:11:00,409 11th St, New York City,NY,10001 +277487,Lightning Charging Cable,1,14.95,2019-10-12 12:39:00,662 Maple St, Boston,MA,02215 +277488,Vareebadd Phone,1,400.0,2019-10-07 22:38:00,958 5th St, Dallas,TX,75001 +277489,Lightning Charging Cable,1,14.95,2019-10-30 21:16:00,656 Jefferson St, San Francisco,CA,94016 +277490,Apple Airpods Headphones,1,150.0,2019-10-11 17:43:00,585 Highland St, San Francisco,CA,94016 +277491,Bose SoundSport Headphones,1,99.99,2019-10-17 19:25:00,304 Willow St, San Francisco,CA,94016 +277492,Lightning Charging Cable,1,14.95,2019-10-11 14:16:00,391 Willow St, New York City,NY,10001 +277493,Lightning Charging Cable,1,14.95,2019-10-26 14:08:00,38 Spruce St, Seattle,WA,98101 +277494,ThinkPad Laptop,1,999.99,2019-10-12 18:05:00,426 9th St, Los Angeles,CA,90001 +277495,Lightning Charging Cable,2,14.95,2019-10-05 20:49:00,748 9th St, Atlanta,GA,30301 +277496,20in Monitor,1,109.99,2019-10-27 14:27:00,67 Pine St, Dallas,TX,75001 +277497,AA Batteries (4-pack),1,3.84,2019-10-02 16:31:00,472 13th St, Los Angeles,CA,90001 +277498,Bose SoundSport Headphones,1,99.99,2019-10-20 15:49:00,556 Meadow St, San Francisco,CA,94016 +277499,Lightning Charging Cable,1,14.95,2019-10-26 00:04:00,112 Center St, Dallas,TX,75001 +277500,Wired Headphones,1,11.99,2019-10-21 19:05:00,350 Forest St, Portland,OR,97035 +277501,Flatscreen TV,1,300.0,2019-10-29 10:34:00,570 Maple St, Dallas,TX,75001 +277502,AA Batteries (4-pack),1,3.84,2019-10-04 23:34:00,212 Wilson St, Los Angeles,CA,90001 +277503,Macbook Pro Laptop,1,1700.0,2019-10-04 20:27:00,602 Hickory St, Austin,TX,73301 +277504,USB-C Charging Cable,1,11.95,2019-10-23 15:39:00,991 Chestnut St, San Francisco,CA,94016 +277505,USB-C Charging Cable,1,11.95,2019-10-18 19:22:00,332 Sunset St, San Francisco,CA,94016 +277506,AA Batteries (4-pack),2,3.84,2019-10-27 13:53:00,978 Dogwood St, Seattle,WA,98101 +277507,iPhone,1,700.0,2019-10-18 13:06:00,727 Highland St, Los Angeles,CA,90001 +277507,Wired Headphones,1,11.99,2019-10-18 13:06:00,727 Highland St, Los Angeles,CA,90001 +277508,Bose SoundSport Headphones,1,99.99,2019-10-05 21:26:00,276 Ridge St, Portland,OR,97035 +277509,AAA Batteries (4-pack),2,2.99,2019-10-10 01:07:00,823 Chestnut St, New York City,NY,10001 +277510,34in Ultrawide Monitor,1,379.99,2019-10-01 13:01:00,557 11th St, Atlanta,GA,30301 +277511,Apple Airpods Headphones,1,150.0,2019-10-28 21:13:00,483 Johnson St, Los Angeles,CA,90001 +277512,Google Phone,1,600.0,2019-10-15 11:58:00,218 2nd St, Portland,OR,97035 +277513,AAA Batteries (4-pack),1,2.99,2019-10-30 21:09:00,150 Hill St, San Francisco,CA,94016 +277514,27in 4K Gaming Monitor,1,389.99,2019-10-16 05:19:00,94 12th St, New York City,NY,10001 +277515,Apple Airpods Headphones,1,150.0,2019-10-28 11:54:00,92 Elm St, New York City,NY,10001 +277516,USB-C Charging Cable,1,11.95,2019-10-27 20:51:00,693 13th St, Atlanta,GA,30301 +277517,27in FHD Monitor,1,149.99,2019-10-23 12:02:00,146 7th St, Portland,OR,97035 +277518,USB-C Charging Cable,1,11.95,2019-10-03 01:17:00,151 Maple St, Los Angeles,CA,90001 +277519,USB-C Charging Cable,1,11.95,2019-10-24 00:33:00,198 Adams St, San Francisco,CA,94016 +277520,AAA Batteries (4-pack),1,2.99,2019-10-27 06:39:00,626 Madison St, Seattle,WA,98101 +277521,USB-C Charging Cable,1,11.95,2019-10-05 13:02:00,807 West St, Seattle,WA,98101 +277522,Wired Headphones,1,11.99,2019-10-12 22:11:00,238 8th St, San Francisco,CA,94016 +277523,Lightning Charging Cable,1,14.95,2019-10-08 19:13:00,172 Lakeview St, Los Angeles,CA,90001 +277524,Lightning Charging Cable,1,14.95,2019-10-18 19:02:00,453 Madison St, New York City,NY,10001 +277525,Google Phone,1,600.0,2019-10-07 20:37:00,262 14th St, New York City,NY,10001 +277525,USB-C Charging Cable,1,11.95,2019-10-07 20:37:00,262 14th St, New York City,NY,10001 +277526,27in FHD Monitor,1,149.99,2019-10-26 13:32:00,4 Adams St, Atlanta,GA,30301 +277527,AA Batteries (4-pack),1,3.84,2019-10-21 21:43:00,625 Jefferson St, New York City,NY,10001 +277528,Bose SoundSport Headphones,1,99.99,2019-10-15 15:39:00,25 Washington St, Los Angeles,CA,90001 +277529,Lightning Charging Cable,1,14.95,2019-10-23 19:36:00,893 Ridge St, San Francisco,CA,94016 +277530,AAA Batteries (4-pack),6,2.99,2019-10-01 11:44:00,324 Hill St, Boston,MA,02215 +277531,Wired Headphones,1,11.99,2019-10-04 02:29:00,311 2nd St, San Francisco,CA,94016 +277532,USB-C Charging Cable,1,11.95,2019-10-11 14:44:00,521 8th St, New York City,NY,10001 +277533,AA Batteries (4-pack),3,3.84,2019-10-23 15:47:00,563 South St, Boston,MA,02215 +277534,Wired Headphones,1,11.99,2019-10-13 14:14:00,327 Elm St, Austin,TX,73301 +277535,ThinkPad Laptop,1,999.99,2019-10-16 17:24:00,91 12th St, Portland,OR,97035 +277536,Wired Headphones,1,11.99,2019-10-24 00:21:00,378 Jackson St, Dallas,TX,75001 +277537,Lightning Charging Cable,1,14.95,2019-10-26 14:07:00,105 Wilson St, Boston,MA,02215 +277538,AAA Batteries (4-pack),1,2.99,2019-10-02 20:56:00,993 Meadow St, Atlanta,GA,30301 +277539,AA Batteries (4-pack),1,3.84,2019-10-03 13:51:00,807 Madison St, San Francisco,CA,94016 +277540,AAA Batteries (4-pack),2,2.99,2019-10-02 22:54:00,335 Pine St, Seattle,WA,98101 +277541,Apple Airpods Headphones,1,150.0,2019-10-20 01:24:00,622 Madison St, Boston,MA,02215 +277542,34in Ultrawide Monitor,1,379.99,2019-10-22 11:46:00,139 Church St, New York City,NY,10001 +277543,Lightning Charging Cable,1,14.95,2019-10-04 16:50:00,994 Hill St, Los Angeles,CA,90001 +277544,AAA Batteries (4-pack),1,2.99,2019-10-29 11:24:00,268 Ridge St, Los Angeles,CA,90001 +277545,Apple Airpods Headphones,1,150.0,2019-10-31 17:04:00,65 5th St, Seattle,WA,98101 +277546,Google Phone,1,600.0,2019-10-18 15:55:00,808 Maple St, Austin,TX,73301 +277547,Google Phone,1,600.0,2019-10-13 22:56:00,155 Hickory St, New York City,NY,10001 +277548,LG Dryer,1,600.0,2019-10-06 04:45:00,455 River St, Atlanta,GA,30301 +277548,27in 4K Gaming Monitor,1,389.99,2019-10-06 04:45:00,455 River St, Atlanta,GA,30301 +277549,34in Ultrawide Monitor,1,379.99,2019-10-23 19:07:00,262 4th St, New York City,NY,10001 +277550,AA Batteries (4-pack),1,3.84,2019-10-13 13:52:00,272 8th St, Seattle,WA,98101 +277551,Flatscreen TV,1,300.0,2019-10-02 15:54:00,391 Jackson St, Austin,TX,73301 +277552,Lightning Charging Cable,1,14.95,2019-10-03 15:11:00,465 2nd St, Austin,TX,73301 +277553,Wired Headphones,1,11.99,2019-10-28 17:14:00,102 South St, New York City,NY,10001 +277554,27in FHD Monitor,1,149.99,2019-10-08 00:37:00,560 Sunset St, Los Angeles,CA,90001 +277555,Google Phone,1,600.0,2019-10-06 22:03:00,297 Johnson St, Boston,MA,02215 +277556,USB-C Charging Cable,1,11.95,2019-10-15 07:51:00,442 Washington St, San Francisco,CA,94016 +277557,Lightning Charging Cable,1,14.95,2019-10-31 11:04:00,957 Main St, Boston,MA,02215 +277558,AAA Batteries (4-pack),1,2.99,2019-10-18 01:57:00,235 7th St, Boston,MA,02215 +277559,ThinkPad Laptop,1,999.99,2019-10-10 14:20:00,377 Sunset St, Dallas,TX,75001 +277560,27in 4K Gaming Monitor,1,389.99,2019-10-10 11:51:00,582 10th St, Austin,TX,73301 +277561,27in 4K Gaming Monitor,1,389.99,2019-10-27 13:48:00,74 Ridge St, San Francisco,CA,94016 +277562,34in Ultrawide Monitor,1,379.99,2019-10-31 17:49:00,939 Chestnut St, Boston,MA,02215 +277563,Apple Airpods Headphones,1,150.0,2019-10-08 16:42:00,640 West St, San Francisco,CA,94016 +277564,AAA Batteries (4-pack),3,2.99,2019-10-04 08:14:00,426 13th St, Dallas,TX,75001 +277565,Wired Headphones,1,11.99,2019-10-11 20:39:00,911 Wilson St, Los Angeles,CA,90001 +277566,AAA Batteries (4-pack),1,2.99,2019-10-31 19:16:00,884 Adams St, Dallas,TX,75001 +277567,27in FHD Monitor,1,149.99,2019-10-31 11:53:00,730 Sunset St, New York City,NY,10001 +277568,Apple Airpods Headphones,1,150.0,2019-10-14 20:47:00,605 Jefferson St, New York City,NY,10001 +277569,Lightning Charging Cable,1,14.95,2019-10-22 16:59:00,247 Willow St, Seattle,WA,98101 +277570,USB-C Charging Cable,1,11.95,2019-10-02 19:51:00,400 14th St, Los Angeles,CA,90001 +277571,Flatscreen TV,1,300.0,2019-10-24 23:57:00,421 Main St, Los Angeles,CA,90001 +277572,27in FHD Monitor,1,149.99,2019-10-05 18:06:00,724 2nd St, San Francisco,CA,94016 +277573,AA Batteries (4-pack),1,3.84,2019-10-17 12:37:00,2 8th St, Boston,MA,02215 +277574,Wired Headphones,1,11.99,2019-10-03 12:09:00,568 6th St, San Francisco,CA,94016 +277575,27in 4K Gaming Monitor,1,389.99,2019-10-13 20:10:00,130 Hill St, Atlanta,GA,30301 +277576,AA Batteries (4-pack),1,3.84,2019-10-31 18:45:00,301 Chestnut St, Portland,OR,97035 +277577,Wired Headphones,3,11.99,2019-10-21 10:23:00,986 Lincoln St, Dallas,TX,75001 +277578,Macbook Pro Laptop,1,1700.0,2019-10-09 21:13:00,400 Hill St, Los Angeles,CA,90001 +277578,Lightning Charging Cable,1,14.95,2019-10-09 21:13:00,400 Hill St, Los Angeles,CA,90001 +277579,AAA Batteries (4-pack),1,2.99,2019-10-22 17:28:00,554 Johnson St, Austin,TX,73301 +277580,Bose SoundSport Headphones,1,99.99,2019-10-27 23:04:00,875 Adams St, New York City,NY,10001 +277581,AAA Batteries (4-pack),1,2.99,2019-10-26 01:45:00,491 13th St, San Francisco,CA,94016 +277582,Flatscreen TV,1,300.0,2019-10-14 17:04:00,900 Chestnut St, Portland,OR,97035 +277583,Lightning Charging Cable,1,14.95,2019-10-12 23:51:00,694 Hill St, San Francisco,CA,94016 +277584,20in Monitor,1,109.99,2019-10-04 12:57:00,820 Main St, Atlanta,GA,30301 +277585,Google Phone,1,600.0,2019-10-02 15:28:00,739 Jefferson St, Portland,OR,97035 +277585,USB-C Charging Cable,1,11.95,2019-10-02 15:28:00,739 Jefferson St, Portland,OR,97035 +277585,Bose SoundSport Headphones,1,99.99,2019-10-02 15:28:00,739 Jefferson St, Portland,OR,97035 +277586,Google Phone,1,600.0,2019-10-08 14:29:00,180 7th St, San Francisco,CA,94016 +277586,Wired Headphones,1,11.99,2019-10-08 14:29:00,180 7th St, San Francisco,CA,94016 +277587,Wired Headphones,1,11.99,2019-10-08 19:56:00,14 North St, Dallas,TX,75001 +277588,Apple Airpods Headphones,1,150.0,2019-10-03 15:47:00,660 6th St, Boston,MA,02215 +277589,Lightning Charging Cable,1,14.95,2019-10-04 00:06:00,153 Madison St, San Francisco,CA,94016 +277590,Lightning Charging Cable,1,14.95,2019-10-19 22:06:00,538 Highland St, San Francisco,CA,94016 +277591,Wired Headphones,1,11.99,2019-10-20 12:26:00,355 Washington St, Los Angeles,CA,90001 +277592,AAA Batteries (4-pack),1,2.99,2019-10-11 16:19:00,129 Meadow St, Los Angeles,CA,90001 +277593,USB-C Charging Cable,1,11.95,2019-10-16 01:25:00,984 Lake St, San Francisco,CA,94016 +277594,Apple Airpods Headphones,1,150.0,2019-10-09 08:50:00,702 6th St, San Francisco,CA,94016 +277595,USB-C Charging Cable,1,11.95,2019-10-17 14:18:00,403 Cedar St, San Francisco,CA,94016 +277596,AA Batteries (4-pack),3,3.84,2019-10-26 11:04:00,391 Walnut St, San Francisco,CA,94016 +277597,AAA Batteries (4-pack),1,2.99,2019-10-03 20:50:00,107 Lincoln St, Portland,OR,97035 +277598,iPhone,1,700.0,2019-10-05 17:05:00,341 Dogwood St, New York City,NY,10001 +277599,27in 4K Gaming Monitor,1,389.99,2019-10-02 11:19:00,683 6th St, Dallas,TX,75001 +277600,Lightning Charging Cable,1,14.95,2019-10-20 12:46:00,81 2nd St, San Francisco,CA,94016 +277601,AAA Batteries (4-pack),1,2.99,2019-10-23 12:34:00,536 11th St, New York City,NY,10001 +277602,Macbook Pro Laptop,1,1700.0,2019-10-20 10:53:00,312 Main St, San Francisco,CA,94016 +277603,Apple Airpods Headphones,1,150.0,2019-10-07 15:38:00,194 Church St, Boston,MA,02215 +277604,34in Ultrawide Monitor,1,379.99,2019-10-03 04:07:00,78 8th St, Portland,OR,97035 +277605,AA Batteries (4-pack),2,3.84,2019-10-21 07:41:00,180 Ridge St, San Francisco,CA,94016 +277606,27in FHD Monitor,1,149.99,2019-10-13 10:11:00,179 Spruce St, San Francisco,CA,94016 +277607,Lightning Charging Cable,1,14.95,2019-10-29 10:57:00,201 Spruce St, New York City,NY,10001 +277608,Lightning Charging Cable,1,14.95,2019-10-26 19:11:00,694 River St, Boston,MA,02215 +277608,USB-C Charging Cable,1,11.95,2019-10-26 19:11:00,694 River St, Boston,MA,02215 +277609,AA Batteries (4-pack),1,3.84,2019-10-15 14:53:00,568 Church St, Boston,MA,02215 +277610,USB-C Charging Cable,1,11.95,2019-10-25 14:45:00,555 Walnut St, Seattle,WA,98101 +277611,AA Batteries (4-pack),1,3.84,2019-10-29 11:52:00,159 Spruce St, Portland,ME,04101 +277612,USB-C Charging Cable,1,11.95,2019-10-12 10:13:00,4 Lake St, Los Angeles,CA,90001 +277613,Lightning Charging Cable,1,14.95,2019-10-11 16:59:00,791 Church St, San Francisco,CA,94016 +277614,Lightning Charging Cable,1,14.95,2019-10-07 15:19:00,609 Wilson St, Los Angeles,CA,90001 +277615,34in Ultrawide Monitor,1,379.99,2019-10-23 20:45:00,761 Meadow St, San Francisco,CA,94016 +277616,USB-C Charging Cable,1,11.95,2019-10-08 07:55:00,867 Maple St, San Francisco,CA,94016 +277617,AAA Batteries (4-pack),1,2.99,2019-10-15 18:35:00,444 7th St, Los Angeles,CA,90001 +277618,Wired Headphones,1,11.99,2019-10-05 14:27:00,973 Lincoln St, Portland,ME,04101 +277619,USB-C Charging Cable,1,11.95,2019-10-31 11:19:00,324 Highland St, Seattle,WA,98101 +277620,ThinkPad Laptop,1,999.99,2019-10-19 20:34:00,386 4th St, San Francisco,CA,94016 +277621,iPhone,1,700.0,2019-10-12 08:49:00,681 Maple St, San Francisco,CA,94016 +277621,Apple Airpods Headphones,1,150.0,2019-10-12 08:49:00,681 Maple St, San Francisco,CA,94016 +277622,AAA Batteries (4-pack),1,2.99,2019-10-16 21:53:00,289 Ridge St, Los Angeles,CA,90001 +277623,USB-C Charging Cable,1,11.95,2019-10-03 09:37:00,450 Washington St, San Francisco,CA,94016 +277623,Apple Airpods Headphones,1,150.0,2019-10-03 09:37:00,450 Washington St, San Francisco,CA,94016 +277624,20in Monitor,1,109.99,2019-10-27 19:45:00,163 Adams St, San Francisco,CA,94016 +277625,Apple Airpods Headphones,1,150.0,2019-10-07 13:59:00,395 9th St, San Francisco,CA,94016 +277626,USB-C Charging Cable,1,11.95,2019-10-23 15:27:00,509 Elm St, Dallas,TX,75001 +277627,USB-C Charging Cable,1,11.95,2019-10-30 09:12:00,337 5th St, San Francisco,CA,94016 +277627,Bose SoundSport Headphones,1,99.99,2019-10-30 09:12:00,337 5th St, San Francisco,CA,94016 +277628,USB-C Charging Cable,2,11.95,2019-10-27 07:09:00,928 Adams St, Portland,OR,97035 +277629,AAA Batteries (4-pack),2,2.99,2019-10-19 10:39:00,70 Maple St, San Francisco,CA,94016 +277630,27in 4K Gaming Monitor,1,389.99,2019-10-13 19:22:00,980 Dogwood St, San Francisco,CA,94016 +277631,AAA Batteries (4-pack),1,2.99,2019-10-17 22:39:00,895 Wilson St, Los Angeles,CA,90001 +277632,AA Batteries (4-pack),1,3.84,2019-10-03 10:36:00,226 Highland St, Boston,MA,02215 +277633,AAA Batteries (4-pack),2,2.99,2019-10-01 16:50:00,279 8th St, Los Angeles,CA,90001 +277634,AA Batteries (4-pack),2,3.84,2019-10-11 19:53:00,514 Sunset St, Portland,OR,97035 +277635,USB-C Charging Cable,1,11.95,2019-10-31 14:33:00,152 13th St, Atlanta,GA,30301 +277636,AA Batteries (4-pack),1,3.84,2019-10-05 17:39:00,714 South St, Boston,MA,02215 +277637,Lightning Charging Cable,1,14.95,2019-10-20 05:23:00,188 Forest St, San Francisco,CA,94016 +277638,Lightning Charging Cable,1,14.95,2019-10-13 11:28:00,89 West St, Boston,MA,02215 +277639,AAA Batteries (4-pack),2,2.99,2019-10-10 16:39:00,571 Wilson St, Atlanta,GA,30301 +277640,Apple Airpods Headphones,1,150.0,2019-10-01 14:14:00,392 6th St, Austin,TX,73301 +277641,Vareebadd Phone,1,400.0,2019-10-26 01:58:00,231 Walnut St, Dallas,TX,75001 +277642,Flatscreen TV,1,300.0,2019-10-23 12:23:00,454 Maple St, Dallas,TX,75001 +277643,USB-C Charging Cable,1,11.95,2019-10-27 19:25:00,285 Center St, San Francisco,CA,94016 +277644,USB-C Charging Cable,1,11.95,2019-10-27 13:23:00,451 Jefferson St, Atlanta,GA,30301 +277645,AAA Batteries (4-pack),1,2.99,2019-10-04 17:24:00,66 Cedar St, Seattle,WA,98101 +277646,AAA Batteries (4-pack),2,2.99,2019-10-28 18:49:00,930 12th St, San Francisco,CA,94016 +277647,27in 4K Gaming Monitor,1,389.99,2019-11-01 02:15:00,72 River St, Boston,MA,02215 +277648,Wired Headphones,2,11.99,2019-10-02 05:10:00,928 Adams St, Seattle,WA,98101 +277649,27in FHD Monitor,1,149.99,2019-10-10 05:59:00,425 8th St, Los Angeles,CA,90001 +277650,AA Batteries (4-pack),1,3.84,2019-10-30 09:41:00,662 Willow St, San Francisco,CA,94016 +277651,USB-C Charging Cable,2,11.95,2019-10-01 19:36:00,882 8th St, San Francisco,CA,94016 +277652,Lightning Charging Cable,1,14.95,2019-10-27 03:38:00,174 Walnut St, Portland,OR,97035 +277653,Apple Airpods Headphones,1,150.0,2019-10-23 09:05:00,805 4th St, Seattle,WA,98101 +277654,Wired Headphones,1,11.99,2019-10-25 19:52:00,293 Jefferson St, Seattle,WA,98101 +277655,Wired Headphones,1,11.99,2019-10-03 00:13:00,59 Cedar St, San Francisco,CA,94016 +277656,AA Batteries (4-pack),1,3.84,2019-10-23 18:31:00,29 River St, Los Angeles,CA,90001 +277657,AA Batteries (4-pack),1,3.84,2019-10-14 13:52:00,998 8th St, Dallas,TX,75001 +277658,AA Batteries (4-pack),1,3.84,2019-10-29 23:16:00,555 Madison St, Boston,MA,02215 +277659,AA Batteries (4-pack),1,3.84,2019-10-07 23:37:00,182 North St, Boston,MA,02215 +277660,20in Monitor,1,109.99,2019-10-19 11:12:00,285 2nd St, Dallas,TX,75001 +277661,34in Ultrawide Monitor,1,379.99,2019-10-11 11:38:00,809 North St, Dallas,TX,75001 +277662,Apple Airpods Headphones,1,150.0,2019-10-02 20:28:00,739 5th St, San Francisco,CA,94016 +277663,20in Monitor,1,109.99,2019-10-17 21:15:00,983 13th St, New York City,NY,10001 +277664,ThinkPad Laptop,1,999.99,2019-10-31 16:53:00,381 Madison St, Portland,OR,97035 +277665,Flatscreen TV,1,300.0,2019-10-16 16:23:00,967 Center St, Boston,MA,02215 +277666,ThinkPad Laptop,1,999.99,2019-10-05 12:26:00,778 13th St, San Francisco,CA,94016 +277667,27in FHD Monitor,1,149.99,2019-10-28 16:29:00,664 Spruce St, Los Angeles,CA,90001 +277668,iPhone,1,700.0,2019-10-22 07:59:00,346 Jefferson St, New York City,NY,10001 +277668,20in Monitor,1,109.99,2019-10-22 07:59:00,346 Jefferson St, New York City,NY,10001 +277669,iPhone,1,700.0,2019-10-30 22:27:00,152 Ridge St, Seattle,WA,98101 +277670,Bose SoundSport Headphones,1,99.99,2019-10-21 15:18:00,329 11th St, San Francisco,CA,94016 +277671,Lightning Charging Cable,1,14.95,2019-10-12 22:05:00,322 12th St, Dallas,TX,75001 +277672,Wired Headphones,1,11.99,2019-10-25 00:24:00,972 Main St, San Francisco,CA,94016 +277673,ThinkPad Laptop,1,999.99,2019-10-17 08:45:00,575 Meadow St, Los Angeles,CA,90001 +277674,Wired Headphones,1,11.99,2019-10-25 21:03:00,927 13th St, Seattle,WA,98101 +277675,Apple Airpods Headphones,1,150.0,2019-10-04 20:22:00,640 Cherry St, San Francisco,CA,94016 +277676,Lightning Charging Cable,1,14.95,2019-10-29 22:44:00,552 Sunset St, Dallas,TX,75001 +277677,27in FHD Monitor,1,149.99,2019-10-10 20:45:00,383 7th St, Atlanta,GA,30301 +277678,Google Phone,1,600.0,2019-10-07 22:33:00,908 Jackson St, Los Angeles,CA,90001 +277679,Lightning Charging Cable,1,14.95,2019-10-29 14:52:00,60 10th St, Austin,TX,73301 +277679,iPhone,1,700.0,2019-10-29 14:52:00,60 10th St, Austin,TX,73301 +277680,USB-C Charging Cable,1,11.95,2019-10-12 20:59:00,922 Pine St, San Francisco,CA,94016 +277681,USB-C Charging Cable,1,11.95,2019-10-08 12:35:00,96 4th St, New York City,NY,10001 +277682,Macbook Pro Laptop,1,1700.0,2019-10-09 09:47:00,953 Park St, Los Angeles,CA,90001 +277683,27in 4K Gaming Monitor,1,389.99,2019-10-23 11:24:00,420 Church St, Los Angeles,CA,90001 +277684,Wired Headphones,1,11.99,2019-10-16 19:48:00,345 Dogwood St, Dallas,TX,75001 +277685,AAA Batteries (4-pack),1,2.99,2019-10-16 22:05:00,827 6th St, Los Angeles,CA,90001 +277686,Apple Airpods Headphones,1,150.0,2019-10-22 18:43:00,93 9th St, Atlanta,GA,30301 +277687,USB-C Charging Cable,2,11.95,2019-10-19 16:19:00,322 Hill St, San Francisco,CA,94016 +277688,Lightning Charging Cable,1,14.95,2019-10-17 13:23:00,916 Washington St, Boston,MA,02215 +277689,iPhone,1,700.0,2019-10-29 12:50:00,871 Dogwood St, Portland,OR,97035 +277689,Lightning Charging Cable,1,14.95,2019-10-29 12:50:00,871 Dogwood St, Portland,OR,97035 +277689,Apple Airpods Headphones,1,150.0,2019-10-29 12:50:00,871 Dogwood St, Portland,OR,97035 +277690,Apple Airpods Headphones,1,150.0,2019-10-25 21:08:00,444 Jefferson St, Los Angeles,CA,90001 +277691,iPhone,1,700.0,2019-10-26 14:43:00,346 1st St, Los Angeles,CA,90001 +277692,Bose SoundSport Headphones,1,99.99,2019-10-14 22:43:00,577 Cherry St, San Francisco,CA,94016 +277692,34in Ultrawide Monitor,1,379.99,2019-10-14 22:43:00,577 Cherry St, San Francisco,CA,94016 +277693,27in FHD Monitor,1,149.99,2019-10-04 16:36:00,718 7th St, Austin,TX,73301 +277694,AAA Batteries (4-pack),2,2.99,2019-10-13 11:44:00,322 Main St, San Francisco,CA,94016 +277695,Wired Headphones,1,11.99,2019-10-31 14:04:00,789 Madison St, Atlanta,GA,30301 +277696,USB-C Charging Cable,1,11.95,2019-10-26 21:09:00,377 Walnut St, Los Angeles,CA,90001 +277697,Bose SoundSport Headphones,1,99.99,2019-10-26 12:06:00,791 Hickory St, Los Angeles,CA,90001 +277698,34in Ultrawide Monitor,1,379.99,2019-10-27 23:20:00,201 Forest St, New York City,NY,10001 +277699,USB-C Charging Cable,1,11.95,2019-10-26 15:07:00,249 Hill St, Dallas,TX,75001 +277700,USB-C Charging Cable,1,11.95,2019-10-15 18:57:00,462 Main St, New York City,NY,10001 +277701,Lightning Charging Cable,1,14.95,2019-10-29 16:21:00,386 10th St, San Francisco,CA,94016 +277702,Apple Airpods Headphones,1,150.0,2019-10-06 07:37:00,336 Elm St, San Francisco,CA,94016 +277703,AAA Batteries (4-pack),1,2.99,2019-10-22 10:24:00,575 9th St, Boston,MA,02215 +277704,Bose SoundSport Headphones,1,99.99,2019-10-15 12:31:00,140 9th St, San Francisco,CA,94016 +277705,Apple Airpods Headphones,1,150.0,2019-10-15 09:30:00,686 10th St, Seattle,WA,98101 +277706,Apple Airpods Headphones,1,150.0,2019-10-31 11:39:00,846 12th St, Boston,MA,02215 +277707,USB-C Charging Cable,1,11.95,2019-10-28 13:47:00,980 7th St, Atlanta,GA,30301 +277708,34in Ultrawide Monitor,1,379.99,2019-10-05 18:45:00,146 Spruce St, Los Angeles,CA,90001 +277709,34in Ultrawide Monitor,1,379.99,2019-10-15 17:36:00,679 11th St, Los Angeles,CA,90001 +277710,USB-C Charging Cable,1,11.95,2019-10-30 16:28:00,332 Jackson St, New York City,NY,10001 +277711,AA Batteries (4-pack),2,3.84,2019-10-12 20:48:00,864 Elm St, Atlanta,GA,30301 +277712,Wired Headphones,1,11.99,2019-10-07 20:02:00,363 Main St, Portland,OR,97035 +277713,Flatscreen TV,1,300.0,2019-10-02 03:37:00,986 North St, Los Angeles,CA,90001 +277714,AA Batteries (4-pack),1,3.84,2019-10-11 14:11:00,329 7th St, San Francisco,CA,94016 +277715,AA Batteries (4-pack),1,3.84,2019-10-13 10:42:00,22 Chestnut St, Dallas,TX,75001 +277716,Macbook Pro Laptop,1,1700.0,2019-10-01 11:32:00,986 Washington St, Seattle,WA,98101 +277717,Macbook Pro Laptop,1,1700.0,2019-10-25 19:14:00,787 4th St, Seattle,WA,98101 +277718,Apple Airpods Headphones,1,150.0,2019-10-08 19:57:00,189 Lincoln St, Los Angeles,CA,90001 +277719,Lightning Charging Cable,1,14.95,2019-10-27 19:45:00,858 7th St, New York City,NY,10001 +277720,34in Ultrawide Monitor,1,379.99,2019-10-16 15:51:00,907 9th St, New York City,NY,10001 +277721,AAA Batteries (4-pack),2,2.99,2019-10-10 13:11:00,937 Walnut St, Portland,OR,97035 +277722,USB-C Charging Cable,1,11.95,2019-10-26 06:36:00,243 West St, New York City,NY,10001 +277723,Bose SoundSport Headphones,1,99.99,2019-10-20 03:00:00,763 Main St, Seattle,WA,98101 +277724,ThinkPad Laptop,1,999.99,2019-10-01 20:55:00,67 9th St, Los Angeles,CA,90001 +277725,AA Batteries (4-pack),1,3.84,2019-10-23 09:27:00,923 10th St, Los Angeles,CA,90001 +277726,AA Batteries (4-pack),1,3.84,2019-10-29 19:28:00,963 Maple St, San Francisco,CA,94016 +277727,AAA Batteries (4-pack),1,2.99,2019-10-12 11:35:00,612 8th St, Boston,MA,02215 +277728,Apple Airpods Headphones,1,150.0,2019-10-26 16:31:00,769 Madison St, Atlanta,GA,30301 +277729,27in 4K Gaming Monitor,1,389.99,2019-10-29 12:53:00,784 Cedar St, Los Angeles,CA,90001 +277730,Lightning Charging Cable,1,14.95,2019-10-12 17:12:00,483 13th St, Atlanta,GA,30301 +277731,USB-C Charging Cable,1,11.95,2019-10-22 15:25:00,461 Church St, Los Angeles,CA,90001 +277732,USB-C Charging Cable,1,11.95,2019-10-29 19:15:00,754 Main St, Boston,MA,02215 +277733,USB-C Charging Cable,1,11.95,2019-10-09 10:50:00,203 Ridge St, Boston,MA,02215 +277734,Wired Headphones,1,11.99,2019-10-20 09:39:00,248 Forest St, Atlanta,GA,30301 +277735,Wired Headphones,1,11.99,2019-10-06 19:20:00,769 13th St, Los Angeles,CA,90001 +277736,LG Washing Machine,1,600.0,2019-10-03 11:57:00,22 11th St, Los Angeles,CA,90001 +277737,Apple Airpods Headphones,1,150.0,2019-10-27 19:40:00,635 Maple St, Los Angeles,CA,90001 +277738,Lightning Charging Cable,1,14.95,2019-10-19 08:21:00,351 Willow St, San Francisco,CA,94016 +277739,Lightning Charging Cable,1,14.95,2019-10-25 18:32:00,448 West St, Portland,ME,04101 +277740,Apple Airpods Headphones,1,150.0,2019-10-01 09:54:00,901 Main St, New York City,NY,10001 +277741,USB-C Charging Cable,1,11.95,2019-10-20 09:15:00,204 Lake St, Atlanta,GA,30301 +277742,ThinkPad Laptop,1,999.99,2019-10-06 11:00:00,911 Forest St, Boston,MA,02215 +277743,Apple Airpods Headphones,1,150.0,2019-10-06 11:22:00,777 7th St, San Francisco,CA,94016 +277744,AAA Batteries (4-pack),1,2.99,2019-10-29 11:00:00,964 Hill St, Atlanta,GA,30301 +277745,AAA Batteries (4-pack),1,2.99,2019-10-28 10:20:00,420 9th St, New York City,NY,10001 +277746,iPhone,1,700.0,2019-10-22 18:41:00,894 Lake St, San Francisco,CA,94016 +277747,27in 4K Gaming Monitor,1,389.99,2019-10-20 21:57:00,919 Hill St, New York City,NY,10001 +277748,Apple Airpods Headphones,1,150.0,2019-10-23 17:14:00,667 Johnson St, Los Angeles,CA,90001 +277749,iPhone,1,700.0,2019-10-19 13:34:00,829 Madison St, Los Angeles,CA,90001 +277750,AAA Batteries (4-pack),1,2.99,2019-10-19 18:42:00,528 Highland St, Los Angeles,CA,90001 +277751,AAA Batteries (4-pack),1,2.99,2019-10-27 13:29:00,421 Cedar St, Boston,MA,02215 +277752,Apple Airpods Headphones,1,150.0,2019-10-26 11:52:00,90 Walnut St, Los Angeles,CA,90001 +277753,USB-C Charging Cable,1,11.95,2019-10-13 23:30:00,823 Willow St, Atlanta,GA,30301 +277754,Wired Headphones,1,11.99,2019-10-27 17:40:00,721 River St, San Francisco,CA,94016 +277755,Google Phone,1,600.0,2019-10-03 11:09:00,38 Chestnut St, Boston,MA,02215 +277756,Google Phone,1,600.0,2019-10-05 13:12:00,163 6th St, San Francisco,CA,94016 +277757,AAA Batteries (4-pack),2,2.99,2019-10-05 01:47:00,279 Elm St, San Francisco,CA,94016 +277758,Wired Headphones,1,11.99,2019-10-16 05:00:00,195 North St, Austin,TX,73301 +277759,Macbook Pro Laptop,1,1700.0,2019-10-21 02:09:00,30 Spruce St, Los Angeles,CA,90001 +277760,AA Batteries (4-pack),1,3.84,2019-10-25 10:52:00,368 Ridge St, Atlanta,GA,30301 +277761,34in Ultrawide Monitor,1,379.99,2019-10-14 20:17:00,346 Lincoln St, New York City,NY,10001 +277762,AA Batteries (4-pack),1,3.84,2019-10-11 11:16:00,164 Lakeview St, Dallas,TX,75001 +277763,27in 4K Gaming Monitor,1,389.99,2019-10-14 19:54:00,291 13th St, Boston,MA,02215 +277764,Apple Airpods Headphones,2,150.0,2019-10-31 07:24:00,418 Chestnut St, San Francisco,CA,94016 +277765,Wired Headphones,1,11.99,2019-10-04 17:15:00,34 4th St, Portland,ME,04101 +277766,USB-C Charging Cable,1,11.95,2019-10-09 13:33:00,34 14th St, Los Angeles,CA,90001 +277767,Apple Airpods Headphones,1,150.0,2019-10-04 18:55:00,815 11th St, Dallas,TX,75001 +277768,Macbook Pro Laptop,1,1700.0,2019-10-07 12:30:00,478 12th St, Dallas,TX,75001 +277769,Apple Airpods Headphones,1,150.0,2019-10-07 12:13:00,814 Walnut St, Dallas,TX,75001 +277770,USB-C Charging Cable,1,11.95,2019-10-06 06:05:00,50 Willow St, Atlanta,GA,30301 +277771,AA Batteries (4-pack),1,3.84,2019-10-31 18:50:00,488 Church St, New York City,NY,10001 +277772,Apple Airpods Headphones,1,150.0,2019-10-17 09:41:00,611 Adams St, San Francisco,CA,94016 +277773,Macbook Pro Laptop,1,1700.0,2019-10-15 21:57:00,254 Cherry St, San Francisco,CA,94016 +277774,Apple Airpods Headphones,1,150.0,2019-10-11 18:14:00,565 Main St, Boston,MA,02215 +277775,Apple Airpods Headphones,1,150.0,2019-10-30 13:16:00,602 Elm St, Dallas,TX,75001 +277776,27in FHD Monitor,1,149.99,2019-10-12 18:20:00,872 Chestnut St, Los Angeles,CA,90001 +277777,AA Batteries (4-pack),1,3.84,2019-10-31 15:24:00,519 Cherry St, Portland,OR,97035 +277778,Bose SoundSport Headphones,1,99.99,2019-10-10 03:59:00,972 Meadow St, Dallas,TX,75001 +277779,AA Batteries (4-pack),2,3.84,2019-10-05 11:11:00,992 Jackson St, Dallas,TX,75001 +277780,34in Ultrawide Monitor,1,379.99,2019-10-17 12:14:00,508 Johnson St, Seattle,WA,98101 +277781,27in FHD Monitor,1,149.99,2019-10-07 20:45:00,998 Washington St, Boston,MA,02215 +277782,AA Batteries (4-pack),1,3.84,2019-10-25 18:37:00,3 Cedar St, San Francisco,CA,94016 +277783,AAA Batteries (4-pack),4,2.99,2019-10-06 18:33:00,189 South St, Los Angeles,CA,90001 +277784,Wired Headphones,1,11.99,2019-10-27 09:02:00,558 North St, New York City,NY,10001 +277785,Bose SoundSport Headphones,1,99.99,2019-10-19 20:09:00,820 Johnson St, Los Angeles,CA,90001 +277786,34in Ultrawide Monitor,1,379.99,2019-10-17 08:44:00,532 Highland St, Los Angeles,CA,90001 +277787,Apple Airpods Headphones,1,150.0,2019-10-07 18:06:00,712 Madison St, Boston,MA,02215 +277788,AAA Batteries (4-pack),1,2.99,2019-10-13 19:58:00,693 Center St, San Francisco,CA,94016 +277789,USB-C Charging Cable,1,11.95,2019-10-27 18:24:00,586 10th St, New York City,NY,10001 +277790,USB-C Charging Cable,1,11.95,2019-10-11 12:03:00,521 Church St, Los Angeles,CA,90001 +277791,AAA Batteries (4-pack),1,2.99,2019-10-17 16:35:00,631 Pine St, Los Angeles,CA,90001 +277792,20in Monitor,1,109.99,2019-10-24 11:33:00,19 Washington St, Boston,MA,02215 +277793,Wired Headphones,1,11.99,2019-10-17 19:49:00,268 Maple St, Boston,MA,02215 +277793,AA Batteries (4-pack),1,3.84,2019-10-17 19:49:00,268 Maple St, Boston,MA,02215 +277794,27in FHD Monitor,1,149.99,2019-10-19 09:20:00,764 Pine St, Dallas,TX,75001 +277795,iPhone,1,700.0,2019-10-03 16:52:00,526 9th St, San Francisco,CA,94016 +277796,27in FHD Monitor,1,149.99,2019-10-09 17:07:00,939 Lakeview St, Atlanta,GA,30301 +277797,AA Batteries (4-pack),1,3.84,2019-10-11 13:45:00,373 11th St, Boston,MA,02215 +277798,AAA Batteries (4-pack),2,2.99,2019-10-27 11:12:00,53 12th St, Los Angeles,CA,90001 +277799,27in FHD Monitor,1,149.99,2019-10-18 10:27:00,535 5th St, New York City,NY,10001 +277800,AAA Batteries (4-pack),1,2.99,2019-10-18 23:28:00,323 13th St, Los Angeles,CA,90001 +277801,AAA Batteries (4-pack),2,2.99,2019-10-25 02:10:00,536 Adams St, Los Angeles,CA,90001 +277802,ThinkPad Laptop,1,999.99,2019-10-25 14:47:00,767 Hill St, San Francisco,CA,94016 +277803,Wired Headphones,1,11.99,2019-10-02 15:15:00,709 Lake St, Seattle,WA,98101 +277804,27in FHD Monitor,1,149.99,2019-10-29 02:27:00,331 West St, Dallas,TX,75001 +277805,27in FHD Monitor,1,149.99,2019-10-16 14:21:00,826 11th St, New York City,NY,10001 +277806,Macbook Pro Laptop,1,1700.0,2019-10-18 17:49:00,424 Sunset St, Austin,TX,73301 +277807,Lightning Charging Cable,1,14.95,2019-10-29 15:34:00,696 13th St, New York City,NY,10001 +277808,20in Monitor,1,109.99,2019-10-14 17:46:00,676 Meadow St, San Francisco,CA,94016 +277809,Flatscreen TV,1,300.0,2019-10-15 21:17:00,570 4th St, San Francisco,CA,94016 +277810,Lightning Charging Cable,1,14.95,2019-10-29 18:10:00,220 Sunset St, Los Angeles,CA,90001 +277811,Apple Airpods Headphones,1,150.0,2019-10-30 16:16:00,855 Chestnut St, San Francisco,CA,94016 +277812,AA Batteries (4-pack),1,3.84,2019-10-22 15:54:00,643 Hickory St, Boston,MA,02215 +277813,AAA Batteries (4-pack),1,2.99,2019-10-11 16:07:00,261 Walnut St, New York City,NY,10001 +277814,USB-C Charging Cable,2,11.95,2019-10-20 08:55:00,707 Johnson St, San Francisco,CA,94016 +277815,27in 4K Gaming Monitor,1,389.99,2019-10-17 01:55:00,40 Cherry St, San Francisco,CA,94016 +277816,27in FHD Monitor,1,149.99,2019-10-06 12:38:00,346 Park St, New York City,NY,10001 +277817,27in FHD Monitor,1,149.99,2019-10-01 15:57:00,737 Hickory St, Seattle,WA,98101 +277818,Wired Headphones,1,11.99,2019-10-06 19:11:00,820 Spruce St, New York City,NY,10001 +277819,20in Monitor,1,109.99,2019-10-15 15:25:00,56 1st St, San Francisco,CA,94016 +277820,27in FHD Monitor,1,149.99,2019-10-06 19:19:00,909 Sunset St, San Francisco,CA,94016 +277821,Lightning Charging Cable,1,14.95,2019-10-25 21:18:00,357 West St, San Francisco,CA,94016 +277822,Wired Headphones,1,11.99,2019-10-26 16:01:00,992 8th St, San Francisco,CA,94016 +277823,USB-C Charging Cable,1,11.95,2019-10-28 19:56:00,181 Highland St, Los Angeles,CA,90001 +277824,Lightning Charging Cable,1,14.95,2019-10-26 19:47:00,374 12th St, Atlanta,GA,30301 +277825,Apple Airpods Headphones,1,150.0,2019-10-19 08:32:00,605 Adams St, Portland,OR,97035 +277826,Wired Headphones,1,11.99,2019-10-08 21:40:00,983 Walnut St, New York City,NY,10001 +277827,27in 4K Gaming Monitor,1,389.99,2019-10-06 21:02:00,910 10th St, Atlanta,GA,30301 +277828,34in Ultrawide Monitor,1,379.99,2019-10-20 14:25:00,872 West St, Austin,TX,73301 +277829,Lightning Charging Cable,1,14.95,2019-10-23 14:55:00,864 Cherry St, Los Angeles,CA,90001 +277830,Apple Airpods Headphones,1,150.0,2019-10-23 09:09:00,89 Park St, San Francisco,CA,94016 +277831,Apple Airpods Headphones,1,150.0,2019-10-04 17:08:00,353 7th St, Boston,MA,02215 +277832,AA Batteries (4-pack),1,3.84,2019-10-07 22:06:00,834 Lake St, Seattle,WA,98101 +277833,34in Ultrawide Monitor,1,379.99,2019-10-07 13:37:00,933 Hickory St, Dallas,TX,75001 +277834,34in Ultrawide Monitor,1,379.99,2019-10-21 11:47:00,618 Washington St, San Francisco,CA,94016 +277835,Wired Headphones,1,11.99,2019-10-11 20:37:00,246 Chestnut St, Portland,OR,97035 +277836,USB-C Charging Cable,1,11.95,2019-10-23 13:40:00,111 6th St, New York City,NY,10001 +277837,iPhone,1,700.0,2019-10-25 21:53:00,773 Johnson St, Los Angeles,CA,90001 +277838,Wired Headphones,1,11.99,2019-10-02 12:28:00,220 10th St, San Francisco,CA,94016 +277839,AAA Batteries (4-pack),1,2.99,2019-10-04 12:03:00,212 Center St, San Francisco,CA,94016 +277840,Bose SoundSport Headphones,1,99.99,2019-10-24 15:59:00,70 Spruce St, Dallas,TX,75001 +277841,20in Monitor,1,109.99,2019-10-22 13:34:00,580 8th St, San Francisco,CA,94016 +277842,USB-C Charging Cable,1,11.95,2019-10-06 06:42:00,555 Wilson St, Portland,OR,97035 +277843,Macbook Pro Laptop,1,1700.0,2019-10-18 16:50:00,217 Forest St, San Francisco,CA,94016 +277844,iPhone,1,700.0,2019-10-03 15:52:00,754 Madison St, New York City,NY,10001 +277845,Apple Airpods Headphones,1,150.0,2019-10-06 19:29:00,33 Jefferson St, San Francisco,CA,94016 +277846,Wired Headphones,1,11.99,2019-10-24 20:52:00,886 2nd St, Austin,TX,73301 +277847,USB-C Charging Cable,1,11.95,2019-10-24 17:35:00,455 Washington St, San Francisco,CA,94016 +277848,27in FHD Monitor,1,149.99,2019-10-16 08:40:00,703 Meadow St, New York City,NY,10001 +277849,Bose SoundSport Headphones,1,99.99,2019-10-04 00:32:00,248 Hickory St, Boston,MA,02215 +277850,20in Monitor,1,109.99,2019-10-27 21:40:00,235 Main St, San Francisco,CA,94016 +277851,27in FHD Monitor,1,149.99,2019-10-18 18:29:00,325 River St, Dallas,TX,75001 +277852,USB-C Charging Cable,1,11.95,2019-10-13 21:46:00,133 Highland St, Dallas,TX,75001 +277853,AA Batteries (4-pack),1,3.84,2019-10-29 22:06:00,92 Lincoln St, Dallas,TX,75001 +277854,Lightning Charging Cable,1,14.95,2019-10-27 05:11:00,264 8th St, Seattle,WA,98101 +277855,Lightning Charging Cable,1,14.95,2019-10-01 08:57:00,370 Forest St, Portland,OR,97035 +277856,Lightning Charging Cable,1,14.95,2019-10-01 18:09:00,916 6th St, San Francisco,CA,94016 +277857,Bose SoundSport Headphones,1,99.99,2019-10-30 11:38:00,994 7th St, New York City,NY,10001 +277858,ThinkPad Laptop,1,999.99,2019-10-03 20:23:00,865 Chestnut St, Dallas,TX,75001 +277859,iPhone,1,700.0,2019-10-26 19:17:00,943 Sunset St, Seattle,WA,98101 +277859,Wired Headphones,1,11.99,2019-10-26 19:17:00,943 Sunset St, Seattle,WA,98101 +277860,Bose SoundSport Headphones,1,99.99,2019-10-22 14:06:00,500 Lakeview St, San Francisco,CA,94016 +277861,Lightning Charging Cable,1,14.95,2019-10-30 21:12:00,210 4th St, San Francisco,CA,94016 +277862,27in FHD Monitor,1,149.99,2019-10-15 18:56:00,453 Sunset St, Dallas,TX,75001 +277863,27in FHD Monitor,1,149.99,2019-10-07 16:00:00,359 Lincoln St, Austin,TX,73301 +277864,Apple Airpods Headphones,1,150.0,2019-10-07 16:47:00,184 Dogwood St, San Francisco,CA,94016 +277865,USB-C Charging Cable,1,11.95,2019-10-24 18:38:00,775 Wilson St, Los Angeles,CA,90001 +277866,Flatscreen TV,1,300.0,2019-10-04 18:10:00,193 North St, San Francisco,CA,94016 +277867,Apple Airpods Headphones,1,150.0,2019-10-29 12:01:00,806 Lake St, San Francisco,CA,94016 +277868,27in 4K Gaming Monitor,1,389.99,2019-10-18 18:20:00,494 Cedar St, Boston,MA,02215 +277869,AA Batteries (4-pack),1,3.84,2019-10-03 08:24:00,587 2nd St, Dallas,TX,75001 +277870,Lightning Charging Cable,1,14.95,2019-10-10 16:30:00,878 Dogwood St, Dallas,TX,75001 +277871,Wired Headphones,1,11.99,2019-10-23 01:34:00,369 8th St, Los Angeles,CA,90001 +277872,USB-C Charging Cable,1,11.95,2019-10-08 21:45:00,31 Maple St, San Francisco,CA,94016 +277873,USB-C Charging Cable,1,11.95,2019-10-08 13:38:00,602 2nd St, Boston,MA,02215 +277874,27in FHD Monitor,1,149.99,2019-10-06 10:41:00,522 14th St, San Francisco,CA,94016 +277875,Google Phone,1,600.0,2019-10-01 19:47:00,529 10th St, Los Angeles,CA,90001 +277875,USB-C Charging Cable,1,11.95,2019-10-01 19:47:00,529 10th St, Los Angeles,CA,90001 +277875,Wired Headphones,1,11.99,2019-10-01 19:47:00,529 10th St, Los Angeles,CA,90001 +277875,iPhone,1,700.0,2019-10-01 19:47:00,529 10th St, Los Angeles,CA,90001 +277876,AAA Batteries (4-pack),2,2.99,2019-10-04 18:23:00,784 Forest St, Atlanta,GA,30301 +277877,27in FHD Monitor,1,149.99,2019-10-26 08:13:00,929 2nd St, San Francisco,CA,94016 +277878,Bose SoundSport Headphones,1,99.99,2019-10-03 19:46:00,319 Lincoln St, Dallas,TX,75001 +277879,iPhone,1,700.0,2019-10-23 06:06:00,402 Spruce St, San Francisco,CA,94016 +277880,iPhone,1,700.0,2019-10-26 15:19:00,435 Church St, New York City,NY,10001 +277881,AA Batteries (4-pack),1,3.84,2019-10-18 22:05:00,229 13th St, San Francisco,CA,94016 +277882,USB-C Charging Cable,1,11.95,2019-10-07 16:51:00,470 13th St, Boston,MA,02215 +277883,34in Ultrawide Monitor,1,379.99,2019-10-01 16:32:00,247 7th St, Austin,TX,73301 +277884,Apple Airpods Headphones,1,150.0,2019-10-26 12:50:00,949 Maple St, San Francisco,CA,94016 +277885,Lightning Charging Cable,1,14.95,2019-10-29 11:33:00,911 Maple St, Seattle,WA,98101 +277886,Lightning Charging Cable,1,14.95,2019-10-12 08:31:00,676 1st St, Los Angeles,CA,90001 +277887,Apple Airpods Headphones,1,150.0,2019-10-02 12:37:00,77 Lake St, San Francisco,CA,94016 +277888,iPhone,1,700.0,2019-10-30 22:26:00,166 Church St, Boston,MA,02215 +277889,Macbook Pro Laptop,1,1700.0,2019-10-11 04:11:00,882 Madison St, Portland,OR,97035 +277890,Lightning Charging Cable,1,14.95,2019-10-10 12:08:00,439 Madison St, San Francisco,CA,94016 +277891,USB-C Charging Cable,1,11.95,2019-10-25 18:24:00,835 Sunset St, New York City,NY,10001 +277892,27in 4K Gaming Monitor,1,389.99,2019-10-04 08:34:00,928 Lincoln St, Boston,MA,02215 +277893,34in Ultrawide Monitor,1,379.99,2019-10-11 09:38:00,86 Lakeview St, Boston,MA,02215 +277894,Macbook Pro Laptop,1,1700.0,2019-10-15 17:37:00,373 4th St, Los Angeles,CA,90001 +277895,20in Monitor,1,109.99,2019-10-07 15:17:00,230 Forest St, New York City,NY,10001 +277895,USB-C Charging Cable,1,11.95,2019-10-07 15:17:00,230 Forest St, New York City,NY,10001 +277896,AA Batteries (4-pack),1,3.84,2019-10-14 19:46:00,522 Ridge St, Seattle,WA,98101 +277897,Lightning Charging Cable,1,14.95,2019-10-30 02:16:00,730 Lake St, San Francisco,CA,94016 +277898,27in FHD Monitor,1,149.99,2019-10-31 04:41:00,298 Madison St, Boston,MA,02215 +277899,Macbook Pro Laptop,1,1700.0,2019-10-19 09:23:00,88 Elm St, San Francisco,CA,94016 +277900,Wired Headphones,1,11.99,2019-10-07 22:46:00,130 Cedar St, Dallas,TX,75001 +277901,AA Batteries (4-pack),1,3.84,2019-10-17 16:19:00,788 Cedar St, New York City,NY,10001 +277902,Apple Airpods Headphones,1,150.0,2019-10-02 20:07:00,943 Hill St, Seattle,WA,98101 +277903,AA Batteries (4-pack),2,3.84,2019-10-27 02:22:00,963 Forest St, Austin,TX,73301 +277904,AAA Batteries (4-pack),3,2.99,2019-10-09 23:40:00,510 11th St, Austin,TX,73301 +277905,Google Phone,1,600.0,2019-10-22 22:09:00,978 North St, New York City,NY,10001 +277906,34in Ultrawide Monitor,1,379.99,2019-10-12 12:58:00,171 Elm St, San Francisco,CA,94016 +277907,USB-C Charging Cable,1,11.95,2019-10-28 18:37:00,67 North St, San Francisco,CA,94016 +277908,AA Batteries (4-pack),1,3.84,2019-10-15 19:58:00,666 Hickory St, San Francisco,CA,94016 +277909,Flatscreen TV,1,300.0,2019-10-21 19:40:00,983 Spruce St, San Francisco,CA,94016 +277910,27in 4K Gaming Monitor,1,389.99,2019-10-23 16:52:00,280 9th St, Los Angeles,CA,90001 +277911,Wired Headphones,2,11.99,2019-10-26 09:51:00,941 Park St, Seattle,WA,98101 +277912,AAA Batteries (4-pack),1,2.99,2019-10-24 09:56:00,934 Willow St, Los Angeles,CA,90001 +277913,AA Batteries (4-pack),4,3.84,2019-10-25 16:04:00,746 Meadow St, San Francisco,CA,94016 +277914,USB-C Charging Cable,1,11.95,2019-10-07 12:34:00,221 6th St, Atlanta,GA,30301 +277915,AAA Batteries (4-pack),2,2.99,2019-10-22 13:56:00,961 River St, Los Angeles,CA,90001 +277916,Lightning Charging Cable,1,14.95,2019-10-27 10:05:00,149 4th St, Portland,OR,97035 +277917,USB-C Charging Cable,1,11.95,2019-10-19 07:49:00,159 Main St, San Francisco,CA,94016 +277918,27in 4K Gaming Monitor,1,389.99,2019-10-10 16:44:00,27 Forest St, New York City,NY,10001 +277919,Flatscreen TV,1,300.0,2019-10-11 10:23:00,749 Willow St, Boston,MA,02215 +277920,Wired Headphones,1,11.99,2019-10-01 20:22:00,894 Jackson St, Boston,MA,02215 +277921,AAA Batteries (4-pack),1,2.99,2019-10-08 03:23:00,717 4th St, Boston,MA,02215 +277922,Bose SoundSport Headphones,1,99.99,2019-10-30 13:08:00,987 Ridge St, San Francisco,CA,94016 +277923,Wired Headphones,1,11.99,2019-10-19 00:08:00,671 River St, San Francisco,CA,94016 +277924,USB-C Charging Cable,1,11.95,2019-10-20 12:43:00,261 South St, San Francisco,CA,94016 +277925,34in Ultrawide Monitor,1,379.99,2019-10-07 08:27:00,490 Johnson St, Portland,ME,04101 +277926,Bose SoundSport Headphones,1,99.99,2019-10-19 11:00:00,376 1st St, San Francisco,CA,94016 +277927,Wired Headphones,1,11.99,2019-10-10 18:50:00,187 Dogwood St, Los Angeles,CA,90001 +277928,Bose SoundSport Headphones,1,99.99,2019-10-19 17:02:00,10 8th St, Los Angeles,CA,90001 +277929,Lightning Charging Cable,1,14.95,2019-10-02 20:51:00,639 Jefferson St, Seattle,WA,98101 +277930,AA Batteries (4-pack),1,3.84,2019-10-08 08:36:00,173 River St, Los Angeles,CA,90001 +277931,USB-C Charging Cable,1,11.95,2019-10-05 23:41:00,757 Church St, Seattle,WA,98101 +277932,Lightning Charging Cable,2,14.95,2019-10-13 12:17:00,646 Jefferson St, San Francisco,CA,94016 +277933,Bose SoundSport Headphones,1,99.99,2019-10-15 10:32:00,702 13th St, New York City,NY,10001 +277934,iPhone,1,700.0,2019-10-17 09:51:00,238 Dogwood St, Los Angeles,CA,90001 +277935,Lightning Charging Cable,1,14.95,2019-10-17 09:09:00,440 7th St, Los Angeles,CA,90001 +277936,27in 4K Gaming Monitor,1,389.99,2019-10-03 14:02:00,507 Main St, San Francisco,CA,94016 +277937,iPhone,1,700.0,2019-10-20 06:50:00,618 River St, Portland,OR,97035 +277938,Wired Headphones,1,11.99,2019-10-29 12:48:00,25 13th St, Seattle,WA,98101 +277939,Bose SoundSport Headphones,1,99.99,2019-11-01 01:44:00,430 Elm St, Los Angeles,CA,90001 +277940,Lightning Charging Cable,1,14.95,2019-10-16 17:42:00,891 Lakeview St, Dallas,TX,75001 +277941,ThinkPad Laptop,1,999.99,2019-10-19 17:15:00,187 North St, San Francisco,CA,94016 +277942,Lightning Charging Cable,1,14.95,2019-10-22 07:56:00,260 Maple St, San Francisco,CA,94016 +277943,Wired Headphones,1,11.99,2019-10-28 22:00:00,503 Washington St, Boston,MA,02215 +277944,Wired Headphones,1,11.99,2019-10-11 09:02:00,443 Maple St, San Francisco,CA,94016 +277945,AA Batteries (4-pack),1,3.84,2019-10-29 09:09:00,499 12th St, Austin,TX,73301 +277946,AAA Batteries (4-pack),1,2.99,2019-10-09 08:17:00,223 7th St, New York City,NY,10001 +277947,Wired Headphones,1,11.99,2019-10-15 20:54:00,427 8th St, Portland,OR,97035 +277948,Flatscreen TV,1,300.0,2019-10-21 11:25:00,305 Jackson St, Seattle,WA,98101 +277949,Wired Headphones,1,11.99,2019-10-29 14:28:00,835 Adams St, Dallas,TX,75001 +277950,Bose SoundSport Headphones,1,99.99,2019-10-20 10:19:00,2 Washington St, New York City,NY,10001 +277951,20in Monitor,1,109.99,2019-10-31 11:12:00,214 Lake St, San Francisco,CA,94016 +277952,Google Phone,1,600.0,2019-10-12 14:53:00,599 Jackson St, Austin,TX,73301 +277953,Wired Headphones,1,11.99,2019-10-31 23:24:00,600 6th St, Dallas,TX,75001 +277954,AA Batteries (4-pack),1,3.84,2019-10-12 08:12:00,783 Forest St, Los Angeles,CA,90001 +277955,Flatscreen TV,1,300.0,2019-10-16 19:22:00,591 1st St, New York City,NY,10001 +277956,27in 4K Gaming Monitor,1,389.99,2019-10-30 05:46:00,614 12th St, Boston,MA,02215 +277957,Lightning Charging Cable,1,14.95,2019-10-20 05:39:00,207 Chestnut St, Boston,MA,02215 +277958,27in FHD Monitor,1,149.99,2019-10-22 22:39:00,583 7th St, New York City,NY,10001 +277959,Lightning Charging Cable,1,14.95,2019-10-25 20:04:00,684 Spruce St, Los Angeles,CA,90001 +277960,AAA Batteries (4-pack),2,2.99,2019-10-12 18:13:00,938 River St, Austin,TX,73301 +277961,Wired Headphones,1,11.99,2019-10-20 18:35:00,977 Meadow St, Dallas,TX,75001 +277962,Macbook Pro Laptop,1,1700.0,2019-10-27 10:55:00,429 Main St, New York City,NY,10001 +277963,AA Batteries (4-pack),2,3.84,2019-10-13 20:03:00,471 Lincoln St, Dallas,TX,75001 +277964,Lightning Charging Cable,1,14.95,2019-10-20 12:33:00,968 Washington St, Austin,TX,73301 +277965,AAA Batteries (4-pack),2,2.99,2019-10-15 08:13:00,737 Meadow St, Portland,OR,97035 +277966,20in Monitor,1,109.99,2019-10-20 07:12:00,532 14th St, Los Angeles,CA,90001 +277967,USB-C Charging Cable,1,11.95,2019-10-26 10:41:00,832 9th St, New York City,NY,10001 +277968,LG Washing Machine,1,600.0,2019-10-30 11:35:00,167 Washington St, Los Angeles,CA,90001 +277969,AA Batteries (4-pack),1,3.84,2019-10-11 13:11:00,936 14th St, Los Angeles,CA,90001 +277970,AA Batteries (4-pack),1,3.84,2019-10-24 10:43:00,496 4th St, Los Angeles,CA,90001 +277971,Lightning Charging Cable,1,14.95,2019-10-22 19:51:00,347 Jefferson St, San Francisco,CA,94016 +277972,Lightning Charging Cable,1,14.95,2019-10-15 18:44:00,860 Johnson St, Boston,MA,02215 +277973,USB-C Charging Cable,1,11.95,2019-10-15 00:58:00,503 Madison St, Austin,TX,73301 +277974,27in 4K Gaming Monitor,1,389.99,2019-10-28 10:49:00,940 Willow St, Dallas,TX,75001 +277975,USB-C Charging Cable,1,11.95,2019-10-27 09:13:00,877 7th St, San Francisco,CA,94016 +277976,Wired Headphones,2,11.99,2019-10-03 00:10:00,263 Lakeview St, New York City,NY,10001 +277977,Bose SoundSport Headphones,1,99.99,2019-10-03 16:17:00,119 Forest St, Los Angeles,CA,90001 +277978,Bose SoundSport Headphones,1,99.99,2019-10-24 20:36:00,726 Chestnut St, Portland,OR,97035 +277979,27in 4K Gaming Monitor,1,389.99,2019-10-28 09:11:00,151 Forest St, Dallas,TX,75001 +277980,Wired Headphones,1,11.99,2019-10-27 07:09:00,886 Jefferson St, Los Angeles,CA,90001 +277981,AA Batteries (4-pack),1,3.84,2019-10-11 14:22:00,473 Madison St, Portland,OR,97035 +277982,Bose SoundSport Headphones,1,99.99,2019-10-16 11:13:00,741 9th St, Atlanta,GA,30301 +277983,27in FHD Monitor,1,149.99,2019-10-30 12:50:00,721 River St, New York City,NY,10001 +277984,Lightning Charging Cable,2,14.95,2019-10-31 23:10:00,787 Chestnut St, San Francisco,CA,94016 +277985,AAA Batteries (4-pack),1,2.99,2019-10-06 09:13:00,200 Cherry St, New York City,NY,10001 +277986,AAA Batteries (4-pack),1,2.99,2019-10-04 13:59:00,162 North St, Atlanta,GA,30301 +277987,AA Batteries (4-pack),1,3.84,2019-10-05 16:28:00,158 Main St, Los Angeles,CA,90001 +277988,Bose SoundSport Headphones,1,99.99,2019-10-26 12:10:00,136 Hill St, Los Angeles,CA,90001 +277989,Apple Airpods Headphones,1,150.0,2019-10-02 09:12:00,174 Willow St, San Francisco,CA,94016 +277990,AAA Batteries (4-pack),1,2.99,2019-10-27 10:46:00,527 Johnson St, Dallas,TX,75001 +277991,27in FHD Monitor,1,149.99,2019-10-04 11:07:00,76 Walnut St, Boston,MA,02215 +277992,AA Batteries (4-pack),1,3.84,2019-10-18 19:10:00,603 Elm St, San Francisco,CA,94016 +277993,Wired Headphones,1,11.99,2019-10-30 15:39:00,130 1st St, Boston,MA,02215 +277994,34in Ultrawide Monitor,1,379.99,2019-10-31 19:02:00,323 Dogwood St, Los Angeles,CA,90001 +277995,Lightning Charging Cable,1,14.95,2019-10-21 20:34:00,785 Lakeview St, Boston,MA,02215 +277996,Lightning Charging Cable,1,14.95,2019-10-25 12:37:00,575 North St, New York City,NY,10001 +277997,Lightning Charging Cable,1,14.95,2019-10-19 15:52:00,634 Maple St, Seattle,WA,98101 +277998,AAA Batteries (4-pack),2,2.99,2019-10-21 22:31:00,610 Jackson St, Boston,MA,02215 +277999,Lightning Charging Cable,1,14.95,2019-10-05 15:45:00,27 Forest St, New York City,NY,10001 +278000,iPhone,1,700.0,2019-10-25 10:25:00,138 Dogwood St, Seattle,WA,98101 +278001,34in Ultrawide Monitor,1,379.99,2019-10-10 09:48:00,688 Church St, New York City,NY,10001 +278002,AAA Batteries (4-pack),2,2.99,2019-10-10 21:36:00,919 Highland St, Atlanta,GA,30301 +278003,Flatscreen TV,1,300.0,2019-10-27 15:05:00,97 Cherry St, Dallas,TX,75001 +278004,Lightning Charging Cable,1,14.95,2019-10-07 14:26:00,31 Elm St, Dallas,TX,75001 +278005,USB-C Charging Cable,1,11.95,2019-10-15 18:01:00,583 Hill St, Boston,MA,02215 +278006,27in 4K Gaming Monitor,1,389.99,2019-10-23 07:39:00,665 Wilson St, Atlanta,GA,30301 +278007,Lightning Charging Cable,1,14.95,2019-10-18 18:10:00,114 Wilson St, Los Angeles,CA,90001 +278008,Apple Airpods Headphones,1,150.0,2019-10-26 12:47:00,342 6th St, Portland,OR,97035 +278009,Vareebadd Phone,1,400.0,2019-10-10 14:20:00,673 9th St, Dallas,TX,75001 +278010,34in Ultrawide Monitor,1,379.99,2019-10-22 12:42:00,11 9th St, Los Angeles,CA,90001 +278011,AAA Batteries (4-pack),3,2.99,2019-10-05 07:44:00,822 West St, Los Angeles,CA,90001 +278012,AAA Batteries (4-pack),2,2.99,2019-10-12 08:13:00,571 Park St, Los Angeles,CA,90001 +278013,AA Batteries (4-pack),1,3.84,2019-10-05 03:21:00,409 West St, San Francisco,CA,94016 +278014,ThinkPad Laptop,1,999.99,2019-10-07 10:13:00,656 Church St, San Francisco,CA,94016 +278015,Apple Airpods Headphones,1,150.0,2019-10-10 21:17:00,608 Madison St, Portland,OR,97035 +278016,AA Batteries (4-pack),1,3.84,2019-10-11 20:32:00,947 Hickory St, Los Angeles,CA,90001 +278017,27in FHD Monitor,1,149.99,2019-10-23 05:42:00,41 Lincoln St, San Francisco,CA,94016 +278018,Lightning Charging Cable,1,14.95,2019-10-26 18:21:00,179 Washington St, Atlanta,GA,30301 +278019,27in 4K Gaming Monitor,1,389.99,2019-10-18 17:05:00,90 Washington St, Portland,OR,97035 +278020,Apple Airpods Headphones,1,150.0,2019-10-26 18:24:00,924 Chestnut St, New York City,NY,10001 +278021,Wired Headphones,1,11.99,2019-10-09 08:08:00,951 Spruce St, San Francisco,CA,94016 +278022,AAA Batteries (4-pack),1,2.99,2019-10-24 15:41:00,229 Madison St, Dallas,TX,75001 +278023,AA Batteries (4-pack),1,3.84,2019-10-21 16:40:00,831 Lakeview St, Los Angeles,CA,90001 +278024,AAA Batteries (4-pack),2,2.99,2019-10-23 20:14:00,847 12th St, San Francisco,CA,94016 +278025,Wired Headphones,1,11.99,2019-10-08 11:17:00,415 8th St, Seattle,WA,98101 +278026,Bose SoundSport Headphones,1,99.99,2019-10-07 16:49:00,141 Main St, New York City,NY,10001 +278027,USB-C Charging Cable,1,11.95,2019-10-31 19:23:00,506 9th St, Los Angeles,CA,90001 +278028,AA Batteries (4-pack),2,3.84,2019-10-19 07:07:00,92 14th St, Los Angeles,CA,90001 +278029,Flatscreen TV,1,300.0,2019-10-09 19:39:00,491 Pine St, Los Angeles,CA,90001 +278030,Bose SoundSport Headphones,1,99.99,2019-10-11 13:23:00,547 13th St, San Francisco,CA,94016 +278031,20in Monitor,1,109.99,2019-10-18 19:44:00,220 5th St, New York City,NY,10001 +278032,AAA Batteries (4-pack),1,2.99,2019-10-16 17:12:00,837 West St, New York City,NY,10001 +278033,Bose SoundSport Headphones,1,99.99,2019-10-03 05:11:00,808 North St, New York City,NY,10001 +278034,20in Monitor,1,109.99,2019-10-26 01:40:00,612 Walnut St, New York City,NY,10001 +278035,Apple Airpods Headphones,1,150.0,2019-10-03 18:41:00,68 Lake St, Seattle,WA,98101 +278036,Macbook Pro Laptop,1,1700.0,2019-10-11 14:10:00,957 Maple St, Atlanta,GA,30301 +278037,Apple Airpods Headphones,1,150.0,2019-10-09 15:03:00,367 Main St, Dallas,TX,75001 +278038,Apple Airpods Headphones,1,150.0,2019-10-18 18:51:00,897 Cedar St, Atlanta,GA,30301 +278039,Apple Airpods Headphones,1,150.0,2019-10-01 15:31:00,997 12th St, New York City,NY,10001 +278040,Apple Airpods Headphones,1,150.0,2019-10-20 01:14:00,530 West St, New York City,NY,10001 +278041,AAA Batteries (4-pack),2,2.99,2019-10-15 10:40:00,84 Lincoln St, New York City,NY,10001 +278042,27in FHD Monitor,1,149.99,2019-10-01 12:10:00,367 Lakeview St, Los Angeles,CA,90001 +278043,Lightning Charging Cable,1,14.95,2019-10-15 20:18:00,584 14th St, Boston,MA,02215 +278044,AA Batteries (4-pack),2,3.84,2019-10-14 18:47:00,316 12th St, Los Angeles,CA,90001 +278045,Google Phone,1,600.0,2019-10-23 09:02:00,651 Park St, San Francisco,CA,94016 +278046,Lightning Charging Cable,1,14.95,2019-10-14 08:20:00,160 11th St, Atlanta,GA,30301 +278047,Bose SoundSport Headphones,1,99.99,2019-10-09 16:52:00,907 5th St, Seattle,WA,98101 +278048,iPhone,1,700.0,2019-10-11 11:16:00,121 Sunset St, San Francisco,CA,94016 +278049,Lightning Charging Cable,1,14.95,2019-10-08 05:11:00,819 Washington St, San Francisco,CA,94016 +278050,AAA Batteries (4-pack),3,2.99,2019-10-21 18:29:00,89 Meadow St, Atlanta,GA,30301 +278051,AA Batteries (4-pack),1,3.84,2019-10-18 16:21:00,555 Meadow St, Boston,MA,02215 +278052,Wired Headphones,1,11.99,2019-10-22 13:10:00,953 Maple St, New York City,NY,10001 +278053,ThinkPad Laptop,1,999.99,2019-10-15 12:39:00,519 2nd St, Austin,TX,73301 +278054,Lightning Charging Cable,2,14.95,2019-10-21 19:25:00,661 8th St, San Francisco,CA,94016 +278055,USB-C Charging Cable,1,11.95,2019-10-15 23:14:00,21 Adams St, Los Angeles,CA,90001 +278056,Lightning Charging Cable,1,14.95,2019-10-15 10:37:00,746 Pine St, New York City,NY,10001 +278057,USB-C Charging Cable,1,11.95,2019-10-27 19:56:00,992 Willow St, Los Angeles,CA,90001 +278058,AA Batteries (4-pack),2,3.84,2019-10-02 20:54:00,809 South St, Atlanta,GA,30301 +278059,AA Batteries (4-pack),1,3.84,2019-10-10 22:46:00,492 Lakeview St, Los Angeles,CA,90001 +278060,34in Ultrawide Monitor,1,379.99,2019-10-08 15:51:00,486 Lake St, Atlanta,GA,30301 +278061,USB-C Charging Cable,1,11.95,2019-10-19 21:49:00,860 South St, San Francisco,CA,94016 +278062,Wired Headphones,1,11.99,2019-10-02 21:39:00,769 Walnut St, San Francisco,CA,94016 +278063,AAA Batteries (4-pack),1,2.99,2019-10-19 09:34:00,494 South St, Los Angeles,CA,90001 +278064,Lightning Charging Cable,1,14.95,2019-10-30 21:27:00,945 Pine St, Boston,MA,02215 +278065,AA Batteries (4-pack),1,3.84,2019-10-10 20:14:00,269 4th St, Seattle,WA,98101 +278066,AA Batteries (4-pack),1,3.84,2019-10-08 20:35:00,308 Elm St, Dallas,TX,75001 +278067,Bose SoundSport Headphones,1,99.99,2019-10-31 06:54:00,340 5th St, Atlanta,GA,30301 +278068,iPhone,1,700.0,2019-10-10 19:30:00,548 Wilson St, New York City,NY,10001 +278068,Lightning Charging Cable,1,14.95,2019-10-10 19:30:00,548 Wilson St, New York City,NY,10001 +278068,Wired Headphones,1,11.99,2019-10-10 19:30:00,548 Wilson St, New York City,NY,10001 +278069,AAA Batteries (4-pack),2,2.99,2019-10-27 20:56:00,279 Jefferson St, New York City,NY,10001 +278070,AA Batteries (4-pack),1,3.84,2019-10-13 22:20:00,975 7th St, Los Angeles,CA,90001 +278071,Wired Headphones,2,11.99,2019-10-17 13:25:00,809 7th St, Austin,TX,73301 +278072,AAA Batteries (4-pack),1,2.99,2019-10-20 10:41:00,743 Willow St, New York City,NY,10001 +278073,Wired Headphones,1,11.99,2019-10-17 12:24:00,492 10th St, Portland,OR,97035 +278074,Wired Headphones,1,11.99,2019-10-02 19:25:00,204 Wilson St, Seattle,WA,98101 +278075,Apple Airpods Headphones,1,150.0,2019-10-08 11:11:00,570 Willow St, San Francisco,CA,94016 +278076,Lightning Charging Cable,1,14.95,2019-10-23 12:42:00,579 1st St, Los Angeles,CA,90001 +278077,Macbook Pro Laptop,1,1700.0,2019-10-24 11:40:00,618 14th St, Los Angeles,CA,90001 +278078,Apple Airpods Headphones,1,150.0,2019-10-07 16:15:00,435 2nd St, Dallas,TX,75001 +278079,Apple Airpods Headphones,1,150.0,2019-10-09 00:35:00,338 Lake St, New York City,NY,10001 +278080,AAA Batteries (4-pack),1,2.99,2019-10-24 05:25:00,400 Chestnut St, Seattle,WA,98101 +278081,USB-C Charging Cable,1,11.95,2019-10-20 13:40:00,509 1st St, Atlanta,GA,30301 +278082,Lightning Charging Cable,1,14.95,2019-10-11 19:15:00,856 Jefferson St, San Francisco,CA,94016 +278083,USB-C Charging Cable,1,11.95,2019-10-26 10:59:00,809 10th St, Boston,MA,02215 +278084,Flatscreen TV,1,300.0,2019-10-18 09:25:00,297 Center St, San Francisco,CA,94016 +278085,Apple Airpods Headphones,1,150.0,2019-10-11 11:35:00,425 Washington St, San Francisco,CA,94016 +278086,Bose SoundSport Headphones,1,99.99,2019-10-18 20:11:00,234 14th St, San Francisco,CA,94016 +278087,Apple Airpods Headphones,1,150.0,2019-10-24 16:58:00,857 Meadow St, Boston,MA,02215 +278088,USB-C Charging Cable,1,11.95,2019-10-18 19:27:00,944 2nd St, Seattle,WA,98101 +278089,USB-C Charging Cable,2,11.95,2019-10-17 16:41:00,725 Lakeview St, Dallas,TX,75001 +278090,AAA Batteries (4-pack),1,2.99,2019-10-11 18:52:00,181 1st St, Los Angeles,CA,90001 +278091,Apple Airpods Headphones,1,150.0,2019-10-25 15:57:00,986 Madison St, Austin,TX,73301 +278092,iPhone,1,700.0,2019-10-19 12:46:00,59 Lincoln St, Seattle,WA,98101 +278093,AAA Batteries (4-pack),2,2.99,2019-10-06 22:11:00,293 Walnut St, Los Angeles,CA,90001 +278094,Bose SoundSport Headphones,1,99.99,2019-10-01 13:43:00,356 12th St, San Francisco,CA,94016 +278095,Lightning Charging Cable,1,14.95,2019-10-05 11:27:00,771 Sunset St, Los Angeles,CA,90001 +278096,Lightning Charging Cable,1,14.95,2019-10-21 17:33:00,620 1st St, San Francisco,CA,94016 +278097,Wired Headphones,1,11.99,2019-10-22 07:36:00,184 Ridge St, Los Angeles,CA,90001 +278098,AAA Batteries (4-pack),1,2.99,2019-10-29 22:47:00,942 Cherry St, New York City,NY,10001 +278099,Wired Headphones,1,11.99,2019-10-17 17:40:00,312 5th St, Boston,MA,02215 +278100,27in FHD Monitor,1,149.99,2019-10-07 13:59:00,925 Elm St, Seattle,WA,98101 +278101,Vareebadd Phone,1,400.0,2019-10-11 23:55:00,25 2nd St, Portland,OR,97035 +278102,Lightning Charging Cable,1,14.95,2019-10-10 19:32:00,30 Madison St, Portland,OR,97035 +278103,Lightning Charging Cable,1,14.95,2019-10-02 06:50:00,177 Hickory St, Austin,TX,73301 +278104,AAA Batteries (4-pack),1,2.99,2019-10-07 19:05:00,800 Spruce St, Los Angeles,CA,90001 +278105,AA Batteries (4-pack),1,3.84,2019-10-06 05:35:00,944 Adams St, Dallas,TX,75001 +278106,Apple Airpods Headphones,1,150.0,2019-10-19 16:13:00,870 Adams St, Seattle,WA,98101 +278107,AAA Batteries (4-pack),2,2.99,2019-10-25 23:32:00,386 Dogwood St, Atlanta,GA,30301 +278108,Flatscreen TV,1,300.0,2019-10-10 14:00:00,588 8th St, Atlanta,GA,30301 +278109,Lightning Charging Cable,1,14.95,2019-10-16 11:08:00,396 1st St, San Francisco,CA,94016 +278110,Apple Airpods Headphones,1,150.0,2019-10-10 12:29:00,186 Wilson St, Atlanta,GA,30301 +278111,Lightning Charging Cable,1,14.95,2019-10-17 09:49:00,299 River St, Boston,MA,02215 +278112,Lightning Charging Cable,1,14.95,2019-10-03 12:46:00,110 North St, Los Angeles,CA,90001 +278113,27in FHD Monitor,1,149.99,2019-10-12 03:35:00,112 West St, San Francisco,CA,94016 +278114,Lightning Charging Cable,1,14.95,2019-10-23 12:36:00,132 Cherry St, Austin,TX,73301 +278115,Lightning Charging Cable,1,14.95,2019-10-04 16:35:00,903 Madison St, Boston,MA,02215 +278116,Apple Airpods Headphones,1,150.0,2019-10-24 17:00:00,572 Willow St, New York City,NY,10001 +278117,AA Batteries (4-pack),1,3.84,2019-10-01 10:25:00,628 Hill St, Portland,ME,04101 +278118,AAA Batteries (4-pack),1,2.99,2019-10-29 22:42:00,419 Jackson St, Los Angeles,CA,90001 +278119,AA Batteries (4-pack),1,3.84,2019-10-13 22:43:00,306 6th St, Austin,TX,73301 +278119,20in Monitor,1,109.99,2019-10-13 22:43:00,306 6th St, Austin,TX,73301 +278120,AAA Batteries (4-pack),3,2.99,2019-10-08 09:45:00,455 8th St, San Francisco,CA,94016 +278121,Lightning Charging Cable,1,14.95,2019-10-01 12:14:00,328 Cedar St, Dallas,TX,75001 +278122,20in Monitor,1,109.99,2019-10-02 21:40:00,94 Johnson St, Portland,OR,97035 +278123,Macbook Pro Laptop,1,1700.0,2019-10-14 11:47:00,630 Cherry St, Portland,OR,97035 +278124,Macbook Pro Laptop,1,1700.0,2019-10-22 20:12:00,252 Jefferson St, San Francisco,CA,94016 +278125,USB-C Charging Cable,1,11.95,2019-10-17 07:03:00,446 Sunset St, San Francisco,CA,94016 +278126,iPhone,1,700.0,2019-10-02 17:13:00,227 Cedar St, San Francisco,CA,94016 +278126,Apple Airpods Headphones,1,150.0,2019-10-02 17:13:00,227 Cedar St, San Francisco,CA,94016 +278126,Wired Headphones,1,11.99,2019-10-02 17:13:00,227 Cedar St, San Francisco,CA,94016 +278127,USB-C Charging Cable,1,11.95,2019-10-21 08:49:00,450 Jefferson St, San Francisco,CA,94016 +278128,AA Batteries (4-pack),1,3.84,2019-10-30 12:15:00,625 Elm St, Boston,MA,02215 +278129,Apple Airpods Headphones,1,150.0,2019-10-28 09:53:00,266 5th St, Seattle,WA,98101 +278130,iPhone,1,700.0,2019-10-27 11:35:00,465 7th St, Boston,MA,02215 +278131,AAA Batteries (4-pack),2,2.99,2019-10-13 23:52:00,368 Maple St, Portland,OR,97035 +278132,Bose SoundSport Headphones,1,99.99,2019-10-23 10:58:00,593 Hickory St, Atlanta,GA,30301 +278133,Apple Airpods Headphones,1,150.0,2019-10-24 14:11:00,868 Johnson St, Dallas,TX,75001 +278134,Lightning Charging Cable,1,14.95,2019-10-05 11:34:00,115 Elm St, Los Angeles,CA,90001 +278135,iPhone,1,700.0,2019-10-03 20:55:00,154 12th St, Boston,MA,02215 +278135,Apple Airpods Headphones,1,150.0,2019-10-03 20:55:00,154 12th St, Boston,MA,02215 +278136,34in Ultrawide Monitor,1,379.99,2019-10-10 16:54:00,355 Lake St, Los Angeles,CA,90001 +278137,Google Phone,1,600.0,2019-10-27 05:07:00,755 Maple St, Los Angeles,CA,90001 +278137,ThinkPad Laptop,1,999.99,2019-10-27 05:07:00,755 Maple St, Los Angeles,CA,90001 +278138,Bose SoundSport Headphones,1,99.99,2019-10-27 22:37:00,322 Wilson St, Dallas,TX,75001 +278139,AAA Batteries (4-pack),2,2.99,2019-10-26 12:31:00,858 Jefferson St, Los Angeles,CA,90001 +278140,Macbook Pro Laptop,1,1700.0,2019-10-27 15:11:00,743 Cedar St, Dallas,TX,75001 +278141,Macbook Pro Laptop,1,1700.0,2019-10-17 13:29:00,563 Hill St, Portland,OR,97035 +278142,34in Ultrawide Monitor,1,379.99,2019-10-28 23:09:00,826 9th St, Dallas,TX,75001 +278143,Lightning Charging Cable,1,14.95,2019-10-03 15:18:00,973 Dogwood St, Dallas,TX,75001 +278144,34in Ultrawide Monitor,1,379.99,2019-10-09 19:01:00,141 Highland St, Portland,OR,97035 +278145,Apple Airpods Headphones,1,150.0,2019-10-24 14:36:00,971 Walnut St, Boston,MA,02215 +278146,Wired Headphones,1,11.99,2019-10-09 14:23:00,248 Center St, New York City,NY,10001 +278147,34in Ultrawide Monitor,1,379.99,2019-10-27 11:47:00,459 9th St, Seattle,WA,98101 +278148,AAA Batteries (4-pack),1,2.99,2019-10-09 14:10:00,658 Main St, Portland,OR,97035 +278149,USB-C Charging Cable,1,11.95,2019-10-17 16:03:00,983 Main St, San Francisco,CA,94016 +278150,Apple Airpods Headphones,1,150.0,2019-10-18 17:24:00,269 13th St, Seattle,WA,98101 +278151,Bose SoundSport Headphones,1,99.99,2019-10-24 01:53:00,175 Wilson St, Portland,ME,04101 +278152,Google Phone,1,600.0,2019-10-10 16:28:00,643 11th St, Dallas,TX,75001 +278153,AA Batteries (4-pack),2,3.84,2019-10-22 21:48:00,288 7th St, Dallas,TX,75001 +278154,AAA Batteries (4-pack),1,2.99,2019-10-20 11:26:00,923 Hickory St, Portland,OR,97035 +278155,34in Ultrawide Monitor,1,379.99,2019-10-09 01:53:00,483 Hickory St, Boston,MA,02215 +278156,iPhone,1,700.0,2019-10-12 13:59:00,123 Park St, New York City,NY,10001 +278157,USB-C Charging Cable,1,11.95,2019-10-25 11:43:00,362 Main St, Boston,MA,02215 +278158,Google Phone,1,600.0,2019-10-19 21:13:00,58 Elm St, Portland,OR,97035 +278158,USB-C Charging Cable,1,11.95,2019-10-19 21:13:00,58 Elm St, Portland,OR,97035 +278159,USB-C Charging Cable,1,11.95,2019-10-05 17:20:00,534 Main St, San Francisco,CA,94016 +278160,34in Ultrawide Monitor,1,379.99,2019-10-29 17:58:00,408 Adams St, New York City,NY,10001 +278161,AA Batteries (4-pack),1,3.84,2019-10-02 11:54:00,232 Meadow St, New York City,NY,10001 +278162,AAA Batteries (4-pack),1,2.99,2019-10-17 17:36:00,363 14th St, Los Angeles,CA,90001 +278163,USB-C Charging Cable,1,11.95,2019-10-09 22:43:00,178 Wilson St, Seattle,WA,98101 +278164,AAA Batteries (4-pack),1,2.99,2019-10-24 19:15:00,230 Dogwood St, New York City,NY,10001 +278165,Macbook Pro Laptop,1,1700.0,2019-10-14 17:42:00,576 Hill St, Austin,TX,73301 +278166,AA Batteries (4-pack),1,3.84,2019-10-12 20:47:00,811 Chestnut St, San Francisco,CA,94016 +278167,27in FHD Monitor,1,149.99,2019-10-16 23:25:00,224 14th St, Boston,MA,02215 +278168,Macbook Pro Laptop,1,1700.0,2019-10-24 12:48:00,536 River St, Seattle,WA,98101 +278168,Lightning Charging Cable,1,14.95,2019-10-24 12:48:00,536 River St, Seattle,WA,98101 +278169,Google Phone,1,600.0,2019-10-07 11:27:00,447 South St, Austin,TX,73301 +278169,USB-C Charging Cable,1,11.95,2019-10-07 11:27:00,447 South St, Austin,TX,73301 +278169,Wired Headphones,1,11.99,2019-10-07 11:27:00,447 South St, Austin,TX,73301 +278170,USB-C Charging Cable,1,11.95,2019-10-28 14:58:00,288 River St, Boston,MA,02215 +278171,Vareebadd Phone,1,400.0,2019-10-21 21:25:00,425 11th St, Atlanta,GA,30301 +278172,AA Batteries (4-pack),1,3.84,2019-10-06 17:44:00,585 Jefferson St, New York City,NY,10001 +278173,Lightning Charging Cable,1,14.95,2019-10-02 11:15:00,628 South St, Los Angeles,CA,90001 +278174,Lightning Charging Cable,1,14.95,2019-10-02 10:48:00,80 Church St, San Francisco,CA,94016 +278175,Bose SoundSport Headphones,1,99.99,2019-10-04 17:13:00,842 Cherry St, Austin,TX,73301 +278176,USB-C Charging Cable,1,11.95,2019-10-06 22:15:00,746 West St, New York City,NY,10001 +278176,27in FHD Monitor,1,149.99,2019-10-06 22:15:00,746 West St, New York City,NY,10001 +278177,Wired Headphones,1,11.99,2019-10-18 16:54:00,518 Washington St, Austin,TX,73301 +278178,27in FHD Monitor,1,149.99,2019-10-16 21:52:00,241 Elm St, Portland,ME,04101 +278179,AAA Batteries (4-pack),1,2.99,2019-10-28 11:25:00,853 9th St, Seattle,WA,98101 +278180,Lightning Charging Cable,1,14.95,2019-10-25 21:01:00,264 Johnson St, New York City,NY,10001 +278181,Lightning Charging Cable,1,14.95,2019-10-06 18:24:00,170 10th St, San Francisco,CA,94016 +278182,Wired Headphones,1,11.99,2019-10-16 19:05:00,739 12th St, Seattle,WA,98101 +278183,Google Phone,1,600.0,2019-10-01 20:42:00,198 Main St, Los Angeles,CA,90001 +278184,AA Batteries (4-pack),1,3.84,2019-10-25 15:50:00,942 Jefferson St, Portland,OR,97035 +278185,AA Batteries (4-pack),1,3.84,2019-10-21 10:07:00,874 13th St, Boston,MA,02215 +278186,Wired Headphones,1,11.99,2019-10-15 12:16:00,935 Wilson St, New York City,NY,10001 +278187,USB-C Charging Cable,1,11.95,2019-10-04 10:17:00,271 South St, Portland,OR,97035 +278188,34in Ultrawide Monitor,1,379.99,2019-10-25 13:15:00,279 13th St, New York City,NY,10001 +278189,Lightning Charging Cable,1,14.95,2019-10-25 19:09:00,685 Church St, Los Angeles,CA,90001 +278190,Wired Headphones,1,11.99,2019-10-19 14:56:00,656 Forest St, Seattle,WA,98101 +278191,USB-C Charging Cable,1,11.95,2019-10-25 11:12:00,385 7th St, New York City,NY,10001 +278192,AAA Batteries (4-pack),2,2.99,2019-10-01 11:07:00,41 West St, San Francisco,CA,94016 +278193,AAA Batteries (4-pack),2,2.99,2019-10-31 07:34:00,870 Johnson St, San Francisco,CA,94016 +278194,AA Batteries (4-pack),1,3.84,2019-10-18 14:55:00,147 Church St, New York City,NY,10001 +278195,AA Batteries (4-pack),1,3.84,2019-10-02 18:45:00,593 Walnut St, Austin,TX,73301 +278196,Bose SoundSport Headphones,1,99.99,2019-10-09 00:03:00,252 Cherry St, Dallas,TX,75001 +278196,Google Phone,1,600.0,2019-10-09 00:03:00,252 Cherry St, Dallas,TX,75001 +278197,Lightning Charging Cable,1,14.95,2019-10-12 16:39:00,504 Madison St, New York City,NY,10001 +278198,AAA Batteries (4-pack),1,2.99,2019-10-31 12:58:00,265 Dogwood St, Seattle,WA,98101 +278199,iPhone,1,700.0,2019-10-04 18:29:00,805 Chestnut St, Seattle,WA,98101 +278200,USB-C Charging Cable,1,11.95,2019-10-07 18:02:00,92 9th St, San Francisco,CA,94016 +278201,27in 4K Gaming Monitor,1,389.99,2019-10-06 08:50:00,386 Maple St, Seattle,WA,98101 +278202,Lightning Charging Cable,2,14.95,2019-10-11 11:30:00,251 West St, San Francisco,CA,94016 +278203,USB-C Charging Cable,1,11.95,2019-10-18 09:28:00,955 8th St, Los Angeles,CA,90001 +278204,Apple Airpods Headphones,1,150.0,2019-10-25 13:35:00,981 Pine St, Boston,MA,02215 +278205,34in Ultrawide Monitor,1,379.99,2019-10-29 22:50:00,29 Meadow St, Portland,OR,97035 +278206,Macbook Pro Laptop,1,1700.0,2019-10-14 12:45:00,984 10th St, Seattle,WA,98101 +278207,Lightning Charging Cable,1,14.95,2019-10-14 18:41:00,101 5th St, Seattle,WA,98101 +278208,Wired Headphones,1,11.99,2019-10-30 12:55:00,256 Chestnut St, Los Angeles,CA,90001 +278209,Google Phone,1,600.0,2019-10-29 14:15:00,352 Maple St, Los Angeles,CA,90001 +278210,Apple Airpods Headphones,1,150.0,2019-10-24 10:06:00,594 Ridge St, Los Angeles,CA,90001 +278211,AA Batteries (4-pack),1,3.84,2019-10-12 18:44:00,167 Spruce St, San Francisco,CA,94016 +278212,Apple Airpods Headphones,1,150.0,2019-10-11 15:55:00,574 Forest St, Dallas,TX,75001 +278213,Macbook Pro Laptop,1,1700.0,2019-10-21 11:40:00,155 West St, San Francisco,CA,94016 +278214,Flatscreen TV,1,300.0,2019-10-31 13:27:00,204 South St, Boston,MA,02215 +278215,Lightning Charging Cable,1,14.95,2019-10-08 23:46:00,72 Jackson St, Portland,OR,97035 +278216,Bose SoundSport Headphones,1,99.99,2019-10-04 16:00:00,197 Elm St, New York City,NY,10001 +278217,AA Batteries (4-pack),1,3.84,2019-10-19 22:28:00,944 Forest St, Los Angeles,CA,90001 +278218,Macbook Pro Laptop,1,1700.0,2019-10-21 19:55:00,764 8th St, San Francisco,CA,94016 +278219,USB-C Charging Cable,1,11.95,2019-10-23 20:43:00,487 Cedar St, New York City,NY,10001 +278220,iPhone,1,700.0,2019-10-15 12:43:00,487 Madison St, Atlanta,GA,30301 +278221,AAA Batteries (4-pack),1,2.99,2019-10-05 15:21:00,606 Center St, San Francisco,CA,94016 +278222,34in Ultrawide Monitor,1,379.99,2019-10-02 21:48:00,95 8th St, Dallas,TX,75001 +278223,Lightning Charging Cable,1,14.95,2019-10-18 18:02:00,58 Ridge St, Los Angeles,CA,90001 +278224,34in Ultrawide Monitor,1,379.99,2019-10-22 22:51:00,153 Ridge St, Atlanta,GA,30301 +278225,Google Phone,1,600.0,2019-10-10 14:12:00,553 Cedar St, New York City,NY,10001 +278226,AA Batteries (4-pack),1,3.84,2019-10-24 21:19:00,624 River St, San Francisco,CA,94016 +278227,AA Batteries (4-pack),2,3.84,2019-10-10 17:14:00,826 Forest St, Seattle,WA,98101 +278228,27in 4K Gaming Monitor,1,389.99,2019-10-31 14:14:00,649 4th St, Los Angeles,CA,90001 +278229,AAA Batteries (4-pack),1,2.99,2019-10-20 11:27:00,119 10th St, New York City,NY,10001 +278230,AA Batteries (4-pack),1,3.84,2019-10-23 10:46:00,29 Forest St, Atlanta,GA,30301 +278231,27in FHD Monitor,1,149.99,2019-10-27 12:21:00,71 Pine St, San Francisco,CA,94016 +278232,USB-C Charging Cable,1,11.95,2019-10-09 09:32:00,191 2nd St, Boston,MA,02215 +278233,LG Dryer,1,600.0,2019-10-17 19:31:00,695 12th St, Boston,MA,02215 +278234,Bose SoundSport Headphones,1,99.99,2019-10-10 17:52:00,949 Lake St, San Francisco,CA,94016 +278235,Google Phone,1,600.0,2019-10-09 09:33:00,703 11th St, San Francisco,CA,94016 +278235,USB-C Charging Cable,1,11.95,2019-10-09 09:33:00,703 11th St, San Francisco,CA,94016 +278236,27in 4K Gaming Monitor,1,389.99,2019-10-08 12:48:00,111 13th St, Seattle,WA,98101 +278237,Lightning Charging Cable,1,14.95,2019-10-06 11:54:00,776 12th St, San Francisco,CA,94016 +278238,Bose SoundSport Headphones,1,99.99,2019-10-28 09:27:00,41 Hickory St, Portland,ME,04101 +278239,Apple Airpods Headphones,1,150.0,2019-10-31 03:14:00,759 13th St, Atlanta,GA,30301 +278240,Wired Headphones,1,11.99,2019-10-01 07:29:00,191 West St, Boston,MA,02215 +278241,AAA Batteries (4-pack),3,2.99,2019-10-27 10:20:00,674 Johnson St, New York City,NY,10001 +278242,Lightning Charging Cable,1,14.95,2019-10-12 11:06:00,481 7th St, New York City,NY,10001 +278243,USB-C Charging Cable,1,11.95,2019-10-24 12:20:00,81 North St, Atlanta,GA,30301 +278244,USB-C Charging Cable,1,11.95,2019-10-30 12:11:00,963 Ridge St, Portland,OR,97035 +278245,USB-C Charging Cable,1,11.95,2019-10-27 15:11:00,533 Park St, Los Angeles,CA,90001 +278246,AAA Batteries (4-pack),1,2.99,2019-10-09 17:24:00,187 Hill St, San Francisco,CA,94016 +278247,Wired Headphones,1,11.99,2019-10-19 19:36:00,579 Church St, New York City,NY,10001 +278248,AAA Batteries (4-pack),1,2.99,2019-10-31 19:23:00,771 West St, Los Angeles,CA,90001 +278249,USB-C Charging Cable,1,11.95,2019-10-10 12:10:00,246 12th St, New York City,NY,10001 +278250,34in Ultrawide Monitor,1,379.99,2019-10-09 06:35:00,902 Pine St, San Francisco,CA,94016 +278251,27in FHD Monitor,1,149.99,2019-10-21 17:17:00,666 Walnut St, Portland,OR,97035 +278252,USB-C Charging Cable,1,11.95,2019-10-23 09:31:00,203 Dogwood St, San Francisco,CA,94016 +278253,Apple Airpods Headphones,1,150.0,2019-10-11 19:43:00,85 Cherry St, New York City,NY,10001 +278254,Lightning Charging Cable,1,14.95,2019-10-12 22:14:00,256 Pine St, Portland,OR,97035 +278255,Bose SoundSport Headphones,1,99.99,2019-10-11 19:48:00,784 Main St, San Francisco,CA,94016 +278256,Google Phone,1,600.0,2019-10-02 07:18:00,909 Church St, Seattle,WA,98101 +278256,USB-C Charging Cable,1,11.95,2019-10-02 07:18:00,909 Church St, Seattle,WA,98101 +278257,USB-C Charging Cable,1,11.95,2019-10-16 01:28:00,321 River St, San Francisco,CA,94016 +278258,Bose SoundSport Headphones,1,99.99,2019-10-15 18:27:00,549 2nd St, Seattle,WA,98101 +278259,27in FHD Monitor,1,149.99,2019-10-26 08:50:00,187 Church St, San Francisco,CA,94016 +278260,Google Phone,1,600.0,2019-10-27 18:29:00,223 West St, New York City,NY,10001 +278261,27in FHD Monitor,1,149.99,2019-10-05 12:50:00,842 Maple St, Austin,TX,73301 +278262,20in Monitor,1,109.99,2019-10-04 00:02:00,741 8th St, San Francisco,CA,94016 +278263,27in FHD Monitor,1,149.99,2019-10-12 12:06:00,944 Jefferson St, San Francisco,CA,94016 +278264,Wired Headphones,2,11.99,2019-10-28 19:41:00,998 4th St, San Francisco,CA,94016 +278265,Bose SoundSport Headphones,1,99.99,2019-10-29 16:13:00,182 Lakeview St, Los Angeles,CA,90001 +278266,Google Phone,1,600.0,2019-10-21 07:34:00,490 Church St, New York City,NY,10001 +278267,Wired Headphones,1,11.99,2019-10-17 10:34:00,953 9th St, Seattle,WA,98101 +278268,AA Batteries (4-pack),1,3.84,2019-10-25 21:22:00,429 13th St, Boston,MA,02215 +278269,34in Ultrawide Monitor,1,379.99,2019-10-05 11:49:00,630 Meadow St, New York City,NY,10001 +278270,Bose SoundSport Headphones,1,99.99,2019-10-17 15:21:00,527 1st St, Los Angeles,CA,90001 +278271,Lightning Charging Cable,1,14.95,2019-10-19 20:15:00,639 Dogwood St, Austin,TX,73301 +278272,27in FHD Monitor,1,149.99,2019-10-14 17:56:00,275 Maple St, Atlanta,GA,30301 +278273,USB-C Charging Cable,1,11.95,2019-10-27 17:17:00,955 2nd St, Seattle,WA,98101 +278274,Lightning Charging Cable,1,14.95,2019-10-05 20:20:00,345 Spruce St, New York City,NY,10001 +278275,USB-C Charging Cable,1,11.95,2019-10-26 23:20:00,96 Forest St, New York City,NY,10001 +278276,AAA Batteries (4-pack),2,2.99,2019-10-31 20:48:00,706 Adams St, Boston,MA,02215 +278277,USB-C Charging Cable,1,11.95,2019-10-27 12:52:00,429 13th St, New York City,NY,10001 +278278,AAA Batteries (4-pack),1,2.99,2019-10-10 02:02:00,599 Ridge St, Los Angeles,CA,90001 +278279,27in 4K Gaming Monitor,1,389.99,2019-10-22 17:30:00,235 Lake St, Boston,MA,02215 +278279,Lightning Charging Cable,1,14.95,2019-10-22 17:30:00,235 Lake St, Boston,MA,02215 +278280,AA Batteries (4-pack),4,3.84,2019-10-05 07:52:00,443 Dogwood St, New York City,NY,10001 +278281,USB-C Charging Cable,1,11.95,2019-10-22 19:07:00,722 Ridge St, Los Angeles,CA,90001 +278282,Wired Headphones,1,11.99,2019-10-20 14:33:00,904 South St, San Francisco,CA,94016 +278283,27in FHD Monitor,1,149.99,2019-10-09 11:35:00,666 Meadow St, Seattle,WA,98101 +278284,AA Batteries (4-pack),1,3.84,2019-10-20 14:40:00,523 Church St, Boston,MA,02215 +278285,AA Batteries (4-pack),1,3.84,2019-10-12 11:49:00,747 Lakeview St, Boston,MA,02215 +278286,Wired Headphones,1,11.99,2019-10-30 19:43:00,464 12th St, Los Angeles,CA,90001 +278287,Wired Headphones,1,11.99,2019-10-23 01:34:00,54 Elm St, San Francisco,CA,94016 +278288,Wired Headphones,1,11.99,2019-10-31 18:08:00,650 Dogwood St, Los Angeles,CA,90001 +278289,Vareebadd Phone,1,400.0,2019-10-28 21:40:00,190 Cedar St, San Francisco,CA,94016 +278290,Wired Headphones,1,11.99,2019-10-19 12:10:00,25 Park St, New York City,NY,10001 +278291,USB-C Charging Cable,1,11.95,2019-10-16 13:37:00,742 West St, Los Angeles,CA,90001 +278292,27in 4K Gaming Monitor,1,389.99,2019-10-02 13:36:00,471 Walnut St, Los Angeles,CA,90001 +278293,USB-C Charging Cable,1,11.95,2019-10-17 22:45:00,135 Willow St, San Francisco,CA,94016 +278294,Lightning Charging Cable,1,14.95,2019-10-12 04:28:00,29 7th St, Dallas,TX,75001 +278295,USB-C Charging Cable,1,11.95,2019-10-09 09:59:00,981 Hill St, Portland,OR,97035 +278296,Wired Headphones,3,11.99,2019-10-03 00:27:00,747 North St, San Francisco,CA,94016 +278297,USB-C Charging Cable,1,11.95,2019-10-02 14:20:00,905 Maple St, Portland,ME,04101 +278298,20in Monitor,1,109.99,2019-10-07 11:11:00,481 14th St, Seattle,WA,98101 +278299,Wired Headphones,1,11.99,2019-10-14 10:09:00,163 Cherry St, San Francisco,CA,94016 +278300,USB-C Charging Cable,1,11.95,2019-10-05 20:18:00,370 South St, New York City,NY,10001 +278301,Apple Airpods Headphones,1,150.0,2019-10-27 20:09:00,281 Church St, Seattle,WA,98101 +278302,AA Batteries (4-pack),1,3.84,2019-10-05 14:15:00,258 Pine St, Seattle,WA,98101 +278303,27in 4K Gaming Monitor,1,389.99,2019-10-15 20:45:00,897 Hickory St, Portland,OR,97035 +278304,Lightning Charging Cable,1,14.95,2019-10-16 18:52:00,184 North St, Seattle,WA,98101 +278305,Apple Airpods Headphones,1,150.0,2019-10-19 10:14:00,568 Ridge St, Austin,TX,73301 +278306,Apple Airpods Headphones,1,150.0,2019-10-28 09:54:00,197 Highland St, Seattle,WA,98101 +278307,27in 4K Gaming Monitor,1,389.99,2019-10-27 10:53:00,745 Lakeview St, Atlanta,GA,30301 +278308,Google Phone,1,600.0,2019-10-03 08:15:00,910 Hill St, San Francisco,CA,94016 +278308,USB-C Charging Cable,1,11.95,2019-10-03 08:15:00,910 Hill St, San Francisco,CA,94016 +278309,iPhone,1,700.0,2019-10-15 20:56:00,901 5th St, Dallas,TX,75001 +278310,Apple Airpods Headphones,1,150.0,2019-10-31 20:09:00,578 Ridge St, San Francisco,CA,94016 +278311,AAA Batteries (4-pack),1,2.99,2019-10-04 11:20:00,245 8th St, Dallas,TX,75001 +278312,iPhone,1,700.0,2019-10-23 22:00:00,251 Forest St, Los Angeles,CA,90001 +278312,Lightning Charging Cable,1,14.95,2019-10-23 22:00:00,251 Forest St, Los Angeles,CA,90001 +278313,USB-C Charging Cable,1,11.95,2019-10-24 18:51:00,835 6th St, San Francisco,CA,94016 +278314,Lightning Charging Cable,1,14.95,2019-10-01 13:51:00,144 Forest St, Austin,TX,73301 +278314,Apple Airpods Headphones,1,150.0,2019-10-01 13:51:00,144 Forest St, Austin,TX,73301 +278315,iPhone,1,700.0,2019-10-04 06:12:00,945 11th St, Atlanta,GA,30301 +278316,AAA Batteries (4-pack),2,2.99,2019-10-29 13:35:00,975 Elm St, Boston,MA,02215 +278317,USB-C Charging Cable,1,11.95,2019-10-11 11:15:00,296 2nd St, Boston,MA,02215 +278318,34in Ultrawide Monitor,1,379.99,2019-10-27 12:15:00,569 Highland St, San Francisco,CA,94016 +278319,Bose SoundSport Headphones,1,99.99,2019-10-26 10:00:00,845 South St, Los Angeles,CA,90001 +278320,27in 4K Gaming Monitor,1,389.99,2019-10-17 08:26:00,658 Dogwood St, Atlanta,GA,30301 +278321,USB-C Charging Cable,1,11.95,2019-10-09 10:31:00,120 Church St, Portland,OR,97035 +278322,27in 4K Gaming Monitor,1,389.99,2019-10-14 11:43:00,116 4th St, Portland,OR,97035 +278322,Lightning Charging Cable,1,14.95,2019-10-14 11:43:00,116 4th St, Portland,OR,97035 +278323,Lightning Charging Cable,1,14.95,2019-10-31 20:16:00,209 Dogwood St, Boston,MA,02215 +278324,Lightning Charging Cable,1,14.95,2019-10-08 14:38:00,845 Lakeview St, San Francisco,CA,94016 +278325,Wired Headphones,1,11.99,2019-10-01 12:52:00,118 Sunset St, Los Angeles,CA,90001 +278326,Google Phone,1,600.0,2019-10-26 18:39:00,325 Willow St, San Francisco,CA,94016 +278326,USB-C Charging Cable,1,11.95,2019-10-26 18:39:00,325 Willow St, San Francisco,CA,94016 +278327,Wired Headphones,2,11.99,2019-10-26 00:34:00,913 13th St, San Francisco,CA,94016 +278328,Wired Headphones,1,11.99,2019-10-20 23:54:00,336 6th St, Austin,TX,73301 +278329,Wired Headphones,1,11.99,2019-10-31 11:50:00,253 Main St, Boston,MA,02215 +278330,Bose SoundSport Headphones,2,99.99,2019-10-17 10:28:00,223 River St, Los Angeles,CA,90001 +278331,AAA Batteries (4-pack),2,2.99,2019-10-02 11:43:00,467 Lakeview St, Atlanta,GA,30301 +278332,Macbook Pro Laptop,1,1700.0,2019-10-16 14:29:00,600 12th St, Los Angeles,CA,90001 +278333,Lightning Charging Cable,1,14.95,2019-10-06 18:10:00,337 Johnson St, Dallas,TX,75001 +278334,Google Phone,1,600.0,2019-10-02 18:47:00,157 Sunset St, San Francisco,CA,94016 +278335,Apple Airpods Headphones,1,150.0,2019-10-08 13:16:00,990 Ridge St, Atlanta,GA,30301 +278336,27in 4K Gaming Monitor,1,389.99,2019-10-10 06:46:00,426 Lincoln St, Dallas,TX,75001 +278337,Apple Airpods Headphones,1,150.0,2019-10-21 05:12:00,335 Washington St, Atlanta,GA,30301 +278338,Bose SoundSport Headphones,1,99.99,2019-10-13 01:15:00,142 Lincoln St, San Francisco,CA,94016 +278339,Lightning Charging Cable,2,14.95,2019-10-21 06:10:00,282 2nd St, San Francisco,CA,94016 +278340,27in 4K Gaming Monitor,1,389.99,2019-10-27 01:12:00,299 South St, Los Angeles,CA,90001 +278341,Lightning Charging Cable,1,14.95,2019-10-03 11:16:00,286 12th St, Dallas,TX,75001 +278342,27in FHD Monitor,1,149.99,2019-10-30 09:10:00,972 Willow St, New York City,NY,10001 +278343,AA Batteries (4-pack),2,3.84,2019-10-24 09:43:00,268 4th St, San Francisco,CA,94016 +278344,AA Batteries (4-pack),1,3.84,2019-10-08 01:34:00,987 Hickory St, Los Angeles,CA,90001 +278345,AAA Batteries (4-pack),1,2.99,2019-10-21 12:24:00,395 Sunset St, Boston,MA,02215 +278346,AAA Batteries (4-pack),2,2.99,2019-10-05 11:43:00,179 14th St, Seattle,WA,98101 +278347,Lightning Charging Cable,1,14.95,2019-10-16 18:46:00,862 Wilson St, Seattle,WA,98101 +278348,Bose SoundSport Headphones,1,99.99,2019-10-04 06:53:00,864 Sunset St, Los Angeles,CA,90001 +278349,Google Phone,1,600.0,2019-10-18 15:23:00,954 Cherry St, Dallas,TX,75001 +278350,Bose SoundSport Headphones,1,99.99,2019-10-10 17:56:00,239 9th St, New York City,NY,10001 +278351,Apple Airpods Headphones,1,150.0,2019-10-19 02:01:00,452 West St, San Francisco,CA,94016 +278352,Lightning Charging Cable,1,14.95,2019-10-30 08:35:00,760 7th St, San Francisco,CA,94016 +278353,Apple Airpods Headphones,1,150.0,2019-10-27 12:02:00,470 West St, New York City,NY,10001 +278354,Google Phone,1,600.0,2019-10-21 21:47:00,370 1st St, Los Angeles,CA,90001 +278355,Wired Headphones,1,11.99,2019-10-05 13:02:00,961 13th St, Boston,MA,02215 +278356,Wired Headphones,1,11.99,2019-10-22 21:42:00,416 Jefferson St, San Francisco,CA,94016 +278357,Wired Headphones,1,11.99,2019-10-13 17:54:00,47 Highland St, San Francisco,CA,94016 +278358,USB-C Charging Cable,1,11.95,2019-10-11 19:28:00,6 Chestnut St, Los Angeles,CA,90001 +278359,Wired Headphones,1,11.99,2019-10-12 18:42:00,434 6th St, San Francisco,CA,94016 +278360,Wired Headphones,1,11.99,2019-10-29 20:32:00,262 11th St, Austin,TX,73301 +278361,Wired Headphones,1,11.99,2019-10-28 11:47:00,157 Lake St, San Francisco,CA,94016 +278362,Lightning Charging Cable,1,14.95,2019-10-13 09:42:00,427 9th St, San Francisco,CA,94016 +278363,USB-C Charging Cable,1,11.95,2019-10-16 11:19:00,269 Elm St, New York City,NY,10001 +278364,Google Phone,1,600.0,2019-10-04 12:19:00,459 8th St, Seattle,WA,98101 +278365,Bose SoundSport Headphones,1,99.99,2019-10-22 09:35:00,68 River St, Dallas,TX,75001 +278366,ThinkPad Laptop,1,999.99,2019-10-20 10:13:00,825 Walnut St, San Francisco,CA,94016 +278367,Apple Airpods Headphones,1,150.0,2019-10-31 13:33:00,148 Spruce St, Dallas,TX,75001 +278368,Bose SoundSport Headphones,1,99.99,2019-10-27 13:20:00,752 Forest St, San Francisco,CA,94016 +278369,27in 4K Gaming Monitor,1,389.99,2019-10-22 09:13:00,30 Lakeview St, Austin,TX,73301 +278370,AA Batteries (4-pack),1,3.84,2019-10-18 21:37:00,286 Adams St, New York City,NY,10001 +278371,27in FHD Monitor,1,149.99,2019-10-01 23:09:00,427 6th St, San Francisco,CA,94016 +278372,Bose SoundSport Headphones,1,99.99,2019-10-30 20:21:00,454 Sunset St, New York City,NY,10001 +278373,Wired Headphones,1,11.99,2019-10-23 11:09:00,955 Meadow St, New York City,NY,10001 +278373,Lightning Charging Cable,1,14.95,2019-10-23 11:09:00,955 Meadow St, New York City,NY,10001 +278374,USB-C Charging Cable,1,11.95,2019-10-31 21:09:00,390 South St, Atlanta,GA,30301 +278375,34in Ultrawide Monitor,1,379.99,2019-10-30 21:53:00,377 Dogwood St, Boston,MA,02215 +278376,AAA Batteries (4-pack),2,2.99,2019-10-06 17:36:00,465 Washington St, Portland,OR,97035 +278377,34in Ultrawide Monitor,1,379.99,2019-10-03 10:15:00,733 Maple St, Los Angeles,CA,90001 +278378,Apple Airpods Headphones,1,150.0,2019-10-27 18:52:00,257 14th St, Los Angeles,CA,90001 +278379,Lightning Charging Cable,1,14.95,2019-10-24 08:52:00,496 Walnut St, San Francisco,CA,94016 +278380,Macbook Pro Laptop,1,1700.0,2019-10-06 21:39:00,994 Pine St, San Francisco,CA,94016 +278381,Bose SoundSport Headphones,1,99.99,2019-10-18 09:10:00,972 Park St, San Francisco,CA,94016 +278382,Wired Headphones,1,11.99,2019-10-10 20:18:00,121 River St, New York City,NY,10001 +278383,AAA Batteries (4-pack),3,2.99,2019-10-25 11:44:00,197 6th St, Seattle,WA,98101 +278384,Lightning Charging Cable,1,14.95,2019-10-05 21:01:00,386 14th St, New York City,NY,10001 +278385,AAA Batteries (4-pack),2,2.99,2019-10-20 23:27:00,671 Forest St, Los Angeles,CA,90001 +278386,Lightning Charging Cable,1,14.95,2019-10-25 20:59:00,975 West St, Los Angeles,CA,90001 +278387,iPhone,1,700.0,2019-10-08 16:49:00,165 Cedar St, Seattle,WA,98101 +278387,Lightning Charging Cable,1,14.95,2019-10-08 16:49:00,165 Cedar St, Seattle,WA,98101 +278388,AA Batteries (4-pack),1,3.84,2019-10-04 18:55:00,697 7th St, Atlanta,GA,30301 +278389,Bose SoundSport Headphones,1,99.99,2019-10-04 15:56:00,244 Lakeview St, San Francisco,CA,94016 +278390,USB-C Charging Cable,1,11.95,2019-10-22 12:52:00,411 Madison St, San Francisco,CA,94016 +278391,Lightning Charging Cable,1,14.95,2019-10-15 14:48:00,957 Ridge St, Portland,OR,97035 +278392,Macbook Pro Laptop,1,1700.0,2019-10-30 09:31:00,895 Hill St, Los Angeles,CA,90001 +278393,Lightning Charging Cable,1,14.95,2019-10-23 14:16:00,134 Elm St, New York City,NY,10001 +278394,USB-C Charging Cable,1,11.95,2019-10-29 20:02:00,30 Highland St, Dallas,TX,75001 +278395,USB-C Charging Cable,1,11.95,2019-10-01 22:08:00,986 Jefferson St, San Francisco,CA,94016 +278396,USB-C Charging Cable,1,11.95,2019-10-16 10:05:00,169 Highland St, Austin,TX,73301 +278397,27in FHD Monitor,1,149.99,2019-10-10 01:47:00,957 7th St, Dallas,TX,75001 +278398,USB-C Charging Cable,1,11.95,2019-10-01 12:08:00,350 Sunset St, Los Angeles,CA,90001 +278399,20in Monitor,1,109.99,2019-10-24 15:57:00,70 South St, Dallas,TX,75001 +278400,Lightning Charging Cable,1,14.95,2019-10-08 17:27:00,72 Main St, Dallas,TX,75001 +278401,AAA Batteries (4-pack),2,2.99,2019-10-29 14:00:00,523 Elm St, Boston,MA,02215 +278402,Bose SoundSport Headphones,1,99.99,2019-10-23 10:46:00,172 Cherry St, San Francisco,CA,94016 +278403,AAA Batteries (4-pack),5,2.99,2019-10-04 11:37:00,823 Pine St, Austin,TX,73301 +278404,USB-C Charging Cable,1,11.95,2019-10-27 21:01:00,418 Chestnut St, Los Angeles,CA,90001 +278405,Macbook Pro Laptop,1,1700.0,2019-10-26 19:40:00,447 Lincoln St, Portland,OR,97035 +278406,Wired Headphones,1,11.99,2019-10-21 13:54:00,660 2nd St, Austin,TX,73301 +278407,Lightning Charging Cable,1,14.95,2019-10-19 13:23:00,753 Maple St, Boston,MA,02215 +278408,USB-C Charging Cable,1,11.95,2019-10-23 14:27:00,686 5th St, New York City,NY,10001 +278409,34in Ultrawide Monitor,1,379.99,2019-10-12 19:21:00,571 1st St, Los Angeles,CA,90001 +278410,27in FHD Monitor,1,149.99,2019-10-25 14:39:00,14 1st St, Boston,MA,02215 +278411,Bose SoundSport Headphones,1,99.99,2019-10-01 14:41:00,177 4th St, Los Angeles,CA,90001 +278412,27in FHD Monitor,1,149.99,2019-10-09 16:10:00,733 Lincoln St, Boston,MA,02215 +278413,AA Batteries (4-pack),1,3.84,2019-10-15 11:16:00,323 Meadow St, Seattle,WA,98101 +278414,AA Batteries (4-pack),1,3.84,2019-10-06 11:56:00,690 14th St, San Francisco,CA,94016 +278415,AAA Batteries (4-pack),2,2.99,2019-10-14 15:46:00,87 Wilson St, Los Angeles,CA,90001 +278415,iPhone,1,700.0,2019-10-14 15:46:00,87 Wilson St, Los Angeles,CA,90001 +278416,Lightning Charging Cable,1,14.95,2019-10-11 16:25:00,267 8th St, Atlanta,GA,30301 +278417,Apple Airpods Headphones,1,150.0,2019-10-28 14:11:00,680 South St, Los Angeles,CA,90001 +278418,Bose SoundSport Headphones,1,99.99,2019-10-01 23:16:00,138 Center St, San Francisco,CA,94016 +278419,Apple Airpods Headphones,1,150.0,2019-10-05 10:58:00,720 Spruce St, Los Angeles,CA,90001 +278420,Apple Airpods Headphones,1,150.0,2019-10-14 20:08:00,707 Madison St, Dallas,TX,75001 +278421,Apple Airpods Headphones,1,150.0,2019-10-25 12:25:00,854 1st St, San Francisco,CA,94016 +278422,AA Batteries (4-pack),1,3.84,2019-10-06 09:58:00,138 Sunset St, Boston,MA,02215 +278423,USB-C Charging Cable,1,11.95,2019-10-11 17:49:00,172 Elm St, New York City,NY,10001 +278424,Wired Headphones,1,11.99,2019-10-24 10:53:00,766 West St, San Francisco,CA,94016 +278424,AA Batteries (4-pack),3,3.84,2019-10-24 10:53:00,766 West St, San Francisco,CA,94016 +278425,LG Dryer,1,600.0,2019-10-11 15:36:00,202 Lake St, Atlanta,GA,30301 +278426,Apple Airpods Headphones,1,150.0,2019-10-11 14:05:00,706 South St, Boston,MA,02215 +278427,Wired Headphones,1,11.99,2019-10-18 22:07:00,709 11th St, Los Angeles,CA,90001 +278428,AA Batteries (4-pack),1,3.84,2019-10-31 14:14:00,206 9th St, Seattle,WA,98101 +278429,iPhone,1,700.0,2019-10-19 10:04:00,148 14th St, Los Angeles,CA,90001 +278430,Bose SoundSport Headphones,1,99.99,2019-10-05 15:26:00,637 2nd St, Atlanta,GA,30301 +278431,Google Phone,1,600.0,2019-10-01 15:06:00,348 8th St, Los Angeles,CA,90001 +278432,Apple Airpods Headphones,1,150.0,2019-10-02 20:39:00,294 West St, Boston,MA,02215 +278433,USB-C Charging Cable,1,11.95,2019-10-22 19:56:00,951 Willow St, Austin,TX,73301 +278434,Wired Headphones,1,11.99,2019-10-20 10:03:00,232 Highland St, San Francisco,CA,94016 +278435,27in FHD Monitor,1,149.99,2019-10-10 18:26:00,843 10th St, Dallas,TX,75001 +278436,USB-C Charging Cable,1,11.95,2019-10-21 22:40:00,486 Adams St, Portland,OR,97035 +278437,Macbook Pro Laptop,1,1700.0,2019-10-21 18:43:00,367 Cherry St, San Francisco,CA,94016 +278438,Bose SoundSport Headphones,1,99.99,2019-10-03 13:17:00,726 Meadow St, Seattle,WA,98101 +278439,AAA Batteries (4-pack),2,2.99,2019-10-20 15:06:00,54 South St, Boston,MA,02215 +278440,LG Dryer,1,600.0,2019-10-10 15:45:00,299 Hickory St, Los Angeles,CA,90001 +278441,Wired Headphones,1,11.99,2019-10-27 11:03:00,856 Maple St, Boston,MA,02215 +278442,20in Monitor,1,109.99,2019-10-18 14:05:00,437 Park St, New York City,NY,10001 +278443,Apple Airpods Headphones,1,150.0,2019-10-31 18:45:00,903 Highland St, Atlanta,GA,30301 +278444,AAA Batteries (4-pack),1,2.99,2019-10-24 20:24:00,286 Meadow St, Los Angeles,CA,90001 +278445,Vareebadd Phone,1,400.0,2019-10-24 14:08:00,755 North St, San Francisco,CA,94016 +278445,Bose SoundSport Headphones,1,99.99,2019-10-24 14:08:00,755 North St, San Francisco,CA,94016 +278446,Lightning Charging Cable,1,14.95,2019-10-08 12:52:00,232 14th St, Los Angeles,CA,90001 +278447,AAA Batteries (4-pack),1,2.99,2019-10-25 11:46:00,945 Pine St, Seattle,WA,98101 +278448,Lightning Charging Cable,1,14.95,2019-10-28 20:12:00,187 West St, Los Angeles,CA,90001 +278449,USB-C Charging Cable,1,11.95,2019-10-24 18:11:00,986 Hill St, San Francisco,CA,94016 +278450,iPhone,1,700.0,2019-10-04 07:50:00,808 Hickory St, San Francisco,CA,94016 +278451,27in FHD Monitor,1,149.99,2019-10-25 15:41:00,660 9th St, San Francisco,CA,94016 +278452,Lightning Charging Cable,1,14.95,2019-10-17 06:10:00,337 Highland St, New York City,NY,10001 +278453,27in FHD Monitor,1,149.99,2019-10-11 19:47:00,381 South St, Dallas,TX,75001 +278454,27in 4K Gaming Monitor,1,389.99,2019-10-04 14:22:00,510 6th St, Portland,OR,97035 +278455,Lightning Charging Cable,2,14.95,2019-10-07 16:05:00,319 Park St, Los Angeles,CA,90001 +278456,Wired Headphones,1,11.99,2019-10-15 07:45:00,243 Cedar St, San Francisco,CA,94016 +278457,Lightning Charging Cable,2,14.95,2019-10-16 12:08:00,37 Wilson St, San Francisco,CA,94016 +278458,27in FHD Monitor,1,149.99,2019-10-15 19:46:00,792 Sunset St, Dallas,TX,75001 +278459,Bose SoundSport Headphones,1,99.99,2019-10-24 13:30:00,60 South St, Seattle,WA,98101 +278460,Lightning Charging Cable,1,14.95,2019-10-19 14:53:00,782 Dogwood St, San Francisco,CA,94016 +278461,iPhone,1,700.0,2019-10-06 11:49:00,540 12th St, San Francisco,CA,94016 +278462,Wired Headphones,1,11.99,2019-10-29 15:17:00,582 9th St, New York City,NY,10001 +278463,Bose SoundSport Headphones,1,99.99,2019-10-11 04:29:00,313 Park St, New York City,NY,10001 +278464,Lightning Charging Cable,2,14.95,2019-10-30 20:52:00,428 Park St, New York City,NY,10001 +278465,Wired Headphones,1,11.99,2019-10-09 19:21:00,581 Jackson St, San Francisco,CA,94016 +278466,AA Batteries (4-pack),3,3.84,2019-10-18 18:02:00,952 Pine St, San Francisco,CA,94016 +278467,Lightning Charging Cable,2,14.95,2019-10-15 11:58:00,337 Spruce St, Austin,TX,73301 +278468,ThinkPad Laptop,1,999.99,2019-10-29 15:25:00,153 Maple St, Seattle,WA,98101 +278469,Apple Airpods Headphones,1,150.0,2019-10-24 19:54:00,581 Madison St, Atlanta,GA,30301 +278470,AA Batteries (4-pack),1,3.84,2019-10-09 07:54:00,877 Johnson St, Los Angeles,CA,90001 +278471,USB-C Charging Cable,1,11.95,2019-10-28 22:09:00,273 Willow St, Dallas,TX,75001 +278472,Lightning Charging Cable,1,14.95,2019-10-24 01:41:00,567 6th St, Los Angeles,CA,90001 +278473,USB-C Charging Cable,1,11.95,2019-10-11 18:02:00,944 Cherry St, Austin,TX,73301 +278474,USB-C Charging Cable,1,11.95,2019-10-31 10:51:00,167 South St, San Francisco,CA,94016 +278475,USB-C Charging Cable,1,11.95,2019-10-17 21:13:00,488 Lake St, Atlanta,GA,30301 +278476,34in Ultrawide Monitor,1,379.99,2019-10-10 13:36:00,403 7th St, San Francisco,CA,94016 +278477,Lightning Charging Cable,1,14.95,2019-10-15 20:39:00,59 Johnson St, San Francisco,CA,94016 +278478,Apple Airpods Headphones,1,150.0,2019-10-09 17:57:00,120 Jackson St, Los Angeles,CA,90001 +278479,Flatscreen TV,1,300.0,2019-10-22 18:28:00,315 Spruce St, Portland,OR,97035 +278480,iPhone,1,700.0,2019-10-14 19:44:00,269 South St, New York City,NY,10001 +278481,Apple Airpods Headphones,1,150.0,2019-10-06 17:27:00,996 Park St, Dallas,TX,75001 +278481,Bose SoundSport Headphones,1,99.99,2019-10-06 17:27:00,996 Park St, Dallas,TX,75001 +278482,Apple Airpods Headphones,1,150.0,2019-10-13 16:43:00,10 Adams St, New York City,NY,10001 +278483,Bose SoundSport Headphones,1,99.99,2019-10-09 06:28:00,93 Adams St, San Francisco,CA,94016 +278484,AAA Batteries (4-pack),1,2.99,2019-10-08 20:03:00,262 Highland St, Los Angeles,CA,90001 +278485,AA Batteries (4-pack),1,3.84,2019-10-13 22:01:00,490 13th St, Boston,MA,02215 +278486,Wired Headphones,1,11.99,2019-10-29 22:19:00,672 4th St, New York City,NY,10001 +278487,AA Batteries (4-pack),2,3.84,2019-10-13 09:06:00,616 North St, San Francisco,CA,94016 +278488,Wired Headphones,1,11.99,2019-10-01 15:20:00,914 Park St, Portland,OR,97035 +278489,Bose SoundSport Headphones,1,99.99,2019-10-24 00:16:00,462 Park St, Boston,MA,02215 +278490,Apple Airpods Headphones,1,150.0,2019-10-29 19:29:00,211 Meadow St, New York City,NY,10001 +278491,AA Batteries (4-pack),1,3.84,2019-10-24 19:14:00,582 9th St, San Francisco,CA,94016 +278492,AAA Batteries (4-pack),1,2.99,2019-10-21 17:52:00,243 5th St, Boston,MA,02215 +278493,Wired Headphones,1,11.99,2019-10-11 13:23:00,848 South St, Boston,MA,02215 +278494,Bose SoundSport Headphones,1,99.99,2019-10-23 12:37:00,960 River St, San Francisco,CA,94016 +278495,AA Batteries (4-pack),1,3.84,2019-10-22 15:32:00,792 2nd St, Dallas,TX,75001 +278496,20in Monitor,1,109.99,2019-10-31 19:06:00,249 10th St, Dallas,TX,75001 +278497,Apple Airpods Headphones,1,150.0,2019-10-27 08:35:00,717 Madison St, Boston,MA,02215 +278498,Lightning Charging Cable,1,14.95,2019-10-26 18:29:00,777 River St, Atlanta,GA,30301 +278499,Macbook Pro Laptop,1,1700.0,2019-10-22 09:54:00,389 Jefferson St, San Francisco,CA,94016 +278500,USB-C Charging Cable,1,11.95,2019-10-12 18:43:00,393 7th St, San Francisco,CA,94016 +278501,AAA Batteries (4-pack),1,2.99,2019-10-20 13:36:00,700 Main St, San Francisco,CA,94016 +278502,USB-C Charging Cable,1,11.95,2019-10-22 14:23:00,802 Maple St, New York City,NY,10001 +278503,Apple Airpods Headphones,1,150.0,2019-10-09 22:00:00,267 Dogwood St, New York City,NY,10001 +278504,Bose SoundSport Headphones,1,99.99,2019-10-09 21:16:00,265 10th St, New York City,NY,10001 +278505,USB-C Charging Cable,1,11.95,2019-10-14 14:27:00,204 Hickory St, San Francisco,CA,94016 +278506,USB-C Charging Cable,1,11.95,2019-10-25 14:44:00,824 1st St, New York City,NY,10001 +278507,27in 4K Gaming Monitor,1,389.99,2019-10-25 21:41:00,632 Sunset St, Austin,TX,73301 +278508,Bose SoundSport Headphones,1,99.99,2019-10-25 12:25:00,96 Main St, Portland,OR,97035 +278509,AA Batteries (4-pack),1,3.84,2019-10-14 10:42:00,979 Spruce St, Seattle,WA,98101 +278510,iPhone,1,700.0,2019-10-26 17:56:00,449 Willow St, New York City,NY,10001 +278511,34in Ultrawide Monitor,1,379.99,2019-10-01 13:03:00,468 2nd St, San Francisco,CA,94016 +278512,34in Ultrawide Monitor,1,379.99,2019-10-08 18:41:00,924 Spruce St, Seattle,WA,98101 +278513,USB-C Charging Cable,1,11.95,2019-10-23 18:09:00,980 4th St, Seattle,WA,98101 +278514,Apple Airpods Headphones,1,150.0,2019-10-01 20:55:00,31 10th St, Atlanta,GA,30301 +278515,20in Monitor,1,109.99,2019-10-10 21:01:00,257 10th St, Los Angeles,CA,90001 +278516,USB-C Charging Cable,1,11.95,2019-10-14 21:07:00,223 Pine St, Austin,TX,73301 +278517,Wired Headphones,1,11.99,2019-10-12 12:28:00,730 Elm St, Dallas,TX,75001 +278518,AAA Batteries (4-pack),2,2.99,2019-10-08 20:56:00,160 Walnut St, Los Angeles,CA,90001 +278519,iPhone,1,700.0,2019-10-26 16:46:00,471 13th St, New York City,NY,10001 +278520,AA Batteries (4-pack),2,3.84,2019-10-26 15:29:00,963 Maple St, Austin,TX,73301 +278521,Flatscreen TV,1,300.0,2019-10-03 18:21:00,934 Center St, San Francisco,CA,94016 +278522,AAA Batteries (4-pack),2,2.99,2019-10-05 17:47:00,950 Johnson St, New York City,NY,10001 +278523,Lightning Charging Cable,1,14.95,2019-10-10 11:05:00,150 12th St, Los Angeles,CA,90001 +278524,Bose SoundSport Headphones,1,99.99,2019-10-26 10:40:00,760 Main St, Dallas,TX,75001 +278525,Flatscreen TV,1,300.0,2019-10-18 23:18:00,64 Adams St, Los Angeles,CA,90001 +278526,Macbook Pro Laptop,1,1700.0,2019-10-14 06:22:00,887 Lakeview St, San Francisco,CA,94016 +278527,AA Batteries (4-pack),1,3.84,2019-10-13 09:10:00,773 Church St, Los Angeles,CA,90001 +278528,Flatscreen TV,1,300.0,2019-10-22 18:21:00,714 Meadow St, Atlanta,GA,30301 +278529,iPhone,1,700.0,2019-10-29 18:20:00,183 Forest St, Austin,TX,73301 +278530,AAA Batteries (4-pack),2,2.99,2019-10-11 18:34:00,509 Hickory St, New York City,NY,10001 +278531,AAA Batteries (4-pack),1,2.99,2019-10-18 11:36:00,983 Main St, Atlanta,GA,30301 +278532,Google Phone,1,600.0,2019-10-06 17:30:00,413 Dogwood St, Seattle,WA,98101 +278533,34in Ultrawide Monitor,1,379.99,2019-10-04 06:42:00,196 2nd St, San Francisco,CA,94016 +278534,Apple Airpods Headphones,1,150.0,2019-10-08 23:56:00,746 River St, San Francisco,CA,94016 +278535,Google Phone,1,600.0,2019-10-13 03:54:00,912 Highland St, San Francisco,CA,94016 +278536,Wired Headphones,1,11.99,2019-10-27 20:30:00,158 Center St, San Francisco,CA,94016 +278537,34in Ultrawide Monitor,1,379.99,2019-10-19 12:31:00,413 14th St, Dallas,TX,75001 +278538,AA Batteries (4-pack),1,3.84,2019-10-26 18:17:00,941 Hickory St, Seattle,WA,98101 +278539,AAA Batteries (4-pack),1,2.99,2019-10-29 16:32:00,575 6th St, Atlanta,GA,30301 +278540,USB-C Charging Cable,1,11.95,2019-10-05 11:23:00,124 1st St, Atlanta,GA,30301 +278541,Bose SoundSport Headphones,1,99.99,2019-10-07 12:12:00,777 7th St, Boston,MA,02215 +278542,Wired Headphones,1,11.99,2019-10-16 22:03:00,589 South St, Seattle,WA,98101 +278543,AA Batteries (4-pack),1,3.84,2019-10-13 08:12:00,878 Highland St, Boston,MA,02215 +278544,AA Batteries (4-pack),1,3.84,2019-10-18 12:00:00,499 Spruce St, Seattle,WA,98101 +278545,ThinkPad Laptop,1,999.99,2019-10-02 20:01:00,884 West St, Atlanta,GA,30301 +278546,LG Dryer,1,600.0,2019-10-18 14:17:00,105 Spruce St, Dallas,TX,75001 +278547,AAA Batteries (4-pack),3,2.99,2019-10-22 18:14:00,985 Pine St, Atlanta,GA,30301 +278548,Lightning Charging Cable,2,14.95,2019-10-01 20:13:00,272 Washington St, Portland,OR,97035 +278549,Macbook Pro Laptop,1,1700.0,2019-10-29 11:39:00,869 Spruce St, Austin,TX,73301 +278550,Apple Airpods Headphones,1,150.0,2019-10-28 10:32:00,179 Chestnut St, Los Angeles,CA,90001 +278551,AA Batteries (4-pack),1,3.84,2019-10-19 10:57:00,987 10th St, Dallas,TX,75001 +278552,AA Batteries (4-pack),1,3.84,2019-10-23 10:38:00,130 Main St, Seattle,WA,98101 +278553,USB-C Charging Cable,1,11.95,2019-10-07 19:54:00,613 6th St, Los Angeles,CA,90001 +278554,34in Ultrawide Monitor,1,379.99,2019-10-24 16:19:00,25 Jefferson St, Boston,MA,02215 +278555,34in Ultrawide Monitor,1,379.99,2019-10-09 19:15:00,28 8th St, San Francisco,CA,94016 +278556,20in Monitor,1,109.99,2019-10-22 10:25:00,790 Main St, Los Angeles,CA,90001 +278557,AAA Batteries (4-pack),3,2.99,2019-10-10 12:41:00,478 Park St, Seattle,WA,98101 +278558,AA Batteries (4-pack),1,3.84,2019-10-24 02:29:00,701 Jefferson St, San Francisco,CA,94016 +278559,AAA Batteries (4-pack),2,2.99,2019-10-09 16:42:00,919 Hickory St, Boston,MA,02215 +278560,Lightning Charging Cable,1,14.95,2019-10-10 12:27:00,977 Chestnut St, Los Angeles,CA,90001 +278561,USB-C Charging Cable,1,11.95,2019-10-14 14:35:00,791 South St, Seattle,WA,98101 +278562,Lightning Charging Cable,1,14.95,2019-10-29 22:36:00,955 Park St, Boston,MA,02215 +278563,Google Phone,1,600.0,2019-10-08 10:10:00,542 Adams St, Dallas,TX,75001 +278563,USB-C Charging Cable,1,11.95,2019-10-08 10:10:00,542 Adams St, Dallas,TX,75001 +278564,AAA Batteries (4-pack),1,2.99,2019-10-13 04:33:00,404 5th St, San Francisco,CA,94016 +278565,ThinkPad Laptop,1,999.99,2019-10-15 14:06:00,910 West St, Los Angeles,CA,90001 +278566,AAA Batteries (4-pack),8,2.99,2019-10-13 19:07:00,992 Park St, Los Angeles,CA,90001 +278567,AAA Batteries (4-pack),1,2.99,2019-10-13 14:06:00,581 Wilson St, Dallas,TX,75001 +278568,AA Batteries (4-pack),1,3.84,2019-10-29 12:49:00,392 River St, San Francisco,CA,94016 +278569,ThinkPad Laptop,1,999.99,2019-10-14 17:45:00,425 Madison St, Los Angeles,CA,90001 +278570,Bose SoundSport Headphones,1,99.99,2019-10-26 20:15:00,214 Willow St, Los Angeles,CA,90001 +278571,Bose SoundSport Headphones,1,99.99,2019-10-22 23:28:00,341 Elm St, Los Angeles,CA,90001 +278572,Wired Headphones,1,11.99,2019-10-16 10:45:00,993 Lakeview St, Dallas,TX,75001 +278573,20in Monitor,1,109.99,2019-10-02 17:14:00,212 Elm St, San Francisco,CA,94016 +278574,34in Ultrawide Monitor,1,379.99,2019-10-12 19:44:00,13 1st St, Austin,TX,73301 +278575,AAA Batteries (4-pack),3,2.99,2019-10-02 20:15:00,889 Dogwood St, Los Angeles,CA,90001 +278576,AAA Batteries (4-pack),1,2.99,2019-10-17 18:09:00,357 13th St, New York City,NY,10001 +278577,AA Batteries (4-pack),2,3.84,2019-10-26 15:45:00,592 Meadow St, New York City,NY,10001 +278578,Apple Airpods Headphones,1,150.0,2019-10-19 11:23:00,19 7th St, New York City,NY,10001 +278579,27in 4K Gaming Monitor,1,389.99,2019-10-26 19:37:00,842 Washington St, Boston,MA,02215 +278580,USB-C Charging Cable,1,11.95,2019-10-25 11:56:00,259 North St, Dallas,TX,75001 +278581,AA Batteries (4-pack),1,3.84,2019-10-24 18:56:00,916 Maple St, Seattle,WA,98101 +278582,iPhone,1,700.0,2019-10-15 18:17:00,993 Elm St, Portland,OR,97035 +278583,AA Batteries (4-pack),2,3.84,2019-10-07 17:37:00,51 8th St, Boston,MA,02215 +278584,ThinkPad Laptop,1,999.99,2019-10-06 00:01:00,10 North St, New York City,NY,10001 +278585,Wired Headphones,1,11.99,2019-10-17 15:21:00,705 Jefferson St, Austin,TX,73301 +278586,Wired Headphones,1,11.99,2019-10-18 18:44:00,92 Madison St, New York City,NY,10001 +278587,Bose SoundSport Headphones,1,99.99,2019-10-01 16:14:00,509 14th St, San Francisco,CA,94016 +278588,Lightning Charging Cable,1,14.95,2019-10-13 17:04:00,201 Forest St, Atlanta,GA,30301 +278589,AA Batteries (4-pack),1,3.84,2019-10-15 17:49:00,503 2nd St, Portland,OR,97035 +278590,Apple Airpods Headphones,1,150.0,2019-10-20 13:55:00,693 Dogwood St, San Francisco,CA,94016 +278591,Bose SoundSport Headphones,1,99.99,2019-10-01 13:29:00,450 Wilson St, Atlanta,GA,30301 +278592,USB-C Charging Cable,1,11.95,2019-10-05 13:28:00,861 Forest St, Seattle,WA,98101 +278593,Wired Headphones,1,11.99,2019-10-16 18:07:00,685 North St, San Francisco,CA,94016 +278594,iPhone,1,700.0,2019-10-12 14:46:00,956 Sunset St, San Francisco,CA,94016 +278595,AA Batteries (4-pack),1,3.84,2019-10-02 18:07:00,179 Spruce St, Portland,OR,97035 +278596,20in Monitor,1,109.99,2019-10-13 18:28:00,408 8th St, Los Angeles,CA,90001 +278596,Lightning Charging Cable,1,14.95,2019-10-13 18:28:00,408 8th St, Los Angeles,CA,90001 +278597,Apple Airpods Headphones,1,150.0,2019-10-25 17:59:00,739 Spruce St, Los Angeles,CA,90001 +278598,AA Batteries (4-pack),2,3.84,2019-10-05 16:46:00,272 Hickory St, Portland,OR,97035 +278599,Apple Airpods Headphones,1,150.0,2019-10-04 12:17:00,821 Adams St, Los Angeles,CA,90001 +278600,AAA Batteries (4-pack),2,2.99,2019-10-30 18:00:00,51 6th St, Seattle,WA,98101 +278601,AAA Batteries (4-pack),2,2.99,2019-10-19 23:03:00,468 6th St, Dallas,TX,75001 +278602,27in FHD Monitor,1,149.99,2019-10-03 10:47:00,231 Walnut St, Boston,MA,02215 +278603,AAA Batteries (4-pack),1,2.99,2019-10-20 00:25:00,293 River St, New York City,NY,10001 +278604,20in Monitor,1,109.99,2019-10-05 03:43:00,418 Adams St, Seattle,WA,98101 +278605,Lightning Charging Cable,1,14.95,2019-10-24 07:48:00,191 Cherry St, Dallas,TX,75001 +278606,34in Ultrawide Monitor,1,379.99,2019-10-19 00:53:00,980 Park St, Los Angeles,CA,90001 +278607,AA Batteries (4-pack),3,3.84,2019-10-11 07:01:00,100 North St, Los Angeles,CA,90001 +278608,27in FHD Monitor,1,149.99,2019-10-05 02:06:00,81 Pine St, Seattle,WA,98101 +278609,Vareebadd Phone,1,400.0,2019-10-14 15:03:00,11 Lake St, Portland,ME,04101 +278610,AAA Batteries (4-pack),1,2.99,2019-10-22 08:01:00,904 Sunset St, Austin,TX,73301 +278611,USB-C Charging Cable,1,11.95,2019-10-05 12:29:00,314 8th St, Austin,TX,73301 +278612,Lightning Charging Cable,1,14.95,2019-10-10 04:31:00,408 12th St, San Francisco,CA,94016 +278613,AAA Batteries (4-pack),1,2.99,2019-10-04 22:20:00,825 South St, San Francisco,CA,94016 +278614,Bose SoundSport Headphones,1,99.99,2019-10-22 23:55:00,643 9th St, Boston,MA,02215 +278615,USB-C Charging Cable,1,11.95,2019-10-26 13:39:00,904 13th St, Seattle,WA,98101 +278616,Lightning Charging Cable,1,14.95,2019-10-28 23:12:00,829 Highland St, San Francisco,CA,94016 +278617,Apple Airpods Headphones,1,150.0,2019-10-06 19:19:00,327 Lincoln St, Los Angeles,CA,90001 +278618,Lightning Charging Cable,1,14.95,2019-10-14 15:38:00,140 Forest St, Los Angeles,CA,90001 +278619,Google Phone,1,600.0,2019-10-04 15:29:00,37 Lakeview St, Portland,OR,97035 +278620,Bose SoundSport Headphones,1,99.99,2019-10-13 22:44:00,235 Forest St, New York City,NY,10001 +278621,USB-C Charging Cable,1,11.95,2019-10-21 19:57:00,469 Highland St, Atlanta,GA,30301 +278622,iPhone,1,700.0,2019-10-02 13:17:00,879 Ridge St, Dallas,TX,75001 +278623,AAA Batteries (4-pack),1,2.99,2019-10-03 22:50:00,102 13th St, Boston,MA,02215 +278624,Apple Airpods Headphones,1,150.0,2019-10-01 13:00:00,106 Walnut St, Portland,OR,97035 +278625,27in FHD Monitor,1,149.99,2019-10-17 23:20:00,695 Jackson St, New York City,NY,10001 +278626,USB-C Charging Cable,1,11.95,2019-10-20 14:44:00,189 Church St, Dallas,TX,75001 +278627,Lightning Charging Cable,1,14.95,2019-10-26 11:02:00,393 West St, Portland,ME,04101 +278628,Macbook Pro Laptop,1,1700.0,2019-10-01 16:09:00,226 7th St, Los Angeles,CA,90001 +278629,Apple Airpods Headphones,1,150.0,2019-10-13 07:39:00,153 7th St, Boston,MA,02215 +278630,Wired Headphones,1,11.99,2019-10-05 08:55:00,429 14th St, San Francisco,CA,94016 +278631,Bose SoundSport Headphones,1,99.99,2019-10-19 18:22:00,306 Dogwood St, Los Angeles,CA,90001 +278632,34in Ultrawide Monitor,1,379.99,2019-10-04 19:58:00,820 Hickory St, Seattle,WA,98101 +278633,Lightning Charging Cable,1,14.95,2019-10-06 11:47:00,593 West St, Dallas,TX,75001 +278634,AA Batteries (4-pack),2,3.84,2019-10-13 10:12:00,871 8th St, Los Angeles,CA,90001 +278635,iPhone,1,700.0,2019-10-21 18:00:00,205 9th St, Dallas,TX,75001 +278636,Macbook Pro Laptop,1,1700.0,2019-10-10 19:38:00,328 Madison St, Los Angeles,CA,90001 +278637,ThinkPad Laptop,2,999.99,2019-10-02 16:06:00,643 Cedar St, Boston,MA,02215 +278638,Lightning Charging Cable,1,14.95,2019-10-19 10:56:00,133 River St, Seattle,WA,98101 +278639,AA Batteries (4-pack),1,3.84,2019-10-31 21:28:00,363 6th St, San Francisco,CA,94016 +278640,Bose SoundSport Headphones,1,99.99,2019-10-03 17:05:00,540 Hickory St, Atlanta,GA,30301 +278641,Wired Headphones,1,11.99,2019-10-24 20:47:00,481 Cherry St, Dallas,TX,75001 +278642,USB-C Charging Cable,1,11.95,2019-10-22 13:12:00,166 Highland St, Los Angeles,CA,90001 +278643,Wired Headphones,1,11.99,2019-10-03 17:44:00,808 9th St, Atlanta,GA,30301 +278644,Macbook Pro Laptop,1,1700.0,2019-10-21 12:47:00,703 Willow St, San Francisco,CA,94016 +278645,Lightning Charging Cable,1,14.95,2019-10-29 09:19:00,221 Church St, Austin,TX,73301 +278646,Wired Headphones,1,11.99,2019-10-10 20:34:00,798 Maple St, New York City,NY,10001 +278647,USB-C Charging Cable,1,11.95,2019-10-06 20:35:00,323 6th St, San Francisco,CA,94016 +278648,Bose SoundSport Headphones,1,99.99,2019-10-10 17:09:00,323 Lake St, Los Angeles,CA,90001 +278649,Wired Headphones,2,11.99,2019-10-28 15:44:00,323 13th St, Los Angeles,CA,90001 +278650,Flatscreen TV,1,300.0,2019-10-10 20:43:00,35 1st St, Los Angeles,CA,90001 +278651,Wired Headphones,1,11.99,2019-10-05 21:16:00,174 South St, Dallas,TX,75001 +278652,34in Ultrawide Monitor,1,379.99,2019-10-25 09:23:00,897 Maple St, Dallas,TX,75001 +278653,iPhone,1,700.0,2019-10-31 19:46:00,949 Chestnut St, Atlanta,GA,30301 +278653,Lightning Charging Cable,1,14.95,2019-10-31 19:46:00,949 Chestnut St, Atlanta,GA,30301 +278654,27in 4K Gaming Monitor,1,389.99,2019-10-27 18:37:00,923 10th St, Los Angeles,CA,90001 +278655,27in 4K Gaming Monitor,1,389.99,2019-10-19 20:01:00,53 Chestnut St, New York City,NY,10001 +278656,AA Batteries (4-pack),1,3.84,2019-10-16 07:04:00,270 River St, Los Angeles,CA,90001 +278657,Flatscreen TV,1,300.0,2019-10-10 18:18:00,693 11th St, Seattle,WA,98101 +278658,34in Ultrawide Monitor,1,379.99,2019-10-19 19:25:00,684 Lake St, San Francisco,CA,94016 +278659,iPhone,1,700.0,2019-10-21 22:46:00,915 Willow St, Seattle,WA,98101 +278660,AA Batteries (4-pack),1,3.84,2019-10-17 20:10:00,825 6th St, New York City,NY,10001 +278661,Apple Airpods Headphones,1,150.0,2019-10-02 14:55:00,423 12th St, Los Angeles,CA,90001 +278662,USB-C Charging Cable,1,11.95,2019-10-09 16:59:00,299 Church St, San Francisco,CA,94016 +278663,Bose SoundSport Headphones,1,99.99,2019-10-15 18:18:00,609 12th St, San Francisco,CA,94016 +278664,20in Monitor,1,109.99,2019-10-08 19:42:00,891 9th St, Los Angeles,CA,90001 +278665,USB-C Charging Cable,1,11.95,2019-10-20 20:47:00,982 Cedar St, San Francisco,CA,94016 +278666,Flatscreen TV,1,300.0,2019-10-03 20:27:00,624 Forest St, San Francisco,CA,94016 +278667,Lightning Charging Cable,1,14.95,2019-10-25 13:43:00,330 Adams St, San Francisco,CA,94016 +278668,Apple Airpods Headphones,1,150.0,2019-10-04 22:17:00,455 Dogwood St, Los Angeles,CA,90001 +278669,AA Batteries (4-pack),1,3.84,2019-10-26 15:41:00,51 Chestnut St, Los Angeles,CA,90001 +278670,Wired Headphones,1,11.99,2019-10-04 18:43:00,979 Park St, New York City,NY,10001 +278671,Bose SoundSport Headphones,1,99.99,2019-10-02 13:53:00,854 Willow St, Los Angeles,CA,90001 +278672,Apple Airpods Headphones,1,150.0,2019-10-29 14:34:00,965 4th St, Los Angeles,CA,90001 +278673,AA Batteries (4-pack),1,3.84,2019-10-03 13:37:00,349 10th St, San Francisco,CA,94016 +278674,AA Batteries (4-pack),1,3.84,2019-10-09 16:17:00,178 4th St, Los Angeles,CA,90001 +278675,Apple Airpods Headphones,1,150.0,2019-10-05 11:55:00,768 Spruce St, San Francisco,CA,94016 +278676,Bose SoundSport Headphones,1,99.99,2019-10-24 10:16:00,19 Park St, Los Angeles,CA,90001 +278677,Lightning Charging Cable,1,14.95,2019-10-04 19:59:00,289 Jefferson St, Los Angeles,CA,90001 +278678,USB-C Charging Cable,1,11.95,2019-10-21 16:08:00,479 Jackson St, Boston,MA,02215 +278679,AAA Batteries (4-pack),1,2.99,2019-10-11 10:20:00,422 12th St, New York City,NY,10001 +278680,USB-C Charging Cable,2,11.95,2019-10-25 14:01:00,561 Dogwood St, Los Angeles,CA,90001 +278681,Wired Headphones,1,11.99,2019-10-13 11:28:00,535 North St, San Francisco,CA,94016 +278682,Lightning Charging Cable,1,14.95,2019-10-24 20:22:00,966 Adams St, Boston,MA,02215 +278683,USB-C Charging Cable,1,11.95,2019-10-29 23:40:00,246 Chestnut St, Atlanta,GA,30301 +278684,Bose SoundSport Headphones,1,99.99,2019-10-11 13:07:00,830 6th St, San Francisco,CA,94016 +278685,27in FHD Monitor,1,149.99,2019-10-30 22:55:00,576 River St, Portland,OR,97035 +278686,AA Batteries (4-pack),2,3.84,2019-10-20 18:02:00,304 Ridge St, Los Angeles,CA,90001 +278687,AA Batteries (4-pack),1,3.84,2019-10-31 22:37:00,190 Maple St, New York City,NY,10001 +278688,Lightning Charging Cable,1,14.95,2019-10-28 17:43:00,949 13th St, Boston,MA,02215 +278689,USB-C Charging Cable,1,11.95,2019-10-16 08:33:00,768 8th St, New York City,NY,10001 +278690,27in 4K Gaming Monitor,1,389.99,2019-10-06 12:03:00,981 Main St, Seattle,WA,98101 +278691,27in 4K Gaming Monitor,1,389.99,2019-10-22 13:16:00,793 Elm St, San Francisco,CA,94016 +278692,20in Monitor,1,109.99,2019-10-21 15:58:00,262 10th St, Dallas,TX,75001 +278693,Bose SoundSport Headphones,1,99.99,2019-10-26 10:20:00,945 Hill St, Boston,MA,02215 +278694,27in FHD Monitor,1,149.99,2019-10-12 20:48:00,512 Walnut St, Portland,ME,04101 +278695,Wired Headphones,1,11.99,2019-10-13 20:50:00,778 Lincoln St, Boston,MA,02215 +278696,Wired Headphones,1,11.99,2019-10-14 18:21:00,943 Jefferson St, Dallas,TX,75001 +278697,Wired Headphones,1,11.99,2019-10-21 13:58:00,621 North St, Los Angeles,CA,90001 +278697,27in 4K Gaming Monitor,1,389.99,2019-10-21 13:58:00,621 North St, Los Angeles,CA,90001 +278698,Apple Airpods Headphones,1,150.0,2019-10-31 19:40:00,822 Jackson St, Portland,OR,97035 +278699,AAA Batteries (4-pack),1,2.99,2019-10-14 13:46:00,36 Chestnut St, Seattle,WA,98101 +278700,AA Batteries (4-pack),1,3.84,2019-10-06 14:02:00,820 Willow St, San Francisco,CA,94016 +278701,34in Ultrawide Monitor,1,379.99,2019-10-10 10:32:00,71 9th St, New York City,NY,10001 +278702,Flatscreen TV,1,300.0,2019-10-29 21:08:00,357 Park St, New York City,NY,10001 +278703,27in 4K Gaming Monitor,1,389.99,2019-10-15 08:19:00,166 14th St, Dallas,TX,75001 +278704,34in Ultrawide Monitor,1,379.99,2019-10-10 15:43:00,871 Cherry St, New York City,NY,10001 +278705,AAA Batteries (4-pack),2,2.99,2019-10-15 19:35:00,196 Sunset St, New York City,NY,10001 +278706,Google Phone,1,600.0,2019-10-07 18:18:00,942 11th St, San Francisco,CA,94016 +278706,USB-C Charging Cable,1,11.95,2019-10-07 18:18:00,942 11th St, San Francisco,CA,94016 +278707,Bose SoundSport Headphones,1,99.99,2019-10-15 08:31:00,478 South St, San Francisco,CA,94016 +278708,USB-C Charging Cable,1,11.95,2019-10-15 14:19:00,748 Hickory St, San Francisco,CA,94016 +278709,Bose SoundSport Headphones,1,99.99,2019-10-23 13:38:00,773 Johnson St, San Francisco,CA,94016 +278710,USB-C Charging Cable,1,11.95,2019-10-13 19:05:00,183 5th St, San Francisco,CA,94016 +278710,27in FHD Monitor,1,149.99,2019-10-13 19:05:00,183 5th St, San Francisco,CA,94016 +278711,Macbook Pro Laptop,1,1700.0,2019-10-12 14:46:00,707 13th St, Atlanta,GA,30301 +278712,20in Monitor,1,109.99,2019-10-30 16:20:00,432 12th St, San Francisco,CA,94016 +278713,iPhone,1,700.0,2019-10-31 20:00:00,179 Walnut St, San Francisco,CA,94016 +278714,Lightning Charging Cable,1,14.95,2019-10-03 02:40:00,925 9th St, New York City,NY,10001 +278715,27in FHD Monitor,1,149.99,2019-10-14 21:03:00,185 2nd St, San Francisco,CA,94016 +278716,27in 4K Gaming Monitor,1,389.99,2019-10-14 12:06:00,490 Lake St, Portland,ME,04101 +278717,Wired Headphones,2,11.99,2019-10-13 19:28:00,388 9th St, San Francisco,CA,94016 +278718,USB-C Charging Cable,1,11.95,2019-10-13 12:45:00,479 Lincoln St, Atlanta,GA,30301 +278718,Bose SoundSport Headphones,1,99.99,2019-10-13 12:45:00,479 Lincoln St, Atlanta,GA,30301 +278719,AAA Batteries (4-pack),3,2.99,2019-10-28 18:31:00,382 Forest St, New York City,NY,10001 +278720,Lightning Charging Cable,1,14.95,2019-10-16 20:32:00,790 Jefferson St, New York City,NY,10001 +278721,Apple Airpods Headphones,1,150.0,2019-10-07 12:55:00,992 North St, Dallas,TX,75001 +278722,20in Monitor,1,109.99,2019-10-17 20:17:00,327 Hill St, Boston,MA,02215 +278723,AAA Batteries (4-pack),1,2.99,2019-10-08 11:29:00,336 Lincoln St, Seattle,WA,98101 +278724,USB-C Charging Cable,1,11.95,2019-10-10 20:31:00,503 11th St, San Francisco,CA,94016 +278725,Wired Headphones,1,11.99,2019-10-26 17:03:00,633 Jefferson St, Dallas,TX,75001 +278726,Bose SoundSport Headphones,1,99.99,2019-10-11 19:32:00,826 12th St, San Francisco,CA,94016 +278727,Apple Airpods Headphones,1,150.0,2019-10-22 07:10:00,767 West St, Seattle,WA,98101 +278728,LG Washing Machine,1,600.0,2019-10-13 00:09:00,541 14th St, San Francisco,CA,94016 +278729,Apple Airpods Headphones,1,150.0,2019-10-20 18:49:00,21 Ridge St, New York City,NY,10001 +278730,USB-C Charging Cable,1,11.95,2019-10-30 09:21:00,890 14th St, Seattle,WA,98101 +278731,20in Monitor,1,109.99,2019-10-12 23:58:00,809 6th St, Seattle,WA,98101 +278732,Wired Headphones,1,11.99,2019-10-10 16:10:00,717 Walnut St, Boston,MA,02215 +278733,iPhone,1,700.0,2019-10-25 19:01:00,222 7th St, Seattle,WA,98101 +278734,Google Phone,1,600.0,2019-10-07 14:03:00,83 12th St, San Francisco,CA,94016 +278735,Macbook Pro Laptop,1,1700.0,2019-10-18 13:18:00,284 Jackson St, Seattle,WA,98101 +278736,AA Batteries (4-pack),1,3.84,2019-10-03 09:05:00,878 14th St, Los Angeles,CA,90001 +278737,Bose SoundSport Headphones,1,99.99,2019-10-07 23:00:00,138 Jackson St, San Francisco,CA,94016 +278738,ThinkPad Laptop,1,999.99,2019-10-16 18:40:00,679 West St, Boston,MA,02215 +278739,Lightning Charging Cable,1,14.95,2019-10-11 15:53:00,55 Adams St, Los Angeles,CA,90001 +278740,iPhone,1,700.0,2019-10-13 09:28:00,383 Park St, New York City,NY,10001 +278741,AA Batteries (4-pack),1,3.84,2019-10-15 05:19:00,353 Wilson St, Austin,TX,73301 +278742,Wired Headphones,1,11.99,2019-10-21 16:05:00,791 Main St, Los Angeles,CA,90001 +278743,USB-C Charging Cable,1,11.95,2019-10-11 10:55:00,326 7th St, Austin,TX,73301 +278744,20in Monitor,1,109.99,2019-10-28 12:52:00,970 8th St, Boston,MA,02215 +278745,34in Ultrawide Monitor,1,379.99,2019-10-26 12:39:00,311 Pine St, New York City,NY,10001 +278746,Bose SoundSport Headphones,1,99.99,2019-10-11 20:11:00,219 Lake St, Austin,TX,73301 +278747,27in FHD Monitor,1,149.99,2019-10-08 19:56:00,223 Johnson St, Seattle,WA,98101 +278748,Flatscreen TV,1,300.0,2019-10-30 11:16:00,96 Lake St, San Francisco,CA,94016 +278749,Vareebadd Phone,1,400.0,2019-10-26 22:41:00,311 Cherry St, Los Angeles,CA,90001 +278750,Apple Airpods Headphones,1,150.0,2019-10-19 11:47:00,194 Pine St, New York City,NY,10001 +278751,Wired Headphones,2,11.99,2019-10-31 07:49:00,372 Hill St, Boston,MA,02215 +278752,Apple Airpods Headphones,1,150.0,2019-10-13 16:48:00,778 South St, New York City,NY,10001 +278753,AA Batteries (4-pack),1,3.84,2019-10-16 22:59:00,81 Lincoln St, Los Angeles,CA,90001 +278754,34in Ultrawide Monitor,1,379.99,2019-10-30 19:54:00,798 Lincoln St, Austin,TX,73301 +278755,Wired Headphones,2,11.99,2019-10-05 12:35:00,507 Ridge St, Los Angeles,CA,90001 +278756,Lightning Charging Cable,1,14.95,2019-10-04 14:09:00,44 Johnson St, San Francisco,CA,94016 +278757,AAA Batteries (4-pack),1,2.99,2019-10-23 11:17:00,598 Madison St, Boston,MA,02215 +278758,34in Ultrawide Monitor,1,379.99,2019-10-13 18:39:00,804 Willow St, Seattle,WA,98101 +278759,Wired Headphones,1,11.99,2019-10-31 20:50:00,967 South St, Seattle,WA,98101 +278760,AA Batteries (4-pack),1,3.84,2019-10-14 20:11:00,660 Dogwood St, New York City,NY,10001 +278761,Apple Airpods Headphones,1,150.0,2019-10-07 17:29:00,752 Park St, New York City,NY,10001 +278762,Wired Headphones,2,11.99,2019-10-19 23:09:00,925 9th St, San Francisco,CA,94016 +278763,Macbook Pro Laptop,1,1700.0,2019-10-04 10:48:00,165 8th St, Austin,TX,73301 +278764,27in FHD Monitor,1,149.99,2019-10-21 13:14:00,167 Adams St, Seattle,WA,98101 +278765,Lightning Charging Cable,1,14.95,2019-10-09 09:21:00,750 12th St, Atlanta,GA,30301 +278766,USB-C Charging Cable,1,11.95,2019-10-26 16:02:00,672 Washington St, San Francisco,CA,94016 +278767,Apple Airpods Headphones,1,150.0,2019-10-31 18:49:00,738 5th St, San Francisco,CA,94016 +278768,Lightning Charging Cable,1,14.95,2019-10-20 19:09:00,868 South St, New York City,NY,10001 +278769,AA Batteries (4-pack),1,3.84,2019-10-11 13:19:00,593 Park St, Portland,OR,97035 +278770,Bose SoundSport Headphones,1,99.99,2019-10-14 12:34:00,652 Meadow St, New York City,NY,10001 +278771,27in FHD Monitor,1,149.99,2019-10-08 11:21:00,364 7th St, San Francisco,CA,94016 +278772,20in Monitor,1,109.99,2019-10-20 08:59:00,181 North St, New York City,NY,10001 +278773,LG Washing Machine,1,600.0,2019-10-30 21:34:00,843 North St, Boston,MA,02215 +278774,Macbook Pro Laptop,1,1700.0,2019-10-16 20:42:00,102 8th St, Los Angeles,CA,90001 +278775,20in Monitor,1,109.99,2019-10-13 12:00:00,400 Hickory St, San Francisco,CA,94016 +278776,USB-C Charging Cable,1,11.95,2019-10-26 20:28:00,243 Lake St, San Francisco,CA,94016 +278777,USB-C Charging Cable,1,11.95,2019-10-19 14:13:00,164 Meadow St, Atlanta,GA,30301 +278778,AAA Batteries (4-pack),2,2.99,2019-10-09 11:49:00,571 Washington St, Atlanta,GA,30301 +278779,USB-C Charging Cable,1,11.95,2019-10-12 21:04:00,43 12th St, Los Angeles,CA,90001 +278780,Bose SoundSport Headphones,1,99.99,2019-10-19 11:44:00,174 Lincoln St, Los Angeles,CA,90001 +278781,20in Monitor,1,109.99,2019-10-28 22:07:00,112 Willow St, Seattle,WA,98101 +278782,USB-C Charging Cable,1,11.95,2019-10-24 14:03:00,53 5th St, Boston,MA,02215 +278783,Lightning Charging Cable,1,14.95,2019-10-06 21:05:00,895 Elm St, Austin,TX,73301 +278784,Macbook Pro Laptop,1,1700.0,2019-10-21 11:53:00,918 Pine St, San Francisco,CA,94016 +278785,AA Batteries (4-pack),1,3.84,2019-10-03 11:51:00,841 Cedar St, San Francisco,CA,94016 +278786,Bose SoundSport Headphones,1,99.99,2019-10-11 16:57:00,231 Hickory St, Atlanta,GA,30301 +278787,iPhone,1,700.0,2019-10-23 17:06:00,51 South St, Atlanta,GA,30301 +278788,Lightning Charging Cable,1,14.95,2019-10-26 10:14:00,347 4th St, San Francisco,CA,94016 +278789,Wired Headphones,1,11.99,2019-10-22 08:52:00,617 Walnut St, Boston,MA,02215 +278790,USB-C Charging Cable,1,11.95,2019-10-26 10:58:00,181 8th St, Boston,MA,02215 +278791,AAA Batteries (4-pack),1,2.99,2019-10-18 13:08:00,537 Hill St, San Francisco,CA,94016 +278792,AA Batteries (4-pack),1,3.84,2019-10-12 04:32:00,920 Adams St, San Francisco,CA,94016 +278793,Wired Headphones,1,11.99,2019-10-28 22:00:00,161 Chestnut St, Los Angeles,CA,90001 +278794,AA Batteries (4-pack),1,3.84,2019-10-09 20:58:00,346 Spruce St, San Francisco,CA,94016 +278795,iPhone,1,700.0,2019-10-31 17:21:00,291 Hill St, Seattle,WA,98101 +278796,Wired Headphones,1,11.99,2019-10-13 11:20:00,547 Jefferson St, Los Angeles,CA,90001 +248151,AA Batteries (4-pack),4,3.84,2019-09-17 14:44:00,380 North St, Los Angeles,CA,90001 +248152,USB-C Charging Cable,2,11.95,2019-09-29 10:19:00,511 8th St, Austin,TX,73301 +248153,USB-C Charging Cable,1,11.95,2019-09-16 17:48:00,151 Johnson St, Los Angeles,CA,90001 +248154,27in FHD Monitor,1,149.99,2019-09-27 07:52:00,355 Hickory St, Seattle,WA,98101 +248155,USB-C Charging Cable,1,11.95,2019-09-01 19:03:00,125 5th St, Atlanta,GA,30301 +248156,34in Ultrawide Monitor,1,379.99,2019-09-13 14:59:00,469 12th St, Los Angeles,CA,90001 +248157,Lightning Charging Cable,1,14.95,2019-09-07 09:59:00,773 Johnson St, Portland,ME,04101 +248158,Lightning Charging Cable,1,14.95,2019-09-02 14:16:00,682 Sunset St, Los Angeles,CA,90001 +248159,Vareebadd Phone,1,400.0,2019-09-06 16:45:00,664 Wilson St, New York City,NY,10001 +248160,Wired Headphones,1,11.99,2019-09-01 22:03:00,446 9th St, San Francisco,CA,94016 +248161,USB-C Charging Cable,1,11.95,2019-09-24 16:26:00,439 Spruce St, San Francisco,CA,94016 +248162,AAA Batteries (4-pack),3,2.99,2019-09-14 12:52:00,439 Walnut St, Seattle,WA,98101 +248163,USB-C Charging Cable,1,11.95,2019-09-25 12:32:00,41 North St, Portland,OR,97035 +248164,27in FHD Monitor,1,149.99,2019-09-12 15:57:00,88 9th St, San Francisco,CA,94016 +248165,Lightning Charging Cable,1,14.95,2019-09-15 12:42:00,585 Adams St, Atlanta,GA,30301 +248166,Apple Airpods Headphones,1,150.0,2019-09-04 14:59:00,21 9th St, Boston,MA,02215 +248167,Google Phone,1,600.0,2019-09-02 18:52:00,711 Forest St, San Francisco,CA,94016 +248168,USB-C Charging Cable,1,11.95,2019-09-30 18:59:00,219 Hickory St, San Francisco,CA,94016 +248169,20in Monitor,1,109.99,2019-09-24 19:40:00,140 Ridge St, San Francisco,CA,94016 +248170,AAA Batteries (4-pack),1,2.99,2019-09-04 02:01:00,857 Main St, Boston,MA,02215 +248171,USB-C Charging Cable,1,11.95,2019-09-05 15:06:00,705 Hill St, New York City,NY,10001 +248172,Wired Headphones,1,11.99,2019-09-13 16:49:00,820 Hill St, Boston,MA,02215 +248173,Apple Airpods Headphones,1,150.0,2019-09-14 20:47:00,789 Lake St, Atlanta,GA,30301 +248174,Bose SoundSport Headphones,1,99.99,2019-09-17 22:57:00,385 Washington St, Dallas,TX,75001 +248175,iPhone,1,700.0,2019-09-08 13:58:00,736 4th St, Austin,TX,73301 +248176,AA Batteries (4-pack),2,3.84,2019-09-12 13:18:00,177 Sunset St, San Francisco,CA,94016 +248177,USB-C Charging Cable,1,11.95,2019-09-24 20:36:00,452 Adams St, San Francisco,CA,94016 +248178,Apple Airpods Headphones,1,150.0,2019-09-03 21:52:00,725 Jefferson St, Los Angeles,CA,90001 +248179,27in FHD Monitor,1,149.99,2019-09-13 15:06:00,510 Hickory St, New York City,NY,10001 +248180,USB-C Charging Cable,1,11.95,2019-09-28 15:52:00,99 Ridge St, New York City,NY,10001 +248181,Apple Airpods Headphones,1,150.0,2019-09-08 12:40:00,81 Spruce St, New York City,NY,10001 +248182,Apple Airpods Headphones,1,150.0,2019-09-15 13:03:00,950 West St, New York City,NY,10001 +248183,34in Ultrawide Monitor,1,379.99,2019-09-18 17:47:00,968 Ridge St, San Francisco,CA,94016 +248184,AA Batteries (4-pack),1,3.84,2019-09-07 11:23:00,948 Main St, New York City,NY,10001 +248185,34in Ultrawide Monitor,1,379.99,2019-09-17 15:10:00,967 Center St, New York City,NY,10001 +248186,USB-C Charging Cable,1,11.95,2019-09-05 13:53:00,318 Cherry St, Seattle,WA,98101 +248187,AAA Batteries (4-pack),3,2.99,2019-09-07 23:31:00,173 Elm St, Los Angeles,CA,90001 +248188,Apple Airpods Headphones,1,150.0,2019-09-08 22:17:00,136 12th St, San Francisco,CA,94016 +248189,Google Phone,1,600.0,2019-09-14 12:45:00,726 8th St, San Francisco,CA,94016 +248190,Bose SoundSport Headphones,1,99.99,2019-09-24 21:47:00,350 Lincoln St, New York City,NY,10001 +248191,AAA Batteries (4-pack),1,2.99,2019-09-22 11:25:00,446 2nd St, San Francisco,CA,94016 +248192,AAA Batteries (4-pack),2,2.99,2019-09-21 09:16:00,444 North St, Austin,TX,73301 +248193,USB-C Charging Cable,1,11.95,2019-09-05 00:40:00,867 Hill St, San Francisco,CA,94016 +248194,20in Monitor,1,109.99,2019-09-29 20:50:00,519 Cherry St, Dallas,TX,75001 +248195,ThinkPad Laptop,1,999.99,2019-09-10 23:29:00,631 6th St, Dallas,TX,75001 +248196,Lightning Charging Cable,1,14.95,2019-09-29 21:56:00,608 Spruce St, Dallas,TX,75001 +248197,Apple Airpods Headphones,1,150.0,2019-09-02 19:39:00,339 Highland St, Portland,OR,97035 +248198,AAA Batteries (4-pack),1,2.99,2019-09-10 00:06:00,200 Wilson St, Portland,OR,97035 +248199,Google Phone,1,600.0,2019-09-11 12:47:00,780 4th St, Boston,MA,02215 +248200,Lightning Charging Cable,1,14.95,2019-09-28 09:11:00,208 Main St, Atlanta,GA,30301 +248201,Bose SoundSport Headphones,1,99.99,2019-09-26 07:40:00,606 North St, New York City,NY,10001 +248202,27in FHD Monitor,1,149.99,2019-09-28 14:30:00,392 10th St, Los Angeles,CA,90001 +248203,Apple Airpods Headphones,1,150.0,2019-09-21 08:58:00,732 Park St, New York City,NY,10001 +248204,Macbook Pro Laptop,1,1700.0,2019-09-02 18:42:00,940 Madison St, Seattle,WA,98101 +248205,AA Batteries (4-pack),3,3.84,2019-09-06 14:09:00,353 Lake St, Atlanta,GA,30301 +248206,AAA Batteries (4-pack),1,2.99,2019-09-30 21:51:00,414 7th St, San Francisco,CA,94016 +248207,Flatscreen TV,1,300.0,2019-09-05 14:15:00,636 13th St, Los Angeles,CA,90001 +248208,Macbook Pro Laptop,1,1700.0,2019-09-11 19:30:00,22 7th St, Portland,ME,04101 +248209,Apple Airpods Headphones,1,150.0,2019-09-14 20:38:00,477 Church St, San Francisco,CA,94016 +248210,iPhone,1,700.0,2019-09-27 10:33:00,292 Washington St, San Francisco,CA,94016 +248210,Lightning Charging Cable,1,14.95,2019-09-27 10:33:00,292 Washington St, San Francisco,CA,94016 +248211,AA Batteries (4-pack),1,3.84,2019-09-26 09:09:00,602 4th St, San Francisco,CA,94016 +248212,USB-C Charging Cable,3,11.95,2019-09-20 16:34:00,244 Jefferson St, Boston,MA,02215 +248213,27in 4K Gaming Monitor,1,389.99,2019-09-22 19:52:00,852 Dogwood St, Los Angeles,CA,90001 +248214,Lightning Charging Cable,1,14.95,2019-09-16 17:51:00,213 West St, San Francisco,CA,94016 +248215,34in Ultrawide Monitor,1,379.99,2019-09-24 13:36:00,876 Maple St, San Francisco,CA,94016 +248216,AAA Batteries (4-pack),1,2.99,2019-09-19 16:43:00,394 Madison St, San Francisco,CA,94016 +248217,Apple Airpods Headphones,1,150.0,2019-09-29 11:54:00,539 Forest St, Boston,MA,02215 +248218,AA Batteries (4-pack),1,3.84,2019-09-16 20:56:00,258 Forest St, New York City,NY,10001 +248219,Bose SoundSport Headphones,1,99.99,2019-09-24 12:48:00,665 Maple St, Los Angeles,CA,90001 +248219,Google Phone,1,600.0,2019-09-24 12:48:00,665 Maple St, Los Angeles,CA,90001 +248220,Lightning Charging Cable,2,14.95,2019-09-18 10:33:00,751 Johnson St, San Francisco,CA,94016 +248221,AA Batteries (4-pack),1,3.84,2019-09-08 07:13:00,425 4th St, Los Angeles,CA,90001 +248222,Lightning Charging Cable,1,14.95,2019-09-22 22:10:00,139 Ridge St, San Francisco,CA,94016 +248223,20in Monitor,1,109.99,2019-09-07 20:39:00,350 11th St, Seattle,WA,98101 +248224,AAA Batteries (4-pack),2,2.99,2019-09-24 14:36:00,523 Wilson St, New York City,NY,10001 +248225,Lightning Charging Cable,1,14.95,2019-09-30 13:11:00,414 12th St, San Francisco,CA,94016 +248226,Wired Headphones,1,11.99,2019-09-23 17:50:00,316 10th St, Boston,MA,02215 +248227,Lightning Charging Cable,1,14.95,2019-09-07 17:23:00,182 Hickory St, Austin,TX,73301 +248228,Lightning Charging Cable,1,14.95,2019-09-26 19:18:00,956 Sunset St, Boston,MA,02215 +248229,Wired Headphones,1,11.99,2019-09-08 22:29:00,191 Spruce St, San Francisco,CA,94016 +248230,AA Batteries (4-pack),1,3.84,2019-09-14 23:11:00,939 1st St, San Francisco,CA,94016 +248231,Flatscreen TV,1,300.0,2019-09-20 11:14:00,753 2nd St, Los Angeles,CA,90001 +248232,Lightning Charging Cable,1,14.95,2019-09-11 05:25:00,339 Willow St, Los Angeles,CA,90001 +248233,AAA Batteries (4-pack),1,2.99,2019-09-28 12:24:00,192 Jackson St, Dallas,TX,75001 +248234,34in Ultrawide Monitor,1,379.99,2019-09-05 10:46:00,855 Forest St, San Francisco,CA,94016 +248235,Lightning Charging Cable,1,14.95,2019-09-26 20:16:00,374 Cherry St, San Francisco,CA,94016 +248236,Lightning Charging Cable,1,14.95,2019-09-13 15:34:00,429 Wilson St, Boston,MA,02215 +248237,Wired Headphones,1,11.99,2019-09-23 22:15:00,255 9th St, New York City,NY,10001 +248238,Wired Headphones,1,11.99,2019-09-04 12:59:00,741 11th St, Los Angeles,CA,90001 +248239,Wired Headphones,1,11.99,2019-09-13 21:31:00,276 11th St, Los Angeles,CA,90001 +248240,AAA Batteries (4-pack),1,2.99,2019-09-28 15:16:00,823 Meadow St, San Francisco,CA,94016 +248241,AA Batteries (4-pack),2,3.84,2019-09-22 16:12:00,210 Maple St, Seattle,WA,98101 +248242,Lightning Charging Cable,2,14.95,2019-09-13 19:21:00,832 Johnson St, San Francisco,CA,94016 +248243,USB-C Charging Cable,1,11.95,2019-09-04 10:49:00,522 12th St, San Francisco,CA,94016 +248244,Lightning Charging Cable,1,14.95,2019-09-21 16:01:00,57 Willow St, Dallas,TX,75001 +248245,Wired Headphones,1,11.99,2019-09-15 10:40:00,969 Maple St, Dallas,TX,75001 +248246,Wired Headphones,1,11.99,2019-09-11 20:13:00,727 Center St, Los Angeles,CA,90001 +248247,27in 4K Gaming Monitor,1,389.99,2019-09-09 23:35:00,192 7th St, New York City,NY,10001 +248248,Apple Airpods Headphones,1,150.0,2019-09-14 15:12:00,769 6th St, New York City,NY,10001 +248249,AA Batteries (4-pack),1,3.84,2019-09-10 16:32:00,428 Center St, Seattle,WA,98101 +248250,iPhone,1,700.0,2019-09-05 18:09:00,374 Ridge St, Seattle,WA,98101 +248251,Vareebadd Phone,1,400.0,2019-09-22 05:16:00,652 West St, Dallas,TX,75001 +248252,AA Batteries (4-pack),1,3.84,2019-09-19 01:13:00,565 Sunset St, Dallas,TX,75001 +248253,Bose SoundSport Headphones,1,99.99,2019-09-13 20:41:00,296 Highland St, Atlanta,GA,30301 +248254,AAA Batteries (4-pack),2,2.99,2019-09-19 18:35:00,353 Madison St, San Francisco,CA,94016 +248255,Bose SoundSport Headphones,1,99.99,2019-09-02 12:37:00,240 Cedar St, Seattle,WA,98101 +248256,Wired Headphones,1,11.99,2019-09-03 16:37:00,384 Maple St, San Francisco,CA,94016 +248257,USB-C Charging Cable,2,11.95,2019-09-10 09:51:00,337 11th St, Boston,MA,02215 +248258,Macbook Pro Laptop,1,1700.0,2019-09-21 09:57:00,535 2nd St, Los Angeles,CA,90001 +248259,USB-C Charging Cable,1,11.95,2019-09-14 20:33:00,814 Lakeview St, Los Angeles,CA,90001 +248260,Apple Airpods Headphones,1,150.0,2019-09-26 15:16:00,998 Adams St, Portland,ME,04101 +248261,AAA Batteries (4-pack),2,2.99,2019-09-04 06:21:00,582 Elm St, San Francisco,CA,94016 +248262,20in Monitor,1,109.99,2019-09-11 11:44:00,100 Jefferson St, Seattle,WA,98101 +248263,34in Ultrawide Monitor,1,379.99,2019-09-30 05:37:00,327 Forest St, New York City,NY,10001 +248264,Bose SoundSport Headphones,1,99.99,2019-09-05 19:59:00,505 Elm St, Dallas,TX,75001 +248265,Vareebadd Phone,1,400.0,2019-09-24 14:07:00,939 14th St, San Francisco,CA,94016 +248265,Bose SoundSport Headphones,1,99.99,2019-09-24 14:07:00,939 14th St, San Francisco,CA,94016 +248266,27in 4K Gaming Monitor,1,389.99,2019-09-28 23:20:00,685 Cherry St, Dallas,TX,75001 +248267,Macbook Pro Laptop,1,1700.0,2019-09-09 18:59:00,147 Lakeview St, Los Angeles,CA,90001 +248268,Lightning Charging Cable,1,14.95,2019-09-25 17:54:00,341 Jefferson St, Los Angeles,CA,90001 +248269,Lightning Charging Cable,1,14.95,2019-09-18 22:23:00,566 Spruce St, Atlanta,GA,30301 +248270,USB-C Charging Cable,1,11.95,2019-09-08 11:04:00,82 Meadow St, San Francisco,CA,94016 +248271,34in Ultrawide Monitor,1,379.99,2019-09-09 15:33:00,871 Lincoln St, Boston,MA,02215 +248272,ThinkPad Laptop,1,999.99,2019-09-01 11:11:00,246 Hill St, Dallas,TX,75001 +248273,AA Batteries (4-pack),1,3.84,2019-09-02 08:09:00,30 Meadow St, Seattle,WA,98101 +248274,AA Batteries (4-pack),1,3.84,2019-09-27 21:49:00,418 River St, Boston,MA,02215 +248275,Apple Airpods Headphones,1,150.0,2019-09-18 19:05:00,530 Main St, Dallas,TX,75001 +248276,iPhone,1,700.0,2019-09-22 17:13:00,620 North St, New York City,NY,10001 +248277,Macbook Pro Laptop,1,1700.0,2019-09-28 12:58:00,391 Hill St, New York City,NY,10001 +248278,Wired Headphones,1,11.99,2019-09-09 13:02:00,811 14th St, Dallas,TX,75001 +248279,Bose SoundSport Headphones,1,99.99,2019-09-25 22:43:00,322 13th St, Atlanta,GA,30301 +248280,27in FHD Monitor,1,149.99,2019-09-30 15:16:00,129 Dogwood St, Los Angeles,CA,90001 +248281,Wired Headphones,1,11.99,2019-09-05 16:19:00,385 8th St, Los Angeles,CA,90001 +248282,Apple Airpods Headphones,1,150.0,2019-09-01 22:13:00,941 7th St, Boston,MA,02215 +248283,Apple Airpods Headphones,1,150.0,2019-09-10 14:13:00,687 4th St, Atlanta,GA,30301 +248284,27in 4K Gaming Monitor,1,389.99,2019-09-22 04:36:00,801 12th St, Los Angeles,CA,90001 +248285,Apple Airpods Headphones,1,150.0,2019-09-30 21:10:00,134 5th St, Portland,OR,97035 +248286,Wired Headphones,1,11.99,2019-09-17 22:10:00,806 Lake St, New York City,NY,10001 +248287,Bose SoundSport Headphones,1,99.99,2019-09-26 12:02:00,375 River St, Portland,OR,97035 +248288,Bose SoundSport Headphones,1,99.99,2019-09-02 09:11:00,360 4th St, San Francisco,CA,94016 +248289,Wired Headphones,1,11.99,2019-09-11 12:35:00,566 Main St, Dallas,TX,75001 +248290,AA Batteries (4-pack),1,3.84,2019-09-06 21:18:00,283 West St, San Francisco,CA,94016 +248291,Apple Airpods Headphones,1,150.0,2019-09-14 10:31:00,556 Forest St, San Francisco,CA,94016 +248292,Wired Headphones,2,11.99,2019-09-16 13:00:00,832 West St, San Francisco,CA,94016 +248293,Macbook Pro Laptop,1,1700.0,2019-09-02 16:53:00,967 4th St, New York City,NY,10001 +248294,Macbook Pro Laptop,1,1700.0,2019-09-07 17:08:00,165 North St, Portland,OR,97035 +248295,Macbook Pro Laptop,1,1700.0,2019-09-26 23:33:00,999 North St, San Francisco,CA,94016 +248296,AA Batteries (4-pack),1,3.84,2019-09-17 16:39:00,342 Hill St, Boston,MA,02215 +248297,AAA Batteries (4-pack),2,2.99,2019-09-08 00:07:00,358 Willow St, San Francisco,CA,94016 +248298,AA Batteries (4-pack),1,3.84,2019-09-20 21:15:00,278 North St, Atlanta,GA,30301 +248299,Lightning Charging Cable,1,14.95,2019-09-22 20:16:00,72 7th St, Portland,OR,97035 +248300,AAA Batteries (4-pack),1,2.99,2019-09-01 16:57:00,160 7th St, Boston,MA,02215 +248301,AAA Batteries (4-pack),2,2.99,2019-09-05 10:38:00,465 7th St, New York City,NY,10001 +248302,27in 4K Gaming Monitor,1,389.99,2019-09-08 08:52:00,787 Hickory St, Boston,MA,02215 +248303,20in Monitor,1,109.99,2019-09-17 19:50:00,3 Hickory St, Dallas,TX,75001 +248304,AAA Batteries (4-pack),1,2.99,2019-09-21 09:10:00,445 Walnut St, Atlanta,GA,30301 +248305,Lightning Charging Cable,1,14.95,2019-09-01 13:05:00,334 14th St, Boston,MA,02215 +248306,USB-C Charging Cable,1,11.95,2019-09-15 13:44:00,38 2nd St, New York City,NY,10001 +248307,Wired Headphones,1,11.99,2019-09-04 20:15:00,262 4th St, San Francisco,CA,94016 +248308,27in 4K Gaming Monitor,1,389.99,2019-09-12 18:10:00,783 Lake St, Los Angeles,CA,90001 +248309,iPhone,1,700.0,2019-09-07 14:27:00,137 1st St, Seattle,WA,98101 +248310,iPhone,1,700.0,2019-09-05 21:00:00,201 Spruce St, Austin,TX,73301 +248311,AA Batteries (4-pack),1,3.84,2019-09-21 18:09:00,532 12th St, Los Angeles,CA,90001 +248312,USB-C Charging Cable,1,11.95,2019-09-14 16:29:00,613 Madison St, New York City,NY,10001 +248313,Lightning Charging Cable,1,14.95,2019-09-25 16:39:00,212 Church St, Los Angeles,CA,90001 +248314,Wired Headphones,1,11.99,2019-09-20 14:54:00,349 12th St, Atlanta,GA,30301 +248315,Wired Headphones,1,11.99,2019-09-13 09:07:00,157 Madison St, San Francisco,CA,94016 +248316,Lightning Charging Cable,1,14.95,2019-09-15 16:11:00,479 Park St, San Francisco,CA,94016 +248317,AAA Batteries (4-pack),1,2.99,2019-09-17 18:35:00,237 Spruce St, Portland,ME,04101 +248318,Google Phone,1,600.0,2019-09-24 12:43:00,165 Hill St, Austin,TX,73301 +248319,AAA Batteries (4-pack),3,2.99,2019-09-03 14:58:00,389 4th St, Seattle,WA,98101 +248320,Apple Airpods Headphones,1,150.0,2019-09-10 22:49:00,343 Lakeview St, Atlanta,GA,30301 +248321,Bose SoundSport Headphones,1,99.99,2019-09-08 00:42:00,351 Highland St, Seattle,WA,98101 +248322,AA Batteries (4-pack),2,3.84,2019-09-13 15:08:00,279 Hill St, San Francisco,CA,94016 +248323,Google Phone,1,600.0,2019-09-30 20:36:00,725 10th St, Portland,OR,97035 +248323,Bose SoundSport Headphones,1,99.99,2019-09-30 20:36:00,725 10th St, Portland,OR,97035 +248324,20in Monitor,1,109.99,2019-09-12 23:11:00,728 Hickory St, Dallas,TX,75001 +248325,Lightning Charging Cable,1,14.95,2019-09-14 16:10:00,859 9th St, San Francisco,CA,94016 +248326,Apple Airpods Headphones,1,150.0,2019-09-18 06:53:00,283 2nd St, New York City,NY,10001 +248327,34in Ultrawide Monitor,1,379.99,2019-09-14 12:05:00,52 13th St, San Francisco,CA,94016 +248328,Apple Airpods Headphones,1,150.0,2019-09-26 14:27:00,191 Willow St, San Francisco,CA,94016 +248329,Vareebadd Phone,1,400.0,2019-09-02 15:56:00,472 11th St, Austin,TX,73301 +248329,Wired Headphones,1,11.99,2019-09-02 15:56:00,472 11th St, Austin,TX,73301 +248330,AAA Batteries (4-pack),1,2.99,2019-09-12 14:40:00,862 Cedar St, Seattle,WA,98101 +248331,iPhone,1,700.0,2019-09-02 17:38:00,642 2nd St, San Francisco,CA,94016 +248331,Lightning Charging Cable,1,14.95,2019-09-02 17:38:00,642 2nd St, San Francisco,CA,94016 +248331,Apple Airpods Headphones,1,150.0,2019-09-02 17:38:00,642 2nd St, San Francisco,CA,94016 +248332,Apple Airpods Headphones,1,150.0,2019-09-08 11:16:00,57 South St, Seattle,WA,98101 +248333,Flatscreen TV,1,300.0,2019-09-05 16:47:00,622 Lakeview St, Los Angeles,CA,90001 +248334,Lightning Charging Cable,1,14.95,2019-09-17 09:40:00,847 Park St, Atlanta,GA,30301 +248335,Apple Airpods Headphones,1,150.0,2019-09-17 23:07:00,791 South St, New York City,NY,10001 +248336,Apple Airpods Headphones,1,150.0,2019-09-27 19:52:00,47 Willow St, Atlanta,GA,30301 +248337,AA Batteries (4-pack),1,3.84,2019-09-08 19:04:00,739 Cedar St, Portland,OR,97035 +248338,USB-C Charging Cable,1,11.95,2019-09-16 10:48:00,811 12th St, Boston,MA,02215 +248339,Bose SoundSport Headphones,1,99.99,2019-09-08 21:04:00,723 North St, San Francisco,CA,94016 +248340,AAA Batteries (4-pack),1,2.99,2019-09-13 20:08:00,896 12th St, Seattle,WA,98101 +248341,USB-C Charging Cable,1,11.95,2019-09-18 11:39:00,755 5th St, Los Angeles,CA,90001 +248342,Apple Airpods Headphones,1,150.0,2019-09-11 00:43:00,922 Elm St, New York City,NY,10001 +248343,USB-C Charging Cable,1,11.95,2019-09-24 22:33:00,732 Spruce St, Atlanta,GA,30301 +248344,Wired Headphones,1,11.99,2019-09-29 09:48:00,749 Center St, New York City,NY,10001 +248345,USB-C Charging Cable,1,11.95,2019-09-30 19:08:00,853 2nd St, Atlanta,GA,30301 +248346,Lightning Charging Cable,1,14.95,2019-09-06 03:22:00,855 Chestnut St, Los Angeles,CA,90001 +248347,AA Batteries (4-pack),1,3.84,2019-09-19 13:30:00,187 8th St, New York City,NY,10001 +248348,AA Batteries (4-pack),1,3.84,2019-09-25 12:28:00,649 North St, San Francisco,CA,94016 +248349,Bose SoundSport Headphones,1,99.99,2019-09-05 20:31:00,722 12th St, Boston,MA,02215 +248350,iPhone,1,700.0,2019-09-30 19:33:00,717 12th St, Los Angeles,CA,90001 +248351,27in 4K Gaming Monitor,1,389.99,2019-09-17 18:32:00,853 Jackson St, New York City,NY,10001 +248352,Macbook Pro Laptop,1,1700.0,2019-09-18 05:26:00,987 Chestnut St, New York City,NY,10001 +248353,Wired Headphones,1,11.99,2019-09-11 15:10:00,965 7th St, Atlanta,GA,30301 +248354,Macbook Pro Laptop,1,1700.0,2019-09-21 11:54:00,514 11th St, Atlanta,GA,30301 +248355,Apple Airpods Headphones,1,150.0,2019-09-23 12:32:00,647 Hickory St, New York City,NY,10001 +248356,USB-C Charging Cable,2,11.95,2019-09-21 15:29:00,41 Main St, San Francisco,CA,94016 +248357,Lightning Charging Cable,1,14.95,2019-09-27 19:15:00,7 13th St, Atlanta,GA,30301 +248358,USB-C Charging Cable,1,11.95,2019-09-18 01:33:00,380 Park St, Portland,ME,04101 +248359,Apple Airpods Headphones,1,150.0,2019-09-27 12:35:00,176 Jefferson St, San Francisco,CA,94016 +248360,Bose SoundSport Headphones,2,99.99,2019-09-01 08:46:00,872 North St, San Francisco,CA,94016 +248361,Wired Headphones,1,11.99,2019-09-01 10:09:00,872 Lake St, San Francisco,CA,94016 +248362,Apple Airpods Headphones,1,150.0,2019-09-26 10:45:00,620 10th St, New York City,NY,10001 +248363,34in Ultrawide Monitor,1,379.99,2019-09-29 21:35:00,182 Maple St, Los Angeles,CA,90001 +248364,27in FHD Monitor,1,149.99,2019-09-13 10:47:00,535 7th St, New York City,NY,10001 +248365,Google Phone,1,600.0,2019-09-04 19:37:00,930 Forest St, Dallas,TX,75001 +248366,Bose SoundSport Headphones,1,99.99,2019-09-29 13:17:00,158 Lake St, San Francisco,CA,94016 +248367,iPhone,1,700.0,2019-09-29 19:44:00,31 Madison St, Atlanta,GA,30301 +248368,AAA Batteries (4-pack),3,2.99,2019-09-19 07:55:00,552 Hickory St, San Francisco,CA,94016 +248369,USB-C Charging Cable,1,11.95,2019-09-02 21:35:00,377 Hill St, Los Angeles,CA,90001 +248370,34in Ultrawide Monitor,1,379.99,2019-09-07 09:40:00,825 Lincoln St, Seattle,WA,98101 +248371,Wired Headphones,1,11.99,2019-09-14 09:50:00,378 10th St, Boston,MA,02215 +248372,Lightning Charging Cable,1,14.95,2019-09-09 20:39:00,906 1st St, Atlanta,GA,30301 +248373,USB-C Charging Cable,1,11.95,2019-09-02 13:48:00,590 Jackson St, New York City,NY,10001 +248374,AA Batteries (4-pack),1,3.84,2019-09-20 20:35:00,674 Elm St, San Francisco,CA,94016 +248375,AA Batteries (4-pack),2,3.84,2019-09-03 12:37:00,875 Wilson St, Boston,MA,02215 +248376,20in Monitor,1,109.99,2019-09-22 15:14:00,982 Adams St, San Francisco,CA,94016 +248377,USB-C Charging Cable,1,11.95,2019-09-13 14:05:00,965 Center St, Los Angeles,CA,90001 +248378,Lightning Charging Cable,1,14.95,2019-09-12 06:19:00,662 Walnut St, Los Angeles,CA,90001 +248379,AAA Batteries (4-pack),1,2.99,2019-09-29 13:31:00,244 2nd St, Portland,ME,04101 +248380,AAA Batteries (4-pack),1,2.99,2019-09-28 16:09:00,937 Ridge St, New York City,NY,10001 +248381,Bose SoundSport Headphones,1,99.99,2019-09-29 14:51:00,511 Chestnut St, San Francisco,CA,94016 +248381,34in Ultrawide Monitor,1,379.99,2019-09-29 14:51:00,511 Chestnut St, San Francisco,CA,94016 +248382,AAA Batteries (4-pack),1,2.99,2019-09-10 20:08:00,383 Meadow St, San Francisco,CA,94016 +248383,Wired Headphones,1,11.99,2019-09-14 23:15:00,854 Ridge St, Boston,MA,02215 +248384,20in Monitor,1,109.99,2019-09-17 12:48:00,202 9th St, San Francisco,CA,94016 +248385,AAA Batteries (4-pack),1,2.99,2019-09-10 09:33:00,488 Lakeview St, San Francisco,CA,94016 +248386,Wired Headphones,1,11.99,2019-09-06 15:27:00,771 Hill St, New York City,NY,10001 +248387,AAA Batteries (4-pack),1,2.99,2019-09-02 13:32:00,534 13th St, Los Angeles,CA,90001 +248388,Lightning Charging Cable,1,14.95,2019-09-02 17:35:00,508 Chestnut St, Los Angeles,CA,90001 +248389,LG Dryer,1,600.0,2019-09-14 08:40:00,850 5th St, San Francisco,CA,94016 +248390,Lightning Charging Cable,1,14.95,2019-09-26 12:19:00,181 12th St, Portland,OR,97035 +248391,Bose SoundSport Headphones,1,99.99,2019-09-07 13:09:00,159 1st St, San Francisco,CA,94016 +248392,Lightning Charging Cable,1,14.95,2019-09-23 11:50:00,492 Hickory St, Boston,MA,02215 +248393,Lightning Charging Cable,1,14.95,2019-09-25 07:18:00,406 Jackson St, Seattle,WA,98101 +248394,Lightning Charging Cable,3,14.95,2019-09-17 09:20:00,520 11th St, Dallas,TX,75001 +248395,Vareebadd Phone,1,400.0,2019-09-20 19:06:00,872 Pine St, New York City,NY,10001 +248396,Macbook Pro Laptop,1,1700.0,2019-09-11 20:20:00,284 Madison St, New York City,NY,10001 +248397,Wired Headphones,1,11.99,2019-09-27 14:51:00,691 South St, New York City,NY,10001 +248398,USB-C Charging Cable,1,11.95,2019-09-01 21:04:00,259 4th St, San Francisco,CA,94016 +248399,AA Batteries (4-pack),2,3.84,2019-09-28 22:54:00,512 Spruce St, New York City,NY,10001 +248400,Apple Airpods Headphones,1,150.0,2019-09-22 00:35:00,335 Sunset St, Austin,TX,73301 +248401,27in FHD Monitor,1,149.99,2019-09-01 06:40:00,514 6th St, Seattle,WA,98101 +248402,Lightning Charging Cable,1,14.95,2019-09-18 19:30:00,756 Sunset St, Atlanta,GA,30301 +248403,Wired Headphones,2,11.99,2019-09-21 16:43:00,972 Main St, San Francisco,CA,94016 +248404,AA Batteries (4-pack),1,3.84,2019-09-17 16:03:00,9 South St, Dallas,TX,75001 +248405,AA Batteries (4-pack),1,3.84,2019-09-05 20:13:00,337 Adams St, New York City,NY,10001 +248406,34in Ultrawide Monitor,1,379.99,2019-09-05 16:50:00,631 Highland St, Los Angeles,CA,90001 +248407,iPhone,1,700.0,2019-09-22 15:10:00,18 Park St, Seattle,WA,98101 +248407,Lightning Charging Cable,1,14.95,2019-09-22 15:10:00,18 Park St, Seattle,WA,98101 +248407,Apple Airpods Headphones,1,150.0,2019-09-22 15:10:00,18 Park St, Seattle,WA,98101 +248408,AAA Batteries (4-pack),1,2.99,2019-09-17 15:09:00,412 Meadow St, Boston,MA,02215 +248409,USB-C Charging Cable,1,11.95,2019-09-08 20:50:00,925 6th St, Austin,TX,73301 +248410,Wired Headphones,1,11.99,2019-09-20 11:05:00,340 Madison St, Austin,TX,73301 +248411,Flatscreen TV,1,300.0,2019-09-26 23:19:00,112 13th St, Boston,MA,02215 +248412,Apple Airpods Headphones,1,150.0,2019-09-03 13:33:00,155 Highland St, Portland,OR,97035 +248413,Macbook Pro Laptop,1,1700.0,2019-09-07 19:40:00,633 West St, Atlanta,GA,30301 +248414,AA Batteries (4-pack),1,3.84,2019-09-05 21:56:00,607 5th St, Portland,OR,97035 +248415,Lightning Charging Cable,1,14.95,2019-09-25 20:00:00,893 Forest St, New York City,NY,10001 +248416,Lightning Charging Cable,1,14.95,2019-09-06 16:11:00,183 Lakeview St, Atlanta,GA,30301 +248417,Bose SoundSport Headphones,1,99.99,2019-09-27 13:06:00,766 River St, Dallas,TX,75001 +248418,Bose SoundSport Headphones,1,99.99,2019-09-05 19:22:00,810 Walnut St, San Francisco,CA,94016 +248419,USB-C Charging Cable,1,11.95,2019-09-01 14:27:00,286 South St, New York City,NY,10001 +248420,Flatscreen TV,1,300.0,2019-09-10 17:09:00,157 Ridge St, Portland,OR,97035 +248421,Wired Headphones,1,11.99,2019-09-18 11:55:00,866 14th St, Seattle,WA,98101 +248422,Apple Airpods Headphones,1,150.0,2019-09-09 17:49:00,461 6th St, San Francisco,CA,94016 +248423,Bose SoundSport Headphones,1,99.99,2019-09-08 09:11:00,955 Lake St, Seattle,WA,98101 +248424,Lightning Charging Cable,1,14.95,2019-09-17 21:04:00,241 Cedar St, Seattle,WA,98101 +248425,Wired Headphones,1,11.99,2019-09-16 22:22:00,786 Hickory St, New York City,NY,10001 +248426,USB-C Charging Cable,2,11.95,2019-09-12 21:17:00,975 Lincoln St, Los Angeles,CA,90001 +248427,Wired Headphones,2,11.99,2019-09-17 21:28:00,784 5th St, San Francisco,CA,94016 +248428,20in Monitor,1,109.99,2019-09-16 19:08:00,328 Meadow St, San Francisco,CA,94016 +248429,Bose SoundSport Headphones,1,99.99,2019-09-15 22:10:00,945 River St, Seattle,WA,98101 +248430,Apple Airpods Headphones,1,150.0,2019-09-01 22:28:00,473 Church St, New York City,NY,10001 +248430,Lightning Charging Cable,1,14.95,2019-09-01 22:28:00,473 Church St, New York City,NY,10001 +248431,Lightning Charging Cable,1,14.95,2019-09-19 16:27:00,675 Lincoln St, Boston,MA,02215 +248432,Bose SoundSport Headphones,1,99.99,2019-09-26 15:32:00,236 Spruce St, Los Angeles,CA,90001 +248433,Apple Airpods Headphones,1,150.0,2019-09-15 14:07:00,981 2nd St, Boston,MA,02215 +248434,Apple Airpods Headphones,1,150.0,2019-09-26 13:12:00,42 Church St, Boston,MA,02215 +248435,Macbook Pro Laptop,1,1700.0,2019-09-14 20:17:00,254 Forest St, Los Angeles,CA,90001 +248436,USB-C Charging Cable,1,11.95,2019-09-15 22:49:00,305 Forest St, San Francisco,CA,94016 +248437,Vareebadd Phone,1,400.0,2019-09-11 20:44:00,691 Lakeview St, San Francisco,CA,94016 +248438,27in 4K Gaming Monitor,1,389.99,2019-09-10 22:34:00,837 Sunset St, Portland,OR,97035 +248439,Wired Headphones,1,11.99,2019-09-09 09:36:00,647 Sunset St, Boston,MA,02215 +248440,AAA Batteries (4-pack),1,2.99,2019-09-14 10:12:00,341 2nd St, Seattle,WA,98101 +248441,27in 4K Gaming Monitor,1,389.99,2019-09-01 15:29:00,102 Wilson St, Atlanta,GA,30301 +248442,Wired Headphones,1,11.99,2019-09-01 10:58:00,187 Hickory St, Los Angeles,CA,90001 +248443,Macbook Pro Laptop,1,1700.0,2019-09-14 16:33:00,158 Willow St, Boston,MA,02215 +248444,34in Ultrawide Monitor,1,379.99,2019-09-02 18:14:00,779 14th St, New York City,NY,10001 +248445,AA Batteries (4-pack),2,3.84,2019-09-14 20:38:00,344 Park St, New York City,NY,10001 +248446,AAA Batteries (4-pack),2,2.99,2019-09-14 12:51:00,684 Dogwood St, Portland,ME,04101 +248447,AAA Batteries (4-pack),2,2.99,2019-09-10 17:31:00,669 Washington St, San Francisco,CA,94016 +248448,Lightning Charging Cable,1,14.95,2019-09-24 13:40:00,27 Jackson St, Atlanta,GA,30301 +248449,Lightning Charging Cable,1,14.95,2019-09-11 10:00:00,656 6th St, New York City,NY,10001 +248450,Apple Airpods Headphones,1,150.0,2019-09-30 11:36:00,822 11th St, San Francisco,CA,94016 +248451,AAA Batteries (4-pack),2,2.99,2019-09-16 22:15:00,79 River St, San Francisco,CA,94016 +248452,Macbook Pro Laptop,1,1700.0,2019-09-24 18:00:00,463 Cherry St, Boston,MA,02215 +248453,AAA Batteries (4-pack),1,2.99,2019-09-20 23:04:00,165 Cherry St, Boston,MA,02215 +248454,27in 4K Gaming Monitor,1,389.99,2019-09-03 18:36:00,178 Cedar St, Seattle,WA,98101 +248455,USB-C Charging Cable,1,11.95,2019-09-25 18:16:00,844 8th St, New York City,NY,10001 +248456,USB-C Charging Cable,1,11.95,2019-09-06 21:16:00,54 11th St, New York City,NY,10001 +248457,USB-C Charging Cable,1,11.95,2019-09-17 11:55:00,306 Cherry St, Boston,MA,02215 +248458,27in 4K Gaming Monitor,1,389.99,2019-09-20 14:44:00,799 Spruce St, Atlanta,GA,30301 +248459,USB-C Charging Cable,2,11.95,2019-09-24 06:40:00,784 Lakeview St, New York City,NY,10001 +248460,USB-C Charging Cable,1,11.95,2019-09-24 13:00:00,601 Park St, Dallas,TX,75001 +248461,AAA Batteries (4-pack),1,2.99,2019-09-18 03:23:00,686 Wilson St, San Francisco,CA,94016 +248462,Lightning Charging Cable,2,14.95,2019-09-18 13:53:00,809 River St, Los Angeles,CA,90001 +248463,USB-C Charging Cable,1,11.95,2019-09-10 16:07:00,255 Cherry St, New York City,NY,10001 +248464,USB-C Charging Cable,1,11.95,2019-09-23 13:59:00,620 1st St, Boston,MA,02215 +248465,Apple Airpods Headphones,1,150.0,2019-09-20 08:48:00,511 West St, Dallas,TX,75001 +248466,Wired Headphones,1,11.99,2019-09-15 15:36:00,424 Highland St, Seattle,WA,98101 +248467,USB-C Charging Cable,1,11.95,2019-09-10 11:31:00,639 Dogwood St, Dallas,TX,75001 +248468,AA Batteries (4-pack),1,3.84,2019-09-10 20:33:00,259 14th St, Los Angeles,CA,90001 +248469,Bose SoundSport Headphones,1,99.99,2019-09-19 17:27:00,716 Wilson St, San Francisco,CA,94016 +248470,USB-C Charging Cable,1,11.95,2019-09-06 11:48:00,71 West St, Austin,TX,73301 +248471,iPhone,1,700.0,2019-09-20 14:55:00,763 Johnson St, Austin,TX,73301 +248472,20in Monitor,1,109.99,2019-09-27 23:55:00,354 12th St, Boston,MA,02215 +248473,USB-C Charging Cable,1,11.95,2019-09-21 10:36:00,150 6th St, San Francisco,CA,94016 +248474,27in FHD Monitor,1,149.99,2019-09-09 19:27:00,728 West St, Los Angeles,CA,90001 +248475,AA Batteries (4-pack),1,3.84,2019-09-01 21:28:00,397 8th St, Los Angeles,CA,90001 +248476,AA Batteries (4-pack),1,3.84,2019-09-04 19:46:00,320 Willow St, San Francisco,CA,94016 +248477,USB-C Charging Cable,1,11.95,2019-09-09 14:17:00,978 Elm St, Dallas,TX,75001 +248478,34in Ultrawide Monitor,1,379.99,2019-09-12 17:56:00,775 12th St, Atlanta,GA,30301 +248479,Wired Headphones,1,11.99,2019-09-11 21:07:00,484 Park St, Los Angeles,CA,90001 +248480,Bose SoundSport Headphones,1,99.99,2019-09-22 20:59:00,240 Highland St, San Francisco,CA,94016 +248481,AA Batteries (4-pack),1,3.84,2019-09-25 07:51:00,546 2nd St, San Francisco,CA,94016 +248482,AA Batteries (4-pack),1,3.84,2019-09-20 16:33:00,363 10th St, Dallas,TX,75001 +248483,27in 4K Gaming Monitor,1,389.99,2019-09-14 20:16:00,592 Lake St, Los Angeles,CA,90001 +248484,ThinkPad Laptop,1,999.99,2019-09-29 05:18:00,346 Hickory St, Seattle,WA,98101 +248485,AAA Batteries (4-pack),1,2.99,2019-09-29 17:16:00,946 Center St, New York City,NY,10001 +248486,Wired Headphones,1,11.99,2019-09-09 21:31:00,233 Wilson St, Atlanta,GA,30301 +248487,AA Batteries (4-pack),2,3.84,2019-09-19 12:06:00,426 5th St, Austin,TX,73301 +248488,Lightning Charging Cable,1,14.95,2019-09-13 19:42:00,404 Cherry St, New York City,NY,10001 +248489,Lightning Charging Cable,1,14.95,2019-09-21 23:42:00,403 North St, San Francisco,CA,94016 +248490,USB-C Charging Cable,1,11.95,2019-09-27 13:35:00,226 Forest St, Los Angeles,CA,90001 +248491,34in Ultrawide Monitor,1,379.99,2019-09-17 20:06:00,194 Park St, San Francisco,CA,94016 +248492,Apple Airpods Headphones,1,150.0,2019-09-06 16:18:00,558 Pine St, San Francisco,CA,94016 +248493,20in Monitor,1,109.99,2019-09-04 12:39:00,513 9th St, Atlanta,GA,30301 +248494,Bose SoundSport Headphones,1,99.99,2019-09-27 17:19:00,988 Ridge St, San Francisco,CA,94016 +248495,Lightning Charging Cable,1,14.95,2019-09-30 14:32:00,896 9th St, San Francisco,CA,94016 +248496,AA Batteries (4-pack),1,3.84,2019-09-19 17:00:00,833 Pine St, San Francisco,CA,94016 +248497,AAA Batteries (4-pack),1,2.99,2019-09-19 01:38:00,502 Jefferson St, Boston,MA,02215 +248498,AA Batteries (4-pack),1,3.84,2019-09-11 17:24:00,553 Highland St, Boston,MA,02215 +248499,Lightning Charging Cable,2,14.95,2019-09-01 16:01:00,690 Elm St, Seattle,WA,98101 +248500,Bose SoundSport Headphones,1,99.99,2019-09-10 07:12:00,367 Dogwood St, San Francisco,CA,94016 +248501,ThinkPad Laptop,1,999.99,2019-09-13 08:39:00,859 Spruce St, Los Angeles,CA,90001 +248502,AAA Batteries (4-pack),1,2.99,2019-09-13 23:52:00,636 Lake St, Boston,MA,02215 +248503,Lightning Charging Cable,1,14.95,2019-09-09 23:02:00,1 Main St, New York City,NY,10001 +248504,Wired Headphones,1,11.99,2019-09-20 23:23:00,991 12th St, Los Angeles,CA,90001 +248505,Apple Airpods Headphones,1,150.0,2019-09-03 18:29:00,223 Walnut St, New York City,NY,10001 +248506,Flatscreen TV,1,300.0,2019-09-16 19:57:00,538 Hickory St, San Francisco,CA,94016 +248507,Apple Airpods Headphones,1,150.0,2019-09-09 07:11:00,572 Meadow St, Austin,TX,73301 +248508,Bose SoundSport Headphones,1,99.99,2019-09-29 15:11:00,155 Madison St, San Francisco,CA,94016 +248509,USB-C Charging Cable,1,11.95,2019-09-13 21:22:00,874 13th St, Seattle,WA,98101 +248510,AA Batteries (4-pack),1,3.84,2019-09-10 16:47:00,335 12th St, New York City,NY,10001 +248511,Lightning Charging Cable,1,14.95,2019-09-20 16:51:00,272 Chestnut St, Seattle,WA,98101 +248512,Macbook Pro Laptop,1,1700.0,2019-09-19 13:04:00,477 1st St, New York City,NY,10001 +248513,AAA Batteries (4-pack),3,2.99,2019-09-18 23:11:00,898 Center St, Los Angeles,CA,90001 +248514,Wired Headphones,1,11.99,2019-09-21 07:20:00,543 South St, San Francisco,CA,94016 +248515,Vareebadd Phone,1,400.0,2019-09-26 15:35:00,556 Dogwood St, Los Angeles,CA,90001 +248516,AAA Batteries (4-pack),1,2.99,2019-09-20 18:32:00,965 4th St, Los Angeles,CA,90001 +248517,USB-C Charging Cable,1,11.95,2019-09-26 00:48:00,376 Lakeview St, San Francisco,CA,94016 +248518,AAA Batteries (4-pack),1,2.99,2019-09-23 19:12:00,840 West St, San Francisco,CA,94016 +248519,Lightning Charging Cable,1,14.95,2019-09-27 14:33:00,30 Wilson St, Atlanta,GA,30301 +248520,27in FHD Monitor,1,149.99,2019-09-04 09:58:00,683 7th St, Boston,MA,02215 +248521,27in 4K Gaming Monitor,1,389.99,2019-09-15 15:16:00,381 Maple St, Los Angeles,CA,90001 +248522,Apple Airpods Headphones,1,150.0,2019-09-27 14:52:00,468 13th St, Dallas,TX,75001 +248523,Apple Airpods Headphones,1,150.0,2019-09-04 07:04:00,719 Jackson St, San Francisco,CA,94016 +248524,AA Batteries (4-pack),1,3.84,2019-09-02 23:24:00,171 Dogwood St, Los Angeles,CA,90001 +248525,27in FHD Monitor,1,149.99,2019-09-23 17:39:00,202 Sunset St, San Francisco,CA,94016 +248526,Apple Airpods Headphones,1,150.0,2019-09-21 18:45:00,439 7th St, Portland,OR,97035 +248527,27in FHD Monitor,1,149.99,2019-09-29 21:02:00,403 8th St, Los Angeles,CA,90001 +248528,Wired Headphones,1,11.99,2019-09-02 20:49:00,410 Pine St, New York City,NY,10001 +248529,USB-C Charging Cable,1,11.95,2019-09-14 12:18:00,5 Johnson St, Los Angeles,CA,90001 +248530,Wired Headphones,1,11.99,2019-09-07 13:18:00,361 7th St, Austin,TX,73301 +248531,Google Phone,1,600.0,2019-09-10 23:46:00,544 5th St, Dallas,TX,75001 +248531,Bose SoundSport Headphones,1,99.99,2019-09-10 23:46:00,544 5th St, Dallas,TX,75001 +248532,27in FHD Monitor,1,149.99,2019-09-23 13:15:00,478 5th St, Austin,TX,73301 +248533,Bose SoundSport Headphones,1,99.99,2019-09-29 11:42:00,622 6th St, Los Angeles,CA,90001 +248534,AAA Batteries (4-pack),1,2.99,2019-09-19 09:36:00,354 Main St, Atlanta,GA,30301 +248535,34in Ultrawide Monitor,1,379.99,2019-09-30 14:25:00,585 Elm St, San Francisco,CA,94016 +248536,AA Batteries (4-pack),2,3.84,2019-09-28 16:06:00,69 2nd St, Dallas,TX,75001 +248537,AA Batteries (4-pack),2,3.84,2019-09-11 09:58:00,491 Jackson St, Austin,TX,73301 +248538,USB-C Charging Cable,1,11.95,2019-09-22 19:06:00,970 Lakeview St, Los Angeles,CA,90001 +248539,27in 4K Gaming Monitor,1,389.99,2019-09-01 14:19:00,255 12th St, Portland,ME,04101 +248540,AAA Batteries (4-pack),1,2.99,2019-09-18 11:42:00,676 Spruce St, San Francisco,CA,94016 +248541,27in 4K Gaming Monitor,1,389.99,2019-09-28 17:23:00,40 Wilson St, New York City,NY,10001 +248542,AA Batteries (4-pack),2,3.84,2019-09-05 09:42:00,69 Hill St, Boston,MA,02215 +248543,AAA Batteries (4-pack),1,2.99,2019-09-25 16:01:00,98 Meadow St, Dallas,TX,75001 +248544,Macbook Pro Laptop,1,1700.0,2019-09-13 09:19:00,299 Highland St, Los Angeles,CA,90001 +248545,iPhone,1,700.0,2019-09-18 20:30:00,205 5th St, San Francisco,CA,94016 +248546,USB-C Charging Cable,1,11.95,2019-09-29 14:58:00,186 10th St, San Francisco,CA,94016 +248547,Apple Airpods Headphones,1,150.0,2019-09-09 10:50:00,581 7th St, Los Angeles,CA,90001 +248548,AAA Batteries (4-pack),1,2.99,2019-09-06 21:18:00,332 9th St, Portland,ME,04101 +248549,ThinkPad Laptop,1,999.99,2019-09-14 14:51:00,303 Walnut St, New York City,NY,10001 +248550,27in FHD Monitor,1,149.99,2019-09-07 17:27:00,562 Lakeview St, San Francisco,CA,94016 +248551,AAA Batteries (4-pack),1,2.99,2019-09-26 09:48:00,252 12th St, New York City,NY,10001 +248552,AA Batteries (4-pack),1,3.84,2019-09-23 20:48:00,133 Church St, Portland,OR,97035 +248553,USB-C Charging Cable,1,11.95,2019-09-26 10:21:00,283 Main St, Atlanta,GA,30301 +248554,Lightning Charging Cable,1,14.95,2019-09-25 14:20:00,220 Forest St, Atlanta,GA,30301 +248555,Bose SoundSport Headphones,1,99.99,2019-09-17 20:57:00,360 Walnut St, Portland,OR,97035 +248556,Apple Airpods Headphones,1,150.0,2019-09-18 14:52:00,856 7th St, Boston,MA,02215 +248557,Bose SoundSport Headphones,1,99.99,2019-09-22 18:10:00,947 5th St, Los Angeles,CA,90001 +248558,34in Ultrawide Monitor,1,379.99,2019-09-27 16:56:00,665 Meadow St, San Francisco,CA,94016 +248559,Bose SoundSport Headphones,1,99.99,2019-09-19 10:48:00,80 Pine St, Seattle,WA,98101 +248560,Google Phone,1,600.0,2019-09-08 11:40:00,772 Sunset St, Los Angeles,CA,90001 +248561,AA Batteries (4-pack),2,3.84,2019-09-25 11:44:00,205 Forest St, New York City,NY,10001 +248562,Bose SoundSport Headphones,1,99.99,2019-09-28 22:00:00,918 Hill St, Atlanta,GA,30301 +248563,Flatscreen TV,1,300.0,2019-09-11 01:04:00,960 Church St, San Francisco,CA,94016 +248564,AA Batteries (4-pack),1,3.84,2019-09-20 18:45:00,315 Main St, Seattle,WA,98101 +248565,AAA Batteries (4-pack),2,2.99,2019-09-16 22:12:00,545 Wilson St, San Francisco,CA,94016 +248566,Wired Headphones,1,11.99,2019-09-27 19:37:00,433 Jefferson St, New York City,NY,10001 +248567,Lightning Charging Cable,1,14.95,2019-09-03 12:28:00,700 Spruce St, San Francisco,CA,94016 +248568,Wired Headphones,1,11.99,2019-09-09 11:32:00,341 Johnson St, Atlanta,GA,30301 +248569,Lightning Charging Cable,1,14.95,2019-09-16 21:36:00,428 Cedar St, New York City,NY,10001 +248570,AAA Batteries (4-pack),1,2.99,2019-09-03 19:27:00,818 6th St, New York City,NY,10001 +248571,AAA Batteries (4-pack),2,2.99,2019-09-09 20:50:00,731 Maple St, Austin,TX,73301 +248572,Bose SoundSport Headphones,1,99.99,2019-09-05 14:11:00,144 Adams St, San Francisco,CA,94016 +248573,USB-C Charging Cable,1,11.95,2019-09-15 12:23:00,419 Lincoln St, San Francisco,CA,94016 +248574,AAA Batteries (4-pack),1,2.99,2019-09-01 23:40:00,5 West St, New York City,NY,10001 +248575,Lightning Charging Cable,1,14.95,2019-09-13 16:46:00,773 Church St, Portland,OR,97035 +248576,USB-C Charging Cable,2,11.95,2019-09-16 07:48:00,446 Lake St, Los Angeles,CA,90001 +248577,27in 4K Gaming Monitor,1,389.99,2019-09-12 09:40:00,389 Madison St, San Francisco,CA,94016 +248578,Wired Headphones,1,11.99,2019-09-08 14:04:00,278 Jackson St, San Francisco,CA,94016 +248579,Lightning Charging Cable,1,14.95,2019-09-15 08:06:00,803 North St, Seattle,WA,98101 +248580,Apple Airpods Headphones,1,150.0,2019-09-28 17:23:00,447 Madison St, Los Angeles,CA,90001 +248581,AAA Batteries (4-pack),1,2.99,2019-09-28 11:11:00,760 Lakeview St, New York City,NY,10001 +248582,Apple Airpods Headphones,1,150.0,2019-09-01 15:11:00,95 4th St, Seattle,WA,98101 +248583,Macbook Pro Laptop,1,1700.0,2019-09-13 16:17:00,825 7th St, Boston,MA,02215 +248584,Wired Headphones,1,11.99,2019-09-26 22:09:00,146 14th St, Los Angeles,CA,90001 +248585,Apple Airpods Headphones,1,150.0,2019-09-24 15:15:00,501 Highland St, Dallas,TX,75001 +248586,Wired Headphones,1,11.99,2019-09-25 21:16:00,998 Church St, Los Angeles,CA,90001 +248587,AAA Batteries (4-pack),1,2.99,2019-09-18 14:08:00,207 Main St, Seattle,WA,98101 +248588,USB-C Charging Cable,1,11.95,2019-09-20 18:18:00,846 Hill St, San Francisco,CA,94016 +248589,34in Ultrawide Monitor,1,379.99,2019-09-18 18:33:00,196 Lakeview St, Seattle,WA,98101 +248590,Lightning Charging Cable,1,14.95,2019-09-24 11:59:00,550 Madison St, Los Angeles,CA,90001 +248591,Bose SoundSport Headphones,1,99.99,2019-09-24 12:06:00,640 Spruce St, Austin,TX,73301 +248592,27in 4K Gaming Monitor,1,389.99,2019-09-23 08:58:00,553 8th St, Boston,MA,02215 +248592,AA Batteries (4-pack),1,3.84,2019-09-23 08:58:00,553 8th St, Boston,MA,02215 +248593,27in FHD Monitor,1,149.99,2019-09-01 20:46:00,422 Johnson St, Boston,MA,02215 +248594,Bose SoundSport Headphones,1,99.99,2019-09-29 15:53:00,608 8th St, New York City,NY,10001 +248595,Vareebadd Phone,1,400.0,2019-09-21 15:44:00,912 11th St, Seattle,WA,98101 +248596,Bose SoundSport Headphones,1,99.99,2019-09-20 11:24:00,469 5th St, San Francisco,CA,94016 +248597,AAA Batteries (4-pack),3,2.99,2019-09-07 13:54:00,135 Johnson St, Boston,MA,02215 +248598,Bose SoundSport Headphones,1,99.99,2019-09-11 16:11:00,337 Wilson St, Portland,OR,97035 +248599,Apple Airpods Headphones,1,150.0,2019-09-11 00:59:00,54 Center St, New York City,NY,10001 +248600,Bose SoundSport Headphones,1,99.99,2019-09-04 15:17:00,183 Chestnut St, Austin,TX,73301 +248601,20in Monitor,1,109.99,2019-09-07 11:57:00,337 12th St, Boston,MA,02215 +248602,34in Ultrawide Monitor,1,379.99,2019-09-19 20:26:00,174 Sunset St, San Francisco,CA,94016 +248603,USB-C Charging Cable,1,11.95,2019-09-03 21:59:00,957 11th St, Los Angeles,CA,90001 +248604,ThinkPad Laptop,1,999.99,2019-09-02 13:03:00,806 Hill St, Seattle,WA,98101 +248605,Apple Airpods Headphones,1,150.0,2019-09-08 09:22:00,784 Willow St, New York City,NY,10001 +248606,Bose SoundSport Headphones,1,99.99,2019-09-21 11:31:00,871 1st St, Austin,TX,73301 +248607,AA Batteries (4-pack),1,3.84,2019-09-01 09:23:00,869 Lincoln St, New York City,NY,10001 +248608,Lightning Charging Cable,1,14.95,2019-09-23 08:27:00,74 Lakeview St, Boston,MA,02215 +248609,Flatscreen TV,1,300.0,2019-09-01 16:19:00,454 River St, San Francisco,CA,94016 +248610,Wired Headphones,1,11.99,2019-09-28 08:49:00,929 Wilson St, Atlanta,GA,30301 +248611,Google Phone,1,600.0,2019-09-17 10:37:00,448 Jackson St, New York City,NY,10001 +248612,Macbook Pro Laptop,1,1700.0,2019-09-15 18:32:00,986 Jackson St, Portland,OR,97035 +248613,Lightning Charging Cable,1,14.95,2019-09-20 12:21:00,840 Madison St, Portland,OR,97035 +248614,iPhone,1,700.0,2019-09-04 16:41:00,907 Park St, Los Angeles,CA,90001 +248615,Bose SoundSport Headphones,1,99.99,2019-09-10 23:01:00,407 Willow St, Los Angeles,CA,90001 +248616,iPhone,1,700.0,2019-09-08 14:35:00,870 Washington St, San Francisco,CA,94016 +248616,Apple Airpods Headphones,1,150.0,2019-09-08 14:35:00,870 Washington St, San Francisco,CA,94016 +248617,ThinkPad Laptop,1,999.99,2019-09-07 13:55:00,126 13th St, New York City,NY,10001 +248618,Wired Headphones,1,11.99,2019-09-30 21:02:00,232 4th St, San Francisco,CA,94016 +248619,Wired Headphones,1,11.99,2019-09-21 13:10:00,357 Madison St, Los Angeles,CA,90001 +248620,Apple Airpods Headphones,1,150.0,2019-09-24 12:13:00,576 Dogwood St, Portland,ME,04101 +248621,AAA Batteries (4-pack),1,2.99,2019-09-12 09:08:00,565 11th St, New York City,NY,10001 +248622,27in FHD Monitor,1,149.99,2019-09-01 10:58:00,594 North St, Seattle,WA,98101 +248623,Wired Headphones,1,11.99,2019-09-17 20:17:00,506 Jefferson St, Los Angeles,CA,90001 +248624,ThinkPad Laptop,1,999.99,2019-09-26 14:43:00,713 Jefferson St, New York City,NY,10001 +248625,Macbook Pro Laptop,1,1700.0,2019-09-14 00:53:00,978 Jackson St, Los Angeles,CA,90001 +248626,AAA Batteries (4-pack),1,2.99,2019-09-10 10:34:00,340 13th St, Dallas,TX,75001 +248627,AA Batteries (4-pack),1,3.84,2019-09-25 15:24:00,135 6th St, Atlanta,GA,30301 +248628,USB-C Charging Cable,1,11.95,2019-09-26 14:06:00,81 14th St, Los Angeles,CA,90001 +248629,Apple Airpods Headphones,1,150.0,2019-09-02 11:02:00,857 13th St, Boston,MA,02215 +248630,Lightning Charging Cable,1,14.95,2019-09-29 19:54:00,401 2nd St, Atlanta,GA,30301 +248631,ThinkPad Laptop,1,999.99,2019-09-13 00:05:00,670 12th St, San Francisco,CA,94016 +248632,Wired Headphones,1,11.99,2019-09-28 02:21:00,904 River St, Portland,OR,97035 +248633,Lightning Charging Cable,1,14.95,2019-09-13 14:26:00,690 7th St, San Francisco,CA,94016 +248634,Macbook Pro Laptop,1,1700.0,2019-09-27 14:22:00,648 Adams St, San Francisco,CA,94016 +248635,Bose SoundSport Headphones,1,99.99,2019-09-03 08:02:00,834 Highland St, Austin,TX,73301 +248636,Google Phone,1,600.0,2019-09-25 10:28:00,159 Jefferson St, Los Angeles,CA,90001 +248637,Wired Headphones,1,11.99,2019-09-11 18:03:00,979 Main St, Los Angeles,CA,90001 +248638,Wired Headphones,1,11.99,2019-09-10 19:16:00,402 9th St, New York City,NY,10001 +248639,Apple Airpods Headphones,1,150.0,2019-09-22 10:25:00,673 2nd St, New York City,NY,10001 +248640,AA Batteries (4-pack),1,3.84,2019-09-15 10:16:00,37 10th St, Dallas,TX,75001 +248641,Wired Headphones,1,11.99,2019-09-08 09:35:00,963 Cedar St, San Francisco,CA,94016 +248642,Wired Headphones,1,11.99,2019-09-03 21:00:00,227 Elm St, Dallas,TX,75001 +248643,Lightning Charging Cable,1,14.95,2019-10-01 01:36:00,321 Chestnut St, Austin,TX,73301 +248644,Wired Headphones,1,11.99,2019-09-30 18:18:00,26 8th St, San Francisco,CA,94016 +248645,ThinkPad Laptop,1,999.99,2019-09-02 12:55:00,147 8th St, New York City,NY,10001 +248646,Bose SoundSport Headphones,1,99.99,2019-09-10 08:01:00,354 Jefferson St, Dallas,TX,75001 +248647,AAA Batteries (4-pack),2,2.99,2019-09-30 21:27:00,227 Washington St, San Francisco,CA,94016 +248648,iPhone,1,700.0,2019-09-13 17:48:00,637 Lincoln St, San Francisco,CA,94016 +248649,AA Batteries (4-pack),1,3.84,2019-09-01 20:34:00,712 6th St, San Francisco,CA,94016 +248650,Wired Headphones,2,11.99,2019-09-22 19:45:00,564 Dogwood St, Los Angeles,CA,90001 +248651,USB-C Charging Cable,1,11.95,2019-09-12 14:48:00,722 Forest St, Los Angeles,CA,90001 +248652,Flatscreen TV,1,300.0,2019-09-13 15:46:00,962 Park St, Seattle,WA,98101 +248653,USB-C Charging Cable,2,11.95,2019-09-27 18:38:00,196 West St, San Francisco,CA,94016 +248654,USB-C Charging Cable,1,11.95,2019-09-18 23:31:00,511 Park St, Los Angeles,CA,90001 +248655,AA Batteries (4-pack),2,3.84,2019-09-12 22:37:00,217 Park St, Los Angeles,CA,90001 +248656,AA Batteries (4-pack),1,3.84,2019-09-01 14:31:00,935 Hickory St, Portland,ME,04101 +248657,AA Batteries (4-pack),1,3.84,2019-09-06 13:03:00,759 Elm St, San Francisco,CA,94016 +248658,Lightning Charging Cable,1,14.95,2019-09-09 17:27:00,688 South St, Seattle,WA,98101 +248659,Lightning Charging Cable,1,14.95,2019-09-14 14:45:00,141 Hickory St, New York City,NY,10001 +248660,ThinkPad Laptop,1,999.99,2019-09-23 21:31:00,708 Church St, New York City,NY,10001 +248661,Lightning Charging Cable,1,14.95,2019-09-05 08:44:00,162 North St, Portland,OR,97035 +248662,AAA Batteries (4-pack),1,2.99,2019-09-09 17:20:00,557 Johnson St, San Francisco,CA,94016 +248663,27in FHD Monitor,1,149.99,2019-09-22 17:27:00,114 Lake St, San Francisco,CA,94016 +248664,Apple Airpods Headphones,1,150.0,2019-09-28 06:03:00,374 Washington St, New York City,NY,10001 +248665,27in 4K Gaming Monitor,1,389.99,2019-09-21 11:06:00,161 2nd St, Los Angeles,CA,90001 +248666,Wired Headphones,1,11.99,2019-09-23 11:40:00,106 Church St, Dallas,TX,75001 +248667,Wired Headphones,1,11.99,2019-09-21 15:59:00,751 Highland St, Portland,ME,04101 +248668,USB-C Charging Cable,1,11.95,2019-09-18 20:16:00,777 Jackson St, Seattle,WA,98101 +248669,Flatscreen TV,1,300.0,2019-09-18 14:46:00,410 Madison St, Seattle,WA,98101 +248670,Wired Headphones,1,11.99,2019-09-23 11:47:00,784 8th St, Los Angeles,CA,90001 +248671,Wired Headphones,1,11.99,2019-09-05 11:49:00,482 Johnson St, Dallas,TX,75001 +248672,Bose SoundSport Headphones,1,99.99,2019-09-27 19:13:00,980 North St, Los Angeles,CA,90001 +248673,Lightning Charging Cable,1,14.95,2019-09-14 11:04:00,207 Meadow St, Seattle,WA,98101 +248674,Macbook Pro Laptop,1,1700.0,2019-09-26 18:27:00,901 Cedar St, New York City,NY,10001 +248675,Apple Airpods Headphones,1,150.0,2019-09-17 18:06:00,776 5th St, Boston,MA,02215 +248676,Wired Headphones,2,11.99,2019-09-12 11:07:00,986 Walnut St, Los Angeles,CA,90001 +248677,AA Batteries (4-pack),1,3.84,2019-09-01 11:15:00,631 8th St, Los Angeles,CA,90001 +248678,AAA Batteries (4-pack),1,2.99,2019-09-28 06:08:00,934 10th St, Los Angeles,CA,90001 +248679,Vareebadd Phone,1,400.0,2019-09-15 11:04:00,47 Meadow St, San Francisco,CA,94016 +248679,USB-C Charging Cable,1,11.95,2019-09-15 11:04:00,47 Meadow St, San Francisco,CA,94016 +248680,27in FHD Monitor,1,149.99,2019-09-24 22:21:00,627 Sunset St, New York City,NY,10001 +248681,27in 4K Gaming Monitor,1,389.99,2019-09-13 22:37:00,570 Lakeview St, Los Angeles,CA,90001 +248682,Macbook Pro Laptop,1,1700.0,2019-09-28 19:17:00,666 Willow St, Boston,MA,02215 +248683,Lightning Charging Cable,1,14.95,2019-09-20 21:47:00,306 14th St, Boston,MA,02215 +248684,34in Ultrawide Monitor,1,379.99,2019-09-23 14:18:00,681 Wilson St, New York City,NY,10001 +248685,iPhone,1,700.0,2019-09-20 09:55:00,613 Cedar St, San Francisco,CA,94016 +248686,AAA Batteries (4-pack),1,2.99,2019-09-18 13:19:00,670 12th St, Austin,TX,73301 +248687,USB-C Charging Cable,1,11.95,2019-09-25 14:45:00,182 Ridge St, San Francisco,CA,94016 +248688,Wired Headphones,1,11.99,2019-09-10 17:58:00,287 5th St, Atlanta,GA,30301 +248689,Google Phone,1,600.0,2019-09-06 09:40:00,369 1st St, Dallas,TX,75001 +248690,AAA Batteries (4-pack),1,2.99,2019-09-20 09:11:00,338 Madison St, San Francisco,CA,94016 +248691,Apple Airpods Headphones,1,150.0,2019-09-04 14:01:00,107 Elm St, Portland,OR,97035 +248692,ThinkPad Laptop,1,999.99,2019-09-18 23:44:00,401 Hill St, Los Angeles,CA,90001 +248693,Bose SoundSport Headphones,1,99.99,2019-09-05 12:10:00,482 2nd St, Los Angeles,CA,90001 +248694,USB-C Charging Cable,1,11.95,2019-09-07 11:07:00,625 Jefferson St, Boston,MA,02215 +248695,Bose SoundSport Headphones,1,99.99,2019-09-06 10:53:00,981 Ridge St, Boston,MA,02215 +248696,Google Phone,1,600.0,2019-09-19 21:55:00,676 Jefferson St, Atlanta,GA,30301 +248697,Bose SoundSport Headphones,1,99.99,2019-09-24 23:02:00,287 Wilson St, Austin,TX,73301 +248698,27in 4K Gaming Monitor,1,389.99,2019-09-03 13:43:00,232 West St, Austin,TX,73301 +248699,Google Phone,1,600.0,2019-09-12 10:54:00,431 Elm St, Portland,OR,97035 +248700,AAA Batteries (4-pack),1,2.99,2019-09-09 00:17:00,475 Dogwood St, Atlanta,GA,30301 +248701,AAA Batteries (4-pack),3,2.99,2019-09-22 15:59:00,152 River St, Portland,OR,97035 +248702,AA Batteries (4-pack),1,3.84,2019-09-23 06:01:00,922 2nd St, San Francisco,CA,94016 +248703,27in 4K Gaming Monitor,1,389.99,2019-09-14 17:48:00,122 8th St, New York City,NY,10001 +248704,Bose SoundSport Headphones,1,99.99,2019-09-17 07:51:00,989 Walnut St, Atlanta,GA,30301 +248705,Wired Headphones,1,11.99,2019-09-22 17:27:00,225 Meadow St, Seattle,WA,98101 +248706,Lightning Charging Cable,1,14.95,2019-09-29 22:03:00,577 Forest St, Dallas,TX,75001 +248707,Wired Headphones,1,11.99,2019-09-15 11:19:00,599 Cedar St, Seattle,WA,98101 +248708,AA Batteries (4-pack),2,3.84,2019-09-15 14:04:00,671 Madison St, Los Angeles,CA,90001 +248709,Wired Headphones,1,11.99,2019-09-25 15:27:00,878 Hill St, Seattle,WA,98101 +248710,USB-C Charging Cable,1,11.95,2019-09-15 14:14:00,56 West St, Austin,TX,73301 +248711,USB-C Charging Cable,1,11.95,2019-09-24 21:44:00,528 11th St, Los Angeles,CA,90001 +248712,Lightning Charging Cable,1,14.95,2019-09-23 20:05:00,716 Highland St, Los Angeles,CA,90001 +248713,AA Batteries (4-pack),1,3.84,2019-09-05 12:55:00,745 Main St, Atlanta,GA,30301 +248714,AAA Batteries (4-pack),3,2.99,2019-09-20 17:45:00,780 Adams St, Boston,MA,02215 +248715,Wired Headphones,1,11.99,2019-09-02 00:11:00,622 South St, Los Angeles,CA,90001 +248716,AA Batteries (4-pack),1,3.84,2019-09-15 22:39:00,951 Church St, Dallas,TX,75001 +248717,AAA Batteries (4-pack),1,2.99,2019-09-27 15:36:00,633 12th St, San Francisco,CA,94016 +248718,Wired Headphones,1,11.99,2019-09-08 12:25:00,989 Wilson St, New York City,NY,10001 +248719,Google Phone,1,600.0,2019-09-22 19:07:00,848 Forest St, Los Angeles,CA,90001 +248720,AA Batteries (4-pack),1,3.84,2019-09-14 18:38:00,24 Highland St, Boston,MA,02215 +248721,Macbook Pro Laptop,1,1700.0,2019-09-23 04:44:00,139 Walnut St, San Francisco,CA,94016 +248722,Wired Headphones,1,11.99,2019-09-25 10:16:00,414 Cedar St, San Francisco,CA,94016 +248723,34in Ultrawide Monitor,1,379.99,2019-09-26 10:58:00,336 Washington St, Los Angeles,CA,90001 +248724,Bose SoundSport Headphones,1,99.99,2019-09-23 21:39:00,491 Walnut St, Los Angeles,CA,90001 +248725,Bose SoundSport Headphones,1,99.99,2019-09-10 17:17:00,574 5th St, Los Angeles,CA,90001 +248726,Lightning Charging Cable,1,14.95,2019-09-21 00:29:00,404 11th St, New York City,NY,10001 +248727,Apple Airpods Headphones,1,150.0,2019-09-20 14:14:00,583 Pine St, Portland,ME,04101 +248727,Lightning Charging Cable,1,14.95,2019-09-20 14:14:00,583 Pine St, Portland,ME,04101 +248728,Lightning Charging Cable,1,14.95,2019-09-29 08:48:00,396 2nd St, Los Angeles,CA,90001 +248729,Apple Airpods Headphones,1,150.0,2019-09-24 05:28:00,442 South St, Austin,TX,73301 +248730,AAA Batteries (4-pack),1,2.99,2019-09-26 16:32:00,845 10th St, New York City,NY,10001 +248731,Lightning Charging Cable,1,14.95,2019-09-24 20:39:00,388 North St, Los Angeles,CA,90001 +248731,Bose SoundSport Headphones,1,99.99,2019-09-24 20:39:00,388 North St, Los Angeles,CA,90001 +248732,Apple Airpods Headphones,1,150.0,2019-09-28 13:50:00,314 2nd St, San Francisco,CA,94016 +248733,AA Batteries (4-pack),2,3.84,2019-09-20 22:06:00,826 Spruce St, Portland,OR,97035 +248734,Bose SoundSport Headphones,1,99.99,2019-09-26 13:02:00,13 Lake St, Seattle,WA,98101 +248735,AAA Batteries (4-pack),1,2.99,2019-09-10 15:35:00,434 Washington St, Dallas,TX,75001 +248736,Lightning Charging Cable,1,14.95,2019-09-23 14:26:00,465 South St, Seattle,WA,98101 +248737,Wired Headphones,1,11.99,2019-09-18 17:46:00,797 Forest St, Seattle,WA,98101 +248738,Apple Airpods Headphones,1,150.0,2019-09-15 17:36:00,740 5th St, Los Angeles,CA,90001 +248739,AA Batteries (4-pack),1,3.84,2019-09-17 19:22:00,952 Sunset St, Los Angeles,CA,90001 +248740,AA Batteries (4-pack),1,3.84,2019-09-20 14:39:00,783 Jackson St, San Francisco,CA,94016 +248741,Wired Headphones,1,11.99,2019-09-06 18:23:00,30 10th St, Portland,ME,04101 +248742,34in Ultrawide Monitor,1,379.99,2019-09-13 18:44:00,533 10th St, San Francisco,CA,94016 +248743,AAA Batteries (4-pack),4,2.99,2019-09-25 15:03:00,433 North St, Boston,MA,02215 +248744,USB-C Charging Cable,1,11.95,2019-09-07 21:25:00,44 Lake St, San Francisco,CA,94016 +248745,34in Ultrawide Monitor,1,379.99,2019-09-06 08:05:00,545 River St, Los Angeles,CA,90001 +248746,Lightning Charging Cable,1,14.95,2019-09-04 10:36:00,667 Maple St, Austin,TX,73301 +248746,AA Batteries (4-pack),1,3.84,2019-09-04 10:36:00,667 Maple St, Austin,TX,73301 +248747,AA Batteries (4-pack),1,3.84,2019-09-29 20:08:00,940 10th St, Seattle,WA,98101 +248748,AA Batteries (4-pack),2,3.84,2019-09-12 09:35:00,766 River St, Dallas,TX,75001 +248749,AA Batteries (4-pack),1,3.84,2019-09-26 17:50:00,133 Madison St, Los Angeles,CA,90001 +248750,27in FHD Monitor,1,149.99,2019-09-16 08:25:00,11 Madison St, New York City,NY,10001 +248751,USB-C Charging Cable,1,11.95,2019-09-25 13:50:00,152 Sunset St, Los Angeles,CA,90001 +248752,Vareebadd Phone,1,400.0,2019-09-06 22:02:00,321 Dogwood St, San Francisco,CA,94016 +248753,AA Batteries (4-pack),1,3.84,2019-09-02 23:11:00,760 Highland St, Atlanta,GA,30301 +248754,iPhone,1,700.0,2019-09-06 12:58:00,221 Center St, New York City,NY,10001 +248755,Lightning Charging Cable,1,14.95,2019-09-26 13:01:00,364 Washington St, San Francisco,CA,94016 +248756,Lightning Charging Cable,1,14.95,2019-09-03 11:04:00,43 Forest St, San Francisco,CA,94016 +248757,USB-C Charging Cable,2,11.95,2019-09-05 20:43:00,373 6th St, Dallas,TX,75001 +248758,USB-C Charging Cable,1,11.95,2019-09-26 09:40:00,783 Maple St, Boston,MA,02215 +248759,iPhone,1,700.0,2019-09-21 17:04:00,740 River St, San Francisco,CA,94016 +248760,AA Batteries (4-pack),1,3.84,2019-09-03 00:47:00,181 Chestnut St, Austin,TX,73301 +248761,AAA Batteries (4-pack),2,2.99,2019-09-28 15:45:00,563 Dogwood St, Los Angeles,CA,90001 +248762,Bose SoundSport Headphones,1,99.99,2019-09-09 20:20:00,315 7th St, Boston,MA,02215 +248763,AA Batteries (4-pack),1,3.84,2019-09-06 19:19:00,873 Lincoln St, Seattle,WA,98101 +248764,Bose SoundSport Headphones,1,99.99,2019-09-27 07:06:00,642 Elm St, Seattle,WA,98101 +248765,LG Washing Machine,1,600.0,2019-09-16 19:06:00,255 West St, New York City,NY,10001 +248766,Lightning Charging Cable,1,14.95,2019-09-01 07:23:00,48 Adams St, Los Angeles,CA,90001 +248767,AAA Batteries (4-pack),3,2.99,2019-09-03 11:24:00,819 2nd St, San Francisco,CA,94016 +248768,20in Monitor,1,109.99,2019-09-10 00:09:00,584 2nd St, San Francisco,CA,94016 +248769,Bose SoundSport Headphones,1,99.99,2019-09-25 14:04:00,562 1st St, New York City,NY,10001 +248770,USB-C Charging Cable,2,11.95,2019-09-15 13:20:00,981 Maple St, Austin,TX,73301 +248771,Apple Airpods Headphones,1,150.0,2019-09-20 18:15:00,652 Lincoln St, Atlanta,GA,30301 +248772,AA Batteries (4-pack),1,3.84,2019-09-08 15:58:00,7 Walnut St, Boston,MA,02215 +248773,USB-C Charging Cable,2,11.95,2019-09-28 23:21:00,494 Cherry St, Los Angeles,CA,90001 +248774,Wired Headphones,1,11.99,2019-09-29 19:32:00,126 River St, New York City,NY,10001 +248775,Google Phone,1,600.0,2019-09-14 22:20:00,858 North St, New York City,NY,10001 +248776,27in FHD Monitor,1,149.99,2019-09-10 06:47:00,956 North St, Atlanta,GA,30301 +248777,Wired Headphones,1,11.99,2019-09-03 10:43:00,847 13th St, San Francisco,CA,94016 +248778,AAA Batteries (4-pack),1,2.99,2019-09-02 13:04:00,613 7th St, Portland,OR,97035 +248779,Bose SoundSport Headphones,1,99.99,2019-09-14 22:37:00,193 Elm St, Seattle,WA,98101 +248780,Vareebadd Phone,1,400.0,2019-09-22 14:55:00,210 9th St, New York City,NY,10001 +248781,USB-C Charging Cable,1,11.95,2019-09-29 14:21:00,879 Madison St, Boston,MA,02215 +248782,ThinkPad Laptop,1,999.99,2019-09-10 22:33:00,487 2nd St, New York City,NY,10001 +248783,Wired Headphones,1,11.99,2019-09-01 21:55:00,568 6th St, San Francisco,CA,94016 +248784,Bose SoundSport Headphones,2,99.99,2019-09-06 18:34:00,41 14th St, New York City,NY,10001 +248785,iPhone,1,700.0,2019-09-13 19:28:00,44 River St, Portland,OR,97035 +248786,Apple Airpods Headphones,1,150.0,2019-09-17 20:26:00,90 5th St, New York City,NY,10001 +248787,AA Batteries (4-pack),1,3.84,2019-09-09 12:30:00,705 Adams St, San Francisco,CA,94016 +248788,Bose SoundSport Headphones,1,99.99,2019-09-28 10:02:00,251 Jackson St, San Francisco,CA,94016 +248789,Wired Headphones,1,11.99,2019-09-24 10:51:00,258 14th St, Seattle,WA,98101 +248790,USB-C Charging Cable,1,11.95,2019-09-07 14:36:00,358 Spruce St, San Francisco,CA,94016 +248791,Google Phone,1,600.0,2019-09-07 19:36:00,952 12th St, New York City,NY,10001 +248792,Bose SoundSport Headphones,1,99.99,2019-09-08 23:22:00,705 2nd St, San Francisco,CA,94016 +248793,20in Monitor,1,109.99,2019-09-22 12:13:00,283 Lake St, Los Angeles,CA,90001 +248794,Apple Airpods Headphones,1,150.0,2019-09-14 11:24:00,67 North St, New York City,NY,10001 +248795,AAA Batteries (4-pack),1,2.99,2019-09-05 17:35:00,800 Madison St, Atlanta,GA,30301 +248796,20in Monitor,1,109.99,2019-09-11 23:43:00,559 Hill St, New York City,NY,10001 +248797,Flatscreen TV,1,300.0,2019-09-25 14:09:00,846 Adams St, Atlanta,GA,30301 +248798,USB-C Charging Cable,1,11.95,2019-09-03 12:31:00,407 13th St, Austin,TX,73301 +248799,27in 4K Gaming Monitor,1,389.99,2019-09-06 17:39:00,974 Park St, San Francisco,CA,94016 +248800,Macbook Pro Laptop,1,1700.0,2019-09-28 14:06:00,882 1st St, San Francisco,CA,94016 +248801,Macbook Pro Laptop,1,1700.0,2019-09-10 20:21:00,904 Walnut St, Los Angeles,CA,90001 +248802,AAA Batteries (4-pack),2,2.99,2019-09-15 10:12:00,595 7th St, New York City,NY,10001 +248803,Bose SoundSport Headphones,1,99.99,2019-09-09 08:38:00,705 Highland St, Dallas,TX,75001 +248804,Lightning Charging Cable,1,14.95,2019-09-12 21:04:00,736 Church St, Dallas,TX,75001 +248805,Bose SoundSport Headphones,1,99.99,2019-09-05 19:25:00,147 Hickory St, Austin,TX,73301 +248806,Apple Airpods Headphones,1,150.0,2019-09-04 11:03:00,312 North St, New York City,NY,10001 +248807,AA Batteries (4-pack),3,3.84,2019-09-07 20:04:00,93 Park St, Atlanta,GA,30301 +248808,Wired Headphones,1,11.99,2019-09-07 10:04:00,132 2nd St, New York City,NY,10001 +248809,Apple Airpods Headphones,1,150.0,2019-09-02 13:29:00,999 North St, Dallas,TX,75001 +248810,Wired Headphones,1,11.99,2019-09-19 13:39:00,51 5th St, Austin,TX,73301 +248811,Lightning Charging Cable,1,14.95,2019-09-20 12:12:00,688 Johnson St, San Francisco,CA,94016 +248811,AA Batteries (4-pack),3,3.84,2019-09-20 12:12:00,688 Johnson St, San Francisco,CA,94016 +248812,Lightning Charging Cable,1,14.95,2019-09-24 12:24:00,236 Church St, New York City,NY,10001 +248813,Wired Headphones,1,11.99,2019-09-20 19:45:00,484 Jackson St, New York City,NY,10001 +248814,20in Monitor,1,109.99,2019-09-23 06:37:00,530 5th St, Los Angeles,CA,90001 +248815,Macbook Pro Laptop,1,1700.0,2019-09-16 11:07:00,331 Willow St, San Francisco,CA,94016 +248816,AAA Batteries (4-pack),1,2.99,2019-09-21 23:38:00,833 Jefferson St, New York City,NY,10001 +248817,AAA Batteries (4-pack),1,2.99,2019-09-03 22:10:00,258 Washington St, Los Angeles,CA,90001 +248818,Lightning Charging Cable,1,14.95,2019-09-19 12:27:00,46 Park St, New York City,NY,10001 +248819,Macbook Pro Laptop,1,1700.0,2019-09-12 14:53:00,568 Hill St, Dallas,TX,75001 +248820,Wired Headphones,1,11.99,2019-09-02 19:13:00,668 5th St, Boston,MA,02215 +248821,AAA Batteries (4-pack),2,2.99,2019-09-10 13:24:00,534 Park St, Austin,TX,73301 +248822,27in 4K Gaming Monitor,1,389.99,2019-09-17 20:26:00,279 Spruce St, Portland,OR,97035 +248823,Lightning Charging Cable,2,14.95,2019-09-01 13:05:00,968 12th St, San Francisco,CA,94016 +248824,Apple Airpods Headphones,1,150.0,2019-09-10 17:48:00,560 Wilson St, Dallas,TX,75001 +248825,Flatscreen TV,1,300.0,2019-09-24 21:02:00,399 9th St, San Francisco,CA,94016 +248826,AA Batteries (4-pack),1,3.84,2019-09-18 11:35:00,988 7th St, Austin,TX,73301 +248827,Bose SoundSport Headphones,1,99.99,2019-09-04 17:34:00,290 Park St, Portland,OR,97035 +248828,iPhone,1,700.0,2019-09-04 20:10:00,190 Walnut St, Dallas,TX,75001 +248829,Wired Headphones,1,11.99,2019-09-17 03:11:00,113 Hill St, Seattle,WA,98101 +248830,Wired Headphones,1,11.99,2019-09-16 20:45:00,226 9th St, Atlanta,GA,30301 +248831,LG Washing Machine,1,600.0,2019-09-30 14:10:00,160 Hickory St, New York City,NY,10001 +248832,USB-C Charging Cable,1,11.95,2019-09-20 09:07:00,322 Ridge St, Seattle,WA,98101 +248833,Wired Headphones,1,11.99,2019-09-23 19:00:00,150 Sunset St, New York City,NY,10001 +248834,USB-C Charging Cable,1,11.95,2019-09-20 17:22:00,581 12th St, San Francisco,CA,94016 +248835,Bose SoundSport Headphones,1,99.99,2019-09-30 09:25:00,594 Willow St, San Francisco,CA,94016 +248836,Wired Headphones,1,11.99,2019-09-16 12:55:00,155 Johnson St, Seattle,WA,98101 +248837,Lightning Charging Cable,1,14.95,2019-09-26 11:51:00,762 5th St, Seattle,WA,98101 +248837,27in FHD Monitor,1,149.99,2019-09-26 11:51:00,762 5th St, Seattle,WA,98101 +248838,Lightning Charging Cable,1,14.95,2019-09-29 18:31:00,483 Johnson St, New York City,NY,10001 +248839,USB-C Charging Cable,1,11.95,2019-09-29 21:02:00,545 7th St, Portland,OR,97035 +248840,Wired Headphones,1,11.99,2019-09-23 13:31:00,407 Park St, Los Angeles,CA,90001 +248841,Lightning Charging Cable,2,14.95,2019-09-21 10:08:00,336 14th St, San Francisco,CA,94016 +248842,Wired Headphones,1,11.99,2019-09-22 22:28:00,290 Cedar St, San Francisco,CA,94016 +248843,Flatscreen TV,1,300.0,2019-09-06 14:06:00,900 South St, Boston,MA,02215 +248844,AA Batteries (4-pack),1,3.84,2019-09-20 19:51:00,302 6th St, Seattle,WA,98101 +248845,Apple Airpods Headphones,1,150.0,2019-09-25 16:45:00,22 Maple St, Seattle,WA,98101 +248846,Lightning Charging Cable,1,14.95,2019-09-22 05:38:00,438 Cherry St, New York City,NY,10001 +248847,AA Batteries (4-pack),2,3.84,2019-09-16 07:26:00,32 Chestnut St, Los Angeles,CA,90001 +248848,AA Batteries (4-pack),1,3.84,2019-09-27 10:08:00,297 4th St, Seattle,WA,98101 +248849,AAA Batteries (4-pack),1,2.99,2019-09-16 21:55:00,426 South St, Atlanta,GA,30301 +248850,Apple Airpods Headphones,1,150.0,2019-09-22 15:17:00,301 Church St, New York City,NY,10001 +248851,27in FHD Monitor,1,149.99,2019-09-04 14:07:00,392 Wilson St, San Francisco,CA,94016 +248852,Google Phone,1,600.0,2019-09-07 15:01:00,612 Sunset St, Seattle,WA,98101 +248853,USB-C Charging Cable,1,11.95,2019-09-24 19:22:00,722 River St, San Francisco,CA,94016 +248854,34in Ultrawide Monitor,1,379.99,2019-09-20 14:27:00,674 8th St, Los Angeles,CA,90001 +248855,Lightning Charging Cable,1,14.95,2019-09-03 21:29:00,617 Madison St, San Francisco,CA,94016 +248856,Vareebadd Phone,1,400.0,2019-09-15 14:00:00,514 10th St, Dallas,TX,75001 +248856,USB-C Charging Cable,1,11.95,2019-09-15 14:00:00,514 10th St, Dallas,TX,75001 +248857,USB-C Charging Cable,1,11.95,2019-09-03 10:52:00,536 4th St, San Francisco,CA,94016 +248858,27in FHD Monitor,1,149.99,2019-09-07 11:20:00,103 11th St, Los Angeles,CA,90001 +248859,Lightning Charging Cable,1,14.95,2019-09-02 15:21:00,626 Maple St, New York City,NY,10001 +248860,Bose SoundSport Headphones,1,99.99,2019-09-20 23:09:00,912 River St, New York City,NY,10001 +248861,AA Batteries (4-pack),1,3.84,2019-09-12 21:39:00,738 7th St, San Francisco,CA,94016 +248862,Wired Headphones,1,11.99,2019-09-11 18:35:00,231 Lincoln St, Boston,MA,02215 +248863,AA Batteries (4-pack),1,3.84,2019-09-23 19:41:00,169 Lincoln St, Los Angeles,CA,90001 +248864,Lightning Charging Cable,1,14.95,2019-09-26 00:17:00,647 Jackson St, New York City,NY,10001 +248865,USB-C Charging Cable,1,11.95,2019-09-27 19:55:00,596 Cedar St, Seattle,WA,98101 +248866,Lightning Charging Cable,1,14.95,2019-09-27 09:46:00,964 Pine St, Boston,MA,02215 +248867,27in FHD Monitor,1,149.99,2019-09-20 16:17:00,509 River St, San Francisco,CA,94016 +248868,AAA Batteries (4-pack),3,2.99,2019-09-21 18:11:00,493 4th St, Austin,TX,73301 +248869,AA Batteries (4-pack),1,3.84,2019-09-18 15:32:00,297 Madison St, New York City,NY,10001 +248870,Wired Headphones,1,11.99,2019-09-24 13:13:00,78 Pine St, Los Angeles,CA,90001 +248871,34in Ultrawide Monitor,1,379.99,2019-09-24 02:39:00,228 West St, Atlanta,GA,30301 +248872,AA Batteries (4-pack),1,3.84,2019-09-15 10:02:00,90 Willow St, Los Angeles,CA,90001 +248873,Apple Airpods Headphones,1,150.0,2019-09-16 13:03:00,719 11th St, Los Angeles,CA,90001 +248874,AAA Batteries (4-pack),1,2.99,2019-09-11 09:13:00,761 Lake St, Boston,MA,02215 +248875,Wired Headphones,1,11.99,2019-09-22 12:20:00,172 Ridge St, Los Angeles,CA,90001 +248876,Lightning Charging Cable,1,14.95,2019-09-02 16:17:00,626 Forest St, San Francisco,CA,94016 +248877,AA Batteries (4-pack),1,3.84,2019-09-16 11:27:00,13 Hickory St, Austin,TX,73301 +248878,Apple Airpods Headphones,1,150.0,2019-09-01 13:04:00,19 14th St, Atlanta,GA,30301 +248879,Lightning Charging Cable,1,14.95,2019-09-18 09:57:00,365 Hickory St, Atlanta,GA,30301 +248880,Macbook Pro Laptop,1,1700.0,2019-09-27 09:53:00,749 Sunset St, Los Angeles,CA,90001 +248881,Bose SoundSport Headphones,1,99.99,2019-09-15 18:05:00,36 Madison St, Seattle,WA,98101 +248882,Apple Airpods Headphones,1,150.0,2019-09-12 10:23:00,365 Cedar St, Boston,MA,02215 +248883,Apple Airpods Headphones,1,150.0,2019-09-20 09:23:00,995 Ridge St, Los Angeles,CA,90001 +248884,20in Monitor,1,109.99,2019-09-11 15:01:00,592 11th St, Austin,TX,73301 +248885,Google Phone,1,600.0,2019-09-15 23:41:00,637 Cedar St, Dallas,TX,75001 +248885,USB-C Charging Cable,1,11.95,2019-09-15 23:41:00,637 Cedar St, Dallas,TX,75001 +248886,USB-C Charging Cable,2,11.95,2019-09-11 23:00:00,355 12th St, Boston,MA,02215 +248887,AAA Batteries (4-pack),1,2.99,2019-09-13 13:20:00,846 6th St, Seattle,WA,98101 +248888,iPhone,1,700.0,2019-09-14 16:40:00,286 Cedar St, Austin,TX,73301 +248889,USB-C Charging Cable,1,11.95,2019-09-28 19:38:00,698 Cedar St, Los Angeles,CA,90001 +248890,Flatscreen TV,1,300.0,2019-09-06 18:45:00,741 Cedar St, Dallas,TX,75001 +248891,AA Batteries (4-pack),2,3.84,2019-09-10 20:20:00,263 Lincoln St, San Francisco,CA,94016 +248892,Wired Headphones,1,11.99,2019-09-18 19:11:00,123 Cherry St, New York City,NY,10001 +248893,AA Batteries (4-pack),1,3.84,2019-09-03 10:31:00,705 1st St, Los Angeles,CA,90001 +248894,Apple Airpods Headphones,1,150.0,2019-09-05 19:09:00,314 2nd St, San Francisco,CA,94016 +248895,Wired Headphones,1,11.99,2019-09-06 20:05:00,109 Main St, Boston,MA,02215 +248896,Bose SoundSport Headphones,1,99.99,2019-09-15 14:19:00,14 Madison St, Seattle,WA,98101 +248897,27in 4K Gaming Monitor,1,389.99,2019-09-02 07:22:00,885 North St, Boston,MA,02215 +248898,Apple Airpods Headphones,1,150.0,2019-09-22 10:29:00,773 Spruce St, Boston,MA,02215 +248899,27in FHD Monitor,1,149.99,2019-09-11 18:00:00,859 Spruce St, New York City,NY,10001 +248900,34in Ultrawide Monitor,1,379.99,2019-09-18 20:20:00,429 South St, San Francisco,CA,94016 +248901,Google Phone,1,600.0,2019-09-24 08:11:00,626 5th St, Los Angeles,CA,90001 +248901,Wired Headphones,1,11.99,2019-09-24 08:11:00,626 5th St, Los Angeles,CA,90001 +248902,AAA Batteries (4-pack),1,2.99,2019-09-26 10:38:00,994 Madison St, Los Angeles,CA,90001 +248903,Bose SoundSport Headphones,1,99.99,2019-09-09 19:48:00,817 River St, Los Angeles,CA,90001 +248904,Apple Airpods Headphones,1,150.0,2019-09-16 13:14:00,649 4th St, Atlanta,GA,30301 +248905,AAA Batteries (4-pack),2,2.99,2019-09-26 12:16:00,790 Lakeview St, New York City,NY,10001 +248906,Bose SoundSport Headphones,1,99.99,2019-09-10 14:47:00,14 Chestnut St, San Francisco,CA,94016 +248907,Lightning Charging Cable,1,14.95,2019-09-03 14:31:00,324 Lincoln St, Atlanta,GA,30301 +248908,USB-C Charging Cable,1,11.95,2019-09-01 22:28:00,96 Cedar St, San Francisco,CA,94016 +248909,Bose SoundSport Headphones,1,99.99,2019-09-15 17:15:00,639 Jackson St, Los Angeles,CA,90001 +248910,AA Batteries (4-pack),1,3.84,2019-09-17 18:42:00,965 12th St, New York City,NY,10001 +248911,Wired Headphones,1,11.99,2019-09-15 11:38:00,763 Adams St, Boston,MA,02215 +248912,Wired Headphones,1,11.99,2019-09-04 23:05:00,416 4th St, New York City,NY,10001 +248913,Bose SoundSport Headphones,1,99.99,2019-09-26 17:38:00,308 Church St, New York City,NY,10001 +248914,iPhone,1,700.0,2019-09-05 22:40:00,924 Willow St, New York City,NY,10001 +248915,Bose SoundSport Headphones,1,99.99,2019-09-11 14:50:00,978 Meadow St, Boston,MA,02215 +248916,AA Batteries (4-pack),1,3.84,2019-09-20 18:20:00,634 Wilson St, Atlanta,GA,30301 +248917,USB-C Charging Cable,1,11.95,2019-09-27 18:17:00,122 Chestnut St, Atlanta,GA,30301 +248918,Bose SoundSport Headphones,1,99.99,2019-09-07 00:47:00,857 13th St, Portland,OR,97035 +248919,AA Batteries (4-pack),1,3.84,2019-09-06 01:22:00,284 5th St, Seattle,WA,98101 +248920,27in FHD Monitor,1,149.99,2019-09-15 18:26:00,838 Elm St, New York City,NY,10001 +248921,34in Ultrawide Monitor,1,379.99,2019-09-28 19:49:00,758 14th St, Los Angeles,CA,90001 +248922,Apple Airpods Headphones,1,150.0,2019-09-01 05:10:00,39 Spruce St, Portland,ME,04101 +248923,Lightning Charging Cable,1,14.95,2019-09-17 22:20:00,824 Lakeview St, Boston,MA,02215 +248924,Lightning Charging Cable,1,14.95,2019-09-19 13:12:00,984 7th St, Seattle,WA,98101 +248924,USB-C Charging Cable,1,11.95,2019-09-19 13:12:00,984 7th St, Seattle,WA,98101 +248925,AAA Batteries (4-pack),1,2.99,2019-09-05 13:33:00,341 Hickory St, Los Angeles,CA,90001 +248926,iPhone,1,700.0,2019-09-29 18:10:00,723 Church St, Dallas,TX,75001 +248927,Wired Headphones,1,11.99,2019-09-09 21:53:00,321 Washington St, New York City,NY,10001 +248928,AAA Batteries (4-pack),3,2.99,2019-09-21 20:35:00,409 Maple St, Los Angeles,CA,90001 +248929,34in Ultrawide Monitor,1,379.99,2019-09-28 09:12:00,58 Sunset St, Los Angeles,CA,90001 +248930,USB-C Charging Cable,1,11.95,2019-09-21 01:30:00,923 14th St, New York City,NY,10001 +248931,34in Ultrawide Monitor,1,379.99,2019-09-16 16:17:00,715 Johnson St, Seattle,WA,98101 +248932,USB-C Charging Cable,1,11.95,2019-09-15 15:30:00,531 Sunset St, Dallas,TX,75001 +248933,USB-C Charging Cable,1,11.95,2019-09-08 14:54:00,174 14th St, New York City,NY,10001 +248934,20in Monitor,1,109.99,2019-09-22 11:32:00,689 West St, Seattle,WA,98101 +248935,AA Batteries (4-pack),1,3.84,2019-09-02 16:23:00,377 Madison St, Atlanta,GA,30301 +248936,Apple Airpods Headphones,1,150.0,2019-09-08 22:41:00,643 7th St, Los Angeles,CA,90001 +248937,Wired Headphones,1,11.99,2019-09-07 11:04:00,281 Elm St, New York City,NY,10001 +248938,Flatscreen TV,2,300.0,2019-09-19 20:32:00,205 North St, Portland,OR,97035 +248939,27in FHD Monitor,1,149.99,2019-09-08 00:29:00,319 Lake St, Los Angeles,CA,90001 +248940,Bose SoundSport Headphones,1,99.99,2019-09-24 17:41:00,918 9th St, San Francisco,CA,94016 +248941,Lightning Charging Cable,1,14.95,2019-09-21 19:16:00,696 Forest St, San Francisco,CA,94016 +248942,AAA Batteries (4-pack),1,2.99,2019-09-23 02:47:00,436 Jackson St, New York City,NY,10001 +248943,Google Phone,1,600.0,2019-09-11 17:48:00,555 Hickory St, Dallas,TX,75001 +248943,USB-C Charging Cable,1,11.95,2019-09-11 17:48:00,555 Hickory St, Dallas,TX,75001 +248944,ThinkPad Laptop,1,999.99,2019-09-24 07:45:00,854 2nd St, San Francisco,CA,94016 +248945,Lightning Charging Cable,1,14.95,2019-09-03 20:27:00,941 Sunset St, Atlanta,GA,30301 +248946,AA Batteries (4-pack),1,3.84,2019-09-18 21:39:00,619 Maple St, Atlanta,GA,30301 +248947,Lightning Charging Cable,1,14.95,2019-09-13 19:59:00,71 Hickory St, Seattle,WA,98101 +248948,USB-C Charging Cable,1,11.95,2019-09-06 18:15:00,171 Jackson St, New York City,NY,10001 +248949,Bose SoundSport Headphones,1,99.99,2019-09-24 21:55:00,540 Lake St, Atlanta,GA,30301 +248950,Bose SoundSport Headphones,1,99.99,2019-09-18 22:48:00,606 Washington St, Dallas,TX,75001 +248951,27in FHD Monitor,1,149.99,2019-09-02 22:57:00,284 Lake St, Seattle,WA,98101 +248952,Flatscreen TV,1,300.0,2019-09-05 22:00:00,479 Wilson St, New York City,NY,10001 +248953,Google Phone,1,600.0,2019-09-18 11:13:00,789 Jefferson St, Seattle,WA,98101 +248953,Wired Headphones,1,11.99,2019-09-18 11:13:00,789 Jefferson St, Seattle,WA,98101 +248954,AA Batteries (4-pack),3,3.84,2019-09-02 18:15:00,991 Pine St, San Francisco,CA,94016 +248955,Apple Airpods Headphones,1,150.0,2019-09-01 16:03:00,275 10th St, Los Angeles,CA,90001 +248956,ThinkPad Laptop,1,999.99,2019-09-11 11:10:00,349 North St, San Francisco,CA,94016 +248957,AA Batteries (4-pack),2,3.84,2019-09-21 16:31:00,314 West St, Los Angeles,CA,90001 +248958,Lightning Charging Cable,1,14.95,2019-09-09 12:18:00,89 River St, Boston,MA,02215 +248959,Apple Airpods Headphones,1,150.0,2019-09-05 07:01:00,429 Chestnut St, New York City,NY,10001 +248960,Wired Headphones,1,11.99,2019-09-23 11:25:00,444 Church St, Austin,TX,73301 +248961,USB-C Charging Cable,1,11.95,2019-09-30 17:17:00,231 13th St, Boston,MA,02215 +248962,iPhone,1,700.0,2019-09-18 17:00:00,33 Park St, San Francisco,CA,94016 +248963,27in 4K Gaming Monitor,1,389.99,2019-09-21 13:23:00,850 West St, Portland,OR,97035 +248964,27in FHD Monitor,1,149.99,2019-09-28 09:39:00,339 Chestnut St, Boston,MA,02215 +248965,AA Batteries (4-pack),3,3.84,2019-09-08 12:48:00,344 Elm St, Atlanta,GA,30301 +248966,iPhone,1,700.0,2019-09-27 13:04:00,333 Madison St, San Francisco,CA,94016 +248967,Apple Airpods Headphones,1,150.0,2019-09-25 20:20:00,395 Forest St, Los Angeles,CA,90001 +248968,Apple Airpods Headphones,1,150.0,2019-09-08 15:20:00,418 Cherry St, Los Angeles,CA,90001 +248969,Google Phone,1,600.0,2019-09-22 00:08:00,925 Dogwood St, Portland,OR,97035 +248970,AAA Batteries (4-pack),2,2.99,2019-09-17 01:41:00,746 Johnson St, Atlanta,GA,30301 +248971,34in Ultrawide Monitor,1,379.99,2019-09-09 15:36:00,417 Chestnut St, New York City,NY,10001 +248972,27in 4K Gaming Monitor,1,389.99,2019-09-19 04:30:00,836 13th St, Los Angeles,CA,90001 +248973,20in Monitor,1,109.99,2019-09-08 14:29:00,947 Wilson St, New York City,NY,10001 +248974,Apple Airpods Headphones,1,150.0,2019-09-12 23:11:00,367 2nd St, Boston,MA,02215 +248975,Flatscreen TV,1,300.0,2019-09-11 12:31:00,934 12th St, San Francisco,CA,94016 +248976,34in Ultrawide Monitor,1,379.99,2019-09-11 11:12:00,498 2nd St, Los Angeles,CA,90001 +248977,Bose SoundSport Headphones,1,99.99,2019-09-23 13:10:00,935 Johnson St, San Francisco,CA,94016 +248978,34in Ultrawide Monitor,1,379.99,2019-09-24 21:49:00,352 Highland St, Dallas,TX,75001 +248979,Wired Headphones,1,11.99,2019-09-28 05:39:00,124 Washington St, Portland,OR,97035 +248980,AA Batteries (4-pack),2,3.84,2019-09-25 09:31:00,731 10th St, Dallas,TX,75001 +248981,AAA Batteries (4-pack),1,2.99,2019-09-07 09:34:00,110 Chestnut St, Atlanta,GA,30301 +248982,Google Phone,1,600.0,2019-09-27 19:13:00,525 13th St, Boston,MA,02215 +248983,Bose SoundSport Headphones,1,99.99,2019-09-24 13:57:00,216 Sunset St, San Francisco,CA,94016 +248984,Flatscreen TV,1,300.0,2019-09-01 22:01:00,62 River St, Dallas,TX,75001 +248985,iPhone,1,700.0,2019-09-24 23:17:00,82 Chestnut St, Dallas,TX,75001 +248985,Lightning Charging Cable,1,14.95,2019-09-24 23:17:00,82 Chestnut St, Dallas,TX,75001 +248986,27in 4K Gaming Monitor,1,389.99,2019-09-30 20:28:00,370 Jefferson St, Atlanta,GA,30301 +248987,AAA Batteries (4-pack),1,2.99,2019-09-08 22:48:00,503 2nd St, Austin,TX,73301 +248988,AAA Batteries (4-pack),2,2.99,2019-09-04 07:11:00,904 South St, Atlanta,GA,30301 +248989,AA Batteries (4-pack),1,3.84,2019-09-08 10:59:00,838 Lincoln St, New York City,NY,10001 +248989,Lightning Charging Cable,1,14.95,2019-09-08 10:59:00,838 Lincoln St, New York City,NY,10001 +248990,AAA Batteries (4-pack),2,2.99,2019-09-10 19:50:00,244 North St, Portland,OR,97035 +248991,Flatscreen TV,1,300.0,2019-09-16 09:48:00,428 Dogwood St, San Francisco,CA,94016 +248992,Lightning Charging Cable,1,14.95,2019-09-01 12:54:00,316 9th St, Atlanta,GA,30301 +248993,AA Batteries (4-pack),2,3.84,2019-09-20 21:27:00,61 Dogwood St, Boston,MA,02215 +248994,AAA Batteries (4-pack),1,2.99,2019-09-25 14:12:00,263 Elm St, Atlanta,GA,30301 +248995,Lightning Charging Cable,1,14.95,2019-09-12 14:17:00,497 Hickory St, Atlanta,GA,30301 +248996,Apple Airpods Headphones,1,150.0,2019-09-26 16:23:00,114 8th St, San Francisco,CA,94016 +248997,AA Batteries (4-pack),1,3.84,2019-09-24 07:08:00,844 Maple St, San Francisco,CA,94016 +248998,AA Batteries (4-pack),1,3.84,2019-09-11 14:45:00,327 Chestnut St, Atlanta,GA,30301 +248999,27in 4K Gaming Monitor,1,389.99,2019-09-29 21:22:00,450 Jackson St, Los Angeles,CA,90001 +249000,iPhone,1,700.0,2019-09-12 23:18:00,301 Elm St, Boston,MA,02215 +249001,ThinkPad Laptop,1,999.99,2019-09-10 00:34:00,95 Cherry St, Los Angeles,CA,90001 +249001,AAA Batteries (4-pack),1,2.99,2019-09-10 00:34:00,95 Cherry St, Los Angeles,CA,90001 +249002,AAA Batteries (4-pack),1,2.99,2019-09-16 13:35:00,319 Madison St, Portland,ME,04101 +249003,Apple Airpods Headphones,1,150.0,2019-09-26 19:22:00,576 Willow St, New York City,NY,10001 +249004,34in Ultrawide Monitor,1,379.99,2019-09-29 12:17:00,192 Washington St, San Francisco,CA,94016 +249005,Apple Airpods Headphones,1,150.0,2019-09-24 05:36:00,951 14th St, New York City,NY,10001 +249006,iPhone,1,700.0,2019-09-13 19:15:00,451 Sunset St, New York City,NY,10001 +249007,AA Batteries (4-pack),2,3.84,2019-09-04 18:02:00,390 Main St, San Francisco,CA,94016 +249008,Lightning Charging Cable,1,14.95,2019-09-02 18:42:00,687 Jackson St, San Francisco,CA,94016 +249009,Bose SoundSport Headphones,1,99.99,2019-09-27 10:07:00,693 12th St, Boston,MA,02215 +249010,AA Batteries (4-pack),1,3.84,2019-09-10 10:07:00,436 5th St, New York City,NY,10001 +249011,AAA Batteries (4-pack),2,2.99,2019-09-19 11:04:00,927 Johnson St, San Francisco,CA,94016 +249012,Apple Airpods Headphones,1,150.0,2019-09-26 08:48:00,393 5th St, Seattle,WA,98101 +249013,Lightning Charging Cable,1,14.95,2019-09-24 18:02:00,321 Walnut St, New York City,NY,10001 +249014,AAA Batteries (4-pack),1,2.99,2019-09-02 21:52:00,240 Pine St, Atlanta,GA,30301 +249015,Wired Headphones,1,11.99,2019-09-23 19:33:00,34 Pine St, Boston,MA,02215 +249016,Apple Airpods Headphones,1,150.0,2019-09-16 14:56:00,436 Highland St, Seattle,WA,98101 +249017,iPhone,1,700.0,2019-09-10 16:40:00,923 8th St, San Francisco,CA,94016 +249018,Wired Headphones,1,11.99,2019-09-07 23:21:00,697 2nd St, Austin,TX,73301 +249019,Bose SoundSport Headphones,1,99.99,2019-09-14 19:56:00,763 Church St, Portland,OR,97035 +249020,AA Batteries (4-pack),1,3.84,2019-09-27 23:39:00,484 5th St, San Francisco,CA,94016 +249021,Bose SoundSport Headphones,1,99.99,2019-09-15 16:09:00,74 Lincoln St, San Francisco,CA,94016 +249022,27in 4K Gaming Monitor,1,389.99,2019-09-24 22:04:00,231 Cherry St, Portland,OR,97035 +249023,Lightning Charging Cable,1,14.95,2019-09-27 14:56:00,612 10th St, Los Angeles,CA,90001 +249024,34in Ultrawide Monitor,1,379.99,2019-09-18 09:53:00,485 6th St, San Francisco,CA,94016 +249025,34in Ultrawide Monitor,1,379.99,2019-09-10 01:35:00,864 River St, San Francisco,CA,94016 +249026,20in Monitor,1,109.99,2019-09-03 20:10:00,587 8th St, Boston,MA,02215 +249027,Apple Airpods Headphones,1,150.0,2019-09-07 09:26:00,705 Johnson St, Los Angeles,CA,90001 +249028,20in Monitor,1,109.99,2019-09-27 11:13:00,64 Jefferson St, Boston,MA,02215 +249029,Wired Headphones,1,11.99,2019-09-27 10:56:00,778 South St, San Francisco,CA,94016 +249030,iPhone,1,700.0,2019-09-25 01:38:00,588 14th St, Los Angeles,CA,90001 +249031,AAA Batteries (4-pack),2,2.99,2019-09-14 21:56:00,370 Pine St, Portland,OR,97035 +249032,Lightning Charging Cable,1,14.95,2019-09-06 18:32:00,680 Cedar St, Austin,TX,73301 +249033,AA Batteries (4-pack),2,3.84,2019-09-23 20:52:00,239 7th St, Los Angeles,CA,90001 +249034,AAA Batteries (4-pack),1,2.99,2019-09-30 16:15:00,157 Ridge St, Austin,TX,73301 +249035,AA Batteries (4-pack),1,3.84,2019-09-09 18:46:00,677 Spruce St, Seattle,WA,98101 +249036,AA Batteries (4-pack),5,3.84,2019-09-19 11:56:00,250 12th St, Atlanta,GA,30301 +249037,Lightning Charging Cable,1,14.95,2019-09-09 22:56:00,123 Johnson St, Seattle,WA,98101 +249038,AA Batteries (4-pack),1,3.84,2019-09-09 12:45:00,781 Maple St, Seattle,WA,98101 +249039,AAA Batteries (4-pack),1,2.99,2019-09-09 09:02:00,200 Dogwood St, San Francisco,CA,94016 +249040,Bose SoundSport Headphones,1,99.99,2019-09-24 14:32:00,965 Lincoln St, Boston,MA,02215 +249041,Google Phone,1,600.0,2019-09-10 20:16:00,762 Hill St, Atlanta,GA,30301 +249042,Wired Headphones,1,11.99,2019-09-03 20:49:00,570 7th St, San Francisco,CA,94016 +249043,Lightning Charging Cable,1,14.95,2019-09-24 16:21:00,114 14th St, Los Angeles,CA,90001 +249044,Bose SoundSport Headphones,1,99.99,2019-09-24 22:37:00,616 12th St, Los Angeles,CA,90001 +249045,USB-C Charging Cable,1,11.95,2019-09-07 12:20:00,569 River St, Seattle,WA,98101 +249046,Apple Airpods Headphones,1,150.0,2019-09-08 18:37:00,560 8th St, New York City,NY,10001 +249047,34in Ultrawide Monitor,1,379.99,2019-09-28 22:53:00,245 9th St, San Francisco,CA,94016 +249048,Wired Headphones,1,11.99,2019-09-19 20:43:00,725 River St, New York City,NY,10001 +249049,Lightning Charging Cable,2,14.95,2019-09-20 16:16:00,667 Willow St, Dallas,TX,75001 +249050,27in FHD Monitor,1,149.99,2019-09-19 10:10:00,737 13th St, San Francisco,CA,94016 +249051,USB-C Charging Cable,1,11.95,2019-09-13 02:49:00,303 River St, Boston,MA,02215 +249052,27in 4K Gaming Monitor,1,389.99,2019-09-20 22:01:00,648 Chestnut St, Los Angeles,CA,90001 +249053,USB-C Charging Cable,3,11.95,2019-09-10 10:16:00,607 Pine St, New York City,NY,10001 +249054,AAA Batteries (4-pack),1,2.99,2019-09-17 07:41:00,943 10th St, New York City,NY,10001 +249055,USB-C Charging Cable,1,11.95,2019-09-13 22:23:00,501 Cedar St, Austin,TX,73301 +249056,USB-C Charging Cable,1,11.95,2019-09-19 11:53:00,429 River St, New York City,NY,10001 +249057,Apple Airpods Headphones,1,150.0,2019-09-16 12:31:00,676 Washington St, San Francisco,CA,94016 +249058,AA Batteries (4-pack),1,3.84,2019-09-14 17:37:00,612 8th St, Atlanta,GA,30301 +249059,Lightning Charging Cable,1,14.95,2019-09-09 08:39:00,829 Cherry St, Atlanta,GA,30301 +249060,27in FHD Monitor,1,149.99,2019-09-03 19:21:00,162 Johnson St, San Francisco,CA,94016 +249061,iPhone,1,700.0,2019-09-02 19:44:00,394 5th St, San Francisco,CA,94016 +249062,USB-C Charging Cable,1,11.95,2019-09-16 07:56:00,24 Pine St, Boston,MA,02215 +249063,34in Ultrawide Monitor,1,379.99,2019-09-15 19:31:00,891 12th St, Boston,MA,02215 +249064,27in FHD Monitor,1,149.99,2019-09-23 21:53:00,653 1st St, New York City,NY,10001 +249065,AAA Batteries (4-pack),4,2.99,2019-09-12 12:32:00,439 Willow St, Atlanta,GA,30301 +249066,Lightning Charging Cable,1,14.95,2019-09-18 13:22:00,638 Jefferson St, Portland,ME,04101 +249067,Flatscreen TV,1,300.0,2019-09-14 16:30:00,629 North St, San Francisco,CA,94016 +249068,AAA Batteries (4-pack),1,2.99,2019-09-17 00:55:00,363 Chestnut St, San Francisco,CA,94016 +249069,Bose SoundSport Headphones,1,99.99,2019-09-28 13:46:00,833 Cherry St, San Francisco,CA,94016 +249070,Google Phone,1,600.0,2019-09-20 13:44:00,347 Jefferson St, New York City,NY,10001 +249071,AA Batteries (4-pack),1,3.84,2019-09-08 13:41:00,848 7th St, Boston,MA,02215 +249072,Wired Headphones,1,11.99,2019-09-10 01:40:00,164 1st St, San Francisco,CA,94016 +249073,27in 4K Gaming Monitor,1,389.99,2019-09-29 20:48:00,180 Hill St, Los Angeles,CA,90001 +249074,AA Batteries (4-pack),1,3.84,2019-09-29 11:53:00,781 Lincoln St, Boston,MA,02215 +249075,Bose SoundSport Headphones,1,99.99,2019-09-18 18:31:00,483 Adams St, San Francisco,CA,94016 +249076,27in FHD Monitor,1,149.99,2019-09-09 17:32:00,430 4th St, Austin,TX,73301 +249077,USB-C Charging Cable,1,11.95,2019-09-12 12:56:00,174 Hickory St, San Francisco,CA,94016 +249078,AAA Batteries (4-pack),1,2.99,2019-09-19 23:15:00,4 13th St, Austin,TX,73301 +249079,Apple Airpods Headphones,1,150.0,2019-09-05 14:47:00,753 7th St, Portland,OR,97035 +249080,27in 4K Gaming Monitor,1,389.99,2019-09-13 22:17:00,779 Lake St, San Francisco,CA,94016 +249081,iPhone,1,700.0,2019-09-19 22:23:00,108 Dogwood St, San Francisco,CA,94016 +249081,Lightning Charging Cable,1,14.95,2019-09-19 22:23:00,108 Dogwood St, San Francisco,CA,94016 +249081,Wired Headphones,1,11.99,2019-09-19 22:23:00,108 Dogwood St, San Francisco,CA,94016 +249082,USB-C Charging Cable,1,11.95,2019-09-13 07:03:00,515 11th St, Dallas,TX,75001 +249083,Apple Airpods Headphones,1,150.0,2019-09-03 18:48:00,549 Church St, Portland,OR,97035 +249084,Google Phone,1,600.0,2019-09-15 12:22:00,604 West St, Los Angeles,CA,90001 +249084,USB-C Charging Cable,1,11.95,2019-09-15 12:22:00,604 West St, Los Angeles,CA,90001 +249085,Wired Headphones,1,11.99,2019-09-06 22:23:00,157 Adams St, Los Angeles,CA,90001 +249086,Lightning Charging Cable,1,14.95,2019-09-08 04:08:00,871 South St, Seattle,WA,98101 +249087,AA Batteries (4-pack),1,3.84,2019-09-05 18:36:00,706 West St, Boston,MA,02215 +249088,Apple Airpods Headphones,1,150.0,2019-09-10 17:17:00,888 Elm St, Dallas,TX,75001 +249089,iPhone,1,700.0,2019-09-17 14:03:00,344 Jefferson St, New York City,NY,10001 +249090,USB-C Charging Cable,1,11.95,2019-09-19 17:01:00,690 Willow St, Los Angeles,CA,90001 +249091,iPhone,1,700.0,2019-09-15 18:30:00,462 Cedar St, San Francisco,CA,94016 +249092,AA Batteries (4-pack),1,3.84,2019-09-30 10:27:00,934 Jackson St, San Francisco,CA,94016 +249093,USB-C Charging Cable,1,11.95,2019-09-09 13:43:00,958 6th St, Dallas,TX,75001 +249094,AAA Batteries (4-pack),1,2.99,2019-09-21 18:56:00,912 Cherry St, Austin,TX,73301 +249095,27in FHD Monitor,1,149.99,2019-09-16 18:32:00,501 8th St, San Francisco,CA,94016 +249096,Google Phone,1,600.0,2019-09-01 09:12:00,693 7th St, San Francisco,CA,94016 +249097,Macbook Pro Laptop,1,1700.0,2019-09-21 11:06:00,19 Dogwood St, Seattle,WA,98101 +249098,Wired Headphones,1,11.99,2019-09-22 21:31:00,415 9th St, Seattle,WA,98101 +249099,AAA Batteries (4-pack),1,2.99,2019-09-01 15:42:00,871 Pine St, San Francisco,CA,94016 +249100,Bose SoundSport Headphones,1,99.99,2019-09-13 16:42:00,839 Spruce St, Dallas,TX,75001 +249101,27in 4K Gaming Monitor,1,389.99,2019-09-06 10:04:00,316 8th St, San Francisco,CA,94016 +249102,Lightning Charging Cable,1,14.95,2019-09-27 12:38:00,834 Pine St, Dallas,TX,75001 +249103,Bose SoundSport Headphones,1,99.99,2019-09-09 19:06:00,582 Lakeview St, San Francisco,CA,94016 +249104,iPhone,1,700.0,2019-09-13 12:50:00,323 2nd St, Boston,MA,02215 +249104,Lightning Charging Cable,1,14.95,2019-09-13 12:50:00,323 2nd St, Boston,MA,02215 +249105,Wired Headphones,1,11.99,2019-09-29 09:11:00,63 Madison St, Austin,TX,73301 +249106,Apple Airpods Headphones,1,150.0,2019-09-23 22:21:00,25 Jefferson St, Austin,TX,73301 +249107,Wired Headphones,1,11.99,2019-09-14 18:09:00,606 North St, Los Angeles,CA,90001 +249108,Flatscreen TV,1,300.0,2019-09-15 16:02:00,206 West St, Dallas,TX,75001 +249109,ThinkPad Laptop,1,999.99,2019-09-14 17:33:00,739 Forest St, Seattle,WA,98101 +249110,Google Phone,1,600.0,2019-09-22 14:58:00,838 Lakeview St, San Francisco,CA,94016 +249111,iPhone,1,700.0,2019-09-14 12:20:00,452 Meadow St, Portland,OR,97035 +249112,Lightning Charging Cable,1,14.95,2019-09-22 10:53:00,295 Madison St, Los Angeles,CA,90001 +249113,USB-C Charging Cable,1,11.95,2019-09-29 12:04:00,434 Pine St, Portland,OR,97035 +249114,USB-C Charging Cable,1,11.95,2019-09-22 20:22:00,794 Lakeview St, Atlanta,GA,30301 +249115,LG Washing Machine,1,600.0,2019-09-15 13:06:00,988 10th St, New York City,NY,10001 +249116,Google Phone,1,600.0,2019-09-10 13:11:00,605 Cedar St, San Francisco,CA,94016 +249116,USB-C Charging Cable,1,11.95,2019-09-10 13:11:00,605 Cedar St, San Francisco,CA,94016 +249117,Flatscreen TV,1,300.0,2019-09-11 12:44:00,107 Hickory St, San Francisco,CA,94016 +249118,Wired Headphones,1,11.99,2019-09-04 09:48:00,866 Jackson St, Boston,MA,02215 +249119,20in Monitor,1,109.99,2019-09-23 23:34:00,71 Washington St, Austin,TX,73301 +249120,ThinkPad Laptop,1,999.99,2019-09-12 06:43:00,729 11th St, San Francisco,CA,94016 +249121,Bose SoundSport Headphones,1,99.99,2019-09-12 21:42:00,449 7th St, Atlanta,GA,30301 +249122,27in FHD Monitor,1,149.99,2019-09-28 14:09:00,563 Adams St, Austin,TX,73301 +249123,Macbook Pro Laptop,1,1700.0,2019-09-06 13:37:00,778 1st St, San Francisco,CA,94016 +249124,Wired Headphones,1,11.99,2019-09-04 21:01:00,134 Spruce St, San Francisco,CA,94016 +249125,Flatscreen TV,1,300.0,2019-09-18 21:49:00,525 Lake St, Los Angeles,CA,90001 +249126,Apple Airpods Headphones,1,150.0,2019-09-17 06:15:00,621 8th St, San Francisco,CA,94016 +249127,iPhone,1,700.0,2019-09-14 17:55:00,440 West St, New York City,NY,10001 +249127,Lightning Charging Cable,1,14.95,2019-09-14 17:55:00,440 West St, New York City,NY,10001 +249128,Apple Airpods Headphones,1,150.0,2019-09-26 14:16:00,757 6th St, San Francisco,CA,94016 +249128,Bose SoundSport Headphones,1,99.99,2019-09-26 14:16:00,757 6th St, San Francisco,CA,94016 +249129,27in 4K Gaming Monitor,1,389.99,2019-09-04 08:45:00,121 Jackson St, Portland,OR,97035 +249130,Lightning Charging Cable,1,14.95,2019-09-14 00:26:00,349 Main St, Boston,MA,02215 +249131,AA Batteries (4-pack),1,3.84,2019-09-04 09:13:00,876 Hickory St, Los Angeles,CA,90001 +249132,27in 4K Gaming Monitor,1,389.99,2019-09-30 09:44:00,736 South St, San Francisco,CA,94016 +249133,Flatscreen TV,1,300.0,2019-09-11 10:47:00,309 Spruce St, New York City,NY,10001 +249134,Flatscreen TV,1,300.0,2019-09-05 16:26:00,292 Park St, Dallas,TX,75001 +249135,20in Monitor,1,109.99,2019-09-15 17:45:00,783 5th St, San Francisco,CA,94016 +249136,Wired Headphones,1,11.99,2019-09-10 15:10:00,98 Park St, Atlanta,GA,30301 +249137,Apple Airpods Headphones,1,150.0,2019-09-26 17:33:00,710 Sunset St, New York City,NY,10001 +249138,Lightning Charging Cable,1,14.95,2019-09-07 01:33:00,888 Washington St, Seattle,WA,98101 +249139,Wired Headphones,1,11.99,2019-09-17 11:58:00,616 Johnson St, San Francisco,CA,94016 +249140,20in Monitor,1,109.99,2019-09-23 00:07:00,270 Hill St, New York City,NY,10001 +249141,AA Batteries (4-pack),1,3.84,2019-09-19 14:30:00,517 Washington St, Austin,TX,73301 +249142,USB-C Charging Cable,1,11.95,2019-09-12 15:42:00,897 Meadow St, New York City,NY,10001 +249143,ThinkPad Laptop,1,999.99,2019-09-01 20:18:00,349 10th St, Austin,TX,73301 +249144,Wired Headphones,1,11.99,2019-09-09 15:24:00,404 Madison St, Portland,ME,04101 +249145,ThinkPad Laptop,1,999.99,2019-09-26 15:52:00,820 11th St, Austin,TX,73301 +249146,AAA Batteries (4-pack),1,2.99,2019-09-19 09:51:00,826 14th St, San Francisco,CA,94016 +249147,iPhone,1,700.0,2019-09-16 18:46:00,26 Hill St, New York City,NY,10001 +249148,Apple Airpods Headphones,1,150.0,2019-09-13 15:31:00,631 Johnson St, San Francisco,CA,94016 +249149,Macbook Pro Laptop,1,1700.0,2019-09-04 10:46:00,353 Madison St, Boston,MA,02215 +249150,AA Batteries (4-pack),1,3.84,2019-09-29 16:05:00,531 Maple St, New York City,NY,10001 +249151,Wired Headphones,1,11.99,2019-09-24 13:58:00,67 West St, Seattle,WA,98101 +249152,Apple Airpods Headphones,1,150.0,2019-09-11 21:14:00,761 Washington St, New York City,NY,10001 +249153,Lightning Charging Cable,1,14.95,2019-09-20 18:02:00,325 Lakeview St, Austin,TX,73301 +249154,AA Batteries (4-pack),1,3.84,2019-09-22 20:04:00,665 9th St, New York City,NY,10001 +249155,USB-C Charging Cable,1,11.95,2019-09-06 19:22:00,139 Highland St, Dallas,TX,75001 +249156,AA Batteries (4-pack),1,3.84,2019-09-17 19:17:00,272 12th St, New York City,NY,10001 +249157,AAA Batteries (4-pack),2,2.99,2019-09-10 01:00:00,553 Washington St, Los Angeles,CA,90001 +249158,Lightning Charging Cable,1,14.95,2019-09-22 18:25:00,819 Wilson St, Dallas,TX,75001 +249159,AA Batteries (4-pack),1,3.84,2019-09-20 18:45:00,764 12th St, Dallas,TX,75001 +249160,USB-C Charging Cable,1,11.95,2019-09-18 14:18:00,357 Cherry St, Los Angeles,CA,90001 +249161,iPhone,1,700.0,2019-09-22 11:36:00,838 1st St, Boston,MA,02215 +249162,ThinkPad Laptop,1,999.99,2019-09-27 10:24:00,594 10th St, Portland,OR,97035 +249163,AA Batteries (4-pack),1,3.84,2019-09-08 20:09:00,113 Lake St, New York City,NY,10001 +249164,27in FHD Monitor,1,149.99,2019-09-04 17:33:00,179 South St, Atlanta,GA,30301 +249165,AAA Batteries (4-pack),1,2.99,2019-09-07 21:08:00,643 Sunset St, Seattle,WA,98101 +249166,Macbook Pro Laptop,1,1700.0,2019-09-17 16:12:00,346 Main St, San Francisco,CA,94016 +249167,20in Monitor,1,109.99,2019-09-30 21:48:00,312 7th St, New York City,NY,10001 +249168,USB-C Charging Cable,1,11.95,2019-09-14 19:07:00,128 West St, New York City,NY,10001 +249169,AAA Batteries (4-pack),4,2.99,2019-09-14 20:06:00,151 Highland St, Atlanta,GA,30301 +249170,Google Phone,1,600.0,2019-09-04 20:33:00,768 7th St, San Francisco,CA,94016 +249170,27in FHD Monitor,1,149.99,2019-09-04 20:33:00,768 7th St, San Francisco,CA,94016 +249171,Google Phone,1,600.0,2019-09-26 06:39:00,928 Main St, Atlanta,GA,30301 +249172,AA Batteries (4-pack),5,3.84,2019-09-22 11:26:00,826 Spruce St, Los Angeles,CA,90001 +249173,Lightning Charging Cable,1,14.95,2019-09-24 21:08:00,402 13th St, Seattle,WA,98101 +249174,Bose SoundSport Headphones,1,99.99,2019-09-09 09:52:00,808 Adams St, Austin,TX,73301 +249175,AA Batteries (4-pack),1,3.84,2019-09-25 21:45:00,261 9th St, Portland,OR,97035 +249176,AAA Batteries (4-pack),2,2.99,2019-09-15 08:12:00,672 4th St, Seattle,WA,98101 +249177,Macbook Pro Laptop,1,1700.0,2019-09-06 10:49:00,86 12th St, Portland,ME,04101 +249178,Bose SoundSport Headphones,1,99.99,2019-09-15 22:00:00,570 Willow St, Atlanta,GA,30301 +249179,Vareebadd Phone,1,400.0,2019-09-14 22:31:00,400 Park St, Los Angeles,CA,90001 +249180,Lightning Charging Cable,2,14.95,2019-09-04 12:05:00,660 Hill St, Los Angeles,CA,90001 +249181,Bose SoundSport Headphones,1,99.99,2019-09-01 14:01:00,333 Jefferson St, San Francisco,CA,94016 +249182,Google Phone,1,600.0,2019-09-26 21:19:00,350 10th St, Dallas,TX,75001 +249183,AA Batteries (4-pack),1,3.84,2019-09-20 20:36:00,923 Chestnut St, Boston,MA,02215 +249184,AA Batteries (4-pack),2,3.84,2019-09-06 22:57:00,335 Lake St, Atlanta,GA,30301 +249185,Macbook Pro Laptop,1,1700.0,2019-09-07 17:24:00,429 Church St, San Francisco,CA,94016 +249186,Wired Headphones,1,11.99,2019-09-28 15:15:00,694 West St, Seattle,WA,98101 +249187,LG Dryer,1,600.0,2019-09-17 10:27:00,629 Dogwood St, Seattle,WA,98101 +249188,AA Batteries (4-pack),1,3.84,2019-09-19 20:59:00,10 Main St, San Francisco,CA,94016 +249189,USB-C Charging Cable,1,11.95,2019-09-16 17:53:00,965 Center St, Boston,MA,02215 +249190,Lightning Charging Cable,1,14.95,2019-09-06 12:19:00,226 Lakeview St, Dallas,TX,75001 +249191,27in FHD Monitor,1,149.99,2019-09-22 16:39:00,920 2nd St, Seattle,WA,98101 +249192,Apple Airpods Headphones,1,150.0,2019-09-09 22:49:00,157 Forest St, Portland,ME,04101 +249193,AAA Batteries (4-pack),1,2.99,2019-09-09 16:37:00,491 Walnut St, San Francisco,CA,94016 +249194,Lightning Charging Cable,1,14.95,2019-09-17 08:22:00,610 1st St, Atlanta,GA,30301 +249195,iPhone,1,700.0,2019-09-22 23:47:00,149 2nd St, San Francisco,CA,94016 +249196,USB-C Charging Cable,1,11.95,2019-09-26 08:12:00,534 Lake St, San Francisco,CA,94016 +249197,Apple Airpods Headphones,1,150.0,2019-09-04 17:54:00,140 Church St, New York City,NY,10001 +249198,Bose SoundSport Headphones,1,99.99,2019-09-03 18:35:00,333 South St, Boston,MA,02215 +249199,USB-C Charging Cable,1,11.95,2019-09-02 18:44:00,165 Spruce St, Atlanta,GA,30301 +249200,Lightning Charging Cable,1,14.95,2019-09-26 10:52:00,814 Johnson St, Seattle,WA,98101 +249201,AA Batteries (4-pack),2,3.84,2019-09-21 22:44:00,970 13th St, San Francisco,CA,94016 +249202,Bose SoundSport Headphones,1,99.99,2019-09-27 23:32:00,8 Hickory St, Seattle,WA,98101 +249203,USB-C Charging Cable,1,11.95,2019-09-20 07:24:00,97 Spruce St, Boston,MA,02215 +249204,AAA Batteries (4-pack),1,2.99,2019-09-30 05:39:00,866 Washington St, Los Angeles,CA,90001 +249205,Lightning Charging Cable,2,14.95,2019-09-24 22:57:00,761 Maple St, Los Angeles,CA,90001 +249206,LG Washing Machine,1,600.0,2019-09-14 11:46:00,63 Hickory St, San Francisco,CA,94016 +249207,Flatscreen TV,1,300.0,2019-09-25 19:57:00,504 Jefferson St, Los Angeles,CA,90001 +249208,27in 4K Gaming Monitor,1,389.99,2019-09-06 23:57:00,979 Maple St, San Francisco,CA,94016 +249209,Lightning Charging Cable,1,14.95,2019-09-04 19:38:00,875 Pine St, Seattle,WA,98101 +249210,iPhone,1,700.0,2019-09-24 14:18:00,495 Washington St, San Francisco,CA,94016 +249211,Apple Airpods Headphones,1,150.0,2019-09-02 23:05:00,546 River St, Boston,MA,02215 +249212,Flatscreen TV,1,300.0,2019-09-06 02:36:00,960 North St, Austin,TX,73301 +249213,Lightning Charging Cable,1,14.95,2019-09-17 09:18:00,513 11th St, Boston,MA,02215 +249214,LG Washing Machine,1,600.0,2019-09-12 23:14:00,441 Pine St, Austin,TX,73301 +249215,AAA Batteries (4-pack),1,2.99,2019-09-10 00:25:00,748 Wilson St, San Francisco,CA,94016 +249216,20in Monitor,1,109.99,2019-09-27 19:58:00,623 Ridge St, Los Angeles,CA,90001 +249217,Apple Airpods Headphones,1,150.0,2019-09-24 21:22:00,891 Meadow St, San Francisco,CA,94016 +249218,Wired Headphones,1,11.99,2019-09-12 13:12:00,611 Center St, Los Angeles,CA,90001 +249219,27in 4K Gaming Monitor,1,389.99,2019-09-29 12:50:00,261 Cedar St, Austin,TX,73301 +249220,Wired Headphones,1,11.99,2019-09-05 20:48:00,554 North St, Los Angeles,CA,90001 +249221,USB-C Charging Cable,3,11.95,2019-09-25 11:40:00,689 North St, Austin,TX,73301 +249222,AA Batteries (4-pack),1,3.84,2019-09-05 10:22:00,48 11th St, San Francisco,CA,94016 +249223,AAA Batteries (4-pack),1,2.99,2019-09-27 09:13:00,672 Lakeview St, Dallas,TX,75001 +249224,Google Phone,1,600.0,2019-09-07 18:43:00,777 West St, Austin,TX,73301 +249225,Apple Airpods Headphones,1,150.0,2019-09-25 17:35:00,189 North St, Portland,OR,97035 +249226,ThinkPad Laptop,1,999.99,2019-09-26 10:33:00,439 West St, New York City,NY,10001 +249227,Lightning Charging Cable,1,14.95,2019-09-29 11:30:00,118 Spruce St, San Francisco,CA,94016 +249228,AA Batteries (4-pack),1,3.84,2019-09-02 15:03:00,553 14th St, New York City,NY,10001 +249229,34in Ultrawide Monitor,1,379.99,2019-09-27 12:56:00,989 8th St, Dallas,TX,75001 +249230,Lightning Charging Cable,1,14.95,2019-09-05 10:26:00,179 8th St, San Francisco,CA,94016 +249231,AAA Batteries (4-pack),1,2.99,2019-09-15 11:53:00,69 Lakeview St, New York City,NY,10001 +249232,AA Batteries (4-pack),1,3.84,2019-09-21 12:14:00,995 Highland St, Atlanta,GA,30301 +249233,34in Ultrawide Monitor,1,379.99,2019-09-10 13:50:00,551 Highland St, Portland,OR,97035 +249234,ThinkPad Laptop,1,999.99,2019-09-10 20:59:00,855 Wilson St, Seattle,WA,98101 +249235,Wired Headphones,1,11.99,2019-09-05 13:07:00,414 Chestnut St, Atlanta,GA,30301 +249236,27in 4K Gaming Monitor,1,389.99,2019-09-23 13:39:00,590 Cherry St, New York City,NY,10001 +249237,AAA Batteries (4-pack),1,2.99,2019-09-11 12:16:00,318 Madison St, Los Angeles,CA,90001 +249238,Apple Airpods Headphones,1,150.0,2019-09-13 17:18:00,557 Adams St, Seattle,WA,98101 +249239,AAA Batteries (4-pack),3,2.99,2019-09-19 20:09:00,644 Lincoln St, San Francisco,CA,94016 +249240,Flatscreen TV,1,300.0,2019-09-05 19:58:00,378 Highland St, Atlanta,GA,30301 +249241,Lightning Charging Cable,1,14.95,2019-09-23 00:20:00,182 Park St, Los Angeles,CA,90001 +249242,Bose SoundSport Headphones,1,99.99,2019-09-08 13:28:00,470 12th St, Boston,MA,02215 +249243,Macbook Pro Laptop,1,1700.0,2019-09-11 01:24:00,361 West St, Boston,MA,02215 +249244,iPhone,1,700.0,2019-09-25 11:25:00,170 Pine St, Portland,OR,97035 +249244,Lightning Charging Cable,1,14.95,2019-09-25 11:25:00,170 Pine St, Portland,OR,97035 +249245,Bose SoundSport Headphones,1,99.99,2019-09-05 13:50:00,272 Church St, Austin,TX,73301 +249246,Macbook Pro Laptop,1,1700.0,2019-09-06 15:33:00,656 South St, Los Angeles,CA,90001 +249247,27in 4K Gaming Monitor,1,389.99,2019-09-06 15:31:00,874 West St, San Francisco,CA,94016 +249248,Bose SoundSport Headphones,1,99.99,2019-09-20 08:29:00,52 13th St, Portland,OR,97035 +249249,AA Batteries (4-pack),1,3.84,2019-09-23 16:36:00,445 Walnut St, Seattle,WA,98101 +249250,Bose SoundSport Headphones,1,99.99,2019-09-06 08:33:00,476 Adams St, Seattle,WA,98101 +249251,Apple Airpods Headphones,1,150.0,2019-09-10 15:42:00,245 8th St, Portland,OR,97035 +249252,27in 4K Gaming Monitor,1,389.99,2019-09-26 18:04:00,880 Lakeview St, Seattle,WA,98101 +249253,Wired Headphones,1,11.99,2019-09-26 18:01:00,241 9th St, San Francisco,CA,94016 +249254,Bose SoundSport Headphones,1,99.99,2019-09-14 08:48:00,126 1st St, Boston,MA,02215 +249255,Lightning Charging Cable,1,14.95,2019-09-23 21:10:00,724 North St, Dallas,TX,75001 +249256,AA Batteries (4-pack),1,3.84,2019-09-11 10:51:00,503 7th St, Austin,TX,73301 +249257,Macbook Pro Laptop,1,1700.0,2019-09-07 19:15:00,807 10th St, New York City,NY,10001 +249258,AA Batteries (4-pack),1,3.84,2019-09-04 09:43:00,767 7th St, Los Angeles,CA,90001 +249259,Lightning Charging Cable,1,14.95,2019-09-06 18:46:00,147 8th St, Atlanta,GA,30301 +249260,Apple Airpods Headphones,1,150.0,2019-09-23 23:57:00,183 Wilson St, Boston,MA,02215 +249261,Wired Headphones,1,11.99,2019-09-13 12:13:00,188 Lakeview St, Los Angeles,CA,90001 +249262,Wired Headphones,1,11.99,2019-09-28 13:30:00,674 Ridge St, San Francisco,CA,94016 +249263,AAA Batteries (4-pack),1,2.99,2019-09-22 13:42:00,932 Lake St, Boston,MA,02215 +249264,AAA Batteries (4-pack),1,2.99,2019-09-22 15:26:00,381 Hickory St, Boston,MA,02215 +249265,Apple Airpods Headphones,1,150.0,2019-09-24 10:38:00,266 Jackson St, New York City,NY,10001 +249266,27in FHD Monitor,1,149.99,2019-09-07 11:10:00,204 Cedar St, Los Angeles,CA,90001 +249267,AAA Batteries (4-pack),2,2.99,2019-09-18 12:49:00,338 4th St, San Francisco,CA,94016 +249268,AA Batteries (4-pack),2,3.84,2019-09-06 07:51:00,79 Washington St, Boston,MA,02215 +249269,AAA Batteries (4-pack),1,2.99,2019-09-21 17:49:00,65 14th St, New York City,NY,10001 +249270,AA Batteries (4-pack),1,3.84,2019-09-24 12:38:00,312 River St, San Francisco,CA,94016 +249271,Flatscreen TV,1,300.0,2019-09-01 22:17:00,759 11th St, San Francisco,CA,94016 +249272,Wired Headphones,1,11.99,2019-09-12 19:00:00,609 Chestnut St, San Francisco,CA,94016 +249273,iPhone,1,700.0,2019-09-30 11:51:00,230 Johnson St, New York City,NY,10001 +249274,Macbook Pro Laptop,1,1700.0,2019-09-03 15:22:00,127 Cherry St, New York City,NY,10001 +249275,AA Batteries (4-pack),1,3.84,2019-09-19 14:03:00,69 Sunset St, New York City,NY,10001 +249276,Wired Headphones,1,11.99,2019-09-10 22:10:00,225 Hickory St, Seattle,WA,98101 +249277,27in 4K Gaming Monitor,1,389.99,2019-09-09 10:24:00,786 Jefferson St, Los Angeles,CA,90001 +249278,34in Ultrawide Monitor,1,379.99,2019-09-01 20:38:00,89 Chestnut St, Dallas,TX,75001 +249279,Google Phone,1,600.0,2019-09-25 16:05:00,90 Park St, Boston,MA,02215 +249280,AA Batteries (4-pack),1,3.84,2019-09-24 23:52:00,799 Johnson St, San Francisco,CA,94016 +249281,AA Batteries (4-pack),1,3.84,2019-09-22 10:18:00,739 West St, New York City,NY,10001 +249282,Lightning Charging Cable,1,14.95,2019-09-13 20:09:00,90 12th St, San Francisco,CA,94016 +249283,AA Batteries (4-pack),1,3.84,2019-09-11 14:10:00,304 2nd St, New York City,NY,10001 +249284,Lightning Charging Cable,1,14.95,2019-09-12 12:50:00,898 Jefferson St, Atlanta,GA,30301 +249285,Wired Headphones,1,11.99,2019-09-06 18:20:00,974 Johnson St, San Francisco,CA,94016 +249286,AA Batteries (4-pack),2,3.84,2019-09-26 16:10:00,907 Park St, Los Angeles,CA,90001 +249287,USB-C Charging Cable,1,11.95,2019-09-13 12:09:00,286 Park St, Seattle,WA,98101 +249288,AAA Batteries (4-pack),2,2.99,2019-09-04 10:40:00,139 Willow St, Boston,MA,02215 +249289,ThinkPad Laptop,1,999.99,2019-09-21 20:13:00,276 1st St, Portland,OR,97035 +249290,Wired Headphones,1,11.99,2019-09-27 22:13:00,930 South St, Portland,ME,04101 +249291,AA Batteries (4-pack),1,3.84,2019-09-20 20:25:00,281 4th St, Seattle,WA,98101 +249292,Apple Airpods Headphones,1,150.0,2019-09-18 13:40:00,357 Maple St, San Francisco,CA,94016 +249293,Bose SoundSport Headphones,1,99.99,2019-09-10 11:46:00,361 Spruce St, Portland,OR,97035 +249294,34in Ultrawide Monitor,1,379.99,2019-09-10 18:54:00,693 Forest St, Austin,TX,73301 +249295,Flatscreen TV,1,300.0,2019-09-13 11:02:00,115 Jefferson St, Boston,MA,02215 +249296,27in FHD Monitor,1,149.99,2019-09-27 17:59:00,519 7th St, Austin,TX,73301 +249297,Apple Airpods Headphones,1,150.0,2019-09-20 21:30:00,775 Johnson St, San Francisco,CA,94016 +249298,Wired Headphones,1,11.99,2019-09-26 13:19:00,69 River St, Los Angeles,CA,90001 +249299,Lightning Charging Cable,1,14.95,2019-09-27 23:04:00,882 Forest St, Los Angeles,CA,90001 +249300,Lightning Charging Cable,1,14.95,2019-09-23 22:20:00,977 Lincoln St, Los Angeles,CA,90001 +249301,Lightning Charging Cable,1,14.95,2019-09-07 20:53:00,363 River St, San Francisco,CA,94016 +249302,ThinkPad Laptop,1,999.99,2019-09-29 14:50:00,694 Hickory St, Dallas,TX,75001 +249303,34in Ultrawide Monitor,1,379.99,2019-09-10 19:29:00,498 Lake St, Los Angeles,CA,90001 +249304,USB-C Charging Cable,1,11.95,2019-09-19 12:16:00,697 River St, Seattle,WA,98101 +249305,Bose SoundSport Headphones,1,99.99,2019-09-15 05:24:00,740 Park St, Los Angeles,CA,90001 +249306,Lightning Charging Cable,1,14.95,2019-09-23 11:39:00,639 7th St, Austin,TX,73301 +249306,USB-C Charging Cable,1,11.95,2019-09-23 11:39:00,639 7th St, Austin,TX,73301 +249307,AA Batteries (4-pack),1,3.84,2019-09-02 16:35:00,387 Hickory St, New York City,NY,10001 +249308,AAA Batteries (4-pack),2,2.99,2019-09-06 21:07:00,865 Washington St, Austin,TX,73301 +249309,USB-C Charging Cable,1,11.95,2019-09-05 01:20:00,270 Hickory St, Atlanta,GA,30301 +249310,Flatscreen TV,1,300.0,2019-09-12 10:45:00,673 Johnson St, Los Angeles,CA,90001 +249311,Apple Airpods Headphones,1,150.0,2019-09-12 13:53:00,548 Pine St, San Francisco,CA,94016 +249312,Vareebadd Phone,1,400.0,2019-09-18 15:46:00,882 Church St, Los Angeles,CA,90001 +249313,AAA Batteries (4-pack),2,2.99,2019-09-05 10:05:00,221 Elm St, New York City,NY,10001 +249314,AA Batteries (4-pack),1,3.84,2019-09-06 15:23:00,478 5th St, San Francisco,CA,94016 +249315,AAA Batteries (4-pack),2,2.99,2019-09-17 10:59:00,375 Lake St, San Francisco,CA,94016 +249316,Google Phone,1,600.0,2019-09-25 00:43:00,449 Spruce St, Boston,MA,02215 +249317,AA Batteries (4-pack),2,3.84,2019-09-17 18:17:00,108 10th St, New York City,NY,10001 +249318,AAA Batteries (4-pack),4,2.99,2019-09-09 15:43:00,583 Lincoln St, Los Angeles,CA,90001 +249319,AA Batteries (4-pack),1,3.84,2019-09-20 21:50:00,415 8th St, Boston,MA,02215 +249320,AAA Batteries (4-pack),1,2.99,2019-09-26 09:40:00,340 10th St, Boston,MA,02215 +249321,20in Monitor,1,109.99,2019-09-20 17:19:00,53 West St, Boston,MA,02215 +249322,Lightning Charging Cable,1,14.95,2019-09-29 22:41:00,321 12th St, Austin,TX,73301 +249323,Lightning Charging Cable,1,14.95,2019-09-11 14:37:00,154 Madison St, New York City,NY,10001 +249324,Flatscreen TV,1,300.0,2019-09-25 20:42:00,795 Jackson St, New York City,NY,10001 +249325,USB-C Charging Cable,1,11.95,2019-09-20 10:39:00,693 Washington St, Boston,MA,02215 +249326,AAA Batteries (4-pack),2,2.99,2019-09-16 21:09:00,849 4th St, Dallas,TX,75001 +249327,LG Washing Machine,1,600.0,2019-09-26 15:44:00,556 Lakeview St, New York City,NY,10001 +249328,Google Phone,1,600.0,2019-09-11 20:44:00,123 14th St, New York City,NY,10001 +249328,20in Monitor,1,109.99,2019-09-11 20:44:00,123 14th St, New York City,NY,10001 +249329,27in FHD Monitor,1,149.99,2019-09-24 23:41:00,88 Main St, Los Angeles,CA,90001 +249330,Flatscreen TV,1,300.0,2019-09-19 23:30:00,180 South St, Austin,TX,73301 +249331,27in FHD Monitor,1,149.99,2019-09-19 16:20:00,625 Washington St, San Francisco,CA,94016 +249332,Lightning Charging Cable,1,14.95,2019-09-05 14:02:00,325 Cedar St, Austin,TX,73301 +249333,iPhone,1,700.0,2019-09-15 12:06:00,282 Ridge St, Seattle,WA,98101 +249334,USB-C Charging Cable,1,11.95,2019-09-20 12:43:00,813 Cherry St, San Francisco,CA,94016 +249335,Macbook Pro Laptop,1,1700.0,2019-09-11 19:01:00,995 Lakeview St, Atlanta,GA,30301 +249336,Lightning Charging Cable,1,14.95,2019-09-08 08:37:00,96 Forest St, Boston,MA,02215 +249337,AAA Batteries (4-pack),1,2.99,2019-09-14 12:52:00,934 Jefferson St, New York City,NY,10001 +249338,Wired Headphones,1,11.99,2019-09-03 17:01:00,748 Ridge St, Boston,MA,02215 +249339,Bose SoundSport Headphones,1,99.99,2019-09-27 00:11:00,588 Meadow St, Los Angeles,CA,90001 +249340,Flatscreen TV,1,300.0,2019-09-07 08:24:00,534 Ridge St, San Francisco,CA,94016 +249341,Lightning Charging Cable,2,14.95,2019-09-09 13:50:00,905 Spruce St, Atlanta,GA,30301 +249342,27in 4K Gaming Monitor,1,389.99,2019-09-28 21:27:00,720 Meadow St, Portland,ME,04101 +249343,Bose SoundSport Headphones,1,99.99,2019-09-09 13:44:00,147 Maple St, Los Angeles,CA,90001 +249344,ThinkPad Laptop,1,999.99,2019-09-30 16:36:00,935 Jefferson St, Boston,MA,02215 +249345,AAA Batteries (4-pack),1,2.99,2019-09-26 16:05:00,162 Highland St, Dallas,TX,75001 +249346,Wired Headphones,1,11.99,2019-09-28 19:54:00,23 2nd St, Seattle,WA,98101 +249347,27in FHD Monitor,1,149.99,2019-09-26 10:12:00,486 Highland St, Austin,TX,73301 +249348,Bose SoundSport Headphones,1,99.99,2019-09-13 11:28:00,761 River St, New York City,NY,10001 +249349,Apple Airpods Headphones,1,150.0,2019-09-30 13:02:00,607 Lake St, Atlanta,GA,30301 +249350,Apple Airpods Headphones,1,150.0,2019-09-15 21:05:00,51 Spruce St, New York City,NY,10001 +249351,AA Batteries (4-pack),1,3.84,2019-09-21 12:10:00,769 Jackson St, San Francisco,CA,94016 +249352,Lightning Charging Cable,1,14.95,2019-09-23 12:32:00,233 Maple St, San Francisco,CA,94016 +249353,USB-C Charging Cable,1,11.95,2019-09-03 22:53:00,246 6th St, Atlanta,GA,30301 +249354,20in Monitor,1,109.99,2019-09-04 11:58:00,786 8th St, Los Angeles,CA,90001 +249355,20in Monitor,1,109.99,2019-09-30 12:40:00,408 9th St, Portland,OR,97035 +249356,USB-C Charging Cable,1,11.95,2019-09-28 20:30:00,107 12th St, San Francisco,CA,94016 +249357,AA Batteries (4-pack),1,3.84,2019-09-06 19:57:00,428 Hill St, New York City,NY,10001 +249358,AAA Batteries (4-pack),1,2.99,2019-09-16 00:19:00,711 Wilson St, Los Angeles,CA,90001 +249359,34in Ultrawide Monitor,1,379.99,2019-09-25 11:41:00,495 Cherry St, Seattle,WA,98101 +249360,Lightning Charging Cable,1,14.95,2019-09-03 09:17:00,965 Spruce St, Los Angeles,CA,90001 +249361,iPhone,1,700.0,2019-09-20 09:48:00,294 12th St, Los Angeles,CA,90001 +249362,USB-C Charging Cable,1,11.95,2019-09-08 12:07:00,985 Adams St, Seattle,WA,98101 +249363,Apple Airpods Headphones,1,150.0,2019-09-08 11:27:00,712 5th St, Los Angeles,CA,90001 +249364,Google Phone,1,600.0,2019-09-30 22:01:00,372 Wilson St, New York City,NY,10001 +249365,Bose SoundSport Headphones,1,99.99,2019-09-28 13:13:00,833 7th St, New York City,NY,10001 +249366,Apple Airpods Headphones,1,150.0,2019-09-03 14:26:00,280 West St, Los Angeles,CA,90001 +249367,Wired Headphones,1,11.99,2019-09-08 23:03:00,80 6th St, Seattle,WA,98101 +249368,USB-C Charging Cable,1,11.95,2019-09-05 11:19:00,590 Church St, Boston,MA,02215 +249369,USB-C Charging Cable,1,11.95,2019-09-14 20:17:00,441 South St, Dallas,TX,75001 +249370,USB-C Charging Cable,1,11.95,2019-09-01 10:09:00,435 10th St, San Francisco,CA,94016 +249371,AAA Batteries (4-pack),2,2.99,2019-09-03 16:30:00,528 6th St, Atlanta,GA,30301 +249372,Lightning Charging Cable,1,14.95,2019-09-15 16:25:00,961 Hickory St, New York City,NY,10001 +249373,Lightning Charging Cable,1,14.95,2019-09-17 12:11:00,337 Lincoln St, San Francisco,CA,94016 +249374,AA Batteries (4-pack),1,3.84,2019-09-21 22:51:00,549 Walnut St, New York City,NY,10001 +249375,Lightning Charging Cable,2,14.95,2019-09-30 16:47:00,710 12th St, San Francisco,CA,94016 +249376,USB-C Charging Cable,1,11.95,2019-09-03 21:02:00,722 Spruce St, San Francisco,CA,94016 +249377,AA Batteries (4-pack),1,3.84,2019-09-07 05:19:00,135 Adams St, San Francisco,CA,94016 +249378,Vareebadd Phone,1,400.0,2019-09-12 13:29:00,437 Highland St, Portland,OR,97035 +249379,USB-C Charging Cable,1,11.95,2019-09-13 16:51:00,863 Elm St, Atlanta,GA,30301 +249380,iPhone,1,700.0,2019-09-28 19:16:00,976 5th St, Los Angeles,CA,90001 +249380,Wired Headphones,1,11.99,2019-09-28 19:16:00,976 5th St, Los Angeles,CA,90001 +249381,AAA Batteries (4-pack),1,2.99,2019-09-05 21:28:00,262 Maple St, New York City,NY,10001 +249382,USB-C Charging Cable,2,11.95,2019-09-23 21:36:00,467 South St, New York City,NY,10001 +249383,Lightning Charging Cable,1,14.95,2019-09-10 12:33:00,74 North St, Austin,TX,73301 +249384,USB-C Charging Cable,1,11.95,2019-09-07 19:48:00,832 Forest St, San Francisco,CA,94016 +249385,AA Batteries (4-pack),1,3.84,2019-09-23 11:45:00,937 6th St, San Francisco,CA,94016 +249386,27in FHD Monitor,1,149.99,2019-09-28 15:43:00,889 Hill St, New York City,NY,10001 +249387,USB-C Charging Cable,1,11.95,2019-09-22 17:17:00,205 Jefferson St, Austin,TX,73301 +249388,Lightning Charging Cable,1,14.95,2019-09-03 15:36:00,487 Lincoln St, San Francisco,CA,94016 +249389,Macbook Pro Laptop,1,1700.0,2019-09-10 14:00:00,6 13th St, Seattle,WA,98101 +249389,Google Phone,1,600.0,2019-09-10 14:00:00,6 13th St, Seattle,WA,98101 +249390,AA Batteries (4-pack),1,3.84,2019-09-19 16:09:00,412 Jefferson St, San Francisco,CA,94016 +249390,Lightning Charging Cable,1,14.95,2019-09-19 16:09:00,412 Jefferson St, San Francisco,CA,94016 +249391,Flatscreen TV,1,300.0,2019-09-06 20:15:00,21 Sunset St, San Francisco,CA,94016 +249392,AA Batteries (4-pack),1,3.84,2019-09-16 19:55:00,287 Willow St, Boston,MA,02215 +249393,AAA Batteries (4-pack),2,2.99,2019-09-01 16:57:00,942 Church St, Seattle,WA,98101 +249394,AAA Batteries (4-pack),1,2.99,2019-09-13 08:23:00,882 Dogwood St, Dallas,TX,75001 +249395,Wired Headphones,1,11.99,2019-09-18 16:09:00,562 Madison St, Los Angeles,CA,90001 +249396,USB-C Charging Cable,1,11.95,2019-09-18 23:56:00,327 Willow St, San Francisco,CA,94016 +249396,Google Phone,1,600.0,2019-09-18 23:56:00,327 Willow St, San Francisco,CA,94016 +249397,Apple Airpods Headphones,1,150.0,2019-09-08 00:01:00,132 6th St, Los Angeles,CA,90001 +249398,34in Ultrawide Monitor,1,379.99,2019-09-08 15:45:00,318 Church St, San Francisco,CA,94016 +249399,USB-C Charging Cable,1,11.95,2019-09-10 16:07:00,348 Adams St, Dallas,TX,75001 +249400,27in FHD Monitor,1,149.99,2019-09-06 10:14:00,79 13th St, Portland,OR,97035 +249401,20in Monitor,1,109.99,2019-09-10 12:15:00,79 Johnson St, Atlanta,GA,30301 +249402,AAA Batteries (4-pack),2,2.99,2019-09-24 07:49:00,848 14th St, Dallas,TX,75001 +249403,Google Phone,1,600.0,2019-09-27 19:47:00,300 Cherry St, Portland,OR,97035 +249404,Wired Headphones,1,11.99,2019-09-14 23:37:00,393 4th St, Seattle,WA,98101 +249405,Wired Headphones,1,11.99,2019-09-07 12:02:00,849 Lakeview St, New York City,NY,10001 +249406,Vareebadd Phone,1,400.0,2019-09-10 12:54:00,860 Maple St, Portland,OR,97035 +249407,Macbook Pro Laptop,1,1700.0,2019-09-28 15:21:00,302 Elm St, San Francisco,CA,94016 +249408,AA Batteries (4-pack),1,3.84,2019-09-02 12:07:00,550 Spruce St, San Francisco,CA,94016 +249409,AAA Batteries (4-pack),2,2.99,2019-09-21 08:20:00,801 Dogwood St, Austin,TX,73301 +249410,Bose SoundSport Headphones,1,99.99,2019-09-28 22:26:00,664 Pine St, New York City,NY,10001 +249411,34in Ultrawide Monitor,1,379.99,2019-09-23 11:03:00,31 8th St, Los Angeles,CA,90001 +249412,Lightning Charging Cable,2,14.95,2019-09-17 19:22:00,838 Cherry St, San Francisco,CA,94016 +249413,USB-C Charging Cable,1,11.95,2019-09-25 15:54:00,858 Maple St, Los Angeles,CA,90001 +249414,USB-C Charging Cable,1,11.95,2019-09-26 23:59:00,364 2nd St, New York City,NY,10001 +249415,AA Batteries (4-pack),1,3.84,2019-09-23 13:20:00,227 8th St, Los Angeles,CA,90001 +249416,Apple Airpods Headphones,1,150.0,2019-09-17 18:08:00,904 Meadow St, Los Angeles,CA,90001 +249417,AAA Batteries (4-pack),1,2.99,2019-09-02 17:14:00,679 Walnut St, San Francisco,CA,94016 +249418,Bose SoundSport Headphones,1,99.99,2019-09-05 16:41:00,159 Jefferson St, Boston,MA,02215 +249419,AAA Batteries (4-pack),2,2.99,2019-09-10 20:32:00,3 Meadow St, Atlanta,GA,30301 +249420,Macbook Pro Laptop,1,1700.0,2019-09-18 01:28:00,33 Elm St, Atlanta,GA,30301 +249421,iPhone,1,700.0,2019-09-19 15:39:00,478 Lakeview St, San Francisco,CA,94016 +249421,Lightning Charging Cable,1,14.95,2019-09-19 15:39:00,478 Lakeview St, San Francisco,CA,94016 +249422,Lightning Charging Cable,1,14.95,2019-09-01 07:14:00,824 Elm St, San Francisco,CA,94016 +249423,AAA Batteries (4-pack),1,2.99,2019-09-16 22:08:00,901 Spruce St, Dallas,TX,75001 +249424,Wired Headphones,1,11.99,2019-09-01 19:49:00,650 Elm St, Los Angeles,CA,90001 +249425,AAA Batteries (4-pack),2,2.99,2019-09-17 07:09:00,743 Church St, Boston,MA,02215 +249426,AA Batteries (4-pack),1,3.84,2019-09-10 16:52:00,874 Cherry St, Los Angeles,CA,90001 +249427,AA Batteries (4-pack),3,3.84,2019-09-24 21:48:00,43 2nd St, San Francisco,CA,94016 +249428,Apple Airpods Headphones,1,150.0,2019-09-30 17:48:00,521 Madison St, Boston,MA,02215 +249429,Lightning Charging Cable,1,14.95,2019-09-11 09:11:00,352 14th St, Austin,TX,73301 +249430,Google Phone,1,600.0,2019-09-15 19:18:00,938 Walnut St, Seattle,WA,98101 +249430,Wired Headphones,1,11.99,2019-09-15 19:18:00,938 Walnut St, Seattle,WA,98101 +249431,Wired Headphones,1,11.99,2019-09-05 08:13:00,57 Walnut St, San Francisco,CA,94016 +249432,Apple Airpods Headphones,1,150.0,2019-09-21 17:18:00,9 7th St, New York City,NY,10001 +249433,Apple Airpods Headphones,1,150.0,2019-09-02 10:29:00,284 Spruce St, New York City,NY,10001 +249434,Macbook Pro Laptop,1,1700.0,2019-09-12 21:49:00,409 Maple St, Austin,TX,73301 +249435,USB-C Charging Cable,1,11.95,2019-09-15 10:52:00,269 Pine St, Seattle,WA,98101 +249436,AA Batteries (4-pack),1,3.84,2019-09-02 14:14:00,839 Walnut St, San Francisco,CA,94016 +249437,AAA Batteries (4-pack),1,2.99,2019-09-28 08:27:00,224 Forest St, Los Angeles,CA,90001 +249438,Lightning Charging Cable,1,14.95,2019-09-28 18:36:00,434 North St, New York City,NY,10001 +249439,AA Batteries (4-pack),1,3.84,2019-09-07 17:58:00,719 12th St, Los Angeles,CA,90001 +249439,27in FHD Monitor,1,149.99,2019-09-07 17:58:00,719 12th St, Los Angeles,CA,90001 +249440,USB-C Charging Cable,1,11.95,2019-09-30 12:03:00,344 14th St, Portland,OR,97035 +249441,Lightning Charging Cable,1,14.95,2019-09-02 09:26:00,815 Madison St, Dallas,TX,75001 +249442,Bose SoundSport Headphones,1,99.99,2019-09-24 10:08:00,112 Hickory St, Los Angeles,CA,90001 +249443,Apple Airpods Headphones,1,150.0,2019-09-12 16:15:00,83 West St, Portland,OR,97035 +249444,Google Phone,1,600.0,2019-09-27 23:42:00,86 Madison St, New York City,NY,10001 +249444,Wired Headphones,1,11.99,2019-09-27 23:42:00,86 Madison St, New York City,NY,10001 +249445,iPhone,1,700.0,2019-09-27 16:18:00,591 Cherry St, Los Angeles,CA,90001 +249446,USB-C Charging Cable,1,11.95,2019-09-23 20:48:00,670 Jackson St, Dallas,TX,75001 +249447,AA Batteries (4-pack),1,3.84,2019-09-06 04:27:00,127 5th St, Los Angeles,CA,90001 +249448,Lightning Charging Cable,1,14.95,2019-09-21 20:44:00,676 Johnson St, Austin,TX,73301 +249449,Wired Headphones,1,11.99,2019-09-09 21:15:00,206 6th St, Seattle,WA,98101 +249450,Apple Airpods Headphones,1,150.0,2019-09-21 09:23:00,678 Jefferson St, Seattle,WA,98101 +249451,27in 4K Gaming Monitor,1,389.99,2019-09-08 08:11:00,521 Lincoln St, Boston,MA,02215 +249452,Lightning Charging Cable,1,14.95,2019-09-08 08:48:00,893 Church St, Boston,MA,02215 +249453,Wired Headphones,1,11.99,2019-09-15 12:37:00,130 North St, Boston,MA,02215 +249454,34in Ultrawide Monitor,1,379.99,2019-09-11 12:20:00,459 Washington St, Dallas,TX,75001 +249455,Google Phone,1,600.0,2019-09-28 21:34:00,903 Lake St, San Francisco,CA,94016 +249455,USB-C Charging Cable,1,11.95,2019-09-28 21:34:00,903 Lake St, San Francisco,CA,94016 +249456,AA Batteries (4-pack),2,3.84,2019-09-30 14:16:00,357 14th St, Atlanta,GA,30301 +249457,Macbook Pro Laptop,1,1700.0,2019-09-06 18:41:00,330 11th St, San Francisco,CA,94016 +249458,AAA Batteries (4-pack),1,2.99,2019-09-25 14:17:00,313 Cedar St, San Francisco,CA,94016 +249459,Google Phone,1,600.0,2019-09-09 15:06:00,797 Hill St, Dallas,TX,75001 +249460,Lightning Charging Cable,1,14.95,2019-09-19 18:33:00,719 10th St, San Francisco,CA,94016 +249461,Apple Airpods Headphones,1,150.0,2019-09-23 12:47:00,558 6th St, Los Angeles,CA,90001 +249462,AAA Batteries (4-pack),1,2.99,2019-09-16 21:07:00,252 Center St, Atlanta,GA,30301 +249463,Lightning Charging Cable,1,14.95,2019-09-06 15:13:00,244 Lakeview St, Portland,OR,97035 +249464,Google Phone,1,600.0,2019-09-16 09:33:00,559 Sunset St, Dallas,TX,75001 +249465,Apple Airpods Headphones,1,150.0,2019-09-26 19:16:00,271 4th St, Dallas,TX,75001 +249466,USB-C Charging Cable,1,11.95,2019-09-20 21:26:00,247 10th St, Boston,MA,02215 +249467,ThinkPad Laptop,1,999.99,2019-09-05 11:56:00,293 Cherry St, New York City,NY,10001 +249468,USB-C Charging Cable,1,11.95,2019-09-25 11:12:00,271 Adams St, Los Angeles,CA,90001 +249468,Wired Headphones,1,11.99,2019-09-25 11:12:00,271 Adams St, Los Angeles,CA,90001 +249469,Lightning Charging Cable,1,14.95,2019-09-22 15:46:00,819 North St, New York City,NY,10001 +249470,34in Ultrawide Monitor,1,379.99,2019-09-24 14:46:00,857 Lake St, Dallas,TX,75001 +249471,Wired Headphones,1,11.99,2019-09-06 15:36:00,986 5th St, Los Angeles,CA,90001 +249472,USB-C Charging Cable,1,11.95,2019-09-10 06:57:00,14 Dogwood St, San Francisco,CA,94016 +249473,AA Batteries (4-pack),1,3.84,2019-09-02 18:52:00,889 Elm St, Boston,MA,02215 +249474,USB-C Charging Cable,2,11.95,2019-09-22 18:50:00,833 5th St, Austin,TX,73301 +249475,Lightning Charging Cable,1,14.95,2019-09-14 21:52:00,497 Spruce St, Austin,TX,73301 +249476,Lightning Charging Cable,1,14.95,2019-09-21 14:52:00,58 Cedar St, San Francisco,CA,94016 +249477,USB-C Charging Cable,1,11.95,2019-09-17 08:42:00,126 8th St, Los Angeles,CA,90001 +249478,Wired Headphones,1,11.99,2019-09-16 11:22:00,941 Ridge St, Los Angeles,CA,90001 +249479,Lightning Charging Cable,1,14.95,2019-09-08 15:46:00,903 Elm St, Los Angeles,CA,90001 +249480,Lightning Charging Cable,1,14.95,2019-09-21 10:57:00,635 Cedar St, San Francisco,CA,94016 +249481,USB-C Charging Cable,1,11.95,2019-09-26 13:36:00,830 South St, Los Angeles,CA,90001 +249482,Wired Headphones,1,11.99,2019-09-10 16:02:00,325 Lakeview St, Boston,MA,02215 +249483,27in 4K Gaming Monitor,1,389.99,2019-09-11 15:12:00,908 14th St, Los Angeles,CA,90001 +249484,AAA Batteries (4-pack),1,2.99,2019-09-22 11:05:00,629 9th St, Los Angeles,CA,90001 +249485,Lightning Charging Cable,1,14.95,2019-09-13 19:34:00,407 Chestnut St, Los Angeles,CA,90001 +249486,ThinkPad Laptop,1,999.99,2019-09-21 14:42:00,522 Dogwood St, Dallas,TX,75001 +249487,AAA Batteries (4-pack),2,2.99,2019-09-25 21:32:00,68 Park St, Austin,TX,73301 +249488,AAA Batteries (4-pack),2,2.99,2019-09-15 21:22:00,347 Maple St, San Francisco,CA,94016 +249489,27in FHD Monitor,1,149.99,2019-09-12 21:02:00,122 10th St, Los Angeles,CA,90001 +249490,AA Batteries (4-pack),1,3.84,2019-09-26 17:11:00,343 Church St, Los Angeles,CA,90001 +249491,Lightning Charging Cable,1,14.95,2019-09-17 09:24:00,840 10th St, Los Angeles,CA,90001 +249492,Bose SoundSport Headphones,1,99.99,2019-09-05 11:34:00,340 Chestnut St, Dallas,TX,75001 +249493,Lightning Charging Cable,3,14.95,2019-09-26 09:43:00,617 5th St, Dallas,TX,75001 +249494,AA Batteries (4-pack),1,3.84,2019-09-13 12:53:00,426 Pine St, San Francisco,CA,94016 +249495,AA Batteries (4-pack),1,3.84,2019-09-25 08:32:00,492 12th St, Seattle,WA,98101 +249496,Apple Airpods Headphones,1,150.0,2019-09-28 14:30:00,644 Center St, Dallas,TX,75001 +249497,AA Batteries (4-pack),2,3.84,2019-09-12 12:43:00,436 Hill St, Atlanta,GA,30301 +249498,AAA Batteries (4-pack),2,2.99,2019-09-19 22:18:00,254 Pine St, San Francisco,CA,94016 +249498,Lightning Charging Cable,1,14.95,2019-09-19 22:18:00,254 Pine St, San Francisco,CA,94016 +249499,USB-C Charging Cable,1,11.95,2019-09-14 16:11:00,124 Dogwood St, Austin,TX,73301 +249500,27in FHD Monitor,1,149.99,2019-09-08 09:57:00,298 7th St, Los Angeles,CA,90001 +249501,Flatscreen TV,1,300.0,2019-09-25 20:37:00,902 Lakeview St, Dallas,TX,75001 +249502,Flatscreen TV,1,300.0,2019-09-09 06:43:00,940 Forest St, San Francisco,CA,94016 +249503,AA Batteries (4-pack),1,3.84,2019-09-20 18:52:00,383 Hickory St, New York City,NY,10001 +249504,Wired Headphones,2,11.99,2019-09-12 10:03:00,599 Pine St, New York City,NY,10001 +249505,AAA Batteries (4-pack),1,2.99,2019-09-05 17:39:00,577 Forest St, San Francisco,CA,94016 +249506,AA Batteries (4-pack),1,3.84,2019-09-20 18:09:00,272 Hill St, Portland,OR,97035 +249507,ThinkPad Laptop,1,999.99,2019-09-12 20:39:00,276 Center St, Boston,MA,02215 +249508,Lightning Charging Cable,1,14.95,2019-09-20 17:35:00,316 Cherry St, San Francisco,CA,94016 +249509,AA Batteries (4-pack),1,3.84,2019-09-09 20:52:00,724 6th St, San Francisco,CA,94016 +249510,AAA Batteries (4-pack),3,2.99,2019-09-29 13:47:00,934 Washington St, Los Angeles,CA,90001 +249511,20in Monitor,1,109.99,2019-09-24 01:38:00,356 7th St, San Francisco,CA,94016 +249512,USB-C Charging Cable,1,11.95,2019-09-02 21:21:00,109 12th St, Boston,MA,02215 +249513,Apple Airpods Headphones,1,150.0,2019-09-30 10:00:00,903 Center St, Austin,TX,73301 +249514,AA Batteries (4-pack),1,3.84,2019-09-23 19:59:00,176 Maple St, Seattle,WA,98101 +249515,Bose SoundSport Headphones,1,99.99,2019-09-12 07:42:00,982 West St, Dallas,TX,75001 +249516,AAA Batteries (4-pack),1,2.99,2019-09-10 18:47:00,731 Madison St, San Francisco,CA,94016 +249517,USB-C Charging Cable,2,11.95,2019-09-19 10:52:00,735 1st St, Los Angeles,CA,90001 +249518,Wired Headphones,1,11.99,2019-09-01 19:34:00,751 Forest St, New York City,NY,10001 +249519,AAA Batteries (4-pack),2,2.99,2019-09-18 18:46:00,516 1st St, Seattle,WA,98101 +249520,Wired Headphones,1,11.99,2019-09-12 08:30:00,794 Lakeview St, Boston,MA,02215 +249521,AA Batteries (4-pack),1,3.84,2019-09-03 19:03:00,475 South St, New York City,NY,10001 +249522,iPhone,1,700.0,2019-09-05 20:07:00,770 2nd St, New York City,NY,10001 +249523,AA Batteries (4-pack),2,3.84,2019-09-18 07:54:00,248 Pine St, Boston,MA,02215 +249524,USB-C Charging Cable,1,11.95,2019-09-25 22:28:00,108 Lakeview St, San Francisco,CA,94016 +249525,AA Batteries (4-pack),2,3.84,2019-09-01 15:48:00,988 Center St, Boston,MA,02215 +249526,Apple Airpods Headphones,1,150.0,2019-09-17 14:37:00,946 6th St, Atlanta,GA,30301 +249527,Bose SoundSport Headphones,1,99.99,2019-09-25 10:43:00,594 Cherry St, Portland,OR,97035 +249528,AA Batteries (4-pack),1,3.84,2019-09-19 01:26:00,438 13th St, Seattle,WA,98101 +249529,AA Batteries (4-pack),2,3.84,2019-09-27 08:21:00,849 Lake St, Los Angeles,CA,90001 +249530,AAA Batteries (4-pack),1,2.99,2019-09-28 09:24:00,255 Madison St, Los Angeles,CA,90001 +249531,Apple Airpods Headphones,1,150.0,2019-09-21 09:53:00,691 Dogwood St, Austin,TX,73301 +249532,iPhone,1,700.0,2019-09-23 11:41:00,725 10th St, Los Angeles,CA,90001 +249533,AA Batteries (4-pack),2,3.84,2019-09-27 23:49:00,665 9th St, Portland,ME,04101 +249534,Wired Headphones,2,11.99,2019-09-16 17:20:00,144 Maple St, San Francisco,CA,94016 +249535,Lightning Charging Cable,1,14.95,2019-09-20 18:42:00,769 Main St, New York City,NY,10001 +249536,Google Phone,1,600.0,2019-09-08 14:14:00,90 12th St, New York City,NY,10001 +249537,Lightning Charging Cable,2,14.95,2019-09-29 13:39:00,914 12th St, Portland,OR,97035 +249538,USB-C Charging Cable,3,11.95,2019-09-01 15:20:00,13 13th St, San Francisco,CA,94016 +249539,Apple Airpods Headphones,1,150.0,2019-09-04 23:56:00,608 Wilson St, San Francisco,CA,94016 +249540,Apple Airpods Headphones,1,150.0,2019-09-06 12:17:00,747 Center St, San Francisco,CA,94016 +249541,Wired Headphones,1,11.99,2019-09-11 18:07:00,328 7th St, San Francisco,CA,94016 +249541,AA Batteries (4-pack),2,3.84,2019-09-11 18:07:00,328 7th St, San Francisco,CA,94016 +249542,Bose SoundSport Headphones,1,99.99,2019-09-15 12:55:00,819 Ridge St, San Francisco,CA,94016 +249543,27in FHD Monitor,1,149.99,2019-09-15 19:49:00,649 12th St, Boston,MA,02215 +249544,AA Batteries (4-pack),1,3.84,2019-09-30 23:14:00,15 Park St, Los Angeles,CA,90001 +249545,Macbook Pro Laptop,1,1700.0,2019-09-09 15:41:00,267 4th St, New York City,NY,10001 +249546,27in FHD Monitor,1,149.99,2019-09-29 14:02:00,143 Ridge St, New York City,NY,10001 +249547,AA Batteries (4-pack),1,3.84,2019-09-14 13:38:00,116 6th St, Boston,MA,02215 +249548,Lightning Charging Cable,1,14.95,2019-09-21 15:52:00,147 Walnut St, New York City,NY,10001 +249549,Vareebadd Phone,1,400.0,2019-09-10 15:31:00,231 River St, San Francisco,CA,94016 +249549,USB-C Charging Cable,1,11.95,2019-09-10 15:31:00,231 River St, San Francisco,CA,94016 +249550,Apple Airpods Headphones,1,150.0,2019-09-06 17:39:00,363 Sunset St, Austin,TX,73301 +249551,USB-C Charging Cable,1,11.95,2019-09-19 18:01:00,572 Spruce St, San Francisco,CA,94016 +249552,Wired Headphones,1,11.99,2019-09-10 19:34:00,491 Forest St, Austin,TX,73301 +249553,Bose SoundSport Headphones,1,99.99,2019-09-07 05:51:00,364 Chestnut St, Dallas,TX,75001 +249554,34in Ultrawide Monitor,1,379.99,2019-09-22 11:35:00,331 Adams St, San Francisco,CA,94016 +249555,iPhone,1,700.0,2019-09-17 14:33:00,376 5th St, Austin,TX,73301 +249556,AA Batteries (4-pack),1,3.84,2019-09-08 06:57:00,575 Sunset St, Dallas,TX,75001 +249557,ThinkPad Laptop,1,999.99,2019-09-20 08:43:00,241 11th St, Seattle,WA,98101 +249558,Lightning Charging Cable,1,14.95,2019-09-13 08:46:00,642 South St, Los Angeles,CA,90001 +249559,Macbook Pro Laptop,1,1700.0,2019-09-08 13:52:00,927 Dogwood St, Dallas,TX,75001 +249560,Bose SoundSport Headphones,1,99.99,2019-09-21 23:12:00,72 Lincoln St, Los Angeles,CA,90001 +249561,Bose SoundSport Headphones,1,99.99,2019-09-10 15:59:00,315 Hickory St, Atlanta,GA,30301 +249562,ThinkPad Laptop,1,999.99,2019-09-01 12:37:00,29 Cherry St, New York City,NY,10001 +249563,USB-C Charging Cable,1,11.95,2019-09-03 17:43:00,819 Main St, San Francisco,CA,94016 +249564,Lightning Charging Cable,1,14.95,2019-09-10 17:25:00,732 Lake St, Boston,MA,02215 +249565,27in 4K Gaming Monitor,1,389.99,2019-09-25 17:58:00,991 1st St, New York City,NY,10001 +249566,Wired Headphones,1,11.99,2019-09-17 13:27:00,953 Meadow St, Austin,TX,73301 +249567,Bose SoundSport Headphones,1,99.99,2019-09-16 11:21:00,75 Pine St, Seattle,WA,98101 +249568,USB-C Charging Cable,1,11.95,2019-09-17 21:41:00,148 12th St, Portland,OR,97035 +249569,Apple Airpods Headphones,1,150.0,2019-09-18 23:33:00,760 South St, San Francisco,CA,94016 +249570,AA Batteries (4-pack),1,3.84,2019-09-21 00:18:00,989 6th St, New York City,NY,10001 +249571,USB-C Charging Cable,1,11.95,2019-09-16 21:19:00,443 Park St, New York City,NY,10001 +249572,AAA Batteries (4-pack),1,2.99,2019-09-03 19:03:00,377 Cedar St, New York City,NY,10001 +249573,AAA Batteries (4-pack),2,2.99,2019-09-06 12:08:00,337 9th St, Boston,MA,02215 +249574,Bose SoundSport Headphones,1,99.99,2019-09-19 19:53:00,878 Washington St, Boston,MA,02215 +249575,AAA Batteries (4-pack),3,2.99,2019-09-02 03:18:00,611 Hickory St, San Francisco,CA,94016 +249576,20in Monitor,1,109.99,2019-09-15 11:18:00,136 Chestnut St, Los Angeles,CA,90001 +249577,ThinkPad Laptop,1,999.99,2019-09-26 09:28:00,888 Walnut St, San Francisco,CA,94016 +249578,Lightning Charging Cable,1,14.95,2019-09-19 12:54:00,276 Elm St, Boston,MA,02215 +249579,USB-C Charging Cable,1,11.95,2019-09-30 13:01:00,827 1st St, San Francisco,CA,94016 +249580,Apple Airpods Headphones,1,150.0,2019-09-22 10:54:00,50 Walnut St, Seattle,WA,98101 +249581,Lightning Charging Cable,1,14.95,2019-09-29 13:02:00,693 Washington St, San Francisco,CA,94016 +249582,Wired Headphones,1,11.99,2019-09-30 19:14:00,164 Cherry St, San Francisco,CA,94016 +249583,Bose SoundSport Headphones,1,99.99,2019-09-16 15:01:00,715 South St, Los Angeles,CA,90001 +249584,27in 4K Gaming Monitor,1,389.99,2019-09-06 10:28:00,813 Chestnut St, San Francisco,CA,94016 +249585,27in 4K Gaming Monitor,1,389.99,2019-09-30 16:25:00,935 2nd St, Los Angeles,CA,90001 +249586,AA Batteries (4-pack),5,3.84,2019-09-30 16:28:00,502 Cedar St, Boston,MA,02215 +249587,Apple Airpods Headphones,1,150.0,2019-09-15 20:56:00,950 10th St, Los Angeles,CA,90001 +249588,Macbook Pro Laptop,1,1700.0,2019-09-10 08:59:00,708 1st St, Austin,TX,73301 +249589,Apple Airpods Headphones,1,150.0,2019-09-24 03:36:00,634 Elm St, San Francisco,CA,94016 +249590,Wired Headphones,1,11.99,2019-09-28 15:52:00,209 Hickory St, San Francisco,CA,94016 +249591,AA Batteries (4-pack),1,3.84,2019-09-03 10:59:00,732 11th St, Los Angeles,CA,90001 +249592,34in Ultrawide Monitor,1,379.99,2019-09-09 08:14:00,811 Walnut St, San Francisco,CA,94016 +249593,AAA Batteries (4-pack),1,2.99,2019-09-05 14:33:00,211 Maple St, Atlanta,GA,30301 +249594,AAA Batteries (4-pack),1,2.99,2019-09-08 17:13:00,616 Center St, San Francisco,CA,94016 +249595,Lightning Charging Cable,1,14.95,2019-09-11 12:36:00,233 Chestnut St, San Francisco,CA,94016 +249596,AAA Batteries (4-pack),1,2.99,2019-09-21 20:15:00,69 10th St, Austin,TX,73301 +249597,Lightning Charging Cable,1,14.95,2019-09-04 13:32:00,398 13th St, Austin,TX,73301 +249598,AAA Batteries (4-pack),2,2.99,2019-09-21 13:27:00,774 Lakeview St, Austin,TX,73301 +249599,Apple Airpods Headphones,1,150.0,2019-09-19 08:57:00,72 Jefferson St, San Francisco,CA,94016 +249600,AAA Batteries (4-pack),1,2.99,2019-09-09 18:33:00,240 Jackson St, Atlanta,GA,30301 +249601,AA Batteries (4-pack),1,3.84,2019-09-30 23:02:00,935 11th St, San Francisco,CA,94016 +249602,Lightning Charging Cable,1,14.95,2019-09-06 18:27:00,516 Jackson St, New York City,NY,10001 +249603,Google Phone,1,600.0,2019-09-01 17:46:00,222 1st St, Seattle,WA,98101 +249604,20in Monitor,1,109.99,2019-09-25 08:01:00,233 Johnson St, San Francisco,CA,94016 +249605,Apple Airpods Headphones,1,150.0,2019-09-04 16:10:00,69 13th St, New York City,NY,10001 +249605,Wired Headphones,1,11.99,2019-09-04 16:10:00,69 13th St, New York City,NY,10001 +249606,Bose SoundSport Headphones,1,99.99,2019-09-10 21:59:00,203 Jackson St, New York City,NY,10001 +249607,27in 4K Gaming Monitor,1,389.99,2019-09-02 11:02:00,156 Maple St, Atlanta,GA,30301 +249608,iPhone,1,700.0,2019-09-05 17:02:00,351 14th St, New York City,NY,10001 +249608,Apple Airpods Headphones,1,150.0,2019-09-05 17:02:00,351 14th St, New York City,NY,10001 +249609,34in Ultrawide Monitor,1,379.99,2019-09-13 19:38:00,228 9th St, Portland,OR,97035 +249610,USB-C Charging Cable,1,11.95,2019-09-16 17:59:00,885 Lincoln St, Los Angeles,CA,90001 +249611,27in FHD Monitor,1,149.99,2019-09-26 17:39:00,784 Madison St, Seattle,WA,98101 +249612,Apple Airpods Headphones,1,150.0,2019-09-04 15:36:00,84 Sunset St, San Francisco,CA,94016 +249613,AAA Batteries (4-pack),1,2.99,2019-09-27 13:01:00,173 13th St, Los Angeles,CA,90001 +249614,USB-C Charging Cable,1,11.95,2019-09-29 00:26:00,133 Hickory St, Seattle,WA,98101 +249615,AAA Batteries (4-pack),2,2.99,2019-09-21 09:55:00,365 Cherry St, San Francisco,CA,94016 +249616,ThinkPad Laptop,1,999.99,2019-09-01 16:50:00,42 2nd St, San Francisco,CA,94016 +249616,Lightning Charging Cable,1,14.95,2019-09-01 16:50:00,42 2nd St, San Francisco,CA,94016 +249617,Lightning Charging Cable,1,14.95,2019-09-11 19:01:00,550 Main St, Boston,MA,02215 +249618,USB-C Charging Cable,1,11.95,2019-09-20 13:03:00,615 Dogwood St, Austin,TX,73301 +249619,AAA Batteries (4-pack),4,2.99,2019-09-02 19:25:00,281 South St, San Francisco,CA,94016 +249620,Apple Airpods Headphones,1,150.0,2019-09-26 02:55:00,328 River St, Los Angeles,CA,90001 +249621,Wired Headphones,1,11.99,2019-09-12 17:41:00,215 Johnson St, Boston,MA,02215 +249622,AA Batteries (4-pack),1,3.84,2019-09-07 16:29:00,870 2nd St, Atlanta,GA,30301 +249623,AAA Batteries (4-pack),2,2.99,2019-09-13 01:35:00,311 Cedar St, Los Angeles,CA,90001 +249624,AAA Batteries (4-pack),2,2.99,2019-09-01 06:47:00,460 11th St, New York City,NY,10001 +249625,Lightning Charging Cable,1,14.95,2019-09-10 19:57:00,184 7th St, Austin,TX,73301 +249626,Wired Headphones,1,11.99,2019-09-15 18:23:00,508 Dogwood St, San Francisco,CA,94016 +249627,Flatscreen TV,1,300.0,2019-09-20 14:13:00,744 1st St, San Francisco,CA,94016 +249628,Wired Headphones,1,11.99,2019-09-01 13:22:00,535 Lake St, San Francisco,CA,94016 +249629,AAA Batteries (4-pack),1,2.99,2019-09-23 21:28:00,755 9th St, New York City,NY,10001 +249630,Google Phone,1,600.0,2019-09-06 11:01:00,628 Lake St, Boston,MA,02215 +249631,USB-C Charging Cable,1,11.95,2019-09-28 14:47:00,375 Park St, Atlanta,GA,30301 +249632,Flatscreen TV,1,300.0,2019-09-03 19:29:00,632 Wilson St, San Francisco,CA,94016 +249633,iPhone,1,700.0,2019-09-29 18:00:00,710 11th St, Boston,MA,02215 +249634,USB-C Charging Cable,1,11.95,2019-09-16 14:23:00,989 Washington St, San Francisco,CA,94016 +249635,iPhone,1,700.0,2019-09-30 15:57:00,425 River St, Portland,ME,04101 +249636,USB-C Charging Cable,1,11.95,2019-09-14 14:12:00,727 Walnut St, Atlanta,GA,30301 +249637,Bose SoundSport Headphones,1,99.99,2019-09-29 10:25:00,803 1st St, Austin,TX,73301 +249638,AA Batteries (4-pack),2,3.84,2019-09-26 13:36:00,321 West St, Boston,MA,02215 +249639,AAA Batteries (4-pack),2,2.99,2019-09-26 11:49:00,631 1st St, San Francisco,CA,94016 +249640,Lightning Charging Cable,1,14.95,2019-09-06 12:24:00,282 Pine St, New York City,NY,10001 +249641,34in Ultrawide Monitor,1,379.99,2019-09-22 23:29:00,853 Hill St, San Francisco,CA,94016 +249642,Flatscreen TV,1,300.0,2019-09-14 12:43:00,925 8th St, San Francisco,CA,94016 +249643,Flatscreen TV,1,300.0,2019-09-28 19:54:00,275 Forest St, San Francisco,CA,94016 +249644,USB-C Charging Cable,1,11.95,2019-09-28 21:13:00,432 Madison St, Los Angeles,CA,90001 +249645,Vareebadd Phone,1,400.0,2019-09-09 14:17:00,5 Church St, Los Angeles,CA,90001 +249646,AA Batteries (4-pack),3,3.84,2019-09-05 13:31:00,199 South St, Los Angeles,CA,90001 +249647,AAA Batteries (4-pack),2,2.99,2019-09-14 12:28:00,669 Lincoln St, Los Angeles,CA,90001 +249648,27in FHD Monitor,1,149.99,2019-09-26 15:01:00,708 Wilson St, Los Angeles,CA,90001 +249649,Lightning Charging Cable,1,14.95,2019-09-21 03:00:00,197 14th St, Dallas,TX,75001 +249650,USB-C Charging Cable,1,11.95,2019-09-11 00:34:00,567 Center St, San Francisco,CA,94016 +249651,ThinkPad Laptop,1,999.99,2019-09-08 20:41:00,584 Cedar St, New York City,NY,10001 +249652,34in Ultrawide Monitor,1,379.99,2019-09-03 01:16:00,815 Jefferson St, Atlanta,GA,30301 +249653,USB-C Charging Cable,1,11.95,2019-09-30 11:51:00,284 Willow St, Portland,ME,04101 +249654,AA Batteries (4-pack),2,3.84,2019-09-15 20:57:00,692 Johnson St, San Francisco,CA,94016 +249655,Lightning Charging Cable,1,14.95,2019-09-24 17:52:00,454 Chestnut St, Atlanta,GA,30301 +249656,Lightning Charging Cable,1,14.95,2019-09-08 20:23:00,315 13th St, Dallas,TX,75001 +249657,Lightning Charging Cable,1,14.95,2019-09-13 19:05:00,834 Main St, Portland,OR,97035 +249658,USB-C Charging Cable,1,11.95,2019-09-16 22:09:00,790 Main St, New York City,NY,10001 +249659,ThinkPad Laptop,1,999.99,2019-09-15 18:05:00,672 Hill St, Seattle,WA,98101 +249660,34in Ultrawide Monitor,1,379.99,2019-09-18 20:08:00,280 1st St, Seattle,WA,98101 +249661,Lightning Charging Cable,1,14.95,2019-09-18 20:47:00,33 14th St, New York City,NY,10001 +249662,Macbook Pro Laptop,1,1700.0,2019-09-26 16:35:00,773 5th St, Boston,MA,02215 +249663,Lightning Charging Cable,2,14.95,2019-09-24 15:05:00,772 12th St, Atlanta,GA,30301 +249663,Apple Airpods Headphones,1,150.0,2019-09-24 15:05:00,772 12th St, Atlanta,GA,30301 +249664,ThinkPad Laptop,1,999.99,2019-09-18 11:35:00,793 Park St, San Francisco,CA,94016 +249665,Wired Headphones,1,11.99,2019-09-17 22:16:00,640 Forest St, San Francisco,CA,94016 +249666,USB-C Charging Cable,1,11.95,2019-09-27 17:29:00,344 4th St, San Francisco,CA,94016 +249667,AAA Batteries (4-pack),1,2.99,2019-09-24 14:35:00,292 Chestnut St, Atlanta,GA,30301 +249668,USB-C Charging Cable,1,11.95,2019-09-11 09:22:00,559 Hill St, San Francisco,CA,94016 +249669,Apple Airpods Headphones,1,150.0,2019-09-28 12:46:00,92 1st St, Los Angeles,CA,90001 +249670,Google Phone,1,600.0,2019-09-17 20:10:00,195 Chestnut St, San Francisco,CA,94016 +249671,Bose SoundSport Headphones,1,99.99,2019-09-22 18:27:00,831 Hickory St, Los Angeles,CA,90001 +249672,Lightning Charging Cable,1,14.95,2019-09-28 16:54:00,969 Forest St, New York City,NY,10001 +249673,AA Batteries (4-pack),3,3.84,2019-09-07 12:46:00,362 Forest St, Dallas,TX,75001 +249674,27in FHD Monitor,1,149.99,2019-09-12 18:27:00,888 Sunset St, Los Angeles,CA,90001 +249675,Lightning Charging Cable,1,14.95,2019-09-07 15:34:00,444 Highland St, Austin,TX,73301 +249676,AAA Batteries (4-pack),2,2.99,2019-09-02 11:44:00,796 Highland St, Atlanta,GA,30301 +249676,AA Batteries (4-pack),1,3.84,2019-09-02 11:44:00,796 Highland St, Atlanta,GA,30301 +249677,AA Batteries (4-pack),1,3.84,2019-09-08 12:07:00,325 Dogwood St, San Francisco,CA,94016 +249678,USB-C Charging Cable,1,11.95,2019-09-30 22:18:00,979 10th St, Boston,MA,02215 +249679,ThinkPad Laptop,1,999.99,2019-09-29 19:18:00,807 Dogwood St, Boston,MA,02215 +249680,Wired Headphones,1,11.99,2019-09-28 18:20:00,753 10th St, Boston,MA,02215 +249681,27in 4K Gaming Monitor,1,389.99,2019-09-13 10:54:00,551 Jefferson St, Dallas,TX,75001 +249682,AAA Batteries (4-pack),2,2.99,2019-09-06 22:44:00,178 Madison St, Boston,MA,02215 +249683,Lightning Charging Cable,1,14.95,2019-09-24 12:59:00,41 Center St, Los Angeles,CA,90001 +249684,ThinkPad Laptop,1,999.99,2019-09-11 13:11:00,613 Cedar St, Boston,MA,02215 +249685,USB-C Charging Cable,2,11.95,2019-09-21 22:42:00,350 West St, New York City,NY,10001 +249686,27in FHD Monitor,1,149.99,2019-09-25 13:57:00,286 12th St, San Francisco,CA,94016 +249687,AA Batteries (4-pack),1,3.84,2019-09-04 09:54:00,820 Forest St, New York City,NY,10001 +249688,Lightning Charging Cable,1,14.95,2019-09-26 14:58:00,336 Wilson St, Atlanta,GA,30301 +249689,Wired Headphones,1,11.99,2019-09-02 19:57:00,331 Main St, Dallas,TX,75001 +249690,Apple Airpods Headphones,1,150.0,2019-09-20 21:34:00,624 Forest St, Portland,OR,97035 +249691,AAA Batteries (4-pack),1,2.99,2019-09-27 21:09:00,909 Washington St, Atlanta,GA,30301 +249692,Lightning Charging Cable,1,14.95,2019-09-20 15:17:00,307 9th St, Seattle,WA,98101 +249693,20in Monitor,1,109.99,2019-09-21 10:03:00,828 8th St, San Francisco,CA,94016 +249694,34in Ultrawide Monitor,1,379.99,2019-09-14 08:40:00,509 2nd St, San Francisco,CA,94016 +249695,USB-C Charging Cable,1,11.95,2019-09-10 14:51:00,963 Jefferson St, New York City,NY,10001 +249696,AAA Batteries (4-pack),1,2.99,2019-09-12 05:59:00,697 Hickory St, Boston,MA,02215 +249697,34in Ultrawide Monitor,1,379.99,2019-09-05 20:03:00,279 Wilson St, Los Angeles,CA,90001 +249698,27in FHD Monitor,1,149.99,2019-09-25 16:47:00,773 West St, Atlanta,GA,30301 +249699,27in FHD Monitor,1,149.99,2019-09-07 23:38:00,344 Dogwood St, Seattle,WA,98101 +249700,Google Phone,1,600.0,2019-09-09 18:17:00,624 12th St, Atlanta,GA,30301 +249700,USB-C Charging Cable,1,11.95,2019-09-09 18:17:00,624 12th St, Atlanta,GA,30301 +249701,Bose SoundSport Headphones,1,99.99,2019-09-17 19:00:00,914 Maple St, Portland,OR,97035 +249702,Wired Headphones,1,11.99,2019-09-03 07:02:00,584 4th St, Los Angeles,CA,90001 +249703,Flatscreen TV,1,300.0,2019-09-20 11:43:00,597 Elm St, Dallas,TX,75001 +249704,AAA Batteries (4-pack),1,2.99,2019-09-29 19:43:00,75 South St, Boston,MA,02215 +249705,USB-C Charging Cable,1,11.95,2019-09-21 09:53:00,883 Center St, San Francisco,CA,94016 +249706,USB-C Charging Cable,1,11.95,2019-09-21 15:31:00,961 Elm St, Austin,TX,73301 +249707,Apple Airpods Headphones,1,150.0,2019-09-08 14:29:00,925 Lakeview St, Los Angeles,CA,90001 +249708,Apple Airpods Headphones,1,150.0,2019-09-23 23:52:00,653 Maple St, Seattle,WA,98101 +249709,USB-C Charging Cable,1,11.95,2019-09-09 16:59:00,322 7th St, New York City,NY,10001 +249710,Wired Headphones,1,11.99,2019-09-27 12:35:00,54 North St, Austin,TX,73301 +249711,USB-C Charging Cable,1,11.95,2019-09-16 14:49:00,843 North St, San Francisco,CA,94016 +249712,Lightning Charging Cable,1,14.95,2019-09-27 15:18:00,544 5th St, Portland,OR,97035 +249713,iPhone,1,700.0,2019-09-19 19:09:00,806 Adams St, Seattle,WA,98101 +249714,AAA Batteries (4-pack),1,2.99,2019-09-05 10:57:00,939 Park St, Los Angeles,CA,90001 +249715,Google Phone,1,600.0,2019-09-02 19:09:00,654 Madison St, Atlanta,GA,30301 +249716,Apple Airpods Headphones,1,150.0,2019-09-22 14:13:00,802 11th St, San Francisco,CA,94016 +249717,Apple Airpods Headphones,1,150.0,2019-09-13 20:25:00,997 Ridge St, Seattle,WA,98101 +249718,AAA Batteries (4-pack),3,2.99,2019-09-27 14:07:00,333 2nd St, San Francisco,CA,94016 +249719,Flatscreen TV,1,300.0,2019-09-18 21:34:00,510 Lake St, San Francisco,CA,94016 +249719,AAA Batteries (4-pack),1,2.99,2019-09-18 21:34:00,510 Lake St, San Francisco,CA,94016 +249720,Vareebadd Phone,1,400.0,2019-09-19 09:35:00,154 Hickory St, New York City,NY,10001 +249721,Lightning Charging Cable,2,14.95,2019-09-08 17:53:00,625 1st St, San Francisco,CA,94016 +249722,Flatscreen TV,1,300.0,2019-09-29 22:13:00,737 Maple St, San Francisco,CA,94016 +249723,Wired Headphones,1,11.99,2019-09-29 22:13:00,265 14th St, Seattle,WA,98101 +249724,Apple Airpods Headphones,1,150.0,2019-09-05 11:13:00,66 West St, New York City,NY,10001 +249725,Lightning Charging Cable,1,14.95,2019-09-19 09:28:00,130 North St, Seattle,WA,98101 +249726,27in 4K Gaming Monitor,1,389.99,2019-09-05 18:56:00,686 Main St, Los Angeles,CA,90001 +249727,USB-C Charging Cable,1,11.95,2019-09-14 19:34:00,294 Pine St, San Francisco,CA,94016 +249728,USB-C Charging Cable,1,11.95,2019-09-14 21:45:00,62 2nd St, Boston,MA,02215 +249729,Bose SoundSport Headphones,1,99.99,2019-09-22 16:20:00,163 4th St, Austin,TX,73301 +249730,27in FHD Monitor,1,149.99,2019-09-28 17:38:00,956 Highland St, New York City,NY,10001 +249731,AAA Batteries (4-pack),1,2.99,2019-09-07 17:29:00,448 Lincoln St, San Francisco,CA,94016 +249732,Apple Airpods Headphones,1,150.0,2019-09-23 15:39:00,898 12th St, Los Angeles,CA,90001 +249733,Apple Airpods Headphones,1,150.0,2019-09-14 10:36:00,894 Madison St, San Francisco,CA,94016 +249734,AA Batteries (4-pack),2,3.84,2019-09-01 20:05:00,927 6th St, Los Angeles,CA,90001 +249735,27in 4K Gaming Monitor,1,389.99,2019-09-22 11:54:00,374 Pine St, New York City,NY,10001 +249736,AA Batteries (4-pack),1,3.84,2019-09-28 10:07:00,962 Main St, Boston,MA,02215 +249737,Lightning Charging Cable,1,14.95,2019-09-02 01:05:00,159 Johnson St, San Francisco,CA,94016 +249738,Wired Headphones,1,11.99,2019-09-27 12:18:00,601 9th St, San Francisco,CA,94016 +249739,AAA Batteries (4-pack),2,2.99,2019-09-05 00:30:00,869 Ridge St, Los Angeles,CA,90001 +249740,Wired Headphones,1,11.99,2019-09-05 11:43:00,103 Park St, San Francisco,CA,94016 +249741,Lightning Charging Cable,1,14.95,2019-09-03 17:17:00,475 9th St, Los Angeles,CA,90001 +249742,27in FHD Monitor,1,149.99,2019-09-26 00:50:00,849 Cherry St, New York City,NY,10001 +249743,27in FHD Monitor,1,149.99,2019-09-08 05:51:00,904 6th St, Dallas,TX,75001 +249744,Wired Headphones,1,11.99,2019-09-11 21:33:00,182 Pine St, San Francisco,CA,94016 +249745,Google Phone,1,600.0,2019-09-18 19:50:00,737 5th St, Dallas,TX,75001 +249746,Flatscreen TV,1,300.0,2019-09-12 18:14:00,4 Sunset St, Los Angeles,CA,90001 +249747,ThinkPad Laptop,1,999.99,2019-09-01 09:56:00,817 5th St, Atlanta,GA,30301 +249748,USB-C Charging Cable,1,11.95,2019-09-06 06:50:00,305 Church St, New York City,NY,10001 +249749,Flatscreen TV,1,300.0,2019-09-22 11:35:00,451 Walnut St, Seattle,WA,98101 +249750,USB-C Charging Cable,1,11.95,2019-09-27 12:03:00,822 4th St, Boston,MA,02215 +249750,AAA Batteries (4-pack),1,2.99,2019-09-27 12:03:00,822 4th St, Boston,MA,02215 +249751,27in FHD Monitor,1,149.99,2019-09-01 19:42:00,83 Elm St, San Francisco,CA,94016 +249752,AAA Batteries (4-pack),2,2.99,2019-09-25 17:30:00,396 Pine St, Boston,MA,02215 +249753,ThinkPad Laptop,1,999.99,2019-09-26 09:29:00,868 4th St, Los Angeles,CA,90001 +249754,27in FHD Monitor,1,149.99,2019-09-25 17:03:00,646 Park St, Los Angeles,CA,90001 +249755,AAA Batteries (4-pack),1,2.99,2019-09-30 08:04:00,266 13th St, New York City,NY,10001 +249756,Lightning Charging Cable,1,14.95,2019-09-14 13:01:00,514 Center St, Los Angeles,CA,90001 +249757,Bose SoundSport Headphones,1,99.99,2019-09-16 01:32:00,48 Ridge St, Los Angeles,CA,90001 +249758,LG Dryer,1,600.0,2019-09-03 14:29:00,648 Lake St, Portland,OR,97035 +249758,Lightning Charging Cable,1,14.95,2019-09-03 14:29:00,648 Lake St, Portland,OR,97035 +249759,Bose SoundSport Headphones,1,99.99,2019-09-03 18:27:00,720 14th St, Atlanta,GA,30301 +249760,iPhone,1,700.0,2019-09-27 21:36:00,282 South St, Boston,MA,02215 +249761,USB-C Charging Cable,1,11.95,2019-09-17 15:40:00,68 River St, San Francisco,CA,94016 +249762,34in Ultrawide Monitor,1,379.99,2019-09-23 08:23:00,273 Spruce St, Los Angeles,CA,90001 +249763,Lightning Charging Cable,1,14.95,2019-09-08 20:34:00,724 Washington St, Seattle,WA,98101 +249764,ThinkPad Laptop,1,999.99,2019-09-07 13:42:00,650 North St, Los Angeles,CA,90001 +249765,AA Batteries (4-pack),1,3.84,2019-09-07 11:26:00,28 Pine St, Los Angeles,CA,90001 +249766,iPhone,1,700.0,2019-09-30 17:21:00,864 Maple St, Los Angeles,CA,90001 +249766,Apple Airpods Headphones,1,150.0,2019-09-30 17:21:00,864 Maple St, Los Angeles,CA,90001 +249767,27in 4K Gaming Monitor,1,389.99,2019-09-18 08:08:00,25 14th St, San Francisco,CA,94016 +249768,Vareebadd Phone,1,400.0,2019-09-26 15:52:00,610 Forest St, New York City,NY,10001 +249769,Lightning Charging Cable,1,14.95,2019-09-25 11:47:00,659 Main St, Los Angeles,CA,90001 +249770,Apple Airpods Headphones,1,150.0,2019-09-06 20:13:00,97 10th St, Dallas,TX,75001 +249771,AAA Batteries (4-pack),4,2.99,2019-09-01 11:45:00,161 8th St, Atlanta,GA,30301 +249772,27in 4K Gaming Monitor,1,389.99,2019-09-11 17:38:00,872 Main St, Boston,MA,02215 +249773,Apple Airpods Headphones,1,150.0,2019-09-23 12:58:00,359 11th St, Los Angeles,CA,90001 +249774,AAA Batteries (4-pack),2,2.99,2019-09-04 10:22:00,337 Lake St, Los Angeles,CA,90001 +249774,Apple Airpods Headphones,1,150.0,2019-09-04 10:22:00,337 Lake St, Los Angeles,CA,90001 +249775,Bose SoundSport Headphones,1,99.99,2019-09-18 18:37:00,271 Dogwood St, Los Angeles,CA,90001 +249776,Bose SoundSport Headphones,1,99.99,2019-09-09 19:39:00,521 Wilson St, Seattle,WA,98101 +249777,Apple Airpods Headphones,1,150.0,2019-09-04 18:50:00,705 Willow St, Portland,OR,97035 +249778,Lightning Charging Cable,1,14.95,2019-09-30 20:50:00,331 Forest St, Atlanta,GA,30301 +249779,20in Monitor,1,109.99,2019-09-13 16:20:00,288 Wilson St, San Francisco,CA,94016 +249780,USB-C Charging Cable,1,11.95,2019-09-16 10:45:00,992 Jackson St, Los Angeles,CA,90001 +249781,USB-C Charging Cable,1,11.95,2019-09-28 19:53:00,115 Chestnut St, Austin,TX,73301 +249782,34in Ultrawide Monitor,1,379.99,2019-09-18 01:39:00,597 Lakeview St, San Francisco,CA,94016 +249783,AA Batteries (4-pack),1,3.84,2019-09-26 10:41:00,892 7th St, Austin,TX,73301 +249784,AAA Batteries (4-pack),2,2.99,2019-09-17 14:10:00,445 Wilson St, Austin,TX,73301 +249785,AAA Batteries (4-pack),1,2.99,2019-09-17 18:45:00,137 2nd St, Seattle,WA,98101 +249786,27in FHD Monitor,1,149.99,2019-09-06 09:22:00,839 14th St, Los Angeles,CA,90001 +249787,USB-C Charging Cable,1,11.95,2019-09-01 16:53:00,398 Cherry St, Portland,OR,97035 +249788,USB-C Charging Cable,1,11.95,2019-09-29 16:34:00,576 Lakeview St, San Francisco,CA,94016 +249789,Apple Airpods Headphones,1,150.0,2019-09-21 17:53:00,758 Washington St, Dallas,TX,75001 +249790,Lightning Charging Cable,1,14.95,2019-09-17 09:50:00,910 Cherry St, Atlanta,GA,30301 +249791,AAA Batteries (4-pack),1,2.99,2019-09-12 19:30:00,829 Forest St, San Francisco,CA,94016 +249792,27in FHD Monitor,1,149.99,2019-09-16 13:22:00,612 12th St, New York City,NY,10001 +249793,USB-C Charging Cable,2,11.95,2019-09-02 10:38:00,752 Forest St, Dallas,TX,75001 +249794,Macbook Pro Laptop,1,1700.0,2019-09-25 20:06:00,350 7th St, Austin,TX,73301 +249795,27in 4K Gaming Monitor,1,389.99,2019-09-05 13:03:00,135 9th St, Los Angeles,CA,90001 +249796,Bose SoundSport Headphones,1,99.99,2019-09-24 20:01:00,757 North St, Dallas,TX,75001 +249797,Lightning Charging Cable,1,14.95,2019-09-11 03:10:00,626 Lincoln St, Portland,OR,97035 +249798,Vareebadd Phone,1,400.0,2019-09-27 16:44:00,446 Jackson St, Los Angeles,CA,90001 +249799,Apple Airpods Headphones,1,150.0,2019-09-19 14:57:00,714 Madison St, New York City,NY,10001 +249800,iPhone,1,700.0,2019-09-27 16:46:00,404 South St, Portland,ME,04101 +249801,USB-C Charging Cable,1,11.95,2019-09-24 05:31:00,956 Forest St, Atlanta,GA,30301 +249802,Apple Airpods Headphones,1,150.0,2019-09-28 13:01:00,874 13th St, San Francisco,CA,94016 +249803,Lightning Charging Cable,1,14.95,2019-09-01 14:21:00,435 Lake St, San Francisco,CA,94016 +249804,USB-C Charging Cable,1,11.95,2019-09-06 19:38:00,891 South St, Los Angeles,CA,90001 +249805,USB-C Charging Cable,2,11.95,2019-09-28 13:59:00,952 Wilson St, San Francisco,CA,94016 +249806,USB-C Charging Cable,1,11.95,2019-09-28 18:20:00,683 14th St, New York City,NY,10001 +249807,Bose SoundSport Headphones,1,99.99,2019-09-24 19:56:00,571 7th St, Atlanta,GA,30301 +249808,Lightning Charging Cable,2,14.95,2019-09-03 12:30:00,388 South St, San Francisco,CA,94016 +249809,USB-C Charging Cable,1,11.95,2019-09-26 19:34:00,160 Lakeview St, San Francisco,CA,94016 +249810,AAA Batteries (4-pack),2,2.99,2019-09-20 15:52:00,292 Sunset St, Atlanta,GA,30301 +249811,Wired Headphones,1,11.99,2019-09-11 14:27:00,559 8th St, Portland,OR,97035 +249811,AA Batteries (4-pack),1,3.84,2019-09-11 14:27:00,559 8th St, Portland,OR,97035 +249812,Wired Headphones,1,11.99,2019-09-16 23:57:00,507 Meadow St, San Francisco,CA,94016 +249813,27in FHD Monitor,1,149.99,2019-09-03 21:05:00,949 8th St, Dallas,TX,75001 +249814,AA Batteries (4-pack),1,3.84,2019-09-11 08:47:00,261 Main St, San Francisco,CA,94016 +249815,Apple Airpods Headphones,1,150.0,2019-09-13 07:59:00,400 7th St, New York City,NY,10001 +249816,AA Batteries (4-pack),1,3.84,2019-09-06 12:55:00,732 5th St, San Francisco,CA,94016 +249817,USB-C Charging Cable,1,11.95,2019-09-27 13:07:00,965 Madison St, New York City,NY,10001 +249818,Lightning Charging Cable,1,14.95,2019-09-21 18:08:00,270 Willow St, Seattle,WA,98101 +249819,Apple Airpods Headphones,1,150.0,2019-09-03 13:32:00,27 Jefferson St, New York City,NY,10001 +249820,27in FHD Monitor,1,149.99,2019-09-08 09:56:00,825 11th St, New York City,NY,10001 +249821,34in Ultrawide Monitor,1,379.99,2019-09-16 10:26:00,135 5th St, Los Angeles,CA,90001 +249822,Macbook Pro Laptop,1,1700.0,2019-09-29 08:29:00,379 10th St, New York City,NY,10001 +249823,Macbook Pro Laptop,1,1700.0,2019-09-05 19:07:00,461 10th St, New York City,NY,10001 +249824,USB-C Charging Cable,1,11.95,2019-09-14 20:07:00,505 Spruce St, New York City,NY,10001 +249825,34in Ultrawide Monitor,1,379.99,2019-09-20 16:27:00,347 Walnut St, Austin,TX,73301 +249826,USB-C Charging Cable,1,11.95,2019-09-05 13:31:00,53 Pine St, Los Angeles,CA,90001 +249827,Vareebadd Phone,1,400.0,2019-09-01 13:14:00,827 Chestnut St, New York City,NY,10001 +249828,Lightning Charging Cable,1,14.95,2019-09-09 15:57:00,266 Dogwood St, Atlanta,GA,30301 +249829,AA Batteries (4-pack),1,3.84,2019-09-27 02:57:00,389 Main St, Boston,MA,02215 +249830,Google Phone,1,600.0,2019-09-20 17:49:00,58 Church St, Boston,MA,02215 +249831,Lightning Charging Cable,1,14.95,2019-09-22 16:42:00,10 Chestnut St, Atlanta,GA,30301 +249832,Apple Airpods Headphones,1,150.0,2019-09-12 04:02:00,69 Meadow St, Atlanta,GA,30301 +249833,USB-C Charging Cable,1,11.95,2019-09-24 11:11:00,267 Dogwood St, Atlanta,GA,30301 +249834,Lightning Charging Cable,1,14.95,2019-09-10 11:37:00,72 5th St, Portland,OR,97035 +249835,Wired Headphones,1,11.99,2019-09-02 00:41:00,243 Elm St, Atlanta,GA,30301 +249836,Lightning Charging Cable,1,14.95,2019-09-10 20:34:00,29 14th St, Boston,MA,02215 +249837,Lightning Charging Cable,1,14.95,2019-09-23 16:05:00,772 Dogwood St, Boston,MA,02215 +249838,27in 4K Gaming Monitor,1,389.99,2019-09-21 18:44:00,778 Wilson St, San Francisco,CA,94016 +249839,Wired Headphones,2,11.99,2019-09-09 11:19:00,569 11th St, Seattle,WA,98101 +249840,iPhone,1,700.0,2019-09-20 17:40:00,108 12th St, New York City,NY,10001 +249841,Bose SoundSport Headphones,1,99.99,2019-09-01 14:57:00,429 Center St, Los Angeles,CA,90001 +249842,Apple Airpods Headphones,1,150.0,2019-09-23 07:57:00,911 9th St, San Francisco,CA,94016 +249843,AAA Batteries (4-pack),2,2.99,2019-09-19 13:44:00,851 Jackson St, Los Angeles,CA,90001 +249844,34in Ultrawide Monitor,1,379.99,2019-09-15 16:05:00,793 Ridge St, Portland,OR,97035 +249845,27in FHD Monitor,1,149.99,2019-09-07 18:04:00,447 Pine St, Boston,MA,02215 +249846,Wired Headphones,1,11.99,2019-09-13 11:21:00,130 Wilson St, Seattle,WA,98101 +249847,27in 4K Gaming Monitor,1,389.99,2019-09-26 10:44:00,950 Adams St, Boston,MA,02215 +249848,Macbook Pro Laptop,1,1700.0,2019-09-23 10:24:00,66 Park St, New York City,NY,10001 +249849,Macbook Pro Laptop,1,1700.0,2019-09-06 22:25:00,768 Lakeview St, Portland,OR,97035 +249850,USB-C Charging Cable,1,11.95,2019-09-03 11:10:00,767 Main St, San Francisco,CA,94016 +249851,AAA Batteries (4-pack),1,2.99,2019-09-26 12:25:00,756 12th St, Portland,OR,97035 +249852,Lightning Charging Cable,1,14.95,2019-09-12 13:37:00,225 Hickory St, Seattle,WA,98101 +249853,Wired Headphones,1,11.99,2019-09-13 09:20:00,220 Forest St, San Francisco,CA,94016 +249854,iPhone,1,700.0,2019-09-26 18:43:00,675 Jackson St, Los Angeles,CA,90001 +249855,USB-C Charging Cable,1,11.95,2019-09-26 22:36:00,606 Lakeview St, Austin,TX,73301 +249856,Flatscreen TV,2,300.0,2019-09-07 23:53:00,444 8th St, Atlanta,GA,30301 +249857,Apple Airpods Headphones,1,150.0,2019-09-05 09:28:00,493 Jefferson St, Los Angeles,CA,90001 +249858,AA Batteries (4-pack),1,3.84,2019-09-25 10:54:00,981 Lincoln St, San Francisco,CA,94016 +249859,iPhone,1,700.0,2019-09-18 16:51:00,252 River St, San Francisco,CA,94016 +249860,AA Batteries (4-pack),1,3.84,2019-09-15 22:38:00,449 5th St, San Francisco,CA,94016 +249861,iPhone,1,700.0,2019-09-05 22:12:00,399 Lincoln St, Los Angeles,CA,90001 +249861,Lightning Charging Cable,1,14.95,2019-09-05 22:12:00,399 Lincoln St, Los Angeles,CA,90001 +249862,Wired Headphones,1,11.99,2019-09-20 10:29:00,80 Jefferson St, Dallas,TX,75001 +249863,27in 4K Gaming Monitor,1,389.99,2019-09-14 19:16:00,698 Dogwood St, Austin,TX,73301 +249864,27in FHD Monitor,1,149.99,2019-09-19 18:25:00,560 Cherry St, San Francisco,CA,94016 +249865,USB-C Charging Cable,1,11.95,2019-09-01 22:35:00,349 Park St, Portland,ME,04101 +249866,ThinkPad Laptop,1,999.99,2019-09-15 15:43:00,349 6th St, Los Angeles,CA,90001 +249867,Vareebadd Phone,1,400.0,2019-09-03 12:03:00,503 Cedar St, Seattle,WA,98101 +249868,Bose SoundSport Headphones,1,99.99,2019-09-29 15:13:00,644 9th St, Portland,OR,97035 +249869,Wired Headphones,1,11.99,2019-09-04 14:32:00,547 7th St, Austin,TX,73301 +249870,Bose SoundSport Headphones,1,99.99,2019-09-10 11:42:00,837 Adams St, Seattle,WA,98101 +249871,AAA Batteries (4-pack),2,2.99,2019-09-19 09:21:00,238 Pine St, San Francisco,CA,94016 +249872,iPhone,1,700.0,2019-09-20 22:23:00,98 Park St, Austin,TX,73301 +249873,27in FHD Monitor,1,149.99,2019-09-20 20:58:00,426 Adams St, Boston,MA,02215 +249874,Flatscreen TV,1,300.0,2019-09-04 18:44:00,389 Main St, Boston,MA,02215 +249875,Apple Airpods Headphones,1,150.0,2019-09-27 16:31:00,171 Hill St, Atlanta,GA,30301 +249876,AAA Batteries (4-pack),1,2.99,2019-09-06 18:38:00,293 Cedar St, Los Angeles,CA,90001 +249877,34in Ultrawide Monitor,1,379.99,2019-09-24 21:51:00,549 Dogwood St, Los Angeles,CA,90001 +249878,Flatscreen TV,1,300.0,2019-09-25 16:11:00,963 Spruce St, New York City,NY,10001 +249879,Lightning Charging Cable,1,14.95,2019-09-02 11:07:00,550 Highland St, San Francisco,CA,94016 +249880,Apple Airpods Headphones,1,150.0,2019-09-11 10:48:00,985 12th St, Boston,MA,02215 +249881,27in FHD Monitor,1,149.99,2019-09-05 11:56:00,133 Lakeview St, New York City,NY,10001 +249882,Lightning Charging Cable,1,14.95,2019-09-19 20:58:00,319 Walnut St, Seattle,WA,98101 +249883,AAA Batteries (4-pack),1,2.99,2019-09-13 10:26:00,676 Johnson St, Los Angeles,CA,90001 +249884,Google Phone,1,600.0,2019-09-06 20:45:00,156 Ridge St, Los Angeles,CA,90001 +249884,USB-C Charging Cable,1,11.95,2019-09-06 20:45:00,156 Ridge St, Los Angeles,CA,90001 +249885,Wired Headphones,2,11.99,2019-09-20 13:14:00,644 6th St, Atlanta,GA,30301 +249886,Macbook Pro Laptop,1,1700.0,2019-09-28 13:56:00,528 9th St, Los Angeles,CA,90001 +249887,AAA Batteries (4-pack),1,2.99,2019-09-27 12:53:00,915 Chestnut St, Dallas,TX,75001 +249888,USB-C Charging Cable,1,11.95,2019-09-26 20:00:00,522 2nd St, Dallas,TX,75001 +249889,Wired Headphones,1,11.99,2019-09-17 14:48:00,505 Jackson St, Boston,MA,02215 +249890,27in FHD Monitor,1,149.99,2019-09-14 20:32:00,336 Washington St, New York City,NY,10001 +249891,Macbook Pro Laptop,1,1700.0,2019-09-09 09:48:00,177 Center St, Portland,OR,97035 +249892,Apple Airpods Headphones,1,150.0,2019-09-12 22:49:00,5 Hickory St, Boston,MA,02215 +249893,AA Batteries (4-pack),1,3.84,2019-09-15 11:52:00,947 South St, Atlanta,GA,30301 +249894,Apple Airpods Headphones,1,150.0,2019-09-08 00:31:00,729 6th St, New York City,NY,10001 +249895,34in Ultrawide Monitor,1,379.99,2019-09-19 22:14:00,901 South St, San Francisco,CA,94016 +249896,Wired Headphones,1,11.99,2019-09-06 18:42:00,228 Washington St, San Francisco,CA,94016 +249897,Macbook Pro Laptop,1,1700.0,2019-09-14 19:49:00,278 Forest St, Boston,MA,02215 +249898,Apple Airpods Headphones,1,150.0,2019-09-29 13:23:00,747 North St, Seattle,WA,98101 +249899,Google Phone,1,600.0,2019-09-03 21:28:00,975 Pine St, New York City,NY,10001 +249899,USB-C Charging Cable,1,11.95,2019-09-03 21:28:00,975 Pine St, New York City,NY,10001 +249900,USB-C Charging Cable,2,11.95,2019-09-14 11:54:00,98 Sunset St, New York City,NY,10001 +249901,Wired Headphones,1,11.99,2019-09-11 15:54:00,443 Main St, New York City,NY,10001 +249902,34in Ultrawide Monitor,1,379.99,2019-09-29 20:20:00,811 Washington St, San Francisco,CA,94016 +249903,AAA Batteries (4-pack),1,2.99,2019-09-08 18:33:00,814 Madison St, San Francisco,CA,94016 +249904,ThinkPad Laptop,1,999.99,2019-09-29 11:37:00,800 8th St, San Francisco,CA,94016 +249905,34in Ultrawide Monitor,1,379.99,2019-09-05 10:05:00,806 Willow St, Atlanta,GA,30301 +249906,Lightning Charging Cable,1,14.95,2019-09-15 13:19:00,106 Wilson St, Portland,OR,97035 +249907,iPhone,1,700.0,2019-09-16 17:27:00,59 Ridge St, Boston,MA,02215 +249908,Flatscreen TV,1,300.0,2019-09-27 08:34:00,667 Spruce St, Atlanta,GA,30301 +249909,AAA Batteries (4-pack),1,2.99,2019-09-13 16:52:00,224 Meadow St, New York City,NY,10001 +249910,AAA Batteries (4-pack),1,2.99,2019-09-09 18:34:00,295 Meadow St, San Francisco,CA,94016 +249911,Apple Airpods Headphones,1,150.0,2019-09-15 19:00:00,75 Maple St, Boston,MA,02215 +249912,Bose SoundSport Headphones,1,99.99,2019-09-26 00:54:00,151 Park St, Atlanta,GA,30301 +249913,USB-C Charging Cable,1,11.95,2019-09-19 13:45:00,589 Jefferson St, Los Angeles,CA,90001 +249914,Bose SoundSport Headphones,1,99.99,2019-09-20 22:13:00,901 Cherry St, Austin,TX,73301 +249915,Google Phone,1,600.0,2019-09-16 19:00:00,146 Hickory St, Dallas,TX,75001 +249916,Wired Headphones,1,11.99,2019-09-27 21:16:00,119 Jackson St, Los Angeles,CA,90001 +249917,iPhone,1,700.0,2019-09-22 15:51:00,969 Highland St, Los Angeles,CA,90001 +249918,AAA Batteries (4-pack),1,2.99,2019-09-16 22:00:00,871 5th St, Portland,OR,97035 +249919,Wired Headphones,1,11.99,2019-09-08 07:53:00,822 North St, Los Angeles,CA,90001 +249920,Bose SoundSport Headphones,1,99.99,2019-09-13 06:43:00,65 Hickory St, Austin,TX,73301 +249921,Bose SoundSport Headphones,1,99.99,2019-09-09 14:06:00,20 Willow St, Boston,MA,02215 +249922,Vareebadd Phone,1,400.0,2019-09-01 08:39:00,963 Elm St, New York City,NY,10001 +249923,ThinkPad Laptop,1,999.99,2019-09-11 10:42:00,112 Maple St, San Francisco,CA,94016 +249924,ThinkPad Laptop,1,999.99,2019-09-14 00:39:00,206 Walnut St, Atlanta,GA,30301 +249925,Lightning Charging Cable,1,14.95,2019-09-10 08:58:00,318 Hill St, San Francisco,CA,94016 +249926,ThinkPad Laptop,1,999.99,2019-09-11 13:40:00,681 Lincoln St, Atlanta,GA,30301 +249927,Wired Headphones,1,11.99,2019-09-19 07:45:00,744 Elm St, San Francisco,CA,94016 +249928,Apple Airpods Headphones,1,150.0,2019-09-10 18:52:00,681 North St, New York City,NY,10001 +249929,34in Ultrawide Monitor,1,379.99,2019-09-10 17:00:00,677 Cedar St, Los Angeles,CA,90001 +249930,AA Batteries (4-pack),1,3.84,2019-09-08 14:07:00,969 Meadow St, New York City,NY,10001 +249931,Google Phone,1,600.0,2019-09-18 15:47:00,29 Washington St, Los Angeles,CA,90001 +249932,27in FHD Monitor,1,149.99,2019-09-27 20:27:00,857 Hill St, San Francisco,CA,94016 +249933,27in FHD Monitor,1,149.99,2019-09-20 19:21:00,77 Elm St, Austin,TX,73301 +249934,Bose SoundSport Headphones,1,99.99,2019-09-29 00:12:00,712 Spruce St, New York City,NY,10001 +249935,AA Batteries (4-pack),1,3.84,2019-09-12 00:22:00,794 Highland St, Seattle,WA,98101 +249936,34in Ultrawide Monitor,1,379.99,2019-09-20 19:56:00,421 Cedar St, Boston,MA,02215 +249937,Flatscreen TV,1,300.0,2019-09-15 16:34:00,774 8th St, Dallas,TX,75001 +249938,AAA Batteries (4-pack),1,2.99,2019-09-15 22:45:00,245 4th St, San Francisco,CA,94016 +249939,Wired Headphones,1,11.99,2019-09-25 20:30:00,598 Sunset St, Seattle,WA,98101 +249940,Macbook Pro Laptop,1,1700.0,2019-09-02 21:25:00,932 Chestnut St, Seattle,WA,98101 +249941,AA Batteries (4-pack),2,3.84,2019-09-06 15:22:00,184 Meadow St, Atlanta,GA,30301 +249942,27in FHD Monitor,1,149.99,2019-09-09 14:05:00,618 11th St, Los Angeles,CA,90001 +249943,20in Monitor,1,109.99,2019-09-06 03:22:00,262 Johnson St, Dallas,TX,75001 +249944,USB-C Charging Cable,1,11.95,2019-09-11 12:49:00,654 14th St, Portland,OR,97035 +249945,Apple Airpods Headphones,1,150.0,2019-09-10 18:09:00,822 West St, Los Angeles,CA,90001 +249946,AA Batteries (4-pack),1,3.84,2019-09-27 17:30:00,102 9th St, Dallas,TX,75001 +249947,AA Batteries (4-pack),1,3.84,2019-09-15 17:41:00,336 Lakeview St, Boston,MA,02215 +249948,20in Monitor,1,109.99,2019-09-19 11:24:00,204 11th St, Portland,OR,97035 +249949,Wired Headphones,1,11.99,2019-09-27 19:54:00,573 Wilson St, Seattle,WA,98101 +249950,Apple Airpods Headphones,1,150.0,2019-09-26 17:43:00,134 Spruce St, Los Angeles,CA,90001 +249951,20in Monitor,1,109.99,2019-09-07 20:37:00,418 Center St, San Francisco,CA,94016 +249952,AAA Batteries (4-pack),2,2.99,2019-09-27 17:23:00,363 Ridge St, San Francisco,CA,94016 +249953,Bose SoundSport Headphones,1,99.99,2019-09-14 12:56:00,821 River St, Los Angeles,CA,90001 +249954,Apple Airpods Headphones,1,150.0,2019-09-06 12:34:00,242 4th St, Atlanta,GA,30301 +249955,AA Batteries (4-pack),1,3.84,2019-09-19 15:58:00,38 Walnut St, New York City,NY,10001 +249956,Apple Airpods Headphones,1,150.0,2019-09-23 14:34:00,70 2nd St, Dallas,TX,75001 +249957,Apple Airpods Headphones,1,150.0,2019-09-17 00:03:00,41 Madison St, New York City,NY,10001 +249958,Apple Airpods Headphones,1,150.0,2019-09-05 11:58:00,584 8th St, Austin,TX,73301 +249959,34in Ultrawide Monitor,1,379.99,2019-09-03 19:19:00,497 Chestnut St, San Francisco,CA,94016 +249960,Lightning Charging Cable,1,14.95,2019-09-04 06:38:00,30 Maple St, Dallas,TX,75001 +249961,AAA Batteries (4-pack),2,2.99,2019-09-18 23:47:00,262 Hill St, Dallas,TX,75001 +249962,AAA Batteries (4-pack),2,2.99,2019-09-04 22:51:00,126 Adams St, Boston,MA,02215 +249963,Apple Airpods Headphones,1,150.0,2019-09-25 19:37:00,977 Cherry St, San Francisco,CA,94016 +249964,USB-C Charging Cable,1,11.95,2019-09-02 20:23:00,284 Adams St, San Francisco,CA,94016 +249965,USB-C Charging Cable,1,11.95,2019-09-05 12:48:00,256 1st St, San Francisco,CA,94016 +249966,ThinkPad Laptop,1,999.99,2019-09-12 22:13:00,481 Ridge St, San Francisco,CA,94016 +249967,20in Monitor,1,109.99,2019-09-13 12:14:00,227 Pine St, Atlanta,GA,30301 +249968,Lightning Charging Cable,1,14.95,2019-09-02 07:33:00,662 Walnut St, Los Angeles,CA,90001 +249969,Lightning Charging Cable,2,14.95,2019-09-27 13:46:00,265 Meadow St, San Francisco,CA,94016 +249970,34in Ultrawide Monitor,1,379.99,2019-09-29 17:38:00,318 River St, Austin,TX,73301 +249971,27in FHD Monitor,1,149.99,2019-09-29 14:29:00,55 Madison St, Atlanta,GA,30301 +249972,Wired Headphones,1,11.99,2019-09-30 19:26:00,51 Jefferson St, Seattle,WA,98101 +249973,Wired Headphones,1,11.99,2019-09-19 20:07:00,638 8th St, Austin,TX,73301 +249974,AAA Batteries (4-pack),1,2.99,2019-09-18 22:11:00,401 Center St, San Francisco,CA,94016 +249975,Bose SoundSport Headphones,1,99.99,2019-09-17 11:57:00,395 Hill St, Seattle,WA,98101 +249976,Google Phone,1,600.0,2019-09-04 13:50:00,379 Cedar St, Atlanta,GA,30301 +249976,Wired Headphones,1,11.99,2019-09-04 13:50:00,379 Cedar St, Atlanta,GA,30301 +249977,Lightning Charging Cable,1,14.95,2019-09-24 13:56:00,555 14th St, San Francisco,CA,94016 +249978,AA Batteries (4-pack),1,3.84,2019-09-09 15:28:00,161 West St, Portland,OR,97035 +249979,USB-C Charging Cable,1,11.95,2019-09-29 14:18:00,506 Wilson St, Austin,TX,73301 +249980,Wired Headphones,1,11.99,2019-09-27 23:21:00,17 11th St, Seattle,WA,98101 +249981,AAA Batteries (4-pack),1,2.99,2019-09-05 12:13:00,726 4th St, New York City,NY,10001 +249982,Apple Airpods Headphones,1,150.0,2019-09-30 10:22:00,442 Pine St, San Francisco,CA,94016 +249983,Flatscreen TV,1,300.0,2019-09-23 14:06:00,75 Ridge St, Portland,OR,97035 +249984,Wired Headphones,1,11.99,2019-09-30 11:11:00,164 Willow St, San Francisco,CA,94016 +249985,Lightning Charging Cable,1,14.95,2019-09-20 22:49:00,483 Spruce St, Seattle,WA,98101 +249986,Lightning Charging Cable,1,14.95,2019-09-29 20:30:00,928 Main St, San Francisco,CA,94016 +249987,27in FHD Monitor,1,149.99,2019-09-10 06:57:00,329 Sunset St, Los Angeles,CA,90001 +249988,20in Monitor,1,109.99,2019-09-13 09:11:00,594 Main St, Boston,MA,02215 +249989,AA Batteries (4-pack),1,3.84,2019-09-24 15:20:00,989 Sunset St, Boston,MA,02215 +249990,Wired Headphones,1,11.99,2019-09-24 11:01:00,472 Cherry St, Los Angeles,CA,90001 +249991,20in Monitor,1,109.99,2019-09-03 11:39:00,423 10th St, San Francisco,CA,94016 +249992,Bose SoundSport Headphones,1,99.99,2019-09-28 16:09:00,641 1st St, New York City,NY,10001 +249992,Macbook Pro Laptop,1,1700.0,2019-09-28 16:09:00,641 1st St, New York City,NY,10001 +249993,Macbook Pro Laptop,1,1700.0,2019-09-09 20:17:00,459 Chestnut St, Boston,MA,02215 +249994,USB-C Charging Cable,1,11.95,2019-09-06 10:00:00,105 Lincoln St, San Francisco,CA,94016 +249995,ThinkPad Laptop,1,999.99,2019-09-26 17:41:00,872 1st St, Atlanta,GA,30301 +249996,Lightning Charging Cable,1,14.95,2019-09-27 22:29:00,362 Sunset St, San Francisco,CA,94016 +249997,Wired Headphones,1,11.99,2019-09-27 21:04:00,856 River St, Atlanta,GA,30301 +249998,AA Batteries (4-pack),1,3.84,2019-09-30 09:26:00,651 Highland St, Portland,OR,97035 +249999,Wired Headphones,2,11.99,2019-09-17 23:39:00,851 Ridge St, Dallas,TX,75001 +250000,Wired Headphones,1,11.99,2019-09-05 23:26:00,680 14th St, Boston,MA,02215 +250001,27in 4K Gaming Monitor,1,389.99,2019-09-26 17:59:00,259 1st St, Dallas,TX,75001 +250002,Bose SoundSport Headphones,1,99.99,2019-09-24 18:21:00,532 14th St, Seattle,WA,98101 +250003,Apple Airpods Headphones,1,150.0,2019-09-12 17:03:00,637 Johnson St, San Francisco,CA,94016 +250004,Apple Airpods Headphones,1,150.0,2019-09-14 21:45:00,179 Adams St, Dallas,TX,75001 +250005,Google Phone,1,600.0,2019-09-08 00:58:00,360 Hill St, San Francisco,CA,94016 +250005,USB-C Charging Cable,1,11.95,2019-09-08 00:58:00,360 Hill St, San Francisco,CA,94016 +250006,Wired Headphones,1,11.99,2019-09-20 16:31:00,744 Lakeview St, San Francisco,CA,94016 +250007,USB-C Charging Cable,1,11.95,2019-09-10 17:03:00,245 Willow St, San Francisco,CA,94016 +250008,Flatscreen TV,1,300.0,2019-09-30 11:01:00,33 Pine St, Portland,ME,04101 +250009,AA Batteries (4-pack),1,3.84,2019-09-09 09:33:00,956 Meadow St, Boston,MA,02215 +250009,AAA Batteries (4-pack),1,2.99,2019-09-09 09:33:00,956 Meadow St, Boston,MA,02215 +250010,LG Dryer,1,600.0,2019-09-23 09:32:00,262 7th St, Boston,MA,02215 +250011,Google Phone,1,600.0,2019-09-10 15:45:00,190 Willow St, New York City,NY,10001 +250012,Flatscreen TV,1,300.0,2019-09-08 17:25:00,663 Maple St, Los Angeles,CA,90001 +250013,27in 4K Gaming Monitor,1,389.99,2019-09-20 12:40:00,515 Cherry St, Los Angeles,CA,90001 +250014,USB-C Charging Cable,1,11.95,2019-09-19 19:45:00,453 10th St, Atlanta,GA,30301 +250015,AA Batteries (4-pack),1,3.84,2019-09-10 13:49:00,48 6th St, New York City,NY,10001 +250016,Apple Airpods Headphones,1,150.0,2019-09-26 20:20:00,724 Hickory St, Dallas,TX,75001 +250017,Lightning Charging Cable,1,14.95,2019-09-21 01:09:00,432 Wilson St, Los Angeles,CA,90001 +250018,iPhone,1,700.0,2019-09-14 12:16:00,516 Church St, Austin,TX,73301 +250019,AA Batteries (4-pack),1,3.84,2019-09-28 18:45:00,819 Hill St, Seattle,WA,98101 +250020,27in 4K Gaming Monitor,1,389.99,2019-09-13 17:00:00,444 Jackson St, Portland,OR,97035 +250021,AAA Batteries (4-pack),1,2.99,2019-09-15 14:42:00,809 Forest St, Austin,TX,73301 +250022,Bose SoundSport Headphones,1,99.99,2019-09-09 13:58:00,319 Hickory St, Boston,MA,02215 +250023,Apple Airpods Headphones,1,150.0,2019-09-06 23:05:00,645 Sunset St, New York City,NY,10001 +250024,Lightning Charging Cable,1,14.95,2019-09-12 17:39:00,847 6th St, Dallas,TX,75001 +250025,Bose SoundSport Headphones,1,99.99,2019-09-22 13:29:00,981 4th St, San Francisco,CA,94016 +250026,Apple Airpods Headphones,1,150.0,2019-09-21 07:13:00,523 Washington St, Dallas,TX,75001 +250027,Lightning Charging Cable,1,14.95,2019-09-12 15:37:00,269 Walnut St, Boston,MA,02215 +250028,Macbook Pro Laptop,1,1700.0,2019-09-25 01:07:00,80 Madison St, Los Angeles,CA,90001 +250029,AAA Batteries (4-pack),1,2.99,2019-09-20 12:49:00,443 Wilson St, Seattle,WA,98101 +250030,20in Monitor,1,109.99,2019-09-06 07:44:00,545 Park St, San Francisco,CA,94016 +250031,USB-C Charging Cable,1,11.95,2019-09-15 12:03:00,405 Chestnut St, New York City,NY,10001 +250032,Google Phone,1,600.0,2019-09-23 21:41:00,461 4th St, New York City,NY,10001 +250033,Apple Airpods Headphones,1,150.0,2019-09-13 21:07:00,346 Main St, Atlanta,GA,30301 +250034,USB-C Charging Cable,1,11.95,2019-09-30 16:34:00,122 Main St, Boston,MA,02215 +250035,Vareebadd Phone,1,400.0,2019-09-27 14:50:00,12 Cedar St, San Francisco,CA,94016 +250036,AAA Batteries (4-pack),3,2.99,2019-09-11 12:36:00,924 Madison St, Los Angeles,CA,90001 +250037,AAA Batteries (4-pack),1,2.99,2019-09-21 21:55:00,358 Church St, New York City,NY,10001 +250038,AAA Batteries (4-pack),2,2.99,2019-09-19 14:02:00,473 8th St, Atlanta,GA,30301 +250039,Wired Headphones,1,11.99,2019-09-13 11:00:00,87 6th St, Atlanta,GA,30301 +250040,Bose SoundSport Headphones,1,99.99,2019-09-19 13:53:00,403 9th St, New York City,NY,10001 +250041,20in Monitor,1,109.99,2019-09-02 22:03:00,887 Willow St, Los Angeles,CA,90001 +250042,AAA Batteries (4-pack),1,2.99,2019-09-15 16:13:00,818 Church St, Boston,MA,02215 +250043,Google Phone,1,600.0,2019-09-27 14:20:00,247 South St, Los Angeles,CA,90001 +250044,iPhone,1,700.0,2019-09-26 14:49:00,458 South St, San Francisco,CA,94016 +250045,AA Batteries (4-pack),2,3.84,2019-09-07 01:38:00,475 Madison St, New York City,NY,10001 +250046,Apple Airpods Headphones,1,150.0,2019-09-07 17:10:00,931 Wilson St, Seattle,WA,98101 +250047,Bose SoundSport Headphones,1,99.99,2019-09-24 08:55:00,594 9th St, Atlanta,GA,30301 +250048,Flatscreen TV,1,300.0,2019-09-29 07:03:00,11 Lake St, Seattle,WA,98101 +250049,20in Monitor,1,109.99,2019-09-11 09:22:00,320 8th St, Dallas,TX,75001 +250050,AAA Batteries (4-pack),5,2.99,2019-09-21 14:18:00,517 North St, San Francisco,CA,94016 +250051,Bose SoundSport Headphones,1,99.99,2019-09-15 15:30:00,828 Ridge St, Portland,OR,97035 +250052,AAA Batteries (4-pack),1,2.99,2019-09-25 18:47:00,624 9th St, Los Angeles,CA,90001 +250053,20in Monitor,1,109.99,2019-09-12 02:39:00,666 Spruce St, Los Angeles,CA,90001 +250054,USB-C Charging Cable,1,11.95,2019-09-22 11:52:00,590 Cedar St, San Francisco,CA,94016 +250055,Lightning Charging Cable,1,14.95,2019-09-15 10:54:00,61 Meadow St, Seattle,WA,98101 +250056,USB-C Charging Cable,1,11.95,2019-09-16 12:52:00,87 Highland St, Los Angeles,CA,90001 +250057,AA Batteries (4-pack),1,3.84,2019-09-26 06:49:00,597 8th St, San Francisco,CA,94016 +250058,Wired Headphones,1,11.99,2019-09-13 21:53:00,117 Wilson St, San Francisco,CA,94016 +250059,iPhone,1,700.0,2019-09-28 13:23:00,901 1st St, New York City,NY,10001 +250060,AAA Batteries (4-pack),2,2.99,2019-09-17 20:54:00,674 14th St, Atlanta,GA,30301 +250061,AA Batteries (4-pack),2,3.84,2019-09-02 15:03:00,217 11th St, New York City,NY,10001 +250062,Lightning Charging Cable,1,14.95,2019-09-15 20:54:00,565 Hill St, Portland,OR,97035 +250063,Lightning Charging Cable,1,14.95,2019-09-16 12:38:00,319 8th St, Los Angeles,CA,90001 +250064,Apple Airpods Headphones,1,150.0,2019-09-03 06:47:00,470 Cherry St, San Francisco,CA,94016 +250065,Lightning Charging Cable,1,14.95,2019-09-29 23:56:00,93 Meadow St, Los Angeles,CA,90001 +250066,Wired Headphones,1,11.99,2019-09-19 07:34:00,561 Pine St, Austin,TX,73301 +250067,Google Phone,1,600.0,2019-09-03 17:21:00,316 Hill St, Dallas,TX,75001 +250068,Wired Headphones,1,11.99,2019-09-26 20:29:00,928 Park St, San Francisco,CA,94016 +250069,AAA Batteries (4-pack),1,2.99,2019-09-13 05:37:00,157 12th St, Atlanta,GA,30301 +250070,Bose SoundSport Headphones,1,99.99,2019-09-05 21:38:00,21 Center St, Seattle,WA,98101 +250071,Wired Headphones,1,11.99,2019-09-28 21:02:00,444 Lincoln St, San Francisco,CA,94016 +250072,27in FHD Monitor,1,149.99,2019-09-04 23:13:00,664 Highland St, Dallas,TX,75001 +250073,27in FHD Monitor,1,149.99,2019-09-01 11:14:00,124 Ridge St, New York City,NY,10001 +250074,27in 4K Gaming Monitor,1,389.99,2019-09-15 15:42:00,169 Lake St, Boston,MA,02215 +250075,Bose SoundSport Headphones,1,99.99,2019-09-14 18:48:00,915 Meadow St, Seattle,WA,98101 +250076,Lightning Charging Cable,1,14.95,2019-09-10 13:53:00,554 Highland St, Austin,TX,73301 +250077,Apple Airpods Headphones,1,150.0,2019-09-01 10:24:00,638 Hill St, San Francisco,CA,94016 +250078,Google Phone,1,600.0,2019-09-04 21:44:00,924 Main St, San Francisco,CA,94016 +250079,Apple Airpods Headphones,1,150.0,2019-09-06 13:56:00,372 Washington St, Seattle,WA,98101 +250080,USB-C Charging Cable,1,11.95,2019-09-28 21:24:00,753 10th St, San Francisco,CA,94016 +250081,Apple Airpods Headphones,1,150.0,2019-09-04 12:56:00,61 Adams St, San Francisco,CA,94016 +250082,AA Batteries (4-pack),1,3.84,2019-09-13 11:40:00,366 Lake St, Portland,OR,97035 +250083,AAA Batteries (4-pack),1,2.99,2019-09-05 17:38:00,420 7th St, New York City,NY,10001 +250084,Bose SoundSport Headphones,1,99.99,2019-09-17 23:07:00,640 Meadow St, Atlanta,GA,30301 +250085,AAA Batteries (4-pack),2,2.99,2019-09-09 20:15:00,186 4th St, Boston,MA,02215 +250086,USB-C Charging Cable,1,11.95,2019-09-12 18:55:00,916 River St, Atlanta,GA,30301 +250087,Apple Airpods Headphones,1,150.0,2019-09-08 22:35:00,338 Lakeview St, Boston,MA,02215 +250088,Apple Airpods Headphones,1,150.0,2019-09-29 20:32:00,678 14th St, San Francisco,CA,94016 +250089,AAA Batteries (4-pack),1,2.99,2019-09-25 10:58:00,807 Forest St, New York City,NY,10001 +250090,Bose SoundSport Headphones,1,99.99,2019-09-06 19:06:00,813 West St, Seattle,WA,98101 +250091,Apple Airpods Headphones,1,150.0,2019-09-29 23:31:00,914 Hickory St, Dallas,TX,75001 +250092,27in FHD Monitor,1,149.99,2019-09-27 19:11:00,857 South St, Portland,OR,97035 +250093,Google Phone,1,600.0,2019-09-24 17:02:00,524 Sunset St, Boston,MA,02215 +250093,USB-C Charging Cable,1,11.95,2019-09-24 17:02:00,524 Sunset St, Boston,MA,02215 +250094,34in Ultrawide Monitor,1,379.99,2019-09-03 08:13:00,53 Madison St, Boston,MA,02215 +250095,USB-C Charging Cable,1,11.95,2019-09-14 16:16:00,31 Pine St, Los Angeles,CA,90001 +250096,Wired Headphones,1,11.99,2019-09-26 20:15:00,660 2nd St, Los Angeles,CA,90001 +250097,USB-C Charging Cable,1,11.95,2019-09-11 21:26:00,861 Maple St, Los Angeles,CA,90001 +250098,Bose SoundSport Headphones,1,99.99,2019-09-15 14:07:00,936 7th St, Los Angeles,CA,90001 +250099,Lightning Charging Cable,1,14.95,2019-09-13 11:21:00,267 Washington St, San Francisco,CA,94016 +250100,Wired Headphones,1,11.99,2019-09-20 19:00:00,6 Hickory St, Austin,TX,73301 +250101,USB-C Charging Cable,1,11.95,2019-09-11 15:18:00,398 Adams St, San Francisco,CA,94016 +250102,27in FHD Monitor,1,149.99,2019-09-05 21:59:00,653 14th St, New York City,NY,10001 +250103,34in Ultrawide Monitor,1,379.99,2019-09-23 14:47:00,290 Elm St, New York City,NY,10001 +250104,Apple Airpods Headphones,1,150.0,2019-09-25 13:32:00,622 Adams St, Seattle,WA,98101 +250105,USB-C Charging Cable,2,11.95,2019-09-05 07:14:00,194 Forest St, Seattle,WA,98101 +250106,Apple Airpods Headphones,1,150.0,2019-09-28 08:11:00,116 Maple St, Seattle,WA,98101 +250107,iPhone,1,700.0,2019-09-29 10:42:00,796 Lincoln St, Atlanta,GA,30301 +250108,Lightning Charging Cable,1,14.95,2019-09-06 22:56:00,37 1st St, San Francisco,CA,94016 +250109,Macbook Pro Laptop,1,1700.0,2019-09-11 16:48:00,165 2nd St, Dallas,TX,75001 +250110,Bose SoundSport Headphones,1,99.99,2019-09-26 09:20:00,547 Meadow St, Los Angeles,CA,90001 +250111,AAA Batteries (4-pack),1,2.99,2019-09-22 19:34:00,600 Highland St, Austin,TX,73301 +250112,Lightning Charging Cable,1,14.95,2019-09-25 21:11:00,311 6th St, Seattle,WA,98101 +250113,Lightning Charging Cable,3,14.95,2019-09-03 22:27:00,521 Cherry St, Portland,OR,97035 +250114,27in FHD Monitor,1,149.99,2019-09-23 15:16:00,224 Ridge St, New York City,NY,10001 +250115,USB-C Charging Cable,1,11.95,2019-09-22 12:30:00,731 Jackson St, Atlanta,GA,30301 +250116,USB-C Charging Cable,1,11.95,2019-09-22 21:55:00,72 Forest St, San Francisco,CA,94016 +250117,iPhone,1,700.0,2019-09-23 07:54:00,525 6th St, Dallas,TX,75001 +250118,ThinkPad Laptop,1,999.99,2019-09-18 21:02:00,279 Maple St, San Francisco,CA,94016 +250119,Google Phone,1,600.0,2019-09-20 21:08:00,716 North St, Portland,ME,04101 +250120,AAA Batteries (4-pack),1,2.99,2019-09-06 20:51:00,919 Willow St, Los Angeles,CA,90001 +250121,AA Batteries (4-pack),1,3.84,2019-09-23 03:11:00,487 11th St, San Francisco,CA,94016 +250122,Bose SoundSport Headphones,1,99.99,2019-09-15 00:32:00,667 Hickory St, Portland,ME,04101 +250123,USB-C Charging Cable,2,11.95,2019-09-23 11:46:00,186 River St, Boston,MA,02215 +250124,Wired Headphones,1,11.99,2019-09-28 13:06:00,622 Cedar St, Seattle,WA,98101 +250125,Vareebadd Phone,1,400.0,2019-09-24 19:50:00,919 Lincoln St, Boston,MA,02215 +250126,AA Batteries (4-pack),1,3.84,2019-09-04 17:21:00,918 Ridge St, San Francisco,CA,94016 +250127,Wired Headphones,1,11.99,2019-09-08 15:56:00,748 14th St, Austin,TX,73301 +250128,Flatscreen TV,1,300.0,2019-09-05 20:11:00,808 Maple St, New York City,NY,10001 +250129,AAA Batteries (4-pack),1,2.99,2019-09-09 11:31:00,511 Center St, Boston,MA,02215 +250130,Bose SoundSport Headphones,1,99.99,2019-09-13 21:34:00,745 Johnson St, San Francisco,CA,94016 +250131,AAA Batteries (4-pack),1,2.99,2019-09-11 21:00:00,469 Madison St, Los Angeles,CA,90001 +250131,ThinkPad Laptop,1,999.99,2019-09-11 21:00:00,469 Madison St, Los Angeles,CA,90001 +250132,Apple Airpods Headphones,1,150.0,2019-09-29 13:01:00,496 13th St, Los Angeles,CA,90001 +250133,ThinkPad Laptop,1,999.99,2019-09-30 15:32:00,653 South St, Dallas,TX,75001 +250134,Wired Headphones,2,11.99,2019-09-09 09:58:00,146 8th St, Los Angeles,CA,90001 +250135,Bose SoundSport Headphones,1,99.99,2019-09-06 11:24:00,302 8th St, Los Angeles,CA,90001 +250136,AAA Batteries (4-pack),2,2.99,2019-09-04 13:06:00,895 Willow St, Austin,TX,73301 +250137,AAA Batteries (4-pack),2,2.99,2019-09-19 10:16:00,38 11th St, Los Angeles,CA,90001 +250138,AA Batteries (4-pack),1,3.84,2019-09-05 20:42:00,462 Chestnut St, Los Angeles,CA,90001 +250139,Google Phone,1,600.0,2019-10-01 00:53:00,132 10th St, San Francisco,CA,94016 +250139,USB-C Charging Cable,1,11.95,2019-10-01 00:53:00,132 10th St, San Francisco,CA,94016 +250140,34in Ultrawide Monitor,1,379.99,2019-09-23 16:48:00,654 7th St, San Francisco,CA,94016 +250141,Wired Headphones,2,11.99,2019-09-17 14:43:00,449 South St, San Francisco,CA,94016 +250142,Vareebadd Phone,1,400.0,2019-09-12 19:39:00,98 Jefferson St, Los Angeles,CA,90001 +250143,USB-C Charging Cable,1,11.95,2019-09-08 15:53:00,676 2nd St, Atlanta,GA,30301 +250144,AAA Batteries (4-pack),1,2.99,2019-09-07 19:56:00,993 8th St, Austin,TX,73301 +250145,USB-C Charging Cable,1,11.95,2019-09-29 16:15:00,527 Johnson St, Los Angeles,CA,90001 +250146,27in 4K Gaming Monitor,1,389.99,2019-09-05 00:07:00,163 Chestnut St, Seattle,WA,98101 +250147,Apple Airpods Headphones,1,150.0,2019-09-06 23:12:00,613 Center St, San Francisco,CA,94016 +250148,Macbook Pro Laptop,1,1700.0,2019-09-26 14:52:00,297 Elm St, Atlanta,GA,30301 +250149,LG Dryer,1,600.0,2019-09-22 19:56:00,215 Jefferson St, New York City,NY,10001 +250150,Apple Airpods Headphones,1,150.0,2019-09-16 05:51:00,332 Willow St, Los Angeles,CA,90001 +250151,AAA Batteries (4-pack),1,2.99,2019-09-27 09:31:00,505 Center St, Atlanta,GA,30301 +250152,Bose SoundSport Headphones,1,99.99,2019-09-15 18:19:00,938 Adams St, Boston,MA,02215 +250153,AA Batteries (4-pack),2,3.84,2019-09-12 20:54:00,293 Cedar St, Seattle,WA,98101 +250154,Vareebadd Phone,1,400.0,2019-09-16 14:51:00,915 Meadow St, Portland,OR,97035 +250155,AA Batteries (4-pack),1,3.84,2019-09-19 09:46:00,351 2nd St, Boston,MA,02215 +250156,27in FHD Monitor,1,149.99,2019-09-04 19:52:00,618 Ridge St, San Francisco,CA,94016 +250157,Vareebadd Phone,1,400.0,2019-09-08 11:12:00,459 Madison St, Seattle,WA,98101 +250157,USB-C Charging Cable,1,11.95,2019-09-08 11:12:00,459 Madison St, Seattle,WA,98101 +250158,27in 4K Gaming Monitor,1,389.99,2019-09-12 17:53:00,832 Ridge St, Seattle,WA,98101 +250158,USB-C Charging Cable,1,11.95,2019-09-12 17:53:00,832 Ridge St, Seattle,WA,98101 +250159,20in Monitor,1,109.99,2019-09-11 09:28:00,923 5th St, New York City,NY,10001 +250160,USB-C Charging Cable,1,11.95,2019-09-25 07:53:00,37 Church St, Seattle,WA,98101 +250161,Lightning Charging Cable,1,14.95,2019-09-02 18:10:00,232 Dogwood St, Dallas,TX,75001 +250162,AA Batteries (4-pack),1,3.84,2019-09-27 12:32:00,410 Church St, Dallas,TX,75001 +250163,AAA Batteries (4-pack),1,2.99,2019-09-24 12:48:00,655 Madison St, San Francisco,CA,94016 +250164,USB-C Charging Cable,1,11.95,2019-09-17 15:51:00,6 10th St, Austin,TX,73301 +250165,Lightning Charging Cable,1,14.95,2019-09-09 10:38:00,565 Dogwood St, New York City,NY,10001 +250166,USB-C Charging Cable,1,11.95,2019-09-27 12:16:00,92 Maple St, Los Angeles,CA,90001 +250167,AAA Batteries (4-pack),1,2.99,2019-09-06 10:16:00,554 6th St, New York City,NY,10001 +250168,Apple Airpods Headphones,1,150.0,2019-09-06 07:57:00,531 14th St, San Francisco,CA,94016 +250169,iPhone,1,700.0,2019-09-12 19:52:00,528 Chestnut St, Boston,MA,02215 +250170,Wired Headphones,2,11.99,2019-09-01 17:16:00,829 Lakeview St, Austin,TX,73301 +250171,USB-C Charging Cable,1,11.95,2019-09-24 12:49:00,27 Lincoln St, Atlanta,GA,30301 +250172,Lightning Charging Cable,1,14.95,2019-09-17 12:49:00,520 Jefferson St, San Francisco,CA,94016 +250173,20in Monitor,1,109.99,2019-09-07 18:03:00,132 Ridge St, Los Angeles,CA,90001 +250174,Apple Airpods Headphones,1,150.0,2019-09-30 19:32:00,490 6th St, New York City,NY,10001 +250175,AAA Batteries (4-pack),1,2.99,2019-09-20 23:58:00,729 Spruce St, Boston,MA,02215 +250176,27in FHD Monitor,1,149.99,2019-09-08 13:11:00,556 Cedar St, Seattle,WA,98101 +250177,27in 4K Gaming Monitor,1,389.99,2019-09-14 23:14:00,722 Hill St, Los Angeles,CA,90001 +250178,Bose SoundSport Headphones,1,99.99,2019-09-22 15:25:00,57 Forest St, New York City,NY,10001 +250179,Google Phone,1,600.0,2019-09-07 11:32:00,856 South St, Los Angeles,CA,90001 +250180,27in FHD Monitor,1,149.99,2019-09-25 11:23:00,842 5th St, New York City,NY,10001 +250181,AA Batteries (4-pack),1,3.84,2019-09-11 12:55:00,338 6th St, Boston,MA,02215 +250182,Lightning Charging Cable,1,14.95,2019-09-07 16:38:00,590 Chestnut St, Seattle,WA,98101 +250183,Lightning Charging Cable,1,14.95,2019-09-11 11:36:00,681 Wilson St, San Francisco,CA,94016 +250184,34in Ultrawide Monitor,1,379.99,2019-09-20 11:37:00,993 Forest St, Dallas,TX,75001 +250185,AAA Batteries (4-pack),1,2.99,2019-09-18 00:46:00,354 River St, New York City,NY,10001 +250185,27in FHD Monitor,1,149.99,2019-09-18 00:46:00,354 River St, New York City,NY,10001 +250186,USB-C Charging Cable,2,11.95,2019-09-27 18:27:00,764 Jefferson St, Dallas,TX,75001 +250187,Google Phone,1,600.0,2019-09-02 23:35:00,545 Madison St, Atlanta,GA,30301 +250187,USB-C Charging Cable,1,11.95,2019-09-02 23:35:00,545 Madison St, Atlanta,GA,30301 +250188,USB-C Charging Cable,1,11.95,2019-09-13 13:54:00,100 Main St, Seattle,WA,98101 +250189,AAA Batteries (4-pack),1,2.99,2019-09-04 21:11:00,856 West St, New York City,NY,10001 +250190,27in FHD Monitor,1,149.99,2019-09-22 19:37:00,539 Lincoln St, Austin,TX,73301 +250191,Apple Airpods Headphones,1,150.0,2019-09-27 05:59:00,22 Lake St, Los Angeles,CA,90001 +250192,Lightning Charging Cable,1,14.95,2019-09-01 16:14:00,725 Chestnut St, Boston,MA,02215 +250193,Wired Headphones,1,11.99,2019-09-09 14:21:00,716 South St, San Francisco,CA,94016 +250194,27in FHD Monitor,1,149.99,2019-09-04 10:16:00,392 9th St, Los Angeles,CA,90001 +250195,Bose SoundSport Headphones,1,99.99,2019-09-23 18:28:00,986 Walnut St, San Francisco,CA,94016 +250196,Lightning Charging Cable,1,14.95,2019-09-11 22:34:00,153 14th St, Boston,MA,02215 +250197,USB-C Charging Cable,1,11.95,2019-09-17 18:37:00,744 Center St, Boston,MA,02215 +250198,27in FHD Monitor,1,149.99,2019-09-25 20:13:00,267 Center St, Seattle,WA,98101 +250199,Lightning Charging Cable,1,14.95,2019-09-28 20:12:00,850 Chestnut St, Boston,MA,02215 +250200,Google Phone,1,600.0,2019-09-27 17:06:00,256 13th St, San Francisco,CA,94016 +250201,AAA Batteries (4-pack),1,2.99,2019-09-20 10:14:00,425 North St, Los Angeles,CA,90001 +250202,Flatscreen TV,1,300.0,2019-09-19 16:01:00,511 7th St, Los Angeles,CA,90001 +250203,iPhone,1,700.0,2019-09-28 15:43:00,124 River St, New York City,NY,10001 +250204,USB-C Charging Cable,1,11.95,2019-09-14 08:48:00,949 Jackson St, New York City,NY,10001 +250205,AA Batteries (4-pack),1,3.84,2019-09-04 10:24:00,971 7th St, Atlanta,GA,30301 +250206,AAA Batteries (4-pack),2,2.99,2019-09-16 22:08:00,101 Ridge St, Austin,TX,73301 +250207,Lightning Charging Cable,1,14.95,2019-09-27 21:51:00,51 5th St, Atlanta,GA,30301 +250208,Bose SoundSport Headphones,1,99.99,2019-09-27 17:54:00,865 Jefferson St, San Francisco,CA,94016 +250209,AA Batteries (4-pack),1,3.84,2019-09-16 20:57:00,966 Church St, San Francisco,CA,94016 +250210,Lightning Charging Cable,1,14.95,2019-09-17 21:27:00,559 Jackson St, San Francisco,CA,94016 +250211,USB-C Charging Cable,1,11.95,2019-09-08 22:42:00,331 Maple St, Boston,MA,02215 +250212,Flatscreen TV,1,300.0,2019-09-19 05:41:00,264 2nd St, Los Angeles,CA,90001 +250213,AAA Batteries (4-pack),1,2.99,2019-09-17 13:29:00,690 Dogwood St, San Francisco,CA,94016 +250214,Bose SoundSport Headphones,1,99.99,2019-09-05 14:01:00,940 Washington St, Los Angeles,CA,90001 +250215,Macbook Pro Laptop,1,1700.0,2019-09-17 12:43:00,940 North St, New York City,NY,10001 +250216,Lightning Charging Cable,1,14.95,2019-09-04 07:41:00,830 Washington St, New York City,NY,10001 +250217,Google Phone,1,600.0,2019-09-13 22:52:00,311 Meadow St, Los Angeles,CA,90001 +250218,Flatscreen TV,1,300.0,2019-09-01 18:45:00,750 Park St, New York City,NY,10001 +250219,AA Batteries (4-pack),1,3.84,2019-09-09 08:34:00,357 Johnson St, Los Angeles,CA,90001 +250220,Apple Airpods Headphones,1,150.0,2019-09-30 17:07:00,607 7th St, Portland,OR,97035 +250221,Bose SoundSport Headphones,1,99.99,2019-09-10 15:36:00,880 9th St, New York City,NY,10001 +250222,AA Batteries (4-pack),1,3.84,2019-09-18 11:27:00,871 Jackson St, Austin,TX,73301 +250223,LG Washing Machine,1,600.0,2019-09-26 21:33:00,382 1st St, New York City,NY,10001 +250224,AAA Batteries (4-pack),1,2.99,2019-09-29 12:45:00,432 Walnut St, Boston,MA,02215 +250225,AA Batteries (4-pack),1,3.84,2019-09-29 18:26:00,60 14th St, Los Angeles,CA,90001 +250226,USB-C Charging Cable,1,11.95,2019-09-24 15:04:00,348 Ridge St, San Francisco,CA,94016 +250227,Google Phone,1,600.0,2019-09-30 22:13:00,205 Pine St, San Francisco,CA,94016 +250228,USB-C Charging Cable,1,11.95,2019-09-27 19:20:00,185 10th St, Austin,TX,73301 +250229,AA Batteries (4-pack),1,3.84,2019-09-02 21:51:00,676 8th St, Los Angeles,CA,90001 +250230,AA Batteries (4-pack),1,3.84,2019-09-06 13:12:00,988 Wilson St, Los Angeles,CA,90001 +250231,Bose SoundSport Headphones,1,99.99,2019-09-07 14:23:00,194 Cedar St, Dallas,TX,75001 +250232,AAA Batteries (4-pack),2,2.99,2019-09-30 19:31:00,944 9th St, Los Angeles,CA,90001 +250233,AAA Batteries (4-pack),1,2.99,2019-09-21 21:42:00,351 Ridge St, Dallas,TX,75001 +250234,Bose SoundSport Headphones,1,99.99,2019-09-06 15:59:00,946 Sunset St, Boston,MA,02215 +250235,Apple Airpods Headphones,1,150.0,2019-09-14 13:02:00,684 14th St, Boston,MA,02215 +250236,Lightning Charging Cable,1,14.95,2019-09-18 13:53:00,131 Center St, Atlanta,GA,30301 +250237,USB-C Charging Cable,1,11.95,2019-09-03 13:36:00,202 Elm St, Dallas,TX,75001 +250238,20in Monitor,1,109.99,2019-09-20 15:44:00,169 9th St, Dallas,TX,75001 +250239,AAA Batteries (4-pack),1,2.99,2019-09-27 13:28:00,664 Pine St, Austin,TX,73301 +250240,Lightning Charging Cable,1,14.95,2019-09-11 13:56:00,727 12th St, Los Angeles,CA,90001 +250241,AA Batteries (4-pack),1,3.84,2019-09-06 09:46:00,3 5th St, Dallas,TX,75001 +250242,Lightning Charging Cable,1,14.95,2019-09-07 15:31:00,595 Hickory St, San Francisco,CA,94016 +250243,AAA Batteries (4-pack),1,2.99,2019-09-04 09:34:00,749 9th St, Boston,MA,02215 +250244,iPhone,1,700.0,2019-09-01 11:04:00,784 Highland St, New York City,NY,10001 +250244,Apple Airpods Headphones,1,150.0,2019-09-01 11:04:00,784 Highland St, New York City,NY,10001 +250245,AAA Batteries (4-pack),2,2.99,2019-09-21 20:50:00,354 7th St, Portland,OR,97035 +250246,AA Batteries (4-pack),1,3.84,2019-09-06 23:15:00,200 Elm St, Portland,ME,04101 +250247,USB-C Charging Cable,1,11.95,2019-09-29 19:19:00,572 Lakeview St, Austin,TX,73301 +250248,Apple Airpods Headphones,1,150.0,2019-09-26 21:05:00,537 Walnut St, Atlanta,GA,30301 +250249,AA Batteries (4-pack),2,3.84,2019-09-11 15:56:00,378 1st St, Los Angeles,CA,90001 +250250,Apple Airpods Headphones,1,150.0,2019-09-01 14:15:00,300 5th St, San Francisco,CA,94016 +250251,Apple Airpods Headphones,1,150.0,2019-09-06 23:00:00,874 Chestnut St, Atlanta,GA,30301 +250252,AAA Batteries (4-pack),2,2.99,2019-09-01 09:11:00,433 Elm St, Austin,TX,73301 +250253,27in 4K Gaming Monitor,1,389.99,2019-09-08 08:19:00,702 South St, New York City,NY,10001 +250254,Lightning Charging Cable,1,14.95,2019-09-20 10:10:00,778 Hickory St, Los Angeles,CA,90001 +250255,AA Batteries (4-pack),1,3.84,2019-09-05 19:57:00,275 2nd St, San Francisco,CA,94016 +250256,Lightning Charging Cable,1,14.95,2019-09-03 15:32:00,905 Spruce St, San Francisco,CA,94016 +250257,AAA Batteries (4-pack),1,2.99,2019-09-18 18:33:00,430 Dogwood St, Los Angeles,CA,90001 +250258,Lightning Charging Cable,1,14.95,2019-09-14 21:55:00,482 Wilson St, Portland,OR,97035 +250259,Apple Airpods Headphones,1,150.0,2019-09-23 11:08:00,759 Church St, New York City,NY,10001 +250260,Lightning Charging Cable,1,14.95,2019-09-08 22:40:00,387 Maple St, New York City,NY,10001 +250261,Wired Headphones,1,11.99,2019-09-25 11:58:00,254 Park St, San Francisco,CA,94016 +250262,27in 4K Gaming Monitor,1,389.99,2019-09-03 15:24:00,912 11th St, Austin,TX,73301 +250263,AAA Batteries (4-pack),2,2.99,2019-09-22 18:48:00,188 Hill St, Los Angeles,CA,90001 +250264,AA Batteries (4-pack),1,3.84,2019-09-04 10:31:00,460 Dogwood St, Seattle,WA,98101 +250265,Wired Headphones,1,11.99,2019-09-11 19:45:00,289 Church St, Los Angeles,CA,90001 +250266,Flatscreen TV,1,300.0,2019-09-21 17:13:00,965 Wilson St, Boston,MA,02215 +250267,34in Ultrawide Monitor,1,379.99,2019-09-21 11:57:00,272 7th St, Dallas,TX,75001 +250268,Apple Airpods Headphones,1,150.0,2019-09-30 11:44:00,883 Walnut St, Dallas,TX,75001 +250269,Bose SoundSport Headphones,1,99.99,2019-09-24 18:54:00,745 Forest St, San Francisco,CA,94016 +250270,Flatscreen TV,1,300.0,2019-09-21 20:32:00,680 Forest St, Dallas,TX,75001 +250271,AAA Batteries (4-pack),1,2.99,2019-09-19 14:34:00,665 Highland St, Dallas,TX,75001 +250272,USB-C Charging Cable,1,11.95,2019-09-04 09:51:00,341 Pine St, Atlanta,GA,30301 +250273,AAA Batteries (4-pack),1,2.99,2019-09-11 17:02:00,419 2nd St, San Francisco,CA,94016 +250274,Macbook Pro Laptop,1,1700.0,2019-09-26 08:14:00,651 10th St, San Francisco,CA,94016 +250275,ThinkPad Laptop,1,999.99,2019-10-01 00:46:00,814 7th St, San Francisco,CA,94016 +250276,USB-C Charging Cable,1,11.95,2019-09-12 14:06:00,665 Main St, Portland,OR,97035 +250277,AAA Batteries (4-pack),1,2.99,2019-09-14 09:36:00,114 Maple St, Boston,MA,02215 +250278,Lightning Charging Cable,1,14.95,2019-09-12 09:35:00,107 11th St, San Francisco,CA,94016 +250279,AAA Batteries (4-pack),3,2.99,2019-09-01 09:28:00,385 South St, Dallas,TX,75001 +250280,34in Ultrawide Monitor,1,379.99,2019-09-16 12:24:00,606 Adams St, Los Angeles,CA,90001 +250281,AA Batteries (4-pack),1,3.84,2019-09-13 15:24:00,175 9th St, San Francisco,CA,94016 +250282,Apple Airpods Headphones,1,150.0,2019-09-05 14:33:00,656 12th St, San Francisco,CA,94016 +250283,Wired Headphones,1,11.99,2019-09-05 09:00:00,168 Spruce St, New York City,NY,10001 +250284,Wired Headphones,1,11.99,2019-09-26 18:50:00,629 Adams St, San Francisco,CA,94016 +250285,Macbook Pro Laptop,1,1700.0,2019-09-15 18:28:00,500 Dogwood St, San Francisco,CA,94016 +250286,Lightning Charging Cable,1,14.95,2019-09-07 21:52:00,646 Forest St, Los Angeles,CA,90001 +250287,USB-C Charging Cable,1,11.95,2019-09-02 10:04:00,905 Cedar St, New York City,NY,10001 +250288,27in 4K Gaming Monitor,1,389.99,2019-09-13 13:16:00,664 Washington St, San Francisco,CA,94016 +250289,USB-C Charging Cable,1,11.95,2019-09-07 16:23:00,491 9th St, San Francisco,CA,94016 +250290,USB-C Charging Cable,1,11.95,2019-09-25 09:55:00,796 9th St, Seattle,WA,98101 +250291,AA Batteries (4-pack),1,3.84,2019-09-18 15:36:00,922 Wilson St, Los Angeles,CA,90001 +250292,Apple Airpods Headphones,1,150.0,2019-09-12 20:54:00,188 Highland St, Austin,TX,73301 +250293,AAA Batteries (4-pack),1,2.99,2019-09-02 20:55:00,413 Park St, Los Angeles,CA,90001 +250294,Lightning Charging Cable,1,14.95,2019-09-22 19:22:00,84 8th St, New York City,NY,10001 +250295,20in Monitor,1,109.99,2019-09-27 23:38:00,278 10th St, San Francisco,CA,94016 +250296,Apple Airpods Headphones,1,150.0,2019-09-01 19:59:00,980 Lake St, Dallas,TX,75001 +250297,Wired Headphones,1,11.99,2019-09-06 13:59:00,132 Main St, Los Angeles,CA,90001 +250298,AAA Batteries (4-pack),2,2.99,2019-09-05 09:01:00,181 13th St, Los Angeles,CA,90001 +250299,iPhone,1,700.0,2019-09-29 12:09:00,43 6th St, Atlanta,GA,30301 +250299,Lightning Charging Cable,1,14.95,2019-09-29 12:09:00,43 6th St, Atlanta,GA,30301 +250300,Lightning Charging Cable,1,14.95,2019-09-18 18:56:00,824 Pine St, New York City,NY,10001 +250301,Lightning Charging Cable,1,14.95,2019-09-15 18:51:00,752 Adams St, Seattle,WA,98101 +250302,Bose SoundSport Headphones,1,99.99,2019-09-13 16:31:00,845 Lake St, Dallas,TX,75001 +250303,AAA Batteries (4-pack),2,2.99,2019-09-06 20:41:00,504 Hickory St, Boston,MA,02215 +250304,27in FHD Monitor,1,149.99,2019-09-26 15:34:00,35 6th St, Los Angeles,CA,90001 +250305,iPhone,1,700.0,2019-09-09 10:00:00,633 10th St, San Francisco,CA,94016 +250306,AAA Batteries (4-pack),2,2.99,2019-09-13 09:24:00,164 Sunset St, Los Angeles,CA,90001 +250307,Wired Headphones,1,11.99,2019-09-13 18:09:00,159 13th St, San Francisco,CA,94016 +250308,Lightning Charging Cable,1,14.95,2019-09-16 12:35:00,226 Chestnut St, Seattle,WA,98101 +250309,Apple Airpods Headphones,1,150.0,2019-09-01 09:59:00,450 10th St, Los Angeles,CA,90001 +250310,34in Ultrawide Monitor,1,379.99,2019-09-16 23:57:00,675 Maple St, Los Angeles,CA,90001 +250311,AA Batteries (4-pack),2,3.84,2019-09-18 21:07:00,753 West St, San Francisco,CA,94016 +250312,Apple Airpods Headphones,1,150.0,2019-09-10 05:19:00,925 Washington St, New York City,NY,10001 +250313,27in FHD Monitor,1,149.99,2019-09-27 16:32:00,744 1st St, New York City,NY,10001 +250314,USB-C Charging Cable,1,11.95,2019-09-02 10:37:00,248 Highland St, Los Angeles,CA,90001 +250315,Bose SoundSport Headphones,1,99.99,2019-09-01 18:48:00,305 Cherry St, Seattle,WA,98101 +250316,Apple Airpods Headphones,1,150.0,2019-09-21 22:46:00,427 Wilson St, Los Angeles,CA,90001 +250317,Lightning Charging Cable,1,14.95,2019-09-24 19:44:00,751 Sunset St, San Francisco,CA,94016 +250318,AAA Batteries (4-pack),2,2.99,2019-09-18 13:51:00,183 Meadow St, Portland,OR,97035 +250319,USB-C Charging Cable,1,11.95,2019-09-08 16:39:00,960 Cedar St, Atlanta,GA,30301 +250320,USB-C Charging Cable,1,11.95,2019-09-23 11:11:00,912 Highland St, New York City,NY,10001 +250321,27in FHD Monitor,1,149.99,2019-09-02 16:17:00,173 Wilson St, Boston,MA,02215 +250322,Lightning Charging Cable,1,14.95,2019-09-27 19:26:00,971 Johnson St, Boston,MA,02215 +250323,27in FHD Monitor,1,149.99,2019-09-24 17:56:00,255 Cedar St, San Francisco,CA,94016 +250324,Bose SoundSport Headphones,1,99.99,2019-09-30 06:54:00,846 Main St, New York City,NY,10001 +250325,Apple Airpods Headphones,1,150.0,2019-09-16 16:30:00,852 Jackson St, Dallas,TX,75001 +250326,27in 4K Gaming Monitor,1,389.99,2019-09-12 22:46:00,849 5th St, Dallas,TX,75001 +250327,Lightning Charging Cable,1,14.95,2019-09-18 18:49:00,912 Ridge St, Los Angeles,CA,90001 +250328,USB-C Charging Cable,1,11.95,2019-09-12 05:14:00,753 West St, Boston,MA,02215 +250329,USB-C Charging Cable,1,11.95,2019-09-19 22:39:00,402 Main St, Atlanta,GA,30301 +250330,Wired Headphones,1,11.99,2019-09-09 07:52:00,717 Dogwood St, San Francisco,CA,94016 +250331,USB-C Charging Cable,1,11.95,2019-09-01 10:20:00,592 Lincoln St, San Francisco,CA,94016 +250332,Lightning Charging Cable,1,14.95,2019-09-04 15:12:00,517 North St, Austin,TX,73301 +250333,Bose SoundSport Headphones,1,99.99,2019-09-25 21:19:00,986 7th St, Atlanta,GA,30301 +250334,AA Batteries (4-pack),1,3.84,2019-09-16 10:08:00,162 Cherry St, Dallas,TX,75001 +250335,27in 4K Gaming Monitor,1,389.99,2019-09-08 08:19:00,855 Pine St, Atlanta,GA,30301 +250336,iPhone,1,700.0,2019-09-26 18:46:00,966 Highland St, San Francisco,CA,94016 +250337,Lightning Charging Cable,2,14.95,2019-09-14 20:04:00,584 10th St, Los Angeles,CA,90001 +250338,Apple Airpods Headphones,1,150.0,2019-09-05 04:21:00,739 Center St, Boston,MA,02215 +250339,Wired Headphones,1,11.99,2019-09-29 11:18:00,644 South St, New York City,NY,10001 +250340,USB-C Charging Cable,1,11.95,2019-09-27 18:51:00,381 Jefferson St, Boston,MA,02215 +250340,27in FHD Monitor,1,149.99,2019-09-27 18:51:00,381 Jefferson St, Boston,MA,02215 +250341,Apple Airpods Headphones,1,150.0,2019-09-20 18:13:00,735 North St, Boston,MA,02215 +250342,Wired Headphones,1,11.99,2019-09-07 10:42:00,917 Maple St, Boston,MA,02215 +250343,AAA Batteries (4-pack),1,2.99,2019-09-19 22:57:00,296 14th St, Austin,TX,73301 +250344,Apple Airpods Headphones,1,150.0,2019-09-26 17:27:00,743 South St, Austin,TX,73301 +250344,AAA Batteries (4-pack),2,2.99,2019-09-26 17:27:00,743 South St, Austin,TX,73301 +250345,AAA Batteries (4-pack),1,2.99,2019-09-05 13:42:00,251 Ridge St, Atlanta,GA,30301 +250346,Wired Headphones,1,11.99,2019-09-30 20:50:00,405 Spruce St, Los Angeles,CA,90001 +250347,AAA Batteries (4-pack),2,2.99,2019-09-03 15:05:00,385 Washington St, New York City,NY,10001 +250348,AAA Batteries (4-pack),2,2.99,2019-09-15 09:20:00,563 Madison St, San Francisco,CA,94016 +250349,Apple Airpods Headphones,1,150.0,2019-09-23 17:34:00,439 Chestnut St, Boston,MA,02215 +250350,Bose SoundSport Headphones,1,99.99,2019-09-05 16:47:00,517 Willow St, Dallas,TX,75001 +250351,Wired Headphones,1,11.99,2019-09-11 10:56:00,357 Cedar St, New York City,NY,10001 +250352,USB-C Charging Cable,1,11.95,2019-09-03 15:58:00,401 13th St, Los Angeles,CA,90001 +250353,27in FHD Monitor,1,149.99,2019-09-21 15:30:00,727 Jefferson St, Portland,OR,97035 +250354,Bose SoundSport Headphones,1,99.99,2019-09-27 21:49:00,706 6th St, Atlanta,GA,30301 +250355,Lightning Charging Cable,1,14.95,2019-09-25 09:11:00,701 Dogwood St, New York City,NY,10001 +250356,Apple Airpods Headphones,1,150.0,2019-09-25 22:40:00,593 Lake St, San Francisco,CA,94016 +250357,Wired Headphones,1,11.99,2019-09-26 20:02:00,435 6th St, Boston,MA,02215 +250358,AAA Batteries (4-pack),1,2.99,2019-09-09 18:25:00,383 1st St, Boston,MA,02215 +250359,Lightning Charging Cable,1,14.95,2019-09-01 15:47:00,667 Jefferson St, New York City,NY,10001 +250360,ThinkPad Laptop,1,999.99,2019-09-15 18:46:00,866 5th St, Los Angeles,CA,90001 +250361,Apple Airpods Headphones,1,150.0,2019-09-29 16:01:00,133 Ridge St, Dallas,TX,75001 +250362,AAA Batteries (4-pack),2,2.99,2019-09-08 16:18:00,132 Forest St, Los Angeles,CA,90001 +250363,Wired Headphones,2,11.99,2019-09-30 06:49:00,250 Lakeview St, New York City,NY,10001 +250364,27in 4K Gaming Monitor,1,389.99,2019-09-29 20:50:00,135 Adams St, New York City,NY,10001 +250365,Flatscreen TV,1,300.0,2019-09-18 00:30:00,655 Hill St, New York City,NY,10001 +250366,34in Ultrawide Monitor,1,379.99,2019-09-25 03:48:00,608 Johnson St, Los Angeles,CA,90001 +250367,USB-C Charging Cable,1,11.95,2019-09-01 13:07:00,47 Forest St, Portland,OR,97035 +250368,AAA Batteries (4-pack),1,2.99,2019-09-09 19:58:00,102 11th St, San Francisco,CA,94016 +250369,Wired Headphones,1,11.99,2019-09-06 15:57:00,806 8th St, San Francisco,CA,94016 +250370,Apple Airpods Headphones,1,150.0,2019-09-03 18:46:00,653 12th St, Los Angeles,CA,90001 +250371,USB-C Charging Cable,1,11.95,2019-09-03 18:08:00,511 8th St, Atlanta,GA,30301 +250372,USB-C Charging Cable,2,11.95,2019-09-19 11:10:00,846 Forest St, San Francisco,CA,94016 +250373,27in FHD Monitor,1,149.99,2019-09-26 16:52:00,563 Elm St, Austin,TX,73301 +250374,Apple Airpods Headphones,1,150.0,2019-09-23 15:02:00,529 Dogwood St, Atlanta,GA,30301 +250374,AA Batteries (4-pack),2,3.84,2019-09-23 15:02:00,529 Dogwood St, Atlanta,GA,30301 +250375,Wired Headphones,1,11.99,2019-09-05 17:36:00,425 Spruce St, San Francisco,CA,94016 +250376,AAA Batteries (4-pack),1,2.99,2019-09-10 22:51:00,432 Spruce St, Dallas,TX,75001 +250377,USB-C Charging Cable,1,11.95,2019-09-29 12:36:00,60 Ridge St, New York City,NY,10001 +250378,Wired Headphones,1,11.99,2019-09-12 09:41:00,596 Lakeview St, Boston,MA,02215 +250379,AA Batteries (4-pack),1,3.84,2019-09-15 21:10:00,614 12th St, Boston,MA,02215 +250380,USB-C Charging Cable,1,11.95,2019-09-14 00:30:00,661 Adams St, Los Angeles,CA,90001 +250381,AA Batteries (4-pack),1,3.84,2019-09-19 22:08:00,5 2nd St, San Francisco,CA,94016 +250382,AAA Batteries (4-pack),1,2.99,2019-09-27 13:22:00,460 Wilson St, New York City,NY,10001 +250383,USB-C Charging Cable,1,11.95,2019-09-10 22:06:00,165 8th St, San Francisco,CA,94016 +250384,27in 4K Gaming Monitor,1,389.99,2019-09-07 12:53:00,191 14th St, Atlanta,GA,30301 +250385,USB-C Charging Cable,1,11.95,2019-09-18 11:01:00,475 Church St, Los Angeles,CA,90001 +250386,Flatscreen TV,1,300.0,2019-09-27 12:12:00,281 Pine St, San Francisco,CA,94016 +250386,AAA Batteries (4-pack),1,2.99,2019-09-27 12:12:00,281 Pine St, San Francisco,CA,94016 +250387,USB-C Charging Cable,1,11.95,2019-09-24 12:19:00,750 Hill St, New York City,NY,10001 +250388,AAA Batteries (4-pack),1,2.99,2019-09-01 19:29:00,555 Walnut St, Dallas,TX,75001 +250389,AA Batteries (4-pack),2,3.84,2019-09-03 10:44:00,332 Washington St, Los Angeles,CA,90001 +250390,Bose SoundSport Headphones,1,99.99,2019-09-23 12:43:00,683 North St, San Francisco,CA,94016 +250391,Lightning Charging Cable,1,14.95,2019-09-26 16:14:00,90 Lincoln St, Los Angeles,CA,90001 +250392,AAA Batteries (4-pack),1,2.99,2019-09-30 16:57:00,287 West St, Boston,MA,02215 +250393,AAA Batteries (4-pack),1,2.99,2019-09-17 18:44:00,618 Washington St, Boston,MA,02215 +250394,Lightning Charging Cable,1,14.95,2019-09-14 09:12:00,783 Wilson St, San Francisco,CA,94016 +250395,34in Ultrawide Monitor,1,379.99,2019-09-22 22:50:00,138 Johnson St, San Francisco,CA,94016 +250396,AAA Batteries (4-pack),1,2.99,2019-09-11 17:02:00,571 2nd St, Boston,MA,02215 +250397,iPhone,1,700.0,2019-09-19 13:16:00,943 4th St, Portland,OR,97035 +250398,Lightning Charging Cable,1,14.95,2019-09-18 18:25:00,362 Forest St, Los Angeles,CA,90001 +250398,20in Monitor,1,109.99,2019-09-18 18:25:00,362 Forest St, Los Angeles,CA,90001 +250399,Apple Airpods Headphones,1,150.0,2019-09-22 23:55:00,458 Willow St, Dallas,TX,75001 +250400,Flatscreen TV,1,300.0,2019-09-10 09:35:00,780 Hickory St, Los Angeles,CA,90001 +250401,Lightning Charging Cable,1,14.95,2019-09-18 20:20:00,313 Forest St, Boston,MA,02215 +250402,USB-C Charging Cable,1,11.95,2019-09-04 17:34:00,956 11th St, San Francisco,CA,94016 +250403,Wired Headphones,1,11.99,2019-09-15 16:05:00,766 Willow St, Portland,OR,97035 +250404,AAA Batteries (4-pack),1,2.99,2019-09-03 15:46:00,475 Adams St, Boston,MA,02215 +250405,AAA Batteries (4-pack),2,2.99,2019-09-29 14:21:00,266 Main St, Atlanta,GA,30301 +250406,27in FHD Monitor,1,149.99,2019-09-07 09:00:00,979 Cedar St, New York City,NY,10001 +250407,Flatscreen TV,1,300.0,2019-09-27 16:20:00,657 14th St, Atlanta,GA,30301 +250408,AA Batteries (4-pack),1,3.84,2019-09-30 15:47:00,962 Meadow St, Dallas,TX,75001 +250409,Wired Headphones,1,11.99,2019-09-03 05:55:00,820 10th St, Atlanta,GA,30301 +250410,Macbook Pro Laptop,1,1700.0,2019-09-24 21:09:00,278 Willow St, Los Angeles,CA,90001 +250411,27in 4K Gaming Monitor,1,389.99,2019-09-14 20:35:00,590 Washington St, San Francisco,CA,94016 +250412,AAA Batteries (4-pack),1,2.99,2019-09-11 16:46:00,22 Church St, San Francisco,CA,94016 +250413,27in FHD Monitor,1,149.99,2019-09-07 06:57:00,992 Lincoln St, San Francisco,CA,94016 +250414,Wired Headphones,1,11.99,2019-09-29 17:25:00,595 Adams St, Dallas,TX,75001 +250415,Apple Airpods Headphones,1,150.0,2019-09-13 17:00:00,853 Hickory St, Portland,OR,97035 +250416,AA Batteries (4-pack),1,3.84,2019-09-22 19:00:00,193 2nd St, Boston,MA,02215 +250417,20in Monitor,1,109.99,2019-09-04 06:03:00,68 8th St, Austin,TX,73301 +250418,27in FHD Monitor,1,149.99,2019-09-04 13:16:00,463 Elm St, Los Angeles,CA,90001 +250419,Apple Airpods Headphones,1,150.0,2019-09-13 11:31:00,18 Hill St, Dallas,TX,75001 +250420,AA Batteries (4-pack),1,3.84,2019-09-27 07:02:00,113 Jefferson St, Seattle,WA,98101 +250421,Wired Headphones,2,11.99,2019-09-18 18:31:00,368 Lincoln St, Seattle,WA,98101 +250422,USB-C Charging Cable,1,11.95,2019-09-15 03:37:00,281 Lake St, Austin,TX,73301 +250423,Wired Headphones,1,11.99,2019-09-24 09:30:00,261 Lakeview St, Los Angeles,CA,90001 +250424,AA Batteries (4-pack),3,3.84,2019-09-04 15:40:00,501 Lincoln St, Los Angeles,CA,90001 +250425,AA Batteries (4-pack),2,3.84,2019-09-11 12:27:00,644 Lake St, Los Angeles,CA,90001 +250426,USB-C Charging Cable,1,11.95,2019-09-23 00:38:00,892 Johnson St, San Francisco,CA,94016 +250427,Wired Headphones,1,11.99,2019-09-27 14:18:00,575 11th St, Portland,OR,97035 +250428,iPhone,1,700.0,2019-09-27 09:56:00,498 5th St, San Francisco,CA,94016 +250429,Vareebadd Phone,1,400.0,2019-09-29 11:06:00,849 Pine St, Dallas,TX,75001 +250430,Apple Airpods Headphones,1,150.0,2019-09-24 08:48:00,562 Adams St, Los Angeles,CA,90001 +250431,Flatscreen TV,1,300.0,2019-09-05 15:46:00,732 Meadow St, Atlanta,GA,30301 +250432,AAA Batteries (4-pack),5,2.99,2019-09-22 10:18:00,634 Sunset St, New York City,NY,10001 +250433,AA Batteries (4-pack),1,3.84,2019-09-15 20:28:00,942 Lake St, San Francisco,CA,94016 +250434,Wired Headphones,2,11.99,2019-09-08 12:27:00,250 Johnson St, San Francisco,CA,94016 +250435,AA Batteries (4-pack),1,3.84,2019-09-05 12:38:00,663 Park St, Dallas,TX,75001 +250436,AAA Batteries (4-pack),3,2.99,2019-09-04 11:39:00,376 Madison St, Los Angeles,CA,90001 +250437,27in FHD Monitor,1,149.99,2019-09-10 12:39:00,152 Jackson St, Dallas,TX,75001 +250438,34in Ultrawide Monitor,1,379.99,2019-09-27 00:23:00,60 Madison St, Los Angeles,CA,90001 +250439,27in 4K Gaming Monitor,1,389.99,2019-09-13 18:29:00,800 Cherry St, Boston,MA,02215 +250440,Macbook Pro Laptop,1,1700.0,2019-09-02 17:12:00,369 Jackson St, Seattle,WA,98101 +250441,Macbook Pro Laptop,1,1700.0,2019-09-21 07:50:00,402 Dogwood St, San Francisco,CA,94016 +250442,USB-C Charging Cable,1,11.95,2019-09-02 18:45:00,649 5th St, Los Angeles,CA,90001 +250443,Wired Headphones,2,11.99,2019-09-20 20:00:00,965 13th St, Seattle,WA,98101 +250444,Lightning Charging Cable,1,14.95,2019-09-22 20:17:00,254 Main St, Portland,OR,97035 +250445,Bose SoundSport Headphones,1,99.99,2019-09-26 14:38:00,112 4th St, Los Angeles,CA,90001 +250446,Google Phone,1,600.0,2019-09-04 14:14:00,859 6th St, Seattle,WA,98101 +250447,LG Dryer,1,600.0,2019-09-17 13:11:00,297 Church St, Austin,TX,73301 +250448,Lightning Charging Cable,1,14.95,2019-09-21 13:22:00,216 Highland St, San Francisco,CA,94016 +250449,Wired Headphones,1,11.99,2019-09-05 09:09:00,322 Church St, Boston,MA,02215 +250450,USB-C Charging Cable,1,11.95,2019-09-05 18:40:00,608 Madison St, New York City,NY,10001 +250451,USB-C Charging Cable,1,11.95,2019-09-27 22:33:00,624 12th St, San Francisco,CA,94016 +250452,34in Ultrawide Monitor,1,379.99,2019-09-22 22:11:00,866 Dogwood St, San Francisco,CA,94016 +250453,Apple Airpods Headphones,1,150.0,2019-09-29 11:11:00,831 Pine St, Boston,MA,02215 +250454,USB-C Charging Cable,1,11.95,2019-09-03 22:13:00,378 11th St, Austin,TX,73301 +250455,AA Batteries (4-pack),1,3.84,2019-09-05 11:06:00,383 Johnson St, Los Angeles,CA,90001 +250456,Apple Airpods Headphones,1,150.0,2019-09-02 22:32:00,958 Center St, San Francisco,CA,94016 +250457,Bose SoundSport Headphones,1,99.99,2019-09-17 12:12:00,314 Meadow St, Boston,MA,02215 +250458,AA Batteries (4-pack),1,3.84,2019-09-20 10:45:00,787 Johnson St, New York City,NY,10001 +250459,USB-C Charging Cable,1,11.95,2019-09-25 11:26:00,534 Jackson St, San Francisco,CA,94016 +250460,Lightning Charging Cable,1,14.95,2019-09-05 21:25:00,897 River St, New York City,NY,10001 +250461,Apple Airpods Headphones,1,150.0,2019-09-15 17:22:00,688 West St, Atlanta,GA,30301 +250462,27in FHD Monitor,1,149.99,2019-09-13 01:37:00,198 Jackson St, New York City,NY,10001 +250463,AA Batteries (4-pack),1,3.84,2019-09-13 14:36:00,128 Madison St, Portland,OR,97035 +250464,AAA Batteries (4-pack),1,2.99,2019-09-04 13:50:00,445 6th St, San Francisco,CA,94016 +250465,27in FHD Monitor,1,149.99,2019-09-02 16:17:00,665 South St, Dallas,TX,75001 +250466,Wired Headphones,1,11.99,2019-09-22 13:29:00,694 Cedar St, San Francisco,CA,94016 +250467,Apple Airpods Headphones,1,150.0,2019-09-30 13:20:00,134 9th St, Dallas,TX,75001 +250468,ThinkPad Laptop,1,999.99,2019-09-23 23:50:00,137 Adams St, Portland,OR,97035 +250469,iPhone,1,700.0,2019-09-17 19:27:00,829 Spruce St, Seattle,WA,98101 +250470,AAA Batteries (4-pack),1,2.99,2019-09-08 18:06:00,761 Cherry St, Los Angeles,CA,90001 +250471,Apple Airpods Headphones,1,150.0,2019-09-27 17:35:00,712 North St, New York City,NY,10001 +250472,Wired Headphones,2,11.99,2019-09-11 18:31:00,73 Meadow St, Austin,TX,73301 +250473,AA Batteries (4-pack),1,3.84,2019-09-30 18:23:00,419 5th St, Los Angeles,CA,90001 +250474,Wired Headphones,1,11.99,2019-09-23 15:48:00,464 Walnut St, Los Angeles,CA,90001 +250475,AA Batteries (4-pack),1,3.84,2019-09-15 17:27:00,413 Cherry St, San Francisco,CA,94016 +250476,AA Batteries (4-pack),2,3.84,2019-09-25 07:25:00,341 South St, Los Angeles,CA,90001 +250477,Flatscreen TV,1,300.0,2019-09-09 00:14:00,853 Cherry St, Austin,TX,73301 +250478,USB-C Charging Cable,1,11.95,2019-09-23 22:43:00,37 10th St, New York City,NY,10001 +250479,iPhone,1,700.0,2019-09-19 10:05:00,77 Elm St, New York City,NY,10001 +250480,Bose SoundSport Headphones,1,99.99,2019-09-07 07:27:00,471 Park St, Atlanta,GA,30301 +250481,AAA Batteries (4-pack),1,2.99,2019-09-08 14:52:00,571 Hickory St, San Francisco,CA,94016 +250482,USB-C Charging Cable,1,11.95,2019-09-25 10:11:00,864 1st St, New York City,NY,10001 +250483,Wired Headphones,1,11.99,2019-09-13 11:40:00,640 Dogwood St, Atlanta,GA,30301 +250484,LG Dryer,1,600.0,2019-09-02 21:45:00,563 Main St, Atlanta,GA,30301 +250484,AA Batteries (4-pack),1,3.84,2019-09-02 21:45:00,563 Main St, Atlanta,GA,30301 +250485,34in Ultrawide Monitor,1,379.99,2019-09-04 20:30:00,692 5th St, Los Angeles,CA,90001 +250486,Lightning Charging Cable,1,14.95,2019-09-21 19:31:00,410 Wilson St, New York City,NY,10001 +250487,Apple Airpods Headphones,1,150.0,2019-09-23 22:14:00,243 Willow St, Boston,MA,02215 +250488,ThinkPad Laptop,1,999.99,2019-09-01 21:46:00,24 Meadow St, San Francisco,CA,94016 +250489,Google Phone,1,600.0,2019-09-11 19:24:00,976 2nd St, Seattle,WA,98101 +250490,Lightning Charging Cable,1,14.95,2019-09-21 00:56:00,989 West St, San Francisco,CA,94016 +250491,34in Ultrawide Monitor,1,379.99,2019-09-22 14:23:00,42 Lincoln St, San Francisco,CA,94016 +250492,USB-C Charging Cable,1,11.95,2019-09-18 20:02:00,247 1st St, New York City,NY,10001 +250493,Apple Airpods Headphones,1,150.0,2019-09-13 11:51:00,837 4th St, New York City,NY,10001 +250494,27in FHD Monitor,1,149.99,2019-09-06 19:42:00,827 6th St, Boston,MA,02215 +250495,iPhone,1,700.0,2019-09-24 18:02:00,470 Madison St, Seattle,WA,98101 +250496,Bose SoundSport Headphones,1,99.99,2019-09-22 19:41:00,786 South St, Atlanta,GA,30301 +250497,20in Monitor,1,109.99,2019-09-15 18:33:00,349 Meadow St, Seattle,WA,98101 +250498,Bose SoundSport Headphones,1,99.99,2019-09-01 12:34:00,92 Maple St, San Francisco,CA,94016 +250499,USB-C Charging Cable,2,11.95,2019-09-17 11:31:00,78 Wilson St, Dallas,TX,75001 +250500,Apple Airpods Headphones,1,150.0,2019-09-12 19:28:00,630 Madison St, San Francisco,CA,94016 +250501,Lightning Charging Cable,1,14.95,2019-09-20 11:00:00,356 Jefferson St, Dallas,TX,75001 +250502,USB-C Charging Cable,1,11.95,2019-09-18 09:39:00,275 11th St, San Francisco,CA,94016 +250503,Apple Airpods Headphones,1,150.0,2019-09-13 12:05:00,694 Washington St, San Francisco,CA,94016 +250504,Lightning Charging Cable,1,14.95,2019-09-21 14:27:00,840 Pine St, Austin,TX,73301 +250505,USB-C Charging Cable,1,11.95,2019-09-02 21:08:00,355 Adams St, Boston,MA,02215 +250506,Bose SoundSport Headphones,1,99.99,2019-09-13 17:04:00,964 Ridge St, Atlanta,GA,30301 +250507,27in 4K Gaming Monitor,1,389.99,2019-09-03 21:56:00,184 Meadow St, San Francisco,CA,94016 +250508,USB-C Charging Cable,1,11.95,2019-09-20 18:12:00,519 South St, New York City,NY,10001 +250509,AAA Batteries (4-pack),1,2.99,2019-09-11 09:04:00,600 Elm St, Boston,MA,02215 +250510,Wired Headphones,1,11.99,2019-09-06 21:19:00,977 13th St, Dallas,TX,75001 +250511,AAA Batteries (4-pack),1,2.99,2019-09-27 20:06:00,582 Lakeview St, San Francisco,CA,94016 +250512,Bose SoundSport Headphones,1,99.99,2019-09-05 03:07:00,359 Dogwood St, Austin,TX,73301 +250513,Bose SoundSport Headphones,1,99.99,2019-09-04 17:35:00,12 Washington St, Seattle,WA,98101 +250514,Apple Airpods Headphones,1,150.0,2019-09-25 09:16:00,587 Madison St, Atlanta,GA,30301 +250515,Bose SoundSport Headphones,1,99.99,2019-09-06 16:45:00,229 14th St, Dallas,TX,75001 +250516,34in Ultrawide Monitor,1,379.99,2019-09-05 19:19:00,572 South St, San Francisco,CA,94016 +250517,AAA Batteries (4-pack),1,2.99,2019-09-19 19:12:00,326 Hill St, Seattle,WA,98101 +250518,Bose SoundSport Headphones,1,99.99,2019-09-21 15:30:00,742 Sunset St, Austin,TX,73301 +250519,Flatscreen TV,1,300.0,2019-09-06 09:19:00,577 14th St, San Francisco,CA,94016 +250520,Flatscreen TV,1,300.0,2019-09-15 10:56:00,883 8th St, Los Angeles,CA,90001 +250521,Bose SoundSport Headphones,1,99.99,2019-09-10 07:37:00,613 Chestnut St, San Francisco,CA,94016 +250522,Apple Airpods Headphones,1,150.0,2019-09-10 18:37:00,634 Highland St, San Francisco,CA,94016 +250523,AA Batteries (4-pack),2,3.84,2019-09-10 12:56:00,359 6th St, Boston,MA,02215 +250524,LG Washing Machine,1,600.0,2019-09-14 16:04:00,591 Pine St, Atlanta,GA,30301 +250525,AAA Batteries (4-pack),1,2.99,2019-09-14 10:47:00,248 9th St, San Francisco,CA,94016 +250526,Bose SoundSport Headphones,1,99.99,2019-09-11 11:37:00,542 North St, Dallas,TX,75001 +250527,AAA Batteries (4-pack),1,2.99,2019-09-05 00:32:00,724 1st St, San Francisco,CA,94016 +250528,Wired Headphones,1,11.99,2019-09-30 21:56:00,151 Willow St, New York City,NY,10001 +250529,34in Ultrawide Monitor,1,379.99,2019-09-12 18:40:00,886 Ridge St, San Francisco,CA,94016 +250530,ThinkPad Laptop,1,999.99,2019-09-14 14:30:00,52 Washington St, New York City,NY,10001 +250531,Apple Airpods Headphones,1,150.0,2019-09-14 16:47:00,451 West St, San Francisco,CA,94016 +250532,Bose SoundSport Headphones,1,99.99,2019-09-07 09:07:00,484 Willow St, Los Angeles,CA,90001 +250533,USB-C Charging Cable,1,11.95,2019-09-12 18:58:00,832 Walnut St, Portland,OR,97035 +250534,Wired Headphones,1,11.99,2019-09-29 21:37:00,960 Madison St, Dallas,TX,75001 +250534,iPhone,1,700.0,2019-09-29 21:37:00,960 Madison St, Dallas,TX,75001 +250535,AAA Batteries (4-pack),1,2.99,2019-09-07 11:43:00,349 Spruce St, Boston,MA,02215 +250536,USB-C Charging Cable,1,11.95,2019-09-02 21:53:00,702 Maple St, Portland,OR,97035 +250537,20in Monitor,1,109.99,2019-09-30 20:47:00,727 Johnson St, Boston,MA,02215 +250538,Macbook Pro Laptop,1,1700.0,2019-09-26 19:20:00,111 4th St, New York City,NY,10001 +250539,Google Phone,1,600.0,2019-09-06 10:50:00,569 10th St, Boston,MA,02215 +250540,Wired Headphones,1,11.99,2019-09-14 09:15:00,497 Adams St, San Francisco,CA,94016 +250541,Apple Airpods Headphones,1,150.0,2019-09-24 16:23:00,36 Ridge St, Los Angeles,CA,90001 +250542,Apple Airpods Headphones,1,150.0,2019-09-18 14:23:00,832 7th St, San Francisco,CA,94016 +250543,Lightning Charging Cable,1,14.95,2019-09-30 18:39:00,42 4th St, Los Angeles,CA,90001 +250544,Lightning Charging Cable,2,14.95,2019-09-17 20:20:00,673 Center St, San Francisco,CA,94016 +250545,Vareebadd Phone,1,400.0,2019-09-27 23:31:00,948 Cherry St, San Francisco,CA,94016 +250546,Wired Headphones,1,11.99,2019-09-18 16:17:00,311 Hickory St, San Francisco,CA,94016 +250547,Lightning Charging Cable,1,14.95,2019-09-01 11:08:00,111 Park St, San Francisco,CA,94016 +250548,AAA Batteries (4-pack),1,2.99,2019-09-23 15:44:00,138 Center St, New York City,NY,10001 +250549,iPhone,1,700.0,2019-09-11 08:44:00,836 11th St, Seattle,WA,98101 +250549,Lightning Charging Cable,1,14.95,2019-09-11 08:44:00,836 11th St, Seattle,WA,98101 +250550,20in Monitor,1,109.99,2019-09-08 18:45:00,335 Adams St, San Francisco,CA,94016 +250551,Flatscreen TV,1,300.0,2019-09-29 00:29:00,268 Meadow St, Austin,TX,73301 +250551,Lightning Charging Cable,1,14.95,2019-09-29 00:29:00,268 Meadow St, Austin,TX,73301 +250552,Apple Airpods Headphones,1,150.0,2019-09-04 22:17:00,302 Park St, San Francisco,CA,94016 +250553,Bose SoundSport Headphones,1,99.99,2019-09-29 12:10:00,209 Washington St, Dallas,TX,75001 +250554,Wired Headphones,1,11.99,2019-09-05 09:49:00,315 12th St, Atlanta,GA,30301 +250555,Flatscreen TV,1,300.0,2019-09-21 00:50:00,381 4th St, Los Angeles,CA,90001 +250556,Google Phone,1,600.0,2019-09-13 16:06:00,297 Washington St, San Francisco,CA,94016 +250557,Wired Headphones,1,11.99,2019-09-16 09:38:00,272 Forest St, New York City,NY,10001 +250558,USB-C Charging Cable,1,11.95,2019-09-14 13:41:00,160 Church St, Seattle,WA,98101 +250559,Apple Airpods Headphones,1,150.0,2019-09-18 18:45:00,882 Willow St, San Francisco,CA,94016 +250560,34in Ultrawide Monitor,1,379.99,2019-09-28 20:49:00,888 Cherry St, New York City,NY,10001 +250561,USB-C Charging Cable,1,11.95,2019-09-16 19:09:00,965 6th St, San Francisco,CA,94016 +250562,Lightning Charging Cable,1,14.95,2019-09-26 01:14:00,817 Lake St, Los Angeles,CA,90001 +250563,USB-C Charging Cable,1,11.95,2019-09-14 11:26:00,884 1st St, Seattle,WA,98101 +250564,AA Batteries (4-pack),1,3.84,2019-09-04 13:11:00,829 14th St, Seattle,WA,98101 +250565,Apple Airpods Headphones,1,150.0,2019-09-09 15:44:00,314 Ridge St, San Francisco,CA,94016 +250566,AAA Batteries (4-pack),2,2.99,2019-09-24 12:55:00,63 Hill St, New York City,NY,10001 +250567,USB-C Charging Cable,1,11.95,2019-09-22 11:34:00,940 Dogwood St, Atlanta,GA,30301 +250568,Lightning Charging Cable,1,14.95,2019-09-27 16:31:00,583 North St, Austin,TX,73301 +250569,Wired Headphones,1,11.99,2019-09-03 13:53:00,517 Lakeview St, Los Angeles,CA,90001 +250570,AAA Batteries (4-pack),1,2.99,2019-09-02 19:29:00,770 Walnut St, San Francisco,CA,94016 +250571,27in FHD Monitor,1,149.99,2019-09-24 21:07:00,598 Meadow St, Boston,MA,02215 +250572,AAA Batteries (4-pack),1,2.99,2019-09-06 19:30:00,182 West St, San Francisco,CA,94016 +250573,Bose SoundSport Headphones,1,99.99,2019-09-11 20:46:00,592 11th St, Seattle,WA,98101 +250574,27in FHD Monitor,1,149.99,2019-09-12 18:00:00,614 10th St, Dallas,TX,75001 +250575,USB-C Charging Cable,1,11.95,2019-09-30 20:09:00,913 Willow St, Dallas,TX,75001 +250576,Apple Airpods Headphones,1,150.0,2019-09-25 17:49:00,950 River St, Atlanta,GA,30301 +250577,USB-C Charging Cable,1,11.95,2019-09-12 22:56:00,617 10th St, Dallas,TX,75001 +250578,Wired Headphones,1,11.99,2019-09-11 11:05:00,954 Walnut St, Boston,MA,02215 +250579,Apple Airpods Headphones,1,150.0,2019-09-16 14:23:00,886 Meadow St, Boston,MA,02215 +250580,27in 4K Gaming Monitor,1,389.99,2019-09-08 15:36:00,3 Jackson St, Austin,TX,73301 +250581,Macbook Pro Laptop,1,1700.0,2019-09-10 18:44:00,770 12th St, Austin,TX,73301 +250582,27in FHD Monitor,1,149.99,2019-09-08 20:46:00,744 8th St, Atlanta,GA,30301 +250583,34in Ultrawide Monitor,1,379.99,2019-09-15 18:29:00,860 7th St, San Francisco,CA,94016 +250584,Lightning Charging Cable,1,14.95,2019-09-06 14:17:00,531 5th St, Dallas,TX,75001 +250585,27in FHD Monitor,1,149.99,2019-09-20 12:29:00,331 Highland St, Atlanta,GA,30301 +250586,Wired Headphones,1,11.99,2019-09-26 19:11:00,438 Church St, Dallas,TX,75001 +250587,Macbook Pro Laptop,1,1700.0,2019-09-30 11:08:00,818 2nd St, Seattle,WA,98101 +250588,AAA Batteries (4-pack),1,2.99,2019-09-22 13:32:00,287 Jackson St, New York City,NY,10001 +250589,AAA Batteries (4-pack),3,2.99,2019-09-17 16:57:00,713 9th St, Los Angeles,CA,90001 +250590,34in Ultrawide Monitor,1,379.99,2019-09-03 10:36:00,629 Church St, Portland,ME,04101 +250591,USB-C Charging Cable,1,11.95,2019-09-15 18:56:00,477 Johnson St, New York City,NY,10001 +250592,20in Monitor,1,109.99,2019-09-17 11:01:00,640 Hickory St, New York City,NY,10001 +250593,Lightning Charging Cable,1,14.95,2019-09-28 10:16:00,345 Church St, New York City,NY,10001 +250594,Lightning Charging Cable,1,14.95,2019-09-03 13:24:00,531 North St, Portland,OR,97035 +250595,27in FHD Monitor,1,149.99,2019-09-20 02:11:00,338 Lincoln St, Boston,MA,02215 +250596,AAA Batteries (4-pack),1,2.99,2019-09-20 19:21:00,994 Johnson St, San Francisco,CA,94016 +250597,AAA Batteries (4-pack),1,2.99,2019-09-22 10:30:00,804 Sunset St, Los Angeles,CA,90001 +250598,Lightning Charging Cable,1,14.95,2019-09-05 21:41:00,852 Ridge St, Seattle,WA,98101 +250599,Google Phone,1,600.0,2019-09-02 17:24:00,116 1st St, Los Angeles,CA,90001 +250599,USB-C Charging Cable,1,11.95,2019-09-02 17:24:00,116 1st St, Los Angeles,CA,90001 +250600,Bose SoundSport Headphones,1,99.99,2019-09-21 14:45:00,532 Forest St, San Francisco,CA,94016 +250601,Wired Headphones,1,11.99,2019-09-13 08:51:00,236 Walnut St, Boston,MA,02215 +250602,Wired Headphones,1,11.99,2019-09-24 14:28:00,346 1st St, Boston,MA,02215 +250603,27in FHD Monitor,1,149.99,2019-09-28 22:34:00,935 1st St, Seattle,WA,98101 +250604,USB-C Charging Cable,1,11.95,2019-09-19 15:52:00,153 Church St, New York City,NY,10001 +250605,AA Batteries (4-pack),1,3.84,2019-09-08 12:58:00,818 Wilson St, Los Angeles,CA,90001 +250606,Lightning Charging Cable,1,14.95,2019-09-08 20:50:00,504 11th St, New York City,NY,10001 +250607,Lightning Charging Cable,1,14.95,2019-09-03 11:30:00,836 Jackson St, New York City,NY,10001 +250608,27in 4K Gaming Monitor,1,389.99,2019-09-27 17:59:00,124 Center St, New York City,NY,10001 +250609,Lightning Charging Cable,1,14.95,2019-09-12 13:47:00,344 10th St, Dallas,TX,75001 +250610,AAA Batteries (4-pack),1,2.99,2019-09-07 21:20:00,12 Church St, Atlanta,GA,30301 +250611,Wired Headphones,1,11.99,2019-09-03 17:17:00,617 Madison St, Austin,TX,73301 +250611,Flatscreen TV,1,300.0,2019-09-03 17:17:00,617 Madison St, Austin,TX,73301 +250612,USB-C Charging Cable,1,11.95,2019-09-23 09:16:00,672 River St, Los Angeles,CA,90001 +250613,USB-C Charging Cable,1,11.95,2019-09-15 12:57:00,305 South St, Boston,MA,02215 +250614,Wired Headphones,1,11.99,2019-09-29 21:52:00,358 Hickory St, Seattle,WA,98101 +250615,USB-C Charging Cable,1,11.95,2019-09-04 20:52:00,690 4th St, New York City,NY,10001 +250616,Bose SoundSport Headphones,1,99.99,2019-09-11 15:23:00,178 12th St, New York City,NY,10001 +250617,20in Monitor,1,109.99,2019-09-16 10:51:00,949 Cedar St, Austin,TX,73301 +250618,Apple Airpods Headphones,1,150.0,2019-09-23 13:55:00,132 Elm St, Portland,ME,04101 +250619,Wired Headphones,1,11.99,2019-09-25 09:28:00,627 Adams St, Austin,TX,73301 +250620,Bose SoundSport Headphones,1,99.99,2019-09-29 10:44:00,827 Willow St, Atlanta,GA,30301 +250621,27in 4K Gaming Monitor,1,389.99,2019-09-20 17:02:00,994 2nd St, New York City,NY,10001 +250622,AAA Batteries (4-pack),2,2.99,2019-09-17 19:28:00,2 Hickory St, Boston,MA,02215 +250623,Wired Headphones,1,11.99,2019-09-19 21:20:00,640 Johnson St, Atlanta,GA,30301 +250624,AAA Batteries (4-pack),2,2.99,2019-09-10 10:50:00,585 Adams St, Seattle,WA,98101 +250625,iPhone,1,700.0,2019-09-11 20:18:00,225 Forest St, Austin,TX,73301 +250625,Lightning Charging Cable,1,14.95,2019-09-11 20:18:00,225 Forest St, Austin,TX,73301 +250626,Apple Airpods Headphones,1,150.0,2019-09-28 18:25:00,160 Main St, Boston,MA,02215 +250627,Flatscreen TV,1,300.0,2019-09-14 16:06:00,297 Jefferson St, New York City,NY,10001 +250628,Lightning Charging Cable,2,14.95,2019-09-16 22:52:00,723 Willow St, Portland,ME,04101 +250629,USB-C Charging Cable,1,11.95,2019-09-29 00:53:00,98 Hill St, San Francisco,CA,94016 +250630,iPhone,1,700.0,2019-09-28 01:29:00,850 Church St, Portland,OR,97035 +250631,Lightning Charging Cable,1,14.95,2019-09-13 11:58:00,910 1st St, Los Angeles,CA,90001 +250632,Lightning Charging Cable,1,14.95,2019-09-17 13:09:00,48 6th St, New York City,NY,10001 +250633,AAA Batteries (4-pack),1,2.99,2019-09-14 21:28:00,286 7th St, Boston,MA,02215 +250634,Wired Headphones,1,11.99,2019-09-18 16:08:00,533 11th St, Boston,MA,02215 +250635,Bose SoundSport Headphones,1,99.99,2019-09-10 09:55:00,813 11th St, San Francisco,CA,94016 +250636,Bose SoundSport Headphones,1,99.99,2019-09-22 20:30:00,442 Elm St, Portland,OR,97035 +250637,Bose SoundSport Headphones,1,99.99,2019-09-06 08:12:00,149 River St, San Francisco,CA,94016 +250638,USB-C Charging Cable,1,11.95,2019-09-27 20:29:00,269 North St, Seattle,WA,98101 +250639,USB-C Charging Cable,1,11.95,2019-09-19 15:24:00,442 West St, New York City,NY,10001 +250640,27in 4K Gaming Monitor,1,389.99,2019-09-04 21:36:00,743 Spruce St, Dallas,TX,75001 +250641,LG Dryer,1,600.0,2019-09-06 22:07:00,843 7th St, San Francisco,CA,94016 +250642,Lightning Charging Cable,1,14.95,2019-09-03 15:01:00,753 Madison St, San Francisco,CA,94016 +250643,Wired Headphones,1,11.99,2019-09-26 01:53:00,541 Hill St, Los Angeles,CA,90001 +250644,LG Dryer,1,600.0,2019-09-08 07:46:00,560 Cherry St, San Francisco,CA,94016 +250645,Wired Headphones,1,11.99,2019-09-03 01:08:00,1 Jefferson St, Los Angeles,CA,90001 +250646,USB-C Charging Cable,1,11.95,2019-09-15 14:38:00,788 8th St, San Francisco,CA,94016 +250647,AAA Batteries (4-pack),1,2.99,2019-09-09 12:45:00,73 Chestnut St, San Francisco,CA,94016 +250648,AAA Batteries (4-pack),1,2.99,2019-09-16 14:55:00,943 Wilson St, Seattle,WA,98101 +250649,Apple Airpods Headphones,1,150.0,2019-09-27 22:45:00,908 7th St, Seattle,WA,98101 +250650,iPhone,1,700.0,2019-09-02 17:26:00,183 Washington St, Portland,OR,97035 +250651,Wired Headphones,1,11.99,2019-09-05 07:39:00,460 Lincoln St, Austin,TX,73301 +250652,AA Batteries (4-pack),1,3.84,2019-09-01 11:58:00,316 Cedar St, Portland,OR,97035 +250653,AAA Batteries (4-pack),1,2.99,2019-09-09 11:39:00,35 Elm St, Atlanta,GA,30301 +250654,Wired Headphones,2,11.99,2019-09-02 00:17:00,560 Sunset St, San Francisco,CA,94016 +250655,27in FHD Monitor,1,149.99,2019-09-06 11:35:00,384 Elm St, Boston,MA,02215 +250656,Lightning Charging Cable,1,14.95,2019-09-23 22:37:00,646 North St, New York City,NY,10001 +250657,ThinkPad Laptop,1,999.99,2019-09-29 17:53:00,146 Hickory St, Atlanta,GA,30301 +250658,Wired Headphones,1,11.99,2019-09-03 09:51:00,474 9th St, Dallas,TX,75001 +250659,20in Monitor,1,109.99,2019-09-18 08:24:00,748 Adams St, San Francisco,CA,94016 +250660,ThinkPad Laptop,1,999.99,2019-09-30 08:26:00,312 Sunset St, San Francisco,CA,94016 +250661,Apple Airpods Headphones,1,150.0,2019-09-07 09:47:00,896 9th St, San Francisco,CA,94016 +250662,Apple Airpods Headphones,1,150.0,2019-09-28 11:42:00,869 12th St, San Francisco,CA,94016 +250663,USB-C Charging Cable,1,11.95,2019-09-12 17:55:00,874 9th St, New York City,NY,10001 +250664,AAA Batteries (4-pack),1,2.99,2019-09-16 12:26:00,460 9th St, Dallas,TX,75001 +250665,34in Ultrawide Monitor,1,379.99,2019-09-12 22:18:00,628 Adams St, New York City,NY,10001 +250666,AAA Batteries (4-pack),1,2.99,2019-09-14 16:00:00,296 Church St, Dallas,TX,75001 +250667,AA Batteries (4-pack),1,3.84,2019-09-22 12:21:00,220 Center St, Atlanta,GA,30301 +250668,27in FHD Monitor,1,149.99,2019-09-21 08:01:00,715 10th St, San Francisco,CA,94016 +250669,AA Batteries (4-pack),1,3.84,2019-09-09 18:00:00,976 Chestnut St, San Francisco,CA,94016 +250670,Flatscreen TV,1,300.0,2019-09-19 19:39:00,928 West St, Portland,OR,97035 +250671,USB-C Charging Cable,2,11.95,2019-09-27 18:09:00,414 Chestnut St, Portland,OR,97035 +250672,Bose SoundSport Headphones,1,99.99,2019-09-05 16:21:00,50 4th St, San Francisco,CA,94016 +250673,ThinkPad Laptop,1,999.99,2019-09-07 11:09:00,466 Cherry St, New York City,NY,10001 +250673,LG Dryer,1,600.0,2019-09-07 11:09:00,466 Cherry St, New York City,NY,10001 +250674,Bose SoundSport Headphones,1,99.99,2019-09-24 10:15:00,816 9th St, Los Angeles,CA,90001 +250675,USB-C Charging Cable,1,11.95,2019-09-05 14:49:00,53 4th St, Boston,MA,02215 +250676,AAA Batteries (4-pack),1,2.99,2019-09-18 21:36:00,354 Willow St, New York City,NY,10001 +250677,AAA Batteries (4-pack),3,2.99,2019-09-10 13:09:00,270 13th St, Boston,MA,02215 +250678,Lightning Charging Cable,1,14.95,2019-09-06 18:16:00,315 4th St, New York City,NY,10001 +250679,Lightning Charging Cable,1,14.95,2019-09-21 15:36:00,398 Center St, New York City,NY,10001 +250680,Google Phone,1,600.0,2019-09-26 08:10:00,977 Jackson St, Boston,MA,02215 +250681,Wired Headphones,1,11.99,2019-09-23 16:22:00,73 Jackson St, Boston,MA,02215 +250682,20in Monitor,1,109.99,2019-09-07 12:00:00,658 Park St, Austin,TX,73301 +250683,USB-C Charging Cable,1,11.95,2019-09-19 23:44:00,111 Meadow St, New York City,NY,10001 +250684,AAA Batteries (4-pack),1,2.99,2019-10-01 03:38:00,985 Pine St, San Francisco,CA,94016 +250685,ThinkPad Laptop,1,999.99,2019-09-10 14:01:00,511 North St, Boston,MA,02215 +250686,Bose SoundSport Headphones,1,99.99,2019-09-28 08:55:00,144 Washington St, Boston,MA,02215 +250687,USB-C Charging Cable,1,11.95,2019-09-08 07:07:00,373 Walnut St, Los Angeles,CA,90001 +250688,Vareebadd Phone,1,400.0,2019-09-23 20:45:00,148 Church St, Atlanta,GA,30301 +250689,LG Washing Machine,1,600.0,2019-09-19 15:46:00,824 Washington St, Los Angeles,CA,90001 +250690,27in 4K Gaming Monitor,1,389.99,2019-09-24 10:24:00,430 Jackson St, Boston,MA,02215 +250691,34in Ultrawide Monitor,1,379.99,2019-09-15 14:57:00,475 West St, Portland,OR,97035 +250692,Bose SoundSport Headphones,1,99.99,2019-09-06 13:22:00,313 2nd St, Los Angeles,CA,90001 +250693,27in FHD Monitor,1,149.99,2019-09-11 22:04:00,512 Pine St, Los Angeles,CA,90001 +250694,USB-C Charging Cable,1,11.95,2019-09-16 10:20:00,276 Hickory St, Boston,MA,02215 +250695,AAA Batteries (4-pack),1,2.99,2019-09-02 17:41:00,875 4th St, Boston,MA,02215 +250696,ThinkPad Laptop,1,999.99,2019-09-10 13:09:00,312 Willow St, San Francisco,CA,94016 +250697,AA Batteries (4-pack),1,3.84,2019-09-07 12:28:00,294 12th St, Los Angeles,CA,90001 +250698,27in FHD Monitor,1,149.99,2019-09-13 13:26:00,585 14th St, Boston,MA,02215 +250699,27in FHD Monitor,1,149.99,2019-09-27 22:56:00,299 Wilson St, Dallas,TX,75001 +250700,Google Phone,1,600.0,2019-09-10 18:26:00,15 Jackson St, Portland,OR,97035 +250701,Apple Airpods Headphones,1,150.0,2019-09-10 00:50:00,915 Highland St, San Francisco,CA,94016 +250702,34in Ultrawide Monitor,1,379.99,2019-09-17 01:25:00,936 Hickory St, Atlanta,GA,30301 +250703,AAA Batteries (4-pack),3,2.99,2019-09-25 12:09:00,79 Lincoln St, San Francisco,CA,94016 +250704,Vareebadd Phone,1,400.0,2019-09-10 20:42:00,841 Lincoln St, New York City,NY,10001 +250705,USB-C Charging Cable,1,11.95,2019-09-15 17:27:00,579 8th St, New York City,NY,10001 +250706,Lightning Charging Cable,1,14.95,2019-09-27 16:28:00,192 13th St, San Francisco,CA,94016 +250707,AAA Batteries (4-pack),1,2.99,2019-09-16 12:56:00,73 Walnut St, New York City,NY,10001 +250708,Lightning Charging Cable,1,14.95,2019-09-17 14:45:00,857 Walnut St, Dallas,TX,75001 +250709,27in 4K Gaming Monitor,1,389.99,2019-09-16 12:47:00,865 12th St, Los Angeles,CA,90001 +250710,27in 4K Gaming Monitor,1,389.99,2019-09-19 09:42:00,485 Jackson St, San Francisco,CA,94016 +250711,AA Batteries (4-pack),2,3.84,2019-09-12 17:03:00,1 14th St, San Francisco,CA,94016 +250712,AAA Batteries (4-pack),1,2.99,2019-09-27 20:11:00,213 Maple St, San Francisco,CA,94016 +250713,USB-C Charging Cable,1,11.95,2019-09-25 12:43:00,623 Willow St, Los Angeles,CA,90001 +250714,USB-C Charging Cable,1,11.95,2019-09-30 10:22:00,810 Park St, San Francisco,CA,94016 +250715,Wired Headphones,1,11.99,2019-09-03 16:50:00,534 Lincoln St, New York City,NY,10001 +250716,Wired Headphones,1,11.99,2019-09-20 11:47:00,477 West St, New York City,NY,10001 +250717,USB-C Charging Cable,1,11.95,2019-09-05 21:41:00,232 Cherry St, San Francisco,CA,94016 +250718,Macbook Pro Laptop,1,1700.0,2019-09-28 09:32:00,999 Jackson St, Boston,MA,02215 +250719,AA Batteries (4-pack),2,3.84,2019-09-02 20:48:00,304 11th St, Atlanta,GA,30301 +250720,Apple Airpods Headphones,1,150.0,2019-09-09 13:01:00,535 4th St, Portland,OR,97035 +250721,Bose SoundSport Headphones,1,99.99,2019-09-16 11:11:00,23 Highland St, San Francisco,CA,94016 +250722,20in Monitor,1,109.99,2019-09-03 06:07:00,133 Washington St, New York City,NY,10001 +250723,Lightning Charging Cable,1,14.95,2019-09-25 15:01:00,630 Forest St, Portland,OR,97035 +250724,Google Phone,1,600.0,2019-09-26 23:07:00,385 Johnson St, San Francisco,CA,94016 +250725,Bose SoundSport Headphones,1,99.99,2019-09-20 19:04:00,699 12th St, New York City,NY,10001 +250726,27in 4K Gaming Monitor,1,389.99,2019-09-27 22:29:00,909 Forest St, New York City,NY,10001 +250727,27in FHD Monitor,1,149.99,2019-09-06 10:11:00,843 Ridge St, Austin,TX,73301 +250728,USB-C Charging Cable,1,11.95,2019-09-29 09:04:00,42 Church St, Seattle,WA,98101 +250729,AA Batteries (4-pack),3,3.84,2019-09-23 11:27:00,68 Church St, Atlanta,GA,30301 +250730,27in FHD Monitor,1,149.99,2019-09-10 17:35:00,139 Walnut St, Atlanta,GA,30301 +250731,Bose SoundSport Headphones,1,99.99,2019-09-12 12:14:00,523 Walnut St, San Francisco,CA,94016 +250732,Macbook Pro Laptop,1,1700.0,2019-09-06 16:37:00,268 Hill St, Seattle,WA,98101 +250733,USB-C Charging Cable,1,11.95,2019-09-20 21:22:00,420 Cedar St, Portland,OR,97035 +250734,USB-C Charging Cable,1,11.95,2019-09-12 11:15:00,295 Madison St, Atlanta,GA,30301 +250735,Apple Airpods Headphones,1,150.0,2019-09-24 15:19:00,929 12th St, San Francisco,CA,94016 +250736,AAA Batteries (4-pack),1,2.99,2019-09-28 14:08:00,634 5th St, San Francisco,CA,94016 +250737,USB-C Charging Cable,1,11.95,2019-09-02 22:04:00,851 6th St, Boston,MA,02215 +250738,AA Batteries (4-pack),1,3.84,2019-09-16 01:13:00,491 Washington St, Seattle,WA,98101 +250739,Bose SoundSport Headphones,1,99.99,2019-09-29 16:41:00,901 Wilson St, Los Angeles,CA,90001 +250740,iPhone,1,700.0,2019-09-19 09:40:00,778 Johnson St, Seattle,WA,98101 +250741,Google Phone,1,600.0,2019-09-16 17:38:00,759 Dogwood St, San Francisco,CA,94016 +250742,AA Batteries (4-pack),1,3.84,2019-09-23 14:05:00,77 Elm St, Boston,MA,02215 +250743,AA Batteries (4-pack),1,3.84,2019-09-27 19:21:00,923 Chestnut St, New York City,NY,10001 +250744,Macbook Pro Laptop,1,1700.0,2019-09-25 22:05:00,683 Dogwood St, San Francisco,CA,94016 +250745,Apple Airpods Headphones,1,150.0,2019-09-05 15:56:00,409 River St, San Francisco,CA,94016 +250746,Apple Airpods Headphones,1,150.0,2019-09-12 08:47:00,21 West St, Atlanta,GA,30301 +250747,Vareebadd Phone,1,400.0,2019-09-29 13:24:00,230 9th St, Seattle,WA,98101 +250747,USB-C Charging Cable,1,11.95,2019-09-29 13:24:00,230 9th St, Seattle,WA,98101 +250748,Bose SoundSport Headphones,1,99.99,2019-09-04 17:27:00,728 Jefferson St, Boston,MA,02215 +250749,AAA Batteries (4-pack),1,2.99,2019-09-29 16:26:00,183 Highland St, San Francisco,CA,94016 +250750,Wired Headphones,1,11.99,2019-09-30 14:00:00,548 9th St, Portland,OR,97035 +250751,Apple Airpods Headphones,1,150.0,2019-09-16 12:04:00,363 Wilson St, Austin,TX,73301 +250752,27in 4K Gaming Monitor,1,389.99,2019-09-25 15:57:00,602 Elm St, San Francisco,CA,94016 +250753,USB-C Charging Cable,1,11.95,2019-09-02 12:57:00,749 Maple St, Los Angeles,CA,90001 +250754,iPhone,1,700.0,2019-09-28 12:58:00,170 Dogwood St, Portland,OR,97035 +250754,Lightning Charging Cable,1,14.95,2019-09-28 12:58:00,170 Dogwood St, Portland,OR,97035 +250754,Wired Headphones,1,11.99,2019-09-28 12:58:00,170 Dogwood St, Portland,OR,97035 +250755,USB-C Charging Cable,1,11.95,2019-09-11 20:11:00,659 West St, San Francisco,CA,94016 +250756,AAA Batteries (4-pack),1,2.99,2019-09-09 17:06:00,134 Washington St, Atlanta,GA,30301 +250757,Bose SoundSport Headphones,1,99.99,2019-09-23 18:22:00,170 Lincoln St, San Francisco,CA,94016 +250758,Apple Airpods Headphones,1,150.0,2019-09-28 16:18:00,865 Center St, Seattle,WA,98101 +250759,USB-C Charging Cable,1,11.95,2019-09-27 20:25:00,243 Jefferson St, Boston,MA,02215 +250760,Lightning Charging Cable,1,14.95,2019-09-07 18:41:00,727 Hickory St, Austin,TX,73301 +250761,Google Phone,1,600.0,2019-09-16 13:40:00,422 Hill St, Los Angeles,CA,90001 +250762,USB-C Charging Cable,1,11.95,2019-09-09 01:08:00,998 Lincoln St, San Francisco,CA,94016 +250763,Bose SoundSport Headphones,1,99.99,2019-09-08 07:32:00,360 4th St, Los Angeles,CA,90001 +250764,USB-C Charging Cable,1,11.95,2019-09-07 21:15:00,829 Walnut St, Los Angeles,CA,90001 +250765,ThinkPad Laptop,1,999.99,2019-09-20 07:43:00,898 8th St, Boston,MA,02215 +250766,34in Ultrawide Monitor,1,379.99,2019-09-01 12:58:00,278 11th St, Dallas,TX,75001 +250767,USB-C Charging Cable,1,11.95,2019-09-27 01:07:00,766 5th St, Seattle,WA,98101 +250768,27in FHD Monitor,1,149.99,2019-09-28 21:54:00,77 Center St, San Francisco,CA,94016 +250769,Flatscreen TV,1,300.0,2019-09-19 15:20:00,773 7th St, San Francisco,CA,94016 +250770,AA Batteries (4-pack),1,3.84,2019-09-07 11:09:00,626 Meadow St, Seattle,WA,98101 +250771,Wired Headphones,1,11.99,2019-09-29 21:54:00,689 Maple St, San Francisco,CA,94016 +250772,Lightning Charging Cable,1,14.95,2019-09-16 19:17:00,107 Adams St, Los Angeles,CA,90001 +250773,27in FHD Monitor,1,149.99,2019-09-10 20:58:00,164 Hill St, Los Angeles,CA,90001 +250774,AAA Batteries (4-pack),1,2.99,2019-09-04 21:39:00,938 10th St, San Francisco,CA,94016 +250775,Lightning Charging Cable,1,14.95,2019-09-15 20:37:00,114 8th St, Los Angeles,CA,90001 +250776,USB-C Charging Cable,1,11.95,2019-09-07 17:11:00,595 Hickory St, Boston,MA,02215 +250777,34in Ultrawide Monitor,1,379.99,2019-09-21 12:31:00,774 Spruce St, Seattle,WA,98101 +250778,USB-C Charging Cable,1,11.95,2019-09-18 07:25:00,193 4th St, New York City,NY,10001 +250779,27in FHD Monitor,1,149.99,2019-09-18 16:21:00,503 Lakeview St, San Francisco,CA,94016 +250780,Lightning Charging Cable,1,14.95,2019-09-24 12:26:00,50 11th St, New York City,NY,10001 +250781,Wired Headphones,2,11.99,2019-09-12 12:52:00,370 6th St, Boston,MA,02215 +250782,USB-C Charging Cable,1,11.95,2019-09-04 13:22:00,172 Center St, San Francisco,CA,94016 +250783,AA Batteries (4-pack),1,3.84,2019-09-12 12:13:00,170 Willow St, Los Angeles,CA,90001 +250784,Google Phone,1,600.0,2019-09-04 13:52:00,261 Lincoln St, Boston,MA,02215 +250784,USB-C Charging Cable,1,11.95,2019-09-04 13:52:00,261 Lincoln St, Boston,MA,02215 +250785,34in Ultrawide Monitor,1,379.99,2019-09-23 13:18:00,136 Spruce St, Boston,MA,02215 +250786,AA Batteries (4-pack),1,3.84,2019-09-05 18:24:00,406 Ridge St, San Francisco,CA,94016 +250787,AAA Batteries (4-pack),1,2.99,2019-09-13 16:33:00,618 South St, San Francisco,CA,94016 +250788,AAA Batteries (4-pack),1,2.99,2019-09-19 11:07:00,453 North St, New York City,NY,10001 +250789,27in FHD Monitor,1,149.99,2019-09-09 00:48:00,565 Forest St, San Francisco,CA,94016 +250790,AAA Batteries (4-pack),2,2.99,2019-09-07 20:53:00,92 9th St, Atlanta,GA,30301 +250791,Wired Headphones,1,11.99,2019-09-30 11:35:00,395 North St, San Francisco,CA,94016 +250792,AA Batteries (4-pack),3,3.84,2019-09-23 18:13:00,926 Main St, Seattle,WA,98101 +250793,Lightning Charging Cable,1,14.95,2019-09-05 12:02:00,968 Lakeview St, Dallas,TX,75001 +250794,USB-C Charging Cable,1,11.95,2019-09-21 11:52:00,655 Johnson St, Portland,OR,97035 +250795,Wired Headphones,1,11.99,2019-09-27 00:57:00,963 Dogwood St, Portland,OR,97035 +250796,Lightning Charging Cable,1,14.95,2019-09-14 18:47:00,179 7th St, Los Angeles,CA,90001 +250797,USB-C Charging Cable,1,11.95,2019-09-24 21:51:00,885 Hill St, Los Angeles,CA,90001 +250798,iPhone,1,700.0,2019-09-29 23:52:00,137 Cherry St, San Francisco,CA,94016 +250798,Lightning Charging Cable,1,14.95,2019-09-29 23:52:00,137 Cherry St, San Francisco,CA,94016 +250799,USB-C Charging Cable,1,11.95,2019-09-05 18:45:00,181 Lincoln St, Portland,OR,97035 +250800,Apple Airpods Headphones,1,150.0,2019-09-28 20:46:00,366 6th St, Los Angeles,CA,90001 +250801,Bose SoundSport Headphones,1,99.99,2019-09-04 09:07:00,231 Elm St, Boston,MA,02215 +250802,USB-C Charging Cable,1,11.95,2019-09-05 20:16:00,919 14th St, Boston,MA,02215 +250803,20in Monitor,1,109.99,2019-09-14 13:20:00,226 Washington St, San Francisco,CA,94016 +250804,Lightning Charging Cable,1,14.95,2019-09-16 14:11:00,50 Spruce St, New York City,NY,10001 +250805,iPhone,1,700.0,2019-09-20 20:59:00,851 Hill St, San Francisco,CA,94016 +250806,AA Batteries (4-pack),2,3.84,2019-09-12 13:25:00,705 Johnson St, Dallas,TX,75001 +250807,USB-C Charging Cable,1,11.95,2019-09-03 02:25:00,870 7th St, Austin,TX,73301 +250808,AAA Batteries (4-pack),1,2.99,2019-09-17 19:07:00,517 Maple St, Los Angeles,CA,90001 +250809,27in 4K Gaming Monitor,1,389.99,2019-09-18 20:27:00,938 Elm St, San Francisco,CA,94016 +250810,AA Batteries (4-pack),1,3.84,2019-09-26 11:27:00,784 Elm St, Boston,MA,02215 +250811,AAA Batteries (4-pack),2,2.99,2019-09-04 16:59:00,540 Church St, Dallas,TX,75001 +250812,34in Ultrawide Monitor,1,379.99,2019-09-12 17:00:00,302 11th St, Dallas,TX,75001 +250813,USB-C Charging Cable,1,11.95,2019-09-30 21:04:00,920 Pine St, Los Angeles,CA,90001 +250814,Lightning Charging Cable,1,14.95,2019-09-27 16:20:00,426 Madison St, Atlanta,GA,30301 +250815,Apple Airpods Headphones,1,150.0,2019-09-10 19:59:00,556 Park St, Seattle,WA,98101 +250816,AAA Batteries (4-pack),2,2.99,2019-09-03 11:55:00,298 Washington St, Boston,MA,02215 +250817,AAA Batteries (4-pack),1,2.99,2019-09-27 20:14:00,154 Jackson St, Boston,MA,02215 +250818,27in FHD Monitor,1,149.99,2019-09-07 13:45:00,59 Lake St, Austin,TX,73301 +250818,Apple Airpods Headphones,1,150.0,2019-09-07 13:45:00,59 Lake St, Austin,TX,73301 +250819,Wired Headphones,2,11.99,2019-09-24 19:14:00,681 14th St, New York City,NY,10001 +250820,iPhone,1,700.0,2019-09-16 23:15:00,753 Dogwood St, Portland,OR,97035 +250820,Wired Headphones,1,11.99,2019-09-16 23:15:00,753 Dogwood St, Portland,OR,97035 +250821,Bose SoundSport Headphones,1,99.99,2019-09-14 13:32:00,212 North St, New York City,NY,10001 +250822,USB-C Charging Cable,1,11.95,2019-09-13 11:22:00,134 South St, Seattle,WA,98101 +250823,Bose SoundSport Headphones,1,99.99,2019-09-28 19:07:00,672 North St, Dallas,TX,75001 +250824,Lightning Charging Cable,2,14.95,2019-09-07 14:53:00,344 Willow St, Seattle,WA,98101 +250825,Apple Airpods Headphones,1,150.0,2019-09-30 16:16:00,325 10th St, Seattle,WA,98101 +250826,AAA Batteries (4-pack),1,2.99,2019-09-03 12:14:00,162 8th St, San Francisco,CA,94016 +250827,iPhone,1,700.0,2019-09-12 00:11:00,892 11th St, Seattle,WA,98101 +250828,Apple Airpods Headphones,1,150.0,2019-09-11 13:56:00,419 14th St, San Francisco,CA,94016 +250829,USB-C Charging Cable,1,11.95,2019-09-16 19:59:00,369 Cedar St, Boston,MA,02215 +250830,AA Batteries (4-pack),2,3.84,2019-09-28 12:39:00,528 South St, Boston,MA,02215 +250831,Lightning Charging Cable,1,14.95,2019-09-19 22:25:00,275 Madison St, San Francisco,CA,94016 +250832,iPhone,1,700.0,2019-09-08 08:16:00,750 Willow St, New York City,NY,10001 +250832,Lightning Charging Cable,2,14.95,2019-09-08 08:16:00,750 Willow St, New York City,NY,10001 +250833,34in Ultrawide Monitor,1,379.99,2019-09-17 23:56:00,869 Adams St, Los Angeles,CA,90001 +250834,LG Washing Machine,1,600.0,2019-09-09 12:24:00,263 Jefferson St, New York City,NY,10001 +250835,Bose SoundSport Headphones,1,99.99,2019-09-12 09:56:00,805 Jefferson St, New York City,NY,10001 +250836,Lightning Charging Cable,1,14.95,2019-09-03 16:19:00,21 Elm St, San Francisco,CA,94016 +250837,Google Phone,1,600.0,2019-09-28 14:51:00,97 Highland St, Boston,MA,02215 +250837,USB-C Charging Cable,1,11.95,2019-09-28 14:51:00,97 Highland St, Boston,MA,02215 +250838,27in 4K Gaming Monitor,1,389.99,2019-09-21 09:51:00,791 Jefferson St, New York City,NY,10001 +250839,AAA Batteries (4-pack),2,2.99,2019-09-15 11:04:00,515 Lake St, Los Angeles,CA,90001 +250840,27in 4K Gaming Monitor,1,389.99,2019-09-02 17:15:00,129 9th St, Boston,MA,02215 +250841,AAA Batteries (4-pack),1,2.99,2019-09-05 15:46:00,835 West St, Seattle,WA,98101 +250842,Apple Airpods Headphones,1,150.0,2019-09-15 16:49:00,797 River St, Boston,MA,02215 +250843,USB-C Charging Cable,1,11.95,2019-09-27 01:39:00,397 Sunset St, Austin,TX,73301 +250844,Lightning Charging Cable,1,14.95,2019-09-19 21:11:00,443 West St, Dallas,TX,75001 +250845,Bose SoundSport Headphones,1,99.99,2019-09-14 01:36:00,793 Jefferson St, San Francisco,CA,94016 +250846,Lightning Charging Cable,1,14.95,2019-09-03 12:38:00,781 8th St, New York City,NY,10001 +250847,Wired Headphones,1,11.99,2019-09-26 19:55:00,335 7th St, Austin,TX,73301 +250848,AA Batteries (4-pack),1,3.84,2019-09-12 14:26:00,60 Center St, Atlanta,GA,30301 +250849,34in Ultrawide Monitor,1,379.99,2019-09-27 18:54:00,552 South St, Atlanta,GA,30301 +250850,Google Phone,1,600.0,2019-09-15 15:29:00,186 Lincoln St, Los Angeles,CA,90001 +250850,USB-C Charging Cable,1,11.95,2019-09-15 15:29:00,186 Lincoln St, Los Angeles,CA,90001 +250851,AA Batteries (4-pack),1,3.84,2019-09-27 20:24:00,753 Elm St, Los Angeles,CA,90001 +250852,AA Batteries (4-pack),4,3.84,2019-09-19 22:35:00,473 Main St, Atlanta,GA,30301 +250853,USB-C Charging Cable,1,11.95,2019-09-06 19:48:00,483 Jefferson St, Los Angeles,CA,90001 +250854,LG Washing Machine,1,600.0,2019-09-29 16:59:00,47 7th St, San Francisco,CA,94016 +250855,AA Batteries (4-pack),2,3.84,2019-09-13 09:20:00,456 Spruce St, Portland,OR,97035 +250856,USB-C Charging Cable,1,11.95,2019-09-28 20:03:00,392 Johnson St, San Francisco,CA,94016 +250857,Apple Airpods Headphones,1,150.0,2019-09-09 18:21:00,850 12th St, Boston,MA,02215 +250858,USB-C Charging Cable,1,11.95,2019-09-20 15:33:00,947 Lake St, Austin,TX,73301 +250859,Wired Headphones,2,11.99,2019-09-03 09:23:00,174 River St, Dallas,TX,75001 +250860,Lightning Charging Cable,1,14.95,2019-09-27 15:41:00,944 Lincoln St, San Francisco,CA,94016 +250861,34in Ultrawide Monitor,1,379.99,2019-09-15 10:48:00,693 Hickory St, San Francisco,CA,94016 +250862,AA Batteries (4-pack),2,3.84,2019-09-20 22:59:00,42 Wilson St, Portland,OR,97035 +250863,Lightning Charging Cable,1,14.95,2019-09-27 17:34:00,50 8th St, Los Angeles,CA,90001 +250864,USB-C Charging Cable,1,11.95,2019-09-13 10:52:00,627 Maple St, Dallas,TX,75001 +250865,27in 4K Gaming Monitor,1,389.99,2019-09-01 17:18:00,581 11th St, Dallas,TX,75001 +250866,USB-C Charging Cable,1,11.95,2019-09-21 10:50:00,957 Cherry St, Los Angeles,CA,90001 +250867,ThinkPad Laptop,1,999.99,2019-09-13 09:49:00,878 7th St, Boston,MA,02215 +250868,AA Batteries (4-pack),1,3.84,2019-09-06 18:42:00,856 Pine St, San Francisco,CA,94016 +250869,Macbook Pro Laptop,1,1700.0,2019-09-14 15:16:00,660 Pine St, San Francisco,CA,94016 +250870,Google Phone,1,600.0,2019-09-20 14:50:00,589 Jefferson St, Seattle,WA,98101 +250871,Google Phone,1,600.0,2019-09-13 11:09:00,369 Ridge St, Seattle,WA,98101 +250872,USB-C Charging Cable,2,11.95,2019-09-13 11:30:00,13 9th St, San Francisco,CA,94016 +250873,Macbook Pro Laptop,1,1700.0,2019-09-25 11:20:00,576 Maple St, Dallas,TX,75001 +250874,AA Batteries (4-pack),1,3.84,2019-09-24 09:05:00,841 Park St, New York City,NY,10001 +250875,Wired Headphones,3,11.99,2019-09-13 20:07:00,791 Wilson St, San Francisco,CA,94016 +250876,Lightning Charging Cable,1,14.95,2019-09-19 14:44:00,508 6th St, Boston,MA,02215 +250877,27in FHD Monitor,1,149.99,2019-09-23 17:01:00,854 Dogwood St, San Francisco,CA,94016 +250878,iPhone,1,700.0,2019-09-12 00:10:00,509 Dogwood St, Los Angeles,CA,90001 +250879,Wired Headphones,1,11.99,2019-09-26 16:19:00,946 1st St, Atlanta,GA,30301 +250880,Lightning Charging Cable,1,14.95,2019-09-28 13:22:00,868 Maple St, New York City,NY,10001 +250881,Apple Airpods Headphones,1,150.0,2019-09-03 13:01:00,771 8th St, Austin,TX,73301 +250882,Flatscreen TV,1,300.0,2019-09-22 20:50:00,207 Jefferson St, San Francisco,CA,94016 +250883,AA Batteries (4-pack),1,3.84,2019-09-19 06:47:00,413 Church St, Los Angeles,CA,90001 +250884,Lightning Charging Cable,1,14.95,2019-09-16 17:02:00,342 Jackson St, San Francisco,CA,94016 +250885,Apple Airpods Headphones,1,150.0,2019-09-30 13:42:00,564 South St, Dallas,TX,75001 +250886,iPhone,1,700.0,2019-09-03 20:07:00,566 North St, San Francisco,CA,94016 +250886,Lightning Charging Cable,1,14.95,2019-09-03 20:07:00,566 North St, San Francisco,CA,94016 +250887,USB-C Charging Cable,1,11.95,2019-09-14 20:17:00,389 Elm St, Seattle,WA,98101 +250888,USB-C Charging Cable,1,11.95,2019-09-09 17:46:00,776 Spruce St, New York City,NY,10001 +250889,27in FHD Monitor,1,149.99,2019-09-08 11:57:00,763 North St, Austin,TX,73301 +250890,Apple Airpods Headphones,1,150.0,2019-09-04 19:49:00,447 4th St, Austin,TX,73301 +250891,Wired Headphones,1,11.99,2019-09-02 23:22:00,811 10th St, San Francisco,CA,94016 +250892,Wired Headphones,1,11.99,2019-09-21 22:08:00,339 Main St, New York City,NY,10001 +250893,iPhone,1,700.0,2019-09-14 11:37:00,381 Church St, Seattle,WA,98101 +250894,AAA Batteries (4-pack),3,2.99,2019-09-18 14:34:00,75 Hickory St, Portland,OR,97035 +250895,34in Ultrawide Monitor,1,379.99,2019-09-28 14:03:00,60 Lakeview St, Atlanta,GA,30301 +250896,Lightning Charging Cable,1,14.95,2019-09-26 14:08:00,429 Church St, Los Angeles,CA,90001 +250897,27in 4K Gaming Monitor,1,389.99,2019-09-13 18:00:00,124 Church St, Atlanta,GA,30301 +250898,Wired Headphones,1,11.99,2019-09-09 15:19:00,730 South St, Seattle,WA,98101 +250899,Apple Airpods Headphones,1,150.0,2019-09-07 19:43:00,572 13th St, New York City,NY,10001 +250900,USB-C Charging Cable,1,11.95,2019-09-20 09:36:00,907 Highland St, Boston,MA,02215 +250901,USB-C Charging Cable,1,11.95,2019-09-02 01:23:00,278 Highland St, Los Angeles,CA,90001 +250902,Lightning Charging Cable,1,14.95,2019-09-26 09:19:00,124 Sunset St, Austin,TX,73301 +250903,Bose SoundSport Headphones,1,99.99,2019-09-13 13:27:00,496 12th St, New York City,NY,10001 +250904,Lightning Charging Cable,1,14.95,2019-09-02 20:09:00,105 Lincoln St, Los Angeles,CA,90001 +250905,Bose SoundSport Headphones,1,99.99,2019-09-19 21:35:00,900 Ridge St, Portland,OR,97035 +250906,AAA Batteries (4-pack),1,2.99,2019-09-17 10:34:00,703 Jefferson St, Los Angeles,CA,90001 +250907,USB-C Charging Cable,1,11.95,2019-09-30 19:30:00,631 Lincoln St, Austin,TX,73301 +250908,Wired Headphones,1,11.99,2019-09-26 12:30:00,353 Meadow St, Dallas,TX,75001 +250909,Apple Airpods Headphones,1,150.0,2019-09-17 18:37:00,467 Cedar St, Seattle,WA,98101 +250910,AA Batteries (4-pack),2,3.84,2019-09-25 14:50:00,376 Forest St, Boston,MA,02215 +250911,Wired Headphones,1,11.99,2019-09-17 10:17:00,867 Meadow St, Los Angeles,CA,90001 +250912,Flatscreen TV,1,300.0,2019-09-24 23:27:00,563 2nd St, Austin,TX,73301 +250913,Bose SoundSport Headphones,1,99.99,2019-09-02 15:08:00,219 North St, Seattle,WA,98101 +250914,Google Phone,1,600.0,2019-09-29 18:56:00,560 Walnut St, Portland,OR,97035 +250914,Bose SoundSport Headphones,1,99.99,2019-09-29 18:56:00,560 Walnut St, Portland,OR,97035 +250915,Bose SoundSport Headphones,1,99.99,2019-09-04 07:27:00,714 13th St, San Francisco,CA,94016 +250916,USB-C Charging Cable,1,11.95,2019-09-23 15:55:00,878 Elm St, Austin,TX,73301 +250917,AA Batteries (4-pack),1,3.84,2019-09-13 17:51:00,109 2nd St, San Francisco,CA,94016 +250918,AAA Batteries (4-pack),3,2.99,2019-09-09 19:24:00,364 Cedar St, San Francisco,CA,94016 +250919,Flatscreen TV,1,300.0,2019-09-21 17:21:00,696 Main St, Austin,TX,73301 +250920,USB-C Charging Cable,1,11.95,2019-09-20 12:04:00,263 Meadow St, Portland,OR,97035 +250921,iPhone,1,700.0,2019-09-18 07:43:00,155 12th St, Boston,MA,02215 +250922,AAA Batteries (4-pack),1,2.99,2019-09-13 10:03:00,488 Park St, Portland,OR,97035 +250923,AA Batteries (4-pack),1,3.84,2019-09-21 11:18:00,94 Pine St, San Francisco,CA,94016 +250924,Wired Headphones,1,11.99,2019-09-13 07:24:00,331 Willow St, Los Angeles,CA,90001 +250925,20in Monitor,1,109.99,2019-09-25 10:31:00,977 12th St, Boston,MA,02215 +250926,AAA Batteries (4-pack),1,2.99,2019-09-05 18:27:00,610 2nd St, Dallas,TX,75001 +250927,20in Monitor,1,109.99,2019-09-02 22:27:00,282 South St, Boston,MA,02215 +250928,USB-C Charging Cable,1,11.95,2019-09-12 15:49:00,529 Madison St, San Francisco,CA,94016 +250929,AAA Batteries (4-pack),2,2.99,2019-09-15 18:24:00,792 Cedar St, San Francisco,CA,94016 +250930,Apple Airpods Headphones,1,150.0,2019-09-03 13:04:00,271 Madison St, Seattle,WA,98101 +250931,AAA Batteries (4-pack),1,2.99,2019-09-19 05:37:00,194 Highland St, Portland,OR,97035 +250932,Vareebadd Phone,1,400.0,2019-09-15 09:54:00,645 5th St, Los Angeles,CA,90001 +250933,Lightning Charging Cable,1,14.95,2019-09-28 17:41:00,110 Hickory St, San Francisco,CA,94016 +250934,Apple Airpods Headphones,1,150.0,2019-09-28 11:41:00,775 5th St, Boston,MA,02215 +250935,USB-C Charging Cable,1,11.95,2019-09-04 16:00:00,583 Cedar St, Seattle,WA,98101 +250936,Lightning Charging Cable,1,14.95,2019-09-26 23:47:00,10 Ridge St, Austin,TX,73301 +250937,AA Batteries (4-pack),2,3.84,2019-09-28 20:09:00,437 Hill St, Boston,MA,02215 +250938,AAA Batteries (4-pack),2,2.99,2019-09-12 21:35:00,752 Lake St, Seattle,WA,98101 +250939,iPhone,1,700.0,2019-09-24 20:17:00,645 Meadow St, Austin,TX,73301 +250940,Lightning Charging Cable,1,14.95,2019-09-11 22:14:00,600 6th St, Atlanta,GA,30301 +250941,34in Ultrawide Monitor,1,379.99,2019-09-24 23:56:00,682 Spruce St, Dallas,TX,75001 +250942,AAA Batteries (4-pack),1,2.99,2019-09-25 15:45:00,256 Wilson St, Boston,MA,02215 +250943,Lightning Charging Cable,2,14.95,2019-09-11 18:19:00,686 12th St, Boston,MA,02215 +250944,Lightning Charging Cable,1,14.95,2019-09-04 21:49:00,178 Wilson St, Seattle,WA,98101 +250945,USB-C Charging Cable,1,11.95,2019-09-25 15:23:00,425 Forest St, San Francisco,CA,94016 +250946,Bose SoundSport Headphones,1,99.99,2019-09-13 16:10:00,293 Lincoln St, Atlanta,GA,30301 +250947,Wired Headphones,1,11.99,2019-09-13 02:40:00,309 Meadow St, Atlanta,GA,30301 +250948,USB-C Charging Cable,1,11.95,2019-09-18 10:07:00,971 Center St, Los Angeles,CA,90001 +250949,Apple Airpods Headphones,1,150.0,2019-09-02 15:44:00,410 7th St, Boston,MA,02215 +250950,Wired Headphones,1,11.99,2019-09-30 01:10:00,156 Spruce St, Portland,OR,97035 +250951,AA Batteries (4-pack),1,3.84,2019-09-19 10:57:00,911 9th St, New York City,NY,10001 +250952,Flatscreen TV,1,300.0,2019-09-17 17:05:00,370 Chestnut St, Boston,MA,02215 +250953,AA Batteries (4-pack),1,3.84,2019-09-09 10:18:00,23 Forest St, Boston,MA,02215 +250954,AA Batteries (4-pack),2,3.84,2019-09-27 16:58:00,753 West St, Austin,TX,73301 +250955,LG Washing Machine,1,600.0,2019-09-15 17:55:00,633 7th St, San Francisco,CA,94016 +250956,Apple Airpods Headphones,1,150.0,2019-09-12 11:50:00,882 River St, Portland,OR,97035 +250957,AA Batteries (4-pack),1,3.84,2019-09-29 14:42:00,417 Cedar St, Dallas,TX,75001 +250958,AAA Batteries (4-pack),2,2.99,2019-09-25 18:40:00,84 11th St, San Francisco,CA,94016 +250959,20in Monitor,1,109.99,2019-09-02 12:59:00,767 Sunset St, New York City,NY,10001 +250960,USB-C Charging Cable,1,11.95,2019-09-14 22:53:00,458 12th St, Dallas,TX,75001 +250961,USB-C Charging Cable,1,11.95,2019-09-18 15:38:00,664 Walnut St, Austin,TX,73301 +250962,AAA Batteries (4-pack),1,2.99,2019-09-23 18:33:00,581 14th St, San Francisco,CA,94016 +250963,AAA Batteries (4-pack),1,2.99,2019-09-02 19:30:00,674 Pine St, Boston,MA,02215 +250964,AA Batteries (4-pack),1,3.84,2019-09-04 14:50:00,113 Wilson St, Austin,TX,73301 +250965,27in FHD Monitor,1,149.99,2019-09-17 14:38:00,895 11th St, San Francisco,CA,94016 +250966,Lightning Charging Cable,1,14.95,2019-09-17 20:43:00,427 1st St, Los Angeles,CA,90001 +250967,USB-C Charging Cable,1,11.95,2019-09-04 14:03:00,572 Jackson St, Los Angeles,CA,90001 +250968,Wired Headphones,1,11.99,2019-09-29 19:53:00,212 Jefferson St, Dallas,TX,75001 +250969,AAA Batteries (4-pack),4,2.99,2019-09-15 21:08:00,708 North St, New York City,NY,10001 +250970,Vareebadd Phone,1,400.0,2019-09-08 11:40:00,638 Wilson St, Portland,OR,97035 +250971,AA Batteries (4-pack),2,3.84,2019-09-15 14:53:00,54 South St, Los Angeles,CA,90001 +250972,20in Monitor,1,109.99,2019-09-23 18:08:00,774 Hickory St, Boston,MA,02215 +250973,AAA Batteries (4-pack),1,2.99,2019-09-24 09:33:00,294 Walnut St, Dallas,TX,75001 +250974,iPhone,1,700.0,2019-09-15 21:50:00,99 14th St, Los Angeles,CA,90001 +250975,AAA Batteries (4-pack),2,2.99,2019-09-28 16:10:00,606 Washington St, Dallas,TX,75001 +250975,34in Ultrawide Monitor,1,379.99,2019-09-28 16:10:00,606 Washington St, Dallas,TX,75001 +250976,Wired Headphones,1,11.99,2019-09-14 21:47:00,775 9th St, Boston,MA,02215 +250977,USB-C Charging Cable,1,11.95,2019-09-22 18:53:00,671 13th St, Dallas,TX,75001 +250978,Apple Airpods Headphones,1,150.0,2019-09-22 16:36:00,156 Lake St, San Francisco,CA,94016 +250978,AA Batteries (4-pack),1,3.84,2019-09-22 16:36:00,156 Lake St, San Francisco,CA,94016 +250979,20in Monitor,1,109.99,2019-09-18 12:38:00,782 Pine St, Los Angeles,CA,90001 +250980,ThinkPad Laptop,1,999.99,2019-09-12 14:41:00,214 North St, Boston,MA,02215 +250981,USB-C Charging Cable,1,11.95,2019-09-11 01:20:00,444 Lakeview St, Los Angeles,CA,90001 +250982,27in FHD Monitor,1,149.99,2019-09-02 22:08:00,655 Cedar St, Boston,MA,02215 +250982,34in Ultrawide Monitor,1,379.99,2019-09-02 22:08:00,655 Cedar St, Boston,MA,02215 +250983,Lightning Charging Cable,1,14.95,2019-09-02 20:04:00,71 Hickory St, San Francisco,CA,94016 +250984,Apple Airpods Headphones,1,150.0,2019-09-25 11:05:00,158 Chestnut St, Austin,TX,73301 +250985,Lightning Charging Cable,1,14.95,2019-09-07 15:22:00,6 9th St, Boston,MA,02215 +250986,Lightning Charging Cable,1,14.95,2019-09-25 19:24:00,104 13th St, Seattle,WA,98101 +250987,AA Batteries (4-pack),1,3.84,2019-09-22 18:42:00,546 Lincoln St, Portland,OR,97035 +250988,27in 4K Gaming Monitor,1,389.99,2019-09-05 18:18:00,92 Main St, Los Angeles,CA,90001 +250989,AA Batteries (4-pack),1,3.84,2019-09-21 09:13:00,806 7th St, New York City,NY,10001 +250990,27in FHD Monitor,1,149.99,2019-09-06 21:06:00,193 9th St, Los Angeles,CA,90001 +250991,AAA Batteries (4-pack),1,2.99,2019-09-30 14:05:00,582 12th St, Dallas,TX,75001 +250992,Lightning Charging Cable,1,14.95,2019-09-23 16:51:00,517 Cedar St, Boston,MA,02215 +250993,ThinkPad Laptop,1,999.99,2019-09-15 08:25:00,694 Madison St, Portland,ME,04101 +250994,AA Batteries (4-pack),1,3.84,2019-09-28 07:33:00,728 Chestnut St, San Francisco,CA,94016 +250995,USB-C Charging Cable,1,11.95,2019-09-21 08:33:00,969 Meadow St, Atlanta,GA,30301 +250996,Bose SoundSport Headphones,1,99.99,2019-09-27 00:29:00,334 Sunset St, San Francisco,CA,94016 +250997,AA Batteries (4-pack),2,3.84,2019-09-15 13:15:00,577 10th St, San Francisco,CA,94016 +250998,27in FHD Monitor,1,149.99,2019-09-07 18:53:00,655 Pine St, Boston,MA,02215 +250999,Bose SoundSport Headphones,1,99.99,2019-09-17 19:34:00,158 Washington St, Dallas,TX,75001 +251000,USB-C Charging Cable,2,11.95,2019-09-20 10:03:00,126 Walnut St, Dallas,TX,75001 +251001,Lightning Charging Cable,1,14.95,2019-09-08 21:42:00,685 10th St, Atlanta,GA,30301 +251002,iPhone,1,700.0,2019-09-21 17:25:00,269 2nd St, New York City,NY,10001 +251003,Apple Airpods Headphones,1,150.0,2019-09-06 10:00:00,816 Center St, Portland,OR,97035 +251004,27in FHD Monitor,1,149.99,2019-09-09 22:26:00,126 12th St, San Francisco,CA,94016 +251005,Bose SoundSport Headphones,1,99.99,2019-09-15 16:01:00,552 Meadow St, Seattle,WA,98101 +251006,Bose SoundSport Headphones,1,99.99,2019-09-10 14:47:00,360 Madison St, Dallas,TX,75001 +251007,AA Batteries (4-pack),2,3.84,2019-09-13 22:10:00,593 Johnson St, Dallas,TX,75001 +251008,Apple Airpods Headphones,1,150.0,2019-09-18 22:36:00,764 11th St, San Francisco,CA,94016 +251009,Wired Headphones,2,11.99,2019-09-07 06:48:00,828 Washington St, Seattle,WA,98101 +251010,AA Batteries (4-pack),2,3.84,2019-09-24 08:57:00,11 Ridge St, Seattle,WA,98101 +251011,Wired Headphones,1,11.99,2019-09-23 15:36:00,847 Lakeview St, New York City,NY,10001 +251012,Vareebadd Phone,1,400.0,2019-09-04 21:19:00,283 6th St, Dallas,TX,75001 +251013,Lightning Charging Cable,1,14.95,2019-09-29 13:21:00,19 Chestnut St, Boston,MA,02215 +251014,27in FHD Monitor,1,149.99,2019-09-19 13:08:00,371 Spruce St, Los Angeles,CA,90001 +251015,27in 4K Gaming Monitor,1,389.99,2019-09-07 11:06:00,720 4th St, San Francisco,CA,94016 +251016,20in Monitor,1,109.99,2019-09-02 09:46:00,866 Spruce St, New York City,NY,10001 +251017,Bose SoundSport Headphones,1,99.99,2019-09-28 10:27:00,634 Elm St, Austin,TX,73301 +251018,AA Batteries (4-pack),3,3.84,2019-09-14 12:15:00,333 Willow St, San Francisco,CA,94016 +251019,USB-C Charging Cable,1,11.95,2019-09-29 12:57:00,560 River St, Atlanta,GA,30301 +251020,USB-C Charging Cable,1,11.95,2019-09-19 09:32:00,894 14th St, Dallas,TX,75001 +251021,AA Batteries (4-pack),3,3.84,2019-09-27 14:49:00,62 Park St, San Francisco,CA,94016 +251022,USB-C Charging Cable,1,11.95,2019-09-24 12:26:00,107 10th St, Boston,MA,02215 +251023,AA Batteries (4-pack),1,3.84,2019-09-12 15:35:00,815 Wilson St, Boston,MA,02215 +251024,Apple Airpods Headphones,1,150.0,2019-09-03 11:39:00,59 Dogwood St, San Francisco,CA,94016 +251025,Lightning Charging Cable,1,14.95,2019-09-24 08:23:00,880 7th St, San Francisco,CA,94016 +251026,USB-C Charging Cable,1,11.95,2019-09-22 13:54:00,753 Hill St, Dallas,TX,75001 +251027,Google Phone,1,600.0,2019-09-01 14:22:00,889 Sunset St, Austin,TX,73301 +251028,ThinkPad Laptop,1,999.99,2019-09-21 07:43:00,422 1st St, Los Angeles,CA,90001 +251029,Macbook Pro Laptop,1,1700.0,2019-09-13 14:04:00,138 13th St, Dallas,TX,75001 +251030,AAA Batteries (4-pack),1,2.99,2019-09-01 12:33:00,906 Cedar St, San Francisco,CA,94016 +251031,Apple Airpods Headphones,1,150.0,2019-09-29 12:25:00,458 Madison St, San Francisco,CA,94016 +251032,34in Ultrawide Monitor,1,379.99,2019-09-15 11:10:00,172 Highland St, Portland,OR,97035 +251033,Apple Airpods Headphones,1,150.0,2019-09-12 20:48:00,322 Center St, New York City,NY,10001 +251034,Apple Airpods Headphones,1,150.0,2019-09-15 11:25:00,70 Cherry St, San Francisco,CA,94016 +251035,AA Batteries (4-pack),1,3.84,2019-09-24 08:43:00,305 Elm St, Boston,MA,02215 +251036,Vareebadd Phone,1,400.0,2019-09-20 19:34:00,561 8th St, Dallas,TX,75001 +251037,Bose SoundSport Headphones,1,99.99,2019-09-05 21:39:00,213 Washington St, San Francisco,CA,94016 +251038,Bose SoundSport Headphones,1,99.99,2019-09-28 19:40:00,806 Sunset St, San Francisco,CA,94016 +251039,Wired Headphones,1,11.99,2019-09-11 23:38:00,584 Highland St, New York City,NY,10001 +251040,USB-C Charging Cable,1,11.95,2019-09-12 12:50:00,518 Chestnut St, Los Angeles,CA,90001 +251041,ThinkPad Laptop,1,999.99,2019-09-26 09:11:00,151 South St, Dallas,TX,75001 +251042,AAA Batteries (4-pack),1,2.99,2019-09-14 19:46:00,886 Chestnut St, New York City,NY,10001 +251043,AA Batteries (4-pack),1,3.84,2019-09-22 10:58:00,223 Pine St, Boston,MA,02215 +251044,Apple Airpods Headphones,1,150.0,2019-09-10 17:18:00,133 Hill St, Dallas,TX,75001 +251045,iPhone,1,700.0,2019-09-10 21:36:00,19 13th St, Los Angeles,CA,90001 +251046,Bose SoundSport Headphones,1,99.99,2019-09-05 19:56:00,957 Madison St, Dallas,TX,75001 +251047,USB-C Charging Cable,1,11.95,2019-09-06 15:46:00,528 Ridge St, Los Angeles,CA,90001 +251048,Lightning Charging Cable,1,14.95,2019-09-05 09:14:00,15 2nd St, Boston,MA,02215 +251049,USB-C Charging Cable,1,11.95,2019-09-06 10:44:00,312 Church St, Atlanta,GA,30301 +251050,Apple Airpods Headphones,1,150.0,2019-09-05 18:56:00,731 9th St, Seattle,WA,98101 +251051,Apple Airpods Headphones,1,150.0,2019-09-06 11:20:00,883 2nd St, Atlanta,GA,30301 +251052,Bose SoundSport Headphones,1,99.99,2019-09-08 10:18:00,416 Park St, Atlanta,GA,30301 +251053,USB-C Charging Cable,1,11.95,2019-09-13 18:14:00,274 12th St, San Francisco,CA,94016 +251054,AAA Batteries (4-pack),1,2.99,2019-09-29 20:04:00,752 West St, Los Angeles,CA,90001 +251055,ThinkPad Laptop,1,999.99,2019-09-18 00:41:00,916 Cherry St, San Francisco,CA,94016 +251056,AA Batteries (4-pack),1,3.84,2019-09-29 13:50:00,956 9th St, Boston,MA,02215 +251057,Lightning Charging Cable,1,14.95,2019-09-26 14:20:00,16 Walnut St, Seattle,WA,98101 +251058,34in Ultrawide Monitor,1,379.99,2019-09-26 12:46:00,90 11th St, Seattle,WA,98101 +251059,Bose SoundSport Headphones,1,99.99,2019-09-16 22:36:00,252 8th St, Los Angeles,CA,90001 +251060,20in Monitor,1,109.99,2019-09-17 13:09:00,884 South St, Los Angeles,CA,90001 +251061,Lightning Charging Cable,1,14.95,2019-09-03 00:29:00,648 Meadow St, San Francisco,CA,94016 +251062,AA Batteries (4-pack),1,3.84,2019-09-01 14:14:00,109 River St, Atlanta,GA,30301 +251063,Wired Headphones,1,11.99,2019-09-22 20:56:00,238 Madison St, San Francisco,CA,94016 +251064,Macbook Pro Laptop,1,1700.0,2019-09-02 17:26:00,81 Hill St, Los Angeles,CA,90001 +251065,Macbook Pro Laptop,1,1700.0,2019-09-16 11:17:00,800 9th St, Portland,OR,97035 +251066,Bose SoundSport Headphones,1,99.99,2019-09-29 10:15:00,826 Meadow St, Los Angeles,CA,90001 +251067,USB-C Charging Cable,2,11.95,2019-09-04 21:19:00,698 13th St, San Francisco,CA,94016 +251068,Apple Airpods Headphones,1,150.0,2019-09-02 17:35:00,463 North St, San Francisco,CA,94016 +251069,AA Batteries (4-pack),1,3.84,2019-09-16 21:06:00,453 Meadow St, San Francisco,CA,94016 +251070,Wired Headphones,2,11.99,2019-09-22 02:31:00,105 Forest St, Dallas,TX,75001 +251071,AAA Batteries (4-pack),1,2.99,2019-09-14 21:17:00,346 11th St, Portland,OR,97035 +251072,Bose SoundSport Headphones,1,99.99,2019-09-14 13:31:00,786 14th St, Atlanta,GA,30301 +251073,AAA Batteries (4-pack),2,2.99,2019-09-18 18:49:00,165 Hickory St, Dallas,TX,75001 +251074,Bose SoundSport Headphones,1,99.99,2019-09-01 12:31:00,510 Walnut St, Dallas,TX,75001 +251075,AAA Batteries (4-pack),1,2.99,2019-09-01 19:25:00,591 Madison St, San Francisco,CA,94016 +251076,27in FHD Monitor,1,149.99,2019-09-10 12:38:00,863 North St, Seattle,WA,98101 +251077,Wired Headphones,1,11.99,2019-09-20 14:12:00,599 Willow St, San Francisco,CA,94016 +251078,AA Batteries (4-pack),1,3.84,2019-09-14 12:35:00,588 Center St, Atlanta,GA,30301 +251079,LG Washing Machine,1,600.0,2019-09-19 09:22:00,343 Adams St, San Francisco,CA,94016 +251080,Wired Headphones,1,11.99,2019-09-08 23:17:00,996 12th St, Boston,MA,02215 +251081,Lightning Charging Cable,2,14.95,2019-09-21 12:19:00,679 Elm St, Dallas,TX,75001 +251082,USB-C Charging Cable,1,11.95,2019-09-28 17:22:00,117 North St, New York City,NY,10001 +251083,AA Batteries (4-pack),2,3.84,2019-09-28 15:34:00,714 Ridge St, Seattle,WA,98101 +251084,Google Phone,1,600.0,2019-09-02 15:03:00,926 Forest St, Seattle,WA,98101 +251084,USB-C Charging Cable,2,11.95,2019-09-02 15:03:00,926 Forest St, Seattle,WA,98101 +251085,USB-C Charging Cable,1,11.95,2019-09-12 11:13:00,902 Chestnut St, Dallas,TX,75001 +251086,27in FHD Monitor,1,149.99,2019-09-25 23:33:00,964 Cedar St, Los Angeles,CA,90001 +251087,34in Ultrawide Monitor,1,379.99,2019-09-27 01:25:00,309 Meadow St, San Francisco,CA,94016 +251088,Wired Headphones,1,11.99,2019-09-20 21:53:00,837 Church St, Boston,MA,02215 +251089,34in Ultrawide Monitor,1,379.99,2019-09-19 20:15:00,770 Hickory St, Atlanta,GA,30301 +251090,USB-C Charging Cable,1,11.95,2019-09-03 17:32:00,601 Lincoln St, Seattle,WA,98101 +251091,Lightning Charging Cable,1,14.95,2019-09-08 16:24:00,131 6th St, Los Angeles,CA,90001 +251092,34in Ultrawide Monitor,1,379.99,2019-09-15 09:18:00,985 South St, New York City,NY,10001 +251093,34in Ultrawide Monitor,1,379.99,2019-09-18 17:28:00,726 11th St, Boston,MA,02215 +251094,AAA Batteries (4-pack),2,2.99,2019-09-22 09:06:00,454 Jefferson St, Austin,TX,73301 +251095,27in FHD Monitor,1,149.99,2019-09-03 12:23:00,180 10th St, Los Angeles,CA,90001 +251096,27in FHD Monitor,1,149.99,2019-09-11 15:22:00,424 Highland St, Los Angeles,CA,90001 +251097,Lightning Charging Cable,1,14.95,2019-09-08 11:51:00,748 11th St, Los Angeles,CA,90001 +251098,Google Phone,1,600.0,2019-09-19 19:15:00,410 Sunset St, Boston,MA,02215 +251099,27in 4K Gaming Monitor,1,389.99,2019-09-18 18:52:00,636 Meadow St, San Francisco,CA,94016 +251100,Wired Headphones,1,11.99,2019-09-08 17:16:00,109 Park St, Seattle,WA,98101 +251101,USB-C Charging Cable,1,11.95,2019-09-25 13:47:00,272 Park St, Boston,MA,02215 +251102,Lightning Charging Cable,1,14.95,2019-09-30 17:14:00,126 7th St, San Francisco,CA,94016 +251103,Wired Headphones,1,11.99,2019-09-10 17:39:00,316 Lincoln St, San Francisco,CA,94016 +251104,Bose SoundSport Headphones,1,99.99,2019-09-20 12:42:00,825 Lakeview St, Los Angeles,CA,90001 +251105,ThinkPad Laptop,1,999.99,2019-09-27 15:39:00,934 Hickory St, San Francisco,CA,94016 +251106,34in Ultrawide Monitor,1,379.99,2019-09-25 20:09:00,407 Jackson St, Boston,MA,02215 +251107,Wired Headphones,2,11.99,2019-09-12 17:30:00,678 Cherry St, San Francisco,CA,94016 +251108,Lightning Charging Cable,1,14.95,2019-09-05 08:29:00,36 4th St, Austin,TX,73301 +251109,USB-C Charging Cable,1,11.95,2019-09-17 12:18:00,388 13th St, San Francisco,CA,94016 +251110,Macbook Pro Laptop,1,1700.0,2019-09-30 22:18:00,704 13th St, San Francisco,CA,94016 +251111,Macbook Pro Laptop,1,1700.0,2019-09-05 19:36:00,218 Meadow St, San Francisco,CA,94016 +251112,Vareebadd Phone,1,400.0,2019-09-10 09:07:00,974 Walnut St, San Francisco,CA,94016 +251113,AAA Batteries (4-pack),2,2.99,2019-09-18 14:21:00,574 8th St, Los Angeles,CA,90001 +251114,AA Batteries (4-pack),2,3.84,2019-09-19 18:36:00,310 Highland St, Seattle,WA,98101 +251115,Lightning Charging Cable,1,14.95,2019-09-12 15:06:00,312 Church St, Portland,ME,04101 +251116,Flatscreen TV,1,300.0,2019-09-05 16:57:00,464 Forest St, San Francisco,CA,94016 +251117,Lightning Charging Cable,1,14.95,2019-09-12 16:43:00,200 Meadow St, Dallas,TX,75001 +251118,27in 4K Gaming Monitor,1,389.99,2019-09-04 06:19:00,516 Church St, Dallas,TX,75001 +251119,Lightning Charging Cable,1,14.95,2019-09-12 14:56:00,295 North St, Portland,OR,97035 +251120,Wired Headphones,1,11.99,2019-09-17 17:13:00,996 Main St, Los Angeles,CA,90001 +251121,AAA Batteries (4-pack),1,2.99,2019-09-27 17:42:00,862 Hill St, Portland,OR,97035 +251122,Lightning Charging Cable,1,14.95,2019-09-24 00:22:00,781 Walnut St, San Francisco,CA,94016 +251123,Apple Airpods Headphones,1,150.0,2019-09-16 15:55:00,674 Johnson St, San Francisco,CA,94016 +251124,Wired Headphones,1,11.99,2019-09-24 08:34:00,742 Cedar St, Dallas,TX,75001 +251125,27in FHD Monitor,1,149.99,2019-09-15 01:17:00,489 1st St, Los Angeles,CA,90001 +251126,ThinkPad Laptop,1,999.99,2019-09-21 19:18:00,684 6th St, San Francisco,CA,94016 +251127,Google Phone,1,600.0,2019-09-01 12:38:00,627 Center St, Los Angeles,CA,90001 +251128,Lightning Charging Cable,1,14.95,2019-09-29 16:47:00,392 Adams St, Dallas,TX,75001 +251129,Bose SoundSport Headphones,1,99.99,2019-09-06 17:33:00,632 South St, Dallas,TX,75001 +251130,USB-C Charging Cable,1,11.95,2019-09-08 18:55:00,736 12th St, Boston,MA,02215 +251131,USB-C Charging Cable,1,11.95,2019-09-03 10:01:00,608 1st St, San Francisco,CA,94016 +251132,AAA Batteries (4-pack),1,2.99,2019-09-26 06:30:00,406 Lincoln St, San Francisco,CA,94016 +251132,Flatscreen TV,1,300.0,2019-09-26 06:30:00,406 Lincoln St, San Francisco,CA,94016 +251133,Apple Airpods Headphones,1,150.0,2019-09-15 21:27:00,476 Ridge St, New York City,NY,10001 +251134,iPhone,1,700.0,2019-09-16 12:44:00,281 Center St, Boston,MA,02215 +251134,Lightning Charging Cable,1,14.95,2019-09-16 12:44:00,281 Center St, Boston,MA,02215 +251135,AAA Batteries (4-pack),3,2.99,2019-09-10 09:17:00,246 Washington St, Los Angeles,CA,90001 +251136,Bose SoundSport Headphones,1,99.99,2019-09-06 13:00:00,763 10th St, Los Angeles,CA,90001 +251137,AAA Batteries (4-pack),1,2.99,2019-09-26 19:47:00,547 West St, New York City,NY,10001 +251138,AA Batteries (4-pack),1,3.84,2019-09-26 14:42:00,85 Center St, San Francisco,CA,94016 +251139,iPhone,1,700.0,2019-09-27 18:21:00,929 Ridge St, Los Angeles,CA,90001 +251140,Bose SoundSport Headphones,1,99.99,2019-09-15 18:13:00,839 Ridge St, Austin,TX,73301 +251141,Lightning Charging Cable,1,14.95,2019-09-21 15:10:00,93 10th St, San Francisco,CA,94016 +251142,Apple Airpods Headphones,1,150.0,2019-09-24 09:07:00,686 Sunset St, San Francisco,CA,94016 +251143,USB-C Charging Cable,1,11.95,2019-09-11 23:09:00,326 Willow St, Austin,TX,73301 +251144,AAA Batteries (4-pack),2,2.99,2019-09-29 15:11:00,1 Sunset St, New York City,NY,10001 +251145,Wired Headphones,1,11.99,2019-09-05 10:26:00,725 Spruce St, San Francisco,CA,94016 +251146,27in 4K Gaming Monitor,1,389.99,2019-09-16 13:33:00,74 North St, Los Angeles,CA,90001 +251147,Bose SoundSport Headphones,1,99.99,2019-09-11 20:42:00,208 13th St, Boston,MA,02215 +251148,Wired Headphones,1,11.99,2019-09-02 10:52:00,704 5th St, San Francisco,CA,94016 +251149,AAA Batteries (4-pack),1,2.99,2019-09-02 09:48:00,783 Center St, Dallas,TX,75001 +251150,Bose SoundSport Headphones,1,99.99,2019-09-21 10:00:00,46 Park St, New York City,NY,10001 +251151,Wired Headphones,1,11.99,2019-09-26 17:54:00,487 Jefferson St, Los Angeles,CA,90001 +251152,iPhone,1,700.0,2019-09-16 15:53:00,861 Madison St, Los Angeles,CA,90001 +251153,34in Ultrawide Monitor,1,379.99,2019-09-16 10:12:00,624 Jefferson St, Los Angeles,CA,90001 +251154,Bose SoundSport Headphones,1,99.99,2019-09-15 09:37:00,225 5th St, Los Angeles,CA,90001 +251155,Flatscreen TV,1,300.0,2019-09-01 19:52:00,510 5th St, San Francisco,CA,94016 +251156,USB-C Charging Cable,1,11.95,2019-09-03 20:52:00,394 5th St, Boston,MA,02215 +251157,AAA Batteries (4-pack),1,2.99,2019-09-06 15:21:00,472 Main St, Atlanta,GA,30301 +251158,27in 4K Gaming Monitor,1,389.99,2019-09-11 19:24:00,66 Forest St, New York City,NY,10001 +251159,USB-C Charging Cable,1,11.95,2019-09-30 13:30:00,72 Center St, Seattle,WA,98101 +251160,AA Batteries (4-pack),1,3.84,2019-09-29 20:22:00,709 South St, Austin,TX,73301 +251161,34in Ultrawide Monitor,1,379.99,2019-09-13 22:56:00,438 Sunset St, Boston,MA,02215 +251162,USB-C Charging Cable,1,11.95,2019-09-26 22:03:00,991 11th St, Dallas,TX,75001 +251163,Bose SoundSport Headphones,1,99.99,2019-09-23 11:41:00,931 Ridge St, Seattle,WA,98101 +251164,20in Monitor,1,109.99,2019-09-28 11:46:00,998 Church St, Seattle,WA,98101 +251165,AAA Batteries (4-pack),1,2.99,2019-09-29 18:20:00,947 8th St, Boston,MA,02215 +251166,AAA Batteries (4-pack),1,2.99,2019-09-10 18:49:00,163 4th St, Seattle,WA,98101 +251167,27in FHD Monitor,1,149.99,2019-09-15 07:57:00,660 Adams St, New York City,NY,10001 +251168,Lightning Charging Cable,1,14.95,2019-09-22 20:21:00,104 Cedar St, Atlanta,GA,30301 +251169,AAA Batteries (4-pack),1,2.99,2019-09-02 18:51:00,476 11th St, San Francisco,CA,94016 +251170,AA Batteries (4-pack),1,3.84,2019-09-14 16:48:00,203 Pine St, San Francisco,CA,94016 +251171,USB-C Charging Cable,2,11.95,2019-09-15 08:45:00,923 1st St, Atlanta,GA,30301 +251172,Bose SoundSport Headphones,1,99.99,2019-09-12 16:28:00,36 Willow St, Los Angeles,CA,90001 +251173,AAA Batteries (4-pack),2,2.99,2019-09-26 08:33:00,351 River St, New York City,NY,10001 +251174,USB-C Charging Cable,1,11.95,2019-09-11 00:49:00,896 2nd St, San Francisco,CA,94016 +251174,27in 4K Gaming Monitor,1,389.99,2019-09-11 00:49:00,896 2nd St, San Francisco,CA,94016 +251175,AA Batteries (4-pack),1,3.84,2019-09-07 23:41:00,853 Lincoln St, New York City,NY,10001 +251176,Apple Airpods Headphones,1,150.0,2019-09-02 15:01:00,851 Dogwood St, Atlanta,GA,30301 +251177,Bose SoundSport Headphones,1,99.99,2019-09-25 14:06:00,86 South St, Dallas,TX,75001 +251178,AA Batteries (4-pack),2,3.84,2019-09-06 15:20:00,263 Cedar St, Austin,TX,73301 +251179,Lightning Charging Cable,1,14.95,2019-09-22 12:33:00,857 Johnson St, Boston,MA,02215 +251180,Lightning Charging Cable,1,14.95,2019-09-22 07:11:00,983 14th St, New York City,NY,10001 +251180,Wired Headphones,1,11.99,2019-09-22 07:11:00,983 14th St, New York City,NY,10001 +251181,Bose SoundSport Headphones,1,99.99,2019-09-11 18:22:00,506 Meadow St, New York City,NY,10001 +251182,Apple Airpods Headphones,1,150.0,2019-09-08 19:54:00,354 Johnson St, Los Angeles,CA,90001 +251183,27in FHD Monitor,1,149.99,2019-09-14 12:04:00,263 North St, Dallas,TX,75001 +251184,20in Monitor,1,109.99,2019-09-29 11:47:00,997 Highland St, Los Angeles,CA,90001 +251185,USB-C Charging Cable,1,11.95,2019-09-08 20:13:00,680 North St, Austin,TX,73301 +251186,27in 4K Gaming Monitor,1,389.99,2019-09-28 15:01:00,244 Center St, Dallas,TX,75001 +251187,AA Batteries (4-pack),3,3.84,2019-09-21 21:37:00,241 Center St, Los Angeles,CA,90001 +251188,AA Batteries (4-pack),1,3.84,2019-09-02 12:07:00,87 7th St, Boston,MA,02215 +251189,Wired Headphones,1,11.99,2019-09-26 09:35:00,722 Maple St, Boston,MA,02215 +251190,AA Batteries (4-pack),1,3.84,2019-09-25 11:18:00,684 Wilson St, San Francisco,CA,94016 +251191,Bose SoundSport Headphones,1,99.99,2019-09-07 09:48:00,188 1st St, New York City,NY,10001 +251192,Lightning Charging Cable,1,14.95,2019-09-15 11:51:00,824 Adams St, Atlanta,GA,30301 +251193,Google Phone,1,600.0,2019-09-09 14:58:00,379 11th St, San Francisco,CA,94016 +251194,AAA Batteries (4-pack),1,2.99,2019-09-18 17:22:00,670 Main St, Boston,MA,02215 +251195,27in FHD Monitor,1,149.99,2019-09-07 20:55:00,160 5th St, San Francisco,CA,94016 +251196,AA Batteries (4-pack),2,3.84,2019-09-19 13:49:00,281 Highland St, New York City,NY,10001 +251197,AA Batteries (4-pack),1,3.84,2019-09-05 22:32:00,133 River St, Los Angeles,CA,90001 +251198,USB-C Charging Cable,1,11.95,2019-09-23 18:36:00,159 Forest St, Dallas,TX,75001 +251199,AAA Batteries (4-pack),2,2.99,2019-09-28 13:39:00,575 Dogwood St, Seattle,WA,98101 +251200,AAA Batteries (4-pack),1,2.99,2019-09-07 12:07:00,926 Lincoln St, Atlanta,GA,30301 +251201,Wired Headphones,1,11.99,2019-09-20 20:48:00,542 North St, Portland,OR,97035 +251202,Wired Headphones,1,11.99,2019-09-06 17:58:00,971 Adams St, New York City,NY,10001 +251203,Lightning Charging Cable,1,14.95,2019-09-18 20:47:00,76 Jefferson St, San Francisco,CA,94016 +251204,Google Phone,1,600.0,2019-09-13 20:02:00,197 Center St, San Francisco,CA,94016 +251205,Bose SoundSport Headphones,1,99.99,2019-09-12 13:55:00,456 Chestnut St, Los Angeles,CA,90001 +251206,AA Batteries (4-pack),2,3.84,2019-09-04 10:27:00,478 South St, San Francisco,CA,94016 +251207,Wired Headphones,1,11.99,2019-09-29 22:11:00,395 Lincoln St, Los Angeles,CA,90001 +251208,Apple Airpods Headphones,1,150.0,2019-09-24 15:19:00,290 14th St, Portland,OR,97035 +251209,AAA Batteries (4-pack),1,2.99,2019-09-07 13:11:00,48 12th St, Austin,TX,73301 +251210,ThinkPad Laptop,1,999.99,2019-09-09 11:09:00,119 Lakeview St, New York City,NY,10001 +251211,Wired Headphones,1,11.99,2019-09-19 12:07:00,127 Sunset St, Boston,MA,02215 +251212,Bose SoundSport Headphones,1,99.99,2019-09-08 15:28:00,855 Park St, Atlanta,GA,30301 +251213,AAA Batteries (4-pack),1,2.99,2019-09-13 14:59:00,359 Wilson St, Austin,TX,73301 +251214,USB-C Charging Cable,1,11.95,2019-09-06 17:25:00,899 Wilson St, Boston,MA,02215 +251215,USB-C Charging Cable,1,11.95,2019-09-27 14:40:00,742 Adams St, San Francisco,CA,94016 +251216,20in Monitor,1,109.99,2019-09-03 08:51:00,814 Walnut St, New York City,NY,10001 +251217,Lightning Charging Cable,1,14.95,2019-09-28 20:48:00,397 Lake St, New York City,NY,10001 +251218,Bose SoundSport Headphones,1,99.99,2019-09-21 16:42:00,756 Park St, San Francisco,CA,94016 +251219,AA Batteries (4-pack),1,3.84,2019-09-28 22:41:00,883 South St, Portland,OR,97035 +251220,Wired Headphones,2,11.99,2019-09-17 05:49:00,153 Meadow St, Portland,ME,04101 +251220,Wired Headphones,1,11.99,2019-09-17 05:49:00,153 Meadow St, Portland,ME,04101 +251221,Wired Headphones,1,11.99,2019-09-14 13:31:00,938 8th St, Los Angeles,CA,90001 +251222,AA Batteries (4-pack),1,3.84,2019-09-26 00:51:00,755 West St, Dallas,TX,75001 +251223,AAA Batteries (4-pack),3,2.99,2019-09-21 09:44:00,584 Spruce St, Dallas,TX,75001 +251224,Lightning Charging Cable,1,14.95,2019-09-11 14:39:00,336 2nd St, New York City,NY,10001 +251225,AA Batteries (4-pack),1,3.84,2019-09-21 10:32:00,528 Jackson St, San Francisco,CA,94016 +251226,Google Phone,1,600.0,2019-09-07 02:09:00,999 Lakeview St, Austin,TX,73301 +251226,USB-C Charging Cable,1,11.95,2019-09-07 02:09:00,999 Lakeview St, Austin,TX,73301 +251227,AAA Batteries (4-pack),1,2.99,2019-09-01 14:41:00,613 Maple St, San Francisco,CA,94016 +251228,AAA Batteries (4-pack),2,2.99,2019-09-17 08:40:00,255 Lakeview St, Austin,TX,73301 +251229,AAA Batteries (4-pack),1,2.99,2019-09-27 17:45:00,488 North St, San Francisco,CA,94016 +251230,USB-C Charging Cable,1,11.95,2019-09-19 12:04:00,916 8th St, San Francisco,CA,94016 +251231,USB-C Charging Cable,1,11.95,2019-09-23 14:52:00,24 Lakeview St, New York City,NY,10001 +251232,34in Ultrawide Monitor,1,379.99,2019-09-15 19:17:00,513 Maple St, Austin,TX,73301 +251233,AA Batteries (4-pack),3,3.84,2019-09-19 13:25:00,225 14th St, New York City,NY,10001 +251234,Apple Airpods Headphones,1,150.0,2019-09-03 19:20:00,434 Center St, Boston,MA,02215 +251235,AAA Batteries (4-pack),1,2.99,2019-09-19 10:54:00,47 12th St, Los Angeles,CA,90001 +251236,Wired Headphones,1,11.99,2019-09-26 14:12:00,561 Spruce St, Atlanta,GA,30301 +251237,Lightning Charging Cable,1,14.95,2019-09-02 15:21:00,615 Lakeview St, Los Angeles,CA,90001 +251238,Bose SoundSport Headphones,1,99.99,2019-09-13 12:14:00,151 5th St, Atlanta,GA,30301 +251239,AAA Batteries (4-pack),2,2.99,2019-09-23 09:34:00,509 West St, New York City,NY,10001 +251240,Vareebadd Phone,1,400.0,2019-09-09 19:34:00,507 11th St, Seattle,WA,98101 +251240,USB-C Charging Cable,1,11.95,2019-09-09 19:34:00,507 11th St, Seattle,WA,98101 +251241,Apple Airpods Headphones,1,150.0,2019-09-04 18:24:00,837 North St, Los Angeles,CA,90001 +251242,AA Batteries (4-pack),2,3.84,2019-09-05 19:09:00,847 South St, Atlanta,GA,30301 +251243,Apple Airpods Headphones,1,150.0,2019-10-01 00:09:00,854 2nd St, Los Angeles,CA,90001 +251244,USB-C Charging Cable,1,11.95,2019-09-07 11:51:00,973 Adams St, Seattle,WA,98101 +251245,20in Monitor,1,109.99,2019-09-03 19:12:00,52 Adams St, Portland,OR,97035 +251246,USB-C Charging Cable,1,11.95,2019-09-10 09:05:00,524 Jefferson St, San Francisco,CA,94016 +251247,Apple Airpods Headphones,1,150.0,2019-09-02 10:45:00,359 South St, Seattle,WA,98101 +251248,27in FHD Monitor,1,149.99,2019-09-24 08:23:00,204 Wilson St, New York City,NY,10001 +251249,Google Phone,1,600.0,2019-09-28 13:08:00,697 Pine St, Portland,OR,97035 +251250,34in Ultrawide Monitor,1,379.99,2019-09-21 12:41:00,533 2nd St, Los Angeles,CA,90001 +251251,AA Batteries (4-pack),1,3.84,2019-09-28 07:38:00,420 Madison St, Portland,OR,97035 +251252,Apple Airpods Headphones,1,150.0,2019-09-29 23:59:00,836 South St, New York City,NY,10001 +251253,Bose SoundSport Headphones,1,99.99,2019-09-04 10:20:00,291 Madison St, Seattle,WA,98101 +251254,AA Batteries (4-pack),2,3.84,2019-09-19 22:01:00,982 Forest St, New York City,NY,10001 +251255,27in FHD Monitor,1,149.99,2019-09-08 20:07:00,383 Johnson St, San Francisco,CA,94016 +251256,AAA Batteries (4-pack),2,2.99,2019-09-09 11:42:00,779 Willow St, Seattle,WA,98101 +251257,27in FHD Monitor,1,149.99,2019-09-12 14:29:00,639 West St, San Francisco,CA,94016 +251258,Lightning Charging Cable,1,14.95,2019-09-04 11:48:00,171 Cherry St, San Francisco,CA,94016 +251259,27in 4K Gaming Monitor,1,389.99,2019-09-30 16:39:00,206 Cherry St, Seattle,WA,98101 +251260,27in FHD Monitor,1,149.99,2019-09-20 05:31:00,974 5th St, Los Angeles,CA,90001 +251261,ThinkPad Laptop,1,999.99,2019-09-03 17:40:00,569 4th St, Atlanta,GA,30301 +251262,Wired Headphones,1,11.99,2019-09-24 10:33:00,117 Jefferson St, Los Angeles,CA,90001 +251263,Lightning Charging Cable,1,14.95,2019-09-29 22:48:00,536 Madison St, San Francisco,CA,94016 +251264,AAA Batteries (4-pack),1,2.99,2019-09-07 09:34:00,68 Washington St, Los Angeles,CA,90001 +251265,34in Ultrawide Monitor,1,379.99,2019-09-16 08:21:00,639 Spruce St, San Francisco,CA,94016 +251266,AA Batteries (4-pack),1,3.84,2019-09-01 12:12:00,989 Lake St, Atlanta,GA,30301 +251267,Wired Headphones,1,11.99,2019-09-30 18:09:00,255 Chestnut St, Los Angeles,CA,90001 +251268,Apple Airpods Headphones,1,150.0,2019-09-15 11:20:00,323 2nd St, San Francisco,CA,94016 +251269,Wired Headphones,1,11.99,2019-09-16 21:57:00,485 Sunset St, Atlanta,GA,30301 +251270,AAA Batteries (4-pack),1,2.99,2019-09-20 19:29:00,902 River St, Portland,ME,04101 +251271,27in FHD Monitor,1,149.99,2019-09-04 14:29:00,476 Dogwood St, Atlanta,GA,30301 +251272,iPhone,1,700.0,2019-09-17 19:46:00,780 6th St, Dallas,TX,75001 +251273,Lightning Charging Cable,1,14.95,2019-09-02 21:46:00,513 Spruce St, New York City,NY,10001 +251274,Wired Headphones,1,11.99,2019-09-04 16:17:00,253 9th St, San Francisco,CA,94016 +251275,AA Batteries (4-pack),1,3.84,2019-09-13 18:06:00,176 North St, San Francisco,CA,94016 +251276,ThinkPad Laptop,1,999.99,2019-09-10 13:00:00,424 Washington St, Portland,OR,97035 +251277,AAA Batteries (4-pack),1,2.99,2019-09-23 16:35:00,151 Lakeview St, Atlanta,GA,30301 +251278,27in FHD Monitor,1,149.99,2019-09-09 01:01:00,124 Park St, Austin,TX,73301 +251279,20in Monitor,1,109.99,2019-09-28 18:48:00,146 Lake St, Austin,TX,73301 +251280,Vareebadd Phone,1,400.0,2019-09-18 14:23:00,709 Ridge St, San Francisco,CA,94016 +251280,Bose SoundSport Headphones,1,99.99,2019-09-18 14:23:00,709 Ridge St, San Francisco,CA,94016 +251281,Wired Headphones,1,11.99,2019-09-10 22:42:00,995 River St, San Francisco,CA,94016 +251282,USB-C Charging Cable,1,11.95,2019-09-09 20:00:00,599 Willow St, Los Angeles,CA,90001 +251283,AAA Batteries (4-pack),1,2.99,2019-09-28 18:27:00,211 Elm St, Portland,ME,04101 +251284,27in 4K Gaming Monitor,1,389.99,2019-09-21 06:02:00,878 Ridge St, Atlanta,GA,30301 +251285,Apple Airpods Headphones,1,150.0,2019-09-18 12:21:00,225 Highland St, San Francisco,CA,94016 +251286,USB-C Charging Cable,1,11.95,2019-09-01 13:16:00,593 Jackson St, San Francisco,CA,94016 +251287,Bose SoundSport Headphones,1,99.99,2019-09-24 08:41:00,232 Jefferson St, Los Angeles,CA,90001 +251288,USB-C Charging Cable,1,11.95,2019-09-14 12:41:00,929 Jackson St, Los Angeles,CA,90001 +251289,Wired Headphones,1,11.99,2019-09-20 13:42:00,400 Forest St, San Francisco,CA,94016 +251290,Google Phone,1,600.0,2019-09-28 11:24:00,180 Jackson St, Seattle,WA,98101 +251291,AA Batteries (4-pack),1,3.84,2019-09-03 19:17:00,165 Spruce St, Boston,MA,02215 +251292,Google Phone,1,600.0,2019-09-04 02:17:00,670 2nd St, Los Angeles,CA,90001 +251293,iPhone,1,700.0,2019-09-09 13:04:00,558 North St, Dallas,TX,75001 +251294,USB-C Charging Cable,1,11.95,2019-09-27 09:31:00,467 Walnut St, Seattle,WA,98101 +251295,34in Ultrawide Monitor,1,379.99,2019-09-05 15:11:00,63 Wilson St, San Francisco,CA,94016 +251296,Google Phone,1,600.0,2019-09-17 20:27:00,624 Highland St, Seattle,WA,98101 +251297,iPhone,1,700.0,2019-09-13 19:25:00,390 River St, Portland,OR,97035 +251297,Wired Headphones,1,11.99,2019-09-13 19:25:00,390 River St, Portland,OR,97035 +251298,Wired Headphones,2,11.99,2019-09-06 14:35:00,732 River St, Boston,MA,02215 +251299,AA Batteries (4-pack),1,3.84,2019-09-30 15:50:00,150 River St, Los Angeles,CA,90001 +251300,Lightning Charging Cable,1,14.95,2019-09-02 15:23:00,608 Dogwood St, Los Angeles,CA,90001 +251301,Lightning Charging Cable,1,14.95,2019-09-22 11:13:00,833 Hill St, Los Angeles,CA,90001 +251302,AA Batteries (4-pack),1,3.84,2019-09-18 15:31:00,124 13th St, Seattle,WA,98101 +251303,Macbook Pro Laptop,1,1700.0,2019-09-09 09:52:00,25 Lake St, New York City,NY,10001 +251304,34in Ultrawide Monitor,1,379.99,2019-09-12 19:08:00,829 Cedar St, Austin,TX,73301 +251305,Wired Headphones,1,11.99,2019-09-22 10:42:00,609 Main St, San Francisco,CA,94016 +251306,Apple Airpods Headphones,1,150.0,2019-09-21 20:02:00,776 Pine St, Boston,MA,02215 +251307,27in FHD Monitor,1,149.99,2019-09-01 13:45:00,492 Sunset St, Boston,MA,02215 +251308,Bose SoundSport Headphones,1,99.99,2019-09-17 03:15:00,999 Sunset St, Boston,MA,02215 +251309,Lightning Charging Cable,2,14.95,2019-09-16 13:25:00,980 West St, San Francisco,CA,94016 +251310,27in FHD Monitor,1,149.99,2019-09-24 13:50:00,47 Center St, Los Angeles,CA,90001 +251311,Wired Headphones,1,11.99,2019-09-09 12:20:00,400 Washington St, Portland,OR,97035 +251312,27in FHD Monitor,1,149.99,2019-09-15 18:02:00,384 Lake St, Seattle,WA,98101 +251313,AAA Batteries (4-pack),1,2.99,2019-09-07 20:56:00,395 Lake St, Boston,MA,02215 +251314,Lightning Charging Cable,1,14.95,2019-09-29 21:05:00,851 2nd St, New York City,NY,10001 +251315,Apple Airpods Headphones,1,150.0,2019-09-05 14:32:00,601 2nd St, San Francisco,CA,94016 +251316,USB-C Charging Cable,1,11.95,2019-09-12 18:47:00,91 Maple St, New York City,NY,10001 +251317,ThinkPad Laptop,1,999.99,2019-09-14 13:54:00,95 Sunset St, Seattle,WA,98101 +251318,AA Batteries (4-pack),1,3.84,2019-09-02 11:25:00,225 5th St, Portland,OR,97035 +251319,ThinkPad Laptop,1,999.99,2019-09-06 20:14:00,431 Jackson St, San Francisco,CA,94016 +251320,Lightning Charging Cable,1,14.95,2019-09-30 22:03:00,996 11th St, Los Angeles,CA,90001 +251321,Lightning Charging Cable,1,14.95,2019-09-12 19:31:00,619 Jefferson St, San Francisco,CA,94016 +251322,Apple Airpods Headphones,1,150.0,2019-09-02 08:23:00,264 8th St, Boston,MA,02215 +251323,27in FHD Monitor,1,149.99,2019-09-26 22:05:00,821 Adams St, Boston,MA,02215 +251324,Google Phone,1,600.0,2019-09-02 17:09:00,617 2nd St, Seattle,WA,98101 +251325,20in Monitor,1,109.99,2019-09-06 23:23:00,989 1st St, San Francisco,CA,94016 +251326,Lightning Charging Cable,1,14.95,2019-09-21 07:56:00,561 6th St, Los Angeles,CA,90001 +251327,Wired Headphones,2,11.99,2019-09-26 22:49:00,84 Church St, Austin,TX,73301 +251328,Lightning Charging Cable,1,14.95,2019-09-23 18:53:00,823 9th St, Boston,MA,02215 +251329,USB-C Charging Cable,1,11.95,2019-09-06 11:17:00,370 Willow St, Dallas,TX,75001 +251330,Wired Headphones,1,11.99,2019-09-08 10:11:00,72 2nd St, San Francisco,CA,94016 +251331,Apple Airpods Headphones,1,150.0,2019-09-13 21:01:00,813 Main St, San Francisco,CA,94016 +251332,Wired Headphones,1,11.99,2019-09-26 20:05:00,765 Ridge St, San Francisco,CA,94016 +251332,Lightning Charging Cable,1,14.95,2019-09-26 20:05:00,765 Ridge St, San Francisco,CA,94016 +251333,Flatscreen TV,1,300.0,2019-09-15 05:50:00,626 Forest St, Seattle,WA,98101 +251334,ThinkPad Laptop,1,999.99,2019-09-02 20:24:00,783 Meadow St, New York City,NY,10001 +251335,Apple Airpods Headphones,1,150.0,2019-09-02 16:18:00,92 Center St, San Francisco,CA,94016 +251336,Bose SoundSport Headphones,1,99.99,2019-09-07 00:08:00,231 Hill St, San Francisco,CA,94016 +251337,AAA Batteries (4-pack),2,2.99,2019-09-07 15:15:00,705 Highland St, New York City,NY,10001 +251338,Apple Airpods Headphones,1,150.0,2019-09-11 16:39:00,794 Center St, Austin,TX,73301 +251339,20in Monitor,1,109.99,2019-09-17 08:48:00,620 Washington St, Los Angeles,CA,90001 +251340,Apple Airpods Headphones,1,150.0,2019-09-22 15:04:00,768 Forest St, New York City,NY,10001 +251341,USB-C Charging Cable,1,11.95,2019-09-18 20:06:00,334 North St, Portland,OR,97035 +251342,AA Batteries (4-pack),1,3.84,2019-09-09 22:59:00,87 Lincoln St, Seattle,WA,98101 +251343,ThinkPad Laptop,1,999.99,2019-09-17 16:34:00,254 Lake St, Seattle,WA,98101 +251344,Apple Airpods Headphones,1,150.0,2019-09-05 14:01:00,753 Wilson St, Seattle,WA,98101 +251345,AAA Batteries (4-pack),1,2.99,2019-09-14 08:03:00,729 5th St, Boston,MA,02215 +251346,Bose SoundSport Headphones,1,99.99,2019-09-25 20:20:00,527 Main St, Seattle,WA,98101 +251347,AA Batteries (4-pack),1,3.84,2019-09-28 20:35:00,65 Chestnut St, Atlanta,GA,30301 +251348,Macbook Pro Laptop,1,1700.0,2019-09-09 21:10:00,542 12th St, New York City,NY,10001 +251349,USB-C Charging Cable,1,11.95,2019-09-22 14:28:00,852 Maple St, New York City,NY,10001 +251350,Vareebadd Phone,1,400.0,2019-09-02 09:49:00,641 2nd St, New York City,NY,10001 +251350,Wired Headphones,1,11.99,2019-09-02 09:49:00,641 2nd St, New York City,NY,10001 +251351,Wired Headphones,1,11.99,2019-09-22 13:34:00,798 14th St, Los Angeles,CA,90001 +251352,Lightning Charging Cable,1,14.95,2019-09-27 20:38:00,219 4th St, Los Angeles,CA,90001 +251353,Lightning Charging Cable,1,14.95,2019-09-12 19:57:00,222 Cherry St, Boston,MA,02215 +251354,27in FHD Monitor,1,149.99,2019-09-11 19:25:00,940 Cherry St, Atlanta,GA,30301 +251355,Vareebadd Phone,1,400.0,2019-09-11 02:59:00,554 Lakeview St, San Francisco,CA,94016 +251356,Bose SoundSport Headphones,1,99.99,2019-09-25 11:33:00,380 11th St, New York City,NY,10001 +251357,27in 4K Gaming Monitor,1,389.99,2019-09-11 17:22:00,66 Adams St, San Francisco,CA,94016 +251358,Macbook Pro Laptop,1,1700.0,2019-09-19 10:49:00,65 Lakeview St, Los Angeles,CA,90001 +251359,Wired Headphones,1,11.99,2019-09-19 16:51:00,73 Lake St, Boston,MA,02215 +251360,Lightning Charging Cable,1,14.95,2019-09-05 12:50:00,949 Park St, Dallas,TX,75001 +251361,USB-C Charging Cable,1,11.95,2019-09-10 03:59:00,455 Adams St, Los Angeles,CA,90001 +251362,AA Batteries (4-pack),1,3.84,2019-09-16 12:33:00,315 River St, Portland,OR,97035 +251363,AA Batteries (4-pack),2,3.84,2019-09-23 13:07:00,739 Cedar St, Boston,MA,02215 +251364,Apple Airpods Headphones,1,150.0,2019-09-11 21:37:00,927 8th St, Los Angeles,CA,90001 +251365,34in Ultrawide Monitor,1,379.99,2019-09-28 15:12:00,491 5th St, Dallas,TX,75001 +251366,Google Phone,1,600.0,2019-09-11 18:45:00,236 Dogwood St, San Francisco,CA,94016 +251367,USB-C Charging Cable,1,11.95,2019-09-04 11:47:00,481 South St, Dallas,TX,75001 +251368,USB-C Charging Cable,1,11.95,2019-09-30 09:58:00,475 7th St, New York City,NY,10001 +251369,Macbook Pro Laptop,1,1700.0,2019-09-11 19:59:00,704 Jackson St, Los Angeles,CA,90001 +251370,Wired Headphones,1,11.99,2019-09-03 10:45:00,671 11th St, Boston,MA,02215 +251371,USB-C Charging Cable,1,11.95,2019-09-14 09:04:00,790 Wilson St, Austin,TX,73301 +251372,Wired Headphones,1,11.99,2019-09-29 08:26:00,549 Center St, New York City,NY,10001 +251373,Macbook Pro Laptop,1,1700.0,2019-09-10 04:13:00,616 Madison St, New York City,NY,10001 +251374,AA Batteries (4-pack),1,3.84,2019-09-03 13:44:00,214 11th St, New York City,NY,10001 +251375,Bose SoundSport Headphones,1,99.99,2019-09-29 21:05:00,181 Main St, Boston,MA,02215 +251376,Apple Airpods Headphones,1,150.0,2019-09-20 12:27:00,954 Hickory St, Seattle,WA,98101 +251377,USB-C Charging Cable,1,11.95,2019-09-22 20:25:00,700 5th St, Dallas,TX,75001 +251378,Bose SoundSport Headphones,1,99.99,2019-09-26 17:19:00,277 Cedar St, New York City,NY,10001 +251379,Wired Headphones,1,11.99,2019-09-02 20:18:00,653 Pine St, San Francisco,CA,94016 +251380,Lightning Charging Cable,1,14.95,2019-09-18 11:59:00,650 Lincoln St, Los Angeles,CA,90001 +251381,Bose SoundSport Headphones,1,99.99,2019-09-20 15:01:00,658 Sunset St, Boston,MA,02215 +251382,USB-C Charging Cable,2,11.95,2019-09-01 18:39:00,871 Washington St, Boston,MA,02215 +251383,27in FHD Monitor,1,149.99,2019-09-08 15:56:00,968 8th St, Dallas,TX,75001 +251384,AAA Batteries (4-pack),2,2.99,2019-09-07 22:48:00,376 Pine St, Atlanta,GA,30301 +251385,Google Phone,1,600.0,2019-09-26 18:19:00,130 Washington St, Seattle,WA,98101 +251386,AAA Batteries (4-pack),1,2.99,2019-09-21 14:53:00,367 Church St, Boston,MA,02215 +251387,AAA Batteries (4-pack),1,2.99,2019-09-29 18:14:00,60 13th St, Atlanta,GA,30301 +251388,AAA Batteries (4-pack),1,2.99,2019-09-10 21:13:00,660 Wilson St, Atlanta,GA,30301 +251389,Apple Airpods Headphones,1,150.0,2019-09-26 21:54:00,127 Willow St, Atlanta,GA,30301 +251390,AAA Batteries (4-pack),2,2.99,2019-09-24 13:18:00,608 Johnson St, Los Angeles,CA,90001 +251391,AA Batteries (4-pack),3,3.84,2019-09-26 22:13:00,991 Meadow St, San Francisco,CA,94016 +251392,iPhone,1,700.0,2019-09-15 17:51:00,816 Lincoln St, Boston,MA,02215 +251393,27in FHD Monitor,1,149.99,2019-09-21 21:05:00,853 Park St, San Francisco,CA,94016 +251394,Wired Headphones,2,11.99,2019-09-27 09:33:00,720 Ridge St, New York City,NY,10001 +251395,Wired Headphones,1,11.99,2019-09-11 11:27:00,11 Willow St, Atlanta,GA,30301 +251396,27in 4K Gaming Monitor,1,389.99,2019-09-08 16:22:00,779 6th St, San Francisco,CA,94016 +251397,AA Batteries (4-pack),1,3.84,2019-09-03 11:43:00,727 Jefferson St, Portland,OR,97035 +251398,USB-C Charging Cable,1,11.95,2019-09-05 23:23:00,624 Meadow St, Dallas,TX,75001 +251399,27in FHD Monitor,1,149.99,2019-09-16 18:12:00,545 River St, Boston,MA,02215 +251400,Apple Airpods Headphones,1,150.0,2019-09-06 19:50:00,776 Ridge St, Dallas,TX,75001 +251401,USB-C Charging Cable,1,11.95,2019-09-28 09:20:00,249 Lakeview St, Seattle,WA,98101 +251402,USB-C Charging Cable,2,11.95,2019-09-23 21:36:00,842 6th St, New York City,NY,10001 +251403,Google Phone,1,600.0,2019-09-03 16:36:00,117 Adams St, New York City,NY,10001 +251403,USB-C Charging Cable,1,11.95,2019-09-03 16:36:00,117 Adams St, New York City,NY,10001 +251404,USB-C Charging Cable,1,11.95,2019-09-04 12:00:00,50 Walnut St, Atlanta,GA,30301 +251405,AAA Batteries (4-pack),3,2.99,2019-09-06 10:35:00,912 Hill St, New York City,NY,10001 +251406,ThinkPad Laptop,1,999.99,2019-09-01 10:10:00,886 Center St, New York City,NY,10001 +251407,Lightning Charging Cable,2,14.95,2019-09-15 18:30:00,277 Jackson St, San Francisco,CA,94016 +251408,USB-C Charging Cable,1,11.95,2019-09-25 00:12:00,43 Jefferson St, Atlanta,GA,30301 +251409,USB-C Charging Cable,1,11.95,2019-09-08 21:30:00,542 Madison St, San Francisco,CA,94016 +251410,AAA Batteries (4-pack),1,2.99,2019-09-14 23:35:00,818 Washington St, Dallas,TX,75001 +251411,AA Batteries (4-pack),1,3.84,2019-09-19 22:14:00,924 Pine St, Los Angeles,CA,90001 +251412,iPhone,1,700.0,2019-09-25 23:24:00,550 Spruce St, Los Angeles,CA,90001 +251413,Lightning Charging Cable,1,14.95,2019-09-06 19:08:00,191 6th St, Los Angeles,CA,90001 +251414,34in Ultrawide Monitor,1,379.99,2019-09-02 13:35:00,113 Madison St, Portland,OR,97035 +251415,AAA Batteries (4-pack),1,2.99,2019-09-12 11:54:00,322 Hickory St, Portland,OR,97035 +251416,Apple Airpods Headphones,1,150.0,2019-09-11 20:07:00,432 9th St, Los Angeles,CA,90001 +251417,27in 4K Gaming Monitor,1,389.99,2019-09-27 21:28:00,380 River St, Portland,OR,97035 +251418,Apple Airpods Headphones,1,150.0,2019-09-06 21:11:00,966 2nd St, San Francisco,CA,94016 +251419,USB-C Charging Cable,1,11.95,2019-09-27 21:16:00,576 Church St, Seattle,WA,98101 +251420,27in 4K Gaming Monitor,1,389.99,2019-09-15 07:58:00,184 9th St, San Francisco,CA,94016 +251421,Wired Headphones,1,11.99,2019-09-30 19:05:00,935 Highland St, San Francisco,CA,94016 +251422,AAA Batteries (4-pack),2,2.99,2019-09-06 15:46:00,523 Forest St, Dallas,TX,75001 +251423,USB-C Charging Cable,1,11.95,2019-09-03 15:04:00,610 Johnson St, Boston,MA,02215 +251424,20in Monitor,1,109.99,2019-09-01 06:14:00,649 Sunset St, Portland,OR,97035 +251425,Apple Airpods Headphones,1,150.0,2019-09-13 22:03:00,598 13th St, Atlanta,GA,30301 +251426,ThinkPad Laptop,1,999.99,2019-09-16 11:43:00,949 6th St, San Francisco,CA,94016 +251427,AAA Batteries (4-pack),1,2.99,2019-09-16 10:33:00,808 Jefferson St, Austin,TX,73301 +251428,Lightning Charging Cable,1,14.95,2019-09-17 02:08:00,348 Hill St, San Francisco,CA,94016 +251428,LG Washing Machine,1,600.0,2019-09-17 02:08:00,348 Hill St, San Francisco,CA,94016 +251429,34in Ultrawide Monitor,1,379.99,2019-09-27 15:18:00,782 Highland St, Dallas,TX,75001 +251430,AAA Batteries (4-pack),2,2.99,2019-09-09 13:37:00,201 4th St, Boston,MA,02215 +251431,USB-C Charging Cable,1,11.95,2019-09-09 11:48:00,756 Walnut St, Atlanta,GA,30301 +251432,AA Batteries (4-pack),1,3.84,2019-09-03 10:53:00,681 Walnut St, San Francisco,CA,94016 +251433,AAA Batteries (4-pack),1,2.99,2019-09-03 16:58:00,427 Lincoln St, Los Angeles,CA,90001 +251434,Bose SoundSport Headphones,1,99.99,2019-09-01 12:42:00,445 Pine St, Los Angeles,CA,90001 +251435,AA Batteries (4-pack),1,3.84,2019-09-22 20:57:00,401 River St, Seattle,WA,98101 +251436,Wired Headphones,1,11.99,2019-09-18 18:42:00,768 Ridge St, San Francisco,CA,94016 +251437,USB-C Charging Cable,1,11.95,2019-09-22 14:23:00,105 Adams St, New York City,NY,10001 +251438,Apple Airpods Headphones,1,150.0,2019-09-27 08:14:00,362 8th St, New York City,NY,10001 +251439,Google Phone,1,600.0,2019-09-27 15:42:00,961 Johnson St, Boston,MA,02215 +251440,Wired Headphones,1,11.99,2019-09-23 18:29:00,640 Lincoln St, Los Angeles,CA,90001 +251441,Wired Headphones,1,11.99,2019-09-21 17:46:00,652 Wilson St, Boston,MA,02215 +251442,Lightning Charging Cable,1,14.95,2019-09-18 17:24:00,433 North St, Seattle,WA,98101 +251443,AAA Batteries (4-pack),1,2.99,2019-09-19 13:51:00,552 11th St, Seattle,WA,98101 +251444,Apple Airpods Headphones,1,150.0,2019-09-11 16:15:00,940 Jackson St, Los Angeles,CA,90001 +251445,Bose SoundSport Headphones,1,99.99,2019-09-15 01:58:00,548 Ridge St, San Francisco,CA,94016 +251446,Lightning Charging Cable,1,14.95,2019-09-07 19:12:00,508 Meadow St, Boston,MA,02215 +251447,Lightning Charging Cable,1,14.95,2019-09-29 09:48:00,560 1st St, Dallas,TX,75001 +251448,Bose SoundSport Headphones,1,99.99,2019-09-01 09:08:00,519 Forest St, Austin,TX,73301 +251449,AA Batteries (4-pack),3,3.84,2019-09-24 19:52:00,851 Park St, Austin,TX,73301 +251450,Lightning Charging Cable,1,14.95,2019-09-15 17:14:00,212 River St, San Francisco,CA,94016 +251451,Bose SoundSport Headphones,1,99.99,2019-09-02 11:03:00,806 10th St, Atlanta,GA,30301 +251452,Flatscreen TV,1,300.0,2019-09-28 08:29:00,244 Highland St, Atlanta,GA,30301 +251453,Macbook Pro Laptop,1,1700.0,2019-09-10 18:54:00,310 Chestnut St, Dallas,TX,75001 +251454,Apple Airpods Headphones,1,150.0,2019-09-12 12:04:00,520 Pine St, Dallas,TX,75001 +251455,Apple Airpods Headphones,1,150.0,2019-09-29 08:57:00,576 Elm St, Los Angeles,CA,90001 +251456,AA Batteries (4-pack),2,3.84,2019-09-02 11:56:00,556 North St, New York City,NY,10001 +251457,AA Batteries (4-pack),1,3.84,2019-09-29 19:40:00,565 Highland St, Dallas,TX,75001 +251458,Google Phone,1,600.0,2019-09-13 23:20:00,484 Meadow St, Los Angeles,CA,90001 +251459,Lightning Charging Cable,1,14.95,2019-09-20 08:26:00,462 Wilson St, Dallas,TX,75001 +251460,Wired Headphones,1,11.99,2019-09-13 01:45:00,355 10th St, Seattle,WA,98101 +251461,AAA Batteries (4-pack),1,2.99,2019-09-13 23:53:00,830 Lake St, San Francisco,CA,94016 +251462,27in FHD Monitor,1,149.99,2019-09-18 13:10:00,33 Forest St, Atlanta,GA,30301 +251463,Apple Airpods Headphones,1,150.0,2019-09-07 19:39:00,496 Chestnut St, New York City,NY,10001 +251464,USB-C Charging Cable,1,11.95,2019-09-09 18:01:00,777 1st St, Seattle,WA,98101 +251465,Google Phone,1,600.0,2019-09-30 16:50:00,307 Jefferson St, Boston,MA,02215 +251466,AAA Batteries (4-pack),1,2.99,2019-09-17 07:25:00,872 Sunset St, New York City,NY,10001 +251467,AA Batteries (4-pack),2,3.84,2019-09-21 11:52:00,533 1st St, Los Angeles,CA,90001 +251467,ThinkPad Laptop,1,999.99,2019-09-21 11:52:00,533 1st St, Los Angeles,CA,90001 +251468,Bose SoundSport Headphones,1,99.99,2019-09-19 00:04:00,71 4th St, Seattle,WA,98101 +251469,Apple Airpods Headphones,1,150.0,2019-09-11 11:48:00,831 Center St, Dallas,TX,75001 +251470,Lightning Charging Cable,1,14.95,2019-09-20 18:51:00,544 Walnut St, San Francisco,CA,94016 +251471,Apple Airpods Headphones,1,150.0,2019-09-19 23:22:00,33 Cherry St, San Francisco,CA,94016 +251472,iPhone,1,700.0,2019-09-15 13:54:00,853 Madison St, Austin,TX,73301 +251472,Wired Headphones,1,11.99,2019-09-15 13:54:00,853 Madison St, Austin,TX,73301 +251473,AAA Batteries (4-pack),1,2.99,2019-09-26 21:58:00,752 Pine St, Los Angeles,CA,90001 +251474,Lightning Charging Cable,1,14.95,2019-09-20 23:27:00,703 Dogwood St, Dallas,TX,75001 +251475,Wired Headphones,1,11.99,2019-09-01 23:31:00,304 Sunset St, Boston,MA,02215 +251476,Macbook Pro Laptop,1,1700.0,2019-09-19 21:09:00,477 Madison St, Los Angeles,CA,90001 +251477,Bose SoundSport Headphones,1,99.99,2019-09-30 12:19:00,968 2nd St, Austin,TX,73301 +251478,AA Batteries (4-pack),1,3.84,2019-09-02 12:51:00,84 Spruce St, San Francisco,CA,94016 +251479,Wired Headphones,1,11.99,2019-09-28 12:34:00,837 7th St, San Francisco,CA,94016 +251480,USB-C Charging Cable,1,11.95,2019-09-28 19:14:00,872 Jefferson St, Portland,OR,97035 +251481,USB-C Charging Cable,1,11.95,2019-09-12 01:48:00,460 Park St, Boston,MA,02215 +251482,Bose SoundSport Headphones,1,99.99,2019-09-03 14:21:00,661 Sunset St, Los Angeles,CA,90001 +251483,AAA Batteries (4-pack),1,2.99,2019-09-16 22:13:00,605 6th St, Dallas,TX,75001 +251484,Apple Airpods Headphones,1,150.0,2019-09-16 20:04:00,876 Chestnut St, New York City,NY,10001 +251485,Wired Headphones,1,11.99,2019-09-23 17:22:00,208 Sunset St, San Francisco,CA,94016 +251486,iPhone,1,700.0,2019-09-18 20:49:00,703 4th St, Dallas,TX,75001 +251487,Wired Headphones,1,11.99,2019-09-02 18:54:00,934 Sunset St, Los Angeles,CA,90001 +251488,USB-C Charging Cable,1,11.95,2019-09-29 15:29:00,644 Jefferson St, Boston,MA,02215 +251489,Apple Airpods Headphones,1,150.0,2019-09-23 17:27:00,696 Wilson St, Los Angeles,CA,90001 +251490,AAA Batteries (4-pack),1,2.99,2019-09-19 12:04:00,429 8th St, Los Angeles,CA,90001 +251491,AAA Batteries (4-pack),3,2.99,2019-09-08 18:02:00,16 Church St, Dallas,TX,75001 +251492,Bose SoundSport Headphones,1,99.99,2019-09-11 08:46:00,731 Johnson St, Boston,MA,02215 +251493,Wired Headphones,1,11.99,2019-09-05 08:50:00,423 Spruce St, Boston,MA,02215 +251494,Lightning Charging Cable,1,14.95,2019-09-23 21:39:00,493 Maple St, Dallas,TX,75001 +251495,AA Batteries (4-pack),2,3.84,2019-09-23 20:30:00,866 5th St, Seattle,WA,98101 +251496,USB-C Charging Cable,1,11.95,2019-09-18 18:01:00,885 Lake St, Los Angeles,CA,90001 +251497,27in 4K Gaming Monitor,1,389.99,2019-09-27 09:01:00,158 Church St, San Francisco,CA,94016 +251498,Bose SoundSport Headphones,1,99.99,2019-09-02 14:24:00,500 Hickory St, Austin,TX,73301 +251499,USB-C Charging Cable,1,11.95,2019-09-30 12:40:00,31 River St, Atlanta,GA,30301 +251500,Apple Airpods Headphones,1,150.0,2019-09-21 21:18:00,579 Highland St, Boston,MA,02215 +251501,iPhone,1,700.0,2019-09-25 12:50:00,272 13th St, New York City,NY,10001 +251502,USB-C Charging Cable,1,11.95,2019-09-21 22:37:00,969 6th St, Atlanta,GA,30301 +251503,Wired Headphones,1,11.99,2019-09-29 16:27:00,466 Ridge St, San Francisco,CA,94016 +251504,AA Batteries (4-pack),1,3.84,2019-09-15 15:52:00,303 Ridge St, Austin,TX,73301 +251505,AAA Batteries (4-pack),1,2.99,2019-09-27 20:23:00,586 Center St, San Francisco,CA,94016 +251506,iPhone,1,700.0,2019-09-25 18:50:00,601 Lakeview St, Seattle,WA,98101 +251506,Lightning Charging Cable,1,14.95,2019-09-25 18:50:00,601 Lakeview St, Seattle,WA,98101 +251507,USB-C Charging Cable,1,11.95,2019-09-13 23:43:00,728 Jackson St, Atlanta,GA,30301 +251508,AA Batteries (4-pack),2,3.84,2019-09-09 13:13:00,603 4th St, San Francisco,CA,94016 +251509,Bose SoundSport Headphones,1,99.99,2019-09-01 19:12:00,614 1st St, Austin,TX,73301 +251510,USB-C Charging Cable,1,11.95,2019-09-25 07:33:00,526 Sunset St, San Francisco,CA,94016 +251511,AA Batteries (4-pack),1,3.84,2019-09-17 12:42:00,18 Chestnut St, Boston,MA,02215 +251512,iPhone,1,700.0,2019-09-09 19:39:00,187 Chestnut St, Seattle,WA,98101 +251513,Wired Headphones,1,11.99,2019-09-20 12:10:00,643 Lake St, Los Angeles,CA,90001 +251514,Lightning Charging Cable,1,14.95,2019-09-19 19:09:00,273 North St, Seattle,WA,98101 +251515,Bose SoundSport Headphones,1,99.99,2019-09-06 13:15:00,900 Center St, Boston,MA,02215 +251516,Wired Headphones,1,11.99,2019-09-18 11:26:00,125 Chestnut St, San Francisco,CA,94016 +251517,Wired Headphones,1,11.99,2019-09-15 19:43:00,453 Lakeview St, Dallas,TX,75001 +251518,ThinkPad Laptop,1,999.99,2019-09-03 00:51:00,100 Adams St, Portland,OR,97035 +251519,Wired Headphones,1,11.99,2019-09-07 09:00:00,856 Lake St, Los Angeles,CA,90001 +251520,Lightning Charging Cable,1,14.95,2019-09-22 11:30:00,429 6th St, Dallas,TX,75001 +251521,AA Batteries (4-pack),1,3.84,2019-09-16 14:24:00,145 Hill St, Boston,MA,02215 +251522,Vareebadd Phone,1,400.0,2019-09-14 22:19:00,675 Forest St, Austin,TX,73301 +251523,Wired Headphones,1,11.99,2019-09-05 17:17:00,239 River St, Dallas,TX,75001 +251524,AAA Batteries (4-pack),1,2.99,2019-09-17 20:06:00,933 6th St, Boston,MA,02215 +251525,20in Monitor,1,109.99,2019-09-18 17:47:00,690 Lincoln St, Austin,TX,73301 +251525,Lightning Charging Cable,1,14.95,2019-09-18 17:47:00,690 Lincoln St, Austin,TX,73301 +251526,AAA Batteries (4-pack),1,2.99,2019-09-16 21:41:00,273 Lakeview St, New York City,NY,10001 +251527,Flatscreen TV,1,300.0,2019-09-15 16:26:00,593 Jefferson St, San Francisco,CA,94016 +251528,20in Monitor,1,109.99,2019-09-08 11:03:00,9 Center St, Dallas,TX,75001 +251529,Lightning Charging Cable,1,14.95,2019-09-11 00:04:00,190 Ridge St, Los Angeles,CA,90001 +251530,27in FHD Monitor,1,149.99,2019-09-23 18:10:00,926 Lincoln St, Seattle,WA,98101 +251531,AA Batteries (4-pack),1,3.84,2019-09-23 10:49:00,588 Center St, Seattle,WA,98101 +251532,Flatscreen TV,1,300.0,2019-09-17 15:11:00,268 Willow St, San Francisco,CA,94016 +251533,USB-C Charging Cable,1,11.95,2019-09-14 09:36:00,8 Highland St, San Francisco,CA,94016 +251534,USB-C Charging Cable,1,11.95,2019-09-30 11:10:00,437 Cherry St, Los Angeles,CA,90001 +251535,Wired Headphones,1,11.99,2019-09-24 21:03:00,955 Pine St, San Francisco,CA,94016 +251536,USB-C Charging Cable,1,11.95,2019-09-23 16:32:00,722 8th St, San Francisco,CA,94016 +251537,AAA Batteries (4-pack),1,2.99,2019-09-11 11:36:00,505 Johnson St, Atlanta,GA,30301 +251538,AAA Batteries (4-pack),1,2.99,2019-09-26 17:57:00,469 2nd St, New York City,NY,10001 +251539,AA Batteries (4-pack),2,3.84,2019-09-27 07:32:00,500 Meadow St, Atlanta,GA,30301 +251540,USB-C Charging Cable,1,11.95,2019-09-26 21:16:00,873 Sunset St, New York City,NY,10001 +251541,Wired Headphones,1,11.99,2019-09-24 12:08:00,770 North St, New York City,NY,10001 +251542,Apple Airpods Headphones,1,150.0,2019-09-28 13:17:00,434 Wilson St, New York City,NY,10001 +251543,USB-C Charging Cable,1,11.95,2019-09-04 13:59:00,256 Adams St, Boston,MA,02215 +251544,AAA Batteries (4-pack),1,2.99,2019-09-07 11:43:00,292 Highland St, Boston,MA,02215 +251545,Bose SoundSport Headphones,1,99.99,2019-09-06 14:49:00,263 Meadow St, San Francisco,CA,94016 +251546,AAA Batteries (4-pack),1,2.99,2019-09-06 19:38:00,256 Park St, Austin,TX,73301 +251547,AA Batteries (4-pack),1,3.84,2019-09-18 09:00:00,692 River St, Boston,MA,02215 +251548,Bose SoundSport Headphones,1,99.99,2019-09-18 13:38:00,651 Madison St, Dallas,TX,75001 +251549,Wired Headphones,1,11.99,2019-09-18 13:42:00,796 Center St, San Francisco,CA,94016 +251550,Apple Airpods Headphones,1,150.0,2019-09-19 21:15:00,449 Church St, Boston,MA,02215 +251551,Lightning Charging Cable,1,14.95,2019-09-08 20:36:00,253 14th St, Portland,OR,97035 +251552,Wired Headphones,1,11.99,2019-09-05 11:38:00,386 Church St, San Francisco,CA,94016 +251553,AA Batteries (4-pack),1,3.84,2019-09-13 22:38:00,793 10th St, Los Angeles,CA,90001 +251554,iPhone,1,700.0,2019-09-25 12:07:00,456 Church St, San Francisco,CA,94016 +251555,Lightning Charging Cable,1,14.95,2019-09-18 18:42:00,895 Main St, New York City,NY,10001 +251556,Lightning Charging Cable,1,14.95,2019-09-04 10:07:00,825 Meadow St, Portland,OR,97035 +251557,AA Batteries (4-pack),1,3.84,2019-09-02 09:50:00,109 Center St, Atlanta,GA,30301 +251558,USB-C Charging Cable,1,11.95,2019-09-14 18:13:00,130 13th St, Atlanta,GA,30301 +251559,Macbook Pro Laptop,1,1700.0,2019-09-16 17:48:00,185 11th St, San Francisco,CA,94016 +251560,AA Batteries (4-pack),1,3.84,2019-09-24 09:59:00,845 2nd St, Boston,MA,02215 +251561,USB-C Charging Cable,1,11.95,2019-09-17 10:14:00,76 River St, San Francisco,CA,94016 +251562,Lightning Charging Cable,1,14.95,2019-09-13 10:43:00,43 Willow St, Boston,MA,02215 +251563,Macbook Pro Laptop,1,1700.0,2019-09-03 14:52:00,657 Cherry St, San Francisco,CA,94016 +251564,AA Batteries (4-pack),1,3.84,2019-09-07 21:57:00,197 Wilson St, San Francisco,CA,94016 +251565,Apple Airpods Headphones,1,150.0,2019-09-24 19:13:00,507 Forest St, Portland,OR,97035 +251566,AA Batteries (4-pack),1,3.84,2019-09-15 17:18:00,17 4th St, Boston,MA,02215 +251567,AAA Batteries (4-pack),1,2.99,2019-09-13 22:23:00,473 Highland St, Dallas,TX,75001 +251568,AAA Batteries (4-pack),1,2.99,2019-09-13 21:02:00,332 13th St, San Francisco,CA,94016 +251569,USB-C Charging Cable,1,11.95,2019-09-15 21:42:00,612 5th St, Atlanta,GA,30301 +251570,Apple Airpods Headphones,1,150.0,2019-09-25 19:45:00,344 Forest St, Atlanta,GA,30301 +251571,USB-C Charging Cable,2,11.95,2019-09-28 11:14:00,408 13th St, Austin,TX,73301 +251572,Vareebadd Phone,1,400.0,2019-09-21 06:53:00,754 Adams St, Boston,MA,02215 +251573,Google Phone,1,600.0,2019-09-08 21:48:00,467 Adams St, Dallas,TX,75001 +251574,27in FHD Monitor,1,149.99,2019-09-26 15:34:00,512 Lincoln St, Seattle,WA,98101 +251575,USB-C Charging Cable,1,11.95,2019-09-04 21:56:00,61 11th St, Austin,TX,73301 +251576,AA Batteries (4-pack),1,3.84,2019-09-04 17:29:00,482 Johnson St, New York City,NY,10001 +251577,Lightning Charging Cable,1,14.95,2019-09-30 19:10:00,475 4th St, Dallas,TX,75001 +251578,AA Batteries (4-pack),1,3.84,2019-09-11 22:07:00,850 South St, Los Angeles,CA,90001 +251579,Macbook Pro Laptop,1,1700.0,2019-09-11 11:25:00,275 Willow St, Atlanta,GA,30301 +251580,20in Monitor,1,109.99,2019-09-27 20:21:00,172 4th St, Los Angeles,CA,90001 +251581,USB-C Charging Cable,1,11.95,2019-09-19 13:10:00,29 Hill St, New York City,NY,10001 +251582,AA Batteries (4-pack),1,3.84,2019-09-19 12:37:00,490 Washington St, Boston,MA,02215 +251583,Wired Headphones,1,11.99,2019-09-22 15:15:00,429 Hill St, San Francisco,CA,94016 +251584,Macbook Pro Laptop,1,1700.0,2019-09-29 20:40:00,129 Highland St, Los Angeles,CA,90001 +251585,Apple Airpods Headphones,1,150.0,2019-09-09 12:42:00,659 Church St, Atlanta,GA,30301 +251586,ThinkPad Laptop,1,999.99,2019-09-14 12:03:00,990 Church St, Atlanta,GA,30301 +251587,Google Phone,1,600.0,2019-09-08 21:29:00,381 7th St, Los Angeles,CA,90001 +251588,Lightning Charging Cable,2,14.95,2019-09-23 19:17:00,794 North St, Boston,MA,02215 +251589,Vareebadd Phone,1,400.0,2019-09-23 05:31:00,336 Spruce St, New York City,NY,10001 +251590,20in Monitor,1,109.99,2019-09-15 05:52:00,816 Jackson St, Los Angeles,CA,90001 +251591,Google Phone,1,600.0,2019-09-17 06:37:00,154 Park St, New York City,NY,10001 +251592,Bose SoundSport Headphones,1,99.99,2019-09-23 19:47:00,850 Adams St, Los Angeles,CA,90001 +251593,Apple Airpods Headphones,1,150.0,2019-09-20 20:35:00,172 Wilson St, Dallas,TX,75001 +251594,Apple Airpods Headphones,1,150.0,2019-09-12 09:03:00,67 Wilson St, Los Angeles,CA,90001 +251595,USB-C Charging Cable,1,11.95,2019-09-20 05:33:00,908 Lincoln St, San Francisco,CA,94016 +251596,34in Ultrawide Monitor,1,379.99,2019-09-16 12:31:00,796 Ridge St, Los Angeles,CA,90001 +251597,Lightning Charging Cable,1,14.95,2019-09-02 11:06:00,1 Main St, Los Angeles,CA,90001 +251598,Bose SoundSport Headphones,1,99.99,2019-09-05 17:06:00,685 Wilson St, Seattle,WA,98101 +251599,27in FHD Monitor,1,149.99,2019-09-08 06:05:00,199 Walnut St, Dallas,TX,75001 +251600,LG Washing Machine,1,600.0,2019-09-07 17:30:00,181 10th St, Los Angeles,CA,90001 +251601,USB-C Charging Cable,1,11.95,2019-09-14 12:11:00,337 Hickory St, San Francisco,CA,94016 +251602,AAA Batteries (4-pack),1,2.99,2019-09-27 17:52:00,831 South St, Dallas,TX,75001 +251603,Lightning Charging Cable,1,14.95,2019-09-16 12:18:00,240 6th St, Dallas,TX,75001 +251604,Wired Headphones,1,11.99,2019-09-05 23:08:00,892 West St, Portland,ME,04101 +251605,Flatscreen TV,1,300.0,2019-09-20 20:09:00,101 Willow St, New York City,NY,10001 +251606,27in FHD Monitor,1,149.99,2019-09-25 20:10:00,931 Johnson St, New York City,NY,10001 +251607,Lightning Charging Cable,1,14.95,2019-09-08 14:12:00,750 13th St, San Francisco,CA,94016 +251608,AAA Batteries (4-pack),1,2.99,2019-09-23 02:19:00,228 2nd St, Los Angeles,CA,90001 +251609,Vareebadd Phone,1,400.0,2019-09-01 21:13:00,96 Jackson St, Dallas,TX,75001 +251610,Bose SoundSport Headphones,1,99.99,2019-09-04 02:48:00,210 2nd St, San Francisco,CA,94016 +251611,Wired Headphones,2,11.99,2019-09-16 23:45:00,86 Elm St, New York City,NY,10001 +251612,27in FHD Monitor,1,149.99,2019-09-29 19:39:00,268 Highland St, Los Angeles,CA,90001 +251613,AAA Batteries (4-pack),2,2.99,2019-09-17 22:21:00,114 6th St, Los Angeles,CA,90001 +251614,Wired Headphones,1,11.99,2019-09-21 17:59:00,390 Church St, Seattle,WA,98101 +251615,AAA Batteries (4-pack),2,2.99,2019-09-29 19:08:00,62 6th St, San Francisco,CA,94016 +251616,Apple Airpods Headphones,1,150.0,2019-09-15 17:54:00,370 Wilson St, Dallas,TX,75001 +251616,iPhone,1,700.0,2019-09-15 17:54:00,370 Wilson St, Dallas,TX,75001 +251617,AA Batteries (4-pack),1,3.84,2019-09-15 04:25:00,598 Hickory St, San Francisco,CA,94016 +251618,AA Batteries (4-pack),3,3.84,2019-09-14 11:40:00,73 Willow St, Seattle,WA,98101 +251619,AAA Batteries (4-pack),4,2.99,2019-09-18 17:55:00,380 12th St, Portland,OR,97035 +251620,AA Batteries (4-pack),1,3.84,2019-09-14 17:04:00,893 Main St, Austin,TX,73301 +251621,AAA Batteries (4-pack),2,2.99,2019-09-24 22:15:00,456 Lincoln St, Austin,TX,73301 +251622,Macbook Pro Laptop,1,1700.0,2019-09-04 16:46:00,970 2nd St, Atlanta,GA,30301 +251623,Bose SoundSport Headphones,1,99.99,2019-09-19 17:26:00,337 11th St, Austin,TX,73301 +251624,Flatscreen TV,1,300.0,2019-09-14 22:04:00,416 Maple St, Atlanta,GA,30301 +251625,Wired Headphones,1,11.99,2019-09-21 12:27:00,485 Lake St, San Francisco,CA,94016 +251626,Macbook Pro Laptop,1,1700.0,2019-09-09 08:50:00,477 7th St, Los Angeles,CA,90001 +251627,Wired Headphones,1,11.99,2019-09-02 00:29:00,630 Ridge St, Los Angeles,CA,90001 +251628,Lightning Charging Cable,1,14.95,2019-09-11 18:24:00,321 Main St, Boston,MA,02215 +251629,iPhone,1,700.0,2019-09-19 22:52:00,366 Ridge St, New York City,NY,10001 +251630,Wired Headphones,1,11.99,2019-09-26 17:05:00,420 Walnut St, Atlanta,GA,30301 +251631,AA Batteries (4-pack),2,3.84,2019-09-30 21:46:00,135 7th St, Austin,TX,73301 +251632,AAA Batteries (4-pack),1,2.99,2019-09-17 15:44:00,36 West St, New York City,NY,10001 +251633,USB-C Charging Cable,1,11.95,2019-09-26 16:15:00,564 1st St, Portland,OR,97035 +251634,Wired Headphones,1,11.99,2019-09-05 08:54:00,486 13th St, New York City,NY,10001 +251635,34in Ultrawide Monitor,1,379.99,2019-09-19 15:11:00,582 Ridge St, Atlanta,GA,30301 +251636,USB-C Charging Cable,1,11.95,2019-09-12 11:13:00,291 Maple St, Atlanta,GA,30301 +251637,Wired Headphones,3,11.99,2019-09-16 23:50:00,157 12th St, Portland,OR,97035 +251638,34in Ultrawide Monitor,1,379.99,2019-09-27 18:51:00,820 13th St, New York City,NY,10001 +251639,AAA Batteries (4-pack),1,2.99,2019-09-25 11:31:00,808 Washington St, Portland,OR,97035 +251640,AAA Batteries (4-pack),2,2.99,2019-09-13 17:36:00,192 Jackson St, New York City,NY,10001 +251641,USB-C Charging Cable,2,11.95,2019-09-15 16:03:00,417 Park St, San Francisco,CA,94016 +251642,AA Batteries (4-pack),1,3.84,2019-09-04 11:36:00,499 Elm St, Boston,MA,02215 +251643,Lightning Charging Cable,1,14.95,2019-09-10 22:13:00,736 6th St, Los Angeles,CA,90001 +251644,20in Monitor,1,109.99,2019-09-11 20:40:00,12 5th St, San Francisco,CA,94016 +251645,Bose SoundSport Headphones,1,99.99,2019-09-14 20:39:00,556 Hickory St, San Francisco,CA,94016 +251646,AAA Batteries (4-pack),1,2.99,2019-09-04 14:02:00,85 7th St, Boston,MA,02215 +251647,Lightning Charging Cable,1,14.95,2019-09-17 20:26:00,902 Pine St, New York City,NY,10001 +251648,Wired Headphones,2,11.99,2019-09-03 21:48:00,39 Jefferson St, Boston,MA,02215 +251649,AAA Batteries (4-pack),1,2.99,2019-09-21 08:54:00,774 Sunset St, Los Angeles,CA,90001 +251650,iPhone,1,700.0,2019-09-18 12:15:00,347 Hickory St, New York City,NY,10001 +251651,Wired Headphones,1,11.99,2019-09-01 13:25:00,74 12th St, Boston,MA,02215 +251652,AA Batteries (4-pack),1,3.84,2019-09-29 00:12:00,578 1st St, Dallas,TX,75001 +251653,USB-C Charging Cable,1,11.95,2019-09-24 12:39:00,993 Washington St, New York City,NY,10001 +251654,AA Batteries (4-pack),2,3.84,2019-09-11 12:28:00,941 9th St, San Francisco,CA,94016 +251655,20in Monitor,1,109.99,2019-09-25 08:37:00,728 Maple St, San Francisco,CA,94016 +251656,AA Batteries (4-pack),1,3.84,2019-09-06 12:33:00,703 Park St, Los Angeles,CA,90001 +251657,USB-C Charging Cable,1,11.95,2019-09-18 22:08:00,760 Lakeview St, San Francisco,CA,94016 +251658,Bose SoundSport Headphones,1,99.99,2019-09-21 07:08:00,825 North St, Los Angeles,CA,90001 +251659,USB-C Charging Cable,1,11.95,2019-09-24 12:42:00,450 Wilson St, Austin,TX,73301 +251660,USB-C Charging Cable,1,11.95,2019-09-27 20:11:00,98 Elm St, San Francisco,CA,94016 +251661,27in FHD Monitor,1,149.99,2019-09-30 06:48:00,521 Hickory St, Boston,MA,02215 +251662,AAA Batteries (4-pack),1,2.99,2019-09-01 20:02:00,578 Willow St, New York City,NY,10001 +251663,Google Phone,1,600.0,2019-09-12 18:30:00,837 Wilson St, Dallas,TX,75001 +251664,34in Ultrawide Monitor,1,379.99,2019-09-11 14:14:00,871 6th St, San Francisco,CA,94016 +251665,AA Batteries (4-pack),1,3.84,2019-09-16 18:01:00,930 Highland St, New York City,NY,10001 +251666,34in Ultrawide Monitor,1,379.99,2019-09-27 08:59:00,606 13th St, Los Angeles,CA,90001 +251667,Lightning Charging Cable,1,14.95,2019-09-25 11:50:00,104 South St, Los Angeles,CA,90001 +251668,34in Ultrawide Monitor,1,379.99,2019-09-27 21:29:00,836 River St, Boston,MA,02215 +251669,USB-C Charging Cable,1,11.95,2019-09-08 10:02:00,536 Jackson St, Los Angeles,CA,90001 +251670,AAA Batteries (4-pack),1,2.99,2019-09-01 20:12:00,930 Madison St, Austin,TX,73301 +251671,Bose SoundSport Headphones,1,99.99,2019-09-18 13:28:00,249 Pine St, San Francisco,CA,94016 +251672,Bose SoundSport Headphones,1,99.99,2019-09-05 23:16:00,795 Walnut St, Atlanta,GA,30301 +251673,AA Batteries (4-pack),1,3.84,2019-09-12 20:32:00,831 Madison St, Dallas,TX,75001 +251674,27in FHD Monitor,1,149.99,2019-09-08 12:49:00,562 11th St, Atlanta,GA,30301 +251675,Lightning Charging Cable,1,14.95,2019-09-26 16:35:00,867 Highland St, San Francisco,CA,94016 +251676,AAA Batteries (4-pack),3,2.99,2019-09-20 20:16:00,718 Park St, Portland,OR,97035 +251677,Wired Headphones,1,11.99,2019-09-22 13:21:00,524 Willow St, San Francisco,CA,94016 +251678,USB-C Charging Cable,1,11.95,2019-09-05 05:24:00,99 Adams St, Portland,OR,97035 +251679,AAA Batteries (4-pack),1,2.99,2019-09-27 09:02:00,699 Jackson St, Atlanta,GA,30301 +251680,iPhone,1,700.0,2019-09-08 09:45:00,449 Cherry St, Boston,MA,02215 +251681,USB-C Charging Cable,1,11.95,2019-09-16 05:14:00,551 Cherry St, San Francisco,CA,94016 +251682,Wired Headphones,2,11.99,2019-09-24 18:08:00,163 Cedar St, Boston,MA,02215 +251683,AAA Batteries (4-pack),2,2.99,2019-09-11 10:10:00,216 4th St, San Francisco,CA,94016 +251684,USB-C Charging Cable,1,11.95,2019-09-28 11:32:00,349 Willow St, San Francisco,CA,94016 +251685,iPhone,1,700.0,2019-09-18 18:37:00,888 South St, Seattle,WA,98101 +251686,AAA Batteries (4-pack),1,2.99,2019-09-23 19:50:00,717 Pine St, San Francisco,CA,94016 +251687,AAA Batteries (4-pack),1,2.99,2019-09-11 13:02:00,487 Church St, San Francisco,CA,94016 +251688,Wired Headphones,1,11.99,2019-09-07 22:47:00,659 10th St, Portland,OR,97035 +251689,Flatscreen TV,1,300.0,2019-09-09 20:06:00,195 Park St, Los Angeles,CA,90001 +251690,Google Phone,1,600.0,2019-09-17 10:48:00,941 Lakeview St, Los Angeles,CA,90001 +251690,Wired Headphones,1,11.99,2019-09-17 10:48:00,941 Lakeview St, Los Angeles,CA,90001 +251691,Lightning Charging Cable,1,14.95,2019-09-26 19:26:00,202 Wilson St, San Francisco,CA,94016 +251692,Flatscreen TV,1,300.0,2019-09-19 10:55:00,937 Madison St, Los Angeles,CA,90001 +251693,AA Batteries (4-pack),1,3.84,2019-09-05 18:05:00,940 Elm St, San Francisco,CA,94016 +251694,Wired Headphones,1,11.99,2019-09-09 02:54:00,312 7th St, San Francisco,CA,94016 +251695,Flatscreen TV,1,300.0,2019-09-24 14:28:00,2 Washington St, Boston,MA,02215 +251696,AA Batteries (4-pack),1,3.84,2019-09-19 15:58:00,586 Ridge St, Los Angeles,CA,90001 +251697,34in Ultrawide Monitor,1,379.99,2019-09-12 13:25:00,931 Madison St, Atlanta,GA,30301 +251698,Google Phone,1,600.0,2019-09-19 13:51:00,79 Highland St, New York City,NY,10001 +251699,Lightning Charging Cable,1,14.95,2019-09-13 21:17:00,933 Jackson St, San Francisco,CA,94016 +251700,Apple Airpods Headphones,1,150.0,2019-09-29 13:02:00,750 River St, Seattle,WA,98101 +251701,Bose SoundSport Headphones,1,99.99,2019-09-21 10:15:00,442 6th St, San Francisco,CA,94016 +251702,AAA Batteries (4-pack),2,2.99,2019-09-06 19:22:00,717 6th St, Boston,MA,02215 +251703,USB-C Charging Cable,1,11.95,2019-09-19 12:40:00,317 11th St, San Francisco,CA,94016 +251704,34in Ultrawide Monitor,1,379.99,2019-09-27 11:34:00,386 Wilson St, San Francisco,CA,94016 +251705,Flatscreen TV,1,300.0,2019-09-05 10:42:00,132 2nd St, Seattle,WA,98101 +251706,34in Ultrawide Monitor,1,379.99,2019-09-02 20:10:00,883 Lincoln St, Los Angeles,CA,90001 +251707,Google Phone,1,600.0,2019-09-03 11:37:00,721 Park St, New York City,NY,10001 +251708,Google Phone,1,600.0,2019-09-25 17:35:00,270 13th St, New York City,NY,10001 +251709,Lightning Charging Cable,1,14.95,2019-09-04 21:44:00,771 Madison St, Seattle,WA,98101 +251710,AA Batteries (4-pack),1,3.84,2019-09-29 19:57:00,418 Jefferson St, Boston,MA,02215 +251711,Wired Headphones,1,11.99,2019-09-13 17:33:00,802 Church St, Dallas,TX,75001 +251712,Flatscreen TV,1,300.0,2019-09-13 20:03:00,909 Wilson St, Seattle,WA,98101 +251713,27in 4K Gaming Monitor,1,389.99,2019-09-04 01:03:00,556 Elm St, Austin,TX,73301 +251714,AA Batteries (4-pack),1,3.84,2019-09-12 18:54:00,317 5th St, San Francisco,CA,94016 +251715,AAA Batteries (4-pack),1,2.99,2019-09-02 11:42:00,938 Maple St, Boston,MA,02215 +251716,Lightning Charging Cable,1,14.95,2019-09-18 12:31:00,579 Johnson St, San Francisco,CA,94016 +251717,USB-C Charging Cable,1,11.95,2019-09-19 13:17:00,372 Willow St, San Francisco,CA,94016 +251718,Flatscreen TV,1,300.0,2019-09-02 00:51:00,659 Wilson St, Boston,MA,02215 +251719,Lightning Charging Cable,1,14.95,2019-09-11 11:30:00,95 Highland St, New York City,NY,10001 +251720,Wired Headphones,1,11.99,2019-09-21 11:21:00,764 8th St, Boston,MA,02215 +251721,USB-C Charging Cable,1,11.95,2019-09-08 22:50:00,537 Meadow St, San Francisco,CA,94016 +251722,Lightning Charging Cable,1,14.95,2019-09-18 11:01:00,311 7th St, New York City,NY,10001 +251723,Lightning Charging Cable,1,14.95,2019-09-16 22:56:00,896 Maple St, Boston,MA,02215 +251724,Bose SoundSport Headphones,1,99.99,2019-09-11 18:15:00,339 13th St, Austin,TX,73301 +251725,iPhone,1,700.0,2019-09-19 12:01:00,938 Pine St, Los Angeles,CA,90001 +251726,Macbook Pro Laptop,1,1700.0,2019-09-14 14:07:00,408 4th St, Boston,MA,02215 +251727,AA Batteries (4-pack),1,3.84,2019-09-27 13:51:00,650 Willow St, San Francisco,CA,94016 +251728,USB-C Charging Cable,2,11.95,2019-09-15 12:36:00,776 North St, Portland,OR,97035 +251729,AA Batteries (4-pack),1,3.84,2019-09-11 00:18:00,805 1st St, San Francisco,CA,94016 +251730,Bose SoundSport Headphones,1,99.99,2019-09-19 10:54:00,903 Dogwood St, Austin,TX,73301 +251731,Apple Airpods Headphones,1,150.0,2019-09-13 23:20:00,666 Lake St, Portland,OR,97035 +251732,Bose SoundSport Headphones,1,99.99,2019-09-22 14:48:00,996 South St, Boston,MA,02215 +251733,34in Ultrawide Monitor,1,379.99,2019-09-12 18:02:00,416 10th St, Seattle,WA,98101 +251734,AA Batteries (4-pack),2,3.84,2019-09-04 15:01:00,678 Washington St, Dallas,TX,75001 +251735,AAA Batteries (4-pack),2,2.99,2019-09-03 00:37:00,508 Meadow St, San Francisco,CA,94016 +251736,27in FHD Monitor,1,149.99,2019-09-24 07:23:00,296 12th St, Seattle,WA,98101 +251737,Macbook Pro Laptop,1,1700.0,2019-09-01 16:29:00,682 5th St, New York City,NY,10001 +251738,AAA Batteries (4-pack),1,2.99,2019-09-07 20:35:00,461 Lincoln St, Atlanta,GA,30301 +251739,20in Monitor,1,109.99,2019-09-13 14:19:00,208 Elm St, Boston,MA,02215 +251740,USB-C Charging Cable,1,11.95,2019-09-19 20:08:00,701 Elm St, Portland,OR,97035 +251741,AA Batteries (4-pack),1,3.84,2019-09-20 18:50:00,106 Elm St, Los Angeles,CA,90001 +251742,AAA Batteries (4-pack),1,2.99,2019-09-19 12:45:00,166 Madison St, Seattle,WA,98101 +251743,Bose SoundSport Headphones,1,99.99,2019-09-23 08:35:00,476 13th St, Seattle,WA,98101 +251744,USB-C Charging Cable,1,11.95,2019-09-12 00:17:00,166 Washington St, Seattle,WA,98101 +251745,27in 4K Gaming Monitor,1,389.99,2019-09-12 11:58:00,571 10th St, Los Angeles,CA,90001 +251746,34in Ultrawide Monitor,1,379.99,2019-09-11 17:18:00,516 River St, San Francisco,CA,94016 +251747,ThinkPad Laptop,1,999.99,2019-09-07 17:04:00,47 River St, San Francisco,CA,94016 +251748,Wired Headphones,1,11.99,2019-09-27 11:43:00,5 Johnson St, Austin,TX,73301 +251749,34in Ultrawide Monitor,1,379.99,2019-09-15 13:25:00,512 Jackson St, Dallas,TX,75001 +251750,iPhone,1,700.0,2019-09-28 15:49:00,235 Elm St, New York City,NY,10001 +251750,Apple Airpods Headphones,1,150.0,2019-09-28 15:49:00,235 Elm St, New York City,NY,10001 +251751,Apple Airpods Headphones,1,150.0,2019-09-06 15:46:00,628 9th St, Portland,OR,97035 +251752,Bose SoundSport Headphones,1,99.99,2019-09-09 08:02:00,251 West St, Dallas,TX,75001 +251753,Apple Airpods Headphones,1,150.0,2019-09-15 16:06:00,761 7th St, New York City,NY,10001 +251754,Macbook Pro Laptop,1,1700.0,2019-09-12 00:07:00,705 Church St, Los Angeles,CA,90001 +251755,USB-C Charging Cable,1,11.95,2019-09-22 01:44:00,857 Johnson St, Dallas,TX,75001 +251756,Apple Airpods Headphones,1,150.0,2019-09-15 21:20:00,767 Jefferson St, Austin,TX,73301 +251757,Apple Airpods Headphones,1,150.0,2019-09-20 18:59:00,295 2nd St, Los Angeles,CA,90001 +251758,Vareebadd Phone,1,400.0,2019-09-15 21:52:00,88 North St, Boston,MA,02215 +251759,USB-C Charging Cable,1,11.95,2019-09-11 20:39:00,749 11th St, New York City,NY,10001 +251760,AA Batteries (4-pack),1,3.84,2019-09-29 20:06:00,241 Wilson St, Boston,MA,02215 +251761,27in 4K Gaming Monitor,1,389.99,2019-09-28 14:55:00,849 River St, Austin,TX,73301 +251762,Lightning Charging Cable,1,14.95,2019-09-19 18:26:00,126 Walnut St, Dallas,TX,75001 +251763,20in Monitor,1,109.99,2019-09-14 22:38:00,33 Elm St, San Francisco,CA,94016 +251764,USB-C Charging Cable,1,11.95,2019-09-30 13:03:00,172 12th St, Austin,TX,73301 +251765,Bose SoundSport Headphones,1,99.99,2019-09-12 22:08:00,75 Walnut St, San Francisco,CA,94016 +251766,Apple Airpods Headphones,1,150.0,2019-09-02 21:37:00,333 7th St, Atlanta,GA,30301 +251767,AAA Batteries (4-pack),1,2.99,2019-09-16 17:34:00,426 Wilson St, Atlanta,GA,30301 +251768,AA Batteries (4-pack),2,3.84,2019-09-30 19:04:00,876 2nd St, Atlanta,GA,30301 +251769,AA Batteries (4-pack),1,3.84,2019-09-01 11:41:00,462 Chestnut St, San Francisco,CA,94016 +251770,ThinkPad Laptop,1,999.99,2019-09-08 11:26:00,115 Lakeview St, Dallas,TX,75001 +251771,20in Monitor,1,109.99,2019-09-12 09:51:00,756 11th St, Portland,OR,97035 +251772,AA Batteries (4-pack),1,3.84,2019-09-17 01:13:00,481 Jackson St, Dallas,TX,75001 +251773,20in Monitor,1,109.99,2019-09-05 17:39:00,810 Forest St, Portland,ME,04101 +251774,Apple Airpods Headphones,1,150.0,2019-09-30 13:01:00,607 2nd St, Dallas,TX,75001 +251775,USB-C Charging Cable,1,11.95,2019-09-21 21:23:00,669 10th St, New York City,NY,10001 +251776,iPhone,1,700.0,2019-09-06 20:00:00,48 6th St, Seattle,WA,98101 +251777,Apple Airpods Headphones,1,150.0,2019-09-17 10:22:00,979 Elm St, San Francisco,CA,94016 +251778,34in Ultrawide Monitor,1,379.99,2019-09-15 12:17:00,2 South St, Atlanta,GA,30301 +251779,AAA Batteries (4-pack),1,2.99,2019-09-22 14:14:00,198 11th St, Atlanta,GA,30301 +251780,Wired Headphones,1,11.99,2019-09-03 20:06:00,389 Johnson St, San Francisco,CA,94016 +251781,AAA Batteries (4-pack),1,2.99,2019-09-06 07:21:00,786 Cherry St, Dallas,TX,75001 +251782,Lightning Charging Cable,2,14.95,2019-09-22 17:52:00,309 2nd St, San Francisco,CA,94016 +251783,AAA Batteries (4-pack),3,2.99,2019-09-27 17:16:00,545 5th St, Austin,TX,73301 +251784,AAA Batteries (4-pack),1,2.99,2019-09-18 10:09:00,153 Spruce St, San Francisco,CA,94016 +251785,USB-C Charging Cable,1,11.95,2019-09-19 22:39:00,670 Lake St, Los Angeles,CA,90001 +251786,Bose SoundSport Headphones,1,99.99,2019-09-28 17:51:00,676 6th St, Boston,MA,02215 +251787,Google Phone,1,600.0,2019-09-15 21:22:00,189 1st St, Dallas,TX,75001 +251788,AA Batteries (4-pack),1,3.84,2019-09-30 11:37:00,645 2nd St, Austin,TX,73301 +251789,Bose SoundSport Headphones,1,99.99,2019-09-04 21:27:00,207 Forest St, San Francisco,CA,94016 +251790,ThinkPad Laptop,1,999.99,2019-09-28 17:24:00,630 Madison St, San Francisco,CA,94016 +251791,27in FHD Monitor,1,149.99,2019-09-24 19:08:00,526 Hill St, San Francisco,CA,94016 +251792,Wired Headphones,1,11.99,2019-09-30 14:02:00,688 Hill St, San Francisco,CA,94016 +251793,AA Batteries (4-pack),1,3.84,2019-09-19 20:42:00,507 Lakeview St, Seattle,WA,98101 +251794,AAA Batteries (4-pack),2,2.99,2019-09-05 18:23:00,631 Main St, Boston,MA,02215 +251795,Lightning Charging Cable,1,14.95,2019-09-24 21:53:00,709 Jefferson St, New York City,NY,10001 +251796,AA Batteries (4-pack),2,3.84,2019-09-18 16:16:00,158 Walnut St, Los Angeles,CA,90001 +251797,AAA Batteries (4-pack),1,2.99,2019-09-28 12:12:00,966 1st St, San Francisco,CA,94016 +251798,USB-C Charging Cable,1,11.95,2019-09-26 21:03:00,330 11th St, San Francisco,CA,94016 +251799,USB-C Charging Cable,1,11.95,2019-09-10 21:55:00,879 14th St, Austin,TX,73301 +251800,AAA Batteries (4-pack),1,2.99,2019-09-13 19:05:00,798 Ridge St, Dallas,TX,75001 +251801,AAA Batteries (4-pack),1,2.99,2019-09-09 08:41:00,813 14th St, Boston,MA,02215 +251802,AA Batteries (4-pack),1,3.84,2019-09-15 15:00:00,580 Adams St, Portland,OR,97035 +251803,AAA Batteries (4-pack),1,2.99,2019-09-18 22:13:00,13 Lake St, Los Angeles,CA,90001 +251804,AAA Batteries (4-pack),2,2.99,2019-09-18 23:04:00,266 Park St, Seattle,WA,98101 +251805,AAA Batteries (4-pack),1,2.99,2019-09-01 13:41:00,461 Lakeview St, Seattle,WA,98101 +251806,USB-C Charging Cable,1,11.95,2019-09-26 15:12:00,380 Adams St, New York City,NY,10001 +251807,AAA Batteries (4-pack),2,2.99,2019-09-11 13:34:00,390 7th St, Dallas,TX,75001 +251808,USB-C Charging Cable,1,11.95,2019-09-23 13:27:00,279 Willow St, Los Angeles,CA,90001 +251809,Bose SoundSport Headphones,1,99.99,2019-09-28 18:18:00,380 12th St, Portland,OR,97035 +251810,Wired Headphones,1,11.99,2019-09-11 12:58:00,252 North St, San Francisco,CA,94016 +251811,Apple Airpods Headphones,1,150.0,2019-09-11 11:48:00,766 Highland St, San Francisco,CA,94016 +251812,AA Batteries (4-pack),2,3.84,2019-09-16 17:03:00,148 Sunset St, Boston,MA,02215 +251813,20in Monitor,1,109.99,2019-09-09 16:55:00,203 9th St, Los Angeles,CA,90001 +251814,20in Monitor,1,109.99,2019-09-24 20:51:00,2 11th St, Atlanta,GA,30301 +251815,27in FHD Monitor,1,149.99,2019-09-22 15:05:00,608 Church St, Seattle,WA,98101 +251816,Lightning Charging Cable,1,14.95,2019-09-30 13:49:00,902 7th St, Austin,TX,73301 +251817,Flatscreen TV,1,300.0,2019-09-01 16:52:00,636 Park St, Boston,MA,02215 +251818,27in FHD Monitor,1,149.99,2019-09-30 07:39:00,412 2nd St, Portland,OR,97035 +251818,Flatscreen TV,1,300.0,2019-09-30 07:39:00,412 2nd St, Portland,OR,97035 +251819,27in FHD Monitor,1,149.99,2019-09-22 18:11:00,981 5th St, Portland,ME,04101 +251820,AA Batteries (4-pack),1,3.84,2019-09-22 09:00:00,320 7th St, New York City,NY,10001 +251821,Lightning Charging Cable,1,14.95,2019-09-27 11:00:00,662 1st St, San Francisco,CA,94016 +251822,Lightning Charging Cable,1,14.95,2019-09-23 10:13:00,441 Lake St, San Francisco,CA,94016 +251823,AAA Batteries (4-pack),2,2.99,2019-09-23 11:02:00,14 2nd St, San Francisco,CA,94016 +251824,Lightning Charging Cable,1,14.95,2019-09-30 03:07:00,217 2nd St, San Francisco,CA,94016 +251825,27in FHD Monitor,1,149.99,2019-09-02 22:43:00,595 Chestnut St, Seattle,WA,98101 +251826,Lightning Charging Cable,1,14.95,2019-09-05 18:01:00,463 13th St, New York City,NY,10001 +251827,AA Batteries (4-pack),2,3.84,2019-09-06 21:57:00,29 2nd St, San Francisco,CA,94016 +251828,USB-C Charging Cable,1,11.95,2019-09-09 18:58:00,346 Chestnut St, Portland,ME,04101 +251829,AAA Batteries (4-pack),1,2.99,2019-09-07 15:06:00,854 Center St, Los Angeles,CA,90001 +251830,Apple Airpods Headphones,1,150.0,2019-09-17 13:05:00,832 Chestnut St, New York City,NY,10001 +251831,AA Batteries (4-pack),1,3.84,2019-09-16 16:16:00,842 Pine St, Seattle,WA,98101 +251832,AA Batteries (4-pack),1,3.84,2019-09-07 20:47:00,359 10th St, Portland,OR,97035 +251833,Bose SoundSport Headphones,1,99.99,2019-09-15 10:52:00,489 Church St, Portland,OR,97035 +251834,Google Phone,1,600.0,2019-09-11 14:08:00,377 4th St, Atlanta,GA,30301 +251835,AA Batteries (4-pack),1,3.84,2019-09-14 08:32:00,48 Center St, Atlanta,GA,30301 +251836,Wired Headphones,1,11.99,2019-09-03 18:24:00,982 7th St, Atlanta,GA,30301 +251837,ThinkPad Laptop,1,999.99,2019-09-08 19:48:00,80 Lakeview St, Los Angeles,CA,90001 +251838,Wired Headphones,2,11.99,2019-09-27 12:33:00,826 12th St, Boston,MA,02215 +251839,AAA Batteries (4-pack),3,2.99,2019-09-29 18:44:00,119 4th St, Portland,OR,97035 +251840,AAA Batteries (4-pack),1,2.99,2019-09-27 18:49:00,41 Spruce St, San Francisco,CA,94016 +251841,20in Monitor,1,109.99,2019-09-01 12:51:00,584 Forest St, Los Angeles,CA,90001 +251842,Apple Airpods Headphones,1,150.0,2019-09-20 09:10:00,928 Walnut St, Dallas,TX,75001 +251843,Lightning Charging Cable,1,14.95,2019-09-06 10:00:00,167 Washington St, Boston,MA,02215 +251844,Lightning Charging Cable,1,14.95,2019-09-13 10:39:00,213 5th St, San Francisco,CA,94016 +251845,AA Batteries (4-pack),3,3.84,2019-09-27 08:16:00,115 West St, Portland,OR,97035 +251846,Apple Airpods Headphones,1,150.0,2019-09-07 12:07:00,297 14th St, Portland,OR,97035 +251847,34in Ultrawide Monitor,1,379.99,2019-09-23 23:05:00,199 Hill St, Boston,MA,02215 +251848,Lightning Charging Cable,1,14.95,2019-09-09 17:31:00,883 River St, San Francisco,CA,94016 +251849,AAA Batteries (4-pack),3,2.99,2019-09-19 10:08:00,107 4th St, Atlanta,GA,30301 +251850,AAA Batteries (4-pack),3,2.99,2019-09-05 13:12:00,240 Hill St, Dallas,TX,75001 +251851,Google Phone,1,600.0,2019-09-28 09:35:00,930 Dogwood St, Seattle,WA,98101 +251852,Lightning Charging Cable,1,14.95,2019-09-23 08:48:00,157 Ridge St, Atlanta,GA,30301 +251853,Lightning Charging Cable,1,14.95,2019-09-29 06:24:00,78 Wilson St, New York City,NY,10001 +251854,Lightning Charging Cable,1,14.95,2019-09-06 17:35:00,635 Jackson St, Los Angeles,CA,90001 +251855,Lightning Charging Cable,1,14.95,2019-09-01 11:10:00,559 Willow St, Seattle,WA,98101 +251856,Apple Airpods Headphones,1,150.0,2019-09-13 23:05:00,138 Park St, Dallas,TX,75001 +251857,Bose SoundSport Headphones,1,99.99,2019-09-14 08:12:00,491 Madison St, Los Angeles,CA,90001 +251858,Google Phone,1,600.0,2019-09-22 17:58:00,225 Spruce St, Seattle,WA,98101 +251859,Lightning Charging Cable,2,14.95,2019-09-28 13:06:00,62 Lake St, Seattle,WA,98101 +251860,AA Batteries (4-pack),1,3.84,2019-09-21 13:50:00,107 Elm St, San Francisco,CA,94016 +251861,AAA Batteries (4-pack),1,2.99,2019-09-26 20:11:00,382 Elm St, Dallas,TX,75001 +251862,USB-C Charging Cable,1,11.95,2019-09-07 17:38:00,451 South St, Boston,MA,02215 +251863,AAA Batteries (4-pack),1,2.99,2019-09-14 17:45:00,945 9th St, Los Angeles,CA,90001 +251864,Apple Airpods Headphones,1,150.0,2019-09-27 13:43:00,11 Forest St, Seattle,WA,98101 +251865,AAA Batteries (4-pack),1,2.99,2019-09-11 14:19:00,641 Main St, San Francisco,CA,94016 +251866,iPhone,1,700.0,2019-09-29 01:32:00,694 Main St, Dallas,TX,75001 +251867,Bose SoundSport Headphones,1,99.99,2019-09-21 09:55:00,105 5th St, Atlanta,GA,30301 +251868,AAA Batteries (4-pack),1,2.99,2019-09-05 20:15:00,331 12th St, New York City,NY,10001 +251869,USB-C Charging Cable,1,11.95,2019-09-15 11:02:00,906 Dogwood St, Dallas,TX,75001 +251870,Apple Airpods Headphones,1,150.0,2019-09-03 16:19:00,649 Johnson St, San Francisco,CA,94016 +251871,Wired Headphones,1,11.99,2019-09-18 17:02:00,717 Lakeview St, Los Angeles,CA,90001 +251872,Lightning Charging Cable,2,14.95,2019-09-09 23:09:00,457 Willow St, New York City,NY,10001 +251873,LG Dryer,1,600.0,2019-09-28 18:58:00,798 12th St, Portland,OR,97035 +251874,USB-C Charging Cable,1,11.95,2019-09-06 19:41:00,375 Park St, New York City,NY,10001 +251875,20in Monitor,1,109.99,2019-09-18 14:41:00,504 Wilson St, Dallas,TX,75001 +251876,AA Batteries (4-pack),1,3.84,2019-09-11 21:40:00,4 North St, Los Angeles,CA,90001 +251877,Wired Headphones,1,11.99,2019-09-10 12:56:00,638 Cherry St, Los Angeles,CA,90001 +251878,Bose SoundSport Headphones,1,99.99,2019-09-10 10:12:00,649 North St, Boston,MA,02215 +251879,Lightning Charging Cable,1,14.95,2019-09-19 19:12:00,88 Main St, San Francisco,CA,94016 +251880,34in Ultrawide Monitor,1,379.99,2019-09-17 14:37:00,351 Chestnut St, Dallas,TX,75001 +251881,USB-C Charging Cable,1,11.95,2019-09-21 11:45:00,264 Lakeview St, San Francisco,CA,94016 +251882,Lightning Charging Cable,1,14.95,2019-09-10 10:34:00,218 South St, Seattle,WA,98101 +251883,AAA Batteries (4-pack),1,2.99,2019-09-08 19:38:00,527 Maple St, San Francisco,CA,94016 +251884,Apple Airpods Headphones,1,150.0,2019-09-27 11:03:00,1 Maple St, San Francisco,CA,94016 +251885,Flatscreen TV,1,300.0,2019-09-02 21:12:00,947 Chestnut St, Portland,OR,97035 +251886,27in FHD Monitor,1,149.99,2019-09-13 08:14:00,219 Ridge St, Boston,MA,02215 +251887,AAA Batteries (4-pack),1,2.99,2019-09-11 17:33:00,462 Hickory St, Dallas,TX,75001 +251888,Lightning Charging Cable,1,14.95,2019-09-24 18:30:00,397 5th St, Portland,ME,04101 +251889,USB-C Charging Cable,2,11.95,2019-09-01 08:05:00,935 Main St, San Francisco,CA,94016 +251890,AA Batteries (4-pack),1,3.84,2019-09-14 15:29:00,92 Wilson St, San Francisco,CA,94016 +251891,Bose SoundSport Headphones,1,99.99,2019-09-24 20:55:00,777 West St, Dallas,TX,75001 +251892,USB-C Charging Cable,1,11.95,2019-09-16 21:10:00,112 Jefferson St, Seattle,WA,98101 +251893,AA Batteries (4-pack),1,3.84,2019-09-24 16:05:00,686 8th St, San Francisco,CA,94016 +251894,Lightning Charging Cable,1,14.95,2019-09-01 11:04:00,549 9th St, San Francisco,CA,94016 +251895,AAA Batteries (4-pack),1,2.99,2019-09-29 15:02:00,589 Maple St, New York City,NY,10001 +251896,AA Batteries (4-pack),5,3.84,2019-09-24 17:02:00,473 Jackson St, New York City,NY,10001 +251897,AA Batteries (4-pack),1,3.84,2019-09-17 12:31:00,69 Church St, New York City,NY,10001 +251898,Wired Headphones,1,11.99,2019-09-02 12:08:00,448 Elm St, San Francisco,CA,94016 +251899,27in FHD Monitor,1,149.99,2019-09-01 21:52:00,520 Highland St, Los Angeles,CA,90001 +251900,Wired Headphones,2,11.99,2019-09-10 14:31:00,211 5th St, Los Angeles,CA,90001 +251901,iPhone,1,700.0,2019-09-26 11:53:00,969 Spruce St, Los Angeles,CA,90001 +251902,AAA Batteries (4-pack),1,2.99,2019-09-22 08:07:00,917 Elm St, San Francisco,CA,94016 +251903,AAA Batteries (4-pack),2,2.99,2019-09-10 13:15:00,97 Highland St, Seattle,WA,98101 +251904,AA Batteries (4-pack),1,3.84,2019-09-20 19:07:00,270 River St, San Francisco,CA,94016 +251905,Lightning Charging Cable,1,14.95,2019-09-06 09:53:00,774 River St, Dallas,TX,75001 +251906,Apple Airpods Headphones,1,150.0,2019-09-13 20:31:00,431 7th St, Dallas,TX,75001 +251907,Lightning Charging Cable,1,14.95,2019-09-10 12:02:00,374 6th St, San Francisco,CA,94016 +251908,27in FHD Monitor,1,149.99,2019-09-07 23:06:00,549 Spruce St, Seattle,WA,98101 +251909,Wired Headphones,1,11.99,2019-09-22 19:15:00,195 Forest St, Dallas,TX,75001 +251910,AA Batteries (4-pack),1,3.84,2019-09-17 23:07:00,445 8th St, New York City,NY,10001 +251911,Wired Headphones,1,11.99,2019-09-24 18:44:00,324 Spruce St, Los Angeles,CA,90001 +251912,USB-C Charging Cable,1,11.95,2019-09-09 22:51:00,4 South St, Los Angeles,CA,90001 +251913,34in Ultrawide Monitor,1,379.99,2019-09-19 14:46:00,513 North St, Atlanta,GA,30301 +251914,Wired Headphones,1,11.99,2019-09-22 14:05:00,795 Lincoln St, Portland,OR,97035 +251915,Lightning Charging Cable,1,14.95,2019-09-01 21:20:00,666 Adams St, San Francisco,CA,94016 +251916,Wired Headphones,1,11.99,2019-09-15 13:29:00,457 10th St, Seattle,WA,98101 +251917,AA Batteries (4-pack),1,3.84,2019-09-22 23:26:00,87 1st St, Atlanta,GA,30301 +251918,27in FHD Monitor,1,149.99,2019-09-13 11:39:00,838 River St, Dallas,TX,75001 +251919,Bose SoundSport Headphones,1,99.99,2019-09-26 10:13:00,291 Dogwood St, San Francisco,CA,94016 +251920,Google Phone,1,600.0,2019-09-08 19:25:00,682 Lincoln St, Seattle,WA,98101 +251920,USB-C Charging Cable,1,11.95,2019-09-08 19:25:00,682 Lincoln St, Seattle,WA,98101 +251921,USB-C Charging Cable,1,11.95,2019-09-09 08:39:00,10 Cedar St, San Francisco,CA,94016 +251921,AAA Batteries (4-pack),1,2.99,2019-09-09 08:39:00,10 Cedar St, San Francisco,CA,94016 +251922,USB-C Charging Cable,1,11.95,2019-09-29 12:57:00,809 Walnut St, New York City,NY,10001 +251923,Google Phone,1,600.0,2019-09-02 21:06:00,994 9th St, San Francisco,CA,94016 +251924,Wired Headphones,1,11.99,2019-09-22 09:13:00,141 Center St, Los Angeles,CA,90001 +251925,34in Ultrawide Monitor,1,379.99,2019-09-17 08:17:00,241 Sunset St, New York City,NY,10001 +251926,Flatscreen TV,1,300.0,2019-09-25 10:29:00,305 12th St, New York City,NY,10001 +251927,USB-C Charging Cable,1,11.95,2019-09-27 13:28:00,743 6th St, New York City,NY,10001 +251928,34in Ultrawide Monitor,1,379.99,2019-09-10 21:01:00,941 10th St, San Francisco,CA,94016 +251929,Google Phone,1,600.0,2019-09-24 14:28:00,994 Elm St, San Francisco,CA,94016 +251930,AAA Batteries (4-pack),1,2.99,2019-09-14 14:49:00,949 Highland St, Boston,MA,02215 +251931,Apple Airpods Headphones,1,150.0,2019-09-18 11:17:00,30 Hickory St, Los Angeles,CA,90001 +251932,Wired Headphones,1,11.99,2019-09-29 00:50:00,915 Johnson St, Atlanta,GA,30301 +251933,AA Batteries (4-pack),1,3.84,2019-09-29 10:57:00,973 Maple St, San Francisco,CA,94016 +251934,ThinkPad Laptop,1,999.99,2019-09-23 11:35:00,358 Park St, Dallas,TX,75001 +251935,AA Batteries (4-pack),1,3.84,2019-09-15 18:21:00,119 Pine St, Portland,OR,97035 +251936,AA Batteries (4-pack),2,3.84,2019-09-02 22:44:00,483 Adams St, San Francisco,CA,94016 +251937,AA Batteries (4-pack),3,3.84,2019-09-08 16:48:00,631 Jackson St, Atlanta,GA,30301 +251938,iPhone,1,700.0,2019-09-17 22:20:00,43 7th St, San Francisco,CA,94016 +251939,Flatscreen TV,1,300.0,2019-09-19 08:33:00,735 Maple St, San Francisco,CA,94016 +251940,AA Batteries (4-pack),1,3.84,2019-09-09 20:55:00,573 8th St, Boston,MA,02215 +251941,Wired Headphones,1,11.99,2019-09-08 07:35:00,606 Jackson St, New York City,NY,10001 +251942,27in 4K Gaming Monitor,1,389.99,2019-09-03 19:31:00,589 Johnson St, Los Angeles,CA,90001 +251943,USB-C Charging Cable,1,11.95,2019-09-22 13:32:00,140 North St, Boston,MA,02215 +251944,34in Ultrawide Monitor,1,379.99,2019-09-02 10:00:00,174 6th St, Atlanta,GA,30301 +251945,AAA Batteries (4-pack),1,2.99,2019-09-18 17:37:00,35 7th St, Dallas,TX,75001 +251946,34in Ultrawide Monitor,1,379.99,2019-09-04 21:37:00,79 Center St, Austin,TX,73301 +251947,AAA Batteries (4-pack),1,2.99,2019-09-17 22:17:00,493 Dogwood St, Los Angeles,CA,90001 +251948,USB-C Charging Cable,1,11.95,2019-09-04 17:51:00,155 West St, Atlanta,GA,30301 +251949,iPhone,1,700.0,2019-09-30 14:30:00,738 11th St, San Francisco,CA,94016 +251950,USB-C Charging Cable,1,11.95,2019-09-11 21:18:00,1 Maple St, Los Angeles,CA,90001 +251951,AA Batteries (4-pack),1,3.84,2019-09-23 18:04:00,730 Madison St, New York City,NY,10001 +251952,Wired Headphones,1,11.99,2019-09-18 09:26:00,821 Jackson St, San Francisco,CA,94016 +251953,27in FHD Monitor,1,149.99,2019-09-06 19:54:00,797 South St, New York City,NY,10001 +251954,27in FHD Monitor,1,149.99,2019-09-04 17:59:00,30 Jefferson St, Dallas,TX,75001 +251955,Lightning Charging Cable,1,14.95,2019-09-09 09:24:00,368 Jefferson St, Los Angeles,CA,90001 +251956,27in 4K Gaming Monitor,1,389.99,2019-09-25 13:00:00,745 South St, Dallas,TX,75001 +251957,Google Phone,1,600.0,2019-09-07 10:42:00,799 7th St, Seattle,WA,98101 +251957,USB-C Charging Cable,1,11.95,2019-09-07 10:42:00,799 7th St, Seattle,WA,98101 +251958,Bose SoundSport Headphones,1,99.99,2019-09-17 19:01:00,868 10th St, Atlanta,GA,30301 +251959,Wired Headphones,1,11.99,2019-09-26 09:26:00,200 Hickory St, Boston,MA,02215 +251960,34in Ultrawide Monitor,1,379.99,2019-09-24 20:34:00,212 Willow St, Los Angeles,CA,90001 +251961,Bose SoundSport Headphones,1,99.99,2019-09-07 02:33:00,134 Hill St, Los Angeles,CA,90001 +251962,AA Batteries (4-pack),1,3.84,2019-09-22 12:24:00,438 Church St, Austin,TX,73301 +251963,USB-C Charging Cable,1,11.95,2019-09-17 14:37:00,700 Wilson St, Dallas,TX,75001 +251964,Wired Headphones,1,11.99,2019-09-23 14:43:00,164 8th St, San Francisco,CA,94016 +251965,Lightning Charging Cable,1,14.95,2019-09-07 19:31:00,761 River St, New York City,NY,10001 +251966,Bose SoundSport Headphones,1,99.99,2019-09-02 16:47:00,667 Meadow St, Seattle,WA,98101 +251967,ThinkPad Laptop,1,999.99,2019-09-10 18:51:00,589 Willow St, Boston,MA,02215 +251968,Bose SoundSport Headphones,1,99.99,2019-09-29 17:00:00,588 14th St, Dallas,TX,75001 +251969,Lightning Charging Cable,1,14.95,2019-09-16 17:16:00,371 Washington St, Boston,MA,02215 +251970,Macbook Pro Laptop,1,1700.0,2019-09-13 22:36:00,354 Main St, Seattle,WA,98101 +251971,USB-C Charging Cable,2,11.95,2019-09-04 09:58:00,162 4th St, Los Angeles,CA,90001 +251972,Apple Airpods Headphones,1,150.0,2019-09-16 19:06:00,890 Maple St, San Francisco,CA,94016 +251973,USB-C Charging Cable,1,11.95,2019-09-22 22:04:00,171 Walnut St, Dallas,TX,75001 +251974,AAA Batteries (4-pack),2,2.99,2019-09-30 18:52:00,642 Chestnut St, Boston,MA,02215 +251975,AA Batteries (4-pack),2,3.84,2019-09-19 14:07:00,114 Jackson St, San Francisco,CA,94016 +251976,AAA Batteries (4-pack),1,2.99,2019-09-16 17:33:00,529 Jefferson St, Boston,MA,02215 +251977,Apple Airpods Headphones,1,150.0,2019-09-04 11:47:00,447 13th St, San Francisco,CA,94016 +251978,AAA Batteries (4-pack),1,2.99,2019-09-08 14:42:00,806 Willow St, New York City,NY,10001 +251979,AAA Batteries (4-pack),1,2.99,2019-09-27 19:36:00,655 Meadow St, Atlanta,GA,30301 +251980,AAA Batteries (4-pack),2,2.99,2019-09-02 12:04:00,368 Lakeview St, Portland,OR,97035 +251981,USB-C Charging Cable,1,11.95,2019-09-01 12:41:00,778 10th St, Portland,OR,97035 +251982,USB-C Charging Cable,1,11.95,2019-09-04 21:02:00,881 11th St, San Francisco,CA,94016 +251983,Bose SoundSport Headphones,1,99.99,2019-09-01 11:42:00,78 5th St, Dallas,TX,75001 +251984,Flatscreen TV,1,300.0,2019-09-02 12:07:00,239 Ridge St, San Francisco,CA,94016 +251985,Bose SoundSport Headphones,1,99.99,2019-09-04 11:48:00,68 Lakeview St, Boston,MA,02215 +251986,USB-C Charging Cable,1,11.95,2019-09-07 22:33:00,672 Hickory St, San Francisco,CA,94016 +251987,AAA Batteries (4-pack),2,2.99,2019-09-30 09:05:00,397 Lincoln St, Boston,MA,02215 +251988,Flatscreen TV,1,300.0,2019-09-21 08:23:00,802 14th St, San Francisco,CA,94016 +251989,Wired Headphones,1,11.99,2019-09-04 16:22:00,410 Elm St, Los Angeles,CA,90001 +251990,Wired Headphones,1,11.99,2019-09-28 20:28:00,202 14th St, Los Angeles,CA,90001 +251991,Bose SoundSport Headphones,1,99.99,2019-09-07 21:27:00,524 Willow St, Los Angeles,CA,90001 +251992,Bose SoundSport Headphones,1,99.99,2019-09-30 22:30:00,337 Spruce St, Dallas,TX,75001 +251993,USB-C Charging Cable,2,11.95,2019-09-05 06:59:00,568 Hill St, San Francisco,CA,94016 +251994,AAA Batteries (4-pack),1,2.99,2019-09-09 20:17:00,423 Church St, Boston,MA,02215 +251995,Apple Airpods Headphones,1,150.0,2019-09-28 11:25:00,350 Jefferson St, New York City,NY,10001 +251996,34in Ultrawide Monitor,1,379.99,2019-09-08 19:41:00,401 Sunset St, Atlanta,GA,30301 +251997,USB-C Charging Cable,1,11.95,2019-09-22 19:12:00,633 Hill St, Seattle,WA,98101 +251998,AAA Batteries (4-pack),1,2.99,2019-09-15 12:06:00,130 2nd St, Atlanta,GA,30301 +251999,Apple Airpods Headphones,1,150.0,2019-09-08 00:57:00,322 North St, Dallas,TX,75001 +252000,USB-C Charging Cable,1,11.95,2019-09-08 11:38:00,181 Highland St, Los Angeles,CA,90001 +252001,USB-C Charging Cable,1,11.95,2019-09-09 21:02:00,558 Adams St, New York City,NY,10001 +252002,Lightning Charging Cable,1,14.95,2019-09-25 09:08:00,316 Walnut St, San Francisco,CA,94016 +252003,AA Batteries (4-pack),1,3.84,2019-09-30 01:58:00,569 13th St, New York City,NY,10001 +252004,Apple Airpods Headphones,1,150.0,2019-09-13 22:08:00,220 Wilson St, San Francisco,CA,94016 +252005,Lightning Charging Cable,1,14.95,2019-09-15 22:55:00,435 Highland St, Atlanta,GA,30301 +252006,Apple Airpods Headphones,1,150.0,2019-09-29 08:20:00,664 5th St, San Francisco,CA,94016 +252007,ThinkPad Laptop,1,999.99,2019-09-16 09:53:00,874 Highland St, San Francisco,CA,94016 +252008,AAA Batteries (4-pack),1,2.99,2019-09-07 12:12:00,563 Madison St, Dallas,TX,75001 +252009,Google Phone,1,600.0,2019-09-17 07:43:00,518 Hickory St, Portland,ME,04101 +252010,USB-C Charging Cable,2,11.95,2019-09-10 23:19:00,264 Dogwood St, Seattle,WA,98101 +252011,27in FHD Monitor,1,149.99,2019-09-15 00:53:00,66 Lake St, Atlanta,GA,30301 +252012,27in FHD Monitor,1,149.99,2019-09-01 23:16:00,470 Lincoln St, Los Angeles,CA,90001 +252013,20in Monitor,1,109.99,2019-09-03 21:03:00,259 Cherry St, Boston,MA,02215 +252014,USB-C Charging Cable,1,11.95,2019-09-19 22:45:00,645 7th St, Seattle,WA,98101 +252015,Vareebadd Phone,1,400.0,2019-09-07 15:31:00,474 Ridge St, San Francisco,CA,94016 +252016,Apple Airpods Headphones,1,150.0,2019-09-03 11:21:00,832 2nd St, San Francisco,CA,94016 +252017,Apple Airpods Headphones,1,150.0,2019-09-09 17:35:00,671 Madison St, Austin,TX,73301 +252018,USB-C Charging Cable,1,11.95,2019-09-17 10:25:00,255 Ridge St, Atlanta,GA,30301 +252019,Wired Headphones,1,11.99,2019-09-24 11:52:00,572 Hickory St, Atlanta,GA,30301 +252020,AAA Batteries (4-pack),1,2.99,2019-09-02 11:29:00,267 Lincoln St, Boston,MA,02215 +252021,AAA Batteries (4-pack),1,2.99,2019-09-22 22:25:00,863 13th St, San Francisco,CA,94016 +252022,Google Phone,1,600.0,2019-09-14 14:08:00,369 Hill St, Dallas,TX,75001 +252023,Bose SoundSport Headphones,1,99.99,2019-09-17 17:28:00,110 Ridge St, Seattle,WA,98101 +252023,Wired Headphones,1,11.99,2019-09-17 17:28:00,110 Ridge St, Seattle,WA,98101 +252024,Lightning Charging Cable,1,14.95,2019-09-07 20:28:00,200 7th St, Austin,TX,73301 +252025,34in Ultrawide Monitor,1,379.99,2019-09-05 15:21:00,190 Jefferson St, Seattle,WA,98101 +252026,Flatscreen TV,1,300.0,2019-09-02 12:28:00,485 Park St, Los Angeles,CA,90001 +252027,Google Phone,1,600.0,2019-09-07 22:41:00,666 Cherry St, Los Angeles,CA,90001 +252028,20in Monitor,1,109.99,2019-09-24 19:55:00,348 11th St, Los Angeles,CA,90001 +252029,Wired Headphones,1,11.99,2019-09-27 21:04:00,268 Main St, Los Angeles,CA,90001 +252030,USB-C Charging Cable,1,11.95,2019-09-24 01:08:00,680 Cedar St, San Francisco,CA,94016 +252031,USB-C Charging Cable,1,11.95,2019-09-01 16:58:00,296 Lincoln St, New York City,NY,10001 +252032,USB-C Charging Cable,2,11.95,2019-09-25 21:37:00,256 North St, Atlanta,GA,30301 +252033,Vareebadd Phone,1,400.0,2019-09-09 22:50:00,54 Cedar St, Los Angeles,CA,90001 +252033,Bose SoundSport Headphones,1,99.99,2019-09-09 22:50:00,54 Cedar St, Los Angeles,CA,90001 +252034,AA Batteries (4-pack),1,3.84,2019-09-26 08:22:00,23 2nd St, Boston,MA,02215 +252035,ThinkPad Laptop,1,999.99,2019-09-19 14:11:00,999 Wilson St, Los Angeles,CA,90001 +252036,iPhone,1,700.0,2019-09-06 11:49:00,954 5th St, New York City,NY,10001 +252037,USB-C Charging Cable,1,11.95,2019-09-01 15:32:00,429 1st St, San Francisco,CA,94016 +252038,34in Ultrawide Monitor,1,379.99,2019-09-15 17:47:00,262 2nd St, Los Angeles,CA,90001 +252038,iPhone,1,700.0,2019-09-15 17:47:00,262 2nd St, Los Angeles,CA,90001 +252039,Wired Headphones,1,11.99,2019-09-29 21:52:00,732 Jefferson St, New York City,NY,10001 +252040,Lightning Charging Cable,1,14.95,2019-09-26 23:52:00,890 Main St, Atlanta,GA,30301 +252041,USB-C Charging Cable,2,11.95,2019-09-12 06:08:00,330 Cedar St, New York City,NY,10001 +252042,Google Phone,1,600.0,2019-09-26 14:41:00,713 Jefferson St, Boston,MA,02215 +252043,USB-C Charging Cable,1,11.95,2019-09-01 17:10:00,245 Pine St, Los Angeles,CA,90001 +252044,USB-C Charging Cable,1,11.95,2019-09-15 09:53:00,985 5th St, Boston,MA,02215 +252045,AAA Batteries (4-pack),2,2.99,2019-09-06 22:20:00,489 2nd St, Atlanta,GA,30301 +252046,Lightning Charging Cable,1,14.95,2019-09-22 15:31:00,660 Walnut St, Dallas,TX,75001 +252047,Lightning Charging Cable,1,14.95,2019-09-25 11:09:00,826 7th St, New York City,NY,10001 +252048,USB-C Charging Cable,1,11.95,2019-09-26 23:23:00,470 10th St, Los Angeles,CA,90001 +252049,Bose SoundSport Headphones,1,99.99,2019-09-18 13:21:00,382 Washington St, San Francisco,CA,94016 +252050,Bose SoundSport Headphones,1,99.99,2019-09-04 02:20:00,491 4th St, Dallas,TX,75001 +252051,Apple Airpods Headphones,1,150.0,2019-09-16 12:09:00,132 Madison St, Boston,MA,02215 +252052,Apple Airpods Headphones,1,150.0,2019-09-28 17:11:00,374 Pine St, New York City,NY,10001 +252053,34in Ultrawide Monitor,1,379.99,2019-09-11 22:51:00,768 11th St, New York City,NY,10001 +252054,34in Ultrawide Monitor,1,379.99,2019-09-30 10:52:00,438 Hill St, Seattle,WA,98101 +252055,Flatscreen TV,1,300.0,2019-09-18 21:53:00,931 1st St, Dallas,TX,75001 +252056,Apple Airpods Headphones,1,150.0,2019-09-14 11:24:00,186 11th St, Atlanta,GA,30301 +252057,Lightning Charging Cable,1,14.95,2019-09-20 19:50:00,136 Spruce St, San Francisco,CA,94016 +252058,iPhone,1,700.0,2019-09-07 16:18:00,145 6th St, San Francisco,CA,94016 +252058,Lightning Charging Cable,1,14.95,2019-09-07 16:18:00,145 6th St, San Francisco,CA,94016 +252059,20in Monitor,1,109.99,2019-09-28 13:54:00,96 7th St, San Francisco,CA,94016 +252060,AAA Batteries (4-pack),1,2.99,2019-09-29 09:18:00,475 Sunset St, Los Angeles,CA,90001 +252061,Apple Airpods Headphones,1,150.0,2019-09-21 20:56:00,88 Cedar St, San Francisco,CA,94016 +252062,AA Batteries (4-pack),2,3.84,2019-09-28 13:25:00,240 2nd St, Boston,MA,02215 +252063,AAA Batteries (4-pack),1,2.99,2019-09-09 13:52:00,233 1st St, Portland,OR,97035 +252064,Wired Headphones,1,11.99,2019-09-18 13:09:00,842 9th St, Boston,MA,02215 +252065,Lightning Charging Cable,1,14.95,2019-09-24 14:43:00,892 Jackson St, Boston,MA,02215 +252066,iPhone,1,700.0,2019-09-29 16:31:00,149 8th St, Austin,TX,73301 +252067,AAA Batteries (4-pack),1,2.99,2019-09-29 09:30:00,63 Lincoln St, Boston,MA,02215 +252068,AAA Batteries (4-pack),1,2.99,2019-09-12 06:38:00,536 4th St, Seattle,WA,98101 +252069,Wired Headphones,1,11.99,2019-09-15 10:09:00,200 8th St, San Francisco,CA,94016 +252070,USB-C Charging Cable,2,11.95,2019-09-29 09:55:00,176 1st St, San Francisco,CA,94016 +252071,AA Batteries (4-pack),1,3.84,2019-09-02 21:52:00,190 6th St, New York City,NY,10001 +252072,Wired Headphones,1,11.99,2019-09-20 18:55:00,439 Hill St, Boston,MA,02215 +252073,AA Batteries (4-pack),1,3.84,2019-09-30 11:01:00,829 South St, Los Angeles,CA,90001 +252074,Bose SoundSport Headphones,1,99.99,2019-09-01 12:32:00,725 Highland St, Atlanta,GA,30301 +252075,Bose SoundSport Headphones,1,99.99,2019-09-29 15:30:00,747 Elm St, Portland,OR,97035 +252076,Bose SoundSport Headphones,1,99.99,2019-09-13 14:17:00,201 Pine St, Atlanta,GA,30301 +252077,AA Batteries (4-pack),1,3.84,2019-09-09 23:38:00,78 Adams St, New York City,NY,10001 +252078,AAA Batteries (4-pack),1,2.99,2019-09-17 11:14:00,54 14th St, New York City,NY,10001 +252079,USB-C Charging Cable,2,11.95,2019-09-29 21:01:00,798 Washington St, Los Angeles,CA,90001 +252080,Flatscreen TV,1,300.0,2019-09-20 10:05:00,680 Ridge St, San Francisco,CA,94016 +252081,Lightning Charging Cable,1,14.95,2019-09-12 14:01:00,764 Chestnut St, Atlanta,GA,30301 +252082,Lightning Charging Cable,1,14.95,2019-09-01 17:13:00,275 Park St, Atlanta,GA,30301 +252083,Apple Airpods Headphones,1,150.0,2019-09-03 19:09:00,803 Highland St, Boston,MA,02215 +252084,Wired Headphones,1,11.99,2019-09-08 20:04:00,10 6th St, Austin,TX,73301 +252085,Wired Headphones,1,11.99,2019-09-07 12:42:00,288 South St, Dallas,TX,75001 +252086,Apple Airpods Headphones,1,150.0,2019-09-12 12:50:00,963 Highland St, Boston,MA,02215 +252087,27in FHD Monitor,1,149.99,2019-09-06 20:33:00,158 Lake St, Atlanta,GA,30301 +252088,Google Phone,1,600.0,2019-09-20 13:15:00,67 Johnson St, Dallas,TX,75001 +252089,USB-C Charging Cable,1,11.95,2019-09-06 08:03:00,14 Jackson St, San Francisco,CA,94016 +252090,Apple Airpods Headphones,1,150.0,2019-09-12 17:42:00,742 14th St, Seattle,WA,98101 +252091,AA Batteries (4-pack),2,3.84,2019-09-27 22:48:00,673 7th St, New York City,NY,10001 +252092,Lightning Charging Cable,1,14.95,2019-09-12 11:07:00,151 Chestnut St, Atlanta,GA,30301 +252093,Bose SoundSport Headphones,1,99.99,2019-09-12 20:51:00,964 Washington St, Los Angeles,CA,90001 +252094,AAA Batteries (4-pack),3,2.99,2019-09-25 15:47:00,140 Walnut St, San Francisco,CA,94016 +252095,USB-C Charging Cable,1,11.95,2019-09-06 22:04:00,509 Hill St, Austin,TX,73301 +252096,27in FHD Monitor,1,149.99,2019-09-16 16:30:00,140 Spruce St, Dallas,TX,75001 +252097,Wired Headphones,2,11.99,2019-09-16 20:53:00,598 Spruce St, Los Angeles,CA,90001 +252098,AAA Batteries (4-pack),1,2.99,2019-09-01 14:02:00,689 Spruce St, Dallas,TX,75001 +252099,Wired Headphones,1,11.99,2019-09-26 12:40:00,781 Park St, Austin,TX,73301 +252100,20in Monitor,1,109.99,2019-09-14 20:55:00,583 Park St, Austin,TX,73301 +252101,USB-C Charging Cable,1,11.95,2019-09-18 23:50:00,391 Walnut St, San Francisco,CA,94016 +252102,Wired Headphones,2,11.99,2019-09-18 13:32:00,64 Johnson St, Dallas,TX,75001 +252102,AA Batteries (4-pack),1,3.84,2019-09-18 13:32:00,64 Johnson St, Dallas,TX,75001 +252103,Lightning Charging Cable,1,14.95,2019-09-14 14:37:00,18 Pine St, Los Angeles,CA,90001 +252104,Bose SoundSport Headphones,1,99.99,2019-09-22 14:05:00,118 Adams St, Austin,TX,73301 +252105,Wired Headphones,1,11.99,2019-09-25 17:48:00,262 Lake St, Dallas,TX,75001 +252106,34in Ultrawide Monitor,1,379.99,2019-09-12 17:53:00,815 Cedar St, Dallas,TX,75001 +252107,Lightning Charging Cable,1,14.95,2019-09-16 20:15:00,255 8th St, Austin,TX,73301 +252108,27in FHD Monitor,1,149.99,2019-09-08 11:13:00,850 Washington St, Los Angeles,CA,90001 +252109,AA Batteries (4-pack),1,3.84,2019-09-11 11:55:00,687 Sunset St, San Francisco,CA,94016 +252110,USB-C Charging Cable,1,11.95,2019-09-01 16:19:00,869 10th St, Austin,TX,73301 +252111,Lightning Charging Cable,1,14.95,2019-09-10 16:42:00,619 Adams St, San Francisco,CA,94016 +252112,Apple Airpods Headphones,1,150.0,2019-09-22 09:03:00,577 1st St, New York City,NY,10001 +252113,iPhone,1,700.0,2019-09-19 21:51:00,180 Johnson St, Boston,MA,02215 +252113,Wired Headphones,1,11.99,2019-09-19 21:51:00,180 Johnson St, Boston,MA,02215 +252114,AAA Batteries (4-pack),1,2.99,2019-09-10 14:17:00,122 8th St, Atlanta,GA,30301 +252115,Wired Headphones,1,11.99,2019-09-17 17:19:00,763 5th St, New York City,NY,10001 +252116,Apple Airpods Headphones,1,150.0,2019-09-16 20:48:00,668 7th St, San Francisco,CA,94016 +252117,Bose SoundSport Headphones,1,99.99,2019-09-16 13:47:00,795 Park St, Los Angeles,CA,90001 +252118,AA Batteries (4-pack),1,3.84,2019-09-06 08:03:00,915 West St, Los Angeles,CA,90001 +252119,27in FHD Monitor,1,149.99,2019-09-30 15:25:00,639 Washington St, Los Angeles,CA,90001 +252120,34in Ultrawide Monitor,1,379.99,2019-09-26 19:08:00,785 West St, Seattle,WA,98101 +252121,Lightning Charging Cable,1,14.95,2019-09-09 19:11:00,801 Washington St, New York City,NY,10001 +252122,34in Ultrawide Monitor,1,379.99,2019-09-04 18:12:00,786 10th St, Boston,MA,02215 +252123,Bose SoundSport Headphones,1,99.99,2019-09-13 00:31:00,960 Elm St, Dallas,TX,75001 +252124,AA Batteries (4-pack),1,3.84,2019-09-04 14:48:00,83 Pine St, San Francisco,CA,94016 +252125,AA Batteries (4-pack),2,3.84,2019-09-16 14:07:00,588 13th St, Dallas,TX,75001 +252126,34in Ultrawide Monitor,1,379.99,2019-09-09 03:15:00,431 Hill St, San Francisco,CA,94016 +252127,Macbook Pro Laptop,1,1700.0,2019-09-14 10:56:00,239 13th St, Boston,MA,02215 +252128,Apple Airpods Headphones,1,150.0,2019-09-20 20:17:00,126 Cherry St, Los Angeles,CA,90001 +252129,AAA Batteries (4-pack),1,2.99,2019-09-27 11:12:00,290 Johnson St, New York City,NY,10001 +252130,AA Batteries (4-pack),1,3.84,2019-09-09 16:58:00,120 Elm St, San Francisco,CA,94016 +252131,USB-C Charging Cable,1,11.95,2019-09-25 12:24:00,245 Chestnut St, Dallas,TX,75001 +252132,iPhone,1,700.0,2019-09-20 12:29:00,569 Cedar St, New York City,NY,10001 +252132,Apple Airpods Headphones,1,150.0,2019-09-20 12:29:00,569 Cedar St, New York City,NY,10001 +252133,Lightning Charging Cable,1,14.95,2019-09-04 07:31:00,974 Chestnut St, Atlanta,GA,30301 +252134,ThinkPad Laptop,1,999.99,2019-09-12 09:41:00,698 Dogwood St, Los Angeles,CA,90001 +252135,Wired Headphones,1,11.99,2019-09-06 20:31:00,595 River St, San Francisco,CA,94016 +252136,Bose SoundSport Headphones,1,99.99,2019-09-11 10:59:00,5 Lake St, Boston,MA,02215 +252137,Lightning Charging Cable,1,14.95,2019-09-27 11:51:00,805 14th St, New York City,NY,10001 +252138,27in 4K Gaming Monitor,1,389.99,2019-09-03 10:24:00,986 Lake St, Boston,MA,02215 +252139,Wired Headphones,1,11.99,2019-09-17 11:39:00,844 Hill St, San Francisco,CA,94016 +252140,AA Batteries (4-pack),1,3.84,2019-09-30 15:03:00,582 Lake St, Atlanta,GA,30301 +252141,AAA Batteries (4-pack),1,2.99,2019-09-24 22:09:00,163 13th St, Los Angeles,CA,90001 +252142,Google Phone,1,600.0,2019-09-18 20:00:00,520 Willow St, Boston,MA,02215 +252143,Lightning Charging Cable,1,14.95,2019-09-26 20:40:00,500 Lake St, Boston,MA,02215 +252144,AA Batteries (4-pack),1,3.84,2019-09-26 09:28:00,840 Walnut St, San Francisco,CA,94016 +252145,Wired Headphones,1,11.99,2019-09-19 12:29:00,999 Sunset St, San Francisco,CA,94016 +252146,Google Phone,1,600.0,2019-09-28 16:40:00,681 Lincoln St, Los Angeles,CA,90001 +252147,Apple Airpods Headphones,1,150.0,2019-09-11 15:12:00,55 Madison St, San Francisco,CA,94016 +252148,USB-C Charging Cable,1,11.95,2019-09-20 19:29:00,39 Hill St, Atlanta,GA,30301 +252149,AA Batteries (4-pack),1,3.84,2019-09-25 10:14:00,14 5th St, Boston,MA,02215 +252150,Vareebadd Phone,1,400.0,2019-09-24 15:01:00,885 Walnut St, Portland,OR,97035 +252151,AAA Batteries (4-pack),1,2.99,2019-09-07 19:43:00,124 Main St, New York City,NY,10001 +252152,Wired Headphones,1,11.99,2019-09-25 14:05:00,903 Washington St, San Francisco,CA,94016 +252153,Wired Headphones,1,11.99,2019-09-14 17:06:00,4 Cherry St, Portland,OR,97035 +252154,AAA Batteries (4-pack),2,2.99,2019-09-29 21:19:00,436 Pine St, Portland,OR,97035 +252155,AAA Batteries (4-pack),1,2.99,2019-09-08 15:13:00,939 11th St, Dallas,TX,75001 +252156,AA Batteries (4-pack),1,3.84,2019-09-05 13:15:00,827 Dogwood St, Los Angeles,CA,90001 +252157,Lightning Charging Cable,1,14.95,2019-09-30 08:41:00,876 Walnut St, Portland,OR,97035 +252158,AAA Batteries (4-pack),1,2.99,2019-09-26 01:05:00,71 Forest St, Boston,MA,02215 +252159,Bose SoundSport Headphones,1,99.99,2019-09-30 03:39:00,857 Meadow St, Atlanta,GA,30301 +252160,34in Ultrawide Monitor,1,379.99,2019-09-14 19:53:00,636 South St, Austin,TX,73301 +252161,27in FHD Monitor,1,149.99,2019-09-10 19:01:00,282 North St, Seattle,WA,98101 +252162,AA Batteries (4-pack),1,3.84,2019-09-15 18:12:00,970 8th St, Portland,OR,97035 +252163,Wired Headphones,1,11.99,2019-09-03 23:27:00,423 Maple St, Seattle,WA,98101 +252164,Lightning Charging Cable,1,14.95,2019-10-01 01:46:00,60 River St, San Francisco,CA,94016 +252165,27in FHD Monitor,1,149.99,2019-09-30 15:30:00,605 6th St, Los Angeles,CA,90001 +252166,iPhone,1,700.0,2019-09-13 14:46:00,830 Jefferson St, Boston,MA,02215 +252167,Wired Headphones,1,11.99,2019-09-28 22:57:00,839 Hickory St, Boston,MA,02215 +252167,Google Phone,1,600.0,2019-09-28 22:57:00,839 Hickory St, Boston,MA,02215 +252168,ThinkPad Laptop,1,999.99,2019-09-12 17:36:00,155 Park St, San Francisco,CA,94016 +252169,Flatscreen TV,1,300.0,2019-09-10 22:06:00,854 11th St, Los Angeles,CA,90001 +252170,27in 4K Gaming Monitor,1,389.99,2019-09-09 12:23:00,831 North St, Los Angeles,CA,90001 +252171,27in FHD Monitor,1,149.99,2019-09-09 12:58:00,932 Hickory St, Portland,ME,04101 +252172,AAA Batteries (4-pack),1,2.99,2019-09-15 22:02:00,237 5th St, San Francisco,CA,94016 +252173,ThinkPad Laptop,1,999.99,2019-09-29 12:54:00,427 1st St, Seattle,WA,98101 +252174,Lightning Charging Cable,1,14.95,2019-09-06 23:57:00,537 Church St, Boston,MA,02215 +252175,27in 4K Gaming Monitor,1,389.99,2019-09-18 10:55:00,281 6th St, Dallas,TX,75001 +252176,Apple Airpods Headphones,1,150.0,2019-09-02 14:42:00,977 Willow St, Austin,TX,73301 +252177,Wired Headphones,1,11.99,2019-09-26 09:22:00,677 10th St, Atlanta,GA,30301 +252178,AA Batteries (4-pack),1,3.84,2019-09-26 13:29:00,614 Maple St, Portland,ME,04101 +252179,USB-C Charging Cable,1,11.95,2019-09-22 07:18:00,790 Jackson St, New York City,NY,10001 +252180,Vareebadd Phone,1,400.0,2019-09-02 20:19:00,731 Park St, Atlanta,GA,30301 +252180,USB-C Charging Cable,1,11.95,2019-09-02 20:19:00,731 Park St, Atlanta,GA,30301 +252181,Lightning Charging Cable,1,14.95,2019-09-30 18:35:00,811 North St, Dallas,TX,75001 +252182,Apple Airpods Headphones,1,150.0,2019-09-09 15:19:00,930 Hickory St, New York City,NY,10001 +252183,27in 4K Gaming Monitor,1,389.99,2019-09-19 15:58:00,778 Sunset St, Atlanta,GA,30301 +252184,27in FHD Monitor,1,149.99,2019-09-22 18:48:00,705 Lake St, Los Angeles,CA,90001 +252185,AA Batteries (4-pack),2,3.84,2019-09-01 14:54:00,851 Park St, Los Angeles,CA,90001 +252186,AAA Batteries (4-pack),3,2.99,2019-09-22 20:11:00,740 River St, Portland,OR,97035 +252187,27in FHD Monitor,1,149.99,2019-09-28 22:20:00,435 10th St, Los Angeles,CA,90001 +252188,Apple Airpods Headphones,1,150.0,2019-09-10 08:42:00,60 South St, Portland,OR,97035 +252189,20in Monitor,1,109.99,2019-09-23 23:46:00,457 12th St, Atlanta,GA,30301 +252190,USB-C Charging Cable,1,11.95,2019-09-12 02:43:00,32 Church St, Atlanta,GA,30301 +252191,AAA Batteries (4-pack),3,2.99,2019-09-15 18:42:00,914 South St, Dallas,TX,75001 +252192,34in Ultrawide Monitor,1,379.99,2019-09-29 09:58:00,377 Cherry St, San Francisco,CA,94016 +252193,Flatscreen TV,1,300.0,2019-09-05 17:39:00,261 Washington St, Dallas,TX,75001 +252194,20in Monitor,1,109.99,2019-09-09 10:01:00,883 Church St, Atlanta,GA,30301 +252195,Bose SoundSport Headphones,1,99.99,2019-09-23 10:46:00,870 Lakeview St, San Francisco,CA,94016 +252196,27in FHD Monitor,1,149.99,2019-09-12 17:13:00,185 10th St, Los Angeles,CA,90001 +252197,AAA Batteries (4-pack),1,2.99,2019-09-04 18:20:00,317 Church St, Dallas,TX,75001 +252198,Lightning Charging Cable,1,14.95,2019-09-09 15:29:00,431 Chestnut St, Los Angeles,CA,90001 +252199,USB-C Charging Cable,2,11.95,2019-09-22 13:16:00,316 South St, San Francisco,CA,94016 +252200,AAA Batteries (4-pack),2,2.99,2019-09-16 19:19:00,295 Madison St, New York City,NY,10001 +252201,AA Batteries (4-pack),1,3.84,2019-09-16 22:26:00,533 7th St, New York City,NY,10001 +252202,27in 4K Gaming Monitor,1,389.99,2019-10-01 00:43:00,333 Sunset St, Portland,OR,97035 +252203,Wired Headphones,1,11.99,2019-09-24 22:47:00,619 Willow St, New York City,NY,10001 +252204,Apple Airpods Headphones,1,150.0,2019-09-21 23:40:00,839 Highland St, Los Angeles,CA,90001 +252205,Wired Headphones,1,11.99,2019-09-11 16:43:00,339 10th St, San Francisco,CA,94016 +252206,LG Dryer,1,600.0,2019-09-15 23:48:00,957 Washington St, San Francisco,CA,94016 +252207,AAA Batteries (4-pack),1,2.99,2019-09-14 17:42:00,717 North St, Los Angeles,CA,90001 +252208,Apple Airpods Headphones,1,150.0,2019-09-05 10:30:00,415 Main St, Dallas,TX,75001 +252209,AA Batteries (4-pack),2,3.84,2019-09-15 15:44:00,515 14th St, San Francisco,CA,94016 +252210,AAA Batteries (4-pack),2,2.99,2019-09-01 19:11:00,402 11th St, Boston,MA,02215 +252211,Macbook Pro Laptop,1,1700.0,2019-09-08 10:10:00,293 Madison St, Boston,MA,02215 +252212,AAA Batteries (4-pack),1,2.99,2019-09-04 00:09:00,867 Madison St, Los Angeles,CA,90001 +252213,AAA Batteries (4-pack),1,2.99,2019-09-04 16:15:00,423 2nd St, Los Angeles,CA,90001 +252214,34in Ultrawide Monitor,1,379.99,2019-09-21 18:02:00,667 Church St, Portland,OR,97035 +252215,AAA Batteries (4-pack),1,2.99,2019-09-05 21:44:00,287 11th St, Seattle,WA,98101 +252216,USB-C Charging Cable,1,11.95,2019-09-30 11:59:00,636 Washington St, San Francisco,CA,94016 +252217,LG Washing Machine,1,600.0,2019-09-04 21:53:00,693 Chestnut St, Boston,MA,02215 +252218,AA Batteries (4-pack),1,3.84,2019-09-18 04:03:00,508 Dogwood St, San Francisco,CA,94016 +252219,AAA Batteries (4-pack),1,2.99,2019-09-24 08:47:00,433 Forest St, Austin,TX,73301 +252220,Wired Headphones,1,11.99,2019-09-18 13:01:00,35 Washington St, San Francisco,CA,94016 +252221,27in FHD Monitor,1,149.99,2019-09-15 19:02:00,376 Adams St, Austin,TX,73301 +252222,Flatscreen TV,1,300.0,2019-09-14 06:47:00,724 1st St, Los Angeles,CA,90001 +252223,AA Batteries (4-pack),1,3.84,2019-09-01 19:57:00,287 5th St, San Francisco,CA,94016 +252224,Apple Airpods Headphones,1,150.0,2019-09-26 09:32:00,374 Chestnut St, Boston,MA,02215 +252225,Lightning Charging Cable,1,14.95,2019-09-13 20:41:00,899 Elm St, Boston,MA,02215 +252226,Wired Headphones,1,11.99,2019-09-02 13:22:00,854 Madison St, Atlanta,GA,30301 +252227,Wired Headphones,1,11.99,2019-09-24 17:41:00,547 Hill St, San Francisco,CA,94016 +252228,Lightning Charging Cable,1,14.95,2019-09-27 15:54:00,376 Meadow St, Seattle,WA,98101 +252229,Bose SoundSport Headphones,1,99.99,2019-09-10 21:45:00,255 Jackson St, Boston,MA,02215 +252230,USB-C Charging Cable,1,11.95,2019-09-07 13:36:00,74 5th St, San Francisco,CA,94016 +252231,Lightning Charging Cable,1,14.95,2019-09-20 14:28:00,552 Lake St, New York City,NY,10001 +252232,Flatscreen TV,1,300.0,2019-09-14 19:35:00,47 Chestnut St, Boston,MA,02215 +252233,AAA Batteries (4-pack),1,2.99,2019-09-29 21:19:00,905 Church St, Dallas,TX,75001 +252234,USB-C Charging Cable,3,11.95,2019-09-29 10:21:00,744 Spruce St, Austin,TX,73301 +252235,Macbook Pro Laptop,1,1700.0,2019-09-17 02:54:00,784 Chestnut St, San Francisco,CA,94016 +252236,Wired Headphones,1,11.99,2019-09-16 23:21:00,13 Lincoln St, New York City,NY,10001 +252237,USB-C Charging Cable,1,11.95,2019-09-07 16:34:00,645 Ridge St, San Francisco,CA,94016 +252238,Apple Airpods Headphones,1,150.0,2019-09-21 22:09:00,513 Cedar St, Los Angeles,CA,90001 +252239,Lightning Charging Cable,1,14.95,2019-09-15 13:00:00,520 2nd St, Los Angeles,CA,90001 +252240,27in 4K Gaming Monitor,1,389.99,2019-09-07 11:45:00,74 8th St, Austin,TX,73301 +252241,Wired Headphones,1,11.99,2019-09-08 11:22:00,5 5th St, Boston,MA,02215 +252242,USB-C Charging Cable,1,11.95,2019-09-28 01:03:00,638 Hill St, New York City,NY,10001 +252243,AA Batteries (4-pack),2,3.84,2019-09-17 16:59:00,936 4th St, Los Angeles,CA,90001 +252244,Bose SoundSport Headphones,1,99.99,2019-09-17 20:23:00,297 West St, San Francisco,CA,94016 +252245,AAA Batteries (4-pack),1,2.99,2019-09-17 18:12:00,834 Chestnut St, Dallas,TX,75001 +252246,Bose SoundSport Headphones,1,99.99,2019-09-09 20:24:00,109 Lincoln St, New York City,NY,10001 +252247,USB-C Charging Cable,1,11.95,2019-09-12 10:22:00,960 Main St, Atlanta,GA,30301 +252248,AA Batteries (4-pack),1,3.84,2019-09-17 19:08:00,925 Lake St, San Francisco,CA,94016 +252249,AA Batteries (4-pack),3,3.84,2019-09-25 18:13:00,528 4th St, Dallas,TX,75001 +252249,Flatscreen TV,1,300.0,2019-09-25 18:13:00,528 4th St, Dallas,TX,75001 +252250,AAA Batteries (4-pack),1,2.99,2019-09-09 11:08:00,892 Walnut St, Seattle,WA,98101 +252251,USB-C Charging Cable,1,11.95,2019-09-06 19:33:00,809 4th St, Dallas,TX,75001 +252252,USB-C Charging Cable,1,11.95,2019-09-11 03:54:00,166 Park St, New York City,NY,10001 +252253,Apple Airpods Headphones,1,150.0,2019-09-28 19:27:00,370 Madison St, Seattle,WA,98101 +252253,Wired Headphones,1,11.99,2019-09-28 19:27:00,370 Madison St, Seattle,WA,98101 +252254,AA Batteries (4-pack),1,3.84,2019-09-25 22:06:00,475 Hill St, Boston,MA,02215 +252255,USB-C Charging Cable,1,11.95,2019-09-07 03:37:00,502 Washington St, New York City,NY,10001 +252256,Bose SoundSport Headphones,1,99.99,2019-09-19 11:20:00,103 6th St, New York City,NY,10001 +252257,AAA Batteries (4-pack),2,2.99,2019-09-09 20:58:00,550 Hill St, Austin,TX,73301 +252258,Lightning Charging Cable,1,14.95,2019-09-11 11:52:00,396 Spruce St, New York City,NY,10001 +252259,Wired Headphones,1,11.99,2019-09-07 13:38:00,81 River St, Dallas,TX,75001 +252260,USB-C Charging Cable,1,11.95,2019-09-17 08:21:00,782 Forest St, San Francisco,CA,94016 +252261,Lightning Charging Cable,1,14.95,2019-09-07 16:10:00,557 11th St, Boston,MA,02215 +252262,AA Batteries (4-pack),3,3.84,2019-09-28 18:16:00,338 7th St, Los Angeles,CA,90001 +252263,Flatscreen TV,1,300.0,2019-09-05 12:28:00,546 Ridge St, Los Angeles,CA,90001 +252264,Wired Headphones,1,11.99,2019-09-20 18:03:00,382 Cherry St, Dallas,TX,75001 +252265,Bose SoundSport Headphones,1,99.99,2019-09-30 14:18:00,889 9th St, Boston,MA,02215 +252266,Lightning Charging Cable,2,14.95,2019-09-20 09:52:00,395 Walnut St, Seattle,WA,98101 +252267,Wired Headphones,1,11.99,2019-09-11 09:10:00,133 Spruce St, Los Angeles,CA,90001 +252268,Lightning Charging Cable,1,14.95,2019-09-30 21:54:00,670 9th St, Boston,MA,02215 +252269,Lightning Charging Cable,1,14.95,2019-09-05 16:12:00,281 South St, Atlanta,GA,30301 +252270,AAA Batteries (4-pack),2,2.99,2019-09-19 14:01:00,781 4th St, New York City,NY,10001 +252271,Lightning Charging Cable,1,14.95,2019-09-20 22:15:00,467 14th St, Boston,MA,02215 +252272,Lightning Charging Cable,1,14.95,2019-09-30 21:47:00,227 9th St, San Francisco,CA,94016 +252273,Bose SoundSport Headphones,1,99.99,2019-09-14 23:10:00,716 6th St, San Francisco,CA,94016 +252274,USB-C Charging Cable,1,11.95,2019-09-24 04:45:00,821 Maple St, Atlanta,GA,30301 +252275,Apple Airpods Headphones,1,150.0,2019-09-19 17:03:00,852 Sunset St, Portland,OR,97035 +252276,Apple Airpods Headphones,1,150.0,2019-09-08 12:37:00,83 Park St, San Francisco,CA,94016 +252277,USB-C Charging Cable,1,11.95,2019-09-11 12:37:00,383 River St, Seattle,WA,98101 +252278,Lightning Charging Cable,1,14.95,2019-09-11 21:05:00,218 9th St, Los Angeles,CA,90001 +252279,Wired Headphones,1,11.99,2019-09-08 16:43:00,255 Lakeview St, San Francisco,CA,94016 +252280,USB-C Charging Cable,1,11.95,2019-09-08 19:12:00,147 Lake St, San Francisco,CA,94016 +252281,USB-C Charging Cable,1,11.95,2019-09-24 21:24:00,867 Forest St, Dallas,TX,75001 +252282,iPhone,1,700.0,2019-09-04 18:35:00,943 Park St, San Francisco,CA,94016 +252282,Apple Airpods Headphones,1,150.0,2019-09-04 18:35:00,943 Park St, San Francisco,CA,94016 +252283,Lightning Charging Cable,1,14.95,2019-09-10 21:49:00,421 Washington St, San Francisco,CA,94016 +252284,AAA Batteries (4-pack),1,2.99,2019-09-19 22:02:00,943 Pine St, Atlanta,GA,30301 +252285,27in 4K Gaming Monitor,1,389.99,2019-09-05 22:09:00,207 9th St, New York City,NY,10001 +252286,AA Batteries (4-pack),1,3.84,2019-09-30 11:21:00,924 Pine St, Seattle,WA,98101 +252287,Lightning Charging Cable,1,14.95,2019-09-11 08:43:00,933 Pine St, New York City,NY,10001 +252288,Apple Airpods Headphones,1,150.0,2019-09-20 08:54:00,133 Sunset St, Los Angeles,CA,90001 +252289,Flatscreen TV,1,300.0,2019-09-14 19:42:00,665 Washington St, San Francisco,CA,94016 +252290,AA Batteries (4-pack),1,3.84,2019-09-03 08:13:00,810 Highland St, New York City,NY,10001 +252291,AAA Batteries (4-pack),1,2.99,2019-09-02 21:13:00,846 Wilson St, Austin,TX,73301 +252292,20in Monitor,1,109.99,2019-09-15 15:08:00,947 7th St, Seattle,WA,98101 +252293,USB-C Charging Cable,1,11.95,2019-09-27 12:53:00,762 Jefferson St, Dallas,TX,75001 +252294,AA Batteries (4-pack),1,3.84,2019-09-08 08:58:00,327 Dogwood St, San Francisco,CA,94016 +252295,AA Batteries (4-pack),1,3.84,2019-09-16 10:43:00,577 South St, Seattle,WA,98101 +252296,Bose SoundSport Headphones,1,99.99,2019-09-02 14:52:00,15 Madison St, New York City,NY,10001 +252297,Apple Airpods Headphones,1,150.0,2019-09-10 16:15:00,434 1st St, Dallas,TX,75001 +252298,LG Washing Machine,1,600.0,2019-09-28 08:15:00,697 Dogwood St, Dallas,TX,75001 +252299,Wired Headphones,1,11.99,2019-09-11 11:53:00,903 Lake St, San Francisco,CA,94016 +252300,AA Batteries (4-pack),1,3.84,2019-09-21 19:36:00,91 North St, Dallas,TX,75001 +252301,iPhone,1,700.0,2019-09-08 11:39:00,462 14th St, San Francisco,CA,94016 +252302,USB-C Charging Cable,1,11.95,2019-09-12 12:09:00,291 South St, Portland,ME,04101 +252303,AA Batteries (4-pack),1,3.84,2019-09-19 11:24:00,627 5th St, Los Angeles,CA,90001 +252304,USB-C Charging Cable,2,11.95,2019-09-18 12:49:00,808 Johnson St, San Francisco,CA,94016 +252305,Vareebadd Phone,1,400.0,2019-09-15 23:05:00,866 6th St, San Francisco,CA,94016 +252305,USB-C Charging Cable,1,11.95,2019-09-15 23:05:00,866 6th St, San Francisco,CA,94016 +252306,Lightning Charging Cable,2,14.95,2019-09-04 22:44:00,827 13th St, Atlanta,GA,30301 +252307,USB-C Charging Cable,1,11.95,2019-09-06 17:38:00,131 Highland St, Los Angeles,CA,90001 +252308,iPhone,1,700.0,2019-09-17 11:31:00,870 8th St, San Francisco,CA,94016 +252309,Wired Headphones,1,11.99,2019-09-15 11:34:00,295 Cedar St, San Francisco,CA,94016 +252310,27in FHD Monitor,1,149.99,2019-09-02 09:42:00,647 Sunset St, New York City,NY,10001 +252311,Macbook Pro Laptop,1,1700.0,2019-09-18 19:24:00,77 Highland St, Portland,OR,97035 +252312,AAA Batteries (4-pack),1,2.99,2019-09-19 16:29:00,845 Lincoln St, Los Angeles,CA,90001 +252313,Flatscreen TV,1,300.0,2019-09-04 12:12:00,188 West St, Los Angeles,CA,90001 +252314,Wired Headphones,1,11.99,2019-09-23 11:35:00,275 9th St, Atlanta,GA,30301 +252315,iPhone,1,700.0,2019-09-15 23:41:00,640 Forest St, Seattle,WA,98101 +252315,Apple Airpods Headphones,1,150.0,2019-09-15 23:41:00,640 Forest St, Seattle,WA,98101 +252315,Wired Headphones,1,11.99,2019-09-15 23:41:00,640 Forest St, Seattle,WA,98101 +252316,AAA Batteries (4-pack),1,2.99,2019-09-25 00:19:00,329 Highland St, Los Angeles,CA,90001 +252317,Macbook Pro Laptop,1,1700.0,2019-09-26 17:03:00,771 6th St, Atlanta,GA,30301 +252318,USB-C Charging Cable,1,11.95,2019-09-23 19:30:00,553 River St, San Francisco,CA,94016 +252319,20in Monitor,1,109.99,2019-09-14 07:57:00,736 Chestnut St, Austin,TX,73301 +252320,Bose SoundSport Headphones,1,99.99,2019-09-10 12:56:00,746 Forest St, San Francisco,CA,94016 +252321,34in Ultrawide Monitor,1,379.99,2019-09-14 14:19:00,447 Sunset St, San Francisco,CA,94016 +252322,ThinkPad Laptop,1,999.99,2019-09-02 16:03:00,701 Spruce St, New York City,NY,10001 +252323,Lightning Charging Cable,1,14.95,2019-09-09 10:42:00,645 9th St, Dallas,TX,75001 +252324,Lightning Charging Cable,1,14.95,2019-09-19 10:57:00,130 Meadow St, San Francisco,CA,94016 +252325,AA Batteries (4-pack),4,3.84,2019-09-28 21:31:00,611 8th St, Los Angeles,CA,90001 +252326,AA Batteries (4-pack),1,3.84,2019-09-26 13:19:00,40 Hill St, Los Angeles,CA,90001 +252327,AAA Batteries (4-pack),1,2.99,2019-09-02 09:07:00,686 Madison St, Portland,OR,97035 +252328,Bose SoundSport Headphones,1,99.99,2019-09-17 12:40:00,323 Lakeview St, Los Angeles,CA,90001 +252328,27in FHD Monitor,1,149.99,2019-09-17 12:40:00,323 Lakeview St, Los Angeles,CA,90001 +252329,AAA Batteries (4-pack),1,2.99,2019-09-03 15:46:00,903 Lakeview St, Seattle,WA,98101 +252330,Wired Headphones,1,11.99,2019-09-01 23:44:00,375 Park St, New York City,NY,10001 +252331,AAA Batteries (4-pack),1,2.99,2019-09-27 22:40:00,908 1st St, Boston,MA,02215 +252332,Google Phone,1,600.0,2019-09-27 19:25:00,916 Lincoln St, Boston,MA,02215 +252333,iPhone,1,700.0,2019-09-11 19:42:00,96 Spruce St, Boston,MA,02215 +252334,ThinkPad Laptop,1,999.99,2019-09-28 14:53:00,27 5th St, Los Angeles,CA,90001 +252335,AA Batteries (4-pack),1,3.84,2019-09-17 11:50:00,233 Highland St, Dallas,TX,75001 +252336,Bose SoundSport Headphones,1,99.99,2019-09-03 16:01:00,75 Ridge St, Boston,MA,02215 +252337,USB-C Charging Cable,1,11.95,2019-09-12 08:40:00,556 Maple St, Portland,OR,97035 +252338,USB-C Charging Cable,1,11.95,2019-09-11 14:51:00,847 Meadow St, Seattle,WA,98101 +252339,Apple Airpods Headphones,1,150.0,2019-09-08 19:56:00,666 Washington St, San Francisco,CA,94016 +252340,34in Ultrawide Monitor,1,379.99,2019-09-25 11:13:00,981 Ridge St, New York City,NY,10001 +252341,USB-C Charging Cable,1,11.95,2019-09-17 03:38:00,216 11th St, Austin,TX,73301 +252342,34in Ultrawide Monitor,1,379.99,2019-09-02 12:32:00,181 14th St, New York City,NY,10001 +252343,USB-C Charging Cable,1,11.95,2019-09-18 10:55:00,523 Pine St, San Francisco,CA,94016 +252344,AA Batteries (4-pack),1,3.84,2019-09-01 19:35:00,209 Meadow St, Los Angeles,CA,90001 +252345,27in FHD Monitor,1,149.99,2019-09-03 15:12:00,942 Forest St, Los Angeles,CA,90001 +252346,Apple Airpods Headphones,1,150.0,2019-09-07 18:42:00,34 South St, Portland,OR,97035 +252346,Lightning Charging Cable,1,14.95,2019-09-07 18:42:00,34 South St, Portland,OR,97035 +252347,USB-C Charging Cable,1,11.95,2019-09-16 00:18:00,609 10th St, Los Angeles,CA,90001 +252348,iPhone,1,700.0,2019-09-21 19:26:00,964 Center St, Boston,MA,02215 +252349,Bose SoundSport Headphones,1,99.99,2019-09-20 18:08:00,602 Center St, New York City,NY,10001 +252350,Lightning Charging Cable,1,14.95,2019-09-15 20:19:00,14 12th St, Boston,MA,02215 +252351,Wired Headphones,1,11.99,2019-09-02 21:38:00,36 10th St, Dallas,TX,75001 +252352,USB-C Charging Cable,1,11.95,2019-09-13 13:33:00,823 Lincoln St, San Francisco,CA,94016 +252353,USB-C Charging Cable,1,11.95,2019-09-22 09:17:00,835 Sunset St, Portland,OR,97035 +252354,Lightning Charging Cable,1,14.95,2019-09-24 20:39:00,981 1st St, Dallas,TX,75001 +252355,Lightning Charging Cable,1,14.95,2019-09-05 08:32:00,231 Cedar St, New York City,NY,10001 +252356,Bose SoundSport Headphones,1,99.99,2019-09-24 17:29:00,790 Sunset St, Los Angeles,CA,90001 +252357,Wired Headphones,1,11.99,2019-09-05 22:43:00,923 5th St, San Francisco,CA,94016 +252358,Lightning Charging Cable,1,14.95,2019-09-13 16:27:00,878 13th St, Seattle,WA,98101 +252359,Flatscreen TV,1,300.0,2019-09-04 13:10:00,988 Park St, San Francisco,CA,94016 +252360,Lightning Charging Cable,1,14.95,2019-09-08 18:20:00,513 Adams St, Austin,TX,73301 +252361,AA Batteries (4-pack),1,3.84,2019-09-17 13:31:00,356 Washington St, Atlanta,GA,30301 +252362,Google Phone,1,600.0,2019-09-12 08:14:00,986 Spruce St, San Francisco,CA,94016 +252363,Apple Airpods Headphones,1,150.0,2019-09-19 17:22:00,191 Pine St, San Francisco,CA,94016 +252364,Macbook Pro Laptop,1,1700.0,2019-09-26 22:39:00,111 5th St, Boston,MA,02215 +252365,AA Batteries (4-pack),2,3.84,2019-09-09 11:02:00,703 9th St, San Francisco,CA,94016 +252366,Bose SoundSport Headphones,1,99.99,2019-09-08 21:42:00,512 9th St, San Francisco,CA,94016 +252367,AA Batteries (4-pack),2,3.84,2019-09-01 20:24:00,346 Highland St, Los Angeles,CA,90001 +252368,USB-C Charging Cable,1,11.95,2019-09-11 21:34:00,755 Lake St, Austin,TX,73301 +252369,Bose SoundSport Headphones,1,99.99,2019-09-12 16:34:00,90 Maple St, Atlanta,GA,30301 +252370,USB-C Charging Cable,1,11.95,2019-09-06 00:01:00,129 Pine St, New York City,NY,10001 +252371,Macbook Pro Laptop,1,1700.0,2019-09-04 01:00:00,120 River St, New York City,NY,10001 +252372,Bose SoundSport Headphones,1,99.99,2019-09-12 22:26:00,356 Adams St, Los Angeles,CA,90001 +252373,AA Batteries (4-pack),2,3.84,2019-09-01 07:56:00,128 Hill St, San Francisco,CA,94016 +252374,Wired Headphones,1,11.99,2019-09-28 19:24:00,119 River St, Dallas,TX,75001 +252375,AAA Batteries (4-pack),3,2.99,2019-09-19 17:43:00,296 2nd St, Los Angeles,CA,90001 +252376,LG Washing Machine,1,600.0,2019-09-17 13:35:00,384 7th St, Portland,OR,97035 +252377,Macbook Pro Laptop,1,1700.0,2019-09-02 08:48:00,712 9th St, Atlanta,GA,30301 +252378,USB-C Charging Cable,1,11.95,2019-09-04 12:31:00,484 7th St, San Francisco,CA,94016 +252379,USB-C Charging Cable,1,11.95,2019-09-20 10:10:00,80 Maple St, Boston,MA,02215 +252380,Apple Airpods Headphones,1,150.0,2019-09-25 23:04:00,774 Jefferson St, Boston,MA,02215 +252381,20in Monitor,1,109.99,2019-09-27 16:50:00,946 Maple St, Los Angeles,CA,90001 +252382,Lightning Charging Cable,1,14.95,2019-09-06 11:49:00,960 River St, New York City,NY,10001 +252383,Flatscreen TV,1,300.0,2019-09-11 14:02:00,747 6th St, New York City,NY,10001 +252383,Lightning Charging Cable,1,14.95,2019-09-11 14:02:00,747 6th St, New York City,NY,10001 +252384,AAA Batteries (4-pack),1,2.99,2019-09-04 14:13:00,138 8th St, Austin,TX,73301 +252385,27in FHD Monitor,1,149.99,2019-09-15 16:31:00,594 Willow St, Los Angeles,CA,90001 +252386,Lightning Charging Cable,1,14.95,2019-09-16 18:36:00,606 Dogwood St, San Francisco,CA,94016 +252387,USB-C Charging Cable,1,11.95,2019-09-23 22:21:00,797 Dogwood St, Portland,OR,97035 +252388,ThinkPad Laptop,1,999.99,2019-09-16 21:28:00,229 14th St, Seattle,WA,98101 +252389,AA Batteries (4-pack),1,3.84,2019-09-15 12:00:00,351 River St, Seattle,WA,98101 +252390,Wired Headphones,1,11.99,2019-09-02 04:32:00,913 Pine St, Austin,TX,73301 +252391,Apple Airpods Headphones,1,150.0,2019-09-15 00:51:00,545 5th St, New York City,NY,10001 +252392,USB-C Charging Cable,1,11.95,2019-09-28 11:47:00,733 Chestnut St, New York City,NY,10001 +252393,Apple Airpods Headphones,1,150.0,2019-09-10 11:41:00,52 Hill St, Boston,MA,02215 +252394,Wired Headphones,1,11.99,2019-09-06 08:51:00,569 Cherry St, Dallas,TX,75001 +252395,Wired Headphones,1,11.99,2019-09-14 00:44:00,214 8th St, Los Angeles,CA,90001 +252396,USB-C Charging Cable,1,11.95,2019-09-15 15:56:00,948 Washington St, Los Angeles,CA,90001 +252397,USB-C Charging Cable,1,11.95,2019-09-14 07:40:00,410 1st St, New York City,NY,10001 +252398,Vareebadd Phone,1,400.0,2019-09-06 14:24:00,399 North St, San Francisco,CA,94016 +252399,Macbook Pro Laptop,1,1700.0,2019-09-18 14:22:00,635 Hill St, Dallas,TX,75001 +252399,AA Batteries (4-pack),1,3.84,2019-09-18 14:22:00,635 Hill St, Dallas,TX,75001 +252400,USB-C Charging Cable,1,11.95,2019-09-09 15:35:00,454 Park St, Portland,OR,97035 +252401,27in FHD Monitor,1,149.99,2019-09-10 16:18:00,49 Madison St, San Francisco,CA,94016 +252402,Wired Headphones,1,11.99,2019-09-29 09:26:00,204 Hickory St, San Francisco,CA,94016 +252403,AAA Batteries (4-pack),1,2.99,2019-10-01 00:11:00,548 6th St, Dallas,TX,75001 +252404,Lightning Charging Cable,2,14.95,2019-09-11 04:47:00,506 Cherry St, Austin,TX,73301 +252405,ThinkPad Laptop,1,999.99,2019-09-01 08:11:00,782 South St, New York City,NY,10001 +252406,Lightning Charging Cable,1,14.95,2019-09-07 19:51:00,192 Maple St, New York City,NY,10001 +252407,USB-C Charging Cable,2,11.95,2019-09-09 21:51:00,508 Highland St, Los Angeles,CA,90001 +252408,Apple Airpods Headphones,1,150.0,2019-09-17 17:59:00,354 River St, Austin,TX,73301 +252409,Wired Headphones,1,11.99,2019-09-21 11:23:00,746 Dogwood St, Portland,OR,97035 +252410,AAA Batteries (4-pack),2,2.99,2019-09-29 00:04:00,43 Park St, Portland,OR,97035 +252411,USB-C Charging Cable,1,11.95,2019-09-19 17:25:00,877 2nd St, San Francisco,CA,94016 +252412,Lightning Charging Cable,2,14.95,2019-09-09 17:48:00,225 Park St, Dallas,TX,75001 +252413,USB-C Charging Cable,1,11.95,2019-09-30 21:32:00,604 9th St, San Francisco,CA,94016 +252414,AAA Batteries (4-pack),1,2.99,2019-09-05 18:56:00,248 5th St, Boston,MA,02215 +252415,Apple Airpods Headphones,1,150.0,2019-09-30 12:26:00,202 Spruce St, New York City,NY,10001 +252416,AA Batteries (4-pack),1,3.84,2019-09-07 20:53:00,32 Meadow St, Los Angeles,CA,90001 +252417,USB-C Charging Cable,2,11.95,2019-09-14 07:56:00,183 Johnson St, San Francisco,CA,94016 +252418,AA Batteries (4-pack),2,3.84,2019-09-08 12:08:00,579 Adams St, Boston,MA,02215 +252419,ThinkPad Laptop,1,999.99,2019-09-15 13:23:00,640 Church St, New York City,NY,10001 +252420,USB-C Charging Cable,1,11.95,2019-09-28 08:34:00,881 Lake St, San Francisco,CA,94016 +252421,AA Batteries (4-pack),1,3.84,2019-09-11 09:38:00,461 9th St, Seattle,WA,98101 +252422,Flatscreen TV,1,300.0,2019-09-19 13:31:00,163 Jefferson St, San Francisco,CA,94016 +252423,Flatscreen TV,1,300.0,2019-09-07 07:39:00,469 Highland St, Los Angeles,CA,90001 +252424,Apple Airpods Headphones,1,150.0,2019-09-29 20:18:00,504 Maple St, Portland,OR,97035 +252425,AAA Batteries (4-pack),1,2.99,2019-09-14 10:26:00,754 8th St, Austin,TX,73301 +252426,Lightning Charging Cable,1,14.95,2019-09-05 08:16:00,266 1st St, Los Angeles,CA,90001 +252427,USB-C Charging Cable,1,11.95,2019-09-23 21:19:00,846 Adams St, San Francisco,CA,94016 +252428,20in Monitor,1,109.99,2019-09-04 21:03:00,44 Lake St, Atlanta,GA,30301 +252429,USB-C Charging Cable,1,11.95,2019-09-08 21:25:00,636 Chestnut St, San Francisco,CA,94016 +252430,AAA Batteries (4-pack),2,2.99,2019-09-24 14:38:00,612 Walnut St, Austin,TX,73301 +252431,AAA Batteries (4-pack),1,2.99,2019-09-11 16:30:00,648 9th St, San Francisco,CA,94016 +252432,Macbook Pro Laptop,1,1700.0,2019-09-15 09:23:00,504 Willow St, Atlanta,GA,30301 +252433,27in 4K Gaming Monitor,1,389.99,2019-09-13 11:29:00,432 Washington St, San Francisco,CA,94016 +252434,Flatscreen TV,1,300.0,2019-09-03 09:11:00,988 Walnut St, Dallas,TX,75001 +252435,27in FHD Monitor,1,149.99,2019-09-17 06:59:00,377 Chestnut St, Austin,TX,73301 +252436,Bose SoundSport Headphones,1,99.99,2019-09-08 10:39:00,138 Lakeview St, Seattle,WA,98101 +252437,Apple Airpods Headphones,1,150.0,2019-09-22 16:37:00,300 Spruce St, Seattle,WA,98101 +252437,34in Ultrawide Monitor,1,379.99,2019-09-22 16:37:00,300 Spruce St, Seattle,WA,98101 +252438,Apple Airpods Headphones,1,150.0,2019-09-21 17:23:00,458 Park St, San Francisco,CA,94016 +252439,20in Monitor,1,109.99,2019-09-17 11:26:00,872 Hill St, Portland,OR,97035 +252440,Apple Airpods Headphones,1,150.0,2019-09-14 19:01:00,98 11th St, Boston,MA,02215 +252441,Bose SoundSport Headphones,1,99.99,2019-09-10 23:01:00,178 South St, Seattle,WA,98101 +252442,20in Monitor,2,109.99,2019-09-17 20:12:00,860 8th St, Atlanta,GA,30301 +252443,USB-C Charging Cable,1,11.95,2019-09-19 18:02:00,397 4th St, Los Angeles,CA,90001 +252444,Lightning Charging Cable,1,14.95,2019-09-21 21:52:00,654 Hickory St, New York City,NY,10001 +252445,Wired Headphones,2,11.99,2019-09-07 21:34:00,204 8th St, San Francisco,CA,94016 +252446,27in FHD Monitor,1,149.99,2019-09-21 02:41:00,651 Ridge St, Los Angeles,CA,90001 +252447,Google Phone,1,600.0,2019-09-05 14:40:00,849 Willow St, Los Angeles,CA,90001 +252448,Wired Headphones,1,11.99,2019-09-09 17:39:00,24 Ridge St, San Francisco,CA,94016 +252449,AA Batteries (4-pack),1,3.84,2019-09-06 12:28:00,537 Ridge St, Seattle,WA,98101 +252450,Lightning Charging Cable,1,14.95,2019-09-28 11:51:00,74 Cedar St, Seattle,WA,98101 +252451,AA Batteries (4-pack),1,3.84,2019-09-01 19:37:00,17 River St, San Francisco,CA,94016 +252452,Flatscreen TV,1,300.0,2019-09-08 22:58:00,843 Jefferson St, Dallas,TX,75001 +252453,AAA Batteries (4-pack),2,2.99,2019-09-19 22:52:00,258 Cedar St, San Francisco,CA,94016 +252454,Wired Headphones,1,11.99,2019-09-04 17:40:00,426 Spruce St, Dallas,TX,75001 +252455,AA Batteries (4-pack),1,3.84,2019-09-23 12:06:00,373 Adams St, Seattle,WA,98101 +252456,27in 4K Gaming Monitor,1,389.99,2019-09-05 21:47:00,335 Meadow St, Boston,MA,02215 +252457,Lightning Charging Cable,1,14.95,2019-09-09 11:40:00,250 Meadow St, New York City,NY,10001 +252458,USB-C Charging Cable,1,11.95,2019-09-09 17:53:00,64 12th St, Los Angeles,CA,90001 +252459,AA Batteries (4-pack),1,3.84,2019-09-20 20:16:00,132 Sunset St, San Francisco,CA,94016 +252460,Lightning Charging Cable,1,14.95,2019-09-20 14:41:00,953 8th St, San Francisco,CA,94016 +252461,AAA Batteries (4-pack),1,2.99,2019-09-12 12:56:00,727 Elm St, San Francisco,CA,94016 +252462,Wired Headphones,1,11.99,2019-09-26 19:43:00,85 13th St, New York City,NY,10001 +252463,USB-C Charging Cable,1,11.95,2019-09-09 18:24:00,209 Church St, Atlanta,GA,30301 +252464,Lightning Charging Cable,1,14.95,2019-09-27 06:23:00,100 7th St, San Francisco,CA,94016 +252465,27in 4K Gaming Monitor,1,389.99,2019-09-18 15:53:00,364 10th St, Dallas,TX,75001 +252466,Flatscreen TV,1,300.0,2019-09-20 23:44:00,346 Jefferson St, Atlanta,GA,30301 +252467,Wired Headphones,1,11.99,2019-09-23 21:46:00,374 Dogwood St, New York City,NY,10001 +252468,Lightning Charging Cable,1,14.95,2019-09-08 17:10:00,700 Hickory St, New York City,NY,10001 +252469,Lightning Charging Cable,1,14.95,2019-09-27 18:46:00,890 5th St, Los Angeles,CA,90001 +252470,AAA Batteries (4-pack),1,2.99,2019-09-15 12:32:00,197 5th St, Dallas,TX,75001 +252471,Lightning Charging Cable,1,14.95,2019-09-23 21:12:00,216 Elm St, San Francisco,CA,94016 +252472,Wired Headphones,1,11.99,2019-09-21 20:47:00,873 Wilson St, Los Angeles,CA,90001 +252473,AA Batteries (4-pack),1,3.84,2019-09-12 08:29:00,772 Wilson St, Dallas,TX,75001 +252474,USB-C Charging Cable,1,11.95,2019-09-26 01:32:00,476 Hill St, San Francisco,CA,94016 +252475,LG Dryer,1,600.0,2019-09-12 22:06:00,558 Elm St, San Francisco,CA,94016 +252476,Apple Airpods Headphones,1,150.0,2019-09-20 18:16:00,939 Jackson St, Austin,TX,73301 +252477,Lightning Charging Cable,2,14.95,2019-09-19 19:46:00,479 Cherry St, New York City,NY,10001 +252478,Lightning Charging Cable,1,14.95,2019-09-21 10:58:00,472 Jackson St, New York City,NY,10001 +252479,USB-C Charging Cable,1,11.95,2019-09-29 14:25:00,499 North St, Austin,TX,73301 +252480,Lightning Charging Cable,1,14.95,2019-09-12 01:13:00,934 14th St, Seattle,WA,98101 +252481,AA Batteries (4-pack),1,3.84,2019-09-11 11:11:00,149 Lakeview St, Los Angeles,CA,90001 +252482,Wired Headphones,1,11.99,2019-09-13 13:11:00,422 Elm St, Los Angeles,CA,90001 +252483,Bose SoundSport Headphones,1,99.99,2019-09-16 21:56:00,29 14th St, San Francisco,CA,94016 +252484,Wired Headphones,1,11.99,2019-09-30 14:51:00,452 Jefferson St, Portland,OR,97035 +252485,AA Batteries (4-pack),1,3.84,2019-09-24 12:10:00,593 Adams St, San Francisco,CA,94016 +252486,Lightning Charging Cable,1,14.95,2019-09-14 00:58:00,242 5th St, Atlanta,GA,30301 +252487,USB-C Charging Cable,1,11.95,2019-09-22 23:23:00,724 Dogwood St, New York City,NY,10001 +252488,Bose SoundSport Headphones,1,99.99,2019-09-28 17:57:00,937 River St, Seattle,WA,98101 +252489,USB-C Charging Cable,1,11.95,2019-09-06 17:05:00,842 Center St, Boston,MA,02215 +252490,Lightning Charging Cable,1,14.95,2019-09-03 16:59:00,228 Lakeview St, Portland,OR,97035 +252491,Apple Airpods Headphones,1,150.0,2019-09-28 15:01:00,950 Cedar St, New York City,NY,10001 +252492,USB-C Charging Cable,1,11.95,2019-09-29 01:43:00,164 Lakeview St, Austin,TX,73301 +252493,AA Batteries (4-pack),1,3.84,2019-09-08 22:08:00,503 Highland St, Dallas,TX,75001 +252494,Wired Headphones,3,11.99,2019-09-19 15:17:00,466 13th St, Dallas,TX,75001 +252495,AA Batteries (4-pack),1,3.84,2019-09-17 20:16:00,637 Forest St, Atlanta,GA,30301 +252496,Bose SoundSport Headphones,1,99.99,2019-09-11 15:42:00,740 Hill St, Dallas,TX,75001 +252497,Macbook Pro Laptop,1,1700.0,2019-09-14 10:13:00,89 Adams St, Austin,TX,73301 +252498,AA Batteries (4-pack),1,3.84,2019-09-12 11:30:00,785 River St, San Francisco,CA,94016 +252499,27in FHD Monitor,1,149.99,2019-09-29 11:42:00,189 8th St, Portland,ME,04101 +252500,AA Batteries (4-pack),2,3.84,2019-09-29 22:27:00,998 Ridge St, San Francisco,CA,94016 +252501,Apple Airpods Headphones,1,150.0,2019-09-15 20:49:00,327 11th St, Portland,ME,04101 +252502,27in FHD Monitor,1,149.99,2019-09-21 11:42:00,807 14th St, San Francisco,CA,94016 +252503,USB-C Charging Cable,1,11.95,2019-09-01 21:08:00,251 Lakeview St, Seattle,WA,98101 +252504,AAA Batteries (4-pack),2,2.99,2019-09-22 12:16:00,416 Elm St, San Francisco,CA,94016 +252505,Wired Headphones,1,11.99,2019-09-25 16:52:00,542 Adams St, San Francisco,CA,94016 +252506,AA Batteries (4-pack),1,3.84,2019-09-10 11:08:00,633 2nd St, Atlanta,GA,30301 +252507,AA Batteries (4-pack),1,3.84,2019-09-17 14:54:00,512 Wilson St, Boston,MA,02215 +252508,USB-C Charging Cable,1,11.95,2019-09-03 17:10:00,710 Lake St, Boston,MA,02215 +252509,Wired Headphones,1,11.99,2019-09-12 17:36:00,77 Church St, New York City,NY,10001 +252510,Wired Headphones,1,11.99,2019-09-24 16:48:00,95 Willow St, San Francisco,CA,94016 +252511,USB-C Charging Cable,1,11.95,2019-09-16 00:25:00,493 5th St, Boston,MA,02215 +252512,Macbook Pro Laptop,1,1700.0,2019-09-05 11:12:00,46 Sunset St, Seattle,WA,98101 +252513,Wired Headphones,1,11.99,2019-09-02 10:58:00,376 12th St, New York City,NY,10001 +252514,Lightning Charging Cable,1,14.95,2019-09-03 06:10:00,216 Elm St, San Francisco,CA,94016 +252515,Lightning Charging Cable,1,14.95,2019-09-27 14:17:00,976 Park St, Atlanta,GA,30301 +252516,USB-C Charging Cable,1,11.95,2019-09-02 11:01:00,100 Maple St, Boston,MA,02215 +252517,USB-C Charging Cable,1,11.95,2019-09-09 11:18:00,600 Lincoln St, San Francisco,CA,94016 +252518,Google Phone,1,600.0,2019-09-05 19:38:00,507 7th St, Los Angeles,CA,90001 +252519,Lightning Charging Cable,1,14.95,2019-09-24 11:35:00,113 4th St, Seattle,WA,98101 +252520,Wired Headphones,1,11.99,2019-09-11 10:38:00,147 2nd St, Austin,TX,73301 +252520,AAA Batteries (4-pack),1,2.99,2019-09-11 10:38:00,147 2nd St, Austin,TX,73301 +252521,Google Phone,1,600.0,2019-09-04 13:28:00,324 4th St, Los Angeles,CA,90001 +252522,AA Batteries (4-pack),1,3.84,2019-09-07 15:55:00,951 Main St, Boston,MA,02215 +252523,Apple Airpods Headphones,1,150.0,2019-09-09 11:40:00,400 Wilson St, Los Angeles,CA,90001 +252524,27in FHD Monitor,1,149.99,2019-09-16 19:30:00,564 Elm St, Boston,MA,02215 +252525,Wired Headphones,1,11.99,2019-09-14 04:58:00,995 Adams St, Los Angeles,CA,90001 +252526,LG Dryer,1,600.0,2019-09-27 17:27:00,957 10th St, Los Angeles,CA,90001 +252527,Macbook Pro Laptop,1,1700.0,2019-09-10 09:54:00,664 Highland St, San Francisco,CA,94016 +252528,Apple Airpods Headphones,1,150.0,2019-09-13 17:21:00,813 Church St, Los Angeles,CA,90001 +252529,Wired Headphones,1,11.99,2019-09-05 10:01:00,288 Park St, Los Angeles,CA,90001 +252530,AA Batteries (4-pack),1,3.84,2019-09-08 21:27:00,925 Chestnut St, Los Angeles,CA,90001 +252531,USB-C Charging Cable,1,11.95,2019-09-16 10:00:00,245 Highland St, Austin,TX,73301 +252532,Apple Airpods Headphones,1,150.0,2019-09-06 11:51:00,269 4th St, Seattle,WA,98101 +252533,AAA Batteries (4-pack),1,2.99,2019-09-03 09:32:00,614 Forest St, Portland,OR,97035 +252534,Wired Headphones,1,11.99,2019-09-08 08:42:00,749 Hill St, New York City,NY,10001 +252535,27in 4K Gaming Monitor,1,389.99,2019-09-10 10:36:00,902 Adams St, Seattle,WA,98101 +252536,Apple Airpods Headphones,1,150.0,2019-09-07 22:34:00,566 Main St, Austin,TX,73301 +252537,Wired Headphones,1,11.99,2019-09-18 21:37:00,558 6th St, San Francisco,CA,94016 +252538,iPhone,1,700.0,2019-09-23 21:08:00,829 Chestnut St, Boston,MA,02215 +252538,Apple Airpods Headphones,1,150.0,2019-09-23 21:08:00,829 Chestnut St, Boston,MA,02215 +252539,AA Batteries (4-pack),1,3.84,2019-09-12 18:51:00,310 14th St, Seattle,WA,98101 +252540,AAA Batteries (4-pack),2,2.99,2019-09-23 01:01:00,295 Walnut St, Portland,OR,97035 +252541,34in Ultrawide Monitor,1,379.99,2019-09-22 15:42:00,341 12th St, Los Angeles,CA,90001 +252542,Lightning Charging Cable,1,14.95,2019-09-13 18:53:00,280 6th St, Dallas,TX,75001 +252543,AAA Batteries (4-pack),1,2.99,2019-09-09 13:19:00,418 Main St, Austin,TX,73301 +252544,Wired Headphones,1,11.99,2019-09-26 18:52:00,554 Wilson St, Dallas,TX,75001 +252545,USB-C Charging Cable,1,11.95,2019-09-06 01:15:00,976 14th St, Boston,MA,02215 +252546,Wired Headphones,1,11.99,2019-09-27 14:40:00,420 Spruce St, San Francisco,CA,94016 +252547,Flatscreen TV,1,300.0,2019-09-24 03:06:00,689 Hill St, Seattle,WA,98101 +252548,USB-C Charging Cable,1,11.95,2019-09-14 19:16:00,74 Park St, New York City,NY,10001 +252549,27in FHD Monitor,1,149.99,2019-09-18 11:43:00,766 9th St, Portland,ME,04101 +252550,34in Ultrawide Monitor,1,379.99,2019-09-09 11:37:00,763 5th St, Seattle,WA,98101 +252551,Apple Airpods Headphones,1,150.0,2019-09-09 16:21:00,214 Washington St, San Francisco,CA,94016 +252552,AAA Batteries (4-pack),1,2.99,2019-09-04 12:24:00,470 Sunset St, New York City,NY,10001 +252553,Bose SoundSport Headphones,1,99.99,2019-09-03 13:43:00,103 1st St, San Francisco,CA,94016 +252554,Vareebadd Phone,1,400.0,2019-09-17 10:35:00,886 10th St, Boston,MA,02215 +252554,USB-C Charging Cable,1,11.95,2019-09-17 10:35:00,886 10th St, Boston,MA,02215 +252555,34in Ultrawide Monitor,1,379.99,2019-09-12 12:20:00,394 River St, Los Angeles,CA,90001 +252556,USB-C Charging Cable,1,11.95,2019-09-23 21:03:00,612 Walnut St, San Francisco,CA,94016 +252557,Wired Headphones,1,11.99,2019-09-19 01:31:00,287 Lincoln St, Seattle,WA,98101 +252558,AAA Batteries (4-pack),2,2.99,2019-09-23 22:21:00,716 Lincoln St, San Francisco,CA,94016 +252559,USB-C Charging Cable,1,11.95,2019-09-26 18:40:00,776 Highland St, Austin,TX,73301 +252560,27in FHD Monitor,1,149.99,2019-09-04 07:47:00,248 Willow St, Portland,OR,97035 +252561,Lightning Charging Cable,1,14.95,2019-09-30 14:42:00,487 14th St, Austin,TX,73301 +252562,Lightning Charging Cable,1,14.95,2019-09-17 09:00:00,253 Hill St, San Francisco,CA,94016 +252563,Flatscreen TV,1,300.0,2019-09-10 21:14:00,32 Main St, San Francisco,CA,94016 +252564,Macbook Pro Laptop,1,1700.0,2019-09-13 14:42:00,536 Wilson St, Portland,ME,04101 +252565,LG Washing Machine,1,600.0,2019-09-04 10:22:00,642 13th St, Austin,TX,73301 +252566,ThinkPad Laptop,1,999.99,2019-09-26 19:21:00,717 Forest St, Los Angeles,CA,90001 +252567,Wired Headphones,1,11.99,2019-09-15 13:50:00,676 Spruce St, Los Angeles,CA,90001 +252568,iPhone,1,700.0,2019-09-14 12:05:00,128 Sunset St, Los Angeles,CA,90001 +252568,Lightning Charging Cable,2,14.95,2019-09-14 12:05:00,128 Sunset St, Los Angeles,CA,90001 +252569,AAA Batteries (4-pack),1,2.99,2019-09-25 10:28:00,55 Cherry St, San Francisco,CA,94016 +252570,AA Batteries (4-pack),1,3.84,2019-09-17 17:08:00,371 Church St, Los Angeles,CA,90001 +252571,iPhone,1,700.0,2019-09-18 23:10:00,553 River St, Seattle,WA,98101 +252571,Apple Airpods Headphones,1,150.0,2019-09-18 23:10:00,553 River St, Seattle,WA,98101 +252572,AA Batteries (4-pack),1,3.84,2019-09-07 12:37:00,440 Highland St, San Francisco,CA,94016 +252573,Wired Headphones,1,11.99,2019-09-07 06:50:00,507 5th St, Atlanta,GA,30301 +252574,Lightning Charging Cable,1,14.95,2019-09-14 15:08:00,441 Sunset St, Austin,TX,73301 +252575,Apple Airpods Headphones,1,150.0,2019-09-01 15:16:00,491 Pine St, Los Angeles,CA,90001 +252576,USB-C Charging Cable,1,11.95,2019-09-15 22:39:00,416 North St, Dallas,TX,75001 +252577,AA Batteries (4-pack),1,3.84,2019-09-14 11:55:00,910 Church St, Seattle,WA,98101 +252578,AA Batteries (4-pack),1,3.84,2019-09-17 17:58:00,802 Dogwood St, Dallas,TX,75001 +252579,USB-C Charging Cable,1,11.95,2019-09-01 12:26:00,804 Meadow St, Portland,ME,04101 +252580,iPhone,1,700.0,2019-09-12 16:37:00,934 7th St, San Francisco,CA,94016 +252581,Apple Airpods Headphones,1,150.0,2019-09-20 19:59:00,330 1st St, New York City,NY,10001 +252582,AA Batteries (4-pack),1,3.84,2019-09-02 12:40:00,364 Sunset St, San Francisco,CA,94016 +252583,AA Batteries (4-pack),1,3.84,2019-09-06 18:37:00,695 Pine St, Atlanta,GA,30301 +252584,USB-C Charging Cable,2,11.95,2019-09-22 14:40:00,176 Willow St, San Francisco,CA,94016 +252585,Wired Headphones,1,11.99,2019-09-17 16:17:00,532 Cherry St, San Francisco,CA,94016 +252586,Wired Headphones,1,11.99,2019-09-24 17:23:00,338 Sunset St, Boston,MA,02215 +252587,USB-C Charging Cable,1,11.95,2019-09-15 11:38:00,564 4th St, Dallas,TX,75001 +252588,Macbook Pro Laptop,1,1700.0,2019-09-26 11:36:00,573 Johnson St, Boston,MA,02215 +252589,AAA Batteries (4-pack),2,2.99,2019-09-02 19:13:00,790 11th St, Dallas,TX,75001 +252590,Macbook Pro Laptop,1,1700.0,2019-09-10 13:27:00,972 Spruce St, Atlanta,GA,30301 +252591,Wired Headphones,1,11.99,2019-09-22 14:58:00,68 Jefferson St, Portland,ME,04101 +252592,Apple Airpods Headphones,1,150.0,2019-09-16 16:54:00,717 Walnut St, San Francisco,CA,94016 +252593,27in 4K Gaming Monitor,1,389.99,2019-09-02 18:34:00,106 West St, New York City,NY,10001 +252594,ThinkPad Laptop,1,999.99,2019-09-18 10:46:00,403 Elm St, Los Angeles,CA,90001 +252595,AAA Batteries (4-pack),1,2.99,2019-09-12 09:52:00,871 Hill St, Dallas,TX,75001 +252596,USB-C Charging Cable,1,11.95,2019-09-23 19:31:00,843 8th St, Los Angeles,CA,90001 +252597,AA Batteries (4-pack),3,3.84,2019-09-13 20:10:00,735 11th St, Los Angeles,CA,90001 +252598,Lightning Charging Cable,1,14.95,2019-09-08 11:48:00,343 Main St, San Francisco,CA,94016 +252599,iPhone,1,700.0,2019-09-11 20:49:00,602 Madison St, Los Angeles,CA,90001 +252599,Lightning Charging Cable,1,14.95,2019-09-11 20:49:00,602 Madison St, Los Angeles,CA,90001 +252599,Apple Airpods Headphones,1,150.0,2019-09-11 20:49:00,602 Madison St, Los Angeles,CA,90001 +252600,ThinkPad Laptop,1,999.99,2019-09-10 06:01:00,506 2nd St, Austin,TX,73301 +252601,AA Batteries (4-pack),1,3.84,2019-09-04 22:08:00,362 North St, Portland,OR,97035 +252602,34in Ultrawide Monitor,1,379.99,2019-09-15 00:06:00,831 1st St, Portland,OR,97035 +252603,20in Monitor,1,109.99,2019-09-11 21:36:00,309 12th St, New York City,NY,10001 +252604,Bose SoundSport Headphones,1,99.99,2019-09-05 08:39:00,191 4th St, Boston,MA,02215 +252605,Wired Headphones,1,11.99,2019-09-04 11:43:00,942 Lake St, Boston,MA,02215 +252606,Wired Headphones,1,11.99,2019-09-08 20:55:00,64 Center St, New York City,NY,10001 +252607,ThinkPad Laptop,1,999.99,2019-09-08 23:30:00,139 Pine St, Boston,MA,02215 +252608,Flatscreen TV,1,300.0,2019-09-28 15:20:00,510 Elm St, San Francisco,CA,94016 +252609,iPhone,1,700.0,2019-09-03 10:52:00,180 Cherry St, Boston,MA,02215 +252610,Vareebadd Phone,1,400.0,2019-09-18 20:26:00,50 Lincoln St, Dallas,TX,75001 +252611,AA Batteries (4-pack),2,3.84,2019-09-28 13:38:00,56 Johnson St, New York City,NY,10001 +252612,Lightning Charging Cable,1,14.95,2019-09-01 11:50:00,32 Lakeview St, New York City,NY,10001 +252613,iPhone,1,700.0,2019-09-19 14:11:00,604 13th St, New York City,NY,10001 +252614,Lightning Charging Cable,1,14.95,2019-09-15 13:10:00,854 8th St, San Francisco,CA,94016 +252615,iPhone,1,700.0,2019-09-11 16:08:00,746 Sunset St, Atlanta,GA,30301 +252615,Lightning Charging Cable,1,14.95,2019-09-11 16:08:00,746 Sunset St, Atlanta,GA,30301 +252615,Wired Headphones,1,11.99,2019-09-11 16:08:00,746 Sunset St, Atlanta,GA,30301 +252616,Lightning Charging Cable,1,14.95,2019-09-09 18:24:00,676 6th St, Dallas,TX,75001 +252617,iPhone,1,700.0,2019-09-07 08:05:00,18 Spruce St, San Francisco,CA,94016 +252618,Apple Airpods Headphones,1,150.0,2019-09-16 17:00:00,21 Cherry St, Portland,OR,97035 +252619,USB-C Charging Cable,1,11.95,2019-10-01 00:34:00,629 Johnson St, Austin,TX,73301 +252620,AA Batteries (4-pack),1,3.84,2019-09-28 21:15:00,248 Dogwood St, New York City,NY,10001 +252621,Wired Headphones,1,11.99,2019-09-03 16:02:00,699 7th St, Los Angeles,CA,90001 +252622,Wired Headphones,1,11.99,2019-09-01 08:05:00,625 Maple St, Dallas,TX,75001 +252623,Lightning Charging Cable,1,14.95,2019-09-05 16:57:00,850 Washington St, San Francisco,CA,94016 +252624,USB-C Charging Cable,1,11.95,2019-09-01 10:14:00,965 Madison St, Seattle,WA,98101 +252625,20in Monitor,1,109.99,2019-09-30 17:19:00,360 Spruce St, Seattle,WA,98101 +252626,AA Batteries (4-pack),1,3.84,2019-09-29 10:57:00,621 Meadow St, Los Angeles,CA,90001 +252627,Apple Airpods Headphones,1,150.0,2019-09-04 13:53:00,866 Hill St, Los Angeles,CA,90001 +252628,34in Ultrawide Monitor,1,379.99,2019-09-10 06:38:00,439 Lake St, Seattle,WA,98101 +252629,AA Batteries (4-pack),1,3.84,2019-09-20 13:10:00,222 Lakeview St, San Francisco,CA,94016 +252630,AAA Batteries (4-pack),1,2.99,2019-09-21 21:18:00,281 Ridge St, San Francisco,CA,94016 +252631,Wired Headphones,1,11.99,2019-09-16 14:42:00,278 8th St, Portland,OR,97035 +252632,iPhone,1,700.0,2019-09-05 09:47:00,975 Hill St, Boston,MA,02215 +252633,USB-C Charging Cable,1,11.95,2019-09-09 03:46:00,476 Hill St, San Francisco,CA,94016 +252634,27in FHD Monitor,1,149.99,2019-09-06 14:45:00,479 Center St, Boston,MA,02215 +252635,Google Phone,1,600.0,2019-09-29 20:49:00,437 Dogwood St, Los Angeles,CA,90001 +252636,USB-C Charging Cable,1,11.95,2019-09-24 13:33:00,949 Elm St, San Francisco,CA,94016 +252637,iPhone,1,700.0,2019-09-13 12:12:00,987 Lakeview St, Seattle,WA,98101 +252638,Apple Airpods Headphones,1,150.0,2019-09-14 20:30:00,774 Maple St, San Francisco,CA,94016 +252639,Wired Headphones,1,11.99,2019-09-22 19:47:00,519 Willow St, Los Angeles,CA,90001 +252640,Lightning Charging Cable,1,14.95,2019-09-19 11:24:00,686 Church St, Boston,MA,02215 +252641,27in FHD Monitor,1,149.99,2019-09-24 21:09:00,511 Ridge St, Portland,OR,97035 +252642,AA Batteries (4-pack),1,3.84,2019-09-27 16:11:00,967 Lake St, San Francisco,CA,94016 +252643,Wired Headphones,1,11.99,2019-09-06 08:16:00,190 Elm St, Portland,OR,97035 +252644,Bose SoundSport Headphones,1,99.99,2019-09-13 00:12:00,421 South St, Austin,TX,73301 +252645,34in Ultrawide Monitor,1,379.99,2019-09-18 19:16:00,586 Maple St, San Francisco,CA,94016 +252646,USB-C Charging Cable,1,11.95,2019-09-13 12:31:00,885 6th St, Los Angeles,CA,90001 +252647,USB-C Charging Cable,1,11.95,2019-09-17 01:13:00,459 Spruce St, Seattle,WA,98101 +252648,Apple Airpods Headphones,1,150.0,2019-09-13 10:46:00,372 Park St, San Francisco,CA,94016 +252649,27in 4K Gaming Monitor,1,389.99,2019-09-06 20:26:00,727 Cedar St, Los Angeles,CA,90001 +252650,USB-C Charging Cable,1,11.95,2019-09-16 11:09:00,983 Spruce St, Atlanta,GA,30301 +252651,Flatscreen TV,1,300.0,2019-09-18 11:54:00,889 Lake St, Boston,MA,02215 +252652,Flatscreen TV,1,300.0,2019-09-18 20:47:00,558 Elm St, Los Angeles,CA,90001 +252653,AAA Batteries (4-pack),3,2.99,2019-09-12 15:24:00,230 Washington St, San Francisco,CA,94016 +252654,Apple Airpods Headphones,1,150.0,2019-09-06 17:05:00,722 7th St, Seattle,WA,98101 +252655,AAA Batteries (4-pack),1,2.99,2019-09-14 09:57:00,936 Maple St, New York City,NY,10001 +252656,AAA Batteries (4-pack),1,2.99,2019-09-14 21:31:00,539 Lincoln St, Los Angeles,CA,90001 +252657,iPhone,1,700.0,2019-09-22 18:28:00,890 Lake St, Atlanta,GA,30301 +252657,Lightning Charging Cable,1,14.95,2019-09-22 18:28:00,890 Lake St, Atlanta,GA,30301 +252658,Wired Headphones,1,11.99,2019-09-24 18:07:00,833 North St, Boston,MA,02215 +252659,AAA Batteries (4-pack),1,2.99,2019-09-11 02:02:00,692 Main St, San Francisco,CA,94016 +252660,27in 4K Gaming Monitor,1,389.99,2019-09-14 20:44:00,222 River St, San Francisco,CA,94016 +252661,Wired Headphones,2,11.99,2019-09-21 20:49:00,271 Center St, Dallas,TX,75001 +252662,AA Batteries (4-pack),1,3.84,2019-09-21 11:46:00,714 Jackson St, San Francisco,CA,94016 +252663,AA Batteries (4-pack),1,3.84,2019-09-12 22:23:00,404 Hickory St, Boston,MA,02215 +252664,Lightning Charging Cable,1,14.95,2019-09-29 13:02:00,846 Cedar St, San Francisco,CA,94016 +252665,Bose SoundSport Headphones,1,99.99,2019-09-19 10:33:00,759 11th St, Los Angeles,CA,90001 +252666,AAA Batteries (4-pack),2,2.99,2019-09-05 08:34:00,357 Madison St, Seattle,WA,98101 +252667,AAA Batteries (4-pack),2,2.99,2019-09-27 21:11:00,372 River St, Portland,OR,97035 +252668,27in FHD Monitor,1,149.99,2019-09-22 21:43:00,688 Spruce St, New York City,NY,10001 +252669,Vareebadd Phone,1,400.0,2019-09-02 10:25:00,598 Chestnut St, New York City,NY,10001 +252669,USB-C Charging Cable,1,11.95,2019-09-02 10:25:00,598 Chestnut St, New York City,NY,10001 +252670,AAA Batteries (4-pack),3,2.99,2019-09-12 16:12:00,593 Pine St, San Francisco,CA,94016 +252671,USB-C Charging Cable,1,11.95,2019-09-19 20:50:00,666 Highland St, Seattle,WA,98101 +252672,AA Batteries (4-pack),2,3.84,2019-09-24 13:28:00,916 River St, Los Angeles,CA,90001 +252673,Lightning Charging Cable,1,14.95,2019-09-14 16:01:00,225 9th St, San Francisco,CA,94016 +252674,AA Batteries (4-pack),1,3.84,2019-09-17 16:36:00,368 Wilson St, Boston,MA,02215 +252675,Macbook Pro Laptop,1,1700.0,2019-09-03 10:19:00,51 Chestnut St, Austin,TX,73301 +252676,AAA Batteries (4-pack),1,2.99,2019-09-04 21:21:00,119 Chestnut St, New York City,NY,10001 +252677,20in Monitor,1,109.99,2019-09-15 03:00:00,692 12th St, Boston,MA,02215 +252678,Wired Headphones,1,11.99,2019-09-18 15:37:00,280 Main St, Seattle,WA,98101 +252679,Bose SoundSport Headphones,1,99.99,2019-09-24 21:09:00,522 Johnson St, Seattle,WA,98101 +252680,27in FHD Monitor,1,149.99,2019-09-28 09:57:00,612 Wilson St, New York City,NY,10001 +252681,AA Batteries (4-pack),1,3.84,2019-09-28 09:15:00,101 2nd St, Boston,MA,02215 +252682,Wired Headphones,1,11.99,2019-09-23 13:36:00,855 Dogwood St, Seattle,WA,98101 +252683,AAA Batteries (4-pack),1,2.99,2019-09-18 11:08:00,250 Walnut St, New York City,NY,10001 +252684,27in FHD Monitor,1,149.99,2019-09-07 20:54:00,825 10th St, Los Angeles,CA,90001 +252685,27in FHD Monitor,1,149.99,2019-09-30 04:27:00,681 Park St, Boston,MA,02215 +252686,AAA Batteries (4-pack),1,2.99,2019-09-16 20:09:00,733 Hill St, Boston,MA,02215 +252687,AA Batteries (4-pack),1,3.84,2019-09-20 11:34:00,483 West St, Boston,MA,02215 +252688,AA Batteries (4-pack),1,3.84,2019-09-15 19:00:00,607 Walnut St, New York City,NY,10001 +252689,AAA Batteries (4-pack),2,2.99,2019-09-30 17:04:00,438 2nd St, Boston,MA,02215 +252690,Bose SoundSport Headphones,1,99.99,2019-09-21 22:37:00,783 Dogwood St, Seattle,WA,98101 +252691,Macbook Pro Laptop,1,1700.0,2019-09-05 14:56:00,983 Highland St, Dallas,TX,75001 +252692,27in 4K Gaming Monitor,1,389.99,2019-09-09 15:35:00,601 Washington St, Dallas,TX,75001 +252693,USB-C Charging Cable,1,11.95,2019-09-28 19:29:00,489 11th St, Atlanta,GA,30301 +252694,USB-C Charging Cable,1,11.95,2019-09-08 13:11:00,485 Johnson St, San Francisco,CA,94016 +252695,iPhone,1,700.0,2019-09-13 09:51:00,446 Willow St, Boston,MA,02215 +252696,20in Monitor,1,109.99,2019-09-03 11:30:00,522 6th St, New York City,NY,10001 +252697,34in Ultrawide Monitor,1,379.99,2019-09-04 11:17:00,496 Meadow St, Atlanta,GA,30301 +252698,AA Batteries (4-pack),1,3.84,2019-09-02 23:10:00,580 Adams St, Boston,MA,02215 +252699,Google Phone,1,600.0,2019-09-13 12:41:00,219 River St, Portland,OR,97035 +252700,AA Batteries (4-pack),1,3.84,2019-09-29 21:01:00,559 6th St, San Francisco,CA,94016 +252701,Lightning Charging Cable,1,14.95,2019-09-29 07:38:00,503 Hickory St, Los Angeles,CA,90001 +252702,Lightning Charging Cable,1,14.95,2019-09-18 19:53:00,834 Highland St, Los Angeles,CA,90001 +252703,AAA Batteries (4-pack),1,2.99,2019-09-10 15:15:00,614 4th St, Los Angeles,CA,90001 +252704,iPhone,1,700.0,2019-09-01 20:31:00,285 Hill St, Los Angeles,CA,90001 +252705,Apple Airpods Headphones,1,150.0,2019-09-26 19:53:00,849 10th St, San Francisco,CA,94016 +252705,Google Phone,1,600.0,2019-09-26 19:53:00,849 10th St, San Francisco,CA,94016 +252706,Google Phone,1,600.0,2019-09-09 22:17:00,268 Washington St, Los Angeles,CA,90001 +252706,USB-C Charging Cable,1,11.95,2019-09-09 22:17:00,268 Washington St, Los Angeles,CA,90001 +252707,ThinkPad Laptop,1,999.99,2019-09-23 15:54:00,51 Cherry St, San Francisco,CA,94016 +252708,Lightning Charging Cable,1,14.95,2019-09-15 14:38:00,402 5th St, Los Angeles,CA,90001 +252709,AA Batteries (4-pack),1,3.84,2019-09-12 15:07:00,855 Sunset St, Austin,TX,73301 +252710,USB-C Charging Cable,1,11.95,2019-09-21 20:56:00,769 Elm St, Los Angeles,CA,90001 +252711,Wired Headphones,1,11.99,2019-09-16 08:45:00,75 Jefferson St, Los Angeles,CA,90001 +252712,AAA Batteries (4-pack),2,2.99,2019-09-09 14:33:00,720 West St, Dallas,TX,75001 +252713,Flatscreen TV,1,300.0,2019-09-02 21:36:00,455 Wilson St, Los Angeles,CA,90001 +252714,AA Batteries (4-pack),1,3.84,2019-09-02 08:00:00,508 Forest St, San Francisco,CA,94016 +252715,AAA Batteries (4-pack),1,2.99,2019-09-11 17:23:00,351 11th St, New York City,NY,10001 +252716,USB-C Charging Cable,1,11.95,2019-09-06 15:08:00,998 Wilson St, Los Angeles,CA,90001 +252717,AAA Batteries (4-pack),1,2.99,2019-09-24 15:21:00,710 West St, Los Angeles,CA,90001 +252718,Lightning Charging Cable,1,14.95,2019-09-22 23:44:00,345 Dogwood St, Portland,OR,97035 +252719,Bose SoundSport Headphones,1,99.99,2019-09-29 14:28:00,176 River St, Dallas,TX,75001 +252720,AA Batteries (4-pack),1,3.84,2019-09-19 17:51:00,445 8th St, Seattle,WA,98101 +252721,27in 4K Gaming Monitor,1,389.99,2019-09-01 12:10:00,820 13th St, San Francisco,CA,94016 +252722,Apple Airpods Headphones,1,150.0,2019-09-03 15:23:00,162 Center St, San Francisco,CA,94016 +252723,AAA Batteries (4-pack),2,2.99,2019-09-15 15:06:00,133 Center St, Dallas,TX,75001 +252724,Macbook Pro Laptop,1,1700.0,2019-09-08 20:47:00,301 Walnut St, San Francisco,CA,94016 +252725,iPhone,1,700.0,2019-09-30 20:11:00,982 Highland St, San Francisco,CA,94016 +252726,AA Batteries (4-pack),1,3.84,2019-09-24 20:23:00,545 Maple St, San Francisco,CA,94016 +252727,Wired Headphones,2,11.99,2019-09-08 17:54:00,219 Ridge St, New York City,NY,10001 +252728,Flatscreen TV,1,300.0,2019-09-09 08:41:00,177 South St, Atlanta,GA,30301 +252729,Flatscreen TV,1,300.0,2019-09-07 17:57:00,502 Washington St, San Francisco,CA,94016 +252730,Wired Headphones,1,11.99,2019-09-16 18:25:00,255 12th St, San Francisco,CA,94016 +252730,USB-C Charging Cable,1,11.95,2019-09-16 18:25:00,255 12th St, San Francisco,CA,94016 +252731,AAA Batteries (4-pack),2,2.99,2019-09-21 22:06:00,672 Sunset St, San Francisco,CA,94016 +252732,Wired Headphones,1,11.99,2019-09-28 20:50:00,670 Ridge St, Dallas,TX,75001 +252733,34in Ultrawide Monitor,1,379.99,2019-09-15 16:31:00,373 Washington St, Los Angeles,CA,90001 +252734,Bose SoundSport Headphones,1,99.99,2019-09-16 10:56:00,540 Lincoln St, Portland,OR,97035 +252735,USB-C Charging Cable,1,11.95,2019-09-19 10:32:00,541 12th St, Austin,TX,73301 +252736,USB-C Charging Cable,1,11.95,2019-09-20 21:54:00,198 4th St, Seattle,WA,98101 +252737,USB-C Charging Cable,1,11.95,2019-09-16 13:25:00,65 Highland St, Dallas,TX,75001 +252738,AA Batteries (4-pack),2,3.84,2019-09-25 11:20:00,46 Hill St, New York City,NY,10001 +252739,27in FHD Monitor,1,149.99,2019-09-21 13:40:00,286 Lakeview St, Dallas,TX,75001 +252740,34in Ultrawide Monitor,1,379.99,2019-09-23 19:25:00,617 Madison St, Dallas,TX,75001 +252741,Wired Headphones,1,11.99,2019-09-02 17:32:00,494 Spruce St, San Francisco,CA,94016 +252742,Lightning Charging Cable,1,14.95,2019-09-26 18:06:00,562 Cedar St, Seattle,WA,98101 +252743,Macbook Pro Laptop,1,1700.0,2019-09-04 22:15:00,766 Hill St, Atlanta,GA,30301 +252744,Wired Headphones,1,11.99,2019-09-11 13:20:00,553 Center St, Dallas,TX,75001 +252745,27in 4K Gaming Monitor,1,389.99,2019-09-10 17:50:00,171 Highland St, San Francisco,CA,94016 +252746,USB-C Charging Cable,1,11.95,2019-09-19 06:52:00,315 10th St, Austin,TX,73301 +252747,USB-C Charging Cable,1,11.95,2019-09-29 11:17:00,123 Chestnut St, Dallas,TX,75001 +252748,Flatscreen TV,1,300.0,2019-09-05 16:38:00,953 Elm St, Boston,MA,02215 +252749,Apple Airpods Headphones,1,150.0,2019-09-22 11:00:00,894 4th St, Los Angeles,CA,90001 +252750,ThinkPad Laptop,1,999.99,2019-09-02 20:51:00,99 13th St, San Francisco,CA,94016 +252751,ThinkPad Laptop,1,999.99,2019-09-04 13:39:00,544 Spruce St, New York City,NY,10001 +252752,27in 4K Gaming Monitor,1,389.99,2019-09-25 18:20:00,203 4th St, Los Angeles,CA,90001 +252753,Lightning Charging Cable,1,14.95,2019-09-04 14:09:00,863 North St, New York City,NY,10001 +252754,AA Batteries (4-pack),1,3.84,2019-09-24 12:38:00,836 10th St, Portland,OR,97035 +252755,Flatscreen TV,1,300.0,2019-09-22 13:38:00,103 Jackson St, Atlanta,GA,30301 +252756,Apple Airpods Headphones,1,150.0,2019-09-11 06:08:00,181 12th St, Boston,MA,02215 +252757,Lightning Charging Cable,1,14.95,2019-09-18 14:25:00,42 Walnut St, Boston,MA,02215 +252758,USB-C Charging Cable,1,11.95,2019-09-16 13:07:00,6 South St, New York City,NY,10001 +252759,AA Batteries (4-pack),1,3.84,2019-09-30 06:42:00,7 Lincoln St, San Francisco,CA,94016 +252760,Bose SoundSport Headphones,1,99.99,2019-09-07 16:38:00,36 Madison St, New York City,NY,10001 +252761,34in Ultrawide Monitor,1,379.99,2019-09-14 15:11:00,641 14th St, San Francisco,CA,94016 +252762,Google Phone,1,600.0,2019-09-14 21:59:00,884 Dogwood St, Boston,MA,02215 +252762,USB-C Charging Cable,1,11.95,2019-09-14 21:59:00,884 Dogwood St, Boston,MA,02215 +252763,Wired Headphones,1,11.99,2019-09-06 00:01:00,978 Chestnut St, Seattle,WA,98101 +252764,27in 4K Gaming Monitor,1,389.99,2019-09-19 20:57:00,345 Hill St, Portland,OR,97035 +252765,AAA Batteries (4-pack),2,2.99,2019-09-15 08:37:00,375 Dogwood St, San Francisco,CA,94016 +252766,Lightning Charging Cable,1,14.95,2019-09-03 01:46:00,320 Lake St, San Francisco,CA,94016 +252767,AAA Batteries (4-pack),2,2.99,2019-09-30 16:21:00,362 12th St, San Francisco,CA,94016 +252768,Wired Headphones,1,11.99,2019-09-03 12:54:00,42 Maple St, Austin,TX,73301 +252769,Apple Airpods Headphones,1,150.0,2019-09-23 11:53:00,283 Lincoln St, Austin,TX,73301 +252770,Lightning Charging Cable,1,14.95,2019-09-01 19:31:00,107 Maple St, Los Angeles,CA,90001 +252771,Lightning Charging Cable,1,14.95,2019-09-09 19:23:00,946 Forest St, San Francisco,CA,94016 +252772,27in 4K Gaming Monitor,1,389.99,2019-09-27 13:53:00,834 Park St, Dallas,TX,75001 +252773,iPhone,1,700.0,2019-09-30 09:06:00,211 Meadow St, Dallas,TX,75001 +252774,Macbook Pro Laptop,1,1700.0,2019-09-04 01:15:00,442 4th St, San Francisco,CA,94016 +252775,Wired Headphones,1,11.99,2019-09-25 10:54:00,969 Jefferson St, San Francisco,CA,94016 +252776,USB-C Charging Cable,1,11.95,2019-09-11 00:22:00,425 Lincoln St, New York City,NY,10001 +252777,iPhone,1,700.0,2019-09-05 20:24:00,878 14th St, Seattle,WA,98101 +252778,AA Batteries (4-pack),1,3.84,2019-09-23 16:00:00,65 Johnson St, Portland,OR,97035 +252779,Bose SoundSport Headphones,1,99.99,2019-09-16 12:53:00,190 7th St, New York City,NY,10001 +252780,34in Ultrawide Monitor,1,379.99,2019-09-25 13:53:00,677 1st St, San Francisco,CA,94016 +252781,AA Batteries (4-pack),1,3.84,2019-09-30 07:51:00,43 1st St, Los Angeles,CA,90001 +252782,Wired Headphones,1,11.99,2019-09-12 22:33:00,493 Adams St, Boston,MA,02215 +252783,AA Batteries (4-pack),2,3.84,2019-09-03 20:37:00,137 7th St, Seattle,WA,98101 +252784,Apple Airpods Headphones,1,150.0,2019-09-20 16:09:00,664 9th St, San Francisco,CA,94016 +252785,AAA Batteries (4-pack),5,2.99,2019-09-05 17:38:00,405 4th St, Boston,MA,02215 +252786,Apple Airpods Headphones,1,150.0,2019-09-05 16:24:00,329 Park St, Boston,MA,02215 +252787,iPhone,1,700.0,2019-09-08 11:31:00,893 Lincoln St, San Francisco,CA,94016 +252788,27in FHD Monitor,1,149.99,2019-09-13 07:26:00,818 West St, San Francisco,CA,94016 +252789,27in FHD Monitor,1,149.99,2019-09-29 19:54:00,695 Wilson St, Dallas,TX,75001 +252789,AA Batteries (4-pack),1,3.84,2019-09-29 19:54:00,695 Wilson St, Dallas,TX,75001 +252790,Macbook Pro Laptop,1,1700.0,2019-09-30 09:01:00,694 Center St, Boston,MA,02215 +252791,Google Phone,1,600.0,2019-09-07 16:03:00,188 Center St, San Francisco,CA,94016 +252792,USB-C Charging Cable,1,11.95,2019-09-04 20:07:00,566 Lake St, Boston,MA,02215 +252793,Wired Headphones,1,11.99,2019-09-13 19:31:00,799 12th St, Los Angeles,CA,90001 +252794,LG Washing Machine,1,600.0,2019-09-19 13:52:00,36 North St, Boston,MA,02215 +252794,AA Batteries (4-pack),2,3.84,2019-09-19 13:52:00,36 North St, Boston,MA,02215 +252795,AA Batteries (4-pack),1,3.84,2019-09-24 21:49:00,188 14th St, Atlanta,GA,30301 +252796,Wired Headphones,1,11.99,2019-09-28 17:50:00,682 Washington St, Los Angeles,CA,90001 +252797,AA Batteries (4-pack),1,3.84,2019-09-08 03:27:00,420 Walnut St, Los Angeles,CA,90001 +252798,Flatscreen TV,1,300.0,2019-09-24 15:25:00,848 South St, Dallas,TX,75001 +252799,Apple Airpods Headphones,1,150.0,2019-09-03 14:33:00,951 Church St, San Francisco,CA,94016 +252800,AAA Batteries (4-pack),4,2.99,2019-09-01 15:29:00,108 Jefferson St, Portland,OR,97035 +252801,AAA Batteries (4-pack),1,2.99,2019-09-21 20:54:00,287 14th St, Boston,MA,02215 +252802,USB-C Charging Cable,1,11.95,2019-09-07 20:18:00,568 Hickory St, San Francisco,CA,94016 +252803,Wired Headphones,1,11.99,2019-09-19 11:32:00,210 5th St, New York City,NY,10001 +252804,27in FHD Monitor,1,149.99,2019-09-05 19:48:00,367 Madison St, Dallas,TX,75001 +252805,AAA Batteries (4-pack),1,2.99,2019-09-19 09:13:00,737 10th St, Los Angeles,CA,90001 +252806,Macbook Pro Laptop,1,1700.0,2019-09-01 15:05:00,888 5th St, Los Angeles,CA,90001 +252807,LG Washing Machine,1,600.0,2019-09-10 09:21:00,363 14th St, San Francisco,CA,94016 +252808,iPhone,1,700.0,2019-09-15 21:24:00,959 Spruce St, Los Angeles,CA,90001 +252808,Lightning Charging Cable,1,14.95,2019-09-15 21:24:00,959 Spruce St, Los Angeles,CA,90001 +252809,Bose SoundSport Headphones,1,99.99,2019-09-17 23:08:00,587 Willow St, Seattle,WA,98101 +252810,27in FHD Monitor,1,149.99,2019-09-18 22:18:00,164 Center St, Boston,MA,02215 +252811,Bose SoundSport Headphones,1,99.99,2019-09-12 17:38:00,73 South St, Los Angeles,CA,90001 +252812,iPhone,1,700.0,2019-09-16 16:59:00,245 Park St, San Francisco,CA,94016 +252813,Wired Headphones,1,11.99,2019-09-22 18:33:00,925 Lincoln St, San Francisco,CA,94016 +252814,20in Monitor,1,109.99,2019-09-08 22:55:00,444 Jackson St, Dallas,TX,75001 +252815,Bose SoundSport Headphones,1,99.99,2019-09-12 12:39:00,451 South St, San Francisco,CA,94016 +252816,USB-C Charging Cable,1,11.95,2019-09-23 12:24:00,478 West St, Los Angeles,CA,90001 +252817,USB-C Charging Cable,1,11.95,2019-09-19 18:36:00,352 Highland St, Austin,TX,73301 +252818,AAA Batteries (4-pack),2,2.99,2019-09-09 15:41:00,160 Jefferson St, New York City,NY,10001 +252819,USB-C Charging Cable,2,11.95,2019-09-18 09:25:00,828 Sunset St, Seattle,WA,98101 +252820,34in Ultrawide Monitor,1,379.99,2019-09-06 16:48:00,362 Spruce St, Los Angeles,CA,90001 +252821,AAA Batteries (4-pack),1,2.99,2019-09-14 17:40:00,18 9th St, Los Angeles,CA,90001 +252822,AA Batteries (4-pack),1,3.84,2019-09-09 02:17:00,774 Johnson St, San Francisco,CA,94016 +252823,Lightning Charging Cable,1,14.95,2019-09-21 13:16:00,696 Johnson St, Los Angeles,CA,90001 +252824,Bose SoundSport Headphones,1,99.99,2019-09-06 16:31:00,920 Church St, Seattle,WA,98101 +252825,AAA Batteries (4-pack),1,2.99,2019-09-09 21:39:00,665 Pine St, Dallas,TX,75001 +252826,USB-C Charging Cable,1,11.95,2019-09-18 19:44:00,552 Hill St, Boston,MA,02215 +252827,USB-C Charging Cable,1,11.95,2019-09-04 13:33:00,651 North St, Dallas,TX,75001 +252828,Apple Airpods Headphones,1,150.0,2019-09-25 10:08:00,480 13th St, Seattle,WA,98101 +252829,AAA Batteries (4-pack),2,2.99,2019-09-04 12:17:00,822 Lincoln St, San Francisco,CA,94016 +252830,Flatscreen TV,1,300.0,2019-09-08 19:02:00,71 Lincoln St, Boston,MA,02215 +252831,USB-C Charging Cable,1,11.95,2019-09-01 21:39:00,286 Adams St, Los Angeles,CA,90001 +252832,USB-C Charging Cable,1,11.95,2019-09-20 12:48:00,444 Highland St, New York City,NY,10001 +252833,27in 4K Gaming Monitor,1,389.99,2019-09-21 19:48:00,347 Lake St, Boston,MA,02215 +252834,Flatscreen TV,1,300.0,2019-09-18 10:28:00,397 Lincoln St, San Francisco,CA,94016 +252835,USB-C Charging Cable,1,11.95,2019-09-12 15:57:00,871 Spruce St, Seattle,WA,98101 +252836,Lightning Charging Cable,1,14.95,2019-09-17 17:44:00,485 12th St, Seattle,WA,98101 +252837,AA Batteries (4-pack),2,3.84,2019-09-01 18:42:00,500 West St, New York City,NY,10001 +252838,Lightning Charging Cable,1,14.95,2019-09-22 13:46:00,136 7th St, San Francisco,CA,94016 +252839,27in FHD Monitor,1,149.99,2019-09-24 08:45:00,668 Jefferson St, Los Angeles,CA,90001 +252840,Apple Airpods Headphones,1,150.0,2019-09-25 17:37:00,87 Ridge St, Atlanta,GA,30301 +252841,AAA Batteries (4-pack),1,2.99,2019-09-15 18:53:00,386 2nd St, Austin,TX,73301 +252842,USB-C Charging Cable,1,11.95,2019-09-26 17:28:00,721 Meadow St, Los Angeles,CA,90001 +252843,LG Washing Machine,1,600.0,2019-09-28 16:18:00,44 2nd St, New York City,NY,10001 +252844,iPhone,1,700.0,2019-09-21 20:48:00,522 Highland St, New York City,NY,10001 +252844,Lightning Charging Cable,2,14.95,2019-09-21 20:48:00,522 Highland St, New York City,NY,10001 +252845,34in Ultrawide Monitor,1,379.99,2019-09-17 21:50:00,899 Johnson St, Los Angeles,CA,90001 +252846,Flatscreen TV,1,300.0,2019-09-20 14:10:00,761 Chestnut St, San Francisco,CA,94016 +252847,AA Batteries (4-pack),1,3.84,2019-09-13 21:43:00,105 Pine St, Dallas,TX,75001 +252848,Lightning Charging Cable,1,14.95,2019-09-07 18:15:00,727 Lakeview St, Boston,MA,02215 +252849,27in 4K Gaming Monitor,1,389.99,2019-09-27 19:26:00,336 Park St, San Francisco,CA,94016 +252850,20in Monitor,1,109.99,2019-09-06 20:52:00,644 14th St, New York City,NY,10001 +252851,Lightning Charging Cable,1,14.95,2019-09-17 22:07:00,348 8th St, Boston,MA,02215 +252852,Bose SoundSport Headphones,1,99.99,2019-09-07 10:09:00,836 Lake St, Dallas,TX,75001 +252853,AAA Batteries (4-pack),2,2.99,2019-09-02 23:20:00,410 4th St, Los Angeles,CA,90001 +252854,USB-C Charging Cable,1,11.95,2019-09-16 10:47:00,23 14th St, Los Angeles,CA,90001 +252855,27in 4K Gaming Monitor,1,389.99,2019-09-04 17:34:00,19 7th St, Atlanta,GA,30301 +252856,Apple Airpods Headphones,1,150.0,2019-09-17 11:31:00,257 Hill St, New York City,NY,10001 +252857,Bose SoundSport Headphones,1,99.99,2019-09-04 05:34:00,520 Cedar St, Los Angeles,CA,90001 +252858,Bose SoundSport Headphones,1,99.99,2019-09-22 15:23:00,331 Jackson St, Dallas,TX,75001 +252859,Bose SoundSport Headphones,1,99.99,2019-09-25 12:12:00,658 Washington St, Los Angeles,CA,90001 +252860,Google Phone,1,600.0,2019-09-15 01:47:00,271 5th St, San Francisco,CA,94016 +252860,USB-C Charging Cable,1,11.95,2019-09-15 01:47:00,271 5th St, San Francisco,CA,94016 +252860,Wired Headphones,2,11.99,2019-09-15 01:47:00,271 5th St, San Francisco,CA,94016 +252861,Bose SoundSport Headphones,1,99.99,2019-09-10 19:35:00,363 11th St, Boston,MA,02215 +252862,Lightning Charging Cable,1,14.95,2019-09-09 14:54:00,774 Adams St, San Francisco,CA,94016 +252863,34in Ultrawide Monitor,1,379.99,2019-09-16 21:17:00,55 1st St, San Francisco,CA,94016 +252864,AA Batteries (4-pack),1,3.84,2019-09-09 20:38:00,312 Main St, Atlanta,GA,30301 +252865,USB-C Charging Cable,1,11.95,2019-09-18 14:56:00,282 Lincoln St, San Francisco,CA,94016 +252866,Apple Airpods Headphones,1,150.0,2019-09-16 20:32:00,606 Lakeview St, Dallas,TX,75001 +252867,AAA Batteries (4-pack),1,2.99,2019-09-03 13:41:00,804 Willow St, New York City,NY,10001 +252868,Google Phone,1,600.0,2019-09-30 18:20:00,284 Cherry St, New York City,NY,10001 +252868,USB-C Charging Cable,1,11.95,2019-09-30 18:20:00,284 Cherry St, New York City,NY,10001 +252869,Bose SoundSport Headphones,1,99.99,2019-09-01 12:10:00,369 Pine St, Los Angeles,CA,90001 +252870,Apple Airpods Headphones,1,150.0,2019-09-19 19:26:00,833 Walnut St, San Francisco,CA,94016 +252871,Bose SoundSport Headphones,1,99.99,2019-09-09 21:50:00,413 Dogwood St, New York City,NY,10001 +252872,iPhone,1,700.0,2019-09-29 18:55:00,976 Sunset St, Los Angeles,CA,90001 +252873,Wired Headphones,1,11.99,2019-09-07 18:44:00,863 River St, Atlanta,GA,30301 +252874,Wired Headphones,1,11.99,2019-09-27 23:24:00,363 Main St, San Francisco,CA,94016 +252875,Lightning Charging Cable,1,14.95,2019-09-17 13:00:00,504 Church St, Boston,MA,02215 +252876,USB-C Charging Cable,1,11.95,2019-09-29 14:48:00,568 Walnut St, San Francisco,CA,94016 +252877,Wired Headphones,1,11.99,2019-09-06 20:54:00,483 14th St, Dallas,TX,75001 +252878,Bose SoundSport Headphones,1,99.99,2019-09-18 11:38:00,757 Sunset St, Portland,OR,97035 +252879,AAA Batteries (4-pack),3,2.99,2019-09-12 13:27:00,364 Wilson St, Dallas,TX,75001 +252880,Macbook Pro Laptop,1,1700.0,2019-09-01 07:12:00,580 Washington St, Los Angeles,CA,90001 +252881,AAA Batteries (4-pack),1,2.99,2019-09-09 12:36:00,606 Washington St, San Francisco,CA,94016 +252882,AA Batteries (4-pack),1,3.84,2019-09-20 11:50:00,593 Lincoln St, Boston,MA,02215 +252883,Vareebadd Phone,1,400.0,2019-09-17 21:34:00,281 North St, Atlanta,GA,30301 +252884,USB-C Charging Cable,1,11.95,2019-09-08 09:02:00,12 Park St, Dallas,TX,75001 +252885,Lightning Charging Cable,1,14.95,2019-09-17 10:40:00,915 4th St, San Francisco,CA,94016 +252886,Lightning Charging Cable,1,14.95,2019-09-16 12:03:00,829 Ridge St, Portland,OR,97035 +252887,Bose SoundSport Headphones,1,99.99,2019-09-17 11:34:00,741 8th St, Dallas,TX,75001 +252888,AA Batteries (4-pack),1,3.84,2019-09-18 15:43:00,236 10th St, Dallas,TX,75001 +252889,Lightning Charging Cable,1,14.95,2019-09-16 19:35:00,588 West St, Dallas,TX,75001 +252890,USB-C Charging Cable,1,11.95,2019-09-15 19:10:00,649 5th St, Boston,MA,02215 +252891,AAA Batteries (4-pack),3,2.99,2019-09-02 14:30:00,837 Pine St, San Francisco,CA,94016 +252892,Lightning Charging Cable,1,14.95,2019-09-18 15:26:00,386 8th St, San Francisco,CA,94016 +252893,Macbook Pro Laptop,1,1700.0,2019-09-13 07:13:00,42 13th St, Austin,TX,73301 +252894,AA Batteries (4-pack),1,3.84,2019-09-29 19:35:00,13 Hickory St, Seattle,WA,98101 +252895,Flatscreen TV,1,300.0,2019-09-29 23:43:00,948 11th St, Dallas,TX,75001 +252896,34in Ultrawide Monitor,1,379.99,2019-09-11 14:54:00,661 Spruce St, Boston,MA,02215 +252897,iPhone,1,700.0,2019-09-12 23:43:00,236 Jefferson St, New York City,NY,10001 +252898,USB-C Charging Cable,1,11.95,2019-09-09 18:17:00,756 Main St, San Francisco,CA,94016 +252899,AAA Batteries (4-pack),1,2.99,2019-09-27 08:57:00,90 7th St, Seattle,WA,98101 +252900,27in FHD Monitor,1,149.99,2019-09-29 16:04:00,473 Church St, Los Angeles,CA,90001 +252901,AA Batteries (4-pack),1,3.84,2019-09-18 19:41:00,304 Church St, San Francisco,CA,94016 +252902,Vareebadd Phone,1,400.0,2019-09-23 00:15:00,245 Lakeview St, Dallas,TX,75001 +252903,AAA Batteries (4-pack),1,2.99,2019-09-25 19:51:00,32 7th St, San Francisco,CA,94016 +252904,Wired Headphones,1,11.99,2019-09-04 12:32:00,343 1st St, Dallas,TX,75001 +252905,AA Batteries (4-pack),1,3.84,2019-09-15 06:42:00,172 Ridge St, Boston,MA,02215 +252906,USB-C Charging Cable,1,11.95,2019-09-12 13:46:00,858 Washington St, San Francisco,CA,94016 +252907,Wired Headphones,1,11.99,2019-09-19 14:31:00,853 Church St, San Francisco,CA,94016 +252908,Wired Headphones,2,11.99,2019-09-05 23:19:00,972 Hill St, Boston,MA,02215 +252909,Wired Headphones,2,11.99,2019-09-27 12:16:00,190 Dogwood St, Seattle,WA,98101 +252910,Bose SoundSport Headphones,1,99.99,2019-09-06 08:01:00,178 South St, New York City,NY,10001 +252911,ThinkPad Laptop,1,999.99,2019-09-23 19:05:00,969 West St, Austin,TX,73301 +252912,AAA Batteries (4-pack),1,2.99,2019-09-03 10:09:00,363 Lakeview St, San Francisco,CA,94016 +252913,27in FHD Monitor,1,149.99,2019-09-07 17:40:00,343 Forest St, San Francisco,CA,94016 +252914,Macbook Pro Laptop,1,1700.0,2019-09-25 22:43:00,799 Wilson St, Portland,OR,97035 +252915,iPhone,1,700.0,2019-09-07 18:55:00,112 Johnson St, Atlanta,GA,30301 +252915,Wired Headphones,1,11.99,2019-09-07 18:55:00,112 Johnson St, Atlanta,GA,30301 +252916,Bose SoundSport Headphones,1,99.99,2019-09-27 11:07:00,679 12th St, New York City,NY,10001 +252917,20in Monitor,1,109.99,2019-09-23 15:43:00,711 Adams St, Seattle,WA,98101 +252918,USB-C Charging Cable,1,11.95,2019-09-05 09:18:00,179 North St, San Francisco,CA,94016 +252919,USB-C Charging Cable,1,11.95,2019-09-13 18:00:00,885 7th St, Austin,TX,73301 +252920,Lightning Charging Cable,1,14.95,2019-09-06 12:31:00,648 9th St, Los Angeles,CA,90001 +252921,Google Phone,1,600.0,2019-09-28 12:06:00,946 Sunset St, Seattle,WA,98101 +252922,AAA Batteries (4-pack),1,2.99,2019-09-10 21:59:00,357 14th St, San Francisco,CA,94016 +252923,27in 4K Gaming Monitor,1,389.99,2019-09-04 16:09:00,278 Hickory St, Atlanta,GA,30301 +252924,AA Batteries (4-pack),1,3.84,2019-09-11 13:00:00,659 Cedar St, Los Angeles,CA,90001 +252925,Apple Airpods Headphones,1,150.0,2019-09-13 18:18:00,902 Main St, New York City,NY,10001 +252926,Wired Headphones,1,11.99,2019-09-17 17:17:00,818 6th St, Austin,TX,73301 +252927,AAA Batteries (4-pack),6,2.99,2019-09-28 08:56:00,131 4th St, Los Angeles,CA,90001 +252928,Wired Headphones,1,11.99,2019-09-04 18:16:00,228 Spruce St, Seattle,WA,98101 +252929,AA Batteries (4-pack),1,3.84,2019-09-27 11:04:00,849 14th St, Dallas,TX,75001 +252930,Apple Airpods Headphones,1,150.0,2019-09-02 15:33:00,759 Church St, Atlanta,GA,30301 +252931,Apple Airpods Headphones,1,150.0,2019-09-21 09:10:00,235 2nd St, San Francisco,CA,94016 +252932,Wired Headphones,1,11.99,2019-09-20 12:06:00,316 Center St, Los Angeles,CA,90001 +252933,AA Batteries (4-pack),1,3.84,2019-09-29 14:44:00,516 Park St, Portland,ME,04101 +252934,Apple Airpods Headphones,1,150.0,2019-09-29 17:31:00,883 Jefferson St, San Francisco,CA,94016 +252935,Apple Airpods Headphones,1,150.0,2019-09-15 11:41:00,361 Dogwood St, Boston,MA,02215 +252936,Google Phone,1,600.0,2019-09-10 17:50:00,45 9th St, Los Angeles,CA,90001 +252937,Lightning Charging Cable,1,14.95,2019-09-17 12:10:00,500 Highland St, Los Angeles,CA,90001 +252938,AAA Batteries (4-pack),1,2.99,2019-09-03 21:20:00,41 Lincoln St, San Francisco,CA,94016 +252939,AAA Batteries (4-pack),1,2.99,2019-09-14 23:17:00,226 Johnson St, Los Angeles,CA,90001 +252940,Wired Headphones,1,11.99,2019-09-18 14:13:00,131 South St, Los Angeles,CA,90001 +252941,Vareebadd Phone,1,400.0,2019-09-07 20:48:00,517 Adams St, San Francisco,CA,94016 +252942,AA Batteries (4-pack),1,3.84,2019-09-17 14:20:00,354 13th St, Seattle,WA,98101 +252943,Apple Airpods Headphones,1,150.0,2019-09-08 16:30:00,983 Lake St, San Francisco,CA,94016 +252944,Lightning Charging Cable,1,14.95,2019-09-14 09:57:00,738 Pine St, Boston,MA,02215 +252945,Lightning Charging Cable,1,14.95,2019-09-13 21:28:00,82 Lakeview St, Austin,TX,73301 +252946,AA Batteries (4-pack),1,3.84,2019-09-10 21:00:00,668 Cedar St, Atlanta,GA,30301 +252947,Macbook Pro Laptop,1,1700.0,2019-09-09 02:53:00,560 Willow St, Dallas,TX,75001 +252948,Flatscreen TV,1,300.0,2019-09-27 07:02:00,108 Spruce St, San Francisco,CA,94016 +252949,Bose SoundSport Headphones,1,99.99,2019-09-30 22:00:00,998 12th St, Portland,OR,97035 +252950,Lightning Charging Cable,1,14.95,2019-09-28 11:31:00,854 West St, Los Angeles,CA,90001 +252951,AA Batteries (4-pack),1,3.84,2019-09-30 17:19:00,158 Johnson St, Portland,OR,97035 +252952,Lightning Charging Cable,1,14.95,2019-09-09 14:06:00,909 2nd St, Seattle,WA,98101 +252953,AA Batteries (4-pack),1,3.84,2019-09-02 12:07:00,305 Lake St, Atlanta,GA,30301 +252954,USB-C Charging Cable,1,11.95,2019-09-28 09:39:00,738 Forest St, Atlanta,GA,30301 +252955,iPhone,1,700.0,2019-09-11 09:44:00,734 Willow St, San Francisco,CA,94016 +252956,ThinkPad Laptop,1,999.99,2019-09-24 12:30:00,990 Maple St, Boston,MA,02215 +252957,Bose SoundSport Headphones,1,99.99,2019-09-14 01:02:00,765 Hickory St, Atlanta,GA,30301 +252958,Wired Headphones,1,11.99,2019-09-25 01:07:00,483 Highland St, Atlanta,GA,30301 +252959,Apple Airpods Headphones,1,150.0,2019-09-12 21:28:00,990 14th St, Boston,MA,02215 +252960,USB-C Charging Cable,1,11.95,2019-09-13 12:11:00,957 5th St, Seattle,WA,98101 +252961,Wired Headphones,1,11.99,2019-09-11 01:08:00,664 Lincoln St, Seattle,WA,98101 +252962,USB-C Charging Cable,1,11.95,2019-09-19 09:30:00,248 Hill St, Boston,MA,02215 +252963,LG Dryer,1,600.0,2019-09-02 23:38:00,742 Wilson St, Austin,TX,73301 +252964,Apple Airpods Headphones,1,150.0,2019-09-03 14:22:00,233 Hill St, Dallas,TX,75001 +252965,Macbook Pro Laptop,1,1700.0,2019-09-12 11:24:00,504 Lake St, New York City,NY,10001 +252966,USB-C Charging Cable,1,11.95,2019-09-26 17:52:00,591 14th St, Boston,MA,02215 +252967,Apple Airpods Headphones,1,150.0,2019-09-04 23:41:00,106 Madison St, San Francisco,CA,94016 +252968,AAA Batteries (4-pack),2,2.99,2019-09-05 13:48:00,313 Main St, Atlanta,GA,30301 +252969,Apple Airpods Headphones,1,150.0,2019-09-19 16:00:00,170 North St, Dallas,TX,75001 +252970,27in 4K Gaming Monitor,1,389.99,2019-09-28 18:02:00,327 13th St, Dallas,TX,75001 +252971,USB-C Charging Cable,1,11.95,2019-09-30 13:06:00,831 Elm St, Seattle,WA,98101 +252972,Bose SoundSport Headphones,1,99.99,2019-09-01 14:12:00,86 1st St, Los Angeles,CA,90001 +252973,Apple Airpods Headphones,1,150.0,2019-09-09 13:15:00,593 Hill St, Boston,MA,02215 +252974,Bose SoundSport Headphones,1,99.99,2019-09-06 11:54:00,746 Lake St, San Francisco,CA,94016 +252975,Wired Headphones,1,11.99,2019-09-01 18:05:00,673 Pine St, San Francisco,CA,94016 +252976,Bose SoundSport Headphones,1,99.99,2019-09-07 13:44:00,161 Madison St, Los Angeles,CA,90001 +252977,ThinkPad Laptop,1,999.99,2019-09-14 17:06:00,729 12th St, Austin,TX,73301 +252978,20in Monitor,1,109.99,2019-09-21 09:18:00,996 9th St, Seattle,WA,98101 +252979,Bose SoundSport Headphones,1,99.99,2019-09-14 14:09:00,678 Hickory St, San Francisco,CA,94016 +252980,27in FHD Monitor,1,149.99,2019-09-10 20:21:00,235 Washington St, New York City,NY,10001 +252981,Wired Headphones,1,11.99,2019-09-19 16:52:00,140 Chestnut St, Boston,MA,02215 +252982,AA Batteries (4-pack),1,3.84,2019-09-28 16:11:00,815 Highland St, Los Angeles,CA,90001 +252983,Vareebadd Phone,1,400.0,2019-09-17 13:18:00,734 2nd St, Seattle,WA,98101 +252984,Flatscreen TV,1,300.0,2019-09-02 12:17:00,546 Park St, San Francisco,CA,94016 +252985,Google Phone,1,600.0,2019-09-08 23:43:00,561 13th St, Dallas,TX,75001 +252986,USB-C Charging Cable,1,11.95,2019-09-23 10:52:00,30 1st St, Seattle,WA,98101 +252987,27in 4K Gaming Monitor,1,389.99,2019-09-14 17:25:00,522 13th St, Portland,ME,04101 +252988,AA Batteries (4-pack),1,3.84,2019-09-04 11:51:00,537 Willow St, Portland,ME,04101 +252989,USB-C Charging Cable,1,11.95,2019-09-16 01:41:00,241 Dogwood St, San Francisco,CA,94016 +252990,AAA Batteries (4-pack),1,2.99,2019-09-29 10:59:00,389 Ridge St, Dallas,TX,75001 +252991,AAA Batteries (4-pack),4,2.99,2019-09-04 08:41:00,712 South St, Boston,MA,02215 +252992,Bose SoundSport Headphones,1,99.99,2019-09-25 19:09:00,593 Church St, San Francisco,CA,94016 +252993,AAA Batteries (4-pack),2,2.99,2019-09-14 14:01:00,1 Washington St, San Francisco,CA,94016 +252994,34in Ultrawide Monitor,1,379.99,2019-09-25 18:01:00,694 Cherry St, Dallas,TX,75001 +252995,AAA Batteries (4-pack),1,2.99,2019-09-19 19:04:00,861 Madison St, Los Angeles,CA,90001 +252996,USB-C Charging Cable,1,11.95,2019-09-01 23:30:00,734 Walnut St, Boston,MA,02215 +252997,27in FHD Monitor,1,149.99,2019-09-10 15:41:00,183 Johnson St, Atlanta,GA,30301 +252998,20in Monitor,2,109.99,2019-09-29 12:51:00,415 5th St, Atlanta,GA,30301 +252999,USB-C Charging Cable,1,11.95,2019-09-02 20:10:00,597 Park St, San Francisco,CA,94016 +253000,AAA Batteries (4-pack),1,2.99,2019-09-12 11:06:00,86 Ridge St, Portland,OR,97035 +253001,Macbook Pro Laptop,1,1700.0,2019-09-14 12:03:00,366 Church St, San Francisco,CA,94016 +253002,USB-C Charging Cable,1,11.95,2019-09-03 21:47:00,523 Forest St, Boston,MA,02215 +253003,AAA Batteries (4-pack),3,2.99,2019-09-22 22:11:00,283 7th St, Los Angeles,CA,90001 +253004,AA Batteries (4-pack),1,3.84,2019-09-26 12:55:00,520 Lakeview St, Portland,OR,97035 +253005,USB-C Charging Cable,1,11.95,2019-09-29 09:25:00,50 9th St, Dallas,TX,75001 +253006,Flatscreen TV,1,300.0,2019-09-03 13:58:00,230 North St, Seattle,WA,98101 +253007,Bose SoundSport Headphones,1,99.99,2019-09-25 07:28:00,999 Wilson St, Atlanta,GA,30301 +253008,USB-C Charging Cable,1,11.95,2019-09-14 19:25:00,826 West St, San Francisco,CA,94016 +253009,Lightning Charging Cable,1,14.95,2019-09-28 00:10:00,393 Park St, Los Angeles,CA,90001 +253010,AA Batteries (4-pack),1,3.84,2019-09-17 17:02:00,647 Forest St, Portland,OR,97035 +253011,Lightning Charging Cable,2,14.95,2019-09-26 07:01:00,690 Park St, Los Angeles,CA,90001 +253012,USB-C Charging Cable,1,11.95,2019-09-29 21:27:00,979 14th St, Dallas,TX,75001 +253013,AA Batteries (4-pack),1,3.84,2019-09-29 23:16:00,2 2nd St, Los Angeles,CA,90001 +253014,USB-C Charging Cable,1,11.95,2019-09-05 08:51:00,171 13th St, Boston,MA,02215 +253015,Bose SoundSport Headphones,1,99.99,2019-09-13 12:33:00,873 Cherry St, Boston,MA,02215 +253016,USB-C Charging Cable,1,11.95,2019-09-01 13:40:00,975 Lakeview St, Los Angeles,CA,90001 +253017,Wired Headphones,3,11.99,2019-09-14 19:07:00,485 River St, Los Angeles,CA,90001 +253018,Apple Airpods Headphones,1,150.0,2019-09-20 11:01:00,263 9th St, San Francisco,CA,94016 +253019,Macbook Pro Laptop,1,1700.0,2019-09-09 00:18:00,921 Adams St, Boston,MA,02215 +253020,AA Batteries (4-pack),1,3.84,2019-09-30 18:53:00,176 Maple St, Boston,MA,02215 +253021,AA Batteries (4-pack),2,3.84,2019-09-06 17:21:00,585 Pine St, Boston,MA,02215 +253022,Wired Headphones,1,11.99,2019-09-19 20:24:00,349 Church St, Dallas,TX,75001 +253023,AA Batteries (4-pack),1,3.84,2019-09-16 21:02:00,780 Spruce St, Boston,MA,02215 +253024,USB-C Charging Cable,1,11.95,2019-09-28 09:14:00,277 Johnson St, Dallas,TX,75001 +253025,Wired Headphones,1,11.99,2019-09-08 00:09:00,639 Elm St, Seattle,WA,98101 +253026,Lightning Charging Cable,1,14.95,2019-09-16 12:14:00,426 2nd St, Dallas,TX,75001 +253027,Wired Headphones,1,11.99,2019-09-23 20:42:00,217 1st St, San Francisco,CA,94016 +253028,27in 4K Gaming Monitor,1,389.99,2019-09-22 15:52:00,634 Lincoln St, Portland,OR,97035 +253029,USB-C Charging Cable,1,11.95,2019-09-12 10:46:00,491 Center St, San Francisco,CA,94016 +253030,34in Ultrawide Monitor,1,379.99,2019-09-20 13:56:00,179 Cherry St, Los Angeles,CA,90001 +253031,27in FHD Monitor,1,149.99,2019-09-21 17:45:00,815 Willow St, New York City,NY,10001 +253032,Lightning Charging Cable,1,14.95,2019-09-08 13:54:00,598 River St, Los Angeles,CA,90001 +253033,AA Batteries (4-pack),1,3.84,2019-09-05 09:53:00,749 Main St, San Francisco,CA,94016 +253034,iPhone,1,700.0,2019-09-02 08:50:00,637 1st St, Los Angeles,CA,90001 +253035,AAA Batteries (4-pack),1,2.99,2019-09-26 21:29:00,451 Jefferson St, New York City,NY,10001 +253036,Bose SoundSport Headphones,1,99.99,2019-09-25 11:05:00,595 Ridge St, Boston,MA,02215 +253037,AA Batteries (4-pack),1,3.84,2019-09-06 19:38:00,224 Madison St, San Francisco,CA,94016 +253038,USB-C Charging Cable,1,11.95,2019-09-01 18:59:00,23 Hickory St, New York City,NY,10001 +253039,Macbook Pro Laptop,1,1700.0,2019-09-13 13:10:00,139 Cherry St, San Francisco,CA,94016 +253040,AA Batteries (4-pack),3,3.84,2019-09-04 22:38:00,49 Johnson St, San Francisco,CA,94016 +253041,USB-C Charging Cable,2,11.95,2019-09-17 13:47:00,165 5th St, New York City,NY,10001 +253042,AAA Batteries (4-pack),2,2.99,2019-09-25 12:15:00,228 Lake St, New York City,NY,10001 +253043,34in Ultrawide Monitor,1,379.99,2019-09-15 11:45:00,707 Dogwood St, Los Angeles,CA,90001 +253044,Lightning Charging Cable,1,14.95,2019-09-14 13:41:00,798 11th St, Portland,OR,97035 +253045,Flatscreen TV,1,300.0,2019-09-23 16:45:00,586 Park St, Atlanta,GA,30301 +253046,Macbook Pro Laptop,1,1700.0,2019-09-04 18:21:00,518 5th St, Dallas,TX,75001 +253047,Lightning Charging Cable,1,14.95,2019-09-17 12:00:00,292 Johnson St, Atlanta,GA,30301 +253048,34in Ultrawide Monitor,1,379.99,2019-09-12 16:47:00,29 North St, Boston,MA,02215 +253049,AAA Batteries (4-pack),1,2.99,2019-09-02 21:00:00,212 Jefferson St, Dallas,TX,75001 +253050,Wired Headphones,2,11.99,2019-09-22 13:54:00,142 7th St, San Francisco,CA,94016 +253051,AA Batteries (4-pack),1,3.84,2019-09-19 11:35:00,474 Lincoln St, New York City,NY,10001 +253052,Apple Airpods Headphones,1,150.0,2019-09-22 12:49:00,116 Lakeview St, New York City,NY,10001 +253053,Apple Airpods Headphones,1,150.0,2019-09-21 13:24:00,368 Hickory St, Dallas,TX,75001 +253054,Apple Airpods Headphones,1,150.0,2019-09-24 15:15:00,513 Cherry St, Boston,MA,02215 +253055,AA Batteries (4-pack),1,3.84,2019-09-28 21:03:00,765 Lakeview St, Dallas,TX,75001 +253056,Apple Airpods Headphones,1,150.0,2019-09-26 19:34:00,379 Meadow St, San Francisco,CA,94016 +253056,Google Phone,1,600.0,2019-09-26 19:34:00,379 Meadow St, San Francisco,CA,94016 +253057,AA Batteries (4-pack),2,3.84,2019-09-21 17:15:00,216 Wilson St, Los Angeles,CA,90001 +253058,Bose SoundSport Headphones,1,99.99,2019-09-17 11:11:00,783 13th St, Seattle,WA,98101 +253059,USB-C Charging Cable,1,11.95,2019-09-05 11:41:00,582 9th St, Portland,OR,97035 +253060,AA Batteries (4-pack),1,3.84,2019-09-22 13:34:00,343 Jackson St, Atlanta,GA,30301 +253061,USB-C Charging Cable,1,11.95,2019-09-05 22:28:00,121 Lake St, Dallas,TX,75001 +253062,Apple Airpods Headphones,1,150.0,2019-09-27 13:08:00,1 Highland St, Atlanta,GA,30301 +253063,27in 4K Gaming Monitor,1,389.99,2019-09-10 23:29:00,635 Adams St, San Francisco,CA,94016 +253064,AAA Batteries (4-pack),1,2.99,2019-09-24 13:42:00,498 Adams St, Los Angeles,CA,90001 +253065,AA Batteries (4-pack),1,3.84,2019-09-22 14:56:00,879 10th St, Boston,MA,02215 +253066,27in 4K Gaming Monitor,1,389.99,2019-09-26 08:36:00,181 Wilson St, San Francisco,CA,94016 +253067,27in 4K Gaming Monitor,1,389.99,2019-09-12 21:10:00,943 4th St, Los Angeles,CA,90001 +253068,Wired Headphones,1,11.99,2019-09-17 18:45:00,368 8th St, New York City,NY,10001 +253069,AA Batteries (4-pack),1,3.84,2019-09-07 11:08:00,946 Hill St, San Francisco,CA,94016 +253070,Macbook Pro Laptop,1,1700.0,2019-09-06 15:46:00,968 Main St, San Francisco,CA,94016 +253071,Apple Airpods Headphones,1,150.0,2019-09-24 19:38:00,956 8th St, Dallas,TX,75001 +253072,AA Batteries (4-pack),1,3.84,2019-09-20 21:10:00,33 Meadow St, New York City,NY,10001 +253073,Google Phone,1,600.0,2019-09-29 13:40:00,393 9th St, Dallas,TX,75001 +253074,USB-C Charging Cable,1,11.95,2019-09-22 07:37:00,578 Forest St, Austin,TX,73301 +253075,Apple Airpods Headphones,1,150.0,2019-09-01 14:40:00,492 Chestnut St, Dallas,TX,75001 +253076,LG Washing Machine,1,600.0,2019-09-13 21:51:00,301 Sunset St, San Francisco,CA,94016 +253077,Lightning Charging Cable,1,14.95,2019-09-03 10:47:00,685 Walnut St, Boston,MA,02215 +253078,Macbook Pro Laptop,1,1700.0,2019-09-29 08:14:00,830 Jefferson St, Dallas,TX,75001 +253079,Bose SoundSport Headphones,1,99.99,2019-09-23 10:38:00,864 Johnson St, Atlanta,GA,30301 +253080,20in Monitor,1,109.99,2019-09-06 15:15:00,401 Church St, New York City,NY,10001 +253081,Bose SoundSport Headphones,1,99.99,2019-09-10 10:53:00,824 Spruce St, San Francisco,CA,94016 +253082,Wired Headphones,1,11.99,2019-09-12 11:04:00,328 1st St, Los Angeles,CA,90001 +253083,Wired Headphones,1,11.99,2019-09-14 13:28:00,853 Center St, Boston,MA,02215 +253084,Google Phone,1,600.0,2019-09-25 12:51:00,517 Hickory St, New York City,NY,10001 +253084,USB-C Charging Cable,1,11.95,2019-09-25 12:51:00,517 Hickory St, New York City,NY,10001 +253085,Flatscreen TV,1,300.0,2019-09-21 21:42:00,74 Sunset St, Boston,MA,02215 +253086,iPhone,1,700.0,2019-09-07 18:43:00,631 Chestnut St, San Francisco,CA,94016 +253087,AA Batteries (4-pack),1,3.84,2019-09-24 13:42:00,70 South St, Los Angeles,CA,90001 +253088,Lightning Charging Cable,1,14.95,2019-09-23 08:30:00,783 Ridge St, New York City,NY,10001 +253089,Lightning Charging Cable,1,14.95,2019-09-03 14:09:00,191 North St, Dallas,TX,75001 +253090,AA Batteries (4-pack),1,3.84,2019-09-01 21:49:00,165 Elm St, San Francisco,CA,94016 +253091,USB-C Charging Cable,1,11.95,2019-09-29 09:22:00,963 Church St, New York City,NY,10001 +253092,AA Batteries (4-pack),1,3.84,2019-09-28 18:15:00,343 10th St, San Francisco,CA,94016 +253093,USB-C Charging Cable,1,11.95,2019-09-09 00:06:00,175 Pine St, Los Angeles,CA,90001 +253094,Wired Headphones,1,11.99,2019-09-21 22:39:00,925 Cedar St, Boston,MA,02215 +253095,AAA Batteries (4-pack),1,2.99,2019-09-04 11:12:00,793 Hickory St, New York City,NY,10001 +253096,USB-C Charging Cable,1,11.95,2019-09-10 14:02:00,901 Ridge St, Dallas,TX,75001 +253097,AA Batteries (4-pack),1,3.84,2019-09-05 20:59:00,279 North St, Boston,MA,02215 +253098,Wired Headphones,1,11.99,2019-09-01 12:38:00,613 Wilson St, Seattle,WA,98101 +253099,AA Batteries (4-pack),1,3.84,2019-09-23 12:43:00,266 Forest St, New York City,NY,10001 +253100,AA Batteries (4-pack),1,3.84,2019-09-30 17:27:00,526 Maple St, San Francisco,CA,94016 +253101,USB-C Charging Cable,1,11.95,2019-09-28 23:30:00,90 14th St, Boston,MA,02215 +253102,Flatscreen TV,1,300.0,2019-09-13 16:28:00,357 Hickory St, New York City,NY,10001 +253103,Apple Airpods Headphones,1,150.0,2019-09-18 22:13:00,429 Pine St, New York City,NY,10001 +253104,Google Phone,1,600.0,2019-09-29 18:14:00,450 Lincoln St, Portland,OR,97035 +253104,Bose SoundSport Headphones,1,99.99,2019-09-29 18:14:00,450 Lincoln St, Portland,OR,97035 +253105,AAA Batteries (4-pack),1,2.99,2019-09-14 22:02:00,333 Forest St, San Francisco,CA,94016 +253106,Bose SoundSport Headphones,1,99.99,2019-09-07 11:29:00,39 Walnut St, Seattle,WA,98101 +253107,Apple Airpods Headphones,1,150.0,2019-09-11 10:29:00,569 Forest St, New York City,NY,10001 +253108,iPhone,1,700.0,2019-09-06 19:25:00,104 9th St, San Francisco,CA,94016 +253109,Bose SoundSport Headphones,1,99.99,2019-09-06 16:57:00,65 Spruce St, Atlanta,GA,30301 +253110,Bose SoundSport Headphones,1,99.99,2019-09-20 19:33:00,59 Madison St, San Francisco,CA,94016 +253111,Bose SoundSport Headphones,1,99.99,2019-09-24 19:40:00,494 Spruce St, Los Angeles,CA,90001 +253112,AAA Batteries (4-pack),3,2.99,2019-09-16 17:25:00,397 11th St, Dallas,TX,75001 +253113,Wired Headphones,1,11.99,2019-09-16 21:40:00,955 8th St, Atlanta,GA,30301 +253114,AA Batteries (4-pack),2,3.84,2019-09-25 12:53:00,233 Church St, Dallas,TX,75001 +253115,ThinkPad Laptop,1,999.99,2019-09-13 16:48:00,411 Lake St, San Francisco,CA,94016 +253116,AA Batteries (4-pack),1,3.84,2019-09-30 08:56:00,429 Pine St, New York City,NY,10001 +253117,27in FHD Monitor,1,149.99,2019-09-27 12:16:00,824 7th St, San Francisco,CA,94016 +253118,Flatscreen TV,1,300.0,2019-09-29 19:11:00,789 Johnson St, Los Angeles,CA,90001 +253119,Macbook Pro Laptop,1,1700.0,2019-09-08 20:02:00,188 Washington St, New York City,NY,10001 +253120,34in Ultrawide Monitor,1,379.99,2019-09-29 13:18:00,939 4th St, New York City,NY,10001 +253121,Vareebadd Phone,1,400.0,2019-09-07 06:20:00,957 Lincoln St, San Francisco,CA,94016 +253122,Flatscreen TV,1,300.0,2019-09-14 20:11:00,804 Main St, San Francisco,CA,94016 +253123,27in FHD Monitor,1,149.99,2019-09-01 20:29:00,391 7th St, New York City,NY,10001 +253124,USB-C Charging Cable,1,11.95,2019-09-11 21:19:00,221 Lakeview St, Austin,TX,73301 +253125,Wired Headphones,1,11.99,2019-09-14 11:09:00,82 4th St, San Francisco,CA,94016 +253126,Bose SoundSport Headphones,1,99.99,2019-09-24 14:54:00,767 North St, New York City,NY,10001 +253127,AAA Batteries (4-pack),4,2.99,2019-09-21 19:12:00,789 Maple St, Boston,MA,02215 +253128,USB-C Charging Cable,1,11.95,2019-09-15 22:33:00,169 Hickory St, Los Angeles,CA,90001 +253129,USB-C Charging Cable,1,11.95,2019-09-07 13:02:00,165 5th St, Boston,MA,02215 +253130,AAA Batteries (4-pack),1,2.99,2019-09-09 07:20:00,480 Sunset St, San Francisco,CA,94016 +253131,27in FHD Monitor,1,149.99,2019-09-09 12:50:00,699 Jackson St, Portland,OR,97035 +253132,Lightning Charging Cable,1,14.95,2019-09-30 17:00:00,616 Walnut St, Los Angeles,CA,90001 +253133,Bose SoundSport Headphones,1,99.99,2019-09-15 19:21:00,552 Highland St, Boston,MA,02215 +253134,Apple Airpods Headphones,1,150.0,2019-09-28 16:11:00,748 13th St, San Francisco,CA,94016 +253135,27in 4K Gaming Monitor,1,389.99,2019-09-27 22:04:00,835 North St, San Francisco,CA,94016 +253136,Apple Airpods Headphones,1,150.0,2019-09-17 18:09:00,642 Lakeview St, Portland,OR,97035 +253137,Lightning Charging Cable,1,14.95,2019-09-10 19:26:00,301 Hickory St, Boston,MA,02215 +253138,27in FHD Monitor,1,149.99,2019-09-29 19:27:00,857 Chestnut St, New York City,NY,10001 +253139,USB-C Charging Cable,1,11.95,2019-09-30 09:40:00,984 12th St, Los Angeles,CA,90001 +253140,USB-C Charging Cable,1,11.95,2019-09-17 13:03:00,682 Chestnut St, Austin,TX,73301 +253141,USB-C Charging Cable,1,11.95,2019-09-03 14:33:00,58 2nd St, Portland,OR,97035 +253142,27in FHD Monitor,1,149.99,2019-09-06 00:48:00,252 7th St, Atlanta,GA,30301 +253143,Wired Headphones,1,11.99,2019-09-13 04:25:00,88 9th St, Atlanta,GA,30301 +253144,27in FHD Monitor,1,149.99,2019-09-20 19:21:00,479 13th St, Los Angeles,CA,90001 +253145,Apple Airpods Headphones,1,150.0,2019-09-23 20:06:00,507 Lake St, San Francisco,CA,94016 +253146,Vareebadd Phone,1,400.0,2019-09-19 21:56:00,948 Dogwood St, Portland,OR,97035 +253146,USB-C Charging Cable,1,11.95,2019-09-19 21:56:00,948 Dogwood St, Portland,OR,97035 +253147,ThinkPad Laptop,1,999.99,2019-09-21 22:17:00,674 Forest St, San Francisco,CA,94016 +253148,Bose SoundSport Headphones,1,99.99,2019-09-14 20:11:00,692 Forest St, Portland,ME,04101 +253149,Vareebadd Phone,1,400.0,2019-09-27 18:50:00,221 10th St, Portland,OR,97035 +253150,iPhone,1,700.0,2019-09-09 22:42:00,165 Maple St, Atlanta,GA,30301 +253151,USB-C Charging Cable,1,11.95,2019-09-08 16:25:00,395 Pine St, New York City,NY,10001 +253152,Wired Headphones,1,11.99,2019-09-11 14:42:00,973 1st St, San Francisco,CA,94016 +253153,USB-C Charging Cable,1,11.95,2019-09-02 22:10:00,206 Main St, Boston,MA,02215 +253154,AAA Batteries (4-pack),1,2.99,2019-09-04 03:59:00,851 7th St, San Francisco,CA,94016 +253155,Google Phone,1,600.0,2019-09-29 01:03:00,279 Dogwood St, Atlanta,GA,30301 +253156,USB-C Charging Cable,1,11.95,2019-09-15 13:44:00,951 Pine St, Portland,ME,04101 +253157,USB-C Charging Cable,1,11.95,2019-09-16 16:45:00,277 North St, Boston,MA,02215 +253158,AAA Batteries (4-pack),4,2.99,2019-09-29 00:37:00,40 Ridge St, Dallas,TX,75001 +253159,Google Phone,1,600.0,2019-09-30 11:49:00,670 Lincoln St, Seattle,WA,98101 +253160,AAA Batteries (4-pack),4,2.99,2019-09-04 06:26:00,269 Main St, San Francisco,CA,94016 +253161,USB-C Charging Cable,1,11.95,2019-09-15 20:21:00,6 Center St, Los Angeles,CA,90001 +253162,Wired Headphones,1,11.99,2019-09-04 12:43:00,743 Forest St, Seattle,WA,98101 +253163,USB-C Charging Cable,1,11.95,2019-09-09 21:17:00,868 8th St, San Francisco,CA,94016 +253164,AA Batteries (4-pack),1,3.84,2019-09-14 17:22:00,457 West St, San Francisco,CA,94016 +253165,27in 4K Gaming Monitor,1,389.99,2019-09-15 23:23:00,73 Jackson St, Los Angeles,CA,90001 +253166,Wired Headphones,1,11.99,2019-09-23 19:16:00,388 11th St, Portland,OR,97035 +253167,AAA Batteries (4-pack),1,2.99,2019-09-12 18:21:00,913 Highland St, San Francisco,CA,94016 +253168,20in Monitor,1,109.99,2019-10-01 04:06:00,105 Sunset St, Boston,MA,02215 +253169,Macbook Pro Laptop,1,1700.0,2019-09-30 11:57:00,802 Adams St, San Francisco,CA,94016 +253170,AA Batteries (4-pack),1,3.84,2019-09-25 09:51:00,880 8th St, Seattle,WA,98101 +253171,AAA Batteries (4-pack),1,2.99,2019-09-02 17:29:00,888 11th St, San Francisco,CA,94016 +253172,USB-C Charging Cable,1,11.95,2019-09-16 22:28:00,229 Adams St, San Francisco,CA,94016 +253173,AA Batteries (4-pack),1,3.84,2019-09-10 09:25:00,356 Center St, Portland,OR,97035 +253174,27in 4K Gaming Monitor,1,389.99,2019-09-06 11:01:00,422 9th St, Atlanta,GA,30301 +253175,Lightning Charging Cable,1,14.95,2019-09-19 08:46:00,615 1st St, Portland,OR,97035 +253176,Lightning Charging Cable,1,14.95,2019-09-21 10:17:00,654 Cedar St, Los Angeles,CA,90001 +253177,USB-C Charging Cable,1,11.95,2019-09-09 14:29:00,911 Main St, Los Angeles,CA,90001 +253178,AAA Batteries (4-pack),1,2.99,2019-09-27 00:44:00,787 4th St, New York City,NY,10001 +253179,iPhone,1,700.0,2019-09-30 19:20:00,914 11th St, Boston,MA,02215 +253180,USB-C Charging Cable,1,11.95,2019-09-06 10:25:00,245 Meadow St, Seattle,WA,98101 +253181,AAA Batteries (4-pack),1,2.99,2019-09-26 10:50:00,955 Church St, Boston,MA,02215 +253181,iPhone,1,700.0,2019-09-26 10:50:00,955 Church St, Boston,MA,02215 +253182,AA Batteries (4-pack),2,3.84,2019-09-21 22:18:00,380 11th St, San Francisco,CA,94016 +253183,AA Batteries (4-pack),1,3.84,2019-09-20 19:22:00,324 2nd St, Portland,ME,04101 +253184,Apple Airpods Headphones,1,150.0,2019-09-08 22:05:00,567 5th St, Dallas,TX,75001 +253185,AA Batteries (4-pack),1,3.84,2019-09-04 20:44:00,142 9th St, Portland,OR,97035 +253186,27in 4K Gaming Monitor,1,389.99,2019-09-29 15:50:00,549 Sunset St, Los Angeles,CA,90001 +253187,USB-C Charging Cable,1,11.95,2019-09-02 18:00:00,931 Park St, Los Angeles,CA,90001 +253188,AAA Batteries (4-pack),1,2.99,2019-09-01 17:12:00,144 Main St, Atlanta,GA,30301 +253189,USB-C Charging Cable,1,11.95,2019-09-23 20:51:00,182 12th St, New York City,NY,10001 +253190,AA Batteries (4-pack),1,3.84,2019-09-21 10:40:00,186 Jackson St, Los Angeles,CA,90001 +253191,USB-C Charging Cable,1,11.95,2019-09-04 02:38:00,173 River St, San Francisco,CA,94016 +253192,27in FHD Monitor,1,149.99,2019-09-23 10:05:00,903 Hickory St, New York City,NY,10001 +253193,Vareebadd Phone,1,400.0,2019-09-10 16:31:00,7 River St, Boston,MA,02215 +253194,AAA Batteries (4-pack),1,2.99,2019-09-18 17:50:00,271 Maple St, Los Angeles,CA,90001 +253195,USB-C Charging Cable,1,11.95,2019-09-27 20:21:00,901 Main St, Atlanta,GA,30301 +253196,Wired Headphones,2,11.99,2019-09-05 14:25:00,775 Washington St, Boston,MA,02215 +253197,Bose SoundSport Headphones,1,99.99,2019-09-18 21:40:00,184 5th St, Boston,MA,02215 +253198,Lightning Charging Cable,1,14.95,2019-09-26 22:17:00,167 Madison St, Boston,MA,02215 +253199,Bose SoundSport Headphones,1,99.99,2019-09-15 21:33:00,664 Lincoln St, New York City,NY,10001 +253200,Lightning Charging Cable,1,14.95,2019-09-10 17:32:00,924 River St, San Francisco,CA,94016 +253201,Bose SoundSport Headphones,1,99.99,2019-09-23 17:16:00,586 Dogwood St, Dallas,TX,75001 +253202,USB-C Charging Cable,1,11.95,2019-09-25 14:39:00,302 Pine St, Atlanta,GA,30301 +253203,Wired Headphones,1,11.99,2019-09-10 21:52:00,29 1st St, Los Angeles,CA,90001 +253204,Wired Headphones,1,11.99,2019-09-01 22:06:00,771 7th St, Dallas,TX,75001 +253205,AA Batteries (4-pack),1,3.84,2019-09-20 12:11:00,860 Lakeview St, New York City,NY,10001 +253206,AAA Batteries (4-pack),1,2.99,2019-09-04 12:29:00,516 Pine St, San Francisco,CA,94016 +253207,AA Batteries (4-pack),2,3.84,2019-09-11 20:49:00,961 10th St, Atlanta,GA,30301 +253208,AA Batteries (4-pack),1,3.84,2019-09-16 07:22:00,948 5th St, Los Angeles,CA,90001 +253209,iPhone,1,700.0,2019-09-05 21:08:00,761 Willow St, San Francisco,CA,94016 +253210,Wired Headphones,1,11.99,2019-09-10 16:11:00,80 5th St, Seattle,WA,98101 +253211,Apple Airpods Headphones,1,150.0,2019-09-19 18:18:00,396 Chestnut St, Seattle,WA,98101 +253212,USB-C Charging Cable,1,11.95,2019-09-28 21:17:00,951 Lakeview St, Dallas,TX,75001 +253213,Lightning Charging Cable,1,14.95,2019-09-11 09:56:00,83 Center St, San Francisco,CA,94016 +253214,USB-C Charging Cable,1,11.95,2019-09-02 13:56:00,686 Chestnut St, New York City,NY,10001 +253215,Wired Headphones,1,11.99,2019-09-14 09:25:00,842 Park St, Boston,MA,02215 +253216,Apple Airpods Headphones,1,150.0,2019-09-02 13:04:00,864 Spruce St, San Francisco,CA,94016 +253217,20in Monitor,1,109.99,2019-09-24 20:52:00,812 Lake St, Los Angeles,CA,90001 +253218,Google Phone,1,600.0,2019-09-05 08:54:00,158 North St, Dallas,TX,75001 +253218,USB-C Charging Cable,1,11.95,2019-09-05 08:54:00,158 North St, Dallas,TX,75001 +253219,Lightning Charging Cable,1,14.95,2019-09-11 18:18:00,408 4th St, New York City,NY,10001 +253220,AA Batteries (4-pack),1,3.84,2019-09-16 09:36:00,17 Hickory St, San Francisco,CA,94016 +253221,27in FHD Monitor,1,149.99,2019-09-15 18:22:00,700 Walnut St, Atlanta,GA,30301 +253222,Lightning Charging Cable,1,14.95,2019-09-04 19:32:00,236 Lakeview St, Los Angeles,CA,90001 +253223,34in Ultrawide Monitor,1,379.99,2019-09-13 11:00:00,965 Jackson St, Portland,OR,97035 +253224,Lightning Charging Cable,1,14.95,2019-09-02 00:15:00,485 Johnson St, San Francisco,CA,94016 +253225,34in Ultrawide Monitor,1,379.99,2019-09-11 06:03:00,927 9th St, Dallas,TX,75001 +253226,USB-C Charging Cable,1,11.95,2019-09-26 10:38:00,645 Chestnut St, New York City,NY,10001 +253227,AA Batteries (4-pack),1,3.84,2019-09-12 15:06:00,323 Lake St, Los Angeles,CA,90001 +253228,Google Phone,1,600.0,2019-09-06 09:37:00,11 11th St, Atlanta,GA,30301 +253229,Lightning Charging Cable,2,14.95,2019-09-03 11:00:00,485 5th St, San Francisco,CA,94016 +253230,ThinkPad Laptop,1,999.99,2019-09-10 21:16:00,143 Madison St, San Francisco,CA,94016 +253231,34in Ultrawide Monitor,1,379.99,2019-09-04 17:19:00,294 Lakeview St, Atlanta,GA,30301 +253232,Lightning Charging Cable,1,14.95,2019-09-13 18:46:00,256 11th St, Los Angeles,CA,90001 +253233,AA Batteries (4-pack),1,3.84,2019-09-28 10:49:00,726 11th St, San Francisco,CA,94016 +253234,AAA Batteries (4-pack),2,2.99,2019-09-19 21:28:00,26 14th St, Seattle,WA,98101 +253235,Apple Airpods Headphones,1,150.0,2019-09-06 17:27:00,6 Chestnut St, Austin,TX,73301 +253236,Apple Airpods Headphones,1,150.0,2019-09-18 13:03:00,178 Lakeview St, San Francisco,CA,94016 +253237,Bose SoundSport Headphones,1,99.99,2019-09-20 13:02:00,496 Main St, San Francisco,CA,94016 +253238,20in Monitor,1,109.99,2019-09-05 08:32:00,962 Maple St, Atlanta,GA,30301 +253239,Bose SoundSport Headphones,1,99.99,2019-09-06 22:26:00,622 12th St, Los Angeles,CA,90001 +253240,AAA Batteries (4-pack),3,2.99,2019-09-16 00:54:00,839 Ridge St, New York City,NY,10001 +253241,USB-C Charging Cable,1,11.95,2019-09-13 08:59:00,750 Pine St, Boston,MA,02215 +253242,27in FHD Monitor,1,149.99,2019-09-29 09:29:00,295 Lake St, New York City,NY,10001 +253243,Lightning Charging Cable,1,14.95,2019-09-22 09:58:00,847 Maple St, San Francisco,CA,94016 +253244,Lightning Charging Cable,1,14.95,2019-09-30 11:05:00,677 Main St, Los Angeles,CA,90001 +253244,USB-C Charging Cable,1,11.95,2019-09-30 11:05:00,677 Main St, Los Angeles,CA,90001 +253245,Lightning Charging Cable,1,14.95,2019-09-17 15:48:00,884 Willow St, New York City,NY,10001 +253246,iPhone,1,700.0,2019-09-24 14:10:00,13 7th St, San Francisco,CA,94016 +253247,20in Monitor,1,109.99,2019-09-13 20:46:00,906 Church St, Atlanta,GA,30301 +253248,Wired Headphones,1,11.99,2019-09-26 13:36:00,142 Chestnut St, Boston,MA,02215 +253249,ThinkPad Laptop,1,999.99,2019-09-27 21:07:00,105 6th St, Seattle,WA,98101 +253250,Apple Airpods Headphones,1,150.0,2019-09-19 14:07:00,895 Spruce St, New York City,NY,10001 +253251,iPhone,1,700.0,2019-09-22 12:08:00,650 Highland St, San Francisco,CA,94016 +253252,Wired Headphones,1,11.99,2019-09-21 03:19:00,542 14th St, Los Angeles,CA,90001 +253253,AA Batteries (4-pack),1,3.84,2019-09-30 10:20:00,785 Willow St, San Francisco,CA,94016 +253254,27in FHD Monitor,1,149.99,2019-09-13 13:17:00,866 North St, San Francisco,CA,94016 +253255,Wired Headphones,1,11.99,2019-09-15 21:58:00,320 6th St, Portland,OR,97035 +253256,Bose SoundSport Headphones,1,99.99,2019-09-06 20:49:00,911 2nd St, New York City,NY,10001 +253257,Flatscreen TV,1,300.0,2019-09-04 00:32:00,489 1st St, Los Angeles,CA,90001 +253258,USB-C Charging Cable,1,11.95,2019-09-28 14:03:00,663 Walnut St, New York City,NY,10001 +253259,iPhone,1,700.0,2019-09-06 17:16:00,190 Dogwood St, San Francisco,CA,94016 +253260,USB-C Charging Cable,2,11.95,2019-09-05 10:02:00,177 2nd St, Los Angeles,CA,90001 +253261,Bose SoundSport Headphones,1,99.99,2019-09-19 08:46:00,6 Cedar St, Boston,MA,02215 +253262,27in FHD Monitor,1,149.99,2019-09-24 08:40:00,217 Lincoln St, San Francisco,CA,94016 +253263,Wired Headphones,1,11.99,2019-09-17 09:14:00,56 Adams St, San Francisco,CA,94016 +253264,Macbook Pro Laptop,1,1700.0,2019-09-19 18:55:00,554 Jackson St, New York City,NY,10001 +253265,Bose SoundSport Headphones,1,99.99,2019-09-22 14:24:00,997 14th St, Seattle,WA,98101 +253266,USB-C Charging Cable,1,11.95,2019-09-27 14:48:00,957 Cedar St, Boston,MA,02215 +253267,20in Monitor,1,109.99,2019-09-17 20:26:00,792 Meadow St, Los Angeles,CA,90001 +253268,AAA Batteries (4-pack),1,2.99,2019-09-01 23:45:00,333 Jackson St, Seattle,WA,98101 +253269,USB-C Charging Cable,1,11.95,2019-09-22 18:46:00,463 Lakeview St, Dallas,TX,75001 +253270,iPhone,1,700.0,2019-09-06 13:39:00,439 9th St, Atlanta,GA,30301 +253271,AAA Batteries (4-pack),1,2.99,2019-09-03 12:38:00,433 Lakeview St, New York City,NY,10001 +253272,USB-C Charging Cable,1,11.95,2019-09-03 00:00:00,340 Cherry St, New York City,NY,10001 +253273,Bose SoundSport Headphones,1,99.99,2019-09-25 09:32:00,388 7th St, Atlanta,GA,30301 +253274,Apple Airpods Headphones,1,150.0,2019-09-10 12:00:00,365 2nd St, Los Angeles,CA,90001 +253275,ThinkPad Laptop,1,999.99,2019-09-25 13:01:00,424 Hickory St, San Francisco,CA,94016 +253276,AA Batteries (4-pack),1,3.84,2019-09-24 18:30:00,683 4th St, Atlanta,GA,30301 +253277,AA Batteries (4-pack),3,3.84,2019-09-03 10:38:00,166 Lincoln St, Los Angeles,CA,90001 +253278,Apple Airpods Headphones,1,150.0,2019-09-22 12:37:00,391 Maple St, Dallas,TX,75001 +253279,Lightning Charging Cable,1,14.95,2019-09-18 18:34:00,780 10th St, Seattle,WA,98101 +253280,iPhone,1,700.0,2019-09-23 17:15:00,830 11th St, San Francisco,CA,94016 +253281,20in Monitor,1,109.99,2019-09-20 00:32:00,511 Jefferson St, Atlanta,GA,30301 +253282,Apple Airpods Headphones,1,150.0,2019-09-17 22:43:00,103 Maple St, Atlanta,GA,30301 +253283,iPhone,1,700.0,2019-09-24 19:16:00,57 Washington St, Dallas,TX,75001 +253284,Google Phone,1,600.0,2019-09-11 22:34:00,496 North St, Seattle,WA,98101 +253285,Apple Airpods Headphones,1,150.0,2019-09-06 19:45:00,776 4th St, Los Angeles,CA,90001 +253286,AA Batteries (4-pack),1,3.84,2019-09-27 11:07:00,488 12th St, Atlanta,GA,30301 +253287,Macbook Pro Laptop,1,1700.0,2019-09-30 19:14:00,16 South St, Atlanta,GA,30301 +253288,Wired Headphones,1,11.99,2019-09-27 14:12:00,330 Forest St, New York City,NY,10001 +253289,20in Monitor,1,109.99,2019-09-22 11:56:00,177 Jefferson St, Portland,OR,97035 +253290,Lightning Charging Cable,1,14.95,2019-09-17 21:54:00,719 Elm St, Dallas,TX,75001 +253291,Wired Headphones,1,11.99,2019-09-13 22:56:00,398 Lincoln St, Austin,TX,73301 +253292,Macbook Pro Laptop,1,1700.0,2019-09-03 10:41:00,622 11th St, San Francisco,CA,94016 +253293,Apple Airpods Headphones,1,150.0,2019-09-08 14:54:00,685 Pine St, Dallas,TX,75001 +253294,AAA Batteries (4-pack),1,2.99,2019-09-04 21:22:00,392 Highland St, New York City,NY,10001 +253295,Lightning Charging Cable,1,14.95,2019-09-25 10:33:00,682 Park St, Seattle,WA,98101 +253296,34in Ultrawide Monitor,1,379.99,2019-09-14 22:29:00,218 Spruce St, Los Angeles,CA,90001 +253297,AA Batteries (4-pack),1,3.84,2019-09-30 21:49:00,499 Lincoln St, Los Angeles,CA,90001 +253298,USB-C Charging Cable,1,11.95,2019-09-12 23:56:00,677 Madison St, New York City,NY,10001 +253299,iPhone,1,700.0,2019-09-09 11:02:00,556 Spruce St, San Francisco,CA,94016 +253300,34in Ultrawide Monitor,1,379.99,2019-09-16 19:25:00,409 Jackson St, Boston,MA,02215 +253301,USB-C Charging Cable,1,11.95,2019-09-28 20:05:00,952 5th St, Dallas,TX,75001 +253302,Wired Headphones,1,11.99,2019-09-27 10:11:00,629 10th St, New York City,NY,10001 +253303,AAA Batteries (4-pack),2,2.99,2019-09-23 18:25:00,542 Lake St, Austin,TX,73301 +253304,Bose SoundSport Headphones,1,99.99,2019-09-19 09:49:00,498 1st St, Austin,TX,73301 +253305,iPhone,1,700.0,2019-09-07 08:32:00,772 11th St, Los Angeles,CA,90001 +253306,Apple Airpods Headphones,1,150.0,2019-09-11 19:02:00,960 12th St, Boston,MA,02215 +253307,Apple Airpods Headphones,2,150.0,2019-09-19 18:35:00,191 Lincoln St, Seattle,WA,98101 +253308,ThinkPad Laptop,1,999.99,2019-09-18 11:10:00,705 9th St, Atlanta,GA,30301 +253309,AAA Batteries (4-pack),3,2.99,2019-09-13 18:55:00,556 Willow St, San Francisco,CA,94016 +253310,Bose SoundSport Headphones,1,99.99,2019-09-10 20:05:00,226 11th St, San Francisco,CA,94016 +253311,Apple Airpods Headphones,1,150.0,2019-09-12 20:52:00,895 9th St, Los Angeles,CA,90001 +253312,20in Monitor,1,109.99,2019-09-20 13:22:00,830 Lincoln St, Los Angeles,CA,90001 +253313,AA Batteries (4-pack),1,3.84,2019-09-23 10:59:00,173 North St, New York City,NY,10001 +253314,Apple Airpods Headphones,1,150.0,2019-09-15 21:21:00,11 Highland St, Los Angeles,CA,90001 +253315,Apple Airpods Headphones,1,150.0,2019-09-10 14:16:00,658 Hickory St, New York City,NY,10001 +253316,USB-C Charging Cable,1,11.95,2019-09-30 08:04:00,174 Ridge St, Atlanta,GA,30301 +253317,27in 4K Gaming Monitor,1,389.99,2019-09-20 13:05:00,314 Lincoln St, Atlanta,GA,30301 +253318,27in FHD Monitor,1,149.99,2019-09-10 21:03:00,712 8th St, San Francisco,CA,94016 +253319,Lightning Charging Cable,1,14.95,2019-09-02 22:20:00,675 Main St, Boston,MA,02215 +253320,Google Phone,1,600.0,2019-09-30 10:31:00,778 4th St, Dallas,TX,75001 +253320,USB-C Charging Cable,1,11.95,2019-09-30 10:31:00,778 4th St, Dallas,TX,75001 +253321,Lightning Charging Cable,3,14.95,2019-09-18 13:22:00,48 North St, San Francisco,CA,94016 +253322,Apple Airpods Headphones,1,150.0,2019-09-05 12:12:00,890 4th St, Austin,TX,73301 +253323,USB-C Charging Cable,1,11.95,2019-09-27 21:49:00,719 River St, Seattle,WA,98101 +253324,Vareebadd Phone,1,400.0,2019-09-13 11:49:00,601 11th St, San Francisco,CA,94016 +253325,Lightning Charging Cable,1,14.95,2019-09-30 10:06:00,499 South St, Dallas,TX,75001 +253326,Apple Airpods Headphones,1,150.0,2019-09-10 22:06:00,239 4th St, Seattle,WA,98101 +253327,AA Batteries (4-pack),1,3.84,2019-09-15 19:22:00,415 Spruce St, Los Angeles,CA,90001 +253328,Lightning Charging Cable,2,14.95,2019-09-03 11:43:00,209 Sunset St, San Francisco,CA,94016 +253329,AAA Batteries (4-pack),1,2.99,2019-09-28 08:53:00,641 6th St, Portland,ME,04101 +253330,AAA Batteries (4-pack),2,2.99,2019-09-22 18:11:00,797 Washington St, Portland,OR,97035 +253330,AA Batteries (4-pack),2,3.84,2019-09-22 18:11:00,797 Washington St, Portland,OR,97035 +253331,Google Phone,1,600.0,2019-09-02 13:16:00,92 Dogwood St, San Francisco,CA,94016 +253332,34in Ultrawide Monitor,1,379.99,2019-09-07 10:35:00,356 Maple St, Atlanta,GA,30301 +253333,Bose SoundSport Headphones,1,99.99,2019-09-29 10:43:00,286 Hickory St, New York City,NY,10001 +253334,Google Phone,1,600.0,2019-09-29 12:00:00,328 Dogwood St, Dallas,TX,75001 +253335,Vareebadd Phone,1,400.0,2019-09-25 12:06:00,725 Church St, Boston,MA,02215 +253336,AAA Batteries (4-pack),3,2.99,2019-09-03 13:18:00,747 Pine St, Austin,TX,73301 +253337,AAA Batteries (4-pack),1,2.99,2019-09-13 10:37:00,4 10th St, Los Angeles,CA,90001 +253338,20in Monitor,1,109.99,2019-09-14 16:56:00,600 Johnson St, Seattle,WA,98101 +253339,27in 4K Gaming Monitor,1,389.99,2019-09-13 22:13:00,80 Lakeview St, Boston,MA,02215 +253340,AAA Batteries (4-pack),2,2.99,2019-09-19 14:52:00,173 Ridge St, Atlanta,GA,30301 +253341,Wired Headphones,2,11.99,2019-09-21 11:27:00,916 12th St, Los Angeles,CA,90001 +253342,USB-C Charging Cable,2,11.95,2019-09-21 12:39:00,516 Center St, Los Angeles,CA,90001 +253343,AA Batteries (4-pack),1,3.84,2019-09-15 12:02:00,287 River St, Dallas,TX,75001 +253344,AA Batteries (4-pack),1,3.84,2019-09-05 18:41:00,215 Madison St, San Francisco,CA,94016 +253345,Lightning Charging Cable,1,14.95,2019-09-09 22:02:00,513 Pine St, Los Angeles,CA,90001 +253346,Bose SoundSport Headphones,1,99.99,2019-09-24 23:35:00,171 Park St, Los Angeles,CA,90001 +253347,Vareebadd Phone,1,400.0,2019-09-05 14:37:00,523 North St, Dallas,TX,75001 +253348,27in FHD Monitor,1,149.99,2019-09-02 19:37:00,415 Lincoln St, Dallas,TX,75001 +253349,Flatscreen TV,1,300.0,2019-09-03 21:58:00,845 Madison St, Boston,MA,02215 +253350,Wired Headphones,1,11.99,2019-09-21 15:05:00,865 Washington St, New York City,NY,10001 +253351,Macbook Pro Laptop,1,1700.0,2019-09-23 23:53:00,72 Maple St, Atlanta,GA,30301 +253352,Lightning Charging Cable,1,14.95,2019-09-14 13:34:00,904 Washington St, Atlanta,GA,30301 +253353,Vareebadd Phone,1,400.0,2019-09-08 13:45:00,92 Ridge St, Portland,OR,97035 +253354,Apple Airpods Headphones,1,150.0,2019-09-01 23:15:00,413 9th St, Los Angeles,CA,90001 +253355,AA Batteries (4-pack),2,3.84,2019-09-09 13:00:00,249 Spruce St, Austin,TX,73301 +253356,USB-C Charging Cable,1,11.95,2019-09-30 13:08:00,77 Church St, New York City,NY,10001 +253357,Apple Airpods Headphones,1,150.0,2019-09-10 10:10:00,358 Willow St, Seattle,WA,98101 +253358,Apple Airpods Headphones,1,150.0,2019-09-04 21:15:00,833 Hickory St, Atlanta,GA,30301 +253359,Lightning Charging Cable,1,14.95,2019-09-03 01:12:00,586 South St, Los Angeles,CA,90001 +253360,Lightning Charging Cable,1,14.95,2019-09-03 17:56:00,486 2nd St, San Francisco,CA,94016 +253361,ThinkPad Laptop,1,999.99,2019-09-11 12:35:00,321 Cedar St, Boston,MA,02215 +253362,USB-C Charging Cable,1,11.95,2019-09-01 19:34:00,310 9th St, Boston,MA,02215 +253363,Bose SoundSport Headphones,1,99.99,2019-09-14 09:52:00,732 Jackson St, Los Angeles,CA,90001 +253364,20in Monitor,1,109.99,2019-09-24 23:50:00,962 Cedar St, San Francisco,CA,94016 +253365,iPhone,1,700.0,2019-09-30 21:40:00,152 Highland St, Los Angeles,CA,90001 +253366,Google Phone,1,600.0,2019-09-19 09:39:00,191 Cedar St, Atlanta,GA,30301 +253366,Wired Headphones,1,11.99,2019-09-19 09:39:00,191 Cedar St, Atlanta,GA,30301 +253367,Vareebadd Phone,1,400.0,2019-09-17 23:25:00,284 Willow St, San Francisco,CA,94016 +253368,USB-C Charging Cable,1,11.95,2019-09-20 00:14:00,555 4th St, Atlanta,GA,30301 +253369,AAA Batteries (4-pack),1,2.99,2019-09-07 10:58:00,52 4th St, Portland,OR,97035 +253370,USB-C Charging Cable,1,11.95,2019-09-20 11:47:00,173 Cedar St, Boston,MA,02215 +253371,Lightning Charging Cable,2,14.95,2019-09-05 05:54:00,98 Lakeview St, New York City,NY,10001 +253372,Lightning Charging Cable,1,14.95,2019-09-20 10:06:00,230 Meadow St, Boston,MA,02215 +253373,USB-C Charging Cable,1,11.95,2019-09-15 20:03:00,541 Main St, San Francisco,CA,94016 +253374,Lightning Charging Cable,1,14.95,2019-09-23 19:07:00,105 Wilson St, San Francisco,CA,94016 +253375,Lightning Charging Cable,1,14.95,2019-09-14 13:23:00,365 West St, San Francisco,CA,94016 +253376,AA Batteries (4-pack),1,3.84,2019-09-16 18:41:00,930 Madison St, Los Angeles,CA,90001 +253377,AAA Batteries (4-pack),1,2.99,2019-09-07 18:00:00,261 Washington St, Seattle,WA,98101 +253378,Wired Headphones,1,11.99,2019-09-15 13:12:00,13 Hickory St, Boston,MA,02215 +253379,Wired Headphones,1,11.99,2019-09-30 11:39:00,494 Cedar St, Portland,OR,97035 +253380,USB-C Charging Cable,1,11.95,2019-09-17 18:31:00,643 Center St, Austin,TX,73301 +253381,Wired Headphones,1,11.99,2019-09-22 11:29:00,631 Spruce St, San Francisco,CA,94016 +253382,Flatscreen TV,1,300.0,2019-09-20 19:39:00,403 5th St, Los Angeles,CA,90001 +253383,27in 4K Gaming Monitor,1,389.99,2019-09-27 13:08:00,129 River St, New York City,NY,10001 +253384,AAA Batteries (4-pack),1,2.99,2019-09-28 08:21:00,64 Church St, New York City,NY,10001 +253385,AA Batteries (4-pack),1,3.84,2019-09-14 18:45:00,474 1st St, Boston,MA,02215 +253386,AAA Batteries (4-pack),1,2.99,2019-09-10 21:04:00,698 Dogwood St, San Francisco,CA,94016 +253387,AAA Batteries (4-pack),1,2.99,2019-09-03 10:47:00,595 Sunset St, Boston,MA,02215 +253388,AAA Batteries (4-pack),1,2.99,2019-09-14 18:12:00,131 Jackson St, Portland,ME,04101 +253389,Lightning Charging Cable,1,14.95,2019-09-11 18:20:00,334 North St, San Francisco,CA,94016 +253390,Apple Airpods Headphones,1,150.0,2019-09-19 19:07:00,425 West St, New York City,NY,10001 +253391,ThinkPad Laptop,1,999.99,2019-09-06 17:41:00,58 Lake St, Austin,TX,73301 +253392,ThinkPad Laptop,1,999.99,2019-09-09 09:43:00,433 Center St, Dallas,TX,75001 +253393,Macbook Pro Laptop,1,1700.0,2019-09-09 17:15:00,391 Meadow St, Los Angeles,CA,90001 +253394,Wired Headphones,1,11.99,2019-09-24 10:26:00,123 Lake St, New York City,NY,10001 +253395,AA Batteries (4-pack),1,3.84,2019-09-01 21:47:00,78 4th St, San Francisco,CA,94016 +253396,Bose SoundSport Headphones,1,99.99,2019-09-28 18:37:00,935 North St, Atlanta,GA,30301 +253397,Bose SoundSport Headphones,1,99.99,2019-09-30 20:39:00,642 Spruce St, Los Angeles,CA,90001 +253398,iPhone,1,700.0,2019-09-20 10:05:00,808 Maple St, Boston,MA,02215 +253399,Lightning Charging Cable,1,14.95,2019-09-09 10:41:00,535 Park St, Seattle,WA,98101 +253400,Vareebadd Phone,1,400.0,2019-09-05 20:22:00,466 Lake St, Boston,MA,02215 +253401,USB-C Charging Cable,1,11.95,2019-09-29 08:27:00,389 Spruce St, Seattle,WA,98101 +253402,27in 4K Gaming Monitor,1,389.99,2019-09-14 10:20:00,541 Willow St, Los Angeles,CA,90001 +253403,Wired Headphones,1,11.99,2019-09-12 21:33:00,113 10th St, Boston,MA,02215 +253404,Wired Headphones,1,11.99,2019-09-10 22:14:00,59 South St, Portland,OR,97035 +253405,Wired Headphones,1,11.99,2019-09-07 13:29:00,292 Center St, San Francisco,CA,94016 +253406,Bose SoundSport Headphones,1,99.99,2019-09-27 19:33:00,633 Cherry St, Boston,MA,02215 +253407,Lightning Charging Cable,1,14.95,2019-09-25 17:50:00,895 Sunset St, San Francisco,CA,94016 +253408,USB-C Charging Cable,1,11.95,2019-09-22 10:37:00,856 Center St, Atlanta,GA,30301 +253409,Lightning Charging Cable,1,14.95,2019-09-24 15:04:00,622 Walnut St, San Francisco,CA,94016 +253410,iPhone,1,700.0,2019-09-21 19:16:00,713 Hill St, San Francisco,CA,94016 +253411,Lightning Charging Cable,1,14.95,2019-09-02 21:48:00,515 6th St, Los Angeles,CA,90001 +253412,Apple Airpods Headphones,1,150.0,2019-09-10 15:53:00,814 13th St, San Francisco,CA,94016 +253413,Macbook Pro Laptop,1,1700.0,2019-09-09 14:47:00,814 Willow St, San Francisco,CA,94016 +253414,iPhone,1,700.0,2019-09-28 19:30:00,101 Johnson St, Dallas,TX,75001 +253414,Wired Headphones,1,11.99,2019-09-28 19:30:00,101 Johnson St, Dallas,TX,75001 +253415,iPhone,1,700.0,2019-09-19 16:05:00,833 Chestnut St, Los Angeles,CA,90001 +253415,Lightning Charging Cable,1,14.95,2019-09-19 16:05:00,833 Chestnut St, Los Angeles,CA,90001 +253416,Wired Headphones,1,11.99,2019-09-09 18:01:00,502 10th St, New York City,NY,10001 +253417,34in Ultrawide Monitor,1,379.99,2019-09-03 07:01:00,779 7th St, Seattle,WA,98101 +253418,Lightning Charging Cable,1,14.95,2019-09-05 16:48:00,256 Pine St, New York City,NY,10001 +253419,Google Phone,1,600.0,2019-09-25 05:32:00,886 River St, San Francisco,CA,94016 +253420,Bose SoundSport Headphones,2,99.99,2019-09-05 23:13:00,569 Center St, Austin,TX,73301 +253421,AA Batteries (4-pack),1,3.84,2019-09-24 15:52:00,508 Forest St, Austin,TX,73301 +253422,USB-C Charging Cable,1,11.95,2019-09-27 10:38:00,519 Hill St, San Francisco,CA,94016 +253423,Bose SoundSport Headphones,1,99.99,2019-09-06 19:27:00,712 Jackson St, Atlanta,GA,30301 +253424,AAA Batteries (4-pack),1,2.99,2019-09-15 00:47:00,13 Willow St, Los Angeles,CA,90001 +253425,Google Phone,1,600.0,2019-09-10 11:25:00,815 Maple St, Dallas,TX,75001 +253425,Wired Headphones,2,11.99,2019-09-10 11:25:00,815 Maple St, Dallas,TX,75001 +253426,USB-C Charging Cable,2,11.95,2019-09-08 17:22:00,193 Sunset St, Seattle,WA,98101 +253427,ThinkPad Laptop,1,999.99,2019-09-27 11:08:00,444 Pine St, Boston,MA,02215 +253428,Bose SoundSport Headphones,1,99.99,2019-09-12 21:01:00,695 Dogwood St, Atlanta,GA,30301 +253429,Wired Headphones,2,11.99,2019-09-17 15:32:00,97 Meadow St, Dallas,TX,75001 +253430,USB-C Charging Cable,1,11.95,2019-09-23 13:37:00,961 Lincoln St, New York City,NY,10001 +253431,AAA Batteries (4-pack),1,2.99,2019-09-29 15:06:00,146 Center St, New York City,NY,10001 +253432,Apple Airpods Headphones,1,150.0,2019-09-30 09:04:00,248 13th St, Boston,MA,02215 +253433,Lightning Charging Cable,1,14.95,2019-09-02 23:49:00,100 Cherry St, Los Angeles,CA,90001 +253434,34in Ultrawide Monitor,1,379.99,2019-09-30 15:13:00,597 Center St, Dallas,TX,75001 +253435,ThinkPad Laptop,1,999.99,2019-09-09 07:58:00,712 1st St, Los Angeles,CA,90001 +253436,Lightning Charging Cable,1,14.95,2019-09-21 11:11:00,348 Dogwood St, Atlanta,GA,30301 +253437,AA Batteries (4-pack),4,3.84,2019-09-25 17:43:00,572 Ridge St, Dallas,TX,75001 +253438,34in Ultrawide Monitor,1,379.99,2019-09-20 21:07:00,659 Wilson St, Seattle,WA,98101 +253439,27in 4K Gaming Monitor,1,389.99,2019-09-27 12:43:00,324 River St, Los Angeles,CA,90001 +253440,USB-C Charging Cable,1,11.95,2019-09-14 21:19:00,224 Main St, San Francisco,CA,94016 +253441,27in 4K Gaming Monitor,1,389.99,2019-09-30 19:13:00,696 Cherry St, Atlanta,GA,30301 +253441,Wired Headphones,1,11.99,2019-09-30 19:13:00,696 Cherry St, Atlanta,GA,30301 +253442,Google Phone,1,600.0,2019-09-05 08:17:00,472 North St, New York City,NY,10001 +253443,AAA Batteries (4-pack),2,2.99,2019-09-15 11:06:00,983 South St, Dallas,TX,75001 +253444,USB-C Charging Cable,1,11.95,2019-09-17 14:42:00,218 6th St, New York City,NY,10001 +253445,27in 4K Gaming Monitor,1,389.99,2019-09-21 19:08:00,608 West St, Portland,OR,97035 +253446,Wired Headphones,1,11.99,2019-09-28 03:45:00,511 Walnut St, Los Angeles,CA,90001 +253447,AAA Batteries (4-pack),1,2.99,2019-09-17 16:45:00,522 Forest St, Seattle,WA,98101 +253448,Wired Headphones,1,11.99,2019-09-18 14:01:00,923 Walnut St, Portland,OR,97035 +253449,Lightning Charging Cable,1,14.95,2019-09-03 23:28:00,714 Willow St, San Francisco,CA,94016 +253450,USB-C Charging Cable,2,11.95,2019-09-13 21:04:00,501 Chestnut St, New York City,NY,10001 +253451,AA Batteries (4-pack),3,3.84,2019-09-10 14:16:00,914 Madison St, Los Angeles,CA,90001 +253452,Apple Airpods Headphones,1,150.0,2019-09-09 16:56:00,37 Park St, New York City,NY,10001 +253453,Bose SoundSport Headphones,1,99.99,2019-09-01 10:48:00,562 Church St, Boston,MA,02215 +253454,Bose SoundSport Headphones,1,99.99,2019-09-24 21:14:00,346 12th St, San Francisco,CA,94016 +253455,Macbook Pro Laptop,1,1700.0,2019-09-03 09:35:00,807 Park St, Boston,MA,02215 +253456,AA Batteries (4-pack),1,3.84,2019-09-03 18:59:00,959 Hill St, San Francisco,CA,94016 +253457,27in 4K Gaming Monitor,1,389.99,2019-09-21 15:47:00,344 Church St, New York City,NY,10001 +253458,34in Ultrawide Monitor,1,379.99,2019-09-28 20:35:00,279 North St, San Francisco,CA,94016 +253459,Wired Headphones,1,11.99,2019-09-20 19:36:00,565 Hill St, Los Angeles,CA,90001 +253460,Macbook Pro Laptop,1,1700.0,2019-09-26 06:51:00,357 Park St, Atlanta,GA,30301 +253461,Lightning Charging Cable,1,14.95,2019-09-06 19:12:00,290 10th St, Los Angeles,CA,90001 +253462,Lightning Charging Cable,1,14.95,2019-09-11 01:28:00,372 6th St, Dallas,TX,75001 +253463,Macbook Pro Laptop,1,1700.0,2019-09-25 22:22:00,387 Lakeview St, San Francisco,CA,94016 +253464,iPhone,1,700.0,2019-09-14 11:48:00,820 South St, Boston,MA,02215 +253464,Lightning Charging Cable,1,14.95,2019-09-14 11:48:00,820 South St, Boston,MA,02215 +253465,Lightning Charging Cable,1,14.95,2019-09-06 08:52:00,771 Meadow St, Los Angeles,CA,90001 +253466,Bose SoundSport Headphones,1,99.99,2019-09-21 16:34:00,165 14th St, Boston,MA,02215 +253467,34in Ultrawide Monitor,1,379.99,2019-09-24 19:03:00,507 Chestnut St, Seattle,WA,98101 +253468,AA Batteries (4-pack),1,3.84,2019-09-21 20:15:00,877 Highland St, San Francisco,CA,94016 +253468,Lightning Charging Cable,1,14.95,2019-09-21 20:15:00,877 Highland St, San Francisco,CA,94016 +253469,27in 4K Gaming Monitor,1,389.99,2019-09-28 06:47:00,346 Adams St, San Francisco,CA,94016 +253470,AA Batteries (4-pack),2,3.84,2019-09-11 05:02:00,575 North St, Austin,TX,73301 +253471,Lightning Charging Cable,1,14.95,2019-09-10 06:03:00,844 5th St, Los Angeles,CA,90001 +253472,AA Batteries (4-pack),1,3.84,2019-09-24 01:15:00,21 Walnut St, Boston,MA,02215 +253473,AA Batteries (4-pack),1,3.84,2019-09-18 01:31:00,929 Wilson St, New York City,NY,10001 +253474,20in Monitor,1,109.99,2019-09-22 10:59:00,510 Center St, Los Angeles,CA,90001 +253475,AAA Batteries (4-pack),1,2.99,2019-09-26 13:36:00,37 Washington St, New York City,NY,10001 +253476,Bose SoundSport Headphones,1,99.99,2019-09-22 23:00:00,718 Hickory St, Austin,TX,73301 +253477,iPhone,1,700.0,2019-09-14 21:00:00,950 4th St, Dallas,TX,75001 +253477,Lightning Charging Cable,1,14.95,2019-09-14 21:00:00,950 4th St, Dallas,TX,75001 +253478,USB-C Charging Cable,1,11.95,2019-09-18 09:20:00,617 13th St, Seattle,WA,98101 +253479,Wired Headphones,1,11.99,2019-09-19 03:43:00,419 13th St, San Francisco,CA,94016 +253480,Lightning Charging Cable,2,14.95,2019-09-23 10:34:00,877 River St, San Francisco,CA,94016 +253481,27in FHD Monitor,1,149.99,2019-09-06 15:01:00,640 Ridge St, San Francisco,CA,94016 +253482,Apple Airpods Headphones,1,150.0,2019-09-24 07:54:00,888 Lincoln St, San Francisco,CA,94016 +253483,AA Batteries (4-pack),1,3.84,2019-09-18 11:09:00,229 Maple St, New York City,NY,10001 +253484,USB-C Charging Cable,1,11.95,2019-09-20 01:52:00,791 Madison St, San Francisco,CA,94016 +253485,Lightning Charging Cable,1,14.95,2019-09-19 19:26:00,586 Madison St, Seattle,WA,98101 +253486,USB-C Charging Cable,1,11.95,2019-09-01 17:52:00,282 River St, Seattle,WA,98101 +253487,20in Monitor,1,109.99,2019-09-20 22:03:00,85 12th St, New York City,NY,10001 +253488,USB-C Charging Cable,1,11.95,2019-09-24 01:12:00,252 Highland St, Dallas,TX,75001 +253489,Wired Headphones,1,11.99,2019-09-21 19:43:00,113 Ridge St, New York City,NY,10001 +253490,Apple Airpods Headphones,2,150.0,2019-09-11 05:08:00,305 4th St, Los Angeles,CA,90001 +253491,27in 4K Gaming Monitor,1,389.99,2019-09-20 21:03:00,334 Maple St, New York City,NY,10001 +253492,USB-C Charging Cable,1,11.95,2019-09-28 23:42:00,77 Elm St, Atlanta,GA,30301 +253493,AA Batteries (4-pack),1,3.84,2019-09-07 18:49:00,329 Maple St, San Francisco,CA,94016 +253494,AA Batteries (4-pack),1,3.84,2019-09-09 22:54:00,123 South St, Boston,MA,02215 +253495,Macbook Pro Laptop,1,1700.0,2019-09-27 16:25:00,440 8th St, Atlanta,GA,30301 +253496,Apple Airpods Headphones,1,150.0,2019-09-07 13:14:00,27 Church St, San Francisco,CA,94016 +253497,Flatscreen TV,1,300.0,2019-09-18 21:02:00,855 4th St, New York City,NY,10001 +253498,Wired Headphones,1,11.99,2019-09-14 20:43:00,163 Ridge St, New York City,NY,10001 +253499,USB-C Charging Cable,1,11.95,2019-09-20 15:45:00,494 Spruce St, San Francisco,CA,94016 +253500,Lightning Charging Cable,1,14.95,2019-09-06 16:12:00,778 Madison St, San Francisco,CA,94016 +253501,Apple Airpods Headphones,1,150.0,2019-09-13 21:00:00,638 Main St, Austin,TX,73301 +253502,USB-C Charging Cable,1,11.95,2019-09-17 11:17:00,562 Lincoln St, Los Angeles,CA,90001 +253503,Flatscreen TV,1,300.0,2019-09-27 07:04:00,437 Ridge St, Dallas,TX,75001 +253504,Flatscreen TV,1,300.0,2019-09-14 16:22:00,901 Sunset St, Dallas,TX,75001 +253505,Apple Airpods Headphones,1,150.0,2019-09-18 10:21:00,301 Chestnut St, Boston,MA,02215 +253506,Lightning Charging Cable,1,14.95,2019-09-13 16:48:00,301 Elm St, New York City,NY,10001 +253507,AA Batteries (4-pack),4,3.84,2019-09-12 18:28:00,712 Park St, Los Angeles,CA,90001 +253508,AAA Batteries (4-pack),3,2.99,2019-09-17 21:21:00,622 5th St, Los Angeles,CA,90001 +253509,Bose SoundSport Headphones,1,99.99,2019-09-10 18:41:00,146 Main St, Austin,TX,73301 +253510,Google Phone,1,600.0,2019-09-15 19:31:00,208 Hill St, New York City,NY,10001 +253511,USB-C Charging Cable,1,11.95,2019-09-10 22:48:00,892 1st St, Portland,OR,97035 +253512,iPhone,1,700.0,2019-09-07 20:35:00,470 Dogwood St, San Francisco,CA,94016 +253513,USB-C Charging Cable,1,11.95,2019-09-23 08:37:00,643 Cedar St, Los Angeles,CA,90001 +253514,iPhone,1,700.0,2019-09-03 09:04:00,882 Main St, San Francisco,CA,94016 +253514,AA Batteries (4-pack),2,3.84,2019-09-03 09:04:00,882 Main St, San Francisco,CA,94016 +253515,USB-C Charging Cable,1,11.95,2019-09-04 14:55:00,655 13th St, Atlanta,GA,30301 +253516,USB-C Charging Cable,1,11.95,2019-09-13 12:48:00,25 Wilson St, Atlanta,GA,30301 +253517,Bose SoundSport Headphones,1,99.99,2019-09-06 14:07:00,80 Jefferson St, Austin,TX,73301 +253518,AA Batteries (4-pack),1,3.84,2019-09-24 18:04:00,693 Elm St, Dallas,TX,75001 +253519,Wired Headphones,2,11.99,2019-09-22 09:19:00,599 6th St, San Francisco,CA,94016 +253520,Apple Airpods Headphones,1,150.0,2019-09-16 15:40:00,940 Hickory St, San Francisco,CA,94016 +253521,AA Batteries (4-pack),1,3.84,2019-09-26 10:03:00,135 2nd St, San Francisco,CA,94016 +253522,Apple Airpods Headphones,1,150.0,2019-09-19 00:20:00,339 Lincoln St, Boston,MA,02215 +253523,USB-C Charging Cable,1,11.95,2019-09-01 17:51:00,690 Hickory St, San Francisco,CA,94016 +253524,USB-C Charging Cable,1,11.95,2019-09-17 17:15:00,781 Church St, Los Angeles,CA,90001 +253525,AAA Batteries (4-pack),2,2.99,2019-09-15 16:37:00,81 Main St, Seattle,WA,98101 +253526,34in Ultrawide Monitor,1,379.99,2019-09-12 11:46:00,248 Cherry St, Los Angeles,CA,90001 +253527,Google Phone,1,600.0,2019-09-08 23:12:00,542 Park St, Seattle,WA,98101 +253527,Bose SoundSport Headphones,1,99.99,2019-09-08 23:12:00,542 Park St, Seattle,WA,98101 +253528,Bose SoundSport Headphones,1,99.99,2019-09-24 17:31:00,145 Center St, New York City,NY,10001 +253529,Lightning Charging Cable,1,14.95,2019-09-29 20:27:00,742 Park St, Atlanta,GA,30301 +253530,Bose SoundSport Headphones,1,99.99,2019-09-27 15:04:00,411 Cherry St, Los Angeles,CA,90001 +253531,27in FHD Monitor,1,149.99,2019-09-10 17:51:00,773 Elm St, San Francisco,CA,94016 +253532,Wired Headphones,1,11.99,2019-09-08 21:27:00,390 Lake St, Atlanta,GA,30301 +253533,20in Monitor,1,109.99,2019-09-15 22:17:00,627 Chestnut St, New York City,NY,10001 +253534,Bose SoundSport Headphones,1,99.99,2019-09-10 11:33:00,449 Spruce St, San Francisco,CA,94016 +253535,Google Phone,1,600.0,2019-09-21 18:51:00,696 Lakeview St, San Francisco,CA,94016 +253536,USB-C Charging Cable,1,11.95,2019-09-08 07:32:00,655 2nd St, New York City,NY,10001 +253537,AAA Batteries (4-pack),3,2.99,2019-09-14 21:50:00,334 Cedar St, Atlanta,GA,30301 +253538,34in Ultrawide Monitor,1,379.99,2019-09-25 12:40:00,566 Johnson St, Los Angeles,CA,90001 +253539,iPhone,1,700.0,2019-09-06 18:22:00,22 Chestnut St, New York City,NY,10001 +253540,Wired Headphones,1,11.99,2019-09-20 07:16:00,748 Washington St, San Francisco,CA,94016 +253541,Apple Airpods Headphones,1,150.0,2019-09-14 05:46:00,254 13th St, San Francisco,CA,94016 +253542,Flatscreen TV,1,300.0,2019-09-27 19:08:00,907 Lincoln St, San Francisco,CA,94016 +253543,34in Ultrawide Monitor,1,379.99,2019-09-01 09:07:00,299 Lakeview St, Dallas,TX,75001 +253544,Apple Airpods Headphones,1,150.0,2019-09-14 11:11:00,799 Forest St, Los Angeles,CA,90001 +253545,Apple Airpods Headphones,1,150.0,2019-09-15 15:59:00,622 Forest St, Boston,MA,02215 +253546,AA Batteries (4-pack),2,3.84,2019-09-02 12:28:00,683 Church St, San Francisco,CA,94016 +253547,Wired Headphones,1,11.99,2019-09-25 08:26:00,466 Center St, Los Angeles,CA,90001 +253548,AA Batteries (4-pack),1,3.84,2019-09-12 09:41:00,52 2nd St, Atlanta,GA,30301 +253549,20in Monitor,1,109.99,2019-09-27 20:18:00,726 Lakeview St, Los Angeles,CA,90001 +253550,iPhone,1,700.0,2019-09-19 22:09:00,244 Main St, New York City,NY,10001 +253550,Lightning Charging Cable,1,14.95,2019-09-19 22:09:00,244 Main St, New York City,NY,10001 +253551,Lightning Charging Cable,1,14.95,2019-09-09 15:09:00,250 Center St, San Francisco,CA,94016 +253552,34in Ultrawide Monitor,1,379.99,2019-09-23 19:11:00,581 2nd St, Atlanta,GA,30301 +253553,20in Monitor,1,109.99,2019-09-09 13:43:00,316 Hickory St, Los Angeles,CA,90001 +253554,AA Batteries (4-pack),1,3.84,2019-09-05 16:43:00,646 North St, Dallas,TX,75001 +253555,AAA Batteries (4-pack),1,2.99,2019-09-12 09:24:00,781 11th St, San Francisco,CA,94016 +253556,AA Batteries (4-pack),3,3.84,2019-09-27 14:26:00,624 Hickory St, Atlanta,GA,30301 +253557,Google Phone,1,600.0,2019-09-03 20:49:00,296 Adams St, Boston,MA,02215 +253557,USB-C Charging Cable,1,11.95,2019-09-03 20:49:00,296 Adams St, Boston,MA,02215 +253558,AAA Batteries (4-pack),1,2.99,2019-09-16 09:23:00,490 Elm St, San Francisco,CA,94016 +253559,Lightning Charging Cable,1,14.95,2019-09-21 15:35:00,219 2nd St, Boston,MA,02215 +253560,Google Phone,1,600.0,2019-09-29 09:01:00,19 Chestnut St, San Francisco,CA,94016 +253561,ThinkPad Laptop,1,999.99,2019-09-15 21:52:00,596 Chestnut St, Boston,MA,02215 +253562,USB-C Charging Cable,1,11.95,2019-09-19 22:50:00,911 1st St, Boston,MA,02215 +253563,Wired Headphones,2,11.99,2019-09-30 13:01:00,937 North St, San Francisco,CA,94016 +253564,AAA Batteries (4-pack),1,2.99,2019-09-23 16:04:00,669 Center St, Seattle,WA,98101 +253565,AAA Batteries (4-pack),1,2.99,2019-09-13 18:11:00,559 9th St, Los Angeles,CA,90001 +253566,Lightning Charging Cable,1,14.95,2019-09-28 16:51:00,167 Walnut St, Seattle,WA,98101 +253567,Lightning Charging Cable,1,14.95,2019-09-27 23:21:00,768 14th St, San Francisco,CA,94016 +253568,ThinkPad Laptop,1,999.99,2019-09-08 10:43:00,358 Walnut St, New York City,NY,10001 +253569,USB-C Charging Cable,1,11.95,2019-09-17 17:52:00,916 Cedar St, Atlanta,GA,30301 +253570,AAA Batteries (4-pack),1,2.99,2019-09-10 19:23:00,371 Walnut St, Dallas,TX,75001 +253571,Apple Airpods Headphones,1,150.0,2019-09-11 00:14:00,242 Lake St, Los Angeles,CA,90001 +253572,Lightning Charging Cable,1,14.95,2019-09-01 19:39:00,646 1st St, Los Angeles,CA,90001 +253573,USB-C Charging Cable,1,11.95,2019-09-10 16:10:00,442 14th St, Austin,TX,73301 +253574,27in FHD Monitor,1,149.99,2019-09-24 14:26:00,217 Highland St, Boston,MA,02215 +253575,27in 4K Gaming Monitor,1,389.99,2019-09-03 20:37:00,525 River St, New York City,NY,10001 +253576,USB-C Charging Cable,1,11.95,2019-09-17 19:09:00,743 Madison St, Los Angeles,CA,90001 +253577,Apple Airpods Headphones,1,150.0,2019-09-19 14:36:00,81 South St, New York City,NY,10001 +253578,Apple Airpods Headphones,1,150.0,2019-09-22 23:58:00,652 Sunset St, Los Angeles,CA,90001 +253579,AA Batteries (4-pack),2,3.84,2019-09-13 08:57:00,504 13th St, New York City,NY,10001 +253580,Bose SoundSport Headphones,1,99.99,2019-09-06 10:25:00,915 Hickory St, San Francisco,CA,94016 +253581,AA Batteries (4-pack),2,3.84,2019-09-11 10:10:00,446 4th St, Austin,TX,73301 +253582,AA Batteries (4-pack),1,3.84,2019-09-15 18:55:00,128 Jackson St, Austin,TX,73301 +253583,Apple Airpods Headphones,1,150.0,2019-09-08 20:11:00,424 West St, Los Angeles,CA,90001 +253584,AA Batteries (4-pack),1,3.84,2019-09-20 23:30:00,51 1st St, San Francisco,CA,94016 +253585,Lightning Charging Cable,1,14.95,2019-09-27 10:56:00,457 Jackson St, Dallas,TX,75001 +253586,Lightning Charging Cable,1,14.95,2019-09-11 23:56:00,102 West St, Portland,OR,97035 +253587,Wired Headphones,1,11.99,2019-09-16 19:22:00,795 4th St, Los Angeles,CA,90001 +253588,AAA Batteries (4-pack),1,2.99,2019-09-18 06:37:00,130 Meadow St, Boston,MA,02215 +253589,Lightning Charging Cable,1,14.95,2019-09-15 07:42:00,874 Willow St, Dallas,TX,75001 +253590,AA Batteries (4-pack),2,3.84,2019-09-26 16:48:00,513 Pine St, Atlanta,GA,30301 +253590,USB-C Charging Cable,1,11.95,2019-09-26 16:48:00,513 Pine St, Atlanta,GA,30301 +253591,27in 4K Gaming Monitor,1,389.99,2019-09-06 22:41:00,790 Sunset St, San Francisco,CA,94016 +253592,AAA Batteries (4-pack),4,2.99,2019-09-30 17:09:00,296 Walnut St, Portland,OR,97035 +253593,Bose SoundSport Headphones,1,99.99,2019-09-09 14:55:00,669 Maple St, Atlanta,GA,30301 +253594,USB-C Charging Cable,1,11.95,2019-09-19 09:46:00,330 Wilson St, San Francisco,CA,94016 +253595,Lightning Charging Cable,1,14.95,2019-09-28 22:41:00,78 Lincoln St, San Francisco,CA,94016 +253596,Apple Airpods Headphones,1,150.0,2019-09-06 13:00:00,118 Park St, Seattle,WA,98101 +253597,Vareebadd Phone,1,400.0,2019-09-23 20:06:00,115 Maple St, San Francisco,CA,94016 +253598,Lightning Charging Cable,1,14.95,2019-09-03 15:39:00,194 9th St, Boston,MA,02215 +253599,20in Monitor,1,109.99,2019-09-03 15:45:00,55 Madison St, Portland,OR,97035 +253600,AA Batteries (4-pack),1,3.84,2019-09-25 11:24:00,483 9th St, San Francisco,CA,94016 +253601,Bose SoundSport Headphones,1,99.99,2019-09-18 18:02:00,512 12th St, Los Angeles,CA,90001 +253602,Wired Headphones,1,11.99,2019-09-11 17:47:00,813 7th St, Dallas,TX,75001 +253603,Vareebadd Phone,1,400.0,2019-09-12 07:22:00,396 6th St, San Francisco,CA,94016 +253603,USB-C Charging Cable,2,11.95,2019-09-12 07:22:00,396 6th St, San Francisco,CA,94016 +253603,Wired Headphones,1,11.99,2019-09-12 07:22:00,396 6th St, San Francisco,CA,94016 +253604,Lightning Charging Cable,1,14.95,2019-09-30 03:43:00,590 Main St, Seattle,WA,98101 +253605,AA Batteries (4-pack),1,3.84,2019-09-30 18:27:00,902 13th St, San Francisco,CA,94016 +253606,USB-C Charging Cable,1,11.95,2019-09-14 21:32:00,775 12th St, Seattle,WA,98101 +253607,Flatscreen TV,1,300.0,2019-09-20 20:30:00,587 Lincoln St, Seattle,WA,98101 +253608,20in Monitor,1,109.99,2019-09-21 16:40:00,81 North St, Atlanta,GA,30301 +253609,AAA Batteries (4-pack),1,2.99,2019-09-14 18:50:00,966 Hill St, Dallas,TX,75001 +253610,Lightning Charging Cable,1,14.95,2019-09-19 20:59:00,956 7th St, San Francisco,CA,94016 +253611,AAA Batteries (4-pack),1,2.99,2019-09-09 09:26:00,776 14th St, Atlanta,GA,30301 +253612,USB-C Charging Cable,1,11.95,2019-09-14 09:14:00,628 4th St, Dallas,TX,75001 +253613,Lightning Charging Cable,1,14.95,2019-09-21 17:58:00,272 Forest St, Atlanta,GA,30301 +253614,20in Monitor,1,109.99,2019-09-27 08:16:00,513 12th St, Seattle,WA,98101 +253615,Bose SoundSport Headphones,1,99.99,2019-09-13 22:03:00,108 Lake St, New York City,NY,10001 +253616,27in FHD Monitor,1,149.99,2019-09-18 18:31:00,349 West St, Boston,MA,02215 +253617,27in 4K Gaming Monitor,1,389.99,2019-09-14 16:42:00,150 6th St, Seattle,WA,98101 +253618,AA Batteries (4-pack),2,3.84,2019-09-21 08:45:00,169 Ridge St, Atlanta,GA,30301 +253619,27in 4K Gaming Monitor,1,389.99,2019-09-18 16:17:00,70 Forest St, San Francisco,CA,94016 +253620,USB-C Charging Cable,1,11.95,2019-09-29 18:57:00,887 Meadow St, Austin,TX,73301 +253621,Wired Headphones,1,11.99,2019-09-04 06:52:00,885 14th St, Los Angeles,CA,90001 +253622,Lightning Charging Cable,1,14.95,2019-09-01 13:10:00,248 Church St, Los Angeles,CA,90001 +253623,27in 4K Gaming Monitor,1,389.99,2019-09-25 14:52:00,507 Willow St, Seattle,WA,98101 +253624,Wired Headphones,1,11.99,2019-09-16 19:57:00,556 7th St, San Francisco,CA,94016 +253625,Wired Headphones,1,11.99,2019-09-11 01:38:00,935 Spruce St, San Francisco,CA,94016 +253626,20in Monitor,1,109.99,2019-09-05 21:34:00,755 13th St, San Francisco,CA,94016 +253627,USB-C Charging Cable,1,11.95,2019-09-30 20:07:00,414 Washington St, Dallas,TX,75001 +253628,Apple Airpods Headphones,1,150.0,2019-09-20 09:59:00,52 Pine St, San Francisco,CA,94016 +253629,Bose SoundSport Headphones,1,99.99,2019-09-07 11:03:00,377 8th St, Atlanta,GA,30301 +253630,AA Batteries (4-pack),1,3.84,2019-09-13 14:52:00,566 Hill St, Boston,MA,02215 +253631,Wired Headphones,1,11.99,2019-09-30 03:59:00,378 7th St, San Francisco,CA,94016 +253632,27in 4K Gaming Monitor,1,389.99,2019-09-13 23:05:00,895 Walnut St, San Francisco,CA,94016 +253633,Lightning Charging Cable,1,14.95,2019-09-29 18:09:00,768 Spruce St, New York City,NY,10001 +253634,Lightning Charging Cable,1,14.95,2019-09-14 15:34:00,999 Dogwood St, Los Angeles,CA,90001 +253635,USB-C Charging Cable,1,11.95,2019-09-25 08:58:00,293 6th St, San Francisco,CA,94016 +253636,Wired Headphones,1,11.99,2019-09-19 08:14:00,203 Sunset St, San Francisco,CA,94016 +253637,Lightning Charging Cable,1,14.95,2019-09-03 16:47:00,367 Dogwood St, San Francisco,CA,94016 +253638,USB-C Charging Cable,1,11.95,2019-09-11 19:58:00,711 Forest St, San Francisco,CA,94016 +253639,Apple Airpods Headphones,1,150.0,2019-09-13 19:35:00,56 5th St, San Francisco,CA,94016 +253640,Wired Headphones,1,11.99,2019-09-17 20:11:00,373 Madison St, San Francisco,CA,94016 +253641,iPhone,1,700.0,2019-09-16 23:06:00,649 13th St, Boston,MA,02215 +253641,Lightning Charging Cable,1,14.95,2019-09-16 23:06:00,649 13th St, Boston,MA,02215 +253642,Wired Headphones,1,11.99,2019-09-26 20:56:00,362 Chestnut St, New York City,NY,10001 +253643,Apple Airpods Headphones,1,150.0,2019-09-28 23:36:00,272 11th St, New York City,NY,10001 +253643,Wired Headphones,1,11.99,2019-09-28 23:36:00,272 11th St, New York City,NY,10001 +253644,Wired Headphones,1,11.99,2019-09-20 12:55:00,499 Hill St, Austin,TX,73301 +253645,Bose SoundSport Headphones,1,99.99,2019-09-19 09:05:00,782 Center St, Seattle,WA,98101 +253646,Apple Airpods Headphones,1,150.0,2019-09-28 09:44:00,5 Cedar St, San Francisco,CA,94016 +253647,AA Batteries (4-pack),2,3.84,2019-09-01 18:23:00,646 Chestnut St, Dallas,TX,75001 +253648,Bose SoundSport Headphones,1,99.99,2019-09-22 21:55:00,130 2nd St, Atlanta,GA,30301 +253649,USB-C Charging Cable,1,11.95,2019-09-22 11:58:00,338 Washington St, Dallas,TX,75001 +253650,27in FHD Monitor,1,149.99,2019-09-21 18:59:00,611 Wilson St, San Francisco,CA,94016 +253651,USB-C Charging Cable,1,11.95,2019-09-19 14:46:00,362 Pine St, San Francisco,CA,94016 +253652,Apple Airpods Headphones,1,150.0,2019-09-10 11:24:00,219 Chestnut St, Los Angeles,CA,90001 +253653,AAA Batteries (4-pack),2,2.99,2019-09-21 23:33:00,781 Lincoln St, Atlanta,GA,30301 +253654,Apple Airpods Headphones,1,150.0,2019-09-22 13:17:00,240 West St, Los Angeles,CA,90001 +253655,USB-C Charging Cable,1,11.95,2019-09-06 02:15:00,107 Washington St, San Francisco,CA,94016 +253656,AAA Batteries (4-pack),1,2.99,2019-09-09 19:52:00,615 Spruce St, San Francisco,CA,94016 +253657,AAA Batteries (4-pack),3,2.99,2019-09-10 19:22:00,554 Washington St, New York City,NY,10001 +253657,27in 4K Gaming Monitor,1,389.99,2019-09-10 19:22:00,554 Washington St, New York City,NY,10001 +253658,USB-C Charging Cable,1,11.95,2019-09-02 18:25:00,85 Wilson St, Atlanta,GA,30301 +253659,AAA Batteries (4-pack),1,2.99,2019-09-14 18:01:00,9 Lakeview St, San Francisco,CA,94016 +253660,Wired Headphones,1,11.99,2019-09-06 20:24:00,301 7th St, Los Angeles,CA,90001 +253661,AAA Batteries (4-pack),3,2.99,2019-09-02 03:24:00,470 Jackson St, Seattle,WA,98101 +253662,Wired Headphones,2,11.99,2019-09-08 22:03:00,554 6th St, Dallas,TX,75001 +253662,Apple Airpods Headphones,1,150.0,2019-09-08 22:03:00,554 6th St, Dallas,TX,75001 +253663,AA Batteries (4-pack),1,3.84,2019-09-27 10:27:00,108 Jefferson St, Atlanta,GA,30301 +253664,Macbook Pro Laptop,1,1700.0,2019-09-28 13:10:00,305 South St, Boston,MA,02215 +253665,20in Monitor,1,109.99,2019-09-15 15:14:00,510 Wilson St, San Francisco,CA,94016 +253666,AAA Batteries (4-pack),1,2.99,2019-09-11 05:27:00,724 North St, San Francisco,CA,94016 +253667,Wired Headphones,1,11.99,2019-09-02 19:00:00,282 Johnson St, Atlanta,GA,30301 +253668,Lightning Charging Cable,1,14.95,2019-09-07 05:37:00,940 13th St, Dallas,TX,75001 +253669,27in FHD Monitor,1,149.99,2019-09-10 12:30:00,67 6th St, Portland,OR,97035 +253670,AA Batteries (4-pack),1,3.84,2019-09-02 12:03:00,112 Dogwood St, Boston,MA,02215 +253671,34in Ultrawide Monitor,1,379.99,2019-09-01 18:55:00,274 Elm St, San Francisco,CA,94016 +253672,Lightning Charging Cable,1,14.95,2019-09-18 22:02:00,688 6th St, San Francisco,CA,94016 +253673,AA Batteries (4-pack),1,3.84,2019-09-11 14:40:00,818 13th St, Los Angeles,CA,90001 +253674,Bose SoundSport Headphones,1,99.99,2019-09-07 14:18:00,671 Spruce St, New York City,NY,10001 +253675,Lightning Charging Cable,1,14.95,2019-09-08 20:58:00,390 Jackson St, Boston,MA,02215 +253676,AAA Batteries (4-pack),1,2.99,2019-09-23 12:20:00,295 Meadow St, Boston,MA,02215 +253677,USB-C Charging Cable,1,11.95,2019-09-15 23:28:00,283 5th St, Dallas,TX,75001 +253678,Wired Headphones,1,11.99,2019-09-10 19:40:00,352 Jackson St, Dallas,TX,75001 +253679,Wired Headphones,1,11.99,2019-09-26 12:23:00,681 2nd St, Portland,ME,04101 +253680,Lightning Charging Cable,2,14.95,2019-09-04 04:32:00,920 Ridge St, Seattle,WA,98101 +253681,AAA Batteries (4-pack),1,2.99,2019-09-13 12:20:00,261 1st St, Dallas,TX,75001 +253682,34in Ultrawide Monitor,1,379.99,2019-09-27 10:11:00,963 Main St, San Francisco,CA,94016 +253683,Flatscreen TV,1,300.0,2019-09-14 08:40:00,241 Highland St, San Francisco,CA,94016 +253684,AAA Batteries (4-pack),3,2.99,2019-09-10 08:48:00,544 Center St, San Francisco,CA,94016 +253685,Lightning Charging Cable,1,14.95,2019-09-17 06:35:00,285 7th St, Seattle,WA,98101 +253686,USB-C Charging Cable,2,11.95,2019-09-12 19:46:00,441 9th St, Los Angeles,CA,90001 +253687,34in Ultrawide Monitor,1,379.99,2019-09-30 10:08:00,229 Main St, Boston,MA,02215 +253688,Lightning Charging Cable,1,14.95,2019-09-29 01:02:00,604 Spruce St, San Francisco,CA,94016 +253689,ThinkPad Laptop,1,999.99,2019-09-17 20:13:00,641 Hickory St, San Francisco,CA,94016 +253690,Wired Headphones,2,11.99,2019-09-24 18:02:00,474 6th St, Seattle,WA,98101 +253691,AAA Batteries (4-pack),1,2.99,2019-09-03 09:05:00,531 Main St, Portland,OR,97035 +253692,AAA Batteries (4-pack),1,2.99,2019-09-02 18:12:00,146 Forest St, Atlanta,GA,30301 +253693,34in Ultrawide Monitor,1,379.99,2019-09-21 17:50:00,293 South St, Los Angeles,CA,90001 +253694,Bose SoundSport Headphones,1,99.99,2019-09-19 19:49:00,254 Lincoln St, Austin,TX,73301 +253695,Lightning Charging Cable,1,14.95,2019-09-22 20:49:00,97 Chestnut St, Seattle,WA,98101 +253696,Wired Headphones,2,11.99,2019-09-13 17:21:00,326 Jefferson St, Austin,TX,73301 +253697,Macbook Pro Laptop,1,1700.0,2019-09-05 02:05:00,563 1st St, Boston,MA,02215 +253698,AA Batteries (4-pack),1,3.84,2019-09-29 15:58:00,127 Adams St, Los Angeles,CA,90001 +253699,AA Batteries (4-pack),1,3.84,2019-09-09 19:19:00,293 Church St, New York City,NY,10001 +253700,Lightning Charging Cable,1,14.95,2019-09-03 03:13:00,391 Maple St, New York City,NY,10001 +253701,Wired Headphones,1,11.99,2019-09-24 15:50:00,204 8th St, Los Angeles,CA,90001 +253702,Lightning Charging Cable,1,14.95,2019-09-30 17:42:00,712 Wilson St, Los Angeles,CA,90001 +253703,Lightning Charging Cable,1,14.95,2019-09-08 21:11:00,192 Cherry St, San Francisco,CA,94016 +253704,Lightning Charging Cable,1,14.95,2019-09-18 12:14:00,347 Park St, New York City,NY,10001 +253705,27in FHD Monitor,1,149.99,2019-09-07 08:28:00,178 Church St, San Francisco,CA,94016 +253706,AA Batteries (4-pack),1,3.84,2019-09-26 20:30:00,651 Highland St, Dallas,TX,75001 +253707,AAA Batteries (4-pack),1,2.99,2019-09-26 14:59:00,515 Highland St, Dallas,TX,75001 +253708,Vareebadd Phone,1,400.0,2019-09-30 10:27:00,665 North St, Los Angeles,CA,90001 +253708,USB-C Charging Cable,1,11.95,2019-09-30 10:27:00,665 North St, Los Angeles,CA,90001 +253709,20in Monitor,1,109.99,2019-09-27 16:30:00,968 5th St, San Francisco,CA,94016 +253710,AA Batteries (4-pack),2,3.84,2019-09-18 13:28:00,936 14th St, New York City,NY,10001 +253711,Lightning Charging Cable,1,14.95,2019-09-04 13:02:00,233 Washington St, Boston,MA,02215 +253712,Apple Airpods Headphones,1,150.0,2019-09-22 17:07:00,239 West St, San Francisco,CA,94016 +253713,Wired Headphones,1,11.99,2019-09-21 14:35:00,48 North St, San Francisco,CA,94016 +253714,34in Ultrawide Monitor,1,379.99,2019-09-18 12:23:00,929 Jackson St, Portland,OR,97035 +253715,Wired Headphones,2,11.99,2019-09-09 14:39:00,283 12th St, Seattle,WA,98101 +253716,Lightning Charging Cable,1,14.95,2019-09-23 17:06:00,156 Jackson St, New York City,NY,10001 +253717,AAA Batteries (4-pack),1,2.99,2019-09-18 11:47:00,224 Cherry St, Los Angeles,CA,90001 +253718,Macbook Pro Laptop,1,1700.0,2019-09-01 19:10:00,375 12th St, New York City,NY,10001 +253719,Google Phone,1,600.0,2019-09-21 09:10:00,101 Walnut St, Austin,TX,73301 +253719,USB-C Charging Cable,1,11.95,2019-09-21 09:10:00,101 Walnut St, Austin,TX,73301 +253720,AAA Batteries (4-pack),3,2.99,2019-09-24 13:04:00,630 14th St, Atlanta,GA,30301 +253721,Google Phone,1,600.0,2019-09-03 12:06:00,476 Chestnut St, San Francisco,CA,94016 +253721,USB-C Charging Cable,1,11.95,2019-09-03 12:06:00,476 Chestnut St, San Francisco,CA,94016 +253722,Wired Headphones,1,11.99,2019-09-05 17:00:00,499 Washington St, Seattle,WA,98101 +253723,Bose SoundSport Headphones,1,99.99,2019-09-14 22:41:00,19 Ridge St, Los Angeles,CA,90001 +253724,Apple Airpods Headphones,1,150.0,2019-09-19 17:44:00,12 Center St, Los Angeles,CA,90001 +253725,AA Batteries (4-pack),1,3.84,2019-09-23 10:07:00,882 Chestnut St, San Francisco,CA,94016 +253726,USB-C Charging Cable,1,11.95,2019-09-24 18:17:00,262 11th St, Los Angeles,CA,90001 +253727,Apple Airpods Headphones,1,150.0,2019-09-11 11:07:00,937 Dogwood St, San Francisco,CA,94016 +253728,AAA Batteries (4-pack),1,2.99,2019-09-27 06:33:00,475 Highland St, San Francisco,CA,94016 +253729,AA Batteries (4-pack),1,3.84,2019-09-17 08:27:00,719 1st St, San Francisco,CA,94016 +253730,Wired Headphones,1,11.99,2019-09-18 19:04:00,634 Cherry St, Los Angeles,CA,90001 +253731,iPhone,1,700.0,2019-09-11 18:44:00,94 Cedar St, San Francisco,CA,94016 +253732,Lightning Charging Cable,1,14.95,2019-09-19 17:38:00,971 12th St, Boston,MA,02215 +253733,Flatscreen TV,1,300.0,2019-09-07 23:39:00,293 5th St, Atlanta,GA,30301 +253734,Apple Airpods Headphones,1,150.0,2019-09-24 21:12:00,425 Chestnut St, San Francisco,CA,94016 +253735,AA Batteries (4-pack),1,3.84,2019-09-28 13:48:00,55 Forest St, Dallas,TX,75001 +253736,AA Batteries (4-pack),2,3.84,2019-09-18 10:06:00,466 Pine St, Boston,MA,02215 +253737,Macbook Pro Laptop,1,1700.0,2019-09-11 14:12:00,42 11th St, Los Angeles,CA,90001 +253738,Wired Headphones,1,11.99,2019-09-23 22:38:00,660 Elm St, Seattle,WA,98101 +253739,AA Batteries (4-pack),2,3.84,2019-09-16 11:55:00,144 Sunset St, San Francisco,CA,94016 +253740,27in 4K Gaming Monitor,1,389.99,2019-09-04 06:08:00,273 Hill St, Los Angeles,CA,90001 +253741,27in 4K Gaming Monitor,1,389.99,2019-09-17 10:54:00,859 13th St, Portland,OR,97035 +253742,Bose SoundSport Headphones,1,99.99,2019-09-30 19:14:00,868 Johnson St, San Francisco,CA,94016 +253743,Lightning Charging Cable,1,14.95,2019-09-16 22:23:00,552 11th St, San Francisco,CA,94016 +253744,Macbook Pro Laptop,1,1700.0,2019-09-25 17:46:00,978 Maple St, Atlanta,GA,30301 +253745,USB-C Charging Cable,1,11.95,2019-09-22 12:23:00,878 12th St, Los Angeles,CA,90001 +253746,Apple Airpods Headphones,2,150.0,2019-09-15 18:20:00,858 Sunset St, Seattle,WA,98101 +253747,Wired Headphones,1,11.99,2019-09-13 21:59:00,949 Maple St, New York City,NY,10001 +253748,USB-C Charging Cable,1,11.95,2019-09-30 10:56:00,52 Cedar St, Portland,OR,97035 +253749,Wired Headphones,2,11.99,2019-09-08 10:15:00,509 Hill St, San Francisco,CA,94016 +253750,Lightning Charging Cable,1,14.95,2019-09-16 21:16:00,698 Chestnut St, Seattle,WA,98101 +253751,Wired Headphones,1,11.99,2019-09-13 11:43:00,608 Lakeview St, San Francisco,CA,94016 +253752,USB-C Charging Cable,1,11.95,2019-09-26 23:38:00,921 Sunset St, Seattle,WA,98101 +253753,27in 4K Gaming Monitor,1,389.99,2019-09-10 07:25:00,211 Highland St, New York City,NY,10001 +253754,AA Batteries (4-pack),1,3.84,2019-09-18 19:20:00,402 Wilson St, San Francisco,CA,94016 +253755,Lightning Charging Cable,1,14.95,2019-09-10 14:51:00,363 Johnson St, San Francisco,CA,94016 +253756,AA Batteries (4-pack),1,3.84,2019-09-09 22:58:00,489 6th St, Los Angeles,CA,90001 +253757,Lightning Charging Cable,1,14.95,2019-09-03 19:05:00,992 Cedar St, Seattle,WA,98101 +253758,ThinkPad Laptop,1,999.99,2019-09-05 01:56:00,996 Lincoln St, Los Angeles,CA,90001 +253759,AA Batteries (4-pack),2,3.84,2019-09-02 15:26:00,887 Adams St, Los Angeles,CA,90001 +253759,Lightning Charging Cable,1,14.95,2019-09-02 15:26:00,887 Adams St, Los Angeles,CA,90001 +253760,USB-C Charging Cable,2,11.95,2019-09-29 20:23:00,799 Chestnut St, Portland,ME,04101 +253761,AAA Batteries (4-pack),2,2.99,2019-09-10 16:02:00,602 9th St, Boston,MA,02215 +253762,USB-C Charging Cable,1,11.95,2019-09-16 18:28:00,98 Hickory St, New York City,NY,10001 +253763,iPhone,1,700.0,2019-09-21 18:37:00,852 Lake St, San Francisco,CA,94016 +253764,Apple Airpods Headphones,1,150.0,2019-09-14 16:59:00,802 Lakeview St, New York City,NY,10001 +253765,Apple Airpods Headphones,1,150.0,2019-09-25 11:18:00,712 Willow St, Los Angeles,CA,90001 +253766,Apple Airpods Headphones,1,150.0,2019-09-03 16:21:00,407 12th St, Portland,OR,97035 +253767,20in Monitor,1,109.99,2019-09-17 22:33:00,861 Main St, Atlanta,GA,30301 +253768,ThinkPad Laptop,1,999.99,2019-09-21 19:57:00,68 Wilson St, Dallas,TX,75001 +253769,Wired Headphones,1,11.99,2019-09-13 10:17:00,330 Hickory St, Portland,OR,97035 +253770,Wired Headphones,1,11.99,2019-09-06 14:08:00,546 Sunset St, Seattle,WA,98101 +253771,27in 4K Gaming Monitor,1,389.99,2019-09-16 17:26:00,534 9th St, Dallas,TX,75001 +253772,Flatscreen TV,1,300.0,2019-09-11 06:18:00,772 Center St, San Francisco,CA,94016 +253773,Lightning Charging Cable,1,14.95,2019-09-22 14:59:00,698 Lincoln St, Seattle,WA,98101 +253774,Google Phone,1,600.0,2019-09-01 22:48:00,975 Spruce St, San Francisco,CA,94016 +253775,Apple Airpods Headphones,1,150.0,2019-09-12 02:24:00,911 Park St, Los Angeles,CA,90001 +253776,20in Monitor,1,109.99,2019-09-13 22:11:00,370 Main St, Los Angeles,CA,90001 +253777,ThinkPad Laptop,1,999.99,2019-09-07 16:51:00,158 Dogwood St, Seattle,WA,98101 +253778,Lightning Charging Cable,1,14.95,2019-09-06 06:08:00,759 West St, New York City,NY,10001 +253779,USB-C Charging Cable,1,11.95,2019-09-22 18:55:00,337 Hickory St, Portland,OR,97035 +253780,Wired Headphones,1,11.99,2019-09-23 02:31:00,534 1st St, Boston,MA,02215 +253781,USB-C Charging Cable,1,11.95,2019-09-09 12:08:00,369 10th St, Dallas,TX,75001 +253782,Apple Airpods Headphones,1,150.0,2019-09-27 20:22:00,311 Jackson St, San Francisco,CA,94016 +253783,Bose SoundSport Headphones,1,99.99,2019-09-26 14:35:00,428 Sunset St, Atlanta,GA,30301 +253784,AA Batteries (4-pack),3,3.84,2019-09-06 19:42:00,398 Walnut St, New York City,NY,10001 +253785,Lightning Charging Cable,1,14.95,2019-09-16 15:41:00,373 1st St, Seattle,WA,98101 +253786,USB-C Charging Cable,1,11.95,2019-09-19 18:18:00,8 Wilson St, Los Angeles,CA,90001 +253787,AA Batteries (4-pack),2,3.84,2019-09-28 09:02:00,222 Jefferson St, New York City,NY,10001 +253788,Macbook Pro Laptop,1,1700.0,2019-09-21 10:46:00,921 Church St, New York City,NY,10001 +253789,Lightning Charging Cable,1,14.95,2019-09-21 14:17:00,291 Park St, Portland,OR,97035 +253790,Macbook Pro Laptop,1,1700.0,2019-09-16 20:50:00,957 Park St, Seattle,WA,98101 +253791,USB-C Charging Cable,1,11.95,2019-09-07 19:59:00,480 6th St, Seattle,WA,98101 +253792,AA Batteries (4-pack),1,3.84,2019-09-06 20:11:00,396 7th St, Seattle,WA,98101 +253793,Lightning Charging Cable,1,14.95,2019-09-20 20:47:00,530 1st St, San Francisco,CA,94016 +253794,USB-C Charging Cable,1,11.95,2019-09-30 13:24:00,588 Meadow St, Dallas,TX,75001 +253795,AAA Batteries (4-pack),3,2.99,2019-09-19 20:53:00,62 Chestnut St, New York City,NY,10001 +253796,iPhone,1,700.0,2019-09-02 13:11:00,114 6th St, San Francisco,CA,94016 +253797,AA Batteries (4-pack),1,3.84,2019-09-29 18:40:00,165 Lincoln St, New York City,NY,10001 +253798,Wired Headphones,1,11.99,2019-09-07 00:25:00,820 11th St, Atlanta,GA,30301 +253799,Wired Headphones,1,11.99,2019-09-27 16:18:00,924 Meadow St, Los Angeles,CA,90001 +253800,27in 4K Gaming Monitor,1,389.99,2019-09-28 14:38:00,388 Spruce St, San Francisco,CA,94016 +253801,20in Monitor,1,109.99,2019-09-28 09:53:00,446 Lake St, Seattle,WA,98101 +253802,Wired Headphones,1,11.99,2019-09-28 10:24:00,232 South St, San Francisco,CA,94016 +253803,20in Monitor,1,109.99,2019-09-01 12:26:00,39 Spruce St, New York City,NY,10001 +253804,Apple Airpods Headphones,1,150.0,2019-09-08 22:35:00,632 Jefferson St, San Francisco,CA,94016 +253805,USB-C Charging Cable,1,11.95,2019-09-01 18:10:00,368 Spruce St, Los Angeles,CA,90001 +253806,AAA Batteries (4-pack),2,2.99,2019-09-19 19:23:00,787 9th St, San Francisco,CA,94016 +253807,AA Batteries (4-pack),1,3.84,2019-09-05 07:43:00,608 Church St, Austin,TX,73301 +253808,Apple Airpods Headphones,1,150.0,2019-09-15 18:57:00,706 River St, San Francisco,CA,94016 +253809,Apple Airpods Headphones,1,150.0,2019-09-01 20:30:00,280 Willow St, Seattle,WA,98101 +253810,AAA Batteries (4-pack),1,2.99,2019-09-08 09:41:00,85 10th St, Dallas,TX,75001 +253811,AAA Batteries (4-pack),2,2.99,2019-09-02 20:12:00,577 West St, New York City,NY,10001 +253812,AAA Batteries (4-pack),2,2.99,2019-09-07 13:49:00,929 South St, Atlanta,GA,30301 +253813,Wired Headphones,1,11.99,2019-09-12 09:39:00,374 Washington St, San Francisco,CA,94016 +253814,USB-C Charging Cable,1,11.95,2019-09-30 13:55:00,448 Jackson St, San Francisco,CA,94016 +253815,AAA Batteries (4-pack),1,2.99,2019-09-24 21:55:00,333 North St, Atlanta,GA,30301 +253816,USB-C Charging Cable,1,11.95,2019-09-20 09:48:00,731 Maple St, Boston,MA,02215 +253817,Lightning Charging Cable,1,14.95,2019-09-15 08:10:00,66 6th St, New York City,NY,10001 +253818,27in FHD Monitor,1,149.99,2019-09-12 17:41:00,188 Hill St, San Francisco,CA,94016 +253819,AA Batteries (4-pack),1,3.84,2019-09-10 16:43:00,920 Forest St, Los Angeles,CA,90001 +253820,Flatscreen TV,1,300.0,2019-09-11 15:28:00,947 North St, San Francisco,CA,94016 +253821,Vareebadd Phone,1,400.0,2019-09-10 07:26:00,441 Ridge St, Seattle,WA,98101 +253822,Google Phone,1,600.0,2019-09-29 14:10:00,95 Highland St, Boston,MA,02215 +253823,AA Batteries (4-pack),1,3.84,2019-09-03 18:19:00,928 North St, New York City,NY,10001 +253824,AA Batteries (4-pack),1,3.84,2019-09-18 12:33:00,763 9th St, New York City,NY,10001 +253825,USB-C Charging Cable,1,11.95,2019-09-14 19:21:00,119 10th St, Seattle,WA,98101 +253826,ThinkPad Laptop,1,999.99,2019-09-07 19:04:00,75 14th St, San Francisco,CA,94016 +253827,Macbook Pro Laptop,1,1700.0,2019-09-22 14:20:00,7 4th St, Boston,MA,02215 +253828,Wired Headphones,1,11.99,2019-09-03 11:42:00,974 Highland St, Los Angeles,CA,90001 +253829,iPhone,1,700.0,2019-09-25 14:20:00,765 Jackson St, Austin,TX,73301 +253830,USB-C Charging Cable,1,11.95,2019-09-14 15:17:00,904 Jackson St, Dallas,TX,75001 +253831,Wired Headphones,1,11.99,2019-09-08 19:57:00,646 Pine St, Seattle,WA,98101 +253831,27in 4K Gaming Monitor,1,389.99,2019-09-08 19:57:00,646 Pine St, Seattle,WA,98101 +253832,20in Monitor,1,109.99,2019-09-21 09:38:00,914 North St, Austin,TX,73301 +253833,AA Batteries (4-pack),1,3.84,2019-09-06 18:27:00,494 Spruce St, Los Angeles,CA,90001 +253834,USB-C Charging Cable,2,11.95,2019-09-14 06:38:00,380 River St, Boston,MA,02215 +253835,34in Ultrawide Monitor,1,379.99,2019-09-26 08:49:00,127 North St, Boston,MA,02215 +253836,LG Washing Machine,1,600.0,2019-09-29 17:16:00,424 2nd St, Dallas,TX,75001 +253837,Google Phone,1,600.0,2019-09-30 21:11:00,797 Sunset St, San Francisco,CA,94016 +253837,USB-C Charging Cable,1,11.95,2019-09-30 21:11:00,797 Sunset St, San Francisco,CA,94016 +253838,USB-C Charging Cable,1,11.95,2019-09-05 00:46:00,236 Chestnut St, San Francisco,CA,94016 +253839,34in Ultrawide Monitor,1,379.99,2019-09-05 13:14:00,466 Ridge St, Seattle,WA,98101 +253840,Apple Airpods Headphones,1,150.0,2019-09-25 10:35:00,361 Ridge St, San Francisco,CA,94016 +253841,Wired Headphones,1,11.99,2019-09-29 08:33:00,723 Madison St, Los Angeles,CA,90001 +253842,AA Batteries (4-pack),2,3.84,2019-09-29 11:41:00,625 South St, Los Angeles,CA,90001 +253843,Bose SoundSport Headphones,1,99.99,2019-09-06 20:53:00,204 Cherry St, Dallas,TX,75001 +253844,USB-C Charging Cable,1,11.95,2019-09-08 13:39:00,257 14th St, San Francisco,CA,94016 +253845,Bose SoundSport Headphones,1,99.99,2019-09-24 13:21:00,996 South St, New York City,NY,10001 +253846,Wired Headphones,1,11.99,2019-09-15 19:43:00,798 Madison St, Los Angeles,CA,90001 +253847,Bose SoundSport Headphones,1,99.99,2019-09-24 12:12:00,966 Sunset St, San Francisco,CA,94016 +253847,AAA Batteries (4-pack),1,2.99,2019-09-24 12:12:00,966 Sunset St, San Francisco,CA,94016 +253848,AAA Batteries (4-pack),1,2.99,2019-09-17 16:07:00,440 Adams St, Los Angeles,CA,90001 +253849,USB-C Charging Cable,1,11.95,2019-09-18 09:03:00,718 9th St, Boston,MA,02215 +253850,USB-C Charging Cable,1,11.95,2019-09-03 23:19:00,494 North St, Austin,TX,73301 +253851,ThinkPad Laptop,1,999.99,2019-09-06 17:39:00,590 Chestnut St, Los Angeles,CA,90001 +253852,iPhone,1,700.0,2019-09-17 21:34:00,231 South St, Seattle,WA,98101 +253853,Vareebadd Phone,1,400.0,2019-09-25 17:32:00,734 Madison St, Atlanta,GA,30301 +253854,AAA Batteries (4-pack),2,2.99,2019-09-28 19:46:00,800 South St, Los Angeles,CA,90001 +253855,Wired Headphones,1,11.99,2019-09-17 23:40:00,740 8th St, San Francisco,CA,94016 +253856,Lightning Charging Cable,1,14.95,2019-09-16 21:13:00,418 7th St, Los Angeles,CA,90001 +253857,Lightning Charging Cable,1,14.95,2019-09-16 08:56:00,632 North St, Boston,MA,02215 +253858,ThinkPad Laptop,1,999.99,2019-09-22 16:41:00,166 Meadow St, Boston,MA,02215 +253859,Apple Airpods Headphones,1,150.0,2019-09-29 12:09:00,227 Madison St, San Francisco,CA,94016 +253860,Wired Headphones,1,11.99,2019-09-04 08:15:00,397 Adams St, New York City,NY,10001 +253861,Flatscreen TV,1,300.0,2019-09-29 15:03:00,331 5th St, Los Angeles,CA,90001 +253862,Wired Headphones,1,11.99,2019-09-15 20:19:00,346 13th St, Boston,MA,02215 +253863,iPhone,1,700.0,2019-09-25 18:59:00,432 South St, Atlanta,GA,30301 +253864,AA Batteries (4-pack),2,3.84,2019-09-02 18:46:00,233 Sunset St, Los Angeles,CA,90001 +253865,20in Monitor,1,109.99,2019-09-05 13:42:00,996 Church St, San Francisco,CA,94016 +253866,Lightning Charging Cable,1,14.95,2019-09-09 19:29:00,467 Church St, New York City,NY,10001 +253867,Wired Headphones,1,11.99,2019-09-19 13:21:00,443 Lincoln St, Los Angeles,CA,90001 +253868,Apple Airpods Headphones,1,150.0,2019-09-02 18:44:00,719 Cherry St, Los Angeles,CA,90001 +253868,USB-C Charging Cable,1,11.95,2019-09-02 18:44:00,719 Cherry St, Los Angeles,CA,90001 +253869,Google Phone,1,600.0,2019-09-25 23:13:00,134 5th St, Los Angeles,CA,90001 +253870,AAA Batteries (4-pack),1,2.99,2019-09-09 16:57:00,666 Jefferson St, San Francisco,CA,94016 +253871,Apple Airpods Headphones,1,150.0,2019-09-06 17:46:00,223 Main St, San Francisco,CA,94016 +253872,AA Batteries (4-pack),1,3.84,2019-09-11 00:25:00,396 14th St, Seattle,WA,98101 +253873,Bose SoundSport Headphones,1,99.99,2019-09-15 10:25:00,930 5th St, San Francisco,CA,94016 +253874,Wired Headphones,1,11.99,2019-09-16 09:18:00,645 Lincoln St, San Francisco,CA,94016 +253875,27in FHD Monitor,1,149.99,2019-09-13 22:22:00,519 13th St, Boston,MA,02215 +253876,Vareebadd Phone,1,400.0,2019-09-11 10:30:00,688 11th St, San Francisco,CA,94016 +253877,AA Batteries (4-pack),2,3.84,2019-09-12 23:41:00,14 6th St, San Francisco,CA,94016 +253878,AAA Batteries (4-pack),1,2.99,2019-09-28 11:23:00,371 South St, San Francisco,CA,94016 +253879,iPhone,1,700.0,2019-09-16 14:09:00,487 Spruce St, San Francisco,CA,94016 +253880,iPhone,1,700.0,2019-09-16 10:01:00,77 4th St, Boston,MA,02215 +253881,AAA Batteries (4-pack),2,2.99,2019-09-25 13:49:00,75 Hickory St, New York City,NY,10001 +253882,Google Phone,1,600.0,2019-09-02 22:40:00,240 Cherry St, New York City,NY,10001 +253883,Wired Headphones,1,11.99,2019-09-08 13:05:00,873 Meadow St, Austin,TX,73301 +253884,USB-C Charging Cable,1,11.95,2019-09-13 08:59:00,620 West St, San Francisco,CA,94016 +253885,Lightning Charging Cable,1,14.95,2019-09-07 09:51:00,983 Madison St, Atlanta,GA,30301 +253886,27in 4K Gaming Monitor,1,389.99,2019-09-08 07:30:00,242 6th St, Atlanta,GA,30301 +253887,USB-C Charging Cable,1,11.95,2019-09-14 16:36:00,900 South St, Austin,TX,73301 +253888,ThinkPad Laptop,1,999.99,2019-09-19 14:32:00,349 4th St, New York City,NY,10001 +253889,Wired Headphones,1,11.99,2019-09-25 15:28:00,132 8th St, New York City,NY,10001 +253890,20in Monitor,1,109.99,2019-09-15 08:45:00,461 8th St, San Francisco,CA,94016 +253891,Bose SoundSport Headphones,1,99.99,2019-09-30 21:09:00,925 Spruce St, Seattle,WA,98101 +253892,Lightning Charging Cable,1,14.95,2019-09-09 08:29:00,237 Willow St, Boston,MA,02215 +253893,Lightning Charging Cable,1,14.95,2019-09-15 11:05:00,506 4th St, Dallas,TX,75001 +253894,Bose SoundSport Headphones,1,99.99,2019-09-01 14:52:00,883 Lake St, San Francisco,CA,94016 +253895,Wired Headphones,1,11.99,2019-09-17 12:44:00,649 Lincoln St, San Francisco,CA,94016 +253896,Apple Airpods Headphones,1,150.0,2019-09-28 13:34:00,241 West St, Dallas,TX,75001 +253897,Apple Airpods Headphones,1,150.0,2019-09-02 12:21:00,304 Maple St, Los Angeles,CA,90001 +253897,iPhone,1,700.0,2019-09-02 12:21:00,304 Maple St, Los Angeles,CA,90001 +253898,34in Ultrawide Monitor,1,379.99,2019-09-23 00:56:00,172 Church St, Boston,MA,02215 +253899,LG Washing Machine,1,600.0,2019-09-18 15:47:00,435 13th St, Boston,MA,02215 +253900,27in FHD Monitor,1,149.99,2019-09-08 08:47:00,407 Lincoln St, Los Angeles,CA,90001 +253901,Bose SoundSport Headphones,1,99.99,2019-09-03 14:22:00,111 Sunset St, Boston,MA,02215 +253902,Lightning Charging Cable,1,14.95,2019-09-25 08:33:00,403 8th St, San Francisco,CA,94016 +253903,USB-C Charging Cable,1,11.95,2019-09-29 20:07:00,436 Meadow St, Boston,MA,02215 +253904,27in 4K Gaming Monitor,1,389.99,2019-09-30 09:32:00,532 Lake St, San Francisco,CA,94016 +253904,Flatscreen TV,1,300.0,2019-09-30 09:32:00,532 Lake St, San Francisco,CA,94016 +253905,AAA Batteries (4-pack),1,2.99,2019-09-21 21:08:00,554 Church St, Dallas,TX,75001 +253906,Flatscreen TV,1,300.0,2019-09-25 12:31:00,769 West St, Los Angeles,CA,90001 +253907,iPhone,1,700.0,2019-09-12 09:48:00,936 13th St, New York City,NY,10001 +253908,AA Batteries (4-pack),1,3.84,2019-09-09 14:30:00,784 Wilson St, Dallas,TX,75001 +253909,AA Batteries (4-pack),2,3.84,2019-09-07 18:08:00,73 7th St, Atlanta,GA,30301 +253910,Flatscreen TV,1,300.0,2019-09-13 15:35:00,101 5th St, Boston,MA,02215 +253911,Apple Airpods Headphones,1,150.0,2019-09-14 12:06:00,471 5th St, Boston,MA,02215 +253912,Wired Headphones,1,11.99,2019-09-08 15:21:00,436 Walnut St, San Francisco,CA,94016 +253913,AAA Batteries (4-pack),2,2.99,2019-09-11 14:59:00,397 2nd St, Los Angeles,CA,90001 +253914,Apple Airpods Headphones,1,150.0,2019-09-15 13:17:00,641 Hickory St, New York City,NY,10001 +253915,Apple Airpods Headphones,1,150.0,2019-09-16 19:55:00,646 13th St, Atlanta,GA,30301 +253916,27in 4K Gaming Monitor,1,389.99,2019-09-18 19:26:00,39 Walnut St, Boston,MA,02215 +253917,Lightning Charging Cable,1,14.95,2019-09-24 15:27:00,547 Washington St, New York City,NY,10001 +253918,AAA Batteries (4-pack),3,2.99,2019-09-16 17:34:00,723 Lakeview St, San Francisco,CA,94016 +253919,Wired Headphones,1,11.99,2019-09-10 07:20:00,36 Maple St, San Francisco,CA,94016 +253920,27in FHD Monitor,1,149.99,2019-09-10 18:45:00,27 14th St, Boston,MA,02215 +253921,AAA Batteries (4-pack),1,2.99,2019-09-11 18:53:00,672 North St, Los Angeles,CA,90001 +253922,Bose SoundSport Headphones,1,99.99,2019-09-30 17:55:00,341 Chestnut St, Portland,OR,97035 +253923,Google Phone,1,600.0,2019-09-16 14:25:00,766 Main St, Boston,MA,02215 +253924,USB-C Charging Cable,1,11.95,2019-09-25 11:09:00,116 Willow St, San Francisco,CA,94016 +253925,ThinkPad Laptop,1,999.99,2019-09-05 13:41:00,311 1st St, Dallas,TX,75001 +253926,USB-C Charging Cable,1,11.95,2019-09-24 09:59:00,10 Willow St, Austin,TX,73301 +253927,AAA Batteries (4-pack),2,2.99,2019-09-25 02:34:00,5 Ridge St, New York City,NY,10001 +253928,Wired Headphones,2,11.99,2019-09-27 20:58:00,37 14th St, New York City,NY,10001 +253929,27in 4K Gaming Monitor,1,389.99,2019-09-22 22:53:00,710 Johnson St, New York City,NY,10001 +253929,20in Monitor,1,109.99,2019-09-22 22:53:00,710 Johnson St, New York City,NY,10001 +253930,34in Ultrawide Monitor,1,379.99,2019-09-05 11:14:00,780 Park St, Dallas,TX,75001 +253931,AAA Batteries (4-pack),1,2.99,2019-09-28 17:16:00,494 Wilson St, Seattle,WA,98101 +253932,Wired Headphones,1,11.99,2019-09-05 08:43:00,108 Ridge St, San Francisco,CA,94016 +253933,ThinkPad Laptop,1,999.99,2019-09-30 19:06:00,376 Lake St, San Francisco,CA,94016 +253934,Apple Airpods Headphones,1,150.0,2019-09-09 22:17:00,498 Cherry St, Los Angeles,CA,90001 +253935,USB-C Charging Cable,1,11.95,2019-09-09 10:37:00,966 Jackson St, Austin,TX,73301 +253936,34in Ultrawide Monitor,1,379.99,2019-09-13 21:43:00,844 9th St, Los Angeles,CA,90001 +253937,27in 4K Gaming Monitor,1,389.99,2019-09-29 18:48:00,855 2nd St, San Francisco,CA,94016 +253938,LG Washing Machine,1,600.0,2019-09-06 08:36:00,533 West St, New York City,NY,10001 +253939,Apple Airpods Headphones,1,150.0,2019-09-13 08:39:00,243 Pine St, Seattle,WA,98101 +253940,Bose SoundSport Headphones,1,99.99,2019-09-24 16:44:00,487 Walnut St, San Francisco,CA,94016 +253940,Lightning Charging Cable,1,14.95,2019-09-24 16:44:00,487 Walnut St, San Francisco,CA,94016 +253941,27in 4K Gaming Monitor,1,389.99,2019-09-20 19:32:00,13 9th St, Boston,MA,02215 +253942,AA Batteries (4-pack),1,3.84,2019-09-22 16:54:00,211 Hill St, Atlanta,GA,30301 +253943,AAA Batteries (4-pack),2,2.99,2019-09-26 19:03:00,583 Forest St, San Francisco,CA,94016 +253944,AAA Batteries (4-pack),1,2.99,2019-09-05 13:23:00,961 7th St, San Francisco,CA,94016 +253945,Apple Airpods Headphones,1,150.0,2019-09-03 23:07:00,264 6th St, San Francisco,CA,94016 +253946,Wired Headphones,1,11.99,2019-09-27 11:52:00,157 Hill St, Seattle,WA,98101 +253947,AA Batteries (4-pack),4,3.84,2019-09-18 22:25:00,573 Ridge St, Austin,TX,73301 +253948,27in 4K Gaming Monitor,1,389.99,2019-09-16 09:28:00,981 Lincoln St, Dallas,TX,75001 +253949,Lightning Charging Cable,1,14.95,2019-09-21 12:17:00,793 10th St, Dallas,TX,75001 +253950,20in Monitor,1,109.99,2019-09-10 19:21:00,528 Madison St, Austin,TX,73301 +253951,Lightning Charging Cable,1,14.95,2019-09-30 13:27:00,388 Jackson St, San Francisco,CA,94016 +253952,AAA Batteries (4-pack),1,2.99,2019-09-29 18:41:00,501 Lincoln St, Austin,TX,73301 +253953,AAA Batteries (4-pack),2,2.99,2019-09-14 12:34:00,863 South St, Los Angeles,CA,90001 +253954,AA Batteries (4-pack),1,3.84,2019-09-13 10:37:00,144 Walnut St, Los Angeles,CA,90001 +253955,AAA Batteries (4-pack),2,2.99,2019-09-24 16:32:00,339 7th St, Seattle,WA,98101 +253956,27in FHD Monitor,1,149.99,2019-09-16 21:35:00,963 Lincoln St, San Francisco,CA,94016 +253957,USB-C Charging Cable,1,11.95,2019-09-24 19:41:00,486 South St, Los Angeles,CA,90001 +253958,Apple Airpods Headphones,1,150.0,2019-09-05 17:07:00,200 South St, Los Angeles,CA,90001 +253959,34in Ultrawide Monitor,1,379.99,2019-09-25 16:13:00,887 Sunset St, Atlanta,GA,30301 +253960,AA Batteries (4-pack),2,3.84,2019-09-18 11:16:00,319 Forest St, San Francisco,CA,94016 +253961,Google Phone,1,600.0,2019-09-06 14:49:00,924 Park St, Boston,MA,02215 +253962,AAA Batteries (4-pack),1,2.99,2019-09-06 21:19:00,150 7th St, New York City,NY,10001 +253963,AA Batteries (4-pack),1,3.84,2019-09-21 10:42:00,597 Jackson St, San Francisco,CA,94016 +253964,Macbook Pro Laptop,1,1700.0,2019-09-09 15:19:00,689 Wilson St, Dallas,TX,75001 +253965,AA Batteries (4-pack),1,3.84,2019-09-10 18:03:00,749 1st St, Seattle,WA,98101 +253966,Apple Airpods Headphones,1,150.0,2019-09-10 11:46:00,656 Forest St, Seattle,WA,98101 +253967,AAA Batteries (4-pack),2,2.99,2019-09-14 17:11:00,309 Ridge St, Boston,MA,02215 +253968,Wired Headphones,2,11.99,2019-09-11 16:55:00,63 8th St, Boston,MA,02215 +253968,34in Ultrawide Monitor,1,379.99,2019-09-11 16:55:00,63 8th St, Boston,MA,02215 +253969,iPhone,1,700.0,2019-09-14 10:46:00,205 Washington St, San Francisco,CA,94016 +253970,Wired Headphones,1,11.99,2019-09-21 19:04:00,571 Jefferson St, San Francisco,CA,94016 +253971,Lightning Charging Cable,1,14.95,2019-09-18 15:19:00,87 South St, Los Angeles,CA,90001 +253972,AAA Batteries (4-pack),1,2.99,2019-09-29 10:13:00,636 Jackson St, Portland,ME,04101 +253973,Flatscreen TV,1,300.0,2019-09-08 16:37:00,710 Jackson St, Austin,TX,73301 +253974,27in 4K Gaming Monitor,1,389.99,2019-09-17 05:15:00,644 13th St, Seattle,WA,98101 +253975,Wired Headphones,1,11.99,2019-09-11 18:39:00,20 7th St, Boston,MA,02215 +253976,AA Batteries (4-pack),2,3.84,2019-09-26 05:12:00,117 Dogwood St, Los Angeles,CA,90001 +253977,Lightning Charging Cable,1,14.95,2019-09-30 23:09:00,917 8th St, Atlanta,GA,30301 +253978,iPhone,1,700.0,2019-09-11 15:10:00,142 Lake St, Portland,OR,97035 +253978,Lightning Charging Cable,1,14.95,2019-09-11 15:10:00,142 Lake St, Portland,OR,97035 +253978,Wired Headphones,2,11.99,2019-09-11 15:10:00,142 Lake St, Portland,OR,97035 +253979,iPhone,1,700.0,2019-09-30 21:53:00,490 Highland St, New York City,NY,10001 +253980,Wired Headphones,1,11.99,2019-09-07 16:19:00,172 14th St, Seattle,WA,98101 +253981,Lightning Charging Cable,1,14.95,2019-09-02 22:32:00,811 Adams St, Atlanta,GA,30301 +253982,Wired Headphones,1,11.99,2019-09-25 16:42:00,929 2nd St, Boston,MA,02215 +253983,34in Ultrawide Monitor,1,379.99,2019-09-08 09:55:00,773 Johnson St, Los Angeles,CA,90001 +253984,Lightning Charging Cable,1,14.95,2019-09-15 11:15:00,740 5th St, Dallas,TX,75001 +253985,Wired Headphones,1,11.99,2019-09-09 17:03:00,283 North St, New York City,NY,10001 +253986,Macbook Pro Laptop,1,1700.0,2019-09-07 12:37:00,121 9th St, Los Angeles,CA,90001 +253987,iPhone,1,700.0,2019-09-27 23:11:00,245 North St, San Francisco,CA,94016 +253987,Lightning Charging Cable,1,14.95,2019-09-27 23:11:00,245 North St, San Francisco,CA,94016 +253988,27in FHD Monitor,1,149.99,2019-09-01 19:16:00,360 Park St, Atlanta,GA,30301 +253989,Flatscreen TV,1,300.0,2019-09-25 15:41:00,41 Wilson St, Los Angeles,CA,90001 +253990,Wired Headphones,1,11.99,2019-09-23 01:50:00,163 Jackson St, Seattle,WA,98101 +253991,Lightning Charging Cable,1,14.95,2019-09-30 15:29:00,819 Lake St, Los Angeles,CA,90001 +253992,AA Batteries (4-pack),1,3.84,2019-09-15 14:54:00,212 Forest St, San Francisco,CA,94016 +253993,Macbook Pro Laptop,1,1700.0,2019-09-28 02:07:00,64 Washington St, New York City,NY,10001 +253994,USB-C Charging Cable,1,11.95,2019-09-14 16:20:00,798 Adams St, New York City,NY,10001 +253995,Lightning Charging Cable,1,14.95,2019-09-12 18:21:00,406 Hickory St, San Francisco,CA,94016 +253996,AAA Batteries (4-pack),1,2.99,2019-09-22 13:36:00,598 14th St, Portland,OR,97035 +253997,AA Batteries (4-pack),1,3.84,2019-09-09 09:35:00,22 Lakeview St, San Francisco,CA,94016 +253998,AAA Batteries (4-pack),2,2.99,2019-09-16 17:03:00,740 Willow St, San Francisco,CA,94016 +253999,Apple Airpods Headphones,1,150.0,2019-09-17 14:00:00,629 Center St, Los Angeles,CA,90001 +254000,AA Batteries (4-pack),2,3.84,2019-09-22 07:56:00,81 11th St, Austin,TX,73301 +254001,Lightning Charging Cable,1,14.95,2019-09-15 21:27:00,426 11th St, Los Angeles,CA,90001 +254002,Apple Airpods Headphones,1,150.0,2019-09-07 19:11:00,330 4th St, Los Angeles,CA,90001 +254003,AAA Batteries (4-pack),1,2.99,2019-09-16 08:14:00,825 14th St, Seattle,WA,98101 +254004,Bose SoundSport Headphones,1,99.99,2019-09-12 11:56:00,875 Lakeview St, Portland,OR,97035 +254005,Wired Headphones,2,11.99,2019-09-14 18:44:00,543 Cherry St, New York City,NY,10001 +254006,20in Monitor,1,109.99,2019-09-21 12:33:00,639 Wilson St, Boston,MA,02215 +254007,Lightning Charging Cable,1,14.95,2019-09-25 08:36:00,407 Main St, New York City,NY,10001 +254008,Wired Headphones,1,11.99,2019-09-09 22:06:00,445 Johnson St, San Francisco,CA,94016 +254009,Bose SoundSport Headphones,1,99.99,2019-09-21 14:12:00,134 Pine St, Austin,TX,73301 +254010,Bose SoundSport Headphones,1,99.99,2019-09-26 21:13:00,115 River St, Boston,MA,02215 +254011,iPhone,1,700.0,2019-09-02 20:00:00,919 Spruce St, Los Angeles,CA,90001 +254012,AAA Batteries (4-pack),1,2.99,2019-09-30 19:06:00,237 10th St, San Francisco,CA,94016 +254013,Bose SoundSport Headphones,1,99.99,2019-09-03 06:57:00,897 Lake St, San Francisco,CA,94016 +254014,USB-C Charging Cable,1,11.95,2019-09-17 11:46:00,611 Meadow St, Dallas,TX,75001 +254015,Bose SoundSport Headphones,1,99.99,2019-09-01 14:36:00,597 Johnson St, San Francisco,CA,94016 +254016,AA Batteries (4-pack),2,3.84,2019-09-05 13:03:00,789 Hill St, Boston,MA,02215 +254017,Bose SoundSport Headphones,1,99.99,2019-09-18 20:15:00,487 North St, Boston,MA,02215 +254018,Google Phone,1,600.0,2019-09-08 11:33:00,127 Washington St, Atlanta,GA,30301 +254019,AA Batteries (4-pack),1,3.84,2019-09-16 20:23:00,285 Lake St, Atlanta,GA,30301 +254020,Wired Headphones,1,11.99,2019-09-02 13:03:00,507 Chestnut St, Seattle,WA,98101 +254021,Apple Airpods Headphones,1,150.0,2019-09-20 20:53:00,890 Hill St, Dallas,TX,75001 +254022,Wired Headphones,1,11.99,2019-09-18 14:43:00,281 Lake St, Seattle,WA,98101 +254023,Lightning Charging Cable,1,14.95,2019-09-17 22:21:00,399 Highland St, Seattle,WA,98101 +254024,USB-C Charging Cable,1,11.95,2019-09-10 17:56:00,366 10th St, New York City,NY,10001 +254025,Google Phone,1,600.0,2019-09-05 13:53:00,818 Park St, San Francisco,CA,94016 +254026,Wired Headphones,1,11.99,2019-09-01 20:27:00,66 12th St, San Francisco,CA,94016 +254027,AAA Batteries (4-pack),1,2.99,2019-09-13 14:12:00,465 11th St, Boston,MA,02215 +254028,Wired Headphones,1,11.99,2019-09-01 20:20:00,839 12th St, San Francisco,CA,94016 +254029,USB-C Charging Cable,1,11.95,2019-09-27 23:00:00,842 Elm St, Dallas,TX,75001 +254030,Wired Headphones,1,11.99,2019-09-27 22:44:00,782 10th St, Austin,TX,73301 +254031,Lightning Charging Cable,2,14.95,2019-09-02 01:28:00,896 Ridge St, San Francisco,CA,94016 +254032,USB-C Charging Cable,3,11.95,2019-09-17 17:19:00,619 6th St, Boston,MA,02215 +254033,Google Phone,1,600.0,2019-09-28 23:42:00,728 10th St, Austin,TX,73301 +254034,AA Batteries (4-pack),1,3.84,2019-09-10 12:51:00,239 Willow St, New York City,NY,10001 +254035,Apple Airpods Headphones,1,150.0,2019-09-07 16:29:00,481 River St, San Francisco,CA,94016 +254036,USB-C Charging Cable,1,11.95,2019-09-10 10:36:00,637 Adams St, San Francisco,CA,94016 +254037,Lightning Charging Cable,1,14.95,2019-09-20 11:27:00,149 Pine St, San Francisco,CA,94016 +254038,USB-C Charging Cable,1,11.95,2019-09-26 13:13:00,976 Elm St, Los Angeles,CA,90001 +254039,ThinkPad Laptop,1,999.99,2019-09-29 02:08:00,54 Hill St, Atlanta,GA,30301 +254040,27in 4K Gaming Monitor,1,389.99,2019-09-23 09:09:00,512 Lake St, Atlanta,GA,30301 +254041,Bose SoundSport Headphones,1,99.99,2019-09-25 16:16:00,918 11th St, San Francisco,CA,94016 +254042,AA Batteries (4-pack),2,3.84,2019-09-18 20:53:00,779 Dogwood St, Atlanta,GA,30301 +254043,AAA Batteries (4-pack),1,2.99,2019-09-05 01:23:00,892 Washington St, San Francisco,CA,94016 +254044,Lightning Charging Cable,1,14.95,2019-09-10 14:53:00,112 1st St, Portland,ME,04101 +254045,Google Phone,1,600.0,2019-09-30 10:27:00,633 Lincoln St, Boston,MA,02215 +254046,Google Phone,1,600.0,2019-09-08 13:53:00,875 Wilson St, Boston,MA,02215 +254046,Wired Headphones,1,11.99,2019-09-08 13:53:00,875 Wilson St, Boston,MA,02215 +254047,20in Monitor,1,109.99,2019-09-07 21:47:00,739 Sunset St, New York City,NY,10001 +254048,Apple Airpods Headphones,1,150.0,2019-09-12 16:49:00,377 6th St, Portland,OR,97035 +254049,AA Batteries (4-pack),1,3.84,2019-09-29 11:53:00,858 Sunset St, Portland,OR,97035 +254050,Lightning Charging Cable,1,14.95,2019-09-17 18:21:00,279 Cedar St, Boston,MA,02215 +254051,27in FHD Monitor,1,149.99,2019-09-24 09:35:00,743 Hill St, Portland,OR,97035 +254052,Bose SoundSport Headphones,1,99.99,2019-09-17 20:15:00,418 Highland St, Atlanta,GA,30301 +254053,AAA Batteries (4-pack),1,2.99,2019-09-22 17:21:00,73 Cedar St, Seattle,WA,98101 +254054,Wired Headphones,2,11.99,2019-09-20 19:23:00,646 Hill St, Portland,ME,04101 +254055,Google Phone,1,600.0,2019-09-23 21:12:00,991 2nd St, Boston,MA,02215 +254056,AAA Batteries (4-pack),1,2.99,2019-09-07 13:58:00,259 Adams St, San Francisco,CA,94016 +254057,27in 4K Gaming Monitor,1,389.99,2019-09-22 06:38:00,869 11th St, Atlanta,GA,30301 +254058,AAA Batteries (4-pack),2,2.99,2019-09-08 21:22:00,41 Highland St, Seattle,WA,98101 +254059,Bose SoundSport Headphones,1,99.99,2019-09-23 22:12:00,884 10th St, New York City,NY,10001 +254060,34in Ultrawide Monitor,1,379.99,2019-09-04 18:18:00,931 Forest St, New York City,NY,10001 +254061,27in FHD Monitor,1,149.99,2019-09-27 19:20:00,413 Forest St, Dallas,TX,75001 +254062,20in Monitor,1,109.99,2019-09-16 19:43:00,27 9th St, Los Angeles,CA,90001 +254063,AAA Batteries (4-pack),1,2.99,2019-09-13 16:04:00,22 Lake St, Dallas,TX,75001 +254064,Apple Airpods Headphones,1,150.0,2019-09-24 16:17:00,492 Sunset St, New York City,NY,10001 +254065,Lightning Charging Cable,1,14.95,2019-09-04 20:26:00,412 Elm St, San Francisco,CA,94016 +254066,Wired Headphones,4,11.99,2019-09-03 11:04:00,654 Ridge St, San Francisco,CA,94016 +254066,Bose SoundSport Headphones,1,99.99,2019-09-03 11:04:00,654 Ridge St, San Francisco,CA,94016 +254067,Wired Headphones,1,11.99,2019-09-18 21:40:00,884 River St, Los Angeles,CA,90001 +254068,AAA Batteries (4-pack),1,2.99,2019-09-01 08:58:00,321 Church St, Los Angeles,CA,90001 +254069,Flatscreen TV,1,300.0,2019-09-19 11:09:00,769 5th St, New York City,NY,10001 +254070,Flatscreen TV,1,300.0,2019-09-14 18:29:00,793 Cedar St, Portland,OR,97035 +254071,34in Ultrawide Monitor,1,379.99,2019-09-16 16:08:00,579 Meadow St, Seattle,WA,98101 +254072,Wired Headphones,2,11.99,2019-09-23 07:49:00,154 North St, San Francisco,CA,94016 +254073,27in 4K Gaming Monitor,1,389.99,2019-09-06 15:25:00,267 Elm St, New York City,NY,10001 +254074,Lightning Charging Cable,1,14.95,2019-09-13 17:07:00,391 River St, San Francisco,CA,94016 +254075,AA Batteries (4-pack),1,3.84,2019-09-10 10:52:00,8 5th St, Dallas,TX,75001 +254076,Lightning Charging Cable,1,14.95,2019-09-29 21:58:00,5 Sunset St, Dallas,TX,75001 +254077,USB-C Charging Cable,1,11.95,2019-09-11 09:22:00,795 11th St, Portland,OR,97035 +254078,AAA Batteries (4-pack),1,2.99,2019-09-05 12:32:00,797 Dogwood St, San Francisco,CA,94016 +254078,Macbook Pro Laptop,1,1700.0,2019-09-05 12:32:00,797 Dogwood St, San Francisco,CA,94016 +254079,USB-C Charging Cable,1,11.95,2019-09-29 14:02:00,272 Center St, San Francisco,CA,94016 +254080,Macbook Pro Laptop,1,1700.0,2019-09-16 17:37:00,90 Madison St, New York City,NY,10001 +254081,AA Batteries (4-pack),1,3.84,2019-09-12 09:01:00,398 Lakeview St, Seattle,WA,98101 +254082,Wired Headphones,1,11.99,2019-09-27 16:18:00,418 Lincoln St, Los Angeles,CA,90001 +254083,Bose SoundSport Headphones,1,99.99,2019-09-08 01:41:00,707 Lincoln St, Boston,MA,02215 +254084,AAA Batteries (4-pack),1,2.99,2019-09-01 22:19:00,814 Hickory St, San Francisco,CA,94016 +254085,Vareebadd Phone,1,400.0,2019-09-30 15:01:00,308 Lincoln St, San Francisco,CA,94016 +254086,Apple Airpods Headphones,1,150.0,2019-09-01 17:51:00,244 6th St, San Francisco,CA,94016 +254087,AA Batteries (4-pack),1,3.84,2019-09-25 17:53:00,856 Adams St, San Francisco,CA,94016 +254088,Apple Airpods Headphones,1,150.0,2019-09-22 14:48:00,27 Willow St, Boston,MA,02215 +254089,ThinkPad Laptop,1,999.99,2019-09-17 21:20:00,278 8th St, Los Angeles,CA,90001 +254090,AAA Batteries (4-pack),1,2.99,2019-09-04 23:50:00,683 Willow St, Seattle,WA,98101 +254091,Wired Headphones,1,11.99,2019-09-21 22:23:00,85 Forest St, San Francisco,CA,94016 +254092,Lightning Charging Cable,1,14.95,2019-09-22 14:36:00,426 Madison St, Portland,OR,97035 +254093,27in 4K Gaming Monitor,1,389.99,2019-09-23 18:37:00,342 West St, Los Angeles,CA,90001 +254094,27in 4K Gaming Monitor,1,389.99,2019-09-18 01:36:00,747 5th St, Boston,MA,02215 +254095,AAA Batteries (4-pack),1,2.99,2019-09-18 21:24:00,202 Park St, Los Angeles,CA,90001 +254096,34in Ultrawide Monitor,1,379.99,2019-09-27 09:52:00,390 5th St, Austin,TX,73301 +254097,27in 4K Gaming Monitor,1,389.99,2019-09-30 21:52:00,686 Forest St, San Francisco,CA,94016 +254098,AAA Batteries (4-pack),1,2.99,2019-09-14 08:01:00,727 Lakeview St, San Francisco,CA,94016 +254099,Apple Airpods Headphones,1,150.0,2019-09-04 21:38:00,32 Spruce St, Boston,MA,02215 +254100,AA Batteries (4-pack),2,3.84,2019-09-01 14:17:00,135 Lincoln St, San Francisco,CA,94016 +254101,AA Batteries (4-pack),4,3.84,2019-09-04 17:28:00,805 South St, Austin,TX,73301 +254102,Lightning Charging Cable,1,14.95,2019-09-04 19:04:00,691 6th St, Los Angeles,CA,90001 +254103,USB-C Charging Cable,1,11.95,2019-09-23 10:35:00,199 Chestnut St, New York City,NY,10001 +254104,USB-C Charging Cable,1,11.95,2019-09-11 14:03:00,214 Cherry St, San Francisco,CA,94016 +254105,USB-C Charging Cable,1,11.95,2019-09-27 11:39:00,866 Adams St, Boston,MA,02215 +254106,AAA Batteries (4-pack),1,2.99,2019-09-16 20:26:00,870 Forest St, Los Angeles,CA,90001 +254107,AAA Batteries (4-pack),1,2.99,2019-09-13 22:23:00,172 Hill St, Seattle,WA,98101 +254108,Apple Airpods Headphones,1,150.0,2019-09-15 07:29:00,932 Lake St, Portland,OR,97035 +254109,Macbook Pro Laptop,1,1700.0,2019-09-09 12:28:00,761 Washington St, Seattle,WA,98101 +254110,Google Phone,1,600.0,2019-09-25 20:10:00,252 13th St, Portland,OR,97035 +254111,27in 4K Gaming Monitor,1,389.99,2019-09-07 20:44:00,635 Cedar St, Austin,TX,73301 +254112,ThinkPad Laptop,1,999.99,2019-09-27 12:43:00,262 Lakeview St, New York City,NY,10001 +254113,Wired Headphones,1,11.99,2019-09-20 13:29:00,431 Lincoln St, Los Angeles,CA,90001 +254114,Google Phone,1,600.0,2019-09-03 23:04:00,734 11th St, Los Angeles,CA,90001 +254114,USB-C Charging Cable,1,11.95,2019-09-03 23:04:00,734 11th St, Los Angeles,CA,90001 +254115,AAA Batteries (4-pack),1,2.99,2019-09-20 14:09:00,869 8th St, Portland,ME,04101 +254116,Lightning Charging Cable,1,14.95,2019-09-16 21:32:00,741 Cherry St, San Francisco,CA,94016 +254117,AAA Batteries (4-pack),2,2.99,2019-09-21 21:42:00,703 Lake St, San Francisco,CA,94016 +254118,ThinkPad Laptop,1,999.99,2019-09-12 16:27:00,692 Hickory St, San Francisco,CA,94016 +254119,Google Phone,1,600.0,2019-09-18 20:34:00,31 River St, Boston,MA,02215 +254119,USB-C Charging Cable,1,11.95,2019-09-18 20:34:00,31 River St, Boston,MA,02215 +254120,AA Batteries (4-pack),1,3.84,2019-09-03 13:44:00,13 Meadow St, San Francisco,CA,94016 +254121,USB-C Charging Cable,1,11.95,2019-09-19 20:04:00,97 2nd St, Portland,OR,97035 +254122,27in 4K Gaming Monitor,2,389.99,2019-09-15 01:47:00,248 Cedar St, Dallas,TX,75001 +254123,Flatscreen TV,1,300.0,2019-09-27 11:21:00,260 Lincoln St, Los Angeles,CA,90001 +254124,Wired Headphones,1,11.99,2019-09-28 19:23:00,708 Highland St, Seattle,WA,98101 +254125,AA Batteries (4-pack),1,3.84,2019-09-07 09:32:00,571 Sunset St, Austin,TX,73301 +254126,Lightning Charging Cable,1,14.95,2019-09-21 21:51:00,697 Elm St, Atlanta,GA,30301 +254127,Lightning Charging Cable,1,14.95,2019-09-26 11:06:00,994 West St, Los Angeles,CA,90001 +254128,AA Batteries (4-pack),1,3.84,2019-09-14 20:57:00,997 14th St, San Francisco,CA,94016 +254129,AA Batteries (4-pack),3,3.84,2019-09-20 19:32:00,575 Spruce St, San Francisco,CA,94016 +254130,AAA Batteries (4-pack),1,2.99,2019-09-16 12:53:00,437 Lakeview St, Seattle,WA,98101 +254131,Apple Airpods Headphones,1,150.0,2019-09-26 00:58:00,91 13th St, Seattle,WA,98101 +254132,ThinkPad Laptop,1,999.99,2019-09-09 12:01:00,628 Ridge St, Austin,TX,73301 +254132,Google Phone,1,600.0,2019-09-09 12:01:00,628 Ridge St, Austin,TX,73301 +254133,Apple Airpods Headphones,1,150.0,2019-09-10 21:19:00,267 Sunset St, San Francisco,CA,94016 +254134,AA Batteries (4-pack),2,3.84,2019-09-26 18:54:00,360 Madison St, Dallas,TX,75001 +254135,Vareebadd Phone,1,400.0,2019-09-02 00:05:00,293 Willow St, New York City,NY,10001 +254136,AAA Batteries (4-pack),1,2.99,2019-09-14 13:37:00,888 North St, New York City,NY,10001 +254137,AAA Batteries (4-pack),2,2.99,2019-09-26 23:55:00,912 Madison St, San Francisco,CA,94016 +254138,34in Ultrawide Monitor,1,379.99,2019-09-29 19:27:00,50 Lincoln St, Dallas,TX,75001 +254139,Lightning Charging Cable,1,14.95,2019-09-11 23:55:00,841 11th St, New York City,NY,10001 +254140,Bose SoundSport Headphones,1,99.99,2019-09-01 14:56:00,649 8th St, Portland,OR,97035 +254141,20in Monitor,1,109.99,2019-09-19 10:17:00,274 Washington St, Boston,MA,02215 +254142,Apple Airpods Headphones,1,150.0,2019-09-26 13:45:00,115 Cherry St, New York City,NY,10001 +254143,Bose SoundSport Headphones,1,99.99,2019-09-04 23:41:00,924 Cedar St, Boston,MA,02215 +254144,AAA Batteries (4-pack),3,2.99,2019-09-07 09:36:00,109 5th St, Los Angeles,CA,90001 +254145,AAA Batteries (4-pack),4,2.99,2019-09-30 06:53:00,832 9th St, Boston,MA,02215 +254146,USB-C Charging Cable,1,11.95,2019-09-13 20:53:00,463 Meadow St, New York City,NY,10001 +254147,Macbook Pro Laptop,1,1700.0,2019-09-29 10:04:00,828 Elm St, Seattle,WA,98101 +254148,USB-C Charging Cable,1,11.95,2019-09-25 18:33:00,215 Hill St, Boston,MA,02215 +254149,AAA Batteries (4-pack),2,2.99,2019-09-22 19:47:00,766 10th St, Portland,OR,97035 +254150,AAA Batteries (4-pack),1,2.99,2019-09-29 10:18:00,120 Johnson St, San Francisco,CA,94016 +254151,27in FHD Monitor,1,149.99,2019-09-26 17:59:00,135 Walnut St, Dallas,TX,75001 +254152,Wired Headphones,1,11.99,2019-09-01 18:44:00,563 Chestnut St, New York City,NY,10001 +254153,iPhone,1,700.0,2019-09-03 02:24:00,586 Forest St, Austin,TX,73301 +254154,Wired Headphones,1,11.99,2019-09-29 21:46:00,563 Elm St, San Francisco,CA,94016 +254155,27in FHD Monitor,1,149.99,2019-09-01 21:52:00,744 Church St, San Francisco,CA,94016 +254156,Bose SoundSport Headphones,1,99.99,2019-09-19 20:05:00,366 Cherry St, Los Angeles,CA,90001 +254157,27in 4K Gaming Monitor,1,389.99,2019-09-08 06:44:00,297 Spruce St, Atlanta,GA,30301 +254158,AA Batteries (4-pack),1,3.84,2019-09-15 06:24:00,941 12th St, Los Angeles,CA,90001 +254159,27in 4K Gaming Monitor,1,389.99,2019-09-21 08:10:00,257 Dogwood St, Austin,TX,73301 +254160,AAA Batteries (4-pack),2,2.99,2019-09-17 21:48:00,861 Wilson St, Los Angeles,CA,90001 +254161,USB-C Charging Cable,1,11.95,2019-09-02 09:17:00,517 8th St, Seattle,WA,98101 +254162,USB-C Charging Cable,1,11.95,2019-09-19 14:15:00,612 9th St, Boston,MA,02215 +254163,20in Monitor,1,109.99,2019-09-19 16:09:00,815 Willow St, Los Angeles,CA,90001 +254164,USB-C Charging Cable,1,11.95,2019-09-10 02:14:00,284 Walnut St, Los Angeles,CA,90001 +254165,Apple Airpods Headphones,1,150.0,2019-09-05 17:34:00,345 Maple St, San Francisco,CA,94016 +254166,Bose SoundSport Headphones,1,99.99,2019-09-04 14:10:00,214 12th St, Portland,OR,97035 +254167,Flatscreen TV,1,300.0,2019-09-16 22:41:00,322 Lincoln St, Los Angeles,CA,90001 +254168,Apple Airpods Headphones,1,150.0,2019-09-04 18:25:00,243 Chestnut St, Austin,TX,73301 +254169,Google Phone,1,600.0,2019-09-10 16:52:00,603 12th St, Los Angeles,CA,90001 +254170,AA Batteries (4-pack),1,3.84,2019-09-17 12:33:00,491 Elm St, New York City,NY,10001 +254171,Lightning Charging Cable,1,14.95,2019-09-21 19:10:00,445 Jefferson St, Boston,MA,02215 +254172,USB-C Charging Cable,1,11.95,2019-09-11 13:53:00,779 South St, Seattle,WA,98101 +254173,AAA Batteries (4-pack),1,2.99,2019-09-13 20:32:00,584 13th St, Atlanta,GA,30301 +254174,AAA Batteries (4-pack),1,2.99,2019-09-12 08:56:00,43 11th St, Dallas,TX,75001 +254175,Google Phone,1,600.0,2019-09-04 08:07:00,180 Lincoln St, Portland,OR,97035 +254175,USB-C Charging Cable,1,11.95,2019-09-04 08:07:00,180 Lincoln St, Portland,OR,97035 +254176,AA Batteries (4-pack),2,3.84,2019-09-14 14:51:00,816 Center St, Boston,MA,02215 +254177,Bose SoundSport Headphones,1,99.99,2019-09-10 19:04:00,514 Lakeview St, Los Angeles,CA,90001 +254178,AA Batteries (4-pack),2,3.84,2019-09-17 11:17:00,541 Park St, Los Angeles,CA,90001 +254179,27in FHD Monitor,1,149.99,2019-09-29 15:27:00,878 14th St, Atlanta,GA,30301 +254180,Lightning Charging Cable,1,14.95,2019-09-19 13:18:00,827 Jefferson St, San Francisco,CA,94016 +254181,27in 4K Gaming Monitor,1,389.99,2019-09-21 21:41:00,274 Center St, Atlanta,GA,30301 +254182,USB-C Charging Cable,1,11.95,2019-09-23 17:50:00,813 Lakeview St, San Francisco,CA,94016 +254183,Wired Headphones,1,11.99,2019-09-03 13:26:00,768 1st St, San Francisco,CA,94016 +254184,27in FHD Monitor,1,149.99,2019-09-13 21:11:00,626 Washington St, Boston,MA,02215 +254185,Lightning Charging Cable,1,14.95,2019-09-26 19:56:00,964 Jackson St, Dallas,TX,75001 +254186,AAA Batteries (4-pack),2,2.99,2019-09-05 15:00:00,575 Sunset St, Seattle,WA,98101 +254187,Apple Airpods Headphones,1,150.0,2019-09-23 21:08:00,705 Willow St, Seattle,WA,98101 +254188,AAA Batteries (4-pack),1,2.99,2019-09-27 11:47:00,4 North St, Portland,OR,97035 +254189,20in Monitor,1,109.99,2019-09-04 18:25:00,776 Jefferson St, San Francisco,CA,94016 +254190,Lightning Charging Cable,1,14.95,2019-09-17 11:23:00,940 12th St, New York City,NY,10001 +254191,AAA Batteries (4-pack),2,2.99,2019-09-04 14:22:00,36 Willow St, Austin,TX,73301 +254192,AAA Batteries (4-pack),1,2.99,2019-09-22 06:46:00,442 5th St, Boston,MA,02215 +254193,Apple Airpods Headphones,1,150.0,2019-09-13 08:24:00,519 Dogwood St, Boston,MA,02215 +254194,Lightning Charging Cable,1,14.95,2019-09-14 18:42:00,629 Main St, Los Angeles,CA,90001 +254195,Bose SoundSport Headphones,1,99.99,2019-09-10 18:13:00,694 Highland St, Seattle,WA,98101 +254196,USB-C Charging Cable,1,11.95,2019-09-13 23:06:00,718 14th St, San Francisco,CA,94016 +254197,Apple Airpods Headphones,1,150.0,2019-09-21 21:11:00,772 Madison St, Los Angeles,CA,90001 +254198,Lightning Charging Cable,1,14.95,2019-09-21 20:34:00,514 Hill St, Los Angeles,CA,90001 +254199,Apple Airpods Headphones,1,150.0,2019-09-08 09:15:00,696 11th St, Boston,MA,02215 +254200,Lightning Charging Cable,1,14.95,2019-09-22 07:06:00,296 9th St, Dallas,TX,75001 +254201,20in Monitor,1,109.99,2019-09-21 10:27:00,384 Jefferson St, San Francisco,CA,94016 +254202,34in Ultrawide Monitor,1,379.99,2019-09-21 21:18:00,343 1st St, Seattle,WA,98101 +254203,iPhone,1,700.0,2019-09-09 23:23:00,510 11th St, Dallas,TX,75001 +254204,34in Ultrawide Monitor,1,379.99,2019-09-29 18:04:00,530 Pine St, San Francisco,CA,94016 +254205,iPhone,1,700.0,2019-09-25 16:00:00,896 14th St, Dallas,TX,75001 +254206,Flatscreen TV,1,300.0,2019-09-28 18:49:00,928 14th St, Seattle,WA,98101 +254207,AAA Batteries (4-pack),4,2.99,2019-09-11 13:53:00,558 Forest St, New York City,NY,10001 +254208,Wired Headphones,1,11.99,2019-09-04 14:09:00,785 South St, San Francisco,CA,94016 +254209,Google Phone,1,600.0,2019-09-02 11:36:00,242 West St, Boston,MA,02215 +254210,ThinkPad Laptop,1,999.99,2019-09-28 06:56:00,725 Ridge St, Los Angeles,CA,90001 +254211,AAA Batteries (4-pack),1,2.99,2019-09-10 03:34:00,48 Dogwood St, San Francisco,CA,94016 +254212,Lightning Charging Cable,1,14.95,2019-09-09 01:39:00,196 Lake St, Portland,ME,04101 +254213,27in FHD Monitor,1,149.99,2019-09-27 11:00:00,809 Cherry St, New York City,NY,10001 +254214,LG Dryer,1,600.0,2019-09-09 20:46:00,647 11th St, New York City,NY,10001 +254215,USB-C Charging Cable,1,11.95,2019-09-01 20:48:00,232 Sunset St, Los Angeles,CA,90001 +254216,USB-C Charging Cable,1,11.95,2019-09-03 20:51:00,503 Main St, New York City,NY,10001 +254217,27in 4K Gaming Monitor,1,389.99,2019-09-18 15:21:00,801 Elm St, San Francisco,CA,94016 +254218,20in Monitor,1,109.99,2019-09-30 09:01:00,488 Walnut St, Atlanta,GA,30301 +254219,Macbook Pro Laptop,1,1700.0,2019-09-01 17:07:00,658 Lakeview St, Los Angeles,CA,90001 +254220,Wired Headphones,1,11.99,2019-09-25 01:31:00,459 Hickory St, San Francisco,CA,94016 +254221,iPhone,1,700.0,2019-09-19 21:40:00,3 10th St, Seattle,WA,98101 +254222,USB-C Charging Cable,1,11.95,2019-09-21 13:43:00,25 4th St, Dallas,TX,75001 +254223,Lightning Charging Cable,1,14.95,2019-09-08 14:58:00,934 13th St, New York City,NY,10001 +254224,Lightning Charging Cable,1,14.95,2019-09-09 12:22:00,178 Madison St, Austin,TX,73301 +254225,27in FHD Monitor,1,149.99,2019-09-18 18:45:00,147 7th St, San Francisco,CA,94016 +254226,34in Ultrawide Monitor,1,379.99,2019-09-08 17:55:00,825 Spruce St, Boston,MA,02215 +254227,20in Monitor,1,109.99,2019-09-16 20:51:00,47 Maple St, New York City,NY,10001 +254228,Wired Headphones,1,11.99,2019-09-22 14:50:00,247 Lakeview St, Los Angeles,CA,90001 +254229,Bose SoundSport Headphones,1,99.99,2019-09-23 15:21:00,177 Meadow St, Atlanta,GA,30301 +254230,iPhone,1,700.0,2019-09-29 18:56:00,529 6th St, Los Angeles,CA,90001 +254231,USB-C Charging Cable,1,11.95,2019-09-06 11:08:00,938 Wilson St, Los Angeles,CA,90001 +254232,USB-C Charging Cable,1,11.95,2019-09-02 17:22:00,854 Maple St, Los Angeles,CA,90001 +254233,27in 4K Gaming Monitor,1,389.99,2019-09-15 21:19:00,39 Washington St, New York City,NY,10001 +254234,Bose SoundSport Headphones,1,99.99,2019-09-19 12:54:00,682 14th St, Austin,TX,73301 +254235,Wired Headphones,1,11.99,2019-09-03 19:58:00,63 Jackson St, New York City,NY,10001 +254236,Wired Headphones,1,11.99,2019-09-21 14:29:00,948 Pine St, Boston,MA,02215 +254237,AA Batteries (4-pack),1,3.84,2019-09-16 05:26:00,708 Main St, Los Angeles,CA,90001 +254238,20in Monitor,1,109.99,2019-09-06 00:31:00,477 Madison St, San Francisco,CA,94016 +254239,Flatscreen TV,1,300.0,2019-09-29 10:43:00,476 Meadow St, Boston,MA,02215 +254240,Wired Headphones,1,11.99,2019-09-08 12:38:00,322 Elm St, Boston,MA,02215 +254241,ThinkPad Laptop,1,999.99,2019-09-04 19:44:00,806 North St, Atlanta,GA,30301 +254242,Wired Headphones,1,11.99,2019-09-13 01:00:00,353 8th St, Dallas,TX,75001 +254243,AAA Batteries (4-pack),1,2.99,2019-09-23 18:55:00,731 Cherry St, Atlanta,GA,30301 +254244,Bose SoundSport Headphones,1,99.99,2019-09-17 16:24:00,355 Lakeview St, New York City,NY,10001 +254245,Lightning Charging Cable,1,14.95,2019-09-30 16:36:00,383 Jefferson St, Portland,OR,97035 +254246,34in Ultrawide Monitor,1,379.99,2019-09-21 14:19:00,332 Center St, Boston,MA,02215 +254247,27in FHD Monitor,1,149.99,2019-09-12 20:03:00,397 Main St, Dallas,TX,75001 +254248,AAA Batteries (4-pack),1,2.99,2019-09-21 00:25:00,562 14th St, Los Angeles,CA,90001 +254249,AA Batteries (4-pack),1,3.84,2019-09-16 12:54:00,543 Center St, San Francisco,CA,94016 +254250,Lightning Charging Cable,1,14.95,2019-09-06 21:50:00,502 North St, Los Angeles,CA,90001 +254251,Bose SoundSport Headphones,1,99.99,2019-09-20 14:33:00,57 Lincoln St, San Francisco,CA,94016 +254252,iPhone,1,700.0,2019-09-11 00:00:00,364 Jefferson St, Los Angeles,CA,90001 +254253,27in FHD Monitor,1,149.99,2019-09-06 12:53:00,404 9th St, San Francisco,CA,94016 +254254,AAA Batteries (4-pack),1,2.99,2019-09-20 20:42:00,624 9th St, Portland,ME,04101 +254255,34in Ultrawide Monitor,1,379.99,2019-09-11 21:53:00,53 Willow St, Dallas,TX,75001 +254256,USB-C Charging Cable,1,11.95,2019-09-02 14:15:00,402 Jackson St, New York City,NY,10001 +254257,AAA Batteries (4-pack),2,2.99,2019-09-06 15:58:00,72 Cedar St, San Francisco,CA,94016 +254258,iPhone,1,700.0,2019-09-09 21:21:00,48 Church St, Boston,MA,02215 +254258,Lightning Charging Cable,1,14.95,2019-09-09 21:21:00,48 Church St, Boston,MA,02215 +254259,Lightning Charging Cable,1,14.95,2019-09-13 11:58:00,919 Lincoln St, Los Angeles,CA,90001 +254260,LG Washing Machine,1,600.0,2019-09-06 19:23:00,562 Cherry St, Los Angeles,CA,90001 +254261,USB-C Charging Cable,1,11.95,2019-09-16 13:57:00,193 12th St, Austin,TX,73301 +254262,AA Batteries (4-pack),1,3.84,2019-09-03 10:30:00,644 River St, Los Angeles,CA,90001 +254263,34in Ultrawide Monitor,1,379.99,2019-09-12 22:42:00,491 10th St, Los Angeles,CA,90001 +254264,AA Batteries (4-pack),2,3.84,2019-09-10 12:50:00,810 Park St, Austin,TX,73301 +254265,AAA Batteries (4-pack),1,2.99,2019-09-09 11:41:00,903 River St, Los Angeles,CA,90001 +254266,Bose SoundSport Headphones,1,99.99,2019-09-15 18:36:00,549 Forest St, New York City,NY,10001 +254267,USB-C Charging Cable,1,11.95,2019-09-24 13:08:00,913 Lake St, Atlanta,GA,30301 +254268,Google Phone,1,600.0,2019-09-22 16:47:00,769 Church St, New York City,NY,10001 +254269,Wired Headphones,1,11.99,2019-09-17 13:58:00,952 Lake St, San Francisco,CA,94016 +254270,27in FHD Monitor,1,149.99,2019-09-05 17:28:00,252 10th St, Portland,OR,97035 +254271,Google Phone,1,600.0,2019-09-15 22:11:00,21 Elm St, New York City,NY,10001 +254272,27in FHD Monitor,1,149.99,2019-09-18 01:28:00,551 Maple St, San Francisco,CA,94016 +254272,USB-C Charging Cable,1,11.95,2019-09-18 01:28:00,551 Maple St, San Francisco,CA,94016 +254273,AA Batteries (4-pack),1,3.84,2019-09-02 06:35:00,357 Sunset St, Atlanta,GA,30301 +254274,LG Washing Machine,1,600.0,2019-09-15 20:55:00,648 Pine St, New York City,NY,10001 +254275,USB-C Charging Cable,1,11.95,2019-09-11 06:50:00,798 Chestnut St, New York City,NY,10001 +254276,Lightning Charging Cable,1,14.95,2019-09-11 22:46:00,317 14th St, San Francisco,CA,94016 +254277,iPhone,1,700.0,2019-09-25 17:34:00,469 Hickory St, San Francisco,CA,94016 +254277,Wired Headphones,1,11.99,2019-09-25 17:34:00,469 Hickory St, San Francisco,CA,94016 +254278,34in Ultrawide Monitor,1,379.99,2019-09-03 21:54:00,249 7th St, Austin,TX,73301 +254279,Google Phone,1,600.0,2019-09-30 19:59:00,950 North St, Los Angeles,CA,90001 +254280,Apple Airpods Headphones,1,150.0,2019-09-24 15:11:00,42 Johnson St, Dallas,TX,75001 +254281,Bose SoundSport Headphones,1,99.99,2019-09-10 15:24:00,496 Lake St, San Francisco,CA,94016 +254282,Lightning Charging Cable,1,14.95,2019-09-07 11:34:00,811 Maple St, New York City,NY,10001 +254283,USB-C Charging Cable,1,11.95,2019-09-04 13:29:00,687 7th St, New York City,NY,10001 +254284,AAA Batteries (4-pack),2,2.99,2019-09-02 22:11:00,573 11th St, Dallas,TX,75001 +254285,AAA Batteries (4-pack),2,2.99,2019-09-19 12:40:00,769 River St, Austin,TX,73301 +254286,iPhone,1,700.0,2019-09-13 12:28:00,951 Sunset St, Los Angeles,CA,90001 +254287,AA Batteries (4-pack),1,3.84,2019-09-17 11:45:00,936 Elm St, New York City,NY,10001 +254288,Google Phone,1,600.0,2019-09-20 19:39:00,110 8th St, Atlanta,GA,30301 +254289,34in Ultrawide Monitor,1,379.99,2019-09-01 16:39:00,132 Forest St, New York City,NY,10001 +254290,AAA Batteries (4-pack),1,2.99,2019-09-08 10:10:00,670 Washington St, Austin,TX,73301 +254291,Lightning Charging Cable,1,14.95,2019-09-15 21:36:00,70 Willow St, New York City,NY,10001 +254292,USB-C Charging Cable,1,11.95,2019-09-26 17:55:00,299 7th St, Seattle,WA,98101 +254293,USB-C Charging Cable,1,11.95,2019-09-20 17:54:00,289 Ridge St, Boston,MA,02215 +254294,Macbook Pro Laptop,1,1700.0,2019-09-10 00:49:00,367 Chestnut St, Boston,MA,02215 +254295,Bose SoundSport Headphones,1,99.99,2019-09-28 04:12:00,525 Cedar St, New York City,NY,10001 +254296,Bose SoundSport Headphones,1,99.99,2019-09-26 11:06:00,774 Wilson St, San Francisco,CA,94016 +254297,Lightning Charging Cable,1,14.95,2019-09-29 20:20:00,56 Hickory St, Dallas,TX,75001 +254298,Wired Headphones,1,11.99,2019-09-28 19:43:00,281 12th St, San Francisco,CA,94016 +254299,AA Batteries (4-pack),1,3.84,2019-09-27 08:36:00,119 Forest St, Los Angeles,CA,90001 +254300,AA Batteries (4-pack),1,3.84,2019-09-04 19:44:00,278 4th St, San Francisco,CA,94016 +254300,USB-C Charging Cable,1,11.95,2019-09-04 19:44:00,278 4th St, San Francisco,CA,94016 +254301,Google Phone,1,600.0,2019-09-17 17:47:00,506 Willow St, San Francisco,CA,94016 +254302,AAA Batteries (4-pack),1,2.99,2019-09-29 06:25:00,6 Madison St, Atlanta,GA,30301 +254303,Lightning Charging Cable,1,14.95,2019-09-09 10:36:00,272 Park St, New York City,NY,10001 +254304,AAA Batteries (4-pack),2,2.99,2019-09-24 17:47:00,380 1st St, New York City,NY,10001 +254305,Bose SoundSport Headphones,1,99.99,2019-09-26 00:37:00,8 South St, San Francisco,CA,94016 +254306,iPhone,1,700.0,2019-09-30 23:53:00,509 6th St, San Francisco,CA,94016 +254306,Apple Airpods Headphones,1,150.0,2019-09-30 23:53:00,509 6th St, San Francisco,CA,94016 +254307,Apple Airpods Headphones,1,150.0,2019-09-06 12:29:00,755 14th St, Dallas,TX,75001 +254308,Lightning Charging Cable,1,14.95,2019-09-07 19:33:00,637 Johnson St, Los Angeles,CA,90001 +254309,Vareebadd Phone,1,400.0,2019-09-21 13:58:00,854 6th St, Seattle,WA,98101 +254310,Bose SoundSport Headphones,1,99.99,2019-09-12 15:35:00,307 Ridge St, Los Angeles,CA,90001 +254311,iPhone,1,700.0,2019-09-09 18:49:00,907 6th St, San Francisco,CA,94016 +254312,Bose SoundSport Headphones,1,99.99,2019-09-01 12:51:00,857 11th St, San Francisco,CA,94016 +254313,27in 4K Gaming Monitor,1,389.99,2019-09-29 19:44:00,143 Park St, Dallas,TX,75001 +254314,27in 4K Gaming Monitor,1,389.99,2019-09-15 14:29:00,906 5th St, Portland,OR,97035 +254315,27in FHD Monitor,1,149.99,2019-09-04 14:57:00,950 Park St, New York City,NY,10001 +254316,Lightning Charging Cable,1,14.95,2019-09-08 12:39:00,635 Hickory St, San Francisco,CA,94016 +254317,Google Phone,1,600.0,2019-09-29 10:44:00,679 8th St, Austin,TX,73301 +254318,Apple Airpods Headphones,1,150.0,2019-09-23 07:07:00,261 4th St, Portland,OR,97035 +254319,Flatscreen TV,1,300.0,2019-09-11 05:56:00,49 Meadow St, Seattle,WA,98101 +254320,AAA Batteries (4-pack),1,2.99,2019-09-17 19:48:00,464 8th St, San Francisco,CA,94016 +254321,27in FHD Monitor,1,149.99,2019-09-17 13:45:00,974 Dogwood St, San Francisco,CA,94016 +254322,34in Ultrawide Monitor,1,379.99,2019-09-22 13:48:00,526 5th St, Seattle,WA,98101 +254323,ThinkPad Laptop,1,999.99,2019-09-10 11:37:00,444 Ridge St, San Francisco,CA,94016 +254324,AA Batteries (4-pack),1,3.84,2019-09-06 00:23:00,66 Elm St, New York City,NY,10001 +254325,USB-C Charging Cable,1,11.95,2019-09-05 13:35:00,172 11th St, Dallas,TX,75001 +254326,Lightning Charging Cable,1,14.95,2019-09-23 12:09:00,134 8th St, Portland,ME,04101 +254327,Wired Headphones,1,11.99,2019-09-25 23:31:00,415 10th St, Austin,TX,73301 +254328,27in 4K Gaming Monitor,1,389.99,2019-09-21 16:30:00,841 Johnson St, Boston,MA,02215 +254329,Wired Headphones,1,11.99,2019-09-13 13:28:00,396 Church St, San Francisco,CA,94016 +254330,USB-C Charging Cable,1,11.95,2019-09-28 20:52:00,487 Hill St, Portland,OR,97035 +254331,34in Ultrawide Monitor,1,379.99,2019-09-22 19:02:00,591 Johnson St, Dallas,TX,75001 +254332,Wired Headphones,1,11.99,2019-09-10 10:27:00,284 Forest St, Austin,TX,73301 +254333,Lightning Charging Cable,1,14.95,2019-09-11 09:56:00,929 Sunset St, Austin,TX,73301 +254334,27in FHD Monitor,1,149.99,2019-09-01 22:01:00,569 South St, Dallas,TX,75001 +254335,USB-C Charging Cable,1,11.95,2019-09-15 21:29:00,533 Chestnut St, San Francisco,CA,94016 +254336,USB-C Charging Cable,1,11.95,2019-09-23 12:16:00,69 11th St, San Francisco,CA,94016 +254337,AAA Batteries (4-pack),1,2.99,2019-09-11 23:00:00,577 River St, San Francisco,CA,94016 +254338,AA Batteries (4-pack),2,3.84,2019-09-14 23:01:00,442 Sunset St, Dallas,TX,75001 +254339,AA Batteries (4-pack),1,3.84,2019-09-25 14:17:00,426 4th St, Boston,MA,02215 +254340,Flatscreen TV,1,300.0,2019-09-01 16:07:00,347 Hill St, Portland,ME,04101 +254341,20in Monitor,1,109.99,2019-09-11 09:16:00,821 5th St, Los Angeles,CA,90001 +254342,Bose SoundSport Headphones,1,99.99,2019-09-28 20:55:00,576 Sunset St, San Francisco,CA,94016 +254343,AA Batteries (4-pack),1,3.84,2019-09-08 13:25:00,260 River St, New York City,NY,10001 +254344,AA Batteries (4-pack),1,3.84,2019-09-27 18:37:00,705 Main St, Boston,MA,02215 +254345,Lightning Charging Cable,1,14.95,2019-09-11 22:02:00,311 Sunset St, Atlanta,GA,30301 +254346,AAA Batteries (4-pack),1,2.99,2019-09-28 05:06:00,83 North St, Boston,MA,02215 +254347,Wired Headphones,1,11.99,2019-09-25 12:43:00,690 Maple St, New York City,NY,10001 +254348,27in 4K Gaming Monitor,1,389.99,2019-09-24 09:48:00,368 Walnut St, Atlanta,GA,30301 +254348,Apple Airpods Headphones,1,150.0,2019-09-24 09:48:00,368 Walnut St, Atlanta,GA,30301 +254349,34in Ultrawide Monitor,1,379.99,2019-09-07 14:48:00,26 West St, Austin,TX,73301 +254350,Wired Headphones,2,11.99,2019-09-21 12:01:00,943 Lakeview St, San Francisco,CA,94016 +254351,Wired Headphones,1,11.99,2019-09-20 11:22:00,595 Lakeview St, Boston,MA,02215 +254352,Apple Airpods Headphones,1,150.0,2019-09-16 08:54:00,854 Wilson St, New York City,NY,10001 +254353,34in Ultrawide Monitor,1,379.99,2019-09-15 12:01:00,269 Spruce St, Seattle,WA,98101 +254354,34in Ultrawide Monitor,1,379.99,2019-09-12 12:21:00,250 4th St, Boston,MA,02215 +254355,USB-C Charging Cable,2,11.95,2019-09-27 07:47:00,372 Sunset St, Dallas,TX,75001 +254356,Apple Airpods Headphones,1,150.0,2019-09-23 22:22:00,400 Highland St, Austin,TX,73301 +254357,USB-C Charging Cable,1,11.95,2019-09-13 13:25:00,303 Park St, San Francisco,CA,94016 +254358,AAA Batteries (4-pack),1,2.99,2019-09-07 21:52:00,754 River St, San Francisco,CA,94016 +254359,USB-C Charging Cable,1,11.95,2019-09-02 19:27:00,818 Ridge St, San Francisco,CA,94016 +254360,AAA Batteries (4-pack),3,2.99,2019-09-02 11:01:00,962 10th St, Boston,MA,02215 +254361,20in Monitor,1,109.99,2019-09-21 18:16:00,668 Main St, San Francisco,CA,94016 +254361,USB-C Charging Cable,1,11.95,2019-09-21 18:16:00,668 Main St, San Francisco,CA,94016 +254362,Bose SoundSport Headphones,1,99.99,2019-09-25 14:44:00,847 Cherry St, Los Angeles,CA,90001 +254363,Apple Airpods Headphones,1,150.0,2019-09-12 19:06:00,694 Madison St, Austin,TX,73301 +254364,AA Batteries (4-pack),2,3.84,2019-09-11 10:47:00,58 Sunset St, Los Angeles,CA,90001 +254365,27in FHD Monitor,1,149.99,2019-09-25 00:35:00,819 Willow St, Los Angeles,CA,90001 +254366,USB-C Charging Cable,1,11.95,2019-09-19 20:19:00,332 12th St, San Francisco,CA,94016 +254367,27in FHD Monitor,1,149.99,2019-09-30 19:11:00,397 Church St, San Francisco,CA,94016 +254368,Bose SoundSport Headphones,1,99.99,2019-09-23 15:52:00,971 4th St, Seattle,WA,98101 +254369,AAA Batteries (4-pack),1,2.99,2019-09-17 19:32:00,823 Hill St, New York City,NY,10001 +254370,AAA Batteries (4-pack),1,2.99,2019-09-14 20:30:00,285 Willow St, Dallas,TX,75001 +254371,Vareebadd Phone,1,400.0,2019-09-04 12:36:00,655 Walnut St, San Francisco,CA,94016 +254371,Wired Headphones,1,11.99,2019-09-04 12:36:00,655 Walnut St, San Francisco,CA,94016 +254372,27in 4K Gaming Monitor,1,389.99,2019-09-10 10:04:00,698 Center St, Los Angeles,CA,90001 +254373,Wired Headphones,1,11.99,2019-09-14 16:20:00,813 Wilson St, Los Angeles,CA,90001 +254374,Flatscreen TV,1,300.0,2019-09-06 16:15:00,348 4th St, San Francisco,CA,94016 +254375,AAA Batteries (4-pack),1,2.99,2019-09-26 20:39:00,488 Meadow St, San Francisco,CA,94016 +254376,iPhone,1,700.0,2019-09-24 18:27:00,484 10th St, Los Angeles,CA,90001 +254377,AAA Batteries (4-pack),1,2.99,2019-09-30 13:17:00,90 11th St, Los Angeles,CA,90001 +254378,Bose SoundSport Headphones,1,99.99,2019-09-09 15:41:00,358 Spruce St, Atlanta,GA,30301 +254379,Lightning Charging Cable,1,14.95,2019-09-22 15:11:00,303 1st St, New York City,NY,10001 +254380,Flatscreen TV,1,300.0,2019-09-01 21:55:00,40 Ridge St, San Francisco,CA,94016 +254381,Flatscreen TV,1,300.0,2019-09-17 12:38:00,209 10th St, Boston,MA,02215 +254382,Apple Airpods Headphones,1,150.0,2019-09-15 19:10:00,689 Spruce St, Los Angeles,CA,90001 +254383,27in FHD Monitor,1,149.99,2019-09-30 07:58:00,914 Pine St, Boston,MA,02215 +254384,20in Monitor,1,109.99,2019-09-25 10:56:00,316 Cherry St, Los Angeles,CA,90001 +254385,Google Phone,1,600.0,2019-09-18 11:43:00,163 Wilson St, New York City,NY,10001 +254386,20in Monitor,1,109.99,2019-09-13 10:03:00,956 Sunset St, Seattle,WA,98101 +254386,Lightning Charging Cable,1,14.95,2019-09-13 10:03:00,956 Sunset St, Seattle,WA,98101 +254387,AAA Batteries (4-pack),1,2.99,2019-09-09 12:24:00,156 1st St, New York City,NY,10001 +254388,ThinkPad Laptop,1,999.99,2019-09-23 16:46:00,202 Willow St, Boston,MA,02215 +254389,27in FHD Monitor,1,149.99,2019-09-16 20:01:00,424 Jackson St, San Francisco,CA,94016 +254390,Lightning Charging Cable,1,14.95,2019-09-10 11:47:00,66 7th St, San Francisco,CA,94016 +254391,AAA Batteries (4-pack),1,2.99,2019-09-20 10:33:00,724 Ridge St, San Francisco,CA,94016 +254392,20in Monitor,1,109.99,2019-09-04 19:44:00,840 6th St, Seattle,WA,98101 +254393,Google Phone,1,600.0,2019-09-14 07:42:00,775 River St, San Francisco,CA,94016 +254394,Lightning Charging Cable,1,14.95,2019-09-14 23:42:00,500 Hickory St, Seattle,WA,98101 +254395,AAA Batteries (4-pack),2,2.99,2019-09-27 16:43:00,852 Forest St, Boston,MA,02215 +254396,Wired Headphones,2,11.99,2019-09-27 14:18:00,696 Meadow St, Los Angeles,CA,90001 +254397,AA Batteries (4-pack),1,3.84,2019-09-01 23:59:00,243 Hill St, Los Angeles,CA,90001 +254398,AA Batteries (4-pack),1,3.84,2019-09-23 19:53:00,959 Walnut St, Boston,MA,02215 +254399,Lightning Charging Cable,1,14.95,2019-09-21 17:44:00,325 4th St, San Francisco,CA,94016 +254400,AAA Batteries (4-pack),3,2.99,2019-09-08 21:22:00,610 Meadow St, Boston,MA,02215 +254401,27in 4K Gaming Monitor,1,389.99,2019-09-20 16:36:00,738 North St, New York City,NY,10001 +254402,Macbook Pro Laptop,1,1700.0,2019-09-14 18:19:00,584 Elm St, New York City,NY,10001 +254403,Lightning Charging Cable,1,14.95,2019-09-21 17:44:00,853 Spruce St, Boston,MA,02215 +254404,Bose SoundSport Headphones,1,99.99,2019-09-18 13:51:00,248 13th St, San Francisco,CA,94016 +254405,Apple Airpods Headphones,1,150.0,2019-09-25 13:51:00,419 Wilson St, Los Angeles,CA,90001 +254406,Apple Airpods Headphones,1,150.0,2019-09-25 19:20:00,541 12th St, San Francisco,CA,94016 +254407,34in Ultrawide Monitor,1,379.99,2019-09-19 10:36:00,468 Wilson St, Los Angeles,CA,90001 +254408,34in Ultrawide Monitor,1,379.99,2019-09-05 23:18:00,88 Willow St, San Francisco,CA,94016 +254409,USB-C Charging Cable,1,11.95,2019-09-21 21:05:00,528 Hickory St, San Francisco,CA,94016 +254410,AAA Batteries (4-pack),1,2.99,2019-09-16 17:39:00,708 13th St, New York City,NY,10001 +254411,34in Ultrawide Monitor,1,379.99,2019-09-05 16:15:00,602 12th St, Dallas,TX,75001 +254412,Lightning Charging Cable,2,14.95,2019-09-07 14:16:00,791 Cedar St, Atlanta,GA,30301 +254413,Lightning Charging Cable,1,14.95,2019-09-07 18:15:00,438 Church St, Boston,MA,02215 +254414,AA Batteries (4-pack),1,3.84,2019-09-29 09:04:00,235 4th St, New York City,NY,10001 +254415,ThinkPad Laptop,1,999.99,2019-09-20 21:05:00,999 Washington St, Los Angeles,CA,90001 +254416,iPhone,1,700.0,2019-09-19 14:19:00,529 Main St, New York City,NY,10001 +254417,AAA Batteries (4-pack),1,2.99,2019-09-12 10:43:00,906 Lake St, New York City,NY,10001 +254418,27in FHD Monitor,1,149.99,2019-09-13 19:05:00,954 Lakeview St, Austin,TX,73301 +254419,AA Batteries (4-pack),1,3.84,2019-09-28 14:20:00,111 Spruce St, New York City,NY,10001 +254420,27in 4K Gaming Monitor,1,389.99,2019-09-30 14:52:00,229 Cherry St, Boston,MA,02215 +254421,Apple Airpods Headphones,1,150.0,2019-09-08 14:11:00,424 Wilson St, Atlanta,GA,30301 +254422,Wired Headphones,1,11.99,2019-09-14 20:02:00,608 Washington St, Dallas,TX,75001 +254423,USB-C Charging Cable,1,11.95,2019-09-05 16:09:00,621 Elm St, Austin,TX,73301 +254424,Apple Airpods Headphones,1,150.0,2019-09-06 14:40:00,57 Walnut St, Austin,TX,73301 +254425,Lightning Charging Cable,1,14.95,2019-09-18 22:30:00,497 Cherry St, New York City,NY,10001 +254426,Lightning Charging Cable,1,14.95,2019-09-10 14:06:00,705 South St, Los Angeles,CA,90001 +254427,USB-C Charging Cable,2,11.95,2019-09-15 10:22:00,434 Park St, Austin,TX,73301 +254428,USB-C Charging Cable,2,11.95,2019-09-16 16:40:00,77 Hill St, San Francisco,CA,94016 +254429,ThinkPad Laptop,1,999.99,2019-09-02 15:21:00,488 Church St, Los Angeles,CA,90001 +254430,AA Batteries (4-pack),1,3.84,2019-09-09 09:34:00,24 River St, San Francisco,CA,94016 +254431,Lightning Charging Cable,1,14.95,2019-09-29 13:42:00,957 8th St, Los Angeles,CA,90001 +254432,Lightning Charging Cable,1,14.95,2019-09-18 22:23:00,329 Elm St, Los Angeles,CA,90001 +254433,27in FHD Monitor,1,149.99,2019-09-01 21:17:00,244 Adams St, Austin,TX,73301 +254434,Lightning Charging Cable,1,14.95,2019-09-13 10:53:00,255 Lincoln St, Portland,OR,97035 +254435,Bose SoundSport Headphones,1,99.99,2019-09-01 18:08:00,368 Highland St, San Francisco,CA,94016 +254435,Flatscreen TV,1,300.0,2019-09-01 18:08:00,368 Highland St, San Francisco,CA,94016 +254436,AAA Batteries (4-pack),1,2.99,2019-09-11 23:17:00,724 Madison St, San Francisco,CA,94016 +254437,Lightning Charging Cable,1,14.95,2019-09-23 09:28:00,351 Hill St, Boston,MA,02215 +254438,27in 4K Gaming Monitor,1,389.99,2019-09-14 16:08:00,449 Willow St, Atlanta,GA,30301 +254439,AAA Batteries (4-pack),1,2.99,2019-09-10 14:14:00,363 Willow St, San Francisco,CA,94016 +254440,AA Batteries (4-pack),2,3.84,2019-09-16 17:25:00,173 Madison St, San Francisco,CA,94016 +254441,Apple Airpods Headphones,1,150.0,2019-09-10 09:47:00,519 2nd St, New York City,NY,10001 +254442,ThinkPad Laptop,1,999.99,2019-09-26 20:54:00,801 1st St, San Francisco,CA,94016 +254443,Wired Headphones,1,11.99,2019-09-01 11:26:00,299 Chestnut St, San Francisco,CA,94016 +254444,USB-C Charging Cable,1,11.95,2019-09-11 15:24:00,217 Lake St, New York City,NY,10001 +254445,USB-C Charging Cable,1,11.95,2019-09-21 00:10:00,723 Cherry St, San Francisco,CA,94016 +254446,Bose SoundSport Headphones,1,99.99,2019-09-25 16:21:00,90 Meadow St, Los Angeles,CA,90001 +254447,Bose SoundSport Headphones,1,99.99,2019-09-24 20:20:00,982 Chestnut St, Portland,OR,97035 +254448,iPhone,1,700.0,2019-09-30 16:05:00,949 12th St, San Francisco,CA,94016 +254449,AAA Batteries (4-pack),2,2.99,2019-09-29 18:09:00,447 12th St, Atlanta,GA,30301 +254450,AA Batteries (4-pack),2,3.84,2019-09-17 13:19:00,500 Madison St, New York City,NY,10001 +254451,Lightning Charging Cable,1,14.95,2019-09-30 10:06:00,791 Chestnut St, Boston,MA,02215 +254452,AAA Batteries (4-pack),1,2.99,2019-09-06 16:56:00,147 Meadow St, San Francisco,CA,94016 +254453,Bose SoundSport Headphones,1,99.99,2019-09-16 13:41:00,189 West St, Atlanta,GA,30301 +254454,AA Batteries (4-pack),1,3.84,2019-09-18 08:15:00,296 2nd St, Los Angeles,CA,90001 +254455,ThinkPad Laptop,1,999.99,2019-09-15 17:39:00,585 Sunset St, New York City,NY,10001 +254455,Bose SoundSport Headphones,1,99.99,2019-09-15 17:39:00,585 Sunset St, New York City,NY,10001 +254456,Google Phone,1,600.0,2019-09-21 22:42:00,880 8th St, Los Angeles,CA,90001 +254457,Lightning Charging Cable,1,14.95,2019-09-25 23:24:00,677 Main St, Austin,TX,73301 +254458,Macbook Pro Laptop,1,1700.0,2019-09-03 19:10:00,607 Elm St, Los Angeles,CA,90001 +254459,ThinkPad Laptop,1,999.99,2019-09-29 19:55:00,105 Center St, Los Angeles,CA,90001 +254460,iPhone,1,700.0,2019-09-26 11:32:00,208 Lincoln St, Los Angeles,CA,90001 +254461,USB-C Charging Cable,1,11.95,2019-09-01 13:51:00,904 North St, Seattle,WA,98101 +254462,USB-C Charging Cable,1,11.95,2019-09-16 13:59:00,95 8th St, San Francisco,CA,94016 +254463,AAA Batteries (4-pack),1,2.99,2019-09-10 23:28:00,418 14th St, San Francisco,CA,94016 +254464,Wired Headphones,1,11.99,2019-09-01 22:26:00,181 Lakeview St, Boston,MA,02215 +254465,AAA Batteries (4-pack),1,2.99,2019-09-12 20:56:00,27 Lake St, San Francisco,CA,94016 +254466,Lightning Charging Cable,1,14.95,2019-09-21 07:55:00,767 Highland St, Los Angeles,CA,90001 +254467,AAA Batteries (4-pack),2,2.99,2019-09-23 15:51:00,752 Jackson St, Dallas,TX,75001 +254468,AA Batteries (4-pack),1,3.84,2019-09-30 15:46:00,195 4th St, Seattle,WA,98101 +254469,AA Batteries (4-pack),1,3.84,2019-09-22 11:58:00,782 Church St, Los Angeles,CA,90001 +254470,Bose SoundSport Headphones,1,99.99,2019-09-07 06:32:00,575 5th St, New York City,NY,10001 +254471,AA Batteries (4-pack),1,3.84,2019-09-06 23:18:00,801 Sunset St, San Francisco,CA,94016 +254472,Wired Headphones,1,11.99,2019-09-12 21:15:00,1 Elm St, San Francisco,CA,94016 +254473,Wired Headphones,1,11.99,2019-09-27 19:25:00,265 Willow St, Los Angeles,CA,90001 +254474,AA Batteries (4-pack),2,3.84,2019-09-13 19:11:00,822 West St, San Francisco,CA,94016 +254475,USB-C Charging Cable,1,11.95,2019-09-18 21:00:00,272 4th St, San Francisco,CA,94016 +254476,AA Batteries (4-pack),1,3.84,2019-09-14 13:27:00,374 4th St, Los Angeles,CA,90001 +254477,iPhone,2,700.0,2019-09-12 12:15:00,627 Sunset St, Boston,MA,02215 +254478,Bose SoundSport Headphones,1,99.99,2019-09-21 19:37:00,613 Spruce St, New York City,NY,10001 +254479,AA Batteries (4-pack),2,3.84,2019-09-26 15:45:00,11 Cedar St, Atlanta,GA,30301 +254480,Google Phone,1,600.0,2019-09-24 17:57:00,933 River St, Los Angeles,CA,90001 +254481,Wired Headphones,2,11.99,2019-09-04 11:06:00,48 Ridge St, Austin,TX,73301 +254482,AAA Batteries (4-pack),1,2.99,2019-09-18 23:30:00,400 Ridge St, Dallas,TX,75001 +254483,Lightning Charging Cable,1,14.95,2019-09-28 22:22:00,163 Spruce St, Atlanta,GA,30301 +254484,Bose SoundSport Headphones,1,99.99,2019-09-27 22:35:00,441 Ridge St, Seattle,WA,98101 +254485,Lightning Charging Cable,1,14.95,2019-09-30 20:49:00,119 Willow St, New York City,NY,10001 +254486,Lightning Charging Cable,1,14.95,2019-09-20 10:39:00,73 Center St, Portland,OR,97035 +254487,USB-C Charging Cable,1,11.95,2019-09-12 18:03:00,805 Adams St, San Francisco,CA,94016 +254488,20in Monitor,1,109.99,2019-09-09 12:32:00,735 9th St, Dallas,TX,75001 +254489,USB-C Charging Cable,1,11.95,2019-09-28 09:18:00,934 Cedar St, Los Angeles,CA,90001 +254489,AAA Batteries (4-pack),1,2.99,2019-09-28 09:18:00,934 Cedar St, Los Angeles,CA,90001 +254490,Macbook Pro Laptop,1,1700.0,2019-09-25 13:10:00,978 14th St, New York City,NY,10001 +254491,Google Phone,1,600.0,2019-09-19 10:38:00,826 Chestnut St, Dallas,TX,75001 +254492,Apple Airpods Headphones,1,150.0,2019-09-18 14:55:00,721 Lincoln St, San Francisco,CA,94016 +254493,Bose SoundSport Headphones,1,99.99,2019-09-04 19:29:00,958 Dogwood St, San Francisco,CA,94016 +254494,AAA Batteries (4-pack),1,2.99,2019-09-14 10:39:00,894 11th St, Boston,MA,02215 +254495,27in FHD Monitor,1,149.99,2019-09-29 09:54:00,774 Chestnut St, Boston,MA,02215 +254496,Apple Airpods Headphones,1,150.0,2019-09-22 17:33:00,678 Park St, San Francisco,CA,94016 +254497,AA Batteries (4-pack),1,3.84,2019-09-04 16:33:00,213 Elm St, San Francisco,CA,94016 +254498,USB-C Charging Cable,1,11.95,2019-09-09 18:59:00,22 Sunset St, Los Angeles,CA,90001 +254499,USB-C Charging Cable,1,11.95,2019-09-12 15:31:00,754 9th St, San Francisco,CA,94016 +254500,USB-C Charging Cable,1,11.95,2019-09-02 07:18:00,573 Walnut St, New York City,NY,10001 +254501,Bose SoundSport Headphones,1,99.99,2019-09-08 12:12:00,914 7th St, San Francisco,CA,94016 +254502,AAA Batteries (4-pack),1,2.99,2019-09-23 19:27:00,406 4th St, New York City,NY,10001 +254503,Wired Headphones,1,11.99,2019-09-21 12:07:00,194 Willow St, Dallas,TX,75001 +254504,Macbook Pro Laptop,1,1700.0,2019-09-25 16:00:00,49 7th St, Los Angeles,CA,90001 +254505,iPhone,1,700.0,2019-09-18 18:09:00,423 Maple St, Atlanta,GA,30301 +254506,AA Batteries (4-pack),2,3.84,2019-09-06 14:38:00,865 Hill St, New York City,NY,10001 +254507,Lightning Charging Cable,1,14.95,2019-09-07 18:48:00,790 Lake St, San Francisco,CA,94016 +254508,AAA Batteries (4-pack),1,2.99,2019-09-22 13:05:00,793 Washington St, Seattle,WA,98101 +254509,AA Batteries (4-pack),1,3.84,2019-09-14 17:30:00,593 Meadow St, Atlanta,GA,30301 +254510,Apple Airpods Headphones,1,150.0,2019-09-04 05:49:00,251 Church St, San Francisco,CA,94016 +254511,Apple Airpods Headphones,1,150.0,2019-09-14 23:27:00,520 Meadow St, Austin,TX,73301 +254512,USB-C Charging Cable,1,11.95,2019-09-11 12:12:00,546 Dogwood St, Boston,MA,02215 +254513,Macbook Pro Laptop,1,1700.0,2019-09-08 20:00:00,723 Lake St, Boston,MA,02215 +254514,Wired Headphones,1,11.99,2019-09-09 12:37:00,247 1st St, New York City,NY,10001 +254515,Bose SoundSport Headphones,1,99.99,2019-09-17 16:56:00,261 Cherry St, San Francisco,CA,94016 +254516,AA Batteries (4-pack),1,3.84,2019-09-23 22:12:00,325 Center St, Portland,ME,04101 +254517,AA Batteries (4-pack),1,3.84,2019-09-27 14:23:00,724 5th St, Austin,TX,73301 +254518,AAA Batteries (4-pack),2,2.99,2019-09-05 11:10:00,852 Madison St, Portland,OR,97035 +254519,34in Ultrawide Monitor,1,379.99,2019-09-04 06:53:00,488 Church St, Boston,MA,02215 +254520,AAA Batteries (4-pack),1,2.99,2019-09-22 18:55:00,494 9th St, San Francisco,CA,94016 +254521,AA Batteries (4-pack),1,3.84,2019-09-29 18:02:00,850 Chestnut St, Dallas,TX,75001 +254522,ThinkPad Laptop,1,999.99,2019-09-26 09:43:00,596 Lincoln St, New York City,NY,10001 +254523,Lightning Charging Cable,1,14.95,2019-09-10 18:37:00,259 11th St, San Francisco,CA,94016 +254524,AAA Batteries (4-pack),1,2.99,2019-09-26 10:47:00,935 Washington St, Boston,MA,02215 +254525,27in FHD Monitor,1,149.99,2019-09-02 19:35:00,585 11th St, Portland,OR,97035 +254526,USB-C Charging Cable,1,11.95,2019-09-29 19:57:00,626 6th St, Los Angeles,CA,90001 +254527,34in Ultrawide Monitor,1,379.99,2019-09-28 05:27:00,421 Ridge St, New York City,NY,10001 +254528,AAA Batteries (4-pack),2,2.99,2019-09-14 10:55:00,142 Pine St, Seattle,WA,98101 +254529,AAA Batteries (4-pack),1,2.99,2019-09-16 12:07:00,517 Lincoln St, Seattle,WA,98101 +254530,USB-C Charging Cable,1,11.95,2019-09-25 23:07:00,735 Madison St, Los Angeles,CA,90001 +254531,LG Washing Machine,1,600.0,2019-09-10 10:05:00,448 Elm St, New York City,NY,10001 +254532,34in Ultrawide Monitor,1,379.99,2019-09-25 20:44:00,252 Spruce St, Dallas,TX,75001 +254533,Apple Airpods Headphones,1,150.0,2019-09-16 23:24:00,740 Jefferson St, Seattle,WA,98101 +254534,Wired Headphones,1,11.99,2019-09-19 11:42:00,686 Sunset St, Portland,OR,97035 +254535,Apple Airpods Headphones,1,150.0,2019-09-24 19:40:00,643 North St, San Francisco,CA,94016 +254536,27in FHD Monitor,2,149.99,2019-09-28 00:20:00,195 6th St, Boston,MA,02215 +254537,Wired Headphones,1,11.99,2019-09-26 06:08:00,252 Wilson St, San Francisco,CA,94016 +254538,AA Batteries (4-pack),1,3.84,2019-09-15 08:32:00,151 6th St, San Francisco,CA,94016 +254539,USB-C Charging Cable,2,11.95,2019-09-15 19:06:00,37 Main St, Atlanta,GA,30301 +254540,Apple Airpods Headphones,1,150.0,2019-09-28 12:41:00,871 Lakeview St, San Francisco,CA,94016 +254541,Lightning Charging Cable,1,14.95,2019-09-11 14:34:00,876 Ridge St, San Francisco,CA,94016 +254542,ThinkPad Laptop,1,999.99,2019-09-14 08:43:00,481 Johnson St, Los Angeles,CA,90001 +254543,Lightning Charging Cable,1,14.95,2019-09-21 09:04:00,374 13th St, Austin,TX,73301 +254544,AAA Batteries (4-pack),2,2.99,2019-09-14 14:13:00,728 Forest St, San Francisco,CA,94016 +254545,Apple Airpods Headphones,1,150.0,2019-09-06 19:47:00,403 Main St, Boston,MA,02215 +254546,27in 4K Gaming Monitor,1,389.99,2019-09-28 13:56:00,935 Jefferson St, San Francisco,CA,94016 +254547,Wired Headphones,1,11.99,2019-09-23 09:37:00,953 Hill St, San Francisco,CA,94016 +254548,Wired Headphones,1,11.99,2019-09-11 07:55:00,937 14th St, Dallas,TX,75001 +254549,AAA Batteries (4-pack),2,2.99,2019-09-28 11:01:00,169 6th St, Seattle,WA,98101 +254550,Lightning Charging Cable,1,14.95,2019-09-06 14:54:00,171 Hickory St, San Francisco,CA,94016 +254551,Wired Headphones,1,11.99,2019-09-28 19:06:00,900 Hickory St, Austin,TX,73301 +254552,USB-C Charging Cable,1,11.95,2019-09-23 11:52:00,411 11th St, Dallas,TX,75001 +254553,Apple Airpods Headphones,1,150.0,2019-09-15 20:42:00,688 Jefferson St, New York City,NY,10001 +254554,Google Phone,1,600.0,2019-09-25 17:28:00,462 Willow St, San Francisco,CA,94016 +254554,Bose SoundSport Headphones,1,99.99,2019-09-25 17:28:00,462 Willow St, San Francisco,CA,94016 +254555,20in Monitor,1,109.99,2019-09-18 05:39:00,722 Chestnut St, San Francisco,CA,94016 +254556,Lightning Charging Cable,1,14.95,2019-09-17 20:03:00,625 Walnut St, Atlanta,GA,30301 +254557,Apple Airpods Headphones,1,150.0,2019-09-27 18:14:00,53 Adams St, Los Angeles,CA,90001 +254558,Flatscreen TV,1,300.0,2019-09-09 22:22:00,866 8th St, New York City,NY,10001 +254559,USB-C Charging Cable,1,11.95,2019-09-13 11:42:00,409 River St, New York City,NY,10001 +254560,Lightning Charging Cable,1,14.95,2019-09-10 16:18:00,549 Chestnut St, Los Angeles,CA,90001 +254561,27in 4K Gaming Monitor,1,389.99,2019-09-04 12:16:00,947 11th St, Boston,MA,02215 +254562,AAA Batteries (4-pack),1,2.99,2019-09-07 12:29:00,395 6th St, Los Angeles,CA,90001 +254562,USB-C Charging Cable,1,11.95,2019-09-07 12:29:00,395 6th St, Los Angeles,CA,90001 +254563,Wired Headphones,1,11.99,2019-09-15 10:30:00,188 Johnson St, New York City,NY,10001 +254564,Apple Airpods Headphones,1,150.0,2019-09-11 01:05:00,230 Hickory St, Boston,MA,02215 +254565,Lightning Charging Cable,1,14.95,2019-09-17 11:17:00,426 12th St, Los Angeles,CA,90001 +254566,USB-C Charging Cable,1,11.95,2019-09-17 09:11:00,370 Park St, Boston,MA,02215 +254567,Lightning Charging Cable,1,14.95,2019-09-08 11:19:00,629 Dogwood St, Los Angeles,CA,90001 +254568,USB-C Charging Cable,1,11.95,2019-09-28 11:44:00,912 Hill St, San Francisco,CA,94016 +254569,AA Batteries (4-pack),2,3.84,2019-09-08 06:30:00,564 Willow St, New York City,NY,10001 +254570,AA Batteries (4-pack),1,3.84,2019-09-18 12:54:00,131 River St, Los Angeles,CA,90001 +254571,Google Phone,1,600.0,2019-09-12 01:45:00,720 Ridge St, Los Angeles,CA,90001 +254572,USB-C Charging Cable,2,11.95,2019-09-07 17:22:00,478 Center St, San Francisco,CA,94016 +254573,USB-C Charging Cable,1,11.95,2019-09-24 14:05:00,892 Jackson St, Los Angeles,CA,90001 +254574,USB-C Charging Cable,1,11.95,2019-09-10 18:38:00,606 11th St, Boston,MA,02215 +254575,Lightning Charging Cable,2,14.95,2019-09-11 08:50:00,847 Elm St, San Francisco,CA,94016 +254576,Wired Headphones,1,11.99,2019-09-28 12:59:00,457 9th St, Seattle,WA,98101 +254577,Wired Headphones,1,11.99,2019-09-22 19:25:00,862 Park St, Atlanta,GA,30301 +254578,AAA Batteries (4-pack),1,2.99,2019-09-05 09:16:00,634 Maple St, Austin,TX,73301 +254579,AA Batteries (4-pack),1,3.84,2019-09-12 20:59:00,918 Ridge St, Atlanta,GA,30301 +254579,Apple Airpods Headphones,1,150.0,2019-09-12 20:59:00,918 Ridge St, Atlanta,GA,30301 +254580,Wired Headphones,1,11.99,2019-09-05 15:31:00,903 Lincoln St, Atlanta,GA,30301 +254581,AAA Batteries (4-pack),1,2.99,2019-09-18 20:58:00,568 River St, Portland,OR,97035 +254582,USB-C Charging Cable,1,11.95,2019-09-24 11:35:00,588 Lake St, Dallas,TX,75001 +254583,USB-C Charging Cable,1,11.95,2019-09-17 14:39:00,700 11th St, Austin,TX,73301 +254584,AAA Batteries (4-pack),1,2.99,2019-09-30 22:18:00,660 11th St, Portland,OR,97035 +254585,USB-C Charging Cable,1,11.95,2019-09-07 10:20:00,590 Highland St, Seattle,WA,98101 +254586,Flatscreen TV,1,300.0,2019-09-08 12:36:00,488 Jackson St, San Francisco,CA,94016 +254587,Lightning Charging Cable,1,14.95,2019-09-15 06:23:00,496 Highland St, New York City,NY,10001 +254588,Wired Headphones,1,11.99,2019-09-15 20:19:00,128 14th St, San Francisco,CA,94016 +254589,USB-C Charging Cable,1,11.95,2019-09-12 19:13:00,46 Chestnut St, Portland,OR,97035 +254590,AA Batteries (4-pack),2,3.84,2019-09-27 02:01:00,264 11th St, New York City,NY,10001 +254591,Apple Airpods Headphones,1,150.0,2019-09-04 21:03:00,882 8th St, Los Angeles,CA,90001 +254592,USB-C Charging Cable,1,11.95,2019-09-13 19:08:00,705 14th St, Los Angeles,CA,90001 +254593,USB-C Charging Cable,1,11.95,2019-09-02 18:48:00,988 Cherry St, Dallas,TX,75001 +254594,Lightning Charging Cable,1,14.95,2019-09-07 13:40:00,629 Main St, New York City,NY,10001 +254595,27in FHD Monitor,1,149.99,2019-09-22 12:10:00,343 Madison St, Los Angeles,CA,90001 +254596,AA Batteries (4-pack),1,3.84,2019-09-02 11:02:00,38 Dogwood St, Boston,MA,02215 +254597,27in FHD Monitor,1,149.99,2019-09-21 20:06:00,108 Main St, New York City,NY,10001 +254598,Wired Headphones,1,11.99,2019-09-30 22:06:00,396 Washington St, Austin,TX,73301 +254599,Google Phone,1,600.0,2019-09-29 02:21:00,615 11th St, New York City,NY,10001 +254600,iPhone,1,700.0,2019-09-13 05:33:00,1 11th St, San Francisco,CA,94016 +254601,USB-C Charging Cable,2,11.95,2019-09-05 13:06:00,255 Main St, Seattle,WA,98101 +254602,AA Batteries (4-pack),1,3.84,2019-09-04 00:05:00,255 Hickory St, San Francisco,CA,94016 +254603,27in FHD Monitor,1,149.99,2019-09-15 21:33:00,91 Chestnut St, Portland,OR,97035 +254604,Wired Headphones,1,11.99,2019-09-19 09:28:00,320 4th St, New York City,NY,10001 +254605,27in FHD Monitor,1,149.99,2019-09-27 14:01:00,446 4th St, Boston,MA,02215 +254606,AAA Batteries (4-pack),1,2.99,2019-09-25 13:43:00,278 Elm St, Boston,MA,02215 +254607,AAA Batteries (4-pack),1,2.99,2019-09-01 17:51:00,300 6th St, Portland,OR,97035 +254608,Google Phone,1,600.0,2019-09-04 21:46:00,607 Forest St, San Francisco,CA,94016 +254609,Wired Headphones,1,11.99,2019-09-16 12:16:00,478 6th St, Dallas,TX,75001 +254610,AA Batteries (4-pack),3,3.84,2019-09-28 11:57:00,714 Dogwood St, Los Angeles,CA,90001 +254611,USB-C Charging Cable,1,11.95,2019-09-25 12:49:00,497 Hill St, Boston,MA,02215 +254612,Vareebadd Phone,1,400.0,2019-09-17 00:11:00,110 10th St, Boston,MA,02215 +254613,Lightning Charging Cable,1,14.95,2019-09-06 18:07:00,247 Hill St, Boston,MA,02215 +254614,USB-C Charging Cable,1,11.95,2019-09-15 10:33:00,389 10th St, San Francisco,CA,94016 +254615,27in FHD Monitor,1,149.99,2019-09-26 23:08:00,59 Highland St, Seattle,WA,98101 +254616,USB-C Charging Cable,1,11.95,2019-09-21 12:45:00,10 5th St, Atlanta,GA,30301 +254617,Bose SoundSport Headphones,1,99.99,2019-09-20 17:50:00,687 Ridge St, San Francisco,CA,94016 +254618,27in 4K Gaming Monitor,1,389.99,2019-09-27 11:50:00,51 Washington St, Los Angeles,CA,90001 +254619,Apple Airpods Headphones,1,150.0,2019-09-11 19:02:00,265 Meadow St, Atlanta,GA,30301 +254620,AA Batteries (4-pack),1,3.84,2019-09-19 19:37:00,193 Elm St, San Francisco,CA,94016 +254621,Lightning Charging Cable,1,14.95,2019-09-20 13:37:00,304 West St, San Francisco,CA,94016 +254622,AA Batteries (4-pack),1,3.84,2019-09-14 09:25:00,93 South St, San Francisco,CA,94016 +254623,Wired Headphones,2,11.99,2019-09-18 10:48:00,307 River St, Dallas,TX,75001 +254624,27in FHD Monitor,1,149.99,2019-09-25 20:25:00,535 Ridge St, Atlanta,GA,30301 +254625,AAA Batteries (4-pack),2,2.99,2019-09-13 18:32:00,724 Cherry St, Seattle,WA,98101 +254626,Bose SoundSport Headphones,1,99.99,2019-09-25 10:13:00,415 1st St, San Francisco,CA,94016 +254627,20in Monitor,1,109.99,2019-09-22 06:34:00,703 Wilson St, Boston,MA,02215 +254628,34in Ultrawide Monitor,1,379.99,2019-09-28 17:22:00,141 Pine St, New York City,NY,10001 +254629,Bose SoundSport Headphones,1,99.99,2019-09-13 17:57:00,733 Lincoln St, Portland,OR,97035 +254630,AA Batteries (4-pack),1,3.84,2019-09-10 13:10:00,141 Lincoln St, Portland,ME,04101 +254631,iPhone,1,700.0,2019-09-12 14:18:00,972 Maple St, Los Angeles,CA,90001 +254632,Lightning Charging Cable,2,14.95,2019-09-05 23:17:00,680 Jefferson St, Portland,OR,97035 +254633,Bose SoundSport Headphones,1,99.99,2019-09-16 14:49:00,272 Chestnut St, Los Angeles,CA,90001 +254634,AA Batteries (4-pack),1,3.84,2019-09-27 19:07:00,842 7th St, Los Angeles,CA,90001 +254635,AA Batteries (4-pack),1,3.84,2019-09-20 13:07:00,657 9th St, Dallas,TX,75001 +254636,AAA Batteries (4-pack),1,2.99,2019-09-24 19:12:00,568 Elm St, Atlanta,GA,30301 +254637,AA Batteries (4-pack),4,3.84,2019-09-23 12:42:00,443 River St, San Francisco,CA,94016 +254638,Apple Airpods Headphones,1,150.0,2019-09-26 23:29:00,252 Sunset St, Atlanta,GA,30301 +254639,LG Dryer,1,600.0,2019-09-07 19:30:00,461 Madison St, San Francisco,CA,94016 +254640,27in 4K Gaming Monitor,1,389.99,2019-09-20 19:15:00,805 6th St, Dallas,TX,75001 +254641,Wired Headphones,1,11.99,2019-09-24 20:41:00,541 1st St, Los Angeles,CA,90001 +254642,Macbook Pro Laptop,1,1700.0,2019-09-25 11:26:00,10 West St, San Francisco,CA,94016 +254643,USB-C Charging Cable,1,11.95,2019-09-06 17:37:00,124 Spruce St, Boston,MA,02215 +254644,AA Batteries (4-pack),1,3.84,2019-09-19 11:28:00,52 Meadow St, Boston,MA,02215 +254645,Apple Airpods Headphones,1,150.0,2019-09-04 22:23:00,869 Forest St, New York City,NY,10001 +254646,Google Phone,1,600.0,2019-09-19 10:51:00,967 Jefferson St, New York City,NY,10001 +254647,AA Batteries (4-pack),1,3.84,2019-09-26 21:18:00,859 Main St, Dallas,TX,75001 +254648,AA Batteries (4-pack),1,3.84,2019-09-05 08:48:00,534 Madison St, Seattle,WA,98101 +254649,Bose SoundSport Headphones,1,99.99,2019-09-12 21:02:00,419 Adams St, Seattle,WA,98101 +254650,Google Phone,1,600.0,2019-09-12 12:55:00,355 Washington St, Boston,MA,02215 +254650,USB-C Charging Cable,1,11.95,2019-09-12 12:55:00,355 Washington St, Boston,MA,02215 +254651,Lightning Charging Cable,1,14.95,2019-09-09 20:59:00,240 Hickory St, New York City,NY,10001 +254652,Flatscreen TV,2,300.0,2019-09-17 12:21:00,153 6th St, Atlanta,GA,30301 +254653,Bose SoundSport Headphones,1,99.99,2019-09-26 16:48:00,496 Hickory St, Los Angeles,CA,90001 +254654,27in FHD Monitor,1,149.99,2019-09-14 12:38:00,675 Jefferson St, San Francisco,CA,94016 +254655,Lightning Charging Cable,1,14.95,2019-09-11 16:06:00,56 Hill St, San Francisco,CA,94016 +254656,AAA Batteries (4-pack),2,2.99,2019-09-30 10:22:00,160 13th St, Boston,MA,02215 +254657,Lightning Charging Cable,1,14.95,2019-09-19 04:44:00,967 11th St, New York City,NY,10001 +254658,20in Monitor,1,109.99,2019-09-15 20:01:00,792 10th St, Los Angeles,CA,90001 +254659,AA Batteries (4-pack),2,3.84,2019-09-19 12:01:00,698 Jackson St, Los Angeles,CA,90001 +254660,USB-C Charging Cable,1,11.95,2019-09-29 19:13:00,360 Dogwood St, Boston,MA,02215 +254661,20in Monitor,1,109.99,2019-09-26 12:23:00,186 West St, New York City,NY,10001 +254662,34in Ultrawide Monitor,1,379.99,2019-09-09 22:54:00,263 Church St, Dallas,TX,75001 +254663,Vareebadd Phone,1,400.0,2019-09-03 22:21:00,957 14th St, New York City,NY,10001 +254664,Apple Airpods Headphones,1,150.0,2019-09-30 23:20:00,6 Cherry St, San Francisco,CA,94016 +254665,Wired Headphones,1,11.99,2019-09-11 16:45:00,818 Spruce St, New York City,NY,10001 +254666,Apple Airpods Headphones,1,150.0,2019-09-30 18:31:00,71 Dogwood St, Portland,OR,97035 +254667,Lightning Charging Cable,1,14.95,2019-09-01 10:19:00,870 10th St, New York City,NY,10001 +254668,Flatscreen TV,1,300.0,2019-09-12 14:57:00,249 Park St, New York City,NY,10001 +254669,USB-C Charging Cable,1,11.95,2019-09-05 20:31:00,47 Lincoln St, Dallas,TX,75001 +254670,20in Monitor,1,109.99,2019-09-08 23:44:00,494 North St, Los Angeles,CA,90001 +254671,USB-C Charging Cable,1,11.95,2019-09-27 20:00:00,864 12th St, Portland,OR,97035 +254672,Apple Airpods Headphones,1,150.0,2019-09-01 18:49:00,909 Chestnut St, Los Angeles,CA,90001 +254672,iPhone,1,700.0,2019-09-01 18:49:00,909 Chestnut St, Los Angeles,CA,90001 +254673,iPhone,1,700.0,2019-09-09 11:56:00,238 Madison St, San Francisco,CA,94016 +254674,AA Batteries (4-pack),1,3.84,2019-09-12 14:01:00,725 Jackson St, San Francisco,CA,94016 +254675,USB-C Charging Cable,1,11.95,2019-09-26 17:30:00,188 14th St, Atlanta,GA,30301 +254676,AA Batteries (4-pack),1,3.84,2019-09-02 17:12:00,754 Washington St, Atlanta,GA,30301 +254677,Macbook Pro Laptop,1,1700.0,2019-09-21 16:29:00,143 Dogwood St, New York City,NY,10001 +254678,Apple Airpods Headphones,1,150.0,2019-09-28 17:22:00,563 Walnut St, Atlanta,GA,30301 +254679,USB-C Charging Cable,1,11.95,2019-09-12 09:34:00,616 Main St, San Francisco,CA,94016 +254680,AA Batteries (4-pack),2,3.84,2019-09-05 07:41:00,268 West St, Boston,MA,02215 +254681,Lightning Charging Cable,1,14.95,2019-09-21 20:02:00,745 Wilson St, Dallas,TX,75001 +254682,Lightning Charging Cable,1,14.95,2019-09-08 00:26:00,850 Cherry St, Austin,TX,73301 +254683,Lightning Charging Cable,1,14.95,2019-09-16 13:55:00,459 4th St, San Francisco,CA,94016 +254684,Bose SoundSport Headphones,1,99.99,2019-09-27 23:21:00,5 Hill St, Boston,MA,02215 +254685,iPhone,1,700.0,2019-09-17 10:16:00,462 Chestnut St, Austin,TX,73301 +254686,27in FHD Monitor,1,149.99,2019-09-19 20:36:00,285 Elm St, New York City,NY,10001 +254686,Lightning Charging Cable,1,14.95,2019-09-19 20:36:00,285 Elm St, New York City,NY,10001 +254687,27in 4K Gaming Monitor,1,389.99,2019-09-27 09:32:00,690 Lincoln St, San Francisco,CA,94016 +254688,USB-C Charging Cable,1,11.95,2019-09-06 13:02:00,135 Park St, New York City,NY,10001 +254689,USB-C Charging Cable,1,11.95,2019-09-13 16:00:00,734 Hickory St, Seattle,WA,98101 +254690,Google Phone,1,600.0,2019-09-25 06:10:00,610 9th St, Austin,TX,73301 +254691,20in Monitor,1,109.99,2019-09-23 11:27:00,873 Wilson St, Boston,MA,02215 +254692,AA Batteries (4-pack),1,3.84,2019-09-26 14:36:00,743 7th St, Boston,MA,02215 +254693,Apple Airpods Headphones,1,150.0,2019-09-18 17:16:00,171 4th St, New York City,NY,10001 +254694,Bose SoundSport Headphones,1,99.99,2019-09-26 12:50:00,708 Jefferson St, Austin,TX,73301 +254695,Vareebadd Phone,1,400.0,2019-09-07 20:33:00,490 North St, New York City,NY,10001 +254696,AAA Batteries (4-pack),4,2.99,2019-09-08 12:09:00,417 Chestnut St, Dallas,TX,75001 +254697,Lightning Charging Cable,1,14.95,2019-09-16 17:40:00,125 Wilson St, New York City,NY,10001 +254698,AA Batteries (4-pack),1,3.84,2019-09-30 08:14:00,815 Pine St, Dallas,TX,75001 +254699,AA Batteries (4-pack),1,3.84,2019-09-13 13:18:00,33 Pine St, Austin,TX,73301 +254700,Macbook Pro Laptop,1,1700.0,2019-09-04 22:41:00,354 Meadow St, Los Angeles,CA,90001 +254701,Lightning Charging Cable,1,14.95,2019-09-09 13:53:00,652 Meadow St, New York City,NY,10001 +254702,Flatscreen TV,1,300.0,2019-09-09 18:25:00,500 6th St, San Francisco,CA,94016 +254703,iPhone,1,700.0,2019-09-25 08:04:00,615 8th St, New York City,NY,10001 +254703,Lightning Charging Cable,1,14.95,2019-09-25 08:04:00,615 8th St, New York City,NY,10001 +254703,Wired Headphones,1,11.99,2019-09-25 08:04:00,615 8th St, New York City,NY,10001 +254704,AAA Batteries (4-pack),1,2.99,2019-09-01 22:44:00,923 Jefferson St, Portland,OR,97035 +254705,Lightning Charging Cable,1,14.95,2019-09-29 19:58:00,795 Ridge St, Portland,OR,97035 +254706,Google Phone,1,600.0,2019-09-03 00:05:00,592 10th St, Seattle,WA,98101 +254707,Bose SoundSport Headphones,1,99.99,2019-09-12 11:27:00,645 1st St, San Francisco,CA,94016 +254708,Wired Headphones,1,11.99,2019-09-29 22:13:00,844 12th St, Dallas,TX,75001 +254709,Macbook Pro Laptop,1,1700.0,2019-09-13 09:02:00,731 Cherry St, Atlanta,GA,30301 +254710,Macbook Pro Laptop,1,1700.0,2019-09-12 08:29:00,111 14th St, Los Angeles,CA,90001 +254711,AA Batteries (4-pack),1,3.84,2019-09-25 17:13:00,558 8th St, New York City,NY,10001 +254712,USB-C Charging Cable,1,11.95,2019-09-14 10:45:00,8 Jefferson St, San Francisco,CA,94016 +254713,Google Phone,1,600.0,2019-09-08 17:27:00,893 Pine St, Los Angeles,CA,90001 +254713,USB-C Charging Cable,1,11.95,2019-09-08 17:27:00,893 Pine St, Los Angeles,CA,90001 +254714,USB-C Charging Cable,1,11.95,2019-09-16 00:34:00,320 Dogwood St, San Francisco,CA,94016 +254715,Lightning Charging Cable,1,14.95,2019-09-17 21:30:00,191 Walnut St, San Francisco,CA,94016 +254716,Flatscreen TV,1,300.0,2019-09-15 16:48:00,466 Maple St, Los Angeles,CA,90001 +254717,Bose SoundSport Headphones,1,99.99,2019-09-14 19:17:00,760 Meadow St, New York City,NY,10001 +254718,AAA Batteries (4-pack),1,2.99,2019-09-17 15:28:00,285 1st St, Portland,OR,97035 +254719,Wired Headphones,1,11.99,2019-09-01 12:03:00,236 Pine St, New York City,NY,10001 +254720,USB-C Charging Cable,1,11.95,2019-09-11 19:02:00,834 Park St, Atlanta,GA,30301 +254721,AA Batteries (4-pack),2,3.84,2019-09-27 20:41:00,429 Hill St, Portland,ME,04101 +254722,Flatscreen TV,1,300.0,2019-09-10 16:31:00,105 10th St, Atlanta,GA,30301 +254723,Lightning Charging Cable,1,14.95,2019-09-11 19:20:00,521 Washington St, Atlanta,GA,30301 +254723,AA Batteries (4-pack),1,3.84,2019-09-11 19:20:00,521 Washington St, Atlanta,GA,30301 +254724,AA Batteries (4-pack),1,3.84,2019-09-11 20:07:00,405 Highland St, Portland,OR,97035 +254725,Wired Headphones,1,11.99,2019-09-21 14:01:00,360 Maple St, Atlanta,GA,30301 +254726,AAA Batteries (4-pack),1,2.99,2019-09-29 22:58:00,912 North St, Los Angeles,CA,90001 +254727,Flatscreen TV,1,300.0,2019-09-12 12:44:00,546 1st St, San Francisco,CA,94016 +254728,AA Batteries (4-pack),2,3.84,2019-09-29 15:13:00,250 9th St, New York City,NY,10001 +254729,USB-C Charging Cable,2,11.95,2019-09-12 17:53:00,581 Hill St, Seattle,WA,98101 +254730,Wired Headphones,1,11.99,2019-09-19 22:05:00,888 Forest St, Portland,OR,97035 +254731,ThinkPad Laptop,1,999.99,2019-09-22 14:10:00,18 9th St, Boston,MA,02215 +254732,AA Batteries (4-pack),2,3.84,2019-09-09 22:10:00,409 Lakeview St, San Francisco,CA,94016 +254733,Lightning Charging Cable,1,14.95,2019-09-06 08:39:00,115 6th St, Los Angeles,CA,90001 +254734,AAA Batteries (4-pack),1,2.99,2019-09-08 16:08:00,683 Cherry St, Los Angeles,CA,90001 +254735,Wired Headphones,1,11.99,2019-09-09 01:15:00,154 Hickory St, Portland,OR,97035 +254736,Flatscreen TV,1,300.0,2019-09-01 12:04:00,601 Church St, San Francisco,CA,94016 +254737,27in FHD Monitor,1,149.99,2019-09-28 09:03:00,2 Lakeview St, Los Angeles,CA,90001 +254738,Macbook Pro Laptop,1,1700.0,2019-09-02 21:36:00,577 Pine St, Los Angeles,CA,90001 +254739,Bose SoundSport Headphones,1,99.99,2019-09-18 18:39:00,539 5th St, Dallas,TX,75001 +254740,Apple Airpods Headphones,1,150.0,2019-09-06 19:10:00,449 Highland St, Seattle,WA,98101 +254741,Flatscreen TV,1,300.0,2019-09-23 17:50:00,886 Johnson St, Atlanta,GA,30301 +254742,27in 4K Gaming Monitor,1,389.99,2019-09-26 19:29:00,765 Pine St, San Francisco,CA,94016 +254743,Apple Airpods Headphones,1,150.0,2019-09-03 11:33:00,222 13th St, Austin,TX,73301 +254744,AA Batteries (4-pack),1,3.84,2019-09-09 17:40:00,80 North St, Atlanta,GA,30301 +254745,USB-C Charging Cable,1,11.95,2019-09-09 00:05:00,133 Sunset St, Dallas,TX,75001 +254746,27in FHD Monitor,1,149.99,2019-09-25 10:17:00,684 Ridge St, San Francisco,CA,94016 +254747,Lightning Charging Cable,1,14.95,2019-09-16 00:03:00,917 5th St, Austin,TX,73301 +254748,Bose SoundSport Headphones,1,99.99,2019-09-15 10:10:00,424 Meadow St, Austin,TX,73301 +254749,27in FHD Monitor,1,149.99,2019-09-24 16:15:00,86 Walnut St, Los Angeles,CA,90001 +254750,AAA Batteries (4-pack),1,2.99,2019-09-24 23:42:00,753 Jefferson St, Los Angeles,CA,90001 +254751,Lightning Charging Cable,1,14.95,2019-09-02 08:43:00,537 Park St, Austin,TX,73301 +254752,34in Ultrawide Monitor,1,379.99,2019-09-10 10:23:00,328 10th St, Los Angeles,CA,90001 +254753,Wired Headphones,1,11.99,2019-09-20 14:26:00,362 12th St, New York City,NY,10001 +254754,Lightning Charging Cable,1,14.95,2019-09-22 13:56:00,888 Walnut St, Los Angeles,CA,90001 +254755,Lightning Charging Cable,1,14.95,2019-09-10 20:00:00,656 Lakeview St, New York City,NY,10001 +254756,Bose SoundSport Headphones,1,99.99,2019-09-22 06:57:00,958 Jackson St, Los Angeles,CA,90001 +254757,iPhone,1,700.0,2019-09-10 17:38:00,961 Park St, San Francisco,CA,94016 +254757,Apple Airpods Headphones,1,150.0,2019-09-10 17:38:00,961 Park St, San Francisco,CA,94016 +254757,Wired Headphones,1,11.99,2019-09-10 17:38:00,961 Park St, San Francisco,CA,94016 +254758,Bose SoundSport Headphones,1,99.99,2019-09-12 23:59:00,225 Lakeview St, Los Angeles,CA,90001 +254759,AA Batteries (4-pack),1,3.84,2019-09-20 08:32:00,576 South St, New York City,NY,10001 +254760,AA Batteries (4-pack),2,3.84,2019-09-17 19:11:00,806 South St, New York City,NY,10001 +254761,USB-C Charging Cable,2,11.95,2019-09-18 16:11:00,160 7th St, Los Angeles,CA,90001 +254762,AAA Batteries (4-pack),1,2.99,2019-09-14 13:11:00,893 Madison St, Boston,MA,02215 +254763,Apple Airpods Headphones,1,150.0,2019-09-28 10:49:00,897 Jackson St, Seattle,WA,98101 +254764,AAA Batteries (4-pack),1,2.99,2019-09-23 13:26:00,983 Elm St, San Francisco,CA,94016 +254765,27in 4K Gaming Monitor,1,389.99,2019-09-02 17:13:00,773 Jackson St, San Francisco,CA,94016 +254766,Apple Airpods Headphones,1,150.0,2019-09-02 16:41:00,785 10th St, Los Angeles,CA,90001 +254767,AA Batteries (4-pack),1,3.84,2019-09-02 10:22:00,900 12th St, Los Angeles,CA,90001 +254768,AAA Batteries (4-pack),1,2.99,2019-09-07 18:47:00,352 2nd St, Boston,MA,02215 +254769,Macbook Pro Laptop,1,1700.0,2019-09-13 20:51:00,303 1st St, San Francisco,CA,94016 +254770,USB-C Charging Cable,1,11.95,2019-09-07 14:11:00,406 Jefferson St, New York City,NY,10001 +254771,Wired Headphones,1,11.99,2019-09-30 04:08:00,160 13th St, San Francisco,CA,94016 +254772,Wired Headphones,1,11.99,2019-09-12 21:45:00,426 Main St, Atlanta,GA,30301 +254772,Bose SoundSport Headphones,1,99.99,2019-09-12 21:45:00,426 Main St, Atlanta,GA,30301 +254773,Vareebadd Phone,1,400.0,2019-09-25 13:08:00,931 Meadow St, Los Angeles,CA,90001 +254774,AAA Batteries (4-pack),2,2.99,2019-09-24 17:53:00,444 10th St, San Francisco,CA,94016 +254775,Lightning Charging Cable,2,14.95,2019-09-21 12:15:00,66 Park St, San Francisco,CA,94016 +254776,Wired Headphones,1,11.99,2019-09-08 18:45:00,499 2nd St, Los Angeles,CA,90001 +254777,Apple Airpods Headphones,1,150.0,2019-09-29 16:05:00,657 7th St, Seattle,WA,98101 +254778,Lightning Charging Cable,1,14.95,2019-09-06 17:32:00,939 Willow St, San Francisco,CA,94016 +254779,Wired Headphones,1,11.99,2019-09-10 18:21:00,57 Adams St, Atlanta,GA,30301 +254780,Macbook Pro Laptop,1,1700.0,2019-09-21 10:49:00,934 Lincoln St, Los Angeles,CA,90001 +254781,AAA Batteries (4-pack),1,2.99,2019-09-20 19:14:00,733 Center St, Boston,MA,02215 +254782,Wired Headphones,1,11.99,2019-09-24 15:16:00,738 South St, Los Angeles,CA,90001 +254783,Wired Headphones,1,11.99,2019-09-21 00:53:00,186 Spruce St, Austin,TX,73301 +254784,USB-C Charging Cable,2,11.95,2019-09-03 16:12:00,139 West St, Los Angeles,CA,90001 +254785,AA Batteries (4-pack),2,3.84,2019-09-27 17:44:00,828 Church St, Los Angeles,CA,90001 +254786,Apple Airpods Headphones,1,150.0,2019-09-12 09:43:00,587 7th St, San Francisco,CA,94016 +254787,Apple Airpods Headphones,1,150.0,2019-09-20 10:40:00,366 North St, San Francisco,CA,94016 +254788,AA Batteries (4-pack),1,3.84,2019-09-14 21:01:00,893 West St, San Francisco,CA,94016 +254789,Lightning Charging Cable,1,14.95,2019-09-30 17:27:00,153 Walnut St, Dallas,TX,75001 +254790,Wired Headphones,1,11.99,2019-09-24 17:36:00,320 Wilson St, Dallas,TX,75001 +254791,Apple Airpods Headphones,1,150.0,2019-09-01 21:23:00,993 Johnson St, San Francisco,CA,94016 +254792,Apple Airpods Headphones,1,150.0,2019-09-29 08:18:00,399 Ridge St, New York City,NY,10001 +254793,USB-C Charging Cable,1,11.95,2019-09-17 18:11:00,210 Sunset St, San Francisco,CA,94016 +254794,20in Monitor,1,109.99,2019-09-02 18:53:00,151 Johnson St, New York City,NY,10001 +254795,USB-C Charging Cable,1,11.95,2019-09-04 10:08:00,641 Washington St, San Francisco,CA,94016 +254796,Macbook Pro Laptop,1,1700.0,2019-09-20 13:12:00,465 13th St, Boston,MA,02215 +254797,AAA Batteries (4-pack),1,2.99,2019-09-24 11:02:00,817 Washington St, Boston,MA,02215 +254798,27in 4K Gaming Monitor,1,389.99,2019-09-04 17:47:00,778 Wilson St, Portland,OR,97035 +254799,Wired Headphones,1,11.99,2019-09-12 14:52:00,88 Lakeview St, Portland,OR,97035 +254800,ThinkPad Laptop,1,999.99,2019-09-08 20:26:00,749 Johnson St, New York City,NY,10001 +254801,Lightning Charging Cable,1,14.95,2019-09-09 21:22:00,7 14th St, New York City,NY,10001 +254802,USB-C Charging Cable,1,11.95,2019-09-04 10:50:00,192 Washington St, San Francisco,CA,94016 +254803,Lightning Charging Cable,1,14.95,2019-09-30 22:29:00,398 12th St, New York City,NY,10001 +254804,Lightning Charging Cable,1,14.95,2019-09-01 12:33:00,6 Adams St, New York City,NY,10001 +254805,Google Phone,1,600.0,2019-09-08 01:40:00,186 2nd St, San Francisco,CA,94016 +254806,AAA Batteries (4-pack),1,2.99,2019-09-06 20:54:00,556 1st St, San Francisco,CA,94016 +254807,Lightning Charging Cable,2,14.95,2019-09-12 16:52:00,276 Park St, San Francisco,CA,94016 +254808,USB-C Charging Cable,1,11.95,2019-09-09 17:53:00,800 Church St, New York City,NY,10001 +254809,AAA Batteries (4-pack),2,2.99,2019-09-18 17:30:00,117 7th St, San Francisco,CA,94016 +254810,Google Phone,1,600.0,2019-09-19 00:56:00,608 Highland St, Dallas,TX,75001 +254811,Google Phone,1,600.0,2019-09-18 08:33:00,277 10th St, New York City,NY,10001 +254812,Wired Headphones,1,11.99,2019-09-09 20:24:00,565 7th St, Dallas,TX,75001 +254813,Bose SoundSport Headphones,1,99.99,2019-09-22 11:30:00,473 14th St, Boston,MA,02215 +254814,AA Batteries (4-pack),1,3.84,2019-09-09 23:38:00,182 Madison St, San Francisco,CA,94016 +254815,Wired Headphones,1,11.99,2019-09-08 19:33:00,423 Cedar St, Los Angeles,CA,90001 +254816,Apple Airpods Headphones,1,150.0,2019-09-24 15:14:00,138 Adams St, Boston,MA,02215 +254817,Bose SoundSport Headphones,1,99.99,2019-09-04 18:29:00,325 11th St, San Francisco,CA,94016 +254818,LG Washing Machine,1,600.0,2019-09-13 19:53:00,110 Church St, Dallas,TX,75001 +254819,Apple Airpods Headphones,1,150.0,2019-09-09 23:53:00,555 Highland St, Los Angeles,CA,90001 +254820,Lightning Charging Cable,1,14.95,2019-09-26 15:38:00,88 Johnson St, Atlanta,GA,30301 +254821,27in FHD Monitor,1,149.99,2019-09-26 13:04:00,405 Lincoln St, Los Angeles,CA,90001 +254822,Apple Airpods Headphones,1,150.0,2019-09-22 20:32:00,858 Jefferson St, Los Angeles,CA,90001 +254823,34in Ultrawide Monitor,1,379.99,2019-09-26 18:23:00,217 10th St, Los Angeles,CA,90001 +254824,USB-C Charging Cable,1,11.95,2019-09-28 02:07:00,979 9th St, New York City,NY,10001 +254825,27in FHD Monitor,1,149.99,2019-09-17 17:31:00,259 1st St, Dallas,TX,75001 +254826,27in FHD Monitor,1,149.99,2019-09-22 12:59:00,991 Maple St, Atlanta,GA,30301 +254827,Apple Airpods Headphones,1,150.0,2019-09-09 18:08:00,94 13th St, San Francisco,CA,94016 +254828,AAA Batteries (4-pack),2,2.99,2019-09-13 13:32:00,296 Washington St, San Francisco,CA,94016 +254829,Apple Airpods Headphones,1,150.0,2019-09-14 20:27:00,935 Wilson St, Boston,MA,02215 +254830,Lightning Charging Cable,1,14.95,2019-09-22 01:32:00,68 River St, Dallas,TX,75001 +254831,USB-C Charging Cable,1,11.95,2019-09-10 14:58:00,702 South St, San Francisco,CA,94016 +254832,AAA Batteries (4-pack),1,2.99,2019-09-21 13:11:00,817 12th St, New York City,NY,10001 +254833,AAA Batteries (4-pack),1,2.99,2019-09-22 09:16:00,659 Maple St, San Francisco,CA,94016 +254834,27in 4K Gaming Monitor,1,389.99,2019-09-15 22:15:00,294 Johnson St, Los Angeles,CA,90001 +254835,AA Batteries (4-pack),2,3.84,2019-09-22 15:34:00,906 River St, San Francisco,CA,94016 +254836,Vareebadd Phone,1,400.0,2019-09-27 13:37:00,841 Center St, Austin,TX,73301 +254837,AA Batteries (4-pack),1,3.84,2019-09-12 09:40:00,223 Cedar St, New York City,NY,10001 +254838,Apple Airpods Headphones,1,150.0,2019-09-27 15:03:00,18 Pine St, Atlanta,GA,30301 +254839,Bose SoundSport Headphones,1,99.99,2019-09-29 20:36:00,20 8th St, Los Angeles,CA,90001 +254840,AA Batteries (4-pack),3,3.84,2019-09-29 16:41:00,468 Center St, Boston,MA,02215 +254841,Lightning Charging Cable,1,14.95,2019-09-11 18:43:00,465 Walnut St, San Francisco,CA,94016 +254842,AAA Batteries (4-pack),1,2.99,2019-09-22 07:58:00,148 Meadow St, Boston,MA,02215 +254843,ThinkPad Laptop,1,999.99,2019-09-23 14:08:00,281 Main St, San Francisco,CA,94016 +254844,34in Ultrawide Monitor,1,379.99,2019-09-25 20:40:00,28 West St, Los Angeles,CA,90001 +254845,AAA Batteries (4-pack),2,2.99,2019-09-22 16:02:00,679 North St, Boston,MA,02215 +254846,Wired Headphones,2,11.99,2019-09-19 08:48:00,8 13th St, Los Angeles,CA,90001 +254847,AA Batteries (4-pack),1,3.84,2019-09-09 19:13:00,817 Madison St, Dallas,TX,75001 +254848,Wired Headphones,1,11.99,2019-09-17 18:57:00,786 Forest St, Austin,TX,73301 +254849,Lightning Charging Cable,1,14.95,2019-09-01 13:07:00,737 Park St, Dallas,TX,75001 +254850,20in Monitor,1,109.99,2019-09-30 12:55:00,46 Lake St, New York City,NY,10001 +254851,Flatscreen TV,1,300.0,2019-09-07 08:14:00,546 North St, Boston,MA,02215 +254852,AAA Batteries (4-pack),1,2.99,2019-09-08 22:13:00,911 Forest St, Boston,MA,02215 +254853,27in FHD Monitor,1,149.99,2019-09-23 18:53:00,73 12th St, Dallas,TX,75001 +254854,Lightning Charging Cable,1,14.95,2019-09-25 13:03:00,942 8th St, Boston,MA,02215 +254855,iPhone,1,700.0,2019-09-13 13:01:00,352 Meadow St, Boston,MA,02215 +254856,Lightning Charging Cable,1,14.95,2019-09-14 14:32:00,524 Maple St, San Francisco,CA,94016 +254857,iPhone,1,700.0,2019-09-05 15:50:00,423 Elm St, Los Angeles,CA,90001 +254858,iPhone,1,700.0,2019-10-01 01:39:00,596 Adams St, New York City,NY,10001 +254858,Lightning Charging Cable,1,14.95,2019-10-01 01:39:00,596 Adams St, New York City,NY,10001 +254858,Wired Headphones,1,11.99,2019-10-01 01:39:00,596 Adams St, New York City,NY,10001 +254859,27in 4K Gaming Monitor,1,389.99,2019-09-28 09:53:00,731 Spruce St, San Francisco,CA,94016 +254860,USB-C Charging Cable,1,11.95,2019-09-07 22:43:00,706 South St, Seattle,WA,98101 +254861,AAA Batteries (4-pack),2,2.99,2019-09-04 00:01:00,296 4th St, Atlanta,GA,30301 +254862,Bose SoundSport Headphones,1,99.99,2019-09-16 20:04:00,809 9th St, Seattle,WA,98101 +254863,34in Ultrawide Monitor,1,379.99,2019-09-10 22:36:00,610 Lincoln St, Boston,MA,02215 +254864,Lightning Charging Cable,1,14.95,2019-09-20 20:47:00,683 1st St, Los Angeles,CA,90001 +254865,Wired Headphones,1,11.99,2019-09-12 19:19:00,397 Sunset St, San Francisco,CA,94016 +254866,Wired Headphones,1,11.99,2019-09-13 13:25:00,58 Meadow St, Dallas,TX,75001 +254867,Wired Headphones,1,11.99,2019-09-15 07:48:00,262 South St, Los Angeles,CA,90001 +254868,Lightning Charging Cable,2,14.95,2019-09-06 11:04:00,81 Adams St, Dallas,TX,75001 +254869,Lightning Charging Cable,1,14.95,2019-09-03 03:38:00,796 Lincoln St, Atlanta,GA,30301 +254870,Google Phone,1,600.0,2019-09-22 10:54:00,65 7th St, Los Angeles,CA,90001 +254871,AA Batteries (4-pack),2,3.84,2019-09-10 20:03:00,270 Madison St, San Francisco,CA,94016 +254872,Wired Headphones,1,11.99,2019-09-09 20:37:00,348 Park St, Los Angeles,CA,90001 +254873,34in Ultrawide Monitor,1,379.99,2019-09-29 12:21:00,598 Lakeview St, Los Angeles,CA,90001 +254874,Flatscreen TV,1,300.0,2019-09-30 15:35:00,216 South St, Los Angeles,CA,90001 +254875,AAA Batteries (4-pack),1,2.99,2019-09-05 15:22:00,780 River St, San Francisco,CA,94016 +254876,Wired Headphones,1,11.99,2019-09-23 20:55:00,774 10th St, Los Angeles,CA,90001 +254877,Bose SoundSport Headphones,1,99.99,2019-09-24 13:30:00,381 Jefferson St, Dallas,TX,75001 +254878,34in Ultrawide Monitor,1,379.99,2019-09-25 18:43:00,324 Jefferson St, Seattle,WA,98101 +254879,ThinkPad Laptop,1,999.99,2019-09-08 21:57:00,322 Adams St, Dallas,TX,75001 +254880,Google Phone,1,600.0,2019-09-14 14:48:00,612 12th St, New York City,NY,10001 +254881,27in 4K Gaming Monitor,1,389.99,2019-09-08 13:26:00,634 Lake St, Seattle,WA,98101 +254882,AAA Batteries (4-pack),1,2.99,2019-09-03 20:19:00,219 6th St, New York City,NY,10001 +254883,iPhone,1,700.0,2019-09-01 18:33:00,589 West St, Seattle,WA,98101 +254884,20in Monitor,1,109.99,2019-09-16 13:57:00,508 10th St, Portland,OR,97035 +254884,ThinkPad Laptop,1,999.99,2019-09-16 13:57:00,508 10th St, Portland,OR,97035 +254885,AAA Batteries (4-pack),1,2.99,2019-09-08 23:11:00,302 Forest St, Seattle,WA,98101 +254886,AA Batteries (4-pack),1,3.84,2019-09-03 14:06:00,335 Highland St, New York City,NY,10001 +254887,Wired Headphones,1,11.99,2019-09-07 19:19:00,144 9th St, Atlanta,GA,30301 +254888,USB-C Charging Cable,1,11.95,2019-09-17 00:00:00,834 Maple St, Dallas,TX,75001 +254889,Google Phone,1,600.0,2019-09-08 14:17:00,467 1st St, San Francisco,CA,94016 +254889,Wired Headphones,1,11.99,2019-09-08 14:17:00,467 1st St, San Francisco,CA,94016 +254890,34in Ultrawide Monitor,1,379.99,2019-09-10 15:19:00,56 2nd St, Los Angeles,CA,90001 +254891,AA Batteries (4-pack),1,3.84,2019-09-23 14:06:00,730 Ridge St, Atlanta,GA,30301 +254892,ThinkPad Laptop,1,999.99,2019-09-25 11:48:00,828 2nd St, San Francisco,CA,94016 +254893,AAA Batteries (4-pack),2,2.99,2019-09-12 19:26:00,263 13th St, San Francisco,CA,94016 +254894,Apple Airpods Headphones,1,150.0,2019-09-02 20:02:00,879 Sunset St, Atlanta,GA,30301 +254895,Vareebadd Phone,1,400.0,2019-09-07 19:08:00,176 4th St, Seattle,WA,98101 +254895,USB-C Charging Cable,1,11.95,2019-09-07 19:08:00,176 4th St, Seattle,WA,98101 +254895,Wired Headphones,2,11.99,2019-09-07 19:08:00,176 4th St, Seattle,WA,98101 +254896,Google Phone,1,600.0,2019-09-28 17:36:00,215 Cedar St, Portland,ME,04101 +254897,Lightning Charging Cable,1,14.95,2019-09-27 17:01:00,393 Adams St, San Francisco,CA,94016 +254898,Google Phone,1,600.0,2019-09-06 11:52:00,546 Main St, Dallas,TX,75001 +254898,USB-C Charging Cable,1,11.95,2019-09-06 11:52:00,546 Main St, Dallas,TX,75001 +254899,Wired Headphones,1,11.99,2019-09-24 03:54:00,400 Church St, San Francisco,CA,94016 +254900,Wired Headphones,1,11.99,2019-09-17 22:00:00,275 North St, Los Angeles,CA,90001 +254901,34in Ultrawide Monitor,1,379.99,2019-09-09 23:34:00,316 Pine St, San Francisco,CA,94016 +254902,AA Batteries (4-pack),2,3.84,2019-09-14 19:03:00,143 Forest St, San Francisco,CA,94016 +254903,27in FHD Monitor,1,149.99,2019-09-26 15:39:00,850 Forest St, Portland,OR,97035 +254904,iPhone,1,700.0,2019-09-01 16:34:00,664 Jackson St, Portland,OR,97035 +254905,27in FHD Monitor,1,149.99,2019-09-25 12:20:00,209 Walnut St, New York City,NY,10001 +254906,USB-C Charging Cable,2,11.95,2019-09-05 12:29:00,358 South St, New York City,NY,10001 +254907,AA Batteries (4-pack),2,3.84,2019-09-25 18:55:00,237 5th St, Los Angeles,CA,90001 +254908,Bose SoundSport Headphones,1,99.99,2019-09-29 08:11:00,903 Meadow St, Dallas,TX,75001 +254909,Apple Airpods Headphones,1,150.0,2019-09-12 11:44:00,403 Jefferson St, San Francisco,CA,94016 +254910,USB-C Charging Cable,1,11.95,2019-09-09 10:37:00,727 Forest St, San Francisco,CA,94016 +254911,Google Phone,1,600.0,2019-09-26 13:49:00,769 Spruce St, San Francisco,CA,94016 +254912,Apple Airpods Headphones,1,150.0,2019-09-14 12:17:00,61 13th St, San Francisco,CA,94016 +254913,Lightning Charging Cable,1,14.95,2019-09-03 11:57:00,858 Jefferson St, Los Angeles,CA,90001 +254914,AAA Batteries (4-pack),1,2.99,2019-09-28 23:04:00,433 Hickory St, San Francisco,CA,94016 +254915,Wired Headphones,2,11.99,2019-09-10 13:08:00,262 Lake St, Los Angeles,CA,90001 +254916,AAA Batteries (4-pack),1,2.99,2019-09-18 01:52:00,280 West St, San Francisco,CA,94016 +254917,AAA Batteries (4-pack),2,2.99,2019-09-22 23:11:00,395 12th St, Dallas,TX,75001 +254918,27in FHD Monitor,1,149.99,2019-09-03 18:30:00,160 Main St, San Francisco,CA,94016 +254919,Google Phone,1,600.0,2019-09-21 22:39:00,903 River St, Los Angeles,CA,90001 +254920,27in 4K Gaming Monitor,1,389.99,2019-09-01 20:58:00,160 Spruce St, Portland,OR,97035 +254921,Flatscreen TV,1,300.0,2019-09-23 20:10:00,208 Jefferson St, Atlanta,GA,30301 +254922,USB-C Charging Cable,1,11.95,2019-09-19 04:36:00,973 Chestnut St, Atlanta,GA,30301 +254923,20in Monitor,1,109.99,2019-09-08 16:44:00,536 Hill St, Austin,TX,73301 +254924,iPhone,1,700.0,2019-09-17 09:52:00,568 7th St, San Francisco,CA,94016 +254924,Lightning Charging Cable,2,14.95,2019-09-17 09:52:00,568 7th St, San Francisco,CA,94016 +254925,Lightning Charging Cable,1,14.95,2019-09-19 09:58:00,53 Center St, Austin,TX,73301 +254926,34in Ultrawide Monitor,1,379.99,2019-09-18 05:09:00,415 Wilson St, San Francisco,CA,94016 +254927,27in FHD Monitor,1,149.99,2019-09-12 19:24:00,425 Washington St, New York City,NY,10001 +254928,AAA Batteries (4-pack),1,2.99,2019-09-02 07:23:00,175 River St, San Francisco,CA,94016 +254929,27in 4K Gaming Monitor,1,389.99,2019-09-16 18:40:00,401 Elm St, Dallas,TX,75001 +254930,Lightning Charging Cable,1,14.95,2019-09-03 09:04:00,817 Pine St, Boston,MA,02215 +254931,Lightning Charging Cable,1,14.95,2019-09-27 20:56:00,229 West St, Portland,OR,97035 +254932,Wired Headphones,1,11.99,2019-09-26 15:37:00,706 Forest St, New York City,NY,10001 +254933,34in Ultrawide Monitor,1,379.99,2019-09-27 09:10:00,380 Meadow St, Boston,MA,02215 +254934,USB-C Charging Cable,1,11.95,2019-09-09 11:50:00,949 Lake St, Seattle,WA,98101 +254935,27in 4K Gaming Monitor,1,389.99,2019-09-07 08:49:00,953 4th St, San Francisco,CA,94016 +254936,AA Batteries (4-pack),1,3.84,2019-09-23 23:15:00,93 1st St, Los Angeles,CA,90001 +254937,USB-C Charging Cable,1,11.95,2019-09-01 12:07:00,906 Lincoln St, Atlanta,GA,30301 +254938,ThinkPad Laptop,1,999.99,2019-09-09 18:01:00,506 Cedar St, Los Angeles,CA,90001 +254939,Apple Airpods Headphones,1,150.0,2019-09-19 16:09:00,17 2nd St, New York City,NY,10001 +254940,Lightning Charging Cable,1,14.95,2019-09-04 19:01:00,615 West St, Los Angeles,CA,90001 +254941,Apple Airpods Headphones,1,150.0,2019-09-12 12:19:00,880 River St, Boston,MA,02215 +254942,USB-C Charging Cable,1,11.95,2019-09-30 11:43:00,519 Lakeview St, Seattle,WA,98101 +254943,Google Phone,1,600.0,2019-09-18 17:59:00,250 Dogwood St, New York City,NY,10001 +254944,AA Batteries (4-pack),1,3.84,2019-09-01 20:14:00,435 Dogwood St, Portland,OR,97035 +254945,Apple Airpods Headphones,1,150.0,2019-09-23 18:09:00,13 Hill St, Austin,TX,73301 +254946,Wired Headphones,1,11.99,2019-09-28 20:41:00,143 14th St, New York City,NY,10001 +254947,Google Phone,1,600.0,2019-09-02 22:09:00,384 Walnut St, Boston,MA,02215 +254948,AA Batteries (4-pack),1,3.84,2019-09-26 18:01:00,916 4th St, Seattle,WA,98101 +254949,Apple Airpods Headphones,1,150.0,2019-09-20 09:52:00,602 11th St, San Francisco,CA,94016 +254950,Lightning Charging Cable,1,14.95,2019-09-28 17:15:00,936 Maple St, New York City,NY,10001 +254951,Lightning Charging Cable,1,14.95,2019-09-12 12:40:00,294 Sunset St, San Francisco,CA,94016 +254952,AAA Batteries (4-pack),1,2.99,2019-09-29 22:45:00,739 Lakeview St, Los Angeles,CA,90001 +254952,34in Ultrawide Monitor,1,379.99,2019-09-29 22:45:00,739 Lakeview St, Los Angeles,CA,90001 +254953,AA Batteries (4-pack),1,3.84,2019-09-13 13:13:00,891 Lincoln St, Los Angeles,CA,90001 +254953,Google Phone,1,600.0,2019-09-13 13:13:00,891 Lincoln St, Los Angeles,CA,90001 +254954,AAA Batteries (4-pack),3,2.99,2019-09-17 00:31:00,245 Elm St, Seattle,WA,98101 +254955,AA Batteries (4-pack),1,3.84,2019-09-11 15:11:00,466 13th St, San Francisco,CA,94016 +254956,Bose SoundSport Headphones,1,99.99,2019-09-22 23:11:00,587 Jefferson St, Austin,TX,73301 +254957,34in Ultrawide Monitor,1,379.99,2019-09-17 21:35:00,243 5th St, Portland,OR,97035 +254958,34in Ultrawide Monitor,1,379.99,2019-09-07 07:19:00,409 Walnut St, San Francisco,CA,94016 +254959,20in Monitor,1,109.99,2019-09-30 01:30:00,387 Adams St, Seattle,WA,98101 +254960,Flatscreen TV,1,300.0,2019-09-14 00:33:00,942 10th St, Boston,MA,02215 +254961,Apple Airpods Headphones,1,150.0,2019-09-19 21:31:00,721 11th St, Boston,MA,02215 +254962,Google Phone,1,600.0,2019-09-16 09:55:00,171 Church St, Portland,ME,04101 +254963,Wired Headphones,1,11.99,2019-09-02 12:49:00,639 River St, San Francisco,CA,94016 +254964,Apple Airpods Headphones,2,150.0,2019-09-15 17:05:00,171 Elm St, San Francisco,CA,94016 +254965,AA Batteries (4-pack),1,3.84,2019-09-24 23:53:00,126 4th St, Seattle,WA,98101 +254966,Apple Airpods Headphones,1,150.0,2019-09-26 19:33:00,687 Highland St, San Francisco,CA,94016 +254967,27in FHD Monitor,1,149.99,2019-09-12 12:54:00,383 8th St, Los Angeles,CA,90001 +254968,Lightning Charging Cable,2,14.95,2019-09-04 16:12:00,167 5th St, Los Angeles,CA,90001 +254969,Flatscreen TV,1,300.0,2019-09-07 11:37:00,421 8th St, San Francisco,CA,94016 +254970,AAA Batteries (4-pack),1,2.99,2019-09-17 21:39:00,46 Lakeview St, New York City,NY,10001 +254971,Macbook Pro Laptop,1,1700.0,2019-09-04 11:17:00,524 Johnson St, San Francisco,CA,94016 +254972,USB-C Charging Cable,2,11.95,2019-09-20 08:06:00,108 Willow St, San Francisco,CA,94016 +254973,27in FHD Monitor,1,149.99,2019-09-18 12:01:00,528 Church St, San Francisco,CA,94016 +254974,AA Batteries (4-pack),1,3.84,2019-09-25 10:30:00,637 2nd St, Boston,MA,02215 +254975,AAA Batteries (4-pack),3,2.99,2019-09-17 21:03:00,366 Cedar St, Portland,OR,97035 +254976,USB-C Charging Cable,2,11.95,2019-09-26 17:14:00,535 Spruce St, Boston,MA,02215 +254977,27in FHD Monitor,1,149.99,2019-09-21 23:09:00,328 Hill St, San Francisco,CA,94016 +254978,20in Monitor,1,109.99,2019-09-20 12:39:00,642 12th St, Dallas,TX,75001 +254979,Lightning Charging Cable,1,14.95,2019-09-20 19:06:00,292 Pine St, Austin,TX,73301 +254980,Wired Headphones,1,11.99,2019-09-23 18:03:00,162 Adams St, San Francisco,CA,94016 +254981,USB-C Charging Cable,2,11.95,2019-09-28 14:28:00,332 Wilson St, Los Angeles,CA,90001 +254982,AAA Batteries (4-pack),5,2.99,2019-09-21 12:16:00,896 Park St, San Francisco,CA,94016 +254983,Bose SoundSport Headphones,1,99.99,2019-09-12 18:29:00,219 Hickory St, San Francisco,CA,94016 +254984,iPhone,1,700.0,2019-09-08 01:27:00,64 Washington St, New York City,NY,10001 +254984,Lightning Charging Cable,1,14.95,2019-09-08 01:27:00,64 Washington St, New York City,NY,10001 +254985,Lightning Charging Cable,1,14.95,2019-09-12 10:25:00,816 12th St, Austin,TX,73301 +254986,USB-C Charging Cable,1,11.95,2019-09-28 09:48:00,843 Hickory St, New York City,NY,10001 +254987,Macbook Pro Laptop,1,1700.0,2019-09-25 00:49:00,324 Church St, San Francisco,CA,94016 +254988,27in FHD Monitor,1,149.99,2019-09-15 14:18:00,927 Forest St, Los Angeles,CA,90001 +254989,Lightning Charging Cable,1,14.95,2019-09-29 06:55:00,268 12th St, San Francisco,CA,94016 +254990,Apple Airpods Headphones,1,150.0,2019-09-02 03:02:00,964 Center St, San Francisco,CA,94016 +254991,AA Batteries (4-pack),2,3.84,2019-09-08 14:33:00,716 River St, San Francisco,CA,94016 +254992,27in FHD Monitor,1,149.99,2019-09-22 20:08:00,829 Center St, Boston,MA,02215 +254993,Wired Headphones,1,11.99,2019-09-20 15:55:00,708 Madison St, San Francisco,CA,94016 +254994,Wired Headphones,1,11.99,2019-09-26 17:40:00,459 Sunset St, Portland,OR,97035 +254995,AAA Batteries (4-pack),1,2.99,2019-09-14 17:58:00,502 Madison St, Dallas,TX,75001 +254996,Google Phone,1,600.0,2019-09-20 09:35:00,695 Church St, New York City,NY,10001 +254997,Lightning Charging Cable,1,14.95,2019-09-26 16:19:00,660 Walnut St, Atlanta,GA,30301 +254998,Macbook Pro Laptop,1,1700.0,2019-09-24 15:41:00,548 Lincoln St, New York City,NY,10001 +254999,Bose SoundSport Headphones,1,99.99,2019-09-04 16:25:00,816 Wilson St, San Francisco,CA,94016 +255000,Apple Airpods Headphones,1,150.0,2019-09-06 14:59:00,532 Lake St, Seattle,WA,98101 +255001,AAA Batteries (4-pack),1,2.99,2019-09-16 23:35:00,733 Elm St, Boston,MA,02215 +255002,AA Batteries (4-pack),2,3.84,2019-09-27 18:51:00,715 2nd St, San Francisco,CA,94016 +255003,27in FHD Monitor,1,149.99,2019-09-01 16:08:00,608 Lake St, Dallas,TX,75001 +255004,Lightning Charging Cable,1,14.95,2019-09-28 05:38:00,468 4th St, Dallas,TX,75001 +255005,iPhone,1,700.0,2019-09-02 00:19:00,25 West St, Los Angeles,CA,90001 +255006,AAA Batteries (4-pack),1,2.99,2019-09-30 21:37:00,619 Elm St, Boston,MA,02215 +255007,AA Batteries (4-pack),1,3.84,2019-09-13 13:38:00,175 Maple St, Boston,MA,02215 +255008,USB-C Charging Cable,1,11.95,2019-09-21 11:00:00,97 14th St, Boston,MA,02215 +255009,AA Batteries (4-pack),2,3.84,2019-09-23 22:43:00,861 South St, New York City,NY,10001 +255010,Vareebadd Phone,1,400.0,2019-09-13 22:19:00,361 Adams St, Atlanta,GA,30301 +255011,Google Phone,1,600.0,2019-09-08 22:35:00,977 Hill St, San Francisco,CA,94016 +255011,Bose SoundSport Headphones,1,99.99,2019-09-08 22:35:00,977 Hill St, San Francisco,CA,94016 +255012,AAA Batteries (4-pack),1,2.99,2019-09-14 17:10:00,173 9th St, Los Angeles,CA,90001 +255013,AAA Batteries (4-pack),3,2.99,2019-09-17 12:12:00,450 Washington St, Austin,TX,73301 +255014,Macbook Pro Laptop,1,1700.0,2019-09-23 01:33:00,385 Park St, Boston,MA,02215 +255015,Wired Headphones,1,11.99,2019-09-23 21:22:00,759 Walnut St, Dallas,TX,75001 +255016,iPhone,1,700.0,2019-09-06 00:46:00,437 Church St, Atlanta,GA,30301 +255017,AA Batteries (4-pack),1,3.84,2019-09-05 10:36:00,594 Park St, San Francisco,CA,94016 +255018,AA Batteries (4-pack),1,3.84,2019-09-24 22:05:00,678 South St, San Francisco,CA,94016 +255019,Apple Airpods Headphones,1,150.0,2019-09-09 21:15:00,833 Jefferson St, Los Angeles,CA,90001 +255020,iPhone,1,700.0,2019-09-28 12:23:00,339 Maple St, San Francisco,CA,94016 +255021,AA Batteries (4-pack),1,3.84,2019-09-27 14:58:00,352 Meadow St, San Francisco,CA,94016 +255022,AA Batteries (4-pack),1,3.84,2019-09-27 20:54:00,887 Walnut St, Dallas,TX,75001 +255023,Wired Headphones,1,11.99,2019-09-14 12:21:00,968 12th St, Austin,TX,73301 +255024,27in FHD Monitor,1,149.99,2019-09-17 20:30:00,562 Cherry St, New York City,NY,10001 +255025,ThinkPad Laptop,1,999.99,2019-09-05 18:02:00,665 Spruce St, Boston,MA,02215 +255026,Google Phone,1,600.0,2019-09-28 13:13:00,634 5th St, New York City,NY,10001 +255027,Lightning Charging Cable,2,14.95,2019-09-13 01:34:00,40 Cedar St, Atlanta,GA,30301 +255028,Lightning Charging Cable,1,14.95,2019-09-18 01:18:00,684 Lakeview St, Atlanta,GA,30301 +255029,Lightning Charging Cable,1,14.95,2019-09-24 21:02:00,741 Main St, Dallas,TX,75001 +255030,27in 4K Gaming Monitor,1,389.99,2019-09-29 08:50:00,222 10th St, Seattle,WA,98101 +255031,Wired Headphones,1,11.99,2019-09-29 20:39:00,125 Forest St, Atlanta,GA,30301 +255032,AA Batteries (4-pack),1,3.84,2019-09-08 12:01:00,355 Cherry St, Dallas,TX,75001 +255033,Lightning Charging Cable,1,14.95,2019-09-03 20:14:00,687 Walnut St, Dallas,TX,75001 +255034,AAA Batteries (4-pack),1,2.99,2019-09-13 13:06:00,283 Adams St, San Francisco,CA,94016 +255035,AAA Batteries (4-pack),1,2.99,2019-09-30 14:32:00,584 2nd St, New York City,NY,10001 +255036,AA Batteries (4-pack),1,3.84,2019-09-17 12:50:00,844 North St, Portland,OR,97035 +255037,AA Batteries (4-pack),1,3.84,2019-09-08 20:22:00,143 North St, New York City,NY,10001 +255038,Wired Headphones,1,11.99,2019-09-27 13:23:00,493 Dogwood St, Los Angeles,CA,90001 +255039,27in FHD Monitor,1,149.99,2019-09-01 18:29:00,993 Church St, New York City,NY,10001 +255040,27in FHD Monitor,1,149.99,2019-09-10 12:04:00,396 2nd St, Seattle,WA,98101 +255041,AA Batteries (4-pack),2,3.84,2019-09-03 22:40:00,387 Cedar St, Boston,MA,02215 +255042,Apple Airpods Headphones,1,150.0,2019-09-18 11:31:00,837 North St, Atlanta,GA,30301 +255043,Apple Airpods Headphones,1,150.0,2019-09-11 17:32:00,4 Jackson St, Seattle,WA,98101 +255044,34in Ultrawide Monitor,1,379.99,2019-09-24 13:32:00,47 Park St, Seattle,WA,98101 +255045,AAA Batteries (4-pack),1,2.99,2019-09-11 12:48:00,213 West St, Los Angeles,CA,90001 +255046,AAA Batteries (4-pack),1,2.99,2019-09-06 13:00:00,384 Lake St, San Francisco,CA,94016 +255047,LG Dryer,1,600.0,2019-09-09 08:13:00,890 7th St, New York City,NY,10001 +255048,USB-C Charging Cable,1,11.95,2019-09-27 12:23:00,959 West St, Portland,ME,04101 +255049,Bose SoundSport Headphones,1,99.99,2019-09-10 22:53:00,315 Cherry St, New York City,NY,10001 +255050,Lightning Charging Cable,1,14.95,2019-09-26 19:17:00,714 Meadow St, Seattle,WA,98101 +255051,Apple Airpods Headphones,1,150.0,2019-09-10 13:18:00,846 2nd St, New York City,NY,10001 +255052,iPhone,1,700.0,2019-09-05 21:47:00,746 7th St, Atlanta,GA,30301 +255052,Wired Headphones,1,11.99,2019-09-05 21:47:00,746 7th St, Atlanta,GA,30301 +255053,USB-C Charging Cable,1,11.95,2019-09-07 21:56:00,118 Highland St, Seattle,WA,98101 +255054,AA Batteries (4-pack),1,3.84,2019-09-10 10:06:00,505 8th St, Dallas,TX,75001 +255055,Macbook Pro Laptop,1,1700.0,2019-09-09 20:35:00,669 Lake St, Portland,OR,97035 +255056,LG Washing Machine,1,600.0,2019-09-07 17:13:00,861 13th St, Dallas,TX,75001 +255057,ThinkPad Laptop,1,999.99,2019-09-03 20:11:00,736 Forest St, New York City,NY,10001 +255058,Wired Headphones,1,11.99,2019-09-20 17:30:00,745 7th St, Atlanta,GA,30301 +255059,Lightning Charging Cable,1,14.95,2019-09-05 21:55:00,95 9th St, San Francisco,CA,94016 +255060,AAA Batteries (4-pack),3,2.99,2019-09-28 11:51:00,495 South St, Boston,MA,02215 +255060,20in Monitor,1,109.99,2019-09-28 11:51:00,495 South St, Boston,MA,02215 +255061,Apple Airpods Headphones,1,150.0,2019-09-06 13:25:00,454 West St, San Francisco,CA,94016 +255062,AAA Batteries (4-pack),1,2.99,2019-09-25 12:49:00,677 Maple St, Dallas,TX,75001 +255063,Wired Headphones,1,11.99,2019-09-29 07:32:00,814 Jefferson St, San Francisco,CA,94016 +255064,USB-C Charging Cable,2,11.95,2019-09-07 14:03:00,55 10th St, Los Angeles,CA,90001 +255065,Lightning Charging Cable,1,14.95,2019-09-02 18:45:00,540 Maple St, Boston,MA,02215 +255066,AAA Batteries (4-pack),1,2.99,2019-09-05 14:13:00,878 4th St, Los Angeles,CA,90001 +255067,Vareebadd Phone,1,400.0,2019-09-06 10:38:00,554 Highland St, Los Angeles,CA,90001 +255068,USB-C Charging Cable,1,11.95,2019-09-02 08:45:00,108 Ridge St, Austin,TX,73301 +255069,AA Batteries (4-pack),1,3.84,2019-09-07 11:59:00,594 Willow St, Seattle,WA,98101 +255070,Lightning Charging Cable,1,14.95,2019-09-13 09:25:00,966 Ridge St, San Francisco,CA,94016 +255071,27in FHD Monitor,1,149.99,2019-09-20 19:11:00,743 Forest St, New York City,NY,10001 +255072,USB-C Charging Cable,1,11.95,2019-09-20 11:10:00,219 Madison St, Boston,MA,02215 +255073,Apple Airpods Headphones,1,150.0,2019-09-14 19:55:00,34 Center St, San Francisco,CA,94016 +255074,USB-C Charging Cable,1,11.95,2019-09-08 22:27:00,344 13th St, Atlanta,GA,30301 +255075,Google Phone,1,600.0,2019-09-29 16:21:00,247 Madison St, New York City,NY,10001 +255075,Wired Headphones,1,11.99,2019-09-29 16:21:00,247 Madison St, New York City,NY,10001 +255076,iPhone,1,700.0,2019-09-22 00:06:00,908 8th St, Austin,TX,73301 +255077,27in 4K Gaming Monitor,1,389.99,2019-09-22 10:34:00,331 Cedar St, San Francisco,CA,94016 +255078,20in Monitor,1,109.99,2019-09-19 21:55:00,831 River St, Atlanta,GA,30301 +255079,Wired Headphones,1,11.99,2019-09-24 17:03:00,571 Center St, New York City,NY,10001 +255080,AA Batteries (4-pack),1,3.84,2019-09-18 22:27:00,628 Willow St, Austin,TX,73301 +255081,USB-C Charging Cable,1,11.95,2019-09-22 12:22:00,98 Center St, Seattle,WA,98101 +255082,Bose SoundSport Headphones,1,99.99,2019-09-21 15:15:00,785 Highland St, New York City,NY,10001 +255083,Lightning Charging Cable,1,14.95,2019-09-19 18:42:00,198 Walnut St, New York City,NY,10001 +255084,Google Phone,1,600.0,2019-09-19 12:13:00,722 13th St, San Francisco,CA,94016 +255085,AA Batteries (4-pack),1,3.84,2019-09-26 22:30:00,15 Lakeview St, Boston,MA,02215 +255086,27in 4K Gaming Monitor,1,389.99,2019-09-12 22:21:00,269 7th St, San Francisco,CA,94016 +255087,27in 4K Gaming Monitor,1,389.99,2019-09-29 22:28:00,202 14th St, San Francisco,CA,94016 +255088,USB-C Charging Cable,1,11.95,2019-09-11 09:49:00,458 Walnut St, San Francisco,CA,94016 +255089,Lightning Charging Cable,1,14.95,2019-09-01 14:11:00,154 Spruce St, Atlanta,GA,30301 +255090,Wired Headphones,1,11.99,2019-09-13 20:21:00,311 West St, Seattle,WA,98101 +255091,AA Batteries (4-pack),1,3.84,2019-09-29 10:39:00,117 2nd St, San Francisco,CA,94016 +255092,Wired Headphones,2,11.99,2019-09-11 12:20:00,940 Washington St, Dallas,TX,75001 +255092,AA Batteries (4-pack),2,3.84,2019-09-11 12:20:00,940 Washington St, Dallas,TX,75001 +255093,27in FHD Monitor,1,149.99,2019-09-24 16:28:00,905 4th St, New York City,NY,10001 +255094,ThinkPad Laptop,1,999.99,2019-09-27 19:32:00,816 6th St, New York City,NY,10001 +255095,Google Phone,1,600.0,2019-09-30 18:22:00,360 South St, Austin,TX,73301 +255095,USB-C Charging Cable,1,11.95,2019-09-30 18:22:00,360 South St, Austin,TX,73301 +255096,Wired Headphones,1,11.99,2019-09-22 11:15:00,59 Maple St, San Francisco,CA,94016 +255097,AAA Batteries (4-pack),1,2.99,2019-09-19 15:04:00,270 Meadow St, New York City,NY,10001 +255098,AA Batteries (4-pack),1,3.84,2019-09-05 17:13:00,869 Wilson St, Seattle,WA,98101 +255099,iPhone,1,700.0,2019-09-18 12:35:00,332 Chestnut St, San Francisco,CA,94016 +255099,Lightning Charging Cable,1,14.95,2019-09-18 12:35:00,332 Chestnut St, San Francisco,CA,94016 +255099,Wired Headphones,1,11.99,2019-09-18 12:35:00,332 Chestnut St, San Francisco,CA,94016 +255100,27in FHD Monitor,1,149.99,2019-09-08 07:06:00,955 River St, Los Angeles,CA,90001 +255101,AA Batteries (4-pack),1,3.84,2019-09-04 10:49:00,48 River St, San Francisco,CA,94016 +255102,Wired Headphones,1,11.99,2019-09-25 11:34:00,862 1st St, San Francisco,CA,94016 +255103,Bose SoundSport Headphones,1,99.99,2019-09-19 19:07:00,906 Wilson St, Seattle,WA,98101 +255104,AAA Batteries (4-pack),2,2.99,2019-09-20 20:59:00,519 North St, Portland,OR,97035 +255105,AA Batteries (4-pack),3,3.84,2019-09-04 21:14:00,96 Center St, Portland,OR,97035 +255106,Wired Headphones,2,11.99,2019-09-15 03:04:00,757 West St, Austin,TX,73301 +255107,AAA Batteries (4-pack),1,2.99,2019-09-10 15:08:00,454 Lincoln St, New York City,NY,10001 +255108,AAA Batteries (4-pack),1,2.99,2019-09-06 13:49:00,560 Lake St, New York City,NY,10001 +255109,ThinkPad Laptop,1,999.99,2019-09-06 13:20:00,914 Johnson St, Atlanta,GA,30301 +255110,iPhone,1,700.0,2019-09-09 17:30:00,573 13th St, Dallas,TX,75001 +255111,AA Batteries (4-pack),1,3.84,2019-09-22 10:57:00,509 Jefferson St, Boston,MA,02215 +255112,Lightning Charging Cable,1,14.95,2019-09-15 23:41:00,199 Jackson St, Boston,MA,02215 +255113,27in FHD Monitor,1,149.99,2019-09-30 08:13:00,586 Walnut St, Boston,MA,02215 +255114,Apple Airpods Headphones,1,150.0,2019-09-28 13:42:00,652 Elm St, Austin,TX,73301 +255115,Wired Headphones,1,11.99,2019-09-09 21:38:00,352 Church St, San Francisco,CA,94016 +255116,Bose SoundSport Headphones,1,99.99,2019-09-29 20:01:00,878 4th St, Atlanta,GA,30301 +255117,20in Monitor,1,109.99,2019-09-11 17:18:00,971 West St, San Francisco,CA,94016 +255118,Wired Headphones,1,11.99,2019-09-07 22:16:00,929 Willow St, Los Angeles,CA,90001 +255119,27in 4K Gaming Monitor,1,389.99,2019-09-25 17:31:00,821 Jackson St, Atlanta,GA,30301 +255120,USB-C Charging Cable,2,11.95,2019-09-05 22:16:00,276 Washington St, Austin,TX,73301 +255121,34in Ultrawide Monitor,1,379.99,2019-09-28 17:54:00,375 Wilson St, Dallas,TX,75001 +255122,Wired Headphones,1,11.99,2019-09-21 13:43:00,794 Maple St, Boston,MA,02215 +255123,Lightning Charging Cable,1,14.95,2019-09-27 19:22:00,784 Maple St, Austin,TX,73301 +255124,20in Monitor,1,109.99,2019-09-20 12:34:00,977 Chestnut St, New York City,NY,10001 +255125,USB-C Charging Cable,1,11.95,2019-09-10 12:39:00,151 13th St, Dallas,TX,75001 +255126,AAA Batteries (4-pack),1,2.99,2019-09-21 16:21:00,828 Maple St, Atlanta,GA,30301 +255127,USB-C Charging Cable,1,11.95,2019-09-10 16:10:00,944 4th St, San Francisco,CA,94016 +255128,USB-C Charging Cable,1,11.95,2019-09-20 22:29:00,812 7th St, Boston,MA,02215 +255129,Lightning Charging Cable,1,14.95,2019-09-11 05:00:00,171 Cherry St, New York City,NY,10001 +255130,USB-C Charging Cable,1,11.95,2019-09-01 13:40:00,74 5th St, Seattle,WA,98101 +255131,Lightning Charging Cable,1,14.95,2019-09-24 21:17:00,391 6th St, Los Angeles,CA,90001 +255132,AAA Batteries (4-pack),1,2.99,2019-09-14 14:53:00,473 8th St, Los Angeles,CA,90001 +255133,Lightning Charging Cable,1,14.95,2019-09-02 05:44:00,533 Lake St, Los Angeles,CA,90001 +255134,Apple Airpods Headphones,1,150.0,2019-09-10 23:14:00,857 Main St, Austin,TX,73301 +255135,Apple Airpods Headphones,1,150.0,2019-09-29 10:33:00,529 Ridge St, New York City,NY,10001 +255136,iPhone,1,700.0,2019-09-02 20:04:00,157 4th St, Los Angeles,CA,90001 +255137,Lightning Charging Cable,1,14.95,2019-09-09 14:20:00,44 Ridge St, San Francisco,CA,94016 +255137,LG Washing Machine,1,600.0,2019-09-09 14:20:00,44 Ridge St, San Francisco,CA,94016 +255138,Apple Airpods Headphones,1,150.0,2019-09-11 08:54:00,521 Ridge St, San Francisco,CA,94016 +255139,Lightning Charging Cable,1,14.95,2019-09-10 22:28:00,13 12th St, New York City,NY,10001 +255140,Lightning Charging Cable,1,14.95,2019-09-24 11:47:00,458 5th St, San Francisco,CA,94016 +255141,Apple Airpods Headphones,1,150.0,2019-09-17 00:18:00,709 Jefferson St, San Francisco,CA,94016 +255142,AA Batteries (4-pack),1,3.84,2019-09-27 19:31:00,561 Cedar St, Portland,OR,97035 +255143,Wired Headphones,1,11.99,2019-09-29 12:38:00,420 Forest St, Los Angeles,CA,90001 +255144,20in Monitor,1,109.99,2019-09-19 13:47:00,473 Chestnut St, San Francisco,CA,94016 +255145,AA Batteries (4-pack),1,3.84,2019-09-24 14:07:00,249 Spruce St, Atlanta,GA,30301 +255146,Bose SoundSport Headphones,1,99.99,2019-09-11 15:44:00,992 Sunset St, Seattle,WA,98101 +255147,Wired Headphones,1,11.99,2019-09-02 02:21:00,800 Walnut St, San Francisco,CA,94016 +255148,AAA Batteries (4-pack),1,2.99,2019-09-14 11:42:00,709 5th St, San Francisco,CA,94016 +255149,27in 4K Gaming Monitor,1,389.99,2019-09-29 10:07:00,144 4th St, Los Angeles,CA,90001 +255150,Macbook Pro Laptop,1,1700.0,2019-09-12 12:33:00,992 Elm St, New York City,NY,10001 +255151,27in FHD Monitor,1,149.99,2019-09-19 20:51:00,134 14th St, Boston,MA,02215 +255152,AA Batteries (4-pack),1,3.84,2019-09-27 11:24:00,235 Wilson St, Austin,TX,73301 +255153,AAA Batteries (4-pack),1,2.99,2019-09-13 22:46:00,919 6th St, New York City,NY,10001 +255154,Google Phone,1,600.0,2019-09-09 18:42:00,467 Elm St, Dallas,TX,75001 +255154,USB-C Charging Cable,2,11.95,2019-09-09 18:42:00,467 Elm St, Dallas,TX,75001 +255155,USB-C Charging Cable,1,11.95,2019-09-02 09:42:00,67 Maple St, Portland,ME,04101 +255156,AA Batteries (4-pack),1,3.84,2019-09-10 13:26:00,85 Lakeview St, San Francisco,CA,94016 +255157,iPhone,1,700.0,2019-09-27 15:02:00,875 6th St, New York City,NY,10001 +255158,34in Ultrawide Monitor,1,379.99,2019-09-06 21:17:00,743 Maple St, New York City,NY,10001 +255159,AA Batteries (4-pack),1,3.84,2019-09-09 01:20:00,945 Lakeview St, Los Angeles,CA,90001 +255160,27in 4K Gaming Monitor,1,389.99,2019-09-22 08:41:00,99 Dogwood St, Boston,MA,02215 +255161,Lightning Charging Cable,1,14.95,2019-09-19 21:27:00,806 Lincoln St, New York City,NY,10001 +255162,iPhone,1,700.0,2019-09-16 10:55:00,450 6th St, Los Angeles,CA,90001 +255163,Wired Headphones,1,11.99,2019-09-08 13:25:00,393 Forest St, San Francisco,CA,94016 +255164,USB-C Charging Cable,1,11.95,2019-09-12 12:32:00,162 12th St, Dallas,TX,75001 +255165,AA Batteries (4-pack),1,3.84,2019-09-30 12:15:00,491 Forest St, San Francisco,CA,94016 +255166,LG Washing Machine,1,600.0,2019-09-17 13:24:00,562 Meadow St, Seattle,WA,98101 +255167,USB-C Charging Cable,1,11.95,2019-09-18 15:22:00,736 12th St, Austin,TX,73301 +255168,Lightning Charging Cable,1,14.95,2019-09-27 12:16:00,280 Meadow St, Austin,TX,73301 +255169,Google Phone,1,600.0,2019-09-07 05:07:00,602 Meadow St, Austin,TX,73301 +255170,Flatscreen TV,1,300.0,2019-09-01 23:03:00,896 River St, New York City,NY,10001 +255171,Lightning Charging Cable,1,14.95,2019-09-17 15:13:00,262 Center St, Los Angeles,CA,90001 +255172,Wired Headphones,2,11.99,2019-09-22 00:38:00,559 Meadow St, New York City,NY,10001 +255173,Apple Airpods Headphones,1,150.0,2019-09-29 21:49:00,587 North St, San Francisco,CA,94016 +255174,AA Batteries (4-pack),3,3.84,2019-09-04 12:56:00,849 Elm St, Los Angeles,CA,90001 +255175,AA Batteries (4-pack),1,3.84,2019-09-16 11:45:00,777 Dogwood St, Los Angeles,CA,90001 +255176,Google Phone,1,600.0,2019-09-13 13:10:00,306 Meadow St, Los Angeles,CA,90001 +255177,Bose SoundSport Headphones,1,99.99,2019-09-18 22:04:00,832 10th St, Portland,ME,04101 +255178,AA Batteries (4-pack),1,3.84,2019-09-29 12:42:00,757 11th St, Dallas,TX,75001 +255179,iPhone,1,700.0,2019-09-30 12:55:00,725 Jackson St, San Francisco,CA,94016 +255180,Lightning Charging Cable,1,14.95,2019-09-17 16:20:00,426 Jackson St, Atlanta,GA,30301 +255181,Wired Headphones,1,11.99,2019-09-26 09:01:00,615 6th St, Atlanta,GA,30301 +255182,Wired Headphones,1,11.99,2019-09-28 06:18:00,28 River St, Boston,MA,02215 +255183,AA Batteries (4-pack),1,3.84,2019-09-07 15:42:00,518 Johnson St, New York City,NY,10001 +255184,27in 4K Gaming Monitor,1,389.99,2019-09-01 09:15:00,483 Center St, Los Angeles,CA,90001 +255185,34in Ultrawide Monitor,1,379.99,2019-09-03 16:21:00,821 Jackson St, Los Angeles,CA,90001 +255185,AAA Batteries (4-pack),1,2.99,2019-09-03 16:21:00,821 Jackson St, Los Angeles,CA,90001 +255186,27in FHD Monitor,1,149.99,2019-09-18 19:32:00,201 Spruce St, New York City,NY,10001 +255187,USB-C Charging Cable,1,11.95,2019-09-13 09:50:00,277 9th St, San Francisco,CA,94016 +255188,AA Batteries (4-pack),1,3.84,2019-09-12 15:12:00,252 Madison St, San Francisco,CA,94016 +255189,34in Ultrawide Monitor,1,379.99,2019-09-27 14:01:00,64 Adams St, Boston,MA,02215 +255190,27in 4K Gaming Monitor,1,389.99,2019-09-24 02:07:00,484 Maple St, New York City,NY,10001 +255191,AA Batteries (4-pack),2,3.84,2019-09-07 13:59:00,196 Jackson St, Dallas,TX,75001 +255192,27in 4K Gaming Monitor,1,389.99,2019-09-30 06:04:00,492 Chestnut St, San Francisco,CA,94016 +255193,Lightning Charging Cable,1,14.95,2019-09-04 18:11:00,76 13th St, New York City,NY,10001 +255194,USB-C Charging Cable,1,11.95,2019-09-17 17:40:00,921 12th St, New York City,NY,10001 +255195,Lightning Charging Cable,1,14.95,2019-09-24 11:34:00,679 Park St, Boston,MA,02215 +255196,Lightning Charging Cable,1,14.95,2019-09-12 03:45:00,689 6th St, Portland,OR,97035 +255197,USB-C Charging Cable,1,11.95,2019-09-02 19:48:00,93 7th St, Portland,ME,04101 +255198,Wired Headphones,1,11.99,2019-09-27 12:57:00,464 Hickory St, San Francisco,CA,94016 +255199,iPhone,1,700.0,2019-09-15 13:43:00,133 Wilson St, San Francisco,CA,94016 +255199,Wired Headphones,1,11.99,2019-09-15 13:43:00,133 Wilson St, San Francisco,CA,94016 +255200,AA Batteries (4-pack),2,3.84,2019-09-01 13:00:00,961 Madison St, Los Angeles,CA,90001 +255201,20in Monitor,1,109.99,2019-09-11 10:37:00,128 Cedar St, Portland,OR,97035 +255202,27in 4K Gaming Monitor,1,389.99,2019-09-01 18:35:00,797 Johnson St, San Francisco,CA,94016 +255203,Lightning Charging Cable,1,14.95,2019-09-26 19:11:00,483 Johnson St, Atlanta,GA,30301 +255204,AA Batteries (4-pack),1,3.84,2019-09-16 21:36:00,951 River St, Atlanta,GA,30301 +255205,USB-C Charging Cable,2,11.95,2019-09-11 10:07:00,591 North St, Austin,TX,73301 +255206,USB-C Charging Cable,1,11.95,2019-09-17 19:07:00,747 Spruce St, New York City,NY,10001 +255207,AAA Batteries (4-pack),5,2.99,2019-09-03 12:44:00,845 Pine St, Atlanta,GA,30301 +255208,Apple Airpods Headphones,1,150.0,2019-09-03 21:45:00,987 Adams St, Seattle,WA,98101 +255209,AAA Batteries (4-pack),2,2.99,2019-09-29 08:37:00,855 North St, Los Angeles,CA,90001 +255210,USB-C Charging Cable,1,11.95,2019-09-02 15:15:00,959 Cedar St, New York City,NY,10001 +255211,Bose SoundSport Headphones,1,99.99,2019-09-21 19:19:00,338 Church St, Dallas,TX,75001 +255212,Lightning Charging Cable,1,14.95,2019-09-19 19:21:00,554 14th St, San Francisco,CA,94016 +255213,Lightning Charging Cable,1,14.95,2019-09-22 10:04:00,40 River St, Los Angeles,CA,90001 +255214,Wired Headphones,1,11.99,2019-09-17 11:24:00,190 14th St, San Francisco,CA,94016 +255215,USB-C Charging Cable,1,11.95,2019-09-06 10:40:00,483 14th St, San Francisco,CA,94016 +255216,iPhone,1,700.0,2019-09-01 20:52:00,451 Lakeview St, San Francisco,CA,94016 +255217,27in FHD Monitor,1,149.99,2019-09-09 22:34:00,756 Dogwood St, Los Angeles,CA,90001 +255218,AAA Batteries (4-pack),2,2.99,2019-09-06 22:03:00,995 Hickory St, San Francisco,CA,94016 +255219,AA Batteries (4-pack),1,3.84,2019-09-25 07:39:00,43 Washington St, Portland,OR,97035 +255220,AA Batteries (4-pack),1,3.84,2019-09-22 21:28:00,481 Hill St, San Francisco,CA,94016 +255221,Wired Headphones,1,11.99,2019-09-24 10:10:00,89 Park St, Seattle,WA,98101 +255222,Lightning Charging Cable,1,14.95,2019-09-12 13:15:00,14 River St, Seattle,WA,98101 +255223,ThinkPad Laptop,1,999.99,2019-09-27 16:45:00,169 Hill St, New York City,NY,10001 +255224,AA Batteries (4-pack),2,3.84,2019-09-18 15:01:00,298 Hill St, New York City,NY,10001 +255225,20in Monitor,1,109.99,2019-09-07 13:45:00,17 4th St, Austin,TX,73301 +255226,Flatscreen TV,1,300.0,2019-09-11 13:22:00,846 Spruce St, Austin,TX,73301 +255227,Wired Headphones,1,11.99,2019-09-30 20:46:00,69 14th St, Austin,TX,73301 +255228,Wired Headphones,1,11.99,2019-09-05 16:53:00,235 Sunset St, San Francisco,CA,94016 +255229,AA Batteries (4-pack),2,3.84,2019-09-16 21:55:00,683 Meadow St, San Francisco,CA,94016 +255230,Wired Headphones,1,11.99,2019-09-02 09:29:00,971 Lakeview St, Boston,MA,02215 +255231,Apple Airpods Headphones,1,150.0,2019-09-03 15:29:00,868 Main St, Portland,OR,97035 +255232,Bose SoundSport Headphones,1,99.99,2019-09-10 15:54:00,841 4th St, Boston,MA,02215 +255233,27in FHD Monitor,1,149.99,2019-09-11 07:16:00,855 9th St, New York City,NY,10001 +255234,Wired Headphones,1,11.99,2019-09-05 16:01:00,22 Lakeview St, Atlanta,GA,30301 +255235,AA Batteries (4-pack),1,3.84,2019-09-27 00:22:00,116 10th St, Los Angeles,CA,90001 +255236,USB-C Charging Cable,1,11.95,2019-09-22 16:12:00,780 River St, San Francisco,CA,94016 +255237,AA Batteries (4-pack),3,3.84,2019-09-23 12:28:00,652 Center St, San Francisco,CA,94016 +255238,USB-C Charging Cable,1,11.95,2019-09-03 17:57:00,432 13th St, San Francisco,CA,94016 +255239,27in FHD Monitor,1,149.99,2019-09-15 07:28:00,439 Sunset St, New York City,NY,10001 +255240,Wired Headphones,1,11.99,2019-09-11 22:51:00,488 Jefferson St, San Francisco,CA,94016 +255241,Lightning Charging Cable,1,14.95,2019-09-03 18:11:00,85 13th St, New York City,NY,10001 +255242,USB-C Charging Cable,1,11.95,2019-09-14 17:46:00,236 Cedar St, Los Angeles,CA,90001 +255243,USB-C Charging Cable,1,11.95,2019-09-05 20:55:00,990 2nd St, Los Angeles,CA,90001 +255244,Lightning Charging Cable,1,14.95,2019-09-11 14:41:00,716 Adams St, San Francisco,CA,94016 +255245,20in Monitor,1,109.99,2019-09-07 00:20:00,523 6th St, Los Angeles,CA,90001 +255246,Lightning Charging Cable,1,14.95,2019-09-27 20:49:00,80 Washington St, Boston,MA,02215 +255247,Google Phone,1,600.0,2019-09-11 10:16:00,176 Ridge St, San Francisco,CA,94016 +255247,USB-C Charging Cable,1,11.95,2019-09-11 10:16:00,176 Ridge St, San Francisco,CA,94016 +255248,Lightning Charging Cable,1,14.95,2019-09-15 21:53:00,888 Wilson St, Los Angeles,CA,90001 +255249,Vareebadd Phone,1,400.0,2019-09-24 21:29:00,739 South St, New York City,NY,10001 +255250,USB-C Charging Cable,1,11.95,2019-09-03 09:01:00,159 Sunset St, San Francisco,CA,94016 +255251,USB-C Charging Cable,1,11.95,2019-09-30 22:11:00,780 Elm St, San Francisco,CA,94016 +255252,Google Phone,1,600.0,2019-09-18 15:05:00,469 Walnut St, New York City,NY,10001 +255253,AAA Batteries (4-pack),1,2.99,2019-09-16 18:46:00,538 Hill St, Dallas,TX,75001 +255254,USB-C Charging Cable,1,11.95,2019-09-29 18:09:00,822 River St, Atlanta,GA,30301 +255255,Lightning Charging Cable,1,14.95,2019-09-22 21:41:00,270 6th St, San Francisco,CA,94016 +255256,Lightning Charging Cable,1,14.95,2019-09-06 18:32:00,90 4th St, Boston,MA,02215 +255257,Wired Headphones,1,11.99,2019-09-11 21:01:00,447 1st St, New York City,NY,10001 +255258,Macbook Pro Laptop,1,1700.0,2019-09-24 13:47:00,569 South St, Boston,MA,02215 +255259,AAA Batteries (4-pack),1,2.99,2019-09-24 00:18:00,291 Wilson St, Los Angeles,CA,90001 +255260,Apple Airpods Headphones,1,150.0,2019-09-07 11:32:00,889 Main St, New York City,NY,10001 +255261,iPhone,1,700.0,2019-09-05 09:11:00,488 Center St, San Francisco,CA,94016 +255262,27in FHD Monitor,1,149.99,2019-09-13 12:29:00,262 Cedar St, San Francisco,CA,94016 +255263,27in FHD Monitor,1,149.99,2019-09-01 18:48:00,699 South St, San Francisco,CA,94016 +255264,Lightning Charging Cable,1,14.95,2019-09-25 19:40:00,945 Chestnut St, New York City,NY,10001 +255264,34in Ultrawide Monitor,2,379.99,2019-09-25 19:40:00,945 Chestnut St, New York City,NY,10001 +255265,USB-C Charging Cable,1,11.95,2019-09-06 17:20:00,962 4th St, Boston,MA,02215 +255266,27in 4K Gaming Monitor,1,389.99,2019-09-21 14:40:00,137 Hickory St, San Francisco,CA,94016 +255267,Lightning Charging Cable,1,14.95,2019-09-03 08:04:00,235 Lake St, Los Angeles,CA,90001 +255268,AAA Batteries (4-pack),1,2.99,2019-09-23 21:18:00,423 Washington St, Los Angeles,CA,90001 +255269,20in Monitor,1,109.99,2019-09-23 11:55:00,4 7th St, Portland,OR,97035 +255270,USB-C Charging Cable,1,11.95,2019-09-05 21:04:00,237 1st St, Seattle,WA,98101 +255271,27in FHD Monitor,1,149.99,2019-09-01 13:55:00,108 1st St, Seattle,WA,98101 +255272,LG Washing Machine,1,600.0,2019-09-18 12:54:00,216 2nd St, Seattle,WA,98101 +255273,AAA Batteries (4-pack),1,2.99,2019-09-05 22:19:00,987 4th St, Boston,MA,02215 +255274,27in FHD Monitor,1,149.99,2019-09-01 23:22:00,134 Spruce St, San Francisco,CA,94016 +255275,Apple Airpods Headphones,1,150.0,2019-09-23 13:48:00,275 Johnson St, San Francisco,CA,94016 +255276,AA Batteries (4-pack),1,3.84,2019-09-02 21:15:00,405 Wilson St, Los Angeles,CA,90001 +255277,Google Phone,1,600.0,2019-09-06 16:40:00,982 Elm St, Los Angeles,CA,90001 +255278,AAA Batteries (4-pack),4,2.99,2019-09-29 09:31:00,829 South St, San Francisco,CA,94016 +255279,Lightning Charging Cable,1,14.95,2019-09-08 13:38:00,962 Jackson St, Atlanta,GA,30301 +255280,Wired Headphones,2,11.99,2019-09-24 19:34:00,787 Center St, San Francisco,CA,94016 +255281,USB-C Charging Cable,1,11.95,2019-09-13 19:47:00,381 Washington St, Portland,OR,97035 +255282,ThinkPad Laptop,1,999.99,2019-09-15 10:48:00,49 Lake St, Los Angeles,CA,90001 +255283,iPhone,1,700.0,2019-09-20 17:37:00,383 Ridge St, Los Angeles,CA,90001 +255284,Wired Headphones,1,11.99,2019-09-15 01:41:00,952 North St, San Francisco,CA,94016 +255285,AAA Batteries (4-pack),1,2.99,2019-09-25 12:59:00,78 Cedar St, Seattle,WA,98101 +255286,USB-C Charging Cable,1,11.95,2019-09-27 00:24:00,253 Hickory St, New York City,NY,10001 +255287,iPhone,1,700.0,2019-09-20 20:34:00,760 Chestnut St, Austin,TX,73301 +255288,Wired Headphones,1,11.99,2019-09-22 18:35:00,5 Spruce St, San Francisco,CA,94016 +255289,AAA Batteries (4-pack),2,2.99,2019-09-24 17:16:00,570 5th St, Los Angeles,CA,90001 +255290,Apple Airpods Headphones,1,150.0,2019-09-12 20:27:00,206 Meadow St, Boston,MA,02215 +255291,USB-C Charging Cable,1,11.95,2019-09-02 10:37:00,740 5th St, New York City,NY,10001 +255292,AAA Batteries (4-pack),2,2.99,2019-09-07 13:49:00,8 Cherry St, Seattle,WA,98101 +255293,Macbook Pro Laptop,1,1700.0,2019-09-24 00:25:00,4 Johnson St, San Francisco,CA,94016 +255294,Lightning Charging Cable,1,14.95,2019-09-27 19:09:00,560 Johnson St, Atlanta,GA,30301 +255295,USB-C Charging Cable,1,11.95,2019-09-08 21:16:00,809 Walnut St, Boston,MA,02215 +255296,Wired Headphones,2,11.99,2019-09-02 16:30:00,485 12th St, San Francisco,CA,94016 +255297,USB-C Charging Cable,1,11.95,2019-09-20 12:14:00,572 11th St, Los Angeles,CA,90001 +255298,Lightning Charging Cable,1,14.95,2019-09-06 08:56:00,195 Meadow St, Los Angeles,CA,90001 +255299,Wired Headphones,1,11.99,2019-09-17 23:20:00,125 Elm St, San Francisco,CA,94016 +255300,Flatscreen TV,1,300.0,2019-09-09 17:14:00,445 West St, Atlanta,GA,30301 +255301,Apple Airpods Headphones,1,150.0,2019-09-24 12:29:00,612 Main St, Seattle,WA,98101 +255302,AA Batteries (4-pack),2,3.84,2019-09-18 22:48:00,413 Pine St, Los Angeles,CA,90001 +255303,Wired Headphones,1,11.99,2019-09-17 19:47:00,121 Lakeview St, New York City,NY,10001 +255304,Wired Headphones,1,11.99,2019-09-28 19:25:00,989 Church St, Dallas,TX,75001 +255305,Lightning Charging Cable,1,14.95,2019-09-04 22:20:00,259 4th St, San Francisco,CA,94016 +255306,Lightning Charging Cable,1,14.95,2019-09-29 09:01:00,980 Pine St, Boston,MA,02215 +255307,34in Ultrawide Monitor,1,379.99,2019-09-18 11:41:00,714 2nd St, San Francisco,CA,94016 +255308,Flatscreen TV,1,300.0,2019-09-14 22:36:00,935 Hill St, New York City,NY,10001 +255309,AA Batteries (4-pack),3,3.84,2019-09-16 15:37:00,142 Hill St, Boston,MA,02215 +255310,20in Monitor,1,109.99,2019-09-11 12:20:00,555 West St, Los Angeles,CA,90001 +255311,27in FHD Monitor,1,149.99,2019-09-09 16:32:00,812 Jefferson St, Atlanta,GA,30301 +255312,USB-C Charging Cable,1,11.95,2019-09-19 11:28:00,510 7th St, San Francisco,CA,94016 +255313,Apple Airpods Headphones,1,150.0,2019-09-06 11:08:00,925 14th St, Atlanta,GA,30301 +255314,iPhone,1,700.0,2019-09-09 17:41:00,849 Hickory St, Atlanta,GA,30301 +255315,AA Batteries (4-pack),1,3.84,2019-09-21 15:20:00,611 Johnson St, New York City,NY,10001 +255316,AAA Batteries (4-pack),1,2.99,2019-09-30 22:39:00,78 12th St, Austin,TX,73301 +255317,Lightning Charging Cable,1,14.95,2019-09-28 09:48:00,13 14th St, Seattle,WA,98101 +255318,Macbook Pro Laptop,1,1700.0,2019-09-26 11:58:00,548 Jackson St, Dallas,TX,75001 +255319,27in FHD Monitor,1,149.99,2019-09-28 13:23:00,73 Washington St, Atlanta,GA,30301 +255320,Bose SoundSport Headphones,1,99.99,2019-09-01 16:28:00,497 Chestnut St, Los Angeles,CA,90001 +255321,USB-C Charging Cable,1,11.95,2019-09-21 10:54:00,963 Dogwood St, San Francisco,CA,94016 +255322,Wired Headphones,2,11.99,2019-09-28 18:31:00,796 Hickory St, New York City,NY,10001 +255323,AA Batteries (4-pack),1,3.84,2019-09-08 23:24:00,204 Walnut St, San Francisco,CA,94016 +255324,Wired Headphones,1,11.99,2019-09-17 19:05:00,96 11th St, Los Angeles,CA,90001 +255325,Bose SoundSport Headphones,1,99.99,2019-09-27 10:13:00,410 Wilson St, Austin,TX,73301 +255326,AAA Batteries (4-pack),1,2.99,2019-09-30 16:54:00,690 Park St, New York City,NY,10001 +255327,USB-C Charging Cable,1,11.95,2019-09-15 13:54:00,291 Dogwood St, New York City,NY,10001 +255328,AA Batteries (4-pack),1,3.84,2019-09-06 22:04:00,116 Forest St, Austin,TX,73301 +255329,USB-C Charging Cable,1,11.95,2019-09-14 05:39:00,749 Jackson St, Boston,MA,02215 +255330,ThinkPad Laptop,1,999.99,2019-09-21 12:24:00,874 4th St, Austin,TX,73301 +255331,AA Batteries (4-pack),1,3.84,2019-09-13 15:41:00,409 14th St, San Francisco,CA,94016 +255332,27in 4K Gaming Monitor,1,389.99,2019-09-25 21:35:00,847 Walnut St, San Francisco,CA,94016 +255333,Wired Headphones,1,11.99,2019-09-05 07:23:00,198 Forest St, New York City,NY,10001 +255334,Apple Airpods Headphones,1,150.0,2019-09-25 15:07:00,572 Hickory St, Los Angeles,CA,90001 +255335,Google Phone,1,600.0,2019-09-15 12:56:00,819 West St, Portland,ME,04101 +255336,USB-C Charging Cable,1,11.95,2019-09-11 22:47:00,763 Park St, New York City,NY,10001 +255337,20in Monitor,2,109.99,2019-09-23 08:16:00,183 Maple St, New York City,NY,10001 +255338,AA Batteries (4-pack),3,3.84,2019-09-26 21:21:00,4 11th St, Dallas,TX,75001 +255339,27in 4K Gaming Monitor,1,389.99,2019-09-10 16:29:00,872 Adams St, New York City,NY,10001 +255340,AAA Batteries (4-pack),4,2.99,2019-09-10 07:43:00,832 Lakeview St, San Francisco,CA,94016 +255341,AA Batteries (4-pack),3,3.84,2019-09-08 21:56:00,930 11th St, Dallas,TX,75001 +255342,27in 4K Gaming Monitor,1,389.99,2019-09-25 11:09:00,641 Ridge St, San Francisco,CA,94016 +255343,Bose SoundSport Headphones,1,99.99,2019-09-22 16:08:00,803 South St, Portland,OR,97035 +255344,AAA Batteries (4-pack),1,2.99,2019-09-19 00:09:00,192 Highland St, Los Angeles,CA,90001 +255345,Bose SoundSport Headphones,1,99.99,2019-09-25 21:12:00,600 Center St, Los Angeles,CA,90001 +255346,Flatscreen TV,1,300.0,2019-09-28 10:02:00,549 Jefferson St, San Francisco,CA,94016 +255347,AAA Batteries (4-pack),1,2.99,2019-09-01 07:58:00,527 Lincoln St, Los Angeles,CA,90001 +255348,Lightning Charging Cable,1,14.95,2019-09-17 14:04:00,95 Lakeview St, New York City,NY,10001 +255349,Lightning Charging Cable,1,14.95,2019-09-05 14:59:00,582 Jackson St, San Francisco,CA,94016 +255350,AA Batteries (4-pack),1,3.84,2019-09-14 09:45:00,591 6th St, New York City,NY,10001 +255351,34in Ultrawide Monitor,1,379.99,2019-09-30 12:14:00,533 2nd St, Dallas,TX,75001 +255352,AAA Batteries (4-pack),2,2.99,2019-09-27 00:28:00,365 Elm St, Los Angeles,CA,90001 +255353,USB-C Charging Cable,1,11.95,2019-09-07 14:17:00,23 Sunset St, Atlanta,GA,30301 +255354,Bose SoundSport Headphones,1,99.99,2019-10-01 00:20:00,407 North St, Austin,TX,73301 +255355,Wired Headphones,1,11.99,2019-09-30 13:40:00,981 Hill St, Austin,TX,73301 +255356,AAA Batteries (4-pack),1,2.99,2019-09-05 10:31:00,689 Dogwood St, Austin,TX,73301 +255357,AAA Batteries (4-pack),2,2.99,2019-09-26 21:19:00,372 Willow St, Boston,MA,02215 +255358,USB-C Charging Cable,1,11.95,2019-09-04 18:50:00,547 River St, Atlanta,GA,30301 +255359,AA Batteries (4-pack),1,3.84,2019-09-05 20:14:00,5 Elm St, San Francisco,CA,94016 +255360,AAA Batteries (4-pack),2,2.99,2019-09-19 18:32:00,776 Highland St, Seattle,WA,98101 +255361,Vareebadd Phone,1,400.0,2019-09-11 13:32:00,517 Sunset St, San Francisco,CA,94016 +255361,USB-C Charging Cable,1,11.95,2019-09-11 13:32:00,517 Sunset St, San Francisco,CA,94016 +255362,Wired Headphones,1,11.99,2019-09-29 16:07:00,968 Forest St, New York City,NY,10001 +255363,AAA Batteries (4-pack),4,2.99,2019-09-06 17:27:00,470 River St, Dallas,TX,75001 +255364,Apple Airpods Headphones,1,150.0,2019-09-07 13:57:00,175 Meadow St, Dallas,TX,75001 +255365,Lightning Charging Cable,1,14.95,2019-09-20 13:43:00,294 10th St, Boston,MA,02215 +255366,Wired Headphones,1,11.99,2019-09-08 22:37:00,230 Walnut St, Boston,MA,02215 +255367,Bose SoundSport Headphones,1,99.99,2019-09-02 11:00:00,792 Madison St, Los Angeles,CA,90001 +255368,Wired Headphones,2,11.99,2019-09-30 17:43:00,254 4th St, Los Angeles,CA,90001 +255369,Lightning Charging Cable,1,14.95,2019-09-30 23:08:00,594 Lakeview St, Seattle,WA,98101 +255370,Bose SoundSport Headphones,1,99.99,2019-09-27 17:07:00,218 North St, Los Angeles,CA,90001 +255371,Bose SoundSport Headphones,1,99.99,2019-09-03 10:54:00,470 Spruce St, San Francisco,CA,94016 +255372,34in Ultrawide Monitor,1,379.99,2019-09-07 13:51:00,866 Walnut St, Boston,MA,02215 +255373,iPhone,1,700.0,2019-09-20 19:09:00,119 Cedar St, San Francisco,CA,94016 +255374,USB-C Charging Cable,1,11.95,2019-09-09 15:18:00,511 7th St, New York City,NY,10001 +255375,Wired Headphones,1,11.99,2019-09-25 18:15:00,175 South St, Atlanta,GA,30301 +255376,ThinkPad Laptop,1,999.99,2019-09-28 20:59:00,782 North St, San Francisco,CA,94016 +255377,USB-C Charging Cable,1,11.95,2019-09-24 21:00:00,812 Dogwood St, San Francisco,CA,94016 +255378,iPhone,1,700.0,2019-09-23 18:51:00,808 Washington St, Boston,MA,02215 +255379,Lightning Charging Cable,1,14.95,2019-09-14 13:25:00,251 Main St, New York City,NY,10001 +255380,Wired Headphones,1,11.99,2019-09-02 10:43:00,223 11th St, San Francisco,CA,94016 +255381,USB-C Charging Cable,1,11.95,2019-09-04 11:31:00,641 Jefferson St, Atlanta,GA,30301 +255382,AA Batteries (4-pack),1,3.84,2019-09-21 13:56:00,246 1st St, Seattle,WA,98101 +255383,Lightning Charging Cable,2,14.95,2019-09-18 19:43:00,202 Jefferson St, New York City,NY,10001 +255384,AAA Batteries (4-pack),1,2.99,2019-09-19 08:49:00,268 Willow St, Atlanta,GA,30301 +255385,USB-C Charging Cable,1,11.95,2019-09-22 13:12:00,217 12th St, Austin,TX,73301 +255386,Apple Airpods Headphones,1,150.0,2019-09-18 22:10:00,841 13th St, Boston,MA,02215 +255387,Bose SoundSport Headphones,1,99.99,2019-09-10 09:08:00,272 11th St, Portland,OR,97035 +255388,AA Batteries (4-pack),1,3.84,2019-09-30 09:37:00,74 Maple St, Seattle,WA,98101 +255389,Lightning Charging Cable,2,14.95,2019-09-08 12:32:00,387 Lakeview St, Los Angeles,CA,90001 +255390,Lightning Charging Cable,1,14.95,2019-09-09 14:34:00,505 Hill St, San Francisco,CA,94016 +255391,AA Batteries (4-pack),1,3.84,2019-09-28 16:11:00,240 Jefferson St, Austin,TX,73301 +255392,34in Ultrawide Monitor,1,379.99,2019-09-27 17:10:00,194 2nd St, Seattle,WA,98101 +255393,Wired Headphones,1,11.99,2019-09-06 22:58:00,655 7th St, Los Angeles,CA,90001 +255394,AA Batteries (4-pack),1,3.84,2019-09-24 16:29:00,386 Center St, New York City,NY,10001 +255395,AA Batteries (4-pack),1,3.84,2019-09-14 22:35:00,43 Hill St, San Francisco,CA,94016 +255396,Flatscreen TV,1,300.0,2019-09-16 21:48:00,315 West St, San Francisco,CA,94016 +255397,AA Batteries (4-pack),1,3.84,2019-09-11 22:32:00,258 Jefferson St, New York City,NY,10001 +255398,Wired Headphones,1,11.99,2019-09-07 09:38:00,727 Lake St, Boston,MA,02215 +255399,Vareebadd Phone,1,400.0,2019-09-30 11:42:00,854 Lakeview St, New York City,NY,10001 +255400,Bose SoundSport Headphones,1,99.99,2019-09-12 22:53:00,827 6th St, Los Angeles,CA,90001 +255401,Flatscreen TV,1,300.0,2019-09-10 19:15:00,71 11th St, New York City,NY,10001 +255402,iPhone,1,700.0,2019-09-29 22:27:00,833 Center St, Los Angeles,CA,90001 +255402,Lightning Charging Cable,1,14.95,2019-09-29 22:27:00,833 Center St, Los Angeles,CA,90001 +255403,AAA Batteries (4-pack),1,2.99,2019-09-03 09:46:00,907 Center St, Boston,MA,02215 +255404,Flatscreen TV,1,300.0,2019-09-29 18:28:00,7 Cedar St, Dallas,TX,75001 +255405,Wired Headphones,1,11.99,2019-09-27 12:16:00,481 River St, New York City,NY,10001 +255406,Bose SoundSport Headphones,1,99.99,2019-09-10 11:06:00,188 7th St, New York City,NY,10001 +255407,Wired Headphones,1,11.99,2019-09-15 15:58:00,392 11th St, Dallas,TX,75001 +255408,Vareebadd Phone,1,400.0,2019-09-01 21:22:00,317 Meadow St, Portland,OR,97035 +255408,Bose SoundSport Headphones,1,99.99,2019-09-01 21:22:00,317 Meadow St, Portland,OR,97035 +255409,USB-C Charging Cable,1,11.95,2019-09-21 08:35:00,786 Walnut St, Atlanta,GA,30301 +255410,USB-C Charging Cable,1,11.95,2019-09-01 20:17:00,948 Washington St, New York City,NY,10001 +255411,Lightning Charging Cable,1,14.95,2019-09-20 22:14:00,464 Washington St, Atlanta,GA,30301 +255412,AAA Batteries (4-pack),1,2.99,2019-09-01 20:46:00,769 4th St, Boston,MA,02215 +255413,AAA Batteries (4-pack),2,2.99,2019-09-15 21:41:00,192 4th St, Boston,MA,02215 +255413,Lightning Charging Cable,1,14.95,2019-09-15 21:41:00,192 4th St, Boston,MA,02215 +255414,34in Ultrawide Monitor,1,379.99,2019-09-12 07:10:00,365 Willow St, Austin,TX,73301 +255415,Bose SoundSport Headphones,1,99.99,2019-09-15 18:55:00,197 Pine St, Boston,MA,02215 +255416,ThinkPad Laptop,1,999.99,2019-09-07 19:49:00,841 Hickory St, San Francisco,CA,94016 +255417,AAA Batteries (4-pack),1,2.99,2019-09-26 18:17:00,331 Dogwood St, Los Angeles,CA,90001 +255418,AA Batteries (4-pack),1,3.84,2019-09-20 14:29:00,842 Hickory St, Boston,MA,02215 +255419,AAA Batteries (4-pack),1,2.99,2019-09-23 21:45:00,328 7th St, Dallas,TX,75001 +255420,USB-C Charging Cable,1,11.95,2019-09-01 16:55:00,243 Pine St, New York City,NY,10001 +255421,USB-C Charging Cable,1,11.95,2019-09-05 10:27:00,94 West St, Los Angeles,CA,90001 +255422,AAA Batteries (4-pack),1,2.99,2019-09-19 15:22:00,328 Spruce St, San Francisco,CA,94016 +255423,Macbook Pro Laptop,1,1700.0,2019-09-28 12:35:00,907 Spruce St, San Francisco,CA,94016 +255424,Bose SoundSport Headphones,1,99.99,2019-09-09 21:15:00,266 6th St, Boston,MA,02215 +255425,Apple Airpods Headphones,1,150.0,2019-09-20 18:35:00,168 14th St, New York City,NY,10001 +255426,AAA Batteries (4-pack),1,2.99,2019-09-18 07:12:00,744 6th St, Austin,TX,73301 +255427,Macbook Pro Laptop,1,1700.0,2019-09-25 17:42:00,449 River St, Portland,OR,97035 +255428,34in Ultrawide Monitor,1,379.99,2019-09-28 12:37:00,254 6th St, Portland,OR,97035 +255429,ThinkPad Laptop,1,999.99,2019-09-29 10:04:00,949 Walnut St, San Francisco,CA,94016 +255430,Google Phone,1,600.0,2019-09-14 15:14:00,718 Main St, Atlanta,GA,30301 +255431,AA Batteries (4-pack),2,3.84,2019-09-16 11:35:00,963 Madison St, Portland,OR,97035 +255432,USB-C Charging Cable,2,11.95,2019-09-21 17:11:00,972 Maple St, San Francisco,CA,94016 +255433,AA Batteries (4-pack),2,3.84,2019-09-25 17:12:00,319 Spruce St, Atlanta,GA,30301 +255434,Wired Headphones,1,11.99,2019-09-21 19:56:00,452 Jackson St, Atlanta,GA,30301 +255435,Wired Headphones,1,11.99,2019-09-23 21:38:00,367 1st St, Seattle,WA,98101 +255436,AA Batteries (4-pack),1,3.84,2019-09-22 14:43:00,530 Park St, Portland,ME,04101 +255437,AA Batteries (4-pack),1,3.84,2019-09-09 10:49:00,592 River St, San Francisco,CA,94016 +255438,Lightning Charging Cable,1,14.95,2019-09-17 21:12:00,658 Hickory St, Atlanta,GA,30301 +255439,Lightning Charging Cable,1,14.95,2019-09-26 15:49:00,421 Hill St, San Francisco,CA,94016 +255440,Flatscreen TV,1,300.0,2019-09-03 19:29:00,596 1st St, Portland,ME,04101 +255441,AAA Batteries (4-pack),1,2.99,2019-09-08 13:25:00,673 10th St, Los Angeles,CA,90001 +255442,Wired Headphones,1,11.99,2019-09-04 13:38:00,964 Hickory St, New York City,NY,10001 +255443,Lightning Charging Cable,3,14.95,2019-09-07 09:16:00,937 Chestnut St, Seattle,WA,98101 +255443,Flatscreen TV,1,300.0,2019-09-07 09:16:00,937 Chestnut St, Seattle,WA,98101 +255444,Lightning Charging Cable,1,14.95,2019-09-28 19:56:00,766 Church St, Los Angeles,CA,90001 +255445,AA Batteries (4-pack),1,3.84,2019-09-30 19:48:00,270 Maple St, New York City,NY,10001 +255446,27in FHD Monitor,1,149.99,2019-09-03 13:29:00,349 2nd St, Los Angeles,CA,90001 +255447,Google Phone,1,600.0,2019-09-16 00:38:00,854 2nd St, Portland,OR,97035 +255448,Lightning Charging Cable,1,14.95,2019-09-02 09:17:00,98 Washington St, Atlanta,GA,30301 +255449,Lightning Charging Cable,1,14.95,2019-09-17 21:40:00,101 5th St, San Francisco,CA,94016 +255450,Lightning Charging Cable,1,14.95,2019-09-09 04:53:00,134 Main St, New York City,NY,10001 +255451,Apple Airpods Headphones,1,150.0,2019-09-27 09:23:00,625 Cherry St, Los Angeles,CA,90001 +255452,Lightning Charging Cable,1,14.95,2019-09-16 13:27:00,509 Johnson St, Los Angeles,CA,90001 +255453,Bose SoundSport Headphones,1,99.99,2019-09-16 21:44:00,186 Jefferson St, New York City,NY,10001 +255454,Wired Headphones,1,11.99,2019-09-30 08:33:00,215 Johnson St, Dallas,TX,75001 +255455,iPhone,1,700.0,2019-09-08 20:46:00,396 Maple St, Boston,MA,02215 +255456,34in Ultrawide Monitor,1,379.99,2019-09-22 10:31:00,54 Lakeview St, New York City,NY,10001 +255457,Bose SoundSport Headphones,1,99.99,2019-09-22 22:36:00,944 Spruce St, Los Angeles,CA,90001 +255458,Lightning Charging Cable,1,14.95,2019-09-08 02:12:00,530 West St, Portland,OR,97035 +255459,Vareebadd Phone,1,400.0,2019-09-30 09:30:00,62 5th St, Boston,MA,02215 +255460,27in FHD Monitor,1,149.99,2019-09-02 21:59:00,845 Hill St, San Francisco,CA,94016 +255461,Lightning Charging Cable,1,14.95,2019-09-20 18:05:00,103 Adams St, Boston,MA,02215 +255462,Bose SoundSport Headphones,1,99.99,2019-09-26 12:34:00,873 Adams St, Los Angeles,CA,90001 +255463,27in 4K Gaming Monitor,1,389.99,2019-09-12 16:05:00,964 12th St, New York City,NY,10001 +255464,AA Batteries (4-pack),1,3.84,2019-09-09 22:07:00,964 13th St, Los Angeles,CA,90001 +255465,Flatscreen TV,1,300.0,2019-09-11 12:39:00,905 Wilson St, New York City,NY,10001 +255466,USB-C Charging Cable,1,11.95,2019-09-21 21:43:00,447 Jackson St, San Francisco,CA,94016 +255467,USB-C Charging Cable,1,11.95,2019-09-10 17:20:00,123 North St, Portland,OR,97035 +255468,Bose SoundSport Headphones,1,99.99,2019-09-09 10:48:00,556 14th St, New York City,NY,10001 +255469,AA Batteries (4-pack),1,3.84,2019-09-19 13:56:00,244 Lakeview St, Seattle,WA,98101 +255470,AA Batteries (4-pack),1,3.84,2019-09-02 17:24:00,192 Jefferson St, Los Angeles,CA,90001 +255471,AA Batteries (4-pack),2,3.84,2019-09-23 09:01:00,416 13th St, Atlanta,GA,30301 +255472,27in 4K Gaming Monitor,1,389.99,2019-09-19 21:46:00,530 Church St, Dallas,TX,75001 +255473,LG Washing Machine,1,600.0,2019-09-12 18:00:00,19 Hickory St, Boston,MA,02215 +255474,AA Batteries (4-pack),2,3.84,2019-09-23 15:17:00,262 Adams St, Boston,MA,02215 +255475,27in FHD Monitor,1,149.99,2019-09-10 14:12:00,166 8th St, New York City,NY,10001 +255476,Wired Headphones,1,11.99,2019-09-08 18:02:00,901 Jackson St, Los Angeles,CA,90001 +255477,AAA Batteries (4-pack),2,2.99,2019-09-23 17:17:00,913 Ridge St, Atlanta,GA,30301 +255478,AAA Batteries (4-pack),2,2.99,2019-09-29 19:00:00,809 11th St, Seattle,WA,98101 +255479,Wired Headphones,1,11.99,2019-09-19 16:46:00,776 Walnut St, Dallas,TX,75001 +255480,AA Batteries (4-pack),1,3.84,2019-09-25 22:54:00,298 Sunset St, Los Angeles,CA,90001 +255481,USB-C Charging Cable,1,11.95,2019-09-07 08:37:00,301 Cedar St, New York City,NY,10001 +255482,Lightning Charging Cable,1,14.95,2019-09-08 10:17:00,665 1st St, Los Angeles,CA,90001 +255483,AA Batteries (4-pack),1,3.84,2019-09-04 16:02:00,350 13th St, Dallas,TX,75001 +255484,USB-C Charging Cable,1,11.95,2019-09-26 14:02:00,830 Pine St, San Francisco,CA,94016 +255485,20in Monitor,1,109.99,2019-09-13 10:33:00,115 11th St, San Francisco,CA,94016 +255486,Lightning Charging Cable,2,14.95,2019-09-04 12:52:00,444 Sunset St, Boston,MA,02215 +255487,Bose SoundSport Headphones,1,99.99,2019-09-12 11:28:00,929 Highland St, Los Angeles,CA,90001 +255488,Flatscreen TV,1,300.0,2019-09-03 14:32:00,495 12th St, Los Angeles,CA,90001 +255489,USB-C Charging Cable,1,11.95,2019-09-04 16:44:00,638 9th St, Portland,OR,97035 +255490,USB-C Charging Cable,1,11.95,2019-09-03 09:57:00,152 Hickory St, San Francisco,CA,94016 +255491,AAA Batteries (4-pack),1,2.99,2019-09-24 13:56:00,952 Walnut St, Boston,MA,02215 +255492,34in Ultrawide Monitor,1,379.99,2019-09-27 11:55:00,454 Dogwood St, San Francisco,CA,94016 +255493,Macbook Pro Laptop,1,1700.0,2019-09-07 17:14:00,990 Adams St, Atlanta,GA,30301 +255494,Lightning Charging Cable,1,14.95,2019-09-05 22:14:00,989 Elm St, San Francisco,CA,94016 +255495,AAA Batteries (4-pack),1,2.99,2019-09-04 19:55:00,173 Cedar St, New York City,NY,10001 +255496,Wired Headphones,1,11.99,2019-09-26 21:29:00,823 Adams St, Atlanta,GA,30301 +255497,USB-C Charging Cable,1,11.95,2019-09-13 12:29:00,839 Pine St, New York City,NY,10001 +255498,Wired Headphones,1,11.99,2019-09-23 11:55:00,239 Hickory St, Los Angeles,CA,90001 +255499,AA Batteries (4-pack),1,3.84,2019-09-05 15:11:00,708 Ridge St, Dallas,TX,75001 +255500,Lightning Charging Cable,1,14.95,2019-09-30 21:05:00,33 Jackson St, Los Angeles,CA,90001 +255501,USB-C Charging Cable,1,11.95,2019-09-16 09:58:00,948 Church St, San Francisco,CA,94016 +255502,Wired Headphones,1,11.99,2019-09-27 10:47:00,922 Sunset St, Portland,ME,04101 +255503,Lightning Charging Cable,1,14.95,2019-09-21 17:33:00,922 Cedar St, Portland,OR,97035 +255504,AA Batteries (4-pack),1,3.84,2019-09-28 15:01:00,747 8th St, New York City,NY,10001 +255505,Lightning Charging Cable,1,14.95,2019-09-25 14:00:00,346 Forest St, Dallas,TX,75001 +255506,Lightning Charging Cable,1,14.95,2019-09-01 18:45:00,405 River St, San Francisco,CA,94016 +255507,27in FHD Monitor,1,149.99,2019-09-12 06:28:00,383 Lincoln St, San Francisco,CA,94016 +255508,LG Dryer,1,600.0,2019-09-27 19:43:00,656 Jefferson St, Seattle,WA,98101 +255509,AAA Batteries (4-pack),1,2.99,2019-09-21 23:37:00,329 West St, Los Angeles,CA,90001 +255510,Lightning Charging Cable,1,14.95,2019-09-11 19:51:00,617 South St, Austin,TX,73301 +255511,27in FHD Monitor,1,149.99,2019-09-16 19:45:00,639 Lake St, Los Angeles,CA,90001 +255512,27in FHD Monitor,1,149.99,2019-09-24 17:25:00,378 12th St, Boston,MA,02215 +255513,USB-C Charging Cable,1,11.95,2019-09-25 10:01:00,482 Cherry St, San Francisco,CA,94016 +255514,ThinkPad Laptop,1,999.99,2019-09-28 11:22:00,69 5th St, San Francisco,CA,94016 +255515,Lightning Charging Cable,1,14.95,2019-09-22 14:10:00,787 4th St, Los Angeles,CA,90001 +255516,Bose SoundSport Headphones,1,99.99,2019-09-29 21:40:00,226 Lake St, San Francisco,CA,94016 +255517,AA Batteries (4-pack),1,3.84,2019-09-20 12:58:00,160 Elm St, San Francisco,CA,94016 +255518,USB-C Charging Cable,1,11.95,2019-09-03 19:12:00,442 Meadow St, San Francisco,CA,94016 +255519,27in FHD Monitor,1,149.99,2019-09-06 12:19:00,431 11th St, Dallas,TX,75001 +255520,Flatscreen TV,1,300.0,2019-09-25 12:05:00,414 Washington St, Los Angeles,CA,90001 +255521,Apple Airpods Headphones,1,150.0,2019-09-14 11:02:00,456 Park St, Portland,ME,04101 +255522,AA Batteries (4-pack),1,3.84,2019-09-04 19:10:00,262 Highland St, Los Angeles,CA,90001 +255523,ThinkPad Laptop,1,999.99,2019-09-14 09:24:00,410 6th St, Boston,MA,02215 +255524,20in Monitor,1,109.99,2019-09-20 06:59:00,127 Church St, Portland,OR,97035 +255525,20in Monitor,1,109.99,2019-09-08 15:02:00,384 Lincoln St, Los Angeles,CA,90001 +255526,AAA Batteries (4-pack),2,2.99,2019-09-16 17:31:00,31 Chestnut St, Dallas,TX,75001 +255527,Apple Airpods Headphones,1,150.0,2019-09-23 23:48:00,517 Pine St, San Francisco,CA,94016 +255528,Bose SoundSport Headphones,1,99.99,2019-09-17 14:25:00,878 North St, San Francisco,CA,94016 +255529,34in Ultrawide Monitor,1,379.99,2019-09-11 12:10:00,100 Ridge St, New York City,NY,10001 +255530,Lightning Charging Cable,1,14.95,2019-09-23 13:04:00,897 West St, Los Angeles,CA,90001 +255531,27in 4K Gaming Monitor,1,389.99,2019-09-04 22:22:00,117 6th St, Los Angeles,CA,90001 +255532,AAA Batteries (4-pack),4,2.99,2019-09-01 11:43:00,502 Jackson St, San Francisco,CA,94016 +255533,Apple Airpods Headphones,1,150.0,2019-09-09 14:29:00,937 Walnut St, San Francisco,CA,94016 +255534,AAA Batteries (4-pack),2,2.99,2019-09-11 23:20:00,806 Jefferson St, New York City,NY,10001 +255535,34in Ultrawide Monitor,1,379.99,2019-09-25 09:25:00,837 Johnson St, San Francisco,CA,94016 +255536,Lightning Charging Cable,2,14.95,2019-09-19 15:07:00,326 6th St, Austin,TX,73301 +255537,AA Batteries (4-pack),2,3.84,2019-09-10 17:24:00,566 Willow St, Los Angeles,CA,90001 +255538,Apple Airpods Headphones,1,150.0,2019-09-23 13:27:00,259 Lakeview St, Dallas,TX,75001 +255539,Apple Airpods Headphones,1,150.0,2019-09-20 18:20:00,330 South St, Seattle,WA,98101 +255540,Bose SoundSport Headphones,1,99.99,2019-09-23 21:24:00,549 Spruce St, Austin,TX,73301 +255541,AAA Batteries (4-pack),3,2.99,2019-09-17 21:22:00,198 Cherry St, Boston,MA,02215 +255542,AAA Batteries (4-pack),1,2.99,2019-09-19 11:49:00,197 Highland St, San Francisco,CA,94016 +255543,AAA Batteries (4-pack),1,2.99,2019-09-21 09:51:00,102 Center St, Los Angeles,CA,90001 +255544,USB-C Charging Cable,1,11.95,2019-09-16 13:37:00,998 Adams St, Boston,MA,02215 +255545,AA Batteries (4-pack),2,3.84,2019-09-26 12:53:00,726 River St, San Francisco,CA,94016 +255546,27in 4K Gaming Monitor,1,389.99,2019-09-28 09:05:00,60 Hill St, San Francisco,CA,94016 +255547,Wired Headphones,1,11.99,2019-09-05 11:35:00,873 Walnut St, Boston,MA,02215 +255548,Macbook Pro Laptop,1,1700.0,2019-09-13 20:39:00,945 Cedar St, Boston,MA,02215 +255549,Bose SoundSport Headphones,1,99.99,2019-09-05 11:52:00,308 Hickory St, New York City,NY,10001 +255550,Lightning Charging Cable,1,14.95,2019-09-23 16:11:00,152 Park St, San Francisco,CA,94016 +255551,27in 4K Gaming Monitor,1,389.99,2019-09-23 17:49:00,849 11th St, Dallas,TX,75001 +255552,Flatscreen TV,1,300.0,2019-09-29 23:14:00,547 Wilson St, Los Angeles,CA,90001 +255553,Apple Airpods Headphones,1,150.0,2019-09-08 12:59:00,227 6th St, Seattle,WA,98101 +255554,Macbook Pro Laptop,1,1700.0,2019-09-24 21:04:00,34 Washington St, Atlanta,GA,30301 +255555,AA Batteries (4-pack),1,3.84,2019-09-04 10:28:00,13 Sunset St, Portland,OR,97035 +255556,27in FHD Monitor,1,149.99,2019-09-29 20:56:00,927 Forest St, New York City,NY,10001 +255557,Lightning Charging Cable,1,14.95,2019-09-23 22:57:00,454 7th St, Los Angeles,CA,90001 +255558,USB-C Charging Cable,1,11.95,2019-09-11 18:47:00,866 Pine St, Los Angeles,CA,90001 +255559,Lightning Charging Cable,1,14.95,2019-09-10 08:08:00,115 Hickory St, New York City,NY,10001 +255560,27in 4K Gaming Monitor,1,389.99,2019-09-30 17:56:00,668 13th St, Atlanta,GA,30301 +255561,USB-C Charging Cable,1,11.95,2019-09-07 13:27:00,548 Hickory St, Dallas,TX,75001 +255562,Wired Headphones,1,11.99,2019-09-30 22:09:00,770 4th St, Portland,OR,97035 +255563,USB-C Charging Cable,1,11.95,2019-09-06 23:15:00,180 Elm St, San Francisco,CA,94016 +255564,USB-C Charging Cable,1,11.95,2019-09-13 19:53:00,65 Johnson St, Seattle,WA,98101 +255565,27in FHD Monitor,1,149.99,2019-09-07 17:50:00,407 Spruce St, New York City,NY,10001 +255566,Flatscreen TV,1,300.0,2019-09-25 00:57:00,547 River St, Atlanta,GA,30301 +255567,Bose SoundSport Headphones,1,99.99,2019-09-28 15:36:00,526 Lincoln St, Dallas,TX,75001 +255568,Apple Airpods Headphones,1,150.0,2019-09-26 11:13:00,345 Hickory St, San Francisco,CA,94016 +255569,20in Monitor,1,109.99,2019-09-23 16:18:00,474 Maple St, Seattle,WA,98101 +255570,Bose SoundSport Headphones,1,99.99,2019-09-15 20:32:00,235 North St, San Francisco,CA,94016 +255571,iPhone,1,700.0,2019-09-23 19:10:00,482 South St, New York City,NY,10001 +255572,Wired Headphones,2,11.99,2019-09-22 11:04:00,797 13th St, Seattle,WA,98101 +255573,AAA Batteries (4-pack),2,2.99,2019-09-11 11:37:00,340 Elm St, San Francisco,CA,94016 +255574,AAA Batteries (4-pack),3,2.99,2019-09-11 15:22:00,329 Walnut St, San Francisco,CA,94016 +255574,27in 4K Gaming Monitor,1,389.99,2019-09-11 15:22:00,329 Walnut St, San Francisco,CA,94016 +255575,27in FHD Monitor,1,149.99,2019-09-17 17:19:00,892 8th St, San Francisco,CA,94016 +255576,AA Batteries (4-pack),1,3.84,2019-09-17 08:51:00,59 South St, Seattle,WA,98101 +255577,20in Monitor,1,109.99,2019-09-18 09:16:00,718 5th St, Austin,TX,73301 +255578,Wired Headphones,1,11.99,2019-09-26 22:37:00,6 8th St, Atlanta,GA,30301 +255579,Lightning Charging Cable,1,14.95,2019-09-09 16:23:00,731 Elm St, Austin,TX,73301 +255580,AA Batteries (4-pack),1,3.84,2019-09-20 15:23:00,300 Lincoln St, Austin,TX,73301 +255581,Google Phone,1,600.0,2019-09-29 19:29:00,331 Meadow St, Boston,MA,02215 +255582,Wired Headphones,2,11.99,2019-09-02 08:32:00,380 12th St, Los Angeles,CA,90001 +255583,Lightning Charging Cable,1,14.95,2019-09-11 06:22:00,962 Church St, San Francisco,CA,94016 +255584,AAA Batteries (4-pack),1,2.99,2019-09-09 17:02:00,482 Elm St, San Francisco,CA,94016 +255585,AAA Batteries (4-pack),1,2.99,2019-09-20 13:48:00,929 Walnut St, San Francisco,CA,94016 +255586,Google Phone,1,600.0,2019-09-11 21:10:00,286 Hill St, San Francisco,CA,94016 +255587,ThinkPad Laptop,1,999.99,2019-09-15 22:50:00,917 North St, Boston,MA,02215 +255588,Wired Headphones,1,11.99,2019-09-17 20:39:00,92 1st St, Los Angeles,CA,90001 +255589,34in Ultrawide Monitor,1,379.99,2019-09-13 20:21:00,437 River St, San Francisco,CA,94016 +255590,Apple Airpods Headphones,1,150.0,2019-09-23 08:10:00,363 13th St, San Francisco,CA,94016 +255591,USB-C Charging Cable,1,11.95,2019-09-16 20:25:00,451 Lakeview St, Los Angeles,CA,90001 +255592,USB-C Charging Cable,1,11.95,2019-09-11 13:18:00,495 10th St, Los Angeles,CA,90001 +255593,AAA Batteries (4-pack),4,2.99,2019-09-09 23:39:00,580 1st St, Boston,MA,02215 +255594,27in FHD Monitor,1,149.99,2019-09-17 00:34:00,202 Johnson St, Los Angeles,CA,90001 +255595,USB-C Charging Cable,1,11.95,2019-09-20 20:19:00,107 Meadow St, Portland,OR,97035 +255596,USB-C Charging Cable,1,11.95,2019-09-11 04:58:00,656 Cedar St, Austin,TX,73301 +255597,Lightning Charging Cable,1,14.95,2019-09-11 21:04:00,879 Chestnut St, Portland,OR,97035 +255598,Wired Headphones,1,11.99,2019-09-15 12:14:00,633 Spruce St, Los Angeles,CA,90001 +255599,Lightning Charging Cable,1,14.95,2019-09-25 09:34:00,567 Maple St, New York City,NY,10001 +255600,Macbook Pro Laptop,1,1700.0,2019-09-17 21:50:00,726 9th St, Atlanta,GA,30301 +255601,AAA Batteries (4-pack),2,2.99,2019-09-13 12:52:00,29 Meadow St, Boston,MA,02215 +255602,27in FHD Monitor,1,149.99,2019-09-25 12:08:00,619 West St, New York City,NY,10001 +255603,27in FHD Monitor,1,149.99,2019-09-11 20:37:00,173 1st St, Los Angeles,CA,90001 +255604,Lightning Charging Cable,1,14.95,2019-09-12 19:26:00,242 South St, Boston,MA,02215 +255605,Apple Airpods Headphones,1,150.0,2019-09-10 19:34:00,336 Lincoln St, Austin,TX,73301 +255606,Apple Airpods Headphones,1,150.0,2019-09-20 22:50:00,409 8th St, Portland,OR,97035 +255607,AA Batteries (4-pack),1,3.84,2019-09-13 07:30:00,412 West St, San Francisco,CA,94016 +255608,AA Batteries (4-pack),1,3.84,2019-09-01 11:31:00,143 North St, New York City,NY,10001 +255609,34in Ultrawide Monitor,1,379.99,2019-09-16 14:35:00,758 4th St, Los Angeles,CA,90001 +255610,Wired Headphones,1,11.99,2019-09-29 22:51:00,686 Sunset St, Austin,TX,73301 +255611,AA Batteries (4-pack),1,3.84,2019-09-08 18:35:00,129 14th St, Atlanta,GA,30301 +255612,AAA Batteries (4-pack),1,2.99,2019-09-06 14:05:00,675 Church St, San Francisco,CA,94016 +255613,AA Batteries (4-pack),1,3.84,2019-09-09 21:59:00,921 Pine St, New York City,NY,10001 +255614,Bose SoundSport Headphones,1,99.99,2019-10-01 02:18:00,181 4th St, Los Angeles,CA,90001 +255615,AA Batteries (4-pack),1,3.84,2019-09-26 09:17:00,667 Elm St, San Francisco,CA,94016 +255616,Lightning Charging Cable,1,14.95,2019-09-18 06:42:00,854 Willow St, Los Angeles,CA,90001 +255616,AAA Batteries (4-pack),1,2.99,2019-09-18 06:42:00,854 Willow St, Los Angeles,CA,90001 +255617,USB-C Charging Cable,1,11.95,2019-09-02 19:47:00,320 Sunset St, San Francisco,CA,94016 +255617,Bose SoundSport Headphones,1,99.99,2019-09-02 19:47:00,320 Sunset St, San Francisco,CA,94016 +255618,AAA Batteries (4-pack),1,2.99,2019-09-01 15:20:00,227 West St, Dallas,TX,75001 +255619,Lightning Charging Cable,1,14.95,2019-09-28 18:00:00,791 Chestnut St, San Francisco,CA,94016 +255620,Wired Headphones,1,11.99,2019-09-26 23:20:00,309 Chestnut St, Austin,TX,73301 +255621,iPhone,1,700.0,2019-09-29 12:59:00,281 Elm St, Boston,MA,02215 +255621,Lightning Charging Cable,1,14.95,2019-09-29 12:59:00,281 Elm St, Boston,MA,02215 +255622,27in FHD Monitor,1,149.99,2019-09-04 14:35:00,709 Walnut St, Seattle,WA,98101 +255623,Apple Airpods Headphones,1,150.0,2019-09-16 12:23:00,669 Maple St, Los Angeles,CA,90001 +255624,27in FHD Monitor,1,149.99,2019-09-25 20:16:00,727 9th St, Seattle,WA,98101 +255625,AAA Batteries (4-pack),3,2.99,2019-09-23 21:33:00,692 Lakeview St, Seattle,WA,98101 +255626,USB-C Charging Cable,1,11.95,2019-09-30 19:54:00,496 Highland St, Los Angeles,CA,90001 +255627,AAA Batteries (4-pack),4,2.99,2019-09-26 14:04:00,727 13th St, New York City,NY,10001 +255628,Apple Airpods Headphones,1,150.0,2019-09-07 17:10:00,211 1st St, Los Angeles,CA,90001 +255629,27in FHD Monitor,1,149.99,2019-09-04 23:01:00,48 Church St, Seattle,WA,98101 +255630,27in 4K Gaming Monitor,1,389.99,2019-09-22 23:18:00,512 Madison St, Portland,OR,97035 +255631,USB-C Charging Cable,1,11.95,2019-09-02 00:40:00,417 Forest St, Boston,MA,02215 +255632,Wired Headphones,1,11.99,2019-09-01 22:49:00,847 South St, San Francisco,CA,94016 +255633,Wired Headphones,1,11.99,2019-09-11 17:10:00,327 North St, Portland,OR,97035 +255634,iPhone,1,700.0,2019-09-09 22:03:00,832 Johnson St, New York City,NY,10001 +255635,ThinkPad Laptop,1,999.99,2019-09-27 14:06:00,555 North St, Boston,MA,02215 +255636,AAA Batteries (4-pack),1,2.99,2019-09-15 03:39:00,448 8th St, San Francisco,CA,94016 +255637,AAA Batteries (4-pack),1,2.99,2019-09-22 08:47:00,154 Lincoln St, San Francisco,CA,94016 +255638,Bose SoundSport Headphones,1,99.99,2019-09-23 23:29:00,885 Jackson St, Seattle,WA,98101 +255639,34in Ultrawide Monitor,1,379.99,2019-09-29 10:49:00,750 1st St, Boston,MA,02215 +255640,AAA Batteries (4-pack),2,2.99,2019-09-23 23:35:00,396 Dogwood St, New York City,NY,10001 +255641,USB-C Charging Cable,2,11.95,2019-09-10 20:19:00,840 Chestnut St, Boston,MA,02215 +255642,AA Batteries (4-pack),1,3.84,2019-09-05 03:30:00,601 Center St, Dallas,TX,75001 +255643,USB-C Charging Cable,1,11.95,2019-09-22 12:35:00,76 North St, Los Angeles,CA,90001 +255644,AA Batteries (4-pack),4,3.84,2019-09-15 18:50:00,624 Jefferson St, San Francisco,CA,94016 +255645,Lightning Charging Cable,1,14.95,2019-09-19 00:41:00,527 Wilson St, Seattle,WA,98101 +255646,Bose SoundSport Headphones,1,99.99,2019-09-11 12:30:00,104 West St, Los Angeles,CA,90001 +255647,27in 4K Gaming Monitor,1,389.99,2019-09-04 21:53:00,460 Washington St, New York City,NY,10001 +255648,AA Batteries (4-pack),1,3.84,2019-09-10 13:05:00,672 6th St, Dallas,TX,75001 +255649,Google Phone,1,600.0,2019-09-27 12:30:00,408 Highland St, New York City,NY,10001 +255650,AA Batteries (4-pack),1,3.84,2019-09-03 12:01:00,472 Walnut St, Dallas,TX,75001 +255651,Lightning Charging Cable,1,14.95,2019-09-10 05:27:00,235 Sunset St, Seattle,WA,98101 +255652,Bose SoundSport Headphones,1,99.99,2019-09-24 18:18:00,452 Ridge St, New York City,NY,10001 +255653,ThinkPad Laptop,1,999.99,2019-09-29 17:04:00,864 Main St, Los Angeles,CA,90001 +255654,20in Monitor,1,109.99,2019-09-20 10:36:00,23 7th St, Portland,OR,97035 +255655,Lightning Charging Cable,3,14.95,2019-09-01 13:34:00,851 Main St, San Francisco,CA,94016 +255656,Wired Headphones,1,11.99,2019-09-03 13:07:00,371 Maple St, Seattle,WA,98101 +255657,Macbook Pro Laptop,1,1700.0,2019-09-06 17:01:00,240 12th St, New York City,NY,10001 +255658,27in FHD Monitor,1,149.99,2019-09-23 19:25:00,258 Jefferson St, New York City,NY,10001 +255659,AA Batteries (4-pack),3,3.84,2019-09-21 20:10:00,725 10th St, San Francisco,CA,94016 +255660,Wired Headphones,1,11.99,2019-09-22 17:53:00,202 11th St, San Francisco,CA,94016 +255661,AAA Batteries (4-pack),1,2.99,2019-09-16 15:59:00,413 Jackson St, Los Angeles,CA,90001 +255662,USB-C Charging Cable,1,11.95,2019-09-07 22:35:00,19 Wilson St, Dallas,TX,75001 +255663,AAA Batteries (4-pack),1,2.99,2019-09-04 21:06:00,915 South St, San Francisco,CA,94016 +255664,AA Batteries (4-pack),1,3.84,2019-09-23 20:01:00,402 7th St, San Francisco,CA,94016 +255665,27in 4K Gaming Monitor,1,389.99,2019-09-26 23:56:00,709 10th St, San Francisco,CA,94016 +255666,Bose SoundSport Headphones,1,99.99,2019-09-09 10:45:00,528 Johnson St, Seattle,WA,98101 +255667,27in FHD Monitor,1,149.99,2019-09-13 13:40:00,346 West St, New York City,NY,10001 +255668,Apple Airpods Headphones,1,150.0,2019-09-24 15:30:00,614 Forest St, New York City,NY,10001 +255669,AA Batteries (4-pack),1,3.84,2019-09-24 21:02:00,995 West St, Portland,OR,97035 +255670,AAA Batteries (4-pack),1,2.99,2019-09-10 08:40:00,700 Willow St, Portland,OR,97035 +255671,Apple Airpods Headphones,1,150.0,2019-09-14 15:39:00,2 Lake St, Austin,TX,73301 +255672,Google Phone,1,600.0,2019-09-28 07:56:00,693 Center St, Atlanta,GA,30301 +255673,AAA Batteries (4-pack),1,2.99,2019-09-14 17:20:00,212 Ridge St, New York City,NY,10001 +255674,iPhone,1,700.0,2019-09-23 11:05:00,218 River St, Portland,ME,04101 +255675,AA Batteries (4-pack),1,3.84,2019-09-13 07:40:00,160 Lincoln St, Portland,OR,97035 +255676,iPhone,1,700.0,2019-09-04 09:50:00,650 Adams St, Los Angeles,CA,90001 +255677,Apple Airpods Headphones,1,150.0,2019-09-14 12:22:00,777 8th St, Boston,MA,02215 +255678,Bose SoundSport Headphones,1,99.99,2019-09-27 08:51:00,188 Cedar St, Los Angeles,CA,90001 +255679,AAA Batteries (4-pack),2,2.99,2019-09-06 10:03:00,866 13th St, Portland,OR,97035 +255680,34in Ultrawide Monitor,1,379.99,2019-09-15 18:55:00,109 West St, New York City,NY,10001 +255681,Lightning Charging Cable,1,14.95,2019-09-20 22:56:00,272 Hickory St, Los Angeles,CA,90001 +255682,Wired Headphones,1,11.99,2019-09-23 09:28:00,40 Wilson St, Atlanta,GA,30301 +255683,Google Phone,1,600.0,2019-09-26 07:47:00,637 River St, Dallas,TX,75001 +255684,AA Batteries (4-pack),1,3.84,2019-09-16 18:28:00,141 Johnson St, San Francisco,CA,94016 +255685,Lightning Charging Cable,1,14.95,2019-09-23 09:54:00,193 Adams St, Dallas,TX,75001 +255686,Lightning Charging Cable,1,14.95,2019-09-02 20:03:00,111 Park St, Boston,MA,02215 +255686,USB-C Charging Cable,1,11.95,2019-09-02 20:03:00,111 Park St, Boston,MA,02215 +255687,AAA Batteries (4-pack),1,2.99,2019-09-03 00:36:00,314 Willow St, Seattle,WA,98101 +255688,27in FHD Monitor,1,149.99,2019-09-27 11:05:00,368 Adams St, Los Angeles,CA,90001 +255689,USB-C Charging Cable,1,11.95,2019-09-09 14:34:00,331 North St, Dallas,TX,75001 +255690,AA Batteries (4-pack),1,3.84,2019-09-11 08:58:00,830 Dogwood St, Atlanta,GA,30301 +255691,USB-C Charging Cable,1,11.95,2019-09-04 11:49:00,750 Lake St, New York City,NY,10001 +255692,ThinkPad Laptop,1,999.99,2019-09-22 08:27:00,820 Highland St, Atlanta,GA,30301 +255693,Vareebadd Phone,1,400.0,2019-09-25 15:50:00,536 2nd St, Atlanta,GA,30301 +255694,Lightning Charging Cable,1,14.95,2019-09-15 14:21:00,537 North St, Los Angeles,CA,90001 +255695,AA Batteries (4-pack),1,3.84,2019-09-19 11:05:00,357 Forest St, Atlanta,GA,30301 +255696,Wired Headphones,2,11.99,2019-09-27 21:06:00,408 Highland St, Los Angeles,CA,90001 +255697,Google Phone,1,600.0,2019-09-17 11:29:00,912 Jackson St, Atlanta,GA,30301 +255698,Bose SoundSport Headphones,1,99.99,2019-09-27 10:37:00,317 Highland St, Dallas,TX,75001 +255699,Bose SoundSport Headphones,1,99.99,2019-09-01 13:13:00,253 Wilson St, Seattle,WA,98101 +255700,AA Batteries (4-pack),1,3.84,2019-09-13 21:35:00,984 Willow St, Los Angeles,CA,90001 +255701,AA Batteries (4-pack),2,3.84,2019-09-20 15:41:00,460 Willow St, San Francisco,CA,94016 +255702,USB-C Charging Cable,1,11.95,2019-09-22 17:47:00,971 Pine St, Portland,OR,97035 +255703,27in 4K Gaming Monitor,1,389.99,2019-09-26 14:53:00,914 Elm St, San Francisco,CA,94016 +255704,AA Batteries (4-pack),1,3.84,2019-09-08 22:25:00,83 14th St, New York City,NY,10001 +255705,USB-C Charging Cable,1,11.95,2019-09-19 22:09:00,7 Elm St, Atlanta,GA,30301 +255705,Apple Airpods Headphones,1,150.0,2019-09-19 22:09:00,7 Elm St, Atlanta,GA,30301 +255706,27in 4K Gaming Monitor,1,389.99,2019-09-05 22:05:00,524 Cedar St, Boston,MA,02215 +255707,Wired Headphones,1,11.99,2019-09-12 18:51:00,674 Lake St, San Francisco,CA,94016 +255708,USB-C Charging Cable,1,11.95,2019-09-17 12:49:00,240 Maple St, Seattle,WA,98101 +255709,Apple Airpods Headphones,1,150.0,2019-09-29 14:06:00,928 Madison St, New York City,NY,10001 +255710,AA Batteries (4-pack),2,3.84,2019-09-25 13:55:00,866 9th St, Boston,MA,02215 +255711,Wired Headphones,1,11.99,2019-09-29 19:23:00,179 Meadow St, Los Angeles,CA,90001 +255712,USB-C Charging Cable,1,11.95,2019-09-04 01:38:00,843 Main St, San Francisco,CA,94016 +255713,Lightning Charging Cable,1,14.95,2019-09-09 07:54:00,590 Lakeview St, Seattle,WA,98101 +255714,Flatscreen TV,1,300.0,2019-09-02 19:43:00,297 12th St, Seattle,WA,98101 +255715,Google Phone,1,600.0,2019-09-29 18:18:00,452 Walnut St, San Francisco,CA,94016 +255716,20in Monitor,1,109.99,2019-09-20 20:27:00,71 Pine St, Portland,ME,04101 +255717,27in FHD Monitor,1,149.99,2019-09-24 03:55:00,223 Lakeview St, San Francisco,CA,94016 +255718,AA Batteries (4-pack),1,3.84,2019-09-25 17:31:00,562 11th St, Dallas,TX,75001 +255719,Bose SoundSport Headphones,1,99.99,2019-09-07 18:39:00,882 6th St, Los Angeles,CA,90001 +255720,34in Ultrawide Monitor,1,379.99,2019-09-29 14:56:00,120 Main St, San Francisco,CA,94016 +255721,Flatscreen TV,1,300.0,2019-09-30 00:46:00,242 Main St, San Francisco,CA,94016 +255722,Bose SoundSport Headphones,1,99.99,2019-09-19 10:13:00,597 Church St, Portland,OR,97035 +255723,iPhone,1,700.0,2019-09-04 09:18:00,936 Adams St, Boston,MA,02215 +255724,Flatscreen TV,1,300.0,2019-09-27 10:46:00,498 River St, San Francisco,CA,94016 +255725,USB-C Charging Cable,1,11.95,2019-09-10 23:30:00,973 Maple St, New York City,NY,10001 +255726,27in FHD Monitor,1,149.99,2019-09-01 16:49:00,942 2nd St, New York City,NY,10001 +255727,Wired Headphones,2,11.99,2019-09-18 04:27:00,821 Chestnut St, Atlanta,GA,30301 +255728,AA Batteries (4-pack),1,3.84,2019-09-23 19:43:00,102 River St, Los Angeles,CA,90001 +255729,Lightning Charging Cable,2,14.95,2019-09-19 22:00:00,640 14th St, Seattle,WA,98101 +255730,Apple Airpods Headphones,1,150.0,2019-09-09 08:21:00,738 Pine St, Atlanta,GA,30301 +255731,34in Ultrawide Monitor,1,379.99,2019-09-17 09:23:00,332 South St, Portland,OR,97035 +255732,20in Monitor,1,109.99,2019-09-04 21:29:00,133 Church St, Los Angeles,CA,90001 +255733,Wired Headphones,2,11.99,2019-09-06 17:21:00,599 Chestnut St, Los Angeles,CA,90001 +255734,Lightning Charging Cable,1,14.95,2019-09-04 18:59:00,924 River St, San Francisco,CA,94016 +255735,Lightning Charging Cable,1,14.95,2019-09-17 19:34:00,295 Jackson St, New York City,NY,10001 +255736,AAA Batteries (4-pack),1,2.99,2019-09-14 21:19:00,634 2nd St, Los Angeles,CA,90001 +255737,27in FHD Monitor,1,149.99,2019-09-22 01:48:00,952 Walnut St, San Francisco,CA,94016 +255738,USB-C Charging Cable,1,11.95,2019-09-04 06:17:00,736 Cedar St, Seattle,WA,98101 +255739,Google Phone,1,600.0,2019-09-11 10:14:00,128 Elm St, New York City,NY,10001 +255740,AA Batteries (4-pack),1,3.84,2019-09-19 08:16:00,174 Main St, Boston,MA,02215 +255741,AA Batteries (4-pack),1,3.84,2019-09-30 16:57:00,492 7th St, Austin,TX,73301 +255742,Bose SoundSport Headphones,1,99.99,2019-09-26 18:24:00,536 Highland St, Austin,TX,73301 +255743,Flatscreen TV,1,300.0,2019-09-13 16:43:00,885 9th St, Austin,TX,73301 +255744,Wired Headphones,1,11.99,2019-09-18 09:04:00,58 Pine St, Dallas,TX,75001 +255745,AA Batteries (4-pack),1,3.84,2019-09-09 18:28:00,931 Highland St, Atlanta,GA,30301 +255746,Wired Headphones,2,11.99,2019-09-27 21:37:00,317 11th St, Seattle,WA,98101 +255747,Lightning Charging Cable,1,14.95,2019-09-04 19:11:00,859 Main St, Austin,TX,73301 +255748,Wired Headphones,1,11.99,2019-09-10 18:38:00,489 11th St, Dallas,TX,75001 +255749,Bose SoundSport Headphones,1,99.99,2019-09-20 19:11:00,68 Dogwood St, New York City,NY,10001 +255750,27in 4K Gaming Monitor,1,389.99,2019-09-06 20:10:00,729 7th St, Atlanta,GA,30301 +255751,Wired Headphones,1,11.99,2019-09-07 08:12:00,468 Lincoln St, San Francisco,CA,94016 +255752,AAA Batteries (4-pack),1,2.99,2019-09-17 19:59:00,340 Jackson St, Seattle,WA,98101 +255753,Lightning Charging Cable,1,14.95,2019-09-29 18:59:00,957 6th St, Portland,OR,97035 +255754,USB-C Charging Cable,1,11.95,2019-09-09 22:41:00,277 West St, San Francisco,CA,94016 +255755,AAA Batteries (4-pack),2,2.99,2019-09-20 06:58:00,739 9th St, Dallas,TX,75001 +255756,Bose SoundSport Headphones,1,99.99,2019-09-11 11:27:00,966 Lakeview St, New York City,NY,10001 +255757,27in 4K Gaming Monitor,1,389.99,2019-09-12 17:40:00,158 7th St, Atlanta,GA,30301 +255758,AAA Batteries (4-pack),1,2.99,2019-09-04 12:34:00,246 9th St, Los Angeles,CA,90001 +255759,Lightning Charging Cable,2,14.95,2019-09-05 07:54:00,951 Chestnut St, Los Angeles,CA,90001 +255760,Apple Airpods Headphones,1,150.0,2019-09-08 12:22:00,205 Forest St, New York City,NY,10001 +255761,Flatscreen TV,1,300.0,2019-09-11 17:49:00,370 13th St, San Francisco,CA,94016 +255762,Apple Airpods Headphones,1,150.0,2019-09-14 08:17:00,754 8th St, Portland,ME,04101 +255763,20in Monitor,1,109.99,2019-09-19 15:30:00,502 13th St, Los Angeles,CA,90001 +255764,iPhone,1,700.0,2019-09-18 07:18:00,350 Madison St, Dallas,TX,75001 +255765,Wired Headphones,1,11.99,2019-09-11 15:10:00,856 6th St, Seattle,WA,98101 +255766,27in FHD Monitor,1,149.99,2019-09-03 20:58:00,600 14th St, Dallas,TX,75001 +255767,AA Batteries (4-pack),1,3.84,2019-09-03 09:26:00,974 1st St, New York City,NY,10001 +255768,iPhone,1,700.0,2019-09-05 14:21:00,943 9th St, Los Angeles,CA,90001 +255769,Lightning Charging Cable,1,14.95,2019-09-14 19:53:00,374 Lakeview St, Boston,MA,02215 +255770,Bose SoundSport Headphones,1,99.99,2019-09-21 21:03:00,380 Highland St, Portland,OR,97035 +255771,iPhone,1,700.0,2019-09-13 21:31:00,326 Washington St, Boston,MA,02215 +255772,AAA Batteries (4-pack),1,2.99,2019-09-28 17:57:00,540 Elm St, Dallas,TX,75001 +255773,USB-C Charging Cable,2,11.95,2019-09-21 23:52:00,994 Jefferson St, Seattle,WA,98101 +255774,USB-C Charging Cable,1,11.95,2019-09-23 15:52:00,747 Madison St, New York City,NY,10001 +255775,USB-C Charging Cable,1,11.95,2019-09-05 15:08:00,20 Pine St, San Francisco,CA,94016 +255776,Apple Airpods Headphones,1,150.0,2019-09-24 17:05:00,745 Hickory St, Austin,TX,73301 +255777,AA Batteries (4-pack),2,3.84,2019-09-29 18:16:00,536 Elm St, Portland,ME,04101 +255778,Flatscreen TV,1,300.0,2019-09-12 18:18:00,454 Adams St, Dallas,TX,75001 +255779,Lightning Charging Cable,1,14.95,2019-09-30 10:09:00,41 Center St, Los Angeles,CA,90001 +255780,Bose SoundSport Headphones,1,99.99,2019-09-18 08:07:00,951 13th St, Atlanta,GA,30301 +255781,Lightning Charging Cable,1,14.95,2019-09-05 20:07:00,495 1st St, New York City,NY,10001 +255782,Lightning Charging Cable,1,14.95,2019-09-11 07:29:00,933 Madison St, Austin,TX,73301 +255783,Wired Headphones,1,11.99,2019-09-29 11:53:00,765 11th St, Los Angeles,CA,90001 +255784,iPhone,1,700.0,2019-09-11 09:59:00,210 West St, San Francisco,CA,94016 +255785,AA Batteries (4-pack),1,3.84,2019-09-08 17:44:00,917 Elm St, Portland,OR,97035 +255786,Apple Airpods Headphones,1,150.0,2019-09-27 08:14:00,308 Spruce St, Boston,MA,02215 +255787,Google Phone,1,600.0,2019-09-11 15:08:00,517 11th St, San Francisco,CA,94016 +255788,27in FHD Monitor,1,149.99,2019-09-29 00:25:00,750 12th St, Los Angeles,CA,90001 +255789,AA Batteries (4-pack),1,3.84,2019-09-09 11:34:00,824 Elm St, Seattle,WA,98101 +255790,Wired Headphones,1,11.99,2019-09-09 17:53:00,662 Lakeview St, Boston,MA,02215 +255791,Apple Airpods Headphones,1,150.0,2019-09-23 13:11:00,123 Madison St, Austin,TX,73301 +255792,Apple Airpods Headphones,1,150.0,2019-09-06 00:02:00,5 Adams St, New York City,NY,10001 +255793,Lightning Charging Cable,1,14.95,2019-09-16 11:39:00,586 2nd St, Atlanta,GA,30301 +255794,Macbook Pro Laptop,1,1700.0,2019-09-10 17:22:00,63 10th St, Los Angeles,CA,90001 +255795,Bose SoundSport Headphones,1,99.99,2019-09-03 17:43:00,411 Madison St, Portland,OR,97035 +255796,Apple Airpods Headphones,1,150.0,2019-09-02 19:00:00,582 Wilson St, San Francisco,CA,94016 +255797,USB-C Charging Cable,1,11.95,2019-09-17 23:33:00,370 Pine St, San Francisco,CA,94016 +255798,Wired Headphones,1,11.99,2019-09-06 14:18:00,536 12th St, San Francisco,CA,94016 +255799,USB-C Charging Cable,2,11.95,2019-09-14 22:20:00,208 Lakeview St, Boston,MA,02215 +255800,AA Batteries (4-pack),1,3.84,2019-09-02 13:18:00,210 Pine St, Atlanta,GA,30301 +255801,Macbook Pro Laptop,1,1700.0,2019-09-05 11:25:00,930 Forest St, Boston,MA,02215 +255802,USB-C Charging Cable,1,11.95,2019-09-03 08:18:00,207 Washington St, Boston,MA,02215 +255803,USB-C Charging Cable,1,11.95,2019-09-07 19:00:00,894 Park St, Atlanta,GA,30301 +255804,Lightning Charging Cable,1,14.95,2019-09-03 16:31:00,133 Washington St, Dallas,TX,75001 +255805,AA Batteries (4-pack),2,3.84,2019-09-22 20:04:00,282 5th St, Austin,TX,73301 +255806,iPhone,1,700.0,2019-09-18 00:11:00,718 Spruce St, Dallas,TX,75001 +255806,Lightning Charging Cable,1,14.95,2019-09-18 00:11:00,718 Spruce St, Dallas,TX,75001 +255807,Bose SoundSport Headphones,1,99.99,2019-09-09 16:20:00,727 Ridge St, Dallas,TX,75001 +255808,Macbook Pro Laptop,1,1700.0,2019-09-25 10:20:00,248 13th St, Los Angeles,CA,90001 +255809,AA Batteries (4-pack),1,3.84,2019-09-27 16:14:00,977 8th St, San Francisco,CA,94016 +255810,ThinkPad Laptop,1,999.99,2019-09-07 21:41:00,497 South St, Atlanta,GA,30301 +255811,AAA Batteries (4-pack),4,2.99,2019-09-23 16:21:00,345 Dogwood St, Portland,OR,97035 +255812,Flatscreen TV,1,300.0,2019-09-29 13:21:00,693 Ridge St, Seattle,WA,98101 +255813,Lightning Charging Cable,2,14.95,2019-09-17 09:31:00,76 14th St, San Francisco,CA,94016 +255814,27in FHD Monitor,1,149.99,2019-09-25 12:45:00,836 7th St, Atlanta,GA,30301 +255815,iPhone,1,700.0,2019-09-20 11:39:00,147 Church St, Boston,MA,02215 +255815,Lightning Charging Cable,1,14.95,2019-09-20 11:39:00,147 Church St, Boston,MA,02215 +255816,iPhone,1,700.0,2019-09-10 16:50:00,678 Forest St, Los Angeles,CA,90001 +255816,AAA Batteries (4-pack),2,2.99,2019-09-10 16:50:00,678 Forest St, Los Angeles,CA,90001 +255817,AA Batteries (4-pack),1,3.84,2019-09-06 17:04:00,8 Ridge St, San Francisco,CA,94016 +255818,Lightning Charging Cable,1,14.95,2019-09-06 15:41:00,516 Adams St, Los Angeles,CA,90001 +255819,Wired Headphones,1,11.99,2019-09-23 12:19:00,60 6th St, New York City,NY,10001 +255820,Macbook Pro Laptop,1,1700.0,2019-09-07 09:33:00,119 Meadow St, New York City,NY,10001 +255821,Lightning Charging Cable,2,14.95,2019-09-08 12:07:00,869 River St, New York City,NY,10001 +255822,AA Batteries (4-pack),1,3.84,2019-09-07 21:23:00,708 River St, Dallas,TX,75001 +255823,Wired Headphones,1,11.99,2019-09-30 12:51:00,644 Wilson St, Portland,OR,97035 +255824,USB-C Charging Cable,1,11.95,2019-09-08 13:15:00,715 7th St, Los Angeles,CA,90001 +255825,27in 4K Gaming Monitor,1,389.99,2019-09-04 23:00:00,211 4th St, Boston,MA,02215 +255826,Google Phone,1,600.0,2019-09-15 11:22:00,908 North St, Dallas,TX,75001 +255827,ThinkPad Laptop,1,999.99,2019-09-23 10:23:00,561 Lakeview St, Los Angeles,CA,90001 +255828,27in 4K Gaming Monitor,1,389.99,2019-09-15 18:02:00,51 Cherry St, Dallas,TX,75001 +255829,Apple Airpods Headphones,1,150.0,2019-09-04 11:27:00,283 4th St, San Francisco,CA,94016 +255830,Macbook Pro Laptop,1,1700.0,2019-09-29 21:00:00,402 8th St, Boston,MA,02215 +255831,Lightning Charging Cable,2,14.95,2019-09-29 14:30:00,480 Dogwood St, Los Angeles,CA,90001 +255832,Lightning Charging Cable,1,14.95,2019-09-15 22:11:00,31 Adams St, Austin,TX,73301 +255833,Lightning Charging Cable,1,14.95,2019-09-27 21:18:00,536 7th St, Dallas,TX,75001 +255834,AA Batteries (4-pack),1,3.84,2019-09-04 15:30:00,477 6th St, Boston,MA,02215 +255835,AA Batteries (4-pack),1,3.84,2019-09-13 14:22:00,173 Spruce St, Los Angeles,CA,90001 +255836,Bose SoundSport Headphones,1,99.99,2019-09-05 16:17:00,171 Lakeview St, Boston,MA,02215 +255837,AAA Batteries (4-pack),1,2.99,2019-09-10 06:25:00,306 Pine St, Los Angeles,CA,90001 +255838,AA Batteries (4-pack),1,3.84,2019-09-11 13:57:00,357 Wilson St, San Francisco,CA,94016 +255839,Google Phone,1,600.0,2019-09-16 16:33:00,301 Elm St, San Francisco,CA,94016 +255839,USB-C Charging Cable,1,11.95,2019-09-16 16:33:00,301 Elm St, San Francisco,CA,94016 +255840,Lightning Charging Cable,1,14.95,2019-09-18 17:59:00,130 Pine St, San Francisco,CA,94016 +255841,AA Batteries (4-pack),1,3.84,2019-09-07 00:50:00,849 2nd St, New York City,NY,10001 +255842,Apple Airpods Headphones,1,150.0,2019-09-21 21:58:00,116 Ridge St, Boston,MA,02215 +255842,27in 4K Gaming Monitor,1,389.99,2019-09-21 21:58:00,116 Ridge St, Boston,MA,02215 +255843,Wired Headphones,1,11.99,2019-09-26 15:32:00,915 Walnut St, San Francisco,CA,94016 +255844,Flatscreen TV,1,300.0,2019-09-27 18:33:00,918 River St, Portland,OR,97035 +255845,Wired Headphones,1,11.99,2019-09-16 13:15:00,734 Lakeview St, Austin,TX,73301 +255846,Vareebadd Phone,1,400.0,2019-09-10 14:40:00,286 Cherry St, San Francisco,CA,94016 +255847,Macbook Pro Laptop,1,1700.0,2019-09-24 09:39:00,984 Jackson St, Los Angeles,CA,90001 +255848,34in Ultrawide Monitor,1,379.99,2019-09-10 22:33:00,596 West St, Seattle,WA,98101 +255849,AAA Batteries (4-pack),1,2.99,2019-09-15 08:02:00,279 Hill St, Boston,MA,02215 +255850,USB-C Charging Cable,1,11.95,2019-09-14 14:34:00,192 7th St, Dallas,TX,75001 +255851,Bose SoundSport Headphones,1,99.99,2019-09-21 22:39:00,33 River St, San Francisco,CA,94016 +255852,Flatscreen TV,1,300.0,2019-09-21 10:41:00,496 Walnut St, Los Angeles,CA,90001 +255853,USB-C Charging Cable,2,11.95,2019-09-08 08:30:00,416 Lakeview St, Los Angeles,CA,90001 +255854,Wired Headphones,1,11.99,2019-09-11 10:08:00,242 Lakeview St, Dallas,TX,75001 +255855,iPhone,1,700.0,2019-09-16 20:50:00,17 5th St, Atlanta,GA,30301 +255856,AA Batteries (4-pack),1,3.84,2019-09-11 12:40:00,784 Meadow St, New York City,NY,10001 +255857,Apple Airpods Headphones,1,150.0,2019-09-12 19:10:00,669 Highland St, Los Angeles,CA,90001 +255858,34in Ultrawide Monitor,1,379.99,2019-09-15 09:45:00,187 Jackson St, New York City,NY,10001 +255859,Bose SoundSport Headphones,1,99.99,2019-09-25 12:46:00,274 Chestnut St, Portland,OR,97035 +255860,AAA Batteries (4-pack),1,2.99,2019-09-28 23:04:00,167 North St, San Francisco,CA,94016 +255861,AAA Batteries (4-pack),3,2.99,2019-09-04 14:16:00,414 Park St, San Francisco,CA,94016 +255862,USB-C Charging Cable,1,11.95,2019-09-25 19:32:00,473 Spruce St, Portland,OR,97035 +255863,USB-C Charging Cable,1,11.95,2019-09-13 13:16:00,535 North St, Dallas,TX,75001 +255864,Wired Headphones,2,11.99,2019-09-30 11:33:00,869 Madison St, San Francisco,CA,94016 +255865,ThinkPad Laptop,1,999.99,2019-09-01 19:20:00,615 Ridge St, Portland,OR,97035 +255866,Wired Headphones,1,11.99,2019-09-02 14:39:00,572 Lakeview St, Atlanta,GA,30301 +255867,Lightning Charging Cable,2,14.95,2019-09-30 14:15:00,148 12th St, Boston,MA,02215 +255868,AA Batteries (4-pack),6,3.84,2019-09-12 10:27:00,470 Maple St, San Francisco,CA,94016 +255869,USB-C Charging Cable,1,11.95,2019-09-17 20:46:00,965 1st St, San Francisco,CA,94016 +255870,AA Batteries (4-pack),1,3.84,2019-09-21 18:24:00,521 River St, Boston,MA,02215 +255871,Apple Airpods Headphones,1,150.0,2019-09-03 19:01:00,761 Lake St, Atlanta,GA,30301 +255872,Lightning Charging Cable,1,14.95,2019-09-17 18:25:00,668 Lakeview St, Seattle,WA,98101 +255873,Apple Airpods Headphones,1,150.0,2019-09-20 10:45:00,250 Jefferson St, San Francisco,CA,94016 +255874,USB-C Charging Cable,1,11.95,2019-09-14 07:45:00,163 Lake St, Atlanta,GA,30301 +255875,USB-C Charging Cable,1,11.95,2019-09-29 15:22:00,774 13th St, San Francisco,CA,94016 +255876,Wired Headphones,1,11.99,2019-09-19 16:05:00,328 Johnson St, Seattle,WA,98101 +255877,AA Batteries (4-pack),1,3.84,2019-09-26 09:25:00,78 Main St, Dallas,TX,75001 +255878,Bose SoundSport Headphones,1,99.99,2019-09-29 18:28:00,462 Meadow St, Dallas,TX,75001 +255879,AA Batteries (4-pack),1,3.84,2019-09-11 23:26:00,133 Jackson St, Atlanta,GA,30301 +255880,Lightning Charging Cable,1,14.95,2019-09-16 23:26:00,318 Spruce St, Boston,MA,02215 +255881,USB-C Charging Cable,1,11.95,2019-09-19 13:30:00,125 Elm St, Los Angeles,CA,90001 +255882,iPhone,1,700.0,2019-09-27 10:10:00,68 7th St, New York City,NY,10001 +255883,27in FHD Monitor,1,149.99,2019-09-01 10:17:00,401 7th St, Seattle,WA,98101 +255884,Apple Airpods Headphones,1,150.0,2019-09-17 23:14:00,9 Jackson St, San Francisco,CA,94016 +255885,Apple Airpods Headphones,1,150.0,2019-09-10 14:42:00,516 2nd St, San Francisco,CA,94016 +255886,AAA Batteries (4-pack),1,2.99,2019-09-13 14:47:00,731 Cherry St, Los Angeles,CA,90001 +255887,iPhone,1,700.0,2019-09-23 04:27:00,795 1st St, Atlanta,GA,30301 +255887,Macbook Pro Laptop,1,1700.0,2019-09-23 04:27:00,795 1st St, Atlanta,GA,30301 +255888,AAA Batteries (4-pack),2,2.99,2019-09-25 01:34:00,674 Elm St, Atlanta,GA,30301 +255889,Wired Headphones,1,11.99,2019-09-15 00:42:00,609 Johnson St, Portland,OR,97035 +255890,AAA Batteries (4-pack),1,2.99,2019-09-03 20:37:00,942 Forest St, San Francisco,CA,94016 +255891,Apple Airpods Headphones,1,150.0,2019-09-03 21:23:00,257 4th St, San Francisco,CA,94016 +255892,34in Ultrawide Monitor,1,379.99,2019-09-20 14:45:00,614 11th St, Dallas,TX,75001 +255893,USB-C Charging Cable,1,11.95,2019-09-23 21:19:00,296 13th St, San Francisco,CA,94016 +255894,Lightning Charging Cable,1,14.95,2019-09-12 19:36:00,74 Ridge St, Portland,OR,97035 +255895,34in Ultrawide Monitor,1,379.99,2019-09-07 15:59:00,8 8th St, San Francisco,CA,94016 +255896,Bose SoundSport Headphones,1,99.99,2019-09-02 13:25:00,565 1st St, New York City,NY,10001 +255897,Bose SoundSport Headphones,1,99.99,2019-09-17 18:42:00,967 Meadow St, Atlanta,GA,30301 +255898,USB-C Charging Cable,1,11.95,2019-09-11 22:39:00,634 4th St, San Francisco,CA,94016 +255899,Bose SoundSport Headphones,1,99.99,2019-09-08 08:00:00,768 Forest St, New York City,NY,10001 +255900,27in FHD Monitor,1,149.99,2019-09-12 20:04:00,482 Ridge St, Dallas,TX,75001 +255901,ThinkPad Laptop,1,999.99,2019-09-27 15:09:00,618 2nd St, Dallas,TX,75001 +255902,USB-C Charging Cable,1,11.95,2019-09-19 20:29:00,586 West St, New York City,NY,10001 +255903,USB-C Charging Cable,1,11.95,2019-09-17 09:40:00,389 Church St, New York City,NY,10001 +255904,Lightning Charging Cable,1,14.95,2019-09-23 20:45:00,455 6th St, Seattle,WA,98101 +255905,USB-C Charging Cable,1,11.95,2019-09-17 08:45:00,198 5th St, Dallas,TX,75001 +255906,USB-C Charging Cable,1,11.95,2019-09-29 14:48:00,613 Cherry St, Boston,MA,02215 +255907,USB-C Charging Cable,1,11.95,2019-09-24 09:29:00,230 7th St, Atlanta,GA,30301 +255908,iPhone,1,700.0,2019-09-14 17:09:00,507 Madison St, Portland,OR,97035 +255908,Lightning Charging Cable,1,14.95,2019-09-14 17:09:00,507 Madison St, Portland,OR,97035 +255909,27in FHD Monitor,1,149.99,2019-09-20 17:51:00,14 Maple St, Atlanta,GA,30301 +255910,AAA Batteries (4-pack),1,2.99,2019-09-02 19:11:00,596 River St, Boston,MA,02215 +255911,AA Batteries (4-pack),1,3.84,2019-09-10 20:13:00,525 South St, Seattle,WA,98101 +255912,Lightning Charging Cable,1,14.95,2019-09-25 16:45:00,242 Church St, New York City,NY,10001 +255913,Lightning Charging Cable,1,14.95,2019-09-05 19:16:00,243 Hickory St, Boston,MA,02215 +255914,Bose SoundSport Headphones,1,99.99,2019-09-13 16:19:00,300 Lake St, Los Angeles,CA,90001 +255915,USB-C Charging Cable,1,11.95,2019-09-30 09:07:00,223 10th St, Atlanta,GA,30301 +255916,AAA Batteries (4-pack),2,2.99,2019-09-01 11:15:00,7 8th St, Austin,TX,73301 +255917,Wired Headphones,3,11.99,2019-09-05 17:48:00,54 Elm St, Boston,MA,02215 +255918,Google Phone,1,600.0,2019-09-25 11:35:00,924 Willow St, New York City,NY,10001 +255919,34in Ultrawide Monitor,1,379.99,2019-09-28 14:22:00,948 Park St, New York City,NY,10001 +255920,USB-C Charging Cable,1,11.95,2019-09-07 00:03:00,173 4th St, Portland,OR,97035 +255921,20in Monitor,1,109.99,2019-09-19 23:47:00,847 5th St, Atlanta,GA,30301 +255922,20in Monitor,1,109.99,2019-09-01 15:47:00,212 5th St, San Francisco,CA,94016 +255923,Wired Headphones,1,11.99,2019-09-28 17:51:00,24 Elm St, Boston,MA,02215 +255924,AAA Batteries (4-pack),4,2.99,2019-09-21 14:46:00,874 12th St, Boston,MA,02215 +255925,Flatscreen TV,1,300.0,2019-09-24 00:07:00,435 Dogwood St, Portland,OR,97035 +255926,AAA Batteries (4-pack),2,2.99,2019-09-20 15:00:00,740 Lake St, Los Angeles,CA,90001 +255927,USB-C Charging Cable,1,11.95,2019-09-23 09:32:00,51 Ridge St, San Francisco,CA,94016 +255928,AAA Batteries (4-pack),2,2.99,2019-09-23 04:53:00,15 Adams St, Atlanta,GA,30301 +255929,LG Dryer,1,600.0,2019-09-09 13:28:00,731 Washington St, Dallas,TX,75001 +255930,Wired Headphones,1,11.99,2019-09-06 00:05:00,713 Johnson St, Austin,TX,73301 +255931,Apple Airpods Headphones,1,150.0,2019-09-12 22:32:00,745 Hickory St, Boston,MA,02215 +255932,Lightning Charging Cable,1,14.95,2019-09-30 18:23:00,674 Hickory St, Portland,ME,04101 +255933,AAA Batteries (4-pack),1,2.99,2019-09-04 20:59:00,630 6th St, Dallas,TX,75001 +255934,AA Batteries (4-pack),2,3.84,2019-09-17 01:33:00,325 River St, Austin,TX,73301 +255935,ThinkPad Laptop,1,999.99,2019-09-11 15:00:00,356 Lakeview St, New York City,NY,10001 +255936,AAA Batteries (4-pack),2,2.99,2019-09-20 12:57:00,232 Highland St, New York City,NY,10001 +255937,AAA Batteries (4-pack),1,2.99,2019-09-19 19:38:00,214 Meadow St, Atlanta,GA,30301 +255938,Apple Airpods Headphones,1,150.0,2019-09-24 21:43:00,843 Highland St, San Francisco,CA,94016 +255939,Apple Airpods Headphones,1,150.0,2019-09-10 15:00:00,186 Maple St, Austin,TX,73301 +255940,ThinkPad Laptop,1,999.99,2019-09-03 20:30:00,76 Walnut St, New York City,NY,10001 +255941,USB-C Charging Cable,1,11.95,2019-09-14 09:44:00,278 Spruce St, Dallas,TX,75001 +255942,Apple Airpods Headphones,1,150.0,2019-09-23 00:12:00,749 10th St, New York City,NY,10001 +255943,Wired Headphones,1,11.99,2019-09-12 19:22:00,518 Pine St, Los Angeles,CA,90001 +255944,AA Batteries (4-pack),1,3.84,2019-09-24 13:45:00,720 8th St, Atlanta,GA,30301 +255945,AAA Batteries (4-pack),1,2.99,2019-09-14 12:04:00,575 Sunset St, Seattle,WA,98101 +255946,27in 4K Gaming Monitor,1,389.99,2019-09-25 17:12:00,49 Johnson St, San Francisco,CA,94016 +255947,Macbook Pro Laptop,1,1700.0,2019-09-04 13:04:00,229 Maple St, Boston,MA,02215 +255948,Lightning Charging Cable,1,14.95,2019-09-20 13:50:00,557 9th St, Los Angeles,CA,90001 +255949,iPhone,1,700.0,2019-09-22 12:39:00,256 1st St, Dallas,TX,75001 +255950,Wired Headphones,1,11.99,2019-09-08 03:46:00,493 Forest St, Dallas,TX,75001 +255951,34in Ultrawide Monitor,1,379.99,2019-09-21 14:51:00,12 Wilson St, Los Angeles,CA,90001 +255952,Lightning Charging Cable,1,14.95,2019-09-20 10:44:00,536 10th St, Boston,MA,02215 +255953,Apple Airpods Headphones,1,150.0,2019-09-22 14:58:00,943 10th St, Los Angeles,CA,90001 +255954,USB-C Charging Cable,1,11.95,2019-09-20 18:12:00,717 2nd St, Los Angeles,CA,90001 +255955,27in FHD Monitor,1,149.99,2019-09-18 17:29:00,392 7th St, Portland,ME,04101 +255956,AA Batteries (4-pack),3,3.84,2019-09-18 08:19:00,647 Sunset St, Seattle,WA,98101 +255957,27in FHD Monitor,1,149.99,2019-09-10 13:47:00,392 North St, Los Angeles,CA,90001 +255958,USB-C Charging Cable,1,11.95,2019-09-09 11:31:00,979 South St, San Francisco,CA,94016 +255959,Apple Airpods Headphones,1,150.0,2019-09-30 21:40:00,530 Dogwood St, Boston,MA,02215 +255960,ThinkPad Laptop,1,999.99,2019-09-20 20:37:00,942 Cedar St, Atlanta,GA,30301 +255961,iPhone,1,700.0,2019-09-20 15:28:00,701 Cedar St, Atlanta,GA,30301 +255962,Google Phone,1,600.0,2019-09-06 02:29:00,283 Jefferson St, New York City,NY,10001 +255962,USB-C Charging Cable,1,11.95,2019-09-06 02:29:00,283 Jefferson St, New York City,NY,10001 +255963,AA Batteries (4-pack),1,3.84,2019-09-09 20:43:00,864 Cedar St, Portland,OR,97035 +255964,Apple Airpods Headphones,1,150.0,2019-09-29 09:45:00,798 Church St, Los Angeles,CA,90001 +255965,Lightning Charging Cable,1,14.95,2019-09-12 14:50:00,671 5th St, New York City,NY,10001 +255966,Wired Headphones,1,11.99,2019-09-22 16:25:00,799 9th St, New York City,NY,10001 +255967,Wired Headphones,1,11.99,2019-09-25 14:36:00,826 Sunset St, San Francisco,CA,94016 +255968,27in 4K Gaming Monitor,1,389.99,2019-09-03 11:39:00,545 Center St, Atlanta,GA,30301 +255969,Vareebadd Phone,1,400.0,2019-09-23 21:51:00,238 Willow St, Dallas,TX,75001 +255970,Wired Headphones,1,11.99,2019-09-11 11:20:00,934 Washington St, Portland,OR,97035 +255971,USB-C Charging Cable,2,11.95,2019-09-13 12:13:00,662 Lincoln St, Boston,MA,02215 +255972,AAA Batteries (4-pack),2,2.99,2019-09-26 12:23:00,602 Johnson St, San Francisco,CA,94016 +255973,AA Batteries (4-pack),1,3.84,2019-09-09 15:03:00,598 Spruce St, Atlanta,GA,30301 +255974,Lightning Charging Cable,1,14.95,2019-09-03 09:12:00,168 Cherry St, Boston,MA,02215 +255975,USB-C Charging Cable,1,11.95,2019-09-21 13:18:00,734 6th St, San Francisco,CA,94016 +255976,27in FHD Monitor,1,149.99,2019-09-04 21:38:00,261 Lakeview St, Seattle,WA,98101 +255977,Bose SoundSport Headphones,1,99.99,2019-09-15 22:00:00,183 10th St, Los Angeles,CA,90001 +255978,Wired Headphones,1,11.99,2019-09-29 17:25:00,557 Sunset St, Boston,MA,02215 +255979,Lightning Charging Cable,2,14.95,2019-09-29 16:53:00,574 Hill St, New York City,NY,10001 +255980,Bose SoundSport Headphones,1,99.99,2019-09-17 09:37:00,840 9th St, Boston,MA,02215 +255981,AAA Batteries (4-pack),1,2.99,2019-09-19 01:01:00,879 Chestnut St, Austin,TX,73301 +255982,AAA Batteries (4-pack),1,2.99,2019-09-27 17:32:00,314 Forest St, Los Angeles,CA,90001 +255983,Lightning Charging Cable,1,14.95,2019-09-30 17:39:00,634 Center St, New York City,NY,10001 +255984,Apple Airpods Headphones,1,150.0,2019-09-18 13:49:00,459 7th St, Seattle,WA,98101 +255985,AA Batteries (4-pack),1,3.84,2019-09-14 12:27:00,917 Park St, San Francisco,CA,94016 +255986,iPhone,1,700.0,2019-09-04 21:16:00,6 South St, Los Angeles,CA,90001 +255987,USB-C Charging Cable,1,11.95,2019-09-13 16:50:00,419 North St, Dallas,TX,75001 +255988,Bose SoundSport Headphones,1,99.99,2019-09-09 23:32:00,646 Adams St, Portland,OR,97035 +255989,27in FHD Monitor,1,149.99,2019-09-05 08:14:00,382 Hill St, Austin,TX,73301 +255990,Macbook Pro Laptop,1,1700.0,2019-09-15 19:59:00,701 Center St, Portland,ME,04101 +255991,Wired Headphones,1,11.99,2019-09-13 13:40:00,150 6th St, Austin,TX,73301 +255992,USB-C Charging Cable,2,11.95,2019-09-23 11:00:00,509 11th St, Portland,ME,04101 +255993,27in FHD Monitor,1,149.99,2019-09-09 06:38:00,268 Jefferson St, San Francisco,CA,94016 +255994,ThinkPad Laptop,1,999.99,2019-09-02 22:29:00,605 Adams St, Atlanta,GA,30301 +255995,Lightning Charging Cable,1,14.95,2019-09-20 22:34:00,462 Ridge St, New York City,NY,10001 +255996,USB-C Charging Cable,1,11.95,2019-09-23 14:55:00,267 South St, Los Angeles,CA,90001 +255997,Bose SoundSport Headphones,1,99.99,2019-09-16 08:20:00,156 Dogwood St, San Francisco,CA,94016 +255998,AA Batteries (4-pack),1,3.84,2019-09-28 02:39:00,627 Lake St, San Francisco,CA,94016 +255999,Lightning Charging Cable,1,14.95,2019-09-04 17:31:00,393 Cherry St, San Francisco,CA,94016 +256000,Bose SoundSport Headphones,1,99.99,2019-09-02 18:58:00,856 2nd St, San Francisco,CA,94016 +256001,AA Batteries (4-pack),1,3.84,2019-09-03 12:43:00,19 Hickory St, Los Angeles,CA,90001 +256002,AAA Batteries (4-pack),1,2.99,2019-09-10 17:37:00,250 Jefferson St, Austin,TX,73301 +256003,Google Phone,1,600.0,2019-09-01 19:12:00,841 Lakeview St, Los Angeles,CA,90001 +256003,USB-C Charging Cable,1,11.95,2019-09-01 19:12:00,841 Lakeview St, Los Angeles,CA,90001 +256004,27in 4K Gaming Monitor,1,389.99,2019-09-03 04:33:00,390 Cedar St, Seattle,WA,98101 +256005,20in Monitor,1,109.99,2019-09-18 12:16:00,254 Johnson St, New York City,NY,10001 +256006,Lightning Charging Cable,1,14.95,2019-09-07 09:41:00,611 Cherry St, San Francisco,CA,94016 +256007,Lightning Charging Cable,1,14.95,2019-09-02 20:18:00,538 Meadow St, Boston,MA,02215 +256008,iPhone,1,700.0,2019-09-20 08:23:00,967 Johnson St, Austin,TX,73301 +256009,USB-C Charging Cable,1,11.95,2019-09-20 22:04:00,400 Church St, Seattle,WA,98101 +256010,Bose SoundSport Headphones,1,99.99,2019-09-26 16:34:00,341 River St, Los Angeles,CA,90001 +256011,Bose SoundSport Headphones,1,99.99,2019-09-11 14:56:00,912 Center St, Los Angeles,CA,90001 +256012,AA Batteries (4-pack),1,3.84,2019-09-21 17:12:00,929 Elm St, San Francisco,CA,94016 +256013,Bose SoundSport Headphones,1,99.99,2019-09-14 16:43:00,92 Lincoln St, Los Angeles,CA,90001 +256014,Wired Headphones,1,11.99,2019-09-14 21:04:00,321 Pine St, Seattle,WA,98101 +256015,Apple Airpods Headphones,1,150.0,2019-09-02 12:22:00,66 5th St, Portland,OR,97035 +256016,Lightning Charging Cable,1,14.95,2019-09-19 10:56:00,252 Hill St, Seattle,WA,98101 +256017,27in FHD Monitor,1,149.99,2019-09-16 23:35:00,107 Dogwood St, Portland,ME,04101 +256018,AAA Batteries (4-pack),1,2.99,2019-09-04 09:53:00,573 Madison St, New York City,NY,10001 +256019,27in 4K Gaming Monitor,1,389.99,2019-09-16 17:27:00,819 4th St, Dallas,TX,75001 +256020,USB-C Charging Cable,1,11.95,2019-09-05 22:01:00,618 Meadow St, Boston,MA,02215 +256021,Bose SoundSport Headphones,1,99.99,2019-09-16 11:51:00,715 Johnson St, Atlanta,GA,30301 +256022,Wired Headphones,1,11.99,2019-09-25 03:17:00,684 Madison St, San Francisco,CA,94016 +256023,Vareebadd Phone,1,400.0,2019-09-11 10:40:00,431 Forest St, Los Angeles,CA,90001 +256024,AA Batteries (4-pack),2,3.84,2019-09-03 18:38:00,272 Main St, Dallas,TX,75001 +256025,Apple Airpods Headphones,1,150.0,2019-09-05 07:29:00,800 Sunset St, Los Angeles,CA,90001 +256026,Lightning Charging Cable,1,14.95,2019-09-14 16:04:00,125 Church St, Atlanta,GA,30301 +256027,AAA Batteries (4-pack),1,2.99,2019-09-30 19:02:00,128 Johnson St, San Francisco,CA,94016 +256028,USB-C Charging Cable,1,11.95,2019-09-22 15:53:00,530 Spruce St, Boston,MA,02215 +256029,USB-C Charging Cable,3,11.95,2019-09-07 05:28:00,633 West St, Boston,MA,02215 +256030,Bose SoundSport Headphones,1,99.99,2019-09-27 00:23:00,61 Chestnut St, Austin,TX,73301 +256031,AA Batteries (4-pack),3,3.84,2019-09-29 10:58:00,471 Spruce St, San Francisco,CA,94016 +256032,ThinkPad Laptop,1,999.99,2019-09-04 17:30:00,960 4th St, New York City,NY,10001 +256033,USB-C Charging Cable,1,11.95,2019-09-23 22:36:00,14 Hill St, San Francisco,CA,94016 +256034,ThinkPad Laptop,1,999.99,2019-09-16 23:09:00,648 Walnut St, Los Angeles,CA,90001 +256035,Wired Headphones,1,11.99,2019-09-23 16:52:00,545 Lakeview St, Seattle,WA,98101 +256036,AAA Batteries (4-pack),2,2.99,2019-09-23 10:30:00,609 Jackson St, San Francisco,CA,94016 +256037,Bose SoundSport Headphones,1,99.99,2019-09-04 21:05:00,733 Adams St, San Francisco,CA,94016 +256038,Bose SoundSport Headphones,1,99.99,2019-09-26 14:26:00,250 Park St, New York City,NY,10001 +256039,AA Batteries (4-pack),2,3.84,2019-09-30 22:19:00,286 Pine St, San Francisco,CA,94016 +256040,AA Batteries (4-pack),3,3.84,2019-09-12 01:24:00,187 12th St, New York City,NY,10001 +256041,Wired Headphones,1,11.99,2019-09-17 11:56:00,809 Meadow St, Boston,MA,02215 +256042,Lightning Charging Cable,1,14.95,2019-09-04 00:32:00,924 Park St, Los Angeles,CA,90001 +256043,AA Batteries (4-pack),1,3.84,2019-09-08 11:14:00,458 Sunset St, Atlanta,GA,30301 +256044,27in 4K Gaming Monitor,1,389.99,2019-09-05 18:46:00,7 Washington St, Seattle,WA,98101 +256045,Apple Airpods Headphones,1,150.0,2019-09-03 12:01:00,315 Ridge St, Seattle,WA,98101 +256046,Lightning Charging Cable,1,14.95,2019-09-22 19:53:00,931 Jackson St, Atlanta,GA,30301 +256047,AA Batteries (4-pack),2,3.84,2019-09-12 13:30:00,779 Madison St, Seattle,WA,98101 +256048,Flatscreen TV,1,300.0,2019-09-16 13:18:00,557 12th St, Austin,TX,73301 +256049,Apple Airpods Headphones,1,150.0,2019-09-22 18:23:00,285 Willow St, New York City,NY,10001 +256050,AAA Batteries (4-pack),3,2.99,2019-09-01 17:40:00,8 2nd St, San Francisco,CA,94016 +256051,34in Ultrawide Monitor,1,379.99,2019-09-21 19:29:00,145 Church St, Seattle,WA,98101 +256052,Bose SoundSport Headphones,1,99.99,2019-09-04 21:20:00,869 10th St, Dallas,TX,75001 +256053,USB-C Charging Cable,1,11.95,2019-09-29 13:54:00,86 River St, Atlanta,GA,30301 +256054,27in 4K Gaming Monitor,1,389.99,2019-09-23 14:15:00,125 Sunset St, Los Angeles,CA,90001 +256055,Bose SoundSport Headphones,1,99.99,2019-09-26 14:00:00,494 Walnut St, Austin,TX,73301 +256056,Bose SoundSport Headphones,1,99.99,2019-09-06 23:42:00,285 5th St, Los Angeles,CA,90001 +256057,Lightning Charging Cable,1,14.95,2019-09-24 12:56:00,5 River St, San Francisco,CA,94016 +256058,Lightning Charging Cable,1,14.95,2019-09-24 19:56:00,252 Pine St, San Francisco,CA,94016 +256059,AA Batteries (4-pack),1,3.84,2019-09-13 20:27:00,695 Chestnut St, Boston,MA,02215 +256060,Apple Airpods Headphones,1,150.0,2019-09-21 10:57:00,324 Walnut St, Seattle,WA,98101 +256061,AA Batteries (4-pack),1,3.84,2019-09-19 14:11:00,86 Maple St, Atlanta,GA,30301 +256062,Macbook Pro Laptop,1,1700.0,2019-09-11 11:54:00,537 14th St, San Francisco,CA,94016 +256063,34in Ultrawide Monitor,1,379.99,2019-09-27 18:51:00,60 6th St, New York City,NY,10001 +256064,ThinkPad Laptop,1,999.99,2019-09-28 16:49:00,995 Park St, Los Angeles,CA,90001 +256065,Bose SoundSport Headphones,1,99.99,2019-09-25 16:55:00,808 6th St, Atlanta,GA,30301 +256065,Lightning Charging Cable,1,14.95,2019-09-25 16:55:00,808 6th St, Atlanta,GA,30301 +256066,Bose SoundSport Headphones,1,99.99,2019-09-18 15:25:00,959 Lake St, Austin,TX,73301 +256067,34in Ultrawide Monitor,1,379.99,2019-09-15 06:45:00,806 Meadow St, San Francisco,CA,94016 +256068,Wired Headphones,1,11.99,2019-09-14 22:30:00,801 2nd St, Seattle,WA,98101 +256069,USB-C Charging Cable,1,11.95,2019-09-29 06:45:00,551 Forest St, Dallas,TX,75001 +256070,AAA Batteries (4-pack),3,2.99,2019-09-23 12:04:00,64 Adams St, San Francisco,CA,94016 +256071,AA Batteries (4-pack),1,3.84,2019-09-25 18:17:00,95 Ridge St, Los Angeles,CA,90001 +256072,AA Batteries (4-pack),3,3.84,2019-09-19 17:24:00,335 5th St, Boston,MA,02215 +256073,Macbook Pro Laptop,1,1700.0,2019-09-14 08:13:00,86 Maple St, San Francisco,CA,94016 +256074,AA Batteries (4-pack),1,3.84,2019-09-19 00:09:00,506 Spruce St, New York City,NY,10001 +256075,AAA Batteries (4-pack),1,2.99,2019-09-11 18:40:00,620 Church St, Boston,MA,02215 +256076,Lightning Charging Cable,1,14.95,2019-09-04 14:25:00,817 10th St, Dallas,TX,75001 +256077,USB-C Charging Cable,1,11.95,2019-09-06 19:58:00,769 9th St, San Francisco,CA,94016 +256078,iPhone,1,700.0,2019-09-02 08:52:00,450 4th St, San Francisco,CA,94016 +256079,20in Monitor,1,109.99,2019-09-13 20:55:00,786 12th St, Los Angeles,CA,90001 +256080,Bose SoundSport Headphones,1,99.99,2019-09-04 09:27:00,970 Jefferson St, San Francisco,CA,94016 +256081,Wired Headphones,1,11.99,2019-09-18 22:15:00,392 9th St, Los Angeles,CA,90001 +256082,Wired Headphones,1,11.99,2019-09-05 12:12:00,447 4th St, Dallas,TX,75001 +256083,Apple Airpods Headphones,1,150.0,2019-09-13 12:58:00,509 West St, Los Angeles,CA,90001 +256084,Wired Headphones,1,11.99,2019-09-29 21:21:00,486 Lake St, San Francisco,CA,94016 +256085,AAA Batteries (4-pack),1,2.99,2019-09-02 13:22:00,106 8th St, Dallas,TX,75001 +256086,Wired Headphones,1,11.99,2019-09-12 15:24:00,538 Madison St, New York City,NY,10001 +256087,Wired Headphones,1,11.99,2019-09-07 18:12:00,806 North St, New York City,NY,10001 +256088,Wired Headphones,1,11.99,2019-09-16 18:12:00,263 Ridge St, New York City,NY,10001 +256089,AA Batteries (4-pack),1,3.84,2019-09-10 21:22:00,211 Meadow St, New York City,NY,10001 +256090,AA Batteries (4-pack),1,3.84,2019-09-06 23:21:00,887 6th St, Atlanta,GA,30301 +256091,27in FHD Monitor,1,149.99,2019-09-23 07:55:00,323 Ridge St, Dallas,TX,75001 +256092,AA Batteries (4-pack),1,3.84,2019-09-06 12:54:00,202 6th St, Seattle,WA,98101 +256093,AAA Batteries (4-pack),2,2.99,2019-09-16 11:50:00,990 Park St, New York City,NY,10001 +256094,AA Batteries (4-pack),1,3.84,2019-09-15 15:30:00,85 North St, Portland,OR,97035 +256095,AAA Batteries (4-pack),2,2.99,2019-09-08 13:03:00,2 Meadow St, Dallas,TX,75001 +256096,27in FHD Monitor,1,149.99,2019-09-06 20:38:00,694 Church St, Los Angeles,CA,90001 +256097,USB-C Charging Cable,1,11.95,2019-09-24 18:47:00,365 Meadow St, San Francisco,CA,94016 +256098,Apple Airpods Headphones,1,150.0,2019-09-22 13:33:00,133 11th St, Los Angeles,CA,90001 +256099,Apple Airpods Headphones,1,150.0,2019-09-26 19:23:00,372 5th St, Seattle,WA,98101 +256100,Wired Headphones,1,11.99,2019-09-07 05:47:00,331 4th St, Austin,TX,73301 +256101,ThinkPad Laptop,1,999.99,2019-09-22 22:35:00,499 12th St, Atlanta,GA,30301 +256102,Macbook Pro Laptop,1,1700.0,2019-09-06 20:13:00,611 Jackson St, Atlanta,GA,30301 +256103,27in 4K Gaming Monitor,1,389.99,2019-09-02 13:16:00,824 5th St, New York City,NY,10001 +256104,Macbook Pro Laptop,1,1700.0,2019-09-07 22:54:00,685 4th St, New York City,NY,10001 +256105,iPhone,1,700.0,2019-09-26 20:16:00,516 Lincoln St, New York City,NY,10001 +256106,27in FHD Monitor,1,149.99,2019-09-23 19:50:00,124 Meadow St, Los Angeles,CA,90001 +256107,USB-C Charging Cable,1,11.95,2019-09-02 13:19:00,112 4th St, Los Angeles,CA,90001 +256108,Wired Headphones,1,11.99,2019-09-23 16:03:00,887 Walnut St, Austin,TX,73301 +256109,Macbook Pro Laptop,1,1700.0,2019-09-19 16:33:00,940 Main St, Los Angeles,CA,90001 +256110,Wired Headphones,1,11.99,2019-09-13 17:54:00,736 River St, Seattle,WA,98101 +256111,AA Batteries (4-pack),1,3.84,2019-09-02 16:51:00,677 7th St, San Francisco,CA,94016 +256112,27in 4K Gaming Monitor,1,389.99,2019-09-14 19:07:00,722 Madison St, Austin,TX,73301 +256113,AA Batteries (4-pack),1,3.84,2019-09-08 15:08:00,847 Main St, Los Angeles,CA,90001 +256114,Wired Headphones,2,11.99,2019-09-15 22:15:00,126 Hill St, San Francisco,CA,94016 +256115,Wired Headphones,1,11.99,2019-09-03 18:43:00,418 9th St, Los Angeles,CA,90001 +256116,Apple Airpods Headphones,1,150.0,2019-09-11 02:17:00,82 9th St, San Francisco,CA,94016 +256117,AA Batteries (4-pack),1,3.84,2019-09-06 08:51:00,474 10th St, Los Angeles,CA,90001 +256118,34in Ultrawide Monitor,1,379.99,2019-09-29 13:21:00,488 4th St, Austin,TX,73301 +256119,AA Batteries (4-pack),1,3.84,2019-09-18 19:01:00,720 Church St, Portland,OR,97035 +256120,USB-C Charging Cable,1,11.95,2019-09-24 18:17:00,499 10th St, San Francisco,CA,94016 +256121,20in Monitor,1,109.99,2019-09-03 22:56:00,110 West St, Seattle,WA,98101 +256122,AAA Batteries (4-pack),1,2.99,2019-09-29 09:14:00,157 Main St, Los Angeles,CA,90001 +256123,Wired Headphones,1,11.99,2019-09-19 15:09:00,324 Willow St, Atlanta,GA,30301 +256124,20in Monitor,1,109.99,2019-09-25 21:59:00,33 Lake St, Dallas,TX,75001 +256125,27in 4K Gaming Monitor,1,389.99,2019-09-19 16:16:00,77 River St, Austin,TX,73301 +256126,Lightning Charging Cable,1,14.95,2019-09-29 01:21:00,251 North St, Atlanta,GA,30301 +256127,Macbook Pro Laptop,1,1700.0,2019-09-19 16:45:00,294 Ridge St, Portland,OR,97035 +256128,Bose SoundSport Headphones,1,99.99,2019-09-08 20:44:00,833 Chestnut St, Los Angeles,CA,90001 +256129,34in Ultrawide Monitor,1,379.99,2019-09-02 07:14:00,545 Meadow St, Los Angeles,CA,90001 +256130,USB-C Charging Cable,1,11.95,2019-09-10 18:41:00,37 Walnut St, Los Angeles,CA,90001 +256131,20in Monitor,1,109.99,2019-09-23 12:09:00,676 11th St, New York City,NY,10001 +256131,Apple Airpods Headphones,1,150.0,2019-09-23 12:09:00,676 11th St, New York City,NY,10001 +256132,Lightning Charging Cable,1,14.95,2019-09-24 21:50:00,465 Highland St, Los Angeles,CA,90001 +256132,AA Batteries (4-pack),1,3.84,2019-09-24 21:50:00,465 Highland St, Los Angeles,CA,90001 +256133,Bose SoundSport Headphones,1,99.99,2019-09-29 21:49:00,518 Park St, Portland,OR,97035 +256134,Google Phone,1,600.0,2019-09-03 12:55:00,944 Pine St, Austin,TX,73301 +256135,27in FHD Monitor,1,149.99,2019-09-25 12:13:00,857 Washington St, New York City,NY,10001 +256136,Bose SoundSport Headphones,1,99.99,2019-09-16 18:45:00,28 Park St, New York City,NY,10001 +256137,Wired Headphones,1,11.99,2019-09-08 12:12:00,732 Ridge St, Austin,TX,73301 +256138,AAA Batteries (4-pack),1,2.99,2019-09-25 19:42:00,950 Dogwood St, New York City,NY,10001 +256139,27in 4K Gaming Monitor,1,389.99,2019-09-02 11:56:00,63 Highland St, Boston,MA,02215 +256140,AAA Batteries (4-pack),1,2.99,2019-09-07 19:07:00,532 Dogwood St, Los Angeles,CA,90001 +256141,AAA Batteries (4-pack),2,2.99,2019-09-11 09:43:00,946 Hickory St, Boston,MA,02215 +256142,ThinkPad Laptop,1,999.99,2019-09-30 20:09:00,432 2nd St, San Francisco,CA,94016 +256143,USB-C Charging Cable,1,11.95,2019-09-07 13:50:00,805 14th St, Seattle,WA,98101 +256144,Bose SoundSport Headphones,1,99.99,2019-09-13 17:47:00,505 1st St, Boston,MA,02215 +256145,Bose SoundSport Headphones,1,99.99,2019-09-13 10:41:00,762 Cherry St, Austin,TX,73301 +256146,34in Ultrawide Monitor,1,379.99,2019-09-16 19:48:00,351 Pine St, New York City,NY,10001 +256147,AAA Batteries (4-pack),1,2.99,2019-09-10 13:50:00,397 Maple St, San Francisco,CA,94016 +256148,27in FHD Monitor,1,149.99,2019-09-10 18:15:00,32 Willow St, San Francisco,CA,94016 +256149,Bose SoundSport Headphones,1,99.99,2019-09-09 15:11:00,819 14th St, Austin,TX,73301 +256150,USB-C Charging Cable,1,11.95,2019-09-25 15:15:00,277 1st St, Atlanta,GA,30301 +256151,USB-C Charging Cable,2,11.95,2019-09-11 22:23:00,983 Forest St, San Francisco,CA,94016 +256152,AA Batteries (4-pack),1,3.84,2019-09-06 02:58:00,149 Jefferson St, Seattle,WA,98101 +256153,34in Ultrawide Monitor,1,379.99,2019-09-26 15:54:00,850 4th St, Portland,OR,97035 +256154,Bose SoundSport Headphones,1,99.99,2019-09-14 12:56:00,353 Jefferson St, Portland,OR,97035 +256155,Wired Headphones,1,11.99,2019-09-27 16:06:00,803 Highland St, Portland,OR,97035 +256156,Lightning Charging Cable,1,14.95,2019-09-15 13:03:00,656 North St, Los Angeles,CA,90001 +256157,USB-C Charging Cable,1,11.95,2019-09-07 21:30:00,845 Chestnut St, Boston,MA,02215 +256158,AAA Batteries (4-pack),1,2.99,2019-09-25 14:05:00,187 Center St, Seattle,WA,98101 +256159,Lightning Charging Cable,1,14.95,2019-09-14 10:31:00,314 6th St, San Francisco,CA,94016 +256160,AA Batteries (4-pack),1,3.84,2019-09-28 15:32:00,795 Walnut St, Atlanta,GA,30301 +256161,AA Batteries (4-pack),1,3.84,2019-09-06 01:54:00,822 10th St, Los Angeles,CA,90001 +256162,34in Ultrawide Monitor,1,379.99,2019-09-04 10:10:00,165 Pine St, San Francisco,CA,94016 +256163,ThinkPad Laptop,1,999.99,2019-09-21 06:20:00,720 Elm St, San Francisco,CA,94016 +256164,iPhone,1,700.0,2019-09-20 14:37:00,667 Wilson St, New York City,NY,10001 +256165,AAA Batteries (4-pack),1,2.99,2019-09-06 21:19:00,996 Pine St, Los Angeles,CA,90001 +256166,USB-C Charging Cable,1,11.95,2019-09-19 21:03:00,522 Chestnut St, Seattle,WA,98101 +256167,iPhone,1,700.0,2019-09-21 15:17:00,669 Elm St, San Francisco,CA,94016 +256168,USB-C Charging Cable,1,11.95,2019-09-17 13:47:00,574 14th St, New York City,NY,10001 +256169,USB-C Charging Cable,1,11.95,2019-09-03 17:37:00,163 Lakeview St, San Francisco,CA,94016 +256170,Flatscreen TV,1,300.0,2019-09-03 19:06:00,709 6th St, San Francisco,CA,94016 +256171,iPhone,1,700.0,2019-09-18 11:46:00,410 Walnut St, Los Angeles,CA,90001 +256172,Apple Airpods Headphones,1,150.0,2019-09-18 04:24:00,642 Walnut St, San Francisco,CA,94016 +256173,ThinkPad Laptop,1,999.99,2019-09-19 19:11:00,880 Johnson St, Boston,MA,02215 +256174,Bose SoundSport Headphones,1,99.99,2019-09-06 13:53:00,528 West St, San Francisco,CA,94016 +256175,Macbook Pro Laptop,1,1700.0,2019-09-11 12:19:00,301 Jefferson St, Boston,MA,02215 +256176,34in Ultrawide Monitor,1,379.99,2019-09-20 16:01:00,789 Lakeview St, Los Angeles,CA,90001 +256177,Google Phone,1,600.0,2019-09-04 18:05:00,494 Center St, Los Angeles,CA,90001 +256177,USB-C Charging Cable,1,11.95,2019-09-04 18:05:00,494 Center St, Los Angeles,CA,90001 +256178,USB-C Charging Cable,1,11.95,2019-09-19 21:37:00,757 Pine St, Dallas,TX,75001 +256179,AAA Batteries (4-pack),1,2.99,2019-09-11 10:18:00,986 Maple St, Portland,OR,97035 +256180,Lightning Charging Cable,1,14.95,2019-09-14 22:48:00,948 2nd St, New York City,NY,10001 +256181,Bose SoundSport Headphones,1,99.99,2019-09-06 20:10:00,574 Washington St, San Francisco,CA,94016 +256182,AA Batteries (4-pack),3,3.84,2019-09-22 13:37:00,226 Madison St, New York City,NY,10001 +256183,27in 4K Gaming Monitor,1,389.99,2019-09-14 19:08:00,816 Spruce St, Los Angeles,CA,90001 +256183,Bose SoundSport Headphones,1,99.99,2019-09-14 19:08:00,816 Spruce St, Los Angeles,CA,90001 +256184,AAA Batteries (4-pack),1,2.99,2019-09-26 08:22:00,950 Lakeview St, Dallas,TX,75001 +256185,Apple Airpods Headphones,1,150.0,2019-09-19 15:35:00,182 11th St, Portland,OR,97035 +256186,Bose SoundSport Headphones,1,99.99,2019-09-27 10:32:00,568 South St, Portland,OR,97035 +256187,USB-C Charging Cable,2,11.95,2019-09-21 07:46:00,864 Lake St, Portland,OR,97035 +256188,Flatscreen TV,1,300.0,2019-09-28 19:37:00,789 7th St, Atlanta,GA,30301 +256189,Apple Airpods Headphones,1,150.0,2019-09-07 11:44:00,39 14th St, San Francisco,CA,94016 +256190,27in 4K Gaming Monitor,1,389.99,2019-09-28 09:11:00,802 11th St, New York City,NY,10001 +256191,Bose SoundSport Headphones,1,99.99,2019-09-15 18:18:00,102 7th St, San Francisco,CA,94016 +256192,AAA Batteries (4-pack),3,2.99,2019-09-27 10:34:00,75 5th St, Boston,MA,02215 +256193,Flatscreen TV,1,300.0,2019-09-04 16:58:00,461 Church St, Seattle,WA,98101 +256194,Lightning Charging Cable,2,14.95,2019-09-20 08:39:00,713 Park St, Los Angeles,CA,90001 +256195,AAA Batteries (4-pack),1,2.99,2019-09-19 09:13:00,126 Walnut St, San Francisco,CA,94016 +256196,USB-C Charging Cable,1,11.95,2019-09-27 21:09:00,253 6th St, Boston,MA,02215 +256197,USB-C Charging Cable,2,11.95,2019-09-04 04:35:00,531 Meadow St, New York City,NY,10001 +256198,27in FHD Monitor,1,149.99,2019-09-12 20:12:00,438 Wilson St, Boston,MA,02215 +256199,Google Phone,1,600.0,2019-09-16 18:38:00,464 Highland St, Boston,MA,02215 +256200,Wired Headphones,1,11.99,2019-09-04 07:33:00,538 Willow St, Austin,TX,73301 +256201,Google Phone,1,600.0,2019-09-28 19:03:00,166 10th St, Seattle,WA,98101 +256202,Lightning Charging Cable,1,14.95,2019-09-06 08:30:00,761 River St, Atlanta,GA,30301 +256203,USB-C Charging Cable,1,11.95,2019-09-06 21:08:00,426 Maple St, Boston,MA,02215 +256204,Wired Headphones,1,11.99,2019-09-13 02:56:00,999 12th St, Atlanta,GA,30301 +256205,AAA Batteries (4-pack),1,2.99,2019-09-04 10:10:00,560 Sunset St, Dallas,TX,75001 +256206,Apple Airpods Headphones,1,150.0,2019-09-18 21:14:00,76 10th St, San Francisco,CA,94016 +256207,AAA Batteries (4-pack),1,2.99,2019-09-10 09:22:00,220 Main St, Los Angeles,CA,90001 +256208,Bose SoundSport Headphones,1,99.99,2019-09-16 12:27:00,651 Lake St, Atlanta,GA,30301 +256209,AA Batteries (4-pack),1,3.84,2019-09-24 09:00:00,329 South St, San Francisco,CA,94016 +256210,Lightning Charging Cable,1,14.95,2019-09-06 20:16:00,664 Spruce St, Dallas,TX,75001 +256211,20in Monitor,1,109.99,2019-09-18 15:53:00,45 12th St, Seattle,WA,98101 +256212,Apple Airpods Headphones,1,150.0,2019-09-16 21:44:00,941 Center St, New York City,NY,10001 +256213,Apple Airpods Headphones,1,150.0,2019-09-08 00:35:00,475 Sunset St, Portland,OR,97035 +256214,34in Ultrawide Monitor,1,379.99,2019-09-26 10:52:00,734 9th St, New York City,NY,10001 +256215,AAA Batteries (4-pack),3,2.99,2019-09-24 14:34:00,128 Lake St, New York City,NY,10001 +256216,AA Batteries (4-pack),2,3.84,2019-09-05 14:49:00,437 5th St, San Francisco,CA,94016 +256217,AAA Batteries (4-pack),1,2.99,2019-09-12 22:26:00,676 Cherry St, San Francisco,CA,94016 +256218,Apple Airpods Headphones,1,150.0,2019-09-02 17:26:00,851 7th St, San Francisco,CA,94016 +256219,AA Batteries (4-pack),1,3.84,2019-09-22 13:19:00,548 11th St, Portland,OR,97035 +256220,Bose SoundSport Headphones,1,99.99,2019-09-24 21:42:00,328 Sunset St, San Francisco,CA,94016 +256221,Lightning Charging Cable,1,14.95,2019-09-02 16:19:00,148 Dogwood St, San Francisco,CA,94016 +256222,Lightning Charging Cable,1,14.95,2019-09-21 21:14:00,738 10th St, San Francisco,CA,94016 +256223,Apple Airpods Headphones,1,150.0,2019-09-24 17:55:00,730 Jackson St, San Francisco,CA,94016 +256224,AAA Batteries (4-pack),2,2.99,2019-09-17 15:09:00,260 South St, New York City,NY,10001 +256225,Bose SoundSport Headphones,1,99.99,2019-09-20 21:58:00,196 2nd St, San Francisco,CA,94016 +256226,Wired Headphones,1,11.99,2019-09-20 21:45:00,503 Park St, Los Angeles,CA,90001 +256227,AA Batteries (4-pack),1,3.84,2019-09-04 08:11:00,115 Jefferson St, Austin,TX,73301 +256228,27in FHD Monitor,1,149.99,2019-09-04 14:27:00,75 West St, Austin,TX,73301 +256229,AA Batteries (4-pack),1,3.84,2019-09-26 15:41:00,648 Lake St, Austin,TX,73301 +256230,AAA Batteries (4-pack),3,2.99,2019-09-07 15:02:00,745 Ridge St, Austin,TX,73301 +256231,AA Batteries (4-pack),2,3.84,2019-09-22 18:49:00,427 10th St, San Francisco,CA,94016 +256232,AAA Batteries (4-pack),1,2.99,2019-09-13 10:14:00,72 Lakeview St, Boston,MA,02215 +256233,Apple Airpods Headphones,1,150.0,2019-09-28 12:35:00,32 River St, Los Angeles,CA,90001 +256234,AAA Batteries (4-pack),1,2.99,2019-09-10 17:42:00,461 Meadow St, Boston,MA,02215 +256235,27in FHD Monitor,1,149.99,2019-09-15 11:18:00,294 Adams St, Los Angeles,CA,90001 +256236,Flatscreen TV,1,300.0,2019-09-21 19:13:00,342 Sunset St, Los Angeles,CA,90001 +256237,AA Batteries (4-pack),2,3.84,2019-09-07 17:54:00,360 Pine St, Los Angeles,CA,90001 +256238,ThinkPad Laptop,1,999.99,2019-09-06 10:51:00,687 4th St, Austin,TX,73301 +256239,Wired Headphones,1,11.99,2019-09-13 01:46:00,88 Ridge St, Dallas,TX,75001 +256240,34in Ultrawide Monitor,1,379.99,2019-09-09 01:15:00,424 12th St, Portland,OR,97035 +256241,Macbook Pro Laptop,1,1700.0,2019-09-13 15:09:00,817 Lincoln St, San Francisco,CA,94016 +256242,27in 4K Gaming Monitor,1,389.99,2019-09-03 15:17:00,928 Highland St, San Francisco,CA,94016 +256243,AA Batteries (4-pack),1,3.84,2019-09-08 07:45:00,51 8th St, Portland,OR,97035 +256244,AA Batteries (4-pack),1,3.84,2019-09-10 19:02:00,729 Chestnut St, Boston,MA,02215 +256245,USB-C Charging Cable,1,11.95,2019-09-10 12:57:00,743 8th St, Portland,ME,04101 +256246,USB-C Charging Cable,1,11.95,2019-09-08 20:13:00,580 South St, Seattle,WA,98101 +256246,Bose SoundSport Headphones,1,99.99,2019-09-08 20:13:00,580 South St, Seattle,WA,98101 +256247,AAA Batteries (4-pack),4,2.99,2019-09-01 13:01:00,74 South St, New York City,NY,10001 +256248,27in FHD Monitor,1,149.99,2019-09-30 19:20:00,361 Wilson St, Atlanta,GA,30301 +256249,Lightning Charging Cable,1,14.95,2019-09-13 16:59:00,651 Walnut St, San Francisco,CA,94016 +256250,Flatscreen TV,1,300.0,2019-09-05 17:23:00,499 Lakeview St, New York City,NY,10001 +256251,27in FHD Monitor,1,149.99,2019-09-28 10:35:00,695 Jefferson St, New York City,NY,10001 +256252,Flatscreen TV,1,300.0,2019-09-23 18:59:00,340 Pine St, Boston,MA,02215 +256253,Google Phone,1,600.0,2019-09-27 15:11:00,296 2nd St, New York City,NY,10001 +256254,USB-C Charging Cable,1,11.95,2019-09-12 11:46:00,595 2nd St, Austin,TX,73301 +256255,27in FHD Monitor,1,149.99,2019-09-08 19:16:00,791 Maple St, Atlanta,GA,30301 +256256,AAA Batteries (4-pack),1,2.99,2019-09-10 22:51:00,461 Elm St, Los Angeles,CA,90001 +256257,Lightning Charging Cable,1,14.95,2019-09-27 22:38:00,927 Maple St, San Francisco,CA,94016 +256258,USB-C Charging Cable,1,11.95,2019-09-17 21:13:00,24 9th St, Boston,MA,02215 +256259,Lightning Charging Cable,1,14.95,2019-09-13 18:33:00,253 Spruce St, San Francisco,CA,94016 +256260,Apple Airpods Headphones,1,150.0,2019-09-05 16:38:00,670 6th St, Seattle,WA,98101 +256261,27in FHD Monitor,1,149.99,2019-09-13 17:24:00,800 Madison St, New York City,NY,10001 +256262,AA Batteries (4-pack),1,3.84,2019-09-27 20:41:00,294 Washington St, Los Angeles,CA,90001 +256263,iPhone,1,700.0,2019-09-11 00:41:00,70 Hickory St, Seattle,WA,98101 +256264,Wired Headphones,1,11.99,2019-09-26 00:13:00,534 Adams St, Boston,MA,02215 +256265,USB-C Charging Cable,1,11.95,2019-09-05 21:20:00,87 Jackson St, San Francisco,CA,94016 +256266,Flatscreen TV,1,300.0,2019-09-23 11:40:00,81 Walnut St, San Francisco,CA,94016 +256267,Flatscreen TV,1,300.0,2019-09-30 19:36:00,843 Cherry St, Atlanta,GA,30301 +256268,AA Batteries (4-pack),2,3.84,2019-09-14 21:31:00,533 Lakeview St, Dallas,TX,75001 +256269,Bose SoundSport Headphones,1,99.99,2019-09-14 13:06:00,24 8th St, Atlanta,GA,30301 +256270,AAA Batteries (4-pack),3,2.99,2019-09-27 21:34:00,449 North St, San Francisco,CA,94016 +256271,20in Monitor,1,109.99,2019-09-24 10:49:00,521 Cedar St, Seattle,WA,98101 +256272,AA Batteries (4-pack),1,3.84,2019-09-20 15:00:00,650 Jefferson St, Dallas,TX,75001 +256273,AAA Batteries (4-pack),4,2.99,2019-09-06 17:38:00,429 9th St, Atlanta,GA,30301 +256274,Wired Headphones,1,11.99,2019-09-21 07:47:00,66 13th St, Boston,MA,02215 +256275,Lightning Charging Cable,1,14.95,2019-09-17 12:39:00,490 Lakeview St, Seattle,WA,98101 +256276,27in FHD Monitor,1,149.99,2019-09-08 10:48:00,117 Ridge St, Seattle,WA,98101 +256277,27in FHD Monitor,1,149.99,2019-09-28 19:41:00,342 Adams St, New York City,NY,10001 +256278,Google Phone,1,600.0,2019-09-09 23:12:00,134 12th St, Seattle,WA,98101 +256279,AAA Batteries (4-pack),1,2.99,2019-09-25 16:04:00,431 North St, Los Angeles,CA,90001 +256280,AAA Batteries (4-pack),1,2.99,2019-09-07 20:47:00,436 14th St, Los Angeles,CA,90001 +256281,USB-C Charging Cable,1,11.95,2019-09-03 13:14:00,74 Dogwood St, Los Angeles,CA,90001 +256282,AA Batteries (4-pack),1,3.84,2019-09-21 21:56:00,567 Pine St, San Francisco,CA,94016 +256283,34in Ultrawide Monitor,1,379.99,2019-09-03 00:21:00,694 Park St, Boston,MA,02215 +256284,USB-C Charging Cable,1,11.95,2019-09-02 11:52:00,405 Lincoln St, New York City,NY,10001 +256285,ThinkPad Laptop,1,999.99,2019-09-30 21:37:00,197 Sunset St, Los Angeles,CA,90001 +256286,AAA Batteries (4-pack),1,2.99,2019-09-26 23:25:00,125 Hickory St, Seattle,WA,98101 +256287,Bose SoundSport Headphones,1,99.99,2019-09-27 12:00:00,780 Park St, San Francisco,CA,94016 +256288,AAA Batteries (4-pack),1,2.99,2019-09-29 12:58:00,489 West St, Austin,TX,73301 +256289,AAA Batteries (4-pack),2,2.99,2019-09-14 07:53:00,167 Highland St, Los Angeles,CA,90001 +256290,Lightning Charging Cable,1,14.95,2019-09-26 14:51:00,854 Elm St, San Francisco,CA,94016 +256291,USB-C Charging Cable,1,11.95,2019-09-11 20:10:00,205 Meadow St, San Francisco,CA,94016 +256292,27in FHD Monitor,1,149.99,2019-09-22 15:18:00,544 6th St, San Francisco,CA,94016 +256293,Apple Airpods Headphones,1,150.0,2019-09-22 12:50:00,648 Park St, Los Angeles,CA,90001 +256294,iPhone,1,700.0,2019-09-23 13:41:00,284 Center St, San Francisco,CA,94016 +256295,Apple Airpods Headphones,1,150.0,2019-09-28 16:59:00,328 Johnson St, San Francisco,CA,94016 +256296,USB-C Charging Cable,1,11.95,2019-09-16 16:12:00,43 Forest St, San Francisco,CA,94016 +256297,Bose SoundSport Headphones,1,99.99,2019-09-06 11:51:00,763 Wilson St, Atlanta,GA,30301 +256298,27in 4K Gaming Monitor,1,389.99,2019-09-24 10:25:00,937 Hill St, New York City,NY,10001 +256299,USB-C Charging Cable,1,11.95,2019-09-15 14:23:00,550 Ridge St, Portland,OR,97035 +256300,USB-C Charging Cable,1,11.95,2019-09-22 09:52:00,587 13th St, San Francisco,CA,94016 +256301,Apple Airpods Headphones,1,150.0,2019-09-12 19:48:00,148 5th St, San Francisco,CA,94016 +256302,USB-C Charging Cable,1,11.95,2019-09-02 19:17:00,626 1st St, New York City,NY,10001 +256303,AA Batteries (4-pack),3,3.84,2019-09-04 11:46:00,977 Willow St, San Francisco,CA,94016 +256304,iPhone,1,700.0,2019-09-06 10:26:00,681 4th St, Los Angeles,CA,90001 +256305,AA Batteries (4-pack),3,3.84,2019-09-02 11:25:00,998 Walnut St, Los Angeles,CA,90001 +256306,AA Batteries (4-pack),2,3.84,2019-09-12 17:02:00,379 Chestnut St, Boston,MA,02215 +256307,Macbook Pro Laptop,1,1700.0,2019-09-12 15:36:00,453 7th St, Austin,TX,73301 +256308,AA Batteries (4-pack),4,3.84,2019-09-13 17:01:00,963 11th St, Seattle,WA,98101 +256309,Apple Airpods Headphones,1,150.0,2019-09-13 11:08:00,399 Park St, San Francisco,CA,94016 +256310,USB-C Charging Cable,1,11.95,2019-09-27 21:33:00,557 Jackson St, Austin,TX,73301 +256311,USB-C Charging Cable,1,11.95,2019-09-08 12:25:00,466 14th St, Atlanta,GA,30301 +256312,AAA Batteries (4-pack),2,2.99,2019-09-12 18:37:00,331 Willow St, San Francisco,CA,94016 +256313,Bose SoundSport Headphones,1,99.99,2019-09-20 20:57:00,66 Lake St, Portland,OR,97035 +256314,AA Batteries (4-pack),1,3.84,2019-09-28 22:25:00,76 Walnut St, Los Angeles,CA,90001 +256315,AA Batteries (4-pack),1,3.84,2019-09-12 23:14:00,348 Washington St, Austin,TX,73301 +256316,AAA Batteries (4-pack),1,2.99,2019-09-09 08:46:00,305 Lincoln St, Boston,MA,02215 +256317,AA Batteries (4-pack),2,3.84,2019-09-28 01:16:00,324 14th St, Portland,OR,97035 +256318,27in FHD Monitor,1,149.99,2019-09-14 09:56:00,385 West St, New York City,NY,10001 +256319,AAA Batteries (4-pack),1,2.99,2019-09-11 10:31:00,909 Spruce St, Portland,OR,97035 +256320,AA Batteries (4-pack),1,3.84,2019-09-22 16:08:00,365 River St, Seattle,WA,98101 +256321,AA Batteries (4-pack),2,3.84,2019-09-10 20:42:00,614 Madison St, New York City,NY,10001 +256322,Wired Headphones,1,11.99,2019-09-21 17:35:00,917 11th St, New York City,NY,10001 +256323,AA Batteries (4-pack),1,3.84,2019-09-09 08:24:00,71 Madison St, Boston,MA,02215 +256324,AAA Batteries (4-pack),1,2.99,2019-09-28 20:15:00,639 Walnut St, Seattle,WA,98101 +256325,AAA Batteries (4-pack),3,2.99,2019-09-26 16:07:00,791 Highland St, Portland,ME,04101 +256326,Wired Headphones,1,11.99,2019-09-14 22:59:00,38 13th St, San Francisco,CA,94016 +256327,Google Phone,1,600.0,2019-09-18 23:47:00,983 5th St, Austin,TX,73301 +256328,Wired Headphones,2,11.99,2019-09-23 11:27:00,760 Hickory St, New York City,NY,10001 +256329,Lightning Charging Cable,1,14.95,2019-09-22 20:51:00,42 Meadow St, Los Angeles,CA,90001 +256330,27in 4K Gaming Monitor,1,389.99,2019-09-29 19:09:00,613 Johnson St, San Francisco,CA,94016 +256331,27in FHD Monitor,1,149.99,2019-09-16 20:43:00,763 Chestnut St, Boston,MA,02215 +256332,Bose SoundSport Headphones,1,99.99,2019-09-26 13:28:00,957 Center St, San Francisco,CA,94016 +256333,AA Batteries (4-pack),1,3.84,2019-09-01 16:04:00,917 West St, Seattle,WA,98101 +256334,Apple Airpods Headphones,1,150.0,2019-09-13 20:18:00,882 14th St, San Francisco,CA,94016 +256335,ThinkPad Laptop,1,999.99,2019-09-30 17:04:00,256 11th St, Portland,OR,97035 +256336,34in Ultrawide Monitor,1,379.99,2019-09-10 00:15:00,574 Walnut St, Atlanta,GA,30301 +256337,Flatscreen TV,1,300.0,2019-09-29 16:21:00,302 Chestnut St, Seattle,WA,98101 +256338,Apple Airpods Headphones,1,150.0,2019-09-10 14:08:00,946 5th St, New York City,NY,10001 +256339,Lightning Charging Cable,1,14.95,2019-09-11 19:15:00,723 Lake St, Los Angeles,CA,90001 +256340,Bose SoundSport Headphones,1,99.99,2019-09-06 09:15:00,998 Church St, San Francisco,CA,94016 +256341,AA Batteries (4-pack),1,3.84,2019-09-26 13:38:00,17 13th St, Atlanta,GA,30301 +256342,20in Monitor,1,109.99,2019-09-29 23:36:00,845 Church St, Boston,MA,02215 +256343,27in 4K Gaming Monitor,1,389.99,2019-09-10 00:04:00,883 Lakeview St, Los Angeles,CA,90001 +256344,AA Batteries (4-pack),1,3.84,2019-09-23 14:52:00,473 Hill St, Boston,MA,02215 +256345,AAA Batteries (4-pack),2,2.99,2019-09-18 22:28:00,408 Highland St, New York City,NY,10001 +256346,Vareebadd Phone,1,400.0,2019-09-13 09:52:00,108 Church St, Boston,MA,02215 +256347,34in Ultrawide Monitor,1,379.99,2019-09-20 21:31:00,40 Jefferson St, Atlanta,GA,30301 +256348,Apple Airpods Headphones,1,150.0,2019-09-25 18:08:00,340 Jackson St, Seattle,WA,98101 +256349,AAA Batteries (4-pack),1,2.99,2019-09-27 15:32:00,24 Park St, Los Angeles,CA,90001 +256350,ThinkPad Laptop,1,999.99,2019-09-05 21:35:00,131 1st St, Dallas,TX,75001 +256351,Apple Airpods Headphones,1,150.0,2019-09-09 16:08:00,168 West St, Los Angeles,CA,90001 +256352,Lightning Charging Cable,1,14.95,2019-09-27 10:22:00,481 Adams St, Atlanta,GA,30301 +256353,AA Batteries (4-pack),1,3.84,2019-09-30 21:38:00,973 Forest St, Seattle,WA,98101 +256354,AA Batteries (4-pack),4,3.84,2019-09-03 16:17:00,901 Jackson St, Seattle,WA,98101 +256355,iPhone,1,700.0,2019-09-11 11:48:00,985 Adams St, San Francisco,CA,94016 +256355,Lightning Charging Cable,1,14.95,2019-09-11 11:48:00,985 Adams St, San Francisco,CA,94016 +256355,Apple Airpods Headphones,1,150.0,2019-09-11 11:48:00,985 Adams St, San Francisco,CA,94016 +256356,Apple Airpods Headphones,1,150.0,2019-09-30 06:02:00,414 7th St, Los Angeles,CA,90001 +256357,Bose SoundSport Headphones,1,99.99,2019-09-24 22:48:00,85 North St, Los Angeles,CA,90001 +256358,Lightning Charging Cable,1,14.95,2019-09-11 14:50:00,725 Madison St, Los Angeles,CA,90001 +256359,Apple Airpods Headphones,1,150.0,2019-09-19 15:34:00,899 Jefferson St, Seattle,WA,98101 +256360,Wired Headphones,1,11.99,2019-09-18 21:22:00,340 Forest St, Dallas,TX,75001 +256361,Lightning Charging Cable,1,14.95,2019-09-28 23:09:00,338 Cedar St, Atlanta,GA,30301 +256362,34in Ultrawide Monitor,1,379.99,2019-09-01 23:34:00,11 Walnut St, Atlanta,GA,30301 +256363,Apple Airpods Headphones,1,150.0,2019-09-06 18:07:00,942 Park St, San Francisco,CA,94016 +256364,AA Batteries (4-pack),4,3.84,2019-09-02 21:59:00,890 4th St, Boston,MA,02215 +256365,27in FHD Monitor,1,149.99,2019-09-20 12:39:00,923 Hill St, New York City,NY,10001 +256366,Macbook Pro Laptop,1,1700.0,2019-09-01 13:35:00,983 River St, Atlanta,GA,30301 +256367,AA Batteries (4-pack),1,3.84,2019-09-23 22:10:00,826 12th St, Dallas,TX,75001 +256368,Bose SoundSport Headphones,1,99.99,2019-09-17 15:24:00,583 Hill St, San Francisco,CA,94016 +256369,LG Washing Machine,1,600.0,2019-09-12 15:25:00,811 Johnson St, San Francisco,CA,94016 +256370,27in 4K Gaming Monitor,1,389.99,2019-09-01 17:41:00,454 Elm St, Los Angeles,CA,90001 +256371,Lightning Charging Cable,1,14.95,2019-09-18 12:13:00,9 Elm St, Boston,MA,02215 +256372,Wired Headphones,2,11.99,2019-09-02 10:25:00,102 Cherry St, Boston,MA,02215 +256373,ThinkPad Laptop,1,999.99,2019-09-25 09:03:00,307 Walnut St, Los Angeles,CA,90001 +256374,Apple Airpods Headphones,1,150.0,2019-09-13 02:44:00,156 Meadow St, San Francisco,CA,94016 +256375,Lightning Charging Cable,1,14.95,2019-09-08 18:56:00,181 4th St, Boston,MA,02215 +256376,27in FHD Monitor,1,149.99,2019-09-16 10:46:00,231 5th St, Los Angeles,CA,90001 +256377,Lightning Charging Cable,1,14.95,2019-09-26 15:44:00,946 Hill St, Los Angeles,CA,90001 +256378,Apple Airpods Headphones,1,150.0,2019-09-07 12:34:00,775 Wilson St, Seattle,WA,98101 +256379,Apple Airpods Headphones,1,150.0,2019-09-27 14:57:00,718 Forest St, Dallas,TX,75001 +256380,Google Phone,1,600.0,2019-09-07 10:24:00,741 West St, San Francisco,CA,94016 +256380,USB-C Charging Cable,1,11.95,2019-09-07 10:24:00,741 West St, San Francisco,CA,94016 +256381,USB-C Charging Cable,2,11.95,2019-09-15 14:34:00,388 Jackson St, Boston,MA,02215 +256382,Lightning Charging Cable,1,14.95,2019-09-29 23:39:00,357 13th St, Los Angeles,CA,90001 +256383,USB-C Charging Cable,1,11.95,2019-09-13 01:37:00,636 12th St, San Francisco,CA,94016 +256384,iPhone,1,700.0,2019-09-18 12:10:00,999 Meadow St, New York City,NY,10001 +256385,iPhone,1,700.0,2019-09-17 00:01:00,523 Adams St, San Francisco,CA,94016 +256386,Wired Headphones,1,11.99,2019-09-15 12:10:00,872 14th St, New York City,NY,10001 +256387,USB-C Charging Cable,1,11.95,2019-09-28 00:32:00,774 Maple St, Atlanta,GA,30301 +256388,AA Batteries (4-pack),2,3.84,2019-09-19 19:59:00,503 5th St, San Francisco,CA,94016 +256389,AAA Batteries (4-pack),4,2.99,2019-09-06 07:49:00,944 Center St, Los Angeles,CA,90001 +256390,AA Batteries (4-pack),1,3.84,2019-09-12 23:21:00,235 Park St, Boston,MA,02215 +256391,USB-C Charging Cable,1,11.95,2019-09-29 11:27:00,717 North St, San Francisco,CA,94016 +256392,Bose SoundSport Headphones,1,99.99,2019-09-20 14:19:00,741 14th St, Seattle,WA,98101 +256393,iPhone,1,700.0,2019-09-13 10:54:00,689 Maple St, New York City,NY,10001 +256394,27in 4K Gaming Monitor,1,389.99,2019-09-05 20:07:00,219 1st St, Los Angeles,CA,90001 +256395,ThinkPad Laptop,1,999.99,2019-09-04 22:56:00,403 Main St, San Francisco,CA,94016 +256396,Wired Headphones,1,11.99,2019-09-17 05:35:00,979 Center St, Los Angeles,CA,90001 +256397,AAA Batteries (4-pack),2,2.99,2019-09-13 21:00:00,614 6th St, New York City,NY,10001 +256398,Apple Airpods Headphones,1,150.0,2019-09-08 17:16:00,925 6th St, Boston,MA,02215 +256399,Lightning Charging Cable,1,14.95,2019-09-14 14:50:00,605 Meadow St, San Francisco,CA,94016 +256400,AAA Batteries (4-pack),2,2.99,2019-09-15 17:03:00,124 13th St, Los Angeles,CA,90001 +256401,Macbook Pro Laptop,1,1700.0,2019-09-18 16:30:00,650 Ridge St, San Francisco,CA,94016 +256402,Flatscreen TV,1,300.0,2019-09-21 06:08:00,888 Wilson St, Seattle,WA,98101 +256403,27in FHD Monitor,1,149.99,2019-09-03 02:24:00,104 Maple St, Boston,MA,02215 +256404,Apple Airpods Headphones,1,150.0,2019-09-01 11:56:00,516 Jackson St, Atlanta,GA,30301 +256405,Apple Airpods Headphones,1,150.0,2019-09-25 18:16:00,490 Hill St, San Francisco,CA,94016 +256406,AAA Batteries (4-pack),1,2.99,2019-09-09 13:28:00,848 South St, New York City,NY,10001 +256407,iPhone,1,700.0,2019-09-15 14:14:00,265 Wilson St, San Francisco,CA,94016 +256408,AA Batteries (4-pack),1,3.84,2019-09-25 18:03:00,315 Hill St, New York City,NY,10001 +256409,USB-C Charging Cable,1,11.95,2019-09-09 19:13:00,514 12th St, Boston,MA,02215 +256410,LG Dryer,1,600.0,2019-09-11 21:52:00,511 Madison St, Los Angeles,CA,90001 +256411,AAA Batteries (4-pack),2,2.99,2019-09-21 19:11:00,828 River St, Seattle,WA,98101 +256412,Lightning Charging Cable,1,14.95,2019-09-12 12:46:00,206 Wilson St, Portland,OR,97035 +256413,Macbook Pro Laptop,1,1700.0,2019-09-09 20:32:00,187 Church St, Dallas,TX,75001 +256414,AA Batteries (4-pack),1,3.84,2019-09-13 08:40:00,635 Cherry St, Boston,MA,02215 +256415,AA Batteries (4-pack),2,3.84,2019-09-15 14:38:00,33 Walnut St, Los Angeles,CA,90001 +256416,USB-C Charging Cable,1,11.95,2019-09-16 08:47:00,508 Park St, San Francisco,CA,94016 +256417,Apple Airpods Headphones,1,150.0,2019-09-19 07:53:00,180 Church St, Seattle,WA,98101 +256418,USB-C Charging Cable,1,11.95,2019-09-02 19:07:00,993 Wilson St, Boston,MA,02215 +256419,AA Batteries (4-pack),1,3.84,2019-09-13 07:00:00,106 9th St, Los Angeles,CA,90001 +256420,Lightning Charging Cable,1,14.95,2019-09-20 10:33:00,932 North St, San Francisco,CA,94016 +256421,Macbook Pro Laptop,1,1700.0,2019-09-04 15:19:00,200 5th St, Los Angeles,CA,90001 +256422,USB-C Charging Cable,1,11.95,2019-09-17 17:08:00,933 Dogwood St, Seattle,WA,98101 +256423,AA Batteries (4-pack),1,3.84,2019-09-30 16:21:00,265 Jackson St, Los Angeles,CA,90001 +256424,Vareebadd Phone,1,400.0,2019-09-14 11:38:00,765 South St, San Francisco,CA,94016 +256425,Apple Airpods Headphones,1,150.0,2019-09-08 21:33:00,891 14th St, New York City,NY,10001 +256426,Google Phone,1,600.0,2019-09-30 21:02:00,19 4th St, Boston,MA,02215 +256427,Lightning Charging Cable,1,14.95,2019-09-14 14:07:00,109 Sunset St, San Francisco,CA,94016 +256428,34in Ultrawide Monitor,1,379.99,2019-09-01 19:43:00,145 7th St, Los Angeles,CA,90001 +256429,Vareebadd Phone,1,400.0,2019-09-19 09:35:00,980 Dogwood St, Dallas,TX,75001 +256430,Wired Headphones,1,11.99,2019-09-10 00:49:00,406 14th St, Austin,TX,73301 +256431,Wired Headphones,1,11.99,2019-09-19 13:46:00,443 Jefferson St, Seattle,WA,98101 +256432,AA Batteries (4-pack),1,3.84,2019-09-09 10:23:00,167 9th St, Boston,MA,02215 +256433,Macbook Pro Laptop,1,1700.0,2019-09-19 10:55:00,586 12th St, Los Angeles,CA,90001 +256434,Bose SoundSport Headphones,1,99.99,2019-09-27 18:45:00,222 Center St, Los Angeles,CA,90001 +256435,Lightning Charging Cable,1,14.95,2019-09-06 09:12:00,267 6th St, New York City,NY,10001 +256436,Apple Airpods Headphones,1,150.0,2019-09-16 10:51:00,658 Wilson St, Los Angeles,CA,90001 +256437,Lightning Charging Cable,1,14.95,2019-09-02 12:44:00,348 Ridge St, New York City,NY,10001 +256438,USB-C Charging Cable,1,11.95,2019-09-23 10:17:00,123 Jackson St, Atlanta,GA,30301 +256439,Wired Headphones,1,11.99,2019-09-26 09:18:00,331 Lake St, Boston,MA,02215 +256440,Bose SoundSport Headphones,1,99.99,2019-09-07 10:20:00,914 9th St, Boston,MA,02215 +256441,Bose SoundSport Headphones,1,99.99,2019-09-14 20:25:00,637 Adams St, Los Angeles,CA,90001 +256442,USB-C Charging Cable,1,11.95,2019-09-27 21:24:00,278 Lake St, Los Angeles,CA,90001 +256443,AAA Batteries (4-pack),1,2.99,2019-09-11 22:20:00,658 Cedar St, New York City,NY,10001 +256444,27in 4K Gaming Monitor,1,389.99,2019-09-24 00:30:00,76 Jefferson St, Atlanta,GA,30301 +256445,Wired Headphones,1,11.99,2019-09-06 16:40:00,587 Maple St, New York City,NY,10001 +256446,27in 4K Gaming Monitor,1,389.99,2019-09-14 10:22:00,682 Adams St, Portland,OR,97035 +256447,34in Ultrawide Monitor,1,379.99,2019-09-04 10:55:00,90 River St, Los Angeles,CA,90001 +256448,Bose SoundSport Headphones,1,99.99,2019-09-09 11:09:00,694 Park St, New York City,NY,10001 +256449,LG Dryer,1,600.0,2019-09-12 11:21:00,732 9th St, Los Angeles,CA,90001 +256450,USB-C Charging Cable,2,11.95,2019-09-05 17:35:00,466 Sunset St, New York City,NY,10001 +256451,USB-C Charging Cable,1,11.95,2019-09-01 20:44:00,586 Lakeview St, San Francisco,CA,94016 +256452,Lightning Charging Cable,1,14.95,2019-09-09 20:21:00,497 6th St, Boston,MA,02215 +256453,34in Ultrawide Monitor,1,379.99,2019-09-29 19:31:00,551 Chestnut St, Seattle,WA,98101 +256453,USB-C Charging Cable,1,11.95,2019-09-29 19:31:00,551 Chestnut St, Seattle,WA,98101 +256454,Apple Airpods Headphones,1,150.0,2019-09-30 07:50:00,696 Chestnut St, New York City,NY,10001 +256455,34in Ultrawide Monitor,1,379.99,2019-09-30 14:05:00,874 Walnut St, Los Angeles,CA,90001 +256456,Google Phone,1,600.0,2019-09-03 10:56:00,194 10th St, San Francisco,CA,94016 +256457,Wired Headphones,1,11.99,2019-09-19 07:40:00,855 River St, New York City,NY,10001 +256458,Lightning Charging Cable,1,14.95,2019-09-19 06:20:00,927 14th St, New York City,NY,10001 +256459,Wired Headphones,1,11.99,2019-09-23 20:14:00,675 Cherry St, San Francisco,CA,94016 +256460,AAA Batteries (4-pack),1,2.99,2019-09-20 00:29:00,983 10th St, San Francisco,CA,94016 +256461,Macbook Pro Laptop,1,1700.0,2019-09-17 17:50:00,470 Madison St, New York City,NY,10001 +256462,34in Ultrawide Monitor,1,379.99,2019-09-09 19:44:00,308 7th St, New York City,NY,10001 +256463,Bose SoundSport Headphones,1,99.99,2019-09-11 00:34:00,521 Jackson St, Boston,MA,02215 +256464,AAA Batteries (4-pack),2,2.99,2019-09-14 18:40:00,176 Walnut St, San Francisco,CA,94016 +256465,Wired Headphones,1,11.99,2019-09-20 23:53:00,864 West St, San Francisco,CA,94016 +256466,Lightning Charging Cable,1,14.95,2019-09-05 09:09:00,686 Meadow St, Boston,MA,02215 +256467,Lightning Charging Cable,1,14.95,2019-09-06 21:09:00,412 Washington St, Portland,OR,97035 +256468,AAA Batteries (4-pack),1,2.99,2019-09-08 12:54:00,90 Jefferson St, Los Angeles,CA,90001 +256469,Wired Headphones,1,11.99,2019-09-19 13:14:00,423 Wilson St, Atlanta,GA,30301 +256470,Wired Headphones,1,11.99,2019-09-27 18:03:00,103 Lincoln St, San Francisco,CA,94016 +256471,AAA Batteries (4-pack),1,2.99,2019-09-24 07:36:00,357 Meadow St, Dallas,TX,75001 +256472,AA Batteries (4-pack),2,3.84,2019-09-18 12:21:00,725 14th St, Dallas,TX,75001 +256473,AAA Batteries (4-pack),2,2.99,2019-09-02 14:20:00,555 14th St, Portland,OR,97035 +256474,Macbook Pro Laptop,1,1700.0,2019-09-13 13:17:00,811 Sunset St, San Francisco,CA,94016 +256475,Bose SoundSport Headphones,1,99.99,2019-09-10 15:24:00,256 Church St, Los Angeles,CA,90001 +256476,Google Phone,1,600.0,2019-09-16 11:04:00,635 Washington St, New York City,NY,10001 +256477,AA Batteries (4-pack),1,3.84,2019-09-23 16:34:00,619 Spruce St, Atlanta,GA,30301 +256478,27in 4K Gaming Monitor,1,389.99,2019-09-26 09:00:00,192 Madison St, Los Angeles,CA,90001 +256479,27in FHD Monitor,1,149.99,2019-09-01 15:39:00,902 Madison St, San Francisco,CA,94016 +256480,Apple Airpods Headphones,1,150.0,2019-09-16 17:46:00,41 Washington St, New York City,NY,10001 +256481,Bose SoundSport Headphones,1,99.99,2019-09-08 08:28:00,350 North St, Dallas,TX,75001 +256482,Bose SoundSport Headphones,1,99.99,2019-09-04 11:08:00,37 Elm St, San Francisco,CA,94016 +256483,iPhone,1,700.0,2019-09-15 19:17:00,735 Ridge St, Dallas,TX,75001 +256484,Apple Airpods Headphones,1,150.0,2019-09-04 00:39:00,305 7th St, Seattle,WA,98101 +256485,Lightning Charging Cable,1,14.95,2019-09-10 14:33:00,606 South St, Boston,MA,02215 +256486,USB-C Charging Cable,2,11.95,2019-09-19 20:07:00,417 Ridge St, Seattle,WA,98101 +256487,Lightning Charging Cable,1,14.95,2019-09-28 01:26:00,534 Forest St, Atlanta,GA,30301 +256488,Apple Airpods Headphones,1,150.0,2019-09-26 14:34:00,665 2nd St, Atlanta,GA,30301 +256489,AA Batteries (4-pack),1,3.84,2019-09-22 20:00:00,660 Hickory St, Boston,MA,02215 +256490,Apple Airpods Headphones,1,150.0,2019-09-17 13:52:00,522 Forest St, Los Angeles,CA,90001 +256491,USB-C Charging Cable,1,11.95,2019-09-07 12:04:00,849 West St, San Francisco,CA,94016 +256492,Lightning Charging Cable,1,14.95,2019-09-15 22:24:00,401 Walnut St, Los Angeles,CA,90001 +256493,AA Batteries (4-pack),1,3.84,2019-09-30 14:23:00,978 7th St, Austin,TX,73301 +256494,27in FHD Monitor,1,149.99,2019-09-10 13:16:00,282 Washington St, Dallas,TX,75001 +256495,USB-C Charging Cable,1,11.95,2019-09-24 23:28:00,244 Madison St, San Francisco,CA,94016 +256496,AA Batteries (4-pack),2,3.84,2019-09-20 12:08:00,571 North St, San Francisco,CA,94016 +256497,USB-C Charging Cable,1,11.95,2019-09-07 11:47:00,842 Lakeview St, Boston,MA,02215 +256498,AAA Batteries (4-pack),1,2.99,2019-09-24 22:06:00,18 7th St, Seattle,WA,98101 +256499,27in 4K Gaming Monitor,1,389.99,2019-09-28 07:28:00,760 Jackson St, Portland,OR,97035 +256500,AAA Batteries (4-pack),1,2.99,2019-09-11 13:08:00,290 7th St, Atlanta,GA,30301 +256501,Google Phone,1,600.0,2019-09-16 10:55:00,992 Madison St, New York City,NY,10001 +256501,Wired Headphones,1,11.99,2019-09-16 10:55:00,992 Madison St, New York City,NY,10001 +256502,Bose SoundSport Headphones,1,99.99,2019-09-12 17:05:00,199 Jefferson St, Portland,OR,97035 +256503,Macbook Pro Laptop,1,1700.0,2019-09-19 00:59:00,444 6th St, San Francisco,CA,94016 +256504,20in Monitor,1,109.99,2019-09-03 21:44:00,192 6th St, Portland,OR,97035 +256505,USB-C Charging Cable,1,11.95,2019-09-28 17:54:00,221 Cherry St, San Francisco,CA,94016 +256506,USB-C Charging Cable,1,11.95,2019-09-30 12:39:00,691 West St, Los Angeles,CA,90001 +256507,iPhone,1,700.0,2019-09-18 11:47:00,484 11th St, San Francisco,CA,94016 +256508,34in Ultrawide Monitor,1,379.99,2019-09-24 16:16:00,165 Chestnut St, Atlanta,GA,30301 +256509,AAA Batteries (4-pack),2,2.99,2019-09-14 09:30:00,855 4th St, San Francisco,CA,94016 +256510,Apple Airpods Headphones,1,150.0,2019-09-01 17:41:00,840 Elm St, Dallas,TX,75001 +256511,Wired Headphones,1,11.99,2019-09-14 07:38:00,518 Elm St, New York City,NY,10001 +256512,Lightning Charging Cable,1,14.95,2019-09-25 13:23:00,294 6th St, Austin,TX,73301 +256513,Apple Airpods Headphones,1,150.0,2019-09-06 09:21:00,698 Adams St, San Francisco,CA,94016 +256514,27in 4K Gaming Monitor,1,389.99,2019-09-07 17:49:00,222 Ridge St, Boston,MA,02215 +256515,USB-C Charging Cable,1,11.95,2019-09-30 17:00:00,749 Adams St, New York City,NY,10001 +256516,AAA Batteries (4-pack),1,2.99,2019-09-06 14:01:00,115 Main St, New York City,NY,10001 +256517,AA Batteries (4-pack),1,3.84,2019-09-02 14:28:00,845 Lakeview St, Los Angeles,CA,90001 +256518,Lightning Charging Cable,1,14.95,2019-09-15 15:43:00,808 Elm St, San Francisco,CA,94016 +256519,AA Batteries (4-pack),1,3.84,2019-09-02 07:33:00,451 14th St, Atlanta,GA,30301 +256520,Wired Headphones,1,11.99,2019-09-03 11:54:00,499 5th St, San Francisco,CA,94016 +256521,USB-C Charging Cable,1,11.95,2019-09-01 17:33:00,29 Jefferson St, New York City,NY,10001 +256522,Apple Airpods Headphones,1,150.0,2019-09-06 12:32:00,456 Washington St, San Francisco,CA,94016 +256523,Wired Headphones,1,11.99,2019-09-10 12:22:00,935 Maple St, Boston,MA,02215 +256524,27in 4K Gaming Monitor,1,389.99,2019-09-26 16:35:00,67 Center St, Atlanta,GA,30301 +256525,AAA Batteries (4-pack),3,2.99,2019-09-17 09:30:00,365 Forest St, Austin,TX,73301 +256526,USB-C Charging Cable,1,11.95,2019-09-18 09:21:00,234 Elm St, San Francisco,CA,94016 +256527,AA Batteries (4-pack),1,3.84,2019-09-16 18:04:00,229 Washington St, San Francisco,CA,94016 +256528,ThinkPad Laptop,1,999.99,2019-09-28 18:45:00,405 14th St, New York City,NY,10001 +256529,AA Batteries (4-pack),1,3.84,2019-09-23 10:41:00,499 South St, New York City,NY,10001 +256530,AA Batteries (4-pack),1,3.84,2019-09-05 14:54:00,415 1st St, San Francisco,CA,94016 +256531,27in FHD Monitor,1,149.99,2019-09-18 09:19:00,631 Center St, San Francisco,CA,94016 +256532,Lightning Charging Cable,1,14.95,2019-09-22 16:43:00,349 Willow St, San Francisco,CA,94016 +256533,USB-C Charging Cable,1,11.95,2019-09-09 06:33:00,881 North St, Los Angeles,CA,90001 +256534,USB-C Charging Cable,1,11.95,2019-09-10 08:35:00,130 Maple St, New York City,NY,10001 +256535,AAA Batteries (4-pack),1,2.99,2019-09-24 19:52:00,144 9th St, Los Angeles,CA,90001 +256536,Wired Headphones,1,11.99,2019-09-05 21:12:00,643 Main St, San Francisco,CA,94016 +256537,Lightning Charging Cable,2,14.95,2019-09-29 17:48:00,913 Hill St, New York City,NY,10001 +256538,USB-C Charging Cable,1,11.95,2019-09-13 23:50:00,51 13th St, San Francisco,CA,94016 +256539,USB-C Charging Cable,1,11.95,2019-09-03 20:26:00,757 9th St, San Francisco,CA,94016 +256540,Apple Airpods Headphones,1,150.0,2019-09-24 18:17:00,680 Spruce St, Atlanta,GA,30301 +256541,Apple Airpods Headphones,1,150.0,2019-09-09 14:24:00,310 Lincoln St, Boston,MA,02215 +256542,AA Batteries (4-pack),1,3.84,2019-09-27 12:34:00,5 5th St, Dallas,TX,75001 +256543,Apple Airpods Headphones,1,150.0,2019-09-22 12:41:00,290 Adams St, Dallas,TX,75001 +256544,34in Ultrawide Monitor,1,379.99,2019-09-18 09:23:00,693 Jefferson St, Los Angeles,CA,90001 +256545,Bose SoundSport Headphones,1,99.99,2019-09-23 21:49:00,434 14th St, San Francisco,CA,94016 +256546,AAA Batteries (4-pack),1,2.99,2019-09-03 06:21:00,375 Main St, Los Angeles,CA,90001 +256547,AA Batteries (4-pack),2,3.84,2019-09-29 17:02:00,954 Adams St, New York City,NY,10001 +256548,Wired Headphones,2,11.99,2019-09-30 20:55:00,648 Elm St, Austin,TX,73301 +256549,Vareebadd Phone,1,400.0,2019-09-23 08:42:00,555 10th St, Austin,TX,73301 +256550,AAA Batteries (4-pack),1,2.99,2019-09-17 05:45:00,332 Forest St, New York City,NY,10001 +256551,AA Batteries (4-pack),1,3.84,2019-09-17 02:07:00,595 Church St, New York City,NY,10001 +256552,Lightning Charging Cable,1,14.95,2019-09-06 15:59:00,543 Madison St, Austin,TX,73301 +256553,Macbook Pro Laptop,1,1700.0,2019-09-03 14:35:00,126 South St, Los Angeles,CA,90001 +256554,Lightning Charging Cable,1,14.95,2019-09-26 15:20:00,22 Madison St, San Francisco,CA,94016 +256555,Apple Airpods Headphones,1,150.0,2019-09-20 07:22:00,190 North St, New York City,NY,10001 +256556,27in 4K Gaming Monitor,1,389.99,2019-09-01 19:33:00,477 Cedar St, Dallas,TX,75001 +256557,Bose SoundSport Headphones,1,99.99,2019-09-04 11:16:00,496 Meadow St, Atlanta,GA,30301 +256558,Flatscreen TV,1,300.0,2019-09-28 08:35:00,45 9th St, Atlanta,GA,30301 +256559,USB-C Charging Cable,1,11.95,2019-09-11 23:16:00,863 River St, Portland,OR,97035 +256560,iPhone,1,700.0,2019-09-09 15:35:00,636 Hill St, New York City,NY,10001 +256560,Wired Headphones,2,11.99,2019-09-09 15:35:00,636 Hill St, New York City,NY,10001 +256561,Lightning Charging Cable,1,14.95,2019-09-21 14:13:00,482 Lakeview St, San Francisco,CA,94016 +256562,Wired Headphones,1,11.99,2019-09-11 22:00:00,716 Jackson St, New York City,NY,10001 +256563,AA Batteries (4-pack),1,3.84,2019-09-04 16:07:00,45 Adams St, San Francisco,CA,94016 +256564,Apple Airpods Headphones,1,150.0,2019-09-13 14:06:00,918 4th St, San Francisco,CA,94016 +256565,Bose SoundSport Headphones,1,99.99,2019-09-08 20:32:00,83 Lincoln St, Portland,OR,97035 +256566,Lightning Charging Cable,1,14.95,2019-09-09 01:12:00,883 River St, Dallas,TX,75001 +256567,Apple Airpods Headphones,1,150.0,2019-09-01 14:36:00,359 River St, Seattle,WA,98101 +256568,Lightning Charging Cable,1,14.95,2019-09-29 12:45:00,779 Center St, Boston,MA,02215 +256569,Google Phone,1,600.0,2019-09-22 14:22:00,225 Lakeview St, San Francisco,CA,94016 +256570,AAA Batteries (4-pack),1,2.99,2019-09-14 10:22:00,893 Washington St, Portland,OR,97035 +256571,Bose SoundSport Headphones,1,99.99,2019-09-26 15:07:00,257 2nd St, San Francisco,CA,94016 +256572,Bose SoundSport Headphones,1,99.99,2019-09-11 21:27:00,304 Wilson St, Austin,TX,73301 +256573,20in Monitor,1,109.99,2019-09-16 21:50:00,677 Walnut St, San Francisco,CA,94016 +256574,Apple Airpods Headphones,1,150.0,2019-09-19 00:14:00,540 5th St, Dallas,TX,75001 +256575,Apple Airpods Headphones,1,150.0,2019-09-06 10:38:00,533 Hill St, Los Angeles,CA,90001 +256576,Lightning Charging Cable,1,14.95,2019-09-05 12:12:00,731 14th St, San Francisco,CA,94016 +256577,Lightning Charging Cable,1,14.95,2019-09-03 22:04:00,193 4th St, San Francisco,CA,94016 +256578,Flatscreen TV,1,300.0,2019-09-11 10:45:00,876 13th St, Boston,MA,02215 +256579,iPhone,1,700.0,2019-09-03 22:42:00,20 Lakeview St, Los Angeles,CA,90001 +256579,Lightning Charging Cable,1,14.95,2019-09-03 22:42:00,20 Lakeview St, Los Angeles,CA,90001 +256580,iPhone,1,700.0,2019-09-20 19:45:00,287 Wilson St, Boston,MA,02215 +256581,Bose SoundSport Headphones,1,99.99,2019-09-06 20:55:00,980 Cedar St, San Francisco,CA,94016 +256582,AAA Batteries (4-pack),1,2.99,2019-09-16 10:14:00,930 1st St, New York City,NY,10001 +256583,Wired Headphones,1,11.99,2019-09-05 20:51:00,442 Spruce St, Boston,MA,02215 +256584,27in 4K Gaming Monitor,1,389.99,2019-09-16 14:57:00,22 Willow St, Los Angeles,CA,90001 +256585,Apple Airpods Headphones,1,150.0,2019-09-04 20:20:00,427 South St, Austin,TX,73301 +256586,Lightning Charging Cable,1,14.95,2019-09-16 22:30:00,152 Hickory St, San Francisco,CA,94016 +256587,Wired Headphones,1,11.99,2019-09-22 17:39:00,923 Church St, New York City,NY,10001 +256588,Apple Airpods Headphones,1,150.0,2019-09-08 18:07:00,3 Dogwood St, Boston,MA,02215 +256589,Google Phone,1,600.0,2019-09-15 14:52:00,892 6th St, Austin,TX,73301 +256590,iPhone,1,700.0,2019-09-22 17:11:00,565 Washington St, New York City,NY,10001 +256591,Google Phone,1,600.0,2019-09-30 22:20:00,802 1st St, Los Angeles,CA,90001 +256591,USB-C Charging Cable,1,11.95,2019-09-30 22:20:00,802 1st St, Los Angeles,CA,90001 +256592,Apple Airpods Headphones,1,150.0,2019-09-02 10:21:00,484 11th St, Seattle,WA,98101 +256593,Wired Headphones,1,11.99,2019-09-19 14:06:00,767 Main St, New York City,NY,10001 +256594,Bose SoundSport Headphones,1,99.99,2019-09-22 18:23:00,596 Church St, San Francisco,CA,94016 +256595,27in FHD Monitor,1,149.99,2019-09-11 22:36:00,54 8th St, San Francisco,CA,94016 +256596,iPhone,1,700.0,2019-09-23 10:48:00,477 Church St, New York City,NY,10001 +256597,Bose SoundSport Headphones,1,99.99,2019-09-12 14:35:00,703 8th St, Boston,MA,02215 +256598,27in FHD Monitor,1,149.99,2019-09-07 11:22:00,152 Pine St, Atlanta,GA,30301 +256599,Google Phone,1,600.0,2019-09-07 16:54:00,208 Walnut St, New York City,NY,10001 +256600,AAA Batteries (4-pack),1,2.99,2019-09-03 14:57:00,313 10th St, San Francisco,CA,94016 +256601,Flatscreen TV,1,300.0,2019-09-02 12:22:00,887 Forest St, San Francisco,CA,94016 +256602,Apple Airpods Headphones,1,150.0,2019-09-01 09:50:00,268 10th St, San Francisco,CA,94016 +256603,AAA Batteries (4-pack),1,2.99,2019-09-16 13:43:00,180 Cherry St, San Francisco,CA,94016 +256604,AAA Batteries (4-pack),1,2.99,2019-09-12 17:50:00,724 10th St, New York City,NY,10001 +256605,USB-C Charging Cable,1,11.95,2019-09-22 13:45:00,677 Main St, Los Angeles,CA,90001 +256606,AA Batteries (4-pack),3,3.84,2019-09-06 19:00:00,142 Jackson St, Austin,TX,73301 +256607,Apple Airpods Headphones,1,150.0,2019-09-11 19:33:00,458 Washington St, Dallas,TX,75001 +256608,Apple Airpods Headphones,1,150.0,2019-09-03 08:01:00,510 Lakeview St, Los Angeles,CA,90001 +256609,Lightning Charging Cable,1,14.95,2019-09-26 13:57:00,572 2nd St, Seattle,WA,98101 +256610,Wired Headphones,1,11.99,2019-09-15 07:40:00,616 Johnson St, San Francisco,CA,94016 +256611,AAA Batteries (4-pack),1,2.99,2019-09-10 19:16:00,936 Hickory St, Atlanta,GA,30301 +256612,Flatscreen TV,1,300.0,2019-09-22 04:17:00,70 8th St, Dallas,TX,75001 +256613,Wired Headphones,1,11.99,2019-09-27 22:33:00,954 Meadow St, Boston,MA,02215 +256614,Lightning Charging Cable,1,14.95,2019-09-20 07:30:00,154 Washington St, New York City,NY,10001 +256615,20in Monitor,1,109.99,2019-09-13 19:06:00,102 Lakeview St, San Francisco,CA,94016 +256616,34in Ultrawide Monitor,1,379.99,2019-09-22 18:04:00,868 South St, San Francisco,CA,94016 +256617,Flatscreen TV,1,300.0,2019-09-28 13:07:00,222 11th St, San Francisco,CA,94016 +256618,Bose SoundSport Headphones,1,99.99,2019-09-09 12:05:00,988 12th St, Los Angeles,CA,90001 +256619,AAA Batteries (4-pack),1,2.99,2019-09-09 20:15:00,636 11th St, San Francisco,CA,94016 +256620,LG Washing Machine,1,600.0,2019-09-02 14:03:00,906 Center St, Los Angeles,CA,90001 +256621,iPhone,1,700.0,2019-09-05 20:22:00,32 Pine St, Atlanta,GA,30301 +256621,Lightning Charging Cable,1,14.95,2019-09-05 20:22:00,32 Pine St, Atlanta,GA,30301 +256622,AA Batteries (4-pack),3,3.84,2019-09-30 14:50:00,274 Hickory St, Portland,ME,04101 +256623,Bose SoundSport Headphones,1,99.99,2019-09-29 13:19:00,630 Highland St, New York City,NY,10001 +256624,AAA Batteries (4-pack),1,2.99,2019-09-08 05:55:00,886 Highland St, Boston,MA,02215 +256625,Lightning Charging Cable,1,14.95,2019-09-01 17:58:00,8 Dogwood St, Dallas,TX,75001 +256626,AAA Batteries (4-pack),1,2.99,2019-09-21 11:30:00,894 6th St, San Francisco,CA,94016 +256627,AA Batteries (4-pack),1,3.84,2019-09-30 19:01:00,365 1st St, Atlanta,GA,30301 +256628,Lightning Charging Cable,1,14.95,2019-09-05 19:06:00,705 Cedar St, San Francisco,CA,94016 +256629,AAA Batteries (4-pack),1,2.99,2019-09-17 11:22:00,598 Church St, Los Angeles,CA,90001 +256630,Macbook Pro Laptop,1,1700.0,2019-09-01 18:37:00,185 Willow St, San Francisco,CA,94016 +256631,Wired Headphones,1,11.99,2019-09-21 15:09:00,6 North St, San Francisco,CA,94016 +256632,Lightning Charging Cable,1,14.95,2019-09-01 12:28:00,701 6th St, San Francisco,CA,94016 +256633,Flatscreen TV,1,300.0,2019-09-09 09:44:00,473 14th St, Boston,MA,02215 +256634,Lightning Charging Cable,1,14.95,2019-09-20 11:23:00,124 8th St, Los Angeles,CA,90001 +256635,Apple Airpods Headphones,1,150.0,2019-09-24 11:19:00,645 Hill St, Austin,TX,73301 +256636,Lightning Charging Cable,1,14.95,2019-09-24 21:23:00,281 Main St, Austin,TX,73301 +256637,USB-C Charging Cable,1,11.95,2019-09-07 22:36:00,995 Lake St, New York City,NY,10001 +256638,Google Phone,1,600.0,2019-09-25 23:21:00,276 Madison St, Atlanta,GA,30301 +256639,Apple Airpods Headphones,1,150.0,2019-09-21 21:36:00,485 Hickory St, Boston,MA,02215 +256640,iPhone,1,700.0,2019-09-04 17:51:00,131 Ridge St, San Francisco,CA,94016 +256641,Wired Headphones,1,11.99,2019-09-04 15:33:00,243 Lake St, Dallas,TX,75001 +256642,Wired Headphones,1,11.99,2019-09-08 15:18:00,820 Willow St, San Francisco,CA,94016 +256643,Wired Headphones,1,11.99,2019-09-19 07:51:00,220 North St, Dallas,TX,75001 +256644,Macbook Pro Laptop,1,1700.0,2019-09-27 14:46:00,469 West St, Boston,MA,02215 +256645,USB-C Charging Cable,1,11.95,2019-09-05 21:59:00,684 11th St, San Francisco,CA,94016 +256646,27in FHD Monitor,1,149.99,2019-09-26 21:01:00,557 Center St, San Francisco,CA,94016 +256647,ThinkPad Laptop,1,999.99,2019-09-03 12:54:00,994 8th St, San Francisco,CA,94016 +256648,27in 4K Gaming Monitor,1,389.99,2019-09-08 23:01:00,408 Chestnut St, Atlanta,GA,30301 +256649,Wired Headphones,1,11.99,2019-09-21 13:00:00,537 Sunset St, Los Angeles,CA,90001 +256650,AAA Batteries (4-pack),1,2.99,2019-09-29 20:05:00,749 Hill St, Austin,TX,73301 +256651,AAA Batteries (4-pack),1,2.99,2019-09-03 18:48:00,939 1st St, Boston,MA,02215 +256652,USB-C Charging Cable,1,11.95,2019-09-21 13:32:00,60 14th St, Los Angeles,CA,90001 +256653,USB-C Charging Cable,1,11.95,2019-09-22 22:01:00,684 Adams St, Los Angeles,CA,90001 +256654,Apple Airpods Headphones,1,150.0,2019-09-20 12:21:00,969 Lakeview St, San Francisco,CA,94016 +256655,USB-C Charging Cable,2,11.95,2019-09-06 00:44:00,304 Meadow St, San Francisco,CA,94016 +256656,AA Batteries (4-pack),2,3.84,2019-09-30 12:18:00,761 12th St, Seattle,WA,98101 +256657,Lightning Charging Cable,1,14.95,2019-09-03 20:49:00,497 Center St, Los Angeles,CA,90001 +256658,ThinkPad Laptop,1,999.99,2019-09-23 20:26:00,402 4th St, Boston,MA,02215 +256659,Wired Headphones,1,11.99,2019-09-16 18:28:00,162 Cedar St, San Francisco,CA,94016 +256660,AAA Batteries (4-pack),1,2.99,2019-09-04 10:05:00,24 Lakeview St, Dallas,TX,75001 +256661,ThinkPad Laptop,1,999.99,2019-09-17 14:02:00,608 Spruce St, San Francisco,CA,94016 +256662,USB-C Charging Cable,1,11.95,2019-09-02 11:43:00,41 1st St, Portland,OR,97035 +256663,LG Dryer,1,600.0,2019-09-30 20:47:00,763 Washington St, Austin,TX,73301 +256664,AA Batteries (4-pack),1,3.84,2019-09-12 09:00:00,787 Maple St, Portland,ME,04101 +256665,Bose SoundSport Headphones,1,99.99,2019-09-09 01:50:00,375 6th St, San Francisco,CA,94016 +256666,20in Monitor,1,109.99,2019-09-12 14:10:00,169 8th St, Los Angeles,CA,90001 +256666,AA Batteries (4-pack),1,3.84,2019-09-12 14:10:00,169 8th St, Los Angeles,CA,90001 +256667,34in Ultrawide Monitor,1,379.99,2019-09-22 16:41:00,259 7th St, San Francisco,CA,94016 +256668,Wired Headphones,2,11.99,2019-09-20 15:31:00,35 5th St, San Francisco,CA,94016 +256669,Wired Headphones,1,11.99,2019-09-16 16:10:00,763 7th St, San Francisco,CA,94016 +256670,AAA Batteries (4-pack),1,2.99,2019-09-02 10:12:00,218 Center St, Austin,TX,73301 +256671,iPhone,1,700.0,2019-09-10 23:35:00,750 Pine St, New York City,NY,10001 +256671,Lightning Charging Cable,1,14.95,2019-09-10 23:35:00,750 Pine St, New York City,NY,10001 +256672,AAA Batteries (4-pack),1,2.99,2019-09-24 22:23:00,967 Elm St, San Francisco,CA,94016 +256673,27in FHD Monitor,1,149.99,2019-09-01 23:59:00,791 Jackson St, Seattle,WA,98101 +256674,Lightning Charging Cable,1,14.95,2019-09-28 15:17:00,972 Johnson St, Seattle,WA,98101 +256675,Apple Airpods Headphones,1,150.0,2019-09-26 15:04:00,853 Hill St, Dallas,TX,75001 +256676,AA Batteries (4-pack),2,3.84,2019-09-23 23:43:00,90 4th St, Los Angeles,CA,90001 +256677,USB-C Charging Cable,1,11.95,2019-09-24 19:32:00,115 10th St, San Francisco,CA,94016 +256678,Lightning Charging Cable,1,14.95,2019-09-28 17:26:00,889 Hickory St, San Francisco,CA,94016 +256679,Macbook Pro Laptop,1,1700.0,2019-09-23 19:21:00,344 South St, Atlanta,GA,30301 +256680,Wired Headphones,1,11.99,2019-09-21 10:20:00,290 Cherry St, New York City,NY,10001 +256681,27in 4K Gaming Monitor,1,389.99,2019-09-18 23:14:00,198 Jackson St, Portland,ME,04101 +256682,Lightning Charging Cable,1,14.95,2019-09-02 17:23:00,777 Hickory St, Portland,OR,97035 +256683,USB-C Charging Cable,1,11.95,2019-09-20 22:10:00,587 9th St, Seattle,WA,98101 +256684,USB-C Charging Cable,1,11.95,2019-09-01 13:32:00,661 Hickory St, New York City,NY,10001 +256685,AA Batteries (4-pack),1,3.84,2019-09-11 09:05:00,414 14th St, New York City,NY,10001 +256686,Wired Headphones,1,11.99,2019-09-18 05:35:00,411 Hill St, Los Angeles,CA,90001 +256687,Wired Headphones,2,11.99,2019-09-08 14:08:00,290 North St, San Francisco,CA,94016 +256688,AA Batteries (4-pack),1,3.84,2019-09-13 21:06:00,455 Pine St, Boston,MA,02215 +256689,Wired Headphones,1,11.99,2019-09-13 13:41:00,57 Dogwood St, San Francisco,CA,94016 +256690,USB-C Charging Cable,1,11.95,2019-09-27 21:02:00,356 Adams St, Boston,MA,02215 +256691,USB-C Charging Cable,1,11.95,2019-09-28 17:15:00,520 Park St, Seattle,WA,98101 +256692,AAA Batteries (4-pack),1,2.99,2019-09-17 17:35:00,33 Chestnut St, Dallas,TX,75001 +256693,AA Batteries (4-pack),1,3.84,2019-09-22 14:01:00,733 Center St, Boston,MA,02215 +256694,Google Phone,1,600.0,2019-09-03 18:17:00,747 Sunset St, Los Angeles,CA,90001 +256695,Lightning Charging Cable,1,14.95,2019-09-17 15:06:00,568 Jefferson St, Los Angeles,CA,90001 +256696,Vareebadd Phone,1,400.0,2019-09-15 13:07:00,430 Jackson St, Los Angeles,CA,90001 +256697,Lightning Charging Cable,1,14.95,2019-09-12 16:33:00,75 Lake St, Los Angeles,CA,90001 +256698,Apple Airpods Headphones,1,150.0,2019-09-07 13:46:00,39 Lake St, Austin,TX,73301 +256699,Bose SoundSport Headphones,1,99.99,2019-09-19 18:51:00,962 Jefferson St, Los Angeles,CA,90001 +256700,Wired Headphones,1,11.99,2019-09-19 20:10:00,209 10th St, San Francisco,CA,94016 +256701,USB-C Charging Cable,2,11.95,2019-09-10 09:59:00,933 13th St, Austin,TX,73301 +256702,Lightning Charging Cable,1,14.95,2019-09-07 12:57:00,220 Walnut St, San Francisco,CA,94016 +256703,USB-C Charging Cable,1,11.95,2019-09-06 15:42:00,882 Pine St, Los Angeles,CA,90001 +256704,27in 4K Gaming Monitor,1,389.99,2019-09-15 18:32:00,546 South St, Los Angeles,CA,90001 +256705,iPhone,1,700.0,2019-09-16 22:10:00,20 Highland St, San Francisco,CA,94016 +256706,USB-C Charging Cable,1,11.95,2019-09-18 21:50:00,74 Lake St, Dallas,TX,75001 +256707,AA Batteries (4-pack),3,3.84,2019-09-02 18:00:00,189 11th St, San Francisco,CA,94016 +256708,20in Monitor,1,109.99,2019-09-08 08:02:00,2 Spruce St, Portland,OR,97035 +256708,27in FHD Monitor,1,149.99,2019-09-08 08:02:00,2 Spruce St, Portland,OR,97035 +256709,AAA Batteries (4-pack),1,2.99,2019-09-14 12:18:00,838 West St, Boston,MA,02215 +256710,27in FHD Monitor,1,149.99,2019-09-06 05:52:00,859 Washington St, San Francisco,CA,94016 +256711,20in Monitor,1,109.99,2019-09-28 21:15:00,613 Ridge St, Los Angeles,CA,90001 +256712,AA Batteries (4-pack),2,3.84,2019-09-17 22:37:00,591 Jackson St, Seattle,WA,98101 +256713,AA Batteries (4-pack),1,3.84,2019-09-23 21:02:00,46 Jackson St, New York City,NY,10001 +256714,USB-C Charging Cable,1,11.95,2019-09-07 14:04:00,943 Maple St, Los Angeles,CA,90001 +256715,Lightning Charging Cable,1,14.95,2019-09-05 16:24:00,69 Hickory St, New York City,NY,10001 +256716,Lightning Charging Cable,1,14.95,2019-09-26 00:00:00,42 10th St, San Francisco,CA,94016 +256717,Flatscreen TV,1,300.0,2019-09-24 09:19:00,97 6th St, Seattle,WA,98101 +256718,AA Batteries (4-pack),4,3.84,2019-09-24 15:47:00,934 Lakeview St, San Francisco,CA,94016 +256719,AAA Batteries (4-pack),2,2.99,2019-09-30 17:48:00,459 Chestnut St, Los Angeles,CA,90001 +256720,Google Phone,1,600.0,2019-09-03 18:31:00,691 Johnson St, Seattle,WA,98101 +256721,AAA Batteries (4-pack),1,2.99,2019-09-16 21:37:00,880 13th St, San Francisco,CA,94016 +256722,Bose SoundSport Headphones,1,99.99,2019-09-30 08:16:00,865 14th St, Austin,TX,73301 +256723,Apple Airpods Headphones,1,150.0,2019-09-22 17:46:00,334 Washington St, San Francisco,CA,94016 +256724,Wired Headphones,1,11.99,2019-09-04 08:11:00,78 2nd St, New York City,NY,10001 +256725,ThinkPad Laptop,1,999.99,2019-09-26 23:24:00,130 12th St, Los Angeles,CA,90001 +256726,ThinkPad Laptop,1,999.99,2019-09-03 14:49:00,543 6th St, New York City,NY,10001 +256727,USB-C Charging Cable,2,11.95,2019-09-30 21:19:00,928 Lincoln St, Portland,OR,97035 +256728,Wired Headphones,1,11.99,2019-09-09 08:28:00,320 12th St, Los Angeles,CA,90001 +256729,AAA Batteries (4-pack),1,2.99,2019-09-16 10:17:00,13 Pine St, Los Angeles,CA,90001 +256730,Bose SoundSport Headphones,1,99.99,2019-09-25 16:18:00,726 Chestnut St, Portland,ME,04101 +256731,AAA Batteries (4-pack),1,2.99,2019-09-26 14:43:00,268 1st St, Boston,MA,02215 +256732,Lightning Charging Cable,1,14.95,2019-09-09 01:17:00,147 Sunset St, Portland,OR,97035 +256733,iPhone,1,700.0,2019-09-13 11:27:00,807 Dogwood St, San Francisco,CA,94016 +256733,Lightning Charging Cable,1,14.95,2019-09-13 11:27:00,807 Dogwood St, San Francisco,CA,94016 +256734,AAA Batteries (4-pack),1,2.99,2019-09-20 02:01:00,848 1st St, Los Angeles,CA,90001 +256735,Lightning Charging Cable,1,14.95,2019-09-29 16:25:00,143 Walnut St, Boston,MA,02215 +256736,Apple Airpods Headphones,1,150.0,2019-09-21 13:58:00,198 6th St, San Francisco,CA,94016 +256737,iPhone,1,700.0,2019-09-25 21:08:00,419 Lake St, San Francisco,CA,94016 +256738,Lightning Charging Cable,1,14.95,2019-09-16 20:09:00,835 Cherry St, New York City,NY,10001 +256739,27in FHD Monitor,1,149.99,2019-09-23 12:08:00,72 9th St, Portland,OR,97035 +256740,Wired Headphones,1,11.99,2019-09-24 18:00:00,399 2nd St, Los Angeles,CA,90001 +256741,Wired Headphones,1,11.99,2019-09-30 23:34:00,475 5th St, San Francisco,CA,94016 +256742,AAA Batteries (4-pack),1,2.99,2019-09-06 14:49:00,350 5th St, San Francisco,CA,94016 +256743,USB-C Charging Cable,1,11.95,2019-09-03 22:04:00,850 Walnut St, Atlanta,GA,30301 +256744,27in 4K Gaming Monitor,1,389.99,2019-09-07 18:03:00,946 Cedar St, New York City,NY,10001 +256745,Apple Airpods Headphones,1,150.0,2019-09-23 18:45:00,554 Lincoln St, Portland,ME,04101 +256746,AAA Batteries (4-pack),1,2.99,2019-09-21 01:03:00,383 10th St, San Francisco,CA,94016 +256747,AA Batteries (4-pack),1,3.84,2019-09-29 11:42:00,169 Jackson St, New York City,NY,10001 +256748,Wired Headphones,1,11.99,2019-09-10 11:55:00,905 Spruce St, Austin,TX,73301 +256749,USB-C Charging Cable,1,11.95,2019-09-27 11:43:00,738 11th St, San Francisco,CA,94016 +256750,34in Ultrawide Monitor,1,379.99,2019-09-21 20:33:00,831 6th St, Los Angeles,CA,90001 +256751,20in Monitor,1,109.99,2019-09-21 17:45:00,708 Willow St, Boston,MA,02215 +256752,Bose SoundSport Headphones,1,99.99,2019-09-24 18:13:00,323 14th St, Boston,MA,02215 +256753,Lightning Charging Cable,2,14.95,2019-09-01 17:13:00,730 Cherry St, Portland,OR,97035 +256754,AA Batteries (4-pack),1,3.84,2019-09-10 10:31:00,393 Walnut St, Los Angeles,CA,90001 +256755,Lightning Charging Cable,2,14.95,2019-09-01 16:47:00,677 West St, Los Angeles,CA,90001 +256756,AA Batteries (4-pack),1,3.84,2019-09-16 01:37:00,369 Dogwood St, Boston,MA,02215 +256757,27in 4K Gaming Monitor,1,389.99,2019-09-24 23:35:00,782 Jackson St, Boston,MA,02215 +256758,20in Monitor,1,109.99,2019-09-11 17:54:00,810 Cedar St, San Francisco,CA,94016 +256759,AA Batteries (4-pack),1,3.84,2019-09-14 09:25:00,390 7th St, Seattle,WA,98101 +256760,Wired Headphones,1,11.99,2019-09-26 06:19:00,278 Lincoln St, New York City,NY,10001 +256761,Bose SoundSport Headphones,1,99.99,2019-09-03 16:15:00,269 Lincoln St, Portland,OR,97035 +256762,Lightning Charging Cable,1,14.95,2019-09-30 16:08:00,792 Wilson St, Seattle,WA,98101 +256763,27in FHD Monitor,1,149.99,2019-09-15 22:28:00,23 11th St, San Francisco,CA,94016 +256764,ThinkPad Laptop,1,999.99,2019-09-18 22:46:00,360 North St, Atlanta,GA,30301 +256765,USB-C Charging Cable,1,11.95,2019-09-26 13:50:00,454 11th St, Los Angeles,CA,90001 +256766,USB-C Charging Cable,1,11.95,2019-09-30 11:37:00,153 13th St, Boston,MA,02215 +256767,USB-C Charging Cable,1,11.95,2019-09-01 19:46:00,249 12th St, Portland,ME,04101 +256768,Wired Headphones,1,11.99,2019-09-28 21:14:00,541 Jefferson St, San Francisco,CA,94016 +256769,27in FHD Monitor,1,149.99,2019-09-23 12:35:00,51 Meadow St, Dallas,TX,75001 +256770,34in Ultrawide Monitor,1,379.99,2019-09-12 11:54:00,530 12th St, Boston,MA,02215 +256771,LG Dryer,1,600.0,2019-09-01 13:07:00,534 1st St, Boston,MA,02215 +256772,USB-C Charging Cable,1,11.95,2019-09-06 19:31:00,200 River St, Austin,TX,73301 +256773,AAA Batteries (4-pack),2,2.99,2019-09-25 16:14:00,986 Lake St, Boston,MA,02215 +256774,Apple Airpods Headphones,1,150.0,2019-09-07 17:54:00,961 6th St, Boston,MA,02215 +256775,Google Phone,1,600.0,2019-09-13 06:14:00,91 Park St, San Francisco,CA,94016 +256776,USB-C Charging Cable,1,11.95,2019-09-22 10:34:00,589 14th St, New York City,NY,10001 +256777,Wired Headphones,1,11.99,2019-09-23 09:27:00,565 1st St, New York City,NY,10001 +256778,iPhone,1,700.0,2019-09-28 14:15:00,624 Cedar St, Atlanta,GA,30301 +256778,Lightning Charging Cable,1,14.95,2019-09-28 14:15:00,624 Cedar St, Atlanta,GA,30301 +256779,27in FHD Monitor,1,149.99,2019-09-26 05:01:00,404 2nd St, San Francisco,CA,94016 +256780,27in FHD Monitor,1,149.99,2019-09-26 03:06:00,654 Lakeview St, Boston,MA,02215 +256781,iPhone,1,700.0,2019-09-05 11:57:00,339 11th St, New York City,NY,10001 +256782,Lightning Charging Cable,1,14.95,2019-09-23 18:59:00,105 Willow St, Portland,ME,04101 +256783,Lightning Charging Cable,1,14.95,2019-09-08 07:48:00,527 South St, Dallas,TX,75001 +256784,AA Batteries (4-pack),1,3.84,2019-09-21 18:07:00,517 Church St, Portland,OR,97035 +256785,Vareebadd Phone,1,400.0,2019-09-04 19:11:00,280 5th St, San Francisco,CA,94016 +256785,USB-C Charging Cable,1,11.95,2019-09-04 19:11:00,280 5th St, San Francisco,CA,94016 +256786,USB-C Charging Cable,1,11.95,2019-09-13 22:19:00,270 Lake St, San Francisco,CA,94016 +256787,USB-C Charging Cable,2,11.95,2019-09-30 10:27:00,953 Washington St, Los Angeles,CA,90001 +256788,iPhone,1,700.0,2019-09-09 17:49:00,690 6th St, New York City,NY,10001 +256789,Wired Headphones,1,11.99,2019-09-21 15:33:00,92 South St, New York City,NY,10001 +256790,Bose SoundSport Headphones,1,99.99,2019-09-02 11:24:00,192 5th St, San Francisco,CA,94016 +256791,Wired Headphones,1,11.99,2019-09-07 18:58:00,817 Lakeview St, San Francisco,CA,94016 +256792,AA Batteries (4-pack),1,3.84,2019-09-26 10:52:00,373 Johnson St, San Francisco,CA,94016 +256793,Apple Airpods Headphones,1,150.0,2019-09-05 21:19:00,458 Sunset St, Boston,MA,02215 +256794,27in FHD Monitor,1,149.99,2019-09-17 18:53:00,659 Dogwood St, Portland,ME,04101 +256795,AAA Batteries (4-pack),1,2.99,2019-09-08 17:36:00,274 Madison St, San Francisco,CA,94016 +256796,USB-C Charging Cable,1,11.95,2019-09-24 14:29:00,901 Ridge St, San Francisco,CA,94016 +256797,Apple Airpods Headphones,1,150.0,2019-09-03 11:24:00,18 2nd St, New York City,NY,10001 +256798,iPhone,1,700.0,2019-09-25 21:46:00,154 Sunset St, Portland,OR,97035 +256799,Bose SoundSport Headphones,1,99.99,2019-09-15 22:02:00,125 1st St, Atlanta,GA,30301 +256800,AAA Batteries (4-pack),3,2.99,2019-09-22 00:07:00,819 Sunset St, New York City,NY,10001 +256801,Wired Headphones,1,11.99,2019-09-24 15:59:00,706 14th St, Austin,TX,73301 +256802,Wired Headphones,1,11.99,2019-09-23 12:32:00,173 Jefferson St, New York City,NY,10001 +256803,20in Monitor,1,109.99,2019-09-14 15:41:00,311 1st St, Boston,MA,02215 +256804,Wired Headphones,1,11.99,2019-09-18 13:46:00,653 Forest St, San Francisco,CA,94016 +256805,iPhone,1,700.0,2019-09-14 07:57:00,612 West St, Dallas,TX,75001 +256805,Wired Headphones,1,11.99,2019-09-14 07:57:00,612 West St, Dallas,TX,75001 +256806,Lightning Charging Cable,1,14.95,2019-09-10 19:07:00,328 Cherry St, Seattle,WA,98101 +256807,Bose SoundSport Headphones,1,99.99,2019-09-20 13:42:00,170 South St, San Francisco,CA,94016 +256808,Macbook Pro Laptop,1,1700.0,2019-09-17 14:08:00,623 Chestnut St, San Francisco,CA,94016 +256809,iPhone,1,700.0,2019-09-10 11:39:00,366 North St, Portland,OR,97035 +256810,AA Batteries (4-pack),1,3.84,2019-09-24 09:21:00,112 9th St, Dallas,TX,75001 +256811,Lightning Charging Cable,1,14.95,2019-09-06 18:05:00,830 Cedar St, San Francisco,CA,94016 +256812,Wired Headphones,1,11.99,2019-09-07 21:18:00,947 Main St, San Francisco,CA,94016 +256813,27in 4K Gaming Monitor,1,389.99,2019-09-09 10:47:00,397 Chestnut St, Austin,TX,73301 +256814,AAA Batteries (4-pack),2,2.99,2019-09-28 12:51:00,959 Sunset St, Dallas,TX,75001 +256815,USB-C Charging Cable,1,11.95,2019-09-04 21:47:00,739 North St, New York City,NY,10001 +256816,27in 4K Gaming Monitor,1,389.99,2019-09-11 12:28:00,408 Cherry St, Boston,MA,02215 +256817,Apple Airpods Headphones,1,150.0,2019-09-12 06:32:00,665 11th St, New York City,NY,10001 +256818,Wired Headphones,1,11.99,2019-09-29 17:23:00,86 Hickory St, San Francisco,CA,94016 +256819,Wired Headphones,1,11.99,2019-09-12 22:12:00,213 Chestnut St, Atlanta,GA,30301 +256820,USB-C Charging Cable,1,11.95,2019-09-08 16:53:00,706 South St, Boston,MA,02215 +256821,AAA Batteries (4-pack),1,2.99,2019-09-02 21:23:00,300 Willow St, Seattle,WA,98101 +256822,27in 4K Gaming Monitor,1,389.99,2019-09-03 21:37:00,662 Wilson St, Portland,OR,97035 +256823,Vareebadd Phone,1,400.0,2019-09-03 21:55:00,770 North St, Boston,MA,02215 +256824,AA Batteries (4-pack),4,3.84,2019-09-12 17:21:00,554 West St, Austin,TX,73301 +256825,Apple Airpods Headphones,1,150.0,2019-09-19 21:49:00,609 Walnut St, Boston,MA,02215 +256826,Lightning Charging Cable,1,14.95,2019-09-19 19:16:00,102 Chestnut St, Portland,OR,97035 +256827,Lightning Charging Cable,1,14.95,2019-09-12 23:29:00,157 9th St, Austin,TX,73301 +256828,27in 4K Gaming Monitor,1,389.99,2019-09-29 21:30:00,521 Meadow St, Austin,TX,73301 +256829,20in Monitor,1,109.99,2019-09-04 19:10:00,47 Main St, San Francisco,CA,94016 +256830,Wired Headphones,1,11.99,2019-09-14 14:59:00,535 Highland St, Atlanta,GA,30301 +256831,Lightning Charging Cable,1,14.95,2019-09-25 11:51:00,738 Cedar St, Dallas,TX,75001 +256832,Bose SoundSport Headphones,1,99.99,2019-09-04 05:00:00,72 10th St, San Francisco,CA,94016 +256833,iPhone,1,700.0,2019-09-15 17:13:00,120 2nd St, San Francisco,CA,94016 +256834,Bose SoundSport Headphones,1,99.99,2019-09-20 20:48:00,233 Lake St, San Francisco,CA,94016 +256835,Lightning Charging Cable,1,14.95,2019-09-20 11:23:00,204 Lincoln St, Los Angeles,CA,90001 +256836,AAA Batteries (4-pack),1,2.99,2019-09-28 13:23:00,627 Lakeview St, Boston,MA,02215 +256837,AAA Batteries (4-pack),4,2.99,2019-09-09 11:28:00,319 Johnson St, Austin,TX,73301 +256838,ThinkPad Laptop,1,999.99,2019-09-17 20:28:00,214 Center St, San Francisco,CA,94016 +256839,Flatscreen TV,1,300.0,2019-09-18 00:37:00,636 Johnson St, Boston,MA,02215 +256840,AAA Batteries (4-pack),3,2.99,2019-09-02 11:44:00,673 South St, New York City,NY,10001 +256841,USB-C Charging Cable,1,11.95,2019-09-24 23:19:00,70 14th St, Los Angeles,CA,90001 +256842,iPhone,1,700.0,2019-09-20 11:17:00,994 Wilson St, San Francisco,CA,94016 +256843,Flatscreen TV,1,300.0,2019-09-17 18:42:00,508 Walnut St, Portland,OR,97035 +256844,LG Dryer,1,600.0,2019-09-30 11:34:00,231 Madison St, San Francisco,CA,94016 +256845,AAA Batteries (4-pack),2,2.99,2019-09-21 07:58:00,26 Lake St, San Francisco,CA,94016 +256846,Bose SoundSport Headphones,1,99.99,2019-09-13 13:26:00,587 Hickory St, San Francisco,CA,94016 +256847,AAA Batteries (4-pack),1,2.99,2019-09-21 18:46:00,380 Jefferson St, Dallas,TX,75001 +256848,AA Batteries (4-pack),1,3.84,2019-09-23 18:14:00,540 9th St, San Francisco,CA,94016 +256849,USB-C Charging Cable,1,11.95,2019-09-24 18:03:00,898 Main St, Los Angeles,CA,90001 +256850,Lightning Charging Cable,1,14.95,2019-09-11 12:00:00,154 8th St, Los Angeles,CA,90001 +256851,USB-C Charging Cable,1,11.95,2019-09-30 21:15:00,237 Jackson St, Los Angeles,CA,90001 +256852,AAA Batteries (4-pack),1,2.99,2019-09-02 19:48:00,540 Willow St, Los Angeles,CA,90001 +256853,20in Monitor,1,109.99,2019-09-03 15:14:00,581 8th St, Boston,MA,02215 +256854,Wired Headphones,1,11.99,2019-09-21 22:15:00,236 13th St, Boston,MA,02215 +256855,Wired Headphones,1,11.99,2019-09-09 16:23:00,208 4th St, Boston,MA,02215 +256856,USB-C Charging Cable,1,11.95,2019-09-16 11:26:00,672 Washington St, Seattle,WA,98101 +256857,AA Batteries (4-pack),3,3.84,2019-09-14 07:36:00,617 South St, San Francisco,CA,94016 +256858,USB-C Charging Cable,1,11.95,2019-09-22 01:06:00,950 Spruce St, Boston,MA,02215 +256859,AA Batteries (4-pack),1,3.84,2019-10-01 01:17:00,644 7th St, Los Angeles,CA,90001 +256860,Macbook Pro Laptop,1,1700.0,2019-09-18 23:19:00,263 Dogwood St, New York City,NY,10001 +256861,Apple Airpods Headphones,1,150.0,2019-09-13 09:34:00,504 6th St, New York City,NY,10001 +256862,AA Batteries (4-pack),4,3.84,2019-09-18 17:27:00,591 Walnut St, Los Angeles,CA,90001 +256863,Apple Airpods Headphones,1,150.0,2019-09-18 14:19:00,99 10th St, Los Angeles,CA,90001 +256864,Bose SoundSport Headphones,1,99.99,2019-09-03 12:00:00,873 Lake St, Seattle,WA,98101 +256865,Lightning Charging Cable,1,14.95,2019-09-12 15:35:00,869 Spruce St, San Francisco,CA,94016 +256866,iPhone,1,700.0,2019-09-23 10:18:00,606 Sunset St, San Francisco,CA,94016 +256867,Lightning Charging Cable,1,14.95,2019-09-20 09:38:00,787 Sunset St, Dallas,TX,75001 +256867,ThinkPad Laptop,1,999.99,2019-09-20 09:38:00,787 Sunset St, Dallas,TX,75001 +256868,Wired Headphones,1,11.99,2019-09-19 23:27:00,235 Willow St, Dallas,TX,75001 +256869,Lightning Charging Cable,1,14.95,2019-09-25 14:52:00,28 Maple St, San Francisco,CA,94016 +256870,34in Ultrawide Monitor,1,379.99,2019-09-04 15:09:00,875 9th St, San Francisco,CA,94016 +256871,AA Batteries (4-pack),1,3.84,2019-09-28 22:02:00,189 Walnut St, Los Angeles,CA,90001 +256872,iPhone,1,700.0,2019-09-18 17:34:00,801 9th St, Atlanta,GA,30301 +256873,AA Batteries (4-pack),1,3.84,2019-09-14 22:35:00,885 Walnut St, Seattle,WA,98101 +256874,27in 4K Gaming Monitor,1,389.99,2019-09-24 16:20:00,229 Ridge St, Boston,MA,02215 +256875,AA Batteries (4-pack),1,3.84,2019-09-07 09:21:00,735 4th St, Los Angeles,CA,90001 +256876,Lightning Charging Cable,1,14.95,2019-09-29 02:54:00,479 Lakeview St, New York City,NY,10001 +256877,AAA Batteries (4-pack),1,2.99,2019-09-20 21:52:00,775 Washington St, Dallas,TX,75001 +256878,Google Phone,1,600.0,2019-09-09 20:35:00,321 6th St, Boston,MA,02215 +256878,USB-C Charging Cable,1,11.95,2019-09-09 20:35:00,321 6th St, Boston,MA,02215 +256879,AA Batteries (4-pack),1,3.84,2019-09-03 09:08:00,377 Church St, Atlanta,GA,30301 +256880,20in Monitor,1,109.99,2019-09-15 15:44:00,964 Walnut St, Seattle,WA,98101 +256881,Wired Headphones,1,11.99,2019-09-25 19:58:00,3 Adams St, Seattle,WA,98101 +256882,20in Monitor,1,109.99,2019-09-30 10:29:00,288 Forest St, San Francisco,CA,94016 +256883,Bose SoundSport Headphones,1,99.99,2019-09-07 21:06:00,267 Meadow St, Los Angeles,CA,90001 +256884,Apple Airpods Headphones,1,150.0,2019-09-28 13:51:00,500 South St, San Francisco,CA,94016 +256885,USB-C Charging Cable,1,11.95,2019-09-17 14:14:00,285 Cedar St, San Francisco,CA,94016 +256886,Lightning Charging Cable,1,14.95,2019-09-27 21:37:00,189 North St, Dallas,TX,75001 +256887,AA Batteries (4-pack),3,3.84,2019-09-12 13:36:00,978 4th St, Dallas,TX,75001 +256888,USB-C Charging Cable,1,11.95,2019-09-09 20:37:00,289 9th St, San Francisco,CA,94016 +256889,Apple Airpods Headphones,1,150.0,2019-09-18 13:38:00,21 North St, New York City,NY,10001 +256890,Lightning Charging Cable,1,14.95,2019-09-02 18:07:00,179 Johnson St, Austin,TX,73301 +256891,AA Batteries (4-pack),1,3.84,2019-09-17 11:30:00,245 Park St, Los Angeles,CA,90001 +256892,AAA Batteries (4-pack),1,2.99,2019-09-07 21:43:00,665 Madison St, New York City,NY,10001 +256893,USB-C Charging Cable,2,11.95,2019-09-03 13:29:00,74 Washington St, New York City,NY,10001 +256894,Apple Airpods Headphones,1,150.0,2019-09-18 18:55:00,515 2nd St, San Francisco,CA,94016 +256895,34in Ultrawide Monitor,1,379.99,2019-09-22 16:48:00,37 Dogwood St, Portland,OR,97035 +256896,Wired Headphones,1,11.99,2019-09-05 12:23:00,107 1st St, Dallas,TX,75001 +256897,Flatscreen TV,1,300.0,2019-09-06 12:26:00,280 10th St, Seattle,WA,98101 +256898,34in Ultrawide Monitor,1,379.99,2019-09-12 13:58:00,891 Jackson St, Atlanta,GA,30301 +256899,Wired Headphones,1,11.99,2019-09-13 23:57:00,157 Cedar St, Los Angeles,CA,90001 +256900,Flatscreen TV,1,300.0,2019-09-15 20:37:00,751 13th St, New York City,NY,10001 +256901,27in FHD Monitor,1,149.99,2019-09-03 00:23:00,40 Main St, San Francisco,CA,94016 +256902,34in Ultrawide Monitor,1,379.99,2019-09-20 18:13:00,626 Madison St, Boston,MA,02215 +256903,Wired Headphones,1,11.99,2019-09-10 12:31:00,603 2nd St, Boston,MA,02215 +256904,AAA Batteries (4-pack),2,2.99,2019-09-15 14:53:00,891 Elm St, New York City,NY,10001 +256905,AAA Batteries (4-pack),1,2.99,2019-09-23 21:41:00,82 5th St, Los Angeles,CA,90001 +256906,USB-C Charging Cable,2,11.95,2019-09-25 21:29:00,70 Jefferson St, Boston,MA,02215 +256907,Wired Headphones,2,11.99,2019-09-15 22:16:00,436 8th St, Seattle,WA,98101 +256908,Lightning Charging Cable,2,14.95,2019-09-26 01:05:00,901 5th St, San Francisco,CA,94016 +256909,Wired Headphones,1,11.99,2019-09-14 11:24:00,399 Highland St, Seattle,WA,98101 +256910,Wired Headphones,1,11.99,2019-09-13 14:16:00,858 West St, Portland,OR,97035 +256911,Wired Headphones,1,11.99,2019-09-28 01:53:00,673 Jackson St, San Francisco,CA,94016 +256912,LG Washing Machine,1,600.0,2019-09-24 11:17:00,695 Willow St, San Francisco,CA,94016 +256913,Lightning Charging Cable,1,14.95,2019-09-26 22:21:00,341 Ridge St, Portland,OR,97035 +256914,20in Monitor,1,109.99,2019-09-01 14:37:00,930 Forest St, Seattle,WA,98101 +256915,AA Batteries (4-pack),2,3.84,2019-09-03 21:30:00,502 Church St, Dallas,TX,75001 +256916,AAA Batteries (4-pack),1,2.99,2019-09-26 17:51:00,748 Highland St, Los Angeles,CA,90001 +256917,Wired Headphones,1,11.99,2019-09-14 16:59:00,267 Wilson St, San Francisco,CA,94016 +256918,34in Ultrawide Monitor,1,379.99,2019-09-29 20:44:00,964 Park St, San Francisco,CA,94016 +256919,Bose SoundSport Headphones,1,99.99,2019-09-02 20:10:00,126 Jefferson St, Dallas,TX,75001 +256920,27in FHD Monitor,1,149.99,2019-09-03 13:55:00,756 1st St, Los Angeles,CA,90001 +256921,AA Batteries (4-pack),1,3.84,2019-09-29 11:39:00,833 Johnson St, Los Angeles,CA,90001 +256922,iPhone,1,700.0,2019-09-29 18:02:00,600 North St, New York City,NY,10001 +256923,Lightning Charging Cable,1,14.95,2019-09-28 15:53:00,4 Ridge St, Boston,MA,02215 +256924,27in 4K Gaming Monitor,1,389.99,2019-09-17 15:12:00,526 Forest St, Los Angeles,CA,90001 +256925,34in Ultrawide Monitor,1,379.99,2019-09-07 18:51:00,12 Hill St, Dallas,TX,75001 +256926,27in 4K Gaming Monitor,1,389.99,2019-09-26 11:36:00,869 9th St, Austin,TX,73301 +256927,Lightning Charging Cable,1,14.95,2019-09-06 14:14:00,947 Madison St, Portland,OR,97035 +256928,Macbook Pro Laptop,1,1700.0,2019-09-06 14:46:00,768 10th St, New York City,NY,10001 +256929,Apple Airpods Headphones,1,150.0,2019-09-17 21:49:00,35 Hickory St, New York City,NY,10001 +256930,USB-C Charging Cable,1,11.95,2019-09-15 04:49:00,962 South St, Portland,OR,97035 +256931,Lightning Charging Cable,1,14.95,2019-09-08 13:38:00,753 6th St, Los Angeles,CA,90001 +256932,Apple Airpods Headphones,1,150.0,2019-09-28 14:41:00,374 West St, San Francisco,CA,94016 +256933,AA Batteries (4-pack),2,3.84,2019-09-16 22:32:00,869 West St, Atlanta,GA,30301 +256934,27in 4K Gaming Monitor,1,389.99,2019-09-17 19:11:00,322 Elm St, Boston,MA,02215 +256935,Bose SoundSport Headphones,1,99.99,2019-09-13 10:02:00,850 Meadow St, San Francisco,CA,94016 +256936,27in FHD Monitor,1,149.99,2019-09-10 16:46:00,303 Sunset St, Seattle,WA,98101 +256937,AAA Batteries (4-pack),1,2.99,2019-09-01 16:26:00,27 14th St, San Francisco,CA,94016 +256938,USB-C Charging Cable,1,11.95,2019-09-28 11:18:00,324 Willow St, Austin,TX,73301 +256939,Bose SoundSport Headphones,1,99.99,2019-09-22 12:06:00,41 Ridge St, Los Angeles,CA,90001 +256940,Bose SoundSport Headphones,1,99.99,2019-09-22 16:46:00,154 Spruce St, Austin,TX,73301 +256941,Google Phone,1,600.0,2019-09-23 17:05:00,898 Spruce St, Austin,TX,73301 +256942,USB-C Charging Cable,2,11.95,2019-09-21 09:37:00,974 1st St, Seattle,WA,98101 +256943,Wired Headphones,1,11.99,2019-09-30 05:36:00,682 North St, Seattle,WA,98101 +256944,Bose SoundSport Headphones,1,99.99,2019-09-25 11:26:00,668 6th St, Austin,TX,73301 +256945,Wired Headphones,2,11.99,2019-09-18 20:38:00,691 Dogwood St, Los Angeles,CA,90001 +256946,Wired Headphones,1,11.99,2019-09-28 12:34:00,634 Adams St, Portland,OR,97035 +256947,Lightning Charging Cable,1,14.95,2019-09-03 07:40:00,547 South St, San Francisco,CA,94016 +256948,Wired Headphones,1,11.99,2019-09-09 22:41:00,535 West St, Atlanta,GA,30301 +256949,Lightning Charging Cable,1,14.95,2019-09-21 17:28:00,266 Pine St, San Francisco,CA,94016 +256950,Wired Headphones,1,11.99,2019-09-29 20:36:00,312 13th St, Boston,MA,02215 +256951,Lightning Charging Cable,2,14.95,2019-09-04 17:09:00,545 1st St, Austin,TX,73301 +256952,AAA Batteries (4-pack),2,2.99,2019-09-12 13:06:00,399 Forest St, New York City,NY,10001 +256953,27in 4K Gaming Monitor,1,389.99,2019-09-24 14:56:00,987 Pine St, San Francisco,CA,94016 +256954,AAA Batteries (4-pack),1,2.99,2019-09-16 22:16:00,482 Wilson St, Atlanta,GA,30301 +256955,Lightning Charging Cable,1,14.95,2019-09-04 09:22:00,858 2nd St, Portland,OR,97035 +256956,20in Monitor,1,109.99,2019-09-08 18:08:00,816 Elm St, Los Angeles,CA,90001 +256957,USB-C Charging Cable,1,11.95,2019-09-23 20:15:00,924 Hickory St, San Francisco,CA,94016 +256958,Apple Airpods Headphones,1,150.0,2019-09-08 15:25:00,880 Forest St, Boston,MA,02215 +256959,USB-C Charging Cable,1,11.95,2019-09-01 09:31:00,614 Lakeview St, San Francisco,CA,94016 +256960,AA Batteries (4-pack),1,3.84,2019-09-21 08:56:00,453 Center St, San Francisco,CA,94016 +256961,Lightning Charging Cable,1,14.95,2019-09-14 11:40:00,672 Johnson St, New York City,NY,10001 +256962,Wired Headphones,1,11.99,2019-09-02 05:16:00,11 Lincoln St, Los Angeles,CA,90001 +256963,AAA Batteries (4-pack),1,2.99,2019-09-22 10:29:00,316 Chestnut St, San Francisco,CA,94016 +256964,Lightning Charging Cable,1,14.95,2019-09-03 12:28:00,853 Sunset St, New York City,NY,10001 +256965,AAA Batteries (4-pack),1,2.99,2019-09-29 19:22:00,963 7th St, Los Angeles,CA,90001 +256966,AA Batteries (4-pack),1,3.84,2019-09-13 14:23:00,203 Willow St, San Francisco,CA,94016 +256967,Google Phone,1,600.0,2019-09-05 08:32:00,640 Lincoln St, Portland,OR,97035 +256968,Wired Headphones,1,11.99,2019-09-30 15:26:00,917 West St, Los Angeles,CA,90001 +256969,Flatscreen TV,1,300.0,2019-09-16 01:58:00,800 Jackson St, Dallas,TX,75001 +256970,Apple Airpods Headphones,1,150.0,2019-09-05 21:39:00,555 River St, San Francisco,CA,94016 +256971,Wired Headphones,1,11.99,2019-09-01 16:16:00,573 Jackson St, San Francisco,CA,94016 +256972,20in Monitor,1,109.99,2019-09-05 12:17:00,466 Cherry St, New York City,NY,10001 +256973,AA Batteries (4-pack),1,3.84,2019-09-05 18:26:00,321 Sunset St, San Francisco,CA,94016 +256974,USB-C Charging Cable,1,11.95,2019-09-05 16:44:00,473 Jackson St, New York City,NY,10001 +256975,Lightning Charging Cable,1,14.95,2019-09-03 13:42:00,221 Lake St, Atlanta,GA,30301 +256976,AA Batteries (4-pack),1,3.84,2019-09-26 15:13:00,44 4th St, Seattle,WA,98101 +256977,Wired Headphones,1,11.99,2019-09-08 19:44:00,300 10th St, San Francisco,CA,94016 +256978,Apple Airpods Headphones,1,150.0,2019-09-29 11:15:00,610 Center St, New York City,NY,10001 +256979,Flatscreen TV,1,300.0,2019-09-17 16:43:00,500 2nd St, San Francisco,CA,94016 +256980,Bose SoundSport Headphones,1,99.99,2019-09-21 10:00:00,658 Meadow St, Boston,MA,02215 +256981,AAA Batteries (4-pack),1,2.99,2019-09-04 13:44:00,431 Cherry St, San Francisco,CA,94016 +256982,Bose SoundSport Headphones,1,99.99,2019-09-18 17:29:00,847 6th St, Boston,MA,02215 +256983,Macbook Pro Laptop,1,1700.0,2019-09-14 11:37:00,454 Hill St, San Francisco,CA,94016 +256984,Bose SoundSport Headphones,1,99.99,2019-09-21 11:03:00,231 South St, Dallas,TX,75001 +256985,Lightning Charging Cable,2,14.95,2019-09-05 23:16:00,490 14th St, Boston,MA,02215 +256986,AA Batteries (4-pack),1,3.84,2019-09-01 11:01:00,538 Cedar St, Los Angeles,CA,90001 +256987,AA Batteries (4-pack),1,3.84,2019-09-29 14:24:00,425 Center St, Portland,OR,97035 +256988,AA Batteries (4-pack),2,3.84,2019-09-20 08:45:00,546 Main St, Los Angeles,CA,90001 +256989,AAA Batteries (4-pack),1,2.99,2019-09-26 16:54:00,636 River St, New York City,NY,10001 +256990,Wired Headphones,1,11.99,2019-09-19 17:28:00,609 1st St, New York City,NY,10001 +256991,Flatscreen TV,1,300.0,2019-09-10 10:39:00,19 South St, Boston,MA,02215 +256992,Apple Airpods Headphones,1,150.0,2019-09-16 18:30:00,103 River St, Seattle,WA,98101 +256993,Apple Airpods Headphones,1,150.0,2019-09-08 14:53:00,92 Sunset St, San Francisco,CA,94016 +256994,USB-C Charging Cable,1,11.95,2019-09-08 19:22:00,580 6th St, San Francisco,CA,94016 +256995,USB-C Charging Cable,1,11.95,2019-09-01 21:41:00,537 Washington St, Austin,TX,73301 +256996,Apple Airpods Headphones,1,150.0,2019-09-19 14:35:00,163 Meadow St, Los Angeles,CA,90001 +256997,USB-C Charging Cable,1,11.95,2019-09-01 18:02:00,678 Center St, Los Angeles,CA,90001 +256998,Apple Airpods Headphones,1,150.0,2019-09-27 17:57:00,681 Park St, Los Angeles,CA,90001 +256999,USB-C Charging Cable,1,11.95,2019-09-18 14:30:00,81 Maple St, Boston,MA,02215 +257000,LG Washing Machine,1,600.0,2019-09-08 09:19:00,334 River St, Austin,TX,73301 +257001,USB-C Charging Cable,1,11.95,2019-09-11 09:10:00,321 14th St, Los Angeles,CA,90001 +257002,Apple Airpods Headphones,1,150.0,2019-09-05 12:29:00,308 Meadow St, New York City,NY,10001 +257003,AAA Batteries (4-pack),1,2.99,2019-09-28 17:30:00,266 Lake St, San Francisco,CA,94016 +257004,USB-C Charging Cable,1,11.95,2019-09-11 07:59:00,983 Elm St, Dallas,TX,75001 +257005,Google Phone,1,600.0,2019-09-30 21:05:00,691 Chestnut St, Los Angeles,CA,90001 +257006,AAA Batteries (4-pack),1,2.99,2019-09-08 19:19:00,990 14th St, Seattle,WA,98101 +257007,AA Batteries (4-pack),1,3.84,2019-09-14 12:37:00,628 1st St, Austin,TX,73301 +257008,34in Ultrawide Monitor,1,379.99,2019-09-13 21:54:00,602 Willow St, Boston,MA,02215 +257009,34in Ultrawide Monitor,1,379.99,2019-09-09 11:43:00,178 10th St, Los Angeles,CA,90001 +257010,27in FHD Monitor,1,149.99,2019-09-23 12:03:00,423 Center St, San Francisco,CA,94016 +257011,Google Phone,1,600.0,2019-09-15 19:57:00,179 Jefferson St, Dallas,TX,75001 +257012,AA Batteries (4-pack),1,3.84,2019-09-12 18:33:00,255 9th St, Austin,TX,73301 +257013,AAA Batteries (4-pack),3,2.99,2019-09-21 11:43:00,666 River St, Seattle,WA,98101 +257014,AAA Batteries (4-pack),1,2.99,2019-09-01 20:59:00,237 Wilson St, Los Angeles,CA,90001 +257015,Wired Headphones,1,11.99,2019-09-19 21:12:00,49 Lakeview St, San Francisco,CA,94016 +257016,Bose SoundSport Headphones,1,99.99,2019-09-07 17:15:00,739 Lincoln St, San Francisco,CA,94016 +257017,AAA Batteries (4-pack),3,2.99,2019-10-01 03:14:00,545 Washington St, San Francisco,CA,94016 +257018,AAA Batteries (4-pack),1,2.99,2019-09-07 21:14:00,22 Jackson St, Dallas,TX,75001 +257019,ThinkPad Laptop,1,999.99,2019-09-20 11:23:00,57 Sunset St, Atlanta,GA,30301 +257020,Wired Headphones,1,11.99,2019-09-19 22:14:00,771 11th St, San Francisco,CA,94016 +257021,Wired Headphones,1,11.99,2019-09-29 19:15:00,788 Washington St, Portland,OR,97035 +257022,AAA Batteries (4-pack),3,2.99,2019-09-10 19:59:00,937 Wilson St, Portland,OR,97035 +257023,USB-C Charging Cable,1,11.95,2019-09-30 07:28:00,255 5th St, San Francisco,CA,94016 +257024,Bose SoundSport Headphones,1,99.99,2019-09-06 10:54:00,820 Jefferson St, Los Angeles,CA,90001 +257025,AA Batteries (4-pack),1,3.84,2019-09-21 10:07:00,89 Lakeview St, Seattle,WA,98101 +257026,Lightning Charging Cable,1,14.95,2019-09-15 20:13:00,12 Main St, Los Angeles,CA,90001 +257027,ThinkPad Laptop,1,999.99,2019-09-10 12:01:00,997 Ridge St, Portland,ME,04101 +257028,AAA Batteries (4-pack),2,2.99,2019-09-20 11:44:00,742 Cherry St, Los Angeles,CA,90001 +257029,iPhone,1,700.0,2019-09-17 13:37:00,510 7th St, Seattle,WA,98101 +257030,Lightning Charging Cable,1,14.95,2019-09-04 09:58:00,138 9th St, San Francisco,CA,94016 +257031,AA Batteries (4-pack),1,3.84,2019-09-18 13:42:00,48 Lakeview St, Atlanta,GA,30301 +257032,AAA Batteries (4-pack),1,2.99,2019-09-26 12:30:00,273 Pine St, Dallas,TX,75001 +257033,AAA Batteries (4-pack),1,2.99,2019-09-11 19:01:00,433 5th St, San Francisco,CA,94016 +257034,Lightning Charging Cable,1,14.95,2019-09-28 23:11:00,414 1st St, Austin,TX,73301 +257035,USB-C Charging Cable,1,11.95,2019-09-11 12:49:00,911 1st St, Los Angeles,CA,90001 +257036,USB-C Charging Cable,1,11.95,2019-09-21 22:34:00,512 14th St, Los Angeles,CA,90001 +257037,Lightning Charging Cable,1,14.95,2019-09-20 09:45:00,929 12th St, Dallas,TX,75001 +257038,USB-C Charging Cable,1,11.95,2019-09-17 05:12:00,335 Hill St, Seattle,WA,98101 +257039,LG Washing Machine,1,600.0,2019-09-10 22:15:00,634 5th St, Boston,MA,02215 +257040,27in FHD Monitor,1,149.99,2019-09-05 12:51:00,195 Johnson St, Los Angeles,CA,90001 +257041,Bose SoundSport Headphones,1,99.99,2019-09-29 11:55:00,500 Maple St, Boston,MA,02215 +257042,USB-C Charging Cable,1,11.95,2019-09-11 02:16:00,983 Walnut St, Portland,OR,97035 +257043,Wired Headphones,1,11.99,2019-09-03 16:34:00,262 Chestnut St, Boston,MA,02215 +257044,Macbook Pro Laptop,1,1700.0,2019-09-26 03:16:00,68 Meadow St, Los Angeles,CA,90001 +257045,AA Batteries (4-pack),1,3.84,2019-09-26 18:30:00,602 1st St, New York City,NY,10001 +257046,Bose SoundSport Headphones,1,99.99,2019-09-25 16:49:00,22 Willow St, Seattle,WA,98101 +257047,Wired Headphones,1,11.99,2019-09-01 20:52:00,466 Johnson St, Atlanta,GA,30301 +257048,Apple Airpods Headphones,1,150.0,2019-09-23 12:32:00,645 Cedar St, New York City,NY,10001 +257049,AA Batteries (4-pack),1,3.84,2019-09-12 19:21:00,895 7th St, Seattle,WA,98101 +257050,34in Ultrawide Monitor,1,379.99,2019-09-04 14:10:00,549 8th St, Los Angeles,CA,90001 +257051,AA Batteries (4-pack),1,3.84,2019-09-12 20:48:00,505 Cherry St, New York City,NY,10001 +257052,27in FHD Monitor,1,149.99,2019-09-23 15:52:00,517 Willow St, New York City,NY,10001 +257053,20in Monitor,1,109.99,2019-09-24 15:53:00,725 13th St, San Francisco,CA,94016 +257054,Vareebadd Phone,1,400.0,2019-09-22 17:09:00,219 Wilson St, New York City,NY,10001 +257055,AAA Batteries (4-pack),1,2.99,2019-09-23 17:36:00,930 Cherry St, San Francisco,CA,94016 +257056,Bose SoundSport Headphones,1,99.99,2019-09-03 15:11:00,238 Main St, Boston,MA,02215 +257057,AAA Batteries (4-pack),1,2.99,2019-09-14 23:34:00,22 Johnson St, Seattle,WA,98101 +257058,27in FHD Monitor,1,149.99,2019-09-22 00:12:00,88 4th St, Portland,OR,97035 +257059,Lightning Charging Cable,1,14.95,2019-09-19 13:56:00,325 South St, Atlanta,GA,30301 +257060,AA Batteries (4-pack),1,3.84,2019-09-01 11:38:00,966 Center St, Seattle,WA,98101 +257061,USB-C Charging Cable,1,11.95,2019-09-16 22:09:00,326 River St, Los Angeles,CA,90001 +257062,Google Phone,1,600.0,2019-09-24 10:00:00,778 Willow St, Atlanta,GA,30301 +257063,AAA Batteries (4-pack),1,2.99,2019-09-15 00:36:00,305 1st St, San Francisco,CA,94016 +257064,27in 4K Gaming Monitor,1,389.99,2019-09-10 14:52:00,134 11th St, Los Angeles,CA,90001 +257065,20in Monitor,1,109.99,2019-09-08 10:57:00,39 7th St, Seattle,WA,98101 +257065,Apple Airpods Headphones,1,150.0,2019-09-08 10:57:00,39 7th St, Seattle,WA,98101 +257066,USB-C Charging Cable,1,11.95,2019-09-14 09:55:00,298 14th St, Portland,OR,97035 +257067,ThinkPad Laptop,1,999.99,2019-09-06 04:44:00,703 Dogwood St, Atlanta,GA,30301 +257068,34in Ultrawide Monitor,1,379.99,2019-09-22 21:56:00,611 Spruce St, New York City,NY,10001 +257069,AAA Batteries (4-pack),1,2.99,2019-09-07 17:04:00,63 Hickory St, Los Angeles,CA,90001 +257070,Bose SoundSport Headphones,1,99.99,2019-09-29 16:28:00,385 Lakeview St, San Francisco,CA,94016 +257071,Lightning Charging Cable,1,14.95,2019-09-16 09:49:00,71 Lincoln St, Austin,TX,73301 +257072,Lightning Charging Cable,1,14.95,2019-09-05 18:31:00,190 Spruce St, Portland,ME,04101 +257073,Wired Headphones,1,11.99,2019-09-07 12:02:00,324 11th St, New York City,NY,10001 +257074,20in Monitor,1,109.99,2019-09-16 07:26:00,38 Washington St, San Francisco,CA,94016 +257075,Apple Airpods Headphones,1,150.0,2019-09-20 14:25:00,319 1st St, San Francisco,CA,94016 +257076,USB-C Charging Cable,2,11.95,2019-09-23 11:00:00,183 2nd St, Austin,TX,73301 +257077,Wired Headphones,1,11.99,2019-09-01 10:04:00,253 Sunset St, Los Angeles,CA,90001 +257078,USB-C Charging Cable,1,11.95,2019-09-04 11:58:00,770 2nd St, San Francisco,CA,94016 +257079,iPhone,1,700.0,2019-09-05 22:55:00,968 10th St, Portland,OR,97035 +257079,Macbook Pro Laptop,1,1700.0,2019-09-05 22:55:00,968 10th St, Portland,OR,97035 +257080,27in 4K Gaming Monitor,1,389.99,2019-09-03 20:09:00,521 Madison St, Portland,OR,97035 +257081,USB-C Charging Cable,1,11.95,2019-09-22 05:41:00,480 Hill St, Atlanta,GA,30301 +257082,USB-C Charging Cable,1,11.95,2019-09-20 14:57:00,238 Jackson St, Dallas,TX,75001 +257083,AA Batteries (4-pack),1,3.84,2019-09-05 23:02:00,450 Chestnut St, New York City,NY,10001 +257084,AAA Batteries (4-pack),2,2.99,2019-09-14 21:33:00,334 Lincoln St, Dallas,TX,75001 +257085,27in FHD Monitor,1,149.99,2019-09-01 14:01:00,295 14th St, San Francisco,CA,94016 +257086,20in Monitor,1,109.99,2019-09-14 09:29:00,889 Dogwood St, Seattle,WA,98101 +257087,AAA Batteries (4-pack),2,2.99,2019-09-25 20:49:00,528 Pine St, San Francisco,CA,94016 +257088,Lightning Charging Cable,1,14.95,2019-09-08 21:27:00,196 Forest St, New York City,NY,10001 +257089,Lightning Charging Cable,1,14.95,2019-09-11 20:11:00,398 Ridge St, Los Angeles,CA,90001 +257090,Lightning Charging Cable,2,14.95,2019-09-12 09:02:00,719 Johnson St, Dallas,TX,75001 +257091,Wired Headphones,1,11.99,2019-09-22 13:51:00,442 12th St, New York City,NY,10001 +257092,USB-C Charging Cable,1,11.95,2019-09-26 18:19:00,601 Sunset St, Boston,MA,02215 +257093,Macbook Pro Laptop,1,1700.0,2019-09-01 22:14:00,365 Hill St, Seattle,WA,98101 +257094,Lightning Charging Cable,1,14.95,2019-09-21 20:52:00,49 Dogwood St, Los Angeles,CA,90001 +257095,27in 4K Gaming Monitor,1,389.99,2019-09-03 11:40:00,138 Hickory St, Austin,TX,73301 +257096,27in FHD Monitor,1,149.99,2019-09-15 22:33:00,753 Cedar St, Dallas,TX,75001 +257097,Wired Headphones,2,11.99,2019-09-05 06:49:00,968 Spruce St, Boston,MA,02215 +257098,Macbook Pro Laptop,1,1700.0,2019-09-01 18:43:00,92 1st St, Atlanta,GA,30301 +257099,Macbook Pro Laptop,1,1700.0,2019-09-14 16:08:00,18 Lake St, Portland,OR,97035 +257100,AA Batteries (4-pack),2,3.84,2019-09-02 13:46:00,460 13th St, Seattle,WA,98101 +257101,AA Batteries (4-pack),1,3.84,2019-09-02 11:09:00,804 Sunset St, Seattle,WA,98101 +257102,AAA Batteries (4-pack),4,2.99,2019-09-22 12:50:00,379 14th St, Portland,OR,97035 +257103,27in 4K Gaming Monitor,1,389.99,2019-09-18 17:41:00,817 Forest St, San Francisco,CA,94016 +257104,20in Monitor,1,109.99,2019-09-26 17:38:00,912 13th St, Los Angeles,CA,90001 +257105,AAA Batteries (4-pack),1,2.99,2019-09-07 12:19:00,268 Maple St, San Francisco,CA,94016 +257106,27in FHD Monitor,1,149.99,2019-09-12 01:34:00,570 Cherry St, Atlanta,GA,30301 +257107,Bose SoundSport Headphones,1,99.99,2019-09-09 20:50:00,831 10th St, Atlanta,GA,30301 +257108,Bose SoundSport Headphones,1,99.99,2019-09-12 12:45:00,96 Willow St, Los Angeles,CA,90001 +257109,27in 4K Gaming Monitor,1,389.99,2019-09-14 20:09:00,120 13th St, New York City,NY,10001 +257110,27in FHD Monitor,1,149.99,2019-09-03 09:01:00,696 9th St, Los Angeles,CA,90001 +257111,AA Batteries (4-pack),3,3.84,2019-09-27 11:16:00,684 South St, Los Angeles,CA,90001 +257112,34in Ultrawide Monitor,1,379.99,2019-09-28 21:24:00,869 1st St, Portland,OR,97035 +257113,AAA Batteries (4-pack),1,2.99,2019-09-19 05:37:00,122 Lake St, Seattle,WA,98101 +257114,AA Batteries (4-pack),1,3.84,2019-09-23 05:16:00,179 9th St, Portland,OR,97035 +257115,ThinkPad Laptop,1,999.99,2019-09-11 20:10:00,401 Spruce St, Dallas,TX,75001 +257116,Flatscreen TV,1,300.0,2019-09-04 17:03:00,257 Cherry St, Los Angeles,CA,90001 +257117,34in Ultrawide Monitor,1,379.99,2019-09-23 22:52:00,779 Hickory St, Atlanta,GA,30301 +257118,AA Batteries (4-pack),1,3.84,2019-09-08 17:55:00,814 Lakeview St, San Francisco,CA,94016 +257119,20in Monitor,1,109.99,2019-09-25 13:13:00,384 Main St, Dallas,TX,75001 +257120,AAA Batteries (4-pack),3,2.99,2019-09-22 14:44:00,115 Pine St, Atlanta,GA,30301 +257121,USB-C Charging Cable,2,11.95,2019-09-12 01:25:00,619 14th St, Atlanta,GA,30301 +257122,Bose SoundSport Headphones,1,99.99,2019-09-30 19:42:00,402 Forest St, Boston,MA,02215 +257123,USB-C Charging Cable,2,11.95,2019-09-02 15:05:00,36 Spruce St, Boston,MA,02215 +257124,27in FHD Monitor,1,149.99,2019-09-30 20:53:00,586 1st St, San Francisco,CA,94016 +257125,USB-C Charging Cable,3,11.95,2019-09-05 19:04:00,643 5th St, Boston,MA,02215 +257126,USB-C Charging Cable,1,11.95,2019-09-04 09:38:00,404 Highland St, Boston,MA,02215 +257127,Wired Headphones,1,11.99,2019-09-02 22:09:00,731 River St, Los Angeles,CA,90001 +257128,USB-C Charging Cable,1,11.95,2019-09-26 12:48:00,893 Chestnut St, Portland,OR,97035 +257129,USB-C Charging Cable,1,11.95,2019-09-14 13:19:00,28 8th St, Portland,ME,04101 +257130,27in 4K Gaming Monitor,1,389.99,2019-09-24 15:50:00,588 Walnut St, Los Angeles,CA,90001 +257131,27in 4K Gaming Monitor,1,389.99,2019-09-22 22:14:00,212 Lake St, Los Angeles,CA,90001 +257132,AA Batteries (4-pack),1,3.84,2019-09-07 13:24:00,337 1st St, Los Angeles,CA,90001 +257133,USB-C Charging Cable,1,11.95,2019-09-03 11:43:00,775 4th St, Atlanta,GA,30301 +257134,Lightning Charging Cable,1,14.95,2019-09-18 18:41:00,637 9th St, Los Angeles,CA,90001 +257135,Wired Headphones,1,11.99,2019-09-12 09:03:00,790 Adams St, Seattle,WA,98101 +257136,AAA Batteries (4-pack),2,2.99,2019-09-10 18:05:00,630 Maple St, New York City,NY,10001 +257137,Wired Headphones,1,11.99,2019-09-11 12:31:00,666 Forest St, Los Angeles,CA,90001 +257138,27in FHD Monitor,2,149.99,2019-09-16 20:23:00,827 Jefferson St, San Francisco,CA,94016 +257139,Lightning Charging Cable,1,14.95,2019-09-21 23:59:00,838 Adams St, San Francisco,CA,94016 +257140,Wired Headphones,1,11.99,2019-09-12 15:54:00,127 Madison St, San Francisco,CA,94016 +257141,AA Batteries (4-pack),2,3.84,2019-09-16 22:41:00,265 6th St, San Francisco,CA,94016 +257142,USB-C Charging Cable,1,11.95,2019-09-03 20:55:00,408 River St, San Francisco,CA,94016 +257143,Bose SoundSport Headphones,2,99.99,2019-09-23 12:17:00,730 13th St, Los Angeles,CA,90001 +257144,AAA Batteries (4-pack),1,2.99,2019-09-15 09:20:00,353 Maple St, San Francisco,CA,94016 +257145,AA Batteries (4-pack),1,3.84,2019-09-14 12:39:00,849 8th St, Seattle,WA,98101 +257146,AA Batteries (4-pack),1,3.84,2019-09-01 10:39:00,17 6th St, San Francisco,CA,94016 +257147,20in Monitor,1,109.99,2019-09-27 19:46:00,864 13th St, San Francisco,CA,94016 +257148,Flatscreen TV,1,300.0,2019-09-17 18:49:00,807 South St, Los Angeles,CA,90001 +257149,AAA Batteries (4-pack),3,2.99,2019-09-06 08:23:00,83 Hill St, Los Angeles,CA,90001 +257150,USB-C Charging Cable,1,11.95,2019-09-18 07:34:00,83 Adams St, Dallas,TX,75001 +257151,LG Dryer,1,600.0,2019-09-13 21:48:00,738 Cedar St, Atlanta,GA,30301 +257152,Apple Airpods Headphones,1,150.0,2019-09-14 11:46:00,188 9th St, New York City,NY,10001 +257153,Apple Airpods Headphones,1,150.0,2019-09-07 13:03:00,420 Chestnut St, Los Angeles,CA,90001 +257154,USB-C Charging Cable,1,11.95,2019-09-28 13:53:00,295 Adams St, Los Angeles,CA,90001 +257155,AA Batteries (4-pack),2,3.84,2019-09-19 15:45:00,368 Park St, Atlanta,GA,30301 +257156,AAA Batteries (4-pack),1,2.99,2019-09-17 15:33:00,608 Jackson St, San Francisco,CA,94016 +257157,Lightning Charging Cable,1,14.95,2019-09-04 09:32:00,798 11th St, Los Angeles,CA,90001 +257158,Bose SoundSport Headphones,1,99.99,2019-09-12 13:37:00,753 Highland St, Los Angeles,CA,90001 +257159,USB-C Charging Cable,1,11.95,2019-09-06 17:12:00,724 14th St, New York City,NY,10001 +257160,USB-C Charging Cable,1,11.95,2019-09-30 11:06:00,365 Pine St, Boston,MA,02215 +257161,AA Batteries (4-pack),2,3.84,2019-09-16 10:15:00,691 2nd St, Boston,MA,02215 +257162,Wired Headphones,2,11.99,2019-09-21 19:29:00,31 Hickory St, New York City,NY,10001 +257163,27in 4K Gaming Monitor,1,389.99,2019-09-08 17:20:00,160 8th St, San Francisco,CA,94016 +257164,USB-C Charging Cable,1,11.95,2019-09-28 14:36:00,876 Pine St, San Francisco,CA,94016 +257165,Bose SoundSport Headphones,1,99.99,2019-09-03 21:17:00,321 Church St, Boston,MA,02215 +257166,Bose SoundSport Headphones,1,99.99,2019-09-01 10:00:00,645 8th St, New York City,NY,10001 +257167,27in FHD Monitor,1,149.99,2019-09-23 21:22:00,739 Church St, Austin,TX,73301 +257168,Wired Headphones,1,11.99,2019-09-12 14:43:00,796 Park St, San Francisco,CA,94016 +257169,Bose SoundSport Headphones,1,99.99,2019-09-13 16:43:00,946 11th St, Atlanta,GA,30301 +257170,USB-C Charging Cable,1,11.95,2019-09-02 10:07:00,514 Cedar St, San Francisco,CA,94016 +257171,AAA Batteries (4-pack),3,2.99,2019-09-11 18:28:00,649 1st St, Boston,MA,02215 +257172,Bose SoundSport Headphones,1,99.99,2019-09-20 22:35:00,58 4th St, New York City,NY,10001 +257173,USB-C Charging Cable,1,11.95,2019-09-01 06:09:00,9 1st St, San Francisco,CA,94016 +257174,USB-C Charging Cable,1,11.95,2019-09-17 21:56:00,90 Jackson St, New York City,NY,10001 +257175,Apple Airpods Headphones,1,150.0,2019-09-29 18:11:00,378 2nd St, Los Angeles,CA,90001 +257176,AAA Batteries (4-pack),1,2.99,2019-09-06 15:43:00,253 Maple St, New York City,NY,10001 +257177,Lightning Charging Cable,1,14.95,2019-09-06 23:07:00,857 South St, Boston,MA,02215 +257178,27in FHD Monitor,1,149.99,2019-09-15 10:18:00,907 9th St, San Francisco,CA,94016 +257179,Lightning Charging Cable,1,14.95,2019-09-29 13:07:00,543 8th St, Portland,OR,97035 +257180,iPhone,1,700.0,2019-09-11 06:31:00,150 9th St, Boston,MA,02215 +257181,27in 4K Gaming Monitor,1,389.99,2019-09-22 21:08:00,74 Pine St, San Francisco,CA,94016 +257182,Wired Headphones,1,11.99,2019-09-13 20:28:00,214 Ridge St, Portland,OR,97035 +257183,Bose SoundSport Headphones,1,99.99,2019-09-14 10:48:00,319 Cherry St, New York City,NY,10001 +257184,Lightning Charging Cable,1,14.95,2019-09-12 10:29:00,195 Dogwood St, Boston,MA,02215 +257185,Wired Headphones,1,11.99,2019-09-02 16:30:00,875 Willow St, San Francisco,CA,94016 +257186,27in 4K Gaming Monitor,1,389.99,2019-09-02 00:57:00,443 Jackson St, Atlanta,GA,30301 +257187,27in FHD Monitor,1,149.99,2019-09-13 19:38:00,557 14th St, Atlanta,GA,30301 +257188,Vareebadd Phone,1,400.0,2019-09-11 21:53:00,714 Cedar St, Dallas,TX,75001 +257189,Wired Headphones,1,11.99,2019-09-09 11:13:00,934 Jefferson St, Portland,OR,97035 +257190,Wired Headphones,1,11.99,2019-09-13 07:06:00,438 5th St, San Francisco,CA,94016 +257191,USB-C Charging Cable,1,11.95,2019-09-07 02:14:00,481 Pine St, San Francisco,CA,94016 +257192,USB-C Charging Cable,2,11.95,2019-09-24 13:07:00,550 Meadow St, Boston,MA,02215 +257193,Apple Airpods Headphones,1,150.0,2019-09-22 20:20:00,924 Johnson St, New York City,NY,10001 +257194,Bose SoundSport Headphones,1,99.99,2019-09-02 22:33:00,987 River St, San Francisco,CA,94016 +257195,AA Batteries (4-pack),1,3.84,2019-09-16 06:22:00,943 5th St, Los Angeles,CA,90001 +257196,Flatscreen TV,1,300.0,2019-09-22 09:45:00,413 6th St, Dallas,TX,75001 +257197,Lightning Charging Cable,2,14.95,2019-09-02 12:06:00,476 Walnut St, San Francisco,CA,94016 +257198,AAA Batteries (4-pack),2,2.99,2019-09-21 12:33:00,200 Walnut St, Los Angeles,CA,90001 +257199,AA Batteries (4-pack),1,3.84,2019-09-27 15:48:00,287 Sunset St, Austin,TX,73301 +257200,Bose SoundSport Headphones,1,99.99,2019-09-17 21:12:00,445 Center St, Atlanta,GA,30301 +257201,Wired Headphones,1,11.99,2019-09-18 13:25:00,548 Willow St, San Francisco,CA,94016 +257202,AAA Batteries (4-pack),1,2.99,2019-09-24 21:27:00,508 Church St, San Francisco,CA,94016 +257203,Apple Airpods Headphones,1,150.0,2019-09-07 14:30:00,665 Forest St, Boston,MA,02215 +257203,AAA Batteries (4-pack),1,2.99,2019-09-07 14:30:00,665 Forest St, Boston,MA,02215 +257204,Apple Airpods Headphones,1,150.0,2019-09-29 19:01:00,358 Jefferson St, Boston,MA,02215 +257205,AAA Batteries (4-pack),1,2.99,2019-09-16 12:36:00,966 Jefferson St, New York City,NY,10001 +257206,Flatscreen TV,1,300.0,2019-09-20 14:44:00,577 Walnut St, Seattle,WA,98101 +257207,Apple Airpods Headphones,1,150.0,2019-09-20 12:45:00,452 Church St, Dallas,TX,75001 +257208,AAA Batteries (4-pack),1,2.99,2019-09-08 17:48:00,763 7th St, Portland,OR,97035 +257209,AAA Batteries (4-pack),1,2.99,2019-09-26 13:15:00,569 Main St, Boston,MA,02215 +257210,Bose SoundSport Headphones,1,99.99,2019-09-21 13:02:00,699 Lake St, Los Angeles,CA,90001 +257211,USB-C Charging Cable,1,11.95,2019-09-26 18:19:00,532 7th St, San Francisco,CA,94016 +257212,AAA Batteries (4-pack),1,2.99,2019-09-13 18:00:00,668 Cherry St, Seattle,WA,98101 +257213,AAA Batteries (4-pack),1,2.99,2019-09-18 06:22:00,452 Jefferson St, New York City,NY,10001 +257214,USB-C Charging Cable,1,11.95,2019-09-15 11:29:00,471 8th St, San Francisco,CA,94016 +257215,AAA Batteries (4-pack),1,2.99,2019-09-24 13:09:00,308 Cedar St, New York City,NY,10001 +257216,Bose SoundSport Headphones,1,99.99,2019-09-29 13:17:00,417 Cherry St, San Francisco,CA,94016 +257217,AA Batteries (4-pack),1,3.84,2019-09-17 10:59:00,72 Adams St, Los Angeles,CA,90001 +257218,Wired Headphones,1,11.99,2019-09-02 10:58:00,268 14th St, Atlanta,GA,30301 +257219,AA Batteries (4-pack),1,3.84,2019-09-08 12:06:00,720 Johnson St, Austin,TX,73301 +257220,27in 4K Gaming Monitor,1,389.99,2019-09-12 15:42:00,678 6th St, San Francisco,CA,94016 +257221,27in FHD Monitor,1,149.99,2019-09-28 07:21:00,415 Madison St, New York City,NY,10001 +257222,27in 4K Gaming Monitor,1,389.99,2019-09-05 08:20:00,654 Church St, Los Angeles,CA,90001 +257223,34in Ultrawide Monitor,1,379.99,2019-09-30 15:12:00,744 Pine St, San Francisco,CA,94016 +257224,34in Ultrawide Monitor,1,379.99,2019-09-09 00:35:00,93 Walnut St, Los Angeles,CA,90001 +257224,Flatscreen TV,1,300.0,2019-09-09 00:35:00,93 Walnut St, Los Angeles,CA,90001 +257225,USB-C Charging Cable,1,11.95,2019-09-21 08:56:00,455 8th St, Boston,MA,02215 +257226,27in FHD Monitor,1,149.99,2019-09-20 10:47:00,376 Hill St, San Francisco,CA,94016 +257227,27in 4K Gaming Monitor,1,389.99,2019-09-25 15:06:00,785 5th St, Boston,MA,02215 +257228,AAA Batteries (4-pack),1,2.99,2019-09-02 18:55:00,823 Lake St, Dallas,TX,75001 +257229,Lightning Charging Cable,1,14.95,2019-09-14 23:34:00,484 12th St, Dallas,TX,75001 +257230,USB-C Charging Cable,1,11.95,2019-09-25 17:33:00,652 Washington St, San Francisco,CA,94016 +257231,Flatscreen TV,1,300.0,2019-09-14 17:34:00,629 Lakeview St, Seattle,WA,98101 +257232,USB-C Charging Cable,1,11.95,2019-09-09 15:42:00,448 2nd St, Atlanta,GA,30301 +257233,Google Phone,1,600.0,2019-09-12 10:16:00,942 South St, San Francisco,CA,94016 +257234,AA Batteries (4-pack),1,3.84,2019-09-02 13:32:00,876 Meadow St, Dallas,TX,75001 +257235,ThinkPad Laptop,1,999.99,2019-09-06 19:09:00,662 Lincoln St, Los Angeles,CA,90001 +257236,Wired Headphones,1,11.99,2019-09-19 18:51:00,61 Dogwood St, Los Angeles,CA,90001 +257237,AAA Batteries (4-pack),1,2.99,2019-09-16 23:59:00,75 5th St, Atlanta,GA,30301 +257238,Lightning Charging Cable,1,14.95,2019-09-10 19:20:00,611 Willow St, Los Angeles,CA,90001 +257239,27in FHD Monitor,1,149.99,2019-09-04 22:33:00,298 Washington St, San Francisco,CA,94016 +257240,ThinkPad Laptop,1,999.99,2019-09-22 18:25:00,969 13th St, Boston,MA,02215 +257241,USB-C Charging Cable,1,11.95,2019-09-22 21:11:00,841 Washington St, Dallas,TX,75001 +257242,AAA Batteries (4-pack),4,2.99,2019-09-23 17:50:00,421 Jefferson St, Austin,TX,73301 +257243,Flatscreen TV,1,300.0,2019-09-21 12:31:00,804 Cedar St, San Francisco,CA,94016 +257244,AA Batteries (4-pack),1,3.84,2019-09-28 12:06:00,173 Elm St, New York City,NY,10001 +257245,27in 4K Gaming Monitor,1,389.99,2019-09-19 21:20:00,729 Main St, Los Angeles,CA,90001 +257246,Wired Headphones,1,11.99,2019-09-13 15:45:00,941 5th St, San Francisco,CA,94016 +257247,Lightning Charging Cable,1,14.95,2019-09-16 18:45:00,179 Wilson St, New York City,NY,10001 +257248,AAA Batteries (4-pack),2,2.99,2019-09-27 20:51:00,889 12th St, Los Angeles,CA,90001 +257249,USB-C Charging Cable,1,11.95,2019-09-02 17:24:00,380 Forest St, San Francisco,CA,94016 +257250,iPhone,1,700.0,2019-09-12 14:34:00,157 10th St, Austin,TX,73301 +257251,AA Batteries (4-pack),1,3.84,2019-09-17 20:56:00,873 South St, San Francisco,CA,94016 +257252,20in Monitor,1,109.99,2019-09-19 14:18:00,337 South St, Portland,OR,97035 +257253,Bose SoundSport Headphones,1,99.99,2019-09-20 23:50:00,666 Park St, Boston,MA,02215 +257254,Wired Headphones,1,11.99,2019-09-10 07:46:00,629 River St, Portland,OR,97035 +257255,AA Batteries (4-pack),1,3.84,2019-09-07 23:50:00,224 Jefferson St, Portland,ME,04101 +257256,AAA Batteries (4-pack),2,2.99,2019-09-06 10:53:00,748 Willow St, Seattle,WA,98101 +257257,Wired Headphones,1,11.99,2019-09-06 16:51:00,752 Center St, Atlanta,GA,30301 +257258,Lightning Charging Cable,1,14.95,2019-09-17 23:44:00,79 Chestnut St, Atlanta,GA,30301 +257259,Macbook Pro Laptop,1,1700.0,2019-09-13 22:29:00,50 West St, Los Angeles,CA,90001 +257260,Bose SoundSport Headphones,1,99.99,2019-09-16 11:47:00,225 4th St, San Francisco,CA,94016 +257261,AAA Batteries (4-pack),1,2.99,2019-09-03 01:39:00,424 Willow St, New York City,NY,10001 +257262,AAA Batteries (4-pack),2,2.99,2019-09-09 20:28:00,123 4th St, New York City,NY,10001 +257263,AA Batteries (4-pack),1,3.84,2019-09-18 23:38:00,246 Jefferson St, San Francisco,CA,94016 +257264,27in 4K Gaming Monitor,1,389.99,2019-09-23 10:51:00,30 Hickory St, San Francisco,CA,94016 +257265,27in FHD Monitor,1,149.99,2019-09-22 21:40:00,166 6th St, New York City,NY,10001 +257266,USB-C Charging Cable,1,11.95,2019-09-17 17:59:00,908 Lake St, San Francisco,CA,94016 +257267,Lightning Charging Cable,1,14.95,2019-09-17 23:24:00,84 Elm St, Los Angeles,CA,90001 +257268,iPhone,1,700.0,2019-09-12 11:23:00,457 Jackson St, San Francisco,CA,94016 +257269,Bose SoundSport Headphones,1,99.99,2019-09-22 15:20:00,870 Ridge St, San Francisco,CA,94016 +257270,Bose SoundSport Headphones,1,99.99,2019-09-19 02:21:00,721 7th St, Dallas,TX,75001 +257271,Wired Headphones,1,11.99,2019-09-30 21:20:00,685 Spruce St, San Francisco,CA,94016 +257272,USB-C Charging Cable,1,11.95,2019-09-16 22:45:00,839 2nd St, San Francisco,CA,94016 +257273,AA Batteries (4-pack),1,3.84,2019-09-08 00:25:00,825 Spruce St, San Francisco,CA,94016 +257274,AAA Batteries (4-pack),1,2.99,2019-09-02 19:46:00,897 Forest St, San Francisco,CA,94016 +257275,USB-C Charging Cable,1,11.95,2019-09-26 18:52:00,171 Center St, New York City,NY,10001 +257276,USB-C Charging Cable,1,11.95,2019-09-02 13:10:00,26 Adams St, Los Angeles,CA,90001 +257277,Apple Airpods Headphones,1,150.0,2019-09-13 00:35:00,260 12th St, San Francisco,CA,94016 +257278,Wired Headphones,1,11.99,2019-09-10 12:56:00,357 5th St, New York City,NY,10001 +257279,Lightning Charging Cable,1,14.95,2019-09-14 00:38:00,187 South St, Austin,TX,73301 +257280,ThinkPad Laptop,1,999.99,2019-09-21 15:34:00,331 11th St, San Francisco,CA,94016 +257281,Bose SoundSport Headphones,1,99.99,2019-09-03 09:49:00,510 Pine St, San Francisco,CA,94016 +257282,Lightning Charging Cable,1,14.95,2019-09-06 15:20:00,817 1st St, San Francisco,CA,94016 +257283,Wired Headphones,1,11.99,2019-09-25 14:34:00,185 Center St, San Francisco,CA,94016 +257284,34in Ultrawide Monitor,1,379.99,2019-09-26 15:50:00,752 8th St, New York City,NY,10001 +257285,Apple Airpods Headphones,1,150.0,2019-09-24 08:45:00,460 Meadow St, San Francisco,CA,94016 +257286,Apple Airpods Headphones,1,150.0,2019-09-21 10:41:00,4 10th St, New York City,NY,10001 +257286,AAA Batteries (4-pack),1,2.99,2019-09-21 10:41:00,4 10th St, New York City,NY,10001 +257287,Lightning Charging Cable,3,14.95,2019-09-05 15:12:00,600 Adams St, San Francisco,CA,94016 +257288,Wired Headphones,1,11.99,2019-09-20 00:20:00,192 Elm St, Austin,TX,73301 +257289,27in 4K Gaming Monitor,1,389.99,2019-09-04 12:18:00,485 West St, San Francisco,CA,94016 +257290,AAA Batteries (4-pack),1,2.99,2019-09-11 15:05:00,999 Church St, Atlanta,GA,30301 +257291,AAA Batteries (4-pack),2,2.99,2019-09-23 00:40:00,206 2nd St, Dallas,TX,75001 +257292,Bose SoundSport Headphones,1,99.99,2019-09-20 08:27:00,408 2nd St, Los Angeles,CA,90001 +257293,AA Batteries (4-pack),3,3.84,2019-09-04 21:05:00,375 4th St, San Francisco,CA,94016 +257294,Lightning Charging Cable,1,14.95,2019-09-07 17:48:00,828 Dogwood St, Seattle,WA,98101 +257295,Wired Headphones,1,11.99,2019-09-24 19:53:00,922 Forest St, San Francisco,CA,94016 +257296,Wired Headphones,1,11.99,2019-09-15 19:48:00,527 Lincoln St, Los Angeles,CA,90001 +257297,AAA Batteries (4-pack),1,2.99,2019-09-19 23:38:00,389 River St, Portland,OR,97035 +257298,USB-C Charging Cable,1,11.95,2019-09-26 19:27:00,914 8th St, New York City,NY,10001 +257299,Apple Airpods Headphones,1,150.0,2019-09-26 09:53:00,973 7th St, Austin,TX,73301 +257300,AAA Batteries (4-pack),4,2.99,2019-09-27 20:12:00,554 Lakeview St, New York City,NY,10001 +257301,Macbook Pro Laptop,1,1700.0,2019-09-03 17:59:00,567 Adams St, San Francisco,CA,94016 +257302,Bose SoundSport Headphones,1,99.99,2019-09-17 02:35:00,907 9th St, New York City,NY,10001 +257303,AAA Batteries (4-pack),3,2.99,2019-09-12 01:11:00,440 2nd St, Seattle,WA,98101 +257304,AA Batteries (4-pack),1,3.84,2019-09-10 20:59:00,518 Jefferson St, New York City,NY,10001 +257305,Wired Headphones,1,11.99,2019-09-24 03:04:00,79 Madison St, Dallas,TX,75001 +257306,AAA Batteries (4-pack),1,2.99,2019-09-12 07:48:00,208 Maple St, Los Angeles,CA,90001 +257307,Lightning Charging Cable,1,14.95,2019-09-02 08:21:00,267 Walnut St, Austin,TX,73301 +257308,Apple Airpods Headphones,1,150.0,2019-09-03 21:06:00,248 Washington St, Austin,TX,73301 +257309,AAA Batteries (4-pack),3,2.99,2019-09-08 13:04:00,566 Lincoln St, San Francisco,CA,94016 +257310,Lightning Charging Cable,1,14.95,2019-09-25 17:14:00,598 Main St, Atlanta,GA,30301 +257311,AAA Batteries (4-pack),3,2.99,2019-09-14 11:28:00,531 Dogwood St, Atlanta,GA,30301 +257312,Lightning Charging Cable,1,14.95,2019-09-17 19:16:00,463 West St, Boston,MA,02215 +257313,Bose SoundSport Headphones,1,99.99,2019-09-17 16:18:00,850 Walnut St, New York City,NY,10001 +257314,Lightning Charging Cable,1,14.95,2019-09-15 09:34:00,830 Meadow St, Boston,MA,02215 +257315,AA Batteries (4-pack),1,3.84,2019-09-13 14:37:00,634 Highland St, San Francisco,CA,94016 +257316,Google Phone,1,600.0,2019-09-02 19:17:00,673 South St, San Francisco,CA,94016 +257317,Wired Headphones,1,11.99,2019-09-04 18:42:00,38 Dogwood St, New York City,NY,10001 +257318,AA Batteries (4-pack),1,3.84,2019-09-08 11:28:00,888 Elm St, Portland,OR,97035 +257319,34in Ultrawide Monitor,1,379.99,2019-09-25 17:56:00,988 Lakeview St, Austin,TX,73301 +257320,27in 4K Gaming Monitor,1,389.99,2019-09-04 02:08:00,694 8th St, Portland,OR,97035 +257321,Google Phone,1,600.0,2019-09-24 13:54:00,557 Forest St, Los Angeles,CA,90001 +257322,Wired Headphones,1,11.99,2019-09-05 16:24:00,440 Jackson St, Dallas,TX,75001 +257323,iPhone,1,700.0,2019-09-22 10:50:00,818 Lincoln St, Los Angeles,CA,90001 +257323,Lightning Charging Cable,1,14.95,2019-09-22 10:50:00,818 Lincoln St, Los Angeles,CA,90001 +257324,USB-C Charging Cable,1,11.95,2019-09-04 09:21:00,100 Elm St, San Francisco,CA,94016 +257325,Bose SoundSport Headphones,1,99.99,2019-09-14 18:25:00,966 Johnson St, Portland,OR,97035 +257326,Wired Headphones,1,11.99,2019-09-22 16:43:00,301 Forest St, New York City,NY,10001 +257327,Bose SoundSport Headphones,1,99.99,2019-09-30 22:08:00,109 Park St, Los Angeles,CA,90001 +257327,Apple Airpods Headphones,1,150.0,2019-09-30 22:08:00,109 Park St, Los Angeles,CA,90001 +257328,Apple Airpods Headphones,1,150.0,2019-09-12 09:44:00,925 4th St, New York City,NY,10001 +257329,Bose SoundSport Headphones,1,99.99,2019-09-03 12:04:00,829 Wilson St, Seattle,WA,98101 +257330,Lightning Charging Cable,1,14.95,2019-09-08 00:19:00,489 10th St, San Francisco,CA,94016 +257331,AA Batteries (4-pack),2,3.84,2019-09-25 05:17:00,288 Forest St, New York City,NY,10001 +257332,AA Batteries (4-pack),1,3.84,2019-09-17 23:46:00,868 Forest St, Seattle,WA,98101 +257333,AAA Batteries (4-pack),3,2.99,2019-09-09 12:55:00,881 6th St, Atlanta,GA,30301 +257334,Wired Headphones,1,11.99,2019-09-04 13:11:00,752 8th St, Seattle,WA,98101 +257335,Macbook Pro Laptop,1,1700.0,2019-09-26 14:34:00,751 10th St, New York City,NY,10001 +257336,Lightning Charging Cable,1,14.95,2019-09-26 13:58:00,220 9th St, Dallas,TX,75001 +257337,Wired Headphones,1,11.99,2019-09-21 09:41:00,668 13th St, Dallas,TX,75001 +257338,USB-C Charging Cable,1,11.95,2019-09-12 19:40:00,513 Jefferson St, Los Angeles,CA,90001 +257339,27in FHD Monitor,1,149.99,2019-09-11 13:05:00,5 Pine St, San Francisco,CA,94016 +257340,Wired Headphones,1,11.99,2019-09-10 12:42:00,326 1st St, Boston,MA,02215 +257341,Apple Airpods Headphones,1,150.0,2019-09-03 18:47:00,496 Madison St, New York City,NY,10001 +257342,Wired Headphones,1,11.99,2019-09-05 08:27:00,81 Highland St, Dallas,TX,75001 +257343,Wired Headphones,1,11.99,2019-09-16 12:58:00,90 Jefferson St, San Francisco,CA,94016 +257344,USB-C Charging Cable,1,11.95,2019-09-26 15:31:00,562 6th St, San Francisco,CA,94016 +257345,Wired Headphones,2,11.99,2019-09-01 12:38:00,78 7th St, Atlanta,GA,30301 +257346,AA Batteries (4-pack),1,3.84,2019-09-01 23:21:00,771 13th St, New York City,NY,10001 +257347,AA Batteries (4-pack),2,3.84,2019-09-10 20:53:00,401 7th St, Portland,OR,97035 +257348,iPhone,1,700.0,2019-09-03 11:51:00,518 Hill St, San Francisco,CA,94016 +257349,USB-C Charging Cable,2,11.95,2019-09-09 00:03:00,11 Hickory St, Los Angeles,CA,90001 +257350,AA Batteries (4-pack),2,3.84,2019-09-14 13:30:00,760 10th St, Boston,MA,02215 +257351,Vareebadd Phone,1,400.0,2019-09-17 13:31:00,752 14th St, San Francisco,CA,94016 +257352,Bose SoundSport Headphones,1,99.99,2019-09-24 13:25:00,584 Adams St, San Francisco,CA,94016 +257353,34in Ultrawide Monitor,1,379.99,2019-09-08 23:54:00,807 Lake St, San Francisco,CA,94016 +257354,Bose SoundSport Headphones,1,99.99,2019-09-23 19:52:00,188 Maple St, Seattle,WA,98101 +257355,Lightning Charging Cable,1,14.95,2019-09-28 09:39:00,37 5th St, San Francisco,CA,94016 +257356,AA Batteries (4-pack),1,3.84,2019-09-05 19:20:00,980 Lake St, Austin,TX,73301 +257357,34in Ultrawide Monitor,1,379.99,2019-09-29 13:57:00,113 Cedar St, Los Angeles,CA,90001 +257358,Apple Airpods Headphones,1,150.0,2019-09-12 22:41:00,146 Madison St, Dallas,TX,75001 +257359,USB-C Charging Cable,1,11.95,2019-09-18 06:21:00,316 Hickory St, Atlanta,GA,30301 +257360,Lightning Charging Cable,1,14.95,2019-09-30 18:31:00,28 6th St, San Francisco,CA,94016 +257361,Wired Headphones,1,11.99,2019-09-05 17:41:00,652 13th St, Boston,MA,02215 +257362,USB-C Charging Cable,1,11.95,2019-09-29 18:16:00,501 Jefferson St, Dallas,TX,75001 +257363,Lightning Charging Cable,1,14.95,2019-09-29 12:39:00,296 Lakeview St, Austin,TX,73301 +257364,Apple Airpods Headphones,1,150.0,2019-09-25 17:42:00,302 South St, Portland,OR,97035 +257365,27in FHD Monitor,1,149.99,2019-09-16 13:21:00,102 Jefferson St, Seattle,WA,98101 +257366,AA Batteries (4-pack),1,3.84,2019-09-22 18:52:00,916 Washington St, Boston,MA,02215 +257367,Lightning Charging Cable,1,14.95,2019-09-03 13:56:00,834 Willow St, Austin,TX,73301 +257368,Apple Airpods Headphones,1,150.0,2019-09-12 13:02:00,807 Wilson St, San Francisco,CA,94016 +257369,USB-C Charging Cable,1,11.95,2019-09-30 21:07:00,253 7th St, Portland,OR,97035 +257370,AA Batteries (4-pack),1,3.84,2019-09-07 17:55:00,260 Main St, Dallas,TX,75001 +257371,AAA Batteries (4-pack),3,2.99,2019-09-21 10:05:00,156 Sunset St, Dallas,TX,75001 +257372,Bose SoundSport Headphones,1,99.99,2019-09-24 16:10:00,516 8th St, Boston,MA,02215 +257373,Lightning Charging Cable,1,14.95,2019-09-26 17:30:00,257 Center St, Los Angeles,CA,90001 +257374,USB-C Charging Cable,1,11.95,2019-09-02 18:14:00,314 Lincoln St, Atlanta,GA,30301 +257375,LG Dryer,1,600.0,2019-09-18 10:54:00,665 4th St, Los Angeles,CA,90001 +257376,34in Ultrawide Monitor,1,379.99,2019-09-08 15:35:00,387 11th St, San Francisco,CA,94016 +257377,34in Ultrawide Monitor,1,379.99,2019-09-18 11:50:00,506 6th St, San Francisco,CA,94016 +257378,27in 4K Gaming Monitor,1,389.99,2019-09-26 15:24:00,626 Wilson St, Los Angeles,CA,90001 +257379,AAA Batteries (4-pack),1,2.99,2019-09-28 12:30:00,435 Spruce St, Seattle,WA,98101 +257380,AA Batteries (4-pack),1,3.84,2019-09-18 22:01:00,340 Dogwood St, Los Angeles,CA,90001 +257381,AA Batteries (4-pack),3,3.84,2019-09-09 12:56:00,793 Center St, Los Angeles,CA,90001 +257382,AAA Batteries (4-pack),1,2.99,2019-09-05 18:06:00,397 Pine St, Austin,TX,73301 +257382,USB-C Charging Cable,1,11.95,2019-09-05 18:06:00,397 Pine St, Austin,TX,73301 +257383,34in Ultrawide Monitor,1,379.99,2019-09-02 20:05:00,221 4th St, Austin,TX,73301 +257384,Lightning Charging Cable,1,14.95,2019-09-27 18:52:00,952 South St, New York City,NY,10001 +257385,Wired Headphones,1,11.99,2019-09-14 00:12:00,301 Lakeview St, Atlanta,GA,30301 +257386,Flatscreen TV,1,300.0,2019-09-05 09:53:00,949 South St, Austin,TX,73301 +257387,34in Ultrawide Monitor,1,379.99,2019-09-16 14:05:00,729 11th St, Los Angeles,CA,90001 +257388,USB-C Charging Cable,1,11.95,2019-09-17 12:32:00,947 Dogwood St, Boston,MA,02215 +257389,AA Batteries (4-pack),1,3.84,2019-09-22 20:44:00,66 Elm St, Boston,MA,02215 +257390,27in FHD Monitor,1,149.99,2019-09-30 15:34:00,379 Johnson St, Los Angeles,CA,90001 +257391,USB-C Charging Cable,1,11.95,2019-09-18 12:57:00,212 Sunset St, San Francisco,CA,94016 +257392,AAA Batteries (4-pack),1,2.99,2019-09-05 12:28:00,5 Meadow St, New York City,NY,10001 +257393,AAA Batteries (4-pack),1,2.99,2019-09-11 21:18:00,864 Sunset St, San Francisco,CA,94016 +257394,Apple Airpods Headphones,1,150.0,2019-09-29 01:17:00,891 Lakeview St, Portland,ME,04101 +257395,Lightning Charging Cable,1,14.95,2019-09-21 23:28:00,962 Highland St, New York City,NY,10001 +257396,AAA Batteries (4-pack),1,2.99,2019-09-06 21:10:00,927 Cedar St, New York City,NY,10001 +257397,USB-C Charging Cable,1,11.95,2019-09-25 18:32:00,583 8th St, San Francisco,CA,94016 +257398,Wired Headphones,1,11.99,2019-09-21 19:56:00,243 8th St, San Francisco,CA,94016 +257399,Wired Headphones,1,11.99,2019-09-13 15:04:00,278 Johnson St, Boston,MA,02215 +257400,iPhone,1,700.0,2019-09-03 21:15:00,438 Johnson St, Atlanta,GA,30301 +257400,Wired Headphones,1,11.99,2019-09-03 21:15:00,438 Johnson St, Atlanta,GA,30301 +257401,USB-C Charging Cable,1,11.95,2019-09-21 23:06:00,910 South St, San Francisco,CA,94016 +257402,Wired Headphones,1,11.99,2019-09-18 14:32:00,667 Johnson St, Boston,MA,02215 +257403,20in Monitor,1,109.99,2019-09-09 17:55:00,666 Jackson St, Los Angeles,CA,90001 +257404,AA Batteries (4-pack),1,3.84,2019-09-27 10:55:00,331 Lakeview St, Los Angeles,CA,90001 +257405,AAA Batteries (4-pack),2,2.99,2019-09-28 19:38:00,34 Ridge St, Los Angeles,CA,90001 +257406,27in FHD Monitor,1,149.99,2019-09-01 06:49:00,817 Park St, San Francisco,CA,94016 +257407,Google Phone,1,600.0,2019-09-26 09:57:00,458 9th St, Boston,MA,02215 +257408,Apple Airpods Headphones,1,150.0,2019-09-12 12:29:00,470 Park St, Portland,OR,97035 +257409,AA Batteries (4-pack),1,3.84,2019-09-07 12:31:00,393 Cedar St, New York City,NY,10001 +257410,20in Monitor,1,109.99,2019-09-17 12:09:00,828 8th St, New York City,NY,10001 +257411,27in FHD Monitor,1,149.99,2019-09-28 16:58:00,990 Cherry St, Dallas,TX,75001 +257412,Lightning Charging Cable,1,14.95,2019-09-19 12:30:00,517 Hickory St, Atlanta,GA,30301 +257413,Wired Headphones,1,11.99,2019-09-19 18:41:00,185 2nd St, Atlanta,GA,30301 +257414,USB-C Charging Cable,3,11.95,2019-09-05 10:59:00,460 North St, Boston,MA,02215 +257415,USB-C Charging Cable,1,11.95,2019-09-22 11:59:00,674 Cherry St, Los Angeles,CA,90001 +257416,AAA Batteries (4-pack),3,2.99,2019-09-25 11:58:00,157 Wilson St, Atlanta,GA,30301 +257417,Wired Headphones,1,11.99,2019-09-20 22:06:00,185 Lakeview St, Los Angeles,CA,90001 +257418,Apple Airpods Headphones,1,150.0,2019-09-08 13:02:00,953 1st St, Seattle,WA,98101 +257419,LG Washing Machine,1,600.0,2019-09-18 22:12:00,813 Chestnut St, San Francisco,CA,94016 +257420,AA Batteries (4-pack),1,3.84,2019-09-16 14:06:00,843 Highland St, Dallas,TX,75001 +257421,AAA Batteries (4-pack),2,2.99,2019-09-08 10:26:00,61 Chestnut St, New York City,NY,10001 +257422,27in FHD Monitor,1,149.99,2019-09-26 12:26:00,448 14th St, Seattle,WA,98101 +257423,AAA Batteries (4-pack),1,2.99,2019-09-21 15:44:00,157 Jackson St, Boston,MA,02215 +257424,Bose SoundSport Headphones,1,99.99,2019-09-23 20:10:00,487 Madison St, Atlanta,GA,30301 +257425,USB-C Charging Cable,2,11.95,2019-09-27 08:25:00,219 Willow St, San Francisco,CA,94016 +257426,Apple Airpods Headphones,1,150.0,2019-09-11 22:35:00,237 Park St, Seattle,WA,98101 +257427,Wired Headphones,1,11.99,2019-09-04 03:51:00,374 10th St, Los Angeles,CA,90001 +257428,Apple Airpods Headphones,1,150.0,2019-09-08 10:40:00,270 5th St, Dallas,TX,75001 +257429,Google Phone,1,600.0,2019-09-13 17:42:00,674 13th St, Los Angeles,CA,90001 +257430,USB-C Charging Cable,1,11.95,2019-09-24 15:43:00,98 Highland St, Dallas,TX,75001 +257431,USB-C Charging Cable,1,11.95,2019-09-05 11:23:00,939 Highland St, Austin,TX,73301 +257432,LG Washing Machine,1,600.0,2019-09-11 16:32:00,802 Willow St, Atlanta,GA,30301 +257433,20in Monitor,1,109.99,2019-09-10 22:00:00,89 Wilson St, Dallas,TX,75001 +257434,Bose SoundSport Headphones,1,99.99,2019-09-11 17:15:00,601 Hill St, New York City,NY,10001 +257435,USB-C Charging Cable,1,11.95,2019-09-08 21:36:00,938 Maple St, New York City,NY,10001 +257436,USB-C Charging Cable,1,11.95,2019-09-22 19:50:00,110 Church St, San Francisco,CA,94016 +257437,Wired Headphones,1,11.99,2019-09-08 20:38:00,297 Sunset St, Boston,MA,02215 +257438,AA Batteries (4-pack),1,3.84,2019-09-21 09:21:00,451 5th St, San Francisco,CA,94016 +257439,Wired Headphones,1,11.99,2019-09-03 20:08:00,42 Jefferson St, Atlanta,GA,30301 +257440,Bose SoundSport Headphones,1,99.99,2019-09-15 22:03:00,562 Cherry St, Atlanta,GA,30301 +257441,AAA Batteries (4-pack),1,2.99,2019-09-18 19:55:00,5 Johnson St, San Francisco,CA,94016 +257442,Lightning Charging Cable,1,14.95,2019-09-27 16:24:00,345 Center St, Boston,MA,02215 +257442,USB-C Charging Cable,1,11.95,2019-09-27 16:24:00,345 Center St, Boston,MA,02215 +257443,USB-C Charging Cable,2,11.95,2019-09-11 02:28:00,485 Hickory St, San Francisco,CA,94016 +257444,Lightning Charging Cable,1,14.95,2019-09-13 13:11:00,727 10th St, New York City,NY,10001 +257445,AA Batteries (4-pack),1,3.84,2019-09-28 21:22:00,451 River St, Atlanta,GA,30301 +257446,27in 4K Gaming Monitor,1,389.99,2019-09-03 14:53:00,556 Maple St, Portland,OR,97035 +257447,ThinkPad Laptop,1,999.99,2019-09-29 10:54:00,245 Pine St, Portland,OR,97035 +257448,Macbook Pro Laptop,1,1700.0,2019-09-25 15:43:00,725 North St, Portland,ME,04101 +257449,AA Batteries (4-pack),1,3.84,2019-09-09 11:47:00,711 8th St, Los Angeles,CA,90001 +257450,AAA Batteries (4-pack),1,2.99,2019-09-22 01:01:00,722 North St, New York City,NY,10001 +257451,AA Batteries (4-pack),1,3.84,2019-09-07 22:02:00,488 13th St, San Francisco,CA,94016 +257452,Lightning Charging Cable,1,14.95,2019-09-24 18:28:00,121 Lakeview St, Dallas,TX,75001 +257453,20in Monitor,1,109.99,2019-09-13 07:07:00,852 Jackson St, Dallas,TX,75001 +257454,Apple Airpods Headphones,1,150.0,2019-09-30 08:39:00,686 Sunset St, Boston,MA,02215 +257455,Wired Headphones,1,11.99,2019-09-07 17:42:00,283 5th St, Austin,TX,73301 +257456,Google Phone,1,600.0,2019-09-05 19:31:00,333 Main St, Atlanta,GA,30301 +257456,USB-C Charging Cable,1,11.95,2019-09-05 19:31:00,333 Main St, Atlanta,GA,30301 +257457,Bose SoundSport Headphones,1,99.99,2019-09-26 18:28:00,45 2nd St, San Francisco,CA,94016 +257458,AA Batteries (4-pack),3,3.84,2019-09-27 20:38:00,81 River St, San Francisco,CA,94016 +257459,Wired Headphones,1,11.99,2019-09-25 14:11:00,392 Park St, San Francisco,CA,94016 +257460,USB-C Charging Cable,1,11.95,2019-09-14 11:40:00,116 11th St, Los Angeles,CA,90001 +257461,Apple Airpods Headphones,1,150.0,2019-09-20 16:00:00,446 2nd St, San Francisco,CA,94016 +257462,Lightning Charging Cable,1,14.95,2019-09-17 00:33:00,96 Adams St, Los Angeles,CA,90001 +257463,USB-C Charging Cable,2,11.95,2019-09-23 21:33:00,407 Dogwood St, Atlanta,GA,30301 +257464,Bose SoundSport Headphones,1,99.99,2019-09-12 20:12:00,324 Walnut St, Atlanta,GA,30301 +257465,Macbook Pro Laptop,1,1700.0,2019-09-11 09:42:00,686 Dogwood St, Dallas,TX,75001 +257466,iPhone,1,700.0,2019-09-16 14:29:00,876 Church St, Dallas,TX,75001 +257467,AA Batteries (4-pack),2,3.84,2019-09-27 15:10:00,89 Park St, San Francisco,CA,94016 +257468,Lightning Charging Cable,1,14.95,2019-09-20 00:25:00,912 Main St, Los Angeles,CA,90001 +257469,27in 4K Gaming Monitor,1,389.99,2019-09-13 13:58:00,887 Park St, Boston,MA,02215 +257470,Lightning Charging Cable,1,14.95,2019-09-10 09:38:00,334 Lincoln St, Los Angeles,CA,90001 +257471,Apple Airpods Headphones,1,150.0,2019-09-14 20:18:00,712 River St, Portland,OR,97035 +257472,USB-C Charging Cable,1,11.95,2019-09-14 19:21:00,15 10th St, New York City,NY,10001 +257473,Lightning Charging Cable,1,14.95,2019-09-05 16:30:00,560 Church St, New York City,NY,10001 +257474,27in 4K Gaming Monitor,1,389.99,2019-09-14 22:40:00,595 Cherry St, Dallas,TX,75001 +257475,Apple Airpods Headphones,1,150.0,2019-09-29 14:23:00,804 Dogwood St, Los Angeles,CA,90001 +257476,34in Ultrawide Monitor,1,379.99,2019-09-07 12:07:00,409 Lake St, Boston,MA,02215 +257477,Wired Headphones,1,11.99,2019-09-08 18:33:00,530 10th St, San Francisco,CA,94016 +257478,Wired Headphones,1,11.99,2019-09-23 20:57:00,401 Wilson St, Seattle,WA,98101 +257479,Flatscreen TV,1,300.0,2019-09-08 17:02:00,789 Hill St, Portland,OR,97035 +257480,Apple Airpods Headphones,1,150.0,2019-09-17 13:33:00,320 Dogwood St, Los Angeles,CA,90001 +257481,Apple Airpods Headphones,1,150.0,2019-09-20 13:12:00,829 Forest St, New York City,NY,10001 +257482,ThinkPad Laptop,1,999.99,2019-09-10 21:08:00,938 Johnson St, San Francisco,CA,94016 +257483,USB-C Charging Cable,1,11.95,2019-09-14 13:17:00,777 Walnut St, New York City,NY,10001 +257484,AA Batteries (4-pack),2,3.84,2019-09-20 20:07:00,694 7th St, San Francisco,CA,94016 +257485,Lightning Charging Cable,1,14.95,2019-09-12 11:52:00,67 11th St, Dallas,TX,75001 +257485,27in 4K Gaming Monitor,1,389.99,2019-09-12 11:52:00,67 11th St, Dallas,TX,75001 +257486,Wired Headphones,2,11.99,2019-09-20 11:30:00,281 Chestnut St, Boston,MA,02215 +257487,Flatscreen TV,1,300.0,2019-09-16 07:50:00,860 Meadow St, Dallas,TX,75001 +257488,Bose SoundSport Headphones,1,99.99,2019-09-23 12:11:00,863 2nd St, Boston,MA,02215 +257489,27in FHD Monitor,1,149.99,2019-09-03 22:13:00,310 South St, New York City,NY,10001 +257490,USB-C Charging Cable,1,11.95,2019-09-14 11:47:00,136 Johnson St, Los Angeles,CA,90001 +257491,20in Monitor,1,109.99,2019-09-25 13:01:00,167 Hickory St, Boston,MA,02215 +257492,Apple Airpods Headphones,1,150.0,2019-09-12 18:47:00,110 Spruce St, Dallas,TX,75001 +257493,AA Batteries (4-pack),2,3.84,2019-09-16 08:47:00,767 Chestnut St, San Francisco,CA,94016 +257494,AAA Batteries (4-pack),2,2.99,2019-09-30 16:45:00,41 Dogwood St, Los Angeles,CA,90001 +257495,27in 4K Gaming Monitor,1,389.99,2019-09-16 10:47:00,613 River St, San Francisco,CA,94016 +257496,27in FHD Monitor,1,149.99,2019-09-07 11:22:00,267 Meadow St, New York City,NY,10001 +257497,Lightning Charging Cable,1,14.95,2019-09-03 14:50:00,436 Church St, Los Angeles,CA,90001 +257498,AAA Batteries (4-pack),1,2.99,2019-09-12 19:31:00,213 Church St, San Francisco,CA,94016 +257498,Bose SoundSport Headphones,1,99.99,2019-09-12 19:31:00,213 Church St, San Francisco,CA,94016 +257499,iPhone,1,700.0,2019-09-30 14:27:00,800 Madison St, Los Angeles,CA,90001 +257500,AAA Batteries (4-pack),1,2.99,2019-09-01 12:30:00,632 Hickory St, Portland,OR,97035 +257501,Bose SoundSport Headphones,1,99.99,2019-09-30 08:57:00,666 Pine St, Los Angeles,CA,90001 +257502,Lightning Charging Cable,1,14.95,2019-09-10 11:03:00,191 Lakeview St, San Francisco,CA,94016 +257503,USB-C Charging Cable,1,11.95,2019-09-30 07:49:00,495 Willow St, Dallas,TX,75001 +257503,AA Batteries (4-pack),1,3.84,2019-09-30 07:49:00,495 Willow St, Dallas,TX,75001 +257504,AAA Batteries (4-pack),2,2.99,2019-09-20 06:10:00,907 Lake St, Seattle,WA,98101 +257505,USB-C Charging Cable,1,11.95,2019-09-13 11:33:00,635 2nd St, Los Angeles,CA,90001 +257506,AA Batteries (4-pack),1,3.84,2019-09-20 13:22:00,412 5th St, San Francisco,CA,94016 +257507,AAA Batteries (4-pack),4,2.99,2019-09-06 20:41:00,137 Willow St, Los Angeles,CA,90001 +257508,AAA Batteries (4-pack),1,2.99,2019-09-21 22:00:00,136 9th St, New York City,NY,10001 +257509,Lightning Charging Cable,2,14.95,2019-09-02 14:17:00,819 Forest St, Seattle,WA,98101 +257510,Apple Airpods Headphones,1,150.0,2019-09-23 15:59:00,637 8th St, Seattle,WA,98101 +257511,AAA Batteries (4-pack),1,2.99,2019-09-15 11:23:00,217 Jefferson St, San Francisco,CA,94016 +257512,Bose SoundSport Headphones,1,99.99,2019-09-07 20:12:00,814 Elm St, Seattle,WA,98101 +257513,Lightning Charging Cable,1,14.95,2019-09-28 23:33:00,328 Dogwood St, New York City,NY,10001 +257514,34in Ultrawide Monitor,1,379.99,2019-09-13 15:12:00,886 10th St, Austin,TX,73301 +257514,AA Batteries (4-pack),2,3.84,2019-09-13 15:12:00,886 10th St, Austin,TX,73301 +257515,AAA Batteries (4-pack),1,2.99,2019-09-15 15:59:00,370 Ridge St, Seattle,WA,98101 +257516,USB-C Charging Cable,1,11.95,2019-09-09 05:37:00,673 Chestnut St, Atlanta,GA,30301 +257517,AAA Batteries (4-pack),2,2.99,2019-09-11 23:16:00,10 5th St, Los Angeles,CA,90001 +257518,Google Phone,1,600.0,2019-09-14 17:54:00,581 Hill St, Austin,TX,73301 +257518,Wired Headphones,1,11.99,2019-09-14 17:54:00,581 Hill St, Austin,TX,73301 +257519,AA Batteries (4-pack),1,3.84,2019-09-15 15:58:00,518 Johnson St, Los Angeles,CA,90001 +257520,iPhone,1,700.0,2019-09-07 01:39:00,179 Wilson St, Boston,MA,02215 +257520,Apple Airpods Headphones,1,150.0,2019-09-07 01:39:00,179 Wilson St, Boston,MA,02215 +257521,AA Batteries (4-pack),1,3.84,2019-09-11 12:50:00,75 9th St, Seattle,WA,98101 +257522,Lightning Charging Cable,1,14.95,2019-09-03 05:55:00,820 Forest St, New York City,NY,10001 +257523,Lightning Charging Cable,1,14.95,2019-09-03 14:10:00,113 Madison St, New York City,NY,10001 +257524,USB-C Charging Cable,1,11.95,2019-09-25 18:55:00,66 14th St, San Francisco,CA,94016 +257525,Wired Headphones,1,11.99,2019-09-20 13:19:00,293 11th St, San Francisco,CA,94016 +257526,Bose SoundSport Headphones,1,99.99,2019-09-12 15:41:00,200 6th St, Dallas,TX,75001 +257527,Lightning Charging Cable,1,14.95,2019-09-30 15:06:00,906 Cherry St, San Francisco,CA,94016 +257528,USB-C Charging Cable,2,11.95,2019-09-25 14:09:00,208 Johnson St, Boston,MA,02215 +257529,ThinkPad Laptop,1,999.99,2019-09-24 11:26:00,405 Meadow St, Austin,TX,73301 +257530,USB-C Charging Cable,1,11.95,2019-09-03 11:13:00,192 Johnson St, San Francisco,CA,94016 +257531,iPhone,1,700.0,2019-09-02 16:39:00,524 Park St, Los Angeles,CA,90001 +257531,Lightning Charging Cable,1,14.95,2019-09-02 16:39:00,524 Park St, Los Angeles,CA,90001 +257532,20in Monitor,1,109.99,2019-09-14 16:28:00,819 Willow St, Dallas,TX,75001 +257533,ThinkPad Laptop,1,999.99,2019-09-04 18:35:00,865 6th St, San Francisco,CA,94016 +257534,USB-C Charging Cable,1,11.95,2019-09-03 16:13:00,570 Pine St, Atlanta,GA,30301 +257535,LG Washing Machine,1,600.0,2019-09-03 16:29:00,22 Forest St, San Francisco,CA,94016 +257536,AA Batteries (4-pack),2,3.84,2019-09-14 19:44:00,532 Washington St, Seattle,WA,98101 +257537,ThinkPad Laptop,1,999.99,2019-09-01 17:27:00,245 Cherry St, Los Angeles,CA,90001 +257538,Google Phone,1,600.0,2019-09-22 04:37:00,914 2nd St, San Francisco,CA,94016 +257538,Wired Headphones,1,11.99,2019-09-22 04:37:00,914 2nd St, San Francisco,CA,94016 +257539,USB-C Charging Cable,1,11.95,2019-09-01 14:52:00,751 Forest St, San Francisco,CA,94016 +257540,Lightning Charging Cable,1,14.95,2019-09-12 22:18:00,971 Lake St, Austin,TX,73301 +257541,Google Phone,1,600.0,2019-09-25 22:05:00,240 8th St, Boston,MA,02215 +257541,Bose SoundSport Headphones,1,99.99,2019-09-25 22:05:00,240 8th St, Boston,MA,02215 +257542,AAA Batteries (4-pack),1,2.99,2019-09-17 14:27:00,170 Chestnut St, Atlanta,GA,30301 +257543,Lightning Charging Cable,1,14.95,2019-09-19 08:18:00,625 Walnut St, Los Angeles,CA,90001 +257544,Google Phone,1,600.0,2019-09-09 09:36:00,986 Walnut St, San Francisco,CA,94016 +257545,AA Batteries (4-pack),1,3.84,2019-09-20 13:38:00,642 10th St, Atlanta,GA,30301 +257546,27in 4K Gaming Monitor,1,389.99,2019-09-08 13:25:00,785 8th St, New York City,NY,10001 +257547,USB-C Charging Cable,1,11.95,2019-09-19 16:10:00,551 Adams St, San Francisco,CA,94016 +257548,27in 4K Gaming Monitor,1,389.99,2019-09-04 15:07:00,359 Church St, Los Angeles,CA,90001 +257549,AAA Batteries (4-pack),1,2.99,2019-09-11 11:39:00,263 Lakeview St, San Francisco,CA,94016 +257550,AA Batteries (4-pack),1,3.84,2019-09-09 14:24:00,800 Cherry St, Boston,MA,02215 +257551,Lightning Charging Cable,1,14.95,2019-09-13 16:09:00,569 Willow St, San Francisco,CA,94016 +257552,USB-C Charging Cable,1,11.95,2019-09-08 15:41:00,672 Walnut St, New York City,NY,10001 +257553,27in FHD Monitor,1,149.99,2019-09-15 01:24:00,401 8th St, San Francisco,CA,94016 +257554,USB-C Charging Cable,1,11.95,2019-09-11 01:41:00,524 Hill St, San Francisco,CA,94016 +257555,Wired Headphones,1,11.99,2019-09-08 09:33:00,540 Park St, Los Angeles,CA,90001 +257556,Lightning Charging Cable,1,14.95,2019-09-30 22:31:00,483 Cedar St, San Francisco,CA,94016 +257557,AAA Batteries (4-pack),1,2.99,2019-09-05 13:46:00,234 Walnut St, San Francisco,CA,94016 +257558,Lightning Charging Cable,1,14.95,2019-09-25 15:55:00,82 Jefferson St, Los Angeles,CA,90001 +257559,27in 4K Gaming Monitor,1,389.99,2019-09-17 13:06:00,96 Meadow St, Los Angeles,CA,90001 +257560,Lightning Charging Cable,1,14.95,2019-09-02 18:02:00,879 9th St, San Francisco,CA,94016 +257561,Lightning Charging Cable,1,14.95,2019-09-13 17:01:00,73 Forest St, San Francisco,CA,94016 +257562,34in Ultrawide Monitor,1,379.99,2019-09-11 19:49:00,845 4th St, Los Angeles,CA,90001 +257563,Lightning Charging Cable,1,14.95,2019-09-30 11:36:00,568 Elm St, Boston,MA,02215 +257564,Bose SoundSport Headphones,1,99.99,2019-09-20 17:09:00,111 Main St, Boston,MA,02215 +257565,27in 4K Gaming Monitor,1,389.99,2019-09-14 15:03:00,328 Church St, San Francisco,CA,94016 +257566,AAA Batteries (4-pack),3,2.99,2019-09-27 10:14:00,340 7th St, Los Angeles,CA,90001 +257567,AA Batteries (4-pack),1,3.84,2019-09-26 12:42:00,173 Cherry St, New York City,NY,10001 +257568,Apple Airpods Headphones,1,150.0,2019-09-03 11:00:00,449 North St, San Francisco,CA,94016 +257569,AAA Batteries (4-pack),1,2.99,2019-09-22 11:28:00,501 Main St, San Francisco,CA,94016 +257570,Macbook Pro Laptop,1,1700.0,2019-09-17 16:17:00,460 Dogwood St, Boston,MA,02215 +257571,Macbook Pro Laptop,1,1700.0,2019-09-24 02:36:00,126 Forest St, Atlanta,GA,30301 +257572,Apple Airpods Headphones,1,150.0,2019-09-22 13:09:00,734 Main St, San Francisco,CA,94016 +257573,27in FHD Monitor,1,149.99,2019-09-29 16:13:00,595 Madison St, Atlanta,GA,30301 +257574,USB-C Charging Cable,1,11.95,2019-09-20 10:59:00,645 6th St, New York City,NY,10001 +257575,AA Batteries (4-pack),1,3.84,2019-09-29 15:22:00,990 Center St, Boston,MA,02215 +257576,USB-C Charging Cable,1,11.95,2019-09-07 15:33:00,819 Chestnut St, San Francisco,CA,94016 +257577,Wired Headphones,1,11.99,2019-09-20 16:03:00,410 Lincoln St, Seattle,WA,98101 +257578,Bose SoundSport Headphones,1,99.99,2019-09-26 09:42:00,148 Chestnut St, Atlanta,GA,30301 +257579,Apple Airpods Headphones,1,150.0,2019-09-13 19:35:00,512 14th St, Atlanta,GA,30301 +257580,20in Monitor,1,109.99,2019-09-29 09:24:00,287 13th St, Austin,TX,73301 +257581,AAA Batteries (4-pack),1,2.99,2019-09-02 12:08:00,436 6th St, San Francisco,CA,94016 +257582,Google Phone,1,600.0,2019-09-20 10:06:00,600 Spruce St, Boston,MA,02215 +257582,USB-C Charging Cable,1,11.95,2019-09-20 10:06:00,600 Spruce St, Boston,MA,02215 +257583,34in Ultrawide Monitor,1,379.99,2019-09-02 23:42:00,862 Hickory St, Los Angeles,CA,90001 +257584,Bose SoundSport Headphones,1,99.99,2019-09-22 06:30:00,169 10th St, San Francisco,CA,94016 +257585,LG Washing Machine,1,600.0,2019-09-05 13:10:00,2 8th St, Austin,TX,73301 +257586,USB-C Charging Cable,1,11.95,2019-09-23 22:32:00,438 Meadow St, Austin,TX,73301 +257587,Bose SoundSport Headphones,1,99.99,2019-09-21 18:52:00,528 Cherry St, Dallas,TX,75001 +257588,Lightning Charging Cable,1,14.95,2019-09-10 09:46:00,551 West St, New York City,NY,10001 +257589,27in 4K Gaming Monitor,1,389.99,2019-09-13 21:06:00,536 Spruce St, Los Angeles,CA,90001 +257590,Lightning Charging Cable,1,14.95,2019-09-29 20:36:00,246 Park St, New York City,NY,10001 +257591,AAA Batteries (4-pack),1,2.99,2019-09-09 20:45:00,981 Highland St, Los Angeles,CA,90001 +257592,USB-C Charging Cable,1,11.95,2019-09-23 14:03:00,393 Sunset St, New York City,NY,10001 +257593,AA Batteries (4-pack),1,3.84,2019-09-18 17:03:00,527 Forest St, San Francisco,CA,94016 +257594,iPhone,1,700.0,2019-09-29 18:22:00,865 Park St, San Francisco,CA,94016 +257595,Flatscreen TV,1,300.0,2019-09-19 17:06:00,979 Hickory St, Boston,MA,02215 +257596,USB-C Charging Cable,1,11.95,2019-09-01 13:06:00,455 12th St, New York City,NY,10001 +257597,USB-C Charging Cable,1,11.95,2019-09-28 16:40:00,500 10th St, Austin,TX,73301 +257598,27in FHD Monitor,1,149.99,2019-09-10 12:18:00,748 South St, Seattle,WA,98101 +257599,AAA Batteries (4-pack),1,2.99,2019-09-25 19:48:00,859 South St, Seattle,WA,98101 +257600,ThinkPad Laptop,1,999.99,2019-09-25 13:26:00,172 Wilson St, Los Angeles,CA,90001 +257601,34in Ultrawide Monitor,1,379.99,2019-09-07 18:48:00,587 12th St, Austin,TX,73301 +257602,Lightning Charging Cable,1,14.95,2019-09-14 01:40:00,320 South St, Boston,MA,02215 +257603,27in FHD Monitor,1,149.99,2019-09-27 19:37:00,860 Chestnut St, San Francisco,CA,94016 +257604,AAA Batteries (4-pack),1,2.99,2019-09-02 15:38:00,449 Washington St, New York City,NY,10001 +257605,USB-C Charging Cable,1,11.95,2019-09-21 09:29:00,735 Spruce St, Portland,OR,97035 +257606,USB-C Charging Cable,1,11.95,2019-09-26 21:33:00,2 North St, San Francisco,CA,94016 +257607,Wired Headphones,1,11.99,2019-09-08 11:07:00,573 Forest St, New York City,NY,10001 +257608,Bose SoundSport Headphones,1,99.99,2019-09-27 10:20:00,176 10th St, San Francisco,CA,94016 +257609,Lightning Charging Cable,1,14.95,2019-09-08 18:11:00,154 Jefferson St, Boston,MA,02215 +257610,27in FHD Monitor,2,149.99,2019-09-27 17:38:00,529 Hill St, San Francisco,CA,94016 +257611,USB-C Charging Cable,1,11.95,2019-09-19 19:18:00,581 Meadow St, Los Angeles,CA,90001 +257612,27in 4K Gaming Monitor,1,389.99,2019-09-09 20:55:00,389 14th St, Austin,TX,73301 +257613,27in 4K Gaming Monitor,1,389.99,2019-09-30 15:49:00,731 11th St, New York City,NY,10001 +257614,Bose SoundSport Headphones,1,99.99,2019-09-08 19:56:00,871 North St, Los Angeles,CA,90001 +257615,Wired Headphones,1,11.99,2019-09-28 10:45:00,455 Forest St, San Francisco,CA,94016 +257616,Wired Headphones,1,11.99,2019-09-16 19:43:00,116 Lincoln St, San Francisco,CA,94016 +257617,Apple Airpods Headphones,1,150.0,2019-09-19 14:08:00,53 1st St, New York City,NY,10001 +257618,34in Ultrawide Monitor,1,379.99,2019-09-08 12:24:00,68 Spruce St, Boston,MA,02215 +257619,Bose SoundSport Headphones,1,99.99,2019-09-01 22:12:00,566 Hickory St, Austin,TX,73301 +257620,34in Ultrawide Monitor,1,379.99,2019-09-21 18:14:00,293 1st St, Seattle,WA,98101 +257621,AAA Batteries (4-pack),1,2.99,2019-09-06 07:26:00,395 Cedar St, Austin,TX,73301 +257622,Lightning Charging Cable,1,14.95,2019-09-03 23:26:00,934 9th St, San Francisco,CA,94016 +257623,USB-C Charging Cable,1,11.95,2019-09-12 08:11:00,247 4th St, Los Angeles,CA,90001 +257624,AA Batteries (4-pack),1,3.84,2019-09-06 19:53:00,562 Maple St, Boston,MA,02215 +257625,ThinkPad Laptop,1,999.99,2019-09-17 10:16:00,377 Adams St, Los Angeles,CA,90001 +257626,Vareebadd Phone,1,400.0,2019-09-29 11:21:00,547 Highland St, Los Angeles,CA,90001 +257627,AAA Batteries (4-pack),1,2.99,2019-09-22 20:25:00,385 Lincoln St, Los Angeles,CA,90001 +257628,AAA Batteries (4-pack),1,2.99,2019-09-16 06:52:00,385 Lake St, Atlanta,GA,30301 +257629,Apple Airpods Headphones,1,150.0,2019-09-19 09:49:00,746 Maple St, San Francisco,CA,94016 +257630,AA Batteries (4-pack),1,3.84,2019-09-15 22:36:00,750 Sunset St, Dallas,TX,75001 +257631,Bose SoundSport Headphones,1,99.99,2019-09-14 20:34:00,658 River St, Atlanta,GA,30301 +257632,USB-C Charging Cable,1,11.95,2019-09-01 11:27:00,792 Cedar St, New York City,NY,10001 +257633,iPhone,1,700.0,2019-09-12 08:37:00,308 Jackson St, Seattle,WA,98101 +257633,Wired Headphones,1,11.99,2019-09-12 08:37:00,308 Jackson St, Seattle,WA,98101 +257634,Flatscreen TV,1,300.0,2019-09-12 16:25:00,541 Elm St, Dallas,TX,75001 +257635,Wired Headphones,1,11.99,2019-09-18 16:50:00,824 Main St, San Francisco,CA,94016 +257636,USB-C Charging Cable,1,11.95,2019-09-18 14:20:00,234 Lakeview St, Los Angeles,CA,90001 +257637,AAA Batteries (4-pack),1,2.99,2019-09-02 08:10:00,422 Cherry St, Boston,MA,02215 +257638,Wired Headphones,1,11.99,2019-09-24 17:00:00,440 Sunset St, Los Angeles,CA,90001 +257639,AA Batteries (4-pack),1,3.84,2019-09-19 16:08:00,690 Highland St, Seattle,WA,98101 +257640,Wired Headphones,1,11.99,2019-09-21 17:05:00,893 10th St, Portland,OR,97035 +257641,Lightning Charging Cable,1,14.95,2019-09-17 14:22:00,747 Jefferson St, New York City,NY,10001 +257641,Flatscreen TV,1,300.0,2019-09-17 14:22:00,747 Jefferson St, New York City,NY,10001 +257642,Bose SoundSport Headphones,1,99.99,2019-09-28 21:07:00,262 Hill St, Boston,MA,02215 +257643,USB-C Charging Cable,1,11.95,2019-09-01 14:16:00,14 Lincoln St, Los Angeles,CA,90001 +257644,27in 4K Gaming Monitor,1,389.99,2019-09-25 15:48:00,783 Washington St, Boston,MA,02215 +257645,34in Ultrawide Monitor,1,379.99,2019-09-21 17:53:00,225 13th St, Seattle,WA,98101 +257646,iPhone,1,700.0,2019-09-23 19:12:00,532 Pine St, Dallas,TX,75001 +257647,Macbook Pro Laptop,1,1700.0,2019-09-30 17:02:00,849 Maple St, Boston,MA,02215 +257648,AA Batteries (4-pack),2,3.84,2019-09-03 17:43:00,396 Cherry St, Seattle,WA,98101 +257649,Lightning Charging Cable,2,14.95,2019-09-16 22:09:00,707 Lake St, New York City,NY,10001 +257650,USB-C Charging Cable,1,11.95,2019-09-20 20:20:00,37 Maple St, Boston,MA,02215 +257651,20in Monitor,1,109.99,2019-09-29 21:31:00,764 Hickory St, New York City,NY,10001 +257652,Lightning Charging Cable,1,14.95,2019-09-23 16:43:00,303 North St, San Francisco,CA,94016 +257653,AA Batteries (4-pack),2,3.84,2019-09-19 19:17:00,695 Hickory St, Portland,ME,04101 +257654,Lightning Charging Cable,1,14.95,2019-09-06 13:26:00,152 Wilson St, San Francisco,CA,94016 +257655,AA Batteries (4-pack),1,3.84,2019-09-11 09:38:00,582 Jefferson St, Seattle,WA,98101 +257656,Apple Airpods Headphones,1,150.0,2019-09-13 12:01:00,417 North St, Austin,TX,73301 +257657,Lightning Charging Cable,1,14.95,2019-09-21 10:53:00,473 Elm St, Dallas,TX,75001 +257658,AAA Batteries (4-pack),1,2.99,2019-09-18 11:50:00,335 4th St, Los Angeles,CA,90001 +257659,Wired Headphones,1,11.99,2019-09-18 17:05:00,486 8th St, New York City,NY,10001 +257660,USB-C Charging Cable,2,11.95,2019-09-09 11:30:00,494 Lincoln St, New York City,NY,10001 +257661,AA Batteries (4-pack),1,3.84,2019-09-08 20:30:00,50 6th St, Los Angeles,CA,90001 +257662,Lightning Charging Cable,1,14.95,2019-09-13 18:03:00,158 11th St, San Francisco,CA,94016 +257663,Lightning Charging Cable,1,14.95,2019-09-14 13:10:00,464 Spruce St, Los Angeles,CA,90001 +257664,Apple Airpods Headphones,1,150.0,2019-09-09 12:23:00,496 Center St, New York City,NY,10001 +257665,Lightning Charging Cable,1,14.95,2019-09-15 15:17:00,499 Willow St, New York City,NY,10001 +257666,27in FHD Monitor,1,149.99,2019-09-02 19:21:00,406 Main St, New York City,NY,10001 +257667,Lightning Charging Cable,1,14.95,2019-09-27 09:52:00,93 Highland St, Dallas,TX,75001 +257668,Lightning Charging Cable,1,14.95,2019-09-26 20:50:00,955 Willow St, San Francisco,CA,94016 +257669,USB-C Charging Cable,1,11.95,2019-09-14 20:07:00,776 4th St, Portland,OR,97035 +257670,USB-C Charging Cable,1,11.95,2019-09-26 09:52:00,666 Lincoln St, Seattle,WA,98101 +257671,USB-C Charging Cable,1,11.95,2019-09-14 19:35:00,73 West St, San Francisco,CA,94016 +257672,Lightning Charging Cable,1,14.95,2019-09-23 23:04:00,611 Willow St, New York City,NY,10001 +257673,Wired Headphones,1,11.99,2019-09-04 09:06:00,792 Ridge St, Portland,ME,04101 +257674,Apple Airpods Headphones,1,150.0,2019-09-30 13:33:00,233 9th St, San Francisco,CA,94016 +257675,USB-C Charging Cable,1,11.95,2019-09-20 20:08:00,698 Jackson St, San Francisco,CA,94016 +257676,Macbook Pro Laptop,1,1700.0,2019-09-18 14:50:00,641 Lincoln St, Atlanta,GA,30301 +257677,iPhone,1,700.0,2019-09-19 21:09:00,282 1st St, Dallas,TX,75001 +257678,Bose SoundSport Headphones,1,99.99,2019-09-11 17:54:00,460 Chestnut St, San Francisco,CA,94016 +257679,AA Batteries (4-pack),3,3.84,2019-09-29 16:20:00,318 9th St, Dallas,TX,75001 +257680,ThinkPad Laptop,1,999.99,2019-09-09 16:42:00,931 Center St, Austin,TX,73301 +257681,USB-C Charging Cable,1,11.95,2019-09-09 11:39:00,600 Adams St, Austin,TX,73301 +257682,USB-C Charging Cable,1,11.95,2019-09-09 18:05:00,229 Jefferson St, San Francisco,CA,94016 +257683,iPhone,1,700.0,2019-09-13 08:55:00,931 11th St, Atlanta,GA,30301 +257684,Macbook Pro Laptop,1,1700.0,2019-09-30 14:24:00,422 Forest St, Los Angeles,CA,90001 +257685,USB-C Charging Cable,1,11.95,2019-09-26 03:27:00,539 Main St, Los Angeles,CA,90001 +257686,iPhone,1,700.0,2019-09-25 02:25:00,819 Cherry St, San Francisco,CA,94016 +257687,USB-C Charging Cable,1,11.95,2019-09-20 18:04:00,161 9th St, Atlanta,GA,30301 +257688,USB-C Charging Cable,1,11.95,2019-09-04 18:29:00,913 Forest St, San Francisco,CA,94016 +257689,AA Batteries (4-pack),1,3.84,2019-09-03 11:10:00,908 Elm St, San Francisco,CA,94016 +257690,27in FHD Monitor,1,149.99,2019-09-12 18:41:00,968 Church St, Dallas,TX,75001 +257691,Bose SoundSport Headphones,1,99.99,2019-09-17 13:17:00,222 Spruce St, Los Angeles,CA,90001 +257692,USB-C Charging Cable,1,11.95,2019-09-17 10:33:00,321 9th St, Portland,OR,97035 +257693,Wired Headphones,1,11.99,2019-09-16 20:49:00,902 12th St, Boston,MA,02215 +257694,USB-C Charging Cable,1,11.95,2019-09-16 13:50:00,23 Highland St, San Francisco,CA,94016 +257695,Wired Headphones,1,11.99,2019-09-15 12:02:00,181 Jefferson St, New York City,NY,10001 +257696,Wired Headphones,1,11.99,2019-09-13 14:19:00,705 Lincoln St, Atlanta,GA,30301 +257697,Apple Airpods Headphones,1,150.0,2019-09-10 03:12:00,418 Jackson St, Los Angeles,CA,90001 +257698,Macbook Pro Laptop,1,1700.0,2019-09-21 16:59:00,932 Lakeview St, Los Angeles,CA,90001 +257699,Apple Airpods Headphones,1,150.0,2019-09-25 11:21:00,115 Hickory St, Dallas,TX,75001 +257700,Wired Headphones,1,11.99,2019-09-09 09:39:00,527 Spruce St, Portland,OR,97035 +257701,AA Batteries (4-pack),1,3.84,2019-09-04 18:24:00,115 Highland St, Los Angeles,CA,90001 +257702,AAA Batteries (4-pack),1,2.99,2019-09-11 18:04:00,119 13th St, San Francisco,CA,94016 +257703,Flatscreen TV,1,300.0,2019-09-14 15:30:00,66 9th St, Austin,TX,73301 +257704,AA Batteries (4-pack),2,3.84,2019-09-13 13:44:00,822 Forest St, New York City,NY,10001 +257705,Google Phone,1,600.0,2019-09-04 19:38:00,845 Lakeview St, Boston,MA,02215 +257705,Wired Headphones,1,11.99,2019-09-04 19:38:00,845 Lakeview St, Boston,MA,02215 +257706,iPhone,1,700.0,2019-09-09 19:12:00,247 South St, New York City,NY,10001 +257707,34in Ultrawide Monitor,1,379.99,2019-09-30 13:36:00,493 Chestnut St, Seattle,WA,98101 +257708,Apple Airpods Headphones,1,150.0,2019-09-03 20:17:00,550 River St, San Francisco,CA,94016 +257709,20in Monitor,1,109.99,2019-09-13 00:32:00,131 13th St, Dallas,TX,75001 +257710,27in 4K Gaming Monitor,1,389.99,2019-09-25 02:09:00,777 Center St, New York City,NY,10001 +257711,USB-C Charging Cable,1,11.95,2019-09-27 17:15:00,261 Lakeview St, San Francisco,CA,94016 +257712,USB-C Charging Cable,1,11.95,2019-09-02 00:09:00,264 Adams St, San Francisco,CA,94016 +257713,AAA Batteries (4-pack),1,2.99,2019-09-20 23:18:00,204 Pine St, Boston,MA,02215 +257714,20in Monitor,1,109.99,2019-09-25 09:30:00,134 Church St, San Francisco,CA,94016 +257715,34in Ultrawide Monitor,1,379.99,2019-09-23 23:33:00,871 Ridge St, New York City,NY,10001 +257716,Vareebadd Phone,1,400.0,2019-09-20 20:09:00,293 River St, San Francisco,CA,94016 +257717,Apple Airpods Headphones,1,150.0,2019-09-16 15:25:00,147 Jefferson St, Seattle,WA,98101 +257718,iPhone,1,700.0,2019-09-13 23:32:00,548 Walnut St, San Francisco,CA,94016 +257719,AAA Batteries (4-pack),1,2.99,2019-09-28 14:18:00,33 12th St, Atlanta,GA,30301 +257720,Lightning Charging Cable,1,14.95,2019-09-28 12:25:00,320 Sunset St, Portland,OR,97035 +257721,AAA Batteries (4-pack),1,2.99,2019-09-21 19:38:00,995 10th St, Los Angeles,CA,90001 +257722,AA Batteries (4-pack),1,3.84,2019-09-24 23:26:00,169 12th St, San Francisco,CA,94016 +257723,Google Phone,1,600.0,2019-09-12 19:00:00,951 Wilson St, San Francisco,CA,94016 +257723,USB-C Charging Cable,1,11.95,2019-09-12 19:00:00,951 Wilson St, San Francisco,CA,94016 +257724,AA Batteries (4-pack),1,3.84,2019-09-27 11:16:00,82 Jackson St, New York City,NY,10001 +257725,Apple Airpods Headphones,1,150.0,2019-09-01 08:38:00,460 6th St, San Francisco,CA,94016 +257726,AAA Batteries (4-pack),2,2.99,2019-09-14 13:52:00,381 14th St, San Francisco,CA,94016 +257727,Google Phone,1,600.0,2019-09-02 09:52:00,890 12th St, Seattle,WA,98101 +257727,USB-C Charging Cable,1,11.95,2019-09-02 09:52:00,890 12th St, Seattle,WA,98101 +257728,27in 4K Gaming Monitor,1,389.99,2019-09-21 12:31:00,733 Walnut St, New York City,NY,10001 +257729,Apple Airpods Headphones,1,150.0,2019-09-08 22:29:00,821 Church St, Atlanta,GA,30301 +257730,iPhone,1,700.0,2019-09-11 11:52:00,325 Jefferson St, Seattle,WA,98101 +257731,AAA Batteries (4-pack),2,2.99,2019-09-17 19:47:00,203 1st St, Portland,OR,97035 +257732,USB-C Charging Cable,1,11.95,2019-09-10 14:00:00,990 Elm St, Los Angeles,CA,90001 +257733,20in Monitor,1,109.99,2019-09-05 22:32:00,753 14th St, San Francisco,CA,94016 +257734,Wired Headphones,1,11.99,2019-09-13 23:36:00,22 Church St, Los Angeles,CA,90001 +257735,USB-C Charging Cable,1,11.95,2019-09-05 18:36:00,947 Meadow St, New York City,NY,10001 +257736,Wired Headphones,2,11.99,2019-09-10 23:16:00,757 Madison St, New York City,NY,10001 +257737,Lightning Charging Cable,1,14.95,2019-09-19 13:56:00,972 7th St, Seattle,WA,98101 +257738,Macbook Pro Laptop,1,1700.0,2019-09-18 21:42:00,66 Washington St, Austin,TX,73301 +257739,USB-C Charging Cable,1,11.95,2019-09-16 12:28:00,330 Elm St, New York City,NY,10001 +257740,AAA Batteries (4-pack),1,2.99,2019-09-25 13:10:00,530 South St, Boston,MA,02215 +257741,Wired Headphones,1,11.99,2019-09-19 15:33:00,376 13th St, San Francisco,CA,94016 +257742,27in 4K Gaming Monitor,1,389.99,2019-09-26 14:20:00,608 1st St, New York City,NY,10001 +257743,Lightning Charging Cable,1,14.95,2019-09-01 16:22:00,813 Lake St, San Francisco,CA,94016 +257744,Flatscreen TV,1,300.0,2019-09-29 15:56:00,630 Main St, San Francisco,CA,94016 +257745,34in Ultrawide Monitor,1,379.99,2019-09-29 11:00:00,25 Park St, Seattle,WA,98101 +257746,34in Ultrawide Monitor,1,379.99,2019-09-16 21:28:00,913 Adams St, San Francisco,CA,94016 +257747,USB-C Charging Cable,1,11.95,2019-09-08 19:02:00,889 Dogwood St, Dallas,TX,75001 +257748,Lightning Charging Cable,1,14.95,2019-09-19 21:02:00,706 Park St, Los Angeles,CA,90001 +257749,34in Ultrawide Monitor,1,379.99,2019-09-02 09:58:00,296 Spruce St, Boston,MA,02215 +257750,AAA Batteries (4-pack),1,2.99,2019-09-06 23:40:00,596 Washington St, Atlanta,GA,30301 +257751,AA Batteries (4-pack),2,3.84,2019-09-20 23:32:00,882 Forest St, New York City,NY,10001 +257752,27in 4K Gaming Monitor,1,389.99,2019-09-07 19:52:00,943 River St, Atlanta,GA,30301 +257753,Wired Headphones,1,11.99,2019-09-02 14:22:00,90 Sunset St, Seattle,WA,98101 +257754,Lightning Charging Cable,1,14.95,2019-09-28 20:52:00,167 Sunset St, New York City,NY,10001 +257755,Apple Airpods Headphones,1,150.0,2019-09-10 19:36:00,918 10th St, San Francisco,CA,94016 +257756,Wired Headphones,1,11.99,2019-09-02 10:47:00,394 Chestnut St, Los Angeles,CA,90001 +257757,34in Ultrawide Monitor,1,379.99,2019-09-02 16:47:00,605 Jefferson St, Los Angeles,CA,90001 +257758,27in FHD Monitor,1,149.99,2019-09-05 13:56:00,292 Church St, Seattle,WA,98101 +257759,27in FHD Monitor,1,149.99,2019-09-20 13:07:00,853 Forest St, Austin,TX,73301 +257760,AA Batteries (4-pack),1,3.84,2019-09-26 22:13:00,180 4th St, Dallas,TX,75001 +257761,USB-C Charging Cable,1,11.95,2019-09-10 19:02:00,809 8th St, Portland,OR,97035 +257762,34in Ultrawide Monitor,1,379.99,2019-09-11 17:38:00,617 Cherry St, New York City,NY,10001 +257763,27in FHD Monitor,1,149.99,2019-09-25 13:31:00,357 5th St, New York City,NY,10001 +257764,USB-C Charging Cable,1,11.95,2019-09-23 12:31:00,894 Sunset St, Dallas,TX,75001 +257764,AAA Batteries (4-pack),2,2.99,2019-09-23 12:31:00,894 Sunset St, Dallas,TX,75001 +257765,Lightning Charging Cable,1,14.95,2019-09-09 21:37:00,421 Washington St, San Francisco,CA,94016 +257766,iPhone,1,700.0,2019-09-28 11:10:00,434 South St, Seattle,WA,98101 +257767,Apple Airpods Headphones,1,150.0,2019-09-15 02:34:00,50 Walnut St, Seattle,WA,98101 +257768,Macbook Pro Laptop,1,1700.0,2019-09-05 18:01:00,314 Highland St, Los Angeles,CA,90001 +257769,Lightning Charging Cable,2,14.95,2019-09-14 16:29:00,135 5th St, Seattle,WA,98101 +257770,Bose SoundSport Headphones,1,99.99,2019-09-18 23:15:00,116 Lake St, Los Angeles,CA,90001 +257771,Lightning Charging Cable,1,14.95,2019-09-17 10:42:00,373 North St, Portland,ME,04101 +257772,Apple Airpods Headphones,1,150.0,2019-09-11 16:23:00,55 Cedar St, Atlanta,GA,30301 +257773,27in 4K Gaming Monitor,1,389.99,2019-09-06 10:32:00,182 9th St, Austin,TX,73301 +257774,AA Batteries (4-pack),1,3.84,2019-09-18 00:15:00,269 1st St, New York City,NY,10001 +257775,AA Batteries (4-pack),2,3.84,2019-09-27 18:04:00,864 6th St, New York City,NY,10001 +257776,27in 4K Gaming Monitor,1,389.99,2019-09-15 08:09:00,845 River St, San Francisco,CA,94016 +257777,Lightning Charging Cable,1,14.95,2019-09-07 21:56:00,212 Highland St, Los Angeles,CA,90001 +257778,Lightning Charging Cable,1,14.95,2019-09-08 16:19:00,280 4th St, San Francisco,CA,94016 +257779,Lightning Charging Cable,1,14.95,2019-09-02 23:18:00,505 Lincoln St, Dallas,TX,75001 +257780,iPhone,1,700.0,2019-09-10 18:47:00,458 Cherry St, New York City,NY,10001 +257780,Wired Headphones,1,11.99,2019-09-10 18:47:00,458 Cherry St, New York City,NY,10001 +257781,AA Batteries (4-pack),3,3.84,2019-09-19 09:09:00,409 Forest St, Boston,MA,02215 +257782,Lightning Charging Cable,1,14.95,2019-09-03 19:17:00,530 Elm St, New York City,NY,10001 +257783,34in Ultrawide Monitor,1,379.99,2019-09-21 21:26:00,678 Dogwood St, Seattle,WA,98101 +257784,Lightning Charging Cable,1,14.95,2019-09-19 19:52:00,312 Cherry St, Los Angeles,CA,90001 +257785,Flatscreen TV,1,300.0,2019-09-28 21:54:00,231 Willow St, Los Angeles,CA,90001 +257786,AAA Batteries (4-pack),1,2.99,2019-09-04 10:01:00,104 Spruce St, Los Angeles,CA,90001 +257787,Wired Headphones,1,11.99,2019-09-21 13:21:00,48 River St, Portland,OR,97035 +257788,Apple Airpods Headphones,1,150.0,2019-09-25 06:58:00,772 South St, Los Angeles,CA,90001 +257789,Apple Airpods Headphones,1,150.0,2019-09-03 12:46:00,320 West St, Dallas,TX,75001 +257790,27in 4K Gaming Monitor,1,389.99,2019-09-21 21:28:00,366 Sunset St, Seattle,WA,98101 +257791,27in 4K Gaming Monitor,1,389.99,2019-09-10 08:19:00,981 5th St, San Francisco,CA,94016 +257792,Lightning Charging Cable,1,14.95,2019-09-07 10:27:00,371 Dogwood St, New York City,NY,10001 +257793,AA Batteries (4-pack),1,3.84,2019-09-15 06:45:00,822 Hickory St, Portland,OR,97035 +257794,AA Batteries (4-pack),1,3.84,2019-09-05 17:20:00,903 4th St, Dallas,TX,75001 +257795,AA Batteries (4-pack),1,3.84,2019-09-13 23:13:00,655 2nd St, Atlanta,GA,30301 +257796,AAA Batteries (4-pack),3,2.99,2019-09-07 16:00:00,809 4th St, San Francisco,CA,94016 +257796,iPhone,1,700.0,2019-09-07 16:00:00,809 4th St, San Francisco,CA,94016 +257797,Google Phone,1,600.0,2019-09-24 19:00:00,840 West St, San Francisco,CA,94016 +257798,27in 4K Gaming Monitor,1,389.99,2019-09-17 14:21:00,245 11th St, Atlanta,GA,30301 +257799,Apple Airpods Headphones,1,150.0,2019-09-24 23:27:00,460 10th St, Seattle,WA,98101 +257800,Wired Headphones,1,11.99,2019-09-22 22:23:00,423 Lakeview St, Dallas,TX,75001 +257801,Wired Headphones,1,11.99,2019-09-28 08:51:00,469 Center St, New York City,NY,10001 +257802,Macbook Pro Laptop,1,1700.0,2019-09-13 17:06:00,948 Park St, Dallas,TX,75001 +257803,Wired Headphones,1,11.99,2019-09-30 22:47:00,994 9th St, Boston,MA,02215 +257804,AAA Batteries (4-pack),1,2.99,2019-09-25 20:06:00,157 10th St, San Francisco,CA,94016 +257805,Lightning Charging Cable,1,14.95,2019-09-27 00:16:00,504 Wilson St, Los Angeles,CA,90001 +257806,27in 4K Gaming Monitor,1,389.99,2019-09-10 08:38:00,493 Church St, San Francisco,CA,94016 +257807,AA Batteries (4-pack),1,3.84,2019-09-10 10:54:00,978 South St, Atlanta,GA,30301 +257808,Apple Airpods Headphones,1,150.0,2019-09-23 23:55:00,459 9th St, Boston,MA,02215 +257809,AAA Batteries (4-pack),2,2.99,2019-09-10 22:16:00,579 Johnson St, Atlanta,GA,30301 +257810,USB-C Charging Cable,1,11.95,2019-09-17 21:55:00,205 Jackson St, Boston,MA,02215 +257811,AA Batteries (4-pack),1,3.84,2019-09-11 05:49:00,230 6th St, San Francisco,CA,94016 +257812,AA Batteries (4-pack),1,3.84,2019-09-11 17:59:00,233 8th St, San Francisco,CA,94016 +257813,Apple Airpods Headphones,1,150.0,2019-09-21 08:38:00,727 Forest St, Atlanta,GA,30301 +257814,20in Monitor,1,109.99,2019-09-17 08:58:00,113 Jackson St, San Francisco,CA,94016 +257815,Macbook Pro Laptop,1,1700.0,2019-09-23 14:13:00,809 Maple St, Portland,ME,04101 +257816,Wired Headphones,1,11.99,2019-09-05 15:18:00,361 10th St, Portland,OR,97035 +257817,20in Monitor,1,109.99,2019-09-21 19:40:00,102 Ridge St, Dallas,TX,75001 +257818,AA Batteries (4-pack),1,3.84,2019-09-03 19:06:00,752 Lincoln St, Los Angeles,CA,90001 +257819,Wired Headphones,1,11.99,2019-09-09 18:30:00,298 8th St, Portland,OR,97035 +257820,Lightning Charging Cable,1,14.95,2019-09-06 15:04:00,595 Hickory St, Atlanta,GA,30301 +257821,34in Ultrawide Monitor,1,379.99,2019-09-12 18:44:00,27 Center St, New York City,NY,10001 +257822,Lightning Charging Cable,1,14.95,2019-09-02 14:32:00,394 River St, Portland,ME,04101 +257823,USB-C Charging Cable,1,11.95,2019-09-11 21:06:00,964 4th St, San Francisco,CA,94016 +257824,27in FHD Monitor,1,149.99,2019-09-12 00:12:00,689 Lincoln St, Atlanta,GA,30301 +257825,Lightning Charging Cable,2,14.95,2019-09-11 17:39:00,548 Sunset St, San Francisco,CA,94016 +257826,AAA Batteries (4-pack),1,2.99,2019-09-24 09:47:00,19 8th St, Austin,TX,73301 +257827,Bose SoundSport Headphones,1,99.99,2019-09-19 17:59:00,611 12th St, San Francisco,CA,94016 +257828,Macbook Pro Laptop,1,1700.0,2019-09-02 21:27:00,525 Wilson St, New York City,NY,10001 +257829,AAA Batteries (4-pack),1,2.99,2019-09-12 19:17:00,738 Washington St, San Francisco,CA,94016 +257830,AAA Batteries (4-pack),1,2.99,2019-09-13 23:56:00,547 Cherry St, Portland,OR,97035 +257831,Google Phone,1,600.0,2019-09-08 10:36:00,457 West St, Dallas,TX,75001 +257832,AA Batteries (4-pack),1,3.84,2019-09-10 05:41:00,596 13th St, Los Angeles,CA,90001 +257833,Wired Headphones,2,11.99,2019-09-28 08:14:00,644 Church St, Los Angeles,CA,90001 +257834,Bose SoundSport Headphones,1,99.99,2019-09-29 10:29:00,603 Chestnut St, Seattle,WA,98101 +257835,USB-C Charging Cable,1,11.95,2019-09-30 11:29:00,604 Walnut St, New York City,NY,10001 +257836,Macbook Pro Laptop,1,1700.0,2019-09-26 19:21:00,167 2nd St, Atlanta,GA,30301 +257837,AA Batteries (4-pack),2,3.84,2019-09-27 19:23:00,435 Jackson St, San Francisco,CA,94016 +257838,Lightning Charging Cable,1,14.95,2019-09-02 17:30:00,42 Washington St, Los Angeles,CA,90001 +257839,USB-C Charging Cable,1,11.95,2019-09-26 08:35:00,304 Sunset St, Los Angeles,CA,90001 +257840,AAA Batteries (4-pack),1,2.99,2019-09-29 17:28:00,18 Adams St, Atlanta,GA,30301 +257841,34in Ultrawide Monitor,1,379.99,2019-09-04 18:38:00,43 Forest St, Seattle,WA,98101 +257842,20in Monitor,1,109.99,2019-09-27 06:40:00,254 Adams St, Los Angeles,CA,90001 +257843,AA Batteries (4-pack),1,3.84,2019-09-26 08:02:00,560 River St, Atlanta,GA,30301 +257844,ThinkPad Laptop,1,999.99,2019-09-11 23:18:00,281 Maple St, Los Angeles,CA,90001 +257845,20in Monitor,1,109.99,2019-09-29 16:03:00,235 Meadow St, San Francisco,CA,94016 +257846,Wired Headphones,1,11.99,2019-09-26 23:59:00,716 Park St, Boston,MA,02215 +257847,Lightning Charging Cable,1,14.95,2019-09-30 12:17:00,577 Washington St, New York City,NY,10001 +257848,Apple Airpods Headphones,1,150.0,2019-09-27 15:27:00,430 Lincoln St, Seattle,WA,98101 +257849,USB-C Charging Cable,1,11.95,2019-09-24 20:27:00,477 Hickory St, New York City,NY,10001 +257850,Macbook Pro Laptop,1,1700.0,2019-09-19 15:31:00,905 Madison St, Austin,TX,73301 +257851,AAA Batteries (4-pack),1,2.99,2019-09-01 19:54:00,638 1st St, Austin,TX,73301 +257852,USB-C Charging Cable,1,11.95,2019-09-29 21:04:00,86 Lake St, Austin,TX,73301 +257853,Flatscreen TV,1,300.0,2019-09-15 10:08:00,674 10th St, Seattle,WA,98101 +257854,USB-C Charging Cable,1,11.95,2019-09-13 12:55:00,963 Elm St, Portland,ME,04101 +257855,Bose SoundSport Headphones,1,99.99,2019-09-11 12:03:00,798 Cherry St, Seattle,WA,98101 +257856,AA Batteries (4-pack),3,3.84,2019-09-27 15:17:00,218 Highland St, San Francisco,CA,94016 +257857,USB-C Charging Cable,1,11.95,2019-09-13 17:09:00,924 Highland St, Los Angeles,CA,90001 +257858,AA Batteries (4-pack),1,3.84,2019-09-03 20:20:00,441 Hickory St, Austin,TX,73301 +257859,Google Phone,1,600.0,2019-09-17 20:21:00,941 Pine St, Los Angeles,CA,90001 +257859,USB-C Charging Cable,1,11.95,2019-09-17 20:21:00,941 Pine St, Los Angeles,CA,90001 +257860,AA Batteries (4-pack),1,3.84,2019-09-20 16:47:00,288 Cherry St, San Francisco,CA,94016 +257861,Bose SoundSport Headphones,1,99.99,2019-09-17 11:39:00,618 Hill St, Austin,TX,73301 +257862,AAA Batteries (4-pack),5,2.99,2019-09-20 21:40:00,589 8th St, Los Angeles,CA,90001 +257863,27in FHD Monitor,1,149.99,2019-09-30 23:03:00,57 Adams St, Atlanta,GA,30301 +257864,Flatscreen TV,1,300.0,2019-09-19 17:16:00,935 Washington St, San Francisco,CA,94016 +257865,AA Batteries (4-pack),2,3.84,2019-09-04 11:50:00,945 7th St, Portland,OR,97035 +257866,Google Phone,1,600.0,2019-09-11 20:44:00,670 Main St, Seattle,WA,98101 +257867,USB-C Charging Cable,1,11.95,2019-09-15 11:05:00,279 2nd St, New York City,NY,10001 +257868,Lightning Charging Cable,1,14.95,2019-09-25 22:18:00,213 8th St, San Francisco,CA,94016 +257869,Apple Airpods Headphones,1,150.0,2019-09-03 19:29:00,230 6th St, Atlanta,GA,30301 +257870,USB-C Charging Cable,1,11.95,2019-09-19 12:50:00,793 Hill St, Seattle,WA,98101 +257871,Apple Airpods Headphones,1,150.0,2019-09-29 20:07:00,157 6th St, Los Angeles,CA,90001 +257872,Macbook Pro Laptop,1,1700.0,2019-09-05 18:11:00,159 Pine St, New York City,NY,10001 +257873,Wired Headphones,1,11.99,2019-09-22 23:23:00,668 Center St, San Francisco,CA,94016 +257874,AAA Batteries (4-pack),1,2.99,2019-09-07 15:53:00,987 Adams St, Austin,TX,73301 +257875,Bose SoundSport Headphones,1,99.99,2019-09-14 12:01:00,295 14th St, San Francisco,CA,94016 +257876,Bose SoundSport Headphones,1,99.99,2019-09-05 11:58:00,584 Cherry St, Portland,OR,97035 +257877,Google Phone,1,600.0,2019-09-26 11:52:00,29 Highland St, Los Angeles,CA,90001 +257878,Wired Headphones,1,11.99,2019-09-17 10:51:00,862 7th St, Los Angeles,CA,90001 +257879,AA Batteries (4-pack),1,3.84,2019-09-03 11:29:00,426 Jefferson St, Atlanta,GA,30301 +257880,Apple Airpods Headphones,1,150.0,2019-09-28 10:07:00,356 Jefferson St, Austin,TX,73301 +257881,iPhone,1,700.0,2019-09-18 20:53:00,24 Ridge St, Boston,MA,02215 +257882,AA Batteries (4-pack),1,3.84,2019-09-29 11:45:00,291 13th St, San Francisco,CA,94016 +257883,Lightning Charging Cable,1,14.95,2019-09-15 19:51:00,101 Lincoln St, Portland,OR,97035 +257884,Apple Airpods Headphones,1,150.0,2019-09-07 07:53:00,485 Meadow St, Atlanta,GA,30301 +257885,Lightning Charging Cable,1,14.95,2019-09-27 12:15:00,450 14th St, San Francisco,CA,94016 +257886,USB-C Charging Cable,1,11.95,2019-09-28 17:50:00,571 Hickory St, Dallas,TX,75001 +257887,Apple Airpods Headphones,1,150.0,2019-09-16 10:59:00,145 6th St, Boston,MA,02215 +257888,AA Batteries (4-pack),2,3.84,2019-09-20 11:43:00,284 Meadow St, San Francisco,CA,94016 +257889,Lightning Charging Cable,1,14.95,2019-09-18 13:05:00,321 7th St, San Francisco,CA,94016 +257890,USB-C Charging Cable,1,11.95,2019-09-29 22:56:00,20 9th St, Boston,MA,02215 +257891,Apple Airpods Headphones,1,150.0,2019-09-14 15:15:00,987 Hickory St, Portland,OR,97035 +257892,Bose SoundSport Headphones,1,99.99,2019-09-20 08:53:00,11 Washington St, Los Angeles,CA,90001 +257893,Bose SoundSport Headphones,1,99.99,2019-09-07 12:43:00,832 Meadow St, Los Angeles,CA,90001 +257894,Flatscreen TV,1,300.0,2019-09-21 19:39:00,735 13th St, Boston,MA,02215 +257895,iPhone,1,700.0,2019-09-25 10:08:00,820 Jackson St, New York City,NY,10001 +257896,Wired Headphones,1,11.99,2019-09-14 09:44:00,252 6th St, Seattle,WA,98101 +257897,AA Batteries (4-pack),1,3.84,2019-09-07 16:46:00,130 Pine St, San Francisco,CA,94016 +257898,20in Monitor,1,109.99,2019-09-19 09:58:00,639 Highland St, New York City,NY,10001 +257899,Apple Airpods Headphones,1,150.0,2019-09-29 13:04:00,141 River St, San Francisco,CA,94016 +257900,AA Batteries (4-pack),1,3.84,2019-09-06 12:40:00,493 Lakeview St, Los Angeles,CA,90001 +257901,Bose SoundSport Headphones,1,99.99,2019-09-12 23:55:00,134 Forest St, Seattle,WA,98101 +257902,LG Dryer,1,600.0,2019-09-19 13:28:00,502 Dogwood St, Seattle,WA,98101 +257903,USB-C Charging Cable,1,11.95,2019-09-16 10:14:00,508 Maple St, New York City,NY,10001 +257904,34in Ultrawide Monitor,1,379.99,2019-09-08 08:46:00,705 Lincoln St, Boston,MA,02215 +257905,USB-C Charging Cable,1,11.95,2019-09-10 15:45:00,896 Jackson St, Portland,OR,97035 +257906,Lightning Charging Cable,1,14.95,2019-09-13 12:23:00,459 North St, Austin,TX,73301 +257907,AAA Batteries (4-pack),1,2.99,2019-09-28 00:53:00,131 South St, Portland,OR,97035 +257908,Lightning Charging Cable,1,14.95,2019-09-13 01:17:00,567 Maple St, Austin,TX,73301 +257909,AA Batteries (4-pack),1,3.84,2019-09-06 16:23:00,43 Elm St, Boston,MA,02215 +257910,Wired Headphones,1,11.99,2019-09-07 23:30:00,40 13th St, San Francisco,CA,94016 +257911,Wired Headphones,1,11.99,2019-09-30 18:48:00,22 Highland St, Los Angeles,CA,90001 +257912,27in FHD Monitor,1,149.99,2019-09-25 17:13:00,288 Pine St, Los Angeles,CA,90001 +257913,AAA Batteries (4-pack),1,2.99,2019-09-06 14:51:00,190 Jackson St, Dallas,TX,75001 +257914,AAA Batteries (4-pack),2,2.99,2019-09-07 13:39:00,361 Sunset St, Portland,OR,97035 +257915,27in FHD Monitor,1,149.99,2019-09-12 09:28:00,392 Forest St, New York City,NY,10001 +257916,Apple Airpods Headphones,1,150.0,2019-09-13 12:18:00,533 12th St, New York City,NY,10001 +257917,Apple Airpods Headphones,1,150.0,2019-09-04 20:52:00,761 Johnson St, Portland,ME,04101 +257918,Apple Airpods Headphones,1,150.0,2019-09-22 13:35:00,650 Main St, Los Angeles,CA,90001 +257919,AA Batteries (4-pack),1,3.84,2019-09-06 20:56:00,395 Chestnut St, San Francisco,CA,94016 +257920,Wired Headphones,1,11.99,2019-09-02 16:00:00,605 Cherry St, New York City,NY,10001 +257921,iPhone,1,700.0,2019-09-30 08:04:00,209 Madison St, San Francisco,CA,94016 +257922,Wired Headphones,1,11.99,2019-09-15 08:20:00,468 North St, Los Angeles,CA,90001 +257923,Google Phone,1,600.0,2019-09-27 19:12:00,572 Center St, Los Angeles,CA,90001 +257924,AAA Batteries (4-pack),2,2.99,2019-09-27 01:11:00,95 Lincoln St, Los Angeles,CA,90001 +257925,34in Ultrawide Monitor,1,379.99,2019-09-16 13:07:00,231 13th St, San Francisco,CA,94016 +257926,Lightning Charging Cable,1,14.95,2019-09-03 18:09:00,427 North St, New York City,NY,10001 +257927,34in Ultrawide Monitor,1,379.99,2019-09-10 16:31:00,894 Walnut St, San Francisco,CA,94016 +257928,USB-C Charging Cable,1,11.95,2019-09-26 18:53:00,955 Hickory St, Boston,MA,02215 +257929,AAA Batteries (4-pack),5,2.99,2019-09-24 23:47:00,438 Hickory St, Seattle,WA,98101 +257930,AA Batteries (4-pack),1,3.84,2019-09-05 19:51:00,235 8th St, San Francisco,CA,94016 +257931,Flatscreen TV,1,300.0,2019-09-05 10:58:00,184 Highland St, Los Angeles,CA,90001 +257932,USB-C Charging Cable,1,11.95,2019-09-12 15:43:00,320 Wilson St, Los Angeles,CA,90001 +257933,Flatscreen TV,1,300.0,2019-09-08 20:28:00,51 Lincoln St, Boston,MA,02215 +257934,Macbook Pro Laptop,1,1700.0,2019-09-23 20:17:00,685 Park St, Los Angeles,CA,90001 +257935,AA Batteries (4-pack),2,3.84,2019-09-23 09:21:00,34 North St, San Francisco,CA,94016 +257936,AAA Batteries (4-pack),1,2.99,2019-09-26 11:37:00,408 Meadow St, San Francisco,CA,94016 +257937,Apple Airpods Headphones,1,150.0,2019-09-10 19:55:00,245 1st St, New York City,NY,10001 +257938,Lightning Charging Cable,1,14.95,2019-09-08 13:03:00,792 Spruce St, New York City,NY,10001 +257939,34in Ultrawide Monitor,1,379.99,2019-09-16 00:01:00,389 Maple St, Dallas,TX,75001 +257940,Google Phone,1,600.0,2019-09-11 19:13:00,768 Adams St, New York City,NY,10001 +257941,ThinkPad Laptop,1,999.99,2019-09-14 21:27:00,237 6th St, San Francisco,CA,94016 +257942,AA Batteries (4-pack),1,3.84,2019-09-15 20:12:00,559 Elm St, Seattle,WA,98101 +257943,27in FHD Monitor,1,149.99,2019-09-13 15:37:00,684 9th St, Los Angeles,CA,90001 +257944,AAA Batteries (4-pack),2,2.99,2019-09-28 12:30:00,850 Pine St, Los Angeles,CA,90001 +257945,Bose SoundSport Headphones,1,99.99,2019-09-20 00:27:00,960 Chestnut St, Atlanta,GA,30301 +257946,AAA Batteries (4-pack),1,2.99,2019-09-07 13:38:00,423 Hickory St, San Francisco,CA,94016 +257947,AA Batteries (4-pack),2,3.84,2019-09-25 09:55:00,464 North St, Austin,TX,73301 +257948,AAA Batteries (4-pack),1,2.99,2019-09-15 18:14:00,150 North St, Los Angeles,CA,90001 +257949,Lightning Charging Cable,1,14.95,2019-09-09 22:33:00,621 Lakeview St, San Francisco,CA,94016 +257950,Lightning Charging Cable,1,14.95,2019-09-13 22:57:00,676 Park St, New York City,NY,10001 +257951,AA Batteries (4-pack),1,3.84,2019-09-13 22:23:00,86 Cedar St, San Francisco,CA,94016 +257952,AAA Batteries (4-pack),1,2.99,2019-09-06 12:22:00,910 South St, Atlanta,GA,30301 +257953,Macbook Pro Laptop,1,1700.0,2019-09-12 09:15:00,151 7th St, Dallas,TX,75001 +257954,Lightning Charging Cable,1,14.95,2019-09-17 22:10:00,590 Walnut St, San Francisco,CA,94016 +257955,Flatscreen TV,1,300.0,2019-09-06 16:11:00,588 Adams St, San Francisco,CA,94016 +257956,Apple Airpods Headphones,1,150.0,2019-09-16 13:24:00,787 1st St, San Francisco,CA,94016 +257957,AA Batteries (4-pack),1,3.84,2019-09-10 17:28:00,722 Madison St, Seattle,WA,98101 +257958,USB-C Charging Cable,1,11.95,2019-09-26 23:20:00,239 Meadow St, Austin,TX,73301 +257959,Wired Headphones,1,11.99,2019-09-19 22:45:00,273 13th St, Los Angeles,CA,90001 +257960,AA Batteries (4-pack),3,3.84,2019-09-03 16:46:00,406 Ridge St, Seattle,WA,98101 +257961,Google Phone,1,600.0,2019-09-16 08:51:00,473 Park St, Los Angeles,CA,90001 +257962,Vareebadd Phone,1,400.0,2019-09-07 23:27:00,150 West St, Los Angeles,CA,90001 +257963,27in FHD Monitor,1,149.99,2019-09-17 10:54:00,821 Ridge St, San Francisco,CA,94016 +257964,iPhone,1,700.0,2019-09-18 21:07:00,839 Lincoln St, Portland,OR,97035 +257965,27in 4K Gaming Monitor,1,389.99,2019-09-18 07:31:00,540 West St, Austin,TX,73301 +257966,Apple Airpods Headphones,1,150.0,2019-09-11 17:38:00,869 5th St, Dallas,TX,75001 +257967,USB-C Charging Cable,1,11.95,2019-09-03 09:25:00,747 Elm St, San Francisco,CA,94016 +257967,Bose SoundSport Headphones,1,99.99,2019-09-03 09:25:00,747 Elm St, San Francisco,CA,94016 +257968,Lightning Charging Cable,1,14.95,2019-09-23 13:32:00,974 Hill St, Atlanta,GA,30301 +257969,Apple Airpods Headphones,1,150.0,2019-09-28 13:30:00,834 Willow St, Seattle,WA,98101 +257970,AA Batteries (4-pack),1,3.84,2019-09-04 23:11:00,866 Pine St, Boston,MA,02215 +257971,Bose SoundSport Headphones,1,99.99,2019-09-15 21:42:00,599 Cherry St, Boston,MA,02215 +257972,ThinkPad Laptop,1,999.99,2019-09-17 07:21:00,15 4th St, Los Angeles,CA,90001 +257973,AA Batteries (4-pack),1,3.84,2019-09-26 10:15:00,598 South St, Los Angeles,CA,90001 +257974,Apple Airpods Headphones,1,150.0,2019-09-03 21:12:00,528 Hill St, Seattle,WA,98101 +257975,Lightning Charging Cable,1,14.95,2019-09-02 19:00:00,281 Forest St, Boston,MA,02215 +257976,Lightning Charging Cable,1,14.95,2019-09-19 06:09:00,523 Adams St, Austin,TX,73301 +257977,Wired Headphones,1,11.99,2019-09-28 19:48:00,59 Jefferson St, Atlanta,GA,30301 +257978,Lightning Charging Cable,1,14.95,2019-09-04 11:24:00,976 Johnson St, Boston,MA,02215 +257979,Lightning Charging Cable,1,14.95,2019-09-19 09:43:00,94 Jackson St, Boston,MA,02215 +257980,USB-C Charging Cable,1,11.95,2019-09-03 09:43:00,635 Main St, Portland,OR,97035 +257981,Lightning Charging Cable,1,14.95,2019-09-20 13:58:00,392 Forest St, New York City,NY,10001 +257982,27in 4K Gaming Monitor,1,389.99,2019-09-27 13:49:00,656 Spruce St, Atlanta,GA,30301 +257983,Apple Airpods Headphones,1,150.0,2019-09-01 13:22:00,456 Wilson St, Boston,MA,02215 +257984,AA Batteries (4-pack),1,3.84,2019-09-11 08:56:00,364 Ridge St, Austin,TX,73301 +257985,iPhone,1,700.0,2019-09-23 22:47:00,214 River St, Boston,MA,02215 +257986,Apple Airpods Headphones,1,150.0,2019-09-26 21:05:00,813 14th St, San Francisco,CA,94016 +257987,Bose SoundSport Headphones,1,99.99,2019-09-19 11:25:00,164 Elm St, Boston,MA,02215 +257988,Lightning Charging Cable,1,14.95,2019-09-26 07:22:00,958 Sunset St, Portland,ME,04101 +257989,AA Batteries (4-pack),2,3.84,2019-09-23 17:01:00,34 6th St, San Francisco,CA,94016 +257990,USB-C Charging Cable,1,11.95,2019-09-23 21:37:00,243 13th St, Atlanta,GA,30301 +257991,Bose SoundSport Headphones,1,99.99,2019-09-28 23:47:00,891 13th St, San Francisco,CA,94016 +257992,iPhone,1,700.0,2019-09-26 14:27:00,272 Forest St, Boston,MA,02215 +257993,AA Batteries (4-pack),1,3.84,2019-09-06 17:12:00,7 1st St, Austin,TX,73301 +257994,27in 4K Gaming Monitor,1,389.99,2019-09-26 17:54:00,30 Center St, San Francisco,CA,94016 +257995,Apple Airpods Headphones,1,150.0,2019-09-04 14:20:00,497 Willow St, San Francisco,CA,94016 +257996,20in Monitor,1,109.99,2019-09-02 19:58:00,180 Chestnut St, San Francisco,CA,94016 +257997,AAA Batteries (4-pack),2,2.99,2019-09-06 20:21:00,972 14th St, Los Angeles,CA,90001 +257998,Lightning Charging Cable,1,14.95,2019-09-20 16:20:00,758 Willow St, Boston,MA,02215 +257999,Macbook Pro Laptop,1,1700.0,2019-09-15 09:57:00,407 Johnson St, San Francisco,CA,94016 +258000,AAA Batteries (4-pack),2,2.99,2019-09-24 09:38:00,120 Highland St, San Francisco,CA,94016 +258001,27in FHD Monitor,1,149.99,2019-09-23 04:17:00,463 Park St, Seattle,WA,98101 +258002,AAA Batteries (4-pack),1,2.99,2019-09-01 23:58:00,839 Pine St, Los Angeles,CA,90001 +258003,USB-C Charging Cable,1,11.95,2019-09-09 09:09:00,611 Meadow St, Los Angeles,CA,90001 +258004,Bose SoundSport Headphones,1,99.99,2019-09-17 17:59:00,191 11th St, San Francisco,CA,94016 +258004,34in Ultrawide Monitor,1,379.99,2019-09-17 17:59:00,191 11th St, San Francisco,CA,94016 +258005,USB-C Charging Cable,1,11.95,2019-09-15 18:08:00,160 10th St, San Francisco,CA,94016 +258006,AAA Batteries (4-pack),1,2.99,2019-09-30 17:44:00,677 Park St, Dallas,TX,75001 +258007,27in 4K Gaming Monitor,1,389.99,2019-09-20 12:17:00,366 2nd St, Portland,OR,97035 +258008,AAA Batteries (4-pack),2,2.99,2019-09-18 21:32:00,442 4th St, San Francisco,CA,94016 +258009,AAA Batteries (4-pack),2,2.99,2019-09-13 00:28:00,521 Cedar St, San Francisco,CA,94016 +258010,Apple Airpods Headphones,1,150.0,2019-09-08 00:05:00,195 7th St, Boston,MA,02215 +258011,AA Batteries (4-pack),1,3.84,2019-09-28 17:34:00,830 Forest St, Boston,MA,02215 +258012,USB-C Charging Cable,1,11.95,2019-09-27 09:12:00,560 Highland St, Los Angeles,CA,90001 +258013,Wired Headphones,1,11.99,2019-09-09 01:41:00,406 Ridge St, Austin,TX,73301 +258014,Bose SoundSport Headphones,1,99.99,2019-09-28 14:32:00,750 Center St, San Francisco,CA,94016 +258015,iPhone,1,700.0,2019-09-06 19:40:00,906 Church St, Los Angeles,CA,90001 +258016,Wired Headphones,1,11.99,2019-09-24 17:58:00,612 Lake St, Los Angeles,CA,90001 +258017,Flatscreen TV,1,300.0,2019-09-23 11:59:00,497 Johnson St, Austin,TX,73301 +258018,Lightning Charging Cable,1,14.95,2019-09-27 05:02:00,78 Spruce St, San Francisco,CA,94016 +258019,Bose SoundSport Headphones,1,99.99,2019-09-18 22:16:00,104 Spruce St, San Francisco,CA,94016 +258020,Bose SoundSport Headphones,1,99.99,2019-09-04 06:09:00,567 South St, San Francisco,CA,94016 +258021,AA Batteries (4-pack),1,3.84,2019-09-16 20:28:00,674 14th St, Seattle,WA,98101 +258022,AAA Batteries (4-pack),1,2.99,2019-09-27 12:15:00,996 7th St, New York City,NY,10001 +258023,34in Ultrawide Monitor,1,379.99,2019-09-28 12:33:00,507 5th St, Dallas,TX,75001 +258024,Lightning Charging Cable,2,14.95,2019-09-09 12:38:00,477 Center St, San Francisco,CA,94016 +258025,27in 4K Gaming Monitor,1,389.99,2019-09-03 19:52:00,781 Forest St, Seattle,WA,98101 +258026,AAA Batteries (4-pack),1,2.99,2019-09-24 18:37:00,220 Highland St, Atlanta,GA,30301 +258027,Wired Headphones,1,11.99,2019-09-27 21:08:00,103 Hickory St, Boston,MA,02215 +258028,Bose SoundSport Headphones,1,99.99,2019-09-12 15:54:00,704 1st St, Dallas,TX,75001 +258029,Google Phone,1,600.0,2019-09-12 22:22:00,409 Wilson St, Portland,ME,04101 +258030,Wired Headphones,1,11.99,2019-09-12 14:40:00,146 Madison St, Dallas,TX,75001 +258031,27in 4K Gaming Monitor,1,389.99,2019-09-24 22:24:00,926 Maple St, Dallas,TX,75001 +258032,iPhone,1,700.0,2019-09-20 21:04:00,46 1st St, Austin,TX,73301 +258033,Google Phone,1,600.0,2019-09-04 18:10:00,547 Cedar St, Boston,MA,02215 +258033,Bose SoundSport Headphones,1,99.99,2019-09-04 18:10:00,547 Cedar St, Boston,MA,02215 +258034,AA Batteries (4-pack),1,3.84,2019-09-20 20:10:00,124 River St, New York City,NY,10001 +258035,AA Batteries (4-pack),1,3.84,2019-09-18 13:50:00,770 Jefferson St, Boston,MA,02215 +258036,AA Batteries (4-pack),1,3.84,2019-09-15 16:13:00,360 Washington St, Atlanta,GA,30301 +258037,Bose SoundSport Headphones,1,99.99,2019-09-15 11:18:00,957 Sunset St, San Francisco,CA,94016 +258038,AAA Batteries (4-pack),1,2.99,2019-09-01 21:38:00,260 Walnut St, Los Angeles,CA,90001 +258039,AA Batteries (4-pack),1,3.84,2019-09-09 16:31:00,306 Maple St, New York City,NY,10001 +258040,iPhone,1,700.0,2019-09-12 21:59:00,467 Church St, Boston,MA,02215 +258041,ThinkPad Laptop,1,999.99,2019-09-23 12:21:00,449 Spruce St, San Francisco,CA,94016 +258042,AA Batteries (4-pack),1,3.84,2019-09-01 20:50:00,919 Elm St, Austin,TX,73301 +258043,Bose SoundSport Headphones,1,99.99,2019-09-29 17:27:00,395 Main St, Dallas,TX,75001 +258044,AA Batteries (4-pack),1,3.84,2019-09-20 09:59:00,640 Forest St, New York City,NY,10001 +258045,USB-C Charging Cable,1,11.95,2019-09-19 23:52:00,857 Washington St, Boston,MA,02215 +258046,AAA Batteries (4-pack),1,2.99,2019-09-29 15:22:00,524 7th St, Boston,MA,02215 +258047,Macbook Pro Laptop,1,1700.0,2019-09-24 09:32:00,212 Pine St, Boston,MA,02215 +258048,20in Monitor,1,109.99,2019-09-03 12:21:00,207 Chestnut St, Atlanta,GA,30301 +258049,Flatscreen TV,1,300.0,2019-09-24 18:40:00,750 Madison St, San Francisco,CA,94016 +258050,iPhone,1,700.0,2019-09-18 12:30:00,339 6th St, San Francisco,CA,94016 +258051,Google Phone,1,600.0,2019-09-20 18:14:00,591 6th St, San Francisco,CA,94016 +258052,Flatscreen TV,1,300.0,2019-09-18 15:31:00,996 2nd St, Dallas,TX,75001 +258053,Bose SoundSport Headphones,1,99.99,2019-09-29 12:12:00,543 Johnson St, Portland,ME,04101 +258054,20in Monitor,1,109.99,2019-09-30 22:33:00,905 Lake St, San Francisco,CA,94016 +258055,USB-C Charging Cable,1,11.95,2019-09-06 09:47:00,544 West St, New York City,NY,10001 +258056,Lightning Charging Cable,1,14.95,2019-09-07 19:40:00,285 Park St, San Francisco,CA,94016 +258057,ThinkPad Laptop,1,999.99,2019-09-12 12:18:00,724 Highland St, Seattle,WA,98101 +258058,AAA Batteries (4-pack),1,2.99,2019-09-28 21:27:00,773 Spruce St, New York City,NY,10001 +258059,Bose SoundSport Headphones,1,99.99,2019-09-26 09:27:00,916 Main St, San Francisco,CA,94016 +258060,Lightning Charging Cable,1,14.95,2019-09-04 13:07:00,356 Willow St, San Francisco,CA,94016 +258061,Apple Airpods Headphones,1,150.0,2019-09-01 21:16:00,723 Chestnut St, San Francisco,CA,94016 +258062,Wired Headphones,1,11.99,2019-09-05 22:18:00,722 Hill St, Los Angeles,CA,90001 +258063,USB-C Charging Cable,1,11.95,2019-09-27 12:34:00,507 North St, Los Angeles,CA,90001 +258064,AA Batteries (4-pack),2,3.84,2019-09-06 14:20:00,840 West St, San Francisco,CA,94016 +258065,AA Batteries (4-pack),4,3.84,2019-09-01 06:08:00,752 Meadow St, San Francisco,CA,94016 +258066,Lightning Charging Cable,1,14.95,2019-09-27 18:39:00,828 South St, Boston,MA,02215 +258067,Apple Airpods Headphones,1,150.0,2019-09-12 19:53:00,483 7th St, Los Angeles,CA,90001 +258068,27in FHD Monitor,1,149.99,2019-09-20 14:34:00,976 Wilson St, Austin,TX,73301 +258069,AAA Batteries (4-pack),1,2.99,2019-09-08 09:01:00,125 Highland St, Los Angeles,CA,90001 +258070,iPhone,1,700.0,2019-09-20 14:02:00,934 Sunset St, Boston,MA,02215 +258071,Lightning Charging Cable,1,14.95,2019-09-29 14:04:00,573 Washington St, Portland,ME,04101 +258072,Wired Headphones,1,11.99,2019-09-02 17:31:00,404 Dogwood St, Boston,MA,02215 +258073,20in Monitor,1,109.99,2019-09-04 10:54:00,864 Willow St, Atlanta,GA,30301 +258074,Macbook Pro Laptop,1,1700.0,2019-09-19 06:43:00,121 Lakeview St, New York City,NY,10001 +258075,USB-C Charging Cable,1,11.95,2019-09-22 11:44:00,452 11th St, Atlanta,GA,30301 +258076,Apple Airpods Headphones,1,150.0,2019-09-05 16:41:00,517 Willow St, San Francisco,CA,94016 +258077,Lightning Charging Cable,1,14.95,2019-09-24 11:41:00,297 Wilson St, Los Angeles,CA,90001 +258078,AA Batteries (4-pack),1,3.84,2019-09-27 11:50:00,485 Cedar St, Atlanta,GA,30301 +258079,Wired Headphones,1,11.99,2019-09-12 15:04:00,273 Cedar St, Atlanta,GA,30301 +258080,Macbook Pro Laptop,1,1700.0,2019-09-06 19:33:00,708 Madison St, Boston,MA,02215 +258081,Macbook Pro Laptop,1,1700.0,2019-09-08 15:46:00,732 9th St, Boston,MA,02215 +258082,27in FHD Monitor,1,149.99,2019-09-14 11:26:00,733 Lake St, San Francisco,CA,94016 +258083,Lightning Charging Cable,1,14.95,2019-09-10 17:55:00,458 Madison St, Boston,MA,02215 +258084,20in Monitor,1,109.99,2019-09-03 14:30:00,991 Jefferson St, Los Angeles,CA,90001 +258085,USB-C Charging Cable,1,11.95,2019-09-27 08:48:00,4 Jefferson St, Austin,TX,73301 +258086,Lightning Charging Cable,1,14.95,2019-09-12 14:30:00,155 7th St, Atlanta,GA,30301 +258087,Bose SoundSport Headphones,1,99.99,2019-09-28 08:15:00,760 Hill St, New York City,NY,10001 +258088,AA Batteries (4-pack),1,3.84,2019-09-29 15:22:00,496 10th St, San Francisco,CA,94016 +258089,Wired Headphones,1,11.99,2019-09-23 14:31:00,392 South St, San Francisco,CA,94016 +258090,Wired Headphones,1,11.99,2019-09-30 21:28:00,190 Meadow St, Los Angeles,CA,90001 +258091,iPhone,1,700.0,2019-09-01 10:03:00,796 2nd St, San Francisco,CA,94016 +258092,34in Ultrawide Monitor,1,379.99,2019-09-09 22:29:00,577 Dogwood St, Boston,MA,02215 +258093,AA Batteries (4-pack),1,3.84,2019-09-21 09:40:00,639 Madison St, Boston,MA,02215 +258094,Apple Airpods Headphones,1,150.0,2019-09-03 13:45:00,671 River St, Los Angeles,CA,90001 +258095,Wired Headphones,2,11.99,2019-09-28 20:54:00,266 1st St, San Francisco,CA,94016 +258096,34in Ultrawide Monitor,1,379.99,2019-09-29 23:16:00,927 4th St, Dallas,TX,75001 +258097,Macbook Pro Laptop,1,1700.0,2019-09-26 17:53:00,920 Ridge St, New York City,NY,10001 +258098,iPhone,1,700.0,2019-09-13 16:04:00,908 Wilson St, San Francisco,CA,94016 +258098,Lightning Charging Cable,1,14.95,2019-09-13 16:04:00,908 Wilson St, San Francisco,CA,94016 +258099,USB-C Charging Cable,1,11.95,2019-09-14 09:06:00,802 Ridge St, New York City,NY,10001 +258100,Lightning Charging Cable,1,14.95,2019-09-15 06:36:00,722 2nd St, Los Angeles,CA,90001 +258101,Lightning Charging Cable,1,14.95,2019-09-06 14:54:00,207 Jefferson St, Los Angeles,CA,90001 +258102,AA Batteries (4-pack),1,3.84,2019-09-22 06:22:00,58 Spruce St, Atlanta,GA,30301 +258103,Wired Headphones,1,11.99,2019-09-24 18:24:00,625 Ridge St, San Francisco,CA,94016 +258104,Lightning Charging Cable,1,14.95,2019-09-08 19:56:00,524 Highland St, Los Angeles,CA,90001 +258105,USB-C Charging Cable,1,11.95,2019-09-28 16:30:00,216 Dogwood St, New York City,NY,10001 +258106,Macbook Pro Laptop,1,1700.0,2019-09-20 14:16:00,974 11th St, Atlanta,GA,30301 +258107,Google Phone,1,600.0,2019-09-23 14:23:00,460 Maple St, Seattle,WA,98101 +258108,Bose SoundSport Headphones,1,99.99,2019-09-25 18:46:00,855 Chestnut St, Dallas,TX,75001 +258109,Apple Airpods Headphones,1,150.0,2019-09-04 12:56:00,3 Sunset St, Boston,MA,02215 +258110,Apple Airpods Headphones,1,150.0,2019-09-27 10:52:00,116 Forest St, San Francisco,CA,94016 +258111,Bose SoundSport Headphones,1,99.99,2019-09-06 09:44:00,372 Chestnut St, Boston,MA,02215 +258112,Apple Airpods Headphones,1,150.0,2019-09-25 09:30:00,614 Spruce St, New York City,NY,10001 +258113,AA Batteries (4-pack),1,3.84,2019-09-22 14:08:00,322 Lincoln St, New York City,NY,10001 +258114,AAA Batteries (4-pack),3,2.99,2019-09-27 13:50:00,350 9th St, New York City,NY,10001 +258115,20in Monitor,1,109.99,2019-09-20 23:12:00,525 7th St, New York City,NY,10001 +258116,20in Monitor,1,109.99,2019-09-30 19:51:00,433 Cedar St, Portland,OR,97035 +258117,Google Phone,1,600.0,2019-09-23 02:56:00,720 Lincoln St, Austin,TX,73301 +258118,Google Phone,1,600.0,2019-09-08 14:13:00,597 Cherry St, Atlanta,GA,30301 +258119,Apple Airpods Headphones,1,150.0,2019-09-04 02:36:00,446 South St, Los Angeles,CA,90001 +258120,Wired Headphones,1,11.99,2019-09-13 14:00:00,86 Lake St, San Francisco,CA,94016 +258121,Bose SoundSport Headphones,1,99.99,2019-09-09 09:51:00,992 Lake St, San Francisco,CA,94016 +258122,Bose SoundSport Headphones,1,99.99,2019-09-27 13:37:00,340 Ridge St, Los Angeles,CA,90001 +258123,Wired Headphones,1,11.99,2019-09-23 22:19:00,240 Ridge St, New York City,NY,10001 +258124,20in Monitor,1,109.99,2019-09-17 22:41:00,842 12th St, New York City,NY,10001 +258125,Flatscreen TV,1,300.0,2019-09-07 12:00:00,681 Pine St, Los Angeles,CA,90001 +258126,Lightning Charging Cable,1,14.95,2019-09-10 11:40:00,557 14th St, San Francisco,CA,94016 +258127,USB-C Charging Cable,1,11.95,2019-09-03 00:36:00,574 Ridge St, San Francisco,CA,94016 +258128,Lightning Charging Cable,1,14.95,2019-09-27 13:57:00,677 Cherry St, Atlanta,GA,30301 +258129,USB-C Charging Cable,1,11.95,2019-09-01 10:28:00,500 7th St, Los Angeles,CA,90001 +258130,Bose SoundSport Headphones,1,99.99,2019-09-17 09:56:00,276 7th St, San Francisco,CA,94016 +258131,AAA Batteries (4-pack),1,2.99,2019-09-06 22:40:00,268 Cherry St, Portland,OR,97035 +258132,AA Batteries (4-pack),2,3.84,2019-09-14 17:30:00,723 Walnut St, Austin,TX,73301 +258133,AA Batteries (4-pack),1,3.84,2019-09-22 13:18:00,840 Lakeview St, San Francisco,CA,94016 +258134,Bose SoundSport Headphones,1,99.99,2019-09-19 08:18:00,537 Lincoln St, Boston,MA,02215 +258135,AAA Batteries (4-pack),2,2.99,2019-09-19 18:28:00,110 11th St, Los Angeles,CA,90001 +258136,Vareebadd Phone,1,400.0,2019-09-19 17:17:00,218 Madison St, Austin,TX,73301 +258137,Apple Airpods Headphones,1,150.0,2019-09-13 17:04:00,646 Washington St, New York City,NY,10001 +258138,Lightning Charging Cable,1,14.95,2019-09-20 11:24:00,313 South St, Los Angeles,CA,90001 +258139,Lightning Charging Cable,1,14.95,2019-09-21 20:33:00,602 Johnson St, Los Angeles,CA,90001 +258140,Lightning Charging Cable,1,14.95,2019-09-21 22:57:00,302 Main St, Dallas,TX,75001 +258141,Lightning Charging Cable,1,14.95,2019-09-10 17:02:00,644 Forest St, Boston,MA,02215 +258142,20in Monitor,1,109.99,2019-09-29 13:07:00,294 13th St, Los Angeles,CA,90001 +258143,Apple Airpods Headphones,1,150.0,2019-09-21 00:48:00,573 West St, Los Angeles,CA,90001 +258144,20in Monitor,1,109.99,2019-09-29 19:53:00,995 10th St, Seattle,WA,98101 +258145,USB-C Charging Cable,1,11.95,2019-09-21 08:19:00,810 5th St, Boston,MA,02215 +258146,Wired Headphones,1,11.99,2019-09-22 09:10:00,157 Hill St, Boston,MA,02215 +258147,Wired Headphones,1,11.99,2019-09-27 21:02:00,65 Park St, San Francisco,CA,94016 +258148,AAA Batteries (4-pack),2,2.99,2019-09-01 16:18:00,532 4th St, Portland,OR,97035 +258149,USB-C Charging Cable,1,11.95,2019-09-25 00:28:00,65 Wilson St, Los Angeles,CA,90001 +258150,Macbook Pro Laptop,1,1700.0,2019-09-20 17:01:00,576 South St, Los Angeles,CA,90001 +258151,USB-C Charging Cable,1,11.95,2019-09-20 14:03:00,821 Chestnut St, Atlanta,GA,30301 +258151,Apple Airpods Headphones,1,150.0,2019-09-20 14:03:00,821 Chestnut St, Atlanta,GA,30301 +258152,34in Ultrawide Monitor,1,379.99,2019-09-11 17:50:00,757 North St, San Francisco,CA,94016 +258153,Wired Headphones,1,11.99,2019-09-05 17:29:00,819 Hickory St, New York City,NY,10001 +258154,AAA Batteries (4-pack),1,2.99,2019-09-04 17:42:00,913 Maple St, Seattle,WA,98101 +258155,AA Batteries (4-pack),1,3.84,2019-09-21 14:08:00,4 Forest St, San Francisco,CA,94016 +258156,Lightning Charging Cable,1,14.95,2019-09-24 11:36:00,133 9th St, Boston,MA,02215 +258157,20in Monitor,1,109.99,2019-09-30 10:53:00,483 Dogwood St, Los Angeles,CA,90001 +258158,Bose SoundSport Headphones,1,99.99,2019-09-07 09:20:00,510 Chestnut St, Austin,TX,73301 +258159,34in Ultrawide Monitor,1,379.99,2019-09-01 09:07:00,994 5th St, Austin,TX,73301 +258160,Wired Headphones,1,11.99,2019-09-01 19:01:00,629 Jefferson St, Los Angeles,CA,90001 +258161,Apple Airpods Headphones,1,150.0,2019-09-19 23:57:00,69 Forest St, Boston,MA,02215 +258162,Macbook Pro Laptop,1,1700.0,2019-09-15 17:28:00,360 Lake St, Austin,TX,73301 +258163,Wired Headphones,1,11.99,2019-09-07 18:47:00,740 11th St, Seattle,WA,98101 +258164,20in Monitor,1,109.99,2019-09-06 07:13:00,101 Cherry St, New York City,NY,10001 +258165,AAA Batteries (4-pack),1,2.99,2019-09-18 21:32:00,876 Adams St, New York City,NY,10001 +258166,Apple Airpods Headphones,1,150.0,2019-09-19 21:10:00,146 4th St, San Francisco,CA,94016 +258167,Bose SoundSport Headphones,1,99.99,2019-09-23 13:17:00,344 Maple St, New York City,NY,10001 +258168,27in FHD Monitor,1,149.99,2019-09-12 19:28:00,431 1st St, Los Angeles,CA,90001 +258169,Wired Headphones,1,11.99,2019-09-07 21:58:00,588 Madison St, Los Angeles,CA,90001 +258170,Google Phone,1,600.0,2019-09-17 11:04:00,533 Lakeview St, New York City,NY,10001 +258171,AA Batteries (4-pack),1,3.84,2019-09-23 19:35:00,765 14th St, Atlanta,GA,30301 +258172,Google Phone,1,600.0,2019-09-30 21:37:00,644 Dogwood St, Atlanta,GA,30301 +258173,AA Batteries (4-pack),1,3.84,2019-09-30 12:11:00,739 Lakeview St, Los Angeles,CA,90001 +258174,Lightning Charging Cable,1,14.95,2019-09-01 21:07:00,226 North St, San Francisco,CA,94016 +258175,Wired Headphones,1,11.99,2019-09-26 11:05:00,919 Park St, San Francisco,CA,94016 +258176,27in 4K Gaming Monitor,1,389.99,2019-09-11 18:54:00,71 River St, Dallas,TX,75001 +258177,USB-C Charging Cable,1,11.95,2019-09-03 11:35:00,294 Cedar St, Seattle,WA,98101 +258178,USB-C Charging Cable,1,11.95,2019-09-27 19:30:00,481 Meadow St, Atlanta,GA,30301 +258179,Apple Airpods Headphones,1,150.0,2019-09-26 21:28:00,580 Highland St, San Francisco,CA,94016 +258180,ThinkPad Laptop,1,999.99,2019-09-16 19:35:00,938 Pine St, Seattle,WA,98101 +258180,AA Batteries (4-pack),1,3.84,2019-09-16 19:35:00,938 Pine St, Seattle,WA,98101 +258181,Bose SoundSport Headphones,1,99.99,2019-09-30 14:42:00,674 9th St, Boston,MA,02215 +258182,Wired Headphones,2,11.99,2019-09-09 11:02:00,852 Park St, Boston,MA,02215 +258183,Apple Airpods Headphones,1,150.0,2019-09-04 08:18:00,629 Cedar St, Atlanta,GA,30301 +258184,Wired Headphones,1,11.99,2019-09-04 16:17:00,313 Lake St, San Francisco,CA,94016 +258185,Bose SoundSport Headphones,1,99.99,2019-09-16 14:06:00,55 Washington St, New York City,NY,10001 +258186,AA Batteries (4-pack),1,3.84,2019-09-10 22:02:00,378 10th St, Los Angeles,CA,90001 +258187,USB-C Charging Cable,1,11.95,2019-09-06 14:03:00,69 Dogwood St, San Francisco,CA,94016 +258188,AAA Batteries (4-pack),3,2.99,2019-09-15 14:00:00,271 Spruce St, Boston,MA,02215 +258189,Lightning Charging Cable,1,14.95,2019-09-11 17:38:00,317 Johnson St, Los Angeles,CA,90001 +258190,Lightning Charging Cable,1,14.95,2019-09-16 21:05:00,571 Ridge St, Seattle,WA,98101 +258191,27in 4K Gaming Monitor,1,389.99,2019-09-20 17:39:00,509 11th St, New York City,NY,10001 +258192,27in FHD Monitor,1,149.99,2019-09-03 20:22:00,198 North St, Seattle,WA,98101 +258193,Apple Airpods Headphones,1,150.0,2019-09-28 23:16:00,221 Willow St, Atlanta,GA,30301 +258194,Wired Headphones,2,11.99,2019-09-29 20:19:00,283 South St, San Francisco,CA,94016 +258195,iPhone,1,700.0,2019-09-11 12:04:00,858 Dogwood St, Seattle,WA,98101 +258196,AA Batteries (4-pack),1,3.84,2019-09-05 21:16:00,333 9th St, Portland,OR,97035 +258197,27in 4K Gaming Monitor,1,389.99,2019-09-07 18:38:00,307 2nd St, Seattle,WA,98101 +258198,27in FHD Monitor,1,149.99,2019-09-19 13:42:00,167 Elm St, New York City,NY,10001 +258199,AAA Batteries (4-pack),1,2.99,2019-09-23 13:22:00,276 Wilson St, Dallas,TX,75001 +258200,USB-C Charging Cable,1,11.95,2019-09-03 13:17:00,40 Chestnut St, Portland,OR,97035 +258201,AAA Batteries (4-pack),1,2.99,2019-09-17 15:51:00,16 Hickory St, San Francisco,CA,94016 +258202,iPhone,1,700.0,2019-09-28 07:21:00,8 Lakeview St, San Francisco,CA,94016 +258203,AAA Batteries (4-pack),1,2.99,2019-09-13 15:36:00,781 Forest St, Seattle,WA,98101 +258204,27in FHD Monitor,1,149.99,2019-09-12 10:58:00,638 Sunset St, Atlanta,GA,30301 +258205,27in FHD Monitor,1,149.99,2019-09-17 16:19:00,279 Dogwood St, San Francisco,CA,94016 +258206,Wired Headphones,2,11.99,2019-09-17 06:00:00,108 Washington St, Los Angeles,CA,90001 +258207,27in 4K Gaming Monitor,1,389.99,2019-09-02 10:25:00,309 Meadow St, Atlanta,GA,30301 +258208,Vareebadd Phone,1,400.0,2019-09-26 11:34:00,84 Cherry St, Dallas,TX,75001 +258208,USB-C Charging Cable,3,11.95,2019-09-26 11:34:00,84 Cherry St, Dallas,TX,75001 +258209,AA Batteries (4-pack),1,3.84,2019-09-07 17:10:00,337 Sunset St, Seattle,WA,98101 +258210,Lightning Charging Cable,1,14.95,2019-09-01 13:16:00,283 12th St, San Francisco,CA,94016 +258211,Wired Headphones,1,11.99,2019-09-02 21:30:00,409 Lake St, Seattle,WA,98101 +258212,Bose SoundSport Headphones,1,99.99,2019-09-14 01:50:00,270 Hickory St, San Francisco,CA,94016 +258213,AAA Batteries (4-pack),1,2.99,2019-09-04 21:54:00,783 Main St, Atlanta,GA,30301 +258214,Macbook Pro Laptop,1,1700.0,2019-09-02 11:09:00,134 Sunset St, Los Angeles,CA,90001 +258215,27in FHD Monitor,1,149.99,2019-09-20 15:27:00,114 Walnut St, New York City,NY,10001 +258216,Wired Headphones,1,11.99,2019-09-16 12:55:00,863 Church St, Dallas,TX,75001 +258217,34in Ultrawide Monitor,1,379.99,2019-09-16 06:43:00,335 Jackson St, Atlanta,GA,30301 +258218,iPhone,1,700.0,2019-09-24 11:11:00,976 Lincoln St, Dallas,TX,75001 +258219,AA Batteries (4-pack),3,3.84,2019-09-02 11:37:00,229 2nd St, San Francisco,CA,94016 +258220,Vareebadd Phone,1,400.0,2019-09-09 10:37:00,607 7th St, Los Angeles,CA,90001 +258220,Bose SoundSport Headphones,1,99.99,2019-09-09 10:37:00,607 7th St, Los Angeles,CA,90001 +258221,Macbook Pro Laptop,1,1700.0,2019-09-20 16:35:00,463 9th St, New York City,NY,10001 +258222,27in 4K Gaming Monitor,1,389.99,2019-09-09 08:02:00,835 Sunset St, Portland,ME,04101 +258223,AA Batteries (4-pack),1,3.84,2019-09-23 05:40:00,525 14th St, San Francisco,CA,94016 +258224,AA Batteries (4-pack),1,3.84,2019-09-21 11:56:00,182 Lakeview St, San Francisco,CA,94016 +258225,AAA Batteries (4-pack),1,2.99,2019-09-18 17:47:00,842 14th St, San Francisco,CA,94016 +258226,USB-C Charging Cable,1,11.95,2019-09-12 11:55:00,709 13th St, San Francisco,CA,94016 +258227,AA Batteries (4-pack),1,3.84,2019-09-10 14:49:00,660 River St, Boston,MA,02215 +258228,AA Batteries (4-pack),1,3.84,2019-09-16 17:34:00,630 12th St, Boston,MA,02215 +258229,AAA Batteries (4-pack),1,2.99,2019-09-17 22:03:00,259 Johnson St, Los Angeles,CA,90001 +258230,Bose SoundSport Headphones,1,99.99,2019-09-20 08:53:00,254 Johnson St, New York City,NY,10001 +258231,LG Dryer,1,600.0,2019-09-22 21:51:00,87 River St, Los Angeles,CA,90001 +258232,20in Monitor,1,109.99,2019-09-08 23:35:00,192 North St, New York City,NY,10001 +258233,27in 4K Gaming Monitor,1,389.99,2019-09-13 14:21:00,145 Park St, San Francisco,CA,94016 +258234,Apple Airpods Headphones,1,150.0,2019-09-25 21:17:00,409 South St, New York City,NY,10001 +258235,Bose SoundSport Headphones,1,99.99,2019-09-01 17:33:00,223 6th St, San Francisco,CA,94016 +258236,Apple Airpods Headphones,1,150.0,2019-09-12 23:17:00,736 6th St, Austin,TX,73301 +258237,Apple Airpods Headphones,1,150.0,2019-09-27 18:29:00,95 Lincoln St, Los Angeles,CA,90001 +258238,AAA Batteries (4-pack),1,2.99,2019-09-18 09:47:00,710 South St, San Francisco,CA,94016 +258239,27in FHD Monitor,1,149.99,2019-09-19 15:12:00,90 11th St, San Francisco,CA,94016 +258240,Wired Headphones,1,11.99,2019-09-28 12:22:00,849 14th St, Seattle,WA,98101 +258241,Bose SoundSport Headphones,1,99.99,2019-09-19 14:23:00,691 Meadow St, Los Angeles,CA,90001 +258242,AAA Batteries (4-pack),1,2.99,2019-09-06 08:08:00,250 Church St, San Francisco,CA,94016 +258243,Bose SoundSport Headphones,1,99.99,2019-10-01 00:59:00,306 North St, San Francisco,CA,94016 +258244,USB-C Charging Cable,1,11.95,2019-09-26 20:35:00,962 Hill St, Los Angeles,CA,90001 +258245,Lightning Charging Cable,1,14.95,2019-09-04 12:22:00,65 Pine St, Portland,OR,97035 +258246,20in Monitor,1,109.99,2019-09-04 11:14:00,492 Dogwood St, San Francisco,CA,94016 +258247,USB-C Charging Cable,1,11.95,2019-09-19 14:17:00,625 Center St, San Francisco,CA,94016 +258248,AAA Batteries (4-pack),2,2.99,2019-09-10 14:16:00,609 Maple St, Austin,TX,73301 +258249,Apple Airpods Headphones,1,150.0,2019-09-18 12:17:00,336 Jackson St, Los Angeles,CA,90001 +258250,Lightning Charging Cable,1,14.95,2019-09-29 16:40:00,609 13th St, Portland,OR,97035 +258251,20in Monitor,1,109.99,2019-09-19 19:00:00,755 Cedar St, Los Angeles,CA,90001 +258252,27in FHD Monitor,1,149.99,2019-09-01 16:09:00,90 Johnson St, Portland,OR,97035 +258253,Google Phone,1,600.0,2019-09-07 18:18:00,641 14th St, Dallas,TX,75001 +258254,Bose SoundSport Headphones,1,99.99,2019-09-13 09:02:00,491 Park St, Portland,ME,04101 +258255,AA Batteries (4-pack),1,3.84,2019-09-04 20:02:00,237 Center St, San Francisco,CA,94016 +258256,AA Batteries (4-pack),1,3.84,2019-09-08 15:48:00,655 Center St, Los Angeles,CA,90001 +258257,AA Batteries (4-pack),1,3.84,2019-09-07 10:34:00,152 13th St, Portland,ME,04101 +258258,20in Monitor,1,109.99,2019-09-24 07:52:00,560 1st St, Los Angeles,CA,90001 +258259,USB-C Charging Cable,1,11.95,2019-09-22 18:30:00,574 Jefferson St, New York City,NY,10001 +258260,Bose SoundSport Headphones,1,99.99,2019-09-30 20:17:00,674 Madison St, Boston,MA,02215 +258261,27in 4K Gaming Monitor,1,389.99,2019-09-06 13:42:00,781 Madison St, San Francisco,CA,94016 +258262,AA Batteries (4-pack),1,3.84,2019-09-15 13:58:00,436 Cherry St, New York City,NY,10001 +258263,iPhone,1,700.0,2019-09-04 09:14:00,785 Park St, Dallas,TX,75001 +258264,AA Batteries (4-pack),1,3.84,2019-09-29 21:37:00,468 Lake St, Boston,MA,02215 +258265,Wired Headphones,1,11.99,2019-09-05 15:48:00,498 Washington St, San Francisco,CA,94016 +258266,USB-C Charging Cable,1,11.95,2019-09-02 03:36:00,412 Cherry St, Los Angeles,CA,90001 +258267,AAA Batteries (4-pack),2,2.99,2019-09-21 12:13:00,196 Hickory St, Seattle,WA,98101 +258268,Apple Airpods Headphones,1,150.0,2019-09-12 08:23:00,79 Sunset St, Los Angeles,CA,90001 +258269,USB-C Charging Cable,1,11.95,2019-09-28 18:19:00,412 Highland St, San Francisco,CA,94016 +258270,Wired Headphones,1,11.99,2019-09-01 18:22:00,275 Sunset St, New York City,NY,10001 +258271,Bose SoundSport Headphones,1,99.99,2019-09-14 18:58:00,615 Pine St, New York City,NY,10001 +258272,Wired Headphones,1,11.99,2019-09-12 13:36:00,713 River St, Dallas,TX,75001 +258273,USB-C Charging Cable,1,11.95,2019-09-10 13:01:00,911 River St, Boston,MA,02215 +258274,Wired Headphones,1,11.99,2019-09-10 22:50:00,131 Pine St, Portland,OR,97035 +258275,Wired Headphones,1,11.99,2019-09-25 10:32:00,204 Jefferson St, New York City,NY,10001 +258276,AA Batteries (4-pack),2,3.84,2019-09-22 16:37:00,228 Cedar St, New York City,NY,10001 +258277,Google Phone,1,600.0,2019-09-01 18:52:00,277 5th St, Los Angeles,CA,90001 +258277,Bose SoundSport Headphones,1,99.99,2019-09-01 18:52:00,277 5th St, Los Angeles,CA,90001 +258278,20in Monitor,1,109.99,2019-09-10 18:51:00,23 5th St, Dallas,TX,75001 +258279,AAA Batteries (4-pack),2,2.99,2019-09-13 19:47:00,970 Main St, San Francisco,CA,94016 +258280,Wired Headphones,1,11.99,2019-09-14 17:55:00,80 River St, Dallas,TX,75001 +258281,AAA Batteries (4-pack),1,2.99,2019-09-30 07:30:00,176 Park St, Dallas,TX,75001 +258282,20in Monitor,1,109.99,2019-09-05 15:01:00,787 Highland St, Portland,OR,97035 +258283,AAA Batteries (4-pack),2,2.99,2019-09-05 09:55:00,873 Park St, Los Angeles,CA,90001 +258284,Wired Headphones,1,11.99,2019-09-11 20:04:00,521 Center St, San Francisco,CA,94016 +258285,USB-C Charging Cable,2,11.95,2019-09-26 01:45:00,787 8th St, Atlanta,GA,30301 +258286,Lightning Charging Cable,2,14.95,2019-09-15 08:47:00,220 Hickory St, Austin,TX,73301 +258287,AAA Batteries (4-pack),1,2.99,2019-09-24 01:05:00,836 13th St, Austin,TX,73301 +258288,USB-C Charging Cable,1,11.95,2019-09-05 11:15:00,272 10th St, Boston,MA,02215 +258289,Wired Headphones,1,11.99,2019-09-27 08:03:00,453 Hill St, Boston,MA,02215 +258290,Google Phone,1,600.0,2019-09-01 23:31:00,671 Lake St, Atlanta,GA,30301 +258290,USB-C Charging Cable,1,11.95,2019-09-01 23:31:00,671 Lake St, Atlanta,GA,30301 +258291,AA Batteries (4-pack),1,3.84,2019-09-29 16:37:00,854 13th St, Seattle,WA,98101 +258292,Apple Airpods Headphones,1,150.0,2019-09-11 11:53:00,581 North St, Portland,OR,97035 +258293,Google Phone,1,600.0,2019-09-21 20:54:00,221 7th St, Seattle,WA,98101 +258294,Lightning Charging Cable,1,14.95,2019-09-28 17:46:00,869 Meadow St, Los Angeles,CA,90001 +258295,USB-C Charging Cable,1,11.95,2019-09-30 13:34:00,554 Willow St, San Francisco,CA,94016 +258296,Flatscreen TV,1,300.0,2019-09-15 08:37:00,940 Sunset St, New York City,NY,10001 +258297,AA Batteries (4-pack),1,3.84,2019-09-15 07:40:00,593 Lincoln St, San Francisco,CA,94016 +258298,27in FHD Monitor,1,149.99,2019-09-03 16:24:00,846 Meadow St, San Francisco,CA,94016 +258299,Wired Headphones,1,11.99,2019-09-01 16:24:00,315 Maple St, Seattle,WA,98101 +258300,Vareebadd Phone,1,400.0,2019-09-01 18:44:00,132 Maple St, San Francisco,CA,94016 +258301,Google Phone,1,600.0,2019-09-18 18:49:00,801 4th St, New York City,NY,10001 +258302,Wired Headphones,1,11.99,2019-09-08 23:33:00,365 Washington St, Los Angeles,CA,90001 +258303,USB-C Charging Cable,1,11.95,2019-09-19 09:23:00,364 North St, Boston,MA,02215 +258304,Wired Headphones,1,11.99,2019-09-30 03:46:00,969 Elm St, Boston,MA,02215 +258305,27in FHD Monitor,1,149.99,2019-09-16 00:05:00,759 Pine St, New York City,NY,10001 +258306,AA Batteries (4-pack),1,3.84,2019-09-08 18:24:00,241 Elm St, Atlanta,GA,30301 +258307,Bose SoundSport Headphones,1,99.99,2019-09-23 10:21:00,755 7th St, Dallas,TX,75001 +258308,Flatscreen TV,1,300.0,2019-09-30 07:59:00,783 Lake St, San Francisco,CA,94016 +258309,Wired Headphones,1,11.99,2019-09-03 16:28:00,113 Sunset St, Austin,TX,73301 +258310,AAA Batteries (4-pack),2,2.99,2019-09-11 17:41:00,959 West St, San Francisco,CA,94016 +258311,Lightning Charging Cable,1,14.95,2019-09-06 11:01:00,449 West St, Austin,TX,73301 +258312,AA Batteries (4-pack),1,3.84,2019-09-17 21:43:00,249 Elm St, Boston,MA,02215 +258313,AAA Batteries (4-pack),2,2.99,2019-09-12 14:00:00,471 South St, Boston,MA,02215 +258314,Google Phone,1,600.0,2019-09-02 13:30:00,375 Park St, San Francisco,CA,94016 +258315,Wired Headphones,1,11.99,2019-09-17 19:20:00,518 2nd St, Portland,ME,04101 +258316,AA Batteries (4-pack),1,3.84,2019-09-16 11:33:00,698 1st St, San Francisco,CA,94016 +258317,iPhone,1,700.0,2019-09-04 23:13:00,365 4th St, Boston,MA,02215 +258318,Bose SoundSport Headphones,1,99.99,2019-09-25 19:10:00,447 10th St, Boston,MA,02215 +258318,34in Ultrawide Monitor,1,379.99,2019-09-25 19:10:00,447 10th St, Boston,MA,02215 +258319,AAA Batteries (4-pack),3,2.99,2019-09-03 09:48:00,823 Walnut St, San Francisco,CA,94016 +258320,USB-C Charging Cable,1,11.95,2019-09-15 08:13:00,489 8th St, Los Angeles,CA,90001 +258321,iPhone,1,700.0,2019-09-10 09:41:00,767 Lincoln St, Atlanta,GA,30301 +258322,34in Ultrawide Monitor,1,379.99,2019-09-13 19:55:00,523 Wilson St, San Francisco,CA,94016 +258323,AA Batteries (4-pack),1,3.84,2019-09-30 21:33:00,571 Maple St, Boston,MA,02215 +258324,Macbook Pro Laptop,1,1700.0,2019-09-28 12:26:00,224 Washington St, San Francisco,CA,94016 +258325,AAA Batteries (4-pack),2,2.99,2019-09-23 07:21:00,473 7th St, San Francisco,CA,94016 +258326,27in FHD Monitor,1,149.99,2019-09-27 23:04:00,38 Spruce St, Los Angeles,CA,90001 +258327,ThinkPad Laptop,1,999.99,2019-09-27 09:38:00,261 Maple St, San Francisco,CA,94016 +258328,Wired Headphones,1,11.99,2019-09-22 09:00:00,219 Hickory St, Los Angeles,CA,90001 +258329,Lightning Charging Cable,1,14.95,2019-09-15 22:56:00,161 Willow St, San Francisco,CA,94016 +258330,27in 4K Gaming Monitor,1,389.99,2019-09-07 19:43:00,559 Dogwood St, Atlanta,GA,30301 +258331,Wired Headphones,1,11.99,2019-09-09 15:53:00,655 Dogwood St, Los Angeles,CA,90001 +258332,Wired Headphones,1,11.99,2019-09-28 18:19:00,872 2nd St, San Francisco,CA,94016 +258333,USB-C Charging Cable,1,11.95,2019-09-14 17:11:00,257 Chestnut St, New York City,NY,10001 +258334,Wired Headphones,1,11.99,2019-09-06 14:16:00,360 Church St, Dallas,TX,75001 +258335,AAA Batteries (4-pack),1,2.99,2019-09-19 10:04:00,634 Main St, Austin,TX,73301 +258336,USB-C Charging Cable,1,11.95,2019-09-16 15:34:00,724 Jackson St, Los Angeles,CA,90001 +258337,iPhone,1,700.0,2019-09-28 11:38:00,728 Sunset St, Portland,OR,97035 +258338,Lightning Charging Cable,1,14.95,2019-09-06 16:45:00,720 Pine St, Atlanta,GA,30301 +258339,USB-C Charging Cable,1,11.95,2019-09-29 12:49:00,980 Highland St, Boston,MA,02215 +258340,AA Batteries (4-pack),1,3.84,2019-09-05 16:00:00,572 2nd St, Portland,ME,04101 +258341,iPhone,1,700.0,2019-09-08 15:46:00,393 Adams St, Seattle,WA,98101 +258342,Google Phone,1,600.0,2019-09-17 20:46:00,228 Chestnut St, Dallas,TX,75001 +258343,Apple Airpods Headphones,1,150.0,2019-09-02 14:48:00,43 Ridge St, Boston,MA,02215 +258344,Wired Headphones,1,11.99,2019-09-23 09:08:00,539 6th St, Atlanta,GA,30301 +258345,Wired Headphones,2,11.99,2019-09-25 00:36:00,263 8th St, San Francisco,CA,94016 +258346,Wired Headphones,1,11.99,2019-09-29 23:13:00,678 Jackson St, Atlanta,GA,30301 +258347,Bose SoundSport Headphones,1,99.99,2019-09-20 16:46:00,105 Lincoln St, New York City,NY,10001 +258347,AAA Batteries (4-pack),1,2.99,2019-09-20 16:46:00,105 Lincoln St, New York City,NY,10001 +258348,AAA Batteries (4-pack),1,2.99,2019-09-30 19:56:00,251 7th St, San Francisco,CA,94016 +258349,AA Batteries (4-pack),1,3.84,2019-09-25 07:37:00,557 Main St, Dallas,TX,75001 +258350,27in 4K Gaming Monitor,1,389.99,2019-09-01 16:18:00,201 11th St, Los Angeles,CA,90001 +258351,Flatscreen TV,1,300.0,2019-09-14 14:53:00,505 Jackson St, Boston,MA,02215 +258352,AA Batteries (4-pack),1,3.84,2019-09-08 10:00:00,621 Washington St, Seattle,WA,98101 +258353,USB-C Charging Cable,1,11.95,2019-09-17 10:58:00,130 Spruce St, Boston,MA,02215 +258354,AAA Batteries (4-pack),1,2.99,2019-09-02 12:17:00,476 14th St, Seattle,WA,98101 +258355,USB-C Charging Cable,1,11.95,2019-09-28 23:24:00,919 Madison St, San Francisco,CA,94016 +258356,Apple Airpods Headphones,1,150.0,2019-09-27 15:28:00,670 4th St, Los Angeles,CA,90001 +258357,Apple Airpods Headphones,1,150.0,2019-09-26 11:16:00,56 Jackson St, San Francisco,CA,94016 +258358,27in FHD Monitor,1,149.99,2019-09-20 13:40:00,777 Cedar St, New York City,NY,10001 +258359,Wired Headphones,1,11.99,2019-09-19 17:46:00,188 Sunset St, Austin,TX,73301 +258360,Bose SoundSport Headphones,1,99.99,2019-09-04 20:18:00,128 Hickory St, Atlanta,GA,30301 +258361,Macbook Pro Laptop,1,1700.0,2019-09-24 21:26:00,952 South St, Portland,OR,97035 +258362,27in FHD Monitor,1,149.99,2019-09-27 19:29:00,883 8th St, Austin,TX,73301 +258363,Google Phone,1,600.0,2019-09-24 17:59:00,914 13th St, Los Angeles,CA,90001 +258364,AAA Batteries (4-pack),2,2.99,2019-09-08 11:30:00,994 Center St, San Francisco,CA,94016 +258365,Apple Airpods Headphones,1,150.0,2019-09-25 23:41:00,796 Hickory St, Dallas,TX,75001 +258366,Lightning Charging Cable,1,14.95,2019-09-23 07:50:00,883 Elm St, San Francisco,CA,94016 +258367,Wired Headphones,1,11.99,2019-09-03 22:05:00,678 Dogwood St, Los Angeles,CA,90001 +258368,AA Batteries (4-pack),1,3.84,2019-09-15 11:01:00,514 8th St, Boston,MA,02215 +258369,USB-C Charging Cable,1,11.95,2019-09-28 06:53:00,324 Johnson St, San Francisco,CA,94016 +258370,Wired Headphones,1,11.99,2019-09-09 10:18:00,256 12th St, Los Angeles,CA,90001 +258371,Bose SoundSport Headphones,1,99.99,2019-09-05 13:10:00,871 Jackson St, Los Angeles,CA,90001 +258372,Apple Airpods Headphones,1,150.0,2019-09-07 23:21:00,976 Chestnut St, San Francisco,CA,94016 +258373,Apple Airpods Headphones,1,150.0,2019-09-19 12:24:00,420 Pine St, San Francisco,CA,94016 +258374,Lightning Charging Cable,1,14.95,2019-09-07 17:49:00,424 River St, New York City,NY,10001 +258375,34in Ultrawide Monitor,1,379.99,2019-09-15 20:11:00,188 Lincoln St, Portland,OR,97035 +258376,Apple Airpods Headphones,1,150.0,2019-09-04 12:10:00,128 Pine St, New York City,NY,10001 +258376,AA Batteries (4-pack),2,3.84,2019-09-04 12:10:00,128 Pine St, New York City,NY,10001 +258377,Bose SoundSport Headphones,1,99.99,2019-09-30 21:44:00,417 Walnut St, Boston,MA,02215 +258378,Bose SoundSport Headphones,1,99.99,2019-09-24 16:24:00,466 Hill St, Portland,OR,97035 +258379,Apple Airpods Headphones,1,150.0,2019-09-26 14:54:00,110 Forest St, Portland,ME,04101 +258380,USB-C Charging Cable,1,11.95,2019-09-07 17:41:00,822 Highland St, New York City,NY,10001 +258381,iPhone,1,700.0,2019-09-26 15:18:00,818 Walnut St, Los Angeles,CA,90001 +258382,Wired Headphones,1,11.99,2019-09-04 13:21:00,698 6th St, Boston,MA,02215 +258383,AA Batteries (4-pack),1,3.84,2019-09-16 10:48:00,626 Chestnut St, Portland,ME,04101 +258384,AAA Batteries (4-pack),1,2.99,2019-09-22 17:48:00,495 Washington St, Portland,OR,97035 +258385,AAA Batteries (4-pack),1,2.99,2019-09-26 21:25:00,462 Jefferson St, Boston,MA,02215 +258386,USB-C Charging Cable,1,11.95,2019-09-18 22:15:00,392 Willow St, Austin,TX,73301 +258387,AAA Batteries (4-pack),1,2.99,2019-09-12 13:06:00,430 Park St, New York City,NY,10001 +258388,USB-C Charging Cable,1,11.95,2019-09-19 21:21:00,885 13th St, San Francisco,CA,94016 +258389,Lightning Charging Cable,1,14.95,2019-09-05 12:01:00,209 Elm St, Austin,TX,73301 +258390,27in 4K Gaming Monitor,1,389.99,2019-09-08 23:36:00,197 Lakeview St, Dallas,TX,75001 +258391,Bose SoundSport Headphones,1,99.99,2019-09-04 00:55:00,791 8th St, Dallas,TX,75001 +258392,27in FHD Monitor,1,149.99,2019-09-17 12:52:00,263 Forest St, New York City,NY,10001 +258393,34in Ultrawide Monitor,1,379.99,2019-09-02 00:49:00,309 Hickory St, San Francisco,CA,94016 +258394,Lightning Charging Cable,1,14.95,2019-09-17 21:31:00,372 Dogwood St, San Francisco,CA,94016 +258395,Wired Headphones,1,11.99,2019-09-01 19:15:00,861 Lakeview St, Seattle,WA,98101 +258396,20in Monitor,1,109.99,2019-09-07 14:44:00,454 Lake St, San Francisco,CA,94016 +258397,Bose SoundSport Headphones,1,99.99,2019-09-12 10:14:00,368 Cedar St, San Francisco,CA,94016 +258398,AA Batteries (4-pack),1,3.84,2019-09-21 09:33:00,737 12th St, Los Angeles,CA,90001 +258399,Apple Airpods Headphones,1,150.0,2019-09-06 17:58:00,314 Chestnut St, Austin,TX,73301 +258400,Lightning Charging Cable,1,14.95,2019-09-08 21:09:00,10 River St, Boston,MA,02215 +258401,Apple Airpods Headphones,1,150.0,2019-09-17 17:11:00,241 Cedar St, Portland,OR,97035 +258402,LG Washing Machine,1,600.0,2019-09-20 22:31:00,991 Willow St, Dallas,TX,75001 +258403,USB-C Charging Cable,1,11.95,2019-09-08 09:01:00,242 5th St, Boston,MA,02215 +258404,AA Batteries (4-pack),1,3.84,2019-09-18 17:07:00,657 Hill St, San Francisco,CA,94016 +258405,USB-C Charging Cable,1,11.95,2019-09-08 23:49:00,466 13th St, Austin,TX,73301 +258406,USB-C Charging Cable,1,11.95,2019-09-14 22:48:00,627 5th St, Seattle,WA,98101 +258407,Apple Airpods Headphones,1,150.0,2019-09-06 14:57:00,9 10th St, Dallas,TX,75001 +258408,USB-C Charging Cable,1,11.95,2019-09-15 19:06:00,957 Wilson St, New York City,NY,10001 +258409,Lightning Charging Cable,1,14.95,2019-09-30 13:27:00,246 Spruce St, San Francisco,CA,94016 +258410,Wired Headphones,1,11.99,2019-09-19 17:53:00,704 Adams St, Portland,OR,97035 +258411,27in 4K Gaming Monitor,1,389.99,2019-09-13 15:16:00,10 Spruce St, Los Angeles,CA,90001 +258412,USB-C Charging Cable,1,11.95,2019-09-23 21:51:00,199 Church St, Seattle,WA,98101 +258413,iPhone,1,700.0,2019-09-30 20:54:00,684 Walnut St, Boston,MA,02215 +258414,20in Monitor,1,109.99,2019-09-02 13:21:00,217 West St, Dallas,TX,75001 +258415,USB-C Charging Cable,2,11.95,2019-09-05 07:43:00,488 Maple St, New York City,NY,10001 +258415,Wired Headphones,1,11.99,2019-09-05 07:43:00,488 Maple St, New York City,NY,10001 +258416,ThinkPad Laptop,1,999.99,2019-09-02 12:53:00,878 Chestnut St, Seattle,WA,98101 +258417,AA Batteries (4-pack),1,3.84,2019-09-14 19:45:00,976 West St, San Francisco,CA,94016 +258418,Vareebadd Phone,1,400.0,2019-09-16 20:26:00,584 Wilson St, Los Angeles,CA,90001 +258418,Wired Headphones,2,11.99,2019-09-16 20:26:00,584 Wilson St, Los Angeles,CA,90001 +258419,Flatscreen TV,1,300.0,2019-09-28 11:28:00,904 Chestnut St, Los Angeles,CA,90001 +258420,27in 4K Gaming Monitor,1,389.99,2019-09-10 17:54:00,743 Spruce St, Los Angeles,CA,90001 +258421,AAA Batteries (4-pack),1,2.99,2019-09-17 14:36:00,871 Cedar St, Atlanta,GA,30301 +258422,AAA Batteries (4-pack),1,2.99,2019-09-13 13:38:00,713 North St, Los Angeles,CA,90001 +258423,Macbook Pro Laptop,1,1700.0,2019-09-30 09:13:00,455 9th St, Los Angeles,CA,90001 +258424,Wired Headphones,1,11.99,2019-09-04 22:52:00,368 Jackson St, Seattle,WA,98101 +258425,27in 4K Gaming Monitor,1,389.99,2019-09-03 20:02:00,879 Willow St, Boston,MA,02215 +258426,Bose SoundSport Headphones,1,99.99,2019-09-16 23:58:00,238 Elm St, Dallas,TX,75001 +258427,AA Batteries (4-pack),1,3.84,2019-09-09 21:18:00,627 5th St, Atlanta,GA,30301 +258428,27in 4K Gaming Monitor,1,389.99,2019-09-23 14:48:00,818 Elm St, Los Angeles,CA,90001 +258429,Lightning Charging Cable,1,14.95,2019-09-15 17:33:00,956 Hill St, Boston,MA,02215 +258430,Bose SoundSport Headphones,1,99.99,2019-09-03 11:40:00,492 4th St, Portland,OR,97035 +258431,Apple Airpods Headphones,1,150.0,2019-09-11 21:46:00,450 4th St, Dallas,TX,75001 +258432,Wired Headphones,1,11.99,2019-09-19 19:01:00,591 Cherry St, Los Angeles,CA,90001 +258433,Apple Airpods Headphones,1,150.0,2019-09-17 11:14:00,558 14th St, San Francisco,CA,94016 +258434,USB-C Charging Cable,1,11.95,2019-09-08 17:49:00,6 Ridge St, Los Angeles,CA,90001 +258435,Lightning Charging Cable,1,14.95,2019-09-03 21:05:00,777 Lincoln St, Seattle,WA,98101 +258436,AA Batteries (4-pack),1,3.84,2019-09-10 08:54:00,306 Jackson St, San Francisco,CA,94016 +258437,Wired Headphones,1,11.99,2019-09-10 03:51:00,529 River St, San Francisco,CA,94016 +258438,AAA Batteries (4-pack),1,2.99,2019-09-20 14:37:00,117 Cedar St, San Francisco,CA,94016 +258439,ThinkPad Laptop,1,999.99,2019-09-05 22:28:00,743 Hickory St, San Francisco,CA,94016 +258440,USB-C Charging Cable,1,11.95,2019-09-21 08:08:00,487 Jefferson St, Boston,MA,02215 +258441,Wired Headphones,1,11.99,2019-09-17 08:17:00,920 Maple St, Los Angeles,CA,90001 +258442,Bose SoundSport Headphones,1,99.99,2019-09-23 19:19:00,770 12th St, Austin,TX,73301 +258443,Wired Headphones,1,11.99,2019-09-15 01:02:00,389 7th St, Atlanta,GA,30301 +258444,Apple Airpods Headphones,1,150.0,2019-09-15 19:52:00,72 5th St, San Francisco,CA,94016 +258445,AAA Batteries (4-pack),1,2.99,2019-09-18 02:49:00,348 Willow St, New York City,NY,10001 +258446,Lightning Charging Cable,2,14.95,2019-09-04 19:23:00,552 11th St, San Francisco,CA,94016 +258447,AA Batteries (4-pack),1,3.84,2019-09-24 20:45:00,669 Maple St, New York City,NY,10001 +258448,Lightning Charging Cable,1,14.95,2019-09-10 22:14:00,186 Elm St, Los Angeles,CA,90001 +258449,USB-C Charging Cable,1,11.95,2019-09-17 17:06:00,45 Walnut St, San Francisco,CA,94016 +258450,AAA Batteries (4-pack),1,2.99,2019-09-02 08:00:00,500 6th St, San Francisco,CA,94016 +258451,20in Monitor,1,109.99,2019-09-23 10:29:00,766 Elm St, Seattle,WA,98101 +258452,AAA Batteries (4-pack),2,2.99,2019-09-23 17:01:00,744 Lake St, Austin,TX,73301 +258453,USB-C Charging Cable,1,11.95,2019-09-11 18:57:00,4 West St, Dallas,TX,75001 +258454,27in 4K Gaming Monitor,1,389.99,2019-09-18 13:42:00,268 Spruce St, San Francisco,CA,94016 +258455,27in 4K Gaming Monitor,1,389.99,2019-09-29 17:19:00,135 River St, Atlanta,GA,30301 +258456,AAA Batteries (4-pack),3,2.99,2019-09-03 18:32:00,788 West St, Los Angeles,CA,90001 +258457,Apple Airpods Headphones,1,150.0,2019-09-15 09:56:00,126 7th St, Los Angeles,CA,90001 +258458,Wired Headphones,1,11.99,2019-09-13 09:27:00,813 Forest St, Portland,OR,97035 +258459,Wired Headphones,1,11.99,2019-09-28 15:02:00,841 14th St, Seattle,WA,98101 +258460,ThinkPad Laptop,1,999.99,2019-09-05 20:29:00,771 Washington St, Portland,OR,97035 +258461,34in Ultrawide Monitor,1,379.99,2019-09-08 12:39:00,668 Hickory St, San Francisco,CA,94016 +258462,ThinkPad Laptop,1,999.99,2019-09-18 09:05:00,152 Washington St, New York City,NY,10001 +258463,AAA Batteries (4-pack),1,2.99,2019-09-07 14:41:00,526 5th St, San Francisco,CA,94016 +258464,27in FHD Monitor,1,149.99,2019-09-12 17:34:00,680 2nd St, San Francisco,CA,94016 +258465,Bose SoundSport Headphones,1,99.99,2019-09-05 18:52:00,253 Ridge St, San Francisco,CA,94016 +258466,AAA Batteries (4-pack),1,2.99,2019-09-06 22:48:00,935 Sunset St, San Francisco,CA,94016 +258467,Flatscreen TV,1,300.0,2019-09-22 09:55:00,994 Lake St, Portland,OR,97035 +258468,USB-C Charging Cable,1,11.95,2019-09-22 16:07:00,764 Hill St, Portland,ME,04101 +258469,Vareebadd Phone,1,400.0,2019-09-08 10:25:00,244 Cherry St, Seattle,WA,98101 +258469,USB-C Charging Cable,1,11.95,2019-09-08 10:25:00,244 Cherry St, Seattle,WA,98101 +258470,USB-C Charging Cable,1,11.95,2019-09-24 09:38:00,500 Meadow St, Boston,MA,02215 +258471,Vareebadd Phone,1,400.0,2019-09-13 15:24:00,818 Ridge St, Los Angeles,CA,90001 +258472,Apple Airpods Headphones,1,150.0,2019-09-30 09:11:00,441 5th St, Austin,TX,73301 +258473,USB-C Charging Cable,2,11.95,2019-09-15 20:57:00,854 Chestnut St, Los Angeles,CA,90001 +258474,Apple Airpods Headphones,1,150.0,2019-09-25 11:24:00,480 Hill St, San Francisco,CA,94016 +258475,Wired Headphones,1,11.99,2019-09-03 14:59:00,572 Cherry St, Los Angeles,CA,90001 +258476,Google Phone,1,600.0,2019-09-02 20:34:00,961 Maple St, Austin,TX,73301 +258477,Wired Headphones,1,11.99,2019-09-02 23:31:00,606 2nd St, San Francisco,CA,94016 +258478,34in Ultrawide Monitor,1,379.99,2019-09-23 20:15:00,824 Meadow St, San Francisco,CA,94016 +258479,Lightning Charging Cable,2,14.95,2019-09-07 10:44:00,683 Sunset St, Dallas,TX,75001 +258480,AA Batteries (4-pack),1,3.84,2019-09-22 19:42:00,388 Pine St, New York City,NY,10001 +258481,USB-C Charging Cable,1,11.95,2019-09-20 14:19:00,206 West St, Austin,TX,73301 +258482,27in FHD Monitor,1,149.99,2019-09-30 17:25:00,296 Washington St, San Francisco,CA,94016 +258483,Bose SoundSport Headphones,1,99.99,2019-09-09 12:18:00,259 Sunset St, New York City,NY,10001 +258484,Apple Airpods Headphones,1,150.0,2019-09-01 15:35:00,974 Washington St, San Francisco,CA,94016 +258485,Bose SoundSport Headphones,1,99.99,2019-09-09 13:32:00,354 Jackson St, Portland,OR,97035 +258486,Lightning Charging Cable,1,14.95,2019-09-20 19:08:00,113 Dogwood St, Portland,OR,97035 +258487,AA Batteries (4-pack),1,3.84,2019-09-11 14:33:00,261 Park St, Dallas,TX,75001 +258488,AAA Batteries (4-pack),1,2.99,2019-09-27 17:17:00,910 Highland St, San Francisco,CA,94016 +258489,AA Batteries (4-pack),1,3.84,2019-09-29 09:48:00,795 2nd St, Austin,TX,73301 +258490,34in Ultrawide Monitor,1,379.99,2019-09-09 17:17:00,39 Park St, Los Angeles,CA,90001 +258491,AA Batteries (4-pack),1,3.84,2019-09-04 21:23:00,568 Center St, Los Angeles,CA,90001 +258492,AA Batteries (4-pack),2,3.84,2019-09-28 07:46:00,946 7th St, Seattle,WA,98101 +258493,USB-C Charging Cable,1,11.95,2019-09-16 17:30:00,335 11th St, Dallas,TX,75001 +258494,Bose SoundSport Headphones,1,99.99,2019-09-13 23:34:00,588 Wilson St, Boston,MA,02215 +258495,34in Ultrawide Monitor,1,379.99,2019-09-12 17:37:00,152 Center St, New York City,NY,10001 +258496,AA Batteries (4-pack),2,3.84,2019-09-20 23:30:00,290 Jefferson St, Boston,MA,02215 +258497,AA Batteries (4-pack),1,3.84,2019-09-11 11:13:00,54 Hickory St, Boston,MA,02215 +258498,AA Batteries (4-pack),1,3.84,2019-09-18 17:40:00,349 Maple St, San Francisco,CA,94016 +258499,ThinkPad Laptop,1,999.99,2019-09-25 12:28:00,902 5th St, Los Angeles,CA,90001 +258500,Wired Headphones,1,11.99,2019-09-08 18:46:00,237 10th St, San Francisco,CA,94016 +258501,AA Batteries (4-pack),1,3.84,2019-09-27 12:31:00,501 Chestnut St, Dallas,TX,75001 +258502,Lightning Charging Cable,2,14.95,2019-09-03 11:39:00,469 12th St, San Francisco,CA,94016 +258503,USB-C Charging Cable,1,11.95,2019-09-15 10:04:00,761 West St, New York City,NY,10001 +258504,AA Batteries (4-pack),2,3.84,2019-09-10 15:02:00,548 12th St, New York City,NY,10001 +258505,27in 4K Gaming Monitor,1,389.99,2019-09-14 18:10:00,27 1st St, Portland,ME,04101 +258506,Bose SoundSport Headphones,1,99.99,2019-09-21 14:43:00,171 Hill St, Dallas,TX,75001 +258507,Lightning Charging Cable,1,14.95,2019-09-17 11:09:00,386 14th St, Boston,MA,02215 +258508,Bose SoundSport Headphones,1,99.99,2019-09-04 23:05:00,150 Cedar St, Portland,OR,97035 +258509,AA Batteries (4-pack),1,3.84,2019-09-04 18:11:00,25 Ridge St, Dallas,TX,75001 +258510,AA Batteries (4-pack),3,3.84,2019-09-01 12:24:00,816 Jackson St, Boston,MA,02215 +258511,AAA Batteries (4-pack),1,2.99,2019-09-29 10:21:00,216 Jackson St, San Francisco,CA,94016 +258512,USB-C Charging Cable,1,11.95,2019-09-07 22:43:00,367 8th St, San Francisco,CA,94016 +258513,27in FHD Monitor,1,149.99,2019-09-02 10:09:00,980 Chestnut St, Dallas,TX,75001 +258514,Google Phone,1,600.0,2019-09-14 15:25:00,610 Walnut St, Dallas,TX,75001 +258514,USB-C Charging Cable,1,11.95,2019-09-14 15:25:00,610 Walnut St, Dallas,TX,75001 +258514,Wired Headphones,2,11.99,2019-09-14 15:25:00,610 Walnut St, Dallas,TX,75001 +258515,AA Batteries (4-pack),2,3.84,2019-09-17 22:32:00,95 Willow St, Dallas,TX,75001 +258516,Bose SoundSport Headphones,1,99.99,2019-09-03 17:47:00,959 Spruce St, Dallas,TX,75001 +258517,Lightning Charging Cable,1,14.95,2019-09-26 13:00:00,179 Elm St, New York City,NY,10001 +258518,AA Batteries (4-pack),3,3.84,2019-09-14 13:19:00,105 2nd St, Portland,ME,04101 +258519,Apple Airpods Headphones,1,150.0,2019-09-02 18:33:00,320 7th St, Los Angeles,CA,90001 +258520,Macbook Pro Laptop,1,1700.0,2019-09-06 13:54:00,340 Main St, Los Angeles,CA,90001 +258521,USB-C Charging Cable,2,11.95,2019-09-16 09:41:00,342 6th St, San Francisco,CA,94016 +258522,Wired Headphones,1,11.99,2019-09-18 13:26:00,266 Hickory St, Boston,MA,02215 +258523,Lightning Charging Cable,2,14.95,2019-09-13 12:52:00,109 1st St, San Francisco,CA,94016 +258524,AA Batteries (4-pack),1,3.84,2019-09-02 15:34:00,5 Madison St, Boston,MA,02215 +258525,iPhone,1,700.0,2019-09-07 17:40:00,982 Lincoln St, Seattle,WA,98101 +258526,USB-C Charging Cable,1,11.95,2019-09-05 21:57:00,405 7th St, Dallas,TX,75001 +258527,Flatscreen TV,1,300.0,2019-09-02 10:41:00,960 2nd St, New York City,NY,10001 +258528,Google Phone,1,600.0,2019-09-14 11:08:00,512 Willow St, Austin,TX,73301 +258528,USB-C Charging Cable,1,11.95,2019-09-14 11:08:00,512 Willow St, Austin,TX,73301 +258529,AA Batteries (4-pack),1,3.84,2019-09-18 21:25:00,204 Washington St, Los Angeles,CA,90001 +258530,Wired Headphones,1,11.99,2019-09-30 12:57:00,394 Jefferson St, Dallas,TX,75001 +258531,Lightning Charging Cable,1,14.95,2019-09-10 17:29:00,913 Highland St, Boston,MA,02215 +258532,Wired Headphones,1,11.99,2019-09-28 00:07:00,471 1st St, Dallas,TX,75001 +258533,27in FHD Monitor,1,149.99,2019-09-14 20:52:00,203 River St, Austin,TX,73301 +258534,Apple Airpods Headphones,1,150.0,2019-09-23 14:13:00,342 South St, Seattle,WA,98101 +258535,USB-C Charging Cable,1,11.95,2019-09-10 15:56:00,745 8th St, New York City,NY,10001 +258536,Bose SoundSport Headphones,1,99.99,2019-09-06 15:01:00,738 Jackson St, Los Angeles,CA,90001 +258537,USB-C Charging Cable,1,11.95,2019-09-16 00:48:00,841 4th St, Los Angeles,CA,90001 +258538,Flatscreen TV,1,300.0,2019-09-22 14:12:00,746 Johnson St, Austin,TX,73301 +258539,Wired Headphones,1,11.99,2019-09-03 13:49:00,651 Walnut St, Atlanta,GA,30301 +258540,Google Phone,1,600.0,2019-09-22 12:18:00,713 Lakeview St, Portland,ME,04101 +258541,Bose SoundSport Headphones,1,99.99,2019-09-11 16:21:00,189 Pine St, San Francisco,CA,94016 +258542,Apple Airpods Headphones,1,150.0,2019-09-15 21:43:00,898 7th St, San Francisco,CA,94016 +258543,Google Phone,1,600.0,2019-09-08 18:50:00,192 5th St, San Francisco,CA,94016 +258544,Bose SoundSport Headphones,1,99.99,2019-09-01 16:37:00,305 Walnut St, Seattle,WA,98101 +258545,iPhone,1,700.0,2019-09-16 21:43:00,760 13th St, San Francisco,CA,94016 +258545,Lightning Charging Cable,2,14.95,2019-09-16 21:43:00,760 13th St, San Francisco,CA,94016 +258546,ThinkPad Laptop,1,999.99,2019-09-02 08:22:00,404 7th St, Seattle,WA,98101 +258547,34in Ultrawide Monitor,1,379.99,2019-09-17 14:26:00,873 Willow St, New York City,NY,10001 +258548,AAA Batteries (4-pack),1,2.99,2019-09-15 08:59:00,358 South St, Atlanta,GA,30301 +258549,Lightning Charging Cable,1,14.95,2019-09-25 06:26:00,191 13th St, Los Angeles,CA,90001 +258550,USB-C Charging Cable,1,11.95,2019-09-27 19:14:00,509 1st St, Portland,OR,97035 +258551,Apple Airpods Headphones,1,150.0,2019-09-08 21:57:00,784 5th St, Dallas,TX,75001 +258552,27in FHD Monitor,1,149.99,2019-09-06 12:40:00,262 7th St, San Francisco,CA,94016 +258553,AAA Batteries (4-pack),1,2.99,2019-09-14 14:38:00,38 Wilson St, Boston,MA,02215 +258554,Bose SoundSport Headphones,1,99.99,2019-09-18 13:19:00,75 Maple St, Atlanta,GA,30301 +258555,Bose SoundSport Headphones,1,99.99,2019-09-12 17:09:00,752 1st St, San Francisco,CA,94016 +258556,Apple Airpods Headphones,1,150.0,2019-09-24 08:35:00,93 Elm St, Atlanta,GA,30301 +258557,iPhone,1,700.0,2019-09-12 20:47:00,137 Cedar St, Los Angeles,CA,90001 +258557,Lightning Charging Cable,1,14.95,2019-09-12 20:47:00,137 Cedar St, Los Angeles,CA,90001 +258558,Wired Headphones,1,11.99,2019-09-02 13:19:00,559 13th St, Seattle,WA,98101 +258559,AA Batteries (4-pack),1,3.84,2019-09-26 09:18:00,373 Pine St, New York City,NY,10001 +258560,Lightning Charging Cable,1,14.95,2019-09-12 17:52:00,955 Jefferson St, San Francisco,CA,94016 +258561,27in FHD Monitor,1,149.99,2019-09-07 01:28:00,421 South St, Los Angeles,CA,90001 +258562,USB-C Charging Cable,1,11.95,2019-09-21 14:58:00,453 Adams St, San Francisco,CA,94016 +258563,Apple Airpods Headphones,1,150.0,2019-09-26 13:58:00,256 Main St, New York City,NY,10001 +258564,USB-C Charging Cable,1,11.95,2019-09-30 22:42:00,267 Park St, San Francisco,CA,94016 +258565,Bose SoundSport Headphones,1,99.99,2019-09-13 10:01:00,104 Walnut St, New York City,NY,10001 +258566,iPhone,1,700.0,2019-09-11 21:35:00,868 Jackson St, Austin,TX,73301 +258567,27in 4K Gaming Monitor,1,389.99,2019-09-14 16:52:00,671 Ridge St, Los Angeles,CA,90001 +258568,27in FHD Monitor,1,149.99,2019-09-01 18:44:00,718 8th St, Los Angeles,CA,90001 +258569,Bose SoundSport Headphones,1,99.99,2019-09-30 23:32:00,557 Johnson St, Boston,MA,02215 +258570,Apple Airpods Headphones,1,150.0,2019-09-17 13:00:00,740 Highland St, Portland,OR,97035 +258571,ThinkPad Laptop,1,999.99,2019-09-04 18:54:00,192 Meadow St, Los Angeles,CA,90001 +258572,AA Batteries (4-pack),1,3.84,2019-09-26 21:03:00,830 Walnut St, Boston,MA,02215 +258573,ThinkPad Laptop,1,999.99,2019-09-02 22:44:00,964 Church St, San Francisco,CA,94016 +258574,34in Ultrawide Monitor,1,379.99,2019-09-26 21:57:00,889 Madison St, San Francisco,CA,94016 +258575,AAA Batteries (4-pack),1,2.99,2019-09-21 15:39:00,352 Walnut St, Dallas,TX,75001 +258576,Wired Headphones,1,11.99,2019-09-12 18:09:00,458 Hickory St, Boston,MA,02215 +258577,USB-C Charging Cable,1,11.95,2019-09-04 13:35:00,601 North St, Seattle,WA,98101 +258578,AA Batteries (4-pack),1,3.84,2019-09-12 08:12:00,357 4th St, Los Angeles,CA,90001 +258579,USB-C Charging Cable,2,11.95,2019-09-03 15:04:00,563 12th St, Seattle,WA,98101 +258580,AA Batteries (4-pack),1,3.84,2019-09-14 17:19:00,11 Meadow St, New York City,NY,10001 +258581,AAA Batteries (4-pack),1,2.99,2019-09-19 10:05:00,501 Pine St, Seattle,WA,98101 +258582,Vareebadd Phone,1,400.0,2019-09-24 21:28:00,352 Lake St, Los Angeles,CA,90001 +258582,USB-C Charging Cable,2,11.95,2019-09-24 21:28:00,352 Lake St, Los Angeles,CA,90001 +258583,AAA Batteries (4-pack),2,2.99,2019-09-14 18:12:00,398 Church St, Portland,OR,97035 +258584,USB-C Charging Cable,1,11.95,2019-09-24 22:54:00,780 Maple St, New York City,NY,10001 +258585,AAA Batteries (4-pack),2,2.99,2019-09-24 13:22:00,357 Jefferson St, Atlanta,GA,30301 +258586,AA Batteries (4-pack),1,3.84,2019-09-02 23:57:00,694 14th St, Boston,MA,02215 +258587,AAA Batteries (4-pack),1,2.99,2019-09-09 20:55:00,144 Jackson St, San Francisco,CA,94016 +258588,USB-C Charging Cable,1,11.95,2019-09-10 21:02:00,822 14th St, San Francisco,CA,94016 +258589,USB-C Charging Cable,1,11.95,2019-09-15 09:59:00,513 1st St, San Francisco,CA,94016 +258590,AAA Batteries (4-pack),3,2.99,2019-09-08 19:55:00,148 Main St, San Francisco,CA,94016 +258591,Lightning Charging Cable,1,14.95,2019-09-06 09:16:00,804 6th St, New York City,NY,10001 +258592,Apple Airpods Headphones,1,150.0,2019-09-16 16:02:00,526 Center St, Austin,TX,73301 +258593,Bose SoundSport Headphones,1,99.99,2019-09-06 19:50:00,143 Ridge St, Dallas,TX,75001 +258594,USB-C Charging Cable,1,11.95,2019-09-20 13:55:00,832 River St, Atlanta,GA,30301 +258595,AAA Batteries (4-pack),1,2.99,2019-09-15 13:11:00,674 5th St, Dallas,TX,75001 +258596,USB-C Charging Cable,1,11.95,2019-09-22 09:22:00,614 Johnson St, Portland,OR,97035 +258597,Lightning Charging Cable,2,14.95,2019-09-26 21:17:00,691 14th St, San Francisco,CA,94016 +258598,Lightning Charging Cable,1,14.95,2019-09-28 11:27:00,58 8th St, Austin,TX,73301 +258599,Lightning Charging Cable,1,14.95,2019-09-03 14:46:00,59 Lakeview St, Los Angeles,CA,90001 +258600,Bose SoundSport Headphones,1,99.99,2019-09-23 14:42:00,862 Highland St, Dallas,TX,75001 +258601,AAA Batteries (4-pack),1,2.99,2019-09-01 13:59:00,395 6th St, New York City,NY,10001 +258602,AA Batteries (4-pack),1,3.84,2019-09-27 15:17:00,183 Jackson St, Dallas,TX,75001 +258603,27in 4K Gaming Monitor,1,389.99,2019-09-04 16:57:00,126 Cedar St, New York City,NY,10001 +258604,AA Batteries (4-pack),1,3.84,2019-09-10 10:43:00,643 8th St, Boston,MA,02215 +258605,AAA Batteries (4-pack),1,2.99,2019-09-09 19:22:00,280 13th St, Boston,MA,02215 +258606,USB-C Charging Cable,1,11.95,2019-09-16 12:27:00,151 5th St, Seattle,WA,98101 +258607,USB-C Charging Cable,1,11.95,2019-09-21 11:54:00,249 7th St, New York City,NY,10001 +258608,AA Batteries (4-pack),1,3.84,2019-09-22 22:54:00,39 Jackson St, Los Angeles,CA,90001 +258609,Wired Headphones,1,11.99,2019-09-26 14:51:00,699 Spruce St, San Francisco,CA,94016 +258610,27in 4K Gaming Monitor,1,389.99,2019-09-19 13:12:00,595 Hill St, Boston,MA,02215 +258611,Wired Headphones,1,11.99,2019-09-25 19:09:00,1 Johnson St, Seattle,WA,98101 +258612,AA Batteries (4-pack),1,3.84,2019-09-17 10:07:00,347 11th St, Boston,MA,02215 +258613,20in Monitor,1,109.99,2019-09-06 10:35:00,732 Lakeview St, New York City,NY,10001 +258614,AA Batteries (4-pack),1,3.84,2019-09-06 00:44:00,612 West St, San Francisco,CA,94016 +258615,AAA Batteries (4-pack),3,2.99,2019-09-18 12:27:00,788 2nd St, Los Angeles,CA,90001 +258616,Flatscreen TV,1,300.0,2019-09-28 21:35:00,459 11th St, San Francisco,CA,94016 +258617,AA Batteries (4-pack),2,3.84,2019-09-12 16:55:00,883 Jefferson St, Boston,MA,02215 +258618,AA Batteries (4-pack),1,3.84,2019-09-14 12:39:00,818 Maple St, Portland,ME,04101 +258619,AA Batteries (4-pack),1,3.84,2019-09-25 11:02:00,519 Cedar St, New York City,NY,10001 +258620,AA Batteries (4-pack),2,3.84,2019-09-24 19:23:00,915 Johnson St, San Francisco,CA,94016 +258621,AA Batteries (4-pack),1,3.84,2019-09-26 20:09:00,894 Wilson St, Austin,TX,73301 +258622,AA Batteries (4-pack),1,3.84,2019-09-16 21:04:00,578 Madison St, New York City,NY,10001 +258623,27in 4K Gaming Monitor,1,389.99,2019-09-05 00:17:00,765 Hill St, San Francisco,CA,94016 +258624,AA Batteries (4-pack),2,3.84,2019-09-19 12:05:00,7 14th St, Los Angeles,CA,90001 +258625,Lightning Charging Cable,1,14.95,2019-09-04 11:39:00,806 Main St, San Francisco,CA,94016 +258625,Bose SoundSport Headphones,1,99.99,2019-09-04 11:39:00,806 Main St, San Francisco,CA,94016 +258626,iPhone,1,700.0,2019-09-07 17:42:00,146 Forest St, New York City,NY,10001 +258627,USB-C Charging Cable,1,11.95,2019-09-22 08:24:00,834 Elm St, Los Angeles,CA,90001 +258628,Wired Headphones,1,11.99,2019-09-20 15:32:00,356 Pine St, Dallas,TX,75001 +258629,Lightning Charging Cable,1,14.95,2019-09-07 12:06:00,989 River St, San Francisco,CA,94016 +258630,AAA Batteries (4-pack),4,2.99,2019-09-12 09:44:00,125 Pine St, New York City,NY,10001 +258631,AA Batteries (4-pack),1,3.84,2019-09-20 08:21:00,676 8th St, San Francisco,CA,94016 +258632,Apple Airpods Headphones,1,150.0,2019-09-21 17:01:00,104 Jefferson St, Boston,MA,02215 +258633,Macbook Pro Laptop,1,1700.0,2019-09-24 06:57:00,61 Washington St, Boston,MA,02215 +258634,AA Batteries (4-pack),1,3.84,2019-09-29 20:40:00,211 Spruce St, Boston,MA,02215 +258635,AA Batteries (4-pack),1,3.84,2019-09-06 09:36:00,420 Johnson St, Seattle,WA,98101 +258636,AAA Batteries (4-pack),1,2.99,2019-09-24 20:44:00,348 River St, Los Angeles,CA,90001 +258637,Apple Airpods Headphones,1,150.0,2019-09-12 06:44:00,462 Highland St, San Francisco,CA,94016 +258638,20in Monitor,1,109.99,2019-09-10 11:38:00,353 Lakeview St, Seattle,WA,98101 +258639,Wired Headphones,1,11.99,2019-09-29 22:03:00,972 1st St, Boston,MA,02215 +258640,AAA Batteries (4-pack),1,2.99,2019-09-26 13:57:00,649 Church St, New York City,NY,10001 +258641,USB-C Charging Cable,1,11.95,2019-09-07 13:43:00,118 Hill St, San Francisco,CA,94016 +258642,27in FHD Monitor,1,149.99,2019-09-17 12:47:00,668 Spruce St, Boston,MA,02215 +258643,AA Batteries (4-pack),1,3.84,2019-09-04 19:41:00,12 Main St, San Francisco,CA,94016 +258644,iPhone,1,700.0,2019-09-30 10:34:00,587 North St, Atlanta,GA,30301 +258645,Bose SoundSport Headphones,1,99.99,2019-09-12 19:07:00,599 9th St, San Francisco,CA,94016 +258646,Lightning Charging Cable,1,14.95,2019-09-29 05:40:00,606 Lincoln St, Austin,TX,73301 +258647,USB-C Charging Cable,2,11.95,2019-09-26 13:34:00,147 Forest St, Seattle,WA,98101 +258648,27in FHD Monitor,1,149.99,2019-09-15 08:20:00,79 5th St, Dallas,TX,75001 +258649,AAA Batteries (4-pack),1,2.99,2019-09-18 17:32:00,766 Highland St, San Francisco,CA,94016 +258650,AA Batteries (4-pack),1,3.84,2019-09-15 11:36:00,317 Cedar St, Los Angeles,CA,90001 +258651,Wired Headphones,1,11.99,2019-09-20 19:44:00,918 Sunset St, San Francisco,CA,94016 +258652,iPhone,1,700.0,2019-09-09 23:04:00,53 Lakeview St, Boston,MA,02215 +258653,27in 4K Gaming Monitor,1,389.99,2019-09-02 09:31:00,340 Pine St, Dallas,TX,75001 +258654,Lightning Charging Cable,1,14.95,2019-09-03 08:52:00,674 12th St, Portland,OR,97035 +258655,Wired Headphones,1,11.99,2019-09-26 06:45:00,747 1st St, San Francisco,CA,94016 +258656,Flatscreen TV,1,300.0,2019-09-03 10:35:00,466 Cedar St, Los Angeles,CA,90001 +258657,AAA Batteries (4-pack),1,2.99,2019-09-04 12:01:00,799 13th St, Portland,OR,97035 +258658,ThinkPad Laptop,1,999.99,2019-09-18 21:44:00,123 Pine St, San Francisco,CA,94016 +258659,Lightning Charging Cable,1,14.95,2019-09-01 21:19:00,7 Wilson St, Boston,MA,02215 +258660,USB-C Charging Cable,1,11.95,2019-09-29 07:59:00,701 West St, Atlanta,GA,30301 +258661,27in 4K Gaming Monitor,1,389.99,2019-09-13 18:09:00,531 Chestnut St, Boston,MA,02215 +258661,34in Ultrawide Monitor,1,379.99,2019-09-13 18:09:00,531 Chestnut St, Boston,MA,02215 +258662,USB-C Charging Cable,1,11.95,2019-09-19 20:05:00,65 Washington St, San Francisco,CA,94016 +258663,AA Batteries (4-pack),3,3.84,2019-09-03 13:27:00,848 Spruce St, San Francisco,CA,94016 +258664,Bose SoundSport Headphones,1,99.99,2019-09-09 22:55:00,354 4th St, New York City,NY,10001 +258665,Apple Airpods Headphones,1,150.0,2019-09-17 01:40:00,691 Lincoln St, San Francisco,CA,94016 +258666,USB-C Charging Cable,1,11.95,2019-09-20 19:57:00,543 8th St, San Francisco,CA,94016 +258667,AA Batteries (4-pack),1,3.84,2019-09-01 13:39:00,4 Meadow St, Dallas,TX,75001 +258668,USB-C Charging Cable,3,11.95,2019-09-23 12:53:00,959 Spruce St, Boston,MA,02215 +258669,AAA Batteries (4-pack),3,2.99,2019-09-29 21:52:00,113 Madison St, Los Angeles,CA,90001 +258670,Lightning Charging Cable,1,14.95,2019-09-22 18:47:00,866 Adams St, San Francisco,CA,94016 +258671,Apple Airpods Headphones,1,150.0,2019-09-01 13:01:00,121 Ridge St, San Francisco,CA,94016 +258672,USB-C Charging Cable,1,11.95,2019-09-24 18:21:00,773 Lakeview St, Atlanta,GA,30301 +258673,34in Ultrawide Monitor,1,379.99,2019-09-27 17:20:00,472 Walnut St, San Francisco,CA,94016 +258674,AAA Batteries (4-pack),3,2.99,2019-09-08 12:22:00,84 Hill St, Seattle,WA,98101 +258675,Apple Airpods Headphones,1,150.0,2019-09-19 09:16:00,116 South St, Boston,MA,02215 +258676,Bose SoundSport Headphones,1,99.99,2019-09-22 18:30:00,876 Washington St, Boston,MA,02215 +258677,Wired Headphones,2,11.99,2019-09-27 13:21:00,476 Hickory St, Los Angeles,CA,90001 +258678,iPhone,1,700.0,2019-09-06 14:19:00,486 Cedar St, Seattle,WA,98101 +258679,27in 4K Gaming Monitor,1,389.99,2019-09-16 07:46:00,821 9th St, New York City,NY,10001 +258680,USB-C Charging Cable,1,11.95,2019-09-02 07:43:00,626 Park St, Los Angeles,CA,90001 +258681,27in 4K Gaming Monitor,1,389.99,2019-09-03 02:47:00,553 Meadow St, Boston,MA,02215 +258682,Apple Airpods Headphones,1,150.0,2019-09-26 10:58:00,148 9th St, San Francisco,CA,94016 +258683,Wired Headphones,1,11.99,2019-09-24 00:41:00,529 1st St, Los Angeles,CA,90001 +258684,USB-C Charging Cable,1,11.95,2019-09-03 14:48:00,727 Johnson St, Boston,MA,02215 +258685,Wired Headphones,1,11.99,2019-09-21 21:29:00,684 Spruce St, Los Angeles,CA,90001 +258686,Lightning Charging Cable,1,14.95,2019-09-23 20:17:00,656 South St, San Francisco,CA,94016 +258687,34in Ultrawide Monitor,1,379.99,2019-09-08 16:29:00,81 Spruce St, Dallas,TX,75001 +258688,Bose SoundSport Headphones,1,99.99,2019-09-06 13:07:00,525 Ridge St, Los Angeles,CA,90001 +258689,AAA Batteries (4-pack),1,2.99,2019-09-19 15:45:00,473 14th St, Dallas,TX,75001 +258690,AA Batteries (4-pack),1,3.84,2019-09-05 11:57:00,901 5th St, Los Angeles,CA,90001 +258691,USB-C Charging Cable,1,11.95,2019-09-02 08:21:00,296 Jackson St, Atlanta,GA,30301 +258692,AAA Batteries (4-pack),1,2.99,2019-09-24 22:01:00,904 9th St, San Francisco,CA,94016 +258693,USB-C Charging Cable,1,11.95,2019-09-17 22:52:00,37 Johnson St, Los Angeles,CA,90001 +258694,Macbook Pro Laptop,1,1700.0,2019-09-18 17:44:00,684 Meadow St, New York City,NY,10001 +258695,AA Batteries (4-pack),1,3.84,2019-09-26 12:21:00,204 Jefferson St, Los Angeles,CA,90001 +258696,Apple Airpods Headphones,1,150.0,2019-09-15 12:16:00,664 7th St, Boston,MA,02215 +258697,AA Batteries (4-pack),2,3.84,2019-09-11 02:09:00,391 South St, New York City,NY,10001 +258698,Lightning Charging Cable,2,14.95,2019-09-08 08:49:00,266 Lincoln St, New York City,NY,10001 +258699,AA Batteries (4-pack),1,3.84,2019-09-20 14:51:00,207 Forest St, San Francisco,CA,94016 +258700,Apple Airpods Headphones,1,150.0,2019-09-22 08:11:00,471 Wilson St, New York City,NY,10001 +258701,Wired Headphones,1,11.99,2019-09-21 16:27:00,694 13th St, Los Angeles,CA,90001 +258702,Lightning Charging Cable,1,14.95,2019-09-15 14:44:00,934 Maple St, New York City,NY,10001 +258703,AA Batteries (4-pack),1,3.84,2019-09-03 21:47:00,383 North St, Seattle,WA,98101 +258704,Macbook Pro Laptop,1,1700.0,2019-09-04 23:38:00,367 Park St, Seattle,WA,98101 +258705,Lightning Charging Cable,1,14.95,2019-09-15 22:11:00,646 13th St, San Francisco,CA,94016 +258706,Wired Headphones,1,11.99,2019-09-16 18:13:00,58 West St, San Francisco,CA,94016 +258707,Bose SoundSport Headphones,1,99.99,2019-09-24 15:55:00,992 River St, San Francisco,CA,94016 +258707,USB-C Charging Cable,1,11.95,2019-09-24 15:55:00,992 River St, San Francisco,CA,94016 +258708,AAA Batteries (4-pack),1,2.99,2019-09-11 08:12:00,837 Washington St, Seattle,WA,98101 +258708,27in 4K Gaming Monitor,1,389.99,2019-09-11 08:12:00,837 Washington St, Seattle,WA,98101 +258709,ThinkPad Laptop,1,999.99,2019-09-24 20:50:00,820 Jackson St, San Francisco,CA,94016 +258710,LG Dryer,1,600.0,2019-09-03 16:34:00,683 12th St, Los Angeles,CA,90001 +258711,Lightning Charging Cable,1,14.95,2019-09-04 04:17:00,906 Highland St, Los Angeles,CA,90001 +258712,Bose SoundSport Headphones,1,99.99,2019-09-15 14:09:00,667 Center St, Boston,MA,02215 +258713,Wired Headphones,1,11.99,2019-09-08 16:26:00,683 Main St, San Francisco,CA,94016 +258714,34in Ultrawide Monitor,1,379.99,2019-09-14 21:06:00,905 Meadow St, Atlanta,GA,30301 +258715,Lightning Charging Cable,1,14.95,2019-09-15 16:50:00,550 10th St, Portland,OR,97035 +258716,Wired Headphones,1,11.99,2019-09-27 21:36:00,371 Forest St, Portland,OR,97035 +258717,Apple Airpods Headphones,1,150.0,2019-09-25 09:54:00,694 Hill St, Boston,MA,02215 +258718,27in FHD Monitor,1,149.99,2019-09-23 14:23:00,116 Lincoln St, San Francisco,CA,94016 +258719,USB-C Charging Cable,1,11.95,2019-09-01 15:36:00,412 Elm St, Austin,TX,73301 +258720,AAA Batteries (4-pack),1,2.99,2019-09-02 17:07:00,922 Walnut St, Boston,MA,02215 +258721,AA Batteries (4-pack),1,3.84,2019-09-25 18:24:00,612 11th St, Seattle,WA,98101 +258722,AA Batteries (4-pack),1,3.84,2019-09-28 22:11:00,461 Madison St, San Francisco,CA,94016 +258723,AA Batteries (4-pack),1,3.84,2019-09-25 12:31:00,463 9th St, Boston,MA,02215 +258724,Google Phone,1,600.0,2019-09-07 21:58:00,37 6th St, Los Angeles,CA,90001 +258725,Apple Airpods Headphones,1,150.0,2019-09-22 16:46:00,93 Willow St, Seattle,WA,98101 +258726,27in FHD Monitor,1,149.99,2019-09-11 11:15:00,886 8th St, Boston,MA,02215 +258727,Bose SoundSport Headphones,1,99.99,2019-09-23 14:14:00,672 4th St, New York City,NY,10001 +258728,27in FHD Monitor,1,149.99,2019-09-18 18:53:00,690 Wilson St, Seattle,WA,98101 +258729,Google Phone,1,600.0,2019-09-09 16:45:00,385 Chestnut St, Austin,TX,73301 +258730,27in 4K Gaming Monitor,1,389.99,2019-09-30 11:03:00,746 5th St, New York City,NY,10001 +258731,iPhone,1,700.0,2019-09-20 13:00:00,146 Jackson St, Los Angeles,CA,90001 +258731,Lightning Charging Cable,1,14.95,2019-09-20 13:00:00,146 Jackson St, Los Angeles,CA,90001 +258732,Apple Airpods Headphones,1,150.0,2019-09-30 20:58:00,695 River St, New York City,NY,10001 +258733,Macbook Pro Laptop,1,1700.0,2019-09-20 10:22:00,791 South St, Boston,MA,02215 +258734,USB-C Charging Cable,1,11.95,2019-09-27 19:43:00,107 5th St, New York City,NY,10001 +258735,USB-C Charging Cable,1,11.95,2019-09-11 16:25:00,396 Jackson St, San Francisco,CA,94016 +258736,Apple Airpods Headphones,1,150.0,2019-09-02 20:09:00,599 River St, Portland,ME,04101 +258737,Lightning Charging Cable,1,14.95,2019-09-18 17:51:00,824 5th St, Portland,OR,97035 +258738,AAA Batteries (4-pack),1,2.99,2019-09-13 14:07:00,487 Church St, Portland,ME,04101 +258739,ThinkPad Laptop,1,999.99,2019-09-29 12:29:00,492 Cherry St, New York City,NY,10001 +258740,27in 4K Gaming Monitor,1,389.99,2019-09-19 19:15:00,90 Spruce St, Boston,MA,02215 +258741,27in FHD Monitor,1,149.99,2019-09-26 07:10:00,850 Madison St, San Francisco,CA,94016 +258742,Apple Airpods Headphones,1,150.0,2019-09-22 21:26:00,661 10th St, San Francisco,CA,94016 +258743,AA Batteries (4-pack),1,3.84,2019-09-27 10:39:00,260 Elm St, San Francisco,CA,94016 +258744,Bose SoundSport Headphones,1,99.99,2019-09-30 13:34:00,189 Pine St, Boston,MA,02215 +258745,AAA Batteries (4-pack),1,2.99,2019-09-20 09:36:00,560 13th St, San Francisco,CA,94016 +258746,Bose SoundSport Headphones,1,99.99,2019-09-10 19:57:00,559 Hill St, Los Angeles,CA,90001 +258747,Lightning Charging Cable,1,14.95,2019-09-19 19:50:00,165 Cedar St, New York City,NY,10001 +258748,USB-C Charging Cable,1,11.95,2019-09-18 22:46:00,92 Park St, Dallas,TX,75001 +258749,USB-C Charging Cable,3,11.95,2019-09-08 17:03:00,911 Chestnut St, New York City,NY,10001 +258750,USB-C Charging Cable,1,11.95,2019-09-01 13:59:00,634 South St, San Francisco,CA,94016 +258751,USB-C Charging Cable,1,11.95,2019-09-11 19:10:00,129 Walnut St, Los Angeles,CA,90001 +258752,Bose SoundSport Headphones,1,99.99,2019-09-22 07:00:00,875 West St, San Francisco,CA,94016 +258753,Wired Headphones,1,11.99,2019-09-07 18:31:00,663 2nd St, Los Angeles,CA,90001 +258754,USB-C Charging Cable,1,11.95,2019-09-28 05:27:00,529 Main St, Los Angeles,CA,90001 +258755,iPhone,1,700.0,2019-09-03 21:41:00,17 Highland St, New York City,NY,10001 +258755,Lightning Charging Cable,1,14.95,2019-09-03 21:41:00,17 Highland St, New York City,NY,10001 +258756,iPhone,1,700.0,2019-09-15 01:32:00,980 Dogwood St, Seattle,WA,98101 +258757,USB-C Charging Cable,1,11.95,2019-09-27 00:34:00,450 Hickory St, Atlanta,GA,30301 +258758,ThinkPad Laptop,1,999.99,2019-09-21 08:58:00,525 Lake St, New York City,NY,10001 +258759,Vareebadd Phone,1,400.0,2019-09-01 14:00:00,344 4th St, Boston,MA,02215 +258759,USB-C Charging Cable,1,11.95,2019-09-01 14:00:00,344 4th St, Boston,MA,02215 +258760,AA Batteries (4-pack),1,3.84,2019-09-10 14:34:00,448 6th St, Atlanta,GA,30301 +258761,iPhone,1,700.0,2019-09-08 17:31:00,909 6th St, Boston,MA,02215 +258762,AAA Batteries (4-pack),1,2.99,2019-09-12 09:45:00,58 4th St, New York City,NY,10001 +258763,Apple Airpods Headphones,1,150.0,2019-09-24 21:27:00,348 13th St, San Francisco,CA,94016 +258764,AA Batteries (4-pack),1,3.84,2019-09-04 15:18:00,691 Hill St, New York City,NY,10001 +258764,Apple Airpods Headphones,1,150.0,2019-09-04 15:18:00,691 Hill St, New York City,NY,10001 +258765,AA Batteries (4-pack),1,3.84,2019-09-04 21:55:00,243 Main St, Dallas,TX,75001 +258766,27in FHD Monitor,1,149.99,2019-09-09 12:25:00,631 5th St, Los Angeles,CA,90001 +258767,Apple Airpods Headphones,1,150.0,2019-09-18 22:45:00,702 Lincoln St, Portland,OR,97035 +258768,Flatscreen TV,1,300.0,2019-09-19 21:26:00,842 5th St, San Francisco,CA,94016 +258769,Wired Headphones,1,11.99,2019-09-29 17:39:00,952 Cherry St, Boston,MA,02215 +258770,Lightning Charging Cable,1,14.95,2019-09-02 08:23:00,931 Lakeview St, Los Angeles,CA,90001 +258771,Bose SoundSport Headphones,1,99.99,2019-09-06 18:18:00,201 Highland St, Portland,OR,97035 +258772,AA Batteries (4-pack),1,3.84,2019-09-14 22:04:00,2 10th St, Portland,OR,97035 +258773,AAA Batteries (4-pack),3,2.99,2019-09-12 05:34:00,93 8th St, Boston,MA,02215 +258774,Lightning Charging Cable,1,14.95,2019-09-18 13:38:00,102 Meadow St, Los Angeles,CA,90001 +258775,Flatscreen TV,1,300.0,2019-09-15 22:31:00,735 Jackson St, San Francisco,CA,94016 +258776,Apple Airpods Headphones,1,150.0,2019-09-27 09:08:00,100 Meadow St, San Francisco,CA,94016 +258777,Apple Airpods Headphones,1,150.0,2019-09-15 10:52:00,862 Hill St, Seattle,WA,98101 +258778,34in Ultrawide Monitor,1,379.99,2019-09-27 16:49:00,280 Forest St, Seattle,WA,98101 +258779,USB-C Charging Cable,1,11.95,2019-09-02 16:32:00,795 South St, Dallas,TX,75001 +258780,USB-C Charging Cable,1,11.95,2019-09-10 20:43:00,35 Jefferson St, Dallas,TX,75001 +258781,USB-C Charging Cable,1,11.95,2019-09-21 11:08:00,568 Lake St, San Francisco,CA,94016 +258782,20in Monitor,1,109.99,2019-09-29 13:15:00,301 Washington St, Portland,OR,97035 +258783,iPhone,1,700.0,2019-09-24 10:20:00,275 Jefferson St, Boston,MA,02215 +258784,Bose SoundSport Headphones,1,99.99,2019-09-11 12:07:00,697 10th St, San Francisco,CA,94016 +258785,27in 4K Gaming Monitor,1,389.99,2019-09-01 19:16:00,437 Cherry St, San Francisco,CA,94016 +258786,AA Batteries (4-pack),1,3.84,2019-09-06 10:17:00,28 Maple St, San Francisco,CA,94016 +258787,Bose SoundSport Headphones,1,99.99,2019-09-26 17:22:00,575 Cherry St, New York City,NY,10001 +258788,27in 4K Gaming Monitor,1,389.99,2019-09-10 10:27:00,553 Cedar St, Seattle,WA,98101 +258789,20in Monitor,1,109.99,2019-09-07 14:56:00,385 Dogwood St, San Francisco,CA,94016 +258790,27in 4K Gaming Monitor,1,389.99,2019-09-02 22:15:00,702 Chestnut St, Atlanta,GA,30301 +258791,Lightning Charging Cable,1,14.95,2019-09-13 00:06:00,144 Cedar St, Boston,MA,02215 +258792,USB-C Charging Cable,1,11.95,2019-09-02 20:09:00,202 Meadow St, Atlanta,GA,30301 +258793,Bose SoundSport Headphones,1,99.99,2019-09-25 18:42:00,288 12th St, San Francisco,CA,94016 +258794,Lightning Charging Cable,2,14.95,2019-09-03 11:16:00,468 5th St, Los Angeles,CA,90001 +258795,AAA Batteries (4-pack),2,2.99,2019-09-16 10:45:00,54 5th St, Los Angeles,CA,90001 +258796,Bose SoundSport Headphones,1,99.99,2019-09-14 22:29:00,947 Spruce St, San Francisco,CA,94016 +258797,USB-C Charging Cable,1,11.95,2019-09-05 09:28:00,430 Cherry St, New York City,NY,10001 +258798,AA Batteries (4-pack),3,3.84,2019-09-21 09:30:00,596 14th St, Seattle,WA,98101 +258799,Bose SoundSport Headphones,1,99.99,2019-09-23 21:11:00,374 Cherry St, Atlanta,GA,30301 +258800,27in 4K Gaming Monitor,1,389.99,2019-09-05 12:03:00,914 Pine St, San Francisco,CA,94016 +258801,34in Ultrawide Monitor,1,379.99,2019-09-21 21:11:00,430 Highland St, Los Angeles,CA,90001 +258802,27in FHD Monitor,1,149.99,2019-09-03 14:11:00,390 Main St, Portland,OR,97035 +258803,Lightning Charging Cable,1,14.95,2019-09-27 14:55:00,489 Chestnut St, Seattle,WA,98101 +258804,AA Batteries (4-pack),1,3.84,2019-09-07 01:58:00,623 Walnut St, Atlanta,GA,30301 +258805,AA Batteries (4-pack),1,3.84,2019-09-02 20:34:00,169 Lake St, Portland,ME,04101 +258806,Flatscreen TV,1,300.0,2019-09-12 19:08:00,18 Spruce St, Los Angeles,CA,90001 +258807,iPhone,1,700.0,2019-09-07 18:12:00,809 Willow St, Seattle,WA,98101 +258807,Lightning Charging Cable,1,14.95,2019-09-07 18:12:00,809 Willow St, Seattle,WA,98101 +258808,Apple Airpods Headphones,1,150.0,2019-09-07 01:27:00,413 Washington St, Portland,OR,97035 +258809,Bose SoundSport Headphones,1,99.99,2019-09-04 19:58:00,789 Washington St, Boston,MA,02215 +258810,USB-C Charging Cable,1,11.95,2019-09-10 14:31:00,250 Ridge St, San Francisco,CA,94016 +258811,Bose SoundSport Headphones,1,99.99,2019-09-24 23:50:00,264 10th St, Seattle,WA,98101 +258812,Bose SoundSport Headphones,1,99.99,2019-09-02 16:52:00,450 Adams St, Dallas,TX,75001 +258813,27in FHD Monitor,1,149.99,2019-09-13 21:37:00,123 Madison St, San Francisco,CA,94016 +258814,34in Ultrawide Monitor,1,379.99,2019-09-14 23:07:00,515 South St, Atlanta,GA,30301 +258815,Bose SoundSport Headphones,1,99.99,2019-09-19 20:02:00,267 9th St, Boston,MA,02215 +258816,AA Batteries (4-pack),3,3.84,2019-09-01 20:02:00,76 Forest St, San Francisco,CA,94016 +258817,Vareebadd Phone,1,400.0,2019-09-09 10:07:00,530 Johnson St, New York City,NY,10001 +258818,27in FHD Monitor,1,149.99,2019-09-09 22:17:00,352 Spruce St, Atlanta,GA,30301 +258819,Lightning Charging Cable,1,14.95,2019-09-19 15:57:00,637 4th St, Los Angeles,CA,90001 +258820,AA Batteries (4-pack),1,3.84,2019-09-06 18:50:00,913 Cedar St, Dallas,TX,75001 +258821,AAA Batteries (4-pack),1,2.99,2019-09-30 09:31:00,950 Pine St, San Francisco,CA,94016 +258822,AAA Batteries (4-pack),1,2.99,2019-09-21 22:43:00,385 Spruce St, New York City,NY,10001 +258823,Wired Headphones,1,11.99,2019-09-14 14:12:00,269 11th St, Portland,OR,97035 +258824,Apple Airpods Headphones,1,150.0,2019-09-28 13:06:00,483 Cherry St, New York City,NY,10001 +258825,Apple Airpods Headphones,1,150.0,2019-09-05 17:42:00,42 7th St, Boston,MA,02215 +258826,AA Batteries (4-pack),1,3.84,2019-09-19 11:20:00,836 14th St, Los Angeles,CA,90001 +258827,27in FHD Monitor,1,149.99,2019-09-18 19:52:00,711 North St, Austin,TX,73301 +258828,Bose SoundSport Headphones,1,99.99,2019-09-13 19:04:00,517 Park St, Seattle,WA,98101 +258829,USB-C Charging Cable,1,11.95,2019-09-07 17:46:00,857 Washington St, Austin,TX,73301 +258830,AAA Batteries (4-pack),1,2.99,2019-09-01 14:50:00,776 7th St, Austin,TX,73301 +258831,ThinkPad Laptop,1,999.99,2019-09-07 00:32:00,621 6th St, San Francisco,CA,94016 +258832,Apple Airpods Headphones,1,150.0,2019-09-28 16:52:00,720 Lakeview St, Portland,OR,97035 +258833,Lightning Charging Cable,1,14.95,2019-09-18 12:33:00,702 11th St, New York City,NY,10001 +258834,Wired Headphones,2,11.99,2019-09-23 13:06:00,718 6th St, San Francisco,CA,94016 +258835,Macbook Pro Laptop,1,1700.0,2019-09-09 23:25:00,967 10th St, San Francisco,CA,94016 +258836,27in 4K Gaming Monitor,1,389.99,2019-09-14 01:08:00,625 13th St, Dallas,TX,75001 +258837,AA Batteries (4-pack),1,3.84,2019-09-18 09:22:00,661 Forest St, Austin,TX,73301 +258838,AAA Batteries (4-pack),1,2.99,2019-09-06 00:55:00,411 Walnut St, Austin,TX,73301 +258839,AAA Batteries (4-pack),1,2.99,2019-09-08 11:37:00,708 Walnut St, San Francisco,CA,94016 +258840,AAA Batteries (4-pack),1,2.99,2019-09-24 23:03:00,109 Lincoln St, Los Angeles,CA,90001 +258841,Wired Headphones,4,11.99,2019-09-30 18:26:00,881 Elm St, Seattle,WA,98101 +258842,Wired Headphones,1,11.99,2019-09-15 12:20:00,193 Jackson St, Atlanta,GA,30301 +258843,AA Batteries (4-pack),1,3.84,2019-09-09 19:39:00,999 14th St, New York City,NY,10001 +258844,Lightning Charging Cable,1,14.95,2019-09-24 18:31:00,804 West St, New York City,NY,10001 +258845,Lightning Charging Cable,2,14.95,2019-09-10 15:33:00,790 Jefferson St, Atlanta,GA,30301 +258846,Bose SoundSport Headphones,1,99.99,2019-09-18 12:05:00,946 Chestnut St, Seattle,WA,98101 +258847,ThinkPad Laptop,1,999.99,2019-09-18 09:45:00,391 Hickory St, San Francisco,CA,94016 +258848,Vareebadd Phone,1,400.0,2019-09-13 18:59:00,340 South St, Portland,OR,97035 +258848,USB-C Charging Cable,1,11.95,2019-09-13 18:59:00,340 South St, Portland,OR,97035 +258849,USB-C Charging Cable,1,11.95,2019-09-14 14:26:00,907 Elm St, Los Angeles,CA,90001 +258850,AAA Batteries (4-pack),1,2.99,2019-09-16 21:41:00,392 Sunset St, Dallas,TX,75001 +258851,AA Batteries (4-pack),1,3.84,2019-09-21 12:44:00,400 Lakeview St, New York City,NY,10001 +258852,20in Monitor,1,109.99,2019-09-11 11:44:00,608 Johnson St, Seattle,WA,98101 +258853,AA Batteries (4-pack),2,3.84,2019-09-07 08:34:00,959 Washington St, Atlanta,GA,30301 +258854,20in Monitor,1,109.99,2019-09-11 13:05:00,306 Church St, Austin,TX,73301 +258855,Apple Airpods Headphones,1,150.0,2019-09-22 14:44:00,400 Cherry St, Boston,MA,02215 +258856,Lightning Charging Cable,1,14.95,2019-09-17 19:17:00,167 9th St, Los Angeles,CA,90001 +258857,27in FHD Monitor,1,149.99,2019-09-05 09:12:00,837 Johnson St, Dallas,TX,75001 +258858,27in 4K Gaming Monitor,1,389.99,2019-09-20 10:25:00,455 Hill St, New York City,NY,10001 +258859,27in 4K Gaming Monitor,1,389.99,2019-09-30 15:38:00,148 14th St, New York City,NY,10001 +258860,USB-C Charging Cable,1,11.95,2019-09-01 18:55:00,497 Dogwood St, Los Angeles,CA,90001 +258861,Apple Airpods Headphones,1,150.0,2019-09-23 13:00:00,104 Maple St, San Francisco,CA,94016 +258862,Lightning Charging Cable,1,14.95,2019-09-11 01:08:00,297 Cedar St, San Francisco,CA,94016 +258863,Wired Headphones,1,11.99,2019-09-27 08:57:00,26 Sunset St, Los Angeles,CA,90001 +258864,USB-C Charging Cable,1,11.95,2019-09-10 13:52:00,410 North St, Los Angeles,CA,90001 +258865,AA Batteries (4-pack),1,3.84,2019-09-13 19:20:00,599 Ridge St, Seattle,WA,98101 +258866,27in FHD Monitor,1,149.99,2019-09-12 16:31:00,925 Spruce St, Portland,OR,97035 +258867,Lightning Charging Cable,1,14.95,2019-09-16 14:06:00,365 Jackson St, San Francisco,CA,94016 +258868,ThinkPad Laptop,1,999.99,2019-09-23 11:40:00,658 Lincoln St, Los Angeles,CA,90001 +258869,Bose SoundSport Headphones,1,99.99,2019-09-26 14:09:00,370 Cedar St, Boston,MA,02215 +258870,AAA Batteries (4-pack),1,2.99,2019-09-24 20:06:00,369 Pine St, Atlanta,GA,30301 +258871,ThinkPad Laptop,1,999.99,2019-09-23 16:24:00,154 13th St, Portland,OR,97035 +258872,Macbook Pro Laptop,1,1700.0,2019-09-06 18:19:00,900 Willow St, Dallas,TX,75001 +258873,Bose SoundSport Headphones,1,99.99,2019-09-21 08:59:00,66 6th St, Atlanta,GA,30301 +258874,AAA Batteries (4-pack),4,2.99,2019-09-25 16:15:00,826 13th St, Austin,TX,73301 +258875,Apple Airpods Headphones,1,150.0,2019-09-27 15:51:00,579 13th St, Boston,MA,02215 +258876,Apple Airpods Headphones,1,150.0,2019-09-01 18:04:00,341 River St, Seattle,WA,98101 +258877,Lightning Charging Cable,1,14.95,2019-09-11 20:41:00,486 Jefferson St, Atlanta,GA,30301 +258878,Lightning Charging Cable,1,14.95,2019-09-17 15:49:00,812 Ridge St, Seattle,WA,98101 +258878,27in 4K Gaming Monitor,1,389.99,2019-09-17 15:49:00,812 Ridge St, Seattle,WA,98101 +258879,20in Monitor,1,109.99,2019-09-13 15:53:00,246 Hill St, Boston,MA,02215 +258880,Wired Headphones,1,11.99,2019-09-29 12:20:00,363 Chestnut St, San Francisco,CA,94016 +258881,Lightning Charging Cable,1,14.95,2019-09-20 12:51:00,920 6th St, San Francisco,CA,94016 +258882,AA Batteries (4-pack),2,3.84,2019-09-16 22:45:00,205 2nd St, Atlanta,GA,30301 +258883,AAA Batteries (4-pack),3,2.99,2019-09-30 12:44:00,590 Spruce St, Atlanta,GA,30301 +258884,Wired Headphones,2,11.99,2019-09-22 18:22:00,361 Adams St, Seattle,WA,98101 +258885,Google Phone,1,600.0,2019-09-02 14:22:00,85 South St, Los Angeles,CA,90001 +258886,ThinkPad Laptop,1,999.99,2019-09-01 15:49:00,372 Madison St, Dallas,TX,75001 +258887,Wired Headphones,1,11.99,2019-09-10 17:44:00,117 13th St, San Francisco,CA,94016 +258888,Flatscreen TV,1,300.0,2019-09-04 21:13:00,155 Center St, Atlanta,GA,30301 +258889,Wired Headphones,1,11.99,2019-09-15 23:00:00,421 Highland St, Dallas,TX,75001 +258890,Google Phone,1,600.0,2019-09-11 10:56:00,488 Johnson St, Austin,TX,73301 +258891,USB-C Charging Cable,1,11.95,2019-09-07 17:51:00,724 Jefferson St, Boston,MA,02215 +258892,27in FHD Monitor,1,149.99,2019-09-07 08:28:00,376 Washington St, San Francisco,CA,94016 +258893,AA Batteries (4-pack),2,3.84,2019-09-13 17:10:00,511 Park St, New York City,NY,10001 +258894,Wired Headphones,1,11.99,2019-09-29 21:16:00,728 Lincoln St, Atlanta,GA,30301 +258895,Apple Airpods Headphones,1,150.0,2019-09-04 12:55:00,899 Madison St, San Francisco,CA,94016 +258896,Apple Airpods Headphones,1,150.0,2019-09-08 18:20:00,505 Forest St, Los Angeles,CA,90001 +258897,Macbook Pro Laptop,1,1700.0,2019-09-14 19:22:00,453 Elm St, Los Angeles,CA,90001 +258898,Bose SoundSport Headphones,1,99.99,2019-09-14 20:50:00,606 Forest St, Seattle,WA,98101 +258899,USB-C Charging Cable,1,11.95,2019-09-27 18:51:00,563 Spruce St, Seattle,WA,98101 +258900,Google Phone,1,600.0,2019-09-11 12:24:00,746 Jefferson St, New York City,NY,10001 +258900,Bose SoundSport Headphones,1,99.99,2019-09-11 12:24:00,746 Jefferson St, New York City,NY,10001 +258901,27in FHD Monitor,1,149.99,2019-09-24 19:46:00,545 Johnson St, Atlanta,GA,30301 +258902,LG Washing Machine,1,600.0,2019-09-18 17:32:00,925 Forest St, San Francisco,CA,94016 +258903,Apple Airpods Headphones,1,150.0,2019-09-12 10:05:00,781 Park St, Los Angeles,CA,90001 +258903,AAA Batteries (4-pack),2,2.99,2019-09-12 10:05:00,781 Park St, Los Angeles,CA,90001 +258904,USB-C Charging Cable,1,11.95,2019-09-08 16:24:00,628 5th St, Dallas,TX,75001 +258905,34in Ultrawide Monitor,1,379.99,2019-09-18 13:20:00,259 Wilson St, San Francisco,CA,94016 +258906,Lightning Charging Cable,1,14.95,2019-09-08 21:30:00,366 12th St, Austin,TX,73301 +258907,AAA Batteries (4-pack),1,2.99,2019-09-25 10:39:00,963 Pine St, Dallas,TX,75001 +258908,Macbook Pro Laptop,1,1700.0,2019-09-02 23:21:00,446 Lincoln St, Portland,ME,04101 +258909,AA Batteries (4-pack),1,3.84,2019-09-29 23:34:00,639 Walnut St, San Francisco,CA,94016 +258910,Macbook Pro Laptop,1,1700.0,2019-09-27 02:27:00,703 Lake St, Boston,MA,02215 +258911,27in FHD Monitor,1,149.99,2019-09-11 16:47:00,719 12th St, Austin,TX,73301 +258912,27in FHD Monitor,1,149.99,2019-09-04 00:51:00,294 Jefferson St, Los Angeles,CA,90001 +258913,Lightning Charging Cable,1,14.95,2019-09-12 23:08:00,484 Spruce St, Dallas,TX,75001 +258914,Flatscreen TV,1,300.0,2019-09-29 14:40:00,66 Lakeview St, Los Angeles,CA,90001 +258915,AA Batteries (4-pack),1,3.84,2019-09-05 20:50:00,176 11th St, New York City,NY,10001 +258916,Google Phone,1,600.0,2019-09-27 22:07:00,629 Cedar St, Boston,MA,02215 +258917,AAA Batteries (4-pack),1,2.99,2019-09-16 10:59:00,698 9th St, Atlanta,GA,30301 +258918,AA Batteries (4-pack),3,3.84,2019-09-09 23:14:00,616 13th St, Atlanta,GA,30301 +258919,AAA Batteries (4-pack),1,2.99,2019-09-06 14:16:00,903 Highland St, Los Angeles,CA,90001 +258920,Apple Airpods Headphones,1,150.0,2019-09-10 15:00:00,764 Johnson St, Boston,MA,02215 +258921,Apple Airpods Headphones,1,150.0,2019-09-26 09:10:00,161 Center St, Los Angeles,CA,90001 +258922,Apple Airpods Headphones,1,150.0,2019-09-22 13:20:00,200 Adams St, Atlanta,GA,30301 +258923,AAA Batteries (4-pack),1,2.99,2019-09-20 01:27:00,615 Cedar St, San Francisco,CA,94016 +258924,iPhone,1,700.0,2019-09-11 06:10:00,61 Johnson St, Boston,MA,02215 +258925,AAA Batteries (4-pack),1,2.99,2019-09-13 11:53:00,672 Church St, Dallas,TX,75001 +258926,Bose SoundSport Headphones,1,99.99,2019-09-25 14:08:00,995 Walnut St, San Francisco,CA,94016 +258927,Lightning Charging Cable,2,14.95,2019-09-12 17:49:00,3 2nd St, San Francisco,CA,94016 +258928,Flatscreen TV,1,300.0,2019-09-23 08:07:00,498 Adams St, San Francisco,CA,94016 +258929,AA Batteries (4-pack),1,3.84,2019-09-22 11:07:00,648 11th St, San Francisco,CA,94016 +258930,iPhone,1,700.0,2019-09-13 14:31:00,494 6th St, Portland,OR,97035 +258930,Apple Airpods Headphones,1,150.0,2019-09-13 14:31:00,494 6th St, Portland,OR,97035 +258931,AA Batteries (4-pack),1,3.84,2019-09-16 10:42:00,923 8th St, Boston,MA,02215 +258932,AA Batteries (4-pack),1,3.84,2019-09-22 17:45:00,871 13th St, Portland,ME,04101 +258933,Flatscreen TV,1,300.0,2019-09-18 11:45:00,235 7th St, Dallas,TX,75001 +258934,USB-C Charging Cable,1,11.95,2019-09-02 17:46:00,697 West St, San Francisco,CA,94016 +258935,Lightning Charging Cable,1,14.95,2019-09-13 11:35:00,170 Willow St, Atlanta,GA,30301 +258936,Wired Headphones,1,11.99,2019-09-13 18:40:00,828 West St, San Francisco,CA,94016 +258937,Lightning Charging Cable,1,14.95,2019-09-22 12:37:00,151 Chestnut St, New York City,NY,10001 +258938,Macbook Pro Laptop,1,1700.0,2019-09-04 13:06:00,155 Madison St, New York City,NY,10001 +258939,AAA Batteries (4-pack),2,2.99,2019-09-03 15:04:00,668 Spruce St, San Francisco,CA,94016 +258940,Macbook Pro Laptop,1,1700.0,2019-09-07 06:18:00,664 South St, Los Angeles,CA,90001 +258941,AAA Batteries (4-pack),3,2.99,2019-09-30 14:03:00,180 Cherry St, San Francisco,CA,94016 +258942,USB-C Charging Cable,1,11.95,2019-09-23 16:23:00,859 8th St, San Francisco,CA,94016 +258943,Wired Headphones,1,11.99,2019-09-12 19:37:00,512 Washington St, Atlanta,GA,30301 +258944,iPhone,1,700.0,2019-09-24 16:27:00,558 8th St, San Francisco,CA,94016 +258945,Vareebadd Phone,1,400.0,2019-09-29 12:23:00,80 Main St, Seattle,WA,98101 +258946,Lightning Charging Cable,1,14.95,2019-09-19 14:25:00,355 Ridge St, San Francisco,CA,94016 +258947,AAA Batteries (4-pack),1,2.99,2019-09-11 08:44:00,608 Lakeview St, Los Angeles,CA,90001 +258948,Macbook Pro Laptop,1,1700.0,2019-09-12 09:19:00,440 South St, New York City,NY,10001 +258949,Wired Headphones,1,11.99,2019-09-14 22:02:00,922 2nd St, New York City,NY,10001 +258950,USB-C Charging Cable,1,11.95,2019-09-06 17:45:00,456 Sunset St, Portland,OR,97035 +258951,AA Batteries (4-pack),2,3.84,2019-09-25 12:27:00,323 Chestnut St, San Francisco,CA,94016 +258952,34in Ultrawide Monitor,1,379.99,2019-09-09 13:56:00,787 Hickory St, San Francisco,CA,94016 +258953,20in Monitor,1,109.99,2019-09-02 12:53:00,864 Jefferson St, Los Angeles,CA,90001 +258954,Bose SoundSport Headphones,1,99.99,2019-09-22 20:37:00,27 Washington St, Atlanta,GA,30301 +258955,Flatscreen TV,1,300.0,2019-09-06 20:11:00,702 Park St, New York City,NY,10001 +258956,Wired Headphones,2,11.99,2019-09-21 22:11:00,511 Wilson St, New York City,NY,10001 +258957,AA Batteries (4-pack),2,3.84,2019-09-10 14:02:00,771 5th St, San Francisco,CA,94016 +258958,USB-C Charging Cable,1,11.95,2019-09-15 09:51:00,118 4th St, Boston,MA,02215 +258959,iPhone,1,700.0,2019-09-12 10:22:00,725 8th St, Boston,MA,02215 +258960,Bose SoundSport Headphones,1,99.99,2019-09-15 10:37:00,671 Hill St, San Francisco,CA,94016 +258961,Wired Headphones,1,11.99,2019-09-06 13:29:00,582 Wilson St, Atlanta,GA,30301 +258962,Google Phone,1,600.0,2019-09-14 15:19:00,836 Maple St, San Francisco,CA,94016 +258963,iPhone,1,700.0,2019-09-07 14:37:00,120 Madison St, Los Angeles,CA,90001 +258963,Lightning Charging Cable,1,14.95,2019-09-07 14:37:00,120 Madison St, Los Angeles,CA,90001 +258964,Flatscreen TV,1,300.0,2019-09-18 17:17:00,987 Sunset St, San Francisco,CA,94016 +258965,Lightning Charging Cable,1,14.95,2019-09-24 06:59:00,881 Park St, Los Angeles,CA,90001 +258966,iPhone,1,700.0,2019-09-21 13:33:00,400 10th St, Atlanta,GA,30301 +258967,Flatscreen TV,1,300.0,2019-09-21 11:24:00,509 Pine St, Los Angeles,CA,90001 +258968,Lightning Charging Cable,1,14.95,2019-09-20 10:47:00,887 14th St, San Francisco,CA,94016 +258969,Bose SoundSport Headphones,1,99.99,2019-09-02 13:46:00,809 Church St, Dallas,TX,75001 +258970,AAA Batteries (4-pack),1,2.99,2019-09-09 22:39:00,30 North St, Dallas,TX,75001 +258971,USB-C Charging Cable,1,11.95,2019-09-27 19:29:00,495 7th St, Dallas,TX,75001 +258972,AA Batteries (4-pack),1,3.84,2019-09-21 12:27:00,8 River St, Dallas,TX,75001 +258973,AAA Batteries (4-pack),1,2.99,2019-09-24 12:56:00,505 Jackson St, New York City,NY,10001 +258974,Flatscreen TV,1,300.0,2019-09-14 20:37:00,208 Washington St, San Francisco,CA,94016 +258975,AA Batteries (4-pack),1,3.84,2019-09-15 17:11:00,996 Church St, Boston,MA,02215 +258976,Google Phone,1,600.0,2019-09-27 01:54:00,211 13th St, Dallas,TX,75001 +258977,Wired Headphones,2,11.99,2019-09-04 15:42:00,39 Walnut St, Dallas,TX,75001 +258978,AAA Batteries (4-pack),1,2.99,2019-09-18 01:00:00,663 Dogwood St, Portland,OR,97035 +258978,USB-C Charging Cable,1,11.95,2019-09-18 01:00:00,663 Dogwood St, Portland,OR,97035 +258979,Bose SoundSport Headphones,1,99.99,2019-09-28 14:18:00,212 Adams St, San Francisco,CA,94016 +258980,Apple Airpods Headphones,1,150.0,2019-09-08 11:48:00,805 Dogwood St, Atlanta,GA,30301 +258981,Wired Headphones,1,11.99,2019-09-07 19:01:00,815 13th St, Austin,TX,73301 +258982,USB-C Charging Cable,1,11.95,2019-09-12 20:48:00,218 2nd St, New York City,NY,10001 +258983,AAA Batteries (4-pack),1,2.99,2019-09-01 09:14:00,522 West St, Los Angeles,CA,90001 +258984,AAA Batteries (4-pack),3,2.99,2019-09-11 14:03:00,184 5th St, Boston,MA,02215 +258985,34in Ultrawide Monitor,1,379.99,2019-09-30 07:29:00,934 10th St, New York City,NY,10001 +258986,iPhone,1,700.0,2019-09-12 17:52:00,511 Jefferson St, Los Angeles,CA,90001 +258987,USB-C Charging Cable,1,11.95,2019-09-13 18:42:00,308 7th St, San Francisco,CA,94016 +258988,27in FHD Monitor,1,149.99,2019-09-10 22:04:00,459 Dogwood St, San Francisco,CA,94016 +258989,AAA Batteries (4-pack),2,2.99,2019-09-29 22:31:00,184 Wilson St, Seattle,WA,98101 +258990,AA Batteries (4-pack),2,3.84,2019-09-26 21:41:00,421 6th St, Dallas,TX,75001 +258991,34in Ultrawide Monitor,1,379.99,2019-09-19 17:18:00,625 Adams St, New York City,NY,10001 +258992,Apple Airpods Headphones,1,150.0,2019-09-10 23:17:00,145 Ridge St, New York City,NY,10001 +258993,AA Batteries (4-pack),1,3.84,2019-09-13 19:09:00,704 Spruce St, San Francisco,CA,94016 +258994,AAA Batteries (4-pack),2,2.99,2019-09-22 17:49:00,473 1st St, New York City,NY,10001 +258995,Lightning Charging Cable,1,14.95,2019-09-15 14:47:00,258 Maple St, Seattle,WA,98101 +258996,Apple Airpods Headphones,1,150.0,2019-09-07 08:45:00,786 South St, Portland,OR,97035 +258997,Wired Headphones,1,11.99,2019-09-09 22:50:00,258 6th St, San Francisco,CA,94016 +258998,iPhone,1,700.0,2019-09-01 19:21:00,873 8th St, Dallas,TX,75001 +258999,Flatscreen TV,1,300.0,2019-09-18 17:43:00,315 Washington St, Portland,OR,97035 +259000,Wired Headphones,2,11.99,2019-09-30 17:30:00,241 Highland St, Los Angeles,CA,90001 +259001,Wired Headphones,1,11.99,2019-09-07 09:42:00,942 Elm St, San Francisco,CA,94016 +259002,USB-C Charging Cable,1,11.95,2019-09-20 11:31:00,473 Chestnut St, Seattle,WA,98101 +259003,AA Batteries (4-pack),2,3.84,2019-09-03 19:24:00,152 Main St, Boston,MA,02215 +259004,Google Phone,1,600.0,2019-09-16 21:18:00,172 Lake St, Atlanta,GA,30301 +259005,AA Batteries (4-pack),1,3.84,2019-09-17 19:03:00,584 Sunset St, New York City,NY,10001 +259006,Google Phone,1,600.0,2019-09-19 10:30:00,494 11th St, New York City,NY,10001 +259006,USB-C Charging Cable,1,11.95,2019-09-19 10:30:00,494 11th St, New York City,NY,10001 +259007,27in FHD Monitor,1,149.99,2019-09-26 20:34:00,821 West St, New York City,NY,10001 +259008,Wired Headphones,1,11.99,2019-09-07 13:31:00,441 Meadow St, Atlanta,GA,30301 +259008,Apple Airpods Headphones,1,150.0,2019-09-07 13:31:00,441 Meadow St, Atlanta,GA,30301 +259009,Wired Headphones,1,11.99,2019-09-03 23:20:00,581 Maple St, Seattle,WA,98101 +259010,AAA Batteries (4-pack),1,2.99,2019-09-12 06:51:00,126 Main St, Boston,MA,02215 +259011,AA Batteries (4-pack),1,3.84,2019-09-24 16:55:00,629 9th St, Portland,OR,97035 +259012,AA Batteries (4-pack),1,3.84,2019-09-10 14:00:00,628 Elm St, Los Angeles,CA,90001 +259013,Macbook Pro Laptop,1,1700.0,2019-09-24 09:54:00,362 Jefferson St, Los Angeles,CA,90001 +259014,34in Ultrawide Monitor,1,379.99,2019-09-06 21:32:00,171 7th St, Boston,MA,02215 +259015,AA Batteries (4-pack),1,3.84,2019-09-26 14:04:00,652 Jefferson St, Portland,OR,97035 +259016,AA Batteries (4-pack),1,3.84,2019-09-06 17:17:00,226 Wilson St, San Francisco,CA,94016 +259017,AAA Batteries (4-pack),1,2.99,2019-09-22 20:12:00,104 9th St, New York City,NY,10001 +259018,AA Batteries (4-pack),1,3.84,2019-09-01 19:22:00,309 Cedar St, New York City,NY,10001 +259019,AA Batteries (4-pack),1,3.84,2019-09-10 18:37:00,46 4th St, San Francisco,CA,94016 +259020,Flatscreen TV,1,300.0,2019-09-23 12:38:00,635 North St, Los Angeles,CA,90001 +259021,Macbook Pro Laptop,1,1700.0,2019-09-23 18:58:00,427 Willow St, New York City,NY,10001 +259022,Lightning Charging Cable,1,14.95,2019-09-24 14:11:00,237 Dogwood St, Los Angeles,CA,90001 +259023,34in Ultrawide Monitor,1,379.99,2019-09-09 22:19:00,327 Meadow St, San Francisco,CA,94016 +259024,AAA Batteries (4-pack),2,2.99,2019-09-18 02:43:00,754 Sunset St, New York City,NY,10001 +259025,Wired Headphones,1,11.99,2019-09-23 11:39:00,72 South St, San Francisco,CA,94016 +259026,Apple Airpods Headphones,1,150.0,2019-09-09 15:59:00,821 8th St, San Francisco,CA,94016 +259027,Flatscreen TV,1,300.0,2019-09-14 14:32:00,371 Wilson St, San Francisco,CA,94016 +259028,27in 4K Gaming Monitor,1,389.99,2019-09-26 16:12:00,856 Elm St, Atlanta,GA,30301 +259029,AAA Batteries (4-pack),1,2.99,2019-09-01 10:27:00,502 South St, Boston,MA,02215 +259030,Google Phone,1,600.0,2019-09-27 20:03:00,305 Spruce St, New York City,NY,10001 +259031,Apple Airpods Headphones,1,150.0,2019-09-16 13:25:00,461 Maple St, New York City,NY,10001 +259032,Lightning Charging Cable,1,14.95,2019-09-25 12:27:00,177 14th St, Boston,MA,02215 +259033,USB-C Charging Cable,1,11.95,2019-09-24 13:29:00,681 Hickory St, Austin,TX,73301 +259034,Macbook Pro Laptop,1,1700.0,2019-09-05 15:38:00,168 Dogwood St, Portland,OR,97035 +259035,27in FHD Monitor,1,149.99,2019-09-29 13:52:00,327 Lake St, San Francisco,CA,94016 +259036,USB-C Charging Cable,1,11.95,2019-09-16 21:05:00,190 North St, Los Angeles,CA,90001 +259037,Apple Airpods Headphones,1,150.0,2019-09-25 18:09:00,145 Johnson St, Dallas,TX,75001 +259038,AAA Batteries (4-pack),1,2.99,2019-09-01 12:03:00,995 6th St, Boston,MA,02215 +259039,USB-C Charging Cable,1,11.95,2019-09-01 12:07:00,99 Church St, Austin,TX,73301 +259040,AA Batteries (4-pack),1,3.84,2019-09-30 21:19:00,481 South St, New York City,NY,10001 +259041,Macbook Pro Laptop,1,1700.0,2019-09-13 23:14:00,220 Sunset St, New York City,NY,10001 +259042,Lightning Charging Cable,1,14.95,2019-09-27 20:59:00,112 Lincoln St, New York City,NY,10001 +259043,Apple Airpods Headphones,1,150.0,2019-09-09 12:05:00,368 Lake St, San Francisco,CA,94016 +259044,AA Batteries (4-pack),1,3.84,2019-09-08 17:28:00,115 Main St, Austin,TX,73301 +259045,34in Ultrawide Monitor,1,379.99,2019-09-07 12:35:00,642 Spruce St, Austin,TX,73301 +259046,Apple Airpods Headphones,1,150.0,2019-09-18 18:28:00,996 Lincoln St, Los Angeles,CA,90001 +259047,USB-C Charging Cable,1,11.95,2019-09-16 20:53:00,284 6th St, Atlanta,GA,30301 +259048,USB-C Charging Cable,1,11.95,2019-09-16 13:44:00,651 Wilson St, San Francisco,CA,94016 +259049,AA Batteries (4-pack),2,3.84,2019-09-24 05:57:00,185 Johnson St, San Francisco,CA,94016 +259050,USB-C Charging Cable,1,11.95,2019-09-04 18:22:00,454 Cherry St, Portland,ME,04101 +259051,Lightning Charging Cable,1,14.95,2019-09-18 18:39:00,430 2nd St, San Francisco,CA,94016 +259052,Apple Airpods Headphones,1,150.0,2019-09-01 13:25:00,786 Sunset St, Atlanta,GA,30301 +259053,Lightning Charging Cable,1,14.95,2019-09-29 14:18:00,142 Ridge St, Los Angeles,CA,90001 +259054,20in Monitor,1,109.99,2019-09-12 23:28:00,687 Walnut St, Seattle,WA,98101 +259055,27in 4K Gaming Monitor,1,389.99,2019-09-17 15:50:00,469 Park St, Seattle,WA,98101 +259056,USB-C Charging Cable,1,11.95,2019-09-29 10:49:00,158 Dogwood St, Los Angeles,CA,90001 +259057,Wired Headphones,1,11.99,2019-09-09 20:32:00,818 Sunset St, San Francisco,CA,94016 +259058,AA Batteries (4-pack),1,3.84,2019-09-24 20:07:00,698 2nd St, San Francisco,CA,94016 +259059,27in FHD Monitor,1,149.99,2019-09-10 18:53:00,177 Meadow St, Los Angeles,CA,90001 +259060,AA Batteries (4-pack),2,3.84,2019-09-28 21:59:00,802 Jackson St, San Francisco,CA,94016 +259061,Lightning Charging Cable,1,14.95,2019-09-22 18:41:00,610 Johnson St, San Francisco,CA,94016 +259062,Lightning Charging Cable,1,14.95,2019-09-09 10:36:00,790 Walnut St, Boston,MA,02215 +259063,AAA Batteries (4-pack),1,2.99,2019-09-03 13:53:00,290 Jefferson St, Dallas,TX,75001 +259064,Lightning Charging Cable,1,14.95,2019-09-29 17:57:00,484 Highland St, Los Angeles,CA,90001 +259065,USB-C Charging Cable,1,11.95,2019-09-28 22:14:00,296 Walnut St, San Francisco,CA,94016 +259066,Apple Airpods Headphones,1,150.0,2019-09-04 00:39:00,92 Chestnut St, Austin,TX,73301 +259067,Lightning Charging Cable,1,14.95,2019-09-21 17:34:00,361 Cedar St, Los Angeles,CA,90001 +259068,Google Phone,1,600.0,2019-09-10 18:39:00,175 Washington St, Boston,MA,02215 +259068,USB-C Charging Cable,1,11.95,2019-09-10 18:39:00,175 Washington St, Boston,MA,02215 +259069,AA Batteries (4-pack),3,3.84,2019-09-21 13:10:00,507 Dogwood St, New York City,NY,10001 +259070,27in FHD Monitor,1,149.99,2019-09-14 19:27:00,439 Wilson St, Los Angeles,CA,90001 +259071,AAA Batteries (4-pack),2,2.99,2019-09-25 10:56:00,321 11th St, Los Angeles,CA,90001 +259072,AA Batteries (4-pack),1,3.84,2019-09-27 20:11:00,381 North St, New York City,NY,10001 +259073,AA Batteries (4-pack),3,3.84,2019-09-19 18:23:00,888 Maple St, Austin,TX,73301 +259074,Lightning Charging Cable,1,14.95,2019-09-22 12:57:00,231 Lincoln St, San Francisco,CA,94016 +259075,Bose SoundSport Headphones,1,99.99,2019-09-09 10:02:00,200 Pine St, Austin,TX,73301 +259076,Flatscreen TV,1,300.0,2019-09-23 14:22:00,177 Sunset St, Boston,MA,02215 +259077,27in 4K Gaming Monitor,1,389.99,2019-09-26 12:13:00,128 12th St, Los Angeles,CA,90001 +259078,AAA Batteries (4-pack),1,2.99,2019-09-30 16:11:00,693 West St, Los Angeles,CA,90001 +259079,27in 4K Gaming Monitor,1,389.99,2019-09-27 03:07:00,13 Forest St, New York City,NY,10001 +259080,Apple Airpods Headphones,1,150.0,2019-09-24 04:04:00,268 Ridge St, Seattle,WA,98101 +259081,27in 4K Gaming Monitor,1,389.99,2019-09-25 09:45:00,477 Adams St, Seattle,WA,98101 +259082,Lightning Charging Cable,1,14.95,2019-09-27 16:49:00,176 Jefferson St, Los Angeles,CA,90001 +259083,Bose SoundSport Headphones,1,99.99,2019-09-08 11:36:00,474 Lincoln St, Los Angeles,CA,90001 +259084,27in FHD Monitor,1,149.99,2019-09-04 18:27:00,139 Lake St, Boston,MA,02215 +259085,USB-C Charging Cable,1,11.95,2019-09-20 19:55:00,269 Hill St, Los Angeles,CA,90001 +259086,Wired Headphones,1,11.99,2019-09-10 19:20:00,240 6th St, San Francisco,CA,94016 +259087,34in Ultrawide Monitor,1,379.99,2019-09-13 12:41:00,551 Maple St, San Francisco,CA,94016 +259088,iPhone,1,700.0,2019-09-04 00:57:00,571 5th St, New York City,NY,10001 +259089,AAA Batteries (4-pack),1,2.99,2019-09-10 09:04:00,923 13th St, Seattle,WA,98101 +259090,34in Ultrawide Monitor,1,379.99,2019-09-10 06:48:00,505 North St, New York City,NY,10001 +259091,USB-C Charging Cable,1,11.95,2019-09-06 16:33:00,67 Ridge St, Los Angeles,CA,90001 +259092,AAA Batteries (4-pack),4,2.99,2019-09-28 16:56:00,501 6th St, Atlanta,GA,30301 +259093,AAA Batteries (4-pack),2,2.99,2019-09-13 07:19:00,30 Lincoln St, Los Angeles,CA,90001 +259094,20in Monitor,1,109.99,2019-09-05 20:13:00,361 Lakeview St, Dallas,TX,75001 +259095,ThinkPad Laptop,1,999.99,2019-09-23 11:05:00,211 Church St, Los Angeles,CA,90001 +259096,AAA Batteries (4-pack),1,2.99,2019-09-02 15:14:00,76 Ridge St, San Francisco,CA,94016 +259097,USB-C Charging Cable,1,11.95,2019-09-09 21:23:00,926 7th St, Atlanta,GA,30301 +259098,27in 4K Gaming Monitor,1,389.99,2019-09-08 17:31:00,107 Dogwood St, Dallas,TX,75001 +259099,27in 4K Gaming Monitor,1,389.99,2019-09-19 19:47:00,758 11th St, Atlanta,GA,30301 +259100,Lightning Charging Cable,1,14.95,2019-09-22 07:53:00,907 Hill St, San Francisco,CA,94016 +259101,AA Batteries (4-pack),1,3.84,2019-09-09 20:54:00,150 Washington St, Los Angeles,CA,90001 +259102,AA Batteries (4-pack),1,3.84,2019-09-01 11:14:00,298 Forest St, Atlanta,GA,30301 +259103,AA Batteries (4-pack),1,3.84,2019-09-19 16:38:00,565 Adams St, Los Angeles,CA,90001 +259104,USB-C Charging Cable,1,11.95,2019-09-19 01:33:00,824 7th St, Los Angeles,CA,90001 +259105,Wired Headphones,1,11.99,2019-09-08 07:55:00,772 Hickory St, San Francisco,CA,94016 +259106,AA Batteries (4-pack),1,3.84,2019-09-16 19:28:00,103 Sunset St, Los Angeles,CA,90001 +259107,Lightning Charging Cable,1,14.95,2019-09-09 13:38:00,451 7th St, New York City,NY,10001 +259108,27in 4K Gaming Monitor,1,389.99,2019-09-02 12:29:00,22 6th St, Portland,OR,97035 +259109,Google Phone,1,600.0,2019-09-21 14:23:00,805 Washington St, San Francisco,CA,94016 +259110,AA Batteries (4-pack),1,3.84,2019-09-01 09:08:00,657 Madison St, Los Angeles,CA,90001 +259111,27in FHD Monitor,1,149.99,2019-09-07 21:30:00,517 Highland St, Dallas,TX,75001 +259112,AA Batteries (4-pack),4,3.84,2019-09-10 06:25:00,272 Hill St, Los Angeles,CA,90001 +259113,AA Batteries (4-pack),1,3.84,2019-09-29 23:23:00,138 Pine St, Austin,TX,73301 +259114,AAA Batteries (4-pack),1,2.99,2019-09-17 11:19:00,152 Maple St, San Francisco,CA,94016 +259115,Wired Headphones,1,11.99,2019-09-22 15:59:00,648 Lake St, Austin,TX,73301 +259116,AA Batteries (4-pack),1,3.84,2019-09-22 11:30:00,657 Lakeview St, San Francisco,CA,94016 +259117,Apple Airpods Headphones,1,150.0,2019-09-21 00:00:00,55 14th St, San Francisco,CA,94016 +259118,AAA Batteries (4-pack),1,2.99,2019-09-24 16:46:00,320 13th St, San Francisco,CA,94016 +259119,AA Batteries (4-pack),1,3.84,2019-09-24 16:09:00,586 14th St, Los Angeles,CA,90001 +259120,AA Batteries (4-pack),1,3.84,2019-09-08 23:10:00,291 11th St, Boston,MA,02215 +259121,iPhone,1,700.0,2019-09-08 22:48:00,190 Meadow St, Austin,TX,73301 +259121,Wired Headphones,1,11.99,2019-09-08 22:48:00,190 Meadow St, Austin,TX,73301 +259122,AAA Batteries (4-pack),2,2.99,2019-09-08 21:15:00,764 Hickory St, Boston,MA,02215 +259122,AA Batteries (4-pack),1,3.84,2019-09-08 21:15:00,764 Hickory St, Boston,MA,02215 +259123,Lightning Charging Cable,1,14.95,2019-09-30 15:21:00,229 13th St, Seattle,WA,98101 +259124,AA Batteries (4-pack),2,3.84,2019-09-20 16:16:00,743 Wilson St, Portland,OR,97035 +259125,Wired Headphones,1,11.99,2019-09-27 20:25:00,156 Elm St, San Francisco,CA,94016 +259126,USB-C Charging Cable,1,11.95,2019-09-04 09:09:00,525 14th St, Los Angeles,CA,90001 +259127,Bose SoundSport Headphones,1,99.99,2019-09-22 12:26:00,335 Willow St, Portland,ME,04101 +259128,Apple Airpods Headphones,1,150.0,2019-09-22 09:46:00,885 Ridge St, Dallas,TX,75001 +259129,Wired Headphones,1,11.99,2019-09-15 17:41:00,116 Main St, Los Angeles,CA,90001 +259130,Bose SoundSport Headphones,1,99.99,2019-09-01 23:30:00,83 West St, Los Angeles,CA,90001 +259131,AAA Batteries (4-pack),1,2.99,2019-09-25 18:19:00,667 Lake St, San Francisco,CA,94016 +259132,Google Phone,1,600.0,2019-09-15 16:28:00,321 River St, Los Angeles,CA,90001 +259133,iPhone,1,700.0,2019-09-01 12:54:00,507 Church St, Boston,MA,02215 +259133,Wired Headphones,1,11.99,2019-09-01 12:54:00,507 Church St, Boston,MA,02215 +259134,AA Batteries (4-pack),1,3.84,2019-09-28 08:49:00,431 North St, Los Angeles,CA,90001 +259135,Wired Headphones,1,11.99,2019-09-08 20:31:00,975 11th St, Boston,MA,02215 +259136,USB-C Charging Cable,1,11.95,2019-09-15 19:00:00,22 Wilson St, Dallas,TX,75001 +259137,Google Phone,1,600.0,2019-09-20 08:13:00,607 Cherry St, Boston,MA,02215 +259138,AAA Batteries (4-pack),1,2.99,2019-09-27 23:44:00,327 14th St, San Francisco,CA,94016 +259139,Flatscreen TV,1,300.0,2019-09-24 18:32:00,663 North St, New York City,NY,10001 +259140,Wired Headphones,1,11.99,2019-09-07 15:00:00,47 5th St, Austin,TX,73301 +259141,Wired Headphones,1,11.99,2019-09-10 21:05:00,412 Johnson St, Atlanta,GA,30301 +259142,27in FHD Monitor,1,149.99,2019-09-03 13:34:00,205 14th St, San Francisco,CA,94016 +259143,Apple Airpods Headphones,1,150.0,2019-09-24 19:44:00,51 Lake St, San Francisco,CA,94016 +259144,USB-C Charging Cable,1,11.95,2019-09-24 10:53:00,609 Main St, San Francisco,CA,94016 +259145,iPhone,1,700.0,2019-09-27 21:57:00,494 Main St, New York City,NY,10001 +259146,Lightning Charging Cable,1,14.95,2019-09-19 13:00:00,494 9th St, Los Angeles,CA,90001 +259147,AA Batteries (4-pack),1,3.84,2019-09-22 09:07:00,124 9th St, New York City,NY,10001 +259148,Lightning Charging Cable,1,14.95,2019-09-21 11:10:00,69 North St, Dallas,TX,75001 +259149,Bose SoundSport Headphones,1,99.99,2019-09-20 22:04:00,665 Chestnut St, Portland,OR,97035 +259150,Lightning Charging Cable,1,14.95,2019-09-02 23:35:00,155 Highland St, Los Angeles,CA,90001 +259151,AA Batteries (4-pack),1,3.84,2019-09-12 08:09:00,308 11th St, Los Angeles,CA,90001 +259152,Wired Headphones,1,11.99,2019-09-10 14:31:00,70 2nd St, Boston,MA,02215 +259153,34in Ultrawide Monitor,1,379.99,2019-09-10 21:02:00,737 Elm St, Los Angeles,CA,90001 +259154,AA Batteries (4-pack),1,3.84,2019-09-09 19:58:00,962 Jefferson St, Los Angeles,CA,90001 +259155,Apple Airpods Headphones,1,150.0,2019-09-21 20:38:00,653 Walnut St, San Francisco,CA,94016 +259156,AA Batteries (4-pack),1,3.84,2019-09-02 10:37:00,437 River St, Atlanta,GA,30301 +259157,Macbook Pro Laptop,1,1700.0,2019-09-12 05:01:00,326 Forest St, Seattle,WA,98101 +259158,27in 4K Gaming Monitor,1,389.99,2019-09-06 19:18:00,109 Willow St, Los Angeles,CA,90001 +259159,Google Phone,1,600.0,2019-09-09 13:40:00,949 12th St, Seattle,WA,98101 +259160,Lightning Charging Cable,1,14.95,2019-09-30 09:43:00,402 2nd St, Los Angeles,CA,90001 +259161,AA Batteries (4-pack),1,3.84,2019-09-06 08:19:00,524 Forest St, Los Angeles,CA,90001 +259162,Lightning Charging Cable,1,14.95,2019-09-29 15:09:00,774 Sunset St, San Francisco,CA,94016 +259163,27in FHD Monitor,1,149.99,2019-09-27 10:02:00,616 Sunset St, San Francisco,CA,94016 +259164,USB-C Charging Cable,1,11.95,2019-09-16 19:09:00,763 River St, New York City,NY,10001 +259165,USB-C Charging Cable,1,11.95,2019-09-09 17:58:00,527 Elm St, Dallas,TX,75001 +259166,27in 4K Gaming Monitor,1,389.99,2019-09-23 09:46:00,982 Lincoln St, New York City,NY,10001 +259167,Apple Airpods Headphones,1,150.0,2019-09-12 08:45:00,483 8th St, New York City,NY,10001 +259168,AAA Batteries (4-pack),1,2.99,2019-09-15 15:09:00,822 Hickory St, New York City,NY,10001 +259169,Bose SoundSport Headphones,1,99.99,2019-09-24 11:45:00,707 Forest St, San Francisco,CA,94016 +259170,Wired Headphones,1,11.99,2019-09-19 05:04:00,755 Maple St, New York City,NY,10001 +259171,AA Batteries (4-pack),1,3.84,2019-09-03 10:45:00,726 North St, Portland,OR,97035 +259172,AA Batteries (4-pack),1,3.84,2019-09-01 19:35:00,368 Lincoln St, Seattle,WA,98101 +259173,Wired Headphones,1,11.99,2019-09-20 11:17:00,337 Park St, Portland,ME,04101 +259174,Apple Airpods Headphones,1,150.0,2019-09-14 21:53:00,668 Walnut St, Portland,OR,97035 +259175,27in FHD Monitor,1,149.99,2019-09-16 13:33:00,336 Washington St, Atlanta,GA,30301 +259176,34in Ultrawide Monitor,1,379.99,2019-09-22 20:32:00,840 2nd St, Portland,OR,97035 +259177,Wired Headphones,1,11.99,2019-09-29 19:01:00,393 Walnut St, Los Angeles,CA,90001 +259178,Apple Airpods Headphones,1,150.0,2019-09-11 22:11:00,129 2nd St, Los Angeles,CA,90001 +259179,AA Batteries (4-pack),3,3.84,2019-09-01 15:25:00,290 River St, Los Angeles,CA,90001 +259180,AA Batteries (4-pack),2,3.84,2019-09-20 16:37:00,274 4th St, San Francisco,CA,94016 +259181,Apple Airpods Headphones,1,150.0,2019-09-15 21:29:00,1 Madison St, Los Angeles,CA,90001 +259182,Wired Headphones,2,11.99,2019-09-23 06:48:00,119 2nd St, Dallas,TX,75001 +259183,AAA Batteries (4-pack),1,2.99,2019-09-16 12:53:00,673 Sunset St, Dallas,TX,75001 +259184,Lightning Charging Cable,1,14.95,2019-09-27 13:44:00,598 Wilson St, Austin,TX,73301 +259185,iPhone,1,700.0,2019-09-25 19:38:00,384 Lakeview St, San Francisco,CA,94016 +259186,Lightning Charging Cable,1,14.95,2019-09-02 17:34:00,14 12th St, San Francisco,CA,94016 +259187,Bose SoundSport Headphones,1,99.99,2019-09-20 22:05:00,646 Forest St, Los Angeles,CA,90001 +259188,ThinkPad Laptop,1,999.99,2019-09-27 11:03:00,379 Lincoln St, Austin,TX,73301 +259189,34in Ultrawide Monitor,1,379.99,2019-09-19 12:26:00,467 Spruce St, Portland,OR,97035 +259190,27in FHD Monitor,1,149.99,2019-09-24 18:48:00,769 10th St, New York City,NY,10001 +259191,Bose SoundSport Headphones,1,99.99,2019-09-22 11:32:00,721 Forest St, New York City,NY,10001 +259192,Wired Headphones,1,11.99,2019-09-09 20:03:00,48 River St, Los Angeles,CA,90001 +259193,AAA Batteries (4-pack),2,2.99,2019-09-20 11:13:00,636 7th St, Los Angeles,CA,90001 +259194,27in FHD Monitor,1,149.99,2019-09-03 12:13:00,543 Center St, Austin,TX,73301 +259195,Apple Airpods Headphones,1,150.0,2019-09-28 16:17:00,860 Maple St, Portland,OR,97035 +259196,Bose SoundSport Headphones,1,99.99,2019-09-17 15:30:00,683 Dogwood St, Los Angeles,CA,90001 +259197,USB-C Charging Cable,1,11.95,2019-09-07 11:33:00,153 Cedar St, San Francisco,CA,94016 +259198,ThinkPad Laptop,1,999.99,2019-09-30 21:44:00,18 Meadow St, Boston,MA,02215 +259199,Wired Headphones,1,11.99,2019-09-12 11:10:00,368 Dogwood St, San Francisco,CA,94016 +259200,USB-C Charging Cable,1,11.95,2019-09-26 22:37:00,449 11th St, Seattle,WA,98101 +259201,AAA Batteries (4-pack),1,2.99,2019-09-30 20:00:00,403 Chestnut St, Boston,MA,02215 +259202,Bose SoundSport Headphones,1,99.99,2019-09-12 08:58:00,692 Pine St, Portland,OR,97035 +259203,AAA Batteries (4-pack),1,2.99,2019-09-02 16:16:00,353 North St, San Francisco,CA,94016 +259204,Vareebadd Phone,1,400.0,2019-09-17 18:06:00,850 Meadow St, Boston,MA,02215 +259204,USB-C Charging Cable,1,11.95,2019-09-17 18:06:00,850 Meadow St, Boston,MA,02215 +259205,27in FHD Monitor,1,149.99,2019-09-19 23:53:00,307 Lincoln St, Dallas,TX,75001 +259206,Apple Airpods Headphones,1,150.0,2019-09-29 21:20:00,988 14th St, Seattle,WA,98101 +259207,20in Monitor,1,109.99,2019-09-04 22:43:00,430 Sunset St, Austin,TX,73301 +259208,27in FHD Monitor,1,149.99,2019-09-20 14:31:00,375 Pine St, New York City,NY,10001 +259208,ThinkPad Laptop,1,999.99,2019-09-20 14:31:00,375 Pine St, New York City,NY,10001 +259209,Lightning Charging Cable,1,14.95,2019-09-27 11:17:00,579 Washington St, Seattle,WA,98101 +259210,Lightning Charging Cable,1,14.95,2019-09-27 12:35:00,132 Meadow St, Portland,ME,04101 +259211,AA Batteries (4-pack),3,3.84,2019-09-11 19:58:00,776 Walnut St, Seattle,WA,98101 +259212,Wired Headphones,1,11.99,2019-09-18 11:00:00,565 Cherry St, Los Angeles,CA,90001 +259213,27in FHD Monitor,1,149.99,2019-09-12 00:37:00,706 Hill St, San Francisco,CA,94016 +259214,USB-C Charging Cable,2,11.95,2019-09-29 10:00:00,335 14th St, San Francisco,CA,94016 +259215,USB-C Charging Cable,3,11.95,2019-09-07 16:41:00,562 Chestnut St, Dallas,TX,75001 +259216,AA Batteries (4-pack),1,3.84,2019-09-06 21:25:00,251 Church St, New York City,NY,10001 +259217,AAA Batteries (4-pack),3,2.99,2019-09-04 13:35:00,302 Lakeview St, New York City,NY,10001 +259218,USB-C Charging Cable,1,11.95,2019-09-30 05:13:00,522 Dogwood St, Dallas,TX,75001 +259219,AA Batteries (4-pack),1,3.84,2019-09-30 15:45:00,42 Lake St, Los Angeles,CA,90001 +259220,Vareebadd Phone,1,400.0,2019-09-21 20:31:00,815 Jefferson St, San Francisco,CA,94016 +259221,AAA Batteries (4-pack),2,2.99,2019-09-06 17:13:00,182 1st St, New York City,NY,10001 +259222,Bose SoundSport Headphones,1,99.99,2019-09-01 10:44:00,613 8th St, Seattle,WA,98101 +259223,AA Batteries (4-pack),1,3.84,2019-09-17 16:55:00,827 11th St, Portland,OR,97035 +259224,Lightning Charging Cable,1,14.95,2019-09-25 01:08:00,588 2nd St, Los Angeles,CA,90001 +259225,Apple Airpods Headphones,1,150.0,2019-09-23 19:24:00,322 Madison St, Seattle,WA,98101 +259226,Bose SoundSport Headphones,1,99.99,2019-09-14 16:28:00,155 Johnson St, San Francisco,CA,94016 +259227,USB-C Charging Cable,1,11.95,2019-09-06 23:10:00,760 Adams St, San Francisco,CA,94016 +259228,AA Batteries (4-pack),1,3.84,2019-10-01 02:55:00,71 2nd St, Los Angeles,CA,90001 +259229,ThinkPad Laptop,1,999.99,2019-09-05 10:12:00,689 Elm St, San Francisco,CA,94016 +259230,Flatscreen TV,1,300.0,2019-09-21 19:36:00,344 6th St, Seattle,WA,98101 +259231,Google Phone,1,600.0,2019-09-04 23:19:00,337 Maple St, Boston,MA,02215 +259232,AAA Batteries (4-pack),2,2.99,2019-09-08 14:32:00,691 Meadow St, San Francisco,CA,94016 +259233,USB-C Charging Cable,1,11.95,2019-09-13 20:02:00,65 Spruce St, Atlanta,GA,30301 +259234,Apple Airpods Headphones,1,150.0,2019-09-30 21:28:00,179 Cedar St, Los Angeles,CA,90001 +259235,Bose SoundSport Headphones,1,99.99,2019-09-19 10:25:00,590 Sunset St, Seattle,WA,98101 +259236,27in 4K Gaming Monitor,1,389.99,2019-09-27 17:59:00,55 Highland St, Los Angeles,CA,90001 +259237,AA Batteries (4-pack),2,3.84,2019-09-20 13:45:00,716 Chestnut St, Seattle,WA,98101 +259238,Apple Airpods Headphones,1,150.0,2019-09-26 14:19:00,228 Church St, Seattle,WA,98101 +259239,Apple Airpods Headphones,1,150.0,2019-09-05 16:10:00,781 Lincoln St, New York City,NY,10001 +259240,USB-C Charging Cable,1,11.95,2019-09-22 07:46:00,737 Spruce St, Boston,MA,02215 +259241,27in 4K Gaming Monitor,1,389.99,2019-09-14 16:19:00,648 5th St, San Francisco,CA,94016 +259242,AAA Batteries (4-pack),1,2.99,2019-09-06 22:59:00,863 Cherry St, Los Angeles,CA,90001 +259243,27in 4K Gaming Monitor,1,389.99,2019-09-14 15:36:00,815 Church St, Los Angeles,CA,90001 +259244,AAA Batteries (4-pack),1,2.99,2019-09-01 19:09:00,716 12th St, Los Angeles,CA,90001 +259245,20in Monitor,1,109.99,2019-09-18 17:37:00,660 Meadow St, San Francisco,CA,94016 +259246,Bose SoundSport Headphones,1,99.99,2019-09-04 15:55:00,777 Forest St, San Francisco,CA,94016 +259247,Lightning Charging Cable,2,14.95,2019-09-03 14:12:00,39 Meadow St, Dallas,TX,75001 +259248,Apple Airpods Headphones,1,150.0,2019-09-27 02:25:00,368 Adams St, Atlanta,GA,30301 +259249,AAA Batteries (4-pack),3,2.99,2019-09-04 20:30:00,650 West St, San Francisco,CA,94016 +259250,27in FHD Monitor,1,149.99,2019-09-15 09:31:00,460 Park St, Los Angeles,CA,90001 +259251,Wired Headphones,1,11.99,2019-09-18 12:01:00,320 Main St, Austin,TX,73301 +259252,USB-C Charging Cable,1,11.95,2019-09-27 21:32:00,909 Park St, San Francisco,CA,94016 +259253,USB-C Charging Cable,1,11.95,2019-09-26 14:50:00,10 West St, Los Angeles,CA,90001 +259254,Vareebadd Phone,1,400.0,2019-09-06 14:02:00,853 5th St, Los Angeles,CA,90001 +259255,AA Batteries (4-pack),1,3.84,2019-09-24 18:25:00,49 7th St, Los Angeles,CA,90001 +259256,USB-C Charging Cable,2,11.95,2019-09-18 02:32:00,947 Center St, Seattle,WA,98101 +259257,ThinkPad Laptop,1,999.99,2019-09-30 21:33:00,73 Cherry St, Los Angeles,CA,90001 +259258,Google Phone,1,600.0,2019-09-09 19:16:00,849 Elm St, Boston,MA,02215 +259259,Bose SoundSport Headphones,1,99.99,2019-09-13 23:25:00,322 8th St, Seattle,WA,98101 +259260,Lightning Charging Cable,1,14.95,2019-09-26 11:30:00,674 Hill St, New York City,NY,10001 +259261,AAA Batteries (4-pack),1,2.99,2019-09-17 20:03:00,990 12th St, San Francisco,CA,94016 +259262,Lightning Charging Cable,1,14.95,2019-09-03 19:38:00,232 10th St, Los Angeles,CA,90001 +259263,AA Batteries (4-pack),1,3.84,2019-09-30 11:21:00,235 10th St, Seattle,WA,98101 +259264,27in 4K Gaming Monitor,1,389.99,2019-09-03 14:42:00,349 West St, Boston,MA,02215 +259265,AAA Batteries (4-pack),3,2.99,2019-09-04 21:52:00,370 5th St, Los Angeles,CA,90001 +259266,USB-C Charging Cable,1,11.95,2019-09-13 05:36:00,9 2nd St, New York City,NY,10001 +259267,AAA Batteries (4-pack),1,2.99,2019-09-21 16:47:00,824 Park St, San Francisco,CA,94016 +259268,AAA Batteries (4-pack),1,2.99,2019-09-26 19:28:00,646 Walnut St, New York City,NY,10001 +259269,27in FHD Monitor,1,149.99,2019-09-21 21:43:00,976 Main St, Atlanta,GA,30301 +259270,Google Phone,1,600.0,2019-09-06 15:27:00,940 10th St, San Francisco,CA,94016 +259270,USB-C Charging Cable,1,11.95,2019-09-06 15:27:00,940 10th St, San Francisco,CA,94016 +259271,Flatscreen TV,1,300.0,2019-09-15 06:03:00,453 Hill St, Seattle,WA,98101 +259272,AAA Batteries (4-pack),1,2.99,2019-09-12 10:53:00,759 Lakeview St, Los Angeles,CA,90001 +259273,AAA Batteries (4-pack),2,2.99,2019-09-02 23:58:00,324 Jackson St, Los Angeles,CA,90001 +259274,Wired Headphones,1,11.99,2019-09-20 18:09:00,285 Cherry St, Boston,MA,02215 +259275,Lightning Charging Cable,1,14.95,2019-09-25 16:22:00,273 7th St, Austin,TX,73301 +259276,27in 4K Gaming Monitor,1,389.99,2019-09-28 18:55:00,453 Jefferson St, Seattle,WA,98101 +259277,iPhone,1,700.0,2019-09-28 13:07:00,795 Willow St, New York City,NY,10001 +259277,Wired Headphones,2,11.99,2019-09-28 13:07:00,795 Willow St, New York City,NY,10001 +259278,iPhone,1,700.0,2019-09-11 07:24:00,505 Hickory St, Atlanta,GA,30301 +259279,Bose SoundSport Headphones,1,99.99,2019-09-22 14:45:00,57 Elm St, New York City,NY,10001 +259280,Lightning Charging Cable,1,14.95,2019-09-13 08:58:00,619 10th St, San Francisco,CA,94016 +259281,27in FHD Monitor,1,149.99,2019-09-22 17:19:00,755 Dogwood St, Dallas,TX,75001 +259282,USB-C Charging Cable,1,11.95,2019-09-01 22:54:00,806 9th St, Los Angeles,CA,90001 +259283,USB-C Charging Cable,1,11.95,2019-09-30 00:20:00,785 Jackson St, San Francisco,CA,94016 +259284,AA Batteries (4-pack),1,3.84,2019-09-18 09:55:00,97 Jackson St, Los Angeles,CA,90001 +259285,AA Batteries (4-pack),1,3.84,2019-09-07 11:22:00,990 9th St, San Francisco,CA,94016 +259286,AA Batteries (4-pack),2,3.84,2019-09-19 18:03:00,242 Center St, Seattle,WA,98101 +259287,Lightning Charging Cable,1,14.95,2019-09-09 21:24:00,675 Jackson St, Boston,MA,02215 +259288,Wired Headphones,1,11.99,2019-09-29 20:59:00,845 Hickory St, Los Angeles,CA,90001 +259289,ThinkPad Laptop,1,999.99,2019-09-25 00:42:00,259 Dogwood St, Los Angeles,CA,90001 +259290,AAA Batteries (4-pack),1,2.99,2019-09-13 21:42:00,542 4th St, Dallas,TX,75001 +259291,iPhone,1,700.0,2019-09-07 18:43:00,841 Park St, Portland,OR,97035 +259292,27in 4K Gaming Monitor,1,389.99,2019-09-07 13:47:00,66 Hickory St, San Francisco,CA,94016 +259293,Wired Headphones,1,11.99,2019-09-02 11:37:00,678 Adams St, San Francisco,CA,94016 +259294,27in FHD Monitor,1,149.99,2019-09-16 11:02:00,796 Walnut St, Austin,TX,73301 +259295,AA Batteries (4-pack),1,3.84,2019-09-11 05:09:00,263 River St, San Francisco,CA,94016 +259296,Apple Airpods Headphones,1,150.0,2019-09-28 16:48:00,894 6th St, Dallas,TX,75001 +259297,iPhone,1,700.0,2019-09-15 18:54:00,138 Main St, Boston,MA,02215 +259297,Lightning Charging Cable,1,14.95,2019-09-15 18:54:00,138 Main St, Boston,MA,02215 +259298,20in Monitor,1,109.99,2019-09-18 09:10:00,188 11th St, Austin,TX,73301 +259299,Macbook Pro Laptop,1,1700.0,2019-09-30 23:59:00,240 Chestnut St, Los Angeles,CA,90001 +259300,Wired Headphones,1,11.99,2019-09-17 22:07:00,932 13th St, San Francisco,CA,94016 +259301,Apple Airpods Headphones,1,150.0,2019-09-13 14:03:00,963 Jackson St, San Francisco,CA,94016 +259302,AAA Batteries (4-pack),1,2.99,2019-09-16 07:27:00,364 4th St, San Francisco,CA,94016 +259303,34in Ultrawide Monitor,1,379.99,2019-09-20 20:18:00,106 7th St, Atlanta,GA,30301 +259303,AA Batteries (4-pack),1,3.84,2019-09-20 20:18:00,106 7th St, Atlanta,GA,30301 +259304,Bose SoundSport Headphones,1,99.99,2019-09-02 10:23:00,309 River St, Boston,MA,02215 +259305,AA Batteries (4-pack),1,3.84,2019-09-24 20:46:00,47 North St, New York City,NY,10001 +259306,Apple Airpods Headphones,1,150.0,2019-09-02 06:40:00,962 13th St, New York City,NY,10001 +259307,27in FHD Monitor,1,149.99,2019-09-14 16:06:00,172 Washington St, Los Angeles,CA,90001 +259308,Macbook Pro Laptop,1,1700.0,2019-09-26 19:16:00,912 8th St, Boston,MA,02215 +259309,Wired Headphones,1,11.99,2019-09-09 12:55:00,865 Ridge St, Atlanta,GA,30301 +259310,Apple Airpods Headphones,1,150.0,2019-09-15 19:08:00,309 Elm St, Los Angeles,CA,90001 +259311,Flatscreen TV,1,300.0,2019-09-18 14:54:00,930 North St, Seattle,WA,98101 +259312,Wired Headphones,1,11.99,2019-09-02 19:51:00,573 Sunset St, San Francisco,CA,94016 +259313,Bose SoundSport Headphones,1,99.99,2019-09-05 11:34:00,138 2nd St, Los Angeles,CA,90001 +259314,Wired Headphones,1,11.99,2019-09-16 00:25:00,241 Highland St, Atlanta,GA,30301 +259314,AAA Batteries (4-pack),2,2.99,2019-09-16 00:25:00,241 Highland St, Atlanta,GA,30301 +259315,Lightning Charging Cable,1,14.95,2019-09-29 16:20:00,112 5th St, Boston,MA,02215 +259316,AAA Batteries (4-pack),1,2.99,2019-09-16 16:48:00,369 Johnson St, Atlanta,GA,30301 +259317,Lightning Charging Cable,1,14.95,2019-09-26 21:12:00,151 1st St, New York City,NY,10001 +259318,AAA Batteries (4-pack),1,2.99,2019-09-30 10:05:00,524 Hickory St, Boston,MA,02215 +259319,27in 4K Gaming Monitor,1,389.99,2019-09-15 12:30:00,811 Lincoln St, San Francisco,CA,94016 +259320,ThinkPad Laptop,1,999.99,2019-09-02 10:51:00,857 Elm St, Atlanta,GA,30301 +259321,ThinkPad Laptop,1,999.99,2019-09-25 16:09:00,418 Hickory St, Los Angeles,CA,90001 +259322,Bose SoundSport Headphones,1,99.99,2019-09-15 10:45:00,401 7th St, Los Angeles,CA,90001 +259323,USB-C Charging Cable,1,11.95,2019-09-24 16:42:00,727 Forest St, Portland,OR,97035 +259324,Macbook Pro Laptop,1,1700.0,2019-09-29 13:37:00,926 North St, San Francisco,CA,94016 +259325,USB-C Charging Cable,1,11.95,2019-09-25 11:51:00,83 7th St, New York City,NY,10001 +259326,AAA Batteries (4-pack),3,2.99,2019-09-15 23:01:00,163 Church St, New York City,NY,10001 +259327,Apple Airpods Headphones,1,150.0,2019-09-20 18:45:00,505 Spruce St, Seattle,WA,98101 +259328,Wired Headphones,1,11.99,2019-09-18 10:13:00,877 Lincoln St, Boston,MA,02215 +259329,Lightning Charging Cable,1,14.95,2019-09-05 19:00:00,480 Lincoln St, Atlanta,GA,30301 +259330,AA Batteries (4-pack),2,3.84,2019-09-25 22:01:00,763 Washington St, Seattle,WA,98101 +259331,Apple Airpods Headphones,1,150.0,2019-09-29 07:00:00,770 4th St, New York City,NY,10001 +259332,Apple Airpods Headphones,1,150.0,2019-09-16 19:21:00,782 Lake St, Atlanta,GA,30301 +259333,Bose SoundSport Headphones,1,99.99,2019-09-19 18:03:00,347 Ridge St, San Francisco,CA,94016 +259334,USB-C Charging Cable,1,11.95,2019-09-27 10:52:00,276 14th St, Atlanta,GA,30301 +259335,Lightning Charging Cable,1,14.95,2019-09-26 17:21:00,791 Forest St, Seattle,WA,98101 +259336,AAA Batteries (4-pack),3,2.99,2019-09-25 00:13:00,753 14th St, Boston,MA,02215 +259337,USB-C Charging Cable,1,11.95,2019-09-19 17:34:00,495 Park St, Boston,MA,02215 +259338,AAA Batteries (4-pack),2,2.99,2019-09-02 21:29:00,666 Lakeview St, Boston,MA,02215 +259339,USB-C Charging Cable,2,11.95,2019-09-12 23:43:00,509 Park St, Austin,TX,73301 +259340,AA Batteries (4-pack),2,3.84,2019-09-18 20:18:00,544 Hickory St, Los Angeles,CA,90001 +259341,27in 4K Gaming Monitor,1,389.99,2019-09-24 22:16:00,501 Adams St, Seattle,WA,98101 +259342,AA Batteries (4-pack),1,3.84,2019-09-07 20:09:00,579 South St, Boston,MA,02215 +259343,USB-C Charging Cable,1,11.95,2019-09-14 19:30:00,675 Maple St, Austin,TX,73301 +259344,AAA Batteries (4-pack),2,2.99,2019-09-10 23:33:00,721 Madison St, San Francisco,CA,94016 +259345,ThinkPad Laptop,1,999.99,2019-09-21 23:12:00,406 Dogwood St, San Francisco,CA,94016 +259346,Bose SoundSport Headphones,1,99.99,2019-09-29 17:24:00,484 Cedar St, New York City,NY,10001 +259347,AA Batteries (4-pack),1,3.84,2019-09-26 10:12:00,979 Madison St, Los Angeles,CA,90001 +259348,Lightning Charging Cable,1,14.95,2019-09-30 21:03:00,260 Spruce St, Boston,MA,02215 +259349,AAA Batteries (4-pack),1,2.99,2019-09-01 22:14:00,911 River St, Dallas,TX,75001 +259350,Google Phone,1,600.0,2019-09-30 13:49:00,519 Maple St, San Francisco,CA,94016 +259350,USB-C Charging Cable,1,11.95,2019-09-30 13:49:00,519 Maple St, San Francisco,CA,94016 +259351,Apple Airpods Headphones,1,150.0,2019-09-01 19:43:00,981 4th St, New York City,NY,10001 +259352,USB-C Charging Cable,1,11.95,2019-09-07 15:49:00,976 Forest St, San Francisco,CA,94016 +259353,AAA Batteries (4-pack),3,2.99,2019-09-17 20:56:00,840 Highland St, Los Angeles,CA,90001 +259354,iPhone,1,700.0,2019-09-01 16:00:00,216 Dogwood St, San Francisco,CA,94016 +259355,iPhone,1,700.0,2019-09-23 07:39:00,220 12th St, San Francisco,CA,94016 +259356,34in Ultrawide Monitor,1,379.99,2019-09-19 17:30:00,511 Forest St, San Francisco,CA,94016 +259357,USB-C Charging Cable,1,11.95,2019-09-30 00:18:00,250 Meadow St, San Francisco,CA,94016 diff --git a/SalesAnalysis/Sales_Data/Sales_April_2019.csv b/Data/Raw/Sales_April_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_April_2019.csv rename to Data/Raw/Sales_April_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_August_2019.csv b/Data/Raw/Sales_August_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_August_2019.csv rename to Data/Raw/Sales_August_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_December_2019.csv b/Data/Raw/Sales_December_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_December_2019.csv rename to Data/Raw/Sales_December_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_February_2019.csv b/Data/Raw/Sales_February_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_February_2019.csv rename to Data/Raw/Sales_February_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_January_2019.csv b/Data/Raw/Sales_January_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_January_2019.csv rename to Data/Raw/Sales_January_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_July_2019.csv b/Data/Raw/Sales_July_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_July_2019.csv rename to Data/Raw/Sales_July_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_June_2019.csv b/Data/Raw/Sales_June_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_June_2019.csv rename to Data/Raw/Sales_June_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_March_2019.csv b/Data/Raw/Sales_March_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_March_2019.csv rename to Data/Raw/Sales_March_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_May_2019.csv b/Data/Raw/Sales_May_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_May_2019.csv rename to Data/Raw/Sales_May_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_November_2019.csv b/Data/Raw/Sales_November_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_November_2019.csv rename to Data/Raw/Sales_November_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_October_2019.csv b/Data/Raw/Sales_October_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_October_2019.csv rename to Data/Raw/Sales_October_2019.csv diff --git a/SalesAnalysis/Sales_Data/Sales_September_2019.csv b/Data/Raw/Sales_September_2019.csv similarity index 100% rename from SalesAnalysis/Sales_Data/Sales_September_2019.csv rename to Data/Raw/Sales_September_2019.csv diff --git a/Data_analysis.ipynb b/Data_analysis.ipynb new file mode 100644 index 0000000..ef6c6dd --- /dev/null +++ b/Data_analysis.ipynb @@ -0,0 +1,1311 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "b6cef592", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "import warnings\n", + "warnings.filterwarnings(\"ignore\")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "0086bf67", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDProductQuantity_orderedPrice_eachOrder_dateStreetCityStateZip_code
0176558USB-C Charging Cable211.952019-04-19 08:46:00917 1st StDallasTX75001
1176559Bose SoundSport Headphones199.992019-04-07 22:30:00682 Chestnut StBostonMA2215
2176560Google Phone1600.002019-04-12 14:38:00669 Spruce StLos AngelesCA90001
3176560Wired Headphones111.992019-04-12 14:38:00669 Spruce StLos AngelesCA90001
4176561Wired Headphones111.992019-04-30 09:27:00333 8th StLos AngelesCA90001
\n", + "
" + ], + "text/plain": [ + " ID Product Quantity_ordered Price_each \\\n", + "0 176558 USB-C Charging Cable 2 11.95 \n", + "1 176559 Bose SoundSport Headphones 1 99.99 \n", + "2 176560 Google Phone 1 600.00 \n", + "3 176560 Wired Headphones 1 11.99 \n", + "4 176561 Wired Headphones 1 11.99 \n", + "\n", + " Order_date Street City State Zip_code \n", + "0 2019-04-19 08:46:00 917 1st St Dallas TX 75001 \n", + "1 2019-04-07 22:30:00 682 Chestnut St Boston MA 2215 \n", + "2 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 \n", + "3 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 \n", + "4 2019-04-30 09:27:00 333 8th St Los Angeles CA 90001 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sales=pd.read_csv('./Data/Clean/clean_data.csv')\n", + "sales.head()" + ] + }, + { + "cell_type": "markdown", + "id": "64b88b51", + "metadata": {}, + "source": [ + "# What was the best month for sales?" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "879bd3fa", + "metadata": {}, + "outputs": [], + "source": [ + "sales.Order_date=pd.to_datetime(sales.Order_date)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "a2578b5a", + "metadata": {}, + "outputs": [], + "source": [ + "sales['Year']=sales.Order_date.dt.year\n", + "sales['Month']=sales.Order_date.dt.month" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "da57ffc0", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAy0AAAIgCAYAAACI+YZsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAu0UlEQVR4nO3de5hVdbnA8XczA8NwGRCRmwyI4gVQAkHPATRBQyVE7WheUuKinTBvPN4vnaOUAlaWlR4qjwGWiZlX6ng3UuiQgqBm5gVBOAGhooAggzDr/OHDfpq4yODM7B/M5/M8+3nYa+01611LVL6svfbOZVmWBQAAQKIaFHoAAACA7REtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNIKFi3PPPNMDBs2LDp06BC5XC4efPDBav+MLMvie9/7XhxwwAFRUlIS5eXlMX78+JofFgAAKJjiQu147dq18bnPfS5GjRoVp5xyyk79jIsvvjgef/zx+N73vheHHHJIrFq1Kt59990anhQAACikXJZlWcGHyOXigQceiJNPPjm/bMOGDfHNb34z7rrrrvjggw/i4IMPjptuuikGDhwYERGvvvpq9OzZM/785z/HgQceWJjBAQCAWpfsPS2jRo2KWbNmxbRp0+Kll16KL3/5y3H88cfHG2+8ERER06dPj3333Td++9vfRpcuXWKfffaJc889N1auXFngyQEAgJqUZLQsWLAg7r777rj33nvjyCOPjP322y8uu+yyOOKII2Ly5MkREfHWW2/F22+/Hffee2/ceeedMWXKlJg7d26ceuqpBZ4eAACoSQW7p2V7XnjhhciyLA444IAqyysqKmLPPfeMiIjKysqoqKiIO++8M/+6O+64I/r06ROvvfaat4wBAMBuIsloqaysjKKiopg7d24UFRVVWdesWbOIiGjfvn0UFxdXCZtu3bpFRMTixYtFCwAA7CaSjJbevXvHpk2bYsWKFXHkkUdu9TUDBgyIjRs3xoIFC2K//faLiIjXX389IiI6d+5cZ7MCAAC1q2CfHvbhhx/Gm2++GRGfRMr3v//9GDRoULRq1So6deoUZ599dsyaNStuvvnm6N27d7z77rvx9NNPxyGHHBJf/OIXo7KyMg477LBo1qxZ3HLLLVFZWRnnn39+lJWVxeOPP16IQwIAAGpBwaJlxowZMWjQoC2WjxgxIqZMmRIff/xx3HDDDXHnnXfG3/72t9hzzz2jX79+MW7cuDjkkEMiImLp0qVx4YUXxuOPPx5NmzaNIUOGxM033xytWrWq68MBAABqSRLf0wIAALAtSX7kMQAAwGaiBQAASFqdf3pYZWVlLF26NJo3bx65XK6udw8AACQiy7JYs2ZNdOjQIRo02Pb1lDqPlqVLl0Z5eXld7xYAAEjUkiVLomPHjttcX+fR0rx584j4ZLCysrK63j0AAJCI1atXR3l5eb4RtqXOo2XzW8LKyspECwAA8Km3jbgRHwAASJpoAQAAkiZaAACApNX5PS07orKyMjZs2FDoMeBTNWzYMIqKigo9BgDAbi25aNmwYUMsXLgwKisrCz0K7JCWLVtGu3btfO8QAEAtSSpasiyLZcuWRVFRUZSXl2/3C2ag0LIsi3Xr1sWKFSsiIqJ9+/YFnggAYPeUVLRs3Lgx1q1bFx06dIgmTZoUehz4VKWlpRERsWLFimjTpo23igEA1IKkLmVs2rQpIiIaNWpU4Elgx20O7I8//rjAkwAA7J6SipbN3BvArsTvVwCA2pVktAAAAGwmWnYzuVwuHnzwwW2unzFjRuRyufjggw/qbKadNWvWrDjkkEOiYcOGcfLJJ3/m2T//+c/Hr371qy2Wz5gxI6ZMmbLF8hUrVsRee+0Vf/vb33ZqfwAA1IykbsTfln2u+l2d7m/RxKHVev3IkSNj6tSp8fWvfz1+8pOfVFn3jW98IyZNmhQjRozY6h+Md9b1118fDz74YMyfP7/GfmZqLrnkkujVq1c88sgj0axZs2jSpEksW7YsWrRoERERU6ZMibFjx+5QxPz2t7+N5cuXxxlnnLHD+2/Tpk0MHz48rrvuuvjv//7vnT0MAAA+I1daakh5eXlMmzYtPvroo/yy9evXx9133x2dOnUq4GRpybIsNm7cuEOvXbBgQRx99NHRsWPHaNmyZTRq1Ginvw/lRz/6UYwaNarKx2jPnz8/Bg8eHKecckpceOGFccghh8T1119fZbtRo0bFXXfdFe+//3619wkAQM0QLTXk0EMPjU6dOsX999+fX3b//fdHeXl59O7du8prKyoq4qKLLoo2bdpE48aN44gjjojnn38+v37z26Ceeuqp6Nu3bzRp0iT69+8fr732WkR8coVh3Lhx8eKLL0Yul4tcLlflKs67774bX/rSl6JJkyax//77x8MPP7zVmdeuXRtlZWXxm9/8psry6dOnR9OmTWPNmjXbPeZFixZFLpeLadOmRf/+/aNx48bRo0ePmDFjxhbH8thjj0Xfvn2jpKQknn322e2eg80/97333ovRo0fnj+8f3x42Y8aMGDVqVKxatSp/Dv45OP7xfDz55JNx4oknVll+0kknRZMmTWLChAlxxRVXxPjx4/MfYbzZIYccEu3atYsHHnhgu+cCAIDaI1pq0KhRo2Ly5Mn55z//+c9j9OjRW7zuiiuuiPvuuy+mTp0aL7zwQnTt2jWOO+64WLlyZZXXXXvttXHzzTfHnDlzori4OP+zTj/99Lj00kujR48esWzZsli2bFmcfvrp+e3GjRsXp512Wrz00kvxxS9+Mc4666wtfnZERNOmTeOMM86oMnNExOTJk+PUU0+N5s2b79BxX3755XHppZfGvHnzon///nHiiSfGe++9t8UxT5gwIV599dXo2bPnds9BeXl5LFu2LMrKyuKWW27Z4vgiIvr37x+33HJLlJWV5c/BZZddttX5Zs6cGU2aNIlu3brll7377ruxePHiuOKKK+KAAw6I8vLyGDZsWFx55ZVbbH/44YfHs88+u0PnAgCAmidaatDw4cNj5syZsWjRonj77bdj1qxZcfbZZ1d5zdq1a2PSpEnx3e9+N4YMGRLdu3eP22+/PUpLS+OOO+6o8tobb7wxjjrqqOjevXtcddVV8cc//jHWr18fpaWl0axZsyguLo527dpFu3btqlwhGDlyZJx55pnRtWvXGD9+fKxduzaee+65rc587rnnxmOPPRZLly6NiE/+MP/b3/52q7G1LRdccEGccsop0a1bt5g0aVK0aNFii2P51re+FYMHD4799tsvGjduvN1zUFRUlH8bWIsWLbY4vohPvsunRYsWkcvl8uegWbNmW51v0aJF0bZt2ypvDWvdunUceOCB8e1vf/tT7wvae++9Y9GiRTt8PgAAqFmipQa1bt06hg4dGlOnTo3JkyfH0KFDo3Xr1lVes2DBgvj4449jwIAB+WUNGzaMww8/PF599dUqr+3Zs2f+1+3bt4+ITz7R6tP843ZNmzaN5s2bb3O7ww8/PHr06BF33nlnRET84he/iE6dOsXnP//5T93PZv369cv/uri4OPr27bvFsfTt2zf/6+qcg5rw0UcfRePGjbdY/thjj0Xbtm1j/PjxMWbMmDjmmGPi6aef3uJ1paWlsW7duhqfCwCAHbNLfHrYrmT06NFxwQUXRETEbbfdtsX6LMsiYssvJMyybItlDRs2zP9687rKyspPneEft9u87fa2O/fcc+PWW2+Nq666KiZPnhyjRo36zF+Y+M/bN23aNP/r6pyDmtC6deut3kjfuXPnmDp1asyYMSN+//vfx4cffhjHH398zJs3L3r06JF/3cqVK2Ovvfaq8bkAANgxrrTUsOOPPz42bNgQGzZsiOOOO26L9V27do1GjRrFzJkz88s+/vjjmDNnTpV7Lj5No0aNYtOmTTUy89lnnx2LFy+OH/3oR/HKK6/EiBEjqrX97Nmz87/euHFjzJ07Nw466KBtvr6uz0Hv3r1j+fLl2/0EsC5dusTNN98czZs3r3I8ERF//vOft/gwBQAA6o4rLTWsqKgo/xanoqKiLdY3bdo0zjvvvLj88sujVatW0alTp/jOd74T69ati3POOWeH97PPPvvEwoULY/78+dGxY8do3rx5lJSU7NTMe+yxR/zbv/1bXH755XHsscdGx44dq7X9bbfdFvvvv39069YtfvCDH8T777+/3XtiavIcfPjhh/HUU0/F5z73uWjSpEk0adJki9f17t079tprr5g1a1accMIJERGxdOnS+N73vhcjR46MioqKWLduXfz0pz+NDz74oEqgrFu3LubOnRvjx4+vxhkBAKgbdf19hv+sut9vuLN2iWipq5NRU8rKyra7fuLEiVFZWRnDhw+PNWvWRN++feOxxx6LPfbYY4f3ccopp8T9998fgwYNig8++CAmT54cI0eO3OmZzznnnPjVr35VrRvwN5s4cWLcdNNNMW/evNhvv/3ioYce2uJenq1t81nPQf/+/WPMmDFx+umnx3vvvRfXXXfdVj/2uKioKEaPHh133XVXPlrKyspi48aNceqpp8bixYsjy7LYd999Y/LkyXHooYfmt33ooYeiU6dOceSRR+7wXAAA1KxctvkGgzqyevXqaNGiRaxatWqLP9yvX78+Fi5cGF26dNnqjdPUnrvuuisuvvjiWLp0aTRq1GiHtlm0aFF06dIl5s2bF7169ardAT+jv//979GjR4+YO3dudO7cucq6GTNmxKJFi7YafYcffniMHTs2vvKVr2zzZ/t9CwAUyq5+pWV7bfCP3NNSz61bty5eeeWVmDBhQnz961/f4WDZ1bRt2zbuuOOOWLx48Q5vs2LFijj11FPjzDPPrMXJAAD4NKKlnvvOd74TvXr1irZt28bVV19dZd348eOjWbNmW30MGTKkQBPvvJNOOmmrb/MaOHDgVq+ytGnTJq644opa+UQzAAB23C5xTwu15/rrr9/qfSAREWPGjInTTjttq+tKS0tj7733jjp+dyEAAPWQaGGbWrVqFa1atSr0GAAA1HNJvj3M396zK/H7FQCgdiUVLZu/12TDhg0FngR23Lp16yIiomHDhgWeBABg95TU28OKi4ujSZMm8c4770TDhg2jQYOkmgqqyLIs1q1bFytWrIiWLVtu9ctEAQD47JKKllwuF+3bt4+FCxfG22+/XehxYIe0bNky2rVrV+gxAAB2W0lFS0REo0aNYv/99/cWMXYJDRs2dIUFAKCWJRctERENGjTwzeIAAEBEJHYjPgAAwD8TLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkLTPFC0TJkyIXC4XY8eOraFxAAAAqtrpaHn++efjZz/7WfTs2bMm5wEAAKhip6Llww8/jLPOOituv/322GOPPWp6JgAAgLydipbzzz8/hg4dGl/4whc+9bUVFRWxevXqKg8AAIAdVVzdDaZNmxZz586NOXPm7NDrJ0yYEOPGjav2YAAAABHVvNKyZMmSuPjii+Ouu+6Kxo0b79A2V199daxatSr/WLJkyU4NCgAA1E/VutIyd+7cWLFiRfTp0ye/bNOmTfHMM8/ErbfeGhUVFVFUVFRlm5KSkigpKamZaQEAgHqnWtFyzDHHxMsvv1xl2ahRo+Kggw6KK6+8cotgAQAA+KyqFS3NmzePgw8+uMqypk2bxp577rnFcgAAgJrwmb5cEgAAoLZV+9PD/tmMGTNqYAwAAICtc6UFAABImmgBAACSJloAAICkiRYAACBpogUAAEiaaAEAAJImWgAAgKSJFgAAIGmiBQAASJpoAQAAkiZaAACApIkWAAAgaaIFAABImmgBAACSJloAAICkiRYAACBpogUAAEiaaAEAAJImWgAAgKSJFgAAIGnFhR4AAICds89Vvyvo/hdNHFrQ/VN/uNICAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJK240AMA1bfPVb8r9AixaOLQQo8AANQTrrQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkrLvQAAACws/a56ncF3f+iiUMLuv/6wpUWAAAgaaIFAABImmgBAACS5p4WYJfkPcwAUH+40gIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQtGpFy6RJk6Jnz55RVlYWZWVl0a9fv3jkkUdqazYAAIDqRUvHjh1j4sSJMWfOnJgzZ04cffTRcdJJJ8Urr7xSW/MBAAD1XHF1Xjxs2LAqz2+88caYNGlSzJ49O3r06FGjgwEAAERUM1r+0aZNm+Lee++NtWvXRr9+/bb5uoqKiqioqMg/X7169c7uEgAAqIeqfSP+yy+/HM2aNYuSkpIYM2ZMPPDAA9G9e/dtvn7ChAnRokWL/KO8vPwzDQwAANQv1Y6WAw88MObPnx+zZ8+O8847L0aMGBF/+ctftvn6q6++OlatWpV/LFmy5DMNDAAA1C/VfntYo0aNomvXrhER0bdv33j++efjhz/8Yfz0pz/d6utLSkqipKTks00JAADUW5/5e1qyLKtyzwoAAEBNqtaVlmuuuSaGDBkS5eXlsWbNmpg2bVrMmDEjHn300dqaDwAAqOeqFS1///vfY/jw4bFs2bJo0aJF9OzZMx599NEYPHhwbc0HAADUc9WKljvuuKO25gAAANiqz3xPCwAAQG0SLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkrLvQAsDP2uep3Bd3/oolDC7p/AID6xJUWAAAgaaIFAABImmgBAACSJloAAICkiRYAACBpogUAAEiaaAEAAJImWgAAgKSJFgAAIGmiBQAASJpoAQAAkiZaAACApIkWAAAgaaIFAABIWnGhBwCAnbHPVb8r9AixaOLQQo8AUC+40gIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASfORxwC7qEJ/5K+P+wWgrrjSAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSigs9AACwc/a56ncF3f+iiUMLun+g/nClBQAASJpoAQAAkiZaAACApLmnZRdU6PcwR3gfMwAAdceVFgAAIGmiBQAASJpoAQAAkiZaAACApIkWAAAgaaIFAABImmgBAACSJloAAICkiRYAACBpxYUeAABgZ+xz1e8KPUIsmji00CNAveBKCwAAkDTRAgAAJE20AAAASatWtEyYMCEOO+ywaN68ebRp0yZOPvnkeO2112prNgAAgOpFyx/+8Ic4//zzY/bs2fHEE0/Exo0b49hjj421a9fW1nwAAEA9V61PD3v00UerPJ88eXK0adMm5s6dG5///OdrdDAAAICIz/iRx6tWrYqIiFatWm3zNRUVFVFRUZF/vnr16s+ySwAAoJ7Z6RvxsyyLSy65JI444og4+OCDt/m6CRMmRIsWLfKP8vLynd0lAABQD+10tFxwwQXx0ksvxd13373d11199dWxatWq/GPJkiU7u0sAAKAe2qm3h1144YXx8MMPxzPPPBMdO3bc7mtLSkqipKRkp4YDAACoVrRkWRYXXnhhPPDAAzFjxozo0qVLbc0FAAAQEdWMlvPPPz9+9atfxUMPPRTNmzeP5cuXR0REixYtorS0tFYGBAAA6rdq3dMyadKkWLVqVQwcODDat2+ff9xzzz21NR8AAFDPVfvtYQAAAHVppz89DAAAoC6IFgAAIGmiBQAASJpoAQAAkiZaAACApIkWAAAgaaIFAABImmgBAACSJloAAICkiRYAACBpogUAAEhacaEH2Bn7XPW7gu5/0cShBd0/AADUJ660AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASat2tDzzzDMxbNiw6NChQ+RyuXjwwQdrYSwAAIBPVDta1q5dG5/73Ofi1ltvrY15AAAAqiiu7gZDhgyJIUOG1MYsAAAAW6h2tFRXRUVFVFRU5J+vXr26tncJAADsRmr9RvwJEyZEixYt8o/y8vLa3iUAALAbqfVoufrqq2PVqlX5x5IlS2p7lwAAwG6k1t8eVlJSEiUlJbW9GwAAYDfle1oAAICkVftKy4cffhhvvvlm/vnChQtj/vz50apVq+jUqVONDgcAAFDtaJkzZ04MGjQo//ySSy6JiIgRI0bElClTamwwAACAiJ2IloEDB0aWZbUxCwAAwBbc0wIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNJECwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRtp6Llv/7rv6JLly7RuHHj6NOnTzz77LM1PRcAAEBE7ES03HPPPTF27Ni49tprY968eXHkkUfGkCFDYvHixbUxHwAAUM9VO1q+//3vxznnnBPnnntudOvWLW655ZYoLy+PSZMm1cZ8AABAPVdcnRdv2LAh5s6dG1dddVWV5ccee2z88Y9/3Oo2FRUVUVFRkX++atWqiIhYvXp1dWfNq6xYt9Pb1oTPMntNKPTxRzgH9f34I5yDQh9/hHNQ6OOPcA7q+/FHOAeFPv4I52BXP/7N22dZtv0XZtXwt7/9LYuIbNasWVWW33jjjdkBBxyw1W2uu+66LCI8PDw8PDw8PDw8PDy2+liyZMl2O6RaV1o2y+VyVZ5nWbbFss2uvvrquOSSS/LPKysrY+XKlbHnnntuc5vatHr16igvL48lS5ZEWVlZne+/0Or78Uc4BxHOQX0//gjnoL4ff4RzEOEc1Pfjj3AOUjj+LMtizZo10aFDh+2+rlrR0rp16ygqKorly5dXWb5ixYpo27btVrcpKSmJkpKSKstatmxZnd3WirKysnr5m3Oz+n78Ec5BhHNQ348/wjmo78cf4RxEOAf1/fgjnINCH3+LFi0+9TXVuhG/UaNG0adPn3jiiSeqLH/iiSeif//+1ZsOAABgB1T77WGXXHJJDB8+PPr27Rv9+vWLn/3sZ7F48eIYM2ZMbcwHAADUc9WOltNPPz3ee++9+Na3vhXLli2Lgw8+OP7nf/4nOnfuXBvz1biSkpK47rrrtnjLWn1R348/wjmIcA7q+/FHOAf1/fgjnIMI56C+H3+Ec7ArHX8u+9TPFwMAACican+5JAAAQF0SLQAAQNJECwAAkDTRAgAAJE20QD3k8zcAgF1JtT/yGNj1lZSUxIsvvhjdunUr9CgAdWLZsmUxadKkmDlzZixbtiyKioqiS5cucfLJJ8fIkSOjqKio0CMC21Gvr7QsWbIkRo8eXegxatVHH30UM2fOjL/85S9brFu/fn3ceeedBZiqbr366qsxefLk+Otf/xoREX/961/jvPPOi9GjR8fTTz9d4Olq1yWXXLLVx6ZNm2LixIn55/XJ+++/H7fcckucf/75ccMNN8SSJUsKPVKtmzdvXixcuDD//Je//GUMGDAgysvL44gjjohp06YVcLq6ceGFF8azzz5b6DEK6sc//nGMGDEifv3rX0dExC9+8Yvo3r17HHTQQXHNNdfExo0bCzxh7ZkzZ05069Ytpk+fHuvXr4/XX389Dj300GjatGlcdtllceSRR8aaNWsKPSawPVk9Nn/+/KxBgwaFHqPWvPbaa1nnzp2zXC6XNWjQIDvqqKOypUuX5tcvX758tz7+LMuyRx55JGvUqFHWqlWrrHHjxtkjjzyS7bXXXtkXvvCF7JhjjsmKi4uzp556qtBj1ppcLpf16tUrGzhwYJVHLpfLDjvssGzgwIHZoEGDCj1mrWrfvn327rvvZlmWZW+99VbWrl27rF27dtngwYOzjh07Zi1atMheffXVAk9Zu3r37p09/fTTWZZl2e23356VlpZmF110UTZp0qRs7NixWbNmzbI77rijwFPWrs3/Hdx///2ziRMnZsuWLSv0SHXqW9/6Vta8efPslFNOydq1a5dNnDgx23PPPbMbbrghGz9+fLbXXntl//mf/1noMWvNgAEDsuuvvz7//Be/+EX2L//yL1mWZdnKlSuzXr16ZRdddFGhxqtTH374Yfazn/0sGzlyZHb88cdnQ4YMyUaOHJndfvvt2Ycffljo8Qpq+fLl2bhx4wo9Rp1YsmRJtmbNmi2Wb9iwIfvDH/5QgIk+3W4dLQ899NB2Hz/4wQ926z+0n3zyydkJJ5yQvfPOO9kbb7yRDRs2LOvSpUv29ttvZ1lWP6KlX79+2bXXXptlWZbdfffd2R577JFdc801+fXXXHNNNnjw4EKNV+vGjx+fdenSZYswKy4uzl555ZUCTVW3crlc9ve//z3Lsiw744wzsoEDB2Zr167NsizL1q9fn51wwgnZqaeeWsgRa12TJk3y/9737t07++lPf1pl/V133ZV17969EKPVmVwulz355JPZxRdfnLVu3Tpr2LBhduKJJ2bTp0/PNm3aVOjxat2+++6b3XfffVmWffIXdkVFRdkvf/nL/Pr7778/69q1a6HGq3WlpaXZggUL8s83bdqUNWzYMFu+fHmWZVn2+OOPZx06dCjUeHXmlVdeyTp06JC1bNkyO+mkk7J///d/z772ta9lJ510UtayZcts7733rjf/b9ia3f0vs7Msy5YuXZoddthhWYMGDbKioqLsq1/9apV4SfnPhrt1tGz+m7VcLrfNR6r/YGpCmzZtspdeeqnKsm984xtZp06dsgULFiT9G7OmlJWVZW+88UaWZZ/8T6q4uDibO3dufv3LL7+ctW3btlDj1YnnnnsuO+CAA7JLL70027BhQ5Zl9TdathZws2fPzjp27FiI0erMnnvumc2ZMyfLsk/+uzB//vwq6998882stLS0EKPVmX/8fbBhw4bsnnvuyY477risqKgo69ChQ3bNNdfk/1uxOyotLc2Ha5ZlWcOGDbM///nP+eeLFi3KmjRpUojR6kTnzp2zmTNn5p8vXbo0y+Vy2bp167Isy7KFCxdmjRs3LtR4dWbgwIHZGWeckVVUVGyxrqKiIjvzzDOzgQMHFmCyuvHiiy9u93HPPffs9n8u+upXv5r967/+a/b8889nTzzxRNa3b9+sT58+2cqVK7Ms+yRacrlcgafcut36npb27dvHfffdF5WVlVt9vPDCC4UesVZ99NFHUVxc9bMWbrvttjjxxBPjqKOOitdff71AkxVGgwYNonHjxtGyZcv8subNm8eqVasKN1QdOOyww2Lu3LnxzjvvRJ8+feLll1+OXC5X6LHq1ObjraioiLZt21ZZ17Zt23jnnXcKMVadGTJkSEyaNCkiIo466qj4zW9+U2X9r3/96+jatWshRiuIhg0bxmmnnRaPPvpovPXWW/G1r30t7rrrrjjwwAMLPVqtadeuXf7exjfeeCM2bdpU5V7HV155Jdq0aVOo8WrdySefHGPGjIlHH300fv/738dZZ50VRx11VJSWlkZExGuvvRZ77713gaesfX/605/iP/7jP6JRo0ZbrGvUqFFcc8018ac//akAk9WNXr16Re/evaNXr15bPHr37h1nnHFGoUesdU8++WT88Ic/jL59+8YXvvCFmDlzZnTs2DGOPvroWLlyZUREsn9G2K0/PaxPnz7xwgsvxMknn7zV9blcbrf+6NeDDjoof/PhP/rxj38cWZbFiSeeWKDJ6s4+++wTb775Zv4PZP/7v/8bnTp1yq9fsmRJtG/fvlDj1ZlmzZrF1KlTY9q0aTF48ODYtGlToUeqU8ccc0wUFxfH6tWr4/XXX48ePXrk1y1evDhat25dwOlq30033RQDBgyIo446Kvr27Rs333xzzJgxI7p16xavvfZazJ49Ox544IFCj1kQnTp1iuuvvz6uu+66ePLJJws9Tq35yle+El/96lfjpJNOiqeeeiquvPLKuOyyy+K9996LXC4XN954Y5x66qmFHrPW3HDDDbFs2bIYNmxYbNq0Kfr16xe//OUv8+tzuVxMmDChgBPWjT322CPeeOON6N69+1bXv/nmm7HHHnvU8VR1Z88994ybbropjjnmmK2uf+WVV2LYsGF1PFXdWrVqVZV/xiUlJfGb3/wmvvzlL8egQYOq/HuRmt06Wi6//PJYu3btNtd37do1fv/739fhRHXrS1/6Utx9990xfPjwLdbdeuutUVlZGT/5yU8KMFndOe+886r8Af3ggw+usv6RRx6Jo48+uq7HKpgzzjgjjjjiiJg7d2507ty50OPUieuuu67K8yZNmlR5Pn369DjyyCPrcqQ616FDh5g3b15MnDgxpk+fHlmWxXPPPRdLliyJAQMGxKxZs6Jv376FHrNWde7cebsfaZvL5WLw4MF1OFHdGjduXJSWlsbs2bPj61//elx55ZXRs2fPuOKKK2LdunUxbNiw+Pa3v13oMWtNs2bN4p577on169fHxo0bo1mzZlXWH3vssQWarG597WtfixEjRsQ3v/nNGDx4cLRt2zZyuVwsX748nnjiiRg/fnyMHTu20GPWmj59+sTSpUu3+f+/Dz74YLf+y+yIiH333Tdeeuml2H///fPLiouL4957740vf/nLccIJJxRwuu3LZbv7Px0AACLikyuvP/zhD2P58uX5twFlWRbt2rWLsWPHxhVXXFHgCWvPAw88EGvXro2zzz57q+vff//9ePjhh2PEiBF1PFndufLKK2P+/Pnx2GOPbbFu48aNccopp8T06dOjsrKyANNtn2gBAKhnFi5cGMuXL4+IT+556tKlS4Enoi5s3Lgx1q1bF2VlZVtdv2nTpvi///u/JN+NsVvfiA8AwJa6dOkS/fr1i379+uWDpT586fb21IfjLy4u3mawREQsXbo0xo0bV4cT7ThXWgAAiBdffDEOPfTQevdhLZvV9+OPSPsc7NY34gMA8ImHH354u+vfeuutOpqkMOr78Ufs2ufAlRYAgHqgQYMGn/p1D7lcLsm/Za8J9f34I3btc+CeFgCAeqC+f+l2fT/+iF37HIgWAIB6YPOXbm/L7v6l2/X9+CN27XPgnhYAgHqgvn/pdn0//ohd+xy4pwUAAEiat4cBAABJEy0AAEDSRAsAAJA00QLALiWXy8WDDz5Y6DEAqEOiBYAdMnLkyMjlcjFmzJgt1n3jG9+IXC4XI0eOrLH9XX/99dGrV68a+3kA7LpECwA7rLy8PKZNmxYfffRRftn69evj7rvvjk6dOhVwMgB2Z6IFgB126KGHRqdOneL+++/PL7v//vujvLw8evfunV9WUVERF110UbRp0yYaN24cRxxxRDz//PP59TNmzIhcLhdPPfVU9O3bN5o0aRL9+/eP1157LSIipkyZEuPGjYsXX3wxcrlc5HK5mDJlSn77d999N770pS9FkyZNYv/994+HH3649g8egIIRLQBUy6hRo2Ly5Mn55z//+c9j9OjRVV5zxRVXxH333RdTp06NF154Ibp27RrHHXdcrFy5ssrrrr322rj55ptjzpw5UVxcnP85p59+elx66aXRo0ePWLZsWSxbtixOP/30/Hbjxo2L0047LV566aX44he/GGedddYWPxuA3YdoAaBahg8fHjNnzoxFixbF22+/HbNmzYqzzz47v37t2rUxadKk+O53vxtDhgyJ7t27x+233x6lpaVxxx13VPlZN954Yxx11FHRvXv3uOqqq+KPf/xjrF+/PkpLS6NZs2ZRXFwc7dq1i3bt2kVpaWl+u5EjR8aZZ54ZXbt2jfHjx8fatWvjueeeq7NzAEDdKi70AADsWlq3bh1Dhw6NqVOnRpZlMXTo0GjdunV+/YIFC+Ljjz+OAQMG5Jc1bNgwDj/88Hj11Ver/KyePXvmf92+ffuIiFixYsWn3h/zj9s1bdo0mjdvHitWrPhMxwVAukQLANU2evTouOCCCyIi4rbbbquyLsuyiPjko4n/efk/L2vYsGH+15vXVVZWfur+/3G7zdvuyHYA7Jq8PQyAajv++ONjw4YNsWHDhjjuuOOqrOvatWs0atQoZs6cmV/28ccfx5w5c6Jbt247vI9GjRrFpk2bamxmAHZdrrQAUG1FRUX5t3oVFRVVWde0adM477zz4vLLL49WrVpFp06d4jvf+U6sW7cuzjnnnB3exz777BMLFy6M+fPnR8eOHaN58+ZRUlJSo8cBwK5BtACwU8rKyra5buLEiVFZWRnDhw+PNWvWRN++feOxxx6LPfbYY4d//imnnBL3339/DBo0KD744IOYPHlyjX55JQC7jly2+c3HAAAACXJPCwAAkDTRAgAAJE20AAAASRMtAABA0kQLAACQNNECAAAkTbQAAABJEy0AAEDSRAsAAJA00QIAACRNtAAAAEkTLQAAQNL+HwaTja7rK5WcAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sales.groupby('Month')[['Price_each']].sum().rename({'Price_each':'Monthly_profit ($)'},axis=1).plot(kind='bar',figsize=(10,6))\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "bb484dfb", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1EAAAIRCAYAAACrqjdyAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA+WklEQVR4nO3de1yX9f3/8edHEASEjwLCBxKU5mE6LBc2BVtqJeg8ZLqZWUyqUc3Un4mZ1pbY8rDK00035/w6dR7CrbJVLsRObqR4YJF5mOnSxAliih/UDBSu3x+7ed36iKe3CR+Bx/12+9xuXNf7dV3X633NHE+vw8dhWZYlAAAAAMBVaeTtBgAAAACgLiFEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABX2834E1VVVU6fPiwgoOD5XA4vN0OAAAAAC+xLEsnT55UdHS0GjW6/LWmBh2iDh8+rJiYGG+3AQAAAOAGUVhYqJYtW162pkGHqODgYEn/O1EhISFe7gYAAACAt5SVlSkmJsbOCJfToEPU+Vv4QkJCCFEAAAAAruoxH14sAQAAAAAGCFEAAAAAYIAQBQAAAAAGGvQzUVersrJSZ8+e9XYbwEX5+fld8TWcAAAAuH4IUZdhWZaKi4t14sQJb7cCXFKjRo0UFxcnPz8/b7cCAADQIBCiLuN8gIqIiFBgYCBfyIsbzvkvjC4qKlJsbCx/RgEAAGoBIeoSKisr7QAVFhbm7XaAS2rRooUOHz6sc+fOqXHjxt5uBwAAoN7jQYpLOP8MVGBgoJc7AS7v/G18lZWVXu4EAACgYSBEXQG3R+FGx59RAACA2kWIAgAAAAADhCh4xUcffSSHw1Fn3nyYlpamQYMGeeXYde1cAQAA1He8WOIatJ64ttaOdWBGv2varrCwUJmZmXr33Xf11VdfKSoqSoMGDdLzzz9f6y/K6Nmzpzp37qw5c+bY65KSklRUVCSn0ylJWrp0qcaOHUtQAAAAwA2PK1H10BdffKEuXbro888/16uvvqp9+/bpD3/4g95//30lJibq+PHj3m5Rfn5+crlcN9zzPDX1pcqWZencuXM1sm8AAADULkJUPfTkk0/Kz89POTk56tGjh2JjY9W3b1+99957+u9//6vnnntO0v9eSPDmm296bNusWTMtXbrUXn7mmWfUrl07BQYG6uabb9avf/1rj6CRmZmpzp07a/ny5WrdurWcTqeGDRumkydPSvrfbXAbNmzQ3Llz5XA45HA4dODAAY9b1D766CM9/PDDcrvddk1mZqZeeOEFderUqdr8EhIS9Pzzz1/xPFRVVemFF15Qy5Yt5e/vr86dOys7O9seP3DggBwOh/7yl7+oZ8+eatKkiVasWKHKykqNGzdOzZo1U1hYmCZMmCDLsjz2bVmWXnrpJd18880KCAjQrbfeqtdee80ePz+/devWqUuXLvL399c///nPK24nSX//+9/Vrl07BQQEqFevXjpw4MAV5woAAIDaQ4iqZ44fP65169Zp5MiRCggI8BhzuVx68MEHtXr16mqh4FKCg4O1dOlS7dq1S3PnztWiRYs0e/Zsj5r//Oc/evPNN/XOO+/onXfe0YYNGzRjxgxJ0ty5c5WYmKj09HQVFRWpqKhIMTExHtsnJSVpzpw5CgkJsWvGjx+vRx55RLt27dLWrVvt2u3bt+uTTz5RWlraFXufO3euZs6cqVdeeUXbt29XSkqKBg4cqL1793rUPfPMMxozZox2796tlJQUzZw5U3/605+0ePFi5ebm6vjx41qzZo3HNr/61a+0ZMkSLViwQDt37tRTTz2lhx56SBs2bPComzBhgqZPn67du3frlltuueJ2hYWFGjx4sH7yk5+ooKBAv/jFLzRx4sQrzhUAAAC1h2ei6pm9e/fKsix16NDhouMdOnRQaWmpjh49elX7+9WvfmX/3Lp1a2VkZGj16tWaMGGCvb6qqkpLly5VcHCwJCk1NVXvv/++pk6dKqfTKT8/PwUGBsrlcl30GH5+fnI6nXI4HB41TZs2VUpKipYsWaLbb79dkrRkyRL16NFDN9988xV7f+WVV/TMM89o2LBhkqTf/va3+vDDDzVnzhz97ne/s+vGjh2rwYMH28tz5szRpEmTNGTIEEnSH/7wB61bt84eP336tGbNmqUPPvhAiYmJkqSbb75Zubm5WrhwoXr06GHXvvDCC+rdu/dVb7dgwQLdfPPNmj17thwOh9q3b6/PPvtMv/3tb684XwAAANQOQlQDc/4K1PkvaL2S1157TXPmzNG+fft06tQpnTt3TiEhIR41rVu3tgOUJEVFRamkpOS69Juenq5HHnlEs2bNko+Pj1auXKmZM2decbuysjIdPnxY3bt391jfvXt3ffrppx7runTpYv/sdrtVVFRkhxxJ8vX1VZcuXexzt2vXLn3zzTd2ODqvoqJCP/zhDy+576vZbvfu3erWrZvHs2Lf7gUAAADeR4iqZ9q0aSOHw6Fdu3Zd9JXc//73v9WiRQs1a9ZMDoej2m19337eKS8vT8OGDdOUKVOUkpIip9OprKysaiGmcePGHssOh0NVVVXXZT4DBgyQv7+/1qxZI39/f5WXl9tXiK7GhS+usCyr2rqgoCCjns7Pbe3atbrppps8xvz9/S+576vZ7mpvswQAAID3EKLqmbCwMPXu3Vu///3v9dRTT3k8F1VcXKyVK1fqySeflCS1aNFCRUVF9vjevXv19ddf28sff/yxWrVqZb+IQpK+/PJL4578/PxUWVl5TTW+vr4aMWKElixZIn9/fw0bNkyBgYFXPGZISIiio6OVm5urO++8016/ceNG/ehHP7rkdk6nU1FRUcrLy7O3O3funPLz83XbbbdJkjp27Ch/f38dPHjQ49a9K7ma7Tp27FjtZR95eXlXfQwAAADUPEJUPTR//nwlJSUpJSVFL774ouLi4rRz5049/fTTateunf1mu7vuukvz589Xt27dVFVVpWeeecbjqlKbNm108OBBZWVl6fbbb9fatWurvWDharRu3VqbN2/WgQMH1LRpU4WGhl605tSpU3r//fd16623KjAw0A5Lv/jFL+xnvD7++OOrPu7TTz+tyZMn63vf+546d+6sJUuWqKCgQCtXrrzsdv/v//0/zZgxQ23btlWHDh00a9Ysj++vCg4O1vjx4/XUU0+pqqpKd9xxh8rKyrRx40Y1bdpUI0aMuOh+r2a7J554QjNnztS4ceP0+OOPKz8/3+NtiQAAADey2vw+1Yu51u9YNUWIuga19T/OtWrbtq22bt2qzMxMDR06VCUlJbIsS4MHD9by5cvtcDJz5kw9/PDDuvPOOxUdHa25c+cqPz/f3s+9996rp556SqNGjVJ5ebn69eunX//618rMzDTqZ/z48RoxYoQ6duyoM2fOaP/+/dVqkpKS9MQTT+j+++/XsWPHNHnyZPs4bdu2VVJSko4dO6auXbte9XHHjBmjsrIyZWRkqKSkRB07dtRbb72ltm3bXna7jIwMFRUVKS0tTY0aNdIjjzyi++67T2632675zW9+o4iICE2fPl1ffPGFmjVrpttuu03PPvvsZfd9pe1iY2P1+uuv66mnntLvf/97/ehHP9K0adP0yCOPXPW8AQAAULMcVgN+CKOsrExOp1Nut7vayxK++eYb7d+/X3FxcWrSpImXOrx+Jk+erFmzZiknJ6fOvajAsix9//vf1+OPP65x48Z5u50bTn37swoAAOquunwl6nLZ4EJciWogpkyZYt9W17VrVzVqVDe+IqykpETLly/Xf//7Xz388MPebgcAAAAgRDUkdTGEREZGKjw8XH/84x/VvHlzj7GmTZtecrt3331XP/7xj2u6PQAAADRAhCjc0C53t2lBQcElxy58hTgAAABwvRCiUGe1adPG2y0AAACgAaobD8Z4UQN+7wbqCP6MAgAA1C5C1CWc/76kb3/5LHAjqqiokCT5+Ph4uRMAAICGgdv5LsHHx0fNmjVTSUmJJCkwMFAOh8PLXQGeqqqqdPToUQUGBsrXl/+cAQAAagO/dV2Gy+WSJDtIATeiRo0aKTY2lpAPAABQSwhRl+FwOBQVFaWIiAidPXvW2+0AF+Xn51dnvvcLAACgPiBEXQUfHx+eNwEAAAAgiRdLAAAAAIARQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABoxA1ffp03X777QoODlZERIQGDRqkPXv2eNSkpaXJ4XB4fLp16+ZRU15ertGjRys8PFxBQUEaOHCgDh065FFTWlqq1NRUOZ1OOZ1Opaam6sSJEx41Bw8e1IABAxQUFKTw8HCNGTNGFRUVJlMCAAAAACNGIWrDhg168sknlZeXp/Xr1+vcuXNKTk7W6dOnPer69OmjoqIi+/P3v//dY3zs2LFas2aNsrKylJubq1OnTql///6qrKy0a4YPH66CggJlZ2crOztbBQUFSk1NtccrKyvVr18/nT59Wrm5ucrKytLrr7+ujIyMazkPAAAAAHBVfE2Ks7OzPZaXLFmiiIgI5efn684777TX+/v7y+VyXXQfbrdbixcv1vLly3XPPfdIklasWKGYmBi99957SklJ0e7du5Wdna28vDx17dpVkrRo0SIlJiZqz549at++vXJycrRr1y4VFhYqOjpakjRz5kylpaVp6tSpCgkJMZkaAAAAAFyV7/RMlNvtliSFhoZ6rP/oo48UERGhdu3aKT09XSUlJfZYfn6+zp49q+TkZHtddHS04uPjtXHjRknSpk2b5HQ67QAlSd26dZPT6fSoiY+PtwOUJKWkpKi8vFz5+fkX7be8vFxlZWUeHwAAAAAwcc0hyrIsjRs3TnfccYfi4+Pt9X379tXKlSv1wQcfaObMmdq6davuuusulZeXS5KKi4vl5+en5s2be+wvMjJSxcXFdk1ERES1Y0ZERHjUREZGeow3b95cfn5+ds2Fpk+fbj9j5XQ6FRMTc63TBwAAANBAGd3O922jRo3S9u3blZub67H+/vvvt3+Oj49Xly5d1KpVK61du1aDBw++5P4sy5LD4bCXv/3zd6n5tkmTJmncuHH2cllZGUEKAAAAgJFruhI1evRovfXWW/rwww/VsmXLy9ZGRUWpVatW2rt3ryTJ5XKpoqJCpaWlHnUlJSX2lSWXy6UjR45U29fRo0c9ai684lRaWqqzZ89Wu0J1nr+/v0JCQjw+AAAAAGDCKERZlqVRo0bpjTfe0AcffKC4uLgrbnPs2DEVFhYqKipKkpSQkKDGjRtr/fr1dk1RUZF27NihpKQkSVJiYqLcbre2bNli12zevFlut9ujZseOHSoqKrJrcnJy5O/vr4SEBJNpAQAAAMBVM7qd78knn9SqVav0t7/9TcHBwfaVIKfTqYCAAJ06dUqZmZkaMmSIoqKidODAAT377LMKDw/XfffdZ9c++uijysjIUFhYmEJDQzV+/Hh16tTJfltfhw4d1KdPH6Wnp2vhwoWSpMcee0z9+/dX+/btJUnJycnq2LGjUlNT9fLLL+v48eMaP3680tPTucIEAAAAoMYYXYlasGCB3G63evbsqaioKPuzevVqSZKPj48+++wz3XvvvWrXrp1GjBihdu3aadOmTQoODrb3M3v2bA0aNEhDhw5V9+7dFRgYqLfffls+Pj52zcqVK9WpUyclJycrOTlZt9xyi5YvX26P+/j4aO3atWrSpIm6d++uoUOHatCgQXrllVe+6zkBAAAAgEtyWJZlebsJbykrK5PT6ZTb7ebqFQAAAPAdtZ641qvHPzCj3zVva5INvtP3RAEAAABAQ0OIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMECIAgAAAAADvt5uAAAAAHVf64lrvd2CDszo5+0W0EBwJQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMCAr7cbAFD3tZ641qvHPzCjn1ePDwAAGhauRAEAAACAAUIUAAAAABggRAEAAACAAaMQNX36dN1+++0KDg5WRESEBg0apD179njUWJalzMxMRUdHKyAgQD179tTOnTs9asrLyzV69GiFh4crKChIAwcO1KFDhzxqSktLlZqaKqfTKafTqdTUVJ04ccKj5uDBgxowYICCgoIUHh6uMWPGqKKiwmRKAAAAAGDEKERt2LBBTz75pPLy8rR+/XqdO3dOycnJOn36tF3z0ksvadasWZo/f762bt0ql8ul3r176+TJk3bN2LFjtWbNGmVlZSk3N1enTp1S//79VVlZadcMHz5cBQUFys7OVnZ2tgoKCpSammqPV1ZWql+/fjp9+rRyc3OVlZWl119/XRkZGd/lfAAAAADAZRm9nS87O9tjecmSJYqIiFB+fr7uvPNOWZalOXPm6LnnntPgwYMlScuWLVNkZKRWrVqlxx9/XG63W4sXL9by5ct1zz33SJJWrFihmJgYvffee0pJSdHu3buVnZ2tvLw8de3aVZK0aNEiJSYmas+ePWrfvr1ycnK0a9cuFRYWKjo6WpI0c+ZMpaWlaerUqQoJCfnOJwcAAAAALvSdnolyu92SpNDQUEnS/v37VVxcrOTkZLvG399fPXr00MaNGyVJ+fn5Onv2rEdNdHS04uPj7ZpNmzbJ6XTaAUqSunXrJqfT6VETHx9vByhJSklJUXl5ufLz87/LtAAAAADgkq75e6Isy9K4ceN0xx13KD4+XpJUXFwsSYqMjPSojYyM1JdffmnX+Pn5qXnz5tVqzm9fXFysiIiIaseMiIjwqLnwOM2bN5efn59dc6Hy8nKVl5fby2VlZVc9XwAAAACQvsOVqFGjRmn79u169dVXq405HA6PZcuyqq270IU1F6u/lppvmz59uv2iCqfTqZiYmMv2BAAAAAAXuqYQNXr0aL311lv68MMP1bJlS3u9y+WSpGpXgkpKSuyrRi6XSxUVFSotLb1szZEjR6od9+jRox41Fx6ntLRUZ8+erXaF6rxJkybJ7Xbbn8LCQpNpAwAAAIBZiLIsS6NGjdIbb7yhDz74QHFxcR7jcXFxcrlcWr9+vb2uoqJCGzZsUFJSkiQpISFBjRs39qgpKirSjh077JrExES53W5t2bLFrtm8ebPcbrdHzY4dO1RUVGTX5OTkyN/fXwkJCRft39/fXyEhIR4fAAAAADBh9EzUk08+qVWrVulvf/ubgoOD7StBTqdTAQEBcjgcGjt2rKZNm6a2bduqbdu2mjZtmgIDAzV8+HC79tFHH1VGRobCwsIUGhqq8ePHq1OnTvbb+jp06KA+ffooPT1dCxculCQ99thj6t+/v9q3by9JSk5OVseOHZWamqqXX35Zx48f1/jx45Wenk44AgAAQK1rPXGtV49/YEY/rx6/ITEKUQsWLJAk9ezZ02P9kiVLlJaWJkmaMGGCzpw5o5EjR6q0tFRdu3ZVTk6OgoOD7frZs2fL19dXQ4cO1ZkzZ3T33Xdr6dKl8vHxsWtWrlypMWPG2G/xGzhwoObPn2+P+/j4aO3atRo5cqS6d++ugIAADR8+XK+88orRCQAAAAAAE0YhyrKsK9Y4HA5lZmYqMzPzkjVNmjTRvHnzNG/evEvWhIaGasWKFZc9VmxsrN55550r9gQAAAAA18t3+p4oAAAAAGhoCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGfL3dAADUB60nrvXq8Q/M6OfV4wMA0JBwJQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAAAAADPh6uwGgrms9ca23W9CBGf283QIAAECDwZUoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADDg6+0GAACoD1pPXOvV4x+Y0c+rxweAhoQrUQAAAABggBAFAAAAAAYIUQAAAABggBAFAAAAAAYIUQAAAABggBAFAAAAAAYIUQAAAABggBAFAAAAAAYIUQAAAABggBAFAAAAAAYIUQAAAABgwDhE/eMf/9CAAQMUHR0th8OhN99802M8LS1NDofD49OtWzePmvLyco0ePVrh4eEKCgrSwIEDdejQIY+a0tJSpaamyul0yul0KjU1VSdOnPCoOXjwoAYMGKCgoCCFh4drzJgxqqioMJ0SAAAAAFw1X9MNTp8+rVtvvVUPP/ywhgwZctGaPn36aMmSJfayn5+fx/jYsWP19ttvKysrS2FhYcrIyFD//v2Vn58vHx8fSdLw4cN16NAhZWdnS5Iee+wxpaam6u2335YkVVZWql+/fmrRooVyc3N17NgxjRgxQpZlad68eabTAgB8B60nrvXq8Q/M6OfV4wMAGhbjENW3b1/17dv3sjX+/v5yuVwXHXO73Vq8eLGWL1+ue+65R5K0YsUKxcTE6L333lNKSop2796t7Oxs5eXlqWvXrpKkRYsWKTExUXv27FH79u2Vk5OjXbt2qbCwUNHR0ZKkmTNnKi0tTVOnTlVISIjp1AAAAADgimrkmaiPPvpIERERateundLT01VSUmKP5efn6+zZs0pOTrbXRUdHKz4+Xhs3bpQkbdq0SU6n0w5QktStWzc5nU6Pmvj4eDtASVJKSorKy8uVn59fE9MCAAAAAPMrUVfSt29f/exnP1OrVq20f/9+/frXv9Zdd92l/Px8+fv7q7i4WH5+fmrevLnHdpGRkSouLpYkFRcXKyIiotq+IyIiPGoiIyM9xps3by4/Pz+75kLl5eUqLy+3l8vKyr7TXAEAAAA0PNc9RN1///32z/Hx8erSpYtatWqltWvXavDgwZfczrIsORwOe/nbP3+Xmm+bPn26pkyZclXzAAAAAICLqfFXnEdFRalVq1bau3evJMnlcqmiokKlpaUedSUlJfaVJZfLpSNHjlTb19GjRz1qLrziVFpaqrNnz1a7QnXepEmT5Ha77U9hYeF3nh8AAACAhqXGQ9SxY8dUWFioqKgoSVJCQoIaN26s9evX2zVFRUXasWOHkpKSJEmJiYlyu93asmWLXbN582a53W6Pmh07dqioqMiuycnJkb+/vxISEi7ai7+/v0JCQjw+AAAAAGDC+Ha+U6dOad++ffby/v37VVBQoNDQUIWGhiozM1NDhgxRVFSUDhw4oGeffVbh4eG67777JElOp1OPPvqoMjIyFBYWptDQUI0fP16dOnWy39bXoUMH9enTR+np6Vq4cKGk/73ivH///mrfvr0kKTk5WR07dlRqaqpefvllHT9+XOPHj1d6ejrhCAAAAECNMQ5R27ZtU69evezlcePGSZJGjBihBQsW6LPPPtOf//xnnThxQlFRUerVq5dWr16t4OBge5vZs2fL19dXQ4cO1ZkzZ3T33Xdr6dKl9ndESdLKlSs1ZswY+y1+AwcO1Pz58+1xHx8frV27ViNHjlT37t0VEBCg4cOH65VXXjE/CwAAAABwlYxDVM+ePWVZ1iXH161bd8V9NGnSRPPmzbvsl+KGhoZqxYoVl91PbGys3nnnnSseDwAAAACulxp/JgoAAAAA6hNCFAAAAAAYIEQBAAAAgAFCFAAAAAAYIEQBAAAAgAFCFAAAAAAYIEQBAAAAgAFCFAAAAAAYIEQBAAAAgAFCFAAAAAAYIEQBAAAAgAFCFAAAAAAYIEQBAAAAgAFCFAAAAAAYIEQBAAAAgAFCFAAAAAAYIEQBAAAAgAFCFAAAAAAY8PV2A6j7Wk9c69XjH5jRz6vHBwAAQMNCiAIAAN+Zt/9BTeIf1QDUHm7nAwAAAAADhCgAAAAAMECIAgAAAAADhCgAAAAAMMCLJQAAAK4Db79cgxdrALWHK1EAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYIAQBQAAAAAGCFEAAAAAYMDX2w3Uda0nrvV2Czowo5+3WwAAAAAaDK5EAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIAB4xD1j3/8QwMGDFB0dLQcDofefPNNj3HLspSZmano6GgFBASoZ8+e2rlzp0dNeXm5Ro8erfDwcAUFBWngwIE6dOiQR01paalSU1PldDrldDqVmpqqEydOeNQcPHhQAwYMUFBQkMLDwzVmzBhVVFSYTgkAAAAArppxiDp9+rRuvfVWzZ8//6LjL730kmbNmqX58+dr69atcrlc6t27t06ePGnXjB07VmvWrFFWVpZyc3N16tQp9e/fX5WVlXbN8OHDVVBQoOzsbGVnZ6ugoECpqan2eGVlpfr166fTp08rNzdXWVlZev3115WRkWE6JQAAAAC4ar6mG/Tt21d9+/a96JhlWZozZ46ee+45DR48WJK0bNkyRUZGatWqVXr88cfldru1ePFiLV++XPfcc48kacWKFYqJidF7772nlJQU7d69W9nZ2crLy1PXrl0lSYsWLVJiYqL27Nmj9u3bKycnR7t27VJhYaGio6MlSTNnzlRaWpqmTp2qkJCQazohAAAAAHA51/WZqP3796u4uFjJycn2On9/f/Xo0UMbN26UJOXn5+vs2bMeNdHR0YqPj7drNm3aJKfTaQcoSerWrZucTqdHTXx8vB2gJCklJUXl5eXKz8+/aH/l5eUqKyvz+AAAAACAiesaooqLiyVJkZGRHusjIyPtseLiYvn5+al58+aXrYmIiKi2/4iICI+aC4/TvHlz+fn52TUXmj59uv2MldPpVExMzDXMEgAAAEBDViNv53M4HB7LlmVVW3ehC2suVn8tNd82adIkud1u+1NYWHjZngAAAADgQtc1RLlcLkmqdiWopKTEvmrkcrlUUVGh0tLSy9YcOXKk2v6PHj3qUXPhcUpLS3X27NlqV6jO8/f3V0hIiMcHAAAAAExc1xAVFxcnl8ul9evX2+sqKiq0YcMGJSUlSZISEhLUuHFjj5qioiLt2LHDrklMTJTb7daWLVvsms2bN8vtdnvU7NixQ0VFRXZNTk6O/P39lZCQcD2nBQAAAAA247fznTp1Svv27bOX9+/fr4KCAoWGhio2NlZjx47VtGnT1LZtW7Vt21bTpk1TYGCghg8fLklyOp169NFHlZGRobCwMIWGhmr8+PHq1KmT/ba+Dh06qE+fPkpPT9fChQslSY899pj69++v9u3bS5KSk5PVsWNHpaam6uWXX9bx48c1fvx4paenc4UJAAAAQI0xDlHbtm1Tr1697OVx48ZJkkaMGKGlS5dqwoQJOnPmjEaOHKnS0lJ17dpVOTk5Cg4OtreZPXu2fH19NXToUJ05c0Z33323li5dKh8fH7tm5cqVGjNmjP0Wv4EDB3p8N5WPj4/Wrl2rkSNHqnv37goICNDw4cP1yiuvmJ8FAAAAALhKxiGqZ8+esizrkuMOh0OZmZnKzMy8ZE2TJk00b948zZs375I1oaGhWrFixWV7iY2N1TvvvHPFngEAAADgeqmRt/MBAAAAQH1FiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBAiAIAAAAAA4QoAAAAADBw3UNUZmamHA6Hx8flctnjlmUpMzNT0dHRCggIUM+ePbVz506PfZSXl2v06NEKDw9XUFCQBg4cqEOHDnnUlJaWKjU1VU6nU06nU6mpqTpx4sT1ng4AAAAAeKiRK1E/+MEPVFRUZH8+++wze+yll17SrFmzNH/+fG3dulUul0u9e/fWyZMn7ZqxY8dqzZo1ysrKUm5urk6dOqX+/fursrLSrhk+fLgKCgqUnZ2t7OxsFRQUKDU1tSamAwAAAAA23xrZqa+vx9Wn8yzL0pw5c/Tcc89p8ODBkqRly5YpMjJSq1at0uOPPy63263Fixdr+fLluueeeyRJK1asUExMjN577z2lpKRo9+7dys7OVl5enrp27SpJWrRokRITE7Vnzx61b9++JqYFAAAAADVzJWrv3r2Kjo5WXFychg0bpi+++EKStH//fhUXFys5Odmu9ff3V48ePbRx40ZJUn5+vs6ePetREx0drfj4eLtm06ZNcjqddoCSpG7dusnpdNo1AAAAAFATrvuVqK5du+rPf/6z2rVrpyNHjujFF19UUlKSdu7cqeLiYklSZGSkxzaRkZH68ssvJUnFxcXy8/NT8+bNq9Wc3764uFgRERHVjh0REWHXXEx5ebnKy8vt5bKysmubJAAAAIAG67qHqL59+9o/d+rUSYmJifre976nZcuWqVu3bpIkh8PhsY1lWdXWXejCmovVX2k/06dP15QpU65qHgAAAABwMTX+ivOgoCB16tRJe/futZ+TuvBqUUlJiX11yuVyqaKiQqWlpZetOXLkSLVjHT16tNpVrm+bNGmS3G63/SksLPxOcwMAAADQ8NR4iCovL9fu3bsVFRWluLg4uVwurV+/3h6vqKjQhg0blJSUJElKSEhQ48aNPWqKioq0Y8cOuyYxMVFut1tbtmyxazZv3iy3223XXIy/v79CQkI8PgAAAABg4rrfzjd+/HgNGDBAsbGxKikp0YsvvqiysjKNGDFCDodDY8eO1bRp09S2bVu1bdtW06ZNU2BgoIYPHy5JcjqdevTRR5WRkaGwsDCFhoZq/Pjx6tSpk/22vg4dOqhPnz5KT0/XwoULJUmPPfaY+vfvz5v5AAAAANSo6x6iDh06pAceeEBfffWVWrRooW7duikvL0+tWrWSJE2YMEFnzpzRyJEjVVpaqq5duyonJ0fBwcH2PmbPni1fX18NHTpUZ86c0d13362lS5fKx8fHrlm5cqXGjBljv8Vv4MCBmj9//vWeDgAAAAB4uO4hKisr67LjDodDmZmZyszMvGRNkyZNNG/ePM2bN++SNaGhoVqxYsW1tgkAAAAA16TGn4kCAAAAgPqEEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABghRAAAAAGCAEAUAAAAABup8iPr973+vuLg4NWnSRAkJCfrnP//p7ZYAAAAA1GN1OkStXr1aY8eO1XPPPadPPvlEP/7xj9W3b18dPHjQ260BAAAAqKfqdIiaNWuWHn30Uf3iF79Qhw4dNGfOHMXExGjBggXebg0AAABAPeXr7QauVUVFhfLz8zVx4kSP9cnJydq4ceNFtykvL1d5ebm97Ha7JUllZWXX3EdV+dfXvO318l36vx68fQ4a+vwlzoG35y9xDhr6/CXOgbfnL3EOGvr8Jc6Bt+cv1e1zcH5by7KuWOuwrqbqBnT48GHddNNN+vjjj5WUlGSvnzZtmpYtW6Y9e/ZU2yYzM1NTpkypzTYBAAAA1CGFhYVq2bLlZWvq7JWo8xwOh8eyZVnV1p03adIkjRs3zl6uqqrS8ePHFRYWdsltalJZWZliYmJUWFiokJCQWj/+jYBzwDlo6POXOAcNff4S56Chz1/iHEicg4Y+f8n758CyLJ08eVLR0dFXrK2zISo8PFw+Pj4qLi72WF9SUqLIyMiLbuPv7y9/f3+Pdc2aNaupFq9aSEhIg/2P5TzOAeegoc9f4hw09PlLnIOGPn+JcyBxDhr6/CXvngOn03lVdXX2xRJ+fn5KSEjQ+vXrPdavX7/e4/Y+AAAAALie6uyVKEkaN26cUlNT1aVLFyUmJuqPf/yjDh48qCeeeMLbrQEAAACop+p0iLr//vt17NgxvfDCCyoqKlJ8fLz+/ve/q1WrVt5u7ar4+/tr8uTJ1W4xbEg4B5yDhj5/iXPQ0OcvcQ4a+vwlzoHEOWjo85fq1jmos2/nAwAAAABvqLPPRAEAAACANxCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQqA1/F+GwAAUJfU6VecA6gf/P399emnn6pDhw7ebgUAakVRUZEWLFig3NxcFRUVycfHR3FxcRo0aJDS0tLk4+Pj7RYBXAavOL+BFBYWavLkyfrTn/7k7VZqzJkzZ5Sfn6/Q0FB17NjRY+ybb77RX/7yF/385z/3Une1Y/fu3crLy1NiYqK+//3v69///rfmzp2r8vJyPfTQQ7rrrru83WKNGTdu3EXXz507Vw899JDCwsIkSbNmzarNtryqtLRUy5Yt0969exUVFaURI0YoJibG223VmE8++UTNmjVTXFycJGnFihVasGCBDh48qFatWmnUqFEaNmyYl7usWaNHj9bQoUP14x//2NuteM28efO0bds29evXT0OHDtXy5cs1ffp0VVVVafDgwXrhhRfk61t//51327ZtuueeexQXF6eAgABt3rxZDz74oCoqKrRu3Tp16NBB69atU3BwsLdbrVGnT5/WqlWrtHHjRhUXF8vhcCgyMlLdu3fXAw88oKCgIG+36FVHjhzRwoUL9fzzz3u7lRp16NAhNWvWTE2bNvVYf/bsWW3atEl33nmnlzq7Ags3jIKCAqtRo0bebqPG7Nmzx2rVqpXlcDisRo0aWT169LAOHz5sjxcXF9fr+VuWZb377ruWn5+fFRoaajVp0sR69913rRYtWlj33HOPdffdd1u+vr7W+++/7+02a4zD4bA6d+5s9ezZ0+PjcDis22+/3erZs6fVq1cvb7dZo6KioqyvvvrKsizL+uKLLyyXy2W5XC6rd+/eVsuWLS2n02nt3r3by13WnB/+8IfWBx98YFmWZS1atMgKCAiwxowZYy1YsMAaO3as1bRpU2vx4sVe7rJmnf87sG3bttaMGTOsoqIib7dUq1544QUrODjYGjJkiOVyuawZM2ZYYWFh1osvvmhNmzbNatGihfX88897u80a1b17dyszM9NeXr58udW1a1fLsizr+PHjVufOna0xY8Z4q71asXPnTis6Otpq1qyZde+991qPPfaYlZ6ebt17771Ws2bNrJtuusnauXOnt9v0qvr+e+Hhw4et22+/3WrUqJHl4+Nj/fznP7dOnjxpj9/ovxdyJaoWvfXWW5cd/+KLL5SRkaHKyspa6qh23XfffTp37pyWLFmiEydOaNy4cdqxY4c++ugjxcbG6siRI4qOjq6385ekpKQk3XXXXXrxxReVlZWlkSNH6pe//KWmTp0qSXruuee0detW5eTkeLnTmjF9+nQtWrRI//d//+dxxa1x48b69NNPq12drI8aNWqk4uJiRURE6IEHHlBxcbHWrl2rwMBAlZeX66c//amaNGmiv/71r95utUYEBQVp9+7dio2N1W233aYnnnhCjz32mD2+atUqTZ06VTt37vRilzWrUaNGWr9+vd5++22tXLlSbrdbffv2VXp6un7yk5+oUaP6/bjy9773Pb388ssaPHiwPv30UyUkJGjZsmV68MEHJUlr1qzRhAkTtHfvXi93WnMCAwO1Y8cO3XzzzZKkqqoqNWnSRIWFhYqMjNT69euVlpam//73v17utOb06tVLLpdLy5Ytk5+fn8dYRUWF0tLSVFRUpA8//NBLHda87du3X3b83//+tx544IF6+3vRiBEj9Pnnn2vevHk6ceKEJk2aJMuytH79ejVv3lxHjhxRVFSUqqqqvN3qxXk5xDUo5//10eFwXPJzIyfu7yoiIsLavn27x7qRI0dasbGx1n/+858b/l8croeQkBBr7969lmVZVmVlpeXr62vl5+fb45999pkVGRnprfZqxZYtW6x27dpZGRkZVkVFhWVZluXr69tg/sXR4XBYR44csSzLsuLi4qpdeczLy7NatmzpjdZqRVhYmLVt2zbLsv73d0JBQYHH+L59+6yAgABvtFZrvv1noKKiwlq9erWVkpJi+fj4WNHR0dazzz5r/z1RHwUEBFhffvmlvdy4cWNrx44d9vKBAweswMBAb7RWa1q1amXl5ubay4cPH7YcDof19ddfW5ZlWfv377eaNGnirfZqRUBAwGX/3v/ss88axN8Fl/q98Pz6+vx7UXR0tLV582Z7+ZtvvrHuvfdeq3PnztaxY8du+N8L6/c/d91goqKi9Prrr6uqquqin3/961/ebrFGnTlzpto97r/73e80cOBA9ejRQ59//rmXOvOORo0aqUmTJmrWrJm9Ljg4WG6323tN1YLbb79d+fn5Onr0qBISEvTZZ5/J4XB4u61adX6+5eXlioyM9BiLjIzU0aNHvdFWrejbt68WLFggSerRo4dee+01j/G//OUvatOmjTda84rGjRtr6NChys7O1hdffKH09HStXLlS7du393ZrNcblcmnXrl2SpL1796qystJelqSdO3cqIiLCW+3VikGDBumJJ55Qdna2PvzwQz344IPq0aOHAgICJEl79uzRTTfd5OUua1bz5s0ve7Vx3759at68eS12VPvCwsK0aNEi7d+/v9rniy++0DvvvOPtFmuU2+32+N/Y399fr732mlq3bq1evXqppKTEi91dWf19avMGlJCQoH/9618aNGjQRccdDke9ftXz97//fW3btq3aG9jmzZsny7I0cOBAL3VWe1q3bq19+/bZvyRu2rRJsbGx9nhhYaGioqK81V6tadq0qZYtW6asrCz17t273t6qcCl33323fH19VVZWps8//1w/+MEP7LGDBw8qPDzci93VrN/+9rfq3r27evTooS5dumjmzJn66KOP1KFDB+3Zs0d5eXlas2aNt9v0itjYWGVmZmry5Ml67733vN1OjRk+fLh+/vOf695779X777+vZ555RuPHj9exY8fkcDg0depU/fSnP/V2mzXqxRdfVFFRkQYMGKDKykolJiZqxYoV9rjD4dD06dO92GHNS09P14gRI/SrX/1KvXv3VmRkpBwOh4qLi7V+/XpNmzZNY8eO9XabNSohIUGHDx9Wq1atLjp+4sSJev174c0336zt27erbdu29jpfX1/99a9/1c9+9jP179/fi91dGSGqFj399NM6ffr0JcfbtGlTr+/9ve+++/Tqq68qNTW12tj8+fNVVVWlP/zhD17orPb88pe/9AgM8fHxHuPvvvtuvX4734WGDRumO+64Q/n5+Zf8P5H6ZvLkyR7LgYGBHstvv/12vX5rW3R0tD755BPNmDFDb7/9tizL0pYtW1RYWKju3bvr448/VpcuXbzdZo1q1arVZV9f7XA41Lt371rsqHZNmTJFAQEBysvL0+OPP65nnnlGt9xyiyZMmKCvv/5aAwYM0G9+8xtvt1mjmjZtqtWrV+ubb77RuXPnqr2VLDk52Uud1Z7MzEwFBARo1qxZmjBhgn2F3rIsuVwuTZw4URMmTPBylzXr8ccfv+zvhbGxsVqyZEktdlS7+vbtqz/+8Y8aMmSIx/rzQWrIkCEqLCz0UndXxoslAAAA4DX79+9XcXGxpP/d7nn+KxBQv507d05ff/21QkJCLjpeWVmpQ4cO3bD/yMozUQAAAPCauLg4JSYmKjEx0Q5QhYWFeuSRR7zcmXfV93Pg6+t7yQAlSYcPH9aUKVNqsSMzXIkCAADADeXTTz/Vbbfd1uCemf22hn4ObvT580wUAAAAatXVfHdmfdfQz0Fdnz9XogAAAFCrGjVqdMW3Ejscjhv2KsT10NDPQV2fP89EAQAAoFY19O/OlDgHdX3+hCgAAADUqvPfnXkp9f27MyXOQV2fP89EAQAAoFY19O/OlDgHdX3+PBMFAAAAAAa4nQ8AAAAADBCiAAAAAMAAIQoAAAAADBCiAAAAAMAAIQoAgGvkcDj05ptversNAEAtI0QBAOqctLQ0ORwOPfHEE9XGRo4cKYfDobS0tOt2vMzMTHXu3Pm67Q8AULcRogAAdVJMTIyysrJ05swZe90333yjV199VbGxsV7sDABQ3xGiAAB10m233abY2Fi98cYb9ro33nhDMTEx+uEPf2ivKy8v15gxYxQREaEmTZrojjvu0NatW+3xjz76SA6HQ++//766dOmiwMBAJSUlac+ePZKkpUuXasqUKfr000/lcDjkcDi0dOlSe/uvvvpK9913nwIDA9W2bVu99dZbNT95AIBXEaIAAHXWww8/rCVLltjLf/rTn/TII4941EyYMEGvv/66li1bpn/9619q06aNUlJSdPz4cY+65557TjNnztS2bdvk6+tr7+f+++9XRkaGfvCDH6ioqEhFRUW6//777e2mTJmioUOHavv27frJT36iBx98sNq+AQD1CyEKAFBnpaamKjc3VwcOHNCXX36pjz/+WA899JA9fvr0aS1YsEAvv/yy+vbtq44dO2rRokUKCAjQ4sWLPfY1depU9ejRQx07dtTEiRO1ceNGffPNNwoICFDTpk3l6+srl8sll8ulgIAAe7u0tDQ98MADatOmjaZNm6bTp09ry5YttXYOAAC1z9fbDQAAcK3Cw8PVr18/LVu2TJZlqV+/fgoPD7fH//Of/+js2bPq3r27va5x48b60Y9+pN27d3vs65ZbbrF/joqKkiSVlJRc8fmqb28XFBSk4OBglZSUfKd5AQBubIQoAECd9sgjj2jUqFGSpN/97nceY5ZlSfrfq8gvXH/husaNG9s/nx+rqqq64vG/vd35ba9mOwBA3cXtfACAOq1Pnz6qqKhQRUWFUlJSPMbatGkjPz8/5ebm2uvOnj2rbdu2qUOHDld9DD8/P1VWVl63ngEAdRtXogAAdZqPj499a56Pj4/HWFBQkH75y1/q6aefVmhoqGJjY/XSSy/p66+/1qOPPnrVx2jdurX279+vgoICtWzZUsHBwfL397+u8wAA1B2EKABAnRcSEnLJsRkzZqiqqkqpqak6efKkunTponXr1ql58+ZXvf8hQ4bojTfeUK9evXTixAktWbLkun6ZLwCgbnFY528YBwAAAABcEc9EAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGCBEAQAAAIABQhQAAAAAGPj/0LpZlEMZ2gEAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sales.groupby('Month')[['Quantity_ordered']].sum().plot(kind='bar',figsize=(10,6))\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "b864177f", + "metadata": {}, + "source": [ + "In `December` we have the highest sales" + ] + }, + { + "cell_type": "markdown", + "id": "40bdf5a3", + "metadata": {}, + "source": [ + "# What city sold the most product?\n" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "7bab0d2e", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAy0AAAKZCAYAAAC1PMTRAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB1I0lEQVR4nO3deXQN9+P/8deNEEsWa0qIxE7sSmup2inaUtRWStHSql1Ltahaqy2KolViae1r+9FStcRWtYutRSxRovZEgiCZ3x9+7rdpEnVDMnPd5+Oce47MzM19GZI7rzsz77fNMAxDAAAAAGBRbmYHAAAAAIAHobQAAAAAsDRKCwAAAABLo7QAAAAAsDRKCwAAAABLo7QAAAAAsDRKCwAAAABLo7QAAAAAsDRKCwAAAABLo7QAAAAAsDTTSsumTZv00ksvyc/PTzabTStWrHD4exiGoc8//1xFixaVh4eH/P39NWrUqMcfFgAAAIBp3M164ZiYGJUtW1ZvvPGGmjdvnqLv0atXL/3yyy/6/PPPVbp0aUVGRurSpUuPOSkAAAAAM9kMwzBMD2Gzafny5WratKl92e3bt/XRRx/p+++/17Vr11SqVCl9+umnqlmzpiTpyJEjKlOmjA4ePKhixYqZExwAAABAqrPsPS1vvPGGtm7dqgULFig0NFSvvvqqXnjhBR07dkyS9OOPP6pgwYL63//+pwIFCigwMFBdunTRlStXTE4OAAAA4HGyZGkJCwvT/PnztXjxYlWvXl2FChVS//799dxzzyk4OFiSdOLECZ0+fVqLFy/WnDlzNGvWLO3evVstWrQwOT0AAACAx8m0e1oeZM+ePTIMQ0WLFk2wPDY2Vjly5JAkxcfHKzY2VnPmzLFvN2PGDD399NP6888/uWQMAAAAeEJYsrTEx8crXbp02r17t9KlS5dgnaenpyQpT548cnd3T1BsSpQoIUkKDw+ntAAAAABPCEuWlvLlyysuLk4XLlxQ9erVk9ymWrVqunv3rsLCwlSoUCFJ0tGjRyVJAQEBaZYVAAAAQOoybfSw6OhoHT9+XNK9kjJu3DjVqlVL2bNnV/78+dWuXTtt3bpVX3zxhcqXL69Lly5p/fr1Kl26tBo1aqT4+HhVqlRJnp6emjBhguLj49W9e3d5e3vrl19+MeOvBAAAACAVmFZaNm7cqFq1aiVa3qFDB82aNUt37tzRiBEjNGfOHJ09e1Y5cuRQlSpVNGzYMJUuXVqSdO7cOfXo0UO//PKLsmTJooYNG+qLL75Q9uzZ0/qvAwAAACCVWGKeFgAAAABIjiWHPAYAAACA+ygtAAAAACwtzUcPi4+P17lz5+Tl5SWbzZbWLw8AAADAIgzD0PXr1+Xn5yc3t+TPp6R5aTl37pz8/f3T+mUBAAAAWNSZM2eUL1++ZNeneWnx8vKSdC+Yt7d3Wr88AAAAAIuIioqSv7+/vSMkJ81Ly/1Lwry9vSktAAAAAP7zthFuxAcAAABgaZQWAAAAAJZGaQEAAABgaWl+TwsAAAAgSXFxcbpz547ZMZCK0qdPr3Tp0j3y96G0AAAAIE0ZhqHz58/r2rVrZkdBGsiaNaty5879SHM0UloAAACQpu4XFl9fX2XOnJkJx59QhmHoxo0bunDhgiQpT548Kf5elBYAAACkmbi4OHthyZEjh9lxkMoyZcokSbpw4YJ8fX1TfKkYN+IDAAAgzdy/hyVz5swmJ0Fauf9v/Sj3L1FaAAAAkOa4JMx1PI5/a0oLAAAAAEujtAAAAACppGbNmurdu7fZMR4bm82mFStWpPnrciM+AAAALCFw4Ko0e61TYxo7/JyOHTtq9uzZkiR3d3f5+/urWbNmGjZsmLJkyZLkc5YtW6b06dM/UlZQWgAAAICH9sILLyg4OFh37tzR5s2b1aVLF8XExGjq1KkJtrtz547Sp0+v7Nmzm5T0ycLlYQAAAMBD8vDwUO7cueXv76+2bdvqtdde04oVK/Txxx+rXLlymjlzpgoWLCgPDw8ZhpHo8rDY2Fi9//778vf3l4eHh4oUKaIZM2bY1x8+fFiNGjWSp6ennnrqKbVv316XLl16qGyGYWjs2LEqWLCgMmXKpLJly2rJkiX29XFxcercubMKFCigTJkyqVixYvryyy8TfZ+ZM2eqZMmS8vDwUJ48efTuu+8mWH/p0iW98sorypw5s4oUKaIffvjBwb3oOEoLAAAAkEKZMmWyD+V7/PhxLVq0SEuXLtW+ffuS3P7111/XggULNHHiRB05ckTTpk2Tp6enJCkiIkI1atRQuXLltGvXLq1evVp///23WrZs+VBZPvroIwUHB2vq1Kk6dOiQ+vTpo3bt2ikkJESSFB8fr3z58mnRokU6fPiwhgwZokGDBmnRokX27zF16lR1795db731lg4cOKAffvhBhQsXTvA6w4YNU8uWLRUaGqpGjRrptdde05UrVxzddQ7h8jAAAAAgBXbs2KF58+apTp06kqTbt29r7ty5ypUrV5LbHz16VIsWLdLatWtVt25dSVLBggXt66dOnaoKFSpo1KhR9mUzZ86Uv7+/jh49qqJFiyabJSYmRuPGjdP69etVpUoV+/fesmWLvv76a9WoUUPp06fXsGHD7M8pUKCAtm3bpkWLFtmL0YgRI9SvXz/16tXLvl2lSpUSvFbHjh3Vpk0bSdKoUaM0adIk7dixQy+88MJ/77QUorQAAAAAD+l///ufPD09dffuXd25c0dNmjTRpEmTNGXKFAUEBCRbWCRp3759SpcunWrUqJHk+t27d2vDhg32My//FBYW9sDScvjwYd26dUv16tVLsPz27dsqX768/etp06bp22+/1enTp3Xz5k3dvn1b5cqVk3Rv1vpz587ZS1hyypQpY/9zlixZ5OXlpQsXLjzwOY+K0gIAAAA8pFq1amnq1KlKnz69/Pz8EowMltwIYvdlypTpgevj4+P10ksv6dNPP020Lk+ePP/5XElatWqV8ubNm2Cdh4eHJGnRokXq06ePvvjiC1WpUkVeXl767LPP9Pvvvz9Uvvv+PRqazWazv35qobQAAAAADylLliyJ7vF4WKVLl1Z8fLxCQkLsl4f9U4UKFbR06VIFBgbK3d2xw/SgoCB5eHgoPDw82TM5mzdvVtWqVfXOO+/Yl4WFhdn/7OXlpcDAQK1bt061atVy6PVTG6XFBaXlGOiOSsmY6QAAAM4gMDBQHTp0UKdOnTRx4kSVLVtWp0+f1oULF9SyZUt1795d06dPV5s2bfTee+8pZ86cOn78uBYsWKDp06crXbp0yX5vLy8v9e/fX3369FF8fLyee+45RUVFadu2bfL09FSHDh1UuHBhzZkzR2vWrFGBAgU0d+5c7dy5UwUKFLB/n48//ljdunWTr6+vGjZsqOvXr2vr1q3q0aNHWuyiZDF6GAAAAJBGpk6dqhYtWuidd95R8eLF9eabbyomJkaS5Ofnp61btyouLk4NGjRQqVKl1KtXL/n4+MjN7b8P24cPH64hQ4Zo9OjRKlGihBo0aKAff/zRXkq6deumZs2aqVWrVnr22Wd1+fLlBGddJKlDhw6aMGGCpkyZopIlS+rFF1/UsWPHHv+OcJDNMAwjLV8wKipKPj4+ioyMlLe3d1q+NP4/zrQAAACz3Lp1SydPnlSBAgWUMWNGs+MgDTzo3/xhuwFnWgAAAABYGqUFAAAAsLjw8HB5enom+wgPDzc7YqriRnwAAADA4vz8/LRv374Hrn+SUVoAAAAAi3N3d0/xUMtPAocuD7t7964++ugjFShQQJkyZVLBggX1ySefpPpkMgAAAABcl0NnWj799FNNmzZNs2fPVsmSJbVr1y698cYb8vHxUa9evVIrIwAAAJ4wfOjtOh7Hv7VDpeW3335TkyZN1LjxvWFpAwMDNX/+fO3ateuRgwAAAODJlyFDBrm5uencuXPKlSuXMmTIIJvNZnYspALDMHT79m1dvHhRbm5uypAhQ4q/l0Ol5bnnntO0adN09OhRFS1aVPv379eWLVs0YcKEZJ8TGxur2NhY+9dRUVEpDgsAAADn5ubmpgIFCigiIkLnzp0zOw7SQObMmZU/f/6HmiAzOQ6VlgEDBigyMlLFixdXunTpFBcXp5EjR6pNmzbJPmf06NEaNmxYigMCAADgyZIhQwblz59fd+/eVVxcnNlxkIrSpUsnd3f3Rz6b5lBpWbhwob777jvNmzdPJUuW1L59+9S7d2/5+fmpQ4cOST7ngw8+UN++fe1fR0VFyd/f/5FCAwAAwLnZbDalT59e6dOnNzsKnIBDpeW9997TwIED1bp1a0lS6dKldfr0aY0ePTrZ0uLh4SEPD49HTwoAAADAJTl0YdmNGzcSXYuWLl06Rn8AAAAAkGocOtPy0ksvaeTIkcqfP79KliypvXv3aty4cerUqVNq5QMAAADg4hwqLZMmTdLgwYP1zjvv6MKFC/Lz81PXrl01ZMiQ1MoHAAAAwMU5VFq8vLw0YcKEBw5xDAAAAACPU8oHSwYAAACANEBpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBpDpWWwMBA2Wy2RI/u3bunVj4AAAAALs7dkY137typuLg4+9cHDx5UvXr19Oqrrz72YAAAAAAgOVhacuXKleDrMWPGqFChQqpRo8ZjDQUAAAAA96X4npbbt2/ru+++U6dOnWSz2R5nJgAAAACwc+hMyz+tWLFC165dU8eOHR+4XWxsrGJjY+1fR0VFpfQlAQAAALigFJ9pmTFjhho2bCg/P78Hbjd69Gj5+PjYH/7+/il9SQAAAAAuKEWl5fTp0/r111/VpUuX/9z2gw8+UGRkpP1x5syZlLwkAAAAABeVosvDgoOD5evrq8aNG//nth4eHvLw8EjJywAAAACA42da4uPjFRwcrA4dOsjdPcW3xAAAAADAQ3G4tPz6668KDw9Xp06dUiMPAAAAACTg8KmS+vXryzCM1MgCAAAAAImkePQwAAAAAEgLlBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBpDpeWs2fPql27dsqRI4cyZ86scuXKaffu3amRDQAAAADk7sjGV69eVbVq1VSrVi39/PPP8vX1VVhYmLJmzZpK8QAAAAC4OodKy6effip/f38FBwfblwUGBj7uTAAAAABg59DlYT/88IMqVqyoV199Vb6+vipfvrymT5/+wOfExsYqKioqwQMAAAAAHpZDpeXEiROaOnWqihQpojVr1qhbt27q2bOn5syZk+xzRo8eLR8fH/vD39//kUMDAAAAcB02wzCMh904Q4YMqlixorZt22Zf1rNnT+3cuVO//fZbks+JjY1VbGys/euoqCj5+/srMjJS3t7ejxAdKRU4cJXZEZJ1akxjsyMAAAAgjURFRcnHx+c/u4FDZ1ry5MmjoKCgBMtKlCih8PDwZJ/j4eEhb2/vBA8AAAAAeFgOlZZq1arpzz//TLDs6NGjCggIeKyhAAAAAOA+h0pLnz59tH37do0aNUrHjx/XvHnz9M0336h79+6plQ8AAACAi3OotFSqVEnLly/X/PnzVapUKQ0fPlwTJkzQa6+9llr5AAAAALg4h+ZpkaQXX3xRL774YmpkAQAAAIBEHDrTAgAAAABpjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAsjdICAAAAwNIoLQAAAAAszd3sAI8qcOAqsyMk69SYxmZHAAAAAJweZ1oAAAAAWBqlBQAAAIClUVoAAAAAWBqlBQAAAIClUVoAAAAAWBqlBQAAAIClUVoAAAAAWBqlBQAAAIClUVoAAAAAWBqlBQAAAIClUVoAAAAAWBqlBQAAAIClUVoAAAAAWBqlBQAAAIClUVoAAAAAWBqlBQAAAIClUVoAAAAAWJpDpeXjjz+WzWZL8MidO3dqZQMAAAAAuTv6hJIlS+rXX3+1f50uXbrHGggAAAAA/snh0uLu7s7ZFQAAAABpxuF7Wo4dOyY/Pz8VKFBArVu31okTJx64fWxsrKKiohI8AAAAAOBhOVRann32Wc2ZM0dr1qzR9OnTdf78eVWtWlWXL19O9jmjR4+Wj4+P/eHv7//IoQEAAAC4DodKS8OGDdW8eXOVLl1adevW1apVqyRJs2fPTvY5H3zwgSIjI+2PM2fOPFpiAAAAAC7F4Xta/ilLliwqXbq0jh07luw2Hh4e8vDweJSXAQAAAODCHmmeltjYWB05ckR58uR5XHkAAAAAIAGHSkv//v0VEhKikydP6vfff1eLFi0UFRWlDh06pFY+AAAAAC7OocvD/vrrL7Vp00aXLl1Srly5VLlyZW3fvl0BAQGplQ8AAACAi3OotCxYsCC1cgAAAABAkh7pnhYAAAAASG2UFgAAAACWRmkBAAAAYGmUFgAAAACWRmkBAAAAYGmUFgAAAACWRmkBAAAAYGmUFgAAAACWRmkBAAAAYGmUFgAAAACWRmkBAAAAYGmUFgAAAACWRmkBAAAAYGnuZgcAAOBRBQ5cZXaEZJ0a09jsCADg9DjTAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALO2RSsvo0aNls9nUu3fvxxQHAAAAABJKcWnZuXOnvvnmG5UpU+Zx5gEAAACABFJUWqKjo/Xaa69p+vTpypYt2+POBAAAAAB2KSot3bt3V+PGjVW3bt3HnQcAAAAAEnB39AkLFizQ7t27tWvXrofaPjY2VrGxsfavo6KiHH1JAAAAAC7MoTMtZ86cUa9evfT9998rY8aMD/Wc0aNHy8fHx/7w9/dPUVAAAAAArsmh0rJ7925duHBBTz/9tNzd3eXu7q6QkBBNnDhR7u7uiouLS/ScDz74QJGRkfbHmTNnHlt4AAAAAE8+hy4Pq1Onjg4cOJBg2RtvvKHixYtrwIABSpcuXaLneHh4yMPD49FSAgAAAHBZDpUWLy8vlSpVKsGyLFmyKEeOHImWAwAAAMDj8EiTSwIAAABAanN49LB/27hx42OIAQAAAABJ40wLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEtzNzsAgCdX4MBVZkdI1qkxjc2OAAAAHhJnWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYGqUFAAAAgKVRWgAAAABYmkOlZerUqSpTpoy8vb3l7e2tKlWq6Oeff06tbAAAAADgWGnJly+fxowZo127dmnXrl2qXbu2mjRpokOHDqVWPgAAAAAuzt2RjV966aUEX48cOVJTp07V9u3bVbJkyccaDAAAAAAkB0vLP8XFxWnx4sWKiYlRlSpVkt0uNjZWsbGx9q+joqJS+pIAAAAAXJDDN+IfOHBAnp6e8vDwULdu3bR8+XIFBQUlu/3o0aPl4+Njf/j7+z9SYAAAAACuxeHSUqxYMe3bt0/bt2/X22+/rQ4dOujw4cPJbv/BBx8oMjLS/jhz5swjBQYAAADgWhy+PCxDhgwqXLiwJKlixYrauXOnvvzyS3399ddJbu/h4SEPD49HSwkAAADAZT3yPC2GYSS4ZwUAAAAAHieHzrQMGjRIDRs2lL+/v65fv64FCxZo48aNWr16dWrlAwAAAODiHCotf//9t9q3b6+IiAj5+PioTJkyWr16terVq5da+QAAAAC4OIdKy4wZM1IrBwAAAAAk6ZHvaQEAAACA1ERpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlubQ6GGAKwscuMrsCMk6Naax2REAAABSDWdaAAAAAFgaZ1oAAACQqrhaAY+K0gIAAABYDEUvIS4PAwAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBplBYAAAAAlkZpAQAAAGBpDpWW0aNHq1KlSvLy8pKvr6+aNm2qP//8M7WyAQAAAIBjpSUkJETdu3fX9u3btXbtWt29e1f169dXTExMauUDAAAA4OLcHdl49erVCb4ODg6Wr6+vdu/ereeff/6xBgMAAAAA6RHvaYmMjJQkZc+e/bGEAQAAAIB/c+hMyz8ZhqG+ffvqueeeU6lSpZLdLjY2VrGxsfavo6KiUvqSAAAAAFxQis+0vPvuuwoNDdX8+fMfuN3o0aPl4+Njf/j7+6f0JQEAAAC4oBSVlh49euiHH37Qhg0blC9fvgdu+8EHHygyMtL+OHPmTIqCAgAAAHBNDl0eZhiGevTooeXLl2vjxo0qUKDAfz7Hw8NDHh4eKQ4IAAAAwLU5VFq6d++uefPmaeXKlfLy8tL58+clST4+PsqUKVOqBAQAAADg2hy6PGzq1KmKjIxUzZo1lSdPHvtj4cKFqZUPAAAAgItz+PIwAAAAAEhLjzRPCwAAAACkthTP0wIAAJxb4MBVZkdI1qkxjc2OAMBCONMCAAAAwNIoLQAAAAAsjcvDAAAAHhKX1AHm4EwLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNIdLy6ZNm/TSSy/Jz89PNptNK1asSIVYAAAAAHCPw6UlJiZGZcuW1eTJk1MjDwAAAAAk4O7oExo2bKiGDRumRhYAAAAASMTh0uKo2NhYxcbG2r+OiopK7ZcEAAAA8ARJ9RvxR48eLR8fH/vD398/tV8SAAAAwBMk1UvLBx98oMjISPvjzJkzqf2SAAAAAJ4gqX55mIeHhzw8PFL7ZQAAAAA8oZinBQAAAIClOXymJTo6WsePH7d/ffLkSe3bt0/Zs2dX/vz5H2s4AAAAAHC4tOzatUu1atWyf923b19JUocOHTRr1qzHFgwAAAAApBSUlpo1a8owjNTIAgAAAACJcE8LAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEtzNzsAACChwIGrzI6QrFNjGpsdAQDggjjTAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSKC0AAAAALI3SAgAAAMDSUlRapkyZogIFCihjxox6+umntXnz5sedCwAAAAAkpaC0LFy4UL1799aHH36ovXv3qnr16mrYsKHCw8NTIx8AAAAAF+dwaRk3bpw6d+6sLl26qESJEpowYYL8/f01derU1MgHAAAAwMW5O7Lx7du3tXv3bg0cODDB8vr162vbtm1JPic2NlaxsbH2ryMjIyVJUVFRjmZNUnzsjcfyfVLD4/o7Pm7ss5RhvzmOfZYy7DfHsc9Shv3mOPZZyrDfHOcq++z+9zIM48EbGg44e/asIcnYunVrguUjR440ihYtmuRzhg4dakjiwYMHDx48ePDgwYMHjyQfZ86ceWAPcehMy302my3B14ZhJFp23wcffKC+ffvav46Pj9eVK1eUI0eOZJ9jhqioKPn7++vMmTPy9vY2O47TYL85jn2WMuw3x7HPUob95jj2Wcqw3xzHPksZK+83wzB0/fp1+fn5PXA7h0pLzpw5lS5dOp0/fz7B8gsXLuipp55K8jkeHh7y8PBIsCxr1qyOvGya8vb2ttw/pjNgvzmOfZYy7DfHsc9Shv3mOPZZyrDfHMc+Sxmr7jcfH5//3MahG/EzZMigp59+WmvXrk2wfO3atapatapj6QAAAADgITh8eVjfvn3Vvn17VaxYUVWqVNE333yj8PBwdevWLTXyAQAAAHBxDpeWVq1a6fLly/rkk08UERGhUqVK6aefflJAQEBq5EszHh4eGjp0aKJL2fBg7DfHsc9Shv3mOPZZyrDfHMc+Sxn2m+PYZynzJOw3m/Gf44sBAAAAgHkcnlwSAAAAANISpQUAAACApVFaAAAAAFgapQUAAACApTk8ehgAx925c0fnz5/XjRs3lCtXLmXPnt3sSE7hzJkzOnXqlH2/lSxZ0qlHPgGeJPx8AkhLLllaDMNQSEiINm/enOAXbvny5VW3bl35+/ubHdGyYmNjtWPHjkT7rUCBAmZHs5zo6Gh9//33mj9/vnbs2KHY2Fj7unz58ql+/fp66623VKlSJRNTWs/p06c1bdo0zZ8/X2fOnNE/BzjMkCGDqlevrrfeekvNmzeXmxsni/+Jn0/HRUZGavny5Um+HzRo0ICJk/+Fn89Hw8+oY/j5TLlTp04lud+qVKmijBkzmh0vRVxqyOObN29q/PjxmjJlii5fvqyyZcsqb968ypQpk65cuaKDBw/q3Llzql+/voYMGaLKlSubHdkytm3bpkmTJmnFihW6ffu2smbNat9vsbGxKliwoN566y1169ZNXl5eZsc13fjx4zVy5EgFBgbq5Zdf1jPPPJPo/9rmzZu1fPlyVa5cWZMmTVKRIkXMjm26Xr16KTg4WPXr13/gfps/f77c3d0VHBxM6RM/nykRERGhIUOG6Pvvv1fu3LmT/L+2e/duBQQEaOjQoWrVqpXZkU3Hz2fK8TPqGH4+U27evHmaOHGiduzYIV9f3wT7LSwsTBkzZtRrr72mAQMGON8ci4YLyZcvn9G8eXPjxx9/NG7fvp3kNqdOnTJGjRpl5M+f3/jmm2/SOKE1vfzyy0aePHmMfv36GSEhIUZMTEyC9WFhYcasWbOMBg0aGLlz5zZ++eUXk5JaR4sWLYzQ0ND/3O7WrVvGV199ZUyfPj0NUllf//79jQsXLjzUtqtWrTIWL16cyomsj5/PlMmVK5fRr18/48CBA8luc+PGDWPevHnGM888Y3z22WdpmM6a+PlMGX5GHcfPZ8qUL1/eePrpp41JkyYZp0+fTrT+1q1bxoYNG4yuXbsaOXPmNBYtWmRCypRzqTMtBw8eVKlSpR5q29u3b+v06dN8+i3pq6++0ptvvqkMGTL857aHDh3SuXPnVK9evTRIBoCfz5S5ePGicuXKlWrbA/fxM+o4fj5TZtWqVWrcuPFDbXvp0iWdPHnSqc6GulRpAQDg32JiYpQlSxazYwAAHsBlS8vq1avl6emp5557TtK9T0KmT5+uoKAgffXVV8qWLZvJCa1t9+7dOnLkiGw2m0qUKKEKFSqYHcnSdu7cqcWLFys8PFy3b99OsG7ZsmUmpbK2v//+W/3799e6det04cIF/ftXVVxcnEnJ8KTx9PRUy5Yt1alTJ/t7AhIrX768bDbbQ227Z8+eVE7j3G7fvq0LFy4oPj4+wfL8+fOblMi6Zs+erZw5c9rPILz//vv65ptvFBQUpPnz5zvffRlpKCwsTMHBwQoLC9OXX34pX19frV69Wv7+/ipZsqTZ8RzmskN7vPfee4qKipIkHThwQP369VOjRo104sQJ9e3b1+R01nXhwgXVrl1blSpVUs+ePfXuu++qYsWKqlOnji5evGh2PEtasGCBqlWrpsOHD2v58uW6c+eODh8+rPXr18vHx8fseJbVsWNH7dmzR4MHD9aSJUu0bNmyBA/cky1bNmXPnv2hHkja/PnzFRkZqTp16qho0aIaM2aMzp07Z3Ysy2natKmaNGmiJk2aqEGDBgoLC5OHh4dq1qypmjVrKmPGjAoLC1ODBg3MjmpZx44dU/Xq1ZUpUyYFBASoQIECKlCggAIDAxlBLBmjRo1SpkyZJEm//fabJk+erLFjxypnzpzq06ePyemsKyQkRKVLl9bvv/+uZcuWKTo6WpIUGhqqoUOHmpwuZVz2TIunp6cOHjyowMBAffzxxzp48KCWLFmiPXv2qFGjRjp//rzZES2pVatWCgsL09y5c1WiRAlJ0uHDh9WhQwcVLlxY8+fPNzmh9ZQpU0Zdu3ZV9+7d5eXlpf3796tAgQLq2rWr8uTJo2HDhpkd0ZK8vLy0efNmlStXzuwoljZ79mz7ny9fvqwRI0aoQYMGqlKliqR7b/Jr1qzR4MGDeYP/D5cvX9acOXM0a9YsHT58WA0aNFCnTp308ssvy93dJWcISFaXLl2UJ08eDR8+PMHyoUOH6syZM5o5c6ZJyaytWrVqcnd318CBA5UnT55EZ67Kli1rUjLrypw5s/744w/lz59fAwYMUEREhObMmaNDhw6pZs2afGCajCpVqujVV19V37597cceBQsW1M6dO9W0aVOdPXvW7IiOM20IAJNly5bNOHTokGEYhlGtWjXj66+/NgzDME6ePGlkypTJzGiW5u3tbezYsSPR8t9//93w8fFJ+0BOIHPmzMbJkycNwzCMHDly2EcVO3z4sJE7d24Tk1lbiRIljD179pgdw6k0a9bMmDRpUqLlkyZNMpo0aZL2gZzYxIkTDQ8PD8Nmsxm5cuUyBg8enGjUJ1fm7e1tHD16NNHyo0ePGt7e3iYkcg6ZM2c2jhw5YnYMp5IrVy77e0G5cuWM2bNnG4ZhGMePHzeyZMliZjRLy5Ili3HixAnDMAzD09PTCAsLMwzj3nGuh4eHmdFSzGUvD3vuuefUt29fDR8+XDt27LBfK3n06FHly5fP5HTWFR8fr/Tp0ydanj59+kTX5uKe7Nmz6/r165KkvHnz6uDBg5Kka9eu6caNG2ZGs7QJEyZo4MCBOnXqlNlRnMaaNWv0wgsvJFreoEED/frrryYkci7nz5/X2LFjVaJECQ0cOFAtWrTQunXrNH78eC1fvlxNmzY1O6JlZMqUSVu2bEm0fMuWLU47cV1aCAoK0qVLl8yO4VTq1aunLl26qEuXLjp69Kj9eO3QoUMKDAw0N5yFZc2aVREREYmW7927V3nz5jUh0aNz2fPdkydP1jvvvKMlS5Zo6tSp9n/An3/+Ock3fdxTu3Zt9erVS/Pnz5efn58k6ezZs+rTp4/q1Kljcjprql69utauXavSpUurZcuW6tWrl9avX6+1a9eyzx6gVatWunHjhgoVKqTMmTMnKstXrlwxKZl15ciRQ8uXL9d7772XYPmKFSuUI0cOk1JZ37JlyxQcHKw1a9YoKChI3bt3V7t27ZQ1a1b7NuXKlVP58uXNC2kxvXv31ttvv63du3fbJ2Levn27Zs6cqSFDhpiczro+/fRTvf/++xo1apRKly6d6Peat7e3Scms66uvvtJHH32kM2fOaOnSpfbfZbt371abNm1MTmddbdu21YABA7R48WLZbDbFx8dr69at6t+/v15//XWz46WIy97TgpQ5c+aMmjRpooMHD8rf3182m03h4eEqXbq0Vq5cyVmqJFy5ckW3bt2Sn5+f4uPj9fnnn2vLli0qXLiwBg8ezEh1yfjnvRpJ6dChQxolcR6zZs1S586d9cILL9jvadm+fbtWr16tb7/9Vh07djQ3oEX5+PiodevW6tKlS7JzFty8eVNjx4512htYU8OiRYv05Zdf6siRI5KkEiVKqFevXmrZsqXJyazLze3eBS7/vpfFMAzZbDZGRcRjc+fOHXXs2FELFiyQYRhyd3dXXFyc2rZtq1mzZildunRmR3SYS5eWJ20ouLS0du1a/fHHHzIMQ0FBQapbt67ZkQBI+v333zVx4kQdOXLE/vPZs2dPPfvss2ZHs6wbN24oc+bMZseACwgJCXng+ho1aqRREudz48aNJKcNKFOmjEmJnENYWJj27t2r+Ph4lS9f3qknTXfZ0hISEqKGDRuqWrVq2rRpk44cOaKCBQtq7Nix2rFjh5YsWWJ2RDwh0qVLp4iICPn6+iZYfvnyZfn6+vLJ2gPExcVpxYoV9jmBgoKC9PLLLzvlJ0SwLn5GU475RpDaLl68qI4dO2r16tVJrufn03W47D0tAwcO1IgRI+xDwd1Xq1YtffnllyYms7aePXuqcOHC6tmzZ4LlkydP1vHjxzVhwgRzgllYcp8LxMbGKkOGDGmcxnkcP35cjRo10tmzZ1WsWDEZhqGjR4/K399fq1atUqFChcyOaEnx8fE6fvx4kgeSzz//vEmprI2fUccdO3ZMnTp10rZt2xIs5zKnxEJDQ1WqVCm5ubkpNDT0gdty1iCx3r1769q1a9q+fbtq1aql5cuX6++//9aIESP0xRdfmB3PUhyZZ3DcuHGpmCR1uGxpOXDggObNm5doea5cuXT58mUTEjmHpUuX6ocffki0vGrVqhozZgyl5R8mTpwo6d61y99++608PT3t6+Li4rRp0yYVL17crHiW17NnTxUqVEjbt2+3T4x4+fJltWvXTj179tSqVatMTmg927dvV9u2bXX69OlEB+IcSCbGz2jKdezYUe7u7vrf//6X5Hwj+D/lypXT+fPn5evrq3LlyslmsyVZlPkZTdr69eu1cuVKVapUSW5ubgoICFC9evXk7e2t0aNH20cTw72RwZ5kLlta7g8F9+8ZaJ15KLi0cPny5SRncff29mYYx38ZP368pHufPE6bNi3BJU0ZMmRQYGCgpk2bZlY8ywsJCUlQWKR7o2ONGTNG1apVMzGZdXXr1k0VK1bUqlWrOJB8CPyMpty+ffu0e/duSt1DOHnypHLlymX/MxwTExNjv3Qze/bsunjxoooWLarSpUtrz549Jqezlg0bNpgdIVW5bGl5EoeCSwuFCxfW6tWr9e677yZY/vPPP6tgwYImpbKm+29OtWrV0rJlyxglzEEeHh72+W3+KTo6mkt2knHs2DEtWbJEhQsXNjuKU+BnNOWYb+ThBQQE2P98+vRpVa1aVe7uCQ+/7t69q23btiXYFvcUK1ZMf/75pwIDA1WuXDl9/fXX9g8U8uTJY3Y8y+rUqZO+/PLLBLdASPdKYI8ePTRz5kyTkj2CtJ7N0ipu375ttG3b1nBzczNsNpuRPn16w83NzWjXrp1x9+5ds+NZ1owZM4xMmTIZQ4YMMTZu3Ghs3LjRGDx4sJE5c2bjm2++MTseniDt27c3SpYsaWzfvt2Ij4834uPjjd9++80oVaqU0aFDB7PjWVKtWrWMn3/+2ewYcAHr1q0zqlSpYmzYsMG4dOmSERkZmeCBpLm5uRl///13ouWXLl0y3NzcTEhkfd99950RHBxsGIZh7Nmzx8iVK5fh5uZmZMyY0ViwYIG54Swsuf9rFy9eNNKlS2dCokfnsqOH3fckDQWXVqZOnaqRI0fq3LlzkqTAwEB9/PHHnKFKRlxcnGbNmqV169YleXP0+vXrTUpmbdeuXVOHDh30448/2idgu3v3rl5++WUFBwcnmPgP9yxfvlwfffSR3nvvvSQnruMm3//Tt29fDR8+XFmyZPnPm1ed8YbV1MZ8Iynj5uamv//+23652H1Hjx5VxYoVFRUVZVIy53Hjxg398ccfyp8/v3LmzGl2HMuJioqSYRjKli2bjh07luD/WlxcnH788UcNHDjQfgznTFy+tCDlLl68qEyZMiW4eRWJvfvuu5o1a5YaN26c5H0G96+rR9KOHz+eYM4RLn1K3v0DyX+6f9MvB5IJ3R+FKGvWrKpVq1ay29lsNj5YSALzjTimWbNmkqSVK1fqhRdekIeHh31dXFycQkNDVaxYsWSH9QUelpub2wPvZ7TZbBo2bJg+/PDDNEz1eLhUaXnSh4JLCzdv3pRhGPaJ2E6fPq3ly5crKChI9evXNzmdNeXMmVNz5sxRo0aNzI7iVD755BP1798/0aR/N2/e1GeffaYhQ4aYlMy6Tp8+/cD1XC8PmOONN96QJM2ePVstW7ZUpkyZ7OvuD/rw5ptvcubg/+N4LeVCQkJkGIZq166tpUuXJhjMJkOGDAoICJCfn5+JCVPOpUrLgz5N+yc+WUte/fr11axZM3Xr1k3Xrl1TsWLFlCFDBl26dEnjxo3T22+/bXZEy/Hz89PGjRtVtGhRs6M4FSb8Q2qLi4vToUOHVKRIkQQHkdK9S1COHz9un18DSWOWcscMGzZM/fv3V5YsWcyOYmkcrz2606dPK3/+/EmedQkPD3fKCWBdqrTg0eXMmVMhISEqWbKkvv32W02aNEl79+7V0qVLNWTIEB05csTsiJbzxRdf6MSJE5o8eTJD0DoguWu/169fr1atWunixYsmJbO+w4cPJ3kg+fLLL5uUyJpmzZqlyZMn6/fff08w3LF0r9A8++yz6t27t9q1a2dSQuu6ePGi3njjDf38889JrudDhaRxtQLSypP4wZ/LDnl83/HjxxUWFqbnn39emTJlsl/7jaTduHHDPnzeL7/8ombNmsnNzU2VK1f+z0tTXNWWLVu0YcMG/fzzzypZsmSim6OXLVtmUjJrypYtm2w2m2w2m4oWLZrg5zEuLk7R0dHq1q2biQmt68SJE3rllVd04MCBBBPY3d+HzvgmlZpmzJih/v37Jyos0r03/Pfff1+TJ0+mtCShd+/eunr1KrOUO6hJkyYJrlZ45plnuFoBqSK5cxLR0dHKmDFjGqd5PFy2tFy+fFktW7bUhg0bZLPZdOzYMRUsWFBdunRR1qxZ+aWbjMKFC2vFihV65ZVXtGbNGvXp00eSdOHCBXl7e5uczpqyZs2qV155xewYTmPChAkyDEOdOnXSsGHDEkxmev/a7ypVqpiY0Lp69eqlAgUK6Ndff1XBggW1Y8cOXb58Wf369dPnn39udjzL+fPPP1W5cuVk11eqVImzx8lglvKU2bNnj33wlSVLlih37twJrlagtNxzf+CCh8EHfwndvx/IZrNpyJAhCe4LjYuL0++//65y5cqZlO7RuGxp6dOnj9KnT6/w8HCVKFHCvrxVq1bq06cPpSUZQ4YMUdu2bdWnTx/VqVPHfvD4yy+/qHz58ians6bg4GCzIziVDh06SJIKFCigatWqJZqEDcn77bfftH79euXKlUtubm5yc3PTc889p9GjR6tnz57au3ev2REtJSYm5oFDzF6/fl03btxIw0TOg1nKU4arFR7OPz+sgmPu/543DEMHDhxIMBlzhgwZVLZsWfXv39+seI/EZY8GfvnlF61Zs0b58uVLsLxIkSL84niAFi1a6LnnnlNERITKli1rX16nTh3OJuCx8vLy0pEjR1S6dGlJ94YKDQ4OVlBQkD7++OMEv4hxT1xcnH0I8pw5c+rcuXMqVqyYAgIC9Oeff5qcznqKFCmibdu2JXvT+JYtW5i7KxnMUp4yXK3wcPiwL+U2bNgg6d6IdV9++eUT9f/KZUtLTExMoqFUJenSpUsJxk9HYrlz51bu3LkTLHvmmWdMSuMclixZokWLFiV5czSfSiata9euGjhwoEqXLq0TJ06oVatWatasmRYvXqwbN25owoQJZke0nFKlSik0NFQFCxbUs88+q7FjxypDhgz65ptvVLBgQbPjWU7btm310UcfqWrVqomKy/79+zVkyBC9//77JqWztt69eysiIkKSNHToUDVo0EDff/+9MmTIoFmzZpkbzsK4WgFp5Uksfi47eljjxo1VoUIFDR8+XF5eXgoNDVVAQIBat26t+Ph4LVmyxOyIltGsWTPNmjVL3t7e/3mdKdeWJjZx4kR9+OGH6tChg6ZPn6433nhDYWFh2rlzp7p3766RI0eaHdGSfHx8tGfPHhUqVEiffvqp1q9frzVr1mjr1q1q3bq1zpw5Y3ZEy1mzZo1iYmLUrFkznThxQi+++KL++OMP5ciRQwsXLlTt2rXNjmgpd+7cUf369bVlyxbVrVtXxYsXl81m05EjR/Trr7+qWrVqWrt2baLBM5AYs5Q/vPPnz9uvVrg/nPaOHTvk7e2t4sWLm5zOmvjgL2V27typxYsXJ7nfnPF4zWXPtHz22WeqWbOmdu3apdu3b+v999/XoUOHdOXKFW3dutXseJbi4+NjH32I60wdN2XKFH3zzTdq06aNZs+erffff18FCxbUkCFDdOXKFbPjWZZhGIqPj5ck/frrr3rxxRclSf7+/rp06ZKZ0SyrQYMG9j8XLFhQhw8f1pUrV+wjsiGh9OnT65dfftH48eM1b948bdq0SYZhqGjRoho5cqR69+5NYXlImTNnVoUKFcyO4RS4WsEx//zgb+XKlYk++EPSFixYoNdff13169fX2rVrVb9+fR07dkznz5932sv5XfZMi3Tv046pU6dq9+7dio+PV4UKFdS9e3eux8VjlTlzZh05ckQBAQHy9fXV2rVrVbZsWR07dkyVK1fW5cuXzY5oSbVr15a/v7/q1q2rzp076/DhwypcuLBCQkLUoUMHnTp1yuyIgEthlvJHV6tWrQd+gMBEiYkVL15cQ4cOVZs2beTl5aX9+/cn+OBv8uTJZke0pDJlyqhr167q3r27fb8VKFBAXbt2VZ48eTRs2DCzIzrMZc+0SPc+7XDGfzQznTx5Unfv3k10c+qxY8eUPn16BQYGmhPMwnLnzq3Lly8rICBAAQEB2r59u8qWLauTJ08mO4467g19/Nprr2nFihX68MMPVbhwYUn3LhOoWrWqyemsg6FBkVYYfe7R/Xuo2Tt37mjfvn06ePCgfeREJBQeHm7/nZ8pUyZdv35dktS+fXtVrlyZ0pKMsLAw+9DjHh4eiomJkc1mU58+fVS7dm2nPP512dISGhqa5HKbzaaMGTMqf/783JCfhI4dO6pTp06JSsvvv/+ub7/9Vhs3bjQnmIXVrl1bP/74oypUqKDOnTurT58+WrJkiXbt2uXQAaerKVOmjA4cOJBo+WeffZbkZICuiks2kVbuj0qElLs/R8u/ffzxx4qOjk7jNM6BD/5SJnv27PaClzdvXh08eFClS5fWtWvXnHYod5e9PMzNzc1+ivbfs0ZL9651btWqlb7++munnTk0NXh7e2vPnj32T73vO378uCpWrKhr166ZE8zC4uPjFR8fb59vZNGiRdqyZYsKFy6sbt26MXTvf9i9e7eOHDkim82mEiVKcN08YAGdOnXSl19+aZ9z5L6YmBj16NFDM2fONCmZczp+/LieeeYZ7nNMQpcuXeTv76+hQ4dq2rRp6tu3r6pVq2b/4G/GjBlmR7Sktm3bqmLFiurbt69GjhypL7/8Uk2aNNHatWtVoUIFpzzz7rKlZeXKlRowYIDee+89PfPMMzIMQzt37tQXX3yhoUOH6u7duxo4cKBatWrFTNL/4OPjo40bNyYamnH37t2qWbOmvdUDj+rChQtq1aqVQkJClDVrVhmGocjISNWqVUsLFixQrly5zI5oObVr19ayZcuUNWvWBMujoqLUtGlTrpfHY5MuXTpFRETYJ5i879KlS8qdO7fu3r1rUjLnNHfuXA0YMEDnzp0zO4rl8MFfyly5ckW3bt2Sn5+f4uPj9fnnn9v32+DBg5UtWzazIzrMZUvLM888o+HDhycYbUe6N2To4MGDtWPHDq1YsUL9+vVTWFiYSSmt58UXX1TmzJk1f/58+yU6cXFxatWqlWJiYvTzzz+bnNAakrv8MCnJTWzn6lq1aqWwsDDNnTtXJUqUkCQdPnxYHTp0UOHChTV//nyTE1qPm5ubzp8/n+hA8sKFC8qbN6/u3LljUjJrCw0NTfbncMWKFWratGnaBrKwqKgoGYahbNmy6dixYwk+PIiLi9OPP/6ogQMHcvCdjH9fEmwYhiIiIrRr1y4NHjxYQ4cONSkZYH0ue0/LgQMHFBAQkGh5QECA/Tr6cuXK2SfPwj1jx47V888/r2LFiql69eqSpM2bNysqKopPcf+hXLlystls/3m9rc1mU1xcXBqlci6rV6/Wr7/+ai8skhQUFKSvvvpK9evXNzGZ9fyzJB8+fFjnz5+3fx0XF6fVq1crb968ZkRzCg0aNNDWrVsTTcC5dOlSvf7664qJiTEpmfVkzZpVNptNNptNRYsWTbTeZrM55Q2+aeXf96C5ubmpWLFi+uSTT/i9loxjx45p5cqVOnXqlGw2mwoWLKimTZuqQIECZkezvLCwMAUHByssLExffvmlfH19tXr1avn7+6tkyZJmx3OYy5aW4sWLa8yYMfrmm2/spxbv3LmjMWPG2Cd3Onv2rJ566ikzY1pOUFCQQkNDNXnyZO3fv1+ZMmXS66+/rnfffVfZs2c3O55lnDx50uwITi8+Pj7JOTLSp09vn78F99wvyTabLckJJDNlyqRJkyaZkMw5vP3226pTp462bdtmH/J+4cKF6tSpE7O7/8uGDRtkGIZq166tpUuXJvi9nyFDBgUEBMjPz8/EhNb2oFnK7969a78ECveMHj1aQ4YMUXx8vHx9fWUYhi5evKgBAwZo1KhR6t+/v9kRLSskJEQNGzZUtWrVtGnTJo0cOVK+vr4KDQ3Vt99+65yTqBsuauvWrUaOHDmMXLlyGXXq1DHq1q1r+Pr6Gjly5DB+++03wzAMY86cOcbYsWNNTgpnFxISYty5cyfR8jt37hghISEmJHIOL7/8svH8888bZ8+etS/766+/jBo1ahhNmzY1MZn1nDp1yjh58qRhs9mMnTt3GqdOnbI/zp07Z9y9e9fsiJbXs2dPIygoyLh8+bLx/fffG5kyZTKWLFlidixLunPnjtGhQwcjPDzc7ChPhEOHDhl9+/Y1fH19zY5iKevXrzfc3NyMoUOHGleuXLEvv3z5sjF48GAjXbp0vIc+QOXKlY0vvvjCMAzD8PT0NMLCwgzDMIwdO3YYfn5+ZkZLMZe9p0WSoqOj9d133+no0aMyDEPFixdX27ZtE42GgoSuXbumHTt26MKFC4k+8X799ddNSmVdyd2wevnyZfn6+nJ5WDLOnDmjJk2a6ODBg/L395fNZlN4eLhKly6tlStXKl++fGZHtJQ7d+7ozTff1JAhQxJd5oSH0759e/3+++86e/as5s2bpyZNmpgdybK8vLx04MAB5uZKoejoaC1YsEAzZszQzp07VblyZTVv3lx9+vQxO5pltGrVSlmzZtXXX3+d5Pq33npL169f5/7GZHh6eurAgQMqUKBAgkk5T506peLFi+vWrVtmR3SYS5+H9PT0VLdu3cyO4VR+/PFHvfbaa4qJiZGXl1eCYaJtNhulJQmGYSQ5A/Lly5eVJUsWExI5B39/f+3Zs0dr167VH3/8IcMwFBQUpLp165odzZLSp0+vlStXasiQIWZHcQo//PBDomVNmzZVSEiI2rRpI5vNZt/m5ZdfTut4llenTh1t3LhRHTt2NDuKU9myZYu+/fZbLV26VAUKFNDhw4cVEhKiatWqmR3Ncnbs2KG5c+cmu759+/YcczxA1qxZFRERkejen7179zrtPY4ufabl6NGj2rhxY5JnDHjjT1rRokXVqFEjjRo1SpkzZzY7jqXdHyVm5cqVeuGFFxJMVhoXF6fQ0FAVK1ZMq1evNisinjBvvPGGSpcurb59+5odxfLc3NweajsGy0ja119/rY8//livvfaann766UQfwFD0Eho7dqxmzpyp6OhotWnTRu3atVPZsmWVPn167d+/X0FBQWZHtJzMmTPr6NGjyZ5V/+uvv1SkSBHdvHkzjZM5h/fff1+//fabFi9erKJFi2rPnj36+++/9frrr+v11193ypHqXLa0TJ8+XW+//bZy5syp3LlzJzpjsGfPHhPTWVeWLFl04MABLj95CG+88YYkafbs2WrZsqUyZcpkX5chQwYFBgbqzTffVM6cOc2KaFnXr1/X0aNHVaxYMXl6emrPnj2aMGGCbt68qaZNm+q1114zO6IljRw5Up9//rnq1KmT5IFkz549TUqGJ82DSh9FLzF3d3cNGDBAn3zyiX26AEmUlgdIbgj3+/7++2/5+fnxfy0Zd+7cUceOHbVgwQIZhiF3d3fFxcWpbdu2mjVrVoL/h87CZUtLQECA3nnnHQ0YMMDsKE6lWbNmat26tVq2bGl2FKcxbNgw9e/fP8lLwS5evMgkif+yadMmvfjii4qOjla2bNk0f/58tWjRQnnz5lW6dOl05MgRTZs2TW+++abZUS3nQUOA2mw2nThxIg3TOIc7d+6ofv36+vrrr5Mcwhd4HEaNGqVZs2bp1q1batOmjdq3b69SpUpRWh7Azc1NI0aMkKenZ5Lrr1+/riFDhlBa/sOJEye0Z88excfHq3z58ipSpIjZkVLMZUuLt7e39u3bxxkDB82YMUOffPKJ/TKUfw9JyyUB/80wDP3888+aMWOG/ve//yk2NtbsSJby/PPPq0iRIho2bJiCg4M1btw4vf322xo1apQkacSIEVqyZIn27dtnblA8MXLlyqVt27Y59Zs5nENISIhmzpyppUuXqlChQjp06BD3tCQjMDAwyftB/40pBh7O3bt3devWrWRLoDNw2dLSuXNnVapUiRvxHcQlASl34sQJzZw5U7Nnz1Z0dLQaN26s5s2b65VXXjE7mqVkzZpV27dvV/HixXX79m1lypRJe/bsUdmyZSVJx48fV/ny5XX9+nWTk1rb/V/tD/Om7+r69eun9OnTa8yYMWZHcSohISH6/PPPdeTIEdlsNpUoUULvvfeefeJhJO/69ev6/vvvFRwcrN27d+uZZ55RixYtuB8Nj+ynn37S5cuX1b59e/uykSNHavjw4bp7965q166thQsXKlu2bCamTBmXLS2jR4/WuHHj1Lhx4yTPGHDtNx6HW7duacmSJfr222+1fft21atXTz///LP27dunUqVKmR3Pkv59HfM/h2qUuI75v8yZM0efffaZjh07June4BnvvfdegjcwJNSjRw/NmTNHhQsXVsWKFRNdyjlu3DiTklnXd999pzfeeEPNmjVTtWrVZBiGtm3bpuXLl2vWrFlq27at2RGdxoEDBzRjxgzNmzdPFy5cMDsOnFzt2rXVvHlzde/eXZK0bds2Va9eXZ988olKlCihDz/8UA0bNnTK32suW1q49hup7Z133tGCBQtUrFgxtWvXTq1bt1aOHDm4hvk/pEuXTufPn7ff6+Pt7a39+/fbf2YpLckbN26cBg8erHfffdd+ILl161Z99dVXGjFiBHNAJKNWrVrJrrPZbFq/fn0apnEOJUqU0FtvvZXo/9S4ceM0ffp0HTlyxKRkzuvOnTuJPkAFHOXr66s1a9aofPnykqS+ffvq8OHD9pFKf/rpJ/Xq1cv+wZYzcdnSgpSLiYlRSEiIwsPDdfv27QTrOEP1f+6PFjNw4MAEE5ZSWh7Mzc1NpUqVkrv7vWmkQkNDVbx4cWXIkEHSvetyDx06RGlJQoECBTRs2LBEcxfMnj1bH3/8Mdd+47Hx8PDQoUOHVLhw4QTLjx8/rlKlSjnlxHXAkyBTpkz6888/lT9/fkmyX3r4/vvvS5JOnz6toKAgxcTEmBkzRVx6csmk3D9NO2HCBLOjWNLevXvVqFEj3bhxQzExMcqePbsuXbqkzJkzy9fXl9LyD3PmzFFwcLDy5Mmjxo0bq3379nrhhRfMjmV5/x47PqlZyZs3b55WcZxKRESEqlatmmh51apVFRERYUIi5/PXX3/JZrM57eRracXf31/r1q1LVFrWrVsnf39/k1IB8PPz05EjR5Q/f35FR0dr//79Gj9+vH395cuXnXaePUqLpKioKM2fP18zZszQrl27VKZMGbMjWVafPn300ksvaerUqfYbptOnT6927dqpV69eZsezlLZt26pt27Y6deqUgoOD1b17d924cUPx8fE6fPgwZ1qS4YwTXllF4cKFtWjRIg0aNCjB8oULFzIy1gPEx8drxIgR+uKLLxQdHS3p3r1U/fr104cffvjQE1G6kn79+qlnz57at2+fqlatKpvNpi1btmjWrFn68ssvzY4HuKwWLVqod+/eGjRokH766Sflzp1blStXtq/ftWuXihUrZmLCR2C4sI0bNxrt27c3MmfObLi5uRkDBgwwjh07ZnYsS/Px8TH++OMP+58PHz5sGIZhbN++3ShWrJiZ0SwvPj7e+Pnnn41XX33V8PDwMPLmzWv06NHD7Fh4gixZssRIly6d0aBBA+OTTz4xhg8fbjRo0MBwd3c3li1bZnY8yxo4cKCRK1cuY8qUKcb+/fuNffv2GV999ZWRK1cuY9CgQWbHs6xly5YZ1apVM7Jnz25kz57dqFatmrFixQqzYwEuLSYmxmjXrp2RNWtWo3jx4samTZsSrK9Zs6YxZswYk9I9Gpe7pyUiIkLBwcGaOXOmYmJi1KZNG7Vt21ZVqlThPoOHkCtXLm3dulVFixZVsWLFNHHiRDVo0EB//PGHKlSooBs3bpgd0SlcuXLFfvnY/v37zY6DJ8iePXs0btw4HTlyRIZhKCgoSP369bPflInE/Pz8NG3atETzTK1cuVLvvPOOzp49a1IyazIMQ8ePH9edO3dUtGhR+/1nAJCaXO43TYECBfTqq6/qq6++Ur169Tjt76Dy5ctr165dKlq0qGrVqqUhQ4bo0qVLmjt3rkqXLm12PKeRPXt29e7dW7179zY7Cp4Q169f1/bt23Xnzh1NmDBBOXPmNDuS07hy5YqKFy+eaHnx4sV15coVExJZ16lTp9SkSRMdPHhQ0r17W5YtW6YKFSqYnAzAk87ljtgDAgK0ZcsWbdq0SUePHjU7jtMZNWqU8uTJI0kaPny4cuTIobffflsXLlzQN998Y3I6wDXdH2HthRde0IsvvqjChQvr119/NTuW0yhbtqwmT56caPnkyZPtk5ringEDBujWrVuaO3euFi9erDx58qhr165mxwLgAlzu8jBJ2rp1q2bMmKHFixeraNGiateund5//32FhoaqRIkSZsezLMMwFB4eLl9fX2XKlMnsOAD+v0aNGunq1av64osvlDFjRg0bNkx//vmn/vjjD7OjWdpff/2lfPnyKSQkRI0bN1b+/PlVpUoV2Ww2bdu2TWfOnNFPP/3EDO//4Ofnp/nz56tGjRqS7u3DgIAARUdH874AIFW5ZGm5Lzo6WvPnz9fMmTP1+++/q0aNGmrbtq2aNm1qn9gO/yc+Pl4ZM2bUoUOHGIkIsBBfX1/99NNPqlixoqR7Q1r6+voqMjJSnp6eJqezrqxZs2rSpElq3769zp49qylTpuiPP/6w3wv0zjvvyM/Pz+yYluLm5qaIiAg99dRT9mWenp46ePCgAgMDzQsGl9SpUyfVqlVL7du3NzsK0oBLl5Z/OnLkiGbMmKG5c+fqypUrunPnjtmRLKlkyZKaMWNGguHzAJjLzc1N58+fl6+vr32Zl5eXQkNDVaBAAROTWduUKVM0cOBA1atXT998841y5MhhdiTLS5cunc6fP5/ggz1vb2/t37+f/2uPiANwx9WsWVOnT5+2/x/Ek43S8i93797VDz/8oGbNmpkdxZJWrVqlMWPGaOrUqSpVqpTZcQDo3oHk0aNH7QeShmHI399fW7ZsSfDpt7e3t0kJrevkyZPq3LmzDh8+rG+++SbRCGJIyM3NTT4+PrLZbPZl165dk7e3d4KBbRjAwHEcgKfcn3/+6bxzj+ChUVrgkGzZsunGjRu6e/euMmTIkOgaZt6ogLTn5uaW4CBSuldc7i+7/+e4uDgz4jmFyZMnq0+fPipRokSiIXz37NljUirrmT179kNt16FDh1RO8uTiAPzh3blzR+nTpzc7BtKIyw15jEczYcIEsyMA+JcNGzaYHcGpnT59WkuXLlX27NnVpEkT5h15AMpI6rl/AE5huef111/X5MmTkz1DvGvXLnXs2NE+/DaefPxmxkMZMmSIBg4caH/Dunr1qrJly2ZyKrgqNzc31axZU5999pmefvpps+OY7v5ITnDc9OnT1a9fP9WtW1cHDx5kEBakCg7AHXfw4EEFBQVpxowZatCggX35nTt3NHToUH3++efq1KmTiQmR1lxunhakzMiRIxUdHW3/OiAgQCdOnDAxEVzZzJkzVaNGDfXs2dPsKHBiL7zwggYMGKDJkydr2bJlFBakmvsH4GvWrEmw/M6dOxo0aJCqVq2q5557zqR01rRjxw516tRJL730krp27aro6Gjt2rVL5cqV07x587Rq1SpNmzbN7JhIQ5SW/y8qKkorVqzQkSNHzI5iSf++9YlboR6P2rVra/jw4bpx44bZUZxKx44dNXToUG3dutXsKHBicXFxCg0N1euvv252FDzhOAB3nLu7uz755BP99ttv2rp1q4oWLaqqVauqWrVqOnDggOrVq2d2RKfl5uam2rVra/fu3WZHcYjLlpaWLVvaZ0C+efOmKlasqJYtW6pMmTJaunSpyengKvLnz6/169czqelDio+P148//qimTZuaHQVPgLVr1ypfvnxmx4AL4AA85Tw8PJQ+fXpFRkYqQ4YMqlatmry8vMyO5dSc9WoFly0tmzZtss9yvHz5chmGoWvXrmnixIkaMWKEyemsx2az6fr164qKilJkZKRsNpuio6MVFRWV4AHHzJo1Sxs2bNChQ4fMjmJpx44d0wcffKB8+fKpZcuWZscBgBThAPzhGYah0aNHq2LFiipXrpzOnTunsWPH6t1331WTJk104cIFsyM6LWe9WsFlS0tkZKSyZ88uSVq9erWaN2+uzJkzq3Hjxjp27JjJ6azHMAwVLVpU2bJlU/bs2RUdHa3y5csrW7ZsypYtm7JmzcqN+Q66fPmyfTQ2Zi1P7ObNm5o9e7aef/55lSxZUmPHjtXAgQN18eJFrVixwux4APDQOAB3XJUqVTRp0iQtXrxYwcHB8vHx0TvvvKP9+/fr2rVrCgoK0sKFC82O6VSc/WoFlx09zN/fX7/99puyZ8+u1atXa8GCBZLujYqVMWNGk9NZD0OqPh6GYeiXX37RjBkztHLlSnl7e6t3795mx7KUHTt26Ntvv9XChQtVtGhRtWvXTosXL1a+fPlUt25dCh4Ap1OlShWFh4dr8eLFeumllyRJ77zzjl544QW98cYbCgoK0ldffaVWrVqZnNQ6AgMD9dNPP9k/YL6vYMGC2rhxoyZMmKDOnTuzzx7CsWPHNHPmTM2ePVtXr15NMBqbM3HZySWnTJmiXr16ydPTUwEBAdqzZ4/c3Nw0adIkLVu2jIN0PFanTp3SzJkzNWvWLJ09e1avvfaaXn/9ddWqVUvp0qUzO56luLu7q0ePHurWrVuC+QrSp0+v/fv3KygoyMR0AOC41q1ba8qUKYkOwKV7H2ZNmDBBgwcPTjBKp6sLDw+Xv79/oolz/+nYsWMqUqRIGqZyHjdv3tSiRYs0Y8YMbd++XXFxcRo/frw6derktB/+uWxpke6Ni37mzBnVq1fP/g+4atUqZc2aVdWqVTM5HZxdbGysli1bpm+//Vbbtm1Tw4YN1bZtW7Vp04aD7weoX7++tm/frpdeeknt27dXgwYNZLPZKC1INX5+fqpZs6Zq1qypGjVqMLkfHjsOwB2XLl06RUREyNfX1+woTiWpqxVat26tfPnyOf17qEuXlvvu74IH/TIBHJUzZ04FBQWpXbt2evXVV+33/HDw/d/OnDmj4OBgBQcH6+bNm2rVqpWmTJmi0NBQRlrDYzd//nyFhIRo48aNOnr0qJ566inVqFHDXmL4P+eY8PBw5c2bl7PI/8ABuOPc3Nx0/vx59pmDnuSrFVz2RnxJmjNnjkqXLq1MmTIpU6ZMKlOmjObOnWt2LDwh4uLiZLPZZLPZePN2kL+/v4YMGaKTJ09q7ty5unDhgtzd3dWkSRMNGjRIe/bsMTui09m0aZMiIyPNjmFJbdq00bRp0/THH38oIiJC48ePt7/xlypVyux4TicwMFBBQUFatmyZ2VEsg8+HkVZq166tGTNm6JNPPtHq1aufqP97Lnsj/rhx4zR48GC9++67qlatmgzD0NatW9WtWzddunRJffr0MTsinFxERISWLl2qGTNmqFevXmrYsKHatWvHGT0H1atXT/Xq1dPVq1f13XffaebMmfr0008VFxdndjSnUrNmTWXLlk2DBg1Sv379zI5jOdHR0dqyZYv9jMvevXtVunRp1ahRw+xoTmfDhg06efKklixZombNmpkdB07s22+//c/7L5xtrpHU9ssvv9ivVnj77bftVytIzn9FkcteHlagQAENGzYs0UzIs2fP1scff6yTJ0+alAxPorCwMAUHB2v27Nk6e/as2rRpo44dO6p27dqchUmBPXv2qEKFCmbHcCqnT5/WyZMntWbNGo0ePdrsOJby7LPPKjQ0VKVKlVLNmjX1/PPPq3r16sqaNavZ0fCEcHNz04gRIzgAd4Cbm5vy5cv3wPdIm82mEydOpGEq57N27VrNnDlTK1askL+/v1q0aKEWLVo45Xuoy5aWjBkz6uDBgypcuHCC5ceOHVPp0qV169Ytk5JZW0xMjMaMGaN169bpwoULio+PT7CeXx4PFh8fr9WrV2vmzJn68ccf5eXlpUuXLpkdy1LCw8Mfarv8+fOnchK4iuzZs8tms6lu3br2G/K5jyVlbt26pcmTJ6t///5mR7EUDsAdxz0tj9c/r1YIDQ11yqsVXLa0lCpVSm3bttWgQYMSLB8xYoQWLlyoAwcOmJTM2tq0aaOQkBC1b99eefLkSXSqsVevXiYlcz4XL17U3Llz1bdvX7OjWMo/39STGiTDMAzZbDan/IWbWnbs2KGnn37avu/u76P7YmNjtXLlSrVs2dKsiJYXGhqqjRs3KiQkRJs3b5abm5tq1KihWrVqqVu3bmbHs5RLly7p999/V/r06VWnTh2lS5dOd+7c0ZQpUzR69GjdvXuXD2P+hQNwxzF4Qcq0a9dOtWvXVs2aNVWwYMEkt3HWqxVctrQsXbpUrVq1Ut26dVWtWjXZbDZt2bJF69at06JFi/TKK6+YHdGSsmbNqlWrVjEkdApcv349wQ1xbm5uTjtWempyd3dXvnz51LFjR7300ktyd0/61ruyZcumcTLr+vebu7e3t/bt22d/w/r777/l5+dH0XtIu3fv1uTJk/Xdd98pPj6e/fYP27ZtU+PGjRUZGSmbzaaKFSsqODhYTZs2VXx8vHr37q1OnTopc+bMZke1FA7AHUfRS5k6depo+/btunXrlvLly6datWqpdu3aqlWrlvz9/c2O90hcdvSw5s2b6/fff1fOnDm1YsUKLVu2TDlz5tSOHTsoLA+QLVu2JCfHQmL79u1T48aN7V/7+fkpW7Zs9kfWrFm1a9cuExNa019//aW3335bCxcuVOPGjTV37lxlyJBBZcuWTfDA//n3Z09JfRblop9PPZS9e/dq/PjxatKkibJnz67KlSvrwIED6tWrl3744Qez41nK4MGD1aBBA4WGhqpXr17auXOnXnzxRX300Uc6duyY3n33XQpLEvj5c9zQoUP5YC8F1q1bp2vXrmnjxo3q0qWLzpw5o7fffluBgYEqXLiw3nzzTc2fP9/smCnismdakvP333/r66+/1pAhQ8yOYknfffedVq5cqdmzZ/PG9B86d+6swoUL64MPPpAkeXl56euvv1bevHllGIZmzpwpwzAYZvsBtmzZouDgYC1evFhBQUHq3LmzOnfuLDc3l/28JUn//kTSy8tL+/fv50zLQ3J3d1f58uXtc7M8//zz8vb2NjuWJeXMmVMhISEqWbKkbty4IS8vLy1YsECvvvqq2dEsbdiwYXrvvfd433xI4eHhDt23ePbsWeXNmzcVEzm327dva/v27Vq1apWmTZum6Ohop3w/oLT8y/79+1WhQgWn/MdMC+XLl1dYWJgMw1BgYKDSp0+fYD3zZ/yf4sWLa/r06apevbqkxAeSv//+u1q2bKnTp0+bGdMp/P333/b7qS5evMjZvn+htDyaqKgoSspDSur/2t69exMNaoP/wwG445566ik1adJEXbp00TPPPJPkNpGRkVq0aJG+/PJLde3aVT169EjjlNZ369Ytbd26VRs3btSGDRu0c+dOBQQEqEaNGpo+fbrZ8RzmsvO0IGWaNm1qdgSncebMmQRvVJ988oly5sxp/zpPnjz6+++/zYjmNLZt26aZM2dq8eLFKlasmL766iuGoU3G4cOHdf78eUn3LkX5448/FB0dLUncFP0fvL29de3aNS1ZskRhYWF67733lD17du3Zs0dPPfWUyx9A/pPNZtP169eVMWNG+4APN27cUFRUVILtKIH/p1KlShyAO+jIkSMaNWqUXnjhBaVPn14VK1aUn5+fMmbMqKtXr+rw4cM6dOiQKlasqM8++0wNGzY0O7JlbNiwwf7YuXOnChYsqBo1aujdd99VjRo1lCdPHrMjphhnWv6FMy14XLJnz64ff/wx2UELtm7dqpdeeklXrlxJ42TWFhERoTlz5ig4OFhXr17Va6+9ps6dO6tkyZJmR7MsNzc32Wy2JK+bv7+cEdeSFxoaqjp16ihr1qw6deqU/vzzTxUsWFCDBw/W6dOnNWfOHLMjWsb9/2v3/XukOv6vJXblyhWNGjVKM2fO/M8D8I8++ogD8H+4deuWfvrpJ23evFmnTp3SzZs3lTNnTpUvX14NGjRQqVKlzI5oOW5ubsqfP78GDhyo5s2bK1euXGZHemwoLf9CacHjUqdOHVWoUEGfffZZkuv79eunffv2ad26dWmczNoyZMggPz8/dejQQS+//HKiSxDvK1OmTBons66HvcQwICAglZM4p7p166pChQoaO3Zsgkvrtm3bprZt2+rUqVNmR7SMkJCQh9quRo0aqZzE+XAAjrQwYMAAhYSEaO/evSpWrFiCe/WcvcC4XGn5rzkxLl68qHnz5lFakhEXF6fx48dr0aJFCg8P1+3btxOs56zB/1m6dKlat26tCRMm6O2337bfPB4XF6cpU6aoX79+mjdvnlq0aGFyUmv550329z/B/fevKT7JxePk4+OjPXv2qFChQglKy+nTp1WsWDEmGwbgdKKjo7V582Zt3LhRGzdu1N69e1W0aFH7/FPOeOzhcve07N279z+3ef7559MgiXMaNmyYvv32W/Xt21eDBw/Whx9+qFOnTmnFihWMuPYvzZs3V9++fdWjRw8NGjRIBQsWlM1mU1hYmKKjo9W3b1+n/KWR2k6ePGl2BKcTHh7+UNs5cjOwK8mYMWOiezIk6c8//3T6TyZTy9mzZ7V06VIdPXpUNptNRYsWVbNmzbj/B7AIT09PNWzY0H654ZUrVzRu3DhNmjRJ06ZNc8oP/lzuTAseTaFChTRx4kQ1btxYXl5e2rdvn33Z9u3bNW/ePLMjWs727ds1f/58HTt2TJJUpEgRtWnTRpUrVzY5GZ4U6dKls//5/q907jN4eG+99ZYuXryoRYsWKXv27AoNDVW6dOnUtGlTPf/885owYYLZES1lypQp6tu3r27fvi0fHx8ZhqGoqChlyJBB48aN0zvvvGN2RMDlxcfHa+fOnfYzLVu3blV0dLTy58+vWrVqKTg42OyIDqO0wCFZsmTRkSNHlD9/fuXJk0erVq1ShQoVdOLECZUvX16RkZFmR4QTY2jQlHF3d1e+fPnUsWNHvfTSS3J3T/okOpNyJi0qKkqNGjXSoUOHdP36dfn5+en8+fOqUqWKfvrpJ2XJksXsiJaxatUqNWnSRL1791a/fv3sIxFFRETos88+06RJk7Ry5Uo1atTI5KSAa/rss8+0YcMGbd26VdevX1fevHlVs2ZN1apVS7Vq1VKBAgXMjphilBY4pFixYpozZ46effZZVa9eXY0bN9bAgQO1cOFC9ejRQxcuXDA7oiVw8J0yTz31lF5++WW9+eabDA3qgPPnz2v27NmaNWuWrl69qnbt2qlz584qUaKE2dGcyvr167Vnzx7Fx8erQoUKqlu3rtmRLKdGjRqqXr26RowYkeT6jz76SJs3b37oG/YBPF5+fn4JSsqTNIcSpQUOGThwoLy9vTVo0CAtWbJEbdq0UWBgoMLDw9WnTx+NGTPG7IiWwMF3yjA06KPbsmWLgoODtXjxYgUFBalz587q3LlzggEOgJTy9vbWzp07VaxYsSTX//nnn6pYsaKuX7+exskAPOkoLXgk27dv17Zt21S4cGG9/PLLZsexDA6+Hw1Dgz66v//+W23atFFISIguXryo7Nmzmx3Jch52/pXXX389lZM4D09PT4WGhqpgwYJJrj9x4oTKlCljn9gUQNp50q/yoLQAqYiDb6S1bdu2aebMmVq8eLGKFSumTp066a233uJMSxKyZcuW7DqbzaaYmBjdvXuXAQz+4dlnn1Xr1q3Vp0+fJNePGzdOCxcu1O+//57GyQA86Vd5uNyQx0iZ48ePKzIyUk8//bR92bp16zRixAjFxMSoadOmGjRokIkJrSljxoxq1qyZmjVrZnYUPMEiIiI0Z84cBQcH6+rVq3rttde0bds2lSxZ0uxolnb16tUkl0dERGjYsGGaOXOm6tWrl8aprO2dd97R22+/LQ8PD7311lv2QR/u3r2rr7/+Wh999JGmTJlickrANR05ckSjRo3SCy+88J9XeXz22WdOd5UHZ1rwUF555RWVKlVKw4cPl3RvLo2SJUuqevXqKl68uGbOnKnhw4erd+/e5gYFXFCGDBnk5+enDh066OWXX1b69OmT3K5MmTJpnMy5XL9+XZ9++qm+/PJLlSxZUqNHj1atWrXMjmU5/fv317hx4+Tl5aVChQpJkn3+qZ49e2r8+PEmJwRc25N6lQelBQ/F399fixYtUpUqVSRJI0aM0JIlS7Rv3z5J0owZMzRp0iT71wDSzj8v/bo/P8u/f7UzT0vybt++rcmTJ2vUqFHKmTOnRowYwcSv/+Hf808VLVpUrVu3Zv4pAKmG0oKHkilTJh09elT+/v6SpDp16qhq1ar2My9hYWF6+umnde3aNRNTAq7p9OnTD7VdQEBAKidxLoZhaM6cORoyZIju3r2roUOHqnPnzgkm6wQAWAP3tOChZM+eXREREfL391d8fLx27dqV4EbM27dvJ/pkF0DaoIykTNmyZRUWFqYePXqod+/eypw5s2JiYhJt5+3tbUI663nSRyYCYG0MJ5OE2rVra/jw4bpx44bZUSyjRo0aGj58uM6cOaMJEyYoPj4+wbXehw8fVmBgoHkBARcVHh7u0PZnz55NpSTO5+DBg7p586bGjh2rvHnzKlu2bAkeWbNmfeAIY66mUqVKevPNN7Vjx45kt4mMjNT06dNVqlQpLVu2LA3TAXjScaYlCfnz59f69ev17bffPvRlF0+6kSNHql69egoMDJSbm5smTpyoLFmy2NfPnTtXtWvXNjEh4JoqVar0RA9xmZo2bNhgdgSn8qSPTATA2rin5QGio6Pl6elpdgzLuHPnjg4fPqxcuXLJz88vwbr9+/crX758ypEjh0npANfERKZIa0/qyEQArI3S8i+XL1/W3LlzGboXgFPhQBIA8CSjtOjeCDK//PKLZsyYoZUrV8rb21sXL140OxYAAAAAufiN+KdOndKQIUMUEBCgRo0aKWPGjFq1apXOnz9vdjQAAAAA/5/LlZbY2FjNnz9fderUUYkSJXTw4EGNGzdObm5uGjhwoOrWrcsY/QAAAICFuNzoYXnz5lVQUJDatWunJUuW2IezbNOmjcnJAAAAACTF5c60xMXFyWazyWazcUYFAAAAcAIuV1oiIiL01ltvaf78+cqdO7eaN2+u5cuXy2azmR0NAAAAQBJcevSwsLAwBQcHa/bs2Tp79qzatGmjjh07qnbt2pyFAQAAACzCpUvLffHx8VqzZo1mzJihH3/8UZ6enrp8+bLZsQAAAACI0pLIpUuXNGfOHPXt29fsKAAAk23atElly5aVj4+P2VEAwKW53D0tV69e1aRJkxQVFZVoXWRkpObPn68uXbqYkMz51a5dW8OHD9eNGzfMjgIAj0XNmjVVsGBBffHFF2ZHAQCX5nKlZfLkydq0aZO8vb0TrfPx8dHmzZs1efJkE5I5v/z582v9+vUqUaKE2VEA4LE4efKkli5dqkuXLpkdBQBcmstdHlauXDl98cUXqlOnTpLr161bp/79+2vv3r1pnOzJER0dLU9PT7NjAMAD8bsKAJyHy51pCQsLU5EiRZJdX6RIEYWFhaVhoifD5cuXNWHCBEniIACAUyhdurQ2bdpkdgwAwENwudKSLl06nTt3Ltn1586dk5uby+2WFDEMQ2vWrFHLli3l5+enkSNHmh0JAB7aq6++qrp166pfv36KjY01Ow4A4AFc7ui8fPnyWrFiRbLrly9frvLly6ddICd06tQpDRkyRAEBAWrUqJEyZsyoVatW6fz582ZHA4CHNnbsWG3atEk///yzKlSooD179pgdCQCQDHezA6S1d999V61bt1a+fPn09ttv2yeRjIuL05QpUzR+/HjNmzfP5JTWExsbq2XLlunbb7/Vtm3b1LBhQ40bN05t2rTRwIEDFRQUZHZEAHBY5cqVtXfvXn300UeqVq2a6tWrJ3f3hG+Ny5YtMykdAOA+lystzZs31/vvv6+ePXvqww8/VMGCBWWz2RQWFqbo6Gi99957atGihdkxLSdv3rwKCgpSu3bttGTJEmXLlk2S1KZNG5OTAcCjiY2N1YULF2Sz2eTj45OotAAAzOeSv5lHjhypJk2a6Pvvv9fx48dlGIaef/55tW3bVs8884zZ8SwpLi5ONptNNpvNfnYKAJzdL7/8os6dO8vPz0979uxR8eLFzY4EAEiCyw15jJS5deuWli5dqhkzZmj79u1q2LCh2rVrp1atWmnfvn1cHgbA6XTt2lWzZ8/WoEGD9OGHH/KBDABYmEuVlvDwcOXPn/+htz979qzy5s2biomcU1hYmIKDgzV79mydPXtWbdq0UceOHVW7dm3e9AE4jVKlSmnOnDmqUKGC2VEAAP/BpUYPq1Spkt58803t2LEj2W0iIyM1ffp0lSpVipsvk1GoUCGNGDFCp0+f1qpVqxQbG6sXX3xRvr6+ZkcDgIe2Z88eCgsAOAmXOtNy5coVjRo1SjNnzlT69OlVsWJF+fn5KWPGjLp69aoOHz6sQ4cOqWLFivroo4/UsGFDsyM7jUuXLmnOnDnq27ev2VEA4KF88sknD7XdkCFDUjkJAOC/uFRpue/WrVv66aeftHnzZp06dUo3b95Uzpw5Vb58eTVo0EClSpUyO6LlXL16Vd999506dOggb2/vBOsiIyM1Z86cJNcBgFU9aE4um82mP//8U7du3VJcXFwapgIAJMUlSwscN3z4cIWGhmrx4sVJrm/ZsqXKlSunQYMGpXEyAHi89u3bp4EDB2r9+vXq1KmTpk2bZnYkAHB5LnVPC1Ju6dKl6tatW7Lru3btmmyhAQBncPLkSbVr106VKlWSj4+PDh06RGEBAIugtOChhIWFqUiRIsmuL1KkiMLCwtIwEQA8HpcuXVKPHj1UvHhxRUREaNu2bVq4cOEDf+cBANIWpQUPJV26dDp37lyy68+dOyc3N/47AXAeMTExGjZsmAoVKqRt27bpxx9/1Lp161SpUiWzowEA/sXd7ABwDuXLl9eKFStUuXLlJNcvX778gTe1AoDVFCpUSNevX1ePHj3Upk0b2Ww2hYaGJtquTJkyJqQDAPwTN+LjoSxdulStW7fW+PHj9fbbb9snkYyLi9OUKVPUr18/zZs3Ty1atDA5KQA8nH+eHbbZbPrn2+H9r202G6OHAYAFUFrw0D788EONHj1aXl5eKliwoGw2m8LCwhQdHa333ntPY8aMMTsiADy006dPP9R2AQEBqZwEAPBfKC1wyI4dO/T999/r+PHjMgxDRYsWVdu2bfXMM8+YHQ0AAABPKEoLAMDlhIeHK3/+/A+9/dmzZ5U3b95UTAQAeBCGe8J/Cg8Pd2j7s2fPplISAHg8KlWqpDfffFM7duxIdpvIyEhNnz5dpUqV0rJly9IwHQDg3zjTgv/01FNP6eWXX9abb76Z7GVgkZGRWrRokb788kt17dpVPXr0SOOUAPDwrly5olGjRmnmzJlKnz69KlasKD8/P2XMmFFXr17V4cOHdejQIVWsWFEfffSRGjZsaHZkAHBplBb8J97cATypbt26pZ9++kmbN2/WqVOndPPmTeXMmVPly5dXgwYNVKpUKbMjAgBEaYEDeHMHAACAGSgtAAAAACyNG/EBAAAAWBqlBQAAAIClUVoAAAAAWBqlBQAAAIClUVoAAE6tZs2a6t27t9kxAACpiNICAC7qwoUL6tq1q/Lnzy8PDw/lzp1bDRo00G+//SZJstlsWrFihcPfNzAwUBMmTHgsGW/fvq2xY8eqbNmyypw5s3LmzKlq1aopODhYd+7ckSQtW7ZMw4cPT5XXBwBYg7vZAQAA5mjevLnu3Lmj2bNnq2DBgvr777+1bt06Xblyxexoku4VlgYNGmj//v0aPny4qlWrJm9vb23fvl2ff/65ypcvr3Llyil79uxmRwUApDYDAOByrl69akgyNm7cmOT6gIAAQ5L9ERAQYBiGYRw/ftx4+eWXDV9fXyNLlixGxYoVjbVr19qfV6NGjQTP++fbzNatW43q1asbGTNmNPLly2f06NHDiI6OTjbjp59+ari5uRl79uxJtO727dv259aoUcPo1atXsq8fHR1teHl5GYsXL07wPX744Qcjc+bMRlRU1EPtMwCAebg8DABckKenpzw9PbVixQrFxsYmWr9z505JUnBwsCIiIuxfR0dHq1GjRvr111+1d+9eNWjQQC+99JLCw8Ml3btUK1++fPrkk08UERGhiIgISdKBAwfUoEEDNWvWTKGhoVq4cKG2bNmid999N9mM33//verWravy5csnWpc+fXplyZIl0fKkXj9Llixq3bq1goODE2wbHBysFi1ayMvL6yH3GgDALJQWAHBB7u7umjVrlmbPnq2sWbOqWrVqGjRokEJDQyVJuXLlkiRlzZpVuXPntn9dtmxZde3aVaVLl1aRIkU0YsQIFSxYUD/88IMkKXv27EqXLp28vLyUO3du5c6dW5L02WefqW3bturdu7eKFCmiqlWrauLEiZozZ45u3bqVZMZjx46pePHiDv29knv9Ll26aM2aNTp37pwk6dKlS/rf//6nTp06ObjnAABmoLQAgItq3ry5zp07px9++EENGjTQxo0bVaFCBc2aNSvZ58TExOj9999XUFCQsmbNKk9PT/3xxx/2My3J2b17t2bNmmU/w+Pp6akGDRooPj5eJ0+eTPI5hmHIZrM9yl/R7plnnlHJkiU1Z84cSdLcuXOVP39+Pf/884/l+wMAUhelBQBcWMaMGVWvXj0NGTJE27ZtU8eOHTV06NBkt3/vvfe0dOlSjRw5Ups3b9a+fftUunRp3b59+4GvEx8fr65du2rfvn32x/79+3Xs2DEVKlQoyecULVpUR44ceaS/3z916dLFfolYcHCw3njjjcdWigAAqYvSAgCwCwoKUkxMjKR7943ExcUlWL9582Z17NhRr7zyikqXLq3cuXPr1KlTCbbJkCFDoudVqFBBhw4dUuHChRM9MmTIkGSWtm3b2u+d+be7d+/ac/5bUq8vSe3atVN4eLgmTpyoQ4cOqUOHDsnuBwCAtVBaAMAFXb58WbVr19Z3332n0NBQnTx5UosXL9bYsWPVpEkTSffmO1m3bp3Onz+vq1evSpIKFy6sZcuW2c+UtG3bVvHx8Qm+d2BgoDZt2qSzZ8/q0qVLkqQBAwbot99+U/fu3bVv3z4dO3ZMP/zwg3r06JFsxt69e6tatWqqU6eOvvrqK+3fv18nTpzQokWL9Oyzz+rYsWNJPi+p15ekbNmyqVmzZnrvvfdUv3595cuX75H2IQAg7VBaAMAFeXp66tlnn9X48eP1/PPPq1SpUho8eLDefPNNTZ48WZL0xRdfaO3atfL397eP4DV+/Hhly5ZNVatW1UsvvaQGDRqoQoUKCb73J598olOnTqlQoUL2G/jLlCmjkJAQHTt2TNWrV1f58uU1ePBg5cmTx/68jz/+WIGBgfavPTw8tHbtWr3//vv6+uuvVblyZVWqVEkTJ05Uz549VapUqST/bkm9/n2dO3fW7du3uQEfAJyMzTAMw+wQAAB07NhRkh44EMCj+v7779WrVy+dO3cu2cvSAADW4252AAAAJCkkJESbNm1Kle9948YNnTx5UqNHj1bXrl0pLADgZLg8DABgCSdPnpS/v3+qfO+xY8eqXLlyeuqpp/TBBx+kymsAAFIPl4cBAAAAsDTOtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwNEoLAAAAAEujtAAAAACwtP8HfWrYCVzr5YoAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sales.groupby(['State','City'])[['Price_each']].sum().plot(kind='bar',figsize=(10, 6))\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "29896a55", + "metadata": {}, + "source": [ + "The highest sale is in `San Francisco`\n", + "\n", + "
\n", + "Why San Francisco?\n", + "
\n", + "It is probably because the products we are analyzing here include mostly electronic devices:\n", + "\n", + "> sales.Product.unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "0e6532fe", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['USB-C Charging Cable', 'Bose SoundSport Headphones',\n", + " 'Google Phone', 'Wired Headphones', 'Macbook Pro Laptop',\n", + " 'Lightning Charging Cable', '27in 4K Gaming Monitor',\n", + " 'AA Batteries (4-pack)', 'Apple Airpods Headphones',\n", + " 'AAA Batteries (4-pack)', 'iPhone', 'Flatscreen TV',\n", + " '27in FHD Monitor', '20in Monitor', 'LG Dryer', 'ThinkPad Laptop',\n", + " 'Vareebadd Phone', 'LG Washing Machine', '34in Ultrawide Monitor'],\n", + " dtype=object)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sales.Product.unique()" + ] + }, + { + "cell_type": "markdown", + "id": "9e7f4d1e", + "metadata": {}, + "source": [ + "# When is good time to advertise?" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "0f2565d9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDProductQuantity_orderedPrice_eachOrder_dateStreetCityStateZip_codeYearMonth
0176558USB-C Charging Cable211.952019-04-19 08:46:00917 1st StDallasTX7500120194
1176559Bose SoundSport Headphones199.992019-04-07 22:30:00682 Chestnut StBostonMA221520194
2176560Google Phone1600.002019-04-12 14:38:00669 Spruce StLos AngelesCA9000120194
3176560Wired Headphones111.992019-04-12 14:38:00669 Spruce StLos AngelesCA9000120194
4176561Wired Headphones111.992019-04-30 09:27:00333 8th StLos AngelesCA9000120194
\n", + "
" + ], + "text/plain": [ + " ID Product Quantity_ordered Price_each \\\n", + "0 176558 USB-C Charging Cable 2 11.95 \n", + "1 176559 Bose SoundSport Headphones 1 99.99 \n", + "2 176560 Google Phone 1 600.00 \n", + "3 176560 Wired Headphones 1 11.99 \n", + "4 176561 Wired Headphones 1 11.99 \n", + "\n", + " Order_date Street City State Zip_code Year \\\n", + "0 2019-04-19 08:46:00 917 1st St Dallas TX 75001 2019 \n", + "1 2019-04-07 22:30:00 682 Chestnut St Boston MA 2215 2019 \n", + "2 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 2019 \n", + "3 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 2019 \n", + "4 2019-04-30 09:27:00 333 8th St Los Angeles CA 90001 2019 \n", + "\n", + " Month \n", + "0 4 \n", + "1 4 \n", + "2 4 \n", + "3 4 \n", + "4 4 " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sales.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "50a162c0", + "metadata": {}, + "outputs": [], + "source": [ + "sales['hour']=sales.Order_date.dt.hour\n", + "sales['minute']=sales.Order_date.dt.minute" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "2e7e8070", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 8, 22, 14, 9, 13, 7, 10, 17, 12, 19, 15, 20, 18, 0, 11, 23, 21,\n", + " 4, 16, 5, 2, 1, 6, 3], dtype=int64)" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sales.hour.unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "d486414c", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1EAAAINCAYAAADfvvWSAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAA9hAAAPYQGoP6dpAACQtUlEQVR4nOzdeViVZf7H8fc5hx0BBURAUVER931DKy0VNZdss7KsnEZtLB3LlnFaxpqysqmc9FdZ02STme2LS6ZtLuGuuO8LioK4IPtyOOf5/YFS5JIo8Bw4n9d1dc1wuD3fz40I53ue+7lvi2EYBiIiIiIiInJJrGYHEBERERERqUrURImIiIiIiJSBmigREREREZEyUBMlIiIiIiJSBmqiREREREREykBNlIiIiIiISBmoiRIRERERESkDNVEiIiIiIiJl4GF2ADM5nU6OHj1KQEAAFovF7DgiIiIiImISwzDIysoiMjISq/Xi15rcuok6evQoUVFRZscQEREREREXcfjwYerVq3fRMW7dRAUEBADFX6jAwEBTs9jtdhYvXkx8fDyenp6qXU3rmlnbHedsZm13nLOZtd1xzmbW1pzdY85m1nbHOZtZ2x3nfD6ZmZlERUWV9AgX49ZN1NklfIGBgS7RRPn5+REYGGjKN6+71dac3WPOZtZ2xzmbWdsd52xmbc3ZPeZsZm13nLOZtd1xzhdzKbf5aGMJERERERGRMlATJSIiIiIiUgZqokRERERERMrAre+JuhSGYVBUVITD4ajQOna7HQ8PD/Lz8yu8lmpXjTnbbDY8PDy0/b6IiIiIi1ETdRGFhYWkpKSQm5tb4bUMwyA8PJzDhw9X+otmd6xdVebs5+dHREQEXl5elZRORERERP6ImqgLcDqdHDhwAJvNRmRkJF5eXhX6YtvpdJKdnU2NGjX+8HAv1a66dS+1tmEYFBYWcvz4cQ4cOEBMTEyl5xQRERGR81MTdQGFhYU4nU6ioqLw8/Or8HpOp5PCwkJ8fHxMeVHvbrWrwpx9fX3x9PQkKSmpZLyIiIiImE9vbf8BvfsvZtL3n4iIiIjr0Ss0ERERERGRMlATJSIiIiIiUgZqoqTc9OrViwkTJpgdo4RhGIwePZrg4GAsFguJiYnlXuPee+9l6NCh5f68IiIiIuK6tLGEVFuLFi1i1qxZ/PzzzzRq1IjQ0FCzI4mIiIhINaAmSlyaw+HAYrFc1gYL+/btIyIigu7du1dAMhERERFxV1rOVwaGYZBbWFRh/+UVOs77uGEYl5yxV69ejB8/nscee4zg4GDCw8OZPHlyyecPHjx4ztK206dPU6tWLX7++WcAfv75ZywWC9999x3t27fH19eX6667jrS0NL799luaN29OYGAgd9xxxzkHERcVFfHggw9Ss2ZNQkJCePLJJ0vlLyws5LHHHqNu3br4+/sTFxfHihUrSj4/a9Ysatasyfz582nRogXe3t4kJSWdd65Lly6lS5cueHt7ExERwd/+9jeKioqA4mV248aN49ChQ1gsFho2bHje50hKSmLw4MHUqlULf39/WrZsycKFC4HiBu6+++4jOjoaX19fYmNj+fe//33Rr79hGEydOpVGjRrh6+tL27Zt+eyzz0o+n56ezl133UWTJk3w9/cnJiaG995776LPKSIiIiKuRVeiyiDP7qDF099Vet3tz/bDz+vS/6ref/99Hn74YVavXs3KlSu599576dGjB3379i1T3cmTJzNjxgz8/PwYNmwYw4YNw9vbmzlz5pCdnc2NN97I9OnTefzxx0vVvu+++1i9ejXr1q1j9OjRNGjQgFGjRgEwcuRIDh48yNy5c4mMjOSLL77glltuYdOmTcTGxgKQm5vLCy+8wH/+8x9CQkIICws7J9uRI0e4/vrruffee/nf//7Hzp07GTVqFD4+PkyePJl///vfNG7cmLfffpu1a9dis9nOO8cHH3wQu93OsmXL8Pf3Z/v27dSoUQMoPs+pXr16fPLJJ4SGhpKQkMDo0aOJiIhg2LBh532+J598ki+++II333yTmJgYli1bxl133UXt2rXp2bMnTz31FDt27ODTTz+lQYMG7N+/n7y8vDL9vYiIiIiIudREVUNt2rThH//4BwAxMTHMmDGDH374ocxN1HPPPUePHj0AuO+++5g0aRL79u2jUaNGANxyyy389NNPpZqoqKgoXnvtNSwWC7GxsWzZsoXXXnuNUaNGsW/fPj766COSk5OJjIwEYOLEiSxYsIBZs2bxwgsvAGC323njjTdo27btBbO98cYbREVFMWPGDCwWC82aNePo0aM8/vjjPP300wQFBREQEIDNZiM8PPyCz3P48GFuvvlmWrduDVAyNwBPT0+eeeaZko+jo6NJSEjgk08+OW8TlZOTw6uvvsqPP/5IXFxcyfOtWLGCmTNn0rNnTw4dOkS7du1o3749gYGBpeqJiIiISNWgJqoMfD1tbH+2X4U8t9PpJCszi4DAgHPu//H1PP9VlAtp06ZNqY8jIiJIS0src6bfPk+dOnXw8/Mr9aK/Tp06rFmzptSf6datGxaLpeTjuLg4XnnlFRwOBxs2bMAwDJo2bVrqzxQUFJS62uTl5XXOHH5vx44dxMXFlarVo0cPsrOzSU5Opn79+pc0xwcffJAHHniAxYsX06dPH26++eZStd966y3+85//kJSURF5eHoWFhbRr1+68z7V9+3by8/PPaVYLCwtp3749AH/5y1+4+eabWbduHf379+fGG2/UPVsiIiK/k5VvZ18mOJ2XfkuDSGVSE1UGFoulTMvqysLpdFLkZcPPy+OyNlH4LU9Pz1IfWywWnE4nQMlz//Y+Jbvd/ofPY7FYLvq8l8LpdGKz2Vi/fn3J8jqn00l2dnapq0W+vr6lmqPzMQzjnDFn5/RHf/a3/vznPzNgwAAWLFjA4sWLeeGFF3jllVcYN24cn3zyCQ899BCvvPIKcXFxBAQE8PLLL7N69eoLzg9gwYIF1K1bt9TnvL29ARgwYAAHDhzg888/55dffqF379488MAD/Otf/7rkzCIiItXZ6v0n+evcjaRmerDxgw28elt7agd4mx1LpBRtLOFmateuDUBKSkrJY+V5ftKqVavO+TgmJgabzUb79u1xOBykpaXRpEmTkv8aNWp00SV359OiRQsSEhJKNYMJCQkEBASc08D8kaioKO6//36++OILJk6cyDvvvAPA8uXL6d69O2PHjqV9+/Y0adKEffv2XTSTt7c3hw4dKjW/Jk2aEBUVVTKudu3aDB8+nA8++IBp06bx9ttvlymviIhIdVTkcPLakt3c8c4qUjMLAFi+9yQD/r2MpbuPm5xOpDRdiXIzvr6+dOvWjRdffJGGDRty4sQJnn766XJ7/sOHD/Pwww8zZswYNmzYwPTp03nllVcAaNq0KXfeeSd33303r7zyCu3bty/Z8a9Tp04MGjTokuuMHTuWadOmMW7cOB588EF27drFP/7xDx5++OEyXcl76KGHuP7662natCnp6en8+OOPNG/eHIAmTZrwv//9j++++47o6Gg++OAD1q5dS3R09HmfKyAggEceeYSHHnoIp9PJVVddRWZmJgkJCdSoUYN77rmHp59+mvbt29OgQQM8PT2ZP39+ST0RERF3dfR0HhPmJrLm4CkAbmwfSUP7IRak1WR3Wjb3/HcNo69pxCPxsXh56BqAmE9NlBv673//y5/+9Cc6depEbGwsL774Iv379y+X57777rvJy8ujS5cu2Gw2xo0bx+jRo0s+/9577/Hcc88xceJEjhw5QkhICJ06deLGG28sU526deuycOFCHn30Udq2bUtwcDD33XcfTz75ZJmex+Fw8MADD5CcnExgYCD9+/fntddeA+D+++8nMTGR2267DYvFwh133MHYsWP59ttvL/h8//znPwkLC+OFF15g//791KxZkw4dOvD3v/8dKL7f64knnuDgwYP4+vpy9dVXM3fu3DJlFhERqU6+25bKY59tJiPPTg1vD54b2oqBrcJYuPAQn9/UlamL9/LBqiTeXrafVftP8vrt7WkY6m92bHFzaqKqmbNnPf3WV199Verj5s2bs3LlypKPnU4n6enpBAYGAsVnTf3+bKp7772Xe++9t9RjkydPLnUG1W9rv/nmm+fNd3bHu7O73jmdTjIzM0tqn6/OhfTs2fOcjS1+a8KECUyYMOGiz/H6669f8MqVt7c377333jnnOJ3dRRCKz7X6LYvFwvjx4xk/fvx5n/PJJ5/k73//e8mcr/T+NxERkaoq3+7g+QU7+GBV8XmQbeoFMf2O9jQI8S+5X9vH08Y/h7aiR5NQHv98M5uTMxj4+nKeu7EVN7avZ2Z8cXN6BSciIiIilWrPsSyG/t8vJQ3U6Gsa8dn93WkQcv4rTP1bhfPtX6+mS8NgcgodPPTxJh7+OJHsgqLKjC1SQk2UiIiIiFQKwzCYu+YQg2esYGdqFqE1vJg1sjN/v775H97rFFnTl49Gd+OhPk2xWuCLjUcY9PpytiRnVFJ6kV+piRIRERGRCpeRZ+fBjzbyty+2kG93cnVMKAv/ejW9YsP++A+fYbNa+GufGD4eE0dkkA8HT+Zy05u/8M6y/TpTSiqVmigRERERqVDrk9IZ+PpyFmxOwcNq4W8DmvH+yC6EBfhc1vN1bhjMwr9eTf+W4dgdBs8v3MHIWWs5nlVQzslFzk9N1B/4/QYLIpVJ338iIlKVOZ0G//fTXobNXElyeh5Rwb58en8c9/dsjNVquaLnrunnxZt3deD5G1vh7WFl6e7jDPj3cpbpTCmpBGVuopYtW8bgwYOJjIzEYrGU2vnNbrfz+OOP07p1a/z9/YmMjOTuu+/m6NGjpZ6joKCAcePGERoair+/P0OGDCE5ObnUmPT0dEaMGEFQUBBBQUGMGDGC06dPlxpz6NAhBg8ejL+/P6GhoYwfP57CwsKyTum8PD09AcjNzS2X5xO5HGe//85+P4qI6ziVU8h321J5efFulqVYyNEN7iKlHMvMZ8R/V/Pyd7twOA0Gt41kwfiraV+/VrnVsFgs3Nm1AfPGXUVsnQBOZBdw93/X8MLCHRQWOcutjsjvlXmL85ycHNq2bcvIkSO5+eabS30uNzeXDRs28NRTT9G2bVvS09OZMGECQ4YMYd26dSXjJkyYwLx585g7dy4hISFMnDiRQYMGsX79emw2GwDDhw8nOTmZRYsWATB69GhGjBjBvHnzgOLzfQYOHEjt2rVZsWIFJ0+e5J577sEwDKZPn37ZX5CzbDYbNWvWJC0tDQA/Pz8slit7x+RinE4nhYWF5OfnV/q21+5Y29XnbBgGubm5pKWlUbNmzZJ/FyJiDsMwSE7PY+3BU6w9eIo1B06x73jOb0bY+OGV5dzTvSH3dm9ILX8v07KKuIKfdqYx8dNNnMopxNfTxjNDWnJrp3oV9lqqaZ0Avn6wR8mW6TOX7WelzpSSClTmJmrAgAEMGDDgvJ8LCgpiyZIlpR6bPn06Xbp04dChQ9SvX5+MjAzeffddPvjgA/r06QPA7NmziYqK4vvvv6dfv37s2LGDRYsWsWrVKrp27QrAO++8Q1xcHLt27SI2NpbFixezfft2Dh8+TGRkJACvvPIK9957L88//3zJuUNXIjw8HKCkkapIhmGQl5eHr69vhTZrqm1u3bLWrlmzZsn3oYhUHqfTYNexrDNNUzprD5wiNTP/nHExYTVoWy+IpduTOZ5n598/7OGd5fsZ3qU+f766EeFBl3e/h0hVVVDkYOqiXby74gAAzSMCmX5He5qE1ajw2hc6U+r5G1sztH3dCq8v7qXCD9vNyMjAYrFQs2ZNANavX4/dbic+Pr5kTGRkJK1atSIhIYF+/fqxcuVKgoKCShoogG7duhEUFERCQgKxsbGsXLmSVq1alTRQAP369aOgoID169dz7bXXnpOloKCAgoJfbzjMzMwEipchnj3U7fdCQ0OpVasWRUVFFXp/SlFREQkJCXTv3h0Pj8o9A9kda7v6nC0WCx4eHthsNoqKymeJ0Nnv8Qt9r1ckd6ztjnM2s/aV1i0ocrL1SAbrkk6zNimdDYdOk5Vf+t+eh9VCy8hAOjWoSacGtehQvybB/l7Y7Xa+80rCWbct//nlEDtSs/jPigO8v/IgN7aLZNTVDWl4gbNvrlRV/XpXxdruOOey1j54MocJn2xm29EsAEZ0q8/j8TF4e9rKnP1K5tw7NoR5D8Tx8KebWZd0mgkfJ7J01zGeHtScGt5//Du/qny9q0Nds2v/XlkyWIwr6AwsFgtffvklQ4cOPe/n8/Pzueqqq2jWrBmzZ88GYM6cOYwcObJUMwMQHx9PdHQ0M2fOZMqUKcyaNYvdu3eXGtO0aVNGjhzJpEmTGD16NAcPHmTx4sWlxnh7ezNr1izuuOOOc/JMnjyZZ5555pzH58yZg5+fX1mmLiIiVVheERzIsrA/y8L+TAtJ2VBklL4y7GU1iA4waBRg0DgQ6tcw8P6DlbWGATtPW1hyxMq+rOLns2DQLsSgT10n9bSqSKqptcctfLrfSoHTgp+HwfDGTloHm7s5ktOAxckWFiVbMbAQ6mNwb4yDqIq/KCZVVG5uLsOHDycjI+MPV7VV2Fvwdrud22+/HafTyRtvvPGH4w3DKLW06XzLnC5nzG9NmjSJhx9+uOTjzMxMoqKiiI+PL5flf1fCbrezZMkS+vbtW+mbCLhjbc3ZPeZsZm13nLOZtf+oblpWAesOprMuKZ21SafZdSyL37+FGOzvSacGtc78V5Pm4QF42P74nsnf1x4ITKR4S+e3lh3g590n2HjSwsaTVno2DeX+a6Lp1KB8bqx31a93daztjnO+lNrZBUVMnreDr/emANClYS3+dUtrIq5wKWt5zXkQsC4pnYc/3UJKRj7/3u7JxL4xjIxrcMHdAV35613d6ppd+/fOrlK7FBXSRNntdoYNG8aBAwf48ccfSzUo4eHhFBYWkp6eTq1av/4SSUtLo3v37iVjjh07ds7zHj9+nDp16pSMWb16danPp6enY7fbS8b8nre3N97e3uc87unpafpf2llmZnHH2pqzalfXuu5a29PTEw8PD/afyGHtgTP3Mx08xaFT5+602iDEj84Ng+ncsBadGwYTHep/RfdI/n7O3ZqE0a1JGNuPZvLm0n0s2HyUpbtPsHT3CTo3rMXYa5vQq2ntcrkvU9/f1b+uK9bekpzBuI82cPBkLlYL/LV3Ux68rgm2K9y6/I/qllVckzC+/evV/O3zLSzalsqLi3azcn86/7q1LbUDzn1dWJ61L5e+v81Rlvrl3kSdbaD27NnDTz/9REhISKnPd+zYEU9PT5YsWcKwYcMASElJYevWrUydOhWAuLg4MjIyWLNmDV26dAFg9erVZGRklDRacXFxPP/886SkpBAREQHA4sWL8fb2pmPHjuU9LRERcWGZeXZ+Omph/pxENhw6zcmc0sddWCzQPDyQLtHBdG4YTKeGtagTWDmbPrSILL6xfmLfpsxctp/P1yez9mA6I99bS4uIQP7SqzHXt44o1xeeIhXJ6TT47y8HeGnRTuwOg8ggH6bd3p4u0cFmR7ugs2dKzVlziGfnbS85U+q129pydUxts+NJFVTmJio7O5u9e/eWfHzgwAESExMJDg4mMjKSW265hQ0bNjB//nwcDgepqakABAcH4+XlRVBQEPfddx8TJ04kJCSE4OBgHnnkEVq3bl2yW1/z5s3p378/o0aNYubMmUDxFueDBg0iNjYWKL6HqkWLFowYMYKXX36ZU6dO8cgjjzBq1CjTl+aJiEjlKXI4GfHeOran2IDi3VS9PKy0i6pJlzMNU4cGtQj0Mfcdzoah/rxwU2sm9InhP8v38+HqQ2xPyWTcRxt5ZfEu7u/ZmBs71MXbQ0caiOs6kV3AI59u4uddxQfa9mtZh5dubkNNP9ff1v/smVKdGwYzbs5Gdh3LYsS7axjTsxET+8bi5VG5R55I1VbmJmrdunWldr47e4/RPffcw+TJk/nmm28AaNeuXak/99NPP9GrVy8AXnvtNTw8PBg2bBh5eXn07t2bWbNmlToL58MPP2T8+PElu/gNGTKEGTNmlHzeZrOxYMECxo4dS48ePfD19WX48OH861//KuuURESkCvvfyiS2p2ThZzMYe11T4pqE0qpukMs2I3UCfXhiYAvG9mrC+ysPMivhIAdP5vK3L7bw2ve7GXV1I+7oUh//S9hFTKQyrdhzgoc+SeR4VgFeHlaeGtSCu7rWr/SjQq7UOWdKLd3Pqn0nef2O9jSooJ00pfop80/oXr16XXSr70vZ7M/Hx4fp06df9FDc4ODgkh39LqR+/frMnz//D+uJiEj1dCwzn1eXFO/kOriBkzHXRJu+pv5S1fL3YkKfpoy6uhEfrTnEO8v3cyyzgOcW7GDGT3u598zBvVXhHX6p3hxO+NfiPby94gCGAU3CajBjeHuahVfdlT+/P1NqU3IGA19fwXNDWzGwVZjZ8aQK0NtcIiJSZT2/YAfZBUW0qRdIt7BTZse5LP7eHvz56kaMiGvAlxuO8NbSfRw8mcu07/fw9jId3CvmOpyey+vbbBzMLj48944uUTw9qCW+Xq55pbes+rcKp029ICbMTWTNwVNnzpSKoJveu5A/oMWfIiJSJf2y9wTfbDqK1QLPDm5BVd+XwdvDxu1d6vPDxF5Mv6M9zSMCyS108J8VB7hm6k9M+mIzB0/kmB1T3MiOlExueGMVB7MtBPh48H/DO/DCTW2qTQN1VmRNXz4a3Y2H+jTFaoEvE1OYttVGXqHD7GjiwtREiYhIlVNY5OSpr7cCMKJbA1pGVt1lRb9ns1oY3DaSheOv4r2RnencsBaFDicfrTnMda/8zLiPNrL96KWfZSJyOewOJ498uoms/CLq+xt8MzaOgW0izI5VYWxWC3/tE8PHY+IIreFFSq6FV7/fY3YscWFqokREpMp5Z/l+9h/PIbSGNw/Hx5odp0JYLBaujQ3j0/u78+n9cVwbWxunAfM2HeX615fzp1lrWZ+UbnZMqabeXrafbUczCfL1YFQzB/Vq+ZodqVJ0bhjMize2BOD9VYdYc6BqLhOWiqcmSkREqpTk9Fym/1j8DvETA5sR5Fs1NpK4Ep0bBvPeyC4sGH8Vg9pEYLXAjzvTuP0/a/kuuYqvYxSXs+dYFv8+cxXmyeubEehm9wf1bFqbrrWdGAY89tkmLeuT81ITJSIiVcoz87aTb3fSNTqYoe3qmh2nUrWMDGLG8A78OLEXwzrVA+Dbw1ZW691yKScOp8Gjn22m0OHk2tja3NC2+i7hu5ihDZ3UCfTm4MlcXv5ul9lxxAWpiRIRkSrjhx3HWLL9GB5WC/8c2qrKnU9TXhqG+jP1lrbc0qEuBhYmfraF9JxCs2NJNfDfFQdIPHyaAG8PptzU2m3/jfl5wPM3tADgvYQDWtYn51ATJSIiVUK+3cHkedsAuO+qaJrWCTA5kfmeGhhLmI/BscwCHv1s8yWd1ShyIQdO5PCvxcVXXf4+sDkRQe5xH9SF9Gxam2Gd6mlZn5yXmigREakS3vhpL4dP5RER5MP43jFmx3EJfl4e3NPUgafNwvc7jvHBqiSzI0kV5XQaPP7ZZgqKnPRoEsLtnaPMjuQSnhzUgoggHw6ezGXqdzvNjiMuRE2UiIi4vAMncnhr6X4Anh7UAn9vnRV/Vj1/eLxfUwCeW7CDHSna/lzKbvbqJNYcPIWfl40Xb2rjtsv4fi/Qx5MXb24DwKyEg1rWJyXURImIiEszDIOnv95KocPJNU1r079VuNmRXM7d3epzXbMwCoucjPtoI7mFRWZHkirk8KlcXvy2+CrL4/2bERXsZ3Ii19KzaW1u6xSFYcCjn23Svy8B1ESJiIiL+3ZrKsv3nMDLw8qzQ1rqHfLzsFgsvHxLG8ICvNmbls0/5283O5JUEYZhMOmLLeQWOujcsBYjujUwO5JLemJQcyKCfEg6mcvURdqtT9REiYiIC8suKOLZecUNwf09G9Mw1N/kRK4rpIY3025rh8UCH605zILNKWZHkirg47WHWbH3BN4eVl66uQ1Wq96kOJ/fL+tbvf+kyYnEbGqiRETEZb3+wx5SM/OpH+zH2F6NzY7j8ro3CS35Ov3ti80kp+eanEhcWUpGHs8v2AHAxPimNKpdw+RErq1n09olG248+tlmLetzc2qiRETEJe1KzeLdFQcAeGZIS3w8bSYnqhom9GlK+/o1ycov4q9zEylyOM2OJC7IMAz+/sUWsgqKaBtVk/uuamR2pCqheOt3Hw6d0rI+d6cmSkREXI5hGDz11VYcToN+LetwbbMwsyNVGZ42K6/f3p4Abw/WJ6Xz7x/2mB1JXNBXiUf4addxvGxWXr6lDTYt47skv1/Wt0rL+tyWmigREXE5X2w4wpqDp/D1tPH04JZmx6lyooL9mHJTawBm/LSXlfv0Qk9+lZaVz+Rviu81HN+7iQ6uLqPfLut7TMv63JaaKBERcSkZuXZe+Lb4Po3xvWOoW9PX5ERV0+C2kSXbMk/4eCOncgrNjiQu4h9fbyMjz06LiEDG9NS9hpfjiYHNiTyzrO+lb3UIrztSEyUiIi7lX4t3cSK7kCZhNbjvqmiz41Rp/xjSgka1/TmWWcBjn23CMAyzI4nJFm5J4dutqXhYLbx8axs8bXopeDkCfrOs7/2VSbra64b0L0dERFzGluQMZq9OAuDZG1ri5aFfU1fCz8uD6Xe0x8tm5fsdafxvZZLZkcREp3IKeeqrrQD8pVdjWkYGmZyoarumaW3u6HJmWd/nm8gp0LI+d6LfTiIi4hIcToMnv9qCYcAN7SLp3jjU7EjVQsvIIP5+fTMAnl+4g+1HM01OJGZ5Zt42TuYU0rRODR68ronZcaqFv1/fnLo1fTl8Ko+XFmlZnztREyUiIi5h7tpDbErOIMDbgyeub252nGrlnu4N6d0sjMIiJ+M+2qAb4d3Qku3H+DrxKFYLTL2lLd4eOjKgPBQv6yvexOV/K5NI2HfC5ERSWdREiYiI6U5mF5ScufJwfFPCAn1MTlS9WCwWXr61LWEB3uw7nsOz87abHUkqUUaenSe+3ALAqKsb0S6qprmBqpmrY2pzR5f6ADz++WYt63MTaqJERMR0L367s2S3sBHdGpgdp1oK9vdi2u3tsFhg7trDzN981OxIUkmeX7CdtKwCokP9eahvU7PjVEt/v76ZlvW5GTVRIiJiqnUHT/Hp+mQA/jm0FR7aLazCdG8cygO9iu+FmfTFFg6fyjU5kVS0ZbuP88m6ZCwWmHpLG3w8tYyvIgT4ePLSmd36tKzPPeg3lYiImKbI4eTJM7uF3dYpio4NapmcqPr7a58YOtSvSVZ+EePnbsTucJodSSpIdkERk74oXsZ3T1xDOjcMNjlR9XZVTCjDuxYv63vsMy3rq+7URImIiGneX5nEztQsavp58viAZmbHcQueNiv/vr09AT4ebDx0mn9/v8fsSFJBXvx2B0dO5xEV7Mtj/WPNjuMWzu7Wl5yex4s6hLdaUxMlIiKmOJaZz2tLdgPweP9mBPt7mZzIfUQF+/HiTcVLj/7v571aelQNrdx3ktmrDgHw4k1t8PPyMDmRe6jh7cHUW4r/bX2wKomEvfq3VV2piRIREVM8t2AH2QVFtIuqyW2dosyO43YGtong9s5RGAY89HEip3IKzY4k5SS3sIjHP98MwB1d6tOjic5cq0w9mvxmWZ9266u21ESJiEil+2XvCeZtKj6z5rmhrbBaLWZHcktPD25B49r+HMss4NFPN2EYhtmRpBy8sng3h07lEhHkw6TrtUzWDL9d1vfCtzvMjiMVQE2UiIhUqoIiB099XbyZxIhuDWhVN8jkRO7Lz8uD6Xd0wMvDyg8703g/4aDZkeQKrU9K57+/HABgyo2tCfTxNDmRe/rtsr7Zqw5pWV81pCZKREQq1X+WH2D/8RxCa3jzcLxudjdbi8hAnri+OQBTFu5k29EMkxPJ5cq3O3jss00YBtzUoS7XNgszO5Jb69EklDvPLOt79LPNZGtZX7WiJkpERCrN4VO5TP+xeDe4JwY2I8hX75K7grvjGtCneRiFDifjPtpIbqFe7FVFr/+wh33Hc6gd4M3Tg1qYHUeASWeW9R05nccLC7WsrzpREyUiIpXm2fnbybc76RodzNB2dc2OI2dYLBam3tKWOoHe7D+ewzPfbDc7kpTRluQMZi7bDxTfZ1jTT7tduoIa3h68fGZZ34erD/GLlvVVG2qiRESkUvyw4xhLth/Dw2rhuaGtsFi0mYQrCfb3Ytpt7bFY4ON1h5m36ajZkeQSFRY5efSzTTicBoPaRNCvZbjZkeQ3ujcJ5a5uvx7Cq2V91YOaKBERqXB5hQ7+8c02AO67OpqYOgEmJ5LziWscwoPXNgHg719s4fCpXJMTyaV44+e97EzNItjfi2eGtDQ7jpzHpAHNqVereFnfFC3rqxbURImISIV74+e9JKfnERHkw/jrYsyOIxfx194xdKhfk6yCIsbP3Yjd4TQ7klzEjpRMZvy4F4DJQ1oSUsPb5ERyPv6/2a1vzupDrNijZX1VnZooERGpUPuPZzNzafG9Gv8Y3AJ/bw+TE8nFeNis/Pv29gT4eLDx0Gmmfb/b7EhyAUUOJ499tpkip0HfFnUY3CbC7EhyEd0bhzKiWwMAHv98M1n5dpMTyZVQEyUiIhXGMAz+8c02Ch1OejatrXs1qoioYD9evKn4XfM3ft6nM25c1DvLD7DlSAaBPh48r/sMq4S/DWhGVPDZZX07zY4jV0BNlIiIVJiFW1JZvucEXh5WnhnSUi/yqpCBbSK4o0sUhgETPk7kZHaB2ZHkN/amZfPamauETw9uSVigj8mJ5FL4e3sw9ea2AHy0Rsv6qjI1USIiUiGyC4p4dn7xZhJ/6dmYhqH+JieSsnp6UEuahNUgLauARz/bjGEYZkcSwOE0eOyzTRQWFV/hvbmDjguoSuIah3B3nJb1VXVqokREpEL8+/vdHMssoH6wH3/p1djsOHIZfL1sTL+jPV4eVn7cmcashINmRxJgVsJBNhw6TQ1vD6bc1FpXeKugx/trWV9VpyZKRETK3a7ULP77y0EAnrmhJT6eNnMDyWVrHhHIkwObA/DCwp1sPZJhciL3lnQyh5e/K37RPen6ZtSt6WtyIrkcv1/Wt3zPcZMTSVmpiRIRkXJlGDB5/g4cToN+LetwbWyY2ZHkCo3o1oA+zetQ6HAy/qON5OiwUFM4nQaPf76ZfLuT7o1DGN6lvtmR5AqUWtb3mZb1VTVqokREpFytPWFhXdJpfD1tPD1YB39WBxaLhZdvaUN4oA/7T+Tw3MJdZkdyS3PXJbNq/yl8PW28eFMbLeOrBs4u6zuaka9DeKsYNVEiIlJuMvLsfH2w+FfL+N4xWmpUjdTy92La7e2wWOCzDUfYcEIv4CvTqQKY+l3xbnyP9Y+lfoifyYmkPJRe1neY5TpOoMpQEyUiIuXmte/3kl1koXFtf+67KtrsOFLOujUKYdy1TQD4eL+VxMOnzQ3kJgzD4ON9VnIKHXRqUIt74hqaHUnKUVzjEO45s6zvia+2k6fVslWCmigRESkX245mMGftYQCeGdwcLw/9iqmOxveOoXPDWuQ7LNz93jp+2pVmdqRq7/ONR9mZYcXLw8pLt7TBatVVwOrm8QHNqB/sR0pGPouS9bOzKtDfkoiIlIv/rjiIYUD7ECddo4PNjiMVxMNm5Z272tMsyEme3cmf31/HZ+uTzY5VLWUXFPHc/O08+fV2AP56XWMa165hciqpCH5eHjwzpPge0lVpFm3eUgWoiRIRkSuWkWtn/uajAPSKcJqcRiqav7cHo5s5Gdo2AofT4JFPN/Hmz/t0GG85MQyDhVtS6PPKUv6z4gAOp0GHECd/6t7A7GhSgXo2rU3DED/yHRbmbU41O478ATVRIiJyxT7fkExBkZNm4QE00BvlbsFmhZduasWYaxoB8NKinTw7fztOpxqpK3HwRA73vreWsR9uIDUzn/rBfvxnRHvuaerEw6aXbdWZ1Wrhjs71APhwzWG9KeHi9K9RRESuiGEYfLg6CYDbO9dDuy67D6vVwqTrm5ccxvveLwcZP3cjBUUOk5NVPfl2B9O+3038tGUs3X0cL5uV8b1jWPzQNfRsWtvseFJJbmpfF0+Lwc7ULDYcOm12HLkINVEiInJF1hw4xb7jOfh52RjSJsLsOGKCP1/diH/f3g5Pm4X5m1P406y1Oji0DJbvOU7/acuY9v0eCoucXNUklEUTrubhvk3x8bSZHU8qUU0/T9qHFl+Bmr0qyeQ0cjFqokRE5Ip8uPoQADe0iyTAx8PkNGKWG9rV5b/3dsbfy8Yve09y+9urSMvKNzuWSzuWmc8DczYw4t01HDyZS1iAN9PvaM8H93WhkTaQcFtXhRffV7pgcwqncgpNTiMXoiZKREQu28nsAhZtLb4BengX3fTu7q6Oqc3c0XGE+Hux7WgmN7+ZwIETOWbHcjlFDifvrjhA71eWsmBzClYLjOzRkB8m9mRw20gsWhPr1hrUgNZ1Ayl0OPlk3WGz48gFqIkSEZHL9tn6ZAodTtrUC6J1vSCz44gLaF0viM//0p36wX4cPpXHLW8msDn5tNmxXMb6pHQGz/iFf87fTnZBEe3r12TeuKv4x+CWBPh4mh1PXMQdnaMA+HB1kjZrcVFqokRE5LI4nQYfrSleyndn1/ompxFX0jDUn8//0p1WdQM5mVPI7W+vYtnu42bHMlV6TiF/+3wzN7+ZwI6UTIJ8PZlyY2s+v787LSP1BoSUNqh1OIE+Hhw+lcfSPe79b8dVqYkSEZHLkrDvJAdP5hLg7cHgtpFmxxEXUzvAm7mj47iqSSi5hQ7+NGstX208YnasSud0Gnyy7jC9X13K3LXFS7Nu6ViPHyf2ZHjX+litWron5/L1snFLx+KrUbNXaoMJV6QmSkRELsucNcW/2G/sUBc/L20oIeeq4e3Bf+/tzJC2kRQ5DSZ8nMh/lu83O1al2ZmaybCZK3nss82cyikktk4An4yJ41+3tiWkhrfZ8cTF3dmt+Ar/j7vSOHwq1+Q08ntqokREpMzSsvJZvO0YAMO1lE8uwsvDyrTb2vGnHtEAPLdgB88vqN6H8mYXFPH8gu0MfH0F65LS8fOy8ffrmzF//FV0iQ42O55UEY1r1+CqJqEYBiVLp8V1qIkSEZEy+3RdMkVOg44NatEsPNDsOOLirFYLTw1qzqQBzQB4Z/kBHv4kkcIip8nJypdhGHy7JYU+ryzlneUHcDgN+rcM5/uHezL6msZ42vSyS8rmrjNXoz5ee1iHWLsYrb8QEZEycTgN5pw5G2p4F12FkktjsVgY07MxtQO8eeyzzXyVeJSTOYW8dVdH/L2r/suRpJM5PP31Npae2UAjKtiXZ4e04tpmYSYnk6qsT/M61An05lhm8XESN7Sra3YkOaPMb4ksW7aMwYMHExlZfI7BV199VerzhmEwefJkIiMj8fX1pVevXmzbtq3UmIKCAsaNG0doaCj+/v4MGTKE5OTkUmPS09MZMWIEQUFBBAUFMWLECE6fPl1qzKFDhxg8eDD+/v6EhoYyfvx4Cgt1KJmISEVatuc4R07nEeTrycA2EWbHkSrmpg71+M89nfD1tLF8zwnueGcVJ7ILzI512QqKHLz+wx7iX1vG0t3H8bJZGX9dE5Y81FMNlFwxD5u15Ay+2au0wYQrKXMTlZOTQ9u2bZkxY8Z5Pz916lReffVVZsyYwdq1awkPD6dv375kZWWVjJkwYQJffvklc+fOZcWKFWRnZzNo0CAcjl8vUw4fPpzExEQWLVrEokWLSExMZMSIESWfdzgcDBw4kJycHFasWMHcuXP5/PPPmThxYlmnJCIiZXD2KtTNHerh42kzOY1URb1iw/hodDeC/b3YnJzBLW8mcOhk1btxfvme4/SftpxXl+ymoMhJjyYhfDvhah6Oj9W/DSk3t3eJwma1sPZgOjtTM82OI2eU+fr5gAEDGDBgwHk/ZxgG06ZN44knnuCmm24C4P3336dOnTrMmTOHMWPGkJGRwbvvvssHH3xAnz59AJg9ezZRUVF8//339OvXjx07drBo0SJWrVpF165dAXjnnXeIi4tj165dxMbGsnjxYrZv387hw4eJjCzeWveVV17h3nvv5fnnnycwUGv0RUTKW0pGHj/s0IYScuXaRdXks/vjuPu/azh4Mpeb3kxg1sjOtKrr+mcmHcvM55/ztzN/cwpQvJ37U4NaMLhNBBaLtiyX8lUn0Id+LeuwcEsqs1cl8dzQ1mZHEsr5nqgDBw6QmppKfHx8yWPe3t707NmThIQExowZw/r167Hb7aXGREZG0qpVKxISEujXrx8rV64kKCiopIEC6NatG0FBQSQkJBAbG8vKlStp1apVSQMF0K9fPwoKCli/fj3XXnvtOfkKCgooKPh1yUBmZnE3b7fbsdvt5fmlKLOz9c3I4Y61NefK5Y61q+ucP1qVhNOALg1r0aCW9zk19PV2j9rlVTeqpjcfj+rCff/bwM7ULG57eyVv3NGO7o1DKrx2WdntdhwG/HfFfl7/+QA5BQ6sFrira30m9G5MgI8nRUVFFVb7t/9bmar691h1qX17p7os3JLKlxuOMLFPE2qU832ErjhnM5Qlg8UwjMveY9RisfDll18ydOhQABISEujRowdHjhwp1dyMHj2apKQkvvvuO+bMmcPIkSNLNTMA8fHxREdHM3PmTKZMmcKsWbPYvXt3qTFNmzZl5MiRTJo0idGjR3Pw4EEWL15caoy3tzezZs3ijjvuOCfv5MmTeeaZZ855fM6cOfj5+V3ul0FExC04DHhmg42MQgv3xDjoEFp9t6iWypVXBO/usrIn04rNYnBXE6fLfH85DUjJhf1ZFlYes3Ikt/hKU4MaBrdGO4iqYXJAcQuGAVMSbaTlW7g12sFV4a7x76O6yc3NZfjw4WRkZPzhqrYK2Q7n95eyDcP4w8vbvx9zvvGXM+a3Jk2axMMPP1zycWZmJlFRUcTHx5u+/M9ut7NkyRL69u2Lp6enalfTumbWdsc5m1m7Os75hx1pZKxKpJafJ48O74O3x7m31err7R61K6LuoCInj32+hYVbj/H+Hhv1YmK5N65BpdT+rQK7gy1HM1l3MJ11h06z4dBpsvJ/vcIU6OPBI/ExDOtYD5u1cpbu6XvMPeb8R7VPBCfx3MJdbMoJ4vkBceW6dNRV51zZzq5SuxTl2kSFh4cDkJqaSkTErzs2paWlUadOnZIxhYWFpKenU6tWrVJjunfvXjLm2LFj5zz/8ePHSz3P6tWrS30+PT0du91eMub3vL298fY+94RwT09P0//SzjIzizvW1pxVu7rWrYjac9cfAWBY5yhq+J77s7Qia1+q6vT1rgq1y7OupyfMGN6RZ+dvZ1bCQZ5fuIuTOUU83j/2vC8Wy6t2Rq6d9YdOsfZgOmsPnGJzcgaFjtLnV/l52WgXFUTNwuM8Pbwn4bXMufyk7zH3rn1r5wa8smQvu9OySTySXSEHN7vanM3IcKnKtYmKjo4mPDycJUuW0L59ewAKCwtZunQpL730EgAdO3bE09OTJUuWMGzYMABSUlLYunUrU6dOBSAuLo6MjAzWrFlDly5dAFi9ejUZGRkljVZcXBzPP/88KSkpJQ3b4sWL8fb2pmPHjuU5LRERt3f4VG7J+Td3dNaGElIxrFYL/xjcgtoB3rz83S7eWrqPtKx8Xrq5TbkdVHv0dB5rD55i7cFTrDuYzq5jWfz+xobQGl50bhhMp4bBdG5YixYRgRhOBwsXLiSkxsXfQBCpKEG+ntzQLpK5aw8ze1VShTRRcunK3ERlZ2ezd+/eko8PHDhAYmIiwcHB1K9fnwkTJjBlyhRiYmKIiYlhypQp+Pn5MXz4cACCgoK47777mDhxIiEhIQQHB/PII4/QunXrkt36mjdvTv/+/Rk1ahQzZ84Eiu+rGjRoELGxsUDxPVQtWrRgxIgRvPzyy5w6dYpHHnmEUaNGmb40T0Skupm79hCGAVfHhNIw1N/sOFKNWSwWHri2CWEB3vztiy18seEIp3IKeePODvh5le1li9NpsCctu1TTdOR03jnjokP96dSgFp0bBtM5OpiGIX7nXP2yOx3n/DmRynZXtwbMXXuYb7emcDyr+A0HMUeZm6h169aV2vnu7D1G99xzD7NmzeKxxx4jLy+PsWPHkp6eTteuXVm8eDEBAQElf+a1117Dw8ODYcOGkZeXR+/evZk1axY2269nKnz44YeMHz++ZBe/IUOGlDqbymazsWDBAsaOHUuPHj3w9fVl+PDh/Otf/yr7V0FERC7I7nDy8driA9GHd9FVKKkct3aKIqSGF2M/3MDPu45zxzuree/ezgR4Xfg+kIIiB1uPZLDmQDrrDp5iXVI6GXmld9uyWqBlZFBxw9SwFh0b1iIswKeipyNSLlrVDaJdVE0SD5/mk3WHeeDaJmZHcltlbqJ69erFxTb0s1gsTJ48mcmTJ19wjI+PD9OnT2f69OkXHBMcHMzs2bMvmqV+/frMnz//DzOLiMjlW7L9GCeyC6gd4E2fFue/51SkIlzXrA5zRnXjT7PWsunwaW55M4F37+5Q8vnMfDvrk4obprUH09l0+DQFRaXvZ/L1tNG+fk06NQymS8Ng2tWvWe7bQ4tUphHdGpB4+DRzVh/i/p6NK22DEylNP0VEROSi5qw+BMBtnaLK7b4UkUvVoX4tPrs/jnv+u5b9J3IY9vZqYv2tvPl/K897P1OwvxedGtSiS3TxPU0tIwP1fSvVysA2EfxzwXaOnM7jp51penPLJGqiRETkgg6eyGHF3hNYLHB7lyiz44ibahIWwOd/6c49/13DrmNZHM+2AlkANAjxo1OD4qV5naODaRTqX65bP4u4Gh9PG8M6RfH2sv3MXp2kJsokaqJEROSCPlpTfBWqV9Pa1KulQ8nFPOFBPnxyfxwvfbud5EOHuKVnO7o2rk2dQN3PJO7nzq71eXvZfpbuPk7SyRwahGjDn8qm69siInJeBUUOPl1fvKHEnV3PPfRUpLIF+XryzOAW3BztZECrcDVQ4rYahPhzTdPaGMavS66lcqmJEhGR81q0NZVTOYVEBPnQK7a22XFEROQ3RnQrfnPrk3WHybdrC/7KpiZKRETO68Mz727e3rk+HroxX0TEpVzXLIzIIB/Sc+0s3JJidhy3o9+KIiJyjr1pWaw5cAqb1cJtnbWhhIiIq7FZLQzvWnx23+xVSSancT9qokRE5Bxnr0L1bhZGeJDuOxERcUXDOkfhabOw4dBpth7JMDuOW1ETJSIipeTbHXx+ZkOJs+9yioiI6wkL8KFfy3AAPlytq1GVSU2UiIiUMn9zCpn5RdSr5cs1MdpQQkTElZ3dYOKrjUfJzLebnMZ9qIkSEZFS5px5N/OOLvWxWnVoqYiIK+sSHUzTOjXIszv44swqAql4aqJERKTEjpRMNhw6jYfVwrBO2lBCRMTVWSwW7jpzNWr26kMYhmFyIvegJkpEREqcPbSxX8twagd4m5xGREQuxY3t6+LnZWNvWjar9p8yO45bUBMlIiIA5BQU8eXGIwDcqQ0lRESqjAAfT4a2rwtou/PKoiZKREQAmLfpKNkFRUSH+hPXOMTsOCIiUgZ3dS1e0vfdtlTSMvNNTlP9qYkSERHg17Ohhnepj8WiDSVERKqSFpGBdGpQiyKnwdy1h82OU+2piRIRETYnn2bLkQy8bFZu7ljP7DgiInIZzm4w8dGaQxQ5nCanqd7URImISMmGEgNahxPs72VyGhERuRxnf4anZOTzw840s+NUa2qiRETcXGa+nW82HQXgzjNr6kVEpOrx9rBxW+fi4ym0wUTFUhMlIuLmvt54hNxCB03CatC5YS2z44iIyBUovq8Vlu85wYETOWbHqbbURImIuDHDMEo2lLizqzaUEBGp6qKC/bg2NgyAD3U1qsKoiRIRcWMbDp1mZ2oW3h5WbmqvDSVERKqDu7oVn/X36fpk8u0Ok9NUT2qiRETc2NkNJQa3jSTIz9PkNCIiUh56Ng2jXi1fMvLszDtzz6uULzVRIiJuKiPXzvzNxb9ch3etb3IaEREpLzarpWSjIG0wUTHURImIuKnPNyRTUOSkeUQg7aNqmh1HRETK0bBO9fCyWdmUnMHm5NNmx6l21ESJiLih4g0lit+dHK4NJUREqp2QGt5c3zoc0NWoiqAmSkTEDa05cIp9x3Pw87IxtF2k2XFERKQC3NWteEnfN5uOkpFrNzlN9aImSkTEDZ3d1vyGdpEE+GhDCRGR6qhjg1o0Cw8g3+7ksw3JZsepVtREiYi4mVM5hSzamgrA8C4NTE4jIiIVxWKxMCKu+Of8h6uSMAzD5ETVh5ooERE389n6wxQ6nLSpF0TrekFmxxERkQo0tF1danh7sP9EDgn7Tpodp9pQEyUi4kacTqPkbKg7ta25iEi15+/twU0d6gLwwUptMFFe1ESJiLiRlftPcvBkLgHeHgxuqw0lRETcwdkNJpbsOEZqRr7JaaoHNVEiIm7k7LbmN3aoi5+Xh8lpRESkMjStE0CX6GAcToOP1hwyO061oCZKRMRNpGXls3jbMaD4bCgREXEfI85cjfpozSHsDqfJaao+NVEiIm7i03XJFDmNM1veBpodR0REKlG/luGE1vAmLauA77cfMztOlacmSkTEDfx2CcfwLroKJSLibrw8rNzeOQqAD1Zpg4krpSZKRMQNLNtznOT0PIJ8PRnYJsLsOCIiYoI7utbHaoGEfSfZm5ZtdpwqTU2UiIgbOLut+c0d6uHjaTM5jYiImKFuTV+ua1YH+HWjIbk8aqJERKq5lIw8ftihDSVERARGxBVvMPHZ+mRyC4tMTlN1qYkSEanmPl57GKcBXaODaRJWw+w4IiJioqubhNIgxI+s/CK+STxqdpwqS02UiEg1VuRwMnfNYQDuPLO9rYiIuC+r1cKdZ1YlfLAqCcMwTE5UNamJEhGpxn7adZzUzHyC/b3o17KO2XFERMQF3NoxCi8PK9uOZpJ4+LTZcaokNVEiItXY2RuHb+1UD28PbSghIiJQy9+LQWd2ap296pDJaaomNVEiItVUcnoeS3cfB+COztpQQkREfjXizBLveZuPkp5baHKaqkdNlIhINfXJumQMA66OCaVhqL/ZcURExIW0i6pJq7qBFBY5+XyDNpgoKzVRIiLVkMMJn244AsDwLroKJSIipVksFu7qWnw16qMzu7jKpVMTJSJSDW1Jt3Aiu5DaAd70aaENJURE5FxD2kUS4OPBoVN57MqwmB2nSlETJSJSDf1yrPiX4W2dovC06Ue9iIicy8/Lg5s71APgl1Q1UWWh36wiItVM0slcdmdYsVjg9i5RZscREREXdteZDSa2pltIycg3OU3VoSZKRKSambsuGYBrYkKpV8vP5DQiIuLKmoTVoEvDWhhYmLc5xew4VYaaKBGRaqR4l6XiDSXu6FzP5DQiIlIVDD5zZtSCLakmJ6k61ESJiFQjS3cfJz3XTqCnQc+YULPjiIhIFRDfIgyrxWB7Shb7jmebHadKUBMlIlKNfJVYfBWqQ6iBhzaUEBGRSxDs70VsUPEe5/M3aUnfpdBvWBGRaiIr3873248B0CnUaXIaERGpSjqEFjdR8zYfxTB0aNQfURMlIlJNfLftGAVFThqF+lPP3+w0IiJSlbSuZeBps7A3LZtdx7LMjuPy1ESJiFQTX20sXso3pG0EFh33ISIiZeDrAb2a1gZg3qajJqdxfWqiRESqgbTMfBL2nQBgcJtwk9OIiEhVNLB18e+PeZtStKTvD6iJEhGpBr7ZdBSnAR0b1KJ+sM6GEhGRsrs2NhRfTxuHTuWy5UiG2XFcmpooEZFq4OvE4qUXQ9tFmpxERESqKj8vD3o3DwO0pO+PqIkSEani9qZls+VIBh5WCwPbqIkSEZHLN7ht8e+R+ZtTcDq1pO9C1ESJiFRxX585G6pn09oE+3uZnEZERKqynk1rE+DtQUpGPhsOpZsdx2WVexNVVFTEk08+SXR0NL6+vjRq1Ihnn30Wp/PXM0sMw2Dy5MlERkbi6+tLr1692LZtW6nnKSgoYNy4cYSGhuLv78+QIUNITk4uNSY9PZ0RI0YQFBREUFAQI0aM4PTp0+U9JRERl2UYRslSvhva1zU5jYiIVHU+njb6tqwDaEnfxZR7E/XSSy/x1ltvMWPGDHbs2MHUqVN5+eWXmT59esmYqVOn8uqrrzJjxgzWrl1LeHg4ffv2JSvr1z3pJ0yYwJdffsncuXNZsWIF2dnZDBo0CIfDUTJm+PDhJCYmsmjRIhYtWkRiYiIjRowo7ymJiLisDYdOc+hULv5eNvo2r2N2HBERqQbOLulbsCWFIocObz8fj/J+wpUrV3LDDTcwcOBAABo2bMhHH33EunXrgOJ3TadNm8YTTzzBTTfdBMD7779PnTp1mDNnDmPGjCEjI4N3332XDz74gD59+gAwe/ZsoqKi+P777+nXrx87duxg0aJFrFq1iq5duwLwzjvvEBcXx65du4iNjS3vqYmIuJyzZ0P1axmOr5fN5DQiIlIdXNUklJp+npzILmT1gVP0aBJqdiSXU+5Xoq666ip++OEHdu/eDcCmTZtYsWIF119/PQAHDhwgNTWV+Pj4kj/j7e1Nz549SUhIAGD9+vXY7fZSYyIjI2nVqlXJmJUrVxIUFFTSQAF069aNoKCgkjEiItWZ3eFkwZYUAIZqKZ+IiJQTT5uVAa0iAJi/WUv6zqfcr0Q9/vjjZGRk0KxZM2w2Gw6Hg+eff5477rgDgNTUVADq1Cm97KROnTokJSWVjPHy8qJWrVrnjDn751NTUwkLCzunflhYWMmY3ysoKKCgoKDk48zMTADsdjt2u/1ypltuztY3I4c71tacK5c71q6Muj/tOs6pnEJCa3jRuX7gOTX19Vbt6lbXzNruOGcza7vjnM2sfb66A1rW5qM1h/h2SypPDojFy6Ni9qMz8+v9e2XJYDHK+TjiuXPn8uijj/Lyyy/TsmVLEhMTmTBhAq+++ir33HMPCQkJ9OjRg6NHjxIREVHy50aNGsXhw4dZtGgRc+bMYeTIkaUaHoC+ffvSuHFj3nrrLaZMmcL777/Prl27So2JiYnhvvvu429/+9s52SZPnswzzzxzzuNz5szBz0+HU4pI1fL+bisbTlrpGe7kpmitWRcRkfLjNODp9Tay7BZGN3PQslb13+48NzeX4cOHk5GRQWBg4EXHlvuVqEcffZS//e1v3H777QC0bt2apKQkXnjhBe655x7Cw8OB4itJv22i0tLSSq5OhYeHU1hYSHp6eqmrUWlpaXTv3r1kzLFjx86pf/z48XOucp01adIkHn744ZKPMzMziYqKIj4+/g+/UBXNbrezZMkS+vbti6enp2pX07pm1nbHOZtZu6LrZhcU8fi6nwEn42+Io029oEqrfTHV9eut2q5R18za7jhnM2u745zNrH2huhvYyQerDpHmXY9Hr29dqbXNcHaV2qUo9yYqNzcXq7X05T6bzVayxXl0dDTh4eEsWbKE9u3bA1BYWMjSpUt56aWXAOjYsSOenp4sWbKEYcOGAZCSksLWrVuZOnUqAHFxcWRkZLBmzRq6dOkCwOrVq8nIyChptH7P29sbb2/vcx739PQ0/S/tLDOzuGNtzVm1q2rdn7YcI9/upFGoPx0ahmCxWCqt9qWobl9v1XatumbWdsc5m1nbHedsZu3f1x3avi4frDrE9zuP48CKj2fFbWDkCq/Hy1K/3JuowYMH8/zzz1O/fn1atmzJxo0befXVV/nTn/4EgMViYcKECUyZMoWYmBhiYmKYMmUKfn5+DB8+HICgoCDuu+8+Jk6cSEhICMHBwTzyyCO0bt26ZLe+5s2b079/f0aNGsXMmTMBGD16NIMGDdLOfCJS7X119myodnXP20CJiIhcqfZRtYgM8uFoRj4/7zpO/1bhZkdyGeXeRE2fPp2nnnqKsWPHkpaWRmRkJGPGjOHpp58uGfPYY4+Rl5fH2LFjSU9Pp2vXrixevJiAgICSMa+99hoeHh4MGzaMvLw8evfuzaxZs7DZfu2AP/zwQ8aPH1+yi9+QIUOYMWNGeU9JRMSlHM8qYMWe4wDc0C7S5DQiIlJdWa0WBrWN5O1l+5m3+aiaqN8o9yYqICCAadOmMW3atAuOsVgsTJ48mcmTJ19wjI+PD9OnTy91SO/vBQcHM3v27CtIKyJS9czbdBSnAe2iatIw1N/sOCIiUo0NblPcRP24I43cwiL8vMq9faiSKmavQhERqTBfJxYfsHujzoYSEZEK1qpuIA1D/MizO/h+R5rZcVyGmigRkSrkwIkcNiVnYLNaGNgm4o//gIiIyBWwWCwMalO8dHzeJh28e5aaKBGRKuSrjcVXoa6OCSW0xrm7jYqIiJS3wW2Lm6ilu46TkWf+obiuQE2UiEgVYRgGX51Zyje0nZbyiYhI5YgND6BpnRoUOpws2X7uOa3uSE2UiEgVkXj4NEknc/HzshHf8vyHiouIiFQELekrTU2UiEgV8fWZs6HiW9TR7kgiIlKpBp25D3fF3hOcyik0OY351ESJiFQBdoez5N2/G7Qrn4iIVLJGtWvQqm4gDqfBt1tTzI5jOjVRIiJVwIq9JziZU0iIvxdXNwk1O46IiLihwWeW9M3fpCZKTZSISBXw9Zld+Qa3jcTDph/dIiJS+c4erbHqwEnSMvNNTmMu/SYWEXFxuYVFLD6zG9IN7SJNTiMiIu6qXi0/OtSviWHAgi3ufTVKTZSIiItbsv0YuYUOGoT40S6qptlxRETEjZ09M2r+ZjVRIiLiwr48s5TvhnZ1sVgsJqcRERF3NrB1BBYLrE9KJzk91+w4plETJSLiwk5kF7B8zwkAhmopn4iImCws0Ieu0cEALHDjq1FqokREXNiCzSk4nAZt6wXRqHYNs+OIiIiULOmbt9l9D95VEyUi4sJ+u5RPRETEFQxoFYHNamHrkUwOnMgxO44p1ESJiLiogydySDx8GqsFBrWNMDuOiIgIAMH+Xlx15szC+Zvc82qUmigRERf1dWLxL6arYmoTFuBjchoREZFfDTpzZpS7LulTEyUi4oIMw+DrxOKlfNpQQkREXE18y3C8bFZ2H8tmV2qW2XEqnZooEREXtDk5g/0ncvDxtBLfMtzsOCIiIqUE+XrSM7Y2APPd8GqUmigRERf01ZmrUH1bhFPD28PkNCIiIucqWdK36SiGYZicpnKpiRIRcTFFDifzNhWfvXFjey3lExER19SneR18PK0cPJnL1iOZZsepVGqiRERcTMK+k5zILiDY34urY2qbHUdEROS8/L096N28DuB+G0yoiRIRcTFfnTkbamDrCDxt+jEtIiKua3Cb4hUTCzan4HS6z5I+/XYWEXEheYUOvtuWCsBQLeUTEREX1yu2NjW8PThyOo+Nh9PNjlNp1ESJiLiQJTuOkVPoICrYlw71a5kdR0RE5KJ8PG3EtzizpO/M/bzuQE2UiIgL+Xrj2bOh6mKxWExOIyIi8scGtz2zpG9LCg43WdKnJkpExEWcyilk6e7jANzQrq7JaURERC5Njyah1PTz5HhWAasPnDQ7TqVQEyUi4iIWbD5KkdOgVd1AmoTVMDuOiIjIJfHysNL/zMHw7rKkT02UiIiL+CqxeHvYoboKJSIiVczZJX3fbk3B7nCanKbiqYkSEXEBh07msj4pHasFhrTVrnwiIlK1dGsUQmgNb07n2vll7wmz41Q4NVEiIi7g68TiDSW6Nw4lLNDH5DQiIiJlY7NauL61+yzpUxMlImIywzD46kwTdUM7XYUSEZGq6eySvsXbUsm3O0xOU7HURImImGzb0Uz2Hc/B28NK/1bhZscRERG5LB3r1yIiyIesgqKS3WarKzVRIiIm++rM2VB9WtQhwMfT5DQiIiKXx2q1MKhNBADzN1fvJX1qokRETORwGnyzSbvyiYhI9TCoTfGSvu+3HyO3sMjkNBVHTZSIiIlW7jtJWlYBNf086dm0ttlxRERErkibekHUD/Yjz+7ghx1pZsepMGqiRERMdHZDiYGtI/Dy0I9kERGp2iwWC4Pbnl3Sd9TkNBVHv7FFREySb3ewaGsqAEPbaymfiIhUD2d36ftp13Ey8+0mp6kYaqJEREzy/Y5jZBcUUbemLx3r1zI7joiISLmIrRNAk7AaFBY5WbLtmNlxKoSaKBERk3y1sXiZww3tIrFaLSanERERKR8Wi4XBZzaYmFdNl/SpiRIRMcHp3EKW7i6+4fZGLeUTEZFqZtCZ+6JW7DlBek6hyWnKn5ooERETLNiSgt1h0CIikJg6AWbHERERKVeNa9egZWQgRU6DRdtSzY5T7tREiYiY4OwBu0PbR5qcREREpGKcPTNq3qbqt6RPTZSISCVLTs9l7cF0LBYY0lZL+UREpHoa1KZ4Sd+q/SdJy8o3OU35UhMlIlLJvk4sfkcurlEI4UE+JqcRERGpGFHBfrSvXxOnAd9uqV5L+tREiYhUIsMwfl3K105XoUREpHqrrkv61ESJiFSi7SmZ7EnLxsvDSv/W4WbHERERqVADW0dgscC6pHSOnM4zO065URMlIlKJzi7l690sjEAfT5PTiIiIVKzwIB+6NAwGYEE1OjNKTZSISCVxOA2+OdNEDdXZUCIi4iYGty1e0jd/c4rJScqPmigRkUqy+sBJUjPzCfTxoFdsbbPjiIiIVIoBrcKxWS1sTs7g4Ikcs+OUCzVRIiKV5OyGEgPbRODtYTM5jYiISOUIqeFN98YhAMyvJkv61ESJiFSCfLujZHvXG7Qrn4iIuJnqtqRPTZSISCX4aWcaWQVFRP7mBlsRERF30a9lOJ42CztTs9h9LMvsOFdMTZSISCX4KrF4Kd+QdnWxWi0mpxEREalcQb6e9GxafD/w/GpwZpSaKBGRCpaRa+ennccBGNo+0uQ0IiIi5ji7pG/e5hQMwzA5zZVREyUiUsEWbk2h0OGkWXgAzcIDzY4jIiJiij7N6+DjaeXAiRy2Hc00O84VURMlIlLBzu7Kp7OhRETEnfl7e9C7WR0A5lXxXfrURImIVKCjp/NYfeAUFgsMaaulfCIi4t4GtYkAYP6mqr2kT02UiEgFmre5eFvzLg2Diazpa3IaERERc13bLAx/LxtHTuex4dBps+NcNjVRIiIVaN6Z8zC0lE9ERAR8PG3EtwwHqvbBu2qiREQqyJEc2HUsGy+bletbRZgdR0RExCWcXdK3YHMKDmfVXNKnJkpEpIKsP1H8I/baZrUJ8vM0OY2IiIhruDqmNoE+HqRlFbAuKd3sOJelQpqoI0eOcNdddxESEoKfnx/t2rVj/fr1JZ83DIPJkycTGRmJr68vvXr1Ytu2baWeo6CggHHjxhEaGoq/vz9DhgwhOTm51Jj09HRGjBhBUFAQQUFBjBgxgtOnT1fElEREysTpNFh/ovhQ3aHttJRPRETkLC8PKwPOrNBYsCXV5DSXp9ybqPT0dHr06IGnpyfffvst27dv55VXXqFmzZolY6ZOncqrr77KjBkzWLt2LeHh4fTt25esrKySMRMmTODLL79k7ty5rFixguzsbAYNGoTD4SgZM3z4cBITE1m0aBGLFi0iMTGRESNGlPeURETKbG1SOqcLLQT4eHBtszCz44iIiLiUswfvLtp2DIfT5DCXwaO8n/Cll14iKiqK9957r+Sxhg0blvx/wzCYNm0aTzzxBDfddBMA77//PnXq1GHOnDmMGTOGjIwM3n33XT744AP69OkDwOzZs4mKiuL777+nX79+7Nixg0WLFrFq1Sq6du0KwDvvvENcXBy7du0iNja2vKcmInLJvtlUvKFE/5Z18PG0mZxGRETEtXRrFEyIvxcncwrZnWkxO06ZlXsT9c0339CvXz9uvfVWli5dSt26dRk7diyjRo0C4MCBA6SmphIfH1/yZ7y9venZsycJCQmMGTOG9evXY7fbS42JjIykVatWJCQk0K9fP1auXElQUFBJAwXQrVs3goKCSEhIOG8TVVBQQEFBQcnHmZnFJyXb7Xbsdnt5fynK5Gx9M3K4Y23NuXK5W+3cwqKS5QmDWtbW33U1ruuutTXnyuWOtd1xzmbWNqtu/5Z1+HDNYTacsJj+WhzKNn+LUc6nXPn4+ADw8MMPc+utt7JmzRomTJjAzJkzufvuu0lISKBHjx4cOXKEyMhfD54cPXo0SUlJfPfdd8yZM4eRI0eWangA4uPjiY6OZubMmUyZMoVZs2axe/fuUmOaNm3KyJEjmTRp0jnZJk+ezDPPPHPO43PmzMHPz688pi8iwpo0Cx/usxHqbfBkeweWqvcGm4iISIXblwmvb/PA12bwXCcHHiZveZebm8vw4cPJyMggMDDwomPL/UqU0+mkU6dOTJkyBYD27duzbds23nzzTe6+++6ScZbfvaowDOOcx37v92PON/5izzNp0iQefvjhko8zMzOJiooiPj7+D79QFc1ut7NkyRL69u2Lp2fl7uLljrU1Z/eYs1m1Z7+7Fkina5iT+Hj3mLPZtd1xzmbW1pzdY85m1nbHOZtZ26y6TqfBro8TqZmfyrXXXUeAn0+l1T6fs6vULkW5N1ERERG0aNGi1GPNmzfn888/ByA8vPhwrdTUVCIifj03JS0tjTp16pSMKSwsJD09nVq1apUa071795Ixx44dO6f+8ePHS57n97y9vfH29j7ncU9Pz0r/R3IhZmZxx9qas2qXtwMnclh7MB2rBbrUNtxizq5U2x3nbGZtzVm1q2tdd61tRt0Zd7Rn4cKFBPj5mP56vCz1y/2iWY8ePdi1a1epx3bv3k2DBg0AiI6OJjw8nCVLlpR8vrCwkKVLl5Y0SB07dsTT07PUmJSUFLZu3VoyJi4ujoyMDNasWVMyZvXq1WRkZJSMERGpbJ+tPwzA1U1CqXnuezYiIiJSDZT7laiHHnqI7t27M2XKFIYNG8aaNWt4++23efvtt4HiJXgTJkxgypQpxMTEEBMTw5QpU/Dz82P48OEABAUFcd999zFx4kRCQkIIDg7mkUceoXXr1iW79TVv3pz+/fszatQoZs6cCRTfVzVo0CDtzCcipnA4DT5bX3ye3c0dIjEOVc2zL0REROTiyr2J6ty5M19++SWTJk3i2WefJTo6mmnTpnHnnXeWjHnsscfIy8tj7NixpKen07VrVxYvXkxAQEDJmNdeew0PDw+GDRtGXl4evXv3ZtasWdhsv24V/OGHHzJ+/PiSXfyGDBnCjBkzyntKIiKXZNnu4xzLLKCWnyfXNQvjh0NmJxIREZGKUO5NFMCgQYMYNGjQBT9vsViYPHkykydPvuAYHx8fpk+fzvTp0y84Jjg4mNmzZ19JVBGRcvPJuuKlfDe2r4e32VsMiYiISIXRb3kRkXJwMruA73cUb3YzrHM9k9OIiIhIRVITJSJSDr5KPIrdYdCmXhDNws09MkFEREQqlpooEZErZBgGn6wtXsp3a6cok9OIiIhIRVMTJSJyhTYnZ7DrWBbeHlaGtI00O46IiIhUMDVRIiJX6OyGEgNahRPk6xoHd4uIiEjFURMlInIF8godfJN4FIBhWsonIiLiFtREiYhcge+2pZJVUES9Wr50axRidhwRERGpBGqiRESuwMdnN5ToGIXVajE5jYiIiFQGNVEiIpfp0MlcVu4/icUCt3TS2VAiIiLuQk2UiMhl+mx98VWoq5qEUremr8lpREREpLKoiRIRuQwOp8Fn65MBbSghIiLibtREiYhchl/2nuBoRj5Bvp70bVHH7DgiIiJSidREiYhcho/PnA11Y/u6+HjaTE4jIiIilUlNlIhIGaXnFLJk2zEAbtWGEiIiIm5HTZSISBl9nXiEQoeTlpGBtIwMMjuOiIiIVDI1USIiZfTJOm0oISIi4s7URImIlMHWIxlsT8nEy8PKDe0izY4jIiIiJlATJSJSBp+c2VCiX8twavp5mZxGREREzKAmSkTkEuXbHXy18QgAw7ShhIiIiNtSEyUicokWbz9GZn4RdWv60r1xqNlxRERExCRqokRELtGnZ5by3dyxHjarxeQ0IiIiYhY1USIilyA5PZcVe08AcGtHLeUTERFxZ2qiREQuwWfrkzEM6NEkhKhgP7PjiIiIiInURImI/AGn0+BTnQ0lIiIiZ6iJEhH5Ayv3n+TI6TwCfDzo1zLc7DgiIiJiMjVRIiJ/4OzZUDe0i8TH02ZyGhERETGbmigRkYvIyLXz7dZUAG7rVN/kNCIiIuIK1ESJiFzEN5uOUFjkpFl4AK3qBpodR0RERFyAmigRkYv45DcbSlgsOhtKRERE1ESJiFzQ9qOZbDmSgafNwtD2dc2OIyIiIi5CTZSIyAWc3VAivkU4wf5eJqcRERERV6EmSkTkPAqKHHyVeASAWzvVMzmNiIiIuBI1USIi5/H99jRO59oJD/Th6pjaZscRERERF6ImSkTkPM4u5bulYz1sVm0oISIiIr9SEyUi8jtHT+exbM9xQEv5RERE5FxqokREfufz9ckYBnRrFEyDEH+z44iIiIiLURMlIvIbTqfBp+t/PRtKRERE5PfURImI/MbqA6c4dCqXGt4eDGgVYXYcERERcUFqokREfuPTMxtKDG4bia+XzeQ0IiIi4orURImInJGZb2fh1hQAhmlDCREREbkANVEiImfM23SUfLuTpnVq0C6qptlxRERExEWpiRIROeOTdb9uKGGx6GwoEREROT81USIiwK7ULDYdPo2H1cLQ9nXNjiMiIiIuTE2UiAi/bijRu3kYoTW8TU4jIiIirkxNlIi4vcIiJ19sPALAbZ11NpSIiIhcnJooEXF7P+48xqmcQsICvLkmprbZcURERMTFqYkSEbd3dkOJmzvWw8OmH4siIiJycXq1ICJu7VhmPj/vSgPg1o46G0pERET+mJooEXFrn29IxmlA54a1aFS7htlxREREpApQEyUibsswDD79zdlQIiIiIpdCTZSIuK21B9M5cCIHfy8b17eOMDuOiIiIVBFqokTEbX1y5myoQW0i8ff2MDmNiIiIVBVqokTELWUXFLFgcwoAwzprQwkRERG5dGqiRMQtLdh8lDy7g8a1/elQv5bZcURERKQKURMlIm7p47XFS/mGdYrCYrGYnEZERESqEjVRIuJ29qZlseHQaWxWCzd2qGt2HBEREali1ESJiNs5u635tbFhhAX4mJxGREREqho1USLiVuwOJ59vOALAsE7aUEJERETKTk2UiLiVn3amcSK7gNAa3lzbLMzsOCIiIlIFqYkSEbfyyZmlfDd3qIunTT8CRUREpOz0CkJE3EZaVj4/7UoD4FYt5RMREZHLpCZKRNzGlxuO4HAadKhfkyZhAWbHERERkSqqwpuoF154AYvFwoQJE0oeMwyDyZMnExkZia+vL7169WLbtm2l/lxBQQHjxo0jNDQUf39/hgwZQnJycqkx6enpjBgxgqCgIIKCghgxYgSnT5+u6CmJSBVkGAafrCs+G+q2zlEmpxEREZGqrEKbqLVr1/L222/Tpk2bUo9PnTqVV199lRkzZrB27VrCw8Pp27cvWVlZJWMmTJjAl19+ydy5c1mxYgXZ2dkMGjQIh8NRMmb48OEkJiayaNEiFi1aRGJiIiNGjKjIKYlIFbXxcAb7jufg62ljYJtIs+OIiIhIFVZhTVR2djZ33nkn77zzDrVq1Sp53DAMpk2bxhNPPMFNN91Eq1ateP/998nNzWXOnDkAZGRk8O677/LKK6/Qp08f2rdvz+zZs9myZQvff/89ADt27GDRokX85z//IS4ujri4ON555x3mz5/Prl27KmpaIlJFfXZmW/OBbSKo4e1hchoRERGpyirslcQDDzzAwIED6dOnD88991zJ4wcOHCA1NZX4+PiSx7y9venZsycJCQmMGTOG9evXY7fbS42JjIykVatWJCQk0K9fP1auXElQUBBdu3YtGdOtWzeCgoJISEggNjb2nEwFBQUUFBSUfJyZmQmA3W7HbreX6/zL6mx9M3K4Y23NuXKZXbvAAQu2pAJwU7uISslh9pzdrbY7ztnM2ppz5XLH2u44ZzNru+Ocz6csGSyGYRjlHWDu3Lk899xzrFu3Dh8fH3r16kW7du2YNm0aCQkJ9OjRgyNHjhAZ+euSmtGjR5OUlMR3333HnDlzGDlyZKmGByA+Pp7o6GhmzpzJlClTmDVrFrt37y41pmnTpowcOZJJkyadk2vy5Mk888wz5zw+Z84c/Pz8ymn2IuJqVqdZmLPPRm0fgyfaObBYzE4kIiIiriY3N5fhw4eTkZFBYGDgRceW+5Wow4cP89e//pXFixfj4+NzwXGW372KMQzjnMd+7/djzjf+Ys8zadIkHn744ZKPMzMziYqKIj4+/g+/UBXNbrezZMkS+vbti6enp2pX07pm1nbHOZ+t/fprPwJwz9VNGXhNdKXVddevt76/q39tzdk95mxmbXecs5m13XHO53N2ldqlKPcmav369aSlpdGxY8eSxxwOB8uWLWPGjBkl9yulpqYSERFRMiYtLY06deoAEB4eTmFhIenp6aXup0pLS6N79+4lY44dO3ZO/ePHj5c8z+95e3vj7e19zuOenp6m/6WdZWYWd6ytOVf/2gdO5LAvy4LVArd2rl/p9d3t6212bXecs5m1NWfVrq513bW2O8759xkuVblvLNG7d2+2bNlCYmJiyX+dOnXizjvvJDExkUaNGhEeHs6SJUtK/kxhYSFLly4taZA6duyIp6dnqTEpKSls3bq1ZExcXBwZGRmsWbOmZMzq1avJyMgoGSMi8vmGowBcExNKncALXx0XERERuVTlfiUqICCAVq1alXrM39+fkJCQkscnTJjAlClTiImJISYmhilTpuDn58fw4cMBCAoK4r777mPixImEhIQQHBzMI488QuvWrenTpw8AzZs3p3///owaNYqZM2cCxfdVDRo06LybSoiI+ylyOPkysbiJuqVDXZPTiIiISHVhyj6/jz32GHl5eYwdO5b09HS6du3K4sWLCQgIKBnz2muv4eHhwbBhw8jLy6N3797MmjULm81WMubDDz9k/PjxJbv4DRkyhBkzZlT6fETENS3YkkJaVgE1PAyuja1tdhwRERGpJiqlifr5559LfWyxWJg8eTKTJ0++4J/x8fFh+vTpTJ8+/YJjgoODmT17djmlFJHqJK/QwYvf7gSgZ4QTL48KPVtcRERE3IheVbiIjYdP85+dVnIKisyOIlItvLV0HykZ+dSr6UOviHI/yUFERETcmJooF+BwGjz62Va2pFt5Z8VBs+OIVHlHTufx1tJ9ADzePxYv2x/8AREREZEyUBPlAmxWC4/GxwDw7i8HOXo6z+REIlXbCwt3UFDkpGt0MP1ahJkdR0RERKoZNVEuIr5FGI0DDPLtTv713S6z44hUWWsOnGL+5hSsFnh6cIs/PMRbREREpKzURLkIi8XCDQ0dAHyx8Qibk0+bG0ikCnI4DZ6Ztw2A27vUp2VkkMmJREREpDpSE+VCGtSAG9pGAPDcgh0Yhm6GFymLT9cdZtvRTAJ8PJjYt6nZcURERKSaUhPlYib2jcHbw8qaA6f4btsxs+OIVBmZ+Xb+tbh4KeyEPk0JqeFtciIRERGprtREuZiIIB9GXd0IgBe+3UFhkdPkRCJVw4wf93Iiu5DGtf25O66B2XFERESkGlMT5YLu79WY0BreJJ3M5X8rD5odR8Tl7T+ezXu/HADgqUEt8LTpR5uIiIhUHL3ScEE1vD14JL74fo7pP+7ldG6hyYlEXNvzC3Zgdxhc1yyMXrHa0lxEREQqlpooF3VrpyiahQeQkWfn3z/sMTuOiMv6eVcaP+xMw8Nq4cmBzc2OIyIiIm5ATZSLslktPHHmBeEHK5PYfzzb5EQirsfucPLP+dsBGNmjIY1q1zA5kYiIiLgDNVEu7OqY2lwbW5sip8EL3+40O46Iy/lgZRL7jucQ4u/FuN4xZscRERERN6EmysX9/frm2KwWlmw/xsp9J82OI+IyTmYX8Nr3uwF4pF8sgT6eJicSERERd6EmysXF1AlgeJf6ADy3YDtOpw7gFQF4dclusvKLaBERyLBOUWbHERERETeiJqoKmNAnhgBvD7YdzeSLjUfMjiNiuh0pmXy05hAA/xjcApvVYnIiERERcSdqoqqAkBrePHBdEwBe/m4nuYVFJicSMY9hGDw7bztOAwa2iaBroxCzI4mIiIibURNVRdzbvSH1avlyLLOAd5YdMDuOiGm+25bKyv0n8fawMmlAM7PjiIiIiBtSE1VF+Hja+NuZF4xvLd3Hscx8kxOJVL58u4PnFuwAYEzPxtSr5WdyIhEREXFHaqKqkIGtI+hQvyZ5dgf/+m6X2XFEKt27Kw6QnJ5HRJAP9/dsZHYcERERcVNqoqoQi8XCk4NaAPDZhmS2Hc0wOZFI5UnNyOf/ftoLwN8GNMPPy8PkRCIiIuKu1ERVMR3q12Jw20gMA55fsAPD0Jbn4h6mLtpJbqGDTg1qMaRtpNlxRERExI2piaqCHusXi5eHlYR9J/lhR5rZcUQq3IZD6SXb+z89uAUWi7Y0FxEREfOoiaqCooL9uO+qaACmLNyB3eE0OZFIxXE6DZ6Ztx2AWzvWo029muYGEhEREbenJqqKGturMSH+Xuw/kcOHq5LMjiNSYb7ceIRNh0/j72Xj0f6xZscRERERURNVVQX4ePJQ36YATPthDxm5dpMTiZS/nIIiXlq0E4BxvWMIC/AxOZGIiIiImqgq7fbOUcSE1eB0rp0ZP+0xO45IuXvj572kZRXQIMSPkT0amh1HREREBFATVaV52Kw8MbA5ALMSDpJ0MsfkRCLl59DJXN5ZfgCAJwe2wNvDZnIiERERkWJqoqq4XrFhXB0Tit1h8OK3O82OI1JupizcQWGRk6tjQunTPMzsOCIiIiIl1ERVA08MbI7VAt9uTWXNgVNmxxG5Ygl7T7BoWyo2q4WnBmlLcxEREXEtaqKqgWbhgdzWuT4Azy/YjtOpA3il6ipyOHl2fvGW5iO6NaBpnQCTE4mIiIiUpiaqmni4b1P8vWxsSs7gm01HzY4jctk+WnuYnalZ1PTzZEKfGLPjiIiIiJxDTVQ1UTvAm7HXNgHgpUU7ySt0mJxIpOxO5xby6uJdQPEbAzX9vExOJCIiInIuNVHVyH1XRRMZ5ENKRj7vrthvdhyRMpv2/R7Sc+00rVOD4V3qmx1HRERE5LzURFUjPp42Hh/QDIA3f95HWla+yYlELt2eY1l8sCoJgH8MbomHTT+eRERExDXpVUo1M7hNJG2japJT6OC1JbvNjiNySQzD4Nn523E4DeJb1KFHk1CzI4mIiIhckJqoasZqtfDUmQN4P157mB0pmSYnEvljP+5MY/meE3j95gBpEREREVelJqoa6tQwmOtbh+M0ig8sNQxteS6uq7DIyT/PbGl+39XRNAjxNzmRiIiIyMWpiaqmHu/fDC+bleV7TvDz7uNmxxG5oFkJBzh4MpfaAd48cGaHSRERERFXpiaqmmoQ4s+9PRoC8PyCHRQ5nOYGEjmP41kFvP7DXqC48a/h7WFyIhEREZE/piaqGnvg2ibU8vNkb1o2H609bHYckXP867tdZBcU0bZeEDe1r2t2HBEREZFLoiaqGgvy9WRCn6YAvLZkN5n5dpMTifxqS3IGn6wvbu6fHtwSq9ViciIRERGRS6Mmqpob3rU+jWr7cyqnkP/7aa/ZcUSA4i3Nn5m3DcOAoe0i6digltmRRERERC6ZmqhqztNm5Ynri7eMfm/FQQ6fyjU5kQjM25zCuqR0fH9zQLSIiIhIVaEmyg1c1yyMHk1CKHQ4eWnRTrPjiJvLK3TwwsIdAIzt1ZiIIF+TE4mIiIiUjZooN2CxWHji+hZYLDB/cwrrk9LNjiRubOayfaRk5FO3pi+jrmlkdhwRERGRMlMT5SZaRAZya8d6ADy3YLsO4BVTHD2dx1tL9wHwxMDm+HjaTE4kIiIiUnZqotzIxPhY/LxsbDx0mvmbU8yOI25o6uI95NuddI0OZkCrcLPjiIiIiFwWNVFupE6gD/f3bAzAi9/uJN/uMDmRuJN9mbBgSypWCzw9uAUWi7Y0FxERkapJTZSbGXV1I8IDfThyOo/3fjlodhxxEw6nwRcHi5fu3d6lPi0jg0xOJCIiInL51ES5GV8vG4/2iwXg/37ay4nsApMTiTv4YuMRknMsBPh4MLFvU7PjiIiIiFwRNVFu6Mb2dWlVN5DsgiKmfb/b7DhSzR09ncfLi/cAMO7axoTU8DY5kYiIiMiVURPlhqxWC08ObAHAnNWH2HMs2+REUl3ZHU7GfbSR9Fw79fwN7uwSZXYkERERkSumJspNdWsUQnyLOjgNeOk7XY2SivHyd7tYn5ROgI8HI5s68PLQjxwRERGp+vSKxo1Nur45HlYLS/ecYOdp7ZQm5WvJ9mO8vWw/AC/e2JJQH5MDiYiIiJQTNVFuLDrUn7vjGgLw5UGrtjyXcnP4VC4TP0kE4L6roolvUcfcQCIiIiLlSE2UmxvfuwnB/p6k5ll48uvtGIZhdiSp4gqKHDw4ZwOZ+UW0r1+Tx/s3MzuSiIiISLlSE+Xmavp58fptbbFi8PWmFJ0dJVfshYU72ZScQU0/T2YM76D7oERERKTa0asboWt0MDc0dALw/MIdrNx30uREUlUt3JLCrISDALw6rC11a/qaG0hERESkAqiJEgB6hhvc0DYCh9PgwTkbOHI6z+xIUsUcPJHDY59tBuD+no25rpnugxIREZHqSU2UAGCxwD+HtKBlZCAncwq5/4P12mhCLlm+3cHYDzeQXVBEl4bBPBLf1OxIIiIiIhWm3JuoF154gc6dOxMQEEBYWBhDhw5l165dpcYYhsHkyZOJjIzE19eXXr16sW3btlJjCgoKGDduHKGhofj7+zNkyBCSk5NLjUlPT2fEiBEEBQURFBTEiBEjOH36dHlPyW34etl4666O1PLzZMuRDJ74cqs2mpBL8uz87WxPySTE34vX72iPh03vz4iIiEj1Ve6vdJYuXcoDDzzAqlWrWLJkCUVFRcTHx5OTk1MyZurUqbz66qvMmDGDtWvXEh4eTt++fcnKyioZM2HCBL788kvmzp3LihUryM7OZtCgQTgcv14dGT58OImJiSxatIhFixaRmJjIiBEjyntKbiUq2I8ZwztgtcDnG5L5YFWS2ZHExX2deIQ5qw9hscC029sRHqQDoURERKR68yjvJ1y0aFGpj9977z3CwsJYv34911xzDYZhMG3aNJ544gluuukmAN5//33q1KnDnDlzGDNmDBkZGbz77rt88MEH9OnTB4DZs2cTFRXF999/T79+/dixYweLFi1i1apVdO3aFYB33nmHuLg4du3aRWxsbHlPzW30aBLKpAHNeX7hDp6dt51m4YF0iQ42O5a4oL1p2Uz6YgsA466L4eqY2iYnEhEREal45d5E/V5GRgYAwcHFL8IPHDhAamoq8fHxJWO8vb3p2bMnCQkJjBkzhvXr12O320uNiYyMpFWrViQkJNCvXz9WrlxJUFBQSQMF0K1bN4KCgkhISDhvE1VQUEBBQUHJx5mZmQDY7Xbsdnv5TryMztY3I8f5at/TrR6Jh9NZsCWVv8xez5d/6UZEBVxhMGvervb1rop18wod/GX2OnILHcQ1CmbsNQ0v+Nz6elcud6ztjnM2s7bmXLncsbY7ztnM2u445/MpSwaLUYE3vRiGwQ033EB6ejrLly8HICEhgR49enDkyBEiIyNLxo4ePZqkpCS+++475syZw8iRI0s1PADx8fFER0czc+ZMpkyZwqxZs9i9e3epMU2bNmXkyJFMmjTpnDyTJ0/mmWeeOefxOXPm4OfnVx5TrlYKHDBtq42juRYa1DAY39KBjvyRsz7ca2XNcSuBngaPtnEQ6GV2IhEREZHLl5uby/Dhw8nIyCAwMPCiYyv0StSDDz7I5s2bWbFixTmfs1gspT42DOOcx37v92PON/5izzNp0iQefvjhko8zMzOJiooiPj7+D79QFc1ut7NkyRL69u2Lp6eny9Tu2COXm95aRVJ2EauKGvD8DS3+8O+pvGpXJFf9eleVup9tOMKalduwWuCNEZ3p+gfLPfX1do85m1nbHedsZm3N2T3mbGZtd5yzmbXdcc7nc3aV2qWosCZq3LhxfPPNNyxbtox69eqVPB4eHg5AamoqERERJY+npaVRp06dkjGFhYWkp6dTq1atUmO6d+9eMubYsWPn1D1+/HjJ8/yet7c33t7e5zzu6elp+l/aWWZmOV/txnWCmH5HB+59bw2frj9Cu/q1uLNrg0qpXRlc7etdFeruTM3kmfk7AHi4b1Ouanrp50Hp663a1bWuu9bWnFW7utZ119ruOOffZ7hU5b44yzAMHnzwQb744gt+/PFHoqOjS30+Ojqa8PBwlixZUvJYYWEhS5cuLWmQOnbsiKenZ6kxKSkpbN26tWRMXFwcGRkZrFmzpmTM6tWrycjIKBkj5eOaprV5tF8zACZ/s431SadMTiRmyS4oYuyHG8i3O7mmaW3G9mpidiQRERGRSlfuV6IeeOAB5syZw9dff01AQACpqakABAUF4evri8ViYcKECUyZMoWYmBhiYmKYMmUKfn5+DB8+vGTsfffdx8SJEwkJCSE4OJhHHnmE1q1bl+zW17x5c/r378+oUaOYOXMmUHxf1aBBg7QzXwW4v2cjthw5zcItqdw/ewPzx11FnUBtZe1ODMPgiS+3sP94DuGBPky7rR1Wa/kt7RQRERGpKsq9iXrzzTcB6NWrV6nH33vvPe69914AHnvsMfLy8hg7dizp6el07dqVxYsXExAQUDL+tddew8PDg2HDhpGXl0fv3r2ZNWsWNputZMyHH37I+PHjS3bxGzJkCDNmzCjvKQnF95+9fEtb9qZls/tYNn+ZvZ65o+Pw0k4TbmPOmkN8nXgUm9XCjOHtCfbXThIiIiLinsq9ibqUzf4sFguTJ09m8uTJFxzj4+PD9OnTmT59+gXHBAcHM3v27MuJKZfB39uDt0d0YsiMFWw4dJpn5m3j+Rtbmx1LKsHWIxk8M287AI/3j6VTQ50bJiIiIu5LlxGkTBqG+vPv29tjscCHqw8xd80hsyNJBcvMt/PAnA0UFjnp0zyMUVc3MjuSiIiIiKnUREmZXdssjIl9mwLw9Nfb2Hgo3eREUlEMw+DxzzaTdDKXujV9+detbct1i3sRERGRqkhNlFyWsb2a0K9lHQodTv4yewNpWflmR5IK8H7CQb7dmoqnzcL/3dmBmn66D0pERERETZRcFqvVwivD2tEkrAapmfk88GHxci+pPhIPn+b5hcXnQf39+ua0i6ppbiARERERF6EmSi5bDW8PZo7oSIC3B2sPpvP8gu1mR5Jycjq3kAc+3IDdYTCgVTj3dm9odiQRERERl6EmSq5I49o1eO22dgC8vzKJT9cdNjeQXDHDMHjk000cOZ1HgxA/Xrqlje6DEhEREfkNNVFyxfq0qMOEPjEAPPHVVjYnnzY3kFyRd5bv5/sdaXh5WPm/4R0I9PE0O5KIiIiIS1ETJeVi/HUx9GkeRmGRk/s/WM+J7AKzI8llWHfwFC8t2gXAPwa3oFXdIJMTiYiIiLgeNVFSLqxWC6/e1o5Gof4czcg/cz+NNpqoSk5mF/DgnI04nAZD2kYyvEt9syOJiIiIuCQ1UVJuAn08efvujvh72Vh94BQvLNxpdiS5RE6nwUOfbCI1M59Gtf2ZclNr3QclIiIicgFqoqRcNQkL4NUzG03895cDfLkx2dxAckneXLqPZbuP4+Np5Y07O1DD28PsSCIiIiIuS02UlLt+LcMZf10TAP72+Ra2HskwOZFczMp9J3llcfF9UM/e0Ipm4YEmJxIRERFxbWqipEJM6NOUa2NrU1DkZMwH6zmVU2h2JDmP41kFjJ+7EacBt3Ssx7BOUWZHEhEREXF5aqKkQlitFqbd3p6GIX4cOZ3HuI82UKSNJlyKw2nw17kbOZ5VQNM6NfjnDa3MjiQiIiJSJaiJkgoT5OvJ23d3ws/Lxi97TzL1u11mR5Lf+PcPe0jYdxI/Lxtv3NkBXy+b2ZFEREREqgQ1UVKhmtYJ4JVb2wLw9rL9fLPpqMmJBGDZ7uNM/3EPAFNubE2TsACTE4mIiIhUHWqipMINaB3B2F6NAXjss01sP5ppciL3lpqZz0MfJ2IYcEeX+gxtX9fsSCIiIiJVipooqRQT42O5pmlt8u1OxsxeR7o2mjCFw4CHPtnMyZxCWkQE8o/BLcyOJCIiIlLlqImSSmGzWnj99nbUD/bj8Kk8xs/diMNpmB3L7Sw8ZGVd0mlqeHvwxp0d8PHUfVAiIiIiZaUmSipNTT8vZo7oiK+njeV7TvCyNpqoNPl2BzOXHeD7o8X/5F+6uQ0NQ/1NTiUiIiJSNXmYHUDcS/OIQKbe0oZxH23kraX7aF5HL+Qrkt3h5NN1ybz+wx5SM/MBGNGtPgPbRJicTERERKTqUhMllW5w20i2Hslg5rL9/O3LrdwXYzE7UrXjdBrM35LCq4t3cfBkLgCRQT70DM3hyQGxJqcTERERqdq0nE9M8Wi/WK5qEkqe3cmM7TZuf2cN328/hlP3SV0RwzD4aWcaA6evYPxHGzl4MpcQfy+eHtSCxROuoluYgdWqplVERETkSuhKlJjCw2bl/+7swJQF2/hsfTLrD53mz/9bR0xYDcb0bMyQtpF4eajHL4u1B08xddFO1h5MByDA24NR1zTiT1dFU8PbA7vdbnJCERERkepBTZSYJsjXk+duaElLI4lkvyZ8tCaZPWnZPPLpJl5ZvIv7rorm9i71qeGtb9OL2XY0g399t4ufdh0HwNvDyj3dG/KXno2p5e9lcjoRERGR6kevTsV0QV5wR3xTHuzdlDmrD/HfFQdIycjnuQU7eP2HPdwd15B7ezQktIa32VFdyoETOby6ZDfzNh0FireRH9YpivG9mxAR5GtyOhEREZHqS02UuIxAH0/u79mYkT0a8uWGI7y9bD/7T+Qw46e9vLN8P7d2qsfoqxtTP8TP7KimSs3I598/7OGTdYdLztoa3DaSh/s2JVrblouIiIhUODVR4nK8PWzc3qU+t3aKYsn2VN5cup9Nh08ze9Uh5qw+xPWtI7i/Z2Na1Q0yO2qlSs8p5M2l+3g/4SAFRU4Aro2tzSP9YmkZ6V5fCxEREREzqYkSl2WzWujfKoJ+LcNZtf8Uby3dx9Ldx5m/OYX5m1O4OiaUMdc0pkeTECyW6rvjXHZBEe8uP8A7y/eTXVAEQOeGtXi0XzO6RAebnE5ERETE/aiJEpdnsViIaxxCXOMQth/N5O1l+5i3OYXle06wfM8JWtcNYkzPRgxoFYGtGm3fnW938OHqQ7zx015O5hQCxYcVP9Yvll6xtat14ygiIiLiytRESZXSIjKQabe3Z2J8LO+uOMDctYfYciSDB+dspEHILkZd3YhbOtbDx9NmdtTLVuRw8sWGI0z7fjdHM/IBaBjix8PxsQxqHaFznkRERERMpiZKqqSoYD8mD2nJ+N4xvJ9wkPdXHiTpZC5PfrWVad/vZmSPaO7q2oAgP0+zo14ywzD4dmsqryzexb7jOQCEB/owvncMt3aqh6dN52aJiIiIuAI1UVKlBft78VDfpozp2YiP1x7mP8sPcOR0Hi9/t4s3ftrL8K71ue+qRoQH+Zgd9YIMw2D5nhO8/N0uthzJAKCmnydjezXm7riGVfqqmoiIiEh1pCZKqgU/L4/iq0/dGrBgcwpvLd3HztQs3ll+gFkJB7mhXV3u79mIJmEBZkctZcOhdKYu2smq/acA8POy8eerovnzNY0I9Kk6V9FERERE3ImaKKlWPG1Whravyw3tIvl593He+nkfqw+c4rP1yXy2Ppk+zevwl16NaBNpbjN1NBfu/3AjP+w8DoCXzcpd3Row9trGOlRYRERExMWpiZJqyWKxcG1sGNfGhrHxUDpvLd3H4u3H+H5H8X+dGtQk1sMCW1LBasVpGDic4HQaOAyDIqdR/P+dxpnPFT9e/Bi//n/j13G/fey3z+V0Fj/f2f+fmWcnYZ8Ng+NYLXBLx3r8tU9T6tb0NfvLJiIiIiKXQE2UVHvt69di5ohO7DuezdtL9/PFxmTWJZ1mHTY+3LfZpFQW+reswyP9mtEkrIZJGURERETkcqiJErfRuHYNXrqlDQ/HN+Xd5fv4IfEAISHBeNis2KwWrBbLb/6XUo/ZLBasv/1fK6Ues9nO/O9v/8xvnuu3jxlOJ9lJWxh9a1s8PXXfk4iIiEhVoyZK3E6dQB8ejW9Ky6K9XH9950pvZOx2OwtPbKnUmiIiIiJSfnTwjIiIiIiISBmoiRIRERERESkDNVEiIiIiIiJloCZKRERERESkDNREiYiIiIiIlIGaKBERERERkTJQEyUiIiIiIlIGaqJERERERETKQE2UiIiIiIhIGaiJEhERERERKQM1USIiIiIiImWgJkpERERERKQM1ESJiIiIiIiUgZooERERERGRMlATJSIiIiIiUgZqokRERERERMpATZSIiIiIiEgZqIkSEREREREpAw+zA5jJMAwAMjMzTU4Cdrud3NxcMjMz8fT0VO1qWtfM2u44ZzNru+OczaztjnM2s7bm7B5zNrO2O87ZzNruOOfzOdsTnO0RLsatm6isrCwAoqKiTE4iIiIiIiKuICsri6CgoIuOsRiX0mpVU06nk6NHjxIQEIDFYjE1S2ZmJlFRURw+fJjAwEDVrqZ1zaztjnM2s7Y7ztnM2u44ZzNra87uMWcza7vjnM2s7Y5zPh/DMMjKyiIyMhKr9eJ3Pbn1lSir1Uq9evXMjlFKYGCgad9A7lhbc1bt6lrXXWu745zNrK05q3Z1reuutd1xzr/3R1egztLGEiIiIiIiImWgJkpERERERKQM1ES5CG9vb/7xj3/g7e2t2tW4rpm13XHOZtZ2xzmbWdsd52xmbc25crljbXecs5m13XHOV8qtN5YQEREREREpK12JEhERERERKQM1USIiIiIiImWgJkpERERERKQM1ESJiIiIiIiUgZooF/HGG28QHR2Nj48PHTt2ZPny5RVec9myZQwePJjIyEgsFgtfffVVhdcEeOGFF+jcuTMBAQGEhYUxdOhQdu3aVSm133zzTdq0aVNyoFtcXBzffvttpdT+rRdeeAGLxcKECRMqvNbkyZOxWCyl/gsPD6/wumcdOXKEu+66i5CQEPz8/GjXrh3r16+v0JoNGzY8Z84Wi4UHHnigQusCFBUV8eSTTxIdHY2vry+NGjXi2Wefxel0VnjtrKwsJkyYQIMGDfD19aV79+6sXbu23Ov80c8OwzCYPHkykZGR+Pr60qtXL7Zt21Yptb/44gv69etHaGgoFouFxMTEcqn7R7XtdjuPP/44rVu3xt/fn8jISO6++26OHj1aoXWh+N94s2bN8Pf3p1atWvTp04fVq1dfcd1Lqf1bY8aMwWKxMG3atAqve++9957z77tbt25XXPdSagPs2LGDIUOGEBQUREBAAN26dePQoUMVXvt8P9csFgsvv/xyhdbNzs7mwQcfpF69evj6+tK8eXPefPPNK6p5qbWPHTvGvffeS2RkJH5+fvTv3589e/Zccd1LeS1SUT/LLqV2Rfws+6O6Fflz7FLmXJE/yyqCmigX8PHHHzNhwgSeeOIJNm7cyNVXX82AAQPK5QfyxeTk5NC2bVtmzJhRoXV+b+nSpTzwwAOsWrWKJUuWUFRURHx8PDk5ORVeu169erz44ousW7eOdevWcd1113HDDTeU2wu8S7F27Vrefvtt2rRpU2k1W7ZsSUpKSsl/W7ZsqZS66enp9OjRA09PT7799lu2b9/OK6+8Qs2aNSu07tq1a0vNd8mSJQDceuutFVoX4KWXXuKtt95ixowZ7Nixg6lTp/Lyyy8zffr0Cq/95z//mSVLlvDBBx+wZcsW4uPj6dOnD0eOHCnXOn/0s2Pq1Km8+uqrzJgxg7Vr1xIeHk7fvn3Jysqq8No5OTn06NGDF1988YprlaV2bm4uGzZs4KmnnmLDhg188cUX7N69myFDhlRoXYCmTZsyY8YMtmzZwooVK2jYsCHx8fEcP368wmuf9dVXX7F69WoiIyOvuOal1u3fv3+pf+cLFy6slNr79u3jqquuolmzZvz8889s2rSJp556iv9v7+6jcr7/OI6/WldXtaRJpStc11BKUaPMso7cNDSHkq3cLFm2czoT3Wxh2Mmxn5gzHM7mppaONIfjGMI5JeTazJkoTaxDpilbuY6Qe6Xr8/vDqVMxddHnuozX45zO0Tc8v1dOb5/PdX37ZmVlJb3d/PFWVVVh06ZNMDMzw6RJk6R2ExISkJOTg6ysLJSWliIhIQGzZ8/Gnj17nqvbVlsIgdDQUFy8eBF79uzBqVOnoNFoEBQU9NxrhvasRWTNsva0Zcyytroy51h7HrPMWSaFIJN7++23RUxMTItjHh4eYv78+UY7BwBi165dRus1p9PpBACh1WpN0u/SpYv44YcfjNK6deuWcHNzE3l5eSIwMFDExcVJbyYnJwsfHx/pnSeZN2+eCAgIMEm7ubi4ONGnTx+h1+ult8aNGyeio6NbHAsLCxMfffSR1O7du3eFubm52LdvX4vjPj4+YuHChdK6rWeHXq8Xzs7OYvny5U3H7t+/L+zs7MSGDRuktpsrLy8XAMSpU6c6tNmedqOCggIBQFy6dMmo3draWgFAHDx4sMO6T2tfvnxZdO/eXZw5c0ZoNBqxevVq6d2oqCgREhLSoZ32tiMiIqR/Pf9bu7WQkBAxcuRI6V0vLy+xZMmSFscGDRokFi1aJLV97tw5AUCcOXOm6djDhw+Fvb29SEtL69B267WIMWfZ09ZBMmdZe9ZfMuZYe9uyZllH4StRJlZXV4fCwkKMHj26xfHRo0fj2LFjJjor46qtrQUA2NvbG7Xb0NCAbdu24c6dO/D39zdKc9asWRg3bhyCgoKM0mtUVlYGFxcX9OrVC5MnT8bFixeN0s3Ozoafnx8+/PBDODk5YeDAgUhLSzNKu1FdXR2ysrIQHR0NMzMz6b2AgAAcOnQI58+fBwD8/vvvOHr0KN5//32p3YcPH6KhoeGxZ8Otra1x9OhRqe3mysvLUV1d3WKmWVpaIjAw8JWZaY1qa2thZmYm/ZXX5urq6pCamgo7Ozv4+PhI7+n1ekRGRiIpKQleXl7Se80dOXIETk5O6Nu3Lz799FPodDrpTb1ej/3796Nv374YM2YMnJycMGTIEKNdDt/clStXsH//fsycOVN6KyAgANnZ2fj7778hhEB+fj7Onz+PMWPGSO0+ePAAAFrMNXNzcyiVyg6fa63XIsacZaZaB7WnK2uOtdU29ix7FtxEmdjVq1fR0NCAbt26tTjerVs3VFdXm+isjEcIgcTERAQEBKB///5GaZaUlKBTp06wtLRETEwMdu3aBU9PT+ndbdu2obCwEMuWLZPeam7IkCHIzMxEbm4u0tLSUF1djaFDh6KmpkZ6++LFi1i/fj3c3NyQm5uLmJgYzJkzB5mZmdLbjXbv3o0bN25gxowZRunNmzcPU6ZMgYeHBywsLDBw4EDEx8djypQpUru2trbw9/fH119/jX/++QcNDQ3IysrC8ePHUVVVJbXdXOPcelVnWqP79+9j/vz5mDp1Kjp37iy9t2/fPnTq1AlWVlZYvXo18vLy4ODgIL37zTffQKFQYM6cOdJbzQUHB+PHH3/E4cOHsXLlSpw4cQIjR45sWnTLotPpcPv2bSxfvhxjx47FgQMHMHHiRISFhUGr1Uptt7Z582bY2toiLCxMemvt2rXw9PREjx49oFQqMXbsWKxbtw4BAQFSux4eHtBoNPjyyy9x/fp11NXVYfny5aiuru7QufaktYixZpkp1kHt7cqaY09rm2qWPQuFqU+AHmn9DLkQwijPmptabGwsTp8+bdRnyt3d3VFcXIwbN25g586diIqKglarlbqRqqysRFxcHA4cONAh180bIjg4uOnXAwYMgL+/P/r06YPNmzcjMTFRaluv18PPzw8pKSkAgIEDB+Ls2bNYv349pk+fLrXdKD09HcHBwR32vRpt2b59O7KysrB161Z4eXmhuLgY8fHxcHFxQVRUlNT2li1bEB0dje7du8Pc3ByDBg3C1KlTUVRUJLX7JK/qTAMefXP25MmTodfrsW7dOqM0R4wYgeLiYly9ehVpaWkIDw/H8ePH4eTkJK1ZWFiINWvWoKioyOj/thEREU2/7t+/P/z8/KDRaLB//36pm4rGG8SEhIQgISEBAPDWW2/h2LFj2LBhAwIDA6W1W9u0aROmTZtmlP9T1q5di99++w3Z2dnQaDT4+eef8dlnn0GlUkm9ssLCwgI7d+7EzJkzYW9vD3NzcwQFBbX4f60jPG0tInuWmWId1J6uzDn2tLYpZtmz4itRJubg4ABzc/PHntXQ6XSPPfvxspk9ezays7ORn5+PHj16GK2rVCrh6uoKPz8/LFu2DD4+PlizZo3UZmFhIXQ6HXx9faFQKKBQKKDVarF27VooFAo0NDRI7TdnY2ODAQMGdMjdjdqiUqke25z269dP+k1TGl26dAkHDx7EJ598YpQeACQlJWH+/PmYPHkyBgwYgMjISCQkJBjlFcg+ffpAq9Xi9u3bqKysREFBAerr69GrVy/p7UaNd358FWca8GjhER4ejvLycuTl5RnlVSjg0de1q6sr3nnnHaSnp0OhUCA9PV1q85dffoFOp4NarW6aa5cuXcLnn3+ON998U2q7NZVKBY1GI32uOTg4QKFQmHSuAY8+9+fOnTPKbLt37x4WLFiAVatWYfz48fD29kZsbCwiIiLw7bffSu/7+vo2PfFZVVWFnJwc1NTUdNhc+7e1iDFmmanWQW11Zc6xttqmmGXPipsoE1MqlfD19W26e1ijvLw8DB061ERnJZcQArGxsfjpp59w+PBhoy7w/u18ZF8CMmrUKJSUlKC4uLjpzc/PD9OmTUNxcTHMzc2l9pt78OABSktLoVKppLfefffdx25hev78eWg0GultAMjIyICTkxPGjRtnlB7w6O5Gr73WcrSam5sb5RbnjWxsbKBSqXD9+nXk5uYiJCTEaO1evXrB2dm5xUyrq6uDVqt9aWdao8aFR1lZGQ4ePIiuXbua7FyMMdciIyNx+vTpFnPNxcUFSUlJyM3NldpuraamBpWVldLnmlKpxODBg00614BHr7D7+voa5XtF6uvrUV9fb/K5ZmdnB0dHR5SVleHkyZPPPdfaWovInGWmWge1pytrjj3rYzbGLHtWvJzvBZCYmIjIyEj4+fnB398fqampqKioQExMjNTu7du3ceHChab3y8vLUVxcDHt7e6jVamndWbNmYevWrdizZw9sbW2bnuWxs7ODtbW1tC4ALFiwAMHBwejZsydu3bqFbdu24ciRI8jJyZHatbW1fey6XxsbG3Tt2lX6NdBffPEFxo8fD7VaDZ1Oh//973+4efOm9EvLgEe3xR06dChSUlIQHh6OgoICpKamIjU1VXpbr9cjIyMDUVFRUCiMN+rGjx+PpUuXQq1Ww8vLC6dOncKqVasQHR0tvZ2bmwshBNzd3XHhwgUkJSXB3d0dH3/8cYd22pod8fHxSElJgZubG9zc3JCSkoLXX38dU6dOld6+du0aKioqmn6uSeNi19nZ+bl/PtrT2i4uLvjggw9QVFSEffv2oaGhoWm22dvbQ6lUSul27doVS5cuxYQJE6BSqVBTU4N169bh8uXLHXJL/7Y+360XWBYWFnB2doa7u7u0rr29PRYvXoxJkyZBpVLhr7/+woIFC+Dg4ICJEyc+V7ettlqtRlJSEiIiIjBs2DCMGDECOTk52Lt3L44cOSK9DQA3b97Ejh07sHLlyufutbcbGBiIpKQkWFtbQ6PRQKvVIjMzE6tWrZLe3rFjBxwdHaFWq1FSUoK4uDiEhoY+dkMuQ7W1Fmn8WY4yZll71kEyZllb3YcPH0qbY22179y5I3WWSWHs2wHSk33//fdCo9EIpVIpBg0aZJTbfefn5wsAj71FRUVJ7T6pCUBkZGRI7QohRHR0dNPn2dHRUYwaNUocOHBAevdJjHWL84iICKFSqYSFhYVwcXERYWFh4uzZs9K7jfbu3Sv69+8vLC0thYeHh0hNTTVKNzc3VwAQ586dM0qv0c2bN0VcXJxQq9XCyspK9O7dWyxcuFA8ePBAenv79u2id+/eQqlUCmdnZzFr1ixx48aNDu+0NTv0er1ITk4Wzs7OwtLSUgwbNkyUlJQYpZ2RkfHEjycnJ0ttN96G+Elv+fn50rr37t0TEydOFC4uLkKpVAqVSiUmTJggCgoKnvvxttV+ko66xfnTunfv3hWjR48Wjo6OwsLCQqjVahEVFSUqKiqeu9tWu1F6erpwdXUVVlZWwsfHR+zevdto7Y0bNwpra+sO/dpuq1tVVSVmzJghXFxchJWVlXB3dxcrV67skB8b0VZ7zZo1okePHk3/1osWLeqQedqetYisWdaetoxZ1lZX5hxrqy17lslgJoQQT95eERERERERUWv8nigiIiIiIiIDcBNFRERERERkAG6iiIiIiIiIDMBNFBERERERkQG4iSIiIiIiIjIAN1FEREREREQG4CaKiIiIiIjIANxEERHRS2P48OGIj4839WkQEdFLjpsoIiIiIiIiA3ATRURE9Bzq6upMfQpERGRk3EQREdFLRa/XY+7cubC3t4ezszMWL17c9LGKigqEhISgU6dO6Ny5M8LDw3HlypWmj8+YMQOhoaEt/r74+HgMHz686f3hw4cjNjYWiYmJcHBwwHvvvSf5ERER0YuGmygiInqpbN68GTY2Njh+/DhWrFiBJUuWIC8vD0IIhIaG4tq1a9BqtcjLy8Off/6JiIiIZ2ooFAr8+uuv2Lhxo4RHQURELzKFqU+AiIioI3l7eyM5ORkA4Obmhu+++w6HDh0CAJw+fRrl5eXo2bMnAGDLli3w8vLCiRMnMHjw4HY3XF1dsWLFio4/eSIi+k/gK1FERPRS8fb2bvG+SqWCTqdDaWkpevbs2bSBAgBPT0+88cYbKC0tNajh5+fXIedKRET/TdxEERHRS8XCwqLF+2ZmZtDr9RBCwMzM7LHf3/z4a6+9BiFEi4/X19c/9mdsbGw68IyJiOi/hpsoIiJ6JXh6eqKiogKVlZVNx/744w/U1taiX79+AABHR0dUVVW1+HPFxcXGPE0iIvoP4CaKiIheCUFBQfD29sa0adNQVFSEgoICTJ8+HYGBgU2X540cORInT55EZmYmysrKkJycjDNnzpj4zImI6EXDTRQREb0SzMzMsHv3bnTp0gXDhg1DUFAQevfuje3btzf9njFjxuCrr77C3LlzMXjwYNy6dQvTp0834VkTEdGLyEy0vvibiIiIiIiI/hVfiSIiIiIiIjIAN1FEREREREQG4CaKiIiIiIjIANxEERERERERGYCbKCIiIiIiIgNwE0VERERERGQAbqKIiIiIiIgMwE0UERERERGRAbiJIiIiIiIiMgA3UURERERERAbgJoqIiIiIiMgA3EQREREREREZ4P/o4xCLihWaZQAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sales.groupby('hour')[['ID']].nunique().rename({'ID':'number of sales'},axis=1).plot(kind='line',figsize=(10,6))\n", + "plt.xticks(range(0,24))\n", + "plt.grid()\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "c9d9f1cd", + "metadata": {}, + "source": [ + "Between `11:00 - 13:00` and `18:00 - 20:00` could be good time to push advertisement" + ] + }, + { + "cell_type": "markdown", + "id": "36c7442c", + "metadata": {}, + "source": [ + "# What products are most often sold together?\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "bf26e43c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDProductQuantity_orderedPrice_eachOrder_dateStreetCityStateZip_codeYearMonthhourminute
67164141275USB-C Charging Cable111.952019-01-07 16:06:00610 Walnut StAustinTX7330120191166
67165141275Wired Headphones111.992019-01-07 16:06:00610 Walnut StAustinTX7330120191166
67180141290Apple Airpods Headphones1150.002019-01-02 08:25:004 1st StLos AngelesCA9000120191825
67181141290AA Batteries (4-pack)33.842019-01-02 08:25:004 1st StLos AngelesCA9000120191825
67256141365Vareebadd Phone1400.002019-01-10 11:19:0020 Dogwood StNew York CityNY10001201911119
..........................................
55066319584Wired Headphones111.992019-12-11 00:30:00537 Sunset StPortlandOR97035201912030
55078319596iPhone1700.002019-12-01 08:44:00436 14th StNew York CityNY10001201912844
55079319596Lightning Charging Cable114.952019-12-01 08:44:00436 14th StNew York CityNY10001201912844
5511431963134in Ultrawide Monitor1379.992019-12-17 22:35:00363 Highland StAustinTX733012019122235
55115319631Lightning Charging Cable114.952019-12-17 22:35:00363 Highland StAustinTX733012019122235
\n", + "

14128 rows × 13 columns

\n", + "
" + ], + "text/plain": [ + " ID Product Quantity_ordered Price_each \\\n", + "67164 141275 USB-C Charging Cable 1 11.95 \n", + "67165 141275 Wired Headphones 1 11.99 \n", + "67180 141290 Apple Airpods Headphones 1 150.00 \n", + "67181 141290 AA Batteries (4-pack) 3 3.84 \n", + "67256 141365 Vareebadd Phone 1 400.00 \n", + "... ... ... ... ... \n", + "55066 319584 Wired Headphones 1 11.99 \n", + "55078 319596 iPhone 1 700.00 \n", + "55079 319596 Lightning Charging Cable 1 14.95 \n", + "55114 319631 34in Ultrawide Monitor 1 379.99 \n", + "55115 319631 Lightning Charging Cable 1 14.95 \n", + "\n", + " Order_date Street City State Zip_code \\\n", + "67164 2019-01-07 16:06:00 610 Walnut St Austin TX 73301 \n", + "67165 2019-01-07 16:06:00 610 Walnut St Austin TX 73301 \n", + "67180 2019-01-02 08:25:00 4 1st St Los Angeles CA 90001 \n", + "67181 2019-01-02 08:25:00 4 1st St Los Angeles CA 90001 \n", + "67256 2019-01-10 11:19:00 20 Dogwood St New York City NY 10001 \n", + "... ... ... ... ... ... \n", + "55066 2019-12-11 00:30:00 537 Sunset St Portland OR 97035 \n", + "55078 2019-12-01 08:44:00 436 14th St New York City NY 10001 \n", + "55079 2019-12-01 08:44:00 436 14th St New York City NY 10001 \n", + "55114 2019-12-17 22:35:00 363 Highland St Austin TX 73301 \n", + "55115 2019-12-17 22:35:00 363 Highland St Austin TX 73301 \n", + "\n", + " Year Month hour minute \n", + "67164 2019 1 16 6 \n", + "67165 2019 1 16 6 \n", + "67180 2019 1 8 25 \n", + "67181 2019 1 8 25 \n", + "67256 2019 1 11 19 \n", + "... ... ... ... ... \n", + "55066 2019 12 0 30 \n", + "55078 2019 12 8 44 \n", + "55079 2019 12 8 44 \n", + "55114 2019 12 22 35 \n", + "55115 2019 12 22 35 \n", + "\n", + "[14128 rows x 13 columns]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sales[sales.duplicated('ID',keep=False)].sort_values(by='ID')" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "ca290137", + "metadata": {}, + "outputs": [], + "source": [ + "sales['Grouped']=sales.groupby('ID')[['Product']].transform(lambda x: ','.join(x))\n", + "sales['Grouped_count']=sales.groupby('ID')[['Product']].transform('count')" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "b7085994", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDProductQuantity_orderedPrice_eachOrder_dateStreetCityStateZip_codeYearMonthhourminuteGroupedGrouped_count
2176560Google Phone1600.002019-04-12 14:38:00669 Spruce StLos AngelesCA90001201941438Google Phone,Wired Headphones2
3176560Wired Headphones111.992019-04-12 14:38:00669 Spruce StLos AngelesCA90001201941438Google Phone,Wired Headphones2
17176574Google Phone1600.002019-04-03 19:42:0020 Hill StLos AngelesCA90001201941942Google Phone,USB-C Charging Cable2
18176574USB-C Charging Cable111.952019-04-03 19:42:0020 Hill StLos AngelesCA90001201941942Google Phone,USB-C Charging Cable2
30176586AAA Batteries (4-pack)22.992019-04-10 17:00:00365 Center StSan FranciscoCA9401620194170AAA Batteries (4-pack),Google Phone2
\n", + "
" + ], + "text/plain": [ + " ID Product Quantity_ordered Price_each \\\n", + "2 176560 Google Phone 1 600.00 \n", + "3 176560 Wired Headphones 1 11.99 \n", + "17 176574 Google Phone 1 600.00 \n", + "18 176574 USB-C Charging Cable 1 11.95 \n", + "30 176586 AAA Batteries (4-pack) 2 2.99 \n", + "\n", + " Order_date Street City State Zip_code Year \\\n", + "2 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 2019 \n", + "3 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 2019 \n", + "17 2019-04-03 19:42:00 20 Hill St Los Angeles CA 90001 2019 \n", + "18 2019-04-03 19:42:00 20 Hill St Los Angeles CA 90001 2019 \n", + "30 2019-04-10 17:00:00 365 Center St San Francisco CA 94016 2019 \n", + "\n", + " Month hour minute Grouped Grouped_count \n", + "2 4 14 38 Google Phone,Wired Headphones 2 \n", + "3 4 14 38 Google Phone,Wired Headphones 2 \n", + "17 4 19 42 Google Phone,USB-C Charging Cable 2 \n", + "18 4 19 42 Google Phone,USB-C Charging Cable 2 \n", + "30 4 17 0 AAA Batteries (4-pack),Google Phone 2 " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sales[sales.Grouped_count>1].head()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "a139959d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Grouped\n", + "iPhone,Lightning Charging Cable 886.0\n", + "Google Phone,USB-C Charging Cable 857.0\n", + "iPhone,Wired Headphones 361.0\n", + "Vareebadd Phone,USB-C Charging Cable 312.0\n", + "Google Phone,Wired Headphones 303.0\n", + "iPhone,Apple Airpods Headphones 286.0\n", + "Google Phone,Bose SoundSport Headphones 161.0\n", + "Vareebadd Phone,Wired Headphones 104.0\n", + "Google Phone,USB-C Charging Cable,Wired Headphones 79.0\n", + "Vareebadd Phone,Bose SoundSport Headphones 60.0\n", + "dtype: float64" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# 10 most common group of producst bought together\n", + "(\n", + " sales[sales.Grouped_count>1].groupby(['Grouped'])['ID'].count()/\n", + " sales[sales.Grouped_count>1].groupby(['Grouped'])['Grouped_count'].first()\n", + ").sort_values(ascending=False).head(10)" + ] + }, + { + "cell_type": "markdown", + "id": "6dd429c6", + "metadata": {}, + "source": [ + "# What products are sold the most, and why?" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "05b589bc", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjoAAAJ1CAYAAADQRlp5AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAA9hAAAPYQGoP6dpAADRbElEQVR4nOzdd1RU1/c28GfoRRhQBESxC6Jgj6ImRqOi2EtiwWAviV2xRk3svZeoUSO2WGJsiRF7CbGjYO8NDahRBAUFhf3+4Y/7MgK2uTPG+T6fte5acOdw950LzOw595x9NCIiICIiIjJBZh/6BIiIiIgMhYkOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJsvjQJ/AhpaWl4Z9//oGDgwM0Gs2HPh0iIiJ6CyKCx48fw8PDA2Zmr++z+Z9OdP755x94enp+6NMgIiKi9xAdHY18+fK9ts3/dKLj4OAA4OWFcnR0/MBnQ0RERG8jISEBnp6eyvv46/xPJzrpt6scHR2Z6BAREX1k3mbYCQcjExERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmy+JDnwDRf13BIVvf+WduTKxvgDMhIqJ3xR4dIiIiMllMdIiIiMhkMdEhIiIik8VEh4iIiEwWEx0iIiIyWUx0iIiIyGS9U6Izf/58lCpVCo6OjnB0dETlypWxbds25XERwciRI+Hh4QFbW1tUr14dZ8+e1TlGcnIyevXqBRcXF9jb26NRo0a4ffu2Tpu4uDgEBwdDq9VCq9UiODgYjx490mlz69YtNGzYEPb29nBxcUHv3r2RkpLyjk+fiIiITNk7JTr58uXDxIkTcfz4cRw/fhxffPEFGjdurCQzkydPxvTp0zF37lwcO3YM7u7uqF27Nh4/fqwco2/fvti4cSPWrFmD8PBwPHnyBA0aNEBqaqrSJigoCJGRkQgLC0NYWBgiIyMRHBysPJ6amor69esjMTER4eHhWLNmDX777TeEhIToez2IiIjIhGhERPQ5QM6cOTFlyhR07NgRHh4e6Nu3LwYPHgzgZe+Nm5sbJk2ahG7duiE+Ph65c+fGihUr0LJlSwDAP//8A09PT/z555+oU6cOzp8/jxIlSuDw4cOoVKkSAODw4cOoXLkyLly4AG9vb2zbtg0NGjRAdHQ0PDw8AABr1qxB+/btce/ePTg6Or7VuSckJECr1SI+Pv6tf4b+97BgIBHRf8u7vH+/9xid1NRUrFmzBomJiahcuTKuX7+O2NhYBAQEKG2sra3x+eef4+DBgwCAiIgIPH/+XKeNh4cHfH19lTaHDh2CVqtVkhwA8Pf3h1ar1Wnj6+urJDkAUKdOHSQnJyMiIuJ9nxIRERGZmHdeAuL06dOoXLkynj17hhw5cmDjxo0oUaKEkoS4ubnptHdzc8PNmzcBALGxsbCysoKzs3OmNrGxsUobV1fXTHFdXV112rwax9nZGVZWVkqbrCQnJyM5OVn5PiEh4W2fNhEREX2E3rlHx9vbG5GRkTh8+DC+/fZbtGvXDufOnVMe12g0Ou1FJNO+V73aJqv279PmVRMmTFAGOGu1Wnh6er72vIiIiOjj9s6JjpWVFYoWLYoKFSpgwoQJKF26NGbNmgV3d3cAyNSjcu/ePaX3xd3dHSkpKYiLi3ttm7t372aKe//+fZ02r8aJi4vD8+fPM/X0ZDR06FDEx8crW3R09Ds+eyIiIvqY6F1HR0SQnJyMQoUKwd3dHTt37lQeS0lJwf79+1GlShUAQPny5WFpaanTJiYmBmfOnFHaVK5cGfHx8Th69KjS5siRI4iPj9dpc+bMGcTExChtduzYAWtra5QvXz7bc7W2tlamxqdvREREZLreaYzOd999h8DAQHh6euLx48dYs2YN9u3bh7CwMGg0GvTt2xfjx49HsWLFUKxYMYwfPx52dnYICgoCAGi1WnTq1AkhISHIlSsXcubMiQEDBsDPzw+1atUCAPj4+KBu3bro0qULFi5cCADo2rUrGjRoAG9vbwBAQEAASpQogeDgYEyZMgUPHz7EgAED0KVLFyYvREREpHinROfu3bsIDg5GTEwMtFotSpUqhbCwMNSuXRsAMGjQIDx9+hTdu3dHXFwcKlWqhB07dsDBwUE5xowZM2BhYYEWLVrg6dOnqFmzJkJDQ2Fubq60WbVqFXr37q3MzmrUqBHmzp2rPG5ubo6tW7eie/fuqFq1KmxtbREUFISpU6fqdTGIiIjItOhdR+djxjo69DZYR4eI6L/FKHV0iIiIiP7rmOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERksiw+9AkQva+CQ7a+88/cmFjfAGdCRET/VezRISIiIpPFRIeIiIhMFhMdIiIiMllMdIiIiMhkMdEhIiIik8VEh4iIiEwWEx0iIiIyWUx0iIiIyGQx0SEiIiKTxUSHiIiITBYTHSIiIjJZTHSIiIjIZDHRISIiIpPFRIeIiIhMFhMdIiIiMllMdIiIiMhkMdEhIiIik8VEh4iIiEwWEx0iIiIyWUx0iIiIyGQx0SEiIiKTxUSHiIiITBYTHSIiIjJZTHSIiIjIZL1TojNhwgR88skncHBwgKurK5o0aYKLFy/qtGnfvj00Go3O5u/vr9MmOTkZvXr1gouLC+zt7dGoUSPcvn1bp01cXByCg4Oh1Wqh1WoRHByMR48e6bS5desWGjZsCHt7e7i4uKB3795ISUl5l6dEREREJuydEp39+/ejR48eOHz4MHbu3IkXL14gICAAiYmJOu3q1q2LmJgYZfvzzz91Hu/bty82btyINWvWIDw8HE+ePEGDBg2QmpqqtAkKCkJkZCTCwsIQFhaGyMhIBAcHK4+npqaifv36SExMRHh4ONasWYPffvsNISEh73MdiIiIyARZvEvjsLAwne+XLl0KV1dXREREoFq1asp+a2truLu7Z3mM+Ph4LFmyBCtWrECtWrUAACtXroSnpyd27dqFOnXq4Pz58wgLC8Phw4dRqVIlAMCiRYtQuXJlXLx4Ed7e3tixYwfOnTuH6OhoeHh4AACmTZuG9u3bY9y4cXB0dHyXp0ZEREQmSK8xOvHx8QCAnDlz6uzft28fXF1d4eXlhS5duuDevXvKYxEREXj+/DkCAgKUfR4eHvD19cXBgwcBAIcOHYJWq1WSHADw9/eHVqvVaePr66skOQBQp04dJCcnIyIiIsvzTU5ORkJCgs5GREREpuu9Ex0RQf/+/fHpp5/C19dX2R8YGIhVq1Zhz549mDZtGo4dO4YvvvgCycnJAIDY2FhYWVnB2dlZ53hubm6IjY1V2ri6umaK6erqqtPGzc1N53FnZ2dYWVkpbV41YcIEZcyPVquFp6fn+z59IiIi+gi8062rjHr27IlTp04hPDxcZ3/Lli2Vr319fVGhQgUUKFAAW7duRbNmzbI9nohAo9Eo32f8Wp82GQ0dOhT9+/dXvk9ISGCyQ0REZMLeq0enV69e2LJlC/bu3Yt8+fK9tm2ePHlQoEABXL58GQDg7u6OlJQUxMXF6bS7d++e0kPj7u6Ou3fvZjrW/fv3ddq82nMTFxeH58+fZ+rpSWdtbQ1HR0edjYiIiEzXOyU6IoKePXtiw4YN2LNnDwoVKvTGn3nw4AGio6ORJ08eAED58uVhaWmJnTt3Km1iYmJw5swZVKlSBQBQuXJlxMfH4+jRo0qbI0eOID4+XqfNmTNnEBMTo7TZsWMHrK2tUb58+Xd5WkRERGSi3unWVY8ePfDLL79g8+bNcHBwUHpUtFotbG1t8eTJE4wcORLNmzdHnjx5cOPGDXz33XdwcXFB06ZNlbadOnVCSEgIcuXKhZw5c2LAgAHw8/NTZmH5+Pigbt266NKlCxYuXAgA6Nq1Kxo0aABvb28AQEBAAEqUKIHg4GBMmTIFDx8+xIABA9ClSxf21BARERGAd+zRmT9/PuLj41G9enXkyZNH2dauXQsAMDc3x+nTp9G4cWN4eXmhXbt28PLywqFDh+Dg4KAcZ8aMGWjSpAlatGiBqlWrws7ODr///jvMzc2VNqtWrYKfnx8CAgIQEBCAUqVKYcWKFcrj5ubm2Lp1K2xsbFC1alW0aNECTZo0wdSpU/W9JkRERGQiNCIiH/okPpSEhARotVrEx8ezF+gjVHDI1nf+mRsT6/9n4xAR0dt5l/dvrnVFREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQm672XgCAiIvpfxJmYHxf26BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSyWDCQiOh/FAvf0f8C9ugQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJsvjQJ0BEREQfTsEhW9/5Z25MrG+AMzEM9ugQERGRyXqnRGfChAn45JNP4ODgAFdXVzRp0gQXL17UaSMiGDlyJDw8PGBra4vq1avj7NmzOm2Sk5PRq1cvuLi4wN7eHo0aNcLt27d12sTFxSE4OBharRZarRbBwcF49OiRTptbt26hYcOGsLe3h4uLC3r37o2UlJR3eUpERERkwt4p0dm/fz969OiBw4cPY+fOnXjx4gUCAgKQmJiotJk8eTKmT5+OuXPn4tixY3B3d0ft2rXx+PFjpU3fvn2xceNGrFmzBuHh4Xjy5AkaNGiA1NRUpU1QUBAiIyMRFhaGsLAwREZGIjg4WHk8NTUV9evXR2JiIsLDw7FmzRr89ttvCAkJ0ed6EBERkQl5pzE6YWFhOt8vXboUrq6uiIiIQLVq1SAimDlzJoYNG4ZmzZoBAJYtWwY3Nzf88ssv6NatG+Lj47FkyRKsWLECtWrVAgCsXLkSnp6e2LVrF+rUqYPz588jLCwMhw8fRqVKlQAAixYtQuXKlXHx4kV4e3tjx44dOHfuHKKjo+Hh4QEAmDZtGtq3b49x48bB0dFR74tDREREHze9xujEx8cDAHLmzAkAuH79OmJjYxEQEKC0sba2xueff46DBw8CACIiIvD8+XOdNh4eHvD19VXaHDp0CFqtVklyAMDf3x9arVanja+vr5LkAECdOnWQnJyMiIiILM83OTkZCQkJOhsRERGZrvdOdEQE/fv3x6effgpfX18AQGxsLADAzc1Np62bm5vyWGxsLKysrODs7PzaNq6urpliurq66rR5NY6zszOsrKyUNq+aMGGCMuZHq9XC09PzXZ82ERERfUTeO9Hp2bMnTp06hdWrV2d6TKPR6HwvIpn2verVNlm1f582GQ0dOhTx8fHKFh0d/dpzIiIioo/beyU6vXr1wpYtW7B3717ky5dP2e/u7g4AmXpU7t27p/S+uLu7IyUlBXFxca9tc/fu3Uxx79+/r9Pm1ThxcXF4/vx5pp6edNbW1nB0dNTZiIiIyHS9U6IjIujZsyc2bNiAPXv2oFChQjqPFypUCO7u7ti5c6eyLyUlBfv370eVKlUAAOXLl4elpaVOm5iYGJw5c0ZpU7lyZcTHx+Po0aNKmyNHjiA+Pl6nzZkzZxATE6O02bFjB6ytrVG+fPl3eVpERERkot5p1lWPHj3wyy+/YPPmzXBwcFB6VLRaLWxtbaHRaNC3b1+MHz8exYoVQ7FixTB+/HjY2dkhKChIadupUyeEhIQgV65cyJkzJwYMGAA/Pz9lFpaPjw/q1q2LLl26YOHChQCArl27okGDBvD29gYABAQEoESJEggODsaUKVPw8OFDDBgwAF26dGFPDREREQF4x0Rn/vz5AIDq1avr7F+6dCnat28PABg0aBCePn2K7t27Iy4uDpUqVcKOHTvg4OCgtJ8xYwYsLCzQokULPH36FDVr1kRoaCjMzc2VNqtWrULv3r2V2VmNGjXC3LlzlcfNzc2xdetWdO/eHVWrVoWtrS2CgoIwderUd7oAREREZLreKdERkTe20Wg0GDlyJEaOHJltGxsbG8yZMwdz5szJtk3OnDmxcuXK18bKnz8//vjjjzeeExEREf1v4lpXREREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmy+JDnwARvVRwyNZ3/pkbE+sb4EyIiEwHe3SIiIjIZDHRISIiIpP1zonOgQMH0LBhQ3h4eECj0WDTpk06j7dv3x4ajUZn8/f312mTnJyMXr16wcXFBfb29mjUqBFu376t0yYuLg7BwcHQarXQarUIDg7Go0ePdNrcunULDRs2hL29PVxcXNC7d2+kpKS861MiIiIiE/XOiU5iYiJKly6NuXPnZtumbt26iImJUbY///xT5/G+ffti48aNWLNmDcLDw/HkyRM0aNAAqampSpugoCBERkYiLCwMYWFhiIyMRHBwsPJ4amoq6tevj8TERISHh2PNmjX47bffEBIS8q5PiYiIiEzUOw9GDgwMRGBg4GvbWFtbw93dPcvH4uPjsWTJEqxYsQK1atUCAKxcuRKenp7YtWsX6tSpg/PnzyMsLAyHDx9GpUqVAACLFi1C5cqVcfHiRXh7e2PHjh04d+4coqOj4eHhAQCYNm0a2rdvj3HjxsHR0fFdnxoRERGZGIOM0dm3bx9cXV3h5eWFLl264N69e8pjEREReP78OQICApR9Hh4e8PX1xcGDBwEAhw4dglarVZIcAPD394dWq9Vp4+vrqyQ5AFCnTh0kJycjIiIiy/NKTk5GQkKCzkZERESmS/VEJzAwEKtWrcKePXswbdo0HDt2DF988QWSk5MBALGxsbCysoKzs7POz7m5uSE2NlZp4+rqmunYrq6uOm3c3Nx0Hnd2doaVlZXS5lUTJkxQxvxotVp4enrq/XyJiIjov0v1OjotW7ZUvvb19UWFChVQoEABbN26Fc2aNcv250QEGo1G+T7j1/q0yWjo0KHo37+/8n1CQgKTHSIiIhNm8OnlefLkQYECBXD58mUAgLu7O1JSUhAXF6fT7t69e0oPjbu7O+7evZvpWPfv39dp82rPTVxcHJ4/f56ppyedtbU1HB0ddTYiIiIyXQZPdB48eIDo6GjkyZMHAFC+fHlYWlpi586dSpuYmBicOXMGVapUAQBUrlwZ8fHxOHr0qNLmyJEjiI+P12lz5swZxMTEKG127NgBa2trlC9f3tBPi4iIiD4C73zr6smTJ7hy5Yry/fXr1xEZGYmcOXMiZ86cGDlyJJo3b448efLgxo0b+O677+Di4oKmTZsCALRaLTp16oSQkBDkypULOXPmxIABA+Dn56fMwvLx8UHdunXRpUsXLFy4EADQtWtXNGjQAN7e3gCAgIAAlChRAsHBwZgyZQoePnyIAQMGoEuXLuypISIiIgDvkegcP34cNWrUUL5PH/PSrl07zJ8/H6dPn8by5cvx6NEj5MmTBzVq1MDatWvh4OCg/MyMGTNgYWGBFi1a4OnTp6hZsyZCQ0Nhbm6utFm1ahV69+6tzM5q1KiRTu0ec3NzbN26Fd27d0fVqlVha2uLoKAgTJ069d2vAhEREZmkd050qlevDhHJ9vHt27e/8Rg2NjaYM2cO5syZk22bnDlzYuXKla89Tv78+fHHH3+8MR4RERH9b+JaV0RERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQm653XuiKij1vBIVvf+WduTKxvgDMhIjI89ugQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQm650TnQMHDqBhw4bw8PCARqPBpk2bdB4XEYwcORIeHh6wtbVF9erVcfbsWZ02ycnJ6NWrF1xcXGBvb49GjRrh9u3bOm3i4uIQHBwMrVYLrVaL4OBgPHr0SKfNrVu30LBhQ9jb28PFxQW9e/dGSkrKuz4lIiIiMlHvnOgkJiaidOnSmDt3bpaPT548GdOnT8fcuXNx7NgxuLu7o3bt2nj8+LHSpm/fvti4cSPWrFmD8PBwPHnyBA0aNEBqaqrSJigoCJGRkQgLC0NYWBgiIyMRHBysPJ6amor69esjMTER4eHhWLNmDX777TeEhIS861MiIiIiE2Xxrj8QGBiIwMDALB8TEcycORPDhg1Ds2bNAADLli2Dm5sbfvnlF3Tr1g3x8fFYsmQJVqxYgVq1agEAVq5cCU9PT+zatQt16tTB+fPnERYWhsOHD6NSpUoAgEWLFqFy5cq4ePEivL29sWPHDpw7dw7R0dHw8PAAAEybNg3t27fHuHHj4Ojo+F4XhIiIiEyHqmN0rl+/jtjYWAQEBCj7rK2t8fnnn+PgwYMAgIiICDx//lynjYeHB3x9fZU2hw4dglarVZIcAPD394dWq9Vp4+vrqyQ5AFCnTh0kJycjIiIiy/NLTk5GQkKCzkZERESmS9VEJzY2FgDg5uams9/NzU15LDY2FlZWVnB2dn5tG1dX10zHd3V11WnzahxnZ2dYWVkpbV41YcIEZcyPVquFp6fnezxLIiIi+lgYZNaVRqPR+V5EMu171attsmr/Pm0yGjp0KOLj45UtOjr6tedEREREHzdVEx13d3cAyNSjcu/ePaX3xd3dHSkpKYiLi3ttm7t372Y6/v3793XavBonLi4Oz58/z9TTk87a2hqOjo46GxEREZkuVROdQoUKwd3dHTt37lT2paSkYP/+/ahSpQoAoHz58rC0tNRpExMTgzNnzihtKleujPj4eBw9elRpc+TIEcTHx+u0OXPmDGJiYpQ2O3bsgLW1NcqXL6/m0yIiIqKP1DvPunry5AmuXLmifH/9+nVERkYiZ86cyJ8/P/r27Yvx48ejWLFiKFasGMaPHw87OzsEBQUBALRaLTp16oSQkBDkypULOXPmxIABA+Dn56fMwvLx8UHdunXRpUsXLFy4EADQtWtXNGjQAN7e3gCAgIAAlChRAsHBwZgyZQoePnyIAQMGoEuXLuypISIiIgDvkegcP34cNWrUUL7v378/AKBdu3YIDQ3FoEGD8PTpU3Tv3h1xcXGoVKkSduzYAQcHB+VnZsyYAQsLC7Ro0QJPnz5FzZo1ERoaCnNzc6XNqlWr0Lt3b2V2VqNGjXRq95ibm2Pr1q3o3r07qlatCltbWwQFBWHq1KnvfhWIiIjIJL1zolO9enWISLaPazQajBw5EiNHjsy2jY2NDebMmYM5c+Zk2yZnzpxYuXLla88lf/78+OOPP954zkRERPS/iWtdERERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJsvjQJ0DGU3DI1nf+mRsT6xvgTIiIiIyDPTpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLdXSIiIjIKD5EPTf26BAREZHJYqJDREREJouJDhEREZksJjpERERkspjoEBERkcnirKv/AK4qTkREZBhMdEh1TNyIiOi/greuiIiIyGQx0SEiIiKTxUSHiIiITBYTHSIiIjJZTHSIiIjIZDHRISIiIpPFRIeIiIhMFuvoENFHj7WbiCg7qvfojBw5EhqNRmdzd3dXHhcRjBw5Eh4eHrC1tUX16tVx9uxZnWMkJyejV69ecHFxgb29PRo1aoTbt2/rtImLi0NwcDC0Wi20Wi2Cg4Px6NEjtZ8OERERfcQMcuuqZMmSiImJUbbTp08rj02ePBnTp0/H3LlzcezYMbi7u6N27dp4/Pix0qZv377YuHEj1qxZg/DwcDx58gQNGjRAamqq0iYoKAiRkZEICwtDWFgYIiMjERwcbIinQ0RERB8pg9y6srCw0OnFSScimDlzJoYNG4ZmzZoBAJYtWwY3Nzf88ssv6NatG+Lj47FkyRKsWLECtWrVAgCsXLkSnp6e2LVrF+rUqYPz588jLCwMhw8fRqVKlQAAixYtQuXKlXHx4kV4e3sb4mkRERHRR8YgPTqXL1+Gh4cHChUqhFatWuHatWsAgOvXryM2NhYBAQFKW2tra3z++ec4ePAgACAiIgLPnz/XaePh4QFfX1+lzaFDh6DVapUkBwD8/f2h1WqVNkRERESq9+hUqlQJy5cvh5eXF+7evYuxY8eiSpUqOHv2LGJjYwEAbm5uOj/j5uaGmzdvAgBiY2NhZWUFZ2fnTG3Sfz42Nhaurq6ZYru6uiptspKcnIzk5GTl+4SEhPd7kkRERPRRUD3RCQwMVL728/ND5cqVUaRIESxbtgz+/v4AAI1Go/MzIpJp36tebZNV+zcdZ8KECRg1atRbPQ8iIiL6+Bm8jo69vT38/Pxw+fJlZdzOq70u9+7dU3p53N3dkZKSgri4uNe2uXv3bqZY9+/fz9RblNHQoUMRHx+vbNHR0Xo9NyIiIvpvM3gdneTkZJw/fx6fffYZChUqBHd3d+zcuRNly5YFAKSkpGD//v2YNGkSAKB8+fKwtLTEzp070aJFCwBATEwMzpw5g8mTJwMAKleujPj4eBw9ehQVK1YEABw5cgTx8fGoUqVKtudibW0Na2trQz5dIvo/71PbBmB9GyJSl+qJzoABA9CwYUPkz58f9+7dw9ixY5GQkIB27dpBo9Ggb9++GD9+PIoVK4ZixYph/PjxsLOzQ1BQEABAq9WiU6dOCAkJQa5cuZAzZ04MGDAAfn5+yiwsHx8f1K1bF126dMHChQsBAF27dkWDBg0444qI6D+GBR3pQ1I90bl9+zZat26Nf//9F7lz54a/vz8OHz6MAgUKAAAGDRqEp0+fonv37oiLi0OlSpWwY8cOODg4KMeYMWMGLCws0KJFCzx9+hQ1a9ZEaGgozM3NlTarVq1C7969ldlZjRo1wty5c9V+OkRERPQRUz3RWbNmzWsf12g0GDlyJEaOHJltGxsbG8yZMwdz5szJtk3OnDmxcuXK9z1NIiIi+h/ART2JiIjIZDHRISIiIpPFRIeIiIhMlsGnl3/MOFOAiOjjwddsygp7dIiIiMhkMdEhIiIik8VEh4iIiEwWEx0iIiIyWUx0iIiIyGQx0SEiIiKTxUSHiIiITBYTHSIiIjJZTHSIiIjIZDHRISIiIpPFRIeIiIhMFhMdIiIiMllMdIiIiMhkMdEhIiIik8VEh4iIiEwWEx0iIiIyWUx0iIiIyGQx0SEiIiKTxUSHiIiITBYTHSIiIjJZTHSIiIjIZDHRISIiIpPFRIeIiIhMlsWHPgEiIiLKrOCQre/8Mzcm1jfAmXzc2KNDREREJouJDhEREZksJjpERERkspjoEBERkcliokNEREQmi4kOERERmSwmOkRERGSymOgQERGRyWKiQ0RERCaLiQ4RERGZLCY6REREZLKY6BAREZHJYqJDREREJouJDhEREZksJjpERERksiw+9AkQEX0sCg7Z+s4/c2Ni/f9sHKL/BezRISIiIpPFRIeIiIhM1kef6Pz4448oVKgQbGxsUL58efz1118f+pSIiIjoP+KjTnTWrl2Lvn37YtiwYTh58iQ+++wzBAYG4tatWx/61IiIiOg/4KNOdKZPn45OnTqhc+fO8PHxwcyZM+Hp6Yn58+d/6FMjIiKi/4CPdtZVSkoKIiIiMGTIEJ39AQEBOHjwYJY/k5ycjOTkZOX7+Ph4AEBCQkKW7dOSk975vLI71uswDuMwjvFjMQ7jMI5x46gZK32fiLz5APKRunPnjgCQv//+W2f/uHHjxMvLK8uf+eGHHwQAN27cuHHjxs0Etujo6DfmCx9tj046jUaj872IZNqXbujQoejfv7/yfVpaGh4+fIhcuXJl+zOvSkhIgKenJ6Kjo+Ho6Pj+J844H30sxmEcxvk4YjGO6cURETx+/BgeHh5vbPvRJjouLi4wNzdHbGyszv579+7Bzc0ty5+xtraGtbW1zj4nJ6f3iu/o6GjwFwHG+ThiMQ7jMM7HEYtxTCuOVqt9q3Yf7WBkKysrlC9fHjt37tTZv3PnTlSpUuUDnRURERH9l3y0PToA0L9/fwQHB6NChQqoXLkyfvrpJ9y6dQvffPPNhz41IiIi+g/4qBOdli1b4sGDBxg9ejRiYmLg6+uLP//8EwUKFDBYTGtra/zwww+ZboExzn8jjjFjMQ7jMM7HEYtx/rfjaETeZm4WERER0cfnox2jQ0RERPQmTHSIiIjIZDHRISIiIpPFROd/iIjg5s2bePr06Yc+FSIiIqNgovMaz58/R4cOHXDt2jWDx6lRowYuXbpk0DgigmLFiuH27dsGjWOs6/a/5NGjRx/6FN5ZZGTkhz4F1T1//hyFCxfGuXPnPvSp0FuKjo42+GueMbx48QK7du3CwoUL8fjxYwDAP//8gydPnnzgM/vvY6LzGpaWlti4caNR4pw5c+atl6F4X2ZmZihWrBgePHhg0DjGum7Ay4VZQ0ND0alTJ9SsWROVK1dGo0aN8MMPP2S7uOv7EBHs27cPY8aMQadOndC6dWv07t0bS5cuRXR0tGpxAGDSpElYu3at8n2LFi2QK1cu5M2bF1FRUarFOXHiBE6fPq18v3nzZjRp0gTfffcdUlJS9D5+uXLlUL58ecyfP19ZQNfQrl69iuHDh6N169a4d+8eACAsLAxnz55V5fiWlpZITk42+P9qukePHmHx4sUYOnQoHj58CODl7+3OnTuqxjH0dcsoNTUV69evx5gxYzB27FisX78eL168UDXGixcvMGLECGi1WhQsWBAFChSAVqvF8OHD8fz5c1VjrVixAlWrVoWHhwdu3rwJAJg5cyY2b96sWoybN2/Cz88PjRs3Ro8ePXD//n0AwOTJkzFgwADV4oSFhSE8PFz5ft68eShTpgyCgoIQFxenWhyj029pTdPXvn17mTZtmsHj9O/fXwYPHmzwOH/88Yd8+umncvr0aYPGMfR1++eff6Rz585ia2srhQoVkpYtW0r//v1l2LBh8u2338pnn30mdnZ24uPjI2vWrHnvOElJSTJu3DjJmzev2NjYSKVKlaRZs2bSpk0bCQwMFE9PTzE3N5fAwEA5dOiQKs+tUKFCymK1O3bsECcnJ9m+fbt06tRJateurUoMEZEKFSrI+vXrRUTk6tWrYmNjI61bt5aiRYtKnz599D7+wYMHpXPnzuLo6Ci2trbSpk0b2bNnj97Hzc6+ffvE1tZWatWqJVZWVnL16lUREZk0aZI0b95ctTgTJkyQdu3ayfPnz1U7ZlaioqIkd+7cUrRoUbGwsFCez/DhwyU4OFi1OMa6biIip0+flsKFC4udnZ2ULVtWypYtK/b29lKwYEE5deqUanG6desmrq6usmDBAomKipKoqChZsGCBuLu7S7du3VSL8+OPP4qLi4uMHTtWbG1tlWu3dOlSqV69umpxGjduLF9//bUkJydLjhw5lDj79u2TokWLqhbH19dXtm7dKiIip06dEmtraxk6dKhUqlRJ2rdvr1qcjJKTk+XChQsG/X9iovMGY8eOFScnJ2nevLmMHz9eZs2apbOppWfPnuLo6CjlypWTrl27Sr9+/XQ2tTg5OYmVlZWYmZmJjY2NODs762xqMfR1y507t4SEhLw2YUtKSpJffvlFKlasKFOmTHmvOPny5ZPmzZvL77//LikpKVm2uXHjhowfP17y588vP/3003vFycjGxkZu3bolIiK9e/eWrl27iojIxYsXxcnJSe/jp3N0dJQrV66IiMjEiRMlICBARETCw8MlX758qsVJSkqS0NBQ+fzzz8XMzEwKFy4sY8eOfatVh9+Fv7+/klxnfDM4evSoeHh4qBanSZMm4uDgIHny5JGAgABp2rSpzqaWmjVrysCBA0VE9/n8/fffUqBAAdXiGOu6iYhUqlRJGjZsKA8fPlT2PXz4UBo1aiT+/v6qxXF0dJQ///wz0/4///xTHB0dVYvj4+MjGzduFBHda3f69GnJlSuXanFy5colFy5cyBTn+vXrYmtrq1oce3t7uX79uoiI/PDDD0qiGxERIW5ubqrFERFJTEyUjh07irm5uZibmyvPqVevXjJhwgRVY33UlZGNYfHixXByckJERAQiIiJ0HtNoNOjdu7cqcc6cOYNy5coBQKaxOmp2k8+cOVO1Y72Ooa/b2bNnkTt37te2sbW1RevWrdG6dWulq/ddbdu2Db6+vq9tU6BAAQwdOhQhISFK17U+nJ2dER0dDU9PT4SFhWHs2LEAXt4+S01N1fv46UQEaWlpAIBdu3ahQYMGAABPT0/8+++/qsWxtbVFu3bt0K5dO1y9ehVLly7FwoULMXLkSNSuXRt//vmnKnFOnz6NX375JdP+3Llzq3q71snJCc2bN1fteNk5duwYFi5cmGl/3rx5My1mrA9jXTcAiIqKwvHjx+Hs7Kzsc3Z2xrhx4/DJJ5+oFsfGxgYFCxbMtL9gwYKwsrJSLc7169dRtmzZTPutra2RmJioWpy0tLQs//dv374NBwcH1eJYWVkhKSkJwMvXhLZt2wIAcubMiYSEBNXiAMDQoUMRFRWFffv2oW7dusr+WrVq4YcffsCQIUPUC6Zq2kT0AcTFxWX72OXLl1WLk5ycnO1j9+/fVy1Ojx49pECBAlKrVi3JlSuXPH78WERE1qxZI2XLllUtTo0aNaRt27ayfPlysbS0VK7Vvn37VO0xeNXjx49lwYIFkjNnTjEzM1PtuHnz5lVu+WX81LthwwYpXLiwanGMxdXVVU6cOCEius9n+/btqva4GfO6lS5dWnbv3p1p/+7du8XX11e1OKNGjZLWrVvLs2fPlH3Pnj2TNm3ayMiRI1WL4+PjI5s2bRIR3Ws3a9YsKVeunGpxWrRoIV26dFHiXLt2TR4/fixffPGFqreUGjZsKHXq1JHRo0eLpaWl3L59W0Re/s0VK1ZMtTgiIvnz51du92e8dpcvXxYHBwdVYzHReQdpaWmSlpZm8DjR0dHKH5ghvHjxQtavXy9jxoyRsWPHyoYNG+TFixcGi2fo61a5cmV5+vRppv0XLlyQvHnzqhancePGkpqamml/bGyslCxZUrU4KSkpMmXKFOndu7fyRiciMmPGDFm0aJFqcaKiosTX11ccHR11Xvx79uwprVu3Vi1Oun379knbtm3F3t5eHB0dpXPnzqqNaxIRGThwoHz66acSExMjDg4OcvnyZQkPD5fChQur+uYmIvL8+XPZuXOnLFiwQBISEkRE5M6dO0pSqoYuXbpIkyZNJCUlRXlzu3nzppQtW1aVMVTpjHndtm7dKiVLlpRff/1VoqOjJTo6Wn799Vfx8/OTrVu3Snx8vLLpI/32oouLi9SsWVNq1qwpLi4u4ujoqOqtxp9//lny5s0ra9asEXt7e1m9erWMHTtW+Votd+7cES8vL/Hx8RELCwvx9/eXXLlyibe3t9y9e1e1ODdv3pT69etLqVKlZPHixcr+vn37Sq9evVSLIyI6Y5oyJjqRkZGq3l4UYaLzVpYtWya+vr5ibW0t1tbW4ufnJ8uXL1c1RmpqqowaNUocHR3FzMxMzMzMRKvVyujRo7N8c31fly9flmLFiimDAcuUKSN2dnbi7e2tjNdQizGum4hIvXr1pE6dOjqD2c6dOyfu7u7Su3dv1eJUrFgx06enmJgYKV68uOqDNj+kp0+fZjse6V3dunVLRo8eLYULFxaNRiNVq1aVn3/+WZ48eaLK8TNKSUmRoKAgMTMzE41GI5aWlmJmZiZff/21qon8jRs3pHjx4mJnZ6cztqBPnz6qDnSNj4+XqlWripOTk5ibm4unp6dYWlpKtWrVVL1+xrpuIiIajUbZ0l/nsvpe356+9u3bv/Wmr59++kny58+vPI98+fLpJAlqSUpKkiVLlkiPHj3k22+/lUWLFklSUpLqcYylWrVqMnv2bBH5/71UIi97tOvUqaNqLCY6bzBt2jSxs7OTQYMGyebNm2XTpk0ycOBAsbOzk+nTp6sWZ8iQIZI7d2758ccfJSoqSiIjI2XevHmSO3du+e6771SLExgYKHXr1pUHDx4o+/7991+pW7eu1KtXT7U4xrpuIi/fmD/99FP56quvJC0tTU6fPi2urq6qDuIWeXmdSpQoIX379hURkdu3b4uXl5d89dVXqiajIiLLly+XqlWrSp48eeTGjRsi8rJHJ72bXC1xcXGyaNEiGTJkiPI3ERERoUqPYq1atcTc3Fzc3d1l0KBBymBKQ7ty5Yr8+uuvsnbtWrl06ZLqxzfWDJh0u3fvlilTpsikSZNk586dqh8/naGvm8jLa/S228fm/v37qvaufChXrlyRYcOGSatWrZTns23bNjlz5oyqcf7++29xcHCQb775RmxsbKRPnz5Sq1Ytsbe3l+PHj6sai4nOGxQsWFCWLVuWaX9oaKgULFhQtTh58uSRzZs3Z9q/adMmVWc+2NnZZTmNMzIyUuzt7VWLY6zrlu7Ro0dSpkwZad68ubi6usqAAQNUjyHy8rZigQIFpG/fvlKsWDFp2bKl6p96jTVlNSoqSlxcXAw2fblhw4ayadMmg94W/RCMNQOG9Hfv3j3566+/JDw8XO7du/ehT0cvFy9elIULF8qYMWNk1KhROptajFlqQOTlFPa2bdtKyZIlxcfHR9q0aaNqmYF0nHX1BjExMahSpUqm/VWqVEFMTIxqcR4+fIjixYtn2l+8eHGlUJgarK2tlaqaGT158kTV2QiGvm6vzgDQaDRYu3YtatWqhebNm2PEiBFKG0dHR73jpcuXLx927tyJTz/9FLVr18aKFStULx43Z84cLFq0CE2aNMHEiROV/RUqVFC1OFj//v3RoUMHTJ48WWfmRmBgIIKCgvQ+/tatW7F48WKYm5vrfay3kZqaitDQUOzevRv37t1TZpSl27NnjypxjDUDBgB2796d7fP5+eef3/u4/fv3f+u206dPf+84WXn06BGWLFmC8+fPQ6PRoESJEujYsSO0Wq1qMRITE9GrVy8sX75cuW7m5uZo27Yt5syZAzs7u/c+dtmyZd/6f/7EiRPvHSejRYsW4dtvv4WLiwvc3d114ms0Gnz//feqxBkyZAjGjh2L/v376/wt16hRA7NmzVIlRkZ+fn5YtmyZ6sd9FROdNyhatCjWrVuH7777Tmf/2rVrUaxYMdXilC5dGnPnzsXs2bN19s+dOxelS5dWLU6DBg3QtWtXLFmyBBUrVgQAHDlyBN988w0aNWqkWhxDXzcnJ6csX2xEBAsWLMDChQshItBoNHpNyXZ2ds4yTlJSEn7//XfkypVL2adWQmqsKauGnr4sInof41306dMHoaGhqF+/Pnx9fQ1Wvbh27dqYOXMmfvrpJwAv32iePHmCH374AfXq1VMtzqhRozB69GhUqFABefLkUfX5nDx58q3aqX0Njx8/jjp16sDW1hYVK1aEiGD69OkYN24cduzYoZTY0Ff//v2xf/9+/P7776hatSoAIDw8HL1790ZISAjmz5//3sdu0qSJKuf4LsaOHYtx48Zh8ODBBo1jzFIDwMsPDVeuXMkyka9WrZpqcZjovMGoUaPQsmVLHDhwAFWrVoVGo0F4eDh2796NdevWqRZn8uTJqF+/Pnbt2oXKlStDo9Hg4MGDiI6OVq3OCADMnj0b7dq1Q+XKlWFpaQngZbn0Ro0aqVpjx9DXbe/evSqc5ZsZq+5QRoUKFUJkZCQKFCigs3/btm0oUaKEanFsbGyyrI1x8eLFN9Yo+i9as2YN1q1bp2qykZUZM2agRo0aKFGiBJ49e4agoCBcvnwZLi4uWL16tWpxFixYgNDQUAQHB6t2zHTG+v95Vb9+/dCoUSMsWrQIFhYv335evHiBzp07o2/fvjhw4IAqcX777TesX78e1atXV/bVq1cPtra2aNGihV6Jzg8//KDCGb6buLg4fPXVVwaP4+TkhJiYGBQqVEhn/8mTJ5E3b15VYx0+fBhBQUG4efNmpg9F+n5AfZVGjP2x6yMUERGBGTNm4Pz58xARlChRAiEhIVl+6tbHP//8g3nz5uHChQtKnO7du8PDw0PVOABw5coVnedTtGhR1WMY67qZmqVLl2LEiBGYNm0aOnXqhMWLF+Pq1auYMGECFi9ejFatWqkSp2vXrrh//z7WrVuHnDlz4tSpUzA3N0eTJk1QrVo1vZM8MzMzLFu27I23JNTqSfTw8MC+ffvg5eWlyvFe5+nTp1i9ejVOnDiBtLQ0lCtXDm3atIGtra1qMXLlyoWjR4+iSJEiqh3zTaKjo6HRaJAvXz6DHN/W1hYnT57MdJv+3LlzqFChglKsTl92dnaIiIiAj4+Pzv6zZ8+iYsWKqvaMAi97qtJvxfn4+KB8+fKqHr9Tp0745JNP8M0336h63FcNGjQIhw4dwq+//govLy+cOHECd+/eRdu2bdG2bVtVk7wyZcrAy8sLo0aNyrLHUs1bmRyM/B9x8+bNbGvN3Lx5U7U4o0aNksTExEz7k5KSVB3UZkw///yzrFu3LtP+devWSWhoqGpxtm7dKmFhYZn2b9++Pcty8/owxpRVQ09fzjiVOLtNzYKBU6dOle7duxu81pUhpsZnZdCgQTJ69GiDx3n+/LkMHz5cp7SFo6OjDBs2TLUyA+lcXV1l+/btmfaHhYWJq6uranG++OIL+eqrr3TqayUlJclXX30lNWvWVC1OdHS0fPrpp6LRaJRldNLLKKQv46KG8ePHi4uLi7Rr106mTp1qsKWIjFlqwM7OTtWCrq/DHp03MDc3R0xMDFxdXXX2P3jwAK6urqp1rzHO+/P29saCBQtQo0YNnf379+9H165dcfHiRVXilCpVChMnTsx0ayQsLAyDBw9WdWXxdP/++y/S0tIyXUc17dmzR6dnolatWqoc18zMDLGxsQY994yaNm2KvXv3ImfOnChZsqRyazbdhg0bVImTI0cOtGjRAh07dsSnn36qyjGz0qdPHyxfvhylSpVCqVKlMj0ftQYJf/PNN9i4cSNGjx6NypUrAwAOHTqEkSNHonHjxliwYIEqcQCgd+/e2LhxI6ZOnYoqVaoot7QHDhyI5s2bq3ar+PTp0wgMDMSzZ89QunRpaDQaREZGwsbGBtu3b0fJkiVViRMQEICEhAQsW7YM3t7eAF7e+u3YsSPs7e2xY8cOVeK8eispI41Gg2vXrqkSJ93Vq1dx8uRJpKWloWzZsqqOR033xRdfYNCgQTrLPxgKx+i8QXZ5YHJysqqzlOT/Bs6+6smTJ7CxsTF4nKioKOTMmVPVOFlR+7oBwM2bN7N8IShQoABu3bqlWpzLly9nOUamePHiuHLlimpxMnJxcTHIcTP64osv8MUXX6h+XEMNBs6Ok5MTmjZtavA4q1evRmhoKGrWrIkCBQqgY8eOaNu2req3mE+dOoUyZcoAeLkWXkZqXtvVq1djzZo1CAwMVPaVKlUK+fPnR6tWrVRNdKZOnQqNRoO2bdvixYsXAABLS0t8++23OjMM9eXn54fLly9j5cqVylCAVq1aqX578a+//sLBgweVJAd4+cFrzpw5yiBoNVy/fl21Y72NIkWKGPyWaa9evRASEoLY2Fj4+fllSuRLlSqlWiwmOtlIn/2k0WiwePFi5MiRQ3ksNTUVBw4cyHI6+LtKn+ap0WgwYsQInWmPqampOHLkiPJip4/02UMajQZeXl46L5Spqal48uSJKvd/jXXdMnJ1dcWpU6cyLeIXFRWlMytKX1qtFteuXcsU58qVK7C3t1ctzt27dzFgwABlWvGrSaOavWGGmr4MGH/W1dKlS40Sp2HDhmjYsCEePHiA5cuXIzQ0FCNGjECdOnXQsWNHNGrUSBloqw9jDRg21gKYwMtFI2fNmoUJEybg6tWrEBEULVpUr+neWTlw4ACqVKmCLl266Ox/8eIFDhw4oNqMnvz58+P58+eZ9r948UL1wbvp0v+vDPFBwlglGgAoC+N27NhR2afRaFSZLfsqJjrZmDFjBoD/P105Yy0QKysrFCxYUJVPOunTPEUEp0+f1nlhsbKyQunSpVWpnTJz5kyICDp27IhRo0bpDPRKfz7p3db6MNZ1y6hVq1bo3bs3HBwclBew/fv3o0+fPqoN3AVeDprt27cvNm7cqHzauXLlCkJCQlSdmt++fXvcunULI0aMUH1acUaGnL4MAO3atVP10/Pbun//Pi5evKgk9YaaQZYrVy7069cP/fr1w5w5czBw4ED8+eefcHFxwTfffIMhQ4ao/gZuCD169MCYMWOwdOlSWFtbA3jZ8zpu3Dj07NlT1VgdO3bErFmz4ODgAD8/P2V/et0bfZPrdDVq1Mjy1nl8fDxq1Kih2pvo5MmT0atXL8ybNw/ly5eHRqPB8ePH0adPH0ydOlWVGOmWL1+OKVOm4PLlywAALy8vDBw4UNVZecYq0QAYuZfKKCOBPmLVq1eXhw8fGjxO+/bt9V7I7m3s27dP9QGGWTHWdRN5uap4ixYtlMFzlpaWYm5uLh06dHjtiuPv6tGjR+Lv7y8WFhZSsGBBKViwoFhYWEiNGjVeu4L6u8qRI4ecPHlSteNlx93d3SBrj30oT548kQ4dOoi5ubky2NnCwkI6duyY5QB8fcXExMikSZOUda/atGkje/bskZUrV4qvr6/Url37nY/ZtGlT5XXg1cUn1VyM8tVjvW4BTDWZmZlluUzC/fv3xdzcXLU4Go0my0rIFy9e1HtlbCcnJ2XgsbOzs1hZWYmZmZlYWVnpfO3s7KxXnIyMtaROrly5ZOvWraod77+CPTpvYKzuY0N2uyckJCjVgcuWLYunT5/i6dOnWbZVq4qwMet0WFlZYe3atRgzZgyioqJga2sLPz+/THVo9KXVanHw4EHs3LlTiVOqVClVC1sBgKenp1Fu+6SkpGRZvfpjZcgicRlt2LABS5cuxfbt21GiRAn06NEDX3/9NZycnJQ2ZcqUea8yClqtVvkUrer02iziZJR+GyGdp6enqvESEhIgL5ccwuPHj3XGHaampuLPP/9UZdB6s2bNALy8BdK+fXulhyo9zqlTp/T+m/8QtbXmzJmD+fPno23btsq+xo0bo2TJkhg5ciT69eunShwrKyuDlBrJztWrVzFz5kydqfl9+vRRfXwQZ11loX///hgzZgzs7e3fWCpdn5kPzZo1Q2hoKBwdHZV/0OzoM2Mk4wwoMzOzbCsK63tf1FjXzdTt2LED06ZNw8KFC7McO6GWwYMHI0eOHBgxYoTBYhiTi4tLpiJxwMuku0WLFrh//74qcbRaLVq3bq3UNsnK06dPMXny5A9SXO6/KLvXnXQajQajRo3CsGHD9IrToUMHAMCyZcvQokULnVun6bfOu3TpYpRB/mqysbHBmTNnMiUhly9fhp+fH549e6ZKnGnTpuHatWuYO3euwScTbN++HY0aNUKZMmVQtWpViAgOHjyIqKgo/P7776hdu7Zqsdijk4WTJ08qA8xeVypd3z8EY31627NnjzKjypA9Lca6blm5ffs2tmzZglu3biElJUXnMTWTqsTEROzfvz/LOL1791YlRsuWLZGUlIQiRYrAzs4u02wEtZaaePbsGX766Sfs2rXLoNOXjSUpKQlubm6Z9ru6uqpWiO7FixeYMGECmjVrBnd392zb2draMsnJYO/evRARfPHFF/jtt990ZnhaWVmhQIECqsxaS+8ZL1iwIAYMGKDqJIE3efr0aaaByWr1kBtrKaLw8HDs3bsX27ZtM2iJBuDlulr9+vXLNNtuyJAhGDx4sKqJDnt06KO3e/duNGrUCIUKFcLFixfh6+uLGzduQERQrlw51WYKnDx5EvXq1UNSUhISExORM2dO/Pvvv7Czs4Orq6tqtSzetMhdu3btVInzat2hjDQajaozLIyhZs2ayJUrF5YvX67cGnn69CnatWuHhw8fYteuXarEsbOzw/nz51W/NfoqY86+W79+PdatW5dlAq/WwpTAy1IQnp6eMDMzU+2Yr3Pv3j2dgelq13RKTEzE4MGDsW7duizXglLrd/Tbb7+hZcuWqFWrVpZL6qhVViG9Ryw7ag6xsLGxwenTpzMlapcuXUKpUqVU66UC2KPzP+nRo0c4evRoltMHM94D/lgMHToUISEhGD16NBwcHPDbb7/B1dUVbdq0UbUYVb9+/dCwYUPMnz8fTk5OOHz4MCwtLfH111+jT58+qsVRK5F5E2ONo0pMTMTEiROznbKqVoI4a9Ys1K1bF/ny5cuySJxaKlWqhJMnTxo80THW7LvZs2dj2LBhaNeuHTZv3owOHTrg6tWrOHbsGHr06KFqrAIFCiAuLk5n9XIfHx906NBB1TpeCQkJ6NGjB9asWaMkG+bm5mjZsiXmzZunWg/6oEGDsHfvXvz4449o27Yt5s2bhzt37mDhwoWq1gVq3rw5jhw5ghkzZmDTpk3KkjpHjx5VdUkdY5VoAF4uFBoZGZkp0YmMjFQ9IWWPzhsY60XaWJ/efv/9d7Rp0waJiYlwcHDQefHUaDSq3RYx1nUDAAcHB0RGRqJIkSJwdnZGeHg4SpYsiaioKDRu3Bg3btxQJY6TkxOOHDkCb29vODk54dChQ/Dx8cGRI0fQrl07XLhwQZU4wMvf96ZNm5Q3gxIlSqBRo0Y60/XVdPv2bWg0GoPU/mjdujX279+P4ODgLN+w1UwSnz59qlMkrkSJEqoXifv111+Vbvfy5ctnuj2iVqEzBwcH/PXXX6rU0Xqd4sWL44cffkDr1q3h4OCAqKgoFC5cGN9//z0ePnyIuXPnqhZr//79aNSoEbRaLSpUqADg5Zp4jx49wpYtW/D555+rEqdFixaIjIzEnDlzdBZJ7tOnD0qVKqXagsz58+fH8uXLUb16dTg6OuLEiRMoWrQoVqxYgdWrV6u6ILMxGaNEw+jRozFjxgwMGTJEp0r2pEmTEBISguHDh6sWiz06b9C5c+fXvkirxVif3kJCQtCxY0eMHz/eoDU+jHXdAMDe3h7JyckAXi7sePXqVaXE+7///qtaHEtLS+V5uLm54datW/Dx8YFWq1W1AvOVK1dQr1493LlzB97e3hARXLp0CZ6enti6datqMxLS0tIwduxYTJs2DU+ePAHw8s01JCQEw4YNU+32wrZt27B161ZVK8Vmx9bWNlOROLW1bNkSgO6YLEMUOjPW7Ltbt24pM5FsbW3x+PFjAEBwcDD8/f1VTXR69OiBli1bYv78+UrSnpqaiu7du6NHjx6ZKkC/r61bt2L79u06S3TUqVMHixYtUrWX9+HDh0pVdkdHR+WD4qeffopvv/1WtTjAy//XK1euZPnBUa2Zn+n1jJYvX67EMDc3R9u2bTFnzhxV3zNGjBgBBwcHTJs2DUOHDgXw8vV75MiRqo13VBh3NvvHR6vVSnh4uMHjGKt2ip2dnVy9etXgcYx13UREGjduLD/99JOIiAwcOFCKFi0qY8eOlXLlyqm6gF/t2rVl1apVIiLSrVs3qVixoqxcuVLq1KkjFStWVC1OYGCg1K1bVx48eKDs+/fff6Vu3bpSr1491eIMGTJEcufOLT/++KNERUVJZGSkzJs3T3Lnzi3fffedanEKFiwo586dU+14r3Px4kVZuHChjBkzRkaNGqWzqeXGjRuv3dSyfft2CQgIkOvXr6t2zKwUKlRIIiIiRESkQoUKsmDBAiW+mrVgRERsbGzkwoULmfZfuHBBbGxsVIvj6ekpp06dyrQ/KipK8ubNq1ocPz8/2bdvn4i8fH0ICQkREZFZs2apGufQoUNSqFAhZbFNQy2M27VrVylcuLD8+eefEh8fL/Hx8bJ161YpUqSIfPPNN6rFeVVCQoIkJCQY7PhMdN7AWC/SPj4+cuLECYPHadq0qaxdu9bgcYz55nb16lWJiooSEZHExET59ttvxc/PT5o2barqG8+xY8dkz549IiJy7949CQwMFAcHBylbtqxERkaqFsfOzi7LF+nIyEixt7dXLU6ePHlk8+bNmfZv2rRJPDw8VIuzYsUK+fLLLw1StC+jn376SczNzcXNzU1Kly4tZcqUUbayZcsaNLZasitGlyNHDp39aiYgnTp1kpEjR4qIyPz588XW1lZq1aolTk5O0rFjR9XiiIhUqVJFNm7cmGn/xo0bxd/fX7U4CxculFq1ask///yj7IuJiZGAgAAlkVPD9OnTldXD9+zZI7a2tsrvbObMmarFKV26tHz11Vdy7tw5iYuLk0ePHulsasmVK5fs3bs30/49e/aIi4uLanGMjWN03mDlypXYvHkzli1bZtBbPcaqnbJkyRKMHj0aHTp0yHIhNbWWMjDWdTNFOXPmxB9//JGpsNnff/+Nhg0bqjaOysbGBqdOnYKXl5fO/osXL6JMmTLZFpV8V2XLllXWNSpYsGCmvzm1ZvUUKFAA3bt3x+DBg1U5Xnb27NmDDRs24MaNG9BoNChUqBC+/PJLVW4fvGnGXUZqDVpPS0tDWlqasj7XunXrEB4ejqJFi+Kbb75Rdb2rtWvXYtCgQejVqxf8/f0BAIcPH8a8efMwceJE+Pj4KG31GetUtmxZXLlyBcnJycifPz+Al7forK2tMw1+VXNW2a1bt3D8+HEUKVIEpUuXVu249vb2iIqKMngxPzs7O0REROj8HgDg7NmzqFixIhITE1WLZcxZhUx03sBYL9LOzs5ISkrCixcvDFo75XXjLtQcX2Cs65bR8ePHdWZylC9fXvUYgO6UVW9vb9UH6rVt2xYnTpzAkiVLULFiRQDAkSNH0KVLF5QvXx6hoaGqxKlUqRIqVaqkLMSarlevXjh27BgOHz6sSpxRo0a99nG16s04OjoiMjIShQsXVuV4Wfnmm2/w008/wdnZGV5eXhARXL58GY8ePUL37t0xZ84cg8U2BW8a96XWWKc3/c1l9DHUO/riiy8waNAgVccXZcVYJRoAIDAwELdu3ULPnj2zHMfZuHFj1WJxMPIbNGnSxChxjFVW/NVBbIZirOsGvJwx1Lp1a/z9999KGf5Hjx6hSpUqWL16tWrl7I01ZXX27Nlo164dKleurCSIL168QKNGjTBr1ixVYgAvFySsX78+du3apTMzJTo6WtXZIsZ6I/nqq6+wY8cOfPPNNwY5/saNG7F06VL8/PPPaNeunfLCnJaWhtDQUHz77beoXbu2ar2if/75J8zNzVGnTh2d/Tt27EBqaioCAwP1Ov7ly5fx/fffY+HChZkK28XHx+Pbb7/F2LFjVU0cjbWQo6H/5vbs2YOePXvi8OHDWV67KlWqYMGCBfjss8/eO8apU6eUr3v16oWQkBDExsZm2ROv1kw/Y5VoAF4WJzTGrEKAPTpkAgICApCQkIBly5bB29sbwMvbLx07doS9vT127NihShxjTVlNd/nyZZ1p0obotv7nn38wb948nTjdu3dXpUptRo8ePcL69etx9epVDBw4EDlz5sSJEyfg5uam15T2jL1RiYmJmD59OurXr5/lm4G+MzkaNWqEkiVLYsKECVk+PnjwYFy4cAGbN2/WK066UqVKYeLEiahXr57O/rCwMAwePBhRUVF6Hb9r165wcnLC5MmTs3x88ODBSEhIUG2NMFPSqFEj1KhRI9s1pmbPno29e/di48aN7x0jfdmM7N6iDTHTDzBOiQYAKFGiBFatWqVqHaDsMNF5SxERETo1TQzxyzFW7ZT9+/dj6tSpOrd5Bg4cqNenj+wY47rZ2tri4MGDmY594sQJVK1aVbWxJvb29pmmrALAX3/9hbp166p6/9qUnDp1CrVq1YJWq8WNGzdw8eJFFC5cGCNGjMDNmzexfPny9z52+tTeN9FoNHrXbsqXLx82bNig3E581dGjR9GsWTPcvn1brzjpbG1tcf78+Uxj9m7cuIGSJUvq/fdWvHhxrFixItv1uiIiIhAUFISLFy/qFScr586dy7IKs1q9YampqZgxY0a21Z71HQpQoEABhIWFZRrLku7ChQsICAjQq+zEzZs33+l8PjbGGpcK8NbVG927dw+tWrXCvn374OTkBBFBfHw8atSogTVr1qg2PsNYtVNWrlyJDh06oFmzZujdu7eykFrNmjURGhqKoKAgVeIY67oBL4t2vbrGDPDydo+aBfBy5cqV5e0prVYLZ2dn1eKkpqYiNDQ022KLai7NYIwq2f3790f79u0xefJkODg4KPsDAwP1/nsz1q0Q4GVNptf9PeXNmzfLZQDel1arxbVr1zK9CVy5ckWVNZxu3rz52gq0Li4uiI6O1jtORteuXUPTpk1x+vRpnd6K9NuAavVMjBo1CosXL0b//v0xYsQIDBs2DDdu3MCmTZvw/fff6338u3fvZuoxzMjCwkLvRWQzJi/Jycl48eKFUdbuunTpEvbt25fla4K+187Z2VlnLE5iYqLB1/QDwDo6b9KiRQspX768zlTps2fPSoUKFaRVq1aqxTFW7ZTixYvL9OnTM+2fNm2aFC9eXLU4xrpuIi+nQ1esWFGOHTsmaWlpIvJyKri/v3+WU1nfl7GmrPbo0UPs7e2lRYsW0qdPH+nbt6/OppYtW7aIg4ODmJmZiVarFScnJ2VTc/qyo6OjXLlyRURe1otKr+N048YNsba2ViVGQkKC7NixQ/7880+5f/++Ksd8lUajkXv37mX7eGxsrKo1Tbp06SJ+fn7KtRMRuXz5spQqVUo6deqk9/Hd3Nxk9+7d2T6+a9cucXNz0ztORg0aNJDGjRvLvXv3JEeOHHLu3Dn566+/pGLFinLgwAHV4hQuXFj++OMPEXn5N5d+DWfNmiWtW7dW5fgbNmzI9vHffvtNChUqpHec+/fvS7169cTCwkLMzMykcuXKBq2DZugSDaGhoW+9qYmJzhs4OjrK0aNHM+0/cuSIaLVa1eIYq3aKlZWVXL58OdP+y5cvq/amI2K86ybysvZIeu0KKysrna/VrD1SpkwZyZEjh1haWkqRIkWkSJEiYmlpKTly5JCyZcvqbPrIlSuXbN26Va9jvI1ixYpJnz59DF7fxtXVVakRlTHR2b59u+TLl0/v40dFRYmHh4dSQE2r1crOnTv1Pu6rNBqNdOvWTfr165fl1q1bN1UTnUePHom/v79YWFhIwYIFpWDBgmJhYSE1atSQuLg4vY//1VdfSZMmTbJ9vFGjRvLll1/qHSejXLlyKTWvHB0dleKBu3fvljJlyqgWx87OTm7evCkiIu7u7kpBxKtXr4qjo6Pex+/Zs6f4+vrK06dPMz2WlJQkvr6+0qtXL73jdO7cWdzc3GTcuHEybdo0KVasmNSqVUvv42Ynf/78MnHiRIMd/0Phras3SEtLy7KL0tLSUtUZTNbW1krp9YyePHmiah0LT09P7N69O9PA1t27d6s2Owkw3nUDjDdjzVgzyaysrAxeLwMA7ty5g969exu8zlHjxo0xevRoZbC2RqPBrVu3MGTIEDRv3lzv4w8ZMgT58+fHr7/+ChsbG4waNQo9e/ZUde0x4GWZ/TeNV1GrFD/w8tbVwYMHsXPnTkRFRcHW1halSpVSLcbQoUNRuXJlfPnllxg0aJAykP/ChQuYPHkytm/fjoMHD6oSK11qaipy5MgB4OWtsX/++Qfe3t4oUKCAqmOB8uXLh5iYGOTPnx9FixbFjh07UK5cORw7dgzW1tZ6H3/48OHYsGEDvLy80LNnT3h7e0Oj0eD8+fOYN28eUlNTMWzYML3jbN++HT///LMyIL1evXrw9fXF8+fPX3vr7H3FxcXhq6++Uv24GYkIpk6dik2bNuH58+eoVasWvv/+e2U6u6GC0ms0atRIqlWrJnfu3FH23b59Wz7//PPXfhp6V8HBwVKyZEk5fPiwpKWlSVpamhw6dEh8fX2lXbt2qsX58ccfxcrKSr755htZvny5rFixQrp16ybW1taq3n4x1nUzRVOnTpXu3bsrt+EMxVhVsuPj46Vq1ari5OQk5ubm4unpKZaWllKtWjV58uSJ3sfPnTu3HDt2TPn+33//FTMzM3n8+LHexzZ1v//+u+TOnVvMzMx0tty5c2dZNVtfn376qXI7uXXr1lK3bl0JDw+Xtm3bSsmSJVWLM3jwYBk3bpyIiPz6669iYWEhRYsWFSsrKxk8eLAqMW7cuCGBgYE6yzKYmZlJYGCgast2mJub69wqFxGxtbVVteJ7Rh07dpT58+cb5Njpxo8fL2ZmZlK7dm1p1KiRWFtbS5cuXQwak7Ou3iA6OhqNGzfGmTNn4OnpqXwa9fPzw+bNm5EvXz5V4jx69Ajt2rXD77//nql2SmhoqGo1WoCX9UCmTZuG8+fPA4Ay60rNAk3Gum6vql+/PhYvXow8efIY5PjpunfvjtGjR8PFxUWV4zVr1kzn+z179iBnzpwoWbJkpk9uGzZseO84W7ZsUb6+f/++Uapkp9uzZw9OnDiBtLQ0lCtXDrVq1VLluGZmZoiNjdUZWOvg4IBTp0699ays/6rExETs378/y5lDai18+PTpU4SFheHKlSsQEXh5eSEgIMAgPX3bt29HYmIimjVrhmvXrqFBgwa4cOECcuXKhTVr1qBmzZqqxwReFtz8+++/UbRoUdX/ruPi4pRrV6xYMVUnJpibmyM2NlZn8oajoyOioqJU+9s2ZokGAPD29kafPn3QvXt3AC/LJTRp0gRPnz412OLPTHTe0s6dO3XqCqj1Iv0qY9ROMSZjXbd0Dg4OiIqKMmh1XED9KrwdOnR467ZLly597zhvuyK52rU50j179gzW1taqvqCZm5vj0qVLypuBiMDT0xPh4eE6M5ZeLez2X3fy5EnUq1cPSUlJSExMRM6cOfHvv//Czs4Orq6uek+X/694+PBhptk4hnL37l0sXLhQlZlXxmBmZgZfX19leQ7gZbmG4sWL6wxp0KfSvDFLNAAvl565dOmSsjSHiMDGxgbXrl1TdZZsRkx0yKQYK9ExVhxTkJaWhnHjxmHBggW4e/cuLl26pNTRKViwIDp16qTX8dMLq2Uk/1dILePXhkjcDKl69erw8vLC/Pnz4eTkhKioKFhaWuLrr79Gnz59MvUCfszOnz+P+vXrGzx5i4qKQrly5T6av4W3XcriY1jGIp2ZmRnu3r2r00tl6NdTDkbOxtsWMdO31sjo0aPfqp2+n0De9g9I3xcaY1237BQoUMAgg/Q+hIxranl5eb225sl/2dixY7Fs2TJMnjwZXbp0Ufb7+flhxowZeic6e/fu1fcU/5MiIyOxcOFCmJubw9zcHMnJyShcuDAmT56Mdu3amVSik5KS8k4F8v5XfMgERl6pcaSmESNG6NwaTUlJwbhx43SGaEyfPl21eOzRyYaZmRly5MgBCwuL15bg1reokZmZGTw8PODq6vraOPougmlmZoYCBQogKCjotW+Yffr00TuOMa6bKTPWmlrAy9l2M2bMUKpXFy9eHH379lX1FmPRokWxcOFC1KxZU+eT24ULF1C5cmXExcWpFsuU5M6dG3///Te8vLzg7e2N2bNno06dOrhw4QLKlSuHpKSkD32KqjFWT8vH1qPzISxZsgQzZszA5cuXAQDFihVD37590blzZ1WOX7169bdKnlT9AGPQoc4fsRIlSkiuXLmkT58+St0HQwgMDBQbGxtp3LixbN68WV68eGGQOGvXrpW6deuKjY2NNG3aVH7//XdJTU1VPY6xrtvrtG/fXme2l6GMHDnSIMXpvvrqKylWrJiEhYVJfHy8JCQkSFhYmHh7e8tXX32lWpw5c+aIhYWFtGrVSmbNmqUUU7O0tJQ5c+aoFsfGxkaZJZKxjs7Zs2dVrRFlDPHx8crXW7dulc2bNytbeoE6tdSuXVtWrVolIiLdunWTihUrysqVK6VOnTpSsWJFVWN9aJGRkarWIPrQcT5Ww4cPF3t7exkyZIjydz1kyBDJkSOHDBs27EOf3ntjj85rHDlyBD///DPWrl2LokWLolOnTmjTpo3qgxpjYmIQGhqK0NBQJCQkoG3btujYsaNS10JNd+7cUWIlJiaibdu26NSpE4oVK6ZaDGNdt4yr+2ZUoUIFrFu3Trldp+/KvgkJCZn2iQhy586N8PBwFC9eHIB6g12NtaZW3rx5MXToUPTs2VNn/7x58zBu3Dj8888/qsSpUKEC+vbti6+//lqnR2fUqFHYtWsX/vrrL1XiGNoff/yBESNG4OTJkwBejivI+LvQaDRYu3YtvvzyS1XiHT9+HI8fP0aNGjVw//59tGvXDuHh4ShatCiWLl2K0qVLqxInq79v4OXzsba2VrWOV3bU6mnp37//ax+/f/8+fvnlF9V6dDLOYsxIo9HAxsYGRYsW/ahm/rm4uGDOnDlo3bq1zv7Vq1ejV69e+Pfff/U6fv/+/TFmzBjY29u/9nel0Wgwbdo0vWLp+MCJ1kchKSlJli1bJtWrVxc7OzsJCgqSZ8+eGSTW/v37pX379uLg4CBVqlSRpKQkg8QREdm3b59Ur15dzMzM5OHDh6of39DXLb1uRXoNi4xb+n41Pr29WmMkfVM7TjpPT88sq2RHRUVJ3rx5VYuTI0eOLKtkX7p0SdWeli1btohWq5WJEyeKnZ2dTJkyRTp37ixWVlayY8cO1eIYWsOGDWXx4sXK9xl7p0REJk2aJIGBgR/i1PSS/veb3ZY/f375/vvv9eoBTl9WJLstfSkSfVWvXv2tNrVk9xqU8XWhWrVqBnl9NQQnJye5dOlSpv0XL15UpaJ99erVlarer/v91KhRQ+9YGTHReQf79+83aGIg8v+Tg4oVK4qtra1OV7lanj59KitWrJAaNWqIra2ttGzZ0mCJm4jhrlvp0qWlfv36cv78eblx44bcuHFDrl+/LhYWFrJz505ln77y5s0r9evXlz179si+fftk3759snfvXjE3N5elS5cq+9RirDW1goKCZPLkyZn2T5kyRfX1yMLCwqRatWpib28vtra2UrVqVdm+fbuqMQytQIECOoUJX010Tp06Jblz5/4Qp6aXZcuWSb58+WT48OGyZcsW2bx5swwfPlw8PT1l4cKFMnbsWHFyclIK8L2PD7G+kTHs2rVLKlWqJLt27ZKEhARJSEiQXbt2ib+/v2zdulXCw8OlZMmS0rFjxw99qm+lZ8+e0q9fv0z7Q0JCpHv37h/gjNTBW1dvcOfOHSxbtgxLly5FYmIivv76a3Ts2FG5XaGWQ4cO4eeff8a6devg5eWFDh06ICgoCE5OTqrFOHLkCJYsWYK1a9eiSJEi6NixI9q0aaNqgat0xrhuKSkpGDRoEHbu3ImVK1eibNmyAF4uMxEVFYUSJUqoEufhw4fo1KkT4uPjsWLFCqXWg9px0pUtWxZXrlxBcnKyUmvi1q1bsLa2znSLUZ9B6mPHjsXUqVNRtWpVVK5cGQBw+PBh/P333wgJCdG5Ffe+hcJevHiBcePGoWPHjqouMfI6V65cwdWrV1GtWjXY2trqTDXXh42NDc6fP6/cijh+/DhKly6tzPK7fv06ihcvjuTkZL3ifPHFF2/VTq1V7GvWrIlu3bqhRYsWOvvXrVuHhQsXYvfu3VixYgXGjRun+rIaHztfX1/89NNPqFKlis7+v//+G127dsXZs2exa9cudOzYEbdu3XqnY2cs5PcmahWP7NWrF5YvXw5PT0/4+/sDePmaEB0djbZt2+rMaFVzVpShMdHJxrp167B06VLs378fderUQYcOHVC/fn2Ym5urGmfy5MlYunQpHjx4gDZt2qBjx47w8/NTNQYAlCxZEvfu3UNQUBA6deqk97iV7BjrumW0bds2dO3aFd27d8fgwYNhbW1tkARk/vz5SnLQunVrgyU6b1s7A9Bv+qmxCoXlyJEDZ86c0SneZwgPHjxAy5YtsWfPHmg0Gly+fBmFCxdGp06d4OTkpPc9fw8PDyxfvjzbGWk7duxAu3btEBMTo1ec9BmS9evXf22phBkzZugVJ52dnR2ioqIyJdGXL19G6dKlkZSUhOvXr6NkyZImNdNLDba2tjh27Bh8fX119p8+fRoVK1bE06dPcfPmTfj4+LzztXv1//P+/ftISkpSPvw+evRI9eKRNWrUeKt2Go1GtUTbGJjoZMPMzAz58+dHmzZt4Obmlm07fTPp9DgNGjR47aA/fbNnMzMz2Nvbw8LC4rWfbtWYLm+M6/aqu3fvokOHDnj8+DEOHz5skAQEAM6dO4egoCCUKFECv/76q8HimJImTZqgSZMmaN++vUHjtG3bFvfu3cPixYvh4+OjDHresWMH+vXrh7Nnz+p1/FatWiEpKSnbAagNGjSAvb091q5dq1ecyZMnIzQ0VOfDz6tvpGry8vJCs2bNMHHiRJ39Q4YMwcaNG3Hx4kUcP34cjRs3xp07dwx2Hh+jTz/9FA4ODli+fLlSAO/+/fto27YtEhMTceDAAezatQvdu3fHpUuX3jvOL7/8gh9//BFLlixRJqlcvHgRXbp0Qbdu3dCmTRtVno+pYqKTjYIFC76xu1uNkthvU1NAjex52bJlb9WuXbt2esUx1nXLzuzZs7F3717MmTPHYOtppaSkYMiQIdi7dy82bNjwUc2q+BAWLlyIkSNHok2bNihfvjzs7e11Hldr7SF3d3ds374dpUuX1pnddf36dfj5+eHJkyd6Hf/kyZOoXLkyGjZsiEGDBsHLywvAyzecSZMmYevWrTh48CDKlSunxtPRuZ3t7e2Njh07IigoSPXZi1u2bMFXX32F4sWL45NPPoFGo8GxY8dw4cIFrF+/Hg0aNMD8+fNx+fLlj+p2hTFcvHgRjRs3xvXr13XW9CtcuDA2b94MLy8vbNq0CY8fP0ZwcPB7xylSpAjWr1+v3J5PFxERgS+//BLXr1/X96mYNCY6RP8B77LWjz69bm+afpuRWm9qr1tfS82lGRwcHHDixAkUK1ZMJ9E5duwY6tatiwcPHugdY/PmzejcuXOm34GzszMWL16MJk2a6B3jVUlJSfj1118xb948nDt3Dv/884/qyc6NGzewYMECXLp0CSKC4sWLo1u3bga/3WgKRATbt2/XuXa1a9d+63Xl3oadnR327duHihUr6uw/evQoqlevrtctxXepsK3PgsIfEpeAoI/SoUOHlAG0b5KYmIgbN26gZMmS7xzn1q1byoDgt3Hnzp33Wphu5syZytcPHjzA2LFjUadOHeU5Hjp0CNu3b8eIESPe+dgZpdeASRcREYHU1FSlO/zSpUswNzdH+fLl9YqTUVpammrHep1q1aph+fLlGDNmDICXSVRaWhqmTJny1mMP3qRx48aoXbs2tm/frlM5NiAgIFNPlVpOnDiB/fv34/z58/D19TXIEicFCxbMdOvK0ETlJQayq6uVFTXHKGo0GtStWxd169ZV7ZivqlmzJrp06YIlS5agfPny0Gg0OH78OLp166Z3FfOMldZFBBs3boRWq0WFChUAvHyNePTo0ce95IjxJ3oR6a9o0aJSq1YtWbt2rTx+/DjLNmfPnpWhQ4eKu7u7LF++/L3iuLq6SufOneXIkSPZtnn06JH89NNPUrJkSZk9e/Z7xcmoWbNmWVYmnjNnjjRu3Fjv46ebNm2aNGzYUGfK/8OHD6Vx48YydepU1eIYy9mzZyV37txSt25dsbKyki+//FJ8fHzEzc1Nrly5YvD4t27dkg4dOqhyrDt37si4ceOkWLFi4ubmJiEhIXL27FlVjp2VuLg42b59u6xYsUKWLVums6lt2bJl4uvrK9bW1mJtbS1+fn7v/f+Z0av1a163qWnXrl0ydOhQ6dSpk3To0EFnU8u9e/ckMDBQNBqNWFlZiZWVlZiZmUlgYKDcvXtXtTiDBg2Szp0761Tof/HihXTt2lUGDBigWhxj460r+ig9f/4cCxcuxNy5c3H16lV4eXnBw8MDNjY2iIuLw4ULF5CYmIhmzZph6NCh7z2Y8+HDhxg/fjx+/vlnWFpaokKFCjpxzp07h7Nnz6JChQoYPnw4AgMD9X5uOXLkQGRkJIoWLaqz//LlyyhbtqzeY03S5c2bFzt27MjU03XmzBkEBASoVhm5d+/eKFq0aKYB6HPnzsWVK1d0erP0FRsbi/nz5yMiIgJpaWkoV64cevTogTx58qgWIztqVfetV68e9u7di4CAAHTs2BH169eHhYXhOt9///13tGnTBomJiXBwcNDpYVF7Xbrp06djxIgR6NmzJ6pWrQoRwd9//4158+Zh7Nix6Nev33sfO+OioCdPnsSAAQMwcOBAnV7RadOmYfLkyardYhw1ahRGjx6NChUqIE+ePJl6pzZu3KhKnHSXLl3ChQsXICLw8fFRxompJb3a+6tV+S9evIgqVaqocvv3Q2CiQx+9EydO4K+//sKNGzfw9OlTuLi4oGzZsqhRowZy5sypSoxnz57hzz//zDJOnTp1VJ0VU6BAAfTs2RMDBw7U2T9lyhTMnTtXtVWeHRwcsHnz5kx1W/bs2YPGjRvj8ePHqsTJmzcvtmzZkul22IkTJ9CoUSPcvn1blTgfmlqJjpmZGfLkyQNXV9fX3tbRd6HfdF5eXqhXrx7Gjx+vs6K0IRQqVAijRo1C27ZtdfYvW7YMI0eOVG1QbcWKFTFy5EjUq1dPZ/+ff/6JESNGICIiQpU4efLkweTJk/UaaPxf4uzsjKVLl2ZKBDdt2oQOHTp8tAvwcowOffTKlSun2kyX7NjY2KBZs2ZGuU89atQodOrUCfv27dMp5BcWFobFixerFqdp06bo0KEDpk2bplMcbODAgao+zwcPHmS54rqjo6Pea+d8qHEZhqRPbaT3cefOHfTu3dvgSQ7wcl2/V4vrAUCVKlX0rj+U0enTp7OcDVmoUCGcO3dOtTgpKSlZPh81fIiJAx06dEDHjh1x5coVndeEiRMnokOHDqrE+BCY6LyFtLQ0XLlyBffu3cs0sLJatWqqxMjuBTt9cbj8+fPD2tparxiJiYmYNGkSNmzYgBs3bkCj0aBQoUL48ssvMWDAANVf6K5evYqlS5fi6tWrmDVrFlxdXREWFgZPT8/3Ghj8v6J9+/bw8fHB7NmzsWHDBogISpQogb///huVKlVSLc6CBQswYMAAfP3113j+/DkAwMLCAp06dcKUKVNUi1O0aFGEhYVlWjx027ZtysKr76tMmTLQaDR4U8e0mrO7DM3YiU6dOnVw/PhxvX8Xb6No0aJYt24dvvvuO539a9euVXVhYR8fH4wdOxZLliyBjY0NACA5ORljx46Fj4+PanE6d+6MX375Re9JAln5EBMHpk6dCnd3d8yYMUNJPPPkyYNBgwYhJCREtTjGxltXb3D48GEEBQXh5s2bmV5M1XzxNDMze203taWlJVq2bImFCxcq/7jvIv2Tx5kzZxAYGIjixYtDRHD+/HmEhYWhXLlyOHDggGozOvbv34/AwEBUrVoVBw4cwPnz51G4cGFMnjwZR48exfr161WJQ/pLTEzE1atXISIoWrSo6rOHfv75Z+VWXPptst27d2PatGmYOXMmunTp8t7HfpfbeAUKFHjvOMCbp+E+evQI+/fv/2gSqnRLlizB6NGj0aFDB/j5+WV6DVCrzhEA/Pbbb2jZsiVq1aqFqlWrQqPRIDw8HLt378a6devQtGlTVeIcPXoUDRs2RFpamrLKe1RUFDQaDf74449M07TfV58+fbB8+XKUKlUKpUqVynTt1OppmT59Ovbt24dly5YpS/bExcWhQ4cO+OyzzwyShKSvaq92KYMPgYnOG5QpUwZeXl4YNWpUloPNsuqSfx+bN2/G4MGDMXDgQFSsWBEigmPHjmHatGn44Ycf8OLFCwwZMgQtW7bE1KlT3/n4s2bNwoQJE7B///5MA80uXLiA6tWrY9iwYejVq5cqz6dy5cr46quv0L9//0w1TZo0acIKq2/p6dOnSm9Luo/xhWf+/PkYN26cMsC5YMGCGDlyZKaxGv9lb9t1v3TpUgOfibqMVeco3YkTJzB9+nScP39e6a0MCQnJVAxPX0lJSVi5cqUyeLdEiRIICgpSNZF/XdkCNZdJMNbEAVPFROcN7O3tERUVlWkGjNoqVqyIMWPGoE6dOjr702unHD16FJs2bUJISAiuXr36zsf//PPP0aJFC/To0SPLx+fMmYP169dj//7973X+r8qRI4dynzxjonPjxg0UL14cz549UyWOKUpKSsKgQYOwbt26LGc5qPnGc+zYMfz666+4desWUlJSdB4zRHGw+/fvw9bWFjly5FD92NktzZB++7do0aKsYv0BPX/+HF27dsWIESOMcpvMlBhr4gAArF+/HuvWrcvyNUGtAfBGZ9zZ7B+fGjVqyLZt2wwex8bGRs6fP59p//nz58XGxkZERK5fvy62trbvdXwXFxc5c+ZMto+fPn1aXFxc3uvYWcmbN6/8/fffIiKSI0cOuXr1qoiIbNiwQQoXLqxanOzExcUZPIahdO/eXXx8fOTXX38VW1tb+fnnn2XMmDGSL18+WblypWpxVq9eLZaWllK/fn2xsrKSBg0aiLe3t2i1Wmnfvr1qcZKSkiQxMVH5/saNGzJjxgzZvn27ajFEdOuoZNwy1lapVq2aTt0gMi6tVqu8FhjD2bNnZdu2bbJ582ad7WMTHBws+fPnl19//VWio6MlOjpafv31VylYsKC0bdtWtTizZs2SHDlySI8ePcTKykq6desmtWrVEq1WK999951qcYyNic4bbNiwQUqUKCFLly6V48ePS1RUlM6mljJlyki7du0kOTlZ2ZeSkiLt2rWTMmXKiIhIeHi4FCxY8L2Ob2FhITExMdk+/s8//4ilpeV7HTsrAwcOlE8//VRiYmLEwcFBLl++LOHh4VK4cGEZOXKkanFERCZOnChr1qxRvv/qq6/EzMxMPDw8JDIyUrU4oaGh8scffyjfDxw4ULRarVSuXFlu3LihWhxPT0/Zu3eviIhy7UREli9fLoGBgarF8fPzk7lz54rI/09G09LSpEuXLvL999+rFqd27doyf/58EXmZgLq6ukq+fPnExsZGfvzxR9Xi7Nq1SypVqiS7du2ShIQESUhIkF27dom/v79s3bpVwsPDpWTJktKxY0fVYn6sZs2aJU+fPlW+ft2mpvbt28u0adNUPWZWrl69KqVKlcqU/KpRMLBp06YSHx+vfP26TS2JiYny7bffirW1tfIcrKys5Ntvv5UnT56oFsfb21t++eUXEdH9gDpixAjp0aOHanGMjbeu3iCr+9fpszzUvH998OBBNGrUCGZmZihVqhQ0Gg1OnTqF1NRU/PHHH/D398eKFSsQGxubqb7K2zA3N0dsbKyywu6r7t69Cw8PD9Wez/Pnz9G+fXusWbMGIgILCwukpqYiKCgIoaGhMDc3VyUOABQuXBgrV65ElSpVsHPnTrRo0QJr165Vul937NihShxvb2/Mnz8fX3zxBQ4dOoSaNWti5syZ+OOPP2BhYaHarZ4cOXLg7NmzKFCgAPLly4cNGzagYsWKqi1Omc7e3h5nz55FwYIF4eLigr1798LPzw/nz5/HF198odp0XxcXF+zfvx8lS5bE4sWLMWfOHJw8eRK//fYbvv/+e5w/f16VOL6+vvjpp58yTff9+++/0bVrV5w9exa7du1Cx44dcevWLVViGtLs2bOz3J/xVly1atXe63+pUKFCOH78OHLlyvXa23lqL8A7btw4TJ06FTVr1sxygddXi0q+r4YNG8Lc3ByLFi1C4cKFcfToUTx48AAhISGYOnUqPvvss/c+docOHTB79mw4ODi8cdyW2uO1DD1xwM7ODufPn0eBAgXg6uqKnTt3onTp0rh8+TL8/f0/2oKBnF7+BsZaFbZKlSq4ceMGVq5cqSwO9+WXXyIoKAgODg4AoFdRKhFBzZo1s62w+uLFi/c+dlYsLS2xatUqjB49GidPnkRaWhrKli2r6hTSdDExMfD09AQA/PHHH2jRogUCAgJQsGBBVadjR0dHK2O1Nm3ahC+//BJdu3ZF1apVUb16ddXipI9lKlCgAEqUKIF169ahYsWK+P333+Hk5KRanJw5cyr39vPmzYszZ87Az88Pjx490muRwFclJSUpf8M7duxAs2bNYGZmBn9/f9WKHwIvyxlkNVDb0dFRebMuVqyY3rV7jGXGjBm4f/8+kpKS4OzsDBHBo0ePYGdnhxw5cuDevXsoXLgw9u7dq/z9v62Mr2vGXPl68eLFcHJyQkRERKaifRqNRrVE59ChQ9izZw9y584NMzMzmJmZ4dNPP8WECRPQu3fvTFO330XG5MXYA8/t7e0NWg/K3d0dDx48QIECBVCgQAEcPnwYpUuXxvXr199YwuG/jInOG+g7JfVd5MiRA998841Bjv02tTmaN2+uetwiRYqgSJEiqh83I2dnZ0RHR8PT0xNhYWEYO3YsgJfJnZoDd3PkyIEHDx4gf/782LFjh1Ku3sbGBk+fPlUtTocOHRAVFYXPP/8cQ4cORf369TFnzhy8ePFCtemqAPDZZ59h586d8PPzQ4sWLdCnTx/s2bMHO3fuRM2aNVWLU7RoUWzatAlNmzbF9u3blet27949VWeQlS9fHgMHDsTy5cuVnsv79+9j0KBB+OSTTwC8XEYjX758qsU0pPHjx+Onn37C4sWLlf+hK1euoFu3bkqC3apVK/Tr1++jKddgrKQqNTVVGfDu4uKCf/75B97e3ihQoAAuXrxolHNQmzEmDnzxxRf4/fffUa5cOXTq1En52zp+/PhHvagnb11lYcuWLQgMDISlpWW2MznSqVlj4tKlS9i3b1+WhQm///571eIYyoeo5AkAPXv2xB9//IFixYrh5MmTuHHjBnLkyIG1a9di0qRJqs0UaNOmDS5cuICyZcti9erVuHXrFnLlyoUtW7bgu+++w5kzZ1SJ86pbt27h+PHjKFKkiFITRA0PHz7Es2fP4OHhgbS0NEydOhXh4eEoWrQoRowYodTr0Nf69esRFBSE1NRU1KxZU7mVOGHCBBw4cADbtm1TJc7FixfRuHFjXL9+HZ6entBoNLh16xYKFy6MzZs3w8vLC5s2bcLjx48/ipL9RYoUwW+//YYyZcro7D958iSaN2+Oa9eu4eDBg2jevLletxmz+7/NeIuscePGei+ncuTIEWzZsgUvXrxAzZo1ERAQoNfxXie9tkyTJk0QFBSEuLg4DB8+HD/99BMiIiJU+18tW7ZslvXPMl679u3bv3Ya+ttYs2YN2rZti4CAAOzcuRMBAQG4fPkyYmNj0bRpU9V6ltLS0pCWlqb0/K9bt055Tfjmm29gZWWlShxjY6KTBTMzM8TGxsLV1dVoNSYWLVqEb7/9Fi4uLnB3d8+0sN7HMK3v1X/m11XyVKu+BPByPNCsWbMQHR2N9u3bK/U4Zs6ciRw5cqBz586qxHn06BGGDx+O6OhofPvtt6hbty6Al71lVlZWGDZsmCpxMnr27Nl7FYj8r4mNjUVMTAxKly6t/E8dPXoUWq02U10nfYgItm/frtz+LV68OGrXrv3a/+P/Kjs7Oxw4cAAVKlTQ2X/s2DF8/vnnSEpKwo0bN+Dr66vXuK0aNWrgxIkTyv+qiODy5cswNzdH8eLFcfHiRaWwX4kSJd4rxsaNG/HVV1/BxsYGFhYWePz4MaZNm4a+ffu+93m/zvbt25VFfa9du4YGDRrgwoULyJUrF9auXZtpmvb7Gjp0KObPnw8/Pz+l/tnx48dx6tQptG/fHufOncPu3buxYcMGNG7c+L3jlCpVCt26dUOPHj2Uch2FChVCt27dkCdPHowaNUqV52OyjD36mbKWP39+mThxosGOX6ZMGSlbtuwbN7VMmzZNGjZsqDOV9+HDh9K4cWOZOnWqanFM0YsXL2T06NHi4eEh5ubmysyH4cOHy+LFi1WNdeXKFRk2bJi0atVK7t69KyIi27Zte20pgnfVoUMHSUhIyLT/yZMn0qFDB9XimJp69epJuXLl5MSJE8q+EydOSPny5aV+/foiIrJlyxbx9fXVK86MGTOkWbNmykwiEZH4+Hj58ssvZebMmZKYmCiNGzeWgICA945RoUIF6dSpkzx//lxERMaMGSO5cuXS67xf59mzZ5lmIz148EDS0tJUjdO5c2cZPXp0pv1jxoyRzp07i4jI999/L+XLl9crjp2dnVy/fl1ERHLlyiWnTp0SEZFz586Ju7u7Xsd+1YEDB6RNmzbi7+8vt2/fFpGXMz7/+usvVeMYExOd/wgHBweD1pcYOXKksv3www9iZWUlvXv31tmv5rRvDw+PLN8sT58+LXny5FEtTrrly5dL1apVJU+ePMpU7xkzZsimTZtUjZP+IlC5cmWDvQiMGjVKChcuLCtXrhRbW1vl72Lt2rXi7++vWpx9+/aJra2t1KpVS6ysrJQ4kyZNkubNm6sWx8zMTEmiMrp//76Ym5urFkfk5XNq0KCBFClSRIoWLSoNGzaUAwcOqBrDWGJiYqRWrVqi0WjEyspKrKysxMzMTGrXri2xsbEiIrJnzx696xF5eHjI2bNnM+0/c+aMeHh4iIhIRESEXomJg4ODXLx4Ufn+2bNnYm5uLvfv33/vY2bl/v37Uq9ePbGwsBAzMzOpXLmyQV9XHR0dlfIPGV2+fFkcHR1F5GUttBw5cugVJ1++fEpyU6pUKWUK+MGDB5U4ali/fr3Y2tpK586dxdraWrl28+bNU7W0hbEx0XmNJ0+eyE8//STt27eXunXrSmBgoLRv314WLVqkau0CEZGOHTsqtUaMIWONBEMdf/fu3Zn27969W+9/+lf9+OOP4uLiImPHjtVJDJYuXSrVq1dXLY6xXgSKFCkiu3btEhHd39P58+fFyclJtTj+/v5KTZOMcY4ePaq8wekjPj5eHj16JBqNRq5cuSLx8fHK9vDhQ1m2bJmqSe+KFSvEwsJCWrRoIbNmzZKZM2dKixYtxNLSUlatWqVaHGM7f/68bN68WTZt2iQXLlxQ/fj29vZK3aaM9u7dq/yvXr16VRwcHN47hkajyZTsGuI1qHPnzuLm5ibjxo2TadOmSbFixaRWrVqqxsjI1dVVli1blmn/smXLxNXVVUReFi3Ut/eqdevWyv/q2LFjJXfu3NK5c2cpUKCAqvV6ypQpozyfjL+fkydPipubm2pxjI2JTjbOnj0rHh4e4uTkJI0bN5auXbtKly5dpHHjxuLk5CR58+bN8lPQ+xo/fry4uLhIu3btZOrUqQYt2iVi+ETHWJU8RUR8fHxk48aNIqL7vE6fPq1q97ixXgRsbGyUXqmMcc6ePSv29vaqxbG3t5dr165linP9+nWxtrbW+/gZC7RltZmbm8vYsWP1jpOuePHiMn369Ez7p02bJsWLF1ctjqkJCgqSQoUKyYYNGyQ6Olpu376tVDD/+uuvReRlFW19br9oNBpZvny5TnViOzs7+emnn1StWOzp6Slbt25Vvj9//ryYm5tLSkqK3sfOypgxY8TW1lZ69+4tK1askJUrV0rv3r3Fzs5O+duePn263snWgwcP5M6dOyIikpqaKpMmTZKGDRtKv379VK30bWtrq9wiy/iacPXqVVVeEz4UJjrZqF69urRq1UqnUnG65ORkad26taq9BQULFsx2K1SokGpx0hk60TFWJU+R7BODS5cuKctnqMFYLwLly5eXFStWZIozcuRI+fTTT1WLY+hlOvbt2yd79+4VjUYjGzZskH379inbwYMHlRdutVhZWWV7G+FjfJF+8eKFLF68WFq3bi01a9aUGjVq6Gxqefz4sXTu3Fm5NZb+v9qlSxflf/XkyZNy8uTJ947x6rIcWW36ViwWETE3N5d//vlHZ5+tra2qlctftXLlSvH39xdnZ2dxdnYWf39/nR7EpKQkpQr1f13hwoVl586dIqL7mrBs2TLx8fH5kKemF9bRycaRI0dw/PjxLKfTWVlZ4bvvvkPFihVVi2fMol3GYGdnhx9//BFTpkwxaCVP4GWV18jIyEw1j7Zt2/bes0SykidPHly5cgUFCxbU2R8eHq7qIoU//PADgoODcefOHaSlpWHDhg24ePEili9fjj/++EO1OEFBQRg8eDB+/fVXaDQapKWl4e+//8aAAQNUWVX8888/BwBlurehZz55enpi9+7dmRbg3b179zsX1Psv6NOnD0JDQ1G/fn34+vpmOY1ZX6mpqYiIiMCkSZMwY8YMXLt2DSKCIkWK6Cy8+uoU93f1arkMQ5H/q8KekYWFhUHiv3jxAuPGjUPHjh3Rpk2bbNvZ2tqqEi81NRUbN27E+fPnodFo4OPjg8aNG2dbBPZ9dOvWDX369MHPP/8MjUaDf/75B4cOHcKAAQM+ihIn2WGikw1nZ2dcvnw52zfKK1euqFZnxBheLSf/4sULhIaGwsXFRWe/WpVJ0xm6kicADBw4ED169MCzZ88gIjh69ChWr16NCRMmYPHixarFMdaLQMOGDbF27VqMHz8eGo0G33//PcqVK4fff/8dtWvXVi3OuHHj0L59e+TNmxcighIlSijLdAwfPly1OOkJaFJSUpbFztT6+wgJCUHv3r0RGRmJKlWqKFOiQ0NDMWvWLFViGNOaNWuwbt061KtXz2AxzM3NUadOHZw/fx6FChUy+P+qoUkWFeCTkpLQsGFDnQ+tapTrsLCwwJQpU9CuXTu9j/UmZ86cQePGjREbG6tTriN37tzYsmUL/Pz8VIkzaNAgxMfHo0aNGnj27BmqVasGa2trDBgwAD179lQlxofAOjrZGDlyJGbOnInhw4ejdu3acHNzg0ajQWxsLHbu3Inx48ejb9++er3B9e/fH2PGjIG9vf0bi+3pW2DvdevZpNN3XZtmzZohNDQUjo6Ob6yiqVYlz3SLFi3C2LFjER0dDeDlkgYjR45Ep06dVI0zbNgwzJgxA8+ePQMA5UVgzJgxqsYxpqtXrxp0mY779++jQ4cO2RYGVLN69caNGzFt2jRl/SwfHx8MHDhQrxomH4qHhwf27dsHLy8vg8b55JNPMHHiRFWrYX8ob1tP5m0qxb+NJk2aoEmTJmjfvr0qx8uOv78/XF1dsWzZMuUDdlxcHNq3b4979+7h0KFDqsZLSkrCuXPnkJaWhhIlSuj07n2MmOi8xqRJkzBr1izExsYq3cYiAnd3d/Tt2xeDBg3S6/g1atTAxo0b4eTk9NrKmRqNRtUCe4byIRe7S/fvv/8iLS0Nrq6uBjk+YHovAobWpk0b3LhxAzNnzlT+5u/evYuxY8di2rRpqF+//oc+xf+kadOm4dq1a5g7d65Bblul27FjBwYPHowxY8ZkudCmmst0mJqFCxdi5MiRaNOmTZbXTq3K+ba2tjh+/DhKliyps//MmTP45JNPVF2CxhQx0XkL169fR2xsLICXi569Te8I0btydnZ+qze0hw8f6hXnbZfqUGuZjjx58mDz5s2oWLEiHB0dcfz4cXh5eWHLli2YPHkywsPDVYmTLiIiQhnHUKJECaVS9semadOm2Lt3L3LmzImSJUvC0tJS53G1ekUzjp3K+PcnIqpWfzemlStX4uuvv87ysYEDB2LKlCmqxDFW5fwyZcpg+vTpmSo679mzB3369MHp06f1Ov7brmOldk+8sXCMzlsoVKjQR5/c5M+fHydPnkSuXLkAAHPnzkXbtm0N9mlt0aJFqF69ukFWKweAcuXKYffu3XB2ds52vZl0+tyPN+btuJkzZypfiwi+/fZbjB49WvXeqVdXbg4PD0f58uV1Bk2q2YOQmJioPIecOXPi/v378PLygp+fn6pLm9y7dw+tWrXCvn374OTkBBFRxhusWbNGWejzY+Hk5ISmTZsaPM7evXsNHuNtpCdWaujZsyecnJzQoEEDnf39+vXDmjVrVEt0DDnIOiEhQfl6/Pjx6N27N0aOHAl/f38AwOHDhzF69GhMmjRJ71harVbn+19++QUNGzaEg4OD3sf+L2CPzms8ffoUERERyJkzZ6ZByc+ePcO6detUmZ2Sfrw5c+Zg7969WS7qqe8bQsb1u4CX3dGRkZGqzhbKqHjx4rh06RLc3d3x+eefo3r16vj8889RvHhxVY4/atQoDBw4EHZ2dm+8L6/P/fgPeTsufU0bQ/2OjBXnk08+wdixY1GnTh00adIEjo6OmDBhAmbPno3169fj6tWrqsRp2bIlrl69ihUrVsDHxwcAcO7cObRr1w5FixbF6tWrVYlD72/ChAkYOnRopv2pqan4+uuvVfsdhYWFoVWrVtiyZQuqVasGAOjVqxc2bNiA3bt3q/Y6ZEhmZmaZetgA6AyjSP9e7V43Y732GAsTnWxcunQJAQEBuHXrFjQaDT777DOsXr0aefLkAQDcvXsXHh4eqv2BBQUFYefOnfjyyy+Vgc8Z6Tt47tVExxh/yLGxsdi7dy/279+Pffv24fLly8idOzeqV6+ONWvWqBIjNTUV4eHhKFWqlEFnwYkIbt26hdy5c8POzs5gcTIylURn1apVeP78Odq3b4+TJ0+iTp06ePDgAaysrBAaGoqWLVuqEker1WLXrl345JNPdPYfPXoUAQEBePTokSpxTJWhZ8UBgJubG8aMGYOuXbsq+1JTU9GqVSucOXNGGUSuhjVr1qB79+7YsWMHfv75Z2zevBl79+5VfXB3YmIi9u/fn+W102cW6/79+9+6bXopB7WYWqLDgoHZaNKkiTRo0EDu378vly9floYNG0qhQoXk5s2bIiISGxurSoGrdI6OjhIeHq7a8V71agl2QxcMzOjJkycSFhYm7du3FwsLC9XXN7K2tlYq/BpKamqqWFpayqVLlwwaJyNj/Y6M+bcg8rKYZEREhOrrHOXIkSPLonYnTpzQa/kCYypbtqxS6fZNC/Gq5d69e1K/fv1sK1ir6fjx4+Lk5CRr164VEZGUlBRp2rSp+Pj4SExMjKqxRF4uD2NtbS358uXLspikvk6cOCHu7u7i6Ogo5ubmkjt3btFoNGJvb2+QQq/GYuzXBEPjGJ1sHDx4ELt27YKLiwtcXFywZcsW9OjRA5999hn27t2reuG7vHnzGvx+6OLFi5UZQoauo7Nt2zalJycqKgolS5ZEtWrV8Ntvv+Gzzz5TJUY6Pz8/XLt2zaDjqMzMzFCsWDE8ePDAYOOO/lfY2dmhXLlyqh/3iy++QJ8+fbB69Wp4eHgAAO7cuYN+/fp9NFOnGzduDGtrawAvpy4bQ9++fREXF4fDhw9nOStOTeXLl8fGjRuV57lkyRJcvXoVe/fuhZubm17Hzm6QvaurK8qWLYsff/xR2afWQPt+/fqhYcOGmD9/PpycnHD48GFYWlri66+/Rp8+fVSJke6vv/7CwoULce3aNfz666/ImzcvVqxYgUKFCuHTTz9VNZap4a2rbDg6OuLIkSPKvf50vXr1wqZNm/DLL7+gevXqqt262rZtG2bPno0FCxZkqvCrhoIFC75xoJ++dXQyMjMzQ+7cuRESEoJu3bplGuymJmNNj926dSsmTpyI+fPnw9fXV5VjZvTqC/W8efPw9ddfZ7p2+r5Inzp1Suf7KlWqYN26dciXL5/Ofn1uWbztzC5AvTed6OhoNG7cGGfOnIGnpyc0Gg1u3boFPz8/bN68OdPzo5eMPSsOALZs2YLmzZvDx8cHe/bsyfSB6328rkRHRmqW63BycsKRI0fg7e0NJycnHDp0CD4+Pjhy5AjatWuHCxcuqBLnt99+Q3BwMNq0aYMVK1bg3LlzKFy4MH788Uf88ccf+PPPP/U6/pYtW3S+b926NWbOnJkp+VRruryxMdHJRsWKFdGrVy8EBwdneqxnz55YtWoVEhISVEt07t+/jxYtWuDAgQOws7PLNJVU3ynFxjZz5kwcOHAAf/31F8zNzZUBydWrV8+UPOrLWNNjnZ2dkZSUhBcvXsDKyipTaXd9f0dv80Ktxot0+iDHrP710/fre90+xJtOup07d+LChQtKtedatWqpenxjS0lJyXKCQv78+VU5vqOjI06dOoWCBQuiYMGCWLVqFapWrYrr16+jZMmSSEpK0uv42c1WPHz4MIoWLaqT5Hxs05dz586Nv//+G15eXvD29sbs2bNRp04dXLhwAeXKldP72qUrW7Ys+vXrh7Zt2+qMn4mMjETdunWV8ifv622WZ/lYSw0AnF6eraZNm2L16tVZJjpz585FWloaFixYoFq81q1b486dOxg/fnyWg5E/Nn379kXfvn0BAKdPn8b+/fuxa9cu9OnTB7ly5UJMTIxqsYw1PTbj9G9DMNbzMMa6ah9yynLt2rVVXSrjQ7l06RI6deqEgwcP6uxXO4H39vbGxYsXUbBgQZQpUwYLFy5EwYIFsWDBAmXyhT6y682tU6eO3sf+0MqWLav0gNWoUQPff/89/v33X6xYsUK1ZRkA4OLFi8rssYwcHR1VGWRvrLXIPhT26PxH2NnZ4dChQyhduvSHPhVVnTx5Evv27cPevXvx119/4fHjxyhbtiyOHTv2oU+NDCx93JShk/anT59i9+7dSs2UoUOHIjk5WXnc3NwcY8aMgY2NjUHPQ21Vq1aFhYUFhgwZgjx58mS6jmq9VhhrVpwxJSYmYuLEidi9e3eWvWFq3aI/fvw4Hj9+jBo1auD+/fto164dwsPDUbRoUSxdulS131GRIkWwcOFC1KpVS6dHZ/ny5Zg4cSLOnTunShxTxR6d/4jixYubVBnvRo0aITw8HAkJCShTpgyqV6+Orl27olq1agYpUmisgXpXr17F0qVLcfXqVcyaNQuurq4ICwuDp6dnpvLs/+uKFSuGmJgYpaRBy5YtMXv2bL0Hnb4qfVX39ERn7ty5KFmypHJr8cKFC/Dw8EC/fv1UjWtokZGRiIiIMHjNl4wrb5ctWxY3btzAhQsXkD9/flXGzmTl/v37uHjxIjQaDby8vFQv5ti5c2fs378fwcHBWSaJaqlQoYLyde7cufUeK5MdU11V3Gg+0GwvesX27dulSpUqsnfvXvn3338lPj5eZ/vYhISEyO+//26Uc1+/fr3Y2tpK586dxdraWpkWOW/ePAkMDFQtzr59+8TW1lZq1aolVlZWSpxJkyZJ8+bNVYtjKoxV0uCzzz6TDRs2ZBtnxYoV4u/vr3pcQ6tQoYL89ddfH/o0VPXkyRPp0KGDmJubi0ajEY1GIxYWFtKxY0dJTExULY5WqzVouY4P4bvvvhNbW1vlutnY2Mjw4cM/9Gl9FJjo/Eek//G+WsMifR9lr0yZMrJs2TIR0X2TO3nypLi5uakWx9/fX6ZNm5YpztGjR8XDw0O1OKbCWImOm5ubnDlzRvnexcVFrl+/rnx/8eJFcXR0VD2uIWT8cPP/2rvvsKiO73/g712kS1PBghRRpIm9xgb2jhpbUFHBgj2iEpN81IiaqFEjGiNRuolRg8aGsQUwEETAKGIvqKARO6AUpZzfH/64X1bARPduAc/reXji3kvmDG13dubMmT/++IM6deqk8Dc/RUVFFBgYSJ988gn17NmTXF1dZT7ENHXqVLKxsaHDhw8LX0dkZCQ1btyYvL29RYtjbW1Nly5dEq29ymRmZtK4ceOofv36pKGhodAaRESva1AlJSXR6dOn6fnz56K3X13x0pWaUGbyZklJCW7cuFHh2nVFCW/vS1EVQ9+k6ES9UqmpqdixY0e566ampnjy5IlocaoLiURSbslAEUsI2dnZqFHj/57KHj16JHO/pKREJmdHnRkbG5fbOfhmDSASORl57ty5CA0NxcCBA9GsWTOF5lTt2bMHERERcHFxEa4NGDAAurq6GDVqFLZs2SJKnOXLl2PJkiUICwtTaCXziRMnIj09HYsXL1boElmpf/75B0+ePEG3bt2gq6sr6vlg1RkPdNSE2CW8K5OQkAB3d3fcuXOn3PZiMZ88z549iwEDBiAvLw+5ubmoVasWHj9+DD09PZiZmYk60Klfvz5u3LgBa2trmetxcXGiljA3NjbG/fv3yxUmPHv2LMzNzUWLc+TIEdSsWVPILdq8eTO2bdsGR0dHbN68WbSjLnr06IG9e/fC2NhY5npOTg6GDh0q97ZvIsLEiROFAngFBQXw9vYuV+dI3i3FDRs2xIULF2BnZ1fh/fPnz1eZGjqq2K22c+dO7N69GwMGDFB4rLy8vApztMzMzETbig0A69atw82bN1G3bl1YW1uXK9ch1mGycXFxiI2NRcuWLUVprzJPnjzBqFGjEB0dDYlEguvXr8PGxgaTJ0+GsbGx6IUdqxse6KgZRZ834+3tjbZt2yIyMlKh70CUWTFUWYl67u7u+Oyzz/Drr79CIpGgpKQEf/31FxYsWCDa4a4AsHDhQuFE4tTUVMyfPx8+Pj6IioqCj4+PaIeHxsTElPs9A14PSGJjY+Vuf8KECTKPx40bJ3ebFRkwYACWLFmCgQMHlttZlZ+fj2XLlmHgwIEKiS02Zb3hKUtLSwtNmjRRSqxOnTph6dKlCA8PF35WpT+jTp06iRZHWVWlLSwsKqxHJbZ58+ZBU1MT6enpMnXIRo8ejXnz5sk10DExMfnPrwNVrZ6bQJXrZuz/KOu8GT09PYWc+fImIyMjunLlivDv0vXyhIQEsrOzEz2eMhL1Xr16Re7u7kLulKamJkmlUho3bhwVFRWJFkdfX1/IMVm6dKmQ6HzmzBlRco5SUlIoJSWFJBIJRUdHC49TUlLo77//pq+//pqsrKzkjqMsmZmZVK9ePbK0tKQ1a9bQvn37aP/+/bR69WqysLCg+vXrU2Zmpqq7+c5+//13mWTk77//nlq0aEGffPKJcB6WGNauXUszZsygkpIS0dqsTGpqKpmbm1Pt2rWpR48e1LNnT6pduzaZm5vL5FlVFUePHqU+ffrI5IQpQt26dencuXNEJJvrlpaWRvr6+nK1HRoaKnysW7eOTExMaMyYMeTv70/+/v40ZswYMjExofXr18v9dagKD3TUhLu7O3300UeUmJhI+vr6dOzYMdq+fTvZ2dnRoUOHRIvj6upKv//+u2jtVaZOnTp09epVIiJq2rQpHTlyhIiILl++TLq6ugqJqaxEvZs3b9Kvv/5Ku3btUsghnyYmJnTx4kUiIurcuTP9+OOPRER069YtUb53ZZPeSweGZT/09PQoKChI7jjKlJaWRn379pX5mqRSKfXt27fKHk7YrFkzioyMJCKi8+fPk5aWFn3++efUoUMHmjhxolxtDxs2TObDyMiIGjVqRIMGDSp3T2x5eXm0detW8vHxoXnz5tG2bdsoLy9P9DiKYmxsTCYmJsKHlpYWSaVSqlmzpsx1ExMT0WLWrFlTeK55cyNErVq1RIszfPhw2rRpU7nrmzZtIjc3N9HiKBsvXamJqKgo7N+/H+3atYNUKoWVlRV69+4NQ0NDfPPNN6JNvc+ePRvz589HZmYmnJ2dy61di7VEpqyKoQDg6ekJf39/GBgYyNS1yM3NxezZsxEcHCxKHD8/PyxYsAA2NjYyuT/5+fn49ttvRVsm69KlC3x8fNC5c2ckJiZi165dAF5XyhUj1+TWrVsgItjY2CAxMVGmhomWlhbMzMygoaEhdxxlatSoEY4cOYKnT5/ixo0bAIAmTZqgVq1aKu7Z+7t16xYcHR0BvE7iHTx4ML7++mv8/fffcufTvFmteNiwYXK19y50dXUxZcoU0dutVasWrl27hjp16vzrcow8SzCKrpBekW7duiE8PBzLly8HAGHp/Ntvv/3Px638F0ePHhWWzcvq27cvFi1aJFocpVP1SIu9ZmBgIEx/WllZCTUg0tLSRJ0BqegdvCK2sSclJVFUVBQRvV6W69+/PxkYGFCrVq2EKVixSKVSmW3MpR49ekQaGhoKj/P48WNRv3d37tyhgQMHUvPmzSkwMFC4/umnn9Ls2bNFifHq1SuaMGFClZ3t+BAoemZPVW7cuEGzZs2inj17Uq9evWj27Nl048YNudsNDQ2lgoIC4d9v+6hqLl68SKamptSvXz/S0tKiESNGkIODA9WtW1eU712p0uXfN61Zs4YsLS1Fi6NsPKOjJhR93kwpZZxzREQwNTUVKgUrqmJoTk4O6PXyK54/fy6TiFpcXIzDhw8LVXnFQJVs5UxJSRF15sDS0hKHDh0qd/27774TLYampib279/PVVXVmKJn9goKCnDs2DG4urrCwMBA5l5OTg5iYmLQt29fYdecGI4ePYohQ4agZcuW6Ny5M4gI8fHxcHJywsGDB+U6o6xs8vubifBi++eff7B+/XosWbKkXKX37OxsrFixAgsWLBCtCrijoyPOnz+PLVu2QENDA7m5uRg+fDhmzpwp6uvDsmXL4OXlhZiYGCE5PCEhAUeOHEFgYKBocZSNz7pSE9XpvJmSkhLo6Ojg4sWLsLW1VVic0lO4KyORSLBs2TJ8+eWXcsUpnQbPzs6GoaGhTMzi4mK8ePEC3t7e2Lx583vHyMnJ+c+fK9YRGpMmTYKzszN8fHxEaY+JKz09HTNmzEBGRgbmzJkDLy8vAK934BQXF2Pjxo1yte/v748DBw7gjz/+qPB+r169MHToUMyaNUuuOGW1atUKffv2xapVq2SuL1q0CMeOHRNt2zeg2HphCxYsQE5ODrZu3VrhfW9vbxgZGVW4DPSuCgsL0adPH/z4449o2rSp3O39m9OnT2Pjxo24fPkyiAiOjo6YM2cOOnTooPDYisIDHTWVl5cn2nkzBw4cQP/+/aGpqYkDBw689XOHDBkiV6xSTk5OCAoKQseOHUVpryInT54EEaFHjx7Ys2ePzKyKlpYWrKys0KBBA7njhIWFgYjg6emJDRs2yOQ3aGlpwdraWu6tsf82aCtLrFpHK1euxNq1a9GzZ0+0adOmXH0bMWsdMfXTvn17LF68GIMHD67w/qFDh+Dn54fExETRYuro6CA1NbXcG6Br166hefPmKCgoECWOouuFNWvWDAEBAZWeoxcfH48pU6bg4sWLcsUpZWpqivj4eIW+cazOeKDzAZBKpcjMzISZmRmkUmmlnydmwcDIyEisWrUKW7ZsQbNmzURpszJ37tyBpaVlhQOF9PR0WFpaihLn5MmTwonSYjt58qTw79u3b2PRokWYOHGiMIA6deoUwsLC8M0334g2Lf9m4cOyJBKJaCc8M/nl5+ejsLBQ5pq8M3smJiZISUmp9O8jPT0dLVq0wLNnz+SKU5aFhQXWr1+PkSNHylzfvXs3FixYgPT0dFHitGzZEk2bNsWyZcsqrBf2ZjL2u9LX18fly5ff+r1zcHBAbm6uXHFKzZ8/H5qamuVmwhSh9ODitLQ0bNiwoVocXMw5OiqWlZWFX375BdOnTwfw+iThsqeYa2hoYNu2beWq176LstO2b07hKsq4ceOQl5eHFi1aQEtLSzhJupSYhadsbGxkTsku9eTJEzRq1Ei0wVuPHj0qjWNmZiZXnLKF4vz8/LB+/Xp88sknwrUhQ4bA2dkZW7duFW2go4x8Lfb+cnNz8dlnn2H37t0VHjEi7+91UVERHj16VOmL9aNHj1BUVCRXjDdNmTIFU6dORVpaGj766CNIJBLExcVh9erVmD9/vmhxrl+/joiICIUVQtTV1cXt27cr/d7dvn273HOePF69eoXAwEAcP34cbdu2LTf7un79elHinDx5Ev3790fnzp3x559/YsWKFTAzM8P58+cRGBiIiIgIUeIoGw90VGzbtm1ISUkRBjoHDhxA3759heTAU6dOYcOGDfjqq69U2Mt399133yntDJbKJiVfvHhRrlKuIuK8fPkSWlpaosU5deoUAgICyl1v27YtJk+eLFqcskq/Nj43R334+voiOjoaP/zwAzw8PLB582bcu3cPP/74oyjv7J2cnHDixAm0adOmwvvHjx8X/R384sWLYWBggHXr1uHzzz8HADRo0ABfffWVqEulHTp0wI0bNxQ20OnQoQO2b99eaa5PeHg42rdvL1q8CxcuoHXr1gBeL/OVJebf7KJFi7BixQr4+PjIJKi7urrC399ftDjKxgMdFYuIiMDSpUtlrq1Zs0ao0/Lbb7/Bz89P7oHOunXrMGLECFhZWcnVzn81ceJEhccoTaKVSCRYsmSJzOF9xcXFOH36tChn0JQmfUokEgQGBqJmzZoycf7880/Y29vLHaeUhYUFAgICypV1//HHH2FhYSFaHOD1E/K3336L69evAwCaNm2KhQsXYvz48aLGYe/u4MGDCA8Ph4uLCzw9PdG1a1c0adIEVlZW+PnnnzF27Fi52vf09ISPjw+cnJwwaNCgcrFXrFgh2kxBKYlEgnnz5mHevHl4/vw5AJTb8fW+zp8/L/xb0fXCFixYgN69e8PIyAgLFy4Udlc9ePAAa9asQWhoKI4dOyZXjLKUdQZatT24WNn72Zms2rVrCxWEiYjatGlDGRkZwuObN2/KXeKb6HX9HA0NDerVqxft3LmTXr58KXebb6OMmjMuLi7k4uJCEomEPvroI+Gxi4sL9enTh6ZOnSpK5WJra2uytrYmiURCFhYWwmNra2tq2rQp9enThxISEkT4il6LjIwkHR0dcnJyIi8vL/Ly8iInJyfS0dERKuWKYd26daSnp0e+vr60f/9+2rdvHy1cuJD09PSqdLn36kJfX59u375NRETm5uZ0+vRpIhKn7H+psWPHkkQiIQcHBxo6dCgNGzaM7O3tSSqV0pgxY0SJUZEHDx7Qn3/+SbGxsfTw4UNR2ixbE0wZ9cICAgJIW1ubpFKpUC1ZKpWStrY2/fDDD6LEUDZzc3P666+/iEi2AvPevXvJxsZGlV2TC8/oqFheXp7MwYrJycky93Nzc0XLqwkMDMS+ffswfvx4GBoaYty4cZg8ebJCkoVJCcs8pe9yJk2aBH9/f9G2Xb+pNJfF1dUVe/fuFe308MoMGDAA169fxw8//IArV66AiODm5gZvb29RZ3Q2bdqELVu2yBxI6ubmBicnJ3z11VeYN2+eaLHYu7OxscHt27dhZWUFR0dH7N69G+3bt8fBgwflytkr66effsKQIUOwY8cOXLt2DUQEOzs7LFu2DKNGjRIlRlk5OTmYOXMmfvnlF+F5TUNDA6NHj8bmzZvlShJWds7ZtGnTMGjQIOzevRs3btwAEaFp06YYMWKEKHWO3pSUlIRff/21wkOf9+7dK0oMZR1crHSqHWcxJycnCgsLq/R+cHAwOTo6yh1HIpEIMywPHjyg1atXC+/c2rVrR1u3bqWcnBy545QeBCeVSmnlypXCY39/f1q/fj0NHTqUWrZsKXccJj9tbe0KD3i9du0aaWtrq6BHrKz169eTv78/ERFFRUWRrq6ucK7Shg0bVNy79zNy5EiytbWlI0eOUHZ2NuXk5NCRI0fIzs6ORo4cKXf7kyZNEuV5TN388ssvpKmpSQMHDiQtLS0aNGgQ2dnZkZGRkdznnpWlrIOLlY23l6vY4sWLERYWhsTERNSrV0/m3v3799GhQwd4eHhgxYoVcsUpu8W8rNjYWAQFBQnZ9C9evJArTumW5Tt37qBhw4YyZyaV1pzx8/MTvfiUMt7tAMDdu3dx4MCBCuOImc+QlZWFoKAgXL58GRKJBI6OjvD09JR7W2xZzZo1g7u7O7744guZ6ytWrMCuXbuQmpoqWiz23+Xl5cnkm5VKT09HcnIyGjdujBYtWqigZ/LT19fH0aNHy9WfiY2NRb9+/eTejq2hoVHhzsiqrnnz5pg2bRpmzpwJAwMDpKSkoFGjRpg2bRrq16+PZcuWyR2DiJCeng5TU1NkZmbi77//RklJCVq1alX16/eoeKD1wcvJySEHBwcyMDCgGTNm0IYNG8jf35+mT59OBgYGZG9vL8o7lMpyZkplZ2fT1q1b5Y5TysXFhZ4+fSpae2+jrHc7J06cID09PXJycqIaNWpQy5YtydjYmIyMjMjV1VW0OElJSVSrVi0yNzenYcOG0dChQ6lhw4ZUu3ZtOnPmjGhxIiIiSENDg/r27Ut+fn60fPly6tu3L9WoUYP27t0rWhz2bjQ1NalLly60ePFiio6OFs5vqg4sLCzo/Pnz5a6npKSQubm53O2XnbmuTvT09ISzEGvXri18Dy9dukT16tUTJUZxcTFpamqKkteobnigowaePn1K06ZNIxMTEyFxzsTEhKZNm0ZPnjwRJUZ1fQIgInJ2dqbvv/+eiP4vga6kpISmTJlCS5YsES1Ou3btaPHixTJxnj9/TkOGDBE1+bBLly40ceJEKiwsFK4VFhbShAkTqGvXrqLFISJKTk6msWPHUuvWralVq1Y0duxY+vvvv0WNwd5NeHg4eXl5UePGjUkikZCuri65urqSn58fxcbG0qtXr1Tdxff2448/Uq9eveiff/4Rrt2/f5/69OlDAQEBcrcvkUhES25WJw0bNhQGN82bN6cdO3YQEVF8fDwZGhqKFsfR0ZFOnTolWnvqgpeu1AgR4dGjRwBeb+erajVN3uXMJDGXefT19XHx4kVYW1ujTp06iI6OhrOzMy5fviwU+RODgYEBzp07h8aNG8PExARxcXFwcnJCSkoK3NzccPv2bVHi6Orq4uzZs+W2rF+6dAlt27ZFXl6eKHGY+rt79y6ioqJw8uRJREdH486dO9DV1UXnzp1x9OhRVXfvP2nVqpXMc9n169fx8uVLodheeno6tLW1YWtrK/dZV1KpFEZGRv/63ClmwVJlcHd3R9u2beHj44OVK1fC398fbm5uOH78OFq3bi3a8rwyK9orE++6UiMSiaRKry2fPXv2P32e2AO4WrVqCTU5zM3NceHCBTg7OyMrK0vUQYG+vj5evnwJ4HWRs5s3bwoF1R4/fixaHENDQ6Snp5cb6GRkZIhWc6RUcXExfvvtNyEXyMHBAW5ubgo55oK9u4YNG8LDwwMeHh64fv06wsPDsXHjRpw4cULVXfvPhg4dqtR4y5YtEzWXrSLPnj3DTz/9hAkTJlR4enl4eHiF997VuXPn0LJlS3z//ffCOWCff/45NDU1ERcXh+HDh2Px4sVyxShLmRXtlYmfzT4g+fn5OHPmDGrVqgVHR0eZewUFBdi9e7dcWwiVVdTqTV27dsXx48fh7OyMUaNGYe7cuYiKisLx48fRs2dP0eJ07NgRf/31FxwdHTFw4EDMnz8fqamp2Lt3r6iHl44ePRpeXl5Yu3atTJn8hQsXyhwLIa8LFy7Azc0NmZmZsLOzA/C66qqpqSkOHDgAZ2dn0WKxd5eWlobo6GjExMQgJiYG2dnZ+Oijj/DZZ5/JHBkir2HDhlX45kMikUBHRwdNmjSBu7u78Dvyrt4siKpoY8aMUfgbxu+//x7nz5/H7Nmzy90zMjJCbGwscnJy8OWXX8oVp3Xr1mjVqhUmT54Md3d3AK9nrXx9feHr6ytX2xXZsGGD6G2qBRUvnTEluXr1KllZWQkFs7p37y6zTp6ZmSlaIS1le/LkCd27d4+IXifUrV69mgYPHkzz5s0TNSH65s2blJKSQkREubm5NH36dHJ2dqZhw4YJhd3E8PLlS5ozZ46wlbi0CNmnn34qamJqhw4daPDgwTLfo6dPn9KQIUOoY8eOosVh78bDw4MsLCzI2NiYBg4cSKtXr6aEhASFbe+dMGECGRkZkZWVFQ0fPpyGDRtG1tbWZGxsTKNGjSI7OzvS1tamuLg4uWMlJiZWWFwzISGBkpKS5G7/3zZdiKVFixZ04sSJSu+fOHFClDIa8fHxNHnyZDI0NCRdXV0aO3YsRUVFyd3uh4ZzdD4Qw4YNQ1FREUJCQpCVlQUfHx9cuHABMTExsLS0xIMHD9CgQQO5Dwp0dXWt8N2hkZER7OzsMHPmTNGPMaiu8vLycPPmTRARmjRpUuGWY3no6uoiOTm53HlGFy5cQLt27WQOl2XKI5VKYWlpiZkzZ6Jnz57lclzEtmjRIuTk5OD777+HVCoF8Prw37lz58LAwAArV66Et7c3Ll68iLi4OLlitW/fHr6+vhgxYoTM9b1792L16tU4ffq0XO1XVkZDbAYGBrh48eJbTy9v1qwZcnJyRImXn5+P3bt3IyQkBLGxsbC2toanpycmTJggd3HCnJwcYYnt3/qrqKKsisYDHRW7cOHCvyZ9rVq1CosWLZIrTt26dXHixAmZ5YiZM2fi0KFDiI6Ohr6+vigDncqq6WZlZeHMmTNIS0tDXFycKGdQVYSIEB0djfz8fHz00UcKrWKclpaG/Px8ODg4CC8QYsvIyIBEIlFIpdWWLVti/fr16NGjh8z1qKgozJ07l+voqMiVK1eE5aqTJ0+ioKAAXbp0Qffu3eHi4oLWrVuL+vtmamqKv/76C02bNpW5fu3aNXz00Ud4/PgxUlNT0bVrV2RlZckVq2bNmjh//rxwll+pW7duoXnz5kKunbozNjbGkSNHKl2yTkhIQL9+/eT+flXk5s2bCAkJQXh4OO7fv4/evXvj8OHD791e2dpDUqm0wkE1EUEikcj9+qAyKpxNYkTUoEEDoT5CRVatWkVaWlpyxzEwMKBLly6Vuz5r1ixq2LAh/fnnn0pZupoxYwb1799flLaePXtGHh4e1KxZM5o8eTJlZ2dT586dhS36ZmZmwlKTPF69ekVLliyhQYMG0YoVK6ioqIjGjBkjLCs5ODi89Wf4rgoLC+l///sfGRoaCjEMDQ3pyy+/FHVrcWRkJDk5OdGvv/5KGRkZlJGRQb/++is5OztTZGQkZWdnCx9MdS5evEg//PADjRw5kurVq0dGRkY0cOBA0do3Njam/fv3l7u+f/9+MjY2JqLX1bJL/y2PWrVqUXx8fLnrf/31lyjtK4uLiwt99tlnld739fUlFxcXhcV//vw5BQQEUK1ateR+3o6JiRFKWURHR1NMTEylH1UVD3RUbPTo0dS4ceMK15XXrFlDmpqatHv3brnjtGvXjsLDwyu8N3PmTDI2NlbKQCclJUW0AldeXl5ka2tLy5cvpw4dOlCnTp2oY8eOlJCQQImJieTi4kKDBg2SO46Pjw+ZmpqSl5cX2djY0JAhQ8jOzo527txJu3fvJmdnZ3J3dxfhK3pt2rRpZGZmRgEBAZSSkkIpKSkUEBBA9erVo2nTpokW580DD8seiFj2cVXN3apO7t+/T7/88gtNnTpVGACLZfbs2VSnTh1av349xcbGUlxcHK1fv57q1KlDc+bMISKibdu2UefOneWONXr0aOrevTtlZWUJ1549e0bdu3cX5QgIZYmIiKAaNWrQpk2bZHKnioqKaOPGjaSpqUm//vqr6HFjYmLIw8OD9PX1ydDQkCZPnixK3ZuKjoKpTnigo2KFhYXUr18/atGihcwf/9q1a6lGjRr0yy+/iBLn66+/futMyvTp00kikYgS623EemdI9Ho2rPRdxt27d0kikVB0dLRw//Tp01S3bl2541haWgqnhl+9epUkEgkdPnxYuB8TEyNKVddShoaGMu2XOnz4sKjFwd72zq26vJOrqh48eEC7du0ib29v4Uw6HR0d6tatGy1dulTUn0lRURGtWLGC6tWrJwx069WrRytXrhRexO/cuUMZGRlyx7p79y7Z2NiQkZERubi4kIuLCxkbG5OdnR2lp6fL3b4yffHFFySRSMjQ0JBatmxJrVq1Egahb5vteVfp6enk5+dHNjY2JJFIqHPnzhQcHEwvXrwQLYZEIqGGDRvS+PHjKTg4WNQZanXAOTpqID8/H71794ZEIsHx48cREBCAhQsXIiwsTNhSWF1s3rwZ4eHhcicdAkCNGjWQkZGB+vXrAwD09PSQmpqKxo0bAwAyMzNhbm4u97qypqYmbt++DXNzcwCvk3jPnz8vnP9y//59WFhYoKioSK44perWrYuYmBg4ODjIXL98+TK6desmFJVk1ZOjoyOuXr2KGjVqoF27dnBxcYGrqys6d+4MHR0dhcYuTUZVZNJpbm4ufv75Z6SkpEBXVxfNmzfHJ598Ak1NTYXFVJTExET8/PPPMqeXu7u7o3379qK037t3b0RHR8PU1BQeHh7w9PR8723+bxMbG4uTJ08iJiYGp06dQkFBASwtLdGjRw+4urrC1dVVeP6rinigoyays7PRvXt3FBYW4tq1awgJCcG4ceNU3a13duDAgQqvZ2dnIykpCUFBQQgNDcXIkSPljvXmDovSw+5KEx3F2kmmrDil/Pz8cOXKFYSEhEBbWxsA8PLlS3h5ecHW1lbuuiRPnz5FXl6eTILzxYsXsXbtWuTm5mLo0KHVboBdlXz++edwdXVFly5dRN9px6qWIUOGwMvLC4MGDZI5IFmRCgsLcerUKSEhPiEhAS9fvkSTJk1w9epVpfRBbFwwUMXKDgymT5+OuXPnYtiwYTA0NJS5N2TIEFV0751VVgXVwMAA9vb2og1ySgUGBqJmzZoAgKKiIoSGhqJOnToAIOoOjqNHjwrVVktKSvDHH3/gwoULACD6zoqzZ8/ijz/+QMOGDYVTqlNSUvDq1Sv07NkTw4cPFz73fUq/z5w5E/Xr1xeO4Xj48CG6du2KBg0aoHHjxpg4cSKKi4sxfvx4cb4g9k6++eYbpcZ78OABFixYgD/++AMPHz7Em+99FbHT5tKlS0hPT8erV69krleV57mKODs74/Dhw6KWz6jsjaMiaWpqolu3bmjXrh06deqEo0ePYtu2bbhx44bS+yIWntFRsf+yTbRKb+tTIGtr6/9UX+TWrVtyxVH2z2jSpEn/+XNDQkLeuf1GjRohJCQELi4uAIC1a9ciICAAV65cQY0aNbB27VpEREQgISHhndtmVU///v2Rnp6OWbNmoX79+uX+ptzc3ESLlZaWhmHDhiE1NRUSiUQYVJXGrMrPc2/O9FY1BQUFiI+PF6pxJyUloVGjRujevTu6deuG7t27V9nlKx7oMKZGiAjp6ekwNTVV2LKFrq4urly5AisrKwDAgAED4OTkhG+//RbA6/opnTp1wpMnTxQSn6kXAwMDxMbGKqy2VVmDBw+GhoYGtm3bBhsbGyQmJuLJkyeYP38+1q5di65duyq8D4pSlQc63bt3R1JSEho3biwMarp37466deuqumuiUEyVM8bYeyEi2Nra4t69ewqLYWhoKLPclpiYKFP4TCKRCIeXsurPwsKi3HKVopw6dQp+fn4wNTWFVCqFVCpFly5d8M0332DOnDlK6YOidO3atdwhmFVFfHw86tSpA1dXV/Ts2RM9evSoNoMcgAc6aqtHjx64c+eOqrvBlEwqlcLW1lahsynt27fHxo0bUVJSgoiICDx//lymOvK1a9f4mI4PyIYNG7Bo0SLcvn1b4bGKi4uFnLo6dergn3/+AQBYWVlV2UTXUocPHxZ2gFY1WVlZ2Lp1K/T09LB69WqYm5vD2dkZs2bNQkRERJXf6clLVypWWbLZ8OHD4e/vL7zgVOUkPfZuIiMjsWrVKmzZsuVfjwd5H+fOnUOvXr3w/PlzFBUV4YsvvsDy5cuF++PHj4e+vj4CAgJEj83+m7LnDx0+fFimdIGGhgYGDhwoWiwTExPk5eWhqKgIenp65bZ5P336VLRYXbt2xfz584Wdfc+ePcP//vc/bN26FWfOnBES/KuKJ0+eoHbt2gBeH9eybds25OfnY8iQIVV6Ge758+eIi4sT8nVSUlJga2tb5X4+pXigo2KlZ4u87cfAycgflrIvPFpaWuWmw8V44Xn06BHi4+NRr149dOjQQeZeZGQkHB0d0ahRI7njsHd36NAhLF68GGfPngXwOvcjNzdXuC+RSLBr165yB2O+r7CwsLfenzBhgihxgNe7F3NzczF8+HCkpaVh0KBBuHLlCmrXro1du3aVO3dNXaWmpmLw4MHIyMiAra0tdu7ciX79+iE3NxdSqRS5ubmIiIiodBequispKUFSUhKio6MRHR2NuLg4FBQUVNnXIR7oqFj//v2hoaGB4OBgmRN3NTU1kZKSAkdHRxX2Tj4lJSW4ceMGHj58iJKSEpl73bp1U0ofHj16BFNTU4XHKSoqQo0a4lRrUOYLD1M/Q4YMgZubG7y8vACUT3Jds2YNYmJi5DrIUZ08ffoUJiYmCj2hXWz9+/dHjRo18Nlnn+Gnn37CoUOH0KdPHwQGBgIAZs+ejTNnzlSZnYslJSVITk5GTEwMoqOj8ddffyE3Nxfm5uZCwUBXV1dhA0NVwwMdNfDdd99hw4YN2Lx5MwYNGgSg6g90EhIS4O7ujjt37pSbrVL0DBUR4ffff0dgYCAiIyMVmlh76dIlBAYG4ueff8aDBw8UFkcsGzdu/M+fW9WTQ6sqa2trREREoG3btgDKD3RSU1PRs2dPPHz48L1jlF0aK62GXBlFVkmuqurUqYOoqCg0b94cL168gKGhIRITE4Wf2ZUrV9CxY0eFnF6uCIaGhsjNzUX9+vXh4uIiVOMurTJf1XHBQDUwb9489OjRA+7u7jh48CC+++47VXdJbt7e3mjbti0iIyMrrM2hCGlpaQgODkZYWBhevHiBgQMHYufOnaLHefHiBXbu3ImgoCAkJSWhY8eOWLRokVxtKuuF583frUePHiEvLw/GxsYAXicl6unpwczMjAc6KpKZmSnkfQBAdHS0THJ4zZo1kZ2dLVcMExMT3L9/H2ZmZjA2Nq7w75OIRHtT4unp+Z8+Lzg4WO5YyvD06VPUq1cPwOufh76+PmrVqiXcNzExEbVgqaJ9++23cHV1RdOmTVXdFYXggY6aaNGiBZKTkzFv3jy0bNlSads9FeX69euIiIhAkyZNFBqnoKAAERERCAwMREJCAnr37o379+/j3LlzoifyxsXFITAwEHv27EGjRo1w6dIlnDx5Ep07d5a7bWW98JQtnrhjxw788MMPCAoKEs7PuXr1KqZMmYJp06a9dwwmn1q1auHmzZtCjlTpLEGp69evy7yovo+oqCihjejoaLna+i9CQ0NhZWWFVq1aVfnntlJv/o1WpaW3N1X3v3ce6KgRXV1dBAQE4MCBA4iOjhaOMqiKOnTogBs3bih0oDNjxgzs3LkTdnZ2GDduHPbs2YPatWtDU1PzP1Uz/q/WrFmD4OBgvHjxAp988gni4uLQokULaGpqwsTERJQYyn7hAYDFixcjIiJC5pBAOzs7fPfddxgxYgTGjh2rlH4wWd26dcPGjRvRq1evCu9v3LhR7hy37t27V/hvRfH29sbOnTuRlpYGT09PjBs3Tu7BmqpNnDhROIuuoKAA3t7e0NfXBwCuQ6VmOEeHKcRvv/2G//3vf1i4cCGcnZ3LbVlt3ry53DFKkwEXLVoEAwMD4brY+U2lcfz8/GQO1lNFHtW5c+dEq2Crp6eHmJiYcictJyYmwsXFBXl5eaLEYe/m7Nmz6NSpEwYPHgxfX19hOeHq1atYvXo1IiMjER8fj9atW4sWMysrC4mJiRVuHPDw8BAlxsuXL7F3714EBwcjPj4eAwcOhJeXF/r06VPlZkP+6zEt73NEC1MAYkwBJBJJuQ+pVCr8Vww///wz9erVi/T19WnUqFF08OBBKiwspBo1atDFixdFiUFEtHLlSrK1tSULCwvy9fWl1NRUIiLR41QmKyuLNm/eTK1atRLte0dENGjQIGrevDklJSVRSUkJERElJSVRy5YtafDgwaLFYe9u3759VKdOHZJKpTIftWvXpt9++03UWAcOHCADAwOSSqVkZGRExsbGwoeJiYmosUrdvn2bvvrqK7KxsSELCwt6/vy5QuIwRkTEMzpMIf6tqrOY2xRv376NkJAQhIaGIi8vD0+fPhW1zkipkydPIjg4GHv27EHjxo1x8eJF0XJ0KhIVFYXg4GDs3bsXVlZW+Pjjj/Hxxx+jVatWorT/6NEjTJgwAUeOHBFm3IqKitC3b1+EhobKlDtgypeXl4ejR4/i+vXrAABbW1v06dNHWB4RS9OmTTFgwAB8/fXXCjtf7U3p6ekIDQ1FaGgoXr16hStXrggVk6uyO3fuIDc3F/b29qIunzM5qXqkxZhYSkpK6Pfff6eRI0eStrY2mZub0+zZs0WPk5OTQ1u2bKH27duThoYGderUidatWydK2xkZGbR8+XJq1KgRmZmZ0axZsxQ+c3T16lXav38/7du3j65evaqwOEwc6enpNGnSJNHa09PTo5s3b4rWXmUKCgpox44d1KtXL9LR0aERI0ZQZGQkFRcXKzy22EJDQ+m7776TuTZlyhRh5s3BwYHS09NV0zlWDs/oMNEcOHAA/fv3h6amZqVHW5RS9JEWT58+RXh4OEJCQpCSkqKwOKmpqQgKCsKOHTvkqmsCvD5FPC4uDoMGDcLYsWPRr18/aGhoVPmaSkxcKSkpaN26tWi1qIYPH44xY8Zg1KhRorRXkdKNA5aWlpg0aRLGjRsns4W+qunUqROmTp0q5OocOXIEgwcPRmhoKBwcHDBr1iw4OjoKBQSZavFAR42oQyVheUilUmRmZsLMzOyt07bKPNJCzOTdtxGjAnONGjUwZ84cTJ8+Hba2tsJ1RQ10iouLERoaij/++KPC37moqChR4zFxiD3QCQoKgp+fHyZNmlThxgEx3pRIpVJYWlqiVatWb0083rt3r9yxlKF27dqIiYmBs7MzAGD69Ol4+PAh9uzZAwCIiYnBpEmTZMo5MNXh7eVqQpWVhMVS9oXyzRdNZcrOzsbPP/+MwMBApKSkKOx7R/+/AnNQUBAOHTok95bS2NhYBAcHo23btrC3t8f48eMxevRokXpb3ty5cxEaGoqBAweiWbNmVW7nCxPHlClTAAB+fn7l7on13OPh4VGtfr/y8/NlCnfGx8fLFEW0sbFBZmamKrrGKsADHTWhikrC1U1FybtBQUGix1FUBeZOnTqhU6dO8Pf3x86dOxEcHAwfHx+UlJTg+PHjsLCwkNlGL6+dO3di9+7dGDBggGhtsqpHGW9KQkNDFR5DmaysrHDmzBlYWVnh8ePHuHjxIrp06SLcz8zMhJGRkQp7yMrigY6aUFYlYVWxsbHB0aNHZZZkxHD37l2EhoYiODgYubm5GDVqFAoLC7Fnzx5Rl3qUWYFZT08Pnp6e8PT0xNWrVxEUFIRVq1Zh0aJF6N2797/mP/1XWlpa1fb3rSobPnz4W++LfX5SeHg4Ro8eLRS/K/Xq1Svs3LlTtDo61YmHhwdmzpyJixcvIioqCvb29mjTpo1wPz4+XvTnBfb+OEdHTfTo0QO+vr7o16+fqrsil8oOjfTx8YGvr69wPowY5ygpK3n3zQrMY8aMESowKytJuLi4GAcPHkRwcLBoA51169YhLS0N33//Pc8gqhFlF6PT0NAQjh8p68mTJzAzM6sSy+bKVlJSgqVLl+LQoUOoV68e1q9fDwcHB+H+yJEj0a9fP+EEeqZaPNBRE8qoJKwMUqkU5ubmqFFDdrLwzp07aNCgATQ1NSGRSJCWliZ3LGUl7yqrArOyDRs2DNHR0ahVqxacnJzK/c5VlcRQJh+pVIoHDx6US6ZPSUmBq6srnj59qqKeMSYOXrpSEx9//DEA2VN+JRKJqCcIK8OUKVOQmJiIHTt2yLzD0dTUxLFjx0QdFCgrebd0m3r9+vUxcOBAjB8/vsrPvAGAsbExhg0bpupuMBUp3QElkUjQs2dPmTcnxcXFuHXrVrX4PWeMZ3TUhDIrCSvavn37MGfOHPj6+mLWrFkAFDv7kZeXJyTvJiYmori4GOvXr4enp6eoybvKqsDMmDIsW7ZM+O/8+fNlKhNraWnB2toaH3/8MbS0tFTVRbUllUorXO41NDSEnZ0dfH19/zXXiikPD3SYQty7dw8eHh7Q0tJCSEgILCwslLLMU5q8u337dmRlZYmavFuKiHD06FEhX6ZOnToYPnx4pflJjKmzsLAwjB49Gjo6OqruSpWxf//+Cq+XHo4aEhKCsLAwjBw5Usk9YxXhgY4KqVMlYUUgIqxatQobN27Eo0ePcP78eaXlsygiebciyqrArAiNGjV6axKyGHlUrOp49epVhYUjLS0tVdSjqmvz5s0IDw/H6dOnVd0VBh7oqJQ6VhJWhDNnziAuLg4eHh4wMTFRdXcUQuwKzNu3b0dAQABu3bqFU6dOwcrKChs2bECjRo3g5uYmSgx/f3+Zx4WFhTh79iyOHDmChQsXYtGiRaLEYert+vXr8PT0RHx8vMz1qpYfqE6uX7+O9u3b49mzZ6ruCgMnI6uUulQSVrQ2bdrI1JioLhRVgXnLli1YsmQJPv30U6xcuVJo19jYGBs2bBBtoDN37twKr2/evBnJycmixGDqb+LEiahRowYOHTrExUpFkp+fz0uBaoRndJjoLl++jISEBHTq1An29va4cuUK/P398fLlS4wbNw49evRQdRflUlEF5o8//hitWrUSpX1HR0d8/fXXGDp0KAwMDJCSkgIbGxtcuHABLi4uePz4sShxKpOWloaWLVsiJydHoXGYetDX18eZM2dgb2+v6q5UG7Nnz8bNmzdx+PBhVXeFgWd0VG7dunUYMWJEldpV9TZHjhyBm5sbatasiby8PPz222/w8PBAixYtQETo27cvjh49WuUGO8qqwAwAt27dqnDQpK2tjdzcXFFjVSQiIgK1atVSeBymHhwdHRU+eK5ufHx8KryenZ2N5ORk3Lx5E7GxsUruFasMz+iomFQqhVQqhaurKyZPnoxhw4ZV6e2cH330EXr06IEVK1Zg586dmDFjBqZPn46VK1cCAL788kskJSXh2LFjKu7pf6esCsylHB0d8c0338DNzU1mRmfjxo0ICwvDmTNnRInz5knSRITMzEw8evQIP/zwA6ZOnSpKHKZ+ys7WJScn43//+x++/vrrCouVlj28kr3m6upa4XVDQ0PY29tjxowZ1ebNa3XAAx0Vk0qlCA4Oxr59+3D48GEYGhpi3LhxmDx5cpU8K8XIyAhnzpxBkyZNUFJSAm1tbZw+fRqtW7cGAFy4cAG9evWqUif7KqsCc6mQkBAsXrwY69atg5eXFwIDA3Hz5k188803CAwMxJgxY0SJU1pHpZRUKoWpqSlcXFx4GaOae7MOTGnicVmcjMyqC166UgMDBgzAxIkT8fDhQ4SGhiIkJASbNm1CmzZtMGXKFIwZM0bUwnfKIpVKoaOjA2NjY+GagYEBsrOzVdep96CsCsylJk2ahKKiIvj6+iIvLw/u7u4wNzeHv7+/aIMcAFi6dKlobbGqJTo6WtVdYExpeEZHxcpuMS8rNjYWQUFBiIiIAAC8ePFCFd17Zy1atMDq1auF0vEXLlyAvb29UF6+dJt5VazRoqwKzGU9fvwYJSUl5X4/xFJcXIx9+/bh8uXLkEgkcHR0xJAhQ6ChoaGQeIwxpmw80FGxyk4OLpWTk4Ndu3ZhypQpSu7Z+wkICICFhQUGDhxY4f0vv/wSDx48QGBgoJJ7Ji5lVGBWtBs3bmDAgAG4d+8e7OzsQES4du0aLCwsEBkZicaNG6u6i0wJzp8/X+F1iUQCHR0dWFpaQltbW8m9Ykw8PNBRscpmdFjVIFYF5jcTg9/m77//fu84ZQ0YMABEhJ9//lnYZfXkyROMGzcOUqkUkZGRosRh6q2yc5tKaWpqYvTo0fjxxx+5Ngyrknigw5gaeDMx+G3Eyq3R19dHQkICnJ2dZa6npKSgc+fOVWa5lMln//79+Oyzz7Bw4UK0b98eRISkpCSsW7cOS5cuRVFRERYtWoTRo0dj7dq1qu4uY++Mk5EZUwOqSAzW1tbG8+fPy11/8eJFlS5xwN7NypUr4e/vj759+wrXmjdvjoYNG2Lx4sVITEyEvr4+5s+fzwMdViVVfsASU5r8/HzExcXh0qVL5e4VFBQgPDxcBb1iqpacnIzt27fjp59+Eq12TlmDBg3C1KlTcfr0aRARiAgJCQnw9vaukofIsveTmppaYc0XKysrpKamAgBatmyJ+/fvK7trjImCBzoqdu3aNTg4OKBbt25wdnaGi4uLzBNKdnY2Jk2apMIeMmW7e/cuunbtivbt22Pu3LmYM2cO2rVrhy5duiAjI0O0OBs3bkTjxo3RqVMn6OjoQEdHB507d0aTJk3KHfjJqi97e3usWrUKr169Eq4VFhZi1apVQj2le/fuoW7duqrqImNy4RwdFRs2bBiKiooQEhKCrKws+Pj44MKFC4iJiYGlpSUePHiABg0acNGuD0ifPn2Qk5ODsLAw2NnZAXi9y8vT0xP6+vqiV5W+ceMGLl++DCKCo6MjmjRpImr7TL3Fx8djyJAhkEqlaN68OSQSCc6fP4/i4mIcOnQIHTt2xPbt25GZmYmFCxequruMvTMe6KhY3bp1ceLECZmE0JkzZ+LQoUOIjo6Gvr4+D3Q+MLq6uoiPjy933tXff/+Nzp07Iz8/XyFxi4qKUFBQgJo1ayqkfaa+Xrx4gZ9++gnXrl0DEcHe3h7u7u5VslApY2/iZGQVy8/PF4rpldq8eTOkUim6d++OHTt2qKhnTFUsLS1RWFhY7npRURHMzc3lbv/w4cN48uQJxo8fL1xbuXIlli9fjqKiIvTo0QO7du2CiYmJ3LFY1VCzZk14e3uruhuMKQQPdFTM3t4eycnJcHBwkLm+adMmEBEnhX6A1qxZg9mzZ2Pz5s1o06YNJBIJkpOTMXfuXFF2vaxduxYff/yx8Dg+Ph5LliyBn58fHBwc8OWXX2L58uVYv3693LGYejpw4AD69+8PTU3Nf63/xM9BrKrjpSsV++abbxAbG4vDhw9XeH/GjBkICAhASUmJknvGVMXExAR5eXkoKioSZvtK/62vry/zuU+fPn3n9s3MzHD06FFhaczHxweXLl3CkSNHALye8Zk7dy6uX78u51fC1FXZQqVSaeV7UvhQT1Yd8ECHMTUTFhb2nz93woQJ79y+rq4url69CktLSwBA+/btMWLECPj6+gIA7ty5A0dHR+Tm5r5z24wxpm546YoxNfM+g5d30aBBA1y+fBmWlpZ48eIFUlJS8N133wn3nzx5Aj09PYX2gam/jIwMLF26FMHBwaruCmNy4YEOY2qouLgYv/32m3CquIODA9zc3Molrr+PESNG4NNPP8UXX3yBw4cPo169eujYsaNwPzk5WdjWzj5cT58+RVhYGA90WJXHAx3G1MyFCxfg5uaGzMxMYcBx7do1mJqa4sCBA+XOpnpXS5cuxT///IM5c+agXr16+Omnn6ChoSHc/+WXXzB48GC5YjDGmLrgHB3G1EzHjh1hZmaGsLAwYYv3s2fPMHHiRDx8+BCnTp1ScQ/ZhyAlJQWtW7fmZGRW5fGMDmNqJiUlBcnJyTJ1bExMTLBy5Uq0a9dOhT1jjLGqhwc6jKkZOzs7PHjwAE5OTjLXHz58yMczMNEMHz78rfezsrKU0xHGFIwHOoypma+//hpz5szBV199JSQJJyQkwM/PD6tXr0ZOTo7wuYaGhqrqJqvijIyM/vW+h4eHknrDmOJwjg5jaqZsATeJRAIAKP0zLfuYi7kxxti/4xkdxtRMdHS00mMWFBRAR0dH6XEZY0zReEaHsSrk3LlzaNmypShtlZSUYOXKlQgICMCDBw9w7do12NjYYPHixbC2toaXl5cocRhjTJUqP+SEMaYWsrOz8cMPP6B169Zo06aNaO2uWLECoaGhWLNmDbS0tITrzs7OCAwMFC0OY4ypEg90GFNTUVFRGDduHOrXr49NmzZhwIABSE5OFq398PBwbN26FWPHjpUpGNi8eXNcuXJFtDiMMaZKnKPDmBq5e/cuQkNDERwcjNzcXIwaNQqFhYXYs2cPHB0dRY117969Crerl5SUoLCwUNRYjDGmKjyjw5iaGDBgABwdHXHp0iVs2rQJ//zzDzZt2qSweE5OToiNjS13/ddff0WrVq0UFpcxxpSJZ3QYUxPHjh3DnDlzMH36dNja2io83tKlSzF+/Hjcu3cPJSUl2Lt3L65evYrw8HAcOnRI4fEZY0wZeEaHMTURGxuL58+fo23btujQoQO+//57PHr0SGHxBg8ejF27duHw4cOQSCRYsmQJLl++jIMHD6J3794Ki8sYY8rE28sZUzN5eXnYuXMngoODkZiYiOLiYqxfvx6enp4wMDBQdfcYY6xK4YEOY2rs6tWrCAoKwvbt25GVlYXevXvjwIEDorSdkZEBiUSChg0bAgASExOxY8cOODo6YurUqaLEYIwxVeOlK8bUmJ2dHdasWYO7d+/il19+EbVtd3d3oQpzZmYmevXqhcTERHzxxRfw8/MTNRZjjKkKz+gw9oEyMTFBQkIC7OzssHHjRuzatQt//fUXjh07Bm9vb6Slpam6i4wxJjee0WHsA1VYWAhtbW0AwIkTJzBkyBAAgL29Pe7fv6/KrjHGmGh4oMPYB8rJyQkBAQGIjY3F8ePH0a9fPwDAP//8g9q1a6u4d4wxJg4e6DD2gVq9ejV+/PFHuLi44JNPPkGLFi0AAAcOHED79u1V3DvGGBMH5+gw9gErLi5GTk4OTExMhGu3b9+Gnp4ezMzMVNgzxhgTBw90GPvAPXr0CFevXoVEIkHTpk1hamqq6i4xxphoeOmKsQ9Ubm4uPD09Ub9+fXTr1g1du3ZFgwYN4OXlhby8PFV3jzHGRMEDHcY+UD4+Pjh58iQOHjyIrKwsZGVlYf/+/Th58iTmz5+v6u4xxpgoeOmKsQ9UnTp1EBERARcXF5nr0dHRGDVqlELP2WKMMWXhGR3GPlB5eXmoW7duuetmZma8dMUYqzZ4RoexD1TPnj1Ru3ZthIeHQ0dHBwCQn5+PCRMm4OnTpzhx4oSKe8gYY/LjgQ5jH6gLFy6gX79+KCgoQIsWLSCRSHDu3Dno6Ojg6NGjcHJyUnUXGWNMbjzQYewDlp+fj59++glXrlwBEcHR0RFjx46Frq6uqrvGGGOi4IEOY4wxxqqtGqruAGNMNZ48eSKcaZWRkYFt27YhPz8fgwcPRrdu3VTcO8YYEwfP6DD2gUlNTcXgwYORkZEBW1tb7Ny5E/369UNubi6kUilyc3MRERGBoUOHqrqrjDEmN95eztgHxtfXF87Ozjh58iRcXFwwaNAgDBgwANnZ2Xj27BmmTZuGVatWqbqbjDEmCp7RYewDU6dOHURFRaF58+Z48eIFDA0NkZiYiLZt2wIArly5go4dOyIrK0u1HWWMMRHwjA5jH5inT5+iXr16AICaNWtCX18ftWrVEu6bmJjg+fPnquoeY4yJigc6jH2AJBLJWx8zxlh1wbuuGPsATZw4Edra2gCAgoICeHt7Q19fHwDw8uVLVXaNMcZExTk6jH1gJk2a9J8+LyQkRME9YYwxxeOBDmOMMcaqLc7RYYwxxli1xQMdxhhjjFVbPNBhjDHGWLXFAx3GGGOMVVs80GGMVWtfffUVWrZsqepuMMZUhAc6jDGVmDhxIiQSCSQSCTQ1NWFjY4MFCxYgNzdX1V17q5iYGEgkEj4ig7EqggsGMsZUpl+/fggJCUFhYSFiY2MxefJk5ObmYsuWLTKfV1hYCE1NTRX1kjFWlfGMDmNMZbS1tVGvXj1YWFjA3d0dY8eOxb59+4TlpuDgYNjY2EBbWxtEhPT0dLi5uaFmzZowNDTEqFGj8ODBA5k2V61ahbp168LAwABeXl4oKCiQue/i4oJPP/1U5trQoUMxceJE4fHLly/h6+sLCwsLaGtrw9bWFkFBQbh9+zZcXV0BvD4TTCKRyPx/jDH1wzM6jDG1oauri8LCQgDAjRs3sHv3buzZswcaGhoAXg9I9PX1cfLkSRQVFWHGjBkYPXo0YmJiAAC7d+/G0qVLsXnzZnTt2hXbt2/Hxo0bYWNj80798PDwwKlTp7Bx40a0aNECt27dwuPHj2FhYYE9e/bg448/xtWrV2FoaAhdXV1RvweMMXHxQIcxphYSExOxY8cO9OzZEwDw6tUrbN++HaampgCA48eP4/z587h16xYsLCwAANu3b4eTkxOSkpLQrl07bNiwAZ6enpg8eTIAYMWKFThx4kS5WZ23uXbtGnbv3o3jx4+jV69eACAzUCo96d3MzAzGxsZyf92MMcXipSvGmMocOnQINWvWhI6ODjp16oRu3bph06ZNAAArKythkAMAly9fhoWFhTDIAQBHR0cYGxvj8uXLwud06tRJJsabj//NuXPnoKGhge7du7/vl8UYUyM8o8MYUxlXV1ds2bIFmpqaaNCggUzCcelp6qWICBKJpFwblV2vjFQqxZtH/JUulwHgpSjGqhme0WGMqYy+vj6aNGkCKyurf91V5ejoiPT0dGRkZAjXLl26hOzsbDg4OAAAHBwckJCQIPP/vfnY1NQU9+/fFx4XFxfjwoULwmNnZ2eUlJTg5MmTFfZDS0tL+P8YY+qPBzqMsSqhV69eaN68OcaOHYu///4biYmJ8PDwQPfu3dG2bVsAwNy5cxEcHIzg4GBcu3YNS5cuxcWLF2Xa6dGjByIjIxEZGYkrV65gxowZMjVxrK2tMWHCBHh6emLfvn24desWYmJisHv3bgCvl9QkEgkOHTqER48e4cWLF0r7HjDG3h0PdBhjVYJEIsG+fftgYmKCbt26oVevXrCxscGuXbuEzxk9ejSWLFmCzz77DG3atMGdO3cwffp0mXY8PT0xYcIEYZDUqFEjYct4qS1btmDEiBGYMWMG7O3tMWXKFKGQobm5OZYtW4ZFixahbt26mDVrluK/eMbYe5PQm4vVjDHGGGPVBM/oMMYYY6za4oEOY4wxxqotHugwxhhjrNrigQ5jjDHGqi0e6DDGGGOs2uKBDmOMMcaqLR7oMMYYY6za4oEOY4wxxqotHugwxhhjrNrigQ5jjDHGqi0e6DDGGGOs2uKBDmOMMcaqrf8HpsarqN5kEM0AAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sales.groupby('Product')['Quantity_ordered'].sum().plot(kind='bar')\n", + "sales.groupby('Product')['Price_each'].first().plot(kind='bar')\n", + "\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "1fe074e5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ProductQuantity_orderedPrice_each
15USB-C Charging Cable2185911.95
12Lightning Charging Cable2161014.95
5AAA Batteries (4-pack)206122.99
4AA Batteries (4-pack)205583.84
17Wired Headphones1884911.99
6Apple Airpods Headphones15525150.00
7Bose SoundSport Headphones1329899.99
227in FHD Monitor7498149.99
18iPhone6840700.00
127in 4K Gaming Monitor6225389.99
334in Ultrawide Monitor6174379.99
9Google Phone5522600.00
8Flatscreen TV4794300.00
13Macbook Pro Laptop47211700.00
14ThinkPad Laptop4126999.99
020in Monitor4098109.99
16Vareebadd Phone2065400.00
11LG Washing Machine666600.00
10LG Dryer646600.00
\n", + "
" + ], + "text/plain": [ + " Product Quantity_ordered Price_each\n", + "15 USB-C Charging Cable 21859 11.95\n", + "12 Lightning Charging Cable 21610 14.95\n", + "5 AAA Batteries (4-pack) 20612 2.99\n", + "4 AA Batteries (4-pack) 20558 3.84\n", + "17 Wired Headphones 18849 11.99\n", + "6 Apple Airpods Headphones 15525 150.00\n", + "7 Bose SoundSport Headphones 13298 99.99\n", + "2 27in FHD Monitor 7498 149.99\n", + "18 iPhone 6840 700.00\n", + "1 27in 4K Gaming Monitor 6225 389.99\n", + "3 34in Ultrawide Monitor 6174 379.99\n", + "9 Google Phone 5522 600.00\n", + "8 Flatscreen TV 4794 300.00\n", + "13 Macbook Pro Laptop 4721 1700.00\n", + "14 ThinkPad Laptop 4126 999.99\n", + "0 20in Monitor 4098 109.99\n", + "16 Vareebadd Phone 2065 400.00\n", + "11 LG Washing Machine 666 600.00\n", + "10 LG Dryer 646 600.00" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "products=sales.groupby('Product',as_index=False)[['Quantity_ordered','Price_each']].agg({\n", + " 'Quantity_ordered':'count',\n", + " 'Price_each':'mean'\n", + "}).sort_values(by='Quantity_ordered',ascending=False)\n", + "\n", + "products" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "0d29d732", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABEAAAANYCAYAAADE3Zg3AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdeXiU5dn+8XOy70MWkknYZQk7BlAIqODGoogWW7XYKFXRagsiUFtra+mm/lQUBWuptW6g+LZWW6VFQAtK2ZcgawAJq5mEhOz7Mr8/4jwmrJlkZp5J8v0cxxwvM3PP81zjazGcXPd1WxwOh0MAAAAAAABtmJ/ZBQAAAAAAAHgaAQgAAAAAAGjzCEAAAAAAAECbRwACAAAAAADaPAIQAAAAAADQ5hGAAAAAAACANo8ABAAAAAAAtHkEIAAAAAAAoM0LMLuAtqSmpkY7duxQQkKC/PzIlgAAAAAAnlVXV6fs7GylpKQoIIA/4l8I/3TcaMeOHbr88svNLgMAAAAA0M5s3rxZl112mdll+DQCEDdKSEiQVP8vXmJiosnVAAAAAADauqysLF1++eXGn0dxfgQgbuTc9pKYmKjOnTubXA0AAAAAoL1gDMPF8U8IAAAAAAC0eQQgAAAAAACgzSMAAQAAAAAAbR4BCAAAAAAAaPMIQAAAAAAAaCc+//xz3XTTTUpKSpLFYtGHH37Y6H2LxXLOx7PPPmusGTt27Fnv33HHHY2uk5+fr7S0NFmtVlmtVqWlpamgoMAL3/D8CEAAAAAAAGgnSktLNWTIEC1atOic72dlZTV6/PWvf5XFYtGtt97aaN306dMbrVu8eHGj96dOnar09HStWLFCK1asUHp6utLS0jz2vZqCY3ABAAAAAGgnJk6cqIkTJ573fZvN1uj5P//5T1199dW65JJLGr0eFhZ21lqnffv2acWKFdq4caNGjBghSXr11VeVmpqqjIwMJScnt/BbNA8dIAAAAAAAtHLFxcUqKioyHpWVlS2+ZnZ2tpYvX6577733rPeWLl2quLg4DRgwQHPnzlVxcbHx3oYNG2S1Wo3wQ5JGjhwpq9Wq9evXt7iu5qIDBAAAAACAVq5///6Nnv/617/WvHnzWnTNN998U5GRkZoyZUqj1++880716NFDNptNu3fv1mOPPaadO3dq1apVkiS73a74+PizrhcfHy+73d6imlqCAAQAAAAAgFZu79696tSpk/E8ODi4xdf861//qjvvvFMhISGNXp8+fbrx64EDB6p3794aPny4tm/frqFDh0qqH6Z6JofDcc7XvYUtMAAAAAAAtHKRkZGKiooyHi0NQL744gtlZGTovvvuu+jaoUOHKjAwUAcPHpRUP0ckOzv7rHWnTp1SQkJCi+pqCQIQAAAAAADQyGuvvaZhw4ZpyJAhF127Z88eVVdXKzExUZKUmpqqwsJCbd682VizadMmFRYWatSoUR6r+WLYAgMAAAAAQDtRUlKiQ4cOGc8zMzOVnp6umJgYde3aVZJUVFSkv/3tb5o/f/5Zn//qq6+0dOlS3XDDDYqLi9PevXs1Z84cpaSkaPTo0ZKkfv36acKECZo+fbpxPO7999+vSZMmmXYCjEQHCAAAAAAA7cbWrVuVkpKilJQUSdLs2bOVkpKiJ554wlizbNkyORwOff/73z/r80FBQfr00081fvx4JScna+bMmRo3bpxWr14tf39/Y93SpUs1aNAgjRs3TuPGjdPgwYP19ttve/4LXoDF4XA4TK2gDTlx4oS6dOmi48ePq3PnzmaXAwAAAABo4/hzaNPRAQIAAAAAANo8AhAAAAAAANDmEYAAAAAAAIA2jwAEAAAAAAC0eQQgAAAAAACgzSMAAQAAAAAAbR4BCAAAAAAAaPMIQAAAAAAAQJtHAAIAAAC4UVFlkdklAADOgQAEAAAAcJO/7fmbrE9b9cqWV8wuBQBwBgIQAAAAwE2+OPaFJOmjAx+ZXAkA4EwBZhcAc6yxrDG7hEbGOsaaXQIAAECLZZVkSZK2ZW2Tw+GQxWIxuSIAgBMdIAAAAICbZBXXByA5pTlGGAIA8A0EIAAAAICbNAw9tmdtN7ESAMCZCEAAAAAAN3A4HEYHiEQAAgC+hgAEAAAAcIOiyiKV15Qbz3fYd5hYDQDgTAQgAAAAgBucOfODDhAA8C0EIAAAAIAbOLe/JEUmSZKOFR5TblmumSUBABrgGFy0GhzdCwAAfJmzA6RPbB+FBYbp0OlD2pG1Q9f3vN7kygAAEh0gAAAAgFs4O0ASIxI1NHGoJLbBAIAvIQABAAAA3MDZAZIYkaihtm8CEDsBCAD4CrbAAAAAAG5gL7FLkhIjEzUkYYgkOkAAwJfQAQIAAAC4QcMOkJTEFEnSodOHVFRZZGZZAIBvEIAAAAAAbmDMAIlMVFxYnLpEdZEkpdvTTawKAOBEAAIAAAC4QcMOEEkMQgUAH0MAAgAAALRQeXW5CioKJNV3gEgEIADgawhAAAAAgBZyDkANCQiRNdgqiQAEAHwNAQgAAADQQg23v1gsFknfBiD7cveprLrMtNoAAPUIQAAAAIAWajgA1SkxIlEJ4Qmqc9RpV/Yus0oDAHyDAAQAAABooTMHoEqSxWIxjsNlGwwAmI8ABAAAAGghZweILcLW6PWhNuaAAICvIAABAAAAWuhcHSBSg0GodgIQADAbAQgAAADQQkYAEnnuAGRX9i5V1VZ5vS4AwLcIQAAAAIAWMoagntEB0r1Dd3UI6aDqumrtydljRmkAgG8QgAAAAAAtZC+xSzq7A8RisRhdIDvsO7xeFwDgWwQgAAAAQAvU1NUopzRH0tkdIJKUYuMkGADwBQQgAAAAQAvklObIIYf8Lf7qGN7xrPeNQagEIABgKgIQAAAAoAWc8z8SIhLkZzn7x2tnAJJuT1dtXa1XawMAfIsABAAAAGiB8x2B69Q7prfCA8NVXlOujLwMb5YGAGiAAAQAAABoAeMEmMhzByD+fv661HapJLbBAICZCEAAAACAFrhYB4j07TaYHVmcBAMAZiEAAQAAAFrA6AC5QABinARjpwMEAMxCAAIAAAC0gLMDxBZhO++ahifB1DnqvFIXAKAxAhAAAACgBYwtMOeZASJJ/Tv2V5B/kIoqi5SZn+mt0gAADRCAAAAAAC3QlC0wgf6BGpwwWBKDUAHALAFmFwC0ZWssa8wuoZGxjrFmlwAAQJvicDhkL7FLunAHiCQNtQ3V1q+3anvWdn1vwPe8UR4AoAECEACNENoAANB0p8tPq7quWtKFZ4BIDeaAMAgVAEzBFhgAAACgmZzzP2JDYxXkH3TBtQ2PwnU4HB6vDQDQGAEIAAAA0EzG/I+LbH+RpEEJg+Rv8depslM6WXzS06UBAM5AAAIAAAA0k3ECzAUGoDqFBISof8f+khiECgBmIAABAAAAmsmVDhCpwRwQAhAA8DoCEAAAAKCZXOkAkQhAAMBMBCAAAABAMxGAAEDrQQACAAAANJOrW2CGJAyRRRadLD6pnNIcT5YGADgDAQgAAADQTM4OEFuErUnrI4Mj1Tu2t6T643ABAN5DAAIAAAA0k9EB0sQtMBLbYADALAQgAAAAQDMUVxartLpUUtO3wEjSUNs3AYidAAQAvMnUAOSpp57SZZddpsjISMXHx+uWW25RRkZGozUOh0Pz5s1TUlKSQkNDNXbsWO3Zs6fRmsrKSs2YMUNxcXEKDw/X5MmTdeLEiUZr8vPzlZaWJqvVKqvVqrS0NBUUFDRac+zYMd10000KDw9XXFycZs6cqaqqKo98dwAAALRuzu0vEUERigiKaPLn6AABAHOYGoCsXbtWP/7xj7Vx40atWrVKNTU1GjdunEpLS401zzzzjJ5//nktWrRIW7Zskc1m0/XXX6/i4mJjzaxZs/TBBx9o2bJlWrdunUpKSjRp0iTV1tYaa6ZOnar09HStWLFCK1asUHp6utLS0oz3a2trdeONN6q0tFTr1q3TsmXL9P7772vOnDne+YcBAACAVqU5218kKSUxRZJ0OP+wCioK3F0WAOA8Asy8+YoVKxo9f/311xUfH69t27bpqquuksPh0IIFC/T4449rypQpkqQ333xTCQkJeuedd/TAAw+osLBQr732mt5++21dd911kqQlS5aoS5cuWr16tcaPH699+/ZpxYoV2rhxo0aMGCFJevXVV5WamqqMjAwlJydr5cqV2rt3r44fP66kpCRJ0vz58zVt2jT94Q9/UFRUlBf/yQAAAMDX2Uvsklzb/iJJMaEx6t6hu44UHFG6PV1ju4/1QHUAgDP51AyQwsJCSVJMTIwkKTMzU3a7XePGjTPWBAcHa8yYMVq/fr0kadu2baqurm60JikpSQMHDjTWbNiwQVar1Qg/JGnkyJGyWq2N1gwcONAIPyRp/Pjxqqys1LZt285Zb2VlpYqKioxHw64UAAAAtG3OLTCudoBIUoqtvguEbTAA4D0+E4A4HA7Nnj1bV1xxhQYOHChJstvrU/WEhIRGaxMSEoz37Ha7goKCFB0dfcE18fHxZ90zPj6+0Zoz7xMdHa2goCBjzZmeeuopY6aI1WpV//79Xf3aAAAAaKWauwVGYg4IAJjBZwKQn/zkJ/ryyy/17rvvnvWexWJp9NzhcJz12pnOXHOu9c1Z09Bjjz2mwsJC47F3794L1gQAAIC2w+gAcXELjEQAAgBm8IkAZMaMGfrXv/6l//73v+rcubPxus1mk6SzOjBycnKMbg2bzaaqqirl5+dfcE12dvZZ9z116lSjNWfeJz8/X9XV1Wd1hjgFBwcrKirKeERGRrrytQEAANCKtWQLjDMA2Z+7X6VVpRdZDQBwB1MDEIfDoZ/85Cf6xz/+oc8++0w9evRo9H6PHj1ks9m0atUq47WqqiqtXbtWo0aNkiQNGzZMgYGBjdZkZWVp9+7dxprU1FQVFhZq8+bNxppNmzapsLCw0Zrdu3crKyvLWLNy5UoFBwdr2LBh7v/yAAAAaNWMLTDN6ACxRdiUGJEohxzamb3T3aUBAM7B1ADkxz/+sZYsWaJ33nlHkZGRstvtstvtKi8vl1S/JWXWrFl68skn9cEHH2j37t2aNm2awsLCNHXqVEmS1WrVvffeqzlz5ujTTz/Vjh079IMf/ECDBg0yToXp16+fJkyYoOnTp2vjxo3auHGjpk+frkmTJik5OVmSNG7cOPXv319paWnasWOHPv30U82dO1fTp0/nBBgAAACcpSUdINK3XSA7sna4rSYAwPmZegzuK6+8IkkaO3Zso9dff/11TZs2TZL06KOPqry8XA899JDy8/M1YsQIrVy5stF2kxdeeEEBAQG67bbbVF5ermuvvVZvvPGG/P39jTVLly7VzJkzjdNiJk+erEWLFhnv+/v7a/ny5XrooYc0evRohYaGaurUqXruuec89O0BAADQWlXWVOp0+WlJzesAkepPgll+cDlzQADAS0wNQBwOx0XXWCwWzZs3T/PmzTvvmpCQEC1cuFALFy4875qYmBgtWbLkgvfq2rWrPv7444vWBAAAgPbNXlI/Oy7IP0jRIdEXWX1uxiBUOwEIAHiDTwxBBQAAAFoT5/YXW4TtoqcTno8zANmds1uVNZVuqw0AcG4EIAAAAICLjAGozZz/IUldrV0VExqjmroa7c7Z7a7SAADnQQACAAAAuMgYgNrM+R9S/VZvYxsMc0AAwOMIQAAAAAAXOWeAtKQDRJKG2ghAAHjX559/rptuuklJSUmyWCz68MMPG70/bdo0WSyWRo+RI0c2WlNZWakZM2YoLi5O4eHhmjx5sk6cONFoTX5+vtLS0mS1WmW1WpWWlqaCggIPf7sLIwABAAAAXOSOLTBSg6Nw7RyFC8A7SktLNWTIkEanop5pwoQJysrKMh7//ve/G70/a9YsffDBB1q2bJnWrVunkpISTZo0SbW1tcaaqVOnKj09XStWrNCKFSuUnp6utLQ0j32vpjD1FBgAAACgNXLHFhhJSklMkSTtzN6pmroaBfjx4zkAz5o4caImTpx4wTXBwcGy2WznfK+wsFCvvfaa3n77bV133XWSpCVLlqhLly5avXq1xo8fr3379mnFihXauHGjRowYIUl69dVXlZqaqoyMDCUnJ7v3SzURHSAAAACAi4wApIUdIL1ieikiKEIVNRXan7vfHaUBQIutWbNG8fHx6tOnj6ZPn66cnBzjvW3btqm6ulrjxo0zXktKStLAgQO1fv16SdKGDRtktVqN8EOSRo4cKavVaqwxAwEIAAAA4CJjC0wLO0D8LH5KsdV3gTAHBEBLFBcXq6ioyHhUVjbveO2JEydq6dKl+uyzzzR//nxt2bJF11xzjXE9u92uoKAgRUdHN/pcQkKC7Ha7sSY+Pv6sa8fHxxtrzEAAAgAAALigtq5W2aXZklreASKJk2AAuEX//v2NgaNWq1VPPfVUs65z++2368Ybb9TAgQN100036T//+Y8OHDig5cuXX/BzDodDFovFeN7w1+db421sMgQAAABccKrslOocdfKz+Ck+/Oy/4XQVAQgAd9i7d686depkPA8ODnbLdRMTE9WtWzcdPHhQkmSz2VRVVaX8/PxGXSA5OTkaNWqUsSY7O/usa506dUoJCQluqas56AABAAAAXODc/hIfHi9/P/8WX88ZgKTb01XnqGvx9QC0T5GRkYqKijIe7gpA8vLydPz4cSUm1ne8DRs2TIGBgVq1apWxJisrS7t37zYCkNTUVBUWFmrz5s3Gmk2bNqmwsNBYYwY6QAAAAAAXOAeg2iLOfUKCq/rG9VVIQIiKq4r11emv1Du2t1uuCwDnUlJSokOHDhnPMzMzlZ6erpiYGMXExGjevHm69dZblZiYqCNHjugXv/iF4uLi9J3vfEeSZLVade+992rOnDmKjY1VTEyM5s6dq0GDBhmnwvTr108TJkzQ9OnTtXjxYknS/fffr0mTJpl2AoxEBwgAAADgEmMAqhvmf0hSgF+ABicMlsQ2GACet3XrVqWkpCglpX4A8+zZs5WSkqInnnhC/v7+2rVrl26++Wb16dNHd999t/r06aMNGzYoMjLSuMYLL7ygW265RbfddptGjx6tsLAwffTRR/L3/7YrbunSpRo0aJDGjRuncePGafDgwXr77be9/n0bogMEAAAAcIG7jsBtaKhtqDaf3KztWdt1+8Db3XZdADjT2LFj5XA4zvv+J598ctFrhISEaOHChVq4cOF518TExGjJkiXNqtFT6AABAAAAXOCuI3AbMgah2ukAAQBPIQABAAAAXGAvtUtycwdIg5NgLvQ3swCA5iMAAQAAAFzgiQ6QgfEDFeAXoNPlp3W86LjbrgsA+BYBCAAAAOACT8wACQ4I1oCOAyQxCBUAPIUABAAAAGgih8PhkQ4QqfE2GACA+xGAAAAAAE1UUFGgytpKSZItwubWaxOAAIBnEYAAAAAATeTc/hIdEq2QgBC3XpsABAA8iwAEAAAAaCJPbX+RpCEJQ2SRRVklWbKX2N1+fQBo7whAAAAAgCbyxABUp/CgcPWN6ytJ2pG1w+3XB4D2jgAEAAAAaCJnB4i75384pSSmSGIbDAB4QoDZBQBAS62xrDG7hEbGOsaaXQIAwEM82QEiSUNtQ/XOrne03U4AAgDuRgcIAAAA0ERGAOKBGSASg1ABwJMIQAAAAIAmMoageqgDxLkF5kjBEZ0uP+2RewBAe0UAAgAAADSRpztAOoR00CXRl0hiECoAuBsBCAAAANBEzuNpPdUBIrENBgA8hQAEAAAAaIKy6jIVVRZJ8lwHiCSl2Oq3weyw0wECAO5EAAIAAAA0gXP+R1hgmCKDIj12HzpAAMAzCEAAAACAJmh4BK7FYvHYfZwdIAfyDqi4sthj9wGA9oYABAAAAGgC4wQYD25/kaSEiAR1iuwkhxzamb3To/cCgPaEAAQAAABogoYdIJ7GNhgAcD8CEAAAAKAJjA4QAhAAaJUIQAAAAIAmMDpAPLwFRvo2AOEkGABwHwIQAAAAoAmcAYgtwubxezkHoe7J2aOKmgqP3w8A2gMCEAAAAKAJvLkFpnNUZ8WFxanWUatd2bs8fj8AaA8IQAAAAIAm8OYWGIvFwhwQAHAzAhAAAADgIqpqq5RblivJOx0gkjTURgACAO5EAAIAAABcRE5pjiQpwC9AsWGxXrmn0QFiJwABAHcgAAEAAAAuwjn/wxZhk5/FOz9COwOQXdm7VF1b7ZV7AkBbRgACAAAAXIQx/8NL218kqUd0D0UFR6mytlL7cvd57b4A0FYRgAAAAAAXYZwA44UBqE5+Fj/jOFzmgABAyxGAAAAAABdhRgeIJE6CAQA3IgABAAAALsLoACEAAYBWiwAEAAAAuAijA8SLW2CkbwOQdHu6autqvXpvAGhrCEAAAACAizBrC0xybLJCA0JVWl2qQ6cPefXeANDWEIAAAAAAF9HwGFxv8vfz1xDbEElsgwGAliIAAQAAAC6gzlGn7NJsSd7fAiNJQ23MAQEAdyAAAQAAAC4gtyxXNXU1ssiihPAEr9/fGIRqJwABgJYgAAEAAAAuwLn9JS4sToH+gV6/f8OTYBwOh9fvDwBtBQEIAAAAcAH2Erskc7a/SNKA+AEK9AtUQUWBjhQcMaUGAGgLCEAAAACACzDrBBinIP8gDUoYJIk5IADQEgQgAAAAwAU4t8CY1QEiSSm2FEnSDvsO02oAgNaOAAQAAAC4ALM7QKTGc0AAAM1DAAIAAABcgC8FINuytjEIFQCaiQAEAAAAuABf2AIzOGGw/Cx+yinNMQIZAIBrCEAAAACAC/CFDpCwwDD1i+sniW0wANBcBCAAAADAeTgcDp/oAJGYAwIALUUAAgAAAJxHUWWRymvKJUm2CJuptTgDEE6CAYDmIQABAAAAzsO5/SUqOEphgWGm1uI8CpcOEABoHgIQAAAA4DyM7S8mzv9wutR2qSTpWOEx5ZblmlsMALRCBCAAAADAeRgDUE2e/yFJ1hCresX0kiTtyGIbDAC4igAEAAAAOA9f6gCRGIQKAC1BAAIAAACch73ELsmHAhDbNwGInQAEAFxFAAIAAACchy9tgZEanATDFhgAcBkBCAAAAHAeRgDiIx0gKYn1J8EcPH1QRZVFJlcDAK0LAQgAAABwHsYMEB/pAIkLi1OXqC6SpHR7urnFAEArQwACAAAAnIevdYBIDEIFgOYiAAEAAADOoby6XAUVBZJ8pwNEIgABgOYiAAEAAADOwXkCTEhAiKzBVpOr+RYBCAA0DwEIAAAAcA4Nt79YLBaTq/mWMwDZl7tPZdVlJlcDAK0HAQgAAABwDs4BqLYIm8mVNJYYkaj48HjVOeq0K3uX2eUAQKtBAAIAAACcg9EB4kPzPyTJYrGwDQYAmoEABAAAADgH4whcHzoBxmmojQAEAFxFAAIAAACcgy8egetkdIDYCUAAoKkIQAAAAIBzcJ4C42tbYKRvA5Bd2btUVVtlcjUA0DoQgAAAAADn4MsdIN07dFeHkA6qrqvWnpw9ZpcDAK0CAQgAAABwDsYMEB/sALFYLEqxpUiSdth3mFwNALQOBCAAAADAGWrqapRTmiPJNztAJHESDAC4iAAEAAAAOENOaY4ccsjf4q+O4R3NLuecCEAAwDUEIAAAAMAZnNtfEiIS5GfxzR+ZnQFIuj1dtXW1JlcDAL7PN383BwAAAEzkywNQnXrH9FZ4YLjKa8qVkZdhdjkA4PMIQAAAAIAz+PIAVCd/P39dartUEttgAKApCEAAAACAMzg7QGzhNpMruTDnNpgdWZwEAwAXQwACAAAAnKE1dIBIMo7C3W6nAwRA03z++ee66aablJSUJIvFog8//NB4r7q6Wj/72c80aNAghYeHKykpSXfddZe+/vrrRtcYO3asLBZLo8cdd9zRaE1+fr7S0tJktVpltVqVlpamgoICL3zD8yMAAQAAAM7QGmaASI1Pgqlz1JlcDYDWoLS0VEOGDNGiRYvOeq+srEzbt2/Xr371K23fvl3/+Mc/dODAAU2ePPmstdOnT1dWVpbxWLx4caP3p06dqvT0dK1YsUIrVqxQenq60tLSPPa9miLA1LsDAAAAPsgIQHy8A6R/x/4K8g9SUWWRMvMz1TOmp9klAfBxEydO1MSJE8/5ntVq1apVqxq9tnDhQl1++eU6duyYunbtarweFhYmm+3c2wT37dunFStWaOPGjRoxYoQk6dVXX1VqaqoyMjKUnJzspm/jGjpAAAAAgDMYW2B8vAMk0D9QgxMGS2IQKtDeFRcXq6ioyHhUVla65bqFhYWyWCzq0KFDo9eXLl2quLg4DRgwQHPnzlVxcbHx3oYNG2S1Wo3wQ5JGjhwpq9Wq9evXu6Wu5iAAAQAAABpwOByyl9gl+X4HiCQNtX27DQZA+9W/f39j3obVatVTTz3V4mtWVFTo5z//uaZOnaqoqCjj9TvvvFPvvvuu1qxZo1/96ld6//33NWXKFON9u92u+Pj4s64XHx8vu93e4rqaiy0wAAAAQAOny0+ruq5akmSL8O1TYKQGJ8HYOQkGaM/27t2rTp06Gc+Dg4NbdL3q6mrdcccdqqur0x//+MdG702fPt349cCBA9W7d28NHz5c27dv19Ch9b8nWSyWs67pcDjO+bq30AECAAAANOCc/xEbGqsg/yCTq7m4lMRvToLJ2i6Hw2FyNQDMEhkZqaioKOPRkgCkurpat912mzIzM7Vq1apG3R/nMnToUAUGBurgwYOSJJvNpuzs7LPWnTp1SgkJCc2uq6UIQAAAAIAGWssRuE6D4gfJ3+KvU2WndLL4pNnlAGjlnOHHwYMHtXr1asXGxl70M3v27FF1dbUSE+t/30xNTVVhYaE2b95srNm0aZMKCws1atQoj9V+MWyBAQAAABpoLUfgOoUGhqp/x/7albNL27O2q3NUZ7NLAuDDSkpKdOjQIeN5Zmam0tPTFRMTo6SkJH33u9/V9u3b9fHHH6u2ttaY2RETE6OgoCB99dVXWrp0qW644QbFxcVp7969mjNnjlJSUjR69GhJUr9+/TRhwgRNnz7dOB73/vvv16RJk0w7AUaiAwQAAABopLV1gEjfzgFhECqAi9m6datSUlKUklK/fW727NlKSUnRE088oRMnTuhf//qXTpw4oUsvvVSJiYnGw3l6S1BQkD799FONHz9eycnJmjlzpsaNG6fVq1fL39/fuM/SpUs1aNAgjRs3TuPGjdPgwYP19ttvm/KdnegAAQAAABpobR0gUn0A8ubONwlAAFzU2LFjLzgv6GKzhLp06aK1a9de9D4xMTFasmSJy/V5Eh0gAAAAQAOtNQCROAkGAC6EAAQAAABowLkFpjUcges0JGGILLLoRNEJ5ZTmmF0OAPgkAhAAAACgAaMDpBXNAIkMjlTv2N6SpB1ZdIEAwLkQgAAAAAANGENQW9EWGIlBqABwMQQgAAAAwDeKK4tVWl0qqXV1gEjSUNs3AYidAAQAzoUABAAAAPiGvcQuSYoIilBEUITJ1biGDhAAuDACEAAAAOAbrfEEGKeUxBRJ0uH8wyqoKDC3GADwQQQgAAAAwDeM+R+tbPuLJMWExqibtZskKd2ebm4xAOCDCEAAAACAb7TmDhCJbTAAcCEEIAAAAMA3WusJME4EIABwfgQgAAAAwDeMDpBWuAVGIgABgAshAAEAAAC+0Va2wOzP3a/SqlKTqwEA30IAAgAAAHyjNQ9BlSRbhE2JEYlyyKGd2TvNLgcAfAoBCAAAAPANZweILcJmciXN5+wC2ZG1w+RKAMC3EIAAAAAAkiprKnW6/LSk1rsFRpJSbCmSmAMCAGciAAEAAAAk2UvskqQg/yDFhMaYXE3zGYNQ7QQgANBQgNkFAEB7tMayxuwSGhnrGGt2CQBguobbXywWi8nVNJ8zANmds1uVNZUKDgg2uSIA8A10gAAAAAD6tgOkNW9/kaSu1q6KCY1RTV2NdufsNrscAPAZBCAAAACAWv8JME4Wi+XbbTDMAQEAAwEIAAAAoG+3wLT2DhBJGmr75iQYOyfBAIATAQgAAACgBh0gbSAASUnkJBgAOBMBCAAAAKAGHSCtfAuM9O0g1J3ZO1VTV2NyNQDgGwhAAAAAALWtLTC9YnopIihCFTUV2p+73+xyAMAnEIAAAAAAajtDUCXJz+KnFBvbYACgIQIQAAAAtHu1dbXKLs2W1DY6QCRxEgwAnIEABAAAAO3eqbJTqnPUySKLOoZ3NLsct3AGIJwEAwD1TA1APv/8c910001KSkqSxWLRhx9+2Oj9adOmyWKxNHqMHDmy0ZrKykrNmDFDcXFxCg8P1+TJk3XixIlGa/Lz85WWliar1Sqr1aq0tDQVFBQ0WnPs2DHddNNNCg8PV1xcnGbOnKmqqipPfG0AAAD4GOf2l/jweAX4BZhcjXs4t8DsyNqhOkedydUAgPlMDUBKS0s1ZMgQLVq06LxrJkyYoKysLOPx73//u9H7s2bN0gcffKBly5Zp3bp1Kikp0aRJk1RbW2usmTp1qtLT07VixQqtWLFC6enpSktLM96vra3VjTfeqNLSUq1bt07Lli3T+++/rzlz5rj/SwMAAMDntKUTYJz6deynkIAQFVcV66vTX5ldDgCYztR4e+LEiZo4ceIF1wQHB8tms53zvcLCQr322mt6++23dd1110mSlixZoi5dumj16tUaP3689u3bpxUrVmjjxo0aMWKEJOnVV19VamqqMjIylJycrJUrV2rv3r06fvy4kpKSJEnz58/XtGnT9Ic//EFRUVFu/NYAAADwNcYA1DYy/0OSAvwCNDhhsDaf3KztWdvVO7a32SUBgKl8fgbImjVrFB8frz59+mj69OnKyckx3tu2bZuqq6s1btw447WkpCQNHDhQ69evlyRt2LBBVqvVCD8kaeTIkbJarY3WDBw40Ag/JGn8+PGqrKzUtm3bzltbZWWlioqKjEdxcbHbvjcAAAC8py0dgdvQUBuDUAHAyacDkIkTJ2rp0qX67LPPNH/+fG3ZskXXXHONKisrJUl2u11BQUGKjo5u9LmEhATZ7XZjTXx8/FnXjo+Pb7QmISGh0fvR0dEKCgoy1pzLU089ZcwVsVqt6t+/f4u+LwAAAMxhL6n/ma8tbYGRGpwEYycAAQCfnvB0++23G78eOHCghg8frm7dumn58uWaMmXKeT/ncDhksViM5w1/3ZI1Z3rsscc0e/Zs4/nJkycJQQAAAFqhNtsB0uAo3Iv9bAsAbZ1Pd4CcKTExUd26ddPBgwclSTabTVVVVcrPz2+0Licnx+josNlsys7OPutap06darTmzE6P/Px8VVdXn9UZ0lBwcLCioqKMR2RkZIu+HwAAAMxhzABpYx0gA+MHKsAvQKfLT+t40XGzywEAU7WqACQvL0/Hjx9XYmL9f5iGDRumwMBArVq1yliTlZWl3bt3a9SoUZKk1NRUFRYWavPmzcaaTZs2qbCwsNGa3bt3Kysry1izcuVKBQcHa9iwYd74agAAADBRW+0ACQ4I1oCOAyQxBwQATA1ASkpKlJ6ervT0dElSZmam0tPTdezYMZWUlGju3LnasGGDjhw5ojVr1uimm25SXFycvvOd70iSrFar7r33Xs2ZM0effvqpduzYoR/84AcaNGiQcSpMv379NGHCBE2fPl0bN27Uxo0bNX36dE2aNEnJycmSpHHjxql///5KS0vTjh079Omnn2ru3LmaPn06J8AAAAC0cQ6Ho812gEiNt8EAQHtmagCydetWpaSkKCUlRZI0e/ZspaSk6IknnpC/v7927dqlm2++WX369NHdd9+tPn36aMOGDY22mrzwwgu65ZZbdNttt2n06NEKCwvTRx99JH9/f2PN0qVLNWjQII0bN07jxo3T4MGD9fbbbxvv+/v7a/ny5QoJCdHo0aN122236ZZbbtFzzz3nvX8YAAAAMEVBRYEqa+uH7NsibCZX434EIABQz9QhqGPHjpXD4Tjv+5988slFrxESEqKFCxdq4cKF510TExOjJUuWXPA6Xbt21ccff3zR+wEAAKBtcW5/iQ6JVkhAiMnVuB8BCADUa1UzQAAAAAB3a8vbXyRpSMIQWWRRVkmWcdwvALRHBCAAAABo15wdIG1x+4skhQeFq29cX0nSjqwdJlcDAOYhAAEAAEC7ZnSAtLETYBpKSayfucc2GADtGQEIAAAA2rW2egRuQ0Nt38wBsROAAGi/CEAAAADQrhkBSBudASIxCBUAJAIQAAAAtHPOwaBtuQPEuQXmSMERnS4/bXI1AGAOAhAAAAC0a239FBhJ6hDSQZdEXyKJQagA2i8CEAAAALRr7WEGiPTtNpgddgIQAO0TAQgAAADarbLqMhVVFklq2x0gkpRi4yQYAO0bAQgAAADaLef2l7DAMEUGRZpcjWcxCBVAe0cAAgAAgHar4fYXi8VicjWe5ewAOZB3QMWVxSZXAwDeRwACAACAdqs9DEB1SohIUKfITnLIoZ3ZO80uBwC8jgAEAAAA7VZ7GYDqxDYYAO0ZAQgAAADaLWcHiC3CZnIl3sFJMADaMwIQAAAAtFvtrQOEk2AAtGcEIAAAAGi3jACkHcwAkb7tANmTs0cVNRUmVwMA3kUAAgAAgHbLGILaTjpAOkd1VlxYnGodtdqVvcvscgDAqwhAAAAA0G7ZS+yS2k8HiMViYRAqgHaLAAQAAADtUnVttU6VnZLUfjpAJGmojQAEQPtEAAIAAIB2Kbs0W5IU4Beg2LBYk6vxHqMDxE4AAqB9IQABAABAu9TwCFw/S/v5sTglsf4kmF3Zu1RdW21yNQDgPe3nd3oAAACggfZ2BK7TJdGXKCo4SpW1ldqXu8/scgDAawhAAAAA0C4ZJ8C0kwGoTn4WP6XY6rtAmAMCoD0hAAEAAEC71F47QCRxEgyAdokABAAAAO2S0QFCAAIA7QIBCAAAANolowOknW2Bkb4NQNLt6aqtqzW5GgDwDgIQAAAAtEvOAMQWYTO5Eu9Ljk1WaECoSqtLdej0IbPLAQCvIAABAABAu9Set8D4+/lriG2IJLbBAGg/CEAAAADQ7tQ56pRdmi2pfW6BkaShNuaAAGhfCEAAAADQ7uSW5aqmrkYWWZQQnmB2OaYwBqHaCUAAtA8BTVm0NWWrZGnaBYdvH96SegAAAACPs5fYJUlxYXEK9A80uRpzNDwJxuFwyGJp4g/8ANBKNSkAibslzvh1XUWdTv7xpML7hysqNUqSVLSxSKV7StXpoU6eqRIAAABwI2P+Rzvd/iJJA+IHKNAvUAUVBTpScEQ9onuYXRIAeFSTApDuv+5u/Hr/ffvVeWZn9fhd498gM3+dqcrjlW4tDgAAAPAE4wjcdjgA1SnIP0iDEgZpe9Z27bDvIAAB0Oa5PAPk1N9OKeGus/dJJvwgQafeP+WWogAAAABPogOkXootRRKDUAG0Dy4HIH6hfipcV3jW64XrCuUXwkxVAAAA+D46QOo1nAMCoH34/PPPddNNNykpKUkWi0Uffvhho/cdDofmzZunpKQkhYaGauzYsdqzZ0+jNZWVlZoxY4bi4uIUHh6uyZMn68SJE43W5OfnKy0tTVarVVarVWlpaSooKPDwt7swlxOLzrM668CDB3TgJwdkX2KXfYldB35yQAd/fFCdH+nsiRoBAAAAtyIAqecMQLZlbZPD4TC5GgDeUFpaqiFDhmjRokXnfP+ZZ57R888/r0WLFmnLli2y2Wy6/vrrVVxcbKyZNWuWPvjgAy1btkzr1q1TSUmJJk2apNraWmPN1KlTlZ6erhUrVmjFihVKT09XWlqax7/fhTRpBkhD3X7eTaGXhOrEiyeU806OJCmsX5j6vtFX8bfFu71AAAAAwN3YAlNvcMJg+Vn8lFOao6ySLCVFJpldEgAPmzhxoiZOnHjO9xwOhxYsWKDHH39cU6ZMkSS9+eabSkhI0DvvvKMHHnhAhYWFeu211/T222/ruuuukyQtWbJEXbp00erVqzV+/Hjt27dPK1as0MaNGzVixAhJ0quvvqrU1FRlZGQoOTnZO1/2DM3asxJ/W7yG/m+orjh9ha44fYWG/m8o4QcAAABaDTpA6oUFhqlfXD9JbIMBIGVmZsput2vcuHHGa8HBwRozZozWr18vSdq2bZuqq6sbrUlKStLAgQONNRs2bJDVajXCD0kaOXKkrFarscYMzQpAqguq9fVfvtbhXxxW9elqSVLx9mJVnuQUGAAAAPg2h8NhdIDYImwmV2M+5oAAbUNxcbGKioqMR2Wl638+t9vtkqSEhMYHnyQkJBjv2e12BQUFKTo6+oJr4uPPbpKIj4831pjB5S0wJV+WaOd1OxVgDVDFkQol3peowJhA5X6Qq4qjFer3Vj9P1AkAMNkayxqzS2hkrGOs2SUAaKWKKotUXlMuiS0wkjQofpAkaV/uPpMrAdAS/fv3b/T817/+tebNm9esa1kslkbPHQ7HWa+d6cw151rflOt4kssdIIdmH5Jtmk0jDo5odOpLzMQYFXxe4M7aAAAAALdzbn+JCo5SWGCYydWYLzmufi/+/tz9JlcCoCX27t2rwsJC4/HYY4+5fA2brb4r7swujZycHKMrxGazqaqqSvn5+Rdck52dfdb1T506dVZ3iTe5HIAUbylW0gNnD0cK7hSsKnuVW4oCAAAAPMUYgNrO5384JcfWByAH8g6ozlFncjUAmisyMlJRUVHGIzg42OVr9OjRQzabTatWrTJeq6qq0tq1azVq1ChJ0rBhwxQYGNhoTVZWlnbv3m2sSU1NVWFhoTZv3mys2bRpkwoLC401ZnB5C4xfiJ9qimrOer0so0xBHYPcUhQAAADgKfaS+r/ZZPtLvUuiL1GAX4DKqst0suikuli7mF0SAA8qKSnRoUOHjOeZmZlKT09XTEyMunbtqlmzZunJJ59U79691bt3bz355JMKCwvT1KlTJUlWq1X33nuv5syZo9jYWMXExGju3LkaNGiQcSpMv379NGHCBE2fPl2LFy+WJN1///2aNGmSaSfASM0IQOJujtPR3x5V///7Zn+RRao4VqHDPz+suFvj3F0fAAAA4FacANNYoH+gLom+RAfyDigjL4MABGjjtm7dqquvvtp4Pnv2bEnS3XffrTfeeEOPPvqoysvL9dBDDyk/P18jRozQypUrFRkZaXzmhRdeUEBAgG677TaVl5fr2muv1RtvvCF/f39jzdKlSzVz5kzjtJjJkydr0aJFXvqW5+ZyANLzuZ768oYvtT5+vWrLa5U+Jl1V9ipFpUbpkj9c4okaAQAAALdhC8zZ+sb1rQ9AcjN03SXXmV0OAA8aO3asHA7Hed+3WCyaN2/eBQeohoSEaOHChVq4cOF518TExGjJkiUtKdXtXA5AAqICNHTdUOV/lq/i7cVSnRQxNEIx18V4oj4AAADArYwOELbAGJxzQBiECqAtcykAqaup0+chn2t4+nBFXxOt6GuiL/4hAAAAwIewBeZszgAkIy/D5EoAwHNcOgXGL8BPId1CpFpPlQMAAAB4lrEFhg4Qg/MoXAIQAG2Zy8fgdvtlNx1+7LCqT1d7oh4AAADAo+gAOZuzA+RY4TGVVZeZXA0AeIbLM0BOvnRS5YfKtT5pvUK6hcg/3L/R+8O3D3dbcQAAAIA7lVeXq6CiQBIdIA3FhcUpJjRGp8tP62DeQQ2xDTG7JABwO9ePwb2Fo24BAADQOtlL7JKkYP9gWYOtJlfjOywWi5Jjk7XhxAbtz91PAAKgTXI5AOn+6+4eKAMAAADwvIYnwFgsFpOr8S3JcfUBCHNAALRVLs8AkaTqgmp9/ZevG80CKd5erMqTlW4tDgAAAHAnYwAq8z/OwkkwANo6lztASr4s0c7rdirAGqCKIxVKnJ6owJhA5X6Qq4qjFer3Vj9P1AkAAAC0WMMOEDRmBCC5BCAA2iaXO0AOzT4k2zSbRhwcIb+Qbz8eMzFGBZ8XuLM2AAAAwK3oADm/vnF9JdV3gDgcDpOrAQD3czkAKd5SrKQHks56PbhTsKrsVW4pCgAAAPAE5xBUApCz9YzpKX+Lv0qqSvR18ddmlwMAbudyAOIX4qeaopqzXi/LKFNQxyC3FAUAAAB4Altgzi/IP0g9ontIYg4IgLbJ5QAk7uY4Hf3tUdVV19W/YJEqjlXo8M8PK+5WjsgFAACA7zICEDpAzok5IADaMpcDkJ7P9VTVqSqtj1+v2vJapY9J16Zem+Qf6a9L/nCJJ2oEAAAA3MKYAUIHyDlxEgyAtszlU2ACogI0dN1Q5X+Wr+LtxVKdFDE0QjHXxXiiPgAAAMAtaupqlFOaI4kOkPNpOAgVANoalwMQp+hrohV9TbQ7awEAAAA8Jqc0Rw455G/xV8fwjmaX45OS4+o7QPbn7je5EgBwvyYFICdeOtHkC3ae2bnZxQAAAACe4tz+khCRID+LyzvB2wXnFpijBUdVXl2u0MBQkysC0N5k5Gbo3d3v6otjX+hIwRGVVZepY1hHpSSmaHzP8bq1360KDghu1rWbFoC80DgAqTpVpbqyOgV0qP94TUGN/ML8FBQfRAACAAAAn8QA1IuLD4+XNdiqwspCHTp9SIMSBpldEoB2YkfWDj26+lF9cfQLjeoySpd3uly3JN+i0MBQnS4/rd05u/X4Z49rxn9m6NFRj2rWyFkuByFNCkBGZo40fp39TrZO/vGk+r7WV2HJYZLqj8DNmJ6hpAeSXLo5AAAA4C3ODhBbhM3kSnyXxWJRclyyNp/crIy8DAIQAF5zy3u36Kejfqr3vvueYkLPP2N0w/ENemHjC5q/Yb5+ceUvXLqHyzNAMn+VqQF/H2CEH5IUlhymXi/00p7v7lHCnQmuXhIAAADwODpAmqZvXN/6AISjcAF40cEZBxXkH3TRdaldUpXaJVVVtVUu38PlzY9VWVVyVDvOet1R61BVtusFAAAAAN7AEbhN45wDsj+PQagAvKcp4UdL1kvNCECir41WxvQMFW0tksNRH4QUbS3SgQcOKPo6ToUBAACAb6IDpGmcAQgdIAB8xerDq/Xr//5aH2V81KLruByAJP81WcGdgrX98u36PORzrQ1eq+0jtisoMUjJf0luUTEAAACAp9hL7JLoALkY51G4GXkZxl94AoC3PLT8If3qs18Zz9/f+74mLJmg5QeX6/a/367nNzzf7Gu7NAPE4XCorqxOA/4+QJUnK1W2r0xySGH9whTWJ+ziFwAAAABMQgdI0/SK6SWLLCqqLFJ2aTZDYwF41X+P/FcvTXjJeP78xuf15LVP6tHRj+of+/6hR1c9qtmps5t1bdeGoDqkTb036bI9lymsd5jCehN6AAAAwPc5HA46QJooJCBEPaJ76HD+YWXkZhCAAPCK36z5jSTpWOEx/TPjn9pwYoMcDoe2nNyiIQlD9Nu1v1VFTYWOFR7Tb9f+VpL0xJgnXLqHSwGIxc+i0N6hqs6rlnq7dB8AAADANKfLTxsnBvAH+otLjk3W4fzD2p+7X2O6jzG7HADtwLRLp0mS/rTtT7r+kut1qe1SfXHsC9kibPr5FT+Xw+FQaXWpXtr0kqZdOq1ZW/RcngHS85meOvzTwyrZXeLyzQAAAAAzOLe/xIbGNuvkgPbGGISaxyBUAN7RrUM3devQTSM7j9Sz65/V+uPrtXDzQn2n73fU1dpV3Tp0U2lVqXpE9zCeu8q1LTCS9v1gn2rLarV1yFb5BfnJL7RxhnLF6StcLgIAAADwJI7AdU3DQagA4E0vjH9BaR+k6f6P79cVXa/Qr8f+2nhv8bbFuqnPTc2+tssBSK8FvZp9MwAAAMAMDEB1DUfhAjBL9w7d9cUPvzjne3+Z/JcWXdvlAMR2N3smAQAA0LrQAeKavnF9JUmZBZmqrKlUcECwyRUBQMu5PAOk8mSlTrx0Qgd+ckAHZxzUiYUnVHmy0hO1AQAAAG7h7ACxhfOXeU1hi7ApMihSdY46HTp9yOxyALQDT697WmXVZU1au+nEJi0/sNzle7jUAXLyjyd1aPYhOaocCrAGyOFwqLaoVl/99Cv1er6XOj3UyeUCAAAAAE8ztsDQAdIkFotFyXHJ2vr1VmXkZWhA/ACzSwLQxu09tVddX+iq7/X/niYnT9bwpOHqGN5RklRTV6O9p/Zq3bF1WvLlEmWVZOmtW95y+R5NDkDylufp4MyD6jyrs7rM6aLgxPo2uMqsSh1/9rgOPXxIId1DFHtDrMtFAAAAAJ5kbIFhBkiTJcd+E4AwBwSAF7z1nbf0ZfaXennzy7rzH3eqsLJQ/hZ/BQcEG50hKbYU3T/sft095O5mbc1rcgBy7Jlj6vrzrrrk95c0ej04MVi9nu8lvzA/Hft/xwhAAAAA4HPoAHEdR+EC8LbBCYO1+KbF+tOkP+nL7C91pOCIymvKFRcWp0ttlyouLK5F129yAFKyo0TJf04+7/u2NJtOvniyRcUAAAAAnmAvsUuiA8QVzkGoBCAAvM1isWiIbYiG2Ia49bpNHoLqqHPIEmg57/uWQIscDodbigIAAADcpaSqRCVVJZLoAHFFclz9X37uz93Pz/kA2oQmByDhA8KV+8/c876f+2GuwgeEu6UoAAAAwF2c8z8igiIUERRhcjWtR++Y3rLIooKKAp0qO2V2OQDQYk0OQDo91EmZj2fq5B9Pqq6mzni9rqZOJ18+qcxfZirpwSSPFAkAAAA0lzH/g+0vLgkNDFVXa1dJYhAqgDahyTNAbHfbVLKrRAd/clCHHzus0J6hkqTyr8pVW1KrzjM7K3Ea/1EBAACAbzFOgGH7i8uS45J1tPCoMvIydGW3K80uBwBapMkdIJLU67leSlmfIts0m4JsQQqyBcn2Q5tS/peiXi/08lSNAAAAQLPRAdJ8fWO/GYRKBwgAExw6fUifHPpE5dXlktTieURN7gBxso60yjrS2qKbAgAAAN5idIAQgLjMGISat9/kSgC0J3llebr977frs8zPZLFYdHDGQV0SfYnu+9d96hDSQfPHz2/WdV3qAAEAAABaG6MDhC0wLkuOrQ9A6AAB4E2PfPKIAvwCdOyRYwoLDDNev33g7Vrx1YpmX9flDhAAAACgNXEGILYIm8mVtD7ODpDD+YdVVVulIP8gkysC0B6s/GqlPvnBJ+oc1bnR671jeutowdFmX5cOEAAAALRpbIFpvk6RnRQeGK5aR60O5x82uxwA7URpdWmjzg+n3LJcBQcEN/u6BCAAAABo09gC03wWi8XoAmEbDABvuarbVXpr51vGc4ssqnPU6dn1z+rq7lc3+7ouByCZ8zJVcbSi2TcEAAAAvKWyplKny09LogOkuZxzQPbnMggVgHc8e/2zWrxtsSYunaiq2io9uvpRDfzjQH1+9HP9v+v+X7Ov63IAkvdRnjb23Kj0a9OV/U62aitqm31zAAAAwJPsJXZJUpB/kGJCY0yupnUyBqHm0QECwDv6d+yvLx/8UpcnXa7rL7lepVWlmtJvinY8sEM9Y3o2+7ouD0Edvm24Sr4skf11uw49ckgHf3xQ8XfEy3aPTVGXRTW7EAAAAMDdnAGILcImi8VicjWtk7EFhgAEgBfZImz6zdW/ces1mzUDJGJwhHq90EupJ1OV/NdkVZ6s1I7RO7Rl0BadePGEagpr3FokAAAA0BzG/A+2vzQbR+EC8LbXd7yuv+3521mv/23P3/Rm+pvNvm7LhqDWSY4qh+oq6ySHFBAToJOvnNSGLhuU815Oiy4NAAAAtJRxAgwDUJutT2wfSVJeeZ5yy3JNrgZAe/D0/55WXFjcWa/Hh8fryXVPNvu6Lm+BkaTibcXKej1LOe/myC/YTwl3Jaj3y70V1qv+mJrj84/r4MyDir89vtmFAQAAAC1FB0jLhQeFq0tUFx0vOq6M3AzFdT37DyUA4E5HC46qR3SPs17v1qGbjhUea/Z1Xe4A2TJ4i7aP3K6KzAolv5as1OOp6vl0TyP8kKSEuxJUfaq62UUBAAAA7mB0gBCAtAhzQAB4U3x4vL7M/vKs13fadyo2NLbZ13W5A6Tj9zoq8Z5EBXcKPu+aoI5BGls3ttlFAQAAAO5gdICwBaZFkmOTtfrwauaAAPCKOwbeoZn/manIoEhd1e0qSdLao2v18IqHdcfAO5p9Xde3wDikgOizP1ZbXqvjzx5X9ye6N7sYAAAAwJ3YAuMeHIULwJt+f83vdbTwqK5961oF+NXnD3WOOt015C49ea0XZ4Ac+c0RJf0oSf5h/o1eryur05HfHCEAAQAAgM9gCKp79I3rK4kABIB3BPkH6b3vvqffXf077bTvVGhgqAbFD1K3Dt1adN1mdYDoHEeol+wsUWBMYIuKAQAAANyltq5W2aXZkiRbhM3kalo35wyQQ6cPqbq2WoH+/NwPwPP6xPYxTqJyhyYHIOui19UHHxZpc5/NjUIQR61DtSW1SvpRktsKAwAAAFriVNkp1TnqZJFF8eGcTtgSnaM6KzQgVOU15cosyHTrH0gAQJJmfzJbv7v6dwoPCtfsT2ZfcO3z459v1j2aHID0WtBLDodDGfdkqPtvuivA+u1HLUEWhXQPkTXV2qwiAAAAAHdzbn+JD4839pCjefwsfuoT20c7s3cqIzeDAASA2+2w71B1Xf1pstuztstiOcfWE0mWc21JaaIm/5fAdnd922Boj1BFjYqSX6DLJ+gCAAAAXsMJMO6VHJdcH4DkZegm3WR2OQDamP/e/V/j12umrfHIPZqUYtQU1Ri/jkiJUF15nWqKas75AAAAAHyBvcQuiRNg3KVv7DeDUDkKF4AH1dTVKOC3Adqds9vt125SB8i66HUalTVKQfFBWtdh3TmHoDqHo46tHevWAgEAAIDmME6AIQBxC+cg1P15+02uBEBbFuAXoG4duqm2rtb9127Koks/u1QBMfVLL/3vpW4vAgAAAHA3tsC4V3JsfQBCBwgAT/vllb/UY58+piVTligmNMZt121SANJhTAfj1yE9QhTcJfisgSQOh0OVxyvdVhgAAADQEkYAQgeIWzgHn54qO6X88nxFh0abXBGAtuqlzS/p0OlDSpqfpG4duik8MLzR+9sf2N6s67o8Dntjj43GdpiGak7XaGOPjWyBAQAAgE8wtsDQAeIWkcGRSopM0tfFXysjL0MjO480uyQAbdTNyTe36LSX83H9PLBvZn2cqbakVn4hnAwDAAAA30AHiPv1jetbH4DkEoAA8Jx5Y+d55LpNDkAOzT5U/wuLlPmrTPmH+RvvOWodKtpUpIhLI9xeIAAAAOAqh8NBB4gHJMcm67PMz7Q/l0GoANyvrLpMP135U32Y8aGqa6t13SXX6aWJLykuLM4t129yAFKyo6T+Fw6pdFep/IK+7fawBFkUMSRCXeZ2cUtRAAAAQEsUVBSosrZ+Pp0twmZyNW2HMQg1j0GoANzv1//9td7Y+YbuHHSnQgJC9O7ud/Xg8gf1t+/9zS3Xb3IA4jz9Zf8P96vXi70UEOX67hkAAADAG5zbXzqEdFBIQIjJ1bQdzqNwCUAAeMI/9v9Dr01+TXcMvEOS9IPBP9Dov45WbV2t/P38L/Lpi3N5aEff1/sSfgAAAMCnGdtfmP/hVs4OkEOnD6m2rtbkagC0NccLj+vKrlcazy/vdLkC/AL0dfHXbrm+y0lGbWmtjj19TPmf5qsqp0qqa/z+yMMMQwIAAIC5jAGozP9wq67WrgoJCFFFTYWOFBxRz5ieZpcEoA2pddQqyL/xibMBfgGqqatxy/VdDkAy7stQwdoCJaQlKCgxSBaL+4+mAQAAAFqCDhDP8PfzV++Y3tqVs0v7c/cTgABwK4fDoWn/nKZg/2DjtYqaCv1o+Y8UHhhuvPaP2//RrOu7HIDk/SdPg5cPlnW0tVk3BAAAADzNXmKXRADiCclxydqVs0sZeRm6UTeaXQ6ANuTuS+8+67UfDP6B267vcgASGB2ogBhmgAAAAMB3sQXGc4yTYHIZhAq0Nt27d9fRo0fPev2hhx7Syy+/rGnTpunNN99s9N6IESO0ceNG43llZaXmzp2rd999V+Xl5br22mv1xz/+UZ07d25xfa/f/HqLr3EhLg9B7f677jryxBHVljH0CAAAAL7JCEDoAHE7jsIFWq8tW7YoKyvLeKxatUqS9L3vfc9YM2HChEZr/v3vfze6xqxZs/TBBx9o2bJlWrdunUpKSjRp0iTV1vp+RuByK8eJ+SdU/lW51iesV0j3EFkCG88AGb59uNuKAwAAAJrDmAFCB4jb9Y3rK4kABGiNOnbs2Oj5008/rZ49e2rMmDHGa8HBwbLZbOf8fGFhoV577TW9/fbbuu666yRJS5YsUZcuXbR69WqNHz/ec8W7gcsBSNwtcZ6oAwAAAHAbOkA8JzmuvgPEXmJXYUWhrCHMBgR8QXFxsYqKioznwcHBCg4OPu/6qqoqLVmyRLNnz250uMmaNWsUHx+vDh06aMyYMfrDH/6g+Ph4SdK2bdtUXV2tcePGGeuTkpI0cOBArV+/vu0FIN1/3d0DZQAAAADuUVZdpqLK+j8E0AHiflHBUbJF2GQvsSsjL0OXd7rc7JIASOrfv3+j57/+9a81b968867/8MMPVVBQoGnTphmvTZw4Ud/73vfUrVs3ZWZm6le/+pWuueYabdu2TcHBwbLb7QoKClJ0dHSjayUkJMhut7vz63gE00wBAADQpji3v4QFhikyKNLkatqm5Njk+gAklwAE8BV79+5Vp06djOcX6v6QpNdee00TJ05UUlKS8drtt99u/HrgwIEaPny4unXrpuXLl2vKlCnnvZbD4WjUReKrXB6C6qh16Nhzx7Tt8m36n+1/WhezrtHDFZ9//rluuukmJSUlyWKx6MMPP2x8L4dD8+bNU1JSkkJDQzV27Fjt2bOn0ZrKykrNmDFDcXFxCg8P1+TJk3XixIlGa/Lz85WWliar1Sqr1aq0tDQVFBQ0WnPs2DHddNNNCg8PV1xcnGbOnKmqqiqXvg8AAADM13D7S2v4gbw1YhAq4HsiIyMVFRVlPC4UgBw9elSrV6/Wfffdd8FrJiYmqlu3bjp48KAkyWazqaqqSvn5+Y3W5eTkKCEhoeVfwsNcDkCO/OaITjx/Qh1v66jawlp1nt1ZcVPiJD+p+7zuLl2rtLRUQ4YM0aJFi875/jPPPKPnn39eixYt0pYtW2Sz2XT99deruLjYWNOUCbRTp05Venq6VqxYoRUrVig9PV1paWnG+7W1tbrxxhtVWlqqdevWadmyZXr//fc1Z84c1/7hAAAAwHTODhBbxLmH+KHlGIQKtG6vv/664uPjdeONN15wXV5eno4fP67ExPrthMOGDVNgYKBxeowkZWVlaffu3Ro1apRHa3YHl7fAZC/NVvKryYq9MVZHf3NUCd9PUGjPUJ0YfEJFG4ukmU2/1sSJEzVx4sRzvudwOLRgwQI9/vjjRqvNm2++qYSEBL3zzjt64IEHmjSBdt++fVqxYoU2btyoESNGSJJeffVVpaamKiMjQ8nJyVq5cqX27t2r48ePG+0/8+fP17Rp0/SHP/xBUVFRrv5jAgAAgEmMDhDmf3iMcxDq/tz9JlcCwFV1dXV6/fXXdffddysg4NtIoKSkRPPmzdOtt96qxMREHTlyRL/4xS8UFxen73znO5Ikq9Wqe++9V3PmzFFsbKxiYmI0d+5cDRo0yPgzuS9zuQOkyl6l8EHhkiT/CH/VFNZIkmInxSpveZ7bCsvMzJTdbm80XTY4OFhjxozR+vXrJV18Aq0kbdiwQVar1Qg/JGnkyJGyWq2N1gwcOLDR3qfx48ersrJS27Ztc9t3AgAAgOcZR+ByAozHOLfAHMw7qNq62ousBuBLVq9erWPHjumee+5p9Lq/v7927dqlm2++WX369NHdd9+tPn36aMOGDYqM/Hae0gsvvKBbbrlFt912m0aPHq2wsDB99NFH8vf39/ZXcZnLHSDBnYNVlVWlkK4hCu0VqtMrTytyaKSKtxTLL9jlPOW8nBNkz9xHlJCQoKNHjxprLjaB1m63G0f2NBQfH99ozZn3iY6OVlBQ0AUn2VZWVqqystJ43nBrDgAAAMzBEbie171DdwX5B6mytlLHCo+pR3QPs0sC0ETjxo2Tw+E46/XQ0FB98sknF/18SEiIFi5cqIULF3qiPI9yObGI+06c8j+tH3jS6eFOOvKrI9rUe5P23bVPtnvcv8/yzMFVTZkue+aac61vzpozPfXUU8ZgVavVetaxQwAAAPA+tsB4nr+fv3rF9JLEHBAArYfLAUjPp3uq2y+6SZLivxuvS7+4VEkPJmnA3wao59M93VaYzVYfppzZgdFwumxTJtDabDZlZ2efdf1Tp041WnPmffLz81VdXX3BSbaPPfaYCgsLjcfevXtd/JYAAABwN3tJ/c91dIB4ljEINZcABEDr0OI9K9aRVnWZ3UVxk+PcUY+hR48estlsjabLVlVVae3atcZ02aZMoE1NTVVhYaE2b95srNm0aZMKCwsbrdm9e7eysrKMNStXrlRwcLCGDRt23hqDg4MbHTPUcF8UAAAAzGHMAKEDxKOcc0AYhAqgtXB5Boj9rfPPxJAk211N3wZTUlKiQ4cOGc8zMzOVnp6umJgYde3aVbNmzdKTTz6p3r17q3fv3nryyScVFhamqVOnSmraBNp+/fppwoQJmj59uhYvXixJuv/++zVp0iQlJ9f/pj1u3Dj1799faWlpevbZZ3X69GnNnTtX06dP5wQYAACAVqS6tlqnyk5JogPE05wBCFtgALQWLgcghx4+1Oh5XXWd6srqZAmyyD/M36UAZOvWrbr66quN57Nnz5Yk3X333XrjjTf06KOPqry8XA899JDy8/M1YsQIrVy58qwJtAEBAbrttttUXl6ua6+9Vm+88UajCbRLly7VzJkzjdNiJk+erEWLFhnv+/v7a/ny5XrooYc0evRohYaGaurUqXruuedc+4cDAAAAU2WX1m99DvALUGxYrMnVtG3Oo3AJQAC0Fi4HIFfkX3HWa2UHy3TgwQPq+tOuLl1r7Nix55w+62SxWDRv3jzNmzfvvGuaMoE2JiZGS5YsuWAtXbt21ccff3zRmgEAAOC7nNtfbBE2+Vncd0IhzubsAPm6+GsVVxYrMpjt4AB8m1v+qxDWO0yXPH2JDj580B2XAwAAAJqFI3C9Jzo0WvHh8ZKkA3kHTK4GAC7ObbG4xd+iqq+r3HU5AAAAwGUMQPUuBqECaE1c3gKT+6/cxi84pMqsSp1cdFLW0VZ31QUAAJqppKpEYYFhtP+jXaIDxLuSY5P1xbEvmAMCoFVwOQDZfcvuxi9YpMCOgYq+Jlo95/d0V10AAKAZtn69VSP/MlIPDn9QC284/3wsoK1qOAMEnscgVACticsByNi6sR4oAwAAuMN7u99TraNWf9r2J/38ip+rU1Qns0sCvIoOEO8yjsLNJQAB4Pua3RtblVulmqIad9YCAABaaO3RtZKkmroavbzlZZOrAbzPCECYAeIVfeP6SqofglrnqDO5GgC4MJcCkOqCah348QGti1un9QnrtS56nf5n+58OP3ZYtWW1nqoRAAA0QVFlkbZlbTOeL962WGXVZSZWBHifMQSVDhCv6BHdQ4F+gSqvKdfxwuNmlwMAF9TkAKT6dLW2j9gu+5t2dby1o3rO76mez/VU3OQ4nVh4Qjuu2qHailoVbSrSiZdOeLJmAABwDv879j/VOerUo0MP9ejQQ6fLT+utnW+ZXRbgNXWOOmWXZkuiA8RbAvwC1DOmfg4gc0AA+LomByBHfntEfkF+GvnVSCUvTlaXWV3U5ZEuSv5zskYcGiFHlUP70/Zr57idCrC6PFoEAAC00JojayRJV3e/WjNHzJQkvbjpRdrS0W7kleWppq5GFlmUEJ5gdjntBnNAALQWTQ5Acj/MVc/neiooIeis94JtwbrkmUt06v1T6jK7i2x3M3UbAABvc87/GNt9rO5JuUeRQZHan7tfnxz6xOTKAO9wzv+IC4tToH+gydW0H0YAQgcIAB/X5ACkKqtKYQPCzvt++MBwyU/q/uvu7qgLAAC4oLiyWFu/3ipJGtN9jKKCo3Rvyr2SpAWbFphYGeA9xvwPtr94lXMQKgEIAF/X5AAkMC5QFUcqzvt+RWaFguLP7g4BAACet/74etU6atW9Q3d1tXaVJM0cMVN+Fj+t/Gql9uTsMblCwPM4AtccyXH1HSD7c/ebXAkAXFiTA5CYCTHKfDxTdVVn7yOuq6xT5q8yFTMhxq3FAQCApnHO/xjbfazxWo/oHro5+WZJ9bNAgLaODhBzOLfAnCg6odKqUpOrAYDza3IA0v033VWWUaZNvTfp2DPHlPuvXOX+K1dHnz6qTb03qWxfmbrP6+7BUgEAwPk453+M6Tam0euPjHxEkvT2l28rtyzX63UB3kQHiDliw2IVGxorSTqQd8DkagDg/JocgIR0DtHQDUMV3j9chx87rN237NbuW3Yr8/FMhfUPU8r/UhTSNcSTtQIAgHMorSrVlq+3SGrcASJJV3S9QsMSh6mipkKLty42oTrAewhAzOPcBsMcEAC+rMkBiCSF9gjV4P8M1ujc0Rq6caiGbhyq0adGa8iKIQrrdf4BqQAAwHPWH1+vmroadbV2VfcO3Ru9Z7FYNGvkLEnSy1teVlVtlfcLBLzEuQXGFsGJhN7WN/abQagchQvAh7kUgDgFRgcq6vIoRV0epcAYjhgDAMBMDY+/PZfbBtymxIhEZZVk6f/2/J8XKwO8y+gAYQaI1xmDUPMYhArAdzUrAAEAAL7DOQD1zPkfTkH+QfrxZT+WJL2w8QU5HA5vlQZ4jcPh+HYIKltgvM45CJUOEAC+jAAEAIBWrKy6TJtPbpZ0/gBEkh4Y/oBCAkK0PWu71h1b563yAK8pqixSeU25JDpAzODsADmQd4CQFYDPIgABAKAV23B8g6rrqtU5qrMuib7kvOviwuKUNjhNUn0XCNDW2EvskqSo4CiFBTKbztsuib5E/hZ/lVaX6mTxSbPLAYBzIgABAKAVa3j8rcViueBa5zDUD/d/qMP5hz1dGuBVnABjriD/IPWM6SmJbTAAfBcBCAAArdjFBqA21L9jf43rOU4OObRw00IPVwZ4lzH/g+0vpnHOAdmfyyBUAL6JAAQAgFaqvLpcG09slHTh+R8NPTLyEUnSazteU1FlkcdqA7yNDhDzGYNQ8+gAAeCbCEAAAGilNp3cpKraKiVFJqlXTK8mfWZcz3HqG9dXxVXF+uuOv3q4QsB7OAHGfM5BqAQgAHwVAQgAAK1Uw+NvLzb/w8nP4qdZI2ZJkl7a9JJq62o9VB3gXUYHCFtgTMNRuAB8HQEIAACtVMMBqK5IG5KmmNAYZRZk6l8Z//JEaYDXsQXGfH3j+kqSjhUeU1l1mcnVAMDZCEAAAGiFKmoqtOH4BklNG4DaUFhgmB4Y9oAkjsRF28EQVPPFhcUpOiRaDjl0MO+g2eUAwFkIQAAAaIU2n9ysytpKJYQnqE9sH5c//+PLfqwAvwB9cewLbft6mwcqBLyLDhDzWSwW5oAA8GkEIAAAtEJrj3x7/G1T53801Cmqk24bcJskacGmBe4sDfC68upyFVQUSJJsETZzi2nnmAMCwJcRgAAA0AqtObpGkuvzPxpyHon73u739HXx1+4oCzCFvcQuSQr2D1aHkA7mFtPOcRQuAF9GAAIAQCtTWVPZ7PkfDQ1PGq7RXUaruq5af9zyRzdVB3hfwxNgmtMRBfdxDkIlAAHgiwhAAABoZbZ8vUXlNeWKD483/rDRXM4ukD9t/ZPKq8vdUR7gdcYAVOZ/mM45A2R/7n45HA6TqwGAxghAAABoZZzzP67qdlWL/7b75r43q5u1m/LK87TkyyXuKA/wOucWGE6AMV/P6J7ys/ippKrE6MwBAF9BAAIAQCvjnP8xttvYFl8rwC9AM0fMlFQ/DJW/sUVrxAkwviM4IFg9OvSQxCBUAL6HAAQAgFakurZa64+vlySN6d78AagN3ZtyryKCIrT31F6tOrzKLdcEvIktML6Fo3AB+KoAswsAAABNt/XrrSqrLlNcWJz6d+zvlmtaQ6y659J79NLml/TCxhc0ruc4t1wXvie/PF8dQjq0uUGhDYegwnx9Y/vq3wf/TQdIG+BwOHSk4Iiq66rNLsVlHcM6Kjo02uwy4GMIQAAAaEXWHFkjqX7+h5/FfY2cM0fM1MLNC7Xi0ArtO7VP/Tr2c9u14RuWfLlEd31wl54Y84TmjZ1ndjluxRYY32IMQs3bb3IlaKk5K+fohY0vmF1GsywYv0APj3zY7DLgYwhAAABoRdYerR+A6o75Hw31jOmpycmT9c+Mf+rFTS/qT5P+5Nbrw1ynSk9p5n9myiGHnlv/nB4e8XCb+ptRYwsMHSA+ITn2my0wdIC0ap8e/tQIP6zBVpOrcV2Qf5DZJcAHEYAAANBKVNdWa92xdZLcN/+joUdGPqJ/ZvxTb+18S3+45g+KDYt1+z1gjrmr5iq/Il+SVFpdqj9v+7N+dsXPTK7KPWrqapRTmiOJDhBf4ewAOVJwRBU1FQoJCDG5IriqsKJQP/znDyVJPxr2I70y6RWTKwLcgyGoAAC0Etuztqu0ulQxoTEaGD/Q7de/qttVutR2qcpryvXnbX92+/Vhjv9m/ldv7XxLFln048t+LEl6cdOLqqypNLky98gpzZFDDvlb/BUXFmd2OZCUEJ6gqOAoOeTQodOHzC4HzfDIJ4/oeNFxXRJ9iZ4d96zZ5QBuQwACAEAr4an5H04Wi0WPjHxEkrRoyyJV17a+oXdorLKmUg8uf1CS9KPhP9Lz459XUmSSskqy9O7ud02uzj2c21/iw+Pl7+dvcjWQ6n8v6RvXVxLbYFqjjzI+0uvpr8sii964+Q1FBEWYXRLgNgQgAAC0Es75H2O6uX/7i9PtA25XQniCvi7+Wn/b+zeP3Qfe8ez6Z5WRl6GE8AQ9ee2TCvIP0sMj6ocCPrf+OTkcDpMrbDlOgPFNzjkg+3MZhNqa5JblavpH0yVJc1Ln6MpuV5pcEeBeBCAAALQCNXU1+uLYF5Kksd3Heuw+wQHBxjaJFza+0Cb+gNxeHTp9SL///PeSpBfGv6AOIR0kSQ8Me0CRQZHac2qPPvnqExMrdA9jACrzP3yKMQg1jw6Q1sLhcOih5Q8puzRb/Tv21++u+Z3ZJQFuRwACAEArsCNrh0qqStQhpIMGxQ/y6L0eGP6Agv2DtfXrrVp/fL1H7wXPcP5BprK2Utdfcr3uGHiH8Z41xKrpQ+v/hvfZ9a1/bz9H4Pom5yBUApDW47097+lve/8mf4u/3rrlLYbXok0iAAEAoBVwbn+5qttVHp9zEB8erx8M/oEkacGmBR69FzzjvT3vadXhVQr2D9Yfb/yjLBZLo/cfHvmw/C3++izzM23P2m5Sle5hL7FLYguMr2l4FC6dZL7v6+Kv9dDyhyRJv7zqlxqWNMzkigDPIAABAKAVcA5A9eT8j4accyL+se8fOlJwxCv3hHsUVBRo1opZkqTHr3xcvWJ6nbWmq7Wrbh94uyRp/ob53izP7egA8U29Y3vLIosKKwuNY4rhmxwOh6Z/NF35FfkamjhUj1/5uNklAR5DAAIAgI+rras15n94KwAZlDBI111yneocdVq0eZFX7gn3ePzTx5Vdmq3k2GQ9OvrR866bmzpXkvTe7vd0tOCot8pzO2MGCB0gPiUkIETdO3SXxCBUX/fXHX/Vvw/+W0H+QXrrlrcU6B9odkmAxxCAAADg49Lt6SqqLFJUcJQutV3qtfvOGjFLkvTq9ldVXFnstfui+Taf3KxXtr4iSXrlxlcUHBB83rUpiSm6tse1qnXU6sVNL3qrRLejA8R3MQfE9x0pOKJZn8ySJP3+6t9rQPwAcwsCPIwABAAAH+ec/3Fl1ys9Pv+joYm9Jyo5NllFlUV6Pf11r90XzVNTV6MHPn5ADjl015C7dHWPqy/6mbmj6rtAXt3+qgoqCjxcofs5HA5mgPiwhnNA4HvqHHX64T9/qJKqEo3uMlqzU2ebXRLgcQQgAAD4OOf8D08ef3sufhY/YxbIS5teUm1drVfvD9cs3LRQ6fZ0RYdE69nrm3a6y/ie4zUwfqBKqkq0eOtiD1fofqfLT6uqtkqSZIuwmVwNzsRRuL5t4aaFWnNkjcICw/TGLW94NWAHzEIAAgCADzNj/kdDdw25S9Eh0foq/yt9fOBjr98fTXO88Lh+9d9fSZKeuf4ZxYfHN+lzFovFmAXy4qYXjTChtXBuf4kNjVWQf5DJ1eBMfeP6SiIA8UUZuRn6+ac/lyQ9d/1z5xyWDLRFBCAAAPiwXTm7VFBRoMigSKUkpnj9/uFB4bp/2P2SOBLXlz284mGVVpdqdJfRuiflHpc++/1B31dSZJKySrL07q53PVShZzAA1bc5Z4Aczj+syppKk6uBU01dje768C5V1FTo+kuu14+G/8jskgCvIQABAMCHObe/XNH1CgX4BZhSw48v+7H8Lf5ac2SN0u3pptSA8/so4yN9sP8DBfgF6E+T/iQ/i2s/3gX5B2nm5TMlSc9teE4Oh8MTZXqEswOE7S++KTEiURFBEapz1Omr/K/MLgffeOZ/z2jzyc2yBlv12uTXZLFYzC4J8BoCEAAAfJhzAKoZ21+culi76HsDvidJWrBxgWl14GylVaX6yX9+IkmakzpHA+MHNus6Dwx/QBFBEdqds1uffPWJO0v0KKMDhBNgfJLFYmEQqo/Zad+peWvmSZJemviSuli7mFsQ4GUEIAAA+Kg6R50+P/q5JO8PQD2T80jcd3e/a5y6AfP9Zu1vdKzwmLpZu+lXV/2q2dfpENJB04dOlyQ9t/45d5XncRyB6/s4Ctd3VNZU6q4P71J1XbVu6XuL0ganmV0S4HUEIAAA+KjdObt1uvy0wgPDNTRxqKm1jOg8QqmdU1VVW6VXtrxiai2o92X2l3p+w/OSpJdveFnhQeEtut7DIx6Wv8Vfn2Z+qh1ZO9xRoscZAQgzQHxW31gGofqK3679rb7M/lJxYXFaPGkxW1/QLhGAAADgoxrO/wj0DzS3GEmzRs6SJL2y9RVV1FSYW0w7V+eo048+/pFqHbWa0m+KbuxzY4uv2a1DN90+8HZJ9bNAWgO2wPg+ZwfI/tz9JlfSvm08sVFP/+9pSdLiSYubfFIU0NYQgAAA4KN8Yf5HQ1P6TVGXqC46VXZK7+x6x+xy2rW/bP+LNpzYoIigCL044UW3XXdO6hxJ0nu739OxwmNuu66nOLdj0QHiuxrOAGlNA3bbkrLqMt394d2qc9TpzkF3akq/KWaXBJiGAAQAAB/kS/M/nAL8AjTj8hmS6oeh8ocZc+SU5uhnq38mSfrd1b9T56jObrv20MShuqbHNap11OrFje4LVjyFGSC+r3dsb0lSfkW+cstyTa6mfXps9WM6kHdASZFJWjhxodnlAKYiAAEAwAftPbVXuWW5CgsM0/Ck4WaXY5g+bLrCA8O1K2eXPsv8zOxy2qU5K+eooKJAKbYU/eTyn7j9+nNT50qS/rz9zyqoKHD79d2lpKpEJVUlkugA8WVhgWHqau0qiTkgZvhv5n/10uaXJEmvTX5N0aHRJlcEmIsABAAAH7T2SP32l1FdRvnE/A+nDiEd9MNLfyhJemHjCyZX0/58lvmZlny5RBZZtHjSYgX4Bbj9HhN6TdDA+IEqqSrRn7f92e3Xdxfn/I+IoAhFBEWYXA0upG/cN4NQOQrXq4oqi/TDf9b/fn3/0Ps1odcEkysCzOf+/2oCAOAj1ljWmF1CI2MdY5u8ds3RNfWf6db0z3jLzBEz9fKWl7X84HJl5GYYQw7hWZU1lXpw+YOSpIcue0iXdbrMI/exWCyakzpHP/znD/Xiphc1a+QsBfkHeeReLcH2l9YjOTZZK79aySBUL5v9yWwdLTyqHh166LlxrWOwMeBpdIAAAOBjHA6H0QEyprtvDEBtqHdsb03qM0mS9NKml0yupv14et3TOpB3QLYIm/5wzR88eq/vD/y+EiMS9XXx11q2e5lH79VcxgkwbH/xecYgVLbAeM3yA8v12o7XZJFFb9zyhiKDI80uCfAJBCAAAPiYfbn7dKrslEIDQnVZkmf+lr+lnEfivrHzDZ0uP21uMe3AwbyDenLdk5KkBeMXyBpi9ej9ggOC9fCIhyVJz61/zicH3tIB0no4u8QIQLwjryxP9310nyTpkZGP6KpuV5lcEeA7CEAAAPAxzu6P1C6pCg4INrmac7u6+9UanDBYZdVl+sv2v5hdTpvmcDj04PIHVVVbpfE9x+u2Abd55b4PDH9AEUER2pWzSyu/WumVe7rC6AAhAPF5zg6Qw/mHVV1bbXI1bd9P/vMT2Uvs6hfXT7+/5vdmlwP4FAIQAAB8zNqj9QGIL87/cLJYLJo1YpYkaeHmhfyhxoPe3f2uPs38VCEBIXr5hpdlsVi8ct8OIR10X0r93yI/t8H35gc4O0BsETaTK8HFdIrqpPDAcNXU1ehw/mGzy2nT/m/P/2nZ7mXyt/jrzVveVGhgqNklwcfMmzdPFoul0cNm+/b3UYfDoXnz5ikpKUmhoaEaO3as9uzZ0+galZWVmjFjhuLi4hQeHq7JkyfrxIkT3v4qzUIAAgCAD3E4HFpzZI0k35z/0dD3B31f8eHxOlF0Qv/Y9w+zy2mT8svz9cgnj0iSfnnlL9UzpqdX7z9r5Cz5W/y1+vBq7cja4dV7X4yxBYYZID7Pz+KnPrF9JIlBqB5kL7Ebg5J/ceUvPDYoGa3fgAEDlJWVZTx27dplvPfMM8/o+eef16JFi7RlyxbZbDZdf/31Ki4uNtbMmjVLH3zwgZYtW6Z169appKREkyZNUm1trRlfxyUEIAAA+JADeQeUXZqtYP9gXd7pcrPLuaCQgBA9OLz+h22OxPWMX3z6C+WU5qhfXD/9dPRPvX7/bh26GVtu5m+Y7/X7XwhbYFoX5oB4lsPh0PSPput0+Wml2FL0y6t+aXZJ8GEBAQGy2WzGo2PHjpLq/z1asGCBHn/8cU2ZMkUDBw7Um2++qbKyMr3zzjuSpMLCQr322muaP3++rrvuOqWkpGjJkiXatWuXVq9ebebXahICEAAAfIiz+yO1S6pCAkLMLaYJHhz+oIL8g7Tp5CZtPLHR7HLalI0nNmrxtsWSpFdufMW0o2jnpM6RJC3bvUzHC4+bUsO50AHSuhgnweQSgHjCG+lv6OMDHyvIP0hv3vKmTx5dDd9x8OBBJSUlqUePHrrjjjt0+HD91rTMzEzZ7XaNGzfOWBscHKwxY8Zo/fr1kqRt27apurq60ZqkpCQNHDjQWOPLCEAAAPAhzvkfY7r59vYXp4SIBE0dNFUSXSDuVF1brQc+fkAOOTTt0mmmbocaljRMV3e/WrWOWr246UXT6miosqbSOH2IDpDWgaNwPedowVE9vKL+1Kbfjv2tBiUMMrkimKW4uFhFRUXGo7Ky8qw1I0aM0FtvvaVPPvlEr776qux2u0aNGqW8vDzZ7XZJUkJCQqPPJCQkGO/Z7XYFBQUpOjr6vGt8GQEIAAA+ouH8j7Hdx5paiyucw1Df3/u+jhUeM7eYNuKlTS/py+wvFRMao2evf9bscvTTUfXbb/687c8qrCg0uRopuzRbkhTkH6SY0BiTq0FT9I3rK4kAxN3qHHW651/3qLiqWKmdUzV31FyzS4KJ+vfvL6vVajyeeuqps9ZMnDhRt956qwYNGqTrrrtOy5cvlyS9+eabxpozh207HI6LDuBuyhpfQAACAICPOHT6kLJKshTkH6QRnUaYXU6TDbENMToEFm1eZHY5rd6xwmN6Ys0TkqRnr39WcWFxJlckTeg1Qf079ldxVbH+vO3PZpdjzP+wRdhaxQ/ckDEENbcsV3lleSZX03b8ccsf9VnmZwoLDNObt7wpfz9/s0uCifbu3avCwkLj8dhjj130M+Hh4Ro0aJAOHjxonAZzZidHTk6O0RVis9lUVVWl/Pz8867xZQQgAAD4CGf3x8jOI1vd0YWPjKw/qeTV7a+qpKrE5Gpat5n/mamy6jJd2fVKTbt0mtnlSKr/28C5qfV/s/ziphdVVVtlaj3G/A+2v7Qa4UHh6hzVWRJdIO5yIO+AHl31qCTpmeueUe/Y3iZXBLNFRkYqKirKeAQHB1/0M5WVldq3b58SExPVo0cP2Ww2rVq1yni/qqpKa9eu1ahRoyRJw4YNU2BgYKM1WVlZ2r17t7HGlxGAAADgI1rb/I+Gbuxzo3rF9FJBRYHeTH/z4h/AOf1z/z/1z4x/KsAvQK/c+Ir8LL7zo9rUQVOVGJGok8UntWz3MlNrMU6AYQBqq8IgVPepravV3R/erfKacl3b41o9eNmDZpeEVmLu3Llau3atMjMztWnTJn33u99VUVGR7r77blksFs2aNUtPPvmkPvjgA+3evVvTpk1TWFiYpk6tn/dltVp17733as6cOfr000+1Y8cO/eAHPzC21Pg63/mvKgAA7ZjD4WjVAYifxU8Pj6gfwvfiphdV56gzuaLWp6SqRDP+M0NS/cyNAfEDTK6oseCAYM0cMVOS9Nz65+RwOEyrhQ6Q1olBqO7z7PpntfHERkUFR+mvN//Vp8JS+LYTJ07o+9//vpKTkzVlyhQFBQVp48aN6tatmyTp0Ucf1axZs/TQQw9p+PDhOnnypFauXKnIyEjjGi+88IJuueUW3XbbbRo9erTCwsL00Ucfyd/f97dg8b8UAAB8wOH8wzpRdEKBfoFK7ZJqdjnNMu3SabIGW3Xw9EH9++C/zS6n1Zm3Zp6OFx1Xjw499Murfml2Oef0wLAHFB4Yrl05u7Tq8KqLf8BDjA4QApBWhUGo7rEre5ee+G/9nKAXJ7yortauJleE1mTZsmX6+uuvVVVVpZMnT+r9999X//79jfctFovmzZunrKwsVVRUaO3atRo4cGCja4SEhGjhwoXKy8tTWVmZPvroI3Xp0sXbX6VZCEAAAPABzu6PyztdrrDAMJOraZ6IoAhNHzpdEkfiumqnfacWbFwgSVp0wyKf/XcgOjRa9w29T1J9F4hZjA4QtsC0Kslx9R0g+3P3m1xJ61VVW6W7PrxL1XXVmpw8WXcPudvskoBWhQAEAAAf0BqPvz2XGSNmyN/ir88yP9OX2V+aXU6rUOeo0wMfP6BaR62+2/+7uqH3DWaXdEGzRs6Sv8Vfqw6vUro93ZQanAGILcJmyv3RPM4tMF+d/ko1dTUmV9M6/W7t75RuT1dsaKwWT1rMKUiAiwLMLgAAgPau4fyPDtM7aM3hNeYW1MBYx1iX1ne1dtWUflP0t71/04KNC/TXm//qmcLakD9v+7M2ndykyKBIvTjhRbPLuajuHbrrewO+p2W7l2n+hvl6+ztve70GtsC0Tl2sXRQaEKrymnJl5mdyaomLNp/crKfWPSVJ+tOkPxEAAs1ABwgAACY7UnBExwqPKcAvQAOO+9bgy+ZwHom7dNdS5ZTmmFyNb8suydbPV/9ckvSHa/6gpMgkkytqGueRuMt2L9PxwuNevXdtXa2yS7MlsQWmtfGz+BmhB3NAXFNeXa67P7xbtY5afX/g9/Xd/t81uySgVSIAAQDAZM7uj8uSLlNodajJ1bTcyM4jdXmny1VVW6VXtrxidjk+bfbK2SqsLNSwxGF66LKHzC6nyYYlDdPV3a9WTV2NXtzk3a6VU2WnVOeok0UWxYfHe/XeaDljECpH4brk8c8e1/7c/UqMSNSiGxaZXQ7QahGAAABgstZ8/O25WCwWowvkj1v/qMqaSpMr8k2rD6/WO7vekZ/FT4snLZa/n+8fH9jQ3FH1XSB/3vZnFVYUeu2+9hK7JCk+PF4Bfuzmbm2cc0AYhNp0a4+sNYYk/2XyXxQTGmNuQUArRgACAIDJ2soA1IZu7XerOkd1Vk5pjt7d/a7Z5ficipoKPbS8vuPjx5f9WMOShplckesm9Jqg/h37q7iqWK9uf9Vr9zXmf7D9pVVyBiBsgWma4spiTfvnNDnk0H0p9/n8kGTA1xGAAABgoqMFR3Wk4Ij8Lf4a1WWU2eW4TaB/oH5y2U8kSQs2LpDD4TC5It/y1BdP6eDpg0qKTNLvr/m92eU0i5/FT3NS50iq//9xVW2VV+5rHIHLANRWyXkULgFI08xZOUdHCo6oe4fuen7882aXA7R6BCAAAJjIuf1leNJwRQZHmlyNe00fNl1hgWHamb3T6HJB/eyDp//3tCTpxQkvKio4yuSKmu/OQXfKFmHTyeKTem/3e165JyfAtG59YvtIknJKc1RQUWBuMT7uPwf/Y3RXvX7z623uvxGAGQhAAAAw0dojbWv+R0MxoTG6e8jdkqQFmxaYW4yPcDgceujfD6mqtkoTe03Urf1uNbukFgkOCNbMy2dKkp7b8JxXOn2MDhC2wLRKUcFRxmlHDEI9v9Plp3Xvv+6VJM0aMatNbZEEzEQAAgCAidYcXSOpbc3/aOjhEQ9Lkj7K+EiHTh8yuRrzLd21VJ9lfqaQgBC9fMPLslgsZpfUYj8a/iOFB4bry+wvtfrwao/fjy0wrR+DUC9uxn9mKKskS8mxyXry2ifNLgdoMwhAAAAwyYmiEzqcf1h+Fj+N7jra7HI8IjkuWTf0vkEOOfTiRu8el+prTpef1uxPZkuSnrjqCfWI7mFyRe4RHRqt+4beJ0l6dv2zHr8fQ1BbPwahXtjf9/7dOCHqre+8pdDA1n88OuArCEAAADCJc/vL0MShrXoOxMU4j8R9Pf31dr3n/+erf65TZafUv2N/zRk1x+xy3GrWyFnys/hp1eFV2mnf6dF70QHS+jEI9fyyS7L1o49/JEl67IrHdHmny02uCGhbCEAAADCJcfxtt7Gm1uFp1/a4VgPjB6q0ulR/2f4Xs8sxxfrj641hhn+68U8K8g8yuSL36t6hu77X/3uSpPkb5nvsPg6Hw+gAsUXYPHYfeJbRAcIMkEYcDofu//h+5ZXnaUjCED0x5gmzSwLaHAIQAABM4jwBZkz3tjcAtSGLxaJZI2ZJkhZuXqiauhpzC/Ky6tpqPfDxA5Kkey69R1d2u9Lkijxj7qi5kqR3d7+r44XHPXKPgooCVdZWSmILTGvWN66vJOng6YOqras1uRrf8dbOt/SvjH8p0C9Qb33nrTYXlAK+gAAEAAATfF38tQ6ePig/i5+u6HqF2eV43NRBUxUXFqdjhcf0wb4PzC7HqxZsXKDdObsVGxqrZ65/xuxyPGZ40nCN7T5WNXU1emnTSx65h3P7S4eQDgoJCPHIPeB5Xa1dFewfrKraKh0pOGJ2OT7heOFxzVxRf6LSb8b+RoMTBptcEdA2EYAAAGAC5/yPS22XqkNIB3OL8YLQwFA9OPxBSe3rSNyjBUc1b+08SdJz455TbFisuQV52NzU+i6QxdsWq7Ci0O3XNwagMv+jVfP381fv2N6SmAMi1W99uedf96ioskgjO4/UT0f/1OySgDaLAAQAABO0l/kfDT04/EEF+gVq/fH12nxys9nleJzD4dBP/vMTlVWXaUy3Mbp7yN1ml+RxE3tPVL+4fiquKvbIvBdjACrbX1o95oB865Wtr2j14dUKDQjVm7e8qQC/ALNLAtosAhAAAEzQXuZ/NJQYmajvD/q+pPptIW3dh/s/1McHPlagX6BeufEVWSwWs0vyOD+LnzELZMGmBaqurXbr9e0ldkl0gLQFHIVb79DpQ/rpqvqOj/933f9Tn9g+JlcEtG3EiwAAeFlWcZYy8jJkkUVXdm39AzHXWNY0ee0Vtiv01o/e0v/t/D99557vqGNRR7fXM9Yx1u3XdFVxZbFm/GeGJOnR0Y+qX8d+JlfkPXcOulO/+PQXOlF0Qu/teU8/GPwDt12bLTBth3MQansOQGrrajXtw2kqqy7T1d2v1o8v/7HZJQFtHgEIAABe9vnRzyVJQ2xDFB0abXI13tXb3ltDjgzRzu479eFlH2r6p9NNqcOV0KY5Xh7/sk6mnlTS6SRdOf5Kram58P18IbRxl+CAYM0cMVOPf/a4nlv/nO4cdKfbul/YAtN2JMfVd4Dsz91vciXmeX7D8/rf8f8pMihSr9/8uvwsNOcDnsb/ygAA8DJj+0u39rP9paHvbviuJOmj4R+pPLDc5Grc76DtoP4x4h+SpIeXP6zgmmCTK/K+Hw3/kcIDw7Uze6dWH17ttusaAQgdIK2ecwuMvcSuosoik6vxvt05u/XL//5SkrRgwgJ169DN5IqA9oEABAAALzMGoHYfa2odZkk9kKqk00kqDi3WqiGrzC7HrWottXr+pudV51enq3dfrcu/utzskkwRExqje1PulSQ9t+E5t13X2AJDB0irZw2xKiE8QVL7G4RaXVutuz64S1W1VZrUZ5J+eOkPzS4JaDcIQAAA8KKc0hzty90nSW1i/kdz+Dv8NWXTFEnS30f+XXWWOpMrcp+Phn+k/Z32K7wiXD9e0b73888aOUt+Fj+t/Gqlvsz+0i3XpAOkbXFug2lvc0D+8MUftMO+QzGhMfrzpD+3iwHJgK8gAAEAwIvWHqnf/jI4YbBiw2JNrsY8E3dMVHhFuI7HHdeWnlvMLsctTkec1l+urT/69d5P71VsSfv9/68k9Yjuoe/2r9/uNH/D/BZfr6y6zNgqQQdI29A39ptBqO2oA2Tr11v1+89/L0l65cZX+HcZ8DICEAAAvKi9z/9wCqsK0w3bb5Ak/T317yZX4x4vj39ZpSGlSj6ZrMlbJ5tdjk/46aj64z3f2fWOThSdaNG1nNtfwgLDFBkU2eLaYD5jEGpe+xiEWlFTobs+uEu1jlrdPuB23TbgNrNLAtodAhAAALzIOf+jvQcgkjRl8xT51flpa8+tyozPNLucFtnSc4s+G/SZ/Or8NPvj2fJ3+Jtdkk8YnjRcY7qNUU1djV7a9FKLruXc/mKLsLFloI1wDkJtLx0gT33xlPbl7pMtwqaXb3jZ7HKAdokABAAAL8kty9WeU3skSVd1u8rkasxnK7Dpiv1XSJLeH/G+ydU0X2VApRbcuECSNGXTFPXJ6mNuQT5m7qi5kqTF2xa36LQPYwAq8z/aDGcHyMHTB1XnaDuzgM6lqLJIL256UZL00oSX2vUWSMBMBCAAAHjJ50c/lyQN6DhAHcM7mlyNb/juxvoZESuHrFRBWIG5xTTT0iuX6uuYrxVXFKcf/pfTHM50Q+8b1C+un4oqi/TqtlebfR1jACozE9qM7h26K9AvUBU1FTpWeMzscjxq8dbFKqwsVL+4frq1/61mlwO0WwFmFwAAQHvR3o+/PZeBxwYq+WSyMjplaOY9M5WYn6jI8khFlUfJWmZVVHmUosqiFFkeKWu5VVFlUYoqj1JYZZgsMn8bxLG4Y3r3inclSTP+M0NhVWEmV+R7/Cx+mpM6R/d9dJ8WbFqgmSNmKtA/0OXr0AHS9gT4Bah3bG/tPbVXGbkZ6t6hu9kleURFTYWe3/i8JOlno38mPwt/Bw2YhQAEAAAvYQDq2Syy6Pvrvq95t8/T8bjjOh53vEmf86/1rw9HvglIosq/CUnKrNq4bqNiQ2MVExqj2LBYxYbGGv83OCDYbbU75NDzk55XjX+NRh4YqSv3tc9jjZvizsF36vHPHteJohP6vz3/pzsH3+nyNeyldkkEIG1Ncmyy9p7aq/25+zW+13izy/GIt3a+JXuJXV2iuuj7g75vdjlAu0YAAgCAFxSGFurL7C8lSWO6E4A0NGbfGL36yqvKseaoKKxIRaFFKgwrVHFosYpCi1QUVqTC0EIVhRWpOLRYlYGVqvWvVX5EvvIj8s+63nufvnfee4UFhtUHIQ8ENwpNGgYpjX5dFqWIiohzDjVdOWSldnbfqeDqYD3874d9oiPFV4UEhGjG5TP0y//+Us+uf1ZTB011eZCp0QHCFpg2xRiEmtc2B6HW1tXqmf89I0makzpHQf5BJlcEtG8EIAAAeMGubrskSf3i+ik+PN7kanxPr+xe6pXdq0lrKwMqzwpFnL8uCi1S2INhOl1+Wnnlecory1NeeZ5Ol59WnaNOZdVlKqsuk1z4M7TFYVFERUSjUCSqPEqbem+SJN295m7ZCmzN+drtyoOXPagn1z2pndk79Wnmp7rukutc+rwxA4QOkDbFOQi1rQYgf9/7d32V/5ViQ2N139D7zC4HaPcIQAAA8IL07umS2P7iDsE1wepY1FEdi849SHbsJ2PPeq3OUaeiyiIjEPnv2P8a3SWN/u8Zr5UFl8lhcag4tFjFocU6qZONrtsju4e+t+F7nviabU5MaIzuTblXCzcv1HPrn3M9AKEDpE1qy0fhOhwOPf2/pyVJM0fMVHhQuMkVASAAAQDAC3Z22ymJAahm8bP4qUNIB3UI6aCe6qmyQ2VN+ly1f7WKQ4rPGZSUB5Vr3JfjFFDHj1NN9cjIR/Tylpf1yVef6MvsLzU4YXCTPlddW61TZack0QHS1jg7QE4Wn1RxZbEigyNNrsh9Vn61Uun2dIUHhusnl//E7HIAiAAEAACPKw4p1le2ryQx/6O1CawNVExpjGJKY8wupU3oEd1D3+3/Xf3fnv/T/A3z9eYtbzbpc9ml2ZLqTw2JDYv1ZInwspjQGHUM66hTZad0IO+AhiUNM7skt3F2fzww7AHFhPJ7COALOIMJAAAP+7Lbl3JYHEqOTZYtglkRaN/mps6VJL2z6x2dKDrRpM84t7/YImwcIdoGtcU5IBtPbNSaI2sU6BeoR1IfMbscAN/gvyAAAHiYc/sL8z8A6bJOl+mqbleppq5GCzctbNJnGIDatrXFOSBPr6vv/kgbnKbOUZ1NrgaAE1tgAADwMOcAVOZ/oCXWWNaYXUIjYx1jm/3Zualz9fnRz/WnbX/S41c9rqjgqAuub9gBgranrR2Fu/fUXv0z45+yyKJHRz9qdjkAGqADBAAADyoJKWH+B3CGG/vcqL5xfVVUWaS/bP/LRdfTAdK29Y3rK6ntBCD/73//T5I0pd8UY3sPAN9AAAIAgAft6rpLdX516pTXSUmRSWaXA/gEP4uf5qTOkSQt2LhA1bXVF1zPEbhtmzEDJDdDdY46k6tpmaMFR/XOrnckST8b/TOTqwFwJgIQAAA8yDn/49Ijl5pbCOBjfjD4B0oIT9DxouP6296/XXAtHSBtW48OPRTgF6DymvImD8b1Vc9veF41dTW6tse1uqzTZWaXA+AMBCAAAHjQzu71AciQo0NMrgTwLSEBIZpx+QxJ0rPrn5XD4TjvWnuJXRIdIG1VoH+gekb3lNS6B6HmluXq1e2vSpIeu+Ixk6sBcC4EIAAAeEhpcKkOJB6QJA05QgACnOlHw3+ksMAwpdvT9VnmZ+ddRwdI29cWjsJ9adNLKq8p1/Ck4bqmxzVmlwPgHAhAAADwkN1ddqvOr05Jp5MUXxRvdjmAz4kNi9U9l94jSXpuw3PnXFPnqKMDpB3oG/vNINRW2gFSXFmsRZsXSZJ+PvrnslgsJlcE4FwIQAAA8BDn8bd0fwDn90jqI/Kz+GnFoRXalb3rrPfzyvJUU1cjiyxKCE8woUJ4g7MDZH/efpMraZ5Xt7+q/Ip89Ynto1v63mJ2OQDOgwAEAAAPYf4HcHGXRF+iW/vdKkmav2H+We87t7/EhcUp0D/Qq7XBe5Jjvz0JprWprKk0/t392eifyd/P3+SKAJyPTwcg8+bNk8ViafSw2WzG+w6HQ/PmzVNSUpJCQ0M1duxY7dmzp9E1KisrNWPGDMXFxSk8PFyTJ0/WiRONp0vn5+crLS1NVqtVVqtVaWlpKigo8MZXBAC0UWVBZcpIqv9Bng4Q4MKcR+K+s+sdnSw62eg9jsBtH5wdIMeLjqu0qtTkalyz5Msl+rr4a3WK7KQ7B91pdjkALsCnAxBJGjBggLKysozHrl3ftkY+88wzev7557Vo0SJt2bJFNptN119/vYqLi401s2bN0gcffKBly5Zp3bp1Kikp0aRJk1RbW2usmTp1qtLT07VixQqtWLFC6enpSktL8+r3BAC0Lc75H7Z8m2yFtot/AGjHRnQeoSu7Xqnqumq9tOmlRu8xALV9iAuLU0xojCTp4OmDJlfTdLV1tXpm/TOSpNmpsxUcEGxyRQAuxOcDkICAANlsNuPRsWNHSfXdHwsWLNDjjz+uKVOmaODAgXrzzTdVVlamd955R5JUWFio1157TfPnz9d1112nlJQULVmyRLt27dLq1aslSfv27dOKFSv0l7/8RampqUpNTdWrr76qjz/+WBkZra8FDwDgG9j+Arjmp6N+Kkn607Y/qaiyyHidDpD2o29c6xuE+sH+D3Qg74CiQ6J1/7D7zS4HwEX4fABy8OBBJSUlqUePHrrjjjt0+PBhSVJmZqbsdrvGjRtnrA0ODtaYMWO0fv16SdK2bdtUXV3daE1SUpIGDhxorNmwYYOsVqtGjBhhrBk5cqSsVquxBgAAVzkDkEuPXGpuIUArcWOfG5Ucm6yiyiK9tv0143U6QNoP5xyQ/bmtYxCqw+HQ0+ueliTNuHyGIoIiTK7o/7N353E15f8fwF/ntu+LFJKShJRsY4ihLNlG9i0myr4vWceaZca+G7sSM4ixjLFUlkJkCS0kFcqWiIr2up/fH/263657W2ydc5v38/HoMfW5R72Yzr33vM/n8/4QQsoi6ALIjz/+CF9fX/j7+2PXrl1ISkqCg4MDUlJSkJRUuB2aiYl0N3ATExPJY0lJSVBVVYWBgUGpxxgby25NaGxsLDmmJDk5OUhPT5d8FF96Qwgh5L8rSyULD2sUvoGn/h+ElI+IE0l6gWy4sQF5BXkA/lcAqaZNS8kqO0kj1BTFmAFy4ckFhL0Kg4ayBib9OInvOISQchB0AaRr167o27cv7Ozs0LFjR5w+fRoAsG/fPskxn+6xzRgrc9/tT4+Rd3x5vs/vv/8uaZyqp6cHGxubMv9OhBBCKr/7ZvdRoFQAk1QTVEulizZCyusX+19grGWMxLREHHlwBECxJTA0A6TSK2qEqigFkKLZH6OajoKRphHPaQgh5SHoAsintLS0YGdnh9jYWMluMJ/O0khOTpbMCqlWrRpyc3Px/v37Uo95/fq1zM968+aNzOyST82dOxdpaWmSjwcPHnzx340QQkjlUbT8pVFCI3AovZhOCPkfdWV1TGpReCd9zbU1YIz9bwkM9QCp9IpmgDxKeQTGGM9pSnfrxS1ceHIByiJleDp48h2HEFJOClUAycnJQXR0NKpXr47atWujWrVqCAwMlDyem5uL4OBgODg4AACaNWsGFRUVqWNevXqFqKgoyTGtWrVCWloabt68KTnmxo0bSEtLkxxTEjU1Nejq6ko+dHR0vuVflxBCiIK6Z3EPAC1/IeRLjGs+DhrKGribdBcXn1ykGSD/IXUM60CJU8LH3I94+eEl33FKtSKkcPbHELshqKVXi+c0hJDyEnQBZMaMGQgODsaTJ09w48YN9OvXD+np6Rg2bBg4jsPUqVPx22+/4fjx44iKisLw4cOhqakJV1dXAICenh5GjBgBT09PXLhwAXfv3sXQoUMlS2oAoEGDBujSpQtGjRqF0NBQhIaGYtSoUfj5559Rr149Pv/6hBBCFFC2SjYemhb2/6AGqIR8viqaVeDRxAMAsDBoIbLyswDQDJD/AlUlVVgaWAIQdiPUh28f4nj0cQDArNazeE5DCPkcgi6APH/+HIMHD0a9evXQp08fqKqqIjQ0FObm5gCAWbNmYerUqRg/fjyaN2+OFy9eICAgQGomxvr169GrVy8MGDAArVu3hqamJk6dOgUlJSXJMX/++Sfs7Ozg7OwMZ2dnNGrUCPv376/wvy8hhBDFd7/mfeQr5cMo3Qg13tfgOw4hCmlay2kQcSJce1a4I5+umi40VTR5TkUqgiL0AVkVsgoMDL3q94JNVeoBSIgiUeY7QGkOHTpU6uMcx2Hx4sVYvHhxiceoq6tj8+bN2Lx5c4nHGBoa4sCBA18akxBCCJEovv0t9f8g/3VBXNAX/9mf+v+E4IbBAAC9F3pf9b2KODLHr/4e5PuqV6Ue/sW/iHkrzALIs7RnOBBReN0wu/VsntMQQj6XoGeAEEIIIYom3LywAEL9Pwj5OgOuDZB8XuVDFR6TkIok9K1w14euR544D44WjmhZsyXfcQghn0nQM0AIIYQQRZKjnIPomtEAqP8HIV/L5oUNGiU0QoR5BAw/GlbYz/0WM02+pf/arJX6RvUBCLMAkpKZgp1hOwEAc9vM5TkNIeRL0AwQQggh5BuJrhmNPOU8VPlQBabvTPmOQ4jCGxswFpZJlnAOd+Y7CqkgRT1AElITkJWXxXMaaVtubkFGXgaaVGuCTpad+I5DCPkCVAAhhBBCvpHi299S/w9Cvl6DFw2wZ/se/Bj3I99RSAWpqlkV+ur6YGCIfRfLdxyJjNwMbLq5CQAwp80ccBw9xxOiiKgAQgghhHwj1P+DEEK+Dsdx/+sDIqBGqLvv7Ma7rHewMrRC3wZ9+Y5DCPlCVAAhhBBCvoFc5VzcN7sPAGic0JjfMIQQosCEthVubkEu1lxfAwCY5TALSiIlnhMRQr4UFUAIIYSQbyDatLD/h8FHA5i9NeM7DiGEKKz6VYTVCPWvyL/wPP05qmtXh5u9G99xCCFfgQoghBBCyDdQfPkL9f8ghJAvVzQD5OHbhzwnAcRMjJUhKwEA01pOg5qyGs+JCCFfgwoghBBCyDdQ1ACVtr8lhJCvU7wHCGOM1ywnH57Ew7cPoa+ujzHNx/CahRDy9agAQgghhHylXKVcPDB7AACwT6AGqIQQ8jWsDK0g4kT4kPsBSR+TeMvBGMOKkBUAgAk/TICumi5vWQgh3wYVQAghhJCvFGMagxyVHOhn6MP8jTnfcQghRKGpKavBQt8CAL99QIKeBuHmi5tQV1bH5B8n85aDEPLtUAGEEEII+UrU/4MQQr6t+kb/3wiVx61wi2Z/jGgyAsZaxrzlIIR8O1QAIYQQQr5SUf8PWv5CCCHfRlEfEL4aoYa9DENAfACUOCXMcJjBSwZCyLdHBRBCCCHkK+SL8nHf7D4AaoBKCCHfiqQRKk9LYIp2fhlsN1iyHIcQovioAEIIIYR8hZgaMchWzYZupi71/yCEkG+kaCtcPgogsSmxOPrgKABgduvZFf7zCfmefv/9d/zwww/Q0dGBsbExevXqhZgY6fNs+PDh4DhO6qNly5ZSx+Tk5GDSpEkwMjKClpYWXFxc8Pz584r8q3wRKoAQQgghX0Gy/OWpPUSMXlYJIeRbKJoB8jT1KXLycyr0Z68KWQUGhh7WPWBrbFuhP5uQ7y04OBgTJkxAaGgoAgMDkZ+fD2dnZ2RkZEgd16VLF7x69UrycebMGanHp06diuPHj+PQoUO4evUqPn78iJ9//hkFBQUV+df5bMp8ByCEEEIUWbjF/zdApf4fhBDyzVTTrgZdNV2k56Qj7l0cGho3rJCf+yL9BfaF7wMAzGkzp0J+JiEV6dy5c1Jfe3t7w9jYGGFhYWjbtq1kXE1NDdWqVZP7PdLS0rBnzx7s378fHTt2BAAcOHAAZmZmOH/+PDp37vz9/gJfiQoghBBCyBfKF+UjslYkgMIZIIQQwocgLojvCBKOzPGbfB+O41CvSj3cenkLD98+rLACyIbQDcgT5+GnWj/BwcyhQn4mId/Khw8fkJ6eLvlaTU0Nampqpf6ZtLQ0AIChoaHUeFBQEIyNjaGvr4927dph+fLlMDYu3A0pLCwMeXl5cHZ2lhxfo0YN2Nra4tq1a1QAIYQQQiqjR9UfIVs1GzpZOrBMtuQ7DiGEKITyFmz0e+sD9sDZsWdR5UqV75anqGjzPus9todtBwDMbTP3u/08Qr4XGxsbqa8XLVqExYsXl3g8YwzTp09HmzZtYGv7v+VeXbt2Rf/+/WFubo4nT55gwYIFaN++PcLCwqCmpoakpCSoqqrCwMBA6vuZmJggKSnpm/6dvjUqgBBCCCFfqGj5S6OERtT/gxBCvjGzFDMAwLMqzyrk5229tRUfcz+ikUkjdLHqUiE/k5Bv6cGDBzA1NZV8Xdbsj4kTJyIiIgJXr16VGh84cKDkc1tbWzRv3hzm5uY4ffo0+vTpU+L3Y4yB47gvTF8x6N0aIYQQ8oWKCiC0/S0hhHx7Zm//vwBi9P0LIJl5mdh4YyMAYE7rOYK/iCNEHh0dHejq6ko+SiuATJo0Cf/88w8uXbqEmjVrlvp9q1evDnNzc8TGxgIAqlWrhtzcXLx//17quOTkZJiYmHz9X+Q7ogIIIYQQ8gUKRAWIqBUBgPp/EELI91DrbS0AhTNAGNh3/Vl77+7F28y3sDSwRP+G/b/rzyKET4wxTJw4EceOHcPFixdRu3btMv9MSkoKnj17hurVqwMAmjVrBhUVFQQGBkqOefXqFaKiouDgIOzeObQEhhBCCPkCsdVikaWWBe0sbVi+pv4fhBDyrZm+MwXHOHzU+Ij3Wu9hmGFY9h/6AnkFeVh9bTUAYKbDTCiL6BKJVF4TJkzAX3/9hZMnT0JHR0fSs0NPTw8aGhr4+PEjFi9ejL59+6J69ep4+vQpfv31VxgZGaF3796SY0eMGAFPT09UqVIFhoaGmDFjBuzs7CS7wggVnd2EEELIF5D0/0hsBCWmxHMaQgipfNTy1WCSaoIkgyQ8M3r23Qogh6IOITEtESZaJhjeePh3+RmECMW2bdsAAI6OjlLj3t7eGD58OJSUlBAZGQlfX1+kpqaievXqcHJywuHDh6GjoyM5fv369VBWVsaAAQOQlZWFDh06wMfHB0pKwn5PRAUQQggh5Avcs7gHgJa/EELI92SWYlZYAKnyDPYJ3/75VsyJsTJkJQBgasupUFdW/+Y/gxAhYaz05WQaGhrw9/cv8/uoq6tj8+bN2Lx587eKViGoBwghhBDymQq4AkTWigRABRBCCPmevncj1OvW13H/zX3oquliXPNx3+VnEEKEgwoghBBCyGeKqxaHDPUMaGVrwSrJiu84hBBSaRVvhPqtMTD81eYvAMD45uOhp673zX8GIURYqABCCCGEfKai/h92iXbU/4MQQr4js5TCGSCJRonf/HtHmEfggdkDqCmpYUrLKd/8+xNChIcKIIQQQshnKiqA0PIXQgj5voqWwLwyeIU8pbxv+r0PtjkIAHBv7I5q2tW+6fcmhAgTFUAIIYSQz1DAFSCiVgQAoPHTxvyGIYSQSs7ogxE0cjQgFonx0uDlN/u+cdXicKPuDYjEIsxsPfObfV9CiLBRAYQQQgj5DE9MnuCjxkdo5miiblJdvuMQQkilxoFDzZSaAL5tI9SDrQtnfzjed4SlgeU3+76EEGGjAgghhBDyGYq2v7VNtIWSmPp/EELI9/atG6G+MHiBoIZBAIDBVwd/k+9JCFEMVAAhhBBCPkO4eWH/D1r+QgghFeNbN0I93PowxCIxfnz0I6xe005ehPyXUAGEEEIIKScxJ0aEeWH/D/sEaoBKCCEVoagR6rdYApOinYJzjc8BAFyvun719yOEKBYqgBBCCCHl9MT4CdI106Geqw7rl9Z8xyGEkP+EWinfbgnM3y3/Rp5yHhomNoRdot1Xfz9CiGKhAgghhBBSTsX7fyiLlfkNQwgh/xGmKaYAgHTNdKRppn3x9/mo/hEnfzgJoHD2Bwfum+QjhCgOKoAQQggh5UT9PwghpOJp5GnAJNUEAJBY5cv7gJxsfhKZapmo/bo2Wsa2/FbxCCEKhAoghBBCSDlQ/w9CCOHP1zZCzVHOwd8t/wYADA4ZDBGjyyBC/ovozCeEEELKIaFqAtK00qCWp4Z6L+vxHYcQQv5TvrYR6rnG5/Be+z1MUk3gFOX0LaMRQhQIFUAIIYSQcrhnfg9AYf8PlQIVfsMQQsh/TNEMkC9phFogKsDh1ocBAANDBlIPJ0L+w6gAQgghhJRDuEVh/w9a/kIIIRXva2aAXGp4Ca8MXkE/Qx9d73X91tEIIQqECiCEEEJIGRiYpABCDVAJIaTi1XpbuBXuS4OXyBfll/vPMTAcbHMQANA3tC/U89S/Sz5CiGKgAgghhBBShoSqCUjVSoVqnirqvaD+H4QQUtGMPhhBPVcdBUoFeGnwstx/LrRuKB6bPIZmjiZ63er1/QISQhQCFUAIIYSQMhRtf9vwWUOoFqjynIYQQv57REyEmik1AXzeMpii2R89bveAdrb2d8lGCFEcVAAhhBBCykD9PwghhH+f2wg1slYkIs0joZKvgn6h/b5nNEKIgqACCCGEEFIKBoZ7FvcAAPZPqQBCCCF8+dxGqAdbF87+cA53htEHo++WixCiOKgAQgghhJTiWZVneK/9Hir5KrB5YcN3HEII+c8qaoRanhkgj40f43q96xCJRRgcMvh7RyOEKAgqgBBCCCGlKJr9YfPcBqr51P+DEEL4UrQEJtEoscxji3p/tH3QFqbvTL9rLkKI4qACCCGEEFIK2v6WEEKEoagAkqaVhnSN9BKPe6X/ChdtLwIAXK+6Vkg2QohioAIIIYQQUgIG9r8GqNT/gxBCeKWRqwGj9MJeHqUtgznscBhikRg/xP2Aukl1KyoeIUQBUAGEEEIUUKZqJrZ32g6/Vn5I0U7hO06lVMAV4LLNZaTopBT2/3hO/T8IIYRvZTVCfaf1DmebnAVAsz8IIbKU+Q5ACCHk82SpZmHOkDmINI8EAOzotAPNHjeDc7gz2jxsA/U8dZ4TKrbHxo8RYB+A843OI0WnsLhk+8wWavlqPCcjhBBS620t3LW8W+IMkGM/HkOuSi4aPG9AM/cIITKoAEIIIQokSyULc1wLix9a2VqwSLbA/Vr3ccvqFm5Z3YJmjibaPmiLzuGd0SihEUSMJvqVxzutd7hgdwEB9gGIqx4nGdfN1EX7qPYYeG0gj+kIIYQUKa0RaoZaBk60OAGgcPYHB64ioxFCFAAVQAghREFkq2Rjnus8RFhEQCtbC2t816D+y/p4YfgCgY0CEWAfgFcGr3CuyTmca3IOJqkm6BTRCZ3CO6FWSi2+4wtOjnIOQuqFIMA+ALesbkEsEgMAlAuU0epRKziHO+PH2B+hUqDCc1JCCCFFSlsC80/zf5ChngHzN+ZwiHGo6GiEEAVABRBCCFEAOco5mDd4Hu7WvgvNHE2s2r8K9V/WBwCYvjPF8KDhGBY0DFG1ouBv74+ghkF4rf8aB9oewIG2B9DgeQM4hzvDKcoJell6PP9t+CPmxIgyi0KAfQCCGgYhQz1D8pjNMxt0iuj0n/83IoQQISsq6L8wfIECUQGUxEoAgFzlXBxteRQAMOjqIJoBSQiRiwoghBAicLnKuZg/eD7uWN6BRo4GVh5YCZsXsg05OXCwS7SDXaIdJp2dhGv1riHAPgA3rW4iumY0omtGY2uXrf/J2Q0vDF8goFEAAu0D8crglWTcJNUEzuHO6BTRSTKtmhBCiHAZpxlDNU8VuSq5SNJPguk7UwCAv70/3um8g3GaMTpEdeA5JSFEqKgAQgghAparnIsFAxfgdp3bUM9Vx8o/V8L2mW2Zf04tXw1O953gdN8J77Te4aLdRQTYByC2eiyuNLiCKw2uSPpbOIc7ox1rB46rXGul32W9wz/N/0GAfQDum92XjGvmaKLd/XZwDndGo0Tqk0IIIYpExESomVITj6s9RmKVRJi+M0WBqACHWh8CAAy4NuA/U9wnhHw+KoAQQohA5SrlYuGAhbhZ9ybUc9Wx4s8VsEu0++zvY5hhiH6h/dAvtB+eGD9BQKPCHU7e6r7FiRYncKLFCWzcuhFu9m4Y2mgoaukpbr+QvII8nI07C99wX5x6dAq5P+cCAERiEZrHN4dzuDNax7SmnXIIIUSBmaWY4XG1x3hm9AytYlshuEEwXhq+hG6mLrrd6cZ3PEKIgFEBhBBCBChPKQ9eA7xww/oG1PLU8Ptfv8M+4eu386udXBtjzo/ByAsjcbf2XQTYB+BKgyuISYnBvIvzMO/iPDhaOMKtkRv62vSFrpruN/jbfF+MMYS9CoNvuC8ORh3E28y3kscskyzRObwzOkR2QJWPVXhMSQgh5Fup9bawUJ9olAgGhoNtDgIA+tzoA408DT6jEUIEjgoghBAiMHlKefDq74Vr9a5BNU8Vy/9ajsZPG3/Tn6HElND8cXM0f9wcmacz8ebGG/hG+OLSk0sIehqEoKdBmHBmAno36A23Rm7oaNnxm/78b+FZ2jP8GfknfMN9Ef02WjJeTbsahtgNwS+NfsH76u95TEgIIeR7KOrZ9KzKM9yyuoW46nFQz1VH75u9eU5GCBE6KoAQQoiA5IvysbTvUoTUD4FKvgqWH1yOZk+afdefqZmriWGNh2FY42FITEvEnxF/wjfCFw/fPsRfkX/hr8i/UF27Otp2agvncGdYJlt+1zylyVLNwuUGlxFgH4C7G+6CgQEA1JXV0bt+b7jZFxZrlEWFL29BCOItKyGEkO+j+Fa4f7X5CwDQ43YP6GYJf9YiIYRfVAAhhBCBKBAVYFnfZbhicwUq+SpYdmgZmj9uXqEZaunVwtyf5mJOmzm4/fK2ZFnJq4+vcLj1YRxufRhWr6zgHO6MDlEdYPjR8LtnKuAKcK/2Pfjb++NKgyvIVs2WPNbOvB3c7N3Qt0Ff6KnT1rWEEPJfUDQD5L32e7zXfg/lAmX0D+3PcypCiCKgAgghhAhAgagAy/ssR3DDYKjkq2DJ4SVoEdeCtzwcx+EH0x/wg+kPWNt5Lc7GnsXaRWtxvd51xFWPQ1z1OGx33o4f4n6QNBZVy1f7phmeVH2CAPv/NWwtUjOlJpzDnbHg5AJY6Ft8059JCCFE+LRytFDlQxWk6KQAADqFd0LV9Ko8pyKEKAIqgBBCCM8KuAL83ut3XLK9BOUCZXj5eaFlbEu+Y0moKqmiZ/2e0PPTQ7pGOoIaBkm2lr1hfQM3rG9AK1sLjvcd4RzuDNtntl+8tex7rfe4YHuhcMveGrGScZ0sHThFOaFzeGc0eN4AHDgqfhBCyH+Y2VszpOikgGMcBoUM4jsOIURBUAGEEEJ4VMAVYGWvlbjQ6AKUCpSwyG8RWj1qxXesEulm6cLltgtcbrvgueFzBNgHIMA+AK/1X+N0s9M43ew0qr+vjk7hneAc4QzTd6Zlfs9c5Vxcs76GAPsA3Kh7A2KRGACgVKCEVo9awTncGT/G/gjVAtXv/dcjhBCiICzeWOBe7Xv4Kfon1EpR3O3bCSEViwoghBDCEzEnxuqeqxFoHwiRWIRFRxahTUwbvmOVW813NeFxyQPDg4YjslYkAuwDENQwCK8MXsHX0Re+jr5o+KwhnMOd4XjfUao5HQNDlFkUAuwDcMn2EjLUMySP1X9eH87hzmh/vz30MqmvByGEEFmDrw6GZo4m+t7oy3cUQogCoQIIIYTwQMyJsabHGvg39odILMLCowvx08Of+I71RURMBPsEe9gn2GPS2Um4Vq9wNsetOrdw3+w+7pvdx5YuW9DqUSs4RTkhoWoCAuwD8NLwpeR7GKcZS2aN1HpLd/IIIYSUzjjdGKMujOI7BiFEwVABhBBCKpiYibHu53U42/QsRGIR5v09D+0etOM71jehnqeO9lHt0T6qPVK0U3DBrrCfR3y1eFy2uYzLNpclx2rkaKDdg3ZwDneGfYL9F/cNIYQQQgghpDyoAEIIIRWIMYYJpyfgdLPTEIlF+PXYr2h/vz3fsb6LKh+rYMD1ARhwfQDiTOIQaB+I69bXYZJqAudwZ7R52AYaeRp8xySEEEIIIf8RVAAhhJAKwhjDxDMTsT1sOzjGYc6JOegQ1YHvWBXC6rUVrAKsMC5gHN9RCCGEEELIfxTNNyaEkArAGMPUc1Pxx+0/wIHDrBOz0CmiE9+xCCGEEEII+c+gAgghhHxnjDF4Bnhi081NAIDdLrvRJbwLz6kIIYQQQgj5b6ElMIQQ8h0xxjArcBbWh64HAOzqsQseTTwQhCB+gxFCCCGk3IK4IL4jSHFkjnxHIEQh0QwQQgj5ThhjmHthLtZcXwMA2N59O0Y2HclzKkIIIYQQQv6bqABCCCHfAWMM8y/Ox8qQlQCArd22YkzzMTynIoQQQggh5L+LCiCEEPIdLA5ajN+u/gYA2NRlE8b/MJ7nRIQQQgghhPy3UQGEEEK+sSXBS7Dk8hIAwPrO6zHpx0k8JyKEEEIIIYRQE1RCCPmGDvx0AHuC9gAA1nRag6ktp/IbiBBCCCGEEAKAZoAQQsg381ebv7CnQ2HxY2XHlfB08OQ5ESGEEEIIIaQIFUAIIeQbOORwCLs67gIA/Nb+N8xqPYvnRIQQQgghhJDiqABCCCFf6UjLI9jhvAMA4H7RHXN/mstzIkIIIYQQQsinqABCCCFf4eiPR/FHlz8AAMOChsHtshvPiQghhBBCCCHyUAGEEEK+0PEWx7G161YAwC/Bv2BY0DCeExFCCCGEEEJKQgUQQgj5Aiebn8SmbpsAAK5XXOF+yR0cOJ5TEUIIIYQQQkpCBRBCCPlMp5qdwoafNwAABoYMxMgLI6n4QQghhBBCiMBRAYQQQj7D6Sansa7HOgBA/2v9MSZwDBU/CCGEEEIIUQBUACGEkHI61/gc1rqsBQD0De2LcQHjqPhBCCGEEEKIgqACCCGElIO/vT9W9VwFxjH0vtEbE85NoOIHIYQQQgghCoQKIIQQUoZAu0Cs7LUSjGNwueWCSWcnUfGDEEIIIYQQBUMFEEIIKcVF24tY0XsFGMfw8+2fMeXMFCp+EEIIIYQQooCoAEIIISUIsgnC8j7LIRaJ0T2sO6adngYRo6dNQgghhBBCFBG9kyeEEDmCGwRjab+lEIvE6HK3C6b/O52KH4QQQgghhCgwejdPCCGfuFL/iqT44XzPGTP+mUHFD0IIIYQQQhQcvaMnhJBiQuqFwKu/FwqUCtAxoiNmnZwFJabEdyxCCCGEEELIV1LmOwAh3xMDg1gkRr4oH3lKechXyod6njrU89T5jkYE6Lr1dSwesBgFSgVoH9kec07MoeIHIYQQQgghlQQVQMgXKeAKkKaZhnylwsJCgVKBpMBQVGyQN5avlP+/D1G+5M9fvHQRuQW5yC3IRV5BXuF/xXn/GxPn4ZXrK5k//+n3zFPKQ4GoQGqccUwmv0aOBgwyDKCfoS/5r+FHQ8nXBhkGMPhYOK6TrUPLHyoxBoZc5VzcrnMbXv29kK+UD8coR/x6/Fcoian4QQghhBBCSGVBBRDyRZIMkjB08tBv9w0vl+MY62/347LUspClloWXhi/LPFapQAn6mfqSgkhRgeRmyE2YaJnAWMsYJtqF/zXWMoaqkuq3C0rKlFeQhzTNNHxU+4iP6h+RoZ6BDLUMmc8/qn+UGc9QL/w6Xylf8v3aPmiLecfmUfGDEEIIIYRUWn/88QdWr16NV69eoWHDhtiwYQN++uknvmN9d1QAIV9EqaDw4lC5QBnKBcpQKVCR+lxJrFT43wKl/z0mlj6u+LEWYy2gIlKBqpIqVJVUoaJU7PP/H3886jGUxcoyf75orKSf9+lYlmoW3mu9L/zQfo9UrdQSv/6o8REFSgVI0UlBik6K1L+B33k/uf82+ur6ksKIqL9Iqmiin1FYSCn6WjNHExy47/7/S6jEnBiZapn4qPZRUowoXpjIUMvAmcAzSM1ORVpOGtKy06Q+T8tJQ2ZeJjDr67OIxCI4hzvD85QnlMX01EgIIYQQQiqnw4cPY+rUqfjjjz/QunVr7NixA127dsWDBw9Qq1YtvuN9V/Qun3wRkzQTXFx88ZtdvDv+41jmMUH3gr7Jz9LK0YJWjhZqvqtZ5rG5SrlI00r7X4GkWJFEdawqkjOS8frjayRnJCM5IxkFrACp2alIzU5FTEoM0LD076+SryK19Kb4Uhz9DH0YZhR+rpqvCgYGxv3vQ8yJZcYY/n+8hDHxEzHETAzGWOF/Ufjf4mOR9SP/9z3+/8+Cg9TPK3OMY8hWyZY766L455lqmXKXKEm5Vr7/rxo5GoX/b7O1oJ2tDe0cbcnnxccln+doF36dXfj7oJGrQUudCCGEEEJIpbdu3TqMGDECI0eOBABs2LAB/v7+2LZtG37//Xee031fVAAhX+S/MmtBtUAVVdOromp6VZnHHP0dpb4WMzHeZ73H64z/FUSuelxFqlYq3mm/k8wsKfo6WzUbecp5eK3/Gq/1X1fMX8i3HMcM+u4pZKjkqxQWLf6/QFG8MNFgQgPoqelBT10P+ur6ks/11P7/a3U93NW+S0tWCCGEEEIIKUNubi7CwsIwZ84cqXFnZ2dcu1bOO48KjAoghHwjIk6EKppVUEWzCmyq2gAAjG8al3h8lkrW/5bbfLL0JlUrFe+1/zfrJF8pHxzjJDMUREwEjnGfNcYxDtoNtSHiROA4DiJOVPg5OKmxD9c+FI4xEcCKfY/PGOMYB/U8dbkzMIpmZhQvdKgWlNw3xfGkY5n/9lT8IIQQQggh/3UfPnxAenq65Gs1NTWoqalJHfP27VsUFBTAxMREatzExARJSUkVkpNPVAAhhCcaeRrQSNVA9dTqFfYzHZljmccEjQz67jkIIYQQQggh35aNjY3U14sWLcLixYvlHstx0jP6GWMyY5URFUAIIYQQQgghhBAF9+DBA5iamkq+/nT2BwAYGRlBSUlJZrZHcnKyzKyQyog6/hFCCCGEEEIIIQpOR0cHurq6kg95BRBVVVU0a9YMgYGBUuOBgYFwcHCoqKi8oRkghBBCCCGEEELIf8T06dPxyy+/oHnz5mjVqhV27tyJxMREjB07lu9o3x0VQAghhBBCCCGEkP+IgQMHIiUlBUuWLMGrV69ga2uLM2fOwNzcnO9o3x0VQAghhBBCCCGEkP+Q8ePHY/z48XzHqHDUA4QQQgghhBBCCCGVHhVACCGEEEIIIYQQUulRAYQQQgghhBBCCCGVHvUAIYQQQgghhJBKJogL4juCFEfmyHcEQqgAQgghhBBCCCGEf1S0Id8bLYEhhBBCCCGEEEJIpUcFEEIIIYQQQgghhFR6VAAhhBBCCCGEEEJIpUcFEEIIIYQQQgghhFR6VAAhhBBCCCGEEEJIpUcFEEIIIYQQQgghhFR6VAAhhBBCCCGEEEJIpUcFEEIIIYQQQgghhFR6VAAhhBBCCCGEEEJIpUcFEEIIIYQQQgghhFR6VAAhhBBCCCGEEEJIpUcFEEIIIYQQQgghhFR6VAD5xB9//IHatWtDXV0dzZo1w5UrV/iORAghhBBCCCGEkK9EBZBiDh8+jKlTp2LevHm4e/cufvrpJ3Tt2hWJiYl8RyOEEEIIIYQQQshXoAJIMevWrcOIESMwcuRINGjQABs2bICZmRm2bdvGdzRCCCGEEEIIIYR8BWW+AwhFbm4uwsLCMGfOHKlxZ2dnXLt2Te6fycnJQU5OjuTrtLQ0AMCrV6++X9Bv5A3e8B1ByvPnz8s8hjJ/PcpcMShzxaDMFYMyVwzKXDEo8/enaHkBylxRKmtmISi6/hSLxTwnET4qgPy/t2/foqCgACYmJlLjJiYmSEpKkvtnfv/9d3h5ecmMt2jR4rtkrNTM+A7wBShzxaDMFYMyVwzKXDEoc8WgzBVD0TIrWl6AMlcUyvzdvX79GrVq1eI7hqBRAeQTHMdJfc0YkxkrMnfuXEyfPl3ydX5+PqKjo2FmZgaRqPKvLvrw4QNsbGzw4MED6Ojo8B2nXChzxaDMFYMyVwzKXDEoc8WgzBWDMn9/ipYXoMwVRREzfy2xWIzXr1+jSZMmfEcRPCqA/D8jIyMoKSnJzPZITk6WmRVSRE1NDWpqalJjrVu3/m4ZhSY9PR0AYGpqCl1dXZ7TlA9lrhiUuWJQ5opBmSsGZa4YlLliUObvT9HyApS5oihi5m+BZn6UT+WfplBOqqqqaNasGQIDA6XGAwMD4eDgwFMqQgghhBBCCCGEfAs0A6SY6dOn45dffkHz5s3RqlUr7Ny5E4mJiRg7dizf0QghhBBCCCGEEPIVqABSzMCBA5GSkoIlS5bg1atXsLW1xZkzZ2Bubs53NEFSU1PDokWLZJYBCRllrhiUuWJQ5opBmSsGZa4YlLliUObvT9HyApS5oihiZlJxOMYY4zsEIYQQQgghhBBCyPdEPUAIIYQQQgghhBBS6VEBhBBCCCGEEEIIIZUeFUAIIYQQQgghhBBS6VEBhBBCFFhqairfESoVxhgSEhKQlZXFd5RKLS8vD05OTnj06BHfUcotLy8P7u7uePz4Md9RKq179+7xHYEIFJ1/hJBvhQog5LPs378frVu3Ro0aNZCQkAAA2LBhA06ePMlzspLFx8dj/vz5GDx4MJKTkwEA586dw/3793lORvh07tw5XL16VfL11q1b0bhxY7i6uuL9+/c8JivZypUrcfjwYcnXAwYMQJUqVWBqaorw8HAek5Xszp07iIyMlHx98uRJ9OrVC7/++ityc3N5TCYfYwx169bF8+fP+Y5SqamoqCAqKgocx/EdpdxUVFRw/PhxvmN8EUV5HWzatCmaNWuGbdu2IS0tje84n62goABHjx7F0qVLsWzZMhw9ehT5+fl8xyqXZ8+eCfp5T5HPv/z8fJw/fx47duzAhw8fAAAvX77Ex48feU5WstTUVOzevRtz587Fu3fvABS+nr948YLnZLLy8vJgaWmJBw8e8B2FKAgqgJBy27ZtG6ZPn45u3bohNTUVBQUFAAB9fX1s2LCB33AlCA4Ohp2dHW7cuIFjx45JXmwiIiKwaNEintPJYowhKCgIS5cuxYgRIzB48GBMnjwZ3t7eePbsGd/x5EpLS4OPjw9GjBiBDh06oFWrVnBxccGiRYtw7do1vuOVaObMmUhPTwcAREZGwtPTE926dcPjx48xffp0ntPJt2PHDpiZmQEAAgMDERgYiLNnz6Jr166YOXMmz+nkGzNmjOQu/+PHjzFo0CBoamriyJEjmDVrFs/pZIlEItStWxcpKSl8R6n03NzcsGfPHr5jfJbevXvjxIkTfMf4LIr0OhgSEoKmTZtizpw5qF69OoYOHYpLly7xHatcoqKiYG1tjWHDhuH48eM4duwYhg8fjrp160oVgYUkPz8fCxYsgJ6eHiwsLGBubg49PT3Mnz8feXl5fMeToYjnX0JCAuzs7NCzZ09MmDABb968AQCsWrUKM2bM4DmdfBEREbC2tsbKlSuxZs0ayUzT48ePY+7cufyGk0NFRQU5OTkKVVAn/KJtcEm52djY4LfffkOvXr2go6OD8PBwWFpaIioqCo6Ojnj79i3fEWW0atUK/fv3x/Tp06Uy37p1C7169RJMJTsrKwvr16/HH3/8gZSUFNjb28PU1BQaGhp49+4doqKi8PLlSzg7O2PhwoVo2bIl35Hx6tUrLFy4EH/++SeqVauGFi1ayGQOCwuDubk5Fi1ahIEDB/IdWYq2tjaioqJgYWGBxYsXIyoqCkePHsWdO3fQrVs3JCUl8R1RhoaGBh49egQzMzNMmTIF2dnZ2LFjBx49eoQff/xRkDNX9PT0cOfOHdSpUwcrV67ExYsX4e/vj5CQEAwaNEiQhb3Tp09jxYoV2LZtG2xtbfmO89lyc3Px5MkT1KlTB8rKynzHKdGkSZPg6+sLKysrNG/eHFpaWlKPr1u3jqdkJVu+fDnWrFmDDh06oFmzZjKZJ0+ezFOykinK62BxWVlZ8PPzg7e3N65cuQILCwt4eHhg2LBhqFmzJt/x5GrZsiWMjY2xb98+GBgYAADev3+P4cOHIzk5GdevX+c5oayxY8fi+PHjWLJkCVq1agUAuH79OhYvXoyePXti+/btPCeUpojnX9F75j179qBKlSqS8y84OBgjR45EbGws3xFldOzYEU2bNsWqVauknjOuXbsGV1dXPH36lO+IMlasWIGHDx9i9+7dgn7dI8JAvyGk3J48eYImTZrIjKupqSEjI4OHRGWLjIzEX3/9JTNetWpVQd3htba2xo8//ojt27ejc+fOUFFRkTkmISEBf/31FwYOHIj58+dj1KhRPCT9H3t7e7i5ueHmzZslXiRmZWXhxIkTWLduHZ49eyaoux2qqqrIzMwEAJw/fx5ubm4AAENDQ8nMEKExMDDAs2fPYGZmhnPnzmHZsmUACmcOFc3IEhrGGMRiMYDCf+eff/4ZAGBmZibIoikADB06FJmZmbC3t4eqqio0NDSkHi+aDiw0mZmZmDRpEvbt2wcAePToESwtLTF58mTUqFEDc+bM4TmhtKioKDRt2hQAZHqBCPVO3u7du6Gvr4+wsDCEhYVJPcZxnCAvwBTldbA4DQ0NDBs2DMOGDUN8fDy8vb2xY8cOLF68GJ06dcKZM2f4jigjPDwct2/flhQ/gMLn7OXLl+OHH37gMVnJDh48iEOHDqFr166SsUaNGqFWrVoYNGiQ4Aoginj+Xb16FSEhIVBVVZUaNzc3F2TxEQBu3bqFHTt2yIybmpoK8uYQANy4cQMXLlxAQEAA7OzsZIpjx44d4ykZESIqgJByq127Nu7duwdzc3Op8bNnz8LGxoanVKXT19fHq1evULt2banxu3fvwtTUlKdUss6ePVvmnWZzc3PMnTsXnp6ekv4rfLp//z6qVq1a6jEaGhoYPHgwBg8eLJn2KRRt2rTB9OnT0bp1a9y8eVPSW+PRo0eCvcPYp08fuLq6SpZoFL1pvXfvHqysrHhOJ1/z5s2xbNkydOzYEcHBwdi2bRuAwoKqiYkJz+nkE+qSvrLMnTsX4eHhCAoKQpcuXSTjHTt2xKJFiwRXAFGUpQ3FPXnyhO8In01RXgdLUqdOHcyZMwdmZmb49ddf4e/vz3ckuerVq4fXr1+jYcOGUuPJycmCfX5WV1eHhYWFzLiFhYXMBbsQKOL5JxaL5d6geP78OXR0dHhIVDZ1dXW5N4JiYmLKfN/HF319ffTt25fvGERRMELKae/evczU1JQdOnSIaWlpsYMHD7Jly5ZJPheimTNnsjZt2rBXr14xHR0dFhsby65evcosLS3Z4sWL+Y4nV05OTomPvXnzpgKTlN/79+9LfCw2NrbignyGhIQE1r17d9aoUSO2e/duyfjUqVPZpEmTeExWstzcXLZ69Wo2efJkdufOHcn4+vXr2a5du3hMVrLw8HBma2vLdHV1pc65iRMnssGDB/OYrPKpVasWu379OmOMMW1tbRYfH88YKzwHdXR0+IxWpmfPnrHnz5/zHeOziMViJhaL+Y5RJkV8HSwSFBTE3NzcmJaWFtPV1WUjR46U/I4LzenTp1nDhg3ZkSNH2LNnz9izZ8/YkSNHmJ2dHTt9+jRLS0uTfAiFl5cXGzx4MMvOzpaMZWdnsyFDhgj+d0NRzr8BAwawUaNGMcYKn5cfP37MPnz4wNq3b8+GDx/Oczr5Ro0axXr16sVyc3MlmRMSEliTJk3YlClT+I5HyFejAgj5LDt37mS1atViHMcxjuNYzZo1pS4ehSY3N5e5uroykUjEOI5jKioqTCQSsaFDh7L8/Hy+48nVs2dPVlBQIDOelJTEGjZsyEOisrVq1YplZWXJjD98+JCZmprykIgIXVZWFsvNzeU7Rony8/PZ0aNH2dKlS9myZcvYsWPHBPucUURDQ0NS9CheALl37x7T1dXlM5pcBQUFzMvLi+nq6jKRSMREIhHT09NjS5YskfscKBT79u1jtra2TE1NjampqTE7Ozvm6+vLd6wSKdrrYGJiIluyZAmztLRkHMex1q1bs71797KPHz/yHa1URe+LOI6T/D7L+1okEvEdVaJXr15MR0eHGRkZsQ4dOrAOHTowIyMjpqury3r37i31IRSKdv69ePGCWVtbswYNGjBlZWXWsmVLVqVKFVavXj32+vVrvuPJlZaWxlq3bs309fWZkpISMzMzYyoqKqxt27aCPg/z8vJYYGAg2759O0tPT2eMFf77f/jwgedkRGioCSr5Im/fvoVYLIaxsTHfUcolPj4ed+/ehVgsRpMmTVC3bl2+I5Xoxx9/hI2NDby9vSVjSUlJcHJyQsOGDXH06FEe08nXvXt3FBQU4N9//5U0n4qOjkb79u0xYMAAbNy4keeE8hWtLY+Pj8fGjRthbGyMc+fOwczMTGYas1Ds378fO3bswOPHj3H9+nWYm5tjw4YNqF27Nnr27Ml3PLlSU1Nx9OhRxMfHY+bMmTA0NMSdO3dgYmIiyCn4cXFx6NatG168eIF69eqBMSZpPnv69GnUqVOH74hytWvXDv369cOkSZOgo6ODiIgI1K5dGxMnTkRcXBzOnTvHd0Qpc+fOxZ49e+Dl5YXWrVuDMYaQkBAsXrwYo0aNwvLly/mOKGPdunVYsGABJk6cKJV569atWLZsGaZNm8Z3xBIpwutgp06dcOnSJVStWhVubm7w8PBAvXr1+I5VLsHBweU+tl27dt8xSfm5u7uX+9ji70n4oqjnX1ZWFg4ePIg7d+5ALBajadOmGDJkiEx/KaG5ePGiVOaOHTvyHalECQkJ6NKlCxITE5GTkyPpgTV16lRkZ2cLrp8N4Rmf1RdCiKy3b98yGxsbNnXqVMYYY8+fP2fW1tasf//+gr0rmpWVxdq0acP69+/PxGIxi4yMZMbGxmzatGl8RytRUFAQ09DQYB07dmSqqqqSu+UrV65kffv25TmdfH/88QczMjJiy5Ytk7rb7+3tzRwdHXlOJ194eDgzMjJiVlZWTFlZWZJ5/vz57JdffuE5nXxdu3ZlXbp0YSkpKZKxt2/fsi5durBu3brxmKx0ISEhTEdHh40dO5apq6uzKVOmsI4dOzItLS12+/ZtvuPJqF69Ojt58qTM+IkTJ1iNGjV4SFQ2CwsLtm/fPplxHx8fZmFhwUOiyqVHjx7sxIkTgpyZQvhH5x8pSc+ePdnQoUNZTk6O1AzIoKAgZmVlxXM6IjQ0A4SUqkmTJuXuxn/nzp3vnKZ8pk+fXu5jhbjNIlDYHKtNmzbo3bs3Tp8+jaZNm+LPP/+EkpIS39FKlJaWBkdHR9SpUwdXrlyBm5sbVq9ezXesEini1pCKuBW1Im6np6WlhdDQUNjZ2UmNh4eHo3Xr1vj48SNPycoWGRmJNWvWICwsTHLXbvbs2TJ/FyFQV1dHREQErK2tpcZjYmLQuHFjZGVl8ZSsZOrq6oiKipJpahkbGws7OztkZ2fzlKxkBQUF8PHxwYULF5CcnCzZlanIxYsXeUomS0lJCa9evVKY2aWfSk1NxZ49exAdHQ2O42BjYwMPDw/o6enxHa1Ub968QUxMDDiOg7W1tWAbXSri+QcUNlcPCgqSe/4tXLiQp1Slu3DhQonPGXv37uUpVcmMjIwQEhKCevXqSb3XePr0KWxsbCS7/hEC0C4wpAy9evXiO8Jnu3v3brmOE+o2iwBQs2ZNBAYGok2bNujUqRP2798vuLyfdgjnOA6HDx9Gx44d0bdvXyxYsEByjK6uLh8RS6WIW0Mq4lbUiridnpqaGj58+CAz/vHjR0HujFCcnZ2dZBtcobO3t8eWLVuwadMmqfEtW7bA3t6ep1Sls7Kygp+fH3799Vep8cOHDwtySQkATJkyBT4+PujevTtsbW0F91pSnCLfk7t9+zY6d+4MDQ0NtGjRAowxrFu3DsuXL0dAQIBky2chycjIwKRJk+Dr6yu5yFVSUoKbmxs2b94MTU1NnhNKU8Tzb9euXRg3bhyMjIxQrVo1qfOP4zhBFkC8vLywZMkSNG/eHNWrVxf0c0YRRdxth/CHCiCkVIsWLeI7wmdTxK0VDQwM5L7AZGZm4tSpU6hSpYpk7N27dxUZrUT6+vpyMzPGsH37duzYsQOMMXAcJ/dFiW+KuDWkIm5FrYjb6f38888YPXo09uzZgxYtWgAAbty4gbFjx8LFxYXndKUTi8WIi4uTe9eubdu2PKWSb9WqVejevTvOnz+PVq1ageM4XLt2Dc+ePcOZM2f4jieXl5cXBg4ciMuXL6N169bgOA5Xr17FhQsX4Ofnx3c8uQ4dOgQ/Pz9069aN7yiV2rRp0+Di4oJdu3ZJemHl5+dj5MiRmDp1Ki5fvsxzQlnTp09HcHAwTp06hdatWwMArl69ismTJ8PT01OybblQKOL5t2zZMixfvhyzZ8/mO0q5bd++HT4+Pvjll1/4jlJunTp1woYNG7Bz504AhcWljx8/YtGiRfTcR2TQEhjy2W7fvi2Z3tmgQQM0a9aM70jl8uzZM3Ach5o1a/IdRcbn3LEdNmzYd0xSforY8K24WbNm4fr16zhy5Aisra1x584dvH79Gm5ubnBzcxNk8c/b2xsLFizA2rVrMWLECOzevRvx8fH4/fffsXv3bgwaNIjviDJGjx6NN2/ewM/PD4aGhoiIiICSkhJ69eqFtm3bYsOGDXxHlJGamophw4bh1KlTUFFRAVB4IePi4gJvb2/o6+vzG7AEoaGhcHV1RUJCgsyddKEWIl++fImtW7fi4cOHYIzBxsYG48ePR40aNfiOVqKwsDCsX78e0dHRksyenp5yZ2cJQY0aNRAUFCSz1EiIRCIR9u3bV+aSESEWIjU0NHD37l3Ur19favzBgwdo3ry5IKfgGxkZ4ejRo3B0dJQav3TpEgYMGIA3b97wE6wUinb+6erq4t69e7C0tOQ7SrlVqVIFN2/eFGzDb3levnwJJycnKCkpITY2Fs2bN0dsbCyMjIxw+fJlhV1WR74PKoCQcnv+/DkGDx6MkJAQyQVAamoqHBwccPDgQZiZmfEbUI78/Hx4eXlh06ZNknX72tramDRpEhYtWiS5uCH/PXl5eRg+fDgOHToExhiUlZVRUFAAV1dX+Pj4CLbfyq5du7Bs2TI8e/YMQOFSksWLF2PEiBE8J5MvPT0d3bp1w/379/HhwwfUqFEDSUlJaNWqFc6cOQMtLS2+I5YoLi5O6k32p+vOhaZx48awtraGl5eX3GnLQutDkJiYCDMzM7kzyRITE1GrVi0eUlU+a9euxePHj7FlyxbBT2UXiURlHiPUYp6JiQn2798PZ2dnqXF/f3+4ubnh9evXPCUrmaamJsLCwtCgQQOp8fv376NFixaCXVqpSEaMGIEffvgBY8eO5TtKuc2ePRva2tpYsGAB31E+i6LutkMqHhVASLk5OzsjPT0d+/btk2xLFxMTAw8PD2hpaSEgIIDnhLLGjh2L48ePY8mSJWjVqhUA4Pr161i8eDF69uwpyG2xzpw5AyUlJXTu3FlqPCAgAAUFBejatStPyUrm7e0NbW1t9O/fX2r8yJEjyMzMFMysFXkUYWtIeRRtK2pF2k5vyZIlmDFjhsz696ysLKxevVqQa7aBwuat4eHhgi/UFCmp4WVKSgqMjY0FeZGriJl79+6NS5cuwdDQEA0bNpQp/B87doynZLJEIhGSkpIU5nmtuMmTJ+P48eNYs2YNHBwcJMszZs6cib59+wpytluHDh1QpUoV+Pr6Ql1dHUDh89ywYcPw7t07nD9/nueE0hTx/Pv999+xbt06dO/eHXZ2djLn3+TJk3lKVrIpU6bA19cXjRo1QqNGjWQyC3EDgYyMDEHfUCHCQgUQUm4aGhq4du2azDTDO3fuoHXr1oLs2K+np4dDhw7JFA3Onj2LQYMGIS0tjadkJWvUqBFWrFghs2bx3LlzmD17NsLDw3lKVrJ69eph+/btcHJykhoPDg7G6NGjERMTw1MyQj6fIr7JBoD27dtj1qxZ6NKlC99RykUkEuH169cyvWASEhJgY2MjyLvPJV2gv3z5EnXq1BHk66C7u3upj3t7e1dQkrIp8i4wubm5mDlzJrZv3478/HwAgIqKCsaNG4cVK1ZATU2N54SyIiMj0bVrV2RnZ8Pe3h4cx+HevXtQV1eHv78/GjZsyHdEKYp4/n3aZ6w4juPw+PHjCkxTPp++lyuO4zhB7RxVRFtbGwMGDICHhwfatGnDdxwicNQElZRbrVq1kJeXJzOen58v2KaR6urqsLCwkBm3sLAQ7G4OsbGxchta1q9fH3FxcTwkKltCQoLcF3lzc3MkJibykKhsirQ1ZJHXr19jxowZksyf1q+FemGuaNvpFTXv/VR4eDgMDQ15SFQ+kyZNgqenJ5KSkuTeaWzUqBFPyaQVbVXOcRwWLFggNdOmoKAAN27cQOPGjXlKJ1/RTjUcx2H37t3Q1taWPFZQUIDLly/L9H4QCiEVOMqiyPfkVFVVsXHjRvz++++Ij48HYwxWVlaC20mlODs7O8TGxuLAgQOSPjyDBg0S3LIBRT7/njx5wneEz6aImwkcPHgQPj4+6NChA8zNzeHh4QE3NzdB95Mi/KECCCm3VatWYdKkSdi6dSuaNWsGjuNw+/ZtTJkyBWvWrOE7nlwTJkzA0qVL4e3tLbn7kpOTg+XLl2PixIk8p5NPT08Pjx8/lincxMXFCXZ6n7GxMSIiImQyh4eHS+1gIySKtDVkkeHDhyMxMRELFixQmK3pFGk7vaLdmDiOg7W1tVTWgoICfPz4UdDruPv27QsA8PDwkIxxHCe43ZiKtipnjCEyMlKqGK2qqgp7e3vMmDGDr3hyrV+/HsD/drkq3iNIVVUVFhYWglxSWdybN28QExMj+f0W4i5Mw4YNE9SF9+fw8PDAxo0boaOjAzs7O8l40VazQiz2Xr58GQ4ODhg1apTUeH5+Pi5fviyYnaMqw/kH/K/AJ+TXQUXVo0cP9OjRAykpKfD19YWPjw8WLFiAzp07w8PDAy4uLpLdmQihJTCkVJ9uz5qRkYH8/HypLd6UlZWhpaUlmO1Z+/TpI/X1+fPnoaamBnt7ewCFF+W5ubno0KGDoNY+Fxk9ejRCQ0Nx/PhxSQfuuLg49O3bFz/88AN2797Nc0JZs2bNgp+fH7y9vSVvmIKDg+Hh4YF+/foJskBmZGQEX19fhdoeTUdHB1euXBHc3fHSVK9eHatWrVKI7fT27dsHxhg8PDywYcMGqaahRW+yi3oJCVFCQkKpj3+6fTLf3N3dsXHjRujq6vIdpdycnJxw7NgxGBgY8B2l3IouwH19fSUzsJSUlODm5obNmzcLeoaCIilp+c7bt29RrVo1ybIYIVG05X6KeP4BgK+vL1avXo3Y2FgAgLW1NWbOnCmo18U+ffrAx8cHurq6Mu+jPyXE987ybN68GTNnzkRubi6MjIwwduxYzJkzh57zCM0AIaUTYtOusny600HRXdEiQtytprjVq1ejS5cuqF+/vmTL3ufPn+Onn34SZCEBKNznPiEhAR06dJAUx8RiMdzc3PDbb7/xnE4+VVVVhWkWWcTMzEzhpojn5ubCwcGB7xjlUtSst3bt2nBwcFC4XaKEVuAoiyItzSiiiFPDp0+fjuDgYJw6dQqtW7cGAFy9ehWTJ0+Gp6cntm3bxnNCxZaeng7GGBhj+PDhg6SZKFA4c+zMmTOC7WlS0nK/lJQUQc44VcTzb926dViwYAEmTpyI1q1bgzGGkJAQjB07Fm/fvsW0adP4jgig8L1z0e+C0HYM+xxJSUnw9fWFt7c3EhMT0a9fP4wYMQIvX77EihUrEBoaKshNG0jFohkghAgQYwyBgYEIDw+HhoYGGjVqJJipqKV59OiRJLOdnZ2gL8gUaWvIIgEBAVi7di127Nght7eNECnKdnrp6emSmQjp6emlHivkGQvx8fHYsGEDoqOjwXEcGjRogClTpkhmk/FNEe8yTp8+HUuXLoWWlpakf0lJhLg7gpGREY4ePQpHR0ep8UuXLmHAgAF48+YNP8EqCZFIVOprCMdx8PLywrx58yowVemKzr2TJ0+iS5cuUg1aCwoKEBERgXr16uHcuXN8RZRQ9POvdu3a8PLygpubm9T4vn37sHjxYoXsESJEx44dg7e3N/z9/WFjY4ORI0di6NCh0NfXlxxz//59NGnSBLm5ufwFJYJAM0DIF8nKypJpiCrkiwJFw3EcnJ2d4ezszHeUz2JtbQ1ra2u+Y5TL1atXcenSJZw9e1bwW0MWGThwIDIzM1GnTh1oamrKZBbKMrTisrOzsXPnTpw/f17Q2+kZGBhIpoLr6+vLvaARWi+NT/n7+8PFxQWNGzeW3Gm8du0aGjZsiFOnTqFTp058R1TIu4x3796VvN4V9S+RR6iF1MzMTJiYmMiMGxsbIzMzk4dElculS5fAGEP79u3x999/SzVKVlVVhbm5ueAaMRade4wx6OjoSPVdUVVVRcuWLWX6gvBF0c+/V69eyZ0F6eDggFevXvGQqHJyd3fH4MGDERISgh9++EHuMZaWloIqRBL+0AwQUm4ZGRmYPXs2/Pz8kJKSIvO4UC8Kjh49Cj8/PyQmJspUfe/cucNTqtJlZGQgODhYbmYh7hkPFC7T+eeff+RmFspFbnGKtDVkkX379pX6eNESDiFRlO30goOD0bp1aygrKyM4OLjUY9u1a1dBqT5PkyZN0LlzZ6xYsUJqfM6cOQgICBDs8x35vjp06IAqVarA19dXsjwjKysLw4YNw7t373D+/HmeE1YOCQkJMDMzg0gk4jtKuXl5eWHGjBmCXO5SWdja2sLV1RW//vqr1PiyZctw+PBhREZG8pSsZIq241x+fj527tyJPn36oFq1anzHIQqACiCk3CZMmIBLly5hyZIlcHNzw9atW/HixQvs2LEDK1aswJAhQ/iOKGPTpk2YN28ehg0bhl27dsHd3R3x8fG4desWJkyYgOXLl/MdUcbdu3fRrVs3ZGZmIiMjA4aGhnj79i00NTVhbGwsyD3jL1y4ABcXF9SuXRsxMTGwtbXF06dPwRhD06ZNBXORS0hlpq6ujsjISNStW1dq/NGjR2jUqBGys7N5Skb4FBUVhS5duiA7Oxv29vbgOA737t2Duro6/P390bBhQ74jysjIyMCKFStK3D5biK+DAPD+/Xvs2bNHagmau7u7oLfPBoDk5GSpHYKE2rNEEf39998YOHAgOnbsiNatW4PjOFy9ehUXLlyAn58fevfuzXdEGV27dkViYiImTpwod/e2nj178pSsZJqamoiOjhb00msiHFQAIeVWq1Yt+Pr6wtHREbq6urhz5w6srKywf/9+HDx4EGfOnOE7ooz69etj0aJFGDx4MHR0dBAeHg5LS0ssXLgQ7969w5YtW/iOKMPR0RHW1tbYtm0b9PX1ER4eDhUVFQwdOhRTpkwpc908H1q0aIEuXbpgyZIlkn9nY2NjDBkyBF26dMG4ceP4jlgiRdgasriCggKcOHFC8gbbxsYGLi4uUtsCCtXz58/BcRxMTU35jlKm1NRU3Lx5U+7F16druYXCzMwM69atQ//+/aXG/fz8MGPGDCQmJvKUTD5Fu8sIKO6FeVZWFg4cOICHDx+CMQYbGxsMGTJEsFvODh48GMHBwfjll1/kXoBNmTKFp2QlCw4OhouLC/T09NC8eXMAQFhYGFJTU/HPP/8IcuZYeno6JkyYgEOHDknONyUlJQwcOBBbt24V3DI1RT3/wsLCsH79ekRHR0vOP09PTzRp0oTvaHIp4o5zTk5OmDJlCnr16sV3FKIAqAcIKbd3796hdu3aAAr7fRT1G2jTpo1gL3ATExMlay81NDTw4cMHAMAvv/yCli1bCrIAcu/ePezYsQNKSkpQUlJCTk4OLC0tsWrVKgwbNkyQBZDo6GgcPHgQAKCsrIysrCxoa2tjyZIl6NmzpyB/PxRxa8i4uDh069YNL168QL169cAYw6NHj2BmZobTp08LptFlcWKxGMuWLcPatWvx8eNHAIVvrjw9PTFv3jxBThc/deoUhgwZgoyMDOjo6EhdfHEcJ9gCyKhRozB69Gg8fvwYDg4OkjuNK1euhKenJ9/xZAwfPhyJiYlYsGCB3ItcIRo5cmSpF+ZCpaGhIZieDuVx9uxZnD59WrJrjSKYMGECBg4ciG3btkkK0gUFBRg/fjwmTJiAqKgonhPKGjlyJO7du4d///0XrVq1AsdxuHbtGqZMmYJRo0bBz8+P74hSFPX8a9asGQ4cOMB3jHJTxB3nxo8fD09PTzx//hzNmjWTWdbVqFEjnpIRIaICCCk3S0tLPH36FObm5rCxsYGfnx9atGiBU6dOSXVZFpJq1aohJSUF5ubmMDc3R2hoKOzt7fHkyRPBPrmrqKhIXtRNTEyQmJiIBg0aQE9PT3B3cItoaWkhJycHAFCjRg3Ex8dLplW/ffuWz2glUsStISdPnow6deogNDRUMqU6JSUFQ4cOxeTJk3H69GmeE8qaN28e9uzZgxUrVkhtAbh48WJkZ2cLchmap6cnPDw88NtvvwmyEFaSBQsWQEdHB2vXrsXcuXMBFJ6PixcvFmTvoKtXryrcXUZFvDAHCpdBBQUFyb1rvnDhQp5SlczAwEDwy0Y+FR8fj7///ltqNp6SkhKmT58OX19fHpOV7PTp0/D390ebNm0kY507d8auXbvQpUsXHpPJp6jnn1gsRlxcnNzzT4g7/G3YsAFz5sxRqB3nBg4cCEC6Tx7HcYJvXk74QQUQUm7u7u4IDw9Hu3btMHfuXHTv3h2bN29Gfn6+IJtcAkD79u1x6tQpNG3aFCNGjMC0adNw9OhR3L59W5AzKYDCRoa3b9+GtbU1nJycsHDhQrx9+xb79++HnZ0d3/HkatmyJUJCQmBjY4Pu3bvD09MTkZGROHbsGFq2bMl3PLn+/vtvma0hu3XrBg0NDQwYMECQBZDg4GCp4gcAVKlSRVJcEKJ9+/Zh9+7dcHFxkYzZ29vD1NQU48ePF2QB5MWLF5g8ebJCFT+Awjd706ZNw7Rp0ySz3XR0dHhOVTJFvMuoiBfmu3btwrhx42BkZIRq1arJzGgSYgFk6dKlWLhwIfbt26cw52HTpk0RHR2NevXqSY1HR0cLtshXpUoVuctc9PT0YGBgwEOi0ini+RcaGgpXV1ckJCTIPN8J6cLcwMBA6rkhIyNDoXaco+2EyeegHiDkiyUmJuL27duoU6cO7O3t+Y4jl1gshlgshrJyYa3Pz88PV69ehZWVFcaOHQtVVVWeE8q6ffs2Pnz4ACcnJ7x58wbDhg2TZPb29hbkv/Xjx4/x8eNHNGrUCJmZmZgxY4Yk8/r16wXZlEpTUxNhYWFo0KCB1Pj9+/fRokULZGRk8JSsZIaGhvj3339lttQLCQlBjx49BPmmRF1dHRERETLbI8fExKBx48bIysriKVnJ+vTpg0GDBmHAgAF8R6nUAgICsHbtWoW6y3jgwAGcPHlSoS7Mzc3NMX78eMyePZvvKOXWpEkTxMfHgzEGCwsLmQswIe5odPjwYcyaNQuTJk2SFP5DQ0OxdetWrFixQuq1RijT8Xfu3IkjR47A19cX1atXBwAkJSVJltuOGTOG54TSFPH8a9y4MaytreHl5SV32Y5Q+qyUtctccULccY6Qz0EFEELIf5Iibg3p5uaGO3fuYM+ePWjRogUA4MaNGxg1ahSaNWsGHx8ffgPK8eOPP+LHH3/Epk2bpMYnTZqEW7duITQ0lKdkJduzZw+WLFkCd3d32NnZyVx8FZ/NIiSK1lTUwMAAmZmZyM/PV5i7jIp4Ya6rq4t79+7B0tKS7yjl5uXlVerjixYtqqAk5VdWPyMhTsdv0qQJ4uLikJOTg1q1agEovLmlpqYms5uUEH63FfH809LSQnh4OKysrPiOUqldvHgRx44dw9OnT8FxHGrXro1+/foJcokR4R8tgSFlunjxIiZOnIjQ0FDo6upKPZaWlgYHBwds374dP/30E08JZcXGxmLhwoXYsWOH3Mzjxo3DsmXLBP2GsPi2dPXq1RP87iRA4eyV4tv/NWvWjO9IJdq4cSO6dOmCmjVryt0aUog2bdqEYcOGoVWrVpI3fvn5+XBxccHGjRt5TiffqlWr0L17d5w/f16qyd6zZ88EuXMUAEmzyCVLlsg8JqSLl08pWlPRDRs28B3hsyniDgP9+/dHQEAAxo4dy3eUchNigaMsijgFX9F+nxUtL1B4EyAuLk6hCiBnzpyBkpISOnfuLDUeEBCAgoICdO3aladk8o0dOxY7d+6EgYEBrK2twRjDtWvXsHXrVowfPx6bN2/mOyIRGJoBQsrk4uICJycnTJs2Te7jmzZtwqVLl3D8+PEKTlay0aNHQ19fH6tWrZL7+OzZs5Geni7IPg+Kti0dULi96eDBgxESEiJpiJuamgoHBwccPHgQZmZm/AYsgaJtDVkkNjZWKrPQ31i9fPkSW7dulco8fvx41KhRg+9olYoibl1Ivo/iM64yMjKwbt06dO/eXe6MJiE2yAUKX0OOHj2K+Ph4zJw5E4aGhrhz5w5MTEwUYitt8t8VEREh+Tw+Ph7z58/HzJkz5Z5/QlkOVVyjRo2wYsUKdOvWTWr83LlzmD17NsLDw3lKJuv48eMYNGgQduzYgWHDhkkK/2KxGD4+Phg3bhyOHDki2JmbhB9UACFlMjc3x7lz52R6JRR5+PAhnJ2dBbVDSf369bF//3788MMPch8PCwuDq6srYmJiKjhZ2QYMGIB79+5h8+bNMtvSNWrUSHDb0gGAs7Mz0tPTsW/fPkkDuJiYGHh4eEBLSwsBAQE8JySk8rOxscGff/6JJk2a8B2l3AoKCnDixAnJzDEbGxu4uLhI7aQhRGFhYVKZhfZvXrRlfVk4jsPjx4+/c5rPFxERgY4dO0JPTw9Pnz5FTEwMLC0tsWDBAiQkJAh2VxUAePDgARITE5Gbmys1Thdg347Qzz+RSCRZ8iSPEJdDFaehoYHo6GiZ3kxPnz5Fw4YNBdUjzcXFBQ0bNsTvv/8u9/HZs2fj4cOHOHnyZAUnI0JGS2BImV6/fi1TsS5OWVkZb968qcBEZUtISICxsXGJjxsZGeHZs2cVmKj8FG1bOgC4cuUKrl27JtX9vl69eti8ebNgdycBFG9ryIKCAvj4+Eh6PHya+eLFizwlK11qaipu3rwpN7ObmxtPqUoXHByMNWvWSC3pmjlzpqCW+n1K0bYujIuLQ7du3fDixQvUq1cPjDE8evQIZmZmOH36NOrUqcN3RBnJyckYNGgQgoKCoK+vD8YY0tLS4OTkhEOHDglmqaIiLscobvr06Rg+fDhWrVoltZNR165d4erqymOykj1+/Bi9e/dGZGSk1MVv0R1pIV7oFhQUYP369fDz85NbtBFaHx46/yqGnp4eHj9+LPM6EhcXBy0tLX5CleDOnTuYP39+iY/37dtXsLs+Ev5QAYSUydTUFJGRkSVOs4+IiJB0DxcKPT09xMfHl7j7SFxcnExvEKFQtG3pAKBWrVrIy8uTGc/PzxfsVGVF3BpyypQp8PHxQffu3WFrayv4Hg8AcOrUKQwZMgQZGRnQ0dGR+XcWYgHkwIEDcHd3R58+fTB58mTJeuIOHTrAx8dHUBdgirx14eTJk1GnTh2prZ1TUlIwdOhQTJ48GadPn+Y5oaxJkyYhPT0d9+/fl8yKfPDgAYYNG4bJkyfj4MGDPCeU9uHDB4SGhiI/Px8//PADjIyM+I5ULrdu3cKOHTtkxk1NTZGUlMRDorJNmTIFtWvXxvnz52FpaYmbN28iJSUFnp6eWLNmDd/x5PLy8sLu3bsxffp0LFiwAPPmzcPTp09x4sQJQb4GKsr5V/y9Z05ODvLz8wVXOCiNi4sLpk6diuPHj0sK0XFxcfD09BTcTKa3b9+W+j7T1NQUKSkpFZiIKARGSBkmTpzIbG1tWVZWlsxjmZmZzNbWlk2aNImHZCXr378/69WrV4mPu7i4sH79+lVgovLbsWMH69ixI3v58qVk7NWrV8zZ2Zlt376dx2QlO3HiBGvRogW7desWE4vFjDHGbt26xVq2bMmOHz/Ob7gS1KpVi61YsYLvGJ+lSpUq7PTp03zH+Cx169ZlU6ZMYRkZGXxHKbf69euzdevWyYyvXbuW1a9fn4dEJfPx8Sn3h9BoamqyiIgImfF79+4xLS0tHhKVTVdXl928eVNm/MaNG0xPT6/iA5UiPDyc1ahRg3EcxziOY3p6eiwwMJDvWOVibGzM7ty5wxhjTFtbm8XHxzPGGPP392c1a9bkM1qJqlSpwsLDwxljhb8nDx8+ZIwxduHCBda4cWM+o5XI0tKS/fvvv4yxwn/nuLg4xhhjGzduZIMHD+YzmlyKdP69efOGdevWjSkrKzORSMRatWol+T0WutTUVNayZUumrKzMLCwsmIWFBVNWVmZOTk7s/fv3fMeTwnEcS05OLvHxpKQkJhKJKjARUQTUA4SU6fXr12jatCmUlJQwceJE1KtXDxzHITo6Glu3bkVBQYGkMZlQ3L17F61atcLPP/+MWbNmSZZmPHz4EKtWrcLp06dx7do1NG3alOekshRtWzpAejtLZeXCiWVFn39610Mod6EVcWvIGjVqICgoCNbW1nxHKTctLS1ERkYq1L+zmpoa7t+/LzPrLS4uDra2tsjOzuYpWeViaGiIf//9Fw4ODlLjISEh6NGjh2CeK4orqdHs3bt30a5dO6Snp/MTTI5u3brh/fv3WLt2LdTV1eHl5YWYmBg8fPiQ72hlGj16NN68eQM/Pz8YGhoiIiICSkpK6NWrF9q2bSvIHYQMDAwQFhYGS0tL1KlTB7t374aTkxPi4+NhZ2eHzMxMviPK0NLSQnR0NGrVqoXq1avj9OnTaNq0KR4/fowmTZogLS2N74hSFOn8GzVqFE6dOoXJkydDXV0d27dvh7m5OQIDA/mOVi6MMQQGBiI8PBwaGhpo1KiRILeUFYlEGD16NDQ1NeU+npmZiV27dglyCRrhDy2BIWUyMTHBtWvXMG7cOMydO1dqXWvnzp3xxx9/CKr4ARQWEY4ePQoPDw+Z3WmqVKkCPz8/QRY/AMXc5k2Ib0bLoohbQ3p6emLjxo3YsmWLQix/AQr719y+fVuhCiBmZma4cOGCTAHkwoULgtzRiDGGNWvW4MSJE8jLy0PHjh2xcOFCqKur8x2tVD///DNGjx6NPXv2oEWLFgCAGzduYOzYsYKbZl2kffv2mDJlCg4ePCjZxejFixeYNm0aOnTowHM6abdv38aZM2fQvHlzAMDevXthbGyMjx8/Qltbm+d0pVuzZg26desGY2NjZGVloV27dkhKSkKrVq2wfPlyvuPJZWtri4iICFhaWuLHH3/EqlWroKqqip07dwr2+a9mzZp49eoVatWqBSsrKwQEBKBp06a4desW1NTU+I4nQ5HOP39/f+zdu1eyk0q3bt1ga2uLvLy8UvvqCQXHcXB2doazszPfUUrVtm3bMjc0EGLhhvCLZoCQz/L+/XvExcWBMYa6desKtidFkaysLJw7d06S2draGs7OziVWiknlpohbQ37avOvixYswNDREw4YNZTIfO3asIqOV6J9//pF8/ubNGyxZsgTu7u5y/52FeKG7bds2TJ06FR4eHnBwcADHcbh69Sp8fHywceNGjBkzhu+IUn7//XfMnz8fHTp0gIaGBvz9/eHm5oadO3fyHa1UqampGDZsGE6dOiX5vcjPz4eLiwt8fHwEueX3s2fP0LNnT0RFRcHMzAwcxyExMRF2dnY4efIkatasyXdECZFIhKSkJKmG4Do6OoiIiCj3LjF8u3jxIu7cuQOxWIymTZuiY8eOfEcqkb+/PzIyMtCnTx88fvwYP//8Mx4+fIgqVarg0KFDgrtAB4A5c+ZAV1cXv/76K44ePYrBgwfDwsICiYmJmDZtGlasWMF3RCmKdP4pKyvj2bNnUj3yNDU1ER0dXWJ/OiHJyMhAcHCw3Oa4Qnl/RMiXogIIIQI2fvx4LFmyRGEa1wFA9+7dsXv3bsE1xgUUc2tId3f3ch/r7e39HZOUn0gkKtdxQt0CEACOHz+OtWvXIjo6GgAku8D07NmT52Sy6tWrhylTpmD8+PEAgHPnzqFXr17IyspSiJlCsbGxePjwIRhjsLGxKbHhtpAEBgZKZRbihbmSkhIePXok2RmDMQYzMzNcvXpVancHoTYEL5KdnQ01NTWF+F3+1Lt372QaFQvZjRs3EBISAisrK0EWp4soyvmXlJQktTONrq4uwsPDBV+AvHv3Lrp164bMzExkZGTA0NAQb9++haamJoyNjQXz/oiQL0UFEEIETBH7VOjo6CA8PFyhMhOiyNTV1fHo0SNJzyDGGNTV1fH48WPB7sJEvj+RSCRz4c0Yk4wVfS7EIqRYLMby5cuxfft2vH79Go8ePYKlpSUWLFgACwsLjBgxgu+I5RYdHY3u3bsr1EXj69evsWPHDkHuBKMoRCIRbG1tJX3RgMJdE+vXrw9VVVXJmFB6uRXn6OgIa2trbNu2Dfr6+ggPD4eKigqGDh2KKVOm0LayROFRDxBCBIzqkxWjeF8bRZCcnIyYmBhwHAdra2upKe7kvyc3NxcaGhqSrzmOg6qqKnJycnhMVbIlS5aU6zghXXz5+vqW6zghbet86dIlviN8sWXLlmHfvn1YtWoVRo0aJRm3s7PD+vXrFaoAkpubi4SEBL5jfJakpCR4eXkJ5hxUxPNv0aJFMmNCnEEoz71797Bjxw4oKSlBSUkJOTk5sLS0xKpVqzBs2DAqgBCFRzNACBEwRZxNYWtri7NnzwqyWeSn9uzZg/Xr1yM2NhYAULduXUydOhUjR47kOZl86enpmDBhAg4dOiS5a6ukpISBAwdi69atguyZABQ2D12/fj2io6PBcRzq16+PqVOnCm7acnnPM6HdyZXXBX/r1q0YOnSo1O/EunXr+IgnQyQSoUaNGjA2Ni6xyMtxnKDujIpEImhra0NZWbnUzELcuUYRWVlZYceOHejQoYPU6+DDhw/RqlUrvH//nu+I5RYeHo6mTZsKcqZNSYSWmc6/ilW1alWEhITA2toa9erVw6ZNm9C5c2c8fPgQTZs2FeSORoR8DpoBQoiAffjwge8Iny0qKorvCOWyYMECrF+/HpMmTUKrVq0AANevX8e0adPw9OlTLFu2jOeEskaOHIl79+7h33//RatWrcBxHK5du4YpU6Zg1KhR8PPz4zuijC1btmDatGno168fpkyZAgAIDQ1Ft27dsG7dOkycOJHnhP/z9OlTmJubw9XVVaFm1cjrgu/g4CC4Qk2RLl264NKlS2jevDk8PDzQvXt3KCkp8R2rVA0aNMDr168xdOhQeHh4oFGjRnxHqtRevHghtxeMWCxGXl4eD4kIn+j8q1hNmjTB7du3YW1tDScnJyxcuBBv377F/v37YWdnx3c8Qr4azQAh5VZ8Z4fiOI6Duro6rKysBNfYqaQ94TmOg5qamtQ6TKHy8vLChAkTFKoRqru7O5YvXy7Zpk6IjIyMsHnzZgwePFhq/ODBg5g0aRLevn3LU7KSaWlpwd/fH23atJEav3LlCrp06YKMjAyekpXM1NQUc+fOlSl0bN26FcuXL8fLly95SibLz88P3t7eCAoKQteuXeHh4YFu3bqVu6krKb9Xr17Bx8cHPj4+SE9Ph5ubGzw8PFCvXj2+o5Xoxo0b2Lt3Lw4fPgwrKyuMGDECQ4YMEXwTUUXUvHlzTJ06FUOHDpWaAeLl5YXz58/jypUrfEcsN6HNpigPIWam86/i3L59Gx8+fICTkxPevHmDYcOG4erVq7CysoK3tzfs7e35jiglPT1d8ntw5swZ5OfnSx5TUlJC9+7d+YpGBIoKIKTcihqqfforUzTGcRzatGmDEydOCGZ7XHlN4IqrWbMmhg8fjkWLFvF+kSOvWMMYQ9WqVXH16lXUr18fgLA69kdERMgdb968Ofz8/CRLCoR4t8bAwAA3b95E3bp1pcYfPXqEFi1aIDU1lZ9gpahVqxZOnz4tcwcmIiIC3bp1w/Pnz3lKVjIdHR3cvXtX5m5ubGwsmjRpgo8fP/KUrGQvXryQXJxnZGTAzc0NI0aMkPldEYLp06dj6dKl0NLSwvTp00s8juM4rF27tgKTld/ly5fh7e2Nv//+G3Z2djh//rxUTxOhycrKwpEjR+Dt7Y2bN2+iV69e2Lt3L9TU1PiOVmmcOnUKv/zyC+bOnYslS5bAy8sLMTEx8PX1xb///otOnTrxHVGirF1e8vPzkZGRIahiQmnPFUDh9uV//fWXoDIXofOPFPfvv/9iwYIFuHv3LoDC9xzFbwZxHIfDhw+jX79+fEUkAkQFEFJuFy5cwLx587B8+XK0aNECAHDz5k3Mnz8fCxYsgJ6eHsaMGYMff/wRe/bs4TltIV9fX8ybNw/Dhw9HixYtwBjDrVu3sG/fPsyfPx9v3rzBmjVrMHPmTPz666+8Zi1pCnhRcUmIHftLKooBEGzmIpMmTYKKiopMX4QZM2YgKysLW7du5SlZyXbu3IkjR47A19dXss1wUlKSpCnZmDFjeE4oa8iQIWjcuDFmzpwpNb5mzRqEhYXh4MGDPCUrn+DgYCxevBiXL1/G27dvBVPcLeLk5ITjx49DX18fTk5OJR7HcRwuXrxYgcnKr+iCZuvWrYiMjERSUpKgCr0luXz5MhYtWiTY3w1F5+/vj99++w1hYWEQi8Vo2rQpFi5cCGdnZ76jSdm3b1+5jhs2bNh3TlJ+pT1XFCfkRrp0/hEAcHFxQc+ePSWNkT/tnbdq1SoEBQXhzJkzfMYkAkMFEFJutra22LlzJxwcHKTGQ0JCMHr0aNy/fx/nz5+Hh4cHEhMTeUoprUOHDhgzZgwGDBggNe7n54cdO3bgwoUL2L9/P5YvX46HDx/ylLJQzZo10bhxY3h6ekpmozDG0LFjR+zevVuyvKhdu3Z8xpTSuHFj1KxZE2vWrJHcsWWMoW7dujh79qzkjrm5uTmfMeWaNGkSfH19YWZmhpYtWwIo7E3x7NkzuLm5QUVFRXKsUJpHNmnSBHFxccjJyZFseZqYmAg1NTWZ2QlCaSC5bNkyrFmzBq1bt5b0WgkNDUVISAg8PT2lLnQnT57MV0wZ2dnZOHr0KPbu3YvQ0FC4uLhg3759dJfxG7p+/Tr27t0LPz8/WFtbw93dHa6urtDX1+c7WolevHiBffv2wdvbGxkZGZKeBEUz9IQsLi4O8fHxaNu2LTQ0NKS2xBWS/Px8LF++HB4eHgrRTJtUHEU+/xRB+/bty3WckIrpFhYWOHr0KJo3bw5AtgASGRmJDh06IDk5mc+YRGCoAELKTUNDA7du3YKtra3UeGRkJFq0aIGsrCwkJCSgQYMGgukQrampifDwcJmLw9jYWNjb2yMzMxNPnjxBw4YNec/87t07jBgxAmlpadi/fz9MTU0BACoqKggPD4eNjQ2v+eTJzc3FrFmzEBgYiAMHDqBJkyYAhJ25SHnvgAnpzrmXl1e5j5W3BR8fytsXiOM4QTTtvHHjBvbs2YPDhw+jTp068PDwwJAhQ+ju4je0atUqeHt7IyUlBUOGDIGHh4fgG+sV9YcJDg5G586d4e7urhDNWwEgJSUFAwcOxMWLF8FxHGJjY2FpaYkRI0ZAX19fkEujtLW1ERUVBQsLC76jEAFQtPNv06ZN5T5WSIV/kUgEc3NzdO/eXeom0KfWr19fgalKp66ujujoaMl7jdu3b8Pe3l6S/8mTJ6hfv75gt4Un/KACCCm3Nm3aQEdHB76+vqhatSqAwnWibm5uyMjIwOXLl3H+/HmMHz8ejx494jltIWtra/Tp0wcrVqyQGp8zZw6OHz+OmJgY3L59Gz179sSLFy94Silt27ZtkrvmgwcPVohiwtmzZzF69GiMHz8es2fPhpqamuAzE/Kphg0bIjk5Ga6urhgxYoQge9dUBiKRCLVq1cLPP/9caiNqocy8Av6XeciQITAxMSnxOCFdzBRxc3NDcnIydu/ejQYNGkjujgYEBGDatGm4f/8+3xFl9OrVC7169cLw4cP5jkIEQNHOv08L/2/evEFmZqZkdltqaio0NTVhbGwsiMJ/kVWrVsHHx0eqOP3pTU+hqVGjBnx9fdGxY0e5jwcEBGDYsGF49epVBScjQkYFEFJuMTEx6NmzJ548eQIzMzNwHIfExERYWlri5MmTsLa2xokTJ/Dhwwf88ssvfMcFULhzTf/+/VG/fn388MMP4DgOt27dwsOHD3H06FH8/PPP2LZtG2JjYwX1ZvvBgwdwdXWFjY0Njhw5ohDFhNevX8Pd3R0fPnxAaGioQmQmpDiRSAQtLS0oKyuXujTg3bt3FZiq8nF0dCxz6YWQZl4BhdOsy5NZSBczRapVqwZ/f3/Y29tLTQ9/8uQJ7OzsBNmIeMeOHVi8eDGGDBmCZs2aQUtLS+pxFxcXnpIRPijy+ffXX3/hjz/+wJ49eyS7XMXExGDUqFEYM2YMhgwZwnNCWcWXJ9arVw8eHh5wdXUVZG+mQYMGITMzs8SdKn/++WdoaWnh8OHDFZyMCBkVQMhnYYzB398fjx49AmMM9evXR6dOnXjfQaU0T58+xfbt26UyjxkzRvBTa3NzczFnzhxcunQJx44dE9wWwyXZtGkTLl26hM2bN6NmzZp8x5HSp0+fch977Nix75ik/MraYaA4oVyYl7XDQHFCKjwqYjNDQsqio6ODO3fuoG7dulIFkFu3bqFLly5ISUnhO6KM0t5TCLWxNiHy1KlTB0ePHpUsES4SFhaGfv364cmTJzwlK1tmZqakQfWDBw/w8uVLwRVB7t69i1atWqFHjx6YNWsWrK2tARQWmVauXInTp0/j2rVraNq0Kc9JiZBQAYQQ8p/h7u4u+ZwxhuPHj0NPT0/SPCssLAypqano06cPvL29+YoppfhFeUpKCpYtW4bOnTtLGopev34d/v7+WLBgAaZNm8ZXTCmf9lcJCwtDQUGB5O7Xo0ePoKSkhGbNmgnqLj8hlVH37t3RtGlTLF26FDo6OoiIiIC5uTkGDRoEsViMo0eP8h2x0il6ay3EJrOkYmlqaiIoKEiye2KRmzdvwtHRkff+c6W5evUq9u7diyNHjqBhw4a4dOmSILcoP3nyJEaOHClzE8jAwAC7d+9Gr169+AlGBIsKIOSzXLhwARcuXEBycjLEYrHUY3v37uUpVelSU1Nx8+ZNuZnd3Nx4SiUtMTFRsqtHebx48ULSJJUv169fl1yElyUjIwNPnz5Fw4YNv3Oq8ps9ezbevXuH7du3SxqpFRQUYPz48dDV1cXq1at5Tiirb9++cHJywsSJE6XGt2zZgvPnz+PEiRP8BCvFunXrEBQUhH379kkaib5//x7u7u746aef4OnpyXNCQiq3Bw8ewNHRUVJwdHFxwf379/Hu3TuEhISgTp06fEesNHx9fbF69WrExsYCKOxDNnPmTMEsCwaAiIiIch9LfZC+Xo8ePZCYmIg9e/agWbNm4DgOt2/fxqhRo2BmZlbi0g2+vHz5Ej4+PvDx8UF6erpkpx2hL2nOzMyEv7+/5NyrW7cunJ2dZZbPEQJQAYR8Bi8vLyxZsgTNmzdH9erVZe5sHD9+nKdkJTt16hSGDBmCjIwM6OjoSGXmOE4wSwZMTEzg4uKCUaNGydwlKJKWlgY/Pz9s3LgRY8aMwaRJkyo4pbS6devCwsICo0aNQrdu3aCtrS1zzIMHD3DgwAF4e3tj1apVgnoTWLVqVVy9elUyK6FITEwMHBwcBDktXFtbG/fu3YOVlZXUeGxsLJo0aSLItfympqYICAiQKX5FRUXB2dkZL1++5CkZIf8dSUlJ2LZtG8LCwiAWi9G0aVNMmDAB1atX5zuaXJMnT4aVlZVMU8stW7YgLi4OGzZs4CdYKdatW4cFCxZg4sSJaN26NRhjCAkJwdatW7Fs2TLBzNATiUTgOK5c2yDTUqOv9+bNGwwbNgznzp2T7EySn5+Pzp07w8fHB8bGxjwn/J9u3brh0qVLcHZ2hoeHB7p37w5lZWW+Y32VZ8+eYdGiRYK9SUv4QQUQUm7Vq1cX3EVsWaytrdGtWzf89ttv0NTU5DtOid69e4fffvsNe/fuhYqKCpo3b44aNWpAXV0d79+/x4MHD3D//n00b94c8+fPR9euXfmOjLy8POzYsQNbtmxBfHw8rK2tpTI/fPgQGRkZ6NOnD+bOnSu4TuIGBgbw9vaWmRp54sQJuLu74/379/wEK4W5uTkmTpyImTNnSo2vXr0aW7ZsQUJCAk/JSqajo4OTJ0+iffv2UuMXL15Ez5498eHDB56SEUKEytTUFP/88w+aNWsmNX7nzh24uLjg+fPnPCUrWe3ateHl5SUzs3Tfvn1YvHixYHo9FH+duHv3LmbMmIGZM2dKLatcu3YtVq1aRUsHvqFHjx7h4cOHYIyhQYMGkl4VQiISiVC9enUYGxuXWhy7c+dOBab6OuHh4WjatCkV84gUKoCQcqtSpQpu3rypUNNltbS0EBkZCUtLS76jlEt2djbOnDmDK1eu4OnTp8jKyoKRkRGaNGmCzp07C66IUOTOnTtyMzs5OcHQ0JDveHJNnz4dPj4++PXXX9GyZUsAQGhoKFasWAE3NzdBNecs4uPjgxEjRqBLly6SN6uhoaE4d+4cdu/eLcgtI93c3BAcHIy1a9dK/TvPnDkTbdu2LXfjUUJI+Sn6Mgd1dXVERUXJzHaLi4uDra0tsrOzeUpWspIyx8bGws7OTpCZW7RogcWLF6Nbt25S42fOnMGCBQsQFhbGUzLCBy8vr3Idt2jRou+c5NuhAgiRhwogpNxmz54NbW1tLFiwgO8o5danTx8MGjQIAwYM4DsKERixWIw1a9Zg48aNkv3hq1evjilTpsDT01PSF0Robty4gU2bNiE6OhqMMdjY2GDy5Mn48ccf+Y4mV2ZmJmbMmIG9e/ciLy8PAKCsrIwRI0Zg9erVtD73P6yki3SO46Curo5atWpBTU2tglOVLT4+Ht7e3oiPj8fGjRthbGyMc+fOwczMTDB9joovcyiNUHdUsbW1xdixY2X6HW3evBnbtm3DgwcPeEpWMltbW7i6uuLXX3+VGl+2bBkOHz6MyMhInpKVTENDA3fu3EGDBg2kxqOjo9G0aVNkZWXxlKxkYrEYcXFxcvu6tW3blqdU0hR1J7TKiAogRB4qgJBymzJlCnx9fdGoUSM0atRIspaxiBCfxPfs2YMlS5bA3d0ddnZ2MpldXFx4SkaEJD09HQAEt71bZZKRkYH4+HgwxmBlZSXYwkdGRgZWrlyJY8eO4enTp+A4DrVr10a/fv0wY8YMQS+lUzRFF+klUVFRwcCBA7Fjxw6oq6tXYLKSBQcHo2vXrmjdujUuX76M6OhoWFpaYtWqVbh586ZgdlT5nOVw5ubm3zHJl9m7d69kuV/R8rkLFy5g7dq12LBhA0aNGsVzQll///03Bg4ciI4dO6J169bgOA5Xr17FhQsX4Ofnh969e/MdUUbTpk3RoEED7NmzR3KO5eTkwMPDA9HR0YJb6hAaGgpXV1ckJCTIFPeEVMyjndCEgwogRB4qgJBy+/QJvTiO4wT5JC4SiUp8TEgvloR8rqysLMmMiiJUwPk6ubm5cHBwQFRUFLp27Yr69euDMYbo6GicO3cOTZs2xeXLl2UKqeTLnDx5ErNnz8bMmTPRokULMMZw69YtrF27FosWLUJ+fj7mzJmDgQMHYs2aNXzHBQC0atUK/fv3x/Tp06Gjo4Pw8HBYWlri1q1b6NWrF168eMF3xEpj27ZtWL58uaRRsoWFBRYvXiyY3dvkuXPnDtatWyc1Q8/T0xNNmjThO5pcN2/eRI8ePSAWi2Fvbw+g8IKR4zj8+++/JTZl50vjxo1hbW0NLy8vuc349fT0eEpWMtoJ7fvq06dPqY+npqYiODiY3u8TKVQAIYT8Zx09ehR+fn5ITExEbm6u1GNCu/MFFC4nmTVrFvz8/OTuUiPUF/hbt27hyJEjcv+djx07xlMqWRs3bsTvv/+O4OBgmd2BHj58CEdHR8ybN4/3HZgqixYtWmDp0qXo3Lmz1Li/vz8WLFiAmzdv4sSJE/D09ER8fDxPKaVpa2sjMjIStWvXliqAPH36FPXr1xdkn4eSttksWmpkZWWF2rVrV3Cq8nvz5g00NDTk7jQmFHl5eRg9ejQWLFigMD3HimRmZuLAgQOSBp02NjZwdXUV5Cw9LS0thIeHy/RZETLaCe37cnd3L9dx3t7e3zkJUSSKvbcRIYR8oU2bNmHevHkYNmwYTp48CXd3d8THx+PWrVuYMGEC3/HkmjlzJi5duoQ//vgDbm5u2Lp1K168eIEdO3ZgxYoVfMeT69ChQ3Bzc4OzszMCAwPh7OyM2NhYJCUlCW5K+LFjx7BgwQKZ4gcA1K9fH/PmzcPRo0epAPKNREZGyl1+YW5uLumX0LhxY0mPHiHQ19fHq1evZAoGd+/ehampKU+pSterVy+5/UCKb4Xapk0bnDhxQnKHmm9ZWVlgjEFTUxNVq1ZFQkICdu/eDRsbGzg7O/MdT4aKigqOHz+uUD3SimhqamL06NF8xyiXH3/8EXFxcQpVAElPT8fr169lCiDJycm0C9o3QIUN8iWoAEJK1adPH/j4+EBXV7fMaWZCuZO7adMmjB49Gurq6ti0aVOpx06ePLmCUv33pKamQl9fn+8YJfrjjz+wc+dODB48GPv27cOsWbNgaWmJhQsX4t27d3zHk+vUqVPw9fWFo6MjPDw88NNPP8HKygrm5ub4888/MWTIEL4jyvjtt9+wfv16TJgwATo6Oti4cSNq166NMWPGoHr16nzHk/LgwQM4OjqW+LiTkxOWLFlScYEqufr162PFihXYuXMnVFVVARTeSV+xYgXq168PAHjx4gVMTEz4jCnF1dUVs2fPxpEjR8BxHMRiMUJCQjBjxgzBLs0IDAzEvHnzsHz5csmShps3b2L+/PlYsGAB9PT0MGbMGMyYMQN79uzhOW2hnj17ok+fPhg7dixSU1PRokULqKqq4u3bt1i3bh3GjRvHd0QZvXv3xokTJz6rAaZQPHjwQO4MPaH1SZs0aRI8PT2RlJQkt6+bEHc06t27N9zd3eXuhFbW+2pCyPdBS2BIqdzd3bFp0ybo6OiUOc1MKFXY2rVr4/bt26hSpUqp03o5jsPjx48rMFn57Nu3D0ZGRujevTsAYNasWdi5cydsbGxw8OBBQTasW7lyJSwsLDBw4EAAwIABA/D333+jWrVqOHPmjGRtsZBoamoiOjoa5ubmMDY2RmBgIOzt7REbG4uWLVvKXWLCN21tbdy/fx/m5uaoWbMmjh07hhYtWuDJkyews7PDx48f+Y4oQ0tLC/fv34eFhQWMjIxw6dIl2NnZITo6Gu3btxfU3X0VFRU8e/YM1apVk/v4q1evYG5uLnORQL7MtWvX4OLiApFIhEaNGoHjOERERKCgoAD//vsvWrZsif379yMpKQkzZ87kOy6AwgLN8OHDcejQITDGoKysjIKCAri6usLHx0eQu0fZ2tpi586dcHBwkBoPCQnB6NGjcf/+fZw/fx4eHh5ITEzkKaU0IyMjBAcHo2HDhti9ezc2b96Mu3fv4u+//8bChQsRHR3Nd0QZy5cvx5o1a9ChQwc0a9ZMZgmJEG+4PH78GL1790ZkZKTULKGi3hpCW1Ypr69b8ZlMQssLKOZOaCXdPCy+bK5t27aCfL4jpDxoBggpVfGihlAKHGV58uSJ3M8VxW+//YZt27YBAK5fv44tW7Zgw4YN+PfffzFt2jTBzLQpbseOHThw4ACAwruNgYGBOHv2LPz8/DBz5kwEBATwnFBWtWrVkJKSAnNzc5ibmyM0NBT29vZ48uRJmVtH8qWo14C5uTlsbGzg5+eHFi1a4NSpU4KdbWNoaCiZ5mtqaoqoqCjY2dkhNTUVmZmZPKeTJhaLS31DJxKJBPkGW1E5ODjg6dOnOHDgAB49egTGGPr16wdXV1fo6OgAAH755ReeU0pTUVHBn3/+iSVLluDu3bsQi8Vo0qQJ6taty3e0EsXHx8ttkKyrqyu5CVC3bl28ffu2oqOVKDMzU/I7EBAQgD59+kAkEqFly5aftcNNRdq9ezf09fURFhaGsLAwqcc4jhNkAWTKlCmoXbs2zp8/D0tLS9y8eRMpKSnw9PQUTOPh4hTxPZ2mpib++OMPrF69WiF2QgOA9evX482bN8jMzISBgQEYY0hNTYWmpia0tbWRnJwMS0tLXLp0CWZmZnzHJeTzMUKIoGhoaLCEhATGGGOzZs1iv/zyC2OMsaioKGZkZMRntBKpq6uzxMRExhhjkydPZqNHj2aMMRYTE8P09fX5jFaiESNGsMWLFzPGGNu2bRvT0NBgHTt2ZPr6+szDw4PndPKtW7eObdy4kTHG2MWLF5mGhgZTVVVlIpGIbdiwged08g0ePJitXbuWMcbYsmXLWNWqVdnIkSOZubk56927N8/ppHEcx+zs7FiTJk3kftjZ2TGRSMR3TEI+S+vWrVmXLl1YcnKyZCw5OZl16dKF/fTTT4wxxgIDA1ndunX5iijDzs6Obdy4kSUmJjJdXV127do1xhhjt2/fZiYmJjynqzyqVKnCwsPDGWOM6erqsocPHzLGGLtw4QJr3Lgxn9EIj/766y/m6OjI4uLiJGOxsbGsffv27NChQ+zZs2esdevWrG/fvjymJOTL0QwQUm5NmjSR2XIMkJ4SN3z48FK3y61oJa3FLZ65Z8+eMDQ0rOBkJdPW1kZKSgpq1aqFgIAATJs2DQCgrq6OrKwsntPJZ2BggGfPnsHMzAznzp3DsmXLAACMMcHeMd+5cyfEYjEAYOzYsTA0NMTVq1fRo0cPjB07lud08hX9LgCF/SgePnyI27dvo06dOoJcZgQAW7ZskeyMMXfuXKioqODq1avo06eP4BoGLlq0qMxj+vbtWwFJ/jsePXqEoKAgJCcnS87HIgsXLuQplbTP6emwbt2675jky+zZswc9e/ZEzZo1YWZmBo7jkJiYCEtLS5w8eRIA8PHjR0GdjwsXLoSrqyumTZuGDh06oFWrVgAKZ4MIcUvZGzdu4J9//kF+fj46dOggyEat8hQUFEh21zEyMsLLly9Rr149mJubIyYmhud0hf755x907doVKioqJe5oVERoPUuKKMpOaEXmz5+Pv//+G3Xq1JGMWVlZYc2aNejbty8eP36MVatW0eshUVjUA4SU29y5c7Ft2zbY2dmhRYsWYIzh9u3biIiIwPDhw/HgwQNcuHABx44dQ8+ePfmOC6DwIvHOnTsoKChAvXr1wBhDbGwslJSUUL9+fcTExIDjOFy9ehU2NjZ8xwUADBkyBA8fPkSTJk1w8OBBJCYmokqVKvjnn3/w66+/Iioqiu+IMiZOnIh///0XdevWxd27d/H06VNoa2vj8OHDWLlypSC3lFV02dnZUFdX5zsGIV9s165dGDduHIyMjFCtWjWpAjvHcYJ53vi0qB8WFiZ5TQEKizhKSkpo1qwZLl68yEfEMjHG4O/vL1lqVL9+fXTq1EluTwWhSEpKwqtXr2Bvby/JefPmTejp6cndqYkvx48fR//+/aGurg5lZWV8+PABa9euxdSpU/mOVqaffvoJnp6e6NWrF1xdXfH+/XvMnz8fO3fuRFhYmCDeb4hEIiQlJcHY2LjU31eh9gApayc0IS4v19TUxOXLl9G8eXOp8Vu3bqFdu3bIzMzE06dPYWtrK8jeY4SUicfZJ0TBjBw5ki1ZskRmfOnSpWzkyJGMMcYWLlzImjVrVtHRSrR+/XrWp08flpaWJhlLS0tj/fr1Yxs2bGAZGRmsZ8+ezNnZmceU0t6/f88mTJjAXFxc2NmzZyXjCxcuZMuWLeMxWclyc3PZ6tWr2eTJk9mdO3ck4+vXr2e7du3iMVnpLl++zIYMGcJatmzJnj9/zhhjzNfXl125coXnZPLl5+ezJUuWsBo1ajAlJSUWHx/PGGNs/vz5bPfu3TynK1lcXBybN28eGzRoEHv9+jVjjLGzZ8+yqKgonpMRPtWqVYutWLGC7xifZe3ataxHjx7s3bt3krF3796xnj17sjVr1vCYrHJxd3dn6enpMuMfP35k7u7uPCQqWfPmzdmIESNYXl4eY6zwPVGVBfo/9QAAYEtJREFUKlV4TlU+586dY3///TdjjLH4+HjWoEEDxnEcMzIyYhcuXOA5XeVgZ2fHtmzZwhhjTFtbm8XHxzOxWMxGjRrFFi5cyHM6+bp168aaNm0q9X7uzp07rFmzZqx79+6MMcb++ecfZmtry1dEQr4KFUBIuenq6rLY2FiZ8djYWKarq8sYYyw6Opppa2tXdLQS1ahRg92/f19mPCoqitWoUYMxxlhYWJjCvFkh387Ro0eZhoYGGzlyJFNTU5MUE7Zu3cq6du3Kczr5vLy8mKWlJTtw4ADT0NCQZD58+DBr2bIlz+nkCwoKkvRXUVVVlWReuXKl4NYPN27cuMT+H8U/yLeho6Mj+X1QFDVq1JBbuIuMjGTVq1fnIVH5BAUFsZ9//pnVqVOHWVlZsR49erDLly/zHatEIpFIUiwt7s2bN0xJSYmHRCXT0dFhMTExkq+zs7OZkpISe/PmDY+pyic7O5t9/PhRaiwlJYWJxWKeElU+mpqa7MmTJ4yxwp4rERERjDHGHjx4wKpVq8ZjspK9evWKdezYkXEcx1RVVSW9xjp16sSSkpIYY4V9yPz9/XlOSsiXEe7cRyI46urquHbtmsz4tWvXJFPxxWIx1NTUKjpaidLS0pCcnCwz/ubNG6SnpwMA9PX1Bbet5ZUrVzB06FA4ODjgxYsXAID9+/fj6tWrPCcr2f79+9GmTRvUqFFD0qV/w4YNkjXmQrNs2TJs374du3btgoqKimTcwcFBMFPvP+Xr64udO3diyJAhUruVNGrUCA8fPuQxWcnmzJmDZcuWITAwEKqqqpJxJycnXL9+ncdksnr16oWePXuiZ8+ecHFxwf379/HTTz9Jxoo+yLfRv39/Qe4QVZr09HS8fv1aZjw5OVmy25HQHDhwAB07doSmpiYmT56MiRMnQkNDAx06dMBff/3Fdzwp6enpSEtLA2MMHz58QHp6uuTj/fv3OHPmDIyNjfmOKeXjx49Su3CpqalBQ0ND8h5DiN6+fYvu3btDW1sburq6cHBwkOwIZGhoKLffG98yMjKwa9cuuLu7o2vXrujWrRvc3d2xe/duZGRk8B2vRPJ2QgMgyJ3QilSrVg2BgYF48OABjhw5Aj8/Pzx48AABAQEwMTEBUPgarii9bgj5FDVBJeU2adIkjB07FmFhYfjhhx/AcRxu3ryJ3bt349dffwUA+Pv7C6pBWc+ePeHh4YG1a9dKZZ4xYwZ69eoFoHBNsbW1Nb9Bi/n777/xyy+/YMiQIbhz5w5ycnIAAB8+fMBvv/2GM2fO8JxQ1rZt27Bw4UJMnToVy5cvl6zD1dfXx4YNGwR50RgTE4O2bdvKjOvq6iI1NbXiA5XDixcvYGVlJTMuFouRl5fHQ6KyRUZGyr3Iqlq1KlJSUnhIVLJPm6CuXbsWU6ZMgaWlJU+JKjcrKyssWLAAoaGhsLOzkypEAhDktqG9e/eGu7s71q5di5YtWwIAQkNDMXPmTPTp04fndPItX74cq1atkmqiPGXKFKxbtw5Lly6Fq6srj+mk6evrg+M4cBwn93WZ4zh4eXnxkKx0/v7+0NPTk3wtFotx4cIFqR4aQmrQOXfuXISFhcHLywvq6urYvn07xowZg8DAQL6jyfXgwQN06tQJmZmZaNeuHWrVqgXGGJKTkzFz5kwsXrwYAQEBgunlVtxPP/2EwMBA2NnZYcCAAZgyZQouXryIwMBAdOjQge94papfvz7q16/PdwxCvj2+p6AQxXLgwAHWsmVLZmBgwAwMDFjLli3Zn3/+KXk8MzOTZWVl8ZhQ2ocPH9jIkSMl0/dEIhFTVVVlo0aNkkz7vHv3Lrt79y6/QYtp3Lgx27dvH2Psf+tFGSvMKdTt/xo0aMCOHz/OGJPOHBkZKdjlRZaWliwwMJAxJp153759rEGDBnxGK1GzZs3Y/v37GWPSmRcvXszatGnDZ7QSmZqaspCQEMaYdOZjx44xS0tLPqOVqXhe8u1ZWFiU+FG7dm2+48mVkZHBxo0bx9TU1KReU8aNGyezlEAoVFVVS1y+qqamxkOikgUFBbFLly4xjuPYsWPHWFBQkOTj2rVr7MWLF3xHlMFxXJkfQts+28zMjJ0+fVrydXR0NFNSUmK5ubk8piqZo6MjGzRoEMvJyZF5LCcnhw0ePJg5OjrykKxsKSkpkt/bgoICtnLlStajRw82bdo0qV5CQpKfn892797NBg8ezDp06MCcnJykPghRdDQDhJRLfn4+li9fDg8PDwwZMqTE4zQ0NCowVekKCgoQFhaGlStXYv369Xj8+DEYY6hTp45k2zcAaNy4MX8h5VDEmQlPnjyRO/NHTU1NsFNTx4wZgylTpmDv3r3gOA4vX77E9evXMWPGDMFsv/mpRYsW4ZdffsGLFy8gFotx7NgxxMTEwNfXF//++y/f8eRydXXF7NmzceTIEXAcB7FYjJCQEMyYMQNubm58xyM8evLkCd8RPpumpib++OMPrF69GvHx8WCMwcrKClpaWnxHK5GZmRkuXLggM3vswoULMDMz4ymVfO3atQNQ+LthZmYm6F1qiny6fbMiePnypdRrdv369aGqqoqXL1/C3Nycx2Ty3bhxA7dv35ZaRllEVVUVv/76K1q0aMFDsrIZGhpKPheJRJg1axZmzZrFY6KyTZkyBT4+PujevTtsbW0FuSSKkK9BBRBSLsrKyli9ejWGDRvGd5RyU1JSQufOnREdHY3atWujUaNGfEcql+rVqyMuLg4WFhZS41evXhXsVPzatWvj3r17Mm+czp49K8gpqQAwa9YspKWlwcnJCdnZ2Wjbti3U1NQwY8YMTJw4ke94cvXo0QOHDx/Gb7/9Bo7jsHDhQjRt2hSnTp1Cp06d+I4n1/LlyzF8+HCYmpqCMQYbGxsUFBTA1dUV8+fP5zseIV9ES0tLYV5TPD09MXnyZNy7dw8ODg6Srd99fHywceNGvuPJVfRakpmZicTERJk+XYryby9UjDEoK0tfAigrKwu2mGNgYIDY2NgS30/ExcXBwMCgglOVX0FBAY4fP47o6GhwHIcGDRqgZ8+eMv8PhOLQoUPw8/NDt27d+I5CyHchzDOPCFLHjh0RFBSE4cOH8x2l3Ozs7PD48WPUrl2b7yjlpogzE2bOnIkJEyYgOzsbjDHcvHkTBw8exO+//47du3fzHa9Ey5cvx7x58/DgwQOIxWLY2NhIzQ4Sos6dO6Nz5858xyg3FRUV/Pnnn1iyZAnu3r0LsViMJk2aoG7dunxHk7Fp0yapr/Pz8+Hj4wMjIyOpcSH2plAU06dPx9KlS6GlpYXp06eXeuy6desqKFXp+vTpAx8fH+jq6pbZ5+PYsWMVlKr8xo0bh2rVqmHt2rXw8/MDADRo0ACHDx8WZH8moLBRubu7O86ePSv38aI+U+TLMMbQoUMHqQvwzMxM9OjRQ2qWhVAago8aNQrDhg3D/Pnz0alTJ5iYmIDjOCQlJSEwMBC//fYbpk6dyndMuaKiotCzZ08kJSWhXr16AIBHjx6hatWq+Oeff2BnZ8dzQlmqqqpy+40RUllwjDHGdwiiGHbs2IHFixdjyJAhaNasmcyUXyE1+CoSEBCA2bNnY+nSpXIz6+rq8pSsdPPmzcP69euRnZ0NAJKZCUuXLuU5Wcl27dqFZcuW4dmzZwAKu50vXrwYI0aM4DkZIeVTnkIpx3GS3RLI53NycsLx48ehr68PJyenEo/jOA4XL16swGQlc3d3x6ZNm6CjowN3d/dSj/X29q6gVJXbkCFD8PTpU2zYsEHyO/P69WssW7YMa9euRffu3fmOqNDK20j208bQfFq5ciU2btyIpKQkyZIMxhiqVauGqVOnCnZZScuWLWFsbIx9+/ZJZqm8f/8ew4cPR3JysuB2QwMKG4A/fvwYW7ZsoeUvpFKiAggpt9LW4nIcJ8g7MsUzF38SZ4wJNnORzMxMhZqZUOTt27cQi8WC26qwSHl3ahDSnVwDA4NyvQl59+5dBaQpn7Lu7hcRyl1+Qiq7sLAwyRR8GxsbQe3Y9qnq1avj5MmTaNGiBXR1dXH79m1YW1vjn3/+wapVqwS9JTz5vp48eYKkpCQAhdu1Cn2Gr4aGBm7fvo2GDRtKjUdFReGHH35AVlYWT8lK1rt3b1y6dAmGhoZo2LChzA5dQnp/RMiXoCUwpNyEuja0NJcuXeI7whfT1NRE8+bN+Y7x2T5dLiA0xbcqBIC//voLPXr0gI6ODk+JyrZhwwbJ54wxjBs3DkuWLBFskQkA7t69K/X11atX0axZM6lGyXRniSiaXbt2wdHRUZBLuEqSnJyMQYMGISgoCPr6+mCMSfofHTp0CFWrVuU7ooyMjAzJ85uhoSHevHkDa2tr2NnZCWZZxucouukiNAcOHMDQoUPlPjZz5kysXr26ghOVrfb/tXfnYTXm///An+e0SCkVRZaypBKlLGFCZSv7MkYmhOz72JuZD0YYMfZlMNptMVkmNLK0KDSpqRSlFLKVtaKFlvv3h1/313HaDPW+T70e1zXXVe/7/PG8mnTu87rf79erdWvBFz0+ZmhoiMzMTKkCyLNnzwR7zERdXR2jRo1iHYOQakM7QAgRAFk8Y965c2dcvnwZGhoaMDc3r/DmTsg3rKqqqoiLixNsg9myUObqoauri5iYGDRq1AgAsHv3bjg6Ogr2qJysKygowK5duxAcHIxnz55JFdmF+HfDyMgIycnJaNq0KaysrGBtbQ0rKysYGRmxjlYue3t7pKam4uDBg2jfvj0A4Pbt25g0aRL09fVx9OhRxgmldevWDevWrYOtrS1GjhwJNTU1bNiwATt37oSfnx9SU1NZR5SyYcMG/Pjjj1LrxcXFmDBhgiB/zurq6jh06BCGDh0qsb5o0SL4+vri6dOnjJJJy8/PR3R0NDQ1NaWaoRYUFOD48eOCmSyWk5PDfx0eHo7ly5fjl19+QY8ePQAAERERcHFxgaurKzUaJYQB2gFCPktubi5CQ0PL7Mou5MaAQu8k37BhQ76A8OkOBaEaMWIE6tWrBwAYOXIk2zCEfAWPHj2SOBb3008/YfDgwVQAqSZOTk64ePEixowZAwsLC0E+If9UUlISMjIyEBwcjNDQUGzbtg1z5syBlpYWrK2t4evryzqilPPnz+PSpUt88QMAjI2NsWfPHgwcOJBhsvL98MMP/Ifv1atXw9bWFocPH4aioiK8vLzYhivH9u3b0ahRI8yYMYNfKy4uxrhx45CQkMAwWfl8fX0xbtw4+Pv7o0+fPgCA+fPn4+TJk4LaQZucnIyBAwciPT0dIpEIvXv3xtGjR6GjowMAyM7OxpQpUwRTAFFXV5c6dj127FiJ3iXAh8luQj6KTUhtRTtASJXFxMRg8ODByMvLQ25uLjQ1NfHixQsoKytDW1tbkI0BZa2TPMdxSE9Ph5aWFpSVlVnHqZLi4mKEh4fD1NRU0GPoyiMLOxM+RZmrh1gsRkZGBr/1XhYyy7KGDRsiICAAlpaWrKP8J7m5uQgPD4evry8OHToEjuNQVFTEOpYUVVVVhIWFwczMTGI9JiYGVlZWEk+rhSovLw9JSUnQ1dUV7DHL6Oho9O/fH/v378fYsWNRWFgIe3t7JCUlISgoCE2bNmUdsUy+vr6YM2cOLly4AA8PD/z1118IDg6GgYEB62i8UaNGoaioCJ6ensjKysLixYuRkJCAkJAQ6OrqIjMzE82aNRPMPV1oaGiVX2tlZVWNSaqutuzqJaQqaAcIqbJFixZh2LBh2Lt3L9TV1REREQEFBQVMmDABCxcuZB2vTD/88ANev36NiIiIMjvJCw3HcWjXrh1u3bolM2fM5eTkYGtri8TERJksgBBC2GjevLmge++U5e+//0ZoaChCQkIQFxeHDh06oE+fPjhx4gR69+7NOl6Z+vbti4ULF+Lo0aNo1qwZAODx48dYtGgR+vXrxzhd1SgrK6Nz586sY1SoS5cuOHXqFL870t3dHampqQgODkaTJk1YxyvXuHHj8Pr1a/Tq1QtaWloIDQ0VXG+Ka9eu4dKlS2jcuDEaN24Mf39/zJ07F71790ZwcLDUhD/WhFLU+By0q5fUJVQAIVUWGxuL/fv3Q05ODnJycnj37h3atGmDTZs2YdKkSVWerlGTgoKC8Ndff6Fbt24Qi8XQ09PDgAED+PPEQhulJxaL0a5dO7x8+VJmCiAAYGJigrS0NJloTObv7y/xfUlJCS5fviy1RVlIY50/najy/v17rF+/Xuq4lJAmqty8eVPie47jkJSUhLdv30qsC+UYWik3Nzd+4lJRURG8vLyknjgL+bifLNmyZQtWrFiBffv2QU9Pj3WcKhkyZAi0tLSwZMkSBAYGysSRxd27d2PEiBFo1aoVWrZsCZFIhPT0dJiYmODQoUOs4/GqOjkKENbfuo9ZW1vj4MGD+Pbbb9G+fXuEhoYKbsdKeT9nbW1tmJub4/fff+fXhPJzzs/Ph7y85EeWPXv2QCwWw8rKCkeOHGGUrGrCwsKwf/9+pKWl4c8//0Tz5s1x8OBBtG7dGr169WIdD4DkyGMhjT8mpDrQERhSZVpaWrh69SoMDAxgaGiInTt3wtbWFklJSejcuTPy8vJYR5SipqaGmzdvolWrVmjVqhUOHz4MS0tL3Lt3Dx06dBBk5nPnzsHV1RV79+5Fx44dWcepkgsXLmDFihVYu3YtunTpIvU0Rkg9FCoa51xKaCOSbWxsKn2NSCRCUFBQDaSpGrFYDJFIhLLeYkrXhfZzbtWqVaV9KEQikSCP+8mi58+fY+zYsbhy5QqUlZWlRi0Kaaxzqe3bt+PKlSsICwuDnJwc3wjV2tpaoseGEF28eBFJSUngOA7Gxsbo378/60gSqvJ3DhDW37ryHvxERERAX19fovghlAbmsvhztrCwwPz58zFx4kSpa/PmzcPhw4eRk5MjqPeTUidOnMDEiRMxfvx4HDx4ELdv30abNm3w+++/4+zZswgICGAdsVzv378vs0G1rq4uo0SEfB1UACFVNnDgQEyePBkODg6YNWsWYmJisGDBAhw8eBCvX7/GP//8wzqiFFnsJK+hoYG8vDwUFRVBUVFRYmwoIMwPBR8XFT5t/CW0D7mkZjx48KBKr5OVJ//k6+vfvz/S09MxdepUNGnSRKr4NGnSJEbJqiY+Ph6hoaEIDg7GmTNn0KhRI0FNzSDVb8qUKVV+raenZzUmqd02bNiAsLCwcosFc+bMwb59+6Q+qAuBubk5Fi1aBEdHR4m+UrGxsbCzs0NGRgbriFKSk5MxdepUXLt2TWKd7ulIbUEFEFJlUVFRePPmDWxsbPD8+XNMmjQJ4eHh0NfXh6enJzp16sQ6opTDhw+jsLAQkydPRkxMDGxtbfHy5Uu+k7y9vT3riFK8vb0rvC7EDwWVNfySxfOwhJDqpaysjOvXrwvyvaMyMTExCAkJQXBwMMLCwvDmzRuYm5vjxo0brKPx8vPzcfnyZX7E6Y8//oh3797x1+Xk5LB27VooKSmxiiil9CilLEwEIqQqlJWVcfv2bbRq1UqiAJKWlgZjY2MUFBSwjijF0tIS8vLycHZ2ho6OjtS/R1n8m03Ix6gAQuoUWegkTwghdUHnzp3x+++/o0ePHqyjVNnw4cMRHh6OnJwcmJmZ8cdf+vTpI6ijfgCwf/9+nD17FmfOnAHwYRpMhw4d+F2FSUlJWL58ORYtWsQypgQ5OTk8ffqUn8Rkb2+PnTt3CrqJ6KeeP3+OO3fuQCQSwcDAAFpaWqwjlSs3Nxeurq64fPlymUcd6Ljfl2vbti3279+P/v37SxRAfHx84Orqitu3b7OOKEVFRQXR0dEwMjJiHYWQakFNUEmdIgud5AEgNTUVnp6eSE1NxY4dO6CtrY3z58+jZcuW6NChA+t4ZZKFJl+EEOFwdXXFkiVLsH79epiYmEj1ABFaQQEADAwMMGPGDEEWPD51+PBhqeLGkSNH+LHOhw4dwp49ewRVAPn0mVxAQAA2bNjAKM3nyc3Nxfz58+Hj48MXEuTk5ODo6Ihdu3YJcrT9tGnTEBoaiokTJ5b5pJ98uZkzZ2LhwoXw8PCASCTCkydPcP36dSxduhSrVq1iHa9MxsbGePHiBesYhFQb2gFCqiwzMxNLly7lnxR8+qsjxDOBxcXF8PLyKvfphlAafH0sNDQUgwYNgqWlJa5cuYLExER+2k5kZCT8/PxYR5Qiy02+CCFslPYO+vRDF50z/zqaNm2Ky5cv80VzLS0t3LhxA61atQLw4Zx/t27dkJ2dzTClJLFYjIyMDH4HyMdPzIVu5syZuHTpEnbv3g1LS0sAQHh4OBYsWIABAwZg7969jBNKU1dXx7lz5/i8pHr8/PPP2LZtG3/cpV69eli6dCnWrl3LONn/ycnJ4b+OiorC//73P/z6668yU5wm5HNQAYRU2aBBg5Ceno558+aV+aRgxIgRjJKVb968efDy8sKQIUPKzLxt2zZGycrXs2dPfPfdd1i8eLHEzd+NGzcwcuRIPH78mHVEKbLY5IsQwpas9g7Kzc1FaGgo0tPT8f79e4lrQhqRXL9+fcTGxsLQ0LDM60lJSTAzMxNUDwI5OTlkZGTwx0ZUVVVx8+ZNmRix3rhxY/j5+cHa2lpiPTg4GGPHjsXz58/ZBKtA69atERAQIPgJRrVBXl4ebt++jZKSEhgbG/Pj1oWidHJbqdJC9MeoOE1qCzoCQ6osPDwcYWFhMDMzYx2lynx9fXH8+HEMHjyYdZQqi4+PL3OmvZaWFl6+fMkgUeXu3LmDPn36SK2rqakhKyur5gPVUufPn0eDBg34I0V79uzBgQMHYGxsjD179kBDQ4NxQml9+/bFyZMnoa6uLrGek5ODkSNHCnIXFgCUlJTg7t27Ze4cK+t3nXw+oRY4KhITE4PBgwcjLy8Pubm50NTUxIsXL6CsrAxtbW1BFUBatGiBhISEcgsgN2/eRIsWLWo4VcU4jsPkyZNRr149AEBBQQFmzZolNVpdKCNlP5aXl1dmrxJtbW3k5eUxSFS5tWvXYtWqVfD29hbkEZ3a5MmTJ3j58iX69OmD+vXrl1lgYCk4OJh1BEJqDBVASJW1bNlS6tiL0CkqKkJfX591jM+irq6Op0+fSj3xiomJQfPmzRmlqpiOjg7u3r3Lb60uFR4eLqityxoaGlW+4RDiuOFly5Zh48aNAD4UypYsWYLFixcjKCgIixcvFuSYxZCQEKmn5MCHDzZhYWEMElUuIiICDg4OePDggdTfPHr69fXl5eWVuZvC1NSUUaLyLVq0CMOGDcPevXuhrq6OiIgIKCgoYMKECVi4cCHreBIGDx6MVatWYciQIVKTXvLz87FmzRoMGTKEUbqyfTrlbMKECYySfL6ePXti9erV8PHx4X/epT/nnj17Mk5Xti1btiA1NRVNmjRBq1atpI46/Pvvv4yS1R4vX77E2LFjERwcDJFIhJSUFLRp0wbTpk2Duro6tmzZwjoiANksSBPyX1EBhFTZ9u3b4ezsjP3790t90BWqJUuWYMeOHdi9e7egKu0VcXBwwIoVK/Dnn39CJBKhpKQEV69exdKlS+Ho6Mg6XplkpcnX9u3b+a9fvnyJdevWwdbWlr85vX79OgIDA7Fy5UpGCSt27949GBsbA/jQd2Xo0KH49ddf8e+//wpul9PNmzf5r2/fvi1xDKq4uBjnz58XbEFv1qxZ6Nq1K86dO0eNAavR8+fPMWXKFPz9999lXhdioSk2Nhb79++HnJwc5OTk8O7dO75H06RJkzB69GjWEXk//fQTjh8/DkNDQ8ybNw8GBgYQiURISkrC7t27UVRUhJ9++ol1TAlCLOJW1Y4dO2BnZ4cWLVqgU6dOEIlEiI2NhZKSEgIDA1nHK9PIkSNZR6j1Fi1aBAUFBaSnp0scNbK3t8eiRYsEUwD5mCzuNiXkc1APEFKhT5+Y5+bmoqioCMrKylJPCoTyxPzTG9CgoCBoamqiQ4cOUpmFuI22sLAQkydPhq+vLziOg7y8PIqLi+Hg4AAvLy/IycmxjlgmWWjy9bFvv/0WNjY2mDdvnsT67t27cenSJZw+fZpNsApoamoiPDwcxsbG6NWrFxwdHTFjxgzcv38fxsbGgtpm/fF54rLeZurXr49du3bBycmppqNVSkVFBXFxcTK3e0zWjB8/Hvfv38f27dthY2ODU6dOITMzE+vWrcOWLVsEtzsB+HAU8erVqzAwMIChoSF27twJW1tbJCUloXPnzoL6Nwh8KJrOnj0bFy9e5P8dikQiDBgwAL///rugdujVBvn5+Th06BCSkpLAcRyMjY0xfvx4fvQwqXuaNm2KwMBAdOrUSaJH2r1792BiYoK3b9+yjijFxMQEGzduxODBgxEfH4+uXbtiyZIlCAoKQvv27WW6UEkIQDtASCU+fmIuKxo2bCjx/ahRoxgl+W8UFBRw+PBhrF27Fv/++y9KSkpgbm6Odu3asY5WofXr1+Pnn38WdJOvjwUGBvLHST5ma2sLZ2dnBokq16tXLyxevBiWlpaIjIzEsWPHAHyY5iC0s/z37t0Dx3Fo06YNIiMj+aaGwIejadra2oIt5nXv3h13796lAkg1CwoKwl9//YVu3bpBLBZDT08PAwYMgJqaGjZs2CDIAoi5uTmioqJgYGAAGxsbrFq1Ci9evMDBgwdhYmLCOp6U1q1b4/z583j16hXu3r0LANDX14empibjZLVT/fr1MX36dNYxiIDk5uaW2V/lxYsXfK8bofl0t+mwYcMEu9uUkP+CCiCkQp+ex5UFsl6ZdnFxwdKlS9GmTRuJp3P5+fn47bffBHWkpJSTkxN27NgBVVVVdO3alV/Pzc3F/Pnz4eHhwTBd2Ro1aoRTp05h2bJlEuunT59Go0aNGKWq2O7duzFnzhz4+flh7969/BGSv//+G3Z2dozTSdLT00NhYSEcHR2hqakJPT091pGqbP78+ViyZAkyMjLKHAEoxN4Usig3N5cfd6qpqYnnz5/DwMAAJiYmgu098Ouvv+LNmzcAPjSQnDRpEmbPng19fX1Bv/doamrCwsKCdYxaLzU1Fdu3b0diYiJEIhHat2+PhQsXom3btqyj8TQ1NZGcnIzGjRtX2hdLKDt7ZVmfPn3g4+PD74YtPdr822+/wcbGhnG6sikqKvK72S5dusQfv9bU1JQYl0uIrKIjMKRST548wdatW7Fq1Sqp2d/Z2dlYt24dli5dWmb3c1YKCgpw4cIF2NjYQFVVVeJaTk4OQkJCYGtrK8jqu5ycHJ4+fcp/MCj18uVLaGtrC/JcfHmZX7x4gaZNm6KoqIhRsvJ5eXlh6tSpsLOz43uARERE4Pz583Bzc8PkyZPZBqwlNDQ0EB0dLVNb7cVisdSaSCSiEYBfWbdu3fg+PCNHjuR3fuzcuRN+fn5ITU1lHVECx3FIT0+HtrY2HWkgUgIDAzF8+HCYmZnB0tISHMfh2rVriIuLw5kzZzBgwADWEQEA3t7eGDduHOrVqwdvb+8KXyuLD8GE5vbt27C2tkaXLl0QFBSE4cOH49atW3j16hWuXr0qqOJYqeHDh+P9+/ewtLTE2rVrce/ePTRv3hwXLlzAvHnzkJyczDoiIV+ECiCkUkuXLkVOTg7++OOPMq/PmjULDRs2LPM4ASs7duyAv78/Ll++XOb1/v37Y+TIkVL9H4RALBYjMzNT4sgA8GG7uL29PZ4/f84ombScnBxwHAcNDQ2kpKRIZC4uLsaZM2fg7OyMJ0+eMExZvn/++Qc7d+5EYmIif157wYIF6N69O+tovM952vJpgVIIpkyZAhMTEyxevJh1lCp78OBBhddlaTeLkB0+fJjveRQTEwNbW1u8fPkSioqK8PLygr29PeuIEkpKSqCkpIRbt24J/kgiqXnm5uawtbWFq6urxLqzszMuXLgg2F1NpPplZGRg7969iI6ORklJCTp37oy5c+dCR0eHdbQypaenY86cOXj48CEWLFiAqVOnAvjQ0LW4uBg7d+5knJCQL0MFEFKpjh07Yt++fXw36E9du3YN06dPx61bt2o4WfksLCywcuVKDBs2rMzrZ8+ehYuLCyIjI2s4WflKt6JmZ2dDTU1NYltqcXEx3r59i1mzZmHPnj0MU0r6uNFlWUQiEdasWYOff/65BlPVLpX9jD8mxJ0J69evx+bNm9GvXz906dIFKioqEtcXLFjAKBkRmry8PCQlJUFXVxeNGzdmHadMHTp0gLu7O3r06ME6ChEYJSUlxMfHSxXHkpOTYWpqyjcIF5qSkhLcvXsXz549Q0lJicS1Pn36MEpVOxQWFmLgwIHYv38/DAwMWMchhPx/1AOEVOrevXvQ1dUt93qLFi1w//79mgtUBSkpKejUqVO5101NTZGSklKDiSq3fft2cBwHJycnrFmzRqKZq6KiIlq1asUf1RCK4OBgcByHvn374sSJExKN9RQVFaGnp4dmzZoxTFix1NRUeHp6Ii0tDdu3b4e2tjbOnz+Pli1bokOHDqzjAfjwMy51//59ODs7Y/LkyRKje729vbFhwwZWESvk5uYGdXV1REdHIzo6WuKaSCQSTAHE398fgwYNgoKCAvz9/St87fDhw2soVd2irKyMzp07s45RoU2bNmHZsmXYu3cvOnbsyDoOERAtLS3ExsZKFUBiY2OljocKRUREBBwcHPDgwQOpaV103O/LKSgoICEhQaZHqefn56OwsFBiTYi7TQn5HLQDhFSqcePGOHnyZLlPAq5cuYLRo0fjxYsXNZysfKqqqggJCUGXLl3KvB4dHQ1ra2u+mZ2QhIaGwtLSEvLyslOffPDgAXR1dct8k09PT6+wgMZKaGgoBg0aBEtLS1y5cgWJiYlo06YNNm3ahMjISPj5+bGOKKVfv36YNm0avv/+e4n1I0eO4I8//kBISAibYLWAWCxGRkYGtLW1y+wBUoo+FHy5rKwsHD16FLNnzwbwYRxufn4+f11OTg4HDhyAuro6o4Tl09DQQF5eHoqKiqCoqCjVC4SaRtZdLi4u2LZtG5ydnfHNN99AJBIhPDwcGzduxJIlS/C///2PdUQpZmZmMDAwwJo1a6CjoyP1Hv7pVD3y+ZYsWQIFBQWpo1FClpubixUrVuD48eN4+fKl1HV6DySyjgogpFJDhgxBs2bNcODAgTKvT5s2DU+ePEFAQEANJytfjx49MGrUKKxYsaLM666urjh9+jQiIiJqOFnlalMTVCFn7tmzJ7777jssXrwYqqqqiIuLQ5s2bXDjxg2MHDkSjx8/Zh1RirKyMuLi4srcYm1mZsZ3bReq0rcbWX4aRr7cb7/9hri4OBw6dAjAh4K1ra0t37D6+vXrGDduHH755ReGKcvm5eVV4e8vNY2suziOw/bt27Flyxa+71WzZs2wbNkyLFiwQJB/91RUVBAXF0cjv6vR/Pnz4ePjA319fXTt2lXqGOjWrVsZJSvf3LlzERwcDBcXFzg6OmLPnj14/Pgx9u/fD1dXV4wfP551REK+iOw8YibMLF26FAMGDEDDhg2xbNkyftpLZmYmNm3aBC8vL1y4cIFxSklOTk5YvHgxOnTogKFDh0pcO3PmDNatWyfINx0AUttQS7179w6Kioo1nKZqysv89u1bKCkp1XCaqomPj8eRI0ek1rW0tMp84iEELVu2xL59+7BlyxaJ9f3796Nly5aMUlXOx8cHv/32G3/szMDAAMuWLcPEiRMZJyMs+Pn5YfXq1RJrmzZt4icFnTp1Ci4uLoIsgNB0KFIekUiERYsWYdGiRfzu0k+n0AlN9+7dcffuXSqAVKOEhAT+aN+n01OEWBQDPtwn+/j4wNraGk5OTujduzf09fWhp6eHw4cPUwGEyDwqgJBK2djYYM+ePVi4cCG2bdvGN+jMzs6GgoICdu3ahb59+7KOKWHGjBm4cuUKhg8fDiMjIxgaGkIkEiExMRHJyckYO3YsZsyYwTqmhNKu2iKRCG5ubmjQoAF/rbi4GFeuXIGRkRGreGUqnewhEomwatUqKCsr89eKi4vxzz//wMzMjFG6iqmrq+Pp06do3bq1xHpMTAyaN2/OKFXFtm3bhm+//RaBgYF8E8aIiAikpqbixIkTjNOVbevWrVi5ciXmzZvHj4a8evUqZs2ahRcvXmDRokWsI/K2bNmCMWPG0JSXapaamirxgcvQ0FCiuNupUyfB9WgqJYu73UjNevbsGe7cuQORSARDQ0OpiW6s3bx5k/96/vz5WLJkCTIyMmBiYgIFBQWJ15qamtZ0vFrn4z5esuLVq1f8vZGamhp/tK9Xr1780UVCZBkdgSFV9vjxYxw/fhx3794Fx3EwMDDAmDFj0KJFC9bRynX8+HEcOXIEKSkpfGYHBweMHTuWdTQppW82Dx48QIsWLSAnJ8dfK22C6uLiIqgRrTY2NgA+9NPo2bOnxIeY0sxLly4V5MjI5cuX4/r16/jzzz9hYGCAf//9F5mZmXB0dISjo6PUE2qhePToEX7//XckJSXxo3tnzZol2B0grVu3xpo1a+Do6Cix7u3tjV9++QX37t1jlEyaWCyGWCyGjY0Npk2bhlGjRgl215UsU1ZWRmRkZLlNROPj49G9e3dBHun6uFfMx548eYK2bdtK9DIhdUtOTg7mzp2Lo0eP8tNU5OTkYG9vjz179gimn0bpZLHybv9Lr1G/o7rL1NQUu3btgpWVFQYOHAhTU1Ns3rwZO3fuxKZNm/Do0SPWEQn5IlQAIURgbGxscPLkSWhoaLCOUmVTpkzBjh07ZKozeGFhISZPngxfX19wHAd5eXkUFxfDwcEBXl5eEgUo8t8pKSkhISFBaot1SkoKTExMBDUaUiwWw8PDA6dPn0ZAQADU1NQwYcIETJs2jSZ+fEUdO3bE8uXLpYpipTw9PbF582ZBjVYv3aG3aNEirF27tswdevfv30dMTAyriISxsWPHIjY2Frt27ULPnj0hEolw7do1LFy4EKampjh+/DjriAA+PGSpKtoN93XcuHEDf/75J9LT0/H+/XuJaydPnmSUqnzbtm2DnJwcFixYgODgYAwZMgTFxcUoKirC1q1bsXDhQtYRCfkiVAAhhNQ5HMchPT0dWlpayMjIwL///ouSkhKYm5sLcrfKx7KysuDu7o7ExESIRCIYGxvDyclJME8XP9WxY0c4ODjgp59+klhft24djh07hvj4eEbJpH38dP/Zs2fw8vKCp6cnkpOT0aVLF0yfPh3jxo0T/Ll+oVu5ciW8vb0RGRmJpk2bSlx7+vQpunfvDkdHR6xbt45RQmmyuEOP1CwVFRUEBgaiV69eEuthYWGws7NDbm4uo2TSnJycsGPHDvpbVgN8fX3h6OiIgQMH4uLFixg4cCBSUlKQkZGBUaNGwdPTk3VEXl5ensRR5lLp6emIiopC27Zt0alTJwbJCPm6qABCiAA9evQI/v7+ZT4tEGrzVll6wlFSUgIlJSXcunVL8AWPj0VFRcHW1hb169eHhYUFOI5DVFQU8vPzceHCBb7RmpCcOHEC9vb26N+/PywtLfnRkJcvX8bx48cxatQo1hF55R1vCAsLg7u7Oz8a+e3btyzi1Rpv3rxB9+7d8ejRI0ycOBEGBgYQiURISkrCoUOH0Lx5c0RGRgryw5ks7tAjNUNXVxfnzp2DiYmJxPrNmzcxePBgQR0bKK+XDfn6TE1NMXPmTMydO5efONe6dWvMnDkTOjo6WLNmDeuIPEVFRXTv3h02Njbo27cvevbsiXr16rGORchXRwUQQgTm8uXLGD58OFq3bo07d+6gY8eOuH//PjiOQ+fOnREUFMQ6ohRZesJRqkOHDnB3d+ebicqC0k7sBw4cgLz8hx7WRUVFmDZtGtLS0nDlyhXGCcsWHR2Nbdu2ITExke9bsmTJEpibm7OOJqGyDwU5OTk4duwYpk+fXsPJap/Xr1/jxx9/xPHjx5GVlQXgQ2PisWPH4tdff4WmpibbgIR8pj/++AN//vknfHx8oKOjAwDIyMjApEmTMHr0aMycOZNxwv9TXrGXfH0qKiq4desWWrVqhcaNGyM4OBgmJiZITExE37598fTpU9YReQcPHkRoaChCQkKQlpYGJSUl9OjRAzY2NrCxsUH37t2lGuUSIouoAEKIwFhYWMDOzg4uLi780wJtbW2MHz8ednZ2guzALUtPOEqdO3cOrq6u2Lt3r8z0d6hfvz5iYmKkpgHdvn0bXbt2FWTTSFlCHwpqHsdxeP78OYAPI6iFOBaydNpVVQh1hx6pHubm5hK/sykpKXj37h10dXUBfDg6UK9ePbRr1w7//vsvq5hSxGIxMjMzBTehpjZq2bIlAgICYGJigk6dOsHZ2Rnff/89rl+/Djs7O2RnZ7OOWKZHjx4hKCgIoaGhCA4OxoMHD1C/fn1YWloiMDCQdTxCvgiNwSWVev36NQ4dOoRJkyZJNbnMzs6Gj49PmdfIf5OYmIijR48CAOTl5ZGfn48GDRrAxcUFI0aMEGQBJDU1FUOGDAEA1KtXD7m5uRCJRFi0aBH69u0ryALIhAkTkJeXh06dOkFRURH169eXuF469k1I1NTUkJ6eLlUAefjwoSCPC5QqLi7GqVOn+L4l7du3x4gRI/hdLEJROrmB1ByRSCT4glNVG5sKsXhDqtfIkSNZR/jPSo+eVUSI74Oypnfv3rh48SJMTEwwduxYLFy4EEFBQbh48SL69evHOl65WrRowU/FS0lJgY+PD3bu3IlLly6xjkbIFxPW3ScRpN27d+PmzZuYP3++1LWGDRsiLCwMOTk5+Pnnnxmkq9ioUaPKfIMXiURQUlKCvr4+HBwcYGhoyCBd2VRUVPDu3TsAQLNmzZCamooOHToAAF68eMEyWrk0NTXx5s0bAEDz5s2RkJAAExMTZGVlCXZXwvbt21lH+Gz29vaYOnUqNm/ejG+++Ybvp7Fs2TJ8//33rOOVKSEhASNGjEBGRgb/7yw5ORlaWlrw9/eXOi9PiNAEBwezjkAESqjj0qtizZo1gm2eXRvExsbCzMwMu3fv5qed/fjjj1BQUEB4eDhGjx6NlStXMk5ZtrS0NAQHByMkJAQhISHIzs7GN998gxUrVsDKyop1PEK+GB2BIZUyMzPDli1byq1UX758GUuXLhXk+L/Jkyfj9OnTUFdXR5cuXcBxHGJiYpCVlYWBAwciLi4O9+/fx+XLl2Fpack6LoAPT5SGDBmC6dOnY/ny5Th16hQmT57MN94TYvXdwcEBXbt2xeLFi7F+/Xrs2LEDI0aMwMWLF9G5c2fBNUGVVe/fv8eyZcuwb98+FBUVAQAUFBQwe/ZsuLq6CrJZWY8ePaCtrQ1vb2++ceTr168xefJkPHv2DNevX2ecUFJ+fj6io6OhqakJY2NjiWsFBQU4fvx4ueNbCSF1140bN1BSUiI1Ceiff/6BnJwcunbtyiiZNDruV/3EYjHMzc0xbdo0ODg4yESxadKkSQgODsabN29gaWmJPn36wMrKCl27dpWYfEWIrKMCCKmUqqoqbt26xZ9p/VR6ejo6duyInJycGk5WOWdnZ+Tk5GD37t0Qi8UAPmxzX7hwIVRVVbF+/XrMmjULt27dQnh4OOO0H6SlpeHt27cwNTVFXl4eli5divDwcOjr62Pbtm3Q09NjHVHKq1evUFBQgGbNmqGkpASbN2/mM69cuVIwExNycnL4o1qV/b4K+UhXXl4eUlNTwXEc9PX1yxxbJxT169dHVFQUv4upVEJCArp164b8/HxGyaQlJydj4MCBSE9Ph0gkQu/evXH06FG+oWFmZiaaNWuG4uJixklJTbOxsSlzN2HDhg1haGiIuXPnomXLlgySEaGwsLDA8uXLMWbMGIn1kydPYuPGjfjnn38YJZNGU2Cq3/Xr1+Hh4YHjx4+jsLAQo0ePxtSpU2FjY8M6WrnEYjF0dXUxd+5c9OvXT6rHDSG1BRVASKXU1dVx/vz5cqdlREREwM7Oju/kLyRaWlq4evUqDAwMJNaTk5PxzTff4MWLF4iPj0fv3r0FmZ98XR/f9InF4jLf2DmOg0gkEvyH3IcPH0IkEqFFixaso1TIzMwMW7duRd++fSXWg4KCsHDhQsTHxzNKJm3UqFEoKiqCp6cnsrKysHjxYiQkJCAkJAS6urpUAPlKEhISKm087OrqCmdn5xpKVLlFixaVuZ6VlYXo6GikpaUhPDwcZmZmNRuMCEaDBg1w8+ZNtGnTRmL93r17MDU15Y+JCgHtAKk5+fn5OH78ODw9PREWFoZWrVrByckJkyZNEtz7d1JSEn/sJTQ0FAUFBejVqxesrKxgbW2Nzp078w8TCZFlVAAhlSodfeXq6lrm9RUrViAyMlKQ56Q1NDTg7e2N4cOHS6z7+/tj0qRJeP36NVJSUmBhYYHXr18zSlmxtLQ05Ofno3379jLxxsNxHIKDg5Gfn49vvvlGMLs/ACA0NBSWlpaQl5dHSEhIhU82hHjOtaioCGvWrMHOnTvx9u1bAB9uuufPn4/Vq1cLcjxdQEAAli9fjl9++YUvokZERMDFxQWurq7o1asX/1rWu26aNGmCS5cuSfQlmTt3Ls6ePYvg4GCoqKhQAeQraN68Oa5evYpWrVqVeX3jxo1YtWoV3wtJFsydOxf37t1DQEAA6yiEkUaNGuHs2bPo2bOnxPq1a9cwZMgQwd5jkJqTmpoKT09P+Pj44OnTpxgwYICg/2bcvn2bnwITFhaG/Px89OrVC2fPnmUdjZAvwxFSCT8/P05eXp7btWsXV1RUxK8XFRVxO3fu5BQUFLg///yTYcLyzZ8/n2vcuDG3detWLiwsjAsPD+e2bt3KNW7cmFuwYAHHcRx34MABztLSknFSjnv//j23atUqbujQody6deu4oqIibty4cZxYLObEYjHXvn177t69e6xjSnj9+jXn6OjIdezYkZs2bRqXnZ3NWVpaciKRiBOJRJy2tjYXFxfHOqaElJQU1hH+s5kzZ3La2trcvn37uLi4OC4uLo7bt28f17RpU27mzJms45Wp9HdBJBLxv8tlfS8Wi1lH5VRVVbnbt29Lrc+bN49r0aIFd+XKFUHklHX29vZc27ZtuczMTKlrmzZt4hQUFLjjx48zSPbfxcXFcU2bNmUdgzBkb2/PWVlZcVlZWfza69evOSsrK+67775jmIwIyZs3b7h9+/ZxmpqaMvF+8vTpU+7o0aPcjBkzODU1NZnITEhlaAcIqZKff/4ZGzZsgKqqKtq0aQORSITU1FS8ffsWy5YtK3d3CGvFxcVwdXXF7t27kZmZCeDDU9758+djxYoVkJOTQ3p6OsRiMfOtiEuWLMHBgwcxfPhwBAcHo2PHjrhz5w7WrFkDsViMtWvXwsTEBIcPH2aa82PTpk3DlStX4OjoiLNnz0IsFoPjOGzfvh1isRjLly9HgwYNcObMGdZReWKxGM2bN4eNjQ3/X3lPooWmYcOG8PX1xaBBgyTW//77b4wbNw7Z2dmMkpUvNDS0yq9lvevGwsIC8+fPx8SJE6WuzZs3D4cPH0ZOTg7tAPlCRUVFGDZsGJ4+fYrQ0FC+OeCWLVvg7OyMgwcPYty4cYxTfh6h7yQk1e/x48fo06cPXr58CXNzcwAfJoE0adIEFy9epB4xdVxoaCg8PDxw4sQJyMnJYezYsZg6dWq5x8tZefbsGUJCQvgpMMnJyVBUVISFhQV/z8T6vZqQL0UFEFJlkZGROHz4MO7evQuO42BgYAAHBwdYWFiwjlYlpU0vWW+zL4+enh727t2LwYMHIzk5GUZGRjh37hz/YTc0NBTjx4/Ho0ePGCf9P82bN8eRI0dgZWWFx48fo2XLlggKCoK1tTWAD78zw4cPR0ZGBtugHwkLC0NoaChCQkJw/fp1FBQUQFdXF3379uXf3Js3b846ZpmaNGmCkJAQtG/fXmI9MTERffr0wfPnzxklqx02bNiAsLCwcrckz5kzB/v27UNJSUkNJ6t98vPzMWDAAIhEIly8eBH79u3DsmXL4O3tDQcHB9bxPtuePXvg4+MjqEaXpObl5ubi8OHDiIuLQ/369WFqaorvv/9ekMcTSfV7+PAhvLy84OXlhXv37uGbb77B1KlTMXbsWKioqLCOJ8XY2Bh37tyBvLw8unXrBmtra9jY2MDS0hJKSkqs4xHy1VABhBCBUFBQwP379/kP3/Xr18fNmzfRrl07AMDTp0/RsmVLfvypEMjLy+Phw4f8lAxlZWXEx8ejbdu2AICMjAw0b95csE/MCwsLcf36db7pV0REBN69ewd9fX3cuXOHdTwpLi4uSEpKgqenJz/y9t27d5g6dSratWuH1atXM074f169eoW8vDyJnVW3bt3C5s2bkZubi5EjR8rkB13y9WRnZ8PKygqFhYVITk6Gp6cnJkyYwDpWmfz9/ctcz87Oxo0bN+Du7g4vLy989913NZyMECJEAwYMQHBwMLS0tODo6AgnJycYGhqyjlWhH3/8ETY2NujVq5egp8sR8qXkWQcgssnExAQBAQGC39KZmZmJpUuX4vLly3j27Bk+rfcJ6YN5cXGxxFMieXl5ibnrpcdLhKSkpEQio5ycnERjUaGPT1NQUECfPn3QrVs39OzZE4GBgThw4ADu3r3LOlqZYmJicPnyZbRo0QKdOnUCAMTFxeH9+/fo168fRo8ezb/25MmTrGIC+NAUUkdHB1u3bgXwYVtt79690axZM7Rt2xaTJ09GcXFxmcdNSO32cTFh9uzZWLhwIUaNGgU1NTWJa582r2Zp5MiRZa6rqqrCyMiIih+Ed/v2baSnp+P9+/cS60L6fSbVr379+jhx4gSGDh0qcZ8kZBs2bGAdgZAaQQUQ8p/cv38fhYWFrGNUavLkyUhPT8fKlSuho6Mj+A/kgYGB/Hn4kpISXL58GQkJCQAg2DG9bm5uaNCgAYAPZ/u9vLzQuHFjABDU2L+PFRQU4Nq1a/wZ1xs3bqB169awsrLC3r17BXu+VV1dHd9++63EmlCLkBEREfD09OS/9/HxgaamJmJjYyEvL4/Nmzdjz549VACpg8oqJvj5+cHPz4//XmijqOnYE6lMWloaRo0ahfj4eIhEIv6BRel9h5B+n0n1K2/XGCGEPToCQ/4TVVVVxMXFSc27FxpVVVWEhYXBzMyMdZRKVWXErdA+FLRq1apKRaV79+7VQJqqsbKywo0bN9C2bVv06dMHVlZWsLKyQpMmTVhHqxDHcUhPT4eWlpZMbE2tX78+kpKSoKenBwAYPHgwOnTogN9++w0AkJycjJ49e+Lly5csYxJCyFcxbNgwyMnJ4cCBA2jTpg0iIyPx8uVLLFmyBJs3b0bv3r1ZRySEEALaAUL+o969e6N+/fqsY1SqZcuWgjs2Uh5ZfMJ4//591hE+27Vr16CjowMbGxtYW1ujT58+/I4VIeM4Du3atcOtW7f4vjBCpqamhqysLL4AEhkZialTp/LXRSIR3r17xyoeIYR8VdevX0dQUBC0tLQgFoshFovRq1cvbNiwAQsWLEBMTAzriIQQQgBU/siZkDIEBATwjS+FbPv27XB2dpbJD+qkemRlZeGPP/6AsrIyNm7ciObNm8PExATz5s2Dn5+fYCepiMVitGvXTmZ2TFhYWGDnzp0oKSmBn58f3rx5g759+/LXk5OTBXt8h7DRt29fPHjwgHUMQv6T4uJi/jho48aN8eTJEwAfJrwJsak2IYTUVXQEhlTZy5cv0ahRIwAfRnsdOHAA+fn5GD58uGC3dmpoaCAvLw9FRUVQVlaWGkX36tUrRsmIULx58wbh4eF8P5C4uDi0a9eO770iJOfOnYOrqyv27t2Ljh07so5TodjYWPTv3x9v3rxBUVERfvrpJ6xdu5a/PnHiRKioqGDfvn0MUxIWyjsbP3r0aOzYsYMvjFHTSCJLevfujSVLlvATrl6/fo3//e9/+OOPPxAdHS3I9xRCPpWTkwM1NTUAHx52fjx5UE5ODkOGDGEVjZCvhgogpFLx8fEYNmwYHj58iHbt2sHX1xd2dnbIzc2FWCxGbm4u/Pz8yu2Sz5K3t3eF1ydNmlRDSYhQlZSU4MaNGwgODkZwcDDCw8NRUFAgqF4rpT4u6CkqKkodQxNaQe/58+e4du0amjZtiu7du0tcO3fuHIyNjdG6dWtG6QgrYrFYoklkWYTW74iQygQGBiI3NxejR49GWloahg4diqSkJDRq1AjHjh2T2AFHiBCdPXsWK1eu5I9rqaqqIjc3l78uEolw7NgxjBkzhlVEQr4KKoCQSg0aNAjy8vJYsWIFDh06hLNnz2LgwIFwc3MDAMyfPx/R0dGIiIhgnJSQypWUlCAqKgohISEIDg7G1atXkZubi+bNm8PGxob/r7R3hZBQQY/UBoMGDYKcnBw8PDygra3NrysoKCAuLg7GxsYM01WupKQEd+/exbNnz6R6N/Xp04dRKiJEr169goaGhuAn0BECfNh1N2LECL5f16cDDzZt2oSQkBAEBASwjEnIF6MCCKlU48aNERQUBFNTU7x9+xZqamqIjIxE165dAQBJSUno0aOHYMa0frx9Lycnp8LXlr5OVhQVFUFeXrZ6Fz9//hxaWlqsY/DU1NSQm5sLHR0dWFtbw9raGjY2Nmjbti3raLXGzp07q/zaBQsWVGMSIlTbtm3D9u3bsWfPHgwdOhSAbBRAIiIi4ODggAcPHkjtYKFdK4QQWdaqVSv4+fnx9/efFkDi4+PRr18/PHv2jGVMQr4YFUBIpcRiMTIyMvgndZ/+QczMzESzZs0Ec+MnJyeHp0+fQltbm99q/SmO42TqZvX27dtwc3PD4cOHkZmZyTpOpTiOw99//w03NzecO3dOUNM+9u/fDxsbGxgYGLCOUiWyWND79FjL8+fPkZeXB3V1dQAfGtEqKytDW1sbaWlpDBISIYiLi4ODgwN69eqFbdu2oWHDhoIvgJiZmcHAwABr1qyBjo6O1PtLw4YNGSUjrDg5OVXpdR4eHtWchJAvo6SkhMTERP49PCoqCp06deL75927dw9GRkaCuqcj5L+QrUfJhJlPb/KEvJ0zKCgImpqaAIDg4GDGaf67t2/fwtfXF+7u7rhx4wZ69OgBZ2dn1rEqlJaWBg8PD3h7e+Pt27cYMmQIfH19WceSMHPmTNYRPouGhgZf0FNXV5eJgt69e/f4r48cOYLff/8d7u7uMDQ0BADcuXMH06dPl7n/F+Tr6tSpE6KiorBo0SKYmZnJxMjylJQU+Pn5QV9fn3UUIhBeXl7Q09ODubm5TPwOE1IeTU1NpKam8gWQ0p0gpVJSUvj7a0JkGe0AIZUSi8UYNGgQ6tWrBwA4c+YM+vbtCxUVFQDAu3fvcP78ecF8+JJ14eHhcHNzw4kTJ9C6dWvcvn0boaGhsLS0ZB2tTAUFBfDz84ObmxsiIiIwYMAA/P3334iNjRX8pBJZUPr/Xl5eHqGhoRW+1srKqoZSVV3btm3h5+cHc3NzifXo6GiMGTNGolhC6i5/f38EBwfjxx9/lOgLIjR9+/bF8uXLYWdnxzoKEYg5c+bA19cXurq6cHJywoQJE+hDIpFJ48aNQ15eXrmTuoYOHQoVFRUcO3ashpMR8nVRAYRUasqUKVV6naenZzUn+W+ysrIQGRlZZsM6R0dHRqmkbdq0CR4eHnj79i2+//57TJgwgd96KNRt4aU3foaGhpgwYQLGjRuHRo0aCTpzbRUbGwszMzPWMaQoKysjJCQEFhYWEuuRkZGwtrZGXl4eo2SEfL5Tp07hf//7H5YtWwYTExOp0eqmpqaMkhGW3r17h5MnT8LDwwPXrl3DkCFDMHXqVAwcOFDQO2YJ+VhMTAx69uyJYcOGYfny5fxR4Tt37mDjxo04d+4crl27hs6dOzNOSsiXoQIIqdXOnDmD8ePHIzc3F6qqqhI3IiKRSFBjQ0sn7bi4uEBOTo5fF3IxoTSzs7MzVFVV+XUhZ65NsrOzcfjwYbi5uSEuLk6Qu7CGDRuG9PR0uLu7o0uXLhCJRIiKisL06dPRsmXLcp80ESJEYrFYaq10pK+QjqERdh48eAAvLy/4+PigsLAQt2/fRoMGDVjHIqRK/vrrL0ybNk3q/lhDQwNubm4YOXIkm2CEfEXUA4T8Zw8ePEBubi6MjIzKvCkUgiVLlsDJyQm//vorlJWVWcepkIuLC7y8vHDw4EF8//33mDhxouCPkPj4+MDT0xM6OjoYMmQIJk6cSFvDa0BQUBA8PDxw8uRJ6Onp4dtvv4W7uzvrWGXy8PDApEmTYGFhwT8tLyoqgq2tLT9KmxBZQUe2SGVEIhFfFPt01ykhQjdixAgMGDAAgYGBSElJAQC0a9cOAwcO5I++EyLraAcIqZS3tzdev36NH374gV+bMWMG/4HL0NAQgYGBaNmyJaOE5VNRUUF8fDw/sUYWhIaGwsPDAydOnEDbtm1x69YtQfcAAYD79+/D09MTXl5eyMvLw6tXr3Ds2DGMGTOGdbRa49GjR/Dy8oKHhwdyc3MxduxY7Nu3T2Z22iQnJyMpKQkcx6F9+/YyM4WHEEIq8/ERmPDwcAwdOhRTpkyBnZ2dYB8QEfK5Hj58iNWrV9NEIyLzqABCKtWzZ0/MmDGD7wVy/vx5DBs2DF5eXmjfvj3mzZsHY2NjQT7NHT16NMaNG4exY8eyjvLZ3rx5g8OHD8PT0xPR0dGwsLDAmDFjsHjxYtbRysVxHAIDA+Hh4QF/f380btwYo0ePxs6dO1lHk2mDBw/mb6rHjx8POzs7yMnJ0VEjQmqAv78/Bg0aBAUFhUqPbA0fPryGUhGh+LgJ6pQpUzBhwgQ0atSIdSxCvrq4uDh07tyZjvoRmUcFEFKpRo0aISQkBCYmJgCA2bNn49mzZzhx4gQAICQkBFOmTBHk1mB3d3e4uLhgypQpZTask5Wb1fj4eLi7u+PIkSN49uwZ6zhV8urVK/6ITFxcHOs4Mk1eXh4LFizA7Nmz0a5dO35dFgogxcXF8PLywuXLl8tsRBwUFMQoGRGCkpIS3L17t8zfjT59+jBKJUksFiMjIwPa2toVPs2nHiB1k1gshq6uLszNzStseHry5MkaTEXI10cFEFJbUA8QUqn8/Hyoqanx31+7dg1OTk78923atEFGRgaLaJWaPn06gA/9NT4lSzerJiYm2L59O37++WfWUapMU1MTP/zwA6ytrVlHkXlhYWHw8PBA165dYWRkhIkTJ8Le3p51rCpZuHAhvLy8MGTIEHTs2JEmIhBeREQEHBwc8ODBA3z6LEZIf58/LsxQTwfyKUdHR/q7RgghMoQKIKRSenp6iI6Ohp6eHl68eIFbt26hV69e/PWMjAw0bNiQYcLy1YabVY7j8Pfff8Pd3R1nz57Fu3fvWEeqlCxMJ5ElPXv2RM+ePbFjxw74+vrCw8MDixcvRklJCS5evIiWLVtKTOEREl9fXxw/fhyDBw9mHYUIzKxZs9C1a1ecO3cOOjo69CGSyCQvLy/WEQghhHwGKoCQSjk6OmLu3Lm4desWgoKCYGRkhC5duvDXr127JthpJT4+PrC3t0e9evUk1t+/fw9fX184OjoySla5tLQ0eHh4wNvbG2/fvsWQIUPg6+vLOlaFZGk6iSxSVlaGk5MTnJyccOfOHbi7u8PV1RXOzs4YMGCAIEfKKioqQl9fn3UMIkApKSnw8/OT6d+PNm3aIDAwUOJoGiGEyKLRo0dXeD0rK6tmghBSzagAQiq1YsUK5OXl4eTJk2jatCn+/PNPietXr17F999/zyhdxUq7sGtra0usv3nzBlOmTBFcAaSgoAB+fn5wc3NDREQEBgwYgKdPnyI2NlawRaayppMUFhbixIkTgu5NIesMDQ2xadMmbNiwAWfOnBFsV/YlS5Zgx44d2L17Nz3hJxK6d++Ou3fvykQBpLxGzunp6fD09ETTpk0BAAsWLKjJWIQQ8tVUtpu7YcOGgrtvJuS/oCaopFYTi8XIzMyElpaWxHpcXBxsbGzw6tUrRsmklXaSNzQ0xIQJEzBu3Dg0atRI0I0uaToJqcyoUaMQHBwMTU1NdOjQQaoRMTUGrLtOnTqF//3vf1i2bFmZTapNTU0ZJZMmFovRvHlzyMtLPjd68OABmjVrBgUFBYhEIqSlpTFKSAghhJCqoB0gpFYq7cYuEonQr18/iZvW4uJi3Lt3D3Z2dgwTSvvjjz+wYsUKODs7C7afw6cuXLhQ5nQSQkqpq6tj1KhRrGMQAfr2228BQKKptkgkAsdxgmqCCnxoqB0ZGYkjR46gffv2/LqCggIuXLhAxV5CCCFERlABhFRKLBaXuXVdTU0NhoaGWL58eaXnBmvayJEjAQCxsbGwtbVFgwYN+GuKiopo1aoVf/MtFKUjY3V0dDBkyBBMnDhRcEWaT8nydBJSMzw9PVlHIAIlxNHp5dm/fz9Onz4NW1tbLF++HPPmzWMdiRBCCCH/AR2BIZX666+/ylzPyspCZGQkPD094e3tje+++66Gk1XO29sb9vb2UFJSYh2lyu7fvw9PT094eXkhLy8Pr169wrFjxzBmzBjW0cqVl5fHTyeJjIxEcXExtm7dCicnJ5nZzUIIIZV5/PgxHB0doaioCE9PT7Rs2ZKO+xFCCCEyhAog5Ivt2bMHPj4++Oeff1hHKdf79+/x7NkzqbG4urq6jBJVjuM4BAYGwsPDA/7+/mjcuDFGjx5dbjM+oSidTnLw4EFkZWUJdjoJqRmtW7eusPkp9UyoW/z9/TFo0CAoKChU+ndh+PDhNZTq83AcB1dXV+zcuRPPnz/HzZs3qQBCCCGEyAgqgJAvlpKSAgsLC7x+/Zp1FCkpKSlwcnLCtWvXJNaFeMa8Iq9eveKPyMTFxbGOUyXFxcX8dBIqgHw9Bw8exL59+3Dv3j1cv34denp62L59O1q3bo0RI0awjidlx44dEt8XFhYiJiYG58+fx7Jly+Ds7MwoGWFBLBYjIyMD2traEIvF5b5OFv4+R0dHIzw8HI6OjtDQ0GAdhxBCCCFVQAUQ8sVu3rwJW1tbPH36lHUUKZaWlpCXl4ezszN0dHSknkR36tSJUbL/JjY2FmZmZqxjEEb27t2LVatW4YcffsD69euRkJCANm3awMvLC97e3ggODmYdscr27NmDqKgo6hFCCCGEEEJqDBVAyBebP38+UlNTERAQwDqKFBUVFURHR8PIyIh1lP8sOzsbhw8fhpubG+Li4gT/VJRUH2NjY/z6668YOXIkVFVVERcXhzZt2iAhIQHW1tZ48eIF64hVlpaWBjMzM+Tk5LCOQkiVJCYmIiIiAj179oSRkRGSkpKwY8cOvHv3DhMmTEDfvn1ZRySEEEJIJWgKDKnU4sWLy1zPzs5GVFQUUlNTERYWVsOpqsbY2FimPhR+LCgoCB4eHjh58iT09PTw7bffwt3dnXUswtC9e/dgbm4utV6vXj3k5uYySPTf+fn5QVNTk3UMwsCWLVswZswY6OnpsY5SZefPn8eIESPQoEED5OXl4dSpU3B0dESnTp3AcRxsbW0RGBhIRRBCCCFE4KgAQioVExNT5rqamhrs7OwwZ84cQd3IfvxEeePGjVi+fDl+/fVXmJiYQEFBQeK1ampqNR2vQo8ePYKXlxc8PDyQm5uLsWPHorCwECdOnKAmewStW7dGbGys1L+3v//+W7C/H+bm5hJHzziOQ0ZGBp4/f47ff/+dYTLCyrJly7BixQrY2Nhg2rRpGDVqFBQVFVnHqpCLiwuWLVuGdevWwdfXFw4ODpg9ezbWr18PAPj555/h6upKBRBCCCFE4OgIDKl1xGKx1AeuT3t/CLEJ6uDBgxEeHo6hQ4di/PjxsLOzg5ycHBQUFGjMIgEAeHp6YuXKldiyZQumTp0KNzc3pKamYsOGDXBzc8O4ceNYR5SyZs0aie/FYjG0tLRgbW0t00fTyH8nFovh4eGB06dPIyAgAGpqapgwYQKmTZuGjh07so5XpoYNGyI6Ohr6+vooKSlBvXr18M8//6Bz584AgISEBPTv3x8ZGRmMkxJCCCGkIlQAIbVOaGholV9rZWVVjUk+j7y8PBYsWIDZs2ejXbt2/DoVQMjHDhw4gHXr1uHhw4cAgObNm+OXX37B1KlTGScjpGo+ngTz7NkzeHl5wdPTE8nJyejSpQumT5+OcePGQVVVlXVU3scFEAASPXgA4MGDBzAyMkJ+fj7LmIQQQgipBBVACBGI69evw8PDA8ePH4eRkREmTpwIe3t7NGvWjAogRMqLFy9QUlICbW1t1lEqVVxcjNOnTyMxMREikQjGxsYYPnw45OTkWEcjDHxcAPlYWFgY3N3d4efnBwB4+/Yti3hl6tSpEzZu3Ag7OzsAH3Z8GBkZQV7+w0ni0nG4aWlpLGMSQgghpBJUACG12s2bN8tcF4lEUFJSgq6uLurVq1fDqSqWl5cHX19feHh4IDIyEsXFxdi6dSucnJwE9USUkKq4e/cuBg8ejMePH8PQ0BAcxyE5ORktW7bEuXPn0LZtW9YRSQ2Tk5PD06dPyy3e5eTk4NixY5g+fXoNJyvfvn370LJlSwwZMqTM6z///DMyMzPh5uZWw8kIIYQQ8jmoAEJqtU/7gXxKQUEB9vb22L9/P5SUlGowWdXcuXMH7u7uOHjwILKysjBgwAD4+/uzjkVq0KdNRCvy77//VnOazzd48GBwHIfDhw/zU19evnyJCRMmQCwW49y5c4wTkppW3g4QQgghhJDqRgUQUqv99ddfWLFiBZYtWwYLCwtwHIcbN25gy5YtWL16NYqKiuDs7Ax7e3ts3ryZddxyFRcX48yZM/Dw8KACSB3zaRPRiqxevboak/w3KioqiIiIgImJicR6XFwcLC0tBXXMgRBCCCGE1G5UACG1moWFBdauXQtbW1uJ9cDAQKxcuRKRkZE4ffo0lixZgtTUVEYpCam9NDU1cfbsWXzzzTcS61evXsWwYcPw6tUrRskIIYQQQkhdI2YdgJDqFB8fDz09Pal1PT09xMfHAwDMzMzw9OnTmo5GyH8WFRWFgwcP4tChQ4iOjmYdp0JDhw7FjBkz8M8//4DjOHAch4iICMyaNQvDhw9nHY8wkp+fj/DwcNy+fVvqWkFBAXx8fBikIoQQQkhtRwUQUqsZGRnB1dUV79+/59cKCwvh6uoKIyMjAMDjx4/RpEkTVhEJqbJHjx6hd+/esLCwwMKFC7FgwQJ069YNvXr14sfiCs3OnTvRtm1b9OzZE0pKSlBSUoKlpSX09fWxY8cO1vEIA8nJyWjfvj369OkDExMTWFtbSxShs7OzMWXKFIYJCSGEEFJb0REYUqtdu3YNw4cPh1gshqmpKUQiEW7evIni4mKcPXsWPXr0wMGDB5GRkYFly5axjktIhQYOHIicnBx4e3vD0NAQwIdGuU5OTlBRUcGFCxcYJyzf3bt3kZiYCI7jYGxsDH19fdaRCCOjRo1CUVERPD09kZWVhcWLFyMhIQEhISHQ1dVFZmYmmjVrhuLiYtZRCSGEEFLLUAGE1Hpv377FoUOHkJycDI7jYGRkBAcHBxopS2RO/fr1ce3aNZibm0us//vvv7C0tER+fj6jZFVXVFSEgoICNGjQgHUUwkiTJk1w6dIlica4c+fOxdmzZxEcHAwVFRUqgBBCCCGkWsizDkBIdWvQoAFmzZrFOgYhX0xXVxeFhYVS60VFRWjevDmDROULCAjAy5cvMXHiRH5t/fr1WLt2LYqKitC3b18cO3YMGhoaDFMSFvLz8yEvL3n7sWfPHojFYlhZWeHIkSOMkhFCCCGktqMCCKl1/P39MWjQICgoKFQ6MpaaMBJZsmnTJsyfPx979uxBly5dIBKJEBUVhYULFwpujPPmzZvx7bff8t9fu3YNq1atgouLC9q3b4+ff/4Za9euxdatWxmmJCwYGRkhKioK7du3l1jftWsXOI6jv8uEEEIIqTZ0BIbUOmKxGBkZGdDW1oZYXH6fX5FIRFusiUzR0NBAXl4eioqK+CfopV+rqKhIvJb1eFltbW0EBgbyx3UWL16M27dv4/z58wA+7BBZuHAhUlJSWMYkDGzYsAFhYWEICAgo8/qcOXOwb98+lJSU1HAyQgghhNR2VAAhhBAZ4e3tXeXXTpo0qRqTVK5+/fq4c+cOdHV1AQAWFhYYM2YMli9fDgB48OABjI2NkZubyzImIYQQQgipQ+gIDKmTHj58iNWrV8PDw4N1FEKqjHVR43M0a9YMiYmJ0NXVxdu3bxEXF4dt27bx11++fAllZWWGCQkhhBBCSF1DBRBSJ7169Qre3t5UACEyp7i4GKdOnUJiYiJEIhHat2+PESNGSDWVZG3MmDH44Ycf8NNPPyEgIABNmzZFjx49+OtRUVH8KF9CCCGEEEJqgrDumAkhhJQrISEBI0aMQEZGBl88SE5OhpaWFvz9/SXGirK2evVqPHnyBAsWLEDTpk1x6NAhyMnJ8dePHj2KYcOGMUxICCGEEELqGuoBQuqkuLg4dO7cmZqgEpnSo0cPaGtrw9vbmx8f+/r1a0yePBnPnj3D9evXGSckhBBCCCFEuGgHCCGEyIi4uDhERUXxxQ/gw2SY9evXo1u3bgyTEUIIIYQQInxUACG10ujRoyu8npWVVTNBCPmKDA0NkZmZiQ4dOkisP3v2DPr6+oxSEUIIIYQQIhuoAEJqpYYNG1Z63dHRsYbSEPJ1/Prrr1iwYAF++eUXvqFoREQEXFxcsHHjRuTk5PCvVVNTYxWTEEIIIYQQQaIeIIQQIiPEYjH/tUgkAgCU/gn/+HuRSET9bQghhBBCCPkE7QAhhBAZERwczDrCFykoKICSkhLrGIQQQgghpI6iHSCEEFILxMbGwszMjHUMKSUlJVi/fj327duHzMxMJCcno02bNli5ciVatWqFqVOnso5ICCGEEELqCHHlLyGEECJE2dnZ+P3339G5c2d06dKFdZwyrVu3Dl5eXti0aRMUFRX5dRMTE7i5uTFMRgghhBBC6hoqgBBCiIwJCgrChAkToKOjg127dmHw4MGIiopiHatMPj4++OOPPzB+/HjIycnx66ampkhKSmKYjBBCCCGE1DXUA4QQQmTAo0eP4OXlBQ8PD+Tm5mLs2LEoLCzEiRMnYGxszDpeuR4/flzmiN6SkhIUFhYySEQIIYQQQuoq2gFCCCECN3jwYBgbG+P27dvYtWsXnjx5gl27drGOVSUdOnRAWFiY1Pqff/4Jc3NzBokIIYQQQkhdRTtACCFE4C5cuIAFCxZg9uzZaNeuHes4n2X16tWYOHEiHj9+jJKSEpw8eRJ37tyBj48Pzp49yzoeIYQQQgipQ2gHCCGECFxYWBjevHmDrl27onv37ti9ezeeP3/OOlaVDBs2DMeOHUNAQABEIhFWrVqFxMREnDlzBgMGDGAdjxBCCCGE1CE0BpcQQmREXl4efH194eHhgcjISBQXF2Pr1q1wcnKCqqoq63iEEEIIIYQIGhVACCFEBt25cwfu7u44ePAgsrKyMGDAAPj7+7OOJeXhw4cQiURo0aIFACAyMhJHjhyBsbExZsyYwTgdIYQQQgipS+gIDCGEyCBDQ0Ns2rQJjx49wtGjR1nHKZeDgwOCg4MBABkZGejfvz8iIyPx008/wcXFhXE6QgghhBBSl9AOEEIIIdVGQ0MDERERMDQ0xM6dO3Hs2DFcvXoVFy5cwKxZs5CWlsY6IiGEEEIIqSNoBwghhJBqU1hYiHr16gEALl26hOHDhwMAjIyM8PTpU5bRCCGEEEJIHUMFEEIIIdWmQ4cO2LdvH8LCwnDx4kXY2dkBAJ48eYJGjRoxTkcIIYQQQuoSKoAQQgipNhs3bsT+/fthbW2N77//Hp06dQIA+Pv7w8LCgnE6QgghhBBSl1APEEIIIdWquLgYOTk50NDQ4Nfu378PZWVlaGtrM0xGCCGEEELqEiqAEEIIqXbPnz/HnTt3IBKJYGBgAC0tLdaRCCGEEEJIHUNHYAghhFSb3NxcODk5QUdHB3369EHv3r3RrFkzTJ06FXl5eazjEUIIIYSQOoQKIIQQQqrN4sWLERoaijNnziArKwtZWVn466+/EBoaiiVLlrCORwghhBBC6hA6AkMIIaTaNG7cGH5+frC2tpZYDw4OxtixY/H8+XM2wQghhBBCSJ1DO0AIIYRUm7y8PDRp0kRqXVtbm47AEEIIIYSQGkU7QAghhFSbfv36oVGjRvDx8YGSkhIAID8/H5MmTcKrV69w6dIlxgkJIYQQQkhdQQUQQggh1SYhIQF2dnYoKChAp06dIBKJEBsbCyUlJQQGBqJDhw6sIxJCCCGEkDqCCiCEEEKqVX5+Pg4dOoSkpCRwHAdjY2OMHz8e9evXZx2NEEIIIYTUIVQAIYQQQgghhBBCSK0nzzoAIYSQ2uvly5do1KgRAODhw4c4cOAA8vPzMWzYMPTp04dxOkIIIYQQUpfQDhBCCCFfXXx8PIYNG4aHDx+iXbt28PX1hZ2dHXJzcyEWi5Gbmws/Pz+MHDmSdVRCCCGEEFJH0BhcQgghX93y5cthYmKC0NBQWFtbY+jQoRg8eDCys7Px+vVrzJw5E66urqxjEkIIIYSQOoR2gBBCCPnqGjdujKCgIJiamuLt27dQU1NDZGQkunbtCgBISkpCjx49kJWVxTYoIYQQQgipM2gHCCGEkK/u1atXaNq0KQCgQYMGUFFRgaamJn9dQ0MDb968YRWPEEIIIYTUQVQAIYQQUi1EIlGF3xNCCCGEEFKTaAoMIYSQajF58mTUq1cPAFBQUIBZs2ZBRUUFAPDu3TuW0QghhBBCSB1EPUAIIYR8dVOmTKnS6zw9Pas5CSGEEEIIIR9QAYQQQgghhBBCCCG1HvUAIYQQQgghhBBCSK1HBRBCCCGEEEIIIYTUelQAIYQQQgghhBBCSK1HBRBCCCGEEEIIIYTUelQAIYQQQgghhBBCSK1HBRBCCCGEEEIIIYTUelQAIYQQQgghhBBCSK1HBRBCCCGEEEIIIYTUelQAIYQQQgghhBBCSK33/wCAdogbfATgSwAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax1 = plt.subplots(figsize=(12, 8))\n", + "ax2=ax1.twinx()\n", + "\n", + "ax1.bar(products.Product,products.Quantity_ordered,color='m')\n", + "ax2.plot(products.Product,products.Price_each,color='g')\n", + "\n", + "ax1.set_ylabel('Quantity Ordered',color='m')\n", + "ax2.set_ylabel('Price ($)',color='g')\n", + "ax1.set_xticklabels(products.Product, rotation='vertical')\n", + "\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "8995658f", + "metadata": {}, + "source": [ + "` As we can see from above, cheaper products are sold in more quantity while the more expensive products are sold in less quantity `" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a1ddaf46", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Data_cleaning.ipynb b/Data_cleaning.ipynb new file mode 100644 index 0000000..a79b42e --- /dev/null +++ b/Data_cleaning.ipynb @@ -0,0 +1,805 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "67ffbcc1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import os" + ] + }, + { + "cell_type": "markdown", + "id": "37fab2b4", + "metadata": {}, + "source": [ + "# Read all files" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "78158fdc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
0176558USB-C Charging Cable211.9504/19/19 08:46917 1st St, Dallas, TX 75001
1NaNNaNNaNNaNNaNNaN
2176559Bose SoundSport Headphones199.9904/07/19 22:30682 Chestnut St, Boston, MA 02215
3176560Google Phone160004/12/19 14:38669 Spruce St, Los Angeles, CA 90001
4176560Wired Headphones111.9904/12/19 14:38669 Spruce St, Los Angeles, CA 90001
\n", + "
" + ], + "text/plain": [ + " Order ID Product Quantity Ordered Price Each \\\n", + "0 176558 USB-C Charging Cable 2 11.95 \n", + "1 NaN NaN NaN NaN \n", + "2 176559 Bose SoundSport Headphones 1 99.99 \n", + "3 176560 Google Phone 1 600 \n", + "4 176560 Wired Headphones 1 11.99 \n", + "\n", + " Order Date Purchase Address \n", + "0 04/19/19 08:46 917 1st St, Dallas, TX 75001 \n", + "1 NaN NaN \n", + "2 04/07/19 22:30 682 Chestnut St, Boston, MA 02215 \n", + "3 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 \n", + "4 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data=pd.DataFrame()\n", + "for file in os.listdir('Data/Raw'):\n", + " file_csv = pd.read_csv(f'Data/Raw/{file}')\n", + " all_data = pd.concat([all_data,file_csv])\n", + "all_data.reset_index(drop=True,inplace=True)\n", + "all_data.head()" + ] + }, + { + "cell_type": "markdown", + "id": "e3baa919", + "metadata": {}, + "source": [ + "# Data Cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "a946772a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 186850 entries, 0 to 186849\n", + "Data columns (total 6 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 Order ID 186305 non-null object\n", + " 1 Product 186305 non-null object\n", + " 2 Quantity Ordered 186305 non-null object\n", + " 3 Price Each 186305 non-null object\n", + " 4 Order Date 186305 non-null object\n", + " 5 Purchase Address 186305 non-null object\n", + "dtypes: object(6)\n", + "memory usage: 8.6+ MB\n" + ] + } + ], + "source": [ + "all_data.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "aab8a65b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Order ID 0\n", + "Product 0\n", + "Quantity Ordered 0\n", + "Price Each 0\n", + "Order Date 0\n", + "Purchase Address 0\n", + "dtype: int64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data[all_data['Order ID'].isna()].notna().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "133d9f82", + "metadata": {}, + "outputs": [], + "source": [ + "# drop nan\n", + "all_data=all_data[all_data['Order ID'].notna()]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "a242695e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
68421142071AA Batteries (4-pack)13.8401/17/19 23:02131 2nd St, Boston, MA 02215
68422142071AA Batteries (4-pack)13.8401/17/19 23:02131 2nd St, Boston, MA 02215
71672145143Lightning Charging Cable114.9501/06/19 03:01182 Jefferson St, San Francisco, CA 94016
71673145143Lightning Charging Cable114.9501/06/19 03:01182 Jefferson St, San Francisco, CA 94016
73357146765Google Phone160001/21/19 11:23918 Highland St, New York City, NY 10001
.....................
3209Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
3618Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
130303Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
2893Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
128103Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
\n", + "

883 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " Order ID Product Quantity Ordered Price Each \\\n", + "68421 142071 AA Batteries (4-pack) 1 3.84 \n", + "68422 142071 AA Batteries (4-pack) 1 3.84 \n", + "71672 145143 Lightning Charging Cable 1 14.95 \n", + "71673 145143 Lightning Charging Cable 1 14.95 \n", + "73357 146765 Google Phone 1 600 \n", + "... ... ... ... ... \n", + "3209 Order ID Product Quantity Ordered Price Each \n", + "3618 Order ID Product Quantity Ordered Price Each \n", + "130303 Order ID Product Quantity Ordered Price Each \n", + "2893 Order ID Product Quantity Ordered Price Each \n", + "128103 Order ID Product Quantity Ordered Price Each \n", + "\n", + " Order Date Purchase Address \n", + "68421 01/17/19 23:02 131 2nd St, Boston, MA 02215 \n", + "68422 01/17/19 23:02 131 2nd St, Boston, MA 02215 \n", + "71672 01/06/19 03:01 182 Jefferson St, San Francisco, CA 94016 \n", + "71673 01/06/19 03:01 182 Jefferson St, San Francisco, CA 94016 \n", + "73357 01/21/19 11:23 918 Highland St, New York City, NY 10001 \n", + "... ... ... \n", + "3209 Order Date Purchase Address \n", + "3618 Order Date Purchase Address \n", + "130303 Order Date Purchase Address \n", + "2893 Order Date Purchase Address \n", + "128103 Order Date Purchase Address \n", + "\n", + "[883 rows x 6 columns]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data[all_data.duplicated(keep=False)].sort_values(by='Order ID')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "384ae70f", + "metadata": {}, + "outputs": [], + "source": [ + "# drop duplicated rows\n", + "all_data.drop_duplicates(keep='first',inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "18b1fdd2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
519Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
\n", + "
" + ], + "text/plain": [ + " Order ID Product Quantity Ordered Price Each Order Date \\\n", + "519 Order ID Product Quantity Ordered Price Each Order Date \n", + "\n", + " Purchase Address \n", + "519 Purchase Address " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data[~all_data['Quantity Ordered'].str.isnumeric()]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "ddb6d499", + "metadata": {}, + "outputs": [], + "source": [ + "# drop inconsistent rows\n", + "all_data.drop(all_data[~all_data['Quantity Ordered'].str.isnumeric()].index,inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "9ed225a8", + "metadata": {}, + "outputs": [], + "source": [ + "# change data types\n", + "all_data['Quantity Ordered']=pd.to_numeric(all_data['Quantity Ordered'])\n", + "all_data['Price Each']=pd.to_numeric(all_data['Price Each'])\n", + "all_data['Order Date']=pd.to_datetime(all_data['Order Date'])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "e0141825", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDProductQuantity_orderedPrice_eachOrder_datePurchase_address
0176558USB-C Charging Cable211.952019-04-19 08:46:00917 1st St, Dallas, TX 75001
2176559Bose SoundSport Headphones199.992019-04-07 22:30:00682 Chestnut St, Boston, MA 02215
3176560Google Phone1600.002019-04-12 14:38:00669 Spruce St, Los Angeles, CA 90001
4176560Wired Headphones111.992019-04-12 14:38:00669 Spruce St, Los Angeles, CA 90001
5176561Wired Headphones111.992019-04-30 09:27:00333 8th St, Los Angeles, CA 90001
\n", + "
" + ], + "text/plain": [ + " ID Product Quantity_ordered Price_each \\\n", + "0 176558 USB-C Charging Cable 2 11.95 \n", + "2 176559 Bose SoundSport Headphones 1 99.99 \n", + "3 176560 Google Phone 1 600.00 \n", + "4 176560 Wired Headphones 1 11.99 \n", + "5 176561 Wired Headphones 1 11.99 \n", + "\n", + " Order_date Purchase_address \n", + "0 2019-04-19 08:46:00 917 1st St, Dallas, TX 75001 \n", + "2 2019-04-07 22:30:00 682 Chestnut St, Boston, MA 02215 \n", + "3 2019-04-12 14:38:00 669 Spruce St, Los Angeles, CA 90001 \n", + "4 2019-04-12 14:38:00 669 Spruce St, Los Angeles, CA 90001 \n", + "5 2019-04-30 09:27:00 333 8th St, Los Angeles, CA 90001 " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# renew columns\n", + "new_columns={\n", + " 'Order ID':'ID',\n", + " 'Quantity Ordered':'Quantity_ordered',\n", + " 'Price Each':'Price_each',\n", + " 'Order Date':'Order_date',\n", + " 'Purchase Address':'Purchase_address',\n", + "}\n", + "all_data.rename(new_columns,axis=1,inplace=True)\n", + "all_data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "155795a6", + "metadata": {}, + "outputs": [], + "source": [ + "# Parsing the address\n", + "all_data['Street']= [address[0] for address in all_data['Purchase_address'].str.split(',')]\n", + "all_data['City']= [address[1] for address in all_data['Purchase_address'].str.split(',')]\n", + "all_data['State']= [address[2] for address in all_data['Purchase_address'].str.split(',')]\n", + "\n", + "all_data['Zip_code']= [address[1] for address in all_data['State'].str.split()]\n", + "all_data['State']= [address[0] for address in all_data['State'].str.split()]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "b96bf215", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDProductQuantity_orderedPrice_eachOrder_dateStreetCityStateZip_code
0176558USB-C Charging Cable211.952019-04-19 08:46:00917 1st StDallasTX75001
2176559Bose SoundSport Headphones199.992019-04-07 22:30:00682 Chestnut StBostonMA02215
3176560Google Phone1600.002019-04-12 14:38:00669 Spruce StLos AngelesCA90001
4176560Wired Headphones111.992019-04-12 14:38:00669 Spruce StLos AngelesCA90001
5176561Wired Headphones111.992019-04-30 09:27:00333 8th StLos AngelesCA90001
\n", + "
" + ], + "text/plain": [ + " ID Product Quantity_ordered Price_each \\\n", + "0 176558 USB-C Charging Cable 2 11.95 \n", + "2 176559 Bose SoundSport Headphones 1 99.99 \n", + "3 176560 Google Phone 1 600.00 \n", + "4 176560 Wired Headphones 1 11.99 \n", + "5 176561 Wired Headphones 1 11.99 \n", + "\n", + " Order_date Street City State Zip_code \n", + "0 2019-04-19 08:46:00 917 1st St Dallas TX 75001 \n", + "2 2019-04-07 22:30:00 682 Chestnut St Boston MA 02215 \n", + "3 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 \n", + "4 2019-04-12 14:38:00 669 Spruce St Los Angeles CA 90001 \n", + "5 2019-04-30 09:27:00 333 8th St Los Angeles CA 90001 " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_data.drop('Purchase_address',axis=1,inplace=True)\n", + "all_data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "ea1961ee", + "metadata": {}, + "outputs": [], + "source": [ + "all_data.to_csv('./Data/Clean/clean_data.csv',index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "86ef79b5", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "138a012b", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Misc/create_data.py b/Misc/create_data.py deleted file mode 100644 index eabfa55..0000000 --- a/Misc/create_data.py +++ /dev/null @@ -1,135 +0,0 @@ -import datetime -import calendar -import random -import numpy -import pandas as pd -import uuid - -products = { - 'iPhone': [700, 10], - 'Google Phone': [600, 8], - 'Vareebadd Phone': [400, 3], - '20in Monitor': [109.99,6], - '34in Ultrawide Monitor': [379.99, 9], - '27in 4K Gaming Monitor': [389.99,9], - '27in FHD Monitor': [149.99, 11], - 'Flatscreen TV': [300, 7], - 'Macbook Pro Laptop': [1700, 7], - 'ThinkPad Laptop': [999.99, 6], - 'AA Batteries (4-pack)': [3.84, 30], - 'AAA Batteries (4-pack)': [2.99, 30], - 'USB-C Charging Cable': [11.95, 30], - 'Lightning Charging Cable': [14.95, 30], - 'Wired Headphones': [11.99, 26], - 'Bose SoundSport Headphones': [99.99, 19], - 'Apple Airpods Headphones': [150, 22], - 'LG Washing Machine': [600.00, 1], - 'LG Dryer': [600.00, 1] -} - -columns = ['Order ID', 'Product', 'Quantity Ordered', 'Price Each', 'Order Date', 'Purchase Address'] - -def generate_random_time(month): - day = generate_random_day(month) - if random.random() < 0.5: - date = datetime.datetime(2019, month, day,12,00) - else: - date = datetime.datetime(2019, month, day,20,00) - time_offset = numpy.random.normal(loc=0.0, scale=180) - final_date = date + datetime.timedelta(minutes=time_offset) - return final_date.strftime("%m/%d/%y %H:%M") - -def generate_random_day(month): - day_range = calendar.monthrange(2019,month)[1] - return random.randint(1,day_range) - -def generate_random_address(): - street_names = ['Main', '2nd', '1st', '4th', '5th', 'Park', '6th', '7th', 'Maple', 'Pine', 'Washington', '8th', 'Cedar', 'Elm', 'Walnut', '9th', '10th', 'Lake', 'Sunset', 'Lincoln', 'Jackson', 'Church', 'River', '11th', 'Willow', 'Jefferson', 'Center', '12th', 'North', 'Lakeview', 'Ridge', 'Hickory', 'Adams', 'Cherry', 'Highland', 'Johnson', 'South', 'Dogwood', 'West', 'Chestnut', '13th', 'Spruce', '14th', 'Wilson', 'Meadow', 'Forest', 'Hill', 'Madison'] - cities = ['San Francisco', 'Boston', 'New York City', 'Austin', 'Dallas', 'Atlanta', 'Portland', 'Portland', 'Los Angeles', 'Seattle'] - weights = [9,4,5,2,3,3,2,0.5,6,3] - zips = ['94016', '02215', '10001', '73301', '75001', '30301', '97035', '04101', '90001', '98101'] - state = ['CA', 'MA', 'NY', 'TX', 'TX', 'GA', 'OR', 'ME', 'CA', 'WA'] - - street = random.choice(street_names) - index = random.choices(range(len(cities)), weights=weights)[0] - - return f"{random.randint(1,999)} {street} St, {cities[index]}, {state[index]} {zips[index]}" - -def create_data_csv(): - pass - -def write_row(order_number, product, order_date, address): - product_price = products[product][0] - quantity = numpy.random.geometric(p=1.0-(1.0/product_price), size=1)[0] - output = [order_number, product, quantity, product_price, order_date, address] - return output - -if __name__ == '__main__': - order_number = 141234 - for month in range(1,13): - if month <= 10: - orders_amount = int(numpy.random.normal(loc=12000, scale=4000)) - elif month == 11: - orders_amount = int(numpy.random.normal(loc=20000, scale=3000)) - else: # month == 12 - orders_amount = int(numpy.random.normal(loc=26000, scale=3000)) - - product_list = [product for product in products] - weights = [products[product][1] for product in products] - - df = pd.DataFrame(columns=columns) - print(orders_amount) - - i = 0 - while orders_amount > 0: - - address = generate_random_address() - order_date = generate_random_time(month) - - product_choice = random.choices(product_list, weights)[0] - df.loc[i] = write_row(order_number, product_choice, order_date, address) - i += 1 - - # Add some items to orders with random chance - if product_choice == 'iPhone': - if random.random() < 0.15: - df.loc[i] = write_row(order_number, "Lightning Charging Cable", order_date, address) - i += 1 - if random.random() < 0.05: - df.loc[i] = write_row(order_number, "Apple Airpods Headphones", order_date, address) - i += 1 - - if random.random() < 0.07: - df.loc[i] = write_row(order_number, "Wired Headphones", order_date, address) - i += 1 - - elif product_choice == "Google Phone" or product_choice == "Vareebadd Phone": - if random.random() < 0.18: - df.loc[i] = write_row(order_number, "USB-C Charging Cable", order_date, address) - i += 1 - if random.random() < 0.04: - df.loc[i] = write_row(order_number, "Bose SoundSport Headphones", order_date, address) - i += 1 - if random.random() < 0.07: - df.loc[i] = write_row(order_number, "Wired Headphones", order_date, address) - i += 1 - - if random.random() <= 0.02: - product_choice = random.choices(product_list, weights)[0] - df.loc[i] = write_row(order_number, product_choice, order_date, address) - i += 1 - - if random.random() <= 0.002: - df.loc[i] = columns - i += 1 - - if random.random() <= 0.003: - df.loc[i] = ["","","","","",""] - i += 1 - - order_number += 1 - orders_amount -= 1 - - month_name = calendar.month_name[month] - df.to_csv(f"Sales_{month_name}_2019.csv", index=False) - print(f"{month_name} Complete") \ No newline at end of file diff --git a/README.md b/README.md index 13ec174..3b5113f 100644 --- a/README.md +++ b/README.md @@ -1,45 +1,17 @@ -# Pandas-Data-Science-Tasks -Set of real world data science tasks completed using the Python Pandas library. - -## Setup - -To access all of the files I recommend you fork this repo and then clone it locally. Instructions on how to do this can be found here: https://help.github.com/en/github/getting-started-with-github/fork-a-repo - -The other option is to click the green "clone or download" button and then click "Download ZIP". You then should extract all of the files to the location you want to edit your code. - -Installing Jupyter Notebook: https://jupyter.readthedocs.io/en/latest/install.html
-Installing Pandas library: https://pandas.pydata.org/pandas-docs/stable/install.html - -## Background Information: - -This repo goes with [my video](https://youtu.be/eMOA1pPVUc4) on "Solving real world data science videos with Python Pandas!". Here is some information on that video. - -In this video we use Python Pandas & Python Matplotlib to analyze and answer business questions about 12 months worth of sales data. The data contains hundreds of thousands of electronics store purchases broken down by month, product type, cost, purchase address, etc. +# Sales Analysis +We have a set of data of sales products of each month (given at `/Data/Raw`), and in this project we analyze this data to understand the sales behaviour +## Procedure We start by cleaning our data. Tasks during this section include: - Drop NaN values from DataFrame - Removing rows based on a condition -- Change the type of columns (to_numeric, to_datetime, astype) +- Change the type of columns (to_numeric, to_datetime) +- Parse the columns (date, address) +- Store the cleaned data into `/Data/Clean` -Once we have cleaned up our data a bit, we move the data exploration section. In this section we explore 5 high level business questions related to our data: -- What was the best month for sales? How much was earned that month? +Once we have cleaned up our data a bit, we move to the data analysis part. In this part we explore 5 high level business questions related to our data: +- What was the best month for sales? - What city sold the most product? -- What time should we display advertisemens to maximize the likelihood of customer’s buying product? +- When is good time to advertise? - What products are most often sold together? -- What product sold the most? Why do you think it sold the most? - -To answer these questions we walk through many different pandas & matplotlib methods. They include: -- Concatenating multiple csvs together to create a new DataFrame (pd.concat) -- Adding columns -- Parsing cells as strings to make new columns (.str) -- Using the .apply() method -- Using groupby to perform aggregate analysis -- Plotting bar charts and lines graphs to visualize our results -- Labeling our graphs - -Check out the first video I did on Pandas:
-https://youtu.be/vmEHCJofslg - -Check out the videos I did on Matplotlib:
-https://youtu.be/DAQNHzOcO5A
-https://youtu.be/0P7QnIQDBJY +- What products are sold the most, and why? diff --git a/SalesAnalysis/Output/all_data.csv b/SalesAnalysis/Output/all_data.csv deleted file mode 100644 index 7eebd5f..0000000 --- a/SalesAnalysis/Output/all_data.csv +++ /dev/null @@ -1,186851 +0,0 @@ -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -176558,USB-C Charging Cable,2,11.95,04/19/19 08:46,"917 1st St, Dallas, TX 75001" -,,,,, -176559,Bose SoundSport Headphones,1,99.99,04/07/19 22:30,"682 Chestnut St, Boston, MA 02215" -176560,Google Phone,1,600,04/12/19 14:38,"669 Spruce St, Los Angeles, CA 90001" -176560,Wired Headphones,1,11.99,04/12/19 14:38,"669 Spruce St, Los Angeles, CA 90001" -176561,Wired Headphones,1,11.99,04/30/19 09:27,"333 8th St, Los Angeles, CA 90001" -176562,USB-C Charging Cable,1,11.95,04/29/19 13:03,"381 Wilson St, San Francisco, CA 94016" -176563,Bose SoundSport Headphones,1,99.99,04/02/19 07:46,"668 Center St, Seattle, WA 98101" -176564,USB-C Charging Cable,1,11.95,04/12/19 10:58,"790 Ridge St, Atlanta, GA 30301" -176565,Macbook Pro Laptop,1,1700,04/24/19 10:38,"915 Willow St, San Francisco, CA 94016" -176566,Wired Headphones,1,11.99,04/08/19 14:05,"83 7th St, Boston, MA 02215" -176567,Google Phone,1,600,04/18/19 17:18,"444 7th St, Los Angeles, CA 90001" -176568,Lightning Charging Cable,1,14.95,04/15/19 12:18,"438 Elm St, Seattle, WA 98101" -176569,27in 4K Gaming Monitor,1,389.99,04/16/19 19:23,"657 Hill St, Dallas, TX 75001" -176570,AA Batteries (4-pack),1,3.84,04/22/19 15:09,"186 12th St, Dallas, TX 75001" -176571,Lightning Charging Cable,1,14.95,04/19/19 14:29,"253 Johnson St, Atlanta, GA 30301" -176572,Apple Airpods Headphones,1,150,04/04/19 20:30,"149 Dogwood St, New York City, NY 10001" -176573,USB-C Charging Cable,1,11.95,04/27/19 18:41,"214 Chestnut St, San Francisco, CA 94016" -176574,Google Phone,1,600,04/03/19 19:42,"20 Hill St, Los Angeles, CA 90001" -176574,USB-C Charging Cable,1,11.95,04/03/19 19:42,"20 Hill St, Los Angeles, CA 90001" -176575,AAA Batteries (4-pack),1,2.99,04/27/19 00:30,"433 Hill St, New York City, NY 10001" -176576,Apple Airpods Headphones,1,150,04/28/19 11:42,"771 Ridge St, Los Angeles, CA 90001" -176577,Apple Airpods Headphones,1,150,04/04/19 19:25,"260 Spruce St, Dallas, TX 75001" -176578,Apple Airpods Headphones,1,150,04/09/19 23:35,"513 Church St, Boston, MA 02215" -176579,AA Batteries (4-pack),1,3.84,04/11/19 10:23,"886 Jefferson St, New York City, NY 10001" -176580,USB-C Charging Cable,1,11.95,04/05/19 00:35,"886 Willow St, Los Angeles, CA 90001" -176581,iPhone,1,700,04/09/19 21:38,"84 Jackson St, Boston, MA 02215" -176582,Bose SoundSport Headphones,1,99.99,04/27/19 12:20,"178 Lincoln St, Atlanta, GA 30301" -176583,AAA Batteries (4-pack),2,2.99,04/20/19 12:00,"146 Jackson St, Portland, OR 97035" -176584,Flatscreen TV,1,300,04/24/19 20:39,"936 Church St, San Francisco, CA 94016" -176585,Bose SoundSport Headphones,1,99.99,04/07/19 11:31,"823 Highland St, Boston, MA 02215" -176585,Bose SoundSport Headphones,1,99.99,04/07/19 11:31,"823 Highland St, Boston, MA 02215" -176586,AAA Batteries (4-pack),2,2.99,04/10/19 17:00,"365 Center St, San Francisco, CA 94016" -176586,Google Phone,1,600,04/10/19 17:00,"365 Center St, San Francisco, CA 94016" -176587,27in FHD Monitor,1,149.99,04/29/19 19:38,"557 5th St, Los Angeles, CA 90001" -176588,20in Monitor,1,109.99,04/02/19 04:00,"765 Cherry St, Seattle, WA 98101" -176589,Lightning Charging Cable,1,14.95,04/04/19 12:23,"846 Highland St, Atlanta, GA 30301" -176590,Google Phone,1,600,04/11/19 11:46,"873 6th St, New York City, NY 10001" -176591,Apple Airpods Headphones,1,150,04/21/19 07:21,"600 Maple St, Austin, TX 73301" -176592,USB-C Charging Cable,1,11.95,04/27/19 13:04,"352 4th St, Los Angeles, CA 90001" -176593,Lightning Charging Cable,2,14.95,04/15/19 13:45,"906 7th St, Portland, OR 97035" -176594,Wired Headphones,1,11.99,04/17/19 23:04,"63 Maple St, San Francisco, CA 94016" -176595,Wired Headphones,3,11.99,04/02/19 09:11,"383 6th St, Los Angeles, CA 90001" -176596,Apple Airpods Headphones,1,150,04/27/19 20:11,"572 Meadow St, Dallas, TX 75001" -176597,USB-C Charging Cable,1,11.95,04/19/19 13:39,"681 11th St, San Francisco, CA 94016" -176598,AAA Batteries (4-pack),2,2.99,04/21/19 20:33,"294 Park St, San Francisco, CA 94016" -176599,Lightning Charging Cable,1,14.95,04/11/19 15:25,"279 Maple St, New York City, NY 10001" -176600,27in 4K Gaming Monitor,1,389.99,04/30/19 15:54,"87 West St, Boston, MA 02215" -176601,USB-C Charging Cable,1,11.95,04/02/19 22:32,"754 10th St, Los Angeles, CA 90001" -176602,Lightning Charging Cable,1,14.95,04/30/19 09:39,"9 Jefferson St, Dallas, TX 75001" -176603,USB-C Charging Cable,1,11.95,04/01/19 07:46,"858 6th St, San Francisco, CA 94016" -176604,USB-C Charging Cable,1,11.95,04/02/19 10:57,"462 11th St, San Francisco, CA 94016" -176605,USB-C Charging Cable,1,11.95,04/15/19 16:29,"717 Pine St, San Francisco, CA 94016" -176606,LG Dryer,1,600.0,04/21/19 14:16,"487 Maple St, San Francisco, CA 94016" -176607,AAA Batteries (4-pack),2,2.99,04/18/19 12:11,"689 10th St, Boston, MA 02215" -176608,iPhone,1,700,04/11/19 12:01,"15 Cherry St, San Francisco, CA 94016" -176609,Apple Airpods Headphones,1,150,04/11/19 16:59,"267 11th St, Austin, TX 73301" -176610,AAA Batteries (4-pack),1,2.99,04/26/19 00:40,"382 River St, Dallas, TX 75001" -176611,Bose SoundSport Headphones,1,99.99,04/30/19 13:16,"971 Sunset St, San Francisco, CA 94016" -176612,Apple Airpods Headphones,1,150,04/04/19 19:48,"149 North St, Seattle, WA 98101" -176613,USB-C Charging Cable,2,11.95,04/26/19 18:58,"405 4th St, New York City, NY 10001" -176614,AA Batteries (4-pack),1,3.84,04/07/19 21:01,"647 Jackson St, San Francisco, CA 94016" -176615,Lightning Charging Cable,1,14.95,04/30/19 10:35,"833 River St, Dallas, TX 75001" -176616,USB-C Charging Cable,1,11.95,04/05/19 20:40,"380 Washington St, San Francisco, CA 94016" -176617,Apple Airpods Headphones,1,150,04/25/19 08:03,"319 8th St, Portland, OR 97035" -176618,Lightning Charging Cable,2,14.95,04/18/19 21:44,"273 South St, San Francisco, CA 94016" -176619,Flatscreen TV,1,300,04/16/19 18:37,"116 North St, Los Angeles, CA 90001" -176620,USB-C Charging Cable,1,11.95,04/17/19 10:39,"994 Pine St, Los Angeles, CA 90001" -176621,Lightning Charging Cable,1,14.95,04/11/19 16:09,"863 8th St, Boston, MA 02215" -176622,AA Batteries (4-pack),1,3.84,04/11/19 20:16,"983 11th St, San Francisco, CA 94016" -176623,27in FHD Monitor,1,149.99,04/20/19 23:51,"807 12th St, Atlanta, GA 30301" -176624,AA Batteries (4-pack),1,3.84,04/28/19 10:44,"664 Church St, Seattle, WA 98101" -176625,AAA Batteries (4-pack),2,2.99,04/24/19 19:00,"858 5th St, San Francisco, CA 94016" -176626,Bose SoundSport Headphones,1,99.99,04/01/19 21:40,"491 Chestnut St, Boston, MA 02215" -176627,Wired Headphones,1,11.99,04/21/19 14:57,"994 13th St, Atlanta, GA 30301" -176628,Lightning Charging Cable,2,14.95,04/15/19 04:03,"628 Wilson St, Dallas, TX 75001" -176629,USB-C Charging Cable,1,11.95,04/24/19 11:56,"101 Lincoln St, San Francisco, CA 94016" -176630,Google Phone,1,600,04/10/19 05:01,"770 Maple St, San Francisco, CA 94016" -176631,USB-C Charging Cable,1,11.95,04/13/19 18:48,"292 Dogwood St, San Francisco, CA 94016" -176632,AAA Batteries (4-pack),1,2.99,04/14/19 14:28,"814 Madison St, San Francisco, CA 94016" -176633,ThinkPad Laptop,1,999.99,04/23/19 14:03,"863 Hickory St, Los Angeles, CA 90001" -176634,Lightning Charging Cable,1,14.95,04/10/19 08:00,"311 Madison St, Atlanta, GA 30301" -176635,Vareebadd Phone,1,400,04/26/19 09:55,"85 North St, San Francisco, CA 94016" -176636,AA Batteries (4-pack),1,3.84,04/30/19 20:37,"140 10th St, Boston, MA 02215" -176637,AAA Batteries (4-pack),1,2.99,04/17/19 10:03,"261 Sunset St, New York City, NY 10001" -176638,USB-C Charging Cable,1,11.95,04/20/19 08:33,"869 Cherry St, Boston, MA 02215" -176639,Macbook Pro Laptop,1,1700,04/28/19 16:14,"853 Cedar St, San Francisco, CA 94016" -176640,Wired Headphones,2,11.99,04/27/19 22:54,"164 Lake St, San Francisco, CA 94016" -176641,Lightning Charging Cable,1,14.95,04/25/19 21:36,"655 Sunset St, Boston, MA 02215" -176642,AA Batteries (4-pack),1,3.84,04/17/19 18:38,"72 Elm St, Portland, OR 97035" -176643,Macbook Pro Laptop,1,1700,04/27/19 21:32,"373 Adams St, Boston, MA 02215" -176644,USB-C Charging Cable,1,11.95,04/23/19 02:09,"962 7th St, Los Angeles, CA 90001" -176645,AAA Batteries (4-pack),3,2.99,04/26/19 18:38,"514 Lake St, Dallas, TX 75001" -176646,Macbook Pro Laptop,1,1700,04/22/19 07:14,"657 Adams St, Portland, OR 97035" -176647,Google Phone,1,600,04/21/19 19:40,"273 South St, Los Angeles, CA 90001" -176648,27in FHD Monitor,1,149.99,04/24/19 01:17,"732 2nd St, Portland, OR 97035" -176649,USB-C Charging Cable,1,11.95,04/09/19 08:49,"702 11th St, San Francisco, CA 94016" -176650,Lightning Charging Cable,1,14.95,04/12/19 16:47,"153 River St, Boston, MA 02215" -176651,iPhone,1,700,04/07/19 13:14,"997 South St, Boston, MA 02215" -176652,LG Washing Machine,1,600.0,04/09/19 20:04,"502 14th St, New York City, NY 10001" -176653,AA Batteries (4-pack),1,3.84,04/26/19 19:20,"285 Chestnut St, San Francisco, CA 94016" -176654,USB-C Charging Cable,1,11.95,04/15/19 19:35,"880 Lakeview St, Seattle, WA 98101" -176655,Apple Airpods Headphones,1,150,04/11/19 19:36,"848 Center St, San Francisco, CA 94016" -176656,Google Phone,1,600,04/12/19 16:42,"12 Lakeview St, New York City, NY 10001" -176657,ThinkPad Laptop,1,999.99,04/23/19 10:16,"774 Forest St, Los Angeles, CA 90001" -176658,AAA Batteries (4-pack),2,2.99,04/22/19 08:51,"573 Pine St, San Francisco, CA 94016" -176659,20in Monitor,1,109.99,04/29/19 14:40,"804 Church St, Dallas, TX 75001" -176660,AA Batteries (4-pack),1,3.84,04/16/19 17:10,"267 West St, Boston, MA 02215" -176661,Wired Headphones,1,11.99,04/25/19 20:40,"522 6th St, Atlanta, GA 30301" -176662,34in Ultrawide Monitor,1,379.99,04/05/19 12:46,"678 Hickory St, Portland, OR 97035" -176663,Bose SoundSport Headphones,1,99.99,04/05/19 11:48,"450 Johnson St, Seattle, WA 98101" -176664,AAA Batteries (4-pack),1,2.99,04/13/19 18:59,"544 Madison St, Los Angeles, CA 90001" -176665,ThinkPad Laptop,1,999.99,04/07/19 14:15,"927 13th St, Dallas, TX 75001" -176666,Wired Headphones,1,11.99,04/08/19 16:50,"382 Forest St, Seattle, WA 98101" -176667,27in 4K Gaming Monitor,1,389.99,04/11/19 00:39,"92 11th St, Los Angeles, CA 90001" -176668,AA Batteries (4-pack),1,3.84,04/15/19 20:46,"56 2nd St, Dallas, TX 75001" -176669,27in FHD Monitor,1,149.99,04/08/19 12:57,"506 Jackson St, Dallas, TX 75001" -176670,Apple Airpods Headphones,1,150,04/25/19 21:23,"892 Willow St, San Francisco, CA 94016" -176671,AAA Batteries (4-pack),2,2.99,04/23/19 16:31,"738 Jefferson St, New York City, NY 10001" -176672,Lightning Charging Cable,1,14.95,04/12/19 11:07,"778 Maple St, New York City, NY 10001" -176672,USB-C Charging Cable,1,11.95,04/12/19 11:07,"778 Maple St, New York City, NY 10001" -176673,20in Monitor,1,109.99,04/10/19 08:17,"952 1st St, Boston, MA 02215" -176674,AAA Batteries (4-pack),3,2.99,04/20/19 20:53,"907 West St, Austin, TX 73301" -176675,AAA Batteries (4-pack),1,2.99,04/02/19 09:02,"933 Meadow St, Seattle, WA 98101" -176676,LG Dryer,1,600.0,04/09/19 00:35,"788 Lincoln St, Los Angeles, CA 90001" -176677,34in Ultrawide Monitor,1,379.99,04/01/19 11:50,"661 Washington St, Austin, TX 73301" -176678,AA Batteries (4-pack),2,3.84,04/19/19 22:12,"345 Sunset St, San Francisco, CA 94016" -176679,Apple Airpods Headphones,1,150,04/16/19 11:12,"245 West St, Boston, MA 02215" -176680,USB-C Charging Cable,1,11.95,04/13/19 11:28,"368 Main St, Los Angeles, CA 90001" -176681,Apple Airpods Headphones,1,150,04/20/19 10:39,"331 Cherry St, Seattle, WA 98101" -176681,ThinkPad Laptop,1,999.99,04/20/19 10:39,"331 Cherry St, Seattle, WA 98101" -176682,Lightning Charging Cable,1,14.95,04/27/19 06:19,"593 Adams St, Boston, MA 02215" -176683,AA Batteries (4-pack),1,3.84,04/03/19 13:54,"253 Willow St, Los Angeles, CA 90001" -176684,USB-C Charging Cable,1,11.95,04/17/19 00:51,"293 Washington St, Los Angeles, CA 90001" -176685,34in Ultrawide Monitor,1,379.99,04/23/19 22:53,"114 10th St, New York City, NY 10001" -176686,Wired Headphones,1,11.99,04/17/19 15:17,"892 10th St, Austin, TX 73301" -176687,Macbook Pro Laptop,1,1700,04/30/19 10:26,"121 Wilson St, Los Angeles, CA 90001" -176688,Flatscreen TV,1,300,04/20/19 18:25,"229 Church St, San Francisco, CA 94016" -176689,Bose SoundSport Headphones,1,99.99,04/24/19 17:15,"659 Lincoln St, New York City, NY 10001" -176689,AAA Batteries (4-pack),2,2.99,04/24/19 17:15,"659 Lincoln St, New York City, NY 10001" -176690,20in Monitor,1,109.99,04/04/19 18:33,"873 Sunset St, San Francisco, CA 94016" -176691,AAA Batteries (4-pack),1,2.99,04/12/19 11:57,"991 Lincoln St, Los Angeles, CA 90001" -176692,Wired Headphones,1,11.99,04/08/19 18:21,"290 Forest St, San Francisco, CA 94016" -176693,AA Batteries (4-pack),1,3.84,04/22/19 09:00,"252 Walnut St, San Francisco, CA 94016" -176694,USB-C Charging Cable,1,11.95,04/05/19 20:46,"985 Washington St, Atlanta, GA 30301" -176695,AA Batteries (4-pack),2,3.84,04/12/19 20:50,"709 Lake St, Seattle, WA 98101" -176696,iPhone,1,700,04/07/19 12:41,"343 Johnson St, New York City, NY 10001" -176697,Wired Headphones,1,11.99,04/20/19 22:38,"675 Center St, New York City, NY 10001" -176698,Bose SoundSport Headphones,1,99.99,04/02/19 16:15,"232 Lakeview St, San Francisco, CA 94016" -176699,Bose SoundSport Headphones,1,99.99,04/28/19 18:04,"49 Jefferson St, Boston, MA 02215" -176700,34in Ultrawide Monitor,1,379.99,04/07/19 23:10,"967 Walnut St, Dallas, TX 75001" -176701,USB-C Charging Cable,1,11.95,04/11/19 13:05,"128 Church St, Austin, TX 73301" -176702,AA Batteries (4-pack),1,3.84,04/23/19 19:44,"896 Sunset St, Seattle, WA 98101" -176703,20in Monitor,1,109.99,04/17/19 10:00,"748 Washington St, New York City, NY 10001" -176704,AA Batteries (4-pack),2,3.84,04/17/19 10:00,"909 Center St, Seattle, WA 98101" -176705,Lightning Charging Cable,2,14.95,04/06/19 09:38,"503 8th St, Austin, TX 73301" -176706,Lightning Charging Cable,1,14.95,04/13/19 13:32,"309 South St, New York City, NY 10001" -176707,Apple Airpods Headphones,1,150,04/13/19 10:34,"408 Center St, Portland, OR 97035" -176708,Wired Headphones,1,11.99,04/28/19 23:03,"542 Ridge St, New York City, NY 10001" -176709,AA Batteries (4-pack),1,3.84,04/24/19 14:17,"971 Church St, Dallas, TX 75001" -176710,20in Monitor,2,109.99,04/07/19 10:00,"848 West St, Dallas, TX 75001" -176711,Flatscreen TV,1,300,04/30/19 10:58,"796 River St, Dallas, TX 75001" -176712,Google Phone,1,600,04/20/19 05:21,"910 Washington St, San Francisco, CA 94016" -176713,Wired Headphones,1,11.99,04/21/19 10:48,"498 Walnut St, San Francisco, CA 94016" -176714,USB-C Charging Cable,1,11.95,04/26/19 23:34,"303 Spruce St, Los Angeles, CA 90001" -176715,Apple Airpods Headphones,1,150,04/27/19 16:43,"258 Jefferson St, San Francisco, CA 94016" -176716,Wired Headphones,1,11.99,04/24/19 14:43,"794 7th St, Los Angeles, CA 90001" -176717,Apple Airpods Headphones,1,150,04/19/19 10:34,"490 Lakeview St, Atlanta, GA 30301" -176718,Lightning Charging Cable,1,14.95,04/22/19 19:14,"672 Sunset St, Los Angeles, CA 90001" -176719,Flatscreen TV,1,300,04/27/19 13:07,"602 Hickory St, Boston, MA 02215" -176720,Lightning Charging Cable,1,14.95,04/21/19 10:35,"556 South St, Portland, OR 97035" -176721,AAA Batteries (4-pack),1,2.99,04/26/19 21:08,"469 7th St, San Francisco, CA 94016" -176722,27in 4K Gaming Monitor,1,389.99,04/01/19 10:57,"209 14th St, New York City, NY 10001" -176723,27in 4K Gaming Monitor,1,389.99,04/19/19 21:31,"613 12th St, Portland, OR 97035" -176724,Lightning Charging Cable,1,14.95,04/26/19 20:59,"34 12th St, San Francisco, CA 94016" -176725,AA Batteries (4-pack),2,3.84,04/15/19 14:33,"630 14th St, San Francisco, CA 94016" -176726,USB-C Charging Cable,1,11.95,04/13/19 18:14,"979 8th St, Los Angeles, CA 90001" -176727,Lightning Charging Cable,1,14.95,04/14/19 14:26,"218 Hickory St, Los Angeles, CA 90001" -176728,Lightning Charging Cable,1,14.95,04/21/19 07:38,"516 Park St, Atlanta, GA 30301" -176729,USB-C Charging Cable,1,11.95,04/24/19 09:57,"637 9th St, Seattle, WA 98101" -176730,Bose SoundSport Headphones,1,99.99,04/17/19 08:27,"403 Ridge St, New York City, NY 10001" -176731,AAA Batteries (4-pack),2,2.99,04/21/19 16:17,"36 Lincoln St, San Francisco, CA 94016" -176732,iPhone,1,700,04/23/19 09:33,"504 Wilson St, Dallas, TX 75001" -176733,20in Monitor,1,109.99,04/11/19 13:31,"575 Hickory St, San Francisco, CA 94016" -176734,Apple Airpods Headphones,1,150,04/03/19 22:13,"611 Jackson St, New York City, NY 10001" -176735,27in FHD Monitor,1,149.99,04/16/19 23:52,"802 Ridge St, Austin, TX 73301" -176736,AA Batteries (4-pack),1,3.84,04/17/19 11:48,"421 2nd St, Los Angeles, CA 90001" -176737,Apple Airpods Headphones,1,150,04/07/19 01:28,"109 Center St, Los Angeles, CA 90001" -176738,AA Batteries (4-pack),1,3.84,04/03/19 13:17,"661 Center St, San Francisco, CA 94016" -176739,34in Ultrawide Monitor,1,379.99,04/05/19 17:38,"730 6th St, Austin, TX 73301" -176739,Google Phone,1,600,04/05/19 17:38,"730 6th St, Austin, TX 73301" -176740,Bose SoundSport Headphones,1,99.99,04/24/19 15:10,"699 Washington St, Dallas, TX 75001" -176741,USB-C Charging Cable,1,11.95,04/29/19 18:49,"990 Ridge St, San Francisco, CA 94016" -176742,Wired Headphones,1,11.99,04/17/19 09:54,"115 Forest St, Los Angeles, CA 90001" -176743,27in 4K Gaming Monitor,1,389.99,04/01/19 09:17,"570 11th St, Atlanta, GA 30301" -176744,Lightning Charging Cable,1,14.95,04/14/19 19:59,"937 Maple St, Los Angeles, CA 90001" -176745,Wired Headphones,1,11.99,04/24/19 09:23,"461 Adams St, Los Angeles, CA 90001" -176746,27in 4K Gaming Monitor,1,389.99,04/08/19 19:04,"638 Park St, Seattle, WA 98101" -176747,Macbook Pro Laptop,1,1700,04/27/19 15:04,"645 7th St, San Francisco, CA 94016" -176748,Flatscreen TV,1,300,04/24/19 15:28,"339 13th St, Boston, MA 02215" -176749,ThinkPad Laptop,1,999.99,04/26/19 07:55,"322 Adams St, Seattle, WA 98101" -176750,AA Batteries (4-pack),1,3.84,04/13/19 23:52,"255 Cedar St, Austin, TX 73301" -176751,AAA Batteries (4-pack),1,2.99,04/18/19 13:01,"258 4th St, San Francisco, CA 94016" -176752,AA Batteries (4-pack),1,3.84,04/13/19 23:59,"665 Wilson St, San Francisco, CA 94016" -176753,USB-C Charging Cable,1,11.95,04/01/19 23:07,"496 Adams St, Atlanta, GA 30301" -176754,34in Ultrawide Monitor,1,379.99,04/02/19 17:07,"288 Forest St, Los Angeles, CA 90001" -176755,27in 4K Gaming Monitor,1,389.99,04/09/19 16:21,"825 Madison St, Seattle, WA 98101" -176756,27in FHD Monitor,1,149.99,04/05/19 17:06,"348 Lake St, New York City, NY 10001" -176757,AA Batteries (4-pack),1,3.84,04/11/19 20:28,"79 Hickory St, Portland, OR 97035" -176758,34in Ultrawide Monitor,1,379.99,04/18/19 21:26,"166 Highland St, San Francisco, CA 94016" -176759,Lightning Charging Cable,1,14.95,04/06/19 12:46,"864 Main St, Los Angeles, CA 90001" -176760,Wired Headphones,1,11.99,04/02/19 20:32,"813 Highland St, San Francisco, CA 94016" -176761,Apple Airpods Headphones,1,150,04/26/19 20:00,"830 2nd St, San Francisco, CA 94016" -176762,AA Batteries (4-pack),1,3.84,04/18/19 14:06,"977 1st St, Seattle, WA 98101" -176763,USB-C Charging Cable,1,11.95,04/25/19 13:36,"638 Johnson St, San Francisco, CA 94016" -176764,Wired Headphones,1,11.99,04/16/19 19:52,"652 Center St, Atlanta, GA 30301" -176765,USB-C Charging Cable,1,11.95,04/14/19 20:44,"729 Ridge St, San Francisco, CA 94016" -176766,AA Batteries (4-pack),2,3.84,04/21/19 19:52,"84 Johnson St, Boston, MA 02215" -176767,27in 4K Gaming Monitor,1,389.99,04/09/19 14:18,"205 4th St, Atlanta, GA 30301" -176768,Wired Headphones,1,11.99,04/04/19 00:03,"643 Spruce St, Los Angeles, CA 90001" -176769,AA Batteries (4-pack),1,3.84,04/29/19 14:14,"206 10th St, San Francisco, CA 94016" -176770,Wired Headphones,1,11.99,04/08/19 17:38,"345 Church St, San Francisco, CA 94016" -176771,Lightning Charging Cable,1,14.95,04/24/19 17:40,"403 11th St, New York City, NY 10001" -176772,AA Batteries (4-pack),1,3.84,04/10/19 21:48,"426 14th St, New York City, NY 10001" -176773,AAA Batteries (4-pack),2,2.99,04/25/19 20:07,"30 9th St, Portland, ME 04101" -176774,Lightning Charging Cable,1,14.95,04/25/19 15:06,"372 Church St, Los Angeles, CA 90001" -176774,USB-C Charging Cable,1,11.95,04/25/19 15:06,"372 Church St, Los Angeles, CA 90001" -176775,USB-C Charging Cable,2,11.95,04/01/19 20:56,"975 Forest St, San Francisco, CA 94016" -176776,Bose SoundSport Headphones,1,99.99,04/24/19 23:28,"613 Washington St, Seattle, WA 98101" -176777,Apple Airpods Headphones,1,150,04/14/19 16:53,"163 Jackson St, Portland, OR 97035" -176778,34in Ultrawide Monitor,1,379.99,04/12/19 17:46,"201 Madison St, San Francisco, CA 94016" -176779,27in FHD Monitor,1,149.99,04/04/19 16:46,"351 Park St, Atlanta, GA 30301" -176780,Lightning Charging Cable,1,14.95,04/18/19 23:51,"52 Walnut St, New York City, NY 10001" -176781,iPhone,1,700,04/03/19 07:37,"976 Hickory St, Dallas, TX 75001" -176781,Lightning Charging Cable,1,14.95,04/03/19 07:37,"976 Hickory St, Dallas, TX 75001" -176782,Apple Airpods Headphones,1,150,04/22/19 13:42,"993 13th St, San Francisco, CA 94016" -176783,Apple Airpods Headphones,1,150,04/05/19 11:40,"926 North St, San Francisco, CA 94016" -176784,AAA Batteries (4-pack),1,2.99,04/08/19 10:14,"725 Madison St, Los Angeles, CA 90001" -176785,Bose SoundSport Headphones,1,99.99,04/03/19 15:39,"533 Ridge St, Los Angeles, CA 90001" -176786,20in Monitor,1,109.99,04/06/19 16:40,"701 North St, San Francisco, CA 94016" -176787,Google Phone,1,600,04/14/19 10:10,"180 Pine St, Los Angeles, CA 90001" -176788,Bose SoundSport Headphones,1,99.99,04/15/19 04:39,"200 North St, New York City, NY 10001" -176789,Lightning Charging Cable,1,14.95,04/21/19 20:15,"990 Meadow St, San Francisco, CA 94016" -176790,AAA Batteries (4-pack),1,2.99,04/28/19 12:07,"689 9th St, Austin, TX 73301" -176791,Google Phone,1,600,04/21/19 11:43,"908 Jackson St, Los Angeles, CA 90001" -176792,27in 4K Gaming Monitor,1,389.99,04/30/19 19:29,"772 11th St, Atlanta, GA 30301" -176793,Wired Headphones,1,11.99,04/17/19 17:09,"147 South St, San Francisco, CA 94016" -176794,Lightning Charging Cable,1,14.95,04/10/19 21:40,"425 Adams St, Dallas, TX 75001" -176795,Wired Headphones,1,11.99,04/13/19 11:46,"360 Center St, San Francisco, CA 94016" -176796,Bose SoundSport Headphones,1,99.99,04/07/19 08:44,"5 2nd St, Los Angeles, CA 90001" -176797,Google Phone,1,600,04/21/19 08:54,"923 Elm St, Los Angeles, CA 90001" -176797,Bose SoundSport Headphones,1,99.99,04/21/19 08:54,"923 Elm St, Los Angeles, CA 90001" -176797,Wired Headphones,1,11.99,04/21/19 08:54,"923 Elm St, Los Angeles, CA 90001" -176798,iPhone,1,700,04/06/19 10:31,"445 Jefferson St, Atlanta, GA 30301" -176799,Wired Headphones,1,11.99,04/03/19 14:24,"452 Spruce St, Portland, OR 97035" -176800,Lightning Charging Cable,1,14.95,04/09/19 11:35,"766 West St, Atlanta, GA 30301" -176801,Vareebadd Phone,1,400,04/28/19 18:52,"125 North St, San Francisco, CA 94016" -176802,AA Batteries (4-pack),1,3.84,04/29/19 17:33,"627 12th St, Boston, MA 02215" -176803,AA Batteries (4-pack),1,3.84,04/01/19 23:00,"649 7th St, Austin, TX 73301" -176804,Bose SoundSport Headphones,1,99.99,04/21/19 21:56,"690 Walnut St, Seattle, WA 98101" -176805,Google Phone,1,600,04/01/19 15:50,"91 Lincoln St, Portland, OR 97035" -176805,USB-C Charging Cable,1,11.95,04/01/19 15:50,"91 Lincoln St, Portland, OR 97035" -176806,Macbook Pro Laptop,1,1700,04/22/19 13:26,"197 Cherry St, Austin, TX 73301" -176807,USB-C Charging Cable,1,11.95,04/21/19 17:13,"758 Hill St, Seattle, WA 98101" -176808,Google Phone,1,600,04/28/19 18:03,"933 Meadow St, San Francisco, CA 94016" -176808,Wired Headphones,1,11.99,04/28/19 18:03,"933 Meadow St, San Francisco, CA 94016" -176809,Bose SoundSport Headphones,2,99.99,04/19/19 01:14,"278 13th St, San Francisco, CA 94016" -176810,AAA Batteries (4-pack),1,2.99,04/30/19 14:57,"86 Meadow St, Atlanta, GA 30301" -176811,AA Batteries (4-pack),2,3.84,04/14/19 23:02,"456 13th St, Dallas, TX 75001" -176812,Wired Headphones,1,11.99,04/20/19 16:40,"569 Willow St, New York City, NY 10001" -176813,Google Phone,1,600,04/28/19 18:01,"269 Hill St, Atlanta, GA 30301" -176813,Wired Headphones,1,11.99,04/28/19 18:01,"269 Hill St, Atlanta, GA 30301" -176814,Lightning Charging Cable,1,14.95,04/09/19 12:09,"501 13th St, New York City, NY 10001" -176815,AAA Batteries (4-pack),1,2.99,04/04/19 13:36,"327 Adams St, San Francisco, CA 94016" -176816,27in 4K Gaming Monitor,1,389.99,04/19/19 20:14,"623 Lincoln St, Portland, OR 97035" -176817,Lightning Charging Cable,1,14.95,04/26/19 20:47,"284 Walnut St, Seattle, WA 98101" -176818,Wired Headphones,1,11.99,04/09/19 02:19,"642 13th St, San Francisco, CA 94016" -176819,AA Batteries (4-pack),2,3.84,04/15/19 05:44,"615 9th St, Portland, OR 97035" -176820,USB-C Charging Cable,1,11.95,04/17/19 12:10,"654 Adams St, Boston, MA 02215" -176821,34in Ultrawide Monitor,1,379.99,04/18/19 15:08,"72 Meadow St, San Francisco, CA 94016" -176822,AAA Batteries (4-pack),1,2.99,04/22/19 19:50,"40 Cedar St, Seattle, WA 98101" -176823,Wired Headphones,1,11.99,04/06/19 20:18,"893 11th St, Seattle, WA 98101" -176824,USB-C Charging Cable,2,11.95,04/03/19 13:01,"983 Center St, Los Angeles, CA 90001" -176825,LG Washing Machine,1,600.0,04/13/19 22:31,"338 6th St, San Francisco, CA 94016" -176826,Bose SoundSport Headphones,1,99.99,04/11/19 00:15,"72 Meadow St, San Francisco, CA 94016" -176827,AAA Batteries (4-pack),1,2.99,04/20/19 13:36,"465 Hickory St, Los Angeles, CA 90001" -176828,iPhone,1,700,04/07/19 22:13,"696 Highland St, Seattle, WA 98101" -176829,Wired Headphones,1,11.99,04/30/19 09:09,"335 Wilson St, San Francisco, CA 94016" -176830,Wired Headphones,1,11.99,04/18/19 12:02,"663 5th St, Austin, TX 73301" -176831,USB-C Charging Cable,1,11.95,04/01/19 07:39,"743 Spruce St, San Francisco, CA 94016" -176832,Apple Airpods Headphones,1,150,04/19/19 20:21,"533 Spruce St, Los Angeles, CA 90001" -176833,Wired Headphones,1,11.99,04/21/19 19:32,"226 Madison St, Boston, MA 02215" -176834,Lightning Charging Cable,1,14.95,04/15/19 20:42,"193 Forest St, San Francisco, CA 94016" -176835,USB-C Charging Cable,1,11.95,04/23/19 16:55,"628 10th St, Boston, MA 02215" -176836,USB-C Charging Cable,2,11.95,04/10/19 14:20,"857 Hickory St, Boston, MA 02215" -176837,Lightning Charging Cable,1,14.95,04/10/19 12:29,"213 River St, New York City, NY 10001" -176838,Lightning Charging Cable,1,14.95,04/05/19 18:44,"656 South St, New York City, NY 10001" -176839,20in Monitor,1,109.99,04/10/19 07:19,"625 Willow St, Boston, MA 02215" -176840,USB-C Charging Cable,1,11.95,04/02/19 10:08,"939 14th St, Austin, TX 73301" -176841,AAA Batteries (4-pack),3,2.99,04/26/19 22:50,"177 Highland St, San Francisco, CA 94016" -176842,AA Batteries (4-pack),2,3.84,04/06/19 23:16,"532 1st St, New York City, NY 10001" -176843,34in Ultrawide Monitor,1,379.99,04/21/19 11:22,"733 Maple St, Atlanta, GA 30301" -176844,AA Batteries (4-pack),1,3.84,04/23/19 18:48,"983 Main St, Boston, MA 02215" -176845,USB-C Charging Cable,1,11.95,04/15/19 14:26,"925 Cedar St, San Francisco, CA 94016" -176846,USB-C Charging Cable,1,11.95,04/19/19 09:03,"599 10th St, New York City, NY 10001" -176847,AA Batteries (4-pack),3,3.84,04/03/19 16:00,"616 9th St, Austin, TX 73301" -176848,27in FHD Monitor,1,149.99,04/28/19 18:09,"442 Center St, Boston, MA 02215" -176849,34in Ultrawide Monitor,1,379.99,04/22/19 10:59,"309 West St, San Francisco, CA 94016" -176850,AA Batteries (4-pack),1,3.84,04/03/19 12:40,"520 5th St, Seattle, WA 98101" -176851,AA Batteries (4-pack),1,3.84,04/09/19 22:58,"669 Dogwood St, San Francisco, CA 94016" -176852,AA Batteries (4-pack),1,3.84,04/09/19 13:58,"731 Lincoln St, Portland, OR 97035" -176853,AA Batteries (4-pack),1,3.84,04/24/19 11:41,"858 14th St, New York City, NY 10001" -176854,AA Batteries (4-pack),1,3.84,04/11/19 22:05,"460 South St, Los Angeles, CA 90001" -176855,Wired Headphones,1,11.99,04/21/19 16:42,"103 12th St, Los Angeles, CA 90001" -176856,Lightning Charging Cable,1,14.95,04/13/19 10:59,"459 8th St, San Francisco, CA 94016" -176857,Bose SoundSport Headphones,1,99.99,04/30/19 07:18,"418 14th St, Portland, OR 97035" -176858,AAA Batteries (4-pack),1,2.99,04/16/19 13:25,"669 Park St, Los Angeles, CA 90001" -176859,AA Batteries (4-pack),1,3.84,04/15/19 10:53,"525 Adams St, New York City, NY 10001" -176860,USB-C Charging Cable,1,11.95,04/04/19 11:00,"420 Hill St, San Francisco, CA 94016" -176861,Bose SoundSport Headphones,1,99.99,04/14/19 13:01,"370 9th St, Los Angeles, CA 90001" -176862,AAA Batteries (4-pack),1,2.99,04/29/19 11:37,"267 Willow St, San Francisco, CA 94016" -176863,27in FHD Monitor,1,149.99,04/19/19 17:18,"64 Maple St, New York City, NY 10001" -176864,AAA Batteries (4-pack),2,2.99,04/02/19 15:47,"453 Meadow St, San Francisco, CA 94016" -176865,AA Batteries (4-pack),1,3.84,04/18/19 14:28,"952 Washington St, New York City, NY 10001" -176866,ThinkPad Laptop,1,999.99,04/02/19 11:42,"338 West St, New York City, NY 10001" -176867,AAA Batteries (4-pack),1,2.99,04/25/19 21:00,"483 Washington St, San Francisco, CA 94016" -176868,20in Monitor,1,109.99,04/05/19 07:37,"213 Highland St, Boston, MA 02215" -176869,Apple Airpods Headphones,1,150,04/23/19 18:33,"861 2nd St, Seattle, WA 98101" -176870,AAA Batteries (4-pack),3,2.99,04/05/19 18:38,"964 Park St, New York City, NY 10001" -176871,AA Batteries (4-pack),1,3.84,04/29/19 20:02,"489 9th St, Dallas, TX 75001" -176872,AA Batteries (4-pack),1,3.84,04/15/19 12:17,"678 Madison St, Los Angeles, CA 90001" -176873,AA Batteries (4-pack),1,3.84,04/06/19 05:26,"532 Spruce St, Los Angeles, CA 90001" -176874,AAA Batteries (4-pack),1,2.99,04/15/19 11:04,"325 Pine St, New York City, NY 10001" -176875,27in 4K Gaming Monitor,1,389.99,04/23/19 19:26,"727 Forest St, San Francisco, CA 94016" -176876,Bose SoundSport Headphones,1,99.99,04/23/19 21:15,"263 Hickory St, Boston, MA 02215" -176877,Lightning Charging Cable,1,14.95,04/10/19 15:48,"289 4th St, San Francisco, CA 94016" -176878,ThinkPad Laptop,1,999.99,04/13/19 09:15,"161 Highland St, San Francisco, CA 94016" -176879,Flatscreen TV,1,300,04/13/19 14:15,"370 Sunset St, Portland, ME 04101" -176880,27in FHD Monitor,1,149.99,04/04/19 08:36,"691 River St, New York City, NY 10001" -176881,Wired Headphones,1,11.99,04/22/19 20:59,"157 Sunset St, San Francisco, CA 94016" -176882,Wired Headphones,1,11.99,04/24/19 20:16,"929 Main St, Boston, MA 02215" -176883,Wired Headphones,2,11.99,04/15/19 09:24,"344 Dogwood St, New York City, NY 10001" -176884,USB-C Charging Cable,1,11.95,04/11/19 09:04,"813 Highland St, San Francisco, CA 94016" -176885,34in Ultrawide Monitor,1,379.99,04/22/19 21:26,"582 River St, Boston, MA 02215" -176886,Flatscreen TV,1,300,04/19/19 20:44,"410 8th St, San Francisco, CA 94016" -176887,AAA Batteries (4-pack),1,2.99,04/01/19 12:59,"591 4th St, Boston, MA 02215" -176888,Wired Headphones,1,11.99,04/15/19 13:57,"608 5th St, New York City, NY 10001" -176889,AAA Batteries (4-pack),1,2.99,04/17/19 21:22,"837 Madison St, Boston, MA 02215" -176890,USB-C Charging Cable,1,11.95,04/25/19 17:35,"950 8th St, Austin, TX 73301" -176891,AAA Batteries (4-pack),1,2.99,04/07/19 11:52,"323 Ridge St, Portland, OR 97035" -176892,AAA Batteries (4-pack),1,2.99,04/12/19 22:50,"165 Meadow St, Boston, MA 02215" -176893,AAA Batteries (4-pack),1,2.99,04/23/19 14:01,"794 Dogwood St, Seattle, WA 98101" -176894,Flatscreen TV,1,300,04/13/19 17:23,"589 Park St, San Francisco, CA 94016" -176895,Apple Airpods Headphones,1,150,04/24/19 08:44,"286 6th St, Boston, MA 02215" -176896,AAA Batteries (4-pack),2,2.99,04/24/19 17:41,"77 Johnson St, Dallas, TX 75001" -176897,Apple Airpods Headphones,1,150,04/02/19 18:12,"941 Walnut St, San Francisco, CA 94016" -,,,,, -176898,Apple Airpods Headphones,1,150,04/18/19 17:05,"45 River St, New York City, NY 10001" -176899,Lightning Charging Cable,1,14.95,04/05/19 18:17,"269 South St, San Francisco, CA 94016" -176900,Bose SoundSport Headphones,1,99.99,04/21/19 06:17,"356 North St, Boston, MA 02215" -176901,Lightning Charging Cable,1,14.95,04/22/19 14:37,"25 8th St, Atlanta, GA 30301" -176902,USB-C Charging Cable,1,11.95,04/11/19 14:49,"166 Dogwood St, Atlanta, GA 30301" -176903,iPhone,1,700,04/09/19 11:10,"684 Main St, Boston, MA 02215" -176904,AAA Batteries (4-pack),1,2.99,04/13/19 15:44,"782 Ridge St, Boston, MA 02215" -176905,27in FHD Monitor,1,149.99,04/12/19 07:40,"92 Spruce St, New York City, NY 10001" -176906,27in FHD Monitor,1,149.99,04/07/19 20:14,"636 Cherry St, Los Angeles, CA 90001" -176907,27in FHD Monitor,1,149.99,04/11/19 01:43,"120 Sunset St, Los Angeles, CA 90001" -176908,AAA Batteries (4-pack),1,2.99,04/25/19 20:53,"802 Maple St, Seattle, WA 98101" -176909,Wired Headphones,1,11.99,04/22/19 09:53,"692 Jackson St, Portland, ME 04101" -176910,AAA Batteries (4-pack),2,2.99,04/19/19 14:46,"573 2nd St, Los Angeles, CA 90001" -176911,AAA Batteries (4-pack),1,2.99,04/12/19 10:29,"346 13th St, Los Angeles, CA 90001" -176912,Apple Airpods Headphones,1,150,04/25/19 14:33,"862 7th St, Seattle, WA 98101" -176913,AAA Batteries (4-pack),1,2.99,04/20/19 19:09,"340 11th St, Atlanta, GA 30301" -176914,Lightning Charging Cable,1,14.95,04/01/19 15:54,"846 Cherry St, San Francisco, CA 94016" -176915,AAA Batteries (4-pack),1,2.99,04/04/19 19:18,"64 Hill St, Dallas, TX 75001" -176916,34in Ultrawide Monitor,1,379.99,04/18/19 07:45,"285 Cedar St, San Francisco, CA 94016" -176917,USB-C Charging Cable,1,11.95,04/14/19 19:50,"376 Sunset St, Boston, MA 02215" -176918,USB-C Charging Cable,1,11.95,04/10/19 09:57,"398 Elm St, Los Angeles, CA 90001" -176919,AAA Batteries (4-pack),1,2.99,04/29/19 07:02,"240 14th St, Boston, MA 02215" -176920,Apple Airpods Headphones,1,150,04/30/19 18:55,"117 Lake St, New York City, NY 10001" -176921,Lightning Charging Cable,1,14.95,04/24/19 17:56,"365 Wilson St, San Francisco, CA 94016" -176922,Bose SoundSport Headphones,1,99.99,04/02/19 21:08,"859 Hill St, Los Angeles, CA 90001" -176923,LG Washing Machine,1,600.0,04/26/19 12:48,"259 6th St, Los Angeles, CA 90001" -176924,Bose SoundSport Headphones,1,99.99,04/14/19 10:32,"375 4th St, New York City, NY 10001" -176925,Lightning Charging Cable,1,14.95,04/18/19 15:31,"920 Wilson St, New York City, NY 10001" -176926,USB-C Charging Cable,1,11.95,04/14/19 21:17,"921 Cedar St, Atlanta, GA 30301" -176927,Wired Headphones,1,11.99,04/18/19 18:40,"700 Sunset St, Los Angeles, CA 90001" -176928,AAA Batteries (4-pack),1,2.99,04/08/19 21:08,"203 Hickory St, San Francisco, CA 94016" -176929,ThinkPad Laptop,1,999.99,04/11/19 22:13,"743 11th St, Dallas, TX 75001" -176930,USB-C Charging Cable,1,11.95,04/15/19 09:41,"161 Center St, Boston, MA 02215" -176931,ThinkPad Laptop,1,999.99,04/13/19 08:47,"57 Pine St, New York City, NY 10001" -176932,34in Ultrawide Monitor,1,379.99,04/28/19 17:02,"118 Church St, Seattle, WA 98101" -176933,Flatscreen TV,1,300,04/24/19 10:34,"698 Spruce St, New York City, NY 10001" -176934,AAA Batteries (4-pack),1,2.99,04/08/19 19:44,"329 Park St, New York City, NY 10001" -176935,AAA Batteries (4-pack),1,2.99,04/03/19 21:31,"315 1st St, Dallas, TX 75001" -176935,27in FHD Monitor,1,149.99,04/03/19 21:31,"315 1st St, Dallas, TX 75001" -176936,Apple Airpods Headphones,1,150,04/15/19 08:36,"846 Hickory St, Boston, MA 02215" -176937,Google Phone,1,600,04/30/19 22:04,"980 7th St, Los Angeles, CA 90001" -176938,AAA Batteries (4-pack),1,2.99,04/29/19 21:08,"249 Jefferson St, Los Angeles, CA 90001" -176939,AAA Batteries (4-pack),1,2.99,04/06/19 12:50,"418 12th St, San Francisco, CA 94016" -176940,Lightning Charging Cable,1,14.95,04/02/19 23:59,"864 Hickory St, Dallas, TX 75001" -176941,27in 4K Gaming Monitor,1,389.99,04/11/19 18:46,"807 14th St, San Francisco, CA 94016" -176942,AA Batteries (4-pack),1,3.84,04/12/19 10:02,"419 Washington St, Portland, OR 97035" -176943,Lightning Charging Cable,1,14.95,04/09/19 06:50,"211 2nd St, San Francisco, CA 94016" -176944,Bose SoundSport Headphones,1,99.99,04/28/19 06:22,"719 West St, Austin, TX 73301" -176945,USB-C Charging Cable,1,11.95,04/24/19 02:17,"701 Pine St, Austin, TX 73301" -176946,Lightning Charging Cable,1,14.95,04/27/19 16:36,"991 6th St, New York City, NY 10001" -176947,AA Batteries (4-pack),2,3.84,04/02/19 18:40,"357 Center St, Los Angeles, CA 90001" -176948,Wired Headphones,1,11.99,04/26/19 09:46,"761 Highland St, San Francisco, CA 94016" -176949,USB-C Charging Cable,1,11.95,04/27/19 12:54,"347 Jackson St, Los Angeles, CA 90001" -176950,Lightning Charging Cable,1,14.95,04/04/19 08:54,"929 Johnson St, Dallas, TX 75001" -176951,USB-C Charging Cable,2,11.95,04/15/19 21:57,"606 Lakeview St, Boston, MA 02215" -176952,AAA Batteries (4-pack),1,2.99,04/06/19 18:47,"693 5th St, Los Angeles, CA 90001" -176953,Flatscreen TV,1,300,04/29/19 13:41,"595 West St, Dallas, TX 75001" -176954,Bose SoundSport Headphones,1,99.99,04/28/19 14:49,"524 Elm St, San Francisco, CA 94016" -176955,AAA Batteries (4-pack),1,2.99,04/02/19 16:08,"169 Church St, San Francisco, CA 94016" -176956,AA Batteries (4-pack),1,3.84,04/01/19 21:43,"703 5th St, Dallas, TX 75001" -176957,Google Phone,1,600,04/06/19 18:22,"582 Church St, Boston, MA 02215" -176958,Bose SoundSport Headphones,1,99.99,04/23/19 09:26,"497 Main St, Boston, MA 02215" -176959,Wired Headphones,1,11.99,04/08/19 18:32,"125 Jefferson St, Seattle, WA 98101" -176960,Bose SoundSport Headphones,1,99.99,04/08/19 14:49,"737 West St, Dallas, TX 75001" -176961,27in FHD Monitor,1,149.99,04/16/19 15:13,"357 Willow St, Portland, OR 97035" -176962,Wired Headphones,1,11.99,04/07/19 11:19,"710 Church St, San Francisco, CA 94016" -176963,AAA Batteries (4-pack),2,2.99,04/14/19 13:17,"390 Walnut St, Los Angeles, CA 90001" -176964,AAA Batteries (4-pack),1,2.99,04/05/19 14:43,"453 Cedar St, San Francisco, CA 94016" -176965,Lightning Charging Cable,1,14.95,04/08/19 09:00,"900 Dogwood St, Boston, MA 02215" -176966,Bose SoundSport Headphones,1,99.99,04/22/19 23:21,"3 Main St, Boston, MA 02215" -176967,27in 4K Gaming Monitor,1,389.99,04/13/19 13:04,"275 Lake St, Dallas, TX 75001" -176968,Bose SoundSport Headphones,1,99.99,04/28/19 08:30,"183 2nd St, Atlanta, GA 30301" -176969,AA Batteries (4-pack),1,3.84,04/05/19 09:27,"346 Wilson St, Portland, OR 97035" -176970,Bose SoundSport Headphones,1,99.99,04/06/19 19:33,"524 7th St, Los Angeles, CA 90001" -176971,AAA Batteries (4-pack),1,2.99,04/05/19 22:56,"166 5th St, New York City, NY 10001" -176972,27in FHD Monitor,1,149.99,04/06/19 17:36,"824 West St, Seattle, WA 98101" -176973,Wired Headphones,1,11.99,04/04/19 21:49,"748 Madison St, Los Angeles, CA 90001" -176974,ThinkPad Laptop,1,999.99,04/05/19 22:51,"789 Center St, Seattle, WA 98101" -176975,USB-C Charging Cable,1,11.95,04/23/19 15:46,"28 13th St, San Francisco, CA 94016" -176975,AAA Batteries (4-pack),1,2.99,04/23/19 15:46,"28 13th St, San Francisco, CA 94016" -176976,27in FHD Monitor,1,149.99,04/18/19 05:42,"260 Pine St, Los Angeles, CA 90001" -176977,Bose SoundSport Headphones,1,99.99,04/06/19 13:57,"808 Ridge St, Portland, OR 97035" -176978,Apple Airpods Headphones,1,150,05/01/19 03:29,"589 Lake St, Portland, OR 97035" -176979,AAA Batteries (4-pack),2,2.99,04/28/19 17:53,"315 9th St, New York City, NY 10001" -176980,Bose SoundSport Headphones,1,99.99,04/02/19 11:20,"456 10th St, Seattle, WA 98101" -176981,Google Phone,1,600,04/01/19 11:29,"924 11th St, San Francisco, CA 94016" -176982,iPhone,1,700,04/14/19 13:53,"237 Lake St, Los Angeles, CA 90001" -176983,AAA Batteries (4-pack),2,2.99,04/23/19 10:18,"769 11th St, Boston, MA 02215" -176984,Apple Airpods Headphones,1,150,04/22/19 19:39,"77 Lake St, Portland, OR 97035" -176985,USB-C Charging Cable,1,11.95,04/15/19 11:52,"859 7th St, New York City, NY 10001" -176986,Apple Airpods Headphones,1,150,04/12/19 14:45,"623 Lakeview St, Los Angeles, CA 90001" -176987,AAA Batteries (4-pack),1,2.99,04/22/19 09:28,"87 Spruce St, San Francisco, CA 94016" -176988,Lightning Charging Cable,1,14.95,04/30/19 23:02,"251 South St, Boston, MA 02215" -176989,Google Phone,1,600,04/09/19 13:43,"346 9th St, Los Angeles, CA 90001" -176989,USB-C Charging Cable,1,11.95,04/09/19 13:43,"346 9th St, Los Angeles, CA 90001" -176990,27in FHD Monitor,1,149.99,04/07/19 00:15,"322 2nd St, San Francisco, CA 94016" -176991,Bose SoundSport Headphones,1,99.99,04/15/19 01:49,"338 2nd St, San Francisco, CA 94016" -176992,AAA Batteries (4-pack),2,2.99,04/15/19 12:22,"927 5th St, New York City, NY 10001" -176993,iPhone,1,700,04/07/19 09:43,"28 South St, Los Angeles, CA 90001" -176993,Wired Headphones,1,11.99,04/07/19 09:43,"28 South St, Los Angeles, CA 90001" -176994,Google Phone,1,600,04/15/19 12:39,"628 12th St, Los Angeles, CA 90001" -176995,AA Batteries (4-pack),2,3.84,04/20/19 23:12,"964 8th St, San Francisco, CA 94016" -176996,Wired Headphones,1,11.99,04/23/19 13:57,"57 Wilson St, Atlanta, GA 30301" -176997,AA Batteries (4-pack),1,3.84,04/25/19 16:57,"354 14th St, New York City, NY 10001" -176998,Bose SoundSport Headphones,1,99.99,04/12/19 12:54,"481 Maple St, San Francisco, CA 94016" -176999,Lightning Charging Cable,1,14.95,04/28/19 11:19,"192 7th St, Seattle, WA 98101" -177000,USB-C Charging Cable,1,11.95,04/26/19 16:08,"936 9th St, Los Angeles, CA 90001" -177001,Wired Headphones,1,11.99,04/17/19 09:49,"958 Walnut St, Los Angeles, CA 90001" -177002,USB-C Charging Cable,1,11.95,04/15/19 10:38,"965 Elm St, San Francisco, CA 94016" -177003,USB-C Charging Cable,1,11.95,04/13/19 16:09,"903 Wilson St, San Francisco, CA 94016" -177004,AAA Batteries (4-pack),1,2.99,04/24/19 17:43,"781 Wilson St, Los Angeles, CA 90001" -177005,Lightning Charging Cable,1,14.95,04/28/19 11:38,"375 Jefferson St, Los Angeles, CA 90001" -177006,34in Ultrawide Monitor,1,379.99,04/02/19 16:42,"776 Spruce St, Austin, TX 73301" -177007,AAA Batteries (4-pack),1,2.99,04/18/19 13:10,"806 Willow St, Boston, MA 02215" -177008,Apple Airpods Headphones,1,150,04/05/19 21:19,"899 7th St, Dallas, TX 75001" -177009,AA Batteries (4-pack),1,3.84,04/24/19 11:08,"623 5th St, Los Angeles, CA 90001" -177010,Apple Airpods Headphones,1,150,04/28/19 13:42,"885 Jefferson St, Dallas, TX 75001" -177011,Wired Headphones,2,11.99,04/11/19 11:18,"742 Maple St, Dallas, TX 75001" -177012,Lightning Charging Cable,3,14.95,04/29/19 14:05,"987 9th St, New York City, NY 10001" -177013,AAA Batteries (4-pack),1,2.99,04/18/19 18:52,"398 Pine St, Los Angeles, CA 90001" -177014,Lightning Charging Cable,1,14.95,04/17/19 07:41,"918 Maple St, Dallas, TX 75001" -177015,Lightning Charging Cable,1,14.95,04/26/19 13:55,"61 7th St, New York City, NY 10001" -177016,USB-C Charging Cable,1,11.95,04/23/19 17:05,"277 Johnson St, Seattle, WA 98101" -177017,AAA Batteries (4-pack),5,2.99,04/16/19 00:04,"713 Sunset St, New York City, NY 10001" -177018,USB-C Charging Cable,1,11.95,04/25/19 07:35,"412 Church St, New York City, NY 10001" -177019,USB-C Charging Cable,1,11.95,04/20/19 15:44,"2 4th St, San Francisco, CA 94016" -177020,Macbook Pro Laptop,1,1700,04/16/19 22:31,"606 Walnut St, Seattle, WA 98101" -177021,Bose SoundSport Headphones,1,99.99,04/08/19 21:52,"542 Cedar St, San Francisco, CA 94016" -177022,iPhone,1,700,04/17/19 18:14,"216 Chestnut St, Los Angeles, CA 90001" -177022,Wired Headphones,1,11.99,04/17/19 18:14,"216 Chestnut St, Los Angeles, CA 90001" -177023,AAA Batteries (4-pack),1,2.99,04/23/19 20:40,"320 Adams St, New York City, NY 10001" -177024,Bose SoundSport Headphones,1,99.99,04/27/19 15:00,"565 Madison St, Los Angeles, CA 90001" -177025,27in FHD Monitor,1,149.99,04/06/19 14:42,"708 Cedar St, San Francisco, CA 94016" -177026,34in Ultrawide Monitor,1,379.99,04/11/19 22:15,"892 5th St, Austin, TX 73301" -177027,USB-C Charging Cable,1,11.95,04/24/19 09:12,"472 Pine St, San Francisco, CA 94016" -177028,Bose SoundSport Headphones,1,99.99,04/04/19 12:58,"456 Jefferson St, Atlanta, GA 30301" -177029,Wired Headphones,1,11.99,04/29/19 11:23,"404 Church St, Boston, MA 02215" -177030,USB-C Charging Cable,1,11.95,04/03/19 10:55,"60 Adams St, San Francisco, CA 94016" -177031,Apple Airpods Headphones,1,150,04/25/19 13:50,"448 11th St, Los Angeles, CA 90001" -177032,iPhone,1,700,04/22/19 07:29,"307 7th St, San Francisco, CA 94016" -177033,USB-C Charging Cable,1,11.95,04/02/19 18:13,"915 Park St, San Francisco, CA 94016" -177034,USB-C Charging Cable,1,11.95,04/30/19 10:25,"268 Johnson St, Los Angeles, CA 90001" -177035,Bose SoundSport Headphones,1,99.99,04/26/19 12:15,"236 North St, Los Angeles, CA 90001" -177036,Lightning Charging Cable,2,14.95,04/27/19 19:05,"125 Park St, San Francisco, CA 94016" -177037,34in Ultrawide Monitor,1,379.99,04/27/19 01:44,"135 Jefferson St, San Francisco, CA 94016" -177038,iPhone,1,700,04/03/19 12:11,"632 Sunset St, San Francisco, CA 94016" -177039,AAA Batteries (4-pack),1,2.99,04/26/19 20:44,"167 2nd St, San Francisco, CA 94016" -177040,USB-C Charging Cable,1,11.95,04/15/19 09:27,"485 7th St, San Francisco, CA 94016" -177041,Wired Headphones,1,11.99,04/11/19 12:59,"265 Spruce St, Atlanta, GA 30301" -177042,Lightning Charging Cable,1,14.95,04/24/19 06:57,"876 Hill St, San Francisco, CA 94016" -177043,27in 4K Gaming Monitor,1,389.99,04/02/19 22:02,"658 West St, New York City, NY 10001" -177044,AA Batteries (4-pack),1,3.84,04/01/19 20:31,"817 4th St, Atlanta, GA 30301" -177045,Flatscreen TV,1,300,04/07/19 22:40,"570 1st St, New York City, NY 10001" -177046,Vareebadd Phone,1,400,04/29/19 13:02,"406 12th St, Los Angeles, CA 90001" -177047,Lightning Charging Cable,1,14.95,04/13/19 11:52,"258 Johnson St, New York City, NY 10001" -177048,Bose SoundSport Headphones,1,99.99,04/12/19 21:23,"432 5th St, New York City, NY 10001" -177049,Wired Headphones,1,11.99,04/03/19 06:55,"154 Dogwood St, San Francisco, CA 94016" -177050,Apple Airpods Headphones,1,150,04/08/19 09:53,"510 Elm St, Boston, MA 02215" -177051,Wired Headphones,2,11.99,04/07/19 08:41,"777 Adams St, Boston, MA 02215" -177052,USB-C Charging Cable,2,11.95,04/02/19 09:30,"532 Walnut St, San Francisco, CA 94016" -177053,Wired Headphones,1,11.99,04/24/19 20:45,"5 Adams St, Boston, MA 02215" -177054,Apple Airpods Headphones,1,150,04/09/19 19:18,"800 Jackson St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -177055,Lightning Charging Cable,1,14.95,04/09/19 12:37,"59 Forest St, Atlanta, GA 30301" -177056,Flatscreen TV,1,300,04/20/19 23:52,"180 9th St, San Francisco, CA 94016" -177057,Bose SoundSport Headphones,1,99.99,04/09/19 08:57,"585 Cherry St, New York City, NY 10001" -177058,20in Monitor,1,109.99,04/07/19 09:24,"144 Adams St, Los Angeles, CA 90001" -177059,AAA Batteries (4-pack),1,2.99,04/19/19 22:55,"991 Spruce St, San Francisco, CA 94016" -177060,AA Batteries (4-pack),1,3.84,04/02/19 12:44,"97 Wilson St, Boston, MA 02215" -177061,Bose SoundSport Headphones,1,99.99,04/09/19 09:33,"913 North St, New York City, NY 10001" -177062,Apple Airpods Headphones,1,150,04/27/19 19:16,"60 Highland St, San Francisco, CA 94016" -177063,AAA Batteries (4-pack),1,2.99,04/05/19 18:23,"489 Washington St, Los Angeles, CA 90001" -177064,Wired Headphones,1,11.99,04/02/19 20:57,"216 12th St, Portland, OR 97035" -177065,AAA Batteries (4-pack),4,2.99,04/03/19 21:04,"171 Madison St, Boston, MA 02215" -177066,Macbook Pro Laptop,1,1700,04/08/19 20:02,"278 10th St, San Francisco, CA 94016" -177067,Lightning Charging Cable,1,14.95,04/24/19 17:48,"575 South St, Boston, MA 02215" -177068,27in FHD Monitor,1,149.99,04/02/19 06:53,"749 South St, Los Angeles, CA 90001" -177069,iPhone,1,700,04/17/19 13:40,"295 Jackson St, Portland, OR 97035" -177070,USB-C Charging Cable,1,11.95,04/17/19 22:25,"687 Chestnut St, San Francisco, CA 94016" -177071,34in Ultrawide Monitor,1,379.99,04/22/19 22:28,"149 Ridge St, San Francisco, CA 94016" -177072,iPhone,1,700,04/01/19 13:11,"682 9th St, Portland, ME 04101" -177073,AA Batteries (4-pack),3,3.84,04/01/19 15:59,"725 Elm St, San Francisco, CA 94016" -177074,27in FHD Monitor,1,149.99,04/21/19 22:39,"531 Main St, Boston, MA 02215" -177075,Bose SoundSport Headphones,1,99.99,04/26/19 05:30,"985 Sunset St, San Francisco, CA 94016" -177076,Wired Headphones,1,11.99,04/28/19 19:45,"959 Washington St, Los Angeles, CA 90001" -177077,AAA Batteries (4-pack),1,2.99,04/10/19 07:11,"403 Pine St, Dallas, TX 75001" -177078,USB-C Charging Cable,1,11.95,04/03/19 14:31,"628 4th St, Seattle, WA 98101" -177079,Lightning Charging Cable,1,14.95,04/28/19 12:06,"60 Cherry St, San Francisco, CA 94016" -177080,AAA Batteries (4-pack),1,2.99,04/14/19 17:33,"395 Spruce St, Atlanta, GA 30301" -177081,Flatscreen TV,1,300,04/09/19 08:36,"920 West St, San Francisco, CA 94016" -177082,34in Ultrawide Monitor,1,379.99,04/12/19 02:30,"15 Johnson St, Seattle, WA 98101" -177083,Flatscreen TV,1,300,04/12/19 12:45,"876 Cedar St, New York City, NY 10001" -177084,AA Batteries (4-pack),1,3.84,04/18/19 16:15,"25 11th St, Boston, MA 02215" -177085,iPhone,1,700,04/19/19 20:31,"770 Elm St, New York City, NY 10001" -177086,Lightning Charging Cable,1,14.95,04/08/19 00:07,"669 Chestnut St, Los Angeles, CA 90001" -177087,Wired Headphones,1,11.99,04/27/19 13:08,"327 12th St, Atlanta, GA 30301" -177088,AAA Batteries (4-pack),3,2.99,04/16/19 06:57,"828 West St, Boston, MA 02215" -177089,Apple Airpods Headphones,1,150,04/10/19 17:46,"872 North St, San Francisco, CA 94016" -177090,USB-C Charging Cable,1,11.95,04/09/19 17:18,"234 River St, Los Angeles, CA 90001" -177091,Apple Airpods Headphones,1,150,04/05/19 13:51,"61 Forest St, Los Angeles, CA 90001" -177092,AAA Batteries (4-pack),1,2.99,04/04/19 15:00,"544 Madison St, San Francisco, CA 94016" -177093,27in FHD Monitor,1,149.99,04/29/19 12:29,"124 Church St, San Francisco, CA 94016" -177094,Flatscreen TV,1,300,04/30/19 13:02,"785 8th St, Atlanta, GA 30301" -177095,Lightning Charging Cable,1,14.95,04/27/19 18:11,"924 Cedar St, Atlanta, GA 30301" -177096,USB-C Charging Cable,1,11.95,04/06/19 19:49,"115 Church St, Dallas, TX 75001" -177097,Vareebadd Phone,1,400,04/21/19 18:04,"35 Hickory St, Los Angeles, CA 90001" -177098,Apple Airpods Headphones,1,150,04/30/19 12:07,"960 4th St, Austin, TX 73301" -177099,AA Batteries (4-pack),1,3.84,04/28/19 11:16,"639 11th St, Austin, TX 73301" -177100,ThinkPad Laptop,1,999.99,04/06/19 15:28,"93 Spruce St, Atlanta, GA 30301" -177101,Flatscreen TV,1,300,04/09/19 21:05,"334 Wilson St, New York City, NY 10001" -177102,iPhone,1,700,04/24/19 05:19,"542 Center St, New York City, NY 10001" -177102,27in 4K Gaming Monitor,1,389.99,04/24/19 05:19,"542 Center St, New York City, NY 10001" -177103,ThinkPad Laptop,1,999.99,04/12/19 11:41,"532 10th St, Portland, OR 97035" -177104,Lightning Charging Cable,1,14.95,04/09/19 19:28,"505 12th St, Boston, MA 02215" -177105,Bose SoundSport Headphones,1,99.99,04/10/19 18:39,"60 Maple St, San Francisco, CA 94016" -177106,USB-C Charging Cable,1,11.95,04/01/19 17:10,"167 9th St, Los Angeles, CA 90001" -177107,Bose SoundSport Headphones,1,99.99,04/20/19 20:12,"153 Johnson St, Los Angeles, CA 90001" -177108,Bose SoundSport Headphones,1,99.99,04/28/19 19:34,"410 Jefferson St, San Francisco, CA 94016" -177109,Bose SoundSport Headphones,1,99.99,04/08/19 10:12,"550 Hickory St, New York City, NY 10001" -177110,AAA Batteries (4-pack),2,2.99,04/28/19 12:56,"307 8th St, San Francisco, CA 94016" -177111,USB-C Charging Cable,1,11.95,04/15/19 06:56,"591 Sunset St, San Francisco, CA 94016" -177112,USB-C Charging Cable,1,11.95,04/23/19 11:40,"66 Johnson St, Boston, MA 02215" -177113,20in Monitor,1,109.99,04/02/19 12:40,"554 Cedar St, Austin, TX 73301" -177114,Apple Airpods Headphones,1,150,04/14/19 14:19,"488 Ridge St, Portland, OR 97035" -177115,iPhone,1,700,04/19/19 19:10,"71 6th St, San Francisco, CA 94016" -177115,Lightning Charging Cable,1,14.95,04/19/19 19:10,"71 6th St, San Francisco, CA 94016" -177116,Bose SoundSport Headphones,1,99.99,04/08/19 12:46,"615 Cedar St, Los Angeles, CA 90001" -177117,ThinkPad Laptop,1,999.99,04/16/19 19:34,"564 Hill St, San Francisco, CA 94016" -177117,AAA Batteries (4-pack),1,2.99,04/16/19 19:34,"564 Hill St, San Francisco, CA 94016" -177118,AA Batteries (4-pack),1,3.84,04/23/19 05:12,"618 Park St, San Francisco, CA 94016" -177119,Vareebadd Phone,1,400,04/06/19 20:13,"617 Highland St, Seattle, WA 98101" -177120,Macbook Pro Laptop,1,1700,04/03/19 09:46,"371 Church St, New York City, NY 10001" -177121,Lightning Charging Cable,1,14.95,04/23/19 20:54,"377 Chestnut St, San Francisco, CA 94016" -177122,Apple Airpods Headphones,1,150,04/30/19 19:49,"57 11th St, Seattle, WA 98101" -177123,Flatscreen TV,1,300,04/09/19 11:54,"910 Cedar St, San Francisco, CA 94016" -177124,Lightning Charging Cable,1,14.95,04/02/19 19:52,"473 4th St, Dallas, TX 75001" -177125,Lightning Charging Cable,1,14.95,04/23/19 21:40,"377 Spruce St, Austin, TX 73301" -177126,Bose SoundSport Headphones,1,99.99,04/28/19 19:31,"838 Johnson St, San Francisco, CA 94016" -177127,27in FHD Monitor,1,149.99,04/16/19 21:15,"469 6th St, Austin, TX 73301" -177128,Flatscreen TV,1,300,04/03/19 20:10,"162 14th St, Los Angeles, CA 90001" -177129,Apple Airpods Headphones,1,150,04/23/19 17:48,"474 Elm St, San Francisco, CA 94016" -177130,LG Washing Machine,1,600.0,04/01/19 08:43,"777 Center St, Los Angeles, CA 90001" -177131,Lightning Charging Cable,1,14.95,04/30/19 10:25,"142 Wilson St, New York City, NY 10001" -177132,27in FHD Monitor,1,149.99,04/06/19 13:56,"215 Walnut St, Atlanta, GA 30301" -177133,27in FHD Monitor,1,149.99,04/16/19 11:54,"929 Jackson St, Los Angeles, CA 90001" -177134,Lightning Charging Cable,1,14.95,04/16/19 12:58,"132 Ridge St, San Francisco, CA 94016" -177135,iPhone,1,700,04/25/19 06:18,"528 Ridge St, Los Angeles, CA 90001" -177136,USB-C Charging Cable,1,11.95,04/14/19 20:54,"612 Center St, Boston, MA 02215" -177137,AA Batteries (4-pack),1,3.84,04/06/19 12:20,"72 11th St, Los Angeles, CA 90001" -177138,AAA Batteries (4-pack),1,2.99,04/14/19 19:56,"525 4th St, New York City, NY 10001" -177139,Apple Airpods Headphones,2,150,04/03/19 14:05,"723 Madison St, San Francisco, CA 94016" -177140,Lightning Charging Cable,1,14.95,04/24/19 16:10,"802 North St, Seattle, WA 98101" -177141,AAA Batteries (4-pack),1,2.99,04/20/19 16:12,"559 4th St, San Francisco, CA 94016" -177142,Lightning Charging Cable,1,14.95,04/08/19 12:07,"555 Madison St, Boston, MA 02215" -177143,Wired Headphones,1,11.99,04/12/19 13:12,"974 Madison St, Los Angeles, CA 90001" -177144,27in 4K Gaming Monitor,1,389.99,04/03/19 16:58,"740 Jackson St, Portland, OR 97035" -177145,LG Washing Machine,1,600.0,04/25/19 09:50,"790 Walnut St, San Francisco, CA 94016" -177146,Lightning Charging Cable,1,14.95,04/07/19 20:34,"425 Hill St, Portland, OR 97035" -177147,20in Monitor,1,109.99,04/26/19 14:06,"506 River St, San Francisco, CA 94016" -177148,USB-C Charging Cable,1,11.95,04/06/19 11:04,"681 Center St, Atlanta, GA 30301" -177149,34in Ultrawide Monitor,1,379.99,04/24/19 06:23,"346 12th St, Dallas, TX 75001" -177150,Wired Headphones,1,11.99,04/27/19 10:05,"727 Pine St, Los Angeles, CA 90001" -177151,ThinkPad Laptop,1,999.99,04/11/19 10:24,"625 Spruce St, San Francisco, CA 94016" -177152,ThinkPad Laptop,1,999.99,04/05/19 23:20,"587 9th St, Los Angeles, CA 90001" -177153,Flatscreen TV,1,300,04/10/19 13:51,"602 Jefferson St, Austin, TX 73301" -177154,AAA Batteries (4-pack),1,2.99,04/27/19 15:40,"136 6th St, San Francisco, CA 94016" -177155,Lightning Charging Cable,1,14.95,04/19/19 13:09,"747 Cedar St, Seattle, WA 98101" -177156,Apple Airpods Headphones,1,150,04/05/19 16:21,"367 Willow St, New York City, NY 10001" -177157,AA Batteries (4-pack),1,3.84,04/14/19 10:52,"518 Madison St, San Francisco, CA 94016" -177158,Lightning Charging Cable,2,14.95,04/12/19 07:16,"294 Lincoln St, Los Angeles, CA 90001" -177159,AAA Batteries (4-pack),1,2.99,04/14/19 23:16,"600 Cedar St, Atlanta, GA 30301" -177160,AAA Batteries (4-pack),7,2.99,04/26/19 11:37,"689 7th St, Dallas, TX 75001" -177161,Wired Headphones,1,11.99,04/03/19 09:38,"243 Pine St, San Francisco, CA 94016" -177162,Bose SoundSport Headphones,1,99.99,04/22/19 14:43,"18 Main St, Los Angeles, CA 90001" -177163,Wired Headphones,1,11.99,04/19/19 09:30,"579 14th St, San Francisco, CA 94016" -177164,Lightning Charging Cable,1,14.95,04/18/19 15:51,"877 Hill St, Los Angeles, CA 90001" -177165,Wired Headphones,1,11.99,04/18/19 23:18,"435 Highland St, San Francisco, CA 94016" -177166,Wired Headphones,1,11.99,04/04/19 16:13,"375 13th St, Boston, MA 02215" -177167,iPhone,1,700,04/28/19 16:40,"39 Lakeview St, Boston, MA 02215" -177167,Apple Airpods Headphones,1,150,04/28/19 16:40,"39 Lakeview St, Boston, MA 02215" -177167,AAA Batteries (4-pack),3,2.99,04/28/19 16:40,"39 Lakeview St, Boston, MA 02215" -177168,Google Phone,1,600,04/12/19 10:22,"306 Jackson St, New York City, NY 10001" -177169,27in FHD Monitor,1,149.99,04/23/19 15:59,"856 9th St, Portland, OR 97035" -177170,USB-C Charging Cable,1,11.95,04/21/19 15:19,"756 10th St, San Francisco, CA 94016" -177171,Vareebadd Phone,1,400,04/06/19 01:03,"550 Walnut St, San Francisco, CA 94016" -177172,Bose SoundSport Headphones,1,99.99,04/28/19 16:23,"872 13th St, New York City, NY 10001" -177173,Lightning Charging Cable,1,14.95,04/25/19 12:49,"396 Sunset St, Los Angeles, CA 90001" -177174,AAA Batteries (4-pack),1,2.99,04/12/19 14:49,"431 Walnut St, Los Angeles, CA 90001" -177175,Macbook Pro Laptop,1,1700,04/11/19 07:49,"603 Lake St, Los Angeles, CA 90001" -177176,USB-C Charging Cable,1,11.95,04/01/19 11:36,"5 Center St, Dallas, TX 75001" -177177,AA Batteries (4-pack),1,3.84,04/08/19 12:10,"182 12th St, San Francisco, CA 94016" -177178,iPhone,1,700,04/07/19 00:02,"342 Dogwood St, Seattle, WA 98101" -177178,Lightning Charging Cable,1,14.95,04/07/19 00:02,"342 Dogwood St, Seattle, WA 98101" -177179,Lightning Charging Cable,1,14.95,04/15/19 08:32,"225 Pine St, Austin, TX 73301" -177180,USB-C Charging Cable,1,11.95,04/18/19 22:27,"679 Jackson St, Dallas, TX 75001" -177181,Wired Headphones,1,11.99,04/09/19 00:49,"309 8th St, Los Angeles, CA 90001" -177181,Apple Airpods Headphones,1,150,04/09/19 00:49,"309 8th St, Los Angeles, CA 90001" -177182,Macbook Pro Laptop,1,1700,04/10/19 22:00,"332 10th St, Los Angeles, CA 90001" -177182,ThinkPad Laptop,1,999.99,04/10/19 22:00,"332 10th St, Los Angeles, CA 90001" -177183,Wired Headphones,1,11.99,04/03/19 19:38,"973 Lincoln St, Boston, MA 02215" -177184,AA Batteries (4-pack),1,3.84,04/01/19 16:49,"289 Hill St, Atlanta, GA 30301" -177184,Flatscreen TV,1,300,04/01/19 16:49,"289 Hill St, Atlanta, GA 30301" -177185,Lightning Charging Cable,1,14.95,04/08/19 09:57,"985 11th St, Dallas, TX 75001" -177186,Bose SoundSport Headphones,1,99.99,04/11/19 21:30,"879 Ridge St, Austin, TX 73301" -177187,Google Phone,1,600,04/04/19 18:08,"600 1st St, Seattle, WA 98101" -177188,AAA Batteries (4-pack),2,2.99,04/29/19 23:34,"281 Lake St, Los Angeles, CA 90001" -177189,Bose SoundSport Headphones,1,99.99,04/04/19 00:35,"346 7th St, Dallas, TX 75001" -177190,Lightning Charging Cable,1,14.95,04/05/19 15:16,"403 Lake St, San Francisco, CA 94016" -177191,Bose SoundSport Headphones,1,99.99,04/26/19 23:18,"276 Cherry St, San Francisco, CA 94016" -177192,AAA Batteries (4-pack),1,2.99,04/16/19 11:14,"847 1st St, Los Angeles, CA 90001" -177193,Apple Airpods Headphones,1,150,04/24/19 10:22,"333 Park St, San Francisco, CA 94016" -177194,Lightning Charging Cable,1,14.95,04/10/19 18:36,"477 Wilson St, Austin, TX 73301" -177195,AA Batteries (4-pack),1,3.84,04/25/19 17:39,"598 Spruce St, San Francisco, CA 94016" -177196,Apple Airpods Headphones,1,150,04/03/19 15:03,"193 1st St, San Francisco, CA 94016" -177197,ThinkPad Laptop,1,999.99,04/17/19 16:01,"654 River St, New York City, NY 10001" -177198,Vareebadd Phone,1,400,04/06/19 16:07,"154 6th St, New York City, NY 10001" -177198,USB-C Charging Cable,2,11.95,04/06/19 16:07,"154 6th St, New York City, NY 10001" -177199,iPhone,1,700,04/21/19 01:09,"640 Hill St, Austin, TX 73301" -177200,AAA Batteries (4-pack),1,2.99,04/19/19 11:55,"419 4th St, Los Angeles, CA 90001" -177201,USB-C Charging Cable,1,11.95,04/26/19 16:13,"505 River St, Los Angeles, CA 90001" -177201,Lightning Charging Cable,1,14.95,04/26/19 16:13,"505 River St, Los Angeles, CA 90001" -177202,USB-C Charging Cable,1,11.95,04/08/19 07:26,"828 Washington St, Atlanta, GA 30301" -177203,27in FHD Monitor,1,149.99,04/13/19 18:29,"585 2nd St, Austin, TX 73301" -177204,Lightning Charging Cable,1,14.95,04/24/19 11:13,"887 Johnson St, Austin, TX 73301" -177205,AA Batteries (4-pack),2,3.84,04/18/19 14:52,"927 Hill St, San Francisco, CA 94016" -177206,Apple Airpods Headphones,1,150,04/14/19 13:06,"307 Washington St, New York City, NY 10001" -177207,USB-C Charging Cable,1,11.95,04/03/19 11:41,"44 Cedar St, Dallas, TX 75001" -177208,Vareebadd Phone,1,400,04/30/19 18:04,"164 2nd St, Austin, TX 73301" -177209,Lightning Charging Cable,1,14.95,04/22/19 08:31,"799 Chestnut St, New York City, NY 10001" -177210,AA Batteries (4-pack),1,3.84,04/21/19 18:47,"462 Elm St, Boston, MA 02215" -177211,AA Batteries (4-pack),3,3.84,04/29/19 12:40,"107 Chestnut St, New York City, NY 10001" -177212,Lightning Charging Cable,1,14.95,04/10/19 18:45,"561 Madison St, Portland, OR 97035" -177213,iPhone,1,700,04/25/19 10:04,"756 Lincoln St, Dallas, TX 75001" -177213,Lightning Charging Cable,1,14.95,04/25/19 10:04,"756 Lincoln St, Dallas, TX 75001" -177214,AAA Batteries (4-pack),2,2.99,04/09/19 02:05,"616 9th St, Seattle, WA 98101" -177215,Bose SoundSport Headphones,1,99.99,04/10/19 09:01,"67 13th St, Seattle, WA 98101" -177216,Macbook Pro Laptop,1,1700,04/25/19 17:45,"712 12th St, Atlanta, GA 30301" -177217,Macbook Pro Laptop,1,1700,04/15/19 16:13,"262 Willow St, New York City, NY 10001" -177218,Wired Headphones,1,11.99,04/18/19 22:28,"222 River St, New York City, NY 10001" -177219,AA Batteries (4-pack),1,3.84,04/01/19 07:59,"380 Jefferson St, Seattle, WA 98101" -177220,Wired Headphones,1,11.99,04/02/19 19:09,"244 Elm St, New York City, NY 10001" -177221,34in Ultrawide Monitor,1,379.99,04/12/19 20:33,"5 Hickory St, San Francisco, CA 94016" -177222,AA Batteries (4-pack),3,3.84,04/20/19 16:54,"287 13th St, New York City, NY 10001" -177223,27in 4K Gaming Monitor,1,389.99,04/13/19 12:54,"202 12th St, San Francisco, CA 94016" -177224,Lightning Charging Cable,1,14.95,04/07/19 20:31,"151 5th St, Atlanta, GA 30301" -177225,ThinkPad Laptop,1,999.99,04/05/19 00:02,"399 Church St, San Francisco, CA 94016" -177226,Lightning Charging Cable,1,14.95,04/25/19 18:22,"884 Jackson St, Los Angeles, CA 90001" -177227,AA Batteries (4-pack),1,3.84,04/12/19 07:28,"544 11th St, Seattle, WA 98101" -177228,Google Phone,1,600,04/17/19 19:38,"233 South St, Dallas, TX 75001" -177228,AA Batteries (4-pack),1,3.84,04/17/19 19:38,"233 South St, Dallas, TX 75001" -177229,27in 4K Gaming Monitor,1,389.99,04/12/19 20:56,"877 Walnut St, Seattle, WA 98101" -177230,iPhone,1,700,04/06/19 00:26,"16 River St, Portland, ME 04101" -177231,USB-C Charging Cable,1,11.95,04/10/19 13:44,"508 Johnson St, Austin, TX 73301" -177232,Wired Headphones,1,11.99,04/07/19 22:41,"597 Jefferson St, San Francisco, CA 94016" -177233,Google Phone,1,600,04/25/19 15:59,"622 7th St, Portland, ME 04101" -177234,Lightning Charging Cable,1,14.95,04/10/19 12:29,"664 7th St, Atlanta, GA 30301" -177235,AA Batteries (4-pack),2,3.84,04/01/19 13:27,"369 9th St, Dallas, TX 75001" -177236,Flatscreen TV,1,300,04/25/19 18:52,"388 2nd St, Los Angeles, CA 90001" -177237,AA Batteries (4-pack),1,3.84,04/06/19 16:36,"108 Center St, New York City, NY 10001" -177238,AA Batteries (4-pack),1,3.84,04/25/19 19:04,"966 Lake St, San Francisco, CA 94016" -177239,iPhone,1,700,04/13/19 12:17,"336 Maple St, San Francisco, CA 94016" -177240,27in FHD Monitor,1,149.99,04/13/19 18:30,"226 Washington St, Los Angeles, CA 90001" -177241,Lightning Charging Cable,1,14.95,04/03/19 17:58,"999 North St, Dallas, TX 75001" -177242,USB-C Charging Cable,1,11.95,04/12/19 16:12,"354 Center St, New York City, NY 10001" -177243,AAA Batteries (4-pack),1,2.99,04/29/19 20:37,"287 North St, Los Angeles, CA 90001" -177244,USB-C Charging Cable,1,11.95,04/03/19 13:31,"993 12th St, Los Angeles, CA 90001" -177245,Lightning Charging Cable,1,14.95,04/12/19 16:27,"472 Sunset St, San Francisco, CA 94016" -177246,AA Batteries (4-pack),1,3.84,04/19/19 18:06,"768 Jefferson St, Seattle, WA 98101" -177247,20in Monitor,1,109.99,04/05/19 14:24,"613 7th St, Los Angeles, CA 90001" -177248,Lightning Charging Cable,1,14.95,04/05/19 15:29,"597 Maple St, San Francisco, CA 94016" -177249,AA Batteries (4-pack),1,3.84,04/14/19 20:05,"61 Adams St, Atlanta, GA 30301" -177250,Apple Airpods Headphones,1,150,04/29/19 18:50,"586 Jackson St, Dallas, TX 75001" -177251,Lightning Charging Cable,1,14.95,04/18/19 10:42,"580 Lincoln St, Austin, TX 73301" -177252,Lightning Charging Cable,1,14.95,04/14/19 16:36,"904 Chestnut St, San Francisco, CA 94016" -177253,Apple Airpods Headphones,1,150,04/05/19 13:57,"456 Cherry St, San Francisco, CA 94016" -177254,AA Batteries (4-pack),1,3.84,04/21/19 02:12,"689 Cherry St, Boston, MA 02215" -177254,AAA Batteries (4-pack),2,2.99,04/21/19 02:12,"689 Cherry St, Boston, MA 02215" -177255,USB-C Charging Cable,2,11.95,04/08/19 09:19,"695 Hill St, Boston, MA 02215" -,,,,, -177256,Bose SoundSport Headphones,1,99.99,04/28/19 21:34,"789 11th St, San Francisco, CA 94016" -177256,AA Batteries (4-pack),1,3.84,04/28/19 21:34,"789 11th St, San Francisco, CA 94016" -177257,AA Batteries (4-pack),1,3.84,04/27/19 21:55,"317 Hill St, Portland, OR 97035" -177258,Lightning Charging Cable,1,14.95,04/02/19 16:13,"272 10th St, Dallas, TX 75001" -177259,34in Ultrawide Monitor,1,379.99,04/08/19 13:36,"176 Hill St, New York City, NY 10001" -177260,Bose SoundSport Headphones,1,99.99,04/10/19 13:39,"288 Jackson St, Atlanta, GA 30301" -177261,34in Ultrawide Monitor,1,379.99,04/16/19 23:25,"804 8th St, Boston, MA 02215" -177262,USB-C Charging Cable,1,11.95,04/03/19 13:57,"804 Johnson St, Portland, OR 97035" -177263,27in 4K Gaming Monitor,1,389.99,04/29/19 11:18,"70 Johnson St, San Francisco, CA 94016" -177264,AAA Batteries (4-pack),2,2.99,04/05/19 21:35,"236 9th St, Austin, TX 73301" -177265,Bose SoundSport Headphones,1,99.99,04/28/19 15:45,"164 Hickory St, San Francisco, CA 94016" -177266,AA Batteries (4-pack),1,3.84,04/21/19 19:20,"251 Highland St, New York City, NY 10001" -177267,Bose SoundSport Headphones,1,99.99,04/23/19 11:00,"410 Hill St, Atlanta, GA 30301" -177268,AAA Batteries (4-pack),2,2.99,04/01/19 21:21,"985 Main St, New York City, NY 10001" -177269,AAA Batteries (4-pack),1,2.99,04/16/19 19:22,"460 2nd St, Dallas, TX 75001" -177270,Google Phone,1,600,04/22/19 20:34,"518 North St, Los Angeles, CA 90001" -177271,AA Batteries (4-pack),1,3.84,04/21/19 08:53,"832 Adams St, New York City, NY 10001" -177272,Lightning Charging Cable,2,14.95,04/23/19 15:28,"195 South St, Boston, MA 02215" -177273,USB-C Charging Cable,1,11.95,04/17/19 08:29,"351 4th St, San Francisco, CA 94016" -177274,AA Batteries (4-pack),1,3.84,04/23/19 11:59,"559 Washington St, Seattle, WA 98101" -177275,AA Batteries (4-pack),2,3.84,04/22/19 18:26,"542 14th St, Boston, MA 02215" -177276,AA Batteries (4-pack),1,3.84,04/29/19 20:06,"519 13th St, New York City, NY 10001" -177277,Wired Headphones,1,11.99,04/02/19 17:26,"467 Elm St, San Francisco, CA 94016" -177278,AA Batteries (4-pack),1,3.84,04/19/19 10:41,"936 Maple St, Boston, MA 02215" -177279,27in 4K Gaming Monitor,1,389.99,04/22/19 22:27,"235 Church St, Dallas, TX 75001" -177280,Lightning Charging Cable,1,14.95,04/16/19 20:02,"23 Madison St, San Francisco, CA 94016" -177281,27in FHD Monitor,1,149.99,04/29/19 11:51,"524 Hickory St, Atlanta, GA 30301" -177282,Wired Headphones,1,11.99,04/08/19 23:44,"710 7th St, Los Angeles, CA 90001" -177283,USB-C Charging Cable,1,11.95,04/04/19 23:36,"874 Maple St, San Francisco, CA 94016" -177284,Bose SoundSport Headphones,1,99.99,04/18/19 12:15,"593 Church St, Boston, MA 02215" -177285,20in Monitor,1,109.99,04/02/19 21:26,"947 Hickory St, San Francisco, CA 94016" -177286,AAA Batteries (4-pack),1,2.99,04/05/19 11:10,"545 5th St, New York City, NY 10001" -177287,AA Batteries (4-pack),2,3.84,04/18/19 13:17,"463 Hill St, San Francisco, CA 94016" -177288,USB-C Charging Cable,1,11.95,04/03/19 17:47,"102 Center St, San Francisco, CA 94016" -177289,Lightning Charging Cable,1,14.95,04/04/19 09:18,"441 Lakeview St, Dallas, TX 75001" -177290,27in FHD Monitor,1,149.99,04/05/19 22:23,"37 Sunset St, San Francisco, CA 94016" -177291,Apple Airpods Headphones,1,150,04/24/19 11:19,"172 Lincoln St, New York City, NY 10001" -177292,Wired Headphones,1,11.99,04/11/19 19:10,"76 Jefferson St, Los Angeles, CA 90001" -177293,AA Batteries (4-pack),3,3.84,04/20/19 12:04,"223 2nd St, New York City, NY 10001" -177294,Lightning Charging Cable,1,14.95,04/21/19 14:31,"573 Madison St, Austin, TX 73301" -177295,AAA Batteries (4-pack),2,2.99,04/25/19 10:47,"736 1st St, Boston, MA 02215" -177296,Lightning Charging Cable,1,14.95,04/05/19 19:16,"846 Meadow St, New York City, NY 10001" -177297,Apple Airpods Headphones,1,150,04/21/19 14:25,"4 Cherry St, Boston, MA 02215" -177298,34in Ultrawide Monitor,1,379.99,04/13/19 14:44,"173 1st St, New York City, NY 10001" -177299,AAA Batteries (4-pack),1,2.99,04/30/19 21:04,"555 2nd St, Portland, ME 04101" -177300,20in Monitor,1,109.99,04/03/19 21:33,"276 Lincoln St, Los Angeles, CA 90001" -177300,Apple Airpods Headphones,1,150,04/03/19 21:33,"276 Lincoln St, Los Angeles, CA 90001" -177301,AA Batteries (4-pack),1,3.84,04/04/19 16:11,"102 Chestnut St, Los Angeles, CA 90001" -177302,27in FHD Monitor,1,149.99,04/30/19 21:10,"560 Sunset St, Los Angeles, CA 90001" -177303,Wired Headphones,1,11.99,04/01/19 23:19,"890 Jefferson St, Boston, MA 02215" -177304,Lightning Charging Cable,1,14.95,04/27/19 18:20,"181 Dogwood St, Los Angeles, CA 90001" -177305,20in Monitor,1,109.99,04/19/19 11:25,"164 Pine St, Seattle, WA 98101" -177306,20in Monitor,1,109.99,04/02/19 18:03,"171 Chestnut St, Portland, ME 04101" -177307,Wired Headphones,1,11.99,04/24/19 13:18,"380 Cedar St, Austin, TX 73301" -177308,AA Batteries (4-pack),2,3.84,04/05/19 19:30,"944 Washington St, Boston, MA 02215" -177309,27in 4K Gaming Monitor,1,389.99,04/03/19 10:31,"980 Hickory St, New York City, NY 10001" -177310,iPhone,1,700,04/29/19 20:03,"68 Chestnut St, Los Angeles, CA 90001" -177311,Lightning Charging Cable,1,14.95,04/25/19 16:03,"782 South St, Dallas, TX 75001" -177312,AA Batteries (4-pack),3,3.84,04/22/19 16:58,"455 North St, San Francisco, CA 94016" -177313,Macbook Pro Laptop,1,1700,04/11/19 17:19,"317 Madison St, San Francisco, CA 94016" -177314,Apple Airpods Headphones,1,150,04/18/19 07:29,"462 Lincoln St, Seattle, WA 98101" -177315,27in FHD Monitor,1,149.99,04/04/19 19:30,"121 Walnut St, Seattle, WA 98101" -177316,iPhone,1,700,04/01/19 10:25,"454 4th St, Dallas, TX 75001" -177317,AAA Batteries (4-pack),1,2.99,04/18/19 11:16,"49 Cedar St, San Francisco, CA 94016" -177318,iPhone,1,700,04/10/19 20:44,"484 10th St, New York City, NY 10001" -177319,USB-C Charging Cable,1,11.95,04/09/19 18:21,"650 14th St, Los Angeles, CA 90001" -177320,Flatscreen TV,1,300,04/03/19 12:55,"162 North St, San Francisco, CA 94016" -177321,27in 4K Gaming Monitor,1,389.99,04/19/19 22:02,"115 Wilson St, Los Angeles, CA 90001" -177322,USB-C Charging Cable,1,11.95,04/28/19 12:41,"652 Lakeview St, Seattle, WA 98101" -177323,Lightning Charging Cable,1,14.95,04/12/19 20:15,"584 Jackson St, Seattle, WA 98101" -177324,Wired Headphones,1,11.99,04/02/19 18:24,"809 11th St, Atlanta, GA 30301" -177325,Apple Airpods Headphones,1,150,04/13/19 20:54,"844 12th St, San Francisco, CA 94016" -177326,Bose SoundSport Headphones,1,99.99,04/28/19 20:17,"847 Cherry St, Los Angeles, CA 90001" -177327,Lightning Charging Cable,1,14.95,04/21/19 20:41,"837 Adams St, Boston, MA 02215" -177328,ThinkPad Laptop,1,999.99,04/17/19 22:24,"857 Ridge St, Boston, MA 02215" -177329,iPhone,1,700,04/29/19 08:12,"653 Walnut St, Seattle, WA 98101" -177330,USB-C Charging Cable,1,11.95,04/30/19 10:55,"698 12th St, San Francisco, CA 94016" -177331,USB-C Charging Cable,1,11.95,04/10/19 19:55,"1 Ridge St, Boston, MA 02215" -177332,Apple Airpods Headphones,1,150,04/08/19 12:24,"859 5th St, Seattle, WA 98101" -177333,Apple Airpods Headphones,1,150,04/03/19 07:28,"689 Madison St, Boston, MA 02215" -177334,Wired Headphones,1,11.99,04/19/19 22:37,"522 12th St, Atlanta, GA 30301" -177335,Wired Headphones,1,11.99,04/14/19 21:59,"95 South St, New York City, NY 10001" -177336,Apple Airpods Headphones,1,150,04/17/19 12:50,"159 7th St, Seattle, WA 98101" -177337,AAA Batteries (4-pack),1,2.99,04/15/19 18:17,"975 Sunset St, Seattle, WA 98101" -177338,Wired Headphones,1,11.99,04/21/19 15:42,"130 4th St, Los Angeles, CA 90001" -177339,Wired Headphones,1,11.99,04/05/19 11:19,"64 Maple St, Portland, OR 97035" -177340,27in 4K Gaming Monitor,1,389.99,04/08/19 22:06,"811 Spruce St, Los Angeles, CA 90001" -177341,AA Batteries (4-pack),2,3.84,04/13/19 11:27,"822 2nd St, New York City, NY 10001" -177342,Bose SoundSport Headphones,1,99.99,04/14/19 20:59,"451 Pine St, San Francisco, CA 94016" -177343,USB-C Charging Cable,1,11.95,04/07/19 10:47,"221 Walnut St, San Francisco, CA 94016" -177344,Google Phone,1,600,04/20/19 19:54,"286 Jackson St, Los Angeles, CA 90001" -177345,Wired Headphones,1,11.99,04/12/19 13:53,"625 2nd St, New York City, NY 10001" -177346,27in 4K Gaming Monitor,1,389.99,04/13/19 00:26,"593 Spruce St, Los Angeles, CA 90001" -177347,Bose SoundSport Headphones,1,99.99,04/30/19 08:00,"888 Pine St, Atlanta, GA 30301" -177348,Macbook Pro Laptop,1,1700,04/04/19 18:11,"972 9th St, Seattle, WA 98101" -177349,Lightning Charging Cable,1,14.95,04/17/19 08:26,"163 Forest St, Boston, MA 02215" -177350,Google Phone,1,600,04/21/19 13:55,"833 Wilson St, Portland, OR 97035" -177351,iPhone,1,700,04/13/19 07:52,"844 6th St, Dallas, TX 75001" -177352,34in Ultrawide Monitor,1,379.99,04/30/19 18:46,"464 Walnut St, Los Angeles, CA 90001" -177353,Macbook Pro Laptop,1,1700,04/04/19 10:27,"654 South St, Portland, OR 97035" -177354,Google Phone,1,600,04/11/19 22:38,"432 Chestnut St, New York City, NY 10001" -177355,34in Ultrawide Monitor,1,379.99,04/07/19 13:52,"233 Jefferson St, Seattle, WA 98101" -177356,27in FHD Monitor,1,149.99,04/03/19 20:19,"69 10th St, New York City, NY 10001" -177357,Wired Headphones,1,11.99,04/08/19 20:26,"139 Pine St, Los Angeles, CA 90001" -177358,AAA Batteries (4-pack),1,2.99,04/04/19 01:48,"159 Cherry St, Boston, MA 02215" -177359,Macbook Pro Laptop,1,1700,04/18/19 14:47,"143 Willow St, San Francisco, CA 94016" -177360,AAA Batteries (4-pack),2,2.99,04/29/19 19:12,"636 River St, New York City, NY 10001" -177361,AA Batteries (4-pack),2,3.84,04/26/19 11:23,"440 5th St, Boston, MA 02215" -177362,Flatscreen TV,1,300,04/13/19 15:30,"602 Sunset St, Portland, OR 97035" -177363,Bose SoundSport Headphones,1,99.99,04/04/19 13:55,"758 Spruce St, Los Angeles, CA 90001" -177364,ThinkPad Laptop,1,999.99,04/29/19 15:59,"938 Forest St, Los Angeles, CA 90001" -177365,AAA Batteries (4-pack),1,2.99,04/06/19 15:22,"18 9th St, San Francisco, CA 94016" -177366,Apple Airpods Headphones,1,150,04/27/19 14:47,"81 13th St, New York City, NY 10001" -177367,Google Phone,1,600,04/05/19 07:52,"141 Chestnut St, San Francisco, CA 94016" -177367,USB-C Charging Cable,1,11.95,04/05/19 07:52,"141 Chestnut St, San Francisco, CA 94016" -177367,Bose SoundSport Headphones,1,99.99,04/05/19 07:52,"141 Chestnut St, San Francisco, CA 94016" -177368,USB-C Charging Cable,1,11.95,04/03/19 14:36,"209 2nd St, Seattle, WA 98101" -177369,27in FHD Monitor,1,149.99,04/12/19 16:54,"329 North St, Boston, MA 02215" -177370,Apple Airpods Headphones,1,150,04/10/19 18:32,"732 Forest St, New York City, NY 10001" -177371,Bose SoundSport Headphones,1,99.99,04/19/19 20:15,"715 Church St, Los Angeles, CA 90001" -177372,27in 4K Gaming Monitor,1,389.99,04/27/19 15:23,"61 Spruce St, San Francisco, CA 94016" -177373,27in FHD Monitor,1,149.99,04/22/19 12:14,"564 Lake St, San Francisco, CA 94016" -177374,Lightning Charging Cable,1,14.95,04/25/19 08:01,"829 Dogwood St, San Francisco, CA 94016" -177375,Wired Headphones,1,11.99,04/02/19 19:11,"513 West St, Boston, MA 02215" -177376,AAA Batteries (4-pack),1,2.99,04/04/19 00:31,"670 7th St, San Francisco, CA 94016" -177377,Wired Headphones,1,11.99,04/08/19 11:46,"369 Hickory St, Dallas, TX 75001" -177378,Bose SoundSport Headphones,1,99.99,04/04/19 22:15,"504 Lake St, San Francisco, CA 94016" -177379,Google Phone,1,600,04/19/19 14:24,"673 South St, Boston, MA 02215" -177380,Lightning Charging Cable,1,14.95,04/03/19 20:56,"512 Center St, Atlanta, GA 30301" -177381,Bose SoundSport Headphones,1,99.99,04/25/19 08:56,"887 Hickory St, Dallas, TX 75001" -177382,Apple Airpods Headphones,1,150,04/12/19 13:11,"843 13th St, San Francisco, CA 94016" -177383,LG Dryer,1,600.0,04/17/19 18:52,"759 Spruce St, Austin, TX 73301" -177384,Flatscreen TV,1,300,04/24/19 15:27,"425 Jackson St, New York City, NY 10001" -177385,Macbook Pro Laptop,1,1700,04/11/19 12:08,"27 Adams St, San Francisco, CA 94016" -177386,34in Ultrawide Monitor,1,379.99,04/17/19 15:44,"154 South St, Atlanta, GA 30301" -177387,AA Batteries (4-pack),1,3.84,04/03/19 22:10,"218 10th St, Austin, TX 73301" -177388,Lightning Charging Cable,1,14.95,04/24/19 12:50,"651 8th St, Boston, MA 02215" -177389,Lightning Charging Cable,2,14.95,04/24/19 12:07,"672 West St, Seattle, WA 98101" -177390,Wired Headphones,1,11.99,04/28/19 17:14,"494 Hickory St, Los Angeles, CA 90001" -177391,AA Batteries (4-pack),1,3.84,04/08/19 11:47,"477 Jackson St, San Francisco, CA 94016" -177392,USB-C Charging Cable,1,11.95,04/23/19 12:45,"139 5th St, Atlanta, GA 30301" -177393,27in FHD Monitor,1,149.99,04/18/19 11:43,"903 Center St, Dallas, TX 75001" -177394,Apple Airpods Headphones,1,150,04/22/19 12:10,"144 Cherry St, Seattle, WA 98101" -177395,34in Ultrawide Monitor,1,379.99,04/03/19 00:08,"22 Main St, San Francisco, CA 94016" -177396,Wired Headphones,1,11.99,04/17/19 14:29,"217 Hill St, Boston, MA 02215" -177397,20in Monitor,1,109.99,04/27/19 18:20,"438 Park St, Austin, TX 73301" -177398,27in FHD Monitor,1,149.99,04/13/19 21:54,"640 8th St, Los Angeles, CA 90001" -177398,AAA Batteries (4-pack),1,2.99,04/13/19 21:54,"640 8th St, Los Angeles, CA 90001" -177399,AAA Batteries (4-pack),1,2.99,04/30/19 01:32,"739 North St, San Francisco, CA 94016" -177400,USB-C Charging Cable,2,11.95,04/24/19 06:44,"964 Ridge St, Portland, ME 04101" -177401,Flatscreen TV,1,300,04/24/19 10:16,"393 Hickory St, Los Angeles, CA 90001" -177402,AAA Batteries (4-pack),2,2.99,04/09/19 21:06,"447 10th St, New York City, NY 10001" -177403,Bose SoundSport Headphones,1,99.99,04/18/19 07:26,"717 6th St, New York City, NY 10001" -177404,Bose SoundSport Headphones,1,99.99,04/14/19 19:03,"890 Dogwood St, Los Angeles, CA 90001" -177405,Lightning Charging Cable,1,14.95,04/09/19 16:38,"564 Pine St, San Francisco, CA 94016" -177406,AA Batteries (4-pack),2,3.84,04/05/19 16:46,"547 Sunset St, San Francisco, CA 94016" -177407,USB-C Charging Cable,1,11.95,04/10/19 21:40,"339 Spruce St, Boston, MA 02215" -177408,Bose SoundSport Headphones,1,99.99,04/21/19 19:16,"53 2nd St, San Francisco, CA 94016" -177409,USB-C Charging Cable,1,11.95,04/21/19 19:57,"577 South St, Portland, OR 97035" -177410,Lightning Charging Cable,1,14.95,04/05/19 07:45,"257 Wilson St, Atlanta, GA 30301" -177411,Wired Headphones,1,11.99,04/05/19 19:46,"94 Maple St, Boston, MA 02215" -177412,Apple Airpods Headphones,1,150,04/15/19 19:19,"557 Pine St, Boston, MA 02215" -177413,Wired Headphones,1,11.99,04/07/19 21:34,"892 12th St, Seattle, WA 98101" -177414,AAA Batteries (4-pack),1,2.99,04/27/19 18:18,"151 Lakeview St, Boston, MA 02215" -177415,34in Ultrawide Monitor,1,379.99,04/07/19 01:27,"505 10th St, Portland, ME 04101" -177416,AAA Batteries (4-pack),1,2.99,04/15/19 12:58,"75 Spruce St, Los Angeles, CA 90001" -177417,34in Ultrawide Monitor,1,379.99,04/10/19 07:10,"13 Cherry St, San Francisco, CA 94016" -177418,Wired Headphones,1,11.99,04/18/19 21:22,"440 Cherry St, Dallas, TX 75001" -177419,Lightning Charging Cable,1,14.95,04/23/19 08:49,"604 South St, Boston, MA 02215" -177420,Lightning Charging Cable,1,14.95,04/14/19 13:45,"593 Chestnut St, San Francisco, CA 94016" -177421,AAA Batteries (4-pack),1,2.99,04/06/19 21:55,"818 9th St, San Francisco, CA 94016" -177422,Macbook Pro Laptop,1,1700,04/05/19 19:52,"368 Jackson St, San Francisco, CA 94016" -177423,Wired Headphones,1,11.99,04/23/19 10:14,"897 7th St, Dallas, TX 75001" -177424,USB-C Charging Cable,1,11.95,04/21/19 12:13,"915 Walnut St, New York City, NY 10001" -177425,AAA Batteries (4-pack),1,2.99,04/26/19 10:50,"234 6th St, San Francisco, CA 94016" -177426,Wired Headphones,1,11.99,04/14/19 20:07,"988 West St, New York City, NY 10001" -177427,Bose SoundSport Headphones,1,99.99,04/10/19 13:48,"216 Washington St, Atlanta, GA 30301" -177428,Vareebadd Phone,1,400,04/15/19 08:19,"481 Jefferson St, Boston, MA 02215" -177428,USB-C Charging Cable,1,11.95,04/15/19 08:19,"481 Jefferson St, Boston, MA 02215" -177429,Wired Headphones,1,11.99,04/05/19 18:07,"685 Maple St, Los Angeles, CA 90001" -177430,iPhone,1,700,04/08/19 12:05,"821 Sunset St, Seattle, WA 98101" -177431,AA Batteries (4-pack),2,3.84,04/28/19 20:43,"942 Jackson St, Austin, TX 73301" -177432,Apple Airpods Headphones,1,150,04/08/19 10:25,"686 North St, San Francisco, CA 94016" -177433,27in FHD Monitor,1,149.99,04/29/19 10:22,"377 Park St, Boston, MA 02215" -177434,USB-C Charging Cable,1,11.95,04/14/19 19:47,"456 13th St, New York City, NY 10001" -177435,USB-C Charging Cable,1,11.95,04/03/19 18:51,"290 Johnson St, Dallas, TX 75001" -177436,Lightning Charging Cable,1,14.95,04/11/19 20:37,"150 Hickory St, New York City, NY 10001" -177437,Wired Headphones,1,11.99,04/18/19 15:54,"792 Cedar St, New York City, NY 10001" -177438,Wired Headphones,1,11.99,04/22/19 08:59,"430 Ridge St, New York City, NY 10001" -177439,Lightning Charging Cable,1,14.95,04/14/19 17:22,"735 Ridge St, San Francisco, CA 94016" -177440,Macbook Pro Laptop,1,1700,04/20/19 14:39,"156 Hickory St, Los Angeles, CA 90001" -177441,iPhone,1,700,04/16/19 14:38,"559 Elm St, Dallas, TX 75001" -177441,Lightning Charging Cable,1,14.95,04/16/19 14:38,"559 Elm St, Dallas, TX 75001" -177442,AAA Batteries (4-pack),1,2.99,04/30/19 06:59,"380 Church St, New York City, NY 10001" -177443,Apple Airpods Headphones,1,150,04/21/19 16:42,"23 9th St, Dallas, TX 75001" -177443,27in 4K Gaming Monitor,1,389.99,04/21/19 16:42,"23 9th St, Dallas, TX 75001" -177444,34in Ultrawide Monitor,1,379.99,04/19/19 10:59,"670 Elm St, Atlanta, GA 30301" -177445,Lightning Charging Cable,1,14.95,04/21/19 02:24,"614 Meadow St, Austin, TX 73301" -177446,Lightning Charging Cable,1,14.95,04/10/19 19:23,"399 10th St, Austin, TX 73301" -177447,AA Batteries (4-pack),3,3.84,04/29/19 15:54,"882 River St, Boston, MA 02215" -177448,Google Phone,1,600,04/24/19 19:38,"915 Forest St, Los Angeles, CA 90001" -177448,USB-C Charging Cable,1,11.95,04/24/19 19:38,"915 Forest St, Los Angeles, CA 90001" -177449,Macbook Pro Laptop,1,1700,04/29/19 14:07,"272 Lakeview St, Portland, OR 97035" -177450,ThinkPad Laptop,1,999.99,04/17/19 19:32,"525 Meadow St, New York City, NY 10001" -177451,USB-C Charging Cable,1,11.95,04/18/19 00:52,"947 Hickory St, San Francisco, CA 94016" -177452,Wired Headphones,1,11.99,04/03/19 13:22,"987 Forest St, San Francisco, CA 94016" -177453,iPhone,1,700,04/16/19 21:05,"865 Sunset St, Portland, OR 97035" -177454,Lightning Charging Cable,1,14.95,04/01/19 23:13,"136 14th St, San Francisco, CA 94016" -177455,Bose SoundSport Headphones,1,99.99,04/05/19 10:21,"864 North St, Austin, TX 73301" -177456,Flatscreen TV,1,300,04/24/19 23:54,"729 10th St, Los Angeles, CA 90001" -177457,27in 4K Gaming Monitor,1,389.99,04/14/19 20:45,"753 North St, New York City, NY 10001" -177458,Macbook Pro Laptop,1,1700,04/29/19 08:17,"807 Wilson St, Dallas, TX 75001" -177459,AA Batteries (4-pack),1,3.84,04/03/19 19:31,"283 10th St, San Francisco, CA 94016" -177460,USB-C Charging Cable,2,11.95,04/20/19 20:38,"890 2nd St, San Francisco, CA 94016" -177461,27in 4K Gaming Monitor,1,389.99,04/26/19 23:36,"396 7th St, Boston, MA 02215" -177462,34in Ultrawide Monitor,1,379.99,04/10/19 16:25,"792 Meadow St, Seattle, WA 98101" -177463,USB-C Charging Cable,1,11.95,04/30/19 16:02,"321 Pine St, Los Angeles, CA 90001" -177464,Bose SoundSport Headphones,1,99.99,04/21/19 10:05,"777 7th St, San Francisco, CA 94016" -177465,Macbook Pro Laptop,1,1700,04/13/19 09:13,"655 13th St, Boston, MA 02215" -177466,Apple Airpods Headphones,1,150,04/21/19 17:09,"104 Elm St, San Francisco, CA 94016" -177467,Lightning Charging Cable,1,14.95,04/04/19 11:09,"810 Hill St, Atlanta, GA 30301" -177468,Bose SoundSport Headphones,1,99.99,04/12/19 10:12,"226 Park St, Los Angeles, CA 90001" -177469,34in Ultrawide Monitor,1,379.99,04/22/19 10:04,"293 10th St, San Francisco, CA 94016" -177470,Apple Airpods Headphones,1,150,04/30/19 12:16,"168 7th St, New York City, NY 10001" -177471,Lightning Charging Cable,1,14.95,04/19/19 18:39,"410 Forest St, San Francisco, CA 94016" -177472,Bose SoundSport Headphones,1,99.99,04/23/19 18:14,"399 West St, San Francisco, CA 94016" -177473,Macbook Pro Laptop,1,1700,04/02/19 18:24,"844 12th St, New York City, NY 10001" -177474,Wired Headphones,1,11.99,04/30/19 18:37,"768 North St, New York City, NY 10001" -177475,AAA Batteries (4-pack),3,2.99,04/30/19 08:40,"187 Spruce St, San Francisco, CA 94016" -177476,Bose SoundSport Headphones,1,99.99,04/03/19 16:01,"354 8th St, San Francisco, CA 94016" -177477,AAA Batteries (4-pack),1,2.99,04/03/19 19:49,"339 5th St, New York City, NY 10001" -177478,USB-C Charging Cable,1,11.95,04/28/19 22:18,"570 Elm St, Atlanta, GA 30301" -177479,ThinkPad Laptop,1,999.99,04/27/19 10:39,"941 Jefferson St, Boston, MA 02215" -177480,34in Ultrawide Monitor,1,379.99,04/24/19 14:40,"560 Lake St, Austin, TX 73301" -177481,iPhone,1,700,04/13/19 16:54,"135 Forest St, Dallas, TX 75001" -177482,Bose SoundSport Headphones,1,99.99,04/15/19 19:10,"694 12th St, Portland, OR 97035" -177483,27in FHD Monitor,1,149.99,04/28/19 22:55,"904 Forest St, Portland, OR 97035" -177484,USB-C Charging Cable,1,11.95,04/24/19 19:47,"574 Willow St, Portland, ME 04101" -177485,Bose SoundSport Headphones,1,99.99,04/06/19 20:43,"184 4th St, New York City, NY 10001" -177486,ThinkPad Laptop,1,999.99,04/21/19 16:24,"809 Highland St, Seattle, WA 98101" -177486,Google Phone,1,600,04/21/19 16:24,"809 Highland St, Seattle, WA 98101" -177487,Bose SoundSport Headphones,1,99.99,04/23/19 10:04,"770 Main St, Dallas, TX 75001" -177488,27in FHD Monitor,1,149.99,04/03/19 20:40,"181 Meadow St, Boston, MA 02215" -177489,Bose SoundSport Headphones,1,99.99,04/10/19 20:18,"364 Ridge St, San Francisco, CA 94016" -177490,AA Batteries (4-pack),3,3.84,04/08/19 16:31,"574 Park St, San Francisco, CA 94016" -177491,Apple Airpods Headphones,1,150,04/15/19 20:42,"459 Walnut St, San Francisco, CA 94016" -177492,ThinkPad Laptop,1,999.99,04/15/19 09:14,"60 Ridge St, San Francisco, CA 94016" -177493,Apple Airpods Headphones,1,150,04/27/19 20:40,"940 Church St, San Francisco, CA 94016" -177494,AA Batteries (4-pack),1,3.84,04/22/19 05:37,"480 North St, Seattle, WA 98101" -177495,Flatscreen TV,1,300,04/18/19 23:01,"698 Cherry St, San Francisco, CA 94016" -177496,iPhone,1,700,04/07/19 19:54,"241 Walnut St, Los Angeles, CA 90001" -177497,ThinkPad Laptop,1,999.99,04/16/19 10:30,"135 6th St, San Francisco, CA 94016" -177498,Lightning Charging Cable,1,14.95,04/22/19 15:42,"624 8th St, Austin, TX 73301" -177499,Bose SoundSport Headphones,1,99.99,04/27/19 13:18,"92 Willow St, Los Angeles, CA 90001" -177500,Bose SoundSport Headphones,1,99.99,04/24/19 17:30,"841 South St, Boston, MA 02215" -177501,Wired Headphones,1,11.99,04/10/19 03:43,"888 14th St, Seattle, WA 98101" -177502,AAA Batteries (4-pack),2,2.99,04/27/19 18:42,"311 Meadow St, Dallas, TX 75001" -177503,Wired Headphones,1,11.99,04/20/19 20:07,"662 Cherry St, San Francisco, CA 94016" -177504,Google Phone,1,600,04/10/19 14:39,"19 Cedar St, Boston, MA 02215" -177504,USB-C Charging Cable,1,11.95,04/10/19 14:39,"19 Cedar St, Boston, MA 02215" -177505,ThinkPad Laptop,1,999.99,04/30/19 16:04,"823 Johnson St, Seattle, WA 98101" -177506,iPhone,1,700,04/02/19 07:46,"656 Pine St, Los Angeles, CA 90001" -177506,Apple Airpods Headphones,1,150,04/02/19 07:46,"656 Pine St, Los Angeles, CA 90001" -177507,AAA Batteries (4-pack),1,2.99,04/09/19 20:13,"825 2nd St, Portland, OR 97035" -177508,Bose SoundSport Headphones,1,99.99,04/07/19 06:45,"845 Lakeview St, San Francisco, CA 94016" -177509,AAA Batteries (4-pack),1,2.99,04/28/19 19:03,"616 9th St, New York City, NY 10001" -177510,Bose SoundSport Headphones,1,99.99,04/15/19 09:51,"182 Main St, San Francisco, CA 94016" -177511,iPhone,1,700,04/07/19 17:38,"719 North St, Los Angeles, CA 90001" -177511,Lightning Charging Cable,1,14.95,04/07/19 17:38,"719 North St, Los Angeles, CA 90001" -177512,Lightning Charging Cable,2,14.95,04/27/19 18:41,"250 7th St, San Francisco, CA 94016" -177513,Apple Airpods Headphones,1,150,04/01/19 11:00,"50 11th St, Dallas, TX 75001" -177514,Flatscreen TV,1,300,04/05/19 15:40,"625 Wilson St, Atlanta, GA 30301" -177515,AA Batteries (4-pack),1,3.84,04/30/19 13:52,"882 River St, Los Angeles, CA 90001" -177516,USB-C Charging Cable,1,11.95,04/01/19 13:35,"879 Madison St, Atlanta, GA 30301" -177517,USB-C Charging Cable,1,11.95,04/17/19 13:30,"191 South St, San Francisco, CA 94016" -177518,Apple Airpods Headphones,1,150,04/05/19 12:33,"136 Elm St, San Francisco, CA 94016" -177519,27in 4K Gaming Monitor,1,389.99,04/09/19 22:49,"979 Pine St, New York City, NY 10001" -177520,34in Ultrawide Monitor,1,379.99,04/11/19 22:43,"652 Park St, Atlanta, GA 30301" -177521,USB-C Charging Cable,1,11.95,04/14/19 14:02,"921 6th St, Portland, OR 97035" -177522,iPhone,1,700,04/03/19 22:41,"139 Hill St, Portland, OR 97035" -177523,27in 4K Gaming Monitor,1,389.99,04/22/19 01:04,"6 8th St, San Francisco, CA 94016" -177524,Wired Headphones,1,11.99,04/15/19 17:14,"561 Park St, San Francisco, CA 94016" -177525,Wired Headphones,2,11.99,04/10/19 09:35,"838 4th St, San Francisco, CA 94016" -177526,AAA Batteries (4-pack),1,2.99,04/10/19 16:25,"47 Lincoln St, Austin, TX 73301" -177527,Wired Headphones,2,11.99,04/26/19 08:51,"474 Highland St, Portland, OR 97035" -177528,Vareebadd Phone,1,400,04/02/19 13:42,"251 Maple St, San Francisco, CA 94016" -177529,Lightning Charging Cable,1,14.95,04/12/19 16:28,"766 Lakeview St, San Francisco, CA 94016" -177530,Wired Headphones,1,11.99,04/02/19 14:37,"792 Dogwood St, Atlanta, GA 30301" -177531,USB-C Charging Cable,1,11.95,04/08/19 17:54,"807 7th St, Dallas, TX 75001" -177532,AA Batteries (4-pack),2,3.84,04/12/19 11:56,"959 Lakeview St, Dallas, TX 75001" -177533,Bose SoundSport Headphones,1,99.99,04/25/19 02:01,"183 11th St, Portland, OR 97035" -177534,Macbook Pro Laptop,1,1700,04/26/19 16:49,"504 Hill St, Los Angeles, CA 90001" -177535,Macbook Pro Laptop,1,1700,04/14/19 09:26,"305 Center St, Boston, MA 02215" -177536,27in 4K Gaming Monitor,1,389.99,04/26/19 16:20,"796 2nd St, San Francisco, CA 94016" -177537,Bose SoundSport Headphones,1,99.99,04/30/19 06:55,"545 Elm St, Dallas, TX 75001" -177538,AAA Batteries (4-pack),1,2.99,04/11/19 13:26,"345 2nd St, Boston, MA 02215" -177539,Bose SoundSport Headphones,1,99.99,04/26/19 19:56,"348 Cedar St, New York City, NY 10001" -177540,Google Phone,1,600,04/02/19 18:23,"778 Washington St, Los Angeles, CA 90001" -177541,Apple Airpods Headphones,1,150,04/23/19 20:21,"170 Dogwood St, Boston, MA 02215" -177542,AAA Batteries (4-pack),1,2.99,04/09/19 13:44,"239 River St, Portland, ME 04101" -177543,Macbook Pro Laptop,1,1700,04/14/19 16:45,"42 Maple St, San Francisco, CA 94016" -177544,27in 4K Gaming Monitor,1,389.99,04/14/19 09:04,"140 7th St, Los Angeles, CA 90001" -177545,Wired Headphones,1,11.99,04/16/19 16:36,"681 Cherry St, Dallas, TX 75001" -177546,USB-C Charging Cable,2,11.95,04/25/19 18:28,"632 Highland St, New York City, NY 10001" -177547,Lightning Charging Cable,1,14.95,04/17/19 18:46,"236 Jackson St, San Francisco, CA 94016" -177548,Apple Airpods Headphones,1,150,04/22/19 22:36,"206 Ridge St, San Francisco, CA 94016" -177549,USB-C Charging Cable,1,11.95,04/17/19 18:54,"406 9th St, New York City, NY 10001" -177550,Macbook Pro Laptop,1,1700,04/27/19 20:15,"506 Lincoln St, Dallas, TX 75001" -177551,27in FHD Monitor,1,149.99,05/01/19 00:13,"615 Lincoln St, San Francisco, CA 94016" -177552,Wired Headphones,1,11.99,04/05/19 15:01,"107 11th St, Austin, TX 73301" -177553,AAA Batteries (4-pack),1,2.99,04/01/19 08:00,"141 River St, San Francisco, CA 94016" -177554,27in FHD Monitor,1,149.99,04/01/19 10:21,"751 Forest St, Dallas, TX 75001" -177555,27in FHD Monitor,1,149.99,04/12/19 11:44,"677 Willow St, San Francisco, CA 94016" -177556,Lightning Charging Cable,1,14.95,04/08/19 11:58,"398 North St, San Francisco, CA 94016" -177557,AAA Batteries (4-pack),1,2.99,04/14/19 17:19,"717 4th St, Dallas, TX 75001" -177558,ThinkPad Laptop,1,999.99,04/10/19 22:50,"990 9th St, San Francisco, CA 94016" -177559,Flatscreen TV,1,300,04/24/19 11:46,"111 6th St, New York City, NY 10001" -177560,Bose SoundSport Headphones,1,99.99,04/19/19 09:06,"803 Lincoln St, New York City, NY 10001" -177561,AA Batteries (4-pack),1,3.84,04/28/19 20:41,"105 Hickory St, Los Angeles, CA 90001" -177562,Wired Headphones,1,11.99,04/23/19 17:07,"185 11th St, Los Angeles, CA 90001" -177563,AA Batteries (4-pack),1,3.84,04/24/19 18:52,"90 Johnson St, San Francisco, CA 94016" -177564,Apple Airpods Headphones,1,150,04/02/19 20:33,"796 Center St, New York City, NY 10001" -177565,AAA Batteries (4-pack),2,2.99,04/22/19 09:10,"736 8th St, Dallas, TX 75001" -177566,AAA Batteries (4-pack),1,2.99,04/27/19 08:37,"181 Cedar St, Atlanta, GA 30301" -177567,Apple Airpods Headphones,1,150,04/05/19 11:38,"765 Willow St, San Francisco, CA 94016" -177568,Wired Headphones,1,11.99,04/06/19 21:11,"147 Sunset St, Seattle, WA 98101" -177569,Wired Headphones,1,11.99,04/27/19 10:31,"994 7th St, Los Angeles, CA 90001" -177569,Google Phone,1,600,04/27/19 10:31,"994 7th St, Los Angeles, CA 90001" -177570,Wired Headphones,1,11.99,04/29/19 19:05,"959 Forest St, New York City, NY 10001" -177571,AA Batteries (4-pack),3,3.84,04/26/19 23:51,"760 Main St, Atlanta, GA 30301" -177572,Apple Airpods Headphones,1,150,04/21/19 01:29,"366 Willow St, Seattle, WA 98101" -177573,AA Batteries (4-pack),1,3.84,04/02/19 11:33,"518 Cherry St, San Francisco, CA 94016" -177574,Wired Headphones,2,11.99,04/18/19 09:25,"718 Adams St, Seattle, WA 98101" -177575,AAA Batteries (4-pack),2,2.99,04/30/19 06:32,"677 Cherry St, New York City, NY 10001" -177576,AA Batteries (4-pack),2,3.84,04/11/19 17:09,"221 Madison St, New York City, NY 10001" -177577,AAA Batteries (4-pack),1,2.99,04/15/19 17:00,"252 8th St, San Francisco, CA 94016" -177578,Google Phone,1,600,04/28/19 22:51,"752 Park St, Dallas, TX 75001" -177578,USB-C Charging Cable,1,11.95,04/28/19 22:51,"752 Park St, Dallas, TX 75001" -177579,Apple Airpods Headphones,1,150,04/28/19 21:33,"282 South St, Seattle, WA 98101" -177580,Apple Airpods Headphones,1,150,04/20/19 15:08,"817 Jefferson St, Los Angeles, CA 90001" -177581,Lightning Charging Cable,1,14.95,04/07/19 13:13,"587 Lake St, Boston, MA 02215" -177582,Bose SoundSport Headphones,1,99.99,04/16/19 17:19,"707 9th St, Dallas, TX 75001" -177582,Wired Headphones,1,11.99,04/16/19 17:19,"707 9th St, Dallas, TX 75001" -177583,Lightning Charging Cable,1,14.95,04/19/19 20:12,"663 Cherry St, San Francisco, CA 94016" -177584,AAA Batteries (4-pack),1,2.99,04/02/19 21:54,"891 Forest St, San Francisco, CA 94016" -177585,AA Batteries (4-pack),1,3.84,04/13/19 01:49,"196 11th St, San Francisco, CA 94016" -177586,Bose SoundSport Headphones,1,99.99,04/14/19 14:08,"624 Lake St, Los Angeles, CA 90001" -177587,USB-C Charging Cable,1,11.95,04/09/19 20:38,"455 9th St, Portland, ME 04101" -177588,27in FHD Monitor,1,149.99,04/25/19 16:08,"778 Ridge St, Los Angeles, CA 90001" -177589,34in Ultrawide Monitor,1,379.99,04/16/19 06:54,"836 Cherry St, Los Angeles, CA 90001" -177590,Wired Headphones,1,11.99,04/26/19 18:51,"589 1st St, Portland, OR 97035" -177591,ThinkPad Laptop,1,999.99,04/26/19 22:04,"121 9th St, San Francisco, CA 94016" -177592,iPhone,1,700,04/19/19 11:10,"448 Maple St, San Francisco, CA 94016" -177592,Lightning Charging Cable,2,14.95,04/19/19 11:10,"448 Maple St, San Francisco, CA 94016" -177593,27in 4K Gaming Monitor,1,389.99,04/23/19 20:26,"554 Lincoln St, Los Angeles, CA 90001" -177594,AA Batteries (4-pack),1,3.84,04/10/19 21:41,"459 11th St, Los Angeles, CA 90001" -177595,Bose SoundSport Headphones,1,99.99,04/21/19 20:50,"571 Lincoln St, Los Angeles, CA 90001" -177596,Wired Headphones,1,11.99,04/03/19 15:03,"906 10th St, Boston, MA 02215" -177597,34in Ultrawide Monitor,1,379.99,04/17/19 20:31,"577 Madison St, San Francisco, CA 94016" -177598,USB-C Charging Cable,1,11.95,04/25/19 01:11,"975 12th St, Portland, OR 97035" -177599,Flatscreen TV,1,300,04/05/19 23:01,"987 12th St, Los Angeles, CA 90001" -177600,Google Phone,1,600,04/24/19 23:05,"575 Walnut St, San Francisco, CA 94016" -177601,Bose SoundSport Headphones,1,99.99,04/18/19 22:46,"266 Spruce St, San Francisco, CA 94016" -177602,Apple Airpods Headphones,1,150,04/20/19 13:02,"313 Cherry St, Atlanta, GA 30301" -177603,Apple Airpods Headphones,1,150,04/29/19 18:15,"779 South St, Los Angeles, CA 90001" -177604,Bose SoundSport Headphones,1,99.99,04/22/19 19:13,"424 Ridge St, Los Angeles, CA 90001" -177605,Google Phone,1,600,04/04/19 07:41,"825 Madison St, New York City, NY 10001" -177606,AAA Batteries (4-pack),1,2.99,04/19/19 22:07,"167 Maple St, Portland, OR 97035" -177607,27in 4K Gaming Monitor,1,389.99,04/28/19 00:21,"690 Washington St, Seattle, WA 98101" -177608,Wired Headphones,1,11.99,04/09/19 16:03,"529 Adams St, San Francisco, CA 94016" -177609,AA Batteries (4-pack),1,3.84,04/12/19 16:53,"909 Jackson St, Atlanta, GA 30301" -177610,Lightning Charging Cable,1,14.95,04/11/19 20:18,"601 Hickory St, Austin, TX 73301" -177611,USB-C Charging Cable,1,11.95,04/01/19 11:19,"373 South St, San Francisco, CA 94016" -177612,AA Batteries (4-pack),1,3.84,04/22/19 09:28,"42 Hill St, Seattle, WA 98101" -177613,USB-C Charging Cable,1,11.95,04/03/19 09:39,"117 Walnut St, Seattle, WA 98101" -177614,Apple Airpods Headphones,1,150,04/12/19 08:50,"233 7th St, Austin, TX 73301" -177615,20in Monitor,1,109.99,04/25/19 11:13,"196 Lake St, Dallas, TX 75001" -177616,Apple Airpods Headphones,1,150,04/30/19 18:44,"252 Highland St, Los Angeles, CA 90001" -177617,AAA Batteries (4-pack),1,2.99,04/30/19 20:24,"396 Forest St, Boston, MA 02215" -177618,AAA Batteries (4-pack),1,2.99,04/04/19 21:32,"467 7th St, Seattle, WA 98101" -177619,Lightning Charging Cable,1,14.95,04/15/19 09:36,"306 Elm St, New York City, NY 10001" -177620,AA Batteries (4-pack),1,3.84,04/19/19 11:56,"439 10th St, New York City, NY 10001" -177621,Bose SoundSport Headphones,1,99.99,04/29/19 13:18,"333 Hickory St, New York City, NY 10001" -177622,AAA Batteries (4-pack),3,2.99,04/12/19 23:11,"599 Willow St, Atlanta, GA 30301" -177623,20in Monitor,1,109.99,04/20/19 19:39,"169 Center St, Austin, TX 73301" -177624,Wired Headphones,1,11.99,04/28/19 20:01,"11 Park St, Boston, MA 02215" -177625,AA Batteries (4-pack),2,3.84,04/14/19 17:58,"105 Walnut St, San Francisco, CA 94016" -177626,iPhone,1,700,04/19/19 07:53,"523 Main St, Atlanta, GA 30301" -177627,Wired Headphones,1,11.99,04/12/19 10:13,"987 Lincoln St, San Francisco, CA 94016" -177628,Lightning Charging Cable,1,14.95,04/24/19 15:59,"557 Jackson St, Seattle, WA 98101" -177629,Lightning Charging Cable,1,14.95,04/03/19 16:41,"676 Johnson St, Seattle, WA 98101" -177630,Macbook Pro Laptop,1,1700,04/15/19 09:29,"399 9th St, Seattle, WA 98101" -177631,Bose SoundSport Headphones,1,99.99,04/05/19 16:49,"817 Sunset St, Atlanta, GA 30301" -177632,Apple Airpods Headphones,1,150,04/27/19 16:28,"909 Center St, San Francisco, CA 94016" -177633,Bose SoundSport Headphones,1,99.99,04/26/19 01:30,"628 Maple St, New York City, NY 10001" -177634,Lightning Charging Cable,1,14.95,04/23/19 15:23,"991 4th St, Seattle, WA 98101" -177635,Lightning Charging Cable,1,14.95,04/04/19 09:16,"424 10th St, San Francisco, CA 94016" -177636,34in Ultrawide Monitor,1,379.99,04/18/19 11:50,"510 Lake St, Los Angeles, CA 90001" -177637,Bose SoundSport Headphones,1,99.99,04/17/19 15:28,"866 13th St, Seattle, WA 98101" -177638,Apple Airpods Headphones,1,150,04/04/19 12:44,"261 Center St, Portland, OR 97035" -177638,Google Phone,1,600,04/04/19 12:44,"261 Center St, Portland, OR 97035" -177639,AA Batteries (4-pack),3,3.84,04/25/19 16:22,"445 Pine St, Atlanta, GA 30301" -177640,Apple Airpods Headphones,1,150,04/07/19 10:12,"61 Jackson St, Portland, OR 97035" -177641,27in FHD Monitor,1,149.99,04/07/19 12:32,"969 Maple St, Seattle, WA 98101" -177642,AA Batteries (4-pack),2,3.84,04/11/19 20:57,"115 Maple St, Atlanta, GA 30301" -177643,Lightning Charging Cable,2,14.95,04/30/19 00:44,"499 Pine St, New York City, NY 10001" -177644,Lightning Charging Cable,1,14.95,04/15/19 22:06,"749 Sunset St, San Francisco, CA 94016" -177645,Lightning Charging Cable,1,14.95,04/06/19 10:03,"421 Lakeview St, Los Angeles, CA 90001" -177646,AAA Batteries (4-pack),1,2.99,04/26/19 13:25,"123 10th St, Los Angeles, CA 90001" -177647,Apple Airpods Headphones,1,150,04/02/19 20:45,"94 10th St, San Francisco, CA 94016" -177648,Bose SoundSport Headphones,1,99.99,04/06/19 18:11,"393 Center St, San Francisco, CA 94016" -177649,20in Monitor,1,109.99,04/02/19 12:33,"117 5th St, Atlanta, GA 30301" -177650,Macbook Pro Laptop,1,1700,04/13/19 13:54,"20 4th St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -177651,AA Batteries (4-pack),2,3.84,04/02/19 15:44,"613 5th St, Portland, OR 97035" -177652,AA Batteries (4-pack),1,3.84,04/24/19 20:22,"563 9th St, Los Angeles, CA 90001" -177653,USB-C Charging Cable,1,11.95,04/16/19 10:34,"915 Main St, Atlanta, GA 30301" -177654,AAA Batteries (4-pack),3,2.99,04/14/19 13:31,"385 Forest St, Austin, TX 73301" -177655,AA Batteries (4-pack),1,3.84,04/23/19 09:28,"401 7th St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -177656,AAA Batteries (4-pack),1,2.99,04/12/19 15:44,"568 West St, Los Angeles, CA 90001" -177657,AA Batteries (4-pack),1,3.84,04/08/19 16:25,"91 Lake St, New York City, NY 10001" -177658,Wired Headphones,1,11.99,04/01/19 17:35,"38 11th St, San Francisco, CA 94016" -177659,Wired Headphones,1,11.99,04/05/19 18:59,"603 Washington St, Austin, TX 73301" -177660,27in 4K Gaming Monitor,1,389.99,04/20/19 09:40,"951 River St, San Francisco, CA 94016" -177661,ThinkPad Laptop,1,999.99,04/15/19 21:07,"188 Johnson St, Dallas, TX 75001" -177662,Lightning Charging Cable,1,14.95,04/13/19 11:04,"186 Lake St, Austin, TX 73301" -177663,USB-C Charging Cable,1,11.95,04/18/19 20:12,"710 Lakeview St, New York City, NY 10001" -177664,AA Batteries (4-pack),1,3.84,04/06/19 08:41,"785 Maple St, Seattle, WA 98101" -177665,LG Washing Machine,1,600.0,04/25/19 18:08,"842 Center St, San Francisco, CA 94016" -177666,Wired Headphones,1,11.99,04/25/19 16:05,"862 Madison St, Portland, OR 97035" -177667,Bose SoundSport Headphones,1,99.99,04/26/19 20:14,"198 2nd St, Los Angeles, CA 90001" -177668,Macbook Pro Laptop,1,1700,04/01/19 09:20,"953 Johnson St, Boston, MA 02215" -177669,Lightning Charging Cable,1,14.95,04/16/19 09:56,"469 Jackson St, New York City, NY 10001" -177670,34in Ultrawide Monitor,1,379.99,04/11/19 10:25,"636 14th St, New York City, NY 10001" -177671,Apple Airpods Headphones,1,150,04/01/19 16:14,"312 Maple St, Los Angeles, CA 90001" -177672,Macbook Pro Laptop,1,1700,04/14/19 21:12,"709 Jackson St, Austin, TX 73301" -177673,34in Ultrawide Monitor,1,379.99,04/06/19 09:04,"523 Madison St, San Francisco, CA 94016" -177674,USB-C Charging Cable,1,11.95,04/13/19 23:09,"291 Jefferson St, San Francisco, CA 94016" -177675,Wired Headphones,1,11.99,04/17/19 12:36,"343 Meadow St, New York City, NY 10001" -177676,iPhone,1,700,04/27/19 14:33,"126 Forest St, Boston, MA 02215" -177677,Lightning Charging Cable,1,14.95,04/26/19 16:29,"738 7th St, Dallas, TX 75001" -177678,AA Batteries (4-pack),1,3.84,04/14/19 12:34,"863 Maple St, New York City, NY 10001" -177679,Vareebadd Phone,1,400,04/08/19 17:21,"789 South St, Atlanta, GA 30301" -177680,Wired Headphones,1,11.99,04/15/19 10:44,"602 Willow St, Boston, MA 02215" -177681,AAA Batteries (4-pack),1,2.99,04/01/19 14:07,"259 7th St, Dallas, TX 75001" -177681,Macbook Pro Laptop,1,1700,04/01/19 14:07,"259 7th St, Dallas, TX 75001" -177682,Lightning Charging Cable,1,14.95,04/11/19 07:48,"103 South St, Portland, ME 04101" -177683,Lightning Charging Cable,1,14.95,04/23/19 12:16,"728 Lakeview St, Atlanta, GA 30301" -177684,Wired Headphones,2,11.99,04/19/19 13:07,"844 7th St, Austin, TX 73301" -177685,Wired Headphones,1,11.99,04/02/19 15:39,"410 Center St, San Francisco, CA 94016" -177686,Wired Headphones,1,11.99,04/12/19 23:00,"150 Jackson St, Seattle, WA 98101" -177687,Wired Headphones,1,11.99,04/01/19 04:12,"23 Meadow St, San Francisco, CA 94016" -177688,Flatscreen TV,1,300,04/24/19 19:18,"618 North St, Boston, MA 02215" -177689,AAA Batteries (4-pack),3,2.99,04/17/19 21:17,"478 Willow St, San Francisco, CA 94016" -177690,Lightning Charging Cable,1,14.95,04/04/19 09:14,"391 5th St, New York City, NY 10001" -177691,AAA Batteries (4-pack),1,2.99,04/04/19 17:59,"573 West St, Los Angeles, CA 90001" -177692,Google Phone,1,600,04/08/19 20:08,"588 Hickory St, New York City, NY 10001" -177693,Google Phone,1,600,04/04/19 14:21,"138 Johnson St, Boston, MA 02215" -177694,Apple Airpods Headphones,1,150,04/08/19 21:44,"512 Lake St, Boston, MA 02215" -177695,Wired Headphones,1,11.99,04/04/19 11:15,"957 Park St, Atlanta, GA 30301" -177696,AA Batteries (4-pack),2,3.84,04/12/19 11:33,"330 Meadow St, San Francisco, CA 94016" -177697,27in FHD Monitor,1,149.99,04/21/19 01:10,"735 Sunset St, San Francisco, CA 94016" -177698,AAA Batteries (4-pack),2,2.99,04/05/19 08:30,"14 11th St, Atlanta, GA 30301" -177699,USB-C Charging Cable,1,11.95,04/18/19 17:40,"978 Cedar St, Los Angeles, CA 90001" -177700,Wired Headphones,1,11.99,04/23/19 11:10,"292 Jackson St, Atlanta, GA 30301" -177701,Lightning Charging Cable,1,14.95,04/21/19 06:02,"670 9th St, Los Angeles, CA 90001" -177702,34in Ultrawide Monitor,1,379.99,04/03/19 09:43,"901 Lincoln St, Dallas, TX 75001" -177703,20in Monitor,1,109.99,04/10/19 15:45,"15 Pine St, New York City, NY 10001" -177704,Apple Airpods Headphones,1,150,04/09/19 16:41,"553 South St, San Francisco, CA 94016" -177705,Bose SoundSport Headphones,1,99.99,04/18/19 08:02,"687 Cherry St, Portland, OR 97035" -177706,27in 4K Gaming Monitor,1,389.99,04/29/19 18:58,"851 Jackson St, Portland, OR 97035" -177707,Bose SoundSport Headphones,1,99.99,04/13/19 12:29,"778 Walnut St, San Francisco, CA 94016" -177708,USB-C Charging Cable,1,11.95,04/23/19 18:44,"43 6th St, New York City, NY 10001" -177709,Lightning Charging Cable,1,14.95,04/21/19 08:13,"221 Sunset St, Austin, TX 73301" -177710,AAA Batteries (4-pack),1,2.99,04/02/19 00:05,"10 Hill St, Seattle, WA 98101" -177711,AA Batteries (4-pack),1,3.84,04/06/19 12:13,"240 Center St, Atlanta, GA 30301" -177712,USB-C Charging Cable,1,11.95,04/01/19 08:53,"793 8th St, Los Angeles, CA 90001" -177713,AAA Batteries (4-pack),1,2.99,04/26/19 01:40,"509 Wilson St, Los Angeles, CA 90001" -177714,Lightning Charging Cable,1,14.95,04/24/19 07:16,"323 Ridge St, San Francisco, CA 94016" -177715,34in Ultrawide Monitor,1,379.99,04/29/19 12:20,"550 Main St, San Francisco, CA 94016" -177716,Lightning Charging Cable,2,14.95,04/30/19 13:41,"278 Washington St, Boston, MA 02215" -177717,AA Batteries (4-pack),1,3.84,04/27/19 20:18,"737 10th St, San Francisco, CA 94016" -177718,Google Phone,1,600,04/30/19 15:06,"938 Johnson St, Atlanta, GA 30301" -177719,Google Phone,1,600,04/18/19 23:41,"533 Adams St, Los Angeles, CA 90001" -177719,USB-C Charging Cable,1,11.95,04/18/19 23:41,"533 Adams St, Los Angeles, CA 90001" -177720,27in FHD Monitor,1,149.99,04/30/19 07:57,"86 Ridge St, Atlanta, GA 30301" -177721,Lightning Charging Cable,1,14.95,04/25/19 08:26,"374 South St, San Francisco, CA 94016" -177722,USB-C Charging Cable,1,11.95,04/23/19 07:55,"458 10th St, Seattle, WA 98101" -177723,AA Batteries (4-pack),2,3.84,04/04/19 14:30,"283 4th St, Atlanta, GA 30301" -177724,USB-C Charging Cable,1,11.95,04/29/19 21:48,"242 Willow St, Los Angeles, CA 90001" -177725,Apple Airpods Headphones,1,150,04/05/19 10:29,"903 Adams St, Los Angeles, CA 90001" -177726,Apple Airpods Headphones,1,150,04/07/19 14:39,"739 11th St, Dallas, TX 75001" -177727,AA Batteries (4-pack),1,3.84,04/03/19 20:33,"239 Elm St, San Francisco, CA 94016" -177728,Lightning Charging Cable,1,14.95,04/29/19 18:15,"397 6th St, Austin, TX 73301" -177729,iPhone,1,700,04/13/19 20:25,"318 6th St, Atlanta, GA 30301" -177730,USB-C Charging Cable,1,11.95,04/30/19 16:47,"384 Cedar St, New York City, NY 10001" -177731,Wired Headphones,1,11.99,04/02/19 16:06,"643 Pine St, New York City, NY 10001" -177732,27in 4K Gaming Monitor,1,389.99,04/25/19 15:29,"28 13th St, New York City, NY 10001" -177733,Lightning Charging Cable,1,14.95,04/23/19 17:03,"502 Elm St, Los Angeles, CA 90001" -177734,AA Batteries (4-pack),1,3.84,04/12/19 17:08,"575 4th St, Los Angeles, CA 90001" -177735,AAA Batteries (4-pack),1,2.99,04/04/19 18:36,"74 Willow St, New York City, NY 10001" -177736,27in 4K Gaming Monitor,1,389.99,04/06/19 18:42,"815 Cedar St, San Francisco, CA 94016" -177737,AAA Batteries (4-pack),1,2.99,04/03/19 17:27,"632 Madison St, Los Angeles, CA 90001" -177738,Bose SoundSport Headphones,1,99.99,04/28/19 13:33,"919 Walnut St, Los Angeles, CA 90001" -177739,ThinkPad Laptop,1,999.99,04/01/19 09:39,"984 Park St, Dallas, TX 75001" -177740,27in 4K Gaming Monitor,1,389.99,04/24/19 23:17,"960 Lincoln St, Los Angeles, CA 90001" -177741,Bose SoundSport Headphones,1,99.99,04/04/19 13:52,"672 Ridge St, Los Angeles, CA 90001" -177742,Lightning Charging Cable,1,14.95,04/15/19 17:28,"743 Ridge St, Dallas, TX 75001" -177743,Lightning Charging Cable,1,14.95,04/05/19 18:39,"84 9th St, San Francisco, CA 94016" -177744,34in Ultrawide Monitor,1,379.99,04/20/19 22:45,"189 Madison St, Los Angeles, CA 90001" -177745,Bose SoundSport Headphones,1,99.99,04/16/19 18:21,"48 Cherry St, Atlanta, GA 30301" -177746,AAA Batteries (4-pack),1,2.99,04/16/19 10:22,"182 11th St, Seattle, WA 98101" -177747,USB-C Charging Cable,2,11.95,04/06/19 21:03,"599 Main St, Portland, OR 97035" -177748,Flatscreen TV,1,300,04/14/19 21:32,"903 Forest St, Boston, MA 02215" -177749,Apple Airpods Headphones,1,150,04/12/19 10:02,"727 Jefferson St, San Francisco, CA 94016" -177750,Wired Headphones,1,11.99,04/27/19 01:09,"30 7th St, Los Angeles, CA 90001" -177751,AA Batteries (4-pack),1,3.84,04/23/19 14:51,"465 Spruce St, Boston, MA 02215" -177752,Google Phone,1,600,04/23/19 13:42,"178 6th St, Los Angeles, CA 90001" -177753,Wired Headphones,1,11.99,04/11/19 21:58,"938 Highland St, San Francisco, CA 94016" -177754,USB-C Charging Cable,1,11.95,04/03/19 18:46,"805 8th St, Boston, MA 02215" -177755,Lightning Charging Cable,1,14.95,04/26/19 06:24,"215 Hill St, New York City, NY 10001" -177756,34in Ultrawide Monitor,1,379.99,04/16/19 11:33,"858 10th St, Boston, MA 02215" -177757,AA Batteries (4-pack),4,3.84,04/25/19 11:03,"879 Walnut St, New York City, NY 10001" -177758,USB-C Charging Cable,1,11.95,04/01/19 19:21,"963 Center St, Boston, MA 02215" -177758,Lightning Charging Cable,1,14.95,04/01/19 19:21,"963 Center St, Boston, MA 02215" -177759,AAA Batteries (4-pack),2,2.99,04/10/19 16:35,"835 Spruce St, New York City, NY 10001" -177760,20in Monitor,1,109.99,04/24/19 00:27,"115 Park St, Portland, OR 97035" -177761,USB-C Charging Cable,1,11.95,04/03/19 02:51,"432 North St, Seattle, WA 98101" -177762,Lightning Charging Cable,1,14.95,04/18/19 13:18,"215 Pine St, Seattle, WA 98101" -177763,AAA Batteries (4-pack),1,2.99,04/08/19 12:06,"570 Center St, San Francisco, CA 94016" -177764,AA Batteries (4-pack),2,3.84,04/24/19 12:43,"435 8th St, Los Angeles, CA 90001" -177765,Bose SoundSport Headphones,2,99.99,04/16/19 13:57,"528 1st St, New York City, NY 10001" -177766,34in Ultrawide Monitor,1,379.99,04/07/19 11:49,"881 Sunset St, Boston, MA 02215" -177767,USB-C Charging Cable,1,11.95,04/30/19 08:17,"741 Jackson St, New York City, NY 10001" -177768,Apple Airpods Headphones,1,150,04/08/19 15:35,"605 Lakeview St, New York City, NY 10001" -177769,iPhone,1,700,04/14/19 22:54,"728 Church St, Atlanta, GA 30301" -177769,Lightning Charging Cable,1,14.95,04/14/19 22:54,"728 Church St, Atlanta, GA 30301" -177770,AA Batteries (4-pack),1,3.84,04/25/19 21:53,"24 12th St, New York City, NY 10001" -177771,USB-C Charging Cable,1,11.95,04/30/19 20:29,"550 Walnut St, Austin, TX 73301" -177772,Lightning Charging Cable,1,14.95,04/21/19 18:05,"485 Maple St, Boston, MA 02215" -177773,iPhone,1,700,04/01/19 20:03,"435 8th St, Atlanta, GA 30301" -177774,Flatscreen TV,1,300,04/11/19 15:47,"303 Cedar St, Seattle, WA 98101" -177775,Lightning Charging Cable,1,14.95,04/27/19 02:16,"927 8th St, Los Angeles, CA 90001" -177776,iPhone,1,700,04/21/19 15:23,"958 Center St, Los Angeles, CA 90001" -177777,Google Phone,1,600,04/06/19 19:22,"483 Chestnut St, New York City, NY 10001" -177778,iPhone,1,700,05/01/19 00:48,"478 West St, Boston, MA 02215" -177778,Apple Airpods Headphones,1,150,05/01/19 00:48,"478 West St, Boston, MA 02215" -177779,34in Ultrawide Monitor,1,379.99,04/11/19 17:24,"99 Church St, San Francisco, CA 94016" -177780,Bose SoundSport Headphones,1,99.99,04/19/19 13:51,"750 Johnson St, Seattle, WA 98101" -177781,27in 4K Gaming Monitor,1,389.99,04/20/19 16:29,"320 Walnut St, Los Angeles, CA 90001" -177782,Lightning Charging Cable,2,14.95,04/17/19 20:30,"29 5th St, San Francisco, CA 94016" -177782,27in 4K Gaming Monitor,1,389.99,04/17/19 20:30,"29 5th St, San Francisco, CA 94016" -177783,Apple Airpods Headphones,1,150,04/26/19 10:00,"234 Maple St, New York City, NY 10001" -177784,Lightning Charging Cable,1,14.95,04/15/19 19:03,"753 Ridge St, New York City, NY 10001" -177785,USB-C Charging Cable,1,11.95,04/05/19 09:43,"731 Hickory St, Austin, TX 73301" -177786,20in Monitor,1,109.99,04/16/19 09:50,"999 12th St, New York City, NY 10001" -177787,Lightning Charging Cable,2,14.95,04/18/19 17:55,"111 Dogwood St, Seattle, WA 98101" -177788,Bose SoundSport Headphones,1,99.99,04/29/19 09:40,"542 Walnut St, New York City, NY 10001" -177789,Wired Headphones,1,11.99,04/12/19 12:34,"799 River St, Los Angeles, CA 90001" -177790,20in Monitor,1,109.99,04/19/19 14:34,"958 Jackson St, San Francisco, CA 94016" -177791,Apple Airpods Headphones,1,150,04/21/19 11:16,"27 13th St, New York City, NY 10001" -177792,Vareebadd Phone,1,400,04/11/19 15:30,"724 1st St, Dallas, TX 75001" -177793,Lightning Charging Cable,1,14.95,04/14/19 23:38,"682 9th St, Dallas, TX 75001" -177794,AAA Batteries (4-pack),2,2.99,04/30/19 16:54,"541 Wilson St, Boston, MA 02215" -177795,Apple Airpods Headphones,1,150,04/27/19 19:45,"740 14th St, Seattle, WA 98101" -177795,Apple Airpods Headphones,1,150,04/27/19 19:45,"740 14th St, Seattle, WA 98101" -177796,34in Ultrawide Monitor,1,379.99,04/11/19 12:53,"774 Washington St, Boston, MA 02215" -177797,iPhone,1,700,04/27/19 14:38,"128 11th St, San Francisco, CA 94016" -177798,20in Monitor,1,109.99,04/10/19 13:47,"324 River St, New York City, NY 10001" -177799,USB-C Charging Cable,1,11.95,04/13/19 19:56,"285 Madison St, San Francisco, CA 94016" -177800,Google Phone,1,600,04/03/19 11:56,"880 9th St, Portland, ME 04101" -177800,USB-C Charging Cable,1,11.95,04/03/19 11:56,"880 9th St, Portland, ME 04101" -177800,Wired Headphones,1,11.99,04/03/19 11:56,"880 9th St, Portland, ME 04101" -177801,USB-C Charging Cable,1,11.95,04/29/19 14:29,"418 Hickory St, Dallas, TX 75001" -177802,Vareebadd Phone,1,400,04/16/19 18:51,"202 River St, San Francisco, CA 94016" -177803,AA Batteries (4-pack),1,3.84,04/04/19 09:08,"306 12th St, Boston, MA 02215" -177804,AAA Batteries (4-pack),1,2.99,04/07/19 12:48,"286 Jackson St, Portland, OR 97035" -177805,USB-C Charging Cable,1,11.95,04/04/19 09:23,"462 12th St, Los Angeles, CA 90001" -177806,AAA Batteries (4-pack),1,2.99,04/17/19 10:49,"979 Wilson St, Austin, TX 73301" -177807,AA Batteries (4-pack),1,3.84,04/05/19 14:19,"689 1st St, Dallas, TX 75001" -177808,Wired Headphones,1,11.99,04/24/19 12:56,"60 Lincoln St, New York City, NY 10001" -177809,AA Batteries (4-pack),1,3.84,04/17/19 10:35,"291 Main St, Boston, MA 02215" -177810,20in Monitor,1,109.99,04/11/19 06:53,"340 Sunset St, Atlanta, GA 30301" -177811,USB-C Charging Cable,1,11.95,04/11/19 10:33,"733 6th St, Portland, OR 97035" -177812,27in FHD Monitor,1,149.99,04/03/19 09:42,"145 Chestnut St, Portland, ME 04101" -177813,27in FHD Monitor,1,149.99,04/29/19 18:25,"439 Maple St, San Francisco, CA 94016" -177814,LG Washing Machine,1,600.0,04/11/19 16:04,"79 Johnson St, Atlanta, GA 30301" -177815,Apple Airpods Headphones,1,150,04/19/19 20:27,"124 5th St, Dallas, TX 75001" -177815,Lightning Charging Cable,1,14.95,04/19/19 20:27,"124 5th St, Dallas, TX 75001" -177816,20in Monitor,1,109.99,04/29/19 13:22,"319 9th St, New York City, NY 10001" -177817,ThinkPad Laptop,1,999.99,04/20/19 22:46,"379 Chestnut St, New York City, NY 10001" -177818,Wired Headphones,1,11.99,04/21/19 11:08,"365 South St, Boston, MA 02215" -177819,Flatscreen TV,1,300,04/21/19 10:31,"176 Willow St, Los Angeles, CA 90001" -177820,AAA Batteries (4-pack),1,2.99,04/19/19 19:40,"257 Jackson St, San Francisco, CA 94016" -177821,AA Batteries (4-pack),1,3.84,04/09/19 06:06,"403 Chestnut St, Los Angeles, CA 90001" -177822,AA Batteries (4-pack),1,3.84,04/25/19 12:29,"809 Center St, Dallas, TX 75001" -177823,AA Batteries (4-pack),1,3.84,04/04/19 15:40,"448 West St, Portland, OR 97035" -177824,AAA Batteries (4-pack),1,2.99,04/10/19 21:43,"485 North St, Atlanta, GA 30301" -177825,USB-C Charging Cable,1,11.95,04/30/19 18:54,"21 Park St, San Francisco, CA 94016" -177826,AA Batteries (4-pack),1,3.84,04/10/19 12:57,"62 North St, Seattle, WA 98101" -177827,Lightning Charging Cable,1,14.95,04/18/19 21:12,"803 Adams St, Seattle, WA 98101" -177828,AAA Batteries (4-pack),3,2.99,04/16/19 21:08,"924 6th St, San Francisco, CA 94016" -177829,Lightning Charging Cable,1,14.95,04/22/19 12:24,"346 Walnut St, Atlanta, GA 30301" -177830,27in FHD Monitor,1,149.99,04/07/19 07:36,"133 Willow St, Dallas, TX 75001" -177831,Lightning Charging Cable,1,14.95,04/01/19 03:09,"914 6th St, San Francisco, CA 94016" -177832,27in FHD Monitor,1,149.99,04/12/19 21:14,"541 Spruce St, Boston, MA 02215" -177833,Apple Airpods Headphones,1,150,04/28/19 22:17,"192 Hill St, San Francisco, CA 94016" -177834,Lightning Charging Cable,1,14.95,04/07/19 17:45,"997 Park St, San Francisco, CA 94016" -177835,USB-C Charging Cable,1,11.95,04/09/19 00:02,"59 Cedar St, New York City, NY 10001" -177836,27in 4K Gaming Monitor,1,389.99,04/22/19 11:21,"338 Lincoln St, New York City, NY 10001" -177837,Apple Airpods Headphones,1,150,04/14/19 21:51,"588 9th St, Los Angeles, CA 90001" -177838,AAA Batteries (4-pack),6,2.99,04/29/19 00:16,"872 Pine St, San Francisco, CA 94016" -177839,ThinkPad Laptop,1,999.99,04/07/19 14:36,"449 13th St, San Francisco, CA 94016" -177840,Lightning Charging Cable,1,14.95,04/20/19 00:24,"558 Jefferson St, Portland, ME 04101" -177841,20in Monitor,1,109.99,04/22/19 08:05,"815 West St, Austin, TX 73301" -177842,USB-C Charging Cable,1,11.95,04/19/19 11:35,"328 Jefferson St, San Francisco, CA 94016" -177843,Vareebadd Phone,1,400,04/20/19 09:42,"14 5th St, Los Angeles, CA 90001" -177844,Wired Headphones,1,11.99,04/18/19 13:28,"419 12th St, Portland, ME 04101" -177845,Lightning Charging Cable,1,14.95,04/22/19 13:21,"641 Meadow St, San Francisco, CA 94016" -177846,AA Batteries (4-pack),1,3.84,04/10/19 21:29,"897 South St, Los Angeles, CA 90001" -177847,ThinkPad Laptop,1,999.99,04/11/19 01:55,"608 Wilson St, Los Angeles, CA 90001" -177848,Flatscreen TV,1,300,04/06/19 09:23,"563 Dogwood St, Seattle, WA 98101" -177849,Wired Headphones,1,11.99,04/14/19 10:08,"767 Hickory St, San Francisco, CA 94016" -177850,27in 4K Gaming Monitor,1,389.99,04/04/19 16:20,"267 Johnson St, Boston, MA 02215" -177851,Bose SoundSport Headphones,1,99.99,04/23/19 16:37,"984 River St, Portland, ME 04101" -177852,Bose SoundSport Headphones,1,99.99,04/30/19 16:33,"818 Park St, San Francisco, CA 94016" -177853,AAA Batteries (4-pack),1,2.99,04/10/19 21:53,"514 Highland St, New York City, NY 10001" -177854,Wired Headphones,1,11.99,04/05/19 14:08,"118 North St, Boston, MA 02215" -177855,Lightning Charging Cable,1,14.95,04/13/19 13:51,"363 Johnson St, Los Angeles, CA 90001" -177856,Vareebadd Phone,1,400,04/24/19 08:56,"605 Madison St, Austin, TX 73301" -177857,Wired Headphones,1,11.99,04/21/19 10:13,"481 14th St, Atlanta, GA 30301" -177858,USB-C Charging Cable,1,11.95,04/20/19 12:54,"108 4th St, San Francisco, CA 94016" -177859,Wired Headphones,1,11.99,04/02/19 18:33,"741 Chestnut St, Portland, OR 97035" -177860,AAA Batteries (4-pack),1,2.99,04/08/19 10:51,"723 Walnut St, San Francisco, CA 94016" -177861,AA Batteries (4-pack),1,3.84,04/23/19 06:32,"712 Washington St, Boston, MA 02215" -177861,Apple Airpods Headphones,1,150,04/23/19 06:32,"712 Washington St, Boston, MA 02215" -177862,USB-C Charging Cable,1,11.95,04/03/19 20:13,"448 South St, Boston, MA 02215" -177863,Macbook Pro Laptop,1,1700,04/29/19 16:22,"385 Lincoln St, San Francisco, CA 94016" -177864,AA Batteries (4-pack),1,3.84,04/21/19 17:30,"586 7th St, Boston, MA 02215" -177865,Apple Airpods Headphones,1,150,04/04/19 17:52,"901 Jefferson St, San Francisco, CA 94016" -177866,Apple Airpods Headphones,2,150,04/06/19 17:11,"855 Main St, Los Angeles, CA 90001" -177867,USB-C Charging Cable,1,11.95,04/13/19 15:05,"887 Jefferson St, Dallas, TX 75001" -177868,AA Batteries (4-pack),1,3.84,04/01/19 10:17,"956 7th St, Dallas, TX 75001" -177869,Apple Airpods Headphones,1,150,04/11/19 21:03,"906 12th St, New York City, NY 10001" -177870,Flatscreen TV,1,300,04/30/19 19:10,"55 10th St, San Francisco, CA 94016" -177871,AA Batteries (4-pack),2,3.84,04/25/19 11:33,"156 Walnut St, Austin, TX 73301" -177872,27in 4K Gaming Monitor,1,389.99,04/15/19 13:22,"470 Lincoln St, San Francisco, CA 94016" -177873,27in FHD Monitor,1,149.99,04/10/19 19:10,"564 Hickory St, Boston, MA 02215" -177874,iPhone,1,700,04/04/19 18:23,"334 Willow St, Boston, MA 02215" -177874,Apple Airpods Headphones,1,150,04/04/19 18:23,"334 Willow St, Boston, MA 02215" -177875,Apple Airpods Headphones,1,150,04/13/19 13:50,"474 Lakeview St, San Francisco, CA 94016" -177876,USB-C Charging Cable,1,11.95,04/14/19 10:57,"843 Chestnut St, San Francisco, CA 94016" -177877,Google Phone,1,600,04/24/19 23:59,"666 Pine St, San Francisco, CA 94016" -177878,Apple Airpods Headphones,1,150,04/20/19 19:47,"561 Willow St, San Francisco, CA 94016" -177879,Vareebadd Phone,1,400,04/09/19 18:59,"879 12th St, San Francisco, CA 94016" -177880,AA Batteries (4-pack),1,3.84,04/18/19 13:24,"818 Forest St, Boston, MA 02215" -177881,20in Monitor,1,109.99,04/01/19 10:52,"748 4th St, San Francisco, CA 94016" -177882,AA Batteries (4-pack),1,3.84,04/25/19 14:50,"181 Walnut St, Seattle, WA 98101" -177883,Wired Headphones,1,11.99,04/15/19 17:17,"341 Maple St, San Francisco, CA 94016" -177884,Apple Airpods Headphones,1,150,04/12/19 20:49,"367 Maple St, Atlanta, GA 30301" -177885,27in 4K Gaming Monitor,1,389.99,04/08/19 19:57,"485 9th St, New York City, NY 10001" -177886,USB-C Charging Cable,1,11.95,04/20/19 18:11,"943 Lincoln St, Los Angeles, CA 90001" -177887,AA Batteries (4-pack),1,3.84,04/16/19 10:00,"394 Hickory St, San Francisco, CA 94016" -177888,iPhone,1,700,04/07/19 18:11,"530 Jefferson St, San Francisco, CA 94016" -177889,Lightning Charging Cable,1,14.95,04/18/19 13:36,"595 1st St, Dallas, TX 75001" -177890,Macbook Pro Laptop,1,1700,04/08/19 15:47,"486 Park St, New York City, NY 10001" -177891,Wired Headphones,1,11.99,04/04/19 19:22,"981 9th St, Atlanta, GA 30301" -177892,Lightning Charging Cable,1,14.95,04/04/19 05:16,"369 Hill St, Boston, MA 02215" -177893,Lightning Charging Cable,1,14.95,04/13/19 12:34,"116 10th St, San Francisco, CA 94016" -177894,27in FHD Monitor,1,149.99,04/29/19 22:49,"607 12th St, Seattle, WA 98101" -177895,Bose SoundSport Headphones,1,99.99,04/22/19 18:12,"225 Jefferson St, New York City, NY 10001" -177896,USB-C Charging Cable,2,11.95,04/12/19 12:25,"266 Willow St, San Francisco, CA 94016" -177897,Lightning Charging Cable,1,14.95,04/16/19 00:10,"521 14th St, Austin, TX 73301" -177898,Google Phone,1,600,04/16/19 13:38,"928 6th St, Los Angeles, CA 90001" -177899,AA Batteries (4-pack),1,3.84,04/13/19 18:17,"387 12th St, Portland, OR 97035" -177900,AA Batteries (4-pack),2,3.84,04/21/19 21:36,"605 Johnson St, Portland, OR 97035" -177901,Apple Airpods Headphones,1,150,04/23/19 21:51,"337 Chestnut St, San Francisco, CA 94016" -177902,Vareebadd Phone,1,400,04/04/19 11:54,"290 Maple St, San Francisco, CA 94016" -177903,20in Monitor,1,109.99,04/26/19 19:39,"50 Lincoln St, Los Angeles, CA 90001" -177904,Apple Airpods Headphones,1,150,04/26/19 06:56,"841 Hill St, Atlanta, GA 30301" -177905,Bose SoundSport Headphones,1,99.99,04/12/19 11:19,"12 Elm St, San Francisco, CA 94016" -177906,Google Phone,1,600,04/15/19 04:59,"876 Wilson St, New York City, NY 10001" -177907,USB-C Charging Cable,1,11.95,04/05/19 10:01,"680 Sunset St, Los Angeles, CA 90001" -177908,Wired Headphones,1,11.99,04/08/19 14:05,"280 Maple St, Boston, MA 02215" -177909,AA Batteries (4-pack),1,3.84,04/11/19 19:49,"531 Forest St, Boston, MA 02215" -177910,LG Dryer,1,600.0,04/10/19 10:17,"370 1st St, Los Angeles, CA 90001" -177911,AAA Batteries (4-pack),1,2.99,04/05/19 13:13,"714 8th St, Austin, TX 73301" -177912,USB-C Charging Cable,1,11.95,04/11/19 20:23,"120 Cedar St, San Francisco, CA 94016" -177913,Apple Airpods Headphones,1,150,04/04/19 18:49,"373 Willow St, Dallas, TX 75001" -177914,AAA Batteries (4-pack),1,2.99,04/11/19 12:50,"723 Church St, San Francisco, CA 94016" -177915,Apple Airpods Headphones,1,150,04/25/19 10:53,"64 2nd St, Los Angeles, CA 90001" -177916,Lightning Charging Cable,1,14.95,04/09/19 12:39,"443 Willow St, New York City, NY 10001" -177917,Wired Headphones,1,11.99,04/06/19 15:49,"737 Lincoln St, San Francisco, CA 94016" -177918,27in FHD Monitor,1,149.99,04/21/19 09:57,"903 Adams St, Boston, MA 02215" -177919,Lightning Charging Cable,1,14.95,04/25/19 10:37,"470 13th St, Portland, OR 97035" -177920,Lightning Charging Cable,1,14.95,04/08/19 19:53,"355 River St, Atlanta, GA 30301" -,,,,, -177921,AAA Batteries (4-pack),2,2.99,04/14/19 20:42,"94 Lake St, San Francisco, CA 94016" -177922,AAA Batteries (4-pack),2,2.99,04/29/19 17:34,"853 Lakeview St, Portland, OR 97035" -177923,AA Batteries (4-pack),1,3.84,04/04/19 17:43,"947 Pine St, San Francisco, CA 94016" -177924,Lightning Charging Cable,1,14.95,04/16/19 11:49,"52 Hickory St, San Francisco, CA 94016" -177925,27in 4K Gaming Monitor,1,389.99,04/17/19 15:30,"26 Lake St, Atlanta, GA 30301" -177926,Lightning Charging Cable,1,14.95,04/18/19 11:48,"476 Ridge St, San Francisco, CA 94016" -177927,27in 4K Gaming Monitor,1,389.99,04/17/19 10:37,"76 Hill St, Boston, MA 02215" -177928,AAA Batteries (4-pack),2,2.99,04/25/19 13:07,"722 Walnut St, San Francisco, CA 94016" -177929,27in FHD Monitor,1,149.99,04/21/19 23:42,"557 Johnson St, Seattle, WA 98101" -177930,AAA Batteries (4-pack),1,2.99,04/16/19 19:23,"915 10th St, Boston, MA 02215" -177931,AAA Batteries (4-pack),1,2.99,04/17/19 13:43,"543 Meadow St, San Francisco, CA 94016" -177932,AA Batteries (4-pack),1,3.84,04/26/19 07:28,"758 Lakeview St, San Francisco, CA 94016" -177933,USB-C Charging Cable,2,11.95,04/08/19 20:15,"241 South St, Dallas, TX 75001" -177934,27in FHD Monitor,1,149.99,04/07/19 17:15,"333 Park St, Austin, TX 73301" -177935,Bose SoundSport Headphones,1,99.99,04/23/19 20:11,"565 Dogwood St, Seattle, WA 98101" -177936,Apple Airpods Headphones,1,150,04/08/19 18:36,"607 Hill St, San Francisco, CA 94016" -177937,AA Batteries (4-pack),1,3.84,04/01/19 12:39,"766 Dogwood St, Atlanta, GA 30301" -177938,Bose SoundSport Headphones,1,99.99,04/27/19 23:14,"150 Chestnut St, Seattle, WA 98101" -177939,34in Ultrawide Monitor,1,379.99,04/10/19 14:28,"11 Dogwood St, New York City, NY 10001" -177940,AA Batteries (4-pack),1,3.84,04/02/19 11:10,"646 12th St, San Francisco, CA 94016" -177941,AAA Batteries (4-pack),1,2.99,04/20/19 22:14,"849 Center St, New York City, NY 10001" -177942,AA Batteries (4-pack),1,3.84,04/29/19 19:01,"639 Willow St, Los Angeles, CA 90001" -177943,Lightning Charging Cable,1,14.95,04/07/19 13:28,"126 Hickory St, San Francisco, CA 94016" -177944,USB-C Charging Cable,1,11.95,04/12/19 21:34,"138 10th St, Austin, TX 73301" -177945,USB-C Charging Cable,2,11.95,04/09/19 22:04,"257 West St, Dallas, TX 75001" -177946,Lightning Charging Cable,1,14.95,04/11/19 18:28,"252 Maple St, San Francisco, CA 94016" -177947,AA Batteries (4-pack),1,3.84,04/15/19 20:35,"751 7th St, Boston, MA 02215" -177948,AAA Batteries (4-pack),1,2.99,04/08/19 13:26,"580 Elm St, Atlanta, GA 30301" -177949,USB-C Charging Cable,1,11.95,04/02/19 20:40,"939 Cedar St, Seattle, WA 98101" -177950,Bose SoundSport Headphones,1,99.99,04/28/19 07:28,"321 Willow St, Boston, MA 02215" -177951,34in Ultrawide Monitor,1,379.99,04/01/19 19:45,"256 Meadow St, Seattle, WA 98101" -177952,USB-C Charging Cable,1,11.95,04/22/19 06:57,"901 Pine St, Los Angeles, CA 90001" -177953,Wired Headphones,1,11.99,04/14/19 16:29,"26 Washington St, Boston, MA 02215" -177954,AA Batteries (4-pack),1,3.84,04/17/19 20:10,"192 Meadow St, San Francisco, CA 94016" -177955,34in Ultrawide Monitor,1,379.99,04/26/19 12:11,"71 Lake St, San Francisco, CA 94016" -177956,USB-C Charging Cable,1,11.95,04/20/19 05:46,"562 12th St, New York City, NY 10001" -177957,USB-C Charging Cable,1,11.95,04/12/19 21:02,"231 Cherry St, Portland, OR 97035" -177958,AA Batteries (4-pack),1,3.84,04/20/19 17:40,"726 8th St, Los Angeles, CA 90001" -177959,AAA Batteries (4-pack),1,2.99,04/05/19 08:47,"238 Church St, New York City, NY 10001" -177960,20in Monitor,1,109.99,04/12/19 13:14,"74 Forest St, Seattle, WA 98101" -177961,27in 4K Gaming Monitor,1,389.99,04/30/19 20:00,"697 West St, Dallas, TX 75001" -177962,Wired Headphones,1,11.99,04/29/19 09:35,"889 5th St, San Francisco, CA 94016" -177963,20in Monitor,1,109.99,04/29/19 10:16,"780 South St, New York City, NY 10001" -177964,34in Ultrawide Monitor,1,379.99,04/06/19 16:48,"852 Spruce St, New York City, NY 10001" -177965,AAA Batteries (4-pack),2,2.99,04/19/19 22:49,"819 Madison St, Austin, TX 73301" -177966,34in Ultrawide Monitor,1,379.99,04/04/19 13:43,"712 7th St, San Francisco, CA 94016" -177967,Lightning Charging Cable,1,14.95,04/23/19 07:04,"901 Pine St, New York City, NY 10001" -177968,Bose SoundSport Headphones,1,99.99,04/12/19 23:33,"260 Sunset St, San Francisco, CA 94016" -177969,AAA Batteries (4-pack),1,2.99,04/13/19 23:47,"840 Forest St, San Francisco, CA 94016" -177970,AAA Batteries (4-pack),1,2.99,04/06/19 11:14,"19 Elm St, Los Angeles, CA 90001" -177971,iPhone,1,700,04/30/19 08:05,"81 Lincoln St, San Francisco, CA 94016" -177971,Lightning Charging Cable,1,14.95,04/30/19 08:05,"81 Lincoln St, San Francisco, CA 94016" -177972,AAA Batteries (4-pack),1,2.99,04/29/19 13:09,"566 4th St, Los Angeles, CA 90001" -177973,Lightning Charging Cable,1,14.95,04/20/19 10:44,"299 Washington St, San Francisco, CA 94016" -177974,Bose SoundSport Headphones,1,99.99,04/23/19 13:13,"293 Sunset St, San Francisco, CA 94016" -177975,AA Batteries (4-pack),3,3.84,04/30/19 08:46,"167 12th St, Los Angeles, CA 90001" -177976,USB-C Charging Cable,1,11.95,04/14/19 22:21,"908 Lakeview St, Seattle, WA 98101" -177977,iPhone,1,700,04/03/19 19:49,"725 Pine St, San Francisco, CA 94016" -177978,Apple Airpods Headphones,1,150,04/30/19 14:56,"447 Wilson St, Austin, TX 73301" -177979,AA Batteries (4-pack),2,3.84,04/23/19 17:01,"684 Ridge St, San Francisco, CA 94016" -177980,Bose SoundSport Headphones,1,99.99,04/26/19 02:36,"370 Ridge St, New York City, NY 10001" -177981,USB-C Charging Cable,1,11.95,04/09/19 14:43,"250 Washington St, San Francisco, CA 94016" -177982,AA Batteries (4-pack),1,3.84,04/15/19 10:42,"414 7th St, San Francisco, CA 94016" -177983,USB-C Charging Cable,1,11.95,04/23/19 15:21,"652 Lincoln St, Boston, MA 02215" -177984,Apple Airpods Headphones,1,150,04/18/19 10:43,"625 Ridge St, San Francisco, CA 94016" -177985,Lightning Charging Cable,1,14.95,04/04/19 13:05,"216 Church St, Boston, MA 02215" -177986,Apple Airpods Headphones,1,150,04/26/19 17:14,"281 Center St, New York City, NY 10001" -177987,Apple Airpods Headphones,1,150,04/07/19 10:02,"648 Main St, Seattle, WA 98101" -177988,20in Monitor,1,109.99,04/28/19 18:32,"728 12th St, Dallas, TX 75001" -177989,AA Batteries (4-pack),2,3.84,04/26/19 22:19,"167 Spruce St, Los Angeles, CA 90001" -177990,Lightning Charging Cable,1,14.95,04/02/19 13:19,"510 6th St, New York City, NY 10001" -177991,34in Ultrawide Monitor,1,379.99,04/21/19 21:42,"560 Willow St, Boston, MA 02215" -177992,Bose SoundSport Headphones,1,99.99,04/27/19 23:50,"42 Meadow St, Portland, OR 97035" -177993,AAA Batteries (4-pack),3,2.99,04/13/19 21:53,"300 14th St, San Francisco, CA 94016" -177994,Lightning Charging Cable,1,14.95,04/01/19 19:15,"558 Maple St, San Francisco, CA 94016" -177995,AA Batteries (4-pack),3,3.84,04/13/19 12:01,"820 Pine St, San Francisco, CA 94016" -177996,iPhone,1,700,04/07/19 17:20,"37 Jackson St, Atlanta, GA 30301" -177996,Lightning Charging Cable,1,14.95,04/07/19 17:20,"37 Jackson St, Atlanta, GA 30301" -177997,Lightning Charging Cable,1,14.95,04/04/19 19:47,"797 Center St, New York City, NY 10001" -177998,AAA Batteries (4-pack),1,2.99,04/09/19 12:51,"484 1st St, Dallas, TX 75001" -177999,ThinkPad Laptop,1,999.99,04/15/19 11:04,"257 10th St, New York City, NY 10001" -178000,Lightning Charging Cable,1,14.95,04/27/19 11:47,"979 Hickory St, Los Angeles, CA 90001" -178001,USB-C Charging Cable,1,11.95,04/05/19 10:50,"976 Park St, New York City, NY 10001" -178002,USB-C Charging Cable,1,11.95,04/13/19 17:17,"746 Willow St, Los Angeles, CA 90001" -178003,iPhone,1,700,04/04/19 18:52,"824 11th St, San Francisco, CA 94016" -178004,AA Batteries (4-pack),2,3.84,04/12/19 19:10,"372 Spruce St, Los Angeles, CA 90001" -178005,USB-C Charging Cable,1,11.95,04/07/19 12:02,"183 Cherry St, San Francisco, CA 94016" -178006,Lightning Charging Cable,1,14.95,04/13/19 22:52,"188 Sunset St, Los Angeles, CA 90001" -178007,iPhone,1,700,04/14/19 13:54,"824 Jefferson St, New York City, NY 10001" -178008,Bose SoundSport Headphones,1,99.99,04/05/19 07:42,"162 West St, Los Angeles, CA 90001" -178009,34in Ultrawide Monitor,1,379.99,04/10/19 16:01,"829 1st St, New York City, NY 10001" -178009,USB-C Charging Cable,1,11.95,04/10/19 16:01,"829 1st St, New York City, NY 10001" -178010,Wired Headphones,1,11.99,04/02/19 16:30,"774 Forest St, Los Angeles, CA 90001" -178011,AAA Batteries (4-pack),2,2.99,04/21/19 21:28,"83 Church St, Atlanta, GA 30301" -178012,Wired Headphones,2,11.99,04/13/19 16:39,"49 Walnut St, San Francisco, CA 94016" -178013,Wired Headphones,1,11.99,04/04/19 18:28,"6 11th St, Los Angeles, CA 90001" -178014,Wired Headphones,1,11.99,04/27/19 14:50,"818 11th St, Boston, MA 02215" -178015,USB-C Charging Cable,1,11.95,04/27/19 10:30,"315 Ridge St, Dallas, TX 75001" -178016,USB-C Charging Cable,1,11.95,04/17/19 16:10,"230 Spruce St, Los Angeles, CA 90001" -178017,USB-C Charging Cable,1,11.95,04/10/19 17:35,"672 Hill St, Los Angeles, CA 90001" -178018,Macbook Pro Laptop,1,1700,04/27/19 15:23,"378 Dogwood St, Portland, OR 97035" -178019,Apple Airpods Headphones,1,150,04/05/19 14:19,"757 1st St, Atlanta, GA 30301" -178020,AAA Batteries (4-pack),1,2.99,04/20/19 22:27,"285 2nd St, Atlanta, GA 30301" -178021,Wired Headphones,1,11.99,04/28/19 09:07,"301 5th St, Dallas, TX 75001" -178022,Flatscreen TV,1,300,04/27/19 20:55,"786 Dogwood St, Los Angeles, CA 90001" -178023,Google Phone,1,600,04/08/19 21:03,"671 Cherry St, San Francisco, CA 94016" -178024,Bose SoundSport Headphones,1,99.99,04/08/19 06:07,"1 Dogwood St, Atlanta, GA 30301" -178025,USB-C Charging Cable,1,11.95,04/19/19 17:46,"12 Johnson St, San Francisco, CA 94016" -178026,Macbook Pro Laptop,1,1700,04/08/19 23:11,"508 Park St, Los Angeles, CA 90001" -178027,Lightning Charging Cable,1,14.95,04/06/19 15:06,"26 Hickory St, Seattle, WA 98101" -178028,20in Monitor,1,109.99,04/19/19 13:21,"408 10th St, San Francisco, CA 94016" -178029,iPhone,1,700,04/06/19 21:15,"800 9th St, Los Angeles, CA 90001" -178029,Apple Airpods Headphones,1,150,04/06/19 21:15,"800 9th St, Los Angeles, CA 90001" -178030,USB-C Charging Cable,1,11.95,04/07/19 11:58,"253 1st St, San Francisco, CA 94016" -178031,34in Ultrawide Monitor,1,379.99,04/11/19 14:22,"844 11th St, Boston, MA 02215" -178032,AA Batteries (4-pack),1,3.84,04/10/19 10:38,"455 Lakeview St, Portland, OR 97035" -178033,AA Batteries (4-pack),1,3.84,04/20/19 11:36,"740 Ridge St, Portland, ME 04101" -178034,Wired Headphones,1,11.99,04/05/19 07:33,"962 Walnut St, San Francisco, CA 94016" -178035,AA Batteries (4-pack),1,3.84,04/25/19 18:19,"284 Walnut St, San Francisco, CA 94016" -,,,,, -178036,Lightning Charging Cable,1,14.95,04/18/19 10:03,"169 10th St, Dallas, TX 75001" -178037,AAA Batteries (4-pack),3,2.99,04/01/19 21:03,"407 Ridge St, Los Angeles, CA 90001" -178038,34in Ultrawide Monitor,1,379.99,04/27/19 19:09,"355 12th St, San Francisco, CA 94016" -178039,Apple Airpods Headphones,1,150,04/15/19 11:36,"717 Highland St, Boston, MA 02215" -178040,AA Batteries (4-pack),4,3.84,04/19/19 11:29,"604 5th St, New York City, NY 10001" -178041,Lightning Charging Cable,1,14.95,04/11/19 20:01,"560 Forest St, San Francisco, CA 94016" -178042,34in Ultrawide Monitor,1,379.99,04/11/19 20:37,"234 5th St, New York City, NY 10001" -178043,AAA Batteries (4-pack),1,2.99,04/20/19 10:52,"922 Maple St, San Francisco, CA 94016" -178044,USB-C Charging Cable,2,11.95,04/10/19 21:40,"448 Meadow St, New York City, NY 10001" -178045,20in Monitor,1,109.99,04/30/19 21:24,"871 Jefferson St, Los Angeles, CA 90001" -178046,iPhone,1,700,04/05/19 10:26,"767 Spruce St, New York City, NY 10001" -178047,USB-C Charging Cable,1,11.95,04/17/19 19:53,"850 Maple St, New York City, NY 10001" -178048,Apple Airpods Headphones,1,150,04/04/19 12:44,"738 Jefferson St, Boston, MA 02215" -178049,USB-C Charging Cable,2,11.95,04/21/19 20:05,"416 10th St, Boston, MA 02215" -178050,AAA Batteries (4-pack),2,2.99,04/25/19 20:33,"540 Washington St, Los Angeles, CA 90001" -178051,Lightning Charging Cable,1,14.95,04/13/19 21:49,"628 Walnut St, Boston, MA 02215" -178052,Flatscreen TV,1,300,04/10/19 15:55,"26 Hickory St, San Francisco, CA 94016" -,,,,, -178053,Apple Airpods Headphones,1,150,04/19/19 08:41,"196 Jefferson St, Portland, ME 04101" -178054,AAA Batteries (4-pack),1,2.99,04/05/19 14:12,"574 Chestnut St, Austin, TX 73301" -178055,Lightning Charging Cable,1,14.95,04/12/19 17:26,"497 Spruce St, San Francisco, CA 94016" -178056,USB-C Charging Cable,1,11.95,04/15/19 15:27,"333 Jackson St, Seattle, WA 98101" -178057,AA Batteries (4-pack),1,3.84,04/18/19 16:22,"982 Hickory St, Atlanta, GA 30301" -178058,Macbook Pro Laptop,1,1700,04/17/19 17:12,"437 Lakeview St, San Francisco, CA 94016" -178059,Wired Headphones,1,11.99,04/05/19 11:18,"188 Walnut St, Austin, TX 73301" -178060,AAA Batteries (4-pack),1,2.99,04/10/19 10:23,"286 North St, Dallas, TX 75001" -178061,Lightning Charging Cable,1,14.95,04/28/19 15:27,"219 Highland St, Boston, MA 02215" -178062,AA Batteries (4-pack),1,3.84,04/21/19 23:19,"274 Sunset St, Portland, OR 97035" -178063,Lightning Charging Cable,1,14.95,04/06/19 20:53,"365 Elm St, Austin, TX 73301" -178064,27in 4K Gaming Monitor,1,389.99,04/20/19 22:49,"199 8th St, Seattle, WA 98101" -178065,iPhone,1,700,04/11/19 10:10,"552 Pine St, Atlanta, GA 30301" -178066,USB-C Charging Cable,1,11.95,04/20/19 07:06,"986 Ridge St, San Francisco, CA 94016" -178067,AAA Batteries (4-pack),1,2.99,04/16/19 23:48,"395 Hickory St, Atlanta, GA 30301" -178068,AAA Batteries (4-pack),1,2.99,04/15/19 10:20,"669 1st St, Portland, OR 97035" -178069,Apple Airpods Headphones,1,150,04/22/19 08:43,"36 Johnson St, Austin, TX 73301" -178070,Google Phone,1,600,04/19/19 18:41,"375 Cherry St, Portland, OR 97035" -178071,AA Batteries (4-pack),5,3.84,04/20/19 11:51,"79 1st St, San Francisco, CA 94016" -178072,Apple Airpods Headphones,1,150,04/26/19 20:28,"128 12th St, New York City, NY 10001" -178073,27in FHD Monitor,1,149.99,04/27/19 21:27,"863 6th St, Boston, MA 02215" -178074,AAA Batteries (4-pack),2,2.99,04/18/19 13:00,"190 14th St, San Francisco, CA 94016" -178075,20in Monitor,1,109.99,04/17/19 02:20,"952 Center St, New York City, NY 10001" -178076,20in Monitor,1,109.99,04/19/19 14:22,"405 Cherry St, Boston, MA 02215" -178077,ThinkPad Laptop,1,999.99,04/06/19 03:09,"771 14th St, San Francisco, CA 94016" -178078,USB-C Charging Cable,2,11.95,04/08/19 19:31,"430 14th St, Los Angeles, CA 90001" -178079,Lightning Charging Cable,1,14.95,04/20/19 10:19,"203 Pine St, Los Angeles, CA 90001" -178080,27in 4K Gaming Monitor,1,389.99,04/17/19 05:42,"128 2nd St, New York City, NY 10001" -178081,34in Ultrawide Monitor,1,379.99,04/11/19 08:07,"992 Elm St, Los Angeles, CA 90001" -178082,Wired Headphones,1,11.99,04/06/19 17:08,"710 Jefferson St, New York City, NY 10001" -178083,iPhone,1,700,04/28/19 12:26,"109 Cherry St, San Francisco, CA 94016" -178084,27in FHD Monitor,1,149.99,04/04/19 16:19,"833 Main St, Atlanta, GA 30301" -178085,Lightning Charging Cable,2,14.95,04/19/19 16:51,"878 Center St, Los Angeles, CA 90001" -178086,USB-C Charging Cable,1,11.95,04/07/19 12:14,"843 6th St, Seattle, WA 98101" -178087,Bose SoundSport Headphones,1,99.99,04/30/19 20:28,"609 Elm St, Atlanta, GA 30301" -178088,USB-C Charging Cable,1,11.95,04/14/19 15:05,"299 13th St, Los Angeles, CA 90001" -178089,USB-C Charging Cable,1,11.95,04/25/19 15:36,"715 River St, Los Angeles, CA 90001" -178090,USB-C Charging Cable,1,11.95,04/21/19 14:49,"781 Johnson St, Austin, TX 73301" -178091,AA Batteries (4-pack),1,3.84,04/12/19 17:51,"991 Center St, Los Angeles, CA 90001" -178092,Lightning Charging Cable,2,14.95,04/11/19 18:38,"595 Ridge St, New York City, NY 10001" -178093,Lightning Charging Cable,1,14.95,04/18/19 17:08,"495 Madison St, San Francisco, CA 94016" -178094,34in Ultrawide Monitor,1,379.99,04/17/19 04:39,"225 4th St, Dallas, TX 75001" -178095,AA Batteries (4-pack),1,3.84,04/27/19 22:32,"219 Spruce St, Los Angeles, CA 90001" -178096,Bose SoundSport Headphones,1,99.99,04/29/19 11:46,"707 Forest St, Seattle, WA 98101" -178097,Macbook Pro Laptop,1,1700,04/03/19 10:48,"207 Elm St, Atlanta, GA 30301" -178098,AA Batteries (4-pack),1,3.84,04/23/19 11:24,"154 Meadow St, Dallas, TX 75001" -178099,AAA Batteries (4-pack),2,2.99,04/16/19 16:31,"304 South St, Boston, MA 02215" -178100,34in Ultrawide Monitor,1,379.99,04/11/19 21:13,"713 Wilson St, New York City, NY 10001" -178101,Lightning Charging Cable,1,14.95,04/21/19 16:32,"623 Forest St, San Francisco, CA 94016" -178102,27in FHD Monitor,1,149.99,04/20/19 16:33,"240 Center St, New York City, NY 10001" -178103,Wired Headphones,1,11.99,04/25/19 12:08,"563 Ridge St, San Francisco, CA 94016" -178104,AA Batteries (4-pack),1,3.84,04/01/19 11:20,"803 Center St, New York City, NY 10001" -178105,Lightning Charging Cable,1,14.95,04/16/19 23:05,"991 West St, Boston, MA 02215" -178106,AAA Batteries (4-pack),1,2.99,04/27/19 19:11,"995 Maple St, Seattle, WA 98101" -178106,Wired Headphones,1,11.99,04/27/19 19:11,"995 Maple St, Seattle, WA 98101" -178107,20in Monitor,1,109.99,04/02/19 23:12,"879 Washington St, New York City, NY 10001" -178108,AAA Batteries (4-pack),1,2.99,04/08/19 21:42,"39 Forest St, San Francisco, CA 94016" -178109,27in 4K Gaming Monitor,1,389.99,04/10/19 19:15,"389 Highland St, Austin, TX 73301" -178110,LG Dryer,1,600.0,04/17/19 18:11,"453 Maple St, San Francisco, CA 94016" -178111,Apple Airpods Headphones,1,150,04/29/19 19:18,"340 4th St, Portland, OR 97035" -178112,AAA Batteries (4-pack),1,2.99,04/04/19 12:35,"67 Chestnut St, Los Angeles, CA 90001" -178113,AAA Batteries (4-pack),1,2.99,04/29/19 17:05,"466 Maple St, Boston, MA 02215" -178114,Apple Airpods Headphones,1,150,04/02/19 07:04,"564 12th St, Boston, MA 02215" -178115,AAA Batteries (4-pack),1,2.99,04/12/19 16:36,"524 Cherry St, Seattle, WA 98101" -178116,Wired Headphones,1,11.99,04/28/19 09:07,"631 7th St, Boston, MA 02215" -178117,AAA Batteries (4-pack),1,2.99,04/29/19 16:21,"277 Sunset St, Boston, MA 02215" -178118,iPhone,1,700,04/27/19 11:48,"139 Dogwood St, Boston, MA 02215" -178118,AAA Batteries (4-pack),1,2.99,04/27/19 11:48,"139 Dogwood St, Boston, MA 02215" -178119,iPhone,1,700,04/29/19 00:48,"453 9th St, Seattle, WA 98101" -178120,AA Batteries (4-pack),1,3.84,04/10/19 20:33,"707 Lake St, Boston, MA 02215" -178121,34in Ultrawide Monitor,1,379.99,04/07/19 11:25,"50 West St, New York City, NY 10001" -178122,AAA Batteries (4-pack),3,2.99,04/21/19 22:22,"406 Pine St, Boston, MA 02215" -178123,AA Batteries (4-pack),1,3.84,04/14/19 14:17,"312 5th St, Portland, ME 04101" -178124,USB-C Charging Cable,1,11.95,04/30/19 10:20,"335 Park St, Atlanta, GA 30301" -178125,27in 4K Gaming Monitor,1,389.99,04/21/19 17:00,"300 9th St, San Francisco, CA 94016" -178126,USB-C Charging Cable,1,11.95,04/01/19 16:09,"44 6th St, San Francisco, CA 94016" -178127,Wired Headphones,1,11.99,04/12/19 20:31,"207 Spruce St, Dallas, TX 75001" -178128,USB-C Charging Cable,1,11.95,04/01/19 22:21,"512 Ridge St, Portland, OR 97035" -178129,ThinkPad Laptop,1,999.99,04/30/19 08:19,"918 Main St, Boston, MA 02215" -178130,Bose SoundSport Headphones,1,99.99,04/23/19 05:25,"204 Johnson St, San Francisco, CA 94016" -178131,iPhone,1,700,04/29/19 09:04,"865 Main St, Atlanta, GA 30301" -178132,AAA Batteries (4-pack),4,2.99,04/18/19 19:24,"997 Center St, Boston, MA 02215" -178133,USB-C Charging Cable,1,11.95,04/15/19 09:13,"922 Center St, Boston, MA 02215" -178134,Bose SoundSport Headphones,1,99.99,04/07/19 19:27,"672 5th St, New York City, NY 10001" -178135,Lightning Charging Cable,1,14.95,04/13/19 22:31,"994 Center St, New York City, NY 10001" -178135,AA Batteries (4-pack),2,3.84,04/13/19 22:31,"994 Center St, New York City, NY 10001" -178136,USB-C Charging Cable,1,11.95,04/28/19 16:22,"168 Washington St, Portland, OR 97035" -178137,Lightning Charging Cable,1,14.95,04/07/19 05:46,"679 Church St, Atlanta, GA 30301" -178137,AA Batteries (4-pack),2,3.84,04/07/19 05:46,"679 Church St, Atlanta, GA 30301" -178138,34in Ultrawide Monitor,1,379.99,04/15/19 17:43,"263 Cherry St, San Francisco, CA 94016" -178139,Wired Headphones,1,11.99,04/06/19 19:31,"491 14th St, New York City, NY 10001" -178140,Bose SoundSport Headphones,1,99.99,04/09/19 16:30,"930 West St, New York City, NY 10001" -178141,34in Ultrawide Monitor,1,379.99,04/03/19 12:48,"662 Dogwood St, San Francisco, CA 94016" -178142,AAA Batteries (4-pack),1,2.99,04/30/19 18:55,"757 Lake St, Dallas, TX 75001" -178143,Macbook Pro Laptop,1,1700,04/28/19 13:41,"268 Forest St, San Francisco, CA 94016" -178144,Apple Airpods Headphones,1,150,04/05/19 14:43,"515 Pine St, Seattle, WA 98101" -178145,Bose SoundSport Headphones,1,99.99,04/10/19 21:55,"4 Meadow St, Portland, OR 97035" -178146,AA Batteries (4-pack),1,3.84,04/07/19 10:40,"194 Sunset St, Los Angeles, CA 90001" -178147,Lightning Charging Cable,1,14.95,04/09/19 18:59,"862 Church St, Los Angeles, CA 90001" -178148,ThinkPad Laptop,1,999.99,04/24/19 20:12,"208 5th St, Seattle, WA 98101" -178149,AAA Batteries (4-pack),2,2.99,04/17/19 18:40,"682 Meadow St, Boston, MA 02215" -178150,34in Ultrawide Monitor,1,379.99,04/30/19 12:35,"434 South St, San Francisco, CA 94016" -178151,Lightning Charging Cable,1,14.95,04/01/19 21:28,"822 North St, Los Angeles, CA 90001" -178152,Apple Airpods Headphones,1,150,04/14/19 16:54,"184 Church St, Atlanta, GA 30301" -178153,AAA Batteries (4-pack),1,2.99,04/10/19 05:45,"476 South St, New York City, NY 10001" -178154,ThinkPad Laptop,1,999.99,04/13/19 09:48,"449 Walnut St, Dallas, TX 75001" -178155,Flatscreen TV,1,300,04/24/19 17:47,"587 Meadow St, San Francisco, CA 94016" -178156,Wired Headphones,1,11.99,04/15/19 22:25,"285 Walnut St, Los Angeles, CA 90001" -178157,34in Ultrawide Monitor,1,379.99,04/15/19 20:56,"919 Lincoln St, Boston, MA 02215" -178158,Google Phone,1,600,04/28/19 21:13,"197 Center St, San Francisco, CA 94016" -178158,USB-C Charging Cable,1,11.95,04/28/19 21:13,"197 Center St, San Francisco, CA 94016" -178158,Wired Headphones,1,11.99,04/28/19 21:13,"197 Center St, San Francisco, CA 94016" -178158,USB-C Charging Cable,1,11.95,04/28/19 21:13,"197 Center St, San Francisco, CA 94016" -178159,AA Batteries (4-pack),1,3.84,04/30/19 06:06,"216 Center St, New York City, NY 10001" -178160,Bose SoundSport Headphones,1,99.99,04/03/19 20:01,"465 Hickory St, Los Angeles, CA 90001" -178161,Bose SoundSport Headphones,1,99.99,04/04/19 10:16,"212 Jackson St, Seattle, WA 98101" -178162,iPhone,1,700,04/09/19 10:49,"888 North St, Seattle, WA 98101" -178162,Lightning Charging Cable,1,14.95,04/09/19 10:49,"888 North St, Seattle, WA 98101" -178163,34in Ultrawide Monitor,1,379.99,04/17/19 17:18,"967 12th St, San Francisco, CA 94016" -178164,Lightning Charging Cable,1,14.95,04/20/19 12:31,"262 Lakeview St, New York City, NY 10001" -178165,Wired Headphones,1,11.99,04/17/19 13:16,"688 Center St, Austin, TX 73301" -178166,Flatscreen TV,1,300,04/03/19 15:01,"66 Adams St, Dallas, TX 75001" -178167,AA Batteries (4-pack),2,3.84,04/30/19 11:43,"5 Dogwood St, Boston, MA 02215" -178168,AA Batteries (4-pack),1,3.84,04/21/19 14:48,"583 Washington St, New York City, NY 10001" -178168,Macbook Pro Laptop,1,1700,04/21/19 14:48,"583 Washington St, New York City, NY 10001" -178169,AA Batteries (4-pack),1,3.84,04/05/19 17:29,"721 Lincoln St, Atlanta, GA 30301" -178170,Apple Airpods Headphones,1,150,04/04/19 16:26,"678 Maple St, Boston, MA 02215" -178171,Wired Headphones,1,11.99,04/19/19 06:35,"588 Chestnut St, Los Angeles, CA 90001" -178172,USB-C Charging Cable,1,11.95,04/12/19 18:09,"346 13th St, San Francisco, CA 94016" -178173,Apple Airpods Headphones,1,150,04/14/19 09:09,"38 Madison St, Atlanta, GA 30301" -178174,AAA Batteries (4-pack),1,2.99,04/11/19 19:57,"689 Forest St, Atlanta, GA 30301" -178175,Lightning Charging Cable,1,14.95,04/01/19 11:28,"402 North St, San Francisco, CA 94016" -178176,AA Batteries (4-pack),1,3.84,04/21/19 15:54,"940 River St, Dallas, TX 75001" -178177,Lightning Charging Cable,1,14.95,04/02/19 10:56,"694 Madison St, San Francisco, CA 94016" -178178,AAA Batteries (4-pack),1,2.99,04/08/19 12:30,"213 4th St, Dallas, TX 75001" -178179,Lightning Charging Cable,1,14.95,04/02/19 08:02,"414 Hill St, Austin, TX 73301" -178180,AAA Batteries (4-pack),1,2.99,04/12/19 06:14,"158 Highland St, New York City, NY 10001" -178181,Apple Airpods Headphones,1,150,04/29/19 18:28,"996 6th St, Dallas, TX 75001" -178182,20in Monitor,1,109.99,04/28/19 22:20,"179 River St, Austin, TX 73301" -178183,AA Batteries (4-pack),2,3.84,04/06/19 15:05,"451 Meadow St, New York City, NY 10001" -178184,Bose SoundSport Headphones,1,99.99,04/05/19 19:25,"739 Spruce St, Portland, ME 04101" -178185,Bose SoundSport Headphones,1,99.99,04/14/19 08:23,"153 9th St, Los Angeles, CA 90001" -178186,Wired Headphones,1,11.99,04/10/19 23:28,"596 12th St, Los Angeles, CA 90001" -178187,20in Monitor,1,109.99,04/25/19 08:32,"878 Elm St, Dallas, TX 75001" -178188,ThinkPad Laptop,1,999.99,04/18/19 14:14,"482 13th St, New York City, NY 10001" -178189,AA Batteries (4-pack),1,3.84,04/12/19 13:05,"161 Hill St, New York City, NY 10001" -178190,Vareebadd Phone,1,400,04/02/19 18:10,"811 14th St, Atlanta, GA 30301" -178190,Wired Headphones,1,11.99,04/02/19 18:10,"811 14th St, Atlanta, GA 30301" -178191,Lightning Charging Cable,1,14.95,04/27/19 10:35,"262 Sunset St, Boston, MA 02215" -178192,Wired Headphones,1,11.99,04/21/19 01:43,"341 5th St, Boston, MA 02215" -178193,USB-C Charging Cable,1,11.95,04/03/19 23:06,"725 Jefferson St, San Francisco, CA 94016" -178194,ThinkPad Laptop,1,999.99,04/21/19 11:18,"706 Adams St, Los Angeles, CA 90001" -178195,Google Phone,1,600,04/02/19 13:21,"881 Lakeview St, San Francisco, CA 94016" -178196,Wired Headphones,1,11.99,04/24/19 17:59,"471 2nd St, Dallas, TX 75001" -178197,AA Batteries (4-pack),1,3.84,04/27/19 16:44,"216 Elm St, Atlanta, GA 30301" -178198,27in FHD Monitor,1,149.99,04/27/19 13:14,"313 Pine St, New York City, NY 10001" -178199,Lightning Charging Cable,1,14.95,04/21/19 09:57,"842 Jefferson St, Los Angeles, CA 90001" -178200,USB-C Charging Cable,1,11.95,04/02/19 14:18,"981 7th St, Boston, MA 02215" -178201,34in Ultrawide Monitor,1,379.99,04/07/19 05:37,"253 8th St, Atlanta, GA 30301" -178202,Apple Airpods Headphones,1,150,04/15/19 06:50,"5 River St, Seattle, WA 98101" -178203,27in 4K Gaming Monitor,1,389.99,04/16/19 08:49,"629 Main St, Portland, OR 97035" -178204,34in Ultrawide Monitor,1,379.99,04/18/19 20:40,"618 Elm St, San Francisco, CA 94016" -178205,AAA Batteries (4-pack),2,2.99,04/28/19 11:36,"599 North St, Portland, OR 97035" -178206,ThinkPad Laptop,1,999.99,04/06/19 20:55,"929 Elm St, Portland, OR 97035" -178207,Lightning Charging Cable,2,14.95,04/28/19 11:21,"956 Walnut St, Los Angeles, CA 90001" -178208,Apple Airpods Headphones,1,150,04/22/19 11:03,"127 14th St, San Francisco, CA 94016" -178209,Bose SoundSport Headphones,1,99.99,04/13/19 07:15,"512 9th St, New York City, NY 10001" -178210,Wired Headphones,1,11.99,04/26/19 17:32,"481 Johnson St, New York City, NY 10001" -178211,27in FHD Monitor,1,149.99,04/18/19 00:46,"821 South St, San Francisco, CA 94016" -178212,AAA Batteries (4-pack),1,2.99,04/17/19 10:03,"669 North St, San Francisco, CA 94016" -178213,USB-C Charging Cable,1,11.95,04/12/19 21:43,"617 River St, Austin, TX 73301" -178214,27in FHD Monitor,1,149.99,04/14/19 09:49,"209 12th St, Seattle, WA 98101" -178215,USB-C Charging Cable,1,11.95,04/15/19 19:32,"553 Maple St, Los Angeles, CA 90001" -178216,AA Batteries (4-pack),1,3.84,04/20/19 11:37,"46 11th St, Seattle, WA 98101" -178217,AAA Batteries (4-pack),5,2.99,04/01/19 10:09,"721 Park St, Los Angeles, CA 90001" -178218,USB-C Charging Cable,1,11.95,04/04/19 12:19,"364 Madison St, Seattle, WA 98101" -178219,Wired Headphones,2,11.99,04/28/19 21:30,"487 Willow St, Austin, TX 73301" -178220,Lightning Charging Cable,1,14.95,04/21/19 20:41,"662 Johnson St, Dallas, TX 75001" -178221,Flatscreen TV,1,300,04/21/19 11:21,"722 13th St, Boston, MA 02215" -178221,Lightning Charging Cable,1,14.95,04/21/19 11:21,"722 13th St, Boston, MA 02215" -178222,20in Monitor,1,109.99,04/14/19 12:04,"453 Park St, New York City, NY 10001" -178223,Bose SoundSport Headphones,1,99.99,04/03/19 14:14,"138 Jefferson St, Dallas, TX 75001" -178224,Wired Headphones,1,11.99,04/28/19 05:37,"865 Pine St, Los Angeles, CA 90001" -178225,27in FHD Monitor,1,149.99,04/06/19 09:55,"635 14th St, San Francisco, CA 94016" -178226,Bose SoundSport Headphones,1,99.99,04/09/19 11:57,"142 Cherry St, Seattle, WA 98101" -178227,AA Batteries (4-pack),2,3.84,04/11/19 10:51,"527 9th St, San Francisco, CA 94016" -178228,ThinkPad Laptop,1,999.99,04/14/19 00:10,"163 Jefferson St, Atlanta, GA 30301" -178229,Wired Headphones,1,11.99,04/17/19 09:22,"608 7th St, Los Angeles, CA 90001" -178230,AA Batteries (4-pack),2,3.84,04/12/19 14:40,"983 Lincoln St, San Francisco, CA 94016" -178231,AAA Batteries (4-pack),1,2.99,04/02/19 21:05,"581 Church St, San Francisco, CA 94016" -178232,AA Batteries (4-pack),1,3.84,04/28/19 18:16,"397 North St, Austin, TX 73301" -178233,Lightning Charging Cable,1,14.95,04/28/19 18:14,"885 Walnut St, San Francisco, CA 94016" -178234,Lightning Charging Cable,1,14.95,04/13/19 15:25,"734 Lincoln St, Dallas, TX 75001" -178235,Lightning Charging Cable,1,14.95,04/09/19 06:43,"135 Church St, San Francisco, CA 94016" -178236,USB-C Charging Cable,1,11.95,04/22/19 13:35,"193 13th St, Seattle, WA 98101" -178237,Apple Airpods Headphones,1,150,04/22/19 19:08,"646 9th St, Portland, OR 97035" -178238,iPhone,1,700,04/23/19 22:09,"392 13th St, San Francisco, CA 94016" -178239,Flatscreen TV,1,300,04/01/19 14:57,"192 Madison St, Dallas, TX 75001" -178240,Lightning Charging Cable,1,14.95,04/12/19 21:36,"494 11th St, Los Angeles, CA 90001" -178241,Lightning Charging Cable,2,14.95,04/07/19 14:41,"488 Forest St, Seattle, WA 98101" -178242,iPhone,1,700,04/17/19 15:29,"681 2nd St, Austin, TX 73301" -178242,Lightning Charging Cable,1,14.95,04/17/19 15:29,"681 2nd St, Austin, TX 73301" -178243,Flatscreen TV,1,300,04/12/19 19:45,"206 Adams St, Dallas, TX 75001" -178244,Wired Headphones,1,11.99,04/30/19 13:50,"183 Willow St, New York City, NY 10001" -178245,Wired Headphones,1,11.99,04/09/19 16:03,"313 Elm St, San Francisco, CA 94016" -178246,AA Batteries (4-pack),1,3.84,04/30/19 21:01,"135 Madison St, New York City, NY 10001" -178247,Lightning Charging Cable,1,14.95,04/22/19 14:34,"435 Willow St, San Francisco, CA 94016" -178248,Wired Headphones,1,11.99,04/15/19 16:14,"406 Walnut St, New York City, NY 10001" -178249,34in Ultrawide Monitor,1,379.99,04/02/19 13:08,"615 Adams St, San Francisco, CA 94016" -178250,Apple Airpods Headphones,1,150,04/16/19 20:34,"409 Willow St, Seattle, WA 98101" -178251,Apple Airpods Headphones,1,150,04/13/19 21:29,"878 Highland St, Dallas, TX 75001" -178252,Wired Headphones,1,11.99,04/13/19 23:12,"637 5th St, Seattle, WA 98101" -178253,AAA Batteries (4-pack),2,2.99,04/06/19 08:56,"847 Ridge St, Seattle, WA 98101" -178254,USB-C Charging Cable,1,11.95,04/15/19 12:50,"829 Ridge St, Los Angeles, CA 90001" -178255,Lightning Charging Cable,1,14.95,04/17/19 00:44,"106 Jackson St, Los Angeles, CA 90001" -178256,27in 4K Gaming Monitor,1,389.99,04/25/19 22:50,"308 5th St, San Francisco, CA 94016" -178257,20in Monitor,1,109.99,04/11/19 19:47,"954 Washington St, Seattle, WA 98101" -178258,iPhone,1,700,04/22/19 01:00,"479 9th St, Los Angeles, CA 90001" -178258,Apple Airpods Headphones,1,150,04/22/19 01:00,"479 9th St, Los Angeles, CA 90001" -178259,Apple Airpods Headphones,1,150,04/15/19 01:06,"988 14th St, New York City, NY 10001" -178260,Apple Airpods Headphones,1,150,04/14/19 19:24,"964 Jefferson St, Boston, MA 02215" -178261,AAA Batteries (4-pack),2,2.99,04/04/19 16:42,"552 Center St, San Francisco, CA 94016" -178262,Lightning Charging Cable,1,14.95,04/29/19 19:11,"948 6th St, Portland, OR 97035" -178263,Bose SoundSport Headphones,1,99.99,04/09/19 19:27,"134 Adams St, Los Angeles, CA 90001" -178264,USB-C Charging Cable,1,11.95,04/09/19 10:45,"403 Elm St, Seattle, WA 98101" -178265,AAA Batteries (4-pack),2,2.99,04/05/19 10:32,"262 South St, Seattle, WA 98101" -178266,AAA Batteries (4-pack),3,2.99,04/15/19 18:16,"367 Pine St, Boston, MA 02215" -178267,Google Phone,1,600,04/17/19 11:51,"118 Lakeview St, Los Angeles, CA 90001" -178268,Flatscreen TV,1,300,04/22/19 21:00,"315 Willow St, San Francisco, CA 94016" -178269,Lightning Charging Cable,1,14.95,04/14/19 14:03,"998 1st St, Los Angeles, CA 90001" -178270,USB-C Charging Cable,1,11.95,04/10/19 15:44,"839 Elm St, San Francisco, CA 94016" -178271,Wired Headphones,1,11.99,04/30/19 14:59,"906 Hickory St, Portland, OR 97035" -178272,ThinkPad Laptop,1,999.99,04/17/19 12:22,"94 Park St, Los Angeles, CA 90001" -178273,20in Monitor,1,109.99,04/11/19 08:55,"308 14th St, Austin, TX 73301" -178274,Wired Headphones,1,11.99,04/24/19 13:26,"894 Hill St, Boston, MA 02215" -178275,Lightning Charging Cable,1,14.95,04/02/19 21:11,"841 12th St, San Francisco, CA 94016" -178276,Lightning Charging Cable,1,14.95,04/22/19 23:24,"954 4th St, Los Angeles, CA 90001" -178277,20in Monitor,1,109.99,04/29/19 19:16,"492 12th St, Dallas, TX 75001" -178278,Vareebadd Phone,1,400,04/14/19 22:22,"248 Wilson St, Portland, OR 97035" -178279,ThinkPad Laptop,1,999.99,04/29/19 11:21,"163 1st St, Los Angeles, CA 90001" -178280,iPhone,1,700,04/08/19 12:34,"806 Madison St, San Francisco, CA 94016" -178280,Lightning Charging Cable,1,14.95,04/08/19 12:34,"806 Madison St, San Francisco, CA 94016" -178281,Apple Airpods Headphones,1,150,04/21/19 15:07,"107 12th St, San Francisco, CA 94016" -178282,Bose SoundSport Headphones,1,99.99,04/03/19 17:13,"891 10th St, Atlanta, GA 30301" -178283,Flatscreen TV,1,300,04/10/19 15:16,"353 Dogwood St, San Francisco, CA 94016" -178284,34in Ultrawide Monitor,1,379.99,04/10/19 19:42,"243 Hill St, San Francisco, CA 94016" -178285,AA Batteries (4-pack),1,3.84,04/08/19 18:41,"876 Dogwood St, Austin, TX 73301" -178286,USB-C Charging Cable,2,11.95,04/19/19 23:29,"998 11th St, Atlanta, GA 30301" -178287,Lightning Charging Cable,1,14.95,04/21/19 01:35,"59 Ridge St, San Francisco, CA 94016" -178288,Lightning Charging Cable,1,14.95,04/03/19 03:22,"102 8th St, Dallas, TX 75001" -178289,Wired Headphones,1,11.99,04/28/19 14:17,"58 12th St, Seattle, WA 98101" -178290,Wired Headphones,2,11.99,04/09/19 17:37,"647 Cedar St, Portland, ME 04101" -178290,ThinkPad Laptop,1,999.99,04/09/19 17:37,"647 Cedar St, Portland, ME 04101" -178291,Lightning Charging Cable,1,14.95,04/22/19 07:50,"911 Forest St, Austin, TX 73301" -178292,USB-C Charging Cable,1,11.95,04/03/19 21:47,"102 Wilson St, New York City, NY 10001" -178293,USB-C Charging Cable,1,11.95,04/08/19 12:59,"871 North St, San Francisco, CA 94016" -178294,20in Monitor,1,109.99,04/04/19 21:40,"336 2nd St, Dallas, TX 75001" -178295,Wired Headphones,1,11.99,04/23/19 23:36,"479 Church St, Austin, TX 73301" -178296,AAA Batteries (4-pack),4,2.99,04/12/19 06:20,"523 Cherry St, Los Angeles, CA 90001" -178297,27in 4K Gaming Monitor,1,389.99,04/05/19 22:56,"398 Adams St, Dallas, TX 75001" -178298,Bose SoundSport Headphones,1,99.99,04/09/19 20:35,"178 Elm St, New York City, NY 10001" -178299,AA Batteries (4-pack),1,3.84,04/10/19 18:11,"255 West St, New York City, NY 10001" -178300,AA Batteries (4-pack),1,3.84,04/05/19 20:01,"391 Highland St, Los Angeles, CA 90001" -178301,AA Batteries (4-pack),2,3.84,04/20/19 22:28,"927 River St, Boston, MA 02215" -178302,AA Batteries (4-pack),1,3.84,04/03/19 12:05,"292 Jackson St, Dallas, TX 75001" -178303,Flatscreen TV,1,300,04/10/19 15:46,"799 Sunset St, San Francisco, CA 94016" -178304,AA Batteries (4-pack),4,3.84,04/11/19 15:13,"512 Jefferson St, Boston, MA 02215" -178305,Lightning Charging Cable,1,14.95,04/29/19 20:50,"742 9th St, Los Angeles, CA 90001" -178306,Wired Headphones,1,11.99,04/06/19 06:14,"346 10th St, Los Angeles, CA 90001" -178307,Wired Headphones,1,11.99,04/03/19 10:15,"391 Maple St, New York City, NY 10001" -178308,Wired Headphones,1,11.99,04/02/19 13:43,"54 Lincoln St, San Francisco, CA 94016" -178309,AAA Batteries (4-pack),2,2.99,04/27/19 12:09,"770 Chestnut St, San Francisco, CA 94016" -178310,Apple Airpods Headphones,1,150,04/24/19 10:28,"501 10th St, Austin, TX 73301" -178311,AAA Batteries (4-pack),2,2.99,04/04/19 12:14,"992 Walnut St, Los Angeles, CA 90001" -178312,Apple Airpods Headphones,1,150,04/13/19 20:01,"929 Lake St, San Francisco, CA 94016" -178313,iPhone,1,700,04/11/19 12:27,"686 4th St, Boston, MA 02215" -178314,Lightning Charging Cable,1,14.95,04/22/19 00:28,"6 Lakeview St, Los Angeles, CA 90001" -178315,27in FHD Monitor,1,149.99,04/22/19 12:54,"827 4th St, Seattle, WA 98101" -178316,Wired Headphones,1,11.99,04/23/19 23:23,"775 5th St, Los Angeles, CA 90001" -178317,Google Phone,1,600,04/19/19 08:52,"566 Spruce St, San Francisco, CA 94016" -178318,Lightning Charging Cable,1,14.95,04/24/19 19:23,"209 Forest St, San Francisco, CA 94016" -178319,Lightning Charging Cable,1,14.95,04/05/19 20:18,"64 Cherry St, Portland, OR 97035" -178320,AA Batteries (4-pack),1,3.84,04/06/19 12:27,"198 8th St, San Francisco, CA 94016" -178321,AA Batteries (4-pack),1,3.84,04/22/19 16:55,"594 7th St, New York City, NY 10001" -178322,Apple Airpods Headphones,1,150,04/05/19 23:46,"686 8th St, San Francisco, CA 94016" -178323,USB-C Charging Cable,1,11.95,04/04/19 16:39,"263 Sunset St, Los Angeles, CA 90001" -178324,Apple Airpods Headphones,1,150,04/26/19 14:24,"388 Johnson St, San Francisco, CA 94016" -178325,Vareebadd Phone,1,400,04/06/19 23:09,"762 1st St, Dallas, TX 75001" -178326,Google Phone,1,600,04/20/19 21:21,"81 14th St, New York City, NY 10001" -178327,Apple Airpods Headphones,1,150,04/10/19 15:55,"664 Church St, San Francisco, CA 94016" -178328,Google Phone,1,600,04/16/19 08:18,"701 South St, Boston, MA 02215" -178329,AA Batteries (4-pack),1,3.84,04/25/19 17:40,"66 Cherry St, Los Angeles, CA 90001" -178330,AA Batteries (4-pack),1,3.84,04/12/19 06:56,"218 Hill St, Dallas, TX 75001" -178331,Bose SoundSport Headphones,1,99.99,04/16/19 10:16,"427 Church St, New York City, NY 10001" -178332,Wired Headphones,1,11.99,04/16/19 18:55,"246 Main St, San Francisco, CA 94016" -178333,Wired Headphones,2,11.99,04/14/19 19:03,"526 Madison St, San Francisco, CA 94016" -178334,AA Batteries (4-pack),2,3.84,04/16/19 08:39,"694 Lakeview St, Boston, MA 02215" -178335,AAA Batteries (4-pack),1,2.99,04/22/19 13:27,"452 13th St, San Francisco, CA 94016" -178336,34in Ultrawide Monitor,1,379.99,04/04/19 20:43,"756 Jackson St, Portland, OR 97035" -178337,Apple Airpods Headphones,1,150,04/27/19 21:47,"367 Lakeview St, Atlanta, GA 30301" -178338,AAA Batteries (4-pack),1,2.99,04/26/19 14:16,"230 2nd St, San Francisco, CA 94016" -178339,Bose SoundSport Headphones,1,99.99,04/22/19 21:28,"838 Elm St, Boston, MA 02215" -178340,AA Batteries (4-pack),3,3.84,04/04/19 18:20,"390 Johnson St, New York City, NY 10001" -178341,Vareebadd Phone,1,400,04/07/19 15:44,"188 8th St, Dallas, TX 75001" -178342,Wired Headphones,1,11.99,04/19/19 11:52,"852 Meadow St, Seattle, WA 98101" -178343,Google Phone,1,600,04/23/19 22:16,"838 Cherry St, Los Angeles, CA 90001" -178344,Wired Headphones,1,11.99,04/24/19 11:24,"289 Walnut St, San Francisco, CA 94016" -178345,LG Washing Machine,1,600.0,04/04/19 15:16,"545 12th St, Atlanta, GA 30301" -178346,34in Ultrawide Monitor,1,379.99,04/14/19 08:59,"417 Main St, San Francisco, CA 94016" -178347,27in FHD Monitor,1,149.99,04/09/19 20:27,"295 Maple St, San Francisco, CA 94016" -178348,AA Batteries (4-pack),2,3.84,04/13/19 21:50,"779 7th St, Seattle, WA 98101" -178349,AA Batteries (4-pack),1,3.84,04/28/19 17:21,"643 Church St, Los Angeles, CA 90001" -178350,AA Batteries (4-pack),1,3.84,04/15/19 20:49,"771 13th St, Boston, MA 02215" -178351,USB-C Charging Cable,1,11.95,04/11/19 09:04,"260 Hill St, Seattle, WA 98101" -178352,AA Batteries (4-pack),1,3.84,04/03/19 13:58,"916 Highland St, Los Angeles, CA 90001" -178353,Apple Airpods Headphones,1,150,04/18/19 11:40,"176 Church St, Seattle, WA 98101" -178354,Google Phone,1,600,04/28/19 13:56,"401 Lake St, Seattle, WA 98101" -178355,27in 4K Gaming Monitor,1,389.99,04/29/19 21:08,"171 Madison St, San Francisco, CA 94016" -178356,Bose SoundSport Headphones,1,99.99,04/05/19 09:03,"207 10th St, San Francisco, CA 94016" -178357,27in 4K Gaming Monitor,1,389.99,04/29/19 17:40,"398 1st St, San Francisco, CA 94016" -178358,Flatscreen TV,1,300,04/05/19 17:20,"883 South St, Seattle, WA 98101" -178359,Wired Headphones,1,11.99,04/13/19 08:56,"510 Jefferson St, San Francisco, CA 94016" -178360,Apple Airpods Headphones,1,150,04/27/19 20:20,"843 14th St, Los Angeles, CA 90001" -178361,Lightning Charging Cable,1,14.95,04/06/19 07:45,"170 10th St, Austin, TX 73301" -178362,AA Batteries (4-pack),1,3.84,04/16/19 15:34,"713 Spruce St, Seattle, WA 98101" -178363,34in Ultrawide Monitor,1,379.99,04/25/19 20:45,"450 Lincoln St, Los Angeles, CA 90001" -178364,iPhone,1,700,04/16/19 10:21,"754 Sunset St, Portland, OR 97035" -178365,Google Phone,1,600,04/10/19 17:39,"413 South St, New York City, NY 10001" -178366,Wired Headphones,1,11.99,04/08/19 12:23,"478 7th St, Los Angeles, CA 90001" -178367,AAA Batteries (4-pack),1,2.99,04/13/19 18:01,"38 Washington St, San Francisco, CA 94016" -178368,AAA Batteries (4-pack),2,2.99,04/27/19 07:15,"209 Madison St, Austin, TX 73301" -178369,20in Monitor,1,109.99,04/20/19 10:55,"808 7th St, San Francisco, CA 94016" -178370,27in FHD Monitor,1,149.99,04/14/19 13:40,"935 Cedar St, New York City, NY 10001" -178371,USB-C Charging Cable,1,11.95,04/14/19 19:47,"294 Dogwood St, Atlanta, GA 30301" -178372,USB-C Charging Cable,1,11.95,04/14/19 15:02,"256 West St, Portland, OR 97035" -178373,34in Ultrawide Monitor,1,379.99,04/08/19 06:44,"372 10th St, Los Angeles, CA 90001" -178374,Lightning Charging Cable,1,14.95,04/02/19 20:56,"981 Dogwood St, Los Angeles, CA 90001" -178375,Apple Airpods Headphones,1,150,04/20/19 10:24,"769 4th St, New York City, NY 10001" -178376,Apple Airpods Headphones,1,150,04/28/19 22:39,"385 Lincoln St, Boston, MA 02215" -178377,iPhone,1,700,04/20/19 04:12,"296 10th St, San Francisco, CA 94016" -178378,AAA Batteries (4-pack),1,2.99,04/04/19 23:59,"623 2nd St, Boston, MA 02215" -178379,Wired Headphones,1,11.99,04/13/19 20:55,"722 Chestnut St, Los Angeles, CA 90001" -178380,Wired Headphones,1,11.99,04/20/19 12:55,"418 Johnson St, Atlanta, GA 30301" -178381,27in FHD Monitor,1,149.99,04/26/19 13:24,"427 Center St, Austin, TX 73301" -178382,USB-C Charging Cable,1,11.95,04/13/19 18:21,"573 Church St, Atlanta, GA 30301" -178383,USB-C Charging Cable,1,11.95,04/06/19 21:00,"771 Sunset St, Boston, MA 02215" -178384,Wired Headphones,2,11.99,04/01/19 13:12,"545 Ridge St, Austin, TX 73301" -178385,ThinkPad Laptop,1,999.99,04/18/19 14:18,"941 Walnut St, Seattle, WA 98101" -178386,34in Ultrawide Monitor,1,379.99,04/04/19 12:10,"255 South St, San Francisco, CA 94016" -178387,Wired Headphones,1,11.99,04/04/19 22:52,"302 2nd St, Seattle, WA 98101" -178388,USB-C Charging Cable,1,11.95,04/04/19 16:16,"218 10th St, Dallas, TX 75001" -178389,USB-C Charging Cable,1,11.95,04/18/19 17:03,"403 Lakeview St, Seattle, WA 98101" -178390,34in Ultrawide Monitor,1,379.99,04/01/19 22:49,"530 Center St, San Francisco, CA 94016" -178391,AAA Batteries (4-pack),4,2.99,04/23/19 08:16,"324 12th St, New York City, NY 10001" -178392,USB-C Charging Cable,1,11.95,04/29/19 16:17,"287 Lincoln St, New York City, NY 10001" -178393,34in Ultrawide Monitor,1,379.99,04/22/19 10:07,"481 Adams St, Seattle, WA 98101" -178394,Google Phone,1,600,04/03/19 11:16,"768 Wilson St, Atlanta, GA 30301" -178395,Wired Headphones,1,11.99,04/10/19 13:06,"117 Willow St, Los Angeles, CA 90001" -178396,Wired Headphones,1,11.99,04/08/19 15:19,"573 Wilson St, Seattle, WA 98101" -178397,USB-C Charging Cable,1,11.95,04/16/19 12:32,"372 Elm St, Dallas, TX 75001" -178398,USB-C Charging Cable,1,11.95,04/06/19 20:42,"254 Park St, Atlanta, GA 30301" -178399,Lightning Charging Cable,1,14.95,04/23/19 15:14,"521 Hill St, Los Angeles, CA 90001" -178400,USB-C Charging Cable,1,11.95,04/07/19 17:37,"396 11th St, Dallas, TX 75001" -178401,AA Batteries (4-pack),1,3.84,04/04/19 00:03,"683 South St, Portland, OR 97035" -178402,27in 4K Gaming Monitor,1,389.99,04/15/19 20:05,"420 Washington St, Austin, TX 73301" -178403,Google Phone,1,600,04/05/19 01:07,"665 Spruce St, New York City, NY 10001" -178404,Bose SoundSport Headphones,1,99.99,04/06/19 21:10,"425 2nd St, Seattle, WA 98101" -178404,USB-C Charging Cable,1,11.95,04/06/19 21:10,"425 2nd St, Seattle, WA 98101" -178405,Wired Headphones,1,11.99,04/15/19 09:16,"742 Johnson St, San Francisco, CA 94016" -178406,27in 4K Gaming Monitor,1,389.99,04/13/19 19:07,"649 1st St, Los Angeles, CA 90001" -178407,Lightning Charging Cable,1,14.95,04/01/19 06:14,"384 4th St, Los Angeles, CA 90001" -178408,AAA Batteries (4-pack),1,2.99,04/20/19 22:30,"116 Hickory St, Seattle, WA 98101" -178409,Lightning Charging Cable,1,14.95,04/19/19 19:32,"117 Hickory St, Portland, OR 97035" -178410,34in Ultrawide Monitor,1,379.99,04/29/19 20:32,"671 North St, Los Angeles, CA 90001" -178411,Bose SoundSport Headphones,1,99.99,04/29/19 10:33,"518 West St, San Francisco, CA 94016" -178412,Vareebadd Phone,1,400,04/05/19 18:58,"743 Forest St, New York City, NY 10001" -178412,Wired Headphones,1,11.99,04/05/19 18:58,"743 Forest St, New York City, NY 10001" -178413,ThinkPad Laptop,1,999.99,04/21/19 19:10,"629 Maple St, San Francisco, CA 94016" -178414,Lightning Charging Cable,1,14.95,04/14/19 09:02,"881 Jefferson St, Los Angeles, CA 90001" -178415,Google Phone,1,600,04/08/19 20:25,"540 Washington St, New York City, NY 10001" -178416,AAA Batteries (4-pack),1,2.99,04/27/19 18:19,"232 Lake St, Los Angeles, CA 90001" -178417,AAA Batteries (4-pack),2,2.99,04/11/19 08:05,"363 Lake St, Boston, MA 02215" -178418,AAA Batteries (4-pack),5,2.99,04/26/19 11:09,"62 Pine St, San Francisco, CA 94016" -178419,Lightning Charging Cable,1,14.95,04/18/19 10:55,"16 Willow St, Atlanta, GA 30301" -178420,USB-C Charging Cable,1,11.95,04/01/19 23:13,"297 Spruce St, New York City, NY 10001" -178421,Flatscreen TV,1,300,04/07/19 13:25,"56 5th St, San Francisco, CA 94016" -178422,Macbook Pro Laptop,1,1700,04/14/19 19:16,"236 North St, Dallas, TX 75001" -178423,Google Phone,1,600,04/08/19 21:08,"402 Church St, San Francisco, CA 94016" -178424,AAA Batteries (4-pack),1,2.99,04/15/19 13:59,"871 1st St, Portland, OR 97035" -178425,Apple Airpods Headphones,1,150,04/16/19 22:51,"50 Adams St, San Francisco, CA 94016" -178426,Lightning Charging Cable,1,14.95,04/02/19 15:34,"53 Forest St, New York City, NY 10001" -178427,Lightning Charging Cable,1,14.95,04/07/19 17:53,"905 Main St, New York City, NY 10001" -178428,Apple Airpods Headphones,1,150,04/21/19 06:48,"102 Ridge St, Portland, OR 97035" -178429,Lightning Charging Cable,1,14.95,04/17/19 19:12,"560 Madison St, Dallas, TX 75001" -178430,USB-C Charging Cable,2,11.95,04/24/19 13:25,"254 8th St, Austin, TX 73301" -178431,Apple Airpods Headphones,1,150,04/18/19 22:07,"74 5th St, Portland, OR 97035" -178432,Bose SoundSport Headphones,1,99.99,04/13/19 14:17,"40 12th St, Seattle, WA 98101" -178432,USB-C Charging Cable,1,11.95,04/13/19 14:17,"40 12th St, Seattle, WA 98101" -178433,Lightning Charging Cable,1,14.95,04/17/19 12:36,"550 Madison St, San Francisco, CA 94016" -178434,Lightning Charging Cable,2,14.95,04/13/19 19:39,"252 Washington St, Los Angeles, CA 90001" -178435,27in 4K Gaming Monitor,1,389.99,04/20/19 22:31,"509 Chestnut St, Boston, MA 02215" -178436,USB-C Charging Cable,1,11.95,04/25/19 18:11,"72 Hickory St, San Francisco, CA 94016" -178437,Apple Airpods Headphones,1,150,04/16/19 21:26,"271 Elm St, Los Angeles, CA 90001" -178438,Apple Airpods Headphones,1,150,04/25/19 18:46,"364 5th St, New York City, NY 10001" -178439,Bose SoundSport Headphones,1,99.99,04/21/19 16:59,"527 Ridge St, Austin, TX 73301" -178440,Bose SoundSport Headphones,1,99.99,04/08/19 20:44,"897 12th St, New York City, NY 10001" -178441,Bose SoundSport Headphones,1,99.99,04/12/19 13:54,"986 Johnson St, San Francisco, CA 94016" -178442,AA Batteries (4-pack),2,3.84,04/26/19 09:07,"338 Willow St, Austin, TX 73301" -178443,Bose SoundSport Headphones,1,99.99,04/13/19 13:52,"727 Center St, Los Angeles, CA 90001" -178444,AAA Batteries (4-pack),2,2.99,04/28/19 02:11,"76 Madison St, Los Angeles, CA 90001" -178445,Wired Headphones,1,11.99,04/27/19 22:27,"780 6th St, Boston, MA 02215" -178446,Wired Headphones,1,11.99,04/07/19 17:09,"666 Center St, Seattle, WA 98101" -178447,iPhone,1,700,04/29/19 20:11,"873 Lincoln St, Seattle, WA 98101" -178448,ThinkPad Laptop,1,999.99,04/30/19 16:21,"153 River St, San Francisco, CA 94016" -178449,Apple Airpods Headphones,1,150,04/29/19 11:57,"889 6th St, Boston, MA 02215" -178450,AAA Batteries (4-pack),1,2.99,04/28/19 17:44,"584 Lakeview St, Boston, MA 02215" -178451,AA Batteries (4-pack),2,3.84,04/15/19 15:45,"890 Spruce St, San Francisco, CA 94016" -178452,34in Ultrawide Monitor,1,379.99,04/17/19 15:00,"963 River St, New York City, NY 10001" -178453,AA Batteries (4-pack),1,3.84,04/08/19 15:25,"519 Cherry St, Seattle, WA 98101" -178454,27in 4K Gaming Monitor,1,389.99,04/23/19 15:18,"533 South St, Austin, TX 73301" -,,,,, -178455,Apple Airpods Headphones,1,150,04/25/19 10:59,"598 Chestnut St, Los Angeles, CA 90001" -178456,Flatscreen TV,1,300,04/21/19 18:12,"259 Church St, Austin, TX 73301" -178457,Wired Headphones,2,11.99,04/03/19 18:49,"689 Center St, Los Angeles, CA 90001" -178458,Apple Airpods Headphones,1,150,04/08/19 10:23,"160 Lakeview St, Seattle, WA 98101" -178459,Lightning Charging Cable,1,14.95,04/06/19 22:43,"614 Madison St, Portland, OR 97035" -178460,AAA Batteries (4-pack),2,2.99,04/21/19 10:39,"537 Cedar St, New York City, NY 10001" -178461,USB-C Charging Cable,1,11.95,04/08/19 11:01,"982 Dogwood St, San Francisco, CA 94016" -178462,Flatscreen TV,1,300,04/20/19 09:47,"553 Hickory St, San Francisco, CA 94016" -178463,Apple Airpods Headphones,1,150,04/19/19 21:36,"992 Sunset St, Boston, MA 02215" -178464,AAA Batteries (4-pack),2,2.99,04/19/19 20:05,"778 Forest St, Los Angeles, CA 90001" -178465,Bose SoundSport Headphones,1,99.99,04/05/19 01:29,"840 Church St, Boston, MA 02215" -178466,USB-C Charging Cable,1,11.95,04/13/19 15:08,"838 13th St, Seattle, WA 98101" -178467,Lightning Charging Cable,1,14.95,04/16/19 11:27,"249 Highland St, San Francisco, CA 94016" -178468,AAA Batteries (4-pack),1,2.99,04/30/19 14:24,"628 8th St, Atlanta, GA 30301" -178469,Lightning Charging Cable,1,14.95,04/21/19 14:11,"318 North St, San Francisco, CA 94016" -178470,USB-C Charging Cable,1,11.95,04/01/19 20:15,"658 10th St, San Francisco, CA 94016" -178471,AA Batteries (4-pack),1,3.84,04/24/19 17:16,"234 Main St, Portland, ME 04101" -178472,Macbook Pro Laptop,1,1700,04/03/19 12:35,"789 4th St, San Francisco, CA 94016" -178473,20in Monitor,1,109.99,04/18/19 13:21,"408 Hill St, Boston, MA 02215" -178474,Macbook Pro Laptop,1,1700,04/21/19 19:37,"333 Forest St, Atlanta, GA 30301" -178475,Bose SoundSport Headphones,1,99.99,04/15/19 12:52,"774 5th St, Seattle, WA 98101" -178476,AA Batteries (4-pack),4,3.84,04/30/19 11:46,"233 Dogwood St, New York City, NY 10001" -178477,Apple Airpods Headphones,1,150,04/11/19 18:51,"129 Cedar St, Los Angeles, CA 90001" -178478,Wired Headphones,1,11.99,04/13/19 09:08,"663 Hickory St, New York City, NY 10001" -178479,USB-C Charging Cable,1,11.95,04/05/19 17:31,"647 Washington St, Los Angeles, CA 90001" -178480,27in FHD Monitor,1,149.99,04/30/19 01:29,"388 9th St, San Francisco, CA 94016" -178481,Bose SoundSport Headphones,1,99.99,04/07/19 17:21,"686 6th St, New York City, NY 10001" -178482,AAA Batteries (4-pack),1,2.99,04/23/19 10:53,"822 Center St, San Francisco, CA 94016" -178483,27in 4K Gaming Monitor,1,389.99,04/08/19 16:53,"808 North St, Boston, MA 02215" -178484,Apple Airpods Headphones,1,150,04/16/19 11:58,"934 Maple St, Los Angeles, CA 90001" -178485,Lightning Charging Cable,1,14.95,04/25/19 18:05,"669 Lake St, Seattle, WA 98101" -178486,AA Batteries (4-pack),1,3.84,04/16/19 10:36,"129 Ridge St, San Francisco, CA 94016" -178487,Lightning Charging Cable,1,14.95,04/17/19 10:38,"566 Sunset St, San Francisco, CA 94016" -178488,AAA Batteries (4-pack),1,2.99,04/04/19 20:19,"923 Jefferson St, New York City, NY 10001" -178489,Wired Headphones,1,11.99,04/16/19 11:03,"982 North St, San Francisco, CA 94016" -178490,AAA Batteries (4-pack),1,2.99,04/18/19 11:40,"467 Church St, San Francisco, CA 94016" -178491,USB-C Charging Cable,1,11.95,04/14/19 16:59,"714 8th St, San Francisco, CA 94016" -178492,AA Batteries (4-pack),1,3.84,04/21/19 22:33,"625 South St, Seattle, WA 98101" -178493,Flatscreen TV,1,300,04/14/19 09:43,"177 Chestnut St, Dallas, TX 75001" -178494,34in Ultrawide Monitor,1,379.99,04/07/19 17:33,"772 Jackson St, Atlanta, GA 30301" -178495,Lightning Charging Cable,1,14.95,04/19/19 13:44,"356 8th St, Los Angeles, CA 90001" -178496,Bose SoundSport Headphones,1,99.99,04/18/19 16:52,"9 Park St, Atlanta, GA 30301" -178497,USB-C Charging Cable,1,11.95,04/07/19 14:12,"444 Sunset St, Dallas, TX 75001" -178498,ThinkPad Laptop,1,999.99,04/24/19 19:31,"375 West St, San Francisco, CA 94016" -178499,AAA Batteries (4-pack),3,2.99,04/25/19 13:36,"800 Dogwood St, San Francisco, CA 94016" -178500,Bose SoundSport Headphones,1,99.99,04/03/19 20:49,"337 Johnson St, New York City, NY 10001" -178501,27in FHD Monitor,1,149.99,04/08/19 19:00,"607 Hill St, Portland, OR 97035" -178502,AAA Batteries (4-pack),1,2.99,04/21/19 08:38,"475 Hill St, New York City, NY 10001" -178503,Apple Airpods Headphones,1,150,04/20/19 21:39,"384 Jefferson St, San Francisco, CA 94016" -178504,USB-C Charging Cable,1,11.95,04/06/19 12:07,"853 Cedar St, Portland, ME 04101" -178505,Apple Airpods Headphones,1,150,04/28/19 14:57,"916 Meadow St, Atlanta, GA 30301" -178506,Apple Airpods Headphones,1,150,04/02/19 13:24,"434 Hickory St, Seattle, WA 98101" -178507,AAA Batteries (4-pack),1,2.99,04/26/19 17:41,"427 Lakeview St, San Francisco, CA 94016" -178508,Lightning Charging Cable,1,14.95,04/07/19 16:54,"161 Pine St, Dallas, TX 75001" -178509,27in 4K Gaming Monitor,1,389.99,04/28/19 23:26,"85 Washington St, Los Angeles, CA 90001" -178510,27in 4K Gaming Monitor,1,389.99,04/14/19 20:37,"664 10th St, Seattle, WA 98101" -178511,Apple Airpods Headphones,1,150,04/30/19 21:12,"2 Forest St, Dallas, TX 75001" -178512,Apple Airpods Headphones,1,150,04/15/19 19:41,"218 11th St, Seattle, WA 98101" -178513,USB-C Charging Cable,1,11.95,04/12/19 15:16,"347 Johnson St, New York City, NY 10001" -178514,34in Ultrawide Monitor,1,379.99,04/08/19 19:24,"332 Church St, San Francisco, CA 94016" -178515,ThinkPad Laptop,1,999.99,04/16/19 19:31,"994 Madison St, Seattle, WA 98101" -178516,Lightning Charging Cable,1,14.95,04/17/19 23:43,"845 14th St, Los Angeles, CA 90001" -178517,AA Batteries (4-pack),1,3.84,04/16/19 21:46,"836 Dogwood St, Atlanta, GA 30301" -178518,Bose SoundSport Headphones,1,99.99,04/04/19 12:47,"763 Jefferson St, Dallas, TX 75001" -178519,20in Monitor,1,109.99,04/04/19 12:13,"248 Sunset St, Portland, OR 97035" -178520,USB-C Charging Cable,2,11.95,04/15/19 15:15,"459 West St, Seattle, WA 98101" -178521,Wired Headphones,1,11.99,04/08/19 09:55,"47 2nd St, Atlanta, GA 30301" -178522,AA Batteries (4-pack),2,3.84,04/20/19 14:27,"451 North St, New York City, NY 10001" -178523,USB-C Charging Cable,1,11.95,04/08/19 13:54,"840 Jefferson St, Boston, MA 02215" -178523,20in Monitor,1,109.99,04/08/19 13:54,"840 Jefferson St, Boston, MA 02215" -178524,27in 4K Gaming Monitor,1,389.99,04/15/19 16:21,"27 Main St, New York City, NY 10001" -178525,AAA Batteries (4-pack),2,2.99,04/01/19 15:55,"537 Lakeview St, Los Angeles, CA 90001" -178525,AA Batteries (4-pack),2,3.84,04/01/19 15:55,"537 Lakeview St, Los Angeles, CA 90001" -178526,27in FHD Monitor,1,149.99,04/01/19 21:10,"479 Jefferson St, Seattle, WA 98101" -178527,AA Batteries (4-pack),1,3.84,04/05/19 23:17,"169 Wilson St, Los Angeles, CA 90001" -178527,Bose SoundSport Headphones,1,99.99,04/05/19 23:17,"169 Wilson St, Los Angeles, CA 90001" -178528,AA Batteries (4-pack),1,3.84,04/27/19 19:49,"420 5th St, San Francisco, CA 94016" -178529,AAA Batteries (4-pack),2,2.99,04/16/19 18:44,"780 Chestnut St, San Francisco, CA 94016" -178530,iPhone,1,700,04/21/19 09:57,"109 West St, San Francisco, CA 94016" -178531,Lightning Charging Cable,1,14.95,04/11/19 10:10,"335 Lincoln St, San Francisco, CA 94016" -178532,Bose SoundSport Headphones,1,99.99,04/03/19 15:09,"758 6th St, San Francisco, CA 94016" -178533,AAA Batteries (4-pack),1,2.99,04/20/19 18:05,"10 Spruce St, New York City, NY 10001" -178534,Apple Airpods Headphones,1,150,04/15/19 16:10,"213 Meadow St, Atlanta, GA 30301" -178535,Bose SoundSport Headphones,1,99.99,04/26/19 09:41,"320 Wilson St, Atlanta, GA 30301" -178536,20in Monitor,1,109.99,04/29/19 19:22,"523 6th St, San Francisco, CA 94016" -178537,AA Batteries (4-pack),1,3.84,04/29/19 20:48,"416 Washington St, Boston, MA 02215" -178538,AA Batteries (4-pack),1,3.84,04/06/19 07:18,"932 Center St, Los Angeles, CA 90001" -178539,34in Ultrawide Monitor,1,379.99,04/29/19 10:38,"576 West St, Los Angeles, CA 90001" -178540,Lightning Charging Cable,1,14.95,04/19/19 14:56,"237 Cherry St, San Francisco, CA 94016" -178541,USB-C Charging Cable,1,11.95,04/17/19 21:13,"574 Lincoln St, Portland, OR 97035" -178542,34in Ultrawide Monitor,1,379.99,04/07/19 12:34,"495 Lake St, Portland, OR 97035" -178543,AA Batteries (4-pack),2,3.84,04/05/19 11:47,"558 1st St, San Francisco, CA 94016" -178544,USB-C Charging Cable,1,11.95,04/21/19 17:01,"602 River St, Austin, TX 73301" -178545,Lightning Charging Cable,1,14.95,04/08/19 15:35,"81 Lincoln St, Portland, OR 97035" -178546,Wired Headphones,1,11.99,04/05/19 05:21,"538 Spruce St, Boston, MA 02215" -178547,27in FHD Monitor,1,149.99,04/21/19 14:13,"561 Lincoln St, Seattle, WA 98101" -178548,34in Ultrawide Monitor,1,379.99,04/12/19 20:13,"773 Dogwood St, New York City, NY 10001" -178549,Wired Headphones,1,11.99,04/05/19 10:49,"292 Chestnut St, Portland, ME 04101" -178550,Google Phone,1,600,04/17/19 14:50,"714 Willow St, San Francisco, CA 94016" -178551,Wired Headphones,1,11.99,04/11/19 20:55,"748 Hickory St, Los Angeles, CA 90001" -178552,Apple Airpods Headphones,1,150,04/16/19 13:16,"11 Highland St, Seattle, WA 98101" -178553,Wired Headphones,1,11.99,04/30/19 18:19,"175 Cherry St, Portland, OR 97035" -178554,Lightning Charging Cable,1,14.95,04/16/19 16:08,"467 7th St, San Francisco, CA 94016" -178555,Wired Headphones,1,11.99,04/10/19 12:18,"787 Elm St, Los Angeles, CA 90001" -178556,Bose SoundSport Headphones,1,99.99,04/10/19 13:30,"664 Washington St, Los Angeles, CA 90001" -178557,AAA Batteries (4-pack),1,2.99,04/29/19 20:26,"937 Sunset St, Seattle, WA 98101" -178558,27in FHD Monitor,1,149.99,04/27/19 19:43,"425 Madison St, Portland, OR 97035" -178559,20in Monitor,1,109.99,04/13/19 22:41,"24 Willow St, San Francisco, CA 94016" -178560,Vareebadd Phone,1,400,04/27/19 20:54,"986 12th St, Seattle, WA 98101" -178561,34in Ultrawide Monitor,1,379.99,04/30/19 12:22,"410 North St, Portland, OR 97035" -178562,Apple Airpods Headphones,1,150,04/22/19 11:43,"158 Walnut St, Los Angeles, CA 90001" -178563,AAA Batteries (4-pack),3,2.99,04/08/19 12:42,"195 Church St, Austin, TX 73301" -178564,Flatscreen TV,1,300,04/04/19 16:57,"38 10th St, Boston, MA 02215" -178565,USB-C Charging Cable,1,11.95,04/14/19 16:49,"145 South St, San Francisco, CA 94016" -178566,AA Batteries (4-pack),1,3.84,04/15/19 23:41,"260 Hickory St, New York City, NY 10001" -178567,Flatscreen TV,1,300,04/27/19 20:16,"267 9th St, Atlanta, GA 30301" -178568,Apple Airpods Headphones,1,150,04/30/19 05:31,"95 2nd St, Seattle, WA 98101" -178569,USB-C Charging Cable,2,11.95,04/21/19 14:09,"636 Cedar St, Portland, OR 97035" -178570,27in 4K Gaming Monitor,1,389.99,04/05/19 14:24,"123 Lakeview St, San Francisco, CA 94016" -178571,34in Ultrawide Monitor,1,379.99,04/18/19 13:46,"253 Jefferson St, Boston, MA 02215" -178572,USB-C Charging Cable,1,11.95,04/21/19 09:16,"177 Pine St, San Francisco, CA 94016" -178572,27in 4K Gaming Monitor,1,389.99,04/21/19 09:16,"177 Pine St, San Francisco, CA 94016" -178573,ThinkPad Laptop,1,999.99,04/14/19 10:07,"929 Spruce St, Dallas, TX 75001" -178574,Wired Headphones,1,11.99,04/14/19 06:25,"879 Ridge St, Boston, MA 02215" -178575,Lightning Charging Cable,1,14.95,04/20/19 06:02,"331 14th St, San Francisco, CA 94016" -178576,AAA Batteries (4-pack),1,2.99,04/26/19 10:40,"576 Chestnut St, Los Angeles, CA 90001" -178577,20in Monitor,1,109.99,04/06/19 12:37,"485 Highland St, Dallas, TX 75001" -178578,AAA Batteries (4-pack),2,2.99,04/29/19 17:18,"27 11th St, San Francisco, CA 94016" -178579,Bose SoundSport Headphones,1,99.99,04/07/19 22:36,"561 11th St, Atlanta, GA 30301" -178580,Wired Headphones,1,11.99,04/11/19 12:02,"902 11th St, Portland, OR 97035" -178581,Wired Headphones,1,11.99,04/19/19 17:34,"935 7th St, New York City, NY 10001" -178582,AAA Batteries (4-pack),3,2.99,04/19/19 08:58,"168 Jefferson St, Atlanta, GA 30301" -178583,AAA Batteries (4-pack),1,2.99,04/09/19 17:33,"193 2nd St, San Francisco, CA 94016" -178584,Macbook Pro Laptop,1,1700,04/30/19 14:51,"969 10th St, Portland, OR 97035" -178585,Apple Airpods Headphones,1,150,04/05/19 21:17,"211 Highland St, New York City, NY 10001" -178586,20in Monitor,1,109.99,04/23/19 23:59,"479 9th St, Los Angeles, CA 90001" -178587,AA Batteries (4-pack),1,3.84,04/26/19 10:05,"424 1st St, Dallas, TX 75001" -178588,USB-C Charging Cable,1,11.95,04/03/19 19:09,"382 Dogwood St, Austin, TX 73301" -178589,27in 4K Gaming Monitor,1,389.99,04/02/19 17:22,"390 Ridge St, Seattle, WA 98101" -178590,27in FHD Monitor,1,149.99,04/06/19 23:06,"125 River St, Boston, MA 02215" -178591,Bose SoundSport Headphones,1,99.99,04/07/19 19:00,"987 Lincoln St, Seattle, WA 98101" -178592,iPhone,1,700,04/05/19 22:07,"54 Spruce St, New York City, NY 10001" -178593,AAA Batteries (4-pack),4,2.99,04/07/19 13:32,"516 10th St, San Francisco, CA 94016" -178594,AAA Batteries (4-pack),1,2.99,04/01/19 19:08,"532 Pine St, San Francisco, CA 94016" -178595,Lightning Charging Cable,1,14.95,04/30/19 23:11,"176 Sunset St, San Francisco, CA 94016" -178596,Lightning Charging Cable,1,14.95,04/17/19 15:56,"937 Elm St, San Francisco, CA 94016" -178597,27in 4K Gaming Monitor,1,389.99,04/25/19 21:25,"607 Washington St, Los Angeles, CA 90001" -178598,Lightning Charging Cable,1,14.95,04/14/19 19:16,"518 North St, San Francisco, CA 94016" -178599,Flatscreen TV,1,300,04/17/19 15:01,"584 Forest St, Atlanta, GA 30301" -178600,Apple Airpods Headphones,1,150,04/18/19 11:51,"12 Hickory St, Los Angeles, CA 90001" -178601,Lightning Charging Cable,1,14.95,04/11/19 13:36,"442 7th St, Boston, MA 02215" -178602,Lightning Charging Cable,1,14.95,04/05/19 15:31,"694 13th St, New York City, NY 10001" -178603,USB-C Charging Cable,1,11.95,04/22/19 22:54,"719 Wilson St, Atlanta, GA 30301" -178604,Wired Headphones,1,11.99,04/24/19 23:00,"881 Jackson St, New York City, NY 10001" -178605,AAA Batteries (4-pack),1,2.99,04/07/19 17:11,"10 Maple St, Portland, OR 97035" -178606,AA Batteries (4-pack),1,3.84,04/06/19 20:25,"406 Hickory St, Austin, TX 73301" -178607,Lightning Charging Cable,1,14.95,04/03/19 20:15,"88 Elm St, San Francisco, CA 94016" -178608,USB-C Charging Cable,1,11.95,04/25/19 18:31,"409 South St, Portland, OR 97035" -178609,Wired Headphones,1,11.99,04/29/19 04:27,"881 Hickory St, San Francisco, CA 94016" -178610,Wired Headphones,1,11.99,04/09/19 18:04,"633 Highland St, Los Angeles, CA 90001" -178611,AA Batteries (4-pack),1,3.84,04/14/19 11:02,"866 South St, Boston, MA 02215" -178612,AAA Batteries (4-pack),1,2.99,04/23/19 10:41,"810 Dogwood St, Atlanta, GA 30301" -178613,27in FHD Monitor,1,149.99,04/01/19 18:06,"919 Lake St, Los Angeles, CA 90001" -178614,AA Batteries (4-pack),2,3.84,04/06/19 16:17,"681 Ridge St, Los Angeles, CA 90001" -178615,Lightning Charging Cable,1,14.95,04/17/19 20:33,"153 Washington St, Austin, TX 73301" -178616,34in Ultrawide Monitor,1,379.99,04/26/19 14:25,"646 Meadow St, San Francisco, CA 94016" -178617,AA Batteries (4-pack),1,3.84,04/21/19 15:50,"572 Chestnut St, Portland, OR 97035" -178618,Apple Airpods Headphones,1,150,04/18/19 01:50,"323 Chestnut St, New York City, NY 10001" -178619,Lightning Charging Cable,1,14.95,04/13/19 21:32,"847 Maple St, San Francisco, CA 94016" -178620,Bose SoundSport Headphones,1,99.99,04/22/19 23:06,"805 7th St, New York City, NY 10001" -178621,Apple Airpods Headphones,1,150,04/01/19 13:43,"172 Chestnut St, Atlanta, GA 30301" -178622,Bose SoundSport Headphones,1,99.99,04/01/19 22:05,"328 Cedar St, San Francisco, CA 94016" -178623,Bose SoundSport Headphones,1,99.99,04/24/19 17:44,"822 Willow St, San Francisco, CA 94016" -178624,Lightning Charging Cable,1,14.95,04/06/19 21:23,"515 Madison St, San Francisco, CA 94016" -178625,Macbook Pro Laptop,1,1700,04/27/19 16:10,"161 6th St, San Francisco, CA 94016" -178626,AA Batteries (4-pack),1,3.84,04/07/19 23:27,"441 Park St, New York City, NY 10001" -178627,Lightning Charging Cable,1,14.95,04/12/19 10:15,"375 4th St, Los Angeles, CA 90001" -178628,Lightning Charging Cable,1,14.95,04/13/19 21:26,"131 12th St, Los Angeles, CA 90001" -178629,Apple Airpods Headphones,1,150,04/04/19 01:56,"627 Pine St, San Francisco, CA 94016" -178630,AA Batteries (4-pack),1,3.84,04/23/19 12:28,"854 Center St, Dallas, TX 75001" -178631,AAA Batteries (4-pack),1,2.99,04/02/19 10:58,"287 7th St, San Francisco, CA 94016" -178632,AA Batteries (4-pack),2,3.84,04/12/19 13:42,"703 Elm St, San Francisco, CA 94016" -178633,34in Ultrawide Monitor,1,379.99,04/12/19 20:06,"966 Jackson St, New York City, NY 10001" -178634,Apple Airpods Headphones,1,150,04/25/19 16:38,"85 5th St, Dallas, TX 75001" -178635,Bose SoundSport Headphones,1,99.99,04/27/19 13:21,"316 Madison St, San Francisco, CA 94016" -178636,Macbook Pro Laptop,1,1700,04/25/19 13:53,"853 10th St, New York City, NY 10001" -178637,Lightning Charging Cable,1,14.95,04/17/19 11:54,"74 Main St, Portland, OR 97035" -178638,ThinkPad Laptop,1,999.99,04/27/19 00:24,"807 Elm St, Austin, TX 73301" -178639,AA Batteries (4-pack),2,3.84,04/14/19 07:29,"508 Park St, Seattle, WA 98101" -178640,USB-C Charging Cable,1,11.95,04/13/19 01:32,"270 9th St, Los Angeles, CA 90001" -178641,USB-C Charging Cable,1,11.95,04/18/19 13:09,"435 8th St, New York City, NY 10001" -178642,USB-C Charging Cable,1,11.95,04/01/19 14:02,"619 Park St, San Francisco, CA 94016" -178643,Bose SoundSport Headphones,1,99.99,04/08/19 14:05,"62 Main St, Los Angeles, CA 90001" -178644,Wired Headphones,2,11.99,04/07/19 20:45,"680 Dogwood St, Boston, MA 02215" -178645,Lightning Charging Cable,1,14.95,04/16/19 07:35,"561 13th St, Portland, OR 97035" -178646,20in Monitor,1,109.99,04/08/19 12:27,"409 Jefferson St, San Francisco, CA 94016" -178647,AAA Batteries (4-pack),1,2.99,04/20/19 19:15,"599 Sunset St, Austin, TX 73301" -178648,Macbook Pro Laptop,1,1700,04/23/19 16:11,"669 Walnut St, New York City, NY 10001" -178649,20in Monitor,1,109.99,04/05/19 16:37,"744 8th St, New York City, NY 10001" -178650,Apple Airpods Headphones,1,150,04/06/19 18:54,"33 Jefferson St, Boston, MA 02215" -178651,Google Phone,1,600,04/27/19 06:18,"455 Walnut St, San Francisco, CA 94016" -178652,AAA Batteries (4-pack),1,2.99,04/28/19 14:36,"377 Madison St, Atlanta, GA 30301" -178653,AAA Batteries (4-pack),1,2.99,04/01/19 21:41,"665 Walnut St, New York City, NY 10001" -178654,34in Ultrawide Monitor,1,379.99,04/21/19 18:46,"373 South St, Dallas, TX 75001" -178655,Apple Airpods Headphones,1,150,04/07/19 20:18,"555 Adams St, Dallas, TX 75001" -178656,USB-C Charging Cable,1,11.95,04/01/19 19:47,"494 South St, Boston, MA 02215" -178657,AAA Batteries (4-pack),1,2.99,04/26/19 12:53,"462 8th St, New York City, NY 10001" -178658,USB-C Charging Cable,1,11.95,04/08/19 10:53,"76 Jackson St, San Francisco, CA 94016" -178659,27in 4K Gaming Monitor,1,389.99,04/25/19 21:57,"515 Ridge St, Seattle, WA 98101" -178660,Lightning Charging Cable,1,14.95,04/28/19 12:49,"77 Cherry St, Boston, MA 02215" -178661,27in FHD Monitor,1,149.99,04/29/19 11:02,"569 2nd St, Boston, MA 02215" -178662,Wired Headphones,1,11.99,04/21/19 12:47,"641 Spruce St, San Francisco, CA 94016" -178663,USB-C Charging Cable,1,11.95,04/25/19 14:40,"553 Highland St, New York City, NY 10001" -178664,Apple Airpods Headphones,1,150,04/22/19 13:24,"606 Elm St, Dallas, TX 75001" -178665,USB-C Charging Cable,2,11.95,04/29/19 15:38,"827 Willow St, Portland, OR 97035" -178666,20in Monitor,1,109.99,04/23/19 19:37,"604 Jackson St, Los Angeles, CA 90001" -178667,Wired Headphones,1,11.99,04/02/19 23:41,"975 13th St, Seattle, WA 98101" -178668,Bose SoundSport Headphones,1,99.99,04/02/19 21:51,"161 Main St, San Francisco, CA 94016" -178669,AAA Batteries (4-pack),2,2.99,04/02/19 13:57,"155 Cedar St, San Francisco, CA 94016" -178670,iPhone,1,700,04/20/19 19:04,"24 Lincoln St, Dallas, TX 75001" -178671,iPhone,1,700,04/29/19 07:22,"349 Lakeview St, San Francisco, CA 94016" -178672,AAA Batteries (4-pack),1,2.99,04/27/19 10:57,"939 Main St, Los Angeles, CA 90001" -178673,USB-C Charging Cable,2,11.95,04/14/19 23:01,"289 Main St, Dallas, TX 75001" -178674,AAA Batteries (4-pack),1,2.99,04/18/19 17:01,"582 Lake St, San Francisco, CA 94016" -178675,27in FHD Monitor,1,149.99,04/08/19 08:37,"236 Cherry St, Austin, TX 73301" -178676,Flatscreen TV,1,300,04/29/19 08:50,"814 Park St, Portland, OR 97035" -178677,Bose SoundSport Headphones,1,99.99,04/20/19 18:02,"851 12th St, Los Angeles, CA 90001" -178678,AA Batteries (4-pack),1,3.84,04/08/19 20:09,"97 11th St, Seattle, WA 98101" -178679,Bose SoundSport Headphones,1,99.99,04/03/19 21:11,"931 11th St, Dallas, TX 75001" -178680,Lightning Charging Cable,1,14.95,04/18/19 20:11,"9 Johnson St, Austin, TX 73301" -178681,USB-C Charging Cable,1,11.95,04/16/19 23:29,"442 7th St, Los Angeles, CA 90001" -178682,AA Batteries (4-pack),2,3.84,04/12/19 06:46,"387 2nd St, San Francisco, CA 94016" -178683,27in 4K Gaming Monitor,1,389.99,04/12/19 18:49,"799 Lincoln St, Portland, OR 97035" -178684,Wired Headphones,1,11.99,04/11/19 14:32,"447 Cedar St, San Francisco, CA 94016" -178685,AAA Batteries (4-pack),1,2.99,04/29/19 14:48,"756 Hickory St, Dallas, TX 75001" -178686,Flatscreen TV,1,300,04/23/19 19:07,"91 8th St, San Francisco, CA 94016" -178687,Wired Headphones,1,11.99,04/05/19 20:51,"767 Walnut St, Boston, MA 02215" -178688,27in 4K Gaming Monitor,1,389.99,04/05/19 19:56,"524 Spruce St, Portland, OR 97035" -178689,USB-C Charging Cable,2,11.95,04/26/19 22:43,"334 Church St, Atlanta, GA 30301" -178690,AA Batteries (4-pack),1,3.84,04/11/19 10:27,"192 1st St, Atlanta, GA 30301" -178691,27in 4K Gaming Monitor,1,389.99,04/21/19 10:27,"396 Sunset St, New York City, NY 10001" -178692,USB-C Charging Cable,1,11.95,04/10/19 12:59,"882 River St, Seattle, WA 98101" -178693,AA Batteries (4-pack),1,3.84,04/02/19 00:45,"675 West St, Los Angeles, CA 90001" -178694,Lightning Charging Cable,1,14.95,04/15/19 21:29,"929 Park St, Boston, MA 02215" -178695,Bose SoundSport Headphones,1,99.99,04/22/19 22:07,"455 Cedar St, New York City, NY 10001" -178696,Macbook Pro Laptop,1,1700,04/25/19 17:45,"39 9th St, Austin, TX 73301" -178697,Apple Airpods Headphones,1,150,04/14/19 18:06,"400 Main St, Seattle, WA 98101" -178698,Lightning Charging Cable,1,14.95,04/30/19 12:51,"115 12th St, Los Angeles, CA 90001" -178699,Lightning Charging Cable,1,14.95,04/03/19 21:59,"554 11th St, San Francisco, CA 94016" -178700,USB-C Charging Cable,1,11.95,04/12/19 20:26,"537 Johnson St, San Francisco, CA 94016" -178701,Lightning Charging Cable,1,14.95,04/07/19 17:48,"378 Meadow St, New York City, NY 10001" -178702,USB-C Charging Cable,1,11.95,04/07/19 15:32,"747 Wilson St, Dallas, TX 75001" -178703,AAA Batteries (4-pack),1,2.99,04/21/19 19:21,"412 Johnson St, New York City, NY 10001" -178704,AA Batteries (4-pack),1,3.84,04/21/19 19:29,"325 Lincoln St, San Francisco, CA 94016" -178705,Lightning Charging Cable,1,14.95,04/07/19 20:21,"22 9th St, Atlanta, GA 30301" -178706,34in Ultrawide Monitor,1,379.99,04/20/19 21:51,"795 Wilson St, Los Angeles, CA 90001" -178707,iPhone,1,700,04/11/19 18:33,"834 14th St, Los Angeles, CA 90001" -178708,AAA Batteries (4-pack),1,2.99,04/23/19 14:51,"236 2nd St, New York City, NY 10001" -178709,AAA Batteries (4-pack),1,2.99,04/03/19 16:32,"218 West St, Los Angeles, CA 90001" -178710,Lightning Charging Cable,1,14.95,04/20/19 21:15,"300 Hill St, Portland, OR 97035" -178711,Lightning Charging Cable,1,14.95,04/14/19 13:48,"877 Wilson St, Seattle, WA 98101" -178712,Apple Airpods Headphones,1,150,04/01/19 20:48,"652 6th St, Seattle, WA 98101" -178713,Google Phone,1,600,04/27/19 11:11,"933 Church St, Boston, MA 02215" -178714,AA Batteries (4-pack),1,3.84,04/08/19 22:13,"507 Park St, Los Angeles, CA 90001" -178715,Wired Headphones,1,11.99,04/01/19 09:28,"458 14th St, Boston, MA 02215" -178716,34in Ultrawide Monitor,1,379.99,04/14/19 22:20,"245 Wilson St, New York City, NY 10001" -178717,AA Batteries (4-pack),1,3.84,04/05/19 03:09,"569 Jackson St, San Francisco, CA 94016" -178718,ThinkPad Laptop,1,999.99,04/23/19 00:56,"481 Cherry St, Los Angeles, CA 90001" -178719,ThinkPad Laptop,1,999.99,04/25/19 07:54,"539 6th St, San Francisco, CA 94016" -178720,AA Batteries (4-pack),2,3.84,04/01/19 07:55,"607 West St, Austin, TX 73301" -178721,Apple Airpods Headphones,1,150,04/22/19 22:10,"230 9th St, Seattle, WA 98101" -178722,Apple Airpods Headphones,1,150,04/13/19 23:05,"978 Highland St, San Francisco, CA 94016" -,,,,, -178723,AAA Batteries (4-pack),1,2.99,04/29/19 09:36,"257 Jefferson St, Portland, OR 97035" -178724,AAA Batteries (4-pack),2,2.99,04/20/19 21:51,"741 7th St, San Francisco, CA 94016" -178725,Lightning Charging Cable,1,14.95,04/03/19 19:47,"459 Adams St, New York City, NY 10001" -178726,27in 4K Gaming Monitor,1,389.99,04/10/19 16:39,"926 11th St, Los Angeles, CA 90001" -178727,Lightning Charging Cable,1,14.95,04/16/19 21:28,"944 6th St, New York City, NY 10001" -178728,AA Batteries (4-pack),1,3.84,04/04/19 12:45,"111 1st St, Boston, MA 02215" -178729,USB-C Charging Cable,1,11.95,04/29/19 13:23,"718 Chestnut St, Dallas, TX 75001" -178730,Apple Airpods Headphones,1,150,04/06/19 09:13,"989 8th St, San Francisco, CA 94016" -178731,Macbook Pro Laptop,1,1700,04/02/19 12:01,"918 Walnut St, Los Angeles, CA 90001" -178732,Bose SoundSport Headphones,1,99.99,04/06/19 16:24,"418 11th St, New York City, NY 10001" -178733,LG Dryer,1,600.0,04/22/19 11:59,"5 Wilson St, Seattle, WA 98101" -178734,ThinkPad Laptop,1,999.99,04/27/19 14:04,"957 Highland St, Dallas, TX 75001" -178735,Lightning Charging Cable,1,14.95,04/12/19 15:28,"639 Jefferson St, New York City, NY 10001" -178736,27in 4K Gaming Monitor,1,389.99,04/30/19 20:26,"917 Church St, Austin, TX 73301" -178737,AAA Batteries (4-pack),1,2.99,04/08/19 08:48,"317 Hill St, Los Angeles, CA 90001" -178738,AAA Batteries (4-pack),1,2.99,04/28/19 11:17,"73 Spruce St, San Francisco, CA 94016" -178739,AAA Batteries (4-pack),1,2.99,04/18/19 22:10,"753 Dogwood St, San Francisco, CA 94016" -178740,27in 4K Gaming Monitor,1,389.99,04/28/19 13:04,"581 8th St, Los Angeles, CA 90001" -178741,Apple Airpods Headphones,1,150,04/20/19 16:22,"237 1st St, Seattle, WA 98101" -178742,ThinkPad Laptop,1,999.99,04/06/19 23:32,"28 Walnut St, Seattle, WA 98101" -178743,Lightning Charging Cable,1,14.95,04/13/19 10:43,"329 Hill St, Seattle, WA 98101" -178744,27in 4K Gaming Monitor,1,389.99,04/19/19 15:59,"671 Main St, Los Angeles, CA 90001" -178745,AAA Batteries (4-pack),1,2.99,04/22/19 10:31,"848 Hickory St, San Francisco, CA 94016" -178746,27in FHD Monitor,1,149.99,04/05/19 14:31,"518 4th St, Seattle, WA 98101" -178747,Bose SoundSport Headphones,1,99.99,04/05/19 20:01,"979 Washington St, Seattle, WA 98101" -178748,27in FHD Monitor,1,149.99,04/24/19 17:24,"744 Madison St, Boston, MA 02215" -178749,iPhone,1,700,04/30/19 15:53,"972 Hickory St, San Francisco, CA 94016" -178749,Lightning Charging Cable,1,14.95,04/30/19 15:53,"972 Hickory St, San Francisco, CA 94016" -178750,USB-C Charging Cable,1,11.95,04/03/19 02:26,"242 Wilson St, Boston, MA 02215" -178751,AAA Batteries (4-pack),1,2.99,04/24/19 12:26,"806 Center St, New York City, NY 10001" -178752,Apple Airpods Headphones,1,150,04/02/19 15:27,"748 Willow St, San Francisco, CA 94016" -178753,Apple Airpods Headphones,1,150,04/30/19 14:59,"467 Jackson St, San Francisco, CA 94016" -178754,ThinkPad Laptop,1,999.99,04/21/19 16:59,"571 7th St, Los Angeles, CA 90001" -178755,AA Batteries (4-pack),1,3.84,04/05/19 13:35,"651 14th St, San Francisco, CA 94016" -178756,AA Batteries (4-pack),1,3.84,04/24/19 10:56,"971 Walnut St, Seattle, WA 98101" -178757,Lightning Charging Cable,1,14.95,04/13/19 17:28,"450 Adams St, Atlanta, GA 30301" -178758,Bose SoundSport Headphones,1,99.99,04/24/19 13:57,"602 10th St, San Francisco, CA 94016" -178759,Macbook Pro Laptop,1,1700,04/19/19 18:32,"452 10th St, Atlanta, GA 30301" -178760,AAA Batteries (4-pack),1,2.99,04/24/19 19:12,"766 Chestnut St, Austin, TX 73301" -178761,AAA Batteries (4-pack),1,2.99,04/29/19 19:23,"844 6th St, San Francisco, CA 94016" -178762,27in FHD Monitor,1,149.99,04/09/19 13:09,"681 Willow St, San Francisco, CA 94016" -178763,AA Batteries (4-pack),1,3.84,04/18/19 15:32,"88 4th St, New York City, NY 10001" -178764,34in Ultrawide Monitor,1,379.99,04/22/19 14:42,"779 Hill St, Dallas, TX 75001" -178765,Vareebadd Phone,1,400,04/06/19 20:24,"451 Hill St, New York City, NY 10001" -178766,34in Ultrawide Monitor,1,379.99,04/16/19 16:15,"534 9th St, New York City, NY 10001" -178767,AA Batteries (4-pack),2,3.84,04/24/19 14:59,"819 Lake St, Boston, MA 02215" -178768,AA Batteries (4-pack),3,3.84,04/09/19 17:49,"556 5th St, Dallas, TX 75001" -178769,Wired Headphones,1,11.99,04/17/19 19:11,"781 Cherry St, San Francisco, CA 94016" -178770,Apple Airpods Headphones,1,150,04/08/19 08:58,"689 2nd St, New York City, NY 10001" -178771,Bose SoundSport Headphones,1,99.99,04/07/19 16:14,"58 Lake St, Seattle, WA 98101" -178772,Apple Airpods Headphones,1,150,04/11/19 09:06,"511 Jefferson St, San Francisco, CA 94016" -178773,AA Batteries (4-pack),1,3.84,04/23/19 16:22,"830 Church St, Dallas, TX 75001" -178774,AA Batteries (4-pack),1,3.84,04/20/19 13:07,"78 Park St, Los Angeles, CA 90001" -178775,Lightning Charging Cable,1,14.95,04/30/19 11:02,"458 Willow St, New York City, NY 10001" -178776,Flatscreen TV,1,300,04/22/19 21:25,"370 Adams St, Dallas, TX 75001" -178777,AAA Batteries (4-pack),1,2.99,04/20/19 19:09,"148 Lincoln St, Dallas, TX 75001" -178778,Bose SoundSport Headphones,1,99.99,04/23/19 21:10,"516 13th St, Los Angeles, CA 90001" -178779,AA Batteries (4-pack),3,3.84,04/22/19 12:50,"505 West St, San Francisco, CA 94016" -178780,AA Batteries (4-pack),1,3.84,04/26/19 18:36,"818 1st St, Los Angeles, CA 90001" -178781,Google Phone,1,600,04/03/19 16:47,"655 1st St, San Francisco, CA 94016" -178781,Wired Headphones,1,11.99,04/03/19 16:47,"655 1st St, San Francisco, CA 94016" -178782,Lightning Charging Cable,1,14.95,04/24/19 11:36,"993 12th St, Portland, OR 97035" -178783,Lightning Charging Cable,1,14.95,04/15/19 20:45,"391 Cedar St, Los Angeles, CA 90001" -178784,Apple Airpods Headphones,1,150,04/10/19 16:01,"914 West St, San Francisco, CA 94016" -178785,AAA Batteries (4-pack),2,2.99,04/08/19 14:52,"390 12th St, Los Angeles, CA 90001" -178786,AA Batteries (4-pack),1,3.84,04/26/19 14:32,"5 2nd St, Portland, OR 97035" -178787,Bose SoundSport Headphones,1,99.99,04/22/19 18:37,"531 Pine St, Atlanta, GA 30301" -178788,Bose SoundSport Headphones,1,99.99,04/06/19 16:53,"992 Cedar St, Austin, TX 73301" -178789,Bose SoundSport Headphones,1,99.99,04/13/19 17:36,"318 Center St, San Francisco, CA 94016" -178790,AAA Batteries (4-pack),2,2.99,04/09/19 14:43,"664 River St, Seattle, WA 98101" -178791,AAA Batteries (4-pack),1,2.99,04/27/19 12:56,"28 Hickory St, Los Angeles, CA 90001" -178792,USB-C Charging Cable,1,11.95,04/19/19 17:04,"413 6th St, San Francisco, CA 94016" -178793,AAA Batteries (4-pack),1,2.99,04/10/19 19:34,"26 Lincoln St, Austin, TX 73301" -178794,Lightning Charging Cable,1,14.95,04/25/19 12:07,"100 Maple St, Los Angeles, CA 90001" -178795,Apple Airpods Headphones,1,150,04/17/19 21:48,"884 Church St, Seattle, WA 98101" -178796,USB-C Charging Cable,1,11.95,04/06/19 22:54,"23 10th St, Seattle, WA 98101" -178797,Wired Headphones,1,11.99,04/22/19 12:05,"383 Jefferson St, Seattle, WA 98101" -178798,Apple Airpods Headphones,1,150,04/28/19 10:02,"808 8th St, San Francisco, CA 94016" -178799,Google Phone,1,600,04/29/19 18:22,"818 11th St, San Francisco, CA 94016" -178800,Lightning Charging Cable,1,14.95,04/05/19 07:02,"267 Meadow St, Austin, TX 73301" -178801,AAA Batteries (4-pack),1,2.99,04/23/19 07:45,"278 Lake St, Seattle, WA 98101" -178802,AA Batteries (4-pack),1,3.84,04/24/19 21:50,"90 Wilson St, San Francisco, CA 94016" -178803,20in Monitor,1,109.99,04/26/19 08:56,"86 Sunset St, New York City, NY 10001" -178804,AAA Batteries (4-pack),1,2.99,04/11/19 14:48,"822 Lincoln St, Atlanta, GA 30301" -178805,Apple Airpods Headphones,1,150,04/25/19 22:16,"742 Main St, San Francisco, CA 94016" -178806,Apple Airpods Headphones,2,150,04/21/19 10:15,"881 Jefferson St, New York City, NY 10001" -178807,34in Ultrawide Monitor,1,379.99,04/12/19 13:09,"387 4th St, Atlanta, GA 30301" -178808,USB-C Charging Cable,1,11.95,04/24/19 01:26,"140 13th St, Boston, MA 02215" -178809,Lightning Charging Cable,1,14.95,04/03/19 08:10,"637 Lincoln St, New York City, NY 10001" -178810,AA Batteries (4-pack),3,3.84,04/16/19 21:51,"972 Walnut St, Boston, MA 02215" -178811,Lightning Charging Cable,1,14.95,04/15/19 12:23,"752 Park St, Los Angeles, CA 90001" -178812,Wired Headphones,1,11.99,04/18/19 08:57,"809 Spruce St, New York City, NY 10001" -178813,USB-C Charging Cable,1,11.95,04/22/19 21:12,"342 River St, Los Angeles, CA 90001" -178814,AAA Batteries (4-pack),1,2.99,04/09/19 15:28,"421 Meadow St, Los Angeles, CA 90001" -178815,Lightning Charging Cable,1,14.95,04/11/19 21:25,"949 11th St, Boston, MA 02215" -178816,ThinkPad Laptop,1,999.99,04/03/19 08:59,"112 Jackson St, Seattle, WA 98101" -178817,27in FHD Monitor,1,149.99,04/18/19 06:07,"971 Cedar St, San Francisco, CA 94016" -178818,AA Batteries (4-pack),2,3.84,04/22/19 18:43,"605 6th St, Dallas, TX 75001" -178819,Google Phone,1,600,04/26/19 16:35,"542 Center St, Los Angeles, CA 90001" -178820,Apple Airpods Headphones,1,150,04/17/19 19:03,"420 Forest St, San Francisco, CA 94016" -178821,ThinkPad Laptop,1,999.99,04/06/19 20:26,"180 1st St, Los Angeles, CA 90001" -178822,34in Ultrawide Monitor,1,379.99,04/26/19 13:09,"701 Johnson St, San Francisco, CA 94016" -178823,Lightning Charging Cable,1,14.95,04/26/19 16:53,"612 Meadow St, Seattle, WA 98101" -178824,USB-C Charging Cable,1,11.95,04/12/19 20:05,"144 Center St, Boston, MA 02215" -178825,iPhone,1,700,04/02/19 14:00,"705 Center St, Atlanta, GA 30301" -178825,Apple Airpods Headphones,1,150,04/02/19 14:00,"705 Center St, Atlanta, GA 30301" -178826,34in Ultrawide Monitor,1,379.99,04/09/19 07:20,"968 Dogwood St, New York City, NY 10001" -178827,Wired Headphones,1,11.99,04/24/19 22:53,"177 Elm St, Portland, OR 97035" -178828,Flatscreen TV,1,300,04/26/19 17:40,"656 2nd St, San Francisco, CA 94016" -178829,ThinkPad Laptop,1,999.99,04/24/19 12:36,"933 Ridge St, Atlanta, GA 30301" -178830,AA Batteries (4-pack),1,3.84,04/17/19 21:10,"246 6th St, New York City, NY 10001" -178831,Flatscreen TV,1,300,04/02/19 18:58,"368 13th St, Los Angeles, CA 90001" -178832,USB-C Charging Cable,1,11.95,04/06/19 22:15,"358 Walnut St, San Francisco, CA 94016" -178833,AA Batteries (4-pack),1,3.84,04/21/19 23:46,"556 Adams St, Seattle, WA 98101" -178834,Wired Headphones,1,11.99,04/10/19 00:25,"728 Dogwood St, Atlanta, GA 30301" -178835,AA Batteries (4-pack),2,3.84,04/20/19 21:50,"173 Highland St, Los Angeles, CA 90001" -178836,Wired Headphones,1,11.99,04/23/19 13:07,"830 River St, San Francisco, CA 94016" -178837,AAA Batteries (4-pack),1,2.99,04/16/19 15:30,"273 Washington St, Dallas, TX 75001" -178838,ThinkPad Laptop,1,999.99,04/12/19 11:22,"186 Spruce St, Seattle, WA 98101" -178839,Bose SoundSport Headphones,1,99.99,04/30/19 12:50,"102 Johnson St, New York City, NY 10001" -178840,27in 4K Gaming Monitor,1,389.99,04/24/19 11:59,"740 North St, Dallas, TX 75001" -178841,AA Batteries (4-pack),1,3.84,04/25/19 14:46,"810 11th St, New York City, NY 10001" -178842,USB-C Charging Cable,1,11.95,04/11/19 09:19,"817 South St, Seattle, WA 98101" -178843,AAA Batteries (4-pack),2,2.99,04/11/19 10:41,"996 Hill St, Los Angeles, CA 90001" -178844,Vareebadd Phone,1,400,04/08/19 12:15,"961 6th St, San Francisco, CA 94016" -178845,Lightning Charging Cable,1,14.95,04/26/19 14:19,"130 Meadow St, Los Angeles, CA 90001" -178846,Apple Airpods Headphones,1,150,04/23/19 11:07,"117 Adams St, Seattle, WA 98101" -178847,USB-C Charging Cable,1,11.95,04/02/19 18:27,"465 Pine St, Dallas, TX 75001" -178848,Apple Airpods Headphones,1,150,04/19/19 15:01,"233 Lake St, Los Angeles, CA 90001" -178849,AAA Batteries (4-pack),2,2.99,04/24/19 08:51,"929 Walnut St, New York City, NY 10001" -178850,Apple Airpods Headphones,1,150,04/12/19 12:53,"129 Cherry St, Dallas, TX 75001" -178851,AA Batteries (4-pack),1,3.84,04/05/19 12:08,"264 14th St, Boston, MA 02215" -178852,Bose SoundSport Headphones,1,99.99,04/12/19 15:48,"358 Lincoln St, Los Angeles, CA 90001" -178853,USB-C Charging Cable,1,11.95,04/13/19 00:12,"53 Hill St, San Francisco, CA 94016" -178854,Macbook Pro Laptop,1,1700,04/10/19 12:35,"565 Ridge St, Dallas, TX 75001" -178855,Wired Headphones,1,11.99,04/14/19 20:21,"569 Cedar St, Portland, OR 97035" -178856,Apple Airpods Headphones,1,150,04/27/19 11:44,"896 Elm St, Portland, OR 97035" -178857,Apple Airpods Headphones,1,150,04/12/19 04:25,"37 Lakeview St, Dallas, TX 75001" -178858,27in FHD Monitor,1,149.99,04/07/19 10:33,"351 Lake St, San Francisco, CA 94016" -178859,Apple Airpods Headphones,1,150,04/13/19 12:06,"404 Dogwood St, San Francisco, CA 94016" -178860,Bose SoundSport Headphones,1,99.99,04/24/19 09:32,"604 Cherry St, New York City, NY 10001" -178861,Lightning Charging Cable,1,14.95,04/27/19 01:00,"596 Sunset St, Austin, TX 73301" -178862,Google Phone,1,600,04/26/19 12:20,"547 9th St, Seattle, WA 98101" -178863,34in Ultrawide Monitor,1,379.99,04/01/19 14:21,"764 Adams St, San Francisco, CA 94016" -178864,Lightning Charging Cable,1,14.95,04/02/19 15:12,"334 Highland St, San Francisco, CA 94016" -178865,AAA Batteries (4-pack),2,2.99,04/20/19 15:58,"764 Spruce St, Boston, MA 02215" -178866,AAA Batteries (4-pack),1,2.99,04/17/19 20:18,"872 Hill St, Los Angeles, CA 90001" -178867,Google Phone,1,600,04/26/19 15:06,"137 Cedar St, Seattle, WA 98101" -178868,AAA Batteries (4-pack),1,2.99,04/25/19 20:43,"808 4th St, San Francisco, CA 94016" -178869,USB-C Charging Cable,1,11.95,04/11/19 20:59,"391 2nd St, San Francisco, CA 94016" -178870,Apple Airpods Headphones,1,150,04/22/19 08:20,"835 Jackson St, San Francisco, CA 94016" -178871,Apple Airpods Headphones,1,150,04/21/19 20:19,"436 Johnson St, Los Angeles, CA 90001" -178872,Wired Headphones,1,11.99,04/24/19 00:31,"925 Highland St, Los Angeles, CA 90001" -178873,USB-C Charging Cable,3,11.95,04/17/19 16:50,"78 7th St, Boston, MA 02215" -178874,27in FHD Monitor,1,149.99,04/30/19 15:43,"616 Forest St, Los Angeles, CA 90001" -178875,Macbook Pro Laptop,1,1700,04/26/19 19:02,"924 Cedar St, San Francisco, CA 94016" -178876,USB-C Charging Cable,1,11.95,04/28/19 06:40,"696 Cedar St, Boston, MA 02215" -178877,27in 4K Gaming Monitor,1,389.99,04/30/19 16:57,"997 Lakeview St, San Francisco, CA 94016" -178878,USB-C Charging Cable,1,11.95,04/15/19 16:36,"304 Lake St, San Francisco, CA 94016" -178879,LG Washing Machine,1,600.0,04/16/19 15:33,"792 Maple St, Portland, OR 97035" -178880,Lightning Charging Cable,1,14.95,04/10/19 17:16,"793 6th St, San Francisco, CA 94016" -178881,Flatscreen TV,1,300,04/04/19 18:47,"415 Adams St, New York City, NY 10001" -178882,Lightning Charging Cable,1,14.95,04/02/19 12:18,"568 Forest St, San Francisco, CA 94016" -178883,LG Dryer,1,600.0,04/29/19 21:44,"575 6th St, Atlanta, GA 30301" -178884,Bose SoundSport Headphones,1,99.99,04/12/19 13:44,"726 4th St, Los Angeles, CA 90001" -178885,iPhone,1,700,04/28/19 19:16,"12 Hill St, San Francisco, CA 94016" -178886,Google Phone,1,600,04/08/19 16:11,"207 Spruce St, Atlanta, GA 30301" -178886,Wired Headphones,1,11.99,04/08/19 16:11,"207 Spruce St, Atlanta, GA 30301" -178887,Lightning Charging Cable,2,14.95,04/17/19 13:12,"880 Hill St, Los Angeles, CA 90001" -178888,USB-C Charging Cable,1,11.95,04/25/19 22:28,"736 6th St, San Francisco, CA 94016" -178889,Lightning Charging Cable,1,14.95,04/24/19 10:56,"18 4th St, New York City, NY 10001" -178890,USB-C Charging Cable,1,11.95,04/20/19 18:41,"303 Meadow St, San Francisco, CA 94016" -178891,34in Ultrawide Monitor,1,379.99,04/15/19 16:45,"903 Forest St, San Francisco, CA 94016" -178892,Flatscreen TV,1,300,04/26/19 17:01,"240 5th St, New York City, NY 10001" -178893,Lightning Charging Cable,1,14.95,04/14/19 22:24,"516 5th St, San Francisco, CA 94016" -178894,AAA Batteries (4-pack),1,2.99,04/08/19 02:55,"523 Jackson St, Atlanta, GA 30301" -178895,Apple Airpods Headphones,1,150,04/11/19 13:15,"570 Hill St, New York City, NY 10001" -178896,Apple Airpods Headphones,1,150,04/11/19 10:42,"308 4th St, San Francisco, CA 94016" -178897,Google Phone,1,600,04/26/19 12:00,"684 13th St, Seattle, WA 98101" -178898,34in Ultrawide Monitor,1,379.99,04/06/19 09:49,"661 Forest St, San Francisco, CA 94016" -178899,20in Monitor,1,109.99,04/29/19 22:18,"406 Chestnut St, Los Angeles, CA 90001" -178900,AA Batteries (4-pack),2,3.84,04/13/19 21:11,"882 Washington St, San Francisco, CA 94016" -178901,USB-C Charging Cable,1,11.95,04/28/19 17:07,"76 Park St, San Francisco, CA 94016" -178902,27in FHD Monitor,1,149.99,04/13/19 12:15,"310 9th St, New York City, NY 10001" -178903,USB-C Charging Cable,1,11.95,04/20/19 10:46,"523 Dogwood St, Boston, MA 02215" -178904,AAA Batteries (4-pack),1,2.99,04/16/19 20:44,"348 Center St, Los Angeles, CA 90001" -178905,LG Dryer,1,600.0,04/19/19 13:33,"22 Adams St, New York City, NY 10001" -178906,LG Washing Machine,1,600.0,04/07/19 11:01,"994 Chestnut St, San Francisco, CA 94016" -178907,AAA Batteries (4-pack),1,2.99,04/12/19 18:39,"80 14th St, San Francisco, CA 94016" -178908,Lightning Charging Cable,1,14.95,04/22/19 12:01,"35 Jefferson St, New York City, NY 10001" -178909,Lightning Charging Cable,1,14.95,04/07/19 17:10,"544 Chestnut St, Portland, ME 04101" -178910,27in FHD Monitor,1,149.99,04/13/19 14:49,"58 11th St, New York City, NY 10001" -178911,27in FHD Monitor,1,149.99,04/25/19 19:11,"92 14th St, Portland, OR 97035" -178912,Wired Headphones,1,11.99,04/03/19 23:29,"913 South St, Seattle, WA 98101" -178913,Lightning Charging Cable,1,14.95,04/06/19 05:12,"392 8th St, Portland, OR 97035" -178914,Wired Headphones,1,11.99,04/04/19 11:38,"217 Cedar St, San Francisco, CA 94016" -178915,AA Batteries (4-pack),1,3.84,04/25/19 15:46,"654 12th St, San Francisco, CA 94016" -178916,USB-C Charging Cable,1,11.95,04/13/19 19:11,"868 10th St, Boston, MA 02215" -178917,Lightning Charging Cable,1,14.95,04/24/19 21:10,"616 Hickory St, Portland, OR 97035" -178918,AA Batteries (4-pack),1,3.84,04/23/19 05:01,"317 Meadow St, San Francisco, CA 94016" -178919,Bose SoundSport Headphones,1,99.99,04/09/19 15:26,"373 Madison St, San Francisco, CA 94016" -178920,34in Ultrawide Monitor,1,379.99,04/21/19 21:15,"590 12th St, Portland, OR 97035" -178921,Bose SoundSport Headphones,1,99.99,04/25/19 20:51,"888 Sunset St, Los Angeles, CA 90001" -178922,27in FHD Monitor,1,149.99,04/27/19 10:42,"526 Sunset St, San Francisco, CA 94016" -178923,iPhone,1,700,04/17/19 21:05,"381 Cherry St, San Francisco, CA 94016" -178924,Lightning Charging Cable,1,14.95,04/18/19 07:53,"931 Cedar St, Austin, TX 73301" -178925,AA Batteries (4-pack),1,3.84,04/28/19 01:09,"569 Lincoln St, Seattle, WA 98101" -178926,AA Batteries (4-pack),1,3.84,04/05/19 15:40,"908 Cherry St, Portland, OR 97035" -178927,Wired Headphones,1,11.99,04/22/19 11:32,"908 Johnson St, Dallas, TX 75001" -178928,20in Monitor,1,109.99,04/07/19 15:09,"775 North St, Boston, MA 02215" -178929,Lightning Charging Cable,1,14.95,04/14/19 10:35,"41 Lakeview St, Boston, MA 02215" -178930,AA Batteries (4-pack),1,3.84,04/18/19 20:44,"74 Adams St, San Francisco, CA 94016" -178931,USB-C Charging Cable,1,11.95,04/03/19 21:12,"72 Lincoln St, Boston, MA 02215" -178932,Wired Headphones,1,11.99,04/04/19 20:26,"440 Wilson St, Portland, OR 97035" -178933,Lightning Charging Cable,1,14.95,04/24/19 22:57,"194 Sunset St, San Francisco, CA 94016" -178934,Bose SoundSport Headphones,1,99.99,04/24/19 10:03,"180 Madison St, Seattle, WA 98101" -178935,Google Phone,1,600,04/16/19 15:35,"725 Wilson St, Los Angeles, CA 90001" -178936,AAA Batteries (4-pack),1,2.99,04/01/19 19:54,"373 6th St, Atlanta, GA 30301" -178937,ThinkPad Laptop,1,999.99,04/04/19 19:24,"196 Jackson St, San Francisco, CA 94016" -178938,AAA Batteries (4-pack),1,2.99,04/22/19 09:53,"227 Forest St, Boston, MA 02215" -178939,iPhone,1,700,04/03/19 15:54,"793 Washington St, Seattle, WA 98101" -178940,Lightning Charging Cable,1,14.95,04/29/19 19:45,"320 Forest St, San Francisco, CA 94016" -178941,Apple Airpods Headphones,1,150,04/06/19 10:22,"747 Highland St, San Francisco, CA 94016" -178942,20in Monitor,1,109.99,04/25/19 08:35,"859 South St, Seattle, WA 98101" -178943,20in Monitor,1,109.99,04/26/19 07:35,"561 Lake St, Seattle, WA 98101" -178944,AAA Batteries (4-pack),1,2.99,04/09/19 14:13,"380 14th St, New York City, NY 10001" -178945,Flatscreen TV,1,300,04/27/19 16:48,"276 13th St, Los Angeles, CA 90001" -178946,Wired Headphones,1,11.99,04/30/19 12:45,"832 Hill St, Los Angeles, CA 90001" -178947,27in FHD Monitor,1,149.99,04/22/19 17:27,"344 4th St, San Francisco, CA 94016" -178948,USB-C Charging Cable,1,11.95,04/09/19 19:42,"41 Dogwood St, Los Angeles, CA 90001" -178949,27in FHD Monitor,1,149.99,04/12/19 01:11,"200 Jefferson St, Los Angeles, CA 90001" -178950,Wired Headphones,1,11.99,04/19/19 13:17,"518 Forest St, Portland, ME 04101" -178951,AAA Batteries (4-pack),1,2.99,04/14/19 21:31,"784 Dogwood St, San Francisco, CA 94016" -178952,USB-C Charging Cable,1,11.95,04/28/19 18:45,"339 Center St, Portland, OR 97035" -178953,27in FHD Monitor,1,149.99,04/24/19 07:16,"828 Adams St, Los Angeles, CA 90001" -178954,Google Phone,1,600,04/17/19 17:12,"400 11th St, Boston, MA 02215" -178954,USB-C Charging Cable,1,11.95,04/17/19 17:12,"400 11th St, Boston, MA 02215" -178955,34in Ultrawide Monitor,1,379.99,04/21/19 22:45,"799 Forest St, San Francisco, CA 94016" -178956,USB-C Charging Cable,1,11.95,04/09/19 20:20,"523 Church St, Seattle, WA 98101" -178957,27in FHD Monitor,1,149.99,04/25/19 15:17,"739 Highland St, Portland, OR 97035" -178958,Wired Headphones,1,11.99,04/19/19 14:16,"857 South St, San Francisco, CA 94016" -178959,AAA Batteries (4-pack),1,2.99,04/07/19 12:56,"812 West St, San Francisco, CA 94016" -178960,Wired Headphones,1,11.99,04/14/19 21:05,"63 Lake St, Atlanta, GA 30301" -178961,Lightning Charging Cable,1,14.95,04/30/19 16:00,"914 Chestnut St, Portland, OR 97035" -178962,Google Phone,1,600,04/30/19 22:54,"601 Chestnut St, Boston, MA 02215" -178963,USB-C Charging Cable,1,11.95,04/27/19 10:14,"340 Lincoln St, Los Angeles, CA 90001" -178964,AA Batteries (4-pack),1,3.84,04/05/19 10:42,"338 12th St, Boston, MA 02215" -178965,Lightning Charging Cable,1,14.95,04/22/19 08:34,"595 10th St, Los Angeles, CA 90001" -178966,Lightning Charging Cable,2,14.95,04/15/19 15:56,"974 Dogwood St, New York City, NY 10001" -178967,Google Phone,1,600,04/27/19 11:09,"651 4th St, Seattle, WA 98101" -178968,34in Ultrawide Monitor,1,379.99,04/24/19 18:40,"683 11th St, San Francisco, CA 94016" -178969,Bose SoundSport Headphones,1,99.99,04/24/19 13:40,"712 1st St, Portland, ME 04101" -178970,ThinkPad Laptop,1,999.99,04/21/19 21:26,"987 2nd St, Boston, MA 02215" -178971,AA Batteries (4-pack),1,3.84,04/29/19 15:44,"787 Maple St, Boston, MA 02215" -178972,USB-C Charging Cable,1,11.95,04/28/19 10:11,"75 6th St, Boston, MA 02215" -178973,Bose SoundSport Headphones,1,99.99,04/10/19 22:55,"608 Sunset St, Dallas, TX 75001" -178974,AAA Batteries (4-pack),1,2.99,04/24/19 14:02,"262 2nd St, San Francisco, CA 94016" -178975,27in 4K Gaming Monitor,1,389.99,04/03/19 22:27,"743 1st St, Seattle, WA 98101" -178976,iPhone,1,700,04/23/19 08:54,"90 Elm St, Los Angeles, CA 90001" -178977,AAA Batteries (4-pack),1,2.99,04/11/19 17:29,"558 Adams St, Los Angeles, CA 90001" -178978,20in Monitor,1,109.99,04/11/19 10:41,"113 Spruce St, New York City, NY 10001" -178979,27in FHD Monitor,1,149.99,04/16/19 12:37,"719 Lakeview St, San Francisco, CA 94016" -178980,27in 4K Gaming Monitor,1,389.99,04/30/19 22:48,"315 River St, Los Angeles, CA 90001" -178981,Wired Headphones,1,11.99,04/07/19 13:02,"10 Pine St, Dallas, TX 75001" -178982,Wired Headphones,1,11.99,04/10/19 13:18,"80 Maple St, Austin, TX 73301" -178983,Lightning Charging Cable,1,14.95,04/01/19 21:17,"491 Maple St, New York City, NY 10001" -178984,AA Batteries (4-pack),1,3.84,04/16/19 10:37,"266 Washington St, San Francisco, CA 94016" -178985,Apple Airpods Headphones,1,150,04/24/19 13:59,"637 10th St, Portland, OR 97035" -178986,AAA Batteries (4-pack),1,2.99,04/11/19 09:20,"864 Hill St, San Francisco, CA 94016" -178987,USB-C Charging Cable,1,11.95,04/10/19 14:04,"136 West St, New York City, NY 10001" -178988,AAA Batteries (4-pack),1,2.99,04/18/19 20:29,"334 Dogwood St, Los Angeles, CA 90001" -178989,Vareebadd Phone,1,400,04/10/19 12:30,"891 Jefferson St, San Francisco, CA 94016" -178989,USB-C Charging Cable,1,11.95,04/10/19 12:30,"891 Jefferson St, San Francisco, CA 94016" -178990,Google Phone,1,600,04/10/19 01:39,"417 13th St, San Francisco, CA 94016" -178990,USB-C Charging Cable,1,11.95,04/10/19 01:39,"417 13th St, San Francisco, CA 94016" -178991,ThinkPad Laptop,1,999.99,04/27/19 14:26,"721 Maple St, Los Angeles, CA 90001" -178992,AAA Batteries (4-pack),4,2.99,04/27/19 14:00,"138 Spruce St, Seattle, WA 98101" -178993,Lightning Charging Cable,1,14.95,04/19/19 15:40,"794 Ridge St, San Francisco, CA 94016" -178994,Lightning Charging Cable,1,14.95,04/29/19 19:36,"643 6th St, New York City, NY 10001" -178995,USB-C Charging Cable,1,11.95,04/07/19 09:21,"33 Cherry St, San Francisco, CA 94016" -178996,Macbook Pro Laptop,1,1700,04/16/19 00:32,"950 8th St, Boston, MA 02215" -178997,Bose SoundSport Headphones,1,99.99,04/02/19 19:10,"414 Maple St, Dallas, TX 75001" -178998,20in Monitor,1,109.99,04/11/19 15:27,"4 8th St, New York City, NY 10001" -178999,LG Dryer,1,600.0,04/18/19 20:56,"129 7th St, Austin, TX 73301" -179000,iPhone,1,700,04/23/19 22:23,"181 Cedar St, San Francisco, CA 94016" -179000,Lightning Charging Cable,1,14.95,04/23/19 22:23,"181 Cedar St, San Francisco, CA 94016" -179001,AAA Batteries (4-pack),1,2.99,04/05/19 16:28,"988 Elm St, Los Angeles, CA 90001" -179002,AAA Batteries (4-pack),1,2.99,04/12/19 10:56,"816 14th St, San Francisco, CA 94016" -179003,AA Batteries (4-pack),1,3.84,04/09/19 20:00,"781 Hill St, San Francisco, CA 94016" -179004,Wired Headphones,2,11.99,04/26/19 12:15,"374 5th St, Seattle, WA 98101" -179005,Apple Airpods Headphones,1,150,04/19/19 09:29,"727 7th St, Portland, OR 97035" -179006,AA Batteries (4-pack),3,3.84,04/10/19 20:53,"35 Adams St, San Francisco, CA 94016" -179007,Apple Airpods Headphones,1,150,04/29/19 08:41,"122 Chestnut St, Los Angeles, CA 90001" -179008,iPhone,1,700,04/16/19 01:26,"186 Maple St, Boston, MA 02215" -179009,AA Batteries (4-pack),1,3.84,04/14/19 19:45,"937 7th St, Los Angeles, CA 90001" -179010,Wired Headphones,1,11.99,04/17/19 11:38,"154 1st St, Portland, ME 04101" -179011,Lightning Charging Cable,1,14.95,04/28/19 07:13,"87 7th St, Seattle, WA 98101" -179012,Lightning Charging Cable,1,14.95,04/18/19 18:03,"86 Church St, Los Angeles, CA 90001" -179013,27in FHD Monitor,1,149.99,04/09/19 08:38,"944 Willow St, Atlanta, GA 30301" -179014,Lightning Charging Cable,1,14.95,04/04/19 11:56,"413 4th St, New York City, NY 10001" -179015,27in 4K Gaming Monitor,1,389.99,04/29/19 20:00,"167 Wilson St, San Francisco, CA 94016" -179016,Apple Airpods Headphones,1,150,04/23/19 10:39,"477 Hill St, Seattle, WA 98101" -179017,Apple Airpods Headphones,1,150,04/27/19 12:37,"109 Lakeview St, Portland, OR 97035" -179018,iPhone,1,700,04/23/19 21:23,"913 2nd St, Dallas, TX 75001" -179019,Wired Headphones,1,11.99,04/11/19 11:53,"922 Maple St, New York City, NY 10001" -179020,Lightning Charging Cable,1,14.95,04/28/19 13:04,"758 9th St, San Francisco, CA 94016" -179021,AA Batteries (4-pack),1,3.84,04/19/19 19:46,"51 Main St, Boston, MA 02215" -179022,AA Batteries (4-pack),2,3.84,04/25/19 08:09,"561 Maple St, San Francisco, CA 94016" -179023,AA Batteries (4-pack),2,3.84,04/18/19 18:50,"585 Spruce St, Los Angeles, CA 90001" -179024,Google Phone,1,600,04/13/19 20:02,"475 Lake St, New York City, NY 10001" -179025,Flatscreen TV,1,300,04/20/19 17:39,"594 13th St, Atlanta, GA 30301" -179026,AAA Batteries (4-pack),1,2.99,04/11/19 16:58,"804 14th St, Atlanta, GA 30301" -179027,27in 4K Gaming Monitor,1,389.99,04/11/19 12:23,"78 Center St, Seattle, WA 98101" -179028,27in 4K Gaming Monitor,1,389.99,04/12/19 14:56,"774 12th St, Seattle, WA 98101" -179028,Bose SoundSport Headphones,1,99.99,04/12/19 14:56,"774 12th St, Seattle, WA 98101" -179029,Bose SoundSport Headphones,1,99.99,04/01/19 16:01,"58 1st St, San Francisco, CA 94016" -179030,34in Ultrawide Monitor,1,379.99,04/26/19 10:28,"206 Lake St, Los Angeles, CA 90001" -179031,Lightning Charging Cable,1,14.95,04/28/19 00:10,"456 Park St, San Francisco, CA 94016" -179032,USB-C Charging Cable,1,11.95,04/03/19 16:50,"330 Walnut St, Los Angeles, CA 90001" -179033,Lightning Charging Cable,1,14.95,04/15/19 17:05,"910 Elm St, San Francisco, CA 94016" -179034,Flatscreen TV,1,300,04/21/19 16:05,"260 Lake St, New York City, NY 10001" -179035,34in Ultrawide Monitor,1,379.99,04/24/19 08:10,"800 Lakeview St, Dallas, TX 75001" -179036,AA Batteries (4-pack),1,3.84,04/14/19 14:28,"824 Maple St, Austin, TX 73301" -179037,Apple Airpods Headphones,1,150,04/12/19 10:47,"127 14th St, Boston, MA 02215" -179038,Wired Headphones,2,11.99,04/11/19 18:25,"991 Walnut St, Boston, MA 02215" -179039,Wired Headphones,1,11.99,04/15/19 15:37,"914 Hickory St, San Francisco, CA 94016" -179040,34in Ultrawide Monitor,1,379.99,04/04/19 13:49,"398 Willow St, San Francisco, CA 94016" -179041,Wired Headphones,1,11.99,04/04/19 17:50,"270 13th St, San Francisco, CA 94016" -179042,AAA Batteries (4-pack),1,2.99,04/04/19 11:14,"900 West St, New York City, NY 10001" -179043,AA Batteries (4-pack),1,3.84,04/11/19 19:04,"467 5th St, Los Angeles, CA 90001" -179044,AAA Batteries (4-pack),1,2.99,04/16/19 20:06,"957 Cherry St, San Francisco, CA 94016" -179045,Bose SoundSport Headphones,1,99.99,04/23/19 21:06,"884 Center St, Dallas, TX 75001" -179046,AA Batteries (4-pack),2,3.84,04/03/19 17:57,"44 Wilson St, Los Angeles, CA 90001" -179047,20in Monitor,1,109.99,04/26/19 22:54,"635 Forest St, New York City, NY 10001" -179048,27in FHD Monitor,1,149.99,04/25/19 18:51,"102 North St, San Francisco, CA 94016" -179049,20in Monitor,1,109.99,04/04/19 21:32,"326 Church St, Seattle, WA 98101" -179050,Bose SoundSport Headphones,1,99.99,04/26/19 14:46,"411 Walnut St, San Francisco, CA 94016" -179051,Apple Airpods Headphones,1,150,04/05/19 18:35,"561 Washington St, Boston, MA 02215" -179052,20in Monitor,1,109.99,04/08/19 17:06,"638 9th St, San Francisco, CA 94016" -179053,Apple Airpods Headphones,1,150,04/25/19 05:54,"679 Park St, New York City, NY 10001" -179054,Google Phone,1,600,04/17/19 16:12,"966 Jackson St, Seattle, WA 98101" -179055,USB-C Charging Cable,1,11.95,04/22/19 16:08,"295 Adams St, Dallas, TX 75001" -179056,Vareebadd Phone,1,400,04/19/19 23:55,"71 Johnson St, Dallas, TX 75001" -179057,Google Phone,1,600,04/10/19 21:39,"820 13th St, New York City, NY 10001" -179057,USB-C Charging Cable,1,11.95,04/10/19 21:39,"820 13th St, New York City, NY 10001" -179058,Apple Airpods Headphones,1,150,04/23/19 20:30,"203 2nd St, San Francisco, CA 94016" -179059,Apple Airpods Headphones,1,150,04/17/19 11:42,"870 7th St, Boston, MA 02215" -179060,ThinkPad Laptop,1,999.99,04/03/19 12:37,"566 11th St, Los Angeles, CA 90001" -179061,AA Batteries (4-pack),2,3.84,04/22/19 20:17,"143 Hickory St, Seattle, WA 98101" -179062,Lightning Charging Cable,2,14.95,04/10/19 13:43,"346 Walnut St, Boston, MA 02215" -179063,AAA Batteries (4-pack),2,2.99,04/05/19 19:46,"216 Cherry St, San Francisco, CA 94016" -179064,AAA Batteries (4-pack),1,2.99,04/03/19 16:47,"931 11th St, New York City, NY 10001" -179065,Lightning Charging Cable,1,14.95,04/24/19 10:41,"449 8th St, New York City, NY 10001" -179066,Lightning Charging Cable,1,14.95,04/03/19 13:36,"188 7th St, Austin, TX 73301" -179067,27in FHD Monitor,1,149.99,04/19/19 11:18,"47 Madison St, Portland, ME 04101" -179068,Bose SoundSport Headphones,1,99.99,04/18/19 10:40,"716 Jackson St, Portland, OR 97035" -179069,Apple Airpods Headphones,1,150,04/01/19 08:06,"368 10th St, Los Angeles, CA 90001" -179070,AA Batteries (4-pack),4,3.84,04/02/19 16:45,"137 Wilson St, New York City, NY 10001" -179071,AA Batteries (4-pack),1,3.84,04/25/19 14:06,"884 Willow St, Los Angeles, CA 90001" -179072,AAA Batteries (4-pack),1,2.99,04/09/19 11:15,"412 River St, Los Angeles, CA 90001" -179073,Wired Headphones,1,11.99,04/09/19 15:42,"206 2nd St, Seattle, WA 98101" -179074,AA Batteries (4-pack),1,3.84,04/17/19 01:36,"502 Sunset St, San Francisco, CA 94016" -179075,Wired Headphones,1,11.99,04/28/19 17:49,"782 Cherry St, Portland, OR 97035" -179076,Google Phone,1,600,05/01/19 00:17,"635 Chestnut St, San Francisco, CA 94016" -179076,USB-C Charging Cable,1,11.95,05/01/19 00:17,"635 Chestnut St, San Francisco, CA 94016" -179077,Wired Headphones,1,11.99,04/11/19 18:29,"565 Lincoln St, Boston, MA 02215" -179078,Bose SoundSport Headphones,1,99.99,04/09/19 14:38,"924 6th St, Atlanta, GA 30301" -179079,AAA Batteries (4-pack),1,2.99,04/08/19 00:22,"698 Elm St, San Francisco, CA 94016" -179080,Apple Airpods Headphones,1,150,04/10/19 20:28,"714 Lincoln St, San Francisco, CA 94016" -179081,27in FHD Monitor,1,149.99,04/27/19 12:51,"484 Lincoln St, San Francisco, CA 94016" -179082,USB-C Charging Cable,1,11.95,04/14/19 22:57,"28 Main St, Dallas, TX 75001" -179083,Google Phone,1,600,04/06/19 21:59,"902 Chestnut St, Austin, TX 73301" -179084,AAA Batteries (4-pack),1,2.99,04/08/19 10:32,"580 6th St, San Francisco, CA 94016" -179085,Lightning Charging Cable,1,14.95,04/09/19 15:11,"280 5th St, San Francisco, CA 94016" -179086,Wired Headphones,1,11.99,04/12/19 14:36,"227 Walnut St, Dallas, TX 75001" -179087,27in FHD Monitor,1,149.99,04/21/19 20:42,"636 Center St, Los Angeles, CA 90001" -179088,AAA Batteries (4-pack),1,2.99,04/18/19 18:48,"11 Center St, San Francisco, CA 94016" -179089,AAA Batteries (4-pack),1,2.99,04/02/19 12:14,"229 Park St, Seattle, WA 98101" -179090,Apple Airpods Headphones,1,150,04/29/19 21:32,"716 12th St, Seattle, WA 98101" -179091,27in 4K Gaming Monitor,1,389.99,04/11/19 06:31,"264 Park St, New York City, NY 10001" -179092,USB-C Charging Cable,1,11.95,04/29/19 23:04,"96 South St, Boston, MA 02215" -179093,AA Batteries (4-pack),1,3.84,04/24/19 08:14,"759 Spruce St, Los Angeles, CA 90001" -179094,Apple Airpods Headphones,1,150,04/06/19 16:05,"1 Highland St, San Francisco, CA 94016" -179095,Wired Headphones,1,11.99,04/25/19 12:35,"406 7th St, San Francisco, CA 94016" -179096,USB-C Charging Cable,1,11.95,04/13/19 16:35,"153 6th St, San Francisco, CA 94016" -179097,Apple Airpods Headphones,1,150,04/29/19 11:27,"772 Sunset St, Portland, OR 97035" -179098,Lightning Charging Cable,1,14.95,04/20/19 11:37,"278 Chestnut St, San Francisco, CA 94016" -179099,Flatscreen TV,1,300,04/24/19 15:48,"758 Pine St, San Francisco, CA 94016" -179100,USB-C Charging Cable,1,11.95,04/15/19 19:47,"594 Lakeview St, Dallas, TX 75001" -179101,USB-C Charging Cable,1,11.95,04/23/19 11:34,"394 13th St, New York City, NY 10001" -179102,iPhone,1,700,04/13/19 20:50,"261 Wilson St, San Francisco, CA 94016" -179103,Flatscreen TV,1,300,04/18/19 20:52,"291 Sunset St, New York City, NY 10001" -179104,Lightning Charging Cable,1,14.95,04/10/19 21:43,"188 Hickory St, Dallas, TX 75001" -179105,iPhone,1,700,04/09/19 21:49,"615 Adams St, Portland, ME 04101" -179106,iPhone,1,700,04/26/19 11:23,"529 9th St, Austin, TX 73301" -179107,Google Phone,1,600,04/07/19 12:32,"312 Center St, Los Angeles, CA 90001" -179108,Lightning Charging Cable,1,14.95,04/21/19 15:09,"828 West St, New York City, NY 10001" -179108,AAA Batteries (4-pack),1,2.99,04/21/19 15:09,"828 West St, New York City, NY 10001" -179109,Flatscreen TV,1,300,04/21/19 19:44,"312 13th St, Atlanta, GA 30301" -179110,Bose SoundSport Headphones,1,99.99,04/01/19 17:30,"759 Lake St, Atlanta, GA 30301" -179111,Wired Headphones,1,11.99,04/15/19 13:22,"348 13th St, San Francisco, CA 94016" -179112,Bose SoundSport Headphones,1,99.99,04/16/19 01:16,"33 Washington St, New York City, NY 10001" -179113,AA Batteries (4-pack),3,3.84,04/09/19 21:22,"371 2nd St, Portland, OR 97035" -179114,Lightning Charging Cable,1,14.95,04/22/19 21:33,"676 Cedar St, Seattle, WA 98101" -179115,Flatscreen TV,1,300,04/22/19 20:03,"345 Adams St, San Francisco, CA 94016" -179116,Wired Headphones,1,11.99,04/19/19 13:34,"801 Pine St, Los Angeles, CA 90001" -179117,USB-C Charging Cable,2,11.95,04/16/19 13:29,"433 Pine St, San Francisco, CA 94016" -179118,Lightning Charging Cable,2,14.95,04/22/19 19:45,"493 Hickory St, New York City, NY 10001" -179119,iPhone,1,700,04/08/19 14:18,"994 Jackson St, San Francisco, CA 94016" -179120,AA Batteries (4-pack),3,3.84,04/28/19 17:25,"764 8th St, San Francisco, CA 94016" -179121,Wired Headphones,1,11.99,04/19/19 18:46,"975 Chestnut St, San Francisco, CA 94016" -179122,27in FHD Monitor,1,149.99,04/19/19 10:30,"759 Meadow St, San Francisco, CA 94016" -179123,27in FHD Monitor,1,149.99,04/03/19 15:14,"107 6th St, Atlanta, GA 30301" -179124,27in FHD Monitor,1,149.99,04/26/19 18:32,"672 Highland St, New York City, NY 10001" -179125,AAA Batteries (4-pack),2,2.99,04/07/19 13:04,"122 1st St, Los Angeles, CA 90001" -179126,Wired Headphones,1,11.99,04/30/19 19:53,"602 Lakeview St, Seattle, WA 98101" -179127,Lightning Charging Cable,1,14.95,04/21/19 09:54,"468 Lake St, San Francisco, CA 94016" -179128,iPhone,1,700,04/26/19 19:20,"10 Ridge St, San Francisco, CA 94016" -179128,Apple Airpods Headphones,1,150,04/26/19 19:20,"10 Ridge St, San Francisco, CA 94016" -179129,iPhone,1,700,04/12/19 18:19,"416 Willow St, Atlanta, GA 30301" -179130,27in FHD Monitor,1,149.99,04/15/19 22:30,"537 Lakeview St, Los Angeles, CA 90001" -179131,Lightning Charging Cable,1,14.95,04/06/19 08:07,"414 Spruce St, Atlanta, GA 30301" -179132,Wired Headphones,1,11.99,04/30/19 08:57,"60 5th St, Austin, TX 73301" -179133,AAA Batteries (4-pack),1,2.99,04/04/19 12:29,"468 13th St, Los Angeles, CA 90001" -179134,Apple Airpods Headphones,1,150,05/01/19 02:41,"950 Church St, Los Angeles, CA 90001" -179135,Bose SoundSport Headphones,1,99.99,04/09/19 10:00,"212 2nd St, Dallas, TX 75001" -179136,USB-C Charging Cable,1,11.95,04/04/19 12:31,"857 Wilson St, Austin, TX 73301" -179137,Macbook Pro Laptop,1,1700,04/16/19 16:53,"623 Walnut St, Austin, TX 73301" -179138,Bose SoundSport Headphones,1,99.99,04/12/19 19:44,"482 Spruce St, Los Angeles, CA 90001" -179139,USB-C Charging Cable,1,11.95,04/02/19 13:24,"425 13th St, Los Angeles, CA 90001" -179140,AA Batteries (4-pack),1,3.84,04/14/19 18:26,"577 Park St, San Francisco, CA 94016" -179141,Wired Headphones,1,11.99,04/27/19 07:36,"532 Walnut St, San Francisco, CA 94016" -179142,27in 4K Gaming Monitor,1,389.99,04/12/19 14:45,"627 1st St, San Francisco, CA 94016" -179143,USB-C Charging Cable,1,11.95,04/15/19 01:52,"57 1st St, Boston, MA 02215" -179144,34in Ultrawide Monitor,1,379.99,04/14/19 14:35,"880 Center St, San Francisco, CA 94016" -179145,27in FHD Monitor,1,149.99,04/05/19 20:09,"127 Dogwood St, Los Angeles, CA 90001" -179146,USB-C Charging Cable,1,11.95,04/13/19 13:10,"432 10th St, Dallas, TX 75001" -179147,USB-C Charging Cable,1,11.95,04/02/19 14:37,"471 Highland St, New York City, NY 10001" -179148,ThinkPad Laptop,1,999.99,04/27/19 10:56,"716 South St, Los Angeles, CA 90001" -179149,Wired Headphones,1,11.99,04/11/19 15:09,"251 7th St, Boston, MA 02215" -179150,Bose SoundSport Headphones,1,99.99,04/29/19 17:34,"935 Spruce St, Dallas, TX 75001" -179151,Wired Headphones,2,11.99,04/13/19 23:57,"232 Hickory St, Los Angeles, CA 90001" -179152,USB-C Charging Cable,1,11.95,04/24/19 12:29,"924 11th St, Austin, TX 73301" -179153,AAA Batteries (4-pack),2,2.99,04/24/19 09:58,"816 14th St, Austin, TX 73301" -179154,Lightning Charging Cable,1,14.95,04/26/19 12:37,"544 Spruce St, Boston, MA 02215" -179155,Wired Headphones,1,11.99,04/30/19 12:16,"913 Pine St, San Francisco, CA 94016" -179156,AAA Batteries (4-pack),2,2.99,04/23/19 00:13,"25 Church St, Los Angeles, CA 90001" -179157,Google Phone,1,600,04/16/19 20:50,"515 Meadow St, San Francisco, CA 94016" -179158,Macbook Pro Laptop,1,1700,04/03/19 17:29,"737 Cherry St, Los Angeles, CA 90001" -179159,Lightning Charging Cable,1,14.95,04/20/19 19:11,"29 Church St, Boston, MA 02215" -179160,AA Batteries (4-pack),2,3.84,04/27/19 12:51,"410 2nd St, Boston, MA 02215" -179161,27in 4K Gaming Monitor,1,389.99,04/16/19 16:35,"522 1st St, San Francisco, CA 94016" -179162,Google Phone,1,600,04/23/19 16:51,"513 Sunset St, New York City, NY 10001" -179162,USB-C Charging Cable,1,11.95,04/23/19 16:51,"513 Sunset St, New York City, NY 10001" -179163,AAA Batteries (4-pack),1,2.99,04/20/19 09:33,"669 Maple St, New York City, NY 10001" -179164,Macbook Pro Laptop,1,1700,04/22/19 09:47,"793 Center St, Portland, ME 04101" -179165,Lightning Charging Cable,1,14.95,04/27/19 23:19,"519 Lakeview St, Los Angeles, CA 90001" -179166,Lightning Charging Cable,1,14.95,04/30/19 01:41,"685 North St, Los Angeles, CA 90001" -179167,34in Ultrawide Monitor,1,379.99,04/07/19 19:41,"883 Center St, Austin, TX 73301" -179168,Wired Headphones,1,11.99,04/14/19 22:03,"644 11th St, Seattle, WA 98101" -179169,34in Ultrawide Monitor,1,379.99,04/03/19 22:21,"347 Lakeview St, San Francisco, CA 94016" -179170,34in Ultrawide Monitor,1,379.99,04/29/19 13:30,"522 Center St, Atlanta, GA 30301" -179171,AAA Batteries (4-pack),3,2.99,04/29/19 21:27,"808 Pine St, Los Angeles, CA 90001" -179172,Lightning Charging Cable,1,14.95,04/22/19 18:33,"885 Chestnut St, Boston, MA 02215" -179173,Bose SoundSport Headphones,1,99.99,04/27/19 00:03,"410 Wilson St, Dallas, TX 75001" -179174,LG Washing Machine,1,600.0,04/04/19 15:12,"201 Ridge St, Los Angeles, CA 90001" -179175,AAA Batteries (4-pack),1,2.99,04/25/19 09:14,"809 Cherry St, San Francisco, CA 94016" -179176,AAA Batteries (4-pack),1,2.99,04/20/19 20:28,"819 Chestnut St, San Francisco, CA 94016" -179177,USB-C Charging Cable,1,11.95,04/10/19 10:07,"428 West St, Boston, MA 02215" -179178,27in FHD Monitor,1,149.99,04/05/19 17:45,"985 Ridge St, Atlanta, GA 30301" -179179,Bose SoundSport Headphones,1,99.99,04/08/19 10:18,"982 Lakeview St, Boston, MA 02215" -179180,27in 4K Gaming Monitor,1,389.99,04/21/19 21:58,"915 Maple St, Los Angeles, CA 90001" -179181,USB-C Charging Cable,1,11.95,04/06/19 19:16,"143 Church St, San Francisco, CA 94016" -179182,AA Batteries (4-pack),1,3.84,04/29/19 19:35,"186 Sunset St, Boston, MA 02215" -179183,Bose SoundSport Headphones,1,99.99,04/22/19 21:45,"420 Church St, Portland, OR 97035" -179184,Vareebadd Phone,1,400,04/24/19 12:16,"805 Cherry St, New York City, NY 10001" -179185,Wired Headphones,1,11.99,04/15/19 22:01,"83 Cedar St, Portland, OR 97035" -179186,ThinkPad Laptop,1,999.99,04/08/19 17:44,"981 6th St, Los Angeles, CA 90001" -179187,Lightning Charging Cable,1,14.95,04/28/19 18:29,"516 Jefferson St, Portland, OR 97035" -179188,34in Ultrawide Monitor,1,379.99,04/13/19 12:37,"44 Washington St, Boston, MA 02215" -179189,Apple Airpods Headphones,1,150,04/24/19 16:44,"272 Sunset St, New York City, NY 10001" -179190,iPhone,1,700,04/25/19 14:06,"220 Maple St, San Francisco, CA 94016" -179191,Wired Headphones,1,11.99,04/28/19 19:33,"67 Lake St, Austin, TX 73301" -179192,AAA Batteries (4-pack),3,2.99,04/01/19 12:57,"187 2nd St, New York City, NY 10001" -179193,AAA Batteries (4-pack),1,2.99,04/22/19 12:57,"915 6th St, San Francisco, CA 94016" -179194,ThinkPad Laptop,1,999.99,04/30/19 20:20,"50 Meadow St, Dallas, TX 75001" -179195,USB-C Charging Cable,1,11.95,04/26/19 11:45,"840 Lincoln St, San Francisco, CA 94016" -179196,USB-C Charging Cable,1,11.95,04/29/19 10:31,"402 Church St, New York City, NY 10001" -179197,USB-C Charging Cable,1,11.95,04/15/19 17:28,"446 Madison St, Los Angeles, CA 90001" -179198,Wired Headphones,1,11.99,04/04/19 00:17,"640 5th St, Atlanta, GA 30301" -179199,Flatscreen TV,1,300,04/20/19 15:49,"667 Cherry St, San Francisco, CA 94016" -179200,Lightning Charging Cable,1,14.95,04/03/19 13:50,"979 River St, Boston, MA 02215" -179201,Apple Airpods Headphones,1,150,04/24/19 10:48,"814 Dogwood St, Atlanta, GA 30301" -179202,AA Batteries (4-pack),2,3.84,04/20/19 17:22,"515 2nd St, Dallas, TX 75001" -179203,AA Batteries (4-pack),1,3.84,04/22/19 20:46,"930 Wilson St, Boston, MA 02215" -179204,AAA Batteries (4-pack),2,2.99,04/28/19 11:03,"67 Main St, San Francisco, CA 94016" -179205,34in Ultrawide Monitor,1,379.99,04/02/19 20:20,"74 Chestnut St, Seattle, WA 98101" -179206,Wired Headphones,1,11.99,04/01/19 14:39,"923 Main St, Seattle, WA 98101" -179207,34in Ultrawide Monitor,1,379.99,04/03/19 09:43,"465 Wilson St, San Francisco, CA 94016" -179208,AA Batteries (4-pack),1,3.84,04/22/19 20:22,"586 River St, San Francisco, CA 94016" -179209,AA Batteries (4-pack),1,3.84,04/16/19 17:27,"926 8th St, Seattle, WA 98101" -179210,AA Batteries (4-pack),1,3.84,04/28/19 09:07,"666 4th St, Los Angeles, CA 90001" -179211,Wired Headphones,1,11.99,04/12/19 16:32,"72 7th St, Dallas, TX 75001" -179212,Lightning Charging Cable,2,14.95,04/18/19 23:25,"982 Elm St, Los Angeles, CA 90001" -179213,Wired Headphones,1,11.99,04/12/19 09:41,"546 Park St, San Francisco, CA 94016" -179214,Apple Airpods Headphones,1,150,04/02/19 09:41,"586 Spruce St, San Francisco, CA 94016" -179215,Bose SoundSport Headphones,1,99.99,04/09/19 20:40,"912 Lakeview St, New York City, NY 10001" -179216,27in 4K Gaming Monitor,1,389.99,04/24/19 17:33,"732 2nd St, San Francisco, CA 94016" -179217,Bose SoundSport Headphones,1,99.99,04/25/19 23:09,"518 Jackson St, San Francisco, CA 94016" -179218,Lightning Charging Cable,1,14.95,04/30/19 18:59,"379 7th St, San Francisco, CA 94016" -179219,Lightning Charging Cable,2,14.95,04/20/19 04:53,"119 7th St, Austin, TX 73301" -179220,34in Ultrawide Monitor,1,379.99,04/25/19 08:14,"748 Walnut St, Dallas, TX 75001" -179221,Lightning Charging Cable,1,14.95,04/06/19 17:45,"250 12th St, San Francisco, CA 94016" -179222,Macbook Pro Laptop,1,1700,04/22/19 17:21,"97 1st St, San Francisco, CA 94016" -179223,34in Ultrawide Monitor,1,379.99,04/01/19 22:09,"73 Adams St, San Francisco, CA 94016" -179224,Lightning Charging Cable,1,14.95,04/12/19 19:50,"499 Park St, San Francisco, CA 94016" -179225,20in Monitor,1,109.99,04/21/19 23:16,"928 West St, San Francisco, CA 94016" -179226,34in Ultrawide Monitor,1,379.99,04/09/19 19:45,"332 Adams St, New York City, NY 10001" -179226,Macbook Pro Laptop,1,1700,04/09/19 19:45,"332 Adams St, New York City, NY 10001" -179227,Apple Airpods Headphones,1,150,04/25/19 12:40,"53 Lincoln St, San Francisco, CA 94016" -179228,27in FHD Monitor,1,149.99,04/08/19 20:03,"531 12th St, New York City, NY 10001" -179229,27in FHD Monitor,1,149.99,04/05/19 15:45,"221 Maple St, Austin, TX 73301" -179230,AA Batteries (4-pack),1,3.84,04/25/19 17:57,"103 Center St, Atlanta, GA 30301" -179231,Apple Airpods Headphones,1,150,04/19/19 14:41,"596 9th St, Portland, OR 97035" -179232,Macbook Pro Laptop,1,1700,04/12/19 09:02,"597 Cherry St, Dallas, TX 75001" -179233,Bose SoundSport Headphones,1,99.99,04/10/19 19:31,"307 7th St, Seattle, WA 98101" -179234,Lightning Charging Cable,1,14.95,04/06/19 14:47,"568 10th St, Portland, OR 97035" -179235,27in 4K Gaming Monitor,1,389.99,04/06/19 21:40,"202 Sunset St, San Francisco, CA 94016" -179236,Lightning Charging Cable,1,14.95,04/07/19 23:08,"900 10th St, Boston, MA 02215" -179237,Google Phone,1,600,04/29/19 16:16,"833 13th St, Los Angeles, CA 90001" -179238,Flatscreen TV,1,300,04/15/19 05:54,"778 12th St, New York City, NY 10001" -179239,AA Batteries (4-pack),2,3.84,04/11/19 16:57,"759 Maple St, San Francisco, CA 94016" -,,,,, -179240,Apple Airpods Headphones,1,150,04/14/19 21:05,"978 Jefferson St, Seattle, WA 98101" -179241,USB-C Charging Cable,2,11.95,04/11/19 09:48,"271 Adams St, San Francisco, CA 94016" -179242,Macbook Pro Laptop,1,1700,04/10/19 21:45,"669 Park St, Portland, OR 97035" -179243,Wired Headphones,2,11.99,04/16/19 23:20,"219 South St, Los Angeles, CA 90001" -179244,AAA Batteries (4-pack),1,2.99,04/04/19 11:30,"764 Dogwood St, Atlanta, GA 30301" -179245,Bose SoundSport Headphones,1,99.99,04/04/19 21:24,"168 Pine St, San Francisco, CA 94016" -179246,Lightning Charging Cable,2,14.95,04/13/19 13:23,"114 Wilson St, San Francisco, CA 94016" -179247,AA Batteries (4-pack),1,3.84,04/02/19 11:34,"635 Hill St, Dallas, TX 75001" -179248,AA Batteries (4-pack),1,3.84,04/07/19 01:16,"190 River St, Los Angeles, CA 90001" -179249,Wired Headphones,1,11.99,04/06/19 11:27,"942 Cedar St, Los Angeles, CA 90001" -179250,Bose SoundSport Headphones,1,99.99,04/16/19 17:33,"882 Spruce St, New York City, NY 10001" -179251,Wired Headphones,1,11.99,04/18/19 13:33,"758 North St, Seattle, WA 98101" -179252,AA Batteries (4-pack),1,3.84,04/25/19 05:12,"161 8th St, Los Angeles, CA 90001" -179253,AAA Batteries (4-pack),1,2.99,04/23/19 23:58,"794 Spruce St, San Francisco, CA 94016" -179254,Wired Headphones,1,11.99,04/30/19 12:38,"397 Chestnut St, New York City, NY 10001" -179255,Lightning Charging Cable,1,14.95,04/03/19 20:44,"682 9th St, Seattle, WA 98101" -179256,Lightning Charging Cable,1,14.95,04/17/19 18:10,"714 Walnut St, Atlanta, GA 30301" -179257,Wired Headphones,1,11.99,04/17/19 16:29,"376 Johnson St, Austin, TX 73301" -179258,AAA Batteries (4-pack),2,2.99,04/09/19 14:44,"768 2nd St, Atlanta, GA 30301" -179259,34in Ultrawide Monitor,1,379.99,04/07/19 18:40,"979 Wilson St, Portland, OR 97035" -179260,AA Batteries (4-pack),1,3.84,04/08/19 16:45,"977 13th St, Dallas, TX 75001" -179261,Apple Airpods Headphones,1,150,04/23/19 09:28,"766 Hill St, New York City, NY 10001" -179262,USB-C Charging Cable,1,11.95,04/08/19 19:57,"913 Lake St, Los Angeles, CA 90001" -179263,Lightning Charging Cable,1,14.95,04/15/19 11:22,"291 Lincoln St, Seattle, WA 98101" -179264,AA Batteries (4-pack),1,3.84,04/29/19 18:24,"768 2nd St, Dallas, TX 75001" -179265,USB-C Charging Cable,1,11.95,04/04/19 01:07,"827 Dogwood St, Boston, MA 02215" -179266,USB-C Charging Cable,1,11.95,04/27/19 05:35,"171 Adams St, San Francisco, CA 94016" -179267,27in FHD Monitor,1,149.99,04/27/19 23:47,"671 West St, Boston, MA 02215" -179268,AA Batteries (4-pack),1,3.84,04/25/19 15:52,"215 Dogwood St, San Francisco, CA 94016" -179269,USB-C Charging Cable,1,11.95,04/27/19 22:58,"968 West St, New York City, NY 10001" -179270,iPhone,1,700,04/01/19 20:38,"36 River St, Los Angeles, CA 90001" -179270,Lightning Charging Cable,1,14.95,04/01/19 20:38,"36 River St, Los Angeles, CA 90001" -179271,Apple Airpods Headphones,1,150,04/06/19 16:03,"611 Sunset St, San Francisco, CA 94016" -179272,AA Batteries (4-pack),1,3.84,04/04/19 10:27,"934 Jefferson St, New York City, NY 10001" -179273,Lightning Charging Cable,1,14.95,04/18/19 15:15,"533 Highland St, Dallas, TX 75001" -179274,20in Monitor,1,109.99,04/21/19 08:41,"866 14th St, Atlanta, GA 30301" -179275,AA Batteries (4-pack),1,3.84,04/26/19 15:13,"359 Maple St, New York City, NY 10001" -179276,AA Batteries (4-pack),1,3.84,04/12/19 11:16,"111 Meadow St, San Francisco, CA 94016" -179277,AA Batteries (4-pack),1,3.84,04/25/19 12:39,"829 Wilson St, Boston, MA 02215" -179278,Apple Airpods Headphones,2,150,04/03/19 08:18,"334 Meadow St, Austin, TX 73301" -179279,20in Monitor,1,109.99,04/22/19 09:41,"796 Johnson St, Portland, OR 97035" -179280,iPhone,1,700,04/15/19 05:52,"666 Walnut St, San Francisco, CA 94016" -179281,Macbook Pro Laptop,1,1700,04/25/19 16:06,"835 13th St, San Francisco, CA 94016" -179282,Flatscreen TV,1,300,04/02/19 14:57,"165 Willow St, New York City, NY 10001" -179283,Google Phone,1,600,04/30/19 18:39,"248 Church St, San Francisco, CA 94016" -179284,USB-C Charging Cable,1,11.95,04/20/19 07:31,"422 Washington St, Boston, MA 02215" -179285,34in Ultrawide Monitor,1,379.99,04/03/19 09:18,"773 6th St, Portland, ME 04101" -179286,AA Batteries (4-pack),1,3.84,04/28/19 20:11,"568 Sunset St, Los Angeles, CA 90001" -179287,Flatscreen TV,1,300,04/23/19 23:00,"583 Wilson St, Boston, MA 02215" -179288,Lightning Charging Cable,1,14.95,04/30/19 11:22,"307 Cherry St, San Francisco, CA 94016" -179289,iPhone,1,700,04/30/19 16:13,"802 Johnson St, San Francisco, CA 94016" -179290,27in FHD Monitor,1,149.99,04/05/19 11:58,"266 Adams St, San Francisco, CA 94016" -179291,Lightning Charging Cable,1,14.95,04/21/19 17:07,"579 Lakeview St, New York City, NY 10001" -179292,AAA Batteries (4-pack),1,2.99,04/02/19 18:47,"128 8th St, San Francisco, CA 94016" -179293,USB-C Charging Cable,1,11.95,04/04/19 16:34,"129 Washington St, Dallas, TX 75001" -179294,Lightning Charging Cable,1,14.95,04/09/19 23:55,"962 Sunset St, Atlanta, GA 30301" -179295,27in 4K Gaming Monitor,1,389.99,04/26/19 21:47,"311 5th St, Atlanta, GA 30301" -179296,Apple Airpods Headphones,1,150,04/10/19 09:54,"809 Park St, San Francisco, CA 94016" -179297,Lightning Charging Cable,1,14.95,04/22/19 09:44,"152 Chestnut St, San Francisco, CA 94016" -179298,27in 4K Gaming Monitor,1,389.99,04/20/19 16:05,"207 Hickory St, Los Angeles, CA 90001" -179299,USB-C Charging Cable,1,11.95,04/17/19 18:57,"741 9th St, Boston, MA 02215" -179300,Wired Headphones,1,11.99,04/20/19 18:14,"572 Jackson St, Los Angeles, CA 90001" -179301,27in 4K Gaming Monitor,1,389.99,04/06/19 13:04,"530 11th St, Seattle, WA 98101" -179302,Lightning Charging Cable,1,14.95,04/03/19 20:43,"373 11th St, Los Angeles, CA 90001" -179303,Wired Headphones,1,11.99,04/15/19 10:12,"49 River St, New York City, NY 10001" -179304,34in Ultrawide Monitor,1,379.99,04/30/19 20:56,"48 Jefferson St, Los Angeles, CA 90001" -179305,Wired Headphones,2,11.99,04/01/19 17:29,"504 Lincoln St, New York City, NY 10001" -179306,AAA Batteries (4-pack),1,2.99,04/19/19 21:56,"855 Cedar St, New York City, NY 10001" -179307,34in Ultrawide Monitor,1,379.99,04/07/19 19:11,"300 Jefferson St, Seattle, WA 98101" -179308,Apple Airpods Headphones,2,150,04/01/19 19:47,"150 Sunset St, Austin, TX 73301" -179309,USB-C Charging Cable,1,11.95,04/02/19 20:16,"781 Lakeview St, Dallas, TX 75001" -179310,USB-C Charging Cable,2,11.95,04/21/19 16:54,"919 Meadow St, Seattle, WA 98101" -179311,Wired Headphones,2,11.99,04/09/19 01:35,"611 13th St, Austin, TX 73301" -179311,USB-C Charging Cable,1,11.95,04/09/19 01:35,"611 13th St, Austin, TX 73301" -179312,Bose SoundSport Headphones,1,99.99,04/18/19 15:54,"423 13th St, Los Angeles, CA 90001" -179313,Apple Airpods Headphones,1,150,04/24/19 16:18,"717 4th St, Los Angeles, CA 90001" -179314,34in Ultrawide Monitor,1,379.99,04/04/19 13:37,"348 14th St, New York City, NY 10001" -179315,AA Batteries (4-pack),1,3.84,04/28/19 19:35,"129 9th St, San Francisco, CA 94016" -179316,Wired Headphones,1,11.99,04/08/19 18:21,"129 2nd St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -179317,ThinkPad Laptop,1,999.99,04/02/19 17:30,"114 7th St, New York City, NY 10001" -179318,AA Batteries (4-pack),1,3.84,04/08/19 10:20,"829 10th St, Boston, MA 02215" -179319,Bose SoundSport Headphones,1,99.99,04/06/19 12:57,"299 Ridge St, Portland, OR 97035" -179320,AA Batteries (4-pack),1,3.84,04/23/19 18:18,"705 North St, Seattle, WA 98101" -179321,USB-C Charging Cable,1,11.95,04/16/19 14:01,"329 Chestnut St, Atlanta, GA 30301" -179322,USB-C Charging Cable,1,11.95,04/11/19 19:44,"369 4th St, San Francisco, CA 94016" -179323,AAA Batteries (4-pack),1,2.99,04/23/19 10:52,"692 Park St, Seattle, WA 98101" -179324,Lightning Charging Cable,1,14.95,04/02/19 00:25,"175 Johnson St, Boston, MA 02215" -179325,LG Washing Machine,1,600.0,04/17/19 13:09,"314 Jefferson St, Atlanta, GA 30301" -179326,Lightning Charging Cable,1,14.95,04/25/19 11:50,"299 Main St, San Francisco, CA 94016" -179327,Lightning Charging Cable,1,14.95,04/05/19 13:14,"190 Meadow St, San Francisco, CA 94016" -179328,Wired Headphones,1,11.99,04/01/19 19:19,"780 River St, San Francisco, CA 94016" -179328,AA Batteries (4-pack),1,3.84,04/01/19 19:19,"780 River St, San Francisco, CA 94016" -179329,Bose SoundSport Headphones,1,99.99,04/30/19 19:48,"795 Dogwood St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -179330,Google Phone,1,600,04/16/19 19:44,"33 Lakeview St, Boston, MA 02215" -179331,20in Monitor,1,109.99,04/01/19 15:08,"398 Cedar St, Los Angeles, CA 90001" -179332,Flatscreen TV,1,300,04/22/19 16:56,"492 Main St, San Francisco, CA 94016" -179333,Bose SoundSport Headphones,1,99.99,04/08/19 17:41,"263 Washington St, New York City, NY 10001" -179334,iPhone,1,700,04/10/19 23:34,"972 Church St, Boston, MA 02215" -179335,AA Batteries (4-pack),1,3.84,04/23/19 19:05,"931 8th St, New York City, NY 10001" -179336,AAA Batteries (4-pack),1,2.99,04/27/19 12:20,"910 9th St, Seattle, WA 98101" -179337,Wired Headphones,1,11.99,04/01/19 12:15,"516 Spruce St, San Francisco, CA 94016" -179338,USB-C Charging Cable,1,11.95,04/06/19 13:46,"668 Spruce St, Los Angeles, CA 90001" -179339,AAA Batteries (4-pack),1,2.99,04/16/19 16:04,"841 South St, San Francisco, CA 94016" -179340,Macbook Pro Laptop,1,1700,04/28/19 10:37,"391 Center St, San Francisco, CA 94016" -179340,Apple Airpods Headphones,1,150,04/28/19 10:37,"391 Center St, San Francisco, CA 94016" -179341,Apple Airpods Headphones,1,150,04/04/19 10:09,"41 Main St, Boston, MA 02215" -179342,Lightning Charging Cable,1,14.95,04/08/19 19:02,"392 14th St, Atlanta, GA 30301" -179343,Flatscreen TV,1,300,04/21/19 19:33,"683 5th St, Dallas, TX 75001" -179344,USB-C Charging Cable,1,11.95,04/15/19 22:17,"386 Washington St, Los Angeles, CA 90001" -179345,Apple Airpods Headphones,1,150,04/20/19 22:04,"172 Jackson St, Seattle, WA 98101" -179346,27in FHD Monitor,1,149.99,04/27/19 12:34,"155 Jefferson St, Atlanta, GA 30301" -179347,Bose SoundSport Headphones,1,99.99,04/08/19 15:08,"528 Lakeview St, Dallas, TX 75001" -179348,USB-C Charging Cable,1,11.95,04/05/19 10:13,"173 Cherry St, Atlanta, GA 30301" -179349,20in Monitor,1,109.99,04/07/19 13:51,"415 Lakeview St, New York City, NY 10001" -179350,Wired Headphones,1,11.99,04/03/19 21:38,"978 Lakeview St, San Francisco, CA 94016" -179351,27in 4K Gaming Monitor,1,389.99,04/25/19 17:38,"77 Jefferson St, Los Angeles, CA 90001" -179352,Lightning Charging Cable,1,14.95,04/14/19 16:02,"288 Jackson St, Los Angeles, CA 90001" -179353,Wired Headphones,1,11.99,04/06/19 18:05,"376 1st St, San Francisco, CA 94016" -179354,USB-C Charging Cable,1,11.95,04/21/19 14:11,"297 Forest St, New York City, NY 10001" -179355,27in FHD Monitor,1,149.99,04/29/19 17:49,"543 River St, Seattle, WA 98101" -179356,USB-C Charging Cable,2,11.95,04/17/19 14:21,"23 2nd St, San Francisco, CA 94016" -179357,Google Phone,1,600,04/01/19 22:28,"740 Lakeview St, Dallas, TX 75001" -179357,USB-C Charging Cable,1,11.95,04/01/19 22:28,"740 Lakeview St, Dallas, TX 75001" -179358,AAA Batteries (4-pack),3,2.99,04/08/19 20:42,"150 Elm St, Boston, MA 02215" -179359,Wired Headphones,1,11.99,04/26/19 18:22,"586 Park St, Los Angeles, CA 90001" -179360,Wired Headphones,1,11.99,04/07/19 16:49,"306 Cedar St, Atlanta, GA 30301" -179361,AA Batteries (4-pack),1,3.84,04/11/19 16:24,"354 Lincoln St, San Francisco, CA 94016" -179362,AAA Batteries (4-pack),2,2.99,04/24/19 12:11,"529 North St, Los Angeles, CA 90001" -179363,AAA Batteries (4-pack),1,2.99,04/03/19 10:13,"307 Main St, Los Angeles, CA 90001" -179364,AA Batteries (4-pack),1,3.84,04/26/19 19:04,"802 Adams St, New York City, NY 10001" -179365,AA Batteries (4-pack),2,3.84,04/07/19 21:30,"645 Walnut St, New York City, NY 10001" -179366,27in FHD Monitor,1,149.99,04/11/19 21:04,"203 Forest St, San Francisco, CA 94016" -179367,AAA Batteries (4-pack),3,2.99,04/03/19 16:01,"245 6th St, San Francisco, CA 94016" -179368,Google Phone,1,600,04/13/19 01:43,"132 Maple St, Los Angeles, CA 90001" -179369,ThinkPad Laptop,1,999.99,04/03/19 23:57,"896 North St, Boston, MA 02215" -179370,Lightning Charging Cable,1,14.95,04/18/19 20:35,"850 Lincoln St, San Francisco, CA 94016" -179371,Wired Headphones,1,11.99,04/23/19 14:35,"243 Willow St, Los Angeles, CA 90001" -179372,Google Phone,1,600,04/17/19 20:46,"215 10th St, San Francisco, CA 94016" -179373,iPhone,1,700,04/18/19 12:08,"495 1st St, Atlanta, GA 30301" -179374,Wired Headphones,1,11.99,04/17/19 18:51,"837 Main St, San Francisco, CA 94016" -179375,AAA Batteries (4-pack),1,2.99,04/13/19 15:27,"816 6th St, Seattle, WA 98101" -179376,AA Batteries (4-pack),1,3.84,04/22/19 19:30,"919 Dogwood St, Seattle, WA 98101" -179377,USB-C Charging Cable,1,11.95,04/18/19 19:29,"830 8th St, Los Angeles, CA 90001" -179377,AA Batteries (4-pack),1,3.84,04/18/19 19:29,"830 8th St, Los Angeles, CA 90001" -179378,AA Batteries (4-pack),1,3.84,04/09/19 10:30,"737 Chestnut St, Dallas, TX 75001" -179379,Google Phone,1,600,04/12/19 15:28,"288 Washington St, Los Angeles, CA 90001" -179379,Bose SoundSport Headphones,1,99.99,04/12/19 15:28,"288 Washington St, Los Angeles, CA 90001" -179380,Apple Airpods Headphones,1,150,04/07/19 04:37,"366 Forest St, Los Angeles, CA 90001" -179381,Lightning Charging Cable,1,14.95,04/29/19 16:22,"542 7th St, Portland, OR 97035" -179382,Apple Airpods Headphones,1,150,04/11/19 14:58,"372 Adams St, San Francisco, CA 94016" -179383,AA Batteries (4-pack),1,3.84,04/14/19 16:50,"101 Chestnut St, New York City, NY 10001" -179384,AAA Batteries (4-pack),5,2.99,04/21/19 05:05,"903 Madison St, Atlanta, GA 30301" -179385,Lightning Charging Cable,1,14.95,04/02/19 22:40,"617 Center St, Boston, MA 02215" -179386,Apple Airpods Headphones,1,150,04/15/19 07:01,"834 Ridge St, New York City, NY 10001" -179387,Bose SoundSport Headphones,1,99.99,04/22/19 22:32,"472 Church St, Austin, TX 73301" -179388,iPhone,1,700,04/24/19 10:22,"767 Hickory St, New York City, NY 10001" -179389,34in Ultrawide Monitor,1,379.99,04/25/19 20:04,"718 13th St, Los Angeles, CA 90001" -179390,AA Batteries (4-pack),1,3.84,04/21/19 14:13,"263 South St, Seattle, WA 98101" -179391,Bose SoundSport Headphones,1,99.99,04/18/19 00:47,"489 1st St, New York City, NY 10001" -179392,AAA Batteries (4-pack),1,2.99,04/03/19 16:05,"383 Wilson St, Seattle, WA 98101" -179393,AAA Batteries (4-pack),3,2.99,04/14/19 10:39,"833 Madison St, Boston, MA 02215" -179394,Bose SoundSport Headphones,1,99.99,04/10/19 14:29,"601 Cherry St, Boston, MA 02215" -179395,Lightning Charging Cable,1,14.95,04/15/19 17:23,"178 Johnson St, San Francisco, CA 94016" -179396,AAA Batteries (4-pack),1,2.99,04/22/19 15:51,"485 6th St, Los Angeles, CA 90001" -179397,Bose SoundSport Headphones,1,99.99,04/19/19 12:19,"1 6th St, Los Angeles, CA 90001" -179398,AAA Batteries (4-pack),1,2.99,04/06/19 09:33,"238 Sunset St, Los Angeles, CA 90001" -179399,AA Batteries (4-pack),2,3.84,04/15/19 20:13,"588 Cherry St, San Francisco, CA 94016" -179400,Macbook Pro Laptop,1,1700,04/09/19 07:05,"959 Main St, Atlanta, GA 30301" -179401,USB-C Charging Cable,1,11.95,04/14/19 19:41,"485 11th St, Los Angeles, CA 90001" -179402,27in 4K Gaming Monitor,1,389.99,04/08/19 12:12,"910 Cedar St, Seattle, WA 98101" -179403,AA Batteries (4-pack),1,3.84,04/16/19 08:18,"116 Walnut St, Austin, TX 73301" -179404,Bose SoundSport Headphones,1,99.99,04/26/19 10:47,"119 Cedar St, New York City, NY 10001" -179405,Bose SoundSport Headphones,1,99.99,04/23/19 13:03,"211 Cedar St, Dallas, TX 75001" -179406,Google Phone,1,600,04/01/19 14:06,"331 14th St, Los Angeles, CA 90001" -179407,Wired Headphones,1,11.99,04/16/19 19:13,"546 Cherry St, San Francisco, CA 94016" -179408,USB-C Charging Cable,1,11.95,04/11/19 20:43,"213 Dogwood St, San Francisco, CA 94016" -179409,34in Ultrawide Monitor,1,379.99,04/24/19 13:40,"325 8th St, San Francisco, CA 94016" -179410,AAA Batteries (4-pack),1,2.99,04/02/19 12:09,"365 Walnut St, Portland, OR 97035" -179411,34in Ultrawide Monitor,1,379.99,04/22/19 09:02,"996 Lake St, Los Angeles, CA 90001" -179412,Google Phone,1,600,04/09/19 10:53,"963 Center St, San Francisco, CA 94016" -179413,AAA Batteries (4-pack),2,2.99,04/28/19 13:10,"226 6th St, Portland, ME 04101" -179414,AAA Batteries (4-pack),2,2.99,04/10/19 18:54,"994 Cherry St, Atlanta, GA 30301" -179415,Macbook Pro Laptop,1,1700,04/12/19 16:56,"645 West St, New York City, NY 10001" -179416,AAA Batteries (4-pack),2,2.99,04/11/19 23:04,"476 7th St, New York City, NY 10001" -179417,Macbook Pro Laptop,1,1700,04/23/19 19:23,"9 North St, Seattle, WA 98101" -179418,iPhone,1,700,04/21/19 18:17,"615 5th St, Atlanta, GA 30301" -179419,Wired Headphones,1,11.99,04/09/19 17:20,"247 Spruce St, San Francisco, CA 94016" -179420,Wired Headphones,1,11.99,04/08/19 20:12,"410 Wilson St, Los Angeles, CA 90001" -179421,Google Phone,1,600,04/25/19 19:04,"532 Pine St, Austin, TX 73301" -179422,Wired Headphones,1,11.99,04/28/19 18:32,"451 4th St, New York City, NY 10001" -179423,Flatscreen TV,1,300,04/25/19 16:58,"879 Hill St, Austin, TX 73301" -179424,Bose SoundSport Headphones,1,99.99,04/19/19 15:19,"378 Hickory St, Boston, MA 02215" -179425,AA Batteries (4-pack),1,3.84,04/26/19 17:00,"568 Highland St, Los Angeles, CA 90001" -179426,ThinkPad Laptop,1,999.99,04/24/19 21:30,"760 West St, New York City, NY 10001" -179427,Lightning Charging Cable,2,14.95,04/29/19 16:14,"524 10th St, Boston, MA 02215" -179428,Lightning Charging Cable,1,14.95,04/16/19 21:46,"64 Lincoln St, Portland, ME 04101" -179429,Lightning Charging Cable,1,14.95,04/28/19 10:52,"949 Washington St, San Francisco, CA 94016" -179430,AAA Batteries (4-pack),1,2.99,04/29/19 18:46,"772 11th St, Portland, OR 97035" -179431,AA Batteries (4-pack),1,3.84,04/14/19 07:59,"360 Hickory St, San Francisco, CA 94016" -179432,Apple Airpods Headphones,1,150,04/29/19 11:04,"80 Hill St, Seattle, WA 98101" -179433,Apple Airpods Headphones,1,150,04/22/19 18:54,"878 Church St, Boston, MA 02215" -179434,Macbook Pro Laptop,1,1700,04/24/19 14:26,"263 Washington St, New York City, NY 10001" -179434,20in Monitor,1,109.99,04/24/19 14:26,"263 Washington St, New York City, NY 10001" -179435,LG Washing Machine,1,600.0,04/21/19 16:50,"398 Sunset St, Los Angeles, CA 90001" -179436,Lightning Charging Cable,1,14.95,04/11/19 15:12,"894 Adams St, Los Angeles, CA 90001" -179437,34in Ultrawide Monitor,1,379.99,04/27/19 21:26,"439 1st St, Austin, TX 73301" -179438,iPhone,1,700,04/14/19 19:16,"31 Walnut St, San Francisco, CA 94016" -179439,AAA Batteries (4-pack),2,2.99,04/28/19 17:34,"24 Lincoln St, Dallas, TX 75001" -179440,Lightning Charging Cable,1,14.95,04/24/19 14:28,"521 North St, Seattle, WA 98101" -179441,USB-C Charging Cable,1,11.95,04/09/19 22:02,"342 12th St, San Francisco, CA 94016" -179442,Wired Headphones,1,11.99,04/20/19 15:16,"642 Cedar St, Boston, MA 02215" -179443,27in 4K Gaming Monitor,1,389.99,04/28/19 13:52,"265 Jefferson St, Los Angeles, CA 90001" -179444,Wired Headphones,1,11.99,04/11/19 22:28,"396 12th St, Boston, MA 02215" -179445,Bose SoundSport Headphones,1,99.99,04/16/19 12:55,"100 Lakeview St, San Francisco, CA 94016" -179446,AAA Batteries (4-pack),3,2.99,04/28/19 10:47,"52 Cherry St, Los Angeles, CA 90001" -179447,Wired Headphones,1,11.99,04/14/19 21:46,"349 10th St, Dallas, TX 75001" -179448,Lightning Charging Cable,1,14.95,04/24/19 10:52,"397 1st St, New York City, NY 10001" -179449,Wired Headphones,1,11.99,04/08/19 16:03,"903 Chestnut St, New York City, NY 10001" -179450,Lightning Charging Cable,1,14.95,04/28/19 21:47,"752 Center St, Los Angeles, CA 90001" -179451,AAA Batteries (4-pack),1,2.99,04/28/19 14:38,"284 Hickory St, San Francisco, CA 94016" -179452,AAA Batteries (4-pack),1,2.99,04/30/19 11:27,"547 Walnut St, Los Angeles, CA 90001" -179453,iPhone,1,700,04/19/19 15:18,"644 Chestnut St, Austin, TX 73301" -179453,Wired Headphones,1,11.99,04/19/19 15:18,"644 Chestnut St, Austin, TX 73301" -,,,,, -179454,Wired Headphones,1,11.99,04/01/19 09:48,"310 11th St, New York City, NY 10001" -179455,USB-C Charging Cable,1,11.95,04/17/19 03:50,"295 13th St, Dallas, TX 75001" -179456,AA Batteries (4-pack),1,3.84,04/26/19 13:35,"138 Ridge St, Atlanta, GA 30301" -179457,Apple Airpods Headphones,1,150,04/19/19 14:20,"584 Elm St, San Francisco, CA 94016" -179458,Apple Airpods Headphones,1,150,04/30/19 11:24,"290 4th St, Austin, TX 73301" -179459,Wired Headphones,1,11.99,04/27/19 14:46,"435 Hill St, Dallas, TX 75001" -179460,Lightning Charging Cable,1,14.95,04/23/19 17:46,"182 Dogwood St, Atlanta, GA 30301" -179461,Bose SoundSport Headphones,1,99.99,04/09/19 11:32,"902 Lakeview St, New York City, NY 10001" -179462,AAA Batteries (4-pack),1,2.99,04/22/19 12:38,"790 5th St, Seattle, WA 98101" -179463,Apple Airpods Headphones,1,150,04/18/19 18:44,"41 Adams St, New York City, NY 10001" -179464,Wired Headphones,2,11.99,04/09/19 09:01,"354 Highland St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -179465,34in Ultrawide Monitor,1,379.99,04/25/19 14:33,"804 Cedar St, Seattle, WA 98101" -179466,Bose SoundSport Headphones,1,99.99,04/11/19 23:01,"646 13th St, Austin, TX 73301" -179467,Bose SoundSport Headphones,1,99.99,04/17/19 08:33,"910 River St, Atlanta, GA 30301" -179468,Google Phone,1,600,04/04/19 13:52,"9 2nd St, San Francisco, CA 94016" -179469,AA Batteries (4-pack),3,3.84,04/04/19 17:53,"81 South St, Los Angeles, CA 90001" -179470,AA Batteries (4-pack),2,3.84,04/16/19 11:31,"833 Spruce St, Los Angeles, CA 90001" -179471,34in Ultrawide Monitor,1,379.99,04/13/19 13:19,"245 Hill St, Dallas, TX 75001" -179472,Apple Airpods Headphones,1,150,04/16/19 22:28,"190 4th St, Boston, MA 02215" -179473,Bose SoundSport Headphones,1,99.99,04/24/19 03:25,"102 Wilson St, Atlanta, GA 30301" -179474,USB-C Charging Cable,2,11.95,04/10/19 11:50,"84 10th St, Portland, ME 04101" -179475,Google Phone,1,600,04/19/19 02:20,"814 Jackson St, Los Angeles, CA 90001" -179476,USB-C Charging Cable,1,11.95,04/14/19 18:55,"879 Center St, Los Angeles, CA 90001" -179477,AAA Batteries (4-pack),1,2.99,04/06/19 16:38,"532 12th St, New York City, NY 10001" -179478,20in Monitor,1,109.99,04/15/19 08:11,"388 Wilson St, Los Angeles, CA 90001" -179479,Flatscreen TV,1,300,04/06/19 11:13,"351 14th St, San Francisco, CA 94016" -179480,LG Dryer,1,600.0,04/13/19 11:49,"503 Lake St, Los Angeles, CA 90001" -179481,Bose SoundSport Headphones,1,99.99,04/16/19 16:33,"23 5th St, Los Angeles, CA 90001" -179482,Apple Airpods Headphones,1,150,04/30/19 09:36,"331 Church St, Los Angeles, CA 90001" -179483,AAA Batteries (4-pack),1,2.99,04/23/19 11:22,"385 Willow St, Seattle, WA 98101" -179484,USB-C Charging Cable,1,11.95,04/28/19 22:17,"545 Cedar St, Boston, MA 02215" -179485,Vareebadd Phone,1,400,04/30/19 11:29,"393 Cedar St, Dallas, TX 75001" -179485,USB-C Charging Cable,1,11.95,04/30/19 11:29,"393 Cedar St, Dallas, TX 75001" -179486,34in Ultrawide Monitor,1,379.99,04/09/19 20:15,"577 Center St, San Francisco, CA 94016" -179487,Bose SoundSport Headphones,1,99.99,04/19/19 20:34,"966 Ridge St, Dallas, TX 75001" -179488,Lightning Charging Cable,1,14.95,04/29/19 13:33,"39 Madison St, Portland, OR 97035" -179489,USB-C Charging Cable,1,11.95,04/24/19 21:25,"940 River St, Dallas, TX 75001" -179490,USB-C Charging Cable,1,11.95,04/12/19 22:10,"384 Ridge St, San Francisco, CA 94016" -179491,LG Dryer,1,600.0,04/10/19 08:55,"291 6th St, Los Angeles, CA 90001" -179492,Lightning Charging Cable,1,14.95,04/17/19 17:58,"42 Church St, San Francisco, CA 94016" -179493,Apple Airpods Headphones,1,150,04/12/19 17:44,"972 Ridge St, New York City, NY 10001" -179494,Wired Headphones,2,11.99,04/14/19 15:38,"328 11th St, New York City, NY 10001" -179495,AA Batteries (4-pack),1,3.84,04/14/19 22:50,"66 2nd St, Austin, TX 73301" -179496,iPhone,1,700,04/21/19 07:26,"796 Madison St, Portland, OR 97035" -179497,USB-C Charging Cable,1,11.95,04/27/19 06:34,"165 Wilson St, Portland, ME 04101" -179498,Flatscreen TV,1,300,04/17/19 19:20,"36 Cherry St, Boston, MA 02215" -179499,USB-C Charging Cable,1,11.95,04/09/19 15:52,"707 7th St, New York City, NY 10001" -179500,Macbook Pro Laptop,1,1700,04/12/19 22:19,"687 6th St, San Francisco, CA 94016" -179501,Apple Airpods Headphones,1,150,04/06/19 23:59,"515 Dogwood St, Los Angeles, CA 90001" -179502,LG Dryer,1,600.0,04/06/19 19:06,"538 Cedar St, San Francisco, CA 94016" -179503,27in FHD Monitor,1,149.99,04/14/19 16:43,"789 Hickory St, Dallas, TX 75001" -179504,AAA Batteries (4-pack),1,2.99,04/01/19 17:31,"116 Lake St, Dallas, TX 75001" -179505,Flatscreen TV,1,300,04/25/19 18:21,"561 Willow St, San Francisco, CA 94016" -179506,Apple Airpods Headphones,1,150,04/18/19 09:43,"619 Adams St, San Francisco, CA 94016" -179507,Flatscreen TV,1,300,04/06/19 21:56,"449 6th St, Los Angeles, CA 90001" -179508,Wired Headphones,1,11.99,04/26/19 07:36,"381 Sunset St, Los Angeles, CA 90001" -179509,Apple Airpods Headphones,1,150,04/15/19 13:04,"86 Lake St, Boston, MA 02215" -179510,AA Batteries (4-pack),1,3.84,04/27/19 00:21,"790 Willow St, San Francisco, CA 94016" -179511,AA Batteries (4-pack),1,3.84,04/02/19 00:31,"958 Lake St, Boston, MA 02215" -179512,Wired Headphones,1,11.99,04/13/19 21:03,"251 Center St, Austin, TX 73301" -179513,Macbook Pro Laptop,1,1700,04/01/19 23:41,"483 Jackson St, Los Angeles, CA 90001" -179514,Google Phone,1,600,04/26/19 16:05,"743 South St, Dallas, TX 75001" -179514,USB-C Charging Cable,1,11.95,04/26/19 16:05,"743 South St, Dallas, TX 75001" -179515,27in FHD Monitor,1,149.99,04/01/19 21:13,"600 Sunset St, San Francisco, CA 94016" -179516,AAA Batteries (4-pack),1,2.99,04/11/19 07:35,"997 7th St, San Francisco, CA 94016" -179517,27in 4K Gaming Monitor,1,389.99,04/13/19 21:24,"103 Jackson St, San Francisco, CA 94016" -179518,USB-C Charging Cable,1,11.95,04/01/19 19:23,"894 Cedar St, San Francisco, CA 94016" -179519,Lightning Charging Cable,1,14.95,04/23/19 09:47,"336 Maple St, San Francisco, CA 94016" -179520,Apple Airpods Headphones,1,150,04/23/19 02:58,"18 Jefferson St, Boston, MA 02215" -179521,Google Phone,1,600,04/24/19 19:12,"450 Walnut St, Dallas, TX 75001" -179522,Wired Headphones,1,11.99,04/16/19 11:05,"218 Jefferson St, New York City, NY 10001" -179523,USB-C Charging Cable,1,11.95,04/11/19 19:57,"722 10th St, Dallas, TX 75001" -,,,,, -179524,Lightning Charging Cable,1,14.95,04/19/19 13:22,"215 Cherry St, Boston, MA 02215" -179525,27in FHD Monitor,1,149.99,04/20/19 22:51,"536 8th St, San Francisco, CA 94016" -179526,AAA Batteries (4-pack),2,2.99,04/21/19 16:47,"420 Lakeview St, Boston, MA 02215" -179527,27in FHD Monitor,1,149.99,04/18/19 18:53,"356 Meadow St, San Francisco, CA 94016" -179528,27in FHD Monitor,1,149.99,04/15/19 17:23,"274 9th St, San Francisco, CA 94016" -179529,34in Ultrawide Monitor,1,379.99,04/21/19 17:08,"295 13th St, San Francisco, CA 94016" -179530,Google Phone,1,600,04/03/19 17:32,"854 Wilson St, San Francisco, CA 94016" -179530,USB-C Charging Cable,1,11.95,04/03/19 17:32,"854 Wilson St, San Francisco, CA 94016" -179531,Apple Airpods Headphones,1,150,04/12/19 21:53,"917 2nd St, Seattle, WA 98101" -179532,Lightning Charging Cable,1,14.95,04/10/19 12:51,"228 South St, Dallas, TX 75001" -179533,USB-C Charging Cable,1,11.95,04/20/19 14:05,"803 Willow St, Portland, ME 04101" -179534,AA Batteries (4-pack),1,3.84,04/15/19 11:14,"2 Church St, Portland, OR 97035" -179535,20in Monitor,1,109.99,04/13/19 17:47,"255 West St, Boston, MA 02215" -179536,USB-C Charging Cable,1,11.95,04/27/19 08:42,"964 Cedar St, San Francisco, CA 94016" -179537,27in FHD Monitor,1,149.99,04/29/19 18:07,"349 Sunset St, New York City, NY 10001" -179538,Vareebadd Phone,1,400,04/04/19 20:48,"219 Hickory St, New York City, NY 10001" -179538,Bose SoundSport Headphones,1,99.99,04/04/19 20:48,"219 Hickory St, New York City, NY 10001" -179539,27in FHD Monitor,1,149.99,04/27/19 17:42,"398 Cedar St, New York City, NY 10001" -179540,iPhone,1,700,04/11/19 12:53,"488 Hill St, Austin, TX 73301" -179540,Lightning Charging Cable,1,14.95,04/11/19 12:53,"488 Hill St, Austin, TX 73301" -179541,Bose SoundSport Headphones,1,99.99,04/27/19 12:54,"532 South St, Seattle, WA 98101" -179542,Bose SoundSport Headphones,1,99.99,04/24/19 01:38,"212 South St, Seattle, WA 98101" -179543,Wired Headphones,1,11.99,04/04/19 11:47,"417 Jackson St, San Francisco, CA 94016" -179544,Wired Headphones,1,11.99,04/03/19 16:22,"791 Pine St, San Francisco, CA 94016" -179544,Flatscreen TV,1,300,04/03/19 16:22,"791 Pine St, San Francisco, CA 94016" -179545,AAA Batteries (4-pack),1,2.99,04/10/19 11:07,"540 Jackson St, Los Angeles, CA 90001" -179546,Apple Airpods Headphones,1,150,04/25/19 20:17,"260 2nd St, Dallas, TX 75001" -179547,27in FHD Monitor,1,149.99,04/28/19 03:45,"773 9th St, Dallas, TX 75001" -179548,AAA Batteries (4-pack),1,2.99,04/19/19 09:46,"41 Maple St, San Francisco, CA 94016" -179549,Lightning Charging Cable,1,14.95,04/02/19 15:35,"581 Adams St, Atlanta, GA 30301" -179550,ThinkPad Laptop,1,999.99,04/07/19 12:48,"56 Willow St, New York City, NY 10001" -179551,27in FHD Monitor,1,149.99,04/26/19 10:37,"531 11th St, Los Angeles, CA 90001" -179552,AAA Batteries (4-pack),2,2.99,04/08/19 10:25,"773 Lake St, Boston, MA 02215" -179553,Lightning Charging Cable,1,14.95,04/20/19 20:33,"712 Church St, Dallas, TX 75001" -179554,Wired Headphones,1,11.99,04/15/19 22:04,"820 10th St, Dallas, TX 75001" -179555,Bose SoundSport Headphones,1,99.99,04/04/19 14:39,"118 Washington St, Boston, MA 02215" -179556,AAA Batteries (4-pack),1,2.99,04/26/19 21:30,"355 Walnut St, New York City, NY 10001" -179557,AAA Batteries (4-pack),2,2.99,04/26/19 13:25,"479 14th St, New York City, NY 10001" -179558,AA Batteries (4-pack),1,3.84,04/27/19 16:56,"428 Ridge St, New York City, NY 10001" -179559,AA Batteries (4-pack),1,3.84,04/08/19 09:10,"427 Meadow St, Atlanta, GA 30301" -179560,AAA Batteries (4-pack),1,2.99,04/19/19 01:58,"233 Madison St, Austin, TX 73301" -179561,USB-C Charging Cable,1,11.95,04/13/19 08:37,"870 2nd St, San Francisco, CA 94016" -179562,Wired Headphones,1,11.99,04/05/19 12:35,"231 14th St, Boston, MA 02215" -179563,USB-C Charging Cable,1,11.95,04/13/19 20:19,"127 6th St, San Francisco, CA 94016" -179564,Lightning Charging Cable,1,14.95,04/07/19 21:25,"936 Pine St, Dallas, TX 75001" -179565,AAA Batteries (4-pack),1,2.99,04/13/19 21:41,"419 Madison St, Boston, MA 02215" -179566,AA Batteries (4-pack),1,3.84,04/24/19 13:20,"254 11th St, San Francisco, CA 94016" -179567,AA Batteries (4-pack),1,3.84,04/10/19 02:42,"392 Pine St, San Francisco, CA 94016" -179568,Macbook Pro Laptop,1,1700,04/18/19 20:32,"644 North St, San Francisco, CA 94016" -179569,34in Ultrawide Monitor,1,379.99,04/11/19 18:34,"52 Lake St, New York City, NY 10001" -179570,USB-C Charging Cable,1,11.95,04/24/19 10:50,"732 Sunset St, Seattle, WA 98101" -179571,Bose SoundSport Headphones,1,99.99,04/30/19 10:08,"893 7th St, Atlanta, GA 30301" -179572,Bose SoundSport Headphones,1,99.99,04/02/19 22:28,"477 River St, New York City, NY 10001" -179573,Google Phone,1,600,04/11/19 20:52,"301 Jackson St, Los Angeles, CA 90001" -179574,USB-C Charging Cable,1,11.95,04/21/19 16:16,"702 West St, San Francisco, CA 94016" -179575,USB-C Charging Cable,1,11.95,04/25/19 02:10,"468 Center St, Portland, ME 04101" -179576,AAA Batteries (4-pack),1,2.99,04/03/19 20:15,"820 Jefferson St, Atlanta, GA 30301" -179577,Wired Headphones,1,11.99,04/30/19 10:55,"23 Lincoln St, Los Angeles, CA 90001" -179578,27in 4K Gaming Monitor,1,389.99,04/09/19 03:09,"414 Lakeview St, San Francisco, CA 94016" -179579,27in 4K Gaming Monitor,1,389.99,04/01/19 17:18,"253 Hickory St, Los Angeles, CA 90001" -179580,Lightning Charging Cable,1,14.95,04/23/19 14:53,"865 Lakeview St, Los Angeles, CA 90001" -179581,27in 4K Gaming Monitor,1,389.99,04/21/19 10:21,"214 Hill St, Los Angeles, CA 90001" -179582,Lightning Charging Cable,1,14.95,04/01/19 12:24,"689 Johnson St, Atlanta, GA 30301" -179583,Lightning Charging Cable,1,14.95,04/07/19 08:06,"308 Madison St, Boston, MA 02215" -179584,AA Batteries (4-pack),1,3.84,04/01/19 19:50,"88 Jackson St, Los Angeles, CA 90001" -179585,Flatscreen TV,1,300,04/01/19 14:59,"916 10th St, Boston, MA 02215" -179586,34in Ultrawide Monitor,1,379.99,04/21/19 16:20,"302 Highland St, San Francisco, CA 94016" -179587,Wired Headphones,1,11.99,04/29/19 06:59,"969 Spruce St, Boston, MA 02215" -179588,AAA Batteries (4-pack),2,2.99,04/23/19 11:44,"977 2nd St, Los Angeles, CA 90001" -179589,AA Batteries (4-pack),1,3.84,04/25/19 23:23,"822 Elm St, Boston, MA 02215" -179590,AAA Batteries (4-pack),2,2.99,04/02/19 10:38,"251 Park St, Portland, OR 97035" -179591,AAA Batteries (4-pack),2,2.99,04/25/19 12:23,"243 Jackson St, Dallas, TX 75001" -179592,AAA Batteries (4-pack),2,2.99,04/22/19 11:34,"215 Center St, Los Angeles, CA 90001" -179593,20in Monitor,1,109.99,04/29/19 07:23,"129 Forest St, Los Angeles, CA 90001" -179594,27in 4K Gaming Monitor,1,389.99,04/20/19 12:25,"587 Main St, New York City, NY 10001" -179595,LG Washing Machine,1,600.0,04/13/19 19:35,"656 Chestnut St, Seattle, WA 98101" -179596,Wired Headphones,1,11.99,04/26/19 10:01,"161 12th St, San Francisco, CA 94016" -179597,Wired Headphones,1,11.99,04/16/19 07:18,"448 13th St, Los Angeles, CA 90001" -179598,AA Batteries (4-pack),1,3.84,04/16/19 17:06,"594 Lake St, Boston, MA 02215" -179599,AAA Batteries (4-pack),2,2.99,04/02/19 23:29,"92 Lincoln St, San Francisco, CA 94016" -179600,Google Phone,1,600,04/27/19 11:51,"617 12th St, San Francisco, CA 94016" -179601,Wired Headphones,1,11.99,04/24/19 23:52,"928 Cedar St, Los Angeles, CA 90001" -179602,27in 4K Gaming Monitor,1,389.99,04/04/19 10:13,"72 1st St, Los Angeles, CA 90001" -179603,27in 4K Gaming Monitor,1,389.99,04/15/19 09:40,"294 8th St, New York City, NY 10001" -179604,AAA Batteries (4-pack),3,2.99,04/06/19 19:42,"775 Willow St, San Francisco, CA 94016" -179605,Vareebadd Phone,1,400,04/02/19 20:03,"435 10th St, San Francisco, CA 94016" -179606,AA Batteries (4-pack),3,3.84,04/25/19 09:15,"206 Lake St, New York City, NY 10001" -179607,Macbook Pro Laptop,1,1700,04/23/19 19:23,"823 2nd St, Seattle, WA 98101" -179608,LG Washing Machine,1,600.0,04/13/19 14:16,"970 Dogwood St, Los Angeles, CA 90001" -179609,AA Batteries (4-pack),1,3.84,04/26/19 20:09,"2 Hill St, Los Angeles, CA 90001" -179610,Flatscreen TV,1,300,04/20/19 18:52,"947 7th St, San Francisco, CA 94016" -179611,AA Batteries (4-pack),1,3.84,04/20/19 14:48,"176 Lake St, Boston, MA 02215" -179612,20in Monitor,1,109.99,04/18/19 17:54,"714 Meadow St, Los Angeles, CA 90001" -179613,Wired Headphones,1,11.99,04/19/19 20:07,"974 Sunset St, Seattle, WA 98101" -179614,27in FHD Monitor,1,149.99,04/10/19 21:30,"345 Willow St, San Francisco, CA 94016" -179615,AAA Batteries (4-pack),1,2.99,04/16/19 23:41,"270 Ridge St, Dallas, TX 75001" -179616,iPhone,1,700,04/04/19 19:04,"742 12th St, San Francisco, CA 94016" -179617,Apple Airpods Headphones,1,150,04/13/19 23:24,"225 Elm St, Austin, TX 73301" -179618,iPhone,1,700,04/21/19 10:28,"292 Hickory St, Los Angeles, CA 90001" -179619,AA Batteries (4-pack),5,3.84,04/03/19 10:50,"781 Center St, Portland, OR 97035" -179620,Lightning Charging Cable,1,14.95,04/17/19 18:57,"318 Cedar St, Atlanta, GA 30301" -179621,Lightning Charging Cable,1,14.95,04/17/19 14:20,"794 Pine St, Portland, OR 97035" -179622,Apple Airpods Headphones,1,150,04/24/19 08:58,"977 Park St, San Francisco, CA 94016" -179623,AAA Batteries (4-pack),1,2.99,04/26/19 17:52,"587 Main St, Portland, OR 97035" -179624,AA Batteries (4-pack),1,3.84,04/09/19 05:04,"872 Cedar St, Los Angeles, CA 90001" -179625,USB-C Charging Cable,1,11.95,04/24/19 17:41,"238 Adams St, Los Angeles, CA 90001" -179626,USB-C Charging Cable,1,11.95,04/27/19 23:26,"876 11th St, Boston, MA 02215" -179627,Wired Headphones,1,11.99,04/15/19 15:49,"652 Jefferson St, New York City, NY 10001" -179628,Wired Headphones,2,11.99,04/11/19 23:26,"649 Wilson St, San Francisco, CA 94016" -179629,AA Batteries (4-pack),1,3.84,04/27/19 21:18,"745 Walnut St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -179630,Bose SoundSport Headphones,1,99.99,04/25/19 15:44,"855 Jefferson St, San Francisco, CA 94016" -179631,Lightning Charging Cable,1,14.95,04/23/19 14:38,"303 13th St, Dallas, TX 75001" -179632,20in Monitor,1,109.99,04/06/19 18:19,"339 14th St, Seattle, WA 98101" -179633,AAA Batteries (4-pack),2,2.99,04/26/19 18:41,"747 6th St, Los Angeles, CA 90001" -179634,AA Batteries (4-pack),1,3.84,04/22/19 10:23,"102 Elm St, San Francisco, CA 94016" -179635,USB-C Charging Cable,1,11.95,04/12/19 11:35,"397 Walnut St, Dallas, TX 75001" -179636,Macbook Pro Laptop,1,1700,04/26/19 12:46,"209 11th St, New York City, NY 10001" -179637,AA Batteries (4-pack),1,3.84,04/05/19 13:01,"97 Johnson St, Seattle, WA 98101" -179638,USB-C Charging Cable,1,11.95,04/14/19 15:04,"651 Lake St, Los Angeles, CA 90001" -179639,AAA Batteries (4-pack),2,2.99,04/22/19 20:35,"730 4th St, Boston, MA 02215" -179640,Apple Airpods Headphones,1,150,04/15/19 20:02,"926 10th St, San Francisco, CA 94016" -179641,Lightning Charging Cable,1,14.95,04/18/19 09:47,"736 Adams St, Portland, OR 97035" -179642,AAA Batteries (4-pack),1,2.99,04/16/19 05:34,"855 River St, New York City, NY 10001" -179643,AA Batteries (4-pack),1,3.84,04/21/19 18:13,"574 Main St, Dallas, TX 75001" -179644,34in Ultrawide Monitor,1,379.99,04/28/19 10:40,"120 Lake St, Dallas, TX 75001" -179645,Bose SoundSport Headphones,1,99.99,04/23/19 16:44,"521 River St, Dallas, TX 75001" -179646,AA Batteries (4-pack),1,3.84,04/22/19 06:14,"335 13th St, Portland, ME 04101" -179647,AAA Batteries (4-pack),1,2.99,04/22/19 20:42,"715 Madison St, Los Angeles, CA 90001" -179648,Bose SoundSport Headphones,1,99.99,04/08/19 12:13,"986 Meadow St, San Francisco, CA 94016" -179649,Apple Airpods Headphones,1,150,04/04/19 16:08,"530 Highland St, San Francisco, CA 94016" -179650,iPhone,1,700,04/26/19 18:53,"304 Johnson St, Dallas, TX 75001" -179651,27in 4K Gaming Monitor,1,389.99,04/05/19 11:02,"804 Ridge St, San Francisco, CA 94016" -179652,Apple Airpods Headphones,1,150,04/03/19 10:56,"158 5th St, San Francisco, CA 94016" -179653,AA Batteries (4-pack),3,3.84,04/15/19 16:53,"304 Washington St, Portland, OR 97035" -179653,Flatscreen TV,1,300,04/15/19 16:53,"304 Washington St, Portland, OR 97035" -179654,iPhone,1,700,04/14/19 17:28,"357 Pine St, Boston, MA 02215" -179655,iPhone,1,700,04/03/19 23:50,"176 Cedar St, Los Angeles, CA 90001" -179656,27in 4K Gaming Monitor,1,389.99,04/11/19 14:48,"391 Cedar St, New York City, NY 10001" -179657,27in FHD Monitor,1,149.99,04/13/19 14:00,"4 Sunset St, Boston, MA 02215" -179658,USB-C Charging Cable,1,11.95,04/10/19 11:27,"502 8th St, Boston, MA 02215" -179659,AA Batteries (4-pack),2,3.84,04/20/19 12:32,"15 Center St, San Francisco, CA 94016" -179660,27in FHD Monitor,1,149.99,04/27/19 15:58,"540 Highland St, New York City, NY 10001" -179661,27in 4K Gaming Monitor,1,389.99,04/23/19 21:26,"278 5th St, Portland, ME 04101" -179662,AAA Batteries (4-pack),2,2.99,04/19/19 13:38,"738 Sunset St, Portland, OR 97035" -179663,USB-C Charging Cable,1,11.95,04/24/19 07:54,"30 Elm St, San Francisco, CA 94016" -179664,Bose SoundSport Headphones,1,99.99,04/11/19 15:26,"763 6th St, Atlanta, GA 30301" -179665,AAA Batteries (4-pack),2,2.99,04/06/19 09:20,"303 13th St, San Francisco, CA 94016" -179666,Bose SoundSport Headphones,1,99.99,04/18/19 18:01,"440 Forest St, Portland, OR 97035" -179667,Wired Headphones,1,11.99,04/02/19 11:10,"660 2nd St, Seattle, WA 98101" -179668,Lightning Charging Cable,1,14.95,04/29/19 11:52,"912 Jackson St, Atlanta, GA 30301" -179669,iPhone,1,700,04/26/19 11:29,"451 Walnut St, Portland, OR 97035" -179670,AA Batteries (4-pack),1,3.84,04/08/19 12:22,"681 South St, San Francisco, CA 94016" -179671,AA Batteries (4-pack),2,3.84,04/05/19 19:49,"64 Jefferson St, Dallas, TX 75001" -179672,AA Batteries (4-pack),1,3.84,04/30/19 13:22,"587 River St, Portland, ME 04101" -179673,Wired Headphones,2,11.99,04/28/19 19:44,"404 Johnson St, San Francisco, CA 94016" -179674,Lightning Charging Cable,1,14.95,04/15/19 12:23,"514 Lakeview St, Boston, MA 02215" -179675,Macbook Pro Laptop,1,1700,04/15/19 18:12,"397 Madison St, Los Angeles, CA 90001" -179676,USB-C Charging Cable,1,11.95,04/13/19 01:08,"817 12th St, Boston, MA 02215" -179677,USB-C Charging Cable,2,11.95,04/07/19 08:49,"72 12th St, San Francisco, CA 94016" -179678,AA Batteries (4-pack),1,3.84,04/12/19 16:55,"716 Jackson St, San Francisco, CA 94016" -179679,USB-C Charging Cable,1,11.95,04/16/19 18:50,"231 5th St, New York City, NY 10001" -179680,Wired Headphones,1,11.99,04/24/19 19:51,"736 Adams St, Portland, OR 97035" -179681,USB-C Charging Cable,2,11.95,04/01/19 19:20,"882 South St, Portland, ME 04101" -179682,Apple Airpods Headphones,1,150,04/29/19 11:36,"596 Willow St, Boston, MA 02215" -179683,Wired Headphones,1,11.99,04/25/19 15:26,"967 Johnson St, Los Angeles, CA 90001" -179684,Wired Headphones,1,11.99,04/23/19 19:37,"263 Cedar St, Seattle, WA 98101" -179685,Lightning Charging Cable,1,14.95,04/27/19 19:48,"877 Hill St, Atlanta, GA 30301" -179686,Lightning Charging Cable,1,14.95,04/17/19 11:45,"347 South St, Los Angeles, CA 90001" -179687,Macbook Pro Laptop,1,1700,04/16/19 13:56,"84 Pine St, San Francisco, CA 94016" -179688,Lightning Charging Cable,1,14.95,04/11/19 12:10,"389 Wilson St, New York City, NY 10001" -179689,AAA Batteries (4-pack),1,2.99,04/14/19 18:47,"559 Church St, New York City, NY 10001" -179690,Bose SoundSport Headphones,1,99.99,04/28/19 17:35,"989 Adams St, San Francisco, CA 94016" -179691,AAA Batteries (4-pack),1,2.99,04/07/19 00:18,"457 Maple St, Los Angeles, CA 90001" -179692,Bose SoundSport Headphones,1,99.99,04/22/19 18:36,"841 Cherry St, Portland, OR 97035" -179693,27in FHD Monitor,1,149.99,04/25/19 10:38,"514 4th St, San Francisco, CA 94016" -179694,Wired Headphones,1,11.99,04/25/19 11:09,"152 Dogwood St, San Francisco, CA 94016" -179695,Lightning Charging Cable,1,14.95,04/19/19 13:10,"695 Washington St, Los Angeles, CA 90001" -179696,iPhone,1,700,04/20/19 18:41,"296 Lakeview St, Portland, OR 97035" -179697,AAA Batteries (4-pack),1,2.99,04/29/19 19:37,"964 South St, San Francisco, CA 94016" -179698,USB-C Charging Cable,1,11.95,04/04/19 12:16,"404 11th St, Los Angeles, CA 90001" -179699,Wired Headphones,1,11.99,04/03/19 10:51,"704 Church St, New York City, NY 10001" -179700,Wired Headphones,1,11.99,04/26/19 10:02,"765 13th St, San Francisco, CA 94016" -179701,AA Batteries (4-pack),1,3.84,04/14/19 15:01,"519 Center St, Portland, OR 97035" -179702,USB-C Charging Cable,1,11.95,04/29/19 11:43,"918 2nd St, Dallas, TX 75001" -179703,AA Batteries (4-pack),1,3.84,04/13/19 13:26,"14 12th St, Austin, TX 73301" -179704,20in Monitor,1,109.99,04/14/19 01:55,"139 Park St, San Francisco, CA 94016" -179705,Lightning Charging Cable,1,14.95,04/26/19 13:04,"575 Sunset St, New York City, NY 10001" -179706,AAA Batteries (4-pack),2,2.99,04/30/19 06:08,"251 Wilson St, Austin, TX 73301" -179707,AAA Batteries (4-pack),2,2.99,04/09/19 00:07,"901 Walnut St, San Francisco, CA 94016" -179708,Lightning Charging Cable,1,14.95,04/25/19 19:48,"132 Church St, Seattle, WA 98101" -179709,AA Batteries (4-pack),1,3.84,04/26/19 14:24,"803 Center St, New York City, NY 10001" -179710,AA Batteries (4-pack),1,3.84,04/21/19 19:21,"87 12th St, San Francisco, CA 94016" -179711,AA Batteries (4-pack),2,3.84,04/17/19 13:08,"302 River St, New York City, NY 10001" -179712,USB-C Charging Cable,1,11.95,04/13/19 13:10,"544 Chestnut St, Seattle, WA 98101" -179713,Macbook Pro Laptop,1,1700,04/25/19 14:48,"950 5th St, New York City, NY 10001" -179714,USB-C Charging Cable,1,11.95,04/01/19 13:48,"359 Wilson St, Dallas, TX 75001" -179715,Wired Headphones,1,11.99,04/11/19 16:31,"480 10th St, Los Angeles, CA 90001" -179716,Lightning Charging Cable,1,14.95,04/30/19 18:05,"748 West St, Seattle, WA 98101" -179717,Lightning Charging Cable,1,14.95,04/01/19 11:09,"625 12th St, Los Angeles, CA 90001" -179718,LG Dryer,1,600.0,04/16/19 22:12,"51 Walnut St, New York City, NY 10001" -179719,34in Ultrawide Monitor,1,379.99,04/03/19 13:44,"650 Lakeview St, Seattle, WA 98101" -179720,AAA Batteries (4-pack),3,2.99,04/27/19 14:10,"885 Cherry St, Dallas, TX 75001" -179721,Lightning Charging Cable,1,14.95,04/15/19 14:34,"878 9th St, Boston, MA 02215" -179722,Apple Airpods Headphones,1,150,04/23/19 15:01,"257 Highland St, Los Angeles, CA 90001" -179723,Wired Headphones,1,11.99,04/02/19 08:45,"515 6th St, Austin, TX 73301" -179724,AAA Batteries (4-pack),1,2.99,04/16/19 06:06,"981 Madison St, New York City, NY 10001" -179725,Wired Headphones,1,11.99,04/08/19 07:45,"843 Wilson St, Austin, TX 73301" -179726,AA Batteries (4-pack),1,3.84,04/29/19 18:51,"796 Forest St, Los Angeles, CA 90001" -179727,AAA Batteries (4-pack),1,2.99,04/29/19 11:24,"22 Adams St, Dallas, TX 75001" -179728,Bose SoundSport Headphones,1,99.99,04/27/19 08:55,"549 Dogwood St, San Francisco, CA 94016" -179729,Google Phone,1,600,04/15/19 03:52,"163 Cherry St, Atlanta, GA 30301" -179730,Lightning Charging Cable,1,14.95,04/21/19 15:53,"504 2nd St, Los Angeles, CA 90001" -179731,Flatscreen TV,1,300,04/17/19 00:28,"897 7th St, San Francisco, CA 94016" -179732,Apple Airpods Headphones,1,150,04/23/19 19:17,"537 Main St, Dallas, TX 75001" -179733,AAA Batteries (4-pack),1,2.99,04/04/19 00:32,"133 Park St, Boston, MA 02215" -179734,USB-C Charging Cable,2,11.95,04/02/19 00:16,"795 Lincoln St, Los Angeles, CA 90001" -179735,Apple Airpods Headphones,1,150,04/23/19 19:30,"565 West St, Dallas, TX 75001" -179736,iPhone,1,700,04/25/19 15:13,"151 Church St, Atlanta, GA 30301" -179737,Flatscreen TV,1,300,04/16/19 16:10,"189 1st St, Seattle, WA 98101" -179738,AAA Batteries (4-pack),1,2.99,04/12/19 13:56,"274 Meadow St, New York City, NY 10001" -179739,20in Monitor,1,109.99,04/24/19 14:43,"265 Park St, San Francisco, CA 94016" -179740,Flatscreen TV,1,300,04/20/19 16:49,"260 1st St, Boston, MA 02215" -179741,Macbook Pro Laptop,1,1700,04/29/19 12:52,"454 Lakeview St, New York City, NY 10001" -179742,AA Batteries (4-pack),1,3.84,04/07/19 17:21,"981 14th St, Los Angeles, CA 90001" -179743,USB-C Charging Cable,1,11.95,04/14/19 08:26,"415 Walnut St, Seattle, WA 98101" -179744,USB-C Charging Cable,1,11.95,04/07/19 18:22,"273 Spruce St, Los Angeles, CA 90001" -179745,Google Phone,1,600,04/05/19 10:48,"209 South St, San Francisco, CA 94016" -179745,USB-C Charging Cable,1,11.95,04/05/19 10:48,"209 South St, San Francisco, CA 94016" -179746,Wired Headphones,1,11.99,04/17/19 09:52,"598 Jackson St, New York City, NY 10001" -179747,27in FHD Monitor,1,149.99,04/17/19 09:07,"899 Main St, Dallas, TX 75001" -179748,AAA Batteries (4-pack),1,2.99,04/01/19 16:14,"859 Main St, Boston, MA 02215" -179749,Apple Airpods Headphones,1,150,04/06/19 20:41,"823 Lincoln St, Portland, OR 97035" -179750,iPhone,1,700,04/08/19 04:26,"634 Elm St, Seattle, WA 98101" -179751,Apple Airpods Headphones,1,150,04/26/19 22:55,"664 Main St, Los Angeles, CA 90001" -179752,AA Batteries (4-pack),1,3.84,04/18/19 12:04,"939 14th St, Atlanta, GA 30301" -179753,Macbook Pro Laptop,1,1700,04/04/19 09:49,"25 Walnut St, San Francisco, CA 94016" -179754,Apple Airpods Headphones,1,150,04/04/19 15:14,"101 14th St, San Francisco, CA 94016" -179755,Macbook Pro Laptop,1,1700,04/26/19 15:26,"945 Maple St, Atlanta, GA 30301" -179756,27in 4K Gaming Monitor,1,389.99,04/15/19 12:47,"488 Lake St, San Francisco, CA 94016" -179757,USB-C Charging Cable,1,11.95,04/14/19 20:30,"924 Ridge St, New York City, NY 10001" -179758,AAA Batteries (4-pack),1,2.99,04/02/19 21:02,"380 1st St, San Francisco, CA 94016" -179759,USB-C Charging Cable,1,11.95,04/14/19 19:18,"14 7th St, San Francisco, CA 94016" -179760,Apple Airpods Headphones,1,150,04/21/19 21:18,"396 7th St, New York City, NY 10001" -179761,Wired Headphones,1,11.99,04/10/19 13:09,"562 Lake St, Los Angeles, CA 90001" -179762,Bose SoundSport Headphones,1,99.99,04/01/19 12:12,"110 Madison St, Dallas, TX 75001" -179763,Wired Headphones,2,11.99,04/03/19 22:42,"69 Jackson St, Boston, MA 02215" -179764,Wired Headphones,1,11.99,04/14/19 11:13,"148 River St, New York City, NY 10001" -179765,AAA Batteries (4-pack),2,2.99,04/10/19 15:58,"720 Lakeview St, San Francisco, CA 94016" -179766,AAA Batteries (4-pack),1,2.99,04/24/19 07:33,"47 Chestnut St, San Francisco, CA 94016" -179767,AAA Batteries (4-pack),1,2.99,04/22/19 11:54,"658 South St, Los Angeles, CA 90001" -179768,iPhone,1,700,04/28/19 15:11,"892 River St, Los Angeles, CA 90001" -179769,AAA Batteries (4-pack),1,2.99,04/16/19 11:12,"370 Pine St, Boston, MA 02215" -179770,Apple Airpods Headphones,1,150,04/24/19 16:46,"306 Hickory St, San Francisco, CA 94016" -179771,Lightning Charging Cable,1,14.95,04/20/19 20:37,"73 South St, New York City, NY 10001" -179772,27in FHD Monitor,1,149.99,04/08/19 17:42,"666 Lakeview St, Boston, MA 02215" -179773,AA Batteries (4-pack),2,3.84,04/14/19 15:04,"925 1st St, New York City, NY 10001" -179774,USB-C Charging Cable,1,11.95,04/22/19 13:33,"136 Ridge St, Los Angeles, CA 90001" -179775,AAA Batteries (4-pack),1,2.99,04/18/19 20:18,"766 10th St, Austin, TX 73301" -179776,Wired Headphones,2,11.99,04/21/19 21:38,"978 Wilson St, Seattle, WA 98101" -179777,Wired Headphones,1,11.99,04/21/19 14:51,"180 West St, Dallas, TX 75001" -179778,Apple Airpods Headphones,1,150,04/16/19 15:15,"162 Hickory St, Los Angeles, CA 90001" -179779,Bose SoundSport Headphones,1,99.99,04/07/19 07:35,"296 Elm St, Seattle, WA 98101" -179780,Apple Airpods Headphones,1,150,04/09/19 18:36,"445 Cherry St, Dallas, TX 75001" -179781,AAA Batteries (4-pack),1,2.99,04/26/19 22:20,"555 13th St, New York City, NY 10001" -179782,AA Batteries (4-pack),1,3.84,04/04/19 21:52,"181 Meadow St, Boston, MA 02215" -179783,Wired Headphones,1,11.99,04/25/19 12:13,"710 River St, San Francisco, CA 94016" -179784,AAA Batteries (4-pack),1,2.99,04/27/19 02:01,"889 Park St, Austin, TX 73301" -179785,AA Batteries (4-pack),1,3.84,04/28/19 22:03,"137 10th St, Atlanta, GA 30301" -179786,AA Batteries (4-pack),1,3.84,04/04/19 09:23,"359 Jackson St, New York City, NY 10001" -179787,AA Batteries (4-pack),1,3.84,04/08/19 20:40,"625 Hill St, New York City, NY 10001" -179788,AA Batteries (4-pack),1,3.84,04/07/19 18:29,"86 Hickory St, Seattle, WA 98101" -179789,AA Batteries (4-pack),3,3.84,04/22/19 12:25,"239 Main St, Los Angeles, CA 90001" -179790,AAA Batteries (4-pack),2,2.99,04/10/19 09:58,"475 Adams St, Boston, MA 02215" -179791,Lightning Charging Cable,1,14.95,04/05/19 07:40,"105 Lake St, Atlanta, GA 30301" -179792,USB-C Charging Cable,1,11.95,04/12/19 19:57,"802 Highland St, San Francisco, CA 94016" -179793,34in Ultrawide Monitor,1,379.99,04/09/19 15:03,"466 Cedar St, Atlanta, GA 30301" -179794,Lightning Charging Cable,1,14.95,04/28/19 12:08,"691 5th St, New York City, NY 10001" -179795,Lightning Charging Cable,1,14.95,04/18/19 18:55,"855 12th St, Los Angeles, CA 90001" -179796,USB-C Charging Cable,1,11.95,04/14/19 11:05,"782 Maple St, New York City, NY 10001" -179797,USB-C Charging Cable,1,11.95,04/11/19 11:54,"785 14th St, New York City, NY 10001" -179798,Wired Headphones,1,11.99,04/25/19 19:53,"391 5th St, New York City, NY 10001" -179799,Apple Airpods Headphones,1,150,04/29/19 20:53,"539 Adams St, New York City, NY 10001" -179800,Lightning Charging Cable,1,14.95,04/20/19 11:01,"159 13th St, San Francisco, CA 94016" -179801,USB-C Charging Cable,1,11.95,04/21/19 00:29,"712 Spruce St, Los Angeles, CA 90001" -179802,Google Phone,1,600,04/28/19 17:20,"79 5th St, Boston, MA 02215" -179803,Lightning Charging Cable,1,14.95,04/17/19 20:23,"832 Wilson St, Atlanta, GA 30301" -179804,AAA Batteries (4-pack),2,2.99,04/03/19 17:32,"253 13th St, Atlanta, GA 30301" -179805,Wired Headphones,1,11.99,04/18/19 18:05,"238 North St, Atlanta, GA 30301" -179806,Bose SoundSport Headphones,1,99.99,04/28/19 14:12,"649 Lake St, New York City, NY 10001" -179807,Apple Airpods Headphones,1,150,04/20/19 13:11,"660 2nd St, Dallas, TX 75001" -179808,USB-C Charging Cable,1,11.95,04/04/19 09:50,"952 1st St, Atlanta, GA 30301" -179808,27in FHD Monitor,1,149.99,04/04/19 09:50,"952 1st St, Atlanta, GA 30301" -179809,27in 4K Gaming Monitor,1,389.99,04/16/19 15:16,"586 2nd St, Los Angeles, CA 90001" -179810,Lightning Charging Cable,1,14.95,04/10/19 12:54,"493 Ridge St, Los Angeles, CA 90001" -179811,20in Monitor,1,109.99,04/10/19 15:54,"346 Church St, Seattle, WA 98101" -179812,Wired Headphones,1,11.99,04/14/19 11:58,"428 Hill St, Portland, OR 97035" -179813,AA Batteries (4-pack),1,3.84,04/26/19 10:58,"847 Adams St, Austin, TX 73301" -179814,Apple Airpods Headphones,1,150,04/09/19 12:28,"629 10th St, San Francisco, CA 94016" -179815,Wired Headphones,2,11.99,04/28/19 15:42,"91 9th St, Seattle, WA 98101" -179816,34in Ultrawide Monitor,1,379.99,04/01/19 21:52,"615 Chestnut St, San Francisco, CA 94016" -179817,USB-C Charging Cable,1,11.95,04/30/19 11:48,"183 Johnson St, San Francisco, CA 94016" -179818,USB-C Charging Cable,1,11.95,04/14/19 09:56,"479 Pine St, Boston, MA 02215" -179819,Bose SoundSport Headphones,1,99.99,04/21/19 01:28,"985 Center St, Atlanta, GA 30301" -179820,Google Phone,1,600,04/03/19 08:40,"85 Hill St, Boston, MA 02215" -179820,USB-C Charging Cable,1,11.95,04/03/19 08:40,"85 Hill St, Boston, MA 02215" -179821,AAA Batteries (4-pack),2,2.99,04/22/19 16:19,"975 Main St, Dallas, TX 75001" -179822,27in 4K Gaming Monitor,1,389.99,04/30/19 18:33,"745 7th St, New York City, NY 10001" -179823,Apple Airpods Headphones,1,150,04/23/19 14:50,"524 6th St, Boston, MA 02215" -179824,20in Monitor,1,109.99,04/08/19 17:26,"531 7th St, Seattle, WA 98101" -179825,USB-C Charging Cable,1,11.95,04/02/19 18:07,"128 Dogwood St, San Francisco, CA 94016" -179826,AAA Batteries (4-pack),1,2.99,04/20/19 09:06,"922 10th St, Boston, MA 02215" -179827,27in 4K Gaming Monitor,1,389.99,04/10/19 15:24,"929 Wilson St, San Francisco, CA 94016" -179828,Lightning Charging Cable,1,14.95,04/05/19 06:38,"792 Ridge St, Boston, MA 02215" -179829,AA Batteries (4-pack),1,3.84,04/15/19 10:23,"704 Highland St, San Francisco, CA 94016" -179830,AA Batteries (4-pack),1,3.84,04/24/19 21:40,"206 Washington St, Los Angeles, CA 90001" -179831,Apple Airpods Headphones,1,150,04/10/19 07:40,"581 Chestnut St, Los Angeles, CA 90001" -179832,Lightning Charging Cable,1,14.95,04/28/19 19:23,"962 Wilson St, New York City, NY 10001" -179833,AAA Batteries (4-pack),3,2.99,04/21/19 00:49,"537 Elm St, Boston, MA 02215" -179834,USB-C Charging Cable,1,11.95,04/07/19 07:36,"212 Maple St, New York City, NY 10001" -179835,Google Phone,1,600,04/21/19 16:38,"158 Center St, Portland, OR 97035" -179835,Wired Headphones,1,11.99,04/21/19 16:38,"158 Center St, Portland, OR 97035" -179836,Flatscreen TV,1,300,04/26/19 22:16,"697 Cherry St, Seattle, WA 98101" -179837,Google Phone,1,600,04/04/19 11:11,"568 Hill St, New York City, NY 10001" -179837,USB-C Charging Cable,1,11.95,04/04/19 11:11,"568 Hill St, New York City, NY 10001" -179838,AAA Batteries (4-pack),1,2.99,04/06/19 15:25,"216 14th St, Austin, TX 73301" -179839,27in 4K Gaming Monitor,1,389.99,04/03/19 16:43,"191 Spruce St, Los Angeles, CA 90001" -179840,Wired Headphones,1,11.99,04/10/19 13:36,"834 Spruce St, San Francisco, CA 94016" -179841,Wired Headphones,1,11.99,04/09/19 16:58,"857 Park St, San Francisco, CA 94016" -179842,AAA Batteries (4-pack),1,2.99,04/11/19 14:58,"409 Maple St, New York City, NY 10001" -179843,USB-C Charging Cable,1,11.95,04/26/19 12:29,"704 South St, Boston, MA 02215" -179844,Apple Airpods Headphones,1,150,04/19/19 16:38,"722 Madison St, Los Angeles, CA 90001" -179845,AAA Batteries (4-pack),2,2.99,04/11/19 13:08,"541 Adams St, Los Angeles, CA 90001" -179846,ThinkPad Laptop,1,999.99,04/08/19 19:42,"380 South St, New York City, NY 10001" -179847,Lightning Charging Cable,1,14.95,04/21/19 13:11,"970 Johnson St, San Francisco, CA 94016" -179848,Apple Airpods Headphones,1,150,04/22/19 19:46,"665 West St, San Francisco, CA 94016" -179849,34in Ultrawide Monitor,1,379.99,04/20/19 10:26,"861 4th St, New York City, NY 10001" -179850,34in Ultrawide Monitor,1,379.99,04/22/19 17:08,"343 Ridge St, San Francisco, CA 94016" -179851,Vareebadd Phone,1,400,04/03/19 11:37,"909 South St, Los Angeles, CA 90001" -179852,ThinkPad Laptop,1,999.99,04/16/19 11:42,"19 Forest St, San Francisco, CA 94016" -179853,Lightning Charging Cable,1,14.95,04/14/19 10:14,"548 Jackson St, Dallas, TX 75001" -179854,Apple Airpods Headphones,1,150,04/27/19 00:42,"882 North St, Boston, MA 02215" -179855,USB-C Charging Cable,1,11.95,04/29/19 12:43,"69 7th St, Boston, MA 02215" -179856,27in FHD Monitor,1,149.99,04/04/19 07:39,"818 River St, Seattle, WA 98101" -179857,Apple Airpods Headphones,1,150,04/06/19 15:09,"966 Maple St, Los Angeles, CA 90001" -179858,USB-C Charging Cable,1,11.95,04/20/19 21:01,"486 Willow St, San Francisco, CA 94016" -179859,Lightning Charging Cable,1,14.95,04/21/19 20:13,"381 10th St, Austin, TX 73301" -179860,LG Dryer,1,600.0,04/20/19 12:45,"762 Meadow St, Dallas, TX 75001" -179861,AA Batteries (4-pack),1,3.84,04/29/19 20:15,"676 9th St, Boston, MA 02215" -179862,AA Batteries (4-pack),3,3.84,04/04/19 09:14,"106 Chestnut St, Austin, TX 73301" -179863,ThinkPad Laptop,1,999.99,04/05/19 08:21,"989 Maple St, San Francisco, CA 94016" -179864,Lightning Charging Cable,1,14.95,04/06/19 18:43,"780 1st St, Atlanta, GA 30301" -179865,AAA Batteries (4-pack),6,2.99,04/14/19 11:24,"83 Willow St, Austin, TX 73301" -179866,Apple Airpods Headphones,1,150,04/26/19 21:07,"761 Lakeview St, San Francisco, CA 94016" -179867,USB-C Charging Cable,1,11.95,04/21/19 18:51,"750 Walnut St, Dallas, TX 75001" -179868,Apple Airpods Headphones,1,150,04/24/19 20:56,"80 West St, San Francisco, CA 94016" -179869,ThinkPad Laptop,1,999.99,04/02/19 19:15,"165 Lake St, San Francisco, CA 94016" -179870,AA Batteries (4-pack),1,3.84,04/08/19 20:14,"848 14th St, New York City, NY 10001" -179871,AAA Batteries (4-pack),2,2.99,04/24/19 09:17,"362 Lake St, San Francisco, CA 94016" -179872,AAA Batteries (4-pack),1,2.99,04/01/19 22:35,"667 Pine St, Seattle, WA 98101" -179873,20in Monitor,1,109.99,04/24/19 12:43,"777 Dogwood St, Atlanta, GA 30301" -179874,Macbook Pro Laptop,1,1700,04/27/19 19:08,"858 Cherry St, New York City, NY 10001" -179875,27in FHD Monitor,1,149.99,04/10/19 18:51,"497 2nd St, Boston, MA 02215" -179876,Macbook Pro Laptop,1,1700,04/19/19 14:01,"566 Chestnut St, Seattle, WA 98101" -179877,AA Batteries (4-pack),1,3.84,04/29/19 13:39,"169 Adams St, Seattle, WA 98101" -179878,Bose SoundSport Headphones,1,99.99,04/14/19 20:23,"977 Jefferson St, Atlanta, GA 30301" -179879,AA Batteries (4-pack),1,3.84,04/03/19 10:16,"95 Ridge St, Boston, MA 02215" -179880,USB-C Charging Cable,1,11.95,04/06/19 20:58,"144 4th St, Seattle, WA 98101" -179881,USB-C Charging Cable,1,11.95,04/06/19 16:51,"17 Jefferson St, Los Angeles, CA 90001" -179882,Lightning Charging Cable,1,14.95,04/15/19 13:04,"405 Walnut St, Los Angeles, CA 90001" -179883,iPhone,1,700,04/04/19 15:53,"353 1st St, New York City, NY 10001" -179884,ThinkPad Laptop,1,999.99,04/25/19 20:12,"64 Jackson St, Atlanta, GA 30301" -179885,20in Monitor,1,109.99,04/26/19 17:53,"369 13th St, New York City, NY 10001" -179885,Bose SoundSport Headphones,1,99.99,04/26/19 17:53,"369 13th St, New York City, NY 10001" -179886,iPhone,1,700,04/23/19 11:42,"927 Center St, Los Angeles, CA 90001" -179887,34in Ultrawide Monitor,1,379.99,04/18/19 14:59,"397 Elm St, New York City, NY 10001" -179888,AA Batteries (4-pack),1,3.84,04/10/19 19:38,"840 Forest St, Portland, ME 04101" -179889,Bose SoundSport Headphones,1,99.99,04/22/19 10:33,"473 8th St, Dallas, TX 75001" -179890,USB-C Charging Cable,1,11.95,04/20/19 19:06,"852 Johnson St, San Francisco, CA 94016" -179891,34in Ultrawide Monitor,1,379.99,04/30/19 20:46,"505 Ridge St, Dallas, TX 75001" -179892,USB-C Charging Cable,1,11.95,04/03/19 02:31,"682 Lakeview St, Atlanta, GA 30301" -179893,27in 4K Gaming Monitor,1,389.99,04/26/19 08:11,"166 Hill St, Los Angeles, CA 90001" -179894,Wired Headphones,1,11.99,04/08/19 20:54,"127 4th St, Boston, MA 02215" -179895,AA Batteries (4-pack),1,3.84,04/26/19 11:20,"748 Lincoln St, Boston, MA 02215" -179896,AA Batteries (4-pack),1,3.84,04/02/19 12:36,"628 Church St, New York City, NY 10001" -179897,Flatscreen TV,1,300,04/16/19 17:57,"584 12th St, San Francisco, CA 94016" -179898,iPhone,1,700,04/30/19 09:08,"536 Adams St, New York City, NY 10001" -179899,27in 4K Gaming Monitor,1,389.99,04/01/19 16:40,"453 North St, New York City, NY 10001" -179900,27in FHD Monitor,1,149.99,04/23/19 20:22,"95 Elm St, San Francisco, CA 94016" -179901,USB-C Charging Cable,1,11.95,04/26/19 17:28,"53 Hickory St, Seattle, WA 98101" -179902,Bose SoundSport Headphones,1,99.99,04/09/19 16:28,"329 5th St, Seattle, WA 98101" -179903,Bose SoundSport Headphones,1,99.99,04/04/19 13:50,"497 Lake St, San Francisco, CA 94016" -179904,Lightning Charging Cable,1,14.95,04/28/19 08:05,"261 River St, Los Angeles, CA 90001" -179905,iPhone,1,700,04/28/19 22:23,"699 Lake St, Atlanta, GA 30301" -179906,Bose SoundSport Headphones,1,99.99,04/02/19 11:26,"997 5th St, Atlanta, GA 30301" -179907,AAA Batteries (4-pack),1,2.99,04/25/19 18:44,"234 Hickory St, San Francisco, CA 94016" -179908,Apple Airpods Headphones,1,150,04/03/19 17:03,"569 Johnson St, New York City, NY 10001" -179909,Apple Airpods Headphones,1,150,04/11/19 18:57,"769 Sunset St, San Francisco, CA 94016" -179910,AAA Batteries (4-pack),1,2.99,04/17/19 22:50,"466 14th St, New York City, NY 10001" -179911,Lightning Charging Cable,1,14.95,04/03/19 12:59,"832 Church St, San Francisco, CA 94016" -179912,20in Monitor,1,109.99,04/15/19 19:34,"124 Wilson St, Boston, MA 02215" -179913,Google Phone,1,600,04/16/19 17:25,"12 Madison St, San Francisco, CA 94016" -179914,Macbook Pro Laptop,1,1700,04/15/19 22:39,"27 8th St, Los Angeles, CA 90001" -179915,Apple Airpods Headphones,1,150,04/29/19 10:39,"761 Chestnut St, San Francisco, CA 94016" -179916,Vareebadd Phone,1,400,04/16/19 20:33,"73 Hill St, New York City, NY 10001" -179917,AA Batteries (4-pack),2,3.84,04/24/19 22:19,"152 Spruce St, Los Angeles, CA 90001" -179918,USB-C Charging Cable,2,11.95,04/14/19 19:27,"216 7th St, Dallas, TX 75001" -179919,Apple Airpods Headphones,1,150,04/04/19 13:25,"816 2nd St, Austin, TX 73301" -179920,AA Batteries (4-pack),2,3.84,04/11/19 15:36,"598 14th St, Seattle, WA 98101" -179921,20in Monitor,1,109.99,04/13/19 17:49,"970 Park St, Dallas, TX 75001" -179922,Apple Airpods Headphones,1,150,04/17/19 11:37,"623 Lakeview St, Portland, OR 97035" -179923,34in Ultrawide Monitor,1,379.99,04/03/19 19:16,"718 Highland St, New York City, NY 10001" -179924,Wired Headphones,1,11.99,04/09/19 20:43,"591 Elm St, San Francisco, CA 94016" -179925,34in Ultrawide Monitor,1,379.99,04/03/19 12:58,"183 5th St, San Francisco, CA 94016" -179926,Bose SoundSport Headphones,1,99.99,04/01/19 14:10,"975 Elm St, Atlanta, GA 30301" -179927,Wired Headphones,1,11.99,04/13/19 16:26,"940 Main St, San Francisco, CA 94016" -179928,20in Monitor,1,109.99,04/07/19 12:27,"873 Willow St, Boston, MA 02215" -179929,Bose SoundSport Headphones,1,99.99,04/10/19 13:54,"845 Jefferson St, Seattle, WA 98101" -179930,AAA Batteries (4-pack),1,2.99,04/06/19 16:43,"445 Chestnut St, New York City, NY 10001" -179931,34in Ultrawide Monitor,1,379.99,04/02/19 10:09,"151 Lake St, Los Angeles, CA 90001" -179932,Flatscreen TV,1,300,04/30/19 21:17,"13 Lincoln St, Los Angeles, CA 90001" -179933,AA Batteries (4-pack),3,3.84,04/26/19 15:49,"538 11th St, Boston, MA 02215" -179934,ThinkPad Laptop,1,999.99,04/09/19 08:30,"488 South St, San Francisco, CA 94016" -179935,Vareebadd Phone,1,400,04/17/19 13:13,"279 Walnut St, Los Angeles, CA 90001" -179936,AAA Batteries (4-pack),1,2.99,04/13/19 14:50,"295 14th St, New York City, NY 10001" -179937,Wired Headphones,1,11.99,04/12/19 15:36,"556 Spruce St, Dallas, TX 75001" -179938,Lightning Charging Cable,1,14.95,04/04/19 18:57,"875 Main St, New York City, NY 10001" -179939,34in Ultrawide Monitor,1,379.99,04/03/19 19:04,"212 1st St, Boston, MA 02215" -179940,AA Batteries (4-pack),1,3.84,04/26/19 20:36,"624 North St, Seattle, WA 98101" -179941,Wired Headphones,1,11.99,04/26/19 18:46,"430 10th St, Atlanta, GA 30301" -179942,LG Dryer,1,600.0,04/16/19 14:24,"209 Meadow St, New York City, NY 10001" -179943,AAA Batteries (4-pack),2,2.99,04/14/19 11:08,"344 River St, Portland, OR 97035" -179944,Flatscreen TV,1,300,04/28/19 09:38,"704 Highland St, New York City, NY 10001" -179944,AA Batteries (4-pack),1,3.84,04/28/19 09:38,"704 Highland St, New York City, NY 10001" -179945,USB-C Charging Cable,1,11.95,04/22/19 10:54,"548 Meadow St, Atlanta, GA 30301" -179946,Wired Headphones,1,11.99,04/08/19 22:37,"842 Adams St, San Francisco, CA 94016" -179947,AAA Batteries (4-pack),1,2.99,04/20/19 14:06,"103 Forest St, Los Angeles, CA 90001" -179948,Vareebadd Phone,1,400,04/06/19 20:01,"859 Center St, Los Angeles, CA 90001" -179949,Wired Headphones,1,11.99,04/21/19 14:41,"807 Washington St, Atlanta, GA 30301" -179950,27in FHD Monitor,1,149.99,04/22/19 19:10,"2 6th St, Seattle, WA 98101" -179951,Bose SoundSport Headphones,1,99.99,04/07/19 18:41,"461 Main St, Portland, OR 97035" -179952,Apple Airpods Headphones,1,150,04/22/19 02:29,"708 14th St, Los Angeles, CA 90001" -179953,AAA Batteries (4-pack),1,2.99,04/27/19 09:19,"32 North St, Los Angeles, CA 90001" -179954,27in 4K Gaming Monitor,1,389.99,04/04/19 10:05,"377 13th St, Dallas, TX 75001" -179955,Flatscreen TV,1,300,04/14/19 19:49,"214 Highland St, Seattle, WA 98101" -179956,Wired Headphones,1,11.99,04/30/19 18:31,"341 Pine St, New York City, NY 10001" -179957,Lightning Charging Cable,1,14.95,04/16/19 15:16,"623 7th St, Los Angeles, CA 90001" -179958,AA Batteries (4-pack),1,3.84,04/04/19 13:51,"631 Lakeview St, Dallas, TX 75001" -179959,Wired Headphones,1,11.99,04/07/19 12:41,"661 7th St, Austin, TX 73301" -179960,USB-C Charging Cable,1,11.95,04/24/19 13:37,"707 2nd St, New York City, NY 10001" -179961,Google Phone,1,600,04/25/19 03:09,"141 Johnson St, New York City, NY 10001" -179962,AAA Batteries (4-pack),1,2.99,04/17/19 15:28,"116 6th St, Portland, OR 97035" -179963,Macbook Pro Laptop,1,1700,04/30/19 15:31,"456 North St, Boston, MA 02215" -179964,Bose SoundSport Headphones,1,99.99,04/25/19 18:23,"955 Maple St, San Francisco, CA 94016" -179965,Macbook Pro Laptop,1,1700,04/30/19 15:23,"45 Cedar St, Seattle, WA 98101" -179966,iPhone,1,700,04/15/19 08:40,"979 13th St, New York City, NY 10001" -179966,Lightning Charging Cable,1,14.95,04/15/19 08:40,"979 13th St, New York City, NY 10001" -179967,USB-C Charging Cable,1,11.95,04/16/19 10:51,"454 1st St, San Francisco, CA 94016" -179968,34in Ultrawide Monitor,1,379.99,04/05/19 12:44,"218 Church St, New York City, NY 10001" -179969,Google Phone,1,600,04/21/19 16:14,"729 9th St, Atlanta, GA 30301" -179969,Wired Headphones,1,11.99,04/21/19 16:14,"729 9th St, Atlanta, GA 30301" -179970,AAA Batteries (4-pack),2,2.99,04/18/19 18:44,"668 Lake St, Los Angeles, CA 90001" -179971,iPhone,1,700,04/01/19 22:27,"95 Center St, Los Angeles, CA 90001" -179972,Bose SoundSport Headphones,1,99.99,04/02/19 11:57,"836 North St, San Francisco, CA 94016" -179973,Bose SoundSport Headphones,1,99.99,04/27/19 16:27,"690 7th St, San Francisco, CA 94016" -179974,ThinkPad Laptop,1,999.99,04/29/19 18:00,"727 Dogwood St, New York City, NY 10001" -179975,27in FHD Monitor,1,149.99,04/30/19 16:40,"459 9th St, Los Angeles, CA 90001" -179976,AA Batteries (4-pack),1,3.84,04/10/19 19:53,"136 Johnson St, Portland, OR 97035" -179977,AAA Batteries (4-pack),1,2.99,04/30/19 11:49,"500 Dogwood St, New York City, NY 10001" -179978,Lightning Charging Cable,1,14.95,04/03/19 10:35,"811 Pine St, San Francisco, CA 94016" -179979,Apple Airpods Headphones,1,150,04/10/19 21:16,"605 6th St, Atlanta, GA 30301" -179980,iPhone,1,700,04/09/19 18:49,"471 Maple St, Los Angeles, CA 90001" -179981,Lightning Charging Cable,1,14.95,04/22/19 12:27,"207 4th St, New York City, NY 10001" -179982,Bose SoundSport Headphones,1,99.99,04/06/19 08:30,"963 Willow St, New York City, NY 10001" -179983,iPhone,1,700,04/12/19 11:38,"203 River St, Los Angeles, CA 90001" -179984,Google Phone,1,600,04/05/19 07:07,"781 1st St, Los Angeles, CA 90001" -179985,iPhone,1,700,04/16/19 23:50,"362 Elm St, Dallas, TX 75001" -179986,Lightning Charging Cable,1,14.95,04/24/19 11:47,"345 7th St, New York City, NY 10001" -179987,AA Batteries (4-pack),2,3.84,04/30/19 17:19,"261 Lakeview St, Atlanta, GA 30301" -179988,USB-C Charging Cable,1,11.95,04/14/19 14:23,"422 Sunset St, Seattle, WA 98101" -179989,LG Washing Machine,1,600.0,04/02/19 20:54,"889 Hickory St, Los Angeles, CA 90001" -179990,LG Dryer,1,600.0,04/25/19 15:35,"583 Jackson St, Dallas, TX 75001" -179991,AA Batteries (4-pack),1,3.84,04/19/19 20:06,"672 Church St, Los Angeles, CA 90001" -179992,Lightning Charging Cable,1,14.95,04/27/19 22:50,"593 1st St, Los Angeles, CA 90001" -179993,Lightning Charging Cable,1,14.95,04/21/19 16:12,"273 Jefferson St, Atlanta, GA 30301" -179994,Bose SoundSport Headphones,1,99.99,04/03/19 21:19,"388 2nd St, San Francisco, CA 94016" -179995,Macbook Pro Laptop,1,1700,04/06/19 19:50,"206 West St, New York City, NY 10001" -179996,34in Ultrawide Monitor,1,379.99,04/14/19 00:20,"829 Jackson St, Dallas, TX 75001" -179997,Wired Headphones,1,11.99,04/13/19 12:45,"902 2nd St, Los Angeles, CA 90001" -179998,iPhone,1,700,04/01/19 21:17,"686 Pine St, New York City, NY 10001" -179998,Apple Airpods Headphones,1,150,04/01/19 21:17,"686 Pine St, New York City, NY 10001" -179999,iPhone,1,700,04/26/19 19:19,"757 1st St, San Francisco, CA 94016" -180000,iPhone,1,700,04/15/19 11:01,"704 11th St, New York City, NY 10001" -180000,Lightning Charging Cable,1,14.95,04/15/19 11:01,"704 11th St, New York City, NY 10001" -180001,Flatscreen TV,1,300,04/19/19 20:19,"444 Johnson St, New York City, NY 10001" -180002,ThinkPad Laptop,1,999.99,04/25/19 11:25,"567 West St, Atlanta, GA 30301" -180003,USB-C Charging Cable,1,11.95,04/01/19 08:15,"509 12th St, Los Angeles, CA 90001" -180004,Lightning Charging Cable,2,14.95,04/06/19 19:38,"307 Lincoln St, New York City, NY 10001" -180005,AA Batteries (4-pack),2,3.84,04/23/19 15:34,"212 Highland St, Atlanta, GA 30301" -180006,USB-C Charging Cable,1,11.95,04/06/19 14:14,"892 Highland St, New York City, NY 10001" -180007,20in Monitor,1,109.99,04/12/19 11:03,"536 11th St, Los Angeles, CA 90001" -180008,Wired Headphones,1,11.99,04/27/19 12:06,"316 Sunset St, San Francisco, CA 94016" -180009,AA Batteries (4-pack),1,3.84,04/14/19 09:36,"157 River St, San Francisco, CA 94016" -180010,AA Batteries (4-pack),1,3.84,04/22/19 16:36,"94 Sunset St, Dallas, TX 75001" -180011,Flatscreen TV,1,300,04/09/19 12:56,"780 Forest St, San Francisco, CA 94016" -180012,Apple Airpods Headphones,1,150,04/20/19 14:15,"253 4th St, Los Angeles, CA 90001" -180013,Lightning Charging Cable,1,14.95,04/09/19 20:12,"807 Ridge St, Los Angeles, CA 90001" -180014,AAA Batteries (4-pack),1,2.99,04/27/19 20:08,"544 Washington St, Seattle, WA 98101" -180015,Bose SoundSport Headphones,1,99.99,04/01/19 11:59,"759 Center St, Portland, OR 97035" -180016,27in FHD Monitor,1,149.99,04/21/19 15:29,"978 Adams St, Portland, ME 04101" -180017,Bose SoundSport Headphones,1,99.99,05/01/19 00:58,"738 Adams St, New York City, NY 10001" -180018,Wired Headphones,2,11.99,04/08/19 10:01,"505 Meadow St, Los Angeles, CA 90001" -180019,Bose SoundSport Headphones,1,99.99,04/30/19 14:26,"973 West St, Seattle, WA 98101" -180020,iPhone,1,700,04/06/19 13:18,"75 River St, San Francisco, CA 94016" -180021,AAA Batteries (4-pack),2,2.99,04/09/19 16:45,"979 Chestnut St, San Francisco, CA 94016" -180022,AA Batteries (4-pack),1,3.84,04/06/19 20:29,"859 Lincoln St, Los Angeles, CA 90001" -180023,AAA Batteries (4-pack),3,2.99,04/01/19 15:16,"258 8th St, San Francisco, CA 94016" -180024,AAA Batteries (4-pack),3,2.99,04/04/19 13:15,"603 Johnson St, San Francisco, CA 94016" -180025,Wired Headphones,1,11.99,04/18/19 10:26,"964 Main St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -180026,AA Batteries (4-pack),1,3.84,04/19/19 22:21,"923 Sunset St, Boston, MA 02215" -180027,Apple Airpods Headphones,1,150,04/18/19 18:34,"566 14th St, New York City, NY 10001" -180028,Wired Headphones,1,11.99,04/06/19 15:41,"399 Ridge St, Los Angeles, CA 90001" -180029,ThinkPad Laptop,1,999.99,04/28/19 10:59,"225 Center St, San Francisco, CA 94016" -180030,Wired Headphones,1,11.99,04/15/19 10:41,"305 Highland St, Austin, TX 73301" -180031,Vareebadd Phone,1,400,04/22/19 15:33,"534 10th St, Atlanta, GA 30301" -180031,USB-C Charging Cable,1,11.95,04/22/19 15:33,"534 10th St, Atlanta, GA 30301" -180032,Apple Airpods Headphones,1,150,04/06/19 14:11,"122 11th St, Austin, TX 73301" -180033,27in 4K Gaming Monitor,1,389.99,04/23/19 20:11,"901 Cedar St, New York City, NY 10001" -180034,Wired Headphones,1,11.99,04/06/19 14:28,"677 Lake St, Los Angeles, CA 90001" -180035,34in Ultrawide Monitor,1,379.99,04/10/19 07:32,"798 12th St, Los Angeles, CA 90001" -180036,Lightning Charging Cable,1,14.95,04/25/19 23:46,"909 Jefferson St, Dallas, TX 75001" -180037,Wired Headphones,1,11.99,04/26/19 20:05,"577 Lake St, Atlanta, GA 30301" -180038,Bose SoundSport Headphones,1,99.99,04/06/19 09:26,"590 12th St, New York City, NY 10001" -180039,Lightning Charging Cable,2,14.95,04/15/19 13:57,"198 14th St, Dallas, TX 75001" -180040,Lightning Charging Cable,1,14.95,04/17/19 11:43,"207 Madison St, San Francisco, CA 94016" -180041,Flatscreen TV,1,300,04/27/19 17:23,"769 Chestnut St, Dallas, TX 75001" -180042,AA Batteries (4-pack),2,3.84,04/12/19 08:04,"987 10th St, San Francisco, CA 94016" -180043,AAA Batteries (4-pack),3,2.99,04/07/19 22:07,"656 Dogwood St, Portland, OR 97035" -180044,USB-C Charging Cable,3,11.95,04/23/19 13:02,"386 Lakeview St, Boston, MA 02215" -180045,AAA Batteries (4-pack),1,2.99,04/04/19 08:44,"731 River St, Seattle, WA 98101" -180046,Lightning Charging Cable,1,14.95,04/18/19 12:15,"928 6th St, Los Angeles, CA 90001" -180047,USB-C Charging Cable,1,11.95,04/03/19 10:07,"91 South St, San Francisco, CA 94016" -180048,AAA Batteries (4-pack),5,2.99,04/06/19 17:30,"818 1st St, Portland, OR 97035" -180049,USB-C Charging Cable,1,11.95,04/14/19 14:58,"385 Church St, San Francisco, CA 94016" -180050,AA Batteries (4-pack),1,3.84,04/03/19 10:21,"686 5th St, Los Angeles, CA 90001" -180051,AA Batteries (4-pack),1,3.84,04/20/19 09:57,"612 Lake St, Boston, MA 02215" -180052,34in Ultrawide Monitor,1,379.99,04/23/19 18:39,"952 Pine St, Los Angeles, CA 90001" -180053,ThinkPad Laptop,1,999.99,04/24/19 11:30,"387 South St, Boston, MA 02215" -180054,Bose SoundSport Headphones,1,99.99,04/27/19 17:16,"3 South St, New York City, NY 10001" -180055,34in Ultrawide Monitor,1,379.99,04/21/19 18:31,"549 8th St, Los Angeles, CA 90001" -180056,ThinkPad Laptop,1,999.99,04/16/19 09:52,"727 Ridge St, New York City, NY 10001" -180057,AA Batteries (4-pack),2,3.84,04/19/19 13:35,"54 Dogwood St, San Francisco, CA 94016" -180058,AAA Batteries (4-pack),2,2.99,04/21/19 00:09,"898 14th St, San Francisco, CA 94016" -180059,27in FHD Monitor,1,149.99,04/17/19 20:36,"315 Ridge St, Portland, OR 97035" -180060,20in Monitor,1,109.99,04/17/19 19:27,"237 12th St, New York City, NY 10001" -180061,Wired Headphones,1,11.99,04/12/19 11:24,"642 Jackson St, Los Angeles, CA 90001" -180062,AA Batteries (4-pack),1,3.84,04/08/19 12:01,"360 Forest St, San Francisco, CA 94016" -180063,27in 4K Gaming Monitor,1,389.99,04/29/19 12:48,"450 Hill St, New York City, NY 10001" -180064,iPhone,1,700,04/07/19 05:39,"910 Lakeview St, San Francisco, CA 94016" -180065,Lightning Charging Cable,1,14.95,04/06/19 14:26,"237 Spruce St, New York City, NY 10001" -180066,USB-C Charging Cable,1,11.95,04/19/19 23:05,"509 Cherry St, Atlanta, GA 30301" -180067,27in 4K Gaming Monitor,1,389.99,04/16/19 14:52,"290 Lincoln St, New York City, NY 10001" -180068,AAA Batteries (4-pack),1,2.99,04/21/19 13:06,"970 Pine St, Seattle, WA 98101" -180069,27in FHD Monitor,1,149.99,04/23/19 19:15,"210 Jackson St, Los Angeles, CA 90001" -180070,USB-C Charging Cable,1,11.95,04/27/19 21:54,"398 Spruce St, Los Angeles, CA 90001" -180071,Apple Airpods Headphones,1,150,04/25/19 19:02,"941 Cherry St, New York City, NY 10001" -180072,Macbook Pro Laptop,1,1700,04/17/19 20:35,"769 Willow St, Los Angeles, CA 90001" -180073,AA Batteries (4-pack),1,3.84,04/21/19 14:37,"800 Jefferson St, Los Angeles, CA 90001" -180074,20in Monitor,1,109.99,04/08/19 18:02,"810 Sunset St, Dallas, TX 75001" -180075,Lightning Charging Cable,1,14.95,04/09/19 20:00,"803 7th St, San Francisco, CA 94016" -180076,Bose SoundSport Headphones,2,99.99,04/07/19 10:53,"204 Hill St, Austin, TX 73301" -180077,Bose SoundSport Headphones,1,99.99,04/23/19 21:07,"135 Meadow St, Boston, MA 02215" -180078,Macbook Pro Laptop,1,1700,04/24/19 16:40,"548 Meadow St, Dallas, TX 75001" -180079,Google Phone,1,600,04/12/19 10:48,"138 7th St, San Francisco, CA 94016" -180080,34in Ultrawide Monitor,1,379.99,04/12/19 17:03,"386 Walnut St, Los Angeles, CA 90001" -180081,USB-C Charging Cable,1,11.95,04/16/19 11:57,"184 Washington St, Los Angeles, CA 90001" -180082,LG Dryer,1,600.0,04/14/19 08:35,"886 Pine St, Los Angeles, CA 90001" -180083,AAA Batteries (4-pack),1,2.99,04/13/19 20:47,"738 Jackson St, New York City, NY 10001" -180084,Vareebadd Phone,1,400,04/16/19 23:44,"859 1st St, San Francisco, CA 94016" -180085,iPhone,1,700,04/16/19 08:49,"857 Walnut St, Boston, MA 02215" -180086,USB-C Charging Cable,1,11.95,04/07/19 17:01,"9 8th St, New York City, NY 10001" -180087,Lightning Charging Cable,1,14.95,04/07/19 07:29,"945 Madison St, Boston, MA 02215" -180088,Apple Airpods Headphones,1,150,04/01/19 17:45,"674 North St, Los Angeles, CA 90001" -180089,AAA Batteries (4-pack),1,2.99,04/08/19 15:57,"790 Park St, Los Angeles, CA 90001" -180090,AAA Batteries (4-pack),1,2.99,04/24/19 16:25,"870 Wilson St, Los Angeles, CA 90001" -180091,iPhone,1,700,04/28/19 20:03,"602 Main St, Los Angeles, CA 90001" -180092,Wired Headphones,1,11.99,04/23/19 10:33,"177 Jefferson St, New York City, NY 10001" -180093,AA Batteries (4-pack),1,3.84,04/05/19 21:41,"299 North St, Austin, TX 73301" -180094,LG Washing Machine,1,600.0,04/06/19 01:05,"470 Madison St, New York City, NY 10001" -180095,Bose SoundSport Headphones,1,99.99,04/16/19 13:24,"144 Lakeview St, New York City, NY 10001" -180096,Bose SoundSport Headphones,1,99.99,04/10/19 08:38,"891 Hill St, San Francisco, CA 94016" -180097,20in Monitor,2,109.99,04/25/19 22:40,"47 7th St, Seattle, WA 98101" -180098,20in Monitor,1,109.99,04/12/19 10:23,"122 Forest St, Portland, OR 97035" -180099,ThinkPad Laptop,1,999.99,04/11/19 16:49,"696 North St, New York City, NY 10001" -180100,Apple Airpods Headphones,1,150,04/21/19 01:38,"243 Walnut St, Los Angeles, CA 90001" -180101,Bose SoundSport Headphones,1,99.99,04/20/19 15:51,"289 10th St, Portland, OR 97035" -180102,USB-C Charging Cable,1,11.95,04/21/19 13:57,"123 Cherry St, San Francisco, CA 94016" -180103,27in 4K Gaming Monitor,1,389.99,04/05/19 23:57,"214 12th St, Atlanta, GA 30301" -180104,AA Batteries (4-pack),1,3.84,04/05/19 12:59,"558 12th St, Austin, TX 73301" -180105,AAA Batteries (4-pack),1,2.99,04/01/19 17:02,"312 Main St, Dallas, TX 75001" -180106,Bose SoundSport Headphones,1,99.99,04/06/19 19:54,"441 Maple St, San Francisco, CA 94016" -180107,AAA Batteries (4-pack),1,2.99,04/13/19 08:48,"881 Walnut St, Boston, MA 02215" -180108,Bose SoundSport Headphones,1,99.99,04/12/19 13:56,"789 Center St, Atlanta, GA 30301" -180108,AA Batteries (4-pack),4,3.84,04/12/19 13:56,"789 Center St, Atlanta, GA 30301" -180109,Wired Headphones,1,11.99,04/20/19 19:43,"939 Elm St, Austin, TX 73301" -180110,Macbook Pro Laptop,1,1700,04/16/19 17:52,"962 4th St, Seattle, WA 98101" -180111,AA Batteries (4-pack),2,3.84,04/15/19 10:37,"280 Willow St, San Francisco, CA 94016" -180112,Bose SoundSport Headphones,1,99.99,04/03/19 10:34,"926 North St, Portland, ME 04101" -180113,AAA Batteries (4-pack),1,2.99,04/13/19 09:14,"139 Cedar St, Dallas, TX 75001" -180114,27in FHD Monitor,1,149.99,04/12/19 20:55,"870 2nd St, Atlanta, GA 30301" -180115,Bose SoundSport Headphones,1,99.99,04/09/19 14:49,"829 Forest St, New York City, NY 10001" -180116,Apple Airpods Headphones,1,150,04/08/19 11:11,"329 Willow St, New York City, NY 10001" -180117,Macbook Pro Laptop,1,1700,04/30/19 20:06,"40 Elm St, San Francisco, CA 94016" -180118,Bose SoundSport Headphones,1,99.99,04/11/19 03:33,"415 5th St, Boston, MA 02215" -180119,ThinkPad Laptop,1,999.99,04/26/19 09:24,"846 Elm St, San Francisco, CA 94016" -180120,AA Batteries (4-pack),1,3.84,04/25/19 19:27,"732 Highland St, Atlanta, GA 30301" -180121,Lightning Charging Cable,1,14.95,04/30/19 18:54,"368 12th St, San Francisco, CA 94016" -180122,AAA Batteries (4-pack),1,2.99,04/10/19 17:13,"905 River St, San Francisco, CA 94016" -180123,Wired Headphones,1,11.99,04/09/19 09:43,"919 5th St, San Francisco, CA 94016" -180124,Wired Headphones,1,11.99,04/12/19 01:48,"486 North St, Seattle, WA 98101" -180125,AA Batteries (4-pack),1,3.84,04/07/19 15:18,"880 Sunset St, Atlanta, GA 30301" -180126,Lightning Charging Cable,1,14.95,04/16/19 00:59,"872 11th St, Los Angeles, CA 90001" -180127,LG Washing Machine,1,600.0,04/23/19 09:34,"927 Jackson St, Los Angeles, CA 90001" -180128,Apple Airpods Headphones,1,150,04/14/19 23:22,"452 14th St, Austin, TX 73301" -180129,Google Phone,1,600,04/14/19 17:43,"274 Center St, Portland, OR 97035" -180130,Bose SoundSport Headphones,1,99.99,04/21/19 12:17,"202 Hickory St, Dallas, TX 75001" -180131,Apple Airpods Headphones,1,150,04/30/19 15:07,"48 Hill St, Atlanta, GA 30301" -180132,Apple Airpods Headphones,1,150,04/21/19 08:11,"413 Wilson St, San Francisco, CA 94016" -180133,iPhone,1,700,04/02/19 13:20,"941 8th St, Dallas, TX 75001" -180134,Wired Headphones,1,11.99,04/11/19 23:14,"218 1st St, San Francisco, CA 94016" -180135,Google Phone,1,600,04/13/19 14:46,"334 1st St, Seattle, WA 98101" -180135,Wired Headphones,1,11.99,04/13/19 14:46,"334 1st St, Seattle, WA 98101" -180136,USB-C Charging Cable,1,11.95,04/02/19 15:17,"435 Dogwood St, Portland, OR 97035" -180137,Flatscreen TV,1,300,04/26/19 12:02,"664 Ridge St, Austin, TX 73301" -180138,USB-C Charging Cable,1,11.95,04/09/19 19:22,"123 Dogwood St, New York City, NY 10001" -180139,USB-C Charging Cable,1,11.95,04/19/19 19:28,"500 Highland St, New York City, NY 10001" -180140,AA Batteries (4-pack),3,3.84,04/02/19 05:55,"456 8th St, Los Angeles, CA 90001" -180141,Apple Airpods Headphones,1,150,04/25/19 10:33,"776 Maple St, Portland, OR 97035" -180142,AAA Batteries (4-pack),1,2.99,04/21/19 19:50,"913 8th St, Seattle, WA 98101" -180143,27in FHD Monitor,1,149.99,04/22/19 12:49,"629 7th St, New York City, NY 10001" -180144,27in 4K Gaming Monitor,1,389.99,04/17/19 10:05,"608 West St, San Francisco, CA 94016" -180145,Apple Airpods Headphones,1,150,04/13/19 12:24,"361 Lincoln St, San Francisco, CA 94016" -180146,iPhone,1,700,04/11/19 17:48,"937 Jefferson St, Boston, MA 02215" -180147,Google Phone,1,600,04/15/19 23:54,"296 7th St, Atlanta, GA 30301" -180148,Lightning Charging Cable,1,14.95,04/21/19 19:28,"699 Maple St, Portland, OR 97035" -180149,Lightning Charging Cable,1,14.95,04/17/19 18:50,"304 2nd St, New York City, NY 10001" -180150,34in Ultrawide Monitor,1,379.99,04/14/19 15:11,"632 Lakeview St, Los Angeles, CA 90001" -180151,AAA Batteries (4-pack),2,2.99,04/05/19 13:13,"491 Washington St, San Francisco, CA 94016" -180152,USB-C Charging Cable,1,11.95,04/14/19 18:34,"110 Johnson St, Seattle, WA 98101" -180153,Lightning Charging Cable,2,14.95,04/29/19 19:38,"892 Highland St, Seattle, WA 98101" -180154,34in Ultrawide Monitor,1,379.99,04/20/19 10:55,"475 4th St, Austin, TX 73301" -180155,Lightning Charging Cable,2,14.95,04/09/19 01:19,"408 9th St, New York City, NY 10001" -180156,Wired Headphones,1,11.99,04/08/19 12:41,"362 Forest St, New York City, NY 10001" -180157,Google Phone,1,600,04/03/19 20:57,"156 Sunset St, New York City, NY 10001" -180158,Vareebadd Phone,1,400,04/10/19 16:01,"129 Sunset St, San Francisco, CA 94016" -180159,Apple Airpods Headphones,1,150,04/26/19 14:41,"367 5th St, San Francisco, CA 94016" -180160,AAA Batteries (4-pack),3,2.99,04/18/19 15:55,"127 Main St, Los Angeles, CA 90001" -180161,USB-C Charging Cable,1,11.95,04/16/19 07:56,"598 Meadow St, Boston, MA 02215" -180161,ThinkPad Laptop,1,999.99,04/16/19 07:56,"598 Meadow St, Boston, MA 02215" -180162,AAA Batteries (4-pack),1,2.99,04/06/19 20:53,"55 Park St, Seattle, WA 98101" -180163,Apple Airpods Headphones,1,150,04/10/19 21:47,"640 Ridge St, San Francisco, CA 94016" -180164,27in 4K Gaming Monitor,1,389.99,04/03/19 11:36,"4 Lincoln St, Boston, MA 02215" -180165,Wired Headphones,1,11.99,04/16/19 19:51,"623 Johnson St, Atlanta, GA 30301" -180166,AA Batteries (4-pack),1,3.84,04/24/19 20:20,"285 Forest St, Los Angeles, CA 90001" -180167,USB-C Charging Cable,1,11.95,04/30/19 16:52,"645 Ridge St, San Francisco, CA 94016" -180168,AAA Batteries (4-pack),3,2.99,04/07/19 18:42,"798 Cherry St, Portland, OR 97035" -180169,Lightning Charging Cable,2,14.95,04/17/19 12:31,"335 4th St, Boston, MA 02215" -180170,Wired Headphones,1,11.99,04/07/19 14:02,"103 Maple St, Seattle, WA 98101" -180171,ThinkPad Laptop,1,999.99,04/01/19 12:31,"128 Park St, San Francisco, CA 94016" -180172,AAA Batteries (4-pack),2,2.99,04/27/19 21:07,"580 12th St, San Francisco, CA 94016" -180173,AA Batteries (4-pack),1,3.84,04/28/19 15:01,"904 Johnson St, Boston, MA 02215" -180174,AAA Batteries (4-pack),1,2.99,04/28/19 15:42,"923 Adams St, Los Angeles, CA 90001" -180175,Apple Airpods Headphones,1,150,04/27/19 20:35,"436 Lake St, Los Angeles, CA 90001" -180176,Macbook Pro Laptop,1,1700,04/15/19 00:05,"25 Adams St, San Francisco, CA 94016" -180177,Bose SoundSport Headphones,1,99.99,04/09/19 21:39,"919 Chestnut St, San Francisco, CA 94016" -180178,Wired Headphones,1,11.99,04/07/19 19:16,"595 Lincoln St, San Francisco, CA 94016" -180179,Bose SoundSport Headphones,1,99.99,04/13/19 23:44,"441 North St, San Francisco, CA 94016" -180180,AAA Batteries (4-pack),1,2.99,04/20/19 09:36,"438 Spruce St, Atlanta, GA 30301" -180181,Lightning Charging Cable,1,14.95,04/30/19 17:56,"229 River St, Atlanta, GA 30301" -180182,USB-C Charging Cable,1,11.95,04/08/19 21:20,"70 Dogwood St, Seattle, WA 98101" -180183,USB-C Charging Cable,1,11.95,04/17/19 18:01,"400 Willow St, New York City, NY 10001" -180184,USB-C Charging Cable,1,11.95,04/16/19 09:57,"397 Lakeview St, New York City, NY 10001" -180185,AA Batteries (4-pack),2,3.84,04/06/19 17:21,"876 Pine St, Boston, MA 02215" -180186,Lightning Charging Cable,1,14.95,04/22/19 17:47,"532 Elm St, Los Angeles, CA 90001" -180187,AA Batteries (4-pack),1,3.84,04/15/19 15:32,"926 North St, New York City, NY 10001" -180188,USB-C Charging Cable,1,11.95,04/12/19 15:41,"833 7th St, New York City, NY 10001" -180189,Bose SoundSport Headphones,1,99.99,04/14/19 23:50,"802 2nd St, Los Angeles, CA 90001" -180190,Flatscreen TV,1,300,04/24/19 13:21,"826 Maple St, San Francisco, CA 94016" -180191,Lightning Charging Cable,1,14.95,04/18/19 23:52,"443 Johnson St, Los Angeles, CA 90001" -180192,Macbook Pro Laptop,1,1700,04/01/19 12:55,"732 Lakeview St, Boston, MA 02215" -180193,USB-C Charging Cable,1,11.95,04/02/19 10:38,"290 7th St, Boston, MA 02215" -180194,Apple Airpods Headphones,1,150,04/28/19 19:00,"527 Adams St, Atlanta, GA 30301" -180195,AAA Batteries (4-pack),1,2.99,04/21/19 09:36,"163 2nd St, New York City, NY 10001" -180196,Wired Headphones,1,11.99,04/14/19 10:02,"86 Lincoln St, Los Angeles, CA 90001" -180197,AA Batteries (4-pack),1,3.84,04/22/19 10:15,"954 River St, Seattle, WA 98101" -180198,USB-C Charging Cable,1,11.95,04/08/19 20:25,"486 Forest St, Los Angeles, CA 90001" -180199,ThinkPad Laptop,1,999.99,04/06/19 14:40,"254 River St, San Francisco, CA 94016" -180200,Wired Headphones,1,11.99,04/21/19 23:30,"565 13th St, New York City, NY 10001" -180201,Bose SoundSport Headphones,1,99.99,04/13/19 21:50,"777 Pine St, Atlanta, GA 30301" -180202,Lightning Charging Cable,1,14.95,04/10/19 20:34,"939 Lakeview St, Los Angeles, CA 90001" -180203,Apple Airpods Headphones,1,150,04/07/19 13:46,"876 River St, San Francisco, CA 94016" -180204,AA Batteries (4-pack),1,3.84,04/24/19 16:38,"258 North St, Los Angeles, CA 90001" -180205,Lightning Charging Cable,1,14.95,04/14/19 09:59,"677 North St, Portland, OR 97035" -180206,iPhone,1,700,04/02/19 08:43,"274 River St, San Francisco, CA 94016" -180207,Apple Airpods Headphones,1,150,04/13/19 01:46,"196 7th St, Los Angeles, CA 90001" -180207,Apple Airpods Headphones,1,150,04/13/19 01:46,"196 7th St, Los Angeles, CA 90001" -180208,Macbook Pro Laptop,1,1700,04/04/19 12:19,"800 Center St, New York City, NY 10001" -180209,USB-C Charging Cable,1,11.95,04/15/19 16:32,"51 Hickory St, New York City, NY 10001" -180210,Wired Headphones,1,11.99,04/14/19 12:24,"91 7th St, New York City, NY 10001" -180211,Lightning Charging Cable,1,14.95,04/03/19 18:58,"787 Lincoln St, Los Angeles, CA 90001" -180212,Flatscreen TV,1,300,04/30/19 09:45,"657 13th St, Los Angeles, CA 90001" -180213,27in FHD Monitor,1,149.99,04/18/19 19:32,"161 Washington St, Boston, MA 02215" -180213,AAA Batteries (4-pack),1,2.99,04/18/19 19:32,"161 Washington St, Boston, MA 02215" -180214,USB-C Charging Cable,1,11.95,04/19/19 14:03,"243 Forest St, New York City, NY 10001" -180215,27in 4K Gaming Monitor,1,389.99,04/18/19 11:29,"696 Lake St, Los Angeles, CA 90001" -180216,AA Batteries (4-pack),1,3.84,04/16/19 20:51,"673 River St, San Francisco, CA 94016" -180217,AA Batteries (4-pack),2,3.84,04/28/19 23:26,"226 12th St, Los Angeles, CA 90001" -180218,20in Monitor,1,109.99,04/13/19 11:30,"605 River St, Portland, ME 04101" -180219,AA Batteries (4-pack),1,3.84,04/27/19 23:32,"593 Sunset St, San Francisco, CA 94016" -180220,Lightning Charging Cable,1,14.95,04/25/19 12:00,"642 Spruce St, Seattle, WA 98101" -180221,Bose SoundSport Headphones,1,99.99,04/01/19 08:00,"789 7th St, Los Angeles, CA 90001" -180222,Flatscreen TV,1,300,04/16/19 15:26,"71 Ridge St, San Francisco, CA 94016" -180223,27in FHD Monitor,1,149.99,04/04/19 21:03,"352 10th St, Seattle, WA 98101" -180224,Wired Headphones,2,11.99,04/11/19 13:41,"522 Hickory St, Los Angeles, CA 90001" -180225,Lightning Charging Cable,1,14.95,04/21/19 20:19,"825 Highland St, San Francisco, CA 94016" -180226,USB-C Charging Cable,1,11.95,04/07/19 14:52,"126 Highland St, San Francisco, CA 94016" -180227,USB-C Charging Cable,3,11.95,04/04/19 10:52,"149 8th St, New York City, NY 10001" -180227,Bose SoundSport Headphones,1,99.99,04/04/19 10:52,"149 8th St, New York City, NY 10001" -180228,AAA Batteries (4-pack),1,2.99,04/30/19 18:32,"567 Walnut St, Atlanta, GA 30301" -180229,AA Batteries (4-pack),1,3.84,04/13/19 15:33,"66 Jackson St, Boston, MA 02215" -180230,USB-C Charging Cable,1,11.95,04/01/19 19:53,"846 River St, Atlanta, GA 30301" -180231,27in FHD Monitor,1,149.99,04/27/19 12:24,"221 2nd St, Los Angeles, CA 90001" -180232,USB-C Charging Cable,1,11.95,04/08/19 13:47,"311 5th St, Dallas, TX 75001" -180233,Wired Headphones,1,11.99,04/06/19 13:37,"779 7th St, New York City, NY 10001" -180234,Flatscreen TV,1,300,04/09/19 12:22,"742 Cedar St, Los Angeles, CA 90001" -180235,27in 4K Gaming Monitor,1,389.99,04/15/19 19:16,"699 Lake St, New York City, NY 10001" -180236,iPhone,1,700,04/11/19 19:13,"173 Pine St, Austin, TX 73301" -180237,iPhone,1,700,04/18/19 12:35,"746 1st St, Seattle, WA 98101" -180237,AAA Batteries (4-pack),1,2.99,04/18/19 12:35,"746 1st St, Seattle, WA 98101" -180238,34in Ultrawide Monitor,1,379.99,04/25/19 20:17,"722 Lake St, San Francisco, CA 94016" -180239,27in FHD Monitor,1,149.99,04/23/19 19:02,"169 Ridge St, Boston, MA 02215" -180240,Vareebadd Phone,1,400,04/07/19 11:30,"931 Hill St, San Francisco, CA 94016" -180241,27in 4K Gaming Monitor,1,389.99,04/08/19 13:46,"70 12th St, Dallas, TX 75001" -180242,USB-C Charging Cable,1,11.95,04/22/19 12:17,"833 Church St, Dallas, TX 75001" -180243,AA Batteries (4-pack),3,3.84,04/27/19 01:33,"381 6th St, Dallas, TX 75001" -180244,Bose SoundSport Headphones,1,99.99,04/30/19 14:37,"721 13th St, Dallas, TX 75001" -180245,20in Monitor,1,109.99,04/29/19 18:54,"593 North St, Boston, MA 02215" -180246,AAA Batteries (4-pack),2,2.99,04/02/19 00:23,"879 Main St, San Francisco, CA 94016" -180247,USB-C Charging Cable,1,11.95,04/09/19 11:56,"200 Pine St, Seattle, WA 98101" -180248,AA Batteries (4-pack),1,3.84,04/18/19 20:33,"262 South St, Atlanta, GA 30301" -180249,AA Batteries (4-pack),1,3.84,04/29/19 11:53,"732 Dogwood St, New York City, NY 10001" -180250,Wired Headphones,1,11.99,04/17/19 10:07,"419 Maple St, New York City, NY 10001" -180251,Lightning Charging Cable,2,14.95,04/26/19 15:23,"204 1st St, Portland, OR 97035" -180252,Flatscreen TV,1,300,04/07/19 10:57,"193 Center St, San Francisco, CA 94016" -180253,Lightning Charging Cable,1,14.95,04/07/19 22:05,"453 9th St, Los Angeles, CA 90001" -180254,27in 4K Gaming Monitor,1,389.99,04/16/19 22:04,"309 Center St, Boston, MA 02215" -180255,Bose SoundSport Headphones,1,99.99,04/23/19 10:23,"507 Dogwood St, New York City, NY 10001" -180256,Flatscreen TV,1,300,04/04/19 11:31,"705 River St, Los Angeles, CA 90001" -180257,Apple Airpods Headphones,1,150,04/25/19 00:02,"527 Willow St, New York City, NY 10001" -180258,Wired Headphones,1,11.99,04/16/19 17:25,"578 5th St, Atlanta, GA 30301" -180259,27in FHD Monitor,1,149.99,04/22/19 21:12,"712 Lake St, New York City, NY 10001" -180260,AA Batteries (4-pack),1,3.84,04/15/19 11:30,"614 8th St, New York City, NY 10001" -180261,AAA Batteries (4-pack),1,2.99,04/18/19 15:20,"226 Main St, San Francisco, CA 94016" -180262,USB-C Charging Cable,1,11.95,04/30/19 17:38,"403 Johnson St, Seattle, WA 98101" -180263,Apple Airpods Headphones,1,150,04/27/19 19:21,"806 9th St, New York City, NY 10001" -180264,Bose SoundSport Headphones,1,99.99,04/14/19 18:19,"416 8th St, New York City, NY 10001" -180265,AA Batteries (4-pack),3,3.84,04/27/19 14:02,"275 Willow St, Atlanta, GA 30301" -180266,Flatscreen TV,1,300,04/24/19 12:14,"525 Sunset St, New York City, NY 10001" -180267,Flatscreen TV,1,300,04/10/19 18:15,"784 Lake St, Boston, MA 02215" -180268,Wired Headphones,1,11.99,04/14/19 13:14,"278 1st St, Boston, MA 02215" -180269,Lightning Charging Cable,1,14.95,04/05/19 22:32,"888 9th St, Austin, TX 73301" -180270,Lightning Charging Cable,1,14.95,04/06/19 15:27,"737 Wilson St, Seattle, WA 98101" -180271,Flatscreen TV,1,300,04/10/19 16:05,"30 Jackson St, Boston, MA 02215" -180272,Apple Airpods Headphones,1,150,04/06/19 20:26,"552 Forest St, Los Angeles, CA 90001" -180273,34in Ultrawide Monitor,1,379.99,04/28/19 22:53,"129 River St, Atlanta, GA 30301" -180274,Bose SoundSport Headphones,1,99.99,04/05/19 18:14,"194 North St, San Francisco, CA 94016" -180275,AA Batteries (4-pack),1,3.84,04/21/19 17:03,"54 Madison St, New York City, NY 10001" -180276,27in 4K Gaming Monitor,1,389.99,04/16/19 03:36,"186 South St, Seattle, WA 98101" -180277,34in Ultrawide Monitor,1,379.99,04/28/19 00:19,"462 Elm St, Boston, MA 02215" -180278,iPhone,1,700,04/10/19 10:23,"77 1st St, San Francisco, CA 94016" -180279,AA Batteries (4-pack),1,3.84,04/25/19 18:22,"494 Cedar St, Portland, OR 97035" -180280,Lightning Charging Cable,1,14.95,04/30/19 15:29,"183 Adams St, Los Angeles, CA 90001" -180281,Lightning Charging Cable,1,14.95,04/09/19 09:47,"593 4th St, New York City, NY 10001" -180282,34in Ultrawide Monitor,1,379.99,04/13/19 16:47,"368 Washington St, New York City, NY 10001" -180283,Apple Airpods Headphones,1,150,04/25/19 11:26,"452 Pine St, New York City, NY 10001" -180284,AA Batteries (4-pack),1,3.84,04/12/19 12:27,"56 Elm St, Seattle, WA 98101" -180285,Lightning Charging Cable,1,14.95,04/02/19 13:03,"725 4th St, Boston, MA 02215" -180286,AAA Batteries (4-pack),1,2.99,04/13/19 08:59,"467 Sunset St, New York City, NY 10001" -180287,Apple Airpods Headphones,1,150,04/01/19 15:21,"480 11th St, Los Angeles, CA 90001" -180288,USB-C Charging Cable,1,11.95,04/17/19 11:53,"331 Church St, San Francisco, CA 94016" -180289,Lightning Charging Cable,1,14.95,04/29/19 11:20,"999 4th St, Atlanta, GA 30301" -180290,AAA Batteries (4-pack),3,2.99,04/17/19 16:08,"534 Ridge St, Seattle, WA 98101" -180291,Lightning Charging Cable,1,14.95,04/19/19 18:18,"21 8th St, Atlanta, GA 30301" -180292,Wired Headphones,1,11.99,04/21/19 19:06,"356 Madison St, Los Angeles, CA 90001" -180293,Bose SoundSport Headphones,1,99.99,04/08/19 11:09,"65 Adams St, Portland, OR 97035" -180294,AA Batteries (4-pack),1,3.84,04/20/19 18:33,"132 Main St, Boston, MA 02215" -180295,AA Batteries (4-pack),1,3.84,04/30/19 16:42,"495 Walnut St, San Francisco, CA 94016" -180296,Apple Airpods Headphones,1,150,04/09/19 14:41,"192 Church St, New York City, NY 10001" -180297,USB-C Charging Cable,1,11.95,04/19/19 18:47,"418 Spruce St, Austin, TX 73301" -180298,AA Batteries (4-pack),1,3.84,04/15/19 11:27,"569 Spruce St, San Francisco, CA 94016" -180299,Apple Airpods Headphones,1,150,04/04/19 20:16,"31 Cherry St, Seattle, WA 98101" -180300,AA Batteries (4-pack),1,3.84,04/06/19 22:29,"39 Church St, Los Angeles, CA 90001" -180301,34in Ultrawide Monitor,1,379.99,04/21/19 16:49,"75 Hickory St, Seattle, WA 98101" -180302,27in FHD Monitor,1,149.99,04/18/19 18:16,"666 South St, Los Angeles, CA 90001" -180303,Apple Airpods Headphones,1,150,04/11/19 21:51,"130 Willow St, Portland, OR 97035" -180304,AAA Batteries (4-pack),1,2.99,04/11/19 10:35,"948 Center St, Dallas, TX 75001" -180305,Apple Airpods Headphones,1,150,04/13/19 14:12,"596 Lakeview St, Atlanta, GA 30301" -180306,AAA Batteries (4-pack),2,2.99,04/22/19 11:58,"946 12th St, Seattle, WA 98101" -180307,Flatscreen TV,1,300,04/04/19 15:30,"329 Lakeview St, New York City, NY 10001" -180308,27in FHD Monitor,1,149.99,04/22/19 14:15,"23 6th St, Boston, MA 02215" -180309,Wired Headphones,1,11.99,04/17/19 00:16,"937 14th St, New York City, NY 10001" -180310,27in 4K Gaming Monitor,1,389.99,04/09/19 08:45,"659 Highland St, Austin, TX 73301" -180311,Wired Headphones,1,11.99,04/24/19 22:27,"210 Lakeview St, Atlanta, GA 30301" -180312,AAA Batteries (4-pack),1,2.99,04/16/19 13:41,"892 5th St, Boston, MA 02215" -180313,Lightning Charging Cable,1,14.95,04/28/19 13:53,"866 Hill St, New York City, NY 10001" -180314,AA Batteries (4-pack),1,3.84,04/29/19 15:40,"746 Jefferson St, San Francisco, CA 94016" -180315,Wired Headphones,1,11.99,04/27/19 13:24,"23 13th St, San Francisco, CA 94016" -180316,AA Batteries (4-pack),1,3.84,04/18/19 21:00,"683 Cedar St, Boston, MA 02215" -180317,AA Batteries (4-pack),2,3.84,04/07/19 17:21,"947 Madison St, Boston, MA 02215" -180318,Lightning Charging Cable,1,14.95,04/10/19 15:39,"125 Center St, Seattle, WA 98101" -180319,ThinkPad Laptop,1,999.99,04/30/19 16:18,"13 Dogwood St, Boston, MA 02215" -180320,Lightning Charging Cable,1,14.95,04/01/19 19:09,"525 Sunset St, Atlanta, GA 30301" -180321,USB-C Charging Cable,1,11.95,04/23/19 07:27,"883 14th St, Dallas, TX 75001" -180322,USB-C Charging Cable,1,11.95,04/13/19 14:03,"732 10th St, San Francisco, CA 94016" -180322,iPhone,1,700,04/13/19 14:03,"732 10th St, San Francisco, CA 94016" -180323,20in Monitor,1,109.99,04/13/19 12:25,"522 Dogwood St, Boston, MA 02215" -180324,USB-C Charging Cable,2,11.95,04/09/19 13:29,"353 South St, Los Angeles, CA 90001" -180325,27in 4K Gaming Monitor,1,389.99,04/16/19 17:33,"751 Wilson St, Los Angeles, CA 90001" -180326,20in Monitor,1,109.99,04/11/19 15:58,"843 Lakeview St, Los Angeles, CA 90001" -180327,Apple Airpods Headphones,1,150,04/16/19 15:55,"967 Madison St, New York City, NY 10001" -180328,Apple Airpods Headphones,1,150,04/22/19 07:36,"771 Hill St, Atlanta, GA 30301" -180329,Wired Headphones,1,11.99,04/06/19 13:16,"7 Cherry St, San Francisco, CA 94016" -180330,Wired Headphones,1,11.99,04/18/19 12:35,"624 9th St, Los Angeles, CA 90001" -180331,USB-C Charging Cable,1,11.95,04/30/19 19:14,"709 Highland St, Los Angeles, CA 90001" -180332,AA Batteries (4-pack),3,3.84,04/14/19 17:52,"257 Walnut St, New York City, NY 10001" -180333,AA Batteries (4-pack),5,3.84,04/14/19 09:15,"442 Madison St, Seattle, WA 98101" -180333,Wired Headphones,1,11.99,04/14/19 09:15,"442 Madison St, Seattle, WA 98101" -180334,20in Monitor,1,109.99,04/22/19 20:14,"969 Spruce St, San Francisco, CA 94016" -180335,ThinkPad Laptop,1,999.99,04/08/19 17:21,"356 Chestnut St, Los Angeles, CA 90001" -180336,AAA Batteries (4-pack),1,2.99,04/19/19 18:49,"45 8th St, Portland, OR 97035" -180337,USB-C Charging Cable,1,11.95,04/18/19 06:55,"885 12th St, San Francisco, CA 94016" -180338,USB-C Charging Cable,1,11.95,04/12/19 16:38,"54 1st St, New York City, NY 10001" -180339,Wired Headphones,1,11.99,04/18/19 16:19,"438 Center St, Los Angeles, CA 90001" -180340,27in 4K Gaming Monitor,1,389.99,04/21/19 21:01,"470 10th St, New York City, NY 10001" -180341,Lightning Charging Cable,1,14.95,04/24/19 11:09,"789 5th St, Austin, TX 73301" -180342,Wired Headphones,2,11.99,04/14/19 14:54,"422 11th St, Los Angeles, CA 90001" -180343,ThinkPad Laptop,1,999.99,04/13/19 11:44,"952 Park St, Boston, MA 02215" -180344,34in Ultrawide Monitor,1,379.99,04/25/19 15:27,"281 Washington St, Atlanta, GA 30301" -180345,Wired Headphones,1,11.99,04/05/19 19:11,"353 1st St, Los Angeles, CA 90001" -180346,AAA Batteries (4-pack),1,2.99,04/20/19 13:13,"980 South St, Los Angeles, CA 90001" -180347,AAA Batteries (4-pack),1,2.99,04/26/19 10:49,"45 10th St, New York City, NY 10001" -180348,Lightning Charging Cable,1,14.95,04/14/19 20:11,"158 11th St, San Francisco, CA 94016" -180349,Lightning Charging Cable,1,14.95,04/17/19 07:13,"420 Washington St, Dallas, TX 75001" -180350,Apple Airpods Headphones,1,150,04/23/19 23:27,"989 Hill St, Boston, MA 02215" -180351,ThinkPad Laptop,1,999.99,04/09/19 09:45,"447 Pine St, San Francisco, CA 94016" -180352,Bose SoundSport Headphones,1,99.99,04/06/19 23:35,"751 5th St, San Francisco, CA 94016" -180353,27in FHD Monitor,1,149.99,04/22/19 11:58,"628 Ridge St, Portland, OR 97035" -180353,AA Batteries (4-pack),1,3.84,04/22/19 11:58,"628 Ridge St, Portland, OR 97035" -180354,Wired Headphones,1,11.99,04/11/19 22:08,"868 Adams St, Seattle, WA 98101" -180355,34in Ultrawide Monitor,1,379.99,04/09/19 09:12,"369 Meadow St, Dallas, TX 75001" -180356,Lightning Charging Cable,1,14.95,04/01/19 10:22,"214 Dogwood St, New York City, NY 10001" -180357,USB-C Charging Cable,1,11.95,04/15/19 01:08,"855 Park St, San Francisco, CA 94016" -180358,AA Batteries (4-pack),2,3.84,04/05/19 17:48,"955 Lake St, New York City, NY 10001" -180359,LG Dryer,1,600.0,04/03/19 15:17,"20 Ridge St, Los Angeles, CA 90001" -180360,ThinkPad Laptop,1,999.99,04/25/19 19:01,"295 Dogwood St, Los Angeles, CA 90001" -180361,USB-C Charging Cable,1,11.95,04/26/19 20:05,"955 Johnson St, Seattle, WA 98101" -180362,AA Batteries (4-pack),2,3.84,04/19/19 03:54,"245 Lakeview St, New York City, NY 10001" -180363,Wired Headphones,1,11.99,04/06/19 14:19,"863 13th St, Portland, OR 97035" -180364,Lightning Charging Cable,1,14.95,04/07/19 19:40,"222 Adams St, Atlanta, GA 30301" -180365,Lightning Charging Cable,2,14.95,04/23/19 21:27,"414 13th St, Los Angeles, CA 90001" -180365,Google Phone,1,600,04/23/19 21:27,"414 13th St, Los Angeles, CA 90001" -180366,Wired Headphones,1,11.99,04/29/19 23:08,"40 7th St, New York City, NY 10001" -180367,Lightning Charging Cable,1,14.95,04/23/19 09:58,"351 Cedar St, New York City, NY 10001" -180368,27in FHD Monitor,1,149.99,04/18/19 20:22,"967 Willow St, San Francisco, CA 94016" -180369,Flatscreen TV,1,300,04/08/19 18:17,"205 Cedar St, Seattle, WA 98101" -180370,Google Phone,1,600,04/17/19 12:55,"758 Park St, Los Angeles, CA 90001" -180370,USB-C Charging Cable,1,11.95,04/17/19 12:55,"758 Park St, Los Angeles, CA 90001" -180371,Wired Headphones,1,11.99,04/09/19 19:37,"378 8th St, Atlanta, GA 30301" -180372,AA Batteries (4-pack),2,3.84,04/17/19 12:52,"213 Madison St, New York City, NY 10001" -180373,AA Batteries (4-pack),1,3.84,04/02/19 09:58,"782 4th St, Los Angeles, CA 90001" -180374,Wired Headphones,1,11.99,04/27/19 19:07,"678 Cherry St, San Francisco, CA 94016" -180375,27in FHD Monitor,1,149.99,04/10/19 06:52,"519 Park St, Seattle, WA 98101" -180376,Bose SoundSport Headphones,1,99.99,04/27/19 15:57,"446 Pine St, San Francisco, CA 94016" -180377,AAA Batteries (4-pack),2,2.99,04/25/19 08:35,"694 14th St, Seattle, WA 98101" -180378,Apple Airpods Headphones,1,150,04/09/19 12:57,"523 Jackson St, New York City, NY 10001" -180379,Lightning Charging Cable,1,14.95,04/09/19 14:59,"489 North St, San Francisco, CA 94016" -180380,Apple Airpods Headphones,1,150,04/05/19 21:49,"490 Ridge St, Boston, MA 02215" -180381,USB-C Charging Cable,1,11.95,04/08/19 18:43,"247 5th St, Los Angeles, CA 90001" -180382,AA Batteries (4-pack),1,3.84,04/19/19 14:20,"151 8th St, San Francisco, CA 94016" -180382,AAA Batteries (4-pack),2,2.99,04/19/19 14:20,"151 8th St, San Francisco, CA 94016" -180383,USB-C Charging Cable,1,11.95,04/20/19 17:09,"804 Cherry St, Seattle, WA 98101" -180384,Apple Airpods Headphones,1,150,04/07/19 17:05,"44 Chestnut St, Boston, MA 02215" -180385,USB-C Charging Cable,1,11.95,04/01/19 17:32,"935 Walnut St, San Francisco, CA 94016" -180386,Wired Headphones,1,11.99,04/26/19 22:16,"918 1st St, Portland, OR 97035" -180387,USB-C Charging Cable,2,11.95,04/08/19 19:40,"951 5th St, San Francisco, CA 94016" -180388,USB-C Charging Cable,1,11.95,04/28/19 19:05,"106 Washington St, Austin, TX 73301" -180389,Lightning Charging Cable,1,14.95,04/05/19 21:55,"528 Adams St, New York City, NY 10001" -180390,AA Batteries (4-pack),1,3.84,04/26/19 19:45,"455 Hickory St, New York City, NY 10001" -180391,LG Washing Machine,1,600.0,04/06/19 14:11,"979 Lakeview St, San Francisco, CA 94016" -180392,Apple Airpods Headphones,1,150,04/09/19 21:58,"435 Pine St, Los Angeles, CA 90001" -180393,Apple Airpods Headphones,1,150,04/08/19 18:49,"54 Jefferson St, Los Angeles, CA 90001" -180394,iPhone,1,700,04/09/19 14:40,"201 7th St, Seattle, WA 98101" -180395,27in 4K Gaming Monitor,1,389.99,04/05/19 18:31,"158 Elm St, San Francisco, CA 94016" -180396,Lightning Charging Cable,1,14.95,04/07/19 10:56,"666 1st St, Seattle, WA 98101" -180397,AA Batteries (4-pack),1,3.84,04/21/19 10:30,"757 West St, Los Angeles, CA 90001" -180397,Apple Airpods Headphones,2,150,04/21/19 10:30,"757 West St, Los Angeles, CA 90001" -180398,LG Dryer,1,600.0,04/18/19 03:10,"684 9th St, San Francisco, CA 94016" -180399,iPhone,1,700,04/11/19 15:57,"535 Johnson St, Austin, TX 73301" -180399,Lightning Charging Cable,1,14.95,04/11/19 15:57,"535 Johnson St, Austin, TX 73301" -180400,AAA Batteries (4-pack),2,2.99,04/08/19 16:12,"432 Cedar St, Boston, MA 02215" -180401,ThinkPad Laptop,1,999.99,04/14/19 10:56,"598 Lakeview St, Dallas, TX 75001" -180402,Lightning Charging Cable,1,14.95,04/02/19 14:10,"558 River St, Seattle, WA 98101" -180403,Bose SoundSport Headphones,1,99.99,04/10/19 14:40,"182 7th St, Boston, MA 02215" -180404,AA Batteries (4-pack),3,3.84,04/04/19 16:45,"597 Pine St, Los Angeles, CA 90001" -180405,Wired Headphones,1,11.99,04/08/19 09:50,"605 Lincoln St, Dallas, TX 75001" -180406,Bose SoundSport Headphones,1,99.99,04/19/19 15:42,"845 4th St, Los Angeles, CA 90001" -180406,Lightning Charging Cable,1,14.95,04/19/19 15:42,"845 4th St, Los Angeles, CA 90001" -180407,Lightning Charging Cable,1,14.95,04/07/19 08:14,"601 Washington St, New York City, NY 10001" -180408,USB-C Charging Cable,1,11.95,04/15/19 20:14,"54 14th St, San Francisco, CA 94016" -180409,Lightning Charging Cable,1,14.95,04/24/19 09:36,"416 Adams St, Dallas, TX 75001" -180410,Bose SoundSport Headphones,1,99.99,04/19/19 09:48,"244 Hickory St, Los Angeles, CA 90001" -180411,Apple Airpods Headphones,1,150,04/05/19 19:40,"26 Lincoln St, San Francisco, CA 94016" -180412,Wired Headphones,1,11.99,04/14/19 18:49,"785 West St, Los Angeles, CA 90001" -180413,Wired Headphones,1,11.99,04/11/19 06:46,"492 14th St, San Francisco, CA 94016" -180414,USB-C Charging Cable,1,11.95,04/02/19 16:54,"720 5th St, New York City, NY 10001" -180415,Lightning Charging Cable,1,14.95,04/30/19 12:55,"827 North St, Boston, MA 02215" -180416,Flatscreen TV,1,300,04/14/19 14:38,"461 12th St, San Francisco, CA 94016" -180417,Apple Airpods Headphones,1,150,04/07/19 20:55,"375 Elm St, New York City, NY 10001" -180418,AA Batteries (4-pack),1,3.84,04/27/19 19:47,"187 Ridge St, San Francisco, CA 94016" -180419,USB-C Charging Cable,1,11.95,04/04/19 01:24,"868 14th St, Los Angeles, CA 90001" -180420,ThinkPad Laptop,1,999.99,04/10/19 20:26,"841 Center St, San Francisco, CA 94016" -180421,iPhone,1,700,04/21/19 18:59,"652 Adams St, Los Angeles, CA 90001" -180422,Google Phone,1,600,04/10/19 16:02,"755 Ridge St, San Francisco, CA 94016" -180422,USB-C Charging Cable,2,11.95,04/10/19 16:02,"755 Ridge St, San Francisco, CA 94016" -180423,Google Phone,1,600,04/29/19 13:28,"373 13th St, Boston, MA 02215" -180424,USB-C Charging Cable,1,11.95,04/11/19 15:22,"255 Hill St, Boston, MA 02215" -180425,Lightning Charging Cable,2,14.95,04/05/19 15:46,"183 Sunset St, San Francisco, CA 94016" -180426,27in FHD Monitor,1,149.99,04/10/19 09:21,"278 Sunset St, San Francisco, CA 94016" -180427,USB-C Charging Cable,1,11.95,04/13/19 16:37,"491 River St, New York City, NY 10001" -180428,Wired Headphones,1,11.99,04/02/19 12:27,"432 Chestnut St, Boston, MA 02215" -180429,ThinkPad Laptop,1,999.99,04/18/19 16:24,"686 Jackson St, Portland, OR 97035" -180430,Google Phone,1,600,04/10/19 15:34,"118 Highland St, Seattle, WA 98101" -180431,Macbook Pro Laptop,1,1700,04/01/19 21:40,"746 12th St, Austin, TX 73301" -180432,34in Ultrawide Monitor,1,379.99,04/06/19 11:49,"616 Sunset St, Seattle, WA 98101" -180433,27in FHD Monitor,1,149.99,04/10/19 16:57,"173 Willow St, San Francisco, CA 94016" -180434,AA Batteries (4-pack),1,3.84,04/10/19 00:28,"118 Wilson St, Dallas, TX 75001" -180435,AA Batteries (4-pack),1,3.84,04/20/19 12:12,"562 Madison St, Boston, MA 02215" -180436,27in FHD Monitor,1,149.99,04/19/19 09:59,"27 Adams St, Dallas, TX 75001" -180437,AAA Batteries (4-pack),1,2.99,04/11/19 02:13,"669 Meadow St, Atlanta, GA 30301" -180438,34in Ultrawide Monitor,1,379.99,04/18/19 08:52,"985 4th St, New York City, NY 10001" -180439,Flatscreen TV,1,300,04/17/19 09:55,"439 4th St, New York City, NY 10001" -180440,Wired Headphones,1,11.99,04/06/19 10:29,"647 1st St, New York City, NY 10001" -180441,AAA Batteries (4-pack),1,2.99,04/13/19 16:13,"784 South St, San Francisco, CA 94016" -180442,Bose SoundSport Headphones,1,99.99,04/29/19 11:49,"823 Dogwood St, San Francisco, CA 94016" -180443,USB-C Charging Cable,1,11.95,04/26/19 20:57,"859 River St, Seattle, WA 98101" -180444,Apple Airpods Headphones,1,150,04/15/19 22:51,"113 River St, Los Angeles, CA 90001" -180445,Lightning Charging Cable,1,14.95,04/20/19 17:51,"780 6th St, Dallas, TX 75001" -180446,Lightning Charging Cable,1,14.95,04/11/19 22:02,"285 Lincoln St, New York City, NY 10001" -180447,Wired Headphones,1,11.99,04/14/19 00:31,"247 Wilson St, Los Angeles, CA 90001" -180448,34in Ultrawide Monitor,1,379.99,04/12/19 22:48,"882 Hill St, San Francisco, CA 94016" -180449,ThinkPad Laptop,1,999.99,04/05/19 12:00,"431 Willow St, San Francisco, CA 94016" -180450,AA Batteries (4-pack),1,3.84,04/07/19 14:54,"907 River St, Dallas, TX 75001" -180451,Macbook Pro Laptop,1,1700,04/02/19 10:08,"849 Chestnut St, San Francisco, CA 94016" -180452,Lightning Charging Cable,1,14.95,04/24/19 14:47,"618 Hill St, Seattle, WA 98101" -180453,AA Batteries (4-pack),4,3.84,04/19/19 19:36,"515 Meadow St, San Francisco, CA 94016" -180454,AAA Batteries (4-pack),2,2.99,04/09/19 06:51,"862 Sunset St, Los Angeles, CA 90001" -180455,Wired Headphones,1,11.99,04/27/19 10:30,"98 7th St, New York City, NY 10001" -180456,iPhone,1,700,04/28/19 13:36,"900 Highland St, Portland, OR 97035" -180456,Apple Airpods Headphones,1,150,04/28/19 13:36,"900 Highland St, Portland, OR 97035" -180457,Wired Headphones,1,11.99,04/19/19 20:27,"718 Lincoln St, San Francisco, CA 94016" -180458,USB-C Charging Cable,1,11.95,04/19/19 13:54,"574 6th St, San Francisco, CA 94016" -180459,27in 4K Gaming Monitor,1,389.99,04/06/19 15:28,"403 Meadow St, Portland, OR 97035" -180460,Google Phone,1,600,04/20/19 14:57,"127 Adams St, San Francisco, CA 94016" -180461,Lightning Charging Cable,1,14.95,04/26/19 17:27,"214 Madison St, San Francisco, CA 94016" -180462,USB-C Charging Cable,1,11.95,04/08/19 22:29,"488 Sunset St, Los Angeles, CA 90001" -180463,AAA Batteries (4-pack),2,2.99,04/19/19 19:00,"462 Meadow St, San Francisco, CA 94016" -180464,Bose SoundSport Headphones,1,99.99,04/19/19 15:28,"684 Center St, San Francisco, CA 94016" -180465,AAA Batteries (4-pack),3,2.99,04/02/19 23:41,"578 Church St, Seattle, WA 98101" -180466,Bose SoundSport Headphones,1,99.99,04/14/19 07:56,"406 Main St, Los Angeles, CA 90001" -180467,Apple Airpods Headphones,1,150,04/03/19 22:32,"570 River St, Los Angeles, CA 90001" -180467,USB-C Charging Cable,1,11.95,04/03/19 22:32,"570 River St, Los Angeles, CA 90001" -180468,USB-C Charging Cable,2,11.95,04/25/19 13:20,"716 Hickory St, Los Angeles, CA 90001" -180469,Wired Headphones,1,11.99,04/14/19 08:27,"452 Wilson St, New York City, NY 10001" -180470,USB-C Charging Cable,1,11.95,04/14/19 11:17,"574 Park St, Los Angeles, CA 90001" -180471,AAA Batteries (4-pack),1,2.99,04/10/19 20:42,"556 Maple St, San Francisco, CA 94016" -180472,AA Batteries (4-pack),1,3.84,04/11/19 15:48,"832 Lake St, San Francisco, CA 94016" -180473,AA Batteries (4-pack),1,3.84,04/15/19 11:07,"90 Lincoln St, Dallas, TX 75001" -180474,Lightning Charging Cable,1,14.95,04/30/19 10:04,"350 Washington St, San Francisco, CA 94016" -180475,27in FHD Monitor,1,149.99,04/15/19 13:35,"875 Washington St, San Francisco, CA 94016" -180476,Bose SoundSport Headphones,1,99.99,04/26/19 23:09,"734 Pine St, New York City, NY 10001" -180477,27in FHD Monitor,1,149.99,04/16/19 08:58,"411 5th St, Los Angeles, CA 90001" -180478,Wired Headphones,1,11.99,04/21/19 17:04,"417 Adams St, Los Angeles, CA 90001" -180479,AAA Batteries (4-pack),1,2.99,04/30/19 11:57,"559 Washington St, New York City, NY 10001" -180480,Bose SoundSport Headphones,1,99.99,04/02/19 12:00,"105 Johnson St, Boston, MA 02215" -180481,Wired Headphones,1,11.99,04/04/19 19:04,"970 Lake St, San Francisco, CA 94016" -180482,AAA Batteries (4-pack),1,2.99,04/28/19 16:55,"73 Walnut St, Atlanta, GA 30301" -180483,AAA Batteries (4-pack),1,2.99,04/07/19 15:22,"375 Johnson St, New York City, NY 10001" -180484,27in FHD Monitor,1,149.99,04/16/19 19:31,"654 Washington St, Los Angeles, CA 90001" -180485,34in Ultrawide Monitor,1,379.99,04/18/19 14:19,"704 Forest St, Los Angeles, CA 90001" -180486,USB-C Charging Cable,1,11.95,04/13/19 12:06,"907 Sunset St, San Francisco, CA 94016" -180487,20in Monitor,1,109.99,04/26/19 15:51,"161 Sunset St, Los Angeles, CA 90001" -180488,Lightning Charging Cable,1,14.95,04/19/19 11:55,"571 Forest St, San Francisco, CA 94016" -180489,AA Batteries (4-pack),1,3.84,04/21/19 19:55,"140 Lakeview St, Portland, OR 97035" -180490,Apple Airpods Headphones,1,150,04/26/19 01:34,"418 11th St, Atlanta, GA 30301" -180491,AA Batteries (4-pack),4,3.84,04/14/19 10:21,"943 8th St, Seattle, WA 98101" -180492,Apple Airpods Headphones,1,150,04/06/19 10:06,"277 2nd St, Boston, MA 02215" -180493,Wired Headphones,1,11.99,04/19/19 14:39,"782 9th St, New York City, NY 10001" -180494,iPhone,1,700,04/29/19 10:04,"972 Pine St, Austin, TX 73301" -180495,USB-C Charging Cable,2,11.95,04/12/19 16:02,"974 Washington St, Dallas, TX 75001" -180496,Macbook Pro Laptop,1,1700,04/06/19 13:07,"646 Maple St, Seattle, WA 98101" -180497,Lightning Charging Cable,1,14.95,04/12/19 15:24,"728 Meadow St, Boston, MA 02215" -180498,Apple Airpods Headphones,1,150,04/11/19 19:36,"976 Wilson St, Los Angeles, CA 90001" -180499,27in 4K Gaming Monitor,1,389.99,04/23/19 20:22,"427 Highland St, Seattle, WA 98101" -180500,AAA Batteries (4-pack),1,2.99,04/04/19 12:43,"169 Main St, Boston, MA 02215" -180501,AA Batteries (4-pack),1,3.84,04/19/19 09:40,"881 4th St, Portland, OR 97035" -180502,USB-C Charging Cable,1,11.95,04/08/19 21:11,"899 West St, Los Angeles, CA 90001" -180503,AAA Batteries (4-pack),1,2.99,04/12/19 08:37,"981 River St, Los Angeles, CA 90001" -180504,AAA Batteries (4-pack),1,2.99,04/28/19 13:26,"425 Meadow St, Dallas, TX 75001" -180505,Lightning Charging Cable,1,14.95,04/16/19 12:38,"582 River St, Atlanta, GA 30301" -180506,AA Batteries (4-pack),1,3.84,04/05/19 17:53,"763 Jackson St, New York City, NY 10001" -180507,AAA Batteries (4-pack),1,2.99,04/23/19 11:05,"406 9th St, Boston, MA 02215" -180508,USB-C Charging Cable,1,11.95,04/21/19 12:36,"756 Spruce St, Seattle, WA 98101" -180509,20in Monitor,1,109.99,04/13/19 11:42,"57 Lincoln St, Boston, MA 02215" -180510,Lightning Charging Cable,1,14.95,04/06/19 20:23,"201 Jefferson St, Los Angeles, CA 90001" -180511,USB-C Charging Cable,1,11.95,04/21/19 16:25,"124 Center St, San Francisco, CA 94016" -180512,Wired Headphones,1,11.99,04/19/19 07:42,"602 Elm St, Dallas, TX 75001" -180513,Wired Headphones,1,11.99,04/02/19 13:35,"373 Hill St, Seattle, WA 98101" -180514,Wired Headphones,1,11.99,04/15/19 16:28,"958 1st St, Portland, OR 97035" -180514,iPhone,1,700,04/15/19 16:28,"958 1st St, Portland, OR 97035" -180515,27in 4K Gaming Monitor,1,389.99,04/29/19 09:21,"858 West St, New York City, NY 10001" -180515,Apple Airpods Headphones,1,150,04/29/19 09:21,"858 West St, New York City, NY 10001" -180516,Wired Headphones,1,11.99,04/16/19 15:57,"374 West St, Los Angeles, CA 90001" -180517,AAA Batteries (4-pack),1,2.99,04/01/19 10:48,"214 6th St, Los Angeles, CA 90001" -180518,Apple Airpods Headphones,1,150,04/01/19 19:13,"316 10th St, Los Angeles, CA 90001" -180519,AA Batteries (4-pack),1,3.84,04/17/19 17:05,"500 South St, Portland, OR 97035" -180520,AAA Batteries (4-pack),1,2.99,04/01/19 07:46,"84 Elm St, Los Angeles, CA 90001" -180521,AA Batteries (4-pack),3,3.84,04/23/19 23:31,"457 Willow St, Boston, MA 02215" -180522,USB-C Charging Cable,1,11.95,04/05/19 19:45,"75 Lake St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -180523,iPhone,1,700,04/09/19 13:24,"591 Lake St, Dallas, TX 75001" -180523,Lightning Charging Cable,1,14.95,04/09/19 13:24,"591 Lake St, Dallas, TX 75001" -180524,Bose SoundSport Headphones,1,99.99,04/16/19 19:30,"33 5th St, San Francisco, CA 94016" -180525,27in FHD Monitor,1,149.99,04/04/19 10:40,"327 Main St, Los Angeles, CA 90001" -180526,Wired Headphones,1,11.99,04/26/19 09:21,"677 Church St, San Francisco, CA 94016" -180527,Wired Headphones,1,11.99,04/03/19 12:15,"534 Hickory St, San Francisco, CA 94016" -180528,Bose SoundSport Headphones,1,99.99,04/04/19 15:16,"296 Adams St, Boston, MA 02215" -180529,Lightning Charging Cable,1,14.95,04/08/19 22:14,"623 South St, Seattle, WA 98101" -180530,ThinkPad Laptop,1,999.99,04/06/19 19:15,"466 Meadow St, Los Angeles, CA 90001" -180531,Apple Airpods Headphones,1,150,04/24/19 09:59,"778 1st St, San Francisco, CA 94016" -180532,iPhone,1,700,04/18/19 11:31,"865 River St, Los Angeles, CA 90001" -180532,Lightning Charging Cable,1,14.95,04/18/19 11:31,"865 River St, Los Angeles, CA 90001" -180533,Flatscreen TV,1,300,04/17/19 09:17,"342 10th St, Austin, TX 73301" -180534,34in Ultrawide Monitor,1,379.99,04/19/19 17:33,"560 7th St, New York City, NY 10001" -180535,iPhone,1,700,04/27/19 21:51,"42 Lakeview St, Austin, TX 73301" -180536,Lightning Charging Cable,1,14.95,04/18/19 16:27,"512 North St, New York City, NY 10001" -180537,AAA Batteries (4-pack),1,2.99,04/21/19 20:45,"661 14th St, Los Angeles, CA 90001" -180538,Bose SoundSport Headphones,1,99.99,04/16/19 11:35,"622 Madison St, San Francisco, CA 94016" -180539,Apple Airpods Headphones,1,150,04/13/19 21:47,"47 Lakeview St, San Francisco, CA 94016" -180540,iPhone,1,700,04/21/19 21:00,"330 6th St, Los Angeles, CA 90001" -180541,20in Monitor,1,109.99,04/30/19 22:40,"725 12th St, Atlanta, GA 30301" -180542,Lightning Charging Cable,2,14.95,04/20/19 16:49,"245 Meadow St, Boston, MA 02215" -180543,Google Phone,1,600,04/29/19 22:42,"945 River St, San Francisco, CA 94016" -180544,AA Batteries (4-pack),1,3.84,04/22/19 20:01,"840 Spruce St, San Francisco, CA 94016" -180545,Macbook Pro Laptop,1,1700,04/07/19 20:28,"483 Main St, San Francisco, CA 94016" -180546,Wired Headphones,1,11.99,04/11/19 13:44,"555 6th St, San Francisco, CA 94016" -180547,Wired Headphones,1,11.99,04/14/19 20:52,"658 Washington St, Portland, ME 04101" -180548,AAA Batteries (4-pack),1,2.99,04/12/19 16:03,"744 Wilson St, Dallas, TX 75001" -180549,Lightning Charging Cable,1,14.95,04/05/19 21:43,"444 Jefferson St, New York City, NY 10001" -180550,Apple Airpods Headphones,1,150,04/02/19 20:00,"666 Hill St, New York City, NY 10001" -180551,USB-C Charging Cable,1,11.95,04/30/19 01:19,"179 Jackson St, Los Angeles, CA 90001" -180552,AA Batteries (4-pack),2,3.84,04/30/19 21:20,"728 Highland St, Atlanta, GA 30301" -180553,USB-C Charging Cable,1,11.95,04/13/19 10:55,"268 5th St, Los Angeles, CA 90001" -180554,Macbook Pro Laptop,1,1700,04/21/19 10:41,"466 Chestnut St, Seattle, WA 98101" -180555,Bose SoundSport Headphones,1,99.99,04/20/19 10:07,"203 Chestnut St, San Francisco, CA 94016" -180556,34in Ultrawide Monitor,1,379.99,04/12/19 23:45,"923 Dogwood St, Los Angeles, CA 90001" -180557,USB-C Charging Cable,1,11.95,04/13/19 08:30,"750 Dogwood St, Dallas, TX 75001" -180558,27in 4K Gaming Monitor,1,389.99,04/03/19 12:31,"386 Hickory St, Los Angeles, CA 90001" -180558,Vareebadd Phone,1,400,04/03/19 12:31,"386 Hickory St, Los Angeles, CA 90001" -180559,Flatscreen TV,1,300,04/17/19 12:48,"467 Maple St, Atlanta, GA 30301" -180560,AA Batteries (4-pack),4,3.84,04/22/19 14:34,"553 Walnut St, Los Angeles, CA 90001" -180561,Wired Headphones,1,11.99,04/18/19 16:21,"718 Elm St, Seattle, WA 98101" -180562,USB-C Charging Cable,1,11.95,04/05/19 19:40,"560 Jackson St, San Francisco, CA 94016" -180563,AAA Batteries (4-pack),1,2.99,04/21/19 17:50,"644 13th St, Seattle, WA 98101" -180564,AA Batteries (4-pack),1,3.84,04/12/19 23:24,"47 8th St, San Francisco, CA 94016" -180565,AA Batteries (4-pack),4,3.84,04/13/19 13:02,"622 14th St, San Francisco, CA 94016" -180566,Apple Airpods Headphones,1,150,04/25/19 15:21,"28 Forest St, Boston, MA 02215" -180567,Wired Headphones,1,11.99,04/10/19 21:22,"414 Cedar St, Los Angeles, CA 90001" -180568,AA Batteries (4-pack),1,3.84,04/14/19 10:31,"215 12th St, San Francisco, CA 94016" -180569,Bose SoundSport Headphones,1,99.99,04/14/19 10:37,"454 Ridge St, Los Angeles, CA 90001" -180570,USB-C Charging Cable,1,11.95,04/11/19 20:07,"337 Washington St, San Francisco, CA 94016" -180571,Bose SoundSport Headphones,1,99.99,04/02/19 07:59,"303 Washington St, San Francisco, CA 94016" -180572,AA Batteries (4-pack),1,3.84,04/09/19 16:56,"581 Cherry St, Seattle, WA 98101" -180573,27in FHD Monitor,1,149.99,04/09/19 23:49,"856 Chestnut St, Boston, MA 02215" -180574,Google Phone,1,600,04/17/19 12:06,"742 13th St, Los Angeles, CA 90001" -180575,Bose SoundSport Headphones,1,99.99,04/25/19 18:36,"423 Ridge St, San Francisco, CA 94016" -180576,Lightning Charging Cable,1,14.95,04/18/19 17:23,"431 Park St, Dallas, TX 75001" -180576,Lightning Charging Cable,1,14.95,04/18/19 17:23,"431 Park St, Dallas, TX 75001" -180577,AA Batteries (4-pack),1,3.84,04/30/19 21:26,"989 Elm St, San Francisco, CA 94016" -180578,AAA Batteries (4-pack),1,2.99,04/28/19 12:15,"129 Wilson St, Portland, OR 97035" -180579,AAA Batteries (4-pack),1,2.99,04/25/19 01:31,"593 Lincoln St, San Francisco, CA 94016" -180580,Apple Airpods Headphones,1,150,04/04/19 08:03,"649 13th St, New York City, NY 10001" -180581,Lightning Charging Cable,1,14.95,04/28/19 18:20,"280 Hill St, Los Angeles, CA 90001" -180582,Lightning Charging Cable,1,14.95,04/02/19 10:44,"206 Walnut St, Atlanta, GA 30301" -180583,Google Phone,1,600,04/30/19 14:40,"168 Chestnut St, San Francisco, CA 94016" -180584,Apple Airpods Headphones,1,150,04/27/19 00:09,"923 Maple St, Dallas, TX 75001" -180585,USB-C Charging Cable,1,11.95,04/09/19 17:51,"756 Forest St, New York City, NY 10001" -180586,Lightning Charging Cable,1,14.95,04/24/19 17:01,"154 Park St, San Francisco, CA 94016" -180587,AAA Batteries (4-pack),1,2.99,04/01/19 18:30,"848 Adams St, New York City, NY 10001" -180588,USB-C Charging Cable,1,11.95,04/26/19 14:27,"32 Wilson St, San Francisco, CA 94016" -180589,AAA Batteries (4-pack),1,2.99,04/26/19 21:02,"277 North St, Dallas, TX 75001" -180590,Wired Headphones,1,11.99,04/09/19 12:07,"298 Church St, Atlanta, GA 30301" -180591,Apple Airpods Headphones,1,150,04/06/19 21:33,"322 Walnut St, San Francisco, CA 94016" -180592,USB-C Charging Cable,1,11.95,04/18/19 12:52,"455 River St, Boston, MA 02215" -180593,Apple Airpods Headphones,1,150,04/05/19 16:40,"420 14th St, San Francisco, CA 94016" -180594,Lightning Charging Cable,1,14.95,04/27/19 22:04,"864 Washington St, Los Angeles, CA 90001" -180595,AAA Batteries (4-pack),1,2.99,04/17/19 14:50,"213 Forest St, Los Angeles, CA 90001" -180596,Wired Headphones,1,11.99,04/04/19 06:48,"244 Lincoln St, Seattle, WA 98101" -180597,AAA Batteries (4-pack),2,2.99,04/28/19 05:57,"309 River St, Seattle, WA 98101" -180598,Macbook Pro Laptop,1,1700,04/24/19 11:49,"772 Ridge St, Los Angeles, CA 90001" -180599,Apple Airpods Headphones,1,150,04/15/19 03:17,"174 River St, San Francisco, CA 94016" -180600,Wired Headphones,1,11.99,04/08/19 09:40,"481 7th St, New York City, NY 10001" -180601,Lightning Charging Cable,1,14.95,04/25/19 12:14,"658 Forest St, Los Angeles, CA 90001" -180602,27in FHD Monitor,1,149.99,04/25/19 00:44,"422 Center St, San Francisco, CA 94016" -180603,Wired Headphones,1,11.99,04/16/19 12:24,"682 1st St, San Francisco, CA 94016" -180604,Apple Airpods Headphones,1,150,04/07/19 10:47,"424 Park St, Los Angeles, CA 90001" -180605,AA Batteries (4-pack),1,3.84,04/22/19 17:33,"865 10th St, Los Angeles, CA 90001" -180606,Apple Airpods Headphones,1,150,04/22/19 10:58,"629 8th St, Austin, TX 73301" -180607,USB-C Charging Cable,1,11.95,04/14/19 17:01,"546 Lake St, San Francisco, CA 94016" -180608,USB-C Charging Cable,1,11.95,04/11/19 09:57,"768 9th St, Dallas, TX 75001" -180609,Wired Headphones,1,11.99,04/10/19 11:19,"667 5th St, Boston, MA 02215" -180610,USB-C Charging Cable,1,11.95,04/11/19 22:36,"144 Willow St, Los Angeles, CA 90001" -180611,Lightning Charging Cable,1,14.95,04/07/19 18:21,"635 Lake St, Austin, TX 73301" -180612,AAA Batteries (4-pack),1,2.99,04/17/19 10:53,"592 Cedar St, Boston, MA 02215" -180613,Lightning Charging Cable,1,14.95,04/03/19 17:59,"406 Elm St, San Francisco, CA 94016" -180614,AAA Batteries (4-pack),1,2.99,04/06/19 06:07,"806 Chestnut St, Los Angeles, CA 90001" -180615,Apple Airpods Headphones,1,150,04/19/19 10:12,"206 5th St, Atlanta, GA 30301" -180616,AAA Batteries (4-pack),1,2.99,04/17/19 06:54,"384 Madison St, Dallas, TX 75001" -180617,Wired Headphones,1,11.99,04/16/19 13:11,"591 2nd St, New York City, NY 10001" -180618,Lightning Charging Cable,1,14.95,04/06/19 10:26,"11 Chestnut St, Austin, TX 73301" -180619,Lightning Charging Cable,1,14.95,04/06/19 23:47,"124 Chestnut St, Boston, MA 02215" -180620,Bose SoundSport Headphones,1,99.99,04/08/19 01:46,"298 Church St, Portland, OR 97035" -180621,Flatscreen TV,1,300,04/01/19 12:37,"212 Center St, Austin, TX 73301" -180622,USB-C Charging Cable,1,11.95,04/28/19 10:23,"167 West St, Atlanta, GA 30301" -180623,Lightning Charging Cable,1,14.95,04/06/19 14:27,"729 12th St, San Francisco, CA 94016" -180624,27in FHD Monitor,1,149.99,04/05/19 14:03,"895 Highland St, San Francisco, CA 94016" -180625,Lightning Charging Cable,1,14.95,04/02/19 22:27,"16 6th St, Portland, ME 04101" -180626,iPhone,1,700,04/13/19 12:21,"769 Hickory St, Atlanta, GA 30301" -180627,iPhone,1,700,04/11/19 19:46,"888 4th St, New York City, NY 10001" -180627,Lightning Charging Cable,1,14.95,04/11/19 19:46,"888 4th St, New York City, NY 10001" -180628,Vareebadd Phone,1,400,04/07/19 22:29,"988 7th St, Seattle, WA 98101" -180629,Google Phone,1,600,04/30/19 08:13,"677 Wilson St, San Francisco, CA 94016" -180630,27in FHD Monitor,1,149.99,04/01/19 23:29,"971 Wilson St, San Francisco, CA 94016" -180631,AA Batteries (4-pack),1,3.84,04/25/19 18:21,"117 5th St, Seattle, WA 98101" -180631,Lightning Charging Cable,1,14.95,04/25/19 18:21,"117 5th St, Seattle, WA 98101" -180632,Wired Headphones,1,11.99,04/12/19 21:27,"525 Johnson St, Los Angeles, CA 90001" -180633,Google Phone,1,600,04/25/19 22:49,"602 Hickory St, Seattle, WA 98101" -180634,Wired Headphones,1,11.99,04/07/19 13:44,"683 Highland St, San Francisco, CA 94016" -180635,34in Ultrawide Monitor,1,379.99,04/07/19 16:38,"8 Dogwood St, Seattle, WA 98101" -180636,Lightning Charging Cable,1,14.95,04/22/19 18:53,"414 14th St, New York City, NY 10001" -180637,Flatscreen TV,1,300,04/10/19 18:34,"798 Cherry St, Austin, TX 73301" -180638,27in 4K Gaming Monitor,1,389.99,04/24/19 11:58,"457 9th St, San Francisco, CA 94016" -180639,USB-C Charging Cable,1,11.95,04/02/19 01:53,"485 4th St, Austin, TX 73301" -180640,Wired Headphones,1,11.99,04/25/19 21:51,"205 9th St, San Francisco, CA 94016" -180641,iPhone,1,700,04/02/19 22:44,"803 Center St, Atlanta, GA 30301" -180642,iPhone,1,700,04/02/19 20:36,"376 Lincoln St, Boston, MA 02215" -180643,34in Ultrawide Monitor,1,379.99,04/09/19 00:15,"277 6th St, Austin, TX 73301" -180644,USB-C Charging Cable,1,11.95,04/14/19 22:42,"842 9th St, New York City, NY 10001" -180645,ThinkPad Laptop,1,999.99,04/18/19 19:35,"713 14th St, Boston, MA 02215" -180646,iPhone,1,700,04/21/19 15:24,"376 North St, San Francisco, CA 94016" -180647,20in Monitor,1,109.99,04/24/19 21:34,"783 Dogwood St, Boston, MA 02215" -180648,Wired Headphones,1,11.99,04/13/19 10:20,"324 7th St, Los Angeles, CA 90001" -180649,ThinkPad Laptop,1,999.99,04/02/19 04:56,"586 2nd St, San Francisco, CA 94016" -180650,Apple Airpods Headphones,1,150,04/04/19 13:01,"254 Sunset St, Atlanta, GA 30301" -180651,Wired Headphones,1,11.99,04/20/19 17:11,"309 14th St, San Francisco, CA 94016" -180651,AA Batteries (4-pack),3,3.84,04/20/19 17:11,"309 14th St, San Francisco, CA 94016" -180652,Google Phone,1,600,04/10/19 15:09,"623 9th St, New York City, NY 10001" -180652,USB-C Charging Cable,1,11.95,04/10/19 15:09,"623 9th St, New York City, NY 10001" -180653,Apple Airpods Headphones,1,150,04/11/19 23:26,"778 6th St, Boston, MA 02215" -180654,Wired Headphones,1,11.99,04/04/19 09:40,"618 Highland St, Seattle, WA 98101" -,,,,, -180655,27in FHD Monitor,1,149.99,04/30/19 18:14,"740 Church St, San Francisco, CA 94016" -180656,ThinkPad Laptop,1,999.99,04/20/19 23:29,"343 Highland St, Austin, TX 73301" -180657,Macbook Pro Laptop,1,1700,04/10/19 10:31,"728 9th St, New York City, NY 10001" -180658,AA Batteries (4-pack),1,3.84,04/17/19 17:58,"578 Wilson St, Portland, ME 04101" -180659,LG Washing Machine,1,600.0,04/25/19 14:35,"434 Cherry St, San Francisco, CA 94016" -180660,Lightning Charging Cable,1,14.95,04/08/19 12:52,"313 Spruce St, San Francisco, CA 94016" -180661,Bose SoundSport Headphones,1,99.99,04/28/19 22:34,"588 7th St, Dallas, TX 75001" -180662,Apple Airpods Headphones,1,150,04/26/19 00:06,"240 Wilson St, New York City, NY 10001" -180663,LG Washing Machine,1,600.0,04/12/19 09:37,"785 Park St, Los Angeles, CA 90001" -180664,ThinkPad Laptop,1,999.99,04/04/19 18:21,"86 2nd St, Atlanta, GA 30301" -180665,Lightning Charging Cable,1,14.95,04/30/19 18:36,"292 Ridge St, Dallas, TX 75001" -180666,iPhone,1,700,04/19/19 18:01,"652 Sunset St, Los Angeles, CA 90001" -180667,27in 4K Gaming Monitor,1,389.99,04/09/19 12:21,"754 Cherry St, Los Angeles, CA 90001" -180668,Flatscreen TV,1,300,04/03/19 16:13,"453 1st St, New York City, NY 10001" -180669,27in 4K Gaming Monitor,1,389.99,04/02/19 17:48,"895 2nd St, Portland, OR 97035" -180670,Google Phone,1,600,04/06/19 20:46,"635 Main St, San Francisco, CA 94016" -180671,Wired Headphones,1,11.99,04/18/19 18:48,"605 4th St, Los Angeles, CA 90001" -180671,Apple Airpods Headphones,1,150,04/18/19 18:48,"605 4th St, Los Angeles, CA 90001" -180672,Apple Airpods Headphones,1,150,04/05/19 12:59,"694 Adams St, San Francisco, CA 94016" -180673,Apple Airpods Headphones,1,150,04/17/19 18:11,"769 6th St, Dallas, TX 75001" -180674,USB-C Charging Cable,1,11.95,04/11/19 23:11,"561 Park St, Atlanta, GA 30301" -180675,ThinkPad Laptop,1,999.99,04/09/19 15:22,"731 1st St, Atlanta, GA 30301" -180676,Apple Airpods Headphones,1,150,04/28/19 19:51,"406 Maple St, Los Angeles, CA 90001" -180676,27in FHD Monitor,1,149.99,04/28/19 19:51,"406 Maple St, Los Angeles, CA 90001" -180677,AA Batteries (4-pack),1,3.84,04/05/19 23:17,"680 11th St, Atlanta, GA 30301" -180678,Lightning Charging Cable,1,14.95,04/17/19 17:04,"225 Chestnut St, New York City, NY 10001" -180679,Apple Airpods Headphones,1,150,04/22/19 14:45,"288 12th St, San Francisco, CA 94016" -180680,AAA Batteries (4-pack),1,2.99,04/13/19 17:41,"686 Center St, San Francisco, CA 94016" -180681,Bose SoundSport Headphones,1,99.99,04/19/19 21:32,"240 Jefferson St, San Francisco, CA 94016" -180682,USB-C Charging Cable,1,11.95,04/13/19 11:03,"483 14th St, Seattle, WA 98101" -180683,Apple Airpods Headphones,1,150,04/14/19 22:26,"107 Church St, New York City, NY 10001" -180684,Wired Headphones,1,11.99,04/21/19 23:45,"731 Cherry St, San Francisco, CA 94016" -180685,Apple Airpods Headphones,1,150,04/27/19 15:15,"826 Sunset St, Boston, MA 02215" -180686,Wired Headphones,1,11.99,04/15/19 12:27,"796 5th St, San Francisco, CA 94016" -180687,AA Batteries (4-pack),1,3.84,04/22/19 18:21,"104 10th St, San Francisco, CA 94016" -180688,34in Ultrawide Monitor,1,379.99,04/30/19 15:55,"918 South St, Seattle, WA 98101" -180689,AA Batteries (4-pack),2,3.84,04/14/19 14:49,"350 10th St, San Francisco, CA 94016" -180690,USB-C Charging Cable,1,11.95,04/26/19 15:00,"809 Jefferson St, San Francisco, CA 94016" -180691,34in Ultrawide Monitor,1,379.99,04/28/19 13:08,"199 14th St, Los Angeles, CA 90001" -180692,USB-C Charging Cable,1,11.95,04/11/19 08:36,"879 1st St, Dallas, TX 75001" -180693,AA Batteries (4-pack),1,3.84,04/09/19 13:22,"967 5th St, Seattle, WA 98101" -180694,AA Batteries (4-pack),2,3.84,04/24/19 18:44,"698 Adams St, Boston, MA 02215" -180695,Lightning Charging Cable,1,14.95,04/09/19 22:18,"731 Elm St, Austin, TX 73301" -180696,AA Batteries (4-pack),3,3.84,04/06/19 00:05,"427 5th St, Los Angeles, CA 90001" -180697,USB-C Charging Cable,1,11.95,04/07/19 08:37,"354 11th St, Los Angeles, CA 90001" -180698,20in Monitor,1,109.99,04/15/19 11:02,"939 Pine St, San Francisco, CA 94016" -180699,Lightning Charging Cable,1,14.95,04/30/19 16:19,"36 Lake St, Dallas, TX 75001" -180700,Apple Airpods Headphones,1,150,04/24/19 22:32,"645 2nd St, Dallas, TX 75001" -180701,ThinkPad Laptop,1,999.99,04/11/19 23:15,"176 Hickory St, New York City, NY 10001" -180702,27in FHD Monitor,1,149.99,04/22/19 09:24,"736 10th St, Los Angeles, CA 90001" -180703,Apple Airpods Headphones,1,150,04/25/19 13:28,"895 West St, Seattle, WA 98101" -180704,Lightning Charging Cable,1,14.95,04/07/19 13:20,"249 Park St, Seattle, WA 98101" -180705,USB-C Charging Cable,1,11.95,04/16/19 14:49,"549 Sunset St, Seattle, WA 98101" -180706,Bose SoundSport Headphones,1,99.99,04/05/19 13:48,"512 Main St, Atlanta, GA 30301" -180707,Lightning Charging Cable,1,14.95,04/20/19 19:22,"516 Washington St, New York City, NY 10001" -180708,AA Batteries (4-pack),1,3.84,04/01/19 18:17,"668 11th St, New York City, NY 10001" -180709,Wired Headphones,1,11.99,04/07/19 09:55,"361 14th St, Los Angeles, CA 90001" -180710,iPhone,1,700,04/25/19 11:30,"796 Meadow St, Atlanta, GA 30301" -180711,iPhone,1,700,04/01/19 08:37,"322 Johnson St, Los Angeles, CA 90001" -180712,27in FHD Monitor,1,149.99,04/15/19 02:41,"913 Dogwood St, New York City, NY 10001" -180713,Lightning Charging Cable,1,14.95,04/13/19 05:47,"902 Maple St, Portland, OR 97035" -180714,34in Ultrawide Monitor,1,379.99,04/03/19 21:00,"913 13th St, San Francisco, CA 94016" -180715,Wired Headphones,2,11.99,04/22/19 11:42,"743 Park St, Austin, TX 73301" -180716,Wired Headphones,2,11.99,04/24/19 12:56,"744 1st St, San Francisco, CA 94016" -180717,USB-C Charging Cable,1,11.95,04/22/19 19:04,"860 Jefferson St, New York City, NY 10001" -180718,27in 4K Gaming Monitor,1,389.99,04/13/19 13:03,"981 Walnut St, Seattle, WA 98101" -180719,Apple Airpods Headphones,1,150,04/09/19 18:15,"153 Wilson St, Boston, MA 02215" -180720,Bose SoundSport Headphones,1,99.99,04/16/19 02:32,"204 Washington St, Dallas, TX 75001" -180721,AAA Batteries (4-pack),2,2.99,04/22/19 17:17,"5 Hill St, San Francisco, CA 94016" -180722,USB-C Charging Cable,1,11.95,04/07/19 23:57,"268 Lake St, San Francisco, CA 94016" -180723,Google Phone,1,600,04/20/19 16:54,"405 Center St, Los Angeles, CA 90001" -180723,USB-C Charging Cable,1,11.95,04/20/19 16:54,"405 Center St, Los Angeles, CA 90001" -180723,Bose SoundSport Headphones,1,99.99,04/20/19 16:54,"405 Center St, Los Angeles, CA 90001" -180724,Apple Airpods Headphones,1,150,04/15/19 22:09,"997 West St, Boston, MA 02215" -180725,Bose SoundSport Headphones,1,99.99,04/06/19 11:38,"694 Park St, Atlanta, GA 30301" -180726,Wired Headphones,1,11.99,04/24/19 09:35,"636 Sunset St, Seattle, WA 98101" -180727,AA Batteries (4-pack),1,3.84,04/05/19 22:57,"670 7th St, Los Angeles, CA 90001" -180728,ThinkPad Laptop,1,999.99,04/22/19 20:27,"376 Adams St, Portland, ME 04101" -180729,USB-C Charging Cable,1,11.95,04/14/19 10:08,"757 11th St, San Francisco, CA 94016" -180730,Lightning Charging Cable,1,14.95,04/06/19 21:39,"753 Wilson St, San Francisco, CA 94016" -180731,AA Batteries (4-pack),2,3.84,04/29/19 18:39,"63 Cherry St, Boston, MA 02215" -180732,Wired Headphones,1,11.99,04/26/19 20:50,"403 Willow St, San Francisco, CA 94016" -180733,AA Batteries (4-pack),1,3.84,04/03/19 19:59,"710 12th St, San Francisco, CA 94016" -180734,AAA Batteries (4-pack),2,2.99,04/14/19 20:51,"314 Highland St, San Francisco, CA 94016" -180735,Flatscreen TV,1,300,04/02/19 16:11,"797 Meadow St, Dallas, TX 75001" -180736,AA Batteries (4-pack),1,3.84,04/17/19 14:29,"842 2nd St, Los Angeles, CA 90001" -180737,USB-C Charging Cable,2,11.95,04/11/19 12:03,"745 North St, Boston, MA 02215" -180738,Bose SoundSport Headphones,1,99.99,04/18/19 12:50,"692 Park St, New York City, NY 10001" -180739,Bose SoundSport Headphones,1,99.99,04/17/19 20:33,"907 9th St, Los Angeles, CA 90001" -180740,Apple Airpods Headphones,1,150,04/02/19 21:36,"664 4th St, Dallas, TX 75001" -180741,AAA Batteries (4-pack),3,2.99,04/29/19 12:10,"683 9th St, Austin, TX 73301" -180742,Lightning Charging Cable,1,14.95,04/05/19 14:06,"268 West St, New York City, NY 10001" -180743,USB-C Charging Cable,1,11.95,04/06/19 18:24,"675 Walnut St, San Francisco, CA 94016" -180744,USB-C Charging Cable,2,11.95,04/09/19 06:38,"564 Meadow St, San Francisco, CA 94016" -180745,34in Ultrawide Monitor,1,379.99,04/21/19 15:15,"803 Chestnut St, San Francisco, CA 94016" -180746,AAA Batteries (4-pack),1,2.99,04/30/19 12:05,"398 West St, New York City, NY 10001" -180746,AAA Batteries (4-pack),1,2.99,04/30/19 12:05,"398 West St, New York City, NY 10001" -180747,Lightning Charging Cable,1,14.95,04/12/19 19:10,"398 9th St, Los Angeles, CA 90001" -180748,AAA Batteries (4-pack),1,2.99,04/03/19 15:05,"336 5th St, New York City, NY 10001" -180749,ThinkPad Laptop,1,999.99,04/03/19 10:24,"175 Dogwood St, Boston, MA 02215" -180750,Lightning Charging Cable,1,14.95,04/14/19 20:01,"866 10th St, Austin, TX 73301" -180751,Lightning Charging Cable,1,14.95,04/24/19 10:44,"255 10th St, Atlanta, GA 30301" -180752,Bose SoundSport Headphones,1,99.99,04/21/19 10:49,"695 Maple St, San Francisco, CA 94016" -180753,AAA Batteries (4-pack),1,2.99,04/26/19 19:36,"727 Lake St, New York City, NY 10001" -180754,34in Ultrawide Monitor,1,379.99,04/28/19 12:59,"71 Hickory St, New York City, NY 10001" -180755,Bose SoundSport Headphones,1,99.99,04/09/19 12:48,"131 Madison St, Boston, MA 02215" -180756,34in Ultrawide Monitor,1,379.99,04/23/19 06:14,"93 Lake St, San Francisco, CA 94016" -180757,Apple Airpods Headphones,1,150,04/15/19 08:15,"580 Elm St, Atlanta, GA 30301" -180758,27in 4K Gaming Monitor,1,389.99,04/05/19 20:32,"557 Ridge St, San Francisco, CA 94016" -180759,Wired Headphones,1,11.99,04/27/19 08:15,"463 Hill St, San Francisco, CA 94016" -180760,AAA Batteries (4-pack),2,2.99,04/28/19 04:49,"752 Madison St, Seattle, WA 98101" -180761,USB-C Charging Cable,1,11.95,04/15/19 13:17,"560 Madison St, Seattle, WA 98101" -180762,AA Batteries (4-pack),1,3.84,04/04/19 16:24,"742 Washington St, San Francisco, CA 94016" -180763,AAA Batteries (4-pack),2,2.99,04/13/19 16:51,"317 South St, Seattle, WA 98101" -180764,34in Ultrawide Monitor,1,379.99,04/13/19 11:27,"423 Wilson St, Atlanta, GA 30301" -180765,USB-C Charging Cable,1,11.95,04/17/19 12:23,"514 Adams St, New York City, NY 10001" -180766,AA Batteries (4-pack),1,3.84,04/27/19 20:56,"943 13th St, Los Angeles, CA 90001" -180767,iPhone,1,700,04/12/19 18:05,"456 North St, San Francisco, CA 94016" -180768,Wired Headphones,1,11.99,04/14/19 22:50,"917 Jefferson St, New York City, NY 10001" -180769,AA Batteries (4-pack),3,3.84,04/04/19 20:49,"74 1st St, New York City, NY 10001" -180770,AA Batteries (4-pack),1,3.84,04/18/19 19:17,"970 Sunset St, New York City, NY 10001" -180771,AA Batteries (4-pack),1,3.84,04/16/19 21:28,"728 Meadow St, Los Angeles, CA 90001" -180772,Wired Headphones,1,11.99,04/18/19 08:56,"418 Maple St, Portland, OR 97035" -180773,27in FHD Monitor,1,149.99,04/12/19 16:42,"77 Pine St, Dallas, TX 75001" -180774,Bose SoundSport Headphones,1,99.99,04/13/19 14:22,"210 13th St, San Francisco, CA 94016" -180775,AAA Batteries (4-pack),1,2.99,04/18/19 12:53,"423 8th St, Seattle, WA 98101" -180776,AA Batteries (4-pack),1,3.84,04/23/19 19:37,"767 Spruce St, San Francisco, CA 94016" -180777,Google Phone,1,600,04/13/19 13:39,"223 Main St, Los Angeles, CA 90001" -180778,AAA Batteries (4-pack),1,2.99,04/09/19 21:19,"66 Maple St, Portland, OR 97035" -180779,AA Batteries (4-pack),1,3.84,04/25/19 14:14,"798 13th St, Dallas, TX 75001" -180780,Lightning Charging Cable,1,14.95,04/23/19 18:17,"127 Cherry St, Dallas, TX 75001" -180781,USB-C Charging Cable,1,11.95,04/01/19 18:40,"17 Pine St, Portland, OR 97035" -180782,AAA Batteries (4-pack),2,2.99,04/08/19 01:05,"891 Hill St, Dallas, TX 75001" -180783,27in 4K Gaming Monitor,1,389.99,04/03/19 13:03,"984 1st St, Seattle, WA 98101" -180784,Apple Airpods Headphones,1,150,04/25/19 12:17,"322 Center St, San Francisco, CA 94016" -180785,AAA Batteries (4-pack),1,2.99,04/04/19 10:36,"962 Cedar St, New York City, NY 10001" -180786,USB-C Charging Cable,1,11.95,04/22/19 20:42,"988 Cedar St, San Francisco, CA 94016" -180787,USB-C Charging Cable,1,11.95,04/17/19 17:30,"586 9th St, Los Angeles, CA 90001" -180788,iPhone,1,700,04/15/19 16:53,"418 2nd St, New York City, NY 10001" -180789,27in 4K Gaming Monitor,1,389.99,04/04/19 14:39,"366 West St, Boston, MA 02215" -180790,AA Batteries (4-pack),4,3.84,04/03/19 17:01,"626 7th St, Boston, MA 02215" -180791,Apple Airpods Headphones,1,150,04/21/19 09:40,"470 Maple St, Seattle, WA 98101" -180792,Bose SoundSport Headphones,1,99.99,04/22/19 08:24,"623 West St, Portland, ME 04101" -180793,Lightning Charging Cable,1,14.95,04/24/19 15:45,"749 River St, Atlanta, GA 30301" -180794,AAA Batteries (4-pack),1,2.99,04/30/19 08:01,"126 Highland St, Seattle, WA 98101" -180795,Bose SoundSport Headphones,1,99.99,04/11/19 08:26,"806 5th St, Portland, OR 97035" -180796,AAA Batteries (4-pack),2,2.99,04/28/19 10:48,"63 13th St, Los Angeles, CA 90001" -180797,AAA Batteries (4-pack),1,2.99,04/17/19 12:02,"945 11th St, New York City, NY 10001" -180797,27in 4K Gaming Monitor,1,389.99,04/17/19 12:02,"945 11th St, New York City, NY 10001" -180798,USB-C Charging Cable,1,11.95,04/03/19 12:10,"683 2nd St, San Francisco, CA 94016" -180799,34in Ultrawide Monitor,1,379.99,04/17/19 20:59,"496 Elm St, San Francisco, CA 94016" -180800,Wired Headphones,1,11.99,04/15/19 20:11,"56 11th St, Atlanta, GA 30301" -180801,Lightning Charging Cable,1,14.95,04/25/19 08:51,"434 Church St, Boston, MA 02215" -180802,Flatscreen TV,1,300,04/04/19 12:26,"776 Elm St, New York City, NY 10001" -180803,USB-C Charging Cable,2,11.95,04/12/19 20:51,"868 6th St, Seattle, WA 98101" -180804,27in 4K Gaming Monitor,1,389.99,04/23/19 09:00,"785 Elm St, Seattle, WA 98101" -180805,Lightning Charging Cable,2,14.95,04/28/19 22:12,"757 Willow St, Portland, OR 97035" -180806,Wired Headphones,1,11.99,04/12/19 11:58,"511 8th St, Boston, MA 02215" -180807,20in Monitor,1,109.99,04/21/19 12:22,"918 14th St, Boston, MA 02215" -180808,USB-C Charging Cable,1,11.95,04/11/19 10:00,"79 Madison St, San Francisco, CA 94016" -180809,ThinkPad Laptop,1,999.99,04/20/19 22:43,"553 Cherry St, New York City, NY 10001" -180810,AAA Batteries (4-pack),1,2.99,04/21/19 11:02,"30 2nd St, New York City, NY 10001" -180811,iPhone,1,700,04/25/19 12:32,"178 8th St, Los Angeles, CA 90001" -180812,Lightning Charging Cable,1,14.95,04/16/19 16:18,"47 Church St, Boston, MA 02215" -180813,Wired Headphones,1,11.99,04/16/19 11:06,"123 Sunset St, Seattle, WA 98101" -180814,Vareebadd Phone,1,400,04/18/19 15:35,"684 Lakeview St, New York City, NY 10001" -180814,USB-C Charging Cable,1,11.95,04/18/19 15:35,"684 Lakeview St, New York City, NY 10001" -180815,USB-C Charging Cable,1,11.95,04/17/19 22:57,"570 2nd St, New York City, NY 10001" -180816,Wired Headphones,1,11.99,04/12/19 01:05,"289 Jefferson St, Los Angeles, CA 90001" -180817,Lightning Charging Cable,1,14.95,04/13/19 18:33,"563 13th St, Los Angeles, CA 90001" -180817,Lightning Charging Cable,1,14.95,04/13/19 18:33,"563 13th St, Los Angeles, CA 90001" -180818,Vareebadd Phone,1,400,04/01/19 11:05,"495 Main St, Dallas, TX 75001" -180819,27in 4K Gaming Monitor,1,389.99,04/18/19 11:26,"438 10th St, Portland, OR 97035" -180820,AA Batteries (4-pack),1,3.84,04/21/19 00:24,"14 Pine St, Seattle, WA 98101" -180821,34in Ultrawide Monitor,1,379.99,04/28/19 17:26,"564 2nd St, Boston, MA 02215" -180822,Wired Headphones,1,11.99,04/19/19 15:12,"584 Highland St, Dallas, TX 75001" -180823,Lightning Charging Cable,1,14.95,04/10/19 09:41,"60 Adams St, Austin, TX 73301" -180824,Apple Airpods Headphones,1,150,04/22/19 05:18,"94 West St, Atlanta, GA 30301" -180825,Wired Headphones,1,11.99,04/17/19 13:28,"491 Hill St, New York City, NY 10001" -180826,Lightning Charging Cable,1,14.95,04/06/19 13:05,"188 Maple St, Boston, MA 02215" -180827,Macbook Pro Laptop,1,1700,04/21/19 09:37,"398 Lincoln St, Los Angeles, CA 90001" -180828,AA Batteries (4-pack),2,3.84,04/24/19 09:52,"485 Madison St, Los Angeles, CA 90001" -180829,AAA Batteries (4-pack),1,2.99,04/17/19 14:11,"928 Dogwood St, San Francisco, CA 94016" -180830,Apple Airpods Headphones,1,150,04/13/19 12:04,"459 5th St, Seattle, WA 98101" -180830,AAA Batteries (4-pack),1,2.99,04/13/19 12:04,"459 5th St, Seattle, WA 98101" -180831,AAA Batteries (4-pack),3,2.99,04/24/19 19:27,"88 14th St, Los Angeles, CA 90001" -180832,Apple Airpods Headphones,1,150,04/26/19 13:20,"39 Ridge St, Los Angeles, CA 90001" -180833,USB-C Charging Cable,1,11.95,04/10/19 23:48,"476 Spruce St, Los Angeles, CA 90001" -180834,Macbook Pro Laptop,1,1700,04/29/19 08:08,"12 Washington St, New York City, NY 10001" -180835,Apple Airpods Headphones,1,150,04/18/19 12:22,"164 Chestnut St, Dallas, TX 75001" -180836,USB-C Charging Cable,1,11.95,04/24/19 14:44,"310 Johnson St, New York City, NY 10001" -180837,AA Batteries (4-pack),1,3.84,04/21/19 14:59,"575 9th St, Boston, MA 02215" -180838,AA Batteries (4-pack),1,3.84,04/14/19 17:24,"43 Chestnut St, Seattle, WA 98101" -180839,Bose SoundSport Headphones,1,99.99,04/10/19 16:17,"215 Lakeview St, New York City, NY 10001" -180840,Lightning Charging Cable,1,14.95,04/20/19 20:05,"349 Park St, Los Angeles, CA 90001" -180841,Wired Headphones,1,11.99,04/19/19 08:46,"812 Main St, Seattle, WA 98101" -180842,Lightning Charging Cable,2,14.95,04/12/19 08:25,"749 Lakeview St, Dallas, TX 75001" -180843,AA Batteries (4-pack),3,3.84,04/01/19 13:51,"138 5th St, Los Angeles, CA 90001" -180844,AA Batteries (4-pack),2,3.84,04/20/19 19:59,"340 Spruce St, Boston, MA 02215" -180845,Wired Headphones,3,11.99,04/14/19 14:13,"353 Meadow St, Dallas, TX 75001" -180846,ThinkPad Laptop,1,999.99,04/12/19 17:40,"297 9th St, Atlanta, GA 30301" -180847,AAA Batteries (4-pack),1,2.99,04/11/19 11:27,"358 7th St, Los Angeles, CA 90001" -180848,AA Batteries (4-pack),2,3.84,04/10/19 13:10,"290 9th St, Boston, MA 02215" -180849,Lightning Charging Cable,1,14.95,04/01/19 20:01,"629 Dogwood St, Dallas, TX 75001" -180850,Lightning Charging Cable,1,14.95,04/15/19 08:19,"194 Elm St, Portland, OR 97035" -180851,Flatscreen TV,1,300,04/28/19 20:30,"40 13th St, Austin, TX 73301" -180852,AA Batteries (4-pack),1,3.84,04/02/19 09:47,"328 Center St, Boston, MA 02215" -180853,34in Ultrawide Monitor,1,379.99,04/02/19 00:41,"433 Jefferson St, Boston, MA 02215" -180854,Bose SoundSport Headphones,1,99.99,04/05/19 10:17,"487 Elm St, Boston, MA 02215" -180855,AA Batteries (4-pack),1,3.84,04/13/19 14:21,"166 Elm St, Los Angeles, CA 90001" -180856,AA Batteries (4-pack),1,3.84,04/23/19 07:57,"138 6th St, Boston, MA 02215" -180857,Bose SoundSport Headphones,1,99.99,04/22/19 13:07,"392 Jackson St, Dallas, TX 75001" -180857,AA Batteries (4-pack),1,3.84,04/22/19 13:07,"392 Jackson St, Dallas, TX 75001" -180858,USB-C Charging Cable,2,11.95,04/18/19 19:21,"398 Lakeview St, New York City, NY 10001" -180859,Wired Headphones,1,11.99,04/30/19 22:04,"800 2nd St, Los Angeles, CA 90001" -180860,34in Ultrawide Monitor,1,379.99,04/11/19 01:06,"975 Wilson St, Austin, TX 73301" -180861,AA Batteries (4-pack),1,3.84,04/21/19 21:48,"874 Lincoln St, San Francisco, CA 94016" -180862,AA Batteries (4-pack),1,3.84,04/01/19 13:06,"115 7th St, San Francisco, CA 94016" -180863,AA Batteries (4-pack),2,3.84,04/18/19 11:47,"357 Adams St, Boston, MA 02215" -180864,Wired Headphones,1,11.99,04/08/19 09:01,"234 Wilson St, San Francisco, CA 94016" -180865,iPhone,1,700,04/12/19 10:06,"520 Lincoln St, San Francisco, CA 94016" -180866,Google Phone,1,600,04/27/19 16:33,"472 Lakeview St, Boston, MA 02215" -180867,Wired Headphones,1,11.99,04/02/19 12:43,"72 Lincoln St, Portland, OR 97035" -180868,27in 4K Gaming Monitor,1,389.99,04/19/19 13:19,"908 River St, New York City, NY 10001" -180869,Lightning Charging Cable,1,14.95,04/17/19 08:13,"859 10th St, San Francisco, CA 94016" -180870,Apple Airpods Headphones,1,150,04/07/19 01:41,"134 Wilson St, Seattle, WA 98101" -180871,Wired Headphones,1,11.99,04/23/19 13:18,"74 Church St, Austin, TX 73301" -180872,USB-C Charging Cable,1,11.95,04/30/19 20:22,"255 Spruce St, Los Angeles, CA 90001" -180873,USB-C Charging Cable,2,11.95,04/06/19 11:05,"151 8th St, San Francisco, CA 94016" -180874,Google Phone,1,600,04/01/19 19:36,"191 Forest St, Boston, MA 02215" -180874,Bose SoundSport Headphones,1,99.99,04/01/19 19:36,"191 Forest St, Boston, MA 02215" -180875,Bose SoundSport Headphones,1,99.99,04/05/19 20:05,"1 14th St, New York City, NY 10001" -180876,USB-C Charging Cable,1,11.95,04/07/19 16:07,"162 2nd St, Dallas, TX 75001" -180877,AA Batteries (4-pack),2,3.84,04/05/19 16:52,"186 Maple St, Boston, MA 02215" -180878,34in Ultrawide Monitor,1,379.99,04/27/19 01:44,"334 Sunset St, San Francisco, CA 94016" -180879,AA Batteries (4-pack),1,3.84,04/07/19 13:42,"812 North St, Los Angeles, CA 90001" -180880,Apple Airpods Headphones,1,150,04/06/19 08:02,"346 10th St, Boston, MA 02215" -180881,AA Batteries (4-pack),1,3.84,04/04/19 05:51,"803 Meadow St, Los Angeles, CA 90001" -180882,USB-C Charging Cable,1,11.95,04/30/19 09:59,"305 9th St, Atlanta, GA 30301" -180883,LG Dryer,1,600.0,04/02/19 16:07,"185 1st St, Portland, OR 97035" -180884,iPhone,1,700,04/14/19 23:36,"1 Hickory St, Atlanta, GA 30301" -180884,Lightning Charging Cable,1,14.95,04/14/19 23:36,"1 Hickory St, Atlanta, GA 30301" -180884,Wired Headphones,1,11.99,04/14/19 23:36,"1 Hickory St, Atlanta, GA 30301" -180885,Google Phone,1,600,04/13/19 18:45,"580 Hill St, Los Angeles, CA 90001" -180886,Apple Airpods Headphones,1,150,04/25/19 18:11,"65 Main St, Seattle, WA 98101" -180887,Google Phone,1,600,04/28/19 19:08,"248 Pine St, Austin, TX 73301" -180888,Bose SoundSport Headphones,1,99.99,04/21/19 14:49,"962 6th St, Seattle, WA 98101" -180889,27in FHD Monitor,1,149.99,04/15/19 14:29,"71 Lincoln St, Boston, MA 02215" -180890,USB-C Charging Cable,2,11.95,04/30/19 13:47,"990 Main St, Portland, OR 97035" -180891,27in 4K Gaming Monitor,1,389.99,04/18/19 12:32,"911 Elm St, New York City, NY 10001" -180892,AA Batteries (4-pack),1,3.84,04/19/19 14:33,"696 12th St, Dallas, TX 75001" -180893,AAA Batteries (4-pack),1,2.99,04/17/19 18:29,"783 Lincoln St, New York City, NY 10001" -180894,27in 4K Gaming Monitor,1,389.99,04/29/19 17:11,"817 South St, San Francisco, CA 94016" -180895,Apple Airpods Headphones,1,150,04/07/19 18:39,"707 Center St, New York City, NY 10001" -180896,Macbook Pro Laptop,1,1700,04/03/19 22:58,"775 Cherry St, Boston, MA 02215" -180897,Bose SoundSport Headphones,1,99.99,04/28/19 18:41,"700 14th St, Seattle, WA 98101" -180898,AAA Batteries (4-pack),1,2.99,04/06/19 19:06,"474 Lincoln St, Los Angeles, CA 90001" -180899,Lightning Charging Cable,1,14.95,04/22/19 00:26,"449 Main St, New York City, NY 10001" -180900,AA Batteries (4-pack),1,3.84,04/06/19 12:20,"606 Ridge St, San Francisco, CA 94016" -180901,Wired Headphones,1,11.99,04/17/19 12:43,"386 Center St, Atlanta, GA 30301" -180902,AA Batteries (4-pack),1,3.84,04/06/19 18:37,"405 Dogwood St, Boston, MA 02215" -180903,AAA Batteries (4-pack),3,2.99,04/13/19 21:26,"764 Lincoln St, Boston, MA 02215" -180904,AAA Batteries (4-pack),2,2.99,04/19/19 21:58,"6 13th St, New York City, NY 10001" -180905,Apple Airpods Headphones,1,150,04/25/19 15:46,"652 Jackson St, Portland, OR 97035" -180906,ThinkPad Laptop,1,999.99,04/03/19 23:59,"592 Ridge St, Los Angeles, CA 90001" -180907,iPhone,1,700,04/30/19 10:49,"138 8th St, Seattle, WA 98101" -180907,Wired Headphones,1,11.99,04/30/19 10:49,"138 8th St, Seattle, WA 98101" -180908,Apple Airpods Headphones,1,150,04/10/19 13:35,"41 Walnut St, New York City, NY 10001" -180909,ThinkPad Laptop,1,999.99,04/07/19 19:07,"846 8th St, Dallas, TX 75001" -180910,Apple Airpods Headphones,1,150,04/21/19 18:33,"762 9th St, Atlanta, GA 30301" -180911,iPhone,1,700,04/17/19 14:37,"821 Main St, Austin, TX 73301" -180911,Wired Headphones,1,11.99,04/17/19 14:37,"821 Main St, Austin, TX 73301" -180912,AA Batteries (4-pack),2,3.84,04/23/19 11:03,"102 Dogwood St, Los Angeles, CA 90001" -180913,Lightning Charging Cable,1,14.95,04/25/19 14:26,"924 South St, Los Angeles, CA 90001" -180914,Lightning Charging Cable,1,14.95,04/23/19 07:14,"667 Jefferson St, Portland, OR 97035" -180915,iPhone,1,700,04/06/19 01:11,"157 Center St, Boston, MA 02215" -180915,Lightning Charging Cable,1,14.95,04/06/19 01:11,"157 Center St, Boston, MA 02215" -180916,27in FHD Monitor,1,149.99,04/04/19 14:54,"52 Adams St, Atlanta, GA 30301" -180917,20in Monitor,1,109.99,04/05/19 09:52,"111 14th St, Boston, MA 02215" -180918,Macbook Pro Laptop,1,1700,04/24/19 23:05,"960 Wilson St, Dallas, TX 75001" -180919,USB-C Charging Cable,1,11.95,04/27/19 09:57,"425 8th St, Los Angeles, CA 90001" -180920,iPhone,1,700,04/30/19 09:17,"583 Willow St, San Francisco, CA 94016" -,,,,, -180921,Macbook Pro Laptop,1,1700,04/26/19 16:29,"318 River St, Seattle, WA 98101" -180922,27in 4K Gaming Monitor,1,389.99,04/24/19 10:38,"887 Meadow St, Seattle, WA 98101" -180923,27in FHD Monitor,1,149.99,04/19/19 13:46,"856 Adams St, Boston, MA 02215" -180924,AAA Batteries (4-pack),1,2.99,04/27/19 21:14,"396 1st St, Atlanta, GA 30301" -180925,Wired Headphones,1,11.99,04/18/19 20:33,"260 Chestnut St, Atlanta, GA 30301" -180926,34in Ultrawide Monitor,1,379.99,04/20/19 22:01,"887 Highland St, Dallas, TX 75001" -180927,Apple Airpods Headphones,1,150,04/04/19 21:34,"279 Highland St, Atlanta, GA 30301" -180928,AAA Batteries (4-pack),1,2.99,04/25/19 12:08,"97 Adams St, San Francisco, CA 94016" -180929,AA Batteries (4-pack),2,3.84,04/04/19 09:43,"285 2nd St, Los Angeles, CA 90001" -180930,Lightning Charging Cable,1,14.95,04/22/19 20:26,"826 Lakeview St, Atlanta, GA 30301" -180931,ThinkPad Laptop,1,999.99,04/16/19 12:34,"30 Dogwood St, Boston, MA 02215" -180932,Apple Airpods Headphones,1,150,04/22/19 20:43,"687 Ridge St, Boston, MA 02215" -180933,USB-C Charging Cable,1,11.95,04/25/19 08:12,"161 7th St, Atlanta, GA 30301" -180934,Bose SoundSport Headphones,1,99.99,04/08/19 17:00,"436 4th St, Dallas, TX 75001" -180935,Flatscreen TV,1,300,04/15/19 23:58,"972 Hickory St, Portland, OR 97035" -180936,USB-C Charging Cable,1,11.95,04/15/19 00:07,"271 Washington St, New York City, NY 10001" -180937,AAA Batteries (4-pack),1,2.99,04/15/19 19:31,"642 12th St, Boston, MA 02215" -180938,Lightning Charging Cable,1,14.95,04/30/19 14:48,"940 Park St, San Francisco, CA 94016" -180939,AA Batteries (4-pack),1,3.84,04/28/19 17:23,"877 5th St, Los Angeles, CA 90001" -180940,Apple Airpods Headphones,1,150,04/05/19 23:18,"506 Jefferson St, San Francisco, CA 94016" -180941,AAA Batteries (4-pack),4,2.99,04/21/19 19:39,"725 2nd St, San Francisco, CA 94016" -180942,AAA Batteries (4-pack),1,2.99,04/09/19 20:10,"962 6th St, Boston, MA 02215" -180943,USB-C Charging Cable,1,11.95,04/28/19 15:56,"367 Highland St, New York City, NY 10001" -180944,AAA Batteries (4-pack),1,2.99,04/04/19 08:11,"552 Hill St, Boston, MA 02215" -180945,Wired Headphones,1,11.99,04/16/19 10:27,"661 Dogwood St, New York City, NY 10001" -180946,Flatscreen TV,1,300,04/30/19 10:42,"41 2nd St, Boston, MA 02215" -180947,27in FHD Monitor,1,149.99,04/12/19 15:40,"950 Cherry St, San Francisco, CA 94016" -180948,Apple Airpods Headphones,1,150,04/08/19 20:21,"300 South St, Seattle, WA 98101" -180949,Macbook Pro Laptop,1,1700,04/01/19 14:04,"208 12th St, Portland, OR 97035" -180950,27in FHD Monitor,1,149.99,04/21/19 12:10,"456 Cherry St, Los Angeles, CA 90001" -180951,Lightning Charging Cable,2,14.95,04/16/19 18:13,"641 Cedar St, Atlanta, GA 30301" -180952,USB-C Charging Cable,1,11.95,04/13/19 18:18,"960 Jefferson St, San Francisco, CA 94016" -180953,20in Monitor,1,109.99,04/18/19 12:43,"566 5th St, Dallas, TX 75001" -180954,USB-C Charging Cable,1,11.95,04/04/19 11:46,"760 River St, Los Angeles, CA 90001" -180955,27in FHD Monitor,1,149.99,04/07/19 14:24,"791 Park St, New York City, NY 10001" -180956,Lightning Charging Cable,1,14.95,04/09/19 01:20,"189 4th St, Los Angeles, CA 90001" -180957,34in Ultrawide Monitor,1,379.99,04/21/19 18:14,"830 6th St, Los Angeles, CA 90001" -180958,27in 4K Gaming Monitor,1,389.99,04/24/19 23:16,"897 13th St, Dallas, TX 75001" -180959,USB-C Charging Cable,1,11.95,04/17/19 17:18,"477 Meadow St, Portland, OR 97035" -180960,Wired Headphones,1,11.99,04/07/19 14:03,"426 Forest St, Los Angeles, CA 90001" -180961,Lightning Charging Cable,2,14.95,04/23/19 13:08,"513 7th St, Austin, TX 73301" -180962,AAA Batteries (4-pack),1,2.99,04/13/19 13:53,"302 11th St, Portland, OR 97035" -180963,20in Monitor,1,109.99,04/26/19 20:04,"104 Cedar St, San Francisco, CA 94016" -180964,Macbook Pro Laptop,1,1700,04/27/19 09:56,"937 14th St, San Francisco, CA 94016" -180965,USB-C Charging Cable,1,11.95,04/08/19 22:38,"215 Lincoln St, Boston, MA 02215" -180966,USB-C Charging Cable,2,11.95,04/27/19 21:01,"367 Ridge St, Los Angeles, CA 90001" -180967,Apple Airpods Headphones,1,150,04/16/19 22:47,"852 Wilson St, New York City, NY 10001" -180968,Wired Headphones,1,11.99,04/21/19 18:59,"797 Church St, Boston, MA 02215" -180969,20in Monitor,1,109.99,04/02/19 06:53,"399 Center St, San Francisco, CA 94016" -180970,AAA Batteries (4-pack),1,2.99,04/24/19 15:28,"88 12th St, San Francisco, CA 94016" -180971,27in FHD Monitor,1,149.99,04/04/19 19:17,"491 Park St, Atlanta, GA 30301" -180972,Vareebadd Phone,1,400,04/29/19 17:54,"795 River St, Austin, TX 73301" -180973,Wired Headphones,1,11.99,04/21/19 16:07,"997 Willow St, Boston, MA 02215" -180974,34in Ultrawide Monitor,1,379.99,04/02/19 23:25,"682 Chestnut St, Atlanta, GA 30301" -180975,Bose SoundSport Headphones,1,99.99,04/12/19 08:20,"278 Pine St, San Francisco, CA 94016" -180976,Macbook Pro Laptop,1,1700,04/02/19 06:21,"896 Sunset St, Portland, OR 97035" -180977,27in 4K Gaming Monitor,1,389.99,04/16/19 18:34,"606 Chestnut St, Boston, MA 02215" -180978,27in FHD Monitor,1,149.99,04/04/19 18:35,"982 7th St, Los Angeles, CA 90001" -180979,Lightning Charging Cable,1,14.95,04/19/19 23:39,"517 8th St, Los Angeles, CA 90001" -180979,LG Dryer,1,600.0,04/19/19 23:39,"517 8th St, Los Angeles, CA 90001" -180980,27in 4K Gaming Monitor,1,389.99,04/25/19 12:34,"935 4th St, Seattle, WA 98101" -180981,AA Batteries (4-pack),1,3.84,04/06/19 15:05,"898 7th St, Atlanta, GA 30301" -180982,Wired Headphones,1,11.99,04/06/19 09:55,"271 9th St, San Francisco, CA 94016" -180983,20in Monitor,1,109.99,04/24/19 09:09,"758 Park St, New York City, NY 10001" -180984,27in FHD Monitor,1,149.99,04/09/19 15:27,"72 Willow St, San Francisco, CA 94016" -180985,AA Batteries (4-pack),1,3.84,04/13/19 16:29,"530 Wilson St, Atlanta, GA 30301" -180986,USB-C Charging Cable,1,11.95,04/12/19 10:53,"146 Cherry St, Boston, MA 02215" -180987,USB-C Charging Cable,1,11.95,04/14/19 19:22,"64 Forest St, San Francisco, CA 94016" -180988,Wired Headphones,1,11.99,04/24/19 11:27,"93 Adams St, Atlanta, GA 30301" -180989,Apple Airpods Headphones,1,150,05/01/19 00:54,"103 Church St, San Francisco, CA 94016" -180990,USB-C Charging Cable,1,11.95,04/17/19 07:56,"534 Park St, Atlanta, GA 30301" -180991,USB-C Charging Cable,2,11.95,04/05/19 21:06,"484 Lincoln St, Los Angeles, CA 90001" -180992,Wired Headphones,1,11.99,04/15/19 20:53,"811 Johnson St, Atlanta, GA 30301" -180993,AA Batteries (4-pack),1,3.84,04/23/19 08:51,"8 6th St, San Francisco, CA 94016" -180994,27in FHD Monitor,1,149.99,04/28/19 08:17,"49 9th St, San Francisco, CA 94016" -180995,AA Batteries (4-pack),1,3.84,04/17/19 13:45,"824 West St, Los Angeles, CA 90001" -180996,Apple Airpods Headphones,1,150,04/27/19 12:40,"273 7th St, San Francisco, CA 94016" -180997,Apple Airpods Headphones,1,150,04/04/19 10:59,"66 14th St, Austin, TX 73301" -180998,Macbook Pro Laptop,1,1700,04/02/19 13:49,"96 Willow St, Los Angeles, CA 90001" -180999,Bose SoundSport Headphones,1,99.99,04/25/19 11:41,"810 Adams St, Portland, OR 97035" -181000,Flatscreen TV,1,300,04/18/19 08:01,"845 Walnut St, Los Angeles, CA 90001" -181001,AA Batteries (4-pack),2,3.84,04/07/19 14:32,"234 Sunset St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -181002,Lightning Charging Cable,1,14.95,04/03/19 02:47,"487 Park St, San Francisco, CA 94016" -181003,Lightning Charging Cable,1,14.95,04/10/19 19:27,"96 Highland St, Atlanta, GA 30301" -181004,iPhone,1,700,04/13/19 05:29,"866 5th St, Los Angeles, CA 90001" -181005,USB-C Charging Cable,2,11.95,04/23/19 11:58,"316 Wilson St, Los Angeles, CA 90001" -181006,AA Batteries (4-pack),1,3.84,04/30/19 13:10,"768 Church St, San Francisco, CA 94016" -181007,Apple Airpods Headphones,1,150,04/20/19 06:50,"669 8th St, Los Angeles, CA 90001" -181008,27in FHD Monitor,1,149.99,04/08/19 09:36,"759 River St, Boston, MA 02215" -181009,Apple Airpods Headphones,1,150,04/25/19 19:41,"881 River St, Seattle, WA 98101" -181009,Bose SoundSport Headphones,1,99.99,04/25/19 19:41,"881 River St, Seattle, WA 98101" -181010,Lightning Charging Cable,1,14.95,04/05/19 22:22,"706 West St, Atlanta, GA 30301" -181011,AAA Batteries (4-pack),1,2.99,04/01/19 19:11,"684 Ridge St, New York City, NY 10001" -181012,Flatscreen TV,1,300,04/20/19 23:02,"692 Chestnut St, San Francisco, CA 94016" -181013,USB-C Charging Cable,1,11.95,04/20/19 13:21,"844 Hill St, Los Angeles, CA 90001" -181014,Lightning Charging Cable,1,14.95,04/03/19 16:46,"685 7th St, Los Angeles, CA 90001" -181015,Wired Headphones,2,11.99,04/27/19 09:16,"153 Sunset St, New York City, NY 10001" -181016,34in Ultrawide Monitor,1,379.99,04/01/19 07:42,"26 Cedar St, Atlanta, GA 30301" -181017,Bose SoundSport Headphones,1,99.99,04/01/19 13:14,"697 Center St, Dallas, TX 75001" -181018,AAA Batteries (4-pack),2,2.99,04/01/19 23:41,"492 Willow St, Seattle, WA 98101" -181019,USB-C Charging Cable,1,11.95,04/22/19 21:45,"772 Church St, San Francisco, CA 94016" -181020,LG Dryer,1,600.0,04/06/19 20:49,"460 1st St, San Francisco, CA 94016" -181021,USB-C Charging Cable,1,11.95,04/11/19 17:29,"782 Sunset St, San Francisco, CA 94016" -181022,Google Phone,1,600,04/06/19 19:22,"66 10th St, San Francisco, CA 94016" -181022,USB-C Charging Cable,1,11.95,04/06/19 19:22,"66 10th St, San Francisco, CA 94016" -181023,Flatscreen TV,1,300,04/15/19 10:00,"601 Hill St, Los Angeles, CA 90001" -181024,34in Ultrawide Monitor,1,379.99,04/14/19 22:36,"37 Hill St, Seattle, WA 98101" -181025,Macbook Pro Laptop,1,1700,04/30/19 09:22,"881 1st St, Boston, MA 02215" -181026,USB-C Charging Cable,1,11.95,04/28/19 08:46,"452 14th St, San Francisco, CA 94016" -181027,iPhone,1,700,04/02/19 19:08,"112 Lake St, New York City, NY 10001" -181027,Lightning Charging Cable,1,14.95,04/02/19 19:08,"112 Lake St, New York City, NY 10001" -181028,AA Batteries (4-pack),2,3.84,04/04/19 16:54,"586 Sunset St, Dallas, TX 75001" -181029,Bose SoundSport Headphones,1,99.99,05/01/19 01:27,"348 North St, San Francisco, CA 94016" -181030,34in Ultrawide Monitor,1,379.99,04/10/19 21:48,"397 Main St, Seattle, WA 98101" -181031,27in 4K Gaming Monitor,1,389.99,04/26/19 10:35,"258 13th St, Seattle, WA 98101" -181032,Bose SoundSport Headphones,1,99.99,04/21/19 13:12,"36 Walnut St, New York City, NY 10001" -181033,Lightning Charging Cable,1,14.95,04/09/19 15:48,"724 Main St, Boston, MA 02215" -181034,Apple Airpods Headphones,1,150,04/10/19 20:23,"233 West St, Los Angeles, CA 90001" -181035,USB-C Charging Cable,1,11.95,04/25/19 09:40,"22 Lakeview St, New York City, NY 10001" -181036,USB-C Charging Cable,2,11.95,04/06/19 08:53,"302 Dogwood St, San Francisco, CA 94016" -181037,Wired Headphones,1,11.99,04/07/19 16:57,"76 Park St, San Francisco, CA 94016" -181038,AAA Batteries (4-pack),1,2.99,04/14/19 01:10,"18 Dogwood St, New York City, NY 10001" -181039,27in FHD Monitor,1,149.99,04/30/19 23:09,"914 12th St, Boston, MA 02215" -181040,AA Batteries (4-pack),1,3.84,04/24/19 09:29,"725 Cherry St, San Francisco, CA 94016" -181041,AA Batteries (4-pack),1,3.84,04/12/19 21:41,"373 Cedar St, Seattle, WA 98101" -181042,20in Monitor,1,109.99,04/17/19 15:50,"755 Willow St, San Francisco, CA 94016" -181043,AAA Batteries (4-pack),1,2.99,04/28/19 14:04,"501 Forest St, Los Angeles, CA 90001" -181044,27in FHD Monitor,1,149.99,04/14/19 11:01,"114 Cherry St, San Francisco, CA 94016" -181045,Apple Airpods Headphones,1,150,04/25/19 19:11,"303 Lake St, San Francisco, CA 94016" -181046,27in FHD Monitor,1,149.99,04/24/19 10:26,"867 13th St, New York City, NY 10001" -181047,27in 4K Gaming Monitor,1,389.99,04/06/19 14:41,"293 11th St, Boston, MA 02215" -181048,Macbook Pro Laptop,1,1700,04/11/19 13:47,"940 11th St, Dallas, TX 75001" -181049,Apple Airpods Headphones,1,150,04/14/19 16:41,"953 Forest St, Dallas, TX 75001" -181050,USB-C Charging Cable,1,11.95,04/23/19 19:57,"854 North St, Dallas, TX 75001" -181051,AAA Batteries (4-pack),1,2.99,04/18/19 13:18,"26 6th St, Austin, TX 73301" -181052,Bose SoundSport Headphones,1,99.99,04/10/19 21:42,"153 Ridge St, San Francisco, CA 94016" -181053,AAA Batteries (4-pack),2,2.99,04/17/19 07:52,"799 Pine St, San Francisco, CA 94016" -181054,27in 4K Gaming Monitor,1,389.99,04/30/19 10:38,"551 Maple St, New York City, NY 10001" -181055,Wired Headphones,1,11.99,04/08/19 16:37,"610 13th St, Seattle, WA 98101" -181056,AA Batteries (4-pack),1,3.84,04/11/19 06:29,"35 8th St, San Francisco, CA 94016" -181057,Lightning Charging Cable,1,14.95,04/09/19 18:38,"825 Chestnut St, Los Angeles, CA 90001" -181058,Bose SoundSport Headphones,1,99.99,04/23/19 10:19,"534 Hickory St, Boston, MA 02215" -181059,AAA Batteries (4-pack),1,2.99,04/08/19 08:32,"158 Hickory St, Boston, MA 02215" -181060,27in 4K Gaming Monitor,1,389.99,04/27/19 11:55,"546 Main St, Portland, OR 97035" -181061,27in FHD Monitor,1,149.99,04/12/19 16:19,"949 Hickory St, Portland, OR 97035" -181062,Wired Headphones,1,11.99,04/28/19 07:46,"337 Maple St, Los Angeles, CA 90001" -181063,AAA Batteries (4-pack),1,2.99,04/10/19 17:01,"547 Jefferson St, Los Angeles, CA 90001" -181063,Google Phone,1,600,04/10/19 17:01,"547 Jefferson St, Los Angeles, CA 90001" -181064,AAA Batteries (4-pack),2,2.99,04/09/19 15:27,"244 8th St, Dallas, TX 75001" -181065,Apple Airpods Headphones,1,150,04/12/19 23:06,"849 4th St, Atlanta, GA 30301" -181066,Apple Airpods Headphones,1,150,04/07/19 04:04,"455 8th St, Atlanta, GA 30301" -181067,Bose SoundSport Headphones,1,99.99,04/07/19 18:55,"582 River St, Boston, MA 02215" -181068,Lightning Charging Cable,1,14.95,04/13/19 19:13,"622 Lincoln St, Seattle, WA 98101" -181069,Macbook Pro Laptop,2,1700,04/27/19 21:01,"668 Park St, San Francisco, CA 94016" -181069,34in Ultrawide Monitor,1,379.99,04/27/19 21:01,"668 Park St, San Francisco, CA 94016" -181070,20in Monitor,1,109.99,04/17/19 22:08,"689 9th St, Atlanta, GA 30301" -181071,AA Batteries (4-pack),1,3.84,04/28/19 19:53,"357 Ridge St, Los Angeles, CA 90001" -181072,Lightning Charging Cable,1,14.95,04/27/19 14:45,"730 14th St, Dallas, TX 75001" -181073,Wired Headphones,1,11.99,04/27/19 19:57,"187 Washington St, Los Angeles, CA 90001" -181074,Apple Airpods Headphones,1,150,04/10/19 07:21,"283 Lakeview St, New York City, NY 10001" -181075,AAA Batteries (4-pack),2,2.99,04/27/19 08:12,"782 7th St, Boston, MA 02215" -181076,Google Phone,1,600,04/28/19 18:56,"131 1st St, Boston, MA 02215" -181077,AAA Batteries (4-pack),2,2.99,04/23/19 17:38,"806 Main St, Austin, TX 73301" -181078,27in FHD Monitor,1,149.99,04/06/19 11:58,"897 8th St, Seattle, WA 98101" -181079,LG Dryer,1,600.0,04/19/19 17:20,"556 9th St, Austin, TX 73301" -181080,20in Monitor,1,109.99,04/02/19 15:41,"76 Cedar St, Los Angeles, CA 90001" -181081,Apple Airpods Headphones,1,150,04/17/19 10:09,"466 Lakeview St, San Francisco, CA 94016" -181082,AA Batteries (4-pack),1,3.84,04/07/19 10:13,"996 Elm St, Portland, ME 04101" -181083,AA Batteries (4-pack),1,3.84,04/26/19 19:38,"865 Adams St, Los Angeles, CA 90001" -181084,Flatscreen TV,1,300,04/07/19 21:36,"1 Walnut St, Boston, MA 02215" -181084,Flatscreen TV,1,300,04/07/19 21:36,"1 Walnut St, Boston, MA 02215" -181085,27in FHD Monitor,1,149.99,04/11/19 11:06,"586 Pine St, San Francisco, CA 94016" -181086,Flatscreen TV,1,300,04/25/19 16:20,"922 Washington St, Austin, TX 73301" -181087,Wired Headphones,1,11.99,04/02/19 09:45,"106 4th St, Los Angeles, CA 90001" -181088,AAA Batteries (4-pack),2,2.99,04/22/19 10:55,"294 Highland St, Boston, MA 02215" -181089,Flatscreen TV,1,300,04/29/19 13:02,"633 Sunset St, San Francisco, CA 94016" -181090,Apple Airpods Headphones,2,150,04/17/19 06:51,"22 West St, Los Angeles, CA 90001" -181091,34in Ultrawide Monitor,1,379.99,04/11/19 14:05,"156 13th St, Dallas, TX 75001" -181092,Lightning Charging Cable,1,14.95,04/08/19 07:42,"90 Highland St, Portland, OR 97035" -181093,AA Batteries (4-pack),1,3.84,04/14/19 03:07,"737 Chestnut St, Seattle, WA 98101" -181094,USB-C Charging Cable,1,11.95,04/17/19 09:24,"346 13th St, San Francisco, CA 94016" -181095,Macbook Pro Laptop,1,1700,04/19/19 20:42,"251 South St, Dallas, TX 75001" -181096,AA Batteries (4-pack),1,3.84,04/19/19 11:32,"483 Spruce St, San Francisco, CA 94016" -181096,USB-C Charging Cable,1,11.95,04/19/19 11:32,"483 Spruce St, San Francisco, CA 94016" -181097,Bose SoundSport Headphones,1,99.99,04/30/19 12:45,"799 Johnson St, Atlanta, GA 30301" -181098,USB-C Charging Cable,1,11.95,04/19/19 01:45,"902 6th St, Boston, MA 02215" -181099,USB-C Charging Cable,1,11.95,04/19/19 14:26,"317 Forest St, San Francisco, CA 94016" -181100,20in Monitor,1,109.99,04/05/19 04:48,"536 Main St, New York City, NY 10001" -181101,27in FHD Monitor,1,149.99,04/04/19 18:46,"188 Jefferson St, San Francisco, CA 94016" -181102,Macbook Pro Laptop,1,1700,04/28/19 19:25,"895 North St, Los Angeles, CA 90001" -181103,iPhone,1,700,04/21/19 14:53,"630 Walnut St, Los Angeles, CA 90001" -181104,34in Ultrawide Monitor,1,379.99,04/18/19 13:40,"666 Walnut St, San Francisco, CA 94016" -181105,AAA Batteries (4-pack),3,2.99,04/27/19 12:12,"962 Elm St, Atlanta, GA 30301" -181106,Apple Airpods Headphones,1,150,04/17/19 20:22,"288 9th St, Atlanta, GA 30301" -181107,AAA Batteries (4-pack),2,2.99,04/29/19 09:30,"266 Center St, Boston, MA 02215" -181108,Wired Headphones,1,11.99,04/15/19 19:13,"794 8th St, Austin, TX 73301" -181109,Wired Headphones,1,11.99,04/19/19 10:24,"194 Dogwood St, San Francisco, CA 94016" -181110,Google Phone,1,600,04/12/19 12:57,"37 Lake St, New York City, NY 10001" -181111,Lightning Charging Cable,1,14.95,04/02/19 14:39,"298 North St, New York City, NY 10001" -181112,Wired Headphones,2,11.99,04/14/19 17:18,"966 Cherry St, San Francisco, CA 94016" -181113,34in Ultrawide Monitor,1,379.99,04/25/19 15:43,"262 Wilson St, Atlanta, GA 30301" -181114,27in FHD Monitor,1,149.99,04/25/19 10:11,"586 Elm St, Los Angeles, CA 90001" -181115,iPhone,1,700,04/28/19 19:10,"834 Meadow St, Boston, MA 02215" -181116,27in FHD Monitor,1,149.99,04/22/19 12:25,"944 8th St, San Francisco, CA 94016" -181117,AAA Batteries (4-pack),3,2.99,04/20/19 00:19,"392 9th St, Dallas, TX 75001" -181118,Vareebadd Phone,1,400,04/25/19 11:07,"417 Chestnut St, Portland, OR 97035" -181119,iPhone,1,700,04/16/19 08:17,"55 South St, San Francisco, CA 94016" -181120,USB-C Charging Cable,1,11.95,04/11/19 22:27,"45 2nd St, Los Angeles, CA 90001" -181121,USB-C Charging Cable,1,11.95,04/28/19 18:01,"529 Cedar St, San Francisco, CA 94016" -181122,AAA Batteries (4-pack),3,2.99,04/15/19 18:07,"331 10th St, San Francisco, CA 94016" -181123,Lightning Charging Cable,1,14.95,04/08/19 16:18,"381 Adams St, Boston, MA 02215" -181124,AAA Batteries (4-pack),3,2.99,04/13/19 16:34,"815 North St, Los Angeles, CA 90001" -181125,20in Monitor,1,109.99,04/19/19 09:54,"743 Adams St, San Francisco, CA 94016" -181125,Bose SoundSport Headphones,1,99.99,04/19/19 09:54,"743 Adams St, San Francisco, CA 94016" -181126,Wired Headphones,1,11.99,04/17/19 09:49,"140 8th St, Los Angeles, CA 90001" -181127,Wired Headphones,1,11.99,04/18/19 00:50,"6 10th St, New York City, NY 10001" -181128,Google Phone,1,600,04/28/19 01:54,"904 Maple St, Los Angeles, CA 90001" -181129,Wired Headphones,1,11.99,04/07/19 21:16,"546 Washington St, Los Angeles, CA 90001" -181130,AA Batteries (4-pack),2,3.84,04/30/19 20:48,"917 10th St, New York City, NY 10001" -181131,AAA Batteries (4-pack),2,2.99,04/14/19 15:36,"933 Hickory St, Dallas, TX 75001" -181131,USB-C Charging Cable,1,11.95,04/14/19 15:36,"933 Hickory St, Dallas, TX 75001" -181132,AAA Batteries (4-pack),1,2.99,04/02/19 21:04,"823 9th St, Seattle, WA 98101" -181133,Wired Headphones,1,11.99,04/01/19 16:16,"574 Ridge St, New York City, NY 10001" -181134,USB-C Charging Cable,1,11.95,04/08/19 22:51,"225 5th St, Portland, OR 97035" -181135,AAA Batteries (4-pack),1,2.99,04/05/19 19:30,"377 Washington St, Los Angeles, CA 90001" -181136,AA Batteries (4-pack),1,3.84,04/03/19 19:53,"549 6th St, Los Angeles, CA 90001" -181137,AA Batteries (4-pack),1,3.84,04/20/19 10:30,"224 Center St, Boston, MA 02215" -181138,Apple Airpods Headphones,1,150,04/05/19 13:01,"810 Main St, San Francisco, CA 94016" -181139,27in 4K Gaming Monitor,1,389.99,04/10/19 19:26,"895 Jackson St, Atlanta, GA 30301" -181140,Apple Airpods Headphones,1,150,04/24/19 19:50,"165 Washington St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -181141,Flatscreen TV,1,300,04/24/19 17:06,"945 Johnson St, New York City, NY 10001" -181142,Lightning Charging Cable,1,14.95,04/04/19 13:18,"33 Walnut St, Atlanta, GA 30301" -181143,AA Batteries (4-pack),1,3.84,04/28/19 10:54,"788 Jackson St, Los Angeles, CA 90001" -181144,Wired Headphones,1,11.99,04/22/19 22:40,"484 Madison St, Seattle, WA 98101" -181145,Flatscreen TV,1,300,04/24/19 20:12,"811 Park St, Atlanta, GA 30301" -181146,34in Ultrawide Monitor,1,379.99,04/10/19 00:03,"610 4th St, Seattle, WA 98101" -181147,AA Batteries (4-pack),2,3.84,04/16/19 16:56,"739 12th St, San Francisco, CA 94016" -181148,27in FHD Monitor,1,149.99,04/24/19 18:45,"342 Lake St, Seattle, WA 98101" -181149,Wired Headphones,1,11.99,04/05/19 10:22,"679 Johnson St, San Francisco, CA 94016" -181150,Lightning Charging Cable,1,14.95,04/14/19 20:01,"203 13th St, Los Angeles, CA 90001" -181151,Wired Headphones,3,11.99,04/05/19 17:27,"126 2nd St, Portland, OR 97035" -181152,AA Batteries (4-pack),1,3.84,04/13/19 16:42,"383 2nd St, Los Angeles, CA 90001" -181153,Macbook Pro Laptop,1,1700,04/05/19 00:01,"561 Lincoln St, Portland, OR 97035" -181154,AAA Batteries (4-pack),1,2.99,04/27/19 11:45,"708 Sunset St, Boston, MA 02215" -181155,Wired Headphones,1,11.99,04/07/19 16:55,"71 2nd St, San Francisco, CA 94016" -181156,AAA Batteries (4-pack),1,2.99,04/26/19 09:48,"67 9th St, Dallas, TX 75001" -181157,20in Monitor,1,109.99,04/25/19 15:09,"606 South St, San Francisco, CA 94016" -181158,Flatscreen TV,1,300,04/06/19 13:06,"799 Highland St, Seattle, WA 98101" -181159,34in Ultrawide Monitor,1,379.99,04/05/19 14:36,"994 West St, Los Angeles, CA 90001" -181160,AA Batteries (4-pack),3,3.84,04/14/19 09:13,"836 12th St, Seattle, WA 98101" -181161,AAA Batteries (4-pack),1,2.99,04/15/19 15:11,"988 Willow St, Los Angeles, CA 90001" -181162,Bose SoundSport Headphones,1,99.99,04/29/19 15:56,"11 Center St, San Francisco, CA 94016" -181163,34in Ultrawide Monitor,1,379.99,04/27/19 12:04,"960 12th St, San Francisco, CA 94016" -181164,iPhone,1,700,04/17/19 00:15,"630 Hickory St, Austin, TX 73301" -181165,Wired Headphones,1,11.99,04/22/19 15:03,"602 North St, Dallas, TX 75001" -181166,Bose SoundSport Headphones,1,99.99,04/18/19 17:57,"945 13th St, New York City, NY 10001" -181167,AAA Batteries (4-pack),1,2.99,04/30/19 10:24,"647 Park St, Boston, MA 02215" -181168,27in FHD Monitor,1,149.99,04/12/19 09:13,"469 12th St, Atlanta, GA 30301" -181169,Apple Airpods Headphones,1,150,04/29/19 15:29,"399 Center St, Dallas, TX 75001" -181170,USB-C Charging Cable,1,11.95,04/21/19 22:07,"3 12th St, Atlanta, GA 30301" -181171,Wired Headphones,1,11.99,04/09/19 22:06,"794 Lake St, Los Angeles, CA 90001" -181172,Apple Airpods Headphones,1,150,04/09/19 15:24,"676 Walnut St, San Francisco, CA 94016" -181173,AAA Batteries (4-pack),1,2.99,04/13/19 22:34,"636 9th St, Dallas, TX 75001" -181174,Apple Airpods Headphones,1,150,04/11/19 14:53,"516 Forest St, San Francisco, CA 94016" -181175,Wired Headphones,1,11.99,04/26/19 17:02,"887 West St, Los Angeles, CA 90001" -181176,AA Batteries (4-pack),1,3.84,04/23/19 10:16,"992 8th St, Los Angeles, CA 90001" -181177,iPhone,1,700,04/01/19 13:13,"244 Maple St, Portland, OR 97035" -181177,Lightning Charging Cable,1,14.95,04/01/19 13:13,"244 Maple St, Portland, OR 97035" -181177,Vareebadd Phone,1,400,04/01/19 13:13,"244 Maple St, Portland, OR 97035" -181178,AAA Batteries (4-pack),1,2.99,04/12/19 16:27,"119 Cedar St, San Francisco, CA 94016" -181179,Macbook Pro Laptop,1,1700,04/05/19 14:10,"892 5th St, Austin, TX 73301" -181180,Vareebadd Phone,1,400,04/30/19 11:11,"473 Madison St, New York City, NY 10001" -181180,USB-C Charging Cable,1,11.95,04/30/19 11:11,"473 Madison St, New York City, NY 10001" -181181,Flatscreen TV,1,300,04/23/19 13:42,"686 Lakeview St, Austin, TX 73301" -181182,27in FHD Monitor,1,149.99,04/20/19 18:22,"505 Chestnut St, San Francisco, CA 94016" -181183,AAA Batteries (4-pack),2,2.99,04/01/19 10:39,"668 9th St, New York City, NY 10001" -181184,Apple Airpods Headphones,1,150,04/04/19 11:16,"214 6th St, Boston, MA 02215" -181185,27in 4K Gaming Monitor,1,389.99,04/27/19 18:10,"610 1st St, Seattle, WA 98101" -181186,USB-C Charging Cable,1,11.95,04/11/19 18:49,"770 1st St, Dallas, TX 75001" -181187,Bose SoundSport Headphones,1,99.99,04/26/19 08:12,"330 10th St, Austin, TX 73301" -181188,AA Batteries (4-pack),1,3.84,04/29/19 10:16,"619 8th St, Atlanta, GA 30301" -181189,27in 4K Gaming Monitor,1,389.99,04/09/19 08:17,"45 Hill St, Austin, TX 73301" -181190,Flatscreen TV,1,300,04/26/19 12:30,"367 Main St, San Francisco, CA 94016" -181191,Lightning Charging Cable,1,14.95,04/23/19 13:36,"57 Ridge St, San Francisco, CA 94016" -181192,Lightning Charging Cable,1,14.95,04/14/19 22:42,"598 Dogwood St, San Francisco, CA 94016" -181193,AAA Batteries (4-pack),3,2.99,04/25/19 19:01,"406 Washington St, Dallas, TX 75001" -181194,Wired Headphones,1,11.99,04/18/19 12:16,"250 Lake St, Los Angeles, CA 90001" -181195,USB-C Charging Cable,1,11.95,04/12/19 17:05,"108 Dogwood St, New York City, NY 10001" -181196,AA Batteries (4-pack),1,3.84,04/11/19 09:54,"243 Cherry St, New York City, NY 10001" -181197,Lightning Charging Cable,1,14.95,04/08/19 01:05,"467 South St, San Francisco, CA 94016" -181198,LG Dryer,1,600.0,04/06/19 11:37,"470 Elm St, Austin, TX 73301" -181199,Wired Headphones,1,11.99,04/10/19 16:08,"157 Cedar St, New York City, NY 10001" -181200,Lightning Charging Cable,1,14.95,04/30/19 16:40,"69 Lake St, Austin, TX 73301" -181201,USB-C Charging Cable,2,11.95,04/03/19 02:44,"631 Hill St, Austin, TX 73301" -181202,USB-C Charging Cable,1,11.95,04/06/19 22:08,"846 4th St, New York City, NY 10001" -181203,27in 4K Gaming Monitor,1,389.99,04/23/19 13:14,"308 4th St, Seattle, WA 98101" -181204,Wired Headphones,1,11.99,04/17/19 14:47,"162 13th St, New York City, NY 10001" -181205,AA Batteries (4-pack),1,3.84,04/24/19 18:55,"639 5th St, Portland, OR 97035" -181206,Macbook Pro Laptop,1,1700,04/16/19 09:07,"561 Maple St, Los Angeles, CA 90001" -181207,USB-C Charging Cable,1,11.95,04/02/19 08:14,"29 Dogwood St, San Francisco, CA 94016" -181208,USB-C Charging Cable,1,11.95,04/04/19 17:58,"85 Main St, New York City, NY 10001" -181209,Lightning Charging Cable,1,14.95,04/20/19 13:19,"241 Chestnut St, Atlanta, GA 30301" -181210,Apple Airpods Headphones,1,150,04/11/19 19:30,"635 Washington St, Seattle, WA 98101" -181211,Vareebadd Phone,1,400,04/26/19 19:34,"849 Hill St, Seattle, WA 98101" -181211,Wired Headphones,1,11.99,04/26/19 19:34,"849 Hill St, Seattle, WA 98101" -181212,USB-C Charging Cable,1,11.95,04/05/19 19:01,"705 Hickory St, San Francisco, CA 94016" -181213,AA Batteries (4-pack),4,3.84,04/28/19 14:51,"919 5th St, New York City, NY 10001" -181214,AA Batteries (4-pack),1,3.84,04/24/19 12:53,"1 5th St, New York City, NY 10001" -181215,Lightning Charging Cable,1,14.95,04/01/19 16:32,"220 Chestnut St, Seattle, WA 98101" -181216,27in FHD Monitor,1,149.99,04/06/19 17:27,"200 Lakeview St, Atlanta, GA 30301" -181217,AA Batteries (4-pack),1,3.84,04/01/19 09:10,"106 Hickory St, Los Angeles, CA 90001" -181218,27in 4K Gaming Monitor,1,389.99,04/01/19 08:51,"68 Sunset St, Atlanta, GA 30301" -181219,USB-C Charging Cable,1,11.95,04/09/19 09:08,"974 Lakeview St, Atlanta, GA 30301" -181220,27in 4K Gaming Monitor,1,389.99,04/19/19 17:24,"598 12th St, Austin, TX 73301" -181220,Apple Airpods Headphones,1,150,04/19/19 17:24,"598 12th St, Austin, TX 73301" -181221,27in FHD Monitor,1,149.99,04/29/19 23:25,"327 Forest St, Atlanta, GA 30301" -181222,AAA Batteries (4-pack),1,2.99,04/07/19 21:59,"415 Lake St, Atlanta, GA 30301" -181223,Lightning Charging Cable,2,14.95,04/08/19 12:07,"779 Sunset St, Boston, MA 02215" -181224,Lightning Charging Cable,1,14.95,04/18/19 12:57,"606 1st St, New York City, NY 10001" -181225,Wired Headphones,1,11.99,04/19/19 22:00,"437 Spruce St, Los Angeles, CA 90001" -181226,AAA Batteries (4-pack),1,2.99,04/10/19 16:34,"588 Sunset St, Boston, MA 02215" -181227,AAA Batteries (4-pack),1,2.99,04/27/19 08:49,"918 Elm St, San Francisco, CA 94016" -181228,AAA Batteries (4-pack),1,2.99,04/14/19 20:46,"665 10th St, San Francisco, CA 94016" -181229,AA Batteries (4-pack),1,3.84,04/03/19 16:34,"664 Cedar St, Los Angeles, CA 90001" -181230,34in Ultrawide Monitor,1,379.99,04/19/19 18:53,"458 Dogwood St, Seattle, WA 98101" -181231,AAA Batteries (4-pack),1,2.99,04/30/19 17:49,"54 14th St, Los Angeles, CA 90001" -181232,ThinkPad Laptop,1,999.99,04/27/19 14:32,"722 River St, San Francisco, CA 94016" -181233,Wired Headphones,1,11.99,04/25/19 18:40,"203 Center St, Portland, OR 97035" -181234,Wired Headphones,2,11.99,04/09/19 14:55,"320 13th St, New York City, NY 10001" -181235,Wired Headphones,1,11.99,04/15/19 10:53,"435 7th St, New York City, NY 10001" -181236,Wired Headphones,1,11.99,04/03/19 16:29,"532 2nd St, New York City, NY 10001" -181237,AAA Batteries (4-pack),1,2.99,04/17/19 18:33,"528 South St, New York City, NY 10001" -181238,Apple Airpods Headphones,1,150,04/22/19 21:07,"150 11th St, San Francisco, CA 94016" -181239,AAA Batteries (4-pack),1,2.99,04/15/19 11:46,"95 Lake St, Atlanta, GA 30301" -181240,Bose SoundSport Headphones,1,99.99,04/22/19 10:01,"898 Wilson St, San Francisco, CA 94016" -181241,34in Ultrawide Monitor,1,379.99,04/08/19 16:30,"106 Maple St, New York City, NY 10001" -181242,AA Batteries (4-pack),1,3.84,04/05/19 23:22,"391 7th St, New York City, NY 10001" -181243,Apple Airpods Headphones,1,150,04/27/19 08:49,"431 10th St, New York City, NY 10001" -181244,Bose SoundSport Headphones,1,99.99,04/03/19 14:29,"733 11th St, Portland, OR 97035" -181245,Bose SoundSport Headphones,1,99.99,04/21/19 11:02,"14 Church St, Dallas, TX 75001" -181246,Wired Headphones,1,11.99,04/09/19 13:58,"342 Hickory St, San Francisco, CA 94016" -181246,Wired Headphones,1,11.99,04/09/19 13:58,"342 Hickory St, San Francisco, CA 94016" -181247,Macbook Pro Laptop,1,1700,04/18/19 01:27,"513 10th St, San Francisco, CA 94016" -181248,AA Batteries (4-pack),2,3.84,05/01/19 00:38,"753 South St, San Francisco, CA 94016" -181249,USB-C Charging Cable,1,11.95,04/11/19 21:30,"987 Hill St, Boston, MA 02215" -181250,USB-C Charging Cable,1,11.95,04/16/19 11:03,"556 Chestnut St, Dallas, TX 75001" -181251,Lightning Charging Cable,1,14.95,04/12/19 07:27,"886 Jackson St, Seattle, WA 98101" -181252,Wired Headphones,1,11.99,04/20/19 12:30,"212 Church St, San Francisco, CA 94016" -181253,Lightning Charging Cable,1,14.95,04/14/19 10:27,"852 Wilson St, Dallas, TX 75001" -181254,USB-C Charging Cable,1,11.95,04/16/19 22:59,"901 Spruce St, Boston, MA 02215" -181255,Flatscreen TV,1,300,04/05/19 06:24,"922 2nd St, San Francisco, CA 94016" -181256,34in Ultrawide Monitor,1,379.99,04/20/19 13:43,"105 Walnut St, Austin, TX 73301" -181257,iPhone,1,700,04/14/19 02:08,"175 Park St, Atlanta, GA 30301" -181257,Wired Headphones,1,11.99,04/14/19 02:08,"175 Park St, Atlanta, GA 30301" -181258,Wired Headphones,2,11.99,04/30/19 20:09,"745 Maple St, Los Angeles, CA 90001" -181259,Wired Headphones,1,11.99,04/08/19 02:05,"676 North St, New York City, NY 10001" -181260,Wired Headphones,1,11.99,04/10/19 14:59,"7 Forest St, San Francisco, CA 94016" -181261,Bose SoundSport Headphones,1,99.99,04/26/19 09:50,"50 Ridge St, Seattle, WA 98101" -181262,AAA Batteries (4-pack),1,2.99,04/23/19 19:39,"94 Elm St, Boston, MA 02215" -181262,Google Phone,1,600,04/23/19 19:39,"94 Elm St, Boston, MA 02215" -181263,27in FHD Monitor,1,149.99,04/21/19 10:05,"968 Willow St, Seattle, WA 98101" -181264,Wired Headphones,2,11.99,04/13/19 07:36,"453 Sunset St, Los Angeles, CA 90001" -181265,Lightning Charging Cable,1,14.95,04/28/19 19:39,"369 6th St, Austin, TX 73301" -181266,iPhone,1,700,04/27/19 13:19,"624 Madison St, Boston, MA 02215" -181266,Wired Headphones,1,11.99,04/27/19 13:19,"624 Madison St, Boston, MA 02215" -181267,AA Batteries (4-pack),1,3.84,04/07/19 20:32,"138 14th St, San Francisco, CA 94016" -181268,27in FHD Monitor,1,149.99,04/26/19 15:24,"655 Jackson St, Los Angeles, CA 90001" -181269,Lightning Charging Cable,1,14.95,04/30/19 17:44,"509 8th St, New York City, NY 10001" -181270,Wired Headphones,1,11.99,04/07/19 16:31,"305 Maple St, Los Angeles, CA 90001" -181271,Vareebadd Phone,1,400,04/09/19 08:17,"860 Hickory St, Portland, OR 97035" -181272,Lightning Charging Cable,1,14.95,04/18/19 16:11,"508 Pine St, San Francisco, CA 94016" -181273,Wired Headphones,1,11.99,04/09/19 14:27,"145 Chestnut St, San Francisco, CA 94016" -181274,AA Batteries (4-pack),1,3.84,04/07/19 00:10,"121 Washington St, Portland, OR 97035" -181275,AA Batteries (4-pack),1,3.84,04/13/19 15:03,"580 11th St, Portland, ME 04101" -181276,Wired Headphones,1,11.99,04/19/19 18:30,"191 7th St, Dallas, TX 75001" -181277,34in Ultrawide Monitor,1,379.99,04/02/19 14:20,"852 Walnut St, Atlanta, GA 30301" -181278,Apple Airpods Headphones,1,150,04/04/19 11:22,"992 Dogwood St, Seattle, WA 98101" -181279,20in Monitor,1,109.99,04/23/19 09:04,"968 River St, Boston, MA 02215" -181280,Bose SoundSport Headphones,1,99.99,04/16/19 10:11,"276 Johnson St, Los Angeles, CA 90001" -181281,USB-C Charging Cable,1,11.95,04/09/19 17:23,"947 1st St, Los Angeles, CA 90001" -181282,ThinkPad Laptop,1,999.99,04/15/19 12:40,"338 Jefferson St, Austin, TX 73301" -181283,Bose SoundSport Headphones,1,99.99,04/13/19 18:39,"644 13th St, Los Angeles, CA 90001" -181284,Lightning Charging Cable,2,14.95,04/09/19 01:13,"581 6th St, Seattle, WA 98101" -181285,USB-C Charging Cable,2,11.95,04/29/19 17:07,"130 Lake St, San Francisco, CA 94016" -181286,Apple Airpods Headphones,1,150,04/04/19 19:48,"697 5th St, San Francisco, CA 94016" -181287,AAA Batteries (4-pack),1,2.99,04/22/19 18:54,"338 Meadow St, New York City, NY 10001" -181288,AAA Batteries (4-pack),3,2.99,04/22/19 18:20,"978 Elm St, San Francisco, CA 94016" -181289,USB-C Charging Cable,1,11.95,04/27/19 13:42,"577 12th St, Atlanta, GA 30301" -181290,Lightning Charging Cable,1,14.95,04/08/19 14:57,"239 Meadow St, Seattle, WA 98101" -181291,AA Batteries (4-pack),1,3.84,04/03/19 12:40,"43 Madison St, New York City, NY 10001" -181292,AA Batteries (4-pack),1,3.84,04/21/19 19:48,"792 Church St, Boston, MA 02215" -181293,AAA Batteries (4-pack),1,2.99,04/12/19 08:36,"165 Hill St, Dallas, TX 75001" -181294,Lightning Charging Cable,1,14.95,04/06/19 10:35,"664 Jefferson St, Portland, OR 97035" -,,,,, -181295,Bose SoundSport Headphones,1,99.99,04/29/19 14:23,"499 Johnson St, Los Angeles, CA 90001" -181296,Flatscreen TV,1,300,04/25/19 14:15,"365 West St, San Francisco, CA 94016" -181297,USB-C Charging Cable,1,11.95,04/25/19 06:45,"394 Forest St, San Francisco, CA 94016" -181298,Macbook Pro Laptop,1,1700,04/01/19 21:39,"732 Hickory St, Boston, MA 02215" -181299,AA Batteries (4-pack),1,3.84,04/11/19 00:45,"543 Lakeview St, San Francisco, CA 94016" -181300,Lightning Charging Cable,1,14.95,04/18/19 14:41,"982 Jackson St, San Francisco, CA 94016" -181301,AAA Batteries (4-pack),1,2.99,04/27/19 18:32,"429 Cedar St, Los Angeles, CA 90001" -181302,iPhone,1,700,04/22/19 10:27,"534 Lakeview St, New York City, NY 10001" -181303,Apple Airpods Headphones,1,150,04/19/19 09:39,"463 10th St, Los Angeles, CA 90001" -181304,AAA Batteries (4-pack),1,2.99,04/01/19 13:14,"713 Johnson St, Atlanta, GA 30301" -181305,Bose SoundSport Headphones,1,99.99,04/13/19 11:43,"13 Hickory St, New York City, NY 10001" -181306,AAA Batteries (4-pack),1,2.99,04/09/19 21:48,"150 5th St, San Francisco, CA 94016" -181307,20in Monitor,1,109.99,04/09/19 21:52,"453 Willow St, Los Angeles, CA 90001" -181308,Wired Headphones,1,11.99,04/20/19 15:19,"471 Chestnut St, Atlanta, GA 30301" -181309,ThinkPad Laptop,1,999.99,04/11/19 00:33,"643 Jackson St, Atlanta, GA 30301" -181310,AAA Batteries (4-pack),2,2.99,04/28/19 23:08,"990 Center St, Dallas, TX 75001" -181311,Wired Headphones,1,11.99,04/08/19 11:13,"222 Maple St, San Francisco, CA 94016" -181312,Apple Airpods Headphones,1,150,04/10/19 21:47,"148 7th St, Seattle, WA 98101" -181313,Wired Headphones,1,11.99,04/08/19 13:57,"176 Johnson St, San Francisco, CA 94016" -181314,Wired Headphones,1,11.99,04/08/19 20:24,"916 North St, San Francisco, CA 94016" -181315,Google Phone,1,600,04/28/19 18:50,"123 8th St, San Francisco, CA 94016" -181315,USB-C Charging Cable,1,11.95,04/28/19 18:50,"123 8th St, San Francisco, CA 94016" -181316,Wired Headphones,1,11.99,04/09/19 02:37,"843 South St, Seattle, WA 98101" -181317,Wired Headphones,1,11.99,04/20/19 21:29,"715 Center St, Los Angeles, CA 90001" -181318,Flatscreen TV,1,300,04/22/19 10:16,"624 Cherry St, San Francisco, CA 94016" -181319,AAA Batteries (4-pack),1,2.99,04/12/19 11:10,"392 Willow St, Portland, OR 97035" -181320,Lightning Charging Cable,2,14.95,04/05/19 16:51,"334 Jefferson St, Los Angeles, CA 90001" -181321,AAA Batteries (4-pack),2,2.99,04/05/19 23:01,"908 Wilson St, San Francisco, CA 94016" -181322,Google Phone,1,600,04/23/19 14:10,"691 14th St, Boston, MA 02215" -181323,Bose SoundSport Headphones,1,99.99,04/10/19 10:54,"602 Cherry St, New York City, NY 10001" -181324,ThinkPad Laptop,1,999.99,04/16/19 10:01,"411 Elm St, San Francisco, CA 94016" -181325,USB-C Charging Cable,1,11.95,04/16/19 21:48,"483 Cherry St, San Francisco, CA 94016" -181326,Lightning Charging Cable,1,14.95,04/08/19 11:52,"72 7th St, Los Angeles, CA 90001" -181327,27in FHD Monitor,1,149.99,04/05/19 14:49,"575 Madison St, Portland, OR 97035" -181327,AAA Batteries (4-pack),3,2.99,04/05/19 14:49,"575 Madison St, Portland, OR 97035" -181328,AAA Batteries (4-pack),1,2.99,04/14/19 19:42,"23 Highland St, Los Angeles, CA 90001" -181328,USB-C Charging Cable,1,11.95,04/14/19 19:42,"23 Highland St, Los Angeles, CA 90001" -181329,Google Phone,1,600,04/05/19 17:19,"334 10th St, Dallas, TX 75001" -181330,AAA Batteries (4-pack),1,2.99,04/17/19 19:41,"731 Adams St, San Francisco, CA 94016" -181331,AA Batteries (4-pack),1,3.84,04/23/19 22:05,"800 Madison St, Portland, OR 97035" -181332,AAA Batteries (4-pack),1,2.99,04/22/19 08:07,"624 Lincoln St, Portland, OR 97035" -181333,USB-C Charging Cable,1,11.95,04/11/19 23:29,"808 Lakeview St, Portland, OR 97035" -181334,Bose SoundSport Headphones,1,99.99,04/02/19 21:57,"227 5th St, San Francisco, CA 94016" -181335,Apple Airpods Headphones,1,150,04/15/19 13:14,"67 River St, San Francisco, CA 94016" -181336,27in FHD Monitor,1,149.99,04/21/19 12:12,"783 Johnson St, Atlanta, GA 30301" -181337,Apple Airpods Headphones,1,150,04/10/19 14:59,"683 1st St, Los Angeles, CA 90001" -181338,iPhone,1,700,04/06/19 19:05,"975 Highland St, Portland, OR 97035" -181339,Macbook Pro Laptop,1,1700,04/17/19 17:26,"905 10th St, San Francisco, CA 94016" -181340,Wired Headphones,1,11.99,04/06/19 21:46,"122 5th St, San Francisco, CA 94016" -181341,Macbook Pro Laptop,1,1700,04/25/19 19:29,"829 Lincoln St, Los Angeles, CA 90001" -181342,34in Ultrawide Monitor,1,379.99,04/09/19 23:03,"725 Cedar St, Atlanta, GA 30301" -181343,AAA Batteries (4-pack),1,2.99,04/18/19 18:33,"315 Spruce St, Los Angeles, CA 90001" -181344,Lightning Charging Cable,1,14.95,04/16/19 18:46,"184 Lake St, Portland, ME 04101" -181345,AAA Batteries (4-pack),1,2.99,04/19/19 15:26,"701 8th St, San Francisco, CA 94016" -181346,20in Monitor,1,109.99,04/06/19 14:12,"783 Cherry St, Atlanta, GA 30301" -181347,AA Batteries (4-pack),1,3.84,04/17/19 13:43,"341 Center St, Seattle, WA 98101" -181348,AAA Batteries (4-pack),1,2.99,04/12/19 14:56,"591 5th St, New York City, NY 10001" -181349,27in FHD Monitor,1,149.99,04/05/19 15:08,"967 12th St, Boston, MA 02215" -181350,Bose SoundSport Headphones,1,99.99,04/08/19 10:46,"941 5th St, Portland, OR 97035" -181351,AA Batteries (4-pack),1,3.84,04/22/19 19:29,"173 7th St, Atlanta, GA 30301" -181352,USB-C Charging Cable,1,11.95,04/24/19 21:20,"758 9th St, Seattle, WA 98101" -181353,Bose SoundSport Headphones,1,99.99,04/26/19 14:59,"66 Park St, Atlanta, GA 30301" -181354,USB-C Charging Cable,1,11.95,04/18/19 15:03,"641 13th St, Austin, TX 73301" -181355,AAA Batteries (4-pack),1,2.99,04/22/19 16:57,"3 South St, Boston, MA 02215" -181356,20in Monitor,1,109.99,04/24/19 07:50,"43 Lake St, Seattle, WA 98101" -181357,AAA Batteries (4-pack),1,2.99,04/26/19 10:43,"62 6th St, Atlanta, GA 30301" -181358,USB-C Charging Cable,1,11.95,04/29/19 20:12,"249 Meadow St, Portland, ME 04101" -181359,Wired Headphones,1,11.99,04/18/19 14:01,"144 Adams St, Dallas, TX 75001" -181360,AA Batteries (4-pack),1,3.84,04/01/19 17:43,"733 South St, San Francisco, CA 94016" -181361,USB-C Charging Cable,1,11.95,04/01/19 20:37,"423 Elm St, New York City, NY 10001" -181362,Lightning Charging Cable,1,14.95,04/20/19 14:23,"142 8th St, Portland, OR 97035" -181363,ThinkPad Laptop,1,999.99,04/15/19 08:57,"593 North St, Boston, MA 02215" -181364,AAA Batteries (4-pack),1,2.99,04/21/19 14:53,"285 12th St, Dallas, TX 75001" -181365,Wired Headphones,1,11.99,04/11/19 00:07,"198 Park St, Boston, MA 02215" -181366,USB-C Charging Cable,1,11.95,04/04/19 18:48,"454 14th St, Los Angeles, CA 90001" -181367,27in 4K Gaming Monitor,1,389.99,04/18/19 13:04,"733 Hill St, Los Angeles, CA 90001" -181368,Bose SoundSport Headphones,1,99.99,04/08/19 01:56,"839 Cedar St, New York City, NY 10001" -181369,Apple Airpods Headphones,1,150,04/30/19 11:56,"186 10th St, New York City, NY 10001" -181370,iPhone,1,700,04/19/19 15:43,"785 11th St, Atlanta, GA 30301" -181370,USB-C Charging Cable,1,11.95,04/19/19 15:43,"785 11th St, Atlanta, GA 30301" -181371,Wired Headphones,1,11.99,04/04/19 12:55,"93 1st St, San Francisco, CA 94016" -181372,AAA Batteries (4-pack),2,2.99,04/06/19 19:57,"67 Cedar St, San Francisco, CA 94016" -181373,iPhone,1,700,04/05/19 12:31,"240 Adams St, San Francisco, CA 94016" -181374,Wired Headphones,1,11.99,04/08/19 14:11,"230 Washington St, Atlanta, GA 30301" -181375,AAA Batteries (4-pack),2,2.99,04/02/19 11:44,"622 Willow St, New York City, NY 10001" -181376,Apple Airpods Headphones,1,150,04/11/19 11:43,"468 11th St, Dallas, TX 75001" -181377,Lightning Charging Cable,1,14.95,04/20/19 15:06,"770 Spruce St, Seattle, WA 98101" -181378,Vareebadd Phone,1,400,04/14/19 17:26,"463 Maple St, New York City, NY 10001" -181379,Apple Airpods Headphones,1,150,04/27/19 10:11,"370 Lakeview St, Portland, OR 97035" -181380,USB-C Charging Cable,1,11.95,04/24/19 17:13,"601 12th St, Austin, TX 73301" -181381,Macbook Pro Laptop,1,1700,04/15/19 20:19,"332 Walnut St, Dallas, TX 75001" -181382,Wired Headphones,2,11.99,04/19/19 12:43,"655 Madison St, Portland, OR 97035" -181383,Wired Headphones,1,11.99,04/04/19 23:00,"12 Highland St, Boston, MA 02215" -181384,AA Batteries (4-pack),1,3.84,04/13/19 00:03,"671 Jackson St, Boston, MA 02215" -181385,34in Ultrawide Monitor,1,379.99,04/18/19 19:31,"118 7th St, Portland, OR 97035" -181386,USB-C Charging Cable,1,11.95,04/17/19 21:39,"154 Lincoln St, Seattle, WA 98101" -181387,Apple Airpods Headphones,1,150,04/20/19 20:41,"596 Pine St, Boston, MA 02215" -181388,Bose SoundSport Headphones,1,99.99,04/27/19 11:27,"354 Hickory St, San Francisco, CA 94016" -181389,Wired Headphones,1,11.99,04/04/19 09:04,"766 1st St, Los Angeles, CA 90001" -181390,USB-C Charging Cable,1,11.95,04/24/19 23:35,"611 West St, Atlanta, GA 30301" -181391,USB-C Charging Cable,1,11.95,04/12/19 19:11,"516 Johnson St, Seattle, WA 98101" -181392,Vareebadd Phone,1,400,04/19/19 21:26,"234 Spruce St, San Francisco, CA 94016" -181392,USB-C Charging Cable,1,11.95,04/19/19 21:26,"234 Spruce St, San Francisco, CA 94016" -181393,Wired Headphones,1,11.99,04/23/19 18:58,"463 Church St, Boston, MA 02215" -181394,USB-C Charging Cable,1,11.95,04/30/19 21:18,"714 Dogwood St, Boston, MA 02215" -181395,AAA Batteries (4-pack),1,2.99,04/09/19 06:28,"93 Willow St, Atlanta, GA 30301" -181396,Wired Headphones,1,11.99,04/01/19 14:05,"773 Hickory St, Austin, TX 73301" -181397,Apple Airpods Headphones,1,150,04/16/19 14:25,"331 Willow St, Boston, MA 02215" -181398,USB-C Charging Cable,1,11.95,04/30/19 08:54,"396 9th St, Los Angeles, CA 90001" -181399,AA Batteries (4-pack),2,3.84,04/08/19 08:27,"915 10th St, Portland, OR 97035" -181400,iPhone,1,700,04/16/19 19:13,"388 5th St, New York City, NY 10001" -181401,AAA Batteries (4-pack),1,2.99,04/08/19 14:31,"586 North St, Atlanta, GA 30301" -181402,AA Batteries (4-pack),2,3.84,04/14/19 21:49,"376 Elm St, Boston, MA 02215" -181402,AAA Batteries (4-pack),1,2.99,04/14/19 21:49,"376 Elm St, Boston, MA 02215" -181403,Flatscreen TV,1,300,04/09/19 17:57,"450 Ridge St, San Francisco, CA 94016" -181404,Wired Headphones,1,11.99,04/30/19 15:45,"8 Dogwood St, Seattle, WA 98101" -181405,27in 4K Gaming Monitor,1,389.99,04/28/19 12:44,"5 11th St, Austin, TX 73301" -181406,27in FHD Monitor,1,149.99,04/09/19 14:33,"669 Main St, Portland, OR 97035" -181407,27in FHD Monitor,1,149.99,04/25/19 12:36,"578 1st St, San Francisco, CA 94016" -181408,iPhone,1,700,04/02/19 22:45,"798 Highland St, San Francisco, CA 94016" -181409,Wired Headphones,1,11.99,04/27/19 04:40,"882 Maple St, Austin, TX 73301" -181410,USB-C Charging Cable,1,11.95,04/18/19 12:20,"556 10th St, Boston, MA 02215" -181411,34in Ultrawide Monitor,1,379.99,04/20/19 13:56,"233 7th St, New York City, NY 10001" -181412,Vareebadd Phone,1,400,04/23/19 20:18,"660 River St, Austin, TX 73301" -181412,USB-C Charging Cable,1,11.95,04/23/19 20:18,"660 River St, Austin, TX 73301" -181413,AAA Batteries (4-pack),1,2.99,04/08/19 21:14,"709 10th St, Boston, MA 02215" -181414,Bose SoundSport Headphones,1,99.99,04/26/19 12:23,"866 Ridge St, Los Angeles, CA 90001" -181415,AA Batteries (4-pack),1,3.84,04/07/19 15:58,"326 Wilson St, San Francisco, CA 94016" -181416,AA Batteries (4-pack),1,3.84,04/16/19 08:26,"387 Lake St, New York City, NY 10001" -181417,Bose SoundSport Headphones,1,99.99,04/15/19 18:00,"387 Cedar St, Los Angeles, CA 90001" -181418,Apple Airpods Headphones,1,150,04/01/19 20:06,"105 Church St, Atlanta, GA 30301" -181419,Apple Airpods Headphones,1,150,04/04/19 17:31,"524 Cherry St, Portland, OR 97035" -181419,34in Ultrawide Monitor,1,379.99,04/04/19 17:31,"524 Cherry St, Portland, OR 97035" -181420,USB-C Charging Cable,1,11.95,04/05/19 18:27,"893 Madison St, New York City, NY 10001" -181421,27in FHD Monitor,1,149.99,04/27/19 21:36,"92 Willow St, San Francisco, CA 94016" -181422,34in Ultrawide Monitor,1,379.99,04/30/19 19:36,"804 10th St, San Francisco, CA 94016" -181423,Wired Headphones,1,11.99,04/01/19 11:42,"231 Highland St, Los Angeles, CA 90001" -181424,AAA Batteries (4-pack),1,2.99,04/27/19 08:55,"303 10th St, Portland, OR 97035" -181425,Bose SoundSport Headphones,1,99.99,04/14/19 06:05,"451 Meadow St, New York City, NY 10001" -181426,Wired Headphones,1,11.99,04/27/19 01:41,"268 10th St, San Francisco, CA 94016" -181427,Google Phone,1,600,04/27/19 10:12,"624 10th St, Portland, ME 04101" -181428,ThinkPad Laptop,1,999.99,04/02/19 04:34,"615 Cedar St, Portland, OR 97035" -181429,Bose SoundSport Headphones,1,99.99,04/07/19 19:49,"579 Main St, Los Angeles, CA 90001" -181430,Apple Airpods Headphones,1,150,04/14/19 12:11,"454 2nd St, Atlanta, GA 30301" -181431,USB-C Charging Cable,1,11.95,04/22/19 22:59,"578 Chestnut St, New York City, NY 10001" -181432,LG Dryer,1,600.0,04/25/19 19:27,"804 Jackson St, Los Angeles, CA 90001" -181433,AA Batteries (4-pack),1,3.84,04/04/19 18:52,"119 Highland St, Los Angeles, CA 90001" -181434,USB-C Charging Cable,1,11.95,04/02/19 06:23,"49 14th St, New York City, NY 10001" -181435,AAA Batteries (4-pack),1,2.99,04/22/19 18:16,"824 North St, New York City, NY 10001" -181435,AA Batteries (4-pack),1,3.84,04/22/19 18:16,"824 North St, New York City, NY 10001" -181436,Wired Headphones,1,11.99,04/28/19 13:54,"666 Dogwood St, Seattle, WA 98101" -181437,Flatscreen TV,1,300,04/13/19 15:51,"866 Hill St, Boston, MA 02215" -181438,LG Dryer,1,600.0,04/21/19 11:31,"960 Center St, Portland, OR 97035" -181439,Lightning Charging Cable,1,14.95,04/15/19 19:04,"439 Sunset St, Dallas, TX 75001" -181440,AA Batteries (4-pack),1,3.84,04/24/19 14:34,"116 Willow St, San Francisco, CA 94016" -181441,34in Ultrawide Monitor,1,379.99,04/30/19 16:12,"197 Hill St, New York City, NY 10001" -181442,27in 4K Gaming Monitor,1,389.99,04/25/19 21:53,"299 Lakeview St, Atlanta, GA 30301" -181443,Apple Airpods Headphones,1,150,04/14/19 13:26,"189 Church St, Boston, MA 02215" -181444,AAA Batteries (4-pack),1,2.99,04/04/19 10:36,"639 Lincoln St, San Francisco, CA 94016" -181445,27in FHD Monitor,1,149.99,04/20/19 09:56,"880 Jefferson St, San Francisco, CA 94016" -181446,AAA Batteries (4-pack),2,2.99,04/08/19 10:17,"936 Main St, Los Angeles, CA 90001" -181447,Apple Airpods Headphones,1,150,04/01/19 14:00,"759 4th St, Los Angeles, CA 90001" -181448,AAA Batteries (4-pack),3,2.99,04/03/19 14:15,"714 North St, San Francisco, CA 94016" -181449,Lightning Charging Cable,1,14.95,04/05/19 10:01,"636 Hickory St, Atlanta, GA 30301" -181450,USB-C Charging Cable,1,11.95,04/11/19 19:42,"246 1st St, San Francisco, CA 94016" -181451,Wired Headphones,1,11.99,04/04/19 20:13,"869 7th St, San Francisco, CA 94016" -181452,34in Ultrawide Monitor,1,379.99,04/28/19 11:51,"535 Willow St, Boston, MA 02215" -181453,Macbook Pro Laptop,1,1700,04/27/19 11:01,"1 Meadow St, Atlanta, GA 30301" -181454,AA Batteries (4-pack),1,3.84,04/20/19 08:37,"652 Main St, Atlanta, GA 30301" -181455,Apple Airpods Headphones,1,150,04/04/19 06:21,"213 Cherry St, New York City, NY 10001" -181456,AA Batteries (4-pack),2,3.84,04/02/19 21:56,"64 Forest St, Portland, OR 97035" -181457,AAA Batteries (4-pack),1,2.99,04/06/19 13:47,"754 Willow St, Dallas, TX 75001" -181458,Wired Headphones,1,11.99,04/28/19 12:28,"577 Hill St, New York City, NY 10001" -181459,27in FHD Monitor,1,149.99,04/05/19 09:39,"147 Maple St, Boston, MA 02215" -181460,Wired Headphones,1,11.99,04/01/19 09:26,"892 8th St, San Francisco, CA 94016" -181461,Bose SoundSport Headphones,1,99.99,04/12/19 15:12,"309 Hill St, San Francisco, CA 94016" -181462,Lightning Charging Cable,1,14.95,04/21/19 08:10,"389 Sunset St, Boston, MA 02215" -181463,AAA Batteries (4-pack),2,2.99,04/06/19 10:37,"480 11th St, Seattle, WA 98101" -181464,34in Ultrawide Monitor,1,379.99,04/09/19 10:47,"647 Elm St, New York City, NY 10001" -181465,AA Batteries (4-pack),1,3.84,04/17/19 21:36,"501 Spruce St, Boston, MA 02215" -181466,Bose SoundSport Headphones,1,99.99,04/14/19 12:22,"5 Hill St, San Francisco, CA 94016" -181467,AA Batteries (4-pack),1,3.84,04/07/19 11:11,"982 Sunset St, San Francisco, CA 94016" -181468,AA Batteries (4-pack),1,3.84,04/20/19 20:53,"432 Madison St, Los Angeles, CA 90001" -181469,Google Phone,1,600,04/14/19 10:08,"522 Forest St, Portland, OR 97035" -181470,USB-C Charging Cable,1,11.95,04/30/19 17:18,"145 Center St, Portland, OR 97035" -181471,Macbook Pro Laptop,1,1700,04/20/19 22:17,"483 10th St, Los Angeles, CA 90001" -181472,AAA Batteries (4-pack),1,2.99,04/14/19 09:40,"750 4th St, San Francisco, CA 94016" -181473,Wired Headphones,2,11.99,04/02/19 12:12,"195 13th St, Dallas, TX 75001" -181474,Wired Headphones,1,11.99,04/21/19 10:58,"103 2nd St, Los Angeles, CA 90001" -181475,Wired Headphones,1,11.99,04/14/19 23:23,"375 10th St, San Francisco, CA 94016" -181476,Vareebadd Phone,1,400,04/02/19 22:19,"2 Jackson St, Dallas, TX 75001" -181476,Wired Headphones,1,11.99,04/02/19 22:19,"2 Jackson St, Dallas, TX 75001" -181477,Lightning Charging Cable,1,14.95,04/01/19 21:07,"864 Johnson St, San Francisco, CA 94016" -181478,Flatscreen TV,1,300,04/16/19 20:42,"702 12th St, Portland, OR 97035" -181479,Apple Airpods Headphones,1,150,04/21/19 17:32,"671 Johnson St, New York City, NY 10001" -181480,iPhone,1,700,04/11/19 02:14,"681 1st St, Atlanta, GA 30301" -181481,Macbook Pro Laptop,1,1700,04/07/19 06:54,"282 Cedar St, Dallas, TX 75001" -181482,Wired Headphones,1,11.99,04/21/19 22:06,"594 9th St, Portland, OR 97035" -181483,Lightning Charging Cable,1,14.95,04/04/19 12:24,"498 4th St, Boston, MA 02215" -181484,34in Ultrawide Monitor,1,379.99,04/20/19 22:06,"424 1st St, New York City, NY 10001" -181485,Lightning Charging Cable,2,14.95,04/07/19 11:20,"757 Elm St, Atlanta, GA 30301" -181486,Bose SoundSport Headphones,1,99.99,04/29/19 13:16,"353 Lake St, New York City, NY 10001" -181487,AA Batteries (4-pack),1,3.84,04/07/19 10:33,"948 8th St, Boston, MA 02215" -181488,AAA Batteries (4-pack),1,2.99,04/29/19 07:49,"232 5th St, Portland, ME 04101" -181489,AA Batteries (4-pack),1,3.84,04/17/19 16:20,"267 Washington St, Boston, MA 02215" -181490,27in FHD Monitor,1,149.99,04/03/19 12:40,"928 Pine St, Los Angeles, CA 90001" -181491,AA Batteries (4-pack),1,3.84,04/01/19 12:23,"735 7th St, Boston, MA 02215" -181492,AA Batteries (4-pack),1,3.84,04/24/19 13:19,"208 Elm St, San Francisco, CA 94016" -181493,Apple Airpods Headphones,1,150,04/23/19 08:31,"81 Cedar St, Los Angeles, CA 90001" -181494,Wired Headphones,1,11.99,04/04/19 23:25,"551 Adams St, San Francisco, CA 94016" -181495,Lightning Charging Cable,1,14.95,04/03/19 10:03,"33 14th St, Dallas, TX 75001" -181496,AA Batteries (4-pack),1,3.84,04/05/19 00:40,"324 Cedar St, Seattle, WA 98101" -181497,AA Batteries (4-pack),2,3.84,04/24/19 10:51,"799 Johnson St, San Francisco, CA 94016" -181498,USB-C Charging Cable,2,11.95,04/24/19 08:09,"378 Elm St, Austin, TX 73301" -181499,Apple Airpods Headphones,1,150,04/16/19 10:43,"512 Cedar St, San Francisco, CA 94016" -181500,Wired Headphones,1,11.99,04/08/19 06:57,"627 Lakeview St, Dallas, TX 75001" -181501,Lightning Charging Cable,1,14.95,04/20/19 08:22,"373 Main St, San Francisco, CA 94016" -181502,Wired Headphones,2,11.99,04/08/19 07:58,"331 Adams St, San Francisco, CA 94016" -181503,Vareebadd Phone,1,400,04/13/19 01:07,"728 Hickory St, Atlanta, GA 30301" -181504,Bose SoundSport Headphones,1,99.99,04/17/19 08:15,"995 Willow St, Dallas, TX 75001" -181505,Lightning Charging Cable,1,14.95,04/07/19 16:30,"738 Spruce St, San Francisco, CA 94016" -181506,27in FHD Monitor,1,149.99,04/12/19 21:47,"969 Elm St, San Francisco, CA 94016" -181507,AAA Batteries (4-pack),1,2.99,04/05/19 06:04,"270 9th St, San Francisco, CA 94016" -181508,Apple Airpods Headphones,1,150,04/28/19 14:39,"548 Center St, Los Angeles, CA 90001" -181509,Lightning Charging Cable,1,14.95,04/08/19 15:26,"929 5th St, Seattle, WA 98101" -181510,ThinkPad Laptop,1,999.99,04/24/19 22:12,"451 Cherry St, Atlanta, GA 30301" -181511,USB-C Charging Cable,1,11.95,04/08/19 17:36,"866 Lincoln St, San Francisco, CA 94016" -181512,Bose SoundSport Headphones,1,99.99,04/08/19 10:58,"543 Lakeview St, San Francisco, CA 94016" -181513,Apple Airpods Headphones,1,150,04/13/19 10:59,"568 Meadow St, Portland, OR 97035" -181514,27in 4K Gaming Monitor,1,389.99,04/28/19 16:18,"196 Maple St, San Francisco, CA 94016" -181515,Google Phone,1,600,04/01/19 13:03,"832 7th St, New York City, NY 10001" -181515,Wired Headphones,1,11.99,04/01/19 13:03,"832 7th St, New York City, NY 10001" -181516,Bose SoundSport Headphones,1,99.99,04/06/19 21:16,"284 Wilson St, Seattle, WA 98101" -181517,iPhone,1,700,04/04/19 15:00,"147 Madison St, San Francisco, CA 94016" -181518,Google Phone,1,600,04/02/19 11:38,"298 Lakeview St, Los Angeles, CA 90001" -181519,USB-C Charging Cable,1,11.95,04/22/19 09:42,"729 Cedar St, San Francisco, CA 94016" -181520,AA Batteries (4-pack),1,3.84,04/16/19 14:10,"649 Walnut St, Atlanta, GA 30301" -181521,Bose SoundSport Headphones,1,99.99,04/09/19 18:16,"782 Cherry St, San Francisco, CA 94016" -181522,AAA Batteries (4-pack),1,2.99,04/08/19 13:07,"866 Madison St, Seattle, WA 98101" -181523,Apple Airpods Headphones,1,150,04/04/19 20:13,"95 9th St, San Francisco, CA 94016" -181524,Flatscreen TV,1,300,04/07/19 16:10,"953 Park St, Seattle, WA 98101" -181525,Flatscreen TV,1,300,04/15/19 02:38,"895 14th St, San Francisco, CA 94016" -181526,LG Dryer,1,600.0,04/17/19 00:23,"874 Hill St, San Francisco, CA 94016" -181527,Flatscreen TV,1,300,04/23/19 20:06,"271 Main St, New York City, NY 10001" -181528,AAA Batteries (4-pack),1,2.99,04/02/19 16:22,"436 Walnut St, Los Angeles, CA 90001" -181529,27in FHD Monitor,1,149.99,04/26/19 21:28,"578 Hickory St, Boston, MA 02215" -181530,LG Dryer,1,600.0,04/14/19 09:14,"110 10th St, New York City, NY 10001" -181531,Lightning Charging Cable,1,14.95,04/17/19 23:31,"867 South St, Los Angeles, CA 90001" -181532,27in FHD Monitor,1,149.99,04/27/19 17:54,"928 South St, Dallas, TX 75001" -181533,Lightning Charging Cable,1,14.95,04/14/19 12:15,"470 Pine St, New York City, NY 10001" -181534,AAA Batteries (4-pack),1,2.99,04/02/19 16:23,"409 South St, Atlanta, GA 30301" -181535,Macbook Pro Laptop,1,1700,04/14/19 02:33,"283 Maple St, Los Angeles, CA 90001" -181536,USB-C Charging Cable,1,11.95,04/06/19 21:50,"66 Walnut St, San Francisco, CA 94016" -181537,Wired Headphones,1,11.99,04/18/19 11:53,"456 River St, Austin, TX 73301" -181538,27in 4K Gaming Monitor,1,389.99,04/21/19 20:03,"676 Jackson St, Los Angeles, CA 90001" -181539,AAA Batteries (4-pack),1,2.99,04/26/19 23:39,"497 Center St, New York City, NY 10001" -181540,AA Batteries (4-pack),1,3.84,04/22/19 17:38,"651 11th St, San Francisco, CA 94016" -181541,ThinkPad Laptop,1,999.99,04/09/19 16:59,"721 Madison St, Los Angeles, CA 90001" -181542,USB-C Charging Cable,1,11.95,04/01/19 22:30,"990 Lincoln St, Dallas, TX 75001" -181543,Bose SoundSport Headphones,1,99.99,04/16/19 23:17,"132 Sunset St, Dallas, TX 75001" -181544,Macbook Pro Laptop,2,1700,04/22/19 12:48,"731 11th St, New York City, NY 10001" -181545,27in 4K Gaming Monitor,1,389.99,04/22/19 21:03,"407 Willow St, Los Angeles, CA 90001" -181546,AA Batteries (4-pack),1,3.84,04/20/19 16:06,"191 North St, New York City, NY 10001" -181547,Lightning Charging Cable,1,14.95,04/22/19 15:35,"460 Lake St, Los Angeles, CA 90001" -181548,AA Batteries (4-pack),1,3.84,04/20/19 11:46,"551 14th St, Atlanta, GA 30301" -181549,34in Ultrawide Monitor,1,379.99,04/26/19 22:45,"297 Hickory St, Los Angeles, CA 90001" -181550,AA Batteries (4-pack),1,3.84,04/13/19 11:24,"731 Park St, Boston, MA 02215" -181551,27in FHD Monitor,1,149.99,04/06/19 16:01,"226 Jackson St, New York City, NY 10001" -181552,Macbook Pro Laptop,1,1700,04/01/19 07:06,"740 1st St, Atlanta, GA 30301" -181553,AA Batteries (4-pack),2,3.84,04/22/19 15:19,"172 Ridge St, Boston, MA 02215" -181554,Lightning Charging Cable,1,14.95,04/14/19 13:00,"458 Jefferson St, San Francisco, CA 94016" -181555,USB-C Charging Cable,1,11.95,04/07/19 08:22,"677 River St, Portland, ME 04101" -181556,AA Batteries (4-pack),1,3.84,04/09/19 21:46,"886 Jefferson St, Atlanta, GA 30301" -181557,Google Phone,1,600,04/26/19 19:51,"427 West St, San Francisco, CA 94016" -181557,USB-C Charging Cable,1,11.95,04/26/19 19:51,"427 West St, San Francisco, CA 94016" -181558,Apple Airpods Headphones,1,150,04/07/19 23:55,"755 Elm St, Austin, TX 73301" -181559,AAA Batteries (4-pack),2,2.99,04/24/19 21:46,"906 Willow St, San Francisco, CA 94016" -181560,ThinkPad Laptop,1,999.99,04/12/19 20:40,"897 10th St, Los Angeles, CA 90001" -181561,AA Batteries (4-pack),1,3.84,04/01/19 06:42,"387 Main St, Dallas, TX 75001" -181562,Bose SoundSport Headphones,1,99.99,04/24/19 17:44,"519 Elm St, Atlanta, GA 30301" -181563,Macbook Pro Laptop,1,1700,04/04/19 14:42,"218 Park St, New York City, NY 10001" -181564,AA Batteries (4-pack),1,3.84,04/04/19 12:20,"755 Wilson St, New York City, NY 10001" -181565,AAA Batteries (4-pack),2,2.99,04/21/19 08:45,"683 11th St, San Francisco, CA 94016" -181566,Bose SoundSport Headphones,1,99.99,04/20/19 19:35,"16 7th St, San Francisco, CA 94016" -181567,20in Monitor,1,109.99,04/06/19 10:19,"997 Cherry St, Portland, OR 97035" -181568,Wired Headphones,1,11.99,04/17/19 13:34,"20 Lake St, Dallas, TX 75001" -181569,Lightning Charging Cable,1,14.95,04/17/19 00:26,"416 Lincoln St, Los Angeles, CA 90001" -181570,AAA Batteries (4-pack),1,2.99,04/10/19 14:26,"179 Cherry St, San Francisco, CA 94016" -181571,27in FHD Monitor,1,149.99,04/13/19 07:50,"889 North St, Boston, MA 02215" -181572,Bose SoundSport Headphones,1,99.99,04/06/19 16:51,"548 13th St, New York City, NY 10001" -181573,AA Batteries (4-pack),1,3.84,04/10/19 17:50,"849 Pine St, Portland, OR 97035" -181574,AAA Batteries (4-pack),2,2.99,04/17/19 21:03,"961 Washington St, San Francisco, CA 94016" -181575,34in Ultrawide Monitor,1,379.99,04/26/19 23:39,"915 Adams St, San Francisco, CA 94016" -181576,Apple Airpods Headphones,1,150,04/13/19 12:18,"768 Park St, New York City, NY 10001" -181577,Lightning Charging Cable,1,14.95,04/21/19 19:26,"494 Jefferson St, Atlanta, GA 30301" -181578,Wired Headphones,1,11.99,04/07/19 11:55,"818 Ridge St, Los Angeles, CA 90001" -181579,Apple Airpods Headphones,1,150,04/05/19 19:49,"933 Wilson St, Los Angeles, CA 90001" -181580,27in 4K Gaming Monitor,1,389.99,04/13/19 07:42,"855 Lake St, Los Angeles, CA 90001" -181581,Macbook Pro Laptop,1,1700,04/10/19 20:50,"768 Forest St, Boston, MA 02215" -181582,AA Batteries (4-pack),1,3.84,04/10/19 19:10,"977 Lake St, New York City, NY 10001" -181583,27in 4K Gaming Monitor,1,389.99,04/18/19 15:36,"236 Main St, San Francisco, CA 94016" -181584,Wired Headphones,1,11.99,04/07/19 20:07,"901 8th St, New York City, NY 10001" -181585,AA Batteries (4-pack),1,3.84,04/14/19 01:17,"940 West St, Dallas, TX 75001" -181586,Bose SoundSport Headphones,1,99.99,04/02/19 20:07,"761 Lincoln St, Seattle, WA 98101" -181587,27in FHD Monitor,1,149.99,04/26/19 14:13,"412 Lake St, New York City, NY 10001" -181588,Lightning Charging Cable,1,14.95,04/15/19 11:26,"615 Cherry St, Boston, MA 02215" -181589,iPhone,1,700,04/25/19 16:23,"554 9th St, Los Angeles, CA 90001" -181590,iPhone,1,700,04/21/19 18:58,"608 River St, Los Angeles, CA 90001" -181591,Google Phone,1,600,04/17/19 09:28,"539 Walnut St, Los Angeles, CA 90001" -181592,AA Batteries (4-pack),2,3.84,04/25/19 11:10,"417 Wilson St, San Francisco, CA 94016" -181593,Lightning Charging Cable,1,14.95,04/07/19 15:37,"554 Wilson St, Portland, OR 97035" -181594,Wired Headphones,1,11.99,04/11/19 11:45,"570 Maple St, San Francisco, CA 94016" -181595,Apple Airpods Headphones,1,150,04/04/19 21:08,"644 8th St, San Francisco, CA 94016" -181596,Apple Airpods Headphones,1,150,04/05/19 11:28,"928 Main St, Los Angeles, CA 90001" -181597,Wired Headphones,1,11.99,04/04/19 11:22,"748 Cedar St, Los Angeles, CA 90001" -181598,AA Batteries (4-pack),1,3.84,04/22/19 13:53,"315 Church St, Los Angeles, CA 90001" -181599,USB-C Charging Cable,2,11.95,04/02/19 10:59,"257 Cedar St, Los Angeles, CA 90001" -181600,AA Batteries (4-pack),1,3.84,04/02/19 15:46,"183 Chestnut St, Dallas, TX 75001" -181601,Wired Headphones,1,11.99,04/24/19 21:30,"431 Jackson St, Dallas, TX 75001" -181602,Google Phone,1,600,04/22/19 22:19,"518 Hill St, Seattle, WA 98101" -181603,Wired Headphones,1,11.99,04/24/19 15:58,"10 9th St, Seattle, WA 98101" -181604,34in Ultrawide Monitor,1,379.99,04/11/19 18:21,"9 Johnson St, San Francisco, CA 94016" -181605,USB-C Charging Cable,1,11.95,04/09/19 10:10,"734 Lincoln St, Atlanta, GA 30301" -181606,34in Ultrawide Monitor,1,379.99,04/29/19 14:58,"439 Lakeview St, Portland, OR 97035" -181607,iPhone,1,700,04/24/19 20:28,"665 12th St, San Francisco, CA 94016" -181608,27in FHD Monitor,1,149.99,04/06/19 14:52,"684 Spruce St, San Francisco, CA 94016" -181609,Wired Headphones,1,11.99,04/18/19 10:19,"786 6th St, Los Angeles, CA 90001" -181610,USB-C Charging Cable,1,11.95,04/11/19 08:02,"522 4th St, Boston, MA 02215" -181611,Google Phone,1,600,04/17/19 06:42,"240 Lakeview St, Portland, OR 97035" -181612,Lightning Charging Cable,2,14.95,04/07/19 23:58,"445 Washington St, Boston, MA 02215" -181613,USB-C Charging Cable,1,11.95,04/19/19 19:15,"715 14th St, New York City, NY 10001" -181614,Vareebadd Phone,1,400,04/19/19 11:41,"629 13th St, Los Angeles, CA 90001" -181615,AAA Batteries (4-pack),1,2.99,04/16/19 18:10,"548 10th St, Boston, MA 02215" -181616,Lightning Charging Cable,1,14.95,04/08/19 23:56,"215 Dogwood St, Atlanta, GA 30301" -181617,Apple Airpods Headphones,1,150,04/08/19 11:40,"845 4th St, San Francisco, CA 94016" -181618,ThinkPad Laptop,1,999.99,04/30/19 22:06,"566 Cherry St, San Francisco, CA 94016" -181619,Wired Headphones,1,11.99,04/22/19 07:37,"936 Center St, San Francisco, CA 94016" -181620,27in FHD Monitor,1,149.99,04/14/19 03:09,"405 Hickory St, Austin, TX 73301" -181621,Wired Headphones,1,11.99,04/24/19 08:56,"968 2nd St, Dallas, TX 75001" -181622,AA Batteries (4-pack),1,3.84,04/16/19 13:06,"56 Lincoln St, Austin, TX 73301" -181623,AAA Batteries (4-pack),1,2.99,04/23/19 19:00,"748 14th St, Portland, ME 04101" -181624,AA Batteries (4-pack),2,3.84,04/08/19 10:08,"361 Jefferson St, San Francisco, CA 94016" -181625,Lightning Charging Cable,1,14.95,04/17/19 08:19,"462 5th St, San Francisco, CA 94016" -181626,Bose SoundSport Headphones,1,99.99,04/06/19 02:31,"305 Lake St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -181627,Apple Airpods Headphones,1,150,04/15/19 16:24,"790 Lakeview St, Atlanta, GA 30301" -181628,AAA Batteries (4-pack),1,2.99,04/25/19 13:16,"177 Johnson St, Boston, MA 02215" -181629,27in FHD Monitor,1,149.99,04/11/19 08:25,"755 Walnut St, Atlanta, GA 30301" -181630,Wired Headphones,1,11.99,04/11/19 21:27,"964 Church St, San Francisco, CA 94016" -181631,AAA Batteries (4-pack),1,2.99,04/07/19 01:26,"319 Meadow St, New York City, NY 10001" -181632,Apple Airpods Headphones,1,150,04/25/19 20:02,"569 11th St, San Francisco, CA 94016" -181633,AA Batteries (4-pack),1,3.84,04/20/19 20:28,"921 Johnson St, Seattle, WA 98101" -181634,27in 4K Gaming Monitor,1,389.99,04/10/19 14:06,"919 Elm St, San Francisco, CA 94016" -181635,Bose SoundSport Headphones,1,99.99,04/18/19 13:44,"245 Walnut St, San Francisco, CA 94016" -181636,Wired Headphones,1,11.99,04/16/19 18:38,"491 West St, San Francisco, CA 94016" -181637,AAA Batteries (4-pack),3,2.99,04/15/19 19:05,"482 Dogwood St, Atlanta, GA 30301" -181638,Apple Airpods Headphones,1,150,04/21/19 18:38,"181 Cedar St, Los Angeles, CA 90001" -181639,Macbook Pro Laptop,1,1700,04/07/19 20:44,"78 Dogwood St, Boston, MA 02215" -181640,USB-C Charging Cable,1,11.95,04/15/19 01:46,"629 Pine St, Los Angeles, CA 90001" -181641,Macbook Pro Laptop,1,1700,04/08/19 12:42,"352 West St, San Francisco, CA 94016" -181642,AA Batteries (4-pack),4,3.84,04/01/19 16:02,"695 12th St, San Francisco, CA 94016" -181643,Bose SoundSport Headphones,1,99.99,04/13/19 13:56,"921 Forest St, Atlanta, GA 30301" -181644,Apple Airpods Headphones,1,150,04/26/19 18:51,"532 1st St, San Francisco, CA 94016" -181645,Apple Airpods Headphones,1,150,05/01/19 02:37,"514 2nd St, Los Angeles, CA 90001" -181646,Google Phone,1,600,04/19/19 16:49,"863 Main St, Dallas, TX 75001" -181647,iPhone,1,700,04/09/19 22:31,"524 8th St, New York City, NY 10001" -181648,20in Monitor,1,109.99,04/29/19 20:01,"583 9th St, San Francisco, CA 94016" -181649,Flatscreen TV,1,300,04/28/19 14:33,"897 Wilson St, Los Angeles, CA 90001" -181650,AA Batteries (4-pack),1,3.84,04/25/19 11:34,"399 Hill St, Los Angeles, CA 90001" -181651,AA Batteries (4-pack),2,3.84,04/05/19 14:14,"995 Johnson St, Los Angeles, CA 90001" -181652,iPhone,1,700,04/18/19 11:14,"427 9th St, San Francisco, CA 94016" -181653,AAA Batteries (4-pack),2,2.99,04/21/19 12:23,"2 Sunset St, Portland, OR 97035" -181654,Wired Headphones,1,11.99,04/21/19 18:47,"723 14th St, San Francisco, CA 94016" -181655,USB-C Charging Cable,1,11.95,04/11/19 11:18,"430 Jefferson St, New York City, NY 10001" -181656,Apple Airpods Headphones,1,150,04/09/19 09:55,"557 Chestnut St, New York City, NY 10001" -181657,AA Batteries (4-pack),1,3.84,04/26/19 19:03,"596 Hickory St, Seattle, WA 98101" -181658,Apple Airpods Headphones,1,150,04/15/19 23:01,"564 South St, Dallas, TX 75001" -181659,ThinkPad Laptop,1,999.99,04/03/19 21:39,"325 Jefferson St, San Francisco, CA 94016" -181660,AAA Batteries (4-pack),1,2.99,04/14/19 20:36,"526 Main St, Boston, MA 02215" -181660,Bose SoundSport Headphones,1,99.99,04/14/19 20:36,"526 Main St, Boston, MA 02215" -181661,Bose SoundSport Headphones,1,99.99,04/05/19 16:17,"904 Ridge St, Boston, MA 02215" -181662,ThinkPad Laptop,1,999.99,04/07/19 21:53,"795 5th St, Los Angeles, CA 90001" -181663,iPhone,1,700,04/04/19 11:09,"828 North St, New York City, NY 10001" -181664,iPhone,1,700,04/29/19 17:23,"926 Maple St, Austin, TX 73301" -181665,ThinkPad Laptop,1,999.99,04/02/19 17:49,"101 Jefferson St, Los Angeles, CA 90001" -181666,AA Batteries (4-pack),1,3.84,04/01/19 12:05,"349 Jackson St, Seattle, WA 98101" -181667,USB-C Charging Cable,1,11.95,04/21/19 17:34,"763 Lakeview St, Dallas, TX 75001" -181668,27in FHD Monitor,1,149.99,04/13/19 22:25,"397 Forest St, Portland, OR 97035" -181669,LG Dryer,1,600.0,04/04/19 19:44,"41 11th St, Atlanta, GA 30301" -181670,Lightning Charging Cable,1,14.95,04/14/19 14:43,"189 1st St, Seattle, WA 98101" -181671,Apple Airpods Headphones,1,150,04/05/19 15:40,"743 Willow St, Los Angeles, CA 90001" -181672,AAA Batteries (4-pack),2,2.99,04/27/19 21:17,"647 Spruce St, Austin, TX 73301" -181673,ThinkPad Laptop,1,999.99,04/17/19 18:31,"78 Dogwood St, New York City, NY 10001" -181674,Lightning Charging Cable,1,14.95,04/04/19 13:21,"758 5th St, Los Angeles, CA 90001" -181675,27in FHD Monitor,1,149.99,04/25/19 11:13,"120 Pine St, New York City, NY 10001" -181676,Wired Headphones,1,11.99,04/04/19 20:13,"36 12th St, San Francisco, CA 94016" -181677,Wired Headphones,2,11.99,04/12/19 17:51,"833 Lincoln St, New York City, NY 10001" -181678,AAA Batteries (4-pack),1,2.99,04/28/19 02:53,"31 South St, Los Angeles, CA 90001" -181679,Apple Airpods Headphones,1,150,04/17/19 11:28,"495 9th St, New York City, NY 10001" -181680,AA Batteries (4-pack),1,3.84,04/24/19 09:47,"123 West St, Dallas, TX 75001" -181681,Apple Airpods Headphones,1,150,04/23/19 18:05,"635 Highland St, Los Angeles, CA 90001" -181682,Wired Headphones,1,11.99,04/16/19 10:15,"550 Park St, Los Angeles, CA 90001" -181683,Google Phone,1,600,04/26/19 13:43,"493 Jackson St, Boston, MA 02215" -181684,AAA Batteries (4-pack),1,2.99,04/14/19 11:41,"134 8th St, San Francisco, CA 94016" -181685,Lightning Charging Cable,1,14.95,04/21/19 22:01,"798 Madison St, Austin, TX 73301" -181686,Apple Airpods Headphones,1,150,04/28/19 10:41,"123 Walnut St, New York City, NY 10001" -181687,iPhone,1,700,04/02/19 22:36,"761 Elm St, Seattle, WA 98101" -181688,ThinkPad Laptop,1,999.99,05/01/19 02:07,"123 4th St, San Francisco, CA 94016" -181689,Wired Headphones,1,11.99,04/02/19 11:23,"5 Madison St, Dallas, TX 75001" -181690,Lightning Charging Cable,1,14.95,04/23/19 08:22,"990 2nd St, San Francisco, CA 94016" -181691,iPhone,1,700,04/09/19 10:54,"179 Highland St, San Francisco, CA 94016" -181692,USB-C Charging Cable,1,11.95,04/03/19 15:28,"398 North St, Portland, OR 97035" -181693,USB-C Charging Cable,1,11.95,04/18/19 18:42,"743 9th St, Seattle, WA 98101" -181694,34in Ultrawide Monitor,1,379.99,04/27/19 12:19,"205 10th St, Austin, TX 73301" -181695,USB-C Charging Cable,1,11.95,04/14/19 11:01,"306 Sunset St, Atlanta, GA 30301" -181696,AAA Batteries (4-pack),2,2.99,04/02/19 14:44,"728 7th St, Dallas, TX 75001" -181697,Google Phone,1,600,04/08/19 16:06,"834 Cherry St, San Francisco, CA 94016" -181697,USB-C Charging Cable,1,11.95,04/08/19 16:06,"834 Cherry St, San Francisco, CA 94016" -181698,Lightning Charging Cable,1,14.95,04/09/19 02:02,"412 Lakeview St, San Francisco, CA 94016" -181699,Wired Headphones,1,11.99,04/26/19 18:10,"397 Washington St, San Francisco, CA 94016" -181700,20in Monitor,1,109.99,04/04/19 14:14,"88 Main St, Austin, TX 73301" -181701,AAA Batteries (4-pack),1,2.99,04/05/19 10:40,"657 Chestnut St, Boston, MA 02215" -181702,Lightning Charging Cable,3,14.95,04/26/19 19:40,"984 South St, San Francisco, CA 94016" -181703,Wired Headphones,1,11.99,04/16/19 18:11,"171 Dogwood St, New York City, NY 10001" -181704,AA Batteries (4-pack),2,3.84,04/29/19 12:29,"367 Adams St, New York City, NY 10001" -181705,20in Monitor,1,109.99,04/06/19 11:48,"12 Forest St, Los Angeles, CA 90001" -181706,20in Monitor,1,109.99,04/07/19 15:46,"84 7th St, San Francisco, CA 94016" -181707,Lightning Charging Cable,2,14.95,04/26/19 11:32,"401 10th St, Seattle, WA 98101" -181708,Lightning Charging Cable,2,14.95,04/28/19 10:15,"504 2nd St, San Francisco, CA 94016" -181709,AAA Batteries (4-pack),3,2.99,04/04/19 18:02,"18 14th St, Portland, OR 97035" -181710,AA Batteries (4-pack),1,3.84,04/03/19 21:37,"589 Cedar St, Los Angeles, CA 90001" -181711,34in Ultrawide Monitor,1,379.99,04/28/19 08:55,"208 Washington St, San Francisco, CA 94016" -181712,Lightning Charging Cable,1,14.95,04/30/19 08:31,"800 Sunset St, Dallas, TX 75001" -181713,Vareebadd Phone,1,400,04/07/19 21:56,"920 13th St, San Francisco, CA 94016" -181714,USB-C Charging Cable,1,11.95,04/30/19 12:18,"385 South St, Dallas, TX 75001" -181715,27in FHD Monitor,1,149.99,04/15/19 16:13,"195 Wilson St, Boston, MA 02215" -181716,AA Batteries (4-pack),1,3.84,04/27/19 08:21,"108 Washington St, Seattle, WA 98101" -181717,Flatscreen TV,1,300,04/29/19 13:04,"175 Lake St, Los Angeles, CA 90001" -181718,AA Batteries (4-pack),1,3.84,04/01/19 10:42,"869 Jefferson St, San Francisco, CA 94016" -181719,Lightning Charging Cable,1,14.95,04/08/19 10:43,"671 11th St, Boston, MA 02215" -181720,Wired Headphones,1,11.99,04/25/19 21:56,"601 Washington St, New York City, NY 10001" -181721,27in 4K Gaming Monitor,1,389.99,04/19/19 13:04,"631 South St, New York City, NY 10001" -181722,USB-C Charging Cable,1,11.95,04/10/19 16:57,"201 11th St, Atlanta, GA 30301" -181723,Lightning Charging Cable,1,14.95,04/26/19 17:47,"776 Maple St, New York City, NY 10001" -181724,iPhone,1,700,04/12/19 17:52,"691 13th St, Dallas, TX 75001" -181725,iPhone,1,700,04/05/19 11:27,"292 Dogwood St, Los Angeles, CA 90001" -181726,Apple Airpods Headphones,1,150,04/17/19 14:16,"133 Chestnut St, Dallas, TX 75001" -181727,AAA Batteries (4-pack),1,2.99,04/03/19 05:48,"894 Cedar St, Los Angeles, CA 90001" -181728,Apple Airpods Headphones,1,150,04/21/19 20:41,"926 North St, Portland, OR 97035" -181729,Apple Airpods Headphones,1,150,04/05/19 21:34,"940 Maple St, Seattle, WA 98101" -181730,Wired Headphones,1,11.99,04/03/19 09:47,"111 7th St, Seattle, WA 98101" -181731,ThinkPad Laptop,1,999.99,04/01/19 13:22,"222 North St, New York City, NY 10001" -181732,Lightning Charging Cable,1,14.95,04/14/19 19:11,"471 4th St, Dallas, TX 75001" -181733,Lightning Charging Cable,1,14.95,04/27/19 19:47,"186 Main St, San Francisco, CA 94016" -181734,Wired Headphones,1,11.99,04/01/19 09:56,"822 Willow St, San Francisco, CA 94016" -181735,iPhone,1,700,04/03/19 11:18,"637 4th St, Dallas, TX 75001" -181736,iPhone,1,700,04/29/19 20:19,"119 Chestnut St, Portland, ME 04101" -181737,Lightning Charging Cable,1,14.95,04/11/19 13:17,"615 2nd St, Los Angeles, CA 90001" -181738,Bose SoundSport Headphones,1,99.99,04/09/19 18:17,"398 5th St, Dallas, TX 75001" -181739,USB-C Charging Cable,1,11.95,04/26/19 20:09,"443 Elm St, Portland, ME 04101" -181740,ThinkPad Laptop,1,999.99,04/10/19 11:47,"570 7th St, San Francisco, CA 94016" -181741,27in FHD Monitor,1,149.99,04/06/19 20:39,"792 West St, San Francisco, CA 94016" -181742,AA Batteries (4-pack),1,3.84,04/09/19 12:45,"955 Main St, Austin, TX 73301" -181743,AAA Batteries (4-pack),1,2.99,04/26/19 23:04,"411 Church St, New York City, NY 10001" -181744,AA Batteries (4-pack),1,3.84,04/28/19 19:11,"613 7th St, Los Angeles, CA 90001" -181745,Apple Airpods Headphones,1,150,04/14/19 13:32,"901 North St, Dallas, TX 75001" -181746,Wired Headphones,1,11.99,04/14/19 06:38,"644 6th St, New York City, NY 10001" -181747,LG Dryer,1,600.0,04/19/19 17:01,"874 Forest St, Dallas, TX 75001" -181748,Wired Headphones,1,11.99,04/11/19 09:29,"241 Spruce St, Seattle, WA 98101" -181749,Vareebadd Phone,1,400,04/29/19 22:54,"882 12th St, Dallas, TX 75001" -181750,USB-C Charging Cable,1,11.95,04/08/19 02:53,"363 Pine St, Boston, MA 02215" -181751,Flatscreen TV,1,300,04/27/19 20:49,"709 Sunset St, Atlanta, GA 30301" -181752,Flatscreen TV,1,300,04/06/19 22:18,"631 Church St, Los Angeles, CA 90001" -181753,AA Batteries (4-pack),2,3.84,04/16/19 22:56,"202 South St, Austin, TX 73301" -181754,Google Phone,1,600,04/30/19 12:05,"479 Madison St, Boston, MA 02215" -181755,AA Batteries (4-pack),1,3.84,04/06/19 07:33,"887 14th St, San Francisco, CA 94016" -181756,AAA Batteries (4-pack),1,2.99,04/18/19 22:13,"663 Spruce St, Dallas, TX 75001" -181757,Wired Headphones,1,11.99,04/19/19 12:35,"24 Dogwood St, New York City, NY 10001" -181758,Lightning Charging Cable,1,14.95,04/16/19 10:39,"68 13th St, Los Angeles, CA 90001" -181759,USB-C Charging Cable,1,11.95,04/29/19 17:48,"641 Wilson St, San Francisco, CA 94016" -181760,Bose SoundSport Headphones,1,99.99,04/21/19 13:27,"558 Hickory St, Los Angeles, CA 90001" -181761,USB-C Charging Cable,2,11.95,04/01/19 11:58,"434 8th St, Los Angeles, CA 90001" -181762,Vareebadd Phone,1,400,04/15/19 17:24,"290 Cherry St, Austin, TX 73301" -181763,27in FHD Monitor,1,149.99,04/21/19 16:53,"558 Main St, New York City, NY 10001" -181764,27in FHD Monitor,1,149.99,04/11/19 18:01,"912 South St, San Francisco, CA 94016" -181765,Lightning Charging Cable,1,14.95,04/08/19 16:53,"530 West St, Dallas, TX 75001" -181766,Apple Airpods Headphones,1,150,04/15/19 13:51,"445 Jackson St, Seattle, WA 98101" -181767,Lightning Charging Cable,1,14.95,04/05/19 17:21,"961 Jefferson St, Dallas, TX 75001" -181768,Macbook Pro Laptop,1,1700,04/15/19 22:16,"450 Ridge St, San Francisco, CA 94016" -181769,USB-C Charging Cable,1,11.95,04/05/19 16:53,"628 Lakeview St, Austin, TX 73301" -181770,34in Ultrawide Monitor,1,379.99,04/24/19 17:37,"612 Dogwood St, San Francisco, CA 94016" -181771,USB-C Charging Cable,1,11.95,04/15/19 23:12,"178 Jefferson St, Atlanta, GA 30301" -181772,AAA Batteries (4-pack),2,2.99,04/19/19 15:47,"874 South St, Portland, ME 04101" -181773,Apple Airpods Headphones,1,150,04/26/19 20:48,"919 1st St, Atlanta, GA 30301" -181774,Wired Headphones,1,11.99,04/29/19 08:03,"926 West St, San Francisco, CA 94016" -181775,AA Batteries (4-pack),1,3.84,04/30/19 11:02,"679 Church St, New York City, NY 10001" -181776,AAA Batteries (4-pack),2,2.99,04/30/19 13:56,"891 North St, San Francisco, CA 94016" -181777,Bose SoundSport Headphones,1,99.99,04/12/19 19:35,"255 Cherry St, Atlanta, GA 30301" -181778,Bose SoundSport Headphones,1,99.99,04/09/19 19:29,"465 Johnson St, New York City, NY 10001" -181779,Lightning Charging Cable,1,14.95,04/15/19 11:30,"31 Wilson St, Dallas, TX 75001" -181780,Apple Airpods Headphones,1,150,04/21/19 16:58,"728 Spruce St, San Francisco, CA 94016" -181781,Lightning Charging Cable,1,14.95,04/08/19 19:38,"399 Washington St, Portland, OR 97035" -181782,AAA Batteries (4-pack),1,2.99,04/25/19 19:50,"35 4th St, San Francisco, CA 94016" -181783,Bose SoundSport Headphones,1,99.99,04/19/19 19:27,"832 Elm St, San Francisco, CA 94016" -181784,USB-C Charging Cable,1,11.95,04/09/19 13:20,"358 11th St, San Francisco, CA 94016" -181785,27in 4K Gaming Monitor,1,389.99,04/27/19 17:05,"990 Forest St, San Francisco, CA 94016" -181786,USB-C Charging Cable,2,11.95,04/03/19 11:08,"837 Jackson St, San Francisco, CA 94016" -181787,AA Batteries (4-pack),1,3.84,04/05/19 23:47,"708 Lincoln St, Seattle, WA 98101" -181788,27in 4K Gaming Monitor,1,389.99,04/06/19 17:10,"887 Pine St, New York City, NY 10001" -181789,ThinkPad Laptop,1,999.99,04/29/19 23:51,"218 Wilson St, Dallas, TX 75001" -181790,AA Batteries (4-pack),1,3.84,04/03/19 23:04,"7 12th St, Portland, OR 97035" -181791,AA Batteries (4-pack),1,3.84,04/16/19 11:38,"522 Cedar St, New York City, NY 10001" -181792,Wired Headphones,1,11.99,04/16/19 17:47,"752 Pine St, New York City, NY 10001" -181793,Apple Airpods Headphones,1,150,04/06/19 21:43,"272 Lakeview St, San Francisco, CA 94016" -181794,27in 4K Gaming Monitor,1,389.99,04/14/19 19:47,"892 9th St, San Francisco, CA 94016" -181795,USB-C Charging Cable,1,11.95,04/02/19 19:00,"727 Cherry St, Los Angeles, CA 90001" -181796,20in Monitor,1,109.99,04/24/19 20:19,"346 Pine St, New York City, NY 10001" -181797,27in FHD Monitor,1,149.99,04/09/19 17:01,"147 Cedar St, Austin, TX 73301" -181798,AA Batteries (4-pack),1,3.84,04/12/19 18:33,"642 Hill St, Atlanta, GA 30301" -181799,Lightning Charging Cable,1,14.95,04/02/19 08:12,"602 Cedar St, Boston, MA 02215" -181800,Bose SoundSport Headphones,1,99.99,04/02/19 13:58,"950 Center St, Los Angeles, CA 90001" -181801,AA Batteries (4-pack),1,3.84,04/12/19 18:50,"60 Forest St, New York City, NY 10001" -181802,AA Batteries (4-pack),2,3.84,04/27/19 19:52,"861 Hill St, Atlanta, GA 30301" -181803,Bose SoundSport Headphones,1,99.99,04/04/19 22:54,"100 Hill St, San Francisco, CA 94016" -181804,27in FHD Monitor,1,149.99,04/15/19 14:52,"701 Park St, Boston, MA 02215" -181805,USB-C Charging Cable,1,11.95,04/15/19 18:38,"996 Lakeview St, Boston, MA 02215" -181806,USB-C Charging Cable,1,11.95,04/14/19 17:01,"8 7th St, New York City, NY 10001" -181807,iPhone,1,700,04/07/19 16:36,"73 South St, San Francisco, CA 94016" -181807,Lightning Charging Cable,2,14.95,04/07/19 16:36,"73 South St, San Francisco, CA 94016" -181808,27in FHD Monitor,1,149.99,04/03/19 18:16,"343 Lakeview St, New York City, NY 10001" -181809,AA Batteries (4-pack),1,3.84,04/29/19 13:26,"351 8th St, New York City, NY 10001" -181810,AA Batteries (4-pack),3,3.84,04/09/19 00:14,"416 8th St, Dallas, TX 75001" -181811,AA Batteries (4-pack),1,3.84,04/06/19 06:21,"784 Cedar St, Austin, TX 73301" -181812,Bose SoundSport Headphones,1,99.99,04/08/19 20:46,"917 Hill St, Portland, ME 04101" -181813,Lightning Charging Cable,1,14.95,04/12/19 13:43,"505 Main St, San Francisco, CA 94016" -181814,Bose SoundSport Headphones,1,99.99,04/08/19 17:41,"366 Hickory St, Boston, MA 02215" -181815,Bose SoundSport Headphones,1,99.99,04/02/19 11:59,"85 Highland St, Atlanta, GA 30301" -181816,iPhone,1,700,04/21/19 12:17,"397 Madison St, Dallas, TX 75001" -181817,AAA Batteries (4-pack),1,2.99,04/21/19 10:36,"81 5th St, New York City, NY 10001" -181818,AAA Batteries (4-pack),1,2.99,04/17/19 21:55,"876 14th St, Dallas, TX 75001" -181819,Vareebadd Phone,1,400,04/26/19 05:43,"27 Maple St, Portland, OR 97035" -181819,Wired Headphones,1,11.99,04/26/19 05:43,"27 Maple St, Portland, OR 97035" -181820,Bose SoundSport Headphones,1,99.99,04/28/19 14:24,"810 5th St, Los Angeles, CA 90001" -181821,Apple Airpods Headphones,1,150,04/07/19 08:11,"9 West St, San Francisco, CA 94016" -181822,AA Batteries (4-pack),1,3.84,04/12/19 11:50,"518 Dogwood St, Boston, MA 02215" -181823,Bose SoundSport Headphones,1,99.99,04/18/19 20:10,"503 6th St, Dallas, TX 75001" -181823,AAA Batteries (4-pack),3,2.99,04/18/19 20:10,"503 6th St, Dallas, TX 75001" -181824,Wired Headphones,1,11.99,04/01/19 12:30,"106 2nd St, San Francisco, CA 94016" -181825,34in Ultrawide Monitor,1,379.99,04/13/19 12:33,"371 Cherry St, Seattle, WA 98101" -181826,Lightning Charging Cable,2,14.95,04/06/19 09:13,"541 12th St, Portland, OR 97035" -181827,USB-C Charging Cable,1,11.95,04/22/19 00:06,"618 Sunset St, Boston, MA 02215" -181828,Lightning Charging Cable,1,14.95,04/30/19 17:02,"168 5th St, Seattle, WA 98101" -181829,27in FHD Monitor,1,149.99,04/28/19 17:29,"352 Center St, New York City, NY 10001" -181830,20in Monitor,1,109.99,04/04/19 04:36,"619 11th St, Los Angeles, CA 90001" -181831,USB-C Charging Cable,1,11.95,04/26/19 16:39,"41 Highland St, Austin, TX 73301" -181832,Apple Airpods Headphones,1,150,04/04/19 05:21,"206 11th St, San Francisco, CA 94016" -181833,Wired Headphones,1,11.99,04/16/19 12:28,"365 Johnson St, San Francisco, CA 94016" -181834,Lightning Charging Cable,1,14.95,04/05/19 09:46,"446 Maple St, Los Angeles, CA 90001" -181835,27in 4K Gaming Monitor,1,389.99,04/21/19 10:33,"389 4th St, San Francisco, CA 94016" -181836,Bose SoundSport Headphones,1,99.99,04/15/19 12:22,"436 8th St, New York City, NY 10001" -181837,Wired Headphones,1,11.99,04/18/19 00:11,"969 Johnson St, Boston, MA 02215" -181838,USB-C Charging Cable,1,11.95,04/17/19 11:49,"801 8th St, Seattle, WA 98101" -181839,Wired Headphones,1,11.99,04/02/19 20:00,"461 Forest St, Los Angeles, CA 90001" -181840,AAA Batteries (4-pack),1,2.99,04/04/19 13:32,"515 12th St, San Francisco, CA 94016" -181841,AAA Batteries (4-pack),3,2.99,04/07/19 17:39,"436 Forest St, San Francisco, CA 94016" -181842,27in FHD Monitor,1,149.99,04/04/19 17:25,"93 Walnut St, Austin, TX 73301" -181843,iPhone,1,700,04/12/19 11:20,"9 Madison St, Atlanta, GA 30301" -181843,Apple Airpods Headphones,1,150,04/12/19 11:20,"9 Madison St, Atlanta, GA 30301" -181844,27in 4K Gaming Monitor,1,389.99,04/05/19 09:10,"861 Pine St, Atlanta, GA 30301" -181845,iPhone,1,700,04/12/19 12:34,"786 Johnson St, San Francisco, CA 94016" -181846,USB-C Charging Cable,1,11.95,04/17/19 21:08,"738 Willow St, New York City, NY 10001" -181847,Wired Headphones,1,11.99,04/23/19 01:24,"949 North St, Atlanta, GA 30301" -181848,AAA Batteries (4-pack),1,2.99,04/02/19 18:23,"386 Center St, Los Angeles, CA 90001" -181849,Macbook Pro Laptop,1,1700,04/21/19 17:21,"903 Maple St, Dallas, TX 75001" -181850,AA Batteries (4-pack),3,3.84,04/03/19 16:55,"466 Hill St, Atlanta, GA 30301" -181851,Apple Airpods Headphones,1,150,04/09/19 08:58,"359 Sunset St, Seattle, WA 98101" -181852,Wired Headphones,1,11.99,04/03/19 09:29,"238 Hill St, Seattle, WA 98101" -181853,Google Phone,1,600,04/26/19 15:10,"353 Washington St, San Francisco, CA 94016" -181854,Bose SoundSport Headphones,1,99.99,04/03/19 23:45,"73 Washington St, San Francisco, CA 94016" -181855,Lightning Charging Cable,1,14.95,04/13/19 14:48,"207 13th St, New York City, NY 10001" -181856,Lightning Charging Cable,1,14.95,04/21/19 23:10,"977 5th St, Los Angeles, CA 90001" -181857,Macbook Pro Laptop,1,1700,04/05/19 17:33,"355 Willow St, San Francisco, CA 94016" -181858,iPhone,1,700,04/15/19 20:51,"552 Dogwood St, New York City, NY 10001" -181859,Lightning Charging Cable,1,14.95,04/03/19 08:15,"534 Spruce St, New York City, NY 10001" -181860,Google Phone,1,600,04/21/19 12:43,"704 Park St, San Francisco, CA 94016" -181861,Lightning Charging Cable,1,14.95,04/26/19 12:40,"48 Johnson St, New York City, NY 10001" -181862,iPhone,1,700,04/20/19 10:39,"812 South St, Seattle, WA 98101" -181862,Apple Airpods Headphones,1,150,04/20/19 10:39,"812 South St, Seattle, WA 98101" -181863,AA Batteries (4-pack),1,3.84,04/24/19 13:45,"851 Park St, Portland, OR 97035" -181864,34in Ultrawide Monitor,1,379.99,04/13/19 21:11,"718 14th St, Los Angeles, CA 90001" -181865,27in FHD Monitor,1,149.99,04/30/19 19:38,"223 1st St, San Francisco, CA 94016" -181866,Wired Headphones,1,11.99,04/10/19 11:52,"38 Center St, Seattle, WA 98101" -181867,USB-C Charging Cable,1,11.95,04/16/19 13:16,"693 8th St, Los Angeles, CA 90001" -181868,AAA Batteries (4-pack),1,2.99,04/12/19 18:24,"791 Elm St, San Francisco, CA 94016" -181869,AA Batteries (4-pack),1,3.84,04/12/19 20:32,"470 Ridge St, Boston, MA 02215" -181870,27in FHD Monitor,1,149.99,04/11/19 21:14,"495 Hickory St, New York City, NY 10001" -181871,27in 4K Gaming Monitor,1,389.99,04/26/19 11:55,"29 10th St, Seattle, WA 98101" -181872,AA Batteries (4-pack),1,3.84,04/08/19 18:15,"847 2nd St, New York City, NY 10001" -181873,AA Batteries (4-pack),1,3.84,04/28/19 20:30,"755 Cherry St, New York City, NY 10001" -181874,Google Phone,1,600,04/26/19 22:28,"235 Ridge St, San Francisco, CA 94016" -181875,AA Batteries (4-pack),1,3.84,04/16/19 06:24,"829 Hickory St, San Francisco, CA 94016" -181876,AA Batteries (4-pack),1,3.84,04/30/19 14:39,"804 Hickory St, New York City, NY 10001" -181877,Lightning Charging Cable,1,14.95,04/09/19 12:03,"239 9th St, Portland, OR 97035" -181878,Wired Headphones,1,11.99,04/21/19 09:18,"52 Walnut St, Seattle, WA 98101" -181879,AA Batteries (4-pack),2,3.84,04/12/19 13:30,"115 12th St, Portland, OR 97035" -181880,Apple Airpods Headphones,1,150,04/03/19 09:17,"844 Spruce St, Dallas, TX 75001" -,,,,, -181881,Lightning Charging Cable,1,14.95,04/19/19 11:06,"5 River St, Portland, OR 97035" -181882,Apple Airpods Headphones,1,150,04/06/19 14:09,"381 Jackson St, San Francisco, CA 94016" -181883,AAA Batteries (4-pack),1,2.99,04/12/19 16:33,"34 9th St, Atlanta, GA 30301" -181884,Apple Airpods Headphones,1,150,04/27/19 09:10,"377 13th St, Dallas, TX 75001" -181885,Apple Airpods Headphones,1,150,04/20/19 07:43,"677 Pine St, Los Angeles, CA 90001" -181886,USB-C Charging Cable,1,11.95,04/18/19 16:22,"344 West St, New York City, NY 10001" -181887,Apple Airpods Headphones,1,150,04/04/19 22:48,"343 Washington St, San Francisco, CA 94016" -181888,Wired Headphones,1,11.99,04/27/19 14:15,"321 Jefferson St, Los Angeles, CA 90001" -181889,USB-C Charging Cable,1,11.95,04/14/19 14:51,"810 South St, Boston, MA 02215" -181890,Lightning Charging Cable,1,14.95,04/15/19 15:26,"982 Willow St, Seattle, WA 98101" -181891,27in FHD Monitor,1,149.99,04/15/19 10:59,"669 Park St, San Francisco, CA 94016" -181892,Apple Airpods Headphones,1,150,04/17/19 21:10,"580 Sunset St, Seattle, WA 98101" -181893,Macbook Pro Laptop,1,1700,04/20/19 21:15,"286 11th St, New York City, NY 10001" -181894,iPhone,1,700,04/15/19 17:58,"838 Maple St, Austin, TX 73301" -181895,Bose SoundSport Headphones,1,99.99,04/16/19 22:22,"518 Main St, Dallas, TX 75001" -181896,Lightning Charging Cable,1,14.95,04/10/19 20:47,"458 4th St, Atlanta, GA 30301" -181897,AAA Batteries (4-pack),2,2.99,04/11/19 08:57,"273 Center St, Portland, OR 97035" -181898,Apple Airpods Headphones,1,150,04/15/19 21:05,"424 Jackson St, Atlanta, GA 30301" -181899,AAA Batteries (4-pack),1,2.99,04/07/19 22:12,"19 Lake St, New York City, NY 10001" -181900,Wired Headphones,1,11.99,04/21/19 09:42,"597 Main St, San Francisco, CA 94016" -181901,27in 4K Gaming Monitor,1,389.99,04/06/19 18:19,"734 14th St, Atlanta, GA 30301" -181902,Bose SoundSport Headphones,1,99.99,04/13/19 11:34,"327 5th St, New York City, NY 10001" -181903,Wired Headphones,2,11.99,04/01/19 11:28,"785 Johnson St, Boston, MA 02215" -181904,iPhone,1,700,04/15/19 11:26,"502 Cedar St, Boston, MA 02215" -181904,Lightning Charging Cable,1,14.95,04/15/19 11:26,"502 Cedar St, Boston, MA 02215" -181905,Lightning Charging Cable,1,14.95,04/25/19 21:19,"505 8th St, New York City, NY 10001" -181906,Wired Headphones,1,11.99,04/15/19 13:03,"902 14th St, Portland, OR 97035" -181907,Apple Airpods Headphones,1,150,04/15/19 23:11,"759 West St, Los Angeles, CA 90001" -181908,AA Batteries (4-pack),1,3.84,04/26/19 08:22,"553 Center St, Dallas, TX 75001" -181909,Apple Airpods Headphones,1,150,04/30/19 17:28,"563 Meadow St, Dallas, TX 75001" -181910,AA Batteries (4-pack),1,3.84,04/19/19 13:08,"59 Johnson St, San Francisco, CA 94016" -181911,34in Ultrawide Monitor,1,379.99,04/10/19 15:31,"942 Lakeview St, Atlanta, GA 30301" -181912,Google Phone,1,600,04/29/19 04:34,"218 Willow St, San Francisco, CA 94016" -181913,ThinkPad Laptop,1,999.99,04/19/19 21:44,"751 Cherry St, Portland, ME 04101" -181914,USB-C Charging Cable,1,11.95,04/16/19 10:25,"14 Maple St, Seattle, WA 98101" -181915,AA Batteries (4-pack),1,3.84,04/01/19 11:42,"901 Cedar St, New York City, NY 10001" -181916,Wired Headphones,1,11.99,04/20/19 15:14,"598 Jackson St, San Francisco, CA 94016" -181917,Google Phone,1,600,04/10/19 12:24,"899 Main St, Portland, OR 97035" -181917,USB-C Charging Cable,2,11.95,04/10/19 12:24,"899 Main St, Portland, OR 97035" -181918,Lightning Charging Cable,1,14.95,04/05/19 08:44,"206 Willow St, New York City, NY 10001" -181919,Wired Headphones,1,11.99,04/10/19 13:44,"938 10th St, San Francisco, CA 94016" -181920,34in Ultrawide Monitor,1,379.99,04/04/19 13:13,"730 Church St, New York City, NY 10001" -181921,27in FHD Monitor,1,149.99,04/16/19 16:59,"871 11th St, Atlanta, GA 30301" -181922,Flatscreen TV,1,300,04/20/19 16:02,"393 7th St, New York City, NY 10001" -181923,Wired Headphones,1,11.99,04/04/19 09:49,"744 8th St, Portland, ME 04101" -181924,Apple Airpods Headphones,1,150,04/02/19 15:25,"876 Madison St, San Francisco, CA 94016" -181925,AAA Batteries (4-pack),1,2.99,04/04/19 14:48,"402 Hickory St, Los Angeles, CA 90001" -181926,AA Batteries (4-pack),1,3.84,04/13/19 14:13,"422 Center St, Los Angeles, CA 90001" -181927,USB-C Charging Cable,1,11.95,04/17/19 20:14,"642 7th St, Atlanta, GA 30301" -181928,AA Batteries (4-pack),1,3.84,04/29/19 20:40,"384 Church St, Seattle, WA 98101" -181929,Google Phone,1,600,04/13/19 14:56,"593 13th St, New York City, NY 10001" -181930,Google Phone,1,600,04/30/19 06:26,"833 Hill St, Portland, ME 04101" -181931,USB-C Charging Cable,1,11.95,04/24/19 14:49,"892 Jackson St, Atlanta, GA 30301" -181932,27in 4K Gaming Monitor,1,389.99,04/20/19 14:48,"805 Adams St, Boston, MA 02215" -181933,Bose SoundSport Headphones,1,99.99,04/24/19 23:26,"513 11th St, Atlanta, GA 30301" -181934,27in FHD Monitor,1,149.99,04/17/19 23:37,"847 Lakeview St, Atlanta, GA 30301" -181935,Lightning Charging Cable,1,14.95,04/27/19 22:32,"189 1st St, Los Angeles, CA 90001" -181936,iPhone,1,700,04/27/19 10:21,"368 Cedar St, San Francisco, CA 94016" -181936,Lightning Charging Cable,1,14.95,04/27/19 10:21,"368 Cedar St, San Francisco, CA 94016" -181937,Wired Headphones,1,11.99,04/16/19 21:37,"494 2nd St, Los Angeles, CA 90001" -181938,Apple Airpods Headphones,1,150,04/21/19 16:40,"417 West St, Atlanta, GA 30301" -181939,Lightning Charging Cable,1,14.95,04/08/19 13:42,"325 4th St, Austin, TX 73301" -181940,34in Ultrawide Monitor,1,379.99,04/20/19 12:02,"863 Lake St, Los Angeles, CA 90001" -181941,Wired Headphones,1,11.99,04/01/19 12:32,"738 Lincoln St, Los Angeles, CA 90001" -181941,Lightning Charging Cable,1,14.95,04/01/19 12:32,"738 Lincoln St, Los Angeles, CA 90001" -181942,Google Phone,1,600,04/09/19 17:26,"550 Maple St, Seattle, WA 98101" -181943,27in 4K Gaming Monitor,1,389.99,04/26/19 12:08,"116 South St, New York City, NY 10001" -181944,Wired Headphones,2,11.99,04/23/19 22:36,"749 9th St, New York City, NY 10001" -181945,27in 4K Gaming Monitor,1,389.99,04/10/19 16:58,"709 South St, San Francisco, CA 94016" -181946,Lightning Charging Cable,1,14.95,04/30/19 19:05,"590 Dogwood St, San Francisco, CA 94016" -181947,34in Ultrawide Monitor,1,379.99,04/19/19 22:34,"297 Elm St, Dallas, TX 75001" -181948,AAA Batteries (4-pack),1,2.99,04/08/19 20:09,"782 12th St, Los Angeles, CA 90001" -181949,USB-C Charging Cable,1,11.95,04/13/19 11:00,"587 Adams St, Dallas, TX 75001" -181950,USB-C Charging Cable,1,11.95,04/19/19 14:13,"469 Adams St, San Francisco, CA 94016" -181951,27in FHD Monitor,1,149.99,04/09/19 13:01,"631 North St, San Francisco, CA 94016" -181952,27in FHD Monitor,1,149.99,04/17/19 21:24,"479 Ridge St, New York City, NY 10001" -181953,AA Batteries (4-pack),1,3.84,04/14/19 10:57,"291 Hill St, Atlanta, GA 30301" -181954,AAA Batteries (4-pack),1,2.99,04/22/19 01:19,"774 Johnson St, Boston, MA 02215" -181955,27in 4K Gaming Monitor,1,389.99,04/09/19 17:01,"559 12th St, Atlanta, GA 30301" -181956,AAA Batteries (4-pack),1,2.99,04/08/19 13:25,"795 Meadow St, New York City, NY 10001" -181957,USB-C Charging Cable,1,11.95,04/23/19 12:20,"202 Church St, Austin, TX 73301" -181958,iPhone,1,700,04/26/19 18:55,"38 9th St, Seattle, WA 98101" -181959,Apple Airpods Headphones,1,150,04/04/19 17:32,"774 5th St, New York City, NY 10001" -181960,USB-C Charging Cable,1,11.95,04/01/19 18:37,"628 Walnut St, Atlanta, GA 30301" -181961,Macbook Pro Laptop,1,1700,04/11/19 08:59,"929 River St, San Francisco, CA 94016" -181962,AA Batteries (4-pack),2,3.84,04/29/19 08:02,"385 Adams St, Portland, OR 97035" -181963,AA Batteries (4-pack),2,3.84,04/19/19 13:27,"48 River St, Los Angeles, CA 90001" -181964,USB-C Charging Cable,1,11.95,04/06/19 08:56,"372 Center St, New York City, NY 10001" -181965,AA Batteries (4-pack),2,3.84,04/01/19 11:25,"943 Ridge St, San Francisco, CA 94016" -181966,USB-C Charging Cable,1,11.95,04/27/19 11:35,"955 Highland St, New York City, NY 10001" -181967,AAA Batteries (4-pack),1,2.99,04/12/19 20:03,"541 Willow St, San Francisco, CA 94016" -181968,Apple Airpods Headphones,1,150,04/14/19 19:15,"881 8th St, Atlanta, GA 30301" -181969,AAA Batteries (4-pack),1,2.99,04/30/19 22:07,"919 Willow St, Boston, MA 02215" -181970,AAA Batteries (4-pack),1,2.99,04/05/19 16:38,"480 Willow St, San Francisco, CA 94016" -181971,AAA Batteries (4-pack),2,2.99,04/29/19 14:55,"326 Dogwood St, Boston, MA 02215" -181972,AAA Batteries (4-pack),2,2.99,04/28/19 14:32,"398 Jackson St, Atlanta, GA 30301" -181973,AA Batteries (4-pack),2,3.84,04/27/19 13:14,"543 Highland St, Boston, MA 02215" -181974,Lightning Charging Cable,1,14.95,04/04/19 00:54,"455 Wilson St, Los Angeles, CA 90001" -181975,AA Batteries (4-pack),2,3.84,04/19/19 18:57,"453 Main St, Los Angeles, CA 90001" -181976,USB-C Charging Cable,4,11.95,04/02/19 11:02,"561 2nd St, Atlanta, GA 30301" -181977,Macbook Pro Laptop,1,1700,04/26/19 21:51,"671 Highland St, Los Angeles, CA 90001" -181978,Macbook Pro Laptop,1,1700,04/22/19 10:57,"485 5th St, Atlanta, GA 30301" -181979,Vareebadd Phone,1,400,04/08/19 11:04,"242 Church St, Boston, MA 02215" -181979,USB-C Charging Cable,1,11.95,04/08/19 11:04,"242 Church St, Boston, MA 02215" -181980,20in Monitor,1,109.99,04/29/19 21:39,"500 Willow St, Austin, TX 73301" -181981,USB-C Charging Cable,1,11.95,04/30/19 21:43,"831 Wilson St, Boston, MA 02215" -181982,Apple Airpods Headphones,2,150,04/22/19 22:51,"162 Washington St, San Francisco, CA 94016" -181983,ThinkPad Laptop,1,999.99,04/05/19 15:08,"3 Elm St, Dallas, TX 75001" -181984,Wired Headphones,1,11.99,04/22/19 20:15,"425 14th St, Seattle, WA 98101" -181985,iPhone,1,700,04/09/19 21:12,"29 Meadow St, New York City, NY 10001" -181986,Lightning Charging Cable,2,14.95,04/26/19 19:24,"545 13th St, Boston, MA 02215" -181987,AAA Batteries (4-pack),1,2.99,04/21/19 08:30,"892 Jackson St, Los Angeles, CA 90001" -181988,Lightning Charging Cable,1,14.95,04/21/19 13:01,"759 Lakeview St, Atlanta, GA 30301" -181989,USB-C Charging Cable,1,11.95,04/23/19 10:42,"967 Elm St, Austin, TX 73301" -181990,Wired Headphones,1,11.99,04/12/19 09:57,"561 Cedar St, San Francisco, CA 94016" -181991,AAA Batteries (4-pack),1,2.99,04/12/19 21:34,"311 4th St, Seattle, WA 98101" -181992,Lightning Charging Cable,1,14.95,04/25/19 19:29,"244 Spruce St, Dallas, TX 75001" -181993,USB-C Charging Cable,1,11.95,04/05/19 13:29,"244 Madison St, San Francisco, CA 94016" -181994,AAA Batteries (4-pack),1,2.99,04/07/19 15:05,"724 Highland St, Los Angeles, CA 90001" -181995,AA Batteries (4-pack),1,3.84,04/06/19 09:02,"263 7th St, San Francisco, CA 94016" -181996,AAA Batteries (4-pack),1,2.99,04/16/19 22:46,"912 Church St, San Francisco, CA 94016" -181997,USB-C Charging Cable,1,11.95,04/24/19 08:45,"687 13th St, Boston, MA 02215" -181998,Flatscreen TV,1,300,04/09/19 09:05,"89 Lake St, San Francisco, CA 94016" -181999,Apple Airpods Headphones,1,150,04/06/19 07:17,"966 Lincoln St, New York City, NY 10001" -181999,Wired Headphones,1,11.99,04/06/19 07:17,"966 Lincoln St, New York City, NY 10001" -182000,Lightning Charging Cable,1,14.95,04/14/19 22:03,"215 Adams St, Boston, MA 02215" -182001,AAA Batteries (4-pack),1,2.99,04/27/19 19:06,"738 Ridge St, Portland, OR 97035" -182002,USB-C Charging Cable,2,11.95,04/04/19 20:17,"347 Adams St, New York City, NY 10001" -182003,Flatscreen TV,1,300,04/22/19 15:46,"712 Lake St, New York City, NY 10001" -182004,Apple Airpods Headphones,1,150,04/11/19 21:00,"273 Cedar St, New York City, NY 10001" -182005,AAA Batteries (4-pack),2,2.99,04/03/19 19:25,"169 11th St, New York City, NY 10001" -182006,Wired Headphones,1,11.99,04/30/19 14:46,"471 11th St, Boston, MA 02215" -182007,USB-C Charging Cable,1,11.95,04/21/19 12:35,"517 Center St, Atlanta, GA 30301" -182008,Wired Headphones,1,11.99,04/23/19 08:25,"519 Lincoln St, New York City, NY 10001" -182009,AAA Batteries (4-pack),1,2.99,04/24/19 11:01,"282 Lake St, Portland, OR 97035" -182010,Lightning Charging Cable,1,14.95,04/17/19 16:37,"305 Spruce St, New York City, NY 10001" -182011,Apple Airpods Headphones,1,150,04/12/19 19:48,"92 8th St, Atlanta, GA 30301" -182012,20in Monitor,1,109.99,04/30/19 13:35,"93 Willow St, San Francisco, CA 94016" -182013,27in 4K Gaming Monitor,1,389.99,04/11/19 13:41,"339 Center St, Los Angeles, CA 90001" -182014,34in Ultrawide Monitor,1,379.99,04/21/19 08:04,"747 Dogwood St, Los Angeles, CA 90001" -182015,Bose SoundSport Headphones,1,99.99,04/18/19 15:16,"735 Wilson St, Dallas, TX 75001" -182016,27in 4K Gaming Monitor,1,389.99,04/06/19 01:58,"214 River St, Los Angeles, CA 90001" -182017,AA Batteries (4-pack),2,3.84,04/14/19 12:15,"141 8th St, San Francisco, CA 94016" -182018,iPhone,1,700,04/21/19 15:37,"165 13th St, Los Angeles, CA 90001" -182019,AA Batteries (4-pack),1,3.84,04/10/19 12:18,"380 Ridge St, Seattle, WA 98101" -182020,USB-C Charging Cable,1,11.95,04/14/19 14:52,"246 6th St, Portland, OR 97035" -182021,AA Batteries (4-pack),1,3.84,04/08/19 14:12,"482 Highland St, New York City, NY 10001" -182022,Google Phone,1,600,04/19/19 15:32,"840 South St, Boston, MA 02215" -182023,AAA Batteries (4-pack),2,2.99,04/17/19 09:49,"601 13th St, Los Angeles, CA 90001" -182024,Google Phone,1,600,04/19/19 22:50,"741 1st St, San Francisco, CA 94016" -182024,Bose SoundSport Headphones,1,99.99,04/19/19 22:50,"741 1st St, San Francisco, CA 94016" -182025,Lightning Charging Cable,1,14.95,04/21/19 19:56,"608 Walnut St, Boston, MA 02215" -182026,Macbook Pro Laptop,1,1700,04/19/19 11:30,"778 Jackson St, Seattle, WA 98101" -182027,AA Batteries (4-pack),1,3.84,04/07/19 08:28,"335 6th St, Seattle, WA 98101" -182027,Apple Airpods Headphones,1,150,04/07/19 08:28,"335 6th St, Seattle, WA 98101" -182028,27in 4K Gaming Monitor,1,389.99,04/25/19 16:49,"34 Hickory St, Atlanta, GA 30301" -182029,34in Ultrawide Monitor,1,379.99,04/30/19 19:37,"584 Highland St, New York City, NY 10001" -182030,Bose SoundSport Headphones,1,99.99,04/16/19 18:24,"167 8th St, San Francisco, CA 94016" -182031,AAA Batteries (4-pack),3,2.99,04/21/19 11:43,"275 Maple St, New York City, NY 10001" -182032,AA Batteries (4-pack),1,3.84,04/26/19 12:34,"483 Jefferson St, Boston, MA 02215" -182033,Bose SoundSport Headphones,1,99.99,04/04/19 14:21,"185 North St, Boston, MA 02215" -182034,Wired Headphones,1,11.99,04/28/19 20:48,"827 Chestnut St, San Francisco, CA 94016" -182035,20in Monitor,1,109.99,04/30/19 17:25,"130 Lake St, Seattle, WA 98101" -182036,27in FHD Monitor,1,149.99,04/10/19 07:52,"82 14th St, Austin, TX 73301" -182037,USB-C Charging Cable,1,11.95,04/20/19 09:05,"982 9th St, Atlanta, GA 30301" -182038,27in FHD Monitor,1,149.99,04/21/19 21:49,"42 Chestnut St, San Francisco, CA 94016" -182039,Lightning Charging Cable,1,14.95,04/24/19 19:19,"377 Adams St, Seattle, WA 98101" -182040,34in Ultrawide Monitor,1,379.99,04/15/19 09:26,"175 Jefferson St, Atlanta, GA 30301" -182041,USB-C Charging Cable,1,11.95,04/19/19 15:49,"366 8th St, Los Angeles, CA 90001" -182042,Bose SoundSport Headphones,1,99.99,04/19/19 17:52,"417 1st St, San Francisco, CA 94016" -182043,34in Ultrawide Monitor,1,379.99,04/16/19 22:16,"348 Highland St, San Francisco, CA 94016" -182043,Wired Headphones,1,11.99,04/16/19 22:16,"348 Highland St, San Francisco, CA 94016" -182044,Wired Headphones,1,11.99,04/05/19 08:03,"890 Wilson St, San Francisco, CA 94016" -182045,27in 4K Gaming Monitor,1,389.99,04/05/19 11:00,"170 Highland St, Seattle, WA 98101" -182046,Apple Airpods Headphones,1,150,04/26/19 07:07,"620 Hill St, Atlanta, GA 30301" -182047,Wired Headphones,1,11.99,04/22/19 05:01,"384 Lake St, Portland, OR 97035" -182048,AA Batteries (4-pack),1,3.84,04/14/19 13:16,"745 South St, San Francisco, CA 94016" -182049,Flatscreen TV,1,300,04/17/19 11:35,"213 1st St, New York City, NY 10001" -182050,Flatscreen TV,1,300,04/23/19 19:40,"871 9th St, Portland, OR 97035" -182051,AAA Batteries (4-pack),1,2.99,04/25/19 15:29,"690 4th St, Atlanta, GA 30301" -182052,Wired Headphones,1,11.99,04/02/19 09:43,"745 Meadow St, Boston, MA 02215" -182053,USB-C Charging Cable,1,11.95,04/22/19 10:33,"882 14th St, New York City, NY 10001" -182054,27in FHD Monitor,1,149.99,04/18/19 14:12,"564 Lakeview St, Los Angeles, CA 90001" -182055,27in FHD Monitor,1,149.99,04/06/19 22:43,"943 12th St, San Francisco, CA 94016" -182056,27in FHD Monitor,1,149.99,04/27/19 16:40,"537 13th St, Austin, TX 73301" -182057,Lightning Charging Cable,1,14.95,04/28/19 19:02,"464 Dogwood St, Los Angeles, CA 90001" -182058,Vareebadd Phone,1,400,04/09/19 12:54,"112 14th St, Atlanta, GA 30301" -182059,AAA Batteries (4-pack),2,2.99,04/30/19 20:58,"541 11th St, Seattle, WA 98101" -182060,iPhone,1,700,04/02/19 20:00,"763 Adams St, San Francisco, CA 94016" -182060,Lightning Charging Cable,1,14.95,04/02/19 20:00,"763 Adams St, San Francisco, CA 94016" -182061,Macbook Pro Laptop,1,1700,04/09/19 19:20,"92 Willow St, Seattle, WA 98101" -182062,AAA Batteries (4-pack),1,2.99,04/02/19 04:54,"87 Hill St, Los Angeles, CA 90001" -182063,AA Batteries (4-pack),1,3.84,04/14/19 10:43,"362 Washington St, Portland, ME 04101" -182064,Apple Airpods Headphones,1,150,04/18/19 12:06,"24 8th St, Atlanta, GA 30301" -182065,20in Monitor,1,109.99,04/21/19 14:16,"179 Hickory St, New York City, NY 10001" -182066,Flatscreen TV,1,300,04/26/19 01:03,"879 Maple St, Los Angeles, CA 90001" -182067,Vareebadd Phone,1,400,04/21/19 20:09,"970 14th St, Los Angeles, CA 90001" -182068,Wired Headphones,1,11.99,04/04/19 11:09,"701 Lincoln St, Los Angeles, CA 90001" -182069,Apple Airpods Headphones,1,150,04/28/19 12:45,"450 Main St, Los Angeles, CA 90001" -182070,USB-C Charging Cable,1,11.95,04/14/19 18:29,"513 Pine St, San Francisco, CA 94016" -182071,AAA Batteries (4-pack),1,2.99,04/20/19 12:57,"768 Elm St, Boston, MA 02215" -182072,AAA Batteries (4-pack),1,2.99,04/26/19 13:29,"615 1st St, Dallas, TX 75001" -182073,AAA Batteries (4-pack),1,2.99,04/20/19 10:15,"418 1st St, Boston, MA 02215" -182074,Lightning Charging Cable,1,14.95,04/19/19 12:09,"557 Lakeview St, New York City, NY 10001" -182075,Lightning Charging Cable,1,14.95,04/02/19 12:35,"512 Elm St, Dallas, TX 75001" -182076,USB-C Charging Cable,1,11.95,04/26/19 08:23,"305 Jackson St, Atlanta, GA 30301" -182077,AAA Batteries (4-pack),1,2.99,04/13/19 22:08,"730 4th St, New York City, NY 10001" -182077,AAA Batteries (4-pack),1,2.99,04/13/19 22:08,"730 4th St, New York City, NY 10001" -182078,AA Batteries (4-pack),1,3.84,04/19/19 09:21,"277 5th St, Dallas, TX 75001" -182079,Apple Airpods Headphones,1,150,04/05/19 00:14,"543 Jackson St, San Francisco, CA 94016" -182080,USB-C Charging Cable,1,11.95,04/05/19 14:22,"895 Chestnut St, New York City, NY 10001" -182081,Wired Headphones,1,11.99,04/27/19 12:11,"3 Hickory St, Boston, MA 02215" -182082,Wired Headphones,1,11.99,04/02/19 18:10,"420 Main St, New York City, NY 10001" -182083,Wired Headphones,1,11.99,04/14/19 21:44,"492 13th St, Seattle, WA 98101" -182084,AAA Batteries (4-pack),1,2.99,04/17/19 18:32,"633 Hickory St, Dallas, TX 75001" -182085,Lightning Charging Cable,1,14.95,04/18/19 14:42,"579 Cherry St, Austin, TX 73301" -182086,Google Phone,1,600,04/09/19 01:17,"177 Chestnut St, Portland, OR 97035" -182087,AAA Batteries (4-pack),1,2.99,04/12/19 19:13,"892 12th St, Austin, TX 73301" -182087,27in FHD Monitor,1,149.99,04/12/19 19:13,"892 12th St, Austin, TX 73301" -182088,Macbook Pro Laptop,1,1700,04/10/19 11:29,"21 2nd St, Boston, MA 02215" -182089,AAA Batteries (4-pack),1,2.99,04/15/19 22:02,"733 Hill St, Boston, MA 02215" -182090,USB-C Charging Cable,1,11.95,04/10/19 12:07,"1 North St, Portland, ME 04101" -182091,Lightning Charging Cable,1,14.95,04/27/19 18:20,"456 Johnson St, San Francisco, CA 94016" -182092,Bose SoundSport Headphones,1,99.99,04/30/19 12:20,"821 River St, New York City, NY 10001" -182093,Bose SoundSport Headphones,1,99.99,04/18/19 11:48,"356 Pine St, Los Angeles, CA 90001" -182093,AAA Batteries (4-pack),3,2.99,04/18/19 11:48,"356 Pine St, Los Angeles, CA 90001" -182094,ThinkPad Laptop,1,999.99,04/09/19 17:38,"923 Wilson St, Los Angeles, CA 90001" -182095,34in Ultrawide Monitor,1,379.99,04/28/19 13:27,"683 Forest St, Boston, MA 02215" -182096,Lightning Charging Cable,1,14.95,04/15/19 21:38,"525 1st St, New York City, NY 10001" -182097,iPhone,1,700,04/08/19 16:14,"327 Highland St, Portland, ME 04101" -182098,Lightning Charging Cable,1,14.95,04/29/19 13:03,"81 Walnut St, San Francisco, CA 94016" -182099,Google Phone,1,600,04/02/19 18:13,"192 14th St, Atlanta, GA 30301" -182099,USB-C Charging Cable,1,11.95,04/02/19 18:13,"192 14th St, Atlanta, GA 30301" -182100,Lightning Charging Cable,1,14.95,04/11/19 20:27,"377 2nd St, Seattle, WA 98101" -182100,AAA Batteries (4-pack),1,2.99,04/11/19 20:27,"377 2nd St, Seattle, WA 98101" -182101,USB-C Charging Cable,1,11.95,04/01/19 12:45,"139 West St, Los Angeles, CA 90001" -182102,Wired Headphones,1,11.99,04/10/19 19:46,"895 5th St, Los Angeles, CA 90001" -182103,USB-C Charging Cable,1,11.95,04/20/19 14:08,"737 Chestnut St, Los Angeles, CA 90001" -182104,ThinkPad Laptop,1,999.99,04/03/19 19:07,"777 Wilson St, New York City, NY 10001" -182105,Bose SoundSport Headphones,1,99.99,04/26/19 11:05,"170 1st St, Seattle, WA 98101" -182106,Wired Headphones,1,11.99,04/29/19 14:33,"930 West St, San Francisco, CA 94016" -182107,Wired Headphones,1,11.99,04/03/19 07:27,"434 Park St, Dallas, TX 75001" -182108,27in FHD Monitor,1,149.99,04/21/19 20:24,"19 River St, Austin, TX 73301" -182109,AAA Batteries (4-pack),1,2.99,04/23/19 18:05,"981 Jackson St, San Francisco, CA 94016" -182110,Macbook Pro Laptop,1,1700,04/27/19 22:42,"302 Forest St, Boston, MA 02215" -182111,Lightning Charging Cable,1,14.95,04/12/19 20:28,"108 Sunset St, Los Angeles, CA 90001" -182112,AA Batteries (4-pack),1,3.84,04/13/19 11:17,"498 Chestnut St, Portland, OR 97035" -182113,Wired Headphones,1,11.99,04/30/19 21:24,"235 1st St, San Francisco, CA 94016" -182114,27in 4K Gaming Monitor,1,389.99,04/22/19 00:53,"152 2nd St, San Francisco, CA 94016" -182115,AA Batteries (4-pack),1,3.84,04/23/19 21:40,"345 River St, Austin, TX 73301" -182116,Bose SoundSport Headphones,1,99.99,04/21/19 12:44,"475 Spruce St, San Francisco, CA 94016" -182117,34in Ultrawide Monitor,1,379.99,04/09/19 19:24,"253 Lake St, Portland, ME 04101" -182118,Wired Headphones,2,11.99,04/16/19 11:04,"27 Main St, San Francisco, CA 94016" -182119,AA Batteries (4-pack),1,3.84,04/29/19 23:04,"932 Pine St, Austin, TX 73301" -182120,AAA Batteries (4-pack),1,2.99,04/27/19 20:35,"930 4th St, Atlanta, GA 30301" -182121,Lightning Charging Cable,1,14.95,04/01/19 14:07,"460 Cherry St, Los Angeles, CA 90001" -182122,20in Monitor,1,109.99,04/26/19 07:59,"413 Maple St, New York City, NY 10001" -182123,27in 4K Gaming Monitor,1,389.99,04/20/19 19:35,"651 Madison St, Boston, MA 02215" -182124,Vareebadd Phone,1,400,04/01/19 13:24,"500 Hickory St, Los Angeles, CA 90001" -182125,iPhone,1,700,04/02/19 18:24,"757 10th St, Boston, MA 02215" -182125,Lightning Charging Cable,1,14.95,04/02/19 18:24,"757 10th St, Boston, MA 02215" -182126,Apple Airpods Headphones,1,150,04/11/19 07:37,"885 Lake St, Los Angeles, CA 90001" -182127,Lightning Charging Cable,1,14.95,04/21/19 11:04,"55 Washington St, Los Angeles, CA 90001" -182128,Wired Headphones,2,11.99,04/13/19 17:44,"596 Walnut St, Dallas, TX 75001" -182129,USB-C Charging Cable,1,11.95,04/15/19 10:24,"957 South St, San Francisco, CA 94016" -182130,Apple Airpods Headphones,1,150,04/08/19 07:55,"834 Wilson St, Los Angeles, CA 90001" -182131,Lightning Charging Cable,1,14.95,04/21/19 11:37,"565 River St, San Francisco, CA 94016" -182132,AA Batteries (4-pack),2,3.84,04/11/19 06:07,"369 12th St, Austin, TX 73301" -182133,Lightning Charging Cable,1,14.95,04/14/19 09:49,"120 Washington St, Dallas, TX 75001" -182134,USB-C Charging Cable,1,11.95,04/09/19 20:02,"647 Highland St, Los Angeles, CA 90001" -182135,USB-C Charging Cable,1,11.95,04/09/19 11:07,"554 South St, Boston, MA 02215" -182136,20in Monitor,1,109.99,04/10/19 11:40,"306 Cherry St, Boston, MA 02215" -182136,Lightning Charging Cable,1,14.95,04/10/19 11:40,"306 Cherry St, Boston, MA 02215" -182137,34in Ultrawide Monitor,1,379.99,04/12/19 11:48,"65 Cedar St, San Francisco, CA 94016" -182138,AA Batteries (4-pack),2,3.84,04/16/19 10:12,"279 Maple St, Boston, MA 02215" -182139,Macbook Pro Laptop,1,1700,04/17/19 10:47,"878 Washington St, San Francisco, CA 94016" -182140,Wired Headphones,1,11.99,04/27/19 19:33,"39 River St, San Francisco, CA 94016" -182141,AA Batteries (4-pack),1,3.84,04/22/19 22:18,"504 8th St, Seattle, WA 98101" -182142,AA Batteries (4-pack),2,3.84,04/04/19 10:45,"837 Dogwood St, Boston, MA 02215" -182143,AAA Batteries (4-pack),1,2.99,04/11/19 14:18,"570 Willow St, Boston, MA 02215" -182144,AA Batteries (4-pack),2,3.84,04/17/19 10:27,"268 Hickory St, San Francisco, CA 94016" -182145,Wired Headphones,1,11.99,04/21/19 02:16,"781 Elm St, Boston, MA 02215" -182146,34in Ultrawide Monitor,1,379.99,04/21/19 07:30,"500 South St, Portland, OR 97035" -182147,Vareebadd Phone,1,400,04/06/19 13:31,"967 Johnson St, Portland, ME 04101" -182147,USB-C Charging Cable,2,11.95,04/06/19 13:31,"967 Johnson St, Portland, ME 04101" -182148,Google Phone,1,600,04/05/19 09:31,"675 Maple St, San Francisco, CA 94016" -182149,Wired Headphones,1,11.99,04/16/19 00:09,"667 Jefferson St, Portland, ME 04101" -182150,Bose SoundSport Headphones,1,99.99,04/17/19 23:04,"159 Madison St, Dallas, TX 75001" -182151,Wired Headphones,1,11.99,04/05/19 11:59,"97 Highland St, San Francisco, CA 94016" -182152,27in 4K Gaming Monitor,1,389.99,04/27/19 10:25,"764 9th St, Dallas, TX 75001" -182153,AA Batteries (4-pack),1,3.84,04/04/19 04:16,"182 14th St, Atlanta, GA 30301" -182154,Bose SoundSport Headphones,1,99.99,04/05/19 17:57,"259 7th St, Austin, TX 73301" -182155,USB-C Charging Cable,1,11.95,04/06/19 17:49,"71 North St, Dallas, TX 75001" -182156,Wired Headphones,1,11.99,04/17/19 11:03,"986 14th St, Dallas, TX 75001" -182157,Apple Airpods Headphones,1,150,04/15/19 11:54,"229 Johnson St, Atlanta, GA 30301" -182158,Bose SoundSport Headphones,1,99.99,04/26/19 17:11,"471 Cherry St, San Francisco, CA 94016" -182158,ThinkPad Laptop,1,999.99,04/26/19 17:11,"471 Cherry St, San Francisco, CA 94016" -182159,Apple Airpods Headphones,1,150,04/09/19 21:50,"579 Dogwood St, Seattle, WA 98101" -182160,USB-C Charging Cable,1,11.95,04/15/19 16:10,"18 13th St, Los Angeles, CA 90001" -182161,AAA Batteries (4-pack),2,2.99,04/24/19 16:48,"135 Maple St, Atlanta, GA 30301" -182162,27in FHD Monitor,1,149.99,04/06/19 08:14,"593 Center St, San Francisco, CA 94016" -182163,Lightning Charging Cable,1,14.95,04/07/19 23:25,"480 Meadow St, San Francisco, CA 94016" -182164,Wired Headphones,2,11.99,04/22/19 22:25,"472 Washington St, Dallas, TX 75001" -182165,USB-C Charging Cable,2,11.95,04/24/19 13:55,"346 5th St, Boston, MA 02215" -182166,Lightning Charging Cable,1,14.95,04/19/19 08:38,"805 9th St, Los Angeles, CA 90001" -182167,AAA Batteries (4-pack),1,2.99,04/05/19 18:31,"478 Johnson St, New York City, NY 10001" -182168,AA Batteries (4-pack),1,3.84,04/27/19 10:48,"646 10th St, New York City, NY 10001" -182168,Apple Airpods Headphones,1,150,04/27/19 10:48,"646 10th St, New York City, NY 10001" -182169,20in Monitor,1,109.99,04/06/19 10:56,"678 Lakeview St, Los Angeles, CA 90001" -182170,27in 4K Gaming Monitor,1,389.99,04/26/19 11:07,"709 12th St, Boston, MA 02215" -182171,Wired Headphones,1,11.99,04/08/19 17:48,"691 Madison St, Boston, MA 02215" -182172,USB-C Charging Cable,1,11.95,04/19/19 12:20,"497 Jackson St, Boston, MA 02215" -182173,USB-C Charging Cable,1,11.95,04/05/19 23:32,"544 Willow St, San Francisco, CA 94016" -182174,AA Batteries (4-pack),1,3.84,04/20/19 21:37,"232 Highland St, San Francisco, CA 94016" -182175,USB-C Charging Cable,1,11.95,04/25/19 18:37,"375 Forest St, San Francisco, CA 94016" -182176,USB-C Charging Cable,1,11.95,04/11/19 18:24,"905 Johnson St, Boston, MA 02215" -182176,AA Batteries (4-pack),1,3.84,04/11/19 18:24,"905 Johnson St, Boston, MA 02215" -182177,34in Ultrawide Monitor,1,379.99,04/15/19 13:59,"9 Wilson St, Boston, MA 02215" -182178,Wired Headphones,2,11.99,04/02/19 22:49,"434 Dogwood St, Portland, OR 97035" -182179,AAA Batteries (4-pack),3,2.99,04/13/19 20:34,"381 Hickory St, Seattle, WA 98101" -182180,ThinkPad Laptop,1,999.99,04/17/19 18:11,"828 Wilson St, Dallas, TX 75001" -182181,27in 4K Gaming Monitor,1,389.99,04/25/19 23:11,"506 Madison St, Atlanta, GA 30301" -182182,27in 4K Gaming Monitor,1,389.99,04/10/19 12:42,"829 Forest St, Boston, MA 02215" -182183,Flatscreen TV,1,300,04/12/19 11:02,"731 Lincoln St, Boston, MA 02215" -182184,AAA Batteries (4-pack),1,2.99,04/12/19 20:43,"632 11th St, Los Angeles, CA 90001" -182185,Wired Headphones,1,11.99,04/22/19 21:09,"893 11th St, Los Angeles, CA 90001" -182186,Bose SoundSport Headphones,1,99.99,04/14/19 12:37,"368 South St, Austin, TX 73301" -182187,USB-C Charging Cable,1,11.95,04/23/19 19:54,"439 4th St, San Francisco, CA 94016" -182188,Apple Airpods Headphones,1,150,04/08/19 22:26,"159 Main St, San Francisco, CA 94016" -182189,Lightning Charging Cable,1,14.95,04/16/19 01:56,"425 Dogwood St, Seattle, WA 98101" -182190,AAA Batteries (4-pack),1,2.99,04/14/19 17:56,"623 North St, New York City, NY 10001" -182191,Bose SoundSport Headphones,1,99.99,04/30/19 10:28,"306 Cherry St, Portland, OR 97035" -182192,27in 4K Gaming Monitor,1,389.99,04/22/19 13:39,"398 Hickory St, Atlanta, GA 30301" -182193,AAA Batteries (4-pack),1,2.99,04/09/19 15:28,"202 Pine St, San Francisco, CA 94016" -182194,Apple Airpods Headphones,1,150,04/10/19 21:38,"497 14th St, Boston, MA 02215" -182195,Apple Airpods Headphones,1,150,04/23/19 20:57,"539 Adams St, Los Angeles, CA 90001" -182196,27in FHD Monitor,1,149.99,04/16/19 12:08,"133 Chestnut St, San Francisco, CA 94016" -182197,ThinkPad Laptop,1,999.99,04/18/19 10:12,"953 Pine St, San Francisco, CA 94016" -182198,iPhone,1,700,04/24/19 19:34,"443 North St, Boston, MA 02215" -182199,USB-C Charging Cable,1,11.95,04/15/19 21:13,"300 Willow St, Los Angeles, CA 90001" -182200,USB-C Charging Cable,1,11.95,04/21/19 00:15,"721 5th St, Los Angeles, CA 90001" -182201,AAA Batteries (4-pack),1,2.99,04/19/19 12:22,"892 Lincoln St, Portland, OR 97035" -182202,Google Phone,1,600,04/26/19 15:04,"165 Hill St, Seattle, WA 98101" -182203,AAA Batteries (4-pack),1,2.99,04/24/19 22:18,"786 Highland St, Los Angeles, CA 90001" -182204,Bose SoundSport Headphones,1,99.99,04/15/19 19:18,"163 Lakeview St, New York City, NY 10001" -182205,USB-C Charging Cable,1,11.95,04/28/19 21:33,"874 14th St, San Francisco, CA 94016" -182206,34in Ultrawide Monitor,1,379.99,04/22/19 11:11,"340 6th St, San Francisco, CA 94016" -182207,USB-C Charging Cable,2,11.95,04/04/19 13:23,"908 6th St, Los Angeles, CA 90001" -182208,AA Batteries (4-pack),1,3.84,04/10/19 05:08,"33 1st St, San Francisco, CA 94016" -182209,27in 4K Gaming Monitor,1,389.99,04/17/19 21:41,"339 Lincoln St, Los Angeles, CA 90001" -182210,Flatscreen TV,1,300,04/17/19 18:55,"688 Walnut St, Austin, TX 73301" -182211,AAA Batteries (4-pack),1,2.99,04/24/19 13:28,"74 10th St, San Francisco, CA 94016" -182212,Lightning Charging Cable,1,14.95,04/07/19 10:03,"915 12th St, Los Angeles, CA 90001" -182213,USB-C Charging Cable,1,11.95,04/18/19 12:06,"641 Elm St, New York City, NY 10001" -182214,AAA Batteries (4-pack),1,2.99,04/01/19 11:43,"676 Meadow St, San Francisco, CA 94016" -182215,27in FHD Monitor,1,149.99,04/05/19 23:33,"640 Madison St, San Francisco, CA 94016" -182215,Bose SoundSport Headphones,1,99.99,04/05/19 23:33,"640 Madison St, San Francisco, CA 94016" -182216,Bose SoundSport Headphones,1,99.99,04/16/19 22:58,"721 9th St, Atlanta, GA 30301" -182217,34in Ultrawide Monitor,1,379.99,04/13/19 18:51,"361 Spruce St, Seattle, WA 98101" -182218,Google Phone,1,600,04/13/19 16:10,"559 Park St, Dallas, TX 75001" -182219,Google Phone,1,600,04/22/19 14:37,"971 Lakeview St, New York City, NY 10001" -182220,34in Ultrawide Monitor,2,379.99,04/14/19 12:04,"587 Dogwood St, San Francisco, CA 94016" -182221,Flatscreen TV,1,300,04/12/19 21:28,"49 Washington St, Portland, OR 97035" -182222,Lightning Charging Cable,1,14.95,04/07/19 16:29,"960 Lakeview St, Seattle, WA 98101" -182223,Apple Airpods Headphones,1,150,04/15/19 14:38,"422 Cherry St, Atlanta, GA 30301" -182224,AA Batteries (4-pack),1,3.84,04/04/19 19:20,"852 6th St, San Francisco, CA 94016" -182225,USB-C Charging Cable,1,11.95,04/09/19 11:57,"765 Main St, Boston, MA 02215" -182226,20in Monitor,1,109.99,04/06/19 06:32,"396 13th St, Los Angeles, CA 90001" -182227,Lightning Charging Cable,1,14.95,04/18/19 09:38,"906 Jackson St, Los Angeles, CA 90001" -182228,AA Batteries (4-pack),1,3.84,04/16/19 09:02,"484 1st St, San Francisco, CA 94016" -182229,AAA Batteries (4-pack),1,2.99,04/05/19 02:02,"608 Wilson St, Boston, MA 02215" -182230,AA Batteries (4-pack),2,3.84,04/29/19 07:56,"467 Walnut St, Seattle, WA 98101" -182231,AA Batteries (4-pack),1,3.84,04/22/19 14:34,"672 Church St, Austin, TX 73301" -182232,34in Ultrawide Monitor,1,379.99,04/21/19 13:22,"91 Lincoln St, Boston, MA 02215" -182233,Flatscreen TV,1,300,04/12/19 23:55,"338 Madison St, Los Angeles, CA 90001" -182234,Flatscreen TV,1,300,04/17/19 13:23,"736 4th St, Atlanta, GA 30301" -182235,AA Batteries (4-pack),3,3.84,04/13/19 09:12,"737 8th St, Portland, OR 97035" -182236,AA Batteries (4-pack),1,3.84,04/24/19 20:48,"371 12th St, Dallas, TX 75001" -182237,AAA Batteries (4-pack),1,2.99,04/01/19 22:57,"289 Jefferson St, New York City, NY 10001" -182238,USB-C Charging Cable,1,11.95,04/14/19 15:39,"87 Lake St, Seattle, WA 98101" -182239,Lightning Charging Cable,1,14.95,04/03/19 10:42,"935 Hill St, Atlanta, GA 30301" -182240,iPhone,1,700,04/27/19 18:56,"772 5th St, New York City, NY 10001" -182240,Lightning Charging Cable,1,14.95,04/27/19 18:56,"772 5th St, New York City, NY 10001" -182241,USB-C Charging Cable,1,11.95,04/04/19 13:28,"794 Cedar St, San Francisco, CA 94016" -182242,USB-C Charging Cable,1,11.95,04/07/19 13:12,"485 South St, San Francisco, CA 94016" -182243,AAA Batteries (4-pack),5,2.99,04/24/19 12:03,"142 Washington St, Atlanta, GA 30301" -182244,34in Ultrawide Monitor,1,379.99,04/24/19 23:50,"718 South St, Atlanta, GA 30301" -182245,USB-C Charging Cable,1,11.95,04/12/19 02:29,"765 Jefferson St, San Francisco, CA 94016" -182246,AA Batteries (4-pack),2,3.84,04/13/19 11:33,"210 Cherry St, Austin, TX 73301" -182247,27in 4K Gaming Monitor,1,389.99,04/02/19 20:33,"335 Church St, Los Angeles, CA 90001" -182248,27in FHD Monitor,1,149.99,04/22/19 14:48,"907 Maple St, Dallas, TX 75001" -182249,USB-C Charging Cable,1,11.95,04/10/19 20:25,"697 8th St, Los Angeles, CA 90001" -182250,iPhone,1,700,04/16/19 16:14,"178 Center St, Portland, OR 97035" -182251,34in Ultrawide Monitor,1,379.99,04/16/19 11:39,"207 11th St, New York City, NY 10001" -182252,20in Monitor,1,109.99,04/07/19 11:46,"557 6th St, Dallas, TX 75001" -182253,AAA Batteries (4-pack),2,2.99,04/29/19 19:40,"954 Maple St, Atlanta, GA 30301" -182254,27in FHD Monitor,1,149.99,04/03/19 11:22,"694 Adams St, Boston, MA 02215" -182255,Apple Airpods Headphones,1,150,04/07/19 22:02,"464 Cherry St, New York City, NY 10001" -182256,Bose SoundSport Headphones,1,99.99,04/01/19 14:58,"82 5th St, Portland, OR 97035" -182257,Wired Headphones,1,11.99,04/28/19 19:45,"814 4th St, Atlanta, GA 30301" -182258,Apple Airpods Headphones,1,150,04/24/19 19:32,"109 Dogwood St, Atlanta, GA 30301" -182259,Lightning Charging Cable,1,14.95,04/25/19 20:46,"663 Dogwood St, Atlanta, GA 30301" -182260,27in 4K Gaming Monitor,1,389.99,04/02/19 10:31,"118 Cherry St, Boston, MA 02215" -182261,AA Batteries (4-pack),1,3.84,04/12/19 18:37,"778 Jackson St, Dallas, TX 75001" -182262,USB-C Charging Cable,1,11.95,04/15/19 18:52,"617 Sunset St, Atlanta, GA 30301" -182263,Apple Airpods Headphones,1,150,04/22/19 17:01,"301 Hill St, New York City, NY 10001" -182264,iPhone,1,700,04/04/19 18:32,"455 Park St, Los Angeles, CA 90001" -182265,AA Batteries (4-pack),1,3.84,04/10/19 12:25,"70 Willow St, Los Angeles, CA 90001" -182266,USB-C Charging Cable,1,11.95,04/07/19 08:51,"472 Hill St, New York City, NY 10001" -182267,Wired Headphones,1,11.99,04/02/19 15:11,"280 Main St, San Francisco, CA 94016" -182268,Lightning Charging Cable,1,14.95,04/26/19 16:12,"916 7th St, Los Angeles, CA 90001" -182269,Wired Headphones,1,11.99,04/22/19 16:58,"514 Johnson St, San Francisco, CA 94016" -182270,27in 4K Gaming Monitor,1,389.99,04/06/19 19:37,"441 Maple St, San Francisco, CA 94016" -182271,Apple Airpods Headphones,1,150,04/25/19 14:47,"736 Hickory St, Boston, MA 02215" -182272,AAA Batteries (4-pack),1,2.99,04/24/19 14:01,"533 Willow St, San Francisco, CA 94016" -182273,AAA Batteries (4-pack),2,2.99,04/30/19 08:30,"943 12th St, San Francisco, CA 94016" -182274,Wired Headphones,1,11.99,04/01/19 20:32,"224 13th St, Portland, OR 97035" -182275,Flatscreen TV,1,300,04/27/19 09:30,"533 Dogwood St, San Francisco, CA 94016" -182276,AAA Batteries (4-pack),1,2.99,04/08/19 17:21,"213 West St, Los Angeles, CA 90001" -182277,27in FHD Monitor,1,149.99,04/21/19 19:44,"190 5th St, Boston, MA 02215" -182278,USB-C Charging Cable,1,11.95,04/19/19 20:33,"150 Forest St, San Francisco, CA 94016" -182279,AAA Batteries (4-pack),1,2.99,04/28/19 09:08,"47 Lakeview St, Los Angeles, CA 90001" -182280,34in Ultrawide Monitor,1,379.99,04/13/19 17:14,"710 Lake St, Austin, TX 73301" -182281,Wired Headphones,1,11.99,04/12/19 22:48,"860 Chestnut St, Boston, MA 02215" -182282,Wired Headphones,1,11.99,04/07/19 23:34,"57 13th St, Seattle, WA 98101" -182283,USB-C Charging Cable,1,11.95,04/10/19 19:11,"351 Adams St, Boston, MA 02215" -182284,Bose SoundSport Headphones,1,99.99,04/08/19 18:55,"520 Elm St, Boston, MA 02215" -182285,AA Batteries (4-pack),2,3.84,04/13/19 20:52,"773 2nd St, New York City, NY 10001" -182286,AA Batteries (4-pack),1,3.84,04/06/19 08:14,"364 14th St, Los Angeles, CA 90001" -182287,Wired Headphones,1,11.99,04/22/19 05:11,"466 Highland St, New York City, NY 10001" -182288,AA Batteries (4-pack),3,3.84,04/05/19 18:45,"945 Cedar St, San Francisco, CA 94016" -182289,AAA Batteries (4-pack),2,2.99,04/26/19 10:45,"837 Pine St, Los Angeles, CA 90001" -182290,USB-C Charging Cable,1,11.95,04/22/19 13:14,"705 4th St, Los Angeles, CA 90001" -182291,Lightning Charging Cable,1,14.95,04/24/19 16:00,"547 Adams St, San Francisco, CA 94016" -182292,Wired Headphones,2,11.99,04/01/19 17:41,"921 Forest St, San Francisco, CA 94016" -182293,AA Batteries (4-pack),1,3.84,04/12/19 12:06,"453 Walnut St, San Francisco, CA 94016" -182294,Lightning Charging Cable,2,14.95,04/14/19 09:50,"314 Sunset St, San Francisco, CA 94016" -182295,AAA Batteries (4-pack),1,2.99,04/29/19 20:27,"560 Washington St, Boston, MA 02215" -182296,27in FHD Monitor,1,149.99,04/12/19 16:58,"220 West St, Boston, MA 02215" -182297,Wired Headphones,1,11.99,04/10/19 20:39,"465 Willow St, New York City, NY 10001" -182298,Wired Headphones,1,11.99,04/26/19 08:44,"64 Willow St, Boston, MA 02215" -182299,Lightning Charging Cable,1,14.95,04/26/19 09:07,"833 North St, Boston, MA 02215" -182300,Apple Airpods Headphones,1,150,04/04/19 13:25,"4 9th St, Seattle, WA 98101" -182301,AA Batteries (4-pack),1,3.84,04/30/19 23:32,"896 Wilson St, San Francisco, CA 94016" -182302,AA Batteries (4-pack),3,3.84,04/22/19 11:30,"586 4th St, Los Angeles, CA 90001" -182303,AA Batteries (4-pack),2,3.84,04/07/19 21:12,"340 River St, San Francisco, CA 94016" -182304,Wired Headphones,1,11.99,04/18/19 18:29,"795 Chestnut St, Seattle, WA 98101" -182305,USB-C Charging Cable,1,11.95,04/21/19 18:16,"659 Church St, Los Angeles, CA 90001" -182306,Wired Headphones,1,11.99,04/05/19 14:45,"181 Cherry St, San Francisco, CA 94016" -182307,Wired Headphones,1,11.99,04/03/19 17:36,"413 West St, New York City, NY 10001" -182308,27in 4K Gaming Monitor,1,389.99,04/09/19 00:45,"109 Park St, Dallas, TX 75001" -182309,27in 4K Gaming Monitor,1,389.99,04/25/19 00:06,"195 Adams St, Austin, TX 73301" -182310,Lightning Charging Cable,1,14.95,04/10/19 13:04,"929 Forest St, Los Angeles, CA 90001" -182311,AAA Batteries (4-pack),1,2.99,04/15/19 19:04,"381 7th St, San Francisco, CA 94016" -182312,iPhone,1,700,04/24/19 08:40,"739 Sunset St, Portland, OR 97035" -182313,Lightning Charging Cable,1,14.95,04/29/19 03:33,"380 Hill St, Portland, OR 97035" -182314,Lightning Charging Cable,1,14.95,04/26/19 14:35,"340 South St, Dallas, TX 75001" -182315,Apple Airpods Headphones,1,150,04/25/19 22:21,"865 Madison St, San Francisco, CA 94016" -182316,Lightning Charging Cable,1,14.95,04/29/19 14:28,"709 Center St, San Francisco, CA 94016" -182317,Lightning Charging Cable,1,14.95,04/12/19 15:18,"432 Lakeview St, San Francisco, CA 94016" -182318,Wired Headphones,1,11.99,04/08/19 15:33,"645 12th St, San Francisco, CA 94016" -182319,27in FHD Monitor,1,149.99,04/30/19 18:49,"7 Jackson St, New York City, NY 10001" -182320,AAA Batteries (4-pack),2,2.99,04/10/19 18:18,"351 Cherry St, San Francisco, CA 94016" -182321,Apple Airpods Headphones,1,150,04/13/19 21:56,"949 Elm St, Seattle, WA 98101" -182322,AAA Batteries (4-pack),1,2.99,04/30/19 10:44,"715 7th St, Dallas, TX 75001" -182323,Flatscreen TV,1,300,04/22/19 17:19,"39 Hill St, Boston, MA 02215" -182324,20in Monitor,1,109.99,04/13/19 16:57,"74 Wilson St, Los Angeles, CA 90001" -182325,Google Phone,1,600,04/09/19 22:15,"799 Cherry St, Portland, OR 97035" -182326,USB-C Charging Cable,1,11.95,04/02/19 20:40,"549 Chestnut St, Portland, OR 97035" -182327,ThinkPad Laptop,1,999.99,04/27/19 17:35,"568 Hickory St, Boston, MA 02215" -182328,AA Batteries (4-pack),1,3.84,04/05/19 18:37,"596 13th St, Austin, TX 73301" -182329,Wired Headphones,1,11.99,04/20/19 17:43,"704 Madison St, Boston, MA 02215" -182330,AAA Batteries (4-pack),1,2.99,04/12/19 16:32,"5 South St, Dallas, TX 75001" -182331,Lightning Charging Cable,1,14.95,04/30/19 00:06,"668 7th St, Dallas, TX 75001" -182332,Lightning Charging Cable,1,14.95,04/11/19 19:00,"592 Hill St, Boston, MA 02215" -182333,Apple Airpods Headphones,1,150,04/14/19 16:00,"143 Park St, New York City, NY 10001" -182334,Macbook Pro Laptop,1,1700,04/20/19 17:15,"834 Park St, New York City, NY 10001" -182335,AA Batteries (4-pack),1,3.84,04/08/19 09:14,"128 1st St, Atlanta, GA 30301" -182336,Wired Headphones,1,11.99,04/11/19 05:09,"722 6th St, New York City, NY 10001" -182337,AAA Batteries (4-pack),2,2.99,04/08/19 14:28,"31 Jefferson St, Atlanta, GA 30301" -182338,AA Batteries (4-pack),2,3.84,04/13/19 10:31,"484 Pine St, New York City, NY 10001" -182339,Apple Airpods Headphones,1,150,04/21/19 15:16,"295 Washington St, Boston, MA 02215" -182340,USB-C Charging Cable,1,11.95,04/27/19 16:57,"414 River St, San Francisco, CA 94016" -182341,AA Batteries (4-pack),3,3.84,04/25/19 18:48,"638 Cedar St, Los Angeles, CA 90001" -182342,27in FHD Monitor,1,149.99,04/25/19 23:04,"315 Pine St, Boston, MA 02215" -182343,iPhone,1,700,04/27/19 18:06,"848 Chestnut St, Dallas, TX 75001" -182344,Lightning Charging Cable,1,14.95,04/07/19 00:25,"950 Johnson St, New York City, NY 10001" -182345,AA Batteries (4-pack),1,3.84,04/08/19 16:25,"521 Cedar St, Los Angeles, CA 90001" -182346,20in Monitor,1,109.99,04/12/19 10:54,"389 Lincoln St, San Francisco, CA 94016" -182347,27in FHD Monitor,1,149.99,04/23/19 15:41,"623 Hickory St, Portland, OR 97035" -182348,AAA Batteries (4-pack),2,2.99,04/09/19 16:41,"714 14th St, Los Angeles, CA 90001" -182349,USB-C Charging Cable,1,11.95,04/25/19 17:16,"127 Madison St, New York City, NY 10001" -182350,Bose SoundSport Headphones,1,99.99,04/06/19 00:53,"552 South St, San Francisco, CA 94016" -182351,Bose SoundSport Headphones,1,99.99,04/24/19 22:41,"811 2nd St, San Francisco, CA 94016" -182352,Bose SoundSport Headphones,1,99.99,04/28/19 02:40,"161 Lakeview St, Los Angeles, CA 90001" -182353,AA Batteries (4-pack),1,3.84,04/12/19 19:52,"597 Washington St, Los Angeles, CA 90001" -182354,AA Batteries (4-pack),1,3.84,04/05/19 12:22,"630 9th St, Portland, ME 04101" -182355,USB-C Charging Cable,1,11.95,04/29/19 14:35,"291 Elm St, Los Angeles, CA 90001" -182356,Lightning Charging Cable,1,14.95,04/23/19 13:23,"691 2nd St, New York City, NY 10001" -182357,27in FHD Monitor,1,149.99,04/18/19 21:37,"33 5th St, Seattle, WA 98101" -182358,AA Batteries (4-pack),1,3.84,04/17/19 20:44,"699 9th St, Los Angeles, CA 90001" -182359,Lightning Charging Cable,1,14.95,04/10/19 23:01,"56 Dogwood St, Atlanta, GA 30301" -182360,Lightning Charging Cable,1,14.95,04/02/19 19:16,"295 Main St, Los Angeles, CA 90001" -182361,USB-C Charging Cable,1,11.95,04/21/19 17:09,"992 Chestnut St, Seattle, WA 98101" -182362,27in 4K Gaming Monitor,1,389.99,04/26/19 00:51,"236 Wilson St, San Francisco, CA 94016" -182363,USB-C Charging Cable,1,11.95,04/15/19 13:39,"580 Ridge St, Portland, OR 97035" -182364,Wired Headphones,1,11.99,04/13/19 12:01,"33 11th St, San Francisco, CA 94016" -182365,AAA Batteries (4-pack),2,2.99,04/08/19 22:29,"468 10th St, Dallas, TX 75001" -182366,USB-C Charging Cable,1,11.95,04/20/19 20:45,"114 5th St, San Francisco, CA 94016" -182367,Lightning Charging Cable,1,14.95,04/19/19 10:11,"877 Cherry St, Los Angeles, CA 90001" -182368,Bose SoundSport Headphones,1,99.99,04/18/19 13:17,"286 Church St, Atlanta, GA 30301" -182369,Flatscreen TV,1,300,04/03/19 02:37,"366 Chestnut St, San Francisco, CA 94016" -182370,ThinkPad Laptop,1,999.99,04/13/19 15:13,"843 Park St, Los Angeles, CA 90001" -182371,Wired Headphones,1,11.99,04/17/19 08:34,"771 Highland St, Los Angeles, CA 90001" -182372,Lightning Charging Cable,1,14.95,04/26/19 16:28,"996 2nd St, Los Angeles, CA 90001" -182373,AA Batteries (4-pack),1,3.84,04/16/19 08:42,"512 Lakeview St, Seattle, WA 98101" -182374,iPhone,1,700,04/02/19 00:00,"414 5th St, Portland, OR 97035" -182374,Apple Airpods Headphones,1,150,04/02/19 00:00,"414 5th St, Portland, OR 97035" -182375,Bose SoundSport Headphones,1,99.99,04/17/19 17:30,"923 Hill St, San Francisco, CA 94016" -182376,Bose SoundSport Headphones,1,99.99,04/27/19 08:13,"624 10th St, San Francisco, CA 94016" -182377,20in Monitor,1,109.99,04/02/19 21:15,"545 Jefferson St, New York City, NY 10001" -182378,Lightning Charging Cable,1,14.95,04/27/19 17:02,"636 Pine St, Portland, OR 97035" -182379,27in 4K Gaming Monitor,1,389.99,04/27/19 08:18,"959 Church St, Boston, MA 02215" -182380,Wired Headphones,2,11.99,04/30/19 20:41,"466 2nd St, Boston, MA 02215" -182381,Apple Airpods Headphones,1,150,04/02/19 19:21,"623 Jefferson St, Los Angeles, CA 90001" -182382,Flatscreen TV,1,300,04/25/19 11:47,"874 13th St, Seattle, WA 98101" -182383,20in Monitor,1,109.99,04/11/19 09:04,"250 9th St, Portland, OR 97035" -182384,AAA Batteries (4-pack),1,2.99,04/21/19 08:38,"870 North St, San Francisco, CA 94016" -182385,AA Batteries (4-pack),1,3.84,04/30/19 01:03,"858 Maple St, Los Angeles, CA 90001" -182385,Apple Airpods Headphones,1,150,04/30/19 01:03,"858 Maple St, Los Angeles, CA 90001" -182386,AA Batteries (4-pack),1,3.84,04/18/19 17:35,"626 South St, Austin, TX 73301" -182386,USB-C Charging Cable,1,11.95,04/18/19 17:35,"626 South St, Austin, TX 73301" -182387,AA Batteries (4-pack),1,3.84,04/07/19 21:03,"609 2nd St, Los Angeles, CA 90001" -182388,Wired Headphones,1,11.99,04/26/19 16:32,"941 Lake St, Seattle, WA 98101" -182389,Apple Airpods Headphones,1,150,04/10/19 08:51,"361 Dogwood St, San Francisco, CA 94016" -182390,Lightning Charging Cable,1,14.95,04/23/19 20:31,"836 Chestnut St, Los Angeles, CA 90001" -182391,iPhone,1,700,04/02/19 15:43,"389 Church St, Atlanta, GA 30301" -182392,Wired Headphones,1,11.99,04/20/19 12:15,"232 Sunset St, Austin, TX 73301" -182393,Apple Airpods Headphones,1,150,04/29/19 00:36,"32 Johnson St, New York City, NY 10001" -182394,Bose SoundSport Headphones,1,99.99,04/08/19 22:32,"51 Forest St, Portland, OR 97035" -182395,Wired Headphones,1,11.99,04/30/19 18:55,"90 River St, Seattle, WA 98101" -182396,USB-C Charging Cable,1,11.95,04/17/19 12:49,"2 Walnut St, Atlanta, GA 30301" -182397,Macbook Pro Laptop,1,1700,04/05/19 19:08,"333 9th St, San Francisco, CA 94016" -,,,,, -182398,34in Ultrawide Monitor,1,379.99,04/14/19 14:25,"524 10th St, New York City, NY 10001" -182399,34in Ultrawide Monitor,1,379.99,04/03/19 10:13,"724 Adams St, San Francisco, CA 94016" -182400,Wired Headphones,1,11.99,04/02/19 00:37,"967 North St, Austin, TX 73301" -182401,Wired Headphones,1,11.99,04/28/19 16:27,"963 Madison St, New York City, NY 10001" -182402,AAA Batteries (4-pack),3,2.99,04/09/19 20:41,"147 Willow St, New York City, NY 10001" -182403,27in 4K Gaming Monitor,1,389.99,04/22/19 12:10,"901 Spruce St, Dallas, TX 75001" -182404,34in Ultrawide Monitor,1,379.99,04/01/19 13:10,"620 4th St, San Francisco, CA 94016" -182405,27in FHD Monitor,1,149.99,04/29/19 06:54,"874 Lake St, Dallas, TX 75001" -182406,USB-C Charging Cable,1,11.95,04/07/19 09:37,"628 Jackson St, Boston, MA 02215" -,,,,, -182407,iPhone,1,700,04/10/19 07:18,"691 Elm St, Portland, OR 97035" -182408,Apple Airpods Headphones,1,150,04/01/19 10:48,"560 Lincoln St, Atlanta, GA 30301" -182409,USB-C Charging Cable,1,11.95,04/14/19 21:17,"424 Madison St, San Francisco, CA 94016" -182410,Wired Headphones,1,11.99,04/19/19 09:31,"990 Hill St, Seattle, WA 98101" -182411,AA Batteries (4-pack),2,3.84,04/20/19 13:16,"273 12th St, San Francisco, CA 94016" -182412,USB-C Charging Cable,1,11.95,04/02/19 12:42,"46 Johnson St, Austin, TX 73301" -182413,AA Batteries (4-pack),1,3.84,04/03/19 07:07,"267 Madison St, Boston, MA 02215" -182414,AAA Batteries (4-pack),2,2.99,04/10/19 21:50,"729 West St, Boston, MA 02215" -182415,AA Batteries (4-pack),1,3.84,04/21/19 02:09,"652 2nd St, Boston, MA 02215" -182416,AAA Batteries (4-pack),1,2.99,04/02/19 13:26,"633 4th St, Boston, MA 02215" -182417,iPhone,1,700,04/04/19 07:42,"610 Meadow St, San Francisco, CA 94016" -182418,AA Batteries (4-pack),2,3.84,04/07/19 23:13,"406 Sunset St, New York City, NY 10001" -182419,AAA Batteries (4-pack),1,2.99,04/09/19 09:58,"986 Hickory St, Seattle, WA 98101" -182420,iPhone,1,700,04/08/19 12:55,"253 River St, Atlanta, GA 30301" -182420,Apple Airpods Headphones,1,150,04/08/19 12:55,"253 River St, Atlanta, GA 30301" -182421,USB-C Charging Cable,1,11.95,04/09/19 12:46,"411 Meadow St, New York City, NY 10001" -182422,AAA Batteries (4-pack),1,2.99,04/09/19 11:07,"25 Jackson St, Los Angeles, CA 90001" -182423,Wired Headphones,1,11.99,04/04/19 16:16,"966 North St, Los Angeles, CA 90001" -182424,34in Ultrawide Monitor,1,379.99,04/09/19 14:23,"860 Meadow St, San Francisco, CA 94016" -182425,Lightning Charging Cable,1,14.95,04/04/19 14:13,"70 2nd St, Portland, OR 97035" -182426,Lightning Charging Cable,1,14.95,04/20/19 00:03,"509 Johnson St, San Francisco, CA 94016" -182427,Bose SoundSport Headphones,1,99.99,04/28/19 21:20,"438 10th St, Los Angeles, CA 90001" -182428,Google Phone,1,600,04/16/19 15:18,"510 Wilson St, Boston, MA 02215" -182428,USB-C Charging Cable,1,11.95,04/16/19 15:18,"510 Wilson St, Boston, MA 02215" -182429,Macbook Pro Laptop,1,1700,04/07/19 13:27,"985 Lakeview St, San Francisco, CA 94016" -182430,AA Batteries (4-pack),1,3.84,04/12/19 02:03,"351 2nd St, Austin, TX 73301" -182431,Apple Airpods Headphones,1,150,04/02/19 15:48,"976 Ridge St, San Francisco, CA 94016" -182432,Lightning Charging Cable,1,14.95,04/24/19 07:00,"970 Adams St, Atlanta, GA 30301" -182433,USB-C Charging Cable,1,11.95,04/25/19 14:02,"198 10th St, Seattle, WA 98101" -182434,ThinkPad Laptop,1,999.99,04/25/19 17:59,"965 Sunset St, Boston, MA 02215" -182435,AAA Batteries (4-pack),1,2.99,04/19/19 11:13,"504 Pine St, Atlanta, GA 30301" -182436,Lightning Charging Cable,1,14.95,04/06/19 13:36,"491 Center St, San Francisco, CA 94016" -182437,Macbook Pro Laptop,1,1700,04/18/19 11:56,"782 Willow St, Boston, MA 02215" -182438,Wired Headphones,1,11.99,04/26/19 21:52,"927 Park St, Los Angeles, CA 90001" -182439,AAA Batteries (4-pack),1,2.99,04/02/19 10:05,"583 Elm St, Los Angeles, CA 90001" -182440,27in FHD Monitor,1,149.99,04/07/19 08:32,"283 Wilson St, Austin, TX 73301" -182441,USB-C Charging Cable,1,11.95,04/28/19 15:25,"569 12th St, San Francisco, CA 94016" -182442,AAA Batteries (4-pack),1,2.99,04/18/19 22:34,"842 Lincoln St, San Francisco, CA 94016" -182443,iPhone,1,700,04/30/19 11:06,"386 1st St, Dallas, TX 75001" -182443,Lightning Charging Cable,1,14.95,04/30/19 11:06,"386 1st St, Dallas, TX 75001" -182444,iPhone,1,700,04/11/19 10:15,"722 Main St, Los Angeles, CA 90001" -182445,USB-C Charging Cable,1,11.95,04/14/19 20:35,"259 Johnson St, Portland, OR 97035" -182446,Google Phone,1,600,04/07/19 17:54,"191 Lake St, Boston, MA 02215" -182447,Wired Headphones,1,11.99,04/11/19 12:01,"471 Maple St, Boston, MA 02215" -182448,AAA Batteries (4-pack),4,2.99,04/07/19 08:52,"456 Dogwood St, Atlanta, GA 30301" -182449,Apple Airpods Headphones,1,150,04/29/19 00:18,"923 North St, Los Angeles, CA 90001" -182450,AAA Batteries (4-pack),1,2.99,04/23/19 10:22,"167 Center St, San Francisco, CA 94016" -182451,27in FHD Monitor,1,149.99,04/12/19 15:10,"510 North St, Boston, MA 02215" -182452,Lightning Charging Cable,1,14.95,04/11/19 16:08,"517 7th St, Los Angeles, CA 90001" -182453,34in Ultrawide Monitor,1,379.99,04/25/19 16:53,"550 Madison St, Portland, OR 97035" -182454,Wired Headphones,1,11.99,04/29/19 11:12,"294 Pine St, Dallas, TX 75001" -182455,AAA Batteries (4-pack),1,2.99,04/25/19 09:26,"754 1st St, Los Angeles, CA 90001" -182456,Bose SoundSport Headphones,1,99.99,04/15/19 18:07,"899 8th St, San Francisco, CA 94016" -182457,34in Ultrawide Monitor,1,379.99,04/04/19 08:08,"698 Center St, Boston, MA 02215" -182458,Wired Headphones,1,11.99,04/30/19 17:37,"387 7th St, Dallas, TX 75001" -182459,Wired Headphones,1,11.99,04/28/19 12:40,"787 4th St, Los Angeles, CA 90001" -182460,AA Batteries (4-pack),1,3.84,04/26/19 20:15,"83 Center St, Boston, MA 02215" -182461,Flatscreen TV,1,300,04/26/19 16:05,"438 4th St, San Francisco, CA 94016" -182462,Bose SoundSport Headphones,1,99.99,04/13/19 12:03,"269 Hickory St, Portland, OR 97035" -182463,AA Batteries (4-pack),1,3.84,04/11/19 13:04,"531 Maple St, Dallas, TX 75001" -182464,AA Batteries (4-pack),3,3.84,04/06/19 10:42,"300 6th St, Boston, MA 02215" -182465,Apple Airpods Headphones,1,150,04/20/19 09:08,"914 Forest St, San Francisco, CA 94016" -182466,Lightning Charging Cable,1,14.95,04/11/19 11:48,"13 Jackson St, San Francisco, CA 94016" -182467,LG Dryer,1,600.0,04/12/19 15:34,"571 Hill St, Boston, MA 02215" -182468,AAA Batteries (4-pack),1,2.99,04/13/19 17:33,"567 Maple St, New York City, NY 10001" -182469,Vareebadd Phone,1,400,04/25/19 21:27,"693 11th St, Los Angeles, CA 90001" -182470,AAA Batteries (4-pack),2,2.99,04/13/19 22:42,"487 Jackson St, Seattle, WA 98101" -182471,Lightning Charging Cable,1,14.95,04/04/19 11:45,"776 Main St, Atlanta, GA 30301" -182472,34in Ultrawide Monitor,1,379.99,04/13/19 17:24,"626 1st St, San Francisco, CA 94016" -182473,AA Batteries (4-pack),2,3.84,04/15/19 14:44,"441 Chestnut St, San Francisco, CA 94016" -182474,Lightning Charging Cable,1,14.95,04/23/19 10:28,"691 Hickory St, New York City, NY 10001" -182475,Flatscreen TV,1,300,04/27/19 06:18,"433 Maple St, New York City, NY 10001" -182476,AAA Batteries (4-pack),1,2.99,04/02/19 00:52,"674 4th St, San Francisco, CA 94016" -182477,AAA Batteries (4-pack),1,2.99,04/27/19 09:20,"556 Chestnut St, San Francisco, CA 94016" -182478,Wired Headphones,1,11.99,04/09/19 20:16,"907 Highland St, New York City, NY 10001" -182479,Lightning Charging Cable,1,14.95,04/16/19 15:44,"772 Forest St, Atlanta, GA 30301" -182480,27in FHD Monitor,1,149.99,04/05/19 07:39,"707 11th St, Portland, OR 97035" -182481,iPhone,1,700,04/13/19 09:32,"792 River St, Dallas, TX 75001" -182482,ThinkPad Laptop,1,999.99,04/24/19 14:59,"178 Park St, Los Angeles, CA 90001" -182483,AAA Batteries (4-pack),1,2.99,04/22/19 12:36,"615 Cedar St, San Francisco, CA 94016" -182484,AA Batteries (4-pack),1,3.84,04/20/19 09:19,"977 Hill St, New York City, NY 10001" -182485,USB-C Charging Cable,3,11.95,04/11/19 11:30,"739 Walnut St, Boston, MA 02215" -182486,Lightning Charging Cable,1,14.95,04/24/19 01:22,"874 6th St, Los Angeles, CA 90001" -182487,Lightning Charging Cable,1,14.95,04/04/19 17:41,"726 9th St, Los Angeles, CA 90001" -182488,27in FHD Monitor,1,149.99,04/14/19 21:10,"913 Church St, Boston, MA 02215" -182489,Wired Headphones,1,11.99,04/27/19 04:01,"264 North St, Portland, OR 97035" -182490,Lightning Charging Cable,1,14.95,04/27/19 13:46,"114 Adams St, San Francisco, CA 94016" -182491,iPhone,1,700,04/05/19 22:26,"912 9th St, San Francisco, CA 94016" -182492,USB-C Charging Cable,1,11.95,04/11/19 11:22,"254 Spruce St, New York City, NY 10001" -182493,USB-C Charging Cable,1,11.95,04/06/19 10:12,"962 Meadow St, Los Angeles, CA 90001" -182494,USB-C Charging Cable,1,11.95,04/20/19 21:34,"396 Lakeview St, Dallas, TX 75001" -182495,Macbook Pro Laptop,1,1700,04/18/19 18:40,"981 Spruce St, San Francisco, CA 94016" -182496,AAA Batteries (4-pack),2,2.99,04/19/19 11:08,"478 Elm St, Atlanta, GA 30301" -182497,Bose SoundSport Headphones,1,99.99,04/07/19 10:35,"197 5th St, Boston, MA 02215" -182498,USB-C Charging Cable,1,11.95,04/28/19 19:13,"680 Main St, Boston, MA 02215" -182499,Flatscreen TV,1,300,04/14/19 20:50,"470 7th St, New York City, NY 10001" -182500,AA Batteries (4-pack),3,3.84,04/02/19 17:33,"103 North St, Dallas, TX 75001" -182501,Google Phone,1,600,04/18/19 14:43,"953 5th St, Portland, OR 97035" -182501,USB-C Charging Cable,1,11.95,04/18/19 14:43,"953 5th St, Portland, OR 97035" -182502,AAA Batteries (4-pack),1,2.99,04/25/19 16:28,"105 5th St, Los Angeles, CA 90001" -182503,34in Ultrawide Monitor,1,379.99,04/22/19 13:31,"643 Lincoln St, Los Angeles, CA 90001" -182504,Bose SoundSport Headphones,1,99.99,04/02/19 18:01,"900 River St, Los Angeles, CA 90001" -182505,AA Batteries (4-pack),3,3.84,04/01/19 19:43,"596 Lake St, San Francisco, CA 94016" -182506,AAA Batteries (4-pack),2,2.99,04/04/19 18:53,"504 Sunset St, Los Angeles, CA 90001" -182507,Wired Headphones,1,11.99,04/27/19 21:46,"298 Walnut St, San Francisco, CA 94016" -182508,AA Batteries (4-pack),3,3.84,04/20/19 18:50,"857 Hickory St, Portland, OR 97035" -182509,Apple Airpods Headphones,1,150,04/02/19 18:30,"512 Wilson St, San Francisco, CA 94016" -182510,Apple Airpods Headphones,1,150,04/26/19 05:19,"920 Lakeview St, Los Angeles, CA 90001" -182511,AA Batteries (4-pack),1,3.84,04/08/19 18:00,"846 6th St, Los Angeles, CA 90001" -182512,Apple Airpods Headphones,1,150,04/29/19 17:26,"236 Cherry St, Los Angeles, CA 90001" -182513,AA Batteries (4-pack),1,3.84,04/07/19 14:01,"34 Church St, Los Angeles, CA 90001" -182514,Flatscreen TV,1,300,04/08/19 19:28,"536 Jefferson St, Atlanta, GA 30301" -182515,AA Batteries (4-pack),1,3.84,04/09/19 01:14,"763 Wilson St, Atlanta, GA 30301" -182516,Wired Headphones,1,11.99,04/13/19 09:18,"333 7th St, San Francisco, CA 94016" -182517,Apple Airpods Headphones,1,150,04/23/19 12:30,"694 5th St, San Francisco, CA 94016" -182518,USB-C Charging Cable,1,11.95,04/30/19 15:13,"757 Sunset St, Los Angeles, CA 90001" -182519,ThinkPad Laptop,1,999.99,04/29/19 11:44,"290 Ridge St, San Francisco, CA 94016" -182520,Wired Headphones,2,11.99,04/01/19 11:24,"649 Elm St, San Francisco, CA 94016" -182521,Wired Headphones,1,11.99,04/23/19 09:27,"38 Main St, Dallas, TX 75001" -182522,Apple Airpods Headphones,1,150,04/11/19 11:54,"251 Maple St, Seattle, WA 98101" -182523,iPhone,1,700,04/24/19 21:16,"990 River St, Boston, MA 02215" -182523,Lightning Charging Cable,1,14.95,04/24/19 21:16,"990 River St, Boston, MA 02215" -182523,Lightning Charging Cable,1,14.95,04/24/19 21:16,"990 River St, Boston, MA 02215" -182524,Bose SoundSport Headphones,1,99.99,04/26/19 18:02,"933 10th St, Atlanta, GA 30301" -182525,ThinkPad Laptop,1,999.99,04/10/19 10:36,"972 Forest St, San Francisco, CA 94016" -182526,34in Ultrawide Monitor,1,379.99,04/26/19 10:29,"567 Main St, Austin, TX 73301" -182527,Google Phone,1,600,04/19/19 22:42,"276 Main St, Portland, OR 97035" -182528,AA Batteries (4-pack),1,3.84,04/08/19 16:49,"343 River St, San Francisco, CA 94016" -182529,AAA Batteries (4-pack),1,2.99,04/13/19 20:10,"46 Jackson St, San Francisco, CA 94016" -182530,iPhone,1,700,04/04/19 09:11,"485 North St, Los Angeles, CA 90001" -182530,Lightning Charging Cable,1,14.95,04/04/19 09:11,"485 North St, Los Angeles, CA 90001" -182531,USB-C Charging Cable,1,11.95,04/13/19 22:05,"254 Cedar St, Austin, TX 73301" -182532,AA Batteries (4-pack),1,3.84,04/19/19 23:50,"123 Lincoln St, New York City, NY 10001" -182533,Macbook Pro Laptop,1,1700,04/09/19 02:26,"265 Lincoln St, Los Angeles, CA 90001" -182534,AA Batteries (4-pack),1,3.84,04/18/19 16:11,"138 Hickory St, Austin, TX 73301" -182535,Lightning Charging Cable,2,14.95,04/12/19 20:48,"672 Forest St, San Francisco, CA 94016" -182536,27in 4K Gaming Monitor,1,389.99,04/15/19 00:03,"213 Highland St, San Francisco, CA 94016" -182537,iPhone,1,700,04/18/19 16:31,"525 7th St, Dallas, TX 75001" -182538,AAA Batteries (4-pack),4,2.99,04/23/19 22:06,"516 6th St, Atlanta, GA 30301" -182539,AA Batteries (4-pack),2,3.84,04/15/19 13:40,"621 Willow St, Portland, OR 97035" -182540,Bose SoundSport Headphones,1,99.99,04/26/19 12:20,"869 Highland St, New York City, NY 10001" -182541,AAA Batteries (4-pack),1,2.99,04/18/19 17:54,"918 Ridge St, Boston, MA 02215" -182542,Lightning Charging Cable,1,14.95,04/30/19 23:49,"79 Willow St, New York City, NY 10001" -182543,20in Monitor,1,109.99,04/12/19 12:31,"886 12th St, New York City, NY 10001" -182544,27in FHD Monitor,1,149.99,04/29/19 11:43,"334 Wilson St, San Francisco, CA 94016" -182545,Lightning Charging Cable,1,14.95,04/28/19 12:30,"818 6th St, Boston, MA 02215" -182546,Lightning Charging Cable,1,14.95,04/11/19 23:27,"631 Hickory St, New York City, NY 10001" -182547,ThinkPad Laptop,1,999.99,04/03/19 14:48,"522 Hill St, San Francisco, CA 94016" -182548,Apple Airpods Headphones,1,150,04/15/19 13:49,"111 Madison St, Los Angeles, CA 90001" -182549,Wired Headphones,1,11.99,04/21/19 18:57,"367 Church St, New York City, NY 10001" -182550,ThinkPad Laptop,1,999.99,04/02/19 14:42,"111 Washington St, Los Angeles, CA 90001" -182551,Lightning Charging Cable,1,14.95,04/10/19 12:12,"876 Meadow St, San Francisco, CA 94016" -182552,iPhone,1,700,04/27/19 11:42,"500 9th St, Boston, MA 02215" -182553,AA Batteries (4-pack),1,3.84,04/12/19 15:49,"218 10th St, Boston, MA 02215" -182554,27in FHD Monitor,1,149.99,04/15/19 17:16,"481 Wilson St, Seattle, WA 98101" -182555,AAA Batteries (4-pack),1,2.99,04/30/19 04:16,"895 River St, San Francisco, CA 94016" -182556,AAA Batteries (4-pack),3,2.99,04/27/19 10:55,"671 Church St, Austin, TX 73301" -182557,USB-C Charging Cable,1,11.95,04/06/19 13:23,"498 4th St, Los Angeles, CA 90001" -182558,27in 4K Gaming Monitor,1,389.99,04/28/19 12:49,"822 Johnson St, Atlanta, GA 30301" -182559,Wired Headphones,1,11.99,04/28/19 11:58,"639 Lake St, Los Angeles, CA 90001" -182560,USB-C Charging Cable,1,11.95,04/11/19 17:06,"636 Jackson St, Dallas, TX 75001" -182561,ThinkPad Laptop,1,999.99,04/11/19 09:00,"634 8th St, Boston, MA 02215" -182562,Lightning Charging Cable,1,14.95,04/17/19 16:12,"6 West St, New York City, NY 10001" -182563,27in 4K Gaming Monitor,1,389.99,04/20/19 17:41,"687 Dogwood St, San Francisco, CA 94016" -182564,AAA Batteries (4-pack),1,2.99,04/30/19 11:38,"776 Walnut St, New York City, NY 10001" -182565,Bose SoundSport Headphones,1,99.99,04/18/19 15:54,"494 8th St, San Francisco, CA 94016" -182566,Bose SoundSport Headphones,1,99.99,04/16/19 15:06,"560 Maple St, New York City, NY 10001" -182567,Vareebadd Phone,1,400,04/10/19 09:54,"629 Park St, Seattle, WA 98101" -182568,iPhone,1,700,04/26/19 20:34,"641 River St, New York City, NY 10001" -182568,Apple Airpods Headphones,1,150,04/26/19 20:34,"641 River St, New York City, NY 10001" -182569,Vareebadd Phone,1,400,04/21/19 12:44,"128 Forest St, Los Angeles, CA 90001" -182570,AAA Batteries (4-pack),1,2.99,04/09/19 08:42,"142 Lake St, San Francisco, CA 94016" -182571,Wired Headphones,1,11.99,04/02/19 15:23,"371 Cherry St, Boston, MA 02215" -182572,Flatscreen TV,1,300,04/06/19 19:39,"547 Willow St, San Francisco, CA 94016" -182573,Lightning Charging Cable,1,14.95,04/25/19 11:32,"643 Johnson St, San Francisco, CA 94016" -182574,USB-C Charging Cable,1,11.95,04/19/19 14:04,"679 Main St, Dallas, TX 75001" -182575,Lightning Charging Cable,1,14.95,04/12/19 19:43,"544 South St, Los Angeles, CA 90001" -182576,27in FHD Monitor,1,149.99,04/07/19 09:04,"918 1st St, Los Angeles, CA 90001" -182577,AAA Batteries (4-pack),1,2.99,04/25/19 16:50,"999 5th St, Portland, OR 97035" -182578,Wired Headphones,1,11.99,04/30/19 09:23,"291 7th St, San Francisco, CA 94016" -182579,AA Batteries (4-pack),2,3.84,04/21/19 22:58,"929 Jefferson St, Portland, ME 04101" -182580,Lightning Charging Cable,2,14.95,04/04/19 12:20,"918 Wilson St, San Francisco, CA 94016" -182581,Google Phone,1,600,04/10/19 15:24,"778 River St, Boston, MA 02215" -182582,Apple Airpods Headphones,1,150,04/03/19 09:46,"976 Walnut St, Los Angeles, CA 90001" -182583,Flatscreen TV,1,300,04/19/19 12:41,"495 Johnson St, Portland, OR 97035" -182584,20in Monitor,1,109.99,04/08/19 15:53,"372 Jackson St, Portland, OR 97035" -182585,AA Batteries (4-pack),1,3.84,04/03/19 06:01,"937 Forest St, Los Angeles, CA 90001" -182586,Lightning Charging Cable,1,14.95,04/04/19 22:54,"947 Jefferson St, San Francisco, CA 94016" -182587,Macbook Pro Laptop,1,1700,04/02/19 16:18,"247 Hickory St, Portland, OR 97035" -182588,27in FHD Monitor,1,149.99,04/14/19 15:07,"121 Jefferson St, Portland, OR 97035" -182589,Lightning Charging Cable,2,14.95,04/03/19 16:02,"637 Hickory St, San Francisco, CA 94016" -182590,Wired Headphones,1,11.99,04/17/19 11:18,"623 Ridge St, New York City, NY 10001" -182591,Bose SoundSport Headphones,1,99.99,04/13/19 12:55,"595 12th St, Seattle, WA 98101" -182592,AAA Batteries (4-pack),1,2.99,04/19/19 13:13,"185 Maple St, San Francisco, CA 94016" -182593,Lightning Charging Cable,1,14.95,04/05/19 16:51,"693 8th St, New York City, NY 10001" -182594,Wired Headphones,2,11.99,04/10/19 14:55,"27 Lincoln St, San Francisco, CA 94016" -182595,Apple Airpods Headphones,1,150,04/16/19 19:53,"518 Chestnut St, San Francisco, CA 94016" -182596,Bose SoundSport Headphones,1,99.99,04/27/19 22:03,"247 Jefferson St, San Francisco, CA 94016" -182597,Wired Headphones,1,11.99,04/14/19 14:52,"405 River St, Boston, MA 02215" -182598,Lightning Charging Cable,1,14.95,04/14/19 11:31,"636 West St, San Francisco, CA 94016" -182599,AA Batteries (4-pack),1,3.84,04/29/19 13:21,"78 Chestnut St, San Francisco, CA 94016" -182600,USB-C Charging Cable,1,11.95,04/16/19 13:08,"851 Willow St, San Francisco, CA 94016" -182601,Bose SoundSport Headphones,1,99.99,04/25/19 03:43,"412 2nd St, New York City, NY 10001" -182602,34in Ultrawide Monitor,1,379.99,04/13/19 11:46,"629 7th St, Los Angeles, CA 90001" -182603,Apple Airpods Headphones,1,150,04/15/19 18:57,"68 Lincoln St, San Francisco, CA 94016" -182604,Flatscreen TV,1,300,04/30/19 10:39,"420 River St, New York City, NY 10001" -182605,AA Batteries (4-pack),1,3.84,04/12/19 00:17,"674 Church St, Atlanta, GA 30301" -182606,Wired Headphones,1,11.99,04/17/19 19:36,"909 South St, New York City, NY 10001" -182607,Wired Headphones,1,11.99,04/02/19 13:15,"422 Lincoln St, San Francisco, CA 94016" -182608,iPhone,1,700,04/17/19 11:59,"476 Forest St, Los Angeles, CA 90001" -182609,Wired Headphones,1,11.99,04/17/19 05:54,"952 11th St, San Francisco, CA 94016" -182610,Bose SoundSport Headphones,1,99.99,04/20/19 11:52,"457 Chestnut St, New York City, NY 10001" -182611,USB-C Charging Cable,1,11.95,04/03/19 17:08,"361 14th St, Los Angeles, CA 90001" -182612,USB-C Charging Cable,2,11.95,04/27/19 21:21,"265 Maple St, Austin, TX 73301" -182613,AA Batteries (4-pack),1,3.84,04/26/19 20:47,"891 Church St, Los Angeles, CA 90001" -182614,Wired Headphones,1,11.99,04/09/19 11:09,"489 Hill St, San Francisco, CA 94016" -182615,Macbook Pro Laptop,1,1700,04/23/19 17:57,"14 North St, Dallas, TX 75001" -182616,Wired Headphones,1,11.99,04/11/19 07:30,"848 Maple St, San Francisco, CA 94016" -182617,Bose SoundSport Headphones,1,99.99,04/30/19 15:58,"484 Hickory St, Los Angeles, CA 90001" -,,,,, -182618,USB-C Charging Cable,1,11.95,04/14/19 10:40,"386 Cherry St, San Francisco, CA 94016" -182619,Apple Airpods Headphones,1,150,04/14/19 19:50,"761 Adams St, Austin, TX 73301" -182620,27in FHD Monitor,1,149.99,04/26/19 12:24,"525 4th St, Atlanta, GA 30301" -182621,Google Phone,1,600,04/23/19 09:14,"184 Spruce St, Los Angeles, CA 90001" -182622,Wired Headphones,1,11.99,04/23/19 20:53,"111 5th St, San Francisco, CA 94016" -182623,Wired Headphones,2,11.99,04/23/19 21:35,"864 Highland St, San Francisco, CA 94016" -182624,27in FHD Monitor,1,149.99,04/20/19 16:55,"241 Maple St, San Francisco, CA 94016" -182625,Lightning Charging Cable,1,14.95,04/26/19 18:37,"190 South St, San Francisco, CA 94016" -182626,AAA Batteries (4-pack),2,2.99,04/25/19 12:44,"553 Sunset St, Seattle, WA 98101" -182627,Wired Headphones,1,11.99,04/12/19 13:13,"946 Spruce St, New York City, NY 10001" -182628,Wired Headphones,1,11.99,04/10/19 12:29,"887 Cedar St, Atlanta, GA 30301" -182629,27in FHD Monitor,1,149.99,04/11/19 21:27,"890 Elm St, Seattle, WA 98101" -182630,27in 4K Gaming Monitor,1,389.99,04/29/19 17:40,"205 14th St, Los Angeles, CA 90001" -182631,AAA Batteries (4-pack),2,2.99,04/17/19 02:28,"79 4th St, Boston, MA 02215" -182632,AAA Batteries (4-pack),1,2.99,04/25/19 14:46,"373 4th St, Boston, MA 02215" -182633,Macbook Pro Laptop,1,1700,04/23/19 10:53,"985 South St, San Francisco, CA 94016" -182634,27in 4K Gaming Monitor,1,389.99,04/04/19 14:53,"808 12th St, Boston, MA 02215" -182635,ThinkPad Laptop,1,999.99,04/19/19 12:47,"41 7th St, Dallas, TX 75001" -182636,USB-C Charging Cable,1,11.95,04/03/19 16:06,"927 Madison St, Boston, MA 02215" -182637,34in Ultrawide Monitor,1,379.99,04/03/19 22:52,"359 Pine St, San Francisco, CA 94016" -182638,Bose SoundSport Headphones,1,99.99,04/19/19 19:38,"850 4th St, San Francisco, CA 94016" -182639,Bose SoundSport Headphones,1,99.99,04/01/19 09:43,"820 Chestnut St, Atlanta, GA 30301" -182640,Apple Airpods Headphones,1,150,04/27/19 09:22,"911 7th St, Los Angeles, CA 90001" -182641,Lightning Charging Cable,1,14.95,04/01/19 16:05,"198 10th St, Boston, MA 02215" -182642,AA Batteries (4-pack),1,3.84,04/16/19 12:11,"734 Washington St, Seattle, WA 98101" -182643,iPhone,1,700,04/15/19 14:14,"132 Jefferson St, San Francisco, CA 94016" -182643,Wired Headphones,1,11.99,04/15/19 14:14,"132 Jefferson St, San Francisco, CA 94016" -182644,Lightning Charging Cable,1,14.95,04/01/19 16:13,"457 Wilson St, Los Angeles, CA 90001" -182645,27in FHD Monitor,1,149.99,04/11/19 19:53,"151 Church St, Boston, MA 02215" -182646,USB-C Charging Cable,1,11.95,04/17/19 06:14,"162 7th St, Boston, MA 02215" -182647,Lightning Charging Cable,1,14.95,04/07/19 20:27,"957 Forest St, San Francisco, CA 94016" -182648,Lightning Charging Cable,1,14.95,04/27/19 15:23,"873 Lake St, Austin, TX 73301" -182649,Lightning Charging Cable,1,14.95,04/28/19 11:28,"543 Lincoln St, Los Angeles, CA 90001" -182650,USB-C Charging Cable,1,11.95,04/15/19 19:09,"328 Main St, Los Angeles, CA 90001" -182651,Bose SoundSport Headphones,1,99.99,04/13/19 09:17,"450 North St, Los Angeles, CA 90001" -182652,AA Batteries (4-pack),2,3.84,04/01/19 21:44,"314 Lincoln St, Austin, TX 73301" -182653,Flatscreen TV,1,300,04/16/19 00:24,"651 Pine St, Atlanta, GA 30301" -182654,Lightning Charging Cable,1,14.95,04/23/19 13:41,"931 Highland St, Los Angeles, CA 90001" -182655,Lightning Charging Cable,1,14.95,04/18/19 17:39,"447 Chestnut St, San Francisco, CA 94016" -182656,Bose SoundSport Headphones,1,99.99,04/17/19 17:32,"406 Park St, Los Angeles, CA 90001" -182657,27in FHD Monitor,1,149.99,04/19/19 19:46,"574 Center St, San Francisco, CA 94016" -182658,27in 4K Gaming Monitor,1,389.99,04/14/19 14:07,"205 Maple St, Boston, MA 02215" -182659,Bose SoundSport Headphones,1,99.99,04/14/19 14:21,"291 Jackson St, Atlanta, GA 30301" -182660,AAA Batteries (4-pack),4,2.99,04/05/19 22:47,"291 Chestnut St, Portland, OR 97035" -182661,AA Batteries (4-pack),1,3.84,04/22/19 22:54,"881 Willow St, Los Angeles, CA 90001" -182662,USB-C Charging Cable,1,11.95,04/09/19 21:03,"832 Washington St, Los Angeles, CA 90001" -182663,AA Batteries (4-pack),1,3.84,04/02/19 13:17,"68 7th St, San Francisco, CA 94016" -182664,AA Batteries (4-pack),1,3.84,04/01/19 18:05,"843 Johnson St, New York City, NY 10001" -182665,Bose SoundSport Headphones,1,99.99,04/30/19 12:51,"272 11th St, Los Angeles, CA 90001" -182666,Wired Headphones,1,11.99,04/01/19 07:17,"317 Maple St, Los Angeles, CA 90001" -182667,Lightning Charging Cable,1,14.95,04/10/19 14:54,"171 12th St, San Francisco, CA 94016" -182668,Apple Airpods Headphones,1,150,04/30/19 19:58,"814 10th St, Boston, MA 02215" -182668,AAA Batteries (4-pack),1,2.99,04/30/19 19:58,"814 10th St, Boston, MA 02215" -182669,Apple Airpods Headphones,1,150,04/12/19 17:40,"311 Lake St, Boston, MA 02215" -182670,LG Dryer,1,600.0,04/20/19 11:19,"128 Lake St, San Francisco, CA 94016" -182671,Wired Headphones,1,11.99,04/23/19 16:57,"459 North St, San Francisco, CA 94016" -182672,AA Batteries (4-pack),1,3.84,04/05/19 00:29,"543 12th St, Los Angeles, CA 90001" -182673,27in 4K Gaming Monitor,1,389.99,04/10/19 15:24,"715 Hickory St, Los Angeles, CA 90001" -182674,AAA Batteries (4-pack),1,2.99,04/27/19 19:07,"607 Johnson St, San Francisco, CA 94016" -182675,USB-C Charging Cable,1,11.95,04/23/19 07:19,"598 Johnson St, Austin, TX 73301" -182676,Bose SoundSport Headphones,1,99.99,04/24/19 11:51,"975 West St, Dallas, TX 75001" -182677,iPhone,1,700,04/03/19 11:57,"55 6th St, Seattle, WA 98101" -182678,USB-C Charging Cable,1,11.95,04/22/19 16:26,"499 4th St, Dallas, TX 75001" -182679,Apple Airpods Headphones,1,150,04/22/19 10:55,"234 12th St, Los Angeles, CA 90001" -182680,Apple Airpods Headphones,1,150,04/07/19 13:35,"560 10th St, Austin, TX 73301" -182681,USB-C Charging Cable,1,11.95,04/06/19 10:37,"337 Hill St, Seattle, WA 98101" -182682,AA Batteries (4-pack),1,3.84,04/29/19 11:21,"660 South St, Los Angeles, CA 90001" -182683,Apple Airpods Headphones,1,150,04/29/19 18:00,"863 Willow St, Los Angeles, CA 90001" -182684,AAA Batteries (4-pack),1,2.99,04/12/19 08:34,"995 Walnut St, Atlanta, GA 30301" -182685,Lightning Charging Cable,1,14.95,04/20/19 12:41,"13 Lake St, Los Angeles, CA 90001" -182686,Apple Airpods Headphones,1,150,04/02/19 08:41,"239 Lakeview St, Atlanta, GA 30301" -182687,Lightning Charging Cable,1,14.95,04/15/19 09:12,"475 Hill St, Atlanta, GA 30301" -182688,AA Batteries (4-pack),1,3.84,04/16/19 23:22,"980 Center St, Atlanta, GA 30301" -182689,iPhone,1,700,04/04/19 21:43,"220 Pine St, Los Angeles, CA 90001" -182690,AAA Batteries (4-pack),1,2.99,04/21/19 09:51,"647 6th St, San Francisco, CA 94016" -182691,Bose SoundSport Headphones,1,99.99,04/13/19 09:14,"305 Highland St, Boston, MA 02215" -182692,AA Batteries (4-pack),2,3.84,04/11/19 17:48,"913 Johnson St, New York City, NY 10001" -182692,Lightning Charging Cable,1,14.95,04/11/19 17:48,"913 Johnson St, New York City, NY 10001" -182693,AAA Batteries (4-pack),1,2.99,04/19/19 14:57,"947 Ridge St, New York City, NY 10001" -182694,34in Ultrawide Monitor,1,379.99,04/24/19 20:23,"264 Lincoln St, Boston, MA 02215" -182695,AA Batteries (4-pack),1,3.84,04/25/19 13:03,"550 Cherry St, San Francisco, CA 94016" -182696,iPhone,1,700,04/19/19 07:30,"942 Lincoln St, Seattle, WA 98101" -182697,USB-C Charging Cable,1,11.95,04/18/19 11:23,"769 South St, Los Angeles, CA 90001" -182698,AAA Batteries (4-pack),2,2.99,04/02/19 16:33,"817 1st St, San Francisco, CA 94016" -182699,Wired Headphones,1,11.99,04/02/19 21:09,"810 Madison St, San Francisco, CA 94016" -182700,Bose SoundSport Headphones,1,99.99,04/21/19 09:27,"939 2nd St, Portland, OR 97035" -182701,USB-C Charging Cable,1,11.95,04/08/19 18:53,"343 1st St, Seattle, WA 98101" -182702,Bose SoundSport Headphones,1,99.99,04/30/19 18:09,"13 River St, San Francisco, CA 94016" -182703,USB-C Charging Cable,1,11.95,04/13/19 06:17,"929 14th St, New York City, NY 10001" -182704,Apple Airpods Headphones,1,150,04/15/19 10:22,"1 Lincoln St, New York City, NY 10001" -,,,,, -182705,LG Dryer,1,600.0,04/21/19 10:49,"137 2nd St, San Francisco, CA 94016" -182706,USB-C Charging Cable,1,11.95,04/22/19 14:56,"751 Center St, Atlanta, GA 30301" -182707,AA Batteries (4-pack),1,3.84,04/09/19 12:55,"996 North St, Atlanta, GA 30301" -182707,Apple Airpods Headphones,1,150,04/09/19 12:55,"996 North St, Atlanta, GA 30301" -182708,27in 4K Gaming Monitor,1,389.99,04/13/19 13:59,"616 13th St, Seattle, WA 98101" -182709,USB-C Charging Cable,1,11.95,04/17/19 20:28,"352 Cherry St, Dallas, TX 75001" -182710,AA Batteries (4-pack),1,3.84,04/19/19 19:44,"382 10th St, Boston, MA 02215" -182711,Bose SoundSport Headphones,1,99.99,04/04/19 20:49,"75 2nd St, San Francisco, CA 94016" -182712,20in Monitor,1,109.99,04/18/19 17:20,"986 Adams St, Los Angeles, CA 90001" -182713,20in Monitor,1,109.99,04/15/19 17:15,"960 Pine St, San Francisco, CA 94016" -182713,Macbook Pro Laptop,1,1700,04/15/19 17:15,"960 Pine St, San Francisco, CA 94016" -182714,Wired Headphones,1,11.99,04/30/19 22:02,"463 Lakeview St, San Francisco, CA 94016" -182715,Wired Headphones,1,11.99,04/16/19 17:10,"695 Ridge St, San Francisco, CA 94016" -182716,Lightning Charging Cable,1,14.95,04/12/19 19:33,"285 7th St, San Francisco, CA 94016" -182717,AAA Batteries (4-pack),1,2.99,04/05/19 22:19,"735 Center St, Los Angeles, CA 90001" -182718,Apple Airpods Headphones,1,150,04/17/19 16:59,"593 Madison St, Portland, OR 97035" -182719,iPhone,1,700,04/16/19 23:51,"521 Dogwood St, San Francisco, CA 94016" -182720,27in FHD Monitor,1,149.99,04/28/19 12:07,"687 Madison St, New York City, NY 10001" -182721,iPhone,1,700,04/10/19 22:16,"164 10th St, Los Angeles, CA 90001" -182721,Lightning Charging Cable,1,14.95,04/10/19 22:16,"164 10th St, Los Angeles, CA 90001" -182722,34in Ultrawide Monitor,1,379.99,04/22/19 21:40,"402 1st St, Los Angeles, CA 90001" -182723,Google Phone,1,600,04/09/19 19:52,"352 6th St, San Francisco, CA 94016" -182724,AA Batteries (4-pack),1,3.84,04/24/19 11:28,"415 Jackson St, Boston, MA 02215" -182725,iPhone,1,700,04/20/19 12:15,"645 Meadow St, Dallas, TX 75001" -182726,AA Batteries (4-pack),2,3.84,04/26/19 17:33,"461 Walnut St, Portland, OR 97035" -182727,Lightning Charging Cable,1,14.95,04/30/19 18:00,"754 Willow St, Los Angeles, CA 90001" -182728,27in 4K Gaming Monitor,1,389.99,04/19/19 15:10,"322 Chestnut St, New York City, NY 10001" -182729,Apple Airpods Headphones,1,150,04/14/19 20:40,"657 14th St, Portland, OR 97035" -182730,USB-C Charging Cable,1,11.95,04/14/19 15:30,"257 Meadow St, Dallas, TX 75001" -182731,iPhone,1,700,04/30/19 11:40,"600 Highland St, Dallas, TX 75001" -182731,Wired Headphones,2,11.99,04/30/19 11:40,"600 Highland St, Dallas, TX 75001" -182732,27in 4K Gaming Monitor,1,389.99,04/13/19 20:43,"743 Hickory St, Austin, TX 73301" -182733,Wired Headphones,1,11.99,04/18/19 23:13,"576 Maple St, Los Angeles, CA 90001" -182734,Apple Airpods Headphones,1,150,04/14/19 21:41,"652 12th St, San Francisco, CA 94016" -182735,AAA Batteries (4-pack),1,2.99,04/27/19 15:52,"220 7th St, New York City, NY 10001" -182735,Wired Headphones,1,11.99,04/27/19 15:52,"220 7th St, New York City, NY 10001" -182736,Lightning Charging Cable,2,14.95,04/05/19 12:42,"102 Cedar St, San Francisco, CA 94016" -182737,USB-C Charging Cable,1,11.95,04/06/19 18:37,"12 1st St, San Francisco, CA 94016" -182738,Wired Headphones,1,11.99,04/16/19 05:28,"58 Lake St, Austin, TX 73301" -182739,Wired Headphones,1,11.99,04/19/19 14:19,"378 Hickory St, Dallas, TX 75001" -182740,Bose SoundSport Headphones,1,99.99,04/17/19 09:26,"463 Willow St, New York City, NY 10001" -182741,Apple Airpods Headphones,1,150,04/02/19 14:02,"120 1st St, New York City, NY 10001" -182742,Apple Airpods Headphones,1,150,04/17/19 11:15,"470 Adams St, San Francisco, CA 94016" -182743,USB-C Charging Cable,1,11.95,04/09/19 05:26,"33 Lakeview St, San Francisco, CA 94016" -182744,27in FHD Monitor,1,149.99,04/08/19 02:23,"552 Jackson St, New York City, NY 10001" -182745,Apple Airpods Headphones,1,150,04/07/19 19:18,"975 12th St, Los Angeles, CA 90001" -182746,Apple Airpods Headphones,1,150,04/25/19 19:19,"693 Maple St, San Francisco, CA 94016" -182747,AAA Batteries (4-pack),2,2.99,04/20/19 17:57,"771 West St, Boston, MA 02215" -182748,USB-C Charging Cable,1,11.95,04/11/19 19:55,"706 Highland St, New York City, NY 10001" -182749,Bose SoundSport Headphones,1,99.99,04/13/19 09:43,"379 1st St, San Francisco, CA 94016" -182750,AA Batteries (4-pack),1,3.84,04/16/19 17:55,"6 7th St, Boston, MA 02215" -182751,Macbook Pro Laptop,1,1700,04/12/19 19:29,"233 Main St, San Francisco, CA 94016" -182752,Bose SoundSport Headphones,1,99.99,04/21/19 14:33,"723 West St, Boston, MA 02215" -182752,27in FHD Monitor,1,149.99,04/21/19 14:33,"723 West St, Boston, MA 02215" -182753,USB-C Charging Cable,1,11.95,04/21/19 11:14,"545 11th St, San Francisco, CA 94016" -182754,Wired Headphones,1,11.99,04/23/19 09:54,"624 8th St, San Francisco, CA 94016" -182755,Google Phone,1,600,04/29/19 12:14,"371 Spruce St, New York City, NY 10001" -182756,Apple Airpods Headphones,1,150,04/20/19 13:50,"14 4th St, Los Angeles, CA 90001" -182756,Wired Headphones,1,11.99,04/20/19 13:50,"14 4th St, Los Angeles, CA 90001" -182757,Apple Airpods Headphones,1,150,04/26/19 18:50,"853 5th St, Seattle, WA 98101" -182758,iPhone,1,700,04/23/19 09:06,"231 11th St, San Francisco, CA 94016" -182759,AA Batteries (4-pack),1,3.84,04/05/19 22:02,"557 Wilson St, Los Angeles, CA 90001" -182760,34in Ultrawide Monitor,1,379.99,04/06/19 15:08,"309 Center St, Dallas, TX 75001" -182761,Lightning Charging Cable,1,14.95,04/04/19 09:09,"866 Chestnut St, New York City, NY 10001" -182762,AA Batteries (4-pack),3,3.84,04/28/19 16:19,"412 Church St, Atlanta, GA 30301" -182763,Wired Headphones,1,11.99,04/01/19 09:43,"847 10th St, Dallas, TX 75001" -182764,Bose SoundSport Headphones,1,99.99,04/23/19 13:02,"582 Wilson St, San Francisco, CA 94016" -182765,USB-C Charging Cable,1,11.95,04/15/19 19:16,"478 2nd St, Dallas, TX 75001" -182766,Google Phone,1,600,04/24/19 22:21,"321 6th St, New York City, NY 10001" -182766,Wired Headphones,1,11.99,04/24/19 22:21,"321 6th St, New York City, NY 10001" -182767,USB-C Charging Cable,1,11.95,04/11/19 09:40,"911 1st St, Seattle, WA 98101" -182768,iPhone,1,700,04/22/19 11:46,"506 8th St, Boston, MA 02215" -182769,Wired Headphones,1,11.99,04/17/19 15:19,"711 4th St, Seattle, WA 98101" -182770,27in FHD Monitor,1,149.99,04/19/19 13:30,"986 4th St, Seattle, WA 98101" -182771,AAA Batteries (4-pack),2,2.99,04/04/19 16:22,"367 Sunset St, Boston, MA 02215" -182772,USB-C Charging Cable,1,11.95,04/17/19 08:18,"46 Sunset St, Portland, OR 97035" -182773,Macbook Pro Laptop,1,1700,04/06/19 21:24,"649 Lincoln St, Atlanta, GA 30301" -182774,Lightning Charging Cable,2,14.95,04/29/19 13:07,"430 Jefferson St, San Francisco, CA 94016" -182775,USB-C Charging Cable,1,11.95,04/23/19 07:27,"773 Cedar St, Atlanta, GA 30301" -182776,Google Phone,1,600,04/13/19 16:46,"948 5th St, San Francisco, CA 94016" -182776,USB-C Charging Cable,1,11.95,04/13/19 16:46,"948 5th St, San Francisco, CA 94016" -182777,Lightning Charging Cable,1,14.95,04/09/19 15:14,"161 Meadow St, Boston, MA 02215" -182778,Flatscreen TV,1,300,04/30/19 15:01,"471 Cherry St, San Francisco, CA 94016" -182779,AA Batteries (4-pack),2,3.84,04/21/19 13:16,"467 Willow St, Boston, MA 02215" -182780,Bose SoundSport Headphones,1,99.99,04/07/19 11:40,"565 Washington St, Dallas, TX 75001" -182781,Macbook Pro Laptop,1,1700,04/18/19 07:45,"220 10th St, Dallas, TX 75001" -182782,Lightning Charging Cable,1,14.95,04/14/19 12:48,"535 2nd St, Los Angeles, CA 90001" -182783,Lightning Charging Cable,1,14.95,04/08/19 21:20,"992 13th St, Portland, OR 97035" -182784,Lightning Charging Cable,1,14.95,04/21/19 19:43,"979 Johnson St, Seattle, WA 98101" -182785,Lightning Charging Cable,2,14.95,04/16/19 09:44,"122 River St, Boston, MA 02215" -182786,AA Batteries (4-pack),1,3.84,04/03/19 13:33,"598 Adams St, Los Angeles, CA 90001" -182787,AA Batteries (4-pack),2,3.84,04/20/19 15:56,"367 9th St, New York City, NY 10001" -182788,USB-C Charging Cable,1,11.95,04/09/19 10:43,"564 River St, Seattle, WA 98101" -182789,Lightning Charging Cable,1,14.95,04/27/19 19:38,"327 8th St, San Francisco, CA 94016" -182790,AA Batteries (4-pack),2,3.84,04/14/19 18:09,"644 5th St, Los Angeles, CA 90001" -182791,Bose SoundSport Headphones,1,99.99,04/07/19 13:57,"201 7th St, Seattle, WA 98101" -182792,AA Batteries (4-pack),2,3.84,04/21/19 09:05,"940 Walnut St, Boston, MA 02215" -182793,Lightning Charging Cable,1,14.95,04/23/19 21:58,"961 Jackson St, Dallas, TX 75001" -182794,AAA Batteries (4-pack),2,2.99,04/16/19 11:39,"273 Madison St, New York City, NY 10001" -182795,ThinkPad Laptop,1,999.99,04/16/19 11:18,"553 Lakeview St, San Francisco, CA 94016" -182796,20in Monitor,1,109.99,04/03/19 21:22,"189 Sunset St, Los Angeles, CA 90001" -182797,AAA Batteries (4-pack),2,2.99,04/07/19 21:09,"665 Meadow St, San Francisco, CA 94016" -182798,AA Batteries (4-pack),1,3.84,04/06/19 07:31,"986 Sunset St, Los Angeles, CA 90001" -182799,AAA Batteries (4-pack),1,2.99,04/26/19 18:56,"635 Cherry St, San Francisco, CA 94016" -182800,Wired Headphones,1,11.99,04/27/19 13:19,"421 Meadow St, Seattle, WA 98101" -182801,Bose SoundSport Headphones,1,99.99,04/01/19 11:21,"512 Lake St, San Francisco, CA 94016" -182802,Lightning Charging Cable,1,14.95,04/25/19 19:30,"741 8th St, Boston, MA 02215" -182803,AA Batteries (4-pack),1,3.84,04/26/19 14:15,"978 Hickory St, San Francisco, CA 94016" -182804,Apple Airpods Headphones,1,150,04/09/19 17:38,"833 13th St, Portland, ME 04101" -182805,AAA Batteries (4-pack),1,2.99,04/25/19 20:55,"242 Willow St, Los Angeles, CA 90001" -182806,Bose SoundSport Headphones,1,99.99,04/07/19 21:44,"822 Willow St, New York City, NY 10001" -182807,Apple Airpods Headphones,1,150,04/07/19 01:30,"854 Forest St, Atlanta, GA 30301" -182808,27in FHD Monitor,1,149.99,04/06/19 14:30,"773 12th St, New York City, NY 10001" -182809,Macbook Pro Laptop,1,1700,04/10/19 18:15,"858 Meadow St, Portland, OR 97035" -182809,AA Batteries (4-pack),2,3.84,04/10/19 18:15,"858 Meadow St, Portland, OR 97035" -182810,AAA Batteries (4-pack),1,2.99,04/05/19 16:11,"802 Lake St, Boston, MA 02215" -182811,AA Batteries (4-pack),2,3.84,04/05/19 10:19,"160 Lakeview St, San Francisco, CA 94016" -182812,Apple Airpods Headphones,1,150,04/07/19 17:37,"278 South St, San Francisco, CA 94016" -182813,Wired Headphones,1,11.99,04/17/19 09:23,"897 Walnut St, Seattle, WA 98101" -182814,AA Batteries (4-pack),1,3.84,04/01/19 16:09,"443 West St, New York City, NY 10001" -182815,AAA Batteries (4-pack),1,2.99,04/17/19 12:52,"184 8th St, Atlanta, GA 30301" -182816,27in FHD Monitor,1,149.99,04/01/19 19:28,"173 South St, New York City, NY 10001" -182817,AA Batteries (4-pack),1,3.84,04/28/19 20:12,"668 West St, New York City, NY 10001" -182818,AA Batteries (4-pack),1,3.84,04/16/19 18:33,"521 11th St, Austin, TX 73301" -182819,AAA Batteries (4-pack),1,2.99,04/15/19 16:49,"499 13th St, New York City, NY 10001" -182820,Wired Headphones,1,11.99,04/08/19 12:02,"279 Pine St, Dallas, TX 75001" -182821,Wired Headphones,2,11.99,04/15/19 19:46,"415 Lincoln St, Boston, MA 02215" -182822,34in Ultrawide Monitor,1,379.99,05/01/19 00:46,"295 Ridge St, Dallas, TX 75001" -182823,Wired Headphones,1,11.99,04/08/19 10:35,"963 Pine St, Atlanta, GA 30301" -182824,USB-C Charging Cable,1,11.95,04/06/19 18:26,"839 Center St, New York City, NY 10001" -182825,Wired Headphones,2,11.99,04/09/19 20:21,"650 Chestnut St, San Francisco, CA 94016" -182826,Bose SoundSport Headphones,1,99.99,04/25/19 16:04,"429 Pine St, Portland, OR 97035" -182827,AAA Batteries (4-pack),1,2.99,04/12/19 17:13,"990 Highland St, Austin, TX 73301" -182828,ThinkPad Laptop,1,999.99,04/04/19 12:25,"95 Jackson St, Boston, MA 02215" -182829,USB-C Charging Cable,1,11.95,04/16/19 15:54,"295 1st St, Boston, MA 02215" -182830,Google Phone,1,600,04/30/19 15:52,"694 Wilson St, New York City, NY 10001" -182831,AAA Batteries (4-pack),2,2.99,04/04/19 16:13,"162 Jefferson St, Boston, MA 02215" -182832,USB-C Charging Cable,1,11.95,04/10/19 10:41,"491 9th St, San Francisco, CA 94016" -182833,AAA Batteries (4-pack),1,2.99,04/14/19 13:34,"263 Highland St, San Francisco, CA 94016" -182834,Lightning Charging Cable,1,14.95,04/04/19 07:03,"271 8th St, Atlanta, GA 30301" -182835,AA Batteries (4-pack),1,3.84,04/22/19 11:59,"39 8th St, San Francisco, CA 94016" -182836,USB-C Charging Cable,2,11.95,04/03/19 08:13,"884 Cedar St, Austin, TX 73301" -182837,Lightning Charging Cable,2,14.95,04/13/19 18:14,"739 Center St, Atlanta, GA 30301" -182838,Macbook Pro Laptop,1,1700,04/26/19 17:25,"880 Jefferson St, San Francisco, CA 94016" -182839,USB-C Charging Cable,1,11.95,04/20/19 22:54,"162 Washington St, Los Angeles, CA 90001" -182840,AAA Batteries (4-pack),1,2.99,04/06/19 17:37,"565 Cherry St, Los Angeles, CA 90001" -182841,Wired Headphones,1,11.99,04/12/19 20:29,"395 Hill St, New York City, NY 10001" -182842,Wired Headphones,1,11.99,04/30/19 11:25,"134 Dogwood St, Portland, ME 04101" -182843,Apple Airpods Headphones,1,150,04/27/19 06:18,"354 6th St, New York City, NY 10001" -182844,Lightning Charging Cable,1,14.95,04/09/19 06:27,"318 Pine St, San Francisco, CA 94016" -182845,Bose SoundSport Headphones,1,99.99,04/12/19 18:02,"821 14th St, Los Angeles, CA 90001" -182846,iPhone,1,700,04/04/19 16:12,"422 Washington St, Atlanta, GA 30301" -182846,Lightning Charging Cable,1,14.95,04/04/19 16:12,"422 Washington St, Atlanta, GA 30301" -182847,27in FHD Monitor,1,149.99,04/09/19 21:39,"837 6th St, Seattle, WA 98101" -182848,AA Batteries (4-pack),4,3.84,04/08/19 14:44,"285 2nd St, Dallas, TX 75001" -182849,Apple Airpods Headphones,1,150,04/12/19 14:54,"752 Lakeview St, San Francisco, CA 94016" -182850,Flatscreen TV,1,300,04/05/19 06:10,"619 Madison St, Seattle, WA 98101" -182851,Wired Headphones,1,11.99,04/13/19 18:17,"358 5th St, New York City, NY 10001" -182852,AA Batteries (4-pack),1,3.84,04/27/19 15:32,"470 Johnson St, New York City, NY 10001" -182852,Lightning Charging Cable,1,14.95,04/27/19 15:32,"470 Johnson St, New York City, NY 10001" -182853,AA Batteries (4-pack),1,3.84,04/29/19 06:11,"98 5th St, Los Angeles, CA 90001" -182854,iPhone,1,700,04/17/19 13:48,"10 4th St, Los Angeles, CA 90001" -182855,AAA Batteries (4-pack),1,2.99,04/23/19 16:53,"671 5th St, Los Angeles, CA 90001" -182856,USB-C Charging Cable,2,11.95,04/08/19 13:41,"137 South St, Los Angeles, CA 90001" -182857,Wired Headphones,3,11.99,04/24/19 12:12,"817 Lake St, New York City, NY 10001" -182858,Lightning Charging Cable,1,14.95,04/02/19 13:52,"347 Willow St, San Francisco, CA 94016" -182859,Lightning Charging Cable,1,14.95,04/21/19 06:59,"473 Cherry St, San Francisco, CA 94016" -182860,AA Batteries (4-pack),4,3.84,04/23/19 00:08,"602 Willow St, New York City, NY 10001" -182861,Lightning Charging Cable,1,14.95,04/12/19 14:00,"148 4th St, Los Angeles, CA 90001" -182862,Apple Airpods Headphones,1,150,04/15/19 15:54,"836 12th St, Dallas, TX 75001" -182863,Lightning Charging Cable,1,14.95,04/02/19 17:34,"744 River St, Seattle, WA 98101" -182864,Wired Headphones,1,11.99,04/23/19 14:39,"475 Chestnut St, Los Angeles, CA 90001" -182865,Apple Airpods Headphones,1,150,04/30/19 22:16,"471 8th St, Seattle, WA 98101" -182866,AA Batteries (4-pack),1,3.84,04/16/19 19:54,"505 Wilson St, New York City, NY 10001" -182867,27in FHD Monitor,1,149.99,04/11/19 19:19,"429 11th St, Los Angeles, CA 90001" -182868,Bose SoundSport Headphones,1,99.99,04/21/19 16:04,"28 Ridge St, San Francisco, CA 94016" -182869,Lightning Charging Cable,1,14.95,04/06/19 19:59,"744 Cedar St, Seattle, WA 98101" -182870,AA Batteries (4-pack),3,3.84,04/04/19 10:45,"94 Adams St, San Francisco, CA 94016" -182871,Lightning Charging Cable,1,14.95,04/12/19 21:37,"65 10th St, Los Angeles, CA 90001" -182872,Lightning Charging Cable,1,14.95,04/04/19 10:51,"907 Meadow St, San Francisco, CA 94016" -182873,34in Ultrawide Monitor,1,379.99,04/15/19 22:26,"193 Meadow St, Seattle, WA 98101" -182874,27in 4K Gaming Monitor,1,389.99,04/03/19 07:11,"620 4th St, Boston, MA 02215" -182875,Bose SoundSport Headphones,1,99.99,04/01/19 13:22,"592 5th St, Austin, TX 73301" -182876,Bose SoundSport Headphones,1,99.99,04/06/19 14:07,"16 Chestnut St, Seattle, WA 98101" -182877,27in 4K Gaming Monitor,1,389.99,04/28/19 18:01,"761 Lincoln St, Los Angeles, CA 90001" -182878,Lightning Charging Cable,1,14.95,04/13/19 16:48,"65 Lincoln St, San Francisco, CA 94016" -182879,AAA Batteries (4-pack),1,2.99,04/11/19 11:46,"353 Jefferson St, San Francisco, CA 94016" -182880,27in 4K Gaming Monitor,1,389.99,04/25/19 20:50,"237 Madison St, Los Angeles, CA 90001" -182881,AA Batteries (4-pack),1,3.84,04/10/19 13:57,"304 Jackson St, Boston, MA 02215" -182882,Wired Headphones,1,11.99,04/21/19 00:25,"145 Chestnut St, Portland, OR 97035" -182883,AAA Batteries (4-pack),1,2.99,04/11/19 14:18,"369 Madison St, Atlanta, GA 30301" -182884,AA Batteries (4-pack),1,3.84,04/09/19 11:26,"764 9th St, New York City, NY 10001" -182885,USB-C Charging Cable,1,11.95,04/11/19 13:51,"444 Park St, Los Angeles, CA 90001" -182886,Apple Airpods Headphones,1,150,04/24/19 11:18,"209 Maple St, San Francisco, CA 94016" -182887,ThinkPad Laptop,1,999.99,04/29/19 14:58,"483 Church St, Boston, MA 02215" -182888,AAA Batteries (4-pack),2,2.99,04/21/19 11:08,"427 Madison St, San Francisco, CA 94016" -182889,20in Monitor,1,109.99,04/15/19 17:19,"511 10th St, Boston, MA 02215" -182890,27in 4K Gaming Monitor,1,389.99,04/12/19 12:46,"910 Sunset St, Los Angeles, CA 90001" -182891,27in 4K Gaming Monitor,1,389.99,04/24/19 17:54,"150 Chestnut St, Los Angeles, CA 90001" -182891,Bose SoundSport Headphones,1,99.99,04/24/19 17:54,"150 Chestnut St, Los Angeles, CA 90001" -182892,USB-C Charging Cable,1,11.95,04/28/19 01:53,"336 9th St, Boston, MA 02215" -182892,AAA Batteries (4-pack),1,2.99,04/28/19 01:53,"336 9th St, Boston, MA 02215" -182893,Bose SoundSport Headphones,1,99.99,04/24/19 23:55,"205 Johnson St, New York City, NY 10001" -182894,Lightning Charging Cable,1,14.95,04/21/19 15:21,"821 Washington St, Seattle, WA 98101" -182895,Wired Headphones,1,11.99,04/18/19 11:07,"444 Hickory St, Los Angeles, CA 90001" -182896,Bose SoundSport Headphones,1,99.99,04/21/19 22:13,"711 Willow St, Seattle, WA 98101" -182897,Lightning Charging Cable,1,14.95,04/19/19 18:12,"795 Elm St, New York City, NY 10001" -182898,Bose SoundSport Headphones,1,99.99,04/23/19 21:46,"564 Forest St, Portland, ME 04101" -182899,Apple Airpods Headphones,1,150,04/29/19 10:03,"323 Madison St, Atlanta, GA 30301" -182900,34in Ultrawide Monitor,1,379.99,04/13/19 10:35,"971 4th St, Seattle, WA 98101" -182901,Google Phone,1,600,04/23/19 18:22,"728 Meadow St, Austin, TX 73301" -182901,USB-C Charging Cable,1,11.95,04/23/19 18:22,"728 Meadow St, Austin, TX 73301" -182902,iPhone,1,700,04/09/19 11:18,"744 Sunset St, San Francisco, CA 94016" -182903,Lightning Charging Cable,1,14.95,04/20/19 12:34,"868 10th St, Boston, MA 02215" -182904,Lightning Charging Cable,1,14.95,04/09/19 22:15,"410 Wilson St, Atlanta, GA 30301" -182904,Lightning Charging Cable,1,14.95,04/09/19 22:15,"410 Wilson St, Atlanta, GA 30301" -182905,Lightning Charging Cable,1,14.95,04/22/19 20:30,"394 Spruce St, Seattle, WA 98101" -182905,Google Phone,1,600,04/22/19 20:30,"394 Spruce St, Seattle, WA 98101" -182906,Wired Headphones,1,11.99,04/21/19 22:49,"586 9th St, New York City, NY 10001" -182907,Lightning Charging Cable,1,14.95,04/11/19 14:26,"283 Pine St, Dallas, TX 75001" -182908,Google Phone,1,600,04/19/19 17:40,"452 Highland St, New York City, NY 10001" -182908,USB-C Charging Cable,1,11.95,04/19/19 17:40,"452 Highland St, New York City, NY 10001" -182908,Wired Headphones,1,11.99,04/19/19 17:40,"452 Highland St, New York City, NY 10001" -182909,USB-C Charging Cable,1,11.95,04/09/19 14:08,"472 Jackson St, San Francisco, CA 94016" -182910,USB-C Charging Cable,2,11.95,04/08/19 14:44,"910 Forest St, Los Angeles, CA 90001" -182911,Wired Headphones,2,11.99,04/05/19 23:05,"988 Washington St, New York City, NY 10001" -182912,AA Batteries (4-pack),1,3.84,04/03/19 18:53,"25 7th St, Seattle, WA 98101" -182913,Wired Headphones,1,11.99,04/21/19 18:40,"194 Dogwood St, Atlanta, GA 30301" -182914,Lightning Charging Cable,1,14.95,04/10/19 17:38,"609 2nd St, San Francisco, CA 94016" -182915,AA Batteries (4-pack),3,3.84,04/24/19 16:35,"208 Jefferson St, San Francisco, CA 94016" -182916,AAA Batteries (4-pack),1,2.99,04/27/19 13:22,"853 12th St, San Francisco, CA 94016" -182917,iPhone,1,700,04/29/19 15:19,"143 Sunset St, San Francisco, CA 94016" -182917,USB-C Charging Cable,1,11.95,04/29/19 15:19,"143 Sunset St, San Francisco, CA 94016" -182918,USB-C Charging Cable,1,11.95,04/18/19 13:27,"969 Cedar St, New York City, NY 10001" -182919,Wired Headphones,1,11.99,04/14/19 19:17,"319 Hickory St, Austin, TX 73301" -182920,Apple Airpods Headphones,1,150,04/18/19 21:52,"741 Pine St, New York City, NY 10001" -182921,AA Batteries (4-pack),2,3.84,04/10/19 14:06,"828 Cherry St, Seattle, WA 98101" -182922,AAA Batteries (4-pack),1,2.99,04/25/19 08:14,"446 1st St, New York City, NY 10001" -182923,USB-C Charging Cable,1,11.95,04/04/19 17:15,"868 14th St, New York City, NY 10001" -182924,AAA Batteries (4-pack),1,2.99,04/12/19 11:41,"531 Cedar St, Atlanta, GA 30301" -182925,USB-C Charging Cable,1,11.95,04/09/19 22:32,"66 Jefferson St, Boston, MA 02215" -182926,USB-C Charging Cable,1,11.95,04/25/19 17:46,"102 4th St, San Francisco, CA 94016" -182927,Apple Airpods Headphones,1,150,04/16/19 12:15,"398 West St, San Francisco, CA 94016" -182928,Lightning Charging Cable,1,14.95,04/25/19 11:41,"364 1st St, Los Angeles, CA 90001" -182929,Apple Airpods Headphones,1,150,04/08/19 02:12,"930 Dogwood St, New York City, NY 10001" -182930,Bose SoundSport Headphones,1,99.99,04/11/19 18:08,"943 South St, San Francisco, CA 94016" -182931,Bose SoundSport Headphones,1,99.99,04/25/19 12:30,"105 14th St, San Francisco, CA 94016" -182932,27in 4K Gaming Monitor,1,389.99,04/15/19 23:28,"737 Walnut St, New York City, NY 10001" -182933,27in FHD Monitor,1,149.99,04/18/19 20:17,"967 Willow St, Portland, ME 04101" -182934,Apple Airpods Headphones,1,150,04/29/19 06:20,"405 4th St, Los Angeles, CA 90001" -182935,AA Batteries (4-pack),1,3.84,04/15/19 23:23,"273 North St, Boston, MA 02215" -182936,USB-C Charging Cable,1,11.95,04/17/19 19:40,"921 Hill St, Los Angeles, CA 90001" -182937,USB-C Charging Cable,1,11.95,04/11/19 01:04,"205 Washington St, Dallas, TX 75001" -182938,iPhone,1,700,04/14/19 19:58,"416 Highland St, San Francisco, CA 94016" -182939,Apple Airpods Headphones,1,150,04/01/19 11:53,"582 Washington St, New York City, NY 10001" -182940,USB-C Charging Cable,1,11.95,04/03/19 16:07,"627 Hill St, Los Angeles, CA 90001" -182941,Wired Headphones,1,11.99,04/09/19 11:48,"631 14th St, San Francisco, CA 94016" -182942,AAA Batteries (4-pack),2,2.99,04/11/19 21:13,"224 12th St, New York City, NY 10001" -182943,Wired Headphones,1,11.99,04/23/19 14:32,"850 Wilson St, San Francisco, CA 94016" -182944,Wired Headphones,1,11.99,04/08/19 18:55,"940 Dogwood St, New York City, NY 10001" -182945,Bose SoundSport Headphones,1,99.99,04/19/19 11:39,"594 Ridge St, Portland, OR 97035" -182946,Lightning Charging Cable,1,14.95,04/01/19 19:45,"933 Spruce St, Seattle, WA 98101" -182947,Apple Airpods Headphones,1,150,04/27/19 19:32,"228 Dogwood St, Dallas, TX 75001" -182948,AA Batteries (4-pack),1,3.84,04/20/19 10:28,"951 Main St, New York City, NY 10001" -182949,AA Batteries (4-pack),1,3.84,04/30/19 20:50,"545 North St, Seattle, WA 98101" -182950,Bose SoundSport Headphones,1,99.99,04/03/19 10:46,"881 Meadow St, Seattle, WA 98101" -182951,Wired Headphones,1,11.99,04/27/19 08:56,"48 Pine St, Austin, TX 73301" -182952,USB-C Charging Cable,1,11.95,04/14/19 21:12,"876 Washington St, Los Angeles, CA 90001" -182953,AAA Batteries (4-pack),1,2.99,04/09/19 13:23,"883 8th St, Seattle, WA 98101" -182954,AA Batteries (4-pack),1,3.84,04/08/19 10:42,"666 10th St, Dallas, TX 75001" -182955,Wired Headphones,1,11.99,04/07/19 10:51,"427 Cherry St, Dallas, TX 75001" -182956,Macbook Pro Laptop,1,1700,04/29/19 13:55,"740 Meadow St, Dallas, TX 75001" -182957,20in Monitor,1,109.99,04/18/19 07:32,"332 13th St, Portland, OR 97035" -182958,27in 4K Gaming Monitor,1,389.99,04/11/19 13:36,"739 Park St, Portland, ME 04101" -182959,34in Ultrawide Monitor,1,379.99,04/12/19 15:16,"712 Ridge St, Los Angeles, CA 90001" -182960,Wired Headphones,1,11.99,04/01/19 06:47,"234 Washington St, San Francisco, CA 94016" -182961,Wired Headphones,2,11.99,04/01/19 09:31,"135 Highland St, Portland, OR 97035" -182962,USB-C Charging Cable,1,11.95,04/06/19 09:55,"860 13th St, Seattle, WA 98101" -182963,USB-C Charging Cable,1,11.95,04/21/19 13:34,"957 Center St, New York City, NY 10001" -182964,Apple Airpods Headphones,1,150,04/02/19 18:10,"137 Cherry St, New York City, NY 10001" -182965,USB-C Charging Cable,1,11.95,04/26/19 23:15,"736 Walnut St, Los Angeles, CA 90001" -182966,Vareebadd Phone,1,400,04/10/19 20:20,"499 Jackson St, Los Angeles, CA 90001" -182967,Apple Airpods Headphones,1,150,04/01/19 13:18,"139 Washington St, San Francisco, CA 94016" -182968,Wired Headphones,1,11.99,04/09/19 08:45,"564 Forest St, Dallas, TX 75001" -182969,AA Batteries (4-pack),2,3.84,04/30/19 16:02,"926 Johnson St, Portland, OR 97035" -182970,LG Dryer,1,600.0,04/16/19 17:10,"76 12th St, Austin, TX 73301" -182971,Wired Headphones,1,11.99,04/27/19 16:20,"817 Lakeview St, Boston, MA 02215" -182972,USB-C Charging Cable,1,11.95,04/20/19 12:08,"993 North St, Los Angeles, CA 90001" -182973,AA Batteries (4-pack),1,3.84,04/11/19 14:50,"634 Park St, San Francisco, CA 94016" -182974,20in Monitor,1,109.99,04/29/19 14:33,"294 14th St, Dallas, TX 75001" -182975,Bose SoundSport Headphones,1,99.99,04/14/19 22:24,"251 Hill St, San Francisco, CA 94016" -182976,AA Batteries (4-pack),1,3.84,04/17/19 13:00,"180 Sunset St, San Francisco, CA 94016" -182977,Wired Headphones,1,11.99,04/14/19 21:03,"73 Johnson St, San Francisco, CA 94016" -182978,USB-C Charging Cable,1,11.95,04/07/19 02:28,"304 Lake St, Boston, MA 02215" -182979,Macbook Pro Laptop,1,1700,04/10/19 21:30,"542 Jefferson St, San Francisco, CA 94016" -182980,AA Batteries (4-pack),1,3.84,04/20/19 13:43,"962 Johnson St, San Francisco, CA 94016" -182981,Bose SoundSport Headphones,1,99.99,04/05/19 15:02,"750 Wilson St, New York City, NY 10001" -182982,Bose SoundSport Headphones,1,99.99,04/21/19 16:58,"521 12th St, Boston, MA 02215" -182983,AA Batteries (4-pack),2,3.84,04/29/19 20:30,"261 Lincoln St, New York City, NY 10001" -182984,Macbook Pro Laptop,1,1700,04/28/19 01:10,"83 Willow St, Boston, MA 02215" -182985,USB-C Charging Cable,1,11.95,04/08/19 18:39,"806 South St, Dallas, TX 75001" -182986,ThinkPad Laptop,1,999.99,04/14/19 18:40,"731 Lakeview St, San Francisco, CA 94016" -182987,iPhone,1,700,04/25/19 07:00,"678 Cherry St, Los Angeles, CA 90001" -182987,Lightning Charging Cable,1,14.95,04/25/19 07:00,"678 Cherry St, Los Angeles, CA 90001" -182988,iPhone,1,700,04/20/19 22:51,"921 9th St, New York City, NY 10001" -182989,iPhone,1,700,04/21/19 13:52,"834 Johnson St, Boston, MA 02215" -182990,AA Batteries (4-pack),1,3.84,04/13/19 19:41,"130 West St, Austin, TX 73301" -182991,AAA Batteries (4-pack),2,2.99,04/10/19 14:29,"64 11th St, San Francisco, CA 94016" -182992,ThinkPad Laptop,1,999.99,04/08/19 10:35,"3 Johnson St, San Francisco, CA 94016" -182993,Wired Headphones,1,11.99,04/17/19 18:00,"706 Highland St, New York City, NY 10001" -182994,AAA Batteries (4-pack),2,2.99,04/23/19 14:44,"904 Walnut St, Austin, TX 73301" -182995,USB-C Charging Cable,1,11.95,04/16/19 14:45,"598 Cedar St, Portland, ME 04101" -182996,27in FHD Monitor,1,149.99,04/14/19 13:26,"705 Pine St, Los Angeles, CA 90001" -182997,Apple Airpods Headphones,1,150,04/17/19 04:10,"335 Jackson St, New York City, NY 10001" -182998,27in FHD Monitor,1,149.99,04/27/19 19:16,"600 South St, Austin, TX 73301" -182999,Wired Headphones,1,11.99,04/13/19 19:17,"673 Pine St, New York City, NY 10001" -183000,AAA Batteries (4-pack),3,2.99,04/25/19 14:21,"67 Park St, Los Angeles, CA 90001" -183001,ThinkPad Laptop,1,999.99,04/13/19 17:56,"462 Highland St, New York City, NY 10001" -183002,Wired Headphones,1,11.99,04/11/19 13:56,"981 Park St, Los Angeles, CA 90001" -183003,Wired Headphones,1,11.99,04/08/19 21:15,"557 Main St, New York City, NY 10001" -183004,AA Batteries (4-pack),1,3.84,04/26/19 20:10,"218 Wilson St, Austin, TX 73301" -,,,,, -183005,34in Ultrawide Monitor,1,379.99,04/28/19 14:23,"367 9th St, Portland, OR 97035" -183006,Wired Headphones,1,11.99,04/25/19 11:27,"866 Walnut St, Portland, OR 97035" -183007,AA Batteries (4-pack),1,3.84,04/28/19 10:55,"46 11th St, Austin, TX 73301" -183008,AAA Batteries (4-pack),1,2.99,04/15/19 19:14,"370 Church St, New York City, NY 10001" -183009,AA Batteries (4-pack),1,3.84,04/16/19 18:30,"639 Cedar St, Seattle, WA 98101" -183010,Apple Airpods Headphones,1,150,04/17/19 12:10,"205 Lincoln St, Portland, OR 97035" -183011,Vareebadd Phone,1,400,04/05/19 18:29,"200 Johnson St, Dallas, TX 75001" -183012,27in FHD Monitor,1,149.99,04/10/19 20:57,"390 Main St, Seattle, WA 98101" -183013,USB-C Charging Cable,1,11.95,04/18/19 11:37,"821 6th St, San Francisco, CA 94016" -183014,Google Phone,1,600,04/12/19 12:02,"403 Cherry St, Dallas, TX 75001" -183014,Wired Headphones,1,11.99,04/12/19 12:02,"403 Cherry St, Dallas, TX 75001" -183015,USB-C Charging Cable,1,11.95,04/02/19 00:25,"479 South St, San Francisco, CA 94016" -183016,Google Phone,1,600,04/30/19 19:50,"492 Willow St, San Francisco, CA 94016" -183016,USB-C Charging Cable,1,11.95,04/30/19 19:50,"492 Willow St, San Francisco, CA 94016" -183016,Wired Headphones,1,11.99,04/30/19 19:50,"492 Willow St, San Francisco, CA 94016" -183017,ThinkPad Laptop,1,999.99,04/14/19 16:17,"856 Highland St, New York City, NY 10001" -183018,iPhone,1,700,04/12/19 20:10,"539 Washington St, New York City, NY 10001" -183019,Wired Headphones,1,11.99,04/13/19 19:38,"729 7th St, San Francisco, CA 94016" -183020,27in 4K Gaming Monitor,1,389.99,04/05/19 20:37,"824 Center St, Austin, TX 73301" -183021,Lightning Charging Cable,1,14.95,04/16/19 13:01,"497 Johnson St, Portland, OR 97035" -183022,Wired Headphones,1,11.99,04/06/19 20:09,"813 5th St, San Francisco, CA 94016" -183023,Apple Airpods Headphones,1,150,04/07/19 16:25,"467 Adams St, Atlanta, GA 30301" -183024,Google Phone,1,600,04/01/19 20:51,"342 1st St, Los Angeles, CA 90001" -183025,AA Batteries (4-pack),1,3.84,04/23/19 18:15,"766 Meadow St, Dallas, TX 75001" -183026,AAA Batteries (4-pack),1,2.99,04/27/19 00:55,"578 Washington St, New York City, NY 10001" -183027,USB-C Charging Cable,1,11.95,04/25/19 20:44,"587 2nd St, Portland, OR 97035" -183028,Wired Headphones,1,11.99,04/04/19 12:14,"532 14th St, San Francisco, CA 94016" -183029,Wired Headphones,1,11.99,04/02/19 00:23,"919 Hickory St, New York City, NY 10001" -183030,AAA Batteries (4-pack),1,2.99,04/03/19 12:47,"877 Adams St, Austin, TX 73301" -183031,Bose SoundSport Headphones,1,99.99,04/24/19 14:51,"750 Jefferson St, San Francisco, CA 94016" -183032,Wired Headphones,1,11.99,04/16/19 19:31,"61 Center St, Los Angeles, CA 90001" -183033,USB-C Charging Cable,1,11.95,04/17/19 14:16,"216 Center St, Boston, MA 02215" -183034,iPhone,1,700,04/16/19 20:52,"127 Pine St, Boston, MA 02215" -183034,Lightning Charging Cable,1,14.95,04/16/19 20:52,"127 Pine St, Boston, MA 02215" -183035,Lightning Charging Cable,1,14.95,04/03/19 12:25,"40 1st St, Seattle, WA 98101" -183036,Flatscreen TV,1,300,04/06/19 22:31,"159 Elm St, Los Angeles, CA 90001" -183037,USB-C Charging Cable,1,11.95,04/03/19 13:08,"248 Elm St, San Francisco, CA 94016" -183038,USB-C Charging Cable,1,11.95,04/23/19 17:16,"187 4th St, Seattle, WA 98101" -183039,Wired Headphones,1,11.99,04/28/19 23:11,"731 Madison St, Atlanta, GA 30301" -183040,Wired Headphones,1,11.99,04/13/19 22:39,"712 Madison St, San Francisco, CA 94016" -183041,AA Batteries (4-pack),1,3.84,04/09/19 12:15,"504 14th St, Los Angeles, CA 90001" -183042,USB-C Charging Cable,1,11.95,04/13/19 08:28,"4 13th St, Seattle, WA 98101" -183043,AAA Batteries (4-pack),2,2.99,04/19/19 21:06,"670 Sunset St, San Francisco, CA 94016" -183044,ThinkPad Laptop,1,999.99,04/23/19 21:03,"938 Elm St, San Francisco, CA 94016" -183045,Lightning Charging Cable,1,14.95,04/26/19 08:16,"914 Meadow St, Dallas, TX 75001" -183046,Lightning Charging Cable,1,14.95,04/13/19 20:35,"700 Ridge St, Atlanta, GA 30301" -183047,AA Batteries (4-pack),1,3.84,04/20/19 18:06,"364 6th St, Boston, MA 02215" -183048,Bose SoundSport Headphones,1,99.99,04/10/19 13:05,"611 Spruce St, Boston, MA 02215" -183049,Macbook Pro Laptop,1,1700,04/09/19 14:14,"32 Center St, Los Angeles, CA 90001" -183050,Lightning Charging Cable,1,14.95,04/09/19 11:19,"577 Elm St, Dallas, TX 75001" -183051,AAA Batteries (4-pack),1,2.99,04/02/19 23:32,"643 Cherry St, Boston, MA 02215" -183052,AA Batteries (4-pack),1,3.84,04/14/19 20:30,"587 10th St, New York City, NY 10001" -183053,Wired Headphones,1,11.99,04/08/19 20:17,"255 9th St, Atlanta, GA 30301" -183054,Bose SoundSport Headphones,1,99.99,04/21/19 01:52,"735 6th St, San Francisco, CA 94016" -183055,AAA Batteries (4-pack),1,2.99,04/19/19 09:43,"330 North St, Seattle, WA 98101" -183056,34in Ultrawide Monitor,1,379.99,04/18/19 01:58,"622 Willow St, New York City, NY 10001" -183057,AA Batteries (4-pack),1,3.84,04/05/19 09:59,"192 Ridge St, Seattle, WA 98101" -183058,Wired Headphones,2,11.99,04/30/19 22:21,"303 Wilson St, Seattle, WA 98101" -183059,ThinkPad Laptop,1,999.99,04/19/19 09:54,"306 1st St, Boston, MA 02215" -183059,USB-C Charging Cable,1,11.95,04/19/19 09:54,"306 1st St, Boston, MA 02215" -183060,Lightning Charging Cable,1,14.95,04/18/19 18:40,"579 7th St, Boston, MA 02215" -183061,Bose SoundSport Headphones,1,99.99,04/24/19 13:50,"482 Lincoln St, New York City, NY 10001" -183062,Bose SoundSport Headphones,1,99.99,04/24/19 18:02,"184 Lake St, New York City, NY 10001" -183063,USB-C Charging Cable,1,11.95,04/07/19 17:19,"886 9th St, Los Angeles, CA 90001" -183064,ThinkPad Laptop,1,999.99,04/17/19 19:45,"238 Cherry St, San Francisco, CA 94016" -183065,27in FHD Monitor,1,149.99,04/07/19 15:51,"730 10th St, Seattle, WA 98101" -183066,Apple Airpods Headphones,1,150,04/18/19 17:15,"317 14th St, Portland, ME 04101" -183067,Wired Headphones,1,11.99,04/21/19 11:10,"982 Willow St, Portland, OR 97035" -183068,Apple Airpods Headphones,1,150,04/07/19 10:35,"757 Willow St, Austin, TX 73301" -183069,AA Batteries (4-pack),1,3.84,04/21/19 11:29,"75 2nd St, Atlanta, GA 30301" -183070,USB-C Charging Cable,1,11.95,04/20/19 09:17,"802 Walnut St, New York City, NY 10001" -183071,27in FHD Monitor,1,149.99,04/12/19 18:59,"59 Johnson St, Los Angeles, CA 90001" -183072,Macbook Pro Laptop,1,1700,04/26/19 10:06,"798 Highland St, New York City, NY 10001" -183073,Lightning Charging Cable,1,14.95,04/05/19 18:03,"171 13th St, Dallas, TX 75001" -183074,USB-C Charging Cable,1,11.95,04/12/19 20:24,"741 Cedar St, Boston, MA 02215" -183075,AAA Batteries (4-pack),1,2.99,04/19/19 00:51,"900 Johnson St, New York City, NY 10001" -183076,Google Phone,1,600,04/26/19 09:47,"311 Hill St, San Francisco, CA 94016" -183077,Wired Headphones,1,11.99,04/11/19 06:17,"787 Dogwood St, Atlanta, GA 30301" -183078,USB-C Charging Cable,1,11.95,04/09/19 07:13,"995 Dogwood St, Atlanta, GA 30301" -183079,Bose SoundSport Headphones,1,99.99,04/30/19 14:10,"626 13th St, San Francisco, CA 94016" -183080,Bose SoundSport Headphones,1,99.99,04/11/19 21:58,"171 Adams St, Los Angeles, CA 90001" -183081,34in Ultrawide Monitor,1,379.99,04/21/19 12:33,"235 Park St, Austin, TX 73301" -183082,AAA Batteries (4-pack),1,2.99,04/20/19 00:08,"757 10th St, Los Angeles, CA 90001" -183083,USB-C Charging Cable,1,11.95,04/13/19 19:51,"842 8th St, San Francisco, CA 94016" -183084,Lightning Charging Cable,1,14.95,04/04/19 21:35,"269 12th St, San Francisco, CA 94016" -183085,iPhone,1,700,04/15/19 12:33,"985 Highland St, Atlanta, GA 30301" -183085,Lightning Charging Cable,1,14.95,04/15/19 12:33,"985 Highland St, Atlanta, GA 30301" -183086,Bose SoundSport Headphones,1,99.99,04/25/19 11:18,"595 Meadow St, New York City, NY 10001" -183087,Google Phone,1,600,04/05/19 11:16,"411 1st St, Austin, TX 73301" -183088,USB-C Charging Cable,1,11.95,04/12/19 18:38,"296 Washington St, Atlanta, GA 30301" -183089,Lightning Charging Cable,1,14.95,04/20/19 13:10,"167 5th St, New York City, NY 10001" -183090,Apple Airpods Headphones,2,150,04/28/19 11:47,"843 Park St, Los Angeles, CA 90001" -183091,AAA Batteries (4-pack),1,2.99,04/18/19 13:54,"497 North St, San Francisco, CA 94016" -183092,USB-C Charging Cable,1,11.95,04/30/19 15:46,"606 5th St, Atlanta, GA 30301" -183093,Apple Airpods Headphones,1,150,04/17/19 16:57,"606 4th St, Dallas, TX 75001" -183093,ThinkPad Laptop,1,999.99,04/17/19 16:57,"606 4th St, Dallas, TX 75001" -183094,Wired Headphones,1,11.99,04/11/19 09:43,"507 River St, San Francisco, CA 94016" -183095,AAA Batteries (4-pack),1,2.99,04/27/19 18:05,"415 5th St, Portland, OR 97035" -183096,AA Batteries (4-pack),1,3.84,04/10/19 20:03,"709 8th St, San Francisco, CA 94016" -183097,Lightning Charging Cable,1,14.95,04/11/19 17:22,"160 Lake St, New York City, NY 10001" -183098,Lightning Charging Cable,1,14.95,04/22/19 14:32,"364 8th St, San Francisco, CA 94016" -183099,USB-C Charging Cable,1,11.95,04/25/19 22:54,"362 6th St, Portland, OR 97035" -183100,USB-C Charging Cable,1,11.95,04/16/19 19:06,"404 Lakeview St, Portland, OR 97035" -183101,Wired Headphones,1,11.99,04/01/19 14:53,"375 Lakeview St, Portland, OR 97035" -183102,AA Batteries (4-pack),1,3.84,04/23/19 12:13,"64 Park St, Portland, OR 97035" -183103,34in Ultrawide Monitor,1,379.99,04/25/19 14:46,"156 12th St, Boston, MA 02215" -183104,iPhone,1,700,04/20/19 12:56,"533 11th St, San Francisco, CA 94016" -183105,Lightning Charging Cable,1,14.95,04/07/19 17:45,"5 North St, Los Angeles, CA 90001" -183106,Wired Headphones,1,11.99,04/25/19 18:51,"745 Willow St, San Francisco, CA 94016" -183107,Lightning Charging Cable,1,14.95,04/02/19 09:57,"432 Main St, Portland, OR 97035" -183108,Bose SoundSport Headphones,1,99.99,04/01/19 18:17,"636 West St, Austin, TX 73301" -183109,AA Batteries (4-pack),1,3.84,04/19/19 17:46,"602 Forest St, Boston, MA 02215" -183110,USB-C Charging Cable,1,11.95,04/01/19 12:31,"289 Jackson St, Portland, OR 97035" -183111,LG Washing Machine,1,600.0,04/19/19 22:03,"308 12th St, Dallas, TX 75001" -183112,Lightning Charging Cable,1,14.95,04/29/19 20:15,"667 Main St, Boston, MA 02215" -183113,AA Batteries (4-pack),2,3.84,04/29/19 03:05,"695 10th St, New York City, NY 10001" -183114,USB-C Charging Cable,1,11.95,04/08/19 19:26,"978 2nd St, San Francisco, CA 94016" -183115,Apple Airpods Headphones,1,150,04/03/19 09:18,"773 Washington St, Boston, MA 02215" -183116,Google Phone,1,600,04/24/19 00:56,"112 Pine St, Los Angeles, CA 90001" -183117,AAA Batteries (4-pack),2,2.99,04/11/19 19:42,"773 Center St, Boston, MA 02215" -183118,AA Batteries (4-pack),1,3.84,04/01/19 21:08,"390 Park St, Los Angeles, CA 90001" -183119,Apple Airpods Headphones,1,150,04/29/19 12:47,"491 West St, New York City, NY 10001" -183120,AAA Batteries (4-pack),1,2.99,04/30/19 08:52,"51 Lakeview St, Los Angeles, CA 90001" -183121,AA Batteries (4-pack),3,3.84,04/09/19 13:28,"915 Madison St, Austin, TX 73301" -183122,Google Phone,1,600,04/12/19 06:16,"1 Adams St, Austin, TX 73301" -183122,USB-C Charging Cable,1,11.95,04/12/19 06:16,"1 Adams St, Austin, TX 73301" -183123,USB-C Charging Cable,3,11.95,04/02/19 15:12,"765 14th St, San Francisco, CA 94016" -183124,Bose SoundSport Headphones,1,99.99,04/23/19 09:52,"702 Washington St, Boston, MA 02215" -183125,AAA Batteries (4-pack),1,2.99,04/24/19 17:55,"136 Dogwood St, San Francisco, CA 94016" -183126,Google Phone,1,600,04/24/19 23:15,"249 13th St, Portland, OR 97035" -183127,AAA Batteries (4-pack),1,2.99,04/27/19 15:30,"566 5th St, Atlanta, GA 30301" -183128,AA Batteries (4-pack),1,3.84,04/19/19 13:12,"779 Ridge St, Atlanta, GA 30301" -183129,Flatscreen TV,1,300,04/08/19 22:05,"219 Sunset St, Atlanta, GA 30301" -183130,Wired Headphones,1,11.99,04/17/19 05:45,"511 9th St, Boston, MA 02215" -183131,ThinkPad Laptop,1,999.99,04/26/19 00:32,"887 Hill St, Boston, MA 02215" -183132,AAA Batteries (4-pack),1,2.99,04/22/19 20:58,"584 Dogwood St, Dallas, TX 75001" -183133,AA Batteries (4-pack),1,3.84,04/11/19 11:07,"102 Sunset St, San Francisco, CA 94016" -183134,AAA Batteries (4-pack),1,2.99,04/16/19 17:36,"203 12th St, Austin, TX 73301" -183135,AAA Batteries (4-pack),1,2.99,04/29/19 12:22,"391 13th St, New York City, NY 10001" -183136,AAA Batteries (4-pack),1,2.99,04/30/19 15:45,"57 12th St, San Francisco, CA 94016" -183137,Vareebadd Phone,1,400,04/21/19 16:09,"985 Hickory St, Boston, MA 02215" -183138,20in Monitor,1,109.99,04/09/19 21:30,"594 13th St, San Francisco, CA 94016" -183139,Google Phone,1,600,04/02/19 11:02,"836 Sunset St, Seattle, WA 98101" -183140,Google Phone,1,600,04/17/19 19:05,"508 14th St, New York City, NY 10001" -183140,USB-C Charging Cable,1,11.95,04/17/19 19:05,"508 14th St, New York City, NY 10001" -183141,AAA Batteries (4-pack),1,2.99,04/05/19 14:45,"948 4th St, New York City, NY 10001" -183142,Flatscreen TV,1,300,04/11/19 09:30,"334 Pine St, Boston, MA 02215" -183143,Wired Headphones,1,11.99,04/23/19 18:01,"569 5th St, San Francisco, CA 94016" -183144,27in FHD Monitor,1,149.99,04/22/19 22:01,"540 South St, Atlanta, GA 30301" -183145,USB-C Charging Cable,1,11.95,04/12/19 01:02,"502 8th St, Boston, MA 02215" -183146,iPhone,1,700,04/09/19 12:23,"667 Hill St, Boston, MA 02215" -183146,Lightning Charging Cable,1,14.95,04/09/19 12:23,"667 Hill St, Boston, MA 02215" -183147,27in 4K Gaming Monitor,1,389.99,04/11/19 21:40,"892 Church St, San Francisco, CA 94016" -183148,Bose SoundSport Headphones,1,99.99,04/10/19 11:29,"265 Pine St, San Francisco, CA 94016" -183149,Apple Airpods Headphones,1,150,04/27/19 13:00,"669 North St, Portland, OR 97035" -183149,27in 4K Gaming Monitor,1,389.99,04/27/19 13:00,"669 North St, Portland, OR 97035" -183150,Lightning Charging Cable,1,14.95,04/17/19 17:46,"113 Pine St, Seattle, WA 98101" -183151,AAA Batteries (4-pack),1,2.99,04/08/19 21:09,"775 Maple St, Atlanta, GA 30301" -183152,USB-C Charging Cable,1,11.95,04/27/19 16:01,"116 8th St, Los Angeles, CA 90001" -183153,iPhone,1,700,04/15/19 11:27,"410 Elm St, Seattle, WA 98101" -183154,AAA Batteries (4-pack),1,2.99,04/19/19 14:08,"789 Lake St, San Francisco, CA 94016" -183155,AAA Batteries (4-pack),2,2.99,04/18/19 15:24,"717 Washington St, New York City, NY 10001" -183156,Bose SoundSport Headphones,1,99.99,04/08/19 18:58,"425 Maple St, Portland, OR 97035" -183157,AA Batteries (4-pack),1,3.84,04/02/19 06:35,"91 14th St, Boston, MA 02215" -183158,USB-C Charging Cable,1,11.95,04/14/19 01:26,"272 6th St, Atlanta, GA 30301" -183159,AA Batteries (4-pack),1,3.84,04/08/19 16:05,"311 Highland St, San Francisco, CA 94016" -183160,AA Batteries (4-pack),1,3.84,04/28/19 18:21,"589 Park St, San Francisco, CA 94016" -183161,Lightning Charging Cable,3,14.95,04/22/19 19:20,"568 Jackson St, San Francisco, CA 94016" -183162,AAA Batteries (4-pack),1,2.99,04/15/19 11:34,"806 Adams St, San Francisco, CA 94016" -183163,Lightning Charging Cable,1,14.95,04/13/19 19:03,"680 South St, Atlanta, GA 30301" -183164,USB-C Charging Cable,1,11.95,04/13/19 12:04,"788 1st St, San Francisco, CA 94016" -183165,Lightning Charging Cable,2,14.95,04/02/19 16:04,"603 Sunset St, Los Angeles, CA 90001" -183166,AAA Batteries (4-pack),1,2.99,04/02/19 21:47,"366 Main St, Los Angeles, CA 90001" -183167,Lightning Charging Cable,1,14.95,04/07/19 11:57,"424 Jackson St, New York City, NY 10001" -183168,Macbook Pro Laptop,1,1700,04/27/19 11:28,"875 Pine St, Portland, OR 97035" -183169,Bose SoundSport Headphones,1,99.99,04/08/19 09:20,"59 Spruce St, Los Angeles, CA 90001" -183170,Flatscreen TV,1,300,04/15/19 21:28,"752 Hill St, San Francisco, CA 94016" -183171,Wired Headphones,1,11.99,04/09/19 09:54,"601 Adams St, Los Angeles, CA 90001" -183172,Flatscreen TV,1,300,04/10/19 10:17,"444 West St, Los Angeles, CA 90001" -183173,Lightning Charging Cable,2,14.95,04/20/19 12:30,"821 Elm St, Los Angeles, CA 90001" -183174,USB-C Charging Cable,1,11.95,04/21/19 20:44,"624 2nd St, New York City, NY 10001" -183175,Wired Headphones,1,11.99,04/12/19 18:12,"949 Highland St, Portland, OR 97035" -183176,Lightning Charging Cable,1,14.95,04/15/19 15:10,"361 9th St, New York City, NY 10001" -183177,iPhone,1,700,04/24/19 12:43,"337 14th St, Atlanta, GA 30301" -183177,Lightning Charging Cable,1,14.95,04/24/19 12:43,"337 14th St, Atlanta, GA 30301" -183178,AAA Batteries (4-pack),1,2.99,04/29/19 20:07,"380 North St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -183179,Macbook Pro Laptop,1,1700,04/03/19 17:27,"519 5th St, San Francisco, CA 94016" -183180,Apple Airpods Headphones,1,150,04/21/19 09:50,"779 Cedar St, Los Angeles, CA 90001" -183181,Lightning Charging Cable,1,14.95,04/17/19 10:28,"150 Walnut St, San Francisco, CA 94016" -183182,AA Batteries (4-pack),2,3.84,04/03/19 10:13,"408 Hill St, San Francisco, CA 94016" -183183,AAA Batteries (4-pack),3,2.99,04/12/19 14:25,"21 6th St, San Francisco, CA 94016" -183184,USB-C Charging Cable,1,11.95,04/30/19 17:05,"498 1st St, Atlanta, GA 30301" -183185,Wired Headphones,1,11.99,04/22/19 18:22,"617 Lakeview St, Austin, TX 73301" -183186,USB-C Charging Cable,1,11.95,04/14/19 11:04,"11 Forest St, Boston, MA 02215" -183187,AA Batteries (4-pack),1,3.84,04/09/19 12:59,"43 Walnut St, San Francisco, CA 94016" -183188,Wired Headphones,1,11.99,04/30/19 21:46,"22 12th St, San Francisco, CA 94016" -183189,USB-C Charging Cable,1,11.95,04/17/19 20:05,"841 7th St, Atlanta, GA 30301" -183190,20in Monitor,1,109.99,04/22/19 14:56,"253 Cherry St, Austin, TX 73301" -183191,Lightning Charging Cable,1,14.95,04/08/19 18:35,"212 West St, Dallas, TX 75001" -183192,34in Ultrawide Monitor,1,379.99,04/13/19 21:07,"500 Walnut St, Boston, MA 02215" -183193,AA Batteries (4-pack),2,3.84,04/17/19 12:05,"728 North St, Boston, MA 02215" -183194,AAA Batteries (4-pack),1,2.99,04/09/19 17:18,"178 Jackson St, San Francisco, CA 94016" -183195,20in Monitor,1,109.99,04/05/19 20:05,"312 Johnson St, San Francisco, CA 94016" -183196,Wired Headphones,1,11.99,04/23/19 05:53,"536 Maple St, Boston, MA 02215" -183197,AAA Batteries (4-pack),2,2.99,04/23/19 10:24,"540 10th St, Los Angeles, CA 90001" -183198,27in 4K Gaming Monitor,1,389.99,04/21/19 10:54,"760 8th St, Atlanta, GA 30301" -183199,Macbook Pro Laptop,1,1700,04/10/19 10:59,"629 Madison St, New York City, NY 10001" -183200,AAA Batteries (4-pack),1,2.99,04/18/19 20:44,"849 14th St, Boston, MA 02215" -183201,Flatscreen TV,1,300,04/01/19 09:01,"910 5th St, Seattle, WA 98101" -183202,Flatscreen TV,1,300,04/24/19 11:45,"6 Wilson St, Boston, MA 02215" -183203,27in 4K Gaming Monitor,1,389.99,04/19/19 06:19,"385 Main St, New York City, NY 10001" -183204,Wired Headphones,1,11.99,04/02/19 11:10,"258 West St, San Francisco, CA 94016" -183205,AA Batteries (4-pack),1,3.84,04/07/19 08:57,"88 11th St, Los Angeles, CA 90001" -183206,USB-C Charging Cable,1,11.95,04/06/19 08:59,"688 Center St, San Francisco, CA 94016" -183207,27in 4K Gaming Monitor,1,389.99,04/18/19 15:25,"259 Center St, San Francisco, CA 94016" -183208,Apple Airpods Headphones,1,150,04/16/19 15:26,"441 Cedar St, San Francisco, CA 94016" -183209,Bose SoundSport Headphones,1,99.99,04/17/19 17:38,"495 Lakeview St, Los Angeles, CA 90001" -183210,Lightning Charging Cable,1,14.95,04/30/19 11:49,"676 11th St, Boston, MA 02215" -183211,Wired Headphones,1,11.99,04/15/19 22:16,"249 Chestnut St, Dallas, TX 75001" -183212,USB-C Charging Cable,1,11.95,04/24/19 13:05,"479 Meadow St, San Francisco, CA 94016" -183213,Bose SoundSport Headphones,1,99.99,04/03/19 11:45,"55 13th St, New York City, NY 10001" -183214,Google Phone,1,600,04/10/19 11:09,"868 Center St, San Francisco, CA 94016" -183215,USB-C Charging Cable,1,11.95,04/13/19 09:54,"790 Hickory St, San Francisco, CA 94016" -183216,Lightning Charging Cable,1,14.95,04/10/19 08:45,"461 Walnut St, San Francisco, CA 94016" -183217,USB-C Charging Cable,1,11.95,04/24/19 16:11,"860 13th St, San Francisco, CA 94016" -183217,Lightning Charging Cable,1,14.95,04/24/19 16:11,"860 13th St, San Francisco, CA 94016" -183218,Apple Airpods Headphones,1,150,04/29/19 12:39,"445 4th St, Austin, TX 73301" -183218,AA Batteries (4-pack),1,3.84,04/29/19 12:39,"445 4th St, Austin, TX 73301" -183219,USB-C Charging Cable,1,11.95,04/16/19 13:44,"794 10th St, Atlanta, GA 30301" -183220,iPhone,1,700,04/17/19 19:59,"313 Church St, New York City, NY 10001" -183220,Lightning Charging Cable,1,14.95,04/17/19 19:59,"313 Church St, New York City, NY 10001" -183221,Lightning Charging Cable,1,14.95,04/15/19 08:53,"941 Washington St, Atlanta, GA 30301" -183222,34in Ultrawide Monitor,1,379.99,04/04/19 02:21,"141 Lincoln St, Atlanta, GA 30301" -183223,20in Monitor,1,109.99,04/14/19 11:50,"729 12th St, San Francisco, CA 94016" -183224,USB-C Charging Cable,1,11.95,04/12/19 17:35,"601 Main St, San Francisco, CA 94016" -183225,Lightning Charging Cable,1,14.95,04/01/19 12:02,"515 Wilson St, Austin, TX 73301" -183226,Wired Headphones,1,11.99,04/16/19 13:29,"801 Church St, Atlanta, GA 30301" -183227,USB-C Charging Cable,1,11.95,04/21/19 14:17,"575 12th St, San Francisco, CA 94016" -183228,AAA Batteries (4-pack),2,2.99,04/07/19 04:24,"34 Chestnut St, Portland, OR 97035" -183229,USB-C Charging Cable,3,11.95,04/20/19 06:12,"691 Park St, Los Angeles, CA 90001" -183230,Google Phone,1,600,04/04/19 11:09,"528 South St, San Francisco, CA 94016" -183230,Bose SoundSport Headphones,1,99.99,04/04/19 11:09,"528 South St, San Francisco, CA 94016" -183231,Lightning Charging Cable,1,14.95,04/12/19 20:23,"826 Cedar St, San Francisco, CA 94016" -183232,34in Ultrawide Monitor,1,379.99,04/07/19 18:58,"98 Forest St, Dallas, TX 75001" -183233,iPhone,1,700,04/24/19 09:37,"535 Center St, San Francisco, CA 94016" -183234,Wired Headphones,1,11.99,04/26/19 10:21,"618 Hill St, Dallas, TX 75001" -183235,AA Batteries (4-pack),1,3.84,04/11/19 20:00,"292 9th St, Austin, TX 73301" -183236,AAA Batteries (4-pack),1,2.99,04/15/19 15:50,"906 Wilson St, Los Angeles, CA 90001" -183237,34in Ultrawide Monitor,1,379.99,04/14/19 06:58,"640 South St, Seattle, WA 98101" -183238,Wired Headphones,1,11.99,04/15/19 10:34,"860 West St, San Francisco, CA 94016" -183239,27in 4K Gaming Monitor,1,389.99,04/18/19 21:45,"717 Forest St, Seattle, WA 98101" -183240,AA Batteries (4-pack),1,3.84,04/16/19 15:32,"832 14th St, San Francisco, CA 94016" -183241,AA Batteries (4-pack),1,3.84,04/10/19 22:29,"110 Jackson St, San Francisco, CA 94016" -183242,USB-C Charging Cable,1,11.95,04/27/19 17:06,"101 12th St, San Francisco, CA 94016" -183243,AAA Batteries (4-pack),1,2.99,04/14/19 19:01,"970 Lakeview St, San Francisco, CA 94016" -183244,USB-C Charging Cable,1,11.95,04/05/19 15:34,"677 Meadow St, San Francisco, CA 94016" -183245,Lightning Charging Cable,1,14.95,04/18/19 16:12,"7 2nd St, San Francisco, CA 94016" -183246,USB-C Charging Cable,1,11.95,04/29/19 12:30,"465 8th St, Los Angeles, CA 90001" -183247,Bose SoundSport Headphones,1,99.99,04/21/19 09:06,"170 Maple St, Seattle, WA 98101" -183248,Flatscreen TV,1,300,04/11/19 16:36,"340 11th St, New York City, NY 10001" -183249,AA Batteries (4-pack),1,3.84,04/26/19 13:42,"177 5th St, Austin, TX 73301" -183250,Flatscreen TV,1,300,04/20/19 11:57,"769 12th St, San Francisco, CA 94016" -183251,Wired Headphones,1,11.99,04/14/19 13:05,"691 1st St, Los Angeles, CA 90001" -183252,Wired Headphones,1,11.99,04/04/19 11:59,"778 Adams St, Los Angeles, CA 90001" -183253,AA Batteries (4-pack),2,3.84,04/01/19 21:10,"61 Hickory St, San Francisco, CA 94016" -183254,Wired Headphones,1,11.99,04/29/19 20:52,"751 Main St, Dallas, TX 75001" -183255,USB-C Charging Cable,1,11.95,04/10/19 12:34,"64 West St, Boston, MA 02215" -183256,LG Washing Machine,1,600.0,04/27/19 15:16,"17 Pine St, Dallas, TX 75001" -183257,Macbook Pro Laptop,1,1700,04/27/19 10:46,"910 5th St, Los Angeles, CA 90001" -183258,AAA Batteries (4-pack),2,2.99,04/27/19 08:41,"15 River St, Portland, OR 97035" -183259,USB-C Charging Cable,2,11.95,04/21/19 20:03,"243 Lincoln St, Seattle, WA 98101" -183260,AA Batteries (4-pack),1,3.84,04/28/19 10:16,"159 4th St, San Francisco, CA 94016" -183261,AAA Batteries (4-pack),1,2.99,04/30/19 16:55,"190 Jefferson St, New York City, NY 10001" -183262,Lightning Charging Cable,1,14.95,04/12/19 23:44,"280 6th St, Portland, OR 97035" -183263,20in Monitor,1,109.99,04/23/19 05:00,"63 Center St, Los Angeles, CA 90001" -183264,Vareebadd Phone,1,400,04/28/19 19:10,"575 Park St, San Francisco, CA 94016" -183265,AA Batteries (4-pack),2,3.84,04/14/19 16:10,"113 Park St, Boston, MA 02215" -183266,ThinkPad Laptop,1,999.99,04/12/19 19:44,"304 Elm St, Los Angeles, CA 90001" -183267,Lightning Charging Cable,1,14.95,04/26/19 18:42,"400 Wilson St, Seattle, WA 98101" -183268,AA Batteries (4-pack),1,3.84,04/30/19 19:38,"203 Adams St, Dallas, TX 75001" -183269,Bose SoundSport Headphones,1,99.99,04/14/19 22:21,"847 14th St, Seattle, WA 98101" -183270,iPhone,1,700,04/02/19 09:03,"80 Cedar St, New York City, NY 10001" -183271,27in FHD Monitor,1,149.99,04/27/19 18:46,"155 13th St, Portland, OR 97035" -183272,AAA Batteries (4-pack),1,2.99,04/18/19 11:03,"801 Washington St, Atlanta, GA 30301" -183273,AA Batteries (4-pack),2,3.84,04/17/19 17:41,"294 Sunset St, Atlanta, GA 30301" -183274,iPhone,1,700,04/05/19 06:56,"336 13th St, Dallas, TX 75001" -183275,27in FHD Monitor,1,149.99,04/17/19 16:23,"757 Maple St, Seattle, WA 98101" -183276,Lightning Charging Cable,1,14.95,04/06/19 21:40,"438 5th St, Boston, MA 02215" -183277,Lightning Charging Cable,1,14.95,04/21/19 10:57,"944 12th St, Dallas, TX 75001" -183278,Google Phone,1,600,04/20/19 00:26,"278 6th St, New York City, NY 10001" -183279,AAA Batteries (4-pack),1,2.99,04/15/19 09:56,"706 Lake St, Austin, TX 73301" -183280,Lightning Charging Cable,1,14.95,04/21/19 20:46,"621 Jefferson St, Los Angeles, CA 90001" -183281,Lightning Charging Cable,1,14.95,04/29/19 11:05,"69 Highland St, Portland, OR 97035" -183282,Lightning Charging Cable,1,14.95,04/30/19 11:12,"349 Park St, Los Angeles, CA 90001" -183283,Bose SoundSport Headphones,1,99.99,04/16/19 18:38,"215 Lakeview St, Atlanta, GA 30301" -183284,AA Batteries (4-pack),3,3.84,04/08/19 20:14,"527 Hickory St, Dallas, TX 75001" -183285,USB-C Charging Cable,1,11.95,04/30/19 11:20,"190 Chestnut St, Boston, MA 02215" -183286,ThinkPad Laptop,1,999.99,04/18/19 13:14,"327 Ridge St, Boston, MA 02215" -183287,Flatscreen TV,1,300,04/29/19 23:15,"467 Highland St, New York City, NY 10001" -183288,AAA Batteries (4-pack),1,2.99,04/22/19 13:06,"743 Hickory St, Los Angeles, CA 90001" -183289,Lightning Charging Cable,1,14.95,04/12/19 12:42,"433 Wilson St, Los Angeles, CA 90001" -183290,Bose SoundSport Headphones,1,99.99,04/18/19 17:10,"230 7th St, Atlanta, GA 30301" -183291,USB-C Charging Cable,1,11.95,04/09/19 21:24,"797 South St, Dallas, TX 75001" -183292,Wired Headphones,1,11.99,04/07/19 14:27,"842 Chestnut St, Los Angeles, CA 90001" -183293,AA Batteries (4-pack),1,3.84,04/27/19 22:05,"959 Sunset St, San Francisco, CA 94016" -183294,AAA Batteries (4-pack),1,2.99,04/30/19 20:45,"208 Chestnut St, Los Angeles, CA 90001" -183295,AAA Batteries (4-pack),3,2.99,04/20/19 07:22,"184 14th St, Portland, OR 97035" -183296,iPhone,1,700,04/03/19 20:49,"94 Madison St, Seattle, WA 98101" -183297,Apple Airpods Headphones,1,150,04/09/19 15:17,"353 Park St, Los Angeles, CA 90001" -183298,Wired Headphones,1,11.99,04/19/19 20:31,"93 Meadow St, Los Angeles, CA 90001" -183299,Lightning Charging Cable,1,14.95,04/05/19 17:15,"416 Washington St, New York City, NY 10001" -183300,Lightning Charging Cable,1,14.95,04/20/19 12:03,"287 Madison St, Los Angeles, CA 90001" -183301,27in 4K Gaming Monitor,1,389.99,04/10/19 19:44,"226 Dogwood St, Los Angeles, CA 90001" -183302,AAA Batteries (4-pack),2,2.99,04/29/19 23:10,"19 North St, San Francisco, CA 94016" -183303,iPhone,1,700,04/19/19 16:08,"193 West St, Atlanta, GA 30301" -183304,Bose SoundSport Headphones,1,99.99,04/26/19 12:27,"902 Cherry St, New York City, NY 10001" -183305,Wired Headphones,1,11.99,04/25/19 14:48,"931 South St, Boston, MA 02215" -183306,AAA Batteries (4-pack),2,2.99,04/24/19 23:36,"657 Maple St, Boston, MA 02215" -183307,Wired Headphones,1,11.99,04/07/19 19:54,"83 Hill St, Austin, TX 73301" -183308,Lightning Charging Cable,2,14.95,04/13/19 19:02,"807 Main St, Los Angeles, CA 90001" -183309,Google Phone,1,600,04/23/19 13:03,"277 2nd St, New York City, NY 10001" -183310,Google Phone,1,600,04/22/19 13:26,"89 Dogwood St, San Francisco, CA 94016" -183311,USB-C Charging Cable,1,11.95,04/17/19 00:06,"680 10th St, San Francisco, CA 94016" -183312,AA Batteries (4-pack),1,3.84,04/05/19 02:22,"505 Ridge St, San Francisco, CA 94016" -183313,Wired Headphones,1,11.99,04/15/19 21:09,"223 Jackson St, New York City, NY 10001" -183314,USB-C Charging Cable,1,11.95,04/13/19 13:24,"354 Pine St, Los Angeles, CA 90001" -183315,Google Phone,1,600,04/29/19 23:55,"312 9th St, Atlanta, GA 30301" -183315,USB-C Charging Cable,1,11.95,04/29/19 23:55,"312 9th St, Atlanta, GA 30301" -183316,USB-C Charging Cable,1,11.95,04/13/19 09:48,"787 Hickory St, Los Angeles, CA 90001" -183317,Apple Airpods Headphones,1,150,04/16/19 15:04,"325 Lake St, Boston, MA 02215" -183318,AA Batteries (4-pack),2,3.84,04/03/19 11:45,"439 2nd St, Los Angeles, CA 90001" -183319,Wired Headphones,1,11.99,04/05/19 20:08,"99 Dogwood St, San Francisco, CA 94016" -183320,Macbook Pro Laptop,1,1700,04/23/19 15:25,"151 Highland St, New York City, NY 10001" -183321,Flatscreen TV,1,300,04/05/19 20:25,"608 Ridge St, San Francisco, CA 94016" -183322,27in 4K Gaming Monitor,1,389.99,04/01/19 19:45,"767 11th St, Boston, MA 02215" -183323,AAA Batteries (4-pack),2,2.99,04/01/19 23:32,"601 South St, San Francisco, CA 94016" -183324,Apple Airpods Headphones,1,150,04/22/19 00:28,"452 Lincoln St, San Francisco, CA 94016" -183325,Vareebadd Phone,1,400,04/27/19 11:41,"555 Adams St, Atlanta, GA 30301" -183325,USB-C Charging Cable,1,11.95,04/27/19 11:41,"555 Adams St, Atlanta, GA 30301" -183326,Apple Airpods Headphones,1,150,04/12/19 14:39,"642 Walnut St, Austin, TX 73301" -183327,Bose SoundSport Headphones,1,99.99,04/15/19 09:38,"271 Dogwood St, Los Angeles, CA 90001" -183328,20in Monitor,1,109.99,04/28/19 09:58,"933 11th St, San Francisco, CA 94016" -183329,Lightning Charging Cable,1,14.95,04/03/19 09:20,"97 North St, Los Angeles, CA 90001" -183330,Macbook Pro Laptop,1,1700,04/18/19 02:07,"197 6th St, San Francisco, CA 94016" -183331,Apple Airpods Headphones,1,150,04/18/19 20:03,"888 Sunset St, Austin, TX 73301" -183332,AA Batteries (4-pack),1,3.84,04/18/19 22:28,"59 West St, Boston, MA 02215" -183333,AA Batteries (4-pack),2,3.84,04/12/19 19:49,"854 8th St, New York City, NY 10001" -183334,Apple Airpods Headphones,1,150,04/13/19 13:16,"450 Hill St, Dallas, TX 75001" -183335,Lightning Charging Cable,1,14.95,04/07/19 14:56,"541 Elm St, Boston, MA 02215" -183336,USB-C Charging Cable,1,11.95,04/27/19 19:58,"864 South St, Boston, MA 02215" -183337,USB-C Charging Cable,1,11.95,04/17/19 09:32,"47 Lake St, Los Angeles, CA 90001" -183338,AA Batteries (4-pack),1,3.84,04/22/19 22:53,"772 Lincoln St, Boston, MA 02215" -183339,Bose SoundSport Headphones,1,99.99,04/09/19 22:06,"356 Lakeview St, Boston, MA 02215" -183340,AAA Batteries (4-pack),3,2.99,04/07/19 18:43,"706 Lincoln St, Seattle, WA 98101" -183341,USB-C Charging Cable,1,11.95,04/08/19 11:17,"464 Church St, San Francisco, CA 94016" -183342,Vareebadd Phone,1,400,04/06/19 22:29,"449 Pine St, Boston, MA 02215" -183342,Wired Headphones,1,11.99,04/06/19 22:29,"449 Pine St, Boston, MA 02215" -183343,Lightning Charging Cable,1,14.95,04/06/19 18:20,"929 Hickory St, Portland, OR 97035" -183344,AA Batteries (4-pack),1,3.84,04/10/19 19:00,"967 Chestnut St, Atlanta, GA 30301" -183345,Apple Airpods Headphones,1,150,04/20/19 17:58,"107 10th St, San Francisco, CA 94016" -183346,AA Batteries (4-pack),1,3.84,04/20/19 15:33,"817 River St, New York City, NY 10001" -183347,USB-C Charging Cable,1,11.95,04/04/19 21:59,"670 Jackson St, New York City, NY 10001" -183348,Bose SoundSport Headphones,1,99.99,04/30/19 16:03,"869 1st St, San Francisco, CA 94016" -183349,AA Batteries (4-pack),2,3.84,04/27/19 10:08,"503 Adams St, Los Angeles, CA 90001" -183350,27in FHD Monitor,1,149.99,04/21/19 15:00,"773 14th St, New York City, NY 10001" -183351,USB-C Charging Cable,1,11.95,04/03/19 18:33,"41 Dogwood St, San Francisco, CA 94016" -183352,Wired Headphones,1,11.99,04/11/19 20:38,"635 Main St, New York City, NY 10001" -183353,27in FHD Monitor,1,149.99,04/20/19 19:37,"993 Highland St, New York City, NY 10001" -183354,Wired Headphones,1,11.99,04/20/19 22:49,"987 Johnson St, Atlanta, GA 30301" -183355,AA Batteries (4-pack),1,3.84,04/12/19 15:13,"35 North St, Dallas, TX 75001" -183356,Wired Headphones,1,11.99,04/18/19 10:26,"588 South St, New York City, NY 10001" -183357,27in 4K Gaming Monitor,1,389.99,04/25/19 18:43,"475 13th St, Portland, OR 97035" -183358,Flatscreen TV,1,300,04/16/19 07:58,"176 1st St, Atlanta, GA 30301" -183359,USB-C Charging Cable,1,11.95,04/03/19 19:57,"199 11th St, Austin, TX 73301" -183360,Lightning Charging Cable,1,14.95,04/15/19 03:17,"25 Jefferson St, Los Angeles, CA 90001" -183361,iPhone,1,700,04/12/19 21:36,"912 5th St, Boston, MA 02215" -183361,Lightning Charging Cable,1,14.95,04/12/19 21:36,"912 5th St, Boston, MA 02215" -183361,Apple Airpods Headphones,1,150,04/12/19 21:36,"912 5th St, Boston, MA 02215" -183362,Apple Airpods Headphones,1,150,04/01/19 19:03,"97 4th St, Boston, MA 02215" -183363,Macbook Pro Laptop,1,1700,04/21/19 12:17,"120 Wilson St, Austin, TX 73301" -183364,27in 4K Gaming Monitor,1,389.99,04/05/19 09:40,"130 Johnson St, Austin, TX 73301" -183365,AA Batteries (4-pack),1,3.84,04/04/19 22:18,"320 Adams St, Seattle, WA 98101" -183366,20in Monitor,1,109.99,04/30/19 16:09,"321 Hill St, Atlanta, GA 30301" -183367,20in Monitor,1,109.99,04/20/19 06:04,"727 Dogwood St, Portland, OR 97035" -183368,Lightning Charging Cable,1,14.95,04/12/19 11:13,"475 Elm St, Atlanta, GA 30301" -183369,20in Monitor,1,109.99,04/23/19 20:47,"538 West St, Seattle, WA 98101" -183370,AA Batteries (4-pack),1,3.84,04/24/19 21:25,"550 6th St, Los Angeles, CA 90001" -183371,USB-C Charging Cable,1,11.95,04/18/19 09:40,"144 West St, Los Angeles, CA 90001" -183372,Bose SoundSport Headphones,1,99.99,04/16/19 10:20,"903 North St, New York City, NY 10001" -183373,iPhone,1,700,04/09/19 10:46,"216 4th St, Portland, ME 04101" -183374,34in Ultrawide Monitor,1,379.99,04/24/19 13:30,"483 Wilson St, Boston, MA 02215" -183375,Apple Airpods Headphones,1,150,04/28/19 19:30,"375 Walnut St, Dallas, TX 75001" -183376,iPhone,1,700,04/13/19 09:09,"638 Forest St, San Francisco, CA 94016" -183377,Lightning Charging Cable,1,14.95,04/25/19 18:24,"17 Walnut St, Seattle, WA 98101" -183378,27in 4K Gaming Monitor,1,389.99,04/20/19 09:40,"280 Spruce St, New York City, NY 10001" -183379,Macbook Pro Laptop,1,1700,04/18/19 09:40,"553 12th St, San Francisco, CA 94016" -183380,Wired Headphones,1,11.99,04/21/19 13:38,"157 Jefferson St, Atlanta, GA 30301" -183381,Lightning Charging Cable,1,14.95,04/17/19 11:32,"160 Hill St, Los Angeles, CA 90001" -183382,Bose SoundSport Headphones,1,99.99,04/08/19 19:05,"854 Cherry St, New York City, NY 10001" -183383,iPhone,1,700,04/16/19 14:47,"696 Jackson St, Los Angeles, CA 90001" -183383,34in Ultrawide Monitor,1,379.99,04/16/19 14:47,"696 Jackson St, Los Angeles, CA 90001" -183384,Bose SoundSport Headphones,1,99.99,04/01/19 13:45,"540 2nd St, New York City, NY 10001" -183385,Macbook Pro Laptop,1,1700,04/29/19 11:54,"263 South St, Austin, TX 73301" -183386,Apple Airpods Headphones,1,150,04/08/19 18:11,"274 Elm St, New York City, NY 10001" -183387,ThinkPad Laptop,1,999.99,04/16/19 11:07,"604 Lincoln St, Los Angeles, CA 90001" -183388,iPhone,1,700,04/23/19 10:51,"560 Wilson St, Austin, TX 73301" -183389,AA Batteries (4-pack),1,3.84,04/23/19 22:31,"234 Washington St, Portland, OR 97035" -183390,USB-C Charging Cable,1,11.95,04/12/19 22:28,"491 11th St, San Francisco, CA 94016" -183391,Google Phone,1,600,04/16/19 11:37,"517 River St, Austin, TX 73301" -,,,,, -183392,27in 4K Gaming Monitor,1,389.99,04/09/19 21:59,"264 North St, Seattle, WA 98101" -183393,AAA Batteries (4-pack),1,2.99,04/15/19 05:47,"738 Chestnut St, San Francisco, CA 94016" -183394,AAA Batteries (4-pack),1,2.99,04/21/19 21:54,"767 Meadow St, Boston, MA 02215" -183395,AA Batteries (4-pack),2,3.84,04/19/19 16:59,"273 Main St, Boston, MA 02215" -183396,Lightning Charging Cable,1,14.95,04/29/19 19:06,"730 River St, Dallas, TX 75001" -183397,AA Batteries (4-pack),1,3.84,04/18/19 12:12,"115 Dogwood St, Boston, MA 02215" -183398,Lightning Charging Cable,1,14.95,04/27/19 07:52,"108 Cherry St, Boston, MA 02215" -183399,AA Batteries (4-pack),1,3.84,04/12/19 21:43,"657 Meadow St, New York City, NY 10001" -183400,27in 4K Gaming Monitor,1,389.99,04/13/19 14:32,"274 4th St, New York City, NY 10001" -183401,AAA Batteries (4-pack),1,2.99,04/26/19 22:48,"389 8th St, Dallas, TX 75001" -183402,AAA Batteries (4-pack),1,2.99,04/09/19 19:49,"287 13th St, Portland, OR 97035" -183403,27in FHD Monitor,1,149.99,04/08/19 22:01,"749 River St, San Francisco, CA 94016" -183404,Macbook Pro Laptop,1,1700,04/28/19 09:34,"962 Maple St, Seattle, WA 98101" -183405,USB-C Charging Cable,1,11.95,04/26/19 14:06,"852 Adams St, San Francisco, CA 94016" -183406,27in 4K Gaming Monitor,1,389.99,04/24/19 14:55,"787 Forest St, Seattle, WA 98101" -183407,Wired Headphones,1,11.99,04/10/19 18:37,"367 Lincoln St, Boston, MA 02215" -183408,AA Batteries (4-pack),1,3.84,04/12/19 08:23,"159 11th St, New York City, NY 10001" -183409,iPhone,1,700,04/08/19 18:27,"198 Wilson St, Austin, TX 73301" -183410,USB-C Charging Cable,1,11.95,04/10/19 16:29,"272 6th St, Atlanta, GA 30301" -183411,Apple Airpods Headphones,1,150,04/03/19 21:07,"806 Hickory St, Los Angeles, CA 90001" -183412,20in Monitor,1,109.99,04/28/19 17:46,"883 Jefferson St, Boston, MA 02215" -183413,AA Batteries (4-pack),1,3.84,04/30/19 17:46,"926 Maple St, Boston, MA 02215" -183414,AA Batteries (4-pack),1,3.84,04/02/19 16:56,"238 4th St, San Francisco, CA 94016" -183415,Bose SoundSport Headphones,1,99.99,04/08/19 18:02,"504 Willow St, Seattle, WA 98101" -183416,27in 4K Gaming Monitor,1,389.99,04/14/19 19:29,"260 West St, Los Angeles, CA 90001" -183417,AAA Batteries (4-pack),1,2.99,04/22/19 12:15,"118 Wilson St, Los Angeles, CA 90001" -183418,20in Monitor,1,109.99,04/02/19 10:58,"324 Cedar St, San Francisco, CA 94016" -183419,AAA Batteries (4-pack),1,2.99,04/23/19 09:59,"184 5th St, San Francisco, CA 94016" -183420,LG Washing Machine,1,600.0,04/27/19 18:54,"835 South St, Boston, MA 02215" -183421,AA Batteries (4-pack),1,3.84,04/28/19 10:57,"985 West St, Los Angeles, CA 90001" -183422,Google Phone,1,600,04/26/19 06:16,"60 Lake St, Atlanta, GA 30301" -183422,Wired Headphones,1,11.99,04/26/19 06:16,"60 Lake St, Atlanta, GA 30301" -183423,AAA Batteries (4-pack),1,2.99,04/26/19 22:12,"472 12th St, San Francisco, CA 94016" -183424,Wired Headphones,1,11.99,04/25/19 16:59,"214 Pine St, San Francisco, CA 94016" -183425,AAA Batteries (4-pack),1,2.99,04/16/19 10:17,"428 Main St, Seattle, WA 98101" -183426,Bose SoundSport Headphones,1,99.99,04/20/19 12:46,"799 Elm St, Portland, OR 97035" -183427,Flatscreen TV,1,300,04/18/19 20:33,"946 13th St, New York City, NY 10001" -183428,Wired Headphones,1,11.99,04/11/19 20:56,"65 13th St, Portland, OR 97035" -183429,20in Monitor,1,109.99,04/21/19 12:24,"106 Sunset St, Los Angeles, CA 90001" -183430,Lightning Charging Cable,1,14.95,04/15/19 03:00,"670 West St, Los Angeles, CA 90001" -183431,AAA Batteries (4-pack),1,2.99,04/27/19 12:37,"630 North St, Seattle, WA 98101" -183432,Flatscreen TV,1,300,04/24/19 18:36,"535 Pine St, Boston, MA 02215" -183433,Bose SoundSport Headphones,1,99.99,04/03/19 13:33,"331 12th St, Dallas, TX 75001" -183434,Macbook Pro Laptop,1,1700,04/26/19 15:46,"419 6th St, Atlanta, GA 30301" -183435,ThinkPad Laptop,1,999.99,04/24/19 05:56,"474 2nd St, Dallas, TX 75001" -183436,iPhone,1,700,04/03/19 18:25,"491 14th St, San Francisco, CA 94016" -183436,Lightning Charging Cable,1,14.95,04/03/19 18:25,"491 14th St, San Francisco, CA 94016" -183436,Wired Headphones,2,11.99,04/03/19 18:25,"491 14th St, San Francisco, CA 94016" -183437,Google Phone,1,600,04/12/19 17:06,"694 Walnut St, San Francisco, CA 94016" -183438,Lightning Charging Cable,1,14.95,04/09/19 09:59,"940 Main St, Portland, ME 04101" -183439,Flatscreen TV,1,300,04/24/19 21:36,"728 Sunset St, New York City, NY 10001" -183440,USB-C Charging Cable,1,11.95,04/23/19 18:02,"914 Jefferson St, New York City, NY 10001" -183441,AAA Batteries (4-pack),1,2.99,04/11/19 22:15,"351 2nd St, San Francisco, CA 94016" -183442,Wired Headphones,1,11.99,04/12/19 21:40,"140 Walnut St, Atlanta, GA 30301" -183443,AA Batteries (4-pack),3,3.84,04/17/19 01:19,"372 2nd St, Austin, TX 73301" -183444,USB-C Charging Cable,1,11.95,04/05/19 13:17,"960 Church St, San Francisco, CA 94016" -183445,Apple Airpods Headphones,1,150,04/02/19 11:45,"586 Jefferson St, New York City, NY 10001" -183446,34in Ultrawide Monitor,1,379.99,04/24/19 01:59,"234 Wilson St, Austin, TX 73301" -183447,AA Batteries (4-pack),2,3.84,04/05/19 10:40,"65 Park St, Austin, TX 73301" -183448,34in Ultrawide Monitor,1,379.99,04/19/19 17:35,"283 12th St, Portland, OR 97035" -183449,Apple Airpods Headphones,1,150,04/15/19 13:07,"767 Johnson St, Dallas, TX 75001" -183450,iPhone,1,700,04/02/19 09:15,"142 10th St, San Francisco, CA 94016" -183451,Wired Headphones,1,11.99,04/02/19 10:00,"56 4th St, San Francisco, CA 94016" -183452,20in Monitor,1,109.99,04/03/19 12:09,"12 Ridge St, Austin, TX 73301" -183452,USB-C Charging Cable,1,11.95,04/03/19 12:09,"12 Ridge St, Austin, TX 73301" -183453,USB-C Charging Cable,1,11.95,04/27/19 12:11,"584 Dogwood St, New York City, NY 10001" -183454,iPhone,1,700,04/07/19 11:33,"604 Park St, Portland, ME 04101" -183454,Apple Airpods Headphones,1,150,04/07/19 11:33,"604 Park St, Portland, ME 04101" -183455,iPhone,1,700,04/19/19 18:46,"975 Pine St, Boston, MA 02215" -183456,USB-C Charging Cable,1,11.95,04/20/19 13:13,"984 Dogwood St, Boston, MA 02215" -183457,Google Phone,1,600,04/05/19 13:52,"234 Jackson St, Seattle, WA 98101" -183458,AAA Batteries (4-pack),1,2.99,04/06/19 22:32,"45 Jackson St, San Francisco, CA 94016" -183459,Apple Airpods Headphones,1,150,04/13/19 09:46,"143 Hill St, Boston, MA 02215" -183460,Wired Headphones,2,11.99,04/03/19 10:48,"101 11th St, New York City, NY 10001" -183461,AA Batteries (4-pack),3,3.84,04/13/19 06:49,"343 6th St, New York City, NY 10001" -183462,AA Batteries (4-pack),2,3.84,04/06/19 07:51,"88 Park St, Boston, MA 02215" -183463,AA Batteries (4-pack),1,3.84,04/23/19 22:04,"869 12th St, Dallas, TX 75001" -183464,Google Phone,1,600,04/23/19 22:08,"476 Jackson St, Seattle, WA 98101" -183465,USB-C Charging Cable,1,11.95,04/30/19 07:06,"622 8th St, Atlanta, GA 30301" -183466,27in FHD Monitor,1,149.99,04/18/19 18:56,"132 2nd St, Portland, ME 04101" -183467,Apple Airpods Headphones,1,150,04/13/19 21:24,"130 North St, Atlanta, GA 30301" -183468,Google Phone,1,600,04/04/19 11:34,"179 Lincoln St, Los Angeles, CA 90001" -183468,USB-C Charging Cable,1,11.95,04/04/19 11:34,"179 Lincoln St, Los Angeles, CA 90001" -183469,Lightning Charging Cable,1,14.95,04/26/19 18:21,"51 Hill St, Boston, MA 02215" -183470,Wired Headphones,1,11.99,04/16/19 12:55,"3 Lincoln St, Seattle, WA 98101" -183471,20in Monitor,1,109.99,04/02/19 18:30,"332 Cherry St, Seattle, WA 98101" -183472,USB-C Charging Cable,1,11.95,04/03/19 16:20,"563 Adams St, New York City, NY 10001" -183473,Google Phone,1,600,04/10/19 13:25,"373 Meadow St, Boston, MA 02215" -183474,Bose SoundSport Headphones,1,99.99,04/21/19 01:36,"649 4th St, San Francisco, CA 94016" -183475,Lightning Charging Cable,1,14.95,04/13/19 17:12,"6 Chestnut St, Los Angeles, CA 90001" -183476,AA Batteries (4-pack),1,3.84,04/07/19 14:17,"166 Wilson St, New York City, NY 10001" -183477,AAA Batteries (4-pack),2,2.99,04/05/19 00:58,"435 Cherry St, Atlanta, GA 30301" -183478,AAA Batteries (4-pack),1,2.99,04/27/19 07:18,"577 2nd St, San Francisco, CA 94016" -183479,Vareebadd Phone,1,400,04/17/19 16:32,"117 4th St, Seattle, WA 98101" -183479,USB-C Charging Cable,1,11.95,04/17/19 16:32,"117 4th St, Seattle, WA 98101" -183480,AA Batteries (4-pack),1,3.84,04/23/19 11:23,"407 7th St, Atlanta, GA 30301" -183481,Lightning Charging Cable,1,14.95,04/13/19 19:17,"533 Madison St, San Francisco, CA 94016" -183482,AAA Batteries (4-pack),1,2.99,04/20/19 16:59,"537 Lakeview St, San Francisco, CA 94016" -183483,AA Batteries (4-pack),2,3.84,04/09/19 14:37,"813 Lakeview St, San Francisco, CA 94016" -183484,34in Ultrawide Monitor,1,379.99,04/09/19 19:33,"204 Meadow St, Los Angeles, CA 90001" -183485,Bose SoundSport Headphones,2,99.99,04/11/19 23:50,"35 12th St, New York City, NY 10001" -183486,USB-C Charging Cable,1,11.95,04/14/19 19:16,"978 10th St, San Francisco, CA 94016" -183487,Bose SoundSport Headphones,1,99.99,04/03/19 23:39,"411 Pine St, San Francisco, CA 94016" -183488,USB-C Charging Cable,1,11.95,04/02/19 11:39,"891 6th St, San Francisco, CA 94016" -183489,Flatscreen TV,1,300,04/08/19 12:39,"374 1st St, San Francisco, CA 94016" -183490,Wired Headphones,1,11.99,04/04/19 20:27,"628 5th St, San Francisco, CA 94016" -183491,27in 4K Gaming Monitor,1,389.99,04/30/19 17:46,"740 Church St, Austin, TX 73301" -183492,AAA Batteries (4-pack),3,2.99,04/16/19 12:03,"646 Park St, Los Angeles, CA 90001" -183493,Google Phone,1,600,04/17/19 09:47,"955 Jackson St, Los Angeles, CA 90001" -183494,USB-C Charging Cable,1,11.95,04/28/19 12:20,"307 4th St, Seattle, WA 98101" -183495,27in 4K Gaming Monitor,1,389.99,04/18/19 10:30,"561 Walnut St, San Francisco, CA 94016" -183496,AA Batteries (4-pack),2,3.84,04/14/19 16:17,"103 Center St, Portland, OR 97035" -183497,iPhone,1,700,04/05/19 23:52,"41 1st St, Portland, OR 97035" -183498,AA Batteries (4-pack),2,3.84,04/11/19 09:38,"247 Walnut St, Austin, TX 73301" -183499,34in Ultrawide Monitor,1,379.99,04/20/19 16:52,"123 Maple St, New York City, NY 10001" -183500,Google Phone,1,600,04/05/19 09:47,"789 Madison St, Dallas, TX 75001" -183501,Lightning Charging Cable,1,14.95,04/14/19 16:15,"609 North St, Boston, MA 02215" -183502,34in Ultrawide Monitor,1,379.99,04/02/19 15:12,"20 Lincoln St, Los Angeles, CA 90001" -183503,iPhone,1,700,04/08/19 09:35,"881 Cedar St, Seattle, WA 98101" -183503,Lightning Charging Cable,1,14.95,04/08/19 09:35,"881 Cedar St, Seattle, WA 98101" -183504,USB-C Charging Cable,1,11.95,04/05/19 20:47,"28 Lincoln St, Atlanta, GA 30301" -183505,AA Batteries (4-pack),1,3.84,04/01/19 10:35,"503 Elm St, San Francisco, CA 94016" -183506,Apple Airpods Headphones,1,150,04/03/19 09:58,"477 11th St, San Francisco, CA 94016" -183506,AAA Batteries (4-pack),1,2.99,04/03/19 09:58,"477 11th St, San Francisco, CA 94016" -183507,USB-C Charging Cable,2,11.95,04/22/19 19:07,"218 8th St, San Francisco, CA 94016" -183508,AA Batteries (4-pack),1,3.84,04/02/19 01:14,"928 Cedar St, Boston, MA 02215" -183509,AAA Batteries (4-pack),4,2.99,04/24/19 06:17,"61 Sunset St, Los Angeles, CA 90001" -183510,Lightning Charging Cable,1,14.95,04/12/19 12:25,"170 South St, Dallas, TX 75001" -183511,AAA Batteries (4-pack),1,2.99,04/14/19 14:27,"653 River St, Atlanta, GA 30301" -183512,USB-C Charging Cable,1,11.95,04/16/19 04:46,"586 13th St, Los Angeles, CA 90001" -183513,ThinkPad Laptop,1,999.99,04/29/19 21:42,"557 12th St, Los Angeles, CA 90001" -183514,Macbook Pro Laptop,1,1700,04/09/19 18:36,"261 Main St, Boston, MA 02215" -183515,USB-C Charging Cable,1,11.95,04/20/19 13:12,"51 Forest St, Atlanta, GA 30301" -183516,AAA Batteries (4-pack),2,2.99,04/19/19 23:14,"666 7th St, New York City, NY 10001" -183517,Apple Airpods Headphones,1,150,04/01/19 08:23,"714 Madison St, Seattle, WA 98101" -183518,Apple Airpods Headphones,1,150,04/13/19 19:35,"530 Main St, Austin, TX 73301" -183519,Bose SoundSport Headphones,1,99.99,04/06/19 11:48,"953 Lincoln St, Austin, TX 73301" -183520,USB-C Charging Cable,1,11.95,04/15/19 18:20,"59 North St, Los Angeles, CA 90001" -183521,AA Batteries (4-pack),1,3.84,04/01/19 13:22,"942 Cedar St, Atlanta, GA 30301" -183522,USB-C Charging Cable,1,11.95,04/18/19 23:54,"963 Madison St, Austin, TX 73301" -183523,iPhone,1,700,04/03/19 19:21,"484 Lakeview St, Los Angeles, CA 90001" -183524,Wired Headphones,1,11.99,04/20/19 00:10,"498 7th St, Dallas, TX 75001" -183525,Lightning Charging Cable,1,14.95,04/01/19 23:55,"606 Church St, Seattle, WA 98101" -183526,20in Monitor,1,109.99,04/27/19 20:51,"398 7th St, San Francisco, CA 94016" -183527,Lightning Charging Cable,1,14.95,04/06/19 22:37,"136 Maple St, Austin, TX 73301" -183528,ThinkPad Laptop,1,999.99,04/30/19 15:51,"860 Church St, New York City, NY 10001" -183529,34in Ultrawide Monitor,1,379.99,04/29/19 12:40,"783 13th St, San Francisco, CA 94016" -183530,LG Dryer,1,600.0,04/11/19 07:56,"486 8th St, Portland, OR 97035" -183531,ThinkPad Laptop,1,999.99,04/25/19 22:05,"269 Lake St, Boston, MA 02215" -183532,AAA Batteries (4-pack),2,2.99,04/13/19 16:17,"937 4th St, New York City, NY 10001" -183533,AA Batteries (4-pack),1,3.84,04/10/19 02:18,"632 4th St, Dallas, TX 75001" -183534,Apple Airpods Headphones,1,150,04/24/19 12:24,"902 Willow St, Boston, MA 02215" -183535,Wired Headphones,1,11.99,04/17/19 17:37,"172 Pine St, Atlanta, GA 30301" -183536,34in Ultrawide Monitor,1,379.99,04/10/19 21:26,"841 River St, Seattle, WA 98101" -183537,AA Batteries (4-pack),1,3.84,04/20/19 21:30,"285 Dogwood St, New York City, NY 10001" -183538,AAA Batteries (4-pack),1,2.99,04/20/19 14:12,"669 Hill St, Dallas, TX 75001" -183538,27in FHD Monitor,1,149.99,04/20/19 14:12,"669 Hill St, Dallas, TX 75001" -183539,Wired Headphones,1,11.99,04/16/19 22:30,"30 Jackson St, Los Angeles, CA 90001" -183540,USB-C Charging Cable,1,11.95,04/29/19 21:22,"637 Pine St, Los Angeles, CA 90001" -183541,AA Batteries (4-pack),1,3.84,04/16/19 12:37,"541 Lincoln St, Seattle, WA 98101" -183542,ThinkPad Laptop,1,999.99,04/09/19 11:35,"883 Cedar St, San Francisco, CA 94016" -183543,Apple Airpods Headphones,1,150,04/03/19 12:50,"350 Dogwood St, Los Angeles, CA 90001" -183544,AAA Batteries (4-pack),1,2.99,04/25/19 17:26,"101 14th St, Dallas, TX 75001" -183545,20in Monitor,1,109.99,04/10/19 02:08,"455 13th St, Atlanta, GA 30301" -183546,AA Batteries (4-pack),1,3.84,04/18/19 09:44,"995 4th St, Austin, TX 73301" -183547,Wired Headphones,3,11.99,04/30/19 05:24,"355 2nd St, Seattle, WA 98101" -183548,iPhone,1,700,04/26/19 23:28,"385 Cherry St, Boston, MA 02215" -183549,Wired Headphones,1,11.99,04/27/19 22:52,"353 Johnson St, Boston, MA 02215" -183550,USB-C Charging Cable,1,11.95,04/10/19 09:56,"550 Lake St, Los Angeles, CA 90001" -183551,Wired Headphones,1,11.99,04/17/19 13:43,"945 5th St, New York City, NY 10001" -183552,Wired Headphones,1,11.99,04/11/19 09:44,"911 12th St, San Francisco, CA 94016" -183553,Wired Headphones,1,11.99,04/30/19 21:13,"579 Park St, Los Angeles, CA 90001" -183554,34in Ultrawide Monitor,1,379.99,04/13/19 19:02,"906 10th St, Los Angeles, CA 90001" -183555,USB-C Charging Cable,1,11.95,04/16/19 12:41,"350 11th St, Boston, MA 02215" -183556,Wired Headphones,1,11.99,04/02/19 12:51,"130 Johnson St, Austin, TX 73301" -183557,Apple Airpods Headphones,1,150,04/26/19 11:46,"924 Pine St, New York City, NY 10001" -183558,Apple Airpods Headphones,1,150,04/19/19 14:26,"754 Johnson St, Portland, OR 97035" -183559,ThinkPad Laptop,1,999.99,04/23/19 10:35,"452 Madison St, New York City, NY 10001" -183560,AAA Batteries (4-pack),2,2.99,04/25/19 14:19,"469 Johnson St, New York City, NY 10001" -183561,Bose SoundSport Headphones,1,99.99,04/13/19 21:21,"461 Meadow St, Portland, OR 97035" -183562,Apple Airpods Headphones,1,150,04/29/19 08:10,"620 Highland St, Los Angeles, CA 90001" -183563,USB-C Charging Cable,1,11.95,04/03/19 13:31,"390 Hickory St, Boston, MA 02215" -183564,USB-C Charging Cable,1,11.95,04/18/19 08:55,"40 10th St, San Francisco, CA 94016" -183564,AA Batteries (4-pack),1,3.84,04/18/19 08:55,"40 10th St, San Francisco, CA 94016" -183565,34in Ultrawide Monitor,1,379.99,04/30/19 16:39,"929 7th St, New York City, NY 10001" -183566,Google Phone,1,600,04/15/19 20:50,"801 Church St, Boston, MA 02215" -183567,iPhone,1,700,04/03/19 10:30,"400 Lakeview St, Atlanta, GA 30301" -183568,27in 4K Gaming Monitor,1,389.99,04/25/19 09:18,"560 Highland St, Austin, TX 73301" -183569,Bose SoundSport Headphones,1,99.99,04/22/19 10:29,"713 7th St, Dallas, TX 75001" -183570,Lightning Charging Cable,1,14.95,04/05/19 13:50,"123 Lake St, Seattle, WA 98101" -183571,Vareebadd Phone,1,400,04/28/19 18:12,"273 Spruce St, Boston, MA 02215" -183571,Bose SoundSport Headphones,1,99.99,04/28/19 18:12,"273 Spruce St, Boston, MA 02215" -183572,20in Monitor,1,109.99,04/01/19 19:59,"702 6th St, Atlanta, GA 30301" -183573,Macbook Pro Laptop,1,1700,04/18/19 19:52,"91 7th St, Seattle, WA 98101" -183574,AA Batteries (4-pack),1,3.84,04/12/19 23:08,"880 9th St, Los Angeles, CA 90001" -183575,Lightning Charging Cable,1,14.95,04/16/19 00:40,"217 Maple St, Austin, TX 73301" -183576,Apple Airpods Headphones,1,150,04/17/19 08:52,"46 Lake St, New York City, NY 10001" -183577,AAA Batteries (4-pack),1,2.99,04/26/19 12:30,"917 Lincoln St, Los Angeles, CA 90001" -183578,USB-C Charging Cable,1,11.95,04/15/19 22:07,"568 14th St, New York City, NY 10001" -183579,Apple Airpods Headphones,1,150,04/07/19 10:10,"454 Willow St, San Francisco, CA 94016" -183580,AA Batteries (4-pack),1,3.84,04/27/19 20:40,"332 Washington St, Atlanta, GA 30301" -183581,USB-C Charging Cable,1,11.95,04/23/19 20:13,"2 Cherry St, Los Angeles, CA 90001" -183582,USB-C Charging Cable,1,11.95,04/10/19 22:43,"480 Elm St, San Francisco, CA 94016" -183583,Apple Airpods Headphones,1,150,04/20/19 16:45,"63 12th St, Los Angeles, CA 90001" -183584,USB-C Charging Cable,1,11.95,04/18/19 09:54,"570 5th St, Los Angeles, CA 90001" -183585,Google Phone,1,600,04/19/19 10:19,"704 Park St, Los Angeles, CA 90001" -183586,Wired Headphones,1,11.99,04/08/19 21:29,"596 14th St, Atlanta, GA 30301" -183587,AAA Batteries (4-pack),1,2.99,04/15/19 00:21,"384 Sunset St, Los Angeles, CA 90001" -183587,AAA Batteries (4-pack),1,2.99,04/15/19 00:21,"384 Sunset St, Los Angeles, CA 90001" -183588,AAA Batteries (4-pack),1,2.99,04/03/19 10:33,"29 Highland St, San Francisco, CA 94016" -183589,AA Batteries (4-pack),1,3.84,04/11/19 07:56,"930 Hickory St, San Francisco, CA 94016" -183590,USB-C Charging Cable,1,11.95,04/28/19 19:32,"402 Center St, Austin, TX 73301" -183591,AA Batteries (4-pack),1,3.84,04/03/19 10:37,"978 Lincoln St, San Francisco, CA 94016" -183592,Bose SoundSport Headphones,1,99.99,04/07/19 12:26,"456 2nd St, New York City, NY 10001" -183593,Wired Headphones,1,11.99,04/27/19 21:59,"793 Elm St, Boston, MA 02215" -183594,ThinkPad Laptop,1,999.99,04/28/19 11:34,"503 Cedar St, New York City, NY 10001" -183595,USB-C Charging Cable,1,11.95,04/10/19 13:51,"107 Jefferson St, Los Angeles, CA 90001" -183596,Wired Headphones,1,11.99,04/20/19 19:50,"795 Elm St, San Francisco, CA 94016" -183597,Flatscreen TV,1,300,04/21/19 13:31,"335 Washington St, Dallas, TX 75001" -183598,Bose SoundSport Headphones,1,99.99,04/29/19 10:35,"253 River St, San Francisco, CA 94016" -183599,USB-C Charging Cable,1,11.95,04/16/19 18:17,"942 14th St, New York City, NY 10001" -183600,Lightning Charging Cable,1,14.95,04/06/19 20:05,"335 Elm St, Austin, TX 73301" -183601,27in 4K Gaming Monitor,1,389.99,04/17/19 12:30,"615 Dogwood St, Atlanta, GA 30301" -183602,USB-C Charging Cable,1,11.95,04/03/19 16:21,"266 Cherry St, Dallas, TX 75001" -183603,Apple Airpods Headphones,1,150,04/13/19 22:12,"933 Elm St, New York City, NY 10001" -183604,ThinkPad Laptop,1,999.99,04/24/19 17:16,"690 Cedar St, San Francisco, CA 94016" -183605,iPhone,1,700,04/24/19 22:47,"271 Forest St, Austin, TX 73301" -183606,AAA Batteries (4-pack),4,2.99,04/23/19 09:22,"564 4th St, San Francisco, CA 94016" -183607,Lightning Charging Cable,1,14.95,04/03/19 02:38,"387 Walnut St, Los Angeles, CA 90001" -183608,USB-C Charging Cable,1,11.95,04/24/19 10:48,"30 Maple St, San Francisco, CA 94016" -183609,Apple Airpods Headphones,1,150,04/25/19 13:55,"219 Forest St, New York City, NY 10001" -183610,27in 4K Gaming Monitor,1,389.99,04/21/19 21:07,"708 Lakeview St, San Francisco, CA 94016" -183611,Lightning Charging Cable,1,14.95,04/08/19 08:11,"793 Washington St, San Francisco, CA 94016" -183612,USB-C Charging Cable,1,11.95,04/15/19 14:49,"840 South St, New York City, NY 10001" -183613,iPhone,1,700,04/14/19 21:16,"329 Sunset St, Los Angeles, CA 90001" -183614,Lightning Charging Cable,1,14.95,04/05/19 16:30,"82 10th St, Boston, MA 02215" -183615,USB-C Charging Cable,1,11.95,04/20/19 19:48,"224 5th St, New York City, NY 10001" -183616,AA Batteries (4-pack),3,3.84,04/29/19 12:44,"425 Spruce St, Dallas, TX 75001" -183617,AA Batteries (4-pack),1,3.84,04/06/19 14:54,"972 1st St, San Francisco, CA 94016" -183618,ThinkPad Laptop,1,999.99,04/28/19 22:25,"532 Lakeview St, Boston, MA 02215" -183619,ThinkPad Laptop,1,999.99,04/30/19 20:46,"660 Spruce St, Los Angeles, CA 90001" -183620,Bose SoundSport Headphones,1,99.99,04/15/19 20:32,"344 Lakeview St, San Francisco, CA 94016" -183621,Lightning Charging Cable,1,14.95,04/29/19 16:36,"504 13th St, Atlanta, GA 30301" -183622,Google Phone,1,600,04/17/19 12:36,"624 Sunset St, San Francisco, CA 94016" -183622,Wired Headphones,1,11.99,04/17/19 12:36,"624 Sunset St, San Francisco, CA 94016" -183623,Lightning Charging Cable,1,14.95,04/22/19 13:06,"398 Lake St, Austin, TX 73301" -183624,Wired Headphones,1,11.99,04/22/19 10:43,"963 Lincoln St, Boston, MA 02215" -183625,USB-C Charging Cable,1,11.95,04/08/19 16:42,"954 Jefferson St, New York City, NY 10001" -183626,USB-C Charging Cable,1,11.95,04/12/19 12:51,"172 Cherry St, Dallas, TX 75001" -183627,USB-C Charging Cable,1,11.95,04/28/19 22:24,"807 Dogwood St, Dallas, TX 75001" -183628,USB-C Charging Cable,1,11.95,04/29/19 18:40,"421 Elm St, Portland, ME 04101" -183629,iPhone,1,700,04/12/19 08:01,"557 8th St, San Francisco, CA 94016" -183630,USB-C Charging Cable,1,11.95,04/07/19 13:10,"707 Jefferson St, San Francisco, CA 94016" -183631,27in FHD Monitor,1,149.99,04/17/19 22:03,"871 Ridge St, San Francisco, CA 94016" -183632,AAA Batteries (4-pack),1,2.99,04/02/19 19:13,"9 West St, San Francisco, CA 94016" -183633,27in FHD Monitor,1,149.99,04/26/19 21:44,"94 5th St, San Francisco, CA 94016" -183634,Bose SoundSport Headphones,1,99.99,04/12/19 11:53,"958 6th St, New York City, NY 10001" -183635,USB-C Charging Cable,1,11.95,04/24/19 09:35,"382 Church St, Dallas, TX 75001" -183636,AAA Batteries (4-pack),6,2.99,04/30/19 10:28,"116 11th St, Boston, MA 02215" -183637,AAA Batteries (4-pack),1,2.99,04/02/19 23:43,"118 Chestnut St, Los Angeles, CA 90001" -183638,USB-C Charging Cable,1,11.95,04/10/19 15:20,"476 Walnut St, San Francisco, CA 94016" -183639,Apple Airpods Headphones,1,150,04/15/19 15:58,"337 Walnut St, Dallas, TX 75001" -183640,iPhone,1,700,04/26/19 16:41,"423 Hickory St, San Francisco, CA 94016" -183641,iPhone,1,700,04/13/19 21:55,"116 Lake St, San Francisco, CA 94016" -183641,Lightning Charging Cable,1,14.95,04/13/19 21:55,"116 Lake St, San Francisco, CA 94016" -183642,Apple Airpods Headphones,1,150,04/03/19 06:05,"622 Washington St, Los Angeles, CA 90001" -183643,Bose SoundSport Headphones,1,99.99,04/07/19 22:18,"775 North St, San Francisco, CA 94016" -183644,AA Batteries (4-pack),1,3.84,04/16/19 13:09,"268 Church St, Los Angeles, CA 90001" -183645,AA Batteries (4-pack),1,3.84,04/23/19 01:20,"245 Lake St, Atlanta, GA 30301" -183646,Wired Headphones,1,11.99,04/28/19 14:23,"902 Madison St, Atlanta, GA 30301" -183647,Apple Airpods Headphones,1,150,04/30/19 16:23,"328 Lake St, San Francisco, CA 94016" -183648,USB-C Charging Cable,1,11.95,04/13/19 00:44,"862 Lakeview St, Austin, TX 73301" -183649,Bose SoundSport Headphones,1,99.99,04/05/19 20:18,"356 Johnson St, San Francisco, CA 94016" -183650,Bose SoundSport Headphones,1,99.99,04/20/19 16:20,"450 11th St, San Francisco, CA 94016" -183651,AA Batteries (4-pack),2,3.84,04/14/19 12:48,"92 Cedar St, New York City, NY 10001" -183652,Vareebadd Phone,1,400,04/27/19 23:49,"869 West St, Austin, TX 73301" -183653,27in FHD Monitor,1,149.99,04/23/19 20:56,"302 Maple St, Los Angeles, CA 90001" -183654,AAA Batteries (4-pack),4,2.99,04/26/19 18:10,"29 2nd St, Boston, MA 02215" -183655,Google Phone,1,600,04/16/19 09:04,"4 North St, San Francisco, CA 94016" -183656,Vareebadd Phone,1,400,04/03/19 03:00,"879 West St, Dallas, TX 75001" -183657,Apple Airpods Headphones,1,150,04/11/19 07:34,"695 Elm St, Los Angeles, CA 90001" -183658,Lightning Charging Cable,1,14.95,04/15/19 12:51,"65 Hill St, San Francisco, CA 94016" -183659,Wired Headphones,1,11.99,04/19/19 13:00,"786 6th St, Boston, MA 02215" -183660,ThinkPad Laptop,1,999.99,04/28/19 17:32,"694 6th St, New York City, NY 10001" -183661,Bose SoundSport Headphones,1,99.99,04/04/19 12:02,"16 Lake St, San Francisco, CA 94016" -183662,AAA Batteries (4-pack),3,2.99,04/26/19 14:30,"503 Wilson St, Austin, TX 73301" -183663,Bose SoundSport Headphones,1,99.99,04/27/19 22:07,"612 Meadow St, Los Angeles, CA 90001" -183664,27in FHD Monitor,1,149.99,04/11/19 12:57,"476 Spruce St, New York City, NY 10001" -183665,Wired Headphones,1,11.99,04/08/19 18:25,"644 9th St, Los Angeles, CA 90001" -183666,AAA Batteries (4-pack),2,2.99,04/30/19 18:49,"837 7th St, New York City, NY 10001" -183667,34in Ultrawide Monitor,1,379.99,04/09/19 10:36,"687 13th St, Boston, MA 02215" -183668,USB-C Charging Cable,1,11.95,04/30/19 09:25,"812 6th St, Boston, MA 02215" -183669,ThinkPad Laptop,1,999.99,05/01/19 02:02,"186 Lake St, Los Angeles, CA 90001" -183670,Lightning Charging Cable,1,14.95,04/11/19 20:03,"950 Lake St, Dallas, TX 75001" -183671,Wired Headphones,1,11.99,04/29/19 00:03,"38 West St, Seattle, WA 98101" -183672,Apple Airpods Headphones,1,150,04/30/19 22:53,"892 Jefferson St, New York City, NY 10001" -183673,AAA Batteries (4-pack),1,2.99,04/24/19 23:42,"754 Wilson St, Seattle, WA 98101" -183674,Wired Headphones,1,11.99,04/03/19 20:46,"932 Adams St, Austin, TX 73301" -183675,AA Batteries (4-pack),1,3.84,04/23/19 08:21,"103 Park St, San Francisco, CA 94016" -183676,USB-C Charging Cable,1,11.95,04/08/19 19:46,"980 Johnson St, Dallas, TX 75001" -183677,Lightning Charging Cable,1,14.95,04/24/19 21:52,"755 Washington St, San Francisco, CA 94016" -183678,AA Batteries (4-pack),1,3.84,04/23/19 20:45,"597 6th St, San Francisco, CA 94016" -183678,Lightning Charging Cable,1,14.95,04/23/19 20:45,"597 6th St, San Francisco, CA 94016" -183679,Wired Headphones,1,11.99,04/06/19 08:56,"28 Dogwood St, San Francisco, CA 94016" -183680,Apple Airpods Headphones,1,150,04/24/19 11:05,"1 Ridge St, San Francisco, CA 94016" -183681,Google Phone,1,600,04/23/19 19:06,"869 12th St, Los Angeles, CA 90001" -183682,34in Ultrawide Monitor,1,379.99,04/05/19 18:20,"941 South St, Seattle, WA 98101" -183683,AA Batteries (4-pack),1,3.84,04/28/19 11:09,"37 Adams St, Los Angeles, CA 90001" -183684,USB-C Charging Cable,2,11.95,04/12/19 08:38,"667 Forest St, Dallas, TX 75001" -183685,Apple Airpods Headphones,1,150,04/23/19 01:06,"87 13th St, Atlanta, GA 30301" -183686,Wired Headphones,2,11.99,04/29/19 22:48,"469 2nd St, Portland, OR 97035" -183687,Wired Headphones,3,11.99,04/02/19 22:08,"225 South St, Seattle, WA 98101" -183688,27in FHD Monitor,1,149.99,04/18/19 13:08,"853 4th St, San Francisco, CA 94016" -183689,Lightning Charging Cable,1,14.95,04/20/19 19:01,"385 10th St, San Francisco, CA 94016" -183690,27in FHD Monitor,1,149.99,04/09/19 16:14,"18 Madison St, Boston, MA 02215" -183691,Apple Airpods Headphones,1,150,04/25/19 19:37,"982 12th St, San Francisco, CA 94016" -183692,Wired Headphones,1,11.99,04/05/19 12:53,"294 8th St, Boston, MA 02215" -183693,Lightning Charging Cable,1,14.95,04/22/19 13:15,"395 Spruce St, Los Angeles, CA 90001" -183694,20in Monitor,1,109.99,04/24/19 08:09,"91 12th St, Boston, MA 02215" -183695,AA Batteries (4-pack),1,3.84,04/29/19 13:55,"164 Highland St, Atlanta, GA 30301" -183696,27in 4K Gaming Monitor,1,389.99,04/13/19 12:18,"41 Meadow St, Boston, MA 02215" -183697,USB-C Charging Cable,1,11.95,04/19/19 20:25,"19 14th St, Atlanta, GA 30301" -183698,20in Monitor,1,109.99,04/28/19 14:56,"964 9th St, Seattle, WA 98101" -183699,27in 4K Gaming Monitor,1,389.99,04/01/19 13:33,"199 Dogwood St, Dallas, TX 75001" -183700,iPhone,1,700,04/06/19 15:42,"694 14th St, San Francisco, CA 94016" -183701,Apple Airpods Headphones,1,150,04/18/19 12:03,"38 9th St, Seattle, WA 98101" -183702,Wired Headphones,1,11.99,04/07/19 11:54,"448 Chestnut St, Portland, OR 97035" -183703,AA Batteries (4-pack),1,3.84,04/12/19 15:05,"247 13th St, Atlanta, GA 30301" -183704,AA Batteries (4-pack),2,3.84,04/26/19 22:17,"982 Lincoln St, Los Angeles, CA 90001" -183705,Lightning Charging Cable,3,14.95,04/21/19 14:02,"506 Highland St, San Francisco, CA 94016" -183706,Apple Airpods Headphones,1,150,04/16/19 02:27,"356 Ridge St, Los Angeles, CA 90001" -183707,Lightning Charging Cable,2,14.95,04/18/19 22:49,"204 6th St, Boston, MA 02215" -183708,Bose SoundSport Headphones,1,99.99,04/20/19 21:42,"356 10th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -183709,AAA Batteries (4-pack),3,2.99,04/18/19 10:39,"860 Jackson St, Boston, MA 02215" -183710,34in Ultrawide Monitor,1,379.99,04/13/19 13:01,"695 Main St, Los Angeles, CA 90001" -183711,USB-C Charging Cable,1,11.95,04/29/19 13:35,"715 West St, Dallas, TX 75001" -183712,USB-C Charging Cable,1,11.95,04/26/19 16:21,"846 Forest St, New York City, NY 10001" -183713,27in 4K Gaming Monitor,1,389.99,04/05/19 13:10,"102 Pine St, New York City, NY 10001" -183714,27in FHD Monitor,1,149.99,04/20/19 09:18,"718 Madison St, San Francisco, CA 94016" -183715,iPhone,1,700,04/28/19 21:52,"461 13th St, Austin, TX 73301" -183716,AAA Batteries (4-pack),1,2.99,04/15/19 14:40,"813 Park St, Boston, MA 02215" -183717,ThinkPad Laptop,1,999.99,04/14/19 19:30,"844 Jefferson St, Boston, MA 02215" -183718,AA Batteries (4-pack),2,3.84,04/18/19 09:57,"591 Lakeview St, Dallas, TX 75001" -183719,Apple Airpods Headphones,1,150,04/26/19 19:46,"559 Spruce St, San Francisco, CA 94016" -183720,Lightning Charging Cable,1,14.95,04/23/19 08:42,"698 Main St, Boston, MA 02215" -183721,Wired Headphones,1,11.99,04/19/19 12:17,"440 Center St, Austin, TX 73301" -183722,AA Batteries (4-pack),1,3.84,04/06/19 11:00,"488 6th St, New York City, NY 10001" -183723,AAA Batteries (4-pack),3,2.99,04/07/19 10:49,"827 13th St, Boston, MA 02215" -183724,Lightning Charging Cable,1,14.95,04/12/19 17:54,"188 11th St, Dallas, TX 75001" -183725,Wired Headphones,1,11.99,04/06/19 22:01,"103 Spruce St, Portland, OR 97035" -183726,iPhone,1,700,04/16/19 15:31,"863 Hickory St, Atlanta, GA 30301" -183726,Apple Airpods Headphones,1,150,04/16/19 15:31,"863 Hickory St, Atlanta, GA 30301" -183727,Lightning Charging Cable,2,14.95,04/25/19 22:28,"736 Johnson St, Los Angeles, CA 90001" -183728,ThinkPad Laptop,1,999.99,04/15/19 21:06,"869 Wilson St, Atlanta, GA 30301" -183729,Lightning Charging Cable,1,14.95,04/25/19 05:59,"814 13th St, New York City, NY 10001" -183730,34in Ultrawide Monitor,1,379.99,04/06/19 13:41,"121 9th St, Boston, MA 02215" -183731,USB-C Charging Cable,1,11.95,04/10/19 16:31,"826 7th St, Atlanta, GA 30301" -183732,27in 4K Gaming Monitor,1,389.99,04/17/19 08:58,"711 River St, Portland, OR 97035" -183733,iPhone,1,700,04/05/19 15:01,"834 6th St, Boston, MA 02215" -183733,Wired Headphones,1,11.99,04/05/19 15:01,"834 6th St, Boston, MA 02215" -183734,Lightning Charging Cable,1,14.95,04/06/19 08:54,"452 Jefferson St, San Francisco, CA 94016" -183735,USB-C Charging Cable,1,11.95,04/19/19 18:16,"68 Main St, San Francisco, CA 94016" -183736,AA Batteries (4-pack),1,3.84,04/06/19 15:10,"442 River St, Dallas, TX 75001" -183737,Macbook Pro Laptop,1,1700,04/24/19 23:43,"381 Maple St, Boston, MA 02215" -183738,Wired Headphones,1,11.99,04/24/19 18:49,"99 Lincoln St, New York City, NY 10001" -183739,27in FHD Monitor,1,149.99,04/20/19 19:24,"819 9th St, Austin, TX 73301" -183740,27in FHD Monitor,1,149.99,04/10/19 22:13,"447 Willow St, Seattle, WA 98101" -183741,USB-C Charging Cable,1,11.95,04/23/19 22:34,"778 Ridge St, Boston, MA 02215" -183742,Lightning Charging Cable,1,14.95,04/20/19 07:16,"527 7th St, San Francisco, CA 94016" -183743,Wired Headphones,2,11.99,04/08/19 17:25,"713 13th St, Boston, MA 02215" -183744,Wired Headphones,1,11.99,04/03/19 19:20,"870 Forest St, San Francisco, CA 94016" -183745,USB-C Charging Cable,1,11.95,04/09/19 08:42,"678 Cedar St, Dallas, TX 75001" -183746,Flatscreen TV,1,300,04/11/19 10:21,"34 Maple St, Los Angeles, CA 90001" -183747,AAA Batteries (4-pack),1,2.99,04/10/19 14:12,"721 Cherry St, San Francisco, CA 94016" -183748,AAA Batteries (4-pack),2,2.99,04/01/19 13:16,"210 Elm St, Los Angeles, CA 90001" -183749,AA Batteries (4-pack),1,3.84,04/22/19 20:18,"130 Washington St, San Francisco, CA 94016" -183750,ThinkPad Laptop,1,999.99,04/23/19 08:05,"456 West St, Dallas, TX 75001" -183751,AAA Batteries (4-pack),1,2.99,04/12/19 19:08,"198 13th St, Los Angeles, CA 90001" -183752,AA Batteries (4-pack),1,3.84,04/02/19 18:58,"324 Adams St, San Francisco, CA 94016" -183753,Wired Headphones,1,11.99,04/30/19 19:57,"722 Lincoln St, Austin, TX 73301" -183754,Bose SoundSport Headphones,1,99.99,04/13/19 05:09,"948 4th St, Los Angeles, CA 90001" -183755,Google Phone,1,600,04/04/19 20:36,"757 Dogwood St, San Francisco, CA 94016" -183756,iPhone,1,700,04/10/19 14:02,"684 Cedar St, New York City, NY 10001" -183757,Flatscreen TV,1,300,04/18/19 14:12,"839 Lake St, San Francisco, CA 94016" -183758,Apple Airpods Headphones,1,150,04/15/19 19:32,"945 8th St, New York City, NY 10001" -183759,Google Phone,1,600,04/28/19 16:44,"353 14th St, Los Angeles, CA 90001" -183760,Apple Airpods Headphones,1,150,04/20/19 13:49,"808 Hickory St, San Francisco, CA 94016" -183761,Wired Headphones,1,11.99,04/07/19 21:57,"467 Wilson St, Seattle, WA 98101" -183762,Vareebadd Phone,1,400,04/16/19 07:06,"582 Lakeview St, San Francisco, CA 94016" -183763,27in FHD Monitor,1,149.99,04/19/19 15:57,"206 10th St, San Francisco, CA 94016" -183764,27in FHD Monitor,1,149.99,04/28/19 18:42,"976 Chestnut St, Boston, MA 02215" -183765,27in FHD Monitor,1,149.99,04/29/19 20:06,"547 Madison St, Austin, TX 73301" -183766,Wired Headphones,1,11.99,04/09/19 18:56,"236 Maple St, San Francisco, CA 94016" -183767,Lightning Charging Cable,1,14.95,04/28/19 10:40,"149 Jackson St, New York City, NY 10001" -183768,Flatscreen TV,1,300,04/22/19 19:55,"212 Pine St, San Francisco, CA 94016" -183769,Wired Headphones,1,11.99,04/22/19 22:18,"499 Johnson St, San Francisco, CA 94016" -183770,34in Ultrawide Monitor,1,379.99,04/28/19 13:01,"220 Highland St, San Francisco, CA 94016" -183771,Apple Airpods Headphones,1,150,04/23/19 19:37,"162 West St, San Francisco, CA 94016" -183772,AA Batteries (4-pack),1,3.84,04/29/19 13:59,"395 7th St, Atlanta, GA 30301" -183773,AAA Batteries (4-pack),1,2.99,04/16/19 19:54,"610 14th St, Dallas, TX 75001" -183774,AA Batteries (4-pack),1,3.84,04/11/19 09:13,"895 Forest St, San Francisco, CA 94016" -183775,AA Batteries (4-pack),3,3.84,04/13/19 11:06,"653 6th St, Seattle, WA 98101" -183776,Flatscreen TV,1,300,04/13/19 12:38,"311 West St, San Francisco, CA 94016" -183777,AA Batteries (4-pack),2,3.84,04/16/19 20:50,"407 Ridge St, Seattle, WA 98101" -183778,AAA Batteries (4-pack),1,2.99,04/20/19 01:33,"129 Church St, Boston, MA 02215" -183779,USB-C Charging Cable,1,11.95,04/08/19 09:39,"312 Sunset St, Austin, TX 73301" -183780,AA Batteries (4-pack),1,3.84,04/05/19 16:54,"319 Sunset St, San Francisco, CA 94016" -,,,,, -183781,Apple Airpods Headphones,1,150,04/26/19 08:55,"937 Johnson St, Los Angeles, CA 90001" -183782,AA Batteries (4-pack),2,3.84,04/07/19 18:48,"536 11th St, San Francisco, CA 94016" -183783,AAA Batteries (4-pack),2,2.99,04/27/19 15:50,"427 Lakeview St, Dallas, TX 75001" -183784,AAA Batteries (4-pack),1,2.99,04/02/19 23:50,"49 Hickory St, Los Angeles, CA 90001" -183785,Flatscreen TV,1,300,04/13/19 13:35,"767 5th St, New York City, NY 10001" -183786,LG Dryer,1,600.0,04/23/19 09:49,"206 Maple St, New York City, NY 10001" -183787,Google Phone,1,600,04/03/19 20:22,"739 Ridge St, New York City, NY 10001" -183788,27in FHD Monitor,1,149.99,04/10/19 10:51,"42 Elm St, Los Angeles, CA 90001" -183789,27in FHD Monitor,1,149.99,04/01/19 16:35,"245 Jefferson St, Atlanta, GA 30301" -183790,LG Dryer,1,600.0,04/19/19 19:24,"582 6th St, Los Angeles, CA 90001" -183791,iPhone,1,700,04/16/19 16:54,"937 Madison St, Boston, MA 02215" -183792,Lightning Charging Cable,1,14.95,04/20/19 22:29,"561 8th St, Boston, MA 02215" -183793,Lightning Charging Cable,1,14.95,04/24/19 19:36,"938 Walnut St, San Francisco, CA 94016" -183794,AAA Batteries (4-pack),1,2.99,04/18/19 11:36,"828 North St, New York City, NY 10001" -183795,Lightning Charging Cable,1,14.95,04/18/19 19:08,"343 Main St, New York City, NY 10001" -183796,iPhone,1,700,04/06/19 20:56,"849 Jefferson St, Dallas, TX 75001" -183797,20in Monitor,1,109.99,04/21/19 17:01,"295 Main St, Los Angeles, CA 90001" -183798,34in Ultrawide Monitor,1,379.99,04/18/19 12:02,"691 Lakeview St, Los Angeles, CA 90001" -183799,AAA Batteries (4-pack),3,2.99,04/27/19 14:15,"117 Center St, San Francisco, CA 94016" -183800,Wired Headphones,1,11.99,04/09/19 01:39,"354 Johnson St, New York City, NY 10001" -183801,Wired Headphones,1,11.99,04/28/19 15:15,"847 Hickory St, New York City, NY 10001" -183802,Wired Headphones,1,11.99,04/04/19 07:07,"626 Ridge St, Boston, MA 02215" -183803,AAA Batteries (4-pack),2,2.99,04/10/19 13:37,"426 Wilson St, Austin, TX 73301" -183804,Apple Airpods Headphones,1,150,04/08/19 20:45,"942 Cherry St, New York City, NY 10001" -183805,Lightning Charging Cable,1,14.95,04/13/19 17:31,"974 Chestnut St, Los Angeles, CA 90001" -183806,Macbook Pro Laptop,1,1700,04/23/19 15:04,"572 River St, New York City, NY 10001" -183807,iPhone,1,700,04/15/19 12:30,"220 Maple St, Dallas, TX 75001" -183808,AAA Batteries (4-pack),1,2.99,04/24/19 12:36,"865 Meadow St, San Francisco, CA 94016" -183809,Apple Airpods Headphones,1,150,04/25/19 10:30,"794 Jefferson St, San Francisco, CA 94016" -183810,Lightning Charging Cable,1,14.95,04/17/19 22:49,"864 Willow St, Portland, OR 97035" -183811,Apple Airpods Headphones,1,150,04/01/19 21:15,"247 Lincoln St, Boston, MA 02215" -183812,AAA Batteries (4-pack),1,2.99,04/23/19 07:25,"279 Lakeview St, Dallas, TX 75001" -183813,Wired Headphones,1,11.99,05/01/19 00:39,"743 8th St, San Francisco, CA 94016" -183814,Macbook Pro Laptop,1,1700,04/10/19 12:36,"901 Center St, Portland, OR 97035" -183815,AAA Batteries (4-pack),1,2.99,04/24/19 03:48,"626 River St, San Francisco, CA 94016" -183816,ThinkPad Laptop,1,999.99,04/02/19 10:56,"311 River St, San Francisco, CA 94016" -183817,AA Batteries (4-pack),1,3.84,04/09/19 14:26,"211 Cherry St, San Francisco, CA 94016" -183818,USB-C Charging Cable,1,11.95,04/18/19 12:27,"970 Center St, Los Angeles, CA 90001" -183819,27in FHD Monitor,1,149.99,04/18/19 18:57,"275 Sunset St, Seattle, WA 98101" -183820,Wired Headphones,1,11.99,04/01/19 13:44,"419 Main St, Atlanta, GA 30301" -183821,USB-C Charging Cable,1,11.95,04/26/19 05:59,"800 Willow St, Atlanta, GA 30301" -183822,27in 4K Gaming Monitor,1,389.99,04/01/19 07:54,"108 Ridge St, Austin, TX 73301" -183823,Wired Headphones,1,11.99,04/06/19 19:29,"731 Madison St, Dallas, TX 75001" -183824,34in Ultrawide Monitor,1,379.99,04/25/19 19:15,"418 12th St, Seattle, WA 98101" -183825,USB-C Charging Cable,1,11.95,04/27/19 22:30,"306 4th St, New York City, NY 10001" -183826,27in 4K Gaming Monitor,1,389.99,04/10/19 13:37,"908 4th St, Seattle, WA 98101" -183827,Apple Airpods Headphones,1,150,04/06/19 21:37,"898 Willow St, Seattle, WA 98101" -183828,USB-C Charging Cable,1,11.95,04/24/19 16:42,"108 Meadow St, Dallas, TX 75001" -183829,Bose SoundSport Headphones,1,99.99,04/17/19 19:53,"868 Jackson St, Los Angeles, CA 90001" -183830,Macbook Pro Laptop,1,1700,04/25/19 16:04,"747 12th St, San Francisco, CA 94016" -183831,Google Phone,1,600,04/06/19 23:06,"251 2nd St, Austin, TX 73301" -183831,Bose SoundSport Headphones,1,99.99,04/06/19 23:06,"251 2nd St, Austin, TX 73301" -183832,ThinkPad Laptop,1,999.99,04/24/19 20:59,"224 2nd St, Boston, MA 02215" -183833,Vareebadd Phone,1,400,04/20/19 18:46,"59 Elm St, Portland, OR 97035" -183834,AAA Batteries (4-pack),1,2.99,04/02/19 21:12,"106 5th St, New York City, NY 10001" -183835,AAA Batteries (4-pack),1,2.99,04/10/19 08:46,"979 Center St, Dallas, TX 75001" -183836,AA Batteries (4-pack),1,3.84,04/09/19 14:36,"662 Wilson St, San Francisco, CA 94016" -183837,iPhone,1,700,04/04/19 09:17,"716 5th St, San Francisco, CA 94016" -183838,LG Washing Machine,1,600.0,04/24/19 19:57,"210 Church St, Austin, TX 73301" -183839,Bose SoundSport Headphones,1,99.99,04/05/19 09:39,"679 4th St, Dallas, TX 75001" -183840,Apple Airpods Headphones,1,150,04/23/19 17:03,"343 Center St, Los Angeles, CA 90001" -183841,Bose SoundSport Headphones,1,99.99,04/16/19 22:20,"786 Johnson St, New York City, NY 10001" -183842,Bose SoundSport Headphones,1,99.99,04/10/19 12:00,"799 Cedar St, Portland, OR 97035" -183843,Apple Airpods Headphones,1,150,04/18/19 21:27,"802 Chestnut St, San Francisco, CA 94016" -183844,Apple Airpods Headphones,1,150,04/04/19 14:53,"223 North St, Dallas, TX 75001" -183845,Lightning Charging Cable,2,14.95,04/13/19 20:37,"491 Cedar St, San Francisco, CA 94016" -183846,USB-C Charging Cable,1,11.95,04/27/19 10:51,"793 6th St, San Francisco, CA 94016" -183847,Lightning Charging Cable,1,14.95,04/26/19 03:01,"90 Main St, New York City, NY 10001" -183848,Apple Airpods Headphones,1,150,04/08/19 22:37,"917 Maple St, San Francisco, CA 94016" -183849,Lightning Charging Cable,1,14.95,04/12/19 17:03,"726 Forest St, Austin, TX 73301" -183850,AA Batteries (4-pack),1,3.84,04/29/19 11:45,"299 12th St, Austin, TX 73301" -183851,Bose SoundSport Headphones,1,99.99,04/23/19 23:41,"991 Wilson St, Seattle, WA 98101" -183852,Bose SoundSport Headphones,1,99.99,04/09/19 21:57,"321 Sunset St, Los Angeles, CA 90001" -183853,iPhone,1,700,04/09/19 18:28,"8 West St, Boston, MA 02215" -183854,Lightning Charging Cable,1,14.95,04/15/19 16:26,"729 Ridge St, Portland, ME 04101" -,,,,, -183855,AAA Batteries (4-pack),1,2.99,04/24/19 21:26,"139 13th St, Boston, MA 02215" -183856,AAA Batteries (4-pack),2,2.99,04/11/19 13:58,"11 Jackson St, Los Angeles, CA 90001" -183857,AA Batteries (4-pack),1,3.84,04/20/19 20:07,"460 Church St, San Francisco, CA 94016" -183858,Apple Airpods Headphones,1,150,04/11/19 21:54,"674 8th St, Atlanta, GA 30301" -183859,USB-C Charging Cable,2,11.95,04/16/19 14:35,"224 11th St, San Francisco, CA 94016" -183860,Lightning Charging Cable,2,14.95,04/03/19 11:51,"182 Johnson St, Seattle, WA 98101" -183861,Vareebadd Phone,1,400,04/29/19 09:04,"748 Ridge St, San Francisco, CA 94016" -183862,AA Batteries (4-pack),1,3.84,04/02/19 21:29,"793 Jackson St, Boston, MA 02215" -183863,iPhone,1,700,04/06/19 18:04,"117 14th St, New York City, NY 10001" -183864,AAA Batteries (4-pack),1,2.99,04/01/19 15:39,"820 Walnut St, New York City, NY 10001" -183865,AAA Batteries (4-pack),1,2.99,04/19/19 21:16,"680 Highland St, San Francisco, CA 94016" -183866,USB-C Charging Cable,1,11.95,04/21/19 09:25,"804 Cedar St, Boston, MA 02215" -183867,Bose SoundSport Headphones,1,99.99,04/13/19 11:41,"712 9th St, Boston, MA 02215" -183868,Google Phone,1,600,04/19/19 18:54,"975 Dogwood St, Seattle, WA 98101" -183868,AA Batteries (4-pack),1,3.84,04/19/19 18:54,"975 Dogwood St, Seattle, WA 98101" -183869,USB-C Charging Cable,1,11.95,04/17/19 23:13,"789 Center St, Seattle, WA 98101" -183870,AAA Batteries (4-pack),1,2.99,04/28/19 22:41,"334 Cedar St, Seattle, WA 98101" -183871,Bose SoundSport Headphones,1,99.99,04/16/19 12:24,"420 9th St, New York City, NY 10001" -183872,Apple Airpods Headphones,1,150,04/19/19 13:30,"432 Elm St, Los Angeles, CA 90001" -183873,USB-C Charging Cable,1,11.95,04/15/19 13:11,"243 Highland St, San Francisco, CA 94016" -183874,Wired Headphones,1,11.99,04/10/19 20:19,"234 6th St, San Francisco, CA 94016" -183875,AA Batteries (4-pack),2,3.84,04/26/19 16:28,"340 Highland St, Dallas, TX 75001" -183876,27in 4K Gaming Monitor,1,389.99,04/18/19 22:47,"631 2nd St, Dallas, TX 75001" -183877,34in Ultrawide Monitor,1,379.99,04/15/19 00:52,"330 Willow St, New York City, NY 10001" -183878,USB-C Charging Cable,1,11.95,04/23/19 15:44,"659 Sunset St, New York City, NY 10001" -183879,USB-C Charging Cable,1,11.95,04/20/19 07:03,"859 Cedar St, New York City, NY 10001" -183880,27in FHD Monitor,1,149.99,04/04/19 17:42,"71 Hill St, Los Angeles, CA 90001" -183881,Lightning Charging Cable,1,14.95,04/13/19 20:43,"24 9th St, Los Angeles, CA 90001" -183882,AAA Batteries (4-pack),1,2.99,04/06/19 18:47,"307 14th St, Los Angeles, CA 90001" -183883,Wired Headphones,1,11.99,04/15/19 23:21,"632 14th St, Austin, TX 73301" -183884,Apple Airpods Headphones,1,150,04/11/19 16:27,"681 Sunset St, Seattle, WA 98101" -183885,34in Ultrawide Monitor,1,379.99,04/16/19 15:54,"554 Dogwood St, Atlanta, GA 30301" -183886,Wired Headphones,1,11.99,04/08/19 05:27,"761 Willow St, Austin, TX 73301" -183887,AA Batteries (4-pack),1,3.84,04/27/19 08:47,"266 1st St, San Francisco, CA 94016" -183888,AA Batteries (4-pack),1,3.84,04/03/19 13:48,"388 Highland St, Seattle, WA 98101" -183889,Bose SoundSport Headphones,1,99.99,04/25/19 10:27,"912 River St, San Francisco, CA 94016" -183890,Google Phone,1,600,04/11/19 21:20,"73 Elm St, Los Angeles, CA 90001" -183891,Macbook Pro Laptop,1,1700,04/14/19 17:31,"705 Jackson St, San Francisco, CA 94016" -183892,Apple Airpods Headphones,1,150,04/12/19 21:23,"459 12th St, San Francisco, CA 94016" -183893,AAA Batteries (4-pack),1,2.99,04/07/19 19:03,"712 West St, Los Angeles, CA 90001" -183894,AA Batteries (4-pack),2,3.84,04/17/19 17:08,"321 Ridge St, San Francisco, CA 94016" -183895,ThinkPad Laptop,1,999.99,04/04/19 11:55,"556 Center St, Seattle, WA 98101" -183896,27in FHD Monitor,1,149.99,04/20/19 12:03,"892 Forest St, Boston, MA 02215" -183897,AAA Batteries (4-pack),1,2.99,04/09/19 21:13,"574 7th St, New York City, NY 10001" -183898,Bose SoundSport Headphones,1,99.99,04/02/19 20:44,"142 14th St, Los Angeles, CA 90001" -183899,27in FHD Monitor,1,149.99,04/01/19 10:40,"309 Park St, San Francisco, CA 94016" -183900,USB-C Charging Cable,1,11.95,04/10/19 06:43,"813 North St, San Francisco, CA 94016" -183901,USB-C Charging Cable,1,11.95,04/09/19 21:58,"95 14th St, Los Angeles, CA 90001" -183902,USB-C Charging Cable,1,11.95,04/15/19 18:18,"550 Cedar St, San Francisco, CA 94016" -183903,iPhone,1,700,04/08/19 01:03,"822 4th St, San Francisco, CA 94016" -183904,Apple Airpods Headphones,1,150,04/07/19 21:20,"466 8th St, New York City, NY 10001" -183905,USB-C Charging Cable,1,11.95,04/30/19 00:13,"212 Lincoln St, Los Angeles, CA 90001" -183906,USB-C Charging Cable,1,11.95,04/12/19 15:41,"983 1st St, San Francisco, CA 94016" -183907,Wired Headphones,1,11.99,04/19/19 17:38,"225 Cherry St, New York City, NY 10001" -183908,Wired Headphones,1,11.99,04/21/19 18:56,"125 Sunset St, New York City, NY 10001" -183909,Bose SoundSport Headphones,1,99.99,04/20/19 23:53,"855 Washington St, Boston, MA 02215" -183910,iPhone,1,700,04/17/19 08:22,"845 West St, San Francisco, CA 94016" -183911,iPhone,1,700,04/03/19 16:50,"159 12th St, Atlanta, GA 30301" -183912,USB-C Charging Cable,1,11.95,04/07/19 16:00,"63 Elm St, New York City, NY 10001" -183913,AA Batteries (4-pack),1,3.84,04/24/19 00:55,"968 Park St, Los Angeles, CA 90001" -183914,34in Ultrawide Monitor,1,379.99,04/20/19 23:47,"713 Meadow St, Seattle, WA 98101" -183915,AAA Batteries (4-pack),1,2.99,04/29/19 06:32,"630 Adams St, Los Angeles, CA 90001" -183916,34in Ultrawide Monitor,1,379.99,04/02/19 10:40,"545 Hill St, Portland, OR 97035" -183917,Apple Airpods Headphones,1,150,04/09/19 09:55,"453 Highland St, Seattle, WA 98101" -183918,27in 4K Gaming Monitor,1,389.99,04/19/19 16:25,"737 Hill St, Atlanta, GA 30301" -183919,Wired Headphones,1,11.99,04/10/19 14:21,"286 Sunset St, New York City, NY 10001" -183920,27in 4K Gaming Monitor,1,389.99,04/15/19 13:27,"599 South St, Boston, MA 02215" -183921,AA Batteries (4-pack),1,3.84,04/24/19 12:50,"380 8th St, Los Angeles, CA 90001" -183922,AA Batteries (4-pack),1,3.84,04/02/19 14:01,"838 Meadow St, Austin, TX 73301" -183923,Flatscreen TV,1,300,04/11/19 15:48,"201 14th St, Seattle, WA 98101" -183924,AA Batteries (4-pack),1,3.84,04/30/19 21:58,"863 2nd St, New York City, NY 10001" -183925,AAA Batteries (4-pack),1,2.99,04/22/19 23:55,"757 North St, San Francisco, CA 94016" -183926,USB-C Charging Cable,1,11.95,04/14/19 06:17,"295 Chestnut St, Dallas, TX 75001" -183927,AAA Batteries (4-pack),2,2.99,04/21/19 19:53,"73 Park St, San Francisco, CA 94016" -183928,Vareebadd Phone,1,400,04/25/19 21:44,"180 1st St, San Francisco, CA 94016" -183929,Wired Headphones,1,11.99,04/28/19 10:19,"585 2nd St, Portland, ME 04101" -183930,AA Batteries (4-pack),1,3.84,04/02/19 19:56,"311 8th St, Atlanta, GA 30301" -183931,Wired Headphones,1,11.99,04/26/19 16:04,"579 7th St, Dallas, TX 75001" -183932,AAA Batteries (4-pack),4,2.99,04/17/19 16:01,"805 4th St, Austin, TX 73301" -183933,Google Phone,1,600,04/06/19 14:07,"223 Main St, Seattle, WA 98101" -183934,20in Monitor,1,109.99,04/21/19 12:14,"253 Dogwood St, Portland, OR 97035" -183935,Apple Airpods Headphones,1,150,04/18/19 10:25,"182 Forest St, New York City, NY 10001" -183936,AA Batteries (4-pack),1,3.84,04/24/19 21:51,"770 South St, San Francisco, CA 94016" -183937,iPhone,1,700,04/09/19 18:17,"138 1st St, Boston, MA 02215" -183938,Macbook Pro Laptop,1,1700,04/26/19 09:09,"932 Dogwood St, Los Angeles, CA 90001" -183939,Wired Headphones,1,11.99,04/06/19 13:51,"866 Pine St, Los Angeles, CA 90001" -183940,AAA Batteries (4-pack),1,2.99,04/07/19 18:54,"744 Adams St, San Francisco, CA 94016" -183941,Lightning Charging Cable,3,14.95,04/23/19 18:10,"955 Lake St, San Francisco, CA 94016" -183942,27in 4K Gaming Monitor,1,389.99,04/19/19 21:34,"458 Willow St, San Francisco, CA 94016" -183943,Wired Headphones,1,11.99,04/06/19 15:03,"93 Jefferson St, Portland, ME 04101" -183944,34in Ultrawide Monitor,1,379.99,04/30/19 19:33,"693 Spruce St, Dallas, TX 75001" -183945,Apple Airpods Headphones,1,150,04/05/19 20:49,"331 Sunset St, Portland, OR 97035" -183946,Lightning Charging Cable,1,14.95,04/16/19 15:48,"110 West St, Dallas, TX 75001" -183947,AAA Batteries (4-pack),4,2.99,04/28/19 22:23,"893 1st St, Boston, MA 02215" -183948,Bose SoundSport Headphones,1,99.99,04/26/19 04:34,"325 Hickory St, San Francisco, CA 94016" -183949,Lightning Charging Cable,1,14.95,04/25/19 17:57,"221 Maple St, Seattle, WA 98101" -183950,AAA Batteries (4-pack),2,2.99,04/01/19 20:16,"240 Johnson St, Los Angeles, CA 90001" -183951,Lightning Charging Cable,1,14.95,04/29/19 11:32,"884 Spruce St, Boston, MA 02215" -183952,USB-C Charging Cable,1,11.95,04/07/19 12:17,"147 8th St, Dallas, TX 75001" -183953,Apple Airpods Headphones,1,150,04/14/19 18:24,"611 Church St, Los Angeles, CA 90001" -183954,Bose SoundSport Headphones,1,99.99,04/13/19 05:15,"311 Park St, San Francisco, CA 94016" -183955,USB-C Charging Cable,1,11.95,04/18/19 09:57,"995 Forest St, Los Angeles, CA 90001" -183956,27in 4K Gaming Monitor,1,389.99,04/30/19 08:41,"767 9th St, San Francisco, CA 94016" -183957,Vareebadd Phone,1,400,04/06/19 15:32,"9 Cedar St, Atlanta, GA 30301" -183958,AAA Batteries (4-pack),1,2.99,04/19/19 18:46,"770 Church St, New York City, NY 10001" -183959,USB-C Charging Cable,1,11.95,04/02/19 12:27,"980 Highland St, Seattle, WA 98101" -183960,Lightning Charging Cable,1,14.95,04/24/19 13:04,"128 2nd St, Los Angeles, CA 90001" -183961,27in FHD Monitor,1,149.99,04/10/19 11:13,"38 South St, San Francisco, CA 94016" -183962,AAA Batteries (4-pack),1,2.99,04/13/19 21:04,"980 8th St, Los Angeles, CA 90001" -183963,USB-C Charging Cable,1,11.95,04/25/19 01:52,"334 13th St, New York City, NY 10001" -183964,Apple Airpods Headphones,1,150,04/08/19 09:48,"626 Wilson St, San Francisco, CA 94016" -183965,Wired Headphones,1,11.99,04/12/19 20:19,"770 South St, Atlanta, GA 30301" -183966,Lightning Charging Cable,2,14.95,04/03/19 12:21,"421 Jefferson St, Seattle, WA 98101" -183967,Lightning Charging Cable,1,14.95,04/28/19 18:30,"938 Highland St, San Francisco, CA 94016" -183968,AA Batteries (4-pack),1,3.84,04/26/19 17:06,"786 Jefferson St, Los Angeles, CA 90001" -183969,AA Batteries (4-pack),1,3.84,04/13/19 12:14,"977 Main St, Los Angeles, CA 90001" -183970,Lightning Charging Cable,1,14.95,04/28/19 19:32,"662 Cedar St, Boston, MA 02215" -183971,iPhone,1,700,04/14/19 11:43,"743 4th St, Austin, TX 73301" -183971,Vareebadd Phone,1,400,04/14/19 11:43,"743 4th St, Austin, TX 73301" -183972,Lightning Charging Cable,1,14.95,04/03/19 14:28,"55 1st St, New York City, NY 10001" -183973,Macbook Pro Laptop,1,1700,04/05/19 15:59,"171 Jackson St, Los Angeles, CA 90001" -183974,AAA Batteries (4-pack),1,2.99,04/02/19 00:31,"387 Chestnut St, Dallas, TX 75001" -183975,AA Batteries (4-pack),1,3.84,04/27/19 21:07,"831 13th St, San Francisco, CA 94016" -183976,27in 4K Gaming Monitor,1,389.99,04/19/19 07:32,"395 Walnut St, San Francisco, CA 94016" -183977,Bose SoundSport Headphones,1,99.99,04/18/19 15:22,"395 Walnut St, Atlanta, GA 30301" -183978,Bose SoundSport Headphones,1,99.99,04/11/19 06:21,"927 6th St, San Francisco, CA 94016" -183979,20in Monitor,1,109.99,04/11/19 17:45,"849 Jefferson St, Los Angeles, CA 90001" -183980,Google Phone,1,600,04/27/19 14:01,"298 Wilson St, San Francisco, CA 94016" -183981,Macbook Pro Laptop,1,1700,04/29/19 14:18,"353 Adams St, Los Angeles, CA 90001" -183982,Wired Headphones,1,11.99,04/11/19 18:09,"120 Lake St, Los Angeles, CA 90001" -183983,AAA Batteries (4-pack),1,2.99,04/01/19 09:00,"96 Wilson St, Portland, OR 97035" -183984,20in Monitor,1,109.99,04/24/19 17:00,"18 1st St, San Francisco, CA 94016" -183985,iPhone,1,700,04/17/19 21:01,"534 Jackson St, Dallas, TX 75001" -183986,Wired Headphones,2,11.99,04/04/19 22:57,"410 2nd St, San Francisco, CA 94016" -183987,AAA Batteries (4-pack),2,2.99,04/04/19 18:43,"287 4th St, New York City, NY 10001" -183988,Lightning Charging Cable,1,14.95,04/28/19 09:57,"171 Meadow St, Austin, TX 73301" -183989,Wired Headphones,1,11.99,04/07/19 14:41,"217 Washington St, San Francisco, CA 94016" -183990,USB-C Charging Cable,1,11.95,04/29/19 23:15,"42 Adams St, San Francisco, CA 94016" -183991,AA Batteries (4-pack),2,3.84,04/27/19 16:44,"920 River St, San Francisco, CA 94016" -183992,Lightning Charging Cable,1,14.95,04/21/19 10:54,"91 North St, New York City, NY 10001" -183993,iPhone,1,700,04/11/19 14:46,"547 Highland St, San Francisco, CA 94016" -183994,34in Ultrawide Monitor,1,379.99,04/04/19 18:56,"441 11th St, San Francisco, CA 94016" -183995,20in Monitor,1,109.99,04/16/19 20:53,"694 Jackson St, Seattle, WA 98101" -183996,Apple Airpods Headphones,1,150,04/07/19 16:38,"900 Chestnut St, New York City, NY 10001" -183997,Wired Headphones,1,11.99,04/13/19 15:23,"536 Willow St, San Francisco, CA 94016" -183998,Bose SoundSport Headphones,1,99.99,04/19/19 09:34,"969 4th St, Seattle, WA 98101" -183999,Lightning Charging Cable,1,14.95,04/26/19 17:16,"330 Madison St, San Francisco, CA 94016" -184000,Macbook Pro Laptop,1,1700,04/05/19 11:09,"13 Ridge St, New York City, NY 10001" -184001,27in 4K Gaming Monitor,1,389.99,04/03/19 11:49,"479 2nd St, San Francisco, CA 94016" -184002,AA Batteries (4-pack),1,3.84,04/28/19 14:19,"31 Ridge St, Los Angeles, CA 90001" -184003,Lightning Charging Cable,1,14.95,04/26/19 10:45,"649 12th St, New York City, NY 10001" -184004,Bose SoundSport Headphones,1,99.99,04/03/19 16:47,"392 Lake St, San Francisco, CA 94016" -184005,34in Ultrawide Monitor,1,379.99,04/08/19 15:46,"305 6th St, San Francisco, CA 94016" -184006,Bose SoundSport Headphones,1,99.99,04/18/19 02:57,"983 Sunset St, Atlanta, GA 30301" -184007,Google Phone,1,600,04/05/19 11:18,"950 13th St, San Francisco, CA 94016" -184008,Apple Airpods Headphones,1,150,04/04/19 14:31,"933 Spruce St, Boston, MA 02215" -184009,USB-C Charging Cable,1,11.95,04/14/19 21:25,"415 Church St, Atlanta, GA 30301" -184010,USB-C Charging Cable,1,11.95,04/04/19 17:10,"301 Adams St, Los Angeles, CA 90001" -184011,Bose SoundSport Headphones,1,99.99,04/12/19 19:33,"955 Chestnut St, Boston, MA 02215" -184012,Apple Airpods Headphones,1,150,04/11/19 09:07,"548 Highland St, San Francisco, CA 94016" -184013,Lightning Charging Cable,1,14.95,04/02/19 12:54,"928 South St, New York City, NY 10001" -184014,34in Ultrawide Monitor,1,379.99,04/23/19 12:30,"259 14th St, Boston, MA 02215" -184015,Apple Airpods Headphones,1,150,04/21/19 17:46,"85 13th St, Atlanta, GA 30301" -184016,AA Batteries (4-pack),1,3.84,04/13/19 23:58,"690 2nd St, New York City, NY 10001" -184017,AA Batteries (4-pack),1,3.84,04/12/19 12:40,"900 Madison St, San Francisco, CA 94016" -184018,USB-C Charging Cable,1,11.95,04/07/19 15:42,"722 9th St, San Francisco, CA 94016" -184019,USB-C Charging Cable,1,11.95,04/18/19 22:50,"458 Sunset St, Portland, OR 97035" -184020,USB-C Charging Cable,1,11.95,04/18/19 13:01,"738 West St, Boston, MA 02215" -184021,Google Phone,1,600,04/29/19 15:37,"168 Elm St, Boston, MA 02215" -184021,USB-C Charging Cable,1,11.95,04/29/19 15:37,"168 Elm St, Boston, MA 02215" -184022,Google Phone,1,600,04/13/19 08:06,"437 Spruce St, Los Angeles, CA 90001" -184022,USB-C Charging Cable,2,11.95,04/13/19 08:06,"437 Spruce St, Los Angeles, CA 90001" -184023,Apple Airpods Headphones,1,150,04/17/19 06:11,"913 7th St, Portland, ME 04101" -184024,Wired Headphones,1,11.99,04/08/19 11:19,"815 Adams St, Austin, TX 73301" -184025,LG Washing Machine,1,600.0,04/09/19 16:07,"986 Spruce St, Dallas, TX 75001" -184026,AA Batteries (4-pack),2,3.84,04/14/19 17:19,"799 Highland St, San Francisco, CA 94016" -184027,20in Monitor,1,109.99,04/01/19 14:28,"126 Dogwood St, Seattle, WA 98101" -184028,AAA Batteries (4-pack),2,2.99,04/09/19 19:39,"471 North St, San Francisco, CA 94016" -184029,AA Batteries (4-pack),2,3.84,04/26/19 14:16,"334 10th St, Los Angeles, CA 90001" -184030,Apple Airpods Headphones,1,150,04/16/19 08:54,"687 Lake St, San Francisco, CA 94016" -184031,AAA Batteries (4-pack),2,2.99,04/15/19 17:16,"92 Highland St, New York City, NY 10001" -184032,Flatscreen TV,1,300,04/11/19 04:56,"241 Johnson St, Los Angeles, CA 90001" -184033,Apple Airpods Headphones,1,150,04/09/19 23:31,"309 Chestnut St, Atlanta, GA 30301" -184034,Flatscreen TV,1,300,04/24/19 22:00,"597 Willow St, Seattle, WA 98101" -184035,AAA Batteries (4-pack),1,2.99,04/05/19 22:57,"229 Hill St, San Francisco, CA 94016" -184036,27in 4K Gaming Monitor,1,389.99,04/05/19 18:56,"538 Church St, New York City, NY 10001" -184037,AAA Batteries (4-pack),1,2.99,04/03/19 16:08,"482 Walnut St, Dallas, TX 75001" -184038,AAA Batteries (4-pack),2,2.99,04/06/19 09:45,"478 Adams St, Los Angeles, CA 90001" -184039,Flatscreen TV,1,300,04/20/19 09:58,"952 14th St, Seattle, WA 98101" -184040,Lightning Charging Cable,2,14.95,04/09/19 14:40,"704 Hickory St, Dallas, TX 75001" -184041,Flatscreen TV,1,300,04/18/19 13:08,"607 Wilson St, New York City, NY 10001" -184042,AAA Batteries (4-pack),2,2.99,04/20/19 06:01,"514 Ridge St, Dallas, TX 75001" -184043,Macbook Pro Laptop,1,1700,04/05/19 12:15,"310 Main St, Austin, TX 73301" -184044,Lightning Charging Cable,1,14.95,04/20/19 13:55,"658 6th St, Boston, MA 02215" -184045,27in FHD Monitor,1,149.99,04/11/19 07:04,"1 7th St, Los Angeles, CA 90001" -184046,USB-C Charging Cable,1,11.95,04/07/19 23:52,"591 4th St, Boston, MA 02215" -184047,Wired Headphones,1,11.99,04/15/19 10:46,"574 12th St, Boston, MA 02215" -184048,Lightning Charging Cable,1,14.95,04/01/19 13:59,"98 Park St, Portland, OR 97035" -184049,USB-C Charging Cable,1,11.95,04/15/19 14:55,"520 Highland St, Los Angeles, CA 90001" -184050,Bose SoundSport Headphones,1,99.99,04/22/19 18:50,"60 11th St, San Francisco, CA 94016" -184051,20in Monitor,1,109.99,04/18/19 10:52,"982 South St, Boston, MA 02215" -184052,Lightning Charging Cable,1,14.95,04/26/19 14:02,"755 Church St, San Francisco, CA 94016" -184053,Bose SoundSport Headphones,1,99.99,04/08/19 12:14,"168 West St, Boston, MA 02215" -184054,Google Phone,1,600,04/01/19 10:31,"425 Church St, Atlanta, GA 30301" -184054,USB-C Charging Cable,1,11.95,04/01/19 10:31,"425 Church St, Atlanta, GA 30301" -184055,iPhone,1,700,04/30/19 20:08,"743 6th St, Los Angeles, CA 90001" -184055,Lightning Charging Cable,1,14.95,04/30/19 20:08,"743 6th St, Los Angeles, CA 90001" -184056,Apple Airpods Headphones,1,150,04/18/19 17:23,"544 Forest St, San Francisco, CA 94016" -184057,Apple Airpods Headphones,1,150,04/15/19 19:27,"447 14th St, Portland, OR 97035" -184058,Google Phone,1,600,04/13/19 17:19,"165 Walnut St, New York City, NY 10001" -184059,Wired Headphones,1,11.99,04/02/19 14:25,"640 11th St, Austin, TX 73301" -184060,27in FHD Monitor,1,149.99,04/24/19 20:04,"211 Adams St, Seattle, WA 98101" -184061,AA Batteries (4-pack),1,3.84,04/27/19 12:10,"892 Chestnut St, New York City, NY 10001" -184062,Wired Headphones,1,11.99,04/19/19 14:35,"681 Meadow St, Dallas, TX 75001" -184063,AA Batteries (4-pack),2,3.84,04/23/19 09:04,"541 Chestnut St, Atlanta, GA 30301" -184064,Lightning Charging Cable,1,14.95,04/05/19 23:59,"994 Forest St, Los Angeles, CA 90001" -184065,34in Ultrawide Monitor,2,379.99,04/26/19 10:30,"859 14th St, Boston, MA 02215" -184066,Apple Airpods Headphones,1,150,04/12/19 17:07,"1 Johnson St, San Francisco, CA 94016" -184067,Wired Headphones,1,11.99,04/01/19 06:18,"446 Lakeview St, San Francisco, CA 94016" -184068,Bose SoundSport Headphones,1,99.99,04/04/19 08:45,"621 Willow St, Dallas, TX 75001" -184069,Wired Headphones,1,11.99,04/18/19 07:02,"844 Dogwood St, San Francisco, CA 94016" -184070,USB-C Charging Cable,1,11.95,04/16/19 22:40,"704 Jackson St, San Francisco, CA 94016" -184071,Macbook Pro Laptop,1,1700,04/07/19 21:17,"710 Willow St, Dallas, TX 75001" -184072,Bose SoundSport Headphones,1,99.99,04/04/19 20:07,"812 Wilson St, Atlanta, GA 30301" -184073,Apple Airpods Headphones,1,150,04/27/19 08:00,"925 South St, Austin, TX 73301" -184074,AAA Batteries (4-pack),1,2.99,04/12/19 10:47,"544 1st St, San Francisco, CA 94016" -184075,AAA Batteries (4-pack),1,2.99,04/03/19 20:20,"241 11th St, Austin, TX 73301" -184076,Lightning Charging Cable,1,14.95,04/17/19 18:22,"752 Chestnut St, Los Angeles, CA 90001" -184077,AAA Batteries (4-pack),1,2.99,04/03/19 13:22,"203 West St, New York City, NY 10001" -184078,Apple Airpods Headphones,1,150,04/18/19 20:24,"950 4th St, San Francisco, CA 94016" -184079,Wired Headphones,1,11.99,04/19/19 16:51,"826 12th St, San Francisco, CA 94016" -184080,Wired Headphones,1,11.99,04/11/19 13:19,"509 Main St, Portland, OR 97035" -184081,AA Batteries (4-pack),1,3.84,04/15/19 11:07,"554 Highland St, Dallas, TX 75001" -184082,LG Dryer,1,600.0,04/07/19 17:08,"849 Wilson St, San Francisco, CA 94016" -184083,Wired Headphones,1,11.99,04/27/19 21:21,"575 Johnson St, Seattle, WA 98101" -184084,Google Phone,1,600,04/02/19 18:00,"630 Hill St, Boston, MA 02215" -184085,AA Batteries (4-pack),1,3.84,04/11/19 14:13,"505 Spruce St, Dallas, TX 75001" -184086,Apple Airpods Headphones,1,150,04/23/19 20:24,"318 Maple St, Austin, TX 73301" -184087,Flatscreen TV,1,300,04/14/19 21:59,"613 Dogwood St, Portland, OR 97035" -184088,Vareebadd Phone,1,400,04/30/19 13:10,"191 10th St, Boston, MA 02215" -184089,Bose SoundSport Headphones,1,99.99,04/18/19 13:57,"317 1st St, San Francisco, CA 94016" -184090,Lightning Charging Cable,1,14.95,04/17/19 17:51,"90 2nd St, New York City, NY 10001" -184091,USB-C Charging Cable,1,11.95,04/05/19 21:12,"738 Lake St, Boston, MA 02215" -184092,Apple Airpods Headphones,1,150,04/14/19 12:42,"682 4th St, San Francisco, CA 94016" -184093,20in Monitor,1,109.99,04/24/19 23:58,"150 6th St, New York City, NY 10001" -184094,Flatscreen TV,1,300,04/18/19 17:01,"596 Pine St, Portland, OR 97035" -184095,AA Batteries (4-pack),1,3.84,04/18/19 21:38,"881 12th St, Los Angeles, CA 90001" -184096,USB-C Charging Cable,1,11.95,04/19/19 23:40,"55 Highland St, San Francisco, CA 94016" -184097,Google Phone,1,600,04/12/19 13:00,"485 Highland St, Portland, OR 97035" -184097,Wired Headphones,1,11.99,04/12/19 13:00,"485 Highland St, Portland, OR 97035" -184098,AA Batteries (4-pack),1,3.84,04/21/19 03:50,"896 River St, Los Angeles, CA 90001" -184099,Wired Headphones,1,11.99,04/27/19 13:52,"615 14th St, Los Angeles, CA 90001" -184100,Macbook Pro Laptop,1,1700,04/10/19 21:56,"543 9th St, New York City, NY 10001" -184101,AAA Batteries (4-pack),3,2.99,04/28/19 15:18,"975 Church St, San Francisco, CA 94016" -184102,Lightning Charging Cable,1,14.95,04/04/19 10:51,"508 Highland St, Seattle, WA 98101" -184103,iPhone,1,700,04/05/19 00:17,"226 1st St, Los Angeles, CA 90001" -184104,Bose SoundSport Headphones,1,99.99,04/06/19 22:38,"674 Hill St, New York City, NY 10001" -184105,USB-C Charging Cable,2,11.95,04/23/19 19:17,"755 Dogwood St, Atlanta, GA 30301" -184106,iPhone,1,700,04/11/19 09:15,"255 Washington St, Seattle, WA 98101" -184107,AA Batteries (4-pack),1,3.84,04/15/19 10:40,"118 12th St, Los Angeles, CA 90001" -184108,20in Monitor,1,109.99,04/09/19 17:43,"979 Wilson St, New York City, NY 10001" -184109,AA Batteries (4-pack),1,3.84,04/09/19 13:31,"109 Walnut St, San Francisco, CA 94016" -184110,Lightning Charging Cable,1,14.95,04/28/19 20:47,"231 2nd St, San Francisco, CA 94016" -184111,Flatscreen TV,1,300,04/02/19 13:24,"435 6th St, Dallas, TX 75001" -184112,USB-C Charging Cable,1,11.95,04/10/19 13:47,"943 Center St, San Francisco, CA 94016" -184113,27in FHD Monitor,1,149.99,04/10/19 16:18,"826 Walnut St, San Francisco, CA 94016" -184114,Lightning Charging Cable,1,14.95,04/27/19 23:36,"379 Lakeview St, San Francisco, CA 94016" -184115,USB-C Charging Cable,1,11.95,04/12/19 14:19,"876 6th St, San Francisco, CA 94016" -184116,Google Phone,1,600,04/07/19 10:21,"640 Church St, New York City, NY 10001" -184117,USB-C Charging Cable,1,11.95,04/17/19 15:04,"591 5th St, Los Angeles, CA 90001" -184118,Lightning Charging Cable,1,14.95,04/27/19 11:12,"266 Main St, Seattle, WA 98101" -184119,Lightning Charging Cable,1,14.95,04/24/19 18:25,"4 7th St, Boston, MA 02215" -184120,AAA Batteries (4-pack),1,2.99,04/17/19 07:40,"513 West St, Seattle, WA 98101" -184121,AA Batteries (4-pack),1,3.84,04/05/19 19:25,"724 Lincoln St, Los Angeles, CA 90001" -184122,AA Batteries (4-pack),1,3.84,04/26/19 20:58,"637 7th St, Los Angeles, CA 90001" -184123,iPhone,1,700,04/06/19 10:40,"832 1st St, Seattle, WA 98101" -184124,Google Phone,1,600,04/05/19 16:12,"439 4th St, Los Angeles, CA 90001" -184125,34in Ultrawide Monitor,1,379.99,04/09/19 12:46,"890 Hickory St, Los Angeles, CA 90001" -184126,Flatscreen TV,1,300,04/14/19 21:16,"2 Elm St, New York City, NY 10001" -184127,iPhone,1,700,04/11/19 08:18,"612 Lakeview St, Seattle, WA 98101" -184128,27in 4K Gaming Monitor,1,389.99,04/21/19 20:27,"919 Pine St, Boston, MA 02215" -184129,AAA Batteries (4-pack),1,2.99,04/10/19 22:57,"473 Adams St, San Francisco, CA 94016" -184130,Lightning Charging Cable,1,14.95,04/09/19 21:40,"264 Washington St, San Francisco, CA 94016" -184131,27in 4K Gaming Monitor,1,389.99,04/13/19 16:09,"543 Main St, Seattle, WA 98101" -184132,Lightning Charging Cable,1,14.95,04/04/19 13:21,"990 Adams St, San Francisco, CA 94016" -184133,USB-C Charging Cable,1,11.95,04/17/19 11:49,"988 Washington St, Los Angeles, CA 90001" -184134,AAA Batteries (4-pack),1,2.99,04/09/19 13:35,"697 Pine St, New York City, NY 10001" -184135,AAA Batteries (4-pack),2,2.99,04/06/19 15:48,"206 Hickory St, Boston, MA 02215" -184136,Lightning Charging Cable,1,14.95,04/17/19 17:52,"450 Hill St, Dallas, TX 75001" -184137,Macbook Pro Laptop,1,1700,04/23/19 15:43,"689 Center St, New York City, NY 10001" -184138,27in FHD Monitor,1,149.99,04/27/19 20:17,"670 Meadow St, San Francisco, CA 94016" -184139,iPhone,1,700,04/03/19 12:16,"580 Dogwood St, San Francisco, CA 94016" -184140,LG Washing Machine,1,600.0,04/09/19 22:00,"810 Walnut St, San Francisco, CA 94016" -184141,iPhone,1,700,04/11/19 07:03,"818 Wilson St, Boston, MA 02215" -184142,AAA Batteries (4-pack),1,2.99,04/15/19 18:23,"239 Pine St, Boston, MA 02215" -184143,Lightning Charging Cable,1,14.95,04/09/19 13:47,"439 Forest St, Austin, TX 73301" -184144,Wired Headphones,1,11.99,04/26/19 15:27,"186 Johnson St, Los Angeles, CA 90001" -184145,Lightning Charging Cable,1,14.95,04/16/19 13:33,"253 Park St, Boston, MA 02215" -184145,USB-C Charging Cable,1,11.95,04/16/19 13:33,"253 Park St, Boston, MA 02215" -184146,Bose SoundSport Headphones,1,99.99,04/12/19 21:07,"406 West St, New York City, NY 10001" -184147,AAA Batteries (4-pack),1,2.99,04/08/19 23:18,"311 Park St, Dallas, TX 75001" -184148,27in FHD Monitor,1,149.99,04/29/19 15:58,"583 Maple St, Dallas, TX 75001" -184149,AA Batteries (4-pack),4,3.84,04/21/19 22:20,"255 Adams St, Los Angeles, CA 90001" -184150,Wired Headphones,1,11.99,04/06/19 08:41,"882 Center St, Dallas, TX 75001" -184151,34in Ultrawide Monitor,1,379.99,04/13/19 13:29,"162 Walnut St, San Francisco, CA 94016" -184152,Wired Headphones,2,11.99,04/29/19 14:51,"680 Dogwood St, New York City, NY 10001" -184153,Lightning Charging Cable,1,14.95,04/27/19 14:42,"961 Willow St, Dallas, TX 75001" -184154,Google Phone,1,600,04/06/19 12:27,"821 Walnut St, Los Angeles, CA 90001" -184154,USB-C Charging Cable,1,11.95,04/06/19 12:27,"821 Walnut St, Los Angeles, CA 90001" -184155,USB-C Charging Cable,1,11.95,04/21/19 20:00,"154 9th St, Dallas, TX 75001" -184156,20in Monitor,1,109.99,04/20/19 19:55,"559 Chestnut St, New York City, NY 10001" -184157,AA Batteries (4-pack),2,3.84,04/16/19 13:42,"599 Maple St, San Francisco, CA 94016" -184157,Bose SoundSport Headphones,1,99.99,04/16/19 13:42,"599 Maple St, San Francisco, CA 94016" -184158,AA Batteries (4-pack),1,3.84,04/14/19 12:27,"447 9th St, San Francisco, CA 94016" -184159,USB-C Charging Cable,1,11.95,04/16/19 20:28,"185 6th St, Boston, MA 02215" -184160,AAA Batteries (4-pack),1,2.99,04/22/19 17:32,"246 Dogwood St, San Francisco, CA 94016" -184161,iPhone,1,700,04/04/19 22:12,"649 Washington St, Portland, OR 97035" -184162,Flatscreen TV,1,300,04/18/19 15:41,"711 Ridge St, Los Angeles, CA 90001" -184163,Lightning Charging Cable,1,14.95,04/08/19 23:20,"467 Elm St, San Francisco, CA 94016" -184164,AA Batteries (4-pack),1,3.84,04/04/19 17:23,"595 14th St, Dallas, TX 75001" -184165,USB-C Charging Cable,1,11.95,04/17/19 21:34,"87 Willow St, Los Angeles, CA 90001" -184166,AA Batteries (4-pack),1,3.84,04/07/19 14:12,"252 13th St, Atlanta, GA 30301" -184166,27in FHD Monitor,1,149.99,04/07/19 14:12,"252 13th St, Atlanta, GA 30301" -184167,Wired Headphones,1,11.99,04/04/19 18:56,"601 Hickory St, San Francisco, CA 94016" -184168,Bose SoundSport Headphones,1,99.99,04/16/19 17:37,"58 Meadow St, Austin, TX 73301" -184169,LG Washing Machine,1,600.0,04/27/19 20:14,"37 Church St, Los Angeles, CA 90001" -184170,Lightning Charging Cable,2,14.95,04/14/19 21:53,"542 South St, Seattle, WA 98101" -184171,27in FHD Monitor,1,149.99,04/27/19 11:04,"495 Jefferson St, Atlanta, GA 30301" -184172,Google Phone,1,600,04/26/19 14:50,"900 Wilson St, Atlanta, GA 30301" -184172,USB-C Charging Cable,1,11.95,04/26/19 14:50,"900 Wilson St, Atlanta, GA 30301" -184173,AAA Batteries (4-pack),1,2.99,04/16/19 19:49,"334 Highland St, New York City, NY 10001" -184174,Lightning Charging Cable,1,14.95,04/13/19 17:33,"658 West St, Boston, MA 02215" -184175,ThinkPad Laptop,1,999.99,04/25/19 13:29,"6 Johnson St, New York City, NY 10001" -184176,AAA Batteries (4-pack),1,2.99,04/16/19 12:47,"231 9th St, Atlanta, GA 30301" -184177,Bose SoundSport Headphones,1,99.99,04/26/19 16:30,"877 Sunset St, Boston, MA 02215" -184178,Bose SoundSport Headphones,1,99.99,04/01/19 22:12,"192 Lake St, Boston, MA 02215" -184179,Apple Airpods Headphones,1,150,04/02/19 16:44,"426 4th St, Dallas, TX 75001" -184180,27in FHD Monitor,1,149.99,04/13/19 13:22,"380 Lakeview St, Boston, MA 02215" -184181,USB-C Charging Cable,1,11.95,04/17/19 13:22,"207 Church St, San Francisco, CA 94016" -184182,Wired Headphones,1,11.99,04/08/19 10:04,"786 Highland St, San Francisco, CA 94016" -184183,Bose SoundSport Headphones,1,99.99,04/18/19 15:31,"176 Meadow St, Atlanta, GA 30301" -184184,Apple Airpods Headphones,1,150,04/16/19 11:14,"530 Highland St, Austin, TX 73301" -184185,AAA Batteries (4-pack),1,2.99,04/22/19 11:39,"354 Sunset St, San Francisco, CA 94016" -184186,AA Batteries (4-pack),2,3.84,04/22/19 18:35,"933 Walnut St, Boston, MA 02215" -184187,Apple Airpods Headphones,1,150,04/25/19 19:09,"411 1st St, Los Angeles, CA 90001" -184188,Bose SoundSport Headphones,1,99.99,04/01/19 20:10,"531 Hill St, San Francisco, CA 94016" -184189,Google Phone,1,600,04/10/19 18:44,"158 1st St, Atlanta, GA 30301" -184190,Lightning Charging Cable,1,14.95,04/01/19 12:21,"784 4th St, Boston, MA 02215" -184191,Apple Airpods Headphones,1,150,04/18/19 15:13,"338 13th St, Portland, OR 97035" -184192,Wired Headphones,1,11.99,04/13/19 16:49,"504 Pine St, San Francisco, CA 94016" -184193,27in FHD Monitor,1,149.99,04/29/19 16:48,"225 9th St, San Francisco, CA 94016" -184194,ThinkPad Laptop,1,999.99,04/08/19 22:07,"447 Spruce St, Atlanta, GA 30301" -184195,Wired Headphones,1,11.99,04/10/19 22:38,"982 12th St, Los Angeles, CA 90001" -184196,Macbook Pro Laptop,1,1700,04/17/19 22:35,"634 Ridge St, Los Angeles, CA 90001" -184197,Google Phone,1,600,04/27/19 15:22,"109 Cherry St, New York City, NY 10001" -184198,Apple Airpods Headphones,1,150,04/24/19 12:07,"579 5th St, San Francisco, CA 94016" -184199,Google Phone,1,600,04/15/19 01:27,"296 South St, Portland, OR 97035" -184200,iPhone,1,700,04/23/19 23:13,"98 Dogwood St, Atlanta, GA 30301" -184201,ThinkPad Laptop,1,999.99,04/19/19 21:13,"221 Sunset St, Austin, TX 73301" -184202,Lightning Charging Cable,1,14.95,04/12/19 06:35,"631 Sunset St, Los Angeles, CA 90001" -184203,Apple Airpods Headphones,1,150,04/04/19 12:12,"938 Elm St, Austin, TX 73301" -184204,Wired Headphones,1,11.99,04/06/19 17:50,"144 Jefferson St, Portland, OR 97035" -184205,34in Ultrawide Monitor,1,379.99,04/30/19 11:55,"122 Lakeview St, Dallas, TX 75001" -184206,Wired Headphones,3,11.99,04/07/19 13:21,"89 1st St, Boston, MA 02215" -184207,Lightning Charging Cable,1,14.95,04/06/19 10:29,"485 Hickory St, Dallas, TX 75001" -184208,USB-C Charging Cable,1,11.95,04/29/19 19:40,"739 13th St, Boston, MA 02215" -184209,AA Batteries (4-pack),1,3.84,04/07/19 11:17,"836 Center St, Atlanta, GA 30301" -184210,USB-C Charging Cable,1,11.95,04/04/19 19:01,"154 Lincoln St, Atlanta, GA 30301" -184211,Bose SoundSport Headphones,1,99.99,04/21/19 09:41,"530 Lincoln St, Boston, MA 02215" -184212,Apple Airpods Headphones,1,150,04/12/19 12:14,"778 Lake St, Boston, MA 02215" -184213,AAA Batteries (4-pack),1,2.99,04/20/19 18:02,"817 Center St, Boston, MA 02215" -184214,Apple Airpods Headphones,1,150,04/16/19 10:37,"94 14th St, San Francisco, CA 94016" -184215,AAA Batteries (4-pack),1,2.99,04/26/19 11:19,"683 Washington St, New York City, NY 10001" -184216,AAA Batteries (4-pack),1,2.99,04/30/19 18:47,"829 13th St, San Francisco, CA 94016" -184217,iPhone,1,700,04/14/19 10:55,"756 Cedar St, Austin, TX 73301" -184218,AAA Batteries (4-pack),1,2.99,04/19/19 10:09,"754 Cedar St, San Francisco, CA 94016" -184219,Lightning Charging Cable,2,14.95,04/09/19 15:56,"493 Wilson St, Seattle, WA 98101" -184220,USB-C Charging Cable,1,11.95,04/18/19 20:02,"128 Cedar St, Austin, TX 73301" -184221,iPhone,1,700,04/20/19 09:09,"830 Ridge St, Seattle, WA 98101" -184221,Wired Headphones,1,11.99,04/20/19 09:09,"830 Ridge St, Seattle, WA 98101" -184222,Bose SoundSport Headphones,1,99.99,04/13/19 20:48,"125 14th St, Dallas, TX 75001" -184223,20in Monitor,1,109.99,04/06/19 13:32,"273 4th St, Austin, TX 73301" -184224,Apple Airpods Headphones,1,150,04/26/19 17:26,"805 Forest St, Austin, TX 73301" -184225,Bose SoundSport Headphones,1,99.99,04/09/19 17:35,"575 10th St, Dallas, TX 75001" -184226,27in 4K Gaming Monitor,1,389.99,04/02/19 10:24,"203 Church St, Dallas, TX 75001" -184227,AAA Batteries (4-pack),1,2.99,04/06/19 07:35,"742 Walnut St, Portland, OR 97035" -184228,AAA Batteries (4-pack),3,2.99,04/05/19 14:08,"203 Main St, Los Angeles, CA 90001" -184229,27in FHD Monitor,1,149.99,04/08/19 21:44,"869 4th St, Los Angeles, CA 90001" -184230,AAA Batteries (4-pack),1,2.99,04/06/19 20:47,"976 Washington St, San Francisco, CA 94016" -184231,AA Batteries (4-pack),2,3.84,04/25/19 14:32,"323 13th St, Los Angeles, CA 90001" -184232,Lightning Charging Cable,1,14.95,04/15/19 13:51,"374 Johnson St, Los Angeles, CA 90001" -184233,AA Batteries (4-pack),1,3.84,04/07/19 12:57,"268 Ridge St, Seattle, WA 98101" -184234,AA Batteries (4-pack),2,3.84,04/19/19 21:32,"385 5th St, Atlanta, GA 30301" -184235,AA Batteries (4-pack),3,3.84,04/04/19 21:38,"695 Spruce St, Seattle, WA 98101" -184236,AAA Batteries (4-pack),2,2.99,04/11/19 12:59,"291 12th St, Los Angeles, CA 90001" -184237,Wired Headphones,1,11.99,04/07/19 09:42,"188 Main St, Boston, MA 02215" -184238,USB-C Charging Cable,1,11.95,04/20/19 18:33,"47 North St, Los Angeles, CA 90001" -184239,Lightning Charging Cable,1,14.95,04/10/19 16:42,"696 8th St, San Francisco, CA 94016" -184240,USB-C Charging Cable,1,11.95,04/22/19 12:10,"793 River St, Seattle, WA 98101" -184241,AAA Batteries (4-pack),1,2.99,04/03/19 13:27,"436 Washington St, Austin, TX 73301" -184242,AAA Batteries (4-pack),2,2.99,04/16/19 19:52,"626 Lake St, Portland, OR 97035" -184243,Bose SoundSport Headphones,1,99.99,04/03/19 14:29,"781 11th St, Dallas, TX 75001" -184244,USB-C Charging Cable,1,11.95,04/04/19 16:54,"160 River St, New York City, NY 10001" -184245,Apple Airpods Headphones,1,150,04/22/19 21:55,"779 12th St, San Francisco, CA 94016" -184246,AAA Batteries (4-pack),2,2.99,04/02/19 19:44,"572 Pine St, Boston, MA 02215" -184247,Bose SoundSport Headphones,1,99.99,04/04/19 13:16,"290 8th St, New York City, NY 10001" -184248,AAA Batteries (4-pack),3,2.99,04/26/19 09:15,"523 2nd St, San Francisco, CA 94016" -184249,AA Batteries (4-pack),1,3.84,04/02/19 00:05,"406 Hill St, Dallas, TX 75001" -184250,AAA Batteries (4-pack),1,2.99,04/03/19 10:41,"346 Dogwood St, New York City, NY 10001" -184251,Lightning Charging Cable,1,14.95,04/22/19 17:24,"221 Pine St, Atlanta, GA 30301" -184252,ThinkPad Laptop,1,999.99,04/05/19 21:18,"334 13th St, Seattle, WA 98101" -184252,Bose SoundSport Headphones,1,99.99,04/05/19 21:18,"334 13th St, Seattle, WA 98101" -184253,USB-C Charging Cable,1,11.95,04/17/19 11:54,"34 North St, Portland, OR 97035" -184254,AAA Batteries (4-pack),3,2.99,04/17/19 22:18,"823 14th St, Boston, MA 02215" -184255,Wired Headphones,1,11.99,04/25/19 22:56,"410 Maple St, San Francisco, CA 94016" -184256,Bose SoundSport Headphones,1,99.99,04/11/19 19:21,"727 Lake St, Portland, OR 97035" -184257,Bose SoundSport Headphones,1,99.99,04/19/19 14:57,"490 Pine St, Atlanta, GA 30301" -184258,Flatscreen TV,1,300,04/03/19 11:09,"540 Lake St, Atlanta, GA 30301" -184259,Macbook Pro Laptop,1,1700,04/27/19 18:31,"931 Lake St, Los Angeles, CA 90001" -184260,iPhone,1,700,04/10/19 10:10,"147 Lincoln St, San Francisco, CA 94016" -184261,AAA Batteries (4-pack),1,2.99,04/19/19 15:52,"860 6th St, Atlanta, GA 30301" -184262,AAA Batteries (4-pack),2,2.99,04/05/19 15:26,"672 Hill St, Los Angeles, CA 90001" -184263,Bose SoundSport Headphones,1,99.99,04/18/19 11:32,"31 Cedar St, San Francisco, CA 94016" -184264,Macbook Pro Laptop,1,1700,04/24/19 22:17,"325 Meadow St, Atlanta, GA 30301" -184265,Apple Airpods Headphones,1,150,04/20/19 09:21,"519 Chestnut St, San Francisco, CA 94016" -184266,AAA Batteries (4-pack),5,2.99,04/13/19 19:26,"932 Ridge St, San Francisco, CA 94016" -184267,AA Batteries (4-pack),2,3.84,04/28/19 18:06,"883 6th St, New York City, NY 10001" -184268,Vareebadd Phone,1,400,04/23/19 18:51,"155 North St, Los Angeles, CA 90001" -184269,USB-C Charging Cable,1,11.95,04/09/19 14:39,"755 Spruce St, San Francisco, CA 94016" -184270,Lightning Charging Cable,1,14.95,04/14/19 13:07,"851 Lincoln St, Seattle, WA 98101" -184271,Vareebadd Phone,1,400,04/22/19 17:27,"351 4th St, Los Angeles, CA 90001" -184272,iPhone,1,700,04/21/19 19:49,"637 Cedar St, San Francisco, CA 94016" -184272,Lightning Charging Cable,1,14.95,04/21/19 19:49,"637 Cedar St, San Francisco, CA 94016" -184273,iPhone,1,700,04/23/19 20:38,"423 4th St, Austin, TX 73301" -184274,AAA Batteries (4-pack),2,2.99,04/02/19 10:15,"570 Cedar St, San Francisco, CA 94016" -184275,Bose SoundSport Headphones,1,99.99,04/01/19 10:34,"434 12th St, San Francisco, CA 94016" -184276,ThinkPad Laptop,1,999.99,04/08/19 17:41,"551 Walnut St, San Francisco, CA 94016" -184277,Bose SoundSport Headphones,1,99.99,04/10/19 16:27,"179 Madison St, Atlanta, GA 30301" -184278,AAA Batteries (4-pack),1,2.99,04/09/19 17:56,"358 Johnson St, Seattle, WA 98101" -184279,27in FHD Monitor,1,149.99,04/22/19 13:16,"224 River St, Boston, MA 02215" -184280,AAA Batteries (4-pack),1,2.99,04/29/19 12:46,"427 Meadow St, Los Angeles, CA 90001" -184281,iPhone,1,700,04/17/19 14:23,"345 Main St, Los Angeles, CA 90001" -184281,Apple Airpods Headphones,1,150,04/17/19 14:23,"345 Main St, Los Angeles, CA 90001" -184282,Lightning Charging Cable,1,14.95,04/24/19 22:27,"980 Ridge St, San Francisco, CA 94016" -184283,Bose SoundSport Headphones,1,99.99,04/27/19 15:35,"116 River St, New York City, NY 10001" -184284,Apple Airpods Headphones,1,150,04/17/19 21:52,"426 2nd St, Boston, MA 02215" -184285,Lightning Charging Cable,1,14.95,04/23/19 08:41,"505 Lake St, San Francisco, CA 94016" -184286,Wired Headphones,1,11.99,04/14/19 11:03,"526 Willow St, Seattle, WA 98101" -184287,Bose SoundSport Headphones,1,99.99,04/05/19 18:18,"952 Lincoln St, Los Angeles, CA 90001" -184288,Lightning Charging Cable,2,14.95,04/02/19 12:56,"626 Chestnut St, San Francisco, CA 94016" -184289,AA Batteries (4-pack),1,3.84,04/28/19 12:34,"266 North St, Los Angeles, CA 90001" -184290,ThinkPad Laptop,1,999.99,04/26/19 15:22,"755 Dogwood St, Seattle, WA 98101" -184291,Wired Headphones,1,11.99,04/20/19 10:47,"554 Cherry St, Los Angeles, CA 90001" -184292,Apple Airpods Headphones,1,150,04/22/19 11:29,"192 Church St, Atlanta, GA 30301" -184293,Apple Airpods Headphones,1,150,04/26/19 12:21,"940 Lincoln St, San Francisco, CA 94016" -184294,20in Monitor,1,109.99,04/28/19 23:18,"233 5th St, San Francisco, CA 94016" -184295,USB-C Charging Cable,1,11.95,04/27/19 05:08,"644 Chestnut St, Los Angeles, CA 90001" -184296,20in Monitor,1,109.99,04/04/19 23:39,"942 8th St, Boston, MA 02215" -184297,AA Batteries (4-pack),2,3.84,04/06/19 18:49,"745 Lake St, San Francisco, CA 94016" -184298,Wired Headphones,1,11.99,04/12/19 08:35,"821 12th St, Dallas, TX 75001" -184299,USB-C Charging Cable,1,11.95,04/09/19 18:45,"214 Sunset St, Austin, TX 73301" -184300,Lightning Charging Cable,1,14.95,04/27/19 14:57,"316 Ridge St, Seattle, WA 98101" -184301,Wired Headphones,1,11.99,04/22/19 22:35,"34 Sunset St, San Francisco, CA 94016" -184302,AAA Batteries (4-pack),1,2.99,04/17/19 18:42,"885 Jefferson St, Dallas, TX 75001" -184303,USB-C Charging Cable,1,11.95,04/01/19 13:47,"183 Chestnut St, Los Angeles, CA 90001" -184304,20in Monitor,1,109.99,04/09/19 12:15,"156 12th St, New York City, NY 10001" -184305,AAA Batteries (4-pack),1,2.99,04/17/19 05:59,"260 2nd St, Seattle, WA 98101" -184306,AAA Batteries (4-pack),1,2.99,04/29/19 21:02,"724 Highland St, New York City, NY 10001" -184307,Apple Airpods Headphones,1,150,04/25/19 11:19,"882 Highland St, Portland, ME 04101" -184308,Wired Headphones,1,11.99,04/06/19 19:15,"972 Meadow St, San Francisco, CA 94016" -184309,LG Dryer,1,600.0,04/25/19 08:43,"403 Johnson St, San Francisco, CA 94016" -184310,Lightning Charging Cable,1,14.95,04/25/19 16:00,"464 Madison St, New York City, NY 10001" -184311,Lightning Charging Cable,1,14.95,04/04/19 09:27,"403 5th St, Los Angeles, CA 90001" -184312,USB-C Charging Cable,1,11.95,04/11/19 10:58,"443 Sunset St, Los Angeles, CA 90001" -184313,USB-C Charging Cable,1,11.95,04/16/19 14:04,"183 Adams St, San Francisco, CA 94016" -184314,Wired Headphones,1,11.99,04/01/19 20:11,"999 Jackson St, San Francisco, CA 94016" -184315,Bose SoundSport Headphones,1,99.99,04/17/19 11:45,"261 West St, Dallas, TX 75001" -184316,Lightning Charging Cable,1,14.95,04/23/19 18:50,"837 Lakeview St, Los Angeles, CA 90001" -184317,Lightning Charging Cable,1,14.95,04/25/19 22:08,"364 Johnson St, San Francisco, CA 94016" -184318,34in Ultrawide Monitor,1,379.99,04/02/19 12:45,"517 6th St, San Francisco, CA 94016" -184319,34in Ultrawide Monitor,1,379.99,04/24/19 05:25,"73 Main St, Portland, OR 97035" -184320,Bose SoundSport Headphones,1,99.99,04/27/19 22:34,"803 Maple St, Boston, MA 02215" -184321,USB-C Charging Cable,1,11.95,04/14/19 23:19,"250 Dogwood St, San Francisco, CA 94016" -184322,AA Batteries (4-pack),1,3.84,04/13/19 20:36,"889 Forest St, Seattle, WA 98101" -184323,Lightning Charging Cable,1,14.95,04/13/19 07:26,"561 Jackson St, Austin, TX 73301" -184324,AAA Batteries (4-pack),1,2.99,04/27/19 10:02,"744 Forest St, Los Angeles, CA 90001" -184325,34in Ultrawide Monitor,1,379.99,04/13/19 23:42,"87 6th St, Los Angeles, CA 90001" -184326,Lightning Charging Cable,1,14.95,04/20/19 10:15,"827 North St, Los Angeles, CA 90001" -184327,AA Batteries (4-pack),2,3.84,04/01/19 23:33,"149 Pine St, Boston, MA 02215" -184328,USB-C Charging Cable,2,11.95,04/29/19 21:32,"838 Main St, Dallas, TX 75001" -184329,20in Monitor,1,109.99,04/20/19 17:57,"170 7th St, New York City, NY 10001" -184330,AAA Batteries (4-pack),1,2.99,04/04/19 10:55,"451 Hickory St, San Francisco, CA 94016" -184331,iPhone,1,700,04/14/19 09:43,"289 11th St, Atlanta, GA 30301" -184332,AA Batteries (4-pack),1,3.84,04/16/19 13:51,"206 Elm St, New York City, NY 10001" -184333,AAA Batteries (4-pack),2,2.99,04/11/19 22:20,"263 North St, Austin, TX 73301" -184334,20in Monitor,1,109.99,04/08/19 08:34,"964 Main St, Los Angeles, CA 90001" -184334,Bose SoundSport Headphones,1,99.99,04/08/19 08:34,"964 Main St, Los Angeles, CA 90001" -184335,AAA Batteries (4-pack),1,2.99,04/22/19 10:00,"697 Walnut St, San Francisco, CA 94016" -184336,USB-C Charging Cable,1,11.95,04/17/19 15:34,"306 Forest St, San Francisco, CA 94016" -184337,Apple Airpods Headphones,1,150,04/22/19 07:10,"107 North St, Los Angeles, CA 90001" -184338,Bose SoundSport Headphones,1,99.99,04/27/19 07:09,"314 Hickory St, San Francisco, CA 94016" -184339,iPhone,1,700,04/22/19 17:03,"185 Cherry St, Los Angeles, CA 90001" -184340,Apple Airpods Headphones,1,150,04/11/19 15:02,"824 Lincoln St, New York City, NY 10001" -184341,iPhone,1,700,04/16/19 14:30,"730 2nd St, Portland, OR 97035" -184342,USB-C Charging Cable,1,11.95,04/18/19 21:02,"478 Sunset St, Boston, MA 02215" -184343,34in Ultrawide Monitor,1,379.99,04/24/19 21:24,"894 7th St, Seattle, WA 98101" -184344,Lightning Charging Cable,1,14.95,04/03/19 14:43,"894 8th St, Los Angeles, CA 90001" -184345,USB-C Charging Cable,1,11.95,04/22/19 18:05,"557 12th St, San Francisco, CA 94016" -184346,USB-C Charging Cable,1,11.95,04/13/19 20:23,"243 Ridge St, Portland, OR 97035" -184347,Wired Headphones,1,11.99,04/14/19 14:10,"725 Dogwood St, Seattle, WA 98101" -184348,Bose SoundSport Headphones,1,99.99,04/20/19 18:52,"399 Church St, Atlanta, GA 30301" -184349,Macbook Pro Laptop,1,1700,04/24/19 12:59,"158 Jackson St, Boston, MA 02215" -184350,USB-C Charging Cable,1,11.95,04/06/19 22:01,"406 Wilson St, San Francisco, CA 94016" -184351,Lightning Charging Cable,1,14.95,04/03/19 11:20,"320 Lincoln St, San Francisco, CA 94016" -184352,Apple Airpods Headphones,1,150,04/19/19 13:56,"119 Elm St, Austin, TX 73301" -184353,Wired Headphones,2,11.99,04/09/19 18:23,"586 Elm St, New York City, NY 10001" -184354,Apple Airpods Headphones,1,150,04/04/19 17:26,"562 Wilson St, San Francisco, CA 94016" -184355,AA Batteries (4-pack),1,3.84,04/26/19 18:20,"635 8th St, Portland, OR 97035" -184356,Apple Airpods Headphones,1,150,04/09/19 10:19,"273 Cherry St, New York City, NY 10001" -184357,Apple Airpods Headphones,1,150,04/06/19 14:21,"350 Dogwood St, San Francisco, CA 94016" -184358,USB-C Charging Cable,1,11.95,04/10/19 14:58,"668 Hickory St, Portland, OR 97035" -184359,AA Batteries (4-pack),1,3.84,04/27/19 14:06,"867 North St, Dallas, TX 75001" -184360,Lightning Charging Cable,2,14.95,04/19/19 10:31,"346 Church St, New York City, NY 10001" -184361,AA Batteries (4-pack),1,3.84,04/17/19 19:41,"85 7th St, San Francisco, CA 94016" -184362,Google Phone,1,600,04/30/19 14:59,"105 Main St, San Francisco, CA 94016" -184363,Wired Headphones,1,11.99,04/03/19 10:58,"629 Cherry St, Los Angeles, CA 90001" -184364,Wired Headphones,1,11.99,04/02/19 22:52,"813 North St, Portland, OR 97035" -184365,AA Batteries (4-pack),1,3.84,04/19/19 13:25,"230 Lincoln St, Austin, TX 73301" -184366,AA Batteries (4-pack),1,3.84,04/03/19 22:10,"762 Pine St, Dallas, TX 75001" -184367,AAA Batteries (4-pack),1,2.99,04/15/19 22:31,"30 Willow St, Boston, MA 02215" -184368,Wired Headphones,1,11.99,04/06/19 16:10,"205 12th St, Dallas, TX 75001" -184369,20in Monitor,1,109.99,04/15/19 13:26,"971 Center St, Seattle, WA 98101" -184370,ThinkPad Laptop,1,999.99,04/30/19 18:07,"630 1st St, Seattle, WA 98101" -184371,Wired Headphones,1,11.99,04/14/19 17:51,"940 Ridge St, Boston, MA 02215" -184372,27in FHD Monitor,1,149.99,04/29/19 12:27,"695 12th St, New York City, NY 10001" -184373,Flatscreen TV,1,300,04/09/19 16:23,"429 Dogwood St, Los Angeles, CA 90001" -184374,27in FHD Monitor,1,149.99,04/06/19 14:35,"589 Church St, Los Angeles, CA 90001" -184375,USB-C Charging Cable,1,11.95,04/17/19 21:00,"816 Lincoln St, Seattle, WA 98101" -184376,AAA Batteries (4-pack),4,2.99,04/14/19 21:14,"986 Hill St, San Francisco, CA 94016" -184377,Lightning Charging Cable,1,14.95,04/26/19 15:29,"766 Wilson St, San Francisco, CA 94016" -184378,AAA Batteries (4-pack),5,2.99,04/22/19 09:38,"927 Maple St, Atlanta, GA 30301" -184379,Vareebadd Phone,1,400,04/13/19 21:07,"677 Maple St, Austin, TX 73301" -184380,Wired Headphones,1,11.99,04/12/19 20:29,"238 Walnut St, San Francisco, CA 94016" -184381,USB-C Charging Cable,1,11.95,04/01/19 13:01,"265 2nd St, Los Angeles, CA 90001" -184382,Macbook Pro Laptop,1,1700,04/22/19 12:19,"796 Sunset St, Boston, MA 02215" -184383,Apple Airpods Headphones,1,150,04/11/19 22:56,"337 River St, Los Angeles, CA 90001" -184384,Google Phone,1,600,04/23/19 20:26,"417 Willow St, Atlanta, GA 30301" -184385,Wired Headphones,2,11.99,04/14/19 11:43,"457 Park St, Portland, OR 97035" -184386,Macbook Pro Laptop,1,1700,04/09/19 15:03,"807 Willow St, Los Angeles, CA 90001" -184387,Apple Airpods Headphones,1,150,04/03/19 10:50,"815 Cedar St, San Francisco, CA 94016" -184388,27in 4K Gaming Monitor,1,389.99,04/23/19 18:11,"492 11th St, Los Angeles, CA 90001" -184389,AAA Batteries (4-pack),1,2.99,04/30/19 13:03,"147 Spruce St, Seattle, WA 98101" -184390,Lightning Charging Cable,1,14.95,04/18/19 21:56,"221 Lincoln St, Boston, MA 02215" -184391,AA Batteries (4-pack),1,3.84,04/19/19 21:19,"958 Lakeview St, Boston, MA 02215" -184392,AA Batteries (4-pack),1,3.84,04/07/19 16:16,"312 Washington St, San Francisco, CA 94016" -184393,AA Batteries (4-pack),1,3.84,04/09/19 09:10,"290 6th St, Boston, MA 02215" -184394,USB-C Charging Cable,1,11.95,04/28/19 08:50,"253 Jefferson St, Dallas, TX 75001" -184395,AAA Batteries (4-pack),1,2.99,04/07/19 09:05,"344 Hill St, Los Angeles, CA 90001" -184396,Apple Airpods Headphones,1,150,04/20/19 14:18,"195 Chestnut St, Los Angeles, CA 90001" -184397,Lightning Charging Cable,1,14.95,04/08/19 11:09,"382 Main St, Boston, MA 02215" -184398,Lightning Charging Cable,1,14.95,04/26/19 19:38,"36 Dogwood St, Seattle, WA 98101" -184399,AA Batteries (4-pack),2,3.84,04/12/19 22:04,"1 Forest St, New York City, NY 10001" -184400,20in Monitor,1,109.99,04/07/19 17:20,"746 Cherry St, Boston, MA 02215" -184401,27in 4K Gaming Monitor,1,389.99,04/03/19 11:09,"934 Walnut St, Portland, ME 04101" -184402,Flatscreen TV,1,300,04/01/19 19:53,"496 Lake St, Austin, TX 73301" -184403,Wired Headphones,1,11.99,04/01/19 17:29,"53 Jefferson St, Portland, OR 97035" -184404,Macbook Pro Laptop,1,1700,04/07/19 20:13,"842 West St, San Francisco, CA 94016" -184405,AAA Batteries (4-pack),1,2.99,04/22/19 14:00,"545 Cherry St, San Francisco, CA 94016" -184406,27in 4K Gaming Monitor,1,389.99,04/14/19 14:49,"787 11th St, Portland, OR 97035" -184407,Wired Headphones,1,11.99,04/11/19 12:09,"970 1st St, Los Angeles, CA 90001" -184408,Bose SoundSport Headphones,1,99.99,05/01/19 00:04,"705 Dogwood St, Boston, MA 02215" -184409,AA Batteries (4-pack),1,3.84,04/06/19 10:44,"592 Johnson St, Dallas, TX 75001" -184410,Lightning Charging Cable,1,14.95,04/04/19 12:02,"395 Park St, Seattle, WA 98101" -184411,iPhone,1,700,04/14/19 13:27,"487 Cherry St, Los Angeles, CA 90001" -184412,Flatscreen TV,1,300,04/07/19 07:51,"582 6th St, Atlanta, GA 30301" -184413,AA Batteries (4-pack),1,3.84,04/25/19 08:29,"246 Wilson St, New York City, NY 10001" -184414,USB-C Charging Cable,1,11.95,04/11/19 08:32,"404 South St, Portland, OR 97035" -184415,AAA Batteries (4-pack),1,2.99,04/03/19 12:11,"49 14th St, Los Angeles, CA 90001" -184416,Wired Headphones,1,11.99,04/11/19 07:35,"540 Walnut St, Dallas, TX 75001" -184417,AAA Batteries (4-pack),1,2.99,04/18/19 14:01,"387 Cherry St, Los Angeles, CA 90001" -184418,Flatscreen TV,1,300,04/26/19 21:47,"341 12th St, Los Angeles, CA 90001" -184419,AA Batteries (4-pack),2,3.84,04/12/19 09:28,"442 Johnson St, Los Angeles, CA 90001" -184420,Apple Airpods Headphones,1,150,04/22/19 17:33,"467 Wilson St, Los Angeles, CA 90001" -184421,27in 4K Gaming Monitor,1,389.99,04/26/19 20:53,"125 Pine St, San Francisco, CA 94016" -184422,Wired Headphones,1,11.99,04/30/19 10:12,"638 Spruce St, New York City, NY 10001" -184423,Lightning Charging Cable,1,14.95,04/17/19 19:03,"286 13th St, Portland, OR 97035" -184424,Apple Airpods Headphones,1,150,04/22/19 05:14,"594 14th St, Dallas, TX 75001" -184425,34in Ultrawide Monitor,1,379.99,04/13/19 09:45,"672 Madison St, Los Angeles, CA 90001" -184426,AA Batteries (4-pack),2,3.84,04/18/19 16:22,"314 Elm St, Portland, OR 97035" -184427,Lightning Charging Cable,1,14.95,04/12/19 13:09,"180 Sunset St, Dallas, TX 75001" -184428,34in Ultrawide Monitor,1,379.99,04/04/19 13:05,"544 South St, New York City, NY 10001" -184429,Apple Airpods Headphones,1,150,04/06/19 10:45,"658 South St, Los Angeles, CA 90001" -184430,27in 4K Gaming Monitor,1,389.99,04/19/19 13:11,"646 Maple St, Los Angeles, CA 90001" -184431,AA Batteries (4-pack),1,3.84,04/08/19 09:36,"702 Wilson St, Los Angeles, CA 90001" -184432,ThinkPad Laptop,1,999.99,04/24/19 23:48,"66 2nd St, Boston, MA 02215" -184433,USB-C Charging Cable,1,11.95,04/28/19 08:21,"594 Washington St, New York City, NY 10001" -184434,USB-C Charging Cable,1,11.95,04/20/19 22:48,"962 4th St, New York City, NY 10001" -184435,iPhone,1,700,04/10/19 08:06,"531 Park St, Portland, OR 97035" -184436,Flatscreen TV,1,300,04/02/19 11:37,"473 Forest St, Atlanta, GA 30301" -184437,AA Batteries (4-pack),1,3.84,04/18/19 21:13,"694 Hickory St, San Francisco, CA 94016" -184438,34in Ultrawide Monitor,1,379.99,04/04/19 15:47,"266 Sunset St, Portland, OR 97035" -184439,Apple Airpods Headphones,1,150,04/17/19 20:21,"905 Spruce St, Atlanta, GA 30301" -184440,34in Ultrawide Monitor,1,379.99,04/04/19 23:53,"490 11th St, New York City, NY 10001" -184441,Lightning Charging Cable,2,14.95,04/18/19 12:39,"358 Adams St, New York City, NY 10001" -184442,AAA Batteries (4-pack),1,2.99,04/22/19 12:35,"684 Lincoln St, Austin, TX 73301" -184443,Lightning Charging Cable,1,14.95,04/10/19 20:53,"604 Adams St, Seattle, WA 98101" -184444,Apple Airpods Headphones,1,150,04/06/19 14:19,"308 Willow St, Dallas, TX 75001" -184445,27in FHD Monitor,1,149.99,04/21/19 10:31,"909 12th St, Austin, TX 73301" -184446,USB-C Charging Cable,1,11.95,04/28/19 11:10,"660 Lakeview St, San Francisco, CA 94016" -184447,iPhone,1,700,04/19/19 21:49,"695 Cherry St, New York City, NY 10001" -184447,Lightning Charging Cable,1,14.95,04/19/19 21:49,"695 Cherry St, New York City, NY 10001" -184448,USB-C Charging Cable,1,11.95,04/06/19 14:55,"836 Pine St, Austin, TX 73301" -184449,Lightning Charging Cable,1,14.95,04/29/19 17:24,"117 12th St, Dallas, TX 75001" -184450,Apple Airpods Headphones,1,150,04/12/19 15:36,"626 River St, Los Angeles, CA 90001" -184451,ThinkPad Laptop,1,999.99,04/18/19 08:13,"169 13th St, Boston, MA 02215" -184452,Vareebadd Phone,1,400,04/01/19 16:48,"659 Chestnut St, New York City, NY 10001" -184453,iPhone,1,700,04/29/19 09:15,"669 Chestnut St, San Francisco, CA 94016" -184454,USB-C Charging Cable,1,11.95,04/30/19 14:56,"356 7th St, Portland, OR 97035" -184455,AA Batteries (4-pack),1,3.84,04/29/19 00:09,"503 Adams St, New York City, NY 10001" -184456,34in Ultrawide Monitor,1,379.99,04/19/19 18:57,"140 9th St, Austin, TX 73301" -184457,USB-C Charging Cable,1,11.95,04/03/19 21:15,"580 Main St, Seattle, WA 98101" -184458,Wired Headphones,1,11.99,04/02/19 22:12,"56 Sunset St, Atlanta, GA 30301" -184459,Lightning Charging Cable,2,14.95,04/08/19 20:26,"210 Willow St, Portland, OR 97035" -184460,iPhone,1,700,04/08/19 18:38,"315 5th St, Los Angeles, CA 90001" -184460,Wired Headphones,1,11.99,04/08/19 18:38,"315 5th St, Los Angeles, CA 90001" -184461,Wired Headphones,1,11.99,04/08/19 21:36,"212 Spruce St, Atlanta, GA 30301" -184462,34in Ultrawide Monitor,1,379.99,04/04/19 19:21,"568 River St, San Francisco, CA 94016" -184463,AA Batteries (4-pack),1,3.84,04/30/19 22:03,"979 Meadow St, Los Angeles, CA 90001" -184464,20in Monitor,1,109.99,04/30/19 08:58,"719 Park St, Boston, MA 02215" -184465,USB-C Charging Cable,1,11.95,04/09/19 00:06,"875 Cedar St, Atlanta, GA 30301" -184466,34in Ultrawide Monitor,1,379.99,04/27/19 23:30,"445 4th St, Atlanta, GA 30301" -184467,USB-C Charging Cable,1,11.95,04/28/19 12:33,"649 Adams St, New York City, NY 10001" -184468,Lightning Charging Cable,1,14.95,04/28/19 22:26,"68 Maple St, Austin, TX 73301" -184469,27in FHD Monitor,1,149.99,04/29/19 12:34,"875 1st St, San Francisco, CA 94016" -184470,AA Batteries (4-pack),1,3.84,04/25/19 19:18,"68 Hickory St, San Francisco, CA 94016" -184471,Google Phone,1,600,04/05/19 10:39,"437 Chestnut St, San Francisco, CA 94016" -184472,iPhone,1,700,04/11/19 12:16,"573 Adams St, Austin, TX 73301" -184472,Bose SoundSport Headphones,1,99.99,04/11/19 12:16,"573 Adams St, Austin, TX 73301" -184473,Lightning Charging Cable,1,14.95,04/06/19 11:38,"398 West St, Los Angeles, CA 90001" -184474,USB-C Charging Cable,1,11.95,04/17/19 20:19,"519 14th St, New York City, NY 10001" -184475,Wired Headphones,1,11.99,04/27/19 12:55,"676 South St, Boston, MA 02215" -184476,AAA Batteries (4-pack),1,2.99,04/19/19 17:39,"58 Willow St, Los Angeles, CA 90001" -184477,Wired Headphones,2,11.99,04/15/19 12:48,"566 12th St, San Francisco, CA 94016" -184478,Wired Headphones,1,11.99,04/09/19 17:51,"704 Forest St, Los Angeles, CA 90001" -184479,Lightning Charging Cable,1,14.95,04/14/19 13:33,"7 1st St, Boston, MA 02215" -184480,Lightning Charging Cable,1,14.95,04/24/19 12:10,"169 Dogwood St, Austin, TX 73301" -184481,AA Batteries (4-pack),2,3.84,04/01/19 15:27,"556 Maple St, San Francisco, CA 94016" -184482,USB-C Charging Cable,1,11.95,04/01/19 14:35,"40 Highland St, Boston, MA 02215" -184483,USB-C Charging Cable,1,11.95,04/17/19 05:58,"862 11th St, Austin, TX 73301" -184484,AAA Batteries (4-pack),1,2.99,04/08/19 23:43,"560 Meadow St, New York City, NY 10001" -184485,27in 4K Gaming Monitor,1,389.99,04/14/19 12:35,"566 Sunset St, San Francisco, CA 94016" -184486,Bose SoundSport Headphones,1,99.99,04/25/19 19:24,"608 Pine St, New York City, NY 10001" -184487,AA Batteries (4-pack),1,3.84,04/24/19 18:21,"431 Forest St, Atlanta, GA 30301" -184488,AAA Batteries (4-pack),4,2.99,04/20/19 06:38,"154 Cedar St, Los Angeles, CA 90001" -184489,Lightning Charging Cable,1,14.95,04/17/19 11:01,"559 10th St, Los Angeles, CA 90001" -184490,AAA Batteries (4-pack),2,2.99,04/19/19 11:27,"215 Lake St, Los Angeles, CA 90001" -184491,Apple Airpods Headphones,1,150,04/12/19 20:36,"609 Jefferson St, Austin, TX 73301" -184492,AA Batteries (4-pack),1,3.84,04/17/19 22:17,"941 Main St, Los Angeles, CA 90001" -184493,AA Batteries (4-pack),1,3.84,04/16/19 13:07,"872 10th St, New York City, NY 10001" -184494,Google Phone,1,600,04/18/19 23:08,"502 Sunset St, San Francisco, CA 94016" -184495,AAA Batteries (4-pack),1,2.99,04/10/19 16:33,"648 9th St, Los Angeles, CA 90001" -184496,Wired Headphones,1,11.99,04/08/19 17:51,"598 Center St, Los Angeles, CA 90001" -184497,AAA Batteries (4-pack),1,2.99,04/13/19 17:55,"741 12th St, Seattle, WA 98101" -184498,iPhone,1,700,04/19/19 06:51,"294 1st St, San Francisco, CA 94016" -184499,USB-C Charging Cable,2,11.95,04/12/19 16:07,"300 Jefferson St, Dallas, TX 75001" -184500,AAA Batteries (4-pack),1,2.99,04/25/19 12:12,"809 Cedar St, San Francisco, CA 94016" -184501,27in FHD Monitor,1,149.99,04/27/19 13:02,"967 11th St, Portland, ME 04101" -184502,27in FHD Monitor,1,149.99,04/21/19 16:58,"63 Forest St, Los Angeles, CA 90001" -184503,iPhone,1,700,04/10/19 16:23,"415 South St, Atlanta, GA 30301" -184503,Lightning Charging Cable,1,14.95,04/10/19 16:23,"415 South St, Atlanta, GA 30301" -184504,Google Phone,1,600,04/11/19 14:26,"808 4th St, Los Angeles, CA 90001" -184505,USB-C Charging Cable,2,11.95,04/16/19 16:39,"612 14th St, Boston, MA 02215" -184506,USB-C Charging Cable,1,11.95,04/05/19 18:50,"573 6th St, New York City, NY 10001" -184507,34in Ultrawide Monitor,1,379.99,04/08/19 15:58,"719 Walnut St, Boston, MA 02215" -184508,Google Phone,1,600,04/26/19 11:15,"723 Hickory St, Los Angeles, CA 90001" -184509,USB-C Charging Cable,1,11.95,04/14/19 22:58,"932 Chestnut St, New York City, NY 10001" -184510,Bose SoundSport Headphones,1,99.99,04/22/19 00:06,"843 Jefferson St, Los Angeles, CA 90001" -184511,Wired Headphones,2,11.99,04/21/19 16:57,"560 Washington St, San Francisco, CA 94016" -184512,Lightning Charging Cable,1,14.95,04/12/19 10:42,"654 Highland St, San Francisco, CA 94016" -184513,iPhone,1,700,04/07/19 13:00,"368 Walnut St, San Francisco, CA 94016" -184514,AA Batteries (4-pack),1,3.84,04/29/19 12:51,"829 12th St, Atlanta, GA 30301" -184515,USB-C Charging Cable,1,11.95,04/23/19 17:18,"846 Forest St, Boston, MA 02215" -184516,USB-C Charging Cable,1,11.95,04/24/19 12:24,"368 8th St, Boston, MA 02215" -184517,Lightning Charging Cable,1,14.95,04/09/19 14:44,"442 7th St, San Francisco, CA 94016" -184518,27in FHD Monitor,1,149.99,04/06/19 14:58,"72 Pine St, San Francisco, CA 94016" -184519,27in 4K Gaming Monitor,1,389.99,04/30/19 08:44,"834 Johnson St, Boston, MA 02215" -184520,Lightning Charging Cable,1,14.95,04/04/19 23:22,"475 Jefferson St, Los Angeles, CA 90001" -184521,27in 4K Gaming Monitor,1,389.99,04/10/19 11:50,"658 8th St, San Francisco, CA 94016" -184522,AAA Batteries (4-pack),1,2.99,04/25/19 01:31,"509 5th St, Dallas, TX 75001" -184523,USB-C Charging Cable,1,11.95,04/10/19 13:12,"478 Willow St, Seattle, WA 98101" -184524,Google Phone,1,600,04/13/19 21:12,"346 Willow St, Boston, MA 02215" -184525,Wired Headphones,1,11.99,04/30/19 10:21,"510 Meadow St, Boston, MA 02215" -184526,Apple Airpods Headphones,1,150,04/04/19 16:10,"425 Pine St, New York City, NY 10001" -184527,AAA Batteries (4-pack),1,2.99,04/10/19 10:48,"84 13th St, San Francisco, CA 94016" -184528,27in FHD Monitor,1,149.99,04/30/19 12:35,"232 Church St, Dallas, TX 75001" -184529,Bose SoundSport Headphones,1,99.99,04/17/19 19:13,"185 8th St, San Francisco, CA 94016" -184530,USB-C Charging Cable,1,11.95,04/09/19 12:14,"516 Highland St, Portland, OR 97035" -184531,Lightning Charging Cable,1,14.95,04/08/19 18:48,"834 5th St, Seattle, WA 98101" -184532,iPhone,1,700,04/01/19 19:28,"676 Adams St, Seattle, WA 98101" -184533,Bose SoundSport Headphones,1,99.99,04/20/19 11:08,"221 Church St, Seattle, WA 98101" -184534,Flatscreen TV,1,300,04/18/19 16:13,"770 Jackson St, Dallas, TX 75001" -184535,27in FHD Monitor,1,149.99,04/20/19 14:13,"234 Willow St, Los Angeles, CA 90001" -184536,LG Dryer,1,600.0,04/28/19 13:09,"60 10th St, New York City, NY 10001" -184537,27in 4K Gaming Monitor,1,389.99,04/15/19 15:00,"145 Cherry St, Portland, OR 97035" -184538,Wired Headphones,1,11.99,04/18/19 16:34,"145 Forest St, San Francisco, CA 94016" -184539,Lightning Charging Cable,1,14.95,04/15/19 10:02,"87 10th St, Austin, TX 73301" -184540,Lightning Charging Cable,2,14.95,04/11/19 18:24,"972 West St, Atlanta, GA 30301" -184541,Wired Headphones,1,11.99,04/14/19 10:10,"278 Church St, San Francisco, CA 94016" -184542,Lightning Charging Cable,1,14.95,04/04/19 07:24,"933 12th St, San Francisco, CA 94016" -184543,iPhone,1,700,04/06/19 19:12,"803 Chestnut St, San Francisco, CA 94016" -184544,USB-C Charging Cable,1,11.95,04/25/19 19:27,"626 South St, Los Angeles, CA 90001" -184545,27in 4K Gaming Monitor,1,389.99,04/29/19 14:35,"503 Forest St, Los Angeles, CA 90001" -184546,Flatscreen TV,1,300,04/19/19 21:01,"1 Washington St, Los Angeles, CA 90001" -184547,AAA Batteries (4-pack),1,2.99,04/30/19 10:56,"24 Walnut St, Dallas, TX 75001" -184548,Lightning Charging Cable,1,14.95,04/01/19 08:02,"664 Main St, San Francisco, CA 94016" -184549,34in Ultrawide Monitor,1,379.99,04/21/19 19:56,"89 Park St, Seattle, WA 98101" -184550,Lightning Charging Cable,1,14.95,04/06/19 17:00,"78 8th St, Dallas, TX 75001" -184551,Wired Headphones,1,11.99,04/23/19 00:32,"111 Ridge St, San Francisco, CA 94016" -184552,AAA Batteries (4-pack),1,2.99,04/28/19 00:40,"379 7th St, Boston, MA 02215" -184553,Lightning Charging Cable,1,14.95,04/30/19 20:25,"350 10th St, New York City, NY 10001" -184554,34in Ultrawide Monitor,1,379.99,04/24/19 12:14,"715 Dogwood St, Los Angeles, CA 90001" -184555,Bose SoundSport Headphones,1,99.99,04/11/19 14:16,"381 Lincoln St, Boston, MA 02215" -184556,Lightning Charging Cable,1,14.95,04/27/19 14:49,"251 6th St, Los Angeles, CA 90001" -184557,USB-C Charging Cable,1,11.95,04/06/19 15:31,"107 Meadow St, Los Angeles, CA 90001" -184558,Wired Headphones,1,11.99,04/13/19 12:04,"394 10th St, San Francisco, CA 94016" -184559,USB-C Charging Cable,1,11.95,04/01/19 10:34,"125 Park St, Los Angeles, CA 90001" -184560,Apple Airpods Headphones,1,150,04/01/19 13:38,"810 Elm St, Dallas, TX 75001" -184561,Apple Airpods Headphones,1,150,04/13/19 17:18,"635 Spruce St, Los Angeles, CA 90001" -184562,Flatscreen TV,1,300,04/27/19 14:43,"519 North St, New York City, NY 10001" -184563,AA Batteries (4-pack),1,3.84,04/28/19 08:45,"529 Meadow St, New York City, NY 10001" -184564,34in Ultrawide Monitor,1,379.99,04/13/19 20:53,"140 Lincoln St, Los Angeles, CA 90001" -184565,USB-C Charging Cable,1,11.95,04/06/19 20:11,"564 Hickory St, San Francisco, CA 94016" -184566,AAA Batteries (4-pack),1,2.99,04/07/19 09:57,"367 Adams St, San Francisco, CA 94016" -184567,Apple Airpods Headphones,1,150,04/29/19 18:34,"965 Pine St, Boston, MA 02215" -184568,iPhone,1,700,04/07/19 09:26,"103 Washington St, Los Angeles, CA 90001" -184569,AAA Batteries (4-pack),2,2.99,04/23/19 19:23,"554 Chestnut St, Boston, MA 02215" -184570,Apple Airpods Headphones,1,150,04/07/19 19:17,"968 6th St, Boston, MA 02215" -184571,Flatscreen TV,1,300,04/22/19 06:11,"405 14th St, New York City, NY 10001" -184572,AA Batteries (4-pack),1,3.84,04/07/19 06:40,"592 Johnson St, Atlanta, GA 30301" -184573,Bose SoundSport Headphones,1,99.99,04/02/19 09:04,"780 7th St, San Francisco, CA 94016" -184574,Apple Airpods Headphones,1,150,04/25/19 22:18,"920 Jackson St, San Francisco, CA 94016" -184575,Apple Airpods Headphones,1,150,04/29/19 09:08,"619 Jefferson St, Portland, OR 97035" -184576,AAA Batteries (4-pack),1,2.99,04/21/19 06:51,"413 Church St, Atlanta, GA 30301" -184577,iPhone,1,700,04/15/19 00:03,"803 Lincoln St, Portland, OR 97035" -184577,Lightning Charging Cable,1,14.95,04/15/19 00:03,"803 Lincoln St, Portland, OR 97035" -184578,AA Batteries (4-pack),1,3.84,04/23/19 22:36,"126 7th St, Austin, TX 73301" -184579,Lightning Charging Cable,1,14.95,04/23/19 17:15,"913 Main St, Boston, MA 02215" -184580,20in Monitor,1,109.99,04/24/19 17:48,"221 Ridge St, San Francisco, CA 94016" -184581,AA Batteries (4-pack),1,3.84,04/24/19 20:37,"369 2nd St, New York City, NY 10001" -184582,AA Batteries (4-pack),1,3.84,04/21/19 22:35,"724 North St, New York City, NY 10001" -184583,27in 4K Gaming Monitor,1,389.99,04/02/19 17:31,"311 Washington St, Seattle, WA 98101" -184584,27in FHD Monitor,1,149.99,04/25/19 00:57,"815 Walnut St, Boston, MA 02215" -184585,AAA Batteries (4-pack),2,2.99,04/27/19 19:49,"314 Sunset St, Boston, MA 02215" -184586,Apple Airpods Headphones,1,150,04/16/19 20:10,"95 Church St, San Francisco, CA 94016" -184587,AA Batteries (4-pack),1,3.84,04/21/19 13:31,"321 Pine St, San Francisco, CA 94016" -184588,27in 4K Gaming Monitor,1,389.99,04/08/19 14:30,"672 Forest St, Dallas, TX 75001" -184589,Lightning Charging Cable,1,14.95,04/04/19 16:11,"118 11th St, Boston, MA 02215" -184590,34in Ultrawide Monitor,1,379.99,04/24/19 20:45,"421 Elm St, Los Angeles, CA 90001" -184591,Bose SoundSport Headphones,1,99.99,04/23/19 11:30,"862 Highland St, Dallas, TX 75001" -184592,34in Ultrawide Monitor,1,379.99,04/12/19 11:58,"645 4th St, Portland, OR 97035" -184593,AAA Batteries (4-pack),1,2.99,04/18/19 11:50,"987 Hill St, Dallas, TX 75001" -184594,Apple Airpods Headphones,1,150,04/17/19 12:05,"624 11th St, Atlanta, GA 30301" -184595,Lightning Charging Cable,1,14.95,04/28/19 12:41,"479 7th St, San Francisco, CA 94016" -184596,Bose SoundSport Headphones,1,99.99,04/02/19 08:48,"790 Washington St, Dallas, TX 75001" -184597,AA Batteries (4-pack),1,3.84,04/05/19 15:25,"303 4th St, Seattle, WA 98101" -184598,Wired Headphones,3,11.99,04/20/19 16:01,"839 Johnson St, Seattle, WA 98101" -184599,27in FHD Monitor,1,149.99,04/03/19 20:33,"755 Highland St, New York City, NY 10001" -184600,AA Batteries (4-pack),1,3.84,04/10/19 00:57,"102 Jackson St, Dallas, TX 75001" -184601,LG Dryer,1,600.0,04/30/19 14:29,"25 Lakeview St, Boston, MA 02215" -184602,Macbook Pro Laptop,1,1700,04/25/19 15:58,"254 Park St, Austin, TX 73301" -184603,Apple Airpods Headphones,1,150,04/22/19 13:10,"506 Hill St, Los Angeles, CA 90001" -184604,AAA Batteries (4-pack),1,2.99,04/29/19 17:02,"882 Church St, Boston, MA 02215" -184605,Wired Headphones,1,11.99,04/23/19 16:29,"44 Church St, Atlanta, GA 30301" -184606,AA Batteries (4-pack),1,3.84,04/04/19 21:00,"598 Lincoln St, Atlanta, GA 30301" -184607,27in FHD Monitor,1,149.99,04/28/19 16:52,"119 1st St, New York City, NY 10001" -184608,Lightning Charging Cable,1,14.95,04/18/19 22:17,"803 Meadow St, Los Angeles, CA 90001" -184609,34in Ultrawide Monitor,1,379.99,04/13/19 17:35,"317 North St, Los Angeles, CA 90001" -184610,AA Batteries (4-pack),4,3.84,04/13/19 01:44,"473 Lake St, Portland, OR 97035" -184611,34in Ultrawide Monitor,1,379.99,04/20/19 21:03,"196 Highland St, Boston, MA 02215" -184612,Wired Headphones,1,11.99,04/16/19 15:49,"318 5th St, Los Angeles, CA 90001" -184613,AAA Batteries (4-pack),1,2.99,04/21/19 12:28,"358 Cedar St, Atlanta, GA 30301" -184614,Lightning Charging Cable,1,14.95,04/10/19 23:23,"94 River St, Los Angeles, CA 90001" -184615,34in Ultrawide Monitor,1,379.99,04/27/19 21:14,"573 Center St, San Francisco, CA 94016" -184616,Apple Airpods Headphones,1,150,04/02/19 23:13,"519 Jefferson St, Los Angeles, CA 90001" -184617,20in Monitor,1,109.99,04/09/19 22:05,"202 Church St, San Francisco, CA 94016" -184618,Google Phone,1,600,04/14/19 09:27,"26 Center St, Portland, OR 97035" -184618,USB-C Charging Cable,1,11.95,04/14/19 09:27,"26 Center St, Portland, OR 97035" -184619,USB-C Charging Cable,1,11.95,04/17/19 11:59,"797 7th St, Portland, ME 04101" -184620,iPhone,1,700,04/20/19 19:31,"369 Madison St, Atlanta, GA 30301" -184621,iPhone,1,700,04/19/19 10:49,"547 5th St, Austin, TX 73301" -184621,Lightning Charging Cable,2,14.95,04/19/19 10:49,"547 5th St, Austin, TX 73301" -184622,AAA Batteries (4-pack),1,2.99,04/28/19 08:43,"326 11th St, Dallas, TX 75001" -184623,AA Batteries (4-pack),1,3.84,04/17/19 16:56,"409 14th St, Los Angeles, CA 90001" -184624,Lightning Charging Cable,1,14.95,04/25/19 00:27,"54 Meadow St, San Francisco, CA 94016" -184625,AA Batteries (4-pack),1,3.84,04/10/19 09:13,"788 11th St, Seattle, WA 98101" -184626,Macbook Pro Laptop,1,1700,04/04/19 15:34,"126 Main St, Boston, MA 02215" -184627,27in 4K Gaming Monitor,1,389.99,04/12/19 14:33,"374 10th St, Los Angeles, CA 90001" -184628,USB-C Charging Cable,2,11.95,04/29/19 11:13,"843 Madison St, Dallas, TX 75001" -184629,AA Batteries (4-pack),2,3.84,04/04/19 01:28,"782 10th St, Dallas, TX 75001" -184630,Lightning Charging Cable,1,14.95,04/14/19 08:30,"97 Adams St, San Francisco, CA 94016" -184631,Apple Airpods Headphones,1,150,04/02/19 21:14,"758 12th St, San Francisco, CA 94016" -184632,34in Ultrawide Monitor,1,379.99,04/28/19 22:10,"329 Washington St, Boston, MA 02215" -184633,Wired Headphones,1,11.99,04/18/19 20:06,"143 Johnson St, New York City, NY 10001" -184634,Wired Headphones,1,11.99,04/23/19 18:01,"861 Hickory St, San Francisco, CA 94016" -184635,Vareebadd Phone,1,400,04/13/19 08:57,"826 Chestnut St, San Francisco, CA 94016" -184635,Bose SoundSport Headphones,1,99.99,04/13/19 08:57,"826 Chestnut St, San Francisco, CA 94016" -184636,AA Batteries (4-pack),1,3.84,04/13/19 00:16,"284 River St, San Francisco, CA 94016" -184637,AAA Batteries (4-pack),1,2.99,04/07/19 16:56,"565 Meadow St, Atlanta, GA 30301" -184638,Macbook Pro Laptop,1,1700,04/07/19 17:14,"374 Hickory St, Atlanta, GA 30301" -184639,AAA Batteries (4-pack),1,2.99,04/01/19 17:15,"848 Madison St, Atlanta, GA 30301" -184640,AAA Batteries (4-pack),1,2.99,04/29/19 23:28,"784 Dogwood St, San Francisco, CA 94016" -184641,Wired Headphones,1,11.99,04/27/19 20:41,"775 8th St, Boston, MA 02215" -184642,Apple Airpods Headphones,1,150,04/16/19 13:59,"466 2nd St, Seattle, WA 98101" -184643,Apple Airpods Headphones,1,150,04/07/19 14:23,"308 Sunset St, New York City, NY 10001" -184644,Bose SoundSport Headphones,1,99.99,04/17/19 22:37,"902 Johnson St, New York City, NY 10001" -184645,Macbook Pro Laptop,1,1700,04/04/19 18:51,"437 Jackson St, Atlanta, GA 30301" -184646,27in FHD Monitor,1,149.99,04/19/19 14:01,"267 Cedar St, New York City, NY 10001" -184647,Wired Headphones,1,11.99,04/30/19 16:28,"793 Cherry St, San Francisco, CA 94016" -184648,Apple Airpods Headphones,1,150,04/17/19 20:02,"101 Jefferson St, San Francisco, CA 94016" -184649,USB-C Charging Cable,1,11.95,04/26/19 20:07,"981 Adams St, Portland, ME 04101" -184650,AAA Batteries (4-pack),1,2.99,04/10/19 23:30,"47 1st St, New York City, NY 10001" -184651,Macbook Pro Laptop,1,1700,04/25/19 09:21,"429 Ridge St, Atlanta, GA 30301" -184652,27in 4K Gaming Monitor,1,389.99,04/18/19 10:27,"221 North St, Dallas, TX 75001" -184653,AAA Batteries (4-pack),1,2.99,04/28/19 23:48,"638 Wilson St, Los Angeles, CA 90001" -184654,Bose SoundSport Headphones,1,99.99,04/26/19 15:13,"652 4th St, San Francisco, CA 94016" -184655,Lightning Charging Cable,1,14.95,04/07/19 22:12,"963 6th St, Seattle, WA 98101" -184656,USB-C Charging Cable,1,11.95,04/25/19 12:12,"673 Elm St, New York City, NY 10001" -184657,AA Batteries (4-pack),1,3.84,04/16/19 17:14,"324 Lake St, Dallas, TX 75001" -184658,Lightning Charging Cable,1,14.95,04/25/19 18:05,"306 1st St, Seattle, WA 98101" -184659,Apple Airpods Headphones,1,150,04/05/19 11:42,"571 7th St, Seattle, WA 98101" -184660,AA Batteries (4-pack),1,3.84,04/27/19 11:59,"363 Jefferson St, San Francisco, CA 94016" -184661,ThinkPad Laptop,1,999.99,04/08/19 12:04,"688 Willow St, Seattle, WA 98101" -184662,Lightning Charging Cable,1,14.95,04/10/19 12:44,"121 1st St, San Francisco, CA 94016" -184663,Lightning Charging Cable,1,14.95,04/23/19 10:05,"101 11th St, New York City, NY 10001" -184664,Wired Headphones,1,11.99,04/14/19 11:49,"764 Dogwood St, New York City, NY 10001" -184665,AA Batteries (4-pack),1,3.84,04/01/19 20:45,"851 South St, New York City, NY 10001" -184666,27in FHD Monitor,1,149.99,04/17/19 13:26,"438 Sunset St, San Francisco, CA 94016" -184667,AA Batteries (4-pack),2,3.84,04/20/19 11:30,"524 Pine St, Los Angeles, CA 90001" -184668,AAA Batteries (4-pack),1,2.99,04/04/19 14:41,"862 Elm St, Dallas, TX 75001" -184669,Lightning Charging Cable,1,14.95,04/20/19 23:36,"577 Cherry St, San Francisco, CA 94016" -184670,Wired Headphones,1,11.99,04/15/19 00:02,"524 Park St, Boston, MA 02215" -184670,20in Monitor,1,109.99,04/15/19 00:02,"524 Park St, Boston, MA 02215" -184671,Macbook Pro Laptop,1,1700,04/12/19 11:52,"717 6th St, San Francisco, CA 94016" -184672,AAA Batteries (4-pack),1,2.99,04/16/19 05:57,"911 Jackson St, Seattle, WA 98101" -184673,27in 4K Gaming Monitor,1,389.99,04/19/19 19:05,"825 Chestnut St, Los Angeles, CA 90001" -184674,Google Phone,1,600,04/28/19 14:09,"228 Dogwood St, New York City, NY 10001" -184675,Apple Airpods Headphones,1,150,04/28/19 15:00,"382 4th St, Dallas, TX 75001" -184676,Lightning Charging Cable,1,14.95,04/24/19 20:52,"868 Center St, Boston, MA 02215" -184677,AA Batteries (4-pack),1,3.84,04/11/19 20:56,"947 Johnson St, Los Angeles, CA 90001" -184678,Wired Headphones,1,11.99,04/06/19 07:14,"619 Lincoln St, Seattle, WA 98101" -184679,Wired Headphones,1,11.99,04/07/19 11:21,"804 Willow St, Seattle, WA 98101" -184680,20in Monitor,1,109.99,04/11/19 23:57,"948 9th St, San Francisco, CA 94016" -184681,Bose SoundSport Headphones,1,99.99,04/18/19 20:27,"451 Washington St, Los Angeles, CA 90001" -184682,Lightning Charging Cable,1,14.95,04/26/19 10:22,"212 2nd St, Dallas, TX 75001" -184683,Lightning Charging Cable,1,14.95,04/13/19 23:43,"764 Spruce St, Portland, OR 97035" -184684,Apple Airpods Headphones,1,150,04/18/19 13:56,"237 Johnson St, Los Angeles, CA 90001" -184685,AA Batteries (4-pack),1,3.84,04/18/19 10:28,"99 Willow St, New York City, NY 10001" -184686,AA Batteries (4-pack),1,3.84,04/28/19 17:53,"681 Cherry St, Portland, OR 97035" -184687,AAA Batteries (4-pack),2,2.99,04/25/19 12:15,"363 Dogwood St, San Francisco, CA 94016" -184688,Bose SoundSport Headphones,1,99.99,04/06/19 00:20,"825 West St, Los Angeles, CA 90001" -184689,USB-C Charging Cable,1,11.95,04/28/19 20:02,"895 Maple St, San Francisco, CA 94016" -184690,AAA Batteries (4-pack),1,2.99,04/08/19 07:27,"300 13th St, Atlanta, GA 30301" -184691,27in 4K Gaming Monitor,1,389.99,04/23/19 21:49,"156 Forest St, Los Angeles, CA 90001" -184692,AA Batteries (4-pack),1,3.84,04/14/19 19:00,"256 11th St, Boston, MA 02215" -184693,Lightning Charging Cable,2,14.95,04/03/19 17:55,"266 Lincoln St, Boston, MA 02215" -184694,Apple Airpods Headphones,1,150,04/22/19 09:27,"425 Pine St, Dallas, TX 75001" -184695,AAA Batteries (4-pack),1,2.99,04/21/19 07:51,"608 Hill St, New York City, NY 10001" -184696,Wired Headphones,1,11.99,04/18/19 00:11,"68 Dogwood St, New York City, NY 10001" -184697,Bose SoundSport Headphones,1,99.99,04/28/19 16:58,"498 Pine St, New York City, NY 10001" -184698,USB-C Charging Cable,2,11.95,04/13/19 21:26,"297 4th St, Los Angeles, CA 90001" -184699,AA Batteries (4-pack),1,3.84,04/07/19 23:25,"168 Highland St, New York City, NY 10001" -184700,AA Batteries (4-pack),2,3.84,04/04/19 19:43,"363 South St, Los Angeles, CA 90001" -184701,AAA Batteries (4-pack),2,2.99,04/01/19 12:42,"763 Maple St, Dallas, TX 75001" -184702,Wired Headphones,1,11.99,04/02/19 10:21,"449 Jackson St, Seattle, WA 98101" -184703,AA Batteries (4-pack),1,3.84,04/08/19 13:21,"840 Elm St, Austin, TX 73301" -184704,27in 4K Gaming Monitor,1,389.99,04/02/19 10:15,"76 Washington St, Seattle, WA 98101" -184705,USB-C Charging Cable,1,11.95,04/23/19 16:59,"335 Chestnut St, Atlanta, GA 30301" -184706,Apple Airpods Headphones,1,150,04/12/19 11:35,"841 Jackson St, Boston, MA 02215" -184707,27in FHD Monitor,1,149.99,04/24/19 18:25,"887 Spruce St, New York City, NY 10001" -184708,AA Batteries (4-pack),1,3.84,04/30/19 11:09,"146 Dogwood St, Los Angeles, CA 90001" -184709,USB-C Charging Cable,1,11.95,04/02/19 18:02,"589 4th St, San Francisco, CA 94016" -184710,iPhone,1,700,04/21/19 13:57,"921 12th St, Dallas, TX 75001" -184710,Wired Headphones,3,11.99,04/21/19 13:57,"921 12th St, Dallas, TX 75001" -184711,27in 4K Gaming Monitor,1,389.99,04/30/19 00:28,"124 Willow St, San Francisco, CA 94016" -184712,Lightning Charging Cable,1,14.95,04/20/19 20:35,"293 Sunset St, San Francisco, CA 94016" -184712,AA Batteries (4-pack),1,3.84,04/20/19 20:35,"293 Sunset St, San Francisco, CA 94016" -184713,Lightning Charging Cable,1,14.95,04/19/19 10:56,"101 7th St, Los Angeles, CA 90001" -184714,Bose SoundSport Headphones,1,99.99,04/25/19 12:50,"46 9th St, San Francisco, CA 94016" -184715,Bose SoundSport Headphones,1,99.99,04/09/19 19:38,"270 Church St, Austin, TX 73301" -184716,Macbook Pro Laptop,1,1700,04/20/19 10:33,"192 2nd St, Atlanta, GA 30301" -184717,USB-C Charging Cable,1,11.95,04/04/19 10:17,"439 Forest St, Atlanta, GA 30301" -184717,USB-C Charging Cable,1,11.95,04/04/19 10:17,"439 Forest St, Atlanta, GA 30301" -184718,AAA Batteries (4-pack),3,2.99,04/01/19 12:30,"452 12th St, Los Angeles, CA 90001" -184719,Apple Airpods Headphones,1,150,04/15/19 23:04,"857 5th St, San Francisco, CA 94016" -184720,Lightning Charging Cable,1,14.95,04/18/19 12:13,"122 Elm St, Los Angeles, CA 90001" -184721,Lightning Charging Cable,1,14.95,04/28/19 19:56,"520 Center St, San Francisco, CA 94016" -184722,AA Batteries (4-pack),1,3.84,04/13/19 02:19,"621 Main St, San Francisco, CA 94016" -184723,AAA Batteries (4-pack),1,2.99,04/12/19 16:22,"52 5th St, Atlanta, GA 30301" -184724,Lightning Charging Cable,1,14.95,04/13/19 18:01,"809 Wilson St, New York City, NY 10001" -184725,Bose SoundSport Headphones,1,99.99,04/19/19 18:37,"229 Church St, Seattle, WA 98101" -184726,Google Phone,1,600,04/23/19 11:26,"142 Lakeview St, Seattle, WA 98101" -184727,Bose SoundSport Headphones,1,99.99,04/08/19 14:11,"232 Spruce St, San Francisco, CA 94016" -184728,Wired Headphones,1,11.99,04/03/19 09:11,"227 Center St, San Francisco, CA 94016" -184729,Vareebadd Phone,1,400,04/11/19 19:36,"933 Elm St, Los Angeles, CA 90001" -184729,Wired Headphones,2,11.99,04/11/19 19:36,"933 Elm St, Los Angeles, CA 90001" -184730,AAA Batteries (4-pack),3,2.99,04/20/19 21:34,"781 Church St, Boston, MA 02215" -184731,AAA Batteries (4-pack),1,2.99,04/14/19 08:40,"828 10th St, Portland, OR 97035" -184732,Apple Airpods Headphones,1,150,04/03/19 09:10,"991 13th St, New York City, NY 10001" -184733,Google Phone,1,600,04/11/19 10:08,"421 Forest St, Los Angeles, CA 90001" -184733,Bose SoundSport Headphones,1,99.99,04/11/19 10:08,"421 Forest St, Los Angeles, CA 90001" -184734,Google Phone,1,600,04/08/19 09:16,"670 Sunset St, Atlanta, GA 30301" -184734,Bose SoundSport Headphones,1,99.99,04/08/19 09:16,"670 Sunset St, Atlanta, GA 30301" -184735,Vareebadd Phone,1,400,04/13/19 11:45,"747 Pine St, Los Angeles, CA 90001" -184736,Wired Headphones,2,11.99,04/10/19 12:24,"749 Lincoln St, Atlanta, GA 30301" -184737,AA Batteries (4-pack),2,3.84,04/07/19 00:33,"956 9th St, Dallas, TX 75001" -184738,AAA Batteries (4-pack),3,2.99,04/01/19 09:01,"622 River St, New York City, NY 10001" -184739,Wired Headphones,1,11.99,04/21/19 14:55,"924 Highland St, San Francisco, CA 94016" -184740,iPhone,1,700,04/19/19 11:08,"807 12th St, Atlanta, GA 30301" -184741,27in FHD Monitor,1,149.99,04/09/19 12:00,"85 Washington St, New York City, NY 10001" -184742,Bose SoundSport Headphones,1,99.99,04/15/19 22:09,"938 4th St, San Francisco, CA 94016" -184743,Apple Airpods Headphones,1,150,04/24/19 15:49,"80 Lake St, Los Angeles, CA 90001" -184744,Lightning Charging Cable,1,14.95,04/26/19 09:23,"343 Adams St, Los Angeles, CA 90001" -184745,27in 4K Gaming Monitor,1,389.99,04/22/19 23:38,"889 Madison St, San Francisco, CA 94016" -184746,Wired Headphones,1,11.99,04/03/19 00:41,"772 11th St, San Francisco, CA 94016" -184747,USB-C Charging Cable,1,11.95,04/16/19 11:28,"803 Lincoln St, Atlanta, GA 30301" -184748,Bose SoundSport Headphones,1,99.99,04/19/19 10:18,"464 4th St, Portland, OR 97035" -184749,AA Batteries (4-pack),1,3.84,04/20/19 05:31,"515 Lincoln St, Boston, MA 02215" -184750,Macbook Pro Laptop,1,1700,04/07/19 18:39,"650 Johnson St, Austin, TX 73301" -184751,USB-C Charging Cable,1,11.95,04/02/19 17:01,"124 Meadow St, New York City, NY 10001" -184752,AA Batteries (4-pack),1,3.84,04/19/19 08:22,"731 Dogwood St, Portland, ME 04101" -184753,Lightning Charging Cable,1,14.95,04/12/19 20:35,"132 Johnson St, Portland, ME 04101" -184754,USB-C Charging Cable,1,11.95,04/11/19 09:56,"775 Park St, Seattle, WA 98101" -184755,Lightning Charging Cable,1,14.95,04/30/19 09:43,"486 Lincoln St, San Francisco, CA 94016" -184756,20in Monitor,1,109.99,04/17/19 13:41,"502 4th St, Los Angeles, CA 90001" -184757,Bose SoundSport Headphones,1,99.99,04/15/19 12:01,"640 Elm St, San Francisco, CA 94016" -184758,iPhone,1,700,04/13/19 20:02,"306 7th St, New York City, NY 10001" -184758,Lightning Charging Cable,1,14.95,04/13/19 20:02,"306 7th St, New York City, NY 10001" -184759,Google Phone,1,600,04/17/19 21:05,"803 Church St, Boston, MA 02215" -184760,Lightning Charging Cable,1,14.95,04/19/19 14:56,"446 West St, Seattle, WA 98101" -184761,27in 4K Gaming Monitor,1,389.99,04/16/19 10:43,"561 6th St, Seattle, WA 98101" -184762,USB-C Charging Cable,1,11.95,04/10/19 19:45,"525 9th St, Los Angeles, CA 90001" -184763,USB-C Charging Cable,1,11.95,04/05/19 12:30,"873 Dogwood St, Boston, MA 02215" -184764,AA Batteries (4-pack),1,3.84,04/21/19 13:16,"900 Hill St, Atlanta, GA 30301" -184765,Google Phone,1,600,04/15/19 21:32,"995 Lake St, San Francisco, CA 94016" -184765,USB-C Charging Cable,1,11.95,04/15/19 21:32,"995 Lake St, San Francisco, CA 94016" -184766,iPhone,1,700,04/16/19 14:36,"349 12th St, Seattle, WA 98101" -184767,AA Batteries (4-pack),1,3.84,04/18/19 20:04,"188 1st St, Los Angeles, CA 90001" -184768,Wired Headphones,1,11.99,04/26/19 20:07,"979 Hill St, San Francisco, CA 94016" -184769,AA Batteries (4-pack),2,3.84,04/18/19 17:45,"945 7th St, Los Angeles, CA 90001" -184770,AA Batteries (4-pack),2,3.84,04/18/19 16:01,"623 Wilson St, Los Angeles, CA 90001" -184771,Lightning Charging Cable,1,14.95,04/02/19 09:44,"936 Sunset St, New York City, NY 10001" -184772,USB-C Charging Cable,1,11.95,04/08/19 20:52,"414 Lake St, Atlanta, GA 30301" -184773,34in Ultrawide Monitor,1,379.99,04/26/19 11:40,"364 Hickory St, San Francisco, CA 94016" -184774,AAA Batteries (4-pack),1,2.99,04/09/19 17:49,"520 Meadow St, Atlanta, GA 30301" -184775,Lightning Charging Cable,1,14.95,04/01/19 07:57,"327 Willow St, Seattle, WA 98101" -184776,Wired Headphones,1,11.99,04/03/19 18:28,"362 Washington St, Portland, OR 97035" -184777,20in Monitor,1,109.99,04/02/19 19:16,"957 Main St, New York City, NY 10001" -184778,AA Batteries (4-pack),2,3.84,04/03/19 11:41,"275 Hickory St, Seattle, WA 98101" -184779,USB-C Charging Cable,1,11.95,04/05/19 20:04,"979 Ridge St, New York City, NY 10001" -184780,Lightning Charging Cable,1,14.95,04/04/19 16:06,"283 River St, Los Angeles, CA 90001" -184781,AA Batteries (4-pack),1,3.84,04/22/19 09:35,"802 8th St, Portland, OR 97035" -184782,Bose SoundSport Headphones,1,99.99,04/02/19 23:51,"407 Meadow St, San Francisco, CA 94016" -184783,Bose SoundSport Headphones,1,99.99,04/10/19 19:21,"645 Lake St, San Francisco, CA 94016" -184784,Macbook Pro Laptop,1,1700,04/14/19 10:43,"150 Cherry St, Atlanta, GA 30301" -184785,Macbook Pro Laptop,1,1700,04/30/19 19:58,"552 Hickory St, San Francisco, CA 94016" -184786,Wired Headphones,1,11.99,04/18/19 09:45,"183 Maple St, San Francisco, CA 94016" -184787,Lightning Charging Cable,1,14.95,04/12/19 17:10,"725 Hill St, San Francisco, CA 94016" -184788,Wired Headphones,1,11.99,04/16/19 09:05,"988 Johnson St, Portland, OR 97035" -184789,Bose SoundSport Headphones,1,99.99,04/26/19 21:23,"393 1st St, Dallas, TX 75001" -184790,Macbook Pro Laptop,1,1700,04/01/19 20:34,"68 Jackson St, San Francisco, CA 94016" -184791,Flatscreen TV,1,300,04/04/19 12:23,"478 12th St, Boston, MA 02215" -184792,Flatscreen TV,1,300,04/25/19 21:04,"76 10th St, Portland, OR 97035" -184793,Lightning Charging Cable,1,14.95,04/26/19 10:02,"639 14th St, Los Angeles, CA 90001" -184794,Macbook Pro Laptop,1,1700,04/13/19 18:04,"321 Jefferson St, New York City, NY 10001" -184795,iPhone,1,700,04/18/19 13:59,"41 Jackson St, Austin, TX 73301" -184795,Wired Headphones,1,11.99,04/18/19 13:59,"41 Jackson St, Austin, TX 73301" -184796,Wired Headphones,1,11.99,04/01/19 22:58,"514 Wilson St, San Francisco, CA 94016" -184797,AA Batteries (4-pack),1,3.84,04/18/19 11:22,"949 Lincoln St, San Francisco, CA 94016" -184798,Wired Headphones,1,11.99,04/26/19 19:14,"718 Willow St, Dallas, TX 75001" -184799,Macbook Pro Laptop,1,1700,04/17/19 17:24,"527 Willow St, San Francisco, CA 94016" -184800,Apple Airpods Headphones,1,150,04/21/19 09:48,"184 Center St, New York City, NY 10001" -184801,AAA Batteries (4-pack),1,2.99,04/27/19 09:44,"69 Cherry St, Austin, TX 73301" -184802,AA Batteries (4-pack),1,3.84,04/05/19 14:33,"797 Meadow St, Los Angeles, CA 90001" -184803,iPhone,1,700,04/11/19 23:32,"380 14th St, San Francisco, CA 94016" -184804,Wired Headphones,2,11.99,04/15/19 16:52,"537 Lake St, Boston, MA 02215" -184805,AAA Batteries (4-pack),2,2.99,04/30/19 07:17,"994 North St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -184806,Lightning Charging Cable,1,14.95,04/02/19 09:41,"650 7th St, Seattle, WA 98101" -184807,34in Ultrawide Monitor,1,379.99,04/21/19 21:56,"924 5th St, New York City, NY 10001" -184808,Apple Airpods Headphones,1,150,04/10/19 20:58,"329 North St, Dallas, TX 75001" -,,,,, -184809,34in Ultrawide Monitor,1,379.99,04/21/19 20:58,"42 Madison St, Los Angeles, CA 90001" -184810,AAA Batteries (4-pack),2,2.99,04/05/19 13:01,"625 Highland St, San Francisco, CA 94016" -184811,Wired Headphones,1,11.99,04/05/19 19:37,"623 Adams St, San Francisco, CA 94016" -184812,Apple Airpods Headphones,1,150,04/17/19 20:33,"729 7th St, Seattle, WA 98101" -184813,USB-C Charging Cable,1,11.95,04/26/19 06:09,"216 Chestnut St, Atlanta, GA 30301" -184813,AA Batteries (4-pack),1,3.84,04/26/19 06:09,"216 Chestnut St, Atlanta, GA 30301" -184814,27in FHD Monitor,1,149.99,04/06/19 20:56,"739 6th St, San Francisco, CA 94016" -184815,ThinkPad Laptop,1,999.99,04/18/19 13:15,"141 Highland St, Boston, MA 02215" -184816,Wired Headphones,1,11.99,04/23/19 21:59,"420 Walnut St, San Francisco, CA 94016" -184817,Lightning Charging Cable,1,14.95,04/30/19 13:01,"283 Cherry St, Dallas, TX 75001" -184818,AA Batteries (4-pack),1,3.84,04/29/19 12:56,"555 Pine St, Atlanta, GA 30301" -184819,Macbook Pro Laptop,1,1700,04/04/19 10:21,"587 Lakeview St, San Francisco, CA 94016" -184820,Apple Airpods Headphones,1,150,04/10/19 10:48,"171 13th St, San Francisco, CA 94016" -184821,Apple Airpods Headphones,1,150,04/27/19 12:14,"575 Jefferson St, San Francisco, CA 94016" -184822,USB-C Charging Cable,1,11.95,04/27/19 22:20,"446 Spruce St, Boston, MA 02215" -184823,Apple Airpods Headphones,1,150,04/09/19 07:55,"147 Hickory St, Los Angeles, CA 90001" -184824,Lightning Charging Cable,1,14.95,04/09/19 15:13,"462 Meadow St, New York City, NY 10001" -184825,AAA Batteries (4-pack),1,2.99,04/30/19 13:57,"212 Lakeview St, Seattle, WA 98101" -184826,34in Ultrawide Monitor,1,379.99,04/08/19 20:17,"429 Cherry St, New York City, NY 10001" -184827,Apple Airpods Headphones,1,150,04/02/19 11:44,"97 Cedar St, New York City, NY 10001" -184828,Vareebadd Phone,1,400,04/22/19 17:15,"199 11th St, Atlanta, GA 30301" -184828,USB-C Charging Cable,1,11.95,04/22/19 17:15,"199 11th St, Atlanta, GA 30301" -184829,Flatscreen TV,1,300,04/02/19 23:36,"372 Washington St, Boston, MA 02215" -184830,27in FHD Monitor,1,149.99,04/05/19 20:58,"9 Walnut St, New York City, NY 10001" -184831,Lightning Charging Cable,2,14.95,04/25/19 12:15,"693 14th St, San Francisco, CA 94016" -184832,AA Batteries (4-pack),1,3.84,04/18/19 12:14,"838 Meadow St, San Francisco, CA 94016" -184832,Wired Headphones,1,11.99,04/18/19 12:14,"838 Meadow St, San Francisco, CA 94016" -184833,Wired Headphones,2,11.99,04/23/19 22:51,"103 Jefferson St, Boston, MA 02215" -184834,Lightning Charging Cable,1,14.95,04/18/19 19:27,"659 6th St, Austin, TX 73301" -184835,Lightning Charging Cable,1,14.95,04/12/19 20:17,"339 14th St, New York City, NY 10001" -184836,Lightning Charging Cable,1,14.95,04/19/19 18:07,"769 Chestnut St, Atlanta, GA 30301" -184837,AA Batteries (4-pack),1,3.84,04/11/19 09:45,"513 Center St, Atlanta, GA 30301" -184838,USB-C Charging Cable,1,11.95,04/09/19 09:40,"735 Hickory St, Los Angeles, CA 90001" -184839,Lightning Charging Cable,1,14.95,04/06/19 11:58,"995 Sunset St, New York City, NY 10001" -184840,AA Batteries (4-pack),1,3.84,04/11/19 17:11,"542 Jackson St, San Francisco, CA 94016" -184840,USB-C Charging Cable,1,11.95,04/11/19 17:11,"542 Jackson St, San Francisco, CA 94016" -184841,Lightning Charging Cable,1,14.95,04/03/19 10:56,"394 Cherry St, San Francisco, CA 94016" -184842,AA Batteries (4-pack),1,3.84,04/16/19 05:52,"267 7th St, Los Angeles, CA 90001" -184843,iPhone,1,700,04/29/19 18:30,"415 2nd St, Los Angeles, CA 90001" -184844,LG Washing Machine,1,600.0,04/05/19 18:57,"154 Jefferson St, Los Angeles, CA 90001" -184845,Apple Airpods Headphones,1,150,04/04/19 13:44,"326 4th St, Dallas, TX 75001" -184846,AA Batteries (4-pack),1,3.84,04/14/19 13:21,"588 South St, Portland, OR 97035" -184847,USB-C Charging Cable,1,11.95,04/05/19 11:22,"98 11th St, San Francisco, CA 94016" -184848,AAA Batteries (4-pack),1,2.99,04/07/19 11:24,"60 Main St, Los Angeles, CA 90001" -184849,AAA Batteries (4-pack),1,2.99,04/21/19 13:00,"87 10th St, San Francisco, CA 94016" -184850,AAA Batteries (4-pack),1,2.99,04/03/19 15:01,"577 Church St, New York City, NY 10001" -184851,USB-C Charging Cable,1,11.95,04/20/19 01:11,"301 West St, San Francisco, CA 94016" -184852,AAA Batteries (4-pack),1,2.99,04/11/19 11:42,"22 2nd St, Los Angeles, CA 90001" -184853,Vareebadd Phone,1,400,04/17/19 10:07,"509 6th St, Boston, MA 02215" -184853,Wired Headphones,1,11.99,04/17/19 10:07,"509 6th St, Boston, MA 02215" -184854,AA Batteries (4-pack),1,3.84,04/06/19 15:36,"930 7th St, San Francisco, CA 94016" -184855,AAA Batteries (4-pack),3,2.99,04/03/19 11:31,"19 Madison St, New York City, NY 10001" -184856,27in 4K Gaming Monitor,1,389.99,04/28/19 11:15,"163 Cherry St, Los Angeles, CA 90001" -184857,AAA Batteries (4-pack),2,2.99,04/23/19 18:02,"751 Pine St, Atlanta, GA 30301" -184858,iPhone,1,700,04/09/19 22:38,"747 2nd St, Atlanta, GA 30301" -184859,iPhone,1,700,04/26/19 10:33,"92 Jackson St, Boston, MA 02215" -184860,AA Batteries (4-pack),1,3.84,04/27/19 13:15,"789 Lincoln St, New York City, NY 10001" -184861,USB-C Charging Cable,1,11.95,04/12/19 02:03,"806 5th St, Austin, TX 73301" -184862,Apple Airpods Headphones,1,150,04/26/19 15:32,"791 6th St, Seattle, WA 98101" -184862,Lightning Charging Cable,1,14.95,04/26/19 15:32,"791 6th St, Seattle, WA 98101" -184863,27in FHD Monitor,1,149.99,04/25/19 16:21,"683 Highland St, Dallas, TX 75001" -184864,AA Batteries (4-pack),1,3.84,04/22/19 20:35,"401 West St, New York City, NY 10001" -184865,20in Monitor,1,109.99,04/14/19 08:44,"300 Jackson St, Seattle, WA 98101" -184866,Wired Headphones,1,11.99,04/06/19 21:56,"650 Madison St, Austin, TX 73301" -184867,Apple Airpods Headphones,1,150,04/24/19 18:57,"522 River St, Los Angeles, CA 90001" -184868,27in FHD Monitor,1,149.99,04/26/19 04:13,"72 Dogwood St, Los Angeles, CA 90001" -184869,Apple Airpods Headphones,1,150,04/14/19 00:05,"308 6th St, Seattle, WA 98101" -184870,Apple Airpods Headphones,1,150,04/23/19 09:59,"938 Cedar St, Boston, MA 02215" -184871,34in Ultrawide Monitor,1,379.99,04/14/19 20:59,"600 Chestnut St, Atlanta, GA 30301" -184872,USB-C Charging Cable,1,11.95,04/14/19 09:17,"552 Lakeview St, New York City, NY 10001" -184873,20in Monitor,1,109.99,04/27/19 03:33,"996 11th St, Austin, TX 73301" -184874,iPhone,1,700,04/22/19 19:23,"600 Main St, Austin, TX 73301" -184875,AAA Batteries (4-pack),1,2.99,04/27/19 20:07,"462 Dogwood St, Atlanta, GA 30301" -184876,USB-C Charging Cable,2,11.95,04/20/19 15:47,"817 1st St, New York City, NY 10001" -184877,Apple Airpods Headphones,1,150,04/10/19 15:07,"289 Hill St, Portland, ME 04101" -184878,Bose SoundSport Headphones,1,99.99,04/12/19 12:20,"594 Hickory St, San Francisco, CA 94016" -184879,Lightning Charging Cable,1,14.95,04/05/19 21:23,"141 Hickory St, Atlanta, GA 30301" -184880,Lightning Charging Cable,1,14.95,04/08/19 10:23,"748 West St, San Francisco, CA 94016" -184881,AAA Batteries (4-pack),1,2.99,04/20/19 12:15,"898 Willow St, San Francisco, CA 94016" -184882,iPhone,1,700,04/01/19 17:32,"183 Lakeview St, New York City, NY 10001" -184883,AAA Batteries (4-pack),3,2.99,04/04/19 12:04,"292 Sunset St, Dallas, TX 75001" -184884,Flatscreen TV,1,300,04/18/19 17:07,"732 Jackson St, Dallas, TX 75001" -184885,USB-C Charging Cable,1,11.95,04/16/19 13:48,"163 Highland St, New York City, NY 10001" -184886,Google Phone,1,600,04/17/19 20:32,"875 Hickory St, Los Angeles, CA 90001" -184887,USB-C Charging Cable,1,11.95,04/21/19 11:25,"337 Spruce St, San Francisco, CA 94016" -184888,Wired Headphones,1,11.99,04/20/19 19:44,"318 Wilson St, San Francisco, CA 94016" -184889,AAA Batteries (4-pack),1,2.99,04/06/19 23:13,"432 Hill St, Atlanta, GA 30301" -184890,iPhone,1,700,04/13/19 12:13,"543 5th St, San Francisco, CA 94016" -184891,Apple Airpods Headphones,1,150,04/06/19 08:44,"148 Jackson St, San Francisco, CA 94016" -184892,AA Batteries (4-pack),1,3.84,04/09/19 17:00,"40 Cedar St, Dallas, TX 75001" -184893,Wired Headphones,1,11.99,04/04/19 15:43,"348 13th St, Portland, ME 04101" -184894,Flatscreen TV,1,300,04/14/19 14:04,"964 14th St, Seattle, WA 98101" -184895,Lightning Charging Cable,1,14.95,04/26/19 19:28,"483 13th St, Seattle, WA 98101" -184896,LG Dryer,1,600.0,04/12/19 06:12,"549 Maple St, Austin, TX 73301" -184897,20in Monitor,1,109.99,04/18/19 11:16,"105 Lakeview St, San Francisco, CA 94016" -184898,27in FHD Monitor,1,149.99,04/21/19 13:16,"274 Chestnut St, Atlanta, GA 30301" -184899,34in Ultrawide Monitor,1,379.99,04/08/19 22:40,"480 West St, Atlanta, GA 30301" -184900,Macbook Pro Laptop,1,1700,04/23/19 18:04,"137 Main St, Austin, TX 73301" -184901,Flatscreen TV,1,300,04/06/19 09:22,"344 Highland St, Los Angeles, CA 90001" -184902,Lightning Charging Cable,1,14.95,04/21/19 17:33,"299 Dogwood St, Boston, MA 02215" -184903,27in 4K Gaming Monitor,1,389.99,04/12/19 20:59,"185 Adams St, San Francisco, CA 94016" -184904,27in 4K Gaming Monitor,1,389.99,04/19/19 23:15,"751 8th St, Portland, OR 97035" -184905,USB-C Charging Cable,1,11.95,04/26/19 08:49,"4 Lakeview St, San Francisco, CA 94016" -184906,Wired Headphones,1,11.99,04/27/19 18:53,"878 Pine St, Seattle, WA 98101" -184907,Lightning Charging Cable,1,14.95,04/22/19 19:47,"321 Dogwood St, Los Angeles, CA 90001" -184908,Flatscreen TV,1,300,04/12/19 18:16,"148 Hill St, Los Angeles, CA 90001" -184909,Lightning Charging Cable,1,14.95,04/13/19 10:31,"357 Walnut St, Los Angeles, CA 90001" -184910,27in 4K Gaming Monitor,1,389.99,04/21/19 12:27,"371 Jefferson St, Dallas, TX 75001" -184911,Apple Airpods Headphones,1,150,04/03/19 16:51,"40 1st St, Atlanta, GA 30301" -184912,Lightning Charging Cable,1,14.95,04/14/19 02:49,"43 River St, Austin, TX 73301" -184913,Bose SoundSport Headphones,1,99.99,04/17/19 18:26,"342 Cedar St, New York City, NY 10001" -184914,Apple Airpods Headphones,1,150,04/22/19 18:58,"819 Center St, Austin, TX 73301" -184915,Vareebadd Phone,1,400,04/19/19 03:34,"473 Lincoln St, Boston, MA 02215" -184916,Lightning Charging Cable,1,14.95,04/21/19 08:40,"678 Park St, New York City, NY 10001" -184917,27in FHD Monitor,1,149.99,04/15/19 15:54,"473 Highland St, Seattle, WA 98101" -184918,Apple Airpods Headphones,1,150,04/09/19 11:16,"681 13th St, San Francisco, CA 94016" -184919,Google Phone,1,600,04/07/19 16:38,"343 10th St, Boston, MA 02215" -184920,USB-C Charging Cable,1,11.95,04/19/19 05:10,"94 Hill St, Atlanta, GA 30301" -184921,LG Dryer,1,600.0,04/12/19 21:50,"284 Hill St, Los Angeles, CA 90001" -184922,Lightning Charging Cable,1,14.95,04/22/19 17:05,"35 Jefferson St, San Francisco, CA 94016" -184923,iPhone,1,700,04/29/19 19:35,"426 5th St, Atlanta, GA 30301" -184924,Flatscreen TV,1,300,04/09/19 14:52,"241 Church St, San Francisco, CA 94016" -184925,Lightning Charging Cable,1,14.95,04/21/19 12:25,"824 Pine St, San Francisco, CA 94016" -184926,Wired Headphones,1,11.99,04/06/19 07:41,"308 Church St, New York City, NY 10001" -184927,Google Phone,1,600,04/17/19 19:35,"673 Highland St, Seattle, WA 98101" -184928,Wired Headphones,1,11.99,04/11/19 10:28,"331 2nd St, Boston, MA 02215" -184929,USB-C Charging Cable,2,11.95,04/04/19 18:39,"544 Hill St, New York City, NY 10001" -184930,USB-C Charging Cable,1,11.95,04/17/19 16:33,"145 Chestnut St, Portland, OR 97035" -184931,Flatscreen TV,1,300,04/05/19 02:42,"911 Hill St, Portland, OR 97035" -184932,Apple Airpods Headphones,1,150,04/29/19 09:20,"965 River St, San Francisco, CA 94016" -184933,USB-C Charging Cable,1,11.95,04/13/19 21:34,"89 Hill St, Dallas, TX 75001" -184934,Flatscreen TV,1,300,04/27/19 17:15,"989 7th St, San Francisco, CA 94016" -184935,34in Ultrawide Monitor,1,379.99,04/20/19 14:38,"360 Highland St, Austin, TX 73301" -184936,Apple Airpods Headphones,1,150,04/04/19 09:43,"568 2nd St, Austin, TX 73301" -184937,Bose SoundSport Headphones,1,99.99,04/29/19 13:40,"220 Adams St, New York City, NY 10001" -184938,27in 4K Gaming Monitor,1,389.99,04/16/19 19:05,"594 Chestnut St, New York City, NY 10001" -184939,Google Phone,1,600,04/24/19 00:24,"476 2nd St, New York City, NY 10001" -184939,USB-C Charging Cable,1,11.95,04/24/19 00:24,"476 2nd St, New York City, NY 10001" -184940,27in FHD Monitor,1,149.99,04/29/19 20:17,"999 4th St, Portland, OR 97035" -184941,27in FHD Monitor,1,149.99,04/21/19 15:54,"41 14th St, Seattle, WA 98101" -184942,20in Monitor,1,109.99,04/20/19 22:01,"590 2nd St, San Francisco, CA 94016" -184943,AAA Batteries (4-pack),3,2.99,04/08/19 21:52,"437 Main St, Dallas, TX 75001" -184944,AAA Batteries (4-pack),1,2.99,04/16/19 19:37,"530 River St, Dallas, TX 75001" -184945,Google Phone,1,600,04/24/19 05:41,"57 Highland St, New York City, NY 10001" -184946,Wired Headphones,1,11.99,04/04/19 11:42,"373 Jefferson St, Boston, MA 02215" -184947,27in 4K Gaming Monitor,1,389.99,04/29/19 09:47,"553 West St, San Francisco, CA 94016" -184948,USB-C Charging Cable,1,11.95,04/30/19 13:39,"222 2nd St, Seattle, WA 98101" -184949,Google Phone,1,600,04/13/19 06:28,"312 10th St, San Francisco, CA 94016" -184950,27in FHD Monitor,1,149.99,04/12/19 12:30,"544 Madison St, Los Angeles, CA 90001" -184951,Lightning Charging Cable,2,14.95,04/20/19 14:57,"809 10th St, Los Angeles, CA 90001" -184952,34in Ultrawide Monitor,1,379.99,04/17/19 09:13,"747 Sunset St, San Francisco, CA 94016" -184953,Google Phone,1,600,04/26/19 12:48,"702 River St, Austin, TX 73301" -184954,Wired Headphones,1,11.99,04/28/19 18:06,"358 Highland St, Dallas, TX 75001" -184955,AA Batteries (4-pack),1,3.84,04/17/19 22:35,"191 9th St, Los Angeles, CA 90001" -184956,Bose SoundSport Headphones,1,99.99,04/05/19 22:56,"165 Walnut St, San Francisco, CA 94016" -184956,AAA Batteries (4-pack),1,2.99,04/05/19 22:56,"165 Walnut St, San Francisco, CA 94016" -184957,Apple Airpods Headphones,1,150,04/15/19 12:03,"475 11th St, San Francisco, CA 94016" -184958,AA Batteries (4-pack),1,3.84,04/09/19 14:35,"666 North St, Los Angeles, CA 90001" -184959,Wired Headphones,1,11.99,04/18/19 08:31,"666 Maple St, Los Angeles, CA 90001" -184960,Flatscreen TV,1,300,04/09/19 17:58,"151 Ridge St, Austin, TX 73301" -184961,27in 4K Gaming Monitor,1,389.99,04/24/19 12:11,"662 Highland St, Los Angeles, CA 90001" -184962,USB-C Charging Cable,1,11.95,04/09/19 17:43,"313 11th St, Boston, MA 02215" -184963,Lightning Charging Cable,1,14.95,04/08/19 17:24,"627 Johnson St, Atlanta, GA 30301" -184964,27in 4K Gaming Monitor,1,389.99,04/12/19 12:52,"67 Cedar St, New York City, NY 10001" -184965,Macbook Pro Laptop,1,1700,04/30/19 01:30,"757 6th St, Austin, TX 73301" -184966,Google Phone,1,600,04/11/19 16:43,"233 10th St, Portland, OR 97035" -184967,27in 4K Gaming Monitor,1,389.99,04/01/19 15:34,"969 4th St, Los Angeles, CA 90001" -184968,Wired Headphones,1,11.99,04/02/19 10:55,"333 Forest St, Atlanta, GA 30301" -184969,Apple Airpods Headphones,1,150,04/14/19 16:24,"705 Hickory St, San Francisco, CA 94016" -184970,Apple Airpods Headphones,1,150,04/21/19 04:08,"187 Spruce St, San Francisco, CA 94016" -184971,27in FHD Monitor,1,149.99,04/09/19 17:09,"751 Elm St, Boston, MA 02215" -184972,Apple Airpods Headphones,1,150,04/10/19 19:56,"714 Chestnut St, Atlanta, GA 30301" -184973,USB-C Charging Cable,1,11.95,04/11/19 17:55,"925 Elm St, San Francisco, CA 94016" -184974,AA Batteries (4-pack),1,3.84,04/13/19 17:23,"907 Lincoln St, New York City, NY 10001" -184975,Bose SoundSport Headphones,1,99.99,04/09/19 12:32,"355 Wilson St, San Francisco, CA 94016" -184976,Wired Headphones,1,11.99,04/09/19 17:00,"741 Chestnut St, Boston, MA 02215" -184977,AA Batteries (4-pack),1,3.84,04/07/19 15:14,"347 Center St, Portland, OR 97035" -184978,USB-C Charging Cable,1,11.95,04/24/19 17:38,"769 12th St, Los Angeles, CA 90001" -184979,Vareebadd Phone,1,400,04/18/19 15:59,"547 River St, Boston, MA 02215" -184979,USB-C Charging Cable,1,11.95,04/18/19 15:59,"547 River St, Boston, MA 02215" -184980,Apple Airpods Headphones,1,150,04/04/19 10:49,"231 Sunset St, Los Angeles, CA 90001" -184981,iPhone,1,700,04/29/19 11:56,"662 Washington St, New York City, NY 10001" -184982,iPhone,1,700,04/27/19 10:01,"517 1st St, Boston, MA 02215" -184983,AA Batteries (4-pack),1,3.84,04/19/19 19:36,"940 Walnut St, San Francisco, CA 94016" -184984,Google Phone,1,600,04/05/19 03:44,"115 Highland St, San Francisco, CA 94016" -184985,Lightning Charging Cable,1,14.95,04/26/19 20:48,"706 Lincoln St, New York City, NY 10001" -184986,Apple Airpods Headphones,1,150,04/09/19 13:39,"594 Spruce St, San Francisco, CA 94016" -184987,Lightning Charging Cable,1,14.95,04/03/19 16:10,"623 2nd St, New York City, NY 10001" -184988,Lightning Charging Cable,1,14.95,04/26/19 09:51,"120 9th St, San Francisco, CA 94016" -184989,Apple Airpods Headphones,1,150,04/26/19 11:57,"819 5th St, Atlanta, GA 30301" -184990,iPhone,1,700,04/05/19 21:01,"136 7th St, Los Angeles, CA 90001" -184991,Flatscreen TV,1,300,04/17/19 08:07,"157 Hickory St, Los Angeles, CA 90001" -184992,AA Batteries (4-pack),1,3.84,04/10/19 23:32,"654 Park St, San Francisco, CA 94016" -184993,34in Ultrawide Monitor,1,379.99,04/05/19 23:48,"783 Highland St, San Francisco, CA 94016" -184994,20in Monitor,1,109.99,04/23/19 14:07,"444 Maple St, Atlanta, GA 30301" -184995,Bose SoundSport Headphones,1,99.99,04/05/19 14:55,"291 Madison St, San Francisco, CA 94016" -184996,20in Monitor,1,109.99,04/29/19 13:26,"516 8th St, San Francisco, CA 94016" -184997,Wired Headphones,1,11.99,04/08/19 17:45,"81 North St, San Francisco, CA 94016" -184998,AA Batteries (4-pack),2,3.84,04/23/19 15:27,"316 Adams St, Los Angeles, CA 90001" -184999,Apple Airpods Headphones,1,150,04/26/19 23:08,"200 Ridge St, Los Angeles, CA 90001" -185000,Lightning Charging Cable,1,14.95,04/03/19 12:03,"192 Hill St, Austin, TX 73301" -185001,USB-C Charging Cable,1,11.95,04/06/19 10:28,"563 Meadow St, Boston, MA 02215" -185002,Vareebadd Phone,1,400,04/04/19 10:17,"78 11th St, New York City, NY 10001" -185003,ThinkPad Laptop,1,999.99,04/06/19 20:12,"195 Hickory St, Portland, OR 97035" -185003,USB-C Charging Cable,1,11.95,04/06/19 20:12,"195 Hickory St, Portland, OR 97035" -185004,AA Batteries (4-pack),1,3.84,04/02/19 10:17,"103 13th St, Los Angeles, CA 90001" -185005,Lightning Charging Cable,1,14.95,04/23/19 12:35,"531 14th St, Dallas, TX 75001" -185006,Lightning Charging Cable,1,14.95,04/30/19 19:51,"704 Maple St, Los Angeles, CA 90001" -185007,AA Batteries (4-pack),1,3.84,04/02/19 22:03,"75 Pine St, San Francisco, CA 94016" -185008,20in Monitor,1,109.99,04/13/19 08:52,"158 1st St, Atlanta, GA 30301" -185009,AA Batteries (4-pack),1,3.84,04/19/19 13:09,"716 5th St, Los Angeles, CA 90001" -185010,Apple Airpods Headphones,1,150,04/28/19 20:11,"538 Ridge St, San Francisco, CA 94016" -185011,AA Batteries (4-pack),1,3.84,04/23/19 22:47,"288 Highland St, Austin, TX 73301" -185012,AAA Batteries (4-pack),2,2.99,04/07/19 16:41,"164 6th St, Boston, MA 02215" -185013,27in 4K Gaming Monitor,1,389.99,04/29/19 10:10,"546 1st St, Seattle, WA 98101" -185014,USB-C Charging Cable,1,11.95,04/01/19 09:22,"401 South St, Boston, MA 02215" -185015,USB-C Charging Cable,1,11.95,04/12/19 20:12,"396 4th St, New York City, NY 10001" -185016,LG Dryer,1,600.0,04/22/19 13:20,"801 Hickory St, San Francisco, CA 94016" -185017,27in FHD Monitor,1,149.99,04/29/19 10:54,"882 Park St, Los Angeles, CA 90001" -185018,34in Ultrawide Monitor,1,379.99,04/11/19 00:07,"853 Pine St, Seattle, WA 98101" -185019,Lightning Charging Cable,1,14.95,04/19/19 11:15,"677 Madison St, Boston, MA 02215" -185020,Macbook Pro Laptop,1,1700,04/09/19 18:03,"208 Jefferson St, San Francisco, CA 94016" -185021,Wired Headphones,1,11.99,04/10/19 19:15,"466 Spruce St, Boston, MA 02215" -185022,Bose SoundSport Headphones,1,99.99,04/10/19 16:59,"739 Jackson St, San Francisco, CA 94016" -185023,USB-C Charging Cable,1,11.95,04/04/19 10:32,"319 Wilson St, San Francisco, CA 94016" -185024,Lightning Charging Cable,1,14.95,04/30/19 00:38,"452 Jefferson St, San Francisco, CA 94016" -185025,ThinkPad Laptop,1,999.99,04/15/19 12:51,"24 2nd St, Atlanta, GA 30301" -185026,27in FHD Monitor,1,149.99,04/03/19 15:13,"845 Ridge St, Boston, MA 02215" -185027,Macbook Pro Laptop,1,1700,04/25/19 19:20,"141 Washington St, Los Angeles, CA 90001" -185028,Lightning Charging Cable,1,14.95,04/07/19 13:49,"77 4th St, Boston, MA 02215" -185029,LG Dryer,1,600.0,04/23/19 14:02,"487 Lake St, San Francisco, CA 94016" -185030,Lightning Charging Cable,1,14.95,04/01/19 18:05,"80 Center St, Boston, MA 02215" -185031,iPhone,1,700,04/01/19 17:14,"352 8th St, Los Angeles, CA 90001" -185032,Lightning Charging Cable,1,14.95,04/02/19 19:16,"958 Cedar St, New York City, NY 10001" -185033,AA Batteries (4-pack),4,3.84,04/23/19 18:12,"63 Adams St, New York City, NY 10001" -185034,AAA Batteries (4-pack),3,2.99,04/20/19 14:10,"124 Jackson St, Los Angeles, CA 90001" -185035,AAA Batteries (4-pack),1,2.99,04/27/19 10:18,"647 West St, Seattle, WA 98101" -185036,Wired Headphones,1,11.99,04/12/19 09:14,"423 Hill St, Los Angeles, CA 90001" -185037,AAA Batteries (4-pack),2,2.99,04/20/19 14:01,"158 Willow St, Dallas, TX 75001" -185038,AAA Batteries (4-pack),1,2.99,04/25/19 08:10,"299 Forest St, Boston, MA 02215" -185039,AAA Batteries (4-pack),2,2.99,04/27/19 20:23,"509 7th St, Los Angeles, CA 90001" -185040,Bose SoundSport Headphones,1,99.99,04/11/19 17:48,"390 Johnson St, New York City, NY 10001" -185041,Apple Airpods Headphones,1,150,04/01/19 10:18,"13 14th St, New York City, NY 10001" -185042,27in FHD Monitor,1,149.99,04/26/19 17:41,"965 Cedar St, Boston, MA 02215" -185043,Apple Airpods Headphones,1,150,04/27/19 22:00,"866 Pine St, Dallas, TX 75001" -185044,Apple Airpods Headphones,1,150,04/05/19 22:16,"759 Johnson St, San Francisco, CA 94016" -185045,Flatscreen TV,1,300,04/16/19 07:52,"916 Lake St, Dallas, TX 75001" -185046,27in FHD Monitor,1,149.99,04/18/19 11:47,"61 Jackson St, San Francisco, CA 94016" -185047,Bose SoundSport Headphones,1,99.99,04/30/19 10:40,"864 10th St, Los Angeles, CA 90001" -185048,Macbook Pro Laptop,1,1700,04/22/19 12:21,"53 9th St, San Francisco, CA 94016" -185049,AA Batteries (4-pack),2,3.84,04/24/19 20:10,"601 River St, San Francisco, CA 94016" -185050,ThinkPad Laptop,1,999.99,04/12/19 10:00,"994 River St, Dallas, TX 75001" -185051,Apple Airpods Headphones,1,150,04/27/19 16:24,"64 Hickory St, Dallas, TX 75001" -185052,Google Phone,1,600,04/24/19 21:51,"33 Lincoln St, Seattle, WA 98101" -185052,USB-C Charging Cable,1,11.95,04/24/19 21:51,"33 Lincoln St, Seattle, WA 98101" -185052,Wired Headphones,1,11.99,04/24/19 21:51,"33 Lincoln St, Seattle, WA 98101" -,,,,, -185053,Lightning Charging Cable,1,14.95,04/30/19 17:27,"167 Highland St, Boston, MA 02215" -185054,Flatscreen TV,1,300,04/08/19 20:59,"671 7th St, New York City, NY 10001" -185055,Lightning Charging Cable,1,14.95,04/20/19 16:29,"194 9th St, New York City, NY 10001" -185056,Bose SoundSport Headphones,1,99.99,04/19/19 12:22,"673 13th St, Portland, ME 04101" -185057,34in Ultrawide Monitor,1,379.99,04/04/19 10:28,"474 Lincoln St, New York City, NY 10001" -185058,AAA Batteries (4-pack),1,2.99,04/04/19 19:27,"346 Lake St, Dallas, TX 75001" -185059,Bose SoundSport Headphones,1,99.99,04/11/19 22:07,"438 River St, San Francisco, CA 94016" -185060,iPhone,1,700,04/16/19 19:16,"180 8th St, Portland, OR 97035" -185061,USB-C Charging Cable,1,11.95,04/09/19 10:28,"835 River St, Austin, TX 73301" -185062,Bose SoundSport Headphones,1,99.99,04/23/19 09:52,"545 Hill St, New York City, NY 10001" -185063,iPhone,1,700,04/02/19 15:17,"529 Jefferson St, San Francisco, CA 94016" -185064,AAA Batteries (4-pack),1,2.99,04/23/19 15:08,"848 Wilson St, New York City, NY 10001" -185065,Flatscreen TV,1,300,04/21/19 20:23,"590 Meadow St, Los Angeles, CA 90001" -185066,USB-C Charging Cable,1,11.95,04/09/19 08:38,"211 Forest St, New York City, NY 10001" -185066,Apple Airpods Headphones,1,150,04/09/19 08:38,"211 Forest St, New York City, NY 10001" -185067,USB-C Charging Cable,2,11.95,04/21/19 20:42,"152 Adams St, Seattle, WA 98101" -185068,ThinkPad Laptop,1,999.99,04/09/19 20:04,"784 Wilson St, Portland, OR 97035" -185069,27in 4K Gaming Monitor,1,389.99,04/22/19 05:58,"233 Chestnut St, Los Angeles, CA 90001" -185070,Bose SoundSport Headphones,1,99.99,04/06/19 00:07,"970 Adams St, Austin, TX 73301" -185071,Wired Headphones,1,11.99,04/04/19 10:50,"643 9th St, Atlanta, GA 30301" -185072,Bose SoundSport Headphones,1,99.99,04/24/19 23:39,"977 Main St, Boston, MA 02215" -185073,Macbook Pro Laptop,1,1700,04/14/19 12:01,"736 1st St, Portland, OR 97035" -185074,Lightning Charging Cable,1,14.95,04/20/19 19:13,"510 Pine St, San Francisco, CA 94016" -185075,Apple Airpods Headphones,1,150,04/14/19 19:43,"53 Center St, Atlanta, GA 30301" -185076,Google Phone,1,600,04/13/19 11:00,"922 10th St, San Francisco, CA 94016" -185077,AAA Batteries (4-pack),3,2.99,04/13/19 06:49,"971 Maple St, Atlanta, GA 30301" -185078,AAA Batteries (4-pack),1,2.99,04/07/19 16:05,"476 5th St, Atlanta, GA 30301" -185079,Bose SoundSport Headphones,1,99.99,04/09/19 13:57,"585 8th St, Portland, OR 97035" -185080,Lightning Charging Cable,1,14.95,04/08/19 08:48,"195 Sunset St, New York City, NY 10001" -185081,Google Phone,1,600,04/11/19 08:34,"132 Center St, San Francisco, CA 94016" -185082,USB-C Charging Cable,1,11.95,04/19/19 18:12,"990 4th St, Seattle, WA 98101" -185083,USB-C Charging Cable,1,11.95,04/22/19 23:03,"936 8th St, Los Angeles, CA 90001" -185084,Apple Airpods Headphones,1,150,04/05/19 17:01,"246 4th St, Dallas, TX 75001" -185085,Lightning Charging Cable,1,14.95,04/21/19 10:06,"189 Madison St, San Francisco, CA 94016" -185086,Wired Headphones,1,11.99,04/26/19 10:14,"172 Jefferson St, Austin, TX 73301" -185087,AA Batteries (4-pack),1,3.84,04/12/19 22:02,"165 Spruce St, San Francisco, CA 94016" -185088,Wired Headphones,1,11.99,04/30/19 06:31,"666 Wilson St, Los Angeles, CA 90001" -185089,AAA Batteries (4-pack),1,2.99,04/18/19 20:27,"553 Main St, Los Angeles, CA 90001" -185090,Macbook Pro Laptop,1,1700,04/15/19 09:21,"255 Sunset St, Seattle, WA 98101" -185091,Wired Headphones,1,11.99,04/09/19 20:44,"274 13th St, Atlanta, GA 30301" -185092,AA Batteries (4-pack),1,3.84,04/27/19 10:26,"59 North St, New York City, NY 10001" -185093,Bose SoundSport Headphones,1,99.99,04/23/19 18:07,"343 Main St, New York City, NY 10001" -185094,AA Batteries (4-pack),1,3.84,04/05/19 21:42,"980 South St, New York City, NY 10001" -185095,Lightning Charging Cable,1,14.95,04/28/19 22:21,"933 5th St, New York City, NY 10001" -185096,Apple Airpods Headphones,1,150,04/13/19 16:27,"426 Willow St, New York City, NY 10001" -185097,34in Ultrawide Monitor,1,379.99,04/19/19 20:20,"38 Pine St, New York City, NY 10001" -185098,AA Batteries (4-pack),1,3.84,04/10/19 11:02,"825 Madison St, Portland, ME 04101" -185099,Wired Headphones,1,11.99,04/21/19 18:14,"858 5th St, New York City, NY 10001" -185100,iPhone,1,700,04/30/19 13:16,"533 Washington St, San Francisco, CA 94016" -185101,Bose SoundSport Headphones,1,99.99,04/14/19 05:33,"571 11th St, New York City, NY 10001" -185102,AAA Batteries (4-pack),3,2.99,04/05/19 06:37,"283 Chestnut St, San Francisco, CA 94016" -185103,USB-C Charging Cable,1,11.95,04/01/19 05:18,"610 Washington St, San Francisco, CA 94016" -185104,Lightning Charging Cable,1,14.95,04/03/19 10:19,"463 Sunset St, San Francisco, CA 94016" -185105,27in FHD Monitor,1,149.99,04/30/19 00:26,"941 Washington St, Atlanta, GA 30301" -185106,AAA Batteries (4-pack),1,2.99,04/13/19 08:40,"864 Willow St, New York City, NY 10001" -185107,AAA Batteries (4-pack),1,2.99,04/27/19 15:59,"595 Jackson St, Los Angeles, CA 90001" -185108,27in 4K Gaming Monitor,1,389.99,04/05/19 13:28,"49 Johnson St, Boston, MA 02215" -185109,USB-C Charging Cable,1,11.95,04/03/19 23:58,"199 2nd St, San Francisco, CA 94016" -185110,USB-C Charging Cable,1,11.95,04/09/19 11:52,"534 14th St, Boston, MA 02215" -185111,Vareebadd Phone,1,400,04/25/19 20:51,"179 Elm St, San Francisco, CA 94016" -185111,USB-C Charging Cable,1,11.95,04/25/19 20:51,"179 Elm St, San Francisco, CA 94016" -185112,Apple Airpods Headphones,1,150,04/05/19 11:25,"92 Center St, Los Angeles, CA 90001" -185113,AAA Batteries (4-pack),2,2.99,04/28/19 07:52,"608 11th St, Austin, TX 73301" -185114,34in Ultrawide Monitor,1,379.99,04/08/19 12:06,"992 Willow St, Seattle, WA 98101" -185115,Lightning Charging Cable,2,14.95,04/27/19 14:39,"700 14th St, Atlanta, GA 30301" -185116,Lightning Charging Cable,1,14.95,04/03/19 13:51,"718 Main St, Atlanta, GA 30301" -185117,USB-C Charging Cable,1,11.95,04/28/19 16:08,"718 Main St, New York City, NY 10001" -185118,Flatscreen TV,1,300,04/12/19 00:13,"200 5th St, Los Angeles, CA 90001" -185119,Macbook Pro Laptop,1,1700,04/21/19 12:53,"336 Johnson St, Boston, MA 02215" -185119,Wired Headphones,1,11.99,04/21/19 12:53,"336 Johnson St, Boston, MA 02215" -185120,Macbook Pro Laptop,1,1700,04/28/19 12:29,"731 Spruce St, San Francisco, CA 94016" -185121,Apple Airpods Headphones,1,150,04/01/19 17:02,"873 Jefferson St, New York City, NY 10001" -185122,AAA Batteries (4-pack),1,2.99,04/29/19 11:21,"731 Dogwood St, New York City, NY 10001" -185123,ThinkPad Laptop,1,999.99,04/24/19 15:00,"717 Elm St, San Francisco, CA 94016" -185124,Wired Headphones,1,11.99,04/07/19 20:55,"252 9th St, New York City, NY 10001" -185125,AAA Batteries (4-pack),1,2.99,04/13/19 20:11,"738 Washington St, San Francisco, CA 94016" -185126,AAA Batteries (4-pack),2,2.99,04/22/19 23:19,"754 Lincoln St, Atlanta, GA 30301" -185127,Wired Headphones,1,11.99,04/16/19 20:53,"857 Pine St, Seattle, WA 98101" -185128,Lightning Charging Cable,1,14.95,04/27/19 13:09,"455 4th St, San Francisco, CA 94016" -185129,Lightning Charging Cable,1,14.95,04/05/19 20:59,"931 Lake St, San Francisco, CA 94016" -185130,iPhone,1,700,04/15/19 10:51,"798 Church St, San Francisco, CA 94016" -185130,Lightning Charging Cable,1,14.95,04/15/19 10:51,"798 Church St, San Francisco, CA 94016" -185131,20in Monitor,1,109.99,04/19/19 18:39,"827 Hickory St, Los Angeles, CA 90001" -185132,AAA Batteries (4-pack),1,2.99,04/06/19 19:58,"422 5th St, San Francisco, CA 94016" -185133,USB-C Charging Cable,1,11.95,04/27/19 01:21,"685 Washington St, Dallas, TX 75001" -185134,Bose SoundSport Headphones,1,99.99,04/26/19 16:44,"801 Adams St, San Francisco, CA 94016" -185135,AA Batteries (4-pack),2,3.84,04/06/19 05:36,"978 6th St, Atlanta, GA 30301" -185136,27in 4K Gaming Monitor,1,389.99,04/06/19 20:52,"129 North St, New York City, NY 10001" -185137,Apple Airpods Headphones,1,150,04/28/19 16:38,"417 Johnson St, Los Angeles, CA 90001" -185138,AAA Batteries (4-pack),1,2.99,04/12/19 11:28,"600 Walnut St, Los Angeles, CA 90001" -185139,USB-C Charging Cable,1,11.95,04/13/19 12:10,"997 Madison St, Los Angeles, CA 90001" -185140,Lightning Charging Cable,2,14.95,04/02/19 20:20,"162 Johnson St, New York City, NY 10001" -185141,Wired Headphones,1,11.99,04/28/19 04:16,"135 Pine St, Dallas, TX 75001" -185142,Apple Airpods Headphones,1,150,04/05/19 17:33,"856 11th St, San Francisco, CA 94016" -185143,Lightning Charging Cable,1,14.95,04/02/19 14:32,"886 Lakeview St, New York City, NY 10001" -185144,Lightning Charging Cable,1,14.95,04/10/19 05:56,"489 Jefferson St, San Francisco, CA 94016" -185145,Lightning Charging Cable,1,14.95,04/24/19 13:15,"679 Hill St, Los Angeles, CA 90001" -185146,Wired Headphones,1,11.99,04/25/19 14:29,"478 13th St, Dallas, TX 75001" -185147,AA Batteries (4-pack),1,3.84,04/08/19 17:49,"919 North St, Los Angeles, CA 90001" -185148,AAA Batteries (4-pack),1,2.99,04/16/19 08:21,"762 Center St, San Francisco, CA 94016" -185149,AA Batteries (4-pack),1,3.84,04/25/19 09:20,"166 6th St, San Francisco, CA 94016" -185150,Wired Headphones,1,11.99,04/11/19 11:13,"504 Willow St, Atlanta, GA 30301" -185151,AA Batteries (4-pack),1,3.84,04/29/19 13:40,"182 Ridge St, Portland, OR 97035" -185152,Vareebadd Phone,1,400,04/14/19 09:12,"744 14th St, Seattle, WA 98101" -185153,Lightning Charging Cable,1,14.95,04/11/19 08:13,"377 Church St, New York City, NY 10001" -185154,AAA Batteries (4-pack),1,2.99,04/28/19 09:45,"612 Hickory St, Boston, MA 02215" -185155,USB-C Charging Cable,1,11.95,04/08/19 13:02,"698 Walnut St, Los Angeles, CA 90001" -185156,AA Batteries (4-pack),1,3.84,04/05/19 20:04,"482 Madison St, Atlanta, GA 30301" -185157,AAA Batteries (4-pack),1,2.99,04/01/19 14:21,"808 Jefferson St, New York City, NY 10001" -185158,Bose SoundSport Headphones,1,99.99,04/27/19 10:01,"266 Jefferson St, Dallas, TX 75001" -185159,34in Ultrawide Monitor,1,379.99,04/17/19 21:36,"192 Lincoln St, Seattle, WA 98101" -185160,iPhone,1,700,04/17/19 22:11,"854 Hill St, New York City, NY 10001" -185160,Wired Headphones,1,11.99,04/17/19 22:11,"854 Hill St, New York City, NY 10001" -185161,Macbook Pro Laptop,1,1700,04/16/19 19:50,"870 Lincoln St, Boston, MA 02215" -185162,27in FHD Monitor,1,149.99,04/11/19 23:46,"775 9th St, Los Angeles, CA 90001" -185163,Apple Airpods Headphones,1,150,04/28/19 18:44,"376 Cedar St, Portland, OR 97035" -185164,27in 4K Gaming Monitor,1,389.99,04/20/19 12:21,"621 Maple St, San Francisco, CA 94016" -185165,Lightning Charging Cable,2,14.95,04/16/19 07:42,"849 8th St, Los Angeles, CA 90001" -185166,ThinkPad Laptop,1,999.99,04/12/19 12:00,"591 Jackson St, Dallas, TX 75001" -185167,AAA Batteries (4-pack),1,2.99,04/10/19 08:28,"588 Spruce St, Atlanta, GA 30301" -185167,Wired Headphones,1,11.99,04/10/19 08:28,"588 Spruce St, Atlanta, GA 30301" -185168,Vareebadd Phone,1,400,04/26/19 08:12,"151 Jackson St, San Francisco, CA 94016" -185169,AAA Batteries (4-pack),1,2.99,04/18/19 04:13,"185 Elm St, Los Angeles, CA 90001" -185170,USB-C Charging Cable,1,11.95,04/22/19 07:36,"913 Dogwood St, Los Angeles, CA 90001" -185171,USB-C Charging Cable,1,11.95,04/04/19 12:00,"300 10th St, Los Angeles, CA 90001" -185172,AAA Batteries (4-pack),1,2.99,04/22/19 13:33,"785 Washington St, Portland, OR 97035" -185173,iPhone,1,700,04/17/19 20:32,"573 Cherry St, Boston, MA 02215" -185174,iPhone,1,700,04/17/19 10:44,"189 Lincoln St, Los Angeles, CA 90001" -185175,34in Ultrawide Monitor,1,379.99,04/01/19 21:07,"992 Chestnut St, Los Angeles, CA 90001" -185176,AAA Batteries (4-pack),2,2.99,04/25/19 15:27,"213 12th St, New York City, NY 10001" -185177,34in Ultrawide Monitor,1,379.99,04/19/19 14:53,"626 14th St, San Francisco, CA 94016" -185178,ThinkPad Laptop,1,999.99,04/12/19 23:25,"701 Cedar St, San Francisco, CA 94016" -185179,Apple Airpods Headphones,1,150,04/26/19 17:15,"982 Main St, New York City, NY 10001" -185180,Apple Airpods Headphones,1,150,04/14/19 10:56,"822 10th St, San Francisco, CA 94016" -185181,Bose SoundSport Headphones,1,99.99,04/18/19 11:13,"888 2nd St, New York City, NY 10001" -185182,Lightning Charging Cable,1,14.95,04/16/19 15:03,"314 Meadow St, Dallas, TX 75001" -185183,27in FHD Monitor,1,149.99,04/03/19 11:30,"553 Dogwood St, Atlanta, GA 30301" -185184,Macbook Pro Laptop,1,1700,04/03/19 18:33,"685 Sunset St, New York City, NY 10001" -185185,ThinkPad Laptop,1,999.99,04/29/19 08:06,"485 Johnson St, Portland, ME 04101" -185186,USB-C Charging Cable,1,11.95,04/25/19 16:40,"742 Highland St, San Francisco, CA 94016" -185187,AAA Batteries (4-pack),1,2.99,04/23/19 14:19,"692 Jackson St, Los Angeles, CA 90001" -185188,Bose SoundSport Headphones,1,99.99,04/29/19 15:12,"678 5th St, Los Angeles, CA 90001" -185189,Bose SoundSport Headphones,1,99.99,04/28/19 14:47,"783 Washington St, Los Angeles, CA 90001" -185190,34in Ultrawide Monitor,1,379.99,04/10/19 19:36,"707 West St, Boston, MA 02215" -185191,Apple Airpods Headphones,1,150,04/28/19 10:11,"991 Spruce St, New York City, NY 10001" -185192,AAA Batteries (4-pack),1,2.99,04/18/19 12:12,"134 11th St, Boston, MA 02215" -185193,Lightning Charging Cable,1,14.95,04/16/19 21:38,"714 13th St, San Francisco, CA 94016" -185193,Lightning Charging Cable,1,14.95,04/16/19 21:38,"714 13th St, San Francisco, CA 94016" -185194,Wired Headphones,1,11.99,04/30/19 10:05,"605 Jackson St, New York City, NY 10001" -185195,Bose SoundSport Headphones,1,99.99,04/28/19 11:56,"694 13th St, San Francisco, CA 94016" -185196,AAA Batteries (4-pack),1,2.99,04/27/19 18:37,"665 Willow St, Austin, TX 73301" -185197,Lightning Charging Cable,1,14.95,04/02/19 17:43,"335 Meadow St, Los Angeles, CA 90001" -185198,USB-C Charging Cable,1,11.95,04/23/19 20:19,"298 Lincoln St, Seattle, WA 98101" -185199,AA Batteries (4-pack),1,3.84,04/26/19 19:54,"929 Main St, Los Angeles, CA 90001" -185200,ThinkPad Laptop,1,999.99,04/02/19 13:45,"446 7th St, Los Angeles, CA 90001" -185201,Vareebadd Phone,1,400,04/10/19 11:04,"106 Sunset St, Dallas, TX 75001" -185201,Apple Airpods Headphones,1,150,04/10/19 11:04,"106 Sunset St, Dallas, TX 75001" -185202,AAA Batteries (4-pack),2,2.99,04/26/19 22:27,"908 Elm St, Seattle, WA 98101" -185203,USB-C Charging Cable,1,11.95,04/21/19 17:02,"924 Elm St, San Francisco, CA 94016" -185204,Lightning Charging Cable,2,14.95,04/22/19 19:21,"965 8th St, New York City, NY 10001" -185204,27in 4K Gaming Monitor,1,389.99,04/22/19 19:21,"965 8th St, New York City, NY 10001" -185205,Lightning Charging Cable,1,14.95,04/13/19 00:00,"349 Center St, Boston, MA 02215" -185206,AAA Batteries (4-pack),1,2.99,04/11/19 18:47,"576 Jefferson St, San Francisco, CA 94016" -185207,27in FHD Monitor,1,149.99,04/24/19 23:34,"608 Center St, Atlanta, GA 30301" -185208,AAA Batteries (4-pack),2,2.99,04/04/19 21:53,"904 Forest St, New York City, NY 10001" -185209,Bose SoundSport Headphones,1,99.99,04/21/19 19:59,"67 13th St, San Francisco, CA 94016" -185210,Lightning Charging Cable,1,14.95,04/23/19 23:05,"319 Hickory St, San Francisco, CA 94016" -185211,AA Batteries (4-pack),2,3.84,04/21/19 08:56,"920 Lakeview St, Atlanta, GA 30301" -185212,Apple Airpods Headphones,1,150,04/23/19 18:44,"38 Highland St, New York City, NY 10001" -185213,27in FHD Monitor,1,149.99,04/09/19 20:59,"177 Center St, Los Angeles, CA 90001" -185214,27in FHD Monitor,1,149.99,04/10/19 19:04,"742 7th St, New York City, NY 10001" -185215,AA Batteries (4-pack),1,3.84,04/12/19 19:36,"718 Sunset St, Atlanta, GA 30301" -185216,USB-C Charging Cable,1,11.95,04/11/19 11:30,"212 5th St, New York City, NY 10001" -185217,USB-C Charging Cable,1,11.95,04/24/19 09:24,"19 Hill St, Dallas, TX 75001" -185218,USB-C Charging Cable,1,11.95,04/07/19 10:14,"237 6th St, Atlanta, GA 30301" -185219,27in FHD Monitor,1,149.99,04/30/19 13:53,"106 4th St, Boston, MA 02215" -185220,Flatscreen TV,1,300,04/12/19 01:41,"544 Johnson St, Austin, TX 73301" -185221,AA Batteries (4-pack),4,3.84,04/29/19 05:39,"74 Center St, New York City, NY 10001" -185222,Flatscreen TV,1,300,04/04/19 19:49,"172 River St, Boston, MA 02215" -185223,Flatscreen TV,1,300,04/01/19 09:52,"196 Wilson St, Los Angeles, CA 90001" -185224,27in FHD Monitor,1,149.99,04/13/19 16:12,"790 Highland St, Dallas, TX 75001" -185225,USB-C Charging Cable,1,11.95,04/11/19 09:29,"608 Jefferson St, San Francisco, CA 94016" -185226,AAA Batteries (4-pack),1,2.99,04/21/19 19:24,"681 Maple St, New York City, NY 10001" -185227,Google Phone,1,600,04/14/19 17:32,"16 Dogwood St, Atlanta, GA 30301" -185227,USB-C Charging Cable,1,11.95,04/14/19 17:32,"16 Dogwood St, Atlanta, GA 30301" -185228,AA Batteries (4-pack),2,3.84,04/15/19 10:07,"433 Main St, Los Angeles, CA 90001" -185229,Bose SoundSport Headphones,1,99.99,04/04/19 09:33,"797 Adams St, Portland, OR 97035" -185230,27in FHD Monitor,1,149.99,04/26/19 09:35,"695 11th St, Portland, ME 04101" -185231,34in Ultrawide Monitor,1,379.99,04/12/19 17:43,"311 North St, San Francisco, CA 94016" -185232,AAA Batteries (4-pack),1,2.99,04/05/19 18:58,"592 Madison St, Los Angeles, CA 90001" -185233,Flatscreen TV,1,300,04/20/19 22:44,"858 North St, Seattle, WA 98101" -185234,AA Batteries (4-pack),3,3.84,04/01/19 19:56,"702 Adams St, Los Angeles, CA 90001" -185235,20in Monitor,1,109.99,04/27/19 14:23,"612 Cedar St, Austin, TX 73301" -185236,LG Washing Machine,1,600.0,04/17/19 21:31,"475 13th St, San Francisco, CA 94016" -185237,Bose SoundSport Headphones,1,99.99,04/13/19 12:47,"910 4th St, Los Angeles, CA 90001" -185238,Lightning Charging Cable,1,14.95,04/26/19 11:58,"547 Hill St, Atlanta, GA 30301" -185239,Apple Airpods Headphones,1,150,04/22/19 01:55,"453 Ridge St, San Francisco, CA 94016" -185240,AA Batteries (4-pack),1,3.84,04/17/19 08:56,"469 South St, Los Angeles, CA 90001" -185241,Lightning Charging Cable,1,14.95,04/02/19 22:19,"81 Jefferson St, San Francisco, CA 94016" -185242,Wired Headphones,1,11.99,04/09/19 08:12,"42 Jefferson St, San Francisco, CA 94016" -185243,iPhone,1,700,04/05/19 21:20,"728 South St, Austin, TX 73301" -185244,iPhone,1,700,04/10/19 02:15,"614 Spruce St, San Francisco, CA 94016" -185245,Lightning Charging Cable,1,14.95,04/09/19 14:35,"447 North St, Seattle, WA 98101" -185246,Flatscreen TV,1,300,04/27/19 14:48,"893 6th St, Atlanta, GA 30301" -185247,27in 4K Gaming Monitor,1,389.99,04/10/19 12:58,"488 Jackson St, Portland, OR 97035" -185248,27in 4K Gaming Monitor,1,389.99,04/05/19 21:26,"124 River St, Boston, MA 02215" -185249,34in Ultrawide Monitor,1,379.99,04/17/19 10:50,"401 4th St, San Francisco, CA 94016" -185250,USB-C Charging Cable,1,11.95,04/30/19 21:06,"524 4th St, Boston, MA 02215" -185251,Macbook Pro Laptop,1,1700,04/25/19 14:31,"22 Willow St, San Francisco, CA 94016" -185252,Flatscreen TV,1,300,04/09/19 07:44,"952 Jackson St, Boston, MA 02215" -185253,20in Monitor,1,109.99,04/01/19 14:55,"626 Wilson St, New York City, NY 10001" -185254,USB-C Charging Cable,1,11.95,04/18/19 17:34,"985 River St, New York City, NY 10001" -185255,iPhone,1,700,04/17/19 13:46,"636 Adams St, Los Angeles, CA 90001" -185256,Bose SoundSport Headphones,1,99.99,04/25/19 15:20,"281 South St, San Francisco, CA 94016" -185257,Wired Headphones,1,11.99,04/14/19 21:14,"544 Lincoln St, Seattle, WA 98101" -185258,Lightning Charging Cable,1,14.95,04/11/19 20:33,"843 9th St, Portland, OR 97035" -185259,AA Batteries (4-pack),1,3.84,04/06/19 17:58,"164 Chestnut St, Atlanta, GA 30301" -185260,Macbook Pro Laptop,1,1700,04/18/19 09:56,"701 6th St, San Francisco, CA 94016" -185261,Wired Headphones,1,11.99,04/29/19 22:11,"947 West St, New York City, NY 10001" -185262,AA Batteries (4-pack),1,3.84,04/20/19 14:48,"816 Cedar St, Austin, TX 73301" -185263,Bose SoundSport Headphones,1,99.99,04/21/19 09:42,"470 Walnut St, Portland, OR 97035" -185264,Bose SoundSport Headphones,1,99.99,04/16/19 08:09,"935 Ridge St, New York City, NY 10001" -185265,Apple Airpods Headphones,1,150,04/09/19 16:51,"85 Washington St, Boston, MA 02215" -185266,Lightning Charging Cable,1,14.95,04/18/19 15:54,"991 South St, San Francisco, CA 94016" -185267,Lightning Charging Cable,2,14.95,04/10/19 08:44,"927 Hickory St, San Francisco, CA 94016" -185268,AAA Batteries (4-pack),1,2.99,04/15/19 09:41,"795 Elm St, New York City, NY 10001" -185269,AAA Batteries (4-pack),2,2.99,04/20/19 02:36,"622 7th St, New York City, NY 10001" -185270,Wired Headphones,1,11.99,04/04/19 22:33,"812 Elm St, San Francisco, CA 94016" -185271,Lightning Charging Cable,1,14.95,04/09/19 19:30,"33 Jefferson St, Boston, MA 02215" -185272,AAA Batteries (4-pack),1,2.99,04/07/19 11:00,"192 10th St, San Francisco, CA 94016" -185273,USB-C Charging Cable,1,11.95,04/13/19 22:18,"429 Dogwood St, Austin, TX 73301" -185274,Apple Airpods Headphones,1,150,04/08/19 10:50,"416 Elm St, Los Angeles, CA 90001" -185275,Google Phone,1,600,04/15/19 17:56,"912 Adams St, Los Angeles, CA 90001" -185276,Lightning Charging Cable,1,14.95,04/08/19 20:00,"621 South St, San Francisco, CA 94016" -185277,34in Ultrawide Monitor,1,379.99,04/06/19 16:19,"775 1st St, Seattle, WA 98101" -185278,Wired Headphones,1,11.99,04/21/19 20:17,"630 Elm St, Boston, MA 02215" -185279,27in FHD Monitor,1,149.99,04/01/19 09:52,"216 Elm St, Los Angeles, CA 90001" -185280,AAA Batteries (4-pack),1,2.99,04/05/19 19:58,"946 12th St, Austin, TX 73301" -185281,Wired Headphones,1,11.99,04/26/19 17:10,"248 12th St, Austin, TX 73301" -185282,LG Washing Machine,1,600.0,04/12/19 23:10,"827 Lincoln St, Austin, TX 73301" -185283,iPhone,1,700,04/23/19 14:26,"391 1st St, San Francisco, CA 94016" -185284,Apple Airpods Headphones,1,150,04/27/19 12:27,"359 14th St, Los Angeles, CA 90001" -185285,34in Ultrawide Monitor,1,379.99,04/12/19 20:00,"13 2nd St, San Francisco, CA 94016" -185286,USB-C Charging Cable,1,11.95,04/17/19 13:48,"1 River St, Los Angeles, CA 90001" -185287,27in FHD Monitor,1,149.99,04/03/19 09:42,"951 Madison St, San Francisco, CA 94016" -185288,Bose SoundSport Headphones,1,99.99,04/15/19 12:06,"778 Hickory St, San Francisco, CA 94016" -185289,Wired Headphones,2,11.99,04/08/19 07:25,"156 Hill St, Seattle, WA 98101" -185290,Lightning Charging Cable,1,14.95,04/18/19 01:20,"758 Lake St, Los Angeles, CA 90001" -185291,Bose SoundSport Headphones,1,99.99,04/20/19 23:37,"981 7th St, New York City, NY 10001" -185292,USB-C Charging Cable,2,11.95,04/24/19 00:01,"958 Wilson St, New York City, NY 10001" -185293,AA Batteries (4-pack),1,3.84,04/16/19 11:19,"270 11th St, Austin, TX 73301" -185294,AA Batteries (4-pack),2,3.84,04/28/19 10:10,"337 14th St, Atlanta, GA 30301" -185295,Bose SoundSport Headphones,1,99.99,04/07/19 14:46,"966 Hickory St, Austin, TX 73301" -185296,AAA Batteries (4-pack),1,2.99,04/24/19 12:00,"452 Johnson St, Los Angeles, CA 90001" -185297,USB-C Charging Cable,1,11.95,04/06/19 19:07,"548 South St, Atlanta, GA 30301" -185298,AAA Batteries (4-pack),1,2.99,04/20/19 21:15,"584 Ridge St, Austin, TX 73301" -185299,USB-C Charging Cable,1,11.95,04/19/19 09:10,"224 Hickory St, Los Angeles, CA 90001" -185300,USB-C Charging Cable,1,11.95,04/17/19 11:40,"916 2nd St, New York City, NY 10001" -185301,AA Batteries (4-pack),1,3.84,04/21/19 21:05,"126 Main St, Seattle, WA 98101" -185302,Lightning Charging Cable,1,14.95,04/15/19 08:21,"352 Washington St, Dallas, TX 75001" -185303,LG Dryer,1,600.0,04/01/19 17:34,"257 Highland St, New York City, NY 10001" -185304,AAA Batteries (4-pack),1,2.99,04/21/19 20:04,"505 8th St, Dallas, TX 75001" -185305,Wired Headphones,1,11.99,04/28/19 08:14,"668 Willow St, Atlanta, GA 30301" -185306,iPhone,1,700,04/14/19 13:12,"366 Lake St, Los Angeles, CA 90001" -185307,Apple Airpods Headphones,1,150,04/08/19 18:22,"496 5th St, Boston, MA 02215" -185308,Vareebadd Phone,1,400,04/10/19 13:43,"286 West St, San Francisco, CA 94016" -185308,34in Ultrawide Monitor,1,379.99,04/10/19 13:43,"286 West St, San Francisco, CA 94016" -185309,AA Batteries (4-pack),3,3.84,04/18/19 10:42,"73 2nd St, New York City, NY 10001" -185310,AA Batteries (4-pack),1,3.84,04/09/19 18:34,"872 12th St, San Francisco, CA 94016" -185311,Google Phone,1,600,04/21/19 18:57,"308 Forest St, New York City, NY 10001" -185311,Wired Headphones,1,11.99,04/21/19 18:57,"308 Forest St, New York City, NY 10001" -185312,iPhone,1,700,04/05/19 20:11,"35 South St, Los Angeles, CA 90001" -185313,Bose SoundSport Headphones,1,99.99,04/17/19 07:54,"429 10th St, Los Angeles, CA 90001" -185314,USB-C Charging Cable,1,11.95,04/17/19 13:40,"178 South St, Boston, MA 02215" -185315,27in 4K Gaming Monitor,1,389.99,04/07/19 01:20,"532 Lincoln St, Dallas, TX 75001" -185316,AA Batteries (4-pack),1,3.84,04/10/19 09:49,"740 11th St, Dallas, TX 75001" -185317,Flatscreen TV,1,300,04/12/19 17:23,"881 Forest St, Boston, MA 02215" -185318,AAA Batteries (4-pack),1,2.99,04/09/19 20:09,"942 Highland St, Portland, OR 97035" -185319,Wired Headphones,1,11.99,04/25/19 17:17,"705 Chestnut St, Dallas, TX 75001" -185320,Google Phone,1,600,04/02/19 17:42,"88 Highland St, Portland, OR 97035" -185321,Bose SoundSport Headphones,1,99.99,04/24/19 22:09,"551 13th St, Atlanta, GA 30301" -185322,LG Dryer,1,600.0,04/18/19 12:49,"269 5th St, Boston, MA 02215" -185323,Google Phone,1,600,04/30/19 13:50,"866 Dogwood St, Atlanta, GA 30301" -185324,AAA Batteries (4-pack),3,2.99,04/21/19 08:51,"121 Washington St, New York City, NY 10001" -185325,Lightning Charging Cable,2,14.95,04/27/19 01:56,"179 5th St, Boston, MA 02215" -185326,USB-C Charging Cable,1,11.95,04/10/19 21:53,"14 Lakeview St, Seattle, WA 98101" -185327,Wired Headphones,1,11.99,04/17/19 21:36,"737 Park St, Boston, MA 02215" -185328,Lightning Charging Cable,2,14.95,04/21/19 18:46,"871 West St, San Francisco, CA 94016" -185329,AAA Batteries (4-pack),1,2.99,04/27/19 19:53,"106 2nd St, Portland, OR 97035" -185330,AA Batteries (4-pack),1,3.84,04/14/19 18:57,"913 Wilson St, Atlanta, GA 30301" -185331,34in Ultrawide Monitor,1,379.99,04/19/19 19:53,"68 5th St, Los Angeles, CA 90001" -185332,AA Batteries (4-pack),2,3.84,04/23/19 13:35,"930 12th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -185333,Lightning Charging Cable,1,14.95,04/22/19 14:37,"476 13th St, Boston, MA 02215" -185334,Bose SoundSport Headphones,1,99.99,04/26/19 20:19,"151 Center St, New York City, NY 10001" -185335,Flatscreen TV,1,300,04/07/19 09:55,"853 8th St, Boston, MA 02215" -185336,AAA Batteries (4-pack),1,2.99,04/26/19 00:56,"613 Elm St, New York City, NY 10001" -185337,Wired Headphones,1,11.99,04/30/19 21:31,"227 11th St, New York City, NY 10001" -185338,iPhone,1,700,04/19/19 06:52,"988 Dogwood St, Los Angeles, CA 90001" -185339,AAA Batteries (4-pack),1,2.99,04/06/19 22:14,"329 Meadow St, Portland, ME 04101" -185340,AA Batteries (4-pack),1,3.84,04/12/19 18:52,"383 7th St, San Francisco, CA 94016" -185341,27in FHD Monitor,1,149.99,04/13/19 21:19,"579 7th St, Los Angeles, CA 90001" -185342,Bose SoundSport Headphones,1,99.99,04/21/19 13:44,"727 Lincoln St, Austin, TX 73301" -185343,Google Phone,1,600,04/02/19 19:39,"495 Hickory St, San Francisco, CA 94016" -185343,USB-C Charging Cable,1,11.95,04/02/19 19:39,"495 Hickory St, San Francisco, CA 94016" -185344,AAA Batteries (4-pack),2,2.99,04/04/19 14:39,"841 Elm St, Seattle, WA 98101" -185345,AAA Batteries (4-pack),3,2.99,04/06/19 08:48,"450 Walnut St, San Francisco, CA 94016" -185346,Flatscreen TV,1,300,04/23/19 17:37,"29 14th St, Los Angeles, CA 90001" -185347,USB-C Charging Cable,1,11.95,04/27/19 10:54,"599 4th St, Portland, OR 97035" -185348,Lightning Charging Cable,1,14.95,04/05/19 10:38,"961 5th St, Atlanta, GA 30301" -185349,AAA Batteries (4-pack),5,2.99,04/26/19 07:26,"675 Center St, Boston, MA 02215" -185350,Wired Headphones,1,11.99,04/09/19 02:35,"544 7th St, Los Angeles, CA 90001" -185351,Lightning Charging Cable,1,14.95,04/07/19 19:40,"148 Willow St, Boston, MA 02215" -185352,Vareebadd Phone,1,400,04/03/19 09:23,"25 7th St, Seattle, WA 98101" -185353,AAA Batteries (4-pack),2,2.99,04/01/19 14:36,"406 Johnson St, New York City, NY 10001" -185354,Wired Headphones,1,11.99,04/06/19 12:17,"230 Forest St, San Francisco, CA 94016" -185355,Bose SoundSport Headphones,1,99.99,04/05/19 18:59,"821 Church St, Dallas, TX 75001" -185356,AAA Batteries (4-pack),1,2.99,04/13/19 13:55,"99 Johnson St, New York City, NY 10001" -185357,Apple Airpods Headphones,1,150,04/25/19 16:20,"299 Forest St, Los Angeles, CA 90001" -185358,AA Batteries (4-pack),1,3.84,04/23/19 12:37,"778 Hill St, Dallas, TX 75001" -185359,USB-C Charging Cable,1,11.95,04/04/19 11:28,"97 Walnut St, Los Angeles, CA 90001" -185360,AAA Batteries (4-pack),1,2.99,04/21/19 19:38,"676 Hill St, San Francisco, CA 94016" -185361,AAA Batteries (4-pack),1,2.99,04/29/19 12:52,"839 Spruce St, San Francisco, CA 94016" -185362,AAA Batteries (4-pack),1,2.99,04/13/19 09:59,"263 Madison St, Austin, TX 73301" -185363,AA Batteries (4-pack),1,3.84,04/20/19 13:58,"212 Jackson St, Austin, TX 73301" -185364,Vareebadd Phone,1,400,04/16/19 18:04,"356 Walnut St, Boston, MA 02215" -185364,USB-C Charging Cable,1,11.95,04/16/19 18:04,"356 Walnut St, Boston, MA 02215" -185365,Bose SoundSport Headphones,1,99.99,04/17/19 07:41,"679 5th St, Seattle, WA 98101" -185366,Apple Airpods Headphones,1,150,04/23/19 20:06,"941 13th St, Portland, OR 97035" -185367,USB-C Charging Cable,1,11.95,04/06/19 18:28,"537 7th St, San Francisco, CA 94016" -185368,iPhone,1,700,04/08/19 16:48,"169 Hill St, Boston, MA 02215" -185369,Lightning Charging Cable,1,14.95,04/12/19 19:14,"724 Ridge St, San Francisco, CA 94016" -185370,Lightning Charging Cable,1,14.95,04/29/19 13:49,"110 9th St, Dallas, TX 75001" -185371,Macbook Pro Laptop,1,1700,04/21/19 11:37,"417 4th St, New York City, NY 10001" -185372,Apple Airpods Headphones,1,150,04/12/19 09:58,"308 Center St, San Francisco, CA 94016" -185373,Bose SoundSport Headphones,1,99.99,04/22/19 05:44,"337 Meadow St, Atlanta, GA 30301" -185374,Lightning Charging Cable,1,14.95,04/24/19 07:48,"428 Madison St, New York City, NY 10001" -185375,27in FHD Monitor,1,149.99,04/23/19 18:39,"532 Chestnut St, Boston, MA 02215" -185376,AAA Batteries (4-pack),1,2.99,04/26/19 18:26,"924 Lakeview St, Atlanta, GA 30301" -185377,27in 4K Gaming Monitor,1,389.99,04/08/19 21:51,"946 Adams St, New York City, NY 10001" -185378,Apple Airpods Headphones,1,150,04/08/19 19:23,"591 Hill St, New York City, NY 10001" -185379,AAA Batteries (4-pack),1,2.99,04/03/19 16:40,"303 11th St, Los Angeles, CA 90001" -185380,iPhone,1,700,04/17/19 14:21,"842 Madison St, San Francisco, CA 94016" -185381,27in FHD Monitor,1,149.99,04/27/19 09:49,"563 14th St, San Francisco, CA 94016" -185382,Lightning Charging Cable,1,14.95,04/04/19 02:40,"761 Main St, Los Angeles, CA 90001" -185383,34in Ultrawide Monitor,1,379.99,04/19/19 10:54,"723 13th St, Seattle, WA 98101" -185384,34in Ultrawide Monitor,1,379.99,04/20/19 09:21,"416 7th St, Los Angeles, CA 90001" -185385,Wired Headphones,1,11.99,04/26/19 10:45,"886 North St, Los Angeles, CA 90001" -185386,AAA Batteries (4-pack),1,2.99,04/24/19 10:53,"605 Forest St, Los Angeles, CA 90001" -185387,Wired Headphones,2,11.99,04/04/19 19:27,"49 Sunset St, New York City, NY 10001" -185388,Wired Headphones,1,11.99,04/02/19 09:43,"913 10th St, Los Angeles, CA 90001" -185389,Bose SoundSport Headphones,1,99.99,04/02/19 14:07,"995 Center St, Seattle, WA 98101" -185390,Flatscreen TV,1,300,04/09/19 21:47,"568 13th St, New York City, NY 10001" -185391,Bose SoundSport Headphones,1,99.99,04/05/19 14:12,"340 Maple St, Dallas, TX 75001" -185392,AA Batteries (4-pack),1,3.84,04/22/19 15:58,"949 9th St, Austin, TX 73301" -185393,34in Ultrawide Monitor,1,379.99,04/20/19 13:12,"174 Washington St, New York City, NY 10001" -185394,Lightning Charging Cable,1,14.95,04/05/19 18:55,"598 Madison St, Boston, MA 02215" -185395,20in Monitor,1,109.99,04/23/19 20:13,"51 North St, Dallas, TX 75001" -185396,Apple Airpods Headphones,1,150,04/10/19 10:57,"174 Adams St, New York City, NY 10001" -185397,20in Monitor,1,109.99,04/07/19 12:38,"421 Center St, Portland, OR 97035" -185398,Lightning Charging Cable,1,14.95,04/09/19 12:10,"383 Lincoln St, Los Angeles, CA 90001" -185399,AA Batteries (4-pack),1,3.84,04/26/19 08:05,"74 Adams St, Boston, MA 02215" -185399,27in FHD Monitor,1,149.99,04/26/19 08:05,"74 Adams St, Boston, MA 02215" -185400,Bose SoundSport Headphones,1,99.99,04/05/19 21:09,"426 5th St, New York City, NY 10001" -185401,20in Monitor,1,109.99,04/09/19 12:52,"105 5th St, Los Angeles, CA 90001" -185402,Apple Airpods Headphones,1,150,04/03/19 11:57,"621 Ridge St, Los Angeles, CA 90001" -185403,34in Ultrawide Monitor,1,379.99,04/10/19 20:20,"224 Cedar St, San Francisco, CA 94016" -185404,27in 4K Gaming Monitor,1,389.99,04/05/19 11:59,"136 Adams St, Boston, MA 02215" -185405,iPhone,1,700,04/20/19 18:33,"7 13th St, Seattle, WA 98101" -185405,Lightning Charging Cable,1,14.95,04/20/19 18:33,"7 13th St, Seattle, WA 98101" -185406,Wired Headphones,1,11.99,04/26/19 22:21,"863 River St, Dallas, TX 75001" -185407,Lightning Charging Cable,1,14.95,04/24/19 10:10,"363 Forest St, Boston, MA 02215" -185408,34in Ultrawide Monitor,1,379.99,04/03/19 11:12,"218 12th St, Los Angeles, CA 90001" -185409,Lightning Charging Cable,1,14.95,04/15/19 21:15,"912 Elm St, Seattle, WA 98101" -185410,Macbook Pro Laptop,1,1700,04/14/19 21:44,"217 Washington St, Seattle, WA 98101" -185411,USB-C Charging Cable,1,11.95,04/13/19 14:58,"664 Washington St, Boston, MA 02215" -185412,AAA Batteries (4-pack),2,2.99,04/05/19 21:38,"938 Hickory St, San Francisco, CA 94016" -185413,ThinkPad Laptop,1,999.99,04/02/19 18:11,"435 Elm St, Portland, OR 97035" -185414,Lightning Charging Cable,1,14.95,04/30/19 13:38,"511 Pine St, San Francisco, CA 94016" -185415,Wired Headphones,1,11.99,04/04/19 14:34,"725 Park St, San Francisco, CA 94016" -185416,AAA Batteries (4-pack),2,2.99,04/04/19 19:28,"955 Lake St, San Francisco, CA 94016" -185417,USB-C Charging Cable,2,11.95,04/15/19 15:11,"638 7th St, Seattle, WA 98101" -185418,27in FHD Monitor,1,149.99,04/18/19 06:48,"101 Madison St, New York City, NY 10001" -185419,Lightning Charging Cable,1,14.95,04/04/19 17:35,"315 Park St, San Francisco, CA 94016" -185420,AA Batteries (4-pack),1,3.84,04/08/19 19:57,"24 Meadow St, Austin, TX 73301" -185421,Lightning Charging Cable,1,14.95,04/21/19 13:46,"457 5th St, Atlanta, GA 30301" -185422,AA Batteries (4-pack),1,3.84,04/06/19 07:41,"82 Meadow St, Dallas, TX 75001" -185423,Apple Airpods Headphones,1,150,04/14/19 04:51,"189 10th St, Atlanta, GA 30301" -185424,AA Batteries (4-pack),1,3.84,04/27/19 09:42,"68 Highland St, Los Angeles, CA 90001" -,,,,, -185425,iPhone,1,700,04/11/19 19:58,"302 Meadow St, Seattle, WA 98101" -185426,AAA Batteries (4-pack),1,2.99,04/08/19 06:55,"700 Chestnut St, Boston, MA 02215" -185427,USB-C Charging Cable,2,11.95,04/02/19 18:34,"304 Meadow St, San Francisco, CA 94016" -185428,USB-C Charging Cable,1,11.95,04/11/19 23:21,"502 13th St, Seattle, WA 98101" -185429,Wired Headphones,1,11.99,04/10/19 07:18,"414 Lincoln St, New York City, NY 10001" -185430,34in Ultrawide Monitor,1,379.99,04/18/19 09:40,"916 Park St, Dallas, TX 75001" -185431,Lightning Charging Cable,1,14.95,04/18/19 23:21,"995 South St, San Francisco, CA 94016" -185432,27in FHD Monitor,1,149.99,04/11/19 18:25,"562 Jackson St, Austin, TX 73301" -185433,USB-C Charging Cable,1,11.95,04/13/19 20:12,"508 Lakeview St, New York City, NY 10001" -185434,AA Batteries (4-pack),1,3.84,04/27/19 11:08,"366 Madison St, Austin, TX 73301" -185435,Wired Headphones,1,11.99,04/08/19 17:11,"65 Spruce St, New York City, NY 10001" -185436,USB-C Charging Cable,1,11.95,04/06/19 10:33,"245 Lincoln St, New York City, NY 10001" -185437,Vareebadd Phone,1,400,04/24/19 11:32,"163 North St, San Francisco, CA 94016" -185437,Bose SoundSport Headphones,1,99.99,04/24/19 11:32,"163 North St, San Francisco, CA 94016" -185438,Lightning Charging Cable,1,14.95,04/23/19 19:29,"529 River St, Los Angeles, CA 90001" -185439,Lightning Charging Cable,1,14.95,04/07/19 13:33,"100 4th St, Boston, MA 02215" -185440,Apple Airpods Headphones,1,150,04/29/19 21:37,"826 Forest St, Austin, TX 73301" -185441,ThinkPad Laptop,1,999.99,04/24/19 18:58,"674 Lake St, Seattle, WA 98101" -185442,AA Batteries (4-pack),1,3.84,04/24/19 16:46,"169 Lincoln St, Los Angeles, CA 90001" -185443,34in Ultrawide Monitor,1,379.99,04/06/19 10:09,"631 14th St, San Francisco, CA 94016" -185444,USB-C Charging Cable,1,11.95,04/20/19 19:43,"860 South St, San Francisco, CA 94016" -185445,Apple Airpods Headphones,1,150,04/10/19 17:52,"413 Elm St, Los Angeles, CA 90001" -185446,AAA Batteries (4-pack),2,2.99,04/02/19 16:27,"827 Hill St, Portland, OR 97035" -185447,AA Batteries (4-pack),2,3.84,04/26/19 19:35,"40 Main St, Dallas, TX 75001" -185448,Bose SoundSport Headphones,1,99.99,04/09/19 12:23,"522 12th St, Dallas, TX 75001" -185449,USB-C Charging Cable,1,11.95,04/02/19 07:35,"597 Elm St, New York City, NY 10001" -185450,ThinkPad Laptop,1,999.99,04/06/19 15:54,"489 Walnut St, Los Angeles, CA 90001" -185451,20in Monitor,1,109.99,04/05/19 11:02,"686 Jefferson St, New York City, NY 10001" -185451,USB-C Charging Cable,1,11.95,04/05/19 11:02,"686 Jefferson St, New York City, NY 10001" -185452,Google Phone,1,600,04/04/19 00:49,"490 5th St, Atlanta, GA 30301" -185452,USB-C Charging Cable,1,11.95,04/04/19 00:49,"490 5th St, Atlanta, GA 30301" -185452,Wired Headphones,1,11.99,04/04/19 00:49,"490 5th St, Atlanta, GA 30301" -185453,Lightning Charging Cable,2,14.95,04/29/19 21:04,"519 Walnut St, New York City, NY 10001" -185454,iPhone,1,700,04/04/19 13:32,"782 Wilson St, San Francisco, CA 94016" -185455,AAA Batteries (4-pack),1,2.99,04/28/19 21:00,"451 Cherry St, San Francisco, CA 94016" -185456,AAA Batteries (4-pack),3,2.99,04/17/19 23:47,"210 Center St, San Francisco, CA 94016" -185457,Bose SoundSport Headphones,1,99.99,04/12/19 12:59,"722 South St, Austin, TX 73301" -185458,USB-C Charging Cable,1,11.95,04/07/19 18:17,"757 Center St, San Francisco, CA 94016" -185459,Google Phone,1,600,04/02/19 22:35,"712 Dogwood St, Los Angeles, CA 90001" -185460,20in Monitor,1,109.99,04/26/19 12:12,"91 Church St, New York City, NY 10001" -185461,AA Batteries (4-pack),2,3.84,04/22/19 13:32,"67 Hickory St, Atlanta, GA 30301" -185462,Bose SoundSport Headphones,1,99.99,04/13/19 22:50,"270 Dogwood St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -185463,Bose SoundSport Headphones,1,99.99,04/07/19 17:34,"940 Willow St, New York City, NY 10001" -185464,Wired Headphones,1,11.99,04/06/19 00:55,"490 Hill St, San Francisco, CA 94016" -185465,34in Ultrawide Monitor,1,379.99,04/12/19 06:36,"523 9th St, Austin, TX 73301" -185466,AAA Batteries (4-pack),2,2.99,04/26/19 18:59,"388 11th St, Austin, TX 73301" -185467,27in FHD Monitor,1,149.99,04/21/19 14:02,"81 Sunset St, Boston, MA 02215" -185468,Vareebadd Phone,1,400,04/01/19 15:22,"840 4th St, Boston, MA 02215" -185469,Lightning Charging Cable,1,14.95,04/09/19 21:08,"377 5th St, Los Angeles, CA 90001" -185470,Bose SoundSport Headphones,1,99.99,04/16/19 14:05,"961 2nd St, San Francisco, CA 94016" -185471,Bose SoundSport Headphones,1,99.99,04/16/19 22:48,"715 1st St, San Francisco, CA 94016" -185472,Lightning Charging Cable,1,14.95,04/16/19 20:27,"718 Wilson St, San Francisco, CA 94016" -185473,Wired Headphones,1,11.99,04/14/19 16:23,"824 Maple St, New York City, NY 10001" -185474,Lightning Charging Cable,1,14.95,04/13/19 11:20,"475 Adams St, Austin, TX 73301" -185475,Wired Headphones,1,11.99,04/29/19 23:16,"858 Madison St, Los Angeles, CA 90001" -185476,Flatscreen TV,1,300,04/25/19 18:59,"929 7th St, Los Angeles, CA 90001" -185477,Lightning Charging Cable,1,14.95,04/19/19 08:57,"839 Ridge St, New York City, NY 10001" -185478,USB-C Charging Cable,1,11.95,04/24/19 16:32,"98 Spruce St, Boston, MA 02215" -185479,Bose SoundSport Headphones,1,99.99,04/10/19 17:48,"228 Lake St, Boston, MA 02215" -185480,Apple Airpods Headphones,1,150,04/14/19 13:13,"764 14th St, Los Angeles, CA 90001" -185481,27in FHD Monitor,1,149.99,04/29/19 23:35,"59 12th St, San Francisco, CA 94016" -185482,Lightning Charging Cable,1,14.95,04/03/19 21:27,"431 Spruce St, Austin, TX 73301" -185483,iPhone,1,700,04/16/19 15:27,"423 Forest St, New York City, NY 10001" -185483,Lightning Charging Cable,1,14.95,04/16/19 15:27,"423 Forest St, New York City, NY 10001" -185484,Lightning Charging Cable,1,14.95,04/21/19 12:09,"911 Lakeview St, San Francisco, CA 94016" -185485,Wired Headphones,1,11.99,04/28/19 00:52,"221 12th St, San Francisco, CA 94016" -185486,Google Phone,1,600,04/10/19 21:08,"986 13th St, San Francisco, CA 94016" -185487,AA Batteries (4-pack),1,3.84,04/17/19 21:27,"145 Elm St, Seattle, WA 98101" -185488,AAA Batteries (4-pack),1,2.99,04/11/19 15:59,"760 5th St, San Francisco, CA 94016" -185489,AA Batteries (4-pack),1,3.84,04/13/19 20:37,"734 Wilson St, San Francisco, CA 94016" -185490,ThinkPad Laptop,1,999.99,04/07/19 15:15,"325 12th St, Los Angeles, CA 90001" -185491,34in Ultrawide Monitor,1,379.99,04/16/19 07:10,"72 West St, San Francisco, CA 94016" -185492,Apple Airpods Headphones,1,150,04/08/19 13:04,"748 Ridge St, Los Angeles, CA 90001" -185493,27in 4K Gaming Monitor,1,389.99,04/01/19 20:12,"143 6th St, San Francisco, CA 94016" -185494,ThinkPad Laptop,1,999.99,04/24/19 16:11,"260 8th St, San Francisco, CA 94016" -185495,34in Ultrawide Monitor,1,379.99,04/09/19 23:07,"714 Sunset St, San Francisco, CA 94016" -185496,Lightning Charging Cable,1,14.95,04/08/19 12:52,"715 6th St, Los Angeles, CA 90001" -185497,Macbook Pro Laptop,1,1700,04/28/19 01:52,"621 2nd St, San Francisco, CA 94016" -185498,34in Ultrawide Monitor,1,379.99,04/19/19 08:09,"822 Jackson St, Austin, TX 73301" -185499,Apple Airpods Headphones,1,150,04/17/19 22:34,"957 Willow St, Portland, ME 04101" -185500,ThinkPad Laptop,1,999.99,04/01/19 17:22,"983 8th St, San Francisco, CA 94016" -185501,Bose SoundSport Headphones,1,99.99,04/20/19 19:58,"258 Adams St, Atlanta, GA 30301" -185502,AA Batteries (4-pack),1,3.84,04/17/19 20:49,"830 Meadow St, Atlanta, GA 30301" -185503,AA Batteries (4-pack),1,3.84,04/11/19 19:37,"363 6th St, San Francisco, CA 94016" -185504,Wired Headphones,1,11.99,04/07/19 22:18,"250 9th St, Los Angeles, CA 90001" -185505,Lightning Charging Cable,1,14.95,04/15/19 17:44,"775 Maple St, Seattle, WA 98101" -185506,AAA Batteries (4-pack),2,2.99,04/21/19 23:15,"475 9th St, Austin, TX 73301" -185507,AA Batteries (4-pack),1,3.84,04/11/19 19:34,"187 Johnson St, Seattle, WA 98101" -185508,Lightning Charging Cable,1,14.95,04/29/19 22:53,"117 Lakeview St, Seattle, WA 98101" -185509,Apple Airpods Headphones,1,150,04/03/19 16:42,"497 13th St, Dallas, TX 75001" -185510,iPhone,1,700,04/02/19 17:46,"779 10th St, Boston, MA 02215" -185511,Bose SoundSport Headphones,1,99.99,04/26/19 21:10,"677 Ridge St, New York City, NY 10001" -185512,Wired Headphones,1,11.99,04/27/19 15:04,"251 Highland St, Portland, ME 04101" -185513,Bose SoundSport Headphones,1,99.99,04/17/19 16:36,"264 Adams St, Austin, TX 73301" -185514,Lightning Charging Cable,1,14.95,04/13/19 21:38,"997 North St, Austin, TX 73301" -185515,Flatscreen TV,1,300,04/26/19 22:00,"309 South St, Seattle, WA 98101" -185516,Bose SoundSport Headphones,1,99.99,04/25/19 15:19,"916 5th St, San Francisco, CA 94016" -185516,Wired Headphones,1,11.99,04/25/19 15:19,"916 5th St, San Francisco, CA 94016" -185517,AAA Batteries (4-pack),1,2.99,04/08/19 14:50,"501 13th St, Boston, MA 02215" -185518,Google Phone,1,600,04/23/19 22:07,"427 Ridge St, Boston, MA 02215" -185519,Lightning Charging Cable,1,14.95,04/17/19 13:43,"221 West St, New York City, NY 10001" -185520,AA Batteries (4-pack),1,3.84,04/22/19 07:22,"244 4th St, San Francisco, CA 94016" -185521,Apple Airpods Headphones,1,150,04/27/19 03:08,"438 Highland St, San Francisco, CA 94016" -185522,AA Batteries (4-pack),1,3.84,04/27/19 14:46,"482 North St, San Francisco, CA 94016" -185523,AAA Batteries (4-pack),1,2.99,04/20/19 20:00,"876 Meadow St, San Francisco, CA 94016" -185524,iPhone,1,700,04/26/19 12:02,"971 South St, Seattle, WA 98101" -185525,AAA Batteries (4-pack),2,2.99,04/23/19 11:57,"328 Forest St, New York City, NY 10001" -185526,iPhone,1,700,04/25/19 18:32,"478 River St, Dallas, TX 75001" -185526,Lightning Charging Cable,1,14.95,04/25/19 18:32,"478 River St, Dallas, TX 75001" -185527,Wired Headphones,1,11.99,04/15/19 23:06,"477 Lakeview St, Boston, MA 02215" -185528,AAA Batteries (4-pack),1,2.99,04/21/19 14:44,"96 10th St, Portland, ME 04101" -185529,Wired Headphones,1,11.99,04/11/19 14:36,"799 Highland St, Atlanta, GA 30301" -185530,AA Batteries (4-pack),1,3.84,04/01/19 12:47,"834 12th St, Seattle, WA 98101" -185531,Bose SoundSport Headphones,1,99.99,04/30/19 10:07,"395 Cherry St, New York City, NY 10001" -185532,20in Monitor,1,109.99,04/19/19 19:33,"555 Lakeview St, New York City, NY 10001" -185533,Apple Airpods Headphones,1,150,04/19/19 08:56,"609 North St, Seattle, WA 98101" -185534,iPhone,1,700,04/18/19 00:30,"122 West St, San Francisco, CA 94016" -185534,Lightning Charging Cable,1,14.95,04/18/19 00:30,"122 West St, San Francisco, CA 94016" -185535,Apple Airpods Headphones,1,150,04/20/19 13:58,"677 Main St, Portland, ME 04101" -185536,Lightning Charging Cable,1,14.95,04/24/19 22:21,"748 Park St, Boston, MA 02215" -185537,27in FHD Monitor,1,149.99,04/28/19 10:59,"246 Washington St, San Francisco, CA 94016" -185538,AAA Batteries (4-pack),1,2.99,04/27/19 19:35,"60 Lincoln St, Atlanta, GA 30301" -185539,Lightning Charging Cable,1,14.95,04/01/19 09:25,"298 9th St, Dallas, TX 75001" -185540,USB-C Charging Cable,2,11.95,04/01/19 19:57,"523 6th St, Los Angeles, CA 90001" -185541,AA Batteries (4-pack),3,3.84,04/03/19 11:30,"14 Elm St, New York City, NY 10001" -185542,USB-C Charging Cable,1,11.95,04/25/19 15:21,"511 Washington St, Dallas, TX 75001" -185543,USB-C Charging Cable,1,11.95,04/05/19 08:28,"965 5th St, San Francisco, CA 94016" -185544,Bose SoundSport Headphones,1,99.99,04/05/19 19:33,"389 2nd St, San Francisco, CA 94016" -185545,Lightning Charging Cable,1,14.95,04/14/19 20:53,"699 Cedar St, Atlanta, GA 30301" -185546,34in Ultrawide Monitor,1,379.99,04/08/19 17:09,"841 Church St, San Francisco, CA 94016" -185547,Bose SoundSport Headphones,1,99.99,04/09/19 12:24,"410 Madison St, New York City, NY 10001" -185548,ThinkPad Laptop,1,999.99,04/21/19 12:10,"362 13th St, Atlanta, GA 30301" -185549,AA Batteries (4-pack),1,3.84,04/04/19 20:21,"381 River St, New York City, NY 10001" -185550,AAA Batteries (4-pack),2,2.99,04/03/19 14:58,"868 Madison St, Boston, MA 02215" -185551,USB-C Charging Cable,1,11.95,04/07/19 20:52,"389 Lake St, Los Angeles, CA 90001" -185552,Wired Headphones,1,11.99,04/03/19 14:01,"536 11th St, Boston, MA 02215" -185553,Wired Headphones,1,11.99,04/14/19 19:03,"196 North St, San Francisco, CA 94016" -185554,Wired Headphones,1,11.99,04/25/19 13:46,"359 North St, Boston, MA 02215" -185555,Wired Headphones,1,11.99,04/03/19 19:59,"900 Hill St, San Francisco, CA 94016" -185556,Wired Headphones,1,11.99,04/11/19 14:44,"384 Chestnut St, Atlanta, GA 30301" -185557,AA Batteries (4-pack),1,3.84,04/13/19 23:44,"401 Lakeview St, New York City, NY 10001" -185558,LG Dryer,1,600.0,04/24/19 13:14,"201 North St, Los Angeles, CA 90001" -185559,Wired Headphones,1,11.99,04/06/19 11:42,"925 Ridge St, Austin, TX 73301" -185560,Bose SoundSport Headphones,1,99.99,04/17/19 10:42,"689 River St, Boston, MA 02215" -185561,iPhone,1,700,04/29/19 04:11,"220 Spruce St, San Francisco, CA 94016" -185562,AA Batteries (4-pack),1,3.84,04/10/19 17:46,"948 Main St, Los Angeles, CA 90001" -185563,Bose SoundSport Headphones,1,99.99,04/15/19 15:22,"640 Pine St, Los Angeles, CA 90001" -185564,Lightning Charging Cable,2,14.95,04/09/19 11:16,"640 Elm St, Portland, OR 97035" -185565,AAA Batteries (4-pack),1,2.99,04/29/19 15:58,"172 North St, San Francisco, CA 94016" -185566,USB-C Charging Cable,1,11.95,04/02/19 12:03,"459 Cherry St, Los Angeles, CA 90001" -185567,Lightning Charging Cable,1,14.95,04/06/19 18:40,"727 10th St, New York City, NY 10001" -185568,Flatscreen TV,1,300,04/21/19 16:37,"568 Willow St, Los Angeles, CA 90001" -185569,Bose SoundSport Headphones,1,99.99,04/10/19 23:31,"198 2nd St, San Francisco, CA 94016" -185570,Apple Airpods Headphones,1,150,04/09/19 11:04,"232 9th St, New York City, NY 10001" -185571,Apple Airpods Headphones,1,150,04/04/19 15:54,"905 14th St, San Francisco, CA 94016" -185572,LG Washing Machine,1,600.0,04/22/19 09:12,"9 Lincoln St, San Francisco, CA 94016" -185573,AA Batteries (4-pack),1,3.84,04/04/19 13:33,"883 Hickory St, Seattle, WA 98101" -185574,AAA Batteries (4-pack),2,2.99,04/13/19 23:52,"731 Washington St, Los Angeles, CA 90001" -185575,AAA Batteries (4-pack),1,2.99,04/04/19 19:01,"514 Dogwood St, San Francisco, CA 94016" -185576,Macbook Pro Laptop,1,1700,04/15/19 22:11,"794 Jackson St, Los Angeles, CA 90001" -185577,AA Batteries (4-pack),1,3.84,04/18/19 14:27,"982 Walnut St, San Francisco, CA 94016" -185578,Wired Headphones,1,11.99,04/29/19 13:22,"709 Washington St, Los Angeles, CA 90001" -185579,Wired Headphones,1,11.99,04/15/19 23:03,"967 Elm St, Los Angeles, CA 90001" -185580,iPhone,1,700,04/16/19 04:49,"355 Cherry St, Los Angeles, CA 90001" -185581,USB-C Charging Cable,1,11.95,04/01/19 11:28,"418 5th St, Los Angeles, CA 90001" -185582,AAA Batteries (4-pack),2,2.99,04/26/19 21:18,"853 6th St, Los Angeles, CA 90001" -185583,Bose SoundSport Headphones,1,99.99,04/26/19 16:25,"513 Cherry St, Austin, TX 73301" -185584,iPhone,1,700,04/16/19 23:28,"204 12th St, Atlanta, GA 30301" -185585,Wired Headphones,1,11.99,04/11/19 15:00,"385 Park St, Boston, MA 02215" -185586,Wired Headphones,1,11.99,04/07/19 13:46,"673 5th St, Austin, TX 73301" -185587,AA Batteries (4-pack),1,3.84,04/12/19 15:35,"987 13th St, New York City, NY 10001" -185588,20in Monitor,1,109.99,04/01/19 19:28,"598 Willow St, Los Angeles, CA 90001" -185589,USB-C Charging Cable,1,11.95,04/17/19 16:50,"744 Sunset St, San Francisco, CA 94016" -185590,USB-C Charging Cable,1,11.95,04/01/19 23:20,"482 North St, Seattle, WA 98101" -185591,27in FHD Monitor,1,149.99,04/28/19 16:18,"939 Main St, Boston, MA 02215" -185592,AA Batteries (4-pack),1,3.84,04/19/19 14:42,"7 South St, Boston, MA 02215" -185593,Google Phone,1,600,04/04/19 09:09,"298 Willow St, Los Angeles, CA 90001" -185594,Google Phone,1,600,04/02/19 09:07,"158 7th St, San Francisco, CA 94016" -185595,34in Ultrawide Monitor,1,379.99,04/02/19 14:43,"854 5th St, Dallas, TX 75001" -185596,Lightning Charging Cable,1,14.95,04/05/19 22:27,"888 7th St, Los Angeles, CA 90001" -185597,AAA Batteries (4-pack),3,2.99,04/27/19 18:12,"823 Forest St, Seattle, WA 98101" -185598,AAA Batteries (4-pack),2,2.99,04/20/19 11:42,"346 Walnut St, San Francisco, CA 94016" -185599,Wired Headphones,1,11.99,04/15/19 20:14,"532 1st St, Portland, OR 97035" -185600,AAA Batteries (4-pack),1,2.99,04/18/19 11:55,"7 Johnson St, Los Angeles, CA 90001" -185601,AA Batteries (4-pack),1,3.84,04/01/19 09:58,"627 Forest St, Los Angeles, CA 90001" -185602,USB-C Charging Cable,1,11.95,04/13/19 10:43,"336 Meadow St, Dallas, TX 75001" -185603,Apple Airpods Headphones,1,150,04/22/19 15:39,"922 6th St, Dallas, TX 75001" -185604,Google Phone,1,600,04/05/19 10:31,"98 6th St, San Francisco, CA 94016" -185605,Bose SoundSport Headphones,1,99.99,04/15/19 17:35,"904 Jackson St, Atlanta, GA 30301" -185606,Lightning Charging Cable,1,14.95,04/01/19 09:59,"338 10th St, San Francisco, CA 94016" -185607,20in Monitor,1,109.99,04/09/19 18:39,"136 12th St, Los Angeles, CA 90001" -185608,Flatscreen TV,1,300,04/17/19 16:18,"70 13th St, Portland, OR 97035" -185609,Lightning Charging Cable,1,14.95,04/02/19 21:08,"427 13th St, San Francisco, CA 94016" -185610,27in FHD Monitor,1,149.99,04/05/19 11:41,"16 Jefferson St, Boston, MA 02215" -185611,Apple Airpods Headphones,1,150,04/13/19 17:09,"61 South St, Atlanta, GA 30301" -185612,20in Monitor,1,109.99,04/19/19 10:05,"670 2nd St, Seattle, WA 98101" -185613,27in 4K Gaming Monitor,1,389.99,04/03/19 14:42,"192 12th St, New York City, NY 10001" -185614,AAA Batteries (4-pack),3,2.99,04/30/19 05:46,"374 13th St, San Francisco, CA 94016" -185615,34in Ultrawide Monitor,1,379.99,04/25/19 17:50,"953 Center St, San Francisco, CA 94016" -185616,Vareebadd Phone,1,400,04/03/19 14:36,"682 4th St, Seattle, WA 98101" -185617,AAA Batteries (4-pack),1,2.99,04/10/19 18:37,"967 Pine St, San Francisco, CA 94016" -185618,Bose SoundSport Headphones,1,99.99,04/10/19 17:07,"941 13th St, Dallas, TX 75001" -185619,Lightning Charging Cable,1,14.95,04/09/19 07:11,"42 Pine St, Boston, MA 02215" -185620,Google Phone,1,600,04/15/19 13:50,"374 7th St, Atlanta, GA 30301" -185621,Lightning Charging Cable,2,14.95,04/03/19 11:06,"525 Adams St, Austin, TX 73301" -185622,AAA Batteries (4-pack),2,2.99,04/26/19 14:03,"702 2nd St, Los Angeles, CA 90001" -185623,AAA Batteries (4-pack),1,2.99,04/22/19 17:13,"629 14th St, San Francisco, CA 94016" -185624,AAA Batteries (4-pack),1,2.99,04/05/19 21:28,"627 9th St, Los Angeles, CA 90001" -185625,Lightning Charging Cable,1,14.95,04/28/19 19:46,"161 1st St, San Francisco, CA 94016" -185626,Apple Airpods Headphones,1,150,04/20/19 10:39,"158 11th St, Los Angeles, CA 90001" -185627,Lightning Charging Cable,1,14.95,04/08/19 11:51,"289 Johnson St, Austin, TX 73301" -185628,AA Batteries (4-pack),1,3.84,04/11/19 20:11,"664 Spruce St, Austin, TX 73301" -185629,AAA Batteries (4-pack),1,2.99,04/17/19 14:19,"501 Church St, New York City, NY 10001" -,,,,, -185630,Wired Headphones,1,11.99,04/04/19 14:39,"335 Washington St, Seattle, WA 98101" -185630,Apple Airpods Headphones,1,150,04/04/19 14:39,"335 Washington St, Seattle, WA 98101" -185631,AAA Batteries (4-pack),1,2.99,04/24/19 00:11,"137 5th St, San Francisco, CA 94016" -185632,Macbook Pro Laptop,1,1700,04/07/19 19:06,"747 8th St, Los Angeles, CA 90001" -185633,Flatscreen TV,1,300,04/12/19 08:07,"668 Meadow St, Boston, MA 02215" -185634,Apple Airpods Headphones,1,150,04/13/19 08:51,"780 6th St, Atlanta, GA 30301" -185635,Google Phone,1,600,04/12/19 21:32,"901 Hill St, Los Angeles, CA 90001" -185636,Lightning Charging Cable,1,14.95,04/09/19 07:03,"980 Madison St, New York City, NY 10001" -185637,AA Batteries (4-pack),1,3.84,04/21/19 09:27,"898 13th St, Boston, MA 02215" -185638,AA Batteries (4-pack),1,3.84,04/25/19 16:46,"787 Sunset St, New York City, NY 10001" -185639,Wired Headphones,1,11.99,04/21/19 16:00,"830 1st St, New York City, NY 10001" -185640,Apple Airpods Headphones,1,150,04/07/19 21:11,"278 Wilson St, San Francisco, CA 94016" -185641,AA Batteries (4-pack),2,3.84,04/08/19 22:51,"636 Lake St, Los Angeles, CA 90001" -185642,AA Batteries (4-pack),1,3.84,04/10/19 11:51,"257 Madison St, Portland, ME 04101" -185643,AA Batteries (4-pack),2,3.84,04/14/19 13:40,"502 Willow St, New York City, NY 10001" -185644,Wired Headphones,1,11.99,04/01/19 23:07,"920 Walnut St, San Francisco, CA 94016" -185645,Lightning Charging Cable,1,14.95,04/13/19 10:45,"437 Dogwood St, San Francisco, CA 94016" -185646,USB-C Charging Cable,1,11.95,04/10/19 14:28,"393 Sunset St, San Francisco, CA 94016" -185647,Wired Headphones,1,11.99,04/08/19 14:46,"521 Pine St, New York City, NY 10001" -185648,Apple Airpods Headphones,1,150,04/23/19 22:12,"26 Main St, Los Angeles, CA 90001" -185649,Vareebadd Phone,1,400,04/03/19 14:04,"945 Main St, San Francisco, CA 94016" -185649,AA Batteries (4-pack),2,3.84,04/03/19 14:04,"945 Main St, San Francisco, CA 94016" -185650,AA Batteries (4-pack),1,3.84,04/19/19 18:59,"124 11th St, Portland, OR 97035" -185651,Macbook Pro Laptop,1,1700,04/18/19 01:16,"172 Spruce St, Los Angeles, CA 90001" -185652,Wired Headphones,1,11.99,04/27/19 15:18,"766 Jefferson St, Austin, TX 73301" -185653,USB-C Charging Cable,1,11.95,04/15/19 15:24,"641 2nd St, San Francisco, CA 94016" -185654,Wired Headphones,1,11.99,04/03/19 14:03,"321 12th St, San Francisco, CA 94016" -185655,USB-C Charging Cable,1,11.95,04/20/19 13:02,"535 Sunset St, San Francisco, CA 94016" -185656,Lightning Charging Cable,1,14.95,04/01/19 14:29,"323 10th St, Los Angeles, CA 90001" -185657,AA Batteries (4-pack),2,3.84,04/21/19 18:43,"150 Meadow St, New York City, NY 10001" -185658,LG Washing Machine,1,600.0,04/24/19 13:22,"744 Park St, Seattle, WA 98101" -185659,Bose SoundSport Headphones,1,99.99,04/20/19 16:11,"450 Lakeview St, Dallas, TX 75001" -185660,Bose SoundSport Headphones,1,99.99,04/17/19 10:58,"344 9th St, Atlanta, GA 30301" -185661,Lightning Charging Cable,1,14.95,04/19/19 06:50,"219 Center St, Seattle, WA 98101" -185662,AA Batteries (4-pack),3,3.84,04/06/19 22:32,"502 Spruce St, Los Angeles, CA 90001" -185663,AAA Batteries (4-pack),1,2.99,04/07/19 17:12,"940 West St, Austin, TX 73301" -185664,USB-C Charging Cable,1,11.95,04/03/19 09:33,"14 Madison St, Dallas, TX 75001" -185665,Google Phone,1,600,04/28/19 21:27,"250 Johnson St, Portland, OR 97035" -185666,27in FHD Monitor,1,149.99,04/28/19 19:29,"530 Dogwood St, Los Angeles, CA 90001" -185667,iPhone,1,700,04/22/19 19:46,"83 Cedar St, Boston, MA 02215" -185667,AAA Batteries (4-pack),1,2.99,04/22/19 19:46,"83 Cedar St, Boston, MA 02215" -185668,AA Batteries (4-pack),1,3.84,04/21/19 13:06,"465 8th St, Boston, MA 02215" -185669,AA Batteries (4-pack),1,3.84,04/14/19 14:04,"917 Dogwood St, Boston, MA 02215" -185670,AAA Batteries (4-pack),1,2.99,04/20/19 14:16,"955 Washington St, Los Angeles, CA 90001" -185671,Bose SoundSport Headphones,1,99.99,04/16/19 06:52,"839 Lakeview St, San Francisco, CA 94016" -185672,ThinkPad Laptop,1,999.99,04/18/19 21:00,"410 12th St, San Francisco, CA 94016" -185673,USB-C Charging Cable,1,11.95,04/22/19 21:55,"437 2nd St, New York City, NY 10001" -185674,27in FHD Monitor,1,149.99,04/10/19 13:56,"79 Pine St, San Francisco, CA 94016" -185675,Bose SoundSport Headphones,1,99.99,04/08/19 14:17,"732 Willow St, San Francisco, CA 94016" -185676,Apple Airpods Headphones,1,150,04/27/19 18:44,"849 12th St, Boston, MA 02215" -185677,27in 4K Gaming Monitor,1,389.99,04/01/19 17:37,"723 Elm St, San Francisco, CA 94016" -185678,Lightning Charging Cable,1,14.95,04/02/19 13:39,"434 6th St, Austin, TX 73301" -185679,Apple Airpods Headphones,1,150,04/23/19 11:12,"882 Church St, Seattle, WA 98101" -185680,AAA Batteries (4-pack),2,2.99,04/17/19 09:13,"896 Meadow St, Los Angeles, CA 90001" -185681,Google Phone,1,600,04/24/19 12:02,"105 2nd St, Seattle, WA 98101" -185682,AA Batteries (4-pack),2,3.84,04/28/19 14:54,"874 Forest St, Dallas, TX 75001" -185683,Apple Airpods Headphones,1,150,04/07/19 16:24,"569 Park St, San Francisco, CA 94016" -185684,Apple Airpods Headphones,1,150,04/22/19 11:50,"369 Jackson St, San Francisco, CA 94016" -185684,ThinkPad Laptop,1,999.99,04/22/19 11:50,"369 Jackson St, San Francisco, CA 94016" -185685,Wired Headphones,1,11.99,04/27/19 17:52,"809 2nd St, Los Angeles, CA 90001" -185686,Apple Airpods Headphones,1,150,04/07/19 13:33,"177 Dogwood St, Dallas, TX 75001" -185687,27in 4K Gaming Monitor,1,389.99,04/17/19 14:55,"493 Lincoln St, New York City, NY 10001" -185688,USB-C Charging Cable,1,11.95,04/25/19 20:35,"962 Adams St, San Francisco, CA 94016" -185689,AAA Batteries (4-pack),1,2.99,04/28/19 18:17,"455 West St, San Francisco, CA 94016" -185690,Wired Headphones,1,11.99,04/20/19 16:43,"800 West St, Atlanta, GA 30301" -185691,Bose SoundSport Headphones,1,99.99,04/02/19 18:08,"532 Main St, Los Angeles, CA 90001" -185692,Bose SoundSport Headphones,1,99.99,04/23/19 10:08,"938 Lincoln St, San Francisco, CA 94016" -185693,USB-C Charging Cable,1,11.95,04/26/19 18:21,"915 River St, San Francisco, CA 94016" -185694,Bose SoundSport Headphones,1,99.99,04/11/19 20:20,"359 13th St, Seattle, WA 98101" -185695,Lightning Charging Cable,3,14.95,04/11/19 23:28,"458 Main St, Portland, OR 97035" -185696,Macbook Pro Laptop,1,1700,04/16/19 13:16,"957 Elm St, Los Angeles, CA 90001" -185697,AAA Batteries (4-pack),1,2.99,04/29/19 15:14,"326 Pine St, Dallas, TX 75001" -185698,27in 4K Gaming Monitor,1,389.99,04/12/19 12:05,"748 1st St, San Francisco, CA 94016" -185699,AAA Batteries (4-pack),1,2.99,04/21/19 07:27,"889 Park St, San Francisco, CA 94016" -185700,Wired Headphones,1,11.99,04/07/19 13:27,"16 1st St, Austin, TX 73301" -185701,iPhone,1,700,04/26/19 09:37,"29 Elm St, New York City, NY 10001" -185702,AA Batteries (4-pack),3,3.84,04/24/19 18:52,"953 Hickory St, Dallas, TX 75001" -185703,AAA Batteries (4-pack),1,2.99,04/04/19 20:52,"604 Jackson St, New York City, NY 10001" -185704,27in FHD Monitor,1,149.99,04/29/19 11:03,"398 Lakeview St, Los Angeles, CA 90001" -185705,Bose SoundSport Headphones,1,99.99,04/03/19 00:28,"758 Center St, Dallas, TX 75001" -185706,34in Ultrawide Monitor,1,379.99,04/29/19 07:44,"487 5th St, Portland, OR 97035" -185707,USB-C Charging Cable,1,11.95,04/15/19 23:05,"463 West St, Dallas, TX 75001" -185708,USB-C Charging Cable,1,11.95,04/08/19 21:27,"940 Maple St, New York City, NY 10001" -185709,Apple Airpods Headphones,1,150,04/06/19 06:10,"306 Cherry St, San Francisco, CA 94016" -185710,Wired Headphones,1,11.99,04/22/19 14:05,"388 Johnson St, New York City, NY 10001" -185711,AA Batteries (4-pack),5,3.84,04/10/19 11:54,"481 South St, Los Angeles, CA 90001" -185712,Macbook Pro Laptop,1,1700,04/27/19 19:57,"230 5th St, Portland, ME 04101" -185713,Wired Headphones,1,11.99,04/25/19 14:55,"506 Chestnut St, San Francisco, CA 94016" -185714,LG Dryer,1,600.0,04/05/19 19:20,"413 Maple St, Boston, MA 02215" -185715,Apple Airpods Headphones,1,150,04/28/19 10:16,"749 Elm St, Portland, OR 97035" -,,,,, -185716,AAA Batteries (4-pack),2,2.99,04/28/19 08:32,"788 Elm St, Atlanta, GA 30301" -185717,Wired Headphones,1,11.99,04/20/19 21:43,"945 Ridge St, Dallas, TX 75001" -185718,Lightning Charging Cable,1,14.95,04/05/19 00:40,"388 Spruce St, San Francisco, CA 94016" -185719,AA Batteries (4-pack),1,3.84,04/24/19 22:40,"285 4th St, Seattle, WA 98101" -185720,Wired Headphones,1,11.99,04/13/19 23:33,"66 Center St, Los Angeles, CA 90001" -185721,AAA Batteries (4-pack),1,2.99,04/14/19 14:00,"439 12th St, Austin, TX 73301" -185722,AAA Batteries (4-pack),1,2.99,04/28/19 11:44,"650 Walnut St, New York City, NY 10001" -185723,AA Batteries (4-pack),1,3.84,04/13/19 10:25,"814 Lake St, Dallas, TX 75001" -185724,Lightning Charging Cable,1,14.95,04/29/19 15:06,"194 Pine St, San Francisco, CA 94016" -185725,Wired Headphones,2,11.99,04/30/19 20:18,"207 Hill St, San Francisco, CA 94016" -185726,AA Batteries (4-pack),1,3.84,04/02/19 08:50,"282 14th St, San Francisco, CA 94016" -,,,,, -185727,Bose SoundSport Headphones,1,99.99,04/04/19 13:37,"110 Spruce St, Los Angeles, CA 90001" -185728,USB-C Charging Cable,1,11.95,04/09/19 11:19,"884 14th St, Boston, MA 02215" -185728,27in FHD Monitor,1,149.99,04/09/19 11:19,"884 14th St, Boston, MA 02215" -185729,USB-C Charging Cable,1,11.95,04/26/19 16:02,"596 Pine St, Portland, OR 97035" -185730,AA Batteries (4-pack),1,3.84,04/18/19 13:06,"687 2nd St, Los Angeles, CA 90001" -185731,27in FHD Monitor,1,149.99,04/04/19 16:47,"344 14th St, Portland, OR 97035" -185732,iPhone,1,700,04/06/19 16:36,"276 9th St, Portland, OR 97035" -185733,AAA Batteries (4-pack),2,2.99,04/21/19 13:44,"635 Hickory St, Dallas, TX 75001" -185734,USB-C Charging Cable,1,11.95,04/13/19 14:55,"694 Meadow St, Los Angeles, CA 90001" -185735,Bose SoundSport Headphones,1,99.99,04/24/19 12:54,"787 4th St, Atlanta, GA 30301" -185736,27in 4K Gaming Monitor,1,389.99,04/23/19 20:07,"346 Chestnut St, Boston, MA 02215" -185737,AA Batteries (4-pack),3,3.84,04/26/19 15:07,"207 Madison St, San Francisco, CA 94016" -185738,Wired Headphones,1,11.99,04/05/19 14:08,"766 Walnut St, San Francisco, CA 94016" -185739,34in Ultrawide Monitor,1,379.99,04/21/19 15:46,"492 1st St, San Francisco, CA 94016" -185740,AAA Batteries (4-pack),1,2.99,04/13/19 21:12,"172 Elm St, San Francisco, CA 94016" -185741,USB-C Charging Cable,1,11.95,04/05/19 10:20,"477 Walnut St, Seattle, WA 98101" -185742,Wired Headphones,1,11.99,04/17/19 11:09,"478 Cedar St, Boston, MA 02215" -185743,27in FHD Monitor,1,149.99,04/18/19 13:27,"382 Willow St, Boston, MA 02215" -185744,AAA Batteries (4-pack),1,2.99,04/09/19 18:27,"414 11th St, Atlanta, GA 30301" -185745,USB-C Charging Cable,1,11.95,04/16/19 20:55,"912 13th St, Boston, MA 02215" -185746,USB-C Charging Cable,1,11.95,04/12/19 06:25,"81 5th St, Los Angeles, CA 90001" -185747,Lightning Charging Cable,2,14.95,04/30/19 12:53,"983 River St, Dallas, TX 75001" -185748,Wired Headphones,1,11.99,04/08/19 16:38,"77 Hickory St, Austin, TX 73301" -185749,20in Monitor,1,109.99,04/26/19 21:20,"766 Maple St, Boston, MA 02215" -185750,AA Batteries (4-pack),2,3.84,04/26/19 11:28,"467 11th St, Atlanta, GA 30301" -185751,iPhone,1,700,04/25/19 12:18,"593 4th St, New York City, NY 10001" -185752,USB-C Charging Cable,1,11.95,04/24/19 11:51,"924 Washington St, New York City, NY 10001" -185753,AA Batteries (4-pack),2,3.84,04/17/19 10:59,"91 12th St, Dallas, TX 75001" -185753,Lightning Charging Cable,1,14.95,04/17/19 10:59,"91 12th St, Dallas, TX 75001" -185754,Apple Airpods Headphones,1,150,04/10/19 13:30,"600 Adams St, New York City, NY 10001" -185755,Apple Airpods Headphones,1,150,04/18/19 21:41,"450 10th St, Los Angeles, CA 90001" -185756,Lightning Charging Cable,2,14.95,04/13/19 13:52,"970 Hickory St, New York City, NY 10001" -185757,Apple Airpods Headphones,1,150,04/08/19 16:01,"63 Park St, San Francisco, CA 94016" -185758,Bose SoundSport Headphones,1,99.99,04/07/19 11:15,"660 Cherry St, Los Angeles, CA 90001" -185759,AAA Batteries (4-pack),2,2.99,04/24/19 16:06,"308 2nd St, Los Angeles, CA 90001" -185760,27in FHD Monitor,1,149.99,04/19/19 11:50,"661 Wilson St, Los Angeles, CA 90001" -185761,Bose SoundSport Headphones,1,99.99,04/08/19 18:18,"668 Ridge St, Seattle, WA 98101" -,,,,, -185762,Wired Headphones,1,11.99,04/03/19 14:05,"360 12th St, San Francisco, CA 94016" -185763,27in FHD Monitor,1,149.99,04/08/19 17:55,"345 West St, San Francisco, CA 94016" -185764,USB-C Charging Cable,1,11.95,04/09/19 19:01,"440 7th St, Los Angeles, CA 90001" -185764,ThinkPad Laptop,1,999.99,04/09/19 19:01,"440 7th St, Los Angeles, CA 90001" -185765,AAA Batteries (4-pack),1,2.99,04/16/19 10:23,"669 Madison St, New York City, NY 10001" -185766,AA Batteries (4-pack),1,3.84,04/18/19 22:55,"950 Park St, San Francisco, CA 94016" -185767,Bose SoundSport Headphones,1,99.99,04/21/19 11:21,"246 4th St, Atlanta, GA 30301" -185768,ThinkPad Laptop,1,999.99,04/24/19 09:51,"146 West St, Atlanta, GA 30301" -185769,Wired Headphones,2,11.99,04/01/19 16:47,"203 Dogwood St, Austin, TX 73301" -185770,Wired Headphones,1,11.99,04/19/19 22:50,"781 10th St, Portland, OR 97035" -185771,Macbook Pro Laptop,1,1700,04/07/19 13:47,"387 10th St, Atlanta, GA 30301" -185772,USB-C Charging Cable,3,11.95,04/26/19 18:25,"305 Main St, Boston, MA 02215" -185773,AA Batteries (4-pack),1,3.84,04/08/19 12:58,"28 Lincoln St, Atlanta, GA 30301" -185774,Wired Headphones,1,11.99,04/28/19 22:47,"418 9th St, Seattle, WA 98101" -185775,ThinkPad Laptop,1,999.99,04/27/19 17:28,"512 Main St, New York City, NY 10001" -185776,AAA Batteries (4-pack),6,2.99,04/14/19 21:18,"85 Maple St, San Francisco, CA 94016" -185777,LG Dryer,1,600.0,04/04/19 14:15,"130 Hill St, Los Angeles, CA 90001" -185778,Wired Headphones,1,11.99,04/14/19 16:29,"864 Main St, Boston, MA 02215" -185779,USB-C Charging Cable,1,11.95,04/01/19 21:02,"524 Johnson St, Boston, MA 02215" -185780,Wired Headphones,1,11.99,04/03/19 15:22,"702 7th St, New York City, NY 10001" -185781,AAA Batteries (4-pack),3,2.99,04/10/19 15:39,"246 North St, Austin, TX 73301" -185782,AAA Batteries (4-pack),2,2.99,04/20/19 16:29,"116 Madison St, Atlanta, GA 30301" -185783,Bose SoundSport Headphones,1,99.99,04/05/19 09:46,"578 Johnson St, San Francisco, CA 94016" -185784,Flatscreen TV,1,300,04/27/19 19:03,"370 Ridge St, New York City, NY 10001" -185785,AA Batteries (4-pack),2,3.84,04/13/19 19:10,"235 12th St, Boston, MA 02215" -185786,34in Ultrawide Monitor,1,379.99,04/01/19 21:58,"965 Sunset St, New York City, NY 10001" -185787,AA Batteries (4-pack),1,3.84,04/21/19 16:31,"609 14th St, Boston, MA 02215" -185788,ThinkPad Laptop,1,999.99,04/10/19 21:42,"654 Cedar St, Dallas, TX 75001" -185789,Bose SoundSport Headphones,1,99.99,04/01/19 19:51,"390 Washington St, Boston, MA 02215" -185790,USB-C Charging Cable,1,11.95,04/20/19 19:03,"755 10th St, Boston, MA 02215" -185791,Flatscreen TV,1,300,04/09/19 03:12,"914 Pine St, Atlanta, GA 30301" -185792,27in FHD Monitor,1,149.99,04/08/19 01:07,"373 Park St, San Francisco, CA 94016" -185793,Apple Airpods Headphones,1,150,04/21/19 12:04,"828 Center St, Portland, ME 04101" -185794,Lightning Charging Cable,1,14.95,04/19/19 01:43,"615 6th St, New York City, NY 10001" -185795,AAA Batteries (4-pack),3,2.99,04/24/19 12:43,"308 Elm St, San Francisco, CA 94016" -185796,Lightning Charging Cable,1,14.95,04/18/19 23:37,"162 Lake St, Dallas, TX 75001" -185797,Lightning Charging Cable,2,14.95,04/25/19 17:35,"899 Meadow St, New York City, NY 10001" -185798,AA Batteries (4-pack),1,3.84,04/15/19 08:36,"229 River St, Atlanta, GA 30301" -185799,Wired Headphones,1,11.99,04/29/19 08:00,"147 10th St, San Francisco, CA 94016" -185800,USB-C Charging Cable,1,11.95,04/28/19 14:28,"378 5th St, Seattle, WA 98101" -185801,AAA Batteries (4-pack),2,2.99,04/24/19 10:12,"259 12th St, Boston, MA 02215" -185802,AAA Batteries (4-pack),3,2.99,04/21/19 15:24,"394 Madison St, San Francisco, CA 94016" -185803,AAA Batteries (4-pack),2,2.99,04/18/19 10:30,"683 Spruce St, San Francisco, CA 94016" -185804,Apple Airpods Headphones,1,150,04/07/19 17:46,"354 Forest St, Atlanta, GA 30301" -185805,20in Monitor,1,109.99,04/23/19 10:52,"247 Adams St, New York City, NY 10001" -185806,20in Monitor,1,109.99,04/08/19 10:35,"405 Dogwood St, Seattle, WA 98101" -185807,Apple Airpods Headphones,1,150,04/30/19 15:46,"50 Walnut St, Portland, OR 97035" -185808,AAA Batteries (4-pack),2,2.99,04/25/19 11:57,"172 Maple St, Los Angeles, CA 90001" -185809,AAA Batteries (4-pack),3,2.99,04/13/19 15:36,"593 Adams St, Los Angeles, CA 90001" -185810,USB-C Charging Cable,1,11.95,04/06/19 21:38,"341 Johnson St, New York City, NY 10001" -185811,ThinkPad Laptop,1,999.99,04/17/19 08:54,"972 10th St, Atlanta, GA 30301" -185812,Wired Headphones,1,11.99,04/17/19 11:28,"284 Adams St, Dallas, TX 75001" -185813,Macbook Pro Laptop,1,1700,04/23/19 21:15,"643 10th St, San Francisco, CA 94016" -185814,USB-C Charging Cable,1,11.95,04/23/19 01:56,"971 12th St, Los Angeles, CA 90001" -185815,AAA Batteries (4-pack),1,2.99,04/30/19 01:58,"55 12th St, Boston, MA 02215" -185816,Wired Headphones,1,11.99,04/10/19 14:44,"260 South St, Los Angeles, CA 90001" -,,,,, -185817,ThinkPad Laptop,1,999.99,04/25/19 21:54,"277 Chestnut St, New York City, NY 10001" -185818,Apple Airpods Headphones,1,150,04/12/19 09:42,"837 Jefferson St, Boston, MA 02215" -185819,USB-C Charging Cable,1,11.95,04/09/19 17:18,"809 10th St, Boston, MA 02215" -185820,ThinkPad Laptop,1,999.99,04/23/19 19:32,"593 Washington St, Los Angeles, CA 90001" -185821,AAA Batteries (4-pack),2,2.99,04/17/19 20:30,"537 1st St, Atlanta, GA 30301" -185822,USB-C Charging Cable,1,11.95,04/23/19 09:18,"289 6th St, New York City, NY 10001" -185823,AA Batteries (4-pack),3,3.84,04/27/19 18:00,"957 Elm St, Seattle, WA 98101" -185824,Bose SoundSport Headphones,1,99.99,04/16/19 22:21,"472 Park St, Los Angeles, CA 90001" -185825,Flatscreen TV,1,300,04/18/19 09:50,"338 Lincoln St, Atlanta, GA 30301" -185826,Lightning Charging Cable,1,14.95,04/18/19 20:06,"929 Wilson St, Dallas, TX 75001" -185827,iPhone,1,700,04/05/19 18:10,"158 Dogwood St, San Francisco, CA 94016" -185828,Lightning Charging Cable,1,14.95,04/02/19 17:35,"155 Spruce St, Portland, OR 97035" -185829,Vareebadd Phone,1,400,04/10/19 17:00,"243 Johnson St, Seattle, WA 98101" -185830,27in FHD Monitor,1,149.99,04/28/19 19:44,"73 Cedar St, New York City, NY 10001" -,,,,, -185831,Lightning Charging Cable,1,14.95,04/05/19 12:32,"680 Wilson St, New York City, NY 10001" -185832,Lightning Charging Cable,1,14.95,04/13/19 04:56,"94 Pine St, Seattle, WA 98101" -185833,USB-C Charging Cable,2,11.95,04/18/19 11:45,"972 Main St, New York City, NY 10001" -185834,Wired Headphones,1,11.99,04/30/19 18:21,"361 Spruce St, Portland, OR 97035" -185835,Macbook Pro Laptop,1,1700,04/05/19 08:11,"125 South St, San Francisco, CA 94016" -185836,Lightning Charging Cable,1,14.95,04/19/19 22:56,"951 Cherry St, San Francisco, CA 94016" -185837,Macbook Pro Laptop,1,1700,04/07/19 19:59,"822 Madison St, San Francisco, CA 94016" -185838,USB-C Charging Cable,1,11.95,04/08/19 17:42,"675 Main St, Atlanta, GA 30301" -185839,20in Monitor,1,109.99,04/12/19 20:52,"938 Wilson St, Los Angeles, CA 90001" -185840,34in Ultrawide Monitor,1,379.99,04/26/19 20:43,"457 Park St, Los Angeles, CA 90001" -185841,Bose SoundSport Headphones,1,99.99,04/25/19 12:36,"593 13th St, Boston, MA 02215" -185842,Wired Headphones,1,11.99,04/06/19 12:47,"640 Hill St, New York City, NY 10001" -185843,Lightning Charging Cable,1,14.95,04/19/19 14:30,"724 Ridge St, San Francisco, CA 94016" -185844,Apple Airpods Headphones,1,150,04/08/19 12:46,"689 Sunset St, Boston, MA 02215" -185845,USB-C Charging Cable,1,11.95,04/07/19 06:37,"196 Cherry St, Boston, MA 02215" -185846,Bose SoundSport Headphones,1,99.99,04/06/19 22:21,"22 Jefferson St, Boston, MA 02215" -185847,USB-C Charging Cable,1,11.95,04/27/19 13:29,"530 Chestnut St, New York City, NY 10001" -185848,27in FHD Monitor,1,149.99,04/16/19 09:38,"984 South St, Atlanta, GA 30301" -185849,USB-C Charging Cable,1,11.95,04/17/19 13:22,"719 Willow St, Dallas, TX 75001" -185850,AAA Batteries (4-pack),1,2.99,04/15/19 03:47,"750 2nd St, San Francisco, CA 94016" -185851,USB-C Charging Cable,1,11.95,04/02/19 22:58,"863 Chestnut St, San Francisco, CA 94016" -185852,Wired Headphones,1,11.99,04/06/19 02:11,"567 Meadow St, San Francisco, CA 94016" -185853,AAA Batteries (4-pack),4,2.99,04/08/19 21:06,"874 Madison St, Portland, ME 04101" -185854,Wired Headphones,1,11.99,04/23/19 12:42,"409 Park St, San Francisco, CA 94016" -185855,ThinkPad Laptop,1,999.99,04/19/19 13:11,"255 1st St, Seattle, WA 98101" -185856,ThinkPad Laptop,1,999.99,04/26/19 20:14,"3 Chestnut St, Austin, TX 73301" -185857,Apple Airpods Headphones,1,150,04/02/19 13:42,"595 Spruce St, Los Angeles, CA 90001" -185858,Wired Headphones,1,11.99,04/19/19 10:44,"569 Lakeview St, Atlanta, GA 30301" -185859,Wired Headphones,1,11.99,04/01/19 12:45,"23 12th St, Los Angeles, CA 90001" -185860,Lightning Charging Cable,1,14.95,04/09/19 10:17,"280 Washington St, Los Angeles, CA 90001" -185861,AA Batteries (4-pack),2,3.84,04/11/19 22:11,"270 Wilson St, San Francisco, CA 94016" -185862,iPhone,1,700,04/06/19 19:08,"998 Lake St, San Francisco, CA 94016" -185862,Lightning Charging Cable,1,14.95,04/06/19 19:08,"998 Lake St, San Francisco, CA 94016" -185863,34in Ultrawide Monitor,1,379.99,04/27/19 09:36,"50 1st St, San Francisco, CA 94016" -185864,USB-C Charging Cable,1,11.95,04/16/19 11:47,"275 Washington St, San Francisco, CA 94016" -185865,AAA Batteries (4-pack),1,2.99,04/17/19 13:00,"935 Lincoln St, Boston, MA 02215" -185866,Wired Headphones,1,11.99,04/21/19 11:35,"677 Ridge St, Atlanta, GA 30301" -185867,AAA Batteries (4-pack),1,2.99,04/08/19 18:24,"578 Ridge St, Los Angeles, CA 90001" -185868,Wired Headphones,1,11.99,04/16/19 18:26,"190 8th St, Atlanta, GA 30301" -185868,AA Batteries (4-pack),1,3.84,04/16/19 18:26,"190 8th St, Atlanta, GA 30301" -185869,27in 4K Gaming Monitor,1,389.99,04/06/19 12:13,"834 Lakeview St, Los Angeles, CA 90001" -185870,Vareebadd Phone,1,400,04/04/19 13:47,"624 West St, New York City, NY 10001" -185871,AAA Batteries (4-pack),1,2.99,04/15/19 15:26,"457 Dogwood St, Los Angeles, CA 90001" -185872,Macbook Pro Laptop,1,1700,04/27/19 20:53,"953 Lake St, Los Angeles, CA 90001" -185873,Apple Airpods Headphones,1,150,04/20/19 20:17,"882 Washington St, New York City, NY 10001" -185873,Wired Headphones,1,11.99,04/20/19 20:17,"882 Washington St, New York City, NY 10001" -185874,Wired Headphones,1,11.99,04/28/19 18:00,"703 River St, Dallas, TX 75001" -185875,20in Monitor,1,109.99,04/08/19 19:17,"740 River St, Atlanta, GA 30301" -185876,AA Batteries (4-pack),2,3.84,04/29/19 18:36,"68 Spruce St, Boston, MA 02215" -185877,Apple Airpods Headphones,1,150,04/19/19 16:26,"477 14th St, Los Angeles, CA 90001" -185878,Bose SoundSport Headphones,1,99.99,04/08/19 19:25,"292 Church St, Portland, OR 97035" -185879,Wired Headphones,1,11.99,04/02/19 16:55,"90 Jefferson St, Dallas, TX 75001" -185880,Lightning Charging Cable,1,14.95,04/19/19 16:14,"897 Lake St, Seattle, WA 98101" -185881,Apple Airpods Headphones,1,150,04/13/19 16:37,"124 13th St, San Francisco, CA 94016" -185882,AA Batteries (4-pack),2,3.84,04/28/19 18:20,"693 Lincoln St, San Francisco, CA 94016" -185883,Wired Headphones,1,11.99,04/05/19 12:25,"291 Jefferson St, New York City, NY 10001" -185884,27in 4K Gaming Monitor,1,389.99,04/23/19 17:43,"882 Jackson St, Portland, OR 97035" -185885,Lightning Charging Cable,1,14.95,04/13/19 10:51,"256 Meadow St, Seattle, WA 98101" -185886,USB-C Charging Cable,1,11.95,04/06/19 12:53,"831 Willow St, Los Angeles, CA 90001" -185887,AA Batteries (4-pack),1,3.84,04/10/19 15:36,"837 Washington St, Atlanta, GA 30301" -185888,AAA Batteries (4-pack),1,2.99,04/04/19 14:15,"520 Johnson St, San Francisco, CA 94016" -185889,AAA Batteries (4-pack),3,2.99,04/14/19 14:08,"541 Forest St, San Francisco, CA 94016" -185890,Google Phone,1,600,04/22/19 09:14,"72 1st St, Los Angeles, CA 90001" -185891,ThinkPad Laptop,1,999.99,04/21/19 19:54,"78 Cherry St, Seattle, WA 98101" -185892,27in 4K Gaming Monitor,1,389.99,04/27/19 07:35,"89 Sunset St, Atlanta, GA 30301" -185893,AA Batteries (4-pack),1,3.84,04/21/19 18:55,"302 Adams St, Atlanta, GA 30301" -185894,AA Batteries (4-pack),1,3.84,04/17/19 22:40,"332 Cedar St, Atlanta, GA 30301" -185895,USB-C Charging Cable,1,11.95,04/09/19 14:33,"584 Walnut St, Seattle, WA 98101" -185896,AA Batteries (4-pack),2,3.84,04/08/19 09:32,"419 9th St, Los Angeles, CA 90001" -185897,LG Washing Machine,1,600.0,04/03/19 10:31,"842 Highland St, Austin, TX 73301" -185898,Bose SoundSport Headphones,1,99.99,04/30/19 02:27,"603 Center St, Los Angeles, CA 90001" -185899,Wired Headphones,1,11.99,04/07/19 10:05,"125 Chestnut St, Los Angeles, CA 90001" -185900,27in 4K Gaming Monitor,1,389.99,04/29/19 19:03,"573 2nd St, Seattle, WA 98101" -185901,Wired Headphones,1,11.99,04/22/19 12:25,"211 6th St, New York City, NY 10001" -185902,Wired Headphones,1,11.99,04/03/19 20:37,"546 12th St, Seattle, WA 98101" -185903,Flatscreen TV,1,300,04/19/19 09:02,"374 Forest St, New York City, NY 10001" -185904,USB-C Charging Cable,1,11.95,04/24/19 15:46,"977 Wilson St, Los Angeles, CA 90001" -185905,USB-C Charging Cable,1,11.95,04/02/19 16:30,"670 11th St, Dallas, TX 75001" -185906,Lightning Charging Cable,1,14.95,04/01/19 23:23,"538 13th St, Boston, MA 02215" -185907,USB-C Charging Cable,1,11.95,04/26/19 20:24,"869 Main St, Los Angeles, CA 90001" -185908,Lightning Charging Cable,1,14.95,04/19/19 08:53,"578 Willow St, San Francisco, CA 94016" -185909,Lightning Charging Cable,1,14.95,04/06/19 16:12,"587 11th St, San Francisco, CA 94016" -185910,34in Ultrawide Monitor,1,379.99,04/13/19 15:07,"102 Adams St, Seattle, WA 98101" -185911,Flatscreen TV,1,300,04/11/19 08:48,"364 Meadow St, Los Angeles, CA 90001" -185912,AAA Batteries (4-pack),1,2.99,04/27/19 09:49,"7 2nd St, Austin, TX 73301" -185913,AA Batteries (4-pack),2,3.84,04/26/19 14:26,"185 Adams St, Dallas, TX 75001" -185914,Bose SoundSport Headphones,1,99.99,04/18/19 17:35,"835 Jackson St, New York City, NY 10001" -185915,AA Batteries (4-pack),5,3.84,04/14/19 17:15,"749 Sunset St, Los Angeles, CA 90001" -185916,Vareebadd Phone,1,400,04/14/19 06:49,"281 Cedar St, Los Angeles, CA 90001" -185917,27in FHD Monitor,1,149.99,04/29/19 16:50,"270 Jefferson St, Boston, MA 02215" -185918,AA Batteries (4-pack),1,3.84,04/30/19 18:57,"722 Maple St, Portland, OR 97035" -185919,AA Batteries (4-pack),1,3.84,04/15/19 21:24,"982 14th St, Portland, ME 04101" -185920,27in FHD Monitor,1,149.99,04/06/19 00:58,"942 Hickory St, New York City, NY 10001" -185920,USB-C Charging Cable,3,11.95,04/06/19 00:58,"942 Hickory St, New York City, NY 10001" -185921,AA Batteries (4-pack),1,3.84,04/13/19 19:57,"698 West St, San Francisco, CA 94016" -185922,Lightning Charging Cable,1,14.95,04/21/19 15:37,"747 Adams St, San Francisco, CA 94016" -185923,USB-C Charging Cable,1,11.95,04/08/19 14:11,"328 Forest St, Portland, OR 97035" -185924,Apple Airpods Headphones,1,150,04/13/19 14:07,"484 5th St, San Francisco, CA 94016" -185925,Lightning Charging Cable,1,14.95,04/09/19 18:57,"243 Adams St, New York City, NY 10001" -185926,Lightning Charging Cable,1,14.95,04/24/19 12:18,"396 Ridge St, Los Angeles, CA 90001" -185927,Lightning Charging Cable,1,14.95,04/23/19 16:30,"845 Wilson St, Los Angeles, CA 90001" -185928,AAA Batteries (4-pack),1,2.99,04/08/19 12:19,"415 Dogwood St, New York City, NY 10001" -185929,Google Phone,1,600,04/19/19 12:09,"458 9th St, New York City, NY 10001" -185929,USB-C Charging Cable,1,11.95,04/19/19 12:09,"458 9th St, New York City, NY 10001" -185930,AA Batteries (4-pack),1,3.84,04/30/19 16:32,"700 2nd St, Dallas, TX 75001" -185931,Lightning Charging Cable,1,14.95,04/29/19 15:55,"827 Jackson St, New York City, NY 10001" -185932,AAA Batteries (4-pack),1,2.99,04/14/19 21:49,"602 Hickory St, Seattle, WA 98101" -185933,Bose SoundSport Headphones,1,99.99,04/11/19 19:13,"652 Walnut St, New York City, NY 10001" -185934,Google Phone,1,600,04/22/19 09:04,"759 12th St, Portland, OR 97035" -185935,AA Batteries (4-pack),1,3.84,04/11/19 17:19,"60 6th St, San Francisco, CA 94016" -185936,Bose SoundSport Headphones,1,99.99,04/11/19 10:58,"501 Madison St, Seattle, WA 98101" -185937,Apple Airpods Headphones,1,150,04/01/19 20:25,"81 Wilson St, San Francisco, CA 94016" -185938,Lightning Charging Cable,1,14.95,04/14/19 19:13,"99 13th St, Los Angeles, CA 90001" -185939,Wired Headphones,1,11.99,04/03/19 20:29,"110 Hill St, Dallas, TX 75001" -185940,AAA Batteries (4-pack),1,2.99,04/03/19 22:03,"494 Meadow St, Dallas, TX 75001" -185941,AA Batteries (4-pack),3,3.84,04/19/19 12:48,"216 Spruce St, Boston, MA 02215" -185942,USB-C Charging Cable,1,11.95,04/07/19 21:21,"66 Chestnut St, Atlanta, GA 30301" -185943,AAA Batteries (4-pack),2,2.99,04/15/19 10:54,"882 Wilson St, Portland, OR 97035" -185944,Lightning Charging Cable,1,14.95,04/07/19 17:49,"396 12th St, San Francisco, CA 94016" -185945,USB-C Charging Cable,1,11.95,04/23/19 09:15,"193 11th St, San Francisco, CA 94016" -185946,Wired Headphones,1,11.99,04/02/19 17:19,"617 10th St, San Francisco, CA 94016" -185947,34in Ultrawide Monitor,1,379.99,04/07/19 07:30,"98 12th St, Boston, MA 02215" -185948,Bose SoundSport Headphones,1,99.99,04/03/19 22:57,"431 Lake St, Portland, OR 97035" -185949,USB-C Charging Cable,1,11.95,04/19/19 13:02,"808 10th St, New York City, NY 10001" -185950,USB-C Charging Cable,1,11.95,04/21/19 10:42,"319 9th St, Los Angeles, CA 90001" -185951,Lightning Charging Cable,1,14.95,04/10/19 13:57,"914 Maple St, San Francisco, CA 94016" -185952,Lightning Charging Cable,1,14.95,04/26/19 12:23,"153 2nd St, Seattle, WA 98101" -185953,AA Batteries (4-pack),1,3.84,04/14/19 12:58,"287 Willow St, Los Angeles, CA 90001" -185954,Wired Headphones,1,11.99,04/18/19 23:25,"685 6th St, San Francisco, CA 94016" -185955,Apple Airpods Headphones,1,150,04/25/19 13:49,"166 West St, Los Angeles, CA 90001" -185956,27in 4K Gaming Monitor,1,389.99,04/19/19 19:34,"730 Maple St, Los Angeles, CA 90001" -185957,USB-C Charging Cable,1,11.95,04/06/19 20:28,"408 Cedar St, Dallas, TX 75001" -185958,USB-C Charging Cable,1,11.95,04/23/19 15:46,"205 6th St, Los Angeles, CA 90001" -185959,AA Batteries (4-pack),1,3.84,04/29/19 20:40,"267 Chestnut St, Austin, TX 73301" -185960,Apple Airpods Headphones,1,150,04/18/19 23:55,"357 Sunset St, New York City, NY 10001" -185961,Bose SoundSport Headphones,1,99.99,04/14/19 11:20,"389 Johnson St, San Francisco, CA 94016" -185962,AA Batteries (4-pack),1,3.84,04/01/19 10:48,"570 Elm St, San Francisco, CA 94016" -185963,Wired Headphones,1,11.99,04/24/19 16:13,"117 Forest St, San Francisco, CA 94016" -185964,Bose SoundSport Headphones,1,99.99,04/27/19 14:12,"272 1st St, New York City, NY 10001" -185965,Apple Airpods Headphones,1,150,04/19/19 13:18,"47 Lincoln St, New York City, NY 10001" -185966,Vareebadd Phone,1,400,04/08/19 11:31,"582 Adams St, San Francisco, CA 94016" -185967,USB-C Charging Cable,1,11.95,04/29/19 16:40,"358 Highland St, San Francisco, CA 94016" -185968,Macbook Pro Laptop,1,1700,04/22/19 17:12,"87 1st St, Los Angeles, CA 90001" -185969,USB-C Charging Cable,1,11.95,04/08/19 21:27,"237 Spruce St, San Francisco, CA 94016" -185970,Wired Headphones,1,11.99,04/03/19 21:35,"177 South St, San Francisco, CA 94016" -185971,AA Batteries (4-pack),1,3.84,04/14/19 10:20,"503 Hill St, Atlanta, GA 30301" -185972,ThinkPad Laptop,1,999.99,04/19/19 23:30,"328 Willow St, Los Angeles, CA 90001" -185973,iPhone,1,700,04/12/19 17:24,"967 13th St, Los Angeles, CA 90001" -185974,AAA Batteries (4-pack),1,2.99,04/17/19 18:57,"395 10th St, San Francisco, CA 94016" -185975,USB-C Charging Cable,1,11.95,04/13/19 17:22,"422 Adams St, San Francisco, CA 94016" -185976,27in 4K Gaming Monitor,1,389.99,04/02/19 16:50,"559 12th St, Boston, MA 02215" -185977,AAA Batteries (4-pack),1,2.99,04/25/19 11:04,"565 14th St, San Francisco, CA 94016" -185978,Apple Airpods Headphones,1,150,04/28/19 19:25,"566 Main St, Boston, MA 02215" -185979,AA Batteries (4-pack),1,3.84,04/05/19 12:44,"385 West St, Dallas, TX 75001" -185980,Lightning Charging Cable,2,14.95,04/23/19 17:26,"43 Cedar St, Portland, OR 97035" -185981,Flatscreen TV,1,300,04/23/19 22:53,"9 Adams St, Atlanta, GA 30301" -185982,Flatscreen TV,1,300,04/07/19 09:52,"409 Elm St, Dallas, TX 75001" -185983,USB-C Charging Cable,1,11.95,04/10/19 11:40,"277 2nd St, Los Angeles, CA 90001" -185984,Bose SoundSport Headphones,1,99.99,04/04/19 21:50,"48 Jackson St, Los Angeles, CA 90001" -185985,Lightning Charging Cable,1,14.95,04/16/19 12:43,"339 Adams St, San Francisco, CA 94016" -185986,Apple Airpods Headphones,1,150,04/03/19 08:56,"231 1st St, Boston, MA 02215" -185987,Lightning Charging Cable,2,14.95,04/20/19 20:12,"802 Hill St, New York City, NY 10001" -185988,Apple Airpods Headphones,1,150,04/03/19 16:57,"278 Cherry St, Boston, MA 02215" -185989,Wired Headphones,1,11.99,04/05/19 07:16,"550 13th St, Austin, TX 73301" -185990,Wired Headphones,1,11.99,04/26/19 07:27,"263 Spruce St, Los Angeles, CA 90001" -185991,Bose SoundSport Headphones,1,99.99,04/16/19 16:03,"568 Hill St, Boston, MA 02215" -185992,AAA Batteries (4-pack),4,2.99,04/09/19 18:05,"708 Wilson St, San Francisco, CA 94016" -185993,Wired Headphones,1,11.99,04/07/19 14:25,"832 12th St, Los Angeles, CA 90001" -185993,AA Batteries (4-pack),1,3.84,04/07/19 14:25,"832 12th St, Los Angeles, CA 90001" -185994,Lightning Charging Cable,1,14.95,04/16/19 13:08,"741 Cedar St, Boston, MA 02215" -185995,20in Monitor,1,109.99,04/27/19 10:40,"316 Walnut St, Los Angeles, CA 90001" -185996,AAA Batteries (4-pack),1,2.99,04/25/19 14:52,"528 1st St, New York City, NY 10001" -185997,ThinkPad Laptop,1,999.99,04/22/19 10:58,"457 14th St, Atlanta, GA 30301" -185998,Wired Headphones,1,11.99,04/30/19 06:13,"597 9th St, Dallas, TX 75001" -185999,USB-C Charging Cable,2,11.95,04/03/19 12:49,"693 Cherry St, San Francisco, CA 94016" -186000,AAA Batteries (4-pack),2,2.99,04/21/19 07:51,"231 6th St, San Francisco, CA 94016" -186001,AAA Batteries (4-pack),3,2.99,04/22/19 17:19,"359 11th St, San Francisco, CA 94016" -186002,USB-C Charging Cable,1,11.95,04/21/19 13:26,"602 Elm St, San Francisco, CA 94016" -186003,AAA Batteries (4-pack),1,2.99,04/18/19 16:35,"529 4th St, Boston, MA 02215" -186004,Lightning Charging Cable,1,14.95,04/10/19 10:11,"347 Cherry St, San Francisco, CA 94016" -186005,Bose SoundSport Headphones,1,99.99,04/12/19 18:39,"669 Adams St, Boston, MA 02215" -186006,USB-C Charging Cable,1,11.95,04/17/19 18:32,"460 Wilson St, Boston, MA 02215" -186007,iPhone,1,700,04/07/19 14:23,"990 Pine St, Los Angeles, CA 90001" -186008,Bose SoundSport Headphones,1,99.99,04/17/19 19:36,"432 Park St, New York City, NY 10001" -186008,Bose SoundSport Headphones,1,99.99,04/17/19 19:36,"432 Park St, New York City, NY 10001" -186009,USB-C Charging Cable,1,11.95,04/14/19 07:18,"747 Johnson St, Los Angeles, CA 90001" -186010,Flatscreen TV,1,300,04/11/19 12:17,"980 Adams St, San Francisco, CA 94016" -186010,Lightning Charging Cable,1,14.95,04/11/19 12:17,"980 Adams St, San Francisco, CA 94016" -186011,Bose SoundSport Headphones,1,99.99,04/08/19 23:21,"326 Highland St, Los Angeles, CA 90001" -186012,Apple Airpods Headphones,1,150,04/25/19 14:16,"252 Hickory St, Los Angeles, CA 90001" -186013,34in Ultrawide Monitor,1,379.99,04/02/19 18:25,"974 Madison St, Boston, MA 02215" -186014,Wired Headphones,1,11.99,04/09/19 06:51,"212 2nd St, San Francisco, CA 94016" -186015,AA Batteries (4-pack),1,3.84,04/14/19 16:54,"740 14th St, New York City, NY 10001" -186016,AA Batteries (4-pack),1,3.84,04/27/19 09:05,"492 Pine St, Portland, ME 04101" -186017,iPhone,1,700,04/04/19 00:32,"915 1st St, Los Angeles, CA 90001" -186018,27in FHD Monitor,1,149.99,04/11/19 12:55,"345 Forest St, New York City, NY 10001" -186019,USB-C Charging Cable,1,11.95,04/05/19 20:52,"214 Sunset St, San Francisco, CA 94016" -186019,Vareebadd Phone,1,400,04/05/19 20:52,"214 Sunset St, San Francisco, CA 94016" -186020,USB-C Charging Cable,1,11.95,04/21/19 18:33,"238 13th St, Atlanta, GA 30301" -186021,34in Ultrawide Monitor,1,379.99,04/23/19 05:51,"392 Elm St, San Francisco, CA 94016" -186022,USB-C Charging Cable,1,11.95,04/23/19 13:36,"587 Chestnut St, Boston, MA 02215" -186023,AAA Batteries (4-pack),2,2.99,04/07/19 15:40,"208 9th St, San Francisco, CA 94016" -186024,Apple Airpods Headphones,1,150,04/10/19 07:53,"32 Madison St, Los Angeles, CA 90001" -186025,AA Batteries (4-pack),1,3.84,04/25/19 13:48,"577 Adams St, Dallas, TX 75001" -186026,Macbook Pro Laptop,1,1700,04/29/19 21:44,"213 Washington St, Boston, MA 02215" -186027,Apple Airpods Headphones,1,150,04/17/19 05:15,"702 12th St, Seattle, WA 98101" -186028,AAA Batteries (4-pack),5,2.99,04/12/19 13:54,"414 Chestnut St, San Francisco, CA 94016" -186029,ThinkPad Laptop,1,999.99,04/01/19 19:36,"466 Pine St, San Francisco, CA 94016" -186030,AAA Batteries (4-pack),1,2.99,04/16/19 10:44,"111 Lakeview St, San Francisco, CA 94016" -186031,27in FHD Monitor,1,149.99,04/20/19 15:04,"839 Johnson St, Seattle, WA 98101" -186032,USB-C Charging Cable,1,11.95,04/19/19 17:36,"139 Cherry St, Los Angeles, CA 90001" -186033,27in FHD Monitor,1,149.99,04/30/19 09:14,"783 Forest St, Los Angeles, CA 90001" -186034,Vareebadd Phone,1,400,04/09/19 21:00,"516 Main St, San Francisco, CA 94016" -,,,,, -186035,27in 4K Gaming Monitor,1,389.99,04/30/19 17:03,"682 Meadow St, Portland, OR 97035" -186036,Apple Airpods Headphones,1,150,04/22/19 19:15,"605 6th St, New York City, NY 10001" -186037,USB-C Charging Cable,1,11.95,04/12/19 20:15,"807 Pine St, Los Angeles, CA 90001" -186038,Lightning Charging Cable,1,14.95,04/18/19 18:31,"777 Pine St, San Francisco, CA 94016" -186039,Wired Headphones,1,11.99,04/15/19 19:11,"442 Johnson St, Boston, MA 02215" -186040,Wired Headphones,1,11.99,04/09/19 11:08,"996 Cherry St, San Francisco, CA 94016" -186041,AA Batteries (4-pack),2,3.84,04/04/19 09:52,"575 North St, San Francisco, CA 94016" -186042,Bose SoundSport Headphones,1,99.99,04/12/19 12:26,"256 Washington St, Austin, TX 73301" -186043,20in Monitor,1,109.99,04/14/19 19:10,"388 12th St, Portland, OR 97035" -186044,Vareebadd Phone,1,400,04/25/19 13:06,"392 Jackson St, Boston, MA 02215" -186044,Wired Headphones,1,11.99,04/25/19 13:06,"392 Jackson St, Boston, MA 02215" -186045,Flatscreen TV,1,300,04/14/19 14:49,"787 9th St, Boston, MA 02215" -186046,Apple Airpods Headphones,1,150,04/03/19 08:20,"948 South St, Los Angeles, CA 90001" -186047,Wired Headphones,2,11.99,04/01/19 11:04,"330 Ridge St, Boston, MA 02215" -186048,USB-C Charging Cable,1,11.95,04/09/19 23:53,"783 1st St, Dallas, TX 75001" -186049,Lightning Charging Cable,1,14.95,04/15/19 08:18,"287 Johnson St, San Francisco, CA 94016" -186050,AA Batteries (4-pack),1,3.84,04/22/19 00:28,"701 Walnut St, New York City, NY 10001" -186051,AA Batteries (4-pack),3,3.84,04/26/19 06:47,"715 Cherry St, San Francisco, CA 94016" -186052,Bose SoundSport Headphones,1,99.99,04/24/19 19:23,"269 4th St, San Francisco, CA 94016" -186053,27in FHD Monitor,1,149.99,04/18/19 21:24,"53 Cedar St, Portland, OR 97035" -186054,AAA Batteries (4-pack),1,2.99,04/24/19 12:45,"516 1st St, Los Angeles, CA 90001" -186055,27in FHD Monitor,1,149.99,04/13/19 06:21,"535 14th St, Dallas, TX 75001" -186056,AA Batteries (4-pack),1,3.84,04/05/19 12:37,"655 River St, Austin, TX 73301" -186057,iPhone,1,700,04/06/19 20:47,"694 West St, New York City, NY 10001" -186058,AA Batteries (4-pack),1,3.84,04/23/19 12:19,"35 6th St, San Francisco, CA 94016" -186059,Lightning Charging Cable,1,14.95,04/06/19 10:29,"427 Highland St, Los Angeles, CA 90001" -186060,27in FHD Monitor,1,149.99,04/12/19 06:55,"619 Church St, Los Angeles, CA 90001" -186061,AA Batteries (4-pack),2,3.84,04/03/19 20:20,"663 Cedar St, Boston, MA 02215" -186062,Wired Headphones,1,11.99,04/09/19 18:43,"974 2nd St, Los Angeles, CA 90001" -186063,AAA Batteries (4-pack),1,2.99,04/16/19 13:40,"205 8th St, San Francisco, CA 94016" -186064,AA Batteries (4-pack),1,3.84,04/20/19 20:24,"725 Dogwood St, San Francisco, CA 94016" -186065,AAA Batteries (4-pack),2,2.99,04/18/19 16:13,"922 Spruce St, Dallas, TX 75001" -186066,Wired Headphones,1,11.99,04/02/19 10:27,"126 Washington St, Dallas, TX 75001" -186067,Wired Headphones,1,11.99,04/05/19 09:57,"996 Dogwood St, Los Angeles, CA 90001" -186068,Lightning Charging Cable,2,14.95,04/10/19 21:00,"936 Cherry St, Boston, MA 02215" -186069,USB-C Charging Cable,2,11.95,04/29/19 18:15,"816 Park St, Los Angeles, CA 90001" -186070,AAA Batteries (4-pack),2,2.99,04/14/19 16:02,"433 Spruce St, Los Angeles, CA 90001" -186071,Google Phone,1,600,04/18/19 17:35,"529 Cherry St, Boston, MA 02215" -186071,Bose SoundSport Headphones,1,99.99,04/18/19 17:35,"529 Cherry St, Boston, MA 02215" -186072,Wired Headphones,1,11.99,04/27/19 15:07,"50 6th St, San Francisco, CA 94016" -186073,Lightning Charging Cable,1,14.95,04/27/19 11:56,"304 Ridge St, Austin, TX 73301" -186074,AAA Batteries (4-pack),1,2.99,04/17/19 13:08,"534 Adams St, Dallas, TX 75001" -186075,ThinkPad Laptop,1,999.99,04/15/19 17:38,"579 Willow St, San Francisco, CA 94016" -186076,Lightning Charging Cable,1,14.95,04/06/19 17:04,"170 Wilson St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -186077,AAA Batteries (4-pack),2,2.99,04/29/19 06:04,"367 Lakeview St, New York City, NY 10001" -186078,27in FHD Monitor,1,149.99,04/19/19 16:05,"440 Washington St, Los Angeles, CA 90001" -186078,USB-C Charging Cable,1,11.95,04/19/19 16:05,"440 Washington St, Los Angeles, CA 90001" -186079,Lightning Charging Cable,1,14.95,04/08/19 17:54,"637 4th St, San Francisco, CA 94016" -186080,USB-C Charging Cable,1,11.95,04/29/19 16:35,"811 Ridge St, Austin, TX 73301" -186081,AAA Batteries (4-pack),1,2.99,04/25/19 18:29,"566 Adams St, Seattle, WA 98101" -186082,USB-C Charging Cable,1,11.95,04/02/19 08:31,"997 12th St, Boston, MA 02215" -186083,Bose SoundSport Headphones,1,99.99,04/02/19 17:27,"780 South St, Atlanta, GA 30301" -186084,Apple Airpods Headphones,1,150,04/26/19 06:26,"927 5th St, New York City, NY 10001" -186085,iPhone,1,700,04/07/19 09:39,"68 Walnut St, Seattle, WA 98101" -186086,Apple Airpods Headphones,1,150,04/01/19 18:58,"529 Willow St, Los Angeles, CA 90001" -186087,Macbook Pro Laptop,1,1700,04/18/19 12:11,"271 Main St, Boston, MA 02215" -186088,USB-C Charging Cable,1,11.95,04/06/19 19:24,"668 Elm St, Los Angeles, CA 90001" -186089,Wired Headphones,1,11.99,04/17/19 17:18,"794 Ridge St, Los Angeles, CA 90001" -186090,AAA Batteries (4-pack),1,2.99,04/01/19 09:04,"517 4th St, San Francisco, CA 94016" -186091,34in Ultrawide Monitor,1,379.99,04/24/19 03:35,"80 11th St, San Francisco, CA 94016" -186092,USB-C Charging Cable,1,11.95,04/17/19 21:36,"324 Meadow St, Austin, TX 73301" -186093,Bose SoundSport Headphones,1,99.99,04/24/19 20:54,"287 Ridge St, Seattle, WA 98101" -186094,Lightning Charging Cable,1,14.95,04/09/19 14:56,"429 9th St, San Francisco, CA 94016" -186095,USB-C Charging Cable,1,11.95,04/21/19 21:19,"349 Lake St, San Francisco, CA 94016" -186096,Google Phone,1,600,04/10/19 21:02,"918 Adams St, New York City, NY 10001" -186096,USB-C Charging Cable,1,11.95,04/10/19 21:02,"918 Adams St, New York City, NY 10001" -186097,AAA Batteries (4-pack),3,2.99,04/10/19 12:38,"499 Spruce St, San Francisco, CA 94016" -186098,iPhone,1,700,04/29/19 18:09,"890 8th St, Los Angeles, CA 90001" -186099,Wired Headphones,1,11.99,04/29/19 11:20,"843 Pine St, Portland, OR 97035" -186100,Bose SoundSport Headphones,1,99.99,04/20/19 16:46,"167 Church St, Los Angeles, CA 90001" -186101,Lightning Charging Cable,1,14.95,04/10/19 15:55,"874 Cedar St, Seattle, WA 98101" -186102,Google Phone,1,600,04/14/19 14:50,"876 Spruce St, Dallas, TX 75001" -186103,Apple Airpods Headphones,1,150,04/28/19 19:15,"674 Cherry St, San Francisco, CA 94016" -186104,Lightning Charging Cable,1,14.95,04/20/19 11:37,"727 Jackson St, Los Angeles, CA 90001" -186105,iPhone,1,700,04/08/19 14:30,"736 12th St, Boston, MA 02215" -186106,USB-C Charging Cable,1,11.95,04/15/19 15:06,"226 10th St, New York City, NY 10001" -186107,Apple Airpods Headphones,1,150,04/18/19 15:38,"320 West St, Dallas, TX 75001" -186108,USB-C Charging Cable,2,11.95,04/09/19 09:03,"426 Willow St, Boston, MA 02215" -186109,20in Monitor,1,109.99,04/13/19 19:26,"733 Forest St, Los Angeles, CA 90001" -186110,Apple Airpods Headphones,1,150,04/04/19 23:51,"417 Madison St, New York City, NY 10001" -186111,AAA Batteries (4-pack),1,2.99,04/11/19 18:34,"465 Main St, Dallas, TX 75001" -186112,USB-C Charging Cable,1,11.95,04/12/19 19:25,"27 Dogwood St, San Francisco, CA 94016" -186113,AA Batteries (4-pack),1,3.84,04/17/19 18:10,"119 Forest St, Atlanta, GA 30301" -186114,USB-C Charging Cable,1,11.95,04/16/19 19:45,"434 5th St, Los Angeles, CA 90001" -186115,Bose SoundSport Headphones,1,99.99,04/06/19 16:25,"167 Lakeview St, Boston, MA 02215" -186116,Wired Headphones,1,11.99,04/03/19 18:37,"350 Ridge St, Los Angeles, CA 90001" -186117,Google Phone,1,600,04/03/19 11:54,"494 Cedar St, Atlanta, GA 30301" -186117,USB-C Charging Cable,1,11.95,04/03/19 11:54,"494 Cedar St, Atlanta, GA 30301" -186118,Apple Airpods Headphones,1,150,04/26/19 19:21,"221 Hill St, Dallas, TX 75001" -186119,Apple Airpods Headphones,1,150,04/10/19 07:52,"879 2nd St, Boston, MA 02215" -186120,27in 4K Gaming Monitor,1,389.99,04/24/19 20:07,"729 Dogwood St, New York City, NY 10001" -186121,USB-C Charging Cable,1,11.95,04/07/19 14:07,"75 Wilson St, San Francisco, CA 94016" -186122,AAA Batteries (4-pack),2,2.99,04/19/19 20:31,"626 Cedar St, Atlanta, GA 30301" -186123,Wired Headphones,1,11.99,04/30/19 08:58,"2 Chestnut St, San Francisco, CA 94016" -186124,ThinkPad Laptop,1,999.99,04/06/19 11:18,"152 8th St, New York City, NY 10001" -186125,Wired Headphones,1,11.99,04/22/19 17:22,"355 Wilson St, Los Angeles, CA 90001" -186126,27in 4K Gaming Monitor,1,389.99,04/11/19 18:04,"36 Cedar St, Austin, TX 73301" -186127,Lightning Charging Cable,1,14.95,04/18/19 08:45,"806 Cherry St, Portland, OR 97035" -186128,AA Batteries (4-pack),1,3.84,04/10/19 18:29,"919 Park St, Los Angeles, CA 90001" -186129,AA Batteries (4-pack),1,3.84,04/28/19 21:30,"768 Lincoln St, Los Angeles, CA 90001" -186130,Vareebadd Phone,1,400,04/20/19 17:22,"125 12th St, San Francisco, CA 94016" -186131,27in FHD Monitor,1,149.99,04/30/19 13:54,"984 Johnson St, Los Angeles, CA 90001" -186132,Bose SoundSport Headphones,1,99.99,04/11/19 21:30,"3 West St, Portland, OR 97035" -186133,AAA Batteries (4-pack),1,2.99,04/17/19 18:05,"526 Adams St, San Francisco, CA 94016" -186134,Bose SoundSport Headphones,1,99.99,04/16/19 19:24,"663 Willow St, San Francisco, CA 94016" -186135,AA Batteries (4-pack),2,3.84,04/27/19 14:50,"780 12th St, San Francisco, CA 94016" -186136,USB-C Charging Cable,1,11.95,04/22/19 12:30,"510 Cedar St, San Francisco, CA 94016" -186137,Google Phone,1,600,04/13/19 09:40,"685 Pine St, San Francisco, CA 94016" -186138,Lightning Charging Cable,1,14.95,04/19/19 22:22,"591 Adams St, New York City, NY 10001" -186139,AA Batteries (4-pack),2,3.84,04/06/19 17:57,"842 Meadow St, Los Angeles, CA 90001" -186139,iPhone,1,700,04/06/19 17:57,"842 Meadow St, Los Angeles, CA 90001" -186140,Vareebadd Phone,1,400,04/10/19 21:36,"167 Meadow St, New York City, NY 10001" -186141,AAA Batteries (4-pack),2,2.99,04/21/19 21:21,"866 Main St, New York City, NY 10001" -186142,Lightning Charging Cable,1,14.95,04/10/19 13:40,"979 8th St, Portland, OR 97035" -186143,Apple Airpods Headphones,1,150,04/28/19 12:25,"515 Ridge St, Boston, MA 02215" -186144,27in 4K Gaming Monitor,1,389.99,04/12/19 10:58,"111 Main St, Portland, OR 97035" -186145,Apple Airpods Headphones,1,150,04/05/19 21:09,"170 Forest St, Seattle, WA 98101" -186146,Lightning Charging Cable,1,14.95,04/10/19 14:21,"617 Dogwood St, Seattle, WA 98101" -186147,Wired Headphones,1,11.99,04/04/19 15:48,"134 Washington St, San Francisco, CA 94016" -186148,Lightning Charging Cable,1,14.95,04/27/19 15:56,"714 Main St, Atlanta, GA 30301" -186149,Bose SoundSport Headphones,1,99.99,04/12/19 14:06,"294 West St, Portland, OR 97035" -186150,20in Monitor,1,109.99,04/23/19 07:30,"220 2nd St, Dallas, TX 75001" -186151,27in 4K Gaming Monitor,1,389.99,04/25/19 18:45,"323 Church St, Seattle, WA 98101" -186152,iPhone,1,700,04/26/19 23:56,"360 14th St, San Francisco, CA 94016" -186153,AA Batteries (4-pack),1,3.84,04/17/19 12:24,"234 Washington St, San Francisco, CA 94016" -186154,34in Ultrawide Monitor,1,379.99,04/28/19 12:58,"626 Spruce St, Los Angeles, CA 90001" -186155,Wired Headphones,2,11.99,04/29/19 20:51,"431 Willow St, Portland, OR 97035" -186156,Apple Airpods Headphones,1,150,04/24/19 08:56,"956 12th St, Dallas, TX 75001" -186157,AAA Batteries (4-pack),2,2.99,04/02/19 11:33,"794 Jefferson St, Los Angeles, CA 90001" -186158,iPhone,1,700,04/08/19 08:13,"344 Elm St, Boston, MA 02215" -186158,Lightning Charging Cable,1,14.95,04/08/19 08:13,"344 Elm St, Boston, MA 02215" -186159,Apple Airpods Headphones,1,150,04/01/19 11:21,"831 Highland St, Portland, OR 97035" -186160,AA Batteries (4-pack),1,3.84,04/06/19 08:54,"563 2nd St, San Francisco, CA 94016" -186161,USB-C Charging Cable,1,11.95,04/29/19 10:15,"425 Willow St, Dallas, TX 75001" -186162,AA Batteries (4-pack),1,3.84,04/29/19 17:15,"522 Spruce St, San Francisco, CA 94016" -186163,AAA Batteries (4-pack),2,2.99,04/10/19 22:00,"548 Hickory St, New York City, NY 10001" -186164,Vareebadd Phone,1,400,04/12/19 11:28,"21 Main St, Atlanta, GA 30301" -186165,AAA Batteries (4-pack),1,2.99,04/20/19 08:54,"709 Lake St, San Francisco, CA 94016" -186166,Wired Headphones,1,11.99,04/12/19 11:56,"461 13th St, San Francisco, CA 94016" -186167,Bose SoundSport Headphones,1,99.99,04/22/19 19:27,"249 Spruce St, Boston, MA 02215" -186168,Apple Airpods Headphones,1,150,04/04/19 13:27,"714 Center St, San Francisco, CA 94016" -186169,Apple Airpods Headphones,1,150,04/30/19 15:20,"887 9th St, Portland, ME 04101" -186170,USB-C Charging Cable,1,11.95,04/20/19 09:24,"284 Dogwood St, Portland, OR 97035" -186171,Apple Airpods Headphones,1,150,04/30/19 16:04,"26 Elm St, Seattle, WA 98101" -186172,USB-C Charging Cable,1,11.95,04/11/19 13:30,"809 14th St, New York City, NY 10001" -186173,Lightning Charging Cable,1,14.95,04/30/19 16:38,"899 Ridge St, Boston, MA 02215" -186174,27in 4K Gaming Monitor,1,389.99,04/20/19 09:07,"188 Wilson St, Portland, OR 97035" -186175,27in FHD Monitor,1,149.99,04/17/19 11:56,"997 14th St, San Francisco, CA 94016" -186176,Bose SoundSport Headphones,1,99.99,04/15/19 19:15,"510 11th St, San Francisco, CA 94016" -186177,Google Phone,1,600,04/30/19 13:53,"885 Johnson St, Dallas, TX 75001" -186178,ThinkPad Laptop,1,999.99,04/07/19 15:27,"604 Center St, Seattle, WA 98101" -186179,Google Phone,1,600,04/03/19 20:35,"845 Dogwood St, Boston, MA 02215" -186180,USB-C Charging Cable,1,11.95,04/01/19 19:19,"469 Park St, Atlanta, GA 30301" -186181,Apple Airpods Headphones,1,150,04/02/19 18:58,"716 Forest St, Seattle, WA 98101" -186182,Wired Headphones,1,11.99,04/25/19 14:05,"595 Maple St, Boston, MA 02215" -186183,USB-C Charging Cable,1,11.95,04/11/19 10:17,"673 1st St, Los Angeles, CA 90001" -186184,Lightning Charging Cable,1,14.95,04/05/19 21:37,"253 Maple St, Dallas, TX 75001" -186185,Lightning Charging Cable,1,14.95,04/19/19 10:44,"431 Johnson St, San Francisco, CA 94016" -186186,Wired Headphones,1,11.99,04/20/19 09:46,"912 14th St, Boston, MA 02215" -186187,Lightning Charging Cable,1,14.95,04/20/19 20:33,"758 14th St, Austin, TX 73301" -186188,USB-C Charging Cable,1,11.95,04/24/19 10:34,"693 Wilson St, New York City, NY 10001" -186189,Flatscreen TV,1,300,04/13/19 10:43,"782 11th St, Austin, TX 73301" -186190,Wired Headphones,1,11.99,04/05/19 18:42,"154 5th St, San Francisco, CA 94016" -186191,AAA Batteries (4-pack),2,2.99,04/12/19 00:06,"756 12th St, Austin, TX 73301" -186192,27in FHD Monitor,1,149.99,04/05/19 21:11,"146 Willow St, Portland, OR 97035" -186193,AA Batteries (4-pack),1,3.84,04/04/19 20:01,"942 North St, Dallas, TX 75001" -186194,Lightning Charging Cable,1,14.95,04/03/19 19:35,"802 Lake St, Seattle, WA 98101" -186195,AAA Batteries (4-pack),1,2.99,04/15/19 12:10,"981 Madison St, Atlanta, GA 30301" -186196,Lightning Charging Cable,1,14.95,04/05/19 22:59,"125 Cherry St, San Francisco, CA 94016" -186197,Lightning Charging Cable,1,14.95,04/29/19 05:31,"89 Maple St, Boston, MA 02215" -186198,Wired Headphones,1,11.99,04/15/19 17:02,"716 Jackson St, New York City, NY 10001" -186199,AAA Batteries (4-pack),1,2.99,04/18/19 20:52,"185 Dogwood St, Dallas, TX 75001" -186200,USB-C Charging Cable,1,11.95,04/12/19 20:22,"161 Maple St, Portland, OR 97035" -186201,Lightning Charging Cable,1,14.95,04/22/19 09:56,"329 South St, San Francisco, CA 94016" -186202,AAA Batteries (4-pack),1,2.99,04/11/19 10:56,"170 Church St, San Francisco, CA 94016" -186203,Lightning Charging Cable,1,14.95,04/12/19 08:03,"431 10th St, San Francisco, CA 94016" -186204,USB-C Charging Cable,1,11.95,04/28/19 13:56,"291 Center St, Los Angeles, CA 90001" -186205,AA Batteries (4-pack),2,3.84,04/15/19 11:23,"558 West St, Boston, MA 02215" -186206,USB-C Charging Cable,1,11.95,04/24/19 19:32,"292 13th St, Los Angeles, CA 90001" -186207,Wired Headphones,1,11.99,04/20/19 12:22,"592 4th St, Dallas, TX 75001" -186208,Lightning Charging Cable,1,14.95,04/14/19 16:29,"280 Forest St, Austin, TX 73301" -186209,Lightning Charging Cable,1,14.95,04/22/19 16:08,"835 Wilson St, Atlanta, GA 30301" -186210,AA Batteries (4-pack),1,3.84,04/19/19 11:02,"563 Washington St, New York City, NY 10001" -186211,Lightning Charging Cable,2,14.95,04/19/19 23:36,"692 Washington St, Atlanta, GA 30301" -186212,USB-C Charging Cable,2,11.95,04/30/19 11:34,"891 Lakeview St, New York City, NY 10001" -186213,Lightning Charging Cable,1,14.95,04/12/19 06:58,"594 Hill St, Portland, OR 97035" -186214,Wired Headphones,1,11.99,04/25/19 14:12,"180 Johnson St, Austin, TX 73301" -186215,AAA Batteries (4-pack),1,2.99,04/30/19 11:45,"229 Dogwood St, Seattle, WA 98101" -186216,27in FHD Monitor,1,149.99,04/07/19 22:36,"806 Washington St, Dallas, TX 75001" -186217,Lightning Charging Cable,1,14.95,04/28/19 13:01,"857 Lincoln St, Atlanta, GA 30301" -186218,Google Phone,1,600,04/22/19 13:24,"224 Cherry St, Boston, MA 02215" -186219,Wired Headphones,1,11.99,04/06/19 09:50,"833 Lakeview St, Dallas, TX 75001" -186220,AAA Batteries (4-pack),1,2.99,04/15/19 12:58,"552 Lakeview St, Seattle, WA 98101" -186221,USB-C Charging Cable,1,11.95,04/09/19 16:56,"920 Main St, Dallas, TX 75001" -186222,20in Monitor,1,109.99,04/12/19 08:01,"533 West St, Seattle, WA 98101" -186223,Bose SoundSport Headphones,1,99.99,04/27/19 23:30,"74 13th St, San Francisco, CA 94016" -186224,27in 4K Gaming Monitor,1,389.99,04/24/19 19:01,"694 North St, Austin, TX 73301" -186225,Flatscreen TV,1,300,04/24/19 13:30,"153 Cherry St, Atlanta, GA 30301" -186226,Google Phone,1,600,04/30/19 07:43,"799 Johnson St, Los Angeles, CA 90001" -186226,USB-C Charging Cable,1,11.95,04/30/19 07:43,"799 Johnson St, Los Angeles, CA 90001" -186227,Apple Airpods Headphones,1,150,04/27/19 01:18,"673 Dogwood St, San Francisco, CA 94016" -186228,Lightning Charging Cable,1,14.95,04/30/19 14:39,"857 Pine St, Los Angeles, CA 90001" -186229,Apple Airpods Headphones,1,150,04/12/19 06:32,"136 North St, Austin, TX 73301" -186230,AAA Batteries (4-pack),1,2.99,04/14/19 12:37,"590 Elm St, Los Angeles, CA 90001" -186231,Wired Headphones,1,11.99,04/06/19 21:49,"673 Cherry St, Austin, TX 73301" -186232,AAA Batteries (4-pack),3,2.99,04/12/19 18:20,"894 Lakeview St, Seattle, WA 98101" -186233,AAA Batteries (4-pack),1,2.99,04/07/19 16:19,"767 8th St, San Francisco, CA 94016" -186234,AAA Batteries (4-pack),1,2.99,04/03/19 13:49,"588 Maple St, Los Angeles, CA 90001" -186235,Wired Headphones,1,11.99,04/20/19 23:09,"300 Elm St, Atlanta, GA 30301" -186236,27in 4K Gaming Monitor,1,389.99,04/21/19 18:07,"848 Spruce St, Atlanta, GA 30301" -186237,Lightning Charging Cable,1,14.95,04/10/19 07:58,"134 Sunset St, Austin, TX 73301" -186238,Lightning Charging Cable,2,14.95,04/14/19 18:23,"98 7th St, Seattle, WA 98101" -186239,Apple Airpods Headphones,1,150,04/13/19 09:40,"799 7th St, Seattle, WA 98101" -186240,AAA Batteries (4-pack),2,2.99,04/10/19 13:17,"30 6th St, Boston, MA 02215" -186241,27in 4K Gaming Monitor,1,389.99,04/11/19 20:28,"490 10th St, Boston, MA 02215" -186242,AAA Batteries (4-pack),2,2.99,04/13/19 18:57,"42 Lakeview St, Portland, OR 97035" -186242,AA Batteries (4-pack),1,3.84,04/13/19 18:57,"42 Lakeview St, Portland, OR 97035" -186243,AAA Batteries (4-pack),1,2.99,04/27/19 13:54,"923 Ridge St, Los Angeles, CA 90001" -186244,AA Batteries (4-pack),3,3.84,04/11/19 20:12,"827 Maple St, Dallas, TX 75001" -186245,AAA Batteries (4-pack),1,2.99,04/18/19 07:18,"75 12th St, Portland, OR 97035" -186246,Apple Airpods Headphones,1,150,04/02/19 17:13,"579 Wilson St, San Francisco, CA 94016" -186247,Google Phone,1,600,04/30/19 09:43,"661 Willow St, Los Angeles, CA 90001" -186248,34in Ultrawide Monitor,1,379.99,04/12/19 14:27,"13 Church St, Portland, OR 97035" -186249,Lightning Charging Cable,1,14.95,04/05/19 15:43,"577 Lakeview St, Los Angeles, CA 90001" -186250,LG Washing Machine,1,600.0,04/16/19 11:14,"276 Maple St, Portland, OR 97035" -186251,Lightning Charging Cable,1,14.95,04/11/19 07:23,"21 Elm St, San Francisco, CA 94016" -186252,Macbook Pro Laptop,1,1700,04/12/19 08:41,"408 Johnson St, Dallas, TX 75001" -186253,USB-C Charging Cable,1,11.95,04/02/19 17:22,"806 Meadow St, Portland, ME 04101" -186254,Lightning Charging Cable,1,14.95,04/23/19 16:18,"735 Jefferson St, New York City, NY 10001" -186255,USB-C Charging Cable,1,11.95,04/20/19 08:05,"633 Washington St, Seattle, WA 98101" -186256,AAA Batteries (4-pack),1,2.99,04/12/19 17:05,"510 South St, Atlanta, GA 30301" -186257,Bose SoundSport Headphones,1,99.99,04/07/19 20:58,"694 1st St, Boston, MA 02215" -186258,AA Batteries (4-pack),2,3.84,04/09/19 15:11,"186 North St, Austin, TX 73301" -186259,Wired Headphones,1,11.99,04/02/19 13:36,"944 12th St, Los Angeles, CA 90001" -186260,USB-C Charging Cable,1,11.95,04/14/19 10:39,"926 Jackson St, San Francisco, CA 94016" -186261,Bose SoundSport Headphones,1,99.99,04/17/19 16:09,"547 Sunset St, San Francisco, CA 94016" -186262,34in Ultrawide Monitor,1,379.99,04/04/19 16:19,"783 1st St, Dallas, TX 75001" -186263,Vareebadd Phone,1,400,04/29/19 17:35,"639 Willow St, Austin, TX 73301" -186264,AAA Batteries (4-pack),1,2.99,04/01/19 17:08,"292 Sunset St, San Francisco, CA 94016" -186265,AA Batteries (4-pack),1,3.84,04/26/19 11:20,"356 10th St, Atlanta, GA 30301" -186266,Bose SoundSport Headphones,1,99.99,04/10/19 12:15,"199 Lincoln St, San Francisco, CA 94016" -186267,AA Batteries (4-pack),2,3.84,04/16/19 15:12,"967 Adams St, Los Angeles, CA 90001" -186268,Lightning Charging Cable,1,14.95,04/29/19 05:49,"472 1st St, Los Angeles, CA 90001" -186269,Wired Headphones,2,11.99,04/06/19 00:25,"223 Johnson St, Portland, OR 97035" -186270,Apple Airpods Headphones,1,150,04/30/19 12:28,"641 Willow St, New York City, NY 10001" -186271,Vareebadd Phone,1,400,04/07/19 20:29,"222 Church St, New York City, NY 10001" -186271,AA Batteries (4-pack),1,3.84,04/07/19 20:29,"222 Church St, New York City, NY 10001" -186272,USB-C Charging Cable,1,11.95,04/17/19 10:07,"35 Cedar St, San Francisco, CA 94016" -186273,ThinkPad Laptop,1,999.99,04/26/19 11:48,"753 1st St, Portland, OR 97035" -186274,AAA Batteries (4-pack),2,2.99,04/03/19 23:59,"685 7th St, Seattle, WA 98101" -186275,USB-C Charging Cable,1,11.95,04/02/19 17:01,"566 8th St, Los Angeles, CA 90001" -186276,AAA Batteries (4-pack),3,2.99,04/05/19 00:29,"528 Elm St, San Francisco, CA 94016" -186277,AA Batteries (4-pack),1,3.84,04/07/19 00:30,"914 Park St, New York City, NY 10001" -186278,Lightning Charging Cable,1,14.95,04/08/19 10:54,"774 Lakeview St, San Francisco, CA 94016" -186279,20in Monitor,1,109.99,04/12/19 00:22,"535 Lake St, New York City, NY 10001" -186280,Wired Headphones,1,11.99,04/18/19 09:45,"834 Lakeview St, Los Angeles, CA 90001" -186281,Wired Headphones,1,11.99,04/10/19 11:02,"203 Lake St, Los Angeles, CA 90001" -186282,20in Monitor,1,109.99,04/06/19 14:21,"729 Jackson St, Seattle, WA 98101" -186283,Bose SoundSport Headphones,1,99.99,04/21/19 13:03,"848 Pine St, Dallas, TX 75001" -186284,iPhone,1,700,04/06/19 01:13,"30 10th St, Dallas, TX 75001" -186284,Lightning Charging Cable,1,14.95,04/06/19 01:13,"30 10th St, Dallas, TX 75001" -186285,iPhone,1,700,04/29/19 14:58,"500 Chestnut St, San Francisco, CA 94016" -186286,Bose SoundSport Headphones,1,99.99,04/29/19 17:17,"708 Maple St, Atlanta, GA 30301" -186287,AAA Batteries (4-pack),2,2.99,04/09/19 22:16,"499 13th St, New York City, NY 10001" -186288,iPhone,1,700,04/07/19 09:41,"204 Spruce St, Austin, TX 73301" -186288,Wired Headphones,1,11.99,04/07/19 09:41,"204 Spruce St, Austin, TX 73301" -186289,Apple Airpods Headphones,1,150,04/09/19 09:57,"402 8th St, New York City, NY 10001" -186290,USB-C Charging Cable,1,11.95,04/12/19 20:26,"308 Wilson St, New York City, NY 10001" -186291,AA Batteries (4-pack),1,3.84,04/21/19 11:01,"358 Maple St, Dallas, TX 75001" -186292,Wired Headphones,1,11.99,04/14/19 12:11,"666 Jackson St, Los Angeles, CA 90001" -186293,27in 4K Gaming Monitor,1,389.99,04/20/19 17:09,"268 Spruce St, San Francisco, CA 94016" -186294,27in 4K Gaming Monitor,1,389.99,04/28/19 08:23,"13 Center St, San Francisco, CA 94016" -186295,Apple Airpods Headphones,1,150,04/27/19 12:40,"345 13th St, Atlanta, GA 30301" -186296,Macbook Pro Laptop,1,1700,04/04/19 15:16,"491 4th St, San Francisco, CA 94016" -186297,Bose SoundSport Headphones,1,99.99,04/01/19 07:01,"944 Cherry St, Atlanta, GA 30301" -186298,Bose SoundSport Headphones,1,99.99,04/21/19 19:07,"621 5th St, Los Angeles, CA 90001" -186299,27in 4K Gaming Monitor,1,389.99,04/18/19 00:19,"55 Jackson St, Los Angeles, CA 90001" -186300,Bose SoundSport Headphones,1,99.99,04/09/19 00:41,"495 Hill St, San Francisco, CA 94016" -186301,Lightning Charging Cable,1,14.95,04/24/19 03:05,"279 Hill St, Boston, MA 02215" -186302,LG Dryer,1,600.0,04/13/19 18:35,"505 Johnson St, Boston, MA 02215" -186303,Lightning Charging Cable,1,14.95,04/28/19 17:54,"438 4th St, San Francisco, CA 94016" -186304,Lightning Charging Cable,1,14.95,04/24/19 07:14,"498 Lake St, Seattle, WA 98101" -186305,Wired Headphones,1,11.99,04/19/19 15:24,"460 Hill St, San Francisco, CA 94016" -186306,Macbook Pro Laptop,1,1700,04/14/19 19:52,"447 12th St, Atlanta, GA 30301" -186307,Apple Airpods Headphones,1,150,04/16/19 03:38,"79 South St, Seattle, WA 98101" -186308,AA Batteries (4-pack),1,3.84,04/11/19 23:49,"171 7th St, Dallas, TX 75001" -186309,AAA Batteries (4-pack),2,2.99,04/24/19 14:47,"801 14th St, Boston, MA 02215" -186310,USB-C Charging Cable,1,11.95,04/19/19 15:01,"68 Highland St, San Francisco, CA 94016" -186311,Lightning Charging Cable,1,14.95,04/12/19 23:38,"835 Willow St, Austin, TX 73301" -186312,27in 4K Gaming Monitor,1,389.99,04/19/19 15:03,"721 Forest St, Boston, MA 02215" -186313,Bose SoundSport Headphones,1,99.99,04/13/19 15:28,"429 Cherry St, Atlanta, GA 30301" -186314,Apple Airpods Headphones,1,150,04/08/19 21:17,"759 Lincoln St, San Francisco, CA 94016" -186315,Apple Airpods Headphones,1,150,04/13/19 09:07,"670 Center St, San Francisco, CA 94016" -186316,27in 4K Gaming Monitor,1,389.99,04/14/19 23:41,"528 10th St, New York City, NY 10001" -186317,Lightning Charging Cable,1,14.95,04/14/19 13:16,"590 Cherry St, Atlanta, GA 30301" -186318,AAA Batteries (4-pack),1,2.99,04/21/19 18:15,"28 Chestnut St, Los Angeles, CA 90001" -186319,27in 4K Gaming Monitor,1,389.99,04/16/19 07:16,"942 Main St, Los Angeles, CA 90001" -186320,Lightning Charging Cable,1,14.95,04/29/19 10:53,"759 4th St, Los Angeles, CA 90001" -186321,27in FHD Monitor,1,149.99,04/26/19 21:09,"429 14th St, San Francisco, CA 94016" -186322,AA Batteries (4-pack),1,3.84,04/01/19 17:27,"423 14th St, Dallas, TX 75001" -186323,Google Phone,1,600,04/20/19 10:42,"185 10th St, New York City, NY 10001" -186324,Bose SoundSport Headphones,1,99.99,04/21/19 15:07,"925 13th St, Boston, MA 02215" -186325,AAA Batteries (4-pack),2,2.99,04/16/19 23:43,"75 12th St, Boston, MA 02215" -186326,AAA Batteries (4-pack),1,2.99,04/05/19 12:04,"317 12th St, San Francisco, CA 94016" -186327,27in 4K Gaming Monitor,1,389.99,04/29/19 05:12,"607 6th St, Seattle, WA 98101" -186328,Wired Headphones,1,11.99,04/02/19 19:31,"576 Madison St, Dallas, TX 75001" -186329,Bose SoundSport Headphones,1,99.99,04/12/19 18:35,"407 Johnson St, Los Angeles, CA 90001" -186330,Wired Headphones,1,11.99,04/23/19 11:50,"493 Madison St, San Francisco, CA 94016" -186331,AAA Batteries (4-pack),5,2.99,04/09/19 11:35,"553 2nd St, Los Angeles, CA 90001" -186331,AAA Batteries (4-pack),1,2.99,04/09/19 11:35,"553 2nd St, Los Angeles, CA 90001" -186332,Apple Airpods Headphones,1,150,04/25/19 16:39,"170 10th St, Seattle, WA 98101" -186333,Apple Airpods Headphones,1,150,04/27/19 10:35,"433 4th St, San Francisco, CA 94016" -186334,Flatscreen TV,1,300,04/05/19 10:18,"612 North St, Seattle, WA 98101" -186335,Macbook Pro Laptop,1,1700,04/18/19 11:57,"211 Hill St, San Francisco, CA 94016" -186336,ThinkPad Laptop,1,999.99,04/08/19 23:29,"785 13th St, Seattle, WA 98101" -186337,27in FHD Monitor,1,149.99,04/09/19 12:04,"229 Park St, San Francisco, CA 94016" -186338,27in FHD Monitor,1,149.99,04/16/19 17:23,"56 Pine St, Boston, MA 02215" -186339,USB-C Charging Cable,1,11.95,04/16/19 16:47,"109 Church St, San Francisco, CA 94016" -186340,USB-C Charging Cable,1,11.95,04/07/19 13:00,"675 River St, Los Angeles, CA 90001" -186341,AAA Batteries (4-pack),1,2.99,04/13/19 17:44,"456 4th St, San Francisco, CA 94016" -186342,Bose SoundSport Headphones,1,99.99,04/29/19 08:59,"231 13th St, Dallas, TX 75001" -186343,Apple Airpods Headphones,1,150,04/10/19 00:15,"567 Park St, New York City, NY 10001" -,,,,, -186344,Google Phone,1,600,04/04/19 10:14,"809 Hill St, Seattle, WA 98101" -186345,Apple Airpods Headphones,1,150,04/02/19 18:03,"305 8th St, New York City, NY 10001" -186346,27in FHD Monitor,1,149.99,04/10/19 17:25,"600 Madison St, Austin, TX 73301" -186347,AA Batteries (4-pack),1,3.84,04/09/19 20:58,"439 Hickory St, San Francisco, CA 94016" -186348,Apple Airpods Headphones,1,150,04/27/19 23:22,"684 North St, Portland, ME 04101" -186349,34in Ultrawide Monitor,1,379.99,04/02/19 22:53,"551 Ridge St, San Francisco, CA 94016" -186350,AAA Batteries (4-pack),1,2.99,04/30/19 10:57,"192 Center St, Los Angeles, CA 90001" -186351,AAA Batteries (4-pack),1,2.99,04/30/19 21:15,"321 Adams St, Austin, TX 73301" -186352,Wired Headphones,1,11.99,04/03/19 18:04,"575 Cherry St, Dallas, TX 75001" -186353,Bose SoundSport Headphones,1,99.99,04/25/19 15:08,"805 9th St, Seattle, WA 98101" -186354,27in FHD Monitor,1,149.99,04/25/19 12:19,"217 Wilson St, Portland, ME 04101" -186355,USB-C Charging Cable,1,11.95,04/28/19 13:19,"220 Chestnut St, Atlanta, GA 30301" -186356,Lightning Charging Cable,1,14.95,04/25/19 19:51,"901 Cherry St, Seattle, WA 98101" -186357,AAA Batteries (4-pack),1,2.99,04/17/19 15:36,"461 Park St, Los Angeles, CA 90001" -186358,Lightning Charging Cable,1,14.95,04/14/19 14:57,"460 Wilson St, Seattle, WA 98101" -186359,Lightning Charging Cable,1,14.95,04/29/19 22:03,"403 12th St, Boston, MA 02215" -186360,Lightning Charging Cable,1,14.95,04/12/19 15:49,"656 2nd St, Atlanta, GA 30301" -186361,AA Batteries (4-pack),1,3.84,04/03/19 13:53,"64 Lakeview St, Portland, OR 97035" -186362,Wired Headphones,1,11.99,04/01/19 08:24,"464 Ridge St, Atlanta, GA 30301" -186362,Lightning Charging Cable,1,14.95,04/01/19 08:24,"464 Ridge St, Atlanta, GA 30301" -186363,Bose SoundSport Headphones,1,99.99,04/02/19 09:08,"814 2nd St, San Francisco, CA 94016" -186364,AAA Batteries (4-pack),3,2.99,04/12/19 13:53,"534 10th St, Los Angeles, CA 90001" -186365,AAA Batteries (4-pack),1,2.99,04/13/19 23:02,"357 Forest St, Los Angeles, CA 90001" -186366,27in 4K Gaming Monitor,1,389.99,04/10/19 01:52,"713 North St, San Francisco, CA 94016" -186367,Google Phone,1,600,04/18/19 23:39,"318 Spruce St, Dallas, TX 75001" -186368,20in Monitor,1,109.99,04/28/19 10:12,"352 8th St, New York City, NY 10001" -186369,Google Phone,1,600,04/05/19 10:37,"930 Church St, Atlanta, GA 30301" -186370,Google Phone,1,600,04/14/19 09:27,"927 Madison St, Portland, OR 97035" -186370,USB-C Charging Cable,2,11.95,04/14/19 09:27,"927 Madison St, Portland, OR 97035" -186371,27in FHD Monitor,1,149.99,04/12/19 19:02,"752 14th St, Seattle, WA 98101" -186372,AAA Batteries (4-pack),3,2.99,04/22/19 14:09,"293 2nd St, Los Angeles, CA 90001" -186373,Wired Headphones,1,11.99,04/18/19 13:53,"739 Chestnut St, New York City, NY 10001" -186374,USB-C Charging Cable,1,11.95,04/06/19 22:17,"511 Washington St, Los Angeles, CA 90001" -186375,AA Batteries (4-pack),3,3.84,04/04/19 10:04,"440 7th St, New York City, NY 10001" -186376,Wired Headphones,1,11.99,04/02/19 21:04,"416 Maple St, Los Angeles, CA 90001" -186377,AA Batteries (4-pack),1,3.84,04/15/19 20:13,"9 2nd St, San Francisco, CA 94016" -186378,Lightning Charging Cable,1,14.95,04/18/19 22:35,"618 Sunset St, New York City, NY 10001" -186379,USB-C Charging Cable,1,11.95,04/28/19 17:14,"672 Spruce St, Los Angeles, CA 90001" -186380,AA Batteries (4-pack),1,3.84,04/14/19 19:44,"710 Maple St, Portland, ME 04101" -186381,Lightning Charging Cable,1,14.95,04/06/19 02:55,"783 Wilson St, Los Angeles, CA 90001" -186382,Google Phone,1,600,04/13/19 18:30,"651 West St, New York City, NY 10001" -186383,AA Batteries (4-pack),1,3.84,04/21/19 21:54,"622 Park St, Los Angeles, CA 90001" -186384,iPhone,1,700,04/02/19 00:00,"445 Madison St, San Francisco, CA 94016" -186384,Wired Headphones,1,11.99,04/02/19 00:00,"445 Madison St, San Francisco, CA 94016" -186385,20in Monitor,1,109.99,04/09/19 12:36,"660 11th St, Boston, MA 02215" -186386,AAA Batteries (4-pack),1,2.99,04/04/19 11:40,"329 Cedar St, San Francisco, CA 94016" -186387,Macbook Pro Laptop,1,1700,04/05/19 15:10,"792 Hill St, Portland, ME 04101" -186388,Flatscreen TV,1,300,04/15/19 08:25,"199 5th St, Boston, MA 02215" -186389,27in FHD Monitor,2,149.99,04/25/19 11:17,"934 Church St, Boston, MA 02215" -186390,Bose SoundSport Headphones,1,99.99,04/28/19 19:33,"616 Cherry St, Atlanta, GA 30301" -186391,USB-C Charging Cable,1,11.95,04/19/19 20:45,"840 14th St, Dallas, TX 75001" -186392,Apple Airpods Headphones,1,150,04/16/19 09:20,"916 9th St, San Francisco, CA 94016" -186393,AAA Batteries (4-pack),1,2.99,04/16/19 03:42,"661 Main St, San Francisco, CA 94016" -186394,Lightning Charging Cable,1,14.95,04/17/19 05:30,"789 9th St, San Francisco, CA 94016" -186395,AA Batteries (4-pack),1,3.84,04/10/19 15:16,"952 8th St, Portland, OR 97035" -186396,Lightning Charging Cable,1,14.95,04/11/19 13:25,"757 Meadow St, Portland, OR 97035" -186397,27in FHD Monitor,1,149.99,04/22/19 07:27,"458 12th St, Atlanta, GA 30301" -186398,iPhone,1,700,04/25/19 13:41,"156 Dogwood St, San Francisco, CA 94016" -186399,Lightning Charging Cable,1,14.95,04/27/19 14:03,"783 Madison St, Dallas, TX 75001" -186400,Apple Airpods Headphones,1,150,04/14/19 05:09,"729 Park St, Atlanta, GA 30301" -186401,AA Batteries (4-pack),1,3.84,04/17/19 11:19,"367 Willow St, Los Angeles, CA 90001" -186402,Apple Airpods Headphones,1,150,04/22/19 10:40,"571 14th St, Boston, MA 02215" -186403,LG Dryer,1,600.0,04/21/19 05:43,"995 12th St, Boston, MA 02215" -186404,USB-C Charging Cable,1,11.95,04/02/19 07:55,"70 West St, New York City, NY 10001" -186405,Lightning Charging Cable,1,14.95,04/19/19 13:19,"171 Jackson St, Seattle, WA 98101" -186405,AAA Batteries (4-pack),1,2.99,04/19/19 13:19,"171 Jackson St, Seattle, WA 98101" -186406,Flatscreen TV,1,300,04/15/19 13:03,"634 Lincoln St, Austin, TX 73301" -186407,Wired Headphones,1,11.99,04/15/19 17:16,"30 Cedar St, New York City, NY 10001" -186408,AA Batteries (4-pack),1,3.84,04/27/19 10:51,"136 Sunset St, Los Angeles, CA 90001" -186409,Apple Airpods Headphones,1,150,04/22/19 12:01,"379 Washington St, Portland, OR 97035" -186410,AAA Batteries (4-pack),1,2.99,04/19/19 14:36,"211 Johnson St, Seattle, WA 98101" -186411,Wired Headphones,2,11.99,04/17/19 21:09,"725 Church St, New York City, NY 10001" -186412,Wired Headphones,1,11.99,04/13/19 19:30,"224 Cherry St, New York City, NY 10001" -186413,AAA Batteries (4-pack),1,2.99,04/07/19 11:05,"250 1st St, San Francisco, CA 94016" -186414,AA Batteries (4-pack),1,3.84,04/12/19 13:42,"227 1st St, San Francisco, CA 94016" -186415,USB-C Charging Cable,1,11.95,04/11/19 17:36,"31 Chestnut St, New York City, NY 10001" -186416,Google Phone,1,600,04/02/19 18:09,"23 Wilson St, New York City, NY 10001" -186417,Wired Headphones,1,11.99,04/08/19 22:15,"893 West St, Austin, TX 73301" -186418,AAA Batteries (4-pack),4,2.99,04/03/19 21:40,"680 Spruce St, Los Angeles, CA 90001" -186419,iPhone,1,700,04/17/19 17:15,"944 Sunset St, Dallas, TX 75001" -186419,Lightning Charging Cable,1,14.95,04/17/19 17:15,"944 Sunset St, Dallas, TX 75001" -186420,USB-C Charging Cable,1,11.95,04/18/19 14:27,"637 Ridge St, Boston, MA 02215" -186421,Lightning Charging Cable,1,14.95,04/06/19 23:46,"252 12th St, Boston, MA 02215" -186422,20in Monitor,2,109.99,04/05/19 15:22,"467 Elm St, New York City, NY 10001" -186423,USB-C Charging Cable,1,11.95,04/19/19 11:16,"250 7th St, Los Angeles, CA 90001" -186424,USB-C Charging Cable,1,11.95,04/04/19 21:06,"645 Dogwood St, Seattle, WA 98101" -186425,Bose SoundSport Headphones,1,99.99,04/02/19 08:03,"117 Highland St, San Francisco, CA 94016" -186426,AAA Batteries (4-pack),1,2.99,04/12/19 16:18,"230 Walnut St, San Francisco, CA 94016" -186427,Lightning Charging Cable,1,14.95,04/27/19 12:20,"257 Hickory St, Portland, OR 97035" -186428,Apple Airpods Headphones,1,150,04/20/19 16:22,"494 Hickory St, San Francisco, CA 94016" -186429,27in FHD Monitor,1,149.99,04/03/19 12:45,"648 Johnson St, Dallas, TX 75001" -186430,Wired Headphones,1,11.99,04/19/19 20:37,"858 Highland St, San Francisco, CA 94016" -186431,Wired Headphones,1,11.99,04/17/19 14:33,"116 Walnut St, Los Angeles, CA 90001" -186432,AAA Batteries (4-pack),1,2.99,04/13/19 13:40,"972 13th St, Portland, OR 97035" -186433,Bose SoundSport Headphones,1,99.99,04/09/19 20:30,"889 Johnson St, Los Angeles, CA 90001" -186434,34in Ultrawide Monitor,1,379.99,04/16/19 18:50,"20 Sunset St, Atlanta, GA 30301" -186435,iPhone,1,700,04/04/19 19:21,"387 Highland St, Boston, MA 02215" -186436,Google Phone,1,600,04/13/19 14:00,"366 Cherry St, Los Angeles, CA 90001" -186436,Wired Headphones,2,11.99,04/13/19 14:00,"366 Cherry St, Los Angeles, CA 90001" -186437,AAA Batteries (4-pack),2,2.99,04/10/19 09:07,"830 Maple St, Los Angeles, CA 90001" -186438,34in Ultrawide Monitor,1,379.99,04/17/19 13:32,"971 Center St, Boston, MA 02215" -186439,Apple Airpods Headphones,1,150,04/01/19 10:41,"862 Elm St, Atlanta, GA 30301" -186440,USB-C Charging Cable,1,11.95,04/15/19 14:54,"250 Willow St, Portland, OR 97035" -186441,Flatscreen TV,1,300,04/03/19 06:52,"849 Spruce St, Los Angeles, CA 90001" -186442,Wired Headphones,1,11.99,04/11/19 19:00,"210 1st St, Seattle, WA 98101" -186443,27in FHD Monitor,1,149.99,04/29/19 06:36,"167 Spruce St, Atlanta, GA 30301" -186444,iPhone,1,700,04/08/19 06:14,"535 South St, Dallas, TX 75001" -186445,Lightning Charging Cable,1,14.95,04/23/19 12:50,"631 West St, Boston, MA 02215" -186446,Lightning Charging Cable,1,14.95,04/24/19 18:22,"71 Church St, Los Angeles, CA 90001" -186447,Wired Headphones,1,11.99,04/09/19 11:33,"91 Hill St, Portland, OR 97035" -186448,AA Batteries (4-pack),1,3.84,04/22/19 09:20,"954 5th St, Austin, TX 73301" -186449,27in 4K Gaming Monitor,1,389.99,04/15/19 23:17,"141 River St, Dallas, TX 75001" -186450,Apple Airpods Headphones,1,150,04/16/19 19:14,"759 Adams St, Atlanta, GA 30301" -186451,Wired Headphones,1,11.99,04/19/19 11:45,"322 Lake St, Seattle, WA 98101" -186452,Lightning Charging Cable,1,14.95,04/21/19 18:05,"655 Spruce St, New York City, NY 10001" -186453,USB-C Charging Cable,1,11.95,04/08/19 18:58,"919 Dogwood St, Portland, OR 97035" -186454,27in FHD Monitor,1,149.99,04/03/19 01:52,"940 Madison St, Seattle, WA 98101" -186455,iPhone,1,700,04/08/19 10:27,"131 11th St, Los Angeles, CA 90001" -186456,Lightning Charging Cable,1,14.95,04/22/19 07:51,"798 Wilson St, San Francisco, CA 94016" -186457,Lightning Charging Cable,1,14.95,04/18/19 13:40,"991 Hickory St, Los Angeles, CA 90001" -186458,Lightning Charging Cable,1,14.95,04/30/19 11:58,"205 North St, Seattle, WA 98101" -186459,Lightning Charging Cable,1,14.95,04/24/19 20:27,"481 8th St, Seattle, WA 98101" -186460,iPhone,1,700,04/22/19 08:47,"951 Cedar St, Atlanta, GA 30301" -186461,Flatscreen TV,1,300,04/30/19 07:50,"891 Lakeview St, Los Angeles, CA 90001" -186462,AAA Batteries (4-pack),1,2.99,04/02/19 15:41,"571 Dogwood St, New York City, NY 10001" -186463,Wired Headphones,1,11.99,04/21/19 12:24,"452 8th St, Dallas, TX 75001" -186464,AAA Batteries (4-pack),1,2.99,04/21/19 21:29,"970 10th St, San Francisco, CA 94016" -186465,AA Batteries (4-pack),1,3.84,04/18/19 12:09,"655 2nd St, Portland, OR 97035" -186466,USB-C Charging Cable,1,11.95,04/24/19 13:37,"603 9th St, Portland, ME 04101" -186467,Flatscreen TV,1,300,04/16/19 05:49,"911 Hickory St, Portland, OR 97035" -186468,iPhone,1,700,04/08/19 13:57,"887 Willow St, Los Angeles, CA 90001" -186469,Bose SoundSport Headphones,1,99.99,04/26/19 21:50,"361 12th St, Los Angeles, CA 90001" -186470,Wired Headphones,2,11.99,04/06/19 09:48,"344 Meadow St, Boston, MA 02215" -186471,Lightning Charging Cable,2,14.95,04/29/19 01:51,"883 Church St, Atlanta, GA 30301" -186472,USB-C Charging Cable,1,11.95,04/20/19 13:47,"775 West St, Austin, TX 73301" -186473,Apple Airpods Headphones,1,150,04/27/19 23:11,"901 12th St, San Francisco, CA 94016" -186474,Wired Headphones,1,11.99,04/07/19 07:31,"845 5th St, San Francisco, CA 94016" -186475,AA Batteries (4-pack),2,3.84,04/17/19 12:45,"525 10th St, Dallas, TX 75001" -186476,Wired Headphones,2,11.99,04/15/19 08:27,"984 West St, New York City, NY 10001" -186477,Google Phone,1,600,04/14/19 11:33,"312 10th St, New York City, NY 10001" -186478,AAA Batteries (4-pack),2,2.99,04/20/19 01:40,"309 13th St, New York City, NY 10001" -186479,AAA Batteries (4-pack),3,2.99,04/06/19 21:13,"412 5th St, San Francisco, CA 94016" -186480,Wired Headphones,1,11.99,04/27/19 12:28,"662 Jefferson St, Austin, TX 73301" -186481,Lightning Charging Cable,1,14.95,04/18/19 05:55,"64 10th St, Los Angeles, CA 90001" -186482,Lightning Charging Cable,1,14.95,04/05/19 22:23,"12 6th St, Austin, TX 73301" -186483,USB-C Charging Cable,1,11.95,04/06/19 19:55,"677 Madison St, Boston, MA 02215" -186484,Macbook Pro Laptop,1,1700,04/24/19 16:42,"184 10th St, San Francisco, CA 94016" -186485,USB-C Charging Cable,1,11.95,04/08/19 09:29,"962 Church St, Dallas, TX 75001" -186486,Wired Headphones,1,11.99,04/16/19 10:42,"635 Jefferson St, Austin, TX 73301" -186487,AA Batteries (4-pack),1,3.84,04/16/19 03:15,"431 Madison St, Portland, OR 97035" -186487,34in Ultrawide Monitor,1,379.99,04/16/19 03:15,"431 Madison St, Portland, OR 97035" -186488,Bose SoundSport Headphones,1,99.99,04/10/19 22:14,"814 Johnson St, Dallas, TX 75001" -186489,iPhone,1,700,04/12/19 12:30,"281 Cherry St, San Francisco, CA 94016" -186490,AAA Batteries (4-pack),1,2.99,04/23/19 11:58,"917 Center St, Portland, OR 97035" -186491,AA Batteries (4-pack),1,3.84,04/16/19 22:06,"905 11th St, Atlanta, GA 30301" -186492,Macbook Pro Laptop,1,1700,04/07/19 23:34,"606 7th St, New York City, NY 10001" -186493,Bose SoundSport Headphones,1,99.99,04/30/19 17:43,"791 12th St, Austin, TX 73301" -186494,AA Batteries (4-pack),1,3.84,04/18/19 15:37,"434 Jefferson St, Los Angeles, CA 90001" -186495,AAA Batteries (4-pack),3,2.99,04/30/19 07:52,"709 Jackson St, New York City, NY 10001" -186496,Lightning Charging Cable,1,14.95,04/06/19 22:16,"340 14th St, New York City, NY 10001" -186497,Lightning Charging Cable,1,14.95,04/14/19 21:44,"339 10th St, Los Angeles, CA 90001" -186498,AA Batteries (4-pack),2,3.84,04/08/19 12:58,"317 Pine St, Austin, TX 73301" -186499,AAA Batteries (4-pack),1,2.99,04/12/19 11:18,"509 10th St, Los Angeles, CA 90001" -186500,Lightning Charging Cable,1,14.95,04/10/19 19:10,"301 Walnut St, Austin, TX 73301" -186501,Macbook Pro Laptop,1,1700,04/09/19 06:03,"475 Lake St, Atlanta, GA 30301" -186502,Lightning Charging Cable,1,14.95,04/05/19 17:31,"540 Adams St, Atlanta, GA 30301" -186503,20in Monitor,1,109.99,04/23/19 22:58,"953 Center St, San Francisco, CA 94016" -186504,Wired Headphones,1,11.99,04/28/19 09:01,"276 Maple St, Austin, TX 73301" -186505,27in FHD Monitor,1,149.99,04/06/19 14:07,"473 Adams St, Dallas, TX 75001" -186506,Bose SoundSport Headphones,1,99.99,04/08/19 09:32,"460 7th St, San Francisco, CA 94016" -186507,AA Batteries (4-pack),1,3.84,04/26/19 05:43,"619 Ridge St, New York City, NY 10001" -186508,Wired Headphones,1,11.99,04/03/19 16:40,"898 11th St, Austin, TX 73301" -186509,LG Washing Machine,1,600.0,04/27/19 11:49,"428 Dogwood St, Los Angeles, CA 90001" -186510,Google Phone,1,600,04/25/19 23:15,"785 Center St, Seattle, WA 98101" -186511,Wired Headphones,1,11.99,04/20/19 00:54,"889 7th St, Los Angeles, CA 90001" -186512,AAA Batteries (4-pack),1,2.99,04/12/19 23:35,"555 1st St, San Francisco, CA 94016" -186513,AA Batteries (4-pack),1,3.84,04/24/19 08:22,"261 Meadow St, Portland, ME 04101" -186514,AA Batteries (4-pack),1,3.84,04/27/19 10:36,"862 Meadow St, Seattle, WA 98101" -186515,Lightning Charging Cable,1,14.95,04/30/19 20:07,"888 North St, New York City, NY 10001" -186516,Google Phone,1,600,04/23/19 04:36,"687 Willow St, Seattle, WA 98101" -186517,AAA Batteries (4-pack),1,2.99,04/20/19 10:19,"702 Lakeview St, Dallas, TX 75001" -186518,USB-C Charging Cable,1,11.95,04/18/19 17:10,"526 Wilson St, Dallas, TX 75001" -186519,34in Ultrawide Monitor,1,379.99,04/29/19 20:18,"933 Cherry St, Los Angeles, CA 90001" -186520,AA Batteries (4-pack),1,3.84,04/02/19 23:49,"234 10th St, Boston, MA 02215" -186521,Bose SoundSport Headphones,1,99.99,04/28/19 18:41,"686 5th St, San Francisco, CA 94016" -186522,USB-C Charging Cable,1,11.95,04/17/19 19:34,"495 Lake St, Atlanta, GA 30301" -186523,Flatscreen TV,1,300,04/02/19 12:37,"493 Lakeview St, Boston, MA 02215" -186524,Lightning Charging Cable,1,14.95,04/22/19 11:29,"630 7th St, Austin, TX 73301" -186525,AAA Batteries (4-pack),1,2.99,04/07/19 16:57,"468 Willow St, Boston, MA 02215" -186526,Lightning Charging Cable,1,14.95,04/20/19 14:39,"433 Forest St, Portland, OR 97035" -186527,Apple Airpods Headphones,1,150,04/14/19 11:54,"726 Forest St, Los Angeles, CA 90001" -186528,AAA Batteries (4-pack),1,2.99,04/08/19 17:41,"494 Pine St, Atlanta, GA 30301" -186529,USB-C Charging Cable,1,11.95,04/18/19 15:42,"994 Willow St, Boston, MA 02215" -186530,USB-C Charging Cable,1,11.95,04/27/19 16:49,"647 Lincoln St, San Francisco, CA 94016" -186531,Macbook Pro Laptop,1,1700,04/09/19 07:38,"659 11th St, New York City, NY 10001" -186532,Google Phone,1,600,04/27/19 10:22,"860 Elm St, San Francisco, CA 94016" -186532,USB-C Charging Cable,1,11.95,04/27/19 10:22,"860 Elm St, San Francisco, CA 94016" -186533,Google Phone,1,600,04/18/19 00:14,"733 Main St, Austin, TX 73301" -186533,USB-C Charging Cable,1,11.95,04/18/19 00:14,"733 Main St, Austin, TX 73301" -186534,Macbook Pro Laptop,1,1700,04/05/19 10:36,"689 4th St, San Francisco, CA 94016" -186535,Apple Airpods Headphones,1,150,04/02/19 21:15,"147 8th St, New York City, NY 10001" -186536,Lightning Charging Cable,1,14.95,04/14/19 22:42,"682 West St, Los Angeles, CA 90001" -186537,Lightning Charging Cable,1,14.95,04/10/19 07:53,"682 12th St, New York City, NY 10001" -186538,27in FHD Monitor,1,149.99,04/21/19 21:52,"55 13th St, Seattle, WA 98101" -186539,AAA Batteries (4-pack),1,2.99,04/04/19 01:31,"103 Forest St, Dallas, TX 75001" -186540,Apple Airpods Headphones,1,150,04/14/19 21:31,"628 West St, Los Angeles, CA 90001" -186541,ThinkPad Laptop,1,999.99,04/28/19 20:42,"957 Lakeview St, Los Angeles, CA 90001" -186542,AA Batteries (4-pack),1,3.84,04/05/19 15:48,"478 Highland St, Los Angeles, CA 90001" -186543,Bose SoundSport Headphones,1,99.99,04/18/19 19:14,"71 13th St, Austin, TX 73301" -186544,34in Ultrawide Monitor,1,379.99,04/04/19 17:56,"440 Madison St, San Francisco, CA 94016" -186545,Bose SoundSport Headphones,1,99.99,04/18/19 07:16,"405 10th St, New York City, NY 10001" -186546,Lightning Charging Cable,1,14.95,04/28/19 23:07,"364 Elm St, San Francisco, CA 94016" -186547,USB-C Charging Cable,1,11.95,04/29/19 18:56,"559 Walnut St, Austin, TX 73301" -186548,Lightning Charging Cable,1,14.95,04/28/19 15:46,"651 5th St, Boston, MA 02215" -186549,AA Batteries (4-pack),1,3.84,04/07/19 18:05,"193 River St, New York City, NY 10001" -186550,USB-C Charging Cable,1,11.95,04/14/19 21:01,"291 Washington St, Atlanta, GA 30301" -186551,27in FHD Monitor,1,149.99,04/11/19 19:31,"712 Elm St, Seattle, WA 98101" -186552,Vareebadd Phone,1,400,04/30/19 14:37,"164 Elm St, San Francisco, CA 94016" -186552,Wired Headphones,1,11.99,04/30/19 14:37,"164 Elm St, San Francisco, CA 94016" -186553,27in FHD Monitor,1,149.99,04/15/19 16:01,"214 Cedar St, New York City, NY 10001" -186554,27in FHD Monitor,1,149.99,04/16/19 11:48,"299 6th St, Atlanta, GA 30301" -186555,34in Ultrawide Monitor,1,379.99,04/30/19 14:03,"79 West St, San Francisco, CA 94016" -186556,AAA Batteries (4-pack),1,2.99,04/20/19 17:55,"443 Hickory St, Austin, TX 73301" -186557,Macbook Pro Laptop,1,1700,04/18/19 20:35,"755 Willow St, Portland, OR 97035" -186558,iPhone,1,700,04/29/19 21:32,"167 Center St, Dallas, TX 75001" -186559,Apple Airpods Headphones,1,150,04/20/19 18:22,"592 Ridge St, Los Angeles, CA 90001" -186560,34in Ultrawide Monitor,1,379.99,04/09/19 01:00,"968 4th St, San Francisco, CA 94016" -186561,Google Phone,1,600,04/03/19 06:48,"671 Dogwood St, San Francisco, CA 94016" -186562,34in Ultrawide Monitor,1,379.99,04/01/19 18:08,"754 Pine St, Atlanta, GA 30301" -186563,AAA Batteries (4-pack),1,2.99,04/13/19 11:41,"13 Lincoln St, Los Angeles, CA 90001" -186564,Bose SoundSport Headphones,1,99.99,04/01/19 09:00,"219 13th St, New York City, NY 10001" -186565,Lightning Charging Cable,1,14.95,04/16/19 15:20,"515 8th St, Boston, MA 02215" -186566,Bose SoundSport Headphones,1,99.99,04/10/19 11:03,"388 Hickory St, Dallas, TX 75001" -186567,AAA Batteries (4-pack),1,2.99,04/19/19 08:35,"211 Pine St, Portland, ME 04101" -186568,Flatscreen TV,1,300,04/08/19 04:42,"697 5th St, San Francisco, CA 94016" -186569,AA Batteries (4-pack),1,3.84,04/27/19 17:29,"171 Lakeview St, Portland, OR 97035" -186570,27in FHD Monitor,1,149.99,04/24/19 13:02,"742 14th St, San Francisco, CA 94016" -186571,Wired Headphones,1,11.99,04/17/19 07:08,"206 Spruce St, San Francisco, CA 94016" -186572,AAA Batteries (4-pack),1,2.99,04/04/19 22:01,"532 9th St, San Francisco, CA 94016" -186573,Wired Headphones,1,11.99,04/26/19 14:58,"737 Adams St, Seattle, WA 98101" -186574,AA Batteries (4-pack),2,3.84,04/07/19 13:23,"455 7th St, Seattle, WA 98101" -186575,Apple Airpods Headphones,1,150,04/18/19 11:57,"793 Washington St, Dallas, TX 75001" -186576,AA Batteries (4-pack),1,3.84,04/01/19 07:08,"288 11th St, San Francisco, CA 94016" -186577,27in 4K Gaming Monitor,1,389.99,04/06/19 14:33,"962 Johnson St, Dallas, TX 75001" -186578,Wired Headphones,1,11.99,04/28/19 16:14,"828 14th St, Portland, OR 97035" -186579,Bose SoundSport Headphones,1,99.99,04/10/19 18:37,"511 Highland St, Dallas, TX 75001" -186580,Vareebadd Phone,1,400,04/14/19 19:04,"192 Hill St, Boston, MA 02215" -186581,iPhone,1,700,04/22/19 18:28,"463 Jackson St, Los Angeles, CA 90001" -186582,LG Dryer,1,600.0,04/19/19 20:34,"198 12th St, Dallas, TX 75001" -186583,Google Phone,1,600,04/10/19 17:21,"777 North St, New York City, NY 10001" -186584,Apple Airpods Headphones,1,150,04/17/19 20:48,"498 14th St, Los Angeles, CA 90001" -186585,USB-C Charging Cable,1,11.95,04/03/19 12:19,"739 Johnson St, Atlanta, GA 30301" -186586,Lightning Charging Cable,1,14.95,04/19/19 15:52,"148 Dogwood St, Atlanta, GA 30301" -186587,Macbook Pro Laptop,1,1700,04/21/19 17:52,"483 Church St, Los Angeles, CA 90001" -186588,AA Batteries (4-pack),1,3.84,04/13/19 20:58,"249 River St, Seattle, WA 98101" -186589,Macbook Pro Laptop,1,1700,04/24/19 19:05,"699 4th St, San Francisco, CA 94016" -186590,Apple Airpods Headphones,1,150,04/20/19 19:16,"25 Madison St, Austin, TX 73301" -186591,Wired Headphones,1,11.99,04/30/19 10:00,"255 9th St, Portland, OR 97035" -186592,iPhone,1,700,04/14/19 12:15,"586 7th St, Seattle, WA 98101" -186593,Google Phone,1,600,04/11/19 08:44,"970 River St, San Francisco, CA 94016" -186594,iPhone,1,700,04/17/19 10:29,"200 Maple St, Boston, MA 02215" -186595,Lightning Charging Cable,1,14.95,04/16/19 20:56,"59 11th St, Los Angeles, CA 90001" -186596,Lightning Charging Cable,3,14.95,04/24/19 20:14,"365 1st St, Los Angeles, CA 90001" -186597,USB-C Charging Cable,1,11.95,04/30/19 16:27,"847 Lincoln St, Portland, ME 04101" -186598,Apple Airpods Headphones,1,150,04/25/19 10:29,"960 10th St, San Francisco, CA 94016" -186599,34in Ultrawide Monitor,1,379.99,04/28/19 18:56,"538 Ridge St, Boston, MA 02215" -186600,Google Phone,1,600,04/06/19 19:45,"814 14th St, San Francisco, CA 94016" -186600,USB-C Charging Cable,1,11.95,04/06/19 19:45,"814 14th St, San Francisco, CA 94016" -186601,27in FHD Monitor,1,149.99,04/20/19 10:26,"13 Lakeview St, San Francisco, CA 94016" -186602,USB-C Charging Cable,1,11.95,04/28/19 09:28,"349 Madison St, San Francisco, CA 94016" -186603,Wired Headphones,1,11.99,04/23/19 10:11,"491 Hill St, Atlanta, GA 30301" -186604,Lightning Charging Cable,2,14.95,04/22/19 14:36,"595 Cedar St, San Francisco, CA 94016" -186605,Lightning Charging Cable,1,14.95,04/27/19 19:46,"652 Chestnut St, Dallas, TX 75001" -186606,27in FHD Monitor,1,149.99,04/04/19 22:33,"906 Church St, Austin, TX 73301" -186607,USB-C Charging Cable,2,11.95,04/27/19 22:33,"178 River St, Atlanta, GA 30301" -186608,Apple Airpods Headphones,1,150,04/28/19 18:45,"771 Spruce St, Seattle, WA 98101" -186609,AA Batteries (4-pack),1,3.84,04/22/19 20:26,"291 Jackson St, Atlanta, GA 30301" -186610,USB-C Charging Cable,1,11.95,04/16/19 10:18,"794 Main St, San Francisco, CA 94016" -186611,20in Monitor,1,109.99,04/12/19 10:42,"331 Chestnut St, Seattle, WA 98101" -186612,Lightning Charging Cable,1,14.95,04/20/19 08:47,"624 Wilson St, Dallas, TX 75001" -186613,Apple Airpods Headphones,1,150,04/02/19 14:21,"587 4th St, San Francisco, CA 94016" -186614,Wired Headphones,1,11.99,04/13/19 16:20,"223 West St, Seattle, WA 98101" -186615,AAA Batteries (4-pack),1,2.99,04/22/19 10:00,"316 9th St, Los Angeles, CA 90001" -186616,27in 4K Gaming Monitor,1,389.99,04/22/19 23:27,"346 8th St, Seattle, WA 98101" -186617,Apple Airpods Headphones,1,150,04/23/19 12:10,"202 5th St, Austin, TX 73301" -186618,Macbook Pro Laptop,1,1700,04/25/19 14:05,"851 Pine St, Dallas, TX 75001" -186619,Flatscreen TV,1,300,04/24/19 20:09,"754 Cedar St, Atlanta, GA 30301" -186620,Apple Airpods Headphones,1,150,04/13/19 18:34,"647 9th St, Atlanta, GA 30301" -186621,AA Batteries (4-pack),1,3.84,04/09/19 07:00,"342 5th St, Boston, MA 02215" -186622,Macbook Pro Laptop,1,1700,04/30/19 15:42,"666 Park St, Los Angeles, CA 90001" -186623,Wired Headphones,1,11.99,04/10/19 01:07,"779 River St, Portland, OR 97035" -186624,AA Batteries (4-pack),1,3.84,04/13/19 20:00,"522 Wilson St, San Francisco, CA 94016" -186625,Google Phone,1,600,04/28/19 13:00,"930 Jefferson St, San Francisco, CA 94016" -186626,Wired Headphones,3,11.99,04/08/19 07:43,"601 Jefferson St, Portland, ME 04101" -186627,Vareebadd Phone,1,400,04/20/19 11:45,"188 Meadow St, New York City, NY 10001" -186628,Lightning Charging Cable,1,14.95,04/19/19 11:20,"105 Pine St, San Francisco, CA 94016" -186629,Vareebadd Phone,1,400,04/28/19 20:43,"834 5th St, Dallas, TX 75001" -186629,USB-C Charging Cable,1,11.95,04/28/19 20:43,"834 5th St, Dallas, TX 75001" -186630,Bose SoundSport Headphones,1,99.99,04/24/19 15:41,"779 Cedar St, New York City, NY 10001" -186631,Flatscreen TV,1,300,04/24/19 15:53,"26 5th St, Seattle, WA 98101" -186632,AAA Batteries (4-pack),1,2.99,04/15/19 10:14,"845 Madison St, Atlanta, GA 30301" -186633,Vareebadd Phone,1,400,04/03/19 13:45,"681 Hill St, Boston, MA 02215" -186633,USB-C Charging Cable,1,11.95,04/03/19 13:45,"681 Hill St, Boston, MA 02215" -186634,AAA Batteries (4-pack),2,2.99,04/18/19 08:55,"255 Center St, Seattle, WA 98101" -186635,27in 4K Gaming Monitor,1,389.99,04/25/19 16:56,"555 Center St, Los Angeles, CA 90001" -186636,27in FHD Monitor,1,149.99,04/23/19 12:18,"68 Wilson St, Los Angeles, CA 90001" -186637,USB-C Charging Cable,1,11.95,04/09/19 11:03,"593 4th St, Boston, MA 02215" -186638,USB-C Charging Cable,1,11.95,04/26/19 19:58,"311 14th St, New York City, NY 10001" -186639,Bose SoundSport Headphones,1,99.99,04/16/19 06:24,"730 11th St, Seattle, WA 98101" -186640,iPhone,1,700,04/05/19 14:01,"886 Hickory St, San Francisco, CA 94016" -186641,Wired Headphones,1,11.99,04/04/19 18:07,"807 5th St, Los Angeles, CA 90001" -186642,USB-C Charging Cable,1,11.95,04/21/19 12:34,"781 Park St, Atlanta, GA 30301" -186643,AAA Batteries (4-pack),1,2.99,04/30/19 19:48,"63 Wilson St, Atlanta, GA 30301" -186644,Lightning Charging Cable,1,14.95,04/03/19 20:12,"414 South St, Dallas, TX 75001" -186645,Flatscreen TV,1,300,04/18/19 14:41,"934 Madison St, Dallas, TX 75001" -186646,Macbook Pro Laptop,1,1700,04/24/19 21:31,"979 10th St, San Francisco, CA 94016" -186647,Apple Airpods Headphones,1,150,04/28/19 08:15,"157 Lincoln St, Atlanta, GA 30301" -186648,Apple Airpods Headphones,1,150,04/30/19 19:30,"107 10th St, San Francisco, CA 94016" -186649,27in 4K Gaming Monitor,1,389.99,04/24/19 15:32,"847 Park St, San Francisco, CA 94016" -186650,AA Batteries (4-pack),1,3.84,04/01/19 06:11,"163 Elm St, Boston, MA 02215" -186651,34in Ultrawide Monitor,1,379.99,04/17/19 17:22,"901 Lincoln St, Los Angeles, CA 90001" -186652,Flatscreen TV,1,300,04/29/19 13:37,"860 Madison St, New York City, NY 10001" -186653,27in 4K Gaming Monitor,1,389.99,04/13/19 11:33,"313 Lakeview St, Dallas, TX 75001" -186654,Apple Airpods Headphones,1,150,04/03/19 10:20,"776 Walnut St, San Francisco, CA 94016" -186655,34in Ultrawide Monitor,1,379.99,04/20/19 09:34,"465 10th St, Atlanta, GA 30301" -186656,Lightning Charging Cable,1,14.95,04/30/19 17:27,"531 Wilson St, New York City, NY 10001" -186657,AAA Batteries (4-pack),1,2.99,04/21/19 21:04,"608 5th St, Boston, MA 02215" -186658,USB-C Charging Cable,1,11.95,04/12/19 05:17,"862 8th St, New York City, NY 10001" -186659,Lightning Charging Cable,1,14.95,04/03/19 17:56,"245 6th St, San Francisco, CA 94016" -186660,Vareebadd Phone,1,400,04/18/19 19:52,"222 7th St, Portland, OR 97035" -186661,27in FHD Monitor,1,149.99,04/24/19 17:26,"55 1st St, Los Angeles, CA 90001" -186662,AA Batteries (4-pack),1,3.84,04/17/19 23:26,"603 7th St, Boston, MA 02215" -186663,Wired Headphones,1,11.99,04/21/19 15:10,"465 2nd St, San Francisco, CA 94016" -186664,AA Batteries (4-pack),1,3.84,04/13/19 15:04,"913 Main St, San Francisco, CA 94016" -186665,Bose SoundSport Headphones,1,99.99,04/13/19 19:47,"74 11th St, Boston, MA 02215" -186666,27in FHD Monitor,1,149.99,04/03/19 13:33,"942 Adams St, Atlanta, GA 30301" -186667,Wired Headphones,1,11.99,04/05/19 11:17,"355 North St, Seattle, WA 98101" -186668,Google Phone,1,600,04/03/19 11:23,"72 Jackson St, San Francisco, CA 94016" -186669,Google Phone,1,600,04/09/19 23:09,"651 Meadow St, Portland, OR 97035" -186669,USB-C Charging Cable,1,11.95,04/09/19 23:09,"651 Meadow St, Portland, OR 97035" -186670,Bose SoundSport Headphones,1,99.99,04/05/19 18:47,"589 Sunset St, Los Angeles, CA 90001" -186671,Vareebadd Phone,1,400,04/06/19 11:05,"324 Hickory St, Atlanta, GA 30301" -186672,Lightning Charging Cable,1,14.95,04/11/19 05:57,"102 Maple St, Los Angeles, CA 90001" -186673,Apple Airpods Headphones,1,150,04/25/19 15:03,"109 North St, Los Angeles, CA 90001" -186674,LG Washing Machine,1,600.0,04/19/19 17:52,"393 Hill St, Portland, OR 97035" -186675,AAA Batteries (4-pack),1,2.99,04/06/19 08:36,"125 Meadow St, San Francisco, CA 94016" -186676,27in FHD Monitor,1,149.99,04/29/19 17:55,"625 Center St, Portland, OR 97035" -186677,Bose SoundSport Headphones,1,99.99,04/28/19 22:14,"871 Cherry St, Boston, MA 02215" -186678,AAA Batteries (4-pack),1,2.99,04/29/19 22:55,"873 River St, New York City, NY 10001" -186679,USB-C Charging Cable,1,11.95,04/15/19 13:30,"742 13th St, Los Angeles, CA 90001" -186680,Vareebadd Phone,1,400,04/08/19 12:56,"195 Willow St, Atlanta, GA 30301" -186681,ThinkPad Laptop,1,999.99,04/13/19 17:53,"396 1st St, Los Angeles, CA 90001" -186682,AAA Batteries (4-pack),1,2.99,04/13/19 11:11,"450 Highland St, Los Angeles, CA 90001" -186683,27in FHD Monitor,1,149.99,04/08/19 15:52,"989 Washington St, New York City, NY 10001" -186684,Lightning Charging Cable,2,14.95,04/09/19 17:35,"46 South St, Dallas, TX 75001" -186685,iPhone,1,700,04/13/19 19:03,"894 Cedar St, Austin, TX 73301" -186686,Wired Headphones,1,11.99,04/05/19 12:58,"92 Walnut St, San Francisco, CA 94016" -186687,AA Batteries (4-pack),1,3.84,04/24/19 12:21,"929 Elm St, Los Angeles, CA 90001" -186688,Macbook Pro Laptop,1,1700,04/27/19 14:52,"944 Main St, New York City, NY 10001" -186689,AA Batteries (4-pack),2,3.84,04/06/19 21:43,"171 9th St, San Francisco, CA 94016" -186690,Wired Headphones,1,11.99,04/13/19 20:15,"146 12th St, Dallas, TX 75001" -186691,AA Batteries (4-pack),2,3.84,04/16/19 16:46,"637 Forest St, Boston, MA 02215" -186692,AA Batteries (4-pack),1,3.84,04/25/19 19:49,"572 5th St, Austin, TX 73301" -186693,27in FHD Monitor,1,149.99,04/07/19 22:04,"610 Center St, Atlanta, GA 30301" -186694,Vareebadd Phone,1,400,04/18/19 18:22,"255 Lakeview St, San Francisco, CA 94016" -186695,AAA Batteries (4-pack),1,2.99,04/27/19 19:41,"498 Meadow St, San Francisco, CA 94016" -186696,AAA Batteries (4-pack),1,2.99,04/01/19 11:01,"508 River St, New York City, NY 10001" -186697,27in FHD Monitor,1,149.99,04/21/19 11:44,"148 Wilson St, Dallas, TX 75001" -186698,Macbook Pro Laptop,1,1700,04/17/19 14:09,"823 Lincoln St, Los Angeles, CA 90001" -186699,AA Batteries (4-pack),1,3.84,04/21/19 11:30,"97 5th St, New York City, NY 10001" -186700,Apple Airpods Headphones,1,150,04/19/19 08:20,"313 Johnson St, New York City, NY 10001" -186701,AA Batteries (4-pack),2,3.84,04/17/19 22:46,"508 Hickory St, Boston, MA 02215" -186702,Apple Airpods Headphones,1,150,04/27/19 17:29,"388 8th St, Dallas, TX 75001" -186703,Wired Headphones,1,11.99,04/11/19 00:57,"857 Forest St, San Francisco, CA 94016" -186704,Lightning Charging Cable,1,14.95,04/06/19 12:15,"574 Cherry St, San Francisco, CA 94016" -186705,34in Ultrawide Monitor,1,379.99,04/09/19 15:43,"182 Jefferson St, Portland, OR 97035" -186706,Apple Airpods Headphones,1,150,04/24/19 12:14,"599 Elm St, New York City, NY 10001" -186707,Wired Headphones,1,11.99,04/17/19 08:45,"609 Center St, San Francisco, CA 94016" -186708,Lightning Charging Cable,1,14.95,04/12/19 14:43,"655 Maple St, New York City, NY 10001" -186709,Apple Airpods Headphones,1,150,04/24/19 23:58,"987 Wilson St, Los Angeles, CA 90001" -186710,AA Batteries (4-pack),1,3.84,04/20/19 21:56,"285 Dogwood St, Boston, MA 02215" -186711,Wired Headphones,1,11.99,04/27/19 18:54,"1 1st St, Austin, TX 73301" -186712,Lightning Charging Cable,1,14.95,04/26/19 20:45,"768 7th St, Portland, ME 04101" -186713,iPhone,1,700,04/11/19 13:08,"297 Hickory St, Portland, OR 97035" -186714,Wired Headphones,1,11.99,04/10/19 14:26,"398 11th St, Austin, TX 73301" -186714,Apple Airpods Headphones,1,150,04/10/19 14:26,"398 11th St, Austin, TX 73301" -186715,Wired Headphones,1,11.99,04/05/19 05:09,"394 13th St, San Francisco, CA 94016" -186716,AA Batteries (4-pack),1,3.84,04/19/19 16:18,"511 West St, San Francisco, CA 94016" -186717,Apple Airpods Headphones,1,150,04/29/19 07:03,"613 2nd St, San Francisco, CA 94016" -186718,Bose SoundSport Headphones,1,99.99,04/25/19 19:06,"63 8th St, Los Angeles, CA 90001" -186719,iPhone,1,700,04/28/19 19:20,"168 Forest St, Los Angeles, CA 90001" -186720,Flatscreen TV,1,300,04/08/19 12:52,"967 South St, Dallas, TX 75001" -186721,Bose SoundSport Headphones,1,99.99,04/24/19 13:47,"324 14th St, Austin, TX 73301" -186722,Google Phone,1,600,04/11/19 23:58,"731 Dogwood St, San Francisco, CA 94016" -186722,Bose SoundSport Headphones,1,99.99,04/11/19 23:58,"731 Dogwood St, San Francisco, CA 94016" -186723,AAA Batteries (4-pack),2,2.99,04/20/19 17:18,"62 Adams St, Seattle, WA 98101" -186724,Vareebadd Phone,1,400,04/13/19 12:31,"27 Lincoln St, San Francisco, CA 94016" -186725,Lightning Charging Cable,1,14.95,04/07/19 21:53,"73 Walnut St, San Francisco, CA 94016" -186726,34in Ultrawide Monitor,1,379.99,04/09/19 12:07,"750 North St, Boston, MA 02215" -186727,Lightning Charging Cable,1,14.95,04/17/19 22:31,"507 Main St, New York City, NY 10001" -186728,USB-C Charging Cable,1,11.95,04/25/19 11:08,"410 4th St, San Francisco, CA 94016" -186729,Lightning Charging Cable,1,14.95,04/15/19 12:50,"818 9th St, Los Angeles, CA 90001" -186730,AA Batteries (4-pack),1,3.84,04/28/19 10:05,"458 Meadow St, Dallas, TX 75001" -186731,ThinkPad Laptop,1,999.99,04/04/19 14:57,"232 Main St, Dallas, TX 75001" -186732,AA Batteries (4-pack),2,3.84,04/18/19 09:45,"402 West St, Los Angeles, CA 90001" -186733,USB-C Charging Cable,1,11.95,04/25/19 07:52,"361 4th St, New York City, NY 10001" -186734,AAA Batteries (4-pack),1,2.99,04/18/19 09:13,"398 Chestnut St, Los Angeles, CA 90001" -186735,Bose SoundSport Headphones,1,99.99,04/07/19 16:04,"487 Adams St, Dallas, TX 75001" -186736,Apple Airpods Headphones,1,150,04/08/19 18:18,"804 Park St, Dallas, TX 75001" -186737,Apple Airpods Headphones,1,150,04/05/19 10:29,"380 Washington St, Seattle, WA 98101" -186738,Wired Headphones,1,11.99,04/01/19 18:38,"932 Church St, Dallas, TX 75001" -186739,Lightning Charging Cable,1,14.95,04/18/19 19:27,"735 Center St, San Francisco, CA 94016" -186740,AA Batteries (4-pack),1,3.84,04/16/19 14:08,"59 River St, San Francisco, CA 94016" -186741,27in 4K Gaming Monitor,1,389.99,04/06/19 07:06,"159 Sunset St, San Francisco, CA 94016" -186742,Wired Headphones,1,11.99,04/25/19 17:06,"650 Chestnut St, Boston, MA 02215" -186743,AA Batteries (4-pack),1,3.84,04/23/19 17:08,"567 West St, Portland, ME 04101" -186744,Apple Airpods Headphones,1,150,04/07/19 15:29,"401 Highland St, Los Angeles, CA 90001" -186745,Wired Headphones,1,11.99,04/02/19 20:25,"374 Jackson St, New York City, NY 10001" -186746,27in FHD Monitor,1,149.99,04/09/19 22:50,"368 South St, San Francisco, CA 94016" -186747,Lightning Charging Cable,1,14.95,04/02/19 10:42,"961 Meadow St, New York City, NY 10001" -186748,Bose SoundSport Headphones,1,99.99,04/08/19 11:49,"882 4th St, Dallas, TX 75001" -186749,Wired Headphones,1,11.99,04/05/19 14:31,"989 South St, Seattle, WA 98101" -186750,27in FHD Monitor,1,149.99,04/04/19 19:54,"379 Spruce St, Austin, TX 73301" -186751,AA Batteries (4-pack),1,3.84,04/24/19 09:01,"315 Wilson St, Boston, MA 02215" -186752,Lightning Charging Cable,1,14.95,04/17/19 08:31,"507 Washington St, San Francisco, CA 94016" -186753,Google Phone,1,600,04/18/19 09:38,"529 8th St, Portland, OR 97035" -186753,Wired Headphones,1,11.99,04/18/19 09:38,"529 8th St, Portland, OR 97035" -186754,27in FHD Monitor,1,149.99,04/01/19 05:06,"824 Chestnut St, San Francisco, CA 94016" -186755,Google Phone,1,600,04/03/19 07:23,"477 Walnut St, Austin, TX 73301" -186756,AA Batteries (4-pack),2,3.84,04/12/19 11:11,"452 2nd St, Los Angeles, CA 90001" -186757,AAA Batteries (4-pack),1,2.99,04/17/19 12:18,"559 9th St, San Francisco, CA 94016" -186758,AAA Batteries (4-pack),1,2.99,04/30/19 14:08,"816 Madison St, Boston, MA 02215" -186759,Apple Airpods Headphones,1,150,04/04/19 18:47,"618 6th St, Austin, TX 73301" -186760,Bose SoundSport Headphones,1,99.99,04/05/19 13:45,"767 Chestnut St, San Francisco, CA 94016" -186761,AAA Batteries (4-pack),2,2.99,04/24/19 07:52,"327 11th St, Dallas, TX 75001" -186762,Bose SoundSport Headphones,1,99.99,04/05/19 18:30,"217 Hickory St, Dallas, TX 75001" -186763,Lightning Charging Cable,1,14.95,04/23/19 16:24,"616 Walnut St, Los Angeles, CA 90001" -186764,AA Batteries (4-pack),2,3.84,04/30/19 07:48,"553 5th St, San Francisco, CA 94016" -186765,27in 4K Gaming Monitor,1,389.99,04/26/19 12:35,"29 Center St, Atlanta, GA 30301" -186766,Wired Headphones,1,11.99,04/24/19 19:35,"483 South St, San Francisco, CA 94016" -186767,Apple Airpods Headphones,1,150,04/21/19 10:04,"942 South St, Los Angeles, CA 90001" -186768,USB-C Charging Cable,1,11.95,04/28/19 21:10,"380 Elm St, New York City, NY 10001" -186769,Macbook Pro Laptop,1,1700,04/24/19 08:33,"888 Highland St, Seattle, WA 98101" -186770,AAA Batteries (4-pack),3,2.99,04/29/19 23:59,"708 Lakeview St, San Francisco, CA 94016" -186771,Lightning Charging Cable,1,14.95,04/26/19 15:47,"755 West St, Los Angeles, CA 90001" -186772,AA Batteries (4-pack),2,3.84,04/19/19 02:15,"480 Adams St, New York City, NY 10001" -,,,,, -186773,Lightning Charging Cable,1,14.95,04/13/19 10:17,"132 8th St, Los Angeles, CA 90001" -186774,ThinkPad Laptop,1,999.99,04/17/19 07:16,"278 Center St, San Francisco, CA 94016" -186775,AA Batteries (4-pack),4,3.84,04/17/19 00:41,"220 River St, Seattle, WA 98101" -186776,AAA Batteries (4-pack),1,2.99,04/27/19 20:21,"377 10th St, San Francisco, CA 94016" -186777,AAA Batteries (4-pack),3,2.99,04/07/19 21:16,"208 West St, Portland, OR 97035" -186778,Apple Airpods Headphones,1,150,04/22/19 19:20,"110 South St, Portland, OR 97035" -186779,USB-C Charging Cable,1,11.95,04/20/19 12:55,"358 Main St, San Francisco, CA 94016" -186780,Lightning Charging Cable,1,14.95,04/18/19 22:28,"244 River St, New York City, NY 10001" -186781,iPhone,1,700,04/13/19 12:23,"778 Cedar St, Los Angeles, CA 90001" -186782,USB-C Charging Cable,1,11.95,04/01/19 19:23,"150 Sunset St, Boston, MA 02215" -186783,Apple Airpods Headphones,1,150,04/11/19 07:11,"749 Main St, Los Angeles, CA 90001" -186784,AA Batteries (4-pack),1,3.84,04/19/19 20:21,"448 7th St, San Francisco, CA 94016" -186785,AA Batteries (4-pack),1,3.84,04/01/19 10:00,"84 2nd St, Atlanta, GA 30301" -186786,AA Batteries (4-pack),1,3.84,04/22/19 10:18,"106 4th St, Los Angeles, CA 90001" -186787,iPhone,1,700,04/12/19 20:05,"888 Meadow St, San Francisco, CA 94016" -186788,Lightning Charging Cable,1,14.95,04/24/19 21:30,"51 Dogwood St, Seattle, WA 98101" -186789,Wired Headphones,1,11.99,04/07/19 21:59,"981 Pine St, Austin, TX 73301" -186790,AA Batteries (4-pack),1,3.84,04/26/19 16:17,"187 Wilson St, New York City, NY 10001" -186791,Apple Airpods Headphones,1,150,04/08/19 18:58,"428 Elm St, Dallas, TX 75001" -186791,Wired Headphones,1,11.99,04/08/19 18:58,"428 Elm St, Dallas, TX 75001" -186792,27in 4K Gaming Monitor,1,389.99,04/26/19 12:45,"739 Hickory St, Seattle, WA 98101" -186793,Bose SoundSport Headphones,1,99.99,04/12/19 17:07,"192 Spruce St, Austin, TX 73301" -186794,Bose SoundSport Headphones,1,99.99,04/22/19 09:00,"363 Highland St, Los Angeles, CA 90001" -186795,Apple Airpods Headphones,1,150,04/06/19 02:39,"97 Church St, New York City, NY 10001" -186796,Wired Headphones,1,11.99,04/17/19 19:02,"543 4th St, Los Angeles, CA 90001" -186797,Wired Headphones,1,11.99,04/30/19 18:00,"970 8th St, Portland, OR 97035" -186798,USB-C Charging Cable,1,11.95,04/26/19 20:07,"488 Hickory St, San Francisco, CA 94016" -186799,AAA Batteries (4-pack),2,2.99,04/03/19 10:35,"480 Walnut St, Dallas, TX 75001" -186800,Apple Airpods Headphones,1,150,04/19/19 13:22,"637 Adams St, Seattle, WA 98101" -186801,AAA Batteries (4-pack),2,2.99,04/22/19 15:02,"827 11th St, San Francisco, CA 94016" -186802,Wired Headphones,1,11.99,04/19/19 13:57,"140 Hickory St, Atlanta, GA 30301" -186803,AAA Batteries (4-pack),1,2.99,04/23/19 13:26,"920 South St, New York City, NY 10001" -186804,AAA Batteries (4-pack),2,2.99,04/06/19 16:28,"753 Cedar St, Atlanta, GA 30301" -186805,Macbook Pro Laptop,1,1700,04/03/19 11:51,"784 Wilson St, New York City, NY 10001" -186806,Wired Headphones,1,11.99,04/10/19 07:01,"465 North St, Los Angeles, CA 90001" -186807,Lightning Charging Cable,1,14.95,04/19/19 09:58,"96 Park St, Atlanta, GA 30301" -186808,27in 4K Gaming Monitor,1,389.99,04/05/19 22:53,"118 Willow St, New York City, NY 10001" -186809,Lightning Charging Cable,1,14.95,04/13/19 23:01,"328 Ridge St, Austin, TX 73301" -186810,Wired Headphones,1,11.99,04/21/19 23:45,"907 Meadow St, San Francisco, CA 94016" -186811,AAA Batteries (4-pack),1,2.99,04/30/19 20:50,"816 Lake St, Boston, MA 02215" -186812,AAA Batteries (4-pack),1,2.99,04/20/19 01:02,"235 Lakeview St, Seattle, WA 98101" -186813,USB-C Charging Cable,1,11.95,04/12/19 08:47,"35 Hill St, Austin, TX 73301" -186814,Google Phone,1,600,04/02/19 01:28,"456 South St, Boston, MA 02215" -186815,AA Batteries (4-pack),1,3.84,04/14/19 07:20,"264 10th St, San Francisco, CA 94016" -186816,iPhone,1,700,04/18/19 18:39,"671 Hickory St, San Francisco, CA 94016" -186817,Lightning Charging Cable,1,14.95,04/24/19 19:03,"571 Hill St, New York City, NY 10001" -186818,27in FHD Monitor,2,149.99,04/28/19 20:47,"283 7th St, Boston, MA 02215" -186819,Wired Headphones,1,11.99,04/12/19 22:28,"983 Hill St, San Francisco, CA 94016" -186820,Apple Airpods Headphones,1,150,04/08/19 06:04,"853 Adams St, New York City, NY 10001" -186821,AAA Batteries (4-pack),2,2.99,04/12/19 21:35,"407 Park St, Atlanta, GA 30301" -186822,Lightning Charging Cable,1,14.95,04/14/19 16:21,"80 Walnut St, San Francisco, CA 94016" -186823,USB-C Charging Cable,2,11.95,04/18/19 21:21,"713 Chestnut St, Portland, ME 04101" -186824,AA Batteries (4-pack),1,3.84,04/12/19 15:00,"949 Cedar St, Dallas, TX 75001" -186825,AAA Batteries (4-pack),1,2.99,04/08/19 16:36,"523 Dogwood St, Boston, MA 02215" -186826,Wired Headphones,1,11.99,04/15/19 14:28,"531 Washington St, Los Angeles, CA 90001" -186827,Apple Airpods Headphones,1,150,04/25/19 10:42,"399 Lakeview St, Austin, TX 73301" -186827,AA Batteries (4-pack),1,3.84,04/25/19 10:42,"399 Lakeview St, Austin, TX 73301" -186828,Google Phone,1,600,04/21/19 12:46,"282 Hickory St, Seattle, WA 98101" -186828,Wired Headphones,1,11.99,04/21/19 12:46,"282 Hickory St, Seattle, WA 98101" -186829,Lightning Charging Cable,1,14.95,04/21/19 18:33,"64 4th St, San Francisco, CA 94016" -186830,AA Batteries (4-pack),2,3.84,04/13/19 21:34,"997 10th St, San Francisco, CA 94016" -186831,iPhone,1,700,04/14/19 20:42,"599 12th St, Portland, OR 97035" -186831,Wired Headphones,1,11.99,04/14/19 20:42,"599 12th St, Portland, OR 97035" -186832,USB-C Charging Cable,1,11.95,04/26/19 20:54,"617 Chestnut St, Austin, TX 73301" -186833,AA Batteries (4-pack),1,3.84,04/25/19 12:51,"514 Main St, New York City, NY 10001" -186834,Lightning Charging Cable,1,14.95,04/27/19 14:55,"792 9th St, San Francisco, CA 94016" -186835,27in 4K Gaming Monitor,1,389.99,04/30/19 13:30,"972 Spruce St, Los Angeles, CA 90001" -186836,Google Phone,1,600,04/10/19 12:52,"424 10th St, Atlanta, GA 30301" -186837,iPhone,1,700,04/18/19 09:36,"453 Chestnut St, Austin, TX 73301" -186838,Apple Airpods Headphones,1,150,04/17/19 21:38,"694 Maple St, Atlanta, GA 30301" -186839,20in Monitor,1,109.99,04/04/19 12:53,"897 Cherry St, Los Angeles, CA 90001" -186840,AA Batteries (4-pack),2,3.84,04/13/19 16:08,"196 South St, New York City, NY 10001" -186841,Wired Headphones,1,11.99,04/06/19 09:23,"609 Main St, New York City, NY 10001" -186842,Apple Airpods Headphones,1,150,04/29/19 10:51,"219 Lake St, Atlanta, GA 30301" -186843,Bose SoundSport Headphones,1,99.99,04/03/19 19:17,"631 Ridge St, Dallas, TX 75001" -186844,Lightning Charging Cable,1,14.95,04/21/19 09:01,"331 11th St, San Francisco, CA 94016" -186845,iPhone,1,700,04/13/19 11:23,"97 Hill St, Los Angeles, CA 90001" -186846,Wired Headphones,2,11.99,04/02/19 06:15,"100 Cedar St, San Francisco, CA 94016" -186847,AAA Batteries (4-pack),1,2.99,04/03/19 13:44,"737 Maple St, Dallas, TX 75001" -186848,Apple Airpods Headphones,1,150,04/05/19 21:28,"604 Lake St, Seattle, WA 98101" -186849,AAA Batteries (4-pack),1,2.99,04/07/19 20:45,"187 Lakeview St, Boston, MA 02215" -186850,Bose SoundSport Headphones,1,99.99,04/09/19 16:59,"665 Lincoln St, San Francisco, CA 94016" -186851,AA Batteries (4-pack),1,3.84,04/12/19 14:01,"670 12th St, San Francisco, CA 94016" -186852,34in Ultrawide Monitor,1,379.99,04/14/19 09:47,"540 8th St, Portland, OR 97035" -186853,AA Batteries (4-pack),1,3.84,04/18/19 15:25,"382 14th St, San Francisco, CA 94016" -186854,Wired Headphones,1,11.99,04/15/19 14:38,"533 Hill St, Portland, OR 97035" -186855,Wired Headphones,1,11.99,04/27/19 08:24,"998 Washington St, San Francisco, CA 94016" -186856,Bose SoundSport Headphones,1,99.99,04/20/19 14:19,"757 Chestnut St, Atlanta, GA 30301" -186857,Bose SoundSport Headphones,1,99.99,04/14/19 15:44,"491 Cedar St, Los Angeles, CA 90001" -186858,Lightning Charging Cable,1,14.95,04/12/19 22:46,"882 River St, San Francisco, CA 94016" -186859,Flatscreen TV,1,300,04/21/19 10:31,"402 Jefferson St, San Francisco, CA 94016" -186860,Wired Headphones,1,11.99,04/21/19 22:08,"531 Main St, San Francisco, CA 94016" -186861,27in FHD Monitor,1,149.99,04/04/19 11:07,"173 12th St, San Francisco, CA 94016" -186862,AAA Batteries (4-pack),2,2.99,04/25/19 15:54,"6 12th St, Boston, MA 02215" -186862,USB-C Charging Cable,1,11.95,04/25/19 15:54,"6 12th St, Boston, MA 02215" -186863,AA Batteries (4-pack),4,3.84,04/25/19 19:31,"916 11th St, Austin, TX 73301" -186864,Flatscreen TV,1,300,04/19/19 07:11,"734 Elm St, San Francisco, CA 94016" -186865,Lightning Charging Cable,1,14.95,04/22/19 11:35,"56 Jefferson St, Austin, TX 73301" -186866,27in 4K Gaming Monitor,2,389.99,04/02/19 19:29,"721 13th St, San Francisco, CA 94016" -186867,Wired Headphones,1,11.99,04/20/19 19:19,"373 7th St, San Francisco, CA 94016" -186868,USB-C Charging Cable,2,11.95,04/12/19 00:20,"954 Highland St, Los Angeles, CA 90001" -186869,USB-C Charging Cable,1,11.95,04/08/19 14:54,"737 Hickory St, Boston, MA 02215" -186870,ThinkPad Laptop,1,999.99,04/28/19 22:54,"666 Lake St, New York City, NY 10001" -186871,AAA Batteries (4-pack),1,2.99,04/28/19 08:37,"253 Center St, Dallas, TX 75001" -186872,USB-C Charging Cable,1,11.95,04/26/19 19:34,"359 12th St, Los Angeles, CA 90001" -186873,ThinkPad Laptop,1,999.99,04/08/19 18:29,"787 Sunset St, Atlanta, GA 30301" -186873,Bose SoundSport Headphones,1,99.99,04/08/19 18:29,"787 Sunset St, Atlanta, GA 30301" -186874,Wired Headphones,1,11.99,04/12/19 15:10,"396 Pine St, Seattle, WA 98101" -186875,USB-C Charging Cable,1,11.95,04/02/19 09:30,"507 Lincoln St, New York City, NY 10001" -186876,Google Phone,1,600,04/16/19 16:52,"106 6th St, Seattle, WA 98101" -186877,Wired Headphones,1,11.99,04/30/19 09:10,"644 Church St, New York City, NY 10001" -186878,AAA Batteries (4-pack),1,2.99,04/10/19 18:01,"573 Main St, San Francisco, CA 94016" -186879,Google Phone,1,600,04/09/19 18:40,"959 Jackson St, Seattle, WA 98101" -186879,USB-C Charging Cable,1,11.95,04/09/19 18:40,"959 Jackson St, Seattle, WA 98101" -186880,20in Monitor,1,109.99,04/29/19 23:11,"209 Johnson St, San Francisco, CA 94016" -186881,Lightning Charging Cable,1,14.95,04/23/19 17:59,"629 Wilson St, Atlanta, GA 30301" -186882,Apple Airpods Headphones,1,150,04/20/19 14:34,"54 8th St, San Francisco, CA 94016" -186883,AA Batteries (4-pack),1,3.84,04/01/19 23:17,"562 Madison St, New York City, NY 10001" -186884,iPhone,1,700,04/24/19 07:24,"874 Hill St, San Francisco, CA 94016" -186885,27in 4K Gaming Monitor,1,389.99,04/24/19 20:45,"403 6th St, Dallas, TX 75001" -186886,Wired Headphones,1,11.99,04/11/19 21:37,"104 Lincoln St, Los Angeles, CA 90001" -186887,27in 4K Gaming Monitor,1,389.99,04/26/19 08:51,"254 Spruce St, Atlanta, GA 30301" -186888,USB-C Charging Cable,1,11.95,04/24/19 13:59,"720 8th St, San Francisco, CA 94016" -186889,20in Monitor,1,109.99,04/22/19 12:49,"321 Park St, New York City, NY 10001" -186890,Lightning Charging Cable,1,14.95,04/29/19 15:18,"17 North St, San Francisco, CA 94016" -186891,Apple Airpods Headphones,1,150,04/10/19 19:31,"252 Johnson St, Boston, MA 02215" -186892,Bose SoundSport Headphones,1,99.99,04/17/19 13:44,"433 Chestnut St, San Francisco, CA 94016" -186893,Bose SoundSport Headphones,1,99.99,04/24/19 21:03,"961 Park St, Seattle, WA 98101" -186894,AA Batteries (4-pack),1,3.84,04/19/19 17:47,"178 7th St, Boston, MA 02215" -186895,Lightning Charging Cable,1,14.95,04/03/19 00:12,"968 Sunset St, Austin, TX 73301" -186896,20in Monitor,1,109.99,04/19/19 10:36,"9 Lake St, Atlanta, GA 30301" -186897,Lightning Charging Cable,1,14.95,04/13/19 09:59,"155 Park St, San Francisco, CA 94016" -186898,USB-C Charging Cable,1,11.95,04/05/19 11:17,"814 Spruce St, Los Angeles, CA 90001" -186899,LG Dryer,1,600.0,04/05/19 21:07,"72 7th St, New York City, NY 10001" -186900,AAA Batteries (4-pack),1,2.99,04/26/19 18:59,"943 5th St, Dallas, TX 75001" -186901,Apple Airpods Headphones,1,150,04/08/19 12:46,"421 Meadow St, Boston, MA 02215" -186902,27in FHD Monitor,1,149.99,04/17/19 11:30,"925 Hill St, Seattle, WA 98101" -186903,USB-C Charging Cable,1,11.95,04/12/19 17:34,"909 12th St, San Francisco, CA 94016" -186904,Google Phone,1,600,04/07/19 10:55,"143 5th St, San Francisco, CA 94016" -186904,USB-C Charging Cable,2,11.95,04/07/19 10:55,"143 5th St, San Francisco, CA 94016" -186904,Wired Headphones,1,11.99,04/07/19 10:55,"143 5th St, San Francisco, CA 94016" -186905,Lightning Charging Cable,1,14.95,04/05/19 21:11,"784 Main St, Los Angeles, CA 90001" -186906,AA Batteries (4-pack),1,3.84,04/20/19 13:44,"168 South St, Austin, TX 73301" -186907,AA Batteries (4-pack),1,3.84,04/16/19 21:59,"353 Lake St, Boston, MA 02215" -186908,AA Batteries (4-pack),2,3.84,04/10/19 15:45,"310 Ridge St, Los Angeles, CA 90001" -186909,27in FHD Monitor,1,149.99,04/12/19 10:42,"374 6th St, San Francisco, CA 94016" -186910,27in FHD Monitor,1,149.99,04/19/19 15:38,"310 13th St, Dallas, TX 75001" -186911,AAA Batteries (4-pack),2,2.99,04/04/19 08:08,"861 Jefferson St, San Francisco, CA 94016" -186912,20in Monitor,1,109.99,04/04/19 09:45,"363 10th St, Dallas, TX 75001" -186913,Lightning Charging Cable,1,14.95,04/05/19 11:12,"75 Meadow St, San Francisco, CA 94016" -186914,27in FHD Monitor,1,149.99,04/21/19 21:57,"423 2nd St, New York City, NY 10001" -186915,AAA Batteries (4-pack),2,2.99,04/18/19 19:49,"515 2nd St, Atlanta, GA 30301" -186916,Macbook Pro Laptop,1,1700,04/03/19 08:32,"344 Washington St, New York City, NY 10001" -186917,Lightning Charging Cable,1,14.95,04/10/19 19:53,"147 Cherry St, Atlanta, GA 30301" -186918,AA Batteries (4-pack),1,3.84,04/03/19 09:59,"18 14th St, New York City, NY 10001" -186919,27in 4K Gaming Monitor,1,389.99,04/10/19 14:27,"690 Pine St, Austin, TX 73301" -186920,Wired Headphones,1,11.99,04/16/19 18:20,"805 Chestnut St, New York City, NY 10001" -186921,USB-C Charging Cable,1,11.95,04/25/19 21:22,"909 Hickory St, Austin, TX 73301" -186922,Google Phone,1,600,04/25/19 23:49,"124 Chestnut St, Austin, TX 73301" -186923,Apple Airpods Headphones,1,150,04/20/19 16:52,"180 Maple St, Los Angeles, CA 90001" -186924,27in FHD Monitor,1,149.99,04/29/19 20:20,"108 Walnut St, Los Angeles, CA 90001" -186925,AA Batteries (4-pack),1,3.84,04/12/19 17:49,"104 Chestnut St, New York City, NY 10001" -186926,AA Batteries (4-pack),1,3.84,04/22/19 08:36,"805 Jackson St, Atlanta, GA 30301" -186927,ThinkPad Laptop,1,999.99,04/30/19 18:12,"572 Hickory St, New York City, NY 10001" -186928,Lightning Charging Cable,1,14.95,04/28/19 09:33,"687 10th St, San Francisco, CA 94016" -186929,iPhone,1,700,04/30/19 10:05,"159 Cedar St, San Francisco, CA 94016" -186930,Bose SoundSport Headphones,1,99.99,04/05/19 16:32,"255 Elm St, Seattle, WA 98101" -186931,AAA Batteries (4-pack),2,2.99,04/01/19 15:59,"52 7th St, San Francisco, CA 94016" -186932,Apple Airpods Headphones,1,150,04/15/19 13:32,"672 Spruce St, Los Angeles, CA 90001" -186933,USB-C Charging Cable,1,11.95,04/09/19 18:23,"14 Hickory St, New York City, NY 10001" -186934,Wired Headphones,1,11.99,04/09/19 19:23,"140 13th St, Seattle, WA 98101" -186935,Macbook Pro Laptop,1,1700,04/05/19 03:05,"437 Cherry St, New York City, NY 10001" -186936,Apple Airpods Headphones,1,150,04/22/19 21:49,"689 North St, Los Angeles, CA 90001" -186937,AA Batteries (4-pack),1,3.84,04/17/19 16:42,"338 Wilson St, Portland, OR 97035" -186938,Apple Airpods Headphones,1,150,04/12/19 21:27,"122 North St, San Francisco, CA 94016" -186939,Macbook Pro Laptop,1,1700,04/28/19 18:10,"991 Park St, New York City, NY 10001" -186940,Apple Airpods Headphones,1,150,04/02/19 10:25,"650 Pine St, Portland, ME 04101" -186941,Wired Headphones,2,11.99,04/18/19 19:25,"787 Meadow St, New York City, NY 10001" -186942,Apple Airpods Headphones,1,150,04/29/19 08:21,"862 Cedar St, New York City, NY 10001" -186943,Google Phone,1,600,04/02/19 13:14,"377 Main St, Boston, MA 02215" -186943,USB-C Charging Cable,1,11.95,04/02/19 13:14,"377 Main St, Boston, MA 02215" -186944,AAA Batteries (4-pack),1,2.99,04/13/19 11:08,"603 Cedar St, Austin, TX 73301" -186945,USB-C Charging Cable,1,11.95,04/11/19 16:43,"150 Madison St, Atlanta, GA 30301" -186946,AA Batteries (4-pack),1,3.84,04/20/19 11:40,"4 Spruce St, Austin, TX 73301" -186947,Google Phone,1,600,04/05/19 05:22,"912 Johnson St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -186948,27in FHD Monitor,1,149.99,04/09/19 18:31,"258 Elm St, San Francisco, CA 94016" -186949,USB-C Charging Cable,1,11.95,04/20/19 22:24,"219 South St, Los Angeles, CA 90001" -186950,AA Batteries (4-pack),1,3.84,04/02/19 15:46,"890 Elm St, New York City, NY 10001" -186951,Wired Headphones,1,11.99,04/30/19 22:36,"618 5th St, Los Angeles, CA 90001" -186952,34in Ultrawide Monitor,1,379.99,04/23/19 15:21,"582 Church St, San Francisco, CA 94016" -186953,USB-C Charging Cable,1,11.95,04/03/19 06:34,"294 Park St, Seattle, WA 98101" -186954,USB-C Charging Cable,1,11.95,04/22/19 01:48,"635 Johnson St, Los Angeles, CA 90001" -186955,Macbook Pro Laptop,1,1700,04/01/19 20:58,"621 Jefferson St, Portland, OR 97035" -186956,AA Batteries (4-pack),1,3.84,04/02/19 21:49,"425 Spruce St, Los Angeles, CA 90001" -186956,Wired Headphones,1,11.99,04/02/19 21:49,"425 Spruce St, Los Angeles, CA 90001" -186957,USB-C Charging Cable,1,11.95,04/12/19 09:39,"715 Johnson St, New York City, NY 10001" -186958,Apple Airpods Headphones,1,150,04/19/19 11:45,"987 14th St, Atlanta, GA 30301" -186959,AAA Batteries (4-pack),2,2.99,04/02/19 00:38,"536 Washington St, Los Angeles, CA 90001" -186960,Bose SoundSport Headphones,1,99.99,04/19/19 18:59,"952 11th St, Los Angeles, CA 90001" -186961,Apple Airpods Headphones,1,150,04/21/19 12:03,"941 5th St, Los Angeles, CA 90001" -186962,Bose SoundSport Headphones,1,99.99,04/27/19 19:18,"813 Washington St, Los Angeles, CA 90001" -186963,AA Batteries (4-pack),1,3.84,04/22/19 13:37,"664 North St, Seattle, WA 98101" -186964,Macbook Pro Laptop,1,1700,04/28/19 20:34,"642 12th St, Los Angeles, CA 90001" -186965,Lightning Charging Cable,1,14.95,04/19/19 16:33,"981 11th St, Atlanta, GA 30301" -186966,Lightning Charging Cable,2,14.95,04/18/19 22:33,"868 Jackson St, Dallas, TX 75001" -186967,AA Batteries (4-pack),1,3.84,04/22/19 13:33,"728 Main St, San Francisco, CA 94016" -186968,Lightning Charging Cable,1,14.95,04/09/19 16:14,"751 Park St, San Francisco, CA 94016" -186969,AAA Batteries (4-pack),1,2.99,04/02/19 11:20,"847 11th St, Portland, OR 97035" -186970,Apple Airpods Headphones,1,150,04/18/19 17:31,"124 Johnson St, Los Angeles, CA 90001" -186971,AAA Batteries (4-pack),1,2.99,04/13/19 16:01,"811 13th St, New York City, NY 10001" -186972,AAA Batteries (4-pack),1,2.99,04/17/19 22:39,"924 Jackson St, San Francisco, CA 94016" -186973,AAA Batteries (4-pack),2,2.99,04/08/19 19:59,"925 1st St, San Francisco, CA 94016" -186974,iPhone,1,700,04/01/19 16:23,"860 Park St, Portland, OR 97035" -186975,USB-C Charging Cable,1,11.95,04/14/19 10:17,"624 Meadow St, Seattle, WA 98101" -186976,Lightning Charging Cable,1,14.95,04/24/19 22:05,"372 7th St, Los Angeles, CA 90001" -186977,Apple Airpods Headphones,1,150,04/05/19 15:49,"40 Center St, Los Angeles, CA 90001" -186978,Lightning Charging Cable,1,14.95,04/03/19 14:42,"517 5th St, Atlanta, GA 30301" -186979,Flatscreen TV,1,300,04/11/19 22:16,"415 Sunset St, Los Angeles, CA 90001" -186980,27in 4K Gaming Monitor,1,389.99,04/30/19 08:19,"667 Chestnut St, Boston, MA 02215" -186981,AA Batteries (4-pack),1,3.84,04/30/19 11:44,"616 9th St, Atlanta, GA 30301" -186982,ThinkPad Laptop,1,999.99,04/25/19 10:11,"318 13th St, San Francisco, CA 94016" -186983,AA Batteries (4-pack),2,3.84,04/12/19 10:27,"872 Madison St, San Francisco, CA 94016" -186984,Flatscreen TV,1,300,04/16/19 12:36,"930 Park St, Boston, MA 02215" -186985,AAA Batteries (4-pack),1,2.99,04/19/19 16:39,"463 Hill St, Portland, ME 04101" -186986,ThinkPad Laptop,1,999.99,04/23/19 18:35,"677 7th St, New York City, NY 10001" -186987,Lightning Charging Cable,1,14.95,04/17/19 13:41,"250 Johnson St, Atlanta, GA 30301" -186988,20in Monitor,1,109.99,04/28/19 11:31,"500 Highland St, San Francisco, CA 94016" -186989,Lightning Charging Cable,1,14.95,04/08/19 18:18,"688 Hill St, Atlanta, GA 30301" -186989,AA Batteries (4-pack),2,3.84,04/08/19 18:18,"688 Hill St, Atlanta, GA 30301" -186990,27in 4K Gaming Monitor,1,389.99,04/12/19 22:59,"15 Hill St, San Francisco, CA 94016" -186991,AA Batteries (4-pack),1,3.84,04/02/19 10:06,"797 11th St, San Francisco, CA 94016" -186992,Wired Headphones,1,11.99,04/03/19 11:21,"718 5th St, Boston, MA 02215" -186993,AAA Batteries (4-pack),1,2.99,04/29/19 07:17,"320 13th St, New York City, NY 10001" -186994,AAA Batteries (4-pack),3,2.99,04/22/19 11:14,"258 Lakeview St, Dallas, TX 75001" -186995,Wired Headphones,1,11.99,04/29/19 09:04,"326 6th St, Seattle, WA 98101" -186996,27in 4K Gaming Monitor,1,389.99,04/23/19 13:22,"559 Walnut St, San Francisco, CA 94016" -186997,USB-C Charging Cable,6,11.95,04/23/19 21:54,"733 Chestnut St, Seattle, WA 98101" -186998,Vareebadd Phone,1,400,04/09/19 10:13,"46 Park St, Portland, OR 97035" -186998,USB-C Charging Cable,1,11.95,04/09/19 10:13,"46 Park St, Portland, OR 97035" -186999,27in 4K Gaming Monitor,1,389.99,04/22/19 13:20,"943 Wilson St, San Francisco, CA 94016" -187000,USB-C Charging Cable,1,11.95,04/29/19 19:36,"593 South St, Portland, OR 97035" -187001,AAA Batteries (4-pack),1,2.99,04/03/19 10:54,"710 5th St, San Francisco, CA 94016" -187002,Lightning Charging Cable,1,14.95,04/15/19 17:43,"691 11th St, Portland, OR 97035" -187003,27in 4K Gaming Monitor,1,389.99,04/06/19 19:10,"107 8th St, Seattle, WA 98101" -187004,Flatscreen TV,1,300,04/29/19 16:10,"37 Church St, Los Angeles, CA 90001" -187005,AA Batteries (4-pack),3,3.84,04/29/19 18:53,"761 West St, Los Angeles, CA 90001" -187006,AAA Batteries (4-pack),2,2.99,04/25/19 21:34,"344 Lincoln St, Austin, TX 73301" -187007,USB-C Charging Cable,1,11.95,04/11/19 21:20,"816 North St, Boston, MA 02215" -187008,USB-C Charging Cable,2,11.95,04/17/19 13:44,"753 Walnut St, Dallas, TX 75001" -187009,27in 4K Gaming Monitor,1,389.99,04/27/19 10:09,"650 2nd St, Atlanta, GA 30301" -187010,34in Ultrawide Monitor,1,379.99,04/09/19 16:10,"665 Washington St, Atlanta, GA 30301" -187011,AAA Batteries (4-pack),1,2.99,04/26/19 19:19,"703 Elm St, Dallas, TX 75001" -187012,AA Batteries (4-pack),1,3.84,04/04/19 23:43,"116 Lincoln St, Dallas, TX 75001" -187013,Wired Headphones,1,11.99,04/18/19 12:13,"651 7th St, Seattle, WA 98101" -187014,AA Batteries (4-pack),1,3.84,04/04/19 19:48,"98 Meadow St, New York City, NY 10001" -187015,USB-C Charging Cable,1,11.95,04/24/19 00:30,"449 4th St, New York City, NY 10001" -187016,ThinkPad Laptop,1,999.99,04/23/19 10:04,"149 North St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -187017,34in Ultrawide Monitor,1,379.99,04/21/19 17:09,"308 Cherry St, New York City, NY 10001" -187018,iPhone,1,700,04/11/19 17:03,"301 Walnut St, San Francisco, CA 94016" -187019,Lightning Charging Cable,1,14.95,04/03/19 07:26,"371 12th St, Los Angeles, CA 90001" -187020,USB-C Charging Cable,1,11.95,04/23/19 22:39,"18 8th St, San Francisco, CA 94016" -187021,Wired Headphones,1,11.99,04/09/19 10:00,"282 Meadow St, Seattle, WA 98101" -187022,AAA Batteries (4-pack),1,2.99,04/30/19 11:46,"903 Wilson St, Los Angeles, CA 90001" -187023,Lightning Charging Cable,1,14.95,04/07/19 16:53,"800 1st St, San Francisco, CA 94016" -187024,Wired Headphones,1,11.99,04/21/19 11:42,"211 4th St, Dallas, TX 75001" -187025,27in FHD Monitor,1,149.99,04/28/19 19:10,"330 Johnson St, Atlanta, GA 30301" -187026,USB-C Charging Cable,2,11.95,04/02/19 18:38,"859 Chestnut St, San Francisco, CA 94016" -187027,AAA Batteries (4-pack),2,2.99,04/25/19 19:22,"171 7th St, Los Angeles, CA 90001" -187028,AA Batteries (4-pack),2,3.84,04/01/19 13:31,"728 Highland St, New York City, NY 10001" -187029,Apple Airpods Headphones,1,150,04/10/19 23:03,"315 Highland St, Seattle, WA 98101" -187030,Google Phone,1,600,04/17/19 15:11,"928 7th St, Boston, MA 02215" -187031,AA Batteries (4-pack),2,3.84,04/25/19 16:58,"450 10th St, Dallas, TX 75001" -187032,AAA Batteries (4-pack),1,2.99,04/22/19 10:03,"203 1st St, Atlanta, GA 30301" -187033,USB-C Charging Cable,1,11.95,04/20/19 23:04,"563 6th St, Los Angeles, CA 90001" -187034,Wired Headphones,1,11.99,04/13/19 17:18,"16 River St, Los Angeles, CA 90001" -187035,Apple Airpods Headphones,1,150,04/29/19 10:14,"536 South St, Boston, MA 02215" -187036,Lightning Charging Cable,1,14.95,04/28/19 23:02,"495 Pine St, Atlanta, GA 30301" -187037,Google Phone,1,600,04/05/19 15:16,"765 Spruce St, San Francisco, CA 94016" -187037,USB-C Charging Cable,1,11.95,04/05/19 15:16,"765 Spruce St, San Francisco, CA 94016" -187038,Apple Airpods Headphones,1,150,04/09/19 10:40,"170 1st St, Portland, OR 97035" -187039,AA Batteries (4-pack),1,3.84,04/05/19 09:15,"64 Park St, Los Angeles, CA 90001" -187040,Google Phone,1,600,04/23/19 16:37,"359 Johnson St, Seattle, WA 98101" -187041,Wired Headphones,1,11.99,04/06/19 16:11,"590 Sunset St, Boston, MA 02215" -187042,Lightning Charging Cable,1,14.95,04/13/19 16:30,"995 12th St, Los Angeles, CA 90001" -187043,iPhone,1,700,04/25/19 16:47,"78 Ridge St, San Francisco, CA 94016" -187044,AAA Batteries (4-pack),2,2.99,04/28/19 10:34,"524 Sunset St, San Francisco, CA 94016" -187045,AAA Batteries (4-pack),2,2.99,04/08/19 09:30,"26 Walnut St, Los Angeles, CA 90001" -187046,AA Batteries (4-pack),2,3.84,04/10/19 15:05,"318 Main St, Portland, OR 97035" -187047,iPhone,1,700,04/12/19 22:24,"624 14th St, Dallas, TX 75001" -187048,AA Batteries (4-pack),3,3.84,04/04/19 22:59,"490 Church St, San Francisco, CA 94016" -187049,AAA Batteries (4-pack),1,2.99,04/24/19 14:58,"153 Johnson St, Austin, TX 73301" -187050,Apple Airpods Headphones,1,150,04/14/19 17:58,"463 Willow St, San Francisco, CA 94016" -187051,Lightning Charging Cable,1,14.95,04/16/19 23:17,"768 Church St, San Francisco, CA 94016" -187052,Vareebadd Phone,1,400,04/07/19 21:25,"419 Hickory St, Seattle, WA 98101" -187053,LG Washing Machine,1,600.0,04/26/19 20:32,"564 Sunset St, New York City, NY 10001" -187054,Apple Airpods Headphones,1,150,04/30/19 18:59,"785 Meadow St, Dallas, TX 75001" -187055,Flatscreen TV,1,300,04/10/19 21:14,"820 Hickory St, Austin, TX 73301" -187056,AA Batteries (4-pack),1,3.84,04/13/19 12:06,"563 Wilson St, Boston, MA 02215" -187057,Vareebadd Phone,1,400,04/15/19 21:42,"164 2nd St, Dallas, TX 75001" -187058,Lightning Charging Cable,1,14.95,04/08/19 22:30,"556 Cherry St, Austin, TX 73301" -187059,AAA Batteries (4-pack),3,2.99,04/13/19 19:09,"60 Ridge St, Portland, OR 97035" -187060,34in Ultrawide Monitor,1,379.99,04/29/19 19:14,"179 Hickory St, Los Angeles, CA 90001" -187061,Lightning Charging Cable,1,14.95,04/15/19 23:40,"202 Lincoln St, San Francisco, CA 94016" -187062,AAA Batteries (4-pack),1,2.99,04/14/19 08:42,"341 Pine St, Boston, MA 02215" -187063,AA Batteries (4-pack),1,3.84,04/28/19 16:01,"965 8th St, Atlanta, GA 30301" -187064,AAA Batteries (4-pack),1,2.99,04/04/19 19:41,"688 Hill St, New York City, NY 10001" -187065,AA Batteries (4-pack),3,3.84,04/15/19 22:05,"815 Main St, Atlanta, GA 30301" -187066,AA Batteries (4-pack),2,3.84,04/16/19 23:33,"660 Lake St, San Francisco, CA 94016" -187067,AA Batteries (4-pack),1,3.84,04/17/19 06:17,"199 Johnson St, Atlanta, GA 30301" -187068,Lightning Charging Cable,1,14.95,04/01/19 09:56,"246 10th St, San Francisco, CA 94016" -187069,AA Batteries (4-pack),1,3.84,04/03/19 22:16,"936 Johnson St, Los Angeles, CA 90001" -187070,USB-C Charging Cable,1,11.95,04/03/19 19:13,"712 Ridge St, San Francisco, CA 94016" -187071,Bose SoundSport Headphones,1,99.99,04/05/19 23:01,"991 Lakeview St, Los Angeles, CA 90001" -187072,ThinkPad Laptop,1,999.99,04/01/19 21:13,"62 6th St, Atlanta, GA 30301" -187073,Wired Headphones,1,11.99,04/13/19 17:39,"384 Cedar St, Atlanta, GA 30301" -187074,Apple Airpods Headphones,1,150,04/07/19 10:49,"143 Adams St, Los Angeles, CA 90001" -187075,Flatscreen TV,1,300,04/25/19 18:26,"88 10th St, San Francisco, CA 94016" -187076,34in Ultrawide Monitor,1,379.99,04/10/19 19:28,"999 2nd St, Los Angeles, CA 90001" -187077,27in FHD Monitor,1,149.99,04/15/19 08:50,"508 North St, Los Angeles, CA 90001" -187078,34in Ultrawide Monitor,1,379.99,04/28/19 19:54,"853 Lincoln St, New York City, NY 10001" -187079,Apple Airpods Headphones,1,150,04/11/19 12:17,"733 Washington St, New York City, NY 10001" -187080,20in Monitor,1,109.99,04/18/19 11:41,"32 Jackson St, Dallas, TX 75001" -187081,Google Phone,1,600,04/08/19 15:31,"975 Forest St, Portland, OR 97035" -187081,USB-C Charging Cable,1,11.95,04/08/19 15:31,"975 Forest St, Portland, OR 97035" -187082,USB-C Charging Cable,1,11.95,04/29/19 08:12,"195 West St, San Francisco, CA 94016" -187083,Wired Headphones,1,11.99,04/11/19 22:37,"206 7th St, Boston, MA 02215" -187084,Google Phone,1,600,04/13/19 11:05,"507 Johnson St, San Francisco, CA 94016" -187085,USB-C Charging Cable,1,11.95,04/26/19 15:02,"211 Madison St, New York City, NY 10001" -187086,AA Batteries (4-pack),1,3.84,04/22/19 16:35,"912 North St, Los Angeles, CA 90001" -187087,Apple Airpods Headphones,1,150,04/15/19 11:40,"658 Pine St, New York City, NY 10001" -187088,ThinkPad Laptop,1,999.99,04/13/19 13:48,"982 Sunset St, San Francisco, CA 94016" -187089,USB-C Charging Cable,1,11.95,04/15/19 13:36,"384 Wilson St, Atlanta, GA 30301" -187090,USB-C Charging Cable,2,11.95,04/28/19 14:18,"915 Pine St, Seattle, WA 98101" -187091,AA Batteries (4-pack),3,3.84,04/04/19 13:50,"303 Ridge St, San Francisco, CA 94016" -187092,AA Batteries (4-pack),2,3.84,04/08/19 19:56,"532 8th St, New York City, NY 10001" -187093,AA Batteries (4-pack),1,3.84,04/05/19 14:10,"958 Chestnut St, New York City, NY 10001" -187094,34in Ultrawide Monitor,1,379.99,04/18/19 21:47,"398 11th St, Seattle, WA 98101" -187095,AAA Batteries (4-pack),2,2.99,04/17/19 13:56,"832 6th St, Los Angeles, CA 90001" -187096,Flatscreen TV,1,300,04/24/19 20:13,"791 Lincoln St, Portland, OR 97035" -187097,27in FHD Monitor,1,149.99,04/12/19 22:52,"230 Highland St, Atlanta, GA 30301" -187098,USB-C Charging Cable,1,11.95,04/01/19 18:57,"5 Main St, Los Angeles, CA 90001" -187099,Apple Airpods Headphones,1,150,04/01/19 19:28,"219 Meadow St, Atlanta, GA 30301" -187100,AAA Batteries (4-pack),2,2.99,04/18/19 00:47,"61 11th St, San Francisco, CA 94016" -187101,USB-C Charging Cable,1,11.95,04/06/19 19:15,"656 Main St, San Francisco, CA 94016" -187102,USB-C Charging Cable,2,11.95,04/05/19 15:23,"890 7th St, San Francisco, CA 94016" -187103,Apple Airpods Headphones,1,150,04/25/19 22:48,"660 Cherry St, Los Angeles, CA 90001" -187104,Wired Headphones,1,11.99,04/25/19 10:59,"838 West St, Los Angeles, CA 90001" -187105,27in FHD Monitor,1,149.99,04/16/19 12:43,"439 Center St, Seattle, WA 98101" -187106,Wired Headphones,1,11.99,04/28/19 16:29,"701 Jefferson St, New York City, NY 10001" -187107,USB-C Charging Cable,1,11.95,04/16/19 10:51,"497 North St, Portland, OR 97035" -187108,iPhone,1,700,04/28/19 01:43,"298 Wilson St, Atlanta, GA 30301" -187108,Lightning Charging Cable,1,14.95,04/28/19 01:43,"298 Wilson St, Atlanta, GA 30301" -187109,27in 4K Gaming Monitor,1,389.99,04/22/19 18:53,"361 Jackson St, San Francisco, CA 94016" -187110,20in Monitor,1,109.99,04/21/19 18:53,"452 Spruce St, Atlanta, GA 30301" -187111,Bose SoundSport Headphones,1,99.99,04/03/19 08:57,"40 6th St, San Francisco, CA 94016" -187112,USB-C Charging Cable,1,11.95,04/21/19 16:40,"316 Cherry St, New York City, NY 10001" -187113,Bose SoundSport Headphones,1,99.99,04/30/19 20:37,"820 2nd St, New York City, NY 10001" -187114,Apple Airpods Headphones,1,150,04/09/19 14:12,"641 Adams St, Seattle, WA 98101" -187115,AA Batteries (4-pack),1,3.84,04/22/19 23:52,"500 Cherry St, Los Angeles, CA 90001" -187116,Apple Airpods Headphones,1,150,04/16/19 09:58,"260 9th St, Los Angeles, CA 90001" -187117,Apple Airpods Headphones,1,150,04/19/19 21:20,"392 Main St, Seattle, WA 98101" -187118,Bose SoundSport Headphones,1,99.99,04/07/19 18:59,"197 Main St, San Francisco, CA 94016" -187119,AAA Batteries (4-pack),1,2.99,04/26/19 02:54,"250 Sunset St, Seattle, WA 98101" -187120,27in FHD Monitor,1,149.99,04/24/19 13:39,"277 Dogwood St, Seattle, WA 98101" -187121,Apple Airpods Headphones,1,150,04/20/19 11:51,"969 Lakeview St, Seattle, WA 98101" -187122,Bose SoundSport Headphones,1,99.99,04/26/19 09:32,"687 Cedar St, New York City, NY 10001" -187123,AAA Batteries (4-pack),2,2.99,04/03/19 19:11,"217 North St, Boston, MA 02215" -187124,AAA Batteries (4-pack),1,2.99,04/11/19 09:23,"841 Madison St, San Francisco, CA 94016" -187125,USB-C Charging Cable,1,11.95,04/16/19 15:08,"531 Wilson St, Atlanta, GA 30301" -187126,Bose SoundSport Headphones,1,99.99,04/11/19 17:48,"216 Forest St, Seattle, WA 98101" -187126,34in Ultrawide Monitor,1,379.99,04/11/19 17:48,"216 Forest St, Seattle, WA 98101" -187127,USB-C Charging Cable,1,11.95,04/03/19 15:13,"8 4th St, Boston, MA 02215" -187128,AA Batteries (4-pack),1,3.84,04/11/19 17:18,"564 Lincoln St, Austin, TX 73301" -187129,Wired Headphones,1,11.99,04/13/19 20:14,"957 Dogwood St, New York City, NY 10001" -187130,Lightning Charging Cable,1,14.95,04/24/19 16:58,"805 Hill St, Boston, MA 02215" -187131,AAA Batteries (4-pack),1,2.99,04/12/19 09:06,"52 Johnson St, New York City, NY 10001" -187132,Lightning Charging Cable,1,14.95,04/07/19 12:21,"47 2nd St, New York City, NY 10001" -187133,Bose SoundSport Headphones,1,99.99,04/12/19 17:11,"257 11th St, Atlanta, GA 30301" -187134,AAA Batteries (4-pack),1,2.99,04/05/19 19:13,"426 11th St, San Francisco, CA 94016" -187135,34in Ultrawide Monitor,1,379.99,04/20/19 19:36,"698 West St, San Francisco, CA 94016" -187136,Google Phone,1,600,04/27/19 00:29,"171 Sunset St, San Francisco, CA 94016" -187137,Bose SoundSport Headphones,1,99.99,04/27/19 23:37,"112 Center St, San Francisco, CA 94016" -187138,Lightning Charging Cable,1,14.95,04/23/19 15:10,"55 Park St, San Francisco, CA 94016" -187139,USB-C Charging Cable,1,11.95,04/11/19 10:55,"304 1st St, Boston, MA 02215" -187140,Lightning Charging Cable,1,14.95,04/18/19 08:31,"254 4th St, Boston, MA 02215" -187141,Bose SoundSport Headphones,1,99.99,04/13/19 09:01,"759 Cedar St, Los Angeles, CA 90001" -187142,AAA Batteries (4-pack),1,2.99,04/21/19 09:10,"413 Chestnut St, Seattle, WA 98101" -187143,Lightning Charging Cable,1,14.95,04/07/19 21:28,"536 Hickory St, New York City, NY 10001" -187144,Google Phone,1,600,04/12/19 12:40,"154 12th St, Los Angeles, CA 90001" -187145,iPhone,1,700,04/24/19 21:50,"166 West St, Atlanta, GA 30301" -187146,Google Phone,1,600,04/07/19 13:12,"122 13th St, Portland, OR 97035" -187147,AAA Batteries (4-pack),3,2.99,04/23/19 17:42,"929 Willow St, Los Angeles, CA 90001" -187148,USB-C Charging Cable,2,11.95,04/01/19 13:47,"863 Park St, New York City, NY 10001" -187149,34in Ultrawide Monitor,1,379.99,04/03/19 12:03,"507 Lakeview St, Austin, TX 73301" -187150,AAA Batteries (4-pack),1,2.99,04/05/19 11:12,"761 West St, Boston, MA 02215" -187151,Bose SoundSport Headphones,1,99.99,04/27/19 16:58,"203 Maple St, Portland, OR 97035" -187152,Flatscreen TV,1,300,04/15/19 09:54,"420 9th St, Atlanta, GA 30301" -187153,Lightning Charging Cable,1,14.95,04/19/19 17:49,"582 11th St, Seattle, WA 98101" -187154,Wired Headphones,1,11.99,04/29/19 04:32,"775 South St, Boston, MA 02215" -187155,USB-C Charging Cable,1,11.95,04/09/19 16:25,"607 Dogwood St, Portland, OR 97035" -187156,Wired Headphones,1,11.99,04/20/19 17:08,"356 Pine St, San Francisco, CA 94016" -187157,Lightning Charging Cable,1,14.95,04/10/19 06:02,"837 13th St, Austin, TX 73301" -187158,USB-C Charging Cable,1,11.95,04/28/19 11:31,"22 Lakeview St, New York City, NY 10001" -187159,AA Batteries (4-pack),2,3.84,04/02/19 13:43,"946 Jackson St, Los Angeles, CA 90001" -187160,27in FHD Monitor,1,149.99,04/04/19 12:36,"993 Cedar St, New York City, NY 10001" -187161,Vareebadd Phone,1,400,04/23/19 19:33,"842 Highland St, Los Angeles, CA 90001" -187162,AAA Batteries (4-pack),1,2.99,04/11/19 14:40,"293 Sunset St, Boston, MA 02215" -187163,USB-C Charging Cable,1,11.95,04/15/19 12:06,"452 Maple St, Dallas, TX 75001" -187164,Apple Airpods Headphones,1,150,04/20/19 13:15,"916 Ridge St, San Francisco, CA 94016" -187165,USB-C Charging Cable,2,11.95,04/24/19 23:51,"425 Hickory St, San Francisco, CA 94016" -187166,Wired Headphones,1,11.99,04/06/19 20:54,"276 Washington St, Los Angeles, CA 90001" -187167,Wired Headphones,1,11.99,04/24/19 13:22,"918 4th St, San Francisco, CA 94016" -187168,USB-C Charging Cable,1,11.95,04/05/19 17:06,"99 Lincoln St, San Francisco, CA 94016" -187169,ThinkPad Laptop,1,999.99,04/22/19 14:26,"300 Cedar St, Seattle, WA 98101" -187170,AAA Batteries (4-pack),3,2.99,04/09/19 23:11,"810 Ridge St, Los Angeles, CA 90001" -187171,Apple Airpods Headphones,1,150,04/17/19 18:48,"108 14th St, Boston, MA 02215" -187172,Lightning Charging Cable,1,14.95,04/25/19 02:16,"821 Johnson St, Portland, OR 97035" -187172,20in Monitor,1,109.99,04/25/19 02:16,"821 Johnson St, Portland, OR 97035" -187173,Wired Headphones,1,11.99,04/29/19 16:59,"602 Johnson St, San Francisco, CA 94016" -187174,Bose SoundSport Headphones,1,99.99,04/13/19 13:42,"399 Ridge St, Los Angeles, CA 90001" -187175,Google Phone,1,600,04/18/19 13:37,"111 Elm St, Los Angeles, CA 90001" -187176,34in Ultrawide Monitor,1,379.99,04/20/19 13:20,"197 6th St, Boston, MA 02215" -187177,Macbook Pro Laptop,1,1700,04/25/19 10:23,"979 Park St, Boston, MA 02215" -187178,Vareebadd Phone,1,400,04/16/19 05:50,"794 River St, San Francisco, CA 94016" -187179,iPhone,1,700,04/22/19 19:31,"476 Maple St, Los Angeles, CA 90001" -187180,Bose SoundSport Headphones,1,99.99,04/02/19 18:42,"343 8th St, Dallas, TX 75001" -187181,Flatscreen TV,1,300,04/30/19 17:01,"627 5th St, Boston, MA 02215" -187182,AA Batteries (4-pack),5,3.84,04/06/19 13:05,"34 South St, New York City, NY 10001" -187183,20in Monitor,1,109.99,04/08/19 13:45,"908 Elm St, New York City, NY 10001" -187184,AAA Batteries (4-pack),1,2.99,04/24/19 20:36,"9 Cedar St, San Francisco, CA 94016" -187185,LG Washing Machine,1,600.0,04/08/19 14:05,"321 South St, Los Angeles, CA 90001" -187186,Apple Airpods Headphones,1,150,04/01/19 15:29,"594 Walnut St, San Francisco, CA 94016" -187187,Lightning Charging Cable,1,14.95,04/11/19 21:33,"702 14th St, New York City, NY 10001" -187188,Lightning Charging Cable,1,14.95,04/20/19 18:54,"709 River St, Atlanta, GA 30301" -187189,LG Dryer,1,600.0,04/10/19 09:14,"938 10th St, New York City, NY 10001" -187190,Lightning Charging Cable,1,14.95,04/22/19 10:14,"298 Maple St, San Francisco, CA 94016" -187191,USB-C Charging Cable,1,11.95,04/05/19 09:24,"424 Hickory St, Atlanta, GA 30301" -187192,AAA Batteries (4-pack),2,2.99,04/12/19 06:10,"663 Wilson St, Los Angeles, CA 90001" -187193,AAA Batteries (4-pack),2,2.99,04/28/19 14:26,"456 Dogwood St, Atlanta, GA 30301" -187194,Wired Headphones,1,11.99,04/12/19 19:24,"557 River St, New York City, NY 10001" -187195,AA Batteries (4-pack),1,3.84,04/07/19 11:31,"123 Cherry St, Dallas, TX 75001" -187196,Google Phone,1,600,04/29/19 10:29,"249 Pine St, Seattle, WA 98101" -187197,Bose SoundSport Headphones,1,99.99,04/23/19 16:01,"763 12th St, Los Angeles, CA 90001" -187198,34in Ultrawide Monitor,1,379.99,04/18/19 20:25,"987 Chestnut St, New York City, NY 10001" -187199,Flatscreen TV,1,300,04/21/19 16:02,"751 Hill St, San Francisco, CA 94016" -187200,AA Batteries (4-pack),1,3.84,04/07/19 21:04,"553 2nd St, Atlanta, GA 30301" -187201,Wired Headphones,1,11.99,04/20/19 17:59,"161 7th St, San Francisco, CA 94016" -187202,Wired Headphones,1,11.99,04/16/19 20:15,"396 Adams St, Boston, MA 02215" -187203,Apple Airpods Headphones,1,150,04/15/19 13:59,"847 Main St, Atlanta, GA 30301" -187204,Lightning Charging Cable,1,14.95,04/10/19 21:57,"839 Ridge St, Atlanta, GA 30301" -187205,AA Batteries (4-pack),1,3.84,04/09/19 01:35,"263 Jackson St, Dallas, TX 75001" -187206,Lightning Charging Cable,1,14.95,04/12/19 11:51,"757 Main St, Seattle, WA 98101" -187207,AA Batteries (4-pack),1,3.84,04/29/19 14:22,"296 Park St, Boston, MA 02215" -187208,Google Phone,1,600,04/19/19 18:44,"505 Center St, Dallas, TX 75001" -187209,Flatscreen TV,1,300,04/26/19 22:30,"393 Hickory St, San Francisco, CA 94016" -187210,Bose SoundSport Headphones,1,99.99,04/05/19 13:26,"30 12th St, Los Angeles, CA 90001" -187211,34in Ultrawide Monitor,1,379.99,04/03/19 09:06,"791 Hill St, Dallas, TX 75001" -187212,ThinkPad Laptop,1,999.99,04/18/19 09:38,"155 6th St, Boston, MA 02215" -187213,Apple Airpods Headphones,1,150,04/07/19 10:09,"977 Johnson St, Los Angeles, CA 90001" -187214,Wired Headphones,1,11.99,04/18/19 05:41,"963 1st St, San Francisco, CA 94016" -187215,iPhone,1,700,04/01/19 22:34,"695 8th St, Boston, MA 02215" -187215,Lightning Charging Cable,1,14.95,04/01/19 22:34,"695 8th St, Boston, MA 02215" -187216,AA Batteries (4-pack),1,3.84,04/03/19 20:32,"973 Church St, Boston, MA 02215" -187217,Vareebadd Phone,1,400,04/03/19 07:39,"374 Forest St, San Francisco, CA 94016" -187218,Apple Airpods Headphones,1,150,04/21/19 19:17,"156 Ridge St, Dallas, TX 75001" -187219,34in Ultrawide Monitor,1,379.99,04/27/19 17:41,"174 River St, Austin, TX 73301" -187220,AA Batteries (4-pack),1,3.84,04/07/19 22:57,"222 13th St, San Francisco, CA 94016" -187221,USB-C Charging Cable,1,11.95,04/10/19 17:20,"777 14th St, Los Angeles, CA 90001" -187222,Bose SoundSport Headphones,1,99.99,04/09/19 17:14,"14 Cedar St, San Francisco, CA 94016" -187223,27in 4K Gaming Monitor,1,389.99,04/19/19 19:33,"809 1st St, San Francisco, CA 94016" -187224,Lightning Charging Cable,1,14.95,04/01/19 17:24,"310 Spruce St, Seattle, WA 98101" -187225,Apple Airpods Headphones,1,150,04/16/19 19:11,"48 4th St, Austin, TX 73301" -187226,Bose SoundSport Headphones,1,99.99,04/22/19 15:47,"74 River St, Atlanta, GA 30301" -187227,Apple Airpods Headphones,1,150,04/21/19 15:20,"998 Cherry St, Dallas, TX 75001" -187228,34in Ultrawide Monitor,1,379.99,04/01/19 08:38,"289 North St, Portland, OR 97035" -187229,Macbook Pro Laptop,1,1700,04/29/19 11:24,"247 Wilson St, Austin, TX 73301" -187230,USB-C Charging Cable,1,11.95,04/28/19 16:38,"15 Forest St, Los Angeles, CA 90001" -187231,34in Ultrawide Monitor,1,379.99,04/03/19 08:14,"887 South St, San Francisco, CA 94016" -187232,LG Dryer,1,600.0,04/14/19 00:46,"797 Church St, Portland, OR 97035" -187233,Lightning Charging Cable,1,14.95,04/18/19 08:45,"904 Johnson St, New York City, NY 10001" -187234,Macbook Pro Laptop,1,1700,04/09/19 07:57,"266 14th St, San Francisco, CA 94016" -187235,USB-C Charging Cable,1,11.95,04/29/19 10:35,"139 10th St, Los Angeles, CA 90001" -187236,AA Batteries (4-pack),2,3.84,04/06/19 09:26,"932 Madison St, Los Angeles, CA 90001" -187237,34in Ultrawide Monitor,1,379.99,04/23/19 18:09,"814 Ridge St, Dallas, TX 75001" -187238,AAA Batteries (4-pack),1,2.99,04/29/19 16:30,"17 Cedar St, San Francisco, CA 94016" -187239,Wired Headphones,1,11.99,04/09/19 13:31,"977 Main St, Los Angeles, CA 90001" -187240,USB-C Charging Cable,1,11.95,04/07/19 16:40,"897 South St, Boston, MA 02215" -187241,Bose SoundSport Headphones,1,99.99,04/07/19 21:46,"270 Cedar St, Los Angeles, CA 90001" -187242,USB-C Charging Cable,1,11.95,04/11/19 23:55,"164 Church St, Dallas, TX 75001" -187243,iPhone,1,700,04/15/19 17:40,"292 13th St, Boston, MA 02215" -187244,USB-C Charging Cable,1,11.95,04/03/19 21:08,"276 Meadow St, New York City, NY 10001" -187245,Lightning Charging Cable,1,14.95,04/19/19 22:30,"288 Pine St, Boston, MA 02215" -187246,Google Phone,1,600,04/14/19 21:16,"713 9th St, Dallas, TX 75001" -187247,Wired Headphones,1,11.99,04/03/19 13:58,"172 Sunset St, San Francisco, CA 94016" -187248,USB-C Charging Cable,1,11.95,04/10/19 00:36,"45 11th St, Seattle, WA 98101" -187249,USB-C Charging Cable,1,11.95,04/29/19 07:17,"278 River St, Atlanta, GA 30301" -187250,AA Batteries (4-pack),2,3.84,04/02/19 17:03,"687 Dogwood St, Los Angeles, CA 90001" -187251,Bose SoundSport Headphones,1,99.99,04/05/19 09:35,"829 Chestnut St, Los Angeles, CA 90001" -187252,27in FHD Monitor,1,149.99,04/10/19 20:16,"258 4th St, New York City, NY 10001" -187253,Flatscreen TV,1,300,04/22/19 08:13,"24 Church St, Atlanta, GA 30301" -187254,AAA Batteries (4-pack),1,2.99,04/17/19 20:21,"352 Adams St, Los Angeles, CA 90001" -187255,Lightning Charging Cable,1,14.95,04/21/19 23:27,"120 Elm St, San Francisco, CA 94016" -187256,27in FHD Monitor,1,149.99,04/12/19 20:34,"971 4th St, New York City, NY 10001" -187257,USB-C Charging Cable,1,11.95,04/29/19 10:09,"923 Pine St, Atlanta, GA 30301" -187258,Bose SoundSport Headphones,1,99.99,04/21/19 08:19,"833 Ridge St, San Francisco, CA 94016" -187259,AAA Batteries (4-pack),1,2.99,04/13/19 11:08,"498 Main St, Atlanta, GA 30301" -187260,AA Batteries (4-pack),2,3.84,04/24/19 06:21,"352 River St, Boston, MA 02215" -187261,iPhone,1,700,04/21/19 14:22,"453 Park St, San Francisco, CA 94016" -187261,Lightning Charging Cable,1,14.95,04/21/19 14:22,"453 Park St, San Francisco, CA 94016" -187262,AAA Batteries (4-pack),1,2.99,04/20/19 08:16,"365 Hill St, Dallas, TX 75001" -187263,USB-C Charging Cable,1,11.95,04/12/19 19:51,"239 4th St, San Francisco, CA 94016" -187264,USB-C Charging Cable,1,11.95,04/06/19 15:56,"943 Sunset St, New York City, NY 10001" -187265,Wired Headphones,1,11.99,04/23/19 10:08,"382 Elm St, New York City, NY 10001" -187266,USB-C Charging Cable,1,11.95,04/07/19 18:22,"982 Hill St, Seattle, WA 98101" -187267,AAA Batteries (4-pack),1,2.99,04/20/19 22:10,"283 Johnson St, New York City, NY 10001" -187268,Wired Headphones,1,11.99,04/16/19 11:49,"811 Forest St, San Francisco, CA 94016" -187269,AAA Batteries (4-pack),1,2.99,04/26/19 11:26,"789 Lakeview St, Austin, TX 73301" -187270,USB-C Charging Cable,1,11.95,04/19/19 15:36,"230 River St, San Francisco, CA 94016" -187271,Apple Airpods Headphones,1,150,04/10/19 13:29,"440 Madison St, Portland, OR 97035" -187272,34in Ultrawide Monitor,1,379.99,04/07/19 19:47,"249 Lake St, Dallas, TX 75001" -187273,Apple Airpods Headphones,1,150,04/15/19 20:03,"22 Maple St, New York City, NY 10001" -187274,Google Phone,1,600,04/17/19 19:15,"214 Jefferson St, Seattle, WA 98101" -187275,20in Monitor,1,109.99,04/15/19 19:01,"90 Maple St, New York City, NY 10001" -187276,Apple Airpods Headphones,1,150,04/07/19 18:51,"869 13th St, San Francisco, CA 94016" -187277,Lightning Charging Cable,1,14.95,04/28/19 09:43,"677 9th St, Los Angeles, CA 90001" -187278,27in FHD Monitor,1,149.99,04/30/19 18:56,"764 Main St, Seattle, WA 98101" -187279,Wired Headphones,1,11.99,04/12/19 09:04,"303 Dogwood St, San Francisco, CA 94016" -187280,AA Batteries (4-pack),1,3.84,04/18/19 08:11,"717 4th St, Austin, TX 73301" -187281,34in Ultrawide Monitor,1,379.99,04/10/19 11:01,"274 13th St, San Francisco, CA 94016" -187282,Wired Headphones,1,11.99,04/07/19 19:12,"430 Washington St, Boston, MA 02215" -187283,USB-C Charging Cable,1,11.95,04/07/19 12:51,"900 5th St, Los Angeles, CA 90001" -187284,34in Ultrawide Monitor,1,379.99,04/21/19 19:24,"625 Hickory St, Los Angeles, CA 90001" -187285,AAA Batteries (4-pack),1,2.99,04/13/19 18:12,"934 Meadow St, Los Angeles, CA 90001" -187286,20in Monitor,1,109.99,04/23/19 16:31,"71 Jackson St, Austin, TX 73301" -187287,Bose SoundSport Headphones,1,99.99,04/15/19 16:04,"305 Johnson St, Los Angeles, CA 90001" -187288,USB-C Charging Cable,1,11.95,04/17/19 16:46,"390 Center St, Austin, TX 73301" -187289,27in FHD Monitor,1,149.99,04/24/19 14:04,"936 9th St, Dallas, TX 75001" -187290,Flatscreen TV,1,300,04/23/19 23:42,"475 Lake St, New York City, NY 10001" -187291,Bose SoundSport Headphones,1,99.99,04/30/19 14:26,"812 6th St, Atlanta, GA 30301" -187292,AA Batteries (4-pack),1,3.84,04/08/19 14:04,"604 Lincoln St, New York City, NY 10001" -187293,AAA Batteries (4-pack),1,2.99,04/19/19 12:57,"883 Chestnut St, San Francisco, CA 94016" -187294,AAA Batteries (4-pack),2,2.99,04/10/19 12:40,"139 Forest St, New York City, NY 10001" -187295,AAA Batteries (4-pack),1,2.99,04/29/19 12:34,"304 Hill St, Los Angeles, CA 90001" -187296,USB-C Charging Cable,1,11.95,04/29/19 16:15,"994 7th St, Atlanta, GA 30301" -187297,USB-C Charging Cable,1,11.95,04/01/19 14:15,"774 Lakeview St, Boston, MA 02215" -187298,27in FHD Monitor,1,149.99,04/17/19 15:32,"209 Walnut St, San Francisco, CA 94016" -187299,Wired Headphones,1,11.99,04/15/19 16:10,"110 7th St, Austin, TX 73301" -187300,Google Phone,1,600,04/21/19 16:11,"764 Highland St, Seattle, WA 98101" -187301,Flatscreen TV,1,300,04/15/19 21:43,"507 Hill St, Austin, TX 73301" -187302,AA Batteries (4-pack),1,3.84,04/20/19 19:28,"321 Jefferson St, Atlanta, GA 30301" -187303,Wired Headphones,1,11.99,04/29/19 12:27,"540 2nd St, New York City, NY 10001" -187304,27in FHD Monitor,1,149.99,04/15/19 14:17,"47 Highland St, Portland, OR 97035" -187305,Bose SoundSport Headphones,1,99.99,04/18/19 14:06,"394 1st St, San Francisco, CA 94016" -187306,Bose SoundSport Headphones,1,99.99,04/12/19 15:53,"402 7th St, Portland, ME 04101" -187307,AA Batteries (4-pack),1,3.84,04/24/19 15:51,"827 Wilson St, Austin, TX 73301" -187307,27in FHD Monitor,1,149.99,04/24/19 15:51,"827 Wilson St, Austin, TX 73301" -187308,Wired Headphones,1,11.99,04/26/19 19:21,"816 Meadow St, Atlanta, GA 30301" -187309,27in 4K Gaming Monitor,1,389.99,04/14/19 10:15,"301 5th St, New York City, NY 10001" -187310,AA Batteries (4-pack),1,3.84,04/12/19 11:32,"853 Highland St, San Francisco, CA 94016" -187311,Wired Headphones,1,11.99,04/12/19 23:02,"413 Hickory St, San Francisco, CA 94016" -187312,Google Phone,1,600,04/05/19 20:33,"15 Main St, Atlanta, GA 30301" -187313,27in FHD Monitor,1,149.99,04/29/19 12:03,"623 6th St, Atlanta, GA 30301" -187314,AAA Batteries (4-pack),1,2.99,04/06/19 09:15,"522 Madison St, New York City, NY 10001" -187315,Lightning Charging Cable,1,14.95,04/11/19 10:22,"687 Wilson St, San Francisco, CA 94016" -187316,Wired Headphones,1,11.99,04/22/19 18:03,"881 Meadow St, Los Angeles, CA 90001" -187317,Bose SoundSport Headphones,1,99.99,04/12/19 11:03,"133 4th St, Seattle, WA 98101" -187318,Lightning Charging Cable,1,14.95,04/28/19 20:09,"626 13th St, Dallas, TX 75001" -187319,AAA Batteries (4-pack),1,2.99,04/02/19 01:34,"600 1st St, Atlanta, GA 30301" -187320,AAA Batteries (4-pack),1,2.99,04/12/19 11:41,"55 South St, San Francisco, CA 94016" -187321,20in Monitor,1,109.99,04/25/19 12:12,"609 Highland St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -187322,Bose SoundSport Headphones,1,99.99,04/30/19 20:29,"846 13th St, San Francisco, CA 94016" -187323,AAA Batteries (4-pack),2,2.99,04/29/19 17:01,"723 North St, Portland, OR 97035" -187324,Bose SoundSport Headphones,1,99.99,04/28/19 19:51,"490 Main St, Dallas, TX 75001" -187325,Wired Headphones,1,11.99,04/01/19 18:25,"250 1st St, New York City, NY 10001" -187326,AA Batteries (4-pack),2,3.84,04/11/19 21:34,"138 Lake St, Dallas, TX 75001" -,,,,, -187327,USB-C Charging Cable,1,11.95,04/11/19 19:14,"202 Sunset St, Portland, OR 97035" -187328,Lightning Charging Cable,1,14.95,04/21/19 09:37,"731 Jefferson St, Seattle, WA 98101" -187329,AAA Batteries (4-pack),1,2.99,04/10/19 14:09,"182 Cedar St, San Francisco, CA 94016" -187330,LG Washing Machine,1,600.0,04/28/19 16:46,"823 River St, San Francisco, CA 94016" -187331,Lightning Charging Cable,1,14.95,04/16/19 14:05,"798 Hickory St, San Francisco, CA 94016" -187332,AAA Batteries (4-pack),2,2.99,04/03/19 09:07,"332 River St, Atlanta, GA 30301" -187333,LG Washing Machine,1,600.0,04/21/19 18:22,"18 Jefferson St, Los Angeles, CA 90001" -187334,Wired Headphones,1,11.99,04/19/19 06:13,"982 Washington St, Austin, TX 73301" -187335,Apple Airpods Headphones,1,150,04/16/19 21:18,"869 Pine St, Los Angeles, CA 90001" -187336,USB-C Charging Cable,1,11.95,04/30/19 20:53,"2 West St, Dallas, TX 75001" -187337,Lightning Charging Cable,1,14.95,04/13/19 20:56,"419 Park St, New York City, NY 10001" -187338,AAA Batteries (4-pack),1,2.99,04/26/19 14:01,"810 Hill St, New York City, NY 10001" -187339,AA Batteries (4-pack),1,3.84,04/04/19 16:10,"385 Dogwood St, Boston, MA 02215" -187340,20in Monitor,1,109.99,04/10/19 21:33,"783 South St, San Francisco, CA 94016" -187341,Apple Airpods Headphones,1,150,04/18/19 17:10,"77 6th St, Dallas, TX 75001" -187342,Apple Airpods Headphones,1,150,04/09/19 20:22,"526 Center St, Atlanta, GA 30301" -187343,Lightning Charging Cable,1,14.95,04/24/19 08:32,"15 Jefferson St, Los Angeles, CA 90001" -187344,Lightning Charging Cable,1,14.95,04/24/19 20:54,"729 Highland St, Los Angeles, CA 90001" -187345,Lightning Charging Cable,1,14.95,04/27/19 10:09,"951 Johnson St, Portland, OR 97035" -187346,20in Monitor,1,109.99,04/01/19 23:52,"10 Meadow St, San Francisco, CA 94016" -187347,Macbook Pro Laptop,1,1700,04/27/19 13:43,"289 Hickory St, San Francisco, CA 94016" -187348,AA Batteries (4-pack),1,3.84,04/24/19 17:59,"306 North St, Dallas, TX 75001" -187349,Wired Headphones,1,11.99,04/02/19 15:15,"890 Spruce St, New York City, NY 10001" -187350,27in 4K Gaming Monitor,1,389.99,04/08/19 14:53,"196 Spruce St, Seattle, WA 98101" -187351,Bose SoundSport Headphones,1,99.99,04/18/19 15:38,"728 Highland St, Seattle, WA 98101" -187352,ThinkPad Laptop,1,999.99,04/20/19 09:27,"517 Wilson St, San Francisco, CA 94016" -187353,Google Phone,1,600,04/17/19 16:02,"559 South St, San Francisco, CA 94016" -187354,iPhone,1,700,04/04/19 08:11,"966 Meadow St, Dallas, TX 75001" -187355,AA Batteries (4-pack),1,3.84,04/04/19 11:28,"961 Forest St, New York City, NY 10001" -187356,Apple Airpods Headphones,1,150,04/10/19 11:29,"239 8th St, Seattle, WA 98101" -187357,iPhone,1,700,04/26/19 11:58,"944 North St, San Francisco, CA 94016" -187357,Lightning Charging Cable,1,14.95,04/26/19 11:58,"944 North St, San Francisco, CA 94016" -187358,27in 4K Gaming Monitor,1,389.99,04/05/19 20:31,"339 5th St, San Francisco, CA 94016" -187359,Lightning Charging Cable,1,14.95,04/19/19 18:18,"615 Wilson St, Dallas, TX 75001" -187360,Macbook Pro Laptop,1,1700,04/06/19 15:41,"383 8th St, Los Angeles, CA 90001" -187361,AAA Batteries (4-pack),1,2.99,04/14/19 15:30,"448 Main St, Los Angeles, CA 90001" -187362,Apple Airpods Headphones,1,150,04/03/19 16:15,"83 Wilson St, San Francisco, CA 94016" -187363,Lightning Charging Cable,1,14.95,04/30/19 15:07,"603 Jefferson St, Seattle, WA 98101" -187364,Bose SoundSport Headphones,1,99.99,04/26/19 19:31,"95 Madison St, San Francisco, CA 94016" -187365,USB-C Charging Cable,1,11.95,04/26/19 08:17,"245 Lake St, Atlanta, GA 30301" -187366,ThinkPad Laptop,1,999.99,04/21/19 19:51,"706 14th St, San Francisco, CA 94016" -187367,iPhone,1,700,04/22/19 21:30,"841 Church St, Boston, MA 02215" -187368,USB-C Charging Cable,1,11.95,04/18/19 23:31,"57 Johnson St, Atlanta, GA 30301" -187369,Google Phone,1,600,04/30/19 19:50,"99 Cedar St, New York City, NY 10001" -187369,Wired Headphones,1,11.99,04/30/19 19:50,"99 Cedar St, New York City, NY 10001" -187370,iPhone,1,700,04/19/19 21:59,"958 Hill St, Los Angeles, CA 90001" -187371,AA Batteries (4-pack),1,3.84,04/23/19 18:06,"763 Washington St, Austin, TX 73301" -187372,Apple Airpods Headphones,1,150,04/02/19 14:12,"64 Cherry St, San Francisco, CA 94016" -187373,AA Batteries (4-pack),1,3.84,04/02/19 13:48,"651 7th St, Los Angeles, CA 90001" -187374,Google Phone,1,600,04/06/19 18:42,"112 Hickory St, Los Angeles, CA 90001" -187375,AA Batteries (4-pack),1,3.84,04/05/19 14:41,"225 Walnut St, New York City, NY 10001" -187376,AA Batteries (4-pack),2,3.84,04/23/19 21:37,"729 Hickory St, New York City, NY 10001" -187377,27in FHD Monitor,1,149.99,04/03/19 20:12,"95 13th St, Los Angeles, CA 90001" -187378,Lightning Charging Cable,1,14.95,04/21/19 09:41,"914 Park St, San Francisco, CA 94016" -187379,USB-C Charging Cable,1,11.95,04/10/19 19:06,"504 10th St, Los Angeles, CA 90001" -187379,USB-C Charging Cable,1,11.95,04/10/19 19:06,"504 10th St, Los Angeles, CA 90001" -187380,Flatscreen TV,1,300,04/24/19 12:48,"831 Meadow St, Los Angeles, CA 90001" -187381,20in Monitor,1,109.99,04/28/19 11:15,"337 13th St, Atlanta, GA 30301" -187382,USB-C Charging Cable,1,11.95,04/05/19 19:29,"294 Church St, Portland, OR 97035" -187383,Wired Headphones,1,11.99,04/03/19 18:59,"89 Jefferson St, Boston, MA 02215" -187384,AAA Batteries (4-pack),2,2.99,04/02/19 04:28,"108 Park St, San Francisco, CA 94016" -187385,Lightning Charging Cable,1,14.95,04/18/19 20:26,"369 11th St, Seattle, WA 98101" -187385,Google Phone,1,600,04/18/19 20:26,"369 11th St, Seattle, WA 98101" -187386,Wired Headphones,1,11.99,04/14/19 14:58,"258 Maple St, Atlanta, GA 30301" -187387,Apple Airpods Headphones,1,150,04/24/19 21:48,"12 14th St, San Francisco, CA 94016" -187388,27in FHD Monitor,1,149.99,04/28/19 14:00,"55 Elm St, San Francisco, CA 94016" -187389,Bose SoundSport Headphones,1,99.99,04/03/19 13:42,"860 River St, Austin, TX 73301" -187390,Bose SoundSport Headphones,1,99.99,04/06/19 12:52,"364 South St, Boston, MA 02215" -187391,AAA Batteries (4-pack),2,2.99,04/11/19 21:18,"63 Sunset St, Dallas, TX 75001" -187392,Lightning Charging Cable,1,14.95,04/17/19 10:37,"41 14th St, Atlanta, GA 30301" -187393,USB-C Charging Cable,1,11.95,04/22/19 01:10,"921 West St, Austin, TX 73301" -187394,AA Batteries (4-pack),1,3.84,04/04/19 11:25,"117 Jefferson St, New York City, NY 10001" -187395,AA Batteries (4-pack),1,3.84,04/17/19 19:05,"957 Forest St, Atlanta, GA 30301" -187396,Wired Headphones,1,11.99,04/26/19 04:43,"132 10th St, Austin, TX 73301" -187397,USB-C Charging Cable,1,11.95,04/13/19 00:30,"661 9th St, Boston, MA 02215" -187398,Wired Headphones,1,11.99,04/22/19 07:53,"398 Hickory St, San Francisco, CA 94016" -187399,AAA Batteries (4-pack),1,2.99,04/16/19 19:59,"319 10th St, Los Angeles, CA 90001" -187400,Wired Headphones,1,11.99,04/16/19 12:59,"704 Willow St, Boston, MA 02215" -187401,USB-C Charging Cable,1,11.95,04/14/19 12:02,"593 West St, Atlanta, GA 30301" -187402,Lightning Charging Cable,1,14.95,04/14/19 03:06,"236 2nd St, San Francisco, CA 94016" -187403,AA Batteries (4-pack),2,3.84,04/24/19 10:22,"749 Main St, San Francisco, CA 94016" -187404,Lightning Charging Cable,1,14.95,04/23/19 18:39,"726 River St, San Francisco, CA 94016" -187405,iPhone,1,700,04/11/19 07:33,"95 12th St, Portland, OR 97035" -187405,Lightning Charging Cable,1,14.95,04/11/19 07:33,"95 12th St, Portland, OR 97035" -187406,Wired Headphones,2,11.99,04/16/19 16:22,"504 Walnut St, Boston, MA 02215" -187407,iPhone,1,700,04/01/19 23:59,"229 Park St, Seattle, WA 98101" -187408,Wired Headphones,1,11.99,04/29/19 12:25,"676 12th St, Los Angeles, CA 90001" -187409,AAA Batteries (4-pack),2,2.99,04/21/19 10:07,"266 Johnson St, Seattle, WA 98101" -187410,AA Batteries (4-pack),1,3.84,04/27/19 09:52,"494 10th St, Boston, MA 02215" -187411,USB-C Charging Cable,1,11.95,04/18/19 12:00,"404 Maple St, San Francisco, CA 94016" -187412,Macbook Pro Laptop,1,1700,04/10/19 14:07,"951 Dogwood St, New York City, NY 10001" -187413,27in FHD Monitor,1,149.99,04/07/19 11:28,"508 12th St, Boston, MA 02215" -187414,AAA Batteries (4-pack),1,2.99,04/14/19 18:53,"766 Madison St, San Francisco, CA 94016" -187415,Lightning Charging Cable,1,14.95,04/04/19 17:39,"737 11th St, Los Angeles, CA 90001" -187416,Vareebadd Phone,1,400,04/20/19 12:25,"373 Forest St, Los Angeles, CA 90001" -187417,Lightning Charging Cable,1,14.95,04/13/19 14:43,"33 Lincoln St, Boston, MA 02215" -187418,Lightning Charging Cable,1,14.95,04/18/19 20:09,"122 10th St, San Francisco, CA 94016" -187419,AA Batteries (4-pack),1,3.84,04/22/19 17:52,"159 River St, Los Angeles, CA 90001" -187420,Wired Headphones,1,11.99,04/28/19 10:11,"441 Ridge St, Los Angeles, CA 90001" -187421,AA Batteries (4-pack),1,3.84,04/25/19 18:14,"415 Elm St, New York City, NY 10001" -187422,AA Batteries (4-pack),1,3.84,04/16/19 18:26,"956 Pine St, Dallas, TX 75001" -187423,Vareebadd Phone,1,400,04/01/19 11:49,"786 Hickory St, Seattle, WA 98101" -187423,Wired Headphones,1,11.99,04/01/19 11:49,"786 Hickory St, Seattle, WA 98101" -187424,USB-C Charging Cable,1,11.95,04/15/19 23:40,"182 Jefferson St, Los Angeles, CA 90001" -187425,Wired Headphones,1,11.99,04/05/19 21:12,"892 North St, Austin, TX 73301" -187426,Flatscreen TV,1,300,04/16/19 16:27,"758 2nd St, Los Angeles, CA 90001" -187427,AA Batteries (4-pack),1,3.84,04/22/19 08:06,"819 North St, Portland, OR 97035" -187428,27in 4K Gaming Monitor,1,389.99,04/28/19 13:03,"444 Jackson St, San Francisco, CA 94016" -187429,USB-C Charging Cable,1,11.95,04/11/19 18:00,"247 Madison St, Austin, TX 73301" -187430,20in Monitor,1,109.99,04/26/19 14:18,"16 Highland St, Boston, MA 02215" -187431,ThinkPad Laptop,1,999.99,04/11/19 18:15,"178 12th St, New York City, NY 10001" -187432,34in Ultrawide Monitor,1,379.99,04/12/19 11:57,"116 Main St, San Francisco, CA 94016" -187433,LG Dryer,1,600.0,04/18/19 16:32,"141 Church St, Los Angeles, CA 90001" -187434,USB-C Charging Cable,1,11.95,04/07/19 21:55,"318 Cedar St, Portland, OR 97035" -187435,AAA Batteries (4-pack),4,2.99,04/03/19 21:29,"814 9th St, Portland, OR 97035" -187436,USB-C Charging Cable,1,11.95,04/18/19 09:13,"982 Walnut St, Boston, MA 02215" -187437,Flatscreen TV,1,300,04/15/19 21:57,"732 5th St, Boston, MA 02215" -187438,Bose SoundSport Headphones,1,99.99,04/06/19 12:55,"500 2nd St, San Francisco, CA 94016" -187439,Apple Airpods Headphones,1,150,04/23/19 14:09,"732 5th St, San Francisco, CA 94016" -187440,AAA Batteries (4-pack),1,2.99,04/19/19 08:00,"384 7th St, San Francisco, CA 94016" -187441,20in Monitor,1,109.99,04/22/19 14:25,"757 Spruce St, Dallas, TX 75001" -187442,Vareebadd Phone,1,400,04/20/19 03:39,"978 West St, San Francisco, CA 94016" -187442,USB-C Charging Cable,1,11.95,04/20/19 03:39,"978 West St, San Francisco, CA 94016" -187443,Bose SoundSport Headphones,1,99.99,04/01/19 14:25,"495 5th St, San Francisco, CA 94016" -187444,AA Batteries (4-pack),1,3.84,04/20/19 16:57,"512 North St, Los Angeles, CA 90001" -187445,Wired Headphones,1,11.99,04/24/19 22:45,"468 Meadow St, Los Angeles, CA 90001" -187446,27in 4K Gaming Monitor,1,389.99,04/06/19 02:05,"649 North St, Seattle, WA 98101" -187447,AA Batteries (4-pack),1,3.84,04/20/19 13:09,"758 North St, New York City, NY 10001" -187448,USB-C Charging Cable,1,11.95,04/14/19 17:21,"798 Washington St, Atlanta, GA 30301" -187449,AA Batteries (4-pack),1,3.84,04/18/19 23:59,"598 10th St, Boston, MA 02215" -187450,27in FHD Monitor,1,149.99,04/29/19 18:02,"334 5th St, Boston, MA 02215" -187451,Bose SoundSport Headphones,1,99.99,04/10/19 16:04,"994 West St, Los Angeles, CA 90001" -187452,Wired Headphones,1,11.99,04/05/19 16:35,"570 4th St, San Francisco, CA 94016" -187453,Apple Airpods Headphones,1,150,04/29/19 10:02,"813 7th St, San Francisco, CA 94016" -187453,Bose SoundSport Headphones,1,99.99,04/29/19 10:02,"813 7th St, San Francisco, CA 94016" -187454,27in 4K Gaming Monitor,1,389.99,04/06/19 22:12,"45 Adams St, New York City, NY 10001" -187455,Flatscreen TV,1,300,04/19/19 21:23,"371 Pine St, New York City, NY 10001" -187456,AA Batteries (4-pack),2,3.84,04/09/19 16:58,"204 Pine St, Dallas, TX 75001" -187457,Bose SoundSport Headphones,1,99.99,04/24/19 11:20,"243 River St, San Francisco, CA 94016" -187458,34in Ultrawide Monitor,1,379.99,04/10/19 11:05,"290 Highland St, San Francisco, CA 94016" -187459,34in Ultrawide Monitor,1,379.99,04/28/19 17:14,"828 Hickory St, New York City, NY 10001" -187460,Macbook Pro Laptop,1,1700,04/16/19 16:52,"187 Hickory St, Seattle, WA 98101" -187461,Lightning Charging Cable,1,14.95,04/22/19 23:01,"277 Adams St, New York City, NY 10001" -187462,USB-C Charging Cable,1,11.95,04/05/19 20:13,"574 14th St, San Francisco, CA 94016" -187463,Google Phone,1,600,04/11/19 08:16,"842 Madison St, Los Angeles, CA 90001" -187463,USB-C Charging Cable,1,11.95,04/11/19 08:16,"842 Madison St, Los Angeles, CA 90001" -187463,Wired Headphones,1,11.99,04/11/19 08:16,"842 Madison St, Los Angeles, CA 90001" -187464,iPhone,1,700,04/05/19 22:30,"460 Center St, Austin, TX 73301" -187464,Lightning Charging Cable,1,14.95,04/05/19 22:30,"460 Center St, Austin, TX 73301" -187465,27in 4K Gaming Monitor,1,389.99,04/29/19 09:24,"296 North St, San Francisco, CA 94016" -187466,AAA Batteries (4-pack),1,2.99,04/13/19 11:45,"401 Cherry St, Dallas, TX 75001" -187467,AA Batteries (4-pack),3,3.84,04/13/19 11:50,"747 Center St, New York City, NY 10001" -187468,AAA Batteries (4-pack),1,2.99,04/15/19 20:08,"803 Washington St, New York City, NY 10001" -187469,Apple Airpods Headphones,1,150,04/27/19 19:09,"173 14th St, Los Angeles, CA 90001" -187469,Lightning Charging Cable,1,14.95,04/27/19 19:09,"173 14th St, Los Angeles, CA 90001" -187470,USB-C Charging Cable,1,11.95,04/14/19 16:07,"80 Maple St, Atlanta, GA 30301" -187471,Bose SoundSport Headphones,1,99.99,04/21/19 12:00,"771 Highland St, San Francisco, CA 94016" -187472,20in Monitor,1,109.99,04/20/19 16:02,"607 Lake St, Los Angeles, CA 90001" -187473,Wired Headphones,1,11.99,04/05/19 19:22,"597 Washington St, Portland, OR 97035" -187474,Bose SoundSport Headphones,1,99.99,04/17/19 09:20,"926 Cherry St, San Francisco, CA 94016" -187475,AAA Batteries (4-pack),3,2.99,04/02/19 14:05,"859 Wilson St, Los Angeles, CA 90001" -187476,Lightning Charging Cable,1,14.95,04/25/19 00:59,"429 Washington St, Boston, MA 02215" -187477,AA Batteries (4-pack),2,3.84,04/26/19 08:58,"941 Sunset St, Atlanta, GA 30301" -,,,,, -187478,ThinkPad Laptop,1,999.99,04/24/19 15:08,"680 Dogwood St, Boston, MA 02215" -187479,AAA Batteries (4-pack),1,2.99,04/01/19 21:51,"237 Church St, Boston, MA 02215" -187480,Bose SoundSport Headphones,1,99.99,04/24/19 09:25,"700 Hill St, Los Angeles, CA 90001" -187481,Macbook Pro Laptop,1,1700,04/13/19 09:18,"979 Forest St, Seattle, WA 98101" -187482,Flatscreen TV,1,300,04/19/19 12:52,"209 Meadow St, San Francisco, CA 94016" -187483,AA Batteries (4-pack),1,3.84,04/13/19 20:53,"813 Jackson St, San Francisco, CA 94016" -187484,27in 4K Gaming Monitor,1,389.99,04/20/19 06:21,"651 Wilson St, San Francisco, CA 94016" -187485,AAA Batteries (4-pack),2,2.99,04/06/19 22:46,"480 Adams St, Atlanta, GA 30301" -187486,27in FHD Monitor,1,149.99,04/26/19 08:25,"105 Spruce St, Seattle, WA 98101" -187487,Apple Airpods Headphones,1,150,04/02/19 15:40,"377 8th St, Dallas, TX 75001" -187488,27in 4K Gaming Monitor,1,389.99,04/25/19 15:22,"420 9th St, San Francisco, CA 94016" -187489,ThinkPad Laptop,1,999.99,04/18/19 12:38,"365 Lincoln St, Boston, MA 02215" -187490,Bose SoundSport Headphones,1,99.99,04/13/19 19:27,"799 Pine St, Los Angeles, CA 90001" -187491,20in Monitor,1,109.99,04/16/19 21:54,"719 10th St, Los Angeles, CA 90001" -187492,USB-C Charging Cable,2,11.95,04/18/19 20:12,"845 South St, Seattle, WA 98101" -187493,Lightning Charging Cable,1,14.95,04/08/19 16:02,"232 Forest St, San Francisco, CA 94016" -187494,27in 4K Gaming Monitor,1,389.99,04/04/19 16:40,"708 Pine St, Portland, OR 97035" -187495,27in FHD Monitor,1,149.99,04/17/19 14:17,"218 9th St, San Francisco, CA 94016" -187496,Macbook Pro Laptop,1,1700,04/12/19 15:12,"645 Maple St, New York City, NY 10001" -187497,Wired Headphones,1,11.99,04/18/19 13:53,"388 2nd St, Portland, OR 97035" -187498,Apple Airpods Headphones,1,150,04/27/19 13:26,"361 12th St, Portland, ME 04101" -187499,AA Batteries (4-pack),1,3.84,04/22/19 19:17,"350 South St, Los Angeles, CA 90001" -187500,Lightning Charging Cable,1,14.95,04/28/19 21:33,"158 Main St, Portland, OR 97035" -187501,Bose SoundSport Headphones,1,99.99,04/08/19 00:58,"959 Pine St, San Francisco, CA 94016" -187502,USB-C Charging Cable,1,11.95,04/10/19 19:21,"705 Lake St, San Francisco, CA 94016" -187503,Flatscreen TV,1,300,04/09/19 21:03,"128 Adams St, Austin, TX 73301" -187504,Apple Airpods Headphones,1,150,04/06/19 21:55,"312 Lakeview St, Los Angeles, CA 90001" -187505,AA Batteries (4-pack),3,3.84,04/14/19 11:40,"752 Ridge St, Atlanta, GA 30301" -187506,AA Batteries (4-pack),2,3.84,04/01/19 17:33,"938 Jackson St, Dallas, TX 75001" -187507,AAA Batteries (4-pack),2,2.99,04/06/19 08:38,"624 River St, San Francisco, CA 94016" -187508,USB-C Charging Cable,1,11.95,04/10/19 18:54,"875 River St, Boston, MA 02215" -187509,20in Monitor,1,109.99,04/27/19 17:39,"447 10th St, Seattle, WA 98101" -187510,AAA Batteries (4-pack),4,2.99,04/05/19 10:51,"602 Hill St, Seattle, WA 98101" -187511,27in FHD Monitor,1,149.99,04/09/19 15:32,"930 Willow St, Atlanta, GA 30301" -187512,USB-C Charging Cable,1,11.95,04/10/19 17:51,"811 6th St, San Francisco, CA 94016" -187513,34in Ultrawide Monitor,1,379.99,04/16/19 18:48,"507 6th St, Los Angeles, CA 90001" -187514,Wired Headphones,1,11.99,04/08/19 20:43,"1 Jackson St, New York City, NY 10001" -187515,Lightning Charging Cable,2,14.95,04/19/19 13:23,"670 Ridge St, Atlanta, GA 30301" -187516,34in Ultrawide Monitor,1,379.99,04/30/19 14:35,"188 Willow St, Dallas, TX 75001" -187517,iPhone,1,700,04/17/19 08:58,"689 9th St, Dallas, TX 75001" -187518,iPhone,1,700,04/22/19 11:36,"114 11th St, San Francisco, CA 94016" -187519,Wired Headphones,1,11.99,04/17/19 15:39,"116 Hickory St, Seattle, WA 98101" -187520,AAA Batteries (4-pack),1,2.99,04/24/19 13:31,"451 Main St, New York City, NY 10001" -187521,iPhone,1,700,04/02/19 18:46,"535 14th St, Los Angeles, CA 90001" -187522,AAA Batteries (4-pack),1,2.99,04/17/19 19:32,"667 Johnson St, San Francisco, CA 94016" -187523,Bose SoundSport Headphones,1,99.99,04/10/19 06:43,"470 14th St, San Francisco, CA 94016" -187524,AA Batteries (4-pack),1,3.84,04/14/19 16:04,"35 Hill St, San Francisco, CA 94016" -187525,Apple Airpods Headphones,1,150,04/09/19 22:21,"612 8th St, Los Angeles, CA 90001" -187526,AA Batteries (4-pack),2,3.84,04/18/19 13:27,"410 North St, San Francisco, CA 94016" -187527,AA Batteries (4-pack),1,3.84,04/04/19 14:57,"315 Forest St, Dallas, TX 75001" -187528,27in FHD Monitor,1,149.99,04/15/19 08:01,"22 Walnut St, Los Angeles, CA 90001" -187529,ThinkPad Laptop,1,999.99,04/19/19 11:38,"649 Lincoln St, Austin, TX 73301" -187530,34in Ultrawide Monitor,1,379.99,04/23/19 06:23,"809 Lincoln St, San Francisco, CA 94016" -187530,Wired Headphones,1,11.99,04/23/19 06:23,"809 Lincoln St, San Francisco, CA 94016" -187531,Lightning Charging Cable,1,14.95,04/27/19 23:41,"747 Elm St, San Francisco, CA 94016" -187532,27in 4K Gaming Monitor,1,389.99,04/30/19 09:48,"902 6th St, New York City, NY 10001" -187533,AA Batteries (4-pack),2,3.84,04/27/19 02:14,"356 14th St, Los Angeles, CA 90001" -187534,Google Phone,1,600,04/01/19 09:39,"312 Church St, Atlanta, GA 30301" -187534,Lightning Charging Cable,1,14.95,04/01/19 09:39,"312 Church St, Atlanta, GA 30301" -187535,Lightning Charging Cable,1,14.95,04/09/19 13:56,"83 8th St, Austin, TX 73301" -187536,Lightning Charging Cable,1,14.95,04/28/19 18:57,"286 Center St, San Francisco, CA 94016" -187537,Lightning Charging Cable,1,14.95,04/12/19 19:40,"871 Ridge St, New York City, NY 10001" -187538,20in Monitor,1,109.99,04/19/19 17:24,"185 Spruce St, Dallas, TX 75001" -187539,27in FHD Monitor,1,149.99,04/17/19 21:28,"211 West St, Boston, MA 02215" -187540,Lightning Charging Cable,1,14.95,04/17/19 10:40,"309 Lincoln St, Portland, ME 04101" -187541,Wired Headphones,1,11.99,04/25/19 22:21,"251 Walnut St, New York City, NY 10001" -187542,AAA Batteries (4-pack),2,2.99,04/27/19 18:08,"590 Cherry St, Boston, MA 02215" -187543,27in FHD Monitor,1,149.99,04/19/19 19:42,"282 Cherry St, San Francisco, CA 94016" -187544,Wired Headphones,1,11.99,04/25/19 21:36,"909 9th St, San Francisco, CA 94016" -187545,34in Ultrawide Monitor,1,379.99,04/24/19 10:51,"175 Willow St, New York City, NY 10001" -187546,USB-C Charging Cable,1,11.95,04/08/19 01:05,"299 Elm St, Los Angeles, CA 90001" -187547,Google Phone,1,600,04/25/19 09:43,"687 West St, Atlanta, GA 30301" -187547,Wired Headphones,1,11.99,04/25/19 09:43,"687 West St, Atlanta, GA 30301" -187548,Flatscreen TV,1,300,04/12/19 22:13,"200 Center St, Seattle, WA 98101" -187549,Lightning Charging Cable,1,14.95,04/23/19 22:12,"330 Meadow St, San Francisco, CA 94016" -187550,27in FHD Monitor,1,149.99,04/19/19 16:48,"685 Jackson St, San Francisco, CA 94016" -187551,AAA Batteries (4-pack),1,2.99,04/25/19 09:39,"275 Chestnut St, New York City, NY 10001" -187552,Lightning Charging Cable,1,14.95,04/17/19 11:01,"243 8th St, Los Angeles, CA 90001" -187553,Wired Headphones,2,11.99,04/08/19 17:19,"18 Wilson St, Portland, OR 97035" -187554,Bose SoundSport Headphones,1,99.99,04/24/19 06:56,"320 5th St, San Francisco, CA 94016" -187555,Apple Airpods Headphones,1,150,04/30/19 20:13,"968 Center St, Atlanta, GA 30301" -187556,AAA Batteries (4-pack),1,2.99,04/26/19 16:44,"239 Madison St, Los Angeles, CA 90001" -187557,ThinkPad Laptop,1,999.99,04/29/19 09:23,"161 Walnut St, Austin, TX 73301" -187558,Apple Airpods Headphones,1,150,04/25/19 23:15,"950 Chestnut St, Portland, OR 97035" -187559,iPhone,1,700,04/01/19 09:12,"828 Washington St, San Francisco, CA 94016" -187560,Bose SoundSport Headphones,1,99.99,04/23/19 16:53,"258 6th St, Atlanta, GA 30301" -187561,Apple Airpods Headphones,1,150,04/21/19 05:37,"876 10th St, Boston, MA 02215" -187562,AAA Batteries (4-pack),1,2.99,04/24/19 18:09,"760 Spruce St, Los Angeles, CA 90001" -187563,Flatscreen TV,1,300,04/19/19 20:27,"191 6th St, Los Angeles, CA 90001" -187564,AAA Batteries (4-pack),1,2.99,04/14/19 13:50,"940 River St, Atlanta, GA 30301" -187565,Macbook Pro Laptop,1,1700,04/29/19 14:19,"35 13th St, Portland, ME 04101" -187566,Lightning Charging Cable,1,14.95,04/21/19 06:38,"759 Wilson St, Atlanta, GA 30301" -187567,AAA Batteries (4-pack),3,2.99,04/16/19 20:44,"855 Highland St, New York City, NY 10001" -187568,Lightning Charging Cable,1,14.95,04/08/19 07:12,"735 10th St, Los Angeles, CA 90001" -187569,27in FHD Monitor,1,149.99,04/20/19 11:15,"450 Johnson St, Atlanta, GA 30301" -187570,Lightning Charging Cable,1,14.95,04/07/19 10:23,"800 Madison St, San Francisco, CA 94016" -187571,34in Ultrawide Monitor,1,379.99,04/13/19 23:32,"427 1st St, Seattle, WA 98101" -,,,,, -187572,Wired Headphones,1,11.99,04/01/19 16:15,"215 Elm St, Dallas, TX 75001" -187573,USB-C Charging Cable,1,11.95,04/18/19 21:46,"272 Willow St, Los Angeles, CA 90001" -187574,27in 4K Gaming Monitor,1,389.99,04/18/19 10:15,"836 River St, Boston, MA 02215" -187575,27in FHD Monitor,1,149.99,04/18/19 20:43,"579 Washington St, San Francisco, CA 94016" -187576,Apple Airpods Headphones,1,150,04/23/19 22:31,"144 8th St, San Francisco, CA 94016" -187577,iPhone,1,700,04/10/19 19:20,"727 13th St, San Francisco, CA 94016" -187578,AA Batteries (4-pack),1,3.84,04/12/19 17:37,"393 Lakeview St, San Francisco, CA 94016" -187579,34in Ultrawide Monitor,1,379.99,04/13/19 07:07,"659 Wilson St, San Francisco, CA 94016" -187579,AA Batteries (4-pack),1,3.84,04/13/19 07:07,"659 Wilson St, San Francisco, CA 94016" -187580,Wired Headphones,1,11.99,04/16/19 17:08,"685 8th St, Austin, TX 73301" -187581,AAA Batteries (4-pack),2,2.99,04/18/19 23:55,"462 Center St, Los Angeles, CA 90001" -187582,AAA Batteries (4-pack),2,2.99,04/23/19 19:47,"634 12th St, Atlanta, GA 30301" -187583,AAA Batteries (4-pack),1,2.99,04/21/19 14:26,"325 Main St, Atlanta, GA 30301" -187584,27in 4K Gaming Monitor,1,389.99,04/19/19 11:54,"160 Hickory St, Dallas, TX 75001" -187585,Apple Airpods Headphones,1,150,04/07/19 15:54,"840 Lincoln St, Los Angeles, CA 90001" -187586,AAA Batteries (4-pack),2,2.99,04/30/19 09:54,"885 Church St, Los Angeles, CA 90001" -187587,Bose SoundSport Headphones,1,99.99,04/17/19 09:14,"772 10th St, Portland, OR 97035" -187588,AA Batteries (4-pack),3,3.84,04/17/19 05:29,"80 Main St, Boston, MA 02215" -187589,Flatscreen TV,1,300,04/17/19 08:13,"93 8th St, Atlanta, GA 30301" -187590,AA Batteries (4-pack),1,3.84,04/06/19 03:02,"957 Hickory St, San Francisco, CA 94016" -187591,AA Batteries (4-pack),1,3.84,04/05/19 10:25,"934 4th St, Seattle, WA 98101" -187592,USB-C Charging Cable,2,11.95,04/09/19 18:52,"572 8th St, Dallas, TX 75001" -187593,Lightning Charging Cable,1,14.95,04/19/19 04:56,"389 14th St, Dallas, TX 75001" -187594,AAA Batteries (4-pack),1,2.99,04/13/19 10:42,"505 8th St, San Francisco, CA 94016" -187595,iPhone,1,700,04/28/19 18:26,"628 10th St, Los Angeles, CA 90001" -187596,34in Ultrawide Monitor,1,379.99,04/26/19 20:33,"618 Main St, San Francisco, CA 94016" -187597,34in Ultrawide Monitor,1,379.99,04/07/19 14:23,"306 Forest St, Los Angeles, CA 90001" -187598,Apple Airpods Headphones,1,150,04/13/19 07:35,"793 6th St, New York City, NY 10001" -187599,AA Batteries (4-pack),1,3.84,04/29/19 23:50,"327 Ridge St, San Francisco, CA 94016" -187600,Macbook Pro Laptop,1,1700,04/26/19 22:28,"301 9th St, Atlanta, GA 30301" -187601,Bose SoundSport Headphones,1,99.99,04/14/19 00:25,"528 Johnson St, Portland, OR 97035" -187602,Apple Airpods Headphones,1,150,04/13/19 17:38,"324 Jackson St, Boston, MA 02215" -187603,Vareebadd Phone,1,400,04/15/19 20:26,"739 Meadow St, New York City, NY 10001" -187603,USB-C Charging Cable,1,11.95,04/15/19 20:26,"739 Meadow St, New York City, NY 10001" -187604,27in FHD Monitor,1,149.99,04/23/19 18:59,"533 9th St, Los Angeles, CA 90001" -187605,Flatscreen TV,1,300,04/02/19 23:24,"328 10th St, Seattle, WA 98101" -187605,27in 4K Gaming Monitor,1,389.99,04/02/19 23:24,"328 10th St, Seattle, WA 98101" -187606,Wired Headphones,1,11.99,04/05/19 20:21,"615 6th St, Boston, MA 02215" -187607,AA Batteries (4-pack),1,3.84,04/01/19 21:07,"956 Maple St, Los Angeles, CA 90001" -187608,Lightning Charging Cable,1,14.95,04/19/19 22:02,"950 13th St, Los Angeles, CA 90001" -187609,iPhone,1,700,04/08/19 08:30,"737 9th St, San Francisco, CA 94016" -187609,Lightning Charging Cable,1,14.95,04/08/19 08:30,"737 9th St, San Francisco, CA 94016" -187610,27in 4K Gaming Monitor,1,389.99,04/29/19 23:26,"357 Chestnut St, Los Angeles, CA 90001" -187611,Lightning Charging Cable,1,14.95,04/03/19 20:48,"124 7th St, Atlanta, GA 30301" -187612,Wired Headphones,1,11.99,04/02/19 01:31,"774 Highland St, Los Angeles, CA 90001" -187613,USB-C Charging Cable,1,11.95,04/14/19 10:09,"366 14th St, New York City, NY 10001" -187614,AA Batteries (4-pack),1,3.84,04/27/19 19:03,"26 Church St, Atlanta, GA 30301" -187615,USB-C Charging Cable,1,11.95,04/21/19 19:47,"161 6th St, New York City, NY 10001" -187616,Google Phone,1,600,04/13/19 19:19,"14 Jackson St, San Francisco, CA 94016" -187617,Lightning Charging Cable,1,14.95,04/21/19 10:51,"318 Hill St, Los Angeles, CA 90001" -187618,AAA Batteries (4-pack),1,2.99,04/18/19 13:40,"694 Pine St, San Francisco, CA 94016" -187619,Wired Headphones,1,11.99,04/09/19 19:46,"434 9th St, San Francisco, CA 94016" -187620,27in FHD Monitor,1,149.99,04/14/19 11:57,"629 Wilson St, San Francisco, CA 94016" -187621,Wired Headphones,1,11.99,04/12/19 15:20,"789 2nd St, Dallas, TX 75001" -187622,27in FHD Monitor,1,149.99,04/20/19 16:03,"41 9th St, San Francisco, CA 94016" -187623,USB-C Charging Cable,1,11.95,04/21/19 14:46,"377 River St, San Francisco, CA 94016" -187624,AAA Batteries (4-pack),1,2.99,04/05/19 11:34,"504 Wilson St, San Francisco, CA 94016" -187625,Lightning Charging Cable,1,14.95,04/21/19 10:54,"765 Forest St, Boston, MA 02215" -187626,27in FHD Monitor,1,149.99,04/07/19 22:46,"256 Hickory St, Atlanta, GA 30301" -187627,Wired Headphones,1,11.99,04/06/19 13:08,"417 Johnson St, Portland, OR 97035" -187628,Flatscreen TV,1,300,04/24/19 21:49,"728 Highland St, Dallas, TX 75001" -187629,LG Dryer,1,600.0,04/21/19 17:43,"389 Lakeview St, Atlanta, GA 30301" -187630,Lightning Charging Cable,1,14.95,04/04/19 21:20,"670 Lakeview St, San Francisco, CA 94016" -187631,USB-C Charging Cable,1,11.95,04/11/19 20:59,"312 4th St, San Francisco, CA 94016" -187632,Macbook Pro Laptop,1,1700,04/03/19 12:46,"704 Washington St, San Francisco, CA 94016" -187633,20in Monitor,1,109.99,04/19/19 17:51,"112 Hill St, Seattle, WA 98101" -187634,Lightning Charging Cable,1,14.95,04/25/19 12:13,"797 Pine St, San Francisco, CA 94016" -187635,AA Batteries (4-pack),1,3.84,04/20/19 15:41,"967 9th St, Los Angeles, CA 90001" -187636,iPhone,1,700,04/04/19 10:58,"516 South St, Boston, MA 02215" -187636,Lightning Charging Cable,1,14.95,04/04/19 10:58,"516 South St, Boston, MA 02215" -187636,Wired Headphones,1,11.99,04/04/19 10:58,"516 South St, Boston, MA 02215" -187637,USB-C Charging Cable,1,11.95,04/23/19 14:10,"21 Dogwood St, San Francisco, CA 94016" -187638,34in Ultrawide Monitor,1,379.99,04/29/19 15:54,"637 Jefferson St, Portland, OR 97035" -187639,Macbook Pro Laptop,1,1700,04/29/19 01:13,"533 Maple St, Boston, MA 02215" -187640,AA Batteries (4-pack),1,3.84,04/04/19 18:26,"66 Ridge St, San Francisco, CA 94016" -187641,Lightning Charging Cable,1,14.95,04/01/19 17:42,"921 Chestnut St, Boston, MA 02215" -187642,Flatscreen TV,1,300,04/12/19 12:43,"281 Maple St, Austin, TX 73301" -187643,20in Monitor,1,109.99,04/10/19 15:07,"912 1st St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -187644,AAA Batteries (4-pack),1,2.99,04/21/19 21:19,"653 Ridge St, Portland, OR 97035" -187645,AAA Batteries (4-pack),1,2.99,04/08/19 05:40,"729 Adams St, San Francisco, CA 94016" -187646,USB-C Charging Cable,1,11.95,04/12/19 14:15,"60 Wilson St, Atlanta, GA 30301" -187647,Google Phone,1,600,04/21/19 13:44,"852 Highland St, Austin, TX 73301" -187647,USB-C Charging Cable,1,11.95,04/21/19 13:44,"852 Highland St, Austin, TX 73301" -187648,AA Batteries (4-pack),1,3.84,04/28/19 15:50,"281 Highland St, New York City, NY 10001" -187649,Lightning Charging Cable,1,14.95,04/02/19 20:35,"689 Washington St, San Francisco, CA 94016" -187650,AA Batteries (4-pack),1,3.84,04/07/19 10:48,"651 Wilson St, Los Angeles, CA 90001" -187651,Wired Headphones,1,11.99,04/04/19 18:05,"55 Madison St, San Francisco, CA 94016" -187652,AA Batteries (4-pack),1,3.84,04/13/19 19:59,"589 Elm St, New York City, NY 10001" -187653,Lightning Charging Cable,1,14.95,04/11/19 20:30,"865 Cherry St, Los Angeles, CA 90001" -187654,AAA Batteries (4-pack),1,2.99,04/17/19 06:49,"569 10th St, Seattle, WA 98101" -187655,USB-C Charging Cable,1,11.95,04/23/19 18:20,"763 Center St, Portland, ME 04101" -187656,AA Batteries (4-pack),3,3.84,04/23/19 16:44,"376 6th St, Portland, OR 97035" -187657,Macbook Pro Laptop,1,1700,04/19/19 20:52,"605 Sunset St, Los Angeles, CA 90001" -187658,AA Batteries (4-pack),1,3.84,04/26/19 11:41,"668 Center St, Atlanta, GA 30301" -187659,27in FHD Monitor,1,149.99,04/16/19 13:55,"509 5th St, San Francisco, CA 94016" -187660,Flatscreen TV,1,300,04/28/19 15:03,"902 7th St, Atlanta, GA 30301" -187661,AA Batteries (4-pack),1,3.84,04/13/19 17:56,"653 Lakeview St, New York City, NY 10001" -187662,Lightning Charging Cable,1,14.95,04/05/19 19:00,"78 Lakeview St, Dallas, TX 75001" -187663,Lightning Charging Cable,2,14.95,04/03/19 12:29,"5 Hickory St, Boston, MA 02215" -187664,34in Ultrawide Monitor,1,379.99,04/13/19 12:24,"322 Hill St, Portland, OR 97035" -187665,Wired Headphones,1,11.99,04/20/19 16:37,"994 Lincoln St, New York City, NY 10001" -187666,Wired Headphones,1,11.99,04/17/19 09:14,"682 South St, San Francisco, CA 94016" -187667,Lightning Charging Cable,1,14.95,04/10/19 11:44,"584 12th St, Los Angeles, CA 90001" -187668,Lightning Charging Cable,1,14.95,04/15/19 16:39,"686 Cherry St, New York City, NY 10001" -187669,Lightning Charging Cable,1,14.95,04/11/19 11:33,"42 Highland St, Los Angeles, CA 90001" -187670,Wired Headphones,1,11.99,04/01/19 21:50,"928 Ridge St, San Francisco, CA 94016" -187671,27in FHD Monitor,1,149.99,04/02/19 03:04,"44 Sunset St, Los Angeles, CA 90001" -187672,iPhone,1,700,04/10/19 15:15,"836 Sunset St, Boston, MA 02215" -187673,AA Batteries (4-pack),2,3.84,04/12/19 18:31,"772 Meadow St, San Francisco, CA 94016" -187674,Apple Airpods Headphones,1,150,04/21/19 21:55,"755 14th St, Portland, OR 97035" -187675,AAA Batteries (4-pack),1,2.99,04/12/19 07:41,"999 North St, Seattle, WA 98101" -187676,Wired Headphones,1,11.99,04/02/19 22:26,"930 Chestnut St, Boston, MA 02215" -187677,34in Ultrawide Monitor,1,379.99,04/29/19 13:55,"578 6th St, Austin, TX 73301" -187678,iPhone,1,700,04/13/19 19:26,"833 Main St, New York City, NY 10001" -187679,27in 4K Gaming Monitor,1,389.99,04/17/19 10:35,"222 Hill St, San Francisco, CA 94016" -187680,Bose SoundSport Headphones,1,99.99,04/05/19 18:03,"620 6th St, New York City, NY 10001" -187681,Wired Headphones,1,11.99,04/21/19 20:14,"810 Jefferson St, New York City, NY 10001" -187682,Lightning Charging Cable,1,14.95,04/09/19 17:54,"729 River St, Atlanta, GA 30301" -187683,AAA Batteries (4-pack),1,2.99,04/15/19 23:45,"144 Hill St, Los Angeles, CA 90001" -187684,27in FHD Monitor,1,149.99,04/02/19 12:24,"990 Park St, Atlanta, GA 30301" -187685,AA Batteries (4-pack),1,3.84,04/08/19 13:26,"133 Cherry St, New York City, NY 10001" -187686,Flatscreen TV,1,300,04/05/19 20:33,"113 Center St, San Francisco, CA 94016" -187687,Google Phone,1,600,04/16/19 16:00,"866 7th St, San Francisco, CA 94016" -187688,Wired Headphones,1,11.99,04/13/19 22:14,"199 14th St, Boston, MA 02215" -187689,Macbook Pro Laptop,1,1700,04/01/19 10:27,"195 Walnut St, Los Angeles, CA 90001" -187690,AA Batteries (4-pack),1,3.84,04/06/19 18:23,"961 11th St, Seattle, WA 98101" -187691,Apple Airpods Headphones,1,150,04/30/19 10:14,"986 Main St, San Francisco, CA 94016" -187692,Lightning Charging Cable,1,14.95,04/06/19 09:09,"592 Johnson St, Seattle, WA 98101" -187693,Lightning Charging Cable,1,14.95,04/14/19 13:41,"678 Meadow St, Los Angeles, CA 90001" -187694,AA Batteries (4-pack),1,3.84,04/15/19 14:20,"898 North St, New York City, NY 10001" -187695,Lightning Charging Cable,1,14.95,04/18/19 23:51,"227 Spruce St, San Francisco, CA 94016" -187696,34in Ultrawide Monitor,1,379.99,04/16/19 20:52,"688 8th St, Seattle, WA 98101" -187697,Wired Headphones,1,11.99,04/11/19 21:15,"610 Hickory St, Atlanta, GA 30301" -187697,iPhone,1,700,04/11/19 21:15,"610 Hickory St, Atlanta, GA 30301" -187698,Wired Headphones,1,11.99,04/10/19 16:22,"765 Lake St, San Francisco, CA 94016" -187699,Lightning Charging Cable,1,14.95,04/07/19 18:32,"327 Dogwood St, New York City, NY 10001" -187700,Wired Headphones,1,11.99,04/30/19 14:17,"111 Meadow St, Atlanta, GA 30301" -187701,Wired Headphones,1,11.99,04/06/19 14:19,"337 10th St, Los Angeles, CA 90001" -187702,Wired Headphones,1,11.99,04/09/19 10:14,"381 2nd St, Seattle, WA 98101" -187703,iPhone,1,700,04/06/19 19:12,"228 Cedar St, Austin, TX 73301" -187703,Apple Airpods Headphones,1,150,04/06/19 19:12,"228 Cedar St, Austin, TX 73301" -187704,Apple Airpods Headphones,1,150,04/22/19 13:41,"762 Center St, Portland, OR 97035" -187705,34in Ultrawide Monitor,1,379.99,04/03/19 14:37,"917 1st St, Boston, MA 02215" -187706,Lightning Charging Cable,1,14.95,04/28/19 17:33,"747 North St, New York City, NY 10001" -187707,Wired Headphones,1,11.99,04/10/19 12:18,"513 Johnson St, San Francisco, CA 94016" -187708,20in Monitor,1,109.99,04/22/19 11:09,"686 Lakeview St, San Francisco, CA 94016" -187709,Lightning Charging Cable,1,14.95,04/21/19 18:02,"287 8th St, New York City, NY 10001" -187710,AA Batteries (4-pack),1,3.84,04/09/19 20:00,"874 Park St, San Francisco, CA 94016" -187711,Google Phone,1,600,04/30/19 23:34,"755 Adams St, San Francisco, CA 94016" -187712,34in Ultrawide Monitor,1,379.99,04/16/19 09:01,"930 River St, San Francisco, CA 94016" -187713,USB-C Charging Cable,1,11.95,04/26/19 05:29,"998 Adams St, Austin, TX 73301" -187713,Flatscreen TV,1,300,04/26/19 05:29,"998 Adams St, Austin, TX 73301" -187714,AA Batteries (4-pack),1,3.84,04/01/19 18:22,"418 Maple St, Atlanta, GA 30301" -187715,AA Batteries (4-pack),1,3.84,04/18/19 15:41,"304 Cedar St, Austin, TX 73301" -187716,USB-C Charging Cable,1,11.95,04/15/19 08:39,"722 7th St, Austin, TX 73301" -187717,Lightning Charging Cable,1,14.95,04/17/19 19:08,"324 1st St, San Francisco, CA 94016" -187718,USB-C Charging Cable,1,11.95,04/29/19 21:14,"731 14th St, New York City, NY 10001" -187719,Apple Airpods Headphones,1,150,04/25/19 09:43,"211 Adams St, San Francisco, CA 94016" -187720,Bose SoundSport Headphones,1,99.99,04/17/19 09:45,"462 10th St, Dallas, TX 75001" -187721,AA Batteries (4-pack),1,3.84,04/21/19 07:18,"835 1st St, Los Angeles, CA 90001" -187722,Lightning Charging Cable,1,14.95,04/18/19 16:18,"440 8th St, Seattle, WA 98101" -187723,Apple Airpods Headphones,1,150,04/03/19 09:05,"382 Meadow St, New York City, NY 10001" -187724,ThinkPad Laptop,1,999.99,04/23/19 13:44,"965 Hill St, Boston, MA 02215" -187725,AA Batteries (4-pack),2,3.84,04/02/19 10:44,"247 Johnson St, Atlanta, GA 30301" -187726,AA Batteries (4-pack),1,3.84,04/16/19 14:30,"358 8th St, Los Angeles, CA 90001" -187727,Bose SoundSport Headphones,1,99.99,04/27/19 04:19,"845 Church St, Atlanta, GA 30301" -187728,AAA Batteries (4-pack),3,2.99,04/02/19 14:29,"430 Park St, San Francisco, CA 94016" -187729,Lightning Charging Cable,1,14.95,04/16/19 21:16,"75 Cedar St, New York City, NY 10001" -187730,Bose SoundSport Headphones,1,99.99,04/17/19 19:05,"259 Forest St, Los Angeles, CA 90001" -187731,Wired Headphones,1,11.99,04/21/19 21:30,"288 13th St, San Francisco, CA 94016" -187732,Lightning Charging Cable,1,14.95,04/28/19 21:56,"404 Park St, Portland, OR 97035" -187733,Wired Headphones,1,11.99,04/25/19 12:03,"380 Walnut St, Los Angeles, CA 90001" -187734,20in Monitor,1,109.99,04/26/19 21:02,"465 Hickory St, San Francisco, CA 94016" -187735,Lightning Charging Cable,1,14.95,04/23/19 23:12,"377 Lincoln St, New York City, NY 10001" -187736,27in 4K Gaming Monitor,1,389.99,04/08/19 15:07,"548 10th St, Dallas, TX 75001" -187737,Wired Headphones,1,11.99,04/21/19 17:43,"908 2nd St, San Francisco, CA 94016" -187738,AAA Batteries (4-pack),1,2.99,04/15/19 20:52,"829 Walnut St, New York City, NY 10001" -187739,USB-C Charging Cable,1,11.95,04/20/19 09:28,"973 Johnson St, Austin, TX 73301" -187740,AA Batteries (4-pack),3,3.84,04/30/19 01:58,"77 South St, Atlanta, GA 30301" -187741,Google Phone,1,600,04/09/19 14:13,"510 Ridge St, San Francisco, CA 94016" -187741,27in FHD Monitor,1,149.99,04/09/19 14:13,"510 Ridge St, San Francisco, CA 94016" -187742,Google Phone,1,600,04/24/19 19:24,"224 Cherry St, New York City, NY 10001" -187743,ThinkPad Laptop,1,999.99,04/18/19 14:26,"475 Cherry St, Seattle, WA 98101" -187744,AA Batteries (4-pack),1,3.84,04/19/19 11:22,"886 Pine St, Los Angeles, CA 90001" -187745,Lightning Charging Cable,1,14.95,04/01/19 12:42,"155 Hill St, San Francisco, CA 94016" -187746,Lightning Charging Cable,1,14.95,04/17/19 22:47,"605 Dogwood St, Austin, TX 73301" -187747,20in Monitor,1,109.99,04/21/19 11:23,"957 Park St, Los Angeles, CA 90001" -187748,Wired Headphones,2,11.99,04/25/19 18:55,"51 Church St, San Francisco, CA 94016" -187749,34in Ultrawide Monitor,1,379.99,04/28/19 15:24,"90 Jackson St, Portland, OR 97035" -187750,iPhone,1,700,04/10/19 18:34,"221 7th St, San Francisco, CA 94016" -187751,AAA Batteries (4-pack),2,2.99,04/02/19 11:15,"610 Lakeview St, Los Angeles, CA 90001" -187752,20in Monitor,1,109.99,04/20/19 17:40,"699 Jefferson St, Austin, TX 73301" -187753,AAA Batteries (4-pack),1,2.99,04/07/19 19:41,"570 12th St, Atlanta, GA 30301" -187754,iPhone,1,700,04/03/19 11:45,"75 7th St, Atlanta, GA 30301" -187755,27in FHD Monitor,1,149.99,04/14/19 02:29,"420 Sunset St, Boston, MA 02215" -187756,USB-C Charging Cable,1,11.95,04/09/19 22:34,"810 Cherry St, San Francisco, CA 94016" -187757,USB-C Charging Cable,1,11.95,04/09/19 17:09,"945 Hickory St, New York City, NY 10001" -187758,Wired Headphones,1,11.99,04/24/19 19:49,"796 Meadow St, New York City, NY 10001" -187759,AA Batteries (4-pack),1,3.84,04/17/19 00:22,"21 6th St, Austin, TX 73301" -187760,Google Phone,1,600,04/10/19 08:20,"764 Madison St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -187761,Wired Headphones,1,11.99,04/26/19 12:10,"371 Chestnut St, Los Angeles, CA 90001" -187762,AAA Batteries (4-pack),1,2.99,04/30/19 19:23,"255 Cherry St, San Francisco, CA 94016" -187763,AA Batteries (4-pack),1,3.84,04/21/19 14:44,"335 1st St, Los Angeles, CA 90001" -,,,,, -187764,Wired Headphones,1,11.99,04/20/19 14:16,"695 Jackson St, Dallas, TX 75001" -187765,Lightning Charging Cable,1,14.95,04/24/19 12:40,"232 Church St, Seattle, WA 98101" -187766,AAA Batteries (4-pack),1,2.99,04/16/19 23:49,"561 11th St, Los Angeles, CA 90001" -187767,Macbook Pro Laptop,1,1700,04/11/19 17:19,"351 Forest St, Dallas, TX 75001" -187768,Apple Airpods Headphones,1,150,04/20/19 13:50,"137 11th St, San Francisco, CA 94016" -187769,Bose SoundSport Headphones,1,99.99,04/03/19 07:43,"717 13th St, San Francisco, CA 94016" -187770,Wired Headphones,1,11.99,04/23/19 18:11,"938 Center St, Los Angeles, CA 90001" -187771,AAA Batteries (4-pack),1,2.99,04/06/19 05:02,"891 Forest St, San Francisco, CA 94016" -187772,USB-C Charging Cable,1,11.95,04/28/19 23:14,"267 Willow St, San Francisco, CA 94016" -187773,Apple Airpods Headphones,1,150,04/21/19 18:29,"224 14th St, Austin, TX 73301" -187774,AAA Batteries (4-pack),1,2.99,04/25/19 19:07,"52 Meadow St, Seattle, WA 98101" -187775,27in FHD Monitor,1,149.99,04/12/19 19:08,"705 Johnson St, San Francisco, CA 94016" -187776,Flatscreen TV,1,300,04/29/19 13:53,"834 4th St, New York City, NY 10001" -187777,27in FHD Monitor,1,149.99,04/11/19 14:06,"283 Cedar St, Atlanta, GA 30301" -187778,Macbook Pro Laptop,1,1700,04/18/19 18:31,"280 Dogwood St, Boston, MA 02215" -187779,AAA Batteries (4-pack),1,2.99,04/29/19 20:48,"783 Maple St, Seattle, WA 98101" -187780,Lightning Charging Cable,1,14.95,04/15/19 08:29,"141 12th St, Los Angeles, CA 90001" -187781,Lightning Charging Cable,1,14.95,04/18/19 07:41,"38 Pine St, Los Angeles, CA 90001" -187782,Google Phone,1,600,04/30/19 08:57,"590 South St, Los Angeles, CA 90001" -187783,Wired Headphones,1,11.99,04/01/19 18:31,"765 Johnson St, Portland, OR 97035" -187784,USB-C Charging Cable,1,11.95,04/15/19 10:51,"928 Willow St, Dallas, TX 75001" -187785,AAA Batteries (4-pack),1,2.99,04/08/19 01:06,"302 Hickory St, Boston, MA 02215" -187786,Apple Airpods Headphones,1,150,04/11/19 16:08,"265 Madison St, San Francisco, CA 94016" -187787,Lightning Charging Cable,1,14.95,04/01/19 11:52,"684 Johnson St, San Francisco, CA 94016" -187788,Apple Airpods Headphones,1,150,04/04/19 18:38,"411 Adams St, Atlanta, GA 30301" -187789,AAA Batteries (4-pack),1,2.99,04/13/19 13:32,"686 West St, Dallas, TX 75001" -187790,AAA Batteries (4-pack),1,2.99,04/08/19 19:09,"21 Meadow St, Boston, MA 02215" -187791,AAA Batteries (4-pack),1,2.99,04/27/19 19:01,"671 Spruce St, San Francisco, CA 94016" -187792,20in Monitor,1,109.99,04/13/19 14:15,"327 Maple St, Los Angeles, CA 90001" -187793,AAA Batteries (4-pack),1,2.99,04/06/19 13:46,"689 Lincoln St, San Francisco, CA 94016" -187794,Wired Headphones,1,11.99,04/06/19 20:53,"684 Spruce St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -187795,Lightning Charging Cable,1,14.95,04/30/19 10:47,"696 Willow St, Atlanta, GA 30301" -187796,Bose SoundSport Headphones,1,99.99,04/27/19 22:54,"465 Meadow St, Los Angeles, CA 90001" -187797,Apple Airpods Headphones,1,150,04/28/19 09:22,"747 2nd St, Los Angeles, CA 90001" -187798,AA Batteries (4-pack),1,3.84,04/16/19 07:12,"901 Pine St, Dallas, TX 75001" -187799,USB-C Charging Cable,1,11.95,04/05/19 19:30,"73 Sunset St, Austin, TX 73301" -187800,Flatscreen TV,1,300,04/28/19 16:19,"843 2nd St, Seattle, WA 98101" -187801,USB-C Charging Cable,1,11.95,04/29/19 16:13,"219 7th St, Los Angeles, CA 90001" -187802,Wired Headphones,1,11.99,04/07/19 14:45,"254 Elm St, San Francisco, CA 94016" -187803,Lightning Charging Cable,1,14.95,04/16/19 16:46,"274 Wilson St, Atlanta, GA 30301" -187804,Bose SoundSport Headphones,1,99.99,04/28/19 12:16,"619 14th St, New York City, NY 10001" -187805,Apple Airpods Headphones,1,150,04/27/19 18:39,"910 Jefferson St, Los Angeles, CA 90001" -187806,AAA Batteries (4-pack),3,2.99,04/19/19 18:54,"159 1st St, Los Angeles, CA 90001" -187807,AA Batteries (4-pack),2,3.84,04/20/19 01:38,"156 West St, Atlanta, GA 30301" -187808,34in Ultrawide Monitor,1,379.99,04/07/19 07:29,"154 2nd St, Boston, MA 02215" -187809,27in 4K Gaming Monitor,1,389.99,04/29/19 08:36,"991 Sunset St, New York City, NY 10001" -187810,USB-C Charging Cable,1,11.95,04/24/19 22:21,"442 Dogwood St, San Francisco, CA 94016" -187811,20in Monitor,1,109.99,04/20/19 20:04,"457 River St, Seattle, WA 98101" -187812,Bose SoundSport Headphones,1,99.99,04/15/19 19:53,"824 Willow St, Atlanta, GA 30301" -187813,AA Batteries (4-pack),1,3.84,04/20/19 12:02,"315 Ridge St, Boston, MA 02215" -187814,USB-C Charging Cable,1,11.95,04/07/19 11:13,"742 9th St, Atlanta, GA 30301" -187815,Lightning Charging Cable,1,14.95,04/13/19 02:41,"244 Chestnut St, New York City, NY 10001" -187816,20in Monitor,1,109.99,04/15/19 16:58,"998 Chestnut St, Portland, OR 97035" -187817,Wired Headphones,1,11.99,04/22/19 10:39,"758 11th St, Boston, MA 02215" -187818,27in FHD Monitor,1,149.99,04/18/19 19:32,"922 Park St, San Francisco, CA 94016" -187819,20in Monitor,1,109.99,04/22/19 19:12,"508 8th St, Los Angeles, CA 90001" -187820,Lightning Charging Cable,1,14.95,04/13/19 10:48,"41 Park St, Los Angeles, CA 90001" -187821,ThinkPad Laptop,1,999.99,04/29/19 15:02,"981 Main St, San Francisco, CA 94016" -187822,iPhone,1,700,04/11/19 16:58,"571 Jefferson St, New York City, NY 10001" -187822,Lightning Charging Cable,1,14.95,04/11/19 16:58,"571 Jefferson St, New York City, NY 10001" -187823,Bose SoundSport Headphones,1,99.99,04/08/19 13:09,"701 Johnson St, San Francisco, CA 94016" -187824,AAA Batteries (4-pack),1,2.99,04/22/19 06:25,"203 Main St, Boston, MA 02215" -187825,AAA Batteries (4-pack),2,2.99,04/02/19 03:00,"936 Forest St, Portland, OR 97035" -187826,USB-C Charging Cable,1,11.95,04/01/19 15:10,"312 Church St, San Francisco, CA 94016" -187827,Bose SoundSport Headphones,1,99.99,04/13/19 15:48,"255 Elm St, Austin, TX 73301" -187828,iPhone,1,700,04/23/19 19:20,"376 11th St, Atlanta, GA 30301" -187829,AAA Batteries (4-pack),1,2.99,04/02/19 00:04,"360 West St, Seattle, WA 98101" -187830,Wired Headphones,1,11.99,04/16/19 01:02,"41 Highland St, Portland, ME 04101" -187831,Apple Airpods Headphones,1,150,04/17/19 09:40,"751 Jackson St, Austin, TX 73301" -187832,AA Batteries (4-pack),2,3.84,04/18/19 19:27,"257 Sunset St, Boston, MA 02215" -187833,Lightning Charging Cable,1,14.95,04/22/19 23:25,"183 Lake St, Atlanta, GA 30301" -187834,AA Batteries (4-pack),1,3.84,04/05/19 20:08,"846 Madison St, Dallas, TX 75001" -187835,20in Monitor,1,109.99,04/23/19 08:29,"287 Hickory St, Dallas, TX 75001" -187836,iPhone,1,700,04/13/19 10:36,"364 9th St, San Francisco, CA 94016" -187837,Bose SoundSport Headphones,1,99.99,04/09/19 18:37,"884 4th St, San Francisco, CA 94016" -187838,AAA Batteries (4-pack),1,2.99,04/14/19 15:26,"887 Church St, Los Angeles, CA 90001" -187839,Apple Airpods Headphones,1,150,04/14/19 00:38,"788 Maple St, Los Angeles, CA 90001" -187840,Lightning Charging Cable,1,14.95,04/07/19 10:31,"703 Cherry St, Boston, MA 02215" -187841,AAA Batteries (4-pack),1,2.99,04/06/19 10:45,"216 Chestnut St, Los Angeles, CA 90001" -187842,Apple Airpods Headphones,1,150,04/23/19 11:24,"81 Main St, Dallas, TX 75001" -187843,AAA Batteries (4-pack),1,2.99,04/15/19 16:08,"305 4th St, Seattle, WA 98101" -187844,20in Monitor,1,109.99,04/04/19 21:22,"945 10th St, Atlanta, GA 30301" -187845,20in Monitor,1,109.99,04/28/19 14:31,"761 5th St, Seattle, WA 98101" -187846,USB-C Charging Cable,1,11.95,04/28/19 14:52,"182 7th St, Los Angeles, CA 90001" -187847,AA Batteries (4-pack),1,3.84,04/13/19 15:19,"880 Church St, San Francisco, CA 94016" -187848,iPhone,1,700,04/03/19 16:49,"387 Maple St, Atlanta, GA 30301" -187849,iPhone,1,700,04/25/19 12:54,"39 Chestnut St, Portland, OR 97035" -187850,ThinkPad Laptop,1,999.99,04/05/19 18:26,"559 Main St, Portland, OR 97035" -187851,AAA Batteries (4-pack),6,2.99,04/12/19 00:09,"350 Wilson St, Boston, MA 02215" -187852,USB-C Charging Cable,1,11.95,04/05/19 23:43,"447 1st St, Portland, ME 04101" -187853,iPhone,1,700,04/15/19 18:41,"872 South St, Portland, OR 97035" -187854,Macbook Pro Laptop,1,1700,04/06/19 19:07,"579 Madison St, Portland, OR 97035" -187855,27in FHD Monitor,1,149.99,04/09/19 09:17,"256 Cedar St, Dallas, TX 75001" -187856,Google Phone,1,600,04/25/19 20:18,"432 Lake St, New York City, NY 10001" -187857,AAA Batteries (4-pack),3,2.99,04/23/19 20:40,"384 Hickory St, San Francisco, CA 94016" -187858,AA Batteries (4-pack),1,3.84,04/05/19 10:47,"610 Hickory St, Los Angeles, CA 90001" -187859,AAA Batteries (4-pack),1,2.99,04/05/19 22:02,"455 Elm St, Dallas, TX 75001" -187860,AA Batteries (4-pack),1,3.84,04/13/19 06:37,"195 13th St, New York City, NY 10001" -187861,Flatscreen TV,1,300,04/17/19 17:42,"434 1st St, San Francisco, CA 94016" -187862,34in Ultrawide Monitor,1,379.99,04/20/19 22:48,"105 Adams St, Austin, TX 73301" -187863,AA Batteries (4-pack),2,3.84,04/22/19 17:36,"89 Hickory St, New York City, NY 10001" -187864,Flatscreen TV,1,300,04/28/19 16:48,"884 Jefferson St, San Francisco, CA 94016" -187865,USB-C Charging Cable,1,11.95,04/25/19 17:19,"853 Cherry St, Atlanta, GA 30301" -187866,USB-C Charging Cable,1,11.95,04/05/19 01:05,"71 11th St, San Francisco, CA 94016" -187867,Lightning Charging Cable,1,14.95,04/19/19 08:10,"488 2nd St, Austin, TX 73301" -187868,AAA Batteries (4-pack),1,2.99,04/23/19 01:09,"669 Elm St, Portland, OR 97035" -187869,Wired Headphones,1,11.99,04/06/19 15:50,"329 Park St, Boston, MA 02215" -187870,Lightning Charging Cable,1,14.95,04/28/19 18:52,"498 Hickory St, Los Angeles, CA 90001" -187871,20in Monitor,1,109.99,04/20/19 20:30,"498 Hickory St, New York City, NY 10001" -187872,USB-C Charging Cable,1,11.95,04/03/19 20:44,"237 11th St, Los Angeles, CA 90001" -187872,ThinkPad Laptop,1,999.99,04/03/19 20:44,"237 11th St, Los Angeles, CA 90001" -187873,Bose SoundSport Headphones,1,99.99,04/06/19 19:31,"809 Forest St, Atlanta, GA 30301" -187874,USB-C Charging Cable,1,11.95,04/08/19 22:15,"530 11th St, San Francisco, CA 94016" -187875,Vareebadd Phone,1,400,04/30/19 13:20,"108 Lake St, Seattle, WA 98101" -187876,AA Batteries (4-pack),1,3.84,04/14/19 00:20,"725 Forest St, Austin, TX 73301" -187877,27in FHD Monitor,1,149.99,04/26/19 00:01,"333 Main St, Seattle, WA 98101" -187878,Apple Airpods Headphones,1,150,04/24/19 17:38,"874 Lake St, Austin, TX 73301" -187879,AA Batteries (4-pack),1,3.84,04/02/19 22:11,"724 Center St, Portland, OR 97035" -187880,Apple Airpods Headphones,1,150,04/30/19 11:17,"190 Center St, Atlanta, GA 30301" -187881,ThinkPad Laptop,1,999.99,04/11/19 17:56,"45 11th St, New York City, NY 10001" -187882,34in Ultrawide Monitor,1,379.99,04/13/19 13:55,"863 10th St, Los Angeles, CA 90001" -187883,Google Phone,1,600,04/30/19 16:10,"22 6th St, Portland, OR 97035" -187884,AAA Batteries (4-pack),2,2.99,04/19/19 22:30,"264 Walnut St, Boston, MA 02215" -187885,USB-C Charging Cable,1,11.95,04/15/19 17:56,"932 River St, San Francisco, CA 94016" -187886,Lightning Charging Cable,1,14.95,04/15/19 08:54,"411 Dogwood St, Austin, TX 73301" -187887,Lightning Charging Cable,1,14.95,04/24/19 10:52,"829 South St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -187888,iPhone,1,700,04/30/19 19:20,"387 12th St, San Francisco, CA 94016" -187888,Wired Headphones,2,11.99,04/30/19 19:20,"387 12th St, San Francisco, CA 94016" -187889,USB-C Charging Cable,1,11.95,04/14/19 11:32,"884 Jackson St, Dallas, TX 75001" -187890,Lightning Charging Cable,1,14.95,04/21/19 17:06,"311 River St, Austin, TX 73301" -187891,27in FHD Monitor,1,149.99,04/13/19 16:03,"568 11th St, Atlanta, GA 30301" -187892,Wired Headphones,1,11.99,04/06/19 05:45,"964 Ridge St, San Francisco, CA 94016" -,,,,, -187893,Google Phone,1,600,04/12/19 19:50,"616 8th St, Portland, OR 97035" -187894,27in FHD Monitor,1,149.99,04/28/19 13:06,"42 Highland St, Atlanta, GA 30301" -187895,AA Batteries (4-pack),3,3.84,04/01/19 20:54,"647 14th St, Austin, TX 73301" -187896,Bose SoundSport Headphones,1,99.99,04/15/19 18:49,"482 Church St, Boston, MA 02215" -187897,AAA Batteries (4-pack),1,2.99,04/23/19 18:10,"84 Maple St, Los Angeles, CA 90001" -187898,Macbook Pro Laptop,1,1700,04/15/19 14:06,"26 Highland St, San Francisco, CA 94016" -187899,Lightning Charging Cable,1,14.95,04/22/19 18:50,"530 6th St, Austin, TX 73301" -187900,USB-C Charging Cable,1,11.95,04/01/19 23:00,"416 2nd St, Boston, MA 02215" -187901,Google Phone,1,600,04/03/19 10:44,"441 Chestnut St, Los Angeles, CA 90001" -187902,Wired Headphones,1,11.99,04/01/19 20:52,"777 Cedar St, New York City, NY 10001" -187903,AA Batteries (4-pack),1,3.84,04/23/19 12:27,"726 Cedar St, Seattle, WA 98101" -187904,AA Batteries (4-pack),1,3.84,04/12/19 20:18,"166 Park St, San Francisco, CA 94016" -187905,USB-C Charging Cable,1,11.95,04/05/19 18:35,"508 5th St, Portland, OR 97035" -187906,AA Batteries (4-pack),1,3.84,04/20/19 17:23,"173 Ridge St, San Francisco, CA 94016" -187907,Wired Headphones,1,11.99,04/17/19 11:53,"440 Jefferson St, Los Angeles, CA 90001" -187908,AAA Batteries (4-pack),2,2.99,04/28/19 12:42,"974 11th St, Dallas, TX 75001" -187909,Lightning Charging Cable,1,14.95,04/15/19 17:45,"503 9th St, Austin, TX 73301" -187910,Wired Headphones,1,11.99,04/21/19 13:30,"392 Willow St, New York City, NY 10001" -187911,USB-C Charging Cable,1,11.95,04/15/19 10:23,"889 Lake St, Los Angeles, CA 90001" -187912,USB-C Charging Cable,1,11.95,04/20/19 16:04,"729 7th St, Portland, ME 04101" -187913,Apple Airpods Headphones,1,150,04/30/19 17:03,"677 Elm St, Dallas, TX 75001" -187914,USB-C Charging Cable,1,11.95,04/09/19 13:09,"793 2nd St, Boston, MA 02215" -187915,Bose SoundSport Headphones,1,99.99,04/13/19 21:23,"832 Park St, San Francisco, CA 94016" -187916,Wired Headphones,1,11.99,04/29/19 15:48,"28 Dogwood St, Atlanta, GA 30301" -187917,Bose SoundSport Headphones,1,99.99,04/04/19 02:38,"738 Johnson St, San Francisco, CA 94016" -187918,Bose SoundSport Headphones,1,99.99,04/19/19 20:27,"912 Maple St, Los Angeles, CA 90001" -187919,Wired Headphones,2,11.99,04/30/19 18:31,"54 6th St, New York City, NY 10001" -187920,Apple Airpods Headphones,1,150,04/25/19 07:26,"935 West St, Los Angeles, CA 90001" -187921,Apple Airpods Headphones,1,150,04/26/19 11:39,"758 Park St, New York City, NY 10001" -187922,USB-C Charging Cable,1,11.95,04/02/19 19:11,"448 Highland St, Atlanta, GA 30301" -187923,27in 4K Gaming Monitor,1,389.99,04/16/19 15:41,"376 Adams St, Seattle, WA 98101" -187924,Wired Headphones,1,11.99,04/08/19 15:37,"842 Lakeview St, San Francisco, CA 94016" -187925,27in FHD Monitor,1,149.99,04/17/19 13:12,"688 Lincoln St, Los Angeles, CA 90001" -187926,USB-C Charging Cable,1,11.95,04/13/19 11:27,"206 Sunset St, Austin, TX 73301" -187927,Wired Headphones,1,11.99,04/03/19 12:31,"771 Main St, New York City, NY 10001" -187928,USB-C Charging Cable,2,11.95,04/22/19 19:55,"259 Johnson St, San Francisco, CA 94016" -187929,Apple Airpods Headphones,1,150,04/09/19 14:51,"6 Lake St, San Francisco, CA 94016" -187930,AAA Batteries (4-pack),1,2.99,04/06/19 17:56,"118 5th St, San Francisco, CA 94016" -187931,AA Batteries (4-pack),1,3.84,04/16/19 14:31,"344 Cedar St, San Francisco, CA 94016" -187932,Vareebadd Phone,1,400,04/11/19 19:47,"154 8th St, Portland, OR 97035" -187932,USB-C Charging Cable,1,11.95,04/11/19 19:47,"154 8th St, Portland, OR 97035" -187933,AA Batteries (4-pack),1,3.84,04/19/19 04:44,"394 Cherry St, San Francisco, CA 94016" -187934,Wired Headphones,1,11.99,04/29/19 11:50,"415 Jefferson St, Seattle, WA 98101" -187935,AA Batteries (4-pack),1,3.84,04/10/19 20:55,"967 Chestnut St, San Francisco, CA 94016" -187936,Bose SoundSport Headphones,1,99.99,04/13/19 06:24,"241 Walnut St, San Francisco, CA 94016" -187937,AAA Batteries (4-pack),2,2.99,04/17/19 08:00,"302 Sunset St, Boston, MA 02215" -187938,Wired Headphones,1,11.99,04/03/19 17:05,"61 Center St, San Francisco, CA 94016" -187939,Bose SoundSport Headphones,1,99.99,04/21/19 12:15,"784 Meadow St, New York City, NY 10001" -187940,Wired Headphones,1,11.99,04/30/19 16:06,"869 Sunset St, San Francisco, CA 94016" -187941,Lightning Charging Cable,1,14.95,04/23/19 21:25,"28 13th St, Atlanta, GA 30301" -187942,27in 4K Gaming Monitor,1,389.99,04/25/19 07:19,"598 5th St, San Francisco, CA 94016" -187943,Lightning Charging Cable,1,14.95,04/03/19 14:40,"764 9th St, Los Angeles, CA 90001" -187944,AAA Batteries (4-pack),1,2.99,04/17/19 19:45,"705 Willow St, Boston, MA 02215" -187945,Vareebadd Phone,1,400,04/24/19 13:17,"549 Jefferson St, Seattle, WA 98101" -187946,27in FHD Monitor,1,149.99,04/09/19 12:09,"669 Center St, Seattle, WA 98101" -187947,AAA Batteries (4-pack),1,2.99,04/08/19 18:18,"647 1st St, Los Angeles, CA 90001" -187948,USB-C Charging Cable,1,11.95,04/27/19 15:49,"721 12th St, Los Angeles, CA 90001" -187949,Vareebadd Phone,1,400,04/08/19 16:32,"743 Park St, Seattle, WA 98101" -187950,USB-C Charging Cable,1,11.95,04/03/19 12:45,"213 Forest St, Los Angeles, CA 90001" -187951,iPhone,1,700,04/25/19 20:27,"83 Elm St, Atlanta, GA 30301" -187952,AAA Batteries (4-pack),1,2.99,04/08/19 13:26,"891 1st St, New York City, NY 10001" -187953,AAA Batteries (4-pack),1,2.99,04/08/19 16:19,"848 14th St, Seattle, WA 98101" -187954,27in FHD Monitor,1,149.99,04/19/19 09:04,"872 Adams St, Portland, OR 97035" -187955,Google Phone,1,600,04/03/19 14:51,"818 River St, Dallas, TX 75001" -187955,USB-C Charging Cable,1,11.95,04/03/19 14:51,"818 River St, Dallas, TX 75001" -187956,34in Ultrawide Monitor,1,379.99,04/28/19 17:08,"649 10th St, San Francisco, CA 94016" -187957,USB-C Charging Cable,2,11.95,04/18/19 03:53,"367 Adams St, Boston, MA 02215" -187958,Apple Airpods Headphones,1,150,04/24/19 17:54,"715 Sunset St, Los Angeles, CA 90001" -187959,Wired Headphones,1,11.99,04/06/19 01:49,"609 11th St, New York City, NY 10001" -187960,AA Batteries (4-pack),1,3.84,04/09/19 15:29,"281 Lakeview St, San Francisco, CA 94016" -187961,AAA Batteries (4-pack),1,2.99,04/27/19 00:18,"198 7th St, New York City, NY 10001" -187962,AA Batteries (4-pack),1,3.84,04/25/19 00:25,"447 Lincoln St, Dallas, TX 75001" -187963,27in FHD Monitor,1,149.99,04/14/19 11:18,"775 Chestnut St, New York City, NY 10001" -187964,AAA Batteries (4-pack),1,2.99,04/03/19 10:53,"47 10th St, San Francisco, CA 94016" -187965,Google Phone,1,600,04/22/19 23:49,"307 5th St, Seattle, WA 98101" -187966,AA Batteries (4-pack),1,3.84,04/27/19 21:57,"893 9th St, San Francisco, CA 94016" -187967,Vareebadd Phone,1,400,04/20/19 13:56,"154 Dogwood St, Los Angeles, CA 90001" -187967,USB-C Charging Cable,1,11.95,04/20/19 13:56,"154 Dogwood St, Los Angeles, CA 90001" -187967,Bose SoundSport Headphones,1,99.99,04/20/19 13:56,"154 Dogwood St, Los Angeles, CA 90001" -187968,USB-C Charging Cable,1,11.95,04/02/19 11:50,"28 12th St, New York City, NY 10001" -187969,Vareebadd Phone,1,400,04/24/19 12:56,"402 Chestnut St, Atlanta, GA 30301" -187970,Google Phone,1,600,04/20/19 17:07,"11 Madison St, New York City, NY 10001" -187970,USB-C Charging Cable,1,11.95,04/20/19 17:07,"11 Madison St, New York City, NY 10001" -187971,Lightning Charging Cable,1,14.95,04/19/19 16:39,"805 Forest St, Los Angeles, CA 90001" -187972,AA Batteries (4-pack),1,3.84,04/19/19 08:03,"239 Forest St, Dallas, TX 75001" -187973,Wired Headphones,1,11.99,04/19/19 18:36,"830 5th St, Los Angeles, CA 90001" -187974,Macbook Pro Laptop,1,1700,04/03/19 10:58,"325 Wilson St, Los Angeles, CA 90001" -187975,Wired Headphones,1,11.99,04/08/19 16:12,"495 North St, New York City, NY 10001" -187976,LG Dryer,1,600.0,04/19/19 17:13,"398 Cherry St, Atlanta, GA 30301" -187977,Lightning Charging Cable,2,14.95,04/05/19 14:16,"88 Forest St, San Francisco, CA 94016" -187978,Google Phone,1,600,04/02/19 12:57,"810 Sunset St, New York City, NY 10001" -187978,Bose SoundSport Headphones,1,99.99,04/02/19 12:57,"810 Sunset St, New York City, NY 10001" -187979,AAA Batteries (4-pack),1,2.99,04/13/19 13:44,"85 North St, Boston, MA 02215" -187980,Google Phone,1,600,04/18/19 13:40,"857 2nd St, Los Angeles, CA 90001" -187981,Lightning Charging Cable,1,14.95,04/07/19 11:55,"920 Lake St, Atlanta, GA 30301" -187982,iPhone,2,700,04/06/19 22:03,"213 6th St, Atlanta, GA 30301" -187983,Lightning Charging Cable,1,14.95,04/17/19 19:58,"881 Maple St, Austin, TX 73301" -187984,Macbook Pro Laptop,1,1700,04/02/19 06:00,"153 Walnut St, Portland, ME 04101" -187985,AA Batteries (4-pack),1,3.84,04/25/19 14:36,"651 Cedar St, San Francisco, CA 94016" -187986,USB-C Charging Cable,1,11.95,04/29/19 14:43,"861 Adams St, Los Angeles, CA 90001" -187987,Lightning Charging Cable,1,14.95,04/03/19 13:31,"416 Wilson St, Atlanta, GA 30301" -187988,Bose SoundSport Headphones,1,99.99,04/13/19 06:16,"883 10th St, Dallas, TX 75001" -187989,AAA Batteries (4-pack),1,2.99,04/14/19 21:40,"589 13th St, Atlanta, GA 30301" -187990,AA Batteries (4-pack),1,3.84,04/12/19 12:26,"974 Cedar St, Seattle, WA 98101" -187991,AA Batteries (4-pack),2,3.84,04/17/19 18:42,"576 Pine St, Boston, MA 02215" -187992,27in 4K Gaming Monitor,1,389.99,04/06/19 14:19,"303 Cedar St, Dallas, TX 75001" -187993,Lightning Charging Cable,1,14.95,04/30/19 23:24,"130 Jackson St, Los Angeles, CA 90001" -187994,Lightning Charging Cable,1,14.95,04/29/19 18:41,"551 River St, Los Angeles, CA 90001" -187995,Apple Airpods Headphones,1,150,04/27/19 22:11,"265 9th St, San Francisco, CA 94016" -187996,AAA Batteries (4-pack),1,2.99,04/02/19 16:35,"509 8th St, San Francisco, CA 94016" -187997,USB-C Charging Cable,1,11.95,04/22/19 00:15,"765 Washington St, Los Angeles, CA 90001" -187998,USB-C Charging Cable,1,11.95,04/05/19 16:42,"775 7th St, New York City, NY 10001" -187999,AA Batteries (4-pack),1,3.84,04/01/19 07:51,"363 12th St, San Francisco, CA 94016" -188000,27in FHD Monitor,1,149.99,04/02/19 18:11,"921 Wilson St, San Francisco, CA 94016" -188001,iPhone,1,700,04/04/19 07:08,"721 Sunset St, Dallas, TX 75001" -188002,34in Ultrawide Monitor,1,379.99,04/28/19 13:50,"458 Madison St, Seattle, WA 98101" -188003,Google Phone,1,600,04/25/19 12:54,"643 14th St, Los Angeles, CA 90001" -188004,Apple Airpods Headphones,1,150,04/08/19 08:49,"625 Maple St, Boston, MA 02215" -188005,Apple Airpods Headphones,1,150,04/28/19 12:18,"881 5th St, Austin, TX 73301" -188006,AAA Batteries (4-pack),1,2.99,04/08/19 11:11,"870 Jackson St, Los Angeles, CA 90001" -188007,20in Monitor,1,109.99,04/14/19 19:55,"309 12th St, Atlanta, GA 30301" -188008,Wired Headphones,1,11.99,04/15/19 14:07,"572 Lakeview St, Atlanta, GA 30301" -188009,USB-C Charging Cable,1,11.95,04/24/19 16:29,"367 Jackson St, Portland, ME 04101" -188010,Wired Headphones,1,11.99,04/03/19 04:24,"861 Jefferson St, San Francisco, CA 94016" -188011,34in Ultrawide Monitor,1,379.99,04/26/19 00:53,"553 Church St, Boston, MA 02215" -188012,Lightning Charging Cable,1,14.95,04/03/19 16:59,"981 Hill St, New York City, NY 10001" -188013,iPhone,1,700,04/23/19 23:17,"65 Cherry St, Dallas, TX 75001" -188014,AAA Batteries (4-pack),2,2.99,04/24/19 19:32,"336 Lake St, Atlanta, GA 30301" -188015,AAA Batteries (4-pack),1,2.99,04/28/19 16:21,"749 Chestnut St, Portland, OR 97035" -188016,AA Batteries (4-pack),1,3.84,04/26/19 18:38,"738 Spruce St, San Francisco, CA 94016" -188017,Lightning Charging Cable,1,14.95,04/30/19 18:14,"857 Spruce St, Portland, OR 97035" -188018,USB-C Charging Cable,1,11.95,04/23/19 09:17,"898 10th St, Los Angeles, CA 90001" -188019,Lightning Charging Cable,1,14.95,04/20/19 17:11,"462 Center St, Boston, MA 02215" -188020,AA Batteries (4-pack),1,3.84,04/25/19 23:01,"820 11th St, Austin, TX 73301" -188021,Macbook Pro Laptop,1,1700,04/11/19 18:07,"3 Adams St, New York City, NY 10001" -188022,34in Ultrawide Monitor,1,379.99,04/13/19 21:38,"931 South St, San Francisco, CA 94016" -188023,AA Batteries (4-pack),1,3.84,04/17/19 14:35,"443 Ridge St, Seattle, WA 98101" -188024,AA Batteries (4-pack),1,3.84,04/19/19 14:28,"821 Maple St, San Francisco, CA 94016" -188025,Apple Airpods Headphones,1,150,04/09/19 20:07,"39 Park St, San Francisco, CA 94016" -188026,27in FHD Monitor,1,149.99,04/16/19 20:54,"28 5th St, San Francisco, CA 94016" -188026,Wired Headphones,1,11.99,04/16/19 20:54,"28 5th St, San Francisco, CA 94016" -188027,Bose SoundSport Headphones,1,99.99,04/15/19 15:32,"862 Lincoln St, San Francisco, CA 94016" -188028,AAA Batteries (4-pack),1,2.99,04/07/19 11:25,"504 Madison St, Los Angeles, CA 90001" -188028,USB-C Charging Cable,1,11.95,04/07/19 11:25,"504 Madison St, Los Angeles, CA 90001" -188029,Google Phone,1,600,04/07/19 14:13,"389 8th St, Atlanta, GA 30301" -188030,USB-C Charging Cable,1,11.95,04/21/19 12:09,"407 13th St, Los Angeles, CA 90001" -188031,27in FHD Monitor,1,149.99,04/05/19 23:51,"54 Willow St, Portland, ME 04101" -188032,AAA Batteries (4-pack),1,2.99,04/08/19 20:35,"126 Cedar St, San Francisco, CA 94016" -188033,AA Batteries (4-pack),1,3.84,04/23/19 11:16,"897 4th St, New York City, NY 10001" -188034,AA Batteries (4-pack),1,3.84,04/27/19 02:00,"364 Main St, Los Angeles, CA 90001" -188035,AAA Batteries (4-pack),1,2.99,04/04/19 14:18,"449 Wilson St, New York City, NY 10001" -188036,USB-C Charging Cable,1,11.95,04/29/19 07:16,"68 Lakeview St, Seattle, WA 98101" -188037,27in FHD Monitor,1,149.99,04/30/19 13:53,"273 Church St, New York City, NY 10001" -188038,iPhone,1,700,04/30/19 02:43,"133 Chestnut St, Portland, OR 97035" -188038,Lightning Charging Cable,1,14.95,04/30/19 02:43,"133 Chestnut St, Portland, OR 97035" -188039,Apple Airpods Headphones,1,150,04/03/19 12:27,"759 13th St, Austin, TX 73301" -188040,Lightning Charging Cable,1,14.95,04/07/19 18:39,"698 Johnson St, Los Angeles, CA 90001" -188041,iPhone,1,700,04/27/19 12:29,"395 Washington St, San Francisco, CA 94016" -188042,34in Ultrawide Monitor,1,379.99,04/20/19 10:17,"279 Chestnut St, New York City, NY 10001" -188043,Wired Headphones,1,11.99,04/25/19 22:17,"249 Lincoln St, San Francisco, CA 94016" -188044,27in 4K Gaming Monitor,1,389.99,04/16/19 13:27,"237 Highland St, San Francisco, CA 94016" -188045,Lightning Charging Cable,1,14.95,04/05/19 04:57,"521 Willow St, Los Angeles, CA 90001" -188046,Lightning Charging Cable,2,14.95,04/19/19 15:08,"662 Walnut St, Dallas, TX 75001" -188047,USB-C Charging Cable,1,11.95,04/19/19 17:30,"555 9th St, San Francisco, CA 94016" -188048,AA Batteries (4-pack),1,3.84,04/27/19 06:20,"483 Ridge St, Portland, OR 97035" -188049,27in FHD Monitor,1,149.99,04/22/19 22:40,"62 Cherry St, San Francisco, CA 94016" -188050,Bose SoundSport Headphones,1,99.99,04/22/19 11:37,"918 Dogwood St, Austin, TX 73301" -188051,27in FHD Monitor,1,149.99,04/23/19 04:39,"920 Dogwood St, Seattle, WA 98101" -188052,Lightning Charging Cable,1,14.95,04/03/19 14:03,"877 Sunset St, Austin, TX 73301" -188053,USB-C Charging Cable,1,11.95,04/10/19 15:48,"422 Spruce St, Los Angeles, CA 90001" -188054,Lightning Charging Cable,1,14.95,04/25/19 12:38,"698 Sunset St, Portland, OR 97035" -188055,Lightning Charging Cable,1,14.95,04/16/19 19:11,"382 Hill St, San Francisco, CA 94016" -188056,AA Batteries (4-pack),1,3.84,04/29/19 14:27,"592 13th St, Portland, OR 97035" -188057,Bose SoundSport Headphones,1,99.99,04/11/19 08:46,"434 Highland St, Boston, MA 02215" -188058,AAA Batteries (4-pack),1,2.99,04/06/19 11:46,"820 Madison St, Los Angeles, CA 90001" -188059,AA Batteries (4-pack),1,3.84,04/20/19 16:18,"71 Center St, Los Angeles, CA 90001" -188060,Macbook Pro Laptop,1,1700,04/08/19 08:15,"521 Pine St, Seattle, WA 98101" -188061,Google Phone,1,600,04/18/19 11:24,"349 Hickory St, San Francisco, CA 94016" -188062,AAA Batteries (4-pack),1,2.99,04/07/19 18:20,"148 Jackson St, Seattle, WA 98101" -188063,AAA Batteries (4-pack),1,2.99,04/25/19 09:42,"296 Walnut St, New York City, NY 10001" -188064,Google Phone,1,600,04/09/19 16:26,"857 Lake St, Los Angeles, CA 90001" -188065,AA Batteries (4-pack),1,3.84,04/20/19 22:12,"710 Ridge St, San Francisco, CA 94016" -188066,Macbook Pro Laptop,1,1700,04/25/19 09:20,"845 Jefferson St, Los Angeles, CA 90001" -188067,Apple Airpods Headphones,1,150,04/02/19 20:07,"191 Elm St, Austin, TX 73301" -188068,27in 4K Gaming Monitor,1,389.99,04/14/19 11:19,"218 Center St, Seattle, WA 98101" -188069,AAA Batteries (4-pack),3,2.99,04/21/19 14:07,"472 Chestnut St, Atlanta, GA 30301" -188070,34in Ultrawide Monitor,1,379.99,04/18/19 11:50,"998 Madison St, San Francisco, CA 94016" -188070,USB-C Charging Cable,1,11.95,04/18/19 11:50,"998 Madison St, San Francisco, CA 94016" -188071,Lightning Charging Cable,1,14.95,04/18/19 20:10,"520 Wilson St, Atlanta, GA 30301" -188072,Apple Airpods Headphones,1,150,04/12/19 22:01,"606 Meadow St, Seattle, WA 98101" -188073,Bose SoundSport Headphones,1,99.99,04/05/19 20:13,"277 Center St, Austin, TX 73301" -188074,Lightning Charging Cable,1,14.95,04/25/19 22:31,"9 Maple St, Dallas, TX 75001" -188075,Apple Airpods Headphones,1,150,04/28/19 17:21,"443 Main St, Los Angeles, CA 90001" -188076,AA Batteries (4-pack),2,3.84,04/22/19 14:23,"259 Center St, Atlanta, GA 30301" -188077,iPhone,1,700,04/15/19 22:26,"884 Highland St, San Francisco, CA 94016" -188077,Lightning Charging Cable,1,14.95,04/15/19 22:26,"884 Highland St, San Francisco, CA 94016" -188078,AA Batteries (4-pack),1,3.84,04/17/19 10:07,"699 11th St, Dallas, TX 75001" -188079,Apple Airpods Headphones,1,150,04/13/19 18:16,"981 6th St, Seattle, WA 98101" -188080,Lightning Charging Cable,1,14.95,04/19/19 17:02,"884 Dogwood St, San Francisco, CA 94016" -188081,AA Batteries (4-pack),1,3.84,04/11/19 12:32,"297 Wilson St, San Francisco, CA 94016" -188082,Bose SoundSport Headphones,1,99.99,04/14/19 14:05,"373 Walnut St, New York City, NY 10001" -188083,Apple Airpods Headphones,1,150,04/25/19 21:09,"439 Madison St, Boston, MA 02215" -188084,Lightning Charging Cable,1,14.95,04/20/19 20:36,"767 Pine St, Atlanta, GA 30301" -188085,Lightning Charging Cable,1,14.95,04/28/19 01:46,"884 Church St, Boston, MA 02215" -188086,Macbook Pro Laptop,1,1700,04/24/19 12:04,"895 Jackson St, San Francisco, CA 94016" -188087,ThinkPad Laptop,1,999.99,04/01/19 21:03,"748 12th St, Seattle, WA 98101" -188087,Macbook Pro Laptop,1,1700,04/01/19 21:03,"748 12th St, Seattle, WA 98101" -188088,Vareebadd Phone,1,400,04/12/19 12:28,"339 Main St, San Francisco, CA 94016" -188089,Apple Airpods Headphones,1,150,04/25/19 22:15,"281 Willow St, San Francisco, CA 94016" -188090,Macbook Pro Laptop,1,1700,04/28/19 11:04,"194 Center St, Los Angeles, CA 90001" -188091,Apple Airpods Headphones,1,150,04/02/19 15:56,"838 Cherry St, Dallas, TX 75001" -188092,Wired Headphones,1,11.99,04/10/19 07:18,"587 Forest St, San Francisco, CA 94016" -188093,Apple Airpods Headphones,1,150,04/10/19 21:48,"733 14th St, Boston, MA 02215" -188094,AA Batteries (4-pack),1,3.84,04/05/19 22:04,"852 8th St, Austin, TX 73301" -188095,LG Washing Machine,1,600.0,04/05/19 09:26,"590 1st St, Boston, MA 02215" -188096,Bose SoundSport Headphones,1,99.99,04/26/19 01:33,"286 Cedar St, New York City, NY 10001" -188097,Google Phone,1,600,04/17/19 10:49,"92 5th St, Atlanta, GA 30301" -188097,USB-C Charging Cable,1,11.95,04/17/19 10:49,"92 5th St, Atlanta, GA 30301" -188097,27in FHD Monitor,1,149.99,04/17/19 10:49,"92 5th St, Atlanta, GA 30301" -188098,iPhone,1,700,04/19/19 20:49,"419 Main St, Dallas, TX 75001" -188099,Apple Airpods Headphones,1,150,04/01/19 22:03,"81 Jefferson St, Seattle, WA 98101" -188100,AA Batteries (4-pack),2,3.84,04/03/19 15:17,"217 Church St, Portland, ME 04101" -188101,AA Batteries (4-pack),1,3.84,04/01/19 09:32,"431 Elm St, San Francisco, CA 94016" -188102,Lightning Charging Cable,1,14.95,04/04/19 15:02,"182 Maple St, Portland, OR 97035" -188103,20in Monitor,1,109.99,04/05/19 11:28,"522 Elm St, Dallas, TX 75001" -188104,ThinkPad Laptop,1,999.99,04/23/19 11:03,"148 13th St, San Francisco, CA 94016" -188105,20in Monitor,1,109.99,04/23/19 17:07,"403 North St, Seattle, WA 98101" -188106,USB-C Charging Cable,1,11.95,04/28/19 23:50,"244 6th St, Austin, TX 73301" -188107,Apple Airpods Headphones,1,150,04/02/19 18:54,"763 9th St, Atlanta, GA 30301" -188107,Flatscreen TV,1,300,04/02/19 18:54,"763 9th St, Atlanta, GA 30301" -188108,27in FHD Monitor,1,149.99,04/24/19 15:04,"510 1st St, Austin, TX 73301" -188109,27in FHD Monitor,1,149.99,04/18/19 16:05,"583 Hickory St, Dallas, TX 75001" -188110,Wired Headphones,1,11.99,04/10/19 17:05,"94 11th St, Los Angeles, CA 90001" -188111,27in FHD Monitor,1,149.99,04/08/19 15:03,"896 Lakeview St, Los Angeles, CA 90001" -,,,,, -188112,Google Phone,1,600,04/26/19 20:05,"839 Lakeview St, Los Angeles, CA 90001" -188113,AAA Batteries (4-pack),1,2.99,04/29/19 22:13,"977 Cherry St, Los Angeles, CA 90001" -188113,USB-C Charging Cable,1,11.95,04/29/19 22:13,"977 Cherry St, Los Angeles, CA 90001" -188114,AA Batteries (4-pack),1,3.84,04/23/19 22:16,"242 Meadow St, Seattle, WA 98101" -188115,AA Batteries (4-pack),1,3.84,04/04/19 19:42,"274 West St, San Francisco, CA 94016" -188116,Flatscreen TV,1,300,04/23/19 05:50,"664 5th St, Los Angeles, CA 90001" -188117,Flatscreen TV,1,300,04/12/19 20:50,"599 Madison St, Atlanta, GA 30301" -188118,USB-C Charging Cable,1,11.95,04/13/19 17:18,"796 7th St, Los Angeles, CA 90001" -188119,Flatscreen TV,1,300,04/09/19 08:06,"668 Lakeview St, Seattle, WA 98101" -188120,AAA Batteries (4-pack),3,2.99,04/19/19 09:17,"651 Hill St, Seattle, WA 98101" -188121,Flatscreen TV,1,300,04/10/19 07:13,"457 Lake St, Boston, MA 02215" -188122,iPhone,1,700,04/13/19 19:03,"352 Ridge St, Los Angeles, CA 90001" -188122,Lightning Charging Cable,1,14.95,04/13/19 19:03,"352 Ridge St, Los Angeles, CA 90001" -188123,Lightning Charging Cable,1,14.95,04/05/19 13:23,"710 Adams St, Los Angeles, CA 90001" -188124,20in Monitor,1,109.99,04/23/19 13:44,"773 Main St, Portland, ME 04101" -188125,AAA Batteries (4-pack),1,2.99,04/19/19 10:30,"581 North St, New York City, NY 10001" -188126,AAA Batteries (4-pack),1,2.99,04/19/19 22:52,"540 Madison St, Seattle, WA 98101" -188127,Google Phone,1,600,04/17/19 08:32,"49 Lincoln St, San Francisco, CA 94016" -188128,USB-C Charging Cable,1,11.95,04/20/19 00:30,"648 Dogwood St, Seattle, WA 98101" -188129,Macbook Pro Laptop,1,1700,04/05/19 04:35,"65 9th St, Atlanta, GA 30301" -188130,Bose SoundSport Headphones,1,99.99,04/12/19 23:06,"376 Ridge St, Atlanta, GA 30301" -188131,Wired Headphones,1,11.99,04/08/19 14:51,"415 Cedar St, Seattle, WA 98101" -188132,Apple Airpods Headphones,1,150,04/21/19 20:03,"981 10th St, Seattle, WA 98101" -188133,USB-C Charging Cable,1,11.95,04/17/19 12:29,"682 4th St, New York City, NY 10001" -188134,Flatscreen TV,1,300,04/14/19 16:24,"319 Spruce St, San Francisco, CA 94016" -188135,Wired Headphones,1,11.99,04/16/19 12:43,"781 13th St, Los Angeles, CA 90001" -188136,Bose SoundSport Headphones,1,99.99,04/05/19 19:13,"684 Main St, Boston, MA 02215" -188137,Lightning Charging Cable,1,14.95,04/02/19 20:19,"762 South St, San Francisco, CA 94016" -188138,Wired Headphones,2,11.99,04/18/19 18:42,"931 5th St, San Francisco, CA 94016" -188139,Wired Headphones,1,11.99,04/05/19 10:40,"529 4th St, Portland, ME 04101" -188140,27in 4K Gaming Monitor,1,389.99,04/23/19 10:08,"837 Lake St, San Francisco, CA 94016" -188141,AAA Batteries (4-pack),1,2.99,04/16/19 19:32,"138 7th St, Los Angeles, CA 90001" -188142,ThinkPad Laptop,1,999.99,04/13/19 19:01,"127 Main St, Los Angeles, CA 90001" -188142,AA Batteries (4-pack),2,3.84,04/13/19 19:01,"127 Main St, Los Angeles, CA 90001" -188143,USB-C Charging Cable,1,11.95,04/24/19 14:01,"193 10th St, Portland, OR 97035" -188144,Wired Headphones,2,11.99,04/22/19 10:47,"728 West St, New York City, NY 10001" -188145,AA Batteries (4-pack),1,3.84,04/29/19 21:53,"152 Maple St, San Francisco, CA 94016" -188146,USB-C Charging Cable,1,11.95,04/24/19 09:06,"280 Church St, Boston, MA 02215" -188147,Lightning Charging Cable,1,14.95,04/20/19 17:13,"844 Adams St, New York City, NY 10001" -188148,AAA Batteries (4-pack),2,2.99,04/21/19 20:31,"539 Willow St, Atlanta, GA 30301" -188149,27in 4K Gaming Monitor,1,389.99,04/29/19 22:31,"301 Hill St, San Francisco, CA 94016" -188150,Wired Headphones,1,11.99,04/24/19 19:51,"752 10th St, San Francisco, CA 94016" -188151,AAA Batteries (4-pack),1,2.99,04/06/19 07:31,"225 11th St, Austin, TX 73301" -188152,AA Batteries (4-pack),1,3.84,04/20/19 00:10,"774 Meadow St, Dallas, TX 75001" -188153,AA Batteries (4-pack),2,3.84,04/23/19 22:57,"777 Cedar St, Dallas, TX 75001" -188154,Wired Headphones,1,11.99,04/29/19 05:13,"551 Jefferson St, New York City, NY 10001" -188155,34in Ultrawide Monitor,1,379.99,04/13/19 10:50,"869 9th St, San Francisco, CA 94016" -188156,AAA Batteries (4-pack),1,2.99,04/18/19 11:58,"649 Meadow St, Los Angeles, CA 90001" -188157,USB-C Charging Cable,1,11.95,04/13/19 12:37,"936 12th St, Los Angeles, CA 90001" -188158,Lightning Charging Cable,1,14.95,04/08/19 00:57,"453 West St, San Francisco, CA 94016" -188159,USB-C Charging Cable,1,11.95,04/28/19 20:22,"935 Washington St, New York City, NY 10001" -188160,Flatscreen TV,1,300,04/25/19 20:56,"533 Wilson St, Dallas, TX 75001" -188161,Lightning Charging Cable,1,14.95,04/03/19 17:25,"344 Pine St, San Francisco, CA 94016" -188162,iPhone,1,700,04/16/19 14:38,"368 5th St, Seattle, WA 98101" -188163,AAA Batteries (4-pack),1,2.99,04/15/19 14:02,"38 Forest St, San Francisco, CA 94016" -188164,Apple Airpods Headphones,1,150,04/28/19 10:58,"317 Willow St, San Francisco, CA 94016" -188165,Lightning Charging Cable,1,14.95,04/16/19 18:36,"197 Hickory St, Atlanta, GA 30301" -188166,Lightning Charging Cable,1,14.95,04/01/19 12:06,"447 Wilson St, New York City, NY 10001" -188167,USB-C Charging Cable,2,11.95,04/10/19 07:11,"282 Cedar St, Atlanta, GA 30301" -188168,AA Batteries (4-pack),2,3.84,04/03/19 12:33,"775 Maple St, Los Angeles, CA 90001" -188169,AA Batteries (4-pack),2,3.84,04/10/19 18:52,"281 Elm St, New York City, NY 10001" -188170,Macbook Pro Laptop,1,1700,04/20/19 16:08,"461 Elm St, New York City, NY 10001" -188171,AAA Batteries (4-pack),3,2.99,04/17/19 08:59,"965 Chestnut St, Seattle, WA 98101" -188172,AAA Batteries (4-pack),2,2.99,04/22/19 18:11,"476 North St, Seattle, WA 98101" -188173,USB-C Charging Cable,1,11.95,04/02/19 13:07,"85 Lincoln St, San Francisco, CA 94016" -188174,Lightning Charging Cable,1,14.95,04/21/19 09:31,"980 Walnut St, Seattle, WA 98101" -188175,AA Batteries (4-pack),1,3.84,04/03/19 16:44,"586 Johnson St, Portland, ME 04101" -188176,AA Batteries (4-pack),1,3.84,04/30/19 08:44,"504 5th St, San Francisco, CA 94016" -188177,Apple Airpods Headphones,1,150,04/26/19 20:02,"751 1st St, San Francisco, CA 94016" -188178,Apple Airpods Headphones,1,150,04/29/19 16:08,"470 Highland St, Dallas, TX 75001" -188179,34in Ultrawide Monitor,1,379.99,04/09/19 15:59,"940 5th St, Austin, TX 73301" -188180,27in FHD Monitor,1,149.99,04/26/19 00:17,"637 Maple St, Los Angeles, CA 90001" -188181,Apple Airpods Headphones,1,150,04/19/19 13:22,"530 Park St, New York City, NY 10001" -188182,27in 4K Gaming Monitor,1,389.99,04/02/19 12:04,"548 Forest St, Boston, MA 02215" -188183,Bose SoundSport Headphones,1,99.99,04/01/19 23:46,"345 Washington St, Atlanta, GA 30301" -188184,Lightning Charging Cable,1,14.95,04/29/19 17:04,"769 Willow St, New York City, NY 10001" -188185,Lightning Charging Cable,2,14.95,04/02/19 10:09,"982 Sunset St, New York City, NY 10001" -188186,Wired Headphones,1,11.99,04/03/19 11:16,"20 12th St, New York City, NY 10001" -188187,ThinkPad Laptop,1,999.99,04/08/19 11:55,"611 12th St, San Francisco, CA 94016" -188188,27in FHD Monitor,1,149.99,04/02/19 14:45,"22 9th St, Portland, OR 97035" -188189,Lightning Charging Cable,1,14.95,04/06/19 15:41,"228 2nd St, New York City, NY 10001" -188190,AAA Batteries (4-pack),2,2.99,04/23/19 10:09,"967 14th St, Los Angeles, CA 90001" -188191,Bose SoundSport Headphones,1,99.99,04/27/19 11:59,"643 13th St, San Francisco, CA 94016" -188192,AAA Batteries (4-pack),1,2.99,04/02/19 15:48,"553 Forest St, Austin, TX 73301" -188193,AAA Batteries (4-pack),1,2.99,04/11/19 10:37,"648 Forest St, San Francisco, CA 94016" -188194,Bose SoundSport Headphones,1,99.99,04/11/19 19:14,"412 1st St, Atlanta, GA 30301" -188195,Apple Airpods Headphones,1,150,04/25/19 12:34,"437 Madison St, Boston, MA 02215" -188196,Wired Headphones,1,11.99,04/05/19 13:11,"441 8th St, San Francisco, CA 94016" -188197,Wired Headphones,1,11.99,04/21/19 22:45,"284 Meadow St, New York City, NY 10001" -188198,AA Batteries (4-pack),1,3.84,04/30/19 13:08,"349 14th St, Los Angeles, CA 90001" -188199,Lightning Charging Cable,1,14.95,04/02/19 13:17,"558 12th St, Los Angeles, CA 90001" -188200,AAA Batteries (4-pack),1,2.99,04/29/19 19:54,"487 4th St, Boston, MA 02215" -188201,Bose SoundSport Headphones,1,99.99,04/24/19 22:42,"768 Jefferson St, San Francisco, CA 94016" -188202,USB-C Charging Cable,1,11.95,04/05/19 07:46,"690 Park St, Boston, MA 02215" -188203,Lightning Charging Cable,1,14.95,04/08/19 14:34,"386 Chestnut St, Boston, MA 02215" -188204,Wired Headphones,1,11.99,04/14/19 13:27,"746 Johnson St, Atlanta, GA 30301" -188205,Wired Headphones,1,11.99,04/06/19 00:30,"234 Madison St, New York City, NY 10001" -188206,AAA Batteries (4-pack),1,2.99,04/27/19 21:45,"114 Sunset St, Atlanta, GA 30301" -188207,Macbook Pro Laptop,1,1700,04/27/19 22:19,"156 Ridge St, Boston, MA 02215" -188208,AA Batteries (4-pack),1,3.84,04/11/19 21:53,"775 9th St, Atlanta, GA 30301" -188209,USB-C Charging Cable,1,11.95,04/02/19 18:46,"319 Walnut St, Portland, ME 04101" -188210,27in 4K Gaming Monitor,1,389.99,04/15/19 23:40,"994 Sunset St, New York City, NY 10001" -188211,Apple Airpods Headphones,1,150,04/04/19 16:34,"643 4th St, Dallas, TX 75001" -188212,USB-C Charging Cable,1,11.95,04/11/19 11:16,"451 Willow St, San Francisco, CA 94016" -188213,Wired Headphones,1,11.99,04/10/19 15:53,"381 Center St, San Francisco, CA 94016" -188214,AA Batteries (4-pack),2,3.84,04/11/19 16:34,"86 Park St, Los Angeles, CA 90001" -188215,AAA Batteries (4-pack),1,2.99,04/03/19 08:16,"706 1st St, Dallas, TX 75001" -188216,Lightning Charging Cable,1,14.95,04/04/19 14:51,"348 14th St, Dallas, TX 75001" -188217,iPhone,1,700,04/20/19 12:28,"218 Walnut St, Portland, OR 97035" -188218,Wired Headphones,1,11.99,04/05/19 06:46,"204 Dogwood St, Seattle, WA 98101" -188219,Google Phone,1,600,04/24/19 07:54,"671 Ridge St, Boston, MA 02215" -188220,AAA Batteries (4-pack),1,2.99,04/07/19 13:28,"41 South St, Los Angeles, CA 90001" -188221,AAA Batteries (4-pack),1,2.99,04/09/19 13:43,"140 River St, New York City, NY 10001" -188222,AAA Batteries (4-pack),1,2.99,04/06/19 09:25,"446 Dogwood St, Dallas, TX 75001" -188222,AA Batteries (4-pack),1,3.84,04/06/19 09:25,"446 Dogwood St, Dallas, TX 75001" -188223,Macbook Pro Laptop,1,1700,04/26/19 10:49,"890 Washington St, Boston, MA 02215" -188224,AAA Batteries (4-pack),1,2.99,04/28/19 21:36,"834 Pine St, Atlanta, GA 30301" -188225,AA Batteries (4-pack),3,3.84,04/03/19 10:28,"309 8th St, Dallas, TX 75001" -188226,ThinkPad Laptop,1,999.99,04/10/19 18:05,"748 Walnut St, New York City, NY 10001" -188227,Bose SoundSport Headphones,1,99.99,04/24/19 22:55,"694 9th St, Portland, OR 97035" -188228,34in Ultrawide Monitor,1,379.99,04/06/19 20:00,"832 Chestnut St, Seattle, WA 98101" -188229,34in Ultrawide Monitor,1,379.99,04/09/19 16:31,"943 Lincoln St, Seattle, WA 98101" -188230,Google Phone,1,600,04/01/19 10:05,"595 Park St, Los Angeles, CA 90001" -188231,USB-C Charging Cable,1,11.95,04/30/19 15:35,"632 Chestnut St, New York City, NY 10001" -188232,27in 4K Gaming Monitor,1,389.99,04/04/19 22:45,"72 1st St, Portland, OR 97035" -188233,Bose SoundSport Headphones,1,99.99,04/23/19 22:06,"394 5th St, Atlanta, GA 30301" -188234,Apple Airpods Headphones,1,150,04/02/19 20:08,"755 Spruce St, Seattle, WA 98101" -188235,AAA Batteries (4-pack),2,2.99,04/25/19 00:24,"986 Park St, San Francisco, CA 94016" -188236,Wired Headphones,1,11.99,04/19/19 11:29,"573 6th St, Dallas, TX 75001" -188237,Wired Headphones,1,11.99,04/13/19 20:13,"464 Center St, Los Angeles, CA 90001" -188238,34in Ultrawide Monitor,1,379.99,04/07/19 08:32,"232 Walnut St, Portland, ME 04101" -188239,Google Phone,1,600,04/22/19 13:17,"962 Sunset St, San Francisco, CA 94016" -188240,Wired Headphones,1,11.99,04/24/19 16:08,"608 6th St, San Francisco, CA 94016" -188241,AAA Batteries (4-pack),3,2.99,04/01/19 13:10,"692 Dogwood St, Atlanta, GA 30301" -188242,Google Phone,1,600,04/23/19 19:03,"93 Jefferson St, Dallas, TX 75001" -188243,Lightning Charging Cable,1,14.95,04/05/19 22:24,"650 13th St, Seattle, WA 98101" -188244,Bose SoundSport Headphones,1,99.99,04/03/19 16:23,"357 Cedar St, New York City, NY 10001" -188245,Lightning Charging Cable,1,14.95,04/17/19 09:36,"780 12th St, Atlanta, GA 30301" -188246,AA Batteries (4-pack),1,3.84,04/07/19 14:11,"670 Pine St, Boston, MA 02215" -188247,Wired Headphones,1,11.99,04/24/19 00:46,"510 Dogwood St, Austin, TX 73301" -188248,USB-C Charging Cable,1,11.95,04/23/19 17:01,"393 Chestnut St, Los Angeles, CA 90001" -188249,AAA Batteries (4-pack),2,2.99,04/18/19 16:31,"14 South St, Los Angeles, CA 90001" -188250,AA Batteries (4-pack),1,3.84,04/16/19 10:31,"695 Willow St, Boston, MA 02215" -188251,AA Batteries (4-pack),1,3.84,04/04/19 18:48,"412 13th St, San Francisco, CA 94016" -188252,Wired Headphones,1,11.99,04/01/19 20:00,"554 Park St, New York City, NY 10001" -188253,Google Phone,1,600,04/11/19 12:23,"751 2nd St, Boston, MA 02215" -188254,AAA Batteries (4-pack),3,2.99,04/02/19 23:39,"10 Washington St, Los Angeles, CA 90001" -188255,Lightning Charging Cable,1,14.95,04/27/19 09:52,"149 2nd St, San Francisco, CA 94016" -188256,Wired Headphones,3,11.99,04/05/19 14:12,"733 Jackson St, Dallas, TX 75001" -188257,Apple Airpods Headphones,1,150,04/28/19 09:28,"928 6th St, Portland, ME 04101" -188258,Wired Headphones,1,11.99,04/02/19 10:24,"210 Lincoln St, Los Angeles, CA 90001" -188259,Lightning Charging Cable,1,14.95,04/28/19 14:09,"131 6th St, Dallas, TX 75001" -188260,Lightning Charging Cable,1,14.95,04/05/19 13:14,"610 6th St, San Francisco, CA 94016" -188261,20in Monitor,1,109.99,04/11/19 19:05,"1 Dogwood St, Dallas, TX 75001" -188262,AAA Batteries (4-pack),3,2.99,04/22/19 19:43,"703 Wilson St, Atlanta, GA 30301" -188263,Google Phone,1,600,04/28/19 09:51,"814 Jackson St, Los Angeles, CA 90001" -188264,Lightning Charging Cable,1,14.95,04/30/19 21:21,"962 Madison St, Austin, TX 73301" -188265,iPhone,1,700,04/15/19 14:45,"594 Church St, New York City, NY 10001" -188266,Google Phone,1,600,04/02/19 08:51,"877 Church St, San Francisco, CA 94016" -188267,AA Batteries (4-pack),1,3.84,04/08/19 11:35,"757 13th St, Los Angeles, CA 90001" -188268,Vareebadd Phone,1,400,04/15/19 15:51,"115 Forest St, Los Angeles, CA 90001" -188269,27in FHD Monitor,1,149.99,04/01/19 10:17,"518 Pine St, Dallas, TX 75001" -188269,iPhone,1,700,04/01/19 10:17,"518 Pine St, Dallas, TX 75001" -188270,Lightning Charging Cable,1,14.95,04/19/19 12:55,"830 Lake St, San Francisco, CA 94016" -188271,USB-C Charging Cable,1,11.95,04/11/19 15:42,"805 Jefferson St, Los Angeles, CA 90001" -188272,Flatscreen TV,1,300,04/24/19 19:34,"19 Willow St, Los Angeles, CA 90001" -188273,iPhone,1,700,04/17/19 10:47,"357 Jackson St, Boston, MA 02215" -188274,Lightning Charging Cable,1,14.95,04/12/19 21:35,"390 Jefferson St, Portland, OR 97035" -188275,Macbook Pro Laptop,1,1700,04/20/19 15:05,"353 Jackson St, New York City, NY 10001" -188276,Wired Headphones,1,11.99,04/24/19 01:36,"428 13th St, Atlanta, GA 30301" -188277,Apple Airpods Headphones,1,150,04/26/19 10:44,"18 Hill St, San Francisco, CA 94016" -188278,USB-C Charging Cable,1,11.95,04/14/19 20:53,"204 Maple St, Seattle, WA 98101" -188279,Wired Headphones,1,11.99,04/19/19 19:16,"566 Dogwood St, Atlanta, GA 30301" -188280,27in FHD Monitor,1,149.99,04/13/19 00:53,"987 14th St, Portland, OR 97035" -188281,Apple Airpods Headphones,1,150,04/23/19 22:30,"974 11th St, Seattle, WA 98101" -188282,USB-C Charging Cable,1,11.95,04/30/19 17:28,"718 Washington St, Dallas, TX 75001" -188283,Apple Airpods Headphones,1,150,04/18/19 16:55,"220 Ridge St, Austin, TX 73301" -188284,27in FHD Monitor,1,149.99,04/18/19 09:27,"10 Johnson St, Los Angeles, CA 90001" -188285,34in Ultrawide Monitor,1,379.99,04/04/19 17:45,"177 Chestnut St, Los Angeles, CA 90001" -188286,34in Ultrawide Monitor,1,379.99,04/24/19 14:41,"847 5th St, Boston, MA 02215" -188287,Apple Airpods Headphones,1,150,04/04/19 18:27,"133 Hickory St, Boston, MA 02215" -188288,Bose SoundSport Headphones,1,99.99,04/25/19 17:28,"250 Adams St, San Francisco, CA 94016" -188289,Apple Airpods Headphones,1,150,04/27/19 11:48,"391 Lake St, Boston, MA 02215" -188290,USB-C Charging Cable,1,11.95,04/23/19 11:37,"105 Ridge St, Atlanta, GA 30301" -188291,AA Batteries (4-pack),1,3.84,04/07/19 08:26,"82 Cherry St, Boston, MA 02215" -188292,AAA Batteries (4-pack),1,2.99,04/16/19 13:54,"481 Park St, San Francisco, CA 94016" -188293,USB-C Charging Cable,2,11.95,04/19/19 21:30,"942 10th St, Portland, OR 97035" -188294,AAA Batteries (4-pack),2,2.99,04/13/19 08:49,"580 Lincoln St, New York City, NY 10001" -188295,USB-C Charging Cable,1,11.95,04/13/19 16:50,"186 Jefferson St, Portland, OR 97035" -188296,Bose SoundSport Headphones,1,99.99,04/03/19 18:00,"331 Cherry St, San Francisco, CA 94016" -188297,27in FHD Monitor,1,149.99,04/19/19 01:06,"619 South St, Los Angeles, CA 90001" -188298,Lightning Charging Cable,2,14.95,04/22/19 21:47,"217 Pine St, Austin, TX 73301" -188299,Google Phone,1,600,04/13/19 21:24,"198 Adams St, Boston, MA 02215" -188300,27in FHD Monitor,1,149.99,04/28/19 06:03,"738 Cedar St, San Francisco, CA 94016" -188301,ThinkPad Laptop,1,999.99,04/18/19 14:42,"418 West St, Los Angeles, CA 90001" -188302,USB-C Charging Cable,1,11.95,04/09/19 18:25,"68 Elm St, New York City, NY 10001" -188303,iPhone,1,700,04/25/19 00:34,"211 10th St, San Francisco, CA 94016" -188303,Apple Airpods Headphones,1,150,04/25/19 00:34,"211 10th St, San Francisco, CA 94016" -188304,Bose SoundSport Headphones,1,99.99,04/26/19 10:37,"217 Walnut St, New York City, NY 10001" -188305,AA Batteries (4-pack),1,3.84,04/28/19 12:12,"200 1st St, Los Angeles, CA 90001" -188306,Bose SoundSport Headphones,1,99.99,04/17/19 12:39,"111 Lincoln St, San Francisco, CA 94016" -188307,20in Monitor,1,109.99,04/26/19 16:07,"633 Forest St, San Francisco, CA 94016" -188308,AAA Batteries (4-pack),4,2.99,04/30/19 17:03,"470 Meadow St, San Francisco, CA 94016" -188309,AA Batteries (4-pack),1,3.84,04/22/19 19:17,"879 Cherry St, Atlanta, GA 30301" -188310,34in Ultrawide Monitor,1,379.99,04/11/19 07:21,"462 North St, Dallas, TX 75001" -188311,27in FHD Monitor,1,149.99,04/10/19 10:13,"430 Jefferson St, Los Angeles, CA 90001" -188312,AA Batteries (4-pack),2,3.84,04/30/19 09:34,"292 Walnut St, Boston, MA 02215" -188313,Lightning Charging Cable,1,14.95,04/23/19 09:58,"979 Hickory St, Atlanta, GA 30301" -188314,USB-C Charging Cable,1,11.95,04/25/19 10:03,"8 Lakeview St, San Francisco, CA 94016" -188315,Apple Airpods Headphones,1,150,04/17/19 23:04,"302 2nd St, Boston, MA 02215" -188316,Apple Airpods Headphones,1,150,04/09/19 00:47,"392 Walnut St, Seattle, WA 98101" -188317,Lightning Charging Cable,1,14.95,04/11/19 18:04,"917 Madison St, San Francisco, CA 94016" -188318,Apple Airpods Headphones,1,150,04/02/19 16:47,"443 Sunset St, Dallas, TX 75001" -188319,AAA Batteries (4-pack),1,2.99,04/04/19 22:25,"314 Dogwood St, Dallas, TX 75001" -188320,USB-C Charging Cable,1,11.95,04/18/19 15:23,"266 Park St, San Francisco, CA 94016" -188321,Wired Headphones,1,11.99,04/30/19 10:22,"365 Dogwood St, Seattle, WA 98101" -188322,USB-C Charging Cable,1,11.95,04/03/19 08:01,"310 13th St, New York City, NY 10001" -188323,27in FHD Monitor,1,149.99,04/09/19 15:16,"206 Jackson St, Los Angeles, CA 90001" -188324,27in 4K Gaming Monitor,1,389.99,04/07/19 10:12,"822 9th St, Atlanta, GA 30301" -188325,Lightning Charging Cable,1,14.95,04/12/19 10:06,"319 Elm St, Atlanta, GA 30301" -188326,Bose SoundSport Headphones,1,99.99,04/21/19 20:20,"225 Park St, San Francisco, CA 94016" -188326,Lightning Charging Cable,1,14.95,04/21/19 20:20,"225 Park St, San Francisco, CA 94016" -188327,Macbook Pro Laptop,1,1700,04/17/19 17:17,"660 Chestnut St, Los Angeles, CA 90001" -188328,Google Phone,1,600,04/14/19 23:56,"613 Lincoln St, Austin, TX 73301" -188329,27in 4K Gaming Monitor,1,389.99,04/09/19 15:04,"177 Lake St, Seattle, WA 98101" -188330,Bose SoundSport Headphones,1,99.99,04/27/19 09:24,"286 Elm St, Seattle, WA 98101" -188331,USB-C Charging Cable,1,11.95,04/25/19 18:16,"324 Dogwood St, Portland, OR 97035" -188332,Vareebadd Phone,1,400,04/16/19 19:08,"346 7th St, New York City, NY 10001" -188332,USB-C Charging Cable,1,11.95,04/16/19 19:08,"346 7th St, New York City, NY 10001" -188333,Wired Headphones,1,11.99,04/06/19 19:39,"374 Jefferson St, Atlanta, GA 30301" -188334,AAA Batteries (4-pack),2,2.99,04/23/19 01:23,"875 Lincoln St, Los Angeles, CA 90001" -188335,Apple Airpods Headphones,1,150,04/05/19 23:03,"407 Highland St, Seattle, WA 98101" -188336,USB-C Charging Cable,1,11.95,04/18/19 02:12,"697 Maple St, San Francisco, CA 94016" -188337,AA Batteries (4-pack),1,3.84,04/27/19 13:56,"34 6th St, Seattle, WA 98101" -188338,Lightning Charging Cable,1,14.95,04/04/19 13:37,"12 Ridge St, San Francisco, CA 94016" -188339,ThinkPad Laptop,1,999.99,04/06/19 22:35,"560 12th St, Atlanta, GA 30301" -188340,Bose SoundSport Headphones,1,99.99,04/12/19 23:17,"386 Center St, Boston, MA 02215" -188340,Wired Headphones,1,11.99,04/12/19 23:17,"386 Center St, Boston, MA 02215" -188341,27in FHD Monitor,1,149.99,04/03/19 18:54,"836 1st St, Los Angeles, CA 90001" -188342,Bose SoundSport Headphones,1,99.99,04/26/19 12:45,"466 7th St, Boston, MA 02215" -188343,iPhone,1,700,04/22/19 18:46,"172 5th St, Boston, MA 02215" -188343,Lightning Charging Cable,1,14.95,04/22/19 18:46,"172 5th St, Boston, MA 02215" -188344,27in 4K Gaming Monitor,1,389.99,04/29/19 23:46,"72 Jackson St, Portland, OR 97035" -188345,iPhone,1,700,04/03/19 22:37,"590 14th St, San Francisco, CA 94016" -188345,Lightning Charging Cable,1,14.95,04/03/19 22:37,"590 14th St, San Francisco, CA 94016" -188346,AA Batteries (4-pack),1,3.84,04/03/19 23:08,"633 Main St, New York City, NY 10001" -188347,Apple Airpods Headphones,1,150,04/05/19 14:00,"871 10th St, Los Angeles, CA 90001" -188348,Bose SoundSport Headphones,1,99.99,04/17/19 11:08,"169 7th St, San Francisco, CA 94016" -188349,Lightning Charging Cable,1,14.95,04/03/19 16:33,"50 4th St, San Francisco, CA 94016" -188350,Apple Airpods Headphones,1,150,04/25/19 16:40,"724 10th St, Boston, MA 02215" -188351,AAA Batteries (4-pack),1,2.99,04/15/19 07:05,"584 North St, Dallas, TX 75001" -188352,Lightning Charging Cable,1,14.95,04/23/19 11:17,"20 7th St, San Francisco, CA 94016" -188353,27in FHD Monitor,1,149.99,04/24/19 07:08,"36 Forest St, San Francisco, CA 94016" -188354,Wired Headphones,1,11.99,04/28/19 12:17,"54 River St, Boston, MA 02215" -188355,Lightning Charging Cable,1,14.95,04/27/19 11:39,"968 13th St, Boston, MA 02215" -188356,34in Ultrawide Monitor,1,379.99,04/18/19 23:38,"659 Hill St, Los Angeles, CA 90001" -188357,USB-C Charging Cable,1,11.95,04/30/19 19:56,"95 Highland St, Seattle, WA 98101" -188358,Wired Headphones,1,11.99,04/22/19 19:15,"404 South St, Boston, MA 02215" -188359,Apple Airpods Headphones,1,150,04/23/19 07:18,"899 Dogwood St, Portland, OR 97035" -188360,27in 4K Gaming Monitor,1,389.99,04/25/19 23:48,"453 Wilson St, Seattle, WA 98101" -188361,Lightning Charging Cable,1,14.95,04/18/19 09:05,"724 Forest St, San Francisco, CA 94016" -188362,AA Batteries (4-pack),1,3.84,04/06/19 22:35,"392 Madison St, New York City, NY 10001" -188363,Wired Headphones,1,11.99,04/23/19 09:15,"332 Meadow St, Dallas, TX 75001" -188364,AA Batteries (4-pack),1,3.84,04/13/19 14:23,"28 River St, New York City, NY 10001" -188365,Lightning Charging Cable,1,14.95,04/01/19 10:51,"47 Hill St, San Francisco, CA 94016" -188366,Apple Airpods Headphones,1,150,04/06/19 17:27,"821 13th St, Los Angeles, CA 90001" -188367,Bose SoundSport Headphones,1,99.99,04/11/19 09:09,"723 Main St, New York City, NY 10001" -188368,34in Ultrawide Monitor,1,379.99,04/25/19 23:45,"406 Park St, New York City, NY 10001" -188369,Google Phone,1,600,04/18/19 22:01,"346 Hill St, San Francisco, CA 94016" -188370,34in Ultrawide Monitor,1,379.99,04/16/19 21:09,"491 Johnson St, San Francisco, CA 94016" -188371,AAA Batteries (4-pack),1,2.99,04/21/19 13:45,"885 6th St, Dallas, TX 75001" -188372,AA Batteries (4-pack),2,3.84,04/11/19 13:15,"301 7th St, San Francisco, CA 94016" -188373,USB-C Charging Cable,2,11.95,04/24/19 21:49,"198 Washington St, San Francisco, CA 94016" -188374,Google Phone,1,600,04/25/19 23:53,"787 Jackson St, Seattle, WA 98101" -188374,USB-C Charging Cable,1,11.95,04/25/19 23:53,"787 Jackson St, Seattle, WA 98101" -188375,Lightning Charging Cable,1,14.95,04/24/19 15:32,"570 Highland St, San Francisco, CA 94016" -188376,Wired Headphones,1,11.99,04/07/19 04:24,"899 Meadow St, San Francisco, CA 94016" -188377,Flatscreen TV,1,300,04/22/19 08:23,"197 5th St, Seattle, WA 98101" -188378,AAA Batteries (4-pack),1,2.99,04/05/19 14:30,"818 1st St, Los Angeles, CA 90001" -188379,AAA Batteries (4-pack),1,2.99,04/15/19 21:05,"846 8th St, Los Angeles, CA 90001" -188380,Bose SoundSport Headphones,1,99.99,04/14/19 18:48,"344 2nd St, Los Angeles, CA 90001" -188380,34in Ultrawide Monitor,1,379.99,04/14/19 18:48,"344 2nd St, Los Angeles, CA 90001" -188381,Wired Headphones,1,11.99,04/14/19 16:53,"245 West St, Los Angeles, CA 90001" -188382,Wired Headphones,1,11.99,04/12/19 20:15,"686 Hickory St, San Francisco, CA 94016" -188383,Bose SoundSport Headphones,1,99.99,04/03/19 15:09,"853 Willow St, Los Angeles, CA 90001" -188384,Apple Airpods Headphones,1,150,04/21/19 22:51,"476 Church St, Boston, MA 02215" -188385,Lightning Charging Cable,1,14.95,04/06/19 15:06,"977 8th St, Los Angeles, CA 90001" -188386,27in 4K Gaming Monitor,1,389.99,04/02/19 07:49,"419 Willow St, Los Angeles, CA 90001" -188387,LG Dryer,1,600.0,04/04/19 14:43,"494 Hill St, San Francisco, CA 94016" -188388,Flatscreen TV,1,300,04/09/19 06:03,"773 River St, Los Angeles, CA 90001" -188389,Wired Headphones,1,11.99,04/07/19 13:35,"3 Hickory St, Austin, TX 73301" -188390,Apple Airpods Headphones,1,150,04/04/19 19:33,"24 Meadow St, Seattle, WA 98101" -188391,Wired Headphones,1,11.99,04/05/19 08:55,"408 Washington St, New York City, NY 10001" -188392,Bose SoundSport Headphones,1,99.99,04/22/19 12:07,"189 River St, New York City, NY 10001" -188393,Wired Headphones,2,11.99,04/01/19 21:34,"736 Jackson St, Austin, TX 73301" -188394,Wired Headphones,2,11.99,04/25/19 18:48,"76 Pine St, Portland, ME 04101" -188395,Lightning Charging Cable,2,14.95,04/02/19 07:07,"516 Lakeview St, New York City, NY 10001" -188396,AAA Batteries (4-pack),1,2.99,04/03/19 00:10,"474 1st St, Boston, MA 02215" -188397,USB-C Charging Cable,1,11.95,04/30/19 08:21,"173 8th St, Los Angeles, CA 90001" -188398,20in Monitor,1,109.99,04/26/19 18:32,"650 Lake St, San Francisco, CA 94016" -188399,Bose SoundSport Headphones,1,99.99,04/04/19 16:47,"976 Cedar St, Portland, ME 04101" -188400,USB-C Charging Cable,1,11.95,04/17/19 01:13,"477 North St, Los Angeles, CA 90001" -188401,Macbook Pro Laptop,1,1700,04/05/19 12:56,"265 Walnut St, New York City, NY 10001" -188402,AA Batteries (4-pack),1,3.84,04/14/19 18:03,"63 14th St, Dallas, TX 75001" -188403,Lightning Charging Cable,1,14.95,04/17/19 11:46,"682 Walnut St, Los Angeles, CA 90001" -188404,AA Batteries (4-pack),1,3.84,04/06/19 17:28,"479 Main St, Atlanta, GA 30301" -188405,AA Batteries (4-pack),1,3.84,04/05/19 23:33,"148 1st St, Seattle, WA 98101" -188406,27in 4K Gaming Monitor,1,389.99,04/30/19 20:09,"525 Adams St, Dallas, TX 75001" -188407,USB-C Charging Cable,1,11.95,04/23/19 08:33,"178 8th St, Austin, TX 73301" -188408,Lightning Charging Cable,1,14.95,04/13/19 13:37,"582 Johnson St, Austin, TX 73301" -188409,iPhone,1,700,04/01/19 19:54,"879 Cedar St, San Francisco, CA 94016" -188410,AA Batteries (4-pack),4,3.84,04/26/19 17:02,"233 Elm St, San Francisco, CA 94016" -188410,Lightning Charging Cable,1,14.95,04/26/19 17:02,"233 Elm St, San Francisco, CA 94016" -188411,AAA Batteries (4-pack),1,2.99,04/19/19 19:08,"635 9th St, Los Angeles, CA 90001" -188412,USB-C Charging Cable,1,11.95,04/27/19 13:25,"329 4th St, Portland, OR 97035" -188413,AAA Batteries (4-pack),1,2.99,04/30/19 11:51,"528 Johnson St, New York City, NY 10001" -188414,Bose SoundSport Headphones,1,99.99,04/09/19 19:59,"279 Chestnut St, Atlanta, GA 30301" -188415,Lightning Charging Cable,2,14.95,04/07/19 09:18,"365 1st St, San Francisco, CA 94016" -188416,Bose SoundSport Headphones,1,99.99,04/01/19 23:10,"308 Maple St, Portland, OR 97035" -188417,Macbook Pro Laptop,1,1700,04/25/19 13:03,"836 Lakeview St, Atlanta, GA 30301" -188418,Apple Airpods Headphones,1,150,04/15/19 21:43,"702 South St, Austin, TX 73301" -188419,Wired Headphones,1,11.99,04/08/19 07:26,"199 Elm St, Dallas, TX 75001" -188420,iPhone,1,700,04/30/19 11:13,"765 Main St, San Francisco, CA 94016" -188421,Apple Airpods Headphones,1,150,04/15/19 09:27,"187 Main St, San Francisco, CA 94016" -188422,Bose SoundSport Headphones,1,99.99,04/15/19 18:57,"320 Church St, New York City, NY 10001" -188423,AAA Batteries (4-pack),1,2.99,04/15/19 11:15,"273 Cedar St, Dallas, TX 75001" -188424,AA Batteries (4-pack),3,3.84,04/01/19 15:23,"731 Willow St, Austin, TX 73301" -188425,Lightning Charging Cable,2,14.95,04/13/19 02:07,"717 Church St, New York City, NY 10001" -188426,Wired Headphones,1,11.99,04/09/19 13:46,"662 Walnut St, Los Angeles, CA 90001" -188427,USB-C Charging Cable,1,11.95,04/01/19 20:26,"395 Center St, Boston, MA 02215" -188428,Wired Headphones,1,11.99,04/03/19 02:12,"616 9th St, Dallas, TX 75001" -188429,27in 4K Gaming Monitor,1,389.99,04/06/19 16:03,"632 Sunset St, New York City, NY 10001" -188430,AA Batteries (4-pack),1,3.84,04/04/19 06:32,"793 Washington St, Austin, TX 73301" -188431,AA Batteries (4-pack),1,3.84,04/17/19 08:33,"80 Jackson St, San Francisco, CA 94016" -188432,Wired Headphones,3,11.99,04/05/19 11:19,"553 13th St, Portland, OR 97035" -188433,iPhone,1,700,04/30/19 14:46,"753 Washington St, Atlanta, GA 30301" -188434,27in 4K Gaming Monitor,1,389.99,04/28/19 22:25,"948 Sunset St, San Francisco, CA 94016" -188435,20in Monitor,1,109.99,04/13/19 05:59,"107 Sunset St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -188436,USB-C Charging Cable,1,11.95,04/10/19 16:25,"708 7th St, New York City, NY 10001" -188437,27in 4K Gaming Monitor,1,389.99,04/10/19 06:02,"637 8th St, Seattle, WA 98101" -188438,iPhone,1,700,04/22/19 04:15,"574 Walnut St, San Francisco, CA 94016" -188439,AAA Batteries (4-pack),1,2.99,04/15/19 20:39,"303 Jefferson St, Los Angeles, CA 90001" -188440,USB-C Charging Cable,1,11.95,04/30/19 16:34,"971 River St, Los Angeles, CA 90001" -188441,Lightning Charging Cable,1,14.95,04/02/19 12:48,"111 North St, Los Angeles, CA 90001" -188442,AAA Batteries (4-pack),1,2.99,04/21/19 19:57,"491 Forest St, San Francisco, CA 94016" -188443,Bose SoundSport Headphones,1,99.99,04/17/19 09:32,"476 Johnson St, Boston, MA 02215" -188444,USB-C Charging Cable,1,11.95,04/03/19 13:29,"691 7th St, New York City, NY 10001" -188445,Apple Airpods Headphones,1,150,04/05/19 01:47,"312 Hickory St, Boston, MA 02215" -188446,27in FHD Monitor,1,149.99,04/05/19 13:29,"372 Ridge St, Seattle, WA 98101" -188447,AA Batteries (4-pack),1,3.84,04/14/19 08:22,"447 7th St, San Francisco, CA 94016" -188448,27in FHD Monitor,1,149.99,04/05/19 04:50,"154 Highland St, New York City, NY 10001" -188449,AA Batteries (4-pack),1,3.84,04/10/19 01:33,"494 11th St, Los Angeles, CA 90001" -188450,USB-C Charging Cable,1,11.95,04/04/19 20:54,"330 South St, San Francisco, CA 94016" -188451,Wired Headphones,1,11.99,04/15/19 19:32,"30 Church St, New York City, NY 10001" -188452,AAA Batteries (4-pack),1,2.99,04/22/19 16:13,"534 Sunset St, San Francisco, CA 94016" -188453,Lightning Charging Cable,1,14.95,04/26/19 14:37,"200 Highland St, San Francisco, CA 94016" -188454,iPhone,1,700,04/22/19 09:16,"799 7th St, Dallas, TX 75001" -188455,USB-C Charging Cable,1,11.95,04/29/19 19:40,"982 Cedar St, San Francisco, CA 94016" -188456,Lightning Charging Cable,1,14.95,04/27/19 19:14,"956 Spruce St, Los Angeles, CA 90001" -188457,Lightning Charging Cable,1,14.95,04/02/19 12:00,"652 Chestnut St, Seattle, WA 98101" -188458,USB-C Charging Cable,2,11.95,04/19/19 18:23,"899 Center St, Atlanta, GA 30301" -188459,27in 4K Gaming Monitor,1,389.99,04/03/19 07:22,"559 6th St, Atlanta, GA 30301" -188460,Lightning Charging Cable,1,14.95,04/10/19 09:54,"136 Park St, Los Angeles, CA 90001" -188461,AAA Batteries (4-pack),1,2.99,04/22/19 08:28,"851 Cedar St, Dallas, TX 75001" -188462,Lightning Charging Cable,1,14.95,04/03/19 14:18,"473 11th St, San Francisco, CA 94016" -188463,Wired Headphones,1,11.99,04/16/19 19:52,"430 Cherry St, Seattle, WA 98101" -188464,USB-C Charging Cable,1,11.95,04/11/19 06:48,"428 7th St, San Francisco, CA 94016" -188465,iPhone,1,700,04/06/19 03:15,"271 Elm St, New York City, NY 10001" -188465,Apple Airpods Headphones,1,150,04/06/19 03:15,"271 Elm St, New York City, NY 10001" -188466,Macbook Pro Laptop,1,1700,04/21/19 19:38,"133 Main St, Portland, OR 97035" -188467,AA Batteries (4-pack),1,3.84,04/13/19 20:36,"18 Willow St, Dallas, TX 75001" -188468,Google Phone,1,600,04/01/19 16:17,"742 Elm St, New York City, NY 10001" -188469,Lightning Charging Cable,1,14.95,04/24/19 19:16,"952 Walnut St, San Francisco, CA 94016" -188470,Apple Airpods Headphones,1,150,04/19/19 17:12,"113 4th St, New York City, NY 10001" -188471,iPhone,1,700,04/12/19 07:53,"661 Cedar St, New York City, NY 10001" -188472,USB-C Charging Cable,1,11.95,04/06/19 16:47,"50 North St, San Francisco, CA 94016" -188473,AA Batteries (4-pack),1,3.84,04/01/19 16:52,"850 Forest St, Los Angeles, CA 90001" -188474,Wired Headphones,1,11.99,04/02/19 17:53,"880 West St, San Francisco, CA 94016" -188475,USB-C Charging Cable,1,11.95,04/19/19 12:53,"18 Forest St, Boston, MA 02215" -188476,Apple Airpods Headphones,1,150,04/19/19 11:14,"128 West St, Boston, MA 02215" -188477,ThinkPad Laptop,1,999.99,04/15/19 12:31,"561 Madison St, Boston, MA 02215" -188478,Lightning Charging Cable,1,14.95,04/19/19 20:43,"624 Hill St, Dallas, TX 75001" -188479,ThinkPad Laptop,1,999.99,04/03/19 21:47,"481 11th St, New York City, NY 10001" -188480,USB-C Charging Cable,1,11.95,04/13/19 13:31,"133 13th St, Boston, MA 02215" -188481,USB-C Charging Cable,1,11.95,04/24/19 22:53,"177 Madison St, New York City, NY 10001" -188482,iPhone,1,700,04/15/19 18:17,"397 South St, New York City, NY 10001" -188482,Wired Headphones,1,11.99,04/15/19 18:17,"397 South St, New York City, NY 10001" -188483,Apple Airpods Headphones,1,150,04/19/19 10:38,"276 6th St, San Francisco, CA 94016" -188484,AA Batteries (4-pack),2,3.84,04/23/19 20:33,"431 13th St, Los Angeles, CA 90001" -188485,AAA Batteries (4-pack),1,2.99,04/18/19 18:35,"529 Spruce St, Los Angeles, CA 90001" -188486,Wired Headphones,3,11.99,04/25/19 01:37,"782 14th St, Atlanta, GA 30301" -188487,Lightning Charging Cable,1,14.95,04/13/19 12:19,"714 Johnson St, Los Angeles, CA 90001" -188488,AAA Batteries (4-pack),1,2.99,04/30/19 12:26,"737 Dogwood St, Seattle, WA 98101" -188489,AAA Batteries (4-pack),1,2.99,04/30/19 16:08,"889 Johnson St, Atlanta, GA 30301" -188490,34in Ultrawide Monitor,1,379.99,04/14/19 18:59,"715 Meadow St, Dallas, TX 75001" -188491,AA Batteries (4-pack),1,3.84,04/20/19 19:40,"397 Forest St, Dallas, TX 75001" -188492,27in 4K Gaming Monitor,1,389.99,04/11/19 17:03,"169 6th St, San Francisco, CA 94016" -188493,Wired Headphones,1,11.99,04/13/19 12:15,"444 Forest St, Seattle, WA 98101" -188494,AAA Batteries (4-pack),1,2.99,04/27/19 01:49,"845 Walnut St, Atlanta, GA 30301" -188495,Apple Airpods Headphones,1,150,04/22/19 14:46,"52 South St, Seattle, WA 98101" -188496,USB-C Charging Cable,1,11.95,04/11/19 08:30,"579 Wilson St, New York City, NY 10001" -188497,Lightning Charging Cable,1,14.95,04/12/19 20:25,"814 Hickory St, Los Angeles, CA 90001" -188498,AAA Batteries (4-pack),1,2.99,04/24/19 18:24,"579 1st St, Boston, MA 02215" -188499,Wired Headphones,1,11.99,04/21/19 19:04,"818 Maple St, Portland, OR 97035" -188500,Lightning Charging Cable,1,14.95,04/28/19 12:07,"166 Pine St, New York City, NY 10001" -188501,AAA Batteries (4-pack),1,2.99,04/25/19 20:24,"739 Main St, Dallas, TX 75001" -188502,Google Phone,1,600,04/05/19 11:12,"152 Madison St, Los Angeles, CA 90001" -188503,Wired Headphones,1,11.99,04/08/19 12:17,"279 14th St, Boston, MA 02215" -188504,AA Batteries (4-pack),3,3.84,04/29/19 18:37,"684 11th St, San Francisco, CA 94016" -188505,Lightning Charging Cable,1,14.95,04/21/19 17:26,"107 Jackson St, Atlanta, GA 30301" -188506,AA Batteries (4-pack),1,3.84,04/30/19 02:30,"385 Ridge St, New York City, NY 10001" -188507,Wired Headphones,1,11.99,04/23/19 03:25,"39 Lake St, San Francisco, CA 94016" -188508,Google Phone,1,600,04/30/19 18:22,"52 Wilson St, San Francisco, CA 94016" -188509,AAA Batteries (4-pack),1,2.99,04/11/19 10:17,"280 Washington St, San Francisco, CA 94016" -188510,Lightning Charging Cable,1,14.95,04/23/19 14:20,"17 Willow St, Portland, OR 97035" -188511,Flatscreen TV,1,300,04/23/19 19:36,"331 10th St, Los Angeles, CA 90001" -188512,34in Ultrawide Monitor,1,379.99,04/26/19 07:09,"151 Willow St, Dallas, TX 75001" -188513,Apple Airpods Headphones,1,150,04/28/19 07:46,"957 Adams St, New York City, NY 10001" -188513,USB-C Charging Cable,1,11.95,04/28/19 07:46,"957 Adams St, New York City, NY 10001" -188514,USB-C Charging Cable,1,11.95,04/15/19 13:47,"832 Johnson St, Dallas, TX 75001" -188515,Wired Headphones,1,11.99,04/01/19 10:51,"725 Washington St, San Francisco, CA 94016" -188516,34in Ultrawide Monitor,1,379.99,04/12/19 00:51,"173 Main St, San Francisco, CA 94016" -188517,Lightning Charging Cable,1,14.95,04/29/19 13:51,"332 Chestnut St, San Francisco, CA 94016" -188518,USB-C Charging Cable,1,11.95,04/03/19 09:48,"156 West St, Portland, ME 04101" -188519,Lightning Charging Cable,1,14.95,04/27/19 16:55,"487 9th St, Portland, OR 97035" -188520,27in 4K Gaming Monitor,1,389.99,04/24/19 16:52,"519 Pine St, San Francisco, CA 94016" -188520,34in Ultrawide Monitor,1,379.99,04/24/19 16:52,"519 Pine St, San Francisco, CA 94016" -188521,27in FHD Monitor,1,149.99,04/11/19 18:42,"836 2nd St, Portland, OR 97035" -188522,Bose SoundSport Headphones,1,99.99,04/01/19 10:36,"534 River St, Los Angeles, CA 90001" -188523,ThinkPad Laptop,1,999.99,04/23/19 08:58,"286 Maple St, Boston, MA 02215" -188524,Wired Headphones,1,11.99,04/08/19 19:21,"719 Hickory St, San Francisco, CA 94016" -188525,Lightning Charging Cable,1,14.95,04/20/19 20:55,"208 Dogwood St, San Francisco, CA 94016" -188526,Google Phone,1,600,04/11/19 12:57,"744 Lincoln St, New York City, NY 10001" -188527,20in Monitor,1,109.99,04/17/19 22:31,"217 Maple St, Dallas, TX 75001" -188528,AA Batteries (4-pack),1,3.84,04/07/19 19:46,"486 Jefferson St, Los Angeles, CA 90001" -188529,Wired Headphones,1,11.99,04/30/19 18:02,"611 Maple St, New York City, NY 10001" -188530,Lightning Charging Cable,1,14.95,04/03/19 13:03,"566 9th St, Portland, OR 97035" -188531,AA Batteries (4-pack),1,3.84,04/08/19 05:22,"522 Maple St, Austin, TX 73301" -188532,Bose SoundSport Headphones,1,99.99,04/02/19 10:47,"119 Forest St, Austin, TX 73301" -188533,Vareebadd Phone,1,400,04/16/19 20:17,"660 Center St, Seattle, WA 98101" -188533,USB-C Charging Cable,1,11.95,04/16/19 20:17,"660 Center St, Seattle, WA 98101" -188533,Wired Headphones,1,11.99,04/16/19 20:17,"660 Center St, Seattle, WA 98101" -188534,Apple Airpods Headphones,1,150,04/22/19 14:20,"583 Pine St, San Francisco, CA 94016" -188535,Lightning Charging Cable,1,14.95,04/01/19 08:18,"799 Adams St, New York City, NY 10001" -188536,AA Batteries (4-pack),1,3.84,04/13/19 18:47,"575 Jefferson St, Dallas, TX 75001" -188537,Apple Airpods Headphones,1,150,04/05/19 14:05,"104 Cedar St, San Francisco, CA 94016" -188538,Google Phone,1,600,04/25/19 10:17,"385 7th St, New York City, NY 10001" -188539,Bose SoundSport Headphones,1,99.99,04/01/19 14:08,"372 9th St, Los Angeles, CA 90001" -188540,Bose SoundSport Headphones,1,99.99,04/19/19 17:02,"446 Church St, New York City, NY 10001" -188541,Apple Airpods Headphones,1,150,04/18/19 16:20,"925 Sunset St, Portland, OR 97035" -188541,Macbook Pro Laptop,1,1700,04/18/19 16:20,"925 Sunset St, Portland, OR 97035" -188542,34in Ultrawide Monitor,1,379.99,04/16/19 11:30,"342 Hickory St, New York City, NY 10001" -188543,AAA Batteries (4-pack),1,2.99,04/10/19 21:57,"117 Dogwood St, San Francisco, CA 94016" -188543,Macbook Pro Laptop,1,1700,04/10/19 21:57,"117 Dogwood St, San Francisco, CA 94016" -188544,Wired Headphones,1,11.99,04/11/19 19:48,"895 Ridge St, San Francisco, CA 94016" -188545,Apple Airpods Headphones,1,150,04/27/19 15:50,"420 Center St, San Francisco, CA 94016" -188546,34in Ultrawide Monitor,1,379.99,04/15/19 10:47,"452 Highland St, Seattle, WA 98101" -188547,Lightning Charging Cable,1,14.95,04/04/19 11:47,"816 Jefferson St, Boston, MA 02215" -188548,LG Washing Machine,1,600.0,04/22/19 14:29,"704 Jefferson St, Los Angeles, CA 90001" -188549,ThinkPad Laptop,1,999.99,04/24/19 19:47,"519 Lake St, Seattle, WA 98101" -188550,Lightning Charging Cable,1,14.95,04/12/19 11:48,"863 Adams St, San Francisco, CA 94016" -188551,AAA Batteries (4-pack),4,2.99,04/18/19 08:33,"953 4th St, New York City, NY 10001" -188552,USB-C Charging Cable,2,11.95,04/14/19 16:55,"60 8th St, Seattle, WA 98101" -188553,AAA Batteries (4-pack),1,2.99,04/04/19 16:32,"410 Washington St, New York City, NY 10001" -188554,27in FHD Monitor,1,149.99,04/19/19 11:35,"638 12th St, San Francisco, CA 94016" -188555,27in FHD Monitor,1,149.99,04/03/19 10:36,"675 Ridge St, Boston, MA 02215" -188556,Lightning Charging Cable,1,14.95,04/30/19 23:49,"212 Wilson St, San Francisco, CA 94016" -188557,Bose SoundSport Headphones,1,99.99,04/08/19 23:54,"870 Cedar St, New York City, NY 10001" -188558,Lightning Charging Cable,1,14.95,04/26/19 11:07,"222 South St, New York City, NY 10001" -188559,iPhone,1,700,04/17/19 22:26,"159 4th St, Atlanta, GA 30301" -188560,Macbook Pro Laptop,1,1700,04/04/19 10:43,"937 Hickory St, Seattle, WA 98101" -188561,Google Phone,1,600,04/10/19 10:50,"393 Dogwood St, New York City, NY 10001" -188562,34in Ultrawide Monitor,1,379.99,04/28/19 08:56,"981 9th St, Portland, OR 97035" -188563,Wired Headphones,1,11.99,04/18/19 11:10,"383 Johnson St, San Francisco, CA 94016" -188564,27in FHD Monitor,1,149.99,04/04/19 14:05,"138 Lakeview St, San Francisco, CA 94016" -188565,Flatscreen TV,1,300,04/23/19 01:18,"980 Forest St, San Francisco, CA 94016" -188566,27in FHD Monitor,1,149.99,04/15/19 18:03,"542 6th St, Boston, MA 02215" -188567,Lightning Charging Cable,1,14.95,04/26/19 15:36,"485 Cedar St, Los Angeles, CA 90001" -188568,USB-C Charging Cable,1,11.95,04/23/19 22:44,"955 Spruce St, Boston, MA 02215" -188569,AA Batteries (4-pack),1,3.84,04/12/19 17:30,"802 Meadow St, San Francisco, CA 94016" -188570,AA Batteries (4-pack),1,3.84,04/01/19 22:08,"953 Johnson St, Dallas, TX 75001" -188571,27in FHD Monitor,1,149.99,04/30/19 15:39,"997 7th St, San Francisco, CA 94016" -188572,AA Batteries (4-pack),1,3.84,04/09/19 00:13,"354 Washington St, Los Angeles, CA 90001" -188573,AAA Batteries (4-pack),2,2.99,04/29/19 16:40,"943 11th St, Seattle, WA 98101" -188574,Bose SoundSport Headphones,1,99.99,04/06/19 23:31,"837 Chestnut St, Dallas, TX 75001" -188575,Wired Headphones,2,11.99,04/07/19 23:03,"535 Lakeview St, Boston, MA 02215" -188576,Apple Airpods Headphones,1,150,04/23/19 12:41,"392 Adams St, Dallas, TX 75001" -188577,AAA Batteries (4-pack),3,2.99,04/17/19 14:30,"772 Lincoln St, Los Angeles, CA 90001" -188578,Wired Headphones,1,11.99,04/21/19 08:25,"379 Hill St, Dallas, TX 75001" -188579,USB-C Charging Cable,1,11.95,04/28/19 21:35,"429 Pine St, San Francisco, CA 94016" -188580,Wired Headphones,1,11.99,04/18/19 14:55,"601 Jackson St, Los Angeles, CA 90001" -188581,iPhone,1,700,04/09/19 16:03,"626 Lakeview St, Boston, MA 02215" -188581,Lightning Charging Cable,1,14.95,04/09/19 16:03,"626 Lakeview St, Boston, MA 02215" -188582,Bose SoundSport Headphones,1,99.99,04/27/19 15:59,"332 Jackson St, San Francisco, CA 94016" -188582,27in FHD Monitor,1,149.99,04/27/19 15:59,"332 Jackson St, San Francisco, CA 94016" -188583,AA Batteries (4-pack),1,3.84,04/15/19 15:53,"988 Church St, Boston, MA 02215" -188584,Wired Headphones,1,11.99,04/06/19 20:28,"53 Ridge St, Austin, TX 73301" -188585,AAA Batteries (4-pack),1,2.99,04/22/19 17:57,"722 Willow St, Los Angeles, CA 90001" -188586,AA Batteries (4-pack),1,3.84,04/04/19 18:33,"914 Church St, San Francisco, CA 94016" -188587,Wired Headphones,1,11.99,04/17/19 19:58,"945 Church St, Austin, TX 73301" -188588,AA Batteries (4-pack),2,3.84,04/03/19 19:11,"694 Spruce St, Los Angeles, CA 90001" -188589,iPhone,1,700,04/01/19 21:23,"454 Madison St, New York City, NY 10001" -188589,Lightning Charging Cable,1,14.95,04/01/19 21:23,"454 Madison St, New York City, NY 10001" -188590,AA Batteries (4-pack),3,3.84,04/10/19 15:48,"666 4th St, New York City, NY 10001" -188591,27in 4K Gaming Monitor,1,389.99,04/28/19 13:28,"574 14th St, Atlanta, GA 30301" -188592,Lightning Charging Cable,1,14.95,04/24/19 13:46,"281 10th St, New York City, NY 10001" -188593,27in 4K Gaming Monitor,1,389.99,04/12/19 14:06,"527 Cherry St, Dallas, TX 75001" -188594,Wired Headphones,1,11.99,04/01/19 16:05,"189 7th St, Dallas, TX 75001" -188595,Wired Headphones,1,11.99,04/10/19 16:01,"272 12th St, Los Angeles, CA 90001" -188596,Apple Airpods Headphones,1,150,04/24/19 00:03,"837 Lake St, New York City, NY 10001" -188597,20in Monitor,1,109.99,04/05/19 14:57,"196 5th St, Atlanta, GA 30301" -188598,USB-C Charging Cable,1,11.95,04/12/19 09:05,"796 Highland St, Seattle, WA 98101" -188598,Macbook Pro Laptop,1,1700,04/12/19 09:05,"796 Highland St, Seattle, WA 98101" -188599,iPhone,1,700,04/26/19 12:01,"698 Lakeview St, Boston, MA 02215" -188600,USB-C Charging Cable,1,11.95,04/11/19 18:34,"528 5th St, New York City, NY 10001" -188601,USB-C Charging Cable,2,11.95,04/11/19 00:31,"474 7th St, New York City, NY 10001" -188602,27in FHD Monitor,1,149.99,04/03/19 12:35,"629 Wilson St, New York City, NY 10001" -188603,iPhone,1,700,04/24/19 12:32,"980 10th St, San Francisco, CA 94016" -188604,Bose SoundSport Headphones,1,99.99,04/30/19 07:49,"582 14th St, New York City, NY 10001" -188605,Lightning Charging Cable,1,14.95,04/13/19 12:11,"432 Spruce St, Seattle, WA 98101" -188606,AA Batteries (4-pack),1,3.84,04/27/19 21:42,"757 South St, New York City, NY 10001" -,,,,, -188607,AAA Batteries (4-pack),1,2.99,04/08/19 21:27,"592 Wilson St, New York City, NY 10001" -188608,Apple Airpods Headphones,1,150,04/25/19 10:00,"642 Walnut St, Portland, OR 97035" -188609,34in Ultrawide Monitor,1,379.99,04/04/19 16:20,"989 14th St, Austin, TX 73301" -188610,AAA Batteries (4-pack),1,2.99,04/14/19 20:31,"147 14th St, Austin, TX 73301" -188611,Lightning Charging Cable,1,14.95,04/21/19 00:36,"888 Cherry St, New York City, NY 10001" -188612,AAA Batteries (4-pack),2,2.99,04/02/19 10:30,"647 West St, Austin, TX 73301" -188613,AA Batteries (4-pack),1,3.84,04/26/19 00:21,"209 7th St, San Francisco, CA 94016" -188614,Apple Airpods Headphones,1,150,04/06/19 15:15,"143 Center St, New York City, NY 10001" -188615,20in Monitor,1,109.99,05/01/19 00:31,"858 12th St, San Francisco, CA 94016" -188616,Lightning Charging Cable,1,14.95,04/12/19 14:28,"685 River St, San Francisco, CA 94016" -188617,iPhone,1,700,04/05/19 05:54,"727 9th St, San Francisco, CA 94016" -188618,Wired Headphones,1,11.99,04/01/19 10:18,"219 Park St, Austin, TX 73301" -188619,iPhone,1,700,04/09/19 13:41,"156 10th St, Boston, MA 02215" -188620,AA Batteries (4-pack),2,3.84,04/14/19 20:57,"222 Hickory St, San Francisco, CA 94016" -188621,Bose SoundSport Headphones,1,99.99,04/01/19 18:30,"59 Center St, Los Angeles, CA 90001" -188622,ThinkPad Laptop,1,999.99,04/07/19 13:18,"15 5th St, Atlanta, GA 30301" -188623,USB-C Charging Cable,1,11.95,04/14/19 00:08,"985 Spruce St, Los Angeles, CA 90001" -188624,Lightning Charging Cable,1,14.95,04/27/19 20:45,"172 Main St, Los Angeles, CA 90001" -188625,LG Washing Machine,1,600.0,04/09/19 16:29,"886 Jackson St, San Francisco, CA 94016" -188626,AA Batteries (4-pack),1,3.84,04/04/19 10:17,"639 Jefferson St, Portland, ME 04101" -188627,AAA Batteries (4-pack),1,2.99,04/27/19 19:32,"628 Maple St, San Francisco, CA 94016" -188628,AA Batteries (4-pack),1,3.84,04/02/19 19:57,"321 Walnut St, Atlanta, GA 30301" -188629,Lightning Charging Cable,1,14.95,04/27/19 23:22,"535 6th St, Los Angeles, CA 90001" -188630,Macbook Pro Laptop,1,1700,04/25/19 19:01,"616 Chestnut St, New York City, NY 10001" -188631,AAA Batteries (4-pack),1,2.99,04/08/19 21:28,"457 Jackson St, New York City, NY 10001" -188632,Bose SoundSport Headphones,1,99.99,04/13/19 18:00,"326 Spruce St, New York City, NY 10001" -188633,Apple Airpods Headphones,1,150,04/03/19 19:45,"144 7th St, San Francisco, CA 94016" -188634,USB-C Charging Cable,1,11.95,04/15/19 11:05,"54 Center St, Los Angeles, CA 90001" -188635,Bose SoundSport Headphones,1,99.99,04/29/19 11:03,"560 5th St, San Francisco, CA 94016" -188636,Lightning Charging Cable,1,14.95,04/05/19 13:22,"717 Ridge St, Portland, OR 97035" -188637,AAA Batteries (4-pack),1,2.99,04/14/19 14:34,"969 River St, Los Angeles, CA 90001" -188638,iPhone,1,700,04/30/19 23:10,"149 Chestnut St, Seattle, WA 98101" -188638,Wired Headphones,1,11.99,04/30/19 23:10,"149 Chestnut St, Seattle, WA 98101" -188639,iPhone,1,700,04/01/19 18:12,"631 Lake St, New York City, NY 10001" -188640,Wired Headphones,1,11.99,04/09/19 14:25,"887 1st St, San Francisco, CA 94016" -188641,LG Dryer,1,600.0,04/09/19 20:53,"246 Highland St, Los Angeles, CA 90001" -188642,AA Batteries (4-pack),1,3.84,04/07/19 15:53,"695 Main St, Dallas, TX 75001" -188643,Lightning Charging Cable,1,14.95,04/12/19 13:32,"848 5th St, Los Angeles, CA 90001" -188644,Google Phone,1,600,04/15/19 18:10,"316 Hill St, Seattle, WA 98101" -188645,USB-C Charging Cable,1,11.95,04/27/19 17:56,"217 Adams St, New York City, NY 10001" -188646,AA Batteries (4-pack),1,3.84,04/05/19 18:52,"257 13th St, Austin, TX 73301" -188647,34in Ultrawide Monitor,1,379.99,04/08/19 11:28,"687 5th St, Boston, MA 02215" -188648,27in FHD Monitor,1,149.99,04/21/19 19:42,"307 Johnson St, Seattle, WA 98101" -188649,Wired Headphones,1,11.99,04/30/19 17:28,"109 8th St, San Francisco, CA 94016" -188650,ThinkPad Laptop,1,999.99,04/25/19 13:02,"323 Meadow St, San Francisco, CA 94016" -188651,27in 4K Gaming Monitor,1,389.99,04/13/19 18:09,"430 Cedar St, Boston, MA 02215" -188652,USB-C Charging Cable,2,11.95,04/13/19 01:29,"94 Cedar St, New York City, NY 10001" -188653,Apple Airpods Headphones,1,150,04/14/19 12:12,"702 Hickory St, Los Angeles, CA 90001" -188654,27in FHD Monitor,1,149.99,04/03/19 14:58,"631 Forest St, San Francisco, CA 94016" -188655,27in FHD Monitor,1,149.99,04/14/19 01:36,"402 2nd St, Los Angeles, CA 90001" -188656,Wired Headphones,1,11.99,04/28/19 06:34,"8 9th St, Los Angeles, CA 90001" -188657,iPhone,1,700,04/04/19 08:28,"916 Sunset St, Portland, OR 97035" -188658,27in FHD Monitor,1,149.99,04/12/19 11:12,"799 Hickory St, San Francisco, CA 94016" -188659,Google Phone,1,600,04/18/19 17:15,"770 Chestnut St, Atlanta, GA 30301" -188660,Apple Airpods Headphones,1,150,04/15/19 09:46,"60 Main St, San Francisco, CA 94016" -188661,27in FHD Monitor,1,149.99,04/07/19 23:54,"950 Wilson St, Los Angeles, CA 90001" -188662,AAA Batteries (4-pack),1,2.99,04/23/19 08:15,"360 Maple St, San Francisco, CA 94016" -188663,USB-C Charging Cable,1,11.95,04/29/19 22:11,"490 12th St, Atlanta, GA 30301" -188664,Bose SoundSport Headphones,1,99.99,04/13/19 19:43,"506 Washington St, Dallas, TX 75001" -188665,USB-C Charging Cable,1,11.95,04/06/19 14:34,"550 Highland St, Los Angeles, CA 90001" -188666,27in FHD Monitor,1,149.99,04/01/19 18:29,"492 Cherry St, Portland, OR 97035" -188667,USB-C Charging Cable,1,11.95,04/18/19 20:06,"948 Meadow St, Dallas, TX 75001" -188668,Apple Airpods Headphones,1,150,04/17/19 13:30,"323 Wilson St, San Francisco, CA 94016" -188669,AA Batteries (4-pack),1,3.84,04/15/19 20:32,"813 Park St, Los Angeles, CA 90001" -188670,27in 4K Gaming Monitor,1,389.99,04/07/19 13:31,"299 1st St, Boston, MA 02215" -188671,Google Phone,1,600,04/29/19 12:21,"608 Wilson St, Atlanta, GA 30301" -188671,Wired Headphones,1,11.99,04/29/19 12:21,"608 Wilson St, Atlanta, GA 30301" -188672,iPhone,1,700,04/06/19 17:03,"831 Lincoln St, Boston, MA 02215" -188672,Lightning Charging Cable,1,14.95,04/06/19 17:03,"831 Lincoln St, Boston, MA 02215" -188673,USB-C Charging Cable,1,11.95,04/03/19 11:09,"139 11th St, San Francisco, CA 94016" -188674,Wired Headphones,1,11.99,04/01/19 16:41,"842 Cherry St, San Francisco, CA 94016" -188675,Wired Headphones,1,11.99,04/20/19 15:50,"131 Maple St, Atlanta, GA 30301" -188676,USB-C Charging Cable,1,11.95,04/05/19 14:20,"499 Cherry St, Portland, ME 04101" -188677,Wired Headphones,1,11.99,04/02/19 16:17,"404 Spruce St, Austin, TX 73301" -188678,AAA Batteries (4-pack),2,2.99,04/10/19 14:34,"51 14th St, Los Angeles, CA 90001" -188679,AAA Batteries (4-pack),1,2.99,04/12/19 02:36,"84 Pine St, San Francisco, CA 94016" -188680,Macbook Pro Laptop,1,1700,04/15/19 20:44,"880 Willow St, San Francisco, CA 94016" -188681,USB-C Charging Cable,1,11.95,04/13/19 11:43,"698 Jackson St, San Francisco, CA 94016" -188682,27in FHD Monitor,1,149.99,04/19/19 16:22,"181 1st St, San Francisco, CA 94016" -188683,Bose SoundSport Headphones,1,99.99,04/12/19 20:04,"419 Dogwood St, Los Angeles, CA 90001" -188684,Lightning Charging Cable,1,14.95,04/15/19 00:41,"445 Maple St, San Francisco, CA 94016" -188685,Wired Headphones,1,11.99,04/17/19 20:18,"302 Hickory St, New York City, NY 10001" -188686,Lightning Charging Cable,1,14.95,04/14/19 15:27,"903 South St, San Francisco, CA 94016" -188687,Flatscreen TV,1,300,04/25/19 09:17,"976 10th St, Seattle, WA 98101" -188688,27in FHD Monitor,1,149.99,04/30/19 12:05,"361 13th St, San Francisco, CA 94016" -188689,ThinkPad Laptop,1,999.99,04/04/19 08:32,"370 Church St, San Francisco, CA 94016" -188690,Lightning Charging Cable,1,14.95,04/10/19 11:45,"737 Forest St, Atlanta, GA 30301" -188691,Lightning Charging Cable,1,14.95,04/23/19 23:28,"795 Meadow St, San Francisco, CA 94016" -188692,USB-C Charging Cable,1,11.95,04/24/19 09:16,"17 14th St, Atlanta, GA 30301" -188693,Wired Headphones,1,11.99,04/02/19 19:05,"850 Park St, Seattle, WA 98101" -188694,27in 4K Gaming Monitor,1,389.99,04/04/19 22:59,"404 North St, Portland, ME 04101" -188695,AAA Batteries (4-pack),1,2.99,04/04/19 16:51,"853 Johnson St, Los Angeles, CA 90001" -188696,Wired Headphones,1,11.99,04/19/19 01:00,"780 1st St, Los Angeles, CA 90001" -188697,Apple Airpods Headphones,1,150,04/18/19 22:50,"302 4th St, Austin, TX 73301" -188698,34in Ultrawide Monitor,1,379.99,04/08/19 02:34,"255 12th St, San Francisco, CA 94016" -188699,AAA Batteries (4-pack),1,2.99,04/21/19 13:37,"400 10th St, Boston, MA 02215" -188700,27in FHD Monitor,1,149.99,04/13/19 12:54,"766 Sunset St, Atlanta, GA 30301" -188700,AAA Batteries (4-pack),1,2.99,04/13/19 12:54,"766 Sunset St, Atlanta, GA 30301" -188701,Bose SoundSport Headphones,1,99.99,04/30/19 14:55,"424 Main St, New York City, NY 10001" -188702,AAA Batteries (4-pack),1,2.99,04/13/19 04:59,"480 5th St, Atlanta, GA 30301" -188703,USB-C Charging Cable,1,11.95,04/22/19 14:35,"99 1st St, Portland, OR 97035" -188704,Wired Headphones,1,11.99,04/04/19 20:56,"898 12th St, Boston, MA 02215" -188705,AAA Batteries (4-pack),1,2.99,04/30/19 13:36,"482 Willow St, San Francisco, CA 94016" -188706,Wired Headphones,1,11.99,04/18/19 17:18,"358 Cedar St, Los Angeles, CA 90001" -188707,Wired Headphones,1,11.99,04/08/19 12:11,"320 Jefferson St, Seattle, WA 98101" -188708,iPhone,1,700,04/26/19 15:08,"148 Sunset St, Austin, TX 73301" -188709,AA Batteries (4-pack),1,3.84,04/12/19 22:24,"860 Sunset St, Seattle, WA 98101" -188710,ThinkPad Laptop,1,999.99,04/26/19 19:58,"345 Lake St, Atlanta, GA 30301" -188711,20in Monitor,1,109.99,04/02/19 18:25,"865 Adams St, San Francisco, CA 94016" -188712,Lightning Charging Cable,1,14.95,04/21/19 13:22,"596 13th St, Atlanta, GA 30301" -188713,USB-C Charging Cable,1,11.95,04/17/19 16:27,"161 Meadow St, San Francisco, CA 94016" -188714,Apple Airpods Headphones,1,150,04/12/19 08:19,"474 Madison St, New York City, NY 10001" -188715,USB-C Charging Cable,1,11.95,04/15/19 10:23,"998 Spruce St, Boston, MA 02215" -188716,Apple Airpods Headphones,1,150,04/29/19 13:10,"815 South St, Boston, MA 02215" -188717,AA Batteries (4-pack),1,3.84,04/13/19 07:37,"35 1st St, New York City, NY 10001" -188718,AA Batteries (4-pack),3,3.84,04/21/19 19:13,"331 Park St, Atlanta, GA 30301" -188719,iPhone,1,700,04/19/19 18:07,"100 Main St, San Francisco, CA 94016" -188720,Flatscreen TV,1,300,04/19/19 00:13,"741 River St, New York City, NY 10001" -188721,Wired Headphones,1,11.99,04/21/19 15:33,"670 Highland St, New York City, NY 10001" -188722,Apple Airpods Headphones,1,150,04/04/19 18:10,"356 Hill St, San Francisco, CA 94016" -188723,USB-C Charging Cable,1,11.95,04/17/19 14:55,"169 Dogwood St, San Francisco, CA 94016" -188724,AAA Batteries (4-pack),1,2.99,04/04/19 10:30,"430 8th St, San Francisco, CA 94016" -188725,USB-C Charging Cable,1,11.95,04/20/19 21:24,"907 Forest St, Seattle, WA 98101" -188726,Apple Airpods Headphones,1,150,04/24/19 05:03,"223 7th St, New York City, NY 10001" -188727,Bose SoundSport Headphones,1,99.99,04/16/19 00:47,"480 13th St, San Francisco, CA 94016" -188728,Lightning Charging Cable,1,14.95,04/22/19 18:12,"214 Jackson St, Los Angeles, CA 90001" -188729,34in Ultrawide Monitor,1,379.99,04/06/19 22:14,"106 Hickory St, Seattle, WA 98101" -188730,AA Batteries (4-pack),1,3.84,04/16/19 10:53,"351 Lakeview St, Los Angeles, CA 90001" -188731,USB-C Charging Cable,1,11.95,04/06/19 08:51,"866 Main St, Seattle, WA 98101" -188732,Wired Headphones,2,11.99,04/20/19 12:35,"392 Dogwood St, Dallas, TX 75001" -188733,27in FHD Monitor,1,149.99,04/29/19 16:08,"87 West St, San Francisco, CA 94016" -188734,Lightning Charging Cable,1,14.95,04/27/19 10:13,"556 5th St, Dallas, TX 75001" -188735,USB-C Charging Cable,1,11.95,04/23/19 14:31,"356 Lakeview St, San Francisco, CA 94016" -188736,Bose SoundSport Headphones,1,99.99,04/19/19 14:25,"522 9th St, Los Angeles, CA 90001" -188737,Lightning Charging Cable,1,14.95,04/30/19 09:26,"188 Meadow St, Austin, TX 73301" -188738,USB-C Charging Cable,2,11.95,04/17/19 22:28,"807 Johnson St, Portland, ME 04101" -188739,Bose SoundSport Headphones,1,99.99,04/28/19 21:48,"196 Hill St, Portland, ME 04101" -188740,AA Batteries (4-pack),1,3.84,04/10/19 18:51,"936 Wilson St, Boston, MA 02215" -188741,USB-C Charging Cable,1,11.95,04/26/19 11:04,"506 Meadow St, San Francisco, CA 94016" -188742,Flatscreen TV,1,300,04/07/19 14:30,"280 Church St, Los Angeles, CA 90001" -188743,AAA Batteries (4-pack),1,2.99,04/19/19 22:01,"395 7th St, Portland, ME 04101" -188744,Flatscreen TV,1,300,04/18/19 09:00,"59 Chestnut St, San Francisco, CA 94016" -188745,Wired Headphones,1,11.99,04/20/19 19:48,"292 11th St, Atlanta, GA 30301" -188746,AA Batteries (4-pack),1,3.84,04/07/19 09:29,"363 9th St, Los Angeles, CA 90001" -188747,Macbook Pro Laptop,1,1700,04/20/19 00:23,"336 Park St, Boston, MA 02215" -188748,Lightning Charging Cable,1,14.95,04/03/19 11:53,"657 Lincoln St, New York City, NY 10001" -188749,AA Batteries (4-pack),1,3.84,04/10/19 21:10,"357 Johnson St, Los Angeles, CA 90001" -188750,AAA Batteries (4-pack),2,2.99,04/27/19 09:31,"125 Jefferson St, Portland, OR 97035" -188751,Google Phone,1,600,04/01/19 19:48,"109 Hill St, San Francisco, CA 94016" -188751,USB-C Charging Cable,1,11.95,04/01/19 19:48,"109 Hill St, San Francisco, CA 94016" -188752,27in 4K Gaming Monitor,1,389.99,04/08/19 15:42,"756 11th St, Austin, TX 73301" -188753,Google Phone,1,600,04/09/19 00:17,"915 6th St, Boston, MA 02215" -188754,Flatscreen TV,1,300,04/30/19 20:25,"821 Adams St, San Francisco, CA 94016" -188755,Bose SoundSport Headphones,1,99.99,04/18/19 19:43,"880 South St, New York City, NY 10001" -188756,AA Batteries (4-pack),1,3.84,04/22/19 19:31,"457 Park St, Dallas, TX 75001" -188756,Apple Airpods Headphones,1,150,04/22/19 19:31,"457 Park St, Dallas, TX 75001" -188757,iPhone,1,700,04/14/19 16:21,"835 Madison St, New York City, NY 10001" -188758,AA Batteries (4-pack),2,3.84,04/12/19 14:57,"792 Chestnut St, Boston, MA 02215" -188759,Flatscreen TV,1,300,04/08/19 10:40,"377 Cedar St, Seattle, WA 98101" -188760,USB-C Charging Cable,1,11.95,04/18/19 18:23,"808 Ridge St, San Francisco, CA 94016" -188760,Wired Headphones,1,11.99,04/18/19 18:23,"808 Ridge St, San Francisco, CA 94016" -188761,Bose SoundSport Headphones,1,99.99,04/21/19 16:43,"927 5th St, Portland, OR 97035" -188762,USB-C Charging Cable,1,11.95,04/04/19 15:26,"640 6th St, Seattle, WA 98101" -188763,27in FHD Monitor,1,149.99,04/17/19 22:28,"28 Chestnut St, Atlanta, GA 30301" -188764,Apple Airpods Headphones,1,150,04/11/19 15:52,"467 Lakeview St, Seattle, WA 98101" -,,,,, -188765,AA Batteries (4-pack),1,3.84,04/29/19 12:01,"816 Dogwood St, San Francisco, CA 94016" -188766,Wired Headphones,1,11.99,04/10/19 13:11,"165 Willow St, Los Angeles, CA 90001" -188767,Wired Headphones,1,11.99,04/07/19 14:53,"700 5th St, Boston, MA 02215" -188768,Lightning Charging Cable,1,14.95,04/01/19 14:09,"686 West St, Dallas, TX 75001" -188769,Wired Headphones,1,11.99,04/29/19 18:48,"581 North St, Los Angeles, CA 90001" -188770,AAA Batteries (4-pack),1,2.99,04/20/19 10:30,"910 Pine St, Los Angeles, CA 90001" -188771,Bose SoundSport Headphones,1,99.99,04/04/19 09:53,"343 Wilson St, Los Angeles, CA 90001" -188772,Lightning Charging Cable,1,14.95,04/04/19 18:42,"594 7th St, Austin, TX 73301" -188773,Lightning Charging Cable,1,14.95,04/22/19 03:11,"259 Sunset St, Dallas, TX 75001" -188774,Lightning Charging Cable,1,14.95,04/24/19 00:59,"906 Lincoln St, New York City, NY 10001" -188775,Wired Headphones,1,11.99,04/29/19 15:42,"304 Adams St, Seattle, WA 98101" -188776,Flatscreen TV,1,300,04/09/19 11:59,"312 South St, Los Angeles, CA 90001" -188777,Wired Headphones,1,11.99,04/29/19 20:26,"127 8th St, San Francisco, CA 94016" -188778,Bose SoundSport Headphones,1,99.99,04/21/19 20:58,"806 Lincoln St, San Francisco, CA 94016" -188779,Apple Airpods Headphones,1,150,04/09/19 12:55,"421 5th St, Austin, TX 73301" -188780,Wired Headphones,1,11.99,04/11/19 15:55,"338 Spruce St, New York City, NY 10001" -188781,USB-C Charging Cable,1,11.95,04/11/19 13:56,"813 Johnson St, New York City, NY 10001" -188782,Google Phone,1,600,04/29/19 23:39,"994 14th St, New York City, NY 10001" -188782,Bose SoundSport Headphones,1,99.99,04/29/19 23:39,"994 14th St, New York City, NY 10001" -188783,27in 4K Gaming Monitor,1,389.99,04/14/19 16:50,"526 Meadow St, San Francisco, CA 94016" -188784,AAA Batteries (4-pack),3,2.99,04/17/19 11:33,"919 5th St, Los Angeles, CA 90001" -188785,Macbook Pro Laptop,1,1700,04/16/19 14:38,"917 Forest St, New York City, NY 10001" -188786,Lightning Charging Cable,1,14.95,04/21/19 10:25,"139 Forest St, San Francisco, CA 94016" -188787,Apple Airpods Headphones,1,150,04/24/19 15:18,"863 Spruce St, New York City, NY 10001" -188787,Lightning Charging Cable,1,14.95,04/24/19 15:18,"863 Spruce St, New York City, NY 10001" -188788,Macbook Pro Laptop,1,1700,04/25/19 04:56,"86 Park St, Los Angeles, CA 90001" -188789,Flatscreen TV,1,300,04/12/19 22:47,"614 Church St, San Francisco, CA 94016" -188790,34in Ultrawide Monitor,1,379.99,04/08/19 13:11,"271 Wilson St, Boston, MA 02215" -188791,Wired Headphones,1,11.99,04/20/19 22:52,"415 River St, Boston, MA 02215" -188792,Wired Headphones,1,11.99,04/25/19 19:36,"202 Lakeview St, Los Angeles, CA 90001" -188793,AAA Batteries (4-pack),3,2.99,04/07/19 14:47,"942 Adams St, New York City, NY 10001" -188794,AAA Batteries (4-pack),1,2.99,04/23/19 06:58,"739 5th St, Boston, MA 02215" -188795,Wired Headphones,1,11.99,04/09/19 00:55,"153 9th St, Los Angeles, CA 90001" -188796,USB-C Charging Cable,1,11.95,04/07/19 15:44,"929 Jefferson St, Boston, MA 02215" -188797,Lightning Charging Cable,1,14.95,04/01/19 14:17,"994 Hill St, Boston, MA 02215" -188798,AA Batteries (4-pack),1,3.84,04/28/19 07:57,"691 South St, San Francisco, CA 94016" -188799,AA Batteries (4-pack),1,3.84,04/26/19 09:01,"422 12th St, Atlanta, GA 30301" -188800,20in Monitor,1,109.99,04/13/19 11:07,"990 Willow St, San Francisco, CA 94016" -188801,Lightning Charging Cable,1,14.95,04/08/19 04:08,"459 Adams St, Los Angeles, CA 90001" -188802,34in Ultrawide Monitor,1,379.99,04/16/19 07:01,"904 Main St, New York City, NY 10001" -188803,Lightning Charging Cable,2,14.95,04/25/19 21:27,"533 10th St, San Francisco, CA 94016" -188804,34in Ultrawide Monitor,1,379.99,04/15/19 11:20,"156 Sunset St, New York City, NY 10001" -188805,Apple Airpods Headphones,1,150,04/28/19 10:04,"33 11th St, Los Angeles, CA 90001" -188806,AA Batteries (4-pack),1,3.84,04/26/19 17:03,"477 2nd St, Boston, MA 02215" -188807,Wired Headphones,1,11.99,04/30/19 11:07,"548 Ridge St, Portland, ME 04101" -188808,Bose SoundSport Headphones,1,99.99,04/08/19 16:21,"71 Dogwood St, San Francisco, CA 94016" -188809,AAA Batteries (4-pack),1,2.99,04/26/19 16:01,"35 Meadow St, Austin, TX 73301" -188810,Flatscreen TV,1,300,04/23/19 23:35,"242 10th St, San Francisco, CA 94016" -188811,34in Ultrawide Monitor,1,379.99,04/06/19 20:47,"402 Center St, San Francisco, CA 94016" -188812,AA Batteries (4-pack),1,3.84,04/05/19 16:45,"190 Hill St, Seattle, WA 98101" -188813,Bose SoundSport Headphones,1,99.99,04/06/19 18:03,"758 Elm St, Los Angeles, CA 90001" -188814,34in Ultrawide Monitor,1,379.99,04/29/19 12:03,"767 Jackson St, Seattle, WA 98101" -188815,Wired Headphones,2,11.99,04/13/19 11:56,"571 Maple St, New York City, NY 10001" -188816,Lightning Charging Cable,1,14.95,04/19/19 16:32,"695 Maple St, Los Angeles, CA 90001" -188817,AA Batteries (4-pack),1,3.84,04/10/19 20:06,"99 West St, Los Angeles, CA 90001" -188818,Wired Headphones,1,11.99,04/29/19 20:33,"612 Church St, San Francisco, CA 94016" -188819,Macbook Pro Laptop,1,1700,04/29/19 20:43,"812 Wilson St, Dallas, TX 75001" -188820,27in FHD Monitor,1,149.99,04/06/19 13:56,"183 River St, Boston, MA 02215" -188821,Apple Airpods Headphones,1,150,04/22/19 12:20,"900 Hill St, San Francisco, CA 94016" -188822,Apple Airpods Headphones,1,150,04/29/19 15:21,"399 Forest St, San Francisco, CA 94016" -188823,Flatscreen TV,1,300,04/30/19 15:10,"369 River St, Boston, MA 02215" -188824,Lightning Charging Cable,1,14.95,04/04/19 18:43,"323 Pine St, New York City, NY 10001" -188825,20in Monitor,1,109.99,04/02/19 08:55,"255 4th St, Los Angeles, CA 90001" -188826,Bose SoundSport Headphones,1,99.99,04/12/19 22:42,"847 Pine St, Atlanta, GA 30301" -188827,USB-C Charging Cable,1,11.95,04/17/19 18:17,"900 Spruce St, New York City, NY 10001" -188827,USB-C Charging Cable,1,11.95,04/17/19 18:17,"900 Spruce St, New York City, NY 10001" -188828,Apple Airpods Headphones,1,150,04/20/19 13:56,"672 9th St, Los Angeles, CA 90001" -188829,AA Batteries (4-pack),1,3.84,04/22/19 15:58,"831 Sunset St, Los Angeles, CA 90001" -188830,AA Batteries (4-pack),1,3.84,04/27/19 15:39,"253 Johnson St, Dallas, TX 75001" -188831,USB-C Charging Cable,2,11.95,04/26/19 10:24,"76 Willow St, San Francisco, CA 94016" -188832,27in FHD Monitor,1,149.99,04/12/19 19:36,"715 Pine St, Los Angeles, CA 90001" -188833,AA Batteries (4-pack),1,3.84,04/27/19 20:45,"411 9th St, San Francisco, CA 94016" -188834,27in 4K Gaming Monitor,1,389.99,04/23/19 23:02,"484 11th St, Boston, MA 02215" -188835,AAA Batteries (4-pack),1,2.99,04/22/19 14:35,"604 Walnut St, Los Angeles, CA 90001" -188836,Wired Headphones,1,11.99,04/29/19 18:50,"990 Hickory St, Los Angeles, CA 90001" -188837,USB-C Charging Cable,1,11.95,04/10/19 19:36,"974 North St, Los Angeles, CA 90001" -188838,AAA Batteries (4-pack),1,2.99,04/14/19 22:49,"433 9th St, San Francisco, CA 94016" -,,,,, -188839,Flatscreen TV,1,300,04/30/19 09:27,"147 8th St, Dallas, TX 75001" -188840,Wired Headphones,1,11.99,04/06/19 14:30,"543 Center St, New York City, NY 10001" -188841,Google Phone,1,600,04/19/19 09:10,"577 10th St, Los Angeles, CA 90001" -188842,Apple Airpods Headphones,1,150,04/08/19 13:38,"627 Chestnut St, New York City, NY 10001" -188843,Wired Headphones,1,11.99,04/27/19 19:26,"632 Cherry St, San Francisco, CA 94016" -188844,27in 4K Gaming Monitor,1,389.99,04/14/19 23:06,"34 South St, Los Angeles, CA 90001" -188845,AA Batteries (4-pack),1,3.84,04/15/19 10:36,"243 14th St, San Francisco, CA 94016" -188846,34in Ultrawide Monitor,1,379.99,04/29/19 12:35,"251 West St, New York City, NY 10001" -188847,Wired Headphones,1,11.99,04/17/19 08:50,"598 Ridge St, Portland, OR 97035" -188848,USB-C Charging Cable,1,11.95,04/26/19 16:13,"160 Lake St, Dallas, TX 75001" -188849,34in Ultrawide Monitor,1,379.99,04/30/19 16:34,"4 14th St, Dallas, TX 75001" -188850,AAA Batteries (4-pack),2,2.99,04/20/19 15:33,"276 Cedar St, Boston, MA 02215" -188851,27in 4K Gaming Monitor,1,389.99,04/29/19 22:56,"476 Willow St, Boston, MA 02215" -188852,27in FHD Monitor,1,149.99,04/13/19 18:42,"633 Ridge St, Boston, MA 02215" -188853,AAA Batteries (4-pack),1,2.99,04/20/19 17:18,"596 13th St, Portland, OR 97035" -188854,Google Phone,1,600,04/01/19 17:11,"216 2nd St, Boston, MA 02215" -188855,AAA Batteries (4-pack),2,2.99,04/16/19 19:47,"49 9th St, San Francisco, CA 94016" -188856,Wired Headphones,1,11.99,04/26/19 16:06,"903 Jackson St, Seattle, WA 98101" -188857,Apple Airpods Headphones,1,150,04/04/19 17:54,"126 Hill St, New York City, NY 10001" -188858,Bose SoundSport Headphones,1,99.99,04/27/19 13:39,"20 Ridge St, San Francisco, CA 94016" -188859,iPhone,1,700,04/22/19 11:13,"19 Pine St, Portland, OR 97035" -188859,Apple Airpods Headphones,1,150,04/22/19 11:13,"19 Pine St, Portland, OR 97035" -188860,AA Batteries (4-pack),1,3.84,04/01/19 21:30,"259 Adams St, San Francisco, CA 94016" -188861,Wired Headphones,1,11.99,04/22/19 09:28,"13 7th St, Boston, MA 02215" -188862,Bose SoundSport Headphones,1,99.99,04/16/19 20:16,"741 13th St, New York City, NY 10001" -188863,AAA Batteries (4-pack),1,2.99,04/20/19 21:03,"455 10th St, Atlanta, GA 30301" -188864,Wired Headphones,1,11.99,04/06/19 08:03,"629 Meadow St, Seattle, WA 98101" -188865,Macbook Pro Laptop,1,1700,04/04/19 12:45,"939 Adams St, Dallas, TX 75001" -188866,Wired Headphones,1,11.99,04/14/19 00:00,"216 Dogwood St, Atlanta, GA 30301" -188867,27in FHD Monitor,1,149.99,04/05/19 20:50,"297 Cedar St, Boston, MA 02215" -188868,AAA Batteries (4-pack),1,2.99,04/17/19 18:14,"75 Willow St, Austin, TX 73301" -188869,Google Phone,1,600,04/03/19 12:59,"134 Spruce St, Los Angeles, CA 90001" -188870,27in 4K Gaming Monitor,1,389.99,04/14/19 16:48,"753 Park St, Seattle, WA 98101" -188871,Wired Headphones,1,11.99,04/03/19 19:32,"715 Main St, Los Angeles, CA 90001" -188872,27in FHD Monitor,1,149.99,04/18/19 19:06,"809 9th St, San Francisco, CA 94016" -188873,Bose SoundSport Headphones,1,99.99,04/13/19 15:51,"908 4th St, Dallas, TX 75001" -188874,Lightning Charging Cable,1,14.95,04/30/19 08:50,"173 Hill St, San Francisco, CA 94016" -188875,AA Batteries (4-pack),1,3.84,04/25/19 10:43,"598 Church St, Los Angeles, CA 90001" -188876,LG Dryer,1,600.0,04/14/19 12:48,"16 Madison St, Los Angeles, CA 90001" -188877,Lightning Charging Cable,1,14.95,04/04/19 08:32,"441 10th St, San Francisco, CA 94016" -188878,27in 4K Gaming Monitor,1,389.99,04/20/19 08:00,"936 River St, Boston, MA 02215" -188879,Lightning Charging Cable,1,14.95,04/12/19 18:02,"67 Madison St, San Francisco, CA 94016" -188880,USB-C Charging Cable,1,11.95,04/11/19 14:57,"245 Willow St, Los Angeles, CA 90001" -188881,Google Phone,1,600,04/19/19 18:18,"872 7th St, Los Angeles, CA 90001" -188881,Bose SoundSport Headphones,1,99.99,04/19/19 18:18,"872 7th St, Los Angeles, CA 90001" -188881,Wired Headphones,1,11.99,04/19/19 18:18,"872 7th St, Los Angeles, CA 90001" -188882,Bose SoundSport Headphones,1,99.99,04/06/19 10:50,"81 Willow St, Dallas, TX 75001" -188883,Bose SoundSport Headphones,1,99.99,04/17/19 21:31,"617 7th St, Boston, MA 02215" -188884,USB-C Charging Cable,2,11.95,04/06/19 18:57,"747 14th St, Seattle, WA 98101" -188885,AA Batteries (4-pack),2,3.84,04/17/19 18:12,"275 Park St, Dallas, TX 75001" -188886,27in FHD Monitor,1,149.99,04/22/19 21:28,"544 Forest St, Atlanta, GA 30301" -188887,AAA Batteries (4-pack),1,2.99,04/27/19 10:26,"756 Forest St, San Francisco, CA 94016" -188888,USB-C Charging Cable,1,11.95,04/16/19 13:08,"894 Maple St, Boston, MA 02215" -188889,27in FHD Monitor,1,149.99,04/16/19 13:03,"934 Lakeview St, Los Angeles, CA 90001" -188890,Flatscreen TV,1,300,04/08/19 10:21,"321 Ridge St, Seattle, WA 98101" -188891,27in FHD Monitor,1,149.99,04/28/19 15:21,"504 Center St, Los Angeles, CA 90001" -188892,20in Monitor,1,109.99,04/04/19 13:38,"707 River St, San Francisco, CA 94016" -188893,USB-C Charging Cable,1,11.95,04/14/19 08:24,"330 Hill St, Boston, MA 02215" -188894,Lightning Charging Cable,1,14.95,04/29/19 20:01,"891 River St, San Francisco, CA 94016" -188895,AA Batteries (4-pack),1,3.84,04/13/19 19:48,"650 Highland St, Portland, OR 97035" -188896,AA Batteries (4-pack),1,3.84,04/27/19 18:32,"416 12th St, Seattle, WA 98101" -188897,Bose SoundSport Headphones,1,99.99,04/12/19 17:38,"185 5th St, Boston, MA 02215" -188898,Apple Airpods Headphones,1,150,04/23/19 16:37,"274 Lake St, Los Angeles, CA 90001" -188899,Bose SoundSport Headphones,1,99.99,04/24/19 10:15,"85 Dogwood St, San Francisco, CA 94016" -188900,Apple Airpods Headphones,1,150,04/07/19 22:41,"812 Washington St, Atlanta, GA 30301" -188901,Bose SoundSport Headphones,1,99.99,04/09/19 14:46,"453 South St, Austin, TX 73301" -188902,27in 4K Gaming Monitor,1,389.99,04/15/19 08:48,"791 4th St, Boston, MA 02215" -188903,27in FHD Monitor,1,149.99,04/28/19 10:33,"818 Lincoln St, Los Angeles, CA 90001" -188904,iPhone,1,700,04/20/19 15:01,"281 Church St, Portland, OR 97035" -188904,Wired Headphones,1,11.99,04/20/19 15:01,"281 Church St, Portland, OR 97035" -188905,Bose SoundSport Headphones,1,99.99,04/27/19 10:19,"261 Jackson St, Austin, TX 73301" -188906,LG Dryer,1,600.0,04/27/19 15:47,"230 8th St, Los Angeles, CA 90001" -188907,Lightning Charging Cable,2,14.95,04/16/19 13:29,"21 Jackson St, San Francisco, CA 94016" -188908,Lightning Charging Cable,1,14.95,04/25/19 02:09,"511 11th St, Los Angeles, CA 90001" -188909,Google Phone,1,600,04/18/19 08:31,"815 Forest St, Los Angeles, CA 90001" -188910,Bose SoundSport Headphones,1,99.99,04/10/19 15:17,"779 9th St, San Francisco, CA 94016" -188911,Flatscreen TV,1,300,04/18/19 23:58,"129 8th St, Portland, OR 97035" -188912,Wired Headphones,1,11.99,04/23/19 14:38,"162 4th St, New York City, NY 10001" -188913,Bose SoundSport Headphones,1,99.99,04/04/19 11:44,"224 Dogwood St, Seattle, WA 98101" -188914,iPhone,1,700,04/19/19 18:55,"327 Dogwood St, San Francisco, CA 94016" -188915,Wired Headphones,1,11.99,04/02/19 08:45,"53 Walnut St, New York City, NY 10001" -188916,AAA Batteries (4-pack),1,2.99,04/09/19 09:13,"724 Jackson St, Los Angeles, CA 90001" -188917,Apple Airpods Headphones,1,150,04/11/19 09:45,"484 Meadow St, San Francisco, CA 94016" -188918,USB-C Charging Cable,1,11.95,04/16/19 13:39,"183 13th St, San Francisco, CA 94016" -188919,Wired Headphones,2,11.99,04/25/19 17:27,"124 Madison St, Los Angeles, CA 90001" -188920,Google Phone,1,600,04/09/19 23:03,"250 North St, San Francisco, CA 94016" -188920,USB-C Charging Cable,1,11.95,04/09/19 23:03,"250 North St, San Francisco, CA 94016" -188921,Apple Airpods Headphones,1,150,04/03/19 22:23,"389 Highland St, San Francisco, CA 94016" -188922,Macbook Pro Laptop,1,1700,04/13/19 16:39,"904 Jefferson St, San Francisco, CA 94016" -188923,AAA Batteries (4-pack),2,2.99,04/27/19 19:11,"328 14th St, Seattle, WA 98101" -188924,USB-C Charging Cable,1,11.95,04/05/19 00:34,"319 13th St, San Francisco, CA 94016" -188925,USB-C Charging Cable,2,11.95,04/28/19 10:43,"180 4th St, Seattle, WA 98101" -188926,Flatscreen TV,1,300,04/23/19 15:06,"565 10th St, San Francisco, CA 94016" -188927,ThinkPad Laptop,1,999.99,04/16/19 19:16,"58 2nd St, San Francisco, CA 94016" -188928,AAA Batteries (4-pack),3,2.99,04/12/19 22:35,"737 Jefferson St, San Francisco, CA 94016" -188929,AAA Batteries (4-pack),1,2.99,04/18/19 15:47,"809 Church St, Dallas, TX 75001" -188930,27in 4K Gaming Monitor,1,389.99,04/14/19 04:44,"472 Jackson St, Austin, TX 73301" -188931,Macbook Pro Laptop,1,1700,04/08/19 22:26,"488 Ridge St, Atlanta, GA 30301" -188932,Flatscreen TV,1,300,04/29/19 11:45,"325 Church St, Los Angeles, CA 90001" -188933,Wired Headphones,1,11.99,04/02/19 08:42,"908 Pine St, Seattle, WA 98101" -188934,USB-C Charging Cable,1,11.95,04/18/19 09:30,"901 Spruce St, Los Angeles, CA 90001" -188935,USB-C Charging Cable,1,11.95,04/19/19 12:24,"4 Lakeview St, Seattle, WA 98101" -188936,iPhone,1,700,04/14/19 13:27,"953 Ridge St, Los Angeles, CA 90001" -188937,Lightning Charging Cable,1,14.95,04/27/19 16:22,"962 Park St, San Francisco, CA 94016" -188938,AAA Batteries (4-pack),2,2.99,04/15/19 19:46,"698 Elm St, Atlanta, GA 30301" -188939,AAA Batteries (4-pack),1,2.99,04/11/19 14:21,"669 4th St, Los Angeles, CA 90001" -188940,Bose SoundSport Headphones,1,99.99,04/08/19 20:27,"271 Cedar St, San Francisco, CA 94016" -188941,AA Batteries (4-pack),4,3.84,04/26/19 15:27,"196 12th St, Los Angeles, CA 90001" -188942,Wired Headphones,1,11.99,04/19/19 19:35,"205 7th St, Portland, OR 97035" -188943,34in Ultrawide Monitor,1,379.99,04/10/19 20:40,"779 Maple St, New York City, NY 10001" -188944,USB-C Charging Cable,1,11.95,04/02/19 18:56,"824 Dogwood St, San Francisco, CA 94016" -188945,Google Phone,1,600,04/09/19 15:58,"119 Hickory St, Portland, OR 97035" -188946,27in FHD Monitor,1,149.99,04/27/19 22:03,"260 7th St, New York City, NY 10001" -188947,Bose SoundSport Headphones,1,99.99,04/17/19 19:23,"437 12th St, New York City, NY 10001" -188948,Apple Airpods Headphones,1,150,04/25/19 18:49,"751 Chestnut St, New York City, NY 10001" -188949,Lightning Charging Cable,1,14.95,04/11/19 08:13,"584 Church St, New York City, NY 10001" -,,,,, -188950,AAA Batteries (4-pack),1,2.99,04/05/19 06:30,"591 10th St, San Francisco, CA 94016" -188951,USB-C Charging Cable,1,11.95,04/20/19 18:45,"790 Church St, Seattle, WA 98101" -188952,USB-C Charging Cable,1,11.95,04/19/19 14:01,"383 Sunset St, San Francisco, CA 94016" -188953,AAA Batteries (4-pack),5,2.99,04/30/19 09:32,"20 Maple St, Los Angeles, CA 90001" -188954,AAA Batteries (4-pack),2,2.99,04/13/19 15:49,"737 Highland St, Dallas, TX 75001" -188955,27in 4K Gaming Monitor,1,389.99,04/22/19 13:33,"533 1st St, Seattle, WA 98101" -188956,34in Ultrawide Monitor,1,379.99,04/03/19 16:49,"54 Highland St, Boston, MA 02215" -188957,34in Ultrawide Monitor,1,379.99,04/04/19 09:31,"923 Spruce St, San Francisco, CA 94016" -188958,Wired Headphones,1,11.99,04/12/19 20:38,"189 9th St, Dallas, TX 75001" -188959,AA Batteries (4-pack),1,3.84,04/28/19 09:32,"494 Cherry St, Atlanta, GA 30301" -188960,Lightning Charging Cable,1,14.95,04/08/19 16:46,"823 Main St, San Francisco, CA 94016" -188961,27in FHD Monitor,1,149.99,04/08/19 20:35,"762 Sunset St, Seattle, WA 98101" -188962,AA Batteries (4-pack),1,3.84,04/21/19 10:14,"751 Center St, San Francisco, CA 94016" -188963,Apple Airpods Headphones,1,150,04/13/19 12:10,"198 Forest St, New York City, NY 10001" -188964,27in FHD Monitor,1,149.99,04/17/19 19:10,"843 Pine St, Boston, MA 02215" -188965,Apple Airpods Headphones,1,150,04/06/19 12:51,"582 Ridge St, Atlanta, GA 30301" -188966,27in FHD Monitor,1,149.99,04/29/19 11:18,"236 1st St, Austin, TX 73301" -188967,AA Batteries (4-pack),1,3.84,04/01/19 21:36,"364 11th St, New York City, NY 10001" -188968,20in Monitor,1,109.99,04/09/19 23:42,"638 Sunset St, Dallas, TX 75001" -188969,Apple Airpods Headphones,1,150,04/14/19 19:05,"330 Park St, San Francisco, CA 94016" -188970,27in 4K Gaming Monitor,1,389.99,04/10/19 20:01,"204 Pine St, San Francisco, CA 94016" -188971,USB-C Charging Cable,1,11.95,04/04/19 12:54,"314 Madison St, Los Angeles, CA 90001" -188972,Apple Airpods Headphones,1,150,04/30/19 19:34,"181 7th St, Atlanta, GA 30301" -188973,Flatscreen TV,1,300,04/12/19 15:35,"659 Chestnut St, Portland, OR 97035" -188974,Lightning Charging Cable,1,14.95,04/05/19 19:06,"409 13th St, Seattle, WA 98101" -188975,AAA Batteries (4-pack),1,2.99,04/16/19 16:30,"593 Forest St, Portland, OR 97035" -188976,Wired Headphones,1,11.99,04/07/19 15:57,"428 11th St, Austin, TX 73301" -188977,27in FHD Monitor,1,149.99,04/11/19 20:00,"418 Cherry St, Los Angeles, CA 90001" -188978,27in 4K Gaming Monitor,1,389.99,04/20/19 15:21,"578 Elm St, Austin, TX 73301" -188979,27in FHD Monitor,1,149.99,04/04/19 21:31,"608 River St, San Francisco, CA 94016" -188980,USB-C Charging Cable,1,11.95,04/20/19 19:45,"74 Sunset St, Los Angeles, CA 90001" -188981,Wired Headphones,1,11.99,04/08/19 16:07,"941 Sunset St, Portland, ME 04101" -188982,Apple Airpods Headphones,1,150,04/13/19 21:20,"224 Lincoln St, San Francisco, CA 94016" -188983,AAA Batteries (4-pack),1,2.99,04/25/19 13:16,"794 South St, San Francisco, CA 94016" -188984,27in FHD Monitor,1,149.99,04/10/19 15:03,"48 Jackson St, San Francisco, CA 94016" -188985,Macbook Pro Laptop,1,1700,04/12/19 00:38,"962 Forest St, Austin, TX 73301" -188986,Lightning Charging Cable,1,14.95,04/19/19 16:49,"684 Cherry St, Boston, MA 02215" -188987,AAA Batteries (4-pack),1,2.99,04/29/19 21:56,"381 Highland St, New York City, NY 10001" -188988,Bose SoundSport Headphones,1,99.99,04/30/19 12:11,"13 Cedar St, Los Angeles, CA 90001" -188989,Apple Airpods Headphones,1,150,04/16/19 12:16,"804 13th St, Atlanta, GA 30301" -188990,Flatscreen TV,1,300,04/27/19 19:08,"233 9th St, Portland, OR 97035" -188991,AA Batteries (4-pack),1,3.84,04/10/19 15:21,"229 South St, Los Angeles, CA 90001" -188992,Wired Headphones,1,11.99,04/06/19 16:11,"85 North St, New York City, NY 10001" -188993,AA Batteries (4-pack),2,3.84,04/20/19 10:49,"963 Pine St, San Francisco, CA 94016" -188994,ThinkPad Laptop,1,999.99,04/27/19 23:47,"682 Ridge St, Los Angeles, CA 90001" -188994,AA Batteries (4-pack),2,3.84,04/27/19 23:47,"682 Ridge St, Los Angeles, CA 90001" -188995,34in Ultrawide Monitor,1,379.99,04/03/19 12:16,"469 9th St, San Francisco, CA 94016" -188996,Apple Airpods Headphones,1,150,04/18/19 14:47,"103 4th St, New York City, NY 10001" -188997,Google Phone,1,600,04/11/19 19:56,"653 Dogwood St, Los Angeles, CA 90001" -188998,AA Batteries (4-pack),1,3.84,04/06/19 22:17,"204 Maple St, Los Angeles, CA 90001" -188999,AAA Batteries (4-pack),1,2.99,04/29/19 10:46,"664 Lake St, San Francisco, CA 94016" -189000,AA Batteries (4-pack),1,3.84,04/26/19 09:11,"849 Ridge St, San Francisco, CA 94016" -189001,Bose SoundSport Headphones,1,99.99,04/01/19 07:01,"898 Jefferson St, Atlanta, GA 30301" -189002,USB-C Charging Cable,1,11.95,04/24/19 19:44,"472 4th St, San Francisco, CA 94016" -189003,LG Washing Machine,1,600.0,04/26/19 17:12,"358 Main St, San Francisco, CA 94016" -189004,Wired Headphones,1,11.99,04/07/19 23:47,"375 Maple St, Dallas, TX 75001" -189005,USB-C Charging Cable,1,11.95,04/29/19 12:22,"969 14th St, Boston, MA 02215" -189006,Wired Headphones,1,11.99,04/06/19 13:36,"716 1st St, Dallas, TX 75001" -189007,Wired Headphones,1,11.99,04/27/19 03:30,"192 Jackson St, New York City, NY 10001" -189008,Macbook Pro Laptop,1,1700,04/26/19 23:39,"754 Hickory St, Dallas, TX 75001" -189009,AAA Batteries (4-pack),1,2.99,04/12/19 12:51,"153 Cherry St, San Francisco, CA 94016" -189010,Macbook Pro Laptop,1,1700,04/25/19 13:10,"256 Washington St, San Francisco, CA 94016" -189011,Bose SoundSport Headphones,1,99.99,04/29/19 10:49,"898 Adams St, Atlanta, GA 30301" -189012,Vareebadd Phone,1,400,04/09/19 10:50,"339 13th St, New York City, NY 10001" -189013,Google Phone,1,600,04/18/19 16:01,"401 8th St, Dallas, TX 75001" -189014,20in Monitor,1,109.99,04/22/19 15:33,"303 Madison St, San Francisco, CA 94016" -189015,Vareebadd Phone,1,400,04/26/19 06:36,"64 Lakeview St, Seattle, WA 98101" -189016,AA Batteries (4-pack),2,3.84,04/06/19 08:51,"351 Willow St, Portland, OR 97035" -189017,Apple Airpods Headphones,1,150,04/25/19 20:43,"291 13th St, Los Angeles, CA 90001" -189018,USB-C Charging Cable,1,11.95,04/11/19 19:26,"789 Spruce St, Seattle, WA 98101" -189019,iPhone,1,700,04/28/19 13:46,"327 12th St, Boston, MA 02215" -189019,Lightning Charging Cable,1,14.95,04/28/19 13:46,"327 12th St, Boston, MA 02215" -189020,20in Monitor,1,109.99,04/27/19 09:35,"485 8th St, Los Angeles, CA 90001" -189021,AA Batteries (4-pack),1,3.84,04/05/19 15:58,"867 Willow St, San Francisco, CA 94016" -189022,AAA Batteries (4-pack),1,2.99,04/16/19 19:22,"419 Lakeview St, New York City, NY 10001" -189023,AA Batteries (4-pack),1,3.84,04/17/19 17:44,"96 Hill St, Los Angeles, CA 90001" -189024,27in FHD Monitor,1,149.99,04/13/19 20:01,"82 1st St, Boston, MA 02215" -189025,Lightning Charging Cable,1,14.95,04/06/19 17:46,"357 Cherry St, San Francisco, CA 94016" -189026,AA Batteries (4-pack),1,3.84,04/13/19 19:27,"702 Dogwood St, Boston, MA 02215" -189027,USB-C Charging Cable,2,11.95,04/28/19 20:29,"702 2nd St, Boston, MA 02215" -189028,34in Ultrawide Monitor,1,379.99,04/25/19 17:46,"206 Dogwood St, Boston, MA 02215" -189029,iPhone,1,700,04/16/19 18:45,"163 Johnson St, San Francisco, CA 94016" -189030,Wired Headphones,1,11.99,04/15/19 15:19,"132 2nd St, San Francisco, CA 94016" -189031,Apple Airpods Headphones,1,150,04/24/19 17:23,"260 South St, Boston, MA 02215" -189032,iPhone,1,700,04/18/19 08:51,"962 West St, San Francisco, CA 94016" -189033,AAA Batteries (4-pack),2,2.99,04/09/19 22:27,"648 Forest St, Dallas, TX 75001" -189034,USB-C Charging Cable,1,11.95,04/05/19 18:38,"276 Highland St, Seattle, WA 98101" -189035,AA Batteries (4-pack),1,3.84,04/26/19 17:23,"151 Jefferson St, Portland, OR 97035" -189036,AA Batteries (4-pack),3,3.84,04/02/19 06:06,"627 12th St, Los Angeles, CA 90001" -189036,Wired Headphones,1,11.99,04/02/19 06:06,"627 12th St, Los Angeles, CA 90001" -189037,Lightning Charging Cable,1,14.95,04/08/19 16:53,"85 Ridge St, Los Angeles, CA 90001" -189038,AA Batteries (4-pack),1,3.84,04/24/19 19:40,"204 2nd St, San Francisco, CA 94016" -189039,Wired Headphones,1,11.99,04/25/19 23:05,"293 Walnut St, San Francisco, CA 94016" -189040,Bose SoundSport Headphones,1,99.99,04/22/19 19:08,"317 Madison St, San Francisco, CA 94016" -189041,Bose SoundSport Headphones,1,99.99,04/11/19 21:49,"882 Walnut St, Los Angeles, CA 90001" -189042,Macbook Pro Laptop,1,1700,04/13/19 17:49,"791 Cedar St, Seattle, WA 98101" -189043,Vareebadd Phone,1,400,04/13/19 15:33,"122 Lincoln St, Atlanta, GA 30301" -189043,Wired Headphones,1,11.99,04/13/19 15:33,"122 Lincoln St, Atlanta, GA 30301" -189044,Apple Airpods Headphones,1,150,04/20/19 18:35,"13 Chestnut St, Portland, ME 04101" -189045,AAA Batteries (4-pack),1,2.99,04/21/19 22:54,"599 Lincoln St, Los Angeles, CA 90001" -189046,Bose SoundSport Headphones,1,99.99,04/23/19 00:20,"274 Cherry St, San Francisco, CA 94016" -189047,27in FHD Monitor,1,149.99,04/17/19 18:17,"43 7th St, Los Angeles, CA 90001" -189048,AA Batteries (4-pack),2,3.84,04/22/19 04:20,"437 Main St, New York City, NY 10001" -189049,AA Batteries (4-pack),1,3.84,04/14/19 23:01,"763 6th St, Portland, OR 97035" -189050,Apple Airpods Headphones,1,150,04/27/19 19:23,"220 5th St, Portland, ME 04101" -189051,AA Batteries (4-pack),1,3.84,04/13/19 01:41,"375 4th St, San Francisco, CA 94016" -189052,Wired Headphones,1,11.99,04/06/19 14:29,"720 Willow St, New York City, NY 10001" -189053,Flatscreen TV,1,300,04/21/19 17:09,"410 6th St, Dallas, TX 75001" -189054,Lightning Charging Cable,1,14.95,04/13/19 17:15,"415 Lake St, San Francisco, CA 94016" -,,,,, -189055,Lightning Charging Cable,1,14.95,04/27/19 16:37,"629 River St, Atlanta, GA 30301" -189056,27in FHD Monitor,1,149.99,04/06/19 00:43,"506 Spruce St, Boston, MA 02215" -189057,Bose SoundSport Headphones,1,99.99,04/18/19 12:11,"298 7th St, Atlanta, GA 30301" -189058,27in 4K Gaming Monitor,1,389.99,04/05/19 12:05,"261 Lincoln St, Austin, TX 73301" -189059,Bose SoundSport Headphones,1,99.99,04/29/19 17:56,"968 5th St, San Francisco, CA 94016" -189060,ThinkPad Laptop,1,999.99,04/11/19 15:07,"70 Wilson St, Atlanta, GA 30301" -189061,Wired Headphones,1,11.99,04/02/19 06:26,"469 Maple St, Atlanta, GA 30301" -189062,AA Batteries (4-pack),1,3.84,04/24/19 12:51,"97 Cherry St, San Francisco, CA 94016" -189063,AA Batteries (4-pack),1,3.84,04/29/19 13:51,"472 West St, Dallas, TX 75001" -189064,ThinkPad Laptop,1,999.99,04/11/19 06:47,"360 5th St, Seattle, WA 98101" -189065,Apple Airpods Headphones,1,150,04/27/19 11:28,"936 Johnson St, Boston, MA 02215" -189066,Bose SoundSport Headphones,1,99.99,04/01/19 18:18,"459 12th St, Los Angeles, CA 90001" -189067,Apple Airpods Headphones,1,150,04/22/19 10:59,"402 Lake St, Los Angeles, CA 90001" -189068,Macbook Pro Laptop,1,1700,04/24/19 11:42,"402 Walnut St, Los Angeles, CA 90001" -189069,Wired Headphones,1,11.99,04/12/19 17:46,"93 8th St, San Francisco, CA 94016" -189070,Wired Headphones,1,11.99,04/29/19 13:58,"396 9th St, Seattle, WA 98101" -189071,iPhone,1,700,04/11/19 15:05,"483 Pine St, Boston, MA 02215" -189071,Lightning Charging Cable,1,14.95,04/11/19 15:05,"483 Pine St, Boston, MA 02215" -189072,27in FHD Monitor,1,149.99,04/13/19 19:44,"62 5th St, Portland, OR 97035" -189073,LG Washing Machine,1,600.0,04/02/19 19:11,"819 14th St, Boston, MA 02215" -189074,AAA Batteries (4-pack),2,2.99,04/12/19 16:01,"968 Pine St, Boston, MA 02215" -189075,27in 4K Gaming Monitor,1,389.99,04/21/19 18:24,"793 Willow St, Boston, MA 02215" -189076,Bose SoundSport Headphones,1,99.99,04/25/19 01:19,"944 7th St, Boston, MA 02215" -189077,iPhone,1,700,04/07/19 18:05,"596 12th St, Boston, MA 02215" -189078,Wired Headphones,1,11.99,04/10/19 12:26,"218 Maple St, Los Angeles, CA 90001" -189079,Macbook Pro Laptop,1,1700,04/16/19 20:21,"360 14th St, San Francisco, CA 94016" -189080,Flatscreen TV,1,300,04/02/19 08:32,"541 Forest St, Portland, OR 97035" -189081,AAA Batteries (4-pack),1,2.99,04/26/19 16:44,"930 Lake St, Boston, MA 02215" -189082,AA Batteries (4-pack),1,3.84,04/08/19 17:38,"134 Jefferson St, San Francisco, CA 94016" -189083,Apple Airpods Headphones,1,150,04/15/19 18:33,"209 Hill St, San Francisco, CA 94016" -189084,AAA Batteries (4-pack),1,2.99,04/08/19 21:40,"601 Washington St, Atlanta, GA 30301" -189085,USB-C Charging Cable,1,11.95,04/23/19 23:27,"568 Walnut St, Los Angeles, CA 90001" -189086,34in Ultrawide Monitor,1,379.99,04/19/19 23:26,"598 Church St, Los Angeles, CA 90001" -189087,Lightning Charging Cable,2,14.95,04/14/19 23:33,"20 Main St, Dallas, TX 75001" -189088,Bose SoundSport Headphones,1,99.99,04/07/19 20:11,"882 Lake St, New York City, NY 10001" -189089,Macbook Pro Laptop,1,1700,04/13/19 22:00,"704 Maple St, San Francisco, CA 94016" -189090,USB-C Charging Cable,1,11.95,04/17/19 13:12,"923 Pine St, San Francisco, CA 94016" -189091,ThinkPad Laptop,1,999.99,04/26/19 16:05,"852 12th St, Atlanta, GA 30301" -189092,USB-C Charging Cable,1,11.95,04/30/19 16:49,"321 5th St, San Francisco, CA 94016" -189093,Lightning Charging Cable,1,14.95,04/04/19 18:49,"372 South St, San Francisco, CA 94016" -189094,USB-C Charging Cable,1,11.95,04/18/19 10:40,"973 West St, New York City, NY 10001" -189095,AA Batteries (4-pack),1,3.84,04/30/19 21:17,"167 8th St, Los Angeles, CA 90001" -189096,Bose SoundSport Headphones,1,99.99,04/19/19 10:45,"665 Ridge St, Dallas, TX 75001" -189097,AAA Batteries (4-pack),1,2.99,04/08/19 10:24,"706 Park St, Boston, MA 02215" -189098,AA Batteries (4-pack),4,3.84,04/29/19 20:26,"177 10th St, New York City, NY 10001" -189099,AA Batteries (4-pack),1,3.84,04/04/19 08:20,"43 Maple St, San Francisco, CA 94016" -189100,Lightning Charging Cable,1,14.95,04/03/19 21:04,"695 Highland St, San Francisco, CA 94016" -189101,Apple Airpods Headphones,1,150,04/24/19 19:15,"265 South St, New York City, NY 10001" -189102,Bose SoundSport Headphones,1,99.99,04/08/19 15:43,"952 Spruce St, San Francisco, CA 94016" -189103,Bose SoundSport Headphones,1,99.99,04/15/19 10:32,"358 2nd St, San Francisco, CA 94016" -189104,Wired Headphones,1,11.99,04/30/19 08:43,"14 Center St, Los Angeles, CA 90001" -189105,AA Batteries (4-pack),1,3.84,04/17/19 14:21,"5 Chestnut St, Los Angeles, CA 90001" -189106,Bose SoundSport Headphones,1,99.99,04/12/19 20:14,"153 Cedar St, Seattle, WA 98101" -189107,Wired Headphones,1,11.99,04/12/19 01:18,"848 Lake St, Dallas, TX 75001" -189108,Google Phone,1,600,04/10/19 07:22,"196 Meadow St, Boston, MA 02215" -189108,USB-C Charging Cable,1,11.95,04/10/19 07:22,"196 Meadow St, Boston, MA 02215" -189109,USB-C Charging Cable,1,11.95,04/23/19 17:05,"646 West St, Los Angeles, CA 90001" -189110,Apple Airpods Headphones,1,150,04/11/19 00:27,"627 Church St, San Francisco, CA 94016" -189111,27in 4K Gaming Monitor,1,389.99,04/27/19 13:03,"663 4th St, Portland, OR 97035" -189112,Apple Airpods Headphones,1,150,04/10/19 17:08,"595 Hill St, New York City, NY 10001" -189113,AA Batteries (4-pack),1,3.84,04/11/19 20:51,"533 Walnut St, Los Angeles, CA 90001" -189114,AA Batteries (4-pack),1,3.84,04/14/19 20:23,"234 Washington St, Seattle, WA 98101" -189115,USB-C Charging Cable,1,11.95,04/25/19 11:19,"819 Lake St, New York City, NY 10001" -189116,Wired Headphones,1,11.99,04/20/19 14:31,"607 South St, Los Angeles, CA 90001" -189117,Macbook Pro Laptop,1,1700,04/24/19 09:43,"779 West St, Atlanta, GA 30301" -189118,AAA Batteries (4-pack),1,2.99,04/29/19 16:15,"180 13th St, San Francisco, CA 94016" -189119,AA Batteries (4-pack),1,3.84,04/01/19 22:22,"960 Meadow St, San Francisco, CA 94016" -189120,USB-C Charging Cable,1,11.95,04/28/19 09:52,"227 Jefferson St, Portland, OR 97035" -189121,AA Batteries (4-pack),1,3.84,04/23/19 12:40,"839 Cedar St, Dallas, TX 75001" -189122,USB-C Charging Cable,1,11.95,04/29/19 13:16,"947 Maple St, New York City, NY 10001" -189123,27in 4K Gaming Monitor,1,389.99,04/17/19 00:58,"184 Highland St, San Francisco, CA 94016" -189124,Wired Headphones,1,11.99,04/05/19 11:15,"886 Willow St, Dallas, TX 75001" -189125,USB-C Charging Cable,1,11.95,04/27/19 23:38,"963 8th St, Los Angeles, CA 90001" -189126,Wired Headphones,1,11.99,04/12/19 19:54,"492 Cherry St, Dallas, TX 75001" -189127,Wired Headphones,1,11.99,04/24/19 16:49,"159 Washington St, Atlanta, GA 30301" -189128,Flatscreen TV,1,300,04/03/19 14:17,"627 10th St, Dallas, TX 75001" -189129,ThinkPad Laptop,1,999.99,04/26/19 16:49,"616 South St, San Francisco, CA 94016" -189130,AA Batteries (4-pack),1,3.84,04/17/19 10:25,"336 Wilson St, San Francisco, CA 94016" -189131,Wired Headphones,1,11.99,04/07/19 00:06,"724 Hickory St, Seattle, WA 98101" -189132,Wired Headphones,1,11.99,04/12/19 11:23,"13 Madison St, San Francisco, CA 94016" -189133,Google Phone,1,600,04/18/19 11:01,"701 10th St, Portland, ME 04101" -189133,USB-C Charging Cable,1,11.95,04/18/19 11:01,"701 10th St, Portland, ME 04101" -189134,iPhone,1,700,04/15/19 15:42,"186 4th St, New York City, NY 10001" -189135,Lightning Charging Cable,1,14.95,04/15/19 23:32,"358 14th St, San Francisco, CA 94016" -189136,27in 4K Gaming Monitor,1,389.99,04/28/19 09:58,"827 7th St, San Francisco, CA 94016" -189137,AAA Batteries (4-pack),1,2.99,04/24/19 22:44,"471 Madison St, Los Angeles, CA 90001" -189138,Wired Headphones,1,11.99,04/09/19 18:53,"984 West St, Atlanta, GA 30301" -189139,Vareebadd Phone,1,400,04/10/19 14:39,"109 Cherry St, Atlanta, GA 30301" -189140,Bose SoundSport Headphones,1,99.99,04/11/19 22:04,"580 Forest St, New York City, NY 10001" -189141,Lightning Charging Cable,1,14.95,04/07/19 13:29,"337 13th St, San Francisco, CA 94016" -189142,USB-C Charging Cable,1,11.95,04/09/19 19:36,"810 Maple St, Portland, OR 97035" -189143,Lightning Charging Cable,1,14.95,04/23/19 06:30,"400 Lakeview St, San Francisco, CA 94016" -189144,Lightning Charging Cable,1,14.95,04/01/19 09:43,"866 Wilson St, Los Angeles, CA 90001" -189145,USB-C Charging Cable,1,11.95,04/11/19 21:12,"285 13th St, San Francisco, CA 94016" -189146,AA Batteries (4-pack),1,3.84,04/24/19 14:42,"189 Meadow St, New York City, NY 10001" -189147,USB-C Charging Cable,1,11.95,04/25/19 18:28,"612 6th St, San Francisco, CA 94016" -189148,Bose SoundSport Headphones,1,99.99,04/02/19 02:22,"388 Chestnut St, New York City, NY 10001" -189149,20in Monitor,1,109.99,04/29/19 10:46,"501 8th St, Atlanta, GA 30301" -189150,AAA Batteries (4-pack),1,2.99,04/01/19 18:50,"222 Walnut St, Atlanta, GA 30301" -189151,Wired Headphones,1,11.99,04/21/19 08:53,"590 Walnut St, Atlanta, GA 30301" -189152,Google Phone,1,600,04/01/19 07:40,"809 North St, San Francisco, CA 94016" -189153,AAA Batteries (4-pack),1,2.99,04/22/19 19:25,"712 Dogwood St, Los Angeles, CA 90001" -189154,Wired Headphones,1,11.99,04/30/19 11:16,"228 West St, New York City, NY 10001" -189155,AA Batteries (4-pack),1,3.84,04/17/19 13:18,"106 Elm St, San Francisco, CA 94016" -189156,USB-C Charging Cable,2,11.95,04/29/19 10:11,"35 10th St, Portland, OR 97035" -189157,ThinkPad Laptop,1,999.99,04/29/19 21:32,"385 2nd St, Dallas, TX 75001" -189158,Apple Airpods Headphones,1,150,04/06/19 16:09,"936 River St, Seattle, WA 98101" -189159,USB-C Charging Cable,1,11.95,04/26/19 16:07,"383 2nd St, Dallas, TX 75001" -189160,Apple Airpods Headphones,1,150,04/12/19 21:27,"159 Hill St, Los Angeles, CA 90001" -189161,AA Batteries (4-pack),1,3.84,04/19/19 22:57,"279 Lake St, Dallas, TX 75001" -189162,Wired Headphones,1,11.99,04/17/19 21:12,"52 Maple St, Dallas, TX 75001" -189163,iPhone,1,700,04/30/19 19:33,"310 4th St, San Francisco, CA 94016" -189164,Google Phone,1,600,04/12/19 12:40,"707 Center St, San Francisco, CA 94016" -189164,Wired Headphones,1,11.99,04/12/19 12:40,"707 Center St, San Francisco, CA 94016" -189165,USB-C Charging Cable,1,11.95,04/30/19 10:26,"75 Hickory St, San Francisco, CA 94016" -189166,AA Batteries (4-pack),1,3.84,04/22/19 19:28,"381 Spruce St, San Francisco, CA 94016" -189167,27in FHD Monitor,1,149.99,04/14/19 16:53,"996 Hickory St, Portland, OR 97035" -189168,Bose SoundSport Headphones,1,99.99,04/22/19 09:34,"922 Church St, San Francisco, CA 94016" -189169,iPhone,1,700,04/14/19 21:01,"343 Main St, Dallas, TX 75001" -189170,Lightning Charging Cable,1,14.95,04/21/19 07:23,"785 Madison St, San Francisco, CA 94016" -189171,Lightning Charging Cable,1,14.95,04/11/19 21:43,"862 14th St, New York City, NY 10001" -189172,AAA Batteries (4-pack),1,2.99,04/16/19 18:03,"656 13th St, Los Angeles, CA 90001" -189173,Lightning Charging Cable,1,14.95,04/05/19 15:07,"294 Willow St, Boston, MA 02215" -189174,Lightning Charging Cable,1,14.95,04/24/19 19:39,"869 10th St, Los Angeles, CA 90001" -189175,27in 4K Gaming Monitor,1,389.99,04/22/19 16:56,"386 Lincoln St, Portland, OR 97035" -189176,AA Batteries (4-pack),2,3.84,04/14/19 18:55,"738 Adams St, New York City, NY 10001" -189177,AA Batteries (4-pack),1,3.84,04/04/19 14:38,"331 Madison St, Portland, OR 97035" -189178,Wired Headphones,1,11.99,04/16/19 08:46,"685 Walnut St, New York City, NY 10001" -189179,Bose SoundSport Headphones,1,99.99,04/22/19 10:01,"378 1st St, Los Angeles, CA 90001" -189180,20in Monitor,1,109.99,04/23/19 21:14,"272 Hickory St, Los Angeles, CA 90001" -189181,AA Batteries (4-pack),1,3.84,04/04/19 08:51,"982 2nd St, Austin, TX 73301" -189182,Apple Airpods Headphones,1,150,04/06/19 09:29,"650 Walnut St, San Francisco, CA 94016" -189183,Macbook Pro Laptop,1,1700,04/05/19 00:00,"778 Madison St, New York City, NY 10001" -189184,Flatscreen TV,1,300,04/02/19 11:54,"156 7th St, San Francisco, CA 94016" -189185,Wired Headphones,2,11.99,04/15/19 09:47,"244 Willow St, Los Angeles, CA 90001" -189186,Flatscreen TV,1,300,04/18/19 12:08,"83 River St, Los Angeles, CA 90001" -189186,27in 4K Gaming Monitor,1,389.99,04/18/19 12:08,"83 River St, Los Angeles, CA 90001" -189187,AA Batteries (4-pack),1,3.84,04/20/19 15:45,"530 Park St, Seattle, WA 98101" -189188,34in Ultrawide Monitor,1,379.99,04/03/19 16:41,"877 North St, Portland, OR 97035" -189189,USB-C Charging Cable,1,11.95,04/13/19 21:54,"86 9th St, Austin, TX 73301" -189190,USB-C Charging Cable,1,11.95,04/02/19 21:10,"980 Lakeview St, Atlanta, GA 30301" -189191,ThinkPad Laptop,1,999.99,04/23/19 08:49,"326 Johnson St, New York City, NY 10001" -189192,AAA Batteries (4-pack),1,2.99,04/10/19 20:44,"745 Chestnut St, New York City, NY 10001" -189193,Google Phone,1,600,04/27/19 13:39,"532 Elm St, Portland, ME 04101" -189194,Macbook Pro Laptop,1,1700,04/18/19 20:03,"966 Hill St, San Francisco, CA 94016" -189195,AAA Batteries (4-pack),1,2.99,04/11/19 23:59,"838 6th St, Portland, OR 97035" -189196,AA Batteries (4-pack),1,3.84,04/15/19 04:40,"380 13th St, Portland, OR 97035" -189197,AAA Batteries (4-pack),1,2.99,04/09/19 20:38,"192 Madison St, Atlanta, GA 30301" -189198,Wired Headphones,1,11.99,04/25/19 11:42,"496 South St, Atlanta, GA 30301" -189199,34in Ultrawide Monitor,1,379.99,04/05/19 09:36,"398 12th St, Boston, MA 02215" -189200,AA Batteries (4-pack),1,3.84,04/08/19 09:54,"785 Elm St, New York City, NY 10001" -189201,Google Phone,1,600,04/22/19 11:38,"399 Main St, Seattle, WA 98101" -189202,Wired Headphones,1,11.99,04/19/19 18:37,"523 Park St, Los Angeles, CA 90001" -189203,34in Ultrawide Monitor,1,379.99,04/17/19 00:14,"727 Madison St, Los Angeles, CA 90001" -189204,Bose SoundSport Headphones,1,99.99,04/08/19 09:41,"431 Lakeview St, New York City, NY 10001" -189205,AAA Batteries (4-pack),1,2.99,04/10/19 12:33,"848 Wilson St, Seattle, WA 98101" -189206,Wired Headphones,1,11.99,04/03/19 00:25,"986 Pine St, New York City, NY 10001" -189207,Macbook Pro Laptop,1,1700,04/18/19 09:42,"801 6th St, Dallas, TX 75001" -189207,ThinkPad Laptop,1,999.99,04/18/19 09:42,"801 6th St, Dallas, TX 75001" -189208,Google Phone,1,600,04/07/19 22:00,"930 4th St, San Francisco, CA 94016" -189209,AAA Batteries (4-pack),2,2.99,04/15/19 09:34,"638 6th St, Portland, OR 97035" -189210,Wired Headphones,1,11.99,04/01/19 11:11,"617 1st St, Los Angeles, CA 90001" -189211,AA Batteries (4-pack),1,3.84,04/15/19 19:22,"770 Madison St, Dallas, TX 75001" -189212,Google Phone,1,600,04/12/19 13:12,"214 11th St, New York City, NY 10001" -189213,AAA Batteries (4-pack),2,2.99,04/05/19 19:33,"756 Lincoln St, Dallas, TX 75001" -189214,Wired Headphones,1,11.99,04/11/19 10:46,"495 Main St, Seattle, WA 98101" -189215,Apple Airpods Headphones,1,150,04/08/19 14:21,"449 7th St, San Francisco, CA 94016" -189216,34in Ultrawide Monitor,1,379.99,04/27/19 02:29,"376 Maple St, New York City, NY 10001" -189217,Apple Airpods Headphones,1,150,04/20/19 10:53,"231 Lakeview St, Los Angeles, CA 90001" -189218,Bose SoundSport Headphones,1,99.99,04/19/19 12:44,"365 5th St, Seattle, WA 98101" -189218,34in Ultrawide Monitor,1,379.99,04/19/19 12:44,"365 5th St, Seattle, WA 98101" -189219,Wired Headphones,1,11.99,04/26/19 17:26,"830 12th St, Atlanta, GA 30301" -189220,Lightning Charging Cable,1,14.95,04/10/19 13:49,"272 10th St, New York City, NY 10001" -189221,Bose SoundSport Headphones,1,99.99,04/30/19 13:08,"14 Sunset St, Dallas, TX 75001" -189222,Apple Airpods Headphones,1,150,04/18/19 07:45,"862 Elm St, San Francisco, CA 94016" -189223,AAA Batteries (4-pack),1,2.99,04/12/19 18:49,"783 Pine St, San Francisco, CA 94016" -189224,ThinkPad Laptop,1,999.99,04/16/19 09:55,"865 Center St, Portland, OR 97035" -189225,Bose SoundSport Headphones,1,99.99,04/13/19 16:45,"939 Madison St, Los Angeles, CA 90001" -189226,Wired Headphones,1,11.99,04/24/19 21:28,"596 1st St, San Francisco, CA 94016" -189227,AAA Batteries (4-pack),1,2.99,04/19/19 15:46,"311 Park St, San Francisco, CA 94016" -189228,34in Ultrawide Monitor,1,379.99,04/13/19 11:20,"632 Jackson St, New York City, NY 10001" -189229,27in 4K Gaming Monitor,1,389.99,04/13/19 17:50,"551 Spruce St, Boston, MA 02215" -189230,AAA Batteries (4-pack),2,2.99,04/05/19 00:38,"232 10th St, Los Angeles, CA 90001" -189231,Lightning Charging Cable,1,14.95,04/20/19 23:52,"796 Church St, Dallas, TX 75001" -189232,AA Batteries (4-pack),2,3.84,04/06/19 18:54,"993 Highland St, Los Angeles, CA 90001" -189233,AAA Batteries (4-pack),3,2.99,04/03/19 13:08,"643 Forest St, Los Angeles, CA 90001" -189234,Bose SoundSport Headphones,1,99.99,04/14/19 20:42,"997 River St, Los Angeles, CA 90001" -189235,AA Batteries (4-pack),1,3.84,04/12/19 17:46,"265 14th St, Portland, ME 04101" -189236,27in FHD Monitor,1,149.99,04/12/19 16:40,"15 Church St, New York City, NY 10001" -189237,AA Batteries (4-pack),1,3.84,04/18/19 10:06,"923 River St, Austin, TX 73301" -189238,Wired Headphones,1,11.99,04/04/19 22:55,"672 Spruce St, Atlanta, GA 30301" -189239,Apple Airpods Headphones,1,150,04/03/19 15:18,"994 South St, San Francisco, CA 94016" -189240,Lightning Charging Cable,1,14.95,04/03/19 17:47,"943 7th St, Portland, ME 04101" -189241,AA Batteries (4-pack),2,3.84,04/10/19 22:36,"888 Wilson St, San Francisco, CA 94016" -189242,Wired Headphones,1,11.99,04/19/19 12:20,"340 Lakeview St, San Francisco, CA 94016" -189243,Google Phone,1,600,04/28/19 13:01,"629 Jackson St, New York City, NY 10001" -189243,Bose SoundSport Headphones,1,99.99,04/28/19 13:01,"629 Jackson St, New York City, NY 10001" -189244,Lightning Charging Cable,1,14.95,04/23/19 19:14,"471 Church St, Dallas, TX 75001" -189245,AAA Batteries (4-pack),1,2.99,04/15/19 19:55,"300 10th St, Los Angeles, CA 90001" -189246,AA Batteries (4-pack),2,3.84,04/28/19 20:58,"841 Walnut St, Los Angeles, CA 90001" -189247,Apple Airpods Headphones,1,150,04/03/19 07:14,"55 Johnson St, San Francisco, CA 94016" -189248,27in FHD Monitor,1,149.99,04/20/19 11:08,"946 West St, San Francisco, CA 94016" -189249,Apple Airpods Headphones,1,150,04/20/19 22:01,"558 Highland St, New York City, NY 10001" -189249,27in FHD Monitor,1,149.99,04/20/19 22:01,"558 Highland St, New York City, NY 10001" -189250,Apple Airpods Headphones,1,150,04/25/19 10:45,"309 Johnson St, San Francisco, CA 94016" -189251,27in FHD Monitor,1,149.99,04/16/19 20:19,"307 1st St, Boston, MA 02215" -189252,Google Phone,1,600,04/19/19 19:54,"93 West St, Boston, MA 02215" -189252,USB-C Charging Cable,1,11.95,04/19/19 19:54,"93 West St, Boston, MA 02215" -189253,AAA Batteries (4-pack),2,2.99,04/23/19 09:12,"599 8th St, Atlanta, GA 30301" -189254,34in Ultrawide Monitor,1,379.99,04/19/19 09:50,"210 Willow St, Los Angeles, CA 90001" -189255,AA Batteries (4-pack),2,3.84,04/30/19 17:53,"637 Cherry St, Los Angeles, CA 90001" -189256,AA Batteries (4-pack),1,3.84,04/01/19 07:27,"376 North St, San Francisco, CA 94016" -189257,Bose SoundSport Headphones,1,99.99,04/23/19 13:22,"542 Lincoln St, Boston, MA 02215" -189258,Lightning Charging Cable,2,14.95,04/23/19 09:07,"186 Madison St, Seattle, WA 98101" -189259,Wired Headphones,1,11.99,04/06/19 20:06,"199 Highland St, San Francisco, CA 94016" -189260,Apple Airpods Headphones,1,150,04/03/19 00:15,"966 West St, San Francisco, CA 94016" -189261,Wired Headphones,1,11.99,04/17/19 10:38,"612 Maple St, Seattle, WA 98101" -189262,Google Phone,1,600,04/01/19 13:02,"230 Dogwood St, Atlanta, GA 30301" -189262,Wired Headphones,1,11.99,04/01/19 13:02,"230 Dogwood St, Atlanta, GA 30301" -189263,Lightning Charging Cable,1,14.95,04/12/19 22:24,"644 Cherry St, New York City, NY 10001" -189264,Wired Headphones,1,11.99,04/08/19 14:52,"600 Madison St, New York City, NY 10001" -189265,Lightning Charging Cable,1,14.95,04/03/19 11:19,"986 Jackson St, Portland, OR 97035" -189266,USB-C Charging Cable,1,11.95,04/20/19 19:03,"804 Sunset St, Boston, MA 02215" -189267,Wired Headphones,1,11.99,04/27/19 06:51,"852 Sunset St, Los Angeles, CA 90001" -189268,Google Phone,1,600,04/11/19 20:23,"68 11th St, Los Angeles, CA 90001" -189269,Macbook Pro Laptop,1,1700,04/26/19 21:05,"596 Lakeview St, New York City, NY 10001" -189270,Wired Headphones,1,11.99,04/01/19 06:59,"486 Forest St, New York City, NY 10001" -189271,27in FHD Monitor,1,149.99,04/27/19 22:47,"99 1st St, San Francisco, CA 94016" -189272,Lightning Charging Cable,1,14.95,04/29/19 18:27,"252 Ridge St, Los Angeles, CA 90001" -189273,Macbook Pro Laptop,1,1700,04/14/19 00:52,"553 West St, Dallas, TX 75001" -189274,Bose SoundSport Headphones,1,99.99,04/19/19 11:04,"955 Washington St, Boston, MA 02215" -189275,Bose SoundSport Headphones,1,99.99,04/28/19 22:20,"439 Hill St, Boston, MA 02215" -189276,USB-C Charging Cable,1,11.95,04/01/19 19:26,"163 Spruce St, Portland, OR 97035" -189277,Apple Airpods Headphones,1,150,04/22/19 18:54,"390 12th St, Austin, TX 73301" -189278,AAA Batteries (4-pack),3,2.99,04/22/19 10:26,"374 11th St, San Francisco, CA 94016" -189279,AA Batteries (4-pack),2,3.84,04/14/19 16:08,"423 7th St, Los Angeles, CA 90001" -189280,iPhone,1,700,04/16/19 09:57,"242 13th St, Austin, TX 73301" -189281,Apple Airpods Headphones,1,150,04/09/19 19:52,"557 Main St, San Francisco, CA 94016" -189282,Google Phone,1,600,04/30/19 10:45,"803 1st St, Boston, MA 02215" -189283,USB-C Charging Cable,1,11.95,04/14/19 03:07,"928 6th St, Atlanta, GA 30301" -189284,Lightning Charging Cable,1,14.95,04/11/19 20:07,"52 11th St, New York City, NY 10001" -189285,ThinkPad Laptop,1,999.99,04/24/19 18:35,"283 Forest St, Los Angeles, CA 90001" -189286,Lightning Charging Cable,1,14.95,04/15/19 10:36,"182 Jefferson St, San Francisco, CA 94016" -189287,34in Ultrawide Monitor,1,379.99,04/17/19 22:35,"249 Johnson St, Austin, TX 73301" -189288,Wired Headphones,1,11.99,04/13/19 01:37,"743 6th St, New York City, NY 10001" -189289,Wired Headphones,1,11.99,04/05/19 20:35,"376 South St, San Francisco, CA 94016" -189290,Google Phone,1,600,04/17/19 09:18,"482 Wilson St, Dallas, TX 75001" -189291,AAA Batteries (4-pack),1,2.99,04/10/19 22:59,"604 14th St, San Francisco, CA 94016" -189292,Apple Airpods Headphones,1,150,04/27/19 23:43,"456 6th St, Dallas, TX 75001" -189293,AA Batteries (4-pack),1,3.84,04/16/19 10:53,"954 Meadow St, San Francisco, CA 94016" -189294,USB-C Charging Cable,1,11.95,04/21/19 12:02,"357 Lakeview St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -189295,20in Monitor,1,109.99,04/07/19 22:26,"886 Johnson St, Portland, ME 04101" -189296,34in Ultrawide Monitor,1,379.99,04/30/19 17:05,"43 10th St, Dallas, TX 75001" -189297,AAA Batteries (4-pack),1,2.99,04/25/19 14:35,"836 Maple St, Portland, OR 97035" -189298,27in FHD Monitor,1,149.99,04/30/19 06:24,"882 14th St, New York City, NY 10001" -189299,Bose SoundSport Headphones,1,99.99,04/16/19 23:35,"752 Pine St, Seattle, WA 98101" -189300,Bose SoundSport Headphones,1,99.99,04/15/19 12:38,"502 Church St, Los Angeles, CA 90001" -189301,iPhone,1,700,04/05/19 23:49,"562 Hickory St, Boston, MA 02215" -189302,Apple Airpods Headphones,1,150,04/08/19 11:43,"191 7th St, Portland, ME 04101" -189303,Wired Headphones,1,11.99,04/26/19 19:07,"838 Johnson St, Los Angeles, CA 90001" -189304,Lightning Charging Cable,1,14.95,04/10/19 17:22,"326 11th St, Austin, TX 73301" -189305,Vareebadd Phone,1,400,04/02/19 17:36,"409 Sunset St, Seattle, WA 98101" -189306,USB-C Charging Cable,1,11.95,04/17/19 17:35,"373 Center St, Los Angeles, CA 90001" -189307,Vareebadd Phone,1,400,04/17/19 15:10,"683 Maple St, Boston, MA 02215" -189308,Lightning Charging Cable,1,14.95,04/20/19 17:46,"74 Lincoln St, San Francisco, CA 94016" -189309,Lightning Charging Cable,1,14.95,04/18/19 17:33,"863 Center St, New York City, NY 10001" -189310,Vareebadd Phone,1,400,04/18/19 11:55,"77 12th St, San Francisco, CA 94016" -189311,Apple Airpods Headphones,1,150,04/23/19 15:01,"212 13th St, Austin, TX 73301" -189312,Google Phone,1,600,04/18/19 15:09,"411 Hickory St, Atlanta, GA 30301" -189313,27in 4K Gaming Monitor,1,389.99,04/10/19 11:56,"494 Highland St, Austin, TX 73301" -189314,Bose SoundSport Headphones,1,99.99,04/01/19 10:02,"187 10th St, Seattle, WA 98101" -189315,AA Batteries (4-pack),1,3.84,04/29/19 20:55,"351 Meadow St, San Francisco, CA 94016" -189316,LG Dryer,1,600.0,04/23/19 20:36,"13 Main St, Boston, MA 02215" -189317,Lightning Charging Cable,1,14.95,04/25/19 17:47,"539 6th St, Portland, OR 97035" -189318,Apple Airpods Headphones,1,150,04/19/19 13:25,"560 Lake St, San Francisco, CA 94016" -189319,Apple Airpods Headphones,1,150,04/06/19 07:21,"627 Highland St, San Francisco, CA 94016" -189320,AA Batteries (4-pack),1,3.84,04/10/19 17:18,"170 Adams St, Los Angeles, CA 90001" -189321,AAA Batteries (4-pack),3,2.99,04/16/19 19:26,"235 Jefferson St, Dallas, TX 75001" -189322,AAA Batteries (4-pack),2,2.99,04/01/19 20:36,"685 Jefferson St, San Francisco, CA 94016" -189323,AAA Batteries (4-pack),1,2.99,04/23/19 14:24,"423 Spruce St, Portland, OR 97035" -189324,Bose SoundSport Headphones,1,99.99,04/13/19 18:59,"827 11th St, Los Angeles, CA 90001" -189325,USB-C Charging Cable,1,11.95,04/28/19 21:39,"84 7th St, New York City, NY 10001" -189326,Lightning Charging Cable,2,14.95,04/22/19 19:25,"375 9th St, Atlanta, GA 30301" -189327,AA Batteries (4-pack),1,3.84,04/11/19 11:33,"246 North St, Los Angeles, CA 90001" -189328,AA Batteries (4-pack),1,3.84,04/08/19 16:33,"888 Lincoln St, San Francisco, CA 94016" -189329,Wired Headphones,1,11.99,04/28/19 19:03,"867 Pine St, San Francisco, CA 94016" -189330,AA Batteries (4-pack),1,3.84,04/20/19 17:54,"533 Adams St, Seattle, WA 98101" -189331,AA Batteries (4-pack),1,3.84,04/06/19 21:27,"294 Wilson St, Los Angeles, CA 90001" -189332,iPhone,1,700,04/15/19 01:06,"349 1st St, Boston, MA 02215" -189333,27in 4K Gaming Monitor,1,389.99,04/05/19 21:48,"434 River St, Los Angeles, CA 90001" -189334,AA Batteries (4-pack),1,3.84,04/01/19 20:50,"742 Hill St, Atlanta, GA 30301" -189335,AA Batteries (4-pack),1,3.84,04/03/19 08:25,"996 Lincoln St, San Francisco, CA 94016" -189336,Google Phone,1,600,04/03/19 21:59,"940 Washington St, San Francisco, CA 94016" -189336,Bose SoundSport Headphones,1,99.99,04/03/19 21:59,"940 Washington St, San Francisco, CA 94016" -189337,Bose SoundSport Headphones,1,99.99,04/13/19 10:35,"42 1st St, San Francisco, CA 94016" -189338,Apple Airpods Headphones,1,150,04/14/19 09:57,"34 Chestnut St, Portland, OR 97035" -189338,USB-C Charging Cable,1,11.95,04/14/19 09:57,"34 Chestnut St, Portland, OR 97035" -189339,AA Batteries (4-pack),1,3.84,04/26/19 10:12,"401 Chestnut St, Los Angeles, CA 90001" -189340,Lightning Charging Cable,1,14.95,04/23/19 23:47,"871 Pine St, San Francisco, CA 94016" -189341,20in Monitor,1,109.99,04/03/19 08:05,"636 Church St, San Francisco, CA 94016" -189342,Apple Airpods Headphones,1,150,04/04/19 19:09,"704 Walnut St, Boston, MA 02215" -189343,Wired Headphones,1,11.99,04/14/19 16:35,"493 Wilson St, Seattle, WA 98101" -189344,27in FHD Monitor,1,149.99,04/30/19 18:09,"950 River St, Los Angeles, CA 90001" -189345,Bose SoundSport Headphones,1,99.99,04/09/19 21:10,"933 Elm St, San Francisco, CA 94016" -189346,AA Batteries (4-pack),3,3.84,04/04/19 20:53,"204 12th St, Portland, OR 97035" -189347,AA Batteries (4-pack),2,3.84,04/21/19 18:49,"475 Adams St, San Francisco, CA 94016" -189348,Wired Headphones,1,11.99,04/11/19 19:19,"789 Sunset St, Atlanta, GA 30301" -189349,iPhone,1,700,04/23/19 16:21,"884 Hill St, San Francisco, CA 94016" -189350,AA Batteries (4-pack),1,3.84,04/05/19 19:32,"630 9th St, Austin, TX 73301" -189351,AAA Batteries (4-pack),1,2.99,04/06/19 20:34,"542 Madison St, Boston, MA 02215" -189352,AA Batteries (4-pack),2,3.84,04/12/19 12:45,"57 Washington St, Seattle, WA 98101" -189353,Lightning Charging Cable,1,14.95,04/20/19 11:30,"491 Willow St, Los Angeles, CA 90001" -189354,ThinkPad Laptop,1,999.99,04/15/19 08:00,"987 6th St, Atlanta, GA 30301" -189355,AAA Batteries (4-pack),1,2.99,04/23/19 20:13,"567 4th St, Dallas, TX 75001" -189356,Lightning Charging Cable,1,14.95,04/10/19 20:36,"162 North St, San Francisco, CA 94016" -189357,Flatscreen TV,1,300,04/26/19 21:31,"602 Forest St, Boston, MA 02215" -189358,Wired Headphones,1,11.99,04/02/19 20:46,"41 Sunset St, Dallas, TX 75001" -189359,ThinkPad Laptop,1,999.99,04/14/19 17:26,"431 Highland St, New York City, NY 10001" -189360,AAA Batteries (4-pack),1,2.99,04/05/19 11:47,"909 Elm St, New York City, NY 10001" -189361,Google Phone,1,600,04/28/19 12:58,"695 Willow St, Austin, TX 73301" -189362,AAA Batteries (4-pack),2,2.99,04/07/19 22:37,"765 Cherry St, San Francisco, CA 94016" -189363,Vareebadd Phone,1,400,04/27/19 21:43,"838 Lake St, New York City, NY 10001" -189364,USB-C Charging Cable,2,11.95,04/20/19 18:27,"897 5th St, Los Angeles, CA 90001" -189365,USB-C Charging Cable,1,11.95,04/24/19 10:43,"415 9th St, Boston, MA 02215" -189365,AAA Batteries (4-pack),1,2.99,04/24/19 10:43,"415 9th St, Boston, MA 02215" -189366,Apple Airpods Headphones,1,150,04/10/19 22:01,"846 2nd St, San Francisco, CA 94016" -189367,AA Batteries (4-pack),2,3.84,04/24/19 18:57,"114 1st St, Boston, MA 02215" -189368,Wired Headphones,1,11.99,04/22/19 20:30,"61 Church St, Austin, TX 73301" -189369,Macbook Pro Laptop,1,1700,04/21/19 09:13,"816 5th St, San Francisco, CA 94016" -189370,Macbook Pro Laptop,1,1700,04/22/19 13:26,"572 Lakeview St, Dallas, TX 75001" -189371,AAA Batteries (4-pack),1,2.99,04/11/19 10:21,"365 West St, Seattle, WA 98101" -189372,Wired Headphones,1,11.99,04/09/19 18:08,"210 4th St, San Francisco, CA 94016" -189373,AA Batteries (4-pack),1,3.84,04/21/19 16:49,"491 Main St, Atlanta, GA 30301" -189374,AA Batteries (4-pack),1,3.84,04/16/19 05:56,"889 4th St, Boston, MA 02215" -189375,Wired Headphones,1,11.99,04/24/19 14:05,"383 Center St, San Francisco, CA 94016" -189376,Apple Airpods Headphones,1,150,04/04/19 20:40,"311 Madison St, Los Angeles, CA 90001" -189377,AAA Batteries (4-pack),1,2.99,04/18/19 12:23,"265 Lincoln St, San Francisco, CA 94016" -189378,20in Monitor,1,109.99,04/28/19 22:18,"32 Meadow St, New York City, NY 10001" -189379,USB-C Charging Cable,1,11.95,04/18/19 03:57,"823 Adams St, Los Angeles, CA 90001" -189380,Lightning Charging Cable,1,14.95,04/08/19 11:18,"548 1st St, Los Angeles, CA 90001" -189381,AAA Batteries (4-pack),1,2.99,04/07/19 21:56,"165 Hill St, Los Angeles, CA 90001" -189382,Apple Airpods Headphones,1,150,04/14/19 17:01,"441 Hill St, San Francisco, CA 94016" -189383,Lightning Charging Cable,1,14.95,04/19/19 08:01,"33 Ridge St, Austin, TX 73301" -189384,Lightning Charging Cable,1,14.95,04/05/19 12:56,"374 Cedar St, Los Angeles, CA 90001" -189385,AA Batteries (4-pack),1,3.84,04/15/19 11:53,"827 Meadow St, Seattle, WA 98101" -189386,Wired Headphones,2,11.99,04/19/19 16:35,"870 Jefferson St, San Francisco, CA 94016" -189387,AA Batteries (4-pack),1,3.84,04/14/19 08:33,"918 12th St, San Francisco, CA 94016" -189387,USB-C Charging Cable,1,11.95,04/14/19 08:33,"918 12th St, San Francisco, CA 94016" -189388,Bose SoundSport Headphones,1,99.99,04/08/19 14:32,"810 Ridge St, San Francisco, CA 94016" -189389,Bose SoundSport Headphones,1,99.99,04/02/19 09:48,"657 Forest St, Los Angeles, CA 90001" -189390,Lightning Charging Cable,1,14.95,04/11/19 15:50,"341 Johnson St, Los Angeles, CA 90001" -189391,USB-C Charging Cable,1,11.95,04/03/19 15:09,"165 Johnson St, San Francisco, CA 94016" -189392,USB-C Charging Cable,1,11.95,04/27/19 11:46,"720 14th St, Portland, ME 04101" -189393,Wired Headphones,1,11.99,04/28/19 01:57,"889 River St, Los Angeles, CA 90001" -189394,USB-C Charging Cable,1,11.95,04/02/19 11:05,"3 Sunset St, Atlanta, GA 30301" -189394,27in FHD Monitor,1,149.99,04/02/19 11:05,"3 Sunset St, Atlanta, GA 30301" -189395,ThinkPad Laptop,1,999.99,04/03/19 20:15,"496 Johnson St, Austin, TX 73301" -189396,Wired Headphones,1,11.99,04/18/19 05:21,"561 Jefferson St, San Francisco, CA 94016" -189397,USB-C Charging Cable,1,11.95,04/06/19 16:23,"52 Main St, Portland, OR 97035" -189398,AA Batteries (4-pack),2,3.84,04/06/19 03:48,"705 Ridge St, Seattle, WA 98101" -189399,USB-C Charging Cable,1,11.95,04/25/19 08:22,"802 Willow St, New York City, NY 10001" -189400,AAA Batteries (4-pack),1,2.99,04/17/19 22:11,"984 7th St, Los Angeles, CA 90001" -189401,USB-C Charging Cable,1,11.95,04/30/19 08:35,"223 Park St, Boston, MA 02215" -189402,27in 4K Gaming Monitor,1,389.99,04/16/19 21:56,"368 Maple St, Portland, ME 04101" -189403,AA Batteries (4-pack),1,3.84,04/28/19 21:11,"983 South St, Austin, TX 73301" -189404,Lightning Charging Cable,1,14.95,04/16/19 21:17,"122 Highland St, Atlanta, GA 30301" -189405,Wired Headphones,1,11.99,04/29/19 09:46,"382 6th St, San Francisco, CA 94016" -189406,27in FHD Monitor,1,149.99,04/04/19 22:55,"229 Dogwood St, Los Angeles, CA 90001" -189407,AAA Batteries (4-pack),1,2.99,04/08/19 15:12,"115 Chestnut St, New York City, NY 10001" -189408,Flatscreen TV,1,300,04/08/19 15:58,"406 Sunset St, New York City, NY 10001" -189409,AA Batteries (4-pack),3,3.84,04/11/19 23:58,"955 11th St, Portland, OR 97035" -189410,Wired Headphones,1,11.99,04/04/19 15:01,"205 5th St, Austin, TX 73301" -189411,20in Monitor,1,109.99,04/16/19 20:41,"982 6th St, Atlanta, GA 30301" -189412,Wired Headphones,1,11.99,04/01/19 21:52,"172 Lincoln St, San Francisco, CA 94016" -189413,iPhone,1,700,04/30/19 12:41,"94 Meadow St, Austin, TX 73301" -189414,iPhone,1,700,04/25/19 14:49,"426 West St, Dallas, TX 75001" -189414,Lightning Charging Cable,1,14.95,04/25/19 14:49,"426 West St, Dallas, TX 75001" -189414,Apple Airpods Headphones,1,150,04/25/19 14:49,"426 West St, Dallas, TX 75001" -189415,Apple Airpods Headphones,1,150,04/21/19 22:03,"97 14th St, Atlanta, GA 30301" -189416,Bose SoundSport Headphones,1,99.99,04/04/19 13:33,"975 Lakeview St, Atlanta, GA 30301" -189417,AAA Batteries (4-pack),2,2.99,04/11/19 01:28,"507 Cherry St, San Francisco, CA 94016" -189418,USB-C Charging Cable,1,11.95,04/30/19 20:21,"642 13th St, New York City, NY 10001" -189419,AA Batteries (4-pack),1,3.84,04/09/19 19:12,"489 Chestnut St, San Francisco, CA 94016" -189420,USB-C Charging Cable,1,11.95,04/07/19 14:02,"864 Jefferson St, San Francisco, CA 94016" -189421,27in FHD Monitor,1,149.99,04/25/19 18:56,"539 South St, San Francisco, CA 94016" -189422,AAA Batteries (4-pack),1,2.99,04/21/19 15:56,"736 12th St, San Francisco, CA 94016" -189423,Lightning Charging Cable,2,14.95,04/06/19 06:52,"269 Center St, Boston, MA 02215" -189424,Wired Headphones,1,11.99,04/18/19 20:19,"219 Hickory St, New York City, NY 10001" -189425,Google Phone,1,600,04/14/19 22:06,"581 Park St, Atlanta, GA 30301" -189426,AA Batteries (4-pack),1,3.84,04/13/19 18:05,"593 5th St, Los Angeles, CA 90001" -189427,Wired Headphones,1,11.99,04/27/19 20:01,"587 Willow St, San Francisco, CA 94016" -189428,34in Ultrawide Monitor,1,379.99,04/30/19 20:01,"788 Park St, Los Angeles, CA 90001" -189429,34in Ultrawide Monitor,1,379.99,04/06/19 18:57,"522 Adams St, Austin, TX 73301" -189430,27in FHD Monitor,1,149.99,04/10/19 20:13,"241 Wilson St, Boston, MA 02215" -189431,USB-C Charging Cable,1,11.95,04/08/19 14:28,"604 Lake St, New York City, NY 10001" -189432,Lightning Charging Cable,1,14.95,04/26/19 21:15,"318 Hill St, Los Angeles, CA 90001" -189433,Wired Headphones,1,11.99,04/11/19 17:39,"460 9th St, San Francisco, CA 94016" -189434,Bose SoundSport Headphones,1,99.99,04/22/19 05:38,"777 Hill St, Atlanta, GA 30301" -189435,Lightning Charging Cable,1,14.95,04/03/19 10:18,"335 Madison St, Austin, TX 73301" -189436,iPhone,1,700,04/15/19 10:08,"332 Sunset St, Boston, MA 02215" -189437,Flatscreen TV,1,300,04/15/19 13:16,"950 Willow St, Dallas, TX 75001" -189438,Lightning Charging Cable,1,14.95,04/22/19 22:35,"530 Dogwood St, Boston, MA 02215" -189439,Lightning Charging Cable,1,14.95,04/07/19 07:25,"446 6th St, Seattle, WA 98101" -189440,USB-C Charging Cable,2,11.95,04/14/19 19:33,"859 West St, Boston, MA 02215" -189441,Wired Headphones,1,11.99,04/27/19 09:16,"759 Johnson St, San Francisco, CA 94016" -189442,Apple Airpods Headphones,1,150,04/09/19 10:45,"118 Hill St, San Francisco, CA 94016" -189443,Bose SoundSport Headphones,1,99.99,04/05/19 20:09,"565 Main St, Austin, TX 73301" -189444,Wired Headphones,2,11.99,04/26/19 14:14,"660 Sunset St, Boston, MA 02215" -189445,Apple Airpods Headphones,1,150,04/13/19 11:03,"343 Johnson St, Seattle, WA 98101" -189446,Flatscreen TV,1,300,04/03/19 22:38,"944 Lake St, Los Angeles, CA 90001" -189447,AAA Batteries (4-pack),1,2.99,04/05/19 11:12,"265 Pine St, Los Angeles, CA 90001" -189448,Lightning Charging Cable,1,14.95,04/11/19 19:07,"200 4th St, Austin, TX 73301" -189449,34in Ultrawide Monitor,1,379.99,04/28/19 11:31,"29 Jefferson St, San Francisco, CA 94016" -189450,Wired Headphones,1,11.99,04/27/19 13:54,"477 Hill St, San Francisco, CA 94016" -189451,Lightning Charging Cable,1,14.95,04/15/19 21:29,"501 Meadow St, San Francisco, CA 94016" -189452,AAA Batteries (4-pack),2,2.99,04/22/19 19:55,"599 North St, San Francisco, CA 94016" -189453,Lightning Charging Cable,1,14.95,04/10/19 13:51,"350 Wilson St, San Francisco, CA 94016" -189454,Lightning Charging Cable,1,14.95,04/26/19 00:10,"638 Adams St, Boston, MA 02215" -189455,Wired Headphones,2,11.99,04/09/19 18:25,"132 Lakeview St, New York City, NY 10001" -189456,AA Batteries (4-pack),2,3.84,04/03/19 23:07,"654 South St, New York City, NY 10001" -189457,iPhone,1,700,04/22/19 14:23,"649 South St, San Francisco, CA 94016" -189457,Wired Headphones,1,11.99,04/22/19 14:23,"649 South St, San Francisco, CA 94016" -189458,iPhone,1,700,04/14/19 23:48,"297 11th St, San Francisco, CA 94016" -189459,USB-C Charging Cable,1,11.95,04/28/19 16:59,"195 14th St, Los Angeles, CA 90001" -189460,AAA Batteries (4-pack),1,2.99,04/12/19 15:39,"681 Spruce St, New York City, NY 10001" -189461,Vareebadd Phone,1,400,04/21/19 16:17,"560 River St, New York City, NY 10001" -189462,Wired Headphones,1,11.99,04/28/19 22:57,"4 Adams St, San Francisco, CA 94016" -189463,34in Ultrawide Monitor,1,379.99,04/25/19 11:51,"853 Dogwood St, Los Angeles, CA 90001" -189464,AA Batteries (4-pack),1,3.84,04/14/19 20:35,"454 Chestnut St, Portland, OR 97035" -189465,Vareebadd Phone,1,400,04/26/19 18:30,"3 Willow St, Boston, MA 02215" -189466,34in Ultrawide Monitor,1,379.99,04/05/19 20:45,"196 South St, Boston, MA 02215" -189467,AA Batteries (4-pack),1,3.84,04/21/19 19:09,"371 13th St, Dallas, TX 75001" -189468,AA Batteries (4-pack),1,3.84,04/06/19 10:00,"806 Dogwood St, Boston, MA 02215" -189469,Macbook Pro Laptop,1,1700,04/11/19 22:12,"282 Ridge St, Austin, TX 73301" -189470,USB-C Charging Cable,2,11.95,04/13/19 14:04,"155 Cherry St, Seattle, WA 98101" -189471,Wired Headphones,1,11.99,04/12/19 16:34,"908 6th St, Dallas, TX 75001" -189472,AAA Batteries (4-pack),2,2.99,04/09/19 19:42,"873 1st St, San Francisco, CA 94016" -189473,iPhone,1,700,04/18/19 20:45,"952 Ridge St, New York City, NY 10001" -189474,Flatscreen TV,1,300,04/01/19 10:00,"997 River St, San Francisco, CA 94016" -189475,AAA Batteries (4-pack),2,2.99,04/19/19 09:55,"297 Hickory St, Dallas, TX 75001" -189476,Lightning Charging Cable,1,14.95,04/18/19 21:31,"294 River St, San Francisco, CA 94016" -189477,Macbook Pro Laptop,1,1700,04/11/19 21:31,"445 Walnut St, New York City, NY 10001" -189478,Lightning Charging Cable,1,14.95,04/26/19 11:31,"274 Park St, Los Angeles, CA 90001" -189479,Macbook Pro Laptop,1,1700,04/12/19 03:02,"28 Jackson St, San Francisco, CA 94016" -,,,,, -189480,Bose SoundSport Headphones,1,99.99,04/30/19 14:36,"355 Wilson St, Portland, ME 04101" -189481,27in 4K Gaming Monitor,1,389.99,04/25/19 15:36,"552 Walnut St, Seattle, WA 98101" -189482,AA Batteries (4-pack),1,3.84,04/30/19 21:09,"554 Church St, Seattle, WA 98101" -189483,USB-C Charging Cable,1,11.95,04/08/19 04:54,"572 Highland St, Los Angeles, CA 90001" -189484,Flatscreen TV,1,300,04/25/19 15:49,"222 4th St, Seattle, WA 98101" -189485,AA Batteries (4-pack),2,3.84,04/28/19 13:37,"603 West St, Los Angeles, CA 90001" -189486,USB-C Charging Cable,1,11.95,04/02/19 08:52,"100 12th St, San Francisco, CA 94016" -189487,AA Batteries (4-pack),1,3.84,04/01/19 11:50,"569 North St, Los Angeles, CA 90001" -189488,USB-C Charging Cable,1,11.95,04/10/19 22:04,"708 Hickory St, Boston, MA 02215" -189489,27in FHD Monitor,1,149.99,04/01/19 10:12,"679 Walnut St, Dallas, TX 75001" -189490,AA Batteries (4-pack),2,3.84,04/24/19 12:22,"798 Chestnut St, San Francisco, CA 94016" -189491,Lightning Charging Cable,1,14.95,04/11/19 14:18,"328 7th St, Los Angeles, CA 90001" -189492,27in FHD Monitor,1,149.99,04/04/19 11:28,"433 Lakeview St, San Francisco, CA 94016" -189493,20in Monitor,1,109.99,04/27/19 10:55,"237 7th St, Seattle, WA 98101" -189494,Wired Headphones,1,11.99,04/11/19 21:20,"853 10th St, San Francisco, CA 94016" -189495,iPhone,1,700,04/09/19 11:59,"589 7th St, Atlanta, GA 30301" -189496,ThinkPad Laptop,1,999.99,04/17/19 23:29,"242 Forest St, San Francisco, CA 94016" -189496,Lightning Charging Cable,1,14.95,04/17/19 23:29,"242 Forest St, San Francisco, CA 94016" -189497,Bose SoundSport Headphones,1,99.99,04/27/19 17:39,"696 Forest St, New York City, NY 10001" -189498,Apple Airpods Headphones,1,150,04/29/19 08:26,"107 Church St, Los Angeles, CA 90001" -189499,Apple Airpods Headphones,1,150,04/03/19 20:30,"689 Adams St, Los Angeles, CA 90001" -189500,34in Ultrawide Monitor,1,379.99,04/26/19 15:42,"635 Jackson St, Los Angeles, CA 90001" -189501,Lightning Charging Cable,1,14.95,04/19/19 07:50,"462 14th St, Austin, TX 73301" -189502,Lightning Charging Cable,1,14.95,04/28/19 21:23,"243 Washington St, Boston, MA 02215" -189503,Flatscreen TV,1,300,04/01/19 18:12,"875 13th St, San Francisco, CA 94016" -189504,Wired Headphones,1,11.99,04/01/19 09:46,"774 Lincoln St, Dallas, TX 75001" -189505,Lightning Charging Cable,1,14.95,04/06/19 20:59,"580 4th St, San Francisco, CA 94016" -189506,Lightning Charging Cable,1,14.95,04/21/19 13:10,"799 7th St, San Francisco, CA 94016" -189507,AA Batteries (4-pack),1,3.84,04/08/19 12:43,"465 Wilson St, Boston, MA 02215" -189508,Macbook Pro Laptop,1,1700,04/14/19 10:51,"508 Hill St, San Francisco, CA 94016" -189509,AAA Batteries (4-pack),1,2.99,04/13/19 16:59,"607 Sunset St, Austin, TX 73301" -189510,Bose SoundSport Headphones,1,99.99,04/05/19 06:20,"994 River St, New York City, NY 10001" -189511,Bose SoundSport Headphones,2,99.99,04/01/19 21:47,"563 Elm St, Los Angeles, CA 90001" -189512,27in 4K Gaming Monitor,1,389.99,04/25/19 03:29,"307 5th St, Seattle, WA 98101" -189513,USB-C Charging Cable,1,11.95,04/26/19 10:36,"4 Main St, Boston, MA 02215" -189514,Google Phone,1,600,04/12/19 22:19,"774 West St, New York City, NY 10001" -189515,Bose SoundSport Headphones,1,99.99,04/10/19 11:13,"819 Meadow St, San Francisco, CA 94016" -189516,AA Batteries (4-pack),1,3.84,04/07/19 18:18,"571 Lincoln St, New York City, NY 10001" -189517,Macbook Pro Laptop,1,1700,04/23/19 14:57,"126 Lakeview St, New York City, NY 10001" -189518,AA Batteries (4-pack),1,3.84,04/12/19 22:48,"550 Walnut St, Atlanta, GA 30301" -189519,Apple Airpods Headphones,1,150,04/10/19 15:22,"750 Jefferson St, Boston, MA 02215" -189520,Wired Headphones,1,11.99,04/29/19 21:22,"736 South St, New York City, NY 10001" -189521,Wired Headphones,1,11.99,04/11/19 21:40,"198 Elm St, San Francisco, CA 94016" -189522,AAA Batteries (4-pack),2,2.99,04/24/19 23:53,"699 Hill St, San Francisco, CA 94016" -189523,AAA Batteries (4-pack),3,2.99,04/27/19 19:27,"869 Ridge St, San Francisco, CA 94016" -189524,Lightning Charging Cable,1,14.95,04/21/19 17:22,"10 1st St, Portland, OR 97035" -189525,34in Ultrawide Monitor,1,379.99,04/10/19 08:01,"764 Lakeview St, San Francisco, CA 94016" -189526,ThinkPad Laptop,1,999.99,04/26/19 21:03,"320 10th St, Los Angeles, CA 90001" -189527,Bose SoundSport Headphones,1,99.99,04/11/19 13:40,"534 North St, Austin, TX 73301" -189528,AA Batteries (4-pack),1,3.84,04/12/19 10:58,"896 Dogwood St, Portland, OR 97035" -189529,Apple Airpods Headphones,1,150,04/04/19 14:54,"946 Sunset St, Seattle, WA 98101" -189530,AA Batteries (4-pack),4,3.84,04/23/19 08:59,"93 Ridge St, New York City, NY 10001" -189531,20in Monitor,1,109.99,04/28/19 13:00,"597 6th St, New York City, NY 10001" -189532,AA Batteries (4-pack),1,3.84,04/05/19 20:03,"873 1st St, Seattle, WA 98101" -189533,Lightning Charging Cable,1,14.95,04/16/19 15:53,"327 South St, San Francisco, CA 94016" -189534,27in FHD Monitor,1,149.99,04/28/19 20:34,"727 Main St, Austin, TX 73301" -189535,Bose SoundSport Headphones,1,99.99,04/04/19 11:03,"766 Pine St, San Francisco, CA 94016" -189536,Wired Headphones,1,11.99,04/19/19 02:52,"659 11th St, Boston, MA 02215" -189537,Lightning Charging Cable,1,14.95,04/20/19 22:05,"819 Ridge St, San Francisco, CA 94016" -189538,AAA Batteries (4-pack),1,2.99,04/05/19 22:07,"946 10th St, San Francisco, CA 94016" -189539,USB-C Charging Cable,1,11.95,04/27/19 15:40,"97 Adams St, New York City, NY 10001" -189540,Lightning Charging Cable,1,14.95,04/30/19 19:42,"534 River St, Boston, MA 02215" -189541,USB-C Charging Cable,1,11.95,04/22/19 09:09,"303 1st St, Portland, OR 97035" -189542,AA Batteries (4-pack),1,3.84,04/11/19 11:36,"527 Maple St, San Francisco, CA 94016" -189543,Wired Headphones,2,11.99,04/28/19 18:26,"569 North St, Los Angeles, CA 90001" -189544,Lightning Charging Cable,1,14.95,04/06/19 19:50,"354 Washington St, Boston, MA 02215" -189545,20in Monitor,1,109.99,05/01/19 02:06,"670 5th St, San Francisco, CA 94016" -189546,AAA Batteries (4-pack),1,2.99,04/05/19 20:15,"208 2nd St, New York City, NY 10001" -189547,Google Phone,1,600,04/17/19 18:39,"422 5th St, Los Angeles, CA 90001" -189548,Bose SoundSport Headphones,1,99.99,04/13/19 09:56,"859 Center St, Los Angeles, CA 90001" -,,,,, -189549,USB-C Charging Cable,2,11.95,04/04/19 22:54,"997 Forest St, Austin, TX 73301" -189550,AAA Batteries (4-pack),1,2.99,04/12/19 01:54,"545 Walnut St, San Francisco, CA 94016" -189551,USB-C Charging Cable,1,11.95,04/06/19 04:42,"986 Pine St, Portland, OR 97035" -189552,iPhone,1,700,04/25/19 20:03,"191 Chestnut St, Los Angeles, CA 90001" -189552,Lightning Charging Cable,1,14.95,04/25/19 20:03,"191 Chestnut St, Los Angeles, CA 90001" -189553,Apple Airpods Headphones,1,150,04/07/19 20:15,"364 Willow St, Portland, OR 97035" -189554,Lightning Charging Cable,1,14.95,04/13/19 16:58,"778 11th St, San Francisco, CA 94016" -189555,LG Washing Machine,1,600.0,04/04/19 18:01,"729 Meadow St, Dallas, TX 75001" -189556,AA Batteries (4-pack),1,3.84,04/10/19 13:01,"789 Highland St, Seattle, WA 98101" -189557,iPhone,1,700,04/27/19 12:49,"967 Chestnut St, Seattle, WA 98101" -189558,AA Batteries (4-pack),1,3.84,04/17/19 00:04,"773 11th St, Portland, OR 97035" -189559,Apple Airpods Headphones,1,150,04/26/19 13:14,"482 Lincoln St, Austin, TX 73301" -189560,Lightning Charging Cable,1,14.95,04/12/19 22:43,"795 Lakeview St, Dallas, TX 75001" -189561,Bose SoundSport Headphones,1,99.99,04/18/19 21:06,"845 Cherry St, Boston, MA 02215" -189562,USB-C Charging Cable,1,11.95,04/22/19 15:49,"235 8th St, San Francisco, CA 94016" -189563,Wired Headphones,3,11.99,04/21/19 15:21,"656 Lakeview St, Seattle, WA 98101" -189564,27in FHD Monitor,1,149.99,04/01/19 21:55,"576 7th St, San Francisco, CA 94016" -189565,AA Batteries (4-pack),1,3.84,04/03/19 01:02,"181 Ridge St, Boston, MA 02215" -189566,Flatscreen TV,1,300,04/03/19 22:36,"77 Lakeview St, New York City, NY 10001" -189567,AA Batteries (4-pack),1,3.84,04/11/19 09:25,"819 12th St, New York City, NY 10001" -189568,Apple Airpods Headphones,1,150,04/23/19 15:28,"865 Willow St, San Francisco, CA 94016" -189569,AA Batteries (4-pack),1,3.84,04/22/19 20:55,"357 Highland St, New York City, NY 10001" -189570,AA Batteries (4-pack),1,3.84,04/05/19 22:59,"629 Madison St, San Francisco, CA 94016" -189570,Wired Headphones,1,11.99,04/05/19 22:59,"629 Madison St, San Francisco, CA 94016" -189571,AA Batteries (4-pack),2,3.84,04/27/19 15:27,"319 Adams St, Los Angeles, CA 90001" -189572,Apple Airpods Headphones,1,150,04/18/19 13:02,"226 Hickory St, Austin, TX 73301" -189573,Lightning Charging Cable,1,14.95,04/26/19 11:32,"136 Hickory St, Atlanta, GA 30301" -189574,AAA Batteries (4-pack),2,2.99,04/27/19 13:00,"999 Highland St, New York City, NY 10001" -189575,iPhone,1,700,04/18/19 21:54,"937 13th St, Atlanta, GA 30301" -189576,Flatscreen TV,1,300,04/11/19 12:05,"289 South St, New York City, NY 10001" -189577,27in FHD Monitor,1,149.99,04/10/19 11:34,"144 Madison St, Los Angeles, CA 90001" -189578,Lightning Charging Cable,1,14.95,04/28/19 10:51,"386 10th St, Los Angeles, CA 90001" -189579,AA Batteries (4-pack),2,3.84,04/25/19 21:25,"870 Park St, San Francisco, CA 94016" -189580,Macbook Pro Laptop,1,1700,04/20/19 08:42,"40 South St, Seattle, WA 98101" -189581,USB-C Charging Cable,1,11.95,04/12/19 15:28,"463 Highland St, Austin, TX 73301" -189582,Bose SoundSport Headphones,1,99.99,04/21/19 11:24,"412 Willow St, Dallas, TX 75001" -189583,Google Phone,1,600,04/30/19 18:43,"108 Washington St, San Francisco, CA 94016" -189584,Lightning Charging Cable,1,14.95,04/19/19 11:23,"962 Johnson St, Dallas, TX 75001" -189585,Lightning Charging Cable,1,14.95,04/04/19 20:51,"85 Hickory St, Seattle, WA 98101" -189586,Bose SoundSport Headphones,1,99.99,04/27/19 12:58,"311 13th St, Portland, OR 97035" -189587,AA Batteries (4-pack),1,3.84,04/20/19 17:54,"532 Hickory St, Portland, ME 04101" -189588,AA Batteries (4-pack),1,3.84,04/08/19 19:39,"983 9th St, New York City, NY 10001" -189589,iPhone,1,700,04/19/19 09:04,"110 North St, San Francisco, CA 94016" -189590,Bose SoundSport Headphones,1,99.99,04/20/19 08:26,"66 Church St, Los Angeles, CA 90001" -189591,AAA Batteries (4-pack),2,2.99,04/08/19 18:44,"132 Lincoln St, San Francisco, CA 94016" -189592,Wired Headphones,1,11.99,04/04/19 23:44,"706 1st St, Los Angeles, CA 90001" -189593,ThinkPad Laptop,1,999.99,04/24/19 21:39,"591 Lakeview St, Atlanta, GA 30301" -189594,Apple Airpods Headphones,1,150,04/10/19 13:46,"52 Walnut St, San Francisco, CA 94016" -189595,USB-C Charging Cable,1,11.95,04/11/19 16:07,"309 North St, Dallas, TX 75001" -189596,AAA Batteries (4-pack),1,2.99,04/08/19 19:25,"434 Pine St, Austin, TX 73301" -189597,Vareebadd Phone,1,400,04/21/19 11:12,"240 Chestnut St, Dallas, TX 75001" -189597,Wired Headphones,2,11.99,04/21/19 11:12,"240 Chestnut St, Dallas, TX 75001" -189598,34in Ultrawide Monitor,1,379.99,04/09/19 19:29,"103 Meadow St, Boston, MA 02215" -189599,Lightning Charging Cable,1,14.95,04/19/19 12:37,"215 10th St, San Francisco, CA 94016" -189600,USB-C Charging Cable,1,11.95,04/07/19 16:49,"561 Walnut St, Austin, TX 73301" -189601,Macbook Pro Laptop,1,1700,04/25/19 19:47,"865 Hill St, San Francisco, CA 94016" -189602,AA Batteries (4-pack),1,3.84,04/29/19 06:29,"924 Cherry St, Dallas, TX 75001" -189603,Lightning Charging Cable,2,14.95,04/11/19 01:54,"507 1st St, Los Angeles, CA 90001" -189604,Wired Headphones,1,11.99,04/22/19 12:24,"169 Sunset St, Seattle, WA 98101" -189605,USB-C Charging Cable,1,11.95,04/30/19 20:44,"961 South St, Austin, TX 73301" -189606,Lightning Charging Cable,1,14.95,04/27/19 21:51,"992 5th St, Dallas, TX 75001" -189607,AAA Batteries (4-pack),3,2.99,04/28/19 13:56,"750 Meadow St, Los Angeles, CA 90001" -189608,AA Batteries (4-pack),1,3.84,04/15/19 13:26,"727 14th St, Seattle, WA 98101" -189609,Apple Airpods Headphones,1,150,04/14/19 11:58,"685 4th St, San Francisco, CA 94016" -189610,Lightning Charging Cable,1,14.95,04/10/19 21:19,"983 2nd St, Boston, MA 02215" -189611,AA Batteries (4-pack),1,3.84,04/25/19 09:48,"527 Adams St, San Francisco, CA 94016" -189612,AA Batteries (4-pack),3,3.84,04/10/19 21:48,"399 Pine St, Boston, MA 02215" -189613,Macbook Pro Laptop,1,1700,04/09/19 15:51,"312 Ridge St, San Francisco, CA 94016" -189614,USB-C Charging Cable,1,11.95,04/25/19 14:15,"336 Maple St, Los Angeles, CA 90001" -189615,AA Batteries (4-pack),2,3.84,04/23/19 19:30,"196 13th St, San Francisco, CA 94016" -189616,Lightning Charging Cable,1,14.95,04/29/19 16:37,"639 1st St, Dallas, TX 75001" -189617,iPhone,1,700,04/22/19 15:34,"902 5th St, Austin, TX 73301" -189617,Wired Headphones,1,11.99,04/22/19 15:34,"902 5th St, Austin, TX 73301" -189618,USB-C Charging Cable,1,11.95,04/30/19 23:41,"246 Spruce St, Seattle, WA 98101" -189619,AA Batteries (4-pack),1,3.84,04/23/19 21:04,"498 Maple St, Los Angeles, CA 90001" -189620,Wired Headphones,1,11.99,04/15/19 01:28,"910 Lake St, Boston, MA 02215" -189621,ThinkPad Laptop,1,999.99,04/28/19 00:14,"623 Church St, San Francisco, CA 94016" -189622,27in FHD Monitor,1,149.99,04/09/19 15:44,"175 Elm St, San Francisco, CA 94016" -189623,27in 4K Gaming Monitor,1,389.99,04/30/19 22:18,"996 2nd St, Los Angeles, CA 90001" -189624,Lightning Charging Cable,1,14.95,04/17/19 19:40,"762 Jackson St, San Francisco, CA 94016" -189625,AAA Batteries (4-pack),3,2.99,04/03/19 16:40,"387 Johnson St, Dallas, TX 75001" -189626,34in Ultrawide Monitor,1,379.99,04/25/19 13:09,"483 Sunset St, San Francisco, CA 94016" -189627,AAA Batteries (4-pack),1,2.99,04/25/19 17:00,"227 Cedar St, Los Angeles, CA 90001" -189628,AA Batteries (4-pack),2,3.84,04/18/19 21:04,"619 10th St, Seattle, WA 98101" -189629,iPhone,1,700,04/27/19 14:49,"650 West St, New York City, NY 10001" -189630,AAA Batteries (4-pack),2,2.99,04/23/19 19:22,"622 Elm St, Los Angeles, CA 90001" -189631,Bose SoundSport Headphones,1,99.99,04/27/19 00:41,"626 Sunset St, Seattle, WA 98101" -189632,Apple Airpods Headphones,1,150,04/19/19 22:51,"953 Pine St, San Francisco, CA 94016" -189633,ThinkPad Laptop,1,999.99,04/13/19 12:56,"645 12th St, Seattle, WA 98101" -189634,34in Ultrawide Monitor,1,379.99,04/07/19 15:33,"687 4th St, Dallas, TX 75001" -189635,Wired Headphones,1,11.99,04/30/19 13:10,"526 8th St, San Francisco, CA 94016" -189636,Macbook Pro Laptop,1,1700,04/17/19 18:06,"410 Highland St, New York City, NY 10001" -189637,AAA Batteries (4-pack),1,2.99,04/11/19 16:06,"740 Forest St, New York City, NY 10001" -189638,Apple Airpods Headphones,1,150,04/13/19 01:18,"823 Cedar St, New York City, NY 10001" -189639,AA Batteries (4-pack),2,3.84,04/03/19 15:59,"615 River St, New York City, NY 10001" -189640,Vareebadd Phone,1,400,04/29/19 21:02,"615 13th St, Dallas, TX 75001" -189641,Apple Airpods Headphones,1,150,04/18/19 19:24,"328 Sunset St, Boston, MA 02215" -189642,Apple Airpods Headphones,2,150,04/25/19 12:37,"509 Highland St, San Francisco, CA 94016" -189643,Bose SoundSport Headphones,1,99.99,04/16/19 21:51,"928 5th St, Atlanta, GA 30301" -189644,AAA Batteries (4-pack),1,2.99,04/23/19 22:18,"380 Cherry St, New York City, NY 10001" -189645,AA Batteries (4-pack),1,3.84,04/23/19 15:47,"507 River St, Austin, TX 73301" -189646,Bose SoundSport Headphones,1,99.99,04/03/19 09:06,"95 2nd St, Los Angeles, CA 90001" -189647,AA Batteries (4-pack),1,3.84,04/29/19 13:34,"4 1st St, Boston, MA 02215" -189648,AAA Batteries (4-pack),1,2.99,04/15/19 10:59,"790 Main St, San Francisco, CA 94016" -189649,27in 4K Gaming Monitor,1,389.99,04/11/19 17:24,"674 Hill St, Atlanta, GA 30301" -189650,USB-C Charging Cable,2,11.95,04/29/19 11:40,"26 Elm St, San Francisco, CA 94016" -189651,Apple Airpods Headphones,1,150,04/10/19 23:05,"96 12th St, Atlanta, GA 30301" -189652,Bose SoundSport Headphones,1,99.99,04/07/19 11:24,"409 Dogwood St, Austin, TX 73301" -189653,AA Batteries (4-pack),1,3.84,04/27/19 20:03,"609 Walnut St, Portland, ME 04101" -189654,USB-C Charging Cable,1,11.95,04/21/19 18:57,"383 2nd St, San Francisco, CA 94016" -189655,27in FHD Monitor,1,149.99,04/27/19 11:30,"579 Johnson St, Boston, MA 02215" -189656,AA Batteries (4-pack),1,3.84,04/05/19 19:56,"637 14th St, Atlanta, GA 30301" -189657,Bose SoundSport Headphones,1,99.99,04/20/19 13:02,"659 North St, San Francisco, CA 94016" -189658,34in Ultrawide Monitor,1,379.99,04/03/19 16:12,"377 Main St, Dallas, TX 75001" -189659,USB-C Charging Cable,1,11.95,04/18/19 16:30,"803 1st St, San Francisco, CA 94016" -189660,Wired Headphones,1,11.99,04/23/19 14:00,"203 West St, Boston, MA 02215" -189661,AA Batteries (4-pack),1,3.84,04/03/19 11:05,"124 South St, Los Angeles, CA 90001" -189662,27in 4K Gaming Monitor,1,389.99,04/21/19 16:17,"536 Hickory St, Los Angeles, CA 90001" -189663,Wired Headphones,2,11.99,04/11/19 12:31,"833 Ridge St, Dallas, TX 75001" -189664,Apple Airpods Headphones,1,150,04/03/19 08:26,"685 Wilson St, New York City, NY 10001" -189665,Apple Airpods Headphones,1,150,04/20/19 23:37,"790 Lincoln St, Dallas, TX 75001" -189666,27in FHD Monitor,1,149.99,04/08/19 20:52,"997 Chestnut St, San Francisco, CA 94016" -189667,Macbook Pro Laptop,1,1700,04/06/19 19:13,"832 5th St, New York City, NY 10001" -189668,USB-C Charging Cable,1,11.95,04/01/19 16:03,"304 Sunset St, Austin, TX 73301" -189669,Google Phone,1,600,04/30/19 08:32,"90 12th St, Los Angeles, CA 90001" -189669,Bose SoundSport Headphones,1,99.99,04/30/19 08:32,"90 12th St, Los Angeles, CA 90001" -189670,27in FHD Monitor,1,149.99,04/17/19 18:41,"728 Lakeview St, Los Angeles, CA 90001" -189671,AA Batteries (4-pack),1,3.84,04/25/19 11:07,"133 Cherry St, Boston, MA 02215" -189672,Wired Headphones,1,11.99,04/30/19 20:17,"500 Hickory St, Portland, OR 97035" -189673,20in Monitor,1,109.99,04/18/19 21:53,"368 Maple St, Atlanta, GA 30301" -189674,AA Batteries (4-pack),2,3.84,04/01/19 10:23,"197 11th St, New York City, NY 10001" -189675,Flatscreen TV,1,300,04/20/19 02:34,"405 Cherry St, New York City, NY 10001" -189676,27in FHD Monitor,1,149.99,04/11/19 15:41,"311 Johnson St, Los Angeles, CA 90001" -189677,AAA Batteries (4-pack),1,2.99,04/01/19 14:06,"874 Pine St, Portland, OR 97035" -189678,Google Phone,1,600,04/06/19 20:44,"755 Chestnut St, New York City, NY 10001" -189679,34in Ultrawide Monitor,1,379.99,04/24/19 16:49,"212 Lakeview St, San Francisco, CA 94016" -189680,Flatscreen TV,1,300,04/08/19 15:03,"743 Washington St, San Francisco, CA 94016" -189681,AA Batteries (4-pack),1,3.84,04/29/19 19:26,"254 14th St, San Francisco, CA 94016" -189681,Bose SoundSport Headphones,1,99.99,04/29/19 19:26,"254 14th St, San Francisco, CA 94016" -189682,Google Phone,1,600,04/14/19 12:57,"470 11th St, Dallas, TX 75001" -189683,Apple Airpods Headphones,1,150,04/03/19 21:08,"732 Center St, Seattle, WA 98101" -189684,Flatscreen TV,1,300,04/25/19 12:30,"327 Chestnut St, Atlanta, GA 30301" -189685,27in 4K Gaming Monitor,1,389.99,04/01/19 13:28,"729 Center St, New York City, NY 10001" -189686,Wired Headphones,1,11.99,04/01/19 12:50,"510 Jefferson St, San Francisco, CA 94016" -189687,iPhone,1,700,04/23/19 10:48,"929 Park St, New York City, NY 10001" -189688,Bose SoundSport Headphones,1,99.99,04/30/19 22:27,"895 14th St, San Francisco, CA 94016" -189689,27in FHD Monitor,1,149.99,04/16/19 18:30,"221 River St, Seattle, WA 98101" -189690,AA Batteries (4-pack),1,3.84,04/11/19 00:25,"351 6th St, San Francisco, CA 94016" -189691,AA Batteries (4-pack),1,3.84,04/30/19 11:52,"474 Lake St, Seattle, WA 98101" -189692,USB-C Charging Cable,1,11.95,04/07/19 17:38,"407 South St, San Francisco, CA 94016" -189693,Bose SoundSport Headphones,1,99.99,04/30/19 18:46,"431 Meadow St, Los Angeles, CA 90001" -189694,AA Batteries (4-pack),1,3.84,04/20/19 20:05,"323 12th St, San Francisco, CA 94016" -189695,Bose SoundSport Headphones,1,99.99,04/14/19 01:02,"227 Jefferson St, Portland, OR 97035" -189696,34in Ultrawide Monitor,1,379.99,04/20/19 10:12,"401 River St, San Francisco, CA 94016" -189697,Macbook Pro Laptop,1,1700,04/08/19 18:23,"789 13th St, Seattle, WA 98101" -189698,27in FHD Monitor,1,149.99,04/03/19 16:52,"964 River St, San Francisco, CA 94016" -189699,USB-C Charging Cable,1,11.95,04/24/19 22:03,"288 Johnson St, Seattle, WA 98101" -189700,Wired Headphones,1,11.99,04/06/19 08:11,"477 Highland St, Dallas, TX 75001" -189701,AA Batteries (4-pack),1,3.84,04/14/19 17:01,"657 Elm St, Atlanta, GA 30301" -189702,Bose SoundSport Headphones,1,99.99,04/30/19 17:21,"808 Jackson St, San Francisco, CA 94016" -189703,USB-C Charging Cable,1,11.95,04/06/19 13:54,"429 Spruce St, Los Angeles, CA 90001" -189704,iPhone,1,700,04/16/19 18:12,"203 13th St, Dallas, TX 75001" -189705,USB-C Charging Cable,1,11.95,04/24/19 21:13,"21 Park St, Portland, ME 04101" -189706,27in FHD Monitor,1,149.99,04/18/19 16:36,"297 Main St, Seattle, WA 98101" -189707,27in FHD Monitor,1,149.99,04/22/19 11:08,"727 Hill St, Boston, MA 02215" -189708,AA Batteries (4-pack),1,3.84,04/29/19 23:36,"734 Park St, New York City, NY 10001" -189709,AAA Batteries (4-pack),1,2.99,04/18/19 19:44,"757 Lincoln St, Los Angeles, CA 90001" -189710,Bose SoundSport Headphones,1,99.99,04/25/19 14:39,"617 6th St, Boston, MA 02215" -189711,AA Batteries (4-pack),1,3.84,04/04/19 15:50,"801 Washington St, Seattle, WA 98101" -189711,AA Batteries (4-pack),2,3.84,04/04/19 15:50,"801 Washington St, Seattle, WA 98101" -189712,AA Batteries (4-pack),1,3.84,04/23/19 20:01,"684 Willow St, Boston, MA 02215" -189713,27in FHD Monitor,1,149.99,04/30/19 11:40,"597 Center St, San Francisco, CA 94016" -189714,Lightning Charging Cable,1,14.95,04/09/19 18:47,"150 Washington St, Los Angeles, CA 90001" -189715,Lightning Charging Cable,1,14.95,04/18/19 23:22,"612 4th St, New York City, NY 10001" -189716,AAA Batteries (4-pack),1,2.99,04/10/19 14:51,"528 Maple St, Los Angeles, CA 90001" -189717,AA Batteries (4-pack),2,3.84,04/04/19 07:13,"649 West St, Atlanta, GA 30301" -189718,27in 4K Gaming Monitor,1,389.99,04/16/19 20:08,"851 10th St, New York City, NY 10001" -189719,AAA Batteries (4-pack),1,2.99,04/01/19 21:07,"792 Cherry St, New York City, NY 10001" -189720,27in 4K Gaming Monitor,1,389.99,04/17/19 19:09,"74 Cherry St, Austin, TX 73301" -189721,27in 4K Gaming Monitor,1,389.99,04/17/19 08:32,"752 Hill St, Los Angeles, CA 90001" -189722,Bose SoundSport Headphones,1,99.99,04/10/19 17:07,"19 8th St, New York City, NY 10001" -189723,Wired Headphones,1,11.99,04/26/19 20:57,"443 Elm St, San Francisco, CA 94016" -189724,Lightning Charging Cable,1,14.95,04/24/19 13:10,"199 Highland St, San Francisco, CA 94016" -189725,USB-C Charging Cable,1,11.95,04/26/19 11:48,"958 14th St, Seattle, WA 98101" -189726,Lightning Charging Cable,1,14.95,04/18/19 16:35,"884 Madison St, Boston, MA 02215" -189727,AA Batteries (4-pack),1,3.84,04/18/19 13:10,"799 Jackson St, New York City, NY 10001" -189728,AAA Batteries (4-pack),1,2.99,04/27/19 00:07,"295 South St, San Francisco, CA 94016" -189729,34in Ultrawide Monitor,1,379.99,04/20/19 15:02,"206 7th St, San Francisco, CA 94016" -189730,ThinkPad Laptop,1,999.99,04/26/19 12:10,"895 11th St, Seattle, WA 98101" -189731,27in FHD Monitor,1,149.99,04/02/19 21:05,"867 Johnson St, Dallas, TX 75001" -189732,AAA Batteries (4-pack),2,2.99,04/07/19 20:24,"879 Cherry St, San Francisco, CA 94016" -189733,Apple Airpods Headphones,1,150,04/28/19 20:56,"858 Washington St, Boston, MA 02215" -189734,Lightning Charging Cable,1,14.95,04/10/19 10:23,"355 Lakeview St, San Francisco, CA 94016" -189735,AAA Batteries (4-pack),1,2.99,04/23/19 10:39,"445 7th St, Seattle, WA 98101" -189736,AA Batteries (4-pack),1,3.84,04/25/19 18:29,"132 Hill St, Austin, TX 73301" -189737,Wired Headphones,1,11.99,04/05/19 12:25,"584 Center St, Seattle, WA 98101" -189738,Flatscreen TV,1,300,04/10/19 14:44,"753 5th St, Boston, MA 02215" -189739,Bose SoundSport Headphones,1,99.99,04/24/19 20:52,"510 Dogwood St, Boston, MA 02215" -189740,Bose SoundSport Headphones,1,99.99,04/13/19 11:40,"859 Pine St, Los Angeles, CA 90001" -189741,Apple Airpods Headphones,1,150,04/30/19 10:21,"544 Cedar St, Austin, TX 73301" -189742,Apple Airpods Headphones,1,150,04/08/19 10:36,"713 Sunset St, New York City, NY 10001" -189743,USB-C Charging Cable,1,11.95,04/30/19 11:31,"902 13th St, Dallas, TX 75001" -189744,AAA Batteries (4-pack),1,2.99,04/03/19 13:21,"617 Sunset St, San Francisco, CA 94016" -189745,Google Phone,1,600,04/17/19 19:29,"555 9th St, Boston, MA 02215" -189746,Macbook Pro Laptop,1,1700,04/06/19 20:44,"304 9th St, Dallas, TX 75001" -189747,USB-C Charging Cable,1,11.95,04/08/19 09:18,"404 Cherry St, New York City, NY 10001" -189748,Bose SoundSport Headphones,1,99.99,04/03/19 10:42,"452 Main St, Los Angeles, CA 90001" -189749,34in Ultrawide Monitor,1,379.99,04/03/19 10:39,"710 Madison St, Seattle, WA 98101" -189750,AA Batteries (4-pack),1,3.84,04/27/19 16:03,"10 Center St, Portland, ME 04101" -189751,27in FHD Monitor,1,149.99,04/25/19 12:30,"511 Cherry St, Dallas, TX 75001" -189752,34in Ultrawide Monitor,1,379.99,04/09/19 17:25,"650 Chestnut St, Dallas, TX 75001" -189753,Flatscreen TV,1,300,04/08/19 23:47,"986 Lakeview St, New York City, NY 10001" -189754,Wired Headphones,1,11.99,04/11/19 18:49,"739 South St, Los Angeles, CA 90001" -189755,20in Monitor,1,109.99,04/12/19 13:29,"378 Forest St, Los Angeles, CA 90001" -189756,USB-C Charging Cable,1,11.95,04/12/19 14:19,"353 12th St, Boston, MA 02215" -189757,27in 4K Gaming Monitor,1,389.99,04/12/19 13:52,"254 13th St, Los Angeles, CA 90001" -189758,Lightning Charging Cable,2,14.95,04/03/19 09:01,"756 North St, Boston, MA 02215" -189759,Apple Airpods Headphones,1,150,04/30/19 13:44,"458 4th St, Portland, ME 04101" -189760,AAA Batteries (4-pack),1,2.99,04/13/19 10:38,"396 Cedar St, Portland, OR 97035" -189761,Lightning Charging Cable,1,14.95,04/18/19 08:56,"263 Sunset St, Boston, MA 02215" -189762,AAA Batteries (4-pack),2,2.99,04/06/19 18:47,"926 Johnson St, Los Angeles, CA 90001" -189763,AAA Batteries (4-pack),3,2.99,04/17/19 15:43,"673 Cherry St, San Francisco, CA 94016" -189764,Lightning Charging Cable,1,14.95,04/18/19 10:22,"201 7th St, San Francisco, CA 94016" -189765,Lightning Charging Cable,1,14.95,04/26/19 20:35,"97 Hill St, Dallas, TX 75001" -189766,Apple Airpods Headphones,1,150,04/16/19 18:43,"841 Main St, Boston, MA 02215" -189767,Lightning Charging Cable,1,14.95,04/03/19 12:35,"513 West St, Dallas, TX 75001" -189768,27in FHD Monitor,1,149.99,04/09/19 20:52,"541 14th St, Boston, MA 02215" -189769,AAA Batteries (4-pack),1,2.99,04/18/19 19:44,"988 Lakeview St, New York City, NY 10001" -189770,Macbook Pro Laptop,1,1700,04/23/19 13:56,"608 Park St, Los Angeles, CA 90001" -189771,Apple Airpods Headphones,1,150,04/17/19 09:35,"71 Church St, Boston, MA 02215" -189772,Apple Airpods Headphones,1,150,04/14/19 20:17,"1 9th St, San Francisco, CA 94016" -189773,Bose SoundSport Headphones,1,99.99,04/24/19 00:22,"426 North St, Atlanta, GA 30301" -189774,Macbook Pro Laptop,1,1700,04/28/19 09:26,"673 Elm St, Portland, OR 97035" -189775,USB-C Charging Cable,1,11.95,04/28/19 17:04,"251 Cherry St, Los Angeles, CA 90001" -189776,Wired Headphones,1,11.99,04/01/19 11:04,"405 2nd St, New York City, NY 10001" -189777,Wired Headphones,1,11.99,04/28/19 09:21,"342 Main St, San Francisco, CA 94016" -189778,Apple Airpods Headphones,1,150,04/04/19 20:31,"127 Hickory St, Los Angeles, CA 90001" -189779,Lightning Charging Cable,1,14.95,04/28/19 12:17,"611 10th St, San Francisco, CA 94016" -189780,Wired Headphones,1,11.99,04/19/19 18:45,"73 Church St, Austin, TX 73301" -189781,AAA Batteries (4-pack),4,2.99,04/06/19 19:11,"267 South St, New York City, NY 10001" -189782,Bose SoundSport Headphones,1,99.99,04/18/19 17:47,"460 Wilson St, Los Angeles, CA 90001" -189783,Apple Airpods Headphones,1,150,04/03/19 09:12,"111 Center St, Austin, TX 73301" -189784,AA Batteries (4-pack),1,3.84,04/08/19 23:21,"138 Hill St, Dallas, TX 75001" -189785,Apple Airpods Headphones,1,150,04/03/19 12:30,"27 8th St, New York City, NY 10001" -189786,34in Ultrawide Monitor,1,379.99,04/29/19 18:17,"20 Madison St, Dallas, TX 75001" -189787,Wired Headphones,1,11.99,04/16/19 10:33,"227 1st St, Los Angeles, CA 90001" -189788,27in FHD Monitor,1,149.99,04/17/19 15:50,"954 Meadow St, New York City, NY 10001" -189789,20in Monitor,1,109.99,04/15/19 22:56,"243 River St, New York City, NY 10001" -189790,34in Ultrawide Monitor,1,379.99,04/11/19 11:02,"496 Pine St, San Francisco, CA 94016" -189790,Google Phone,1,600,04/11/19 11:02,"496 Pine St, San Francisco, CA 94016" -189791,Lightning Charging Cable,1,14.95,04/08/19 10:36,"603 Lake St, Los Angeles, CA 90001" -189792,USB-C Charging Cable,1,11.95,04/13/19 21:18,"135 Center St, Portland, OR 97035" -189793,Wired Headphones,1,11.99,04/01/19 11:20,"422 Jackson St, San Francisco, CA 94016" -189794,Lightning Charging Cable,1,14.95,04/25/19 00:27,"528 Dogwood St, New York City, NY 10001" -189795,Wired Headphones,1,11.99,04/23/19 05:05,"850 10th St, San Francisco, CA 94016" -189796,Lightning Charging Cable,1,14.95,04/15/19 11:21,"467 14th St, San Francisco, CA 94016" -189797,AAA Batteries (4-pack),4,2.99,04/06/19 14:09,"652 Dogwood St, Boston, MA 02215" -189798,Lightning Charging Cable,1,14.95,04/25/19 09:19,"337 9th St, San Francisco, CA 94016" -189799,AAA Batteries (4-pack),2,2.99,04/12/19 20:31,"606 North St, San Francisco, CA 94016" -189800,Apple Airpods Headphones,1,150,04/28/19 13:59,"56 5th St, Portland, OR 97035" -189801,Flatscreen TV,1,300,04/26/19 18:03,"131 2nd St, New York City, NY 10001" -189802,AAA Batteries (4-pack),1,2.99,04/22/19 17:29,"931 South St, Los Angeles, CA 90001" -189803,Lightning Charging Cable,1,14.95,04/11/19 18:05,"340 Hickory St, San Francisco, CA 94016" -189804,Lightning Charging Cable,1,14.95,04/12/19 09:26,"311 Center St, Atlanta, GA 30301" -189805,Macbook Pro Laptop,1,1700,05/01/19 01:31,"919 Sunset St, San Francisco, CA 94016" -189806,Macbook Pro Laptop,1,1700,05/01/19 00:52,"928 Dogwood St, Dallas, TX 75001" -189807,AAA Batteries (4-pack),1,2.99,04/03/19 16:42,"42 Center St, San Francisco, CA 94016" -189808,20in Monitor,1,109.99,04/11/19 21:41,"232 Elm St, New York City, NY 10001" -189809,iPhone,1,700,04/19/19 19:56,"871 Lincoln St, Los Angeles, CA 90001" -189809,Apple Airpods Headphones,1,150,04/19/19 19:56,"871 Lincoln St, Los Angeles, CA 90001" -189810,AA Batteries (4-pack),1,3.84,04/07/19 13:06,"416 Lake St, New York City, NY 10001" -189811,AAA Batteries (4-pack),1,2.99,04/28/19 21:11,"932 Jefferson St, Dallas, TX 75001" -189812,Wired Headphones,1,11.99,04/01/19 18:55,"790 4th St, Dallas, TX 75001" -189813,Lightning Charging Cable,1,14.95,04/01/19 06:02,"822 Forest St, Atlanta, GA 30301" -189814,iPhone,1,700,04/03/19 09:14,"843 Wilson St, Dallas, TX 75001" -189815,Bose SoundSport Headphones,1,99.99,04/13/19 15:55,"305 Highland St, San Francisco, CA 94016" -189816,Macbook Pro Laptop,1,1700,04/26/19 14:54,"323 South St, New York City, NY 10001" -189816,AAA Batteries (4-pack),1,2.99,04/26/19 14:54,"323 South St, New York City, NY 10001" -189817,ThinkPad Laptop,1,999.99,04/10/19 17:06,"740 Cedar St, Los Angeles, CA 90001" -189818,Apple Airpods Headphones,1,150,04/29/19 17:54,"688 Willow St, Portland, OR 97035" -189819,Apple Airpods Headphones,1,150,04/05/19 08:52,"822 Jackson St, San Francisco, CA 94016" -189820,AA Batteries (4-pack),1,3.84,04/02/19 19:36,"824 Forest St, Seattle, WA 98101" -189821,ThinkPad Laptop,1,999.99,04/07/19 14:32,"129 Johnson St, San Francisco, CA 94016" -189822,USB-C Charging Cable,1,11.95,04/22/19 20:13,"368 8th St, Los Angeles, CA 90001" -189823,27in 4K Gaming Monitor,1,389.99,04/18/19 19:35,"857 Hill St, New York City, NY 10001" -189824,Google Phone,1,600,04/29/19 07:08,"311 Cherry St, Portland, OR 97035" -189825,Bose SoundSport Headphones,1,99.99,04/18/19 20:42,"52 10th St, New York City, NY 10001" -189826,iPhone,1,700,04/16/19 09:16,"668 Highland St, Boston, MA 02215" -189827,Apple Airpods Headphones,1,150,04/22/19 21:19,"623 South St, Atlanta, GA 30301" -189828,27in 4K Gaming Monitor,1,389.99,04/24/19 13:15,"98 Center St, San Francisco, CA 94016" -189829,AAA Batteries (4-pack),1,2.99,04/14/19 15:24,"202 Cherry St, Dallas, TX 75001" -189830,USB-C Charging Cable,1,11.95,04/07/19 23:32,"644 Maple St, San Francisco, CA 94016" -189831,20in Monitor,1,109.99,04/15/19 20:22,"270 Wilson St, Seattle, WA 98101" -189832,Apple Airpods Headphones,1,150,04/10/19 19:21,"406 Jackson St, Dallas, TX 75001" -189833,Flatscreen TV,1,300,04/24/19 18:47,"540 Lincoln St, Dallas, TX 75001" -189834,Apple Airpods Headphones,1,150,04/06/19 18:47,"552 9th St, New York City, NY 10001" -189834,AAA Batteries (4-pack),1,2.99,04/06/19 18:47,"552 9th St, New York City, NY 10001" -189835,AA Batteries (4-pack),1,3.84,04/14/19 13:35,"84 Church St, San Francisco, CA 94016" -189836,Bose SoundSport Headphones,1,99.99,04/21/19 07:28,"898 Highland St, San Francisco, CA 94016" -189837,Vareebadd Phone,1,400,04/27/19 20:18,"381 Maple St, Los Angeles, CA 90001" -189837,USB-C Charging Cable,1,11.95,04/27/19 20:18,"381 Maple St, Los Angeles, CA 90001" -189838,AA Batteries (4-pack),2,3.84,04/26/19 16:53,"859 Hickory St, Dallas, TX 75001" -189839,AAA Batteries (4-pack),2,2.99,04/07/19 21:09,"290 11th St, San Francisco, CA 94016" -189840,Macbook Pro Laptop,1,1700,04/04/19 15:19,"541 Cherry St, San Francisco, CA 94016" -189841,AAA Batteries (4-pack),3,2.99,04/11/19 12:16,"988 4th St, Austin, TX 73301" -189842,iPhone,1,700,04/16/19 13:56,"815 Washington St, Los Angeles, CA 90001" -189842,Lightning Charging Cable,1,14.95,04/16/19 13:56,"815 Washington St, Los Angeles, CA 90001" -189843,USB-C Charging Cable,1,11.95,04/25/19 09:47,"849 10th St, San Francisco, CA 94016" -189844,Wired Headphones,1,11.99,04/13/19 14:49,"650 Spruce St, Dallas, TX 75001" -189845,Google Phone,1,600,04/28/19 16:46,"953 Chestnut St, San Francisco, CA 94016" -189845,USB-C Charging Cable,1,11.95,04/28/19 16:46,"953 Chestnut St, San Francisco, CA 94016" -189846,Wired Headphones,1,11.99,04/14/19 04:21,"538 Park St, Boston, MA 02215" -189847,USB-C Charging Cable,1,11.95,04/15/19 19:21,"612 Elm St, Atlanta, GA 30301" -189848,AA Batteries (4-pack),1,3.84,04/28/19 05:27,"331 Center St, San Francisco, CA 94016" -189849,AAA Batteries (4-pack),1,2.99,04/09/19 17:18,"248 Dogwood St, Boston, MA 02215" -189850,Macbook Pro Laptop,1,1700,04/27/19 12:42,"710 Cedar St, New York City, NY 10001" -189851,AAA Batteries (4-pack),1,2.99,04/03/19 20:51,"270 Church St, Seattle, WA 98101" -189852,AA Batteries (4-pack),1,3.84,04/12/19 18:10,"789 Walnut St, Seattle, WA 98101" -189853,Macbook Pro Laptop,1,1700,04/15/19 03:16,"237 Hickory St, Los Angeles, CA 90001" -189854,USB-C Charging Cable,1,11.95,05/01/19 02:09,"743 Elm St, Boston, MA 02215" -189855,USB-C Charging Cable,1,11.95,04/11/19 12:57,"908 Pine St, Boston, MA 02215" -189856,Vareebadd Phone,1,400,04/05/19 13:37,"629 14th St, Los Angeles, CA 90001" -189857,20in Monitor,1,109.99,04/15/19 20:58,"271 Walnut St, New York City, NY 10001" -189858,AAA Batteries (4-pack),1,2.99,04/24/19 08:53,"212 Park St, Boston, MA 02215" -189859,Apple Airpods Headphones,1,150,04/21/19 09:11,"595 Ridge St, Austin, TX 73301" -189860,AA Batteries (4-pack),1,3.84,04/06/19 07:42,"853 North St, Seattle, WA 98101" -189861,USB-C Charging Cable,1,11.95,04/28/19 13:30,"819 Center St, Austin, TX 73301" -189862,27in 4K Gaming Monitor,1,389.99,04/19/19 18:27,"605 Lakeview St, Los Angeles, CA 90001" -189863,ThinkPad Laptop,1,999.99,04/27/19 14:42,"77 Lincoln St, Los Angeles, CA 90001" -189864,AA Batteries (4-pack),1,3.84,04/16/19 10:04,"790 Jefferson St, Boston, MA 02215" -189865,20in Monitor,1,109.99,04/19/19 20:53,"933 Cherry St, New York City, NY 10001" -189866,AA Batteries (4-pack),1,3.84,04/18/19 13:13,"19 13th St, San Francisco, CA 94016" -189867,USB-C Charging Cable,2,11.95,04/06/19 10:40,"842 Meadow St, Los Angeles, CA 90001" -189868,USB-C Charging Cable,1,11.95,04/26/19 17:44,"952 Chestnut St, Boston, MA 02215" -189869,ThinkPad Laptop,1,999.99,04/09/19 12:31,"933 Hill St, San Francisco, CA 94016" -189870,Lightning Charging Cable,1,14.95,04/05/19 08:37,"974 Chestnut St, Atlanta, GA 30301" -189871,iPhone,1,700,04/24/19 22:25,"840 Jefferson St, Los Angeles, CA 90001" -189871,Wired Headphones,1,11.99,04/24/19 22:25,"840 Jefferson St, Los Angeles, CA 90001" -189872,Bose SoundSport Headphones,1,99.99,04/28/19 14:34,"316 Cherry St, Portland, OR 97035" -189873,Macbook Pro Laptop,1,1700,04/06/19 11:04,"654 Maple St, Boston, MA 02215" -189874,Lightning Charging Cable,1,14.95,04/24/19 09:58,"937 Spruce St, San Francisco, CA 94016" -189875,USB-C Charging Cable,1,11.95,04/13/19 11:23,"7 Lakeview St, Los Angeles, CA 90001" -189876,AA Batteries (4-pack),1,3.84,04/29/19 22:04,"938 Meadow St, Seattle, WA 98101" -189877,Macbook Pro Laptop,1,1700,04/28/19 18:17,"878 2nd St, Portland, OR 97035" -189878,Lightning Charging Cable,1,14.95,04/23/19 11:33,"931 South St, Atlanta, GA 30301" -189879,AAA Batteries (4-pack),1,2.99,04/09/19 04:44,"92 Lake St, Boston, MA 02215" -189880,27in 4K Gaming Monitor,1,389.99,04/06/19 11:31,"234 10th St, Los Angeles, CA 90001" -189881,AA Batteries (4-pack),1,3.84,04/12/19 01:12,"780 Hickory St, New York City, NY 10001" -189882,Wired Headphones,2,11.99,04/15/19 16:11,"526 5th St, San Francisco, CA 94016" -189883,Wired Headphones,1,11.99,04/24/19 15:41,"659 Hill St, Austin, TX 73301" -189884,AA Batteries (4-pack),2,3.84,04/10/19 21:02,"755 2nd St, San Francisco, CA 94016" -189885,Vareebadd Phone,1,400,04/07/19 17:44,"769 Church St, New York City, NY 10001" -189886,34in Ultrawide Monitor,1,379.99,04/27/19 20:02,"662 14th St, San Francisco, CA 94016" -189887,Wired Headphones,2,11.99,04/01/19 10:43,"509 Lakeview St, Dallas, TX 75001" -189888,Bose SoundSport Headphones,1,99.99,04/05/19 18:47,"127 Hill St, San Francisco, CA 94016" -189889,AA Batteries (4-pack),2,3.84,04/18/19 12:18,"667 13th St, Dallas, TX 75001" -189890,Apple Airpods Headphones,1,150,04/26/19 16:52,"69 Chestnut St, Los Angeles, CA 90001" -189891,20in Monitor,1,109.99,04/26/19 20:37,"802 Willow St, New York City, NY 10001" -189892,AA Batteries (4-pack),1,3.84,04/09/19 11:39,"336 Washington St, San Francisco, CA 94016" -189893,Lightning Charging Cable,1,14.95,04/27/19 23:54,"357 North St, San Francisco, CA 94016" -189894,Lightning Charging Cable,1,14.95,04/24/19 11:03,"527 Forest St, San Francisco, CA 94016" -189895,AA Batteries (4-pack),1,3.84,04/12/19 13:09,"968 Madison St, Atlanta, GA 30301" -189896,Lightning Charging Cable,1,14.95,04/02/19 21:35,"490 Forest St, Los Angeles, CA 90001" -189897,Lightning Charging Cable,1,14.95,04/07/19 18:40,"232 Johnson St, San Francisco, CA 94016" -189898,AAA Batteries (4-pack),1,2.99,04/25/19 09:51,"398 Church St, Atlanta, GA 30301" -189899,USB-C Charging Cable,1,11.95,04/10/19 17:59,"151 Center St, Los Angeles, CA 90001" -189900,34in Ultrawide Monitor,1,379.99,04/19/19 12:57,"667 4th St, Boston, MA 02215" -189901,AA Batteries (4-pack),1,3.84,04/25/19 16:22,"650 Chestnut St, Boston, MA 02215" -189902,Flatscreen TV,1,300,04/21/19 04:10,"155 10th St, San Francisco, CA 94016" -189903,Bose SoundSport Headphones,1,99.99,04/29/19 13:34,"530 Lakeview St, San Francisco, CA 94016" -189904,AA Batteries (4-pack),1,3.84,04/18/19 19:43,"578 Sunset St, Atlanta, GA 30301" -189905,27in FHD Monitor,1,149.99,04/30/19 22:08,"507 Walnut St, New York City, NY 10001" -189906,Wired Headphones,2,11.99,04/09/19 11:26,"55 9th St, Seattle, WA 98101" -189907,Lightning Charging Cable,1,14.95,04/28/19 10:56,"275 Willow St, San Francisco, CA 94016" -189908,Lightning Charging Cable,1,14.95,04/05/19 06:54,"255 Jefferson St, San Francisco, CA 94016" -189909,USB-C Charging Cable,1,11.95,04/08/19 18:10,"786 Willow St, New York City, NY 10001" -189910,Google Phone,1,600,04/07/19 21:59,"327 Adams St, San Francisco, CA 94016" -189910,USB-C Charging Cable,1,11.95,04/07/19 21:59,"327 Adams St, San Francisco, CA 94016" -189911,AAA Batteries (4-pack),1,2.99,04/25/19 14:06,"270 Hickory St, Boston, MA 02215" -189912,27in FHD Monitor,1,149.99,04/04/19 12:40,"616 6th St, Portland, OR 97035" -189913,Lightning Charging Cable,1,14.95,04/04/19 20:45,"781 Park St, Atlanta, GA 30301" -189914,USB-C Charging Cable,2,11.95,04/13/19 19:27,"66 Hickory St, Portland, ME 04101" -189915,USB-C Charging Cable,1,11.95,04/29/19 11:43,"510 1st St, Seattle, WA 98101" -189916,AAA Batteries (4-pack),2,2.99,04/23/19 05:00,"193 1st St, Portland, OR 97035" -189917,Wired Headphones,1,11.99,04/20/19 21:36,"456 Lakeview St, Los Angeles, CA 90001" -189918,34in Ultrawide Monitor,1,379.99,04/12/19 14:05,"154 Church St, Portland, OR 97035" -189919,Lightning Charging Cable,1,14.95,04/28/19 13:49,"770 Elm St, San Francisco, CA 94016" -189920,AAA Batteries (4-pack),1,2.99,04/18/19 18:07,"745 Madison St, Austin, TX 73301" -189921,Lightning Charging Cable,1,14.95,04/19/19 17:52,"585 11th St, Los Angeles, CA 90001" -189922,Apple Airpods Headphones,1,150,04/23/19 22:27,"928 South St, Boston, MA 02215" -189923,Bose SoundSport Headphones,1,99.99,04/08/19 11:48,"163 Lincoln St, Austin, TX 73301" -189924,AAA Batteries (4-pack),1,2.99,04/02/19 12:57,"576 North St, Boston, MA 02215" -189925,Lightning Charging Cable,1,14.95,04/28/19 15:29,"313 Dogwood St, San Francisco, CA 94016" -189926,LG Washing Machine,1,600.0,04/10/19 14:15,"569 Main St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -189927,Apple Airpods Headphones,1,150,04/24/19 15:01,"616 River St, Seattle, WA 98101" -189928,AA Batteries (4-pack),1,3.84,04/18/19 21:01,"757 River St, San Francisco, CA 94016" -189929,Bose SoundSport Headphones,1,99.99,04/09/19 10:38,"868 Maple St, Atlanta, GA 30301" -189930,Bose SoundSport Headphones,1,99.99,04/29/19 07:02,"317 River St, San Francisco, CA 94016" -189931,34in Ultrawide Monitor,1,379.99,04/03/19 15:10,"40 Main St, Atlanta, GA 30301" -189932,Lightning Charging Cable,1,14.95,04/27/19 14:06,"84 Spruce St, Seattle, WA 98101" -189933,Bose SoundSport Headphones,1,99.99,04/03/19 16:07,"929 Dogwood St, Los Angeles, CA 90001" -189934,USB-C Charging Cable,1,11.95,04/17/19 14:26,"357 6th St, Portland, ME 04101" -189935,Wired Headphones,1,11.99,04/10/19 23:42,"407 Hill St, Los Angeles, CA 90001" -189936,AA Batteries (4-pack),1,3.84,04/08/19 14:31,"525 Walnut St, San Francisco, CA 94016" -189937,Bose SoundSport Headphones,1,99.99,04/15/19 19:00,"221 8th St, San Francisco, CA 94016" -189938,Wired Headphones,1,11.99,04/28/19 19:01,"865 Church St, San Francisco, CA 94016" -189939,AAA Batteries (4-pack),2,2.99,04/14/19 19:04,"563 Walnut St, New York City, NY 10001" -189940,Lightning Charging Cable,1,14.95,04/18/19 14:50,"943 Forest St, New York City, NY 10001" -189941,Apple Airpods Headphones,1,150,04/28/19 20:29,"400 Center St, Los Angeles, CA 90001" -189942,Google Phone,1,600,04/01/19 22:07,"757 Cedar St, San Francisco, CA 94016" -189942,USB-C Charging Cable,1,11.95,04/01/19 22:07,"757 Cedar St, San Francisco, CA 94016" -189943,AAA Batteries (4-pack),2,2.99,04/04/19 20:05,"752 Wilson St, San Francisco, CA 94016" -189944,AAA Batteries (4-pack),1,2.99,04/14/19 17:59,"641 Maple St, Austin, TX 73301" -189945,iPhone,1,700,04/23/19 12:06,"17 Hickory St, Boston, MA 02215" -189946,AA Batteries (4-pack),2,3.84,04/08/19 00:40,"479 2nd St, Los Angeles, CA 90001" -189947,34in Ultrawide Monitor,1,379.99,04/29/19 10:45,"512 Forest St, Los Angeles, CA 90001" -189948,USB-C Charging Cable,1,11.95,04/21/19 01:05,"599 1st St, San Francisco, CA 94016" -189949,34in Ultrawide Monitor,1,379.99,04/17/19 14:54,"388 Johnson St, San Francisco, CA 94016" -189950,USB-C Charging Cable,2,11.95,04/28/19 15:52,"285 Lake St, San Francisco, CA 94016" -189951,Macbook Pro Laptop,1,1700,04/30/19 19:26,"969 13th St, Portland, OR 97035" -189952,AAA Batteries (4-pack),1,2.99,04/08/19 08:45,"428 Hickory St, New York City, NY 10001" -189953,Wired Headphones,1,11.99,04/18/19 09:28,"264 West St, Atlanta, GA 30301" -189954,USB-C Charging Cable,1,11.95,04/15/19 09:03,"893 13th St, New York City, NY 10001" -189955,Vareebadd Phone,1,400,04/01/19 15:55,"662 Lakeview St, Boston, MA 02215" -189956,Apple Airpods Headphones,1,150,04/23/19 10:07,"673 Center St, San Francisco, CA 94016" -189957,Vareebadd Phone,1,400,04/20/19 18:53,"64 6th St, Portland, ME 04101" -189957,Wired Headphones,1,11.99,04/20/19 18:53,"64 6th St, Portland, ME 04101" -189958,ThinkPad Laptop,1,999.99,04/13/19 19:13,"181 12th St, New York City, NY 10001" -189959,Google Phone,1,600,04/10/19 11:57,"781 Hill St, Atlanta, GA 30301" -189960,AAA Batteries (4-pack),1,2.99,04/10/19 20:56,"61 Pine St, Boston, MA 02215" -189961,27in 4K Gaming Monitor,1,389.99,04/16/19 12:15,"505 13th St, New York City, NY 10001" -189962,USB-C Charging Cable,1,11.95,04/25/19 14:49,"203 West St, Portland, OR 97035" -189963,Google Phone,1,600,04/11/19 19:05,"637 13th St, Atlanta, GA 30301" -189963,Wired Headphones,1,11.99,04/11/19 19:05,"637 13th St, Atlanta, GA 30301" -189964,Wired Headphones,1,11.99,04/22/19 17:49,"213 Wilson St, Seattle, WA 98101" -189965,Lightning Charging Cable,1,14.95,04/29/19 21:18,"142 Forest St, San Francisco, CA 94016" -189966,AAA Batteries (4-pack),1,2.99,04/21/19 20:39,"865 14th St, Boston, MA 02215" -189967,Bose SoundSport Headphones,1,99.99,04/09/19 13:51,"272 7th St, Boston, MA 02215" -189968,Lightning Charging Cable,1,14.95,04/13/19 19:42,"980 River St, Boston, MA 02215" -189969,USB-C Charging Cable,1,11.95,04/23/19 12:54,"454 River St, Dallas, TX 75001" -189970,Lightning Charging Cable,1,14.95,04/09/19 12:36,"63 Center St, Boston, MA 02215" -189971,Bose SoundSport Headphones,1,99.99,04/16/19 22:44,"603 Cherry St, Los Angeles, CA 90001" -189972,Flatscreen TV,1,300,04/16/19 20:05,"812 Sunset St, Los Angeles, CA 90001" -189973,AAA Batteries (4-pack),1,2.99,04/30/19 18:14,"223 Madison St, Dallas, TX 75001" -189974,AA Batteries (4-pack),1,3.84,04/29/19 12:02,"619 Forest St, San Francisco, CA 94016" -189975,Apple Airpods Headphones,1,150,04/24/19 00:16,"318 South St, Atlanta, GA 30301" -189976,AA Batteries (4-pack),2,3.84,04/24/19 19:00,"584 Maple St, San Francisco, CA 94016" -189977,Google Phone,1,600,04/17/19 11:51,"190 Forest St, Atlanta, GA 30301" -189978,Lightning Charging Cable,1,14.95,04/21/19 08:21,"221 4th St, San Francisco, CA 94016" -189979,Apple Airpods Headphones,1,150,04/01/19 13:35,"993 12th St, Dallas, TX 75001" -189980,AA Batteries (4-pack),1,3.84,04/27/19 08:23,"173 Main St, Austin, TX 73301" -189981,USB-C Charging Cable,1,11.95,04/07/19 18:23,"503 Cherry St, Dallas, TX 75001" -189982,USB-C Charging Cable,1,11.95,04/05/19 11:07,"820 Meadow St, Atlanta, GA 30301" -189983,Bose SoundSport Headphones,1,99.99,04/06/19 10:03,"68 10th St, San Francisco, CA 94016" -189984,Lightning Charging Cable,1,14.95,04/09/19 13:52,"539 6th St, Los Angeles, CA 90001" -189985,Lightning Charging Cable,1,14.95,04/23/19 21:48,"543 Hickory St, Los Angeles, CA 90001" -189986,Google Phone,1,600,04/13/19 22:14,"881 Lakeview St, Austin, TX 73301" -189987,Apple Airpods Headphones,1,150,04/23/19 11:35,"827 Meadow St, Los Angeles, CA 90001" -189988,Lightning Charging Cable,1,14.95,04/23/19 20:58,"222 Madison St, Portland, ME 04101" -189989,27in FHD Monitor,1,149.99,04/11/19 18:42,"710 Wilson St, San Francisco, CA 94016" -189990,Lightning Charging Cable,1,14.95,04/23/19 02:06,"580 11th St, San Francisco, CA 94016" -189991,USB-C Charging Cable,1,11.95,04/06/19 11:59,"774 Lincoln St, Portland, ME 04101" -189992,Apple Airpods Headphones,1,150,04/24/19 15:51,"810 Cedar St, Atlanta, GA 30301" -189993,AAA Batteries (4-pack),1,2.99,04/05/19 23:02,"739 Park St, Portland, OR 97035" -189994,AAA Batteries (4-pack),4,2.99,04/22/19 22:52,"360 7th St, Seattle, WA 98101" -189995,Wired Headphones,3,11.99,04/21/19 14:44,"658 Cherry St, San Francisco, CA 94016" -189996,Apple Airpods Headphones,1,150,04/22/19 19:26,"560 6th St, Seattle, WA 98101" -189997,Wired Headphones,1,11.99,04/27/19 18:23,"497 Meadow St, Atlanta, GA 30301" -189998,USB-C Charging Cable,1,11.95,04/18/19 22:20,"431 6th St, Boston, MA 02215" -189999,Bose SoundSport Headphones,1,99.99,04/19/19 10:09,"945 8th St, San Francisco, CA 94016" -190000,LG Dryer,1,600.0,04/11/19 23:21,"87 8th St, San Francisco, CA 94016" -190001,AA Batteries (4-pack),1,3.84,04/22/19 08:36,"909 14th St, Seattle, WA 98101" -190002,AA Batteries (4-pack),1,3.84,04/18/19 17:03,"105 Wilson St, Atlanta, GA 30301" -190003,Lightning Charging Cable,1,14.95,04/10/19 22:34,"327 10th St, Los Angeles, CA 90001" -190004,Lightning Charging Cable,1,14.95,04/04/19 21:48,"515 2nd St, Los Angeles, CA 90001" -190005,AAA Batteries (4-pack),2,2.99,04/26/19 13:20,"199 Wilson St, New York City, NY 10001" -190006,Apple Airpods Headphones,1,150,04/06/19 07:52,"643 Madison St, New York City, NY 10001" -190007,iPhone,1,700,04/20/19 06:40,"797 Center St, Boston, MA 02215" -190007,Wired Headphones,1,11.99,04/20/19 06:40,"797 Center St, Boston, MA 02215" -190008,Lightning Charging Cable,2,14.95,04/11/19 17:09,"179 Main St, Portland, OR 97035" -190009,USB-C Charging Cable,1,11.95,04/24/19 21:06,"908 Cedar St, Seattle, WA 98101" -190010,Lightning Charging Cable,1,14.95,04/16/19 08:38,"590 Hill St, San Francisco, CA 94016" -190011,AAA Batteries (4-pack),2,2.99,04/21/19 21:22,"349 Adams St, San Francisco, CA 94016" -190012,AA Batteries (4-pack),1,3.84,04/11/19 14:15,"597 11th St, Austin, TX 73301" -190013,Apple Airpods Headphones,1,150,04/09/19 18:42,"913 Lake St, Portland, OR 97035" -190014,20in Monitor,1,109.99,04/03/19 20:18,"347 Hill St, San Francisco, CA 94016" -,,,,, -190015,Apple Airpods Headphones,1,150,04/16/19 17:43,"248 Dogwood St, New York City, NY 10001" -190016,Lightning Charging Cable,1,14.95,04/29/19 16:15,"559 Pine St, Los Angeles, CA 90001" -190017,Wired Headphones,1,11.99,04/12/19 21:29,"540 Lake St, Portland, OR 97035" -190018,AAA Batteries (4-pack),1,2.99,04/29/19 18:43,"848 2nd St, Atlanta, GA 30301" -190019,Lightning Charging Cable,1,14.95,04/07/19 11:48,"530 Center St, Austin, TX 73301" -190020,Lightning Charging Cable,1,14.95,04/30/19 18:46,"329 9th St, Los Angeles, CA 90001" -190021,Lightning Charging Cable,1,14.95,04/22/19 12:19,"986 9th St, New York City, NY 10001" -190022,Wired Headphones,1,11.99,04/07/19 10:13,"6 10th St, San Francisco, CA 94016" -190023,USB-C Charging Cable,1,11.95,04/20/19 11:52,"524 8th St, Atlanta, GA 30301" -190024,ThinkPad Laptop,1,999.99,04/18/19 14:41,"600 Maple St, Seattle, WA 98101" -190025,AAA Batteries (4-pack),1,2.99,04/08/19 09:20,"481 Washington St, Los Angeles, CA 90001" -190026,AA Batteries (4-pack),1,3.84,04/25/19 09:48,"700 7th St, San Francisco, CA 94016" -190027,Wired Headphones,1,11.99,04/13/19 14:41,"345 Pine St, New York City, NY 10001" -190028,USB-C Charging Cable,1,11.95,04/11/19 17:29,"874 9th St, Atlanta, GA 30301" -190029,ThinkPad Laptop,1,999.99,04/18/19 13:31,"106 Ridge St, Los Angeles, CA 90001" -190030,USB-C Charging Cable,1,11.95,04/06/19 13:45,"200 Park St, San Francisco, CA 94016" -190031,ThinkPad Laptop,1,999.99,04/01/19 19:25,"600 Walnut St, Portland, OR 97035" -190032,Lightning Charging Cable,1,14.95,04/16/19 20:37,"179 1st St, San Francisco, CA 94016" -190033,AA Batteries (4-pack),1,3.84,04/27/19 11:52,"157 Dogwood St, San Francisco, CA 94016" -190034,27in FHD Monitor,1,149.99,04/11/19 11:51,"556 Chestnut St, Austin, TX 73301" -190034,Lightning Charging Cable,1,14.95,04/11/19 11:51,"556 Chestnut St, Austin, TX 73301" -190035,Apple Airpods Headphones,1,150,04/03/19 17:28,"125 Main St, New York City, NY 10001" -190036,20in Monitor,1,109.99,04/04/19 07:00,"609 13th St, Los Angeles, CA 90001" -190037,Google Phone,1,600,04/29/19 08:13,"455 Dogwood St, Austin, TX 73301" -190038,Lightning Charging Cable,1,14.95,04/18/19 20:50,"728 West St, San Francisco, CA 94016" -190039,Vareebadd Phone,1,400,04/04/19 16:36,"577 6th St, New York City, NY 10001" -190040,Bose SoundSport Headphones,1,99.99,04/05/19 17:29,"870 Forest St, Seattle, WA 98101" -190041,Lightning Charging Cable,1,14.95,04/26/19 10:40,"857 South St, San Francisco, CA 94016" -190042,Flatscreen TV,1,300,04/14/19 10:30,"788 Lake St, San Francisco, CA 94016" -190043,AAA Batteries (4-pack),3,2.99,04/03/19 18:21,"651 1st St, San Francisco, CA 94016" -190044,iPhone,1,700,04/30/19 18:47,"958 Lakeview St, San Francisco, CA 94016" -190045,USB-C Charging Cable,1,11.95,04/21/19 20:20,"934 Madison St, Portland, OR 97035" -190046,USB-C Charging Cable,1,11.95,04/18/19 21:55,"105 North St, San Francisco, CA 94016" -190047,USB-C Charging Cable,1,11.95,04/23/19 13:45,"252 11th St, New York City, NY 10001" -190048,USB-C Charging Cable,1,11.95,04/23/19 08:09,"436 11th St, Dallas, TX 75001" -190049,Wired Headphones,1,11.99,04/08/19 23:22,"304 Elm St, Dallas, TX 75001" -190050,Lightning Charging Cable,1,14.95,04/18/19 12:11,"892 11th St, Portland, OR 97035" -190051,Lightning Charging Cable,1,14.95,04/17/19 17:02,"909 Meadow St, San Francisco, CA 94016" -190052,Apple Airpods Headphones,1,150,04/19/19 08:13,"88 Sunset St, Dallas, TX 75001" -190053,AA Batteries (4-pack),2,3.84,04/05/19 20:53,"886 North St, San Francisco, CA 94016" -190054,AA Batteries (4-pack),3,3.84,04/13/19 10:57,"334 Lake St, San Francisco, CA 94016" -190055,Apple Airpods Headphones,1,150,04/12/19 13:15,"193 1st St, San Francisco, CA 94016" -190056,Lightning Charging Cable,1,14.95,04/08/19 07:29,"490 Hickory St, Boston, MA 02215" -190057,Lightning Charging Cable,1,14.95,04/09/19 12:40,"405 South St, Boston, MA 02215" -190058,Lightning Charging Cable,1,14.95,04/21/19 23:07,"601 5th St, New York City, NY 10001" -190059,AA Batteries (4-pack),1,3.84,04/02/19 03:07,"977 Maple St, San Francisco, CA 94016" -190060,Lightning Charging Cable,1,14.95,04/22/19 16:45,"424 Walnut St, Boston, MA 02215" -190061,AAA Batteries (4-pack),2,2.99,04/29/19 10:15,"622 Park St, Austin, TX 73301" -190062,AAA Batteries (4-pack),3,2.99,04/25/19 15:56,"121 Sunset St, Atlanta, GA 30301" -190063,Wired Headphones,1,11.99,04/04/19 21:29,"208 Adams St, Boston, MA 02215" -190064,AAA Batteries (4-pack),3,2.99,04/27/19 21:36,"542 Meadow St, San Francisco, CA 94016" -190065,Bose SoundSport Headphones,1,99.99,04/05/19 05:17,"417 6th St, Los Angeles, CA 90001" -190066,27in 4K Gaming Monitor,1,389.99,04/12/19 12:17,"608 Maple St, Boston, MA 02215" -190067,Bose SoundSport Headphones,1,99.99,04/07/19 23:32,"472 Cedar St, Boston, MA 02215" -190068,Lightning Charging Cable,2,14.95,04/19/19 16:53,"717 Washington St, Dallas, TX 75001" -190069,USB-C Charging Cable,1,11.95,04/28/19 18:55,"560 Cherry St, Boston, MA 02215" -190070,Apple Airpods Headphones,1,150,04/23/19 11:32,"924 Madison St, Dallas, TX 75001" -190071,Bose SoundSport Headphones,1,99.99,04/29/19 20:07,"315 Dogwood St, San Francisco, CA 94016" -190072,Apple Airpods Headphones,1,150,04/11/19 18:09,"429 Madison St, San Francisco, CA 94016" -190073,Bose SoundSport Headphones,1,99.99,04/01/19 21:38,"583 West St, San Francisco, CA 94016" -190074,USB-C Charging Cable,2,11.95,04/03/19 12:09,"368 Lincoln St, Seattle, WA 98101" -190075,Lightning Charging Cable,1,14.95,04/05/19 23:55,"967 Maple St, Los Angeles, CA 90001" -190076,Apple Airpods Headphones,1,150,04/03/19 08:23,"318 Chestnut St, Los Angeles, CA 90001" -190077,AAA Batteries (4-pack),1,2.99,04/23/19 13:19,"323 Center St, Los Angeles, CA 90001" -190078,Lightning Charging Cable,1,14.95,04/18/19 10:48,"981 Center St, Seattle, WA 98101" -190079,Google Phone,1,600,04/19/19 09:12,"927 5th St, Los Angeles, CA 90001" -190080,Flatscreen TV,1,300,04/30/19 15:57,"315 Cedar St, Portland, OR 97035" -190081,Bose SoundSport Headphones,1,99.99,04/14/19 19:58,"585 Willow St, Austin, TX 73301" -190082,Google Phone,1,600,04/12/19 19:07,"743 Lincoln St, Boston, MA 02215" -190083,USB-C Charging Cable,2,11.95,04/08/19 11:46,"405 Hill St, Dallas, TX 75001" -190084,34in Ultrawide Monitor,1,379.99,04/18/19 11:00,"634 Highland St, San Francisco, CA 94016" -190085,Wired Headphones,1,11.99,04/20/19 19:52,"460 River St, San Francisco, CA 94016" -190086,AAA Batteries (4-pack),1,2.99,04/21/19 11:16,"165 2nd St, San Francisco, CA 94016" -190087,Wired Headphones,1,11.99,04/08/19 18:15,"439 Adams St, Austin, TX 73301" -190088,USB-C Charging Cable,2,11.95,04/22/19 12:32,"884 Park St, New York City, NY 10001" -190089,20in Monitor,1,109.99,04/07/19 15:19,"149 7th St, Atlanta, GA 30301" -190090,Wired Headphones,1,11.99,04/23/19 14:42,"612 West St, Portland, OR 97035" -190091,Apple Airpods Headphones,1,150,04/28/19 16:05,"491 Washington St, New York City, NY 10001" -190092,Apple Airpods Headphones,1,150,04/23/19 16:14,"960 Madison St, Portland, ME 04101" -190093,AAA Batteries (4-pack),2,2.99,04/30/19 11:40,"911 Hickory St, San Francisco, CA 94016" -190094,iPhone,1,700,04/02/19 12:43,"371 2nd St, New York City, NY 10001" -190095,AA Batteries (4-pack),3,3.84,04/19/19 20:21,"85 Highland St, New York City, NY 10001" -190096,AA Batteries (4-pack),2,3.84,04/16/19 19:16,"372 Willow St, Atlanta, GA 30301" -190097,AA Batteries (4-pack),1,3.84,04/09/19 14:53,"215 Johnson St, San Francisco, CA 94016" -190098,Wired Headphones,2,11.99,04/17/19 07:28,"589 Chestnut St, Atlanta, GA 30301" -190099,AA Batteries (4-pack),1,3.84,04/18/19 08:07,"845 Sunset St, Los Angeles, CA 90001" -190099,AA Batteries (4-pack),1,3.84,04/18/19 08:07,"845 Sunset St, Los Angeles, CA 90001" -190100,AAA Batteries (4-pack),1,2.99,04/07/19 17:37,"625 13th St, Los Angeles, CA 90001" -190101,Wired Headphones,1,11.99,04/08/19 20:40,"267 13th St, Los Angeles, CA 90001" -190102,AAA Batteries (4-pack),1,2.99,04/16/19 14:56,"763 Adams St, New York City, NY 10001" -190103,20in Monitor,1,109.99,04/04/19 21:20,"741 Church St, Dallas, TX 75001" -190104,Lightning Charging Cable,1,14.95,04/16/19 08:54,"3 Madison St, Seattle, WA 98101" -190105,iPhone,1,700,04/06/19 20:34,"490 Spruce St, San Francisco, CA 94016" -190106,Bose SoundSport Headphones,1,99.99,04/30/19 20:47,"305 Hickory St, Seattle, WA 98101" -190107,AA Batteries (4-pack),1,3.84,04/01/19 15:33,"178 Cherry St, Atlanta, GA 30301" -190108,AA Batteries (4-pack),2,3.84,04/10/19 09:37,"291 Hill St, Boston, MA 02215" -190109,Apple Airpods Headphones,1,150,04/27/19 14:17,"464 Willow St, San Francisco, CA 94016" -190110,AAA Batteries (4-pack),1,2.99,04/21/19 19:16,"329 Park St, New York City, NY 10001" -190111,Lightning Charging Cable,1,14.95,04/29/19 21:10,"399 Washington St, New York City, NY 10001" -190112,AAA Batteries (4-pack),1,2.99,04/12/19 16:50,"780 Forest St, Boston, MA 02215" -190113,Lightning Charging Cable,1,14.95,04/15/19 17:36,"621 6th St, Los Angeles, CA 90001" -190114,AAA Batteries (4-pack),1,2.99,04/24/19 16:22,"417 Dogwood St, Atlanta, GA 30301" -190115,27in FHD Monitor,1,149.99,04/30/19 18:16,"235 5th St, Atlanta, GA 30301" -190116,Apple Airpods Headphones,1,150,04/26/19 19:51,"920 Church St, Seattle, WA 98101" -190117,Flatscreen TV,1,300,04/17/19 19:08,"612 North St, Boston, MA 02215" -190118,Flatscreen TV,1,300,04/01/19 15:33,"528 Willow St, Los Angeles, CA 90001" -190119,Lightning Charging Cable,1,14.95,04/06/19 12:52,"436 12th St, Portland, ME 04101" -190120,AA Batteries (4-pack),1,3.84,04/29/19 19:33,"100 12th St, Seattle, WA 98101" -190121,Wired Headphones,1,11.99,04/05/19 18:51,"785 Madison St, Austin, TX 73301" -190122,AA Batteries (4-pack),1,3.84,04/08/19 07:12,"903 2nd St, Dallas, TX 75001" -190123,Wired Headphones,1,11.99,04/02/19 13:09,"565 Pine St, New York City, NY 10001" -190124,27in FHD Monitor,1,149.99,04/08/19 20:52,"545 Ridge St, Los Angeles, CA 90001" -190125,Wired Headphones,2,11.99,04/11/19 01:51,"47 West St, Seattle, WA 98101" -190126,AA Batteries (4-pack),1,3.84,04/12/19 01:37,"629 Johnson St, Atlanta, GA 30301" -190127,Google Phone,1,600,04/19/19 08:54,"676 Chestnut St, Atlanta, GA 30301" -190128,Macbook Pro Laptop,1,1700,04/29/19 11:21,"655 North St, New York City, NY 10001" -190129,Wired Headphones,1,11.99,04/15/19 20:39,"686 Cherry St, Los Angeles, CA 90001" -190130,LG Washing Machine,1,600.0,04/21/19 18:04,"183 Lake St, Dallas, TX 75001" -190131,AA Batteries (4-pack),1,3.84,04/02/19 22:02,"720 Meadow St, New York City, NY 10001" -190132,USB-C Charging Cable,1,11.95,04/30/19 14:35,"174 4th St, New York City, NY 10001" -190133,Apple Airpods Headphones,1,150,04/15/19 12:54,"997 Cherry St, Atlanta, GA 30301" -190134,AA Batteries (4-pack),1,3.84,04/03/19 11:02,"722 Hill St, Boston, MA 02215" -190135,AA Batteries (4-pack),2,3.84,04/27/19 19:12,"23 Highland St, Austin, TX 73301" -190136,Macbook Pro Laptop,1,1700,04/08/19 12:06,"172 Elm St, San Francisco, CA 94016" -190137,Lightning Charging Cable,1,14.95,04/03/19 10:42,"510 11th St, Los Angeles, CA 90001" -190138,iPhone,1,700,04/20/19 22:10,"345 Park St, Austin, TX 73301" -190139,Wired Headphones,1,11.99,04/04/19 13:21,"153 Church St, Atlanta, GA 30301" -190140,27in 4K Gaming Monitor,1,389.99,04/19/19 18:19,"115 Lake St, Portland, OR 97035" -190141,Lightning Charging Cable,1,14.95,04/16/19 09:09,"21 South St, Portland, OR 97035" -190142,Lightning Charging Cable,1,14.95,04/26/19 12:06,"439 Main St, Boston, MA 02215" -190143,Apple Airpods Headphones,1,150,04/08/19 11:40,"391 7th St, Dallas, TX 75001" -190144,USB-C Charging Cable,1,11.95,04/05/19 17:49,"430 Church St, Los Angeles, CA 90001" -190145,Wired Headphones,1,11.99,04/14/19 11:21,"975 Highland St, Dallas, TX 75001" -190146,34in Ultrawide Monitor,1,379.99,04/04/19 12:37,"229 Cherry St, Los Angeles, CA 90001" -190147,Lightning Charging Cable,1,14.95,04/04/19 09:43,"418 River St, Boston, MA 02215" -190148,USB-C Charging Cable,1,11.95,04/05/19 14:41,"341 Wilson St, Seattle, WA 98101" -190149,34in Ultrawide Monitor,1,379.99,04/14/19 00:45,"535 River St, Los Angeles, CA 90001" -190150,Lightning Charging Cable,1,14.95,04/16/19 21:35,"419 1st St, Portland, ME 04101" -190151,AAA Batteries (4-pack),1,2.99,04/11/19 18:54,"759 8th St, Seattle, WA 98101" -190152,27in 4K Gaming Monitor,1,389.99,04/04/19 11:07,"760 Spruce St, Dallas, TX 75001" -190153,Apple Airpods Headphones,1,150,04/26/19 19:01,"829 8th St, New York City, NY 10001" -190154,Wired Headphones,1,11.99,04/09/19 15:55,"298 8th St, Los Angeles, CA 90001" -190155,Bose SoundSport Headphones,1,99.99,04/17/19 15:37,"602 Washington St, Boston, MA 02215" -190156,AAA Batteries (4-pack),2,2.99,04/02/19 16:03,"165 13th St, Los Angeles, CA 90001" -190157,Apple Airpods Headphones,1,150,04/01/19 13:48,"774 6th St, Boston, MA 02215" -190158,27in 4K Gaming Monitor,1,389.99,04/04/19 10:20,"341 10th St, New York City, NY 10001" -190159,Wired Headphones,1,11.99,04/02/19 00:58,"578 Ridge St, New York City, NY 10001" -190160,Bose SoundSport Headphones,1,99.99,04/15/19 22:50,"999 Johnson St, Seattle, WA 98101" -190161,Wired Headphones,1,11.99,04/16/19 14:47,"349 Hickory St, New York City, NY 10001" -190161,Apple Airpods Headphones,1,150,04/16/19 14:47,"349 Hickory St, New York City, NY 10001" -190162,Flatscreen TV,1,300,04/01/19 13:37,"400 Park St, San Francisco, CA 94016" -190163,Bose SoundSport Headphones,1,99.99,04/01/19 14:53,"220 Adams St, New York City, NY 10001" -190164,Bose SoundSport Headphones,1,99.99,04/27/19 17:41,"531 1st St, Boston, MA 02215" -190165,Google Phone,1,600,04/10/19 17:36,"41 14th St, Seattle, WA 98101" -190166,Wired Headphones,1,11.99,04/12/19 20:13,"498 Dogwood St, Boston, MA 02215" -190167,27in 4K Gaming Monitor,1,389.99,04/29/19 09:59,"41 Lincoln St, San Francisco, CA 94016" -190168,AA Batteries (4-pack),1,3.84,04/24/19 13:15,"532 1st St, San Francisco, CA 94016" -190169,AA Batteries (4-pack),1,3.84,04/29/19 22:41,"220 Sunset St, San Francisco, CA 94016" -190170,AA Batteries (4-pack),2,3.84,04/11/19 23:19,"117 Hill St, Atlanta, GA 30301" -190171,34in Ultrawide Monitor,1,379.99,04/22/19 18:37,"55 Cedar St, New York City, NY 10001" -190172,34in Ultrawide Monitor,1,379.99,04/05/19 23:54,"346 1st St, Los Angeles, CA 90001" -190173,Lightning Charging Cable,1,14.95,04/12/19 20:54,"700 7th St, Los Angeles, CA 90001" -190174,AAA Batteries (4-pack),2,2.99,04/04/19 23:54,"124 Church St, New York City, NY 10001" -190175,AA Batteries (4-pack),1,3.84,04/17/19 21:44,"698 Hill St, Portland, OR 97035" -190176,USB-C Charging Cable,1,11.95,04/20/19 22:18,"980 Johnson St, New York City, NY 10001" -190177,AA Batteries (4-pack),1,3.84,04/11/19 10:51,"262 Elm St, Boston, MA 02215" -190178,Lightning Charging Cable,1,14.95,04/26/19 11:19,"587 Forest St, San Francisco, CA 94016" -190179,AAA Batteries (4-pack),1,2.99,04/26/19 18:55,"717 Dogwood St, Seattle, WA 98101" -190180,AA Batteries (4-pack),1,3.84,04/27/19 07:35,"8 1st St, San Francisco, CA 94016" -190181,AA Batteries (4-pack),1,3.84,04/21/19 10:56,"428 Main St, San Francisco, CA 94016" -190182,Bose SoundSport Headphones,1,99.99,04/20/19 22:48,"210 Church St, Dallas, TX 75001" -190183,Google Phone,1,600,04/15/19 15:23,"92 Madison St, New York City, NY 10001" -190183,USB-C Charging Cable,1,11.95,04/15/19 15:23,"92 Madison St, New York City, NY 10001" -190184,Bose SoundSport Headphones,1,99.99,04/27/19 16:19,"583 Park St, San Francisco, CA 94016" -190185,Flatscreen TV,1,300,04/29/19 00:00,"74 Pine St, Austin, TX 73301" -190186,Lightning Charging Cable,1,14.95,04/21/19 11:12,"675 6th St, Los Angeles, CA 90001" -190187,Macbook Pro Laptop,1,1700,04/01/19 12:24,"170 Lake St, Los Angeles, CA 90001" -190188,Bose SoundSport Headphones,1,99.99,04/22/19 13:04,"126 North St, Los Angeles, CA 90001" -190189,USB-C Charging Cable,1,11.95,04/18/19 14:45,"636 Elm St, Atlanta, GA 30301" -190190,Lightning Charging Cable,1,14.95,04/06/19 17:12,"90 River St, New York City, NY 10001" -190191,iPhone,1,700,04/20/19 07:05,"804 Lincoln St, Austin, TX 73301" -190192,AA Batteries (4-pack),2,3.84,04/10/19 17:48,"88 1st St, Dallas, TX 75001" -190193,20in Monitor,1,109.99,04/04/19 13:23,"592 6th St, San Francisco, CA 94016" -190194,Lightning Charging Cable,1,14.95,04/29/19 17:50,"778 Chestnut St, Seattle, WA 98101" -190195,USB-C Charging Cable,1,11.95,04/09/19 10:33,"859 2nd St, Los Angeles, CA 90001" -190196,Vareebadd Phone,1,400,04/16/19 14:35,"897 Highland St, San Francisco, CA 94016" -190196,USB-C Charging Cable,1,11.95,04/16/19 14:35,"897 Highland St, San Francisco, CA 94016" -190197,27in FHD Monitor,1,149.99,04/28/19 22:26,"38 2nd St, Dallas, TX 75001" -190198,Lightning Charging Cable,1,14.95,04/21/19 14:23,"139 Sunset St, Atlanta, GA 30301" -190199,ThinkPad Laptop,1,999.99,04/15/19 14:45,"890 Lincoln St, Los Angeles, CA 90001" -190200,Macbook Pro Laptop,1,1700,04/18/19 13:02,"508 Main St, Portland, OR 97035" -190201,USB-C Charging Cable,1,11.95,04/27/19 19:01,"598 Sunset St, Portland, OR 97035" -190202,Lightning Charging Cable,1,14.95,04/09/19 09:51,"174 4th St, Boston, MA 02215" -190203,Wired Headphones,1,11.99,04/29/19 21:16,"523 Meadow St, San Francisco, CA 94016" -190204,Flatscreen TV,1,300,04/10/19 17:24,"162 South St, San Francisco, CA 94016" -190205,Google Phone,1,600,04/02/19 13:24,"526 Elm St, Dallas, TX 75001" -190206,Lightning Charging Cable,1,14.95,04/25/19 10:02,"283 Cedar St, Los Angeles, CA 90001" -190207,Bose SoundSport Headphones,1,99.99,04/05/19 11:56,"903 Madison St, New York City, NY 10001" -190208,AA Batteries (4-pack),1,3.84,04/21/19 09:16,"314 Washington St, Austin, TX 73301" -190209,Wired Headphones,1,11.99,04/25/19 23:10,"920 Johnson St, San Francisco, CA 94016" -190210,AA Batteries (4-pack),1,3.84,04/27/19 19:06,"115 Spruce St, San Francisco, CA 94016" -190211,Vareebadd Phone,1,400,04/30/19 19:56,"15 6th St, San Francisco, CA 94016" -190211,USB-C Charging Cable,1,11.95,04/30/19 19:56,"15 6th St, San Francisco, CA 94016" -190212,USB-C Charging Cable,1,11.95,04/20/19 17:24,"94 2nd St, Boston, MA 02215" -190213,34in Ultrawide Monitor,1,379.99,04/14/19 03:41,"159 Church St, San Francisco, CA 94016" -190214,Wired Headphones,1,11.99,04/14/19 20:11,"871 Hickory St, Portland, ME 04101" -190215,Wired Headphones,1,11.99,04/09/19 11:14,"129 Jefferson St, Seattle, WA 98101" -190216,USB-C Charging Cable,1,11.95,04/18/19 09:57,"266 Adams St, Los Angeles, CA 90001" -190217,Apple Airpods Headphones,1,150,04/17/19 12:19,"473 10th St, New York City, NY 10001" -190218,Google Phone,1,600,04/30/19 17:46,"510 Jackson St, Dallas, TX 75001" -190218,USB-C Charging Cable,1,11.95,04/30/19 17:46,"510 Jackson St, Dallas, TX 75001" -190219,AAA Batteries (4-pack),3,2.99,04/27/19 11:01,"955 10th St, Boston, MA 02215" -190220,AA Batteries (4-pack),1,3.84,04/23/19 18:33,"675 Jackson St, Los Angeles, CA 90001" -190221,Wired Headphones,1,11.99,04/30/19 11:20,"13 Ridge St, San Francisco, CA 94016" -190222,AA Batteries (4-pack),1,3.84,04/27/19 14:47,"381 Wilson St, Portland, OR 97035" -190223,Apple Airpods Headphones,1,150,04/24/19 21:53,"75 Madison St, San Francisco, CA 94016" -190224,Apple Airpods Headphones,1,150,04/20/19 07:33,"538 Jefferson St, New York City, NY 10001" -190225,34in Ultrawide Monitor,1,379.99,04/01/19 21:58,"354 5th St, Los Angeles, CA 90001" -190226,Bose SoundSport Headphones,1,99.99,04/21/19 10:14,"818 North St, San Francisco, CA 94016" -190227,Apple Airpods Headphones,1,150,04/28/19 15:38,"888 6th St, Dallas, TX 75001" -190228,AA Batteries (4-pack),1,3.84,04/15/19 11:51,"89 Jefferson St, New York City, NY 10001" -190228,USB-C Charging Cable,1,11.95,04/15/19 11:51,"89 Jefferson St, New York City, NY 10001" -190229,Wired Headphones,1,11.99,04/22/19 09:37,"670 7th St, Portland, OR 97035" -190230,Google Phone,1,600,04/04/19 20:02,"451 12th St, Austin, TX 73301" -190231,34in Ultrawide Monitor,1,379.99,04/13/19 16:33,"72 Madison St, Austin, TX 73301" -190232,Lightning Charging Cable,1,14.95,04/06/19 11:25,"464 Lake St, Portland, OR 97035" -190233,Lightning Charging Cable,1,14.95,04/13/19 09:04,"770 Johnson St, Los Angeles, CA 90001" -190234,Google Phone,1,600,04/17/19 15:37,"128 River St, Dallas, TX 75001" -190235,iPhone,1,700,04/08/19 21:53,"425 2nd St, Austin, TX 73301" -190236,AA Batteries (4-pack),1,3.84,04/23/19 11:43,"270 Cedar St, Seattle, WA 98101" -190237,Lightning Charging Cable,1,14.95,04/25/19 17:32,"11 9th St, Atlanta, GA 30301" -190238,Lightning Charging Cable,1,14.95,04/28/19 14:19,"169 Willow St, Dallas, TX 75001" -190239,LG Washing Machine,1,600.0,04/12/19 21:17,"59 Hill St, San Francisco, CA 94016" -190240,AA Batteries (4-pack),1,3.84,04/23/19 20:44,"799 5th St, Seattle, WA 98101" -190241,20in Monitor,1,109.99,04/21/19 22:53,"699 Johnson St, Los Angeles, CA 90001" -190242,Wired Headphones,1,11.99,04/21/19 14:57,"146 Center St, Los Angeles, CA 90001" -190243,Lightning Charging Cable,1,14.95,04/12/19 15:40,"731 11th St, Los Angeles, CA 90001" -190244,Flatscreen TV,1,300,04/28/19 11:06,"90 Willow St, Seattle, WA 98101" -190245,AA Batteries (4-pack),1,3.84,04/11/19 12:17,"965 8th St, San Francisco, CA 94016" -190246,27in FHD Monitor,1,149.99,04/14/19 23:05,"917 Jefferson St, San Francisco, CA 94016" -190247,Lightning Charging Cable,1,14.95,04/19/19 18:37,"258 4th St, Los Angeles, CA 90001" -190248,27in FHD Monitor,1,149.99,04/30/19 14:15,"812 Cedar St, San Francisco, CA 94016" -190249,Wired Headphones,1,11.99,04/15/19 23:34,"992 Cherry St, San Francisco, CA 94016" -190250,Wired Headphones,1,11.99,04/09/19 07:52,"303 2nd St, Dallas, TX 75001" -190251,AA Batteries (4-pack),1,3.84,04/22/19 08:46,"379 Chestnut St, Seattle, WA 98101" -190252,USB-C Charging Cable,1,11.95,04/10/19 17:12,"213 9th St, San Francisco, CA 94016" -190253,AA Batteries (4-pack),1,3.84,04/15/19 15:04,"961 Main St, Boston, MA 02215" -190254,ThinkPad Laptop,1,999.99,04/06/19 10:33,"546 Chestnut St, Atlanta, GA 30301" -190255,Vareebadd Phone,1,400,04/08/19 18:35,"501 11th St, Seattle, WA 98101" -190255,Bose SoundSport Headphones,1,99.99,04/08/19 18:35,"501 11th St, Seattle, WA 98101" -190256,Wired Headphones,1,11.99,04/16/19 12:40,"23 West St, New York City, NY 10001" -190257,AAA Batteries (4-pack),2,2.99,04/06/19 12:22,"992 Lake St, Los Angeles, CA 90001" -190258,Apple Airpods Headphones,1,150,04/12/19 08:20,"127 12th St, San Francisco, CA 94016" -190259,AAA Batteries (4-pack),1,2.99,04/18/19 13:50,"211 Hickory St, Los Angeles, CA 90001" -190260,Lightning Charging Cable,1,14.95,04/27/19 11:12,"993 Spruce St, San Francisco, CA 94016" -190261,Bose SoundSport Headphones,1,99.99,04/27/19 15:56,"398 Main St, New York City, NY 10001" -190262,AA Batteries (4-pack),1,3.84,04/20/19 19:58,"819 4th St, Atlanta, GA 30301" -190263,Wired Headphones,1,11.99,04/23/19 23:42,"768 6th St, San Francisco, CA 94016" -190264,Lightning Charging Cable,1,14.95,04/23/19 07:05,"843 Church St, San Francisco, CA 94016" -190265,Apple Airpods Headphones,1,150,04/09/19 17:52,"442 Forest St, Atlanta, GA 30301" -190266,27in FHD Monitor,1,149.99,04/02/19 17:50,"146 9th St, Los Angeles, CA 90001" -190267,Bose SoundSport Headphones,1,99.99,04/21/19 13:15,"625 North St, Boston, MA 02215" -190268,AAA Batteries (4-pack),1,2.99,04/19/19 19:04,"27 2nd St, San Francisco, CA 94016" -190269,Bose SoundSport Headphones,1,99.99,04/07/19 21:41,"79 Center St, Los Angeles, CA 90001" -190270,Wired Headphones,1,11.99,04/04/19 02:38,"722 12th St, Boston, MA 02215" -190271,Macbook Pro Laptop,1,1700,04/12/19 20:38,"901 Chestnut St, Atlanta, GA 30301" -190272,AA Batteries (4-pack),1,3.84,04/14/19 14:29,"572 Lincoln St, Dallas, TX 75001" -190273,Wired Headphones,1,11.99,04/16/19 18:46,"128 West St, San Francisco, CA 94016" -190274,Apple Airpods Headphones,1,150,04/21/19 18:23,"666 Washington St, Los Angeles, CA 90001" -190275,Bose SoundSport Headphones,1,99.99,04/10/19 11:40,"679 Walnut St, Seattle, WA 98101" -190276,Bose SoundSport Headphones,1,99.99,04/26/19 22:22,"81 4th St, San Francisco, CA 94016" -190277,Apple Airpods Headphones,1,150,04/30/19 19:55,"145 4th St, Portland, ME 04101" -190278,AA Batteries (4-pack),1,3.84,04/25/19 19:58,"72 13th St, San Francisco, CA 94016" -190279,USB-C Charging Cable,1,11.95,04/10/19 20:59,"514 11th St, Portland, ME 04101" -190280,Flatscreen TV,1,300,04/09/19 10:52,"24 West St, Atlanta, GA 30301" -190281,20in Monitor,1,109.99,04/30/19 00:53,"709 Wilson St, New York City, NY 10001" -190282,AA Batteries (4-pack),1,3.84,04/01/19 16:48,"446 7th St, New York City, NY 10001" -190283,AA Batteries (4-pack),1,3.84,04/14/19 09:19,"719 Madison St, San Francisco, CA 94016" -190284,Wired Headphones,1,11.99,04/01/19 18:33,"661 6th St, Los Angeles, CA 90001" -190285,27in 4K Gaming Monitor,1,389.99,04/19/19 10:42,"492 5th St, Los Angeles, CA 90001" -190286,AA Batteries (4-pack),1,3.84,04/18/19 14:52,"640 Elm St, Los Angeles, CA 90001" -190287,USB-C Charging Cable,1,11.95,04/22/19 08:03,"343 11th St, New York City, NY 10001" -190288,Google Phone,1,600,04/02/19 19:22,"802 Chestnut St, New York City, NY 10001" -190289,AAA Batteries (4-pack),1,2.99,04/10/19 16:27,"998 7th St, San Francisco, CA 94016" -190290,Apple Airpods Headphones,1,150,04/07/19 11:17,"855 6th St, Seattle, WA 98101" -190291,Lightning Charging Cable,1,14.95,04/11/19 11:23,"401 7th St, Austin, TX 73301" -190292,Lightning Charging Cable,1,14.95,04/21/19 18:35,"408 Church St, Los Angeles, CA 90001" -190293,AAA Batteries (4-pack),1,2.99,04/07/19 02:35,"785 Cedar St, New York City, NY 10001" -190294,Bose SoundSport Headphones,1,99.99,04/26/19 18:30,"693 Park St, Los Angeles, CA 90001" -190295,27in 4K Gaming Monitor,1,389.99,04/25/19 12:24,"757 Sunset St, New York City, NY 10001" -190296,AAA Batteries (4-pack),2,2.99,04/22/19 20:05,"772 Forest St, Atlanta, GA 30301" -190297,AA Batteries (4-pack),1,3.84,04/26/19 14:45,"639 Center St, Los Angeles, CA 90001" -190298,Apple Airpods Headphones,1,150,04/24/19 16:47,"699 9th St, New York City, NY 10001" -190299,Wired Headphones,1,11.99,04/24/19 11:58,"805 Meadow St, New York City, NY 10001" -190300,iPhone,1,700,04/06/19 21:50,"817 Church St, Seattle, WA 98101" -190300,Wired Headphones,1,11.99,04/06/19 21:50,"817 Church St, Seattle, WA 98101" -190301,Apple Airpods Headphones,1,150,04/29/19 22:04,"599 Sunset St, Boston, MA 02215" -190302,27in 4K Gaming Monitor,1,389.99,04/29/19 13:18,"998 Sunset St, Austin, TX 73301" -190303,AA Batteries (4-pack),1,3.84,04/17/19 21:19,"135 Ridge St, Boston, MA 02215" -190303,USB-C Charging Cable,1,11.95,04/17/19 21:19,"135 Ridge St, Boston, MA 02215" -,,,,, -190304,AA Batteries (4-pack),4,3.84,04/16/19 23:32,"453 Hickory St, Los Angeles, CA 90001" -190305,27in FHD Monitor,1,149.99,04/21/19 13:57,"628 Dogwood St, New York City, NY 10001" -190306,Macbook Pro Laptop,1,1700,04/10/19 11:42,"853 Cherry St, Portland, OR 97035" -190307,27in FHD Monitor,1,149.99,04/10/19 13:36,"59 Spruce St, Boston, MA 02215" -190308,ThinkPad Laptop,1,999.99,04/07/19 20:28,"89 Jefferson St, Portland, OR 97035" -190309,iPhone,1,700,04/04/19 11:34,"286 5th St, Dallas, TX 75001" -190309,Wired Headphones,1,11.99,04/04/19 11:34,"286 5th St, Dallas, TX 75001" -190310,Lightning Charging Cable,1,14.95,04/08/19 16:57,"437 Pine St, Los Angeles, CA 90001" -190311,AAA Batteries (4-pack),1,2.99,04/13/19 20:11,"869 West St, San Francisco, CA 94016" -190312,Bose SoundSport Headphones,1,99.99,04/11/19 17:54,"374 Ridge St, Portland, OR 97035" -190313,Bose SoundSport Headphones,1,99.99,04/21/19 12:50,"176 Spruce St, San Francisco, CA 94016" -190314,USB-C Charging Cable,1,11.95,04/03/19 17:40,"761 4th St, Atlanta, GA 30301" -190315,Wired Headphones,1,11.99,04/23/19 16:50,"668 Lakeview St, Dallas, TX 75001" -190316,Wired Headphones,1,11.99,04/08/19 21:59,"283 Center St, New York City, NY 10001" -190317,Vareebadd Phone,1,400,04/17/19 20:00,"984 Jackson St, Portland, ME 04101" -190318,Bose SoundSport Headphones,1,99.99,04/26/19 10:51,"651 Center St, Dallas, TX 75001" -190319,Bose SoundSport Headphones,1,99.99,04/27/19 11:46,"5 Madison St, New York City, NY 10001" -190320,iPhone,1,700,04/15/19 09:07,"917 12th St, Seattle, WA 98101" -190321,AAA Batteries (4-pack),1,2.99,04/06/19 18:31,"103 Center St, Boston, MA 02215" -190322,AA Batteries (4-pack),1,3.84,04/23/19 19:37,"938 Washington St, Dallas, TX 75001" -190323,USB-C Charging Cable,1,11.95,04/06/19 22:34,"452 Cherry St, Seattle, WA 98101" -190324,Bose SoundSport Headphones,1,99.99,04/13/19 13:06,"785 1st St, New York City, NY 10001" -190325,USB-C Charging Cable,1,11.95,04/01/19 18:17,"841 Lincoln St, Boston, MA 02215" -190326,Wired Headphones,2,11.99,04/15/19 10:12,"156 Pine St, Austin, TX 73301" -190327,Apple Airpods Headphones,1,150,04/28/19 18:40,"352 12th St, Los Angeles, CA 90001" -190328,Lightning Charging Cable,1,14.95,04/14/19 10:26,"476 Cedar St, Portland, OR 97035" -190329,AAA Batteries (4-pack),2,2.99,04/19/19 09:45,"144 13th St, Boston, MA 02215" -190330,27in FHD Monitor,1,149.99,04/05/19 17:32,"792 11th St, Dallas, TX 75001" -190331,AAA Batteries (4-pack),1,2.99,04/16/19 11:24,"215 Center St, Los Angeles, CA 90001" -190332,Wired Headphones,1,11.99,04/02/19 18:46,"555 Park St, Atlanta, GA 30301" -190333,Apple Airpods Headphones,1,150,04/20/19 17:17,"61 12th St, New York City, NY 10001" -190334,Macbook Pro Laptop,1,1700,04/06/19 12:44,"229 Cedar St, Los Angeles, CA 90001" -190335,20in Monitor,1,109.99,04/06/19 00:34,"625 Elm St, Los Angeles, CA 90001" -190336,20in Monitor,1,109.99,04/13/19 04:55,"357 Spruce St, Austin, TX 73301" -190337,iPhone,1,700,04/24/19 21:01,"534 14th St, Boston, MA 02215" -190338,Apple Airpods Headphones,1,150,04/13/19 16:51,"313 6th St, New York City, NY 10001" -190339,Apple Airpods Headphones,1,150,04/13/19 13:40,"610 Wilson St, Boston, MA 02215" -190340,Apple Airpods Headphones,1,150,04/24/19 20:53,"171 Ridge St, Los Angeles, CA 90001" -190340,Lightning Charging Cable,1,14.95,04/24/19 20:53,"171 Ridge St, Los Angeles, CA 90001" -190341,USB-C Charging Cable,1,11.95,04/27/19 10:19,"826 Forest St, Los Angeles, CA 90001" -190342,27in 4K Gaming Monitor,1,389.99,04/04/19 17:22,"550 Elm St, San Francisco, CA 94016" -190343,Lightning Charging Cable,1,14.95,04/11/19 20:10,"538 Willow St, Boston, MA 02215" -190344,iPhone,1,700,04/15/19 19:25,"423 Willow St, San Francisco, CA 94016" -190345,Wired Headphones,1,11.99,04/22/19 20:58,"145 Elm St, San Francisco, CA 94016" -190346,AAA Batteries (4-pack),1,2.99,04/03/19 18:56,"312 Highland St, Seattle, WA 98101" -190347,Wired Headphones,1,11.99,04/25/19 16:04,"65 Johnson St, Austin, TX 73301" -190348,Apple Airpods Headphones,1,150,04/19/19 14:24,"163 12th St, New York City, NY 10001" -190349,Google Phone,1,600,04/09/19 09:37,"697 Chestnut St, Los Angeles, CA 90001" -190350,USB-C Charging Cable,1,11.95,04/07/19 07:13,"967 Church St, Los Angeles, CA 90001" -190351,AA Batteries (4-pack),1,3.84,04/28/19 12:19,"804 Jackson St, Atlanta, GA 30301" -190352,Lightning Charging Cable,1,14.95,04/03/19 05:50,"868 Dogwood St, Seattle, WA 98101" -190353,27in FHD Monitor,1,149.99,04/05/19 18:54,"132 Johnson St, Boston, MA 02215" -190354,Apple Airpods Headphones,1,150,04/29/19 11:25,"106 Church St, New York City, NY 10001" -190355,AAA Batteries (4-pack),1,2.99,04/24/19 15:37,"256 Cedar St, New York City, NY 10001" -190356,ThinkPad Laptop,1,999.99,04/07/19 11:13,"488 Highland St, Los Angeles, CA 90001" -190357,Flatscreen TV,1,300,04/19/19 18:58,"493 West St, Austin, TX 73301" -190358,Lightning Charging Cable,1,14.95,04/05/19 19:49,"593 West St, Dallas, TX 75001" -190359,LG Washing Machine,1,600.0,04/04/19 19:15,"588 Washington St, New York City, NY 10001" -190360,USB-C Charging Cable,1,11.95,04/08/19 11:40,"15 Maple St, Seattle, WA 98101" -190361,Bose SoundSport Headphones,1,99.99,04/01/19 16:35,"768 Walnut St, Boston, MA 02215" -190362,iPhone,1,700,04/01/19 12:35,"349 River St, Austin, TX 73301" -190363,27in FHD Monitor,1,149.99,04/10/19 20:35,"454 Jackson St, New York City, NY 10001" -190364,AA Batteries (4-pack),1,3.84,04/20/19 11:58,"494 10th St, New York City, NY 10001" -190364,27in 4K Gaming Monitor,1,389.99,04/20/19 11:58,"494 10th St, New York City, NY 10001" -190365,27in 4K Gaming Monitor,1,389.99,04/19/19 17:21,"690 Lake St, San Francisco, CA 94016" -190366,AA Batteries (4-pack),1,3.84,04/03/19 11:06,"926 Chestnut St, Los Angeles, CA 90001" -190367,AAA Batteries (4-pack),1,2.99,04/05/19 15:33,"730 Lakeview St, Austin, TX 73301" -190368,Bose SoundSport Headphones,1,99.99,04/26/19 21:31,"97 Chestnut St, Portland, OR 97035" -190369,Wired Headphones,1,11.99,04/20/19 11:21,"503 14th St, Los Angeles, CA 90001" -190370,Macbook Pro Laptop,1,1700,04/21/19 20:04,"471 5th St, San Francisco, CA 94016" -190371,Lightning Charging Cable,1,14.95,04/08/19 21:22,"726 5th St, San Francisco, CA 94016" -190372,AA Batteries (4-pack),1,3.84,04/07/19 15:25,"992 Pine St, New York City, NY 10001" -190373,AA Batteries (4-pack),1,3.84,04/03/19 17:43,"548 Main St, New York City, NY 10001" -190374,Wired Headphones,1,11.99,04/09/19 17:25,"951 Main St, San Francisco, CA 94016" -190375,Macbook Pro Laptop,1,1700,04/30/19 00:17,"8 Lincoln St, Portland, OR 97035" -190376,AAA Batteries (4-pack),1,2.99,04/28/19 10:20,"70 Wilson St, San Francisco, CA 94016" -190377,Wired Headphones,1,11.99,04/29/19 12:46,"399 Jackson St, New York City, NY 10001" -190378,Flatscreen TV,1,300,04/18/19 19:59,"912 Madison St, Atlanta, GA 30301" -190379,Lightning Charging Cable,1,14.95,04/11/19 10:06,"790 Maple St, Austin, TX 73301" -190380,USB-C Charging Cable,1,11.95,04/15/19 16:21,"488 5th St, Dallas, TX 75001" -190381,AAA Batteries (4-pack),2,2.99,04/16/19 12:29,"530 5th St, Seattle, WA 98101" -190382,34in Ultrawide Monitor,1,379.99,04/08/19 16:35,"553 Washington St, Los Angeles, CA 90001" -190383,Google Phone,1,600,04/01/19 20:37,"1 Lakeview St, Los Angeles, CA 90001" -190384,20in Monitor,1,109.99,04/06/19 22:56,"864 Lincoln St, Austin, TX 73301" -190385,Macbook Pro Laptop,1,1700,04/04/19 17:34,"817 Lake St, New York City, NY 10001" -190386,USB-C Charging Cable,1,11.95,04/16/19 18:01,"187 Park St, Los Angeles, CA 90001" -190387,AA Batteries (4-pack),1,3.84,04/22/19 19:49,"843 8th St, San Francisco, CA 94016" -190388,USB-C Charging Cable,1,11.95,04/14/19 14:32,"69 Wilson St, Seattle, WA 98101" -190389,27in FHD Monitor,1,149.99,04/15/19 12:38,"776 Chestnut St, San Francisco, CA 94016" -190390,Google Phone,1,600,04/15/19 13:05,"151 Cherry St, Portland, OR 97035" -190391,Wired Headphones,1,11.99,04/18/19 19:51,"803 14th St, San Francisco, CA 94016" -190392,Flatscreen TV,1,300,04/09/19 19:00,"466 Hill St, San Francisco, CA 94016" -190393,iPhone,1,700,04/22/19 17:21,"103 Park St, New York City, NY 10001" -190394,Bose SoundSport Headphones,1,99.99,04/12/19 18:43,"47 8th St, Los Angeles, CA 90001" -190395,Bose SoundSport Headphones,1,99.99,04/07/19 17:56,"61 South St, Los Angeles, CA 90001" -190396,AA Batteries (4-pack),1,3.84,04/08/19 06:19,"758 Lake St, New York City, NY 10001" -190397,20in Monitor,1,109.99,04/15/19 13:14,"116 5th St, Los Angeles, CA 90001" -190398,Lightning Charging Cable,1,14.95,04/14/19 17:05,"450 12th St, Seattle, WA 98101" -190399,Apple Airpods Headphones,1,150,04/04/19 01:48,"784 8th St, Austin, TX 73301" -190400,USB-C Charging Cable,1,11.95,04/19/19 06:53,"100 Chestnut St, Dallas, TX 75001" -190401,USB-C Charging Cable,2,11.95,04/13/19 14:28,"888 Hill St, Los Angeles, CA 90001" -190402,AA Batteries (4-pack),2,3.84,04/27/19 23:26,"551 Wilson St, New York City, NY 10001" -190403,Wired Headphones,1,11.99,04/04/19 18:58,"653 Hickory St, New York City, NY 10001" -190404,AA Batteries (4-pack),1,3.84,04/09/19 14:42,"924 Sunset St, Los Angeles, CA 90001" -190405,ThinkPad Laptop,1,999.99,04/25/19 17:43,"833 4th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -190406,Lightning Charging Cable,1,14.95,04/16/19 10:02,"791 Chestnut St, Dallas, TX 75001" -190407,34in Ultrawide Monitor,1,379.99,04/12/19 18:50,"71 West St, Seattle, WA 98101" -190408,Bose SoundSport Headphones,1,99.99,04/09/19 15:37,"812 Pine St, San Francisco, CA 94016" -190409,Apple Airpods Headphones,1,150,04/28/19 23:11,"597 Meadow St, San Francisco, CA 94016" -190410,USB-C Charging Cable,1,11.95,04/18/19 17:09,"301 Church St, Atlanta, GA 30301" -190411,27in 4K Gaming Monitor,1,389.99,04/15/19 01:28,"678 Wilson St, San Francisco, CA 94016" -190412,Lightning Charging Cable,1,14.95,04/07/19 17:05,"260 Willow St, Atlanta, GA 30301" -190413,iPhone,1,700,04/19/19 08:48,"554 Madison St, San Francisco, CA 94016" -190414,AAA Batteries (4-pack),2,2.99,04/20/19 13:07,"16 5th St, Austin, TX 73301" -190415,AAA Batteries (4-pack),3,2.99,04/20/19 16:02,"116 10th St, Portland, OR 97035" -190416,Wired Headphones,1,11.99,04/30/19 09:44,"562 4th St, Los Angeles, CA 90001" -190417,Flatscreen TV,1,300,04/26/19 16:08,"254 River St, Austin, TX 73301" -190418,Macbook Pro Laptop,1,1700,04/05/19 20:59,"548 Main St, San Francisco, CA 94016" -190419,27in FHD Monitor,1,149.99,04/27/19 20:16,"811 West St, Los Angeles, CA 90001" -190420,AA Batteries (4-pack),1,3.84,04/05/19 07:42,"644 14th St, New York City, NY 10001" -190421,AA Batteries (4-pack),1,3.84,04/14/19 20:09,"243 Adams St, Seattle, WA 98101" -190422,20in Monitor,1,109.99,04/26/19 20:41,"354 Adams St, Dallas, TX 75001" -190423,AA Batteries (4-pack),1,3.84,04/26/19 09:01,"223 Dogwood St, Austin, TX 73301" -190424,Macbook Pro Laptop,1,1700,04/11/19 12:13,"806 Meadow St, San Francisco, CA 94016" -190425,AAA Batteries (4-pack),1,2.99,04/21/19 18:32,"555 Church St, Seattle, WA 98101" -190426,ThinkPad Laptop,1,999.99,04/11/19 23:21,"683 Ridge St, Boston, MA 02215" -190427,AA Batteries (4-pack),2,3.84,04/15/19 13:29,"558 West St, Dallas, TX 75001" -190428,Google Phone,1,600,04/21/19 18:51,"304 Pine St, Los Angeles, CA 90001" -190428,USB-C Charging Cable,1,11.95,04/21/19 18:51,"304 Pine St, Los Angeles, CA 90001" -190429,ThinkPad Laptop,1,999.99,04/14/19 09:28,"31 13th St, Boston, MA 02215" -190430,Bose SoundSport Headphones,1,99.99,04/22/19 12:44,"757 Center St, New York City, NY 10001" -190431,34in Ultrawide Monitor,1,379.99,04/05/19 10:01,"934 Cherry St, Dallas, TX 75001" -190432,Apple Airpods Headphones,1,150,04/25/19 01:18,"26 1st St, Los Angeles, CA 90001" -190433,AA Batteries (4-pack),1,3.84,04/24/19 16:58,"93 Jackson St, Portland, OR 97035" -190434,USB-C Charging Cable,1,11.95,04/01/19 11:30,"857 Walnut St, San Francisco, CA 94016" -190435,27in 4K Gaming Monitor,1,389.99,04/20/19 18:46,"543 6th St, San Francisco, CA 94016" -190436,27in FHD Monitor,1,149.99,04/05/19 11:12,"521 Washington St, New York City, NY 10001" -190437,AAA Batteries (4-pack),1,2.99,04/13/19 01:22,"28 Highland St, Atlanta, GA 30301" -190438,USB-C Charging Cable,1,11.95,04/27/19 17:52,"192 Center St, Boston, MA 02215" -190439,Apple Airpods Headphones,1,150,04/07/19 15:16,"77 Wilson St, San Francisco, CA 94016" -190440,USB-C Charging Cable,1,11.95,04/24/19 13:51,"64 Church St, Atlanta, GA 30301" -190441,Lightning Charging Cable,1,14.95,04/10/19 20:21,"70 10th St, San Francisco, CA 94016" -190442,Flatscreen TV,1,300,04/30/19 10:57,"325 Cedar St, Austin, TX 73301" -190443,Lightning Charging Cable,1,14.95,04/23/19 20:26,"751 Wilson St, New York City, NY 10001" -190444,USB-C Charging Cable,1,11.95,04/08/19 12:06,"593 Jackson St, Austin, TX 73301" -190445,USB-C Charging Cable,1,11.95,04/05/19 22:58,"340 Highland St, Boston, MA 02215" -190446,AAA Batteries (4-pack),2,2.99,04/04/19 11:29,"573 Willow St, San Francisco, CA 94016" -190447,Wired Headphones,1,11.99,04/04/19 10:27,"681 2nd St, New York City, NY 10001" -190448,Lightning Charging Cable,1,14.95,04/16/19 15:44,"312 Elm St, Boston, MA 02215" -190449,Apple Airpods Headphones,1,150,04/13/19 10:46,"747 Hickory St, Austin, TX 73301" -190450,Google Phone,1,600,04/30/19 19:19,"547 5th St, New York City, NY 10001" -190450,AAA Batteries (4-pack),1,2.99,04/30/19 19:19,"547 5th St, New York City, NY 10001" -190451,AAA Batteries (4-pack),1,2.99,04/19/19 19:45,"121 Sunset St, Los Angeles, CA 90001" -190452,Bose SoundSport Headphones,1,99.99,04/14/19 11:01,"206 North St, San Francisco, CA 94016" -190453,Bose SoundSport Headphones,1,99.99,04/27/19 10:20,"477 10th St, Boston, MA 02215" -190454,Lightning Charging Cable,1,14.95,04/15/19 03:04,"463 Willow St, Austin, TX 73301" -190455,USB-C Charging Cable,1,11.95,04/25/19 12:29,"783 14th St, Atlanta, GA 30301" -190456,AA Batteries (4-pack),1,3.84,04/04/19 11:29,"269 West St, San Francisco, CA 94016" -190457,Lightning Charging Cable,1,14.95,04/13/19 15:28,"490 11th St, Los Angeles, CA 90001" -190458,AA Batteries (4-pack),1,3.84,04/11/19 02:24,"288 2nd St, Boston, MA 02215" -190459,AAA Batteries (4-pack),4,2.99,04/24/19 00:22,"922 Pine St, Boston, MA 02215" -190460,Macbook Pro Laptop,1,1700,04/12/19 14:16,"256 Hill St, San Francisco, CA 94016" -190461,Flatscreen TV,1,300,04/18/19 13:20,"465 Dogwood St, Portland, OR 97035" -190462,AA Batteries (4-pack),5,3.84,04/04/19 12:28,"273 Jackson St, Portland, OR 97035" -190463,USB-C Charging Cable,1,11.95,04/30/19 18:23,"912 West St, New York City, NY 10001" -190464,Bose SoundSport Headphones,1,99.99,04/21/19 20:51,"877 South St, San Francisco, CA 94016" -190465,Bose SoundSport Headphones,1,99.99,04/20/19 13:54,"142 North St, New York City, NY 10001" -190466,USB-C Charging Cable,1,11.95,04/06/19 19:05,"770 Highland St, New York City, NY 10001" -190467,ThinkPad Laptop,1,999.99,04/17/19 00:14,"885 Cedar St, Portland, OR 97035" -190468,Bose SoundSport Headphones,1,99.99,04/28/19 01:37,"443 Spruce St, San Francisco, CA 94016" -190469,34in Ultrawide Monitor,1,379.99,04/13/19 19:22,"187 Johnson St, Atlanta, GA 30301" -190470,27in FHD Monitor,1,149.99,04/07/19 16:56,"453 10th St, Boston, MA 02215" -190471,Wired Headphones,1,11.99,04/18/19 18:25,"505 Sunset St, Dallas, TX 75001" -190472,Macbook Pro Laptop,1,1700,04/16/19 22:54,"293 Pine St, Boston, MA 02215" -190473,34in Ultrawide Monitor,1,379.99,04/29/19 14:26,"65 Washington St, San Francisco, CA 94016" -190474,AAA Batteries (4-pack),1,2.99,04/03/19 13:35,"758 1st St, Boston, MA 02215" -190475,Macbook Pro Laptop,1,1700,04/16/19 14:50,"159 1st St, Los Angeles, CA 90001" -190476,AA Batteries (4-pack),1,3.84,04/12/19 17:35,"574 13th St, Atlanta, GA 30301" -190477,USB-C Charging Cable,1,11.95,04/27/19 13:36,"23 Jefferson St, Los Angeles, CA 90001" -190478,AA Batteries (4-pack),1,3.84,04/02/19 13:41,"318 6th St, Boston, MA 02215" -190479,Lightning Charging Cable,1,14.95,04/12/19 18:51,"156 North St, Boston, MA 02215" -190480,Wired Headphones,1,11.99,04/24/19 11:53,"940 Wilson St, San Francisco, CA 94016" -190481,Wired Headphones,1,11.99,04/14/19 04:11,"797 Hill St, San Francisco, CA 94016" -190482,AA Batteries (4-pack),1,3.84,04/27/19 21:05,"441 7th St, Boston, MA 02215" -190483,Wired Headphones,1,11.99,04/30/19 18:55,"96 Johnson St, Austin, TX 73301" -190484,AA Batteries (4-pack),3,3.84,04/13/19 08:45,"170 10th St, San Francisco, CA 94016" -190485,Lightning Charging Cable,1,14.95,04/23/19 14:18,"4 6th St, Dallas, TX 75001" -190486,AA Batteries (4-pack),1,3.84,04/15/19 17:27,"5 Maple St, Portland, OR 97035" -190487,Wired Headphones,2,11.99,04/23/19 06:54,"596 Meadow St, San Francisco, CA 94016" -190488,Lightning Charging Cable,1,14.95,04/09/19 19:03,"960 5th St, Dallas, TX 75001" -190489,Bose SoundSport Headphones,1,99.99,04/03/19 15:33,"865 Hill St, San Francisco, CA 94016" -190490,Bose SoundSport Headphones,1,99.99,04/14/19 13:51,"14 Hill St, San Francisco, CA 94016" -190491,iPhone,1,700,04/14/19 18:48,"231 Lincoln St, Los Angeles, CA 90001" -190492,AAA Batteries (4-pack),1,2.99,04/01/19 18:44,"280 Walnut St, Los Angeles, CA 90001" -190493,AA Batteries (4-pack),1,3.84,04/15/19 13:29,"417 Johnson St, San Francisco, CA 94016" -190493,iPhone,1,700,04/15/19 13:29,"417 Johnson St, San Francisco, CA 94016" -190494,Apple Airpods Headphones,1,150,04/15/19 17:04,"743 Highland St, New York City, NY 10001" -190495,Lightning Charging Cable,2,14.95,04/29/19 08:45,"747 Wilson St, Seattle, WA 98101" -190496,Apple Airpods Headphones,1,150,04/22/19 00:04,"83 8th St, Portland, OR 97035" -190497,Bose SoundSport Headphones,1,99.99,04/28/19 17:54,"495 7th St, Los Angeles, CA 90001" -190498,AA Batteries (4-pack),1,3.84,04/10/19 10:30,"391 Hickory St, Atlanta, GA 30301" -190499,Bose SoundSport Headphones,1,99.99,04/28/19 16:19,"766 North St, San Francisco, CA 94016" -190500,USB-C Charging Cable,1,11.95,04/15/19 23:41,"884 Cedar St, San Francisco, CA 94016" -190501,Macbook Pro Laptop,1,1700,04/10/19 10:46,"818 Hickory St, Atlanta, GA 30301" -190502,Apple Airpods Headphones,1,150,04/19/19 23:18,"304 Lake St, San Francisco, CA 94016" -190503,Lightning Charging Cable,1,14.95,04/30/19 22:44,"474 Cherry St, Los Angeles, CA 90001" -190504,Wired Headphones,1,11.99,04/09/19 18:03,"915 Washington St, Los Angeles, CA 90001" -190505,USB-C Charging Cable,1,11.95,04/29/19 23:27,"120 Park St, Los Angeles, CA 90001" -190506,34in Ultrawide Monitor,1,379.99,04/23/19 08:07,"867 Johnson St, San Francisco, CA 94016" -190507,27in 4K Gaming Monitor,1,389.99,04/03/19 19:43,"899 Cherry St, New York City, NY 10001" -190508,iPhone,1,700,04/21/19 20:08,"704 Chestnut St, Atlanta, GA 30301" -190509,27in FHD Monitor,1,149.99,04/17/19 09:05,"507 Main St, Austin, TX 73301" -190510,AAA Batteries (4-pack),1,2.99,04/04/19 17:37,"173 Walnut St, New York City, NY 10001" -190511,USB-C Charging Cable,1,11.95,04/20/19 20:03,"824 Elm St, New York City, NY 10001" -190512,iPhone,1,700,04/01/19 20:35,"360 5th St, Dallas, TX 75001" -190512,Lightning Charging Cable,1,14.95,04/01/19 20:35,"360 5th St, Dallas, TX 75001" -190512,Apple Airpods Headphones,1,150,04/01/19 20:35,"360 5th St, Dallas, TX 75001" -190513,AA Batteries (4-pack),1,3.84,04/09/19 19:56,"545 1st St, New York City, NY 10001" -190514,Lightning Charging Cable,1,14.95,04/21/19 11:40,"963 Lakeview St, Los Angeles, CA 90001" -190515,Lightning Charging Cable,1,14.95,04/08/19 10:23,"908 Hill St, San Francisco, CA 94016" -190516,USB-C Charging Cable,1,11.95,04/02/19 09:05,"166 Park St, Boston, MA 02215" -190517,Apple Airpods Headphones,1,150,04/02/19 09:30,"34 Elm St, San Francisco, CA 94016" -190518,AAA Batteries (4-pack),1,2.99,04/22/19 23:22,"730 6th St, San Francisco, CA 94016" -190519,Google Phone,1,600,04/20/19 08:53,"820 11th St, Portland, OR 97035" -190520,USB-C Charging Cable,1,11.95,04/28/19 10:48,"628 Maple St, San Francisco, CA 94016" -190521,Wired Headphones,1,11.99,04/16/19 21:43,"830 Lake St, Los Angeles, CA 90001" -190522,27in FHD Monitor,1,149.99,04/03/19 15:10,"513 4th St, Atlanta, GA 30301" -190523,Wired Headphones,1,11.99,04/12/19 23:21,"972 Jefferson St, Los Angeles, CA 90001" -190524,AA Batteries (4-pack),1,3.84,04/16/19 07:22,"935 Lincoln St, San Francisco, CA 94016" -190525,iPhone,1,700,04/06/19 08:57,"581 Main St, Austin, TX 73301" -190525,Bose SoundSport Headphones,1,99.99,04/06/19 08:57,"581 Main St, Austin, TX 73301" -190526,Apple Airpods Headphones,1,150,04/04/19 13:36,"582 River St, San Francisco, CA 94016" -190527,Google Phone,1,600,04/26/19 20:32,"901 Hill St, Los Angeles, CA 90001" -190528,AAA Batteries (4-pack),1,2.99,04/05/19 21:06,"984 1st St, Los Angeles, CA 90001" -190529,AAA Batteries (4-pack),1,2.99,04/14/19 17:14,"819 Wilson St, San Francisco, CA 94016" -190530,Bose SoundSport Headphones,1,99.99,04/12/19 12:32,"32 Lake St, Atlanta, GA 30301" -190531,20in Monitor,1,109.99,04/08/19 18:26,"904 Ridge St, Los Angeles, CA 90001" -190532,Bose SoundSport Headphones,1,99.99,04/10/19 21:00,"488 10th St, Los Angeles, CA 90001" -190533,Lightning Charging Cable,1,14.95,04/02/19 15:15,"317 Wilson St, Seattle, WA 98101" -190534,USB-C Charging Cable,1,11.95,04/26/19 20:55,"717 14th St, Los Angeles, CA 90001" -190535,Lightning Charging Cable,1,14.95,04/16/19 10:13,"487 Hickory St, San Francisco, CA 94016" -190536,27in 4K Gaming Monitor,1,389.99,04/07/19 07:21,"821 14th St, Austin, TX 73301" -190537,Lightning Charging Cable,1,14.95,04/26/19 20:00,"20 Center St, San Francisco, CA 94016" -190538,USB-C Charging Cable,1,11.95,04/28/19 13:55,"353 West St, San Francisco, CA 94016" -190539,USB-C Charging Cable,1,11.95,04/21/19 14:09,"113 8th St, Austin, TX 73301" -190540,Wired Headphones,1,11.99,04/29/19 00:00,"490 Maple St, Los Angeles, CA 90001" -190541,AAA Batteries (4-pack),1,2.99,04/30/19 14:29,"659 Jackson St, Austin, TX 73301" -190542,Wired Headphones,1,11.99,04/28/19 00:05,"53 Adams St, Boston, MA 02215" -190543,20in Monitor,2,109.99,04/22/19 16:27,"893 Hickory St, Los Angeles, CA 90001" -190544,USB-C Charging Cable,1,11.95,04/06/19 13:57,"127 Sunset St, San Francisco, CA 94016" -190545,Lightning Charging Cable,1,14.95,04/20/19 16:40,"705 Meadow St, Austin, TX 73301" -190546,Wired Headphones,2,11.99,04/20/19 13:34,"347 Wilson St, Boston, MA 02215" -190547,AA Batteries (4-pack),1,3.84,04/28/19 09:50,"792 Cedar St, Seattle, WA 98101" -190548,iPhone,1,700,04/04/19 19:00,"167 Lincoln St, Atlanta, GA 30301" -190549,Apple Airpods Headphones,1,150,04/01/19 21:00,"432 Dogwood St, New York City, NY 10001" -190550,USB-C Charging Cable,1,11.95,04/29/19 10:55,"559 Lakeview St, San Francisco, CA 94016" -190551,AA Batteries (4-pack),2,3.84,04/23/19 22:55,"382 Main St, San Francisco, CA 94016" -190552,iPhone,1,700,04/06/19 08:24,"87 Lakeview St, New York City, NY 10001" -190553,Lightning Charging Cable,1,14.95,04/10/19 17:38,"548 Madison St, New York City, NY 10001" -190553,Lightning Charging Cable,1,14.95,04/10/19 17:38,"548 Madison St, New York City, NY 10001" -190554,27in 4K Gaming Monitor,1,389.99,04/13/19 15:38,"789 North St, San Francisco, CA 94016" -190555,Wired Headphones,2,11.99,04/14/19 20:37,"390 Center St, San Francisco, CA 94016" -190556,AA Batteries (4-pack),1,3.84,04/11/19 13:04,"854 4th St, San Francisco, CA 94016" -190557,Apple Airpods Headphones,1,150,04/06/19 13:46,"160 Walnut St, Los Angeles, CA 90001" -190558,Wired Headphones,1,11.99,04/19/19 02:27,"912 Cherry St, New York City, NY 10001" -190559,20in Monitor,1,109.99,04/27/19 21:35,"329 Main St, New York City, NY 10001" -190560,Flatscreen TV,1,300,04/05/19 21:46,"205 Adams St, San Francisco, CA 94016" -190561,Lightning Charging Cable,1,14.95,04/07/19 17:07,"73 Lake St, Boston, MA 02215" -190562,34in Ultrawide Monitor,1,379.99,04/02/19 21:15,"289 10th St, Los Angeles, CA 90001" -190563,USB-C Charging Cable,1,11.95,04/11/19 10:16,"984 Highland St, Portland, OR 97035" -190564,AA Batteries (4-pack),1,3.84,04/08/19 12:29,"904 Washington St, San Francisco, CA 94016" -190564,USB-C Charging Cable,1,11.95,04/08/19 12:29,"904 Washington St, San Francisco, CA 94016" -190565,34in Ultrawide Monitor,1,379.99,04/10/19 14:31,"821 Center St, Portland, OR 97035" -190566,Bose SoundSport Headphones,1,99.99,04/24/19 11:16,"71 Lake St, Seattle, WA 98101" -190567,AA Batteries (4-pack),1,3.84,04/27/19 12:36,"847 Center St, San Francisco, CA 94016" -190568,Lightning Charging Cable,2,14.95,04/03/19 21:54,"606 Main St, Boston, MA 02215" -190569,Wired Headphones,1,11.99,04/27/19 23:10,"523 9th St, Los Angeles, CA 90001" -190570,Wired Headphones,1,11.99,04/14/19 18:43,"796 Church St, New York City, NY 10001" -190571,Lightning Charging Cable,1,14.95,04/26/19 00:28,"145 Willow St, New York City, NY 10001" -190572,34in Ultrawide Monitor,1,379.99,04/02/19 11:18,"896 Lake St, New York City, NY 10001" -190573,Lightning Charging Cable,1,14.95,04/17/19 11:55,"842 Cherry St, Los Angeles, CA 90001" -190574,ThinkPad Laptop,1,999.99,04/22/19 09:03,"327 Willow St, Seattle, WA 98101" -190575,Apple Airpods Headphones,1,150,04/01/19 21:17,"304 7th St, Portland, OR 97035" -190576,iPhone,1,700,04/17/19 20:37,"219 Jackson St, Dallas, TX 75001" -190576,Lightning Charging Cable,3,14.95,04/17/19 20:37,"219 Jackson St, Dallas, TX 75001" -190577,AA Batteries (4-pack),3,3.84,04/18/19 14:39,"710 Highland St, Dallas, TX 75001" -190578,USB-C Charging Cable,1,11.95,04/13/19 06:46,"649 Highland St, Portland, OR 97035" -190579,Wired Headphones,1,11.99,04/10/19 12:23,"134 Madison St, New York City, NY 10001" -190580,Wired Headphones,1,11.99,04/13/19 20:02,"330 Lake St, Seattle, WA 98101" -190581,USB-C Charging Cable,1,11.95,04/05/19 10:55,"604 Jefferson St, Dallas, TX 75001" -190582,34in Ultrawide Monitor,1,379.99,04/24/19 14:57,"34 11th St, Boston, MA 02215" -190583,USB-C Charging Cable,1,11.95,04/27/19 20:27,"121 Willow St, Boston, MA 02215" -190584,Flatscreen TV,1,300,04/26/19 19:45,"530 4th St, Atlanta, GA 30301" -190585,iPhone,1,700,04/27/19 15:23,"631 Cedar St, San Francisco, CA 94016" -190586,Lightning Charging Cable,1,14.95,04/27/19 11:21,"495 Hickory St, Los Angeles, CA 90001" -190587,AA Batteries (4-pack),2,3.84,04/13/19 08:07,"279 14th St, San Francisco, CA 94016" -190588,Google Phone,1,600,04/14/19 09:11,"22 Maple St, Dallas, TX 75001" -190589,AA Batteries (4-pack),1,3.84,04/02/19 17:20,"937 Hickory St, San Francisco, CA 94016" -190590,USB-C Charging Cable,1,11.95,04/07/19 14:13,"844 Walnut St, Los Angeles, CA 90001" -190591,AAA Batteries (4-pack),1,2.99,04/25/19 13:46,"14 Elm St, Boston, MA 02215" -190592,Bose SoundSport Headphones,1,99.99,04/22/19 13:48,"116 Meadow St, Los Angeles, CA 90001" -190593,Macbook Pro Laptop,1,1700,04/16/19 07:40,"129 Elm St, Atlanta, GA 30301" -190594,Lightning Charging Cable,1,14.95,04/12/19 21:44,"506 Spruce St, Atlanta, GA 30301" -190595,Macbook Pro Laptop,1,1700,04/29/19 03:17,"25 Wilson St, San Francisco, CA 94016" -190596,AAA Batteries (4-pack),1,2.99,04/21/19 20:39,"183 North St, Seattle, WA 98101" -190597,iPhone,1,700,04/08/19 18:17,"915 14th St, Portland, OR 97035" -190598,USB-C Charging Cable,1,11.95,04/26/19 23:19,"300 Jackson St, Atlanta, GA 30301" -190599,AAA Batteries (4-pack),1,2.99,04/10/19 14:36,"509 1st St, New York City, NY 10001" -190600,Wired Headphones,1,11.99,04/16/19 11:01,"510 Lincoln St, New York City, NY 10001" -190601,27in FHD Monitor,1,149.99,04/30/19 23:45,"719 Lakeview St, Austin, TX 73301" -190602,27in FHD Monitor,1,149.99,04/11/19 10:24,"893 Meadow St, Los Angeles, CA 90001" -190603,Bose SoundSport Headphones,1,99.99,04/12/19 23:41,"81 Meadow St, San Francisco, CA 94016" -190604,Lightning Charging Cable,1,14.95,04/02/19 21:07,"616 14th St, San Francisco, CA 94016" -190605,Apple Airpods Headphones,1,150,04/20/19 09:10,"558 1st St, San Francisco, CA 94016" -190605,Bose SoundSport Headphones,1,99.99,04/20/19 09:10,"558 1st St, San Francisco, CA 94016" -190606,27in FHD Monitor,1,149.99,04/22/19 18:16,"807 Lincoln St, Atlanta, GA 30301" -190607,AAA Batteries (4-pack),1,2.99,04/05/19 10:19,"509 14th St, Los Angeles, CA 90001" -190608,USB-C Charging Cable,2,11.95,04/28/19 23:31,"617 5th St, Seattle, WA 98101" -190609,20in Monitor,1,109.99,04/20/19 22:41,"255 Hickory St, New York City, NY 10001" -190610,AAA Batteries (4-pack),1,2.99,04/11/19 10:54,"966 2nd St, Los Angeles, CA 90001" -190611,Wired Headphones,1,11.99,04/11/19 14:28,"519 Maple St, Los Angeles, CA 90001" -190612,Apple Airpods Headphones,1,150,04/23/19 08:31,"379 South St, San Francisco, CA 94016" -190613,Flatscreen TV,1,300,04/02/19 13:24,"528 Center St, Seattle, WA 98101" -190613,Wired Headphones,1,11.99,04/02/19 13:24,"528 Center St, Seattle, WA 98101" -190614,Apple Airpods Headphones,1,150,04/25/19 20:48,"70 Hill St, Atlanta, GA 30301" -190615,20in Monitor,1,109.99,04/08/19 18:06,"639 Ridge St, Los Angeles, CA 90001" -190616,USB-C Charging Cable,1,11.95,04/24/19 00:36,"782 1st St, San Francisco, CA 94016" -190617,Vareebadd Phone,1,400,04/08/19 14:04,"365 8th St, Austin, TX 73301" -190617,USB-C Charging Cable,1,11.95,04/08/19 14:04,"365 8th St, Austin, TX 73301" -190618,Bose SoundSport Headphones,1,99.99,04/02/19 00:37,"293 Pine St, Atlanta, GA 30301" -190619,Wired Headphones,1,11.99,04/24/19 16:48,"798 Hickory St, Los Angeles, CA 90001" -190620,Lightning Charging Cable,1,14.95,04/06/19 15:20,"957 Center St, Boston, MA 02215" -190621,Bose SoundSport Headphones,1,99.99,04/26/19 00:35,"901 Johnson St, San Francisco, CA 94016" -190622,AAA Batteries (4-pack),1,2.99,04/23/19 23:28,"532 Chestnut St, Atlanta, GA 30301" -190623,Google Phone,1,600,04/14/19 17:32,"493 Cedar St, New York City, NY 10001" -190624,Wired Headphones,1,11.99,04/01/19 11:36,"398 9th St, Los Angeles, CA 90001" -190625,Lightning Charging Cable,1,14.95,04/07/19 22:36,"718 Willow St, San Francisco, CA 94016" -190626,Apple Airpods Headphones,1,150,04/09/19 18:05,"664 Madison St, Atlanta, GA 30301" -190627,27in FHD Monitor,1,149.99,05/01/19 01:36,"482 Jefferson St, Boston, MA 02215" -190628,Apple Airpods Headphones,1,150,04/05/19 14:48,"11 14th St, Atlanta, GA 30301" -190629,USB-C Charging Cable,1,11.95,04/27/19 13:47,"120 Adams St, Portland, ME 04101" -190630,USB-C Charging Cable,1,11.95,04/19/19 17:16,"529 Maple St, Los Angeles, CA 90001" -190631,Google Phone,1,600,04/15/19 18:33,"333 Lincoln St, New York City, NY 10001" -190632,27in 4K Gaming Monitor,1,389.99,04/29/19 08:57,"535 Adams St, Dallas, TX 75001" -190633,USB-C Charging Cable,1,11.95,04/30/19 14:25,"599 4th St, San Francisco, CA 94016" -190634,Apple Airpods Headphones,1,150,04/18/19 15:54,"684 West St, Los Angeles, CA 90001" -190635,27in 4K Gaming Monitor,1,389.99,04/21/19 20:05,"510 Hickory St, Dallas, TX 75001" -190636,AA Batteries (4-pack),1,3.84,04/18/19 08:50,"738 Adams St, Austin, TX 73301" -190637,iPhone,1,700,04/14/19 19:46,"931 Adams St, San Francisco, CA 94016" -190638,Wired Headphones,1,11.99,04/23/19 17:45,"544 Washington St, Los Angeles, CA 90001" -190639,Lightning Charging Cable,2,14.95,04/18/19 15:50,"163 Ridge St, Dallas, TX 75001" -190640,Macbook Pro Laptop,1,1700,04/27/19 09:33,"146 12th St, Boston, MA 02215" -190641,USB-C Charging Cable,1,11.95,04/07/19 12:16,"607 Hickory St, Los Angeles, CA 90001" -190642,Bose SoundSport Headphones,1,99.99,04/10/19 00:11,"613 Willow St, Atlanta, GA 30301" -190643,Google Phone,1,600,04/01/19 21:08,"672 Meadow St, San Francisco, CA 94016" -190644,Apple Airpods Headphones,1,150,04/25/19 11:52,"379 Ridge St, New York City, NY 10001" -190645,USB-C Charging Cable,1,11.95,04/17/19 22:43,"284 Meadow St, New York City, NY 10001" -190645,34in Ultrawide Monitor,1,379.99,04/17/19 22:43,"284 Meadow St, New York City, NY 10001" -190646,Lightning Charging Cable,1,14.95,04/17/19 14:39,"41 12th St, San Francisco, CA 94016" -190647,Bose SoundSport Headphones,1,99.99,04/22/19 21:42,"811 10th St, Seattle, WA 98101" -190648,Bose SoundSport Headphones,1,99.99,04/20/19 10:21,"410 Highland St, New York City, NY 10001" -190649,Bose SoundSport Headphones,1,99.99,04/29/19 21:42,"357 Church St, Seattle, WA 98101" -190650,Bose SoundSport Headphones,1,99.99,04/01/19 17:53,"934 Lincoln St, Portland, OR 97035" -190651,Wired Headphones,1,11.99,04/14/19 10:59,"724 9th St, Austin, TX 73301" -190652,iPhone,1,700,04/24/19 20:07,"812 11th St, Dallas, TX 75001" -190652,Apple Airpods Headphones,1,150,04/24/19 20:07,"812 11th St, Dallas, TX 75001" -190653,Google Phone,1,600,04/07/19 16:29,"869 Dogwood St, Los Angeles, CA 90001" -190654,AAA Batteries (4-pack),2,2.99,04/22/19 09:56,"497 River St, Austin, TX 73301" -190655,Macbook Pro Laptop,1,1700,04/10/19 06:24,"681 5th St, New York City, NY 10001" -190656,27in FHD Monitor,1,149.99,04/06/19 20:38,"940 Adams St, San Francisco, CA 94016" -190657,ThinkPad Laptop,1,999.99,04/23/19 17:07,"647 Walnut St, New York City, NY 10001" -190658,AAA Batteries (4-pack),1,2.99,04/12/19 07:27,"331 Spruce St, New York City, NY 10001" -190659,Apple Airpods Headphones,1,150,04/09/19 11:54,"900 Highland St, New York City, NY 10001" -190660,USB-C Charging Cable,1,11.95,04/21/19 20:01,"707 Cherry St, Los Angeles, CA 90001" -190661,AA Batteries (4-pack),2,3.84,04/08/19 21:22,"37 11th St, Atlanta, GA 30301" -190662,Google Phone,1,600,04/04/19 08:49,"91 Ridge St, New York City, NY 10001" -190663,USB-C Charging Cable,1,11.95,04/03/19 00:04,"106 Lake St, San Francisco, CA 94016" -190664,27in FHD Monitor,1,149.99,04/03/19 11:58,"971 Lakeview St, Seattle, WA 98101" -190665,20in Monitor,1,109.99,04/15/19 10:20,"470 7th St, New York City, NY 10001" -190666,Google Phone,1,600,04/17/19 07:20,"965 Main St, Dallas, TX 75001" -190667,AAA Batteries (4-pack),1,2.99,04/17/19 07:31,"733 Hickory St, San Francisco, CA 94016" -190668,Wired Headphones,1,11.99,04/30/19 13:08,"426 Hickory St, Seattle, WA 98101" -190669,Lightning Charging Cable,1,14.95,04/10/19 10:50,"121 Spruce St, San Francisco, CA 94016" -190670,34in Ultrawide Monitor,1,379.99,04/19/19 13:44,"626 Johnson St, San Francisco, CA 94016" -190671,Apple Airpods Headphones,1,150,04/07/19 18:45,"51 2nd St, Boston, MA 02215" -190672,Bose SoundSport Headphones,1,99.99,04/11/19 14:31,"502 1st St, San Francisco, CA 94016" -190673,Bose SoundSport Headphones,1,99.99,04/21/19 17:54,"295 Cherry St, New York City, NY 10001" -190674,Macbook Pro Laptop,1,1700,04/08/19 16:19,"724 1st St, San Francisco, CA 94016" -190675,27in FHD Monitor,1,149.99,04/24/19 20:38,"258 Ridge St, Atlanta, GA 30301" -190676,AAA Batteries (4-pack),1,2.99,04/28/19 20:25,"399 Willow St, Los Angeles, CA 90001" -190677,Lightning Charging Cable,1,14.95,04/29/19 09:37,"413 Walnut St, Boston, MA 02215" -190678,AAA Batteries (4-pack),1,2.99,04/14/19 21:33,"154 Ridge St, New York City, NY 10001" -190679,Bose SoundSport Headphones,1,99.99,04/09/19 14:24,"280 Meadow St, Boston, MA 02215" -190680,USB-C Charging Cable,1,11.95,04/17/19 18:33,"582 Lincoln St, Boston, MA 02215" -190681,Apple Airpods Headphones,1,150,04/26/19 21:42,"803 Adams St, Boston, MA 02215" -190682,AA Batteries (4-pack),1,3.84,04/11/19 10:23,"758 Church St, Seattle, WA 98101" -190683,Wired Headphones,2,11.99,04/21/19 19:23,"626 Hill St, Austin, TX 73301" -190684,USB-C Charging Cable,1,11.95,04/11/19 23:21,"507 Pine St, San Francisco, CA 94016" -190685,AA Batteries (4-pack),2,3.84,04/06/19 20:20,"391 9th St, San Francisco, CA 94016" -190686,Lightning Charging Cable,1,14.95,04/15/19 17:18,"290 Chestnut St, New York City, NY 10001" -190687,AA Batteries (4-pack),1,3.84,04/15/19 04:15,"363 Jefferson St, Boston, MA 02215" -190688,20in Monitor,1,109.99,04/24/19 18:00,"910 Park St, San Francisco, CA 94016" -190689,AAA Batteries (4-pack),1,2.99,04/07/19 17:21,"653 Johnson St, New York City, NY 10001" -190690,Vareebadd Phone,1,400,04/24/19 16:58,"518 Lincoln St, New York City, NY 10001" -190691,Flatscreen TV,1,300,04/05/19 23:04,"291 Jackson St, New York City, NY 10001" -190692,Apple Airpods Headphones,1,150,04/17/19 12:23,"126 Spruce St, Boston, MA 02215" -190693,Bose SoundSport Headphones,1,99.99,04/23/19 09:49,"936 South St, San Francisco, CA 94016" -190694,AA Batteries (4-pack),1,3.84,04/10/19 17:26,"664 10th St, New York City, NY 10001" -190695,Lightning Charging Cable,1,14.95,04/08/19 20:17,"331 Cedar St, San Francisco, CA 94016" -190696,Google Phone,1,600,04/12/19 20:03,"736 River St, San Francisco, CA 94016" -190696,Bose SoundSport Headphones,1,99.99,04/12/19 20:03,"736 River St, San Francisco, CA 94016" -190697,Lightning Charging Cable,1,14.95,04/29/19 22:45,"636 Main St, New York City, NY 10001" -190698,34in Ultrawide Monitor,1,379.99,04/18/19 11:16,"859 Ridge St, San Francisco, CA 94016" -190699,AAA Batteries (4-pack),1,2.99,04/05/19 08:27,"454 6th St, Boston, MA 02215" -190700,Lightning Charging Cable,1,14.95,04/07/19 10:46,"783 13th St, San Francisco, CA 94016" -190701,AA Batteries (4-pack),1,3.84,04/03/19 15:18,"342 13th St, Boston, MA 02215" -190702,27in 4K Gaming Monitor,1,389.99,04/24/19 14:27,"598 River St, San Francisco, CA 94016" -190703,Bose SoundSport Headphones,1,99.99,04/27/19 13:40,"876 Cedar St, Los Angeles, CA 90001" -190704,Wired Headphones,2,11.99,04/24/19 11:48,"305 Madison St, Los Angeles, CA 90001" -190705,Apple Airpods Headphones,1,150,04/10/19 11:20,"551 Wilson St, San Francisco, CA 94016" -190706,Vareebadd Phone,1,400,04/12/19 09:51,"939 Park St, Boston, MA 02215" -190707,AA Batteries (4-pack),2,3.84,04/20/19 15:58,"202 River St, New York City, NY 10001" -190708,Wired Headphones,1,11.99,04/13/19 09:24,"600 Washington St, San Francisco, CA 94016" -190709,AAA Batteries (4-pack),1,2.99,04/09/19 17:57,"454 Sunset St, Seattle, WA 98101" -190710,Wired Headphones,2,11.99,04/24/19 17:39,"701 Center St, Los Angeles, CA 90001" -190711,20in Monitor,1,109.99,04/26/19 12:49,"283 Wilson St, San Francisco, CA 94016" -190712,Apple Airpods Headphones,1,150,04/11/19 22:16,"254 Chestnut St, Seattle, WA 98101" -190713,USB-C Charging Cable,1,11.95,04/16/19 15:45,"291 14th St, San Francisco, CA 94016" -190714,Apple Airpods Headphones,1,150,04/06/19 12:34,"603 1st St, San Francisco, CA 94016" -190715,Bose SoundSport Headphones,1,99.99,04/01/19 15:29,"619 North St, Dallas, TX 75001" -190716,Macbook Pro Laptop,1,1700,04/20/19 18:15,"81 11th St, New York City, NY 10001" -190717,AAA Batteries (4-pack),2,2.99,04/26/19 10:40,"576 South St, San Francisco, CA 94016" -190718,Apple Airpods Headphones,1,150,04/23/19 12:01,"735 South St, Seattle, WA 98101" -190719,AAA Batteries (4-pack),2,2.99,04/09/19 08:22,"980 Lakeview St, New York City, NY 10001" -190720,Bose SoundSport Headphones,1,99.99,04/18/19 11:30,"569 Park St, Austin, TX 73301" -190721,Lightning Charging Cable,1,14.95,04/28/19 11:28,"721 Madison St, New York City, NY 10001" -190722,27in FHD Monitor,1,149.99,04/08/19 20:56,"950 West St, Atlanta, GA 30301" -190723,Bose SoundSport Headphones,1,99.99,04/17/19 16:54,"346 West St, Seattle, WA 98101" -190724,AAA Batteries (4-pack),1,2.99,04/30/19 22:20,"181 South St, San Francisco, CA 94016" -190725,AA Batteries (4-pack),1,3.84,04/08/19 19:12,"956 Meadow St, San Francisco, CA 94016" -190726,27in FHD Monitor,1,149.99,04/14/19 20:53,"744 4th St, Boston, MA 02215" -190727,Wired Headphones,1,11.99,04/06/19 14:14,"177 Lincoln St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -190728,34in Ultrawide Monitor,1,379.99,04/26/19 20:34,"890 Elm St, Atlanta, GA 30301" -190729,ThinkPad Laptop,1,999.99,04/24/19 20:25,"88 Lincoln St, Atlanta, GA 30301" -190730,Wired Headphones,1,11.99,04/02/19 06:57,"346 Center St, Seattle, WA 98101" -190731,USB-C Charging Cable,1,11.95,04/04/19 16:28,"231 1st St, San Francisco, CA 94016" -190732,AAA Batteries (4-pack),1,2.99,04/12/19 13:46,"502 South St, Boston, MA 02215" -190733,Bose SoundSport Headphones,1,99.99,04/23/19 08:03,"391 2nd St, Los Angeles, CA 90001" -190734,Lightning Charging Cable,1,14.95,04/09/19 09:36,"468 South St, New York City, NY 10001" -190735,Macbook Pro Laptop,1,1700,04/15/19 11:10,"558 Lake St, Atlanta, GA 30301" -190736,AAA Batteries (4-pack),2,2.99,04/18/19 08:37,"880 8th St, Boston, MA 02215" -190737,Bose SoundSport Headphones,1,99.99,04/07/19 20:03,"722 Lincoln St, New York City, NY 10001" -190738,AAA Batteries (4-pack),1,2.99,04/23/19 12:41,"466 6th St, San Francisco, CA 94016" -190739,34in Ultrawide Monitor,1,379.99,04/11/19 01:56,"435 1st St, San Francisco, CA 94016" -190740,Wired Headphones,1,11.99,04/12/19 00:11,"79 Ridge St, San Francisco, CA 94016" -190741,Lightning Charging Cable,1,14.95,04/18/19 21:33,"75 8th St, San Francisco, CA 94016" -190742,27in FHD Monitor,1,149.99,04/06/19 02:11,"487 Jefferson St, San Francisco, CA 94016" -190743,Apple Airpods Headphones,1,150,04/04/19 10:59,"127 River St, New York City, NY 10001" -190744,Wired Headphones,1,11.99,04/22/19 07:40,"646 Willow St, Portland, OR 97035" -190745,AA Batteries (4-pack),1,3.84,04/18/19 13:01,"224 Madison St, New York City, NY 10001" -190746,20in Monitor,1,109.99,04/19/19 13:03,"623 Meadow St, Austin, TX 73301" -190747,Apple Airpods Headphones,1,150,04/08/19 19:38,"730 River St, San Francisco, CA 94016" -190748,Lightning Charging Cable,1,14.95,04/25/19 13:41,"347 Lincoln St, Los Angeles, CA 90001" -190749,AA Batteries (4-pack),1,3.84,04/09/19 23:47,"102 5th St, Portland, OR 97035" -190750,Wired Headphones,1,11.99,04/19/19 12:33,"384 Meadow St, San Francisco, CA 94016" -190751,Google Phone,1,600,04/23/19 00:32,"113 Lincoln St, Atlanta, GA 30301" -190752,Wired Headphones,1,11.99,04/07/19 12:38,"926 Spruce St, San Francisco, CA 94016" -190753,Macbook Pro Laptop,1,1700,04/20/19 19:01,"590 Cedar St, Boston, MA 02215" -190754,USB-C Charging Cable,1,11.95,04/05/19 11:53,"887 Sunset St, Boston, MA 02215" -190755,27in 4K Gaming Monitor,1,389.99,04/18/19 12:27,"573 6th St, Boston, MA 02215" -190756,AAA Batteries (4-pack),1,2.99,04/26/19 19:30,"308 Center St, Austin, TX 73301" -190757,Wired Headphones,1,11.99,04/08/19 11:06,"206 Cherry St, Los Angeles, CA 90001" -190758,Bose SoundSport Headphones,1,99.99,04/17/19 09:17,"799 Lakeview St, San Francisco, CA 94016" -190759,Bose SoundSport Headphones,1,99.99,04/13/19 14:47,"841 Jefferson St, Los Angeles, CA 90001" -190760,Apple Airpods Headphones,1,150,04/01/19 17:29,"459 Church St, Seattle, WA 98101" -190761,34in Ultrawide Monitor,1,379.99,04/24/19 21:57,"849 Main St, Boston, MA 02215" -190762,Bose SoundSport Headphones,1,99.99,04/07/19 12:05,"780 Willow St, San Francisco, CA 94016" -190763,Apple Airpods Headphones,1,150,04/04/19 21:38,"338 Sunset St, New York City, NY 10001" -190764,iPhone,1,700,04/28/19 15:12,"355 Park St, Los Angeles, CA 90001" -190765,Wired Headphones,1,11.99,04/22/19 12:14,"147 Sunset St, San Francisco, CA 94016" -190766,27in FHD Monitor,1,149.99,04/30/19 17:01,"246 1st St, Los Angeles, CA 90001" -190767,Vareebadd Phone,1,400,04/17/19 14:56,"55 Church St, Atlanta, GA 30301" -190768,USB-C Charging Cable,1,11.95,04/20/19 18:35,"56 6th St, Los Angeles, CA 90001" -190769,LG Washing Machine,1,600.0,04/07/19 19:12,"84 Hickory St, Seattle, WA 98101" -190770,Lightning Charging Cable,1,14.95,04/07/19 14:16,"61 Jackson St, Dallas, TX 75001" -190771,AA Batteries (4-pack),1,3.84,04/27/19 06:10,"344 Madison St, Atlanta, GA 30301" -190772,Wired Headphones,1,11.99,04/23/19 13:32,"760 Walnut St, San Francisco, CA 94016" -190773,USB-C Charging Cable,1,11.95,04/27/19 06:05,"456 Wilson St, Portland, OR 97035" -190774,34in Ultrawide Monitor,1,379.99,04/27/19 19:17,"842 4th St, Los Angeles, CA 90001" -190775,AAA Batteries (4-pack),1,2.99,04/17/19 18:42,"600 Cedar St, Boston, MA 02215" -190776,Apple Airpods Headphones,1,150,04/13/19 13:55,"130 Jackson St, San Francisco, CA 94016" -190777,Bose SoundSport Headphones,1,99.99,04/29/19 11:25,"927 Wilson St, Seattle, WA 98101" -190778,Macbook Pro Laptop,1,1700,04/24/19 10:11,"540 Meadow St, Seattle, WA 98101" -190779,AA Batteries (4-pack),1,3.84,04/24/19 17:43,"877 Lincoln St, San Francisco, CA 94016" -190780,USB-C Charging Cable,1,11.95,04/18/19 12:05,"701 Lake St, Boston, MA 02215" -190781,27in 4K Gaming Monitor,1,389.99,04/05/19 11:31,"730 Hill St, San Francisco, CA 94016" -190782,AAA Batteries (4-pack),1,2.99,04/29/19 21:52,"804 South St, Seattle, WA 98101" -190783,Lightning Charging Cable,1,14.95,04/13/19 17:55,"475 Sunset St, San Francisco, CA 94016" -190784,Lightning Charging Cable,1,14.95,04/08/19 17:41,"440 8th St, Dallas, TX 75001" -190785,Wired Headphones,1,11.99,04/05/19 12:21,"304 West St, Dallas, TX 75001" -190786,Lightning Charging Cable,1,14.95,04/15/19 14:22,"804 14th St, Dallas, TX 75001" -190787,Lightning Charging Cable,1,14.95,04/29/19 16:01,"513 Ridge St, New York City, NY 10001" -190788,27in FHD Monitor,1,149.99,04/30/19 11:56,"439 6th St, Seattle, WA 98101" -190789,Flatscreen TV,1,300,04/26/19 19:37,"455 North St, San Francisco, CA 94016" -190790,USB-C Charging Cable,1,11.95,04/10/19 09:10,"334 8th St, Austin, TX 73301" -190791,AAA Batteries (4-pack),2,2.99,04/28/19 19:18,"3 Jefferson St, Seattle, WA 98101" -190792,USB-C Charging Cable,1,11.95,04/30/19 20:53,"215 Highland St, New York City, NY 10001" -190793,Apple Airpods Headphones,1,150,04/03/19 21:05,"860 8th St, Atlanta, GA 30301" -190794,USB-C Charging Cable,1,11.95,04/14/19 21:34,"328 Park St, Seattle, WA 98101" -190795,USB-C Charging Cable,1,11.95,04/25/19 16:53,"706 5th St, San Francisco, CA 94016" -190796,27in FHD Monitor,1,149.99,04/15/19 22:20,"594 7th St, San Francisco, CA 94016" -190797,Wired Headphones,1,11.99,04/12/19 09:16,"689 Walnut St, Los Angeles, CA 90001" -190798,AAA Batteries (4-pack),2,2.99,04/01/19 18:44,"29 7th St, Portland, ME 04101" -190799,AA Batteries (4-pack),3,3.84,04/08/19 22:34,"335 Pine St, Seattle, WA 98101" -190800,USB-C Charging Cable,2,11.95,04/05/19 22:17,"632 Park St, San Francisco, CA 94016" -190801,AA Batteries (4-pack),1,3.84,04/14/19 15:43,"188 Chestnut St, Dallas, TX 75001" -190802,AAA Batteries (4-pack),2,2.99,04/03/19 22:26,"183 Hickory St, Dallas, TX 75001" -190803,USB-C Charging Cable,3,11.95,04/28/19 16:26,"5 Main St, Atlanta, GA 30301" -190804,Lightning Charging Cable,1,14.95,04/29/19 14:48,"951 Spruce St, Dallas, TX 75001" -190805,Apple Airpods Headphones,1,150,04/10/19 15:14,"226 North St, Los Angeles, CA 90001" -190806,Wired Headphones,1,11.99,04/07/19 13:43,"8 Main St, Dallas, TX 75001" -190807,27in 4K Gaming Monitor,1,389.99,04/24/19 10:23,"988 Jefferson St, Dallas, TX 75001" -190808,ThinkPad Laptop,1,999.99,04/13/19 21:34,"680 Walnut St, New York City, NY 10001" -190809,iPhone,1,700,04/30/19 14:42,"585 Chestnut St, San Francisco, CA 94016" -190810,AA Batteries (4-pack),2,3.84,04/29/19 17:53,"566 Hill St, Los Angeles, CA 90001" -190811,Bose SoundSport Headphones,1,99.99,04/21/19 18:46,"962 Lake St, Austin, TX 73301" -190812,27in FHD Monitor,1,149.99,04/13/19 11:00,"986 Washington St, New York City, NY 10001" -190813,Apple Airpods Headphones,1,150,04/29/19 01:15,"602 Spruce St, Los Angeles, CA 90001" -190814,Wired Headphones,1,11.99,04/06/19 03:03,"96 Cedar St, Atlanta, GA 30301" -190815,USB-C Charging Cable,1,11.95,04/09/19 20:57,"495 Forest St, Los Angeles, CA 90001" -190816,AA Batteries (4-pack),2,3.84,04/06/19 18:04,"446 5th St, New York City, NY 10001" -190817,Wired Headphones,1,11.99,04/02/19 20:07,"74 South St, Los Angeles, CA 90001" -190818,Apple Airpods Headphones,1,150,04/02/19 21:49,"762 12th St, Boston, MA 02215" -190819,AAA Batteries (4-pack),1,2.99,04/15/19 07:12,"987 Center St, New York City, NY 10001" -190820,Wired Headphones,1,11.99,04/20/19 15:00,"532 Maple St, Boston, MA 02215" -190821,Bose SoundSport Headphones,1,99.99,04/11/19 13:05,"395 Cedar St, San Francisco, CA 94016" -190822,20in Monitor,1,109.99,04/10/19 12:09,"175 Center St, Portland, ME 04101" -190823,USB-C Charging Cable,1,11.95,04/11/19 04:00,"954 Sunset St, New York City, NY 10001" -190824,27in FHD Monitor,1,149.99,04/27/19 15:19,"240 Park St, New York City, NY 10001" -190825,Wired Headphones,1,11.99,04/20/19 16:05,"591 North St, Austin, TX 73301" -190826,27in 4K Gaming Monitor,1,389.99,04/28/19 21:17,"111 Main St, San Francisco, CA 94016" -190827,Vareebadd Phone,1,400,04/18/19 12:38,"447 9th St, Seattle, WA 98101" -190828,Wired Headphones,1,11.99,04/07/19 10:59,"222 6th St, San Francisco, CA 94016" -190829,AAA Batteries (4-pack),1,2.99,04/15/19 18:36,"925 South St, San Francisco, CA 94016" -190830,20in Monitor,1,109.99,04/01/19 13:35,"821 8th St, Seattle, WA 98101" -190831,Apple Airpods Headphones,1,150,04/07/19 12:48,"108 Spruce St, New York City, NY 10001" -190832,Wired Headphones,1,11.99,04/10/19 10:13,"478 4th St, Los Angeles, CA 90001" -190833,Apple Airpods Headphones,1,150,04/03/19 20:21,"111 14th St, San Francisco, CA 94016" -190834,Vareebadd Phone,1,400,04/25/19 19:53,"506 Jackson St, New York City, NY 10001" -190835,Apple Airpods Headphones,1,150,04/30/19 09:36,"58 Willow St, Los Angeles, CA 90001" -190836,ThinkPad Laptop,1,999.99,04/06/19 12:28,"136 Cedar St, Austin, TX 73301" -190837,iPhone,1,700,04/07/19 14:09,"379 Church St, San Francisco, CA 94016" -190838,AA Batteries (4-pack),5,3.84,04/13/19 12:59,"787 Main St, Boston, MA 02215" -190839,USB-C Charging Cable,1,11.95,04/14/19 18:32,"382 11th St, Dallas, TX 75001" -190840,iPhone,1,700,04/30/19 17:25,"379 Willow St, Seattle, WA 98101" -190840,Lightning Charging Cable,1,14.95,04/30/19 17:25,"379 Willow St, Seattle, WA 98101" -190841,AA Batteries (4-pack),1,3.84,04/12/19 20:52,"973 River St, San Francisco, CA 94016" -190842,34in Ultrawide Monitor,1,379.99,04/12/19 15:32,"411 Wilson St, Portland, OR 97035" -190843,Wired Headphones,1,11.99,04/21/19 20:43,"83 Jefferson St, Dallas, TX 75001" -190844,AA Batteries (4-pack),1,3.84,04/18/19 18:51,"173 Park St, San Francisco, CA 94016" -190845,Flatscreen TV,1,300,04/10/19 20:59,"452 Meadow St, Boston, MA 02215" -190846,Bose SoundSport Headphones,1,99.99,04/01/19 10:23,"756 Elm St, New York City, NY 10001" -190847,AA Batteries (4-pack),1,3.84,04/20/19 16:08,"297 Willow St, San Francisco, CA 94016" -190848,USB-C Charging Cable,1,11.95,04/26/19 15:11,"255 Elm St, San Francisco, CA 94016" -190849,Apple Airpods Headphones,1,150,04/16/19 20:51,"12 Adams St, San Francisco, CA 94016" -190850,ThinkPad Laptop,1,999.99,04/28/19 12:27,"796 Hickory St, Portland, OR 97035" -190851,Google Phone,1,600,04/07/19 14:50,"292 Washington St, Boston, MA 02215" -190851,USB-C Charging Cable,1,11.95,04/07/19 14:50,"292 Washington St, Boston, MA 02215" -190852,34in Ultrawide Monitor,1,379.99,04/11/19 09:18,"753 12th St, San Francisco, CA 94016" -190853,20in Monitor,1,109.99,04/23/19 12:38,"12 Lake St, San Francisco, CA 94016" -190853,USB-C Charging Cable,1,11.95,04/23/19 12:38,"12 Lake St, San Francisco, CA 94016" -190854,USB-C Charging Cable,1,11.95,04/04/19 18:52,"747 Willow St, Atlanta, GA 30301" -190855,Macbook Pro Laptop,1,1700,04/24/19 11:00,"200 6th St, Atlanta, GA 30301" -190856,Flatscreen TV,1,300,04/06/19 10:41,"937 Pine St, Austin, TX 73301" -190857,Google Phone,1,600,04/24/19 00:05,"733 2nd St, San Francisco, CA 94016" -190858,USB-C Charging Cable,1,11.95,04/12/19 19:37,"685 1st St, San Francisco, CA 94016" -190859,Apple Airpods Headphones,1,150,04/24/19 23:31,"202 Hill St, Atlanta, GA 30301" -190860,Wired Headphones,1,11.99,04/21/19 08:15,"81 South St, New York City, NY 10001" -190861,34in Ultrawide Monitor,1,379.99,04/10/19 02:07,"455 Lake St, San Francisco, CA 94016" -190862,Flatscreen TV,1,300,04/15/19 11:38,"604 Cedar St, San Francisco, CA 94016" -190862,27in FHD Monitor,1,149.99,04/15/19 11:38,"604 Cedar St, San Francisco, CA 94016" -190863,iPhone,1,700,04/27/19 12:44,"297 14th St, Dallas, TX 75001" -190863,Wired Headphones,1,11.99,04/27/19 12:44,"297 14th St, Dallas, TX 75001" -190864,27in 4K Gaming Monitor,1,389.99,04/01/19 20:59,"631 1st St, San Francisco, CA 94016" -190865,AAA Batteries (4-pack),1,2.99,04/19/19 10:49,"990 South St, San Francisco, CA 94016" -190866,AAA Batteries (4-pack),1,2.99,04/30/19 12:53,"284 Walnut St, San Francisco, CA 94016" -190867,AA Batteries (4-pack),1,3.84,04/30/19 10:51,"299 9th St, San Francisco, CA 94016" -190868,USB-C Charging Cable,1,11.95,04/28/19 22:26,"510 7th St, Seattle, WA 98101" -190869,USB-C Charging Cable,1,11.95,04/08/19 22:07,"642 Madison St, San Francisco, CA 94016" -190870,34in Ultrawide Monitor,1,379.99,04/29/19 14:10,"141 Wilson St, Atlanta, GA 30301" -190871,Google Phone,1,600,04/12/19 15:14,"208 Lakeview St, Seattle, WA 98101" -190872,AA Batteries (4-pack),2,3.84,04/28/19 20:47,"979 Jackson St, Portland, OR 97035" -190873,Bose SoundSport Headphones,1,99.99,04/30/19 16:55,"48 4th St, San Francisco, CA 94016" -190874,AA Batteries (4-pack),2,3.84,04/01/19 12:21,"151 Elm St, San Francisco, CA 94016" -190875,34in Ultrawide Monitor,1,379.99,04/17/19 05:43,"601 1st St, Portland, OR 97035" -190876,Lightning Charging Cable,1,14.95,04/14/19 20:01,"941 Highland St, New York City, NY 10001" -190877,AA Batteries (4-pack),1,3.84,04/22/19 14:53,"295 Ridge St, San Francisco, CA 94016" -190878,Wired Headphones,1,11.99,04/01/19 11:38,"280 Dogwood St, San Francisco, CA 94016" -190879,AAA Batteries (4-pack),1,2.99,04/21/19 10:15,"136 Johnson St, Seattle, WA 98101" -190880,iPhone,1,700,04/15/19 11:36,"625 Hickory St, San Francisco, CA 94016" -190880,Lightning Charging Cable,1,14.95,04/15/19 11:36,"625 Hickory St, San Francisco, CA 94016" -190881,Lightning Charging Cable,1,14.95,04/05/19 09:35,"600 Jackson St, Austin, TX 73301" -190882,Google Phone,1,600,04/07/19 13:04,"489 1st St, New York City, NY 10001" -190883,AAA Batteries (4-pack),1,2.99,04/07/19 12:23,"582 14th St, Atlanta, GA 30301" -190884,27in FHD Monitor,1,149.99,04/09/19 09:46,"564 Cherry St, New York City, NY 10001" -190885,AA Batteries (4-pack),2,3.84,04/12/19 16:38,"249 Dogwood St, San Francisco, CA 94016" -190886,Wired Headphones,1,11.99,04/18/19 13:38,"141 Lincoln St, San Francisco, CA 94016" -190887,20in Monitor,1,109.99,04/28/19 10:46,"934 Wilson St, Boston, MA 02215" -190888,USB-C Charging Cable,1,11.95,04/19/19 18:53,"30 South St, Atlanta, GA 30301" -190889,AAA Batteries (4-pack),1,2.99,04/04/19 19:00,"547 1st St, Austin, TX 73301" -190890,34in Ultrawide Monitor,1,379.99,04/03/19 16:36,"886 Cedar St, Atlanta, GA 30301" -190891,Bose SoundSport Headphones,1,99.99,04/16/19 05:42,"632 North St, San Francisco, CA 94016" -190892,USB-C Charging Cable,1,11.95,04/29/19 04:29,"710 Lakeview St, San Francisco, CA 94016" -190893,AA Batteries (4-pack),2,3.84,04/22/19 00:14,"349 8th St, San Francisco, CA 94016" -190894,Lightning Charging Cable,1,14.95,04/19/19 18:51,"417 7th St, Portland, OR 97035" -190895,ThinkPad Laptop,1,999.99,04/04/19 16:30,"891 Lincoln St, Los Angeles, CA 90001" -190896,AAA Batteries (4-pack),4,2.99,04/29/19 13:31,"499 11th St, San Francisco, CA 94016" -190897,Wired Headphones,1,11.99,04/16/19 13:50,"856 Lakeview St, San Francisco, CA 94016" -190898,AA Batteries (4-pack),2,3.84,04/17/19 09:25,"531 Spruce St, Austin, TX 73301" -190899,Lightning Charging Cable,1,14.95,04/26/19 23:04,"581 13th St, Seattle, WA 98101" -190900,Apple Airpods Headphones,1,150,04/08/19 21:50,"582 11th St, New York City, NY 10001" -190900,Wired Headphones,1,11.99,04/08/19 21:50,"582 11th St, New York City, NY 10001" -,,,,, -190901,ThinkPad Laptop,1,999.99,04/08/19 18:00,"809 South St, San Francisco, CA 94016" -190902,Apple Airpods Headphones,1,150,04/04/19 21:20,"71 11th St, Atlanta, GA 30301" -190903,Macbook Pro Laptop,1,1700,04/02/19 19:45,"939 Maple St, New York City, NY 10001" -190904,Lightning Charging Cable,1,14.95,04/30/19 10:02,"348 Madison St, Portland, OR 97035" -190905,AAA Batteries (4-pack),2,2.99,04/07/19 04:33,"354 Pine St, San Francisco, CA 94016" -190906,AA Batteries (4-pack),2,3.84,04/25/19 15:27,"210 West St, San Francisco, CA 94016" -190907,Bose SoundSport Headphones,1,99.99,04/14/19 20:40,"921 5th St, Dallas, TX 75001" -190908,LG Dryer,1,600.0,04/09/19 14:38,"806 11th St, Austin, TX 73301" -190909,Lightning Charging Cable,1,14.95,04/21/19 15:09,"861 Wilson St, Boston, MA 02215" -190910,AAA Batteries (4-pack),1,2.99,04/03/19 15:37,"232 Meadow St, Los Angeles, CA 90001" -190911,27in 4K Gaming Monitor,1,389.99,04/05/19 12:28,"900 Church St, San Francisco, CA 94016" -190912,Macbook Pro Laptop,1,1700,04/28/19 16:22,"427 7th St, Los Angeles, CA 90001" -190913,AAA Batteries (4-pack),2,2.99,04/23/19 13:44,"424 Lincoln St, Seattle, WA 98101" -190914,AAA Batteries (4-pack),2,2.99,04/23/19 21:45,"467 10th St, New York City, NY 10001" -190915,Bose SoundSport Headphones,1,99.99,04/07/19 08:32,"764 Hickory St, New York City, NY 10001" -190916,Apple Airpods Headphones,1,150,04/04/19 15:43,"883 10th St, San Francisco, CA 94016" -190917,Apple Airpods Headphones,1,150,04/07/19 20:02,"540 Chestnut St, Portland, OR 97035" -190918,Wired Headphones,1,11.99,04/20/19 09:23,"89 Park St, Boston, MA 02215" -190919,USB-C Charging Cable,1,11.95,04/23/19 22:49,"336 7th St, Los Angeles, CA 90001" -190920,34in Ultrawide Monitor,1,379.99,04/28/19 19:43,"649 Park St, New York City, NY 10001" -190921,27in FHD Monitor,1,149.99,04/24/19 15:17,"392 River St, Los Angeles, CA 90001" -190922,Apple Airpods Headphones,1,150,04/25/19 14:03,"111 North St, Boston, MA 02215" -190923,34in Ultrawide Monitor,1,379.99,04/24/19 18:09,"32 Cedar St, San Francisco, CA 94016" -190924,ThinkPad Laptop,1,999.99,04/22/19 21:09,"493 Spruce St, Seattle, WA 98101" -190925,Wired Headphones,1,11.99,04/25/19 17:55,"43 Park St, New York City, NY 10001" -190926,27in FHD Monitor,1,149.99,04/05/19 14:17,"229 Walnut St, Dallas, TX 75001" -190927,USB-C Charging Cable,1,11.95,04/10/19 22:19,"438 Meadow St, New York City, NY 10001" -190928,Lightning Charging Cable,1,14.95,04/22/19 22:06,"244 Wilson St, New York City, NY 10001" -190929,AA Batteries (4-pack),2,3.84,04/05/19 12:33,"790 7th St, San Francisco, CA 94016" -190930,27in 4K Gaming Monitor,1,389.99,04/18/19 18:44,"400 Lincoln St, Boston, MA 02215" -190931,Wired Headphones,1,11.99,04/11/19 11:15,"518 Hill St, Seattle, WA 98101" -190932,Wired Headphones,1,11.99,04/18/19 22:35,"593 Ridge St, San Francisco, CA 94016" -190933,AAA Batteries (4-pack),1,2.99,04/17/19 08:03,"463 Dogwood St, Portland, OR 97035" -190934,Google Phone,1,600,04/13/19 05:33,"896 Lake St, Dallas, TX 75001" -190935,Bose SoundSport Headphones,1,99.99,04/13/19 15:29,"576 North St, Los Angeles, CA 90001" -190936,Wired Headphones,1,11.99,04/12/19 18:24,"936 Jefferson St, Portland, ME 04101" -190937,Wired Headphones,1,11.99,04/20/19 21:14,"2 5th St, San Francisco, CA 94016" -190938,USB-C Charging Cable,1,11.95,04/10/19 16:20,"499 4th St, San Francisco, CA 94016" -190939,Wired Headphones,1,11.99,04/01/19 13:11,"329 2nd St, Boston, MA 02215" -190940,USB-C Charging Cable,1,11.95,04/24/19 12:32,"740 1st St, New York City, NY 10001" -190941,Wired Headphones,2,11.99,04/10/19 19:03,"958 Sunset St, Seattle, WA 98101" -190942,iPhone,1,700,04/09/19 20:41,"308 Willow St, Dallas, TX 75001" -190943,AA Batteries (4-pack),1,3.84,04/28/19 17:48,"65 2nd St, Los Angeles, CA 90001" -190944,Lightning Charging Cable,1,14.95,04/04/19 00:36,"958 Lake St, Portland, ME 04101" -190945,USB-C Charging Cable,1,11.95,04/09/19 15:17,"966 Main St, Boston, MA 02215" -190946,Wired Headphones,1,11.99,04/01/19 15:38,"575 9th St, Dallas, TX 75001" -190947,Wired Headphones,1,11.99,04/01/19 22:15,"672 Lincoln St, San Francisco, CA 94016" -190948,Vareebadd Phone,1,400,04/23/19 18:27,"880 9th St, Boston, MA 02215" -190949,Bose SoundSport Headphones,1,99.99,04/15/19 18:43,"48 Ridge St, Boston, MA 02215" -190950,Apple Airpods Headphones,1,150,04/12/19 12:44,"723 Johnson St, Los Angeles, CA 90001" -190951,USB-C Charging Cable,1,11.95,04/24/19 09:47,"515 12th St, Portland, OR 97035" -190952,27in FHD Monitor,1,149.99,04/01/19 21:45,"281 Lincoln St, Los Angeles, CA 90001" -190953,Wired Headphones,2,11.99,04/28/19 12:38,"704 Cedar St, Los Angeles, CA 90001" -190954,27in 4K Gaming Monitor,1,389.99,04/24/19 06:14,"947 Hill St, San Francisco, CA 94016" -190955,USB-C Charging Cable,1,11.95,04/10/19 13:15,"58 River St, New York City, NY 10001" -190956,AA Batteries (4-pack),1,3.84,04/08/19 09:32,"332 River St, Portland, OR 97035" -190957,AAA Batteries (4-pack),1,2.99,04/23/19 07:34,"392 Hill St, Atlanta, GA 30301" -190958,AA Batteries (4-pack),1,3.84,04/23/19 10:28,"502 Cherry St, Boston, MA 02215" -190959,Bose SoundSport Headphones,1,99.99,04/08/19 15:47,"921 5th St, Dallas, TX 75001" -190960,Wired Headphones,1,11.99,04/02/19 19:45,"613 Jackson St, Seattle, WA 98101" -190961,Wired Headphones,1,11.99,04/10/19 07:52,"724 Johnson St, San Francisco, CA 94016" -190962,27in FHD Monitor,1,149.99,04/25/19 22:21,"707 5th St, New York City, NY 10001" -190963,AA Batteries (4-pack),1,3.84,04/05/19 09:17,"16 River St, Atlanta, GA 30301" -190964,Apple Airpods Headphones,1,150,04/15/19 20:57,"450 9th St, Seattle, WA 98101" -190965,27in 4K Gaming Monitor,1,389.99,04/11/19 18:09,"342 Meadow St, New York City, NY 10001" -190966,Lightning Charging Cable,1,14.95,04/30/19 12:22,"881 Hill St, Austin, TX 73301" -190967,34in Ultrawide Monitor,1,379.99,04/27/19 23:02,"603 Walnut St, San Francisco, CA 94016" -190968,USB-C Charging Cable,1,11.95,04/04/19 13:12,"207 Washington St, New York City, NY 10001" -190969,Apple Airpods Headphones,1,150,04/28/19 09:55,"793 Hickory St, New York City, NY 10001" -190970,27in 4K Gaming Monitor,1,389.99,04/16/19 16:11,"728 Elm St, San Francisco, CA 94016" -190971,Macbook Pro Laptop,1,1700,04/24/19 09:27,"687 Park St, Los Angeles, CA 90001" -190972,27in 4K Gaming Monitor,1,389.99,04/21/19 11:17,"395 Chestnut St, Boston, MA 02215" -190973,USB-C Charging Cable,1,11.95,04/01/19 10:08,"617 Cherry St, Austin, TX 73301" -190974,USB-C Charging Cable,1,11.95,04/03/19 09:47,"442 Elm St, San Francisco, CA 94016" -190975,AAA Batteries (4-pack),2,2.99,04/16/19 12:51,"246 Pine St, Los Angeles, CA 90001" -190976,AAA Batteries (4-pack),1,2.99,04/13/19 18:13,"471 West St, Boston, MA 02215" -190977,Lightning Charging Cable,1,14.95,04/22/19 23:42,"257 4th St, San Francisco, CA 94016" -190978,Flatscreen TV,1,300,04/24/19 07:41,"683 Maple St, San Francisco, CA 94016" -190979,Apple Airpods Headphones,1,150,04/25/19 00:00,"983 Pine St, Seattle, WA 98101" -190980,AAA Batteries (4-pack),1,2.99,04/11/19 21:50,"79 Johnson St, New York City, NY 10001" -190981,27in 4K Gaming Monitor,1,389.99,04/29/19 04:24,"504 Center St, San Francisco, CA 94016" -190982,LG Washing Machine,1,600.0,04/02/19 14:17,"574 River St, San Francisco, CA 94016" -190983,AAA Batteries (4-pack),1,2.99,04/13/19 11:45,"24 10th St, New York City, NY 10001" -190984,Apple Airpods Headphones,1,150,04/06/19 21:02,"827 4th St, Los Angeles, CA 90001" -190985,Bose SoundSport Headphones,1,99.99,04/07/19 18:54,"23 Park St, Los Angeles, CA 90001" -190986,ThinkPad Laptop,1,999.99,04/09/19 19:41,"860 Sunset St, San Francisco, CA 94016" -190987,AAA Batteries (4-pack),1,2.99,04/02/19 02:54,"136 Cedar St, Boston, MA 02215" -190988,USB-C Charging Cable,1,11.95,04/12/19 17:23,"643 Washington St, New York City, NY 10001" -190989,USB-C Charging Cable,1,11.95,04/25/19 15:27,"453 Church St, Austin, TX 73301" -190990,Lightning Charging Cable,1,14.95,04/02/19 09:51,"866 Elm St, Boston, MA 02215" -190991,Apple Airpods Headphones,1,150,04/21/19 14:29,"133 6th St, Boston, MA 02215" -190992,AA Batteries (4-pack),1,3.84,04/06/19 19:17,"343 1st St, Los Angeles, CA 90001" -190993,Wired Headphones,2,11.99,04/28/19 09:13,"800 Ridge St, Atlanta, GA 30301" -190994,34in Ultrawide Monitor,1,379.99,04/27/19 08:35,"2 River St, New York City, NY 10001" -190995,Lightning Charging Cable,1,14.95,04/08/19 19:34,"851 Adams St, New York City, NY 10001" -190996,27in 4K Gaming Monitor,1,389.99,04/11/19 16:35,"163 Lake St, Austin, TX 73301" -190997,AA Batteries (4-pack),1,3.84,04/02/19 12:47,"312 8th St, New York City, NY 10001" -190998,AAA Batteries (4-pack),1,2.99,04/22/19 15:03,"640 Lakeview St, New York City, NY 10001" -190999,ThinkPad Laptop,1,999.99,04/07/19 14:34,"176 10th St, San Francisco, CA 94016" -191000,Apple Airpods Headphones,1,150,04/11/19 20:09,"646 Hill St, Boston, MA 02215" -191001,Macbook Pro Laptop,1,1700,04/11/19 19:19,"640 West St, Dallas, TX 75001" -191002,Wired Headphones,1,11.99,04/02/19 19:58,"571 Walnut St, New York City, NY 10001" -191003,Lightning Charging Cable,1,14.95,04/12/19 20:05,"651 8th St, Dallas, TX 75001" -191004,AA Batteries (4-pack),3,3.84,04/20/19 22:34,"978 10th St, San Francisco, CA 94016" -191005,34in Ultrawide Monitor,1,379.99,04/15/19 18:48,"444 Johnson St, New York City, NY 10001" -191006,AAA Batteries (4-pack),2,2.99,04/02/19 16:14,"437 Forest St, Los Angeles, CA 90001" -191007,AAA Batteries (4-pack),1,2.99,04/04/19 15:17,"62 10th St, San Francisco, CA 94016" -191008,USB-C Charging Cable,1,11.95,04/07/19 20:56,"329 8th St, Los Angeles, CA 90001" -191009,AAA Batteries (4-pack),1,2.99,04/11/19 09:19,"509 Sunset St, Los Angeles, CA 90001" -191010,USB-C Charging Cable,1,11.95,04/29/19 13:58,"714 Dogwood St, Portland, OR 97035" -191011,34in Ultrawide Monitor,1,379.99,04/06/19 05:39,"962 7th St, San Francisco, CA 94016" -191012,iPhone,1,700,04/23/19 19:02,"6 Forest St, San Francisco, CA 94016" -191012,Lightning Charging Cable,1,14.95,04/23/19 19:02,"6 Forest St, San Francisco, CA 94016" -191013,Lightning Charging Cable,1,14.95,04/29/19 17:09,"209 10th St, San Francisco, CA 94016" -191014,ThinkPad Laptop,1,999.99,04/08/19 19:59,"690 Walnut St, San Francisco, CA 94016" -191015,USB-C Charging Cable,1,11.95,04/29/19 17:57,"992 9th St, Seattle, WA 98101" -191016,27in FHD Monitor,1,149.99,04/25/19 10:19,"502 North St, Boston, MA 02215" -191017,Lightning Charging Cable,1,14.95,04/03/19 11:37,"933 Center St, Los Angeles, CA 90001" -191018,ThinkPad Laptop,1,999.99,04/28/19 14:06,"336 11th St, Dallas, TX 75001" -191019,Google Phone,1,600,04/17/19 15:28,"225 8th St, Seattle, WA 98101" -191019,USB-C Charging Cable,1,11.95,04/17/19 15:28,"225 8th St, Seattle, WA 98101" -191020,AAA Batteries (4-pack),1,2.99,04/01/19 13:13,"64 Spruce St, Atlanta, GA 30301" -191021,Apple Airpods Headphones,1,150,04/06/19 02:04,"434 12th St, San Francisco, CA 94016" -191022,USB-C Charging Cable,1,11.95,04/30/19 15:28,"175 1st St, San Francisco, CA 94016" -191023,AAA Batteries (4-pack),1,2.99,04/22/19 07:27,"75 11th St, Dallas, TX 75001" -191024,AAA Batteries (4-pack),1,2.99,04/11/19 15:46,"222 11th St, New York City, NY 10001" -191025,AAA Batteries (4-pack),1,2.99,04/08/19 17:43,"507 6th St, Los Angeles, CA 90001" -191026,AA Batteries (4-pack),3,3.84,04/15/19 22:28,"169 5th St, San Francisco, CA 94016" -191027,Lightning Charging Cable,1,14.95,04/25/19 11:07,"432 Highland St, San Francisco, CA 94016" -191028,Bose SoundSport Headphones,1,99.99,04/27/19 17:58,"730 Highland St, Los Angeles, CA 90001" -191029,34in Ultrawide Monitor,1,379.99,04/05/19 13:09,"510 Lake St, Los Angeles, CA 90001" -191030,Vareebadd Phone,1,400,04/29/19 17:12,"240 Church St, Dallas, TX 75001" -191030,USB-C Charging Cable,1,11.95,04/29/19 17:12,"240 Church St, Dallas, TX 75001" -191031,ThinkPad Laptop,1,999.99,04/03/19 12:43,"851 Pine St, Dallas, TX 75001" -191032,20in Monitor,1,109.99,04/20/19 21:44,"674 14th St, Atlanta, GA 30301" -191033,AAA Batteries (4-pack),2,2.99,04/30/19 11:54,"627 Meadow St, New York City, NY 10001" -191034,Wired Headphones,1,11.99,04/13/19 07:03,"679 Hill St, Portland, OR 97035" -191035,Flatscreen TV,1,300,04/09/19 19:41,"888 Cedar St, New York City, NY 10001" -191036,Lightning Charging Cable,1,14.95,04/21/19 11:11,"17 Park St, Portland, OR 97035" -191037,20in Monitor,1,109.99,04/27/19 07:48,"393 14th St, Seattle, WA 98101" -191038,Flatscreen TV,1,300,04/05/19 23:47,"494 11th St, San Francisco, CA 94016" -191039,AA Batteries (4-pack),1,3.84,04/13/19 12:27,"816 Dogwood St, San Francisco, CA 94016" -191040,ThinkPad Laptop,1,999.99,04/23/19 21:15,"830 Chestnut St, San Francisco, CA 94016" -191041,Macbook Pro Laptop,1,1700,04/20/19 11:43,"15 West St, San Francisco, CA 94016" -191042,Vareebadd Phone,1,400,04/01/19 10:36,"716 Lincoln St, San Francisco, CA 94016" -191042,USB-C Charging Cable,1,11.95,04/01/19 10:36,"716 Lincoln St, San Francisco, CA 94016" -191043,27in 4K Gaming Monitor,1,389.99,04/12/19 16:40,"499 Lake St, Los Angeles, CA 90001" -191044,Macbook Pro Laptop,1,1700,04/06/19 09:51,"503 Sunset St, Seattle, WA 98101" -191045,Lightning Charging Cable,1,14.95,04/22/19 14:09,"623 Dogwood St, San Francisco, CA 94016" -191046,AA Batteries (4-pack),1,3.84,04/16/19 14:11,"120 9th St, Boston, MA 02215" -191047,iPhone,1,700,04/09/19 08:52,"988 Elm St, Los Angeles, CA 90001" -191048,Flatscreen TV,1,300,04/12/19 21:08,"484 Lake St, Portland, OR 97035" -191049,LG Dryer,1,600.0,04/14/19 14:45,"523 West St, Dallas, TX 75001" -191050,iPhone,1,700,04/01/19 17:43,"67 Cedar St, New York City, NY 10001" -191051,AA Batteries (4-pack),1,3.84,04/30/19 11:05,"846 Jefferson St, Portland, OR 97035" -191052,Lightning Charging Cable,1,14.95,04/26/19 14:55,"555 Jefferson St, Portland, OR 97035" -191053,Bose SoundSport Headphones,1,99.99,04/03/19 00:08,"792 11th St, Portland, OR 97035" -191054,27in FHD Monitor,1,149.99,04/09/19 22:00,"93 Adams St, Seattle, WA 98101" -191055,USB-C Charging Cable,1,11.95,04/09/19 15:02,"538 Ridge St, Atlanta, GA 30301" -191056,Apple Airpods Headphones,1,150,04/24/19 19:21,"114 Lake St, Los Angeles, CA 90001" -191057,27in 4K Gaming Monitor,1,389.99,04/25/19 18:51,"955 Park St, Boston, MA 02215" -191058,Lightning Charging Cable,1,14.95,04/17/19 09:02,"876 11th St, Austin, TX 73301" -191059,27in FHD Monitor,1,149.99,04/24/19 13:16,"78 Meadow St, Atlanta, GA 30301" -191060,LG Dryer,1,600.0,04/13/19 22:15,"869 Chestnut St, Boston, MA 02215" -191061,20in Monitor,1,109.99,04/25/19 21:05,"395 West St, Los Angeles, CA 90001" -191062,Apple Airpods Headphones,1,150,04/11/19 13:58,"553 1st St, San Francisco, CA 94016" -191063,AAA Batteries (4-pack),3,2.99,04/11/19 08:53,"547 Walnut St, San Francisco, CA 94016" -191064,Macbook Pro Laptop,1,1700,04/03/19 10:11,"214 11th St, Atlanta, GA 30301" -191065,Wired Headphones,1,11.99,04/05/19 10:18,"87 Lincoln St, Seattle, WA 98101" -191066,AAA Batteries (4-pack),1,2.99,04/19/19 22:31,"814 Walnut St, New York City, NY 10001" -191067,Lightning Charging Cable,1,14.95,04/21/19 07:07,"501 River St, San Francisco, CA 94016" -191068,USB-C Charging Cable,1,11.95,04/03/19 16:58,"86 4th St, New York City, NY 10001" -191069,27in 4K Gaming Monitor,1,389.99,04/27/19 15:11,"666 8th St, New York City, NY 10001" -191070,USB-C Charging Cable,1,11.95,04/10/19 10:14,"261 6th St, Los Angeles, CA 90001" -191071,AA Batteries (4-pack),2,3.84,04/01/19 20:22,"772 Dogwood St, Portland, OR 97035" -191072,USB-C Charging Cable,1,11.95,04/28/19 15:14,"209 11th St, Seattle, WA 98101" -191073,AAA Batteries (4-pack),1,2.99,04/20/19 14:51,"464 Sunset St, New York City, NY 10001" -191074,Bose SoundSport Headphones,1,99.99,04/09/19 08:20,"293 8th St, Portland, OR 97035" -191075,Flatscreen TV,1,300,04/16/19 11:00,"954 2nd St, San Francisco, CA 94016" -191076,Wired Headphones,1,11.99,04/15/19 10:52,"396 8th St, Los Angeles, CA 90001" -191077,Apple Airpods Headphones,1,150,04/22/19 20:29,"789 South St, New York City, NY 10001" -191078,Vareebadd Phone,1,400,04/12/19 11:40,"655 Dogwood St, Portland, OR 97035" -191078,Bose SoundSport Headphones,1,99.99,04/12/19 11:40,"655 Dogwood St, Portland, OR 97035" -191079,27in 4K Gaming Monitor,1,389.99,04/03/19 22:24,"527 12th St, Austin, TX 73301" -191080,iPhone,1,700,04/17/19 09:24,"510 Lake St, San Francisco, CA 94016" -191081,27in FHD Monitor,1,149.99,04/10/19 17:12,"35 Cedar St, Los Angeles, CA 90001" -191082,AA Batteries (4-pack),1,3.84,04/07/19 09:39,"889 12th St, New York City, NY 10001" -191083,Apple Airpods Headphones,1,150,05/01/19 01:02,"955 13th St, Seattle, WA 98101" -191084,Lightning Charging Cable,1,14.95,04/30/19 07:15,"353 Hickory St, San Francisco, CA 94016" -191085,AA Batteries (4-pack),1,3.84,04/17/19 17:33,"43 Sunset St, Los Angeles, CA 90001" -191086,AA Batteries (4-pack),1,3.84,04/03/19 10:44,"981 Center St, Dallas, TX 75001" -191087,Flatscreen TV,1,300,04/07/19 22:28,"431 Sunset St, San Francisco, CA 94016" -191088,Apple Airpods Headphones,1,150,04/30/19 17:36,"759 Lincoln St, San Francisco, CA 94016" -191089,iPhone,1,700,04/25/19 21:07,"415 Forest St, Los Angeles, CA 90001" -191090,AAA Batteries (4-pack),2,2.99,04/12/19 18:28,"883 Main St, San Francisco, CA 94016" -191091,Wired Headphones,1,11.99,04/17/19 14:25,"380 Lakeview St, Portland, OR 97035" -191092,Wired Headphones,1,11.99,04/14/19 15:39,"570 Maple St, Boston, MA 02215" -191093,AA Batteries (4-pack),2,3.84,04/16/19 09:26,"535 Main St, Dallas, TX 75001" -191094,Lightning Charging Cable,1,14.95,04/22/19 21:03,"268 Lake St, Atlanta, GA 30301" -191095,Vareebadd Phone,1,400,04/29/19 11:53,"792 Adams St, New York City, NY 10001" -191096,AA Batteries (4-pack),1,3.84,04/10/19 12:01,"279 Lakeview St, Los Angeles, CA 90001" -191097,Lightning Charging Cable,1,14.95,04/27/19 21:02,"48 Washington St, Austin, TX 73301" -191098,Wired Headphones,1,11.99,04/21/19 14:17,"660 Chestnut St, Boston, MA 02215" -191099,AAA Batteries (4-pack),1,2.99,04/29/19 02:14,"934 Chestnut St, San Francisco, CA 94016" -191100,Lightning Charging Cable,1,14.95,04/23/19 12:53,"646 Lincoln St, Los Angeles, CA 90001" -191101,34in Ultrawide Monitor,1,379.99,04/17/19 15:58,"870 North St, San Francisco, CA 94016" -191102,Wired Headphones,1,11.99,04/06/19 13:18,"721 4th St, Los Angeles, CA 90001" -191103,Lightning Charging Cable,1,14.95,04/19/19 21:52,"953 9th St, San Francisco, CA 94016" -191104,Bose SoundSport Headphones,1,99.99,04/11/19 20:00,"936 1st St, Los Angeles, CA 90001" -191105,20in Monitor,1,109.99,04/18/19 09:52,"385 Highland St, Atlanta, GA 30301" -191106,34in Ultrawide Monitor,1,379.99,04/11/19 15:21,"497 8th St, Atlanta, GA 30301" -191107,iPhone,1,700,04/16/19 10:37,"583 4th St, Atlanta, GA 30301" -191108,Wired Headphones,1,11.99,04/27/19 19:35,"656 Washington St, Austin, TX 73301" -191109,AAA Batteries (4-pack),1,2.99,04/17/19 19:09,"115 Jackson St, Los Angeles, CA 90001" -191110,Bose SoundSport Headphones,1,99.99,04/12/19 23:37,"566 Dogwood St, Los Angeles, CA 90001" -191111,Lightning Charging Cable,1,14.95,04/26/19 12:08,"518 Highland St, Austin, TX 73301" -191112,LG Dryer,1,600.0,04/15/19 20:08,"252 4th St, Atlanta, GA 30301" -191113,27in 4K Gaming Monitor,1,389.99,04/17/19 14:44,"592 Main St, New York City, NY 10001" -191114,AAA Batteries (4-pack),1,2.99,04/11/19 10:26,"90 9th St, Seattle, WA 98101" -191115,Flatscreen TV,1,300,04/11/19 05:25,"605 5th St, New York City, NY 10001" -191116,AAA Batteries (4-pack),1,2.99,04/23/19 15:35,"54 Sunset St, Dallas, TX 75001" -191117,Wired Headphones,1,11.99,04/12/19 13:07,"639 Lincoln St, San Francisco, CA 94016" -191118,AA Batteries (4-pack),1,3.84,04/15/19 21:27,"536 Elm St, Los Angeles, CA 90001" -191119,AAA Batteries (4-pack),1,2.99,04/20/19 20:57,"273 Park St, Seattle, WA 98101" -191120,34in Ultrawide Monitor,1,379.99,04/13/19 13:15,"890 South St, Seattle, WA 98101" -191121,Macbook Pro Laptop,1,1700,04/24/19 02:05,"77 Chestnut St, Los Angeles, CA 90001" -191122,34in Ultrawide Monitor,1,379.99,04/10/19 13:34,"284 Sunset St, Seattle, WA 98101" -191123,USB-C Charging Cable,1,11.95,04/22/19 13:05,"182 1st St, New York City, NY 10001" -191124,iPhone,1,700,04/07/19 08:28,"416 Cedar St, Austin, TX 73301" -191125,USB-C Charging Cable,1,11.95,04/02/19 16:36,"276 Madison St, Los Angeles, CA 90001" -191126,AA Batteries (4-pack),2,3.84,04/25/19 16:43,"254 Lake St, Boston, MA 02215" -191127,Wired Headphones,1,11.99,04/27/19 22:57,"369 Lake St, Atlanta, GA 30301" -191128,AAA Batteries (4-pack),1,2.99,04/24/19 23:01,"553 Ridge St, Los Angeles, CA 90001" -191129,AAA Batteries (4-pack),1,2.99,04/11/19 02:06,"306 Adams St, Los Angeles, CA 90001" -191130,Wired Headphones,1,11.99,04/09/19 12:44,"345 Main St, San Francisco, CA 94016" -191131,AAA Batteries (4-pack),2,2.99,04/18/19 18:32,"747 Cedar St, Seattle, WA 98101" -191132,Bose SoundSport Headphones,1,99.99,04/07/19 21:47,"852 South St, San Francisco, CA 94016" -191132,USB-C Charging Cable,1,11.95,04/07/19 21:47,"852 South St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -191133,Lightning Charging Cable,2,14.95,04/06/19 14:48,"303 West St, Atlanta, GA 30301" -191134,20in Monitor,2,109.99,04/16/19 12:33,"617 Sunset St, New York City, NY 10001" -191135,Bose SoundSport Headphones,1,99.99,04/26/19 08:09,"782 Forest St, San Francisco, CA 94016" -191136,Lightning Charging Cable,2,14.95,04/09/19 18:23,"651 Lincoln St, Portland, OR 97035" -191137,Lightning Charging Cable,1,14.95,04/13/19 14:42,"338 Madison St, Seattle, WA 98101" -191138,USB-C Charging Cable,1,11.95,04/13/19 12:02,"511 Maple St, Austin, TX 73301" -191139,27in 4K Gaming Monitor,1,389.99,04/21/19 18:46,"840 11th St, Los Angeles, CA 90001" -191140,Lightning Charging Cable,1,14.95,04/28/19 13:21,"616 5th St, Boston, MA 02215" -191141,Apple Airpods Headphones,1,150,04/28/19 20:29,"994 Forest St, Dallas, TX 75001" -191142,27in 4K Gaming Monitor,1,389.99,04/01/19 21:44,"255 Cherry St, Portland, OR 97035" -191143,AAA Batteries (4-pack),1,2.99,04/02/19 19:00,"669 Meadow St, Dallas, TX 75001" -191144,Wired Headphones,1,11.99,04/12/19 03:21,"3 Lakeview St, Boston, MA 02215" -191145,iPhone,1,700,04/14/19 22:08,"577 9th St, Atlanta, GA 30301" -191146,Wired Headphones,1,11.99,04/01/19 13:10,"866 9th St, San Francisco, CA 94016" -191147,AAA Batteries (4-pack),2,2.99,04/14/19 13:55,"494 Forest St, Portland, OR 97035" -191148,Lightning Charging Cable,1,14.95,04/11/19 10:07,"758 7th St, Atlanta, GA 30301" -191149,27in FHD Monitor,1,149.99,04/10/19 20:02,"828 Cherry St, Dallas, TX 75001" -191150,AA Batteries (4-pack),4,3.84,04/06/19 18:54,"123 Lakeview St, San Francisco, CA 94016" -191151,Lightning Charging Cable,1,14.95,04/17/19 13:32,"664 Elm St, San Francisco, CA 94016" -191152,27in FHD Monitor,1,149.99,04/17/19 16:12,"479 Hill St, New York City, NY 10001" -191153,Flatscreen TV,1,300,04/02/19 11:10,"395 Jackson St, Atlanta, GA 30301" -191154,iPhone,1,700,04/22/19 18:04,"459 South St, Dallas, TX 75001" -191155,Google Phone,1,600,04/30/19 13:53,"733 Highland St, San Francisco, CA 94016" -191156,Wired Headphones,1,11.99,05/01/19 00:03,"757 Meadow St, Atlanta, GA 30301" -191157,Lightning Charging Cable,1,14.95,04/06/19 15:53,"725 Hill St, San Francisco, CA 94016" -191158,USB-C Charging Cable,1,11.95,04/27/19 23:51,"732 10th St, Los Angeles, CA 90001" -191158,27in FHD Monitor,1,149.99,04/27/19 23:51,"732 10th St, Los Angeles, CA 90001" -191159,Lightning Charging Cable,1,14.95,04/12/19 10:41,"641 Church St, Dallas, TX 75001" -191160,Lightning Charging Cable,1,14.95,04/27/19 12:38,"763 Maple St, Los Angeles, CA 90001" -191160,Bose SoundSport Headphones,1,99.99,04/27/19 12:38,"763 Maple St, Los Angeles, CA 90001" -191161,AAA Batteries (4-pack),3,2.99,04/01/19 11:26,"864 Pine St, Los Angeles, CA 90001" -191162,iPhone,1,700,04/15/19 18:47,"58 Spruce St, Boston, MA 02215" -191162,AAA Batteries (4-pack),1,2.99,04/15/19 18:47,"58 Spruce St, Boston, MA 02215" -191163,AAA Batteries (4-pack),1,2.99,04/05/19 19:21,"698 Willow St, Atlanta, GA 30301" -191164,27in 4K Gaming Monitor,1,389.99,04/04/19 21:44,"431 Adams St, Los Angeles, CA 90001" -191165,Wired Headphones,2,11.99,04/13/19 15:49,"173 Madison St, Los Angeles, CA 90001" -191166,AA Batteries (4-pack),1,3.84,04/11/19 19:59,"388 Highland St, Seattle, WA 98101" -191167,27in 4K Gaming Monitor,1,389.99,04/22/19 13:32,"354 6th St, Dallas, TX 75001" -191168,Lightning Charging Cable,1,14.95,04/02/19 16:35,"794 Cedar St, Atlanta, GA 30301" -191169,Lightning Charging Cable,1,14.95,04/10/19 20:54,"349 Lincoln St, San Francisco, CA 94016" -191170,AA Batteries (4-pack),2,3.84,04/07/19 23:55,"763 6th St, Los Angeles, CA 90001" -191171,Lightning Charging Cable,1,14.95,04/16/19 16:11,"25 Madison St, Portland, OR 97035" -191172,Bose SoundSport Headphones,1,99.99,04/14/19 12:07,"71 West St, Los Angeles, CA 90001" -191173,USB-C Charging Cable,1,11.95,04/02/19 13:48,"931 Walnut St, Los Angeles, CA 90001" -191174,ThinkPad Laptop,1,999.99,04/04/19 19:36,"516 9th St, San Francisco, CA 94016" -191175,USB-C Charging Cable,1,11.95,04/05/19 22:44,"812 1st St, Austin, TX 73301" -191176,AAA Batteries (4-pack),1,2.99,04/19/19 12:32,"485 Lincoln St, Los Angeles, CA 90001" -191177,27in FHD Monitor,1,149.99,04/08/19 15:15,"671 Madison St, San Francisco, CA 94016" -191178,iPhone,1,700,04/05/19 19:06,"119 Lake St, Los Angeles, CA 90001" -191179,27in FHD Monitor,1,149.99,04/28/19 18:07,"903 Church St, Boston, MA 02215" -191180,Lightning Charging Cable,1,14.95,04/13/19 19:01,"722 Adams St, Seattle, WA 98101" -191181,Wired Headphones,1,11.99,04/07/19 22:11,"670 Walnut St, San Francisco, CA 94016" -191182,Bose SoundSport Headphones,1,99.99,04/13/19 17:11,"292 Spruce St, Boston, MA 02215" -191183,Lightning Charging Cable,1,14.95,04/30/19 19:33,"45 14th St, Portland, OR 97035" -191184,AAA Batteries (4-pack),2,2.99,04/17/19 10:22,"339 13th St, Los Angeles, CA 90001" -191185,AAA Batteries (4-pack),1,2.99,04/19/19 20:28,"392 14th St, San Francisco, CA 94016" -191186,Wired Headphones,1,11.99,04/24/19 00:46,"177 Cherry St, New York City, NY 10001" -191187,34in Ultrawide Monitor,1,379.99,04/09/19 09:17,"135 River St, San Francisco, CA 94016" -191188,Bose SoundSport Headphones,1,99.99,04/29/19 11:08,"187 10th St, Boston, MA 02215" -191189,Apple Airpods Headphones,1,150,04/10/19 13:46,"132 5th St, Portland, OR 97035" -191190,Apple Airpods Headphones,1,150,04/24/19 07:17,"276 Jefferson St, Austin, TX 73301" -191191,Apple Airpods Headphones,1,150,04/23/19 13:54,"105 Jefferson St, Los Angeles, CA 90001" -191192,27in FHD Monitor,1,149.99,04/20/19 14:41,"180 Park St, New York City, NY 10001" -191193,iPhone,1,700,04/21/19 22:37,"721 Elm St, New York City, NY 10001" -191193,Lightning Charging Cable,2,14.95,04/21/19 22:37,"721 Elm St, New York City, NY 10001" -191193,Apple Airpods Headphones,1,150,04/21/19 22:37,"721 Elm St, New York City, NY 10001" -191194,USB-C Charging Cable,1,11.95,04/15/19 10:57,"927 Adams St, Portland, OR 97035" -191195,Apple Airpods Headphones,1,150,04/22/19 16:44,"711 5th St, San Francisco, CA 94016" -191196,AAA Batteries (4-pack),1,2.99,04/04/19 15:46,"100 Jefferson St, San Francisco, CA 94016" -191197,Wired Headphones,1,11.99,04/07/19 18:22,"452 Center St, Portland, OR 97035" -191198,AA Batteries (4-pack),1,3.84,04/17/19 07:40,"192 Lincoln St, Portland, OR 97035" -191199,AAA Batteries (4-pack),2,2.99,04/09/19 10:56,"530 Adams St, Atlanta, GA 30301" -191200,AA Batteries (4-pack),1,3.84,04/04/19 10:02,"451 12th St, Dallas, TX 75001" -191201,Lightning Charging Cable,1,14.95,04/23/19 15:24,"466 11th St, San Francisco, CA 94016" -191202,ThinkPad Laptop,1,999.99,04/26/19 13:43,"6 11th St, Austin, TX 73301" -191203,Apple Airpods Headphones,1,150,04/17/19 19:18,"504 Cherry St, Seattle, WA 98101" -191204,Lightning Charging Cable,1,14.95,04/07/19 19:15,"441 9th St, Los Angeles, CA 90001" -191205,Lightning Charging Cable,1,14.95,04/05/19 18:07,"809 Sunset St, San Francisco, CA 94016" -191206,34in Ultrawide Monitor,1,379.99,04/29/19 14:35,"747 1st St, San Francisco, CA 94016" -191207,AA Batteries (4-pack),4,3.84,04/04/19 18:08,"811 Adams St, Boston, MA 02215" -191208,Wired Headphones,1,11.99,04/30/19 10:12,"398 13th St, San Francisco, CA 94016" -191209,LG Washing Machine,1,600.0,04/24/19 21:46,"48 Cedar St, Atlanta, GA 30301" -191210,Bose SoundSport Headphones,1,99.99,04/07/19 10:05,"405 Meadow St, San Francisco, CA 94016" -191211,Wired Headphones,2,11.99,04/09/19 12:45,"397 Main St, Portland, OR 97035" -191212,AA Batteries (4-pack),1,3.84,04/05/19 10:54,"742 Adams St, Boston, MA 02215" -191213,27in 4K Gaming Monitor,1,389.99,04/02/19 21:24,"18 13th St, San Francisco, CA 94016" -191214,AA Batteries (4-pack),1,3.84,04/12/19 23:16,"684 Madison St, Portland, OR 97035" -191215,Apple Airpods Headphones,1,150,04/29/19 13:11,"786 Willow St, Dallas, TX 75001" -191216,ThinkPad Laptop,1,999.99,04/12/19 14:09,"606 Hill St, Portland, ME 04101" -191217,Apple Airpods Headphones,1,150,04/02/19 08:26,"16 4th St, Austin, TX 73301" -191218,27in FHD Monitor,1,149.99,04/05/19 10:21,"427 Church St, Seattle, WA 98101" -191219,USB-C Charging Cable,1,11.95,04/23/19 21:26,"141 Chestnut St, Los Angeles, CA 90001" -191220,AA Batteries (4-pack),1,3.84,04/15/19 15:12,"877 Washington St, San Francisco, CA 94016" -191221,AAA Batteries (4-pack),2,2.99,04/09/19 16:50,"283 Spruce St, San Francisco, CA 94016" -191222,Google Phone,1,600,04/16/19 17:42,"93 13th St, New York City, NY 10001" -191223,AA Batteries (4-pack),2,3.84,04/29/19 10:43,"224 8th St, Dallas, TX 75001" -191224,AAA Batteries (4-pack),1,2.99,04/14/19 18:19,"619 Cedar St, Austin, TX 73301" -191225,Wired Headphones,1,11.99,04/11/19 08:38,"713 Maple St, Seattle, WA 98101" -191226,Wired Headphones,1,11.99,04/15/19 15:25,"214 Forest St, Portland, ME 04101" -191227,Bose SoundSport Headphones,1,99.99,04/02/19 00:53,"887 Elm St, San Francisco, CA 94016" -191228,Flatscreen TV,1,300,04/19/19 16:49,"279 7th St, San Francisco, CA 94016" -191229,Wired Headphones,1,11.99,04/25/19 13:46,"946 Highland St, Seattle, WA 98101" -191230,Lightning Charging Cable,1,14.95,04/25/19 13:47,"739 Hill St, New York City, NY 10001" -191231,Apple Airpods Headphones,1,150,04/10/19 18:58,"867 Washington St, Los Angeles, CA 90001" -191232,Bose SoundSport Headphones,1,99.99,04/19/19 18:50,"398 11th St, Austin, TX 73301" -191233,27in FHD Monitor,1,149.99,04/18/19 23:37,"960 North St, Austin, TX 73301" -191234,AAA Batteries (4-pack),2,2.99,04/21/19 20:04,"130 West St, Boston, MA 02215" -191235,Macbook Pro Laptop,1,1700,04/07/19 08:10,"505 Pine St, San Francisco, CA 94016" -191236,27in 4K Gaming Monitor,1,389.99,04/01/19 16:03,"582 1st St, Atlanta, GA 30301" -191237,Flatscreen TV,1,300,04/07/19 09:08,"863 Meadow St, Atlanta, GA 30301" -191238,AAA Batteries (4-pack),1,2.99,04/28/19 19:49,"317 Johnson St, San Francisco, CA 94016" -191239,Wired Headphones,1,11.99,04/26/19 11:52,"758 10th St, New York City, NY 10001" -191240,Google Phone,1,600,04/07/19 08:03,"293 River St, San Francisco, CA 94016" -191241,Lightning Charging Cable,1,14.95,04/19/19 20:33,"786 Washington St, Portland, OR 97035" -191242,AA Batteries (4-pack),1,3.84,04/14/19 15:53,"298 Main St, New York City, NY 10001" -191243,27in 4K Gaming Monitor,1,389.99,04/30/19 14:50,"645 Johnson St, San Francisco, CA 94016" -191244,Apple Airpods Headphones,1,150,04/11/19 01:32,"355 Highland St, Austin, TX 73301" -191245,Bose SoundSport Headphones,1,99.99,04/01/19 12:18,"936 6th St, New York City, NY 10001" -191246,USB-C Charging Cable,1,11.95,04/12/19 13:11,"157 Spruce St, San Francisco, CA 94016" -191247,Lightning Charging Cable,1,14.95,04/29/19 18:12,"123 Dogwood St, San Francisco, CA 94016" -191248,20in Monitor,1,109.99,04/21/19 13:49,"796 1st St, Portland, OR 97035" -191249,27in FHD Monitor,1,149.99,04/06/19 12:02,"43 River St, Seattle, WA 98101" -191250,Wired Headphones,1,11.99,04/30/19 23:33,"408 West St, New York City, NY 10001" -191251,Google Phone,1,600,04/17/19 23:38,"440 Jackson St, Portland, OR 97035" -191251,USB-C Charging Cable,1,11.95,04/17/19 23:38,"440 Jackson St, Portland, OR 97035" -191252,ThinkPad Laptop,1,999.99,04/26/19 16:54,"989 Elm St, Los Angeles, CA 90001" -191253,Wired Headphones,2,11.99,04/18/19 19:56,"763 Willow St, Austin, TX 73301" -191254,27in FHD Monitor,1,149.99,04/14/19 15:56,"905 Lake St, San Francisco, CA 94016" -191255,USB-C Charging Cable,1,11.95,04/09/19 11:39,"463 Johnson St, Portland, OR 97035" -191256,USB-C Charging Cable,1,11.95,04/18/19 11:10,"238 Spruce St, Los Angeles, CA 90001" -191257,ThinkPad Laptop,1,999.99,04/28/19 01:34,"458 Lakeview St, New York City, NY 10001" -191258,USB-C Charging Cable,1,11.95,04/30/19 12:21,"499 12th St, San Francisco, CA 94016" -191259,AA Batteries (4-pack),1,3.84,04/24/19 21:41,"187 North St, Atlanta, GA 30301" -191260,AAA Batteries (4-pack),6,2.99,04/17/19 15:06,"843 Cedar St, Los Angeles, CA 90001" -191261,USB-C Charging Cable,2,11.95,04/06/19 18:28,"111 Madison St, San Francisco, CA 94016" -191262,AA Batteries (4-pack),2,3.84,04/25/19 19:19,"380 7th St, Los Angeles, CA 90001" -191262,20in Monitor,1,109.99,04/25/19 19:19,"380 7th St, Los Angeles, CA 90001" -191263,USB-C Charging Cable,1,11.95,04/17/19 22:34,"539 7th St, Boston, MA 02215" -191264,AAA Batteries (4-pack),2,2.99,04/16/19 16:31,"872 Jackson St, Boston, MA 02215" -191265,Lightning Charging Cable,1,14.95,04/08/19 13:18,"653 Highland St, New York City, NY 10001" -191266,AA Batteries (4-pack),1,3.84,04/20/19 09:38,"43 2nd St, Los Angeles, CA 90001" -191267,27in 4K Gaming Monitor,1,389.99,04/24/19 12:06,"974 South St, Dallas, TX 75001" -191268,34in Ultrawide Monitor,1,379.99,04/25/19 02:27,"641 Johnson St, San Francisco, CA 94016" -191269,Google Phone,1,600,04/12/19 00:28,"223 13th St, San Francisco, CA 94016" -191270,AA Batteries (4-pack),1,3.84,04/11/19 13:27,"294 South St, Dallas, TX 75001" -191271,AA Batteries (4-pack),1,3.84,04/26/19 10:51,"963 Pine St, Boston, MA 02215" -191272,27in FHD Monitor,1,149.99,04/20/19 09:43,"750 West St, Seattle, WA 98101" -191273,USB-C Charging Cable,1,11.95,04/23/19 13:45,"613 Pine St, San Francisco, CA 94016" -191274,20in Monitor,1,109.99,04/13/19 20:18,"20 Lincoln St, Atlanta, GA 30301" -191275,USB-C Charging Cable,1,11.95,04/14/19 15:05,"437 10th St, San Francisco, CA 94016" -191276,Wired Headphones,1,11.99,04/14/19 17:48,"475 Hill St, Los Angeles, CA 90001" -191277,AA Batteries (4-pack),1,3.84,04/03/19 19:15,"387 Willow St, San Francisco, CA 94016" -191278,USB-C Charging Cable,1,11.95,04/05/19 15:12,"24 Lakeview St, Portland, ME 04101" -191279,AA Batteries (4-pack),2,3.84,04/16/19 11:55,"600 Walnut St, San Francisco, CA 94016" -191280,Flatscreen TV,1,300,04/16/19 17:57,"3 Park St, New York City, NY 10001" -191281,AA Batteries (4-pack),3,3.84,04/30/19 15:05,"892 5th St, Los Angeles, CA 90001" -191282,iPhone,1,700,04/29/19 18:28,"994 Ridge St, San Francisco, CA 94016" -191283,Lightning Charging Cable,1,14.95,04/27/19 07:51,"749 14th St, San Francisco, CA 94016" -191284,AAA Batteries (4-pack),1,2.99,04/02/19 12:19,"923 South St, Los Angeles, CA 90001" -191285,Lightning Charging Cable,1,14.95,04/03/19 17:36,"498 Willow St, Seattle, WA 98101" -191286,Wired Headphones,1,11.99,04/26/19 10:46,"454 Madison St, Dallas, TX 75001" -191287,AAA Batteries (4-pack),1,2.99,04/18/19 18:13,"885 Lakeview St, San Francisco, CA 94016" -191288,AAA Batteries (4-pack),1,2.99,04/16/19 14:42,"568 Forest St, Boston, MA 02215" -191289,USB-C Charging Cable,1,11.95,04/03/19 08:35,"79 Madison St, Boston, MA 02215" -191290,34in Ultrawide Monitor,1,379.99,04/17/19 13:33,"769 Madison St, Boston, MA 02215" -191291,USB-C Charging Cable,1,11.95,04/01/19 22:57,"860 Madison St, San Francisco, CA 94016" -191292,27in FHD Monitor,1,149.99,04/04/19 02:10,"964 Highland St, Dallas, TX 75001" -191293,Bose SoundSport Headphones,1,99.99,04/23/19 11:18,"229 Willow St, San Francisco, CA 94016" -191294,Flatscreen TV,1,300,04/05/19 19:44,"797 West St, San Francisco, CA 94016" -191295,Macbook Pro Laptop,1,1700,04/02/19 11:02,"703 Spruce St, Los Angeles, CA 90001" -191296,AAA Batteries (4-pack),2,2.99,04/20/19 11:25,"894 Willow St, Boston, MA 02215" -191297,Lightning Charging Cable,1,14.95,04/29/19 20:24,"595 Dogwood St, New York City, NY 10001" -191298,AA Batteries (4-pack),1,3.84,04/15/19 15:30,"55 Elm St, Los Angeles, CA 90001" -191299,USB-C Charging Cable,2,11.95,04/06/19 20:06,"849 Main St, San Francisco, CA 94016" -191300,AA Batteries (4-pack),1,3.84,04/13/19 14:57,"282 Elm St, Austin, TX 73301" -191301,Lightning Charging Cable,1,14.95,04/02/19 18:45,"20 Chestnut St, Boston, MA 02215" -191302,34in Ultrawide Monitor,1,379.99,04/07/19 15:53,"441 Pine St, New York City, NY 10001" -191303,AAA Batteries (4-pack),1,2.99,04/28/19 12:17,"809 4th St, Atlanta, GA 30301" -191304,Lightning Charging Cable,1,14.95,04/19/19 12:51,"152 Meadow St, Austin, TX 73301" -191305,Wired Headphones,1,11.99,04/24/19 18:29,"370 Adams St, San Francisco, CA 94016" -191306,Apple Airpods Headphones,1,150,04/22/19 08:14,"689 Hill St, Portland, OR 97035" -191307,AA Batteries (4-pack),1,3.84,04/26/19 21:39,"544 Elm St, San Francisco, CA 94016" -191308,Google Phone,1,600,04/28/19 13:04,"606 Hickory St, Boston, MA 02215" -191309,Wired Headphones,1,11.99,04/30/19 09:42,"950 Washington St, Boston, MA 02215" -191310,20in Monitor,1,109.99,04/03/19 13:47,"435 Highland St, Austin, TX 73301" -191311,Lightning Charging Cable,1,14.95,04/17/19 11:39,"622 Main St, Seattle, WA 98101" -191311,Apple Airpods Headphones,1,150,04/17/19 11:39,"622 Main St, Seattle, WA 98101" -191312,27in FHD Monitor,1,149.99,04/25/19 09:51,"839 Hickory St, Atlanta, GA 30301" -191313,AAA Batteries (4-pack),2,2.99,04/28/19 09:58,"159 14th St, Austin, TX 73301" -191314,Flatscreen TV,1,300,04/24/19 18:44,"298 Jackson St, Los Angeles, CA 90001" -191315,Bose SoundSport Headphones,1,99.99,04/14/19 21:08,"217 Church St, Boston, MA 02215" -191316,27in 4K Gaming Monitor,1,389.99,04/12/19 19:57,"980 4th St, New York City, NY 10001" -191317,34in Ultrawide Monitor,1,379.99,04/04/19 22:11,"988 4th St, Atlanta, GA 30301" -191318,Wired Headphones,1,11.99,04/24/19 21:42,"2 Church St, San Francisco, CA 94016" -191319,AA Batteries (4-pack),2,3.84,04/20/19 22:30,"137 Highland St, San Francisco, CA 94016" -191320,AA Batteries (4-pack),1,3.84,04/07/19 17:33,"538 9th St, Los Angeles, CA 90001" -191321,27in 4K Gaming Monitor,1,389.99,04/14/19 07:51,"316 Willow St, Dallas, TX 75001" -191322,Lightning Charging Cable,2,14.95,04/19/19 09:58,"265 Walnut St, New York City, NY 10001" -191323,AA Batteries (4-pack),2,3.84,04/11/19 08:54,"979 Lincoln St, San Francisco, CA 94016" -191324,Wired Headphones,1,11.99,04/14/19 10:59,"715 Jackson St, New York City, NY 10001" -191325,Apple Airpods Headphones,1,150,04/02/19 16:15,"584 Elm St, Dallas, TX 75001" -191326,34in Ultrawide Monitor,1,379.99,04/03/19 08:09,"24 11th St, New York City, NY 10001" -191327,Vareebadd Phone,1,400,04/01/19 18:17,"496 Walnut St, San Francisco, CA 94016" -191328,AAA Batteries (4-pack),5,2.99,04/12/19 14:34,"503 Park St, Los Angeles, CA 90001" -191329,27in FHD Monitor,1,149.99,04/08/19 13:09,"322 7th St, San Francisco, CA 94016" -191330,USB-C Charging Cable,1,11.95,04/21/19 16:26,"131 Hill St, Dallas, TX 75001" -191331,USB-C Charging Cable,1,11.95,04/19/19 20:54,"725 2nd St, Austin, TX 73301" -191332,Wired Headphones,1,11.99,04/12/19 15:41,"555 2nd St, San Francisco, CA 94016" -191333,27in 4K Gaming Monitor,1,389.99,04/29/19 10:18,"965 Lakeview St, Los Angeles, CA 90001" -191334,AA Batteries (4-pack),1,3.84,04/01/19 08:46,"295 9th St, Dallas, TX 75001" -191335,iPhone,1,700,04/08/19 12:58,"122 12th St, Seattle, WA 98101" -191336,Lightning Charging Cable,1,14.95,04/30/19 21:41,"962 Center St, Los Angeles, CA 90001" -191337,Bose SoundSport Headphones,1,99.99,04/24/19 15:00,"492 9th St, Dallas, TX 75001" -191338,AA Batteries (4-pack),1,3.84,04/20/19 10:13,"86 Cherry St, Atlanta, GA 30301" -191339,Google Phone,1,600,04/12/19 10:43,"757 2nd St, Boston, MA 02215" -191340,USB-C Charging Cable,1,11.95,04/05/19 18:57,"482 Jefferson St, San Francisco, CA 94016" -191341,USB-C Charging Cable,1,11.95,04/16/19 09:53,"369 7th St, San Francisco, CA 94016" -191342,Apple Airpods Headphones,1,150,04/07/19 20:58,"292 Meadow St, Seattle, WA 98101" -191343,AA Batteries (4-pack),2,3.84,04/17/19 10:12,"448 Sunset St, Los Angeles, CA 90001" -191344,AA Batteries (4-pack),1,3.84,04/20/19 00:37,"798 6th St, San Francisco, CA 94016" -191345,AAA Batteries (4-pack),1,2.99,04/20/19 19:50,"745 2nd St, San Francisco, CA 94016" -191346,Lightning Charging Cable,2,14.95,04/16/19 06:15,"703 14th St, Dallas, TX 75001" -191347,Bose SoundSport Headphones,1,99.99,04/21/19 18:32,"110 Johnson St, San Francisco, CA 94016" -191348,AA Batteries (4-pack),1,3.84,04/12/19 12:16,"9 Dogwood St, San Francisco, CA 94016" -191349,34in Ultrawide Monitor,1,379.99,04/02/19 16:49,"885 Elm St, Portland, ME 04101" -191350,Wired Headphones,1,11.99,04/06/19 10:54,"569 14th St, Atlanta, GA 30301" -191351,AAA Batteries (4-pack),1,2.99,04/25/19 16:24,"481 Johnson St, Dallas, TX 75001" -191352,Macbook Pro Laptop,1,1700,04/24/19 01:10,"536 Highland St, Atlanta, GA 30301" -191353,USB-C Charging Cable,1,11.95,04/26/19 13:30,"774 Willow St, Atlanta, GA 30301" -191354,USB-C Charging Cable,1,11.95,04/24/19 12:44,"115 Lincoln St, Los Angeles, CA 90001" -191355,Wired Headphones,1,11.99,04/24/19 17:22,"535 Church St, Seattle, WA 98101" -191356,Lightning Charging Cable,2,14.95,04/28/19 10:36,"499 Forest St, Seattle, WA 98101" -191357,AA Batteries (4-pack),3,3.84,04/13/19 17:55,"108 14th St, Seattle, WA 98101" -191358,Apple Airpods Headphones,1,150,04/15/19 15:35,"799 Main St, Austin, TX 73301" -191359,AAA Batteries (4-pack),4,2.99,04/28/19 21:19,"78 Park St, New York City, NY 10001" -191360,Bose SoundSport Headphones,1,99.99,04/17/19 12:25,"47 West St, Dallas, TX 75001" -191361,Wired Headphones,1,11.99,04/18/19 14:59,"84 Spruce St, Austin, TX 73301" -191362,Lightning Charging Cable,1,14.95,04/22/19 16:59,"804 4th St, Los Angeles, CA 90001" -191363,Wired Headphones,1,11.99,04/30/19 12:47,"748 Sunset St, Portland, ME 04101" -191364,LG Washing Machine,1,600.0,04/24/19 16:56,"274 Lake St, San Francisco, CA 94016" -191365,Lightning Charging Cable,1,14.95,04/19/19 18:46,"377 8th St, Portland, OR 97035" -191366,AA Batteries (4-pack),2,3.84,04/14/19 03:56,"173 8th St, Los Angeles, CA 90001" -191367,AA Batteries (4-pack),1,3.84,04/10/19 18:21,"201 Jackson St, Atlanta, GA 30301" -191368,AA Batteries (4-pack),1,3.84,04/17/19 07:38,"771 North St, San Francisco, CA 94016" -191368,Lightning Charging Cable,1,14.95,04/17/19 07:38,"771 North St, San Francisco, CA 94016" -191369,34in Ultrawide Monitor,1,379.99,04/13/19 08:17,"853 Highland St, New York City, NY 10001" -191370,Bose SoundSport Headphones,1,99.99,04/04/19 19:20,"581 Sunset St, Boston, MA 02215" -191371,34in Ultrawide Monitor,1,379.99,04/23/19 08:59,"733 Chestnut St, Atlanta, GA 30301" -191372,Lightning Charging Cable,1,14.95,04/07/19 05:52,"227 Johnson St, New York City, NY 10001" -191373,Google Phone,1,600,04/04/19 13:23,"245 Johnson St, San Francisco, CA 94016" -191374,Lightning Charging Cable,1,14.95,04/26/19 18:08,"206 Lincoln St, Los Angeles, CA 90001" -191375,USB-C Charging Cable,1,11.95,04/03/19 15:39,"667 11th St, Portland, OR 97035" -191376,AAA Batteries (4-pack),4,2.99,04/22/19 10:36,"843 Jefferson St, Los Angeles, CA 90001" -191377,USB-C Charging Cable,1,11.95,04/22/19 12:35,"941 4th St, New York City, NY 10001" -191378,USB-C Charging Cable,1,11.95,04/13/19 14:44,"106 Wilson St, Atlanta, GA 30301" -191379,Lightning Charging Cable,1,14.95,04/12/19 12:27,"351 Washington St, Portland, OR 97035" -191380,USB-C Charging Cable,1,11.95,04/02/19 15:31,"281 North St, Seattle, WA 98101" -191381,AA Batteries (4-pack),1,3.84,04/08/19 20:21,"55 8th St, Los Angeles, CA 90001" -191382,Google Phone,1,600,04/29/19 00:13,"796 6th St, San Francisco, CA 94016" -191383,AAA Batteries (4-pack),1,2.99,04/08/19 20:44,"70 13th St, New York City, NY 10001" -191384,Lightning Charging Cable,1,14.95,04/27/19 10:38,"430 6th St, New York City, NY 10001" -191385,USB-C Charging Cable,1,11.95,04/01/19 12:34,"144 Chestnut St, Atlanta, GA 30301" -191386,34in Ultrawide Monitor,1,379.99,04/01/19 20:38,"824 Jefferson St, Dallas, TX 75001" -191387,Apple Airpods Headphones,1,150,04/28/19 10:39,"755 1st St, Boston, MA 02215" -191388,AAA Batteries (4-pack),1,2.99,04/20/19 13:47,"906 Lincoln St, San Francisco, CA 94016" -191389,AAA Batteries (4-pack),1,2.99,04/22/19 13:59,"382 Willow St, Los Angeles, CA 90001" -191390,Lightning Charging Cable,1,14.95,04/01/19 19:49,"307 North St, Austin, TX 73301" -191391,27in FHD Monitor,1,149.99,04/22/19 13:13,"41 Cherry St, Austin, TX 73301" -191392,AA Batteries (4-pack),1,3.84,04/14/19 22:14,"386 Maple St, Austin, TX 73301" -191393,Wired Headphones,1,11.99,04/10/19 19:01,"318 Madison St, New York City, NY 10001" -191394,AAA Batteries (4-pack),1,2.99,04/09/19 18:12,"776 Pine St, Portland, OR 97035" -191395,AA Batteries (4-pack),1,3.84,04/13/19 10:00,"740 Meadow St, San Francisco, CA 94016" -191396,USB-C Charging Cable,1,11.95,04/11/19 09:29,"823 Hickory St, Boston, MA 02215" -191397,AAA Batteries (4-pack),2,2.99,04/26/19 10:58,"95 Adams St, San Francisco, CA 94016" -191398,Wired Headphones,2,11.99,04/02/19 10:50,"282 South St, Dallas, TX 75001" -191399,AA Batteries (4-pack),1,3.84,04/12/19 16:21,"925 Jefferson St, Seattle, WA 98101" -191400,Wired Headphones,1,11.99,04/21/19 14:29,"507 Lakeview St, New York City, NY 10001" -191401,AAA Batteries (4-pack),4,2.99,04/07/19 17:22,"955 Meadow St, New York City, NY 10001" -191402,USB-C Charging Cable,1,11.95,04/21/19 18:46,"796 Cherry St, San Francisco, CA 94016" -191403,Bose SoundSport Headphones,1,99.99,04/14/19 00:28,"948 Forest St, Dallas, TX 75001" -191404,Lightning Charging Cable,1,14.95,04/09/19 15:01,"400 Elm St, Boston, MA 02215" -191405,34in Ultrawide Monitor,1,379.99,04/02/19 14:01,"361 5th St, New York City, NY 10001" -191406,Wired Headphones,1,11.99,04/12/19 17:30,"671 Washington St, Boston, MA 02215" -191407,AA Batteries (4-pack),2,3.84,04/23/19 07:01,"472 Maple St, San Francisco, CA 94016" -191408,Flatscreen TV,1,300,04/02/19 12:55,"305 Madison St, Los Angeles, CA 90001" -191409,AA Batteries (4-pack),1,3.84,04/08/19 20:22,"808 Hill St, New York City, NY 10001" -191410,AA Batteries (4-pack),1,3.84,04/07/19 10:23,"621 Adams St, Dallas, TX 75001" -191411,Lightning Charging Cable,1,14.95,04/16/19 14:07,"865 6th St, San Francisco, CA 94016" -191412,Google Phone,1,600,04/10/19 18:11,"681 River St, San Francisco, CA 94016" -191413,Flatscreen TV,1,300,04/28/19 17:28,"201 Lincoln St, New York City, NY 10001" -191414,27in FHD Monitor,1,149.99,04/14/19 02:19,"459 Lake St, Boston, MA 02215" -191415,AA Batteries (4-pack),2,3.84,04/23/19 18:58,"498 Cedar St, Seattle, WA 98101" -191416,Lightning Charging Cable,1,14.95,04/06/19 15:50,"916 Pine St, San Francisco, CA 94016" -191417,Wired Headphones,1,11.99,04/20/19 20:01,"504 Meadow St, New York City, NY 10001" -191418,Wired Headphones,1,11.99,04/05/19 10:03,"883 5th St, Atlanta, GA 30301" -191419,AAA Batteries (4-pack),1,2.99,04/08/19 16:34,"663 Wilson St, Atlanta, GA 30301" -191420,Google Phone,1,600,04/19/19 12:52,"38 12th St, Los Angeles, CA 90001" -191420,USB-C Charging Cable,1,11.95,04/19/19 12:52,"38 12th St, Los Angeles, CA 90001" -191421,27in 4K Gaming Monitor,1,389.99,04/10/19 19:01,"741 Meadow St, Portland, OR 97035" -191422,Google Phone,1,600,04/06/19 19:29,"710 Chestnut St, Atlanta, GA 30301" -191423,AAA Batteries (4-pack),1,2.99,04/26/19 09:09,"359 6th St, New York City, NY 10001" -191424,AAA Batteries (4-pack),1,2.99,04/14/19 23:56,"876 Jefferson St, San Francisco, CA 94016" -191425,AAA Batteries (4-pack),1,2.99,04/19/19 10:07,"8 6th St, Portland, OR 97035" -191426,Bose SoundSport Headphones,1,99.99,04/27/19 12:30,"126 Church St, New York City, NY 10001" -191427,27in FHD Monitor,1,149.99,04/03/19 17:12,"924 Maple St, Atlanta, GA 30301" -191428,AA Batteries (4-pack),1,3.84,04/11/19 16:04,"282 9th St, Atlanta, GA 30301" -191429,USB-C Charging Cable,1,11.95,04/23/19 18:27,"322 Chestnut St, Los Angeles, CA 90001" -191430,Apple Airpods Headphones,1,150,04/25/19 17:16,"656 Highland St, Dallas, TX 75001" -191431,AA Batteries (4-pack),3,3.84,04/29/19 13:05,"872 Center St, Dallas, TX 75001" -191432,34in Ultrawide Monitor,1,379.99,04/28/19 18:07,"78 Washington St, Portland, OR 97035" -191433,iPhone,1,700,04/10/19 00:34,"706 Jackson St, Seattle, WA 98101" -191433,Lightning Charging Cable,1,14.95,04/10/19 00:34,"706 Jackson St, Seattle, WA 98101" -191433,Apple Airpods Headphones,1,150,04/10/19 00:34,"706 Jackson St, Seattle, WA 98101" -191434,Macbook Pro Laptop,1,1700,04/21/19 21:17,"369 Jackson St, San Francisco, CA 94016" -191435,Lightning Charging Cable,1,14.95,04/16/19 14:01,"78 4th St, Atlanta, GA 30301" -191436,Bose SoundSport Headphones,1,99.99,04/18/19 20:09,"926 Walnut St, New York City, NY 10001" -191437,Apple Airpods Headphones,1,150,04/10/19 10:48,"264 Cherry St, Austin, TX 73301" -191438,Lightning Charging Cable,1,14.95,04/25/19 21:02,"281 South St, New York City, NY 10001" -191439,34in Ultrawide Monitor,1,379.99,04/18/19 10:56,"645 9th St, New York City, NY 10001" -191440,Flatscreen TV,1,300,04/11/19 09:52,"731 Johnson St, San Francisco, CA 94016" -191441,USB-C Charging Cable,1,11.95,04/27/19 09:33,"731 River St, San Francisco, CA 94016" -191442,Apple Airpods Headphones,1,150,04/11/19 13:14,"486 Main St, Seattle, WA 98101" -191443,iPhone,1,700,04/04/19 14:05,"323 14th St, Austin, TX 73301" -191444,AA Batteries (4-pack),1,3.84,04/25/19 09:09,"996 Willow St, Los Angeles, CA 90001" -191445,USB-C Charging Cable,1,11.95,04/01/19 16:11,"813 Cherry St, Portland, OR 97035" -191446,AAA Batteries (4-pack),1,2.99,04/27/19 21:04,"353 Maple St, New York City, NY 10001" -191447,Bose SoundSport Headphones,1,99.99,04/15/19 22:43,"412 Wilson St, San Francisco, CA 94016" -191448,AA Batteries (4-pack),2,3.84,04/28/19 14:33,"450 Chestnut St, Los Angeles, CA 90001" -191449,AA Batteries (4-pack),2,3.84,04/20/19 19:56,"861 Forest St, Portland, OR 97035" -191449,AA Batteries (4-pack),1,3.84,04/20/19 19:56,"861 Forest St, Portland, OR 97035" -191450,Wired Headphones,1,11.99,04/02/19 13:41,"86 Sunset St, San Francisco, CA 94016" -191451,AA Batteries (4-pack),1,3.84,04/10/19 08:34,"5 Park St, San Francisco, CA 94016" -191452,USB-C Charging Cable,1,11.95,04/08/19 21:12,"169 Maple St, New York City, NY 10001" -191453,iPhone,1,700,04/10/19 20:47,"930 Lincoln St, Los Angeles, CA 90001" -191453,Wired Headphones,1,11.99,04/10/19 20:47,"930 Lincoln St, Los Angeles, CA 90001" -191454,USB-C Charging Cable,1,11.95,04/18/19 19:06,"986 13th St, San Francisco, CA 94016" -191455,Macbook Pro Laptop,1,1700,04/30/19 16:23,"320 Main St, San Francisco, CA 94016" -191456,Wired Headphones,1,11.99,04/08/19 09:03,"195 Forest St, Portland, OR 97035" -191457,AA Batteries (4-pack),2,3.84,04/24/19 08:11,"327 Ridge St, Los Angeles, CA 90001" -191458,34in Ultrawide Monitor,1,379.99,04/15/19 21:19,"823 Dogwood St, Portland, OR 97035" -191459,AAA Batteries (4-pack),1,2.99,04/02/19 14:46,"32 7th St, San Francisco, CA 94016" -191460,Apple Airpods Headphones,1,150,04/08/19 11:50,"215 West St, Los Angeles, CA 90001" -191461,20in Monitor,1,109.99,04/23/19 21:33,"890 1st St, Portland, OR 97035" -191462,AA Batteries (4-pack),1,3.84,04/18/19 17:28,"183 Washington St, Portland, OR 97035" -191463,27in FHD Monitor,1,149.99,04/09/19 10:50,"778 North St, Dallas, TX 75001" -191464,Wired Headphones,1,11.99,04/03/19 13:08,"424 12th St, Austin, TX 73301" -191465,Lightning Charging Cable,2,14.95,04/07/19 16:24,"950 Lake St, San Francisco, CA 94016" -191466,Wired Headphones,1,11.99,04/07/19 19:50,"813 Elm St, Los Angeles, CA 90001" -191467,Wired Headphones,1,11.99,04/20/19 18:55,"113 Meadow St, Boston, MA 02215" -191468,Macbook Pro Laptop,1,1700,04/29/19 16:59,"911 10th St, Atlanta, GA 30301" -191469,Apple Airpods Headphones,1,150,04/13/19 20:42,"327 Elm St, San Francisco, CA 94016" -191470,34in Ultrawide Monitor,1,379.99,04/12/19 16:00,"476 South St, San Francisco, CA 94016" -191471,Bose SoundSport Headphones,1,99.99,04/05/19 13:53,"623 Forest St, Los Angeles, CA 90001" -191472,Apple Airpods Headphones,1,150,04/13/19 22:03,"800 Ridge St, Dallas, TX 75001" -191473,USB-C Charging Cable,1,11.95,04/21/19 22:20,"912 12th St, Los Angeles, CA 90001" -191474,Lightning Charging Cable,1,14.95,04/25/19 13:43,"177 Main St, New York City, NY 10001" -191475,AAA Batteries (4-pack),1,2.99,04/29/19 10:58,"471 Dogwood St, Atlanta, GA 30301" -191476,Lightning Charging Cable,1,14.95,04/26/19 21:30,"998 8th St, San Francisco, CA 94016" -191477,Flatscreen TV,1,300,04/04/19 18:48,"912 6th St, Portland, OR 97035" -191478,Wired Headphones,1,11.99,04/30/19 13:10,"574 11th St, Los Angeles, CA 90001" -191479,Flatscreen TV,1,300,04/21/19 15:29,"362 6th St, Boston, MA 02215" -191480,34in Ultrawide Monitor,1,379.99,04/02/19 11:45,"743 Hill St, Los Angeles, CA 90001" -191481,AAA Batteries (4-pack),1,2.99,04/13/19 10:47,"491 Dogwood St, Seattle, WA 98101" -191482,Bose SoundSport Headphones,1,99.99,04/04/19 20:50,"651 North St, Los Angeles, CA 90001" -191483,AAA Batteries (4-pack),1,2.99,04/10/19 12:22,"353 9th St, Los Angeles, CA 90001" -191484,Wired Headphones,1,11.99,04/05/19 18:28,"605 River St, Los Angeles, CA 90001" -191485,AA Batteries (4-pack),1,3.84,04/19/19 18:13,"683 6th St, San Francisco, CA 94016" -191486,Bose SoundSport Headphones,1,99.99,04/05/19 14:20,"954 West St, Seattle, WA 98101" -191487,20in Monitor,1,109.99,04/30/19 13:15,"101 North St, New York City, NY 10001" -191488,Lightning Charging Cable,1,14.95,04/04/19 21:47,"855 Lincoln St, New York City, NY 10001" -191489,Flatscreen TV,1,300,04/22/19 17:19,"417 Washington St, Boston, MA 02215" -191490,Apple Airpods Headphones,1,150,04/05/19 12:52,"997 Willow St, Los Angeles, CA 90001" -191491,Lightning Charging Cable,1,14.95,04/06/19 21:21,"141 Spruce St, New York City, NY 10001" -191492,AAA Batteries (4-pack),2,2.99,04/06/19 09:08,"464 Sunset St, Atlanta, GA 30301" -191493,USB-C Charging Cable,1,11.95,04/06/19 20:27,"966 Lake St, Boston, MA 02215" -191494,Wired Headphones,1,11.99,04/28/19 12:09,"50 West St, San Francisco, CA 94016" -191495,AAA Batteries (4-pack),1,2.99,04/27/19 14:55,"602 2nd St, Los Angeles, CA 90001" -191496,AAA Batteries (4-pack),2,2.99,04/15/19 15:26,"911 Johnson St, New York City, NY 10001" -191497,Google Phone,1,600,04/11/19 23:29,"881 Elm St, Austin, TX 73301" -191497,USB-C Charging Cable,1,11.95,04/11/19 23:29,"881 Elm St, Austin, TX 73301" -191498,Wired Headphones,1,11.99,04/06/19 07:44,"153 Lincoln St, San Francisco, CA 94016" -191499,AA Batteries (4-pack),4,3.84,04/07/19 11:23,"439 Spruce St, San Francisco, CA 94016" -191500,Lightning Charging Cable,1,14.95,04/09/19 19:18,"411 Walnut St, San Francisco, CA 94016" -191501,Apple Airpods Headphones,1,150,04/17/19 21:19,"34 Elm St, Atlanta, GA 30301" -191502,AA Batteries (4-pack),1,3.84,04/23/19 19:52,"632 2nd St, New York City, NY 10001" -191503,Bose SoundSport Headphones,1,99.99,04/14/19 20:07,"314 Park St, San Francisco, CA 94016" -191504,Apple Airpods Headphones,1,150,04/21/19 20:13,"620 Lakeview St, Los Angeles, CA 90001" -191505,Lightning Charging Cable,1,14.95,04/21/19 15:18,"429 9th St, San Francisco, CA 94016" -191506,20in Monitor,1,109.99,04/04/19 18:58,"616 North St, Los Angeles, CA 90001" -191507,27in 4K Gaming Monitor,2,389.99,04/29/19 06:39,"740 8th St, Seattle, WA 98101" -191508,Macbook Pro Laptop,1,1700,04/18/19 08:47,"250 Madison St, Seattle, WA 98101" -191509,Bose SoundSport Headphones,1,99.99,04/26/19 21:04,"129 14th St, San Francisco, CA 94016" -191510,27in 4K Gaming Monitor,1,389.99,04/12/19 16:04,"535 Hickory St, Boston, MA 02215" -191511,AA Batteries (4-pack),2,3.84,04/08/19 17:59,"487 9th St, Los Angeles, CA 90001" -191512,USB-C Charging Cable,1,11.95,04/18/19 11:00,"447 Madison St, San Francisco, CA 94016" -191512,Apple Airpods Headphones,1,150,04/18/19 11:00,"447 Madison St, San Francisco, CA 94016" -191513,34in Ultrawide Monitor,1,379.99,04/23/19 19:25,"740 Madison St, Boston, MA 02215" -191514,34in Ultrawide Monitor,1,379.99,04/09/19 18:23,"916 Main St, Dallas, TX 75001" -191515,Apple Airpods Headphones,1,150,04/02/19 18:27,"34 Church St, Los Angeles, CA 90001" -191516,AA Batteries (4-pack),1,3.84,04/11/19 19:32,"19 9th St, Portland, OR 97035" -191517,Wired Headphones,1,11.99,04/22/19 17:44,"270 14th St, San Francisco, CA 94016" -191518,AAA Batteries (4-pack),1,2.99,04/30/19 17:56,"19 10th St, Austin, TX 73301" -191519,AA Batteries (4-pack),1,3.84,04/16/19 20:18,"774 Spruce St, New York City, NY 10001" -191520,USB-C Charging Cable,1,11.95,04/23/19 20:44,"191 Lincoln St, San Francisco, CA 94016" -191521,ThinkPad Laptop,1,999.99,04/02/19 09:59,"530 Willow St, San Francisco, CA 94016" -191522,Apple Airpods Headphones,1,150,04/05/19 16:21,"658 Wilson St, Los Angeles, CA 90001" -191523,Apple Airpods Headphones,1,150,04/02/19 12:40,"118 14th St, San Francisco, CA 94016" -191524,Apple Airpods Headphones,1,150,04/10/19 11:35,"488 Spruce St, San Francisco, CA 94016" -191525,AA Batteries (4-pack),1,3.84,04/03/19 22:33,"557 Jackson St, New York City, NY 10001" -191526,AAA Batteries (4-pack),1,2.99,04/28/19 18:11,"10 14th St, San Francisco, CA 94016" -191527,iPhone,1,700,04/28/19 11:53,"516 10th St, Boston, MA 02215" -191528,AA Batteries (4-pack),1,3.84,04/25/19 21:08,"668 7th St, San Francisco, CA 94016" -191529,34in Ultrawide Monitor,1,379.99,04/15/19 22:14,"886 6th St, Los Angeles, CA 90001" -191530,AAA Batteries (4-pack),1,2.99,04/15/19 00:18,"657 Highland St, New York City, NY 10001" -191531,Bose SoundSport Headphones,1,99.99,04/14/19 21:02,"242 Park St, Boston, MA 02215" -191532,Wired Headphones,1,11.99,04/08/19 12:46,"391 Maple St, New York City, NY 10001" -191533,Wired Headphones,1,11.99,04/15/19 13:50,"501 Cedar St, Los Angeles, CA 90001" -191534,USB-C Charging Cable,1,11.95,04/26/19 10:28,"129 Jefferson St, Austin, TX 73301" -191535,Apple Airpods Headphones,1,150,04/22/19 10:46,"729 Pine St, Portland, OR 97035" -191536,20in Monitor,1,109.99,04/21/19 01:23,"433 Sunset St, Los Angeles, CA 90001" -191537,AA Batteries (4-pack),1,3.84,04/20/19 11:50,"747 Highland St, Dallas, TX 75001" -191538,Google Phone,1,600,04/01/19 16:29,"278 Madison St, Los Angeles, CA 90001" -191538,USB-C Charging Cable,2,11.95,04/01/19 16:29,"278 Madison St, Los Angeles, CA 90001" -191539,AA Batteries (4-pack),1,3.84,04/03/19 12:22,"431 North St, San Francisco, CA 94016" -191540,AA Batteries (4-pack),1,3.84,04/27/19 20:11,"555 Pine St, Los Angeles, CA 90001" -191541,Bose SoundSport Headphones,2,99.99,04/30/19 12:42,"102 Hill St, New York City, NY 10001" -191542,Apple Airpods Headphones,1,150,04/24/19 21:49,"951 Lakeview St, Dallas, TX 75001" -191543,AAA Batteries (4-pack),1,2.99,04/27/19 05:38,"979 Highland St, Austin, TX 73301" -191544,Lightning Charging Cable,1,14.95,04/11/19 22:45,"525 Maple St, San Francisco, CA 94016" -191545,iPhone,1,700,04/22/19 03:45,"438 Willow St, Los Angeles, CA 90001" -191546,AA Batteries (4-pack),1,3.84,04/03/19 23:33,"953 Pine St, Los Angeles, CA 90001" -191547,34in Ultrawide Monitor,1,379.99,04/12/19 15:01,"984 14th St, Los Angeles, CA 90001" -191547,iPhone,1,700,04/12/19 15:01,"984 14th St, Los Angeles, CA 90001" -191548,Bose SoundSport Headphones,1,99.99,04/22/19 19:30,"521 South St, Portland, OR 97035" -191549,Lightning Charging Cable,1,14.95,04/16/19 16:17,"16 Lakeview St, Los Angeles, CA 90001" -191550,Macbook Pro Laptop,1,1700,04/18/19 01:11,"17 Church St, Boston, MA 02215" -191551,Apple Airpods Headphones,1,150,04/17/19 14:25,"942 Center St, Los Angeles, CA 90001" -191552,Wired Headphones,1,11.99,04/02/19 21:33,"220 Hill St, San Francisco, CA 94016" -191553,Lightning Charging Cable,1,14.95,04/03/19 22:29,"171 Dogwood St, Boston, MA 02215" -191554,USB-C Charging Cable,1,11.95,04/11/19 18:45,"286 Meadow St, San Francisco, CA 94016" -191555,Wired Headphones,2,11.99,04/10/19 12:21,"968 Lakeview St, San Francisco, CA 94016" -191556,Wired Headphones,1,11.99,04/20/19 18:15,"148 North St, Dallas, TX 75001" -191557,AAA Batteries (4-pack),1,2.99,04/09/19 12:27,"606 Pine St, Boston, MA 02215" -191558,27in 4K Gaming Monitor,1,389.99,04/01/19 14:19,"743 14th St, Los Angeles, CA 90001" -191559,Apple Airpods Headphones,1,150,04/29/19 11:03,"551 West St, Seattle, WA 98101" -191560,27in 4K Gaming Monitor,1,389.99,04/07/19 19:49,"256 Highland St, Dallas, TX 75001" -191561,Bose SoundSport Headphones,1,99.99,04/02/19 12:29,"576 5th St, New York City, NY 10001" -191561,AAA Batteries (4-pack),1,2.99,04/02/19 12:29,"576 5th St, New York City, NY 10001" -191562,27in FHD Monitor,1,149.99,04/30/19 12:37,"80 Pine St, Boston, MA 02215" -191563,USB-C Charging Cable,1,11.95,04/11/19 20:37,"624 2nd St, San Francisco, CA 94016" -191564,20in Monitor,1,109.99,04/04/19 20:21,"33 Ridge St, San Francisco, CA 94016" -191565,Wired Headphones,1,11.99,04/04/19 15:06,"110 6th St, San Francisco, CA 94016" -191566,Apple Airpods Headphones,1,150,04/09/19 12:50,"811 Willow St, Boston, MA 02215" -191567,34in Ultrawide Monitor,1,379.99,04/16/19 21:06,"717 Highland St, Los Angeles, CA 90001" -191568,Google Phone,1,600,04/01/19 19:38,"954 Johnson St, Boston, MA 02215" -191569,Wired Headphones,1,11.99,04/29/19 12:02,"517 Park St, Dallas, TX 75001" -191570,USB-C Charging Cable,1,11.95,04/25/19 19:01,"111 12th St, Los Angeles, CA 90001" -191571,AA Batteries (4-pack),1,3.84,04/04/19 07:52,"496 Pine St, San Francisco, CA 94016" -191572,Wired Headphones,1,11.99,04/20/19 00:33,"966 Hickory St, Austin, TX 73301" -191573,Bose SoundSport Headphones,1,99.99,04/26/19 07:56,"588 Church St, San Francisco, CA 94016" -191574,Wired Headphones,1,11.99,04/12/19 08:25,"686 Highland St, San Francisco, CA 94016" -191575,AAA Batteries (4-pack),2,2.99,04/29/19 12:48,"903 North St, Seattle, WA 98101" -191576,27in FHD Monitor,1,149.99,04/02/19 12:20,"432 Spruce St, San Francisco, CA 94016" -191577,Lightning Charging Cable,1,14.95,04/10/19 05:04,"258 River St, Boston, MA 02215" -191578,AAA Batteries (4-pack),1,2.99,04/25/19 19:13,"521 1st St, San Francisco, CA 94016" -191579,Google Phone,1,600,04/10/19 18:25,"144 Hickory St, Boston, MA 02215" -191580,ThinkPad Laptop,1,999.99,04/18/19 15:02,"963 Maple St, Seattle, WA 98101" -191581,Apple Airpods Headphones,1,150,04/01/19 15:11,"223 12th St, San Francisco, CA 94016" -191582,Lightning Charging Cable,1,14.95,04/16/19 13:29,"796 14th St, Austin, TX 73301" -191583,Lightning Charging Cable,1,14.95,04/19/19 12:28,"124 9th St, Los Angeles, CA 90001" -191584,Wired Headphones,1,11.99,04/26/19 13:43,"463 Johnson St, San Francisco, CA 94016" -191585,20in Monitor,1,109.99,04/01/19 05:58,"686 Main St, New York City, NY 10001" -191586,Lightning Charging Cable,1,14.95,04/10/19 17:36,"939 9th St, Boston, MA 02215" -191587,USB-C Charging Cable,1,11.95,04/28/19 17:49,"552 Johnson St, San Francisco, CA 94016" -191588,AA Batteries (4-pack),1,3.84,04/20/19 12:35,"273 Elm St, San Francisco, CA 94016" -191589,34in Ultrawide Monitor,1,379.99,04/07/19 19:00,"60 14th St, San Francisco, CA 94016" -191590,AAA Batteries (4-pack),3,2.99,04/13/19 13:22,"110 Washington St, Austin, TX 73301" -191591,USB-C Charging Cable,1,11.95,04/14/19 22:05,"340 Forest St, Dallas, TX 75001" -191592,27in 4K Gaming Monitor,1,389.99,04/11/19 00:18,"697 Johnson St, Portland, OR 97035" -191593,USB-C Charging Cable,1,11.95,04/24/19 18:35,"404 Ridge St, New York City, NY 10001" -191594,Apple Airpods Headphones,1,150,04/26/19 15:43,"569 Highland St, Seattle, WA 98101" -191595,Lightning Charging Cable,1,14.95,04/18/19 11:39,"98 Washington St, Portland, ME 04101" -191596,Bose SoundSport Headphones,1,99.99,04/15/19 14:33,"76 Forest St, Austin, TX 73301" -191597,Google Phone,1,600,04/14/19 12:08,"464 Willow St, Los Angeles, CA 90001" -191598,Google Phone,1,600,04/28/19 13:25,"512 7th St, Atlanta, GA 30301" -191599,Apple Airpods Headphones,1,150,04/11/19 19:06,"51 River St, San Francisco, CA 94016" -191600,34in Ultrawide Monitor,1,379.99,04/02/19 13:49,"772 North St, San Francisco, CA 94016" -191601,Wired Headphones,1,11.99,04/20/19 17:11,"670 Spruce St, New York City, NY 10001" -191602,Lightning Charging Cable,1,14.95,04/19/19 19:47,"349 Elm St, Boston, MA 02215" -191603,Wired Headphones,1,11.99,04/10/19 08:01,"373 Lake St, San Francisco, CA 94016" -191604,Lightning Charging Cable,1,14.95,04/23/19 09:28,"149 Dogwood St, Portland, OR 97035" -191605,34in Ultrawide Monitor,1,379.99,04/23/19 19:17,"144 Madison St, Seattle, WA 98101" -191606,AA Batteries (4-pack),1,3.84,04/07/19 15:25,"150 Jefferson St, Boston, MA 02215" -191607,USB-C Charging Cable,3,11.95,04/18/19 09:22,"221 8th St, Atlanta, GA 30301" -191608,Google Phone,1,600,04/21/19 22:47,"172 Chestnut St, Seattle, WA 98101" -191608,USB-C Charging Cable,1,11.95,04/21/19 22:47,"172 Chestnut St, Seattle, WA 98101" -191609,AAA Batteries (4-pack),2,2.99,04/19/19 21:48,"149 Wilson St, Dallas, TX 75001" -191610,AAA Batteries (4-pack),1,2.99,04/13/19 11:38,"14 7th St, Los Angeles, CA 90001" -191610,AA Batteries (4-pack),2,3.84,04/13/19 11:38,"14 7th St, Los Angeles, CA 90001" -191611,Lightning Charging Cable,1,14.95,04/03/19 18:25,"224 Ridge St, San Francisco, CA 94016" -191612,AA Batteries (4-pack),1,3.84,04/08/19 11:47,"945 Lincoln St, Los Angeles, CA 90001" -191613,Macbook Pro Laptop,1,1700,04/28/19 12:36,"275 Highland St, San Francisco, CA 94016" -191614,iPhone,1,700,04/06/19 00:37,"689 Park St, Seattle, WA 98101" -191615,27in FHD Monitor,1,149.99,04/13/19 17:16,"102 Hill St, New York City, NY 10001" -191616,Apple Airpods Headphones,1,150,04/10/19 13:23,"762 Main St, San Francisco, CA 94016" -191617,USB-C Charging Cable,1,11.95,04/25/19 08:30,"18 South St, Boston, MA 02215" -191617,Wired Headphones,1,11.99,04/25/19 08:30,"18 South St, Boston, MA 02215" -191618,Bose SoundSport Headphones,1,99.99,04/01/19 13:01,"812 6th St, Atlanta, GA 30301" -191619,20in Monitor,1,109.99,04/25/19 16:25,"157 5th St, Atlanta, GA 30301" -191620,AAA Batteries (4-pack),3,2.99,04/24/19 13:16,"982 Washington St, San Francisco, CA 94016" -191621,USB-C Charging Cable,1,11.95,04/21/19 19:03,"18 1st St, San Francisco, CA 94016" -191622,Lightning Charging Cable,1,14.95,04/09/19 23:28,"150 7th St, Boston, MA 02215" -191623,USB-C Charging Cable,1,11.95,04/03/19 19:31,"873 Adams St, New York City, NY 10001" -191624,Apple Airpods Headphones,1,150,04/30/19 13:59,"795 Hickory St, Portland, OR 97035" -191625,AAA Batteries (4-pack),1,2.99,04/19/19 09:12,"320 Cedar St, San Francisco, CA 94016" -191626,Macbook Pro Laptop,1,1700,04/18/19 20:38,"178 Chestnut St, Boston, MA 02215" -191627,Wired Headphones,1,11.99,04/10/19 21:09,"935 10th St, San Francisco, CA 94016" -191628,AA Batteries (4-pack),3,3.84,04/01/19 19:58,"198 Highland St, San Francisco, CA 94016" -191629,USB-C Charging Cable,1,11.95,04/03/19 08:13,"308 Washington St, Boston, MA 02215" -191630,Apple Airpods Headphones,1,150,04/10/19 17:44,"598 10th St, Los Angeles, CA 90001" -191631,iPhone,1,700,04/29/19 14:44,"63 Ridge St, Los Angeles, CA 90001" -191632,27in FHD Monitor,1,149.99,04/05/19 07:11,"619 West St, Portland, ME 04101" -191633,AAA Batteries (4-pack),1,2.99,04/24/19 14:29,"601 Lincoln St, New York City, NY 10001" -191634,Macbook Pro Laptop,1,1700,04/27/19 13:00,"343 Wilson St, Portland, OR 97035" -191635,Lightning Charging Cable,1,14.95,04/22/19 16:20,"163 Pine St, Los Angeles, CA 90001" -191636,USB-C Charging Cable,1,11.95,04/05/19 16:18,"384 North St, Los Angeles, CA 90001" -191637,Bose SoundSport Headphones,1,99.99,04/14/19 11:22,"865 Jackson St, San Francisco, CA 94016" -191638,27in 4K Gaming Monitor,1,389.99,04/22/19 10:45,"3 West St, San Francisco, CA 94016" -191639,27in 4K Gaming Monitor,1,389.99,04/12/19 12:38,"943 Lincoln St, Boston, MA 02215" -191640,Wired Headphones,1,11.99,04/16/19 11:12,"875 1st St, Boston, MA 02215" -191641,Bose SoundSport Headphones,1,99.99,04/23/19 15:24,"224 Maple St, San Francisco, CA 94016" -191642,ThinkPad Laptop,1,999.99,04/17/19 12:47,"805 Dogwood St, New York City, NY 10001" -191643,USB-C Charging Cable,1,11.95,04/28/19 19:09,"102 5th St, Seattle, WA 98101" -191644,Wired Headphones,1,11.99,04/17/19 10:21,"880 Elm St, Seattle, WA 98101" -191645,Lightning Charging Cable,1,14.95,04/09/19 07:12,"690 1st St, Seattle, WA 98101" -191646,AA Batteries (4-pack),1,3.84,04/28/19 14:17,"195 Church St, Los Angeles, CA 90001" -191647,Apple Airpods Headphones,1,150,04/20/19 21:44,"172 Lincoln St, Portland, OR 97035" -191648,Vareebadd Phone,1,400,04/04/19 18:55,"235 Spruce St, Portland, OR 97035" -191648,Lightning Charging Cable,1,14.95,04/04/19 18:55,"235 Spruce St, Portland, OR 97035" -191649,Lightning Charging Cable,1,14.95,04/03/19 20:37,"266 Lincoln St, Portland, OR 97035" -191650,Bose SoundSport Headphones,1,99.99,04/28/19 21:25,"903 2nd St, Boston, MA 02215" -191651,AAA Batteries (4-pack),1,2.99,04/12/19 13:42,"212 Lincoln St, Los Angeles, CA 90001" -191652,Apple Airpods Headphones,1,150,04/23/19 14:08,"492 Hickory St, Los Angeles, CA 90001" -191653,Bose SoundSport Headphones,1,99.99,04/13/19 21:14,"65 Willow St, Atlanta, GA 30301" -191654,34in Ultrawide Monitor,1,379.99,04/02/19 12:27,"78 Hill St, San Francisco, CA 94016" -191655,ThinkPad Laptop,1,999.99,04/23/19 14:26,"829 11th St, Boston, MA 02215" -191656,USB-C Charging Cable,1,11.95,04/04/19 08:59,"925 Cherry St, New York City, NY 10001" -191657,Google Phone,1,600,04/14/19 08:31,"594 Adams St, San Francisco, CA 94016" -191658,AA Batteries (4-pack),1,3.84,04/14/19 19:41,"956 Sunset St, San Francisco, CA 94016" -191659,LG Washing Machine,1,600.0,04/12/19 11:37,"3 Pine St, Dallas, TX 75001" -191660,iPhone,1,700,04/23/19 21:08,"673 Hill St, San Francisco, CA 94016" -191661,34in Ultrawide Monitor,1,379.99,04/04/19 13:22,"904 North St, San Francisco, CA 94016" -191662,Wired Headphones,1,11.99,04/21/19 20:58,"247 Forest St, Boston, MA 02215" -191663,Lightning Charging Cable,1,14.95,04/09/19 19:47,"95 8th St, New York City, NY 10001" -191664,27in FHD Monitor,1,149.99,04/22/19 11:17,"624 Cedar St, Portland, OR 97035" -191665,iPhone,1,700,04/10/19 22:58,"127 6th St, New York City, NY 10001" -191666,AA Batteries (4-pack),2,3.84,04/03/19 18:59,"414 Wilson St, Los Angeles, CA 90001" -191667,Lightning Charging Cable,1,14.95,04/04/19 23:00,"521 14th St, San Francisco, CA 94016" -191668,ThinkPad Laptop,1,999.99,04/04/19 10:25,"187 Jefferson St, New York City, NY 10001" -191669,Apple Airpods Headphones,1,150,04/18/19 10:48,"501 North St, New York City, NY 10001" -191670,AA Batteries (4-pack),1,3.84,04/14/19 18:56,"871 Highland St, Los Angeles, CA 90001" -191671,27in 4K Gaming Monitor,1,389.99,04/23/19 20:26,"547 Hickory St, Dallas, TX 75001" -191672,Flatscreen TV,1,300,04/09/19 20:35,"595 Washington St, Boston, MA 02215" -191673,AA Batteries (4-pack),1,3.84,04/16/19 13:25,"196 Pine St, San Francisco, CA 94016" -191674,Lightning Charging Cable,1,14.95,04/16/19 09:05,"632 Elm St, Los Angeles, CA 90001" -191675,USB-C Charging Cable,1,11.95,04/10/19 22:06,"441 Sunset St, Seattle, WA 98101" -191676,Lightning Charging Cable,1,14.95,04/22/19 22:17,"962 Jackson St, New York City, NY 10001" -191677,Flatscreen TV,1,300,04/20/19 11:39,"183 Park St, Portland, OR 97035" -191678,AAA Batteries (4-pack),1,2.99,04/12/19 00:29,"420 Sunset St, San Francisco, CA 94016" -191679,Wired Headphones,1,11.99,04/14/19 14:40,"613 Jefferson St, Boston, MA 02215" -191680,iPhone,1,700,04/11/19 11:51,"895 Adams St, Dallas, TX 75001" -191681,20in Monitor,1,109.99,04/20/19 15:56,"280 River St, Austin, TX 73301" -191682,Flatscreen TV,1,300,04/11/19 21:54,"73 Cherry St, Portland, OR 97035" -191683,Apple Airpods Headphones,1,150,04/24/19 03:55,"661 Spruce St, Austin, TX 73301" -191684,USB-C Charging Cable,1,11.95,04/15/19 13:05,"50 Hill St, Austin, TX 73301" -191685,Wired Headphones,1,11.99,04/08/19 18:32,"340 South St, Boston, MA 02215" -191686,Apple Airpods Headphones,1,150,04/21/19 00:38,"785 13th St, San Francisco, CA 94016" -191687,Flatscreen TV,1,300,04/29/19 16:07,"658 Spruce St, Dallas, TX 75001" -191688,Macbook Pro Laptop,1,1700,04/26/19 05:45,"207 Meadow St, Los Angeles, CA 90001" -191689,34in Ultrawide Monitor,1,379.99,04/18/19 07:10,"738 Lakeview St, San Francisco, CA 94016" -191690,Bose SoundSport Headphones,1,99.99,04/09/19 02:07,"737 Center St, Los Angeles, CA 90001" -191691,Lightning Charging Cable,1,14.95,04/01/19 11:17,"380 Hill St, Los Angeles, CA 90001" -191692,AAA Batteries (4-pack),2,2.99,04/22/19 02:12,"65 11th St, San Francisco, CA 94016" -191693,34in Ultrawide Monitor,1,379.99,04/14/19 22:39,"926 West St, Austin, TX 73301" -191694,Apple Airpods Headphones,1,150,04/12/19 21:35,"941 12th St, San Francisco, CA 94016" -191695,Vareebadd Phone,1,400,04/07/19 14:14,"893 Cherry St, Boston, MA 02215" -191696,Wired Headphones,1,11.99,04/18/19 19:30,"742 Meadow St, Los Angeles, CA 90001" -191697,USB-C Charging Cable,1,11.95,04/07/19 20:12,"681 Johnson St, San Francisco, CA 94016" -191698,Lightning Charging Cable,1,14.95,04/07/19 14:09,"141 Jackson St, New York City, NY 10001" -191699,Macbook Pro Laptop,1,1700,04/19/19 21:34,"894 8th St, Portland, OR 97035" -191700,27in FHD Monitor,1,149.99,04/23/19 15:36,"489 Spruce St, Dallas, TX 75001" -191701,Bose SoundSport Headphones,1,99.99,04/30/19 10:39,"843 Maple St, Austin, TX 73301" -191702,Lightning Charging Cable,1,14.95,04/23/19 21:45,"63 14th St, San Francisco, CA 94016" -191703,Google Phone,1,600,04/05/19 18:05,"689 11th St, San Francisco, CA 94016" -191703,Bose SoundSport Headphones,1,99.99,04/05/19 18:05,"689 11th St, San Francisco, CA 94016" -191704,Lightning Charging Cable,1,14.95,04/16/19 14:10,"841 10th St, Los Angeles, CA 90001" -191705,Apple Airpods Headphones,1,150,04/30/19 15:34,"992 Jefferson St, Portland, OR 97035" -191706,AA Batteries (4-pack),1,3.84,04/20/19 18:15,"742 Highland St, Austin, TX 73301" -191707,20in Monitor,1,109.99,04/01/19 17:07,"810 12th St, Los Angeles, CA 90001" -191707,Lightning Charging Cable,1,14.95,04/01/19 17:07,"810 12th St, Los Angeles, CA 90001" -191708,AAA Batteries (4-pack),1,2.99,04/04/19 03:51,"777 Washington St, Atlanta, GA 30301" -191709,Lightning Charging Cable,1,14.95,04/02/19 22:04,"516 4th St, Los Angeles, CA 90001" -191710,AAA Batteries (4-pack),1,2.99,04/25/19 20:59,"177 Hill St, Los Angeles, CA 90001" -191711,ThinkPad Laptop,1,999.99,04/29/19 09:56,"728 Meadow St, Boston, MA 02215" -191712,Lightning Charging Cable,1,14.95,04/09/19 15:52,"621 Meadow St, Los Angeles, CA 90001" -191713,AA Batteries (4-pack),1,3.84,04/09/19 13:32,"322 Walnut St, Los Angeles, CA 90001" -191714,USB-C Charging Cable,1,11.95,04/14/19 15:54,"644 West St, Dallas, TX 75001" -191715,iPhone,1,700,04/02/19 11:58,"345 Church St, Atlanta, GA 30301" -191715,Wired Headphones,1,11.99,04/02/19 11:58,"345 Church St, Atlanta, GA 30301" -191716,Flatscreen TV,1,300,04/06/19 12:00,"402 Jackson St, Los Angeles, CA 90001" -191717,AAA Batteries (4-pack),2,2.99,04/10/19 19:30,"766 Church St, New York City, NY 10001" -191718,AA Batteries (4-pack),1,3.84,04/29/19 15:22,"620 Lincoln St, Austin, TX 73301" -191719,AAA Batteries (4-pack),1,2.99,04/11/19 19:19,"20 Hickory St, Seattle, WA 98101" -191720,ThinkPad Laptop,1,999.99,04/30/19 09:48,"719 2nd St, San Francisco, CA 94016" -191721,Lightning Charging Cable,1,14.95,04/11/19 17:22,"774 Adams St, Seattle, WA 98101" -191722,Bose SoundSport Headphones,1,99.99,04/14/19 18:35,"185 Dogwood St, Boston, MA 02215" -191723,34in Ultrawide Monitor,1,379.99,04/17/19 10:53,"6 Center St, Boston, MA 02215" -191724,27in FHD Monitor,1,149.99,04/17/19 11:39,"629 2nd St, San Francisco, CA 94016" -191725,USB-C Charging Cable,1,11.95,04/12/19 14:34,"566 Spruce St, Los Angeles, CA 90001" -191726,ThinkPad Laptop,1,999.99,04/11/19 07:46,"507 Adams St, Los Angeles, CA 90001" -191727,27in 4K Gaming Monitor,1,389.99,04/02/19 16:43,"883 Maple St, New York City, NY 10001" -191728,Wired Headphones,2,11.99,04/17/19 23:15,"748 2nd St, Boston, MA 02215" -191729,Bose SoundSport Headphones,1,99.99,04/23/19 18:35,"449 4th St, Portland, OR 97035" -191730,USB-C Charging Cable,1,11.95,04/12/19 17:27,"933 Walnut St, San Francisco, CA 94016" -191731,Wired Headphones,1,11.99,04/02/19 09:15,"698 Spruce St, Atlanta, GA 30301" -191732,Apple Airpods Headphones,1,150,04/29/19 19:51,"51 2nd St, Austin, TX 73301" -191733,Lightning Charging Cable,1,14.95,04/07/19 14:19,"233 1st St, Los Angeles, CA 90001" -191734,AAA Batteries (4-pack),1,2.99,04/21/19 22:00,"651 River St, Atlanta, GA 30301" -191735,iPhone,1,700,04/30/19 11:13,"607 Pine St, Boston, MA 02215" -191735,Apple Airpods Headphones,1,150,04/30/19 11:13,"607 Pine St, Boston, MA 02215" -191736,USB-C Charging Cable,1,11.95,04/05/19 14:17,"365 Center St, San Francisco, CA 94016" -191737,Lightning Charging Cable,1,14.95,04/12/19 17:08,"30 4th St, San Francisco, CA 94016" -191738,Lightning Charging Cable,1,14.95,04/21/19 12:29,"314 12th St, Los Angeles, CA 90001" -191739,Bose SoundSport Headphones,1,99.99,04/06/19 15:41,"48 Johnson St, Seattle, WA 98101" -191740,Flatscreen TV,1,300,04/23/19 17:43,"341 River St, Dallas, TX 75001" -191741,Google Phone,1,600,04/04/19 23:35,"191 South St, Los Angeles, CA 90001" -191741,USB-C Charging Cable,1,11.95,04/04/19 23:35,"191 South St, Los Angeles, CA 90001" -191742,iPhone,1,700,04/03/19 16:03,"108 1st St, Boston, MA 02215" -191742,Apple Airpods Headphones,1,150,04/03/19 16:03,"108 1st St, Boston, MA 02215" -191742,Wired Headphones,1,11.99,04/03/19 16:03,"108 1st St, Boston, MA 02215" -191743,Lightning Charging Cable,1,14.95,04/27/19 12:40,"61 Walnut St, Dallas, TX 75001" -191744,Vareebadd Phone,1,400,04/04/19 09:56,"598 7th St, New York City, NY 10001" -191745,Wired Headphones,1,11.99,04/04/19 14:11,"188 Lake St, Boston, MA 02215" -191746,AA Batteries (4-pack),2,3.84,04/25/19 06:09,"440 Willow St, Austin, TX 73301" -191747,Bose SoundSport Headphones,1,99.99,04/28/19 10:27,"255 6th St, Los Angeles, CA 90001" -191748,AA Batteries (4-pack),1,3.84,04/11/19 18:20,"405 Adams St, Boston, MA 02215" -191749,Bose SoundSport Headphones,1,99.99,04/02/19 12:12,"752 Church St, Portland, OR 97035" -191750,USB-C Charging Cable,1,11.95,04/18/19 14:38,"918 5th St, Austin, TX 73301" -191751,Bose SoundSport Headphones,1,99.99,04/29/19 00:59,"22 Sunset St, Los Angeles, CA 90001" -191752,USB-C Charging Cable,1,11.95,04/17/19 11:19,"19 Lincoln St, Boston, MA 02215" -191753,Macbook Pro Laptop,1,1700,04/26/19 23:03,"814 Maple St, New York City, NY 10001" -191754,Apple Airpods Headphones,1,150,04/17/19 11:46,"659 Church St, Los Angeles, CA 90001" -191755,USB-C Charging Cable,2,11.95,04/11/19 09:12,"985 Willow St, Austin, TX 73301" -,,,,, -191756,Apple Airpods Headphones,1,150,04/28/19 20:06,"573 11th St, Los Angeles, CA 90001" -191757,Wired Headphones,1,11.99,04/04/19 09:27,"71 Elm St, New York City, NY 10001" -191758,USB-C Charging Cable,1,11.95,04/13/19 19:31,"188 North St, Atlanta, GA 30301" -191759,AAA Batteries (4-pack),2,2.99,04/17/19 10:47,"955 West St, San Francisco, CA 94016" -191760,Flatscreen TV,1,300,04/04/19 10:43,"179 1st St, Portland, OR 97035" -191761,AA Batteries (4-pack),1,3.84,04/05/19 11:35,"146 Forest St, Boston, MA 02215" -191762,AA Batteries (4-pack),1,3.84,04/10/19 12:58,"646 Johnson St, New York City, NY 10001" -191763,AAA Batteries (4-pack),3,2.99,04/17/19 09:38,"254 Lake St, Austin, TX 73301" -191764,AA Batteries (4-pack),2,3.84,04/10/19 16:36,"526 7th St, New York City, NY 10001" -191765,Lightning Charging Cable,1,14.95,04/06/19 20:24,"19 4th St, Boston, MA 02215" -191766,USB-C Charging Cable,1,11.95,04/17/19 12:19,"283 Madison St, San Francisco, CA 94016" -191767,20in Monitor,1,109.99,04/19/19 17:52,"187 12th St, Portland, ME 04101" -191768,iPhone,1,700,04/16/19 11:36,"195 Ridge St, San Francisco, CA 94016" -191769,Google Phone,1,600,04/30/19 11:07,"499 Sunset St, Atlanta, GA 30301" -191770,Wired Headphones,1,11.99,04/21/19 17:28,"309 13th St, San Francisco, CA 94016" -191771,Lightning Charging Cable,1,14.95,04/21/19 14:56,"497 Elm St, San Francisco, CA 94016" -191772,Lightning Charging Cable,1,14.95,04/16/19 00:04,"553 Spruce St, San Francisco, CA 94016" -191773,AA Batteries (4-pack),1,3.84,04/19/19 08:41,"864 14th St, San Francisco, CA 94016" -191774,AA Batteries (4-pack),1,3.84,05/01/19 00:51,"779 11th St, Boston, MA 02215" -191775,Apple Airpods Headphones,1,150,04/25/19 15:09,"974 Cherry St, San Francisco, CA 94016" -191776,USB-C Charging Cable,1,11.95,04/27/19 19:10,"314 8th St, New York City, NY 10001" -191777,AA Batteries (4-pack),1,3.84,04/30/19 15:01,"132 4th St, San Francisco, CA 94016" -191778,AA Batteries (4-pack),3,3.84,04/27/19 20:43,"649 13th St, San Francisco, CA 94016" -191779,AAA Batteries (4-pack),1,2.99,04/17/19 19:19,"408 Lakeview St, San Francisco, CA 94016" -191780,Wired Headphones,1,11.99,04/27/19 00:34,"506 Spruce St, Seattle, WA 98101" -191781,USB-C Charging Cable,1,11.95,04/25/19 08:23,"214 North St, Los Angeles, CA 90001" -191782,ThinkPad Laptop,1,999.99,04/23/19 01:58,"662 Lincoln St, Boston, MA 02215" -191783,Flatscreen TV,1,300,04/07/19 07:53,"920 West St, San Francisco, CA 94016" -191784,AAA Batteries (4-pack),3,2.99,04/18/19 20:00,"421 Center St, Austin, TX 73301" -191785,AAA Batteries (4-pack),1,2.99,04/13/19 09:41,"503 13th St, Austin, TX 73301" -191786,Bose SoundSport Headphones,1,99.99,04/28/19 13:07,"288 Johnson St, Atlanta, GA 30301" -191787,AA Batteries (4-pack),1,3.84,04/20/19 13:08,"826 5th St, Austin, TX 73301" -191788,Lightning Charging Cable,1,14.95,04/01/19 07:17,"310 South St, San Francisco, CA 94016" -191789,AAA Batteries (4-pack),1,2.99,04/09/19 15:26,"595 Jackson St, Boston, MA 02215" -191790,34in Ultrawide Monitor,1,379.99,04/21/19 11:51,"54 Spruce St, New York City, NY 10001" -191791,AA Batteries (4-pack),1,3.84,04/20/19 20:22,"908 River St, San Francisco, CA 94016" -191792,34in Ultrawide Monitor,1,379.99,04/21/19 23:19,"165 Maple St, Boston, MA 02215" -191793,AAA Batteries (4-pack),1,2.99,04/18/19 15:29,"439 Ridge St, San Francisco, CA 94016" -191794,ThinkPad Laptop,1,999.99,04/13/19 16:12,"635 Wilson St, San Francisco, CA 94016" -191795,Vareebadd Phone,1,400,04/23/19 11:12,"294 West St, Portland, OR 97035" -191796,AA Batteries (4-pack),1,3.84,04/30/19 14:13,"105 Chestnut St, New York City, NY 10001" -191797,AA Batteries (4-pack),2,3.84,04/27/19 08:31,"14 Lincoln St, Los Angeles, CA 90001" -191798,AA Batteries (4-pack),1,3.84,04/13/19 06:34,"837 Maple St, San Francisco, CA 94016" -191799,27in FHD Monitor,1,149.99,04/05/19 19:24,"833 13th St, New York City, NY 10001" -191800,27in 4K Gaming Monitor,1,389.99,04/06/19 13:58,"307 12th St, Los Angeles, CA 90001" -191801,27in FHD Monitor,1,149.99,04/10/19 19:04,"788 Ridge St, Los Angeles, CA 90001" -191802,Flatscreen TV,1,300,04/15/19 12:33,"23 Washington St, Portland, ME 04101" -191803,USB-C Charging Cable,1,11.95,04/16/19 13:57,"91 Jefferson St, New York City, NY 10001" -191804,Bose SoundSport Headphones,1,99.99,04/13/19 09:22,"120 Lincoln St, Los Angeles, CA 90001" -191805,AAA Batteries (4-pack),2,2.99,04/16/19 13:38,"42 Ridge St, New York City, NY 10001" -191806,Apple Airpods Headphones,1,150,04/05/19 18:13,"673 River St, San Francisco, CA 94016" -191807,Lightning Charging Cable,2,14.95,04/21/19 23:08,"299 Forest St, Los Angeles, CA 90001" -191808,Wired Headphones,1,11.99,04/19/19 05:25,"531 Jackson St, Los Angeles, CA 90001" -191809,LG Dryer,1,600.0,04/01/19 10:57,"986 Ridge St, San Francisco, CA 94016" -191810,ThinkPad Laptop,1,999.99,04/03/19 13:12,"574 Cedar St, San Francisco, CA 94016" -191811,Wired Headphones,1,11.99,04/09/19 15:36,"140 Lincoln St, Atlanta, GA 30301" -191812,Lightning Charging Cable,1,14.95,04/23/19 11:02,"359 11th St, Dallas, TX 75001" -191813,27in 4K Gaming Monitor,1,389.99,04/10/19 07:39,"787 4th St, San Francisco, CA 94016" -191814,AA Batteries (4-pack),1,3.84,04/03/19 19:19,"739 11th St, Portland, OR 97035" -191815,AAA Batteries (4-pack),1,2.99,04/12/19 21:49,"126 Meadow St, San Francisco, CA 94016" -191816,Wired Headphones,1,11.99,04/04/19 17:22,"547 10th St, San Francisco, CA 94016" -191817,Flatscreen TV,1,300,04/30/19 14:53,"857 10th St, Atlanta, GA 30301" -191818,27in FHD Monitor,1,149.99,04/25/19 15:22,"242 Pine St, Dallas, TX 75001" -191819,Wired Headphones,1,11.99,04/20/19 09:53,"745 Maple St, Seattle, WA 98101" -191820,34in Ultrawide Monitor,1,379.99,04/23/19 16:45,"388 South St, New York City, NY 10001" -191821,Flatscreen TV,1,300,04/26/19 12:15,"651 Main St, San Francisco, CA 94016" -191822,Wired Headphones,1,11.99,04/25/19 10:48,"603 Forest St, Boston, MA 02215" -191823,AAA Batteries (4-pack),2,2.99,04/30/19 13:04,"178 11th St, San Francisco, CA 94016" -191824,34in Ultrawide Monitor,1,379.99,04/30/19 16:09,"419 10th St, Los Angeles, CA 90001" -191825,Wired Headphones,2,11.99,04/10/19 15:02,"417 Cherry St, New York City, NY 10001" -191826,Lightning Charging Cable,1,14.95,04/20/19 21:58,"549 Wilson St, Los Angeles, CA 90001" -191827,Bose SoundSport Headphones,1,99.99,04/03/19 16:18,"788 Meadow St, Portland, OR 97035" -191828,Macbook Pro Laptop,1,1700,04/08/19 15:07,"119 West St, Portland, OR 97035" -191829,20in Monitor,1,109.99,04/18/19 10:42,"557 Jackson St, Dallas, TX 75001" -191830,Wired Headphones,2,11.99,04/03/19 18:10,"971 2nd St, New York City, NY 10001" -191831,AAA Batteries (4-pack),2,2.99,04/22/19 16:10,"37 West St, Boston, MA 02215" -191832,AAA Batteries (4-pack),1,2.99,04/09/19 00:46,"118 Spruce St, Dallas, TX 75001" -191833,AA Batteries (4-pack),4,3.84,04/29/19 21:56,"233 River St, New York City, NY 10001" -191834,iPhone,1,700,04/26/19 13:17,"433 9th St, New York City, NY 10001" -191835,Apple Airpods Headphones,1,150,04/13/19 12:13,"629 1st St, New York City, NY 10001" -191836,34in Ultrawide Monitor,1,379.99,04/18/19 13:38,"99 Dogwood St, Dallas, TX 75001" -191837,iPhone,1,700,04/15/19 12:57,"521 12th St, Boston, MA 02215" -191837,Wired Headphones,1,11.99,04/15/19 12:57,"521 12th St, Boston, MA 02215" -191838,Lightning Charging Cable,1,14.95,04/12/19 15:05,"64 10th St, Los Angeles, CA 90001" -191839,USB-C Charging Cable,2,11.95,04/02/19 17:42,"833 1st St, San Francisco, CA 94016" -191840,20in Monitor,1,109.99,04/17/19 19:01,"310 6th St, Seattle, WA 98101" -191841,27in FHD Monitor,1,149.99,04/02/19 17:39,"125 Spruce St, San Francisco, CA 94016" -191842,Flatscreen TV,1,300,04/23/19 14:59,"462 Meadow St, Portland, OR 97035" -191843,27in 4K Gaming Monitor,1,389.99,04/27/19 16:12,"589 Lincoln St, New York City, NY 10001" -191844,Wired Headphones,1,11.99,04/26/19 21:06,"731 Hill St, Dallas, TX 75001" -191845,USB-C Charging Cable,1,11.95,04/26/19 06:29,"54 Highland St, Seattle, WA 98101" -191846,AAA Batteries (4-pack),2,2.99,04/04/19 02:25,"752 4th St, Seattle, WA 98101" -191847,34in Ultrawide Monitor,1,379.99,04/24/19 09:32,"568 Adams St, Los Angeles, CA 90001" -191848,USB-C Charging Cable,1,11.95,04/29/19 20:05,"689 Maple St, New York City, NY 10001" -191849,USB-C Charging Cable,1,11.95,04/16/19 17:00,"319 Meadow St, Boston, MA 02215" -191850,Macbook Pro Laptop,1,1700,04/01/19 12:06,"579 Wilson St, Los Angeles, CA 90001" -191851,Lightning Charging Cable,1,14.95,04/09/19 00:32,"510 Chestnut St, Los Angeles, CA 90001" -191852,AAA Batteries (4-pack),1,2.99,04/20/19 12:06,"396 Dogwood St, Boston, MA 02215" -191853,ThinkPad Laptop,1,999.99,04/13/19 13:58,"359 Ridge St, San Francisco, CA 94016" -191854,Apple Airpods Headphones,1,150,04/25/19 09:32,"71 Hickory St, Los Angeles, CA 90001" -191855,Apple Airpods Headphones,1,150,04/04/19 20:41,"419 Lakeview St, Los Angeles, CA 90001" -191856,USB-C Charging Cable,1,11.95,04/13/19 21:21,"299 8th St, Los Angeles, CA 90001" -191857,Lightning Charging Cable,1,14.95,04/21/19 09:52,"581 Lincoln St, San Francisco, CA 94016" -191858,Apple Airpods Headphones,1,150,04/10/19 18:47,"598 Cedar St, Portland, OR 97035" -191859,Lightning Charging Cable,1,14.95,04/02/19 11:21,"102 South St, Los Angeles, CA 90001" -191860,USB-C Charging Cable,1,11.95,04/28/19 10:33,"251 Elm St, San Francisco, CA 94016" -191861,Lightning Charging Cable,1,14.95,04/29/19 13:11,"465 2nd St, Dallas, TX 75001" -191861,27in FHD Monitor,1,149.99,04/29/19 13:11,"465 2nd St, Dallas, TX 75001" -191862,27in FHD Monitor,1,149.99,04/11/19 01:09,"62 Lincoln St, Portland, OR 97035" -191863,Lightning Charging Cable,1,14.95,04/29/19 10:51,"504 North St, Portland, OR 97035" -191864,ThinkPad Laptop,1,999.99,04/11/19 18:52,"431 Lincoln St, Boston, MA 02215" -191865,27in FHD Monitor,1,149.99,04/01/19 11:58,"868 West St, Seattle, WA 98101" -191866,Lightning Charging Cable,1,14.95,04/26/19 13:56,"465 Park St, Boston, MA 02215" -191867,Lightning Charging Cable,1,14.95,04/20/19 03:19,"636 Ridge St, Boston, MA 02215" -191868,Macbook Pro Laptop,1,1700,04/16/19 15:08,"814 Church St, Los Angeles, CA 90001" -191869,AA Batteries (4-pack),2,3.84,04/17/19 22:57,"238 Lakeview St, New York City, NY 10001" -191870,Apple Airpods Headphones,1,150,04/04/19 00:18,"982 Hill St, Dallas, TX 75001" -191871,Wired Headphones,1,11.99,04/10/19 07:39,"527 11th St, San Francisco, CA 94016" -191872,Wired Headphones,1,11.99,04/15/19 15:12,"835 Spruce St, Los Angeles, CA 90001" -191873,Flatscreen TV,1,300,04/16/19 10:57,"500 5th St, Dallas, TX 75001" -191874,20in Monitor,1,109.99,04/16/19 12:27,"646 Adams St, Seattle, WA 98101" -191875,Apple Airpods Headphones,1,150,04/03/19 20:30,"569 Cedar St, Los Angeles, CA 90001" -191876,AAA Batteries (4-pack),1,2.99,04/13/19 08:39,"221 10th St, San Francisco, CA 94016" -191877,Lightning Charging Cable,1,14.95,04/10/19 19:38,"676 South St, San Francisco, CA 94016" -191878,USB-C Charging Cable,1,11.95,04/30/19 18:14,"535 Center St, San Francisco, CA 94016" -191879,AA Batteries (4-pack),1,3.84,04/10/19 00:52,"969 Elm St, Seattle, WA 98101" -191880,Bose SoundSport Headphones,1,99.99,04/30/19 08:36,"98 Cherry St, San Francisco, CA 94016" -191881,Apple Airpods Headphones,1,150,04/06/19 14:14,"51 Jefferson St, Atlanta, GA 30301" -191882,AAA Batteries (4-pack),2,2.99,04/04/19 23:22,"514 River St, Austin, TX 73301" -191883,AAA Batteries (4-pack),1,2.99,04/08/19 20:15,"46 Willow St, New York City, NY 10001" -191884,Lightning Charging Cable,1,14.95,04/30/19 19:41,"656 Cherry St, Austin, TX 73301" -191885,Google Phone,1,600,04/27/19 13:13,"138 Spruce St, Seattle, WA 98101" -191885,Wired Headphones,2,11.99,04/27/19 13:13,"138 Spruce St, Seattle, WA 98101" -191886,Apple Airpods Headphones,1,150,04/23/19 18:36,"167 14th St, Portland, OR 97035" -191887,Lightning Charging Cable,2,14.95,04/16/19 03:32,"118 Maple St, San Francisco, CA 94016" -191888,Lightning Charging Cable,1,14.95,04/21/19 20:34,"941 Forest St, Los Angeles, CA 90001" -191889,Apple Airpods Headphones,1,150,04/02/19 22:11,"143 8th St, Austin, TX 73301" -191890,Apple Airpods Headphones,1,150,04/20/19 11:52,"780 Lakeview St, Los Angeles, CA 90001" -191891,USB-C Charging Cable,2,11.95,04/10/19 00:14,"347 Park St, Atlanta, GA 30301" -191892,ThinkPad Laptop,1,999.99,04/10/19 18:58,"714 Church St, Los Angeles, CA 90001" -191893,Wired Headphones,1,11.99,04/02/19 20:10,"332 Lakeview St, Los Angeles, CA 90001" -191894,Wired Headphones,1,11.99,04/16/19 15:03,"652 Sunset St, Dallas, TX 75001" -191895,AAA Batteries (4-pack),1,2.99,04/24/19 16:52,"219 Washington St, Seattle, WA 98101" -191896,Wired Headphones,1,11.99,04/25/19 14:31,"558 West St, San Francisco, CA 94016" -191897,34in Ultrawide Monitor,1,379.99,04/25/19 03:15,"493 Elm St, San Francisco, CA 94016" -191898,Lightning Charging Cable,1,14.95,04/15/19 12:10,"310 Maple St, Los Angeles, CA 90001" -191899,Macbook Pro Laptop,1,1700,04/07/19 23:45,"819 Johnson St, Portland, ME 04101" -191900,27in FHD Monitor,1,149.99,04/15/19 20:46,"365 South St, Los Angeles, CA 90001" -191901,iPhone,1,700,04/04/19 17:04,"329 Johnson St, Boston, MA 02215" -191902,AA Batteries (4-pack),1,3.84,04/06/19 18:13,"697 14th St, San Francisco, CA 94016" -191903,iPhone,1,700,04/15/19 14:10,"702 8th St, Los Angeles, CA 90001" -191904,AAA Batteries (4-pack),1,2.99,04/18/19 19:06,"577 7th St, San Francisco, CA 94016" -191905,AA Batteries (4-pack),1,3.84,04/22/19 12:21,"167 Washington St, Dallas, TX 75001" -191906,Macbook Pro Laptop,1,1700,04/21/19 13:25,"168 Lakeview St, Boston, MA 02215" -191907,Wired Headphones,1,11.99,04/07/19 20:18,"820 Chestnut St, New York City, NY 10001" -191908,Apple Airpods Headphones,1,150,04/28/19 18:15,"501 Ridge St, Austin, TX 73301" -191909,20in Monitor,1,109.99,04/15/19 14:08,"122 West St, San Francisco, CA 94016" -191910,Macbook Pro Laptop,1,1700,04/21/19 18:57,"753 Dogwood St, Atlanta, GA 30301" -191911,27in 4K Gaming Monitor,1,389.99,04/10/19 10:00,"700 Willow St, Dallas, TX 75001" -191912,34in Ultrawide Monitor,1,379.99,04/14/19 15:24,"486 2nd St, San Francisco, CA 94016" -191913,AA Batteries (4-pack),1,3.84,04/07/19 15:19,"143 Main St, San Francisco, CA 94016" -191914,Apple Airpods Headphones,1,150,04/23/19 08:05,"145 Cherry St, San Francisco, CA 94016" -191915,Wired Headphones,2,11.99,04/11/19 22:40,"174 8th St, Austin, TX 73301" -191916,AA Batteries (4-pack),1,3.84,04/19/19 16:30,"795 Jefferson St, Atlanta, GA 30301" -191917,Bose SoundSport Headphones,1,99.99,04/18/19 09:53,"551 Center St, Austin, TX 73301" -191918,AAA Batteries (4-pack),4,2.99,04/03/19 15:08,"964 Wilson St, Boston, MA 02215" -191919,AA Batteries (4-pack),1,3.84,04/15/19 15:09,"959 Ridge St, Los Angeles, CA 90001" -191920,Wired Headphones,1,11.99,04/15/19 08:41,"871 Hickory St, Los Angeles, CA 90001" -191921,ThinkPad Laptop,1,999.99,04/06/19 13:55,"113 12th St, San Francisco, CA 94016" -191922,Vareebadd Phone,1,400,04/20/19 13:31,"968 Madison St, San Francisco, CA 94016" -191923,AA Batteries (4-pack),1,3.84,04/11/19 17:15,"275 Ridge St, New York City, NY 10001" -191924,ThinkPad Laptop,1,999.99,04/04/19 23:13,"421 5th St, Dallas, TX 75001" -191925,Bose SoundSport Headphones,1,99.99,04/14/19 10:40,"165 West St, Atlanta, GA 30301" -191926,AA Batteries (4-pack),1,3.84,04/06/19 22:17,"579 2nd St, New York City, NY 10001" -191926,AAA Batteries (4-pack),1,2.99,04/06/19 22:17,"579 2nd St, New York City, NY 10001" -191927,Wired Headphones,1,11.99,04/24/19 10:07,"240 Center St, Los Angeles, CA 90001" -191928,Apple Airpods Headphones,1,150,04/26/19 01:19,"97 Cherry St, Los Angeles, CA 90001" -191929,Apple Airpods Headphones,1,150,04/06/19 09:19,"509 Forest St, Los Angeles, CA 90001" -191930,AAA Batteries (4-pack),1,2.99,04/04/19 15:58,"859 7th St, New York City, NY 10001" -191931,Lightning Charging Cable,1,14.95,04/15/19 15:53,"313 8th St, Los Angeles, CA 90001" -191932,27in FHD Monitor,1,149.99,04/15/19 17:55,"544 14th St, Austin, TX 73301" -191933,AAA Batteries (4-pack),1,2.99,04/24/19 22:53,"759 Willow St, Los Angeles, CA 90001" -191934,Lightning Charging Cable,1,14.95,04/14/19 11:03,"90 Washington St, Los Angeles, CA 90001" -191935,Apple Airpods Headphones,1,150,04/06/19 14:02,"929 14th St, Atlanta, GA 30301" -191936,34in Ultrawide Monitor,1,379.99,04/01/19 15:10,"832 Main St, Austin, TX 73301" -191937,Apple Airpods Headphones,1,150,04/28/19 09:38,"171 Madison St, Austin, TX 73301" -191938,Google Phone,1,600,04/27/19 11:13,"218 Elm St, Dallas, TX 75001" -191939,AAA Batteries (4-pack),1,2.99,04/03/19 21:15,"316 North St, Dallas, TX 75001" -191940,USB-C Charging Cable,1,11.95,04/28/19 06:35,"4 Lakeview St, New York City, NY 10001" -191941,USB-C Charging Cable,1,11.95,04/11/19 08:39,"497 Jefferson St, Boston, MA 02215" -191942,AAA Batteries (4-pack),1,2.99,04/08/19 19:48,"886 4th St, Boston, MA 02215" -191943,Lightning Charging Cable,1,14.95,04/26/19 20:44,"123 8th St, Boston, MA 02215" -191944,Wired Headphones,1,11.99,04/16/19 19:48,"914 6th St, Atlanta, GA 30301" -191945,Apple Airpods Headphones,1,150,04/08/19 15:59,"384 12th St, Atlanta, GA 30301" -191945,Bose SoundSport Headphones,1,99.99,04/08/19 15:59,"384 12th St, Atlanta, GA 30301" -191946,AA Batteries (4-pack),2,3.84,04/13/19 21:22,"797 Adams St, Atlanta, GA 30301" -191947,Flatscreen TV,1,300,04/01/19 08:38,"289 6th St, Dallas, TX 75001" -191948,Google Phone,1,600,04/10/19 08:56,"731 Center St, Dallas, TX 75001" -191949,ThinkPad Laptop,1,999.99,04/16/19 21:37,"69 1st St, New York City, NY 10001" -191950,USB-C Charging Cable,1,11.95,04/10/19 16:55,"371 11th St, Seattle, WA 98101" -191951,Wired Headphones,1,11.99,04/11/19 11:55,"138 Church St, Los Angeles, CA 90001" -191952,34in Ultrawide Monitor,1,379.99,04/26/19 13:13,"603 7th St, Los Angeles, CA 90001" -191953,Bose SoundSport Headphones,1,99.99,04/04/19 01:29,"761 Meadow St, Dallas, TX 75001" -191954,AA Batteries (4-pack),4,3.84,04/04/19 11:36,"369 Madison St, San Francisco, CA 94016" -191955,Bose SoundSport Headphones,1,99.99,04/06/19 15:39,"185 Jackson St, Dallas, TX 75001" -191956,Flatscreen TV,1,300,04/23/19 23:41,"654 4th St, Los Angeles, CA 90001" -191957,iPhone,1,700,04/24/19 09:41,"824 Church St, Los Angeles, CA 90001" -191958,AAA Batteries (4-pack),1,2.99,04/30/19 15:44,"503 Hill St, Seattle, WA 98101" -191958,Lightning Charging Cable,1,14.95,04/30/19 15:44,"503 Hill St, Seattle, WA 98101" -191959,Apple Airpods Headphones,1,150,04/16/19 19:32,"397 7th St, Atlanta, GA 30301" -191960,AA Batteries (4-pack),1,3.84,04/06/19 23:05,"812 Elm St, San Francisco, CA 94016" -191961,Lightning Charging Cable,1,14.95,04/16/19 06:54,"189 River St, San Francisco, CA 94016" -191962,Google Phone,1,600,04/18/19 11:31,"899 River St, Dallas, TX 75001" -191963,Google Phone,1,600,04/08/19 12:04,"36 8th St, Atlanta, GA 30301" -191963,USB-C Charging Cable,1,11.95,04/08/19 12:04,"36 8th St, Atlanta, GA 30301" -191963,Bose SoundSport Headphones,1,99.99,04/08/19 12:04,"36 8th St, Atlanta, GA 30301" -191964,Lightning Charging Cable,1,14.95,04/03/19 19:48,"747 Park St, Austin, TX 73301" -191965,Wired Headphones,1,11.99,04/24/19 20:14,"635 Willow St, Los Angeles, CA 90001" -191966,Apple Airpods Headphones,1,150,04/19/19 21:37,"104 Johnson St, Los Angeles, CA 90001" -191967,USB-C Charging Cable,1,11.95,04/03/19 17:52,"246 Park St, New York City, NY 10001" -191968,Lightning Charging Cable,1,14.95,04/27/19 16:58,"960 Highland St, Atlanta, GA 30301" -191969,Flatscreen TV,1,300,04/17/19 17:43,"909 West St, San Francisco, CA 94016" -191970,USB-C Charging Cable,1,11.95,04/06/19 12:00,"784 Chestnut St, New York City, NY 10001" -191971,Wired Headphones,1,11.99,04/05/19 17:56,"286 5th St, San Francisco, CA 94016" -191972,Apple Airpods Headphones,1,150,04/06/19 19:35,"801 Sunset St, Seattle, WA 98101" -191973,AAA Batteries (4-pack),3,2.99,04/22/19 12:24,"348 Forest St, San Francisco, CA 94016" -191974,Bose SoundSport Headphones,1,99.99,04/11/19 18:11,"467 Willow St, Atlanta, GA 30301" -191974,Wired Headphones,1,11.99,04/11/19 18:11,"467 Willow St, Atlanta, GA 30301" -191975,AAA Batteries (4-pack),1,2.99,04/20/19 10:42,"419 Main St, Seattle, WA 98101" -191976,AAA Batteries (4-pack),1,2.99,04/16/19 22:21,"269 Johnson St, Los Angeles, CA 90001" -191977,ThinkPad Laptop,1,999.99,04/24/19 20:03,"20 Madison St, Dallas, TX 75001" -191978,AAA Batteries (4-pack),1,2.99,04/17/19 22:51,"410 Main St, Atlanta, GA 30301" -191979,27in 4K Gaming Monitor,1,389.99,04/23/19 18:01,"677 7th St, Austin, TX 73301" -191980,USB-C Charging Cable,1,11.95,04/29/19 23:27,"621 Johnson St, Dallas, TX 75001" -191981,AAA Batteries (4-pack),1,2.99,04/25/19 14:50,"400 Pine St, Los Angeles, CA 90001" -191982,AA Batteries (4-pack),1,3.84,04/15/19 18:09,"759 Jackson St, Atlanta, GA 30301" -191983,Apple Airpods Headphones,1,150,04/14/19 12:54,"891 Sunset St, Los Angeles, CA 90001" -191983,Bose SoundSport Headphones,1,99.99,04/14/19 12:54,"891 Sunset St, Los Angeles, CA 90001" -191984,AA Batteries (4-pack),2,3.84,04/21/19 19:19,"325 Jefferson St, Los Angeles, CA 90001" -191985,Bose SoundSport Headphones,1,99.99,04/08/19 11:06,"221 Willow St, San Francisco, CA 94016" -191986,AA Batteries (4-pack),2,3.84,04/14/19 19:35,"433 Lincoln St, Los Angeles, CA 90001" -191987,Wired Headphones,1,11.99,04/16/19 16:34,"247 Hickory St, Dallas, TX 75001" -191988,AAA Batteries (4-pack),1,2.99,04/19/19 18:08,"78 2nd St, San Francisco, CA 94016" -191989,USB-C Charging Cable,1,11.95,04/16/19 21:15,"42 Chestnut St, Boston, MA 02215" -191990,iPhone,1,700,04/23/19 18:00,"688 Wilson St, San Francisco, CA 94016" -191990,Lightning Charging Cable,1,14.95,04/23/19 18:00,"688 Wilson St, San Francisco, CA 94016" -191991,AAA Batteries (4-pack),1,2.99,04/29/19 16:37,"299 Lake St, San Francisco, CA 94016" -191992,AA Batteries (4-pack),1,3.84,04/02/19 11:05,"825 Main St, San Francisco, CA 94016" -191993,Bose SoundSport Headphones,1,99.99,04/25/19 21:07,"94 South St, Seattle, WA 98101" -191994,27in FHD Monitor,1,149.99,04/26/19 13:11,"34 Elm St, Atlanta, GA 30301" -191995,Lightning Charging Cable,1,14.95,04/27/19 17:26,"613 Washington St, Seattle, WA 98101" -191996,27in FHD Monitor,1,149.99,04/22/19 17:34,"193 Walnut St, Boston, MA 02215" -191997,34in Ultrawide Monitor,1,379.99,04/20/19 08:30,"308 Highland St, San Francisco, CA 94016" -191998,Apple Airpods Headphones,1,150,04/09/19 13:59,"673 Pine St, Dallas, TX 75001" -191999,Lightning Charging Cable,1,14.95,04/08/19 22:02,"928 Elm St, Dallas, TX 75001" -192000,Apple Airpods Headphones,1,150,04/01/19 19:03,"398 8th St, Seattle, WA 98101" -192001,iPhone,1,700,04/24/19 17:53,"579 4th St, Los Angeles, CA 90001" -192002,AA Batteries (4-pack),1,3.84,04/10/19 21:46,"923 7th St, Seattle, WA 98101" -192002,Lightning Charging Cable,2,14.95,04/10/19 21:46,"923 7th St, Seattle, WA 98101" -192003,USB-C Charging Cable,1,11.95,04/12/19 16:44,"312 Jackson St, San Francisco, CA 94016" -192004,Lightning Charging Cable,1,14.95,04/26/19 18:32,"794 5th St, Boston, MA 02215" -192005,34in Ultrawide Monitor,1,379.99,04/15/19 09:54,"231 Ridge St, Boston, MA 02215" -192006,AA Batteries (4-pack),1,3.84,04/16/19 12:44,"874 Highland St, Los Angeles, CA 90001" -192007,USB-C Charging Cable,1,11.95,04/25/19 10:12,"696 4th St, Portland, OR 97035" -192008,Wired Headphones,1,11.99,04/21/19 17:37,"284 12th St, Los Angeles, CA 90001" -192009,Vareebadd Phone,1,400,04/21/19 15:55,"944 Jefferson St, Los Angeles, CA 90001" -192010,Macbook Pro Laptop,1,1700,04/17/19 11:45,"891 North St, New York City, NY 10001" -192011,27in FHD Monitor,1,149.99,04/10/19 17:05,"712 Lakeview St, San Francisco, CA 94016" -192012,Bose SoundSport Headphones,1,99.99,04/16/19 23:58,"810 Dogwood St, San Francisco, CA 94016" -192013,USB-C Charging Cable,1,11.95,04/13/19 18:41,"473 4th St, Atlanta, GA 30301" -192014,USB-C Charging Cable,1,11.95,04/11/19 16:16,"153 6th St, New York City, NY 10001" -192015,AA Batteries (4-pack),1,3.84,04/26/19 23:03,"615 Cedar St, New York City, NY 10001" -192016,AA Batteries (4-pack),1,3.84,04/02/19 19:06,"958 Walnut St, San Francisco, CA 94016" -192017,Lightning Charging Cable,1,14.95,04/12/19 16:29,"405 5th St, Portland, OR 97035" -192018,AA Batteries (4-pack),1,3.84,04/16/19 19:52,"347 Wilson St, New York City, NY 10001" -192019,Lightning Charging Cable,1,14.95,04/13/19 17:40,"416 9th St, Boston, MA 02215" -192020,USB-C Charging Cable,1,11.95,04/19/19 11:45,"899 Pine St, San Francisco, CA 94016" -192021,USB-C Charging Cable,1,11.95,04/05/19 07:49,"832 Lincoln St, Los Angeles, CA 90001" -192022,Bose SoundSport Headphones,1,99.99,04/21/19 21:26,"555 Adams St, Boston, MA 02215" -192023,Lightning Charging Cable,1,14.95,04/01/19 19:31,"390 4th St, Los Angeles, CA 90001" -192024,ThinkPad Laptop,1,999.99,04/04/19 18:40,"199 Meadow St, Dallas, TX 75001" -192025,Lightning Charging Cable,1,14.95,04/07/19 17:05,"515 Dogwood St, Atlanta, GA 30301" -192026,Wired Headphones,1,11.99,04/23/19 15:56,"714 7th St, Atlanta, GA 30301" -192027,AA Batteries (4-pack),1,3.84,04/28/19 21:10,"711 Dogwood St, Atlanta, GA 30301" -192028,Apple Airpods Headphones,1,150,04/04/19 19:47,"556 Ridge St, New York City, NY 10001" -192029,iPhone,1,700,04/04/19 00:05,"671 Church St, New York City, NY 10001" -192030,AAA Batteries (4-pack),2,2.99,04/24/19 18:02,"807 Church St, Los Angeles, CA 90001" -192031,USB-C Charging Cable,1,11.95,04/06/19 20:05,"288 4th St, Portland, OR 97035" -192032,Lightning Charging Cable,1,14.95,04/23/19 17:29,"936 10th St, Austin, TX 73301" -192033,34in Ultrawide Monitor,1,379.99,04/03/19 18:46,"241 13th St, Los Angeles, CA 90001" -192034,Lightning Charging Cable,1,14.95,04/23/19 13:17,"504 River St, Dallas, TX 75001" -192035,Flatscreen TV,1,300,04/01/19 14:57,"894 11th St, Atlanta, GA 30301" -192036,Flatscreen TV,1,300,04/30/19 12:32,"934 9th St, San Francisco, CA 94016" -192037,Wired Headphones,1,11.99,04/16/19 23:53,"418 Adams St, Atlanta, GA 30301" -192038,USB-C Charging Cable,1,11.95,04/20/19 02:17,"994 Meadow St, Dallas, TX 75001" -192039,Wired Headphones,1,11.99,04/24/19 21:03,"124 Hickory St, San Francisco, CA 94016" -192040,iPhone,1,700,04/06/19 10:54,"935 Jefferson St, Atlanta, GA 30301" -192040,Lightning Charging Cable,1,14.95,04/06/19 10:54,"935 Jefferson St, Atlanta, GA 30301" -192041,USB-C Charging Cable,1,11.95,04/10/19 20:28,"999 Lake St, San Francisco, CA 94016" -192042,27in 4K Gaming Monitor,1,389.99,04/23/19 10:11,"631 Madison St, Los Angeles, CA 90001" -192043,USB-C Charging Cable,1,11.95,04/08/19 12:10,"49 13th St, Seattle, WA 98101" -192044,Wired Headphones,1,11.99,04/06/19 15:34,"422 8th St, San Francisco, CA 94016" -192045,ThinkPad Laptop,1,999.99,04/25/19 12:40,"180 South St, New York City, NY 10001" -192046,AAA Batteries (4-pack),2,2.99,04/14/19 19:03,"969 4th St, San Francisco, CA 94016" -192047,Google Phone,1,600,04/18/19 11:50,"73 11th St, San Francisco, CA 94016" -192048,USB-C Charging Cable,1,11.95,04/16/19 13:33,"53 Sunset St, Atlanta, GA 30301" -192049,Bose SoundSport Headphones,1,99.99,04/24/19 20:25,"603 Chestnut St, San Francisco, CA 94016" -192050,USB-C Charging Cable,1,11.95,04/11/19 16:08,"109 9th St, San Francisco, CA 94016" -192051,Wired Headphones,1,11.99,04/01/19 20:39,"413 South St, Los Angeles, CA 90001" -192052,LG Dryer,1,600.0,04/02/19 22:49,"455 West St, Atlanta, GA 30301" -192053,Lightning Charging Cable,1,14.95,04/15/19 03:29,"280 Lake St, Los Angeles, CA 90001" -192054,AAA Batteries (4-pack),1,2.99,04/28/19 09:46,"651 9th St, Boston, MA 02215" -192055,Lightning Charging Cable,1,14.95,04/22/19 11:07,"534 Maple St, Dallas, TX 75001" -192056,AA Batteries (4-pack),2,3.84,04/06/19 12:18,"849 Pine St, New York City, NY 10001" -192057,USB-C Charging Cable,1,11.95,04/30/19 10:09,"942 Jefferson St, Boston, MA 02215" -192058,Bose SoundSport Headphones,1,99.99,04/19/19 22:29,"749 River St, New York City, NY 10001" -192059,ThinkPad Laptop,1,999.99,04/25/19 00:24,"267 Cedar St, Los Angeles, CA 90001" -192060,USB-C Charging Cable,1,11.95,04/14/19 13:05,"621 Forest St, Los Angeles, CA 90001" -192061,Google Phone,1,600,04/27/19 21:19,"658 2nd St, New York City, NY 10001" -192062,Lightning Charging Cable,2,14.95,04/15/19 15:06,"387 7th St, San Francisco, CA 94016" -192063,Lightning Charging Cable,1,14.95,04/21/19 14:31,"104 Lake St, Seattle, WA 98101" -192064,Wired Headphones,1,11.99,04/14/19 18:34,"226 12th St, New York City, NY 10001" -192065,27in FHD Monitor,1,149.99,04/15/19 15:21,"157 Pine St, Atlanta, GA 30301" -192066,AAA Batteries (4-pack),1,2.99,04/30/19 08:43,"119 Highland St, San Francisco, CA 94016" -192067,AA Batteries (4-pack),1,3.84,04/04/19 14:48,"539 Spruce St, Atlanta, GA 30301" -192068,Lightning Charging Cable,1,14.95,04/01/19 20:14,"987 Cedar St, Los Angeles, CA 90001" -192069,Apple Airpods Headphones,1,150,04/03/19 18:02,"191 5th St, New York City, NY 10001" -192070,USB-C Charging Cable,1,11.95,04/01/19 13:19,"985 Highland St, New York City, NY 10001" -192071,AA Batteries (4-pack),1,3.84,04/11/19 22:25,"868 Center St, Austin, TX 73301" -192072,34in Ultrawide Monitor,1,379.99,04/11/19 18:20,"568 Adams St, Austin, TX 73301" -192073,Apple Airpods Headphones,1,150,04/16/19 20:44,"867 Hill St, Austin, TX 73301" -192074,USB-C Charging Cable,1,11.95,04/29/19 08:29,"772 Wilson St, New York City, NY 10001" -192075,27in 4K Gaming Monitor,1,389.99,04/20/19 12:07,"607 6th St, Boston, MA 02215" -192076,AA Batteries (4-pack),1,3.84,04/09/19 20:18,"654 Cedar St, Portland, OR 97035" -192077,AA Batteries (4-pack),1,3.84,04/08/19 00:15,"851 Church St, Seattle, WA 98101" -192078,AA Batteries (4-pack),1,3.84,04/23/19 15:47,"650 West St, Austin, TX 73301" -192079,Apple Airpods Headphones,1,150,04/07/19 12:15,"235 Highland St, Portland, OR 97035" -192080,AA Batteries (4-pack),1,3.84,04/12/19 09:19,"312 Ridge St, Dallas, TX 75001" -192080,Flatscreen TV,1,300,04/12/19 09:19,"312 Ridge St, Dallas, TX 75001" -192081,AA Batteries (4-pack),1,3.84,04/24/19 01:45,"999 Pine St, Boston, MA 02215" -192082,AAA Batteries (4-pack),3,2.99,04/07/19 13:10,"930 Lake St, Atlanta, GA 30301" -192083,27in FHD Monitor,1,149.99,04/27/19 16:55,"41 Cedar St, Los Angeles, CA 90001" -192084,USB-C Charging Cable,1,11.95,04/11/19 16:57,"435 Highland St, Atlanta, GA 30301" -192085,ThinkPad Laptop,1,999.99,04/07/19 10:36,"572 Lake St, San Francisco, CA 94016" -192086,20in Monitor,1,109.99,04/07/19 12:01,"949 West St, Dallas, TX 75001" -192087,AAA Batteries (4-pack),2,2.99,04/18/19 12:21,"221 2nd St, New York City, NY 10001" -192088,AAA Batteries (4-pack),1,2.99,04/14/19 13:22,"904 Center St, Boston, MA 02215" -192089,27in FHD Monitor,1,149.99,04/30/19 12:37,"584 Johnson St, Portland, OR 97035" -192090,USB-C Charging Cable,1,11.95,04/29/19 19:07,"114 Jefferson St, San Francisco, CA 94016" -192091,Bose SoundSport Headphones,1,99.99,04/13/19 19:48,"895 South St, Dallas, TX 75001" -192092,iPhone,1,700,04/03/19 23:21,"92 Church St, Seattle, WA 98101" -192093,27in 4K Gaming Monitor,1,389.99,04/22/19 19:27,"696 Maple St, Los Angeles, CA 90001" -192094,Flatscreen TV,1,300,04/16/19 14:22,"759 Jackson St, Atlanta, GA 30301" -192095,20in Monitor,1,109.99,04/03/19 14:03,"232 Main St, San Francisco, CA 94016" -192096,AA Batteries (4-pack),1,3.84,04/10/19 11:29,"584 Madison St, Atlanta, GA 30301" -192097,USB-C Charging Cable,1,11.95,04/29/19 20:16,"187 Center St, Boston, MA 02215" -192098,iPhone,1,700,04/11/19 10:55,"692 Washington St, San Francisco, CA 94016" -192099,Bose SoundSport Headphones,1,99.99,04/02/19 19:26,"41 Walnut St, New York City, NY 10001" -192100,iPhone,1,700,04/17/19 19:20,"245 Jackson St, San Francisco, CA 94016" -192101,USB-C Charging Cable,1,11.95,04/13/19 16:56,"841 Forest St, Seattle, WA 98101" -192102,Apple Airpods Headphones,1,150,04/19/19 12:19,"694 11th St, Los Angeles, CA 90001" -192103,27in FHD Monitor,1,149.99,04/22/19 21:46,"956 Wilson St, Dallas, TX 75001" -192104,ThinkPad Laptop,1,999.99,04/23/19 20:32,"255 Main St, Boston, MA 02215" -192105,34in Ultrawide Monitor,2,379.99,04/03/19 07:06,"950 Hill St, San Francisco, CA 94016" -192106,Apple Airpods Headphones,1,150,04/15/19 20:11,"438 North St, San Francisco, CA 94016" -192107,AA Batteries (4-pack),1,3.84,04/21/19 09:48,"693 Hill St, San Francisco, CA 94016" -192108,USB-C Charging Cable,1,11.95,04/17/19 18:11,"95 9th St, New York City, NY 10001" -192109,AA Batteries (4-pack),1,3.84,04/16/19 21:56,"273 Elm St, San Francisco, CA 94016" -192110,Apple Airpods Headphones,1,150,04/24/19 22:05,"528 Lakeview St, San Francisco, CA 94016" -192111,27in 4K Gaming Monitor,1,389.99,04/03/19 20:46,"557 River St, Dallas, TX 75001" -192112,AAA Batteries (4-pack),1,2.99,04/24/19 10:00,"421 Lakeview St, San Francisco, CA 94016" -192113,AAA Batteries (4-pack),1,2.99,04/13/19 23:43,"484 River St, Los Angeles, CA 90001" -192114,AA Batteries (4-pack),1,3.84,04/05/19 17:40,"569 Lake St, San Francisco, CA 94016" -192115,AAA Batteries (4-pack),1,2.99,04/13/19 22:08,"844 River St, Portland, OR 97035" -192116,AA Batteries (4-pack),1,3.84,04/22/19 22:35,"623 5th St, Portland, OR 97035" -192117,Wired Headphones,1,11.99,04/08/19 13:55,"366 Dogwood St, San Francisco, CA 94016" -192118,AAA Batteries (4-pack),2,2.99,04/09/19 13:19,"295 13th St, Boston, MA 02215" -192119,27in FHD Monitor,1,149.99,04/03/19 14:10,"283 Sunset St, Atlanta, GA 30301" -192120,Bose SoundSport Headphones,1,99.99,04/25/19 17:12,"926 Cedar St, Los Angeles, CA 90001" -192121,USB-C Charging Cable,1,11.95,04/18/19 22:25,"5 Sunset St, San Francisco, CA 94016" -192122,Bose SoundSport Headphones,2,99.99,04/04/19 14:35,"747 Main St, New York City, NY 10001" -192123,27in FHD Monitor,1,149.99,04/22/19 18:32,"809 Willow St, New York City, NY 10001" -192124,27in FHD Monitor,1,149.99,04/22/19 11:39,"40 Park St, Seattle, WA 98101" -192125,Macbook Pro Laptop,1,1700,04/02/19 00:13,"4 Elm St, Los Angeles, CA 90001" -192126,Bose SoundSport Headphones,1,99.99,04/09/19 20:22,"92 2nd St, Boston, MA 02215" -192127,34in Ultrawide Monitor,1,379.99,04/15/19 16:18,"22 11th St, Los Angeles, CA 90001" -192128,ThinkPad Laptop,1,999.99,04/27/19 12:33,"417 Johnson St, Los Angeles, CA 90001" -192129,AAA Batteries (4-pack),2,2.99,04/10/19 20:06,"856 Walnut St, Boston, MA 02215" -192130,AAA Batteries (4-pack),5,2.99,04/10/19 22:36,"565 Forest St, San Francisco, CA 94016" -192131,iPhone,1,700,04/20/19 14:47,"877 Meadow St, Boston, MA 02215" -192132,AAA Batteries (4-pack),1,2.99,04/05/19 19:09,"844 11th St, San Francisco, CA 94016" -192133,34in Ultrawide Monitor,1,379.99,04/09/19 15:37,"203 9th St, Boston, MA 02215" -192134,AA Batteries (4-pack),1,3.84,04/16/19 11:00,"9 5th St, Seattle, WA 98101" -192135,iPhone,1,700,04/29/19 23:02,"926 14th St, Los Angeles, CA 90001" -192136,Bose SoundSport Headphones,1,99.99,04/02/19 09:14,"859 Jefferson St, Atlanta, GA 30301" -192137,Lightning Charging Cable,1,14.95,04/20/19 11:21,"127 Ridge St, Los Angeles, CA 90001" -192138,iPhone,1,700,04/15/19 17:34,"678 Walnut St, Atlanta, GA 30301" -192139,Macbook Pro Laptop,1,1700,04/03/19 14:27,"658 Adams St, San Francisco, CA 94016" -192140,34in Ultrawide Monitor,1,379.99,04/23/19 18:45,"181 Lake St, Portland, OR 97035" -192141,AA Batteries (4-pack),3,3.84,04/11/19 20:35,"84 Adams St, Boston, MA 02215" -192142,20in Monitor,1,109.99,04/04/19 13:24,"361 Hill St, Los Angeles, CA 90001" -192142,Apple Airpods Headphones,1,150,04/04/19 13:24,"361 Hill St, Los Angeles, CA 90001" -192143,Bose SoundSport Headphones,2,99.99,04/14/19 19:52,"81 5th St, San Francisco, CA 94016" -192144,Wired Headphones,1,11.99,04/03/19 12:39,"856 Park St, Los Angeles, CA 90001" -192145,AA Batteries (4-pack),1,3.84,04/05/19 07:00,"851 Lakeview St, Los Angeles, CA 90001" -192146,Flatscreen TV,1,300,04/08/19 11:30,"210 Hickory St, Atlanta, GA 30301" -192147,Lightning Charging Cable,1,14.95,04/04/19 15:56,"234 Johnson St, Seattle, WA 98101" -192148,Bose SoundSport Headphones,1,99.99,04/02/19 13:04,"552 Hill St, San Francisco, CA 94016" -192149,Apple Airpods Headphones,1,150,04/04/19 11:02,"73 12th St, Boston, MA 02215" -192150,Flatscreen TV,1,300,04/22/19 19:55,"746 Highland St, Portland, OR 97035" -192151,Lightning Charging Cable,1,14.95,04/24/19 10:21,"196 Elm St, Los Angeles, CA 90001" -192152,Lightning Charging Cable,1,14.95,04/23/19 17:26,"686 Dogwood St, San Francisco, CA 94016" -192153,27in 4K Gaming Monitor,1,389.99,04/05/19 14:51,"819 Center St, San Francisco, CA 94016" -192154,AA Batteries (4-pack),1,3.84,04/07/19 16:32,"76 Dogwood St, Austin, TX 73301" -192155,Flatscreen TV,1,300,04/05/19 18:04,"371 Hickory St, San Francisco, CA 94016" -192156,34in Ultrawide Monitor,1,379.99,04/06/19 18:16,"345 7th St, Portland, OR 97035" -192157,USB-C Charging Cable,1,11.95,04/24/19 04:56,"758 Willow St, San Francisco, CA 94016" -192158,Apple Airpods Headphones,1,150,04/08/19 18:39,"264 9th St, San Francisco, CA 94016" -192159,Bose SoundSport Headphones,1,99.99,04/28/19 16:54,"299 Lincoln St, Seattle, WA 98101" -192160,AAA Batteries (4-pack),5,2.99,04/22/19 00:03,"498 Washington St, Atlanta, GA 30301" -192161,AAA Batteries (4-pack),1,2.99,04/01/19 13:32,"603 7th St, Portland, OR 97035" -192162,27in FHD Monitor,1,149.99,04/19/19 10:06,"646 Spruce St, Boston, MA 02215" -192163,AAA Batteries (4-pack),1,2.99,04/25/19 19:41,"495 Hill St, Portland, OR 97035" -192164,Wired Headphones,1,11.99,04/29/19 15:01,"553 9th St, Atlanta, GA 30301" -192165,AAA Batteries (4-pack),1,2.99,04/19/19 16:18,"524 Johnson St, San Francisco, CA 94016" -192166,27in FHD Monitor,1,149.99,04/26/19 10:49,"523 North St, Los Angeles, CA 90001" -192167,Lightning Charging Cable,1,14.95,04/21/19 21:22,"564 Madison St, Los Angeles, CA 90001" -192168,27in 4K Gaming Monitor,1,389.99,04/12/19 17:13,"673 North St, New York City, NY 10001" -192169,Lightning Charging Cable,1,14.95,04/04/19 18:32,"725 Hickory St, New York City, NY 10001" -192170,USB-C Charging Cable,2,11.95,04/27/19 19:52,"345 12th St, Los Angeles, CA 90001" -192171,USB-C Charging Cable,1,11.95,04/24/19 12:41,"275 North St, San Francisco, CA 94016" -192172,Lightning Charging Cable,1,14.95,04/04/19 09:58,"776 Cherry St, Seattle, WA 98101" -192173,AA Batteries (4-pack),1,3.84,04/04/19 12:18,"11 West St, Seattle, WA 98101" -192174,Wired Headphones,1,11.99,04/29/19 19:06,"697 Wilson St, Portland, ME 04101" -192175,Wired Headphones,1,11.99,04/08/19 21:01,"352 Church St, New York City, NY 10001" -192176,AAA Batteries (4-pack),3,2.99,04/01/19 19:09,"707 West St, Los Angeles, CA 90001" -192177,Wired Headphones,1,11.99,04/27/19 19:40,"130 Hickory St, Los Angeles, CA 90001" -192178,USB-C Charging Cable,1,11.95,04/08/19 16:26,"936 Jackson St, Seattle, WA 98101" -192179,Bose SoundSport Headphones,1,99.99,04/10/19 15:56,"101 Walnut St, New York City, NY 10001" -192179,AAA Batteries (4-pack),3,2.99,04/10/19 15:56,"101 Walnut St, New York City, NY 10001" -192180,Lightning Charging Cable,1,14.95,04/15/19 00:31,"887 Jackson St, Los Angeles, CA 90001" -192181,Bose SoundSport Headphones,1,99.99,04/08/19 15:45,"876 Forest St, Seattle, WA 98101" -192182,USB-C Charging Cable,1,11.95,04/27/19 05:03,"328 Sunset St, Boston, MA 02215" -192183,Bose SoundSport Headphones,1,99.99,04/22/19 11:41,"640 West St, San Francisco, CA 94016" -192184,Wired Headphones,1,11.99,04/04/19 21:11,"655 Jackson St, Austin, TX 73301" -192185,27in 4K Gaming Monitor,1,389.99,04/06/19 20:01,"232 Cherry St, San Francisco, CA 94016" -192186,AA Batteries (4-pack),1,3.84,04/03/19 14:17,"137 Johnson St, Los Angeles, CA 90001" -192187,27in 4K Gaming Monitor,1,389.99,04/26/19 13:11,"460 Lake St, New York City, NY 10001" -192188,27in 4K Gaming Monitor,1,389.99,04/07/19 14:36,"210 9th St, Austin, TX 73301" -192189,iPhone,1,700,04/18/19 22:06,"402 Jefferson St, New York City, NY 10001" -192190,iPhone,1,700,04/05/19 22:32,"50 4th St, New York City, NY 10001" -192190,Lightning Charging Cable,1,14.95,04/05/19 22:32,"50 4th St, New York City, NY 10001" -192191,Macbook Pro Laptop,1,1700,04/21/19 17:14,"62 Center St, New York City, NY 10001" -192192,Apple Airpods Headphones,1,150,04/24/19 19:06,"499 Jackson St, Boston, MA 02215" -192193,ThinkPad Laptop,1,999.99,04/21/19 11:12,"507 Johnson St, Los Angeles, CA 90001" -192194,Lightning Charging Cable,1,14.95,04/08/19 15:23,"273 1st St, San Francisco, CA 94016" -192195,USB-C Charging Cable,1,11.95,04/11/19 16:48,"122 Highland St, Boston, MA 02215" -192196,Bose SoundSport Headphones,1,99.99,04/18/19 17:44,"399 5th St, Dallas, TX 75001" -192197,27in FHD Monitor,1,149.99,04/29/19 18:39,"982 10th St, Los Angeles, CA 90001" -192198,Bose SoundSport Headphones,1,99.99,04/10/19 00:51,"150 Cherry St, Los Angeles, CA 90001" -192199,Apple Airpods Headphones,1,150,04/08/19 14:55,"35 Hickory St, San Francisco, CA 94016" -192200,Apple Airpods Headphones,1,150,04/07/19 04:31,"54 Elm St, Portland, OR 97035" -192201,Google Phone,1,600,04/27/19 12:09,"980 5th St, Dallas, TX 75001" -192202,AA Batteries (4-pack),2,3.84,04/04/19 20:29,"712 Church St, Boston, MA 02215" -192203,AAA Batteries (4-pack),1,2.99,04/14/19 12:59,"422 Church St, San Francisco, CA 94016" -192204,Apple Airpods Headphones,1,150,04/05/19 18:43,"469 8th St, Boston, MA 02215" -192204,Bose SoundSport Headphones,1,99.99,04/05/19 18:43,"469 8th St, Boston, MA 02215" -192205,AAA Batteries (4-pack),1,2.99,04/18/19 12:50,"647 Madison St, Los Angeles, CA 90001" -192206,Lightning Charging Cable,1,14.95,04/10/19 14:56,"874 5th St, Los Angeles, CA 90001" -192207,Lightning Charging Cable,1,14.95,04/22/19 09:39,"867 Main St, Dallas, TX 75001" -192208,Apple Airpods Headphones,1,150,04/02/19 00:19,"809 South St, Atlanta, GA 30301" -192209,AA Batteries (4-pack),3,3.84,04/07/19 23:35,"206 Church St, Portland, OR 97035" -192210,Lightning Charging Cable,1,14.95,04/17/19 14:06,"789 Center St, Dallas, TX 75001" -192211,ThinkPad Laptop,1,999.99,04/14/19 00:50,"552 4th St, Los Angeles, CA 90001" -192212,AA Batteries (4-pack),1,3.84,04/02/19 04:15,"689 Meadow St, San Francisco, CA 94016" -192213,Wired Headphones,1,11.99,04/18/19 20:00,"486 Meadow St, Atlanta, GA 30301" -192214,Google Phone,1,600,04/14/19 12:09,"873 North St, New York City, NY 10001" -192214,USB-C Charging Cable,1,11.95,04/14/19 12:09,"873 North St, New York City, NY 10001" -192215,Apple Airpods Headphones,1,150,04/22/19 23:25,"399 Sunset St, San Francisco, CA 94016" -192216,Vareebadd Phone,1,400,04/22/19 19:12,"683 Jefferson St, New York City, NY 10001" -192217,AAA Batteries (4-pack),1,2.99,04/27/19 01:51,"466 Madison St, Portland, OR 97035" -192218,Lightning Charging Cable,1,14.95,04/25/19 11:33,"445 Park St, San Francisco, CA 94016" -192219,AAA Batteries (4-pack),1,2.99,04/25/19 22:15,"804 Center St, Boston, MA 02215" -192220,20in Monitor,1,109.99,04/13/19 08:52,"118 Lincoln St, Dallas, TX 75001" -192221,Apple Airpods Headphones,1,150,04/09/19 18:24,"594 Madison St, Los Angeles, CA 90001" -192222,34in Ultrawide Monitor,1,379.99,04/12/19 20:24,"312 6th St, San Francisco, CA 94016" -192223,AA Batteries (4-pack),1,3.84,04/18/19 10:08,"4 10th St, New York City, NY 10001" -192224,AA Batteries (4-pack),1,3.84,04/06/19 20:21,"884 Hickory St, Portland, OR 97035" -192225,AA Batteries (4-pack),1,3.84,04/02/19 09:20,"605 10th St, Los Angeles, CA 90001" -192226,Lightning Charging Cable,1,14.95,04/25/19 21:27,"624 Pine St, Seattle, WA 98101" -192227,AA Batteries (4-pack),2,3.84,04/02/19 12:21,"981 11th St, New York City, NY 10001" -192228,Google Phone,1,600,04/17/19 13:42,"878 7th St, Los Angeles, CA 90001" -192229,34in Ultrawide Monitor,1,379.99,04/30/19 22:03,"347 Lakeview St, New York City, NY 10001" -192230,Lightning Charging Cable,2,14.95,04/24/19 12:38,"806 West St, Portland, OR 97035" -192231,34in Ultrawide Monitor,1,379.99,04/12/19 17:41,"399 Jefferson St, Seattle, WA 98101" -192232,USB-C Charging Cable,1,11.95,04/07/19 15:17,"626 Pine St, Portland, OR 97035" -192233,Google Phone,1,600,04/13/19 09:08,"940 Jefferson St, Dallas, TX 75001" -192234,ThinkPad Laptop,1,999.99,04/10/19 22:27,"174 12th St, Atlanta, GA 30301" -192235,iPhone,1,700,04/13/19 21:02,"350 Walnut St, San Francisco, CA 94016" -192236,AA Batteries (4-pack),1,3.84,04/22/19 09:16,"753 West St, Boston, MA 02215" -192237,34in Ultrawide Monitor,1,379.99,04/18/19 02:30,"110 4th St, San Francisco, CA 94016" -192238,Google Phone,1,600,04/05/19 17:03,"104 14th St, Austin, TX 73301" -192239,Lightning Charging Cable,1,14.95,04/08/19 18:11,"587 Hill St, Los Angeles, CA 90001" -192240,27in 4K Gaming Monitor,1,389.99,04/16/19 13:07,"508 Main St, San Francisco, CA 94016" -192241,USB-C Charging Cable,1,11.95,04/15/19 14:15,"881 1st St, San Francisco, CA 94016" -192242,USB-C Charging Cable,1,11.95,04/08/19 17:29,"365 Walnut St, Dallas, TX 75001" -192243,27in 4K Gaming Monitor,1,389.99,04/04/19 13:52,"770 6th St, Los Angeles, CA 90001" -192244,Google Phone,1,600,04/03/19 13:51,"233 Highland St, Los Angeles, CA 90001" -192245,Wired Headphones,1,11.99,04/05/19 20:38,"566 9th St, San Francisco, CA 94016" -192246,USB-C Charging Cable,1,11.95,04/19/19 10:45,"992 Park St, San Francisco, CA 94016" -192247,Apple Airpods Headphones,1,150,04/10/19 13:47,"982 Cherry St, Portland, OR 97035" -192248,AA Batteries (4-pack),1,3.84,04/04/19 12:56,"571 Lake St, Dallas, TX 75001" -192249,AA Batteries (4-pack),1,3.84,04/01/19 20:22,"573 Chestnut St, Austin, TX 73301" -192250,AAA Batteries (4-pack),1,2.99,04/29/19 21:22,"948 1st St, San Francisco, CA 94016" -192251,Apple Airpods Headphones,1,150,04/03/19 12:44,"240 12th St, San Francisco, CA 94016" -192252,Apple Airpods Headphones,1,150,04/08/19 12:49,"69 River St, Atlanta, GA 30301" -192253,AAA Batteries (4-pack),2,2.99,04/25/19 14:58,"92 Dogwood St, Los Angeles, CA 90001" -192254,AA Batteries (4-pack),2,3.84,04/16/19 00:08,"777 10th St, San Francisco, CA 94016" -192255,Lightning Charging Cable,1,14.95,04/21/19 10:55,"358 Madison St, New York City, NY 10001" -192256,USB-C Charging Cable,2,11.95,04/30/19 11:25,"779 Elm St, San Francisco, CA 94016" -192257,Wired Headphones,2,11.99,04/14/19 12:03,"739 Pine St, Seattle, WA 98101" -192258,AA Batteries (4-pack),1,3.84,04/20/19 10:13,"134 Lakeview St, New York City, NY 10001" -192259,iPhone,1,700,04/19/19 21:55,"947 Pine St, Portland, OR 97035" -192259,Wired Headphones,2,11.99,04/19/19 21:55,"947 Pine St, Portland, OR 97035" -192260,Lightning Charging Cable,1,14.95,04/12/19 19:20,"576 South St, Seattle, WA 98101" -192261,Google Phone,1,600,04/01/19 09:35,"443 11th St, Austin, TX 73301" -192262,AAA Batteries (4-pack),2,2.99,04/19/19 22:54,"136 Johnson St, San Francisco, CA 94016" -192263,Lightning Charging Cable,1,14.95,04/02/19 21:15,"827 Jackson St, Boston, MA 02215" -192264,USB-C Charging Cable,1,11.95,04/14/19 23:10,"848 Pine St, San Francisco, CA 94016" -192265,AAA Batteries (4-pack),1,2.99,04/30/19 22:21,"284 4th St, San Francisco, CA 94016" -192266,Bose SoundSport Headphones,1,99.99,04/09/19 15:35,"673 North St, Dallas, TX 75001" -192267,Lightning Charging Cable,1,14.95,04/16/19 00:02,"401 5th St, Los Angeles, CA 90001" -192268,Google Phone,1,600,04/11/19 20:15,"356 Cherry St, San Francisco, CA 94016" -192269,27in 4K Gaming Monitor,1,389.99,04/10/19 10:49,"389 Maple St, San Francisco, CA 94016" -192270,AA Batteries (4-pack),2,3.84,04/11/19 13:59,"932 West St, Dallas, TX 75001" -192271,iPhone,2,700,04/18/19 17:14,"770 14th St, Los Angeles, CA 90001" -192272,Wired Headphones,1,11.99,04/19/19 15:10,"326 Walnut St, Portland, OR 97035" -192273,Flatscreen TV,1,300,04/24/19 17:59,"131 West St, Dallas, TX 75001" -192274,Macbook Pro Laptop,1,1700,04/25/19 23:46,"32 9th St, Seattle, WA 98101" -192275,Wired Headphones,1,11.99,04/06/19 16:29,"4 12th St, New York City, NY 10001" -192276,Flatscreen TV,1,300,04/27/19 06:40,"699 10th St, Los Angeles, CA 90001" -192277,AA Batteries (4-pack),1,3.84,04/15/19 18:05,"184 Hickory St, New York City, NY 10001" -192278,Wired Headphones,1,11.99,04/24/19 10:27,"259 6th St, San Francisco, CA 94016" -192279,27in FHD Monitor,1,149.99,04/25/19 19:56,"713 2nd St, San Francisco, CA 94016" -192280,Apple Airpods Headphones,1,150,04/18/19 13:01,"927 Church St, San Francisco, CA 94016" -192281,Apple Airpods Headphones,1,150,04/03/19 21:13,"996 Johnson St, San Francisco, CA 94016" -192282,Apple Airpods Headphones,1,150,04/08/19 01:55,"202 11th St, Los Angeles, CA 90001" -192283,AAA Batteries (4-pack),1,2.99,04/25/19 03:58,"676 Highland St, Dallas, TX 75001" -192284,Lightning Charging Cable,1,14.95,04/25/19 14:27,"500 2nd St, San Francisco, CA 94016" -192285,USB-C Charging Cable,1,11.95,04/01/19 06:23,"731 2nd St, Austin, TX 73301" -192286,34in Ultrawide Monitor,1,379.99,04/02/19 13:24,"481 Jackson St, Portland, ME 04101" -192287,AAA Batteries (4-pack),1,2.99,04/04/19 17:41,"123 Lakeview St, Boston, MA 02215" -192288,AA Batteries (4-pack),1,3.84,04/19/19 11:09,"465 River St, New York City, NY 10001" -192289,Macbook Pro Laptop,1,1700,04/29/19 23:39,"720 River St, Portland, OR 97035" -192290,AA Batteries (4-pack),1,3.84,04/02/19 11:41,"137 Wilson St, Atlanta, GA 30301" -192291,Lightning Charging Cable,1,14.95,04/05/19 16:45,"73 Chestnut St, San Francisco, CA 94016" -192292,USB-C Charging Cable,1,11.95,04/30/19 22:27,"462 4th St, Austin, TX 73301" -192293,USB-C Charging Cable,1,11.95,04/10/19 11:02,"276 Highland St, Austin, TX 73301" -192294,Bose SoundSport Headphones,1,99.99,04/23/19 21:04,"875 South St, Los Angeles, CA 90001" -192295,ThinkPad Laptop,1,999.99,04/06/19 22:41,"894 Church St, Atlanta, GA 30301" -192296,27in 4K Gaming Monitor,1,389.99,04/14/19 13:03,"724 13th St, San Francisco, CA 94016" -192297,USB-C Charging Cable,1,11.95,04/28/19 16:16,"863 Cherry St, New York City, NY 10001" -192298,Flatscreen TV,1,300,04/12/19 12:30,"357 Adams St, Portland, OR 97035" -192299,Flatscreen TV,1,300,04/19/19 09:41,"861 7th St, San Francisco, CA 94016" -192300,USB-C Charging Cable,1,11.95,04/04/19 18:13,"336 7th St, New York City, NY 10001" -192301,USB-C Charging Cable,1,11.95,04/26/19 08:05,"885 Jefferson St, New York City, NY 10001" -192302,iPhone,1,700,04/17/19 22:09,"806 Pine St, San Francisco, CA 94016" -192303,iPhone,1,700,04/21/19 07:39,"977 Center St, Portland, OR 97035" -192304,USB-C Charging Cable,2,11.95,04/17/19 02:36,"917 4th St, San Francisco, CA 94016" -192305,LG Dryer,1,600.0,04/24/19 18:42,"99 Cedar St, Los Angeles, CA 90001" -192306,AAA Batteries (4-pack),1,2.99,04/18/19 10:15,"862 Jefferson St, Los Angeles, CA 90001" -192307,Lightning Charging Cable,1,14.95,04/16/19 20:27,"702 Maple St, Los Angeles, CA 90001" -192308,USB-C Charging Cable,1,11.95,04/03/19 16:39,"222 Cedar St, Portland, OR 97035" -192309,Google Phone,1,600,04/23/19 18:42,"734 Main St, Los Angeles, CA 90001" -192310,Bose SoundSport Headphones,1,99.99,04/11/19 12:06,"31 Willow St, Portland, OR 97035" -192311,Macbook Pro Laptop,1,1700,04/11/19 21:54,"25 West St, Boston, MA 02215" -192312,Macbook Pro Laptop,1,1700,04/17/19 13:48,"86 Hickory St, Atlanta, GA 30301" -192313,Wired Headphones,1,11.99,04/10/19 18:54,"299 Church St, Los Angeles, CA 90001" -192314,Macbook Pro Laptop,1,1700,04/29/19 17:12,"360 7th St, Dallas, TX 75001" -192315,Bose SoundSport Headphones,1,99.99,04/06/19 08:46,"647 Lakeview St, Boston, MA 02215" -192316,AA Batteries (4-pack),1,3.84,04/18/19 18:42,"662 5th St, San Francisco, CA 94016" -192317,Wired Headphones,1,11.99,04/10/19 20:25,"433 1st St, Boston, MA 02215" -192318,Wired Headphones,1,11.99,04/26/19 17:32,"868 West St, New York City, NY 10001" -192319,Lightning Charging Cable,1,14.95,04/23/19 19:58,"629 Dogwood St, Atlanta, GA 30301" -192320,34in Ultrawide Monitor,1,379.99,04/03/19 17:36,"851 West St, Portland, OR 97035" -192321,Lightning Charging Cable,1,14.95,04/17/19 23:55,"590 Main St, San Francisco, CA 94016" -192322,Google Phone,1,600,04/27/19 08:35,"48 Wilson St, Dallas, TX 75001" -192323,Wired Headphones,1,11.99,04/25/19 14:43,"992 11th St, Dallas, TX 75001" -192324,27in FHD Monitor,1,149.99,04/24/19 14:14,"985 Ridge St, Boston, MA 02215" -192325,AAA Batteries (4-pack),1,2.99,04/11/19 15:10,"873 Maple St, San Francisco, CA 94016" -192326,iPhone,1,700,04/25/19 19:45,"324 13th St, San Francisco, CA 94016" -192327,27in FHD Monitor,1,149.99,04/08/19 11:35,"237 Willow St, New York City, NY 10001" -192328,Lightning Charging Cable,1,14.95,04/29/19 16:22,"555 Cherry St, San Francisco, CA 94016" -192329,27in 4K Gaming Monitor,1,389.99,04/10/19 12:52,"189 11th St, Boston, MA 02215" -192330,Bose SoundSport Headphones,1,99.99,04/18/19 19:07,"46 Willow St, Los Angeles, CA 90001" -192331,AA Batteries (4-pack),1,3.84,04/02/19 19:27,"168 1st St, Boston, MA 02215" -192332,AA Batteries (4-pack),2,3.84,04/28/19 11:31,"422 Johnson St, Austin, TX 73301" -192333,USB-C Charging Cable,1,11.95,04/21/19 20:25,"170 12th St, Atlanta, GA 30301" -192334,AAA Batteries (4-pack),2,2.99,04/12/19 22:17,"748 Elm St, San Francisco, CA 94016" -192335,AAA Batteries (4-pack),1,2.99,04/23/19 09:01,"106 Ridge St, San Francisco, CA 94016" -192336,Lightning Charging Cable,1,14.95,04/11/19 14:46,"826 Sunset St, New York City, NY 10001" -192337,Bose SoundSport Headphones,1,99.99,04/12/19 17:29,"704 Cedar St, Los Angeles, CA 90001" -192338,Lightning Charging Cable,2,14.95,04/28/19 18:04,"406 4th St, Dallas, TX 75001" -192339,AA Batteries (4-pack),2,3.84,04/06/19 15:14,"363 2nd St, Los Angeles, CA 90001" -192340,Wired Headphones,1,11.99,04/05/19 22:59,"667 Jefferson St, Austin, TX 73301" -192341,Lightning Charging Cable,1,14.95,04/29/19 19:28,"229 7th St, Los Angeles, CA 90001" -192342,AAA Batteries (4-pack),1,2.99,04/14/19 11:55,"411 Main St, New York City, NY 10001" -192343,USB-C Charging Cable,1,11.95,04/25/19 01:33,"559 Maple St, Dallas, TX 75001" -192344,Google Phone,1,600,04/29/19 21:51,"133 Willow St, San Francisco, CA 94016" -192345,Lightning Charging Cable,1,14.95,04/10/19 12:21,"161 Wilson St, Los Angeles, CA 90001" -192346,AAA Batteries (4-pack),2,2.99,04/22/19 21:54,"675 9th St, San Francisco, CA 94016" -192347,USB-C Charging Cable,1,11.95,04/14/19 11:18,"749 4th St, San Francisco, CA 94016" -192348,iPhone,1,700,04/12/19 20:18,"358 Pine St, San Francisco, CA 94016" -192348,Apple Airpods Headphones,1,150,04/12/19 20:18,"358 Pine St, San Francisco, CA 94016" -192349,Lightning Charging Cable,1,14.95,04/01/19 11:29,"301 7th St, San Francisco, CA 94016" -192350,AA Batteries (4-pack),1,3.84,04/08/19 21:54,"566 Maple St, Atlanta, GA 30301" -192351,Google Phone,1,600,04/30/19 14:28,"532 Center St, Portland, OR 97035" -192352,Lightning Charging Cable,1,14.95,04/12/19 17:47,"649 Spruce St, Seattle, WA 98101" -192353,USB-C Charging Cable,1,11.95,04/16/19 10:45,"432 9th St, San Francisco, CA 94016" -192354,Bose SoundSport Headphones,1,99.99,04/30/19 11:59,"361 Park St, San Francisco, CA 94016" -192355,iPhone,1,700,04/10/19 19:11,"103 Park St, San Francisco, CA 94016" -192356,iPhone,1,700,04/16/19 09:21,"765 River St, Boston, MA 02215" -192357,Wired Headphones,1,11.99,04/25/19 11:04,"89 Adams St, Boston, MA 02215" -192358,Lightning Charging Cable,1,14.95,04/11/19 10:05,"774 Center St, Boston, MA 02215" -192359,AAA Batteries (4-pack),1,2.99,04/07/19 12:00,"57 Maple St, Dallas, TX 75001" -192360,USB-C Charging Cable,1,11.95,04/04/19 16:28,"811 8th St, New York City, NY 10001" -192361,AA Batteries (4-pack),2,3.84,04/18/19 14:38,"208 Lakeview St, San Francisco, CA 94016" -192362,AAA Batteries (4-pack),1,2.99,04/24/19 08:11,"143 Hill St, New York City, NY 10001" -192363,AAA Batteries (4-pack),2,2.99,04/18/19 18:52,"786 Cherry St, Seattle, WA 98101" -192364,27in 4K Gaming Monitor,1,389.99,04/26/19 16:30,"884 Washington St, Los Angeles, CA 90001" -192365,AA Batteries (4-pack),1,3.84,04/14/19 16:24,"964 Ridge St, Austin, TX 73301" -192366,USB-C Charging Cable,1,11.95,04/25/19 10:37,"343 South St, New York City, NY 10001" -192367,AA Batteries (4-pack),1,3.84,04/09/19 22:59,"98 Willow St, Seattle, WA 98101" -192368,27in 4K Gaming Monitor,1,389.99,04/12/19 19:25,"366 Sunset St, San Francisco, CA 94016" -192369,AAA Batteries (4-pack),1,2.99,04/24/19 10:48,"571 Hickory St, Los Angeles, CA 90001" -192370,34in Ultrawide Monitor,1,379.99,04/26/19 15:45,"151 Wilson St, San Francisco, CA 94016" -192371,Bose SoundSport Headphones,1,99.99,04/15/19 12:24,"136 Jackson St, San Francisco, CA 94016" -192372,Wired Headphones,1,11.99,04/14/19 11:09,"780 Madison St, San Francisco, CA 94016" -192373,Apple Airpods Headphones,1,150,04/23/19 12:10,"265 Jackson St, Austin, TX 73301" -192374,AA Batteries (4-pack),1,3.84,04/18/19 16:13,"224 South St, Portland, ME 04101" -192375,Apple Airpods Headphones,1,150,04/28/19 15:01,"723 Lakeview St, San Francisco, CA 94016" -192376,Lightning Charging Cable,1,14.95,04/05/19 07:33,"998 Chestnut St, Atlanta, GA 30301" -192377,Apple Airpods Headphones,1,150,04/16/19 18:30,"388 Madison St, Los Angeles, CA 90001" -192378,iPhone,1,700,04/28/19 10:07,"439 Jefferson St, Dallas, TX 75001" -192378,Lightning Charging Cable,1,14.95,04/28/19 10:07,"439 Jefferson St, Dallas, TX 75001" -192379,USB-C Charging Cable,1,11.95,04/25/19 15:31,"692 Highland St, Los Angeles, CA 90001" -192380,Apple Airpods Headphones,1,150,04/20/19 22:56,"210 Center St, Portland, ME 04101" -192381,Macbook Pro Laptop,1,1700,04/15/19 18:13,"471 Highland St, San Francisco, CA 94016" -192382,AAA Batteries (4-pack),1,2.99,04/27/19 22:31,"331 Lincoln St, Los Angeles, CA 90001" -192383,27in 4K Gaming Monitor,1,389.99,04/08/19 18:24,"456 South St, New York City, NY 10001" -192384,27in FHD Monitor,1,149.99,04/02/19 23:27,"256 Church St, Los Angeles, CA 90001" -192385,USB-C Charging Cable,1,11.95,04/25/19 14:30,"962 13th St, Seattle, WA 98101" -192386,Google Phone,1,600,04/15/19 09:19,"780 Cedar St, Atlanta, GA 30301" -192386,USB-C Charging Cable,1,11.95,04/15/19 09:19,"780 Cedar St, Atlanta, GA 30301" -192387,Apple Airpods Headphones,1,150,04/25/19 18:57,"301 Highland St, Portland, OR 97035" -192388,USB-C Charging Cable,1,11.95,04/16/19 18:49,"563 Lakeview St, San Francisco, CA 94016" -192389,USB-C Charging Cable,1,11.95,04/11/19 15:37,"363 Forest St, San Francisco, CA 94016" -192390,iPhone,1,700,04/23/19 19:53,"389 2nd St, Austin, TX 73301" -192391,20in Monitor,1,109.99,04/02/19 07:13,"935 Pine St, Seattle, WA 98101" -192392,Apple Airpods Headphones,1,150,04/23/19 12:15,"268 Lake St, Austin, TX 73301" -192393,AAA Batteries (4-pack),1,2.99,04/12/19 19:04,"756 South St, San Francisco, CA 94016" -192394,AAA Batteries (4-pack),1,2.99,04/22/19 13:26,"703 Washington St, Austin, TX 73301" -192395,AA Batteries (4-pack),1,3.84,04/21/19 08:15,"673 Maple St, San Francisco, CA 94016" -192396,Google Phone,1,600,04/14/19 11:47,"939 4th St, Los Angeles, CA 90001" -192397,AAA Batteries (4-pack),1,2.99,04/19/19 22:04,"773 Meadow St, Dallas, TX 75001" -192398,Lightning Charging Cable,3,14.95,04/02/19 18:32,"63 Jefferson St, Dallas, TX 75001" -192399,USB-C Charging Cable,1,11.95,04/21/19 12:30,"29 Chestnut St, Los Angeles, CA 90001" -192400,AAA Batteries (4-pack),1,2.99,04/29/19 20:38,"437 Church St, Portland, OR 97035" -192401,20in Monitor,1,109.99,04/03/19 19:15,"503 Pine St, San Francisco, CA 94016" -192402,27in 4K Gaming Monitor,1,389.99,04/18/19 20:31,"767 6th St, New York City, NY 10001" -192403,Lightning Charging Cable,1,14.95,04/04/19 18:14,"492 Park St, Boston, MA 02215" -192404,Lightning Charging Cable,1,14.95,04/20/19 14:36,"613 Wilson St, Boston, MA 02215" -192405,Apple Airpods Headphones,1,150,04/17/19 21:54,"683 5th St, San Francisco, CA 94016" -192406,AA Batteries (4-pack),1,3.84,04/13/19 23:03,"433 Cherry St, Portland, OR 97035" -192407,USB-C Charging Cable,1,11.95,04/26/19 19:43,"199 Park St, Atlanta, GA 30301" -192408,Bose SoundSport Headphones,1,99.99,04/21/19 22:21,"342 Dogwood St, San Francisco, CA 94016" -192409,20in Monitor,1,109.99,04/01/19 19:36,"810 Dogwood St, Boston, MA 02215" -192410,iPhone,1,700,04/17/19 19:20,"757 Pine St, San Francisco, CA 94016" -192411,34in Ultrawide Monitor,1,379.99,04/18/19 09:26,"512 Cherry St, New York City, NY 10001" -192412,Lightning Charging Cable,1,14.95,04/11/19 13:28,"62 8th St, Seattle, WA 98101" -192413,Bose SoundSport Headphones,1,99.99,04/01/19 15:18,"995 Spruce St, Portland, ME 04101" -192414,Wired Headphones,1,11.99,04/29/19 17:45,"889 Lincoln St, New York City, NY 10001" -192415,USB-C Charging Cable,1,11.95,04/02/19 20:48,"7 Ridge St, San Francisco, CA 94016" -192416,AA Batteries (4-pack),1,3.84,04/17/19 14:13,"238 River St, San Francisco, CA 94016" -192417,34in Ultrawide Monitor,1,379.99,04/25/19 12:40,"510 Highland St, San Francisco, CA 94016" -192418,Lightning Charging Cable,1,14.95,04/15/19 15:09,"746 Adams St, San Francisco, CA 94016" -192419,20in Monitor,1,109.99,04/04/19 12:44,"583 Pine St, Dallas, TX 75001" -192420,Apple Airpods Headphones,1,150,04/04/19 01:48,"670 Chestnut St, New York City, NY 10001" -192421,AAA Batteries (4-pack),1,2.99,04/28/19 21:03,"5 Sunset St, Los Angeles, CA 90001" -192422,Lightning Charging Cable,1,14.95,04/27/19 11:01,"12 14th St, San Francisco, CA 94016" -192423,Bose SoundSport Headphones,1,99.99,04/28/19 18:14,"231 Lake St, Los Angeles, CA 90001" -192424,AAA Batteries (4-pack),1,2.99,04/11/19 15:55,"87 Forest St, Los Angeles, CA 90001" -192425,AA Batteries (4-pack),4,3.84,04/16/19 18:00,"116 Park St, Los Angeles, CA 90001" -192426,Apple Airpods Headphones,1,150,04/24/19 00:08,"920 7th St, Boston, MA 02215" -192427,Wired Headphones,1,11.99,04/12/19 22:09,"453 Lakeview St, New York City, NY 10001" -192428,Bose SoundSport Headphones,1,99.99,04/09/19 20:44,"850 Center St, Austin, TX 73301" -192429,Flatscreen TV,1,300,04/24/19 12:44,"412 Wilson St, Seattle, WA 98101" -192430,iPhone,1,700,04/08/19 20:28,"876 1st St, Austin, TX 73301" -192431,Bose SoundSport Headphones,1,99.99,04/11/19 16:30,"202 14th St, Los Angeles, CA 90001" -192432,USB-C Charging Cable,1,11.95,04/09/19 19:52,"850 Washington St, Austin, TX 73301" -192433,USB-C Charging Cable,1,11.95,04/25/19 16:48,"638 Adams St, San Francisco, CA 94016" -192434,34in Ultrawide Monitor,1,379.99,04/04/19 11:09,"165 Forest St, Dallas, TX 75001" -192435,iPhone,1,700,04/18/19 20:21,"327 Jackson St, New York City, NY 10001" -192436,Bose SoundSport Headphones,1,99.99,04/24/19 19:16,"393 12th St, Seattle, WA 98101" -192437,Bose SoundSport Headphones,1,99.99,04/24/19 01:18,"454 West St, Los Angeles, CA 90001" -192438,Lightning Charging Cable,1,14.95,04/08/19 13:26,"180 Madison St, San Francisco, CA 94016" -192439,Macbook Pro Laptop,1,1700,04/10/19 12:29,"252 Highland St, San Francisco, CA 94016" -192440,USB-C Charging Cable,1,11.95,04/13/19 18:40,"412 Willow St, Boston, MA 02215" -192441,34in Ultrawide Monitor,1,379.99,04/12/19 19:57,"290 South St, New York City, NY 10001" -192442,Bose SoundSport Headphones,1,99.99,04/07/19 22:39,"498 6th St, San Francisco, CA 94016" -192443,Vareebadd Phone,1,400,04/05/19 16:39,"770 Adams St, Austin, TX 73301" -192444,Wired Headphones,1,11.99,04/09/19 19:04,"172 Hill St, Los Angeles, CA 90001" -192445,27in FHD Monitor,1,149.99,04/26/19 07:39,"29 10th St, Portland, OR 97035" -192446,AA Batteries (4-pack),1,3.84,04/06/19 18:47,"631 Washington St, Boston, MA 02215" -192447,Wired Headphones,2,11.99,04/18/19 00:05,"25 Washington St, Los Angeles, CA 90001" -192448,USB-C Charging Cable,2,11.95,04/16/19 17:59,"114 8th St, Seattle, WA 98101" -192449,Apple Airpods Headphones,1,150,04/04/19 12:01,"523 Pine St, San Francisco, CA 94016" -192450,AAA Batteries (4-pack),1,2.99,04/16/19 07:11,"372 Wilson St, San Francisco, CA 94016" -192450,AA Batteries (4-pack),1,3.84,04/16/19 07:11,"372 Wilson St, San Francisco, CA 94016" -192451,AAA Batteries (4-pack),2,2.99,04/15/19 11:47,"510 2nd St, San Francisco, CA 94016" -192452,Lightning Charging Cable,1,14.95,04/27/19 12:04,"439 Meadow St, San Francisco, CA 94016" -192453,Bose SoundSport Headphones,1,99.99,04/17/19 17:42,"975 North St, San Francisco, CA 94016" -192454,Flatscreen TV,1,300,04/11/19 20:56,"104 4th St, Dallas, TX 75001" -192455,USB-C Charging Cable,1,11.95,04/24/19 16:27,"474 Madison St, Seattle, WA 98101" -192456,34in Ultrawide Monitor,1,379.99,04/18/19 02:11,"480 Lake St, Dallas, TX 75001" -192457,Bose SoundSport Headphones,1,99.99,04/05/19 14:46,"294 Center St, Portland, OR 97035" -192458,Apple Airpods Headphones,1,150,04/27/19 15:17,"488 Willow St, San Francisco, CA 94016" -192459,Flatscreen TV,1,300,04/25/19 16:32,"723 Park St, Los Angeles, CA 90001" -192460,27in FHD Monitor,1,149.99,04/30/19 21:24,"236 South St, Dallas, TX 75001" -192461,AA Batteries (4-pack),2,3.84,04/25/19 23:00,"793 Chestnut St, Boston, MA 02215" -192462,AAA Batteries (4-pack),1,2.99,04/20/19 18:35,"188 Jackson St, San Francisco, CA 94016" -192463,Wired Headphones,1,11.99,04/20/19 01:00,"474 14th St, Atlanta, GA 30301" -192464,27in 4K Gaming Monitor,1,389.99,04/05/19 23:28,"535 Hill St, Boston, MA 02215" -192465,ThinkPad Laptop,1,999.99,04/12/19 20:51,"104 2nd St, New York City, NY 10001" -192466,AAA Batteries (4-pack),2,2.99,04/22/19 11:41,"747 Lake St, Los Angeles, CA 90001" -192467,Lightning Charging Cable,1,14.95,04/16/19 18:35,"312 12th St, Boston, MA 02215" -192468,Wired Headphones,1,11.99,04/14/19 11:35,"39 Maple St, Seattle, WA 98101" -192469,ThinkPad Laptop,1,999.99,04/25/19 19:01,"109 Jackson St, Austin, TX 73301" -192470,Lightning Charging Cable,1,14.95,04/27/19 21:42,"42 6th St, Dallas, TX 75001" -192471,Bose SoundSport Headphones,1,99.99,04/27/19 09:47,"159 Washington St, Los Angeles, CA 90001" -192472,Vareebadd Phone,1,400,04/16/19 15:36,"744 Hickory St, San Francisco, CA 94016" -192473,Wired Headphones,1,11.99,04/04/19 10:47,"886 Washington St, San Francisco, CA 94016" -192474,Lightning Charging Cable,1,14.95,04/04/19 18:29,"835 Madison St, Portland, ME 04101" -192475,34in Ultrawide Monitor,1,379.99,04/14/19 13:00,"846 Johnson St, Boston, MA 02215" -192476,Macbook Pro Laptop,1,1700,04/17/19 13:35,"646 Lakeview St, Boston, MA 02215" -192477,27in FHD Monitor,2,149.99,04/28/19 16:39,"192 6th St, Austin, TX 73301" -192478,34in Ultrawide Monitor,1,379.99,04/30/19 13:47,"786 Madison St, Boston, MA 02215" -192479,Lightning Charging Cable,1,14.95,04/15/19 19:19,"143 Walnut St, New York City, NY 10001" -192480,AAA Batteries (4-pack),1,2.99,04/11/19 13:08,"989 Ridge St, Atlanta, GA 30301" -192481,34in Ultrawide Monitor,1,379.99,04/09/19 13:52,"150 Elm St, Los Angeles, CA 90001" -192482,AAA Batteries (4-pack),1,2.99,04/14/19 08:17,"581 12th St, Dallas, TX 75001" -192482,34in Ultrawide Monitor,1,379.99,04/14/19 08:17,"581 12th St, Dallas, TX 75001" -192483,Wired Headphones,1,11.99,04/26/19 19:28,"748 Johnson St, Los Angeles, CA 90001" -192484,34in Ultrawide Monitor,1,379.99,04/10/19 00:36,"361 Washington St, Los Angeles, CA 90001" -192485,Google Phone,1,600,04/09/19 15:38,"83 Lake St, Los Angeles, CA 90001" -192486,27in FHD Monitor,1,149.99,04/24/19 23:23,"520 Church St, Boston, MA 02215" -192487,Apple Airpods Headphones,1,150,04/16/19 13:56,"647 Lincoln St, Boston, MA 02215" -192488,Apple Airpods Headphones,1,150,04/25/19 20:33,"648 Cherry St, Los Angeles, CA 90001" -192489,Lightning Charging Cable,1,14.95,04/24/19 18:32,"775 5th St, Atlanta, GA 30301" -192490,Lightning Charging Cable,1,14.95,04/03/19 14:00,"996 Hill St, Los Angeles, CA 90001" -192491,Apple Airpods Headphones,1,150,04/20/19 12:24,"811 Church St, New York City, NY 10001" -192492,Bose SoundSport Headphones,1,99.99,04/25/19 10:14,"387 6th St, Boston, MA 02215" -192493,Apple Airpods Headphones,1,150,04/05/19 09:01,"9 River St, Los Angeles, CA 90001" -192494,Lightning Charging Cable,1,14.95,04/05/19 13:32,"415 Walnut St, San Francisco, CA 94016" -192495,Google Phone,1,600,04/20/19 14:31,"302 River St, Portland, ME 04101" -,,,,, -192496,Lightning Charging Cable,1,14.95,04/08/19 12:32,"15 8th St, Los Angeles, CA 90001" -192497,AA Batteries (4-pack),2,3.84,04/13/19 23:42,"522 Elm St, San Francisco, CA 94016" -192498,USB-C Charging Cable,1,11.95,04/20/19 22:36,"100 Chestnut St, San Francisco, CA 94016" -192499,AAA Batteries (4-pack),2,2.99,04/05/19 11:44,"950 Hill St, New York City, NY 10001" -192500,Apple Airpods Headphones,1,150,04/22/19 08:18,"854 Hickory St, Los Angeles, CA 90001" -192501,USB-C Charging Cable,1,11.95,04/07/19 12:58,"727 Cedar St, San Francisco, CA 94016" -192502,27in FHD Monitor,1,149.99,04/22/19 19:53,"658 9th St, Dallas, TX 75001" -192503,AA Batteries (4-pack),1,3.84,04/13/19 09:48,"883 10th St, Seattle, WA 98101" -192504,AA Batteries (4-pack),1,3.84,04/21/19 21:55,"211 Main St, San Francisco, CA 94016" -192505,Lightning Charging Cable,1,14.95,04/17/19 22:09,"271 10th St, San Francisco, CA 94016" -192506,USB-C Charging Cable,1,11.95,04/30/19 15:16,"295 North St, Los Angeles, CA 90001" -192507,Lightning Charging Cable,1,14.95,04/16/19 23:01,"438 Elm St, Boston, MA 02215" -192508,Vareebadd Phone,1,400,04/05/19 23:32,"354 Park St, Los Angeles, CA 90001" -192509,Wired Headphones,1,11.99,04/24/19 16:40,"374 5th St, San Francisco, CA 94016" -192510,Lightning Charging Cable,2,14.95,04/12/19 09:25,"715 Lake St, New York City, NY 10001" -192511,Lightning Charging Cable,1,14.95,04/11/19 08:37,"552 12th St, Seattle, WA 98101" -192512,27in FHD Monitor,1,149.99,04/06/19 15:39,"217 West St, Portland, ME 04101" -192513,20in Monitor,1,109.99,04/03/19 16:12,"699 Cherry St, Austin, TX 73301" -192514,34in Ultrawide Monitor,1,379.99,04/27/19 19:48,"263 North St, Boston, MA 02215" -192515,Lightning Charging Cable,1,14.95,04/05/19 15:03,"146 Adams St, Austin, TX 73301" -192516,Wired Headphones,1,11.99,04/17/19 07:34,"955 7th St, Portland, OR 97035" -192517,USB-C Charging Cable,1,11.95,04/17/19 09:07,"412 Forest St, San Francisco, CA 94016" -192518,27in FHD Monitor,1,149.99,04/27/19 12:39,"748 River St, New York City, NY 10001" -192519,Lightning Charging Cable,1,14.95,04/02/19 23:13,"465 Spruce St, San Francisco, CA 94016" -192520,iPhone,1,700,04/16/19 15:20,"359 Center St, Seattle, WA 98101" -192521,27in FHD Monitor,1,149.99,04/18/19 17:25,"477 4th St, San Francisco, CA 94016" -,,,,, -192522,USB-C Charging Cable,1,11.95,04/22/19 06:41,"930 4th St, Seattle, WA 98101" -192523,27in FHD Monitor,1,149.99,04/06/19 11:35,"290 Church St, Seattle, WA 98101" -192524,Wired Headphones,1,11.99,04/08/19 21:34,"894 Center St, New York City, NY 10001" -192525,AA Batteries (4-pack),1,3.84,04/15/19 10:19,"995 9th St, San Francisco, CA 94016" -192526,Bose SoundSport Headphones,1,99.99,04/26/19 20:32,"430 Hill St, Portland, ME 04101" -192527,Google Phone,1,600,04/25/19 01:08,"529 Forest St, Atlanta, GA 30301" -192528,USB-C Charging Cable,1,11.95,04/20/19 13:27,"571 North St, San Francisco, CA 94016" -192529,Lightning Charging Cable,1,14.95,04/11/19 07:45,"389 4th St, New York City, NY 10001" -192530,Google Phone,1,600,04/05/19 11:38,"28 Madison St, Seattle, WA 98101" -192531,Flatscreen TV,1,300,04/04/19 20:03,"456 5th St, San Francisco, CA 94016" -192532,Apple Airpods Headphones,1,150,04/01/19 13:54,"14 River St, Austin, TX 73301" -192533,Wired Headphones,1,11.99,04/28/19 11:35,"778 Highland St, Los Angeles, CA 90001" -192534,Bose SoundSport Headphones,1,99.99,04/23/19 13:41,"968 Cedar St, Dallas, TX 75001" -192535,AAA Batteries (4-pack),2,2.99,04/02/19 11:32,"414 Center St, New York City, NY 10001" -192536,20in Monitor,1,109.99,04/17/19 22:29,"588 Church St, San Francisco, CA 94016" -192537,USB-C Charging Cable,1,11.95,04/11/19 21:32,"441 South St, San Francisco, CA 94016" -192538,ThinkPad Laptop,1,999.99,04/07/19 22:20,"101 Cherry St, Los Angeles, CA 90001" -192539,Apple Airpods Headphones,1,150,04/23/19 01:14,"808 14th St, Atlanta, GA 30301" -192540,Vareebadd Phone,1,400,04/28/19 14:16,"66 Cedar St, Los Angeles, CA 90001" -192541,Lightning Charging Cable,1,14.95,04/15/19 21:57,"507 Highland St, San Francisco, CA 94016" -192542,Wired Headphones,1,11.99,04/15/19 12:56,"84 Maple St, Dallas, TX 75001" -192543,Wired Headphones,1,11.99,04/17/19 17:18,"838 8th St, Boston, MA 02215" -192544,Wired Headphones,1,11.99,04/18/19 11:27,"899 2nd St, Portland, ME 04101" -192545,Apple Airpods Headphones,1,150,04/30/19 14:25,"199 Hickory St, Los Angeles, CA 90001" -192546,Lightning Charging Cable,1,14.95,04/17/19 22:31,"188 Meadow St, Boston, MA 02215" -192547,27in FHD Monitor,1,149.99,04/27/19 21:20,"492 Pine St, Atlanta, GA 30301" -192548,Wired Headphones,1,11.99,04/02/19 23:21,"778 Willow St, San Francisco, CA 94016" -192549,iPhone,1,700,04/11/19 11:16,"296 4th St, Dallas, TX 75001" -192550,Flatscreen TV,1,300,04/14/19 18:20,"582 6th St, Los Angeles, CA 90001" -192551,Apple Airpods Headphones,1,150,04/08/19 12:41,"970 Cherry St, Boston, MA 02215" -192552,AA Batteries (4-pack),1,3.84,04/28/19 21:04,"35 Adams St, San Francisco, CA 94016" -192553,Wired Headphones,1,11.99,04/22/19 01:20,"973 13th St, Boston, MA 02215" -192554,Lightning Charging Cable,1,14.95,04/27/19 10:55,"968 Forest St, New York City, NY 10001" -192555,AAA Batteries (4-pack),1,2.99,04/20/19 19:47,"192 Ridge St, San Francisco, CA 94016" -192556,34in Ultrawide Monitor,1,379.99,04/06/19 04:30,"860 2nd St, San Francisco, CA 94016" -,,,,, -192557,27in FHD Monitor,1,149.99,04/19/19 20:50,"424 11th St, Seattle, WA 98101" -192558,Lightning Charging Cable,1,14.95,04/14/19 21:11,"995 Adams St, San Francisco, CA 94016" -192559,USB-C Charging Cable,2,11.95,04/11/19 12:14,"359 Lakeview St, Portland, OR 97035" -192560,27in FHD Monitor,1,149.99,04/15/19 06:37,"744 4th St, San Francisco, CA 94016" -192561,Wired Headphones,1,11.99,04/13/19 22:43,"223 Jackson St, San Francisco, CA 94016" -192562,Apple Airpods Headphones,1,150,04/06/19 18:54,"481 Pine St, San Francisco, CA 94016" -192563,AA Batteries (4-pack),1,3.84,04/16/19 14:05,"587 Wilson St, Seattle, WA 98101" -192564,Lightning Charging Cable,1,14.95,04/28/19 22:11,"768 Jackson St, San Francisco, CA 94016" -192565,AAA Batteries (4-pack),1,2.99,04/01/19 16:37,"30 14th St, Boston, MA 02215" -192566,AA Batteries (4-pack),1,3.84,04/28/19 22:41,"859 6th St, New York City, NY 10001" -192567,Apple Airpods Headphones,1,150,04/14/19 23:13,"560 Hill St, San Francisco, CA 94016" -192568,AAA Batteries (4-pack),1,2.99,04/02/19 22:04,"493 Walnut St, Los Angeles, CA 90001" -192569,iPhone,1,700,04/30/19 22:55,"933 Washington St, New York City, NY 10001" -192569,Lightning Charging Cable,1,14.95,04/30/19 22:55,"933 Washington St, New York City, NY 10001" -192570,Bose SoundSport Headphones,1,99.99,04/02/19 18:09,"525 Jefferson St, Los Angeles, CA 90001" -192571,AAA Batteries (4-pack),1,2.99,04/11/19 14:50,"694 Maple St, Dallas, TX 75001" -192572,Apple Airpods Headphones,1,150,04/06/19 14:05,"504 Meadow St, Boston, MA 02215" -192573,34in Ultrawide Monitor,1,379.99,04/01/19 20:08,"458 8th St, New York City, NY 10001" -192574,Bose SoundSport Headphones,1,99.99,04/15/19 14:00,"567 Hill St, Boston, MA 02215" -192575,AAA Batteries (4-pack),1,2.99,04/01/19 13:57,"291 Elm St, New York City, NY 10001" -192576,AA Batteries (4-pack),2,3.84,04/24/19 12:38,"885 Adams St, San Francisco, CA 94016" -192577,AAA Batteries (4-pack),2,2.99,04/22/19 19:17,"708 Hickory St, San Francisco, CA 94016" -192578,Flatscreen TV,1,300,04/27/19 20:20,"492 Lakeview St, Portland, OR 97035" -192579,AA Batteries (4-pack),1,3.84,04/25/19 23:07,"806 Main St, Boston, MA 02215" -192580,AAA Batteries (4-pack),2,2.99,04/01/19 21:43,"282 Jackson St, Dallas, TX 75001" -192581,USB-C Charging Cable,1,11.95,04/12/19 19:37,"642 Wilson St, San Francisco, CA 94016" -192582,Lightning Charging Cable,1,14.95,04/12/19 13:28,"154 North St, Atlanta, GA 30301" -192583,USB-C Charging Cable,1,11.95,04/05/19 20:05,"511 6th St, Los Angeles, CA 90001" -192584,USB-C Charging Cable,2,11.95,04/05/19 12:00,"357 6th St, San Francisco, CA 94016" -192585,AA Batteries (4-pack),3,3.84,04/06/19 01:10,"145 14th St, Los Angeles, CA 90001" -192586,Vareebadd Phone,1,400,04/14/19 19:03,"822 Cedar St, San Francisco, CA 94016" -192587,Wired Headphones,1,11.99,04/21/19 22:13,"778 Pine St, San Francisco, CA 94016" -192588,Lightning Charging Cable,1,14.95,04/05/19 16:32,"371 10th St, Dallas, TX 75001" -192589,Bose SoundSport Headphones,1,99.99,04/29/19 11:41,"65 Dogwood St, Boston, MA 02215" -192590,AA Batteries (4-pack),1,3.84,04/12/19 19:04,"452 Sunset St, New York City, NY 10001" -192591,AA Batteries (4-pack),1,3.84,04/07/19 13:23,"825 Meadow St, Dallas, TX 75001" -192592,USB-C Charging Cable,2,11.95,04/12/19 21:38,"989 Hickory St, San Francisco, CA 94016" -192593,Bose SoundSport Headphones,1,99.99,04/04/19 12:56,"657 Church St, Seattle, WA 98101" -192594,27in FHD Monitor,1,149.99,04/14/19 11:49,"227 Maple St, New York City, NY 10001" -192595,AAA Batteries (4-pack),1,2.99,04/07/19 11:34,"25 Pine St, San Francisco, CA 94016" -192596,27in 4K Gaming Monitor,1,389.99,04/02/19 20:32,"569 Maple St, Los Angeles, CA 90001" -192597,27in FHD Monitor,1,149.99,04/08/19 15:58,"117 Meadow St, Boston, MA 02215" -192598,Wired Headphones,1,11.99,04/08/19 20:08,"11 8th St, Portland, OR 97035" -192599,USB-C Charging Cable,1,11.95,04/12/19 14:42,"671 River St, Austin, TX 73301" -192600,Apple Airpods Headphones,1,150,04/24/19 19:48,"979 Lakeview St, San Francisco, CA 94016" -192601,AAA Batteries (4-pack),2,2.99,04/24/19 02:07,"894 14th St, San Francisco, CA 94016" -192602,Lightning Charging Cable,1,14.95,04/01/19 17:18,"593 Dogwood St, Atlanta, GA 30301" -192603,Lightning Charging Cable,1,14.95,04/12/19 10:45,"376 Hickory St, Los Angeles, CA 90001" -192604,Lightning Charging Cable,2,14.95,04/02/19 13:21,"56 Meadow St, Boston, MA 02215" -192605,Lightning Charging Cable,1,14.95,04/24/19 01:37,"866 Ridge St, Atlanta, GA 30301" -192606,Google Phone,1,600,04/20/19 14:38,"492 12th St, Boston, MA 02215" -192607,34in Ultrawide Monitor,1,379.99,04/05/19 00:00,"645 Lake St, San Francisco, CA 94016" -192608,AAA Batteries (4-pack),1,2.99,04/02/19 17:35,"711 Cedar St, Portland, OR 97035" -192609,iPhone,1,700,04/08/19 15:45,"599 Johnson St, New York City, NY 10001" -192609,Lightning Charging Cable,1,14.95,04/08/19 15:45,"599 Johnson St, New York City, NY 10001" -192610,Lightning Charging Cable,2,14.95,04/01/19 18:29,"941 Ridge St, New York City, NY 10001" -192611,Bose SoundSport Headphones,1,99.99,04/17/19 20:07,"952 River St, San Francisco, CA 94016" -192612,AAA Batteries (4-pack),3,2.99,04/11/19 13:13,"813 Willow St, San Francisco, CA 94016" -192613,Lightning Charging Cable,1,14.95,04/28/19 08:52,"808 Lincoln St, Los Angeles, CA 90001" -192614,ThinkPad Laptop,1,999.99,04/24/19 16:33,"668 Sunset St, Dallas, TX 75001" -192615,ThinkPad Laptop,1,999.99,04/17/19 16:22,"141 West St, Seattle, WA 98101" -192616,20in Monitor,1,109.99,04/05/19 20:57,"476 11th St, Seattle, WA 98101" -192617,Apple Airpods Headphones,1,150,04/25/19 08:14,"608 Highland St, San Francisco, CA 94016" -192618,iPhone,1,700,04/25/19 04:32,"198 Pine St, Austin, TX 73301" -192619,Wired Headphones,1,11.99,04/16/19 09:49,"116 Church St, New York City, NY 10001" -192620,Wired Headphones,1,11.99,04/19/19 00:33,"179 Chestnut St, Los Angeles, CA 90001" -192621,27in FHD Monitor,1,149.99,04/21/19 06:59,"985 Pine St, Boston, MA 02215" -192622,Google Phone,1,600,04/07/19 10:36,"317 Lincoln St, San Francisco, CA 94016" -192623,Wired Headphones,1,11.99,04/14/19 22:13,"448 Lincoln St, Portland, OR 97035" -192624,AA Batteries (4-pack),1,3.84,04/19/19 17:36,"686 Maple St, Boston, MA 02215" -192625,Bose SoundSport Headphones,1,99.99,04/15/19 18:07,"722 West St, San Francisco, CA 94016" -192626,USB-C Charging Cable,1,11.95,04/11/19 22:10,"819 West St, Dallas, TX 75001" -192627,Lightning Charging Cable,1,14.95,04/30/19 15:51,"984 Hickory St, Atlanta, GA 30301" -192628,27in FHD Monitor,1,149.99,04/22/19 10:38,"588 10th St, Dallas, TX 75001" -192629,AA Batteries (4-pack),2,3.84,04/14/19 10:10,"95 Cedar St, Boston, MA 02215" -192630,Google Phone,1,600,04/23/19 15:23,"669 4th St, San Francisco, CA 94016" -192631,Lightning Charging Cable,1,14.95,04/05/19 22:17,"279 Sunset St, San Francisco, CA 94016" -192632,Flatscreen TV,1,300,04/09/19 17:45,"671 Willow St, New York City, NY 10001" -192633,34in Ultrawide Monitor,1,379.99,04/01/19 17:34,"205 Walnut St, New York City, NY 10001" -192634,27in FHD Monitor,1,149.99,04/18/19 20:23,"244 10th St, Los Angeles, CA 90001" -192635,USB-C Charging Cable,1,11.95,04/26/19 20:03,"513 Adams St, San Francisco, CA 94016" -192636,Lightning Charging Cable,1,14.95,04/15/19 16:15,"125 Jackson St, Boston, MA 02215" -192637,ThinkPad Laptop,1,999.99,04/23/19 01:57,"432 Jackson St, Seattle, WA 98101" -192638,27in FHD Monitor,1,149.99,04/25/19 11:22,"380 13th St, Seattle, WA 98101" -192639,27in 4K Gaming Monitor,1,389.99,04/24/19 13:37,"683 Lakeview St, New York City, NY 10001" -192640,USB-C Charging Cable,1,11.95,04/06/19 13:35,"784 Lake St, Boston, MA 02215" -192641,AA Batteries (4-pack),2,3.84,04/02/19 14:03,"296 14th St, San Francisco, CA 94016" -192642,Wired Headphones,2,11.99,04/21/19 05:19,"808 14th St, Atlanta, GA 30301" -192643,Google Phone,1,600,04/19/19 22:33,"624 Center St, Boston, MA 02215" -192643,ThinkPad Laptop,1,999.99,04/19/19 22:33,"624 Center St, Boston, MA 02215" -192644,Wired Headphones,1,11.99,04/29/19 00:56,"633 4th St, Boston, MA 02215" -192645,Google Phone,1,600,04/21/19 07:47,"932 Maple St, San Francisco, CA 94016" -192645,Bose SoundSport Headphones,1,99.99,04/21/19 07:47,"932 Maple St, San Francisco, CA 94016" -192645,Wired Headphones,1,11.99,04/21/19 07:47,"932 Maple St, San Francisco, CA 94016" -192646,Apple Airpods Headphones,1,150,04/21/19 18:16,"53 North St, Los Angeles, CA 90001" -192647,AAA Batteries (4-pack),2,2.99,04/05/19 16:04,"372 Elm St, Atlanta, GA 30301" -192648,USB-C Charging Cable,1,11.95,04/24/19 02:49,"75 8th St, Seattle, WA 98101" -192649,Lightning Charging Cable,1,14.95,04/04/19 18:09,"973 Dogwood St, Boston, MA 02215" -192650,Wired Headphones,1,11.99,04/15/19 18:13,"844 River St, New York City, NY 10001" -192651,Apple Airpods Headphones,1,150,04/10/19 19:23,"262 North St, Austin, TX 73301" -192652,Lightning Charging Cable,1,14.95,04/20/19 13:16,"380 11th St, Atlanta, GA 30301" -192653,Lightning Charging Cable,1,14.95,04/27/19 14:13,"958 8th St, Los Angeles, CA 90001" -192654,iPhone,1,700,04/23/19 23:56,"287 Willow St, Atlanta, GA 30301" -192655,27in FHD Monitor,1,149.99,04/03/19 19:14,"937 Spruce St, Atlanta, GA 30301" -192656,20in Monitor,1,109.99,04/22/19 07:09,"603 1st St, Los Angeles, CA 90001" -192657,Lightning Charging Cable,1,14.95,04/17/19 12:22,"735 6th St, San Francisco, CA 94016" -192658,iPhone,1,700,04/30/19 14:16,"9 Maple St, New York City, NY 10001" -192659,Macbook Pro Laptop,1,1700,04/03/19 14:22,"84 5th St, Dallas, TX 75001" -192660,USB-C Charging Cable,1,11.95,04/23/19 20:56,"569 Dogwood St, New York City, NY 10001" -192661,Apple Airpods Headphones,1,150,04/23/19 12:31,"809 11th St, Atlanta, GA 30301" -192662,Wired Headphones,1,11.99,04/16/19 16:48,"493 Elm St, San Francisco, CA 94016" -192663,27in 4K Gaming Monitor,1,389.99,04/23/19 12:08,"945 Forest St, Atlanta, GA 30301" -192664,27in FHD Monitor,1,149.99,04/07/19 12:09,"742 Hickory St, San Francisco, CA 94016" -192665,34in Ultrawide Monitor,1,379.99,04/04/19 11:40,"166 Park St, Atlanta, GA 30301" -192666,Macbook Pro Laptop,1,1700,04/17/19 10:20,"655 Madison St, San Francisco, CA 94016" -192667,AAA Batteries (4-pack),1,2.99,04/10/19 08:52,"792 River St, San Francisco, CA 94016" -192668,20in Monitor,1,109.99,04/10/19 11:48,"72 Center St, Atlanta, GA 30301" -192669,iPhone,1,700,04/27/19 14:14,"759 Hickory St, Boston, MA 02215" -192670,Lightning Charging Cable,1,14.95,04/11/19 23:30,"736 2nd St, New York City, NY 10001" -192671,ThinkPad Laptop,1,999.99,04/07/19 11:32,"196 Dogwood St, Dallas, TX 75001" -192672,AA Batteries (4-pack),1,3.84,04/06/19 10:03,"574 10th St, San Francisco, CA 94016" -192673,Bose SoundSport Headphones,1,99.99,04/02/19 19:33,"447 North St, Los Angeles, CA 90001" -192674,Wired Headphones,1,11.99,04/03/19 12:52,"746 Hickory St, San Francisco, CA 94016" -192675,34in Ultrawide Monitor,1,379.99,04/05/19 09:47,"234 11th St, San Francisco, CA 94016" -192676,iPhone,1,700,04/27/19 17:11,"412 Church St, Seattle, WA 98101" -192677,AAA Batteries (4-pack),1,2.99,04/08/19 14:34,"75 Main St, Boston, MA 02215" -192677,iPhone,1,700,04/08/19 14:34,"75 Main St, Boston, MA 02215" -192678,ThinkPad Laptop,1,999.99,04/24/19 11:44,"444 Lakeview St, Los Angeles, CA 90001" -192679,27in FHD Monitor,1,149.99,04/06/19 12:10,"857 West St, Los Angeles, CA 90001" -192680,USB-C Charging Cable,1,11.95,04/29/19 21:07,"980 River St, Boston, MA 02215" -192681,Google Phone,1,600,04/09/19 16:41,"338 South St, Seattle, WA 98101" -192681,Wired Headphones,1,11.99,04/09/19 16:41,"338 South St, Seattle, WA 98101" -192682,27in 4K Gaming Monitor,1,389.99,04/17/19 16:24,"367 Cedar St, New York City, NY 10001" -192683,AAA Batteries (4-pack),1,2.99,04/21/19 22:20,"891 Spruce St, San Francisco, CA 94016" -192684,AA Batteries (4-pack),4,3.84,04/16/19 12:37,"902 Park St, Dallas, TX 75001" -192685,Apple Airpods Headphones,1,150,04/21/19 10:46,"706 West St, Seattle, WA 98101" -192686,Apple Airpods Headphones,1,150,04/27/19 19:14,"401 12th St, Los Angeles, CA 90001" -192687,iPhone,1,700,04/09/19 12:40,"115 8th St, Los Angeles, CA 90001" -192688,Wired Headphones,1,11.99,04/11/19 00:46,"930 Hickory St, San Francisco, CA 94016" -192689,Apple Airpods Headphones,1,150,04/03/19 17:21,"79 Cherry St, San Francisco, CA 94016" -192690,USB-C Charging Cable,1,11.95,04/02/19 08:35,"477 Center St, Los Angeles, CA 90001" -192691,34in Ultrawide Monitor,1,379.99,04/10/19 18:30,"623 Jackson St, Austin, TX 73301" -192692,USB-C Charging Cable,1,11.95,04/21/19 16:54,"253 Johnson St, San Francisco, CA 94016" -192693,Lightning Charging Cable,1,14.95,04/14/19 16:17,"159 Walnut St, Dallas, TX 75001" -192694,Wired Headphones,1,11.99,04/11/19 15:54,"773 14th St, Boston, MA 02215" -192695,Macbook Pro Laptop,1,1700,04/02/19 12:12,"236 Lincoln St, Los Angeles, CA 90001" -192696,34in Ultrawide Monitor,1,379.99,04/01/19 08:32,"925 South St, San Francisco, CA 94016" -192697,Macbook Pro Laptop,1,1700,04/26/19 16:43,"810 7th St, Boston, MA 02215" -,,,,, -192698,Apple Airpods Headphones,1,150,04/27/19 13:42,"490 6th St, Dallas, TX 75001" -192699,AAA Batteries (4-pack),2,2.99,04/30/19 00:21,"508 10th St, San Francisco, CA 94016" -192700,Google Phone,1,600,04/09/19 10:53,"213 Hickory St, New York City, NY 10001" -192701,Apple Airpods Headphones,1,150,04/15/19 14:21,"899 Jefferson St, New York City, NY 10001" -192702,AAA Batteries (4-pack),1,2.99,04/26/19 20:27,"731 Maple St, Atlanta, GA 30301" -192703,Lightning Charging Cable,1,14.95,04/21/19 22:01,"403 North St, Los Angeles, CA 90001" -192704,Lightning Charging Cable,2,14.95,04/08/19 23:42,"77 Cherry St, San Francisco, CA 94016" -192705,Lightning Charging Cable,1,14.95,04/27/19 13:16,"121 14th St, Portland, ME 04101" -192706,AA Batteries (4-pack),1,3.84,04/28/19 20:00,"660 Park St, Dallas, TX 75001" -192707,AA Batteries (4-pack),1,3.84,04/16/19 18:02,"10 Park St, Austin, TX 73301" -192708,Flatscreen TV,1,300,04/01/19 13:51,"595 10th St, New York City, NY 10001" -192709,AA Batteries (4-pack),1,3.84,04/13/19 21:19,"309 5th St, San Francisco, CA 94016" -192710,Lightning Charging Cable,1,14.95,04/13/19 22:13,"171 13th St, Dallas, TX 75001" -192711,AAA Batteries (4-pack),2,2.99,04/20/19 17:46,"763 Lakeview St, Boston, MA 02215" -192712,34in Ultrawide Monitor,1,379.99,04/04/19 20:29,"815 10th St, Austin, TX 73301" -192713,Apple Airpods Headphones,1,150,04/01/19 20:45,"251 11th St, Atlanta, GA 30301" -192714,AA Batteries (4-pack),2,3.84,04/28/19 14:32,"149 Adams St, Austin, TX 73301" -192715,AA Batteries (4-pack),1,3.84,04/09/19 11:55,"535 2nd St, Dallas, TX 75001" -192716,Apple Airpods Headphones,1,150,04/22/19 00:03,"578 Hickory St, Los Angeles, CA 90001" -192717,27in FHD Monitor,1,149.99,04/26/19 21:48,"400 North St, New York City, NY 10001" -192718,ThinkPad Laptop,1,999.99,05/01/19 00:54,"342 8th St, Portland, OR 97035" -192719,Wired Headphones,1,11.99,04/15/19 15:16,"654 Dogwood St, San Francisco, CA 94016" -192720,USB-C Charging Cable,1,11.95,04/07/19 17:19,"833 Adams St, New York City, NY 10001" -192721,Wired Headphones,1,11.99,04/20/19 13:33,"581 River St, San Francisco, CA 94016" -192722,USB-C Charging Cable,1,11.95,04/03/19 19:54,"58 Meadow St, Boston, MA 02215" -192723,Apple Airpods Headphones,1,150,04/04/19 17:56,"797 Jefferson St, Portland, OR 97035" -192724,AA Batteries (4-pack),3,3.84,04/11/19 21:10,"232 Wilson St, Boston, MA 02215" -192725,AAA Batteries (4-pack),1,2.99,04/13/19 14:09,"75 13th St, San Francisco, CA 94016" -192726,Lightning Charging Cable,2,14.95,04/02/19 12:38,"73 Wilson St, New York City, NY 10001" -192727,27in 4K Gaming Monitor,1,389.99,04/19/19 10:54,"474 4th St, San Francisco, CA 94016" -192727,Macbook Pro Laptop,1,1700,04/19/19 10:54,"474 4th St, San Francisco, CA 94016" -192728,Wired Headphones,1,11.99,04/10/19 22:09,"496 6th St, San Francisco, CA 94016" -192729,AA Batteries (4-pack),1,3.84,04/15/19 15:45,"123 4th St, Seattle, WA 98101" -192730,AA Batteries (4-pack),1,3.84,04/10/19 09:57,"101 South St, New York City, NY 10001" -192731,27in FHD Monitor,1,149.99,04/12/19 14:59,"501 8th St, Boston, MA 02215" -192732,LG Dryer,1,600.0,04/06/19 16:01,"41 Forest St, Seattle, WA 98101" -192733,USB-C Charging Cable,1,11.95,04/04/19 16:25,"501 8th St, Portland, ME 04101" -192734,Bose SoundSport Headphones,1,99.99,04/27/19 10:55,"843 Cherry St, San Francisco, CA 94016" -192735,Bose SoundSport Headphones,1,99.99,04/21/19 20:34,"678 12th St, Dallas, TX 75001" -192736,20in Monitor,1,109.99,04/13/19 09:41,"636 14th St, Austin, TX 73301" -192737,AAA Batteries (4-pack),3,2.99,04/08/19 20:34,"187 Cedar St, San Francisco, CA 94016" -192738,Bose SoundSport Headphones,1,99.99,04/17/19 11:27,"396 River St, Seattle, WA 98101" -192739,Apple Airpods Headphones,1,150,04/04/19 17:58,"971 Hill St, Seattle, WA 98101" -192740,Apple Airpods Headphones,1,150,04/03/19 13:09,"368 Jackson St, San Francisco, CA 94016" -192741,Bose SoundSport Headphones,1,99.99,04/09/19 19:06,"946 Dogwood St, San Francisco, CA 94016" -192742,Lightning Charging Cable,1,14.95,04/18/19 11:55,"215 Maple St, Atlanta, GA 30301" -192743,Lightning Charging Cable,1,14.95,04/24/19 10:09,"583 Church St, Los Angeles, CA 90001" -192744,Bose SoundSport Headphones,1,99.99,04/13/19 17:56,"628 Spruce St, Dallas, TX 75001" -192745,Lightning Charging Cable,1,14.95,04/24/19 01:15,"709 Pine St, Austin, TX 73301" -192746,Apple Airpods Headphones,1,150,04/10/19 18:25,"234 Meadow St, New York City, NY 10001" -192747,Lightning Charging Cable,1,14.95,04/12/19 19:35,"411 Lake St, San Francisco, CA 94016" -192748,USB-C Charging Cable,1,11.95,04/21/19 15:44,"660 Walnut St, Seattle, WA 98101" -192749,Lightning Charging Cable,1,14.95,04/05/19 17:14,"495 Elm St, Dallas, TX 75001" -192750,Lightning Charging Cable,1,14.95,04/20/19 08:38,"716 13th St, Los Angeles, CA 90001" -192751,ThinkPad Laptop,1,999.99,04/11/19 12:44,"435 Pine St, Los Angeles, CA 90001" -192752,USB-C Charging Cable,1,11.95,04/21/19 19:58,"416 Pine St, San Francisco, CA 94016" -192753,Lightning Charging Cable,1,14.95,04/17/19 11:54,"637 4th St, Dallas, TX 75001" -192754,Lightning Charging Cable,1,14.95,04/22/19 02:38,"533 North St, Boston, MA 02215" -192755,AA Batteries (4-pack),1,3.84,04/14/19 14:47,"876 Walnut St, Atlanta, GA 30301" -192756,27in 4K Gaming Monitor,1,389.99,04/22/19 22:43,"400 2nd St, Los Angeles, CA 90001" -192757,AA Batteries (4-pack),3,3.84,04/15/19 08:08,"788 4th St, Austin, TX 73301" -192758,AAA Batteries (4-pack),2,2.99,04/20/19 09:13,"586 Adams St, Los Angeles, CA 90001" -192759,Lightning Charging Cable,1,14.95,04/26/19 17:21,"148 8th St, Austin, TX 73301" -192760,Wired Headphones,1,11.99,04/05/19 06:21,"185 9th St, Los Angeles, CA 90001" -192761,Bose SoundSport Headphones,1,99.99,04/09/19 22:24,"77 Chestnut St, San Francisco, CA 94016" -192762,27in 4K Gaming Monitor,1,389.99,04/08/19 19:26,"579 5th St, Atlanta, GA 30301" -192763,ThinkPad Laptop,1,999.99,04/17/19 09:17,"970 West St, Atlanta, GA 30301" -192764,USB-C Charging Cable,1,11.95,04/26/19 17:47,"59 1st St, Los Angeles, CA 90001" -192765,Macbook Pro Laptop,1,1700,04/25/19 15:59,"324 Jackson St, Atlanta, GA 30301" -192766,Wired Headphones,1,11.99,04/29/19 13:18,"695 Forest St, Dallas, TX 75001" -192767,USB-C Charging Cable,1,11.95,04/19/19 11:11,"727 Park St, Portland, OR 97035" -192768,AAA Batteries (4-pack),1,2.99,04/10/19 20:49,"563 Center St, San Francisco, CA 94016" -192769,AA Batteries (4-pack),1,3.84,04/12/19 10:39,"81 14th St, New York City, NY 10001" -192770,USB-C Charging Cable,1,11.95,04/16/19 14:58,"331 4th St, Atlanta, GA 30301" -192771,iPhone,1,700,04/17/19 00:08,"793 Elm St, San Francisco, CA 94016" -192772,Bose SoundSport Headphones,1,99.99,04/27/19 13:14,"400 1st St, Dallas, TX 75001" -192773,USB-C Charging Cable,1,11.95,04/09/19 14:24,"944 1st St, Los Angeles, CA 90001" -192774,Wired Headphones,1,11.99,04/08/19 15:27,"65 10th St, Portland, ME 04101" -192775,Google Phone,1,600,04/16/19 14:47,"161 4th St, Boston, MA 02215" -192776,USB-C Charging Cable,1,11.95,04/17/19 11:37,"428 Hickory St, San Francisco, CA 94016" -192777,AAA Batteries (4-pack),1,2.99,04/10/19 09:42,"508 River St, Seattle, WA 98101" -192778,iPhone,1,700,04/20/19 11:29,"791 South St, New York City, NY 10001" -192779,AAA Batteries (4-pack),1,2.99,04/02/19 23:52,"221 11th St, San Francisco, CA 94016" -192780,Bose SoundSport Headphones,1,99.99,04/26/19 16:29,"965 Lakeview St, San Francisco, CA 94016" -192781,Apple Airpods Headphones,1,150,04/13/19 17:29,"541 Hill St, San Francisco, CA 94016" -192782,iPhone,1,700,04/15/19 22:16,"64 13th St, Boston, MA 02215" -192783,AAA Batteries (4-pack),1,2.99,04/06/19 23:27,"396 Sunset St, Boston, MA 02215" -192784,AAA Batteries (4-pack),1,2.99,04/10/19 17:44,"2 South St, San Francisco, CA 94016" -192785,Wired Headphones,1,11.99,04/08/19 21:55,"853 12th St, New York City, NY 10001" -192786,Flatscreen TV,1,300,04/12/19 12:55,"85 Johnson St, Austin, TX 73301" -192787,Lightning Charging Cable,1,14.95,04/13/19 11:53,"866 Adams St, San Francisco, CA 94016" -192788,AAA Batteries (4-pack),1,2.99,04/30/19 15:40,"836 11th St, San Francisco, CA 94016" -192789,Wired Headphones,1,11.99,04/12/19 22:42,"6 Dogwood St, Austin, TX 73301" -192790,Bose SoundSport Headphones,1,99.99,04/30/19 21:41,"739 Jackson St, Seattle, WA 98101" -192791,AA Batteries (4-pack),2,3.84,04/22/19 06:46,"162 Cherry St, Los Angeles, CA 90001" -192792,Lightning Charging Cable,1,14.95,04/02/19 10:31,"299 Spruce St, Seattle, WA 98101" -192793,34in Ultrawide Monitor,1,379.99,04/19/19 18:12,"907 Highland St, Boston, MA 02215" -192794,Lightning Charging Cable,1,14.95,04/05/19 14:46,"337 5th St, Seattle, WA 98101" -192795,Lightning Charging Cable,2,14.95,04/14/19 22:59,"128 Ridge St, Atlanta, GA 30301" -192796,USB-C Charging Cable,1,11.95,04/29/19 09:52,"110 4th St, Seattle, WA 98101" -192797,iPhone,1,700,04/10/19 04:24,"905 Jefferson St, Los Angeles, CA 90001" -192797,Apple Airpods Headphones,1,150,04/10/19 04:24,"905 Jefferson St, Los Angeles, CA 90001" -192798,Vareebadd Phone,1,400,04/09/19 13:23,"282 Park St, Atlanta, GA 30301" -192798,USB-C Charging Cable,1,11.95,04/09/19 13:23,"282 Park St, Atlanta, GA 30301" -192799,Bose SoundSport Headphones,1,99.99,04/03/19 09:06,"999 Adams St, Boston, MA 02215" -192800,AAA Batteries (4-pack),1,2.99,04/02/19 22:17,"590 Pine St, Boston, MA 02215" -192801,USB-C Charging Cable,1,11.95,04/03/19 22:13,"172 Chestnut St, Portland, OR 97035" -192802,AA Batteries (4-pack),1,3.84,04/30/19 13:00,"17 Madison St, Seattle, WA 98101" -192803,20in Monitor,1,109.99,04/07/19 11:33,"929 13th St, San Francisco, CA 94016" -192804,Lightning Charging Cable,2,14.95,04/09/19 22:19,"219 14th St, Atlanta, GA 30301" -192805,Bose SoundSport Headphones,1,99.99,04/02/19 12:17,"950 10th St, San Francisco, CA 94016" -192806,iPhone,1,700,04/29/19 19:48,"947 Lake St, San Francisco, CA 94016" -192807,AAA Batteries (4-pack),1,2.99,04/25/19 13:01,"383 7th St, San Francisco, CA 94016" -192808,Wired Headphones,2,11.99,04/25/19 08:18,"182 Hickory St, Portland, OR 97035" -192809,Lightning Charging Cable,1,14.95,04/28/19 21:37,"572 Washington St, San Francisco, CA 94016" -192810,AA Batteries (4-pack),1,3.84,04/24/19 16:21,"193 Madison St, San Francisco, CA 94016" -192811,Vareebadd Phone,1,400,04/20/19 11:27,"483 Center St, Los Angeles, CA 90001" -192812,Lightning Charging Cable,2,14.95,04/16/19 22:15,"454 Pine St, San Francisco, CA 94016" -192813,Wired Headphones,1,11.99,04/30/19 11:55,"655 Jackson St, Dallas, TX 75001" -192814,Macbook Pro Laptop,1,1700,04/21/19 19:22,"744 14th St, Seattle, WA 98101" -192814,AAA Batteries (4-pack),2,2.99,04/21/19 19:22,"744 14th St, Seattle, WA 98101" -192815,Apple Airpods Headphones,1,150,04/23/19 21:19,"656 South St, Atlanta, GA 30301" -192816,34in Ultrawide Monitor,1,379.99,04/24/19 14:29,"832 Hill St, Portland, OR 97035" -192817,USB-C Charging Cable,2,11.95,04/09/19 19:26,"530 14th St, New York City, NY 10001" -192818,27in 4K Gaming Monitor,1,389.99,04/04/19 15:21,"305 Cedar St, Austin, TX 73301" -192819,AAA Batteries (4-pack),1,2.99,04/03/19 21:54,"186 Ridge St, Seattle, WA 98101" -192820,Lightning Charging Cable,1,14.95,04/08/19 16:51,"662 Willow St, New York City, NY 10001" -192820,AA Batteries (4-pack),1,3.84,04/08/19 16:51,"662 Willow St, New York City, NY 10001" -192821,AA Batteries (4-pack),1,3.84,04/25/19 16:10,"706 Johnson St, San Francisco, CA 94016" -192822,Vareebadd Phone,1,400,04/10/19 18:16,"561 13th St, New York City, NY 10001" -192823,USB-C Charging Cable,1,11.95,04/11/19 12:36,"468 8th St, San Francisco, CA 94016" -192824,USB-C Charging Cable,1,11.95,04/27/19 15:59,"287 Highland St, San Francisco, CA 94016" -192825,Vareebadd Phone,1,400,04/16/19 14:55,"807 10th St, Dallas, TX 75001" -192826,Lightning Charging Cable,1,14.95,04/23/19 19:55,"552 4th St, Los Angeles, CA 90001" -192827,34in Ultrawide Monitor,1,379.99,04/18/19 21:02,"649 South St, Atlanta, GA 30301" -192828,USB-C Charging Cable,1,11.95,04/16/19 08:49,"858 12th St, San Francisco, CA 94016" -192829,Google Phone,1,600,04/12/19 17:16,"173 13th St, Austin, TX 73301" -192830,Lightning Charging Cable,1,14.95,04/30/19 10:57,"413 River St, New York City, NY 10001" -192831,ThinkPad Laptop,1,999.99,04/27/19 17:02,"194 4th St, Atlanta, GA 30301" -192832,AAA Batteries (4-pack),1,2.99,04/06/19 08:30,"578 Forest St, Los Angeles, CA 90001" -192833,Google Phone,1,600,04/27/19 22:08,"592 Jefferson St, San Francisco, CA 94016" -192834,AA Batteries (4-pack),3,3.84,04/04/19 21:33,"608 Chestnut St, Portland, OR 97035" -192835,Bose SoundSport Headphones,1,99.99,04/17/19 15:04,"298 Hill St, San Francisco, CA 94016" -192836,AAA Batteries (4-pack),2,2.99,04/17/19 19:03,"36 Sunset St, Portland, ME 04101" -192837,AAA Batteries (4-pack),1,2.99,04/26/19 21:41,"349 10th St, Atlanta, GA 30301" -192838,Lightning Charging Cable,1,14.95,04/20/19 02:13,"266 Forest St, Atlanta, GA 30301" -192839,Google Phone,1,600,04/28/19 09:10,"589 Cherry St, Austin, TX 73301" -,,,,, -192840,Google Phone,1,600,04/27/19 09:54,"505 12th St, New York City, NY 10001" -192841,Lightning Charging Cable,1,14.95,04/05/19 12:26,"511 Park St, Los Angeles, CA 90001" -192842,20in Monitor,1,109.99,04/03/19 11:35,"240 12th St, New York City, NY 10001" -192843,AA Batteries (4-pack),1,3.84,04/17/19 10:36,"957 Park St, Dallas, TX 75001" -192844,ThinkPad Laptop,1,999.99,04/21/19 17:33,"927 5th St, Atlanta, GA 30301" -192845,27in FHD Monitor,1,149.99,04/13/19 11:37,"998 Church St, Seattle, WA 98101" -192846,AA Batteries (4-pack),2,3.84,04/19/19 09:49,"730 Spruce St, Austin, TX 73301" -192847,Wired Headphones,1,11.99,04/22/19 19:19,"909 Hickory St, Dallas, TX 75001" -192848,Apple Airpods Headphones,1,150,04/28/19 17:53,"748 4th St, Atlanta, GA 30301" -192849,AA Batteries (4-pack),2,3.84,04/16/19 14:05,"697 Spruce St, Atlanta, GA 30301" -192850,27in 4K Gaming Monitor,1,389.99,04/12/19 13:24,"8 Lincoln St, New York City, NY 10001" -192851,AAA Batteries (4-pack),1,2.99,04/18/19 12:28,"401 Main St, Boston, MA 02215" -192852,AA Batteries (4-pack),2,3.84,04/09/19 14:59,"394 Madison St, Dallas, TX 75001" -192853,USB-C Charging Cable,2,11.95,04/01/19 23:30,"594 Lincoln St, San Francisco, CA 94016" -192854,Lightning Charging Cable,1,14.95,04/10/19 05:18,"918 5th St, San Francisco, CA 94016" -192855,27in 4K Gaming Monitor,1,389.99,04/18/19 12:39,"461 Hill St, Los Angeles, CA 90001" -192856,Lightning Charging Cable,2,14.95,04/11/19 18:09,"172 Willow St, San Francisco, CA 94016" -192857,Bose SoundSport Headphones,1,99.99,04/25/19 19:49,"520 Center St, Portland, OR 97035" -192858,Bose SoundSport Headphones,1,99.99,04/23/19 07:02,"851 Willow St, Atlanta, GA 30301" -192859,27in FHD Monitor,1,149.99,04/11/19 03:55,"678 West St, New York City, NY 10001" -192860,USB-C Charging Cable,1,11.95,04/26/19 20:46,"558 7th St, New York City, NY 10001" -192861,Lightning Charging Cable,1,14.95,04/25/19 14:38,"793 10th St, Dallas, TX 75001" -192862,Lightning Charging Cable,1,14.95,04/26/19 20:13,"843 Johnson St, New York City, NY 10001" -192863,Wired Headphones,1,11.99,04/23/19 00:10,"803 12th St, Los Angeles, CA 90001" -192864,iPhone,1,700,04/13/19 10:02,"815 Maple St, San Francisco, CA 94016" -192865,34in Ultrawide Monitor,1,379.99,04/01/19 19:11,"605 Pine St, Los Angeles, CA 90001" -192866,Macbook Pro Laptop,1,1700,04/28/19 07:54,"758 Forest St, Dallas, TX 75001" -192867,Apple Airpods Headphones,1,150,04/17/19 19:20,"712 Jefferson St, San Francisco, CA 94016" -192868,Vareebadd Phone,1,400,04/07/19 22:25,"776 Spruce St, Boston, MA 02215" -192869,Bose SoundSport Headphones,1,99.99,04/24/19 11:52,"528 Maple St, Los Angeles, CA 90001" -192870,Bose SoundSport Headphones,1,99.99,04/14/19 17:54,"967 1st St, Atlanta, GA 30301" -192871,Lightning Charging Cable,1,14.95,04/11/19 08:48,"814 Meadow St, Los Angeles, CA 90001" -192872,27in FHD Monitor,1,149.99,04/20/19 22:04,"823 13th St, San Francisco, CA 94016" -192873,Wired Headphones,1,11.99,04/18/19 19:01,"893 5th St, New York City, NY 10001" -192874,Apple Airpods Headphones,1,150,04/14/19 10:01,"848 Church St, Austin, TX 73301" -192875,Lightning Charging Cable,1,14.95,04/10/19 16:05,"542 Lakeview St, Portland, OR 97035" -192876,34in Ultrawide Monitor,1,379.99,04/06/19 11:57,"234 8th St, New York City, NY 10001" -192877,USB-C Charging Cable,1,11.95,04/16/19 08:42,"118 Hill St, New York City, NY 10001" -192878,iPhone,1,700,04/25/19 17:20,"645 12th St, Seattle, WA 98101" -192878,Lightning Charging Cable,1,14.95,04/25/19 17:20,"645 12th St, Seattle, WA 98101" -192879,USB-C Charging Cable,1,11.95,04/17/19 15:25,"631 12th St, San Francisco, CA 94016" -192880,Bose SoundSport Headphones,1,99.99,04/16/19 08:42,"121 Adams St, Dallas, TX 75001" -192881,AAA Batteries (4-pack),1,2.99,04/22/19 18:24,"768 Maple St, San Francisco, CA 94016" -192882,AA Batteries (4-pack),1,3.84,04/13/19 11:10,"402 Spruce St, Seattle, WA 98101" -192883,USB-C Charging Cable,2,11.95,04/05/19 15:24,"709 Highland St, San Francisco, CA 94016" -192884,Apple Airpods Headphones,1,150,04/15/19 15:32,"606 South St, Portland, OR 97035" -192885,AA Batteries (4-pack),2,3.84,04/21/19 15:36,"153 Spruce St, Seattle, WA 98101" -192886,AAA Batteries (4-pack),1,2.99,04/25/19 13:57,"386 Wilson St, Austin, TX 73301" -192887,Wired Headphones,1,11.99,04/12/19 11:50,"594 4th St, Portland, OR 97035" -192888,AA Batteries (4-pack),1,3.84,04/03/19 12:39,"214 Center St, Austin, TX 73301" -192889,USB-C Charging Cable,1,11.95,04/30/19 12:38,"753 9th St, Los Angeles, CA 90001" -192890,USB-C Charging Cable,1,11.95,04/27/19 17:13,"806 Willow St, Boston, MA 02215" -192891,Bose SoundSport Headphones,1,99.99,04/24/19 11:06,"15 7th St, New York City, NY 10001" -192892,Lightning Charging Cable,1,14.95,04/04/19 12:28,"363 Forest St, Boston, MA 02215" -192893,Apple Airpods Headphones,1,150,04/09/19 08:42,"404 Center St, Austin, TX 73301" -192894,AA Batteries (4-pack),1,3.84,04/06/19 09:54,"89 Chestnut St, Boston, MA 02215" -192895,Lightning Charging Cable,1,14.95,04/18/19 12:40,"390 6th St, San Francisco, CA 94016" -192896,34in Ultrawide Monitor,1,379.99,04/06/19 21:29,"945 6th St, Seattle, WA 98101" -192897,Apple Airpods Headphones,1,150,04/29/19 20:58,"408 12th St, Boston, MA 02215" -192897,AAA Batteries (4-pack),1,2.99,04/29/19 20:58,"408 12th St, Boston, MA 02215" -192898,Wired Headphones,1,11.99,04/11/19 09:14,"264 Willow St, Seattle, WA 98101" -192899,Apple Airpods Headphones,1,150,04/05/19 02:43,"283 4th St, San Francisco, CA 94016" -192900,27in FHD Monitor,1,149.99,04/15/19 06:22,"3 North St, Seattle, WA 98101" -192901,USB-C Charging Cable,1,11.95,04/10/19 17:10,"282 Cherry St, Boston, MA 02215" -192902,20in Monitor,1,109.99,04/11/19 07:56,"467 Johnson St, Los Angeles, CA 90001" -192903,ThinkPad Laptop,1,999.99,04/01/19 18:50,"798 Sunset St, Atlanta, GA 30301" -192904,AAA Batteries (4-pack),3,2.99,04/04/19 20:28,"403 River St, Los Angeles, CA 90001" -192905,Lightning Charging Cable,1,14.95,04/18/19 02:03,"338 12th St, Portland, OR 97035" -192906,20in Monitor,1,109.99,04/30/19 07:50,"881 Adams St, San Francisco, CA 94016" -192907,Macbook Pro Laptop,1,1700,04/17/19 18:26,"811 Ridge St, Los Angeles, CA 90001" -192908,Lightning Charging Cable,1,14.95,04/22/19 16:54,"450 North St, Dallas, TX 75001" -192909,Apple Airpods Headphones,1,150,04/13/19 09:25,"489 Sunset St, Seattle, WA 98101" -192910,Bose SoundSport Headphones,1,99.99,04/28/19 18:36,"111 South St, San Francisco, CA 94016" -192911,Wired Headphones,1,11.99,04/29/19 14:04,"809 Willow St, Portland, OR 97035" -192912,Flatscreen TV,1,300,04/07/19 09:58,"552 Johnson St, Los Angeles, CA 90001" -192913,AA Batteries (4-pack),3,3.84,04/19/19 14:23,"573 Pine St, Los Angeles, CA 90001" -192914,AA Batteries (4-pack),2,3.84,04/28/19 13:33,"560 West St, New York City, NY 10001" -192915,Flatscreen TV,1,300,04/06/19 12:24,"884 Jackson St, Austin, TX 73301" -192916,27in 4K Gaming Monitor,1,389.99,04/29/19 12:56,"911 4th St, Dallas, TX 75001" -192917,AAA Batteries (4-pack),2,2.99,04/29/19 23:06,"98 Maple St, San Francisco, CA 94016" -192917,USB-C Charging Cable,1,11.95,04/29/19 23:06,"98 Maple St, San Francisco, CA 94016" -192918,27in 4K Gaming Monitor,1,389.99,04/25/19 02:42,"856 1st St, San Francisco, CA 94016" -192919,Apple Airpods Headphones,1,150,04/13/19 13:54,"157 Highland St, San Francisco, CA 94016" -192920,AAA Batteries (4-pack),1,2.99,04/30/19 22:47,"899 River St, Portland, OR 97035" -192921,USB-C Charging Cable,1,11.95,04/10/19 11:41,"979 River St, Seattle, WA 98101" -192922,Bose SoundSport Headphones,1,99.99,04/14/19 05:38,"266 8th St, Los Angeles, CA 90001" -192923,ThinkPad Laptop,1,999.99,04/11/19 15:56,"893 Johnson St, Seattle, WA 98101" -192924,AA Batteries (4-pack),1,3.84,04/12/19 05:26,"215 Sunset St, San Francisco, CA 94016" -192925,AA Batteries (4-pack),2,3.84,04/09/19 18:14,"680 Johnson St, San Francisco, CA 94016" -192926,Vareebadd Phone,1,400,04/18/19 19:03,"950 Adams St, San Francisco, CA 94016" -192927,USB-C Charging Cable,1,11.95,04/29/19 10:56,"448 Forest St, San Francisco, CA 94016" -192928,20in Monitor,1,109.99,04/15/19 19:49,"375 Madison St, Dallas, TX 75001" -192929,Lightning Charging Cable,1,14.95,04/08/19 17:25,"126 Lincoln St, Seattle, WA 98101" -192930,Lightning Charging Cable,1,14.95,04/23/19 14:25,"557 South St, Boston, MA 02215" -192931,LG Dryer,1,600.0,04/25/19 13:21,"839 Willow St, San Francisco, CA 94016" -192932,AAA Batteries (4-pack),5,2.99,04/08/19 16:51,"553 Dogwood St, Seattle, WA 98101" -192933,Wired Headphones,1,11.99,04/07/19 09:45,"789 5th St, Boston, MA 02215" -192934,27in 4K Gaming Monitor,1,389.99,04/18/19 17:09,"976 1st St, San Francisco, CA 94016" -192935,AAA Batteries (4-pack),1,2.99,04/28/19 13:02,"214 9th St, San Francisco, CA 94016" -192936,27in FHD Monitor,1,149.99,04/16/19 15:23,"43 South St, New York City, NY 10001" -192937,Apple Airpods Headphones,1,150,04/16/19 09:23,"431 Jefferson St, Los Angeles, CA 90001" -192938,Apple Airpods Headphones,1,150,04/19/19 14:57,"584 Main St, Seattle, WA 98101" -192939,34in Ultrawide Monitor,1,379.99,04/29/19 21:07,"519 Adams St, Seattle, WA 98101" -192939,34in Ultrawide Monitor,1,379.99,04/29/19 21:07,"519 Adams St, Seattle, WA 98101" -192940,Lightning Charging Cable,1,14.95,04/02/19 18:18,"541 Sunset St, San Francisco, CA 94016" -192941,Wired Headphones,1,11.99,04/19/19 13:12,"158 Pine St, San Francisco, CA 94016" -192942,20in Monitor,1,109.99,04/28/19 13:26,"383 Madison St, Los Angeles, CA 90001" -192943,AAA Batteries (4-pack),1,2.99,04/29/19 13:48,"641 Lake St, San Francisco, CA 94016" -192944,27in 4K Gaming Monitor,1,389.99,04/25/19 22:08,"748 South St, Seattle, WA 98101" -192945,AA Batteries (4-pack),2,3.84,04/12/19 14:18,"98 Main St, Portland, OR 97035" -192946,Wired Headphones,1,11.99,04/03/19 13:53,"774 Forest St, San Francisco, CA 94016" -192947,Wired Headphones,1,11.99,04/08/19 07:34,"351 Cherry St, Seattle, WA 98101" -192948,AA Batteries (4-pack),2,3.84,04/26/19 12:12,"591 Walnut St, Boston, MA 02215" -192949,Bose SoundSport Headphones,1,99.99,04/30/19 11:55,"860 South St, Los Angeles, CA 90001" -192950,Lightning Charging Cable,1,14.95,04/08/19 17:07,"360 Hill St, Portland, OR 97035" -192951,Wired Headphones,2,11.99,04/30/19 19:48,"737 Hickory St, Boston, MA 02215" -192952,Apple Airpods Headphones,1,150,04/08/19 16:02,"235 Adams St, Boston, MA 02215" -192953,Bose SoundSport Headphones,1,99.99,04/04/19 19:42,"141 Chestnut St, Dallas, TX 75001" -192954,Lightning Charging Cable,1,14.95,04/29/19 15:09,"12 9th St, Los Angeles, CA 90001" -192955,Lightning Charging Cable,1,14.95,04/06/19 20:13,"253 10th St, Dallas, TX 75001" -192956,Google Phone,1,600,04/27/19 15:18,"194 Walnut St, Austin, TX 73301" -192956,Wired Headphones,2,11.99,04/27/19 15:18,"194 Walnut St, Austin, TX 73301" -192957,AA Batteries (4-pack),1,3.84,04/01/19 12:45,"220 1st St, San Francisco, CA 94016" -192958,Apple Airpods Headphones,1,150,04/16/19 00:08,"628 Meadow St, Atlanta, GA 30301" -192959,Lightning Charging Cable,1,14.95,04/21/19 04:25,"996 Jefferson St, San Francisco, CA 94016" -192960,USB-C Charging Cable,1,11.95,04/03/19 17:02,"271 Church St, Boston, MA 02215" -192961,34in Ultrawide Monitor,1,379.99,04/25/19 18:57,"807 South St, San Francisco, CA 94016" -192962,AA Batteries (4-pack),1,3.84,04/16/19 20:51,"770 Madison St, Boston, MA 02215" -192963,Wired Headphones,1,11.99,04/13/19 08:46,"144 13th St, Austin, TX 73301" -192964,Wired Headphones,1,11.99,04/11/19 22:08,"688 Lincoln St, San Francisco, CA 94016" -192965,Google Phone,1,600,04/06/19 13:54,"91 Sunset St, Boston, MA 02215" -192966,Lightning Charging Cable,2,14.95,04/18/19 15:59,"8 Church St, New York City, NY 10001" -192967,34in Ultrawide Monitor,1,379.99,04/27/19 20:12,"322 Cherry St, Los Angeles, CA 90001" -192968,Wired Headphones,1,11.99,04/17/19 19:34,"94 Jackson St, New York City, NY 10001" -192969,iPhone,1,700,04/07/19 07:46,"414 Lakeview St, Portland, OR 97035" -192970,AAA Batteries (4-pack),2,2.99,04/24/19 13:42,"375 7th St, Atlanta, GA 30301" -192971,Vareebadd Phone,1,400,04/23/19 12:45,"532 Sunset St, Los Angeles, CA 90001" -192972,AA Batteries (4-pack),1,3.84,04/27/19 20:24,"251 Forest St, New York City, NY 10001" -192973,Apple Airpods Headphones,1,150,04/05/19 12:43,"800 2nd St, New York City, NY 10001" -192974,Bose SoundSport Headphones,1,99.99,04/20/19 16:59,"453 Chestnut St, Austin, TX 73301" -192975,Google Phone,1,600,04/06/19 18:58,"965 Hickory St, Boston, MA 02215" -192976,iPhone,1,700,04/30/19 07:51,"246 Park St, Portland, OR 97035" -192977,Apple Airpods Headphones,1,150,04/27/19 11:58,"406 Hill St, Los Angeles, CA 90001" -192978,27in 4K Gaming Monitor,1,389.99,04/04/19 15:04,"548 Forest St, New York City, NY 10001" -192979,Apple Airpods Headphones,1,150,04/01/19 19:42,"325 River St, San Francisco, CA 94016" -192980,AA Batteries (4-pack),1,3.84,04/06/19 14:18,"902 Park St, Boston, MA 02215" -192981,Wired Headphones,1,11.99,04/17/19 12:01,"698 Meadow St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -192982,20in Monitor,1,109.99,04/03/19 06:01,"288 7th St, Atlanta, GA 30301" -192983,Wired Headphones,1,11.99,04/26/19 21:14,"796 Sunset St, Los Angeles, CA 90001" -192984,Bose SoundSport Headphones,1,99.99,04/26/19 11:08,"958 South St, Atlanta, GA 30301" -192985,Google Phone,1,600,04/20/19 18:46,"384 North St, Portland, ME 04101" -192986,27in FHD Monitor,1,149.99,04/10/19 06:40,"272 Adams St, Los Angeles, CA 90001" -192987,Apple Airpods Headphones,1,150,04/27/19 10:41,"537 Wilson St, Seattle, WA 98101" -192988,AAA Batteries (4-pack),1,2.99,04/14/19 20:28,"946 Chestnut St, New York City, NY 10001" -192989,Vareebadd Phone,1,400,04/22/19 08:58,"268 River St, Los Angeles, CA 90001" -192990,27in FHD Monitor,1,149.99,04/11/19 23:05,"14 Cedar St, Dallas, TX 75001" -192991,AAA Batteries (4-pack),1,2.99,04/30/19 19:42,"82 Center St, Los Angeles, CA 90001" -192992,AAA Batteries (4-pack),1,2.99,04/01/19 21:06,"992 Meadow St, Boston, MA 02215" -192993,Lightning Charging Cable,1,14.95,04/05/19 16:27,"371 Jefferson St, Boston, MA 02215" -192994,20in Monitor,1,109.99,04/21/19 17:07,"964 Meadow St, Atlanta, GA 30301" -192995,Lightning Charging Cable,1,14.95,04/11/19 13:37,"412 Cedar St, Los Angeles, CA 90001" -192996,Macbook Pro Laptop,1,1700,04/16/19 06:56,"687 7th St, Boston, MA 02215" -192997,Google Phone,1,600,04/18/19 22:29,"370 Dogwood St, Dallas, TX 75001" -192998,iPhone,1,700,04/25/19 19:04,"538 South St, Atlanta, GA 30301" -192998,Wired Headphones,1,11.99,04/25/19 19:04,"538 South St, Atlanta, GA 30301" -192999,Lightning Charging Cable,1,14.95,04/07/19 12:11,"860 Lake St, San Francisco, CA 94016" -193000,Apple Airpods Headphones,1,150,04/13/19 21:21,"300 South St, New York City, NY 10001" -193001,AAA Batteries (4-pack),1,2.99,04/06/19 16:02,"884 Cedar St, Austin, TX 73301" -193002,Macbook Pro Laptop,1,1700,04/29/19 20:26,"625 Madison St, Austin, TX 73301" -193003,USB-C Charging Cable,1,11.95,04/17/19 18:50,"449 Lakeview St, Los Angeles, CA 90001" -193004,Macbook Pro Laptop,1,1700,04/19/19 22:58,"797 Dogwood St, San Francisco, CA 94016" -193005,Lightning Charging Cable,1,14.95,04/09/19 17:31,"119 Church St, Los Angeles, CA 90001" -193006,20in Monitor,1,109.99,04/15/19 01:41,"24 Madison St, New York City, NY 10001" -193007,Bose SoundSport Headphones,1,99.99,04/03/19 13:33,"108 North St, Seattle, WA 98101" -193008,AAA Batteries (4-pack),1,2.99,04/03/19 18:26,"357 Forest St, Boston, MA 02215" -193009,Google Phone,1,600,04/22/19 16:54,"571 6th St, Seattle, WA 98101" -193010,AAA Batteries (4-pack),1,2.99,04/20/19 11:22,"113 Lincoln St, Atlanta, GA 30301" -193011,AAA Batteries (4-pack),2,2.99,04/28/19 14:39,"466 Cedar St, Los Angeles, CA 90001" -193012,AA Batteries (4-pack),3,3.84,04/09/19 16:32,"177 River St, Dallas, TX 75001" -193013,USB-C Charging Cable,1,11.95,04/15/19 10:23,"47 Main St, San Francisco, CA 94016" -193014,Apple Airpods Headphones,1,150,04/26/19 15:42,"831 Cherry St, Atlanta, GA 30301" -193015,Lightning Charging Cable,1,14.95,04/01/19 12:13,"520 Chestnut St, Austin, TX 73301" -193016,Bose SoundSport Headphones,1,99.99,04/12/19 21:47,"22 Park St, Los Angeles, CA 90001" -193017,USB-C Charging Cable,1,11.95,04/05/19 15:59,"361 Pine St, Dallas, TX 75001" -193018,20in Monitor,1,109.99,04/10/19 19:58,"378 Pine St, Seattle, WA 98101" -193019,iPhone,1,700,04/09/19 12:15,"438 8th St, Los Angeles, CA 90001" -193020,Lightning Charging Cable,1,14.95,04/20/19 16:23,"333 8th St, New York City, NY 10001" -193021,Apple Airpods Headphones,1,150,04/07/19 17:38,"844 2nd St, Los Angeles, CA 90001" -193022,AAA Batteries (4-pack),1,2.99,04/28/19 10:22,"717 Lake St, Los Angeles, CA 90001" -193023,27in 4K Gaming Monitor,1,389.99,04/08/19 01:28,"799 10th St, Los Angeles, CA 90001" -193024,AAA Batteries (4-pack),1,2.99,04/28/19 13:35,"264 Park St, Atlanta, GA 30301" -193025,Bose SoundSport Headphones,1,99.99,04/16/19 14:24,"769 West St, Atlanta, GA 30301" -193026,20in Monitor,1,109.99,04/20/19 18:18,"93 Church St, Austin, TX 73301" -193027,Wired Headphones,3,11.99,04/10/19 13:48,"192 Hill St, San Francisco, CA 94016" -193028,AA Batteries (4-pack),3,3.84,04/28/19 23:54,"996 West St, Seattle, WA 98101" -193029,Lightning Charging Cable,1,14.95,04/09/19 00:54,"202 1st St, Atlanta, GA 30301" -193030,20in Monitor,1,109.99,04/06/19 15:26,"474 Adams St, Dallas, TX 75001" -193031,Lightning Charging Cable,1,14.95,04/18/19 13:39,"306 1st St, Boston, MA 02215" -193032,27in FHD Monitor,1,149.99,04/30/19 15:41,"187 South St, Los Angeles, CA 90001" -193033,USB-C Charging Cable,1,11.95,04/13/19 14:39,"587 West St, Los Angeles, CA 90001" -193034,AAA Batteries (4-pack),2,2.99,04/18/19 19:40,"938 Lakeview St, New York City, NY 10001" -193035,Apple Airpods Headphones,1,150,04/23/19 20:07,"181 9th St, Boston, MA 02215" -193036,USB-C Charging Cable,1,11.95,04/16/19 23:37,"301 Jefferson St, Los Angeles, CA 90001" -193037,Lightning Charging Cable,1,14.95,04/21/19 11:06,"345 Jackson St, Seattle, WA 98101" -193038,Apple Airpods Headphones,1,150,04/03/19 23:07,"159 6th St, Boston, MA 02215" -193039,Wired Headphones,1,11.99,04/29/19 15:58,"866 Lake St, Dallas, TX 75001" -193040,iPhone,1,700,04/14/19 09:14,"855 13th St, Austin, TX 73301" -193041,Flatscreen TV,1,300,04/26/19 14:48,"393 14th St, Los Angeles, CA 90001" -193042,iPhone,1,700,04/05/19 20:40,"353 11th St, San Francisco, CA 94016" -193043,Bose SoundSport Headphones,1,99.99,04/18/19 05:08,"599 Highland St, Seattle, WA 98101" -193044,27in FHD Monitor,1,149.99,04/19/19 04:58,"186 Willow St, Los Angeles, CA 90001" -193045,USB-C Charging Cable,1,11.95,04/04/19 06:01,"765 Lakeview St, Los Angeles, CA 90001" -193046,AAA Batteries (4-pack),1,2.99,04/26/19 14:11,"958 Hill St, Austin, TX 73301" -193047,USB-C Charging Cable,1,11.95,04/25/19 13:49,"388 Highland St, Boston, MA 02215" -193048,Lightning Charging Cable,1,14.95,04/16/19 11:31,"111 Jackson St, San Francisco, CA 94016" -193049,Bose SoundSport Headphones,1,99.99,04/22/19 19:31,"877 Cherry St, San Francisco, CA 94016" -193050,Google Phone,1,600,04/19/19 18:45,"329 Sunset St, Dallas, TX 75001" -193051,USB-C Charging Cable,2,11.95,04/21/19 13:50,"410 West St, Los Angeles, CA 90001" -193051,Macbook Pro Laptop,1,1700,04/21/19 13:50,"410 West St, Los Angeles, CA 90001" -193052,34in Ultrawide Monitor,1,379.99,04/24/19 19:49,"241 Park St, Boston, MA 02215" -193053,34in Ultrawide Monitor,1,379.99,04/20/19 19:10,"78 Adams St, Seattle, WA 98101" -193054,Lightning Charging Cable,1,14.95,04/14/19 19:35,"677 Center St, Dallas, TX 75001" -193055,AAA Batteries (4-pack),2,2.99,04/12/19 10:55,"104 12th St, Seattle, WA 98101" -193056,Apple Airpods Headphones,1,150,04/10/19 12:14,"166 Jackson St, San Francisco, CA 94016" -193057,iPhone,1,700,04/29/19 23:09,"571 Center St, Los Angeles, CA 90001" -193058,Wired Headphones,1,11.99,04/18/19 23:05,"573 Chestnut St, San Francisco, CA 94016" -193059,Apple Airpods Headphones,1,150,04/09/19 14:03,"776 Maple St, Boston, MA 02215" -193060,AAA Batteries (4-pack),1,2.99,04/20/19 10:49,"235 12th St, Portland, OR 97035" -193061,27in FHD Monitor,1,149.99,04/18/19 19:21,"206 13th St, San Francisco, CA 94016" -193062,Flatscreen TV,1,300,04/06/19 09:28,"677 7th St, San Francisco, CA 94016" -193063,AA Batteries (4-pack),1,3.84,04/27/19 20:28,"541 Cedar St, Dallas, TX 75001" -193064,20in Monitor,1,109.99,04/01/19 17:46,"735 6th St, Portland, OR 97035" -193065,Apple Airpods Headphones,1,150,04/30/19 11:19,"99 13th St, New York City, NY 10001" -193066,27in 4K Gaming Monitor,1,389.99,04/04/19 12:00,"483 Hill St, San Francisco, CA 94016" -193067,Wired Headphones,1,11.99,04/24/19 19:32,"643 Madison St, Seattle, WA 98101" -193068,AA Batteries (4-pack),2,3.84,04/12/19 08:45,"58 Cedar St, New York City, NY 10001" -193069,Lightning Charging Cable,1,14.95,04/30/19 11:53,"300 Cherry St, Boston, MA 02215" -193070,AAA Batteries (4-pack),1,2.99,04/04/19 14:31,"916 Hickory St, San Francisco, CA 94016" -193071,Wired Headphones,1,11.99,04/04/19 13:16,"159 South St, San Francisco, CA 94016" -193072,AA Batteries (4-pack),1,3.84,04/20/19 14:35,"265 Highland St, Portland, OR 97035" -193073,iPhone,1,700,04/10/19 05:02,"576 1st St, Boston, MA 02215" -193073,Lightning Charging Cable,1,14.95,04/10/19 05:02,"576 1st St, Boston, MA 02215" -193074,USB-C Charging Cable,1,11.95,04/17/19 06:01,"655 Meadow St, Austin, TX 73301" -193075,Macbook Pro Laptop,1,1700,04/06/19 09:33,"183 Jefferson St, San Francisco, CA 94016" -193076,Bose SoundSport Headphones,1,99.99,04/22/19 12:38,"767 Madison St, New York City, NY 10001" -193077,Apple Airpods Headphones,1,150,04/26/19 19:52,"188 Maple St, Boston, MA 02215" -193078,Wired Headphones,1,11.99,04/26/19 08:25,"873 Lincoln St, Dallas, TX 75001" -193079,AAA Batteries (4-pack),4,2.99,04/11/19 06:51,"653 Cedar St, San Francisco, CA 94016" -193080,USB-C Charging Cable,1,11.95,04/24/19 12:27,"860 West St, Portland, OR 97035" -193081,AA Batteries (4-pack),1,3.84,04/14/19 07:17,"264 Highland St, Los Angeles, CA 90001" -193082,Lightning Charging Cable,1,14.95,04/21/19 20:56,"837 Elm St, Atlanta, GA 30301" -193083,Bose SoundSport Headphones,1,99.99,04/11/19 20:09,"406 Lincoln St, New York City, NY 10001" -193084,USB-C Charging Cable,1,11.95,04/18/19 06:12,"430 Highland St, San Francisco, CA 94016" -193085,AA Batteries (4-pack),1,3.84,04/06/19 19:37,"777 Johnson St, Seattle, WA 98101" -193086,Lightning Charging Cable,1,14.95,04/12/19 14:21,"425 Church St, San Francisco, CA 94016" -193087,Lightning Charging Cable,1,14.95,04/10/19 13:31,"966 Meadow St, Los Angeles, CA 90001" -193088,Flatscreen TV,1,300,04/25/19 19:43,"964 Washington St, Dallas, TX 75001" -193089,USB-C Charging Cable,1,11.95,04/06/19 13:52,"364 10th St, Los Angeles, CA 90001" -193090,Wired Headphones,1,11.99,04/17/19 11:32,"352 Hill St, New York City, NY 10001" -193091,USB-C Charging Cable,1,11.95,04/07/19 14:10,"299 Center St, Portland, OR 97035" -193092,iPhone,1,700,04/15/19 20:33,"450 Lakeview St, San Francisco, CA 94016" -193093,20in Monitor,1,109.99,04/11/19 12:39,"698 Lakeview St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -193094,Flatscreen TV,1,300,04/04/19 18:06,"187 North St, New York City, NY 10001" -193095,USB-C Charging Cable,1,11.95,04/26/19 14:55,"275 Washington St, Atlanta, GA 30301" -193096,Apple Airpods Headphones,1,150,04/11/19 19:11,"629 Jefferson St, Boston, MA 02215" -193097,Google Phone,1,600,04/20/19 18:48,"637 Hill St, San Francisco, CA 94016" -193098,AAA Batteries (4-pack),1,2.99,04/11/19 09:13,"500 Dogwood St, San Francisco, CA 94016" -193099,Wired Headphones,1,11.99,04/27/19 23:57,"647 Sunset St, San Francisco, CA 94016" -193100,Macbook Pro Laptop,1,1700,04/02/19 21:35,"341 Park St, Los Angeles, CA 90001" -193101,Bose SoundSport Headphones,1,99.99,04/11/19 23:22,"305 14th St, New York City, NY 10001" -193102,Lightning Charging Cable,1,14.95,04/03/19 08:50,"44 Madison St, Boston, MA 02215" -193103,27in FHD Monitor,1,149.99,04/10/19 20:30,"212 Highland St, Boston, MA 02215" -193104,Lightning Charging Cable,1,14.95,04/12/19 21:36,"665 12th St, San Francisco, CA 94016" -193105,27in FHD Monitor,1,149.99,04/15/19 22:18,"197 Madison St, San Francisco, CA 94016" -193106,Bose SoundSport Headphones,1,99.99,04/23/19 23:29,"220 2nd St, Atlanta, GA 30301" -193107,Wired Headphones,1,11.99,04/28/19 19:13,"943 Walnut St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -193108,AAA Batteries (4-pack),3,2.99,04/13/19 09:21,"611 2nd St, Los Angeles, CA 90001" -193109,Google Phone,1,600,04/15/19 09:49,"252 Dogwood St, Atlanta, GA 30301" -193110,Flatscreen TV,1,300,04/18/19 09:35,"66 South St, San Francisco, CA 94016" -193111,USB-C Charging Cable,1,11.95,04/09/19 14:46,"486 12th St, Portland, OR 97035" -193112,Flatscreen TV,1,300,04/07/19 06:59,"255 Johnson St, New York City, NY 10001" -193113,Lightning Charging Cable,1,14.95,04/04/19 20:27,"605 Church St, Seattle, WA 98101" -193114,Google Phone,1,600,04/10/19 14:25,"282 Jackson St, San Francisco, CA 94016" -193115,AA Batteries (4-pack),1,3.84,04/10/19 10:21,"507 Cherry St, San Francisco, CA 94016" -193116,27in FHD Monitor,1,149.99,04/19/19 17:53,"817 Main St, Los Angeles, CA 90001" -193117,USB-C Charging Cable,1,11.95,04/21/19 16:39,"43 Sunset St, Dallas, TX 75001" -193118,Bose SoundSport Headphones,1,99.99,04/06/19 11:24,"951 Hickory St, New York City, NY 10001" -193119,Lightning Charging Cable,1,14.95,04/23/19 21:43,"321 4th St, San Francisco, CA 94016" -193120,Bose SoundSport Headphones,1,99.99,04/22/19 06:58,"254 Forest St, Seattle, WA 98101" -193121,Google Phone,1,600,04/04/19 09:48,"718 Lincoln St, San Francisco, CA 94016" -193122,USB-C Charging Cable,1,11.95,04/18/19 17:20,"760 South St, San Francisco, CA 94016" -193123,Flatscreen TV,1,300,04/10/19 20:12,"803 Lincoln St, San Francisco, CA 94016" -193124,27in 4K Gaming Monitor,1,389.99,04/02/19 18:50,"1 9th St, San Francisco, CA 94016" -193125,Wired Headphones,1,11.99,04/18/19 14:07,"139 Cedar St, Boston, MA 02215" -193126,27in FHD Monitor,1,149.99,04/24/19 15:38,"642 11th St, Dallas, TX 75001" -193127,AA Batteries (4-pack),1,3.84,04/28/19 04:27,"806 Adams St, New York City, NY 10001" -193128,USB-C Charging Cable,1,11.95,04/30/19 12:02,"294 12th St, San Francisco, CA 94016" -193128,27in FHD Monitor,1,149.99,04/30/19 12:02,"294 12th St, San Francisco, CA 94016" -193129,Lightning Charging Cable,1,14.95,04/07/19 11:28,"490 Wilson St, San Francisco, CA 94016" -193130,20in Monitor,1,109.99,04/25/19 10:38,"886 Sunset St, Dallas, TX 75001" -193131,iPhone,1,700,04/16/19 15:50,"203 Highland St, Portland, OR 97035" -193132,Vareebadd Phone,1,400,04/12/19 14:12,"743 Wilson St, Dallas, TX 75001" -193132,USB-C Charging Cable,1,11.95,04/12/19 14:12,"743 Wilson St, Dallas, TX 75001" -193133,Macbook Pro Laptop,1,1700,04/28/19 18:16,"2 Church St, Portland, OR 97035" -193134,Bose SoundSport Headphones,1,99.99,04/13/19 19:22,"592 Adams St, New York City, NY 10001" -193135,Bose SoundSport Headphones,1,99.99,04/27/19 19:01,"348 12th St, Boston, MA 02215" -193136,27in 4K Gaming Monitor,1,389.99,04/17/19 12:59,"523 Forest St, San Francisco, CA 94016" -193137,27in 4K Gaming Monitor,1,389.99,04/09/19 00:30,"51 Hickory St, San Francisco, CA 94016" -193138,USB-C Charging Cable,1,11.95,04/09/19 19:23,"448 Spruce St, Boston, MA 02215" -193139,AAA Batteries (4-pack),1,2.99,04/20/19 19:28,"761 Cedar St, Atlanta, GA 30301" -193140,Wired Headphones,1,11.99,04/22/19 13:44,"587 2nd St, San Francisco, CA 94016" -193141,AAA Batteries (4-pack),2,2.99,04/07/19 06:50,"277 7th St, Seattle, WA 98101" -193142,Wired Headphones,1,11.99,04/12/19 14:47,"60 Church St, Boston, MA 02215" -193143,Wired Headphones,1,11.99,04/19/19 12:13,"571 Willow St, New York City, NY 10001" -193144,USB-C Charging Cable,1,11.95,04/09/19 14:45,"931 Meadow St, Los Angeles, CA 90001" -193145,34in Ultrawide Monitor,1,379.99,04/19/19 17:45,"395 Jackson St, San Francisco, CA 94016" -193146,AA Batteries (4-pack),2,3.84,04/16/19 16:51,"79 Highland St, Portland, OR 97035" -193147,34in Ultrawide Monitor,1,379.99,04/05/19 23:14,"103 13th St, San Francisco, CA 94016" -193148,Bose SoundSport Headphones,1,99.99,04/04/19 22:45,"658 10th St, Portland, OR 97035" -193149,iPhone,1,700,04/30/19 08:41,"958 Adams St, Dallas, TX 75001" -193149,Wired Headphones,1,11.99,04/30/19 08:41,"958 Adams St, Dallas, TX 75001" -193150,20in Monitor,1,109.99,04/21/19 12:37,"89 Main St, San Francisco, CA 94016" -193151,AA Batteries (4-pack),1,3.84,04/02/19 06:14,"690 Lake St, Boston, MA 02215" -193152,Apple Airpods Headphones,1,150,04/12/19 00:54,"829 Lakeview St, Los Angeles, CA 90001" -193153,27in FHD Monitor,1,149.99,04/06/19 14:03,"389 Lakeview St, Boston, MA 02215" -193154,20in Monitor,1,109.99,04/04/19 22:45,"647 1st St, Los Angeles, CA 90001" -193155,Apple Airpods Headphones,1,150,04/19/19 20:06,"286 West St, San Francisco, CA 94016" -193156,USB-C Charging Cable,1,11.95,04/29/19 12:09,"197 13th St, New York City, NY 10001" -193157,ThinkPad Laptop,1,999.99,04/24/19 11:24,"87 Adams St, Seattle, WA 98101" -193158,Wired Headphones,1,11.99,04/22/19 23:24,"722 Johnson St, Seattle, WA 98101" -193159,Wired Headphones,1,11.99,04/21/19 07:47,"393 8th St, Atlanta, GA 30301" -193160,27in FHD Monitor,1,149.99,04/03/19 16:17,"92 14th St, Los Angeles, CA 90001" -193161,AAA Batteries (4-pack),3,2.99,04/09/19 11:37,"663 Washington St, San Francisco, CA 94016" -193162,Bose SoundSport Headphones,1,99.99,04/23/19 18:28,"978 Maple St, Los Angeles, CA 90001" -193163,iPhone,1,700,04/26/19 11:53,"515 Willow St, Seattle, WA 98101" -193163,Wired Headphones,1,11.99,04/26/19 11:53,"515 Willow St, Seattle, WA 98101" -193164,Lightning Charging Cable,1,14.95,04/19/19 16:47,"398 Highland St, Boston, MA 02215" -193165,Apple Airpods Headphones,1,150,04/09/19 11:42,"543 6th St, Boston, MA 02215" -193166,USB-C Charging Cable,1,11.95,04/05/19 11:22,"945 Pine St, New York City, NY 10001" -193167,34in Ultrawide Monitor,1,379.99,04/27/19 18:27,"225 North St, Los Angeles, CA 90001" -193168,AA Batteries (4-pack),1,3.84,04/21/19 22:35,"151 10th St, San Francisco, CA 94016" -193169,Apple Airpods Headphones,1,150,04/11/19 15:21,"681 Elm St, San Francisco, CA 94016" -193170,Bose SoundSport Headphones,1,99.99,04/16/19 22:40,"577 5th St, Atlanta, GA 30301" -193171,Flatscreen TV,1,300,04/06/19 18:50,"354 5th St, Los Angeles, CA 90001" -193172,AAA Batteries (4-pack),2,2.99,04/17/19 11:15,"319 9th St, New York City, NY 10001" -193173,AAA Batteries (4-pack),1,2.99,04/05/19 21:04,"107 Meadow St, Austin, TX 73301" -193174,USB-C Charging Cable,1,11.95,04/02/19 17:40,"273 North St, Austin, TX 73301" -193175,AA Batteries (4-pack),1,3.84,04/15/19 06:56,"54 Church St, Los Angeles, CA 90001" -193176,AAA Batteries (4-pack),1,2.99,04/26/19 19:07,"28 Main St, Atlanta, GA 30301" -193177,AAA Batteries (4-pack),1,2.99,04/02/19 21:22,"606 Church St, San Francisco, CA 94016" -193178,ThinkPad Laptop,1,999.99,04/08/19 09:53,"631 4th St, Boston, MA 02215" -193179,AA Batteries (4-pack),1,3.84,04/14/19 11:29,"947 Wilson St, San Francisco, CA 94016" -193180,34in Ultrawide Monitor,1,379.99,04/24/19 17:50,"179 Hickory St, Seattle, WA 98101" -193181,USB-C Charging Cable,2,11.95,04/03/19 07:27,"632 Lincoln St, Dallas, TX 75001" -193182,Apple Airpods Headphones,1,150,04/16/19 11:24,"748 Main St, San Francisco, CA 94016" -193183,Bose SoundSport Headphones,1,99.99,04/10/19 00:58,"655 West St, San Francisco, CA 94016" -193184,Lightning Charging Cable,1,14.95,04/08/19 13:26,"19 Dogwood St, New York City, NY 10001" -193184,AAA Batteries (4-pack),2,2.99,04/08/19 13:26,"19 Dogwood St, New York City, NY 10001" -193185,AAA Batteries (4-pack),1,2.99,04/17/19 20:53,"611 Cedar St, New York City, NY 10001" -193186,Lightning Charging Cable,1,14.95,04/29/19 15:18,"68 9th St, San Francisco, CA 94016" -193187,Macbook Pro Laptop,1,1700,04/03/19 18:36,"816 11th St, Atlanta, GA 30301" -193188,Bose SoundSport Headphones,1,99.99,04/28/19 20:47,"214 Cherry St, Dallas, TX 75001" -193189,USB-C Charging Cable,1,11.95,04/26/19 09:10,"606 South St, Atlanta, GA 30301" -193190,USB-C Charging Cable,1,11.95,04/18/19 08:55,"549 Cedar St, San Francisco, CA 94016" -193191,Apple Airpods Headphones,1,150,04/24/19 08:48,"165 1st St, Los Angeles, CA 90001" -193192,Wired Headphones,1,11.99,04/27/19 12:34,"858 Hickory St, Portland, OR 97035" -193193,Bose SoundSport Headphones,1,99.99,04/17/19 22:42,"900 Dogwood St, Seattle, WA 98101" -193194,Lightning Charging Cable,1,14.95,04/09/19 09:25,"974 Highland St, Los Angeles, CA 90001" -193195,Google Phone,1,600,04/04/19 01:48,"915 Hill St, Los Angeles, CA 90001" -193195,USB-C Charging Cable,1,11.95,04/04/19 01:48,"915 Hill St, Los Angeles, CA 90001" -193196,27in FHD Monitor,1,149.99,04/10/19 21:20,"400 Lincoln St, Los Angeles, CA 90001" -193197,Wired Headphones,1,11.99,04/21/19 13:44,"776 8th St, San Francisco, CA 94016" -193198,AAA Batteries (4-pack),1,2.99,04/10/19 21:27,"340 12th St, Boston, MA 02215" -193199,Lightning Charging Cable,1,14.95,04/04/19 14:48,"724 Dogwood St, Portland, OR 97035" -193200,Lightning Charging Cable,1,14.95,04/27/19 22:32,"699 Meadow St, New York City, NY 10001" -193201,Wired Headphones,1,11.99,04/01/19 11:50,"169 Meadow St, New York City, NY 10001" -193202,AA Batteries (4-pack),2,3.84,04/21/19 22:27,"770 River St, Seattle, WA 98101" -193203,USB-C Charging Cable,1,11.95,04/16/19 10:46,"698 11th St, San Francisco, CA 94016" -193204,Wired Headphones,1,11.99,04/07/19 20:59,"645 Adams St, San Francisco, CA 94016" -193205,USB-C Charging Cable,1,11.95,04/18/19 20:08,"489 12th St, Boston, MA 02215" -193206,USB-C Charging Cable,1,11.95,04/01/19 16:14,"924 7th St, Atlanta, GA 30301" -193207,Apple Airpods Headphones,1,150,04/11/19 14:09,"198 Chestnut St, Boston, MA 02215" -,,,,, -193208,Google Phone,1,600,04/05/19 23:28,"477 Sunset St, Los Angeles, CA 90001" -193209,34in Ultrawide Monitor,1,379.99,04/30/19 08:00,"182 1st St, Los Angeles, CA 90001" -193210,20in Monitor,1,109.99,04/14/19 22:20,"394 Sunset St, New York City, NY 10001" -193211,Macbook Pro Laptop,1,1700,04/15/19 20:51,"44 6th St, Seattle, WA 98101" -193212,Apple Airpods Headphones,1,150,04/09/19 18:29,"673 River St, San Francisco, CA 94016" -193213,AA Batteries (4-pack),1,3.84,04/02/19 23:12,"790 Lincoln St, San Francisco, CA 94016" -193214,Macbook Pro Laptop,1,1700,04/20/19 06:54,"200 14th St, Boston, MA 02215" -193215,27in FHD Monitor,1,149.99,04/06/19 11:35,"820 Walnut St, San Francisco, CA 94016" -193216,Lightning Charging Cable,1,14.95,04/26/19 13:35,"54 Pine St, Seattle, WA 98101" -193217,Macbook Pro Laptop,1,1700,04/12/19 21:35,"640 8th St, Atlanta, GA 30301" -193218,Google Phone,1,600,04/14/19 18:20,"459 13th St, Boston, MA 02215" -193218,Bose SoundSport Headphones,1,99.99,04/14/19 18:20,"459 13th St, Boston, MA 02215" -193219,AAA Batteries (4-pack),1,2.99,04/15/19 10:04,"945 Sunset St, New York City, NY 10001" -193220,Apple Airpods Headphones,1,150,04/06/19 10:05,"463 2nd St, Dallas, TX 75001" -193221,AA Batteries (4-pack),2,3.84,04/03/19 11:53,"296 14th St, Atlanta, GA 30301" -193222,Wired Headphones,2,11.99,04/07/19 14:05,"980 Main St, San Francisco, CA 94016" -193223,Wired Headphones,1,11.99,04/20/19 13:31,"14 Spruce St, Austin, TX 73301" -193224,27in FHD Monitor,1,149.99,04/21/19 15:20,"894 9th St, San Francisco, CA 94016" -193225,Bose SoundSport Headphones,1,99.99,04/21/19 20:08,"448 Cherry St, Austin, TX 73301" -193226,20in Monitor,1,109.99,04/13/19 20:57,"732 Main St, San Francisco, CA 94016" -193227,Flatscreen TV,1,300,04/01/19 14:05,"114 River St, Austin, TX 73301" -193228,AA Batteries (4-pack),1,3.84,04/29/19 19:02,"808 13th St, Seattle, WA 98101" -193229,34in Ultrawide Monitor,1,379.99,04/09/19 17:06,"814 14th St, New York City, NY 10001" -193230,Lightning Charging Cable,1,14.95,04/14/19 20:26,"472 Center St, Boston, MA 02215" -193231,Lightning Charging Cable,1,14.95,04/20/19 17:54,"101 Washington St, San Francisco, CA 94016" -193232,iPhone,1,700,04/26/19 19:20,"335 Hill St, Atlanta, GA 30301" -193233,Bose SoundSport Headphones,1,99.99,04/07/19 19:34,"606 4th St, San Francisco, CA 94016" -193234,ThinkPad Laptop,1,999.99,04/29/19 18:57,"591 Johnson St, Austin, TX 73301" -193235,Wired Headphones,1,11.99,04/08/19 12:43,"23 Church St, Boston, MA 02215" -193236,iPhone,1,700,04/20/19 11:03,"782 13th St, Dallas, TX 75001" -193237,27in FHD Monitor,1,149.99,04/17/19 18:36,"364 Main St, Seattle, WA 98101" -193238,Vareebadd Phone,1,400,04/29/19 18:40,"163 Center St, New York City, NY 10001" -193239,Bose SoundSport Headphones,1,99.99,04/18/19 18:20,"157 Jefferson St, Dallas, TX 75001" -193240,USB-C Charging Cable,1,11.95,04/11/19 10:54,"962 5th St, Dallas, TX 75001" -193241,34in Ultrawide Monitor,1,379.99,04/14/19 11:46,"128 2nd St, San Francisco, CA 94016" -193242,Apple Airpods Headphones,1,150,04/27/19 18:05,"767 Adams St, Seattle, WA 98101" -193243,Vareebadd Phone,1,400,04/17/19 18:49,"976 Jackson St, Atlanta, GA 30301" -193244,Wired Headphones,1,11.99,04/29/19 12:38,"940 Hickory St, Los Angeles, CA 90001" -193245,iPhone,1,700,04/26/19 18:21,"586 9th St, San Francisco, CA 94016" -193246,AAA Batteries (4-pack),1,2.99,04/08/19 23:57,"625 4th St, San Francisco, CA 94016" -193247,Lightning Charging Cable,1,14.95,04/21/19 13:55,"446 11th St, New York City, NY 10001" -193248,Google Phone,1,600,04/21/19 10:03,"103 Highland St, San Francisco, CA 94016" -193249,Bose SoundSport Headphones,1,99.99,04/10/19 01:15,"6 West St, Austin, TX 73301" -193250,Wired Headphones,1,11.99,04/16/19 18:07,"832 Dogwood St, San Francisco, CA 94016" -193251,27in FHD Monitor,1,149.99,04/05/19 07:47,"539 1st St, Portland, OR 97035" -193252,AA Batteries (4-pack),1,3.84,04/01/19 10:26,"35 Hill St, San Francisco, CA 94016" -193253,Lightning Charging Cable,1,14.95,04/07/19 14:34,"146 11th St, San Francisco, CA 94016" -193254,Lightning Charging Cable,1,14.95,04/27/19 19:15,"865 7th St, Los Angeles, CA 90001" -193255,USB-C Charging Cable,1,11.95,04/20/19 17:08,"762 Maple St, Seattle, WA 98101" -193256,Flatscreen TV,1,300,04/13/19 18:12,"381 4th St, San Francisco, CA 94016" -193257,Bose SoundSport Headphones,1,99.99,04/05/19 19:49,"941 West St, San Francisco, CA 94016" -193258,Bose SoundSport Headphones,1,99.99,04/29/19 20:05,"103 Main St, San Francisco, CA 94016" -193259,Apple Airpods Headphones,1,150,04/17/19 11:27,"74 13th St, Dallas, TX 75001" -193260,Google Phone,1,600,04/01/19 16:37,"585 Hill St, Los Angeles, CA 90001" -193261,iPhone,1,700,04/20/19 19:41,"350 Spruce St, Atlanta, GA 30301" -193261,Wired Headphones,1,11.99,04/20/19 19:41,"350 Spruce St, Atlanta, GA 30301" -193262,USB-C Charging Cable,1,11.95,04/16/19 14:39,"856 Forest St, San Francisco, CA 94016" -193263,ThinkPad Laptop,1,999.99,04/27/19 12:01,"496 Sunset St, San Francisco, CA 94016" -193264,Wired Headphones,1,11.99,04/17/19 17:15,"269 Cedar St, Boston, MA 02215" -193265,27in 4K Gaming Monitor,1,389.99,04/26/19 20:32,"268 North St, San Francisco, CA 94016" -193266,Bose SoundSport Headphones,1,99.99,04/30/19 08:14,"776 14th St, New York City, NY 10001" -193267,AA Batteries (4-pack),2,3.84,04/17/19 08:37,"663 Washington St, New York City, NY 10001" -193268,27in FHD Monitor,1,149.99,04/06/19 08:51,"988 North St, San Francisco, CA 94016" -193269,Vareebadd Phone,1,400,04/01/19 18:48,"11 9th St, Portland, OR 97035" -193270,AA Batteries (4-pack),3,3.84,04/22/19 19:45,"621 Hill St, San Francisco, CA 94016" -193271,AAA Batteries (4-pack),2,2.99,04/08/19 23:00,"19 Cedar St, San Francisco, CA 94016" -193272,AAA Batteries (4-pack),2,2.99,04/05/19 18:56,"836 9th St, Atlanta, GA 30301" -193273,AAA Batteries (4-pack),2,2.99,04/19/19 17:43,"426 Maple St, New York City, NY 10001" -193274,AA Batteries (4-pack),2,3.84,04/29/19 14:08,"9 12th St, San Francisco, CA 94016" -193275,Lightning Charging Cable,1,14.95,04/08/19 10:59,"641 5th St, Boston, MA 02215" -193276,USB-C Charging Cable,1,11.95,04/04/19 20:24,"238 Meadow St, Austin, TX 73301" -193276,Bose SoundSport Headphones,1,99.99,04/04/19 20:24,"238 Meadow St, Austin, TX 73301" -193277,Macbook Pro Laptop,1,1700,04/30/19 14:13,"139 2nd St, New York City, NY 10001" -193278,Wired Headphones,1,11.99,04/05/19 16:08,"142 Main St, Boston, MA 02215" -193279,Lightning Charging Cable,1,14.95,04/22/19 10:52,"87 Center St, Los Angeles, CA 90001" -193280,Apple Airpods Headphones,1,150,04/16/19 18:47,"759 Hill St, San Francisco, CA 94016" -193281,34in Ultrawide Monitor,1,379.99,04/01/19 14:49,"178 4th St, New York City, NY 10001" -193282,iPhone,1,700,04/21/19 08:15,"761 Church St, Los Angeles, CA 90001" -193283,AAA Batteries (4-pack),1,2.99,04/27/19 09:40,"279 Chestnut St, San Francisco, CA 94016" -193284,27in FHD Monitor,1,149.99,04/02/19 13:35,"468 South St, Los Angeles, CA 90001" -193285,Wired Headphones,1,11.99,04/09/19 09:15,"934 13th St, Los Angeles, CA 90001" -193286,Lightning Charging Cable,1,14.95,04/09/19 10:48,"195 11th St, Dallas, TX 75001" -193287,AAA Batteries (4-pack),2,2.99,04/18/19 09:29,"671 Sunset St, Boston, MA 02215" -193288,USB-C Charging Cable,1,11.95,04/27/19 07:29,"884 9th St, San Francisco, CA 94016" -193289,Apple Airpods Headphones,1,150,04/01/19 15:50,"619 9th St, Boston, MA 02215" -193290,Lightning Charging Cable,1,14.95,04/14/19 21:36,"787 12th St, Dallas, TX 75001" -193291,AA Batteries (4-pack),1,3.84,04/21/19 14:46,"622 Cherry St, Seattle, WA 98101" -193292,AAA Batteries (4-pack),1,2.99,04/30/19 13:44,"764 9th St, Portland, OR 97035" -193293,Apple Airpods Headphones,1,150,04/03/19 19:18,"539 2nd St, Atlanta, GA 30301" -193294,AAA Batteries (4-pack),1,2.99,04/15/19 14:10,"352 Church St, Los Angeles, CA 90001" -193295,Bose SoundSport Headphones,1,99.99,04/12/19 08:06,"424 Madison St, Los Angeles, CA 90001" -193296,USB-C Charging Cable,1,11.95,04/04/19 12:06,"752 Maple St, Los Angeles, CA 90001" -193297,Wired Headphones,1,11.99,04/02/19 21:25,"56 North St, Seattle, WA 98101" -193298,Lightning Charging Cable,2,14.95,04/07/19 22:31,"61 West St, Austin, TX 73301" -193299,ThinkPad Laptop,1,999.99,04/17/19 12:08,"74 10th St, Boston, MA 02215" -193300,Apple Airpods Headphones,1,150,04/20/19 10:37,"426 Dogwood St, San Francisco, CA 94016" -193301,AA Batteries (4-pack),1,3.84,04/17/19 16:27,"271 South St, San Francisco, CA 94016" -193302,USB-C Charging Cable,1,11.95,04/02/19 09:46,"360 Sunset St, Portland, OR 97035" -193303,AAA Batteries (4-pack),2,2.99,04/07/19 20:47,"258 Meadow St, Los Angeles, CA 90001" -193304,AAA Batteries (4-pack),1,2.99,04/21/19 07:10,"555 7th St, New York City, NY 10001" -193305,Lightning Charging Cable,1,14.95,04/09/19 11:27,"376 Wilson St, Los Angeles, CA 90001" -193306,27in 4K Gaming Monitor,1,389.99,04/16/19 11:43,"844 Lakeview St, Portland, ME 04101" -193307,Google Phone,1,600,04/30/19 22:36,"323 North St, Portland, OR 97035" -193308,27in 4K Gaming Monitor,1,389.99,04/17/19 04:35,"248 2nd St, Boston, MA 02215" -193309,iPhone,1,700,04/19/19 23:16,"139 Cherry St, Boston, MA 02215" -193310,USB-C Charging Cable,2,11.95,04/12/19 10:15,"59 Park St, New York City, NY 10001" -193311,USB-C Charging Cable,1,11.95,04/19/19 12:34,"818 1st St, Seattle, WA 98101" -193312,AA Batteries (4-pack),1,3.84,04/13/19 19:46,"639 Lincoln St, San Francisco, CA 94016" -193313,AA Batteries (4-pack),1,3.84,04/16/19 15:46,"818 9th St, Los Angeles, CA 90001" -193314,Apple Airpods Headphones,1,150,04/16/19 11:29,"26 13th St, Boston, MA 02215" -193315,34in Ultrawide Monitor,1,379.99,04/22/19 18:22,"320 Center St, New York City, NY 10001" -193316,Bose SoundSport Headphones,1,99.99,04/16/19 08:51,"576 Lincoln St, Austin, TX 73301" -193317,27in FHD Monitor,1,149.99,04/14/19 10:16,"558 13th St, Atlanta, GA 30301" -193318,Lightning Charging Cable,1,14.95,04/09/19 07:41,"676 Lake St, San Francisco, CA 94016" -193319,AA Batteries (4-pack),1,3.84,04/07/19 22:30,"846 South St, Austin, TX 73301" -193320,AAA Batteries (4-pack),1,2.99,04/06/19 10:43,"53 Park St, Portland, OR 97035" -193321,AAA Batteries (4-pack),1,2.99,04/30/19 16:32,"25 Wilson St, Portland, OR 97035" -193322,34in Ultrawide Monitor,1,379.99,04/21/19 13:45,"266 Jefferson St, San Francisco, CA 94016" -193323,Apple Airpods Headphones,1,150,04/08/19 17:20,"378 Elm St, Atlanta, GA 30301" -193324,Apple Airpods Headphones,1,150,04/11/19 08:43,"843 River St, Atlanta, GA 30301" -193324,AAA Batteries (4-pack),1,2.99,04/11/19 08:43,"843 River St, Atlanta, GA 30301" -193325,Bose SoundSport Headphones,1,99.99,04/02/19 11:21,"726 Highland St, Portland, ME 04101" -193326,Lightning Charging Cable,1,14.95,04/03/19 18:51,"85 Spruce St, New York City, NY 10001" -193327,Apple Airpods Headphones,1,150,04/07/19 12:43,"440 7th St, San Francisco, CA 94016" -193328,ThinkPad Laptop,1,999.99,04/30/19 19:59,"222 2nd St, San Francisco, CA 94016" -193329,Bose SoundSport Headphones,1,99.99,04/09/19 12:23,"696 Wilson St, Los Angeles, CA 90001" -193330,Flatscreen TV,1,300,04/22/19 13:19,"98 Cedar St, Atlanta, GA 30301" -193331,AAA Batteries (4-pack),4,2.99,04/18/19 11:53,"224 Lakeview St, Los Angeles, CA 90001" -193332,Apple Airpods Headphones,1,150,04/08/19 10:50,"405 12th St, Portland, OR 97035" -193333,AAA Batteries (4-pack),2,2.99,04/03/19 17:14,"161 Main St, New York City, NY 10001" -193334,Google Phone,1,600,04/19/19 16:34,"412 Forest St, Portland, ME 04101" -193335,AA Batteries (4-pack),1,3.84,04/20/19 08:32,"83 Johnson St, San Francisco, CA 94016" -193336,USB-C Charging Cable,1,11.95,04/30/19 21:58,"637 Chestnut St, San Francisco, CA 94016" -193337,USB-C Charging Cable,2,11.95,04/13/19 15:15,"113 West St, San Francisco, CA 94016" -193338,Apple Airpods Headphones,1,150,04/09/19 14:26,"924 5th St, Dallas, TX 75001" -193339,Vareebadd Phone,1,400,04/29/19 17:37,"976 Cherry St, Atlanta, GA 30301" -193340,USB-C Charging Cable,1,11.95,04/18/19 12:57,"898 Dogwood St, Portland, OR 97035" -193341,Apple Airpods Headphones,1,150,04/21/19 14:21,"285 Lincoln St, New York City, NY 10001" -193342,AA Batteries (4-pack),2,3.84,04/16/19 22:57,"153 Lincoln St, Seattle, WA 98101" -193343,Bose SoundSport Headphones,1,99.99,04/27/19 12:46,"40 Hill St, San Francisco, CA 94016" -193344,AA Batteries (4-pack),2,3.84,04/04/19 21:28,"513 Hill St, New York City, NY 10001" -193345,Bose SoundSport Headphones,1,99.99,04/20/19 21:11,"167 Johnson St, San Francisco, CA 94016" -193346,AA Batteries (4-pack),3,3.84,04/05/19 09:44,"444 Hill St, San Francisco, CA 94016" -193347,27in FHD Monitor,1,149.99,04/02/19 19:57,"983 North St, San Francisco, CA 94016" -193348,Wired Headphones,1,11.99,04/24/19 19:29,"144 5th St, San Francisco, CA 94016" -193349,USB-C Charging Cable,1,11.95,04/07/19 09:12,"817 Jackson St, Boston, MA 02215" -193349,Vareebadd Phone,1,400,04/07/19 09:12,"817 Jackson St, Boston, MA 02215" -193350,AA Batteries (4-pack),2,3.84,04/25/19 21:39,"926 Ridge St, San Francisco, CA 94016" -193351,Lightning Charging Cable,1,14.95,04/16/19 01:33,"782 6th St, Atlanta, GA 30301" -193352,27in 4K Gaming Monitor,1,389.99,04/18/19 19:34,"300 West St, Atlanta, GA 30301" -193353,27in 4K Gaming Monitor,1,389.99,04/04/19 18:16,"814 Johnson St, San Francisco, CA 94016" -193354,AAA Batteries (4-pack),1,2.99,04/08/19 17:09,"334 Cedar St, Atlanta, GA 30301" -193355,Lightning Charging Cable,1,14.95,04/15/19 22:55,"655 Lake St, New York City, NY 10001" -193356,iPhone,1,700,04/17/19 09:23,"62 Lakeview St, San Francisco, CA 94016" -193357,USB-C Charging Cable,1,11.95,04/22/19 12:53,"700 11th St, Portland, OR 97035" -193358,AA Batteries (4-pack),1,3.84,04/12/19 01:19,"804 12th St, Atlanta, GA 30301" -193359,USB-C Charging Cable,1,11.95,04/29/19 14:35,"502 Adams St, Atlanta, GA 30301" -193360,Vareebadd Phone,1,400,04/26/19 13:09,"403 Madison St, Los Angeles, CA 90001" -193360,AA Batteries (4-pack),2,3.84,04/26/19 13:09,"403 Madison St, Los Angeles, CA 90001" -193361,Wired Headphones,1,11.99,04/18/19 13:41,"317 8th St, New York City, NY 10001" -193362,USB-C Charging Cable,1,11.95,04/23/19 14:39,"16 Adams St, New York City, NY 10001" -193363,Wired Headphones,1,11.99,04/17/19 13:15,"991 Chestnut St, Los Angeles, CA 90001" -193364,Wired Headphones,1,11.99,04/14/19 10:41,"723 9th St, Austin, TX 73301" -193365,Lightning Charging Cable,1,14.95,04/25/19 22:59,"377 Washington St, Portland, OR 97035" -193366,Macbook Pro Laptop,1,1700,04/01/19 14:51,"966 5th St, New York City, NY 10001" -193367,AA Batteries (4-pack),1,3.84,04/30/19 20:33,"47 Highland St, New York City, NY 10001" -193368,Lightning Charging Cable,1,14.95,04/11/19 22:42,"676 Cedar St, Seattle, WA 98101" -193369,AAA Batteries (4-pack),1,2.99,04/10/19 21:26,"250 1st St, New York City, NY 10001" -193370,Wired Headphones,1,11.99,04/19/19 02:46,"553 Lakeview St, Los Angeles, CA 90001" -193371,AA Batteries (4-pack),1,3.84,04/10/19 10:58,"89 Chestnut St, Los Angeles, CA 90001" -193372,iPhone,1,700,04/02/19 12:13,"98 Chestnut St, Dallas, TX 75001" -193373,Macbook Pro Laptop,1,1700,04/29/19 23:57,"744 Willow St, New York City, NY 10001" -193374,iPhone,1,700,04/14/19 18:26,"962 7th St, San Francisco, CA 94016" -193375,34in Ultrawide Monitor,1,379.99,04/30/19 22:57,"36 Jackson St, Los Angeles, CA 90001" -193376,Bose SoundSport Headphones,1,99.99,04/06/19 22:28,"775 Lakeview St, Portland, OR 97035" -193377,AAA Batteries (4-pack),2,2.99,04/24/19 17:16,"827 Jackson St, Seattle, WA 98101" -193378,Wired Headphones,1,11.99,04/09/19 16:36,"865 Willow St, New York City, NY 10001" -193379,Vareebadd Phone,1,400,04/15/19 11:48,"359 Main St, Los Angeles, CA 90001" -193379,USB-C Charging Cable,1,11.95,04/15/19 11:48,"359 Main St, Los Angeles, CA 90001" -193380,Macbook Pro Laptop,1,1700,04/30/19 15:29,"3 Walnut St, Seattle, WA 98101" -193381,Bose SoundSport Headphones,1,99.99,04/11/19 03:16,"51 West St, New York City, NY 10001" -193382,AA Batteries (4-pack),1,3.84,04/22/19 21:03,"662 Adams St, Austin, TX 73301" -193383,Apple Airpods Headphones,1,150,04/29/19 15:08,"259 North St, Atlanta, GA 30301" -193384,Vareebadd Phone,1,400,04/25/19 10:57,"696 2nd St, Boston, MA 02215" -193384,USB-C Charging Cable,1,11.95,04/25/19 10:57,"696 2nd St, Boston, MA 02215" -193385,20in Monitor,1,109.99,04/18/19 08:55,"861 Dogwood St, Austin, TX 73301" -193386,Lightning Charging Cable,1,14.95,04/14/19 19:02,"97 Cherry St, Los Angeles, CA 90001" -193387,AA Batteries (4-pack),1,3.84,04/20/19 18:30,"680 Dogwood St, Los Angeles, CA 90001" -193388,27in FHD Monitor,1,149.99,04/21/19 19:34,"178 Spruce St, Portland, ME 04101" -193389,Lightning Charging Cable,1,14.95,04/19/19 14:16,"893 Johnson St, Los Angeles, CA 90001" -193390,AAA Batteries (4-pack),2,2.99,04/12/19 13:43,"722 Lake St, New York City, NY 10001" -193391,AAA Batteries (4-pack),1,2.99,04/04/19 18:02,"126 Spruce St, New York City, NY 10001" -193391,Flatscreen TV,1,300,04/04/19 18:02,"126 Spruce St, New York City, NY 10001" -193392,Lightning Charging Cable,1,14.95,04/16/19 15:22,"800 Willow St, Boston, MA 02215" -193393,27in 4K Gaming Monitor,1,389.99,04/13/19 13:09,"12 Cedar St, San Francisco, CA 94016" -193394,AA Batteries (4-pack),3,3.84,04/12/19 12:47,"679 Willow St, Dallas, TX 75001" -193395,USB-C Charging Cable,1,11.95,04/20/19 10:45,"365 Cedar St, Boston, MA 02215" -193396,AA Batteries (4-pack),1,3.84,04/06/19 15:08,"632 Madison St, Dallas, TX 75001" -193397,USB-C Charging Cable,1,11.95,04/29/19 18:42,"66 Hill St, Boston, MA 02215" -193398,Google Phone,1,600,04/25/19 15:27,"983 5th St, San Francisco, CA 94016" -193398,USB-C Charging Cable,1,11.95,04/25/19 15:27,"983 5th St, San Francisco, CA 94016" -193399,Lightning Charging Cable,1,14.95,04/20/19 16:51,"879 Spruce St, Atlanta, GA 30301" -193400,Apple Airpods Headphones,1,150,04/06/19 15:34,"780 9th St, Los Angeles, CA 90001" -193401,AA Batteries (4-pack),2,3.84,04/16/19 14:11,"67 14th St, New York City, NY 10001" -193402,Lightning Charging Cable,1,14.95,04/20/19 13:27,"589 Chestnut St, Los Angeles, CA 90001" -193403,Google Phone,1,600,04/19/19 14:59,"814 Center St, Austin, TX 73301" -193404,AA Batteries (4-pack),1,3.84,04/19/19 09:00,"213 West St, San Francisco, CA 94016" -193404,Macbook Pro Laptop,1,1700,04/19/19 09:00,"213 West St, San Francisco, CA 94016" -193405,iPhone,1,700,04/18/19 17:53,"103 Adams St, Atlanta, GA 30301" -193405,Lightning Charging Cable,1,14.95,04/18/19 17:53,"103 Adams St, Atlanta, GA 30301" -193406,USB-C Charging Cable,1,11.95,04/07/19 21:38,"483 Highland St, Los Angeles, CA 90001" -193407,Apple Airpods Headphones,1,150,04/28/19 19:36,"968 Pine St, Portland, OR 97035" -193408,Flatscreen TV,1,300,04/28/19 07:41,"300 8th St, Dallas, TX 75001" -193409,Apple Airpods Headphones,1,150,04/01/19 12:32,"750 Maple St, San Francisco, CA 94016" -193410,Wired Headphones,1,11.99,04/12/19 10:55,"677 12th St, Austin, TX 73301" -193411,AA Batteries (4-pack),3,3.84,04/13/19 11:27,"982 8th St, Boston, MA 02215" -193412,Apple Airpods Headphones,1,150,04/11/19 12:21,"141 Church St, New York City, NY 10001" -193413,ThinkPad Laptop,1,999.99,04/26/19 19:57,"888 River St, Los Angeles, CA 90001" -193414,Lightning Charging Cable,1,14.95,04/07/19 09:20,"150 Pine St, New York City, NY 10001" -193415,34in Ultrawide Monitor,1,379.99,04/23/19 18:43,"604 Park St, Boston, MA 02215" -193416,Wired Headphones,1,11.99,04/09/19 18:22,"404 4th St, Seattle, WA 98101" -193417,Bose SoundSport Headphones,1,99.99,04/20/19 10:17,"648 Wilson St, New York City, NY 10001" -193418,Apple Airpods Headphones,1,150,04/19/19 21:21,"393 Dogwood St, San Francisco, CA 94016" -193419,Bose SoundSport Headphones,1,99.99,04/23/19 00:18,"322 8th St, San Francisco, CA 94016" -193420,iPhone,1,700,04/30/19 11:37,"210 Walnut St, Atlanta, GA 30301" -193421,Apple Airpods Headphones,1,150,04/24/19 22:57,"169 5th St, New York City, NY 10001" -193422,Lightning Charging Cable,1,14.95,04/05/19 23:24,"953 Lincoln St, Dallas, TX 75001" -193423,Lightning Charging Cable,1,14.95,04/22/19 19:10,"827 2nd St, New York City, NY 10001" -193424,AAA Batteries (4-pack),1,2.99,04/12/19 17:37,"600 North St, Dallas, TX 75001" -193425,Lightning Charging Cable,1,14.95,04/07/19 12:13,"92 Church St, Los Angeles, CA 90001" -193426,Wired Headphones,1,11.99,04/14/19 00:35,"38 Meadow St, New York City, NY 10001" -193427,Lightning Charging Cable,1,14.95,04/07/19 09:24,"123 6th St, New York City, NY 10001" -193428,34in Ultrawide Monitor,1,379.99,04/02/19 09:21,"410 Hill St, Boston, MA 02215" -193429,Google Phone,1,600,04/17/19 22:23,"427 Madison St, Boston, MA 02215" -193430,Wired Headphones,1,11.99,04/29/19 11:01,"638 Adams St, Boston, MA 02215" -193431,20in Monitor,1,109.99,04/23/19 18:47,"528 Forest St, New York City, NY 10001" -193432,AA Batteries (4-pack),1,3.84,04/11/19 12:13,"383 6th St, Atlanta, GA 30301" -193433,AAA Batteries (4-pack),2,2.99,04/29/19 03:49,"545 14th St, Los Angeles, CA 90001" -193434,AAA Batteries (4-pack),1,2.99,04/25/19 23:11,"452 Walnut St, Boston, MA 02215" -193435,Apple Airpods Headphones,1,150,04/04/19 22:45,"495 9th St, Atlanta, GA 30301" -193436,Apple Airpods Headphones,1,150,04/19/19 12:04,"930 Cedar St, Portland, OR 97035" -193437,27in FHD Monitor,1,149.99,04/14/19 23:02,"380 6th St, Portland, ME 04101" -193438,AA Batteries (4-pack),1,3.84,04/30/19 13:28,"970 6th St, Los Angeles, CA 90001" -193439,Flatscreen TV,1,300,04/05/19 10:19,"183 Main St, San Francisco, CA 94016" -193440,USB-C Charging Cable,1,11.95,04/16/19 11:16,"776 West St, Dallas, TX 75001" -193441,Bose SoundSport Headphones,1,99.99,04/23/19 18:44,"401 13th St, New York City, NY 10001" -193442,USB-C Charging Cable,1,11.95,04/28/19 16:35,"223 7th St, Boston, MA 02215" -193443,AAA Batteries (4-pack),2,2.99,04/28/19 12:48,"619 Cedar St, San Francisco, CA 94016" -193444,AAA Batteries (4-pack),1,2.99,04/06/19 18:25,"642 Chestnut St, Dallas, TX 75001" -193445,Apple Airpods Headphones,1,150,04/03/19 16:44,"420 Adams St, San Francisco, CA 94016" -193446,AAA Batteries (4-pack),1,2.99,04/09/19 18:04,"721 9th St, San Francisco, CA 94016" -193447,USB-C Charging Cable,1,11.95,04/10/19 13:47,"735 Park St, San Francisco, CA 94016" -193448,USB-C Charging Cable,1,11.95,04/14/19 16:45,"397 North St, San Francisco, CA 94016" -193449,AAA Batteries (4-pack),1,2.99,04/05/19 17:31,"628 Hickory St, Boston, MA 02215" -193450,iPhone,1,700,04/19/19 02:05,"29 Park St, San Francisco, CA 94016" -193451,iPhone,1,700,04/13/19 18:59,"622 9th St, San Francisco, CA 94016" -193451,Wired Headphones,1,11.99,04/13/19 18:59,"622 9th St, San Francisco, CA 94016" -193452,27in 4K Gaming Monitor,1,389.99,04/27/19 16:48,"102 2nd St, Boston, MA 02215" -193453,USB-C Charging Cable,1,11.95,04/28/19 14:59,"971 Sunset St, San Francisco, CA 94016" -193454,Wired Headphones,1,11.99,04/26/19 11:29,"521 Church St, Dallas, TX 75001" -193455,Apple Airpods Headphones,1,150,04/21/19 09:38,"573 South St, San Francisco, CA 94016" -193456,USB-C Charging Cable,1,11.95,04/29/19 02:59,"162 12th St, San Francisco, CA 94016" -193457,Apple Airpods Headphones,1,150,04/28/19 19:06,"431 North St, San Francisco, CA 94016" -193458,USB-C Charging Cable,1,11.95,04/27/19 17:35,"200 Lincoln St, New York City, NY 10001" -193459,AAA Batteries (4-pack),1,2.99,04/15/19 22:29,"565 Highland St, Los Angeles, CA 90001" -193460,AA Batteries (4-pack),1,3.84,04/18/19 13:39,"885 Ridge St, New York City, NY 10001" -193461,Bose SoundSport Headphones,1,99.99,04/07/19 06:12,"510 Hickory St, Seattle, WA 98101" -193462,AA Batteries (4-pack),1,3.84,04/12/19 23:21,"295 Main St, Boston, MA 02215" -193463,USB-C Charging Cable,1,11.95,04/09/19 22:23,"463 Adams St, Boston, MA 02215" -193464,Wired Headphones,2,11.99,04/04/19 17:27,"179 Spruce St, San Francisco, CA 94016" -193465,LG Washing Machine,1,600.0,04/15/19 16:10,"974 Lake St, Los Angeles, CA 90001" -,,,,, -193466,Apple Airpods Headphones,1,150,04/21/19 10:18,"350 South St, Los Angeles, CA 90001" -193467,Wired Headphones,1,11.99,04/16/19 23:24,"116 4th St, Boston, MA 02215" -193468,Lightning Charging Cable,1,14.95,04/11/19 15:40,"848 9th St, Seattle, WA 98101" -193469,Bose SoundSport Headphones,1,99.99,04/28/19 17:28,"191 13th St, New York City, NY 10001" -193470,Lightning Charging Cable,1,14.95,04/30/19 20:24,"104 Wilson St, San Francisco, CA 94016" -193471,USB-C Charging Cable,1,11.95,04/14/19 21:52,"676 Cedar St, San Francisco, CA 94016" -193472,Bose SoundSport Headphones,1,99.99,04/15/19 00:33,"454 Madison St, Atlanta, GA 30301" -193473,Bose SoundSport Headphones,1,99.99,04/18/19 19:08,"859 Jackson St, Dallas, TX 75001" -193474,AAA Batteries (4-pack),1,2.99,04/13/19 18:00,"988 Main St, Los Angeles, CA 90001" -193475,iPhone,1,700,04/16/19 06:14,"479 Adams St, Dallas, TX 75001" -193476,AA Batteries (4-pack),2,3.84,04/29/19 10:54,"165 Cherry St, Boston, MA 02215" -193477,AA Batteries (4-pack),1,3.84,04/26/19 07:50,"190 Dogwood St, New York City, NY 10001" -193478,Apple Airpods Headphones,1,150,04/22/19 05:10,"960 Dogwood St, Austin, TX 73301" -193479,Wired Headphones,1,11.99,04/30/19 17:43,"105 Elm St, San Francisco, CA 94016" -193480,Lightning Charging Cable,1,14.95,04/22/19 13:26,"930 Hickory St, San Francisco, CA 94016" -193481,27in FHD Monitor,1,149.99,04/07/19 12:44,"517 North St, New York City, NY 10001" -193482,Apple Airpods Headphones,1,150,04/21/19 09:36,"718 Cherry St, San Francisco, CA 94016" -193483,20in Monitor,1,109.99,04/26/19 13:08,"104 Madison St, New York City, NY 10001" -193484,Wired Headphones,1,11.99,04/25/19 15:35,"127 Willow St, Portland, OR 97035" -193485,Apple Airpods Headphones,1,150,04/13/19 22:56,"287 Center St, Atlanta, GA 30301" -193486,ThinkPad Laptop,1,999.99,04/03/19 11:08,"322 Hill St, Los Angeles, CA 90001" -193487,AA Batteries (4-pack),1,3.84,04/20/19 17:27,"720 Center St, New York City, NY 10001" -193488,Wired Headphones,1,11.99,04/22/19 18:34,"535 Hill St, San Francisco, CA 94016" -193489,ThinkPad Laptop,1,999.99,04/28/19 09:40,"328 Forest St, Seattle, WA 98101" -193490,USB-C Charging Cable,1,11.95,04/27/19 22:11,"823 4th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -193491,Apple Airpods Headphones,1,150,04/19/19 19:40,"331 11th St, Atlanta, GA 30301" -193492,AA Batteries (4-pack),1,3.84,04/28/19 22:06,"713 Washington St, San Francisco, CA 94016" -193493,Bose SoundSport Headphones,1,99.99,04/14/19 18:06,"918 North St, Los Angeles, CA 90001" -193494,AAA Batteries (4-pack),2,2.99,04/11/19 18:58,"115 1st St, New York City, NY 10001" -193495,27in FHD Monitor,1,149.99,04/03/19 19:33,"836 11th St, Seattle, WA 98101" -193496,Lightning Charging Cable,1,14.95,04/20/19 22:45,"919 1st St, Los Angeles, CA 90001" -193497,Lightning Charging Cable,1,14.95,04/13/19 00:05,"101 Meadow St, San Francisco, CA 94016" -193498,USB-C Charging Cable,1,11.95,04/10/19 06:36,"610 Madison St, Los Angeles, CA 90001" -193499,34in Ultrawide Monitor,1,379.99,04/08/19 16:13,"558 Spruce St, New York City, NY 10001" -193500,Lightning Charging Cable,1,14.95,04/22/19 09:39,"7 Wilson St, Los Angeles, CA 90001" -193501,Lightning Charging Cable,1,14.95,04/04/19 14:11,"241 Walnut St, Boston, MA 02215" -193502,AAA Batteries (4-pack),1,2.99,04/29/19 21:14,"442 14th St, San Francisco, CA 94016" -193503,Lightning Charging Cable,1,14.95,04/20/19 10:36,"424 Lake St, San Francisco, CA 94016" -193504,Apple Airpods Headphones,1,150,04/30/19 15:24,"229 Hickory St, San Francisco, CA 94016" -193505,ThinkPad Laptop,1,999.99,04/04/19 22:58,"661 Elm St, Dallas, TX 75001" -193506,Bose SoundSport Headphones,1,99.99,04/11/19 19:42,"675 Cherry St, Los Angeles, CA 90001" -193507,iPhone,1,700,04/19/19 16:59,"16 West St, New York City, NY 10001" -193507,34in Ultrawide Monitor,1,379.99,04/19/19 16:59,"16 West St, New York City, NY 10001" -193508,USB-C Charging Cable,1,11.95,04/07/19 10:49,"379 South St, Seattle, WA 98101" -193508,Wired Headphones,1,11.99,04/07/19 10:49,"379 South St, Seattle, WA 98101" -193509,AAA Batteries (4-pack),1,2.99,04/05/19 21:43,"341 North St, Boston, MA 02215" -193510,Lightning Charging Cable,1,14.95,04/12/19 10:56,"324 Chestnut St, New York City, NY 10001" -193511,Google Phone,1,600,04/21/19 11:14,"821 Elm St, Austin, TX 73301" -193511,USB-C Charging Cable,2,11.95,04/21/19 11:14,"821 Elm St, Austin, TX 73301" -193511,Bose SoundSport Headphones,1,99.99,04/21/19 11:14,"821 Elm St, Austin, TX 73301" -193511,Wired Headphones,1,11.99,04/21/19 11:14,"821 Elm St, Austin, TX 73301" -193512,Apple Airpods Headphones,1,150,04/05/19 16:00,"767 Hill St, Los Angeles, CA 90001" -193513,USB-C Charging Cable,1,11.95,04/15/19 06:23,"791 Ridge St, Dallas, TX 75001" -193513,Bose SoundSport Headphones,1,99.99,04/15/19 06:23,"791 Ridge St, Dallas, TX 75001" -193514,Bose SoundSport Headphones,1,99.99,04/13/19 20:00,"213 Hickory St, San Francisco, CA 94016" -193515,Lightning Charging Cable,1,14.95,04/08/19 13:15,"945 Cherry St, San Francisco, CA 94016" -193516,Google Phone,1,600,04/14/19 03:25,"584 13th St, Portland, OR 97035" -193517,USB-C Charging Cable,1,11.95,04/25/19 19:01,"919 Jackson St, New York City, NY 10001" -193518,USB-C Charging Cable,1,11.95,04/22/19 19:26,"75 Willow St, Portland, OR 97035" -193519,Bose SoundSport Headphones,1,99.99,04/18/19 16:50,"490 Johnson St, Boston, MA 02215" -193520,ThinkPad Laptop,1,999.99,04/07/19 11:52,"374 Maple St, Atlanta, GA 30301" -193521,AAA Batteries (4-pack),2,2.99,04/15/19 10:29,"232 Cedar St, San Francisco, CA 94016" -193522,USB-C Charging Cable,1,11.95,04/11/19 20:30,"191 6th St, San Francisco, CA 94016" -193523,iPhone,1,700,04/23/19 14:54,"952 12th St, San Francisco, CA 94016" -193524,Lightning Charging Cable,1,14.95,04/25/19 22:07,"897 North St, San Francisco, CA 94016" -193525,LG Dryer,1,600.0,04/03/19 20:31,"785 Lake St, San Francisco, CA 94016" -193526,AAA Batteries (4-pack),2,2.99,04/11/19 17:56,"953 Jackson St, Portland, OR 97035" -193527,AA Batteries (4-pack),1,3.84,04/18/19 07:03,"295 Walnut St, San Francisco, CA 94016" -193528,AA Batteries (4-pack),1,3.84,04/26/19 20:13,"120 South St, New York City, NY 10001" -193529,USB-C Charging Cable,1,11.95,04/25/19 12:30,"18 Dogwood St, Portland, OR 97035" -193530,LG Dryer,1,600.0,04/24/19 10:44,"1 6th St, Austin, TX 73301" -193531,Lightning Charging Cable,1,14.95,04/03/19 18:01,"88 South St, Portland, OR 97035" -193532,iPhone,1,700,04/13/19 19:05,"233 8th St, Dallas, TX 75001" -193533,USB-C Charging Cable,1,11.95,04/12/19 22:07,"915 Willow St, San Francisco, CA 94016" -193534,Bose SoundSport Headphones,1,99.99,04/15/19 19:36,"525 Walnut St, Los Angeles, CA 90001" -193535,Apple Airpods Headphones,1,150,04/30/19 19:06,"866 West St, Seattle, WA 98101" -193536,AAA Batteries (4-pack),1,2.99,04/29/19 20:36,"225 13th St, Austin, TX 73301" -193537,Wired Headphones,1,11.99,04/30/19 21:56,"16 Wilson St, Los Angeles, CA 90001" -193538,Lightning Charging Cable,1,14.95,04/01/19 22:40,"280 Adams St, Boston, MA 02215" -193539,Google Phone,1,600,04/26/19 16:02,"148 Church St, Atlanta, GA 30301" -193540,Lightning Charging Cable,1,14.95,04/10/19 09:05,"478 Church St, Los Angeles, CA 90001" -193541,AAA Batteries (4-pack),2,2.99,04/01/19 13:19,"602 Highland St, Portland, ME 04101" -193542,USB-C Charging Cable,1,11.95,04/06/19 21:34,"885 6th St, Los Angeles, CA 90001" -193543,USB-C Charging Cable,1,11.95,04/27/19 13:55,"158 Adams St, Portland, OR 97035" -193544,Lightning Charging Cable,1,14.95,04/15/19 04:29,"474 Park St, Los Angeles, CA 90001" -193545,iPhone,1,700,04/04/19 20:21,"670 North St, New York City, NY 10001" -193545,Vareebadd Phone,1,400,04/04/19 20:21,"670 North St, New York City, NY 10001" -193546,Wired Headphones,1,11.99,04/20/19 16:07,"885 Walnut St, Seattle, WA 98101" -193547,AAA Batteries (4-pack),1,2.99,04/12/19 10:28,"222 1st St, Seattle, WA 98101" -193548,ThinkPad Laptop,1,999.99,04/26/19 11:02,"187 Cherry St, New York City, NY 10001" -193549,Lightning Charging Cable,1,14.95,04/03/19 11:41,"921 Lakeview St, Austin, TX 73301" -193550,Bose SoundSport Headphones,1,99.99,04/25/19 17:30,"609 West St, Boston, MA 02215" -193551,Wired Headphones,1,11.99,04/08/19 14:39,"774 Center St, San Francisco, CA 94016" -193552,Bose SoundSport Headphones,1,99.99,04/09/19 09:18,"341 Cherry St, Los Angeles, CA 90001" -193553,Wired Headphones,3,11.99,04/29/19 04:31,"660 9th St, Los Angeles, CA 90001" -193554,AA Batteries (4-pack),2,3.84,04/18/19 10:37,"778 2nd St, Los Angeles, CA 90001" -193555,Lightning Charging Cable,1,14.95,04/25/19 11:05,"68 8th St, Seattle, WA 98101" -193556,Lightning Charging Cable,1,14.95,04/14/19 15:38,"465 1st St, Austin, TX 73301" -193557,USB-C Charging Cable,2,11.95,04/22/19 11:50,"53 Main St, Los Angeles, CA 90001" -193558,Wired Headphones,1,11.99,04/10/19 21:00,"563 6th St, New York City, NY 10001" -193559,27in 4K Gaming Monitor,1,389.99,04/24/19 14:49,"474 13th St, Atlanta, GA 30301" -193560,Wired Headphones,1,11.99,04/27/19 14:35,"328 Main St, San Francisco, CA 94016" -193561,iPhone,1,700,04/11/19 19:46,"836 Ridge St, New York City, NY 10001" -193562,Google Phone,1,600,04/24/19 13:41,"526 9th St, Atlanta, GA 30301" -193563,Lightning Charging Cable,1,14.95,04/09/19 16:26,"855 Adams St, Boston, MA 02215" -193564,Apple Airpods Headphones,1,150,04/02/19 15:58,"470 Cedar St, San Francisco, CA 94016" -193565,USB-C Charging Cable,1,11.95,04/10/19 17:36,"682 14th St, New York City, NY 10001" -193566,Apple Airpods Headphones,1,150,04/26/19 08:45,"293 13th St, San Francisco, CA 94016" -193567,USB-C Charging Cable,1,11.95,04/22/19 14:27,"281 Johnson St, Los Angeles, CA 90001" -193568,AAA Batteries (4-pack),1,2.99,04/20/19 19:35,"3 Maple St, Portland, OR 97035" -193569,AAA Batteries (4-pack),1,2.99,04/07/19 15:28,"225 Lakeview St, Atlanta, GA 30301" -193570,Lightning Charging Cable,1,14.95,04/14/19 08:00,"342 Elm St, New York City, NY 10001" -193571,LG Washing Machine,1,600.0,04/13/19 17:46,"143 Spruce St, Portland, OR 97035" -193572,AA Batteries (4-pack),1,3.84,04/23/19 18:25,"896 11th St, Atlanta, GA 30301" -193573,AA Batteries (4-pack),1,3.84,04/27/19 18:32,"234 Pine St, San Francisco, CA 94016" -193574,Vareebadd Phone,1,400,04/29/19 03:22,"817 Hill St, San Francisco, CA 94016" -193575,AA Batteries (4-pack),1,3.84,04/29/19 23:48,"824 Elm St, Los Angeles, CA 90001" -193576,ThinkPad Laptop,1,999.99,04/27/19 21:37,"439 Willow St, San Francisco, CA 94016" -193577,ThinkPad Laptop,1,999.99,04/09/19 21:35,"201 Spruce St, San Francisco, CA 94016" -193578,Flatscreen TV,2,300,04/08/19 17:32,"375 Jackson St, San Francisco, CA 94016" -193579,Wired Headphones,2,11.99,04/03/19 13:52,"588 11th St, Los Angeles, CA 90001" -193580,AA Batteries (4-pack),1,3.84,04/13/19 19:25,"524 Park St, Dallas, TX 75001" -193581,AAA Batteries (4-pack),1,2.99,04/29/19 13:17,"933 Jackson St, Boston, MA 02215" -193582,USB-C Charging Cable,2,11.95,04/20/19 18:31,"346 Main St, Los Angeles, CA 90001" -193583,USB-C Charging Cable,1,11.95,04/13/19 21:07,"581 14th St, Seattle, WA 98101" -193584,AA Batteries (4-pack),1,3.84,04/23/19 11:05,"769 2nd St, Portland, OR 97035" -193585,AA Batteries (4-pack),3,3.84,04/22/19 20:45,"928 Dogwood St, Portland, OR 97035" -193586,Bose SoundSport Headphones,1,99.99,04/20/19 10:17,"351 7th St, San Francisco, CA 94016" -193587,USB-C Charging Cable,1,11.95,04/06/19 21:49,"120 Willow St, Los Angeles, CA 90001" -193588,Wired Headphones,1,11.99,04/22/19 19:49,"344 Adams St, Atlanta, GA 30301" -193589,Apple Airpods Headphones,1,150,04/20/19 13:54,"951 4th St, Los Angeles, CA 90001" -193590,AA Batteries (4-pack),1,3.84,04/24/19 14:26,"186 Lakeview St, Los Angeles, CA 90001" -193591,Apple Airpods Headphones,1,150,04/11/19 14:48,"394 South St, New York City, NY 10001" -193592,AA Batteries (4-pack),1,3.84,04/23/19 06:51,"88 Elm St, Los Angeles, CA 90001" -193593,Lightning Charging Cable,1,14.95,04/26/19 16:38,"69 South St, Boston, MA 02215" -193594,ThinkPad Laptop,1,999.99,04/22/19 16:36,"732 Jefferson St, Austin, TX 73301" -193595,Lightning Charging Cable,2,14.95,04/18/19 23:17,"368 Elm St, Dallas, TX 75001" -193596,AAA Batteries (4-pack),1,2.99,04/28/19 14:50,"758 10th St, Portland, OR 97035" -193597,USB-C Charging Cable,1,11.95,04/28/19 10:43,"195 9th St, Los Angeles, CA 90001" -193598,USB-C Charging Cable,1,11.95,04/10/19 23:35,"177 Madison St, Austin, TX 73301" -193599,Lightning Charging Cable,1,14.95,04/30/19 08:46,"309 5th St, Austin, TX 73301" -193600,Macbook Pro Laptop,1,1700,04/23/19 22:12,"71 Cherry St, Portland, OR 97035" -193601,Apple Airpods Headphones,1,150,04/28/19 17:41,"346 10th St, Los Angeles, CA 90001" -193602,20in Monitor,1,109.99,04/10/19 18:43,"436 Park St, Dallas, TX 75001" -193603,AA Batteries (4-pack),1,3.84,04/30/19 19:45,"58 5th St, San Francisco, CA 94016" -193604,USB-C Charging Cable,1,11.95,04/06/19 05:34,"830 Lakeview St, Dallas, TX 75001" -193605,ThinkPad Laptop,1,999.99,04/02/19 16:16,"875 North St, Boston, MA 02215" -193606,Wired Headphones,1,11.99,04/02/19 16:13,"957 Ridge St, New York City, NY 10001" -193607,Google Phone,1,600,04/08/19 11:42,"94 Washington St, Los Angeles, CA 90001" -193608,Apple Airpods Headphones,1,150,04/05/19 21:18,"856 1st St, San Francisco, CA 94016" -193609,Apple Airpods Headphones,1,150,04/23/19 18:53,"408 Elm St, Dallas, TX 75001" -193610,Bose SoundSport Headphones,1,99.99,04/16/19 22:59,"800 River St, Dallas, TX 75001" -193611,Vareebadd Phone,1,400,04/01/19 11:30,"317 11th St, Atlanta, GA 30301" -193612,AA Batteries (4-pack),1,3.84,04/29/19 23:41,"892 9th St, San Francisco, CA 94016" -193613,AA Batteries (4-pack),1,3.84,04/14/19 15:18,"283 11th St, New York City, NY 10001" -193614,AA Batteries (4-pack),1,3.84,04/30/19 15:41,"669 Jackson St, Los Angeles, CA 90001" -193615,Vareebadd Phone,1,400,04/02/19 17:24,"546 Lake St, San Francisco, CA 94016" -193615,Bose SoundSport Headphones,1,99.99,04/02/19 17:24,"546 Lake St, San Francisco, CA 94016" -193616,Lightning Charging Cable,1,14.95,04/06/19 18:03,"440 Meadow St, Boston, MA 02215" -193616,AA Batteries (4-pack),2,3.84,04/06/19 18:03,"440 Meadow St, Boston, MA 02215" -193617,Flatscreen TV,1,300,04/30/19 18:41,"828 12th St, Portland, OR 97035" -193618,Lightning Charging Cable,1,14.95,04/27/19 23:52,"526 1st St, Atlanta, GA 30301" -193619,Wired Headphones,1,11.99,04/01/19 10:36,"150 13th St, Atlanta, GA 30301" -193620,AAA Batteries (4-pack),1,2.99,04/20/19 14:51,"140 Cherry St, Atlanta, GA 30301" -193621,20in Monitor,1,109.99,04/01/19 07:21,"728 Highland St, Boston, MA 02215" -193622,AA Batteries (4-pack),1,3.84,04/23/19 17:27,"326 Cherry St, San Francisco, CA 94016" -193623,27in 4K Gaming Monitor,1,389.99,04/17/19 12:35,"719 14th St, San Francisco, CA 94016" -193624,AA Batteries (4-pack),1,3.84,04/25/19 10:46,"516 Meadow St, New York City, NY 10001" -193625,Apple Airpods Headphones,1,150,04/09/19 08:23,"846 Ridge St, New York City, NY 10001" -193626,27in FHD Monitor,1,149.99,04/12/19 18:23,"318 8th St, New York City, NY 10001" -193627,Wired Headphones,1,11.99,04/10/19 22:21,"46 Meadow St, Atlanta, GA 30301" -193628,Bose SoundSport Headphones,1,99.99,04/03/19 14:16,"276 5th St, Portland, ME 04101" -193629,27in 4K Gaming Monitor,1,389.99,04/06/19 19:54,"879 West St, Boston, MA 02215" -193630,Lightning Charging Cable,1,14.95,04/12/19 20:45,"582 Lincoln St, San Francisco, CA 94016" -193631,Google Phone,1,600,04/11/19 10:59,"963 Center St, Portland, OR 97035" -193631,USB-C Charging Cable,1,11.95,04/11/19 10:59,"963 Center St, Portland, OR 97035" -193632,AAA Batteries (4-pack),1,2.99,04/28/19 09:52,"280 Main St, Portland, OR 97035" -193633,Bose SoundSport Headphones,1,99.99,04/01/19 13:51,"109 Meadow St, Los Angeles, CA 90001" -193634,ThinkPad Laptop,1,999.99,04/05/19 19:15,"546 Hickory St, New York City, NY 10001" -193635,USB-C Charging Cable,1,11.95,04/04/19 00:58,"656 Ridge St, Portland, OR 97035" -193636,USB-C Charging Cable,1,11.95,04/13/19 08:01,"448 River St, Los Angeles, CA 90001" -193637,USB-C Charging Cable,1,11.95,04/25/19 21:44,"891 11th St, Los Angeles, CA 90001" -193638,Apple Airpods Headphones,1,150,04/24/19 20:01,"129 Cedar St, San Francisco, CA 94016" -193639,Apple Airpods Headphones,1,150,04/01/19 18:54,"977 Main St, New York City, NY 10001" -193640,34in Ultrawide Monitor,1,379.99,04/27/19 18:04,"667 13th St, Portland, OR 97035" -193640,Wired Headphones,1,11.99,04/27/19 18:04,"667 13th St, Portland, OR 97035" -193641,Bose SoundSport Headphones,1,99.99,04/01/19 11:46,"775 5th St, Los Angeles, CA 90001" -193642,Wired Headphones,1,11.99,04/21/19 14:20,"922 6th St, Boston, MA 02215" -193643,iPhone,1,700,04/04/19 09:04,"163 7th St, Atlanta, GA 30301" -193643,Lightning Charging Cable,1,14.95,04/04/19 09:04,"163 7th St, Atlanta, GA 30301" -193643,Apple Airpods Headphones,1,150,04/04/19 09:04,"163 7th St, Atlanta, GA 30301" -193644,27in 4K Gaming Monitor,1,389.99,04/13/19 18:54,"739 Main St, New York City, NY 10001" -193645,AAA Batteries (4-pack),2,2.99,04/24/19 17:01,"665 River St, Seattle, WA 98101" -193646,USB-C Charging Cable,1,11.95,04/18/19 21:08,"331 Madison St, San Francisco, CA 94016" -193647,Apple Airpods Headphones,1,150,04/12/19 03:03,"452 Park St, San Francisco, CA 94016" -193647,AAA Batteries (4-pack),1,2.99,04/12/19 03:03,"452 Park St, San Francisco, CA 94016" -193648,AAA Batteries (4-pack),2,2.99,04/13/19 10:27,"317 North St, Boston, MA 02215" -193649,Wired Headphones,1,11.99,04/07/19 17:07,"230 Adams St, New York City, NY 10001" -193650,AA Batteries (4-pack),3,3.84,04/04/19 12:16,"139 Church St, San Francisco, CA 94016" -193651,27in FHD Monitor,1,149.99,04/15/19 19:38,"849 13th St, San Francisco, CA 94016" -193652,AAA Batteries (4-pack),1,2.99,04/10/19 22:36,"989 13th St, San Francisco, CA 94016" -193653,Google Phone,1,600,04/21/19 09:29,"168 Chestnut St, Los Angeles, CA 90001" -193653,USB-C Charging Cable,2,11.95,04/21/19 09:29,"168 Chestnut St, Los Angeles, CA 90001" -193654,27in FHD Monitor,1,149.99,04/04/19 16:19,"978 7th St, Portland, OR 97035" -193655,USB-C Charging Cable,1,11.95,04/06/19 14:10,"921 9th St, San Francisco, CA 94016" -193656,USB-C Charging Cable,1,11.95,04/15/19 08:48,"450 Walnut St, Los Angeles, CA 90001" -193657,Lightning Charging Cable,1,14.95,04/22/19 16:15,"813 8th St, Los Angeles, CA 90001" -193658,Apple Airpods Headphones,1,150,04/10/19 10:02,"325 1st St, San Francisco, CA 94016" -193659,Lightning Charging Cable,2,14.95,04/02/19 07:41,"366 Sunset St, Portland, OR 97035" -193660,LG Washing Machine,1,600.0,04/07/19 16:01,"903 Main St, New York City, NY 10001" -193661,27in 4K Gaming Monitor,1,389.99,04/18/19 01:15,"900 Forest St, Atlanta, GA 30301" -193662,AAA Batteries (4-pack),1,2.99,04/16/19 22:33,"486 Willow St, Portland, OR 97035" -193663,Bose SoundSport Headphones,1,99.99,04/25/19 14:24,"914 13th St, Boston, MA 02215" -193664,Lightning Charging Cable,1,14.95,04/19/19 12:59,"953 River St, New York City, NY 10001" -193665,ThinkPad Laptop,1,999.99,04/25/19 22:38,"651 1st St, Portland, OR 97035" -193666,27in 4K Gaming Monitor,1,389.99,04/29/19 20:00,"783 River St, Boston, MA 02215" -193667,AA Batteries (4-pack),1,3.84,04/15/19 20:23,"711 Jackson St, Boston, MA 02215" -193668,AAA Batteries (4-pack),2,2.99,04/29/19 16:02,"677 Park St, Dallas, TX 75001" -193669,AA Batteries (4-pack),1,3.84,04/30/19 06:47,"359 Washington St, Austin, TX 73301" -193670,Bose SoundSport Headphones,1,99.99,04/07/19 01:48,"470 8th St, Boston, MA 02215" -193671,iPhone,1,700,04/02/19 20:18,"346 Hill St, Austin, TX 73301" -193672,AA Batteries (4-pack),2,3.84,04/23/19 18:58,"363 Pine St, San Francisco, CA 94016" -193673,USB-C Charging Cable,1,11.95,04/28/19 16:15,"220 11th St, Boston, MA 02215" -193674,Wired Headphones,1,11.99,04/03/19 19:39,"647 10th St, Los Angeles, CA 90001" -193675,AA Batteries (4-pack),2,3.84,04/01/19 19:49,"221 River St, Boston, MA 02215" -193676,AAA Batteries (4-pack),1,2.99,04/11/19 13:34,"323 11th St, Portland, OR 97035" -193677,USB-C Charging Cable,1,11.95,04/01/19 18:38,"313 Sunset St, New York City, NY 10001" -193678,Apple Airpods Headphones,1,150,04/27/19 21:04,"433 Walnut St, Seattle, WA 98101" -193679,USB-C Charging Cable,1,11.95,04/01/19 11:37,"908 Elm St, San Francisco, CA 94016" -193680,USB-C Charging Cable,2,11.95,04/14/19 20:58,"589 Cherry St, Austin, TX 73301" -193681,Wired Headphones,1,11.99,04/29/19 16:12,"50 Madison St, Seattle, WA 98101" -193682,Wired Headphones,1,11.99,04/26/19 14:08,"352 Center St, Boston, MA 02215" -193683,AA Batteries (4-pack),2,3.84,04/07/19 11:35,"616 10th St, Boston, MA 02215" -193684,Lightning Charging Cable,1,14.95,04/16/19 18:45,"856 Main St, Seattle, WA 98101" -193685,Bose SoundSport Headphones,1,99.99,04/29/19 18:37,"246 12th St, San Francisco, CA 94016" -193686,USB-C Charging Cable,1,11.95,04/06/19 16:21,"372 West St, Los Angeles, CA 90001" -193687,Bose SoundSport Headphones,1,99.99,04/15/19 18:54,"620 Walnut St, San Francisco, CA 94016" -193688,AA Batteries (4-pack),1,3.84,04/06/19 23:28,"928 Lakeview St, Dallas, TX 75001" -193689,iPhone,1,700,04/17/19 10:54,"619 Hill St, Boston, MA 02215" -193690,Bose SoundSport Headphones,1,99.99,04/13/19 00:26,"542 14th St, San Francisco, CA 94016" -193691,Wired Headphones,1,11.99,04/23/19 15:07,"177 West St, New York City, NY 10001" -193692,34in Ultrawide Monitor,1,379.99,04/17/19 19:20,"574 Jackson St, New York City, NY 10001" -193693,AAA Batteries (4-pack),1,2.99,04/02/19 05:33,"656 7th St, Los Angeles, CA 90001" -193694,Lightning Charging Cable,1,14.95,04/18/19 13:20,"17 Cherry St, Los Angeles, CA 90001" -193695,Wired Headphones,1,11.99,04/23/19 20:58,"506 Cedar St, Boston, MA 02215" -193696,Lightning Charging Cable,1,14.95,04/21/19 15:02,"722 7th St, Atlanta, GA 30301" -193697,AA Batteries (4-pack),1,3.84,04/06/19 16:37,"80 13th St, Seattle, WA 98101" -193698,iPhone,1,700,04/01/19 11:30,"310 Madison St, San Francisco, CA 94016" -193699,Wired Headphones,1,11.99,04/01/19 16:49,"182 Willow St, Los Angeles, CA 90001" -193700,Apple Airpods Headphones,1,150,04/14/19 10:06,"61 Jackson St, Boston, MA 02215" -193701,USB-C Charging Cable,1,11.95,04/11/19 07:17,"337 Meadow St, Dallas, TX 75001" -193702,27in FHD Monitor,1,149.99,04/02/19 12:37,"832 Highland St, New York City, NY 10001" -193703,AAA Batteries (4-pack),1,2.99,04/30/19 13:01,"133 1st St, Boston, MA 02215" -193704,AA Batteries (4-pack),2,3.84,04/28/19 11:58,"647 Ridge St, Los Angeles, CA 90001" -193705,ThinkPad Laptop,1,999.99,04/16/19 06:29,"690 Lake St, Los Angeles, CA 90001" -193706,27in 4K Gaming Monitor,1,389.99,04/25/19 21:21,"909 Cedar St, Los Angeles, CA 90001" -193707,20in Monitor,1,109.99,04/14/19 15:06,"61 8th St, San Francisco, CA 94016" -193708,27in FHD Monitor,1,149.99,04/10/19 10:37,"217 Meadow St, Los Angeles, CA 90001" -193709,AA Batteries (4-pack),1,3.84,04/09/19 12:06,"701 Lincoln St, Boston, MA 02215" -193710,AAA Batteries (4-pack),2,2.99,04/11/19 12:52,"235 Cedar St, Boston, MA 02215" -193711,Lightning Charging Cable,1,14.95,04/25/19 16:51,"767 Cherry St, Austin, TX 73301" -193712,USB-C Charging Cable,1,11.95,04/16/19 22:09,"656 Chestnut St, Los Angeles, CA 90001" -193713,Flatscreen TV,1,300,04/21/19 18:39,"175 Willow St, Atlanta, GA 30301" -193714,USB-C Charging Cable,2,11.95,04/23/19 13:57,"173 Willow St, Seattle, WA 98101" -193715,ThinkPad Laptop,1,999.99,04/29/19 15:11,"765 Jackson St, New York City, NY 10001" -193716,Wired Headphones,1,11.99,04/29/19 21:46,"706 Maple St, Atlanta, GA 30301" -193717,27in FHD Monitor,1,149.99,04/27/19 17:49,"592 Dogwood St, Los Angeles, CA 90001" -193718,USB-C Charging Cable,1,11.95,04/11/19 15:17,"917 1st St, Los Angeles, CA 90001" -193719,Lightning Charging Cable,1,14.95,04/29/19 22:21,"287 Ridge St, New York City, NY 10001" -193720,Apple Airpods Headphones,1,150,04/09/19 14:37,"156 6th St, Dallas, TX 75001" -193721,Lightning Charging Cable,1,14.95,04/20/19 19:00,"69 Meadow St, San Francisco, CA 94016" -193722,AA Batteries (4-pack),1,3.84,04/14/19 22:47,"909 Park St, Boston, MA 02215" -193723,27in 4K Gaming Monitor,1,389.99,04/05/19 20:48,"535 4th St, Los Angeles, CA 90001" -193724,Apple Airpods Headphones,1,150,04/18/19 19:20,"776 Chestnut St, Austin, TX 73301" -193725,AA Batteries (4-pack),1,3.84,04/04/19 07:13,"516 Hickory St, New York City, NY 10001" -193726,27in 4K Gaming Monitor,1,389.99,04/13/19 10:32,"809 Washington St, San Francisco, CA 94016" -193727,ThinkPad Laptop,1,999.99,04/29/19 16:28,"21 Walnut St, San Francisco, CA 94016" -193728,USB-C Charging Cable,1,11.95,04/19/19 16:50,"731 Washington St, Los Angeles, CA 90001" -193729,Wired Headphones,1,11.99,04/05/19 19:14,"433 8th St, Portland, OR 97035" -193730,ThinkPad Laptop,1,999.99,04/12/19 15:42,"102 Ridge St, Atlanta, GA 30301" -193731,Lightning Charging Cable,1,14.95,04/10/19 17:34,"278 11th St, San Francisco, CA 94016" -193732,AAA Batteries (4-pack),1,2.99,04/17/19 15:08,"430 Sunset St, Portland, OR 97035" -193733,Google Phone,1,600,04/30/19 22:41,"464 Chestnut St, Austin, TX 73301" -193734,Apple Airpods Headphones,1,150,04/23/19 10:03,"365 Washington St, San Francisco, CA 94016" -193735,AA Batteries (4-pack),1,3.84,04/12/19 16:36,"510 Madison St, Austin, TX 73301" -193736,Flatscreen TV,1,300,04/27/19 13:55,"917 5th St, Austin, TX 73301" -193737,AAA Batteries (4-pack),2,2.99,04/26/19 21:42,"738 11th St, Los Angeles, CA 90001" -193738,iPhone,1,700,04/05/19 09:50,"707 Johnson St, Boston, MA 02215" -193739,USB-C Charging Cable,1,11.95,04/08/19 06:32,"414 12th St, San Francisco, CA 94016" -193740,27in FHD Monitor,1,149.99,04/28/19 08:17,"491 Spruce St, Portland, OR 97035" -193741,Google Phone,1,600,04/01/19 20:17,"779 Adams St, Boston, MA 02215" -193742,Wired Headphones,1,11.99,04/05/19 10:22,"450 Washington St, Austin, TX 73301" -193743,Bose SoundSport Headphones,1,99.99,04/22/19 11:29,"808 Pine St, New York City, NY 10001" -193744,34in Ultrawide Monitor,1,379.99,04/08/19 16:12,"128 Pine St, Boston, MA 02215" -193745,USB-C Charging Cable,1,11.95,04/07/19 01:35,"789 Jackson St, New York City, NY 10001" -193746,AAA Batteries (4-pack),4,2.99,04/14/19 19:47,"989 Elm St, New York City, NY 10001" -193747,Vareebadd Phone,1,400,04/21/19 15:29,"883 2nd St, Seattle, WA 98101" -193748,Flatscreen TV,1,300,04/16/19 18:33,"95 4th St, San Francisco, CA 94016" -193749,Apple Airpods Headphones,1,150,04/10/19 00:31,"842 Johnson St, Los Angeles, CA 90001" -193750,Wired Headphones,1,11.99,04/13/19 00:44,"7 Washington St, Boston, MA 02215" -193751,27in 4K Gaming Monitor,1,389.99,04/22/19 13:42,"24 West St, New York City, NY 10001" -193752,Lightning Charging Cable,1,14.95,04/25/19 10:47,"413 Highland St, Boston, MA 02215" -193753,ThinkPad Laptop,1,999.99,04/09/19 14:47,"251 Dogwood St, Atlanta, GA 30301" -193754,Lightning Charging Cable,1,14.95,04/08/19 18:56,"417 Church St, Atlanta, GA 30301" -193755,Lightning Charging Cable,1,14.95,04/24/19 15:05,"900 Church St, Los Angeles, CA 90001" -193756,Lightning Charging Cable,1,14.95,04/22/19 22:04,"124 6th St, Los Angeles, CA 90001" -193757,AA Batteries (4-pack),2,3.84,04/09/19 05:37,"10 Adams St, Boston, MA 02215" -193758,Apple Airpods Headphones,1,150,04/23/19 10:34,"35 Walnut St, Dallas, TX 75001" -193759,USB-C Charging Cable,1,11.95,04/08/19 01:11,"985 Park St, San Francisco, CA 94016" -193760,Lightning Charging Cable,1,14.95,04/15/19 12:57,"850 Hickory St, Los Angeles, CA 90001" -193761,Apple Airpods Headphones,1,150,04/13/19 20:23,"971 Walnut St, Portland, OR 97035" -193762,AAA Batteries (4-pack),1,2.99,04/28/19 01:13,"108 Lakeview St, Atlanta, GA 30301" -193763,27in FHD Monitor,1,149.99,04/17/19 08:15,"450 13th St, Boston, MA 02215" -193764,AA Batteries (4-pack),1,3.84,04/24/19 14:43,"866 Spruce St, San Francisco, CA 94016" -193765,Google Phone,1,600,04/21/19 12:04,"146 Cherry St, San Francisco, CA 94016" -193766,iPhone,1,700,04/20/19 15:23,"435 Washington St, Los Angeles, CA 90001" -193767,Apple Airpods Headphones,1,150,04/17/19 11:47,"372 Main St, Boston, MA 02215" -193768,Lightning Charging Cable,1,14.95,04/26/19 13:45,"12 Church St, New York City, NY 10001" -193769,USB-C Charging Cable,1,11.95,04/07/19 21:57,"250 Maple St, Atlanta, GA 30301" -193770,AA Batteries (4-pack),1,3.84,04/08/19 15:54,"185 Madison St, Dallas, TX 75001" -193771,AAA Batteries (4-pack),1,2.99,04/24/19 10:27,"495 12th St, Austin, TX 73301" -193772,Bose SoundSport Headphones,1,99.99,04/24/19 22:19,"250 South St, San Francisco, CA 94016" -193773,USB-C Charging Cable,1,11.95,04/04/19 12:55,"266 2nd St, Los Angeles, CA 90001" -193774,Google Phone,1,600,04/16/19 12:35,"655 Spruce St, Seattle, WA 98101" -193775,27in FHD Monitor,1,149.99,04/18/19 13:42,"71 Jefferson St, San Francisco, CA 94016" -193776,Wired Headphones,1,11.99,04/04/19 19:14,"339 Forest St, Austin, TX 73301" -193777,LG Washing Machine,1,600.0,04/08/19 10:51,"94 Sunset St, New York City, NY 10001" -193778,USB-C Charging Cable,1,11.95,04/18/19 15:58,"817 14th St, Los Angeles, CA 90001" -193779,USB-C Charging Cable,1,11.95,04/06/19 15:32,"207 River St, Boston, MA 02215" -193780,Lightning Charging Cable,1,14.95,04/25/19 07:41,"146 Cedar St, Atlanta, GA 30301" -193781,Lightning Charging Cable,1,14.95,04/12/19 16:58,"166 1st St, Seattle, WA 98101" -193782,USB-C Charging Cable,1,11.95,04/16/19 11:23,"978 Dogwood St, Austin, TX 73301" -193783,AAA Batteries (4-pack),2,2.99,04/24/19 14:03,"427 Park St, Portland, OR 97035" -193784,Flatscreen TV,1,300,04/24/19 21:25,"985 North St, San Francisco, CA 94016" -193785,Apple Airpods Headphones,1,150,04/28/19 16:50,"322 Forest St, Boston, MA 02215" -193786,USB-C Charging Cable,1,11.95,04/09/19 12:34,"526 Elm St, San Francisco, CA 94016" -193787,iPhone,1,700,04/27/19 08:15,"29 Willow St, Los Angeles, CA 90001" -193787,Apple Airpods Headphones,1,150,04/27/19 08:15,"29 Willow St, Los Angeles, CA 90001" -193787,Wired Headphones,1,11.99,04/27/19 08:15,"29 Willow St, Los Angeles, CA 90001" -193788,Wired Headphones,1,11.99,04/21/19 03:29,"357 1st St, Los Angeles, CA 90001" -193789,Google Phone,1,600,04/21/19 22:22,"608 Chestnut St, Seattle, WA 98101" -193789,USB-C Charging Cable,1,11.95,04/21/19 22:22,"608 Chestnut St, Seattle, WA 98101" -193790,USB-C Charging Cable,1,11.95,04/09/19 09:58,"806 Lake St, Seattle, WA 98101" -193791,iPhone,1,700,04/12/19 13:31,"761 9th St, Seattle, WA 98101" -193792,AA Batteries (4-pack),3,3.84,04/14/19 01:53,"462 Church St, San Francisco, CA 94016" -193793,Google Phone,1,600,04/20/19 17:55,"407 Sunset St, Austin, TX 73301" -193794,Bose SoundSport Headphones,1,99.99,04/25/19 01:19,"122 9th St, Atlanta, GA 30301" -193795,34in Ultrawide Monitor,1,379.99,04/27/19 15:51,"927 10th St, San Francisco, CA 94016" -193796,Macbook Pro Laptop,1,1700,04/14/19 11:17,"649 River St, Austin, TX 73301" -193797,Lightning Charging Cable,1,14.95,04/16/19 21:46,"513 12th St, Portland, OR 97035" -193798,Apple Airpods Headphones,1,150,04/08/19 16:30,"362 Lake St, Atlanta, GA 30301" -193799,USB-C Charging Cable,1,11.95,04/28/19 05:33,"519 Elm St, New York City, NY 10001" -193800,Google Phone,1,600,04/09/19 09:17,"479 Wilson St, Los Angeles, CA 90001" -193801,iPhone,1,700,04/05/19 15:51,"258 13th St, Los Angeles, CA 90001" -193802,Apple Airpods Headphones,1,150,04/04/19 08:49,"598 Walnut St, Portland, OR 97035" -193803,Lightning Charging Cable,1,14.95,04/02/19 09:45,"145 River St, Atlanta, GA 30301" -193804,AA Batteries (4-pack),1,3.84,04/28/19 00:48,"765 Lincoln St, Dallas, TX 75001" -193805,USB-C Charging Cable,1,11.95,04/03/19 16:32,"816 Lakeview St, Portland, OR 97035" -193806,Macbook Pro Laptop,1,1700,04/24/19 12:06,"631 Pine St, New York City, NY 10001" -193807,Apple Airpods Headphones,1,150,04/04/19 10:17,"763 10th St, New York City, NY 10001" -193808,Vareebadd Phone,1,400,04/19/19 20:24,"33 Washington St, Boston, MA 02215" -193809,Macbook Pro Laptop,1,1700,04/11/19 15:29,"245 Dogwood St, Los Angeles, CA 90001" -193810,Bose SoundSport Headphones,1,99.99,04/08/19 20:56,"37 12th St, Boston, MA 02215" -193811,27in 4K Gaming Monitor,1,389.99,04/13/19 11:23,"566 Church St, Los Angeles, CA 90001" -193812,34in Ultrawide Monitor,1,379.99,04/03/19 18:41,"277 Lincoln St, Portland, OR 97035" -193813,Lightning Charging Cable,1,14.95,04/05/19 19:50,"919 6th St, New York City, NY 10001" -193814,Bose SoundSport Headphones,1,99.99,04/07/19 14:04,"978 2nd St, Seattle, WA 98101" -193815,Macbook Pro Laptop,1,1700,04/03/19 23:47,"614 Washington St, San Francisco, CA 94016" -193816,Wired Headphones,1,11.99,04/11/19 15:18,"259 Spruce St, Atlanta, GA 30301" -193817,Bose SoundSport Headphones,1,99.99,04/17/19 15:45,"988 Spruce St, New York City, NY 10001" -193818,Lightning Charging Cable,1,14.95,04/17/19 06:01,"111 4th St, Los Angeles, CA 90001" -193819,Apple Airpods Headphones,1,150,04/02/19 10:47,"404 10th St, Boston, MA 02215" -193820,Wired Headphones,1,11.99,04/03/19 05:45,"676 14th St, Los Angeles, CA 90001" -193821,Bose SoundSport Headphones,1,99.99,04/28/19 15:44,"673 Highland St, Boston, MA 02215" -193822,USB-C Charging Cable,1,11.95,04/19/19 15:17,"590 Park St, Los Angeles, CA 90001" -193823,Wired Headphones,1,11.99,04/01/19 07:49,"737 9th St, San Francisco, CA 94016" -193824,Macbook Pro Laptop,1,1700,04/14/19 19:01,"359 9th St, San Francisco, CA 94016" -193825,AAA Batteries (4-pack),2,2.99,04/30/19 22:20,"336 10th St, San Francisco, CA 94016" -193826,USB-C Charging Cable,1,11.95,04/17/19 19:07,"548 2nd St, New York City, NY 10001" -193827,Lightning Charging Cable,1,14.95,04/06/19 11:55,"763 Lakeview St, San Francisco, CA 94016" -193828,AAA Batteries (4-pack),1,2.99,04/30/19 06:42,"698 4th St, San Francisco, CA 94016" -193829,AA Batteries (4-pack),1,3.84,04/04/19 16:43,"563 Park St, Seattle, WA 98101" -193830,Lightning Charging Cable,1,14.95,04/21/19 20:43,"912 Sunset St, New York City, NY 10001" -193831,27in FHD Monitor,1,149.99,04/13/19 18:49,"113 Church St, Atlanta, GA 30301" -193832,Lightning Charging Cable,1,14.95,04/04/19 18:28,"239 Johnson St, New York City, NY 10001" -193833,34in Ultrawide Monitor,1,379.99,04/06/19 09:40,"413 Center St, Portland, ME 04101" -193834,34in Ultrawide Monitor,1,379.99,04/26/19 13:20,"688 Highland St, Atlanta, GA 30301" -193835,AA Batteries (4-pack),1,3.84,04/13/19 14:57,"921 13th St, San Francisco, CA 94016" -193836,Apple Airpods Headphones,1,150,04/27/19 17:54,"222 River St, New York City, NY 10001" -193837,Lightning Charging Cable,1,14.95,04/10/19 09:06,"638 Center St, Portland, OR 97035" -193838,Google Phone,1,600,04/24/19 15:52,"328 Walnut St, Los Angeles, CA 90001" -193839,Macbook Pro Laptop,1,1700,04/05/19 14:46,"984 Sunset St, San Francisco, CA 94016" -193840,Bose SoundSport Headphones,1,99.99,04/23/19 17:07,"634 River St, Austin, TX 73301" -193841,Bose SoundSport Headphones,1,99.99,04/23/19 21:32,"399 Washington St, Seattle, WA 98101" -193842,AA Batteries (4-pack),1,3.84,04/27/19 19:55,"624 Hill St, San Francisco, CA 94016" -193843,USB-C Charging Cable,1,11.95,04/26/19 13:11,"618 Chestnut St, New York City, NY 10001" -193844,USB-C Charging Cable,1,11.95,04/13/19 13:09,"71 Dogwood St, Atlanta, GA 30301" -193845,USB-C Charging Cable,1,11.95,04/22/19 18:11,"901 Church St, Atlanta, GA 30301" -193846,AA Batteries (4-pack),2,3.84,04/20/19 09:17,"648 Main St, San Francisco, CA 94016" -193847,AA Batteries (4-pack),1,3.84,04/10/19 10:45,"487 North St, San Francisco, CA 94016" -193848,AA Batteries (4-pack),2,3.84,04/10/19 22:30,"73 Washington St, Boston, MA 02215" -193849,Apple Airpods Headphones,1,150,04/20/19 06:17,"61 Forest St, San Francisco, CA 94016" -193849,27in 4K Gaming Monitor,1,389.99,04/20/19 06:17,"61 Forest St, San Francisco, CA 94016" -193850,Bose SoundSport Headphones,1,99.99,04/21/19 13:33,"320 13th St, Atlanta, GA 30301" -193851,AAA Batteries (4-pack),1,2.99,04/01/19 08:09,"363 Forest St, Los Angeles, CA 90001" -193852,AAA Batteries (4-pack),1,2.99,04/12/19 20:49,"498 Chestnut St, Los Angeles, CA 90001" -193853,USB-C Charging Cable,1,11.95,04/25/19 10:38,"906 Hickory St, New York City, NY 10001" -193854,27in FHD Monitor,1,149.99,04/17/19 17:30,"275 Walnut St, Portland, ME 04101" -193855,27in FHD Monitor,1,149.99,04/25/19 09:21,"145 Jefferson St, New York City, NY 10001" -193856,AAA Batteries (4-pack),2,2.99,04/04/19 12:08,"173 Park St, San Francisco, CA 94016" -193857,USB-C Charging Cable,1,11.95,04/30/19 19:45,"573 North St, Los Angeles, CA 90001" -193858,Lightning Charging Cable,1,14.95,04/23/19 17:20,"310 Cedar St, Austin, TX 73301" -193859,Lightning Charging Cable,1,14.95,04/18/19 21:56,"839 Cedar St, New York City, NY 10001" -193860,Google Phone,1,600,04/17/19 12:07,"612 10th St, Portland, OR 97035" -193860,USB-C Charging Cable,1,11.95,04/17/19 12:07,"612 10th St, Portland, OR 97035" -193861,AA Batteries (4-pack),1,3.84,04/04/19 11:58,"44 Wilson St, Seattle, WA 98101" -193862,Lightning Charging Cable,1,14.95,04/06/19 23:53,"464 Forest St, Seattle, WA 98101" -193863,Google Phone,1,600,04/12/19 11:18,"79 12th St, Dallas, TX 75001" -193864,Wired Headphones,1,11.99,04/30/19 20:47,"371 Elm St, Portland, OR 97035" -193865,Bose SoundSport Headphones,1,99.99,04/17/19 13:31,"383 Cherry St, Dallas, TX 75001" -193865,AA Batteries (4-pack),1,3.84,04/17/19 13:31,"383 Cherry St, Dallas, TX 75001" -193866,Lightning Charging Cable,1,14.95,04/09/19 11:49,"633 Lake St, San Francisco, CA 94016" -193867,Lightning Charging Cable,1,14.95,04/16/19 10:11,"773 Hill St, New York City, NY 10001" -193868,Wired Headphones,1,11.99,04/19/19 10:34,"491 West St, San Francisco, CA 94016" -193869,Apple Airpods Headphones,1,150,04/28/19 12:14,"807 Cherry St, Los Angeles, CA 90001" -193870,Apple Airpods Headphones,1,150,04/22/19 03:00,"899 Willow St, New York City, NY 10001" -193871,AA Batteries (4-pack),1,3.84,04/15/19 22:41,"588 Lake St, Seattle, WA 98101" -193872,USB-C Charging Cable,1,11.95,04/09/19 18:22,"455 River St, San Francisco, CA 94016" -193873,AA Batteries (4-pack),2,3.84,04/03/19 18:52,"789 Main St, New York City, NY 10001" -193874,Wired Headphones,1,11.99,04/23/19 13:44,"705 Ridge St, Portland, ME 04101" -193875,27in FHD Monitor,1,149.99,04/12/19 19:20,"261 South St, San Francisco, CA 94016" -193876,Lightning Charging Cable,1,14.95,04/15/19 08:59,"505 Spruce St, Austin, TX 73301" -193877,Wired Headphones,2,11.99,04/23/19 01:39,"370 9th St, San Francisco, CA 94016" -193878,AA Batteries (4-pack),1,3.84,04/25/19 14:02,"369 8th St, Portland, ME 04101" -193878,AAA Batteries (4-pack),1,2.99,04/25/19 14:02,"369 8th St, Portland, ME 04101" -193879,Apple Airpods Headphones,1,150,04/25/19 21:40,"19 Lakeview St, Los Angeles, CA 90001" -193880,Wired Headphones,1,11.99,04/22/19 16:26,"153 Jackson St, Dallas, TX 75001" -193881,AA Batteries (4-pack),2,3.84,04/30/19 11:28,"282 12th St, New York City, NY 10001" -193882,USB-C Charging Cable,1,11.95,04/18/19 20:16,"494 Jefferson St, Boston, MA 02215" -193883,Lightning Charging Cable,1,14.95,04/14/19 08:17,"693 Center St, San Francisco, CA 94016" -193884,27in 4K Gaming Monitor,1,389.99,04/09/19 06:01,"85 North St, San Francisco, CA 94016" -193885,Macbook Pro Laptop,1,1700,04/16/19 08:47,"837 6th St, Austin, TX 73301" -193886,AA Batteries (4-pack),1,3.84,04/19/19 22:41,"865 2nd St, Boston, MA 02215" -193887,Apple Airpods Headphones,1,150,04/15/19 17:16,"202 North St, San Francisco, CA 94016" -193888,Wired Headphones,1,11.99,04/17/19 12:16,"671 Park St, Seattle, WA 98101" -193889,Apple Airpods Headphones,1,150,04/02/19 06:38,"354 12th St, Boston, MA 02215" -193890,AAA Batteries (4-pack),1,2.99,04/23/19 09:19,"154 River St, San Francisco, CA 94016" -193891,AA Batteries (4-pack),2,3.84,04/05/19 20:09,"525 12th St, San Francisco, CA 94016" -193892,Wired Headphones,1,11.99,04/27/19 10:20,"998 Madison St, Atlanta, GA 30301" -193893,AA Batteries (4-pack),1,3.84,04/19/19 13:38,"320 Lincoln St, Boston, MA 02215" -193894,34in Ultrawide Monitor,1,379.99,04/29/19 16:18,"324 10th St, San Francisco, CA 94016" -193895,Apple Airpods Headphones,1,150,04/19/19 10:35,"847 Hickory St, Seattle, WA 98101" -193896,USB-C Charging Cable,1,11.95,04/08/19 11:03,"546 6th St, Austin, TX 73301" -193897,Macbook Pro Laptop,1,1700,04/16/19 19:19,"489 Chestnut St, Los Angeles, CA 90001" -193898,Apple Airpods Headphones,1,150,04/21/19 15:38,"679 North St, Portland, OR 97035" -193899,Bose SoundSport Headphones,1,99.99,04/25/19 23:10,"590 Ridge St, Dallas, TX 75001" -193900,USB-C Charging Cable,1,11.95,04/10/19 10:36,"105 14th St, New York City, NY 10001" -193901,Apple Airpods Headphones,1,150,04/04/19 18:16,"985 10th St, Boston, MA 02215" -193902,34in Ultrawide Monitor,1,379.99,04/09/19 13:32,"986 North St, New York City, NY 10001" -193903,iPhone,1,700,04/06/19 11:40,"335 12th St, Seattle, WA 98101" -193903,Apple Airpods Headphones,1,150,04/06/19 11:40,"335 12th St, Seattle, WA 98101" -193904,USB-C Charging Cable,1,11.95,04/16/19 19:30,"30 Lake St, Portland, OR 97035" -193905,USB-C Charging Cable,1,11.95,04/08/19 09:45,"707 5th St, Seattle, WA 98101" -193906,Apple Airpods Headphones,1,150,04/16/19 20:06,"109 Main St, New York City, NY 10001" -193907,Lightning Charging Cable,1,14.95,04/28/19 22:31,"695 West St, Los Angeles, CA 90001" -193908,Lightning Charging Cable,1,14.95,04/04/19 11:58,"991 Elm St, Boston, MA 02215" -193909,AA Batteries (4-pack),1,3.84,04/26/19 14:21,"274 Wilson St, Atlanta, GA 30301" -193910,AA Batteries (4-pack),1,3.84,04/28/19 23:02,"816 Elm St, Los Angeles, CA 90001" -193911,Lightning Charging Cable,1,14.95,04/21/19 00:03,"459 Maple St, Los Angeles, CA 90001" -193912,34in Ultrawide Monitor,1,379.99,04/06/19 09:03,"230 Washington St, New York City, NY 10001" -193913,34in Ultrawide Monitor,1,379.99,04/04/19 21:31,"117 Main St, Boston, MA 02215" -193914,USB-C Charging Cable,1,11.95,04/20/19 10:23,"63 Center St, San Francisco, CA 94016" -193915,USB-C Charging Cable,1,11.95,04/15/19 12:30,"787 North St, Atlanta, GA 30301" -193916,20in Monitor,1,109.99,04/18/19 12:59,"653 Cherry St, Dallas, TX 75001" -193916,20in Monitor,1,109.99,04/18/19 12:59,"653 Cherry St, Dallas, TX 75001" -193917,Flatscreen TV,1,300,04/01/19 21:41,"601 Cherry St, San Francisco, CA 94016" -193918,27in FHD Monitor,1,149.99,04/10/19 19:21,"716 Madison St, Seattle, WA 98101" -193919,AAA Batteries (4-pack),1,2.99,04/10/19 16:58,"194 Hill St, Los Angeles, CA 90001" -193920,Apple Airpods Headphones,1,150,04/22/19 12:22,"376 Sunset St, San Francisco, CA 94016" -193921,AAA Batteries (4-pack),1,2.99,04/07/19 10:07,"984 13th St, San Francisco, CA 94016" -193922,27in FHD Monitor,1,149.99,04/19/19 21:32,"445 Jackson St, San Francisco, CA 94016" -193923,27in 4K Gaming Monitor,1,389.99,04/23/19 18:38,"65 6th St, San Francisco, CA 94016" -193924,Lightning Charging Cable,1,14.95,04/27/19 19:05,"52 Sunset St, Portland, OR 97035" -193925,AA Batteries (4-pack),1,3.84,04/20/19 03:28,"948 Hill St, Los Angeles, CA 90001" -193926,Apple Airpods Headphones,1,150,04/05/19 00:58,"977 Walnut St, Atlanta, GA 30301" -193927,iPhone,1,700,04/09/19 21:10,"680 North St, San Francisco, CA 94016" -193927,Apple Airpods Headphones,1,150,04/09/19 21:10,"680 North St, San Francisco, CA 94016" -193928,27in 4K Gaming Monitor,1,389.99,04/09/19 18:02,"233 Center St, San Francisco, CA 94016" -193929,Flatscreen TV,1,300,04/17/19 10:07,"147 2nd St, New York City, NY 10001" -193930,AA Batteries (4-pack),2,3.84,04/09/19 08:30,"540 Meadow St, New York City, NY 10001" -193931,Lightning Charging Cable,1,14.95,04/11/19 17:01,"248 13th St, Boston, MA 02215" -193932,Lightning Charging Cable,1,14.95,04/30/19 01:10,"118 Spruce St, San Francisco, CA 94016" -193933,iPhone,1,700,04/12/19 11:53,"172 Hill St, Austin, TX 73301" -193934,Bose SoundSport Headphones,1,99.99,04/10/19 10:19,"436 West St, New York City, NY 10001" -193935,USB-C Charging Cable,1,11.95,04/15/19 14:59,"706 Ridge St, San Francisco, CA 94016" -193936,AA Batteries (4-pack),2,3.84,04/23/19 10:51,"587 West St, San Francisco, CA 94016" -193937,USB-C Charging Cable,1,11.95,04/20/19 19:35,"345 Chestnut St, San Francisco, CA 94016" -193938,USB-C Charging Cable,1,11.95,04/05/19 23:41,"546 Center St, San Francisco, CA 94016" -193939,USB-C Charging Cable,1,11.95,04/04/19 10:09,"491 4th St, San Francisco, CA 94016" -193940,USB-C Charging Cable,1,11.95,04/04/19 10:00,"566 Lakeview St, Los Angeles, CA 90001" -193941,Lightning Charging Cable,1,14.95,04/06/19 20:09,"446 Sunset St, San Francisco, CA 94016" -193942,Wired Headphones,1,11.99,04/24/19 21:06,"468 Hill St, San Francisco, CA 94016" -193943,AA Batteries (4-pack),1,3.84,04/18/19 22:53,"682 10th St, Atlanta, GA 30301" -193944,Flatscreen TV,1,300,04/24/19 10:46,"261 Lake St, San Francisco, CA 94016" -193945,Lightning Charging Cable,2,14.95,04/06/19 18:26,"965 Elm St, San Francisco, CA 94016" -193946,27in 4K Gaming Monitor,1,389.99,04/03/19 18:26,"728 Church St, Boston, MA 02215" -193947,Apple Airpods Headphones,1,150,04/20/19 19:18,"874 Hill St, San Francisco, CA 94016" -193948,Bose SoundSport Headphones,1,99.99,04/10/19 09:33,"405 Madison St, Los Angeles, CA 90001" -193949,AAA Batteries (4-pack),4,2.99,04/21/19 22:17,"965 Main St, Boston, MA 02215" -193950,AAA Batteries (4-pack),3,2.99,04/15/19 16:00,"812 Meadow St, New York City, NY 10001" -193951,USB-C Charging Cable,1,11.95,04/02/19 12:56,"656 Adams St, Boston, MA 02215" -193952,LG Dryer,1,600.0,04/15/19 12:08,"548 Dogwood St, Dallas, TX 75001" -193953,Lightning Charging Cable,1,14.95,04/04/19 13:56,"493 Lincoln St, New York City, NY 10001" -193954,USB-C Charging Cable,1,11.95,04/14/19 19:00,"940 Jefferson St, San Francisco, CA 94016" -193955,Wired Headphones,1,11.99,04/06/19 14:58,"971 Highland St, San Francisco, CA 94016" -193956,Lightning Charging Cable,1,14.95,04/21/19 06:07,"970 Church St, San Francisco, CA 94016" -193957,Wired Headphones,1,11.99,04/15/19 08:37,"977 Center St, Seattle, WA 98101" -193958,AA Batteries (4-pack),3,3.84,04/26/19 21:55,"55 1st St, San Francisco, CA 94016" -193959,Wired Headphones,1,11.99,04/29/19 08:41,"429 Walnut St, Atlanta, GA 30301" -193960,Vareebadd Phone,1,400,04/03/19 21:25,"788 Madison St, Portland, ME 04101" -193961,Google Phone,1,600,04/25/19 10:06,"544 Sunset St, San Francisco, CA 94016" -193961,USB-C Charging Cable,1,11.95,04/25/19 10:06,"544 Sunset St, San Francisco, CA 94016" -193961,Wired Headphones,1,11.99,04/25/19 10:06,"544 Sunset St, San Francisco, CA 94016" -193962,Apple Airpods Headphones,1,150,04/29/19 20:50,"967 Forest St, New York City, NY 10001" -193963,Apple Airpods Headphones,1,150,04/08/19 13:47,"735 Main St, New York City, NY 10001" -193964,27in FHD Monitor,1,149.99,04/22/19 15:49,"448 Walnut St, Portland, OR 97035" -193965,27in 4K Gaming Monitor,1,389.99,04/17/19 15:48,"775 Highland St, Los Angeles, CA 90001" -193966,USB-C Charging Cable,4,11.95,04/21/19 20:35,"887 Highland St, New York City, NY 10001" -193967,USB-C Charging Cable,1,11.95,04/24/19 16:24,"569 Willow St, Atlanta, GA 30301" -193968,Google Phone,1,600,04/02/19 18:40,"222 4th St, Boston, MA 02215" -193968,USB-C Charging Cable,1,11.95,04/02/19 18:40,"222 4th St, Boston, MA 02215" -193969,27in 4K Gaming Monitor,1,389.99,04/20/19 00:30,"653 14th St, Los Angeles, CA 90001" -193970,Apple Airpods Headphones,1,150,04/04/19 19:42,"102 12th St, New York City, NY 10001" -193971,AAA Batteries (4-pack),1,2.99,04/18/19 17:11,"77 West St, Boston, MA 02215" -193972,Macbook Pro Laptop,1,1700,04/11/19 16:23,"334 5th St, San Francisco, CA 94016" -193973,27in FHD Monitor,1,149.99,04/04/19 16:52,"546 10th St, San Francisco, CA 94016" -193974,Bose SoundSport Headphones,1,99.99,04/08/19 16:17,"188 6th St, Portland, ME 04101" -193975,Apple Airpods Headphones,1,150,04/11/19 19:43,"202 Chestnut St, Dallas, TX 75001" -193976,AAA Batteries (4-pack),1,2.99,04/03/19 23:50,"647 Pine St, Los Angeles, CA 90001" -193977,AAA Batteries (4-pack),1,2.99,04/07/19 20:43,"181 Cedar St, Boston, MA 02215" -193978,USB-C Charging Cable,1,11.95,04/25/19 09:48,"241 14th St, San Francisco, CA 94016" -193979,AAA Batteries (4-pack),2,2.99,04/22/19 12:15,"692 Lakeview St, New York City, NY 10001" -193980,20in Monitor,1,109.99,04/09/19 13:21,"924 13th St, San Francisco, CA 94016" -193981,27in 4K Gaming Monitor,1,389.99,04/11/19 22:30,"300 Pine St, Portland, OR 97035" -193982,Wired Headphones,1,11.99,04/30/19 10:32,"683 Main St, New York City, NY 10001" -193983,Lightning Charging Cable,1,14.95,04/09/19 12:09,"878 12th St, Dallas, TX 75001" -193984,USB-C Charging Cable,1,11.95,04/16/19 18:37,"533 Sunset St, San Francisco, CA 94016" -193985,AAA Batteries (4-pack),2,2.99,04/10/19 19:33,"745 Wilson St, Atlanta, GA 30301" -193986,Vareebadd Phone,1,400,04/11/19 08:30,"969 Hickory St, Dallas, TX 75001" -193987,AAA Batteries (4-pack),3,2.99,04/21/19 15:35,"359 Forest St, Boston, MA 02215" -193988,34in Ultrawide Monitor,1,379.99,04/18/19 12:21,"570 South St, Atlanta, GA 30301" -193989,AAA Batteries (4-pack),2,2.99,04/01/19 10:57,"382 Adams St, Boston, MA 02215" -193990,USB-C Charging Cable,1,11.95,04/28/19 16:32,"107 9th St, Los Angeles, CA 90001" -193991,Bose SoundSport Headphones,1,99.99,04/01/19 12:33,"926 West St, Atlanta, GA 30301" -193992,AA Batteries (4-pack),1,3.84,04/01/19 06:27,"209 14th St, New York City, NY 10001" -193993,Lightning Charging Cable,1,14.95,04/13/19 15:13,"807 13th St, Atlanta, GA 30301" -193994,Google Phone,1,600,04/28/19 20:34,"45 Dogwood St, Los Angeles, CA 90001" -193994,USB-C Charging Cable,1,11.95,04/28/19 20:34,"45 Dogwood St, Los Angeles, CA 90001" -193995,AA Batteries (4-pack),1,3.84,04/19/19 18:02,"957 Adams St, Los Angeles, CA 90001" -193996,AAA Batteries (4-pack),1,2.99,04/08/19 21:00,"600 Ridge St, San Francisco, CA 94016" -193997,USB-C Charging Cable,1,11.95,04/16/19 03:00,"764 Hill St, New York City, NY 10001" -193998,AA Batteries (4-pack),2,3.84,04/27/19 01:06,"921 Lake St, San Francisco, CA 94016" -193999,Apple Airpods Headphones,1,150,04/12/19 22:10,"607 2nd St, Los Angeles, CA 90001" -194000,USB-C Charging Cable,1,11.95,04/23/19 12:19,"648 Lakeview St, Dallas, TX 75001" -194001,Bose SoundSport Headphones,1,99.99,04/04/19 10:21,"1 Hill St, Los Angeles, CA 90001" -194002,AAA Batteries (4-pack),1,2.99,04/01/19 13:26,"526 Willow St, Boston, MA 02215" -194003,Apple Airpods Headphones,1,150,04/18/19 11:38,"189 Lincoln St, Boston, MA 02215" -194004,27in FHD Monitor,1,149.99,04/28/19 14:59,"684 West St, San Francisco, CA 94016" -194005,iPhone,1,700,04/02/19 22:36,"76 Sunset St, San Francisco, CA 94016" -194006,20in Monitor,1,109.99,04/20/19 14:58,"632 Chestnut St, Dallas, TX 75001" -194007,Flatscreen TV,1,300,04/17/19 17:25,"375 Jefferson St, Los Angeles, CA 90001" -194008,AA Batteries (4-pack),1,3.84,04/12/19 18:09,"425 Elm St, San Francisco, CA 94016" -194008,Wired Headphones,1,11.99,04/12/19 18:09,"425 Elm St, San Francisco, CA 94016" -194009,27in FHD Monitor,1,149.99,04/21/19 10:45,"825 North St, Portland, OR 97035" -194010,Bose SoundSport Headphones,1,99.99,04/23/19 22:21,"663 8th St, Boston, MA 02215" -194011,Lightning Charging Cable,1,14.95,04/26/19 12:25,"974 River St, Los Angeles, CA 90001" -194012,AA Batteries (4-pack),1,3.84,04/08/19 12:19,"718 Pine St, Dallas, TX 75001" -194013,AAA Batteries (4-pack),3,2.99,04/30/19 22:56,"396 Sunset St, Seattle, WA 98101" -194014,Lightning Charging Cable,1,14.95,04/08/19 16:10,"864 Elm St, Portland, ME 04101" -194015,USB-C Charging Cable,1,11.95,04/25/19 15:46,"418 Adams St, Dallas, TX 75001" -194016,Wired Headphones,1,11.99,04/27/19 13:39,"506 Walnut St, Portland, OR 97035" -194017,Flatscreen TV,1,300,04/21/19 10:40,"446 Dogwood St, San Francisco, CA 94016" -194018,27in FHD Monitor,1,149.99,04/06/19 19:31,"221 Sunset St, San Francisco, CA 94016" -194019,Macbook Pro Laptop,1,1700,04/20/19 11:44,"418 Maple St, Seattle, WA 98101" -194020,Wired Headphones,1,11.99,04/02/19 14:30,"254 2nd St, Los Angeles, CA 90001" -194021,Google Phone,1,600,04/29/19 14:50,"203 Washington St, Boston, MA 02215" -194021,Wired Headphones,1,11.99,04/29/19 14:50,"203 Washington St, Boston, MA 02215" -194022,20in Monitor,1,109.99,04/13/19 12:38,"938 Center St, San Francisco, CA 94016" -194023,Lightning Charging Cable,1,14.95,04/27/19 18:41,"565 Dogwood St, New York City, NY 10001" -194024,AA Batteries (4-pack),2,3.84,04/17/19 00:57,"785 7th St, San Francisco, CA 94016" -194025,Apple Airpods Headphones,1,150,04/20/19 12:06,"872 Jefferson St, Seattle, WA 98101" -194026,USB-C Charging Cable,1,11.95,04/06/19 15:55,"692 Ridge St, Boston, MA 02215" -194027,AAA Batteries (4-pack),1,2.99,04/21/19 10:09,"16 Cherry St, Seattle, WA 98101" -194028,ThinkPad Laptop,1,999.99,04/15/19 00:47,"24 Main St, New York City, NY 10001" -194029,Wired Headphones,1,11.99,04/09/19 20:22,"212 Madison St, New York City, NY 10001" -194030,Lightning Charging Cable,1,14.95,04/15/19 08:55,"957 Jefferson St, Boston, MA 02215" -194031,Bose SoundSport Headphones,1,99.99,04/17/19 22:19,"82 Jefferson St, Austin, TX 73301" -194032,AAA Batteries (4-pack),1,2.99,04/21/19 13:30,"605 Chestnut St, San Francisco, CA 94016" -194033,AAA Batteries (4-pack),1,2.99,04/15/19 06:44,"161 12th St, New York City, NY 10001" -194034,USB-C Charging Cable,2,11.95,04/30/19 18:33,"573 7th St, Portland, OR 97035" -194035,27in 4K Gaming Monitor,1,389.99,04/27/19 17:19,"633 Dogwood St, Dallas, TX 75001" -194036,Lightning Charging Cable,1,14.95,04/21/19 10:11,"306 Adams St, San Francisco, CA 94016" -194037,27in FHD Monitor,1,149.99,04/17/19 22:15,"123 Highland St, Atlanta, GA 30301" -194038,USB-C Charging Cable,1,11.95,04/23/19 09:09,"163 Lincoln St, San Francisco, CA 94016" -194039,USB-C Charging Cable,2,11.95,04/28/19 08:01,"372 Main St, New York City, NY 10001" -194040,USB-C Charging Cable,1,11.95,04/10/19 21:27,"326 Adams St, San Francisco, CA 94016" -194041,Apple Airpods Headphones,1,150,04/12/19 18:34,"365 Cedar St, Atlanta, GA 30301" -194042,Google Phone,1,600,04/22/19 21:42,"992 4th St, Portland, ME 04101" -194043,Wired Headphones,1,11.99,04/18/19 13:19,"357 Willow St, Atlanta, GA 30301" -194044,AA Batteries (4-pack),1,3.84,04/06/19 09:13,"680 10th St, Atlanta, GA 30301" -194045,27in 4K Gaming Monitor,1,389.99,04/05/19 15:22,"331 1st St, Atlanta, GA 30301" -194046,AAA Batteries (4-pack),1,2.99,04/12/19 17:01,"317 Pine St, Atlanta, GA 30301" -194047,AA Batteries (4-pack),1,3.84,04/30/19 08:10,"496 Adams St, Seattle, WA 98101" -194048,USB-C Charging Cable,1,11.95,04/17/19 11:24,"480 South St, San Francisco, CA 94016" -194049,Wired Headphones,1,11.99,04/24/19 12:07,"751 10th St, Atlanta, GA 30301" -194050,AA Batteries (4-pack),1,3.84,04/27/19 00:27,"997 9th St, San Francisco, CA 94016" -194050,USB-C Charging Cable,1,11.95,04/27/19 00:27,"997 9th St, San Francisco, CA 94016" -194051,34in Ultrawide Monitor,1,379.99,04/15/19 22:05,"812 13th St, Los Angeles, CA 90001" -194052,Apple Airpods Headphones,1,150,04/18/19 11:40,"252 13th St, Los Angeles, CA 90001" -194053,AA Batteries (4-pack),1,3.84,04/04/19 18:58,"494 Adams St, Boston, MA 02215" -194054,iPhone,1,700,04/21/19 20:18,"533 14th St, Los Angeles, CA 90001" -194055,34in Ultrawide Monitor,1,379.99,04/20/19 08:57,"620 Meadow St, New York City, NY 10001" -194056,iPhone,1,700,04/10/19 10:05,"280 7th St, San Francisco, CA 94016" -194056,Lightning Charging Cable,1,14.95,04/10/19 10:05,"280 7th St, San Francisco, CA 94016" -194057,LG Washing Machine,1,600.0,04/08/19 12:49,"967 Forest St, San Francisco, CA 94016" -194058,AAA Batteries (4-pack),2,2.99,04/29/19 09:46,"684 Hill St, New York City, NY 10001" -194059,USB-C Charging Cable,1,11.95,04/24/19 09:20,"405 Park St, Dallas, TX 75001" -194060,Wired Headphones,1,11.99,04/16/19 13:30,"384 12th St, San Francisco, CA 94016" -194061,iPhone,1,700,04/14/19 20:22,"209 6th St, Atlanta, GA 30301" -194061,Lightning Charging Cable,3,14.95,04/14/19 20:22,"209 6th St, Atlanta, GA 30301" -194062,AAA Batteries (4-pack),2,2.99,04/19/19 19:52,"743 Highland St, Boston, MA 02215" -194063,27in 4K Gaming Monitor,1,389.99,04/10/19 14:55,"933 Highland St, San Francisco, CA 94016" -194064,Apple Airpods Headphones,1,150,04/29/19 19:21,"945 Walnut St, Los Angeles, CA 90001" -194065,27in FHD Monitor,1,149.99,04/24/19 13:47,"881 Cherry St, New York City, NY 10001" -194066,Lightning Charging Cable,1,14.95,04/09/19 01:16,"165 1st St, Portland, OR 97035" -194067,iPhone,1,700,05/01/19 04:25,"291 North St, San Francisco, CA 94016" -194068,Apple Airpods Headphones,1,150,04/02/19 20:54,"805 North St, Boston, MA 02215" -194069,AA Batteries (4-pack),1,3.84,04/12/19 23:33,"807 Johnson St, Boston, MA 02215" -194070,27in FHD Monitor,1,149.99,04/09/19 22:51,"942 Dogwood St, New York City, NY 10001" -194071,USB-C Charging Cable,1,11.95,04/14/19 16:55,"568 Washington St, San Francisco, CA 94016" -194072,34in Ultrawide Monitor,1,379.99,04/18/19 16:41,"999 Madison St, Seattle, WA 98101" -194073,Lightning Charging Cable,2,14.95,04/14/19 07:29,"144 Cherry St, Los Angeles, CA 90001" -194074,AA Batteries (4-pack),1,3.84,04/02/19 16:26,"169 Lake St, Boston, MA 02215" -194075,AA Batteries (4-pack),1,3.84,04/28/19 19:02,"981 Washington St, San Francisco, CA 94016" -194076,Lightning Charging Cable,1,14.95,04/17/19 12:57,"537 Dogwood St, Atlanta, GA 30301" -194077,AA Batteries (4-pack),3,3.84,04/11/19 09:46,"620 West St, Dallas, TX 75001" -194078,Flatscreen TV,1,300,04/29/19 10:11,"692 Lincoln St, Atlanta, GA 30301" -194079,Apple Airpods Headphones,1,150,04/27/19 15:12,"956 Ridge St, Los Angeles, CA 90001" -194080,USB-C Charging Cable,2,11.95,04/09/19 14:08,"517 Walnut St, Atlanta, GA 30301" -194081,AAA Batteries (4-pack),1,2.99,04/25/19 14:19,"110 Lake St, San Francisco, CA 94016" -194082,Bose SoundSport Headphones,1,99.99,04/27/19 13:37,"792 7th St, Boston, MA 02215" -194083,USB-C Charging Cable,1,11.95,04/23/19 22:33,"85 1st St, Los Angeles, CA 90001" -194084,Apple Airpods Headphones,1,150,04/26/19 22:11,"818 12th St, Boston, MA 02215" -194085,Wired Headphones,1,11.99,04/17/19 20:12,"315 12th St, Los Angeles, CA 90001" -194086,Google Phone,1,600,04/28/19 08:50,"981 Dogwood St, Los Angeles, CA 90001" -194087,USB-C Charging Cable,2,11.95,04/26/19 11:44,"35 13th St, Portland, OR 97035" -194088,AAA Batteries (4-pack),2,2.99,04/04/19 18:46,"718 12th St, Austin, TX 73301" -194089,USB-C Charging Cable,1,11.95,04/09/19 17:15,"458 11th St, San Francisco, CA 94016" -194090,Google Phone,1,600,04/08/19 17:11,"177 Jackson St, Los Angeles, CA 90001" -194091,AA Batteries (4-pack),1,3.84,04/15/19 16:02,"311 Forest St, Austin, TX 73301" -194092,AAA Batteries (4-pack),2,2.99,04/28/19 14:36,"347 Sunset St, San Francisco, CA 94016" -194093,AA Batteries (4-pack),1,3.84,04/14/19 15:09,"835 Lake St, Portland, OR 97035" -194094,Lightning Charging Cable,1,14.95,04/18/19 11:08,"354 North St, Boston, MA 02215" -236670,Wired Headphones,2,11.99,08/31/19 22:21,"359 Spruce St, Seattle, WA 98101" -236671,Bose SoundSport Headphones,1,99.99,08/15/19 15:11,"492 Ridge St, Dallas, TX 75001" -236672,iPhone,1,700.0,08/06/19 14:40,"149 7th St, Portland, OR 97035" -236673,AA Batteries (4-pack),2,3.84,08/29/19 20:59,"631 2nd St, Los Angeles, CA 90001" -236674,AA Batteries (4-pack),2,3.84,08/15/19 19:53,"736 14th St, New York City, NY 10001" -236675,Wired Headphones,1,11.99,08/02/19 23:54,"470 Hill St, San Francisco, CA 94016" -236676,34in Ultrawide Monitor,1,379.99,08/04/19 19:52,"470 Cherry St, Los Angeles, CA 90001" -236677,20in Monitor,1,109.99,08/13/19 07:16,"918 6th St, San Francisco, CA 94016" -236678,Wired Headphones,1,11.99,08/25/19 20:11,"58 9th St, San Francisco, CA 94016" -236679,Macbook Pro Laptop,1,1700.0,08/07/19 15:43,"239 Spruce St, Los Angeles, CA 90001" -236680,LG Washing Machine,1,600.0,08/09/19 19:38,"967 Willow St, San Francisco, CA 94016" -236681,AA Batteries (4-pack),1,3.84,08/26/19 20:52,"295 1st St, Boston, MA 02215" -236682,AA Batteries (4-pack),1,3.84,08/19/19 12:40,"118 Johnson St, Portland, OR 97035" -236683,27in FHD Monitor,1,149.99,08/31/19 15:47,"196 West St, Dallas, TX 75001" -236684,Lightning Charging Cable,1,14.95,08/09/19 16:50,"669 12th St, New York City, NY 10001" -236685,Apple Airpods Headphones,1,150.0,08/23/19 19:29,"238 Highland St, Atlanta, GA 30301" -236686,AAA Batteries (4-pack),1,2.99,08/15/19 19:13,"766 Maple St, Dallas, TX 75001" -236687,USB-C Charging Cable,1,11.95,08/23/19 12:54,"668 Meadow St, New York City, NY 10001" -236688,34in Ultrawide Monitor,1,379.99,08/08/19 16:06,"821 7th St, Los Angeles, CA 90001" -236689,AAA Batteries (4-pack),1,2.99,08/21/19 10:55,"13 Cedar St, San Francisco, CA 94016" -236690,AAA Batteries (4-pack),1,2.99,08/08/19 12:00,"139 River St, San Francisco, CA 94016" -236691,USB-C Charging Cable,1,11.95,08/23/19 07:34,"916 Meadow St, Boston, MA 02215" -236692,USB-C Charging Cable,1,11.95,08/20/19 13:26,"567 Center St, San Francisco, CA 94016" -236693,27in 4K Gaming Monitor,1,389.99,08/12/19 21:57,"173 West St, Portland, OR 97035" -236694,Apple Airpods Headphones,1,150.0,08/14/19 23:45,"854 Sunset St, New York City, NY 10001" -236695,Bose SoundSport Headphones,1,99.99,08/04/19 19:06,"905 Pine St, San Francisco, CA 94016" -236696,Lightning Charging Cable,1,14.95,08/21/19 00:48,"530 Church St, New York City, NY 10001" -236697,AA Batteries (4-pack),1,3.84,08/25/19 23:13,"246 Willow St, San Francisco, CA 94016" -236698,Wired Headphones,1,11.99,08/07/19 13:40,"526 Chestnut St, Dallas, TX 75001" -236699,AA Batteries (4-pack),2,3.84,08/20/19 21:07,"763 Hill St, Atlanta, GA 30301" -236700,Wired Headphones,1,11.99,08/09/19 08:55,"534 North St, Los Angeles, CA 90001" -236701,Apple Airpods Headphones,1,150.0,08/06/19 10:36,"518 Main St, San Francisco, CA 94016" -236702,ThinkPad Laptop,1,999.99,08/23/19 11:10,"615 11th St, Dallas, TX 75001" -236703,Bose SoundSport Headphones,1,99.99,08/08/19 06:09,"861 Adams St, Atlanta, GA 30301" -236704,Flatscreen TV,1,300.0,08/11/19 08:52,"415 Ridge St, San Francisco, CA 94016" -236705,AA Batteries (4-pack),3,3.84,08/11/19 22:21,"27 North St, Austin, TX 73301" -236706,Google Phone,1,600.0,08/14/19 14:19,"621 North St, San Francisco, CA 94016" -236707,AA Batteries (4-pack),2,3.84,08/14/19 14:06,"306 West St, Los Angeles, CA 90001" -236708,Apple Airpods Headphones,1,150.0,08/27/19 14:00,"353 Madison St, San Francisco, CA 94016" -236709,iPhone,1,700.0,08/04/19 09:00,"869 Jackson St, San Francisco, CA 94016" -236710,Macbook Pro Laptop,1,1700.0,08/04/19 02:46,"654 Chestnut St, Austin, TX 73301" -236711,Macbook Pro Laptop,1,1700.0,08/28/19 17:28,"627 Lincoln St, Dallas, TX 75001" -236712,AA Batteries (4-pack),2,3.84,08/30/19 07:14,"548 Jefferson St, Boston, MA 02215" -236713,27in FHD Monitor,1,149.99,08/05/19 20:00,"852 8th St, San Francisco, CA 94016" -236714,27in 4K Gaming Monitor,1,389.99,08/30/19 09:07,"194 Dogwood St, Atlanta, GA 30301" -236715,27in 4K Gaming Monitor,1,389.99,08/23/19 11:20,"628 Jefferson St, Portland, OR 97035" -236716,AA Batteries (4-pack),2,3.84,08/17/19 20:12,"84 Cedar St, San Francisco, CA 94016" -236716,USB-C Charging Cable,1,11.95,08/17/19 20:12,"84 Cedar St, San Francisco, CA 94016" -236717,Google Phone,1,600.0,08/11/19 12:26,"394 12th St, Atlanta, GA 30301" -236718,Apple Airpods Headphones,1,150.0,08/10/19 13:48,"499 7th St, San Francisco, CA 94016" -236719,AAA Batteries (4-pack),1,2.99,08/05/19 12:09,"948 2nd St, Atlanta, GA 30301" -236720,Apple Airpods Headphones,1,150.0,08/24/19 16:49,"881 10th St, Dallas, TX 75001" -236721,Apple Airpods Headphones,1,150.0,08/02/19 12:24,"198 Highland St, Seattle, WA 98101" -236722,AAA Batteries (4-pack),2,2.99,08/07/19 12:42,"241 6th St, San Francisco, CA 94016" -236723,Apple Airpods Headphones,1,150.0,08/01/19 18:56,"654 Pine St, New York City, NY 10001" -236724,Apple Airpods Headphones,1,150.0,08/21/19 01:08,"238 Hickory St, San Francisco, CA 94016" -236725,AAA Batteries (4-pack),3,2.99,08/24/19 20:15,"590 Lakeview St, San Francisco, CA 94016" -236726,AA Batteries (4-pack),1,3.84,08/29/19 09:25,"434 Church St, Boston, MA 02215" -236727,USB-C Charging Cable,1,11.95,08/19/19 08:10,"557 North St, New York City, NY 10001" -236728,ThinkPad Laptop,1,999.99,08/10/19 11:21,"526 North St, Portland, ME 04101" -236729,iPhone,1,700.0,08/09/19 09:28,"635 Lake St, San Francisco, CA 94016" -236729,Apple Airpods Headphones,1,150.0,08/09/19 09:28,"635 Lake St, San Francisco, CA 94016" -236730,Google Phone,1,600.0,08/02/19 10:17,"445 Lincoln St, New York City, NY 10001" -236730,Wired Headphones,1,11.99,08/02/19 10:17,"445 Lincoln St, New York City, NY 10001" -236731,AAA Batteries (4-pack),1,2.99,08/29/19 12:40,"62 Center St, San Francisco, CA 94016" -236732,Flatscreen TV,1,300.0,08/09/19 13:35,"328 North St, Dallas, TX 75001" -236733,Apple Airpods Headphones,1,150.0,08/08/19 10:21,"467 Hill St, Dallas, TX 75001" -236734,AA Batteries (4-pack),2,3.84,08/14/19 16:52,"405 Chestnut St, Dallas, TX 75001" -236735,Apple Airpods Headphones,1,150.0,08/18/19 22:08,"599 North St, Boston, MA 02215" -236736,Wired Headphones,1,11.99,08/03/19 17:36,"754 Chestnut St, Los Angeles, CA 90001" -236737,AA Batteries (4-pack),1,3.84,08/24/19 08:51,"908 Park St, San Francisco, CA 94016" -236738,Flatscreen TV,1,300.0,08/30/19 15:07,"672 7th St, New York City, NY 10001" -236739,USB-C Charging Cable,1,11.95,08/31/19 12:46,"949 Church St, Boston, MA 02215" -236740,USB-C Charging Cable,1,11.95,08/12/19 07:30,"950 13th St, San Francisco, CA 94016" -236741,USB-C Charging Cable,1,11.95,08/08/19 12:39,"26 Washington St, Boston, MA 02215" -236742,Macbook Pro Laptop,1,1700.0,08/11/19 01:47,"701 1st St, San Francisco, CA 94016" -236743,Lightning Charging Cable,1,14.95,08/27/19 12:55,"826 Forest St, Los Angeles, CA 90001" -236744,AAA Batteries (4-pack),1,2.99,08/09/19 20:21,"11 Wilson St, Atlanta, GA 30301" -236745,AAA Batteries (4-pack),1,2.99,08/17/19 21:01,"850 Ridge St, San Francisco, CA 94016" -236746,AAA Batteries (4-pack),2,2.99,08/13/19 09:52,"585 Spruce St, Los Angeles, CA 90001" -236747,AAA Batteries (4-pack),1,2.99,08/02/19 15:19,"255 Cherry St, New York City, NY 10001" -236748,Bose SoundSport Headphones,1,99.99,08/19/19 16:40,"977 13th St, New York City, NY 10001" -236749,AAA Batteries (4-pack),1,2.99,08/30/19 20:13,"498 Johnson St, Austin, TX 73301" -236750,Flatscreen TV,1,300.0,08/25/19 08:37,"806 Ridge St, Boston, MA 02215" -236751,27in 4K Gaming Monitor,1,389.99,08/03/19 09:18,"534 Washington St, Portland, ME 04101" -236752,27in 4K Gaming Monitor,1,389.99,08/27/19 21:41,"765 Lakeview St, Austin, TX 73301" -236753,Lightning Charging Cable,1,14.95,08/18/19 19:28,"501 Lakeview St, New York City, NY 10001" -236754,Lightning Charging Cable,1,14.95,08/13/19 10:29,"872 Ridge St, Seattle, WA 98101" -236755,Wired Headphones,1,11.99,08/19/19 13:59,"902 2nd St, Dallas, TX 75001" -236756,AA Batteries (4-pack),1,3.84,08/31/19 18:36,"444 West St, Boston, MA 02215" -236757,USB-C Charging Cable,1,11.95,08/07/19 19:28,"969 Spruce St, Seattle, WA 98101" -236758,Flatscreen TV,1,300.0,08/18/19 13:55,"155 Hickory St, Los Angeles, CA 90001" -236759,Bose SoundSport Headphones,1,99.99,08/27/19 12:09,"848 5th St, New York City, NY 10001" -236760,AA Batteries (4-pack),1,3.84,08/29/19 17:02,"35 Spruce St, Boston, MA 02215" -236761,27in FHD Monitor,1,149.99,08/19/19 21:43,"148 Chestnut St, San Francisco, CA 94016" -236762,AAA Batteries (4-pack),1,2.99,08/16/19 14:25,"632 Cherry St, San Francisco, CA 94016" -236763,Apple Airpods Headphones,1,150.0,08/06/19 10:23,"288 Lake St, Seattle, WA 98101" -236764,Bose SoundSport Headphones,1,99.99,08/22/19 15:48,"663 Elm St, Boston, MA 02215" -236765,Wired Headphones,1,11.99,08/24/19 10:48,"731 10th St, San Francisco, CA 94016" -236766,Wired Headphones,1,11.99,08/19/19 17:13,"287 Highland St, Seattle, WA 98101" -236767,iPhone,1,700.0,08/09/19 13:51,"41 Adams St, Dallas, TX 75001" -236768,AA Batteries (4-pack),2,3.84,08/27/19 10:21,"352 1st St, Portland, OR 97035" -236769,AA Batteries (4-pack),1,3.84,08/25/19 13:18,"270 Cherry St, Dallas, TX 75001" -236770,Wired Headphones,1,11.99,08/13/19 08:46,"796 Park St, San Francisco, CA 94016" -236771,Google Phone,1,600.0,08/07/19 18:04,"942 Elm St, Los Angeles, CA 90001" -236772,Apple Airpods Headphones,1,150.0,08/18/19 05:31,"61 Park St, Portland, OR 97035" -236773,Apple Airpods Headphones,1,150.0,08/20/19 20:16,"742 Forest St, Austin, TX 73301" -236774,AAA Batteries (4-pack),2,2.99,08/13/19 15:57,"634 Pine St, Austin, TX 73301" -236775,AAA Batteries (4-pack),2,2.99,08/06/19 08:25,"3 Dogwood St, New York City, NY 10001" -236776,Bose SoundSport Headphones,1,99.99,08/25/19 02:53,"729 Washington St, New York City, NY 10001" -236777,Lightning Charging Cable,1,14.95,08/29/19 13:25,"61 Park St, New York City, NY 10001" -236778,Wired Headphones,1,11.99,08/29/19 22:52,"625 Forest St, Dallas, TX 75001" -236779,27in FHD Monitor,1,149.99,08/29/19 09:31,"546 9th St, San Francisco, CA 94016" -236780,Lightning Charging Cable,1,14.95,08/18/19 18:50,"890 2nd St, Seattle, WA 98101" -236781,27in 4K Gaming Monitor,1,389.99,08/19/19 06:52,"707 Wilson St, Atlanta, GA 30301" -236782,USB-C Charging Cable,1,11.95,08/15/19 16:45,"366 Washington St, Boston, MA 02215" -236783,AA Batteries (4-pack),2,3.84,08/04/19 10:06,"350 Dogwood St, Boston, MA 02215" -236784,AAA Batteries (4-pack),1,2.99,08/29/19 13:17,"501 Maple St, Boston, MA 02215" -236785,Apple Airpods Headphones,1,150.0,08/22/19 19:17,"645 North St, Dallas, TX 75001" -236786,Lightning Charging Cable,1,14.95,08/06/19 08:41,"307 10th St, San Francisco, CA 94016" -236787,AAA Batteries (4-pack),1,2.99,08/27/19 14:06,"195 Wilson St, Boston, MA 02215" -236788,iPhone,1,700.0,08/21/19 12:09,"598 13th St, Los Angeles, CA 90001" -236789,Lightning Charging Cable,1,14.95,08/21/19 12:07,"377 South St, San Francisco, CA 94016" -236790,20in Monitor,2,109.99,08/21/19 21:28,"212 Hill St, San Francisco, CA 94016" -236791,27in FHD Monitor,1,149.99,08/06/19 17:53,"26 Jefferson St, Atlanta, GA 30301" -236792,Wired Headphones,1,11.99,08/22/19 14:38,"326 Johnson St, New York City, NY 10001" -236793,USB-C Charging Cable,1,11.95,08/12/19 12:01,"961 South St, Los Angeles, CA 90001" -236794,Wired Headphones,1,11.99,08/05/19 17:14,"588 Pine St, Dallas, TX 75001" -236795,AA Batteries (4-pack),4,3.84,08/13/19 18:02,"235 South St, Austin, TX 73301" -236796,Wired Headphones,1,11.99,08/15/19 16:14,"623 South St, Atlanta, GA 30301" -236797,Google Phone,1,600.0,08/16/19 18:45,"835 12th St, Los Angeles, CA 90001" -236798,Lightning Charging Cable,2,14.95,08/19/19 08:59,"614 7th St, Los Angeles, CA 90001" -236799,Google Phone,1,600.0,08/01/19 12:38,"309 2nd St, San Francisco, CA 94016" -236799,Wired Headphones,1,11.99,08/01/19 12:38,"309 2nd St, San Francisco, CA 94016" -236800,Lightning Charging Cable,1,14.95,08/21/19 15:02,"389 Highland St, Boston, MA 02215" -236801,USB-C Charging Cable,1,11.95,08/24/19 00:22,"43 Jackson St, Dallas, TX 75001" -236802,27in 4K Gaming Monitor,1,389.99,08/01/19 18:43,"668 9th St, Los Angeles, CA 90001" -236803,AA Batteries (4-pack),4,3.84,08/25/19 12:36,"124 Forest St, San Francisco, CA 94016" -236804,ThinkPad Laptop,1,999.99,08/06/19 23:10,"933 Center St, Los Angeles, CA 90001" -236805,USB-C Charging Cable,1,11.95,08/23/19 16:27,"445 10th St, New York City, NY 10001" -236806,USB-C Charging Cable,1,11.95,08/06/19 02:22,"828 Madison St, Boston, MA 02215" -236807,USB-C Charging Cable,1,11.95,08/27/19 20:49,"962 Highland St, Seattle, WA 98101" -236808,AA Batteries (4-pack),1,3.84,08/24/19 08:04,"782 12th St, New York City, NY 10001" -236809,Google Phone,1,600.0,08/01/19 20:53,"444 South St, Seattle, WA 98101" -236810,Lightning Charging Cable,1,14.95,08/23/19 07:47,"318 10th St, San Francisco, CA 94016" -236811,Wired Headphones,1,11.99,08/04/19 16:44,"352 Cherry St, San Francisco, CA 94016" -236812,Wired Headphones,1,11.99,08/25/19 19:48,"970 2nd St, Los Angeles, CA 90001" -236813,Lightning Charging Cable,1,14.95,08/04/19 15:29,"170 West St, Los Angeles, CA 90001" -236814,AAA Batteries (4-pack),2,2.99,08/14/19 19:24,"510 South St, San Francisco, CA 94016" -236815,27in FHD Monitor,1,149.99,08/28/19 17:55,"378 Adams St, Portland, ME 04101" -236816,USB-C Charging Cable,1,11.95,08/13/19 20:45,"179 Jackson St, New York City, NY 10001" -236817,Wired Headphones,1,11.99,08/04/19 17:09,"21 Lake St, Boston, MA 02215" -236818,Lightning Charging Cable,1,14.95,08/24/19 09:20,"462 Madison St, Dallas, TX 75001" -236819,Apple Airpods Headphones,1,150.0,08/15/19 15:37,"672 1st St, San Francisco, CA 94016" -236820,Lightning Charging Cable,1,14.95,08/04/19 23:25,"531 10th St, San Francisco, CA 94016" -236821,AA Batteries (4-pack),2,3.84,08/07/19 11:48,"590 11th St, Seattle, WA 98101" -236822,27in 4K Gaming Monitor,1,389.99,08/25/19 10:07,"184 Johnson St, San Francisco, CA 94016" -236823,AAA Batteries (4-pack),1,2.99,08/22/19 06:22,"861 Hickory St, Los Angeles, CA 90001" -236824,Wired Headphones,1,11.99,08/24/19 06:24,"323 11th St, New York City, NY 10001" -236825,USB-C Charging Cable,1,11.95,08/01/19 12:51,"988 West St, Los Angeles, CA 90001" -236826,20in Monitor,1,109.99,08/06/19 12:19,"636 9th St, Seattle, WA 98101" -236827,Lightning Charging Cable,1,14.95,08/30/19 21:25,"9 Center St, Atlanta, GA 30301" -236828,Apple Airpods Headphones,1,150.0,08/11/19 23:19,"515 13th St, San Francisco, CA 94016" -236829,Vareebadd Phone,1,400.0,08/16/19 08:51,"27 2nd St, Los Angeles, CA 90001" -236829,USB-C Charging Cable,1,11.95,08/16/19 08:51,"27 2nd St, Los Angeles, CA 90001" -236830,Apple Airpods Headphones,1,150.0,08/10/19 23:40,"581 6th St, Dallas, TX 75001" -236831,Wired Headphones,1,11.99,08/24/19 02:47,"115 Lake St, Atlanta, GA 30301" -236832,Apple Airpods Headphones,1,150.0,08/09/19 21:14,"479 Adams St, Seattle, WA 98101" -236833,Wired Headphones,1,11.99,08/06/19 09:39,"848 7th St, New York City, NY 10001" -236834,Bose SoundSport Headphones,1,99.99,08/10/19 00:11,"4 Willow St, Los Angeles, CA 90001" -236835,Flatscreen TV,1,300.0,08/29/19 10:55,"276 Chestnut St, San Francisco, CA 94016" -236836,Lightning Charging Cable,1,14.95,08/21/19 20:51,"304 Maple St, San Francisco, CA 94016" -236837,Wired Headphones,1,11.99,08/16/19 00:31,"693 Forest St, San Francisco, CA 94016" -236838,AAA Batteries (4-pack),1,2.99,08/28/19 20:16,"899 South St, Los Angeles, CA 90001" -236839,AA Batteries (4-pack),1,3.84,08/06/19 09:35,"18 Sunset St, Los Angeles, CA 90001" -236840,Apple Airpods Headphones,1,150.0,08/28/19 10:21,"580 Wilson St, Dallas, TX 75001" -236841,20in Monitor,1,109.99,08/30/19 13:29,"307 Jefferson St, Los Angeles, CA 90001" -236842,USB-C Charging Cable,1,11.95,08/06/19 19:10,"659 Madison St, Portland, OR 97035" -236843,AAA Batteries (4-pack),1,2.99,08/25/19 12:33,"821 Lakeview St, New York City, NY 10001" -236844,27in FHD Monitor,1,149.99,08/10/19 17:48,"297 6th St, Los Angeles, CA 90001" -236845,27in 4K Gaming Monitor,1,389.99,08/18/19 18:14,"327 Jackson St, Seattle, WA 98101" -236846,AA Batteries (4-pack),1,3.84,08/05/19 10:13,"440 6th St, Los Angeles, CA 90001" -236847,AA Batteries (4-pack),3,3.84,08/29/19 09:32,"490 Maple St, Portland, OR 97035" -236848,Wired Headphones,1,11.99,08/27/19 18:13,"56 5th St, New York City, NY 10001" -236849,Apple Airpods Headphones,1,150.0,08/04/19 18:13,"775 4th St, San Francisco, CA 94016" -236850,Google Phone,1,600.0,08/31/19 00:09,"543 Ridge St, New York City, NY 10001" -236851,27in 4K Gaming Monitor,1,389.99,08/29/19 00:08,"192 13th St, New York City, NY 10001" -236852,Wired Headphones,1,11.99,08/20/19 10:06,"235 Cherry St, Portland, OR 97035" -236853,Flatscreen TV,1,300.0,08/22/19 00:29,"68 11th St, Dallas, TX 75001" -236854,USB-C Charging Cable,1,11.95,08/14/19 05:56,"753 Adams St, San Francisco, CA 94016" -236855,Bose SoundSport Headphones,1,99.99,08/28/19 12:15,"360 River St, Seattle, WA 98101" -236856,AA Batteries (4-pack),3,3.84,08/09/19 13:11,"661 Center St, Seattle, WA 98101" -236857,Wired Headphones,1,11.99,08/31/19 16:16,"363 6th St, Atlanta, GA 30301" -236858,Lightning Charging Cable,1,14.95,08/01/19 20:34,"35 Jefferson St, San Francisco, CA 94016" -236859,34in Ultrawide Monitor,1,379.99,08/22/19 10:16,"833 Jefferson St, Boston, MA 02215" -236860,USB-C Charging Cable,1,11.95,08/01/19 19:22,"311 Cherry St, San Francisco, CA 94016" -236861,Wired Headphones,2,11.99,08/04/19 18:46,"990 Washington St, Atlanta, GA 30301" -236862,27in FHD Monitor,1,149.99,08/26/19 13:51,"173 South St, San Francisco, CA 94016" -236863,Wired Headphones,1,11.99,08/02/19 21:40,"674 Walnut St, New York City, NY 10001" -236864,Apple Airpods Headphones,1,150.0,08/23/19 12:01,"166 Park St, Portland, OR 97035" -236865,USB-C Charging Cable,1,11.95,08/09/19 08:42,"874 Main St, Austin, TX 73301" -236866,AA Batteries (4-pack),1,3.84,08/19/19 19:17,"583 Spruce St, Portland, ME 04101" -236867,USB-C Charging Cable,1,11.95,08/08/19 15:20,"948 Highland St, Los Angeles, CA 90001" -236868,Wired Headphones,1,11.99,08/29/19 23:19,"363 2nd St, Boston, MA 02215" -236869,Bose SoundSport Headphones,1,99.99,08/30/19 19:58,"436 Main St, Portland, OR 97035" -236870,Google Phone,1,600.0,08/09/19 20:04,"384 5th St, New York City, NY 10001" -236871,Wired Headphones,1,11.99,08/26/19 17:10,"478 9th St, San Francisco, CA 94016" -236872,Wired Headphones,1,11.99,08/02/19 22:59,"39 Johnson St, San Francisco, CA 94016" -236873,Lightning Charging Cable,1,14.95,08/26/19 11:24,"610 Chestnut St, San Francisco, CA 94016" -236874,34in Ultrawide Monitor,1,379.99,08/10/19 01:57,"800 4th St, Los Angeles, CA 90001" -236875,USB-C Charging Cable,1,11.95,08/13/19 09:22,"342 11th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -236876,Google Phone,1,600,08/14/19 20:52,"646 14th St, Boston, MA 02215" -236877,Apple Airpods Headphones,1,150,08/27/19 21:23,"133 Ridge St, Atlanta, GA 30301" -236878,ThinkPad Laptop,1,999.99,08/08/19 07:41,"35 Lincoln St, New York City, NY 10001" -236879,AA Batteries (4-pack),2,3.84,08/14/19 21:01,"284 West St, San Francisco, CA 94016" -236880,34in Ultrawide Monitor,1,379.99,08/10/19 14:46,"631 Highland St, Atlanta, GA 30301" -236881,AAA Batteries (4-pack),1,2.99,08/05/19 22:54,"342 Lake St, New York City, NY 10001" -236882,Macbook Pro Laptop,1,1700,08/09/19 14:05,"109 9th St, New York City, NY 10001" -236883,Apple Airpods Headphones,1,150,08/27/19 19:45,"589 2nd St, Atlanta, GA 30301" -236884,AAA Batteries (4-pack),1,2.99,08/13/19 05:10,"424 Meadow St, Portland, OR 97035" -236885,27in 4K Gaming Monitor,1,389.99,08/15/19 12:10,"835 Cedar St, Portland, OR 97035" -236885,USB-C Charging Cable,1,11.95,08/15/19 12:10,"835 Cedar St, Portland, OR 97035" -236886,Bose SoundSport Headphones,1,99.99,08/21/19 22:23,"310 Hill St, Los Angeles, CA 90001" -236887,27in 4K Gaming Monitor,1,389.99,08/31/19 10:20,"974 5th St, Los Angeles, CA 90001" -236888,Macbook Pro Laptop,1,1700,08/01/19 16:57,"887 Meadow St, New York City, NY 10001" -236889,27in FHD Monitor,1,149.99,08/21/19 21:06,"429 Sunset St, San Francisco, CA 94016" -236890,Lightning Charging Cable,1,14.95,08/11/19 00:35,"475 Lincoln St, Seattle, WA 98101" -236891,Flatscreen TV,1,300,08/07/19 13:41,"385 4th St, Portland, ME 04101" -236892,Lightning Charging Cable,1,14.95,08/08/19 15:35,"651 Madison St, Atlanta, GA 30301" -236893,ThinkPad Laptop,1,999.99,08/07/19 19:37,"942 Madison St, San Francisco, CA 94016" -236894,USB-C Charging Cable,1,11.95,08/03/19 21:55,"386 River St, Atlanta, GA 30301" -236895,USB-C Charging Cable,1,11.95,08/01/19 20:37,"243 Cedar St, Los Angeles, CA 90001" -236896,AA Batteries (4-pack),1,3.84,08/14/19 22:41,"959 Madison St, Dallas, TX 75001" -236897,AA Batteries (4-pack),1,3.84,08/31/19 15:13,"663 Dogwood St, Austin, TX 73301" -236898,Lightning Charging Cable,1,14.95,08/11/19 23:36,"236 River St, San Francisco, CA 94016" -236899,Apple Airpods Headphones,1,150,08/21/19 14:31,"954 Pine St, San Francisco, CA 94016" -236900,Bose SoundSport Headphones,1,99.99,08/26/19 18:50,"405 Ridge St, Portland, ME 04101" -236901,USB-C Charging Cable,1,11.95,08/01/19 18:11,"635 9th St, Seattle, WA 98101" -236902,AA Batteries (4-pack),1,3.84,08/02/19 09:24,"799 North St, San Francisco, CA 94016" -236903,AA Batteries (4-pack),2,3.84,08/27/19 01:31,"410 9th St, San Francisco, CA 94016" -236904,Apple Airpods Headphones,1,150,08/15/19 05:20,"998 Center St, San Francisco, CA 94016" -236905,Lightning Charging Cable,1,14.95,08/21/19 15:22,"705 West St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -236906,Lightning Charging Cable,1,14.95,08/14/19 19:46,"39 Main St, Atlanta, GA 30301" -236907,Wired Headphones,1,11.99,08/24/19 18:09,"865 Jefferson St, San Francisco, CA 94016" -236908,AAA Batteries (4-pack),2,2.99,08/16/19 14:13,"851 Madison St, Los Angeles, CA 90001" -236909,AAA Batteries (4-pack),4,2.99,08/01/19 09:42,"912 Wilson St, Boston, MA 02215" -236910,USB-C Charging Cable,1,11.95,08/17/19 03:33,"744 5th St, New York City, NY 10001" -236911,AA Batteries (4-pack),1,3.84,08/27/19 16:27,"398 Cherry St, Austin, TX 73301" -236912,Lightning Charging Cable,1,14.95,08/18/19 19:00,"682 Dogwood St, San Francisco, CA 94016" -236913,AAA Batteries (4-pack),1,2.99,08/13/19 22:29,"712 South St, Boston, MA 02215" -236914,AAA Batteries (4-pack),1,2.99,08/23/19 11:59,"87 Adams St, Portland, OR 97035" -236915,Wired Headphones,1,11.99,08/17/19 11:06,"272 Ridge St, San Francisco, CA 94016" -236916,Wired Headphones,1,11.99,08/31/19 07:58,"474 Cedar St, Austin, TX 73301" -236917,ThinkPad Laptop,1,999.99,08/24/19 13:28,"847 Highland St, Portland, OR 97035" -236918,Lightning Charging Cable,1,14.95,08/04/19 10:12,"180 Main St, Atlanta, GA 30301" -236919,AA Batteries (4-pack),2,3.84,08/28/19 20:59,"30 Elm St, Atlanta, GA 30301" -236920,Wired Headphones,1,11.99,08/10/19 11:35,"673 1st St, New York City, NY 10001" -236921,Vareebadd Phone,1,400,08/10/19 12:45,"309 1st St, San Francisco, CA 94016" -236922,Wired Headphones,1,11.99,08/12/19 09:39,"346 Wilson St, New York City, NY 10001" -236923,AAA Batteries (4-pack),2,2.99,08/27/19 15:55,"306 6th St, Los Angeles, CA 90001" -236924,20in Monitor,1,109.99,08/29/19 16:39,"752 Willow St, Los Angeles, CA 90001" -236925,Wired Headphones,1,11.99,08/08/19 21:32,"559 Cedar St, San Francisco, CA 94016" -236926,AA Batteries (4-pack),1,3.84,08/25/19 21:02,"182 Pine St, New York City, NY 10001" -236927,34in Ultrawide Monitor,1,379.99,08/19/19 09:32,"548 11th St, San Francisco, CA 94016" -236928,iPhone,1,700,08/22/19 08:30,"319 12th St, San Francisco, CA 94016" -236929,Wired Headphones,2,11.99,08/11/19 15:08,"607 Chestnut St, San Francisco, CA 94016" -236930,ThinkPad Laptop,1,999.99,08/04/19 07:01,"894 Jackson St, New York City, NY 10001" -236931,Apple Airpods Headphones,1,150,08/25/19 08:34,"57 2nd St, New York City, NY 10001" -236932,iPhone,1,700,08/18/19 18:52,"428 Hickory St, Seattle, WA 98101" -236933,AAA Batteries (4-pack),1,2.99,08/19/19 20:32,"164 Pine St, San Francisco, CA 94016" -236934,AA Batteries (4-pack),1,3.84,08/20/19 11:53,"426 Ridge St, San Francisco, CA 94016" -236935,Apple Airpods Headphones,1,150,08/16/19 17:29,"972 11th St, New York City, NY 10001" -236936,Bose SoundSport Headphones,1,99.99,08/30/19 13:48,"721 11th St, San Francisco, CA 94016" -236937,Vareebadd Phone,1,400,08/06/19 18:20,"231 Washington St, Boston, MA 02215" -236938,AA Batteries (4-pack),1,3.84,08/12/19 17:07,"731 Cherry St, Seattle, WA 98101" -236939,USB-C Charging Cable,1,11.95,08/28/19 23:28,"608 Willow St, Boston, MA 02215" -236940,Wired Headphones,1,11.99,08/03/19 19:09,"976 Forest St, Boston, MA 02215" -236941,Lightning Charging Cable,1,14.95,08/22/19 09:46,"665 Wilson St, San Francisco, CA 94016" -236942,Lightning Charging Cable,1,14.95,08/16/19 12:24,"902 4th St, Los Angeles, CA 90001" -236943,AAA Batteries (4-pack),2,2.99,08/04/19 16:04,"387 Lincoln St, Seattle, WA 98101" -236944,Bose SoundSport Headphones,1,99.99,08/25/19 19:33,"139 Cedar St, Boston, MA 02215" -236945,Google Phone,1,600,08/30/19 10:00,"904 Jefferson St, Portland, OR 97035" -236946,AA Batteries (4-pack),3,3.84,08/18/19 08:24,"371 Chestnut St, San Francisco, CA 94016" -236947,20in Monitor,1,109.99,08/19/19 23:52,"845 Lincoln St, Los Angeles, CA 90001" -236948,Lightning Charging Cable,2,14.95,08/12/19 00:44,"134 Highland St, San Francisco, CA 94016" -236949,Bose SoundSport Headphones,1,99.99,08/28/19 18:58,"168 Jefferson St, San Francisco, CA 94016" -236950,Bose SoundSport Headphones,1,99.99,08/27/19 15:50,"146 Hill St, San Francisco, CA 94016" -236951,27in FHD Monitor,1,149.99,08/12/19 22:15,"714 8th St, Los Angeles, CA 90001" -236952,iPhone,1,700,08/01/19 16:01,"386 7th St, Boston, MA 02215" -236953,Apple Airpods Headphones,1,150,08/02/19 16:40,"571 Cedar St, San Francisco, CA 94016" -236954,AA Batteries (4-pack),2,3.84,08/08/19 16:28,"255 Washington St, San Francisco, CA 94016" -236955,34in Ultrawide Monitor,1,379.99,08/03/19 13:15,"833 River St, Los Angeles, CA 90001" -236956,USB-C Charging Cable,1,11.95,08/26/19 15:10,"260 14th St, Los Angeles, CA 90001" -236957,Apple Airpods Headphones,1,150,08/10/19 15:46,"496 Lincoln St, San Francisco, CA 94016" -236958,Lightning Charging Cable,1,14.95,08/23/19 07:05,"758 Elm St, Los Angeles, CA 90001" -236959,27in FHD Monitor,1,149.99,08/21/19 18:33,"927 Park St, San Francisco, CA 94016" -236960,Lightning Charging Cable,1,14.95,08/12/19 12:06,"937 11th St, Los Angeles, CA 90001" -236961,27in 4K Gaming Monitor,1,389.99,08/25/19 12:13,"615 Meadow St, Portland, OR 97035" -236962,20in Monitor,1,109.99,08/08/19 19:54,"296 14th St, Seattle, WA 98101" -236963,Bose SoundSport Headphones,1,99.99,08/31/19 10:21,"166 Dogwood St, Los Angeles, CA 90001" -236964,Flatscreen TV,1,300,08/05/19 18:23,"960 Spruce St, Austin, TX 73301" -236965,AA Batteries (4-pack),1,3.84,08/31/19 09:45,"278 Cherry St, Los Angeles, CA 90001" -236966,Wired Headphones,1,11.99,08/12/19 12:01,"594 Sunset St, Portland, ME 04101" -236967,AA Batteries (4-pack),2,3.84,08/05/19 13:23,"133 Highland St, Los Angeles, CA 90001" -236968,Apple Airpods Headphones,1,150,08/10/19 10:48,"765 Center St, Los Angeles, CA 90001" -236969,Lightning Charging Cable,1,14.95,08/15/19 18:11,"852 11th St, Seattle, WA 98101" -236970,AAA Batteries (4-pack),1,2.99,08/15/19 20:34,"749 Walnut St, Seattle, WA 98101" -236971,27in FHD Monitor,1,149.99,08/07/19 17:57,"311 Elm St, Seattle, WA 98101" -236972,AAA Batteries (4-pack),2,2.99,08/05/19 21:01,"14 Washington St, Los Angeles, CA 90001" -236973,Vareebadd Phone,1,400,08/08/19 12:03,"845 West St, Austin, TX 73301" -,,,,, -236974,Apple Airpods Headphones,1,150,08/23/19 20:25,"470 12th St, San Francisco, CA 94016" -236975,iPhone,1,700,08/02/19 10:47,"799 Walnut St, Los Angeles, CA 90001" -236976,AAA Batteries (4-pack),2,2.99,08/15/19 13:34,"167 Lincoln St, Los Angeles, CA 90001" -236977,AAA Batteries (4-pack),1,2.99,08/13/19 01:13,"115 West St, Portland, OR 97035" -236978,AA Batteries (4-pack),1,3.84,08/17/19 15:06,"910 Forest St, Austin, TX 73301" -236979,Google Phone,1,600,08/15/19 10:21,"539 5th St, Boston, MA 02215" -236980,34in Ultrawide Monitor,1,379.99,08/26/19 19:25,"867 Jefferson St, New York City, NY 10001" -236981,iPhone,1,700,08/05/19 11:38,"499 River St, New York City, NY 10001" -236982,AAA Batteries (4-pack),1,2.99,08/09/19 11:41,"592 Washington St, Dallas, TX 75001" -236983,ThinkPad Laptop,1,999.99,08/24/19 16:00,"549 Ridge St, Los Angeles, CA 90001" -236984,Macbook Pro Laptop,1,1700,08/14/19 15:17,"839 North St, San Francisco, CA 94016" -236985,20in Monitor,1,109.99,08/14/19 06:47,"770 12th St, Dallas, TX 75001" -236986,Apple Airpods Headphones,1,150,08/20/19 23:35,"583 West St, Dallas, TX 75001" -236987,USB-C Charging Cable,1,11.95,08/02/19 14:58,"973 10th St, San Francisco, CA 94016" -236988,USB-C Charging Cable,1,11.95,08/12/19 13:34,"345 1st St, Portland, OR 97035" -236989,20in Monitor,1,109.99,08/06/19 19:31,"412 Meadow St, Portland, OR 97035" -236990,USB-C Charging Cable,1,11.95,08/30/19 07:09,"582 South St, Los Angeles, CA 90001" -236991,USB-C Charging Cable,2,11.95,08/18/19 00:44,"303 4th St, San Francisco, CA 94016" -236992,Google Phone,1,600,08/20/19 10:13,"544 Lakeview St, New York City, NY 10001" -236992,USB-C Charging Cable,1,11.95,08/20/19 10:13,"544 Lakeview St, New York City, NY 10001" -236993,Lightning Charging Cable,1,14.95,08/21/19 11:55,"28 Adams St, San Francisco, CA 94016" -236994,ThinkPad Laptop,1,999.99,08/01/19 07:17,"96 Elm St, San Francisco, CA 94016" -236995,AAA Batteries (4-pack),1,2.99,08/08/19 21:53,"694 Cherry St, San Francisco, CA 94016" -236996,AAA Batteries (4-pack),3,2.99,08/08/19 10:14,"894 Jefferson St, San Francisco, CA 94016" -236997,Lightning Charging Cable,2,14.95,08/20/19 03:37,"184 Wilson St, Dallas, TX 75001" -236998,AA Batteries (4-pack),1,3.84,08/26/19 20:50,"365 Willow St, Atlanta, GA 30301" -236999,Wired Headphones,1,11.99,08/02/19 20:45,"745 Main St, New York City, NY 10001" -237000,AAA Batteries (4-pack),1,2.99,08/03/19 16:46,"535 Lakeview St, Seattle, WA 98101" -237001,Bose SoundSport Headphones,1,99.99,08/31/19 06:09,"797 Cherry St, San Francisco, CA 94016" -237002,USB-C Charging Cable,1,11.95,08/30/19 14:15,"799 Jefferson St, Atlanta, GA 30301" -237003,AAA Batteries (4-pack),1,2.99,08/02/19 11:05,"672 Main St, Los Angeles, CA 90001" -237004,USB-C Charging Cable,1,11.95,08/01/19 22:00,"99 2nd St, Los Angeles, CA 90001" -237005,Macbook Pro Laptop,1,1700,08/29/19 06:50,"187 1st St, San Francisco, CA 94016" -237006,Wired Headphones,1,11.99,08/07/19 18:24,"623 River St, Boston, MA 02215" -237007,Bose SoundSport Headphones,1,99.99,08/26/19 08:51,"792 Dogwood St, Portland, OR 97035" -237008,iPhone,1,700,08/03/19 09:50,"407 9th St, New York City, NY 10001" -237009,20in Monitor,1,109.99,08/07/19 15:43,"73 4th St, Los Angeles, CA 90001" -237010,AA Batteries (4-pack),1,3.84,08/16/19 11:58,"891 Highland St, San Francisco, CA 94016" -237011,Apple Airpods Headphones,1,150,08/15/19 07:33,"434 West St, Los Angeles, CA 90001" -237012,AAA Batteries (4-pack),1,2.99,08/20/19 13:39,"195 Madison St, Austin, TX 73301" -237013,iPhone,1,700,08/06/19 07:13,"720 12th St, Los Angeles, CA 90001" -237013,Lightning Charging Cable,1,14.95,08/06/19 07:13,"720 12th St, Los Angeles, CA 90001" -237014,Lightning Charging Cable,1,14.95,08/30/19 12:16,"748 14th St, New York City, NY 10001" -237015,USB-C Charging Cable,1,11.95,08/17/19 14:21,"808 9th St, New York City, NY 10001" -237016,34in Ultrawide Monitor,1,379.99,08/21/19 07:38,"696 Cedar St, New York City, NY 10001" -237017,Flatscreen TV,1,300,08/10/19 01:28,"209 Willow St, Los Angeles, CA 90001" -237018,LG Dryer,1,600.0,08/02/19 07:16,"363 Adams St, Seattle, WA 98101" -237019,Flatscreen TV,1,300,08/01/19 12:41,"636 Park St, San Francisco, CA 94016" -237020,27in FHD Monitor,1,149.99,08/17/19 12:18,"783 Jefferson St, Los Angeles, CA 90001" -237021,AAA Batteries (4-pack),1,2.99,08/03/19 12:03,"492 Jackson St, New York City, NY 10001" -237022,Apple Airpods Headphones,1,150,08/10/19 06:38,"513 Adams St, San Francisco, CA 94016" -237023,AA Batteries (4-pack),2,3.84,08/19/19 17:46,"173 9th St, San Francisco, CA 94016" -237024,AA Batteries (4-pack),2,3.84,08/13/19 19:28,"243 Cherry St, San Francisco, CA 94016" -237025,Lightning Charging Cable,2,14.95,08/25/19 14:56,"491 Chestnut St, Dallas, TX 75001" -237026,27in 4K Gaming Monitor,1,389.99,08/02/19 19:15,"146 Madison St, Boston, MA 02215" -237027,Apple Airpods Headphones,1,150,08/09/19 19:20,"232 Jackson St, New York City, NY 10001" -237028,27in 4K Gaming Monitor,1,389.99,08/04/19 15:20,"399 Maple St, San Francisco, CA 94016" -237029,Bose SoundSport Headphones,1,99.99,08/13/19 20:04,"558 Highland St, Los Angeles, CA 90001" -237030,27in 4K Gaming Monitor,1,389.99,08/11/19 17:15,"751 1st St, Los Angeles, CA 90001" -237031,Apple Airpods Headphones,1,150,08/15/19 13:49,"447 Jefferson St, San Francisco, CA 94016" -237032,27in 4K Gaming Monitor,1,389.99,08/05/19 07:58,"409 1st St, New York City, NY 10001" -237033,Google Phone,1,600,08/05/19 17:01,"359 Lakeview St, Dallas, TX 75001" -237034,Apple Airpods Headphones,1,150,08/11/19 07:16,"18 Ridge St, New York City, NY 10001" -237035,34in Ultrawide Monitor,1,379.99,08/17/19 09:27,"875 North St, Los Angeles, CA 90001" -237036,27in FHD Monitor,1,149.99,08/06/19 13:46,"790 Wilson St, New York City, NY 10001" -237037,20in Monitor,1,109.99,08/08/19 16:44,"265 Maple St, Los Angeles, CA 90001" -237038,Wired Headphones,1,11.99,08/25/19 19:17,"655 Jackson St, Portland, OR 97035" -237039,Apple Airpods Headphones,1,150,08/31/19 11:17,"560 9th St, Atlanta, GA 30301" -237040,AAA Batteries (4-pack),3,2.99,08/26/19 20:43,"843 1st St, Seattle, WA 98101" -237041,Lightning Charging Cable,1,14.95,08/23/19 14:10,"319 Spruce St, Boston, MA 02215" -237042,USB-C Charging Cable,1,11.95,08/26/19 13:51,"995 Willow St, Los Angeles, CA 90001" -237043,Lightning Charging Cable,1,14.95,08/12/19 18:37,"11 Adams St, San Francisco, CA 94016" -237044,AAA Batteries (4-pack),1,2.99,08/05/19 19:25,"326 River St, Portland, OR 97035" -237045,Bose SoundSport Headphones,1,99.99,08/11/19 18:25,"119 9th St, Boston, MA 02215" -237045,Wired Headphones,1,11.99,08/11/19 18:25,"119 9th St, Boston, MA 02215" -237046,Lightning Charging Cable,1,14.95,08/14/19 13:57,"858 11th St, Los Angeles, CA 90001" -237047,Lightning Charging Cable,1,14.95,08/21/19 09:00,"251 Park St, San Francisco, CA 94016" -237048,27in FHD Monitor,1,149.99,08/16/19 06:06,"306 Park St, Dallas, TX 75001" -237049,Lightning Charging Cable,2,14.95,08/08/19 13:23,"469 13th St, San Francisco, CA 94016" -237050,AAA Batteries (4-pack),1,2.99,08/06/19 15:35,"732 Chestnut St, San Francisco, CA 94016" -237051,AAA Batteries (4-pack),1,2.99,08/06/19 00:17,"403 Jackson St, Portland, OR 97035" -237052,AA Batteries (4-pack),1,3.84,08/11/19 19:06,"864 Dogwood St, Seattle, WA 98101" -237053,Lightning Charging Cable,1,14.95,08/28/19 15:22,"891 River St, Portland, OR 97035" -237054,iPhone,1,700,08/19/19 08:07,"243 Jefferson St, Los Angeles, CA 90001" -237055,Apple Airpods Headphones,1,150,08/25/19 00:02,"590 14th St, Los Angeles, CA 90001" -237056,27in FHD Monitor,1,149.99,08/21/19 03:06,"671 Lincoln St, San Francisco, CA 94016" -237057,Bose SoundSport Headphones,1,99.99,08/12/19 18:32,"669 Main St, Boston, MA 02215" -237058,AAA Batteries (4-pack),1,2.99,08/01/19 19:42,"119 Elm St, Seattle, WA 98101" -237059,AA Batteries (4-pack),1,3.84,08/19/19 17:13,"639 Jackson St, New York City, NY 10001" -237060,AA Batteries (4-pack),1,3.84,08/01/19 22:31,"814 Church St, Dallas, TX 75001" -237061,20in Monitor,1,109.99,08/01/19 09:35,"847 West St, San Francisco, CA 94016" -237062,Bose SoundSport Headphones,1,99.99,08/05/19 15:37,"531 Highland St, New York City, NY 10001" -237063,LG Dryer,1,600.0,08/06/19 10:10,"303 Lake St, New York City, NY 10001" -237063,AA Batteries (4-pack),1,3.84,08/06/19 10:10,"303 Lake St, New York City, NY 10001" -237064,27in FHD Monitor,1,149.99,08/06/19 16:17,"521 Willow St, Austin, TX 73301" -237065,27in 4K Gaming Monitor,1,389.99,08/23/19 13:15,"312 Chestnut St, Los Angeles, CA 90001" -237066,Bose SoundSport Headphones,1,99.99,08/30/19 22:35,"374 Highland St, Boston, MA 02215" -237067,iPhone,1,700,08/11/19 19:08,"730 West St, Boston, MA 02215" -237067,Lightning Charging Cable,1,14.95,08/11/19 19:08,"730 West St, Boston, MA 02215" -237068,Lightning Charging Cable,1,14.95,08/01/19 11:44,"271 South St, New York City, NY 10001" -237069,Vareebadd Phone,1,400,08/08/19 14:09,"147 Highland St, Seattle, WA 98101" -237070,USB-C Charging Cable,1,11.95,08/08/19 18:26,"242 Sunset St, Seattle, WA 98101" -237071,27in FHD Monitor,1,149.99,08/10/19 21:33,"890 Johnson St, Portland, OR 97035" -237072,Bose SoundSport Headphones,1,99.99,08/16/19 06:48,"615 Maple St, New York City, NY 10001" -237073,Lightning Charging Cable,1,14.95,08/16/19 17:41,"416 Park St, Austin, TX 73301" -237074,34in Ultrawide Monitor,1,379.99,08/21/19 06:10,"123 Adams St, San Francisco, CA 94016" -237075,AA Batteries (4-pack),1,3.84,08/15/19 12:39,"596 Meadow St, Austin, TX 73301" -237076,Flatscreen TV,1,300,08/02/19 09:10,"206 2nd St, Seattle, WA 98101" -237077,USB-C Charging Cable,1,11.95,08/20/19 17:36,"982 11th St, San Francisco, CA 94016" -237078,Bose SoundSport Headphones,1,99.99,08/21/19 17:01,"253 Highland St, San Francisco, CA 94016" -237079,Flatscreen TV,1,300,08/13/19 11:34,"235 Cherry St, Los Angeles, CA 90001" -237080,Apple Airpods Headphones,1,150,08/11/19 12:21,"634 Main St, Atlanta, GA 30301" -237081,Wired Headphones,1,11.99,08/08/19 15:40,"692 Main St, Seattle, WA 98101" -237082,Google Phone,1,600,08/15/19 11:28,"473 Adams St, San Francisco, CA 94016" -237083,Wired Headphones,1,11.99,08/07/19 21:31,"610 Washington St, Portland, OR 97035" -237084,Wired Headphones,1,11.99,08/22/19 20:55,"843 Spruce St, Boston, MA 02215" -237085,34in Ultrawide Monitor,1,379.99,08/26/19 17:58,"475 Lake St, San Francisco, CA 94016" -237086,LG Dryer,1,600.0,08/06/19 18:29,"310 North St, Boston, MA 02215" -237087,Apple Airpods Headphones,1,150,08/28/19 12:01,"139 Ridge St, San Francisco, CA 94016" -237088,AA Batteries (4-pack),1,3.84,08/22/19 12:55,"232 Elm St, Atlanta, GA 30301" -237089,AA Batteries (4-pack),1,3.84,08/21/19 20:15,"202 Johnson St, Los Angeles, CA 90001" -237090,Apple Airpods Headphones,1,150,08/29/19 21:44,"809 5th St, New York City, NY 10001" -237091,Lightning Charging Cable,1,14.95,08/31/19 10:15,"379 12th St, New York City, NY 10001" -237092,Wired Headphones,1,11.99,08/20/19 00:37,"808 1st St, Boston, MA 02215" -237093,AAA Batteries (4-pack),2,2.99,08/01/19 12:39,"771 Cedar St, Portland, OR 97035" -237094,AAA Batteries (4-pack),2,2.99,08/06/19 10:39,"552 River St, New York City, NY 10001" -237095,Google Phone,2,600,08/22/19 12:34,"110 Madison St, Boston, MA 02215" -237096,USB-C Charging Cable,1,11.95,08/06/19 11:17,"946 Pine St, San Francisco, CA 94016" -237097,AAA Batteries (4-pack),3,2.99,08/24/19 17:05,"838 Cedar St, Boston, MA 02215" -237098,Apple Airpods Headphones,1,150,08/14/19 11:17,"925 Cedar St, Portland, OR 97035" -237099,Apple Airpods Headphones,1,150,08/27/19 01:35,"82 Center St, Seattle, WA 98101" -237100,AA Batteries (4-pack),1,3.84,08/12/19 15:27,"456 Madison St, New York City, NY 10001" -237101,AAA Batteries (4-pack),1,2.99,08/10/19 00:06,"630 Chestnut St, Los Angeles, CA 90001" -237102,34in Ultrawide Monitor,1,379.99,08/31/19 17:28,"372 Forest St, Atlanta, GA 30301" -237103,Wired Headphones,1,11.99,08/11/19 19:33,"541 13th St, Seattle, WA 98101" -237104,Apple Airpods Headphones,1,150,08/16/19 19:56,"340 Willow St, Los Angeles, CA 90001" -237105,27in FHD Monitor,1,149.99,08/10/19 19:47,"670 Church St, Austin, TX 73301" -237106,AA Batteries (4-pack),1,3.84,08/16/19 07:15,"814 Forest St, Los Angeles, CA 90001" -237107,Bose SoundSport Headphones,1,99.99,08/25/19 16:44,"314 Center St, Boston, MA 02215" -237108,Wired Headphones,1,11.99,08/24/19 20:13,"14 Forest St, San Francisco, CA 94016" -237109,Lightning Charging Cable,1,14.95,08/10/19 18:28,"761 Hickory St, Los Angeles, CA 90001" -237110,AA Batteries (4-pack),1,3.84,08/18/19 14:23,"545 Jackson St, San Francisco, CA 94016" -237111,iPhone,1,700,08/31/19 00:33,"89 Church St, San Francisco, CA 94016" -237112,ThinkPad Laptop,1,999.99,08/16/19 14:15,"344 Center St, San Francisco, CA 94016" -237113,Apple Airpods Headphones,1,150,08/15/19 11:42,"656 Willow St, Los Angeles, CA 90001" -237114,USB-C Charging Cable,1,11.95,08/05/19 16:49,"456 6th St, New York City, NY 10001" -237115,Apple Airpods Headphones,1,150,08/27/19 11:58,"431 Cedar St, New York City, NY 10001" -237116,Wired Headphones,1,11.99,08/01/19 20:11,"165 Willow St, Atlanta, GA 30301" -237117,Apple Airpods Headphones,1,150,08/24/19 14:07,"951 7th St, Boston, MA 02215" -237118,Apple Airpods Headphones,1,150,08/06/19 17:53,"252 Hill St, San Francisco, CA 94016" -237119,Wired Headphones,1,11.99,08/13/19 15:27,"774 Johnson St, New York City, NY 10001" -237120,AA Batteries (4-pack),6,3.84,08/22/19 21:22,"864 8th St, San Francisco, CA 94016" -237121,LG Washing Machine,1,600.0,08/16/19 15:38,"573 Adams St, Los Angeles, CA 90001" -237122,AAA Batteries (4-pack),2,2.99,08/20/19 10:38,"978 Meadow St, Boston, MA 02215" -237123,Apple Airpods Headphones,1,150,08/11/19 12:21,"482 Park St, Austin, TX 73301" -237124,AA Batteries (4-pack),1,3.84,08/21/19 16:39,"603 Maple St, San Francisco, CA 94016" -237125,Apple Airpods Headphones,1,150,08/02/19 22:04,"501 Adams St, Los Angeles, CA 90001" -237126,USB-C Charging Cable,1,11.95,08/28/19 04:51,"968 Hill St, San Francisco, CA 94016" -237127,Bose SoundSport Headphones,1,99.99,08/13/19 10:53,"937 Jackson St, Los Angeles, CA 90001" -237128,USB-C Charging Cable,1,11.95,08/09/19 22:38,"634 Adams St, Seattle, WA 98101" -237129,AAA Batteries (4-pack),1,2.99,08/26/19 12:57,"128 Maple St, San Francisco, CA 94016" -237130,Lightning Charging Cable,1,14.95,08/07/19 14:10,"294 Pine St, Dallas, TX 75001" -237131,USB-C Charging Cable,1,11.95,08/11/19 22:37,"492 Ridge St, Portland, OR 97035" -237132,27in 4K Gaming Monitor,1,389.99,08/07/19 11:22,"832 Jefferson St, Austin, TX 73301" -237133,Flatscreen TV,1,300,08/20/19 20:26,"535 Sunset St, San Francisco, CA 94016" -237134,AAA Batteries (4-pack),1,2.99,08/18/19 18:12,"996 Adams St, Atlanta, GA 30301" -237135,Bose SoundSport Headphones,1,99.99,08/18/19 09:32,"295 10th St, New York City, NY 10001" -237136,USB-C Charging Cable,1,11.95,08/25/19 20:26,"236 Cherry St, Atlanta, GA 30301" -237137,AA Batteries (4-pack),1,3.84,08/17/19 15:20,"874 12th St, New York City, NY 10001" -237138,AAA Batteries (4-pack),7,2.99,08/28/19 09:31,"141 Ridge St, San Francisco, CA 94016" -237139,27in 4K Gaming Monitor,1,389.99,08/17/19 23:13,"986 Meadow St, San Francisco, CA 94016" -237140,Wired Headphones,1,11.99,08/29/19 22:12,"215 Jackson St, Seattle, WA 98101" -237141,20in Monitor,1,109.99,08/16/19 21:11,"536 Hickory St, Austin, TX 73301" -237142,Bose SoundSport Headphones,1,99.99,08/21/19 20:05,"414 Cedar St, Los Angeles, CA 90001" -237143,27in FHD Monitor,1,149.99,08/21/19 18:08,"158 River St, Atlanta, GA 30301" -237144,Bose SoundSport Headphones,1,99.99,08/26/19 11:18,"563 Cedar St, San Francisco, CA 94016" -237145,34in Ultrawide Monitor,1,379.99,08/09/19 10:27,"541 Cedar St, Portland, OR 97035" -237146,27in 4K Gaming Monitor,1,389.99,08/30/19 07:38,"37 5th St, Atlanta, GA 30301" -237147,27in 4K Gaming Monitor,1,389.99,08/18/19 13:49,"365 Madison St, San Francisco, CA 94016" -237148,iPhone,1,700,08/22/19 16:48,"605 Lakeview St, San Francisco, CA 94016" -237148,Lightning Charging Cable,1,14.95,08/22/19 16:48,"605 Lakeview St, San Francisco, CA 94016" -237149,Bose SoundSport Headphones,1,99.99,08/23/19 14:44,"587 4th St, Atlanta, GA 30301" -237150,Apple Airpods Headphones,1,150,08/26/19 08:49,"169 North St, Los Angeles, CA 90001" -237151,AAA Batteries (4-pack),2,2.99,08/12/19 21:02,"811 Maple St, San Francisco, CA 94016" -237152,Wired Headphones,1,11.99,08/13/19 07:53,"854 Cedar St, Los Angeles, CA 90001" -237153,Lightning Charging Cable,1,14.95,08/23/19 16:34,"5 Sunset St, San Francisco, CA 94016" -237154,Bose SoundSport Headphones,1,99.99,08/07/19 05:39,"612 Madison St, Seattle, WA 98101" -237155,Bose SoundSport Headphones,1,99.99,08/14/19 20:49,"123 Willow St, Portland, OR 97035" -237156,AAA Batteries (4-pack),1,2.99,08/28/19 12:16,"72 Main St, San Francisco, CA 94016" -237157,Apple Airpods Headphones,1,150,08/11/19 06:31,"806 4th St, Dallas, TX 75001" -237158,Lightning Charging Cable,1,14.95,08/08/19 15:54,"865 Walnut St, Los Angeles, CA 90001" -237159,Lightning Charging Cable,1,14.95,08/28/19 21:59,"322 Walnut St, New York City, NY 10001" -237160,USB-C Charging Cable,1,11.95,08/04/19 16:26,"139 8th St, New York City, NY 10001" -237161,AA Batteries (4-pack),1,3.84,08/18/19 21:36,"249 Church St, New York City, NY 10001" -237162,AAA Batteries (4-pack),1,2.99,08/30/19 12:37,"179 Lakeview St, New York City, NY 10001" -237163,27in FHD Monitor,1,149.99,08/23/19 07:12,"13 Washington St, Los Angeles, CA 90001" -237164,USB-C Charging Cable,1,11.95,08/01/19 14:27,"388 1st St, New York City, NY 10001" -237165,Vareebadd Phone,1,400,08/24/19 17:58,"603 Willow St, San Francisco, CA 94016" -237166,Wired Headphones,1,11.99,08/24/19 11:51,"479 Church St, San Francisco, CA 94016" -237167,Bose SoundSport Headphones,1,99.99,08/06/19 15:28,"794 11th St, Dallas, TX 75001" -237168,iPhone,1,700,08/22/19 13:26,"637 Elm St, Seattle, WA 98101" -237169,Lightning Charging Cable,1,14.95,08/01/19 09:40,"127 Ridge St, Seattle, WA 98101" -237170,Bose SoundSport Headphones,1,99.99,08/22/19 12:30,"422 Spruce St, Portland, OR 97035" -237171,AA Batteries (4-pack),1,3.84,08/19/19 23:04,"883 River St, Dallas, TX 75001" -237172,iPhone,1,700,08/31/19 20:37,"265 Hickory St, Portland, OR 97035" -237173,AAA Batteries (4-pack),2,2.99,08/26/19 06:26,"312 South St, San Francisco, CA 94016" -237174,Wired Headphones,1,11.99,08/28/19 15:31,"300 8th St, Los Angeles, CA 90001" -237175,Bose SoundSport Headphones,1,99.99,08/04/19 09:14,"262 Ridge St, San Francisco, CA 94016" -237176,AA Batteries (4-pack),1,3.84,08/06/19 18:53,"521 8th St, San Francisco, CA 94016" -237177,Flatscreen TV,1,300,08/17/19 20:51,"795 Highland St, Atlanta, GA 30301" -237178,USB-C Charging Cable,1,11.95,08/10/19 09:46,"457 5th St, San Francisco, CA 94016" -237179,Bose SoundSport Headphones,1,99.99,08/18/19 18:11,"1 Wilson St, New York City, NY 10001" -237180,USB-C Charging Cable,1,11.95,08/23/19 03:17,"888 West St, Portland, OR 97035" -237181,AA Batteries (4-pack),1,3.84,08/16/19 19:46,"855 Hill St, Dallas, TX 75001" -237182,Google Phone,1,600,08/30/19 21:22,"634 Spruce St, Los Angeles, CA 90001" -237183,USB-C Charging Cable,1,11.95,08/20/19 11:11,"901 Walnut St, San Francisco, CA 94016" -237184,Flatscreen TV,1,300,08/03/19 16:09,"59 Madison St, Seattle, WA 98101" -237185,34in Ultrawide Monitor,1,379.99,08/25/19 14:40,"744 Hickory St, New York City, NY 10001" -237186,USB-C Charging Cable,1,11.95,08/25/19 17:27,"548 Johnson St, Los Angeles, CA 90001" -237187,AAA Batteries (4-pack),1,2.99,08/06/19 13:24,"18 1st St, Boston, MA 02215" -237188,AAA Batteries (4-pack),3,2.99,08/20/19 10:03,"98 Ridge St, Atlanta, GA 30301" -237189,27in 4K Gaming Monitor,1,389.99,08/31/19 15:17,"758 Forest St, San Francisco, CA 94016" -237190,USB-C Charging Cable,1,11.95,08/05/19 09:46,"118 Hickory St, Los Angeles, CA 90001" -237191,AA Batteries (4-pack),1,3.84,08/17/19 17:08,"812 Pine St, San Francisco, CA 94016" -237192,AA Batteries (4-pack),1,3.84,08/07/19 01:21,"8 14th St, Seattle, WA 98101" -237193,Flatscreen TV,1,300,08/03/19 14:15,"309 5th St, Dallas, TX 75001" -237194,Bose SoundSport Headphones,1,99.99,08/24/19 16:59,"609 Main St, San Francisco, CA 94016" -237195,Apple Airpods Headphones,1,150,08/09/19 13:42,"345 Dogwood St, Atlanta, GA 30301" -237196,20in Monitor,1,109.99,08/31/19 13:22,"685 Park St, San Francisco, CA 94016" -237197,AAA Batteries (4-pack),3,2.99,08/14/19 22:48,"47 6th St, Dallas, TX 75001" -237198,Wired Headphones,1,11.99,08/12/19 14:31,"691 Church St, New York City, NY 10001" -237199,Wired Headphones,1,11.99,08/01/19 14:23,"151 Lake St, Los Angeles, CA 90001" -237200,Bose SoundSport Headphones,1,99.99,08/16/19 16:19,"832 6th St, Boston, MA 02215" -237201,AAA Batteries (4-pack),1,2.99,08/02/19 16:26,"232 12th St, New York City, NY 10001" -237202,Bose SoundSport Headphones,1,99.99,08/08/19 10:12,"12 Cedar St, New York City, NY 10001" -237203,Macbook Pro Laptop,1,1700,08/12/19 10:13,"282 Wilson St, Portland, OR 97035" -237204,Wired Headphones,1,11.99,08/15/19 19:47,"98 11th St, San Francisco, CA 94016" -237205,34in Ultrawide Monitor,1,379.99,08/22/19 13:45,"716 Hill St, Los Angeles, CA 90001" -237206,Bose SoundSport Headphones,1,99.99,08/31/19 11:25,"105 4th St, San Francisco, CA 94016" -237207,Wired Headphones,1,11.99,08/09/19 22:39,"243 Lake St, Atlanta, GA 30301" -237208,USB-C Charging Cable,2,11.95,08/27/19 20:56,"739 Lincoln St, San Francisco, CA 94016" -237209,27in FHD Monitor,1,149.99,08/24/19 00:16,"167 Walnut St, Los Angeles, CA 90001" -237210,AAA Batteries (4-pack),1,2.99,08/21/19 17:20,"875 North St, Los Angeles, CA 90001" -237211,AA Batteries (4-pack),1,3.84,08/30/19 00:27,"251 Park St, Los Angeles, CA 90001" -237212,27in FHD Monitor,1,149.99,08/19/19 13:22,"855 11th St, Boston, MA 02215" -237213,Lightning Charging Cable,1,14.95,08/16/19 11:04,"875 Madison St, Dallas, TX 75001" -237214,34in Ultrawide Monitor,1,379.99,08/26/19 17:55,"908 Madison St, San Francisco, CA 94016" -237215,Google Phone,1,600,08/27/19 10:58,"352 12th St, Atlanta, GA 30301" -237216,Wired Headphones,1,11.99,08/11/19 15:36,"441 5th St, Los Angeles, CA 90001" -237217,27in 4K Gaming Monitor,1,389.99,08/20/19 21:21,"881 Main St, San Francisco, CA 94016" -237218,iPhone,1,700,08/07/19 15:45,"492 Spruce St, San Francisco, CA 94016" -237218,Lightning Charging Cable,1,14.95,08/07/19 15:45,"492 Spruce St, San Francisco, CA 94016" -237219,Wired Headphones,1,11.99,08/23/19 19:23,"421 River St, San Francisco, CA 94016" -237220,Lightning Charging Cable,1,14.95,08/04/19 09:23,"710 10th St, Portland, OR 97035" -237221,AA Batteries (4-pack),2,3.84,08/10/19 09:57,"536 Hill St, New York City, NY 10001" -237222,AA Batteries (4-pack),1,3.84,08/05/19 16:43,"777 Highland St, Los Angeles, CA 90001" -237223,AAA Batteries (4-pack),3,2.99,08/22/19 15:06,"953 Elm St, Austin, TX 73301" -237224,Apple Airpods Headphones,1,150,08/18/19 13:33,"774 11th St, New York City, NY 10001" -237225,Bose SoundSport Headphones,1,99.99,08/14/19 19:22,"215 10th St, Seattle, WA 98101" -237226,Bose SoundSport Headphones,1,99.99,08/23/19 11:39,"314 Highland St, Portland, OR 97035" -237227,ThinkPad Laptop,1,999.99,08/15/19 08:18,"179 Cherry St, Los Angeles, CA 90001" -237228,Google Phone,1,600,08/07/19 22:18,"945 Spruce St, San Francisco, CA 94016" -237229,Lightning Charging Cable,1,14.95,08/29/19 12:39,"629 Cherry St, Portland, OR 97035" -237230,Wired Headphones,1,11.99,08/19/19 21:01,"38 13th St, Dallas, TX 75001" -237231,34in Ultrawide Monitor,1,379.99,08/27/19 12:05,"635 Willow St, Boston, MA 02215" -237232,Bose SoundSport Headphones,1,99.99,08/31/19 11:00,"136 Highland St, Boston, MA 02215" -237232,AAA Batteries (4-pack),1,2.99,08/31/19 11:00,"136 Highland St, Boston, MA 02215" -237233,34in Ultrawide Monitor,1,379.99,08/17/19 02:40,"962 7th St, Boston, MA 02215" -237234,Apple Airpods Headphones,1,150,08/16/19 14:32,"822 9th St, San Francisco, CA 94016" -237235,Apple Airpods Headphones,1,150,08/12/19 21:16,"529 Chestnut St, San Francisco, CA 94016" -237236,USB-C Charging Cable,1,11.95,08/29/19 08:06,"127 Cedar St, Los Angeles, CA 90001" -237237,Lightning Charging Cable,2,14.95,08/13/19 15:06,"143 Spruce St, Atlanta, GA 30301" -237238,Lightning Charging Cable,1,14.95,08/25/19 13:06,"407 Washington St, Dallas, TX 75001" -237239,Bose SoundSport Headphones,1,99.99,08/18/19 21:08,"230 Maple St, Seattle, WA 98101" -237240,USB-C Charging Cable,1,11.95,08/30/19 11:55,"901 Cherry St, San Francisco, CA 94016" -237241,iPhone,1,700,08/20/19 16:21,"402 1st St, Austin, TX 73301" -237242,27in FHD Monitor,1,149.99,08/30/19 15:57,"956 Washington St, Los Angeles, CA 90001" -237243,Macbook Pro Laptop,1,1700,08/06/19 19:49,"684 Cherry St, Austin, TX 73301" -237244,Lightning Charging Cable,1,14.95,08/15/19 10:35,"304 Jefferson St, Austin, TX 73301" -237245,AAA Batteries (4-pack),1,2.99,08/02/19 19:24,"276 Wilson St, Boston, MA 02215" -237245,AA Batteries (4-pack),1,3.84,08/02/19 19:24,"276 Wilson St, Boston, MA 02215" -237246,Lightning Charging Cable,1,14.95,08/06/19 16:08,"137 Ridge St, New York City, NY 10001" -237247,Google Phone,1,600,08/17/19 21:05,"526 River St, San Francisco, CA 94016" -237248,AAA Batteries (4-pack),1,2.99,08/28/19 19:02,"319 Lake St, New York City, NY 10001" -237249,AA Batteries (4-pack),1,3.84,08/13/19 21:57,"768 Lake St, Seattle, WA 98101" -237250,Apple Airpods Headphones,1,150,08/15/19 15:52,"606 Willow St, Portland, ME 04101" -237251,iPhone,1,700,08/30/19 11:18,"542 River St, New York City, NY 10001" -237251,Wired Headphones,1,11.99,08/30/19 11:18,"542 River St, New York City, NY 10001" -237252,Lightning Charging Cable,1,14.95,08/19/19 10:59,"199 Forest St, New York City, NY 10001" -237253,USB-C Charging Cable,1,11.95,08/02/19 10:50,"351 Walnut St, New York City, NY 10001" -237254,ThinkPad Laptop,1,999.99,08/07/19 20:03,"547 Jefferson St, Dallas, TX 75001" -237255,USB-C Charging Cable,1,11.95,08/26/19 15:08,"540 Main St, New York City, NY 10001" -237256,AAA Batteries (4-pack),1,2.99,08/02/19 15:27,"578 Highland St, Atlanta, GA 30301" -237257,Lightning Charging Cable,1,14.95,08/11/19 12:50,"278 9th St, Los Angeles, CA 90001" -237258,AA Batteries (4-pack),1,3.84,08/12/19 07:10,"672 South St, Dallas, TX 75001" -237259,20in Monitor,1,109.99,08/25/19 21:56,"734 Jefferson St, San Francisco, CA 94016" -237260,Bose SoundSport Headphones,1,99.99,08/30/19 19:48,"389 1st St, Los Angeles, CA 90001" -237261,USB-C Charging Cable,1,11.95,08/25/19 21:20,"102 Elm St, Atlanta, GA 30301" -237261,Apple Airpods Headphones,1,150,08/25/19 21:20,"102 Elm St, Atlanta, GA 30301" -237262,AA Batteries (4-pack),1,3.84,08/17/19 07:54,"87 6th St, Los Angeles, CA 90001" -237263,ThinkPad Laptop,1,999.99,08/04/19 12:21,"809 Cedar St, Dallas, TX 75001" -237264,ThinkPad Laptop,1,999.99,08/20/19 08:12,"943 Wilson St, San Francisco, CA 94016" -237265,Apple Airpods Headphones,1,150,08/03/19 14:02,"666 Madison St, Los Angeles, CA 90001" -237266,AA Batteries (4-pack),1,3.84,08/29/19 16:12,"134 5th St, Seattle, WA 98101" -237267,iPhone,1,700,08/17/19 17:11,"368 Wilson St, New York City, NY 10001" -237267,Wired Headphones,1,11.99,08/17/19 17:11,"368 Wilson St, New York City, NY 10001" -237268,27in 4K Gaming Monitor,1,389.99,08/24/19 15:16,"513 Hill St, Dallas, TX 75001" -237269,LG Washing Machine,1,600.0,08/04/19 13:22,"72 Lincoln St, Los Angeles, CA 90001" -237270,AA Batteries (4-pack),2,3.84,08/12/19 10:14,"194 Pine St, Portland, OR 97035" -237271,USB-C Charging Cable,1,11.95,08/22/19 10:57,"369 Spruce St, San Francisco, CA 94016" -237272,AA Batteries (4-pack),2,3.84,08/22/19 06:21,"52 Washington St, Atlanta, GA 30301" -237273,Wired Headphones,1,11.99,08/13/19 21:58,"752 Jackson St, Dallas, TX 75001" -237274,Bose SoundSport Headphones,1,99.99,08/11/19 12:28,"494 Madison St, San Francisco, CA 94016" -237275,USB-C Charging Cable,1,11.95,08/13/19 20:22,"358 5th St, San Francisco, CA 94016" -237276,Lightning Charging Cable,1,14.95,08/22/19 10:43,"446 2nd St, Boston, MA 02215" -237276,Lightning Charging Cable,1,14.95,08/22/19 10:43,"446 2nd St, Boston, MA 02215" -237277,Lightning Charging Cable,1,14.95,08/02/19 21:15,"11 Ridge St, New York City, NY 10001" -237278,Bose SoundSport Headphones,1,99.99,08/24/19 10:50,"108 1st St, San Francisco, CA 94016" -237279,AAA Batteries (4-pack),1,2.99,08/02/19 21:47,"59 Forest St, San Francisco, CA 94016" -237280,Wired Headphones,1,11.99,08/13/19 07:52,"171 5th St, Atlanta, GA 30301" -237281,27in FHD Monitor,1,149.99,08/31/19 13:25,"883 Spruce St, Seattle, WA 98101" -237282,Apple Airpods Headphones,1,150,08/17/19 10:56,"469 Main St, Dallas, TX 75001" -237283,Apple Airpods Headphones,1,150,08/15/19 13:57,"314 12th St, San Francisco, CA 94016" -237284,Bose SoundSport Headphones,1,99.99,08/25/19 12:53,"960 Lake St, Boston, MA 02215" -237285,ThinkPad Laptop,1,999.99,08/05/19 20:30,"516 Spruce St, Boston, MA 02215" -237286,Macbook Pro Laptop,1,1700,08/13/19 21:34,"902 Madison St, Boston, MA 02215" -237287,Apple Airpods Headphones,1,150,08/21/19 19:19,"418 Maple St, San Francisco, CA 94016" -237288,Google Phone,1,600,08/20/19 14:33,"45 6th St, San Francisco, CA 94016" -237288,Wired Headphones,1,11.99,08/20/19 14:33,"45 6th St, San Francisco, CA 94016" -237289,Bose SoundSport Headphones,1,99.99,08/25/19 14:20,"120 Center St, San Francisco, CA 94016" -237290,Vareebadd Phone,1,400,08/21/19 15:16,"926 Ridge St, Dallas, TX 75001" -237291,Apple Airpods Headphones,1,150,08/09/19 22:00,"777 10th St, San Francisco, CA 94016" -237292,Flatscreen TV,1,300,08/09/19 20:58,"349 Maple St, Los Angeles, CA 90001" -237293,USB-C Charging Cable,1,11.95,08/19/19 19:59,"61 Pine St, Los Angeles, CA 90001" -237294,Apple Airpods Headphones,1,150,08/19/19 10:37,"726 Main St, Boston, MA 02215" -237295,AAA Batteries (4-pack),1,2.99,08/24/19 11:59,"935 Cherry St, Boston, MA 02215" -237295,27in FHD Monitor,1,149.99,08/24/19 11:59,"935 Cherry St, Boston, MA 02215" -237296,AA Batteries (4-pack),2,3.84,08/10/19 18:53,"124 Adams St, San Francisco, CA 94016" -237297,USB-C Charging Cable,3,11.95,08/16/19 21:16,"566 Adams St, San Francisco, CA 94016" -237298,Flatscreen TV,1,300,08/04/19 10:54,"318 Elm St, Dallas, TX 75001" -237298,USB-C Charging Cable,1,11.95,08/04/19 10:54,"318 Elm St, Dallas, TX 75001" -237299,USB-C Charging Cable,1,11.95,08/01/19 12:36,"961 River St, Austin, TX 73301" -237299,Wired Headphones,1,11.99,08/01/19 12:36,"961 River St, Austin, TX 73301" -237300,Wired Headphones,1,11.99,08/10/19 11:28,"247 Madison St, New York City, NY 10001" -237301,Macbook Pro Laptop,1,1700,08/24/19 22:45,"348 Pine St, Seattle, WA 98101" -237302,Wired Headphones,1,11.99,08/07/19 12:49,"215 Sunset St, New York City, NY 10001" -237303,27in FHD Monitor,1,149.99,08/06/19 18:27,"365 6th St, San Francisco, CA 94016" -237304,Lightning Charging Cable,1,14.95,08/27/19 09:13,"472 Lake St, Dallas, TX 75001" -237305,Wired Headphones,1,11.99,08/24/19 22:04,"787 Center St, San Francisco, CA 94016" -237306,iPhone,1,700,08/10/19 14:24,"121 14th St, Boston, MA 02215" -237307,Wired Headphones,1,11.99,08/06/19 23:54,"2 Hill St, New York City, NY 10001" -237308,20in Monitor,1,109.99,08/27/19 14:58,"556 Church St, San Francisco, CA 94016" -237309,27in 4K Gaming Monitor,1,389.99,08/25/19 21:53,"468 Forest St, Boston, MA 02215" -237310,Wired Headphones,1,11.99,08/24/19 02:01,"601 Chestnut St, Portland, OR 97035" -237311,USB-C Charging Cable,1,11.95,08/09/19 21:45,"423 Walnut St, Portland, OR 97035" -237312,LG Washing Machine,1,600.0,08/16/19 07:38,"767 5th St, Boston, MA 02215" -237313,AAA Batteries (4-pack),2,2.99,08/14/19 16:40,"581 Maple St, San Francisco, CA 94016" -237314,Wired Headphones,1,11.99,08/02/19 19:54,"62 Dogwood St, Dallas, TX 75001" -237315,Lightning Charging Cable,1,14.95,08/11/19 10:11,"493 13th St, San Francisco, CA 94016" -237316,Bose SoundSport Headphones,1,99.99,08/05/19 21:54,"677 Meadow St, Boston, MA 02215" -237317,Apple Airpods Headphones,1,150,08/16/19 14:03,"532 Spruce St, Seattle, WA 98101" -237318,34in Ultrawide Monitor,1,379.99,08/10/19 17:15,"123 Dogwood St, San Francisco, CA 94016" -237319,Google Phone,1,600,08/02/19 15:19,"696 Center St, San Francisco, CA 94016" -237319,USB-C Charging Cable,1,11.95,08/02/19 15:19,"696 Center St, San Francisco, CA 94016" -237320,Google Phone,1,600,08/27/19 12:54,"281 South St, Portland, OR 97035" -237321,ThinkPad Laptop,1,999.99,08/11/19 07:31,"695 Jackson St, San Francisco, CA 94016" -237322,Lightning Charging Cable,1,14.95,08/04/19 20:52,"109 Lakeview St, Dallas, TX 75001" -237323,Lightning Charging Cable,1,14.95,08/19/19 00:16,"664 Park St, Austin, TX 73301" -237324,Apple Airpods Headphones,1,150,08/27/19 12:44,"627 4th St, Boston, MA 02215" -237325,Apple Airpods Headphones,1,150,08/24/19 23:49,"799 Park St, San Francisco, CA 94016" -237326,Apple Airpods Headphones,1,150,08/07/19 16:54,"653 Walnut St, Dallas, TX 75001" -237327,34in Ultrawide Monitor,1,379.99,08/14/19 14:45,"245 Maple St, New York City, NY 10001" -237328,USB-C Charging Cable,1,11.95,08/05/19 16:25,"644 Sunset St, Boston, MA 02215" -237329,Bose SoundSport Headphones,1,99.99,08/25/19 02:30,"878 9th St, San Francisco, CA 94016" -237330,AAA Batteries (4-pack),1,2.99,08/06/19 13:34,"85 13th St, Los Angeles, CA 90001" -237331,Lightning Charging Cable,1,14.95,08/18/19 14:34,"358 Park St, San Francisco, CA 94016" -237332,AAA Batteries (4-pack),1,2.99,08/19/19 13:03,"357 Cherry St, Dallas, TX 75001" -237333,Wired Headphones,1,11.99,08/18/19 18:32,"514 12th St, San Francisco, CA 94016" -237334,Lightning Charging Cable,1,14.95,08/16/19 07:24,"465 Dogwood St, Atlanta, GA 30301" -237335,Apple Airpods Headphones,1,150,08/10/19 21:31,"306 Madison St, New York City, NY 10001" -237336,Wired Headphones,1,11.99,08/28/19 13:43,"496 Church St, San Francisco, CA 94016" -237337,Wired Headphones,1,11.99,08/22/19 22:05,"858 Meadow St, New York City, NY 10001" -237338,AA Batteries (4-pack),1,3.84,08/23/19 17:03,"543 7th St, San Francisco, CA 94016" -237338,27in FHD Monitor,1,149.99,08/23/19 17:03,"543 7th St, San Francisco, CA 94016" -237339,AAA Batteries (4-pack),1,2.99,08/04/19 19:44,"539 Willow St, Atlanta, GA 30301" -237340,Lightning Charging Cable,1,14.95,08/07/19 08:28,"613 Pine St, New York City, NY 10001" -237341,USB-C Charging Cable,1,11.95,08/03/19 21:02,"770 Park St, Los Angeles, CA 90001" -237342,27in FHD Monitor,1,149.99,08/09/19 23:35,"593 4th St, Seattle, WA 98101" -237343,AA Batteries (4-pack),1,3.84,08/07/19 20:11,"937 Forest St, Boston, MA 02215" -237344,Wired Headphones,1,11.99,08/15/19 22:11,"768 Lakeview St, Portland, ME 04101" -237345,20in Monitor,1,109.99,08/06/19 22:59,"86 2nd St, Seattle, WA 98101" -237346,USB-C Charging Cable,2,11.95,08/12/19 20:33,"924 14th St, Austin, TX 73301" -237347,USB-C Charging Cable,1,11.95,08/27/19 07:58,"392 10th St, Atlanta, GA 30301" -237348,AA Batteries (4-pack),1,3.84,08/29/19 09:55,"782 Hickory St, Portland, ME 04101" -237349,USB-C Charging Cable,1,11.95,08/30/19 15:00,"307 Chestnut St, Los Angeles, CA 90001" -237350,Bose SoundSport Headphones,1,99.99,08/14/19 18:23,"24 8th St, Portland, OR 97035" -237351,27in FHD Monitor,1,149.99,08/13/19 21:32,"515 Hickory St, San Francisco, CA 94016" -237352,Wired Headphones,1,11.99,08/21/19 14:08,"761 11th St, San Francisco, CA 94016" -237353,Lightning Charging Cable,1,14.95,08/25/19 17:51,"674 7th St, San Francisco, CA 94016" -237354,20in Monitor,1,109.99,08/31/19 12:07,"747 South St, Los Angeles, CA 90001" -237355,AAA Batteries (4-pack),1,2.99,08/09/19 10:01,"285 Lakeview St, Portland, OR 97035" -237356,USB-C Charging Cable,1,11.95,08/15/19 09:11,"179 Johnson St, Dallas, TX 75001" -237357,Lightning Charging Cable,1,14.95,08/19/19 12:03,"903 Church St, San Francisco, CA 94016" -237358,ThinkPad Laptop,1,999.99,08/13/19 19:01,"952 Highland St, San Francisco, CA 94016" -237359,USB-C Charging Cable,1,11.95,08/29/19 07:55,"919 Johnson St, San Francisco, CA 94016" -237360,iPhone,1,700,08/26/19 20:01,"891 12th St, Los Angeles, CA 90001" -237361,USB-C Charging Cable,1,11.95,08/27/19 15:56,"352 Sunset St, Portland, OR 97035" -237362,Lightning Charging Cable,2,14.95,08/28/19 14:44,"859 River St, Seattle, WA 98101" -237363,USB-C Charging Cable,3,11.95,08/26/19 13:08,"717 Park St, Los Angeles, CA 90001" -237364,USB-C Charging Cable,1,11.95,08/13/19 20:07,"554 11th St, San Francisco, CA 94016" -237365,Lightning Charging Cable,1,14.95,08/03/19 23:20,"605 Johnson St, Dallas, TX 75001" -237366,Flatscreen TV,1,300,08/08/19 18:10,"752 Center St, Seattle, WA 98101" -237367,Apple Airpods Headphones,1,150,08/28/19 15:32,"370 North St, San Francisco, CA 94016" -237368,Apple Airpods Headphones,1,150,08/09/19 17:38,"147 Hickory St, Los Angeles, CA 90001" -237369,USB-C Charging Cable,1,11.95,08/28/19 11:39,"104 Center St, Dallas, TX 75001" -237370,Apple Airpods Headphones,1,150,08/25/19 17:20,"172 13th St, Atlanta, GA 30301" -237371,Lightning Charging Cable,1,14.95,08/22/19 23:00,"791 Madison St, New York City, NY 10001" -237372,Wired Headphones,1,11.99,08/09/19 15:58,"760 West St, New York City, NY 10001" -237373,AAA Batteries (4-pack),1,2.99,08/08/19 21:38,"417 Meadow St, San Francisco, CA 94016" -237374,AAA Batteries (4-pack),1,2.99,08/01/19 10:56,"611 Forest St, San Francisco, CA 94016" -237375,USB-C Charging Cable,1,11.95,08/04/19 16:17,"784 Sunset St, Seattle, WA 98101" -237376,USB-C Charging Cable,1,11.95,08/31/19 14:04,"270 4th St, Atlanta, GA 30301" -237377,Bose SoundSport Headphones,1,99.99,08/31/19 17:12,"604 Chestnut St, San Francisco, CA 94016" -237378,34in Ultrawide Monitor,1,379.99,08/26/19 09:13,"741 13th St, San Francisco, CA 94016" -237379,AA Batteries (4-pack),1,3.84,08/01/19 09:35,"381 Willow St, Atlanta, GA 30301" -237380,Bose SoundSport Headphones,1,99.99,08/24/19 10:41,"162 2nd St, Seattle, WA 98101" -237381,USB-C Charging Cable,1,11.95,08/11/19 21:25,"466 1st St, New York City, NY 10001" -237382,27in 4K Gaming Monitor,1,389.99,08/10/19 16:56,"118 5th St, Seattle, WA 98101" -237383,Lightning Charging Cable,1,14.95,08/21/19 08:48,"608 South St, Portland, OR 97035" -237384,Wired Headphones,1,11.99,08/12/19 16:53,"985 Maple St, Seattle, WA 98101" -237385,Macbook Pro Laptop,1,1700,08/04/19 11:33,"40 Adams St, Portland, OR 97035" -237386,USB-C Charging Cable,2,11.95,08/05/19 14:15,"845 Willow St, Portland, OR 97035" -237387,Macbook Pro Laptop,1,1700,08/10/19 11:14,"320 Center St, New York City, NY 10001" -237388,USB-C Charging Cable,1,11.95,08/30/19 11:05,"491 5th St, San Francisco, CA 94016" -237389,AA Batteries (4-pack),1,3.84,08/01/19 13:17,"263 13th St, New York City, NY 10001" -237390,34in Ultrawide Monitor,1,379.99,08/04/19 07:30,"294 Wilson St, Austin, TX 73301" -237391,AAA Batteries (4-pack),1,2.99,08/11/19 12:01,"854 10th St, Los Angeles, CA 90001" -237392,27in FHD Monitor,1,149.99,08/04/19 20:30,"866 Jackson St, Austin, TX 73301" -237393,AAA Batteries (4-pack),1,2.99,08/09/19 20:49,"473 Jefferson St, San Francisco, CA 94016" -237394,USB-C Charging Cable,1,11.95,08/27/19 17:27,"975 Cedar St, Atlanta, GA 30301" -237395,AA Batteries (4-pack),1,3.84,08/26/19 16:56,"3 2nd St, San Francisco, CA 94016" -237396,27in FHD Monitor,1,149.99,08/04/19 15:41,"289 Lakeview St, Seattle, WA 98101" -237396,Bose SoundSport Headphones,1,99.99,08/04/19 15:41,"289 Lakeview St, Seattle, WA 98101" -237397,AAA Batteries (4-pack),1,2.99,08/10/19 09:01,"185 Lincoln St, Los Angeles, CA 90001" -237398,Lightning Charging Cable,1,14.95,08/20/19 20:41,"10 4th St, Seattle, WA 98101" -237399,Flatscreen TV,1,300,08/28/19 17:32,"434 12th St, Seattle, WA 98101" -237400,Flatscreen TV,1,300,08/31/19 15:07,"588 Jefferson St, New York City, NY 10001" -237401,USB-C Charging Cable,1,11.95,08/11/19 12:44,"356 Ridge St, San Francisco, CA 94016" -237402,USB-C Charging Cable,1,11.95,08/06/19 20:25,"409 12th St, Los Angeles, CA 90001" -237403,Lightning Charging Cable,1,14.95,08/31/19 10:06,"181 Elm St, San Francisco, CA 94016" -237404,Apple Airpods Headphones,1,150,08/24/19 13:52,"710 Lakeview St, Atlanta, GA 30301" -237405,27in 4K Gaming Monitor,1,389.99,08/15/19 10:52,"415 Ridge St, San Francisco, CA 94016" -237406,Wired Headphones,1,11.99,08/25/19 16:23,"155 Lincoln St, New York City, NY 10001" -237407,AAA Batteries (4-pack),1,2.99,08/24/19 23:56,"605 Elm St, New York City, NY 10001" -237408,Lightning Charging Cable,1,14.95,08/10/19 19:18,"455 Hill St, Dallas, TX 75001" -237409,Bose SoundSport Headphones,1,99.99,08/13/19 11:27,"906 8th St, San Francisco, CA 94016" -237410,AAA Batteries (4-pack),1,2.99,08/26/19 16:14,"737 North St, Los Angeles, CA 90001" -237411,Apple Airpods Headphones,1,150,08/23/19 18:08,"143 9th St, San Francisco, CA 94016" -237412,Google Phone,1,600,08/02/19 10:48,"720 Chestnut St, San Francisco, CA 94016" -237413,AAA Batteries (4-pack),2,2.99,08/08/19 08:53,"626 13th St, Los Angeles, CA 90001" -237414,Macbook Pro Laptop,1,1700,08/25/19 17:16,"111 Lincoln St, Seattle, WA 98101" -237415,Apple Airpods Headphones,1,150,08/12/19 15:09,"815 4th St, Atlanta, GA 30301" -237416,iPhone,1,700,08/18/19 16:30,"176 6th St, San Francisco, CA 94016" -237417,Apple Airpods Headphones,1,150,08/05/19 16:00,"260 Lake St, Atlanta, GA 30301" -237418,Wired Headphones,1,11.99,08/07/19 14:23,"305 Spruce St, Portland, ME 04101" -237419,Lightning Charging Cable,1,14.95,08/27/19 17:57,"151 River St, Los Angeles, CA 90001" -237420,AAA Batteries (4-pack),1,2.99,08/16/19 10:57,"87 Meadow St, Dallas, TX 75001" -237421,Flatscreen TV,1,300,08/11/19 14:21,"717 7th St, San Francisco, CA 94016" -237422,LG Dryer,1,600.0,08/04/19 18:00,"306 West St, New York City, NY 10001" -237423,27in 4K Gaming Monitor,1,389.99,08/23/19 15:39,"82 Walnut St, Dallas, TX 75001" -237424,34in Ultrawide Monitor,1,379.99,08/20/19 20:05,"369 4th St, Los Angeles, CA 90001" -237425,Google Phone,1,600,08/14/19 05:36,"224 2nd St, Boston, MA 02215" -237426,AA Batteries (4-pack),1,3.84,08/31/19 09:28,"352 12th St, Los Angeles, CA 90001" -237427,Wired Headphones,1,11.99,08/15/19 15:14,"416 Washington St, Portland, ME 04101" -237428,34in Ultrawide Monitor,1,379.99,08/22/19 12:23,"115 6th St, Los Angeles, CA 90001" -237429,Apple Airpods Headphones,1,150,08/23/19 13:48,"497 Jefferson St, San Francisco, CA 94016" -237430,27in 4K Gaming Monitor,1,389.99,08/03/19 09:39,"384 Johnson St, New York City, NY 10001" -237430,Lightning Charging Cable,1,14.95,08/03/19 09:39,"384 Johnson St, New York City, NY 10001" -237431,Lightning Charging Cable,1,14.95,08/21/19 21:15,"386 Meadow St, Dallas, TX 75001" -237432,USB-C Charging Cable,1,11.95,08/02/19 09:53,"506 12th St, San Francisco, CA 94016" -237433,AA Batteries (4-pack),2,3.84,08/02/19 13:57,"819 Spruce St, San Francisco, CA 94016" -237434,AA Batteries (4-pack),1,3.84,08/31/19 12:34,"551 West St, Atlanta, GA 30301" -237435,USB-C Charging Cable,1,11.95,08/21/19 18:46,"499 6th St, Atlanta, GA 30301" -237436,USB-C Charging Cable,1,11.95,08/18/19 19:41,"83 2nd St, Dallas, TX 75001" -237437,AAA Batteries (4-pack),2,2.99,08/23/19 19:14,"496 Main St, Seattle, WA 98101" -237438,27in 4K Gaming Monitor,1,389.99,08/08/19 15:09,"496 South St, Dallas, TX 75001" -237439,Bose SoundSport Headphones,1,99.99,08/07/19 14:26,"675 Lake St, Los Angeles, CA 90001" -237440,AAA Batteries (4-pack),1,2.99,08/11/19 19:50,"775 8th St, Portland, OR 97035" -237441,Wired Headphones,1,11.99,08/07/19 08:21,"404 Jackson St, Boston, MA 02215" -237442,USB-C Charging Cable,1,11.95,08/03/19 16:32,"484 Main St, San Francisco, CA 94016" -237443,Wired Headphones,1,11.99,08/16/19 11:13,"818 Lincoln St, Portland, ME 04101" -237444,Macbook Pro Laptop,1,1700,08/19/19 13:02,"820 Jefferson St, Los Angeles, CA 90001" -237445,USB-C Charging Cable,1,11.95,08/10/19 10:04,"337 Meadow St, San Francisco, CA 94016" -237446,AA Batteries (4-pack),1,3.84,08/19/19 15:40,"161 Lake St, San Francisco, CA 94016" -237447,Lightning Charging Cable,1,14.95,08/27/19 16:50,"286 Sunset St, New York City, NY 10001" -237448,Lightning Charging Cable,1,14.95,08/11/19 13:38,"428 14th St, Dallas, TX 75001" -237449,AA Batteries (4-pack),2,3.84,08/10/19 11:18,"36 North St, Dallas, TX 75001" -237450,27in 4K Gaming Monitor,1,389.99,08/13/19 06:53,"99 Spruce St, New York City, NY 10001" -237451,Wired Headphones,1,11.99,08/29/19 11:12,"987 Forest St, Los Angeles, CA 90001" -237452,Apple Airpods Headphones,1,150,08/22/19 11:00,"200 Jefferson St, San Francisco, CA 94016" -237453,AAA Batteries (4-pack),1,2.99,08/11/19 13:14,"582 Lakeview St, Seattle, WA 98101" -237454,27in 4K Gaming Monitor,1,389.99,08/28/19 09:49,"13 Main St, New York City, NY 10001" -237455,AA Batteries (4-pack),1,3.84,08/28/19 18:11,"159 1st St, New York City, NY 10001" -237456,USB-C Charging Cable,1,11.95,08/06/19 10:06,"772 Hickory St, New York City, NY 10001" -237457,Wired Headphones,1,11.99,08/30/19 13:42,"116 13th St, Portland, OR 97035" -237458,AA Batteries (4-pack),2,3.84,08/03/19 03:59,"679 Adams St, San Francisco, CA 94016" -237459,Macbook Pro Laptop,1,1700,08/25/19 07:30,"478 Forest St, Boston, MA 02215" -237460,AA Batteries (4-pack),1,3.84,08/13/19 15:45,"417 2nd St, San Francisco, CA 94016" -237461,Apple Airpods Headphones,1,150,08/25/19 23:29,"167 Wilson St, Los Angeles, CA 90001" -237462,34in Ultrawide Monitor,1,379.99,08/21/19 00:09,"943 10th St, Boston, MA 02215" -237463,Bose SoundSport Headphones,1,99.99,08/11/19 22:02,"45 Center St, Dallas, TX 75001" -237464,Wired Headphones,1,11.99,08/11/19 18:54,"673 River St, Dallas, TX 75001" -237465,34in Ultrawide Monitor,1,379.99,08/15/19 04:59,"266 South St, Los Angeles, CA 90001" -237466,AA Batteries (4-pack),1,3.84,08/25/19 22:11,"57 Washington St, Los Angeles, CA 90001" -237467,Apple Airpods Headphones,1,150,08/30/19 18:37,"975 West St, San Francisco, CA 94016" -237468,USB-C Charging Cable,2,11.95,08/11/19 17:39,"48 Maple St, Dallas, TX 75001" -237469,Vareebadd Phone,1,400,08/13/19 16:56,"752 Jackson St, Los Angeles, CA 90001" -237469,34in Ultrawide Monitor,1,379.99,08/13/19 16:56,"752 Jackson St, Los Angeles, CA 90001" -237470,Bose SoundSport Headphones,1,99.99,08/25/19 20:44,"549 8th St, Los Angeles, CA 90001" -237471,Apple Airpods Headphones,1,150,08/17/19 21:34,"877 Ridge St, San Francisco, CA 94016" -237472,Apple Airpods Headphones,1,150,08/05/19 09:37,"38 10th St, Los Angeles, CA 90001" -237473,AAA Batteries (4-pack),2,2.99,08/11/19 21:56,"451 Spruce St, San Francisco, CA 94016" -237474,AA Batteries (4-pack),3,3.84,08/01/19 10:50,"474 Cedar St, Boston, MA 02215" -237475,Lightning Charging Cable,1,14.95,08/22/19 15:25,"817 Chestnut St, Los Angeles, CA 90001" -237476,USB-C Charging Cable,1,11.95,08/19/19 15:06,"41 North St, Los Angeles, CA 90001" -237477,ThinkPad Laptop,1,999.99,08/07/19 18:21,"129 Pine St, San Francisco, CA 94016" -237478,Wired Headphones,1,11.99,08/24/19 21:35,"16 Park St, San Francisco, CA 94016" -237479,Apple Airpods Headphones,1,150,08/19/19 13:46,"130 9th St, Seattle, WA 98101" -237480,Lightning Charging Cable,3,14.95,08/08/19 06:15,"124 8th St, New York City, NY 10001" -237481,AAA Batteries (4-pack),1,2.99,08/17/19 21:40,"561 13th St, New York City, NY 10001" -237482,AAA Batteries (4-pack),2,2.99,08/14/19 12:50,"133 12th St, Boston, MA 02215" -237483,Lightning Charging Cable,1,14.95,08/04/19 08:06,"687 Wilson St, San Francisco, CA 94016" -237484,USB-C Charging Cable,1,11.95,08/18/19 22:35,"722 Lincoln St, Seattle, WA 98101" -237485,Bose SoundSport Headphones,1,99.99,08/22/19 04:07,"866 Meadow St, Portland, OR 97035" -237486,USB-C Charging Cable,1,11.95,08/30/19 19:50,"552 North St, Seattle, WA 98101" -237487,27in 4K Gaming Monitor,1,389.99,08/11/19 18:47,"340 Adams St, Atlanta, GA 30301" -237488,AAA Batteries (4-pack),1,2.99,08/03/19 12:36,"94 Adams St, New York City, NY 10001" -237489,27in FHD Monitor,1,149.99,08/13/19 18:42,"834 5th St, New York City, NY 10001" -237490,AAA Batteries (4-pack),1,2.99,08/31/19 00:21,"715 4th St, Atlanta, GA 30301" -237491,27in 4K Gaming Monitor,1,389.99,08/14/19 13:06,"850 Hickory St, San Francisco, CA 94016" -237492,27in 4K Gaming Monitor,1,389.99,08/04/19 10:11,"536 1st St, Los Angeles, CA 90001" -237493,AA Batteries (4-pack),1,3.84,08/20/19 01:37,"997 River St, New York City, NY 10001" -237494,Flatscreen TV,1,300,08/17/19 14:58,"28 South St, Austin, TX 73301" -237495,AAA Batteries (4-pack),1,2.99,08/15/19 16:17,"688 11th St, Boston, MA 02215" -237496,AAA Batteries (4-pack),4,2.99,08/14/19 13:43,"11 Wilson St, Boston, MA 02215" -237497,Apple Airpods Headphones,1,150,08/28/19 21:23,"421 Church St, Los Angeles, CA 90001" -237498,AA Batteries (4-pack),1,3.84,08/16/19 09:31,"365 West St, San Francisco, CA 94016" -237499,Lightning Charging Cable,1,14.95,08/29/19 16:34,"70 Hickory St, New York City, NY 10001" -237500,iPhone,1,700,08/31/19 07:40,"965 Main St, Los Angeles, CA 90001" -237501,AAA Batteries (4-pack),2,2.99,08/19/19 19:30,"187 Spruce St, San Francisco, CA 94016" -237502,USB-C Charging Cable,1,11.95,08/06/19 17:28,"975 Ridge St, San Francisco, CA 94016" -237503,Bose SoundSport Headphones,1,99.99,08/10/19 10:33,"710 Sunset St, Portland, OR 97035" -237503,Lightning Charging Cable,1,14.95,08/10/19 10:33,"710 Sunset St, Portland, OR 97035" -237504,Apple Airpods Headphones,1,150,08/14/19 14:16,"526 1st St, Seattle, WA 98101" -237505,AA Batteries (4-pack),2,3.84,08/16/19 16:05,"676 Jackson St, Los Angeles, CA 90001" -237506,Bose SoundSport Headphones,1,99.99,08/31/19 17:17,"771 Madison St, San Francisco, CA 94016" -237507,Apple Airpods Headphones,1,150,08/29/19 20:24,"657 10th St, Austin, TX 73301" -237508,34in Ultrawide Monitor,1,379.99,08/26/19 20:38,"542 9th St, Austin, TX 73301" -237509,iPhone,1,700,08/16/19 17:55,"74 West St, San Francisco, CA 94016" -237510,Lightning Charging Cable,1,14.95,08/05/19 14:35,"596 Spruce St, New York City, NY 10001" -237511,27in FHD Monitor,1,149.99,08/21/19 15:58,"336 6th St, New York City, NY 10001" -237512,Flatscreen TV,1,300,08/03/19 20:04,"694 Madison St, Los Angeles, CA 90001" -237513,Apple Airpods Headphones,1,150,08/10/19 07:49,"757 Lakeview St, San Francisco, CA 94016" -237514,AAA Batteries (4-pack),1,2.99,08/15/19 13:32,"161 Willow St, Boston, MA 02215" -237515,Google Phone,1,600,08/17/19 14:30,"539 Lake St, New York City, NY 10001" -237516,AAA Batteries (4-pack),1,2.99,08/03/19 15:47,"906 Meadow St, Dallas, TX 75001" -237517,AA Batteries (4-pack),2,3.84,08/29/19 12:17,"72 Church St, Boston, MA 02215" -237518,AA Batteries (4-pack),1,3.84,08/12/19 20:11,"988 Johnson St, Austin, TX 73301" -237519,Wired Headphones,1,11.99,08/22/19 21:51,"527 13th St, Los Angeles, CA 90001" -237520,USB-C Charging Cable,1,11.95,08/15/19 20:14,"888 2nd St, Atlanta, GA 30301" -237521,USB-C Charging Cable,1,11.95,08/20/19 14:43,"132 South St, Boston, MA 02215" -237522,AAA Batteries (4-pack),1,2.99,08/14/19 20:34,"919 9th St, New York City, NY 10001" -237523,AAA Batteries (4-pack),2,2.99,08/23/19 11:58,"163 9th St, Atlanta, GA 30301" -237524,Wired Headphones,1,11.99,08/02/19 04:42,"589 Maple St, Boston, MA 02215" -237525,Flatscreen TV,1,300,08/05/19 16:57,"251 Lakeview St, New York City, NY 10001" -237526,iPhone,1,700,08/01/19 17:07,"145 Meadow St, Austin, TX 73301" -237527,LG Dryer,1,600.0,08/12/19 08:23,"355 Chestnut St, Los Angeles, CA 90001" -237528,Lightning Charging Cable,1,14.95,08/05/19 16:21,"887 Park St, San Francisco, CA 94016" -237529,Lightning Charging Cable,1,14.95,08/04/19 16:42,"661 Forest St, Seattle, WA 98101" -237530,AA Batteries (4-pack),1,3.84,08/30/19 22:24,"613 Lake St, San Francisco, CA 94016" -237531,Lightning Charging Cable,1,14.95,08/26/19 19:01,"683 Sunset St, San Francisco, CA 94016" -237532,Vareebadd Phone,1,400,08/30/19 18:52,"215 Chestnut St, Seattle, WA 98101" -237533,USB-C Charging Cable,1,11.95,08/12/19 00:27,"427 Lake St, Boston, MA 02215" -237534,Apple Airpods Headphones,1,150,08/28/19 08:18,"650 Adams St, San Francisco, CA 94016" -237535,27in FHD Monitor,1,149.99,08/26/19 02:19,"393 8th St, Austin, TX 73301" -237536,Bose SoundSport Headphones,1,99.99,08/11/19 17:29,"83 Church St, New York City, NY 10001" -237537,Flatscreen TV,1,300,08/27/19 17:20,"945 Sunset St, Dallas, TX 75001" -237538,USB-C Charging Cable,1,11.95,08/11/19 19:13,"936 Forest St, Atlanta, GA 30301" -237539,Wired Headphones,1,11.99,08/11/19 08:49,"844 Elm St, San Francisco, CA 94016" -237540,Vareebadd Phone,1,400,08/24/19 17:54,"136 2nd St, San Francisco, CA 94016" -237540,USB-C Charging Cable,1,11.95,08/24/19 17:54,"136 2nd St, San Francisco, CA 94016" -237541,27in 4K Gaming Monitor,1,389.99,08/19/19 18:21,"933 Center St, Los Angeles, CA 90001" -237542,Lightning Charging Cable,1,14.95,08/05/19 14:28,"743 Dogwood St, San Francisco, CA 94016" -237543,ThinkPad Laptop,1,999.99,08/01/19 22:06,"157 Spruce St, San Francisco, CA 94016" -237544,Bose SoundSport Headphones,1,99.99,08/04/19 14:38,"701 Willow St, San Francisco, CA 94016" -237545,Bose SoundSport Headphones,1,99.99,08/13/19 15:50,"409 2nd St, Atlanta, GA 30301" -237546,AAA Batteries (4-pack),2,2.99,08/03/19 08:56,"355 Washington St, Atlanta, GA 30301" -237547,AAA Batteries (4-pack),1,2.99,08/27/19 16:17,"568 Dogwood St, Atlanta, GA 30301" -237548,AA Batteries (4-pack),1,3.84,08/28/19 18:38,"851 Spruce St, New York City, NY 10001" -237549,AAA Batteries (4-pack),1,2.99,08/22/19 12:55,"137 10th St, Dallas, TX 75001" -237550,Bose SoundSport Headphones,1,99.99,08/21/19 10:10,"804 Chestnut St, San Francisco, CA 94016" -237551,iPhone,1,700,08/18/19 19:55,"743 Madison St, San Francisco, CA 94016" -237552,AAA Batteries (4-pack),1,2.99,08/18/19 17:57,"915 1st St, San Francisco, CA 94016" -237553,Apple Airpods Headphones,1,150,08/18/19 19:02,"679 13th St, San Francisco, CA 94016" -237554,AAA Batteries (4-pack),2,2.99,08/28/19 22:03,"737 13th St, San Francisco, CA 94016" -237555,iPhone,1,700,08/20/19 07:42,"897 Park St, San Francisco, CA 94016" -237556,iPhone,1,700,08/23/19 19:20,"503 Washington St, New York City, NY 10001" -237556,Lightning Charging Cable,1,14.95,08/23/19 19:20,"503 Washington St, New York City, NY 10001" -237557,Lightning Charging Cable,1,14.95,08/22/19 22:22,"555 Sunset St, San Francisco, CA 94016" -237558,Macbook Pro Laptop,1,1700,08/31/19 20:46,"714 Lakeview St, Atlanta, GA 30301" -237559,27in 4K Gaming Monitor,1,389.99,08/15/19 22:58,"73 9th St, New York City, NY 10001" -237560,USB-C Charging Cable,1,11.95,08/09/19 00:26,"397 Lincoln St, San Francisco, CA 94016" -237560,USB-C Charging Cable,1,11.95,08/09/19 00:26,"397 Lincoln St, San Francisco, CA 94016" -237561,AAA Batteries (4-pack),1,2.99,08/03/19 14:59,"309 Church St, Atlanta, GA 30301" -237562,Apple Airpods Headphones,1,150,08/15/19 10:19,"509 Walnut St, Boston, MA 02215" -237563,Lightning Charging Cable,1,14.95,08/21/19 11:34,"240 Adams St, Austin, TX 73301" -237564,20in Monitor,1,109.99,08/25/19 12:05,"12 Madison St, San Francisco, CA 94016" -237565,USB-C Charging Cable,1,11.95,08/02/19 22:24,"27 4th St, New York City, NY 10001" -237566,Bose SoundSport Headphones,1,99.99,08/15/19 10:07,"936 11th St, San Francisco, CA 94016" -237567,Bose SoundSport Headphones,1,99.99,08/01/19 19:42,"141 4th St, Boston, MA 02215" -237568,Bose SoundSport Headphones,1,99.99,08/04/19 12:15,"582 10th St, Atlanta, GA 30301" -237569,AA Batteries (4-pack),1,3.84,08/29/19 12:55,"514 Washington St, Boston, MA 02215" -237570,Macbook Pro Laptop,1,1700,08/03/19 09:20,"495 12th St, New York City, NY 10001" -237571,AA Batteries (4-pack),1,3.84,08/24/19 11:05,"676 9th St, San Francisco, CA 94016" -237572,AA Batteries (4-pack),2,3.84,08/13/19 02:59,"102 Elm St, Dallas, TX 75001" -237573,Bose SoundSport Headphones,1,99.99,08/05/19 20:38,"278 8th St, Los Angeles, CA 90001" -237574,LG Dryer,1,600.0,08/05/19 13:30,"812 Lakeview St, San Francisco, CA 94016" -237575,AA Batteries (4-pack),1,3.84,08/08/19 15:22,"231 Highland St, San Francisco, CA 94016" -237576,Flatscreen TV,1,300,08/03/19 18:25,"299 Ridge St, Boston, MA 02215" -237577,AA Batteries (4-pack),1,3.84,08/24/19 13:52,"581 14th St, Portland, OR 97035" -237578,Apple Airpods Headphones,1,150,08/02/19 02:30,"99 Chestnut St, San Francisco, CA 94016" -237579,Apple Airpods Headphones,1,150,08/28/19 23:25,"871 Hill St, Dallas, TX 75001" -237580,Apple Airpods Headphones,1,150,08/31/19 20:40,"504 13th St, Dallas, TX 75001" -237581,Lightning Charging Cable,1,14.95,08/15/19 16:24,"787 Johnson St, Los Angeles, CA 90001" -237582,Bose SoundSport Headphones,1,99.99,08/23/19 11:37,"47 11th St, Austin, TX 73301" -237583,20in Monitor,1,109.99,08/02/19 17:49,"22 Sunset St, San Francisco, CA 94016" -237584,Google Phone,1,600,08/16/19 11:08,"892 Hickory St, Atlanta, GA 30301" -237584,USB-C Charging Cable,1,11.95,08/16/19 11:08,"892 Hickory St, Atlanta, GA 30301" -237585,AAA Batteries (4-pack),1,2.99,08/29/19 18:11,"109 8th St, Seattle, WA 98101" -237586,Bose SoundSport Headphones,1,99.99,08/10/19 23:00,"259 Adams St, San Francisco, CA 94016" -237587,LG Washing Machine,1,600.0,08/10/19 18:34,"289 Lincoln St, Boston, MA 02215" -237588,Apple Airpods Headphones,1,150,08/16/19 12:15,"572 Cedar St, San Francisco, CA 94016" -237589,ThinkPad Laptop,1,999.99,08/11/19 10:44,"69 Chestnut St, Portland, ME 04101" -237590,Lightning Charging Cable,1,14.95,08/01/19 08:19,"62 Sunset St, Seattle, WA 98101" -237591,Apple Airpods Headphones,1,150,08/25/19 04:33,"829 1st St, Portland, OR 97035" -237592,AA Batteries (4-pack),1,3.84,08/19/19 14:36,"431 5th St, Atlanta, GA 30301" -237593,AA Batteries (4-pack),2,3.84,08/04/19 10:23,"36 Willow St, San Francisco, CA 94016" -237594,Lightning Charging Cable,1,14.95,08/16/19 09:28,"606 Elm St, Austin, TX 73301" -237595,Apple Airpods Headphones,1,150,08/26/19 21:29,"558 Spruce St, New York City, NY 10001" -237596,Lightning Charging Cable,1,14.95,08/13/19 11:30,"34 Cedar St, Boston, MA 02215" -237597,AAA Batteries (4-pack),5,2.99,08/31/19 12:29,"198 6th St, Boston, MA 02215" -237598,Bose SoundSport Headphones,1,99.99,08/27/19 19:02,"416 Pine St, San Francisco, CA 94016" -237599,Bose SoundSport Headphones,1,99.99,08/13/19 10:43,"188 2nd St, Atlanta, GA 30301" -237600,Apple Airpods Headphones,1,150,08/30/19 20:58,"943 Madison St, San Francisco, CA 94016" -237601,AA Batteries (4-pack),1,3.84,08/06/19 18:38,"567 River St, Los Angeles, CA 90001" -237602,LG Dryer,1,600.0,08/09/19 03:48,"413 13th St, Los Angeles, CA 90001" -237603,Apple Airpods Headphones,1,150,08/29/19 12:03,"333 9th St, Atlanta, GA 30301" -237604,27in FHD Monitor,1,149.99,08/22/19 00:00,"514 Johnson St, New York City, NY 10001" -237605,Apple Airpods Headphones,1,150,08/24/19 16:50,"931 Washington St, San Francisco, CA 94016" -237606,USB-C Charging Cable,1,11.95,08/14/19 13:16,"741 12th St, San Francisco, CA 94016" -237607,Apple Airpods Headphones,1,150,08/26/19 18:23,"791 12th St, San Francisco, CA 94016" -237608,ThinkPad Laptop,1,999.99,08/16/19 22:28,"113 4th St, Dallas, TX 75001" -237609,Apple Airpods Headphones,1,150,08/03/19 21:37,"747 Hill St, New York City, NY 10001" -237610,34in Ultrawide Monitor,1,379.99,08/20/19 16:55,"289 Lakeview St, New York City, NY 10001" -237611,Lightning Charging Cable,1,14.95,08/26/19 11:37,"451 2nd St, Los Angeles, CA 90001" -237612,USB-C Charging Cable,1,11.95,08/13/19 18:31,"790 North St, Portland, ME 04101" -237613,USB-C Charging Cable,1,11.95,08/05/19 15:20,"382 Dogwood St, Portland, OR 97035" -237614,Bose SoundSport Headphones,1,99.99,08/29/19 06:43,"902 13th St, Los Angeles, CA 90001" -237615,Lightning Charging Cable,1,14.95,08/19/19 14:10,"243 1st St, Los Angeles, CA 90001" -237616,27in FHD Monitor,1,149.99,08/14/19 08:35,"28 4th St, Boston, MA 02215" -237617,Wired Headphones,1,11.99,08/06/19 13:01,"833 Forest St, San Francisco, CA 94016" -237618,Google Phone,1,600,08/10/19 18:02,"227 9th St, Boston, MA 02215" -237619,Wired Headphones,1,11.99,08/09/19 21:23,"57 10th St, Dallas, TX 75001" -237620,Apple Airpods Headphones,1,150,08/06/19 20:56,"539 Maple St, Portland, ME 04101" -237621,USB-C Charging Cable,1,11.95,08/31/19 19:52,"366 5th St, Boston, MA 02215" -237622,AAA Batteries (4-pack),2,2.99,08/01/19 20:28,"17 Chestnut St, Dallas, TX 75001" -237623,Lightning Charging Cable,1,14.95,08/02/19 18:46,"805 Forest St, Austin, TX 73301" -237624,20in Monitor,1,109.99,08/02/19 18:43,"670 Wilson St, New York City, NY 10001" -237625,Wired Headphones,1,11.99,08/10/19 08:14,"204 Main St, Atlanta, GA 30301" -237626,Flatscreen TV,1,300,08/28/19 15:33,"89 9th St, San Francisco, CA 94016" -237627,Wired Headphones,2,11.99,08/16/19 14:22,"283 Sunset St, Los Angeles, CA 90001" -237628,Lightning Charging Cable,1,14.95,08/16/19 16:31,"722 Main St, Austin, TX 73301" -237629,AAA Batteries (4-pack),1,2.99,08/09/19 23:24,"13 Cedar St, Seattle, WA 98101" -237629,USB-C Charging Cable,1,11.95,08/09/19 23:24,"13 Cedar St, Seattle, WA 98101" -237630,Flatscreen TV,1,300,08/23/19 14:18,"148 12th St, New York City, NY 10001" -237631,AA Batteries (4-pack),2,3.84,08/15/19 09:48,"73 Willow St, Austin, TX 73301" -237632,20in Monitor,1,109.99,08/05/19 05:35,"477 8th St, San Francisco, CA 94016" -237633,AAA Batteries (4-pack),3,2.99,08/09/19 14:29,"952 6th St, Austin, TX 73301" -237634,27in FHD Monitor,1,149.99,08/01/19 14:28,"364 Lincoln St, Los Angeles, CA 90001" -237635,Lightning Charging Cable,1,14.95,08/12/19 06:46,"740 4th St, Austin, TX 73301" -237636,Lightning Charging Cable,1,14.95,08/17/19 23:50,"566 6th St, San Francisco, CA 94016" -237637,Wired Headphones,1,11.99,08/17/19 22:17,"307 8th St, New York City, NY 10001" -237638,Wired Headphones,1,11.99,08/24/19 15:08,"917 Chestnut St, Boston, MA 02215" -237639,AAA Batteries (4-pack),2,2.99,08/05/19 22:18,"660 Church St, Portland, OR 97035" -237640,AA Batteries (4-pack),1,3.84,08/12/19 04:25,"984 Lincoln St, New York City, NY 10001" -237641,AA Batteries (4-pack),1,3.84,08/08/19 09:55,"939 Wilson St, Boston, MA 02215" -237642,34in Ultrawide Monitor,1,379.99,08/13/19 12:54,"542 11th St, Los Angeles, CA 90001" -237643,Lightning Charging Cable,1,14.95,08/24/19 18:14,"96 Jefferson St, Los Angeles, CA 90001" -237644,USB-C Charging Cable,2,11.95,08/31/19 11:34,"289 Johnson St, Boston, MA 02215" -237645,Bose SoundSport Headphones,1,99.99,08/25/19 19:00,"316 Main St, Dallas, TX 75001" -237646,ThinkPad Laptop,1,999.99,08/13/19 20:16,"370 2nd St, San Francisco, CA 94016" -237647,AAA Batteries (4-pack),1,2.99,08/03/19 10:48,"301 7th St, Boston, MA 02215" -237648,34in Ultrawide Monitor,1,379.99,08/02/19 19:32,"457 Lincoln St, Los Angeles, CA 90001" -237649,Macbook Pro Laptop,1,1700,08/03/19 20:32,"664 Church St, New York City, NY 10001" -237650,USB-C Charging Cable,1,11.95,08/04/19 10:47,"909 Spruce St, Dallas, TX 75001" -237651,Lightning Charging Cable,1,14.95,08/08/19 14:52,"109 Center St, New York City, NY 10001" -237652,AA Batteries (4-pack),1,3.84,08/12/19 19:40,"848 Lakeview St, Boston, MA 02215" -237653,AA Batteries (4-pack),1,3.84,08/29/19 14:56,"93 10th St, San Francisco, CA 94016" -237654,AAA Batteries (4-pack),7,2.99,08/12/19 15:07,"266 Ridge St, Dallas, TX 75001" -237655,Macbook Pro Laptop,1,1700,08/18/19 11:09,"841 Park St, Boston, MA 02215" -237656,AA Batteries (4-pack),1,3.84,08/11/19 10:35,"562 Park St, Boston, MA 02215" -237657,Lightning Charging Cable,1,14.95,08/22/19 09:32,"444 Ridge St, Los Angeles, CA 90001" -237658,USB-C Charging Cable,1,11.95,08/05/19 08:28,"854 13th St, Boston, MA 02215" -237659,20in Monitor,1,109.99,08/06/19 09:16,"387 River St, Seattle, WA 98101" -237660,Apple Airpods Headphones,1,150,08/04/19 15:11,"958 Chestnut St, San Francisco, CA 94016" -237661,Lightning Charging Cable,1,14.95,08/27/19 16:38,"668 Cherry St, New York City, NY 10001" -237662,AA Batteries (4-pack),1,3.84,08/23/19 17:55,"650 1st St, New York City, NY 10001" -237663,Wired Headphones,1,11.99,08/14/19 12:21,"467 Park St, Portland, OR 97035" -237664,AA Batteries (4-pack),1,3.84,08/26/19 12:55,"510 Meadow St, New York City, NY 10001" -237665,AA Batteries (4-pack),1,3.84,08/17/19 21:57,"120 Cherry St, Los Angeles, CA 90001" -237666,ThinkPad Laptop,1,999.99,08/30/19 10:33,"391 Meadow St, Los Angeles, CA 90001" -237667,27in FHD Monitor,1,149.99,08/27/19 12:25,"41 North St, Atlanta, GA 30301" -237668,USB-C Charging Cable,1,11.95,08/23/19 10:32,"611 Maple St, Dallas, TX 75001" -237669,Vareebadd Phone,1,400,08/18/19 12:31,"623 13th St, Boston, MA 02215" -237670,20in Monitor,1,109.99,08/22/19 11:35,"780 8th St, San Francisco, CA 94016" -237671,Flatscreen TV,1,300,08/07/19 15:06,"700 Lincoln St, New York City, NY 10001" -237672,Google Phone,1,600,08/09/19 16:42,"909 Willow St, New York City, NY 10001" -237673,USB-C Charging Cable,1,11.95,08/25/19 11:33,"343 Adams St, New York City, NY 10001" -237674,27in FHD Monitor,1,149.99,08/27/19 17:11,"353 6th St, San Francisco, CA 94016" -237675,AA Batteries (4-pack),1,3.84,08/13/19 11:51,"845 10th St, San Francisco, CA 94016" -237676,Lightning Charging Cable,1,14.95,08/10/19 04:03,"97 Washington St, New York City, NY 10001" -237677,AAA Batteries (4-pack),1,2.99,08/19/19 17:02,"786 West St, Los Angeles, CA 90001" -237678,AA Batteries (4-pack),1,3.84,08/29/19 19:00,"382 Elm St, Dallas, TX 75001" -237679,iPhone,1,700,08/30/19 00:21,"621 Johnson St, New York City, NY 10001" -237679,Lightning Charging Cable,2,14.95,08/30/19 00:21,"621 Johnson St, New York City, NY 10001" -237680,AAA Batteries (4-pack),1,2.99,08/25/19 14:44,"896 12th St, San Francisco, CA 94016" -237681,AAA Batteries (4-pack),1,2.99,08/26/19 00:35,"444 North St, San Francisco, CA 94016" -237682,Wired Headphones,1,11.99,08/06/19 01:24,"279 Forest St, Boston, MA 02215" -237683,Wired Headphones,1,11.99,08/11/19 19:38,"680 Main St, Boston, MA 02215" -237684,AAA Batteries (4-pack),1,2.99,08/11/19 18:26,"895 Maple St, Seattle, WA 98101" -237685,AA Batteries (4-pack),1,3.84,08/26/19 20:29,"186 Hill St, San Francisco, CA 94016" -237686,Apple Airpods Headphones,1,150,08/06/19 12:12,"769 8th St, Seattle, WA 98101" -237687,Lightning Charging Cable,1,14.95,08/31/19 17:00,"233 13th St, Seattle, WA 98101" -237688,Apple Airpods Headphones,1,150,08/28/19 16:49,"232 North St, Seattle, WA 98101" -237689,Lightning Charging Cable,1,14.95,08/29/19 23:10,"582 Adams St, Dallas, TX 75001" -237690,Wired Headphones,1,11.99,08/15/19 12:19,"301 Lincoln St, Los Angeles, CA 90001" -237691,AA Batteries (4-pack),3,3.84,08/19/19 19:55,"820 Pine St, Atlanta, GA 30301" -237692,Google Phone,1,600,08/20/19 08:02,"309 12th St, Los Angeles, CA 90001" -237692,USB-C Charging Cable,1,11.95,08/20/19 08:02,"309 12th St, Los Angeles, CA 90001" -237693,34in Ultrawide Monitor,1,379.99,08/24/19 21:16,"603 Spruce St, New York City, NY 10001" -237694,AAA Batteries (4-pack),1,2.99,08/12/19 08:12,"493 1st St, Los Angeles, CA 90001" -237695,Bose SoundSport Headphones,1,99.99,08/20/19 20:57,"233 Cherry St, Atlanta, GA 30301" -237696,Bose SoundSport Headphones,1,99.99,08/19/19 15:15,"380 Hill St, New York City, NY 10001" -237697,Bose SoundSport Headphones,1,99.99,08/10/19 12:34,"641 1st St, Los Angeles, CA 90001" -237698,Wired Headphones,1,11.99,08/23/19 17:06,"334 Sunset St, Seattle, WA 98101" -237699,USB-C Charging Cable,1,11.95,08/22/19 10:18,"716 Walnut St, San Francisco, CA 94016" -237700,AA Batteries (4-pack),1,3.84,08/12/19 19:51,"325 North St, New York City, NY 10001" -237701,Apple Airpods Headphones,1,150,08/23/19 10:48,"331 12th St, San Francisco, CA 94016" -237702,LG Washing Machine,1,600.0,08/02/19 16:48,"3 Meadow St, San Francisco, CA 94016" -237703,27in FHD Monitor,1,149.99,08/11/19 14:49,"160 11th St, New York City, NY 10001" -237704,AAA Batteries (4-pack),1,2.99,08/14/19 20:38,"498 Washington St, Austin, TX 73301" -237705,AAA Batteries (4-pack),2,2.99,08/04/19 22:50,"704 Hill St, Seattle, WA 98101" -237706,ThinkPad Laptop,1,999.99,08/16/19 10:30,"766 Elm St, New York City, NY 10001" -237707,Apple Airpods Headphones,1,150,08/29/19 15:04,"617 4th St, San Francisco, CA 94016" -237708,USB-C Charging Cable,1,11.95,08/27/19 13:44,"874 11th St, San Francisco, CA 94016" -237709,Apple Airpods Headphones,1,150,08/23/19 16:30,"874 Adams St, Boston, MA 02215" -237710,Lightning Charging Cable,1,14.95,08/21/19 20:30,"388 Park St, Los Angeles, CA 90001" -237711,Flatscreen TV,1,300,08/23/19 13:42,"749 Elm St, San Francisco, CA 94016" -237712,20in Monitor,1,109.99,08/28/19 22:07,"98 Walnut St, Atlanta, GA 30301" -237713,Bose SoundSport Headphones,1,99.99,08/18/19 19:17,"926 11th St, Atlanta, GA 30301" -237714,ThinkPad Laptop,1,999.99,08/31/19 22:43,"316 Walnut St, San Francisco, CA 94016" -237715,Apple Airpods Headphones,1,150,08/25/19 21:18,"77 Willow St, Boston, MA 02215" -237716,AA Batteries (4-pack),3,3.84,08/28/19 19:02,"524 Washington St, Los Angeles, CA 90001" -237717,AAA Batteries (4-pack),1,2.99,08/30/19 10:05,"234 Madison St, Austin, TX 73301" -237718,AAA Batteries (4-pack),2,2.99,08/27/19 16:46,"564 Forest St, Boston, MA 02215" -237719,Bose SoundSport Headphones,1,99.99,08/30/19 20:17,"256 8th St, New York City, NY 10001" -237720,20in Monitor,1,109.99,08/07/19 11:01,"569 Main St, Portland, ME 04101" -237721,Lightning Charging Cable,1,14.95,08/25/19 05:49,"472 9th St, San Francisco, CA 94016" -237722,Apple Airpods Headphones,1,150,08/16/19 15:18,"517 Spruce St, Seattle, WA 98101" -237723,27in FHD Monitor,1,149.99,08/28/19 18:35,"171 13th St, San Francisco, CA 94016" -237724,Wired Headphones,2,11.99,08/12/19 20:02,"950 Willow St, Boston, MA 02215" -237725,USB-C Charging Cable,2,11.95,08/13/19 13:02,"585 South St, Boston, MA 02215" -237726,AA Batteries (4-pack),1,3.84,08/16/19 18:16,"474 2nd St, Dallas, TX 75001" -237727,USB-C Charging Cable,1,11.95,08/17/19 19:26,"700 8th St, San Francisco, CA 94016" -237728,Bose SoundSport Headphones,1,99.99,08/10/19 11:13,"631 Park St, Seattle, WA 98101" -237729,AA Batteries (4-pack),2,3.84,08/22/19 18:54,"825 Jefferson St, San Francisco, CA 94016" -237730,Wired Headphones,1,11.99,08/25/19 17:36,"85 6th St, San Francisco, CA 94016" -237731,Lightning Charging Cable,1,14.95,08/16/19 10:47,"540 2nd St, New York City, NY 10001" -237732,USB-C Charging Cable,1,11.95,08/15/19 12:39,"943 Chestnut St, San Francisco, CA 94016" -237733,Flatscreen TV,1,300,08/03/19 20:08,"986 Wilson St, New York City, NY 10001" -237733,Macbook Pro Laptop,1,1700,08/03/19 20:08,"986 Wilson St, New York City, NY 10001" -237734,LG Washing Machine,1,600.0,08/12/19 16:40,"98 10th St, Los Angeles, CA 90001" -237735,AAA Batteries (4-pack),2,2.99,08/14/19 05:55,"747 Lakeview St, Austin, TX 73301" -237736,AA Batteries (4-pack),2,3.84,08/16/19 11:14,"501 Jackson St, Los Angeles, CA 90001" -237737,Bose SoundSport Headphones,1,99.99,08/26/19 15:14,"825 Church St, New York City, NY 10001" -237738,Wired Headphones,1,11.99,08/06/19 12:40,"633 Jefferson St, Los Angeles, CA 90001" -237739,AAA Batteries (4-pack),2,2.99,08/01/19 15:52,"925 Center St, Seattle, WA 98101" -237740,AAA Batteries (4-pack),1,2.99,08/13/19 17:31,"112 Main St, Seattle, WA 98101" -237741,Wired Headphones,1,11.99,08/31/19 18:17,"30 2nd St, Los Angeles, CA 90001" -237742,USB-C Charging Cable,1,11.95,08/24/19 21:03,"805 Lincoln St, Portland, OR 97035" -237743,AAA Batteries (4-pack),1,2.99,08/30/19 22:24,"112 13th St, New York City, NY 10001" -237744,Wired Headphones,1,11.99,08/22/19 11:44,"955 River St, New York City, NY 10001" -237745,Apple Airpods Headphones,1,150,08/05/19 11:29,"775 5th St, Atlanta, GA 30301" -237746,34in Ultrawide Monitor,1,379.99,08/09/19 13:41,"718 Johnson St, New York City, NY 10001" -237747,Flatscreen TV,1,300,08/22/19 12:44,"926 14th St, San Francisco, CA 94016" -237748,Wired Headphones,1,11.99,08/06/19 22:01,"114 Lakeview St, Los Angeles, CA 90001" -237749,27in FHD Monitor,1,149.99,08/18/19 22:56,"543 Johnson St, Portland, OR 97035" -237750,AAA Batteries (4-pack),1,2.99,08/08/19 17:15,"695 Maple St, Atlanta, GA 30301" -237751,Apple Airpods Headphones,1,150,08/18/19 08:14,"94 6th St, Dallas, TX 75001" -237751,AA Batteries (4-pack),1,3.84,08/18/19 08:14,"94 6th St, Dallas, TX 75001" -237752,Wired Headphones,1,11.99,08/05/19 22:00,"727 10th St, Austin, TX 73301" -237753,Vareebadd Phone,1,400,08/21/19 16:39,"875 Johnson St, San Francisco, CA 94016" -237753,USB-C Charging Cable,1,11.95,08/21/19 16:39,"875 Johnson St, San Francisco, CA 94016" -237754,USB-C Charging Cable,1,11.95,08/21/19 14:14,"604 Johnson St, Dallas, TX 75001" -237755,ThinkPad Laptop,1,999.99,08/07/19 20:16,"567 Dogwood St, Los Angeles, CA 90001" -237756,27in FHD Monitor,1,149.99,08/14/19 13:01,"110 Johnson St, San Francisco, CA 94016" -237757,Apple Airpods Headphones,1,150,08/12/19 11:28,"699 River St, Boston, MA 02215" -237758,AA Batteries (4-pack),1,3.84,08/25/19 18:21,"565 River St, San Francisco, CA 94016" -237759,Wired Headphones,1,11.99,08/01/19 12:04,"535 Jackson St, San Francisco, CA 94016" -237760,AAA Batteries (4-pack),1,2.99,08/14/19 21:20,"400 Elm St, Dallas, TX 75001" -237761,USB-C Charging Cable,1,11.95,08/24/19 11:58,"767 Forest St, Portland, ME 04101" -237762,USB-C Charging Cable,1,11.95,08/05/19 09:47,"704 10th St, New York City, NY 10001" -237763,Wired Headphones,1,11.99,08/07/19 23:45,"446 10th St, Los Angeles, CA 90001" -237764,27in 4K Gaming Monitor,1,389.99,08/06/19 11:09,"818 Dogwood St, Atlanta, GA 30301" -237765,AAA Batteries (4-pack),2,2.99,08/14/19 08:18,"849 4th St, Atlanta, GA 30301" -237766,Bose SoundSport Headphones,1,99.99,08/19/19 11:06,"416 Lake St, Dallas, TX 75001" -237767,USB-C Charging Cable,1,11.95,08/07/19 19:05,"359 Dogwood St, Austin, TX 73301" -237768,Wired Headphones,1,11.99,08/29/19 16:02,"70 Center St, San Francisco, CA 94016" -237769,Wired Headphones,1,11.99,08/04/19 20:09,"933 12th St, Dallas, TX 75001" -237770,Lightning Charging Cable,1,14.95,08/24/19 17:26,"721 5th St, Seattle, WA 98101" -237771,AA Batteries (4-pack),2,3.84,08/11/19 20:00,"644 Main St, New York City, NY 10001" -237772,AA Batteries (4-pack),2,3.84,08/16/19 19:53,"945 Maple St, Los Angeles, CA 90001" -237773,USB-C Charging Cable,1,11.95,08/08/19 21:48,"85 Jefferson St, Los Angeles, CA 90001" -237774,Lightning Charging Cable,1,14.95,08/24/19 17:04,"379 Johnson St, Dallas, TX 75001" -237775,USB-C Charging Cable,2,11.95,08/30/19 11:09,"729 Center St, San Francisco, CA 94016" -237776,Lightning Charging Cable,1,14.95,08/13/19 16:36,"12 Hill St, San Francisco, CA 94016" -237777,iPhone,1,700,08/14/19 18:08,"711 Maple St, Boston, MA 02215" -237778,Wired Headphones,1,11.99,08/08/19 08:13,"721 7th St, New York City, NY 10001" -237779,AAA Batteries (4-pack),1,2.99,08/04/19 21:26,"532 Church St, Portland, OR 97035" -237780,Bose SoundSport Headphones,1,99.99,08/16/19 10:15,"395 8th St, San Francisco, CA 94016" -237781,Flatscreen TV,1,300,08/17/19 22:17,"26 7th St, Portland, OR 97035" -237782,Lightning Charging Cable,1,14.95,08/10/19 15:26,"759 11th St, New York City, NY 10001" -237783,USB-C Charging Cable,1,11.95,08/10/19 23:47,"335 4th St, Los Angeles, CA 90001" -237784,Flatscreen TV,1,300,08/29/19 11:35,"951 Jackson St, Boston, MA 02215" -237785,Bose SoundSport Headphones,1,99.99,08/29/19 11:02,"866 Wilson St, New York City, NY 10001" -237786,LG Washing Machine,1,600.0,08/08/19 21:04,"604 10th St, Portland, OR 97035" -237787,Bose SoundSport Headphones,1,99.99,08/23/19 17:53,"882 Dogwood St, New York City, NY 10001" -237788,Lightning Charging Cable,1,14.95,08/05/19 07:58,"687 8th St, San Francisco, CA 94016" -237789,AAA Batteries (4-pack),1,2.99,08/10/19 12:27,"26 Wilson St, Boston, MA 02215" -237790,Lightning Charging Cable,2,14.95,08/23/19 11:13,"922 Maple St, Los Angeles, CA 90001" -237791,AA Batteries (4-pack),1,3.84,08/02/19 19:37,"193 Madison St, Dallas, TX 75001" -237792,AA Batteries (4-pack),1,3.84,08/11/19 18:50,"5 Elm St, Atlanta, GA 30301" -237793,AA Batteries (4-pack),1,3.84,08/12/19 11:03,"553 South St, Dallas, TX 75001" -237794,Lightning Charging Cable,1,14.95,08/28/19 22:59,"461 West St, San Francisco, CA 94016" -237795,ThinkPad Laptop,1,999.99,08/07/19 11:32,"308 Adams St, Seattle, WA 98101" -237796,USB-C Charging Cable,1,11.95,08/16/19 13:05,"75 Jackson St, Los Angeles, CA 90001" -237797,AAA Batteries (4-pack),1,2.99,08/05/19 19:55,"426 Adams St, Los Angeles, CA 90001" -237798,20in Monitor,1,109.99,08/22/19 06:21,"803 Lincoln St, San Francisco, CA 94016" -237799,Apple Airpods Headphones,1,150,08/27/19 21:54,"536 Maple St, San Francisco, CA 94016" -237800,AA Batteries (4-pack),2,3.84,08/05/19 23:58,"270 South St, New York City, NY 10001" -237801,iPhone,1,700,08/10/19 13:56,"535 4th St, Boston, MA 02215" -237801,Lightning Charging Cable,1,14.95,08/10/19 13:56,"535 4th St, Boston, MA 02215" -237802,Bose SoundSport Headphones,1,99.99,08/20/19 19:37,"798 Hill St, Los Angeles, CA 90001" -237803,AAA Batteries (4-pack),2,2.99,08/27/19 06:04,"798 North St, San Francisco, CA 94016" -237804,USB-C Charging Cable,1,11.95,08/18/19 16:42,"519 Sunset St, Dallas, TX 75001" -237805,Bose SoundSport Headphones,1,99.99,08/12/19 20:39,"212 River St, Atlanta, GA 30301" -237806,Flatscreen TV,1,300,08/25/19 19:19,"175 River St, Portland, ME 04101" -237807,AAA Batteries (4-pack),8,2.99,08/13/19 11:11,"89 Church St, Portland, OR 97035" -237808,USB-C Charging Cable,1,11.95,08/01/19 11:54,"327 Cherry St, Atlanta, GA 30301" -237809,AAA Batteries (4-pack),2,2.99,08/12/19 17:48,"489 Forest St, Portland, OR 97035" -237810,USB-C Charging Cable,1,11.95,08/25/19 04:29,"827 8th St, Boston, MA 02215" -237811,AAA Batteries (4-pack),1,2.99,08/24/19 11:23,"616 11th St, Dallas, TX 75001" -237812,Lightning Charging Cable,1,14.95,08/06/19 21:25,"851 13th St, Austin, TX 73301" -237812,AAA Batteries (4-pack),1,2.99,08/06/19 21:25,"851 13th St, Austin, TX 73301" -237813,AAA Batteries (4-pack),2,2.99,08/22/19 20:52,"593 North St, San Francisco, CA 94016" -237814,AA Batteries (4-pack),1,3.84,08/19/19 19:00,"38 Forest St, Dallas, TX 75001" -237815,Lightning Charging Cable,1,14.95,08/15/19 21:38,"371 Main St, San Francisco, CA 94016" -237816,Wired Headphones,1,11.99,08/19/19 15:18,"580 South St, Dallas, TX 75001" -237817,Wired Headphones,1,11.99,08/15/19 21:57,"169 10th St, Boston, MA 02215" -237818,Apple Airpods Headphones,1,150,08/09/19 11:32,"971 Adams St, Boston, MA 02215" -237819,Bose SoundSport Headphones,1,99.99,08/19/19 19:35,"19 Pine St, Los Angeles, CA 90001" -237820,iPhone,1,700,08/11/19 17:17,"507 Hill St, Portland, OR 97035" -237820,Lightning Charging Cable,1,14.95,08/11/19 17:17,"507 Hill St, Portland, OR 97035" -237821,Lightning Charging Cable,1,14.95,08/20/19 12:30,"248 5th St, Atlanta, GA 30301" -237822,AAA Batteries (4-pack),1,2.99,08/21/19 20:20,"316 Johnson St, Dallas, TX 75001" -237823,AAA Batteries (4-pack),1,2.99,08/30/19 12:03,"52 River St, San Francisco, CA 94016" -237824,Google Phone,1,600,08/21/19 20:25,"863 Lakeview St, San Francisco, CA 94016" -237825,27in FHD Monitor,1,149.99,08/31/19 15:30,"958 Washington St, Boston, MA 02215" -237826,AAA Batteries (4-pack),1,2.99,08/20/19 15:04,"954 Church St, San Francisco, CA 94016" -237827,AAA Batteries (4-pack),1,2.99,08/19/19 07:56,"727 Dogwood St, Portland, OR 97035" -237828,AAA Batteries (4-pack),1,2.99,08/13/19 15:22,"385 Johnson St, San Francisco, CA 94016" -237829,27in FHD Monitor,1,149.99,08/16/19 17:26,"803 Forest St, Boston, MA 02215" -237830,Bose SoundSport Headphones,1,99.99,08/03/19 23:20,"307 North St, Los Angeles, CA 90001" -237831,Google Phone,1,600,08/13/19 18:56,"378 Adams St, San Francisco, CA 94016" -237831,USB-C Charging Cable,1,11.95,08/13/19 18:56,"378 Adams St, San Francisco, CA 94016" -237832,Lightning Charging Cable,1,14.95,08/24/19 20:06,"475 12th St, Boston, MA 02215" -237833,Apple Airpods Headphones,1,150,08/18/19 01:39,"424 North St, Los Angeles, CA 90001" -237834,USB-C Charging Cable,1,11.95,08/27/19 17:00,"902 West St, Seattle, WA 98101" -237835,Bose SoundSport Headphones,1,99.99,08/24/19 07:43,"185 Forest St, Dallas, TX 75001" -237836,34in Ultrawide Monitor,1,379.99,08/17/19 11:37,"78 5th St, San Francisco, CA 94016" -237837,Apple Airpods Headphones,1,150,08/31/19 22:24,"607 Adams St, San Francisco, CA 94016" -237838,27in 4K Gaming Monitor,1,389.99,08/04/19 22:21,"473 5th St, Los Angeles, CA 90001" -237839,iPhone,1,700,08/13/19 12:56,"445 8th St, New York City, NY 10001" -237840,USB-C Charging Cable,1,11.95,08/03/19 22:06,"914 Lake St, Seattle, WA 98101" -237841,USB-C Charging Cable,1,11.95,08/11/19 16:57,"770 River St, San Francisco, CA 94016" -237842,Flatscreen TV,1,300,08/29/19 22:03,"421 10th St, Portland, OR 97035" -237843,27in FHD Monitor,1,149.99,08/23/19 09:57,"821 River St, Portland, OR 97035" -237844,34in Ultrawide Monitor,1,379.99,08/24/19 12:16,"102 Jefferson St, Los Angeles, CA 90001" -237845,Bose SoundSport Headphones,1,99.99,08/19/19 07:22,"69 Church St, San Francisco, CA 94016" -,,,,, -237846,Flatscreen TV,1,300,08/13/19 15:45,"441 Highland St, Portland, OR 97035" -237847,Bose SoundSport Headphones,1,99.99,08/19/19 19:31,"329 Highland St, New York City, NY 10001" -237848,Wired Headphones,1,11.99,08/26/19 21:41,"951 4th St, Los Angeles, CA 90001" -237849,Lightning Charging Cable,1,14.95,08/08/19 14:53,"64 Maple St, Atlanta, GA 30301" -237850,27in FHD Monitor,1,149.99,08/09/19 13:27,"895 4th St, Dallas, TX 75001" -237851,27in 4K Gaming Monitor,1,389.99,08/08/19 11:03,"278 Cedar St, Boston, MA 02215" -237852,iPhone,1,700,08/01/19 21:42,"563 Johnson St, New York City, NY 10001" -237853,AA Batteries (4-pack),2,3.84,08/18/19 16:59,"200 Sunset St, Los Angeles, CA 90001" -237854,27in FHD Monitor,1,149.99,08/05/19 09:49,"456 Wilson St, Los Angeles, CA 90001" -237855,Bose SoundSport Headphones,1,99.99,08/27/19 17:57,"412 11th St, Seattle, WA 98101" -237856,Flatscreen TV,1,300,08/18/19 23:11,"855 1st St, Atlanta, GA 30301" -237857,Apple Airpods Headphones,1,150,08/17/19 21:13,"857 South St, Dallas, TX 75001" -237858,iPhone,1,700,08/27/19 13:33,"426 Spruce St, Portland, OR 97035" -237859,Wired Headphones,1,11.99,08/23/19 21:17,"323 Cedar St, San Francisco, CA 94016" -237860,Macbook Pro Laptop,1,1700,08/26/19 20:36,"25 South St, New York City, NY 10001" -237861,Apple Airpods Headphones,1,150,08/16/19 09:07,"232 8th St, Atlanta, GA 30301" -237862,AAA Batteries (4-pack),2,2.99,08/22/19 15:52,"507 Cherry St, New York City, NY 10001" -237863,Wired Headphones,1,11.99,08/19/19 13:15,"102 Meadow St, San Francisco, CA 94016" -237864,Google Phone,1,600,08/31/19 22:55,"662 14th St, Austin, TX 73301" -237865,AAA Batteries (4-pack),1,2.99,08/19/19 20:09,"918 4th St, San Francisco, CA 94016" -237866,AA Batteries (4-pack),1,3.84,08/28/19 16:43,"979 1st St, Austin, TX 73301" -237867,AAA Batteries (4-pack),1,2.99,08/06/19 14:47,"498 Maple St, Los Angeles, CA 90001" -237868,AAA Batteries (4-pack),1,2.99,08/08/19 12:58,"411 Maple St, Seattle, WA 98101" -237869,Vareebadd Phone,1,400,08/19/19 21:36,"501 Wilson St, Portland, OR 97035" -237869,Wired Headphones,1,11.99,08/19/19 21:36,"501 Wilson St, Portland, OR 97035" -237870,Lightning Charging Cable,2,14.95,08/14/19 02:25,"280 2nd St, San Francisco, CA 94016" -237871,USB-C Charging Cable,1,11.95,08/19/19 19:03,"153 Forest St, Boston, MA 02215" -237872,Apple Airpods Headphones,1,150,08/23/19 19:33,"109 Adams St, Boston, MA 02215" -237873,Apple Airpods Headphones,1,150,08/03/19 13:39,"853 Lakeview St, Los Angeles, CA 90001" -237874,27in 4K Gaming Monitor,1,389.99,08/29/19 21:42,"652 Washington St, Los Angeles, CA 90001" -237875,Bose SoundSport Headphones,1,99.99,08/31/19 01:08,"126 Forest St, New York City, NY 10001" -237876,AAA Batteries (4-pack),1,2.99,08/11/19 15:31,"493 14th St, Los Angeles, CA 90001" -237877,Bose SoundSport Headphones,1,99.99,08/28/19 00:37,"595 South St, New York City, NY 10001" -237878,iPhone,1,700,08/14/19 07:22,"189 Cedar St, Boston, MA 02215" -237879,Bose SoundSport Headphones,1,99.99,08/01/19 10:33,"288 Forest St, Austin, TX 73301" -237880,AAA Batteries (4-pack),2,2.99,08/02/19 12:45,"658 Center St, San Francisco, CA 94016" -237881,Apple Airpods Headphones,1,150,08/02/19 17:55,"421 Church St, San Francisco, CA 94016" -237882,Bose SoundSport Headphones,1,99.99,08/16/19 13:54,"997 1st St, San Francisco, CA 94016" -237883,USB-C Charging Cable,1,11.95,08/15/19 00:39,"741 Sunset St, New York City, NY 10001" -237884,27in FHD Monitor,1,149.99,08/11/19 14:30,"314 Cherry St, Boston, MA 02215" -237885,AAA Batteries (4-pack),1,2.99,08/19/19 09:24,"897 8th St, Boston, MA 02215" -237886,AAA Batteries (4-pack),5,2.99,08/18/19 17:53,"780 Madison St, San Francisco, CA 94016" -237887,AAA Batteries (4-pack),3,2.99,08/11/19 10:32,"332 West St, San Francisco, CA 94016" -237888,USB-C Charging Cable,1,11.95,08/31/19 13:14,"288 Jefferson St, Los Angeles, CA 90001" -237889,USB-C Charging Cable,1,11.95,08/29/19 10:47,"743 Church St, Los Angeles, CA 90001" -237890,AAA Batteries (4-pack),1,2.99,08/23/19 10:57,"461 Center St, Seattle, WA 98101" -237891,AAA Batteries (4-pack),2,2.99,08/20/19 16:23,"559 Cedar St, Dallas, TX 75001" -237892,AA Batteries (4-pack),1,3.84,08/24/19 11:57,"396 Johnson St, Boston, MA 02215" -237893,ThinkPad Laptop,1,999.99,08/12/19 17:31,"588 Hill St, Boston, MA 02215" -237894,Flatscreen TV,1,300,08/01/19 13:41,"11 Forest St, Boston, MA 02215" -237895,27in 4K Gaming Monitor,1,389.99,08/16/19 18:38,"128 Main St, Los Angeles, CA 90001" -237896,27in 4K Gaming Monitor,1,389.99,08/18/19 19:04,"575 Maple St, Austin, TX 73301" -237897,Macbook Pro Laptop,1,1700,08/28/19 12:58,"450 Pine St, San Francisco, CA 94016" -237898,34in Ultrawide Monitor,1,379.99,08/10/19 12:38,"774 Jefferson St, Dallas, TX 75001" -237899,Wired Headphones,1,11.99,08/14/19 14:07,"354 Chestnut St, Los Angeles, CA 90001" -237900,27in FHD Monitor,1,149.99,08/20/19 20:13,"340 Center St, San Francisco, CA 94016" -237901,Wired Headphones,1,11.99,08/06/19 10:26,"819 1st St, Los Angeles, CA 90001" -237902,34in Ultrawide Monitor,1,379.99,08/04/19 19:38,"931 Center St, Atlanta, GA 30301" -237903,Apple Airpods Headphones,1,150,08/21/19 09:06,"972 12th St, Seattle, WA 98101" -237904,Apple Airpods Headphones,1,150,08/07/19 17:04,"15 13th St, Los Angeles, CA 90001" -237905,Flatscreen TV,1,300,08/19/19 20:31,"762 North St, Dallas, TX 75001" -237906,Lightning Charging Cable,1,14.95,08/15/19 16:38,"854 North St, Los Angeles, CA 90001" -237907,Apple Airpods Headphones,1,150,08/26/19 21:57,"601 14th St, Los Angeles, CA 90001" -237908,AA Batteries (4-pack),1,3.84,08/18/19 13:29,"320 Cherry St, Boston, MA 02215" -237909,27in FHD Monitor,1,149.99,08/07/19 20:13,"222 Walnut St, Portland, OR 97035" -237910,AAA Batteries (4-pack),1,2.99,08/31/19 00:00,"551 Park St, Seattle, WA 98101" -237911,Google Phone,1,600,08/19/19 10:14,"395 Center St, Los Angeles, CA 90001" -237912,Lightning Charging Cable,2,14.95,08/19/19 22:00,"463 Johnson St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -237913,USB-C Charging Cable,1,11.95,08/31/19 22:55,"796 Highland St, Portland, ME 04101" -237914,27in FHD Monitor,1,149.99,08/09/19 21:54,"732 Ridge St, Atlanta, GA 30301" -237915,USB-C Charging Cable,1,11.95,08/12/19 19:49,"186 Forest St, Atlanta, GA 30301" -237916,AAA Batteries (4-pack),1,2.99,08/10/19 23:04,"512 Lincoln St, Atlanta, GA 30301" -237917,27in FHD Monitor,1,149.99,08/12/19 17:02,"407 Washington St, Boston, MA 02215" -237918,Macbook Pro Laptop,1,1700,08/26/19 15:00,"113 9th St, Austin, TX 73301" -237919,Wired Headphones,1,11.99,08/10/19 17:52,"122 Main St, Atlanta, GA 30301" -237920,Macbook Pro Laptop,1,1700,08/17/19 15:49,"596 Maple St, New York City, NY 10001" -237921,AA Batteries (4-pack),1,3.84,08/26/19 21:00,"120 Cherry St, Atlanta, GA 30301" -237922,27in 4K Gaming Monitor,1,389.99,08/31/19 21:51,"418 9th St, Dallas, TX 75001" -237923,AAA Batteries (4-pack),1,2.99,08/14/19 19:31,"3 Park St, New York City, NY 10001" -237924,Flatscreen TV,1,300,08/21/19 10:07,"590 Church St, Seattle, WA 98101" -237925,Google Phone,1,600,08/07/19 13:39,"876 Park St, Dallas, TX 75001" -237925,USB-C Charging Cable,1,11.95,08/07/19 13:39,"876 Park St, Dallas, TX 75001" -237926,Bose SoundSport Headphones,1,99.99,08/18/19 14:31,"55 Adams St, Austin, TX 73301" -237927,Bose SoundSport Headphones,1,99.99,08/15/19 12:27,"865 Hickory St, San Francisco, CA 94016" -237928,Vareebadd Phone,1,400,08/06/19 08:59,"393 7th St, Austin, TX 73301" -237929,Lightning Charging Cable,1,14.95,08/26/19 13:57,"455 2nd St, Seattle, WA 98101" -237930,USB-C Charging Cable,1,11.95,08/02/19 15:32,"966 Walnut St, Atlanta, GA 30301" -237931,AA Batteries (4-pack),1,3.84,08/03/19 23:41,"93 Sunset St, Atlanta, GA 30301" -237932,Lightning Charging Cable,1,14.95,08/06/19 15:15,"15 12th St, Los Angeles, CA 90001" -237933,Apple Airpods Headphones,1,150,08/15/19 12:40,"234 West St, Boston, MA 02215" -237934,34in Ultrawide Monitor,1,379.99,08/19/19 22:58,"955 Lakeview St, Seattle, WA 98101" -237935,Bose SoundSport Headphones,1,99.99,08/22/19 09:03,"259 Spruce St, San Francisco, CA 94016" -237936,AA Batteries (4-pack),4,3.84,08/18/19 14:32,"889 Elm St, Boston, MA 02215" -237937,Wired Headphones,1,11.99,08/01/19 13:35,"41 Walnut St, Portland, OR 97035" -237938,27in FHD Monitor,1,149.99,08/19/19 16:45,"992 6th St, Seattle, WA 98101" -237939,Vareebadd Phone,1,400,08/12/19 15:29,"776 7th St, Atlanta, GA 30301" -237940,USB-C Charging Cable,1,11.95,08/16/19 14:07,"586 Cedar St, Los Angeles, CA 90001" -237941,iPhone,1,700,08/02/19 11:11,"140 Madison St, Boston, MA 02215" -237942,AA Batteries (4-pack),1,3.84,08/08/19 11:01,"464 7th St, Los Angeles, CA 90001" -237943,AA Batteries (4-pack),3,3.84,08/03/19 14:38,"728 South St, Boston, MA 02215" -237944,USB-C Charging Cable,1,11.95,08/04/19 17:14,"998 Washington St, Boston, MA 02215" -237945,AA Batteries (4-pack),2,3.84,08/20/19 13:45,"378 Washington St, Portland, OR 97035" -237946,Macbook Pro Laptop,1,1700,08/06/19 23:28,"554 Main St, New York City, NY 10001" -237946,Lightning Charging Cable,1,14.95,08/06/19 23:28,"554 Main St, New York City, NY 10001" -237947,Bose SoundSport Headphones,1,99.99,08/10/19 18:52,"123 West St, San Francisco, CA 94016" -237948,USB-C Charging Cable,1,11.95,08/01/19 21:50,"401 6th St, San Francisco, CA 94016" -237949,34in Ultrawide Monitor,1,379.99,08/29/19 10:55,"909 Wilson St, Portland, OR 97035" -237950,Lightning Charging Cable,1,14.95,08/27/19 23:33,"300 Pine St, Los Angeles, CA 90001" -237951,USB-C Charging Cable,1,11.95,08/13/19 16:12,"296 Jefferson St, Los Angeles, CA 90001" -237952,Google Phone,1,600,08/16/19 11:49,"512 Pine St, Seattle, WA 98101" -237953,Bose SoundSport Headphones,1,99.99,08/26/19 12:45,"24 Wilson St, Los Angeles, CA 90001" -237954,Apple Airpods Headphones,1,150,08/08/19 17:19,"487 Washington St, Boston, MA 02215" -237955,USB-C Charging Cable,1,11.95,08/11/19 11:36,"883 Lincoln St, Los Angeles, CA 90001" -237956,AA Batteries (4-pack),1,3.84,08/06/19 14:59,"108 14th St, Dallas, TX 75001" -237957,Apple Airpods Headphones,1,150,08/08/19 08:36,"143 Madison St, Austin, TX 73301" -237958,AAA Batteries (4-pack),1,2.99,08/22/19 14:37,"118 Maple St, Seattle, WA 98101" -237959,Apple Airpods Headphones,1,150,08/24/19 05:39,"485 Wilson St, San Francisco, CA 94016" -237960,Lightning Charging Cable,1,14.95,08/29/19 21:48,"550 6th St, Portland, OR 97035" -237961,AA Batteries (4-pack),1,3.84,08/27/19 00:08,"867 Main St, Atlanta, GA 30301" -237962,AAA Batteries (4-pack),1,2.99,08/14/19 18:58,"486 13th St, San Francisco, CA 94016" -237963,AA Batteries (4-pack),1,3.84,08/12/19 17:43,"507 Elm St, San Francisco, CA 94016" -237964,USB-C Charging Cable,2,11.95,08/11/19 19:47,"321 South St, San Francisco, CA 94016" -237965,Google Phone,1,600,08/23/19 22:48,"311 Dogwood St, New York City, NY 10001" -237966,Bose SoundSport Headphones,1,99.99,08/01/19 18:49,"826 14th St, Portland, ME 04101" -237967,USB-C Charging Cable,1,11.95,08/09/19 13:52,"238 Spruce St, Los Angeles, CA 90001" -237968,LG Dryer,1,600.0,08/03/19 20:02,"903 Lincoln St, Atlanta, GA 30301" -237969,AA Batteries (4-pack),1,3.84,08/11/19 03:09,"681 Johnson St, Austin, TX 73301" -237969,Google Phone,1,600,08/11/19 03:09,"681 Johnson St, Austin, TX 73301" -237970,AAA Batteries (4-pack),1,2.99,08/06/19 18:36,"983 Maple St, Boston, MA 02215" -237971,34in Ultrawide Monitor,1,379.99,08/08/19 21:12,"655 Forest St, San Francisco, CA 94016" -237972,AA Batteries (4-pack),2,3.84,08/23/19 10:34,"234 Ridge St, Austin, TX 73301" -237973,AAA Batteries (4-pack),1,2.99,08/31/19 08:55,"704 6th St, Los Angeles, CA 90001" -237974,ThinkPad Laptop,1,999.99,08/20/19 15:37,"552 Hickory St, Boston, MA 02215" -237975,iPhone,1,700,08/20/19 09:02,"890 Center St, Austin, TX 73301" -237975,Apple Airpods Headphones,1,150,08/20/19 09:02,"890 Center St, Austin, TX 73301" -237976,iPhone,1,700,08/05/19 21:12,"582 Hickory St, Dallas, TX 75001" -237977,AAA Batteries (4-pack),3,2.99,08/03/19 17:54,"298 Washington St, Dallas, TX 75001" -237978,AA Batteries (4-pack),5,3.84,08/21/19 07:14,"138 1st St, Atlanta, GA 30301" -237979,Flatscreen TV,1,300,08/17/19 14:19,"395 Hickory St, Portland, OR 97035" -237980,Lightning Charging Cable,2,14.95,08/27/19 00:10,"811 Park St, New York City, NY 10001" -237981,AA Batteries (4-pack),1,3.84,08/31/19 19:15,"458 Lincoln St, Austin, TX 73301" -237982,AA Batteries (4-pack),2,3.84,08/20/19 15:26,"593 Pine St, Portland, OR 97035" -237983,AAA Batteries (4-pack),1,2.99,08/27/19 20:51,"672 Ridge St, San Francisco, CA 94016" -237984,Macbook Pro Laptop,1,1700,08/05/19 00:04,"532 Center St, San Francisco, CA 94016" -237985,Apple Airpods Headphones,1,150,08/25/19 14:04,"814 Johnson St, Boston, MA 02215" -237986,Google Phone,1,600,08/10/19 07:24,"781 Jackson St, San Francisco, CA 94016" -237987,27in FHD Monitor,1,149.99,08/21/19 11:12,"162 8th St, New York City, NY 10001" -237988,20in Monitor,1,109.99,08/04/19 22:59,"498 West St, Boston, MA 02215" -237989,27in 4K Gaming Monitor,1,389.99,08/26/19 19:23,"578 9th St, San Francisco, CA 94016" -237990,Wired Headphones,1,11.99,08/04/19 09:47,"216 Adams St, Atlanta, GA 30301" -237991,AA Batteries (4-pack),1,3.84,08/08/19 19:11,"863 Madison St, Los Angeles, CA 90001" -237992,AA Batteries (4-pack),1,3.84,08/02/19 20:43,"156 Highland St, Boston, MA 02215" -237993,iPhone,1,700,08/02/19 19:08,"232 Madison St, New York City, NY 10001" -237994,27in FHD Monitor,1,149.99,08/18/19 20:29,"856 Spruce St, Los Angeles, CA 90001" -237995,AA Batteries (4-pack),1,3.84,08/01/19 20:24,"869 Adams St, Dallas, TX 75001" -237996,20in Monitor,1,109.99,08/08/19 01:49,"752 14th St, Los Angeles, CA 90001" -237997,AA Batteries (4-pack),1,3.84,08/10/19 14:56,"951 Meadow St, Austin, TX 73301" -237998,iPhone,1,700,08/27/19 12:18,"775 13th St, New York City, NY 10001" -237999,AA Batteries (4-pack),2,3.84,08/07/19 16:01,"205 Dogwood St, Seattle, WA 98101" -238000,Macbook Pro Laptop,1,1700,08/26/19 12:44,"332 Adams St, Seattle, WA 98101" -238001,34in Ultrawide Monitor,1,379.99,08/15/19 23:06,"179 7th St, New York City, NY 10001" -238002,Bose SoundSport Headphones,1,99.99,08/18/19 22:01,"997 Madison St, Boston, MA 02215" -238003,AAA Batteries (4-pack),2,2.99,08/19/19 05:57,"581 Maple St, New York City, NY 10001" -238004,AAA Batteries (4-pack),1,2.99,08/20/19 13:54,"965 West St, Dallas, TX 75001" -238005,Lightning Charging Cable,1,14.95,08/21/19 07:46,"255 12th St, Seattle, WA 98101" -238006,Lightning Charging Cable,1,14.95,08/02/19 13:31,"744 Highland St, Portland, OR 97035" -238007,Lightning Charging Cable,1,14.95,08/15/19 17:28,"475 West St, Los Angeles, CA 90001" -238007,AA Batteries (4-pack),1,3.84,08/15/19 17:28,"475 West St, Los Angeles, CA 90001" -238008,LG Washing Machine,1,600.0,08/15/19 15:11,"622 2nd St, Boston, MA 02215" -238009,AAA Batteries (4-pack),1,2.99,08/07/19 12:09,"594 West St, Boston, MA 02215" -238010,AAA Batteries (4-pack),1,2.99,08/20/19 11:53,"595 1st St, San Francisco, CA 94016" -238011,Bose SoundSport Headphones,1,99.99,08/16/19 19:50,"104 Lincoln St, San Francisco, CA 94016" -238012,Flatscreen TV,1,300,08/20/19 08:52,"324 8th St, Portland, OR 97035" -238013,Lightning Charging Cable,1,14.95,08/22/19 14:39,"850 6th St, Atlanta, GA 30301" -238014,USB-C Charging Cable,1,11.95,08/09/19 18:33,"147 Elm St, Atlanta, GA 30301" -238015,USB-C Charging Cable,1,11.95,08/23/19 12:32,"770 13th St, Austin, TX 73301" -238016,AA Batteries (4-pack),2,3.84,08/03/19 21:51,"480 Cedar St, San Francisco, CA 94016" -238017,Wired Headphones,1,11.99,08/24/19 11:06,"131 Lakeview St, Los Angeles, CA 90001" -238018,AAA Batteries (4-pack),2,2.99,08/23/19 20:09,"446 Cherry St, Boston, MA 02215" -238019,USB-C Charging Cable,1,11.95,08/11/19 10:48,"836 Elm St, San Francisco, CA 94016" -238020,Apple Airpods Headphones,1,150,08/10/19 22:05,"66 Jackson St, Boston, MA 02215" -238021,Wired Headphones,1,11.99,08/10/19 10:45,"345 Meadow St, New York City, NY 10001" -238022,Flatscreen TV,1,300,08/07/19 19:40,"743 Hickory St, Los Angeles, CA 90001" -238023,Wired Headphones,1,11.99,08/27/19 18:07,"487 Sunset St, San Francisco, CA 94016" -238024,iPhone,1,700,08/30/19 12:02,"227 Elm St, San Francisco, CA 94016" -238024,Lightning Charging Cable,1,14.95,08/30/19 12:02,"227 Elm St, San Francisco, CA 94016" -238025,USB-C Charging Cable,1,11.95,08/27/19 20:22,"427 12th St, Portland, OR 97035" -238026,Apple Airpods Headphones,1,150,08/21/19 18:55,"304 Church St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -238027,AAA Batteries (4-pack),1,2.99,08/02/19 00:18,"52 Park St, Portland, OR 97035" -238028,AA Batteries (4-pack),1,3.84,08/02/19 23:16,"541 Washington St, San Francisco, CA 94016" -238029,AA Batteries (4-pack),1,3.84,08/02/19 09:34,"218 Walnut St, San Francisco, CA 94016" -238030,AA Batteries (4-pack),1,3.84,08/19/19 17:36,"529 Chestnut St, San Francisco, CA 94016" -238031,27in FHD Monitor,1,149.99,08/28/19 13:45,"936 Hill St, Dallas, TX 75001" -238032,AAA Batteries (4-pack),1,2.99,08/05/19 12:36,"823 Ridge St, San Francisco, CA 94016" -238033,AA Batteries (4-pack),1,3.84,08/04/19 19:38,"719 9th St, New York City, NY 10001" -238034,AAA Batteries (4-pack),1,2.99,08/27/19 20:06,"275 Jefferson St, Los Angeles, CA 90001" -238035,Lightning Charging Cable,1,14.95,08/08/19 16:47,"392 Wilson St, Seattle, WA 98101" -238036,Apple Airpods Headphones,1,150,08/04/19 13:23,"931 West St, Los Angeles, CA 90001" -238037,Bose SoundSport Headphones,1,99.99,08/02/19 20:17,"513 Sunset St, San Francisco, CA 94016" -238038,USB-C Charging Cable,1,11.95,08/22/19 12:59,"45 14th St, Dallas, TX 75001" -238039,Macbook Pro Laptop,1,1700,08/06/19 06:55,"85 Main St, Seattle, WA 98101" -238040,Lightning Charging Cable,1,14.95,08/07/19 15:41,"148 Meadow St, Portland, ME 04101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -238041,Google Phone,1,600,08/06/19 23:00,"438 Pine St, Atlanta, GA 30301" -238042,iPhone,1,700,08/20/19 13:49,"18 Jackson St, Dallas, TX 75001" -238043,Wired Headphones,1,11.99,08/05/19 03:14,"372 11th St, San Francisco, CA 94016" -238044,Lightning Charging Cable,1,14.95,08/26/19 13:06,"391 2nd St, San Francisco, CA 94016" -238045,AA Batteries (4-pack),1,3.84,08/04/19 15:57,"666 Lakeview St, Seattle, WA 98101" -238046,27in 4K Gaming Monitor,1,389.99,08/30/19 22:12,"569 Sunset St, San Francisco, CA 94016" -238047,Bose SoundSport Headphones,1,99.99,08/14/19 22:37,"950 Center St, Boston, MA 02215" -238048,AA Batteries (4-pack),1,3.84,08/08/19 10:19,"832 Adams St, Portland, OR 97035" -238049,Apple Airpods Headphones,1,150,08/14/19 07:28,"240 Johnson St, New York City, NY 10001" -238050,Flatscreen TV,1,300,08/25/19 15:54,"755 12th St, San Francisco, CA 94016" -238051,AAA Batteries (4-pack),1,2.99,08/31/19 18:51,"967 Meadow St, Portland, OR 97035" -238052,27in FHD Monitor,1,149.99,08/17/19 20:16,"326 9th St, Dallas, TX 75001" -238053,Bose SoundSport Headphones,1,99.99,08/07/19 12:56,"481 Lincoln St, San Francisco, CA 94016" -238054,Apple Airpods Headphones,1,150,08/17/19 20:24,"284 4th St, Los Angeles, CA 90001" -238055,USB-C Charging Cable,1,11.95,08/13/19 16:34,"228 Main St, San Francisco, CA 94016" -238056,Wired Headphones,1,11.99,08/30/19 15:32,"598 Dogwood St, San Francisco, CA 94016" -238057,iPhone,1,700,08/30/19 16:47,"203 6th St, Atlanta, GA 30301" -238058,Bose SoundSport Headphones,1,99.99,08/15/19 20:20,"252 2nd St, San Francisco, CA 94016" -238059,AAA Batteries (4-pack),1,2.99,08/09/19 21:15,"60 Adams St, Austin, TX 73301" -238060,iPhone,1,700,08/13/19 01:28,"395 South St, Boston, MA 02215" -238061,USB-C Charging Cable,1,11.95,08/28/19 06:45,"999 8th St, Dallas, TX 75001" -238062,Bose SoundSport Headphones,1,99.99,08/25/19 16:02,"6 Spruce St, Portland, OR 97035" -238063,AAA Batteries (4-pack),1,2.99,08/04/19 09:05,"104 14th St, Seattle, WA 98101" -238064,USB-C Charging Cable,1,11.95,08/29/19 20:20,"798 Jackson St, New York City, NY 10001" -238065,AA Batteries (4-pack),1,3.84,08/14/19 11:49,"941 River St, Austin, TX 73301" -238066,27in 4K Gaming Monitor,1,389.99,08/16/19 13:19,"860 Main St, San Francisco, CA 94016" -238067,Lightning Charging Cable,1,14.95,08/30/19 18:53,"953 2nd St, San Francisco, CA 94016" -238068,AA Batteries (4-pack),1,3.84,08/27/19 17:35,"692 Jefferson St, Los Angeles, CA 90001" -238069,Flatscreen TV,1,300,08/11/19 12:52,"696 1st St, Boston, MA 02215" -238070,Bose SoundSport Headphones,1,99.99,08/07/19 10:35,"719 11th St, Austin, TX 73301" -238071,AAA Batteries (4-pack),2,2.99,08/18/19 17:01,"951 7th St, Los Angeles, CA 90001" -238072,Lightning Charging Cable,1,14.95,08/23/19 13:53,"691 Ridge St, Boston, MA 02215" -238073,27in FHD Monitor,1,149.99,08/05/19 08:10,"435 Meadow St, Dallas, TX 75001" -238074,AA Batteries (4-pack),1,3.84,08/22/19 09:08,"340 Cedar St, New York City, NY 10001" -238075,AA Batteries (4-pack),1,3.84,08/06/19 11:59,"484 7th St, Dallas, TX 75001" -238076,20in Monitor,1,109.99,08/21/19 14:36,"893 11th St, Seattle, WA 98101" -238077,Lightning Charging Cable,1,14.95,08/19/19 18:52,"73 13th St, San Francisco, CA 94016" -238078,AA Batteries (4-pack),1,3.84,08/18/19 14:18,"337 Madison St, New York City, NY 10001" -238079,27in FHD Monitor,1,149.99,08/13/19 11:12,"737 South St, Dallas, TX 75001" -238080,AAA Batteries (4-pack),1,2.99,08/14/19 15:33,"322 North St, Portland, OR 97035" -238081,27in FHD Monitor,1,149.99,08/18/19 16:53,"850 Hill St, San Francisco, CA 94016" -238082,Apple Airpods Headphones,1,150,08/04/19 21:26,"696 6th St, New York City, NY 10001" -238083,Lightning Charging Cable,1,14.95,08/05/19 19:53,"423 Ridge St, San Francisco, CA 94016" -238084,Apple Airpods Headphones,1,150,08/19/19 21:40,"275 Center St, San Francisco, CA 94016" -238085,Apple Airpods Headphones,1,150,08/11/19 16:20,"59 10th St, Portland, OR 97035" -238086,Bose SoundSport Headphones,1,99.99,08/04/19 16:22,"20 Washington St, San Francisco, CA 94016" -238087,Vareebadd Phone,1,400,08/06/19 13:00,"638 Meadow St, New York City, NY 10001" -238088,Bose SoundSport Headphones,1,99.99,08/29/19 20:19,"274 Center St, Boston, MA 02215" -238089,Wired Headphones,1,11.99,08/13/19 07:19,"102 Willow St, Austin, TX 73301" -238090,Apple Airpods Headphones,1,150,08/29/19 12:14,"243 Wilson St, Dallas, TX 75001" -238091,Apple Airpods Headphones,1,150,08/19/19 18:48,"479 8th St, San Francisco, CA 94016" -238092,Wired Headphones,1,11.99,08/16/19 17:56,"625 Maple St, Seattle, WA 98101" -238093,Lightning Charging Cable,1,14.95,08/15/19 12:33,"585 Spruce St, San Francisco, CA 94016" -238094,iPhone,1,700,08/02/19 13:48,"586 Main St, Austin, TX 73301" -238095,27in 4K Gaming Monitor,1,389.99,08/08/19 14:15,"556 9th St, Boston, MA 02215" -238096,iPhone,1,700,08/30/19 15:59,"535 9th St, Atlanta, GA 30301" -238097,Lightning Charging Cable,1,14.95,08/03/19 09:44,"555 Highland St, San Francisco, CA 94016" -238098,Vareebadd Phone,1,400,08/04/19 13:06,"288 Pine St, San Francisco, CA 94016" -238099,27in FHD Monitor,1,149.99,08/30/19 17:12,"265 Church St, Dallas, TX 75001" -238100,Apple Airpods Headphones,1,150,08/09/19 15:17,"480 Johnson St, New York City, NY 10001" -238101,Apple Airpods Headphones,1,150,08/08/19 13:56,"187 13th St, Los Angeles, CA 90001" -238102,Google Phone,1,600,08/15/19 10:04,"382 Hill St, Boston, MA 02215" -238103,Lightning Charging Cable,1,14.95,08/22/19 17:14,"848 Center St, San Francisco, CA 94016" -238104,Lightning Charging Cable,1,14.95,08/26/19 11:51,"499 South St, New York City, NY 10001" -238105,20in Monitor,1,109.99,08/31/19 14:27,"105 River St, Austin, TX 73301" -238106,27in 4K Gaming Monitor,1,389.99,08/24/19 21:28,"267 12th St, Los Angeles, CA 90001" -238107,Lightning Charging Cable,1,14.95,08/27/19 18:03,"660 Chestnut St, New York City, NY 10001" -238108,Flatscreen TV,1,300,08/17/19 14:22,"561 Highland St, Austin, TX 73301" -238109,AAA Batteries (4-pack),2,2.99,08/01/19 12:05,"921 Spruce St, Seattle, WA 98101" -238110,AA Batteries (4-pack),1,3.84,08/30/19 20:13,"620 13th St, San Francisco, CA 94016" -238111,USB-C Charging Cable,1,11.95,08/07/19 07:54,"173 9th St, Los Angeles, CA 90001" -238112,iPhone,1,700,08/24/19 14:42,"426 Cherry St, Austin, TX 73301" -238113,Lightning Charging Cable,1,14.95,08/08/19 15:15,"123 Walnut St, Austin, TX 73301" -238114,27in 4K Gaming Monitor,1,389.99,08/18/19 14:16,"572 Ridge St, Los Angeles, CA 90001" -238115,AA Batteries (4-pack),2,3.84,08/10/19 20:46,"670 West St, New York City, NY 10001" -238116,Apple Airpods Headphones,1,150,08/04/19 09:14,"517 Jefferson St, Austin, TX 73301" -238117,27in FHD Monitor,1,149.99,08/01/19 09:15,"640 West St, New York City, NY 10001" -238118,Lightning Charging Cable,1,14.95,08/28/19 09:42,"63 Forest St, Atlanta, GA 30301" -238119,USB-C Charging Cable,1,11.95,08/11/19 18:31,"23 Johnson St, New York City, NY 10001" -238120,iPhone,1,700,08/03/19 09:28,"246 Elm St, San Francisco, CA 94016" -238121,Wired Headphones,1,11.99,08/07/19 19:43,"736 West St, Seattle, WA 98101" -238122,Wired Headphones,1,11.99,08/15/19 06:12,"866 Park St, Seattle, WA 98101" -238123,Lightning Charging Cable,1,14.95,08/18/19 13:04,"586 Cedar St, New York City, NY 10001" -238124,Bose SoundSport Headphones,1,99.99,08/18/19 01:37,"830 Lake St, San Francisco, CA 94016" -238125,AA Batteries (4-pack),4,3.84,08/11/19 05:01,"39 7th St, Austin, TX 73301" -238126,Lightning Charging Cable,1,14.95,08/13/19 12:49,"689 Jackson St, New York City, NY 10001" -238127,Wired Headphones,1,11.99,08/24/19 20:38,"547 West St, Boston, MA 02215" -238128,USB-C Charging Cable,2,11.95,08/08/19 17:40,"149 Jackson St, Los Angeles, CA 90001" -238129,Wired Headphones,1,11.99,08/25/19 21:58,"728 Washington St, Atlanta, GA 30301" -238130,iPhone,1,700,08/14/19 20:57,"666 2nd St, San Francisco, CA 94016" -238131,AAA Batteries (4-pack),1,2.99,08/06/19 21:21,"729 2nd St, Boston, MA 02215" -238132,Flatscreen TV,1,300,08/22/19 04:52,"534 Cedar St, Los Angeles, CA 90001" -238133,Flatscreen TV,1,300,08/19/19 18:02,"880 Dogwood St, San Francisco, CA 94016" -238134,AAA Batteries (4-pack),1,2.99,08/07/19 12:00,"943 Highland St, Austin, TX 73301" -238135,AAA Batteries (4-pack),2,2.99,08/06/19 10:45,"449 Pine St, Boston, MA 02215" -238136,Wired Headphones,2,11.99,08/15/19 04:54,"247 7th St, Dallas, TX 75001" -238137,AAA Batteries (4-pack),3,2.99,08/08/19 19:34,"270 10th St, Boston, MA 02215" -238138,Flatscreen TV,1,300,08/17/19 13:19,"596 Church St, San Francisco, CA 94016" -238139,ThinkPad Laptop,1,999.99,08/03/19 16:38,"243 4th St, Seattle, WA 98101" -238140,USB-C Charging Cable,1,11.95,08/14/19 22:44,"225 11th St, Portland, ME 04101" -238141,AAA Batteries (4-pack),1,2.99,08/29/19 19:49,"638 Walnut St, Los Angeles, CA 90001" -238142,Apple Airpods Headphones,1,150,08/09/19 18:47,"387 Elm St, Dallas, TX 75001" -238143,Lightning Charging Cable,1,14.95,08/14/19 14:59,"52 Spruce St, San Francisco, CA 94016" -238144,Apple Airpods Headphones,1,150,08/31/19 21:29,"600 Chestnut St, Dallas, TX 75001" -238145,Wired Headphones,1,11.99,08/09/19 16:25,"351 1st St, Dallas, TX 75001" -238146,Apple Airpods Headphones,1,150,08/21/19 00:24,"142 River St, San Francisco, CA 94016" -238147,AA Batteries (4-pack),2,3.84,08/06/19 05:28,"170 Main St, San Francisco, CA 94016" -238148,Lightning Charging Cable,1,14.95,08/01/19 13:52,"135 Dogwood St, Portland, ME 04101" -238149,iPhone,1,700,08/14/19 16:10,"941 Madison St, Austin, TX 73301" -238150,Wired Headphones,1,11.99,08/13/19 12:35,"429 1st St, Austin, TX 73301" -238151,Wired Headphones,1,11.99,08/16/19 20:18,"566 Spruce St, Los Angeles, CA 90001" -238152,34in Ultrawide Monitor,1,379.99,08/21/19 12:58,"10 South St, San Francisco, CA 94016" -238153,Lightning Charging Cable,1,14.95,08/02/19 18:01,"450 Lakeview St, Portland, OR 97035" -238154,Bose SoundSport Headphones,1,99.99,08/05/19 22:22,"431 Adams St, Atlanta, GA 30301" -238155,Wired Headphones,1,11.99,08/07/19 07:30,"714 Ridge St, Dallas, TX 75001" -238156,USB-C Charging Cable,1,11.95,08/26/19 14:06,"408 Center St, Austin, TX 73301" -238157,USB-C Charging Cable,1,11.95,08/12/19 19:09,"14 Lakeview St, San Francisco, CA 94016" -238157,AAA Batteries (4-pack),6,2.99,08/12/19 19:09,"14 Lakeview St, San Francisco, CA 94016" -238158,Wired Headphones,1,11.99,08/26/19 21:52,"320 Adams St, Dallas, TX 75001" -238159,Wired Headphones,1,11.99,08/23/19 02:01,"783 Madison St, Dallas, TX 75001" -238160,27in FHD Monitor,1,149.99,08/28/19 16:07,"400 Main St, New York City, NY 10001" -238161,Wired Headphones,1,11.99,08/27/19 20:02,"793 Jackson St, Los Angeles, CA 90001" -238162,ThinkPad Laptop,1,999.99,08/13/19 18:44,"532 Church St, Austin, TX 73301" -238163,Vareebadd Phone,1,400,08/15/19 19:04,"319 Highland St, Atlanta, GA 30301" -238164,AA Batteries (4-pack),1,3.84,08/18/19 20:37,"564 14th St, Los Angeles, CA 90001" -238165,AAA Batteries (4-pack),1,2.99,08/11/19 11:41,"746 Cherry St, Austin, TX 73301" -238166,AAA Batteries (4-pack),4,2.99,08/17/19 22:24,"121 Adams St, Seattle, WA 98101" -238167,LG Dryer,1,600.0,08/10/19 11:22,"785 Chestnut St, Seattle, WA 98101" -238168,AA Batteries (4-pack),2,3.84,08/05/19 09:19,"41 4th St, Seattle, WA 98101" -238169,34in Ultrawide Monitor,1,379.99,08/23/19 00:32,"417 8th St, San Francisco, CA 94016" -238170,AA Batteries (4-pack),1,3.84,08/01/19 11:07,"336 Meadow St, Dallas, TX 75001" -238171,USB-C Charging Cable,1,11.95,08/22/19 08:20,"463 11th St, Atlanta, GA 30301" -238172,USB-C Charging Cable,1,11.95,08/07/19 21:24,"790 Lake St, Boston, MA 02215" -238173,AAA Batteries (4-pack),3,2.99,08/12/19 10:50,"833 Cedar St, New York City, NY 10001" -238174,iPhone,1,700,08/01/19 21:05,"455 8th St, Boston, MA 02215" -238175,USB-C Charging Cable,1,11.95,08/14/19 17:29,"989 Main St, Dallas, TX 75001" -238176,Apple Airpods Headphones,1,150,08/09/19 10:23,"589 South St, Los Angeles, CA 90001" -238177,Wired Headphones,1,11.99,08/07/19 14:55,"638 Dogwood St, Boston, MA 02215" -238178,AAA Batteries (4-pack),2,2.99,08/24/19 19:05,"642 Jackson St, Los Angeles, CA 90001" -238179,34in Ultrawide Monitor,1,379.99,08/13/19 08:47,"598 Ridge St, Austin, TX 73301" -238180,Apple Airpods Headphones,1,150,08/11/19 11:07,"609 12th St, New York City, NY 10001" -238181,Google Phone,1,600,08/20/19 11:23,"505 13th St, Seattle, WA 98101" -238182,Macbook Pro Laptop,1,1700,08/14/19 18:13,"868 Wilson St, Seattle, WA 98101" -238183,Lightning Charging Cable,1,14.95,08/24/19 09:13,"678 Hickory St, Boston, MA 02215" -238184,Wired Headphones,1,11.99,08/08/19 17:20,"800 Center St, Portland, ME 04101" -238185,USB-C Charging Cable,1,11.95,08/08/19 10:28,"246 Hickory St, Boston, MA 02215" -238186,AA Batteries (4-pack),1,3.84,08/23/19 18:40,"770 Madison St, Seattle, WA 98101" -238187,Wired Headphones,1,11.99,08/26/19 16:26,"447 Center St, Austin, TX 73301" -238188,Apple Airpods Headphones,1,150,08/10/19 17:23,"663 Washington St, San Francisco, CA 94016" -238189,Wired Headphones,1,11.99,08/08/19 15:33,"541 Meadow St, Portland, OR 97035" -238190,Wired Headphones,1,11.99,08/23/19 18:12,"445 Lakeview St, Portland, OR 97035" -238191,iPhone,1,700,08/15/19 17:59,"762 10th St, Seattle, WA 98101" -238192,USB-C Charging Cable,1,11.95,08/24/19 14:37,"678 Highland St, Atlanta, GA 30301" -238193,USB-C Charging Cable,1,11.95,08/10/19 10:01,"111 River St, San Francisco, CA 94016" -238194,Wired Headphones,1,11.99,08/08/19 12:48,"545 Sunset St, San Francisco, CA 94016" -238195,USB-C Charging Cable,1,11.95,08/09/19 10:52,"427 Wilson St, San Francisco, CA 94016" -238196,AAA Batteries (4-pack),1,2.99,08/15/19 09:22,"622 Forest St, Atlanta, GA 30301" -238197,Bose SoundSport Headphones,1,99.99,08/16/19 12:55,"735 12th St, San Francisco, CA 94016" -238198,Apple Airpods Headphones,1,150,08/12/19 15:52,"122 Johnson St, Seattle, WA 98101" -238199,Lightning Charging Cable,1,14.95,08/27/19 10:52,"612 8th St, Los Angeles, CA 90001" -238200,Google Phone,1,600,08/27/19 18:28,"130 Sunset St, Dallas, TX 75001" -238201,Wired Headphones,1,11.99,08/09/19 09:12,"724 7th St, Atlanta, GA 30301" -238202,27in FHD Monitor,1,149.99,08/23/19 16:54,"589 14th St, San Francisco, CA 94016" -238203,20in Monitor,1,109.99,08/18/19 19:51,"476 Jackson St, Boston, MA 02215" -238204,Lightning Charging Cable,1,14.95,08/24/19 01:15,"227 Lake St, San Francisco, CA 94016" -238205,Wired Headphones,1,11.99,08/14/19 14:12,"668 7th St, New York City, NY 10001" -238206,27in 4K Gaming Monitor,1,389.99,08/04/19 16:03,"244 Main St, Boston, MA 02215" -238207,Bose SoundSport Headphones,1,99.99,08/03/19 19:11,"962 14th St, Los Angeles, CA 90001" -238208,Lightning Charging Cable,1,14.95,08/19/19 09:29,"436 Center St, Atlanta, GA 30301" -238209,USB-C Charging Cable,1,11.95,08/15/19 23:41,"157 Church St, Los Angeles, CA 90001" -238210,Bose SoundSport Headphones,1,99.99,08/17/19 19:33,"701 Chestnut St, Austin, TX 73301" -238211,Google Phone,1,600,08/08/19 11:33,"247 West St, Portland, OR 97035" -238211,USB-C Charging Cable,1,11.95,08/08/19 11:33,"247 West St, Portland, OR 97035" -238211,Wired Headphones,1,11.99,08/08/19 11:33,"247 West St, Portland, OR 97035" -238212,Wired Headphones,1,11.99,08/05/19 23:18,"690 Hickory St, San Francisco, CA 94016" -238213,Apple Airpods Headphones,1,150,08/19/19 21:00,"665 Forest St, Los Angeles, CA 90001" -238213,Macbook Pro Laptop,1,1700,08/19/19 21:00,"665 Forest St, Los Angeles, CA 90001" -238214,Google Phone,1,600,08/14/19 01:44,"7 North St, Seattle, WA 98101" -238215,Flatscreen TV,1,300,08/20/19 14:14,"9 Jefferson St, Seattle, WA 98101" -238216,27in 4K Gaming Monitor,1,389.99,08/27/19 13:46,"184 Cedar St, New York City, NY 10001" -238217,iPhone,1,700,08/28/19 08:59,"527 9th St, Atlanta, GA 30301" -238218,Bose SoundSport Headphones,1,99.99,08/24/19 09:31,"175 Elm St, San Francisco, CA 94016" -238219,20in Monitor,1,109.99,08/07/19 20:30,"632 Lake St, Seattle, WA 98101" -238220,AAA Batteries (4-pack),1,2.99,08/05/19 19:23,"258 Church St, San Francisco, CA 94016" -238221,iPhone,1,700,08/23/19 20:46,"237 1st St, Los Angeles, CA 90001" -238221,Wired Headphones,1,11.99,08/23/19 20:46,"237 1st St, Los Angeles, CA 90001" -238222,27in 4K Gaming Monitor,1,389.99,08/21/19 17:37,"264 West St, Seattle, WA 98101" -238223,27in FHD Monitor,1,149.99,08/01/19 13:43,"806 Walnut St, San Francisco, CA 94016" -238224,27in FHD Monitor,1,149.99,08/28/19 22:38,"499 Walnut St, Portland, ME 04101" -238225,AAA Batteries (4-pack),1,2.99,08/15/19 19:56,"959 Jackson St, San Francisco, CA 94016" -238226,Lightning Charging Cable,1,14.95,08/30/19 23:32,"34 Dogwood St, Los Angeles, CA 90001" -238227,Macbook Pro Laptop,1,1700,08/18/19 12:36,"394 Dogwood St, Boston, MA 02215" -238228,AA Batteries (4-pack),1,3.84,08/14/19 19:01,"677 12th St, New York City, NY 10001" -238229,Lightning Charging Cable,1,14.95,08/19/19 08:53,"834 4th St, Portland, OR 97035" -238230,USB-C Charging Cable,1,11.95,08/10/19 14:51,"454 Highland St, New York City, NY 10001" -238231,AA Batteries (4-pack),1,3.84,08/18/19 21:50,"760 Spruce St, Seattle, WA 98101" -238232,Lightning Charging Cable,1,14.95,08/12/19 15:21,"423 2nd St, Los Angeles, CA 90001" -238233,Wired Headphones,1,11.99,08/05/19 13:52,"737 Maple St, Dallas, TX 75001" -238234,AAA Batteries (4-pack),1,2.99,08/20/19 12:40,"669 Johnson St, Los Angeles, CA 90001" -238235,AA Batteries (4-pack),1,3.84,08/19/19 14:08,"478 5th St, Los Angeles, CA 90001" -238236,Flatscreen TV,1,300,08/05/19 14:00,"87 Meadow St, San Francisco, CA 94016" -238237,Google Phone,1,600,08/10/19 09:40,"792 Park St, Dallas, TX 75001" -238237,USB-C Charging Cable,1,11.95,08/10/19 09:40,"792 Park St, Dallas, TX 75001" -238238,34in Ultrawide Monitor,1,379.99,08/05/19 20:25,"327 Dogwood St, San Francisco, CA 94016" -238239,AA Batteries (4-pack),2,3.84,08/06/19 18:51,"512 South St, Seattle, WA 98101" -238240,Apple Airpods Headphones,1,150,08/16/19 17:10,"311 Sunset St, Atlanta, GA 30301" -238241,LG Washing Machine,1,600.0,08/04/19 12:15,"865 Chestnut St, New York City, NY 10001" -238242,Bose SoundSport Headphones,1,99.99,08/26/19 07:53,"307 Park St, Austin, TX 73301" -238242,Wired Headphones,1,11.99,08/26/19 07:53,"307 Park St, Austin, TX 73301" -238243,AAA Batteries (4-pack),1,2.99,08/06/19 09:51,"517 10th St, Atlanta, GA 30301" -238244,34in Ultrawide Monitor,1,379.99,08/19/19 07:28,"924 4th St, Dallas, TX 75001" -238245,AAA Batteries (4-pack),2,2.99,08/28/19 16:38,"618 Maple St, Portland, OR 97035" -238246,Apple Airpods Headphones,1,150,08/21/19 17:30,"508 Cherry St, Atlanta, GA 30301" -238247,Apple Airpods Headphones,1,150,08/08/19 22:44,"761 Forest St, San Francisco, CA 94016" -238248,ThinkPad Laptop,1,999.99,08/28/19 00:16,"918 1st St, New York City, NY 10001" -238249,AA Batteries (4-pack),1,3.84,08/28/19 12:07,"812 Sunset St, New York City, NY 10001" -238250,Lightning Charging Cable,1,14.95,08/15/19 12:05,"276 1st St, Atlanta, GA 30301" -238251,USB-C Charging Cable,1,11.95,08/28/19 20:05,"718 Madison St, San Francisco, CA 94016" -238252,USB-C Charging Cable,1,11.95,08/19/19 19:09,"729 Meadow St, Los Angeles, CA 90001" -238253,Macbook Pro Laptop,1,1700,08/10/19 19:54,"559 Dogwood St, San Francisco, CA 94016" -238254,AAA Batteries (4-pack),1,2.99,08/15/19 00:27,"723 Wilson St, San Francisco, CA 94016" -238255,AAA Batteries (4-pack),3,2.99,08/20/19 18:57,"249 Walnut St, Austin, TX 73301" -238256,Wired Headphones,1,11.99,08/22/19 20:04,"705 Jackson St, Dallas, TX 75001" -238257,USB-C Charging Cable,1,11.95,08/18/19 14:02,"73 7th St, Portland, OR 97035" -238258,Bose SoundSport Headphones,1,99.99,08/26/19 10:14,"382 12th St, New York City, NY 10001" -238259,AAA Batteries (4-pack),1,2.99,08/11/19 14:39,"2 Adams St, San Francisco, CA 94016" -238260,Apple Airpods Headphones,1,150,08/30/19 11:08,"732 Meadow St, San Francisco, CA 94016" -238261,AAA Batteries (4-pack),2,2.99,08/18/19 10:54,"229 Spruce St, New York City, NY 10001" -238262,Lightning Charging Cable,1,14.95,08/11/19 17:10,"430 Adams St, Portland, ME 04101" -238263,AAA Batteries (4-pack),1,2.99,08/22/19 18:22,"8 13th St, Boston, MA 02215" -238264,USB-C Charging Cable,1,11.95,08/17/19 23:37,"62 Adams St, Boston, MA 02215" -238265,USB-C Charging Cable,1,11.95,08/13/19 20:50,"944 1st St, San Francisco, CA 94016" -238266,Wired Headphones,1,11.99,08/10/19 19:14,"584 Main St, San Francisco, CA 94016" -238267,Wired Headphones,1,11.99,08/15/19 06:46,"841 Church St, San Francisco, CA 94016" -238268,Lightning Charging Cable,1,14.95,08/22/19 09:54,"201 6th St, New York City, NY 10001" -238269,27in 4K Gaming Monitor,1,389.99,08/06/19 22:41,"555 Cherry St, Dallas, TX 75001" -238270,Wired Headphones,1,11.99,08/28/19 00:49,"104 Main St, San Francisco, CA 94016" -238271,Lightning Charging Cable,1,14.95,08/11/19 19:14,"708 Meadow St, Portland, OR 97035" -238272,AAA Batteries (4-pack),1,2.99,08/19/19 20:15,"676 5th St, Austin, TX 73301" -238273,iPhone,1,700,08/13/19 11:00,"865 Spruce St, San Francisco, CA 94016" -238273,Lightning Charging Cable,1,14.95,08/13/19 11:00,"865 Spruce St, San Francisco, CA 94016" -238274,Apple Airpods Headphones,1,150,08/12/19 19:17,"51 Willow St, New York City, NY 10001" -238275,AAA Batteries (4-pack),1,2.99,08/03/19 21:09,"146 Hickory St, Atlanta, GA 30301" -238276,AAA Batteries (4-pack),2,2.99,08/01/19 18:49,"733 Jefferson St, Seattle, WA 98101" -238277,ThinkPad Laptop,1,999.99,08/11/19 17:31,"925 9th St, Los Angeles, CA 90001" -238278,AAA Batteries (4-pack),1,2.99,08/06/19 17:52,"240 Dogwood St, Portland, OR 97035" -238279,iPhone,1,700,08/23/19 13:00,"609 Lincoln St, Los Angeles, CA 90001" -238280,USB-C Charging Cable,1,11.95,08/06/19 16:04,"234 12th St, Dallas, TX 75001" -238281,AA Batteries (4-pack),1,3.84,08/11/19 13:10,"637 Park St, San Francisco, CA 94016" -238282,27in 4K Gaming Monitor,1,389.99,08/27/19 14:51,"451 Lakeview St, Boston, MA 02215" -238283,20in Monitor,1,109.99,08/04/19 10:30,"624 Wilson St, San Francisco, CA 94016" -238284,ThinkPad Laptop,1,999.99,08/09/19 10:38,"969 Washington St, Los Angeles, CA 90001" -238285,Wired Headphones,1,11.99,08/31/19 09:04,"766 7th St, San Francisco, CA 94016" -238286,AA Batteries (4-pack),1,3.84,08/16/19 04:25,"118 11th St, Seattle, WA 98101" -238287,Macbook Pro Laptop,1,1700,08/03/19 08:45,"292 Main St, Portland, ME 04101" -238288,Lightning Charging Cable,1,14.95,08/25/19 00:09,"478 1st St, Los Angeles, CA 90001" -238289,Apple Airpods Headphones,1,150,08/15/19 13:36,"874 2nd St, New York City, NY 10001" -238290,Lightning Charging Cable,1,14.95,08/26/19 11:48,"244 13th St, Boston, MA 02215" -238291,USB-C Charging Cable,2,11.95,08/26/19 15:51,"535 Church St, Los Angeles, CA 90001" -238292,AA Batteries (4-pack),1,3.84,08/22/19 18:34,"987 West St, San Francisco, CA 94016" -238293,Google Phone,1,600,08/02/19 08:42,"289 Lincoln St, Los Angeles, CA 90001" -238294,AA Batteries (4-pack),1,3.84,08/28/19 20:00,"558 Wilson St, Los Angeles, CA 90001" -238294,Wired Headphones,1,11.99,08/28/19 20:00,"558 Wilson St, Los Angeles, CA 90001" -238295,Flatscreen TV,1,300,08/31/19 08:01,"253 4th St, San Francisco, CA 94016" -238296,Lightning Charging Cable,1,14.95,08/21/19 20:33,"332 2nd St, New York City, NY 10001" -238297,Apple Airpods Headphones,1,150,08/30/19 18:47,"551 Lakeview St, Seattle, WA 98101" -238298,Lightning Charging Cable,1,14.95,08/26/19 18:04,"265 Cherry St, New York City, NY 10001" -238299,USB-C Charging Cable,1,11.95,08/10/19 18:16,"969 Madison St, Boston, MA 02215" -238300,Wired Headphones,1,11.99,08/18/19 14:43,"277 Washington St, Atlanta, GA 30301" -238301,Wired Headphones,1,11.99,08/03/19 19:48,"238 Adams St, Boston, MA 02215" -238302,AA Batteries (4-pack),1,3.84,08/29/19 19:57,"868 Forest St, San Francisco, CA 94016" -238303,27in 4K Gaming Monitor,1,389.99,08/23/19 15:01,"536 Washington St, Portland, OR 97035" -238304,Wired Headphones,1,11.99,08/02/19 12:19,"67 8th St, New York City, NY 10001" -238305,AAA Batteries (4-pack),1,2.99,08/21/19 13:32,"80 Madison St, New York City, NY 10001" -238306,Apple Airpods Headphones,1,150,08/07/19 21:42,"554 1st St, Austin, TX 73301" -238307,Flatscreen TV,1,300,08/04/19 20:15,"731 Ridge St, Los Angeles, CA 90001" -238308,Flatscreen TV,1,300,08/29/19 19:09,"47 Lakeview St, San Francisco, CA 94016" -238309,AA Batteries (4-pack),1,3.84,08/27/19 08:12,"176 Willow St, Atlanta, GA 30301" -238310,AAA Batteries (4-pack),1,2.99,08/21/19 19:09,"105 Lake St, Seattle, WA 98101" -238311,Wired Headphones,1,11.99,08/27/19 18:18,"97 Elm St, San Francisco, CA 94016" -238312,AAA Batteries (4-pack),4,2.99,08/17/19 14:48,"383 Hickory St, Atlanta, GA 30301" -238313,Wired Headphones,1,11.99,08/26/19 20:19,"191 Wilson St, Portland, OR 97035" -238314,USB-C Charging Cable,1,11.95,08/02/19 20:27,"875 Hill St, Los Angeles, CA 90001" -238315,AAA Batteries (4-pack),2,2.99,08/10/19 22:28,"495 6th St, Los Angeles, CA 90001" -238316,Apple Airpods Headphones,1,150,08/20/19 14:21,"667 Main St, New York City, NY 10001" -238317,Google Phone,1,600,08/02/19 23:10,"635 Park St, Boston, MA 02215" -238318,Wired Headphones,1,11.99,08/28/19 00:36,"327 11th St, Seattle, WA 98101" -238319,Google Phone,1,600,08/27/19 09:12,"740 12th St, New York City, NY 10001" -238320,Apple Airpods Headphones,1,150,08/12/19 12:17,"860 Wilson St, Los Angeles, CA 90001" -238321,Bose SoundSport Headphones,1,99.99,08/14/19 14:49,"63 11th St, San Francisco, CA 94016" -238322,Wired Headphones,1,11.99,08/02/19 14:31,"42 Madison St, Portland, OR 97035" -238323,USB-C Charging Cable,1,11.95,08/15/19 09:23,"544 12th St, New York City, NY 10001" -238324,27in 4K Gaming Monitor,2,389.99,08/28/19 20:52,"827 Maple St, New York City, NY 10001" -238325,AAA Batteries (4-pack),2,2.99,08/20/19 12:52,"986 Madison St, Los Angeles, CA 90001" -238326,AAA Batteries (4-pack),1,2.99,08/11/19 14:51,"440 Cedar St, San Francisco, CA 94016" -238327,AAA Batteries (4-pack),2,2.99,08/21/19 19:41,"836 Walnut St, New York City, NY 10001" -238328,USB-C Charging Cable,1,11.95,08/12/19 00:59,"192 Maple St, Austin, TX 73301" -238329,Macbook Pro Laptop,1,1700,08/03/19 09:09,"552 2nd St, San Francisco, CA 94016" -238330,Vareebadd Phone,1,400,08/15/19 22:07,"384 4th St, Dallas, TX 75001" -238330,AA Batteries (4-pack),1,3.84,08/15/19 22:07,"384 4th St, Dallas, TX 75001" -238331,Lightning Charging Cable,1,14.95,08/01/19 14:17,"256 Chestnut St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -238332,Google Phone,1,600,08/04/19 17:54,"467 Hickory St, Austin, TX 73301" -238333,Wired Headphones,1,11.99,08/14/19 02:30,"424 5th St, Atlanta, GA 30301" -238334,Apple Airpods Headphones,1,150,08/24/19 21:18,"396 Meadow St, San Francisco, CA 94016" -238335,Wired Headphones,1,11.99,08/13/19 10:14,"1 Main St, San Francisco, CA 94016" -238336,Wired Headphones,1,11.99,08/16/19 19:30,"444 Jefferson St, New York City, NY 10001" -238337,Wired Headphones,1,11.99,08/28/19 18:33,"206 Washington St, San Francisco, CA 94016" -238338,Vareebadd Phone,2,400,08/11/19 00:02,"419 Adams St, San Francisco, CA 94016" -238339,AA Batteries (4-pack),2,3.84,08/29/19 20:12,"902 Maple St, Seattle, WA 98101" -238340,Wired Headphones,1,11.99,08/10/19 09:42,"751 Jefferson St, San Francisco, CA 94016" -238341,Lightning Charging Cable,1,14.95,08/16/19 23:05,"542 Cherry St, San Francisco, CA 94016" -238342,AA Batteries (4-pack),1,3.84,08/13/19 23:18,"395 7th St, Los Angeles, CA 90001" -238343,Lightning Charging Cable,1,14.95,08/08/19 08:00,"981 Jackson St, San Francisco, CA 94016" -238344,Macbook Pro Laptop,1,1700,08/01/19 20:21,"961 Pine St, Boston, MA 02215" -238345,AAA Batteries (4-pack),3,2.99,08/04/19 12:09,"987 Cherry St, Boston, MA 02215" -238346,AA Batteries (4-pack),1,3.84,08/29/19 21:19,"796 Cherry St, San Francisco, CA 94016" -238347,AAA Batteries (4-pack),1,2.99,08/18/19 18:13,"587 Lakeview St, Austin, TX 73301" -238348,Lightning Charging Cable,1,14.95,08/30/19 18:18,"346 6th St, Portland, ME 04101" -238349,Lightning Charging Cable,1,14.95,08/13/19 10:54,"64 Cherry St, Atlanta, GA 30301" -238350,USB-C Charging Cable,1,11.95,08/25/19 13:10,"989 North St, Seattle, WA 98101" -238351,Lightning Charging Cable,1,14.95,08/02/19 23:01,"158 Park St, Dallas, TX 75001" -238352,Lightning Charging Cable,1,14.95,08/22/19 18:47,"167 West St, New York City, NY 10001" -238353,USB-C Charging Cable,1,11.95,08/11/19 07:44,"585 9th St, New York City, NY 10001" -238354,Lightning Charging Cable,1,14.95,08/30/19 10:16,"353 8th St, Portland, ME 04101" -238355,AAA Batteries (4-pack),1,2.99,08/09/19 17:21,"184 Lincoln St, Boston, MA 02215" -238356,20in Monitor,1,109.99,08/16/19 19:34,"139 Adams St, Seattle, WA 98101" -238357,AAA Batteries (4-pack),1,2.99,08/18/19 04:12,"760 Maple St, Los Angeles, CA 90001" -238358,Wired Headphones,1,11.99,08/15/19 07:28,"106 Jefferson St, Boston, MA 02215" -238359,Wired Headphones,1,11.99,08/22/19 15:25,"151 1st St, San Francisco, CA 94016" -238360,Bose SoundSport Headphones,1,99.99,08/18/19 17:11,"62 14th St, Los Angeles, CA 90001" -238361,AA Batteries (4-pack),1,3.84,08/24/19 21:32,"97 Lake St, New York City, NY 10001" -238362,iPhone,1,700,08/18/19 13:13,"459 Wilson St, Austin, TX 73301" -238362,Lightning Charging Cable,1,14.95,08/18/19 13:13,"459 Wilson St, Austin, TX 73301" -238362,Apple Airpods Headphones,1,150,08/18/19 13:13,"459 Wilson St, Austin, TX 73301" -238363,Lightning Charging Cable,1,14.95,08/22/19 11:06,"832 Lakeview St, Los Angeles, CA 90001" -238364,Bose SoundSport Headphones,2,99.99,08/28/19 15:40,"262 Meadow St, Seattle, WA 98101" -238365,AAA Batteries (4-pack),1,2.99,08/08/19 18:36,"218 6th St, Austin, TX 73301" -238366,Apple Airpods Headphones,1,150,08/15/19 14:55,"282 Forest St, Seattle, WA 98101" -238367,AAA Batteries (4-pack),1,2.99,08/31/19 23:13,"245 Willow St, Los Angeles, CA 90001" -238368,AAA Batteries (4-pack),2,2.99,08/17/19 13:37,"944 Elm St, Portland, OR 97035" -238369,Macbook Pro Laptop,1,1700,08/12/19 16:45,"226 Lake St, New York City, NY 10001" -238370,AAA Batteries (4-pack),1,2.99,08/25/19 14:37,"692 Johnson St, San Francisco, CA 94016" -238371,USB-C Charging Cable,1,11.95,08/07/19 19:43,"632 Highland St, Austin, TX 73301" -238372,AA Batteries (4-pack),2,3.84,08/14/19 17:52,"203 West St, Los Angeles, CA 90001" -238373,Lightning Charging Cable,1,14.95,08/17/19 16:26,"524 Walnut St, San Francisco, CA 94016" -238374,USB-C Charging Cable,1,11.95,08/27/19 16:15,"284 Sunset St, Austin, TX 73301" -238375,Wired Headphones,1,11.99,08/30/19 15:46,"619 Forest St, Seattle, WA 98101" -238376,Bose SoundSport Headphones,1,99.99,08/05/19 18:53,"899 Madison St, Los Angeles, CA 90001" -238377,27in FHD Monitor,1,149.99,08/19/19 13:20,"766 Jefferson St, Los Angeles, CA 90001" -238378,Bose SoundSport Headphones,1,99.99,08/01/19 21:12,"426 Ridge St, San Francisco, CA 94016" -238379,iPhone,1,700,08/02/19 10:19,"210 South St, New York City, NY 10001" -238380,Google Phone,1,600,08/26/19 20:19,"166 Forest St, San Francisco, CA 94016" -238381,AAA Batteries (4-pack),1,2.99,08/22/19 23:47,"223 North St, Seattle, WA 98101" -238382,AA Batteries (4-pack),2,3.84,08/06/19 15:38,"272 South St, New York City, NY 10001" -238383,Bose SoundSport Headphones,1,99.99,08/22/19 14:15,"339 Center St, New York City, NY 10001" -238383,AA Batteries (4-pack),1,3.84,08/22/19 14:15,"339 Center St, New York City, NY 10001" -238384,Flatscreen TV,1,300,08/27/19 11:12,"255 Main St, Boston, MA 02215" -238385,27in 4K Gaming Monitor,1,389.99,08/29/19 15:03,"675 Highland St, San Francisco, CA 94016" -238386,27in 4K Gaming Monitor,1,389.99,08/18/19 11:16,"887 Forest St, San Francisco, CA 94016" -238387,AA Batteries (4-pack),1,3.84,08/24/19 13:25,"229 6th St, Portland, OR 97035" -238388,Apple Airpods Headphones,1,150,08/30/19 12:50,"925 8th St, Los Angeles, CA 90001" -238389,USB-C Charging Cable,1,11.95,08/01/19 11:48,"428 Main St, Seattle, WA 98101" -238390,Apple Airpods Headphones,1,150,08/08/19 22:59,"595 7th St, Los Angeles, CA 90001" -238391,Bose SoundSport Headphones,1,99.99,08/31/19 19:47,"89 Willow St, Seattle, WA 98101" -238392,Wired Headphones,1,11.99,08/03/19 22:12,"597 Lakeview St, Boston, MA 02215" -238393,USB-C Charging Cable,2,11.95,08/15/19 19:21,"39 Wilson St, Atlanta, GA 30301" -238394,iPhone,1,700,08/27/19 07:31,"154 2nd St, Boston, MA 02215" -238395,AA Batteries (4-pack),3,3.84,08/02/19 00:00,"824 Forest St, Austin, TX 73301" -238395,Google Phone,1,600,08/02/19 00:00,"824 Forest St, Austin, TX 73301" -238396,AA Batteries (4-pack),1,3.84,08/23/19 22:16,"622 Adams St, New York City, NY 10001" -238397,Apple Airpods Headphones,1,150,08/28/19 16:49,"124 Park St, Los Angeles, CA 90001" -238398,AA Batteries (4-pack),1,3.84,08/08/19 19:24,"204 Spruce St, San Francisco, CA 94016" -238398,AAA Batteries (4-pack),2,2.99,08/08/19 19:24,"204 Spruce St, San Francisco, CA 94016" -238399,Google Phone,1,600,08/05/19 20:50,"579 Pine St, New York City, NY 10001" -238399,USB-C Charging Cable,1,11.95,08/05/19 20:50,"579 Pine St, New York City, NY 10001" -238400,AA Batteries (4-pack),1,3.84,08/21/19 09:31,"208 2nd St, San Francisco, CA 94016" -238401,Vareebadd Phone,1,400,08/04/19 12:11,"884 Willow St, San Francisco, CA 94016" -238402,Wired Headphones,1,11.99,08/22/19 20:51,"504 Jackson St, Dallas, TX 75001" -238403,USB-C Charging Cable,1,11.95,08/10/19 14:00,"958 Hickory St, San Francisco, CA 94016" -238404,USB-C Charging Cable,1,11.95,08/11/19 13:42,"296 Park St, Portland, OR 97035" -238405,Apple Airpods Headphones,1,150,08/16/19 15:15,"756 5th St, Seattle, WA 98101" -238406,Flatscreen TV,1,300,08/11/19 09:07,"522 Cherry St, Los Angeles, CA 90001" -238407,iPhone,1,700,08/02/19 20:44,"127 Park St, Atlanta, GA 30301" -238408,Apple Airpods Headphones,1,150,08/10/19 08:46,"228 Jackson St, Atlanta, GA 30301" -238409,Flatscreen TV,1,300,08/30/19 16:18,"277 Center St, Portland, OR 97035" -238410,Bose SoundSport Headphones,1,99.99,08/21/19 12:23,"404 Adams St, Seattle, WA 98101" -238411,USB-C Charging Cable,1,11.95,08/14/19 11:29,"860 7th St, Portland, OR 97035" -238412,AAA Batteries (4-pack),3,2.99,08/01/19 05:40,"999 South St, San Francisco, CA 94016" -238413,iPhone,1,700,08/09/19 13:31,"587 Park St, Boston, MA 02215" -238414,AAA Batteries (4-pack),1,2.99,08/01/19 22:36,"830 Walnut St, San Francisco, CA 94016" -238415,Wired Headphones,1,11.99,08/25/19 12:57,"177 Lake St, Seattle, WA 98101" -238416,AAA Batteries (4-pack),2,2.99,08/13/19 10:14,"717 14th St, San Francisco, CA 94016" -238417,Wired Headphones,1,11.99,08/20/19 14:31,"232 Chestnut St, New York City, NY 10001" -238418,AA Batteries (4-pack),2,3.84,08/07/19 02:11,"766 Elm St, Boston, MA 02215" -238419,Lightning Charging Cable,1,14.95,08/24/19 06:33,"287 1st St, San Francisco, CA 94016" -238420,USB-C Charging Cable,1,11.95,08/14/19 18:54,"284 Hickory St, Portland, OR 97035" -238421,Flatscreen TV,1,300,08/22/19 20:45,"902 9th St, San Francisco, CA 94016" -238422,USB-C Charging Cable,1,11.95,08/25/19 12:02,"238 Wilson St, Dallas, TX 75001" -238423,27in 4K Gaming Monitor,1,389.99,08/25/19 22:21,"647 Jefferson St, San Francisco, CA 94016" -238424,Bose SoundSport Headphones,1,99.99,08/05/19 18:12,"230 Madison St, San Francisco, CA 94016" -238425,AAA Batteries (4-pack),2,2.99,08/27/19 11:21,"512 4th St, Austin, TX 73301" -238426,Apple Airpods Headphones,1,150,08/21/19 20:01,"427 Hickory St, San Francisco, CA 94016" -238427,AAA Batteries (4-pack),3,2.99,08/20/19 07:15,"90 Dogwood St, Dallas, TX 75001" -238428,Lightning Charging Cable,1,14.95,08/21/19 21:16,"219 8th St, San Francisco, CA 94016" -238429,Wired Headphones,1,11.99,08/25/19 22:25,"31 Washington St, Los Angeles, CA 90001" -238430,20in Monitor,1,109.99,08/29/19 22:00,"100 River St, San Francisco, CA 94016" -238431,AAA Batteries (4-pack),1,2.99,08/07/19 22:31,"267 Dogwood St, Los Angeles, CA 90001" -238432,USB-C Charging Cable,1,11.95,08/10/19 20:13,"158 8th St, San Francisco, CA 94016" -238433,iPhone,1,700,08/29/19 17:58,"903 12th St, Los Angeles, CA 90001" -238433,Lightning Charging Cable,1,14.95,08/29/19 17:58,"903 12th St, Los Angeles, CA 90001" -238434,USB-C Charging Cable,1,11.95,08/18/19 07:12,"120 4th St, Dallas, TX 75001" -238435,USB-C Charging Cable,1,11.95,08/22/19 15:13,"489 6th St, San Francisco, CA 94016" -238436,Flatscreen TV,1,300,08/17/19 13:34,"773 River St, Los Angeles, CA 90001" -238437,USB-C Charging Cable,1,11.95,08/02/19 16:37,"678 Jackson St, Seattle, WA 98101" -238438,Wired Headphones,1,11.99,08/06/19 07:07,"817 Ridge St, Portland, OR 97035" -238439,AAA Batteries (4-pack),1,2.99,08/31/19 20:15,"496 South St, San Francisco, CA 94016" -238440,Apple Airpods Headphones,1,150,08/12/19 14:14,"600 Cedar St, Boston, MA 02215" -238441,iPhone,1,700,08/25/19 23:16,"95 Hill St, New York City, NY 10001" -238441,Lightning Charging Cable,1,14.95,08/25/19 23:16,"95 Hill St, New York City, NY 10001" -238442,34in Ultrawide Monitor,1,379.99,08/14/19 07:21,"330 Johnson St, San Francisco, CA 94016" -238443,AA Batteries (4-pack),1,3.84,08/19/19 06:57,"727 1st St, Seattle, WA 98101" -238444,Bose SoundSport Headphones,1,99.99,08/13/19 14:12,"585 Jackson St, New York City, NY 10001" -238445,Macbook Pro Laptop,1,1700,08/24/19 12:54,"26 North St, Portland, OR 97035" -238446,USB-C Charging Cable,2,11.95,08/12/19 15:06,"808 West St, San Francisco, CA 94016" -238447,Lightning Charging Cable,2,14.95,08/05/19 16:04,"324 14th St, Seattle, WA 98101" -238448,Wired Headphones,1,11.99,08/14/19 22:11,"985 10th St, San Francisco, CA 94016" -238449,Wired Headphones,1,11.99,08/05/19 18:59,"178 Johnson St, New York City, NY 10001" -238450,USB-C Charging Cable,2,11.95,08/04/19 09:50,"215 Hickory St, Los Angeles, CA 90001" -238451,AAA Batteries (4-pack),1,2.99,08/09/19 08:55,"577 8th St, Dallas, TX 75001" -238452,Macbook Pro Laptop,1,1700,08/28/19 20:37,"415 Elm St, New York City, NY 10001" -238453,Lightning Charging Cable,1,14.95,08/06/19 12:19,"896 1st St, San Francisco, CA 94016" -238454,Flatscreen TV,1,300,08/02/19 09:51,"816 North St, Boston, MA 02215" -238455,Lightning Charging Cable,1,14.95,08/19/19 23:16,"70 Chestnut St, Austin, TX 73301" -238456,27in 4K Gaming Monitor,1,389.99,08/23/19 16:51,"181 Wilson St, San Francisco, CA 94016" -238457,AA Batteries (4-pack),1,3.84,08/05/19 20:09,"317 Church St, Boston, MA 02215" -238458,AAA Batteries (4-pack),1,2.99,08/20/19 19:54,"514 13th St, Boston, MA 02215" -238459,27in FHD Monitor,1,149.99,08/07/19 12:11,"319 Center St, San Francisco, CA 94016" -238460,27in FHD Monitor,1,149.99,08/30/19 16:46,"297 Ridge St, Dallas, TX 75001" -238461,Apple Airpods Headphones,1,150,08/20/19 06:21,"967 Lincoln St, Atlanta, GA 30301" -238461,Macbook Pro Laptop,1,1700,08/20/19 06:21,"967 Lincoln St, Atlanta, GA 30301" -238462,Bose SoundSport Headphones,1,99.99,08/15/19 11:24,"638 14th St, San Francisco, CA 94016" -238463,Lightning Charging Cable,1,14.95,08/21/19 05:50,"924 Maple St, San Francisco, CA 94016" -238464,USB-C Charging Cable,1,11.95,08/03/19 09:08,"566 Washington St, Los Angeles, CA 90001" -238465,iPhone,1,700,08/23/19 17:48,"607 River St, Seattle, WA 98101" -238466,USB-C Charging Cable,1,11.95,08/16/19 20:35,"529 2nd St, San Francisco, CA 94016" -238467,27in 4K Gaming Monitor,1,389.99,08/07/19 21:27,"188 Ridge St, Atlanta, GA 30301" -238468,AAA Batteries (4-pack),2,2.99,08/25/19 20:29,"652 Chestnut St, Dallas, TX 75001" -238469,AAA Batteries (4-pack),1,2.99,08/25/19 10:29,"238 Lake St, San Francisco, CA 94016" -238470,AAA Batteries (4-pack),1,2.99,08/26/19 15:46,"892 Main St, San Francisco, CA 94016" -238471,AA Batteries (4-pack),1,3.84,08/21/19 14:06,"86 Madison St, Los Angeles, CA 90001" -238472,Bose SoundSport Headphones,1,99.99,08/20/19 18:15,"995 Hickory St, Portland, OR 97035" -238473,Apple Airpods Headphones,1,150,08/29/19 23:18,"230 Lakeview St, Portland, OR 97035" -238474,Google Phone,1,600,08/02/19 22:26,"48 Madison St, San Francisco, CA 94016" -238474,USB-C Charging Cable,1,11.95,08/02/19 22:26,"48 Madison St, San Francisco, CA 94016" -238475,Apple Airpods Headphones,1,150,08/17/19 16:53,"520 Jefferson St, Los Angeles, CA 90001" -238476,27in 4K Gaming Monitor,1,389.99,08/22/19 19:17,"210 Meadow St, San Francisco, CA 94016" -238477,Wired Headphones,1,11.99,08/25/19 14:34,"49 Cherry St, Boston, MA 02215" -238478,AA Batteries (4-pack),2,3.84,08/15/19 17:56,"997 Dogwood St, New York City, NY 10001" -238479,Flatscreen TV,1,300,08/16/19 07:53,"192 8th St, San Francisco, CA 94016" -238480,AA Batteries (4-pack),1,3.84,08/09/19 13:18,"853 Center St, Los Angeles, CA 90001" -238481,AAA Batteries (4-pack),1,2.99,08/12/19 13:14,"866 Cherry St, San Francisco, CA 94016" -238482,Flatscreen TV,1,300,08/22/19 22:56,"569 River St, Austin, TX 73301" -238483,34in Ultrawide Monitor,1,379.99,08/29/19 18:19,"442 Hill St, New York City, NY 10001" -238484,Lightning Charging Cable,1,14.95,08/16/19 23:02,"650 7th St, Los Angeles, CA 90001" -238485,USB-C Charging Cable,1,11.95,08/08/19 10:17,"985 Hickory St, Los Angeles, CA 90001" -238486,Lightning Charging Cable,1,14.95,08/20/19 15:56,"513 River St, New York City, NY 10001" -238487,USB-C Charging Cable,1,11.95,08/26/19 06:26,"538 South St, Boston, MA 02215" -238488,Lightning Charging Cable,1,14.95,08/11/19 19:36,"380 Wilson St, Boston, MA 02215" -238489,AAA Batteries (4-pack),1,2.99,08/16/19 15:05,"768 Washington St, Seattle, WA 98101" -238490,AA Batteries (4-pack),2,3.84,08/25/19 19:32,"409 Cherry St, New York City, NY 10001" -238491,USB-C Charging Cable,1,11.95,08/16/19 10:46,"789 Madison St, Los Angeles, CA 90001" -238492,Google Phone,1,600,08/09/19 20:47,"890 12th St, New York City, NY 10001" -238493,AA Batteries (4-pack),1,3.84,08/03/19 16:02,"643 Dogwood St, San Francisco, CA 94016" -238494,Wired Headphones,1,11.99,08/27/19 15:29,"186 9th St, Atlanta, GA 30301" -238495,20in Monitor,1,109.99,08/05/19 13:40,"988 14th St, San Francisco, CA 94016" -238496,ThinkPad Laptop,1,999.99,08/04/19 20:48,"290 6th St, Seattle, WA 98101" -238497,Wired Headphones,1,11.99,08/13/19 18:15,"395 1st St, Seattle, WA 98101" -238498,Lightning Charging Cable,1,14.95,08/24/19 21:38,"181 Forest St, New York City, NY 10001" -238499,27in 4K Gaming Monitor,1,389.99,08/17/19 18:56,"980 Pine St, Austin, TX 73301" -238500,Vareebadd Phone,1,400,08/16/19 15:06,"302 2nd St, Boston, MA 02215" -238501,Lightning Charging Cable,1,14.95,08/18/19 17:56,"80 Chestnut St, Seattle, WA 98101" -238502,Wired Headphones,1,11.99,08/15/19 16:16,"204 Forest St, Atlanta, GA 30301" -238503,AA Batteries (4-pack),1,3.84,08/06/19 04:31,"549 12th St, Boston, MA 02215" -238504,Macbook Pro Laptop,1,1700,08/06/19 22:19,"751 2nd St, Boston, MA 02215" -238505,Lightning Charging Cable,1,14.95,08/09/19 00:13,"499 Church St, Los Angeles, CA 90001" -238506,27in FHD Monitor,1,149.99,08/07/19 16:53,"63 5th St, Los Angeles, CA 90001" -238507,USB-C Charging Cable,1,11.95,08/11/19 14:37,"775 2nd St, San Francisco, CA 94016" -238508,27in 4K Gaming Monitor,1,389.99,08/17/19 21:31,"393 Ridge St, New York City, NY 10001" -238509,USB-C Charging Cable,1,11.95,08/25/19 21:44,"614 10th St, San Francisco, CA 94016" -238510,27in 4K Gaming Monitor,1,389.99,08/05/19 11:28,"5 6th St, Dallas, TX 75001" -238511,AAA Batteries (4-pack),1,2.99,08/15/19 13:12,"295 Lincoln St, Portland, ME 04101" -238512,Macbook Pro Laptop,1,1700,08/16/19 13:06,"285 Chestnut St, Los Angeles, CA 90001" -238513,Bose SoundSport Headphones,1,99.99,08/10/19 15:13,"118 Wilson St, Portland, OR 97035" -238514,AAA Batteries (4-pack),1,2.99,08/31/19 19:52,"492 Johnson St, Boston, MA 02215" -238515,Lightning Charging Cable,1,14.95,08/03/19 10:57,"712 Center St, San Francisco, CA 94016" -238516,AAA Batteries (4-pack),2,2.99,08/21/19 00:05,"750 Sunset St, Atlanta, GA 30301" -238517,Bose SoundSport Headphones,1,99.99,08/29/19 13:05,"428 2nd St, San Francisco, CA 94016" -238518,Bose SoundSport Headphones,1,99.99,08/31/19 21:22,"160 Hill St, Dallas, TX 75001" -238519,AAA Batteries (4-pack),2,2.99,08/22/19 18:31,"573 Hickory St, San Francisco, CA 94016" -238520,AA Batteries (4-pack),1,3.84,08/16/19 13:40,"260 Cedar St, New York City, NY 10001" -238521,USB-C Charging Cable,1,11.95,08/15/19 14:27,"56 West St, Dallas, TX 75001" -238522,Wired Headphones,1,11.99,08/31/19 13:48,"93 Jefferson St, Dallas, TX 75001" -238522,34in Ultrawide Monitor,1,379.99,08/31/19 13:48,"93 Jefferson St, Dallas, TX 75001" -238523,AAA Batteries (4-pack),1,2.99,08/14/19 18:38,"48 Main St, New York City, NY 10001" -238524,34in Ultrawide Monitor,1,379.99,08/09/19 12:53,"872 1st St, San Francisco, CA 94016" -238525,Apple Airpods Headphones,1,150,08/14/19 20:29,"376 4th St, Boston, MA 02215" -238526,27in FHD Monitor,1,149.99,08/13/19 09:51,"882 12th St, New York City, NY 10001" -238527,AAA Batteries (4-pack),2,2.99,08/24/19 12:56,"801 Maple St, Dallas, TX 75001" -238528,ThinkPad Laptop,1,999.99,08/05/19 17:26,"229 Hill St, San Francisco, CA 94016" -238529,AAA Batteries (4-pack),1,2.99,08/26/19 20:16,"590 14th St, San Francisco, CA 94016" -238530,AA Batteries (4-pack),1,3.84,08/22/19 22:56,"973 Ridge St, San Francisco, CA 94016" -238531,AAA Batteries (4-pack),1,2.99,08/23/19 01:20,"726 West St, New York City, NY 10001" -238532,27in FHD Monitor,1,149.99,08/14/19 20:38,"318 Pine St, Portland, OR 97035" -238533,AA Batteries (4-pack),2,3.84,08/30/19 17:58,"168 10th St, Portland, OR 97035" -238534,27in FHD Monitor,1,149.99,08/06/19 02:08,"82 Madison St, San Francisco, CA 94016" -238535,Bose SoundSport Headphones,1,99.99,08/30/19 14:57,"139 Main St, Los Angeles, CA 90001" -238536,Apple Airpods Headphones,1,150,08/24/19 18:52,"527 Washington St, San Francisco, CA 94016" -238537,34in Ultrawide Monitor,1,379.99,08/29/19 19:45,"833 5th St, Boston, MA 02215" -238538,Apple Airpods Headphones,1,150,08/22/19 13:53,"184 Madison St, Dallas, TX 75001" -238539,34in Ultrawide Monitor,1,379.99,08/23/19 09:30,"914 Adams St, Boston, MA 02215" -238540,USB-C Charging Cable,1,11.95,08/13/19 23:10,"215 Willow St, Dallas, TX 75001" -238541,AAA Batteries (4-pack),1,2.99,08/05/19 16:55,"294 Hill St, Boston, MA 02215" -238542,AA Batteries (4-pack),2,3.84,08/14/19 17:27,"899 Hill St, New York City, NY 10001" -238543,Bose SoundSport Headphones,1,99.99,08/03/19 00:37,"178 Lincoln St, Portland, OR 97035" -238544,Wired Headphones,1,11.99,08/04/19 18:00,"52 Elm St, San Francisco, CA 94016" -238545,AAA Batteries (4-pack),1,2.99,08/28/19 22:59,"381 Cherry St, San Francisco, CA 94016" -238546,Macbook Pro Laptop,1,1700,08/15/19 21:02,"93 West St, Los Angeles, CA 90001" -238547,USB-C Charging Cable,2,11.95,08/16/19 20:15,"920 Lakeview St, New York City, NY 10001" -238548,34in Ultrawide Monitor,1,379.99,08/12/19 05:43,"345 Adams St, Atlanta, GA 30301" -238549,AAA Batteries (4-pack),1,2.99,08/23/19 18:26,"408 13th St, Portland, OR 97035" -238550,Lightning Charging Cable,1,14.95,08/31/19 20:15,"123 Wilson St, Boston, MA 02215" -238551,Wired Headphones,2,11.99,08/20/19 12:04,"259 Forest St, Atlanta, GA 30301" -238552,Apple Airpods Headphones,1,150,08/08/19 14:36,"473 Center St, San Francisco, CA 94016" -238553,AA Batteries (4-pack),1,3.84,08/03/19 15:04,"260 Madison St, San Francisco, CA 94016" -238554,27in 4K Gaming Monitor,1,389.99,08/07/19 08:49,"445 Hill St, San Francisco, CA 94016" -238555,Bose SoundSport Headphones,1,99.99,08/17/19 16:08,"14 Church St, San Francisco, CA 94016" -238556,Apple Airpods Headphones,1,150,08/18/19 21:02,"990 8th St, Atlanta, GA 30301" -238557,USB-C Charging Cable,1,11.95,08/21/19 18:10,"257 Main St, New York City, NY 10001" -238558,AAA Batteries (4-pack),2,2.99,08/19/19 14:49,"504 2nd St, Boston, MA 02215" -238559,Lightning Charging Cable,1,14.95,08/27/19 07:09,"509 7th St, Los Angeles, CA 90001" -238560,AAA Batteries (4-pack),2,2.99,08/07/19 17:21,"103 Main St, Los Angeles, CA 90001" -238561,Wired Headphones,1,11.99,08/19/19 20:37,"420 Park St, Seattle, WA 98101" -238562,Flatscreen TV,1,300,08/14/19 08:05,"593 Maple St, New York City, NY 10001" -238563,Wired Headphones,2,11.99,08/22/19 15:28,"573 8th St, Seattle, WA 98101" -238564,27in FHD Monitor,1,149.99,08/28/19 14:19,"22 Hickory St, Boston, MA 02215" -238565,Lightning Charging Cable,1,14.95,08/15/19 23:22,"274 Cherry St, Seattle, WA 98101" -238566,USB-C Charging Cable,1,11.95,08/13/19 17:34,"347 Madison St, Atlanta, GA 30301" -238567,AA Batteries (4-pack),1,3.84,08/23/19 12:12,"718 10th St, San Francisco, CA 94016" -238568,ThinkPad Laptop,1,999.99,08/02/19 18:07,"18 North St, Boston, MA 02215" -238569,Bose SoundSport Headphones,1,99.99,08/21/19 18:46,"567 2nd St, Seattle, WA 98101" -238570,AAA Batteries (4-pack),2,2.99,08/15/19 22:31,"829 4th St, Atlanta, GA 30301" -238571,USB-C Charging Cable,1,11.95,08/05/19 23:01,"739 River St, Atlanta, GA 30301" -238572,Lightning Charging Cable,1,14.95,08/09/19 14:44,"876 Meadow St, Boston, MA 02215" -238573,34in Ultrawide Monitor,1,379.99,08/15/19 16:38,"87 Cherry St, Los Angeles, CA 90001" -238574,Apple Airpods Headphones,1,150,08/29/19 11:37,"524 Spruce St, San Francisco, CA 94016" -238575,USB-C Charging Cable,1,11.95,08/07/19 10:40,"724 Meadow St, San Francisco, CA 94016" -238576,AAA Batteries (4-pack),2,2.99,08/19/19 21:22,"742 Forest St, Atlanta, GA 30301" -238577,34in Ultrawide Monitor,1,379.99,08/02/19 18:31,"272 Elm St, Portland, ME 04101" -238578,USB-C Charging Cable,1,11.95,08/10/19 18:31,"30 Maple St, Dallas, TX 75001" -238579,ThinkPad Laptop,1,999.99,08/30/19 19:52,"476 7th St, Dallas, TX 75001" -238580,ThinkPad Laptop,1,999.99,08/29/19 14:37,"867 11th St, Seattle, WA 98101" -238581,Bose SoundSport Headphones,2,99.99,08/03/19 22:59,"759 Main St, San Francisco, CA 94016" -238582,27in 4K Gaming Monitor,1,389.99,08/07/19 13:54,"439 13th St, Atlanta, GA 30301" -238583,27in FHD Monitor,1,149.99,08/18/19 16:02,"17 Lake St, Seattle, WA 98101" -238584,AAA Batteries (4-pack),3,2.99,08/14/19 11:04,"146 5th St, Boston, MA 02215" -238585,AAA Batteries (4-pack),2,2.99,08/21/19 06:50,"28 North St, Los Angeles, CA 90001" -238586,AAA Batteries (4-pack),4,2.99,08/04/19 16:32,"480 Spruce St, San Francisco, CA 94016" -238587,Lightning Charging Cable,1,14.95,08/23/19 18:28,"360 Cedar St, New York City, NY 10001" -238587,USB-C Charging Cable,1,11.95,08/23/19 18:28,"360 Cedar St, New York City, NY 10001" -238588,Wired Headphones,1,11.99,08/08/19 09:14,"701 Ridge St, Austin, TX 73301" -238589,USB-C Charging Cable,1,11.95,08/30/19 20:06,"79 Elm St, Portland, OR 97035" -238590,Apple Airpods Headphones,1,150,08/17/19 10:49,"696 1st St, San Francisco, CA 94016" -238591,Bose SoundSport Headphones,1,99.99,08/16/19 18:30,"982 Cedar St, Atlanta, GA 30301" -238592,27in 4K Gaming Monitor,1,389.99,08/03/19 20:07,"220 Washington St, Portland, ME 04101" -238593,Wired Headphones,1,11.99,08/19/19 15:57,"854 Sunset St, San Francisco, CA 94016" -238594,Flatscreen TV,1,300,08/31/19 10:45,"306 West St, San Francisco, CA 94016" -238595,Lightning Charging Cable,1,14.95,08/06/19 21:02,"699 Cherry St, Boston, MA 02215" -238596,20in Monitor,1,109.99,08/25/19 06:36,"708 Pine St, Los Angeles, CA 90001" -238597,Wired Headphones,1,11.99,08/02/19 09:09,"157 1st St, Boston, MA 02215" -238598,Wired Headphones,1,11.99,08/23/19 18:49,"271 14th St, New York City, NY 10001" -238599,34in Ultrawide Monitor,1,379.99,08/09/19 06:44,"62 Chestnut St, New York City, NY 10001" -238600,AA Batteries (4-pack),1,3.84,08/11/19 20:22,"161 13th St, New York City, NY 10001" -238601,AA Batteries (4-pack),2,3.84,08/24/19 17:57,"272 Church St, Los Angeles, CA 90001" -238602,Apple Airpods Headphones,1,150,08/19/19 15:46,"246 Dogwood St, Boston, MA 02215" -238603,AAA Batteries (4-pack),1,2.99,08/26/19 22:47,"930 Sunset St, Seattle, WA 98101" -238604,Apple Airpods Headphones,1,150,08/22/19 15:25,"72 8th St, San Francisco, CA 94016" -238605,Wired Headphones,1,11.99,08/13/19 09:57,"360 Lake St, San Francisco, CA 94016" -238606,Wired Headphones,1,11.99,08/12/19 11:22,"123 9th St, San Francisco, CA 94016" -238607,Google Phone,1,600,08/19/19 16:48,"417 1st St, Atlanta, GA 30301" -238608,Bose SoundSport Headphones,1,99.99,08/26/19 08:14,"532 Johnson St, New York City, NY 10001" -238609,Flatscreen TV,1,300,08/26/19 20:54,"417 Cherry St, Boston, MA 02215" -238610,AA Batteries (4-pack),1,3.84,08/15/19 14:45,"761 12th St, Boston, MA 02215" -238611,AA Batteries (4-pack),2,3.84,08/07/19 13:20,"848 North St, Austin, TX 73301" -238612,Apple Airpods Headphones,1,150,08/31/19 23:15,"957 Sunset St, Atlanta, GA 30301" -238613,27in 4K Gaming Monitor,1,389.99,08/10/19 04:29,"426 11th St, San Francisco, CA 94016" -238614,USB-C Charging Cable,1,11.95,08/21/19 00:56,"160 10th St, Atlanta, GA 30301" -238615,27in 4K Gaming Monitor,1,389.99,08/10/19 10:45,"122 Wilson St, Los Angeles, CA 90001" -238616,AAA Batteries (4-pack),1,2.99,08/25/19 22:08,"927 Hill St, Austin, TX 73301" -238617,AA Batteries (4-pack),1,3.84,08/13/19 10:36,"931 Adams St, New York City, NY 10001" -238618,USB-C Charging Cable,1,11.95,08/24/19 00:07,"119 13th St, Boston, MA 02215" -238619,Apple Airpods Headphones,1,150,08/02/19 12:47,"702 13th St, Los Angeles, CA 90001" -238620,iPhone,1,700,08/29/19 21:03,"36 Hill St, Seattle, WA 98101" -238621,Apple Airpods Headphones,1,150,08/02/19 14:44,"720 14th St, Portland, OR 97035" -238622,Macbook Pro Laptop,1,1700,08/26/19 11:17,"235 Wilson St, Los Angeles, CA 90001" -238623,Macbook Pro Laptop,1,1700,08/05/19 07:08,"835 Adams St, Los Angeles, CA 90001" -238624,AAA Batteries (4-pack),2,2.99,08/10/19 07:26,"103 1st St, San Francisco, CA 94016" -238625,AAA Batteries (4-pack),1,2.99,08/15/19 11:50,"41 5th St, Los Angeles, CA 90001" -238626,USB-C Charging Cable,1,11.95,08/19/19 15:19,"516 Willow St, Seattle, WA 98101" -238627,AA Batteries (4-pack),1,3.84,08/08/19 16:06,"167 West St, Seattle, WA 98101" -238628,AA Batteries (4-pack),1,3.84,08/15/19 18:38,"202 Lake St, San Francisco, CA 94016" -238629,Wired Headphones,1,11.99,08/21/19 16:17,"2 12th St, Austin, TX 73301" -238630,AAA Batteries (4-pack),1,2.99,08/01/19 10:29,"497 Ridge St, Boston, MA 02215" -238631,ThinkPad Laptop,1,999.99,08/11/19 12:56,"340 Hickory St, Seattle, WA 98101" -238632,Wired Headphones,1,11.99,08/27/19 17:41,"150 6th St, New York City, NY 10001" -238633,Macbook Pro Laptop,1,1700,08/03/19 20:37,"392 Center St, Atlanta, GA 30301" -238634,USB-C Charging Cable,1,11.95,08/22/19 22:50,"596 11th St, San Francisco, CA 94016" -238635,Lightning Charging Cable,1,14.95,08/20/19 15:45,"215 Elm St, Atlanta, GA 30301" -238636,USB-C Charging Cable,1,11.95,08/08/19 06:44,"671 Park St, Portland, OR 97035" -238637,Lightning Charging Cable,1,14.95,08/02/19 08:16,"652 West St, Seattle, WA 98101" -238638,34in Ultrawide Monitor,1,379.99,08/09/19 10:02,"584 Chestnut St, Atlanta, GA 30301" -238639,Apple Airpods Headphones,1,150,08/15/19 10:10,"237 2nd St, Atlanta, GA 30301" -238640,USB-C Charging Cable,1,11.95,08/02/19 10:52,"421 Maple St, Boston, MA 02215" -238641,iPhone,1,700,08/06/19 18:51,"534 9th St, Los Angeles, CA 90001" -238641,Wired Headphones,1,11.99,08/06/19 18:51,"534 9th St, Los Angeles, CA 90001" -238642,USB-C Charging Cable,1,11.95,08/24/19 18:19,"878 6th St, San Francisco, CA 94016" -238643,USB-C Charging Cable,1,11.95,08/07/19 03:34,"511 West St, San Francisco, CA 94016" -238644,AA Batteries (4-pack),3,3.84,08/06/19 18:58,"554 6th St, San Francisco, CA 94016" -238645,Bose SoundSport Headphones,1,99.99,08/02/19 18:14,"220 Pine St, San Francisco, CA 94016" -238646,iPhone,1,700,08/31/19 00:59,"816 Walnut St, New York City, NY 10001" -238647,AA Batteries (4-pack),1,3.84,08/09/19 08:47,"528 Johnson St, Los Angeles, CA 90001" -238648,34in Ultrawide Monitor,1,379.99,08/02/19 21:26,"929 Meadow St, San Francisco, CA 94016" -238649,Wired Headphones,1,11.99,08/24/19 21:59,"732 9th St, New York City, NY 10001" -238650,Lightning Charging Cable,1,14.95,08/26/19 16:11,"478 11th St, Los Angeles, CA 90001" -238651,34in Ultrawide Monitor,1,379.99,08/06/19 08:00,"771 13th St, Atlanta, GA 30301" -238652,USB-C Charging Cable,1,11.95,08/09/19 05:56,"501 Spruce St, San Francisco, CA 94016" -238653,Wired Headphones,1,11.99,08/29/19 23:26,"604 Highland St, New York City, NY 10001" -238654,Macbook Pro Laptop,1,1700,08/23/19 10:43,"485 Lincoln St, Los Angeles, CA 90001" -238655,AAA Batteries (4-pack),2,2.99,08/13/19 20:13,"734 Jackson St, Seattle, WA 98101" -238656,Google Phone,1,600,08/25/19 01:08,"377 13th St, Portland, OR 97035" -238657,27in 4K Gaming Monitor,1,389.99,08/28/19 20:19,"812 Maple St, Dallas, TX 75001" -238658,AAA Batteries (4-pack),1,2.99,08/06/19 20:15,"858 13th St, Los Angeles, CA 90001" -238659,Google Phone,1,600,08/16/19 19:16,"132 7th St, Seattle, WA 98101" -238660,Lightning Charging Cable,1,14.95,08/23/19 16:13,"794 Sunset St, Dallas, TX 75001" -238661,34in Ultrawide Monitor,1,379.99,08/17/19 07:57,"807 Willow St, San Francisco, CA 94016" -238662,27in 4K Gaming Monitor,1,389.99,08/25/19 21:58,"967 Walnut St, San Francisco, CA 94016" -238663,USB-C Charging Cable,1,11.95,08/05/19 20:13,"689 Willow St, Boston, MA 02215" -238664,AAA Batteries (4-pack),1,2.99,08/27/19 18:02,"142 Wilson St, San Francisco, CA 94016" -238665,Flatscreen TV,1,300,08/23/19 14:11,"555 6th St, New York City, NY 10001" -238666,27in FHD Monitor,1,149.99,08/14/19 19:36,"841 14th St, Austin, TX 73301" -238667,Lightning Charging Cable,1,14.95,08/11/19 12:19,"483 1st St, San Francisco, CA 94016" -238668,USB-C Charging Cable,1,11.95,08/21/19 20:32,"682 13th St, San Francisco, CA 94016" -238669,USB-C Charging Cable,1,11.95,08/23/19 12:31,"497 9th St, Los Angeles, CA 90001" -238670,ThinkPad Laptop,1,999.99,08/11/19 03:09,"280 Johnson St, Boston, MA 02215" -238671,20in Monitor,1,109.99,08/02/19 19:04,"434 Walnut St, San Francisco, CA 94016" -238672,USB-C Charging Cable,1,11.95,08/15/19 18:44,"278 1st St, San Francisco, CA 94016" -238673,AA Batteries (4-pack),1,3.84,08/26/19 11:37,"438 Willow St, Seattle, WA 98101" -238674,20in Monitor,1,109.99,08/08/19 12:49,"383 Hill St, Dallas, TX 75001" -238675,USB-C Charging Cable,1,11.95,08/14/19 22:40,"676 14th St, Boston, MA 02215" -238676,Bose SoundSport Headphones,1,99.99,08/27/19 12:51,"982 Highland St, San Francisco, CA 94016" -238677,AAA Batteries (4-pack),2,2.99,08/14/19 23:15,"991 Forest St, New York City, NY 10001" -238678,Apple Airpods Headphones,1,150,08/24/19 16:53,"388 South St, San Francisco, CA 94016" -238679,USB-C Charging Cable,2,11.95,08/23/19 11:36,"481 South St, Dallas, TX 75001" -238680,USB-C Charging Cable,1,11.95,08/26/19 16:44,"917 Dogwood St, New York City, NY 10001" -238681,Macbook Pro Laptop,1,1700,08/22/19 13:59,"75 Washington St, New York City, NY 10001" -238682,AA Batteries (4-pack),2,3.84,08/22/19 19:42,"221 Hill St, Atlanta, GA 30301" -238683,AA Batteries (4-pack),3,3.84,08/07/19 15:35,"224 Wilson St, Portland, ME 04101" -238684,Wired Headphones,1,11.99,08/29/19 07:45,"316 Pine St, New York City, NY 10001" -238685,Wired Headphones,1,11.99,08/20/19 19:54,"557 Cherry St, San Francisco, CA 94016" -238686,AA Batteries (4-pack),2,3.84,08/15/19 10:20,"927 2nd St, San Francisco, CA 94016" -238687,27in FHD Monitor,1,149.99,08/05/19 19:34,"273 12th St, San Francisco, CA 94016" -238688,Lightning Charging Cable,1,14.95,08/30/19 19:02,"718 Highland St, Austin, TX 73301" -238689,Lightning Charging Cable,1,14.95,08/13/19 14:51,"473 13th St, San Francisco, CA 94016" -238690,27in FHD Monitor,1,149.99,08/10/19 17:47,"733 Hill St, Atlanta, GA 30301" -238691,Google Phone,1,600,08/02/19 19:03,"496 Willow St, Dallas, TX 75001" -238691,USB-C Charging Cable,1,11.95,08/02/19 19:03,"496 Willow St, Dallas, TX 75001" -238691,Vareebadd Phone,1,400,08/02/19 19:03,"496 Willow St, Dallas, TX 75001" -238692,Wired Headphones,1,11.99,08/25/19 17:54,"441 Jackson St, Seattle, WA 98101" -238693,34in Ultrawide Monitor,1,379.99,08/18/19 20:55,"795 Jackson St, Atlanta, GA 30301" -238694,Wired Headphones,1,11.99,08/04/19 19:44,"802 Jefferson St, New York City, NY 10001" -238695,Macbook Pro Laptop,1,1700,08/15/19 15:24,"402 11th St, San Francisco, CA 94016" -238696,Bose SoundSport Headphones,1,99.99,08/10/19 08:04,"724 Park St, New York City, NY 10001" -238697,Lightning Charging Cable,1,14.95,08/10/19 23:32,"240 6th St, Austin, TX 73301" -238698,Macbook Pro Laptop,1,1700,08/05/19 14:17,"275 Wilson St, New York City, NY 10001" -238699,AAA Batteries (4-pack),1,2.99,08/31/19 07:40,"275 Hickory St, Los Angeles, CA 90001" -238700,AA Batteries (4-pack),1,3.84,08/27/19 11:53,"754 Adams St, Los Angeles, CA 90001" -238701,Google Phone,1,600,08/30/19 23:46,"66 Ridge St, Austin, TX 73301" -238702,Lightning Charging Cable,1,14.95,08/06/19 06:44,"644 Adams St, New York City, NY 10001" -238703,AA Batteries (4-pack),1,3.84,08/11/19 11:46,"120 Walnut St, Los Angeles, CA 90001" -238704,Lightning Charging Cable,1,14.95,08/17/19 20:57,"545 Ridge St, New York City, NY 10001" -238705,AA Batteries (4-pack),3,3.84,08/02/19 09:24,"977 Maple St, Atlanta, GA 30301" -238706,Lightning Charging Cable,1,14.95,08/26/19 18:59,"453 Cherry St, Atlanta, GA 30301" -238707,27in FHD Monitor,1,149.99,08/24/19 21:15,"759 Center St, Portland, OR 97035" -238708,Bose SoundSport Headphones,1,99.99,08/10/19 16:16,"899 Main St, Dallas, TX 75001" -238709,Google Phone,1,600,08/06/19 11:07,"997 River St, New York City, NY 10001" -238710,27in FHD Monitor,1,149.99,08/21/19 22:31,"452 Walnut St, Atlanta, GA 30301" -238711,AA Batteries (4-pack),3,3.84,08/08/19 18:52,"437 Spruce St, San Francisco, CA 94016" -238712,Bose SoundSport Headphones,1,99.99,08/31/19 19:40,"324 Sunset St, Portland, OR 97035" -238713,Google Phone,1,600,08/25/19 22:03,"329 Jefferson St, San Francisco, CA 94016" -238714,AA Batteries (4-pack),2,3.84,08/16/19 15:22,"32 Church St, Los Angeles, CA 90001" -238715,AAA Batteries (4-pack),2,2.99,08/19/19 08:28,"75 Lakeview St, Seattle, WA 98101" -238716,Google Phone,1,600,08/16/19 08:12,"528 Ridge St, Dallas, TX 75001" -238717,Wired Headphones,1,11.99,08/02/19 11:27,"811 Center St, Los Angeles, CA 90001" -238718,20in Monitor,1,109.99,08/26/19 18:10,"928 Madison St, Seattle, WA 98101" -238719,AAA Batteries (4-pack),1,2.99,08/31/19 15:57,"133 Sunset St, New York City, NY 10001" -238720,USB-C Charging Cable,1,11.95,08/05/19 18:21,"481 Elm St, San Francisco, CA 94016" -238721,USB-C Charging Cable,1,11.95,08/05/19 11:24,"189 1st St, San Francisco, CA 94016" -238722,AA Batteries (4-pack),2,3.84,08/07/19 09:12,"63 Lake St, Boston, MA 02215" -238723,Apple Airpods Headphones,1,150,08/21/19 12:42,"141 South St, San Francisco, CA 94016" -238724,Google Phone,1,600,08/07/19 16:47,"139 12th St, Atlanta, GA 30301" -238725,USB-C Charging Cable,1,11.95,08/16/19 22:10,"11 South St, Los Angeles, CA 90001" -238726,Bose SoundSport Headphones,1,99.99,08/14/19 12:50,"400 West St, San Francisco, CA 94016" -238727,AAA Batteries (4-pack),1,2.99,08/26/19 06:55,"959 11th St, Boston, MA 02215" -238728,27in FHD Monitor,1,149.99,08/11/19 11:44,"479 Walnut St, San Francisco, CA 94016" -238729,AAA Batteries (4-pack),1,2.99,08/11/19 08:49,"290 West St, San Francisco, CA 94016" -238730,Wired Headphones,1,11.99,08/02/19 19:13,"522 Forest St, Los Angeles, CA 90001" -238731,Bose SoundSport Headphones,1,99.99,08/31/19 16:34,"339 Lakeview St, Dallas, TX 75001" -238732,USB-C Charging Cable,1,11.95,08/08/19 11:15,"370 11th St, Los Angeles, CA 90001" -238733,iPhone,1,700,08/03/19 21:56,"509 Jackson St, Boston, MA 02215" -238734,Vareebadd Phone,1,400,08/13/19 11:52,"744 Lincoln St, Austin, TX 73301" -238735,20in Monitor,1,109.99,08/18/19 22:56,"418 West St, San Francisco, CA 94016" -238736,AA Batteries (4-pack),1,3.84,08/27/19 01:07,"432 Church St, Los Angeles, CA 90001" -238737,Bose SoundSport Headphones,1,99.99,08/08/19 08:49,"935 Forest St, Boston, MA 02215" -238738,Lightning Charging Cable,1,14.95,08/27/19 19:31,"414 Spruce St, San Francisco, CA 94016" -238739,Macbook Pro Laptop,1,1700,08/10/19 11:27,"91 Dogwood St, Atlanta, GA 30301" -238740,AA Batteries (4-pack),2,3.84,08/10/19 15:16,"60 2nd St, Dallas, TX 75001" -238741,iPhone,1,700,08/10/19 12:47,"487 9th St, San Francisco, CA 94016" -238742,Lightning Charging Cable,1,14.95,08/24/19 22:07,"185 Adams St, Portland, OR 97035" -238743,Bose SoundSport Headphones,1,99.99,08/18/19 14:55,"724 4th St, New York City, NY 10001" -238744,AAA Batteries (4-pack),1,2.99,08/10/19 14:08,"210 Madison St, New York City, NY 10001" -238745,Wired Headphones,1,11.99,08/16/19 18:37,"235 10th St, San Francisco, CA 94016" -238746,iPhone,1,700,08/14/19 19:42,"390 River St, San Francisco, CA 94016" -238747,27in 4K Gaming Monitor,1,389.99,08/19/19 02:32,"172 7th St, Los Angeles, CA 90001" -238748,Lightning Charging Cable,1,14.95,08/20/19 15:53,"132 Wilson St, Atlanta, GA 30301" -238749,AAA Batteries (4-pack),1,2.99,08/03/19 07:12,"782 Center St, Los Angeles, CA 90001" -238750,Lightning Charging Cable,1,14.95,08/29/19 10:08,"835 Meadow St, Seattle, WA 98101" -238751,AA Batteries (4-pack),3,3.84,08/26/19 20:57,"207 4th St, New York City, NY 10001" -238752,Wired Headphones,1,11.99,08/10/19 12:26,"933 Jackson St, Los Angeles, CA 90001" -238753,AAA Batteries (4-pack),3,2.99,08/05/19 22:49,"191 Hickory St, San Francisco, CA 94016" -238754,USB-C Charging Cable,1,11.95,08/25/19 15:27,"940 Hickory St, San Francisco, CA 94016" -238755,Wired Headphones,1,11.99,08/08/19 22:32,"89 Walnut St, Seattle, WA 98101" -238756,AA Batteries (4-pack),1,3.84,08/09/19 20:12,"645 Main St, Portland, OR 97035" -238757,Google Phone,1,600,08/18/19 22:07,"833 Wilson St, Atlanta, GA 30301" -238757,USB-C Charging Cable,1,11.95,08/18/19 22:07,"833 Wilson St, Atlanta, GA 30301" -238758,iPhone,1,700,08/30/19 13:48,"6 Jackson St, Seattle, WA 98101" -238758,Lightning Charging Cable,1,14.95,08/30/19 13:48,"6 Jackson St, Seattle, WA 98101" -238759,Apple Airpods Headphones,1,150,08/12/19 12:18,"802 1st St, Dallas, TX 75001" -238760,Lightning Charging Cable,1,14.95,08/25/19 08:10,"953 Highland St, Atlanta, GA 30301" -238761,Bose SoundSport Headphones,1,99.99,08/13/19 07:36,"47 Park St, San Francisco, CA 94016" -238762,AAA Batteries (4-pack),5,2.99,08/27/19 08:10,"15 River St, Los Angeles, CA 90001" -238763,AA Batteries (4-pack),1,3.84,08/26/19 18:59,"623 Adams St, New York City, NY 10001" -238764,Apple Airpods Headphones,1,150,08/11/19 15:40,"620 Madison St, Atlanta, GA 30301" -238765,Wired Headphones,1,11.99,08/23/19 13:35,"669 Hill St, Portland, OR 97035" -238766,Apple Airpods Headphones,1,150,08/27/19 13:02,"880 Elm St, Atlanta, GA 30301" -238767,Wired Headphones,1,11.99,08/04/19 12:41,"611 Washington St, Seattle, WA 98101" -238768,AA Batteries (4-pack),2,3.84,08/19/19 16:24,"193 Pine St, Boston, MA 02215" -238769,AA Batteries (4-pack),1,3.84,08/23/19 09:40,"731 Center St, Los Angeles, CA 90001" -238770,34in Ultrawide Monitor,1,379.99,08/05/19 14:02,"830 8th St, Boston, MA 02215" -238771,Macbook Pro Laptop,1,1700,08/09/19 03:01,"696 Lake St, Portland, OR 97035" -238772,iPhone,1,700,08/29/19 15:24,"247 River St, San Francisco, CA 94016" -238773,iPhone,1,700,08/01/19 17:54,"417 Spruce St, New York City, NY 10001" -238774,Lightning Charging Cable,1,14.95,08/16/19 22:43,"745 Washington St, Los Angeles, CA 90001" -238775,Macbook Pro Laptop,1,1700,08/27/19 16:40,"117 Maple St, Boston, MA 02215" -238776,Lightning Charging Cable,1,14.95,08/17/19 18:10,"226 Center St, Los Angeles, CA 90001" -238777,AAA Batteries (4-pack),1,2.99,08/03/19 18:48,"974 Dogwood St, Seattle, WA 98101" -238778,AAA Batteries (4-pack),1,2.99,08/07/19 18:27,"18 Adams St, New York City, NY 10001" -238779,Wired Headphones,1,11.99,08/17/19 14:31,"578 Cedar St, Dallas, TX 75001" -238780,AA Batteries (4-pack),2,3.84,08/30/19 18:27,"782 12th St, San Francisco, CA 94016" -238781,27in 4K Gaming Monitor,1,389.99,08/11/19 06:48,"361 River St, San Francisco, CA 94016" -238782,Lightning Charging Cable,1,14.95,08/02/19 08:58,"680 Johnson St, Austin, TX 73301" -238783,34in Ultrawide Monitor,1,379.99,08/29/19 14:41,"27 Pine St, New York City, NY 10001" -238784,USB-C Charging Cable,3,11.95,08/13/19 23:24,"966 Johnson St, San Francisco, CA 94016" -238785,USB-C Charging Cable,1,11.95,08/02/19 06:23,"482 12th St, Los Angeles, CA 90001" -238786,Google Phone,1,600,08/07/19 17:14,"489 Madison St, New York City, NY 10001" -238786,USB-C Charging Cable,1,11.95,08/07/19 17:14,"489 Madison St, New York City, NY 10001" -238787,Wired Headphones,1,11.99,08/19/19 13:53,"752 Lake St, Boston, MA 02215" -238788,27in 4K Gaming Monitor,1,389.99,08/04/19 09:40,"799 Park St, Boston, MA 02215" -238789,AA Batteries (4-pack),3,3.84,08/25/19 14:59,"991 Cedar St, Atlanta, GA 30301" -238790,Bose SoundSport Headphones,1,99.99,08/14/19 11:19,"91 Lincoln St, Atlanta, GA 30301" -238791,USB-C Charging Cable,1,11.95,08/11/19 21:04,"674 Forest St, San Francisco, CA 94016" -238792,Bose SoundSport Headphones,1,99.99,08/09/19 13:52,"283 8th St, Portland, OR 97035" -238793,Wired Headphones,1,11.99,08/03/19 17:56,"880 Ridge St, Seattle, WA 98101" -238794,Macbook Pro Laptop,1,1700,08/20/19 21:07,"972 12th St, San Francisco, CA 94016" -238795,Bose SoundSport Headphones,1,99.99,08/04/19 16:27,"67 Lakeview St, Seattle, WA 98101" -238796,AA Batteries (4-pack),1,3.84,08/26/19 22:05,"212 Lincoln St, Dallas, TX 75001" -238797,USB-C Charging Cable,1,11.95,08/26/19 14:24,"410 Jefferson St, San Francisco, CA 94016" -238798,Lightning Charging Cable,1,14.95,08/30/19 07:17,"305 Meadow St, New York City, NY 10001" -238799,AAA Batteries (4-pack),1,2.99,08/02/19 06:46,"757 Center St, Atlanta, GA 30301" -238800,AA Batteries (4-pack),1,3.84,08/17/19 14:33,"568 14th St, Boston, MA 02215" -238801,Macbook Pro Laptop,1,1700,08/23/19 21:23,"828 South St, San Francisco, CA 94016" -238802,Wired Headphones,1,11.99,08/09/19 11:03,"565 Lake St, Portland, OR 97035" -238803,AA Batteries (4-pack),1,3.84,08/09/19 13:38,"334 Adams St, Los Angeles, CA 90001" -238804,Lightning Charging Cable,1,14.95,08/20/19 16:18,"690 West St, Atlanta, GA 30301" -238805,Apple Airpods Headphones,1,150,08/24/19 22:57,"369 Lake St, New York City, NY 10001" -238806,USB-C Charging Cable,1,11.95,08/21/19 11:49,"801 Lake St, Austin, TX 73301" -238807,Bose SoundSport Headphones,1,99.99,08/20/19 09:10,"272 9th St, Seattle, WA 98101" -238808,20in Monitor,1,109.99,08/13/19 16:55,"299 River St, Los Angeles, CA 90001" -238809,USB-C Charging Cable,1,11.95,08/08/19 20:43,"33 Sunset St, San Francisco, CA 94016" -238810,Macbook Pro Laptop,1,1700,08/25/19 20:38,"216 4th St, San Francisco, CA 94016" -238811,AAA Batteries (4-pack),1,2.99,08/15/19 10:55,"279 Sunset St, San Francisco, CA 94016" -238812,Google Phone,1,600,08/19/19 19:48,"61 Willow St, New York City, NY 10001" -238812,Wired Headphones,1,11.99,08/19/19 19:48,"61 Willow St, New York City, NY 10001" -238813,Bose SoundSport Headphones,1,99.99,08/06/19 08:16,"964 Cedar St, San Francisco, CA 94016" -238814,Lightning Charging Cable,1,14.95,08/09/19 08:52,"753 Willow St, Portland, OR 97035" -238815,Lightning Charging Cable,1,14.95,08/31/19 14:25,"111 Johnson St, Dallas, TX 75001" -238816,AAA Batteries (4-pack),1,2.99,08/05/19 17:38,"645 8th St, Seattle, WA 98101" -238817,34in Ultrawide Monitor,1,379.99,08/07/19 18:35,"489 Madison St, Boston, MA 02215" -238818,AA Batteries (4-pack),1,3.84,08/20/19 20:48,"254 13th St, Los Angeles, CA 90001" -238819,Flatscreen TV,1,300,08/04/19 16:19,"471 12th St, New York City, NY 10001" -238820,Lightning Charging Cable,1,14.95,08/05/19 19:57,"783 8th St, San Francisco, CA 94016" -238821,USB-C Charging Cable,1,11.95,08/04/19 11:06,"363 Wilson St, San Francisco, CA 94016" -238822,AAA Batteries (4-pack),2,2.99,08/20/19 07:40,"445 Center St, Los Angeles, CA 90001" -238823,AA Batteries (4-pack),1,3.84,08/20/19 20:45,"259 Chestnut St, Seattle, WA 98101" -238824,34in Ultrawide Monitor,1,379.99,08/13/19 16:13,"560 6th St, Boston, MA 02215" -238825,Wired Headphones,1,11.99,08/21/19 12:45,"261 Sunset St, San Francisco, CA 94016" -238826,Apple Airpods Headphones,1,150,08/24/19 20:05,"552 7th St, Los Angeles, CA 90001" -238827,iPhone,1,700,08/02/19 19:52,"91 11th St, San Francisco, CA 94016" -238828,Bose SoundSport Headphones,1,99.99,08/04/19 18:05,"515 8th St, Portland, OR 97035" -238829,AA Batteries (4-pack),2,3.84,08/01/19 12:36,"922 1st St, San Francisco, CA 94016" -238830,iPhone,1,700,08/29/19 16:09,"48 Dogwood St, Boston, MA 02215" -238831,AA Batteries (4-pack),1,3.84,08/24/19 11:13,"691 Madison St, New York City, NY 10001" -238832,Bose SoundSport Headphones,1,99.99,08/07/19 13:03,"169 Johnson St, Boston, MA 02215" -238833,Macbook Pro Laptop,1,1700,08/12/19 08:37,"792 1st St, Austin, TX 73301" -238834,Apple Airpods Headphones,1,150,09/01/19 04:13,"761 Forest St, San Francisco, CA 94016" -238835,AAA Batteries (4-pack),3,2.99,08/24/19 14:03,"491 Highland St, San Francisco, CA 94016" -238836,AAA Batteries (4-pack),1,2.99,08/23/19 19:34,"826 Lincoln St, San Francisco, CA 94016" -238837,Lightning Charging Cable,1,14.95,08/23/19 17:43,"779 11th St, Los Angeles, CA 90001" -238838,USB-C Charging Cable,2,11.95,08/15/19 07:33,"924 Meadow St, Los Angeles, CA 90001" -238839,Apple Airpods Headphones,1,150,08/15/19 12:14,"339 9th St, San Francisco, CA 94016" -238840,Flatscreen TV,1,300,08/17/19 15:46,"978 4th St, Portland, OR 97035" -238841,27in 4K Gaming Monitor,1,389.99,08/18/19 12:15,"538 Adams St, Dallas, TX 75001" -238842,Wired Headphones,1,11.99,08/28/19 17:59,"320 Park St, San Francisco, CA 94016" -238842,Wired Headphones,1,11.99,08/28/19 17:59,"320 Park St, San Francisco, CA 94016" -238843,Google Phone,1,600,08/24/19 12:15,"360 Cherry St, New York City, NY 10001" -238843,Bose SoundSport Headphones,1,99.99,08/24/19 12:15,"360 Cherry St, New York City, NY 10001" -238844,Wired Headphones,1,11.99,08/21/19 22:19,"937 Lake St, New York City, NY 10001" -238845,Apple Airpods Headphones,1,150,08/19/19 21:30,"397 5th St, Portland, OR 97035" -238846,Bose SoundSport Headphones,1,99.99,08/24/19 20:32,"214 Jackson St, San Francisco, CA 94016" -238847,Google Phone,1,600,08/16/19 22:49,"211 Hill St, Dallas, TX 75001" -238847,USB-C Charging Cable,1,11.95,08/16/19 22:49,"211 Hill St, Dallas, TX 75001" -238847,Wired Headphones,1,11.99,08/16/19 22:49,"211 Hill St, Dallas, TX 75001" -238848,AA Batteries (4-pack),2,3.84,08/19/19 12:52,"218 Walnut St, Seattle, WA 98101" -238849,Wired Headphones,1,11.99,08/23/19 17:11,"799 Maple St, Dallas, TX 75001" -238850,AAA Batteries (4-pack),2,2.99,08/12/19 21:35,"478 Adams St, Boston, MA 02215" -238851,Bose SoundSport Headphones,1,99.99,08/20/19 22:47,"795 5th St, Seattle, WA 98101" -238852,Wired Headphones,1,11.99,08/25/19 11:51,"283 River St, San Francisco, CA 94016" -238853,Google Phone,1,600,08/27/19 17:19,"785 Lake St, Los Angeles, CA 90001" -238854,AA Batteries (4-pack),1,3.84,08/28/19 16:52,"472 South St, San Francisco, CA 94016" -238855,AA Batteries (4-pack),2,3.84,08/20/19 18:54,"904 Pine St, Dallas, TX 75001" -238856,AA Batteries (4-pack),1,3.84,08/21/19 20:22,"126 Cedar St, Los Angeles, CA 90001" -238857,Apple Airpods Headphones,1,150,08/16/19 00:26,"891 14th St, New York City, NY 10001" -238858,Wired Headphones,1,11.99,08/14/19 14:31,"126 Johnson St, Seattle, WA 98101" -238859,Apple Airpods Headphones,1,150,08/30/19 12:12,"78 Pine St, Atlanta, GA 30301" -238860,USB-C Charging Cable,1,11.95,08/31/19 10:57,"192 River St, Seattle, WA 98101" -238861,Bose SoundSport Headphones,1,99.99,08/21/19 16:21,"866 Meadow St, San Francisco, CA 94016" -238862,AA Batteries (4-pack),1,3.84,08/07/19 15:44,"874 Meadow St, Seattle, WA 98101" -238863,USB-C Charging Cable,1,11.95,08/25/19 08:36,"873 Walnut St, San Francisco, CA 94016" -238864,AA Batteries (4-pack),1,3.84,08/07/19 11:45,"340 Jackson St, San Francisco, CA 94016" -238865,Vareebadd Phone,1,400,08/14/19 18:37,"718 Highland St, San Francisco, CA 94016" -238865,Bose SoundSport Headphones,1,99.99,08/14/19 18:37,"718 Highland St, San Francisco, CA 94016" -238866,Flatscreen TV,1,300,08/15/19 14:19,"953 West St, Seattle, WA 98101" -238867,Bose SoundSport Headphones,1,99.99,08/24/19 04:17,"38 Lakeview St, Los Angeles, CA 90001" -238868,USB-C Charging Cable,1,11.95,08/31/19 21:21,"922 Wilson St, San Francisco, CA 94016" -238869,Apple Airpods Headphones,1,150,08/31/19 15:35,"823 Lincoln St, New York City, NY 10001" -238870,Apple Airpods Headphones,1,150,08/02/19 09:43,"651 8th St, Portland, OR 97035" -238871,Lightning Charging Cable,1,14.95,08/06/19 10:48,"572 Jackson St, Los Angeles, CA 90001" -238872,AAA Batteries (4-pack),4,2.99,08/07/19 15:07,"486 Cedar St, Seattle, WA 98101" -238873,27in FHD Monitor,1,149.99,08/23/19 16:25,"849 Lincoln St, Los Angeles, CA 90001" -238874,Lightning Charging Cable,1,14.95,08/13/19 21:41,"490 Walnut St, Seattle, WA 98101" -238875,AA Batteries (4-pack),1,3.84,08/22/19 18:23,"657 Center St, Portland, OR 97035" -238876,iPhone,1,700,08/03/19 16:18,"797 Ridge St, Dallas, TX 75001" -238877,AAA Batteries (4-pack),1,2.99,08/21/19 19:30,"58 Center St, Boston, MA 02215" -238877,USB-C Charging Cable,1,11.95,08/21/19 19:30,"58 Center St, Boston, MA 02215" -238878,USB-C Charging Cable,1,11.95,08/30/19 17:49,"970 Pine St, Los Angeles, CA 90001" -238879,Bose SoundSport Headphones,1,99.99,08/14/19 08:09,"715 12th St, Boston, MA 02215" -238880,Lightning Charging Cable,1,14.95,08/24/19 22:09,"513 Park St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -238881,Lightning Charging Cable,1,14.95,08/02/19 11:26,"717 Dogwood St, Los Angeles, CA 90001" -238882,Wired Headphones,1,11.99,08/21/19 11:18,"697 Main St, New York City, NY 10001" -238883,34in Ultrawide Monitor,1,379.99,08/21/19 19:57,"29 Spruce St, Los Angeles, CA 90001" -238884,Apple Airpods Headphones,1,150,08/31/19 22:43,"747 Center St, New York City, NY 10001" -238885,Google Phone,1,600,08/19/19 12:01,"997 Pine St, Los Angeles, CA 90001" -238885,USB-C Charging Cable,1,11.95,08/19/19 12:01,"997 Pine St, Los Angeles, CA 90001" -238886,LG Washing Machine,1,600.0,08/13/19 16:44,"163 Park St, Atlanta, GA 30301" -238887,Wired Headphones,1,11.99,08/24/19 12:11,"49 Adams St, Seattle, WA 98101" -238888,USB-C Charging Cable,1,11.95,08/22/19 11:45,"379 Hill St, Los Angeles, CA 90001" -238889,27in 4K Gaming Monitor,1,389.99,08/05/19 13:26,"472 8th St, Portland, OR 97035" -238890,27in FHD Monitor,1,149.99,08/01/19 15:10,"354 8th St, Boston, MA 02215" -238891,20in Monitor,1,109.99,08/16/19 12:35,"128 Dogwood St, Los Angeles, CA 90001" -238892,Wired Headphones,1,11.99,08/22/19 17:22,"465 Hill St, Los Angeles, CA 90001" -238893,Apple Airpods Headphones,1,150,08/20/19 20:20,"370 8th St, San Francisco, CA 94016" -238894,34in Ultrawide Monitor,1,379.99,08/28/19 20:32,"409 Lincoln St, Atlanta, GA 30301" -238895,iPhone,1,700,08/14/19 13:51,"798 Walnut St, Los Angeles, CA 90001" -238895,Wired Headphones,1,11.99,08/14/19 13:51,"798 Walnut St, Los Angeles, CA 90001" -238896,USB-C Charging Cable,1,11.95,08/13/19 23:54,"868 Adams St, Boston, MA 02215" -238897,Wired Headphones,1,11.99,08/05/19 20:58,"317 Adams St, New York City, NY 10001" -238898,Bose SoundSport Headphones,1,99.99,08/13/19 10:29,"246 14th St, San Francisco, CA 94016" -238899,20in Monitor,1,109.99,08/26/19 06:38,"456 Meadow St, Dallas, TX 75001" -238900,Wired Headphones,1,11.99,08/10/19 10:39,"211 Church St, Boston, MA 02215" -238901,Flatscreen TV,1,300,08/31/19 15:54,"444 7th St, New York City, NY 10001" -238902,iPhone,1,700,08/02/19 22:41,"417 11th St, Boston, MA 02215" -238902,Lightning Charging Cable,1,14.95,08/02/19 22:41,"417 11th St, Boston, MA 02215" -238903,Lightning Charging Cable,1,14.95,08/16/19 13:15,"342 Wilson St, San Francisco, CA 94016" -238904,AA Batteries (4-pack),1,3.84,08/17/19 09:26,"585 Jackson St, Austin, TX 73301" -238905,27in 4K Gaming Monitor,1,389.99,08/05/19 17:25,"849 North St, Boston, MA 02215" -238906,Wired Headphones,1,11.99,08/06/19 00:08,"837 8th St, Portland, OR 97035" -238907,Apple Airpods Headphones,1,150,08/24/19 17:40,"273 13th St, Boston, MA 02215" -238908,Apple Airpods Headphones,1,150,08/05/19 21:20,"738 Adams St, Portland, OR 97035" -238909,AA Batteries (4-pack),1,3.84,08/02/19 10:47,"561 Maple St, New York City, NY 10001" -238910,27in FHD Monitor,1,149.99,08/01/19 07:48,"165 Main St, Dallas, TX 75001" -238911,27in FHD Monitor,2,149.99,08/03/19 00:33,"118 Pine St, Austin, TX 73301" -238912,AAA Batteries (4-pack),1,2.99,08/24/19 10:04,"666 Forest St, San Francisco, CA 94016" -238913,AA Batteries (4-pack),1,3.84,08/10/19 17:51,"452 Maple St, Los Angeles, CA 90001" -238914,AAA Batteries (4-pack),1,2.99,08/23/19 12:36,"632 6th St, Seattle, WA 98101" -238915,iPhone,1,700,08/11/19 13:04,"648 7th St, Dallas, TX 75001" -238916,34in Ultrawide Monitor,1,379.99,08/01/19 12:03,"222 Park St, Boston, MA 02215" -238917,Wired Headphones,1,11.99,08/19/19 23:24,"971 1st St, Atlanta, GA 30301" -238918,27in FHD Monitor,1,149.99,08/06/19 09:59,"120 Sunset St, New York City, NY 10001" -238919,ThinkPad Laptop,1,999.99,08/12/19 09:29,"663 Ridge St, Seattle, WA 98101" -238920,AAA Batteries (4-pack),2,2.99,08/02/19 09:24,"476 Willow St, Seattle, WA 98101" -238921,AA Batteries (4-pack),1,3.84,08/18/19 11:10,"854 River St, San Francisco, CA 94016" -238922,Wired Headphones,1,11.99,08/05/19 14:16,"901 Cedar St, Boston, MA 02215" -238923,USB-C Charging Cable,1,11.95,08/17/19 11:23,"909 Main St, New York City, NY 10001" -238924,USB-C Charging Cable,1,11.95,08/29/19 06:33,"138 Church St, San Francisco, CA 94016" -238925,Bose SoundSport Headphones,1,99.99,08/09/19 11:25,"177 1st St, Dallas, TX 75001" -238926,AA Batteries (4-pack),1,3.84,08/18/19 13:59,"269 6th St, Dallas, TX 75001" -238927,USB-C Charging Cable,2,11.95,08/09/19 17:56,"998 8th St, Boston, MA 02215" -238928,34in Ultrawide Monitor,1,379.99,08/30/19 18:22,"652 South St, San Francisco, CA 94016" -238929,Lightning Charging Cable,1,14.95,08/21/19 20:20,"65 Spruce St, Atlanta, GA 30301" -238929,AA Batteries (4-pack),1,3.84,08/21/19 20:20,"65 Spruce St, Atlanta, GA 30301" -238930,Vareebadd Phone,1,400,08/12/19 09:26,"149 Wilson St, Dallas, TX 75001" -238931,AA Batteries (4-pack),1,3.84,08/23/19 18:32,"205 11th St, New York City, NY 10001" -238932,Macbook Pro Laptop,1,1700,08/03/19 20:46,"90 Center St, Los Angeles, CA 90001" -238933,Bose SoundSport Headphones,1,99.99,08/17/19 14:01,"505 North St, Portland, ME 04101" -238934,Wired Headphones,1,11.99,08/10/19 21:20,"504 Chestnut St, New York City, NY 10001" -238935,34in Ultrawide Monitor,1,379.99,08/27/19 22:22,"77 2nd St, Boston, MA 02215" -238936,Google Phone,1,600,08/05/19 19:30,"813 Lakeview St, Dallas, TX 75001" -238936,USB-C Charging Cable,2,11.95,08/05/19 19:30,"813 Lakeview St, Dallas, TX 75001" -238937,Wired Headphones,1,11.99,08/11/19 12:10,"786 Walnut St, Dallas, TX 75001" -238938,20in Monitor,1,109.99,08/30/19 17:37,"140 Spruce St, Portland, OR 97035" -238939,Lightning Charging Cable,1,14.95,08/11/19 18:52,"48 1st St, San Francisco, CA 94016" -238940,Lightning Charging Cable,1,14.95,08/15/19 03:13,"609 Cedar St, Los Angeles, CA 90001" -238941,Wired Headphones,1,11.99,08/04/19 08:52,"269 Johnson St, Los Angeles, CA 90001" -238942,27in FHD Monitor,1,149.99,08/31/19 22:35,"417 West St, Dallas, TX 75001" -238943,USB-C Charging Cable,1,11.95,08/14/19 00:23,"906 5th St, New York City, NY 10001" -238944,27in FHD Monitor,1,149.99,08/05/19 19:04,"53 5th St, Dallas, TX 75001" -238945,Bose SoundSport Headphones,1,99.99,08/08/19 21:03,"756 Highland St, Dallas, TX 75001" -238946,Google Phone,1,600,08/09/19 07:10,"559 4th St, San Francisco, CA 94016" -238947,Wired Headphones,1,11.99,08/23/19 18:48,"403 Adams St, San Francisco, CA 94016" -238948,ThinkPad Laptop,1,999.99,08/21/19 15:45,"315 11th St, New York City, NY 10001" -238949,Google Phone,1,600,08/30/19 15:56,"437 Lake St, Los Angeles, CA 90001" -238950,Wired Headphones,1,11.99,08/22/19 14:06,"537 Cedar St, San Francisco, CA 94016" -238951,AA Batteries (4-pack),1,3.84,08/10/19 16:23,"740 10th St, Boston, MA 02215" -238952,ThinkPad Laptop,1,999.99,08/11/19 17:13,"417 8th St, San Francisco, CA 94016" -238953,AAA Batteries (4-pack),1,2.99,08/26/19 22:15,"146 Jefferson St, New York City, NY 10001" -238954,34in Ultrawide Monitor,1,379.99,08/01/19 10:20,"282 West St, Boston, MA 02215" -238955,Lightning Charging Cable,1,14.95,08/14/19 17:35,"717 Wilson St, Boston, MA 02215" -238956,AA Batteries (4-pack),1,3.84,08/14/19 19:35,"132 River St, Austin, TX 73301" -238957,Lightning Charging Cable,1,14.95,08/04/19 13:28,"150 West St, Seattle, WA 98101" -238958,34in Ultrawide Monitor,1,379.99,08/05/19 21:53,"176 Highland St, San Francisco, CA 94016" -238959,iPhone,1,700,08/06/19 10:21,"444 1st St, Boston, MA 02215" -238960,Wired Headphones,1,11.99,08/26/19 18:51,"206 Sunset St, Portland, OR 97035" -238961,Bose SoundSport Headphones,1,99.99,08/02/19 06:53,"934 5th St, Dallas, TX 75001" -238962,AAA Batteries (4-pack),1,2.99,08/05/19 16:42,"738 6th St, Boston, MA 02215" -238963,Wired Headphones,2,11.99,08/18/19 22:22,"540 14th St, New York City, NY 10001" -238964,USB-C Charging Cable,1,11.95,08/07/19 18:39,"881 Lakeview St, Seattle, WA 98101" -238965,Lightning Charging Cable,1,14.95,08/05/19 22:53,"548 9th St, Boston, MA 02215" -238966,USB-C Charging Cable,1,11.95,08/23/19 20:19,"161 10th St, Atlanta, GA 30301" -238967,AA Batteries (4-pack),1,3.84,08/16/19 15:43,"60 11th St, Atlanta, GA 30301" -238968,Bose SoundSport Headphones,1,99.99,08/05/19 23:44,"57 Jackson St, Los Angeles, CA 90001" -238969,Lightning Charging Cable,1,14.95,08/01/19 19:53,"421 River St, New York City, NY 10001" -238970,iPhone,1,700,08/28/19 10:24,"378 Hickory St, Los Angeles, CA 90001" -238970,Lightning Charging Cable,1,14.95,08/28/19 10:24,"378 Hickory St, Los Angeles, CA 90001" -238971,AA Batteries (4-pack),1,3.84,08/03/19 17:06,"729 Center St, Atlanta, GA 30301" -238972,Lightning Charging Cable,1,14.95,08/04/19 14:40,"593 Sunset St, Atlanta, GA 30301" -238973,Wired Headphones,1,11.99,08/03/19 01:15,"624 13th St, New York City, NY 10001" -238974,27in FHD Monitor,1,149.99,08/10/19 19:43,"166 Walnut St, Los Angeles, CA 90001" -238975,AAA Batteries (4-pack),1,2.99,08/28/19 23:42,"324 Ridge St, Dallas, TX 75001" -238976,Apple Airpods Headphones,1,150,08/25/19 15:11,"252 6th St, Boston, MA 02215" -238977,AA Batteries (4-pack),1,3.84,08/13/19 13:02,"888 Cedar St, Boston, MA 02215" -238978,Apple Airpods Headphones,1,150,08/12/19 21:52,"426 13th St, Seattle, WA 98101" -238979,Macbook Pro Laptop,1,1700,08/12/19 16:21,"511 Cedar St, Seattle, WA 98101" -238980,20in Monitor,1,109.99,08/20/19 19:19,"427 Pine St, New York City, NY 10001" -238981,Wired Headphones,1,11.99,08/05/19 20:15,"39 Church St, San Francisco, CA 94016" -238982,USB-C Charging Cable,1,11.95,08/11/19 12:01,"163 Wilson St, San Francisco, CA 94016" -238983,AA Batteries (4-pack),1,3.84,08/30/19 17:14,"816 Pine St, New York City, NY 10001" -238984,Apple Airpods Headphones,1,150,08/23/19 11:44,"863 Lincoln St, New York City, NY 10001" -238985,27in FHD Monitor,1,149.99,08/28/19 16:11,"709 West St, Portland, ME 04101" -238986,USB-C Charging Cable,1,11.95,08/09/19 10:51,"882 Pine St, New York City, NY 10001" -238987,AA Batteries (4-pack),1,3.84,08/07/19 23:25,"120 Chestnut St, New York City, NY 10001" -238988,AA Batteries (4-pack),1,3.84,08/30/19 20:57,"214 Park St, San Francisco, CA 94016" -238989,Macbook Pro Laptop,1,1700,08/24/19 12:57,"495 10th St, Portland, OR 97035" -238990,34in Ultrawide Monitor,1,379.99,08/04/19 07:43,"231 Wilson St, San Francisco, CA 94016" -238991,AAA Batteries (4-pack),1,2.99,08/02/19 21:32,"514 Washington St, Los Angeles, CA 90001" -238992,Lightning Charging Cable,1,14.95,08/21/19 12:28,"163 Pine St, New York City, NY 10001" -238993,27in 4K Gaming Monitor,1,389.99,08/29/19 14:47,"756 Dogwood St, San Francisco, CA 94016" -238994,Flatscreen TV,1,300,08/23/19 18:26,"845 10th St, New York City, NY 10001" -238995,Apple Airpods Headphones,1,150,08/07/19 20:50,"348 South St, Atlanta, GA 30301" -238996,USB-C Charging Cable,1,11.95,08/06/19 10:15,"168 12th St, San Francisco, CA 94016" -238997,USB-C Charging Cable,1,11.95,08/08/19 07:53,"273 South St, New York City, NY 10001" -238998,AA Batteries (4-pack),1,3.84,08/17/19 12:22,"236 Wilson St, Portland, ME 04101" -238999,Flatscreen TV,1,300,08/16/19 14:02,"632 Jackson St, San Francisco, CA 94016" -239000,USB-C Charging Cable,1,11.95,08/17/19 17:05,"746 Madison St, San Francisco, CA 94016" -239001,Apple Airpods Headphones,1,150,08/06/19 12:28,"268 Forest St, San Francisco, CA 94016" -239002,Wired Headphones,1,11.99,08/19/19 19:08,"492 9th St, San Francisco, CA 94016" -239003,Wired Headphones,3,11.99,08/30/19 15:50,"511 5th St, Los Angeles, CA 90001" -239004,AAA Batteries (4-pack),2,2.99,08/15/19 11:47,"280 Church St, Austin, TX 73301" -239005,USB-C Charging Cable,1,11.95,08/26/19 01:27,"906 South St, Los Angeles, CA 90001" -239006,iPhone,1,700,08/19/19 00:02,"471 Park St, Los Angeles, CA 90001" -239006,Apple Airpods Headphones,1,150,08/19/19 00:02,"471 Park St, Los Angeles, CA 90001" -239007,USB-C Charging Cable,1,11.95,08/21/19 11:55,"945 9th St, San Francisco, CA 94016" -239008,Wired Headphones,1,11.99,08/13/19 01:06,"465 South St, San Francisco, CA 94016" -239009,USB-C Charging Cable,1,11.95,08/12/19 11:45,"320 Willow St, New York City, NY 10001" -239010,27in FHD Monitor,1,149.99,08/21/19 20:00,"704 West St, Dallas, TX 75001" -239011,USB-C Charging Cable,1,11.95,08/18/19 11:50,"836 10th St, Austin, TX 73301" -239012,20in Monitor,1,109.99,08/23/19 12:29,"139 North St, Atlanta, GA 30301" -239013,Apple Airpods Headphones,1,150,08/11/19 20:41,"662 Cedar St, Los Angeles, CA 90001" -239014,Bose SoundSport Headphones,1,99.99,08/04/19 02:13,"274 Madison St, San Francisco, CA 94016" -239015,ThinkPad Laptop,1,999.99,08/28/19 12:34,"589 River St, San Francisco, CA 94016" -239016,Bose SoundSport Headphones,1,99.99,08/18/19 10:14,"808 Walnut St, San Francisco, CA 94016" -239017,Bose SoundSport Headphones,1,99.99,08/16/19 16:13,"947 Spruce St, Los Angeles, CA 90001" -239018,Lightning Charging Cable,1,14.95,08/09/19 16:38,"271 Dogwood St, San Francisco, CA 94016" -239019,Apple Airpods Headphones,1,150,08/03/19 23:03,"264 Lincoln St, Austin, TX 73301" -239020,USB-C Charging Cable,1,11.95,08/17/19 15:48,"705 8th St, Portland, ME 04101" -239021,Lightning Charging Cable,1,14.95,08/01/19 18:21,"637 River St, New York City, NY 10001" -239022,USB-C Charging Cable,1,11.95,08/25/19 07:24,"788 Adams St, San Francisco, CA 94016" -239023,AA Batteries (4-pack),1,3.84,08/28/19 21:07,"716 Pine St, New York City, NY 10001" -239024,USB-C Charging Cable,1,11.95,08/03/19 20:12,"86 Maple St, Seattle, WA 98101" -239025,Apple Airpods Headphones,1,150,08/25/19 15:18,"372 Church St, Boston, MA 02215" -239026,AA Batteries (4-pack),1,3.84,08/23/19 18:45,"735 North St, Dallas, TX 75001" -239027,USB-C Charging Cable,1,11.95,08/22/19 12:18,"886 Highland St, New York City, NY 10001" -239028,AAA Batteries (4-pack),1,2.99,08/21/19 17:45,"941 Lincoln St, Los Angeles, CA 90001" -239029,AA Batteries (4-pack),1,3.84,08/08/19 13:04,"476 Hill St, Los Angeles, CA 90001" -239030,Lightning Charging Cable,1,14.95,08/27/19 08:55,"544 13th St, Dallas, TX 75001" -239031,AAA Batteries (4-pack),2,2.99,08/09/19 15:31,"889 5th St, Boston, MA 02215" -239032,Wired Headphones,1,11.99,08/31/19 15:40,"493 6th St, Seattle, WA 98101" -239033,AA Batteries (4-pack),1,3.84,08/02/19 19:34,"237 Church St, Austin, TX 73301" -239034,Wired Headphones,1,11.99,08/05/19 22:40,"490 Dogwood St, Boston, MA 02215" -239035,AAA Batteries (4-pack),1,2.99,08/23/19 10:45,"399 Johnson St, San Francisco, CA 94016" -239036,27in 4K Gaming Monitor,1,389.99,08/24/19 17:40,"501 Lincoln St, Boston, MA 02215" -239037,Apple Airpods Headphones,1,150,08/06/19 09:25,"846 Cedar St, San Francisco, CA 94016" -239038,Apple Airpods Headphones,1,150,08/05/19 06:16,"605 Johnson St, San Francisco, CA 94016" -239039,USB-C Charging Cable,1,11.95,08/01/19 19:29,"90 Spruce St, San Francisco, CA 94016" -239040,Macbook Pro Laptop,1,1700,08/09/19 21:38,"695 13th St, New York City, NY 10001" -239041,27in FHD Monitor,1,149.99,08/27/19 17:54,"205 Church St, Los Angeles, CA 90001" -239042,Lightning Charging Cable,1,14.95,08/02/19 19:30,"67 Jefferson St, Atlanta, GA 30301" -239043,Flatscreen TV,1,300,08/14/19 14:56,"898 Walnut St, Los Angeles, CA 90001" -239044,Apple Airpods Headphones,1,150,08/06/19 20:08,"109 Jackson St, New York City, NY 10001" -239045,AAA Batteries (4-pack),1,2.99,08/01/19 13:19,"61 Cherry St, Los Angeles, CA 90001" -239046,Bose SoundSport Headphones,1,99.99,08/26/19 13:34,"647 10th St, San Francisco, CA 94016" -239047,USB-C Charging Cable,1,11.95,08/01/19 21:54,"912 North St, Los Angeles, CA 90001" -239048,Bose SoundSport Headphones,1,99.99,08/16/19 19:36,"34 Cherry St, Boston, MA 02215" -239049,AA Batteries (4-pack),1,3.84,08/06/19 18:50,"700 14th St, Boston, MA 02215" -239050,AAA Batteries (4-pack),1,2.99,08/11/19 15:35,"569 Lake St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -239051,USB-C Charging Cable,1,11.95,08/16/19 20:44,"640 Willow St, Boston, MA 02215" -239052,USB-C Charging Cable,1,11.95,08/14/19 11:23,"95 Lakeview St, Seattle, WA 98101" -239053,AA Batteries (4-pack),1,3.84,08/08/19 00:18,"853 Wilson St, Seattle, WA 98101" -239054,AA Batteries (4-pack),1,3.84,08/16/19 18:53,"978 Jackson St, Los Angeles, CA 90001" -239055,AA Batteries (4-pack),1,3.84,08/24/19 19:16,"138 Spruce St, San Francisco, CA 94016" -239056,Lightning Charging Cable,1,14.95,08/03/19 00:47,"46 6th St, Seattle, WA 98101" -239057,Apple Airpods Headphones,1,150,08/26/19 13:22,"538 12th St, Seattle, WA 98101" -239058,USB-C Charging Cable,3,11.95,08/21/19 21:11,"9 Lake St, San Francisco, CA 94016" -239059,Lightning Charging Cable,1,14.95,08/10/19 21:27,"541 Hickory St, New York City, NY 10001" -239060,Macbook Pro Laptop,1,1700,08/30/19 21:20,"847 Johnson St, Dallas, TX 75001" -239061,Macbook Pro Laptop,1,1700,08/04/19 23:16,"977 Maple St, Atlanta, GA 30301" -239062,Apple Airpods Headphones,1,150,08/22/19 00:07,"74 River St, Atlanta, GA 30301" -239063,iPhone,1,700,08/10/19 18:52,"302 Maple St, Boston, MA 02215" -239064,USB-C Charging Cable,1,11.95,08/01/19 12:28,"931 7th St, New York City, NY 10001" -239065,Bose SoundSport Headphones,1,99.99,08/30/19 12:03,"461 Ridge St, Los Angeles, CA 90001" -239066,Lightning Charging Cable,1,14.95,08/27/19 21:10,"596 Walnut St, Atlanta, GA 30301" -239067,Lightning Charging Cable,1,14.95,08/21/19 00:08,"267 Sunset St, New York City, NY 10001" -239068,Apple Airpods Headphones,1,150,08/26/19 06:07,"991 West St, San Francisco, CA 94016" -239069,27in FHD Monitor,1,149.99,08/20/19 17:09,"917 Walnut St, Boston, MA 02215" -239070,Apple Airpods Headphones,1,150,08/13/19 16:11,"543 Dogwood St, Los Angeles, CA 90001" -239071,27in FHD Monitor,1,149.99,08/30/19 10:25,"488 Adams St, Boston, MA 02215" -239072,34in Ultrawide Monitor,1,379.99,08/31/19 22:29,"498 Jackson St, San Francisco, CA 94016" -239073,AA Batteries (4-pack),1,3.84,08/05/19 14:41,"928 Lincoln St, San Francisco, CA 94016" -239074,ThinkPad Laptop,1,999.99,08/12/19 23:23,"788 Madison St, Los Angeles, CA 90001" -239074,iPhone,1,700,08/12/19 23:23,"788 Madison St, Los Angeles, CA 90001" -239075,USB-C Charging Cable,2,11.95,08/10/19 01:52,"777 5th St, Los Angeles, CA 90001" -239076,Apple Airpods Headphones,1,150,08/09/19 23:03,"600 7th St, Atlanta, GA 30301" -239077,LG Dryer,1,600.0,08/20/19 23:18,"999 13th St, Atlanta, GA 30301" -239078,USB-C Charging Cable,1,11.95,08/16/19 07:11,"951 Wilson St, Los Angeles, CA 90001" -239079,AA Batteries (4-pack),1,3.84,08/31/19 17:06,"522 Main St, San Francisco, CA 94016" -239080,27in FHD Monitor,1,149.99,08/18/19 16:47,"533 Jefferson St, San Francisco, CA 94016" -239081,Lightning Charging Cable,1,14.95,08/11/19 11:20,"302 Jackson St, Dallas, TX 75001" -239082,27in 4K Gaming Monitor,1,389.99,08/22/19 15:29,"174 Hill St, Atlanta, GA 30301" -239083,AA Batteries (4-pack),1,3.84,08/26/19 07:11,"476 Cedar St, Portland, OR 97035" -239084,Google Phone,1,600,08/09/19 14:41,"614 Madison St, San Francisco, CA 94016" -239084,USB-C Charging Cable,1,11.95,08/09/19 14:41,"614 Madison St, San Francisco, CA 94016" -239085,USB-C Charging Cable,1,11.95,08/14/19 18:32,"897 8th St, Atlanta, GA 30301" -239086,Flatscreen TV,1,300,08/25/19 20:04,"486 5th St, Los Angeles, CA 90001" -239087,USB-C Charging Cable,1,11.95,08/21/19 10:32,"964 Lakeview St, New York City, NY 10001" -239088,AAA Batteries (4-pack),2,2.99,08/04/19 14:06,"818 Lincoln St, San Francisco, CA 94016" -239089,34in Ultrawide Monitor,1,379.99,08/02/19 14:18,"425 8th St, Los Angeles, CA 90001" -239090,Lightning Charging Cable,1,14.95,08/27/19 10:19,"383 1st St, Los Angeles, CA 90001" -239091,Bose SoundSport Headphones,1,99.99,08/15/19 23:56,"886 1st St, San Francisco, CA 94016" -239092,Wired Headphones,1,11.99,08/06/19 19:20,"895 Walnut St, New York City, NY 10001" -239093,27in FHD Monitor,1,149.99,08/15/19 15:41,"892 Elm St, Boston, MA 02215" -239094,AAA Batteries (4-pack),1,2.99,08/07/19 21:17,"944 12th St, Los Angeles, CA 90001" -239095,Bose SoundSport Headphones,1,99.99,08/29/19 13:30,"54 Main St, San Francisco, CA 94016" -239096,Bose SoundSport Headphones,1,99.99,08/12/19 10:00,"258 Johnson St, Los Angeles, CA 90001" -239097,Wired Headphones,1,11.99,08/07/19 13:24,"534 Adams St, San Francisco, CA 94016" -239098,AA Batteries (4-pack),1,3.84,08/20/19 16:27,"927 12th St, San Francisco, CA 94016" -239098,USB-C Charging Cable,1,11.95,08/20/19 16:27,"927 12th St, San Francisco, CA 94016" -239099,Flatscreen TV,1,300,08/06/19 22:14,"411 Madison St, Los Angeles, CA 90001" -239100,Lightning Charging Cable,1,14.95,08/03/19 13:22,"959 Hickory St, Atlanta, GA 30301" -239101,ThinkPad Laptop,1,999.99,08/12/19 17:05,"75 1st St, Los Angeles, CA 90001" -239102,AA Batteries (4-pack),2,3.84,08/03/19 16:45,"722 2nd St, Portland, OR 97035" -239103,Google Phone,1,600,08/20/19 09:34,"75 7th St, Boston, MA 02215" -239104,34in Ultrawide Monitor,1,379.99,08/10/19 17:43,"524 Sunset St, San Francisco, CA 94016" -239105,USB-C Charging Cable,1,11.95,08/22/19 11:56,"242 Sunset St, New York City, NY 10001" -239106,20in Monitor,1,109.99,08/17/19 12:23,"132 Spruce St, San Francisco, CA 94016" -239107,Apple Airpods Headphones,1,150,08/18/19 07:26,"768 Meadow St, Atlanta, GA 30301" -239108,AAA Batteries (4-pack),1,2.99,08/01/19 21:10,"343 Jefferson St, Los Angeles, CA 90001" -239109,34in Ultrawide Monitor,1,379.99,08/30/19 16:47,"170 13th St, Atlanta, GA 30301" -239110,Wired Headphones,1,11.99,08/19/19 07:16,"34 Hill St, San Francisco, CA 94016" -239111,AA Batteries (4-pack),1,3.84,08/25/19 18:40,"16 Spruce St, Los Angeles, CA 90001" -239112,AA Batteries (4-pack),1,3.84,08/07/19 12:14,"616 Jackson St, Los Angeles, CA 90001" -239113,Bose SoundSport Headphones,1,99.99,08/28/19 16:25,"25 Hickory St, San Francisco, CA 94016" -239114,AAA Batteries (4-pack),1,2.99,08/15/19 21:19,"890 Madison St, San Francisco, CA 94016" -239115,27in FHD Monitor,1,149.99,08/03/19 10:17,"681 Park St, Seattle, WA 98101" -239116,Wired Headphones,1,11.99,08/01/19 06:55,"718 Chestnut St, Atlanta, GA 30301" -239117,USB-C Charging Cable,1,11.95,08/18/19 22:30,"555 Hickory St, San Francisco, CA 94016" -239118,USB-C Charging Cable,1,11.95,08/31/19 00:54,"475 Park St, Los Angeles, CA 90001" -239119,Apple Airpods Headphones,1,150,08/11/19 21:51,"448 North St, Los Angeles, CA 90001" -239120,Bose SoundSport Headphones,1,99.99,08/23/19 18:15,"729 Main St, Seattle, WA 98101" -239121,iPhone,1,700,08/09/19 20:37,"453 West St, San Francisco, CA 94016" -239122,AA Batteries (4-pack),2,3.84,08/16/19 19:45,"306 Center St, New York City, NY 10001" -239123,USB-C Charging Cable,1,11.95,08/02/19 14:56,"702 River St, Boston, MA 02215" -239124,Apple Airpods Headphones,1,150,08/26/19 21:35,"214 Park St, San Francisco, CA 94016" -239125,27in 4K Gaming Monitor,1,389.99,08/11/19 21:15,"654 Hill St, New York City, NY 10001" -239126,USB-C Charging Cable,1,11.95,08/02/19 10:56,"885 Hickory St, San Francisco, CA 94016" -239127,Apple Airpods Headphones,1,150,08/23/19 12:03,"737 West St, Seattle, WA 98101" -239128,Wired Headphones,1,11.99,08/16/19 18:00,"17 Hill St, Seattle, WA 98101" -239129,AA Batteries (4-pack),1,3.84,08/12/19 23:38,"822 Lakeview St, San Francisco, CA 94016" -239130,27in 4K Gaming Monitor,1,389.99,08/28/19 13:36,"615 Adams St, Los Angeles, CA 90001" -239131,Google Phone,1,600,08/24/19 19:17,"670 Hickory St, Austin, TX 73301" -239131,AAA Batteries (4-pack),5,2.99,08/24/19 19:17,"670 Hickory St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -239132,Lightning Charging Cable,1,14.95,08/18/19 13:26,"326 North St, San Francisco, CA 94016" -239133,27in FHD Monitor,1,149.99,08/16/19 19:47,"281 Lake St, Seattle, WA 98101" -239134,USB-C Charging Cable,1,11.95,08/12/19 09:04,"325 13th St, Atlanta, GA 30301" -239135,Lightning Charging Cable,1,14.95,08/27/19 20:39,"645 North St, San Francisco, CA 94016" -239136,Apple Airpods Headphones,1,150,08/15/19 17:35,"455 Spruce St, San Francisco, CA 94016" -239137,27in 4K Gaming Monitor,1,389.99,08/20/19 22:51,"212 Hickory St, New York City, NY 10001" -239138,AA Batteries (4-pack),1,3.84,08/09/19 22:37,"309 Hill St, San Francisco, CA 94016" -239139,AAA Batteries (4-pack),1,2.99,08/12/19 15:55,"128 Pine St, Dallas, TX 75001" -239140,AA Batteries (4-pack),2,3.84,08/22/19 13:49,"999 Lincoln St, New York City, NY 10001" -239141,Apple Airpods Headphones,1,150,08/15/19 09:40,"961 Elm St, Los Angeles, CA 90001" -239142,34in Ultrawide Monitor,1,379.99,08/15/19 22:43,"978 Walnut St, San Francisco, CA 94016" -239143,USB-C Charging Cable,1,11.95,08/24/19 09:17,"550 Ridge St, San Francisco, CA 94016" -239144,Flatscreen TV,1,300,08/17/19 07:37,"324 4th St, New York City, NY 10001" -239145,Wired Headphones,1,11.99,08/12/19 17:47,"639 Wilson St, Los Angeles, CA 90001" -239146,Bose SoundSport Headphones,1,99.99,08/17/19 15:35,"617 Walnut St, Dallas, TX 75001" -239147,Google Phone,1,600,08/21/19 21:14,"493 5th St, Los Angeles, CA 90001" -239148,AAA Batteries (4-pack),5,2.99,08/26/19 11:26,"226 Maple St, San Francisco, CA 94016" -239149,AA Batteries (4-pack),1,3.84,08/10/19 11:07,"766 Sunset St, Los Angeles, CA 90001" -239150,LG Dryer,1,600.0,08/29/19 20:04,"16 Church St, San Francisco, CA 94016" -239151,AAA Batteries (4-pack),1,2.99,08/17/19 19:56,"362 Wilson St, New York City, NY 10001" -239152,AAA Batteries (4-pack),2,2.99,08/16/19 15:12,"759 Walnut St, San Francisco, CA 94016" -239153,Apple Airpods Headphones,1,150,08/25/19 17:45,"946 Hickory St, Boston, MA 02215" -239154,AAA Batteries (4-pack),1,2.99,08/11/19 09:36,"491 Church St, Austin, TX 73301" -239155,27in 4K Gaming Monitor,1,389.99,08/08/19 21:04,"976 Wilson St, San Francisco, CA 94016" -239156,USB-C Charging Cable,1,11.95,08/18/19 19:36,"813 Forest St, Boston, MA 02215" -239157,AAA Batteries (4-pack),2,2.99,08/19/19 17:31,"973 Meadow St, New York City, NY 10001" -239158,AAA Batteries (4-pack),1,2.99,08/20/19 11:39,"831 Adams St, San Francisco, CA 94016" -239159,20in Monitor,1,109.99,08/18/19 18:04,"365 Highland St, Los Angeles, CA 90001" -239160,USB-C Charging Cable,2,11.95,08/05/19 01:09,"204 Sunset St, Seattle, WA 98101" -239161,27in FHD Monitor,1,149.99,08/19/19 11:23,"545 North St, Seattle, WA 98101" -239162,USB-C Charging Cable,1,11.95,08/11/19 19:33,"547 Highland St, Los Angeles, CA 90001" -239163,Lightning Charging Cable,1,14.95,08/29/19 01:09,"13 Pine St, Dallas, TX 75001" -239164,AAA Batteries (4-pack),1,2.99,08/29/19 10:19,"398 Meadow St, Los Angeles, CA 90001" -239165,AA Batteries (4-pack),2,3.84,08/23/19 16:21,"173 Johnson St, Dallas, TX 75001" -239166,AA Batteries (4-pack),1,3.84,08/01/19 16:11,"235 Meadow St, Austin, TX 73301" -239167,Wired Headphones,1,11.99,08/14/19 14:49,"829 Spruce St, Dallas, TX 75001" -239168,Lightning Charging Cable,1,14.95,08/21/19 06:27,"746 10th St, Seattle, WA 98101" -239169,27in FHD Monitor,2,149.99,08/15/19 10:05,"493 Dogwood St, San Francisco, CA 94016" -239169,AAA Batteries (4-pack),1,2.99,08/15/19 10:05,"493 Dogwood St, San Francisco, CA 94016" -239170,27in FHD Monitor,1,149.99,08/21/19 16:10,"732 River St, Portland, OR 97035" -239171,AAA Batteries (4-pack),1,2.99,08/07/19 19:22,"149 12th St, Boston, MA 02215" -239172,AA Batteries (4-pack),1,3.84,08/04/19 01:29,"322 Lakeview St, Atlanta, GA 30301" -239173,Apple Airpods Headphones,1,150,08/30/19 13:29,"904 North St, San Francisco, CA 94016" -239174,34in Ultrawide Monitor,1,379.99,08/21/19 09:13,"182 North St, Dallas, TX 75001" -239175,Wired Headphones,1,11.99,08/23/19 15:51,"384 Lake St, Atlanta, GA 30301" -239176,34in Ultrawide Monitor,1,379.99,08/28/19 18:35,"76 7th St, San Francisco, CA 94016" -239177,Macbook Pro Laptop,1,1700,08/10/19 08:04,"99 6th St, San Francisco, CA 94016" -239178,AAA Batteries (4-pack),1,2.99,08/19/19 07:26,"496 Johnson St, San Francisco, CA 94016" -239179,Flatscreen TV,1,300,08/06/19 13:32,"770 1st St, San Francisco, CA 94016" -239180,34in Ultrawide Monitor,1,379.99,08/01/19 21:53,"277 11th St, New York City, NY 10001" -239181,USB-C Charging Cable,1,11.95,08/08/19 14:56,"44 Highland St, New York City, NY 10001" -239182,Bose SoundSport Headphones,1,99.99,08/06/19 15:36,"655 Highland St, Seattle, WA 98101" -239183,Lightning Charging Cable,1,14.95,08/16/19 22:21,"9 Lincoln St, San Francisco, CA 94016" -239184,AAA Batteries (4-pack),2,2.99,08/18/19 16:12,"60 Lake St, Atlanta, GA 30301" -239185,iPhone,1,700,08/08/19 10:18,"324 Dogwood St, Los Angeles, CA 90001" -239186,Wired Headphones,1,11.99,08/01/19 14:18,"60 10th St, San Francisco, CA 94016" -239187,USB-C Charging Cable,1,11.95,08/09/19 00:05,"96 Madison St, Boston, MA 02215" -239188,iPhone,1,700,08/11/19 10:44,"119 Adams St, Los Angeles, CA 90001" -239188,Lightning Charging Cable,1,14.95,08/11/19 10:44,"119 Adams St, Los Angeles, CA 90001" -239189,20in Monitor,1,109.99,08/14/19 15:28,"540 Lincoln St, Los Angeles, CA 90001" -239190,AAA Batteries (4-pack),2,2.99,08/27/19 09:44,"218 Jackson St, Los Angeles, CA 90001" -239191,27in 4K Gaming Monitor,1,389.99,08/08/19 20:26,"221 9th St, Los Angeles, CA 90001" -239192,Google Phone,1,600,08/14/19 20:56,"828 Lake St, New York City, NY 10001" -239193,Wired Headphones,1,11.99,08/03/19 13:16,"972 Dogwood St, Los Angeles, CA 90001" -239194,USB-C Charging Cable,1,11.95,08/28/19 20:59,"593 Hickory St, San Francisco, CA 94016" -239195,20in Monitor,1,109.99,08/01/19 12:28,"51 Lincoln St, Boston, MA 02215" -239196,ThinkPad Laptop,1,999.99,08/25/19 01:08,"241 4th St, Los Angeles, CA 90001" -239197,Apple Airpods Headphones,1,150,08/28/19 14:49,"960 Elm St, New York City, NY 10001" -239198,Apple Airpods Headphones,1,150,08/01/19 11:50,"933 4th St, Los Angeles, CA 90001" -239199,USB-C Charging Cable,1,11.95,08/22/19 21:18,"611 Elm St, San Francisco, CA 94016" -239200,Google Phone,1,600,08/01/19 13:32,"465 5th St, Seattle, WA 98101" -239201,ThinkPad Laptop,1,999.99,08/16/19 21:26,"605 Center St, Los Angeles, CA 90001" -239202,Bose SoundSport Headphones,1,99.99,08/11/19 21:40,"303 Hill St, Seattle, WA 98101" -239203,USB-C Charging Cable,2,11.95,08/07/19 16:30,"527 Adams St, Boston, MA 02215" -239204,Apple Airpods Headphones,1,150,08/10/19 17:06,"550 Cedar St, Boston, MA 02215" -239205,AAA Batteries (4-pack),1,2.99,08/23/19 11:47,"463 West St, San Francisco, CA 94016" -239206,iPhone,1,700,08/25/19 20:33,"201 Cedar St, Los Angeles, CA 90001" -239207,Wired Headphones,1,11.99,08/18/19 11:27,"956 Wilson St, Atlanta, GA 30301" -239208,AAA Batteries (4-pack),1,2.99,08/14/19 13:05,"775 Highland St, Boston, MA 02215" -,,,,, -239209,Wired Headphones,1,11.99,08/12/19 11:29,"363 Willow St, Atlanta, GA 30301" -239210,Wired Headphones,2,11.99,08/27/19 17:42,"554 Forest St, San Francisco, CA 94016" -239211,AA Batteries (4-pack),1,3.84,08/16/19 10:38,"418 12th St, Dallas, TX 75001" -239212,AAA Batteries (4-pack),1,2.99,08/05/19 19:41,"584 Lincoln St, Los Angeles, CA 90001" -239213,AA Batteries (4-pack),1,3.84,08/25/19 07:46,"951 Jackson St, San Francisco, CA 94016" -239214,USB-C Charging Cable,1,11.95,08/25/19 20:14,"740 8th St, Atlanta, GA 30301" -239215,27in FHD Monitor,1,149.99,08/07/19 20:05,"530 Maple St, Boston, MA 02215" -239216,Bose SoundSport Headphones,1,99.99,08/21/19 20:19,"714 8th St, Los Angeles, CA 90001" -239217,AA Batteries (4-pack),1,3.84,08/18/19 13:45,"593 Cherry St, San Francisco, CA 94016" -239218,AA Batteries (4-pack),1,3.84,08/31/19 14:37,"166 Chestnut St, New York City, NY 10001" -239219,Lightning Charging Cable,1,14.95,08/09/19 16:43,"623 1st St, San Francisco, CA 94016" -239220,Lightning Charging Cable,1,14.95,08/31/19 16:49,"956 Wilson St, San Francisco, CA 94016" -239221,Lightning Charging Cable,1,14.95,08/16/19 20:33,"879 Lakeview St, Los Angeles, CA 90001" -239222,AAA Batteries (4-pack),2,2.99,08/14/19 17:03,"632 West St, Portland, ME 04101" -239223,Lightning Charging Cable,1,14.95,08/21/19 23:34,"586 Walnut St, Atlanta, GA 30301" -239224,USB-C Charging Cable,1,11.95,08/27/19 05:26,"191 Jackson St, Los Angeles, CA 90001" -239225,Apple Airpods Headphones,1,150,08/11/19 14:12,"573 Ridge St, Los Angeles, CA 90001" -239226,USB-C Charging Cable,1,11.95,08/28/19 16:50,"779 Center St, San Francisco, CA 94016" -239227,Lightning Charging Cable,1,14.95,08/08/19 13:02,"506 11th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -239228,AA Batteries (4-pack),2,3.84,08/30/19 14:01,"408 Main St, Dallas, TX 75001" -239229,AA Batteries (4-pack),2,3.84,08/11/19 09:20,"735 13th St, Los Angeles, CA 90001" -239230,USB-C Charging Cable,1,11.95,08/18/19 17:19,"484 Chestnut St, Boston, MA 02215" -239231,Lightning Charging Cable,1,14.95,08/04/19 00:00,"580 7th St, San Francisco, CA 94016" -239232,Bose SoundSport Headphones,1,99.99,08/23/19 15:51,"508 Chestnut St, Dallas, TX 75001" -239233,Macbook Pro Laptop,1,1700,08/14/19 18:14,"883 12th St, Los Angeles, CA 90001" -239234,ThinkPad Laptop,1,999.99,08/19/19 14:08,"712 Willow St, New York City, NY 10001" -239235,Apple Airpods Headphones,1,150,08/18/19 11:09,"72 4th St, Portland, OR 97035" -239236,Lightning Charging Cable,1,14.95,08/21/19 14:41,"803 13th St, Atlanta, GA 30301" -239237,Bose SoundSport Headphones,1,99.99,08/21/19 00:54,"757 5th St, Los Angeles, CA 90001" -239238,Lightning Charging Cable,1,14.95,08/06/19 15:25,"811 River St, San Francisco, CA 94016" -239239,Wired Headphones,1,11.99,08/23/19 09:46,"815 West St, Seattle, WA 98101" -239240,USB-C Charging Cable,1,11.95,08/20/19 19:23,"107 South St, Los Angeles, CA 90001" -239241,Lightning Charging Cable,1,14.95,08/05/19 22:38,"479 Meadow St, San Francisco, CA 94016" -239242,AAA Batteries (4-pack),1,2.99,08/15/19 16:51,"960 Forest St, San Francisco, CA 94016" -239243,AAA Batteries (4-pack),2,2.99,08/03/19 21:11,"83 Main St, Atlanta, GA 30301" -,,,,, -239244,AAA Batteries (4-pack),3,2.99,08/10/19 06:57,"693 8th St, San Francisco, CA 94016" -239245,Bose SoundSport Headphones,1,99.99,08/31/19 22:55,"388 Lincoln St, Portland, ME 04101" -239246,27in 4K Gaming Monitor,1,389.99,08/30/19 03:23,"975 Highland St, San Francisco, CA 94016" -239247,27in FHD Monitor,1,149.99,08/06/19 15:04,"935 Forest St, Austin, TX 73301" -239248,Apple Airpods Headphones,1,150,08/31/19 13:36,"307 Adams St, Dallas, TX 75001" -239248,Lightning Charging Cable,1,14.95,08/31/19 13:36,"307 Adams St, Dallas, TX 75001" -239249,AA Batteries (4-pack),1,3.84,08/12/19 14:30,"227 North St, Portland, ME 04101" -239250,Lightning Charging Cable,1,14.95,08/15/19 15:03,"350 8th St, Los Angeles, CA 90001" -239251,Lightning Charging Cable,1,14.95,08/22/19 22:57,"540 Highland St, Atlanta, GA 30301" -239252,AA Batteries (4-pack),1,3.84,08/26/19 08:25,"217 Jefferson St, San Francisco, CA 94016" -239253,34in Ultrawide Monitor,1,379.99,08/23/19 17:46,"43 8th St, Los Angeles, CA 90001" -239253,Wired Headphones,1,11.99,08/23/19 17:46,"43 8th St, Los Angeles, CA 90001" -239254,20in Monitor,1,109.99,08/14/19 21:58,"477 Jackson St, Boston, MA 02215" -239255,USB-C Charging Cable,1,11.95,08/13/19 21:44,"661 Church St, San Francisco, CA 94016" -239256,Lightning Charging Cable,1,14.95,08/12/19 16:46,"354 2nd St, Portland, OR 97035" -239257,AA Batteries (4-pack),2,3.84,08/19/19 15:06,"366 Wilson St, Dallas, TX 75001" -239258,AA Batteries (4-pack),1,3.84,08/17/19 01:49,"65 Meadow St, San Francisco, CA 94016" -239258,AAA Batteries (4-pack),2,2.99,08/17/19 01:49,"65 Meadow St, San Francisco, CA 94016" -239259,Vareebadd Phone,1,400,08/21/19 11:24,"271 Sunset St, San Francisco, CA 94016" -239259,Flatscreen TV,1,300,08/21/19 11:24,"271 Sunset St, San Francisco, CA 94016" -239260,Bose SoundSport Headphones,1,99.99,08/29/19 19:09,"948 Jackson St, Portland, ME 04101" -239261,Flatscreen TV,1,300,08/10/19 13:37,"299 Maple St, Atlanta, GA 30301" -239262,Lightning Charging Cable,1,14.95,08/13/19 13:01,"944 Church St, Los Angeles, CA 90001" -239263,AA Batteries (4-pack),1,3.84,08/07/19 01:30,"371 2nd St, New York City, NY 10001" -239264,AA Batteries (4-pack),1,3.84,08/25/19 11:15,"278 Sunset St, Atlanta, GA 30301" -239265,AAA Batteries (4-pack),1,2.99,08/28/19 10:15,"386 Hill St, New York City, NY 10001" -239266,34in Ultrawide Monitor,1,379.99,08/28/19 09:12,"504 Hickory St, New York City, NY 10001" -239267,Wired Headphones,1,11.99,08/13/19 21:06,"104 Chestnut St, New York City, NY 10001" -239268,Bose SoundSport Headphones,1,99.99,08/03/19 22:36,"446 Ridge St, New York City, NY 10001" -239269,Bose SoundSport Headphones,1,99.99,08/20/19 23:22,"653 Jackson St, Los Angeles, CA 90001" -239270,Vareebadd Phone,1,400,08/29/19 18:55,"206 Ridge St, Dallas, TX 75001" -239271,Lightning Charging Cable,1,14.95,08/19/19 20:44,"432 10th St, Seattle, WA 98101" -239272,27in FHD Monitor,1,149.99,08/23/19 13:48,"317 Jackson St, Dallas, TX 75001" -239273,27in FHD Monitor,1,149.99,08/22/19 04:16,"680 8th St, San Francisco, CA 94016" -239274,Wired Headphones,1,11.99,08/14/19 21:37,"110 Highland St, New York City, NY 10001" -239275,Macbook Pro Laptop,1,1700,08/11/19 13:51,"67 Johnson St, Los Angeles, CA 90001" -239276,Macbook Pro Laptop,1,1700,08/31/19 21:49,"636 7th St, New York City, NY 10001" -239277,AAA Batteries (4-pack),1,2.99,08/18/19 09:15,"208 Park St, Los Angeles, CA 90001" -239278,AAA Batteries (4-pack),1,2.99,08/22/19 11:37,"339 Park St, San Francisco, CA 94016" -239279,34in Ultrawide Monitor,1,379.99,08/01/19 15:59,"700 River St, Boston, MA 02215" -239280,USB-C Charging Cable,1,11.95,08/08/19 19:10,"677 Meadow St, Atlanta, GA 30301" -239281,Macbook Pro Laptop,1,1700,08/14/19 18:33,"203 Center St, Dallas, TX 75001" -239282,Bose SoundSport Headphones,1,99.99,08/04/19 18:05,"958 Hickory St, San Francisco, CA 94016" -239283,27in FHD Monitor,2,149.99,08/06/19 13:01,"40 1st St, Portland, OR 97035" -239284,Wired Headphones,1,11.99,08/26/19 09:07,"521 Lincoln St, Dallas, TX 75001" -239285,34in Ultrawide Monitor,1,379.99,09/01/19 01:09,"373 1st St, San Francisco, CA 94016" -239286,27in FHD Monitor,1,149.99,08/26/19 13:42,"137 South St, Los Angeles, CA 90001" -239287,AA Batteries (4-pack),1,3.84,08/04/19 16:21,"424 River St, Los Angeles, CA 90001" -239288,USB-C Charging Cable,1,11.95,08/13/19 17:06,"734 11th St, New York City, NY 10001" -239289,34in Ultrawide Monitor,1,379.99,08/24/19 21:03,"350 8th St, Dallas, TX 75001" -239290,Wired Headphones,2,11.99,08/13/19 10:11,"15 9th St, New York City, NY 10001" -239290,34in Ultrawide Monitor,1,379.99,08/13/19 10:11,"15 9th St, New York City, NY 10001" -239291,27in FHD Monitor,1,149.99,08/14/19 19:34,"969 12th St, Seattle, WA 98101" -239292,Lightning Charging Cable,1,14.95,08/19/19 17:35,"376 West St, Los Angeles, CA 90001" -239293,USB-C Charging Cable,1,11.95,08/19/19 20:44,"42 Main St, Los Angeles, CA 90001" -239294,Wired Headphones,1,11.99,08/24/19 10:28,"616 Lake St, Atlanta, GA 30301" -239295,Google Phone,1,600,08/03/19 05:37,"146 10th St, San Francisco, CA 94016" -239295,Wired Headphones,1,11.99,08/03/19 05:37,"146 10th St, San Francisco, CA 94016" -239296,USB-C Charging Cable,1,11.95,08/31/19 16:42,"418 Pine St, Portland, ME 04101" -239297,Apple Airpods Headphones,1,150,08/09/19 10:25,"925 Park St, New York City, NY 10001" -239298,Bose SoundSport Headphones,1,99.99,08/26/19 10:55,"350 Park St, San Francisco, CA 94016" -239299,Lightning Charging Cable,1,14.95,08/19/19 16:33,"782 West St, Boston, MA 02215" -239300,Bose SoundSport Headphones,1,99.99,08/29/19 12:18,"139 Church St, Los Angeles, CA 90001" -239301,Google Phone,1,600,08/09/19 09:14,"546 Forest St, Atlanta, GA 30301" -239302,LG Dryer,1,600.0,08/29/19 14:41,"446 Center St, Dallas, TX 75001" -239303,AA Batteries (4-pack),1,3.84,08/27/19 21:32,"562 Walnut St, Los Angeles, CA 90001" -239304,iPhone,1,700,08/30/19 20:08,"694 North St, San Francisco, CA 94016" -239305,USB-C Charging Cable,1,11.95,08/18/19 19:33,"860 Spruce St, Los Angeles, CA 90001" -239306,AA Batteries (4-pack),2,3.84,08/24/19 02:41,"836 Center St, Boston, MA 02215" -239307,Apple Airpods Headphones,1,150,08/10/19 16:34,"117 Lincoln St, Los Angeles, CA 90001" -239308,Google Phone,1,600,08/14/19 08:23,"275 Sunset St, Dallas, TX 75001" -239308,USB-C Charging Cable,1,11.95,08/14/19 08:23,"275 Sunset St, Dallas, TX 75001" -239309,Wired Headphones,2,11.99,08/29/19 11:07,"343 Lincoln St, Los Angeles, CA 90001" -239310,Vareebadd Phone,1,400,08/10/19 11:57,"932 9th St, New York City, NY 10001" -239311,USB-C Charging Cable,1,11.95,08/29/19 21:37,"182 Hickory St, Dallas, TX 75001" -239312,Lightning Charging Cable,1,14.95,08/03/19 20:18,"649 Cherry St, Atlanta, GA 30301" -239313,Bose SoundSport Headphones,1,99.99,08/03/19 18:25,"863 River St, Boston, MA 02215" -239314,Bose SoundSport Headphones,1,99.99,08/22/19 22:51,"527 Lake St, Dallas, TX 75001" -239315,AA Batteries (4-pack),1,3.84,08/21/19 16:51,"6 Hickory St, Boston, MA 02215" -239316,AA Batteries (4-pack),3,3.84,08/03/19 14:26,"233 8th St, Los Angeles, CA 90001" -239317,Apple Airpods Headphones,1,150,08/29/19 16:07,"289 10th St, Los Angeles, CA 90001" -239318,AA Batteries (4-pack),1,3.84,08/01/19 23:43,"942 Cedar St, New York City, NY 10001" -239319,Lightning Charging Cable,2,14.95,08/31/19 20:51,"941 Jackson St, Boston, MA 02215" -239320,AAA Batteries (4-pack),1,2.99,08/11/19 13:14,"933 Ridge St, San Francisco, CA 94016" -239321,USB-C Charging Cable,1,11.95,08/20/19 16:41,"583 Maple St, Boston, MA 02215" -239322,34in Ultrawide Monitor,1,379.99,08/27/19 17:32,"684 West St, Boston, MA 02215" -239323,Lightning Charging Cable,1,14.95,08/27/19 17:01,"658 Jefferson St, San Francisco, CA 94016" -239324,Wired Headphones,1,11.99,08/22/19 14:56,"464 Pine St, Dallas, TX 75001" -239325,Lightning Charging Cable,1,14.95,08/07/19 09:35,"610 Maple St, San Francisco, CA 94016" -239326,AAA Batteries (4-pack),2,2.99,08/05/19 09:48,"227 4th St, San Francisco, CA 94016" -239327,AA Batteries (4-pack),1,3.84,08/15/19 09:30,"913 12th St, New York City, NY 10001" -239328,20in Monitor,1,109.99,08/02/19 11:17,"490 Walnut St, Atlanta, GA 30301" -239329,Bose SoundSport Headphones,1,99.99,08/27/19 19:05,"50 Hickory St, Dallas, TX 75001" -239330,AAA Batteries (4-pack),1,2.99,08/19/19 15:44,"867 Lake St, Portland, OR 97035" -239331,27in 4K Gaming Monitor,1,389.99,08/14/19 14:27,"97 Lake St, Seattle, WA 98101" -239332,Bose SoundSport Headphones,1,99.99,08/02/19 06:48,"346 14th St, San Francisco, CA 94016" -239333,27in 4K Gaming Monitor,1,389.99,08/15/19 19:23,"938 Park St, Los Angeles, CA 90001" -239334,AAA Batteries (4-pack),2,2.99,08/02/19 10:59,"715 Park St, New York City, NY 10001" -239335,Lightning Charging Cable,1,14.95,08/20/19 10:18,"547 Lincoln St, San Francisco, CA 94016" -239336,AAA Batteries (4-pack),2,2.99,08/19/19 13:52,"900 North St, San Francisco, CA 94016" -239337,Apple Airpods Headphones,1,150,08/25/19 23:14,"757 Hickory St, Boston, MA 02215" -239338,Wired Headphones,1,11.99,08/20/19 12:31,"289 Ridge St, New York City, NY 10001" -239339,Lightning Charging Cable,1,14.95,08/25/19 21:00,"375 Lincoln St, Seattle, WA 98101" -239340,ThinkPad Laptop,1,999.99,08/13/19 13:25,"747 North St, Los Angeles, CA 90001" -239341,iPhone,1,700,08/25/19 23:28,"543 Lake St, Boston, MA 02215" -239342,USB-C Charging Cable,1,11.95,08/15/19 11:46,"972 Jefferson St, San Francisco, CA 94016" -239343,Google Phone,1,600,08/24/19 14:07,"438 Maple St, San Francisco, CA 94016" -239343,USB-C Charging Cable,1,11.95,08/24/19 14:07,"438 Maple St, San Francisco, CA 94016" -239344,Flatscreen TV,1,300,08/07/19 11:37,"776 Willow St, Boston, MA 02215" -239345,Macbook Pro Laptop,1,1700,08/09/19 12:21,"328 Johnson St, San Francisco, CA 94016" -239346,AAA Batteries (4-pack),1,2.99,08/01/19 14:08,"17 Lakeview St, San Francisco, CA 94016" -239347,Wired Headphones,1,11.99,08/22/19 17:46,"34 Cedar St, Portland, ME 04101" -239348,Wired Headphones,1,11.99,08/25/19 07:41,"350 Madison St, San Francisco, CA 94016" -239349,AA Batteries (4-pack),2,3.84,08/24/19 13:34,"421 12th St, Seattle, WA 98101" -239350,Lightning Charging Cable,1,14.95,08/04/19 11:09,"568 4th St, Portland, OR 97035" -239351,Apple Airpods Headphones,1,150,08/23/19 10:03,"403 Washington St, Austin, TX 73301" -239352,USB-C Charging Cable,1,11.95,08/19/19 11:38,"141 North St, New York City, NY 10001" -239353,AAA Batteries (4-pack),4,2.99,08/04/19 22:03,"787 Dogwood St, New York City, NY 10001" -239354,27in 4K Gaming Monitor,1,389.99,08/19/19 12:34,"210 Madison St, Boston, MA 02215" -239355,Lightning Charging Cable,1,14.95,08/27/19 18:36,"201 Park St, New York City, NY 10001" -239356,Bose SoundSport Headphones,1,99.99,08/19/19 16:22,"408 7th St, New York City, NY 10001" -239357,AA Batteries (4-pack),2,3.84,08/19/19 12:51,"923 Lake St, Portland, OR 97035" -239358,Bose SoundSport Headphones,1,99.99,08/02/19 13:35,"574 10th St, San Francisco, CA 94016" -239359,Wired Headphones,1,11.99,08/05/19 18:20,"28 Elm St, Portland, OR 97035" -239360,Apple Airpods Headphones,1,150,08/12/19 08:10,"359 West St, Portland, OR 97035" -239361,ThinkPad Laptop,1,999.99,08/06/19 23:12,"623 Adams St, San Francisco, CA 94016" -239362,Apple Airpods Headphones,1,150,08/09/19 10:15,"593 Maple St, Seattle, WA 98101" -239363,AAA Batteries (4-pack),2,2.99,08/04/19 22:33,"79 5th St, Austin, TX 73301" -239364,AA Batteries (4-pack),3,3.84,08/17/19 20:25,"57 Forest St, Portland, OR 97035" -239365,34in Ultrawide Monitor,1,379.99,08/30/19 13:23,"97 4th St, Dallas, TX 75001" -239366,Bose SoundSport Headphones,1,99.99,08/09/19 20:40,"348 Sunset St, San Francisco, CA 94016" -239367,Google Phone,1,600,08/01/19 11:51,"383 Lake St, New York City, NY 10001" -239368,Apple Airpods Headphones,1,150,08/08/19 14:39,"446 6th St, New York City, NY 10001" -239369,Apple Airpods Headphones,1,150,08/09/19 17:58,"32 River St, Portland, ME 04101" -239370,USB-C Charging Cable,1,11.95,08/19/19 14:27,"734 Pine St, New York City, NY 10001" -239371,AA Batteries (4-pack),1,3.84,08/14/19 16:17,"431 River St, San Francisco, CA 94016" -239372,Google Phone,1,600,08/07/19 16:45,"828 12th St, Portland, OR 97035" -239373,Bose SoundSport Headphones,1,99.99,08/25/19 22:18,"656 Johnson St, Boston, MA 02215" -239374,AAA Batteries (4-pack),1,2.99,08/03/19 21:11,"392 Main St, New York City, NY 10001" -239375,Wired Headphones,2,11.99,08/26/19 21:08,"979 Lakeview St, San Francisco, CA 94016" -239376,USB-C Charging Cable,2,11.95,08/26/19 11:29,"512 Jackson St, Seattle, WA 98101" -239377,USB-C Charging Cable,1,11.95,08/08/19 10:41,"778 Spruce St, San Francisco, CA 94016" -239378,Lightning Charging Cable,1,14.95,08/10/19 15:19,"752 Willow St, Los Angeles, CA 90001" -239379,Wired Headphones,1,11.99,08/05/19 15:42,"341 Sunset St, Atlanta, GA 30301" -239380,Bose SoundSport Headphones,1,99.99,08/19/19 17:19,"962 Spruce St, San Francisco, CA 94016" -239381,Apple Airpods Headphones,1,150,08/04/19 07:18,"621 Meadow St, Los Angeles, CA 90001" -239382,Flatscreen TV,1,300,08/02/19 18:33,"402 Washington St, Seattle, WA 98101" -239383,Google Phone,1,600,08/15/19 19:07,"772 Madison St, Atlanta, GA 30301" -239384,Wired Headphones,1,11.99,08/12/19 15:33,"200 14th St, Seattle, WA 98101" -239385,Bose SoundSport Headphones,1,99.99,08/30/19 19:17,"380 6th St, San Francisco, CA 94016" -239386,Apple Airpods Headphones,1,150,08/03/19 22:52,"700 Church St, New York City, NY 10001" -239387,Lightning Charging Cable,1,14.95,08/08/19 14:10,"884 Johnson St, Los Angeles, CA 90001" -239388,Google Phone,1,600,08/24/19 19:32,"285 Pine St, Dallas, TX 75001" -239389,AAA Batteries (4-pack),1,2.99,08/13/19 14:29,"123 Highland St, Los Angeles, CA 90001" -239390,Bose SoundSport Headphones,1,99.99,08/12/19 21:50,"235 Willow St, Seattle, WA 98101" -239391,Wired Headphones,1,11.99,08/15/19 12:52,"558 Adams St, Boston, MA 02215" -239392,Flatscreen TV,1,300,08/21/19 10:10,"730 Wilson St, Boston, MA 02215" -239393,Apple Airpods Headphones,1,150,08/04/19 10:27,"122 10th St, San Francisco, CA 94016" -239394,AAA Batteries (4-pack),1,2.99,08/21/19 16:44,"976 Lakeview St, Los Angeles, CA 90001" -239395,Wired Headphones,2,11.99,08/02/19 14:26,"536 Ridge St, San Francisco, CA 94016" -239396,USB-C Charging Cable,1,11.95,08/16/19 20:40,"338 Lake St, New York City, NY 10001" -239397,20in Monitor,1,109.99,08/12/19 22:06,"162 Sunset St, New York City, NY 10001" -239398,Vareebadd Phone,1,400,08/01/19 10:52,"521 4th St, Austin, TX 73301" -239398,Wired Headphones,1,11.99,08/01/19 10:52,"521 4th St, Austin, TX 73301" -239399,AA Batteries (4-pack),1,3.84,08/30/19 01:08,"319 4th St, San Francisco, CA 94016" -239400,AA Batteries (4-pack),1,3.84,08/08/19 21:22,"889 Chestnut St, Dallas, TX 75001" -239401,iPhone,1,700,08/08/19 15:09,"752 2nd St, Seattle, WA 98101" -239402,AA Batteries (4-pack),2,3.84,08/12/19 07:46,"494 Dogwood St, Seattle, WA 98101" -239403,AA Batteries (4-pack),1,3.84,08/15/19 15:02,"345 Lake St, Portland, OR 97035" -239404,Lightning Charging Cable,1,14.95,08/05/19 22:44,"500 South St, San Francisco, CA 94016" -239405,USB-C Charging Cable,1,11.95,08/25/19 13:29,"313 Walnut St, Atlanta, GA 30301" -239406,Bose SoundSport Headphones,1,99.99,08/17/19 17:54,"855 12th St, San Francisco, CA 94016" -239407,AAA Batteries (4-pack),1,2.99,08/19/19 21:49,"142 Wilson St, Seattle, WA 98101" -239408,AAA Batteries (4-pack),4,2.99,08/14/19 10:30,"539 Walnut St, Seattle, WA 98101" -239409,Flatscreen TV,1,300,08/26/19 17:05,"955 12th St, San Francisco, CA 94016" -239410,Wired Headphones,1,11.99,08/21/19 13:16,"962 2nd St, Seattle, WA 98101" -239411,Lightning Charging Cable,1,14.95,08/09/19 11:16,"36 Lakeview St, New York City, NY 10001" -239412,Wired Headphones,1,11.99,08/02/19 08:43,"397 South St, Los Angeles, CA 90001" -239413,Lightning Charging Cable,2,14.95,08/22/19 17:26,"99 Lake St, Boston, MA 02215" -239414,AAA Batteries (4-pack),4,2.99,08/29/19 14:08,"414 North St, Portland, OR 97035" -239415,Lightning Charging Cable,1,14.95,08/14/19 19:54,"120 Sunset St, New York City, NY 10001" -239416,27in 4K Gaming Monitor,1,389.99,08/17/19 20:16,"728 Wilson St, Portland, OR 97035" -239417,AA Batteries (4-pack),1,3.84,08/24/19 19:58,"383 10th St, Portland, OR 97035" -239418,USB-C Charging Cable,1,11.95,08/29/19 19:35,"749 Spruce St, New York City, NY 10001" -239419,AAA Batteries (4-pack),2,2.99,08/08/19 12:18,"142 4th St, San Francisco, CA 94016" -239420,iPhone,1,700,08/18/19 14:35,"845 10th St, Boston, MA 02215" -239420,Wired Headphones,2,11.99,08/18/19 14:35,"845 10th St, Boston, MA 02215" -239421,Lightning Charging Cable,1,14.95,08/26/19 10:37,"382 Cherry St, New York City, NY 10001" -239422,USB-C Charging Cable,1,11.95,08/30/19 18:39,"540 10th St, San Francisco, CA 94016" -239423,27in FHD Monitor,1,149.99,08/04/19 11:35,"742 Dogwood St, Dallas, TX 75001" -239424,Wired Headphones,1,11.99,08/08/19 11:10,"44 Elm St, Boston, MA 02215" -239425,Lightning Charging Cable,1,14.95,08/08/19 10:13,"291 12th St, Austin, TX 73301" -239426,Lightning Charging Cable,1,14.95,08/12/19 08:35,"358 8th St, Atlanta, GA 30301" -239427,Apple Airpods Headphones,1,150,08/09/19 20:38,"534 Ridge St, Dallas, TX 75001" -239428,Wired Headphones,1,11.99,08/01/19 18:37,"664 Church St, San Francisco, CA 94016" -239429,AAA Batteries (4-pack),2,2.99,08/06/19 10:46,"643 Washington St, New York City, NY 10001" -239430,USB-C Charging Cable,1,11.95,08/23/19 21:07,"316 South St, Austin, TX 73301" -239431,AA Batteries (4-pack),1,3.84,08/15/19 22:54,"612 Lincoln St, Los Angeles, CA 90001" -239432,Apple Airpods Headphones,1,150,08/19/19 01:09,"395 Lakeview St, Seattle, WA 98101" -239433,Bose SoundSport Headphones,1,99.99,08/21/19 20:48,"898 Center St, San Francisco, CA 94016" -239434,27in FHD Monitor,1,149.99,08/05/19 21:34,"13 Park St, New York City, NY 10001" -239435,USB-C Charging Cable,1,11.95,08/21/19 22:16,"717 Cherry St, Los Angeles, CA 90001" -239436,Wired Headphones,1,11.99,08/10/19 15:41,"698 Lincoln St, Boston, MA 02215" -239437,USB-C Charging Cable,1,11.95,08/16/19 20:37,"836 9th St, San Francisco, CA 94016" -239438,34in Ultrawide Monitor,1,379.99,08/17/19 12:23,"10 North St, San Francisco, CA 94016" -239439,27in 4K Gaming Monitor,1,389.99,08/20/19 17:40,"737 Jackson St, Austin, TX 73301" -239440,Wired Headphones,1,11.99,08/08/19 02:48,"417 Pine St, Los Angeles, CA 90001" -239441,27in FHD Monitor,1,149.99,08/01/19 10:36,"713 Lincoln St, Los Angeles, CA 90001" -239442,AA Batteries (4-pack),1,3.84,08/12/19 10:14,"3 Elm St, Austin, TX 73301" -239443,USB-C Charging Cable,1,11.95,08/15/19 19:41,"879 Highland St, Portland, OR 97035" -239444,Vareebadd Phone,1,400,08/30/19 19:23,"113 9th St, Atlanta, GA 30301" -239445,Lightning Charging Cable,1,14.95,08/08/19 16:51,"323 Washington St, San Francisco, CA 94016" -239446,Lightning Charging Cable,1,14.95,08/19/19 13:46,"877 4th St, Portland, OR 97035" -239447,Apple Airpods Headphones,1,150,08/01/19 23:32,"343 Cherry St, Seattle, WA 98101" -239448,AAA Batteries (4-pack),2,2.99,08/06/19 07:55,"775 5th St, San Francisco, CA 94016" -239449,AAA Batteries (4-pack),1,2.99,08/30/19 00:07,"895 Jackson St, Los Angeles, CA 90001" -239450,ThinkPad Laptop,1,999.99,08/31/19 13:54,"731 12th St, San Francisco, CA 94016" -239451,Lightning Charging Cable,1,14.95,08/28/19 11:25,"925 Willow St, New York City, NY 10001" -239452,iPhone,1,700,08/12/19 12:42,"195 6th St, Boston, MA 02215" -239453,AA Batteries (4-pack),1,3.84,08/07/19 15:06,"324 Washington St, San Francisco, CA 94016" -239454,USB-C Charging Cable,1,11.95,08/04/19 10:55,"212 North St, Los Angeles, CA 90001" -239455,34in Ultrawide Monitor,1,379.99,08/30/19 13:13,"400 14th St, Los Angeles, CA 90001" -239456,27in FHD Monitor,1,149.99,08/25/19 00:23,"717 1st St, Los Angeles, CA 90001" -239457,Bose SoundSport Headphones,1,99.99,08/01/19 16:37,"680 2nd St, Los Angeles, CA 90001" -239458,USB-C Charging Cable,1,11.95,08/05/19 11:15,"185 7th St, Seattle, WA 98101" -239459,AAA Batteries (4-pack),2,2.99,08/23/19 10:40,"326 10th St, San Francisco, CA 94016" -239460,Apple Airpods Headphones,1,150,08/27/19 14:22,"398 12th St, San Francisco, CA 94016" -239461,27in FHD Monitor,1,149.99,08/22/19 15:32,"503 14th St, Los Angeles, CA 90001" -239462,27in 4K Gaming Monitor,1,389.99,08/27/19 19:31,"321 2nd St, Los Angeles, CA 90001" -239463,20in Monitor,1,109.99,08/04/19 14:30,"581 Maple St, Seattle, WA 98101" -239464,AA Batteries (4-pack),1,3.84,08/06/19 16:12,"551 10th St, San Francisco, CA 94016" -239465,AA Batteries (4-pack),2,3.84,08/26/19 14:10,"928 River St, Los Angeles, CA 90001" -239466,Bose SoundSport Headphones,1,99.99,08/22/19 15:35,"405 11th St, Los Angeles, CA 90001" -239467,AAA Batteries (4-pack),7,2.99,08/20/19 19:20,"427 7th St, Boston, MA 02215" -239468,AA Batteries (4-pack),1,3.84,08/01/19 10:26,"869 West St, Dallas, TX 75001" -239469,27in 4K Gaming Monitor,1,389.99,08/19/19 10:08,"332 Cherry St, New York City, NY 10001" -239470,AAA Batteries (4-pack),2,2.99,08/30/19 10:24,"806 9th St, Austin, TX 73301" -239471,AA Batteries (4-pack),2,3.84,08/10/19 15:12,"926 Meadow St, San Francisco, CA 94016" -239472,AA Batteries (4-pack),1,3.84,08/23/19 17:23,"746 Lincoln St, San Francisco, CA 94016" -239473,27in 4K Gaming Monitor,1,389.99,08/10/19 09:35,"791 Maple St, Los Angeles, CA 90001" -239474,Lightning Charging Cable,1,14.95,08/06/19 15:18,"63 4th St, Seattle, WA 98101" -239475,AAA Batteries (4-pack),1,2.99,08/12/19 06:37,"560 Park St, Boston, MA 02215" -239476,27in 4K Gaming Monitor,1,389.99,08/14/19 19:34,"330 10th St, Seattle, WA 98101" -239477,Wired Headphones,1,11.99,08/19/19 20:36,"53 Church St, San Francisco, CA 94016" -239478,AAA Batteries (4-pack),2,2.99,08/25/19 10:34,"137 Cedar St, Boston, MA 02215" -239479,USB-C Charging Cable,1,11.95,08/29/19 13:54,"442 5th St, San Francisco, CA 94016" -239480,20in Monitor,1,109.99,08/20/19 18:37,"345 Jackson St, Atlanta, GA 30301" -239481,Lightning Charging Cable,2,14.95,08/03/19 22:34,"780 Center St, Portland, OR 97035" -239482,Lightning Charging Cable,1,14.95,08/18/19 14:21,"53 Washington St, Seattle, WA 98101" -239483,27in 4K Gaming Monitor,1,389.99,08/07/19 14:40,"362 Forest St, Seattle, WA 98101" -239484,Lightning Charging Cable,1,14.95,08/27/19 11:14,"733 Main St, Los Angeles, CA 90001" -239485,34in Ultrawide Monitor,1,379.99,08/21/19 14:11,"866 Johnson St, San Francisco, CA 94016" -239486,27in 4K Gaming Monitor,1,389.99,08/16/19 10:46,"551 Wilson St, Portland, OR 97035" -239487,Lightning Charging Cable,1,14.95,08/04/19 17:58,"843 4th St, San Francisco, CA 94016" -239488,AA Batteries (4-pack),1,3.84,08/02/19 20:18,"575 1st St, New York City, NY 10001" -239489,AA Batteries (4-pack),1,3.84,08/03/19 20:12,"125 Sunset St, New York City, NY 10001" -239490,Apple Airpods Headphones,1,150,08/07/19 19:30,"774 4th St, Los Angeles, CA 90001" -239491,AA Batteries (4-pack),1,3.84,08/08/19 14:09,"783 Washington St, New York City, NY 10001" -239492,USB-C Charging Cable,1,11.95,08/08/19 21:53,"7 Jefferson St, Los Angeles, CA 90001" -239493,AA Batteries (4-pack),2,3.84,08/08/19 23:13,"191 Spruce St, New York City, NY 10001" -239494,34in Ultrawide Monitor,1,379.99,08/28/19 17:16,"600 13th St, Boston, MA 02215" -239495,Wired Headphones,2,11.99,08/01/19 17:27,"949 1st St, Los Angeles, CA 90001" -239496,AA Batteries (4-pack),1,3.84,08/17/19 17:53,"257 Walnut St, Los Angeles, CA 90001" -239497,AA Batteries (4-pack),2,3.84,08/11/19 13:58,"166 Forest St, Los Angeles, CA 90001" -239498,AA Batteries (4-pack),2,3.84,08/19/19 21:07,"961 Spruce St, San Francisco, CA 94016" -239499,Lightning Charging Cable,1,14.95,08/13/19 23:12,"949 Willow St, Los Angeles, CA 90001" -239500,20in Monitor,1,109.99,08/20/19 18:52,"101 Cedar St, Seattle, WA 98101" -239501,USB-C Charging Cable,1,11.95,08/03/19 09:51,"527 Church St, Seattle, WA 98101" -239502,20in Monitor,1,109.99,08/09/19 14:50,"935 Willow St, Seattle, WA 98101" -239503,USB-C Charging Cable,1,11.95,08/21/19 02:21,"879 Dogwood St, Atlanta, GA 30301" -239504,AA Batteries (4-pack),1,3.84,08/21/19 18:34,"453 Spruce St, Los Angeles, CA 90001" -239505,AA Batteries (4-pack),1,3.84,08/15/19 23:07,"190 Spruce St, Atlanta, GA 30301" -239506,AAA Batteries (4-pack),1,2.99,08/18/19 13:05,"919 8th St, New York City, NY 10001" -239507,27in FHD Monitor,1,149.99,08/27/19 12:45,"754 Meadow St, Portland, OR 97035" -239508,Apple Airpods Headphones,1,150,08/15/19 18:19,"908 Adams St, New York City, NY 10001" -239509,AA Batteries (4-pack),1,3.84,08/04/19 20:14,"516 8th St, Los Angeles, CA 90001" -239510,iPhone,1,700,08/22/19 13:53,"434 1st St, San Francisco, CA 94016" -239511,27in 4K Gaming Monitor,1,389.99,08/06/19 12:44,"15 Maple St, Seattle, WA 98101" -239512,USB-C Charging Cable,1,11.95,08/07/19 04:46,"375 Walnut St, Portland, OR 97035" -239513,USB-C Charging Cable,1,11.95,08/20/19 13:47,"841 Willow St, Portland, ME 04101" -239514,Macbook Pro Laptop,1,1700,08/27/19 11:26,"376 Church St, San Francisco, CA 94016" -239515,Bose SoundSport Headphones,1,99.99,08/06/19 20:47,"937 Washington St, Seattle, WA 98101" -239516,Bose SoundSport Headphones,1,99.99,08/08/19 18:15,"702 7th St, Atlanta, GA 30301" -239517,Vareebadd Phone,1,400,08/21/19 15:25,"320 West St, New York City, NY 10001" -239518,ThinkPad Laptop,1,999.99,08/11/19 17:41,"654 Wilson St, San Francisco, CA 94016" -239519,Vareebadd Phone,1,400,08/25/19 16:10,"892 Highland St, Boston, MA 02215" -239520,Wired Headphones,1,11.99,08/03/19 18:08,"642 South St, Boston, MA 02215" -239521,Bose SoundSport Headphones,1,99.99,08/17/19 06:34,"216 Lake St, Los Angeles, CA 90001" -239522,Flatscreen TV,1,300,08/06/19 14:38,"855 Meadow St, Portland, ME 04101" -239523,AAA Batteries (4-pack),2,2.99,08/11/19 17:08,"949 Forest St, Austin, TX 73301" -239524,Lightning Charging Cable,1,14.95,08/01/19 11:35,"90 Willow St, San Francisco, CA 94016" -239525,Lightning Charging Cable,1,14.95,08/18/19 07:29,"719 Wilson St, San Francisco, CA 94016" -239526,AAA Batteries (4-pack),1,2.99,08/10/19 14:23,"129 7th St, Austin, TX 73301" -239527,Apple Airpods Headphones,1,150,08/03/19 12:03,"351 Johnson St, San Francisco, CA 94016" -239528,34in Ultrawide Monitor,1,379.99,08/06/19 11:54,"889 2nd St, Portland, OR 97035" -239529,ThinkPad Laptop,1,999.99,08/31/19 10:21,"987 8th St, Dallas, TX 75001" -239530,Wired Headphones,1,11.99,08/09/19 12:01,"396 2nd St, Atlanta, GA 30301" -239531,27in FHD Monitor,1,149.99,08/13/19 17:38,"61 Pine St, Dallas, TX 75001" -239532,27in 4K Gaming Monitor,1,389.99,08/27/19 18:29,"555 Main St, Los Angeles, CA 90001" -239533,AAA Batteries (4-pack),1,2.99,08/30/19 23:11,"75 Jefferson St, Dallas, TX 75001" -239534,Macbook Pro Laptop,1,1700,08/01/19 12:30,"923 Johnson St, Austin, TX 73301" -239535,AAA Batteries (4-pack),2,2.99,08/25/19 18:21,"276 Church St, Atlanta, GA 30301" -239536,27in 4K Gaming Monitor,1,389.99,08/20/19 14:35,"881 Spruce St, San Francisco, CA 94016" -239537,AAA Batteries (4-pack),1,2.99,08/08/19 09:16,"823 Madison St, Atlanta, GA 30301" -239538,Flatscreen TV,1,300,08/11/19 19:10,"483 West St, Dallas, TX 75001" -239539,34in Ultrawide Monitor,1,379.99,08/30/19 15:49,"330 Forest St, San Francisco, CA 94016" -239540,AA Batteries (4-pack),1,3.84,08/31/19 15:07,"724 Forest St, New York City, NY 10001" -239541,Flatscreen TV,1,300,08/08/19 14:59,"20 2nd St, New York City, NY 10001" -239542,Lightning Charging Cable,1,14.95,08/16/19 12:27,"521 Park St, Boston, MA 02215" -239543,iPhone,1,700,08/11/19 15:37,"801 13th St, Dallas, TX 75001" -239544,34in Ultrawide Monitor,1,379.99,08/02/19 13:10,"801 5th St, San Francisco, CA 94016" -239545,27in FHD Monitor,1,149.99,08/21/19 22:27,"19 11th St, Los Angeles, CA 90001" -239546,AAA Batteries (4-pack),2,2.99,08/06/19 13:01,"90 Cherry St, San Francisco, CA 94016" -239547,AA Batteries (4-pack),1,3.84,08/22/19 21:52,"210 1st St, Austin, TX 73301" -239548,Bose SoundSport Headphones,1,99.99,08/22/19 08:42,"286 14th St, New York City, NY 10001" -239549,AAA Batteries (4-pack),1,2.99,08/10/19 22:43,"67 Hill St, Portland, OR 97035" -239550,Lightning Charging Cable,1,14.95,08/15/19 09:48,"855 Wilson St, Dallas, TX 75001" -239551,Lightning Charging Cable,1,14.95,08/14/19 22:17,"276 13th St, Dallas, TX 75001" -239552,AAA Batteries (4-pack),1,2.99,08/16/19 12:38,"69 Lincoln St, Seattle, WA 98101" -239553,AA Batteries (4-pack),2,3.84,08/16/19 10:13,"327 Spruce St, Portland, OR 97035" -239554,27in 4K Gaming Monitor,1,389.99,08/03/19 12:16,"678 Ridge St, Boston, MA 02215" -239555,USB-C Charging Cable,1,11.95,08/31/19 18:30,"446 8th St, Los Angeles, CA 90001" -239556,Bose SoundSport Headphones,1,99.99,08/30/19 23:15,"895 River St, Boston, MA 02215" -239557,20in Monitor,1,109.99,08/27/19 20:10,"722 9th St, Boston, MA 02215" -239558,Flatscreen TV,1,300,08/13/19 13:17,"197 Sunset St, San Francisco, CA 94016" -239559,USB-C Charging Cable,1,11.95,08/20/19 11:20,"120 Madison St, Boston, MA 02215" -239560,USB-C Charging Cable,1,11.95,08/14/19 15:31,"131 Lakeview St, Boston, MA 02215" -239561,Wired Headphones,1,11.99,08/02/19 19:09,"259 13th St, New York City, NY 10001" -239562,Apple Airpods Headphones,2,150,08/04/19 13:02,"362 Chestnut St, New York City, NY 10001" -239563,AA Batteries (4-pack),2,3.84,08/21/19 10:23,"643 West St, Portland, OR 97035" -239564,Macbook Pro Laptop,1,1700,08/31/19 17:07,"638 14th St, San Francisco, CA 94016" -239565,iPhone,1,700,08/13/19 18:28,"844 Park St, Austin, TX 73301" -239566,20in Monitor,1,109.99,08/08/19 16:34,"711 River St, New York City, NY 10001" -239567,Wired Headphones,1,11.99,08/30/19 23:31,"487 River St, Seattle, WA 98101" -239568,AAA Batteries (4-pack),2,2.99,08/08/19 13:51,"409 Forest St, Austin, TX 73301" -239568,20in Monitor,1,109.99,08/08/19 13:51,"409 Forest St, Austin, TX 73301" -239569,Google Phone,1,600,08/10/19 01:21,"577 Jefferson St, San Francisco, CA 94016" -239570,LG Washing Machine,1,600.0,08/28/19 15:31,"270 Johnson St, Austin, TX 73301" -239571,AA Batteries (4-pack),1,3.84,08/02/19 22:14,"908 North St, Seattle, WA 98101" -239572,AAA Batteries (4-pack),3,2.99,08/19/19 13:51,"904 Cherry St, Austin, TX 73301" -239573,Lightning Charging Cable,1,14.95,08/17/19 15:29,"931 Lake St, Dallas, TX 75001" -239574,AA Batteries (4-pack),1,3.84,08/21/19 16:21,"908 13th St, Austin, TX 73301" -239575,27in FHD Monitor,1,149.99,08/03/19 06:04,"564 Church St, Dallas, TX 75001" -239576,Wired Headphones,1,11.99,08/18/19 21:02,"99 Elm St, Austin, TX 73301" -239577,AAA Batteries (4-pack),1,2.99,08/30/19 00:04,"311 Meadow St, San Francisco, CA 94016" -239578,AAA Batteries (4-pack),1,2.99,08/20/19 17:31,"44 Madison St, Portland, OR 97035" -239579,Bose SoundSport Headphones,1,99.99,08/03/19 14:38,"506 13th St, Los Angeles, CA 90001" -239580,iPhone,1,700,08/15/19 12:19,"83 9th St, Seattle, WA 98101" -239581,27in 4K Gaming Monitor,1,389.99,08/15/19 20:01,"373 Church St, Los Angeles, CA 90001" -239582,Lightning Charging Cable,1,14.95,08/28/19 11:13,"647 Adams St, Seattle, WA 98101" -239583,AAA Batteries (4-pack),1,2.99,08/29/19 06:13,"248 Cherry St, Austin, TX 73301" -239584,Wired Headphones,1,11.99,08/26/19 19:29,"81 1st St, Portland, OR 97035" -239585,AA Batteries (4-pack),1,3.84,08/06/19 09:02,"653 Meadow St, Portland, OR 97035" -239586,Wired Headphones,1,11.99,08/28/19 01:09,"876 Sunset St, New York City, NY 10001" -239587,AA Batteries (4-pack),1,3.84,08/10/19 12:43,"291 7th St, San Francisco, CA 94016" -239588,Wired Headphones,2,11.99,08/26/19 10:34,"822 5th St, San Francisco, CA 94016" -239589,AA Batteries (4-pack),1,3.84,08/02/19 13:21,"164 Maple St, New York City, NY 10001" -239590,AAA Batteries (4-pack),1,2.99,08/15/19 19:13,"713 North St, New York City, NY 10001" -239591,34in Ultrawide Monitor,1,379.99,08/15/19 14:05,"793 Madison St, Seattle, WA 98101" -239592,Wired Headphones,1,11.99,08/31/19 13:54,"872 Jackson St, Atlanta, GA 30301" -239593,ThinkPad Laptop,1,999.99,08/30/19 16:29,"159 14th St, New York City, NY 10001" -239594,27in FHD Monitor,1,149.99,08/28/19 14:45,"29 Lake St, Boston, MA 02215" -239595,Wired Headphones,1,11.99,08/18/19 20:27,"359 6th St, San Francisco, CA 94016" -239596,AAA Batteries (4-pack),2,2.99,08/06/19 08:32,"79 Pine St, New York City, NY 10001" -239597,USB-C Charging Cable,1,11.95,08/17/19 14:09,"31 River St, New York City, NY 10001" -239598,Apple Airpods Headphones,1,150,08/12/19 16:24,"733 9th St, Dallas, TX 75001" -239599,Bose SoundSport Headphones,1,99.99,08/09/19 19:02,"304 River St, New York City, NY 10001" -239600,AA Batteries (4-pack),2,3.84,08/13/19 13:49,"354 Park St, Seattle, WA 98101" -239601,Apple Airpods Headphones,1,150,08/24/19 08:24,"770 Maple St, Austin, TX 73301" -239602,20in Monitor,1,109.99,08/15/19 15:56,"877 Wilson St, Atlanta, GA 30301" -239603,27in FHD Monitor,1,149.99,08/02/19 09:47,"354 Chestnut St, New York City, NY 10001" -239604,Macbook Pro Laptop,1,1700,08/03/19 21:27,"733 Lincoln St, San Francisco, CA 94016" -239605,Apple Airpods Headphones,1,150,08/08/19 15:29,"647 4th St, Los Angeles, CA 90001" -239606,Apple Airpods Headphones,1,150,08/30/19 18:40,"596 7th St, Austin, TX 73301" -239607,Lightning Charging Cable,1,14.95,08/18/19 17:31,"936 Johnson St, Atlanta, GA 30301" -239608,AAA Batteries (4-pack),1,2.99,08/28/19 22:50,"97 River St, Portland, OR 97035" -239609,Lightning Charging Cable,1,14.95,08/02/19 21:07,"656 Ridge St, Seattle, WA 98101" -239610,Wired Headphones,1,11.99,08/27/19 16:08,"126 1st St, Seattle, WA 98101" -239611,Macbook Pro Laptop,1,1700,08/14/19 08:03,"817 Cedar St, Los Angeles, CA 90001" -239612,AA Batteries (4-pack),1,3.84,08/10/19 17:07,"704 Park St, Los Angeles, CA 90001" -239613,AA Batteries (4-pack),2,3.84,08/22/19 15:24,"846 Jefferson St, Atlanta, GA 30301" -239614,27in 4K Gaming Monitor,1,389.99,08/19/19 12:46,"798 Lakeview St, New York City, NY 10001" -239615,Flatscreen TV,1,300,08/24/19 21:49,"454 Highland St, San Francisco, CA 94016" -239616,Macbook Pro Laptop,1,1700,08/21/19 09:49,"88 Chestnut St, Dallas, TX 75001" -239617,AAA Batteries (4-pack),2,2.99,08/15/19 07:40,"471 Sunset St, Seattle, WA 98101" -239618,iPhone,1,700,08/19/19 14:04,"549 Jefferson St, Seattle, WA 98101" -239619,AAA Batteries (4-pack),1,2.99,08/26/19 19:39,"485 Lake St, New York City, NY 10001" -239620,USB-C Charging Cable,1,11.95,08/16/19 20:02,"127 Center St, San Francisco, CA 94016" -239621,27in 4K Gaming Monitor,1,389.99,08/31/19 17:15,"691 Willow St, San Francisco, CA 94016" -239622,34in Ultrawide Monitor,1,379.99,08/02/19 13:56,"700 Meadow St, Boston, MA 02215" -239623,Wired Headphones,1,11.99,08/21/19 11:41,"768 7th St, New York City, NY 10001" -239624,AA Batteries (4-pack),1,3.84,08/27/19 14:48,"72 Johnson St, Atlanta, GA 30301" -239625,AA Batteries (4-pack),2,3.84,08/25/19 19:12,"526 Walnut St, Dallas, TX 75001" -239626,USB-C Charging Cable,1,11.95,08/27/19 09:06,"652 Dogwood St, Los Angeles, CA 90001" -239627,AA Batteries (4-pack),2,3.84,08/04/19 13:54,"8 13th St, Dallas, TX 75001" -239628,USB-C Charging Cable,1,11.95,08/23/19 06:26,"188 River St, Portland, ME 04101" -239629,USB-C Charging Cable,1,11.95,08/26/19 09:46,"742 Park St, Los Angeles, CA 90001" -239630,USB-C Charging Cable,1,11.95,08/27/19 11:42,"660 Adams St, Portland, OR 97035" -239631,Apple Airpods Headphones,1,150,08/29/19 11:51,"497 Highland St, New York City, NY 10001" -239632,AAA Batteries (4-pack),1,2.99,08/09/19 21:12,"58 6th St, New York City, NY 10001" -239633,LG Washing Machine,1,600.0,08/16/19 18:41,"542 12th St, Seattle, WA 98101" -239634,27in 4K Gaming Monitor,1,389.99,08/07/19 17:13,"553 Dogwood St, San Francisco, CA 94016" -239635,AAA Batteries (4-pack),3,2.99,08/09/19 21:02,"432 10th St, New York City, NY 10001" -239636,Bose SoundSport Headphones,1,99.99,08/30/19 12:23,"585 Maple St, Dallas, TX 75001" -239637,27in FHD Monitor,1,149.99,08/28/19 14:25,"822 Park St, Los Angeles, CA 90001" -239638,Apple Airpods Headphones,1,150,08/11/19 16:49,"225 Jefferson St, San Francisco, CA 94016" -239639,Lightning Charging Cable,1,14.95,08/26/19 11:10,"961 10th St, Dallas, TX 75001" -239640,USB-C Charging Cable,2,11.95,08/13/19 12:32,"62 Cedar St, San Francisco, CA 94016" -239641,USB-C Charging Cable,1,11.95,08/30/19 15:38,"911 West St, Boston, MA 02215" -239642,Wired Headphones,1,11.99,08/25/19 14:14,"400 West St, San Francisco, CA 94016" -239643,Lightning Charging Cable,1,14.95,08/27/19 11:09,"872 River St, New York City, NY 10001" -239644,Apple Airpods Headphones,1,150,08/11/19 15:53,"326 South St, Portland, OR 97035" -239645,LG Washing Machine,1,600.0,08/06/19 20:54,"795 Dogwood St, San Francisco, CA 94016" -239646,AAA Batteries (4-pack),1,2.99,08/15/19 18:44,"744 Lake St, Boston, MA 02215" -239647,Lightning Charging Cable,1,14.95,08/22/19 08:33,"899 Meadow St, San Francisco, CA 94016" -239648,27in FHD Monitor,1,149.99,08/08/19 03:23,"961 Lakeview St, Portland, ME 04101" -239649,34in Ultrawide Monitor,1,379.99,08/10/19 02:57,"514 Madison St, Dallas, TX 75001" -239650,Vareebadd Phone,1,400,08/02/19 22:05,"241 14th St, San Francisco, CA 94016" -239651,Wired Headphones,1,11.99,08/06/19 20:21,"797 11th St, Austin, TX 73301" -239652,27in 4K Gaming Monitor,1,389.99,08/04/19 09:56,"935 9th St, San Francisco, CA 94016" -239653,AAA Batteries (4-pack),1,2.99,08/15/19 22:51,"275 Johnson St, San Francisco, CA 94016" -239654,Apple Airpods Headphones,1,150,08/15/19 22:26,"259 Willow St, Boston, MA 02215" -239655,Wired Headphones,1,11.99,08/09/19 22:57,"732 12th St, Los Angeles, CA 90001" -239656,Google Phone,1,600,08/15/19 11:40,"432 7th St, San Francisco, CA 94016" -239657,Lightning Charging Cable,2,14.95,08/13/19 19:31,"321 Church St, Atlanta, GA 30301" -239658,Lightning Charging Cable,1,14.95,08/05/19 22:15,"275 Willow St, Austin, TX 73301" -239659,AA Batteries (4-pack),1,3.84,08/05/19 23:30,"383 Center St, Los Angeles, CA 90001" -239659,AA Batteries (4-pack),4,3.84,08/05/19 23:30,"383 Center St, Los Angeles, CA 90001" -239660,Lightning Charging Cable,1,14.95,08/19/19 17:53,"89 Center St, Dallas, TX 75001" -239661,Wired Headphones,1,11.99,08/22/19 06:32,"245 Jefferson St, Dallas, TX 75001" -239662,Apple Airpods Headphones,1,150,08/27/19 15:54,"463 Park St, Atlanta, GA 30301" -239663,Apple Airpods Headphones,1,150,08/28/19 06:59,"274 Johnson St, San Francisco, CA 94016" -239664,Wired Headphones,1,11.99,08/22/19 23:09,"14 Center St, San Francisco, CA 94016" -,,,,, -239665,Wired Headphones,1,11.99,08/01/19 12:36,"728 Center St, New York City, NY 10001" -239666,Bose SoundSport Headphones,1,99.99,08/29/19 15:42,"507 Highland St, Portland, OR 97035" -239667,AAA Batteries (4-pack),1,2.99,08/19/19 16:57,"122 13th St, Boston, MA 02215" -239668,27in 4K Gaming Monitor,1,389.99,08/28/19 14:54,"538 Sunset St, San Francisco, CA 94016" -239669,iPhone,1,700,08/03/19 20:17,"551 Cherry St, Los Angeles, CA 90001" -239670,34in Ultrawide Monitor,1,379.99,08/01/19 11:01,"309 4th St, Boston, MA 02215" -239671,USB-C Charging Cable,1,11.95,08/06/19 18:16,"685 Hill St, Portland, OR 97035" -239672,iPhone,1,700,08/25/19 11:53,"857 Center St, Los Angeles, CA 90001" -239673,Lightning Charging Cable,1,14.95,08/15/19 21:51,"710 Walnut St, Boston, MA 02215" -239674,Lightning Charging Cable,1,14.95,08/13/19 21:25,"586 8th St, Dallas, TX 75001" -239675,Apple Airpods Headphones,1,150,08/23/19 20:47,"296 5th St, San Francisco, CA 94016" -239676,27in 4K Gaming Monitor,1,389.99,08/14/19 20:08,"437 Lincoln St, Portland, ME 04101" -239677,Bose SoundSport Headphones,1,99.99,08/31/19 19:37,"873 Cedar St, San Francisco, CA 94016" -239678,Lightning Charging Cable,1,14.95,08/21/19 18:46,"911 Ridge St, Seattle, WA 98101" -239679,Wired Headphones,2,11.99,08/01/19 15:42,"757 Center St, Seattle, WA 98101" -239680,Apple Airpods Headphones,1,150,08/20/19 20:30,"564 Center St, Boston, MA 02215" -239681,Bose SoundSport Headphones,1,99.99,08/09/19 09:57,"173 Park St, Seattle, WA 98101" -239682,AAA Batteries (4-pack),1,2.99,08/22/19 16:01,"620 Washington St, Seattle, WA 98101" -239683,Wired Headphones,1,11.99,08/15/19 03:20,"735 Forest St, Boston, MA 02215" -239684,Vareebadd Phone,1,400,08/08/19 19:45,"388 Adams St, San Francisco, CA 94016" -239685,Vareebadd Phone,1,400,08/01/19 20:55,"85 9th St, New York City, NY 10001" -239686,AAA Batteries (4-pack),2,2.99,08/06/19 07:43,"593 South St, Dallas, TX 75001" -239687,USB-C Charging Cable,1,11.95,08/08/19 08:56,"910 Maple St, San Francisco, CA 94016" -239688,Google Phone,1,600,08/18/19 19:59,"473 14th St, Los Angeles, CA 90001" -239689,Lightning Charging Cable,1,14.95,08/31/19 09:24,"879 Jackson St, Boston, MA 02215" -239690,Bose SoundSport Headphones,1,99.99,08/07/19 17:39,"940 14th St, Portland, OR 97035" -239691,Apple Airpods Headphones,1,150,08/22/19 19:22,"516 Spruce St, Los Angeles, CA 90001" -239692,AAA Batteries (4-pack),1,2.99,08/12/19 08:56,"407 Cherry St, Los Angeles, CA 90001" -239693,AA Batteries (4-pack),1,3.84,08/15/19 22:48,"353 Main St, New York City, NY 10001" -239694,USB-C Charging Cable,1,11.95,08/31/19 13:23,"237 Main St, Boston, MA 02215" -239695,Wired Headphones,2,11.99,08/01/19 18:46,"712 Meadow St, Atlanta, GA 30301" -239696,AA Batteries (4-pack),1,3.84,08/11/19 08:46,"830 Washington St, Atlanta, GA 30301" -239697,USB-C Charging Cable,1,11.95,08/25/19 23:10,"901 Hill St, San Francisco, CA 94016" -239698,Google Phone,1,600,08/14/19 14:28,"483 Chestnut St, Los Angeles, CA 90001" -239699,Macbook Pro Laptop,1,1700,08/04/19 23:14,"150 Willow St, Dallas, TX 75001" -239700,Apple Airpods Headphones,1,150,08/01/19 19:40,"462 Cedar St, New York City, NY 10001" -239701,27in 4K Gaming Monitor,1,389.99,08/18/19 10:35,"741 5th St, Austin, TX 73301" -239702,Bose SoundSport Headphones,1,99.99,08/08/19 19:06,"319 Hill St, Dallas, TX 75001" -239703,Macbook Pro Laptop,1,1700,08/22/19 18:04,"618 7th St, Seattle, WA 98101" -239704,Bose SoundSport Headphones,1,99.99,08/27/19 16:05,"842 Chestnut St, New York City, NY 10001" -239705,34in Ultrawide Monitor,1,379.99,08/17/19 14:25,"345 Center St, San Francisco, CA 94016" -239706,34in Ultrawide Monitor,1,379.99,08/29/19 13:36,"616 Hill St, Los Angeles, CA 90001" -239707,LG Washing Machine,1,600.0,08/10/19 22:55,"330 Willow St, Portland, OR 97035" -239708,Bose SoundSport Headphones,1,99.99,08/05/19 13:54,"102 Cherry St, Seattle, WA 98101" -239709,Bose SoundSport Headphones,1,99.99,08/09/19 08:06,"352 Dogwood St, San Francisco, CA 94016" -239710,34in Ultrawide Monitor,1,379.99,08/30/19 18:27,"862 Maple St, San Francisco, CA 94016" -239711,34in Ultrawide Monitor,1,379.99,08/28/19 11:14,"330 Hill St, Seattle, WA 98101" -239712,34in Ultrawide Monitor,1,379.99,08/25/19 10:51,"758 4th St, San Francisco, CA 94016" -239713,USB-C Charging Cable,1,11.95,08/24/19 14:05,"667 8th St, Austin, TX 73301" -239714,USB-C Charging Cable,1,11.95,08/24/19 10:24,"470 Madison St, Seattle, WA 98101" -239715,Google Phone,1,600,08/19/19 21:29,"478 Cedar St, San Francisco, CA 94016" -239716,Flatscreen TV,1,300,08/20/19 01:37,"454 6th St, Los Angeles, CA 90001" -239717,iPhone,1,700,08/04/19 18:56,"425 9th St, New York City, NY 10001" -239718,Bose SoundSport Headphones,1,99.99,08/21/19 08:02,"558 River St, Dallas, TX 75001" -239719,AA Batteries (4-pack),1,3.84,08/30/19 21:33,"557 West St, New York City, NY 10001" -239720,USB-C Charging Cable,1,11.95,08/28/19 12:44,"32 Ridge St, Los Angeles, CA 90001" -239721,AA Batteries (4-pack),1,3.84,08/27/19 11:03,"891 Sunset St, New York City, NY 10001" -239722,USB-C Charging Cable,1,11.95,08/12/19 14:20,"139 Wilson St, San Francisco, CA 94016" -239723,USB-C Charging Cable,1,11.95,08/21/19 14:30,"422 Main St, New York City, NY 10001" -239724,Macbook Pro Laptop,1,1700,08/01/19 15:07,"779 10th St, New York City, NY 10001" -239725,AAA Batteries (4-pack),4,2.99,08/26/19 15:54,"381 Meadow St, New York City, NY 10001" -239726,27in 4K Gaming Monitor,1,389.99,08/23/19 16:20,"83 8th St, Seattle, WA 98101" -239727,USB-C Charging Cable,1,11.95,08/27/19 11:53,"638 Meadow St, Boston, MA 02215" -239728,AAA Batteries (4-pack),1,2.99,08/31/19 18:19,"14 Elm St, San Francisco, CA 94016" -239729,USB-C Charging Cable,1,11.95,08/16/19 11:23,"280 13th St, Atlanta, GA 30301" -239730,Macbook Pro Laptop,1,1700,08/29/19 06:40,"63 9th St, Los Angeles, CA 90001" -239731,iPhone,1,700,08/03/19 20:16,"605 Main St, San Francisco, CA 94016" -239732,Lightning Charging Cable,1,14.95,08/31/19 16:33,"749 Main St, Portland, OR 97035" -239733,AA Batteries (4-pack),1,3.84,08/14/19 14:13,"494 Main St, Seattle, WA 98101" -239734,USB-C Charging Cable,1,11.95,08/10/19 14:09,"933 Hill St, Seattle, WA 98101" -239735,AA Batteries (4-pack),2,3.84,08/02/19 16:22,"979 Forest St, Los Angeles, CA 90001" -239736,Apple Airpods Headphones,1,150,08/04/19 22:57,"829 Chestnut St, Seattle, WA 98101" -239737,Apple Airpods Headphones,1,150,08/08/19 11:16,"798 Cedar St, Portland, OR 97035" -239737,USB-C Charging Cable,1,11.95,08/08/19 11:16,"798 Cedar St, Portland, OR 97035" -239738,27in FHD Monitor,1,149.99,08/25/19 14:54,"557 Jefferson St, San Francisco, CA 94016" -239739,iPhone,1,700,08/07/19 15:47,"786 Jackson St, Los Angeles, CA 90001" -239739,Apple Airpods Headphones,1,150,08/07/19 15:47,"786 Jackson St, Los Angeles, CA 90001" -239740,Lightning Charging Cable,1,14.95,08/10/19 14:27,"444 Washington St, Dallas, TX 75001" -239741,Lightning Charging Cable,1,14.95,08/03/19 16:46,"145 12th St, Portland, OR 97035" -239742,Lightning Charging Cable,1,14.95,08/15/19 15:56,"465 Maple St, Dallas, TX 75001" -239742,iPhone,1,700,08/15/19 15:56,"465 Maple St, Dallas, TX 75001" -239743,AA Batteries (4-pack),1,3.84,08/12/19 10:06,"659 Cherry St, Portland, OR 97035" -239744,AAA Batteries (4-pack),1,2.99,08/16/19 21:50,"945 Willow St, San Francisco, CA 94016" -239745,AA Batteries (4-pack),2,3.84,08/06/19 19:01,"164 Wilson St, Portland, ME 04101" -239746,Wired Headphones,1,11.99,08/09/19 17:50,"728 Spruce St, San Francisco, CA 94016" -239747,AAA Batteries (4-pack),1,2.99,08/07/19 20:06,"562 12th St, Boston, MA 02215" -239748,Wired Headphones,1,11.99,08/06/19 21:34,"343 Park St, San Francisco, CA 94016" -239749,Macbook Pro Laptop,1,1700,08/05/19 15:08,"671 1st St, San Francisco, CA 94016" -239750,Wired Headphones,1,11.99,08/02/19 00:51,"12 South St, Los Angeles, CA 90001" -239751,27in FHD Monitor,1,149.99,08/09/19 12:47,"583 Hickory St, San Francisco, CA 94016" -239752,USB-C Charging Cable,1,11.95,08/11/19 10:59,"518 2nd St, San Francisco, CA 94016" -239753,iPhone,1,700,08/31/19 12:59,"110 Walnut St, Boston, MA 02215" -239753,Lightning Charging Cable,1,14.95,08/31/19 12:59,"110 Walnut St, Boston, MA 02215" -239754,Lightning Charging Cable,1,14.95,08/09/19 23:24,"73 Maple St, San Francisco, CA 94016" -239755,Lightning Charging Cable,1,14.95,08/05/19 23:11,"207 Chestnut St, New York City, NY 10001" -239756,Lightning Charging Cable,1,14.95,08/25/19 05:48,"63 Main St, Dallas, TX 75001" -239757,27in 4K Gaming Monitor,1,389.99,08/27/19 14:54,"19 Elm St, Portland, ME 04101" -239758,iPhone,1,700,08/28/19 07:25,"625 Wilson St, San Francisco, CA 94016" -239759,Google Phone,1,600,08/23/19 18:30,"543 Cherry St, New York City, NY 10001" -239760,AA Batteries (4-pack),1,3.84,08/24/19 12:25,"796 Chestnut St, San Francisco, CA 94016" -239761,Wired Headphones,1,11.99,08/02/19 16:24,"713 Washington St, New York City, NY 10001" -239762,Lightning Charging Cable,2,14.95,08/11/19 15:26,"925 Lake St, Portland, OR 97035" -239763,27in FHD Monitor,1,149.99,08/11/19 21:43,"946 Chestnut St, Boston, MA 02215" -239764,AA Batteries (4-pack),1,3.84,08/23/19 11:44,"839 Adams St, New York City, NY 10001" -239765,Wired Headphones,1,11.99,08/13/19 10:21,"528 7th St, Dallas, TX 75001" -239766,34in Ultrawide Monitor,1,379.99,08/05/19 10:31,"629 Ridge St, Boston, MA 02215" -239767,AA Batteries (4-pack),1,3.84,08/17/19 19:51,"182 North St, Los Angeles, CA 90001" -239768,AA Batteries (4-pack),2,3.84,08/26/19 01:51,"459 8th St, Dallas, TX 75001" -239769,Lightning Charging Cable,1,14.95,08/19/19 07:20,"376 Cherry St, Los Angeles, CA 90001" -239770,Bose SoundSport Headphones,1,99.99,08/27/19 11:32,"877 South St, Austin, TX 73301" -239771,Bose SoundSport Headphones,1,99.99,08/29/19 23:08,"947 10th St, New York City, NY 10001" -239772,Bose SoundSport Headphones,1,99.99,08/23/19 15:04,"57 2nd St, New York City, NY 10001" -239773,Lightning Charging Cable,1,14.95,08/26/19 23:43,"152 Park St, Austin, TX 73301" -239774,Bose SoundSport Headphones,1,99.99,08/26/19 20:18,"221 6th St, Dallas, TX 75001" -239775,Lightning Charging Cable,1,14.95,08/12/19 15:52,"590 Elm St, San Francisco, CA 94016" -239776,Flatscreen TV,1,300,08/25/19 11:59,"748 Ridge St, San Francisco, CA 94016" -239777,AA Batteries (4-pack),3,3.84,08/14/19 18:05,"314 Walnut St, Boston, MA 02215" -239778,USB-C Charging Cable,1,11.95,08/28/19 23:24,"297 West St, Boston, MA 02215" -239779,34in Ultrawide Monitor,1,379.99,08/09/19 09:00,"372 5th St, Boston, MA 02215" -239780,Macbook Pro Laptop,1,1700,08/10/19 18:37,"251 Meadow St, Atlanta, GA 30301" -239781,Apple Airpods Headphones,1,150,08/12/19 20:09,"780 7th St, New York City, NY 10001" -239782,Wired Headphones,1,11.99,08/24/19 08:34,"533 Wilson St, Seattle, WA 98101" -239783,USB-C Charging Cable,1,11.95,08/26/19 09:32,"153 2nd St, Portland, OR 97035" -239784,AAA Batteries (4-pack),1,2.99,08/10/19 10:53,"814 8th St, San Francisco, CA 94016" -239785,Wired Headphones,1,11.99,08/16/19 11:40,"401 14th St, Boston, MA 02215" -239786,USB-C Charging Cable,1,11.95,08/27/19 12:40,"193 South St, New York City, NY 10001" -239787,AAA Batteries (4-pack),1,2.99,08/18/19 14:53,"925 Walnut St, Dallas, TX 75001" -239788,USB-C Charging Cable,1,11.95,08/12/19 21:53,"876 Adams St, San Francisco, CA 94016" -239789,USB-C Charging Cable,1,11.95,08/04/19 15:22,"948 13th St, Boston, MA 02215" -239790,Lightning Charging Cable,2,14.95,08/30/19 19:18,"799 11th St, San Francisco, CA 94016" -239791,27in FHD Monitor,1,149.99,08/31/19 19:24,"103 Jackson St, New York City, NY 10001" -239792,Apple Airpods Headphones,1,150,08/11/19 14:10,"361 Park St, Boston, MA 02215" -239793,Bose SoundSport Headphones,1,99.99,08/12/19 14:57,"41 9th St, New York City, NY 10001" -239794,Bose SoundSport Headphones,1,99.99,08/22/19 07:32,"896 Park St, Los Angeles, CA 90001" -239795,AAA Batteries (4-pack),1,2.99,08/20/19 22:38,"771 8th St, Dallas, TX 75001" -239796,Bose SoundSport Headphones,1,99.99,08/20/19 19:28,"840 8th St, Boston, MA 02215" -239797,Wired Headphones,1,11.99,08/22/19 13:41,"591 Church St, Austin, TX 73301" -239798,AAA Batteries (4-pack),1,2.99,08/30/19 10:49,"398 Jefferson St, Atlanta, GA 30301" -239799,27in 4K Gaming Monitor,1,389.99,08/17/19 15:35,"616 Walnut St, San Francisco, CA 94016" -239800,Bose SoundSport Headphones,1,99.99,08/16/19 22:26,"420 7th St, Boston, MA 02215" -239801,iPhone,1,700,08/09/19 19:15,"511 8th St, San Francisco, CA 94016" -239802,iPhone,1,700,08/21/19 09:53,"729 Wilson St, San Francisco, CA 94016" -239803,AAA Batteries (4-pack),1,2.99,08/09/19 06:23,"624 Lincoln St, Portland, OR 97035" -239804,AA Batteries (4-pack),2,3.84,08/09/19 13:34,"157 Spruce St, San Francisco, CA 94016" -239805,27in 4K Gaming Monitor,1,389.99,08/25/19 14:33,"219 Lincoln St, New York City, NY 10001" -239806,AAA Batteries (4-pack),1,2.99,08/11/19 13:17,"289 Jackson St, San Francisco, CA 94016" -239807,Lightning Charging Cable,1,14.95,08/28/19 08:43,"208 5th St, Boston, MA 02215" -239808,Lightning Charging Cable,1,14.95,08/13/19 19:27,"749 Sunset St, San Francisco, CA 94016" -239809,Apple Airpods Headphones,1,150,08/16/19 22:31,"570 6th St, Boston, MA 02215" -239810,AA Batteries (4-pack),2,3.84,08/09/19 19:38,"365 Lakeview St, San Francisco, CA 94016" -239811,27in FHD Monitor,1,149.99,08/02/19 20:10,"246 1st St, New York City, NY 10001" -239812,20in Monitor,1,109.99,08/03/19 12:13,"838 Hill St, New York City, NY 10001" -239813,Macbook Pro Laptop,1,1700,08/31/19 15:35,"837 Washington St, Los Angeles, CA 90001" -239814,Apple Airpods Headphones,1,150,08/22/19 19:10,"524 Center St, Los Angeles, CA 90001" -239815,Wired Headphones,1,11.99,08/27/19 19:36,"266 Forest St, Portland, OR 97035" -239816,Apple Airpods Headphones,1,150,08/09/19 13:06,"692 Walnut St, San Francisco, CA 94016" -239817,AA Batteries (4-pack),1,3.84,08/12/19 22:57,"247 Johnson St, San Francisco, CA 94016" -239818,Lightning Charging Cable,1,14.95,08/07/19 02:12,"593 8th St, Dallas, TX 75001" -239819,AAA Batteries (4-pack),1,2.99,08/07/19 23:07,"812 Sunset St, Boston, MA 02215" -239820,AA Batteries (4-pack),2,3.84,08/05/19 16:16,"732 Forest St, San Francisco, CA 94016" -239821,34in Ultrawide Monitor,1,379.99,08/19/19 11:38,"25 Ridge St, Boston, MA 02215" -239822,Lightning Charging Cable,1,14.95,08/28/19 03:05,"924 Washington St, Los Angeles, CA 90001" -239823,Apple Airpods Headphones,1,150,08/18/19 12:06,"351 12th St, Dallas, TX 75001" -239824,AA Batteries (4-pack),1,3.84,08/22/19 18:24,"510 2nd St, Boston, MA 02215" -239825,iPhone,1,700,08/01/19 10:17,"740 Church St, Atlanta, GA 30301" -239826,Google Phone,1,600,08/31/19 13:13,"621 Hill St, Austin, TX 73301" -239827,AA Batteries (4-pack),1,3.84,08/20/19 18:56,"296 Elm St, New York City, NY 10001" -239828,AA Batteries (4-pack),1,3.84,08/18/19 16:30,"323 Pine St, Boston, MA 02215" -239829,ThinkPad Laptop,1,999.99,08/14/19 18:08,"508 Lincoln St, San Francisco, CA 94016" -239830,AAA Batteries (4-pack),1,2.99,08/31/19 08:04,"376 Main St, San Francisco, CA 94016" -239831,Flatscreen TV,1,300,08/07/19 12:45,"830 Lincoln St, Portland, OR 97035" -239832,Wired Headphones,1,11.99,08/10/19 22:50,"458 Madison St, Los Angeles, CA 90001" -239833,Google Phone,1,600,08/30/19 14:08,"560 12th St, San Francisco, CA 94016" -239834,USB-C Charging Cable,1,11.95,08/06/19 10:04,"600 South St, Portland, OR 97035" -239835,Wired Headphones,1,11.99,08/07/19 19:15,"544 Adams St, Seattle, WA 98101" -239836,Vareebadd Phone,1,400,08/28/19 18:01,"994 Hill St, San Francisco, CA 94016" -239837,Wired Headphones,1,11.99,08/14/19 17:41,"154 Cherry St, San Francisco, CA 94016" -239838,Lightning Charging Cable,1,14.95,08/07/19 23:22,"139 Cherry St, San Francisco, CA 94016" -239839,Apple Airpods Headphones,1,150,08/13/19 10:37,"812 Wilson St, New York City, NY 10001" -239840,Macbook Pro Laptop,1,1700,08/05/19 13:09,"644 River St, New York City, NY 10001" -239841,USB-C Charging Cable,1,11.95,08/11/19 09:34,"36 Hickory St, Los Angeles, CA 90001" -239842,Lightning Charging Cable,1,14.95,08/20/19 08:02,"183 Jefferson St, Dallas, TX 75001" -239843,Lightning Charging Cable,1,14.95,08/29/19 09:33,"433 4th St, San Francisco, CA 94016" -239844,27in 4K Gaming Monitor,1,389.99,08/21/19 06:45,"53 River St, San Francisco, CA 94016" -239845,AAA Batteries (4-pack),2,2.99,08/12/19 21:30,"432 Main St, Austin, TX 73301" -239846,iPhone,1,700,08/17/19 13:32,"421 2nd St, Los Angeles, CA 90001" -239847,Lightning Charging Cable,1,14.95,08/21/19 09:30,"105 Maple St, Dallas, TX 75001" -239848,27in FHD Monitor,1,149.99,08/29/19 00:03,"107 West St, Austin, TX 73301" -239849,27in FHD Monitor,1,149.99,08/24/19 16:48,"320 South St, Atlanta, GA 30301" -239850,USB-C Charging Cable,1,11.95,08/03/19 17:19,"172 Spruce St, New York City, NY 10001" -,,,,, -239851,Apple Airpods Headphones,1,150,08/08/19 21:41,"561 Wilson St, Seattle, WA 98101" -239852,AAA Batteries (4-pack),1,2.99,08/07/19 12:22,"934 West St, Los Angeles, CA 90001" -239853,USB-C Charging Cable,2,11.95,08/29/19 18:39,"214 Main St, New York City, NY 10001" -239854,27in 4K Gaming Monitor,1,389.99,08/10/19 14:37,"204 Washington St, San Francisco, CA 94016" -239855,USB-C Charging Cable,1,11.95,08/14/19 11:53,"586 Lakeview St, Boston, MA 02215" -239856,iPhone,1,700,08/11/19 14:45,"483 River St, Atlanta, GA 30301" -239857,Apple Airpods Headphones,1,150,08/11/19 21:21,"376 8th St, Atlanta, GA 30301" -239858,USB-C Charging Cable,1,11.95,08/06/19 12:56,"826 Cherry St, New York City, NY 10001" -239859,USB-C Charging Cable,1,11.95,08/20/19 10:02,"239 Chestnut St, Los Angeles, CA 90001" -239860,USB-C Charging Cable,1,11.95,08/05/19 14:12,"185 Chestnut St, Boston, MA 02215" -239861,USB-C Charging Cable,1,11.95,08/05/19 18:29,"900 Wilson St, San Francisco, CA 94016" -239862,AAA Batteries (4-pack),1,2.99,08/23/19 20:14,"850 Madison St, San Francisco, CA 94016" -239863,Wired Headphones,1,11.99,08/02/19 10:49,"166 Dogwood St, Atlanta, GA 30301" -239864,Wired Headphones,1,11.99,08/17/19 16:21,"736 West St, New York City, NY 10001" -239865,Flatscreen TV,1,300,08/02/19 14:25,"972 Lakeview St, Portland, OR 97035" -239866,Lightning Charging Cable,1,14.95,08/29/19 10:05,"797 14th St, Boston, MA 02215" -239867,AA Batteries (4-pack),1,3.84,08/27/19 22:03,"920 Ridge St, San Francisco, CA 94016" -239868,34in Ultrawide Monitor,1,379.99,08/05/19 18:05,"83 West St, San Francisco, CA 94016" -239869,iPhone,1,700,08/06/19 21:59,"554 Adams St, San Francisco, CA 94016" -239870,Google Phone,1,600,08/09/19 12:00,"578 Church St, Los Angeles, CA 90001" -239871,AAA Batteries (4-pack),1,2.99,08/22/19 11:12,"408 Spruce St, New York City, NY 10001" -239872,Lightning Charging Cable,1,14.95,08/08/19 09:13,"336 Meadow St, Los Angeles, CA 90001" -239873,Flatscreen TV,1,300,08/13/19 15:01,"391 Wilson St, Austin, TX 73301" -239874,Flatscreen TV,1,300,08/24/19 09:43,"848 Hickory St, New York City, NY 10001" -239875,USB-C Charging Cable,1,11.95,08/30/19 13:58,"557 7th St, Seattle, WA 98101" -239876,Lightning Charging Cable,1,14.95,08/06/19 21:24,"193 10th St, Los Angeles, CA 90001" -239877,Apple Airpods Headphones,1,150,08/09/19 10:13,"136 River St, Portland, OR 97035" -239878,27in 4K Gaming Monitor,1,389.99,08/25/19 17:08,"37 Lincoln St, Seattle, WA 98101" -239879,Apple Airpods Headphones,1,150,08/29/19 12:21,"294 Lakeview St, Dallas, TX 75001" -239880,Google Phone,1,600,08/02/19 18:33,"759 11th St, San Francisco, CA 94016" -239881,AAA Batteries (4-pack),1,2.99,08/01/19 16:06,"188 Wilson St, New York City, NY 10001" -239882,iPhone,1,700,08/23/19 23:27,"579 North St, Portland, OR 97035" -239883,iPhone,1,700,08/04/19 06:45,"268 Main St, New York City, NY 10001" -239883,Lightning Charging Cable,1,14.95,08/04/19 06:45,"268 Main St, New York City, NY 10001" -239884,Apple Airpods Headphones,1,150,08/21/19 17:39,"327 Hill St, Austin, TX 73301" -239885,LG Washing Machine,1,600.0,08/21/19 17:46,"159 West St, Boston, MA 02215" -239886,AAA Batteries (4-pack),1,2.99,08/07/19 18:27,"100 Jackson St, Seattle, WA 98101" -239887,34in Ultrawide Monitor,1,379.99,08/01/19 20:42,"207 Chestnut St, San Francisco, CA 94016" -239888,AA Batteries (4-pack),1,3.84,08/13/19 18:16,"637 Hill St, Austin, TX 73301" -239889,Bose SoundSport Headphones,1,99.99,08/14/19 14:01,"714 Jefferson St, Los Angeles, CA 90001" -239890,Wired Headphones,1,11.99,08/24/19 17:22,"927 11th St, Boston, MA 02215" -239891,AA Batteries (4-pack),2,3.84,08/07/19 09:41,"763 Wilson St, Los Angeles, CA 90001" -239892,AA Batteries (4-pack),1,3.84,08/12/19 17:58,"623 Meadow St, Dallas, TX 75001" -239893,Wired Headphones,2,11.99,08/02/19 15:53,"479 2nd St, San Francisco, CA 94016" -239894,AA Batteries (4-pack),1,3.84,08/14/19 13:10,"968 Jefferson St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -239895,USB-C Charging Cable,1,11.95,08/14/19 20:50,"128 Wilson St, Portland, OR 97035" -239896,USB-C Charging Cable,1,11.95,08/18/19 18:52,"298 Hickory St, Los Angeles, CA 90001" -239897,AAA Batteries (4-pack),1,2.99,08/24/19 18:16,"662 10th St, Dallas, TX 75001" -239898,Wired Headphones,1,11.99,08/18/19 17:22,"519 Washington St, San Francisco, CA 94016" -239899,AA Batteries (4-pack),1,3.84,08/31/19 05:56,"120 12th St, San Francisco, CA 94016" -239900,Lightning Charging Cable,2,14.95,08/07/19 11:15,"969 Center St, Los Angeles, CA 90001" -239901,AA Batteries (4-pack),1,3.84,08/28/19 14:53,"594 Hickory St, Boston, MA 02215" -239902,Flatscreen TV,1,300,08/28/19 11:37,"963 Church St, San Francisco, CA 94016" -239903,AA Batteries (4-pack),1,3.84,08/15/19 10:49,"229 Church St, San Francisco, CA 94016" -239904,Lightning Charging Cable,1,14.95,08/22/19 18:47,"36 Cherry St, New York City, NY 10001" -239905,Apple Airpods Headphones,1,150,08/07/19 13:05,"303 Jackson St, San Francisco, CA 94016" -239906,Google Phone,1,600,08/11/19 21:25,"553 10th St, New York City, NY 10001" -239907,Wired Headphones,1,11.99,08/26/19 12:39,"504 Park St, Austin, TX 73301" -239908,AAA Batteries (4-pack),1,2.99,08/02/19 19:18,"525 Jefferson St, New York City, NY 10001" -239909,Bose SoundSport Headphones,1,99.99,08/09/19 14:15,"541 Church St, San Francisco, CA 94016" -239910,Lightning Charging Cable,1,14.95,08/12/19 13:06,"148 Highland St, New York City, NY 10001" -239911,AAA Batteries (4-pack),1,2.99,08/10/19 15:13,"747 10th St, Los Angeles, CA 90001" -239912,USB-C Charging Cable,1,11.95,08/27/19 14:49,"270 7th St, New York City, NY 10001" -239913,Wired Headphones,1,11.99,08/29/19 04:44,"159 South St, Portland, OR 97035" -239914,Lightning Charging Cable,1,14.95,08/12/19 13:50,"106 12th St, San Francisco, CA 94016" -239915,USB-C Charging Cable,2,11.95,08/18/19 20:29,"46 West St, Atlanta, GA 30301" -239916,20in Monitor,1,109.99,08/13/19 15:57,"110 Washington St, Atlanta, GA 30301" -239917,AAA Batteries (4-pack),1,2.99,08/28/19 12:36,"923 Park St, Los Angeles, CA 90001" -239918,Bose SoundSport Headphones,1,99.99,08/12/19 00:38,"815 Jackson St, Portland, OR 97035" -239919,USB-C Charging Cable,1,11.95,08/13/19 23:35,"499 8th St, Seattle, WA 98101" -239920,20in Monitor,1,109.99,08/26/19 23:10,"104 Pine St, Atlanta, GA 30301" -239921,Flatscreen TV,1,300,08/16/19 15:27,"801 1st St, San Francisco, CA 94016" -239922,34in Ultrawide Monitor,1,379.99,08/09/19 18:53,"549 Wilson St, Austin, TX 73301" -239923,20in Monitor,1,109.99,08/26/19 14:38,"165 Maple St, San Francisco, CA 94016" -239924,Lightning Charging Cable,1,14.95,08/30/19 19:52,"269 South St, San Francisco, CA 94016" -239925,34in Ultrawide Monitor,1,379.99,08/13/19 15:26,"856 Sunset St, Boston, MA 02215" -239926,Bose SoundSport Headphones,1,99.99,08/01/19 09:42,"269 Lake St, Seattle, WA 98101" -239927,iPhone,1,700,08/09/19 20:35,"88 Maple St, Los Angeles, CA 90001" -239927,Apple Airpods Headphones,1,150,08/09/19 20:35,"88 Maple St, Los Angeles, CA 90001" -239928,AAA Batteries (4-pack),2,2.99,08/06/19 08:01,"715 South St, San Francisco, CA 94016" -239929,AAA Batteries (4-pack),1,2.99,08/16/19 06:19,"452 Chestnut St, Seattle, WA 98101" -239930,Wired Headphones,1,11.99,08/07/19 16:10,"201 Dogwood St, New York City, NY 10001" -239931,AA Batteries (4-pack),1,3.84,08/11/19 21:25,"332 Church St, Atlanta, GA 30301" -239932,34in Ultrawide Monitor,1,379.99,08/18/19 18:41,"851 4th St, New York City, NY 10001" -239933,20in Monitor,1,109.99,08/12/19 15:13,"204 8th St, San Francisco, CA 94016" -239934,USB-C Charging Cable,1,11.95,08/13/19 21:06,"882 Sunset St, New York City, NY 10001" -239935,AAA Batteries (4-pack),1,2.99,08/16/19 00:17,"264 Cherry St, Los Angeles, CA 90001" -239936,34in Ultrawide Monitor,1,379.99,08/28/19 18:13,"704 7th St, Seattle, WA 98101" -239937,Wired Headphones,1,11.99,08/17/19 08:50,"144 North St, New York City, NY 10001" -239938,Bose SoundSport Headphones,1,99.99,08/13/19 14:54,"477 11th St, Los Angeles, CA 90001" -239939,Google Phone,1,600,08/12/19 20:28,"45 Highland St, Seattle, WA 98101" -239940,Google Phone,1,600,08/19/19 06:48,"514 Main St, New York City, NY 10001" -239941,AA Batteries (4-pack),1,3.84,08/27/19 21:19,"735 2nd St, Boston, MA 02215" -239942,Wired Headphones,1,11.99,08/08/19 00:35,"990 Forest St, San Francisco, CA 94016" -239943,Lightning Charging Cable,1,14.95,08/13/19 20:51,"154 9th St, Boston, MA 02215" -239944,Flatscreen TV,1,300,08/28/19 16:23,"2 4th St, San Francisco, CA 94016" -239945,ThinkPad Laptop,1,999.99,08/11/19 08:27,"194 Jefferson St, Austin, TX 73301" -239946,Wired Headphones,1,11.99,08/27/19 05:09,"636 Main St, San Francisco, CA 94016" -239947,Bose SoundSport Headphones,1,99.99,08/31/19 18:04,"591 Pine St, Austin, TX 73301" -239948,Flatscreen TV,1,300,08/22/19 07:34,"660 7th St, Los Angeles, CA 90001" -239949,34in Ultrawide Monitor,1,379.99,08/22/19 13:00,"904 Meadow St, Austin, TX 73301" -239950,Bose SoundSport Headphones,1,99.99,08/03/19 08:55,"275 10th St, San Francisco, CA 94016" -239951,27in FHD Monitor,1,149.99,08/01/19 14:56,"693 11th St, New York City, NY 10001" -239952,34in Ultrawide Monitor,1,379.99,08/13/19 21:52,"501 Cedar St, Boston, MA 02215" -239953,AA Batteries (4-pack),1,3.84,08/09/19 16:16,"275 Cedar St, New York City, NY 10001" -239954,Google Phone,1,600,08/04/19 11:38,"628 Spruce St, Los Angeles, CA 90001" -239955,Wired Headphones,1,11.99,08/20/19 19:03,"34 Cherry St, San Francisco, CA 94016" -239956,Lightning Charging Cable,1,14.95,08/19/19 09:15,"634 Wilson St, Los Angeles, CA 90001" -239957,Apple Airpods Headphones,1,150,08/29/19 11:07,"926 7th St, Seattle, WA 98101" -239958,Flatscreen TV,1,300,08/28/19 14:34,"247 River St, Atlanta, GA 30301" -239959,AAA Batteries (4-pack),1,2.99,08/29/19 09:17,"72 Meadow St, Atlanta, GA 30301" -239960,AAA Batteries (4-pack),2,2.99,08/10/19 19:22,"349 Walnut St, Boston, MA 02215" -239961,AAA Batteries (4-pack),2,2.99,08/25/19 00:03,"629 4th St, Los Angeles, CA 90001" -239962,USB-C Charging Cable,2,11.95,08/02/19 12:04,"469 Willow St, Dallas, TX 75001" -239963,Flatscreen TV,1,300,08/15/19 15:46,"496 2nd St, New York City, NY 10001" -239964,iPhone,1,700,08/08/19 11:37,"732 Hickory St, San Francisco, CA 94016" -239964,Apple Airpods Headphones,1,150,08/08/19 11:37,"732 Hickory St, San Francisco, CA 94016" -239965,Bose SoundSport Headphones,1,99.99,08/18/19 11:36,"574 7th St, Atlanta, GA 30301" -239966,AA Batteries (4-pack),1,3.84,08/05/19 04:30,"491 12th St, San Francisco, CA 94016" -239967,AA Batteries (4-pack),1,3.84,08/18/19 13:24,"47 Hill St, Seattle, WA 98101" -239968,Google Phone,1,600,08/16/19 07:47,"355 North St, Los Angeles, CA 90001" -239968,USB-C Charging Cable,1,11.95,08/16/19 07:47,"355 North St, Los Angeles, CA 90001" -239969,iPhone,1,700,08/27/19 08:14,"128 Jefferson St, New York City, NY 10001" -239970,AA Batteries (4-pack),1,3.84,08/08/19 11:35,"193 Forest St, San Francisco, CA 94016" -239971,Wired Headphones,1,11.99,08/27/19 15:13,"140 Washington St, Atlanta, GA 30301" -239972,Flatscreen TV,1,300,08/11/19 15:52,"517 Highland St, Los Angeles, CA 90001" -239973,Google Phone,1,600,08/02/19 15:58,"802 Cherry St, New York City, NY 10001" -239974,AA Batteries (4-pack),1,3.84,08/03/19 07:59,"940 Park St, Boston, MA 02215" -239975,Bose SoundSport Headphones,1,99.99,08/04/19 17:35,"120 Hill St, Boston, MA 02215" -239976,AA Batteries (4-pack),1,3.84,08/31/19 15:01,"124 Dogwood St, San Francisco, CA 94016" -239977,Apple Airpods Headphones,1,150,08/30/19 02:31,"640 River St, New York City, NY 10001" -239978,USB-C Charging Cable,1,11.95,08/16/19 19:06,"205 5th St, New York City, NY 10001" -239979,AAA Batteries (4-pack),1,2.99,08/28/19 17:48,"844 Pine St, Portland, OR 97035" -239980,Lightning Charging Cable,1,14.95,08/19/19 08:55,"830 Highland St, San Francisco, CA 94016" -239981,ThinkPad Laptop,1,999.99,08/08/19 17:28,"855 Center St, Los Angeles, CA 90001" -239982,AA Batteries (4-pack),1,3.84,08/26/19 11:41,"371 Main St, Portland, ME 04101" -239983,Bose SoundSport Headphones,1,99.99,08/14/19 10:15,"293 Dogwood St, Atlanta, GA 30301" -239984,Bose SoundSport Headphones,1,99.99,08/14/19 11:19,"554 Forest St, Los Angeles, CA 90001" -239985,AA Batteries (4-pack),2,3.84,08/30/19 17:01,"60 Cherry St, New York City, NY 10001" -239986,Lightning Charging Cable,1,14.95,08/07/19 15:15,"236 10th St, Boston, MA 02215" -239987,iPhone,1,700,08/09/19 20:50,"996 Lincoln St, Austin, TX 73301" -239988,AAA Batteries (4-pack),1,2.99,08/21/19 18:59,"794 Meadow St, Los Angeles, CA 90001" -239989,iPhone,1,700,08/28/19 02:59,"12 Forest St, Seattle, WA 98101" -239990,Wired Headphones,1,11.99,08/02/19 14:03,"60 Lakeview St, Dallas, TX 75001" -239991,AAA Batteries (4-pack),1,2.99,08/30/19 20:16,"211 Chestnut St, San Francisco, CA 94016" -239992,Apple Airpods Headphones,1,150,08/06/19 11:01,"826 Adams St, New York City, NY 10001" -239993,34in Ultrawide Monitor,1,379.99,08/10/19 01:36,"653 Chestnut St, New York City, NY 10001" -239994,USB-C Charging Cable,1,11.95,08/17/19 19:47,"523 Lincoln St, San Francisco, CA 94016" -239995,Apple Airpods Headphones,1,150,08/25/19 06:55,"200 Sunset St, Seattle, WA 98101" -239996,Apple Airpods Headphones,2,150,08/23/19 13:13,"599 Jackson St, Los Angeles, CA 90001" -239997,Bose SoundSport Headphones,1,99.99,08/27/19 09:27,"78 Dogwood St, Boston, MA 02215" -239998,AAA Batteries (4-pack),2,2.99,08/19/19 16:32,"524 11th St, Boston, MA 02215" -239999,AAA Batteries (4-pack),1,2.99,08/18/19 15:51,"301 Spruce St, Boston, MA 02215" -240000,AA Batteries (4-pack),1,3.84,08/21/19 18:47,"66 8th St, New York City, NY 10001" -240001,Bose SoundSport Headphones,1,99.99,08/27/19 21:36,"393 Maple St, Los Angeles, CA 90001" -240002,USB-C Charging Cable,2,11.95,08/22/19 11:00,"277 Sunset St, Los Angeles, CA 90001" -240003,Flatscreen TV,1,300,08/19/19 20:21,"328 South St, Boston, MA 02215" -240004,Bose SoundSport Headphones,1,99.99,08/25/19 19:19,"117 Lakeview St, San Francisco, CA 94016" -240005,USB-C Charging Cable,1,11.95,08/01/19 16:50,"637 5th St, Dallas, TX 75001" -240006,USB-C Charging Cable,1,11.95,08/26/19 11:24,"891 Jackson St, Dallas, TX 75001" -240007,USB-C Charging Cable,1,11.95,08/28/19 22:16,"403 Willow St, Seattle, WA 98101" -240008,AA Batteries (4-pack),2,3.84,08/28/19 07:35,"946 Walnut St, Los Angeles, CA 90001" -240009,Wired Headphones,1,11.99,08/24/19 13:14,"886 Johnson St, Los Angeles, CA 90001" -240010,USB-C Charging Cable,1,11.95,08/07/19 17:58,"149 Washington St, Boston, MA 02215" -240011,Bose SoundSport Headphones,1,99.99,08/16/19 17:16,"619 South St, Dallas, TX 75001" -240012,AA Batteries (4-pack),3,3.84,08/25/19 14:11,"260 Lake St, San Francisco, CA 94016" -240013,Macbook Pro Laptop,1,1700,08/11/19 14:30,"471 Lake St, Los Angeles, CA 90001" -240014,Wired Headphones,1,11.99,08/08/19 13:50,"5 Adams St, Dallas, TX 75001" -240015,AA Batteries (4-pack),1,3.84,08/20/19 19:55,"411 South St, Atlanta, GA 30301" -240016,Wired Headphones,1,11.99,08/06/19 20:57,"144 4th St, New York City, NY 10001" -240017,Lightning Charging Cable,1,14.95,08/20/19 20:25,"563 Church St, Los Angeles, CA 90001" -240018,AA Batteries (4-pack),1,3.84,08/11/19 22:54,"218 Washington St, Atlanta, GA 30301" -240019,27in FHD Monitor,1,149.99,08/05/19 00:51,"629 South St, San Francisco, CA 94016" -240020,Lightning Charging Cable,1,14.95,08/13/19 11:31,"133 Highland St, Seattle, WA 98101" -240021,AA Batteries (4-pack),3,3.84,08/14/19 08:26,"737 Washington St, Boston, MA 02215" -240022,Apple Airpods Headphones,1,150,08/07/19 17:46,"611 Wilson St, Seattle, WA 98101" -240023,20in Monitor,1,109.99,08/30/19 02:45,"387 Madison St, San Francisco, CA 94016" -240024,27in 4K Gaming Monitor,1,389.99,08/05/19 14:31,"122 13th St, Austin, TX 73301" -240025,Lightning Charging Cable,1,14.95,08/02/19 21:05,"960 Maple St, Boston, MA 02215" -240026,Apple Airpods Headphones,1,150,08/03/19 22:02,"326 Johnson St, Los Angeles, CA 90001" -240027,iPhone,1,700,08/05/19 08:58,"214 Church St, Boston, MA 02215" -240027,Lightning Charging Cable,1,14.95,08/05/19 08:58,"214 Church St, Boston, MA 02215" -240028,LG Washing Machine,1,600.0,08/19/19 21:11,"426 Dogwood St, San Francisco, CA 94016" -240029,Macbook Pro Laptop,1,1700,08/09/19 17:37,"274 Cedar St, Boston, MA 02215" -240029,USB-C Charging Cable,1,11.95,08/09/19 17:37,"274 Cedar St, Boston, MA 02215" -240030,27in 4K Gaming Monitor,1,389.99,08/06/19 22:11,"884 11th St, New York City, NY 10001" -240031,Bose SoundSport Headphones,2,99.99,08/14/19 03:58,"979 Madison St, Dallas, TX 75001" -240032,Lightning Charging Cable,1,14.95,08/07/19 17:57,"227 Hickory St, New York City, NY 10001" -240033,27in FHD Monitor,1,149.99,08/03/19 19:12,"613 Park St, New York City, NY 10001" -240034,34in Ultrawide Monitor,1,379.99,08/07/19 16:04,"259 South St, San Francisco, CA 94016" -240035,Lightning Charging Cable,1,14.95,08/17/19 15:30,"602 River St, Boston, MA 02215" -240036,27in 4K Gaming Monitor,1,389.99,08/01/19 11:43,"997 Walnut St, New York City, NY 10001" -240037,AAA Batteries (4-pack),1,2.99,08/29/19 14:37,"10 Hill St, Atlanta, GA 30301" -240038,AA Batteries (4-pack),1,3.84,08/19/19 20:19,"71 Maple St, Dallas, TX 75001" -240039,USB-C Charging Cable,1,11.95,08/14/19 23:21,"467 South St, San Francisco, CA 94016" -240040,Lightning Charging Cable,1,14.95,08/18/19 15:01,"623 West St, Austin, TX 73301" -240041,USB-C Charging Cable,1,11.95,08/08/19 18:22,"136 Center St, Atlanta, GA 30301" -240042,AAA Batteries (4-pack),1,2.99,08/16/19 01:22,"544 Lakeview St, New York City, NY 10001" -240043,Bose SoundSport Headphones,1,99.99,08/10/19 11:23,"315 2nd St, San Francisco, CA 94016" -240044,AAA Batteries (4-pack),1,2.99,08/27/19 01:50,"141 West St, San Francisco, CA 94016" -240045,AAA Batteries (4-pack),2,2.99,08/22/19 09:01,"102 6th St, New York City, NY 10001" -240046,Lightning Charging Cable,1,14.95,08/13/19 23:07,"186 Washington St, Los Angeles, CA 90001" -240047,Bose SoundSport Headphones,1,99.99,08/18/19 21:06,"967 6th St, Atlanta, GA 30301" -240048,Flatscreen TV,1,300,08/28/19 15:17,"796 Madison St, Boston, MA 02215" -240049,AAA Batteries (4-pack),1,2.99,08/29/19 12:24,"751 North St, Atlanta, GA 30301" -240050,Apple Airpods Headphones,1,150,08/03/19 18:09,"430 Jefferson St, Dallas, TX 75001" -240051,27in FHD Monitor,1,149.99,08/26/19 14:58,"600 Chestnut St, San Francisco, CA 94016" -240052,Google Phone,1,600,08/19/19 12:53,"764 Hill St, San Francisco, CA 94016" -240053,27in FHD Monitor,1,149.99,08/24/19 10:52,"432 Jackson St, Boston, MA 02215" -240054,Bose SoundSport Headphones,1,99.99,08/04/19 19:46,"230 West St, Boston, MA 02215" -240055,Lightning Charging Cable,1,14.95,08/06/19 11:52,"41 Spruce St, Los Angeles, CA 90001" -240056,USB-C Charging Cable,2,11.95,08/25/19 20:58,"851 Spruce St, Los Angeles, CA 90001" -240057,AA Batteries (4-pack),1,3.84,08/06/19 12:37,"772 5th St, Boston, MA 02215" -240058,20in Monitor,1,109.99,08/26/19 22:46,"300 1st St, New York City, NY 10001" -240059,USB-C Charging Cable,1,11.95,08/07/19 22:45,"541 1st St, San Francisco, CA 94016" -240060,Apple Airpods Headphones,1,150,08/30/19 22:17,"304 Pine St, Los Angeles, CA 90001" -240061,27in FHD Monitor,1,149.99,08/22/19 13:46,"47 12th St, San Francisco, CA 94016" -240062,Bose SoundSport Headphones,1,99.99,08/01/19 21:47,"511 Church St, Seattle, WA 98101" -240063,AA Batteries (4-pack),1,3.84,08/20/19 04:46,"463 Lincoln St, New York City, NY 10001" -240064,AA Batteries (4-pack),2,3.84,08/27/19 23:32,"377 Johnson St, New York City, NY 10001" -240065,USB-C Charging Cable,2,11.95,08/10/19 20:33,"583 Madison St, Boston, MA 02215" -240066,Lightning Charging Cable,1,14.95,08/29/19 20:05,"832 Pine St, Atlanta, GA 30301" -240067,iPhone,1,700,08/15/19 15:10,"707 Lakeview St, Dallas, TX 75001" -240067,Lightning Charging Cable,1,14.95,08/15/19 15:10,"707 Lakeview St, Dallas, TX 75001" -240068,Google Phone,1,600,08/17/19 13:52,"305 Elm St, Atlanta, GA 30301" -240069,AA Batteries (4-pack),2,3.84,08/18/19 20:12,"130 Sunset St, San Francisco, CA 94016" -240070,AA Batteries (4-pack),2,3.84,08/15/19 15:28,"607 9th St, New York City, NY 10001" -240071,AA Batteries (4-pack),2,3.84,08/11/19 21:19,"630 Main St, Los Angeles, CA 90001" -240072,Lightning Charging Cable,1,14.95,08/06/19 21:08,"579 2nd St, Portland, OR 97035" -240073,Bose SoundSport Headphones,1,99.99,08/08/19 15:52,"162 Park St, Atlanta, GA 30301" -240074,ThinkPad Laptop,1,999.99,08/07/19 19:29,"107 Lincoln St, San Francisco, CA 94016" -240075,AAA Batteries (4-pack),1,2.99,08/19/19 17:03,"304 Sunset St, Boston, MA 02215" -240076,Lightning Charging Cable,1,14.95,08/16/19 23:35,"544 Johnson St, Austin, TX 73301" -240077,27in 4K Gaming Monitor,1,389.99,08/11/19 08:47,"104 River St, Boston, MA 02215" -240078,Wired Headphones,1,11.99,08/29/19 21:38,"175 4th St, New York City, NY 10001" -240079,AAA Batteries (4-pack),1,2.99,08/14/19 15:22,"190 Cherry St, Boston, MA 02215" -240080,AAA Batteries (4-pack),1,2.99,08/10/19 19:40,"86 Elm St, Seattle, WA 98101" -240080,AAA Batteries (4-pack),2,2.99,08/10/19 19:40,"86 Elm St, Seattle, WA 98101" -240081,34in Ultrawide Monitor,1,379.99,08/06/19 20:05,"683 13th St, San Francisco, CA 94016" -240082,Lightning Charging Cable,1,14.95,08/16/19 20:41,"225 Forest St, Portland, OR 97035" -240083,AAA Batteries (4-pack),1,2.99,08/20/19 23:03,"752 Maple St, Atlanta, GA 30301" -240084,AA Batteries (4-pack),1,3.84,08/27/19 11:01,"87 Highland St, Seattle, WA 98101" -240085,USB-C Charging Cable,1,11.95,08/16/19 18:08,"909 Chestnut St, San Francisco, CA 94016" -240086,AA Batteries (4-pack),2,3.84,08/14/19 13:28,"525 Lincoln St, Atlanta, GA 30301" -240087,Bose SoundSport Headphones,1,99.99,08/07/19 08:18,"965 Jefferson St, Seattle, WA 98101" -240088,AAA Batteries (4-pack),2,2.99,08/10/19 08:39,"592 River St, New York City, NY 10001" -240089,USB-C Charging Cable,1,11.95,08/29/19 12:54,"712 Jefferson St, Portland, ME 04101" -240090,27in 4K Gaming Monitor,1,389.99,08/10/19 20:53,"900 Madison St, Boston, MA 02215" -240091,Wired Headphones,1,11.99,08/30/19 17:48,"960 Church St, Seattle, WA 98101" -240092,AAA Batteries (4-pack),1,2.99,08/03/19 00:51,"728 14th St, Atlanta, GA 30301" -240093,Apple Airpods Headphones,1,150,08/02/19 23:28,"193 Wilson St, San Francisco, CA 94016" -240094,Wired Headphones,2,11.99,08/01/19 10:04,"149 Johnson St, New York City, NY 10001" -240095,ThinkPad Laptop,1,999.99,08/09/19 17:57,"447 Church St, Portland, OR 97035" -240096,ThinkPad Laptop,1,999.99,08/15/19 13:00,"322 Maple St, Austin, TX 73301" -240097,Bose SoundSport Headphones,1,99.99,08/01/19 09:37,"350 Elm St, Los Angeles, CA 90001" -240098,Lightning Charging Cable,1,14.95,08/28/19 20:37,"124 8th St, Los Angeles, CA 90001" -240099,27in FHD Monitor,1,149.99,08/16/19 22:44,"417 13th St, San Francisco, CA 94016" -240100,20in Monitor,1,109.99,08/09/19 06:49,"445 7th St, Austin, TX 73301" -240101,Lightning Charging Cable,1,14.95,08/02/19 10:43,"337 6th St, Dallas, TX 75001" -240102,AA Batteries (4-pack),2,3.84,08/02/19 16:21,"345 Church St, Los Angeles, CA 90001" -240103,AAA Batteries (4-pack),4,2.99,08/25/19 17:01,"304 5th St, Atlanta, GA 30301" -240104,AA Batteries (4-pack),1,3.84,08/24/19 21:39,"325 Chestnut St, Seattle, WA 98101" -240105,AAA Batteries (4-pack),1,2.99,08/06/19 21:29,"31 Lake St, Los Angeles, CA 90001" -240106,Lightning Charging Cable,1,14.95,08/09/19 08:27,"596 10th St, New York City, NY 10001" -240107,Wired Headphones,1,11.99,08/15/19 20:52,"938 North St, Los Angeles, CA 90001" -240108,AAA Batteries (4-pack),3,2.99,08/14/19 15:31,"222 River St, Portland, OR 97035" -240109,34in Ultrawide Monitor,1,379.99,08/25/19 18:31,"219 Dogwood St, San Francisco, CA 94016" -240109,AA Batteries (4-pack),2,3.84,08/25/19 18:31,"219 Dogwood St, San Francisco, CA 94016" -240110,AA Batteries (4-pack),1,3.84,08/27/19 16:10,"372 Wilson St, New York City, NY 10001" -240111,AAA Batteries (4-pack),3,2.99,08/02/19 11:32,"938 9th St, San Francisco, CA 94016" -240112,Bose SoundSport Headphones,1,99.99,08/23/19 20:50,"742 Maple St, New York City, NY 10001" -240113,Apple Airpods Headphones,1,150,08/30/19 00:32,"182 Hickory St, New York City, NY 10001" -240114,Google Phone,1,600,08/22/19 13:10,"198 12th St, San Francisco, CA 94016" -240115,Apple Airpods Headphones,1,150,08/31/19 07:01,"599 Jefferson St, New York City, NY 10001" -240116,Bose SoundSport Headphones,1,99.99,08/27/19 11:04,"279 Jefferson St, Los Angeles, CA 90001" -240117,27in 4K Gaming Monitor,1,389.99,08/23/19 02:46,"542 1st St, Atlanta, GA 30301" -240118,iPhone,1,700,08/15/19 19:13,"559 Dogwood St, Austin, TX 73301" -240119,Lightning Charging Cable,1,14.95,08/30/19 19:43,"164 North St, Los Angeles, CA 90001" -240120,AA Batteries (4-pack),3,3.84,08/06/19 18:43,"954 Sunset St, Dallas, TX 75001" -240121,USB-C Charging Cable,1,11.95,08/18/19 10:23,"284 Maple St, San Francisco, CA 94016" -240122,Wired Headphones,1,11.99,08/09/19 15:59,"151 9th St, Seattle, WA 98101" -240123,Flatscreen TV,1,300,08/15/19 05:33,"361 2nd St, San Francisco, CA 94016" -240124,Lightning Charging Cable,1,14.95,08/06/19 19:04,"216 Spruce St, Atlanta, GA 30301" -240125,Lightning Charging Cable,1,14.95,08/20/19 13:02,"871 South St, Boston, MA 02215" -240126,AA Batteries (4-pack),1,3.84,08/13/19 14:07,"671 9th St, Atlanta, GA 30301" -240127,USB-C Charging Cable,2,11.95,08/14/19 02:34,"557 12th St, San Francisco, CA 94016" -240128,27in 4K Gaming Monitor,1,389.99,08/28/19 03:32,"958 Hill St, San Francisco, CA 94016" -240129,AAA Batteries (4-pack),1,2.99,08/14/19 11:02,"373 5th St, Los Angeles, CA 90001" -240130,LG Washing Machine,1,600.0,08/25/19 16:54,"273 6th St, San Francisco, CA 94016" -240131,ThinkPad Laptop,1,999.99,08/07/19 20:04,"230 Main St, Los Angeles, CA 90001" -240132,Wired Headphones,1,11.99,08/18/19 15:23,"53 Hill St, New York City, NY 10001" -240133,Google Phone,1,600,08/02/19 20:13,"19 Park St, Seattle, WA 98101" -240134,Bose SoundSport Headphones,1,99.99,08/25/19 18:51,"3 12th St, San Francisco, CA 94016" -240135,Wired Headphones,1,11.99,08/26/19 13:25,"542 13th St, Los Angeles, CA 90001" -240136,Wired Headphones,1,11.99,08/17/19 13:21,"784 Ridge St, San Francisco, CA 94016" -240137,USB-C Charging Cable,1,11.95,08/08/19 09:12,"880 5th St, Atlanta, GA 30301" -240138,AAA Batteries (4-pack),1,2.99,08/29/19 08:56,"874 12th St, San Francisco, CA 94016" -240138,Wired Headphones,1,11.99,08/29/19 08:56,"874 12th St, San Francisco, CA 94016" -240139,AAA Batteries (4-pack),1,2.99,08/17/19 20:15,"708 Church St, Atlanta, GA 30301" -240140,USB-C Charging Cable,1,11.95,08/12/19 01:53,"383 Dogwood St, Atlanta, GA 30301" -240141,USB-C Charging Cable,1,11.95,08/08/19 21:26,"694 Center St, Los Angeles, CA 90001" -240142,Bose SoundSport Headphones,1,99.99,08/25/19 15:51,"265 North St, New York City, NY 10001" -240143,Lightning Charging Cable,1,14.95,08/14/19 22:08,"103 Walnut St, Los Angeles, CA 90001" -240144,27in FHD Monitor,1,149.99,08/01/19 21:04,"17 Walnut St, Portland, OR 97035" -240145,Bose SoundSport Headphones,1,99.99,08/30/19 11:24,"566 2nd St, Los Angeles, CA 90001" -240146,iPhone,1,700,08/06/19 18:44,"641 1st St, Los Angeles, CA 90001" -240146,Lightning Charging Cable,2,14.95,08/06/19 18:44,"641 1st St, Los Angeles, CA 90001" -240147,20in Monitor,1,109.99,08/24/19 15:43,"289 Spruce St, Dallas, TX 75001" -240148,ThinkPad Laptop,1,999.99,08/26/19 18:45,"331 2nd St, Boston, MA 02215" -240149,AAA Batteries (4-pack),1,2.99,08/05/19 05:53,"627 West St, Boston, MA 02215" -240150,Lightning Charging Cable,1,14.95,08/03/19 20:21,"373 12th St, Boston, MA 02215" -240151,AA Batteries (4-pack),1,3.84,08/16/19 22:18,"635 Washington St, New York City, NY 10001" -240152,Lightning Charging Cable,1,14.95,08/24/19 20:41,"273 Center St, Dallas, TX 75001" -240153,AA Batteries (4-pack),1,3.84,08/13/19 18:43,"703 4th St, Los Angeles, CA 90001" -240154,34in Ultrawide Monitor,1,379.99,08/05/19 10:41,"721 Walnut St, Los Angeles, CA 90001" -240155,USB-C Charging Cable,1,11.95,08/03/19 15:10,"271 North St, Seattle, WA 98101" -240156,Macbook Pro Laptop,1,1700,08/07/19 13:26,"262 Johnson St, Boston, MA 02215" -240157,AA Batteries (4-pack),1,3.84,08/19/19 20:06,"836 Hill St, San Francisco, CA 94016" -240158,AAA Batteries (4-pack),2,2.99,08/02/19 11:22,"312 Chestnut St, San Francisco, CA 94016" -240159,Vareebadd Phone,1,400,08/16/19 15:00,"674 7th St, Seattle, WA 98101" -240159,Bose SoundSport Headphones,1,99.99,08/16/19 15:00,"674 7th St, Seattle, WA 98101" -240160,AA Batteries (4-pack),1,3.84,08/23/19 12:45,"842 Ridge St, Boston, MA 02215" -240161,Wired Headphones,1,11.99,08/30/19 11:26,"167 14th St, Portland, OR 97035" -240162,USB-C Charging Cable,1,11.95,08/05/19 11:57,"125 Lake St, Atlanta, GA 30301" -240163,Lightning Charging Cable,1,14.95,08/12/19 19:26,"710 12th St, Boston, MA 02215" -240164,AA Batteries (4-pack),1,3.84,08/21/19 18:25,"812 5th St, New York City, NY 10001" -240165,27in FHD Monitor,1,149.99,08/11/19 23:04,"958 10th St, New York City, NY 10001" -240166,Apple Airpods Headphones,1,150,08/22/19 19:35,"512 12th St, Los Angeles, CA 90001" -240167,Google Phone,1,600,08/01/19 20:17,"212 Hill St, San Francisco, CA 94016" -240168,AAA Batteries (4-pack),2,2.99,08/24/19 14:37,"573 Forest St, Austin, TX 73301" -240169,Apple Airpods Headphones,1,150,08/06/19 11:59,"795 Meadow St, Atlanta, GA 30301" -240170,Apple Airpods Headphones,1,150,08/18/19 20:20,"282 1st St, Seattle, WA 98101" -240171,27in 4K Gaming Monitor,1,389.99,08/22/19 19:14,"791 Park St, Los Angeles, CA 90001" -240172,27in FHD Monitor,1,149.99,08/17/19 13:58,"894 Lakeview St, Boston, MA 02215" -240173,Bose SoundSport Headphones,1,99.99,08/05/19 16:49,"465 Lakeview St, Atlanta, GA 30301" -240174,USB-C Charging Cable,1,11.95,08/28/19 21:23,"357 7th St, San Francisco, CA 94016" -240174,Wired Headphones,1,11.99,08/28/19 21:23,"357 7th St, San Francisco, CA 94016" -240175,Lightning Charging Cable,3,14.95,08/26/19 10:42,"206 14th St, San Francisco, CA 94016" -240176,AA Batteries (4-pack),2,3.84,08/14/19 20:04,"469 Highland St, New York City, NY 10001" -240177,AAA Batteries (4-pack),1,2.99,08/18/19 19:15,"699 Hickory St, Boston, MA 02215" -240178,ThinkPad Laptop,1,999.99,08/03/19 10:09,"708 Spruce St, Seattle, WA 98101" -240179,USB-C Charging Cable,1,11.95,08/13/19 05:47,"113 8th St, San Francisco, CA 94016" -240180,AAA Batteries (4-pack),3,2.99,08/15/19 13:37,"462 8th St, Dallas, TX 75001" -240181,Wired Headphones,1,11.99,08/29/19 12:36,"791 2nd St, Los Angeles, CA 90001" -240182,AAA Batteries (4-pack),1,2.99,08/08/19 19:13,"567 12th St, San Francisco, CA 94016" -240183,Google Phone,1,600,08/16/19 08:37,"944 River St, San Francisco, CA 94016" -240184,LG Dryer,1,600.0,08/02/19 05:21,"661 6th St, Seattle, WA 98101" -240185,USB-C Charging Cable,1,11.95,08/19/19 19:57,"35 11th St, Boston, MA 02215" -240186,Bose SoundSport Headphones,1,99.99,08/27/19 10:26,"260 Willow St, Seattle, WA 98101" -240187,Lightning Charging Cable,1,14.95,08/29/19 20:23,"419 Washington St, Dallas, TX 75001" -240188,USB-C Charging Cable,1,11.95,08/25/19 17:48,"651 Hill St, Atlanta, GA 30301" -240189,AAA Batteries (4-pack),1,2.99,08/12/19 01:13,"627 Highland St, Austin, TX 73301" -240190,AA Batteries (4-pack),1,3.84,08/23/19 05:58,"437 Elm St, Atlanta, GA 30301" -240191,Bose SoundSport Headphones,1,99.99,08/08/19 19:55,"819 Willow St, New York City, NY 10001" -240192,20in Monitor,1,109.99,08/16/19 09:55,"411 Wilson St, Atlanta, GA 30301" -240193,Apple Airpods Headphones,1,150,08/14/19 19:31,"658 Ridge St, Austin, TX 73301" -240194,AA Batteries (4-pack),2,3.84,08/09/19 17:27,"625 Cedar St, New York City, NY 10001" -240195,AA Batteries (4-pack),1,3.84,08/29/19 14:01,"419 12th St, San Francisco, CA 94016" -240196,Apple Airpods Headphones,1,150,08/05/19 11:36,"563 North St, Seattle, WA 98101" -240197,27in 4K Gaming Monitor,1,389.99,08/22/19 17:29,"747 Cherry St, Boston, MA 02215" -240198,iPhone,1,700,08/14/19 23:21,"661 Madison St, New York City, NY 10001" -240199,Lightning Charging Cable,1,14.95,08/31/19 21:03,"11 12th St, San Francisco, CA 94016" -240200,Lightning Charging Cable,1,14.95,08/14/19 09:28,"109 Washington St, Boston, MA 02215" -240201,Wired Headphones,1,11.99,08/27/19 16:14,"482 Lakeview St, Atlanta, GA 30301" -240202,34in Ultrawide Monitor,1,379.99,08/01/19 18:50,"840 10th St, San Francisco, CA 94016" -240203,Apple Airpods Headphones,1,150,08/02/19 15:25,"533 Elm St, Seattle, WA 98101" -240204,Google Phone,1,600,08/11/19 11:33,"950 5th St, Los Angeles, CA 90001" -240205,iPhone,1,700,08/24/19 13:49,"13 Ridge St, Portland, OR 97035" -240206,Flatscreen TV,1,300,08/11/19 10:27,"467 4th St, Boston, MA 02215" -240207,Apple Airpods Headphones,1,150,08/04/19 07:40,"273 Ridge St, Los Angeles, CA 90001" -240208,AAA Batteries (4-pack),1,2.99,08/29/19 00:22,"565 Lakeview St, Dallas, TX 75001" -240209,AAA Batteries (4-pack),2,2.99,08/28/19 13:33,"680 13th St, San Francisco, CA 94016" -240210,LG Dryer,1,600.0,08/19/19 11:48,"45 Dogwood St, Seattle, WA 98101" -240211,AAA Batteries (4-pack),1,2.99,08/22/19 21:23,"52 Highland St, San Francisco, CA 94016" -240212,Vareebadd Phone,1,400,08/30/19 22:18,"735 Sunset St, Boston, MA 02215" -240212,USB-C Charging Cable,1,11.95,08/30/19 22:18,"735 Sunset St, Boston, MA 02215" -240213,AA Batteries (4-pack),1,3.84,08/29/19 22:00,"350 Hickory St, New York City, NY 10001" -240214,Wired Headphones,1,11.99,08/01/19 23:25,"903 6th St, Portland, OR 97035" -240215,AA Batteries (4-pack),2,3.84,08/01/19 20:43,"752 Spruce St, Los Angeles, CA 90001" -240216,27in FHD Monitor,1,149.99,08/15/19 07:55,"818 7th St, San Francisco, CA 94016" -240217,USB-C Charging Cable,2,11.95,08/08/19 13:35,"805 Church St, Dallas, TX 75001" -240218,Vareebadd Phone,1,400,08/27/19 05:30,"771 7th St, New York City, NY 10001" -240219,Lightning Charging Cable,1,14.95,08/13/19 12:01,"695 Chestnut St, Los Angeles, CA 90001" -240220,Vareebadd Phone,1,400,08/03/19 10:29,"628 Center St, San Francisco, CA 94016" -240220,USB-C Charging Cable,1,11.95,08/03/19 10:29,"628 Center St, San Francisco, CA 94016" -240221,iPhone,1,700,08/09/19 20:03,"714 Lake St, Portland, OR 97035" -240222,Wired Headphones,1,11.99,08/12/19 19:20,"767 Adams St, Portland, OR 97035" -240223,Macbook Pro Laptop,1,1700,08/07/19 10:59,"156 Willow St, San Francisco, CA 94016" -240224,iPhone,1,700,08/28/19 10:13,"155 10th St, Boston, MA 02215" -240225,Wired Headphones,1,11.99,08/24/19 07:49,"164 Pine St, Portland, OR 97035" -240226,iPhone,1,700,08/15/19 12:07,"317 River St, Los Angeles, CA 90001" -240227,USB-C Charging Cable,1,11.95,08/15/19 17:03,"941 Main St, Atlanta, GA 30301" -240228,Bose SoundSport Headphones,1,99.99,08/19/19 16:29,"842 Cherry St, San Francisco, CA 94016" -240229,AA Batteries (4-pack),2,3.84,08/16/19 12:59,"991 Wilson St, Boston, MA 02215" -240230,27in FHD Monitor,1,149.99,08/22/19 21:33,"142 Spruce St, Dallas, TX 75001" -240231,Apple Airpods Headphones,1,150,08/10/19 12:38,"327 6th St, Portland, OR 97035" -240232,USB-C Charging Cable,1,11.95,08/05/19 23:04,"855 7th St, Atlanta, GA 30301" -240233,iPhone,1,700,08/11/19 15:35,"70 2nd St, Boston, MA 02215" -240233,Apple Airpods Headphones,1,150,08/11/19 15:35,"70 2nd St, Boston, MA 02215" -240234,USB-C Charging Cable,1,11.95,08/12/19 12:42,"421 Ridge St, Austin, TX 73301" -240235,27in 4K Gaming Monitor,1,389.99,08/20/19 14:15,"726 Hickory St, Dallas, TX 75001" -240236,Lightning Charging Cable,1,14.95,08/28/19 10:04,"997 7th St, New York City, NY 10001" -240237,27in FHD Monitor,1,149.99,08/03/19 08:20,"148 Hill St, Los Angeles, CA 90001" -240238,AA Batteries (4-pack),2,3.84,08/25/19 13:30,"150 8th St, Portland, OR 97035" -240239,27in FHD Monitor,1,149.99,08/27/19 12:19,"401 Wilson St, Portland, ME 04101" -240240,Wired Headphones,1,11.99,08/09/19 15:04,"891 9th St, San Francisco, CA 94016" -240241,Flatscreen TV,1,300,08/12/19 01:43,"18 Chestnut St, Atlanta, GA 30301" -240242,Lightning Charging Cable,1,14.95,08/12/19 18:47,"348 Chestnut St, Austin, TX 73301" -240243,Lightning Charging Cable,1,14.95,08/03/19 11:50,"296 1st St, San Francisco, CA 94016" -240244,Wired Headphones,1,11.99,08/09/19 10:00,"462 Lakeview St, Boston, MA 02215" -240245,Apple Airpods Headphones,1,150,08/22/19 10:52,"997 Jackson St, New York City, NY 10001" -240246,AA Batteries (4-pack),1,3.84,08/21/19 15:43,"635 Willow St, Los Angeles, CA 90001" -240247,AAA Batteries (4-pack),1,2.99,08/29/19 13:11,"163 Cedar St, Seattle, WA 98101" -240248,Macbook Pro Laptop,1,1700,08/10/19 21:25,"123 Chestnut St, San Francisco, CA 94016" -240249,Lightning Charging Cable,1,14.95,08/17/19 18:14,"963 Willow St, Los Angeles, CA 90001" -240250,Apple Airpods Headphones,1,150,08/28/19 14:43,"538 Forest St, Los Angeles, CA 90001" -240251,Wired Headphones,1,11.99,08/04/19 10:58,"990 Pine St, Seattle, WA 98101" -240252,USB-C Charging Cable,1,11.95,08/26/19 11:10,"940 Sunset St, San Francisco, CA 94016" -240253,AA Batteries (4-pack),1,3.84,08/06/19 21:01,"110 8th St, New York City, NY 10001" -240254,AAA Batteries (4-pack),2,2.99,08/15/19 12:52,"357 Adams St, Los Angeles, CA 90001" -240255,AAA Batteries (4-pack),1,2.99,08/09/19 03:17,"504 14th St, Austin, TX 73301" -240256,Lightning Charging Cable,1,14.95,08/24/19 07:22,"203 Church St, Seattle, WA 98101" -240257,Lightning Charging Cable,1,14.95,08/05/19 10:51,"65 6th St, Boston, MA 02215" -240258,Lightning Charging Cable,1,14.95,08/10/19 22:59,"428 13th St, Boston, MA 02215" -240259,AA Batteries (4-pack),3,3.84,08/30/19 08:41,"138 5th St, Portland, OR 97035" -240260,AAA Batteries (4-pack),4,2.99,08/12/19 20:09,"241 Church St, New York City, NY 10001" -240261,Wired Headphones,1,11.99,08/30/19 16:21,"267 12th St, New York City, NY 10001" -240262,Wired Headphones,1,11.99,08/19/19 10:27,"887 Lincoln St, Boston, MA 02215" -240263,AAA Batteries (4-pack),1,2.99,08/07/19 09:07,"926 Church St, Portland, OR 97035" -240264,34in Ultrawide Monitor,1,379.99,08/15/19 13:37,"305 4th St, Seattle, WA 98101" -240265,AA Batteries (4-pack),1,3.84,08/16/19 15:39,"377 Madison St, San Francisco, CA 94016" -240266,USB-C Charging Cable,1,11.95,08/08/19 12:41,"250 10th St, San Francisco, CA 94016" -240267,ThinkPad Laptop,1,999.99,08/21/19 19:59,"850 Main St, San Francisco, CA 94016" -240268,iPhone,1,700,08/11/19 12:12,"959 10th St, Los Angeles, CA 90001" -240269,Macbook Pro Laptop,1,1700,08/04/19 00:00,"837 7th St, Seattle, WA 98101" -240270,Apple Airpods Headphones,1,150,08/09/19 21:53,"960 Adams St, Los Angeles, CA 90001" -240271,Google Phone,1,600,08/19/19 16:26,"87 Sunset St, San Francisco, CA 94016" -240272,Lightning Charging Cable,1,14.95,08/27/19 17:16,"370 Cherry St, Los Angeles, CA 90001" -240273,USB-C Charging Cable,1,11.95,08/15/19 20:42,"979 8th St, Seattle, WA 98101" -240274,AAA Batteries (4-pack),2,2.99,08/07/19 23:12,"745 Johnson St, Boston, MA 02215" -240275,Lightning Charging Cable,1,14.95,08/08/19 17:28,"977 West St, Dallas, TX 75001" -240276,Lightning Charging Cable,1,14.95,08/23/19 19:47,"393 Pine St, Boston, MA 02215" -240277,Wired Headphones,1,11.99,08/20/19 23:25,"451 13th St, Portland, OR 97035" -240278,Apple Airpods Headphones,1,150,08/20/19 13:13,"824 5th St, Los Angeles, CA 90001" -240279,AA Batteries (4-pack),1,3.84,08/09/19 13:13,"523 Wilson St, Los Angeles, CA 90001" -240280,AA Batteries (4-pack),1,3.84,08/04/19 19:47,"57 5th St, San Francisco, CA 94016" -240281,27in 4K Gaming Monitor,1,389.99,08/08/19 19:26,"658 13th St, San Francisco, CA 94016" -240282,Wired Headphones,1,11.99,08/31/19 19:33,"288 Maple St, Los Angeles, CA 90001" -240283,Apple Airpods Headphones,1,150,08/28/19 17:40,"249 11th St, Boston, MA 02215" -240284,Lightning Charging Cable,1,14.95,08/09/19 18:13,"609 Church St, Boston, MA 02215" -240284,AA Batteries (4-pack),1,3.84,08/09/19 18:13,"609 Church St, Boston, MA 02215" -240285,Bose SoundSport Headphones,1,99.99,08/02/19 15:16,"312 Maple St, Los Angeles, CA 90001" -240286,27in 4K Gaming Monitor,1,389.99,08/05/19 16:42,"547 North St, Boston, MA 02215" -240287,Apple Airpods Headphones,1,150,08/16/19 16:21,"373 6th St, Austin, TX 73301" -240288,Lightning Charging Cable,1,14.95,08/31/19 20:56,"781 4th St, New York City, NY 10001" -240289,AA Batteries (4-pack),1,3.84,08/14/19 19:43,"507 Sunset St, San Francisco, CA 94016" -240290,Bose SoundSport Headphones,1,99.99,08/27/19 19:51,"933 Center St, New York City, NY 10001" -240291,Wired Headphones,1,11.99,08/16/19 20:05,"421 West St, New York City, NY 10001" -240292,Google Phone,1,600,08/19/19 14:51,"774 Jefferson St, San Francisco, CA 94016" -240292,USB-C Charging Cable,1,11.95,08/19/19 14:51,"774 Jefferson St, San Francisco, CA 94016" -240293,AA Batteries (4-pack),1,3.84,08/06/19 07:28,"384 Cherry St, Boston, MA 02215" -240294,Wired Headphones,1,11.99,08/22/19 14:17,"765 13th St, San Francisco, CA 94016" -240295,AAA Batteries (4-pack),2,2.99,08/30/19 14:27,"358 Lake St, Atlanta, GA 30301" -240296,USB-C Charging Cable,1,11.95,08/12/19 14:17,"110 13th St, San Francisco, CA 94016" -240297,AA Batteries (4-pack),1,3.84,08/02/19 17:05,"375 Maple St, Austin, TX 73301" -240298,Lightning Charging Cable,1,14.95,08/10/19 11:44,"847 Cedar St, Atlanta, GA 30301" -240299,USB-C Charging Cable,1,11.95,08/05/19 22:07,"530 Willow St, San Francisco, CA 94016" -240300,Bose SoundSport Headphones,1,99.99,08/24/19 02:09,"908 6th St, San Francisco, CA 94016" -240301,Bose SoundSport Headphones,1,99.99,08/18/19 18:40,"530 Center St, Los Angeles, CA 90001" -240302,Google Phone,1,600,08/12/19 23:46,"763 Pine St, San Francisco, CA 94016" -240303,Apple Airpods Headphones,1,150,08/27/19 15:27,"116 Church St, Seattle, WA 98101" -240304,Apple Airpods Headphones,1,150,08/17/19 12:11,"785 Walnut St, Los Angeles, CA 90001" -240305,USB-C Charging Cable,1,11.95,08/08/19 21:35,"768 Lincoln St, Dallas, TX 75001" -240306,Bose SoundSport Headphones,1,99.99,08/27/19 08:18,"535 Wilson St, New York City, NY 10001" -240307,Apple Airpods Headphones,1,150,08/27/19 19:56,"884 South St, Los Angeles, CA 90001" -240308,AA Batteries (4-pack),1,3.84,08/22/19 20:16,"73 Maple St, Dallas, TX 75001" -240309,27in 4K Gaming Monitor,1,389.99,08/04/19 16:41,"179 Hill St, New York City, NY 10001" -240310,Google Phone,1,600,08/03/19 15:23,"593 Lincoln St, San Francisco, CA 94016" -240311,27in FHD Monitor,1,149.99,08/23/19 00:38,"816 Meadow St, Los Angeles, CA 90001" -240312,27in 4K Gaming Monitor,1,389.99,08/28/19 15:15,"737 Hill St, Los Angeles, CA 90001" -240313,Wired Headphones,3,11.99,08/18/19 16:58,"276 Park St, Portland, OR 97035" -240314,27in 4K Gaming Monitor,1,389.99,08/09/19 20:28,"27 Jefferson St, Los Angeles, CA 90001" -240315,AA Batteries (4-pack),1,3.84,08/13/19 16:22,"952 Hill St, San Francisco, CA 94016" -240316,AAA Batteries (4-pack),1,2.99,08/30/19 11:41,"861 8th St, New York City, NY 10001" -240317,AA Batteries (4-pack),1,3.84,08/03/19 22:22,"300 Ridge St, Atlanta, GA 30301" -240318,ThinkPad Laptop,1,999.99,08/30/19 12:17,"617 Lakeview St, San Francisco, CA 94016" -240319,Flatscreen TV,1,300,08/15/19 16:03,"686 Park St, Boston, MA 02215" -240320,34in Ultrawide Monitor,1,379.99,08/06/19 02:43,"5 Meadow St, New York City, NY 10001" -240321,AAA Batteries (4-pack),2,2.99,08/01/19 08:46,"383 Highland St, Atlanta, GA 30301" -240322,Bose SoundSport Headphones,1,99.99,08/05/19 18:26,"853 Dogwood St, San Francisco, CA 94016" -240323,Wired Headphones,1,11.99,08/01/19 17:06,"719 West St, New York City, NY 10001" -240324,AA Batteries (4-pack),1,3.84,08/07/19 13:34,"495 Lake St, San Francisco, CA 94016" -240325,AA Batteries (4-pack),2,3.84,08/20/19 19:13,"937 Willow St, Dallas, TX 75001" -240326,Lightning Charging Cable,1,14.95,08/07/19 10:43,"909 Johnson St, Seattle, WA 98101" -240327,Lightning Charging Cable,1,14.95,08/21/19 19:34,"557 Chestnut St, San Francisco, CA 94016" -240328,Lightning Charging Cable,1,14.95,08/16/19 01:17,"949 1st St, Los Angeles, CA 90001" -240329,27in FHD Monitor,1,149.99,08/29/19 06:24,"283 Elm St, San Francisco, CA 94016" -240330,27in FHD Monitor,1,149.99,08/09/19 02:33,"551 10th St, New York City, NY 10001" -240331,Flatscreen TV,1,300,08/21/19 17:15,"371 4th St, Portland, OR 97035" -240332,Lightning Charging Cable,1,14.95,08/07/19 15:27,"658 Lakeview St, Los Angeles, CA 90001" -240333,iPhone,1,700,08/06/19 16:22,"871 Meadow St, San Francisco, CA 94016" -240334,Macbook Pro Laptop,1,1700,08/22/19 09:04,"120 Willow St, San Francisco, CA 94016" -240335,20in Monitor,1,109.99,08/25/19 16:35,"734 Willow St, Boston, MA 02215" -240336,USB-C Charging Cable,1,11.95,08/04/19 08:05,"279 7th St, San Francisco, CA 94016" -240337,AAA Batteries (4-pack),2,2.99,08/13/19 10:17,"49 Lakeview St, Portland, OR 97035" -240338,Wired Headphones,1,11.99,08/08/19 19:22,"8 South St, Boston, MA 02215" -240339,AAA Batteries (4-pack),2,2.99,08/09/19 00:39,"417 Church St, San Francisco, CA 94016" -240340,ThinkPad Laptop,1,999.99,08/06/19 17:11,"350 Cedar St, Portland, ME 04101" -240341,Wired Headphones,1,11.99,08/11/19 00:45,"123 Willow St, San Francisco, CA 94016" -240342,20in Monitor,1,109.99,08/21/19 00:24,"622 Jackson St, Boston, MA 02215" -240343,USB-C Charging Cable,1,11.95,08/26/19 07:23,"930 2nd St, Portland, ME 04101" -240344,Wired Headphones,1,11.99,08/07/19 02:26,"291 Spruce St, San Francisco, CA 94016" -240345,AAA Batteries (4-pack),1,2.99,08/02/19 07:19,"110 Sunset St, Portland, OR 97035" -240346,Wired Headphones,1,11.99,08/26/19 10:50,"42 5th St, Los Angeles, CA 90001" -240347,Vareebadd Phone,1,400,08/09/19 11:29,"646 Church St, Austin, TX 73301" -240347,USB-C Charging Cable,1,11.95,08/09/19 11:29,"646 Church St, Austin, TX 73301" -240347,Bose SoundSport Headphones,1,99.99,08/09/19 11:29,"646 Church St, Austin, TX 73301" -240348,AA Batteries (4-pack),2,3.84,08/18/19 18:43,"576 Hill St, Boston, MA 02215" -240349,AAA Batteries (4-pack),1,2.99,08/25/19 19:00,"607 Ridge St, Austin, TX 73301" -240350,Bose SoundSport Headphones,1,99.99,08/03/19 13:27,"591 Jackson St, Seattle, WA 98101" -240351,USB-C Charging Cable,1,11.95,08/15/19 19:32,"238 6th St, Atlanta, GA 30301" -240352,AA Batteries (4-pack),1,3.84,08/30/19 22:30,"280 Spruce St, Los Angeles, CA 90001" -240353,Lightning Charging Cable,1,14.95,08/12/19 21:09,"797 Dogwood St, Atlanta, GA 30301" -240354,Google Phone,1,600,08/03/19 17:21,"47 Willow St, Los Angeles, CA 90001" -240354,Wired Headphones,1,11.99,08/03/19 17:21,"47 Willow St, Los Angeles, CA 90001" -240355,Wired Headphones,2,11.99,08/27/19 16:52,"42 Dogwood St, Los Angeles, CA 90001" -240356,Apple Airpods Headphones,1,150,08/03/19 20:35,"469 Elm St, Seattle, WA 98101" -240357,Bose SoundSport Headphones,1,99.99,08/09/19 08:17,"156 7th St, Boston, MA 02215" -240358,Wired Headphones,1,11.99,08/30/19 13:55,"720 Hickory St, Dallas, TX 75001" -240359,USB-C Charging Cable,1,11.95,08/11/19 14:30,"636 1st St, Seattle, WA 98101" -240360,Flatscreen TV,1,300,08/23/19 07:16,"729 Church St, Los Angeles, CA 90001" -240361,Wired Headphones,2,11.99,08/21/19 23:18,"19 14th St, Boston, MA 02215" -240362,AAA Batteries (4-pack),1,2.99,08/02/19 18:19,"338 Chestnut St, Seattle, WA 98101" -240363,AAA Batteries (4-pack),1,2.99,08/31/19 17:13,"694 Highland St, San Francisco, CA 94016" -240364,ThinkPad Laptop,1,999.99,08/31/19 09:54,"297 Main St, Austin, TX 73301" -240365,AA Batteries (4-pack),1,3.84,08/20/19 11:35,"224 Willow St, Dallas, TX 75001" -240366,Bose SoundSport Headphones,1,99.99,08/01/19 22:56,"235 7th St, Los Angeles, CA 90001" -240367,27in FHD Monitor,1,149.99,08/17/19 19:00,"218 Sunset St, Los Angeles, CA 90001" -240368,USB-C Charging Cable,1,11.95,08/29/19 17:12,"589 14th St, San Francisco, CA 94016" -240369,AAA Batteries (4-pack),1,2.99,08/26/19 20:24,"498 Hill St, San Francisco, CA 94016" -240370,Macbook Pro Laptop,1,1700,08/11/19 13:24,"937 Johnson St, Dallas, TX 75001" -240371,Apple Airpods Headphones,1,150,08/06/19 13:57,"690 7th St, Los Angeles, CA 90001" -240372,Apple Airpods Headphones,1,150,08/07/19 20:34,"56 Meadow St, New York City, NY 10001" -240373,Apple Airpods Headphones,1,150,08/26/19 18:04,"902 Hill St, Seattle, WA 98101" -240374,Flatscreen TV,1,300,08/27/19 22:02,"178 Lincoln St, Atlanta, GA 30301" -240375,USB-C Charging Cable,1,11.95,08/27/19 10:23,"337 Cherry St, Seattle, WA 98101" -240376,AAA Batteries (4-pack),1,2.99,08/09/19 01:26,"676 Lake St, Los Angeles, CA 90001" -240377,AA Batteries (4-pack),2,3.84,08/25/19 19:17,"866 Forest St, Los Angeles, CA 90001" -240378,Google Phone,1,600,08/05/19 08:27,"101 Cherry St, San Francisco, CA 94016" -240379,AA Batteries (4-pack),1,3.84,08/31/19 09:45,"528 Lakeview St, Dallas, TX 75001" -240380,Wired Headphones,1,11.99,08/12/19 16:04,"559 Washington St, Seattle, WA 98101" -240381,27in 4K Gaming Monitor,1,389.99,08/09/19 18:05,"971 Madison St, Dallas, TX 75001" -240382,Apple Airpods Headphones,1,150,08/25/19 21:26,"108 14th St, Los Angeles, CA 90001" -240383,AA Batteries (4-pack),1,3.84,08/16/19 07:53,"953 Ridge St, San Francisco, CA 94016" -240384,Wired Headphones,1,11.99,08/02/19 17:07,"8 Sunset St, San Francisco, CA 94016" -240385,ThinkPad Laptop,1,999.99,08/09/19 19:43,"369 Highland St, New York City, NY 10001" -240386,20in Monitor,1,109.99,08/24/19 21:39,"802 West St, Boston, MA 02215" -240387,USB-C Charging Cable,1,11.95,08/14/19 21:25,"191 2nd St, Portland, OR 97035" -240388,34in Ultrawide Monitor,1,379.99,08/17/19 18:02,"773 Adams St, Los Angeles, CA 90001" -240389,Lightning Charging Cable,1,14.95,08/12/19 10:06,"761 Washington St, Portland, OR 97035" -240390,iPhone,1,700,08/25/19 14:48,"182 Madison St, Dallas, TX 75001" -240391,Flatscreen TV,1,300,08/20/19 17:47,"594 Jefferson St, Boston, MA 02215" -240392,27in 4K Gaming Monitor,1,389.99,08/13/19 22:25,"138 Ridge St, Boston, MA 02215" -240393,Wired Headphones,1,11.99,08/28/19 13:17,"470 14th St, New York City, NY 10001" -240394,Lightning Charging Cable,1,14.95,08/10/19 22:27,"432 5th St, Seattle, WA 98101" -240395,iPhone,1,700,08/25/19 17:29,"181 Hickory St, Los Angeles, CA 90001" -240395,Lightning Charging Cable,1,14.95,08/25/19 17:29,"181 Hickory St, Los Angeles, CA 90001" -240396,Macbook Pro Laptop,1,1700,08/27/19 10:35,"349 Willow St, Boston, MA 02215" -240397,Apple Airpods Headphones,1,150,08/30/19 17:49,"10 10th St, San Francisco, CA 94016" -240398,AA Batteries (4-pack),1,3.84,08/19/19 13:35,"594 Lake St, Portland, OR 97035" -240399,34in Ultrawide Monitor,1,379.99,08/06/19 19:38,"355 13th St, New York City, NY 10001" -240400,Wired Headphones,1,11.99,08/17/19 10:31,"798 Hickory St, New York City, NY 10001" -240401,Wired Headphones,1,11.99,08/04/19 16:10,"555 Ridge St, Dallas, TX 75001" -240402,Apple Airpods Headphones,1,150,08/09/19 15:40,"876 Elm St, San Francisco, CA 94016" -240403,USB-C Charging Cable,1,11.95,08/15/19 16:52,"511 Center St, Atlanta, GA 30301" -240404,Apple Airpods Headphones,1,150,08/27/19 17:47,"688 12th St, San Francisco, CA 94016" -240405,AAA Batteries (4-pack),2,2.99,08/06/19 11:36,"733 Elm St, Los Angeles, CA 90001" -240406,Lightning Charging Cable,1,14.95,08/10/19 21:12,"361 Center St, Los Angeles, CA 90001" -240407,Wired Headphones,1,11.99,08/17/19 18:10,"882 Cedar St, New York City, NY 10001" -240408,Apple Airpods Headphones,1,150,08/05/19 12:38,"411 Church St, Dallas, TX 75001" -240409,27in 4K Gaming Monitor,1,389.99,08/23/19 15:28,"17 5th St, Portland, OR 97035" -240410,Apple Airpods Headphones,1,150,08/29/19 13:53,"771 South St, Boston, MA 02215" -240411,Lightning Charging Cable,1,14.95,08/08/19 21:50,"558 Johnson St, Los Angeles, CA 90001" -240412,USB-C Charging Cable,1,11.95,08/28/19 12:06,"831 Park St, Los Angeles, CA 90001" -240413,AA Batteries (4-pack),1,3.84,08/22/19 09:26,"696 Center St, New York City, NY 10001" -240414,Flatscreen TV,1,300,08/03/19 22:29,"182 Lincoln St, Austin, TX 73301" -240415,Lightning Charging Cable,1,14.95,08/21/19 17:09,"324 13th St, Los Angeles, CA 90001" -240416,AA Batteries (4-pack),2,3.84,08/17/19 19:35,"341 South St, Seattle, WA 98101" -240417,AAA Batteries (4-pack),1,2.99,08/22/19 17:44,"926 1st St, Boston, MA 02215" -240418,27in 4K Gaming Monitor,1,389.99,08/19/19 02:07,"547 Elm St, Seattle, WA 98101" -240419,Wired Headphones,1,11.99,08/22/19 13:50,"716 Elm St, Boston, MA 02215" -240420,USB-C Charging Cable,1,11.95,08/31/19 10:40,"166 South St, Austin, TX 73301" -240421,Macbook Pro Laptop,1,1700,08/26/19 12:26,"717 5th St, San Francisco, CA 94016" -240422,Apple Airpods Headphones,1,150,08/22/19 05:30,"944 7th St, San Francisco, CA 94016" -240423,USB-C Charging Cable,1,11.95,08/30/19 12:25,"818 6th St, San Francisco, CA 94016" -240424,USB-C Charging Cable,1,11.95,08/21/19 20:41,"268 14th St, Atlanta, GA 30301" -240425,AA Batteries (4-pack),1,3.84,08/18/19 14:57,"791 Hill St, Boston, MA 02215" -240426,Bose SoundSport Headphones,1,99.99,08/24/19 13:12,"748 South St, Los Angeles, CA 90001" -240427,20in Monitor,1,109.99,08/16/19 20:47,"78 4th St, New York City, NY 10001" -240428,Lightning Charging Cable,1,14.95,08/15/19 17:54,"368 Park St, San Francisco, CA 94016" -240429,AAA Batteries (4-pack),1,2.99,08/25/19 17:23,"403 Madison St, Boston, MA 02215" -240430,34in Ultrawide Monitor,1,379.99,08/24/19 11:32,"199 Dogwood St, New York City, NY 10001" -240431,Lightning Charging Cable,1,14.95,08/13/19 16:57,"476 Pine St, Los Angeles, CA 90001" -240432,Wired Headphones,1,11.99,08/09/19 20:32,"555 Forest St, Seattle, WA 98101" -240433,Flatscreen TV,1,300,08/06/19 11:06,"822 Jackson St, San Francisco, CA 94016" -240434,Macbook Pro Laptop,1,1700,08/06/19 18:51,"487 Highland St, Dallas, TX 75001" -240435,Lightning Charging Cable,1,14.95,08/16/19 21:53,"365 11th St, Boston, MA 02215" -240436,USB-C Charging Cable,1,11.95,08/20/19 10:47,"223 Center St, Portland, OR 97035" -240437,USB-C Charging Cable,1,11.95,08/03/19 18:55,"173 West St, Los Angeles, CA 90001" -240438,Apple Airpods Headphones,1,150,08/31/19 10:54,"880 Hickory St, Dallas, TX 75001" -240439,27in FHD Monitor,1,149.99,08/09/19 19:58,"800 Elm St, Portland, ME 04101" -240440,Wired Headphones,1,11.99,08/22/19 14:43,"679 10th St, Portland, OR 97035" -240441,Lightning Charging Cable,1,14.95,08/27/19 10:05,"349 7th St, Dallas, TX 75001" -240442,AA Batteries (4-pack),2,3.84,08/18/19 19:30,"832 10th St, San Francisco, CA 94016" -240443,Lightning Charging Cable,1,14.95,08/12/19 11:16,"214 5th St, Los Angeles, CA 90001" -240444,AA Batteries (4-pack),1,3.84,08/26/19 18:18,"236 12th St, Portland, ME 04101" -240445,Flatscreen TV,1,300,08/25/19 22:41,"312 Jefferson St, Los Angeles, CA 90001" -240446,ThinkPad Laptop,1,999.99,08/24/19 10:45,"483 Dogwood St, San Francisco, CA 94016" -240447,Bose SoundSport Headphones,1,99.99,08/27/19 14:23,"236 Sunset St, Atlanta, GA 30301" -240448,iPhone,1,700,08/12/19 22:16,"845 Jackson St, Boston, MA 02215" -240449,AAA Batteries (4-pack),1,2.99,08/21/19 06:20,"951 Ridge St, Seattle, WA 98101" -240450,Wired Headphones,1,11.99,08/27/19 20:14,"547 Johnson St, Boston, MA 02215" -240451,Wired Headphones,1,11.99,08/22/19 21:17,"899 Elm St, Los Angeles, CA 90001" -240452,Google Phone,1,600,08/15/19 23:21,"465 7th St, Los Angeles, CA 90001" -240453,Flatscreen TV,1,300,08/26/19 00:25,"889 Wilson St, Los Angeles, CA 90001" -240454,27in FHD Monitor,1,149.99,08/19/19 08:24,"65 Cedar St, Seattle, WA 98101" -240455,Lightning Charging Cable,1,14.95,08/10/19 08:21,"959 Church St, Dallas, TX 75001" -240456,Wired Headphones,1,11.99,08/01/19 12:14,"503 West St, Los Angeles, CA 90001" -240457,20in Monitor,1,109.99,08/03/19 12:12,"500 11th St, Boston, MA 02215" -240458,USB-C Charging Cable,1,11.95,08/19/19 14:53,"772 7th St, Portland, OR 97035" -240459,Lightning Charging Cable,1,14.95,08/15/19 13:51,"756 Main St, Los Angeles, CA 90001" -240460,AA Batteries (4-pack),1,3.84,08/15/19 14:27,"392 Washington St, San Francisco, CA 94016" -240461,AA Batteries (4-pack),1,3.84,08/03/19 16:31,"381 Ridge St, San Francisco, CA 94016" -240462,AAA Batteries (4-pack),1,2.99,08/07/19 11:42,"331 South St, San Francisco, CA 94016" -240463,AAA Batteries (4-pack),1,2.99,08/31/19 05:56,"738 Lincoln St, Dallas, TX 75001" -240464,AA Batteries (4-pack),1,3.84,08/28/19 17:30,"808 Spruce St, Boston, MA 02215" -240465,Lightning Charging Cable,1,14.95,08/15/19 16:59,"222 9th St, Portland, OR 97035" -240466,34in Ultrawide Monitor,1,379.99,08/02/19 12:33,"178 North St, Seattle, WA 98101" -240467,Lightning Charging Cable,1,14.95,08/07/19 22:40,"204 Wilson St, Los Angeles, CA 90001" -240468,USB-C Charging Cable,1,11.95,08/29/19 02:01,"883 South St, Portland, ME 04101" -240469,AAA Batteries (4-pack),1,2.99,08/24/19 12:58,"811 South St, Austin, TX 73301" -240470,Lightning Charging Cable,1,14.95,08/21/19 16:57,"13 Main St, Seattle, WA 98101" -240471,Wired Headphones,1,11.99,08/30/19 13:40,"109 Chestnut St, Boston, MA 02215" -240472,Bose SoundSport Headphones,1,99.99,08/04/19 17:41,"661 Park St, Portland, OR 97035" -240473,AA Batteries (4-pack),2,3.84,08/08/19 19:52,"478 Sunset St, Seattle, WA 98101" -240474,AA Batteries (4-pack),1,3.84,08/18/19 16:16,"663 Chestnut St, San Francisco, CA 94016" -240474,Wired Headphones,1,11.99,08/18/19 16:16,"663 Chestnut St, San Francisco, CA 94016" -240475,Apple Airpods Headphones,1,150,08/30/19 21:04,"612 1st St, Seattle, WA 98101" -240476,AAA Batteries (4-pack),1,2.99,08/09/19 21:03,"196 Meadow St, San Francisco, CA 94016" -240477,USB-C Charging Cable,1,11.95,08/20/19 13:41,"668 5th St, Los Angeles, CA 90001" -240478,Apple Airpods Headphones,1,150,08/10/19 17:37,"343 8th St, Seattle, WA 98101" -240479,AA Batteries (4-pack),1,3.84,08/13/19 19:36,"195 6th St, New York City, NY 10001" -240479,Wired Headphones,1,11.99,08/13/19 19:36,"195 6th St, New York City, NY 10001" -240480,AA Batteries (4-pack),1,3.84,08/24/19 11:10,"857 Jefferson St, Boston, MA 02215" -240481,Bose SoundSport Headphones,1,99.99,08/28/19 13:12,"480 6th St, Atlanta, GA 30301" -240482,AAA Batteries (4-pack),1,2.99,08/29/19 11:56,"82 Madison St, Seattle, WA 98101" -240483,LG Dryer,1,600.0,08/30/19 19:21,"682 Washington St, Austin, TX 73301" -240484,20in Monitor,1,109.99,08/25/19 13:49,"559 Cedar St, San Francisco, CA 94016" -240485,iPhone,1,700,08/02/19 21:10,"255 9th St, San Francisco, CA 94016" -240486,Lightning Charging Cable,1,14.95,08/23/19 16:18,"262 12th St, San Francisco, CA 94016" -240487,Wired Headphones,1,11.99,08/02/19 11:47,"37 7th St, Los Angeles, CA 90001" -240488,Apple Airpods Headphones,1,150,08/21/19 16:31,"797 1st St, Boston, MA 02215" -240489,27in 4K Gaming Monitor,1,389.99,08/08/19 19:49,"4 North St, New York City, NY 10001" -240490,27in 4K Gaming Monitor,1,389.99,08/14/19 20:31,"172 Forest St, Seattle, WA 98101" -240490,AAA Batteries (4-pack),1,2.99,08/14/19 20:31,"172 Forest St, Seattle, WA 98101" -240491,Apple Airpods Headphones,1,150,08/13/19 12:52,"711 Lakeview St, New York City, NY 10001" -240492,Lightning Charging Cable,1,14.95,08/16/19 06:45,"15 Wilson St, Dallas, TX 75001" -240493,Wired Headphones,1,11.99,08/17/19 17:48,"972 1st St, Los Angeles, CA 90001" -240494,AAA Batteries (4-pack),1,2.99,08/31/19 13:25,"937 1st St, Boston, MA 02215" -240495,Lightning Charging Cable,2,14.95,08/23/19 14:06,"566 Washington St, Atlanta, GA 30301" -240496,AAA Batteries (4-pack),1,2.99,08/24/19 19:34,"930 Willow St, New York City, NY 10001" -240497,AA Batteries (4-pack),1,3.84,08/30/19 13:08,"980 Dogwood St, San Francisco, CA 94016" -240498,AAA Batteries (4-pack),3,2.99,08/02/19 13:41,"630 Pine St, Dallas, TX 75001" -240499,Lightning Charging Cable,1,14.95,08/03/19 10:18,"221 12th St, Los Angeles, CA 90001" -240500,USB-C Charging Cable,1,11.95,08/29/19 20:59,"894 4th St, Seattle, WA 98101" -240501,USB-C Charging Cable,1,11.95,08/29/19 10:54,"34 12th St, Portland, OR 97035" -240502,Bose SoundSport Headphones,1,99.99,08/15/19 16:16,"685 Washington St, Austin, TX 73301" -240503,LG Dryer,1,600.0,08/14/19 00:41,"194 14th St, Portland, OR 97035" -240504,AA Batteries (4-pack),2,3.84,08/29/19 09:48,"347 Forest St, Boston, MA 02215" -240505,Google Phone,1,600,08/20/19 15:17,"433 Church St, Dallas, TX 75001" -240506,Lightning Charging Cable,1,14.95,08/24/19 23:01,"73 Ridge St, Dallas, TX 75001" -240507,Macbook Pro Laptop,1,1700,08/12/19 13:40,"232 14th St, Dallas, TX 75001" -240508,Apple Airpods Headphones,1,150,08/03/19 13:24,"529 Dogwood St, Los Angeles, CA 90001" -240509,ThinkPad Laptop,1,999.99,08/27/19 16:55,"968 Spruce St, Los Angeles, CA 90001" -240510,AA Batteries (4-pack),1,3.84,08/06/19 23:14,"152 7th St, Boston, MA 02215" -240511,AAA Batteries (4-pack),2,2.99,08/04/19 21:58,"913 6th St, Dallas, TX 75001" -240512,USB-C Charging Cable,1,11.95,08/22/19 07:32,"958 North St, Los Angeles, CA 90001" -240513,Apple Airpods Headphones,1,150,08/16/19 19:04,"900 Hill St, New York City, NY 10001" -240514,Wired Headphones,1,11.99,08/21/19 18:11,"267 Spruce St, Seattle, WA 98101" -240515,Lightning Charging Cable,1,14.95,08/13/19 13:46,"209 North St, New York City, NY 10001" -240516,Lightning Charging Cable,1,14.95,08/12/19 20:41,"62 Lincoln St, San Francisco, CA 94016" -240517,Lightning Charging Cable,1,14.95,08/07/19 10:17,"689 Lincoln St, San Francisco, CA 94016" -240518,AAA Batteries (4-pack),1,2.99,08/07/19 15:12,"222 Park St, Seattle, WA 98101" -240519,Bose SoundSport Headphones,1,99.99,08/31/19 20:12,"860 Washington St, Los Angeles, CA 90001" -240520,Wired Headphones,1,11.99,08/22/19 13:05,"906 9th St, Dallas, TX 75001" -240521,AAA Batteries (4-pack),1,2.99,08/18/19 15:11,"25 5th St, San Francisco, CA 94016" -240522,Apple Airpods Headphones,1,150,08/12/19 16:25,"205 Hill St, Atlanta, GA 30301" -240523,ThinkPad Laptop,1,999.99,08/19/19 09:39,"557 Ridge St, Dallas, TX 75001" -240524,Wired Headphones,1,11.99,08/07/19 19:46,"556 Chestnut St, San Francisco, CA 94016" -240525,Apple Airpods Headphones,1,150,08/10/19 16:28,"15 Hill St, Seattle, WA 98101" -240526,Lightning Charging Cable,1,14.95,08/26/19 20:07,"542 6th St, Dallas, TX 75001" -240527,Apple Airpods Headphones,1,150,08/16/19 09:42,"298 14th St, Los Angeles, CA 90001" -240528,USB-C Charging Cable,1,11.95,08/21/19 06:39,"693 Johnson St, San Francisco, CA 94016" -240529,Lightning Charging Cable,1,14.95,08/29/19 11:13,"275 Hill St, Seattle, WA 98101" -240530,27in 4K Gaming Monitor,1,389.99,08/31/19 11:44,"28 Ridge St, San Francisco, CA 94016" -240531,USB-C Charging Cable,1,11.95,08/20/19 09:57,"911 Maple St, Dallas, TX 75001" -240532,USB-C Charging Cable,1,11.95,08/16/19 08:55,"213 Center St, New York City, NY 10001" -240533,Bose SoundSport Headphones,1,99.99,08/30/19 12:27,"687 Pine St, San Francisco, CA 94016" -240534,Lightning Charging Cable,1,14.95,08/15/19 23:30,"805 Dogwood St, Boston, MA 02215" -240535,Wired Headphones,1,11.99,08/21/19 12:43,"182 Maple St, Dallas, TX 75001" -240536,LG Washing Machine,1,600.0,08/02/19 16:38,"113 Lake St, Portland, OR 97035" -240537,Wired Headphones,1,11.99,08/29/19 17:26,"358 5th St, New York City, NY 10001" -240538,Wired Headphones,1,11.99,08/12/19 19:15,"721 Spruce St, San Francisco, CA 94016" -240539,ThinkPad Laptop,1,999.99,08/15/19 21:27,"322 Walnut St, New York City, NY 10001" -240540,34in Ultrawide Monitor,1,379.99,08/27/19 19:23,"603 Jefferson St, San Francisco, CA 94016" -240541,iPhone,1,700,08/19/19 16:26,"418 14th St, Los Angeles, CA 90001" -240542,Wired Headphones,2,11.99,08/15/19 21:43,"221 12th St, Portland, OR 97035" -240543,Wired Headphones,1,11.99,08/21/19 20:00,"500 13th St, Portland, OR 97035" -240544,AA Batteries (4-pack),1,3.84,08/12/19 13:28,"43 Jefferson St, Boston, MA 02215" -240545,Bose SoundSport Headphones,1,99.99,08/06/19 16:15,"229 West St, Los Angeles, CA 90001" -240546,AAA Batteries (4-pack),1,2.99,08/01/19 23:26,"654 Ridge St, Seattle, WA 98101" -240547,ThinkPad Laptop,1,999.99,08/27/19 20:56,"606 North St, San Francisco, CA 94016" -240548,Wired Headphones,1,11.99,08/13/19 03:34,"626 1st St, Boston, MA 02215" -240549,Bose SoundSport Headphones,1,99.99,08/06/19 11:32,"843 South St, Portland, ME 04101" -240550,Google Phone,1,600,08/14/19 11:07,"237 13th St, New York City, NY 10001" -240550,Bose SoundSport Headphones,1,99.99,08/14/19 11:07,"237 13th St, New York City, NY 10001" -240551,Wired Headphones,3,11.99,08/24/19 11:46,"780 Dogwood St, San Francisco, CA 94016" -240552,USB-C Charging Cable,1,11.95,08/03/19 11:00,"446 12th St, San Francisco, CA 94016" -240553,Bose SoundSport Headphones,1,99.99,08/03/19 08:38,"533 11th St, New York City, NY 10001" -240554,Bose SoundSport Headphones,1,99.99,08/31/19 14:03,"988 Park St, San Francisco, CA 94016" -240555,AAA Batteries (4-pack),1,2.99,08/31/19 01:02,"931 South St, Boston, MA 02215" -240556,AAA Batteries (4-pack),2,2.99,08/18/19 21:53,"354 Madison St, San Francisco, CA 94016" -240557,Apple Airpods Headphones,1,150,08/08/19 18:41,"16 Highland St, San Francisco, CA 94016" -240558,Wired Headphones,2,11.99,08/31/19 13:37,"993 9th St, San Francisco, CA 94016" -240559,Lightning Charging Cable,1,14.95,08/29/19 14:10,"868 Lincoln St, New York City, NY 10001" -240560,Lightning Charging Cable,1,14.95,08/25/19 09:10,"214 Ridge St, Atlanta, GA 30301" -240561,AAA Batteries (4-pack),1,2.99,08/05/19 11:28,"943 Main St, Boston, MA 02215" -240562,iPhone,1,700,08/16/19 19:21,"822 8th St, New York City, NY 10001" -240563,Bose SoundSport Headphones,1,99.99,08/09/19 21:44,"107 Hickory St, Atlanta, GA 30301" -240564,USB-C Charging Cable,1,11.95,08/27/19 02:11,"374 Hill St, San Francisco, CA 94016" -240565,27in FHD Monitor,1,149.99,08/30/19 11:10,"338 2nd St, Los Angeles, CA 90001" -240566,AA Batteries (4-pack),1,3.84,08/17/19 09:47,"480 Maple St, Dallas, TX 75001" -240567,27in FHD Monitor,1,149.99,08/04/19 18:11,"893 2nd St, Portland, OR 97035" -240568,Apple Airpods Headphones,1,150,08/22/19 15:45,"428 Church St, Seattle, WA 98101" -240569,Lightning Charging Cable,1,14.95,08/31/19 22:11,"455 10th St, Portland, OR 97035" -240570,USB-C Charging Cable,1,11.95,08/14/19 19:35,"280 14th St, Los Angeles, CA 90001" -240571,USB-C Charging Cable,1,11.95,08/16/19 10:55,"357 Sunset St, San Francisco, CA 94016" -240572,Bose SoundSport Headphones,1,99.99,08/21/19 19:25,"665 Wilson St, Austin, TX 73301" -240573,Wired Headphones,1,11.99,08/01/19 09:57,"283 River St, Boston, MA 02215" -240574,AA Batteries (4-pack),1,3.84,08/19/19 11:02,"557 11th St, San Francisco, CA 94016" -240575,34in Ultrawide Monitor,1,379.99,08/02/19 19:43,"882 14th St, Boston, MA 02215" -240576,Wired Headphones,1,11.99,08/21/19 22:04,"71 West St, San Francisco, CA 94016" -240577,Lightning Charging Cable,1,14.95,08/11/19 00:34,"888 River St, San Francisco, CA 94016" -240578,AA Batteries (4-pack),1,3.84,08/02/19 17:20,"638 Highland St, Dallas, TX 75001" -240579,Macbook Pro Laptop,1,1700,08/10/19 20:42,"647 South St, Seattle, WA 98101" -240580,AAA Batteries (4-pack),2,2.99,08/07/19 23:35,"559 Chestnut St, New York City, NY 10001" -240581,AAA Batteries (4-pack),1,2.99,08/22/19 09:38,"443 Cedar St, San Francisco, CA 94016" -240582,Lightning Charging Cable,1,14.95,08/04/19 07:45,"364 Madison St, Atlanta, GA 30301" -240583,AA Batteries (4-pack),1,3.84,08/26/19 19:39,"449 Center St, Boston, MA 02215" -240584,Bose SoundSport Headphones,1,99.99,08/29/19 02:49,"94 Meadow St, San Francisco, CA 94016" -240585,27in 4K Gaming Monitor,1,389.99,08/06/19 13:04,"641 West St, Dallas, TX 75001" -240586,Lightning Charging Cable,1,14.95,08/09/19 18:59,"164 10th St, Austin, TX 73301" -240587,27in FHD Monitor,1,149.99,08/18/19 13:44,"59 Dogwood St, Los Angeles, CA 90001" -240588,Lightning Charging Cable,1,14.95,08/10/19 16:40,"776 9th St, Austin, TX 73301" -240589,27in 4K Gaming Monitor,2,389.99,08/10/19 20:22,"862 Church St, Boston, MA 02215" -240590,27in 4K Gaming Monitor,1,389.99,08/26/19 07:18,"128 South St, New York City, NY 10001" -240591,Apple Airpods Headphones,1,150,08/21/19 14:13,"606 Jefferson St, Los Angeles, CA 90001" -240592,Wired Headphones,1,11.99,08/12/19 08:49,"571 Walnut St, Portland, OR 97035" -240593,AAA Batteries (4-pack),2,2.99,08/10/19 08:23,"411 Jefferson St, New York City, NY 10001" -240594,Lightning Charging Cable,1,14.95,08/04/19 17:55,"850 Willow St, Los Angeles, CA 90001" -240595,iPhone,1,700,08/12/19 23:02,"137 Willow St, San Francisco, CA 94016" -240596,Flatscreen TV,1,300,08/28/19 20:29,"419 Adams St, New York City, NY 10001" -240597,AAA Batteries (4-pack),1,2.99,08/29/19 17:02,"773 Elm St, San Francisco, CA 94016" -240598,34in Ultrawide Monitor,1,379.99,08/10/19 22:49,"872 River St, Seattle, WA 98101" -240599,Flatscreen TV,1,300,08/05/19 16:32,"853 Park St, Seattle, WA 98101" -240600,27in 4K Gaming Monitor,1,389.99,08/15/19 10:59,"469 10th St, San Francisco, CA 94016" -240601,Lightning Charging Cable,1,14.95,08/30/19 14:21,"596 Hill St, San Francisco, CA 94016" -240602,Wired Headphones,1,11.99,08/30/19 15:34,"358 Highland St, San Francisco, CA 94016" -240603,Apple Airpods Headphones,1,150,08/10/19 10:56,"870 Spruce St, New York City, NY 10001" -240604,Apple Airpods Headphones,1,150,08/04/19 07:02,"538 Walnut St, Austin, TX 73301" -240605,USB-C Charging Cable,1,11.95,08/14/19 15:01,"784 Pine St, Seattle, WA 98101" -240606,27in FHD Monitor,1,149.99,08/01/19 17:23,"700 River St, Los Angeles, CA 90001" -240607,USB-C Charging Cable,2,11.95,08/23/19 08:09,"981 Madison St, Austin, TX 73301" -240608,Wired Headphones,1,11.99,08/08/19 07:42,"170 Washington St, Seattle, WA 98101" -240609,USB-C Charging Cable,1,11.95,08/06/19 13:09,"310 2nd St, San Francisco, CA 94016" -240610,Google Phone,1,600,08/05/19 14:22,"331 Madison St, Seattle, WA 98101" -240611,AAA Batteries (4-pack),1,2.99,08/10/19 15:51,"32 Spruce St, New York City, NY 10001" -240612,AA Batteries (4-pack),1,3.84,08/19/19 23:26,"339 12th St, New York City, NY 10001" -240613,AA Batteries (4-pack),1,3.84,08/24/19 09:03,"557 Chestnut St, San Francisco, CA 94016" -240614,AA Batteries (4-pack),1,3.84,08/06/19 18:29,"507 Jefferson St, Los Angeles, CA 90001" -240615,iPhone,1,700,08/20/19 22:57,"568 Willow St, San Francisco, CA 94016" -240616,iPhone,1,700,08/20/19 10:06,"984 Chestnut St, Los Angeles, CA 90001" -240617,USB-C Charging Cable,1,11.95,08/08/19 20:47,"713 Church St, New York City, NY 10001" -240618,Apple Airpods Headphones,1,150,08/16/19 13:28,"520 Lakeview St, Atlanta, GA 30301" -240619,AA Batteries (4-pack),3,3.84,08/24/19 12:15,"50 13th St, Seattle, WA 98101" -240620,Wired Headphones,1,11.99,08/03/19 12:46,"685 Adams St, San Francisco, CA 94016" -240621,AAA Batteries (4-pack),1,2.99,08/31/19 15:35,"77 Church St, San Francisco, CA 94016" -240622,USB-C Charging Cable,1,11.95,08/08/19 18:37,"664 Spruce St, Los Angeles, CA 90001" -240623,AAA Batteries (4-pack),1,2.99,08/16/19 21:11,"315 Spruce St, New York City, NY 10001" -240624,Wired Headphones,1,11.99,08/30/19 12:09,"337 12th St, San Francisco, CA 94016" -240625,AA Batteries (4-pack),1,3.84,08/14/19 05:12,"958 Church St, New York City, NY 10001" -240626,34in Ultrawide Monitor,1,379.99,08/09/19 14:02,"356 8th St, Austin, TX 73301" -240627,USB-C Charging Cable,1,11.95,08/01/19 19:48,"865 Johnson St, Seattle, WA 98101" -240628,Google Phone,1,600,08/21/19 17:21,"668 14th St, San Francisco, CA 94016" -240629,Vareebadd Phone,1,400,08/19/19 13:08,"935 Madison St, New York City, NY 10001" -240629,USB-C Charging Cable,1,11.95,08/19/19 13:08,"935 Madison St, New York City, NY 10001" -240630,Wired Headphones,1,11.99,08/31/19 19:13,"348 Lincoln St, San Francisco, CA 94016" -240631,iPhone,1,700,08/20/19 10:21,"397 Hickory St, Austin, TX 73301" -240632,Apple Airpods Headphones,1,150,08/16/19 21:03,"173 Main St, Los Angeles, CA 90001" -240633,Bose SoundSport Headphones,1,99.99,08/13/19 22:35,"56 South St, San Francisco, CA 94016" -240634,Apple Airpods Headphones,1,150,08/12/19 17:01,"252 13th St, Los Angeles, CA 90001" -240635,AA Batteries (4-pack),1,3.84,08/18/19 14:02,"881 1st St, Seattle, WA 98101" -240636,Lightning Charging Cable,1,14.95,09/01/19 02:07,"63 1st St, Seattle, WA 98101" -240637,Wired Headphones,1,11.99,08/18/19 21:23,"754 Lincoln St, New York City, NY 10001" -240638,AA Batteries (4-pack),1,3.84,08/20/19 16:10,"747 Highland St, Boston, MA 02215" -240639,27in 4K Gaming Monitor,1,389.99,08/11/19 08:16,"564 South St, Atlanta, GA 30301" -240640,USB-C Charging Cable,1,11.95,08/03/19 18:27,"140 Adams St, Dallas, TX 75001" -240641,AA Batteries (4-pack),1,3.84,08/01/19 12:08,"663 Main St, San Francisco, CA 94016" -240642,Apple Airpods Headphones,1,150,08/20/19 15:05,"270 12th St, Portland, ME 04101" -240643,Lightning Charging Cable,1,14.95,08/31/19 22:56,"200 Adams St, Dallas, TX 75001" -240644,AAA Batteries (4-pack),1,2.99,08/08/19 11:37,"325 Madison St, Los Angeles, CA 90001" -240645,Wired Headphones,1,11.99,08/30/19 12:00,"160 13th St, San Francisco, CA 94016" -240646,34in Ultrawide Monitor,1,379.99,08/26/19 18:46,"688 Maple St, San Francisco, CA 94016" -240647,Google Phone,1,600,08/24/19 12:56,"930 Jackson St, Atlanta, GA 30301" -240647,USB-C Charging Cable,2,11.95,08/24/19 12:56,"930 Jackson St, Atlanta, GA 30301" -240648,AA Batteries (4-pack),1,3.84,08/20/19 20:34,"965 Jefferson St, Boston, MA 02215" -240649,Lightning Charging Cable,1,14.95,08/30/19 22:21,"189 Lake St, Seattle, WA 98101" -240650,Bose SoundSport Headphones,1,99.99,08/03/19 15:33,"321 Church St, Boston, MA 02215" -240651,Bose SoundSport Headphones,1,99.99,08/10/19 19:25,"933 10th St, San Francisco, CA 94016" -240652,27in 4K Gaming Monitor,1,389.99,08/08/19 11:00,"175 1st St, San Francisco, CA 94016" -240653,Flatscreen TV,1,300,08/03/19 09:51,"569 Church St, Austin, TX 73301" -240654,AA Batteries (4-pack),1,3.84,08/09/19 12:05,"670 River St, Dallas, TX 75001" -240655,34in Ultrawide Monitor,1,379.99,08/14/19 16:39,"913 Washington St, Dallas, TX 75001" -240656,AAA Batteries (4-pack),1,2.99,08/04/19 13:18,"961 Highland St, Boston, MA 02215" -240657,Lightning Charging Cable,1,14.95,08/26/19 21:43,"249 Cedar St, San Francisco, CA 94016" -240658,Bose SoundSport Headphones,1,99.99,08/30/19 21:55,"753 Cedar St, San Francisco, CA 94016" -240659,Bose SoundSport Headphones,1,99.99,08/02/19 19:22,"736 7th St, Seattle, WA 98101" -240660,AA Batteries (4-pack),1,3.84,08/05/19 22:10,"381 Pine St, Boston, MA 02215" -240661,27in 4K Gaming Monitor,1,389.99,08/14/19 14:53,"330 Cedar St, New York City, NY 10001" -240662,Wired Headphones,1,11.99,08/15/19 10:28,"777 Lake St, Austin, TX 73301" -240663,USB-C Charging Cable,2,11.95,08/31/19 09:38,"329 Elm St, New York City, NY 10001" -240664,Flatscreen TV,1,300,08/12/19 11:11,"535 14th St, Boston, MA 02215" -240665,Wired Headphones,1,11.99,08/25/19 06:15,"335 Maple St, Boston, MA 02215" -240666,27in FHD Monitor,1,149.99,08/19/19 14:02,"282 South St, Boston, MA 02215" -240667,iPhone,1,700,08/30/19 21:54,"773 Spruce St, Austin, TX 73301" -240667,Lightning Charging Cable,1,14.95,08/30/19 21:54,"773 Spruce St, Austin, TX 73301" -240668,34in Ultrawide Monitor,1,379.99,08/28/19 21:09,"454 Willow St, San Francisco, CA 94016" -240669,USB-C Charging Cable,1,11.95,08/26/19 10:41,"94 Hill St, Boston, MA 02215" -240670,AA Batteries (4-pack),2,3.84,08/21/19 21:57,"893 Highland St, Seattle, WA 98101" -240671,Lightning Charging Cable,1,14.95,08/07/19 09:11,"127 Maple St, San Francisco, CA 94016" -240672,Lightning Charging Cable,1,14.95,08/27/19 12:13,"50 2nd St, New York City, NY 10001" -240673,27in 4K Gaming Monitor,1,389.99,08/25/19 18:38,"781 Meadow St, Atlanta, GA 30301" -240674,AA Batteries (4-pack),1,3.84,08/22/19 20:11,"579 Walnut St, San Francisco, CA 94016" -240675,ThinkPad Laptop,1,999.99,08/07/19 15:37,"240 Meadow St, New York City, NY 10001" -240676,iPhone,1,700,08/31/19 07:04,"982 Pine St, San Francisco, CA 94016" -240677,AA Batteries (4-pack),1,3.84,08/19/19 15:08,"687 5th St, Austin, TX 73301" -240678,USB-C Charging Cable,1,11.95,08/23/19 10:54,"116 Spruce St, San Francisco, CA 94016" -240679,Wired Headphones,1,11.99,08/24/19 20:56,"764 5th St, San Francisco, CA 94016" -240680,Bose SoundSport Headphones,1,99.99,08/27/19 16:27,"91 South St, San Francisco, CA 94016" -240681,Apple Airpods Headphones,1,150,08/08/19 15:56,"15 Willow St, San Francisco, CA 94016" -240682,27in FHD Monitor,1,149.99,08/12/19 10:51,"869 Jefferson St, Austin, TX 73301" -240682,27in FHD Monitor,1,149.99,08/12/19 10:51,"869 Jefferson St, Austin, TX 73301" -240683,27in FHD Monitor,1,149.99,08/27/19 16:56,"584 11th St, San Francisco, CA 94016" -240684,Apple Airpods Headphones,1,150,08/13/19 22:45,"84 Spruce St, New York City, NY 10001" -240684,iPhone,1,700,08/13/19 22:45,"84 Spruce St, New York City, NY 10001" -240685,Vareebadd Phone,1,400,08/16/19 22:10,"47 Adams St, San Francisco, CA 94016" -240686,Lightning Charging Cable,3,14.95,08/31/19 15:47,"937 10th St, San Francisco, CA 94016" -240687,ThinkPad Laptop,1,999.99,08/14/19 00:45,"117 Elm St, San Francisco, CA 94016" -240688,Wired Headphones,1,11.99,08/01/19 11:25,"961 Adams St, Seattle, WA 98101" -240689,27in 4K Gaming Monitor,1,389.99,08/16/19 12:59,"708 Wilson St, Los Angeles, CA 90001" -240690,Wired Headphones,1,11.99,08/01/19 22:47,"521 Main St, San Francisco, CA 94016" -240691,AA Batteries (4-pack),1,3.84,08/12/19 14:32,"562 Spruce St, Austin, TX 73301" -240692,AA Batteries (4-pack),2,3.84,08/20/19 13:58,"351 Jackson St, Austin, TX 73301" -240692,AA Batteries (4-pack),1,3.84,08/20/19 13:58,"351 Jackson St, Austin, TX 73301" -240693,AA Batteries (4-pack),1,3.84,08/05/19 23:50,"327 Spruce St, Los Angeles, CA 90001" -240694,Lightning Charging Cable,1,14.95,08/17/19 20:21,"265 Church St, Los Angeles, CA 90001" -240695,AA Batteries (4-pack),1,3.84,08/28/19 18:53,"379 River St, Dallas, TX 75001" -240696,USB-C Charging Cable,1,11.95,08/09/19 22:49,"134 Wilson St, Los Angeles, CA 90001" -240697,27in 4K Gaming Monitor,1,389.99,08/10/19 13:38,"447 Spruce St, Atlanta, GA 30301" -240698,27in FHD Monitor,1,149.99,08/01/19 11:44,"774 Johnson St, Portland, OR 97035" -240699,Flatscreen TV,1,300,08/08/19 09:17,"571 Madison St, Boston, MA 02215" -240700,AAA Batteries (4-pack),1,2.99,08/17/19 23:00,"506 Maple St, Portland, OR 97035" -240701,Apple Airpods Headphones,1,150,08/26/19 16:02,"357 Elm St, New York City, NY 10001" -240702,Lightning Charging Cable,1,14.95,08/04/19 12:34,"799 Pine St, Atlanta, GA 30301" -240703,27in FHD Monitor,1,149.99,08/22/19 10:54,"925 Hill St, Dallas, TX 75001" -240704,Macbook Pro Laptop,1,1700,08/08/19 11:22,"761 Cedar St, Boston, MA 02215" -240705,Google Phone,1,600,08/03/19 06:51,"60 Main St, Dallas, TX 75001" -240706,27in 4K Gaming Monitor,1,389.99,08/25/19 05:32,"105 North St, Austin, TX 73301" -240707,Apple Airpods Headphones,1,150,08/04/19 19:10,"373 Cedar St, San Francisco, CA 94016" -240708,LG Washing Machine,1,600.0,08/31/19 19:26,"520 1st St, San Francisco, CA 94016" -240709,iPhone,1,700,08/22/19 19:26,"462 7th St, Boston, MA 02215" -240710,Vareebadd Phone,1,400,08/21/19 12:54,"957 6th St, Boston, MA 02215" -240710,USB-C Charging Cable,1,11.95,08/21/19 12:54,"957 6th St, Boston, MA 02215" -240711,AAA Batteries (4-pack),1,2.99,08/31/19 07:04,"973 Wilson St, New York City, NY 10001" -240712,Flatscreen TV,1,300,08/27/19 20:21,"666 Dogwood St, San Francisco, CA 94016" -240713,Apple Airpods Headphones,1,150,08/27/19 01:34,"273 1st St, Los Angeles, CA 90001" -240714,Lightning Charging Cable,1,14.95,08/20/19 11:14,"260 North St, Los Angeles, CA 90001" -240715,27in FHD Monitor,1,149.99,08/10/19 13:14,"709 North St, Dallas, TX 75001" -240716,Wired Headphones,1,11.99,08/29/19 13:23,"726 West St, Los Angeles, CA 90001" -240717,Bose SoundSport Headphones,1,99.99,08/22/19 17:43,"621 1st St, Los Angeles, CA 90001" -240718,iPhone,1,700,08/07/19 14:39,"76 Ridge St, Seattle, WA 98101" -240718,Bose SoundSport Headphones,1,99.99,08/07/19 14:39,"76 Ridge St, Seattle, WA 98101" -240719,Apple Airpods Headphones,1,150,08/03/19 09:29,"749 14th St, Los Angeles, CA 90001" -240720,AA Batteries (4-pack),1,3.84,08/25/19 09:11,"145 Pine St, San Francisco, CA 94016" -240721,Lightning Charging Cable,1,14.95,08/20/19 22:43,"523 Pine St, Atlanta, GA 30301" -240722,Wired Headphones,1,11.99,08/15/19 12:10,"700 5th St, Los Angeles, CA 90001" -240723,Bose SoundSport Headphones,1,99.99,08/04/19 17:01,"412 13th St, San Francisco, CA 94016" -240724,USB-C Charging Cable,1,11.95,08/11/19 17:00,"120 4th St, Portland, OR 97035" -240725,AAA Batteries (4-pack),1,2.99,08/16/19 13:24,"372 13th St, San Francisco, CA 94016" -240726,27in 4K Gaming Monitor,1,389.99,08/24/19 09:17,"301 5th St, New York City, NY 10001" -240727,USB-C Charging Cable,1,11.95,08/30/19 12:45,"888 Lincoln St, Boston, MA 02215" -240728,Apple Airpods Headphones,1,150,08/12/19 21:46,"430 Willow St, Portland, OR 97035" -240729,Lightning Charging Cable,1,14.95,08/17/19 16:42,"940 North St, Los Angeles, CA 90001" -240730,Flatscreen TV,1,300,08/09/19 09:03,"681 Adams St, Atlanta, GA 30301" -240731,AA Batteries (4-pack),1,3.84,08/17/19 17:16,"163 River St, Austin, TX 73301" -240732,AAA Batteries (4-pack),2,2.99,08/13/19 11:26,"513 North St, Los Angeles, CA 90001" -240733,Bose SoundSport Headphones,1,99.99,08/12/19 11:21,"341 Jackson St, San Francisco, CA 94016" -240734,Wired Headphones,1,11.99,08/24/19 21:42,"269 13th St, Atlanta, GA 30301" -240735,AAA Batteries (4-pack),1,2.99,08/27/19 09:33,"164 South St, Los Angeles, CA 90001" -240736,USB-C Charging Cable,1,11.95,08/20/19 15:03,"679 West St, Los Angeles, CA 90001" -240737,AA Batteries (4-pack),2,3.84,08/19/19 13:27,"229 Maple St, Austin, TX 73301" -240738,Apple Airpods Headphones,1,150,08/14/19 07:48,"230 7th St, Los Angeles, CA 90001" -240739,AAA Batteries (4-pack),1,2.99,08/22/19 18:27,"273 Cedar St, Portland, OR 97035" -240740,AA Batteries (4-pack),2,3.84,08/17/19 22:48,"35 9th St, San Francisco, CA 94016" -240741,27in 4K Gaming Monitor,1,389.99,08/12/19 11:46,"526 Washington St, Portland, OR 97035" -240742,AAA Batteries (4-pack),1,2.99,08/28/19 22:45,"138 Willow St, Dallas, TX 75001" -240742,Wired Headphones,2,11.99,08/28/19 22:45,"138 Willow St, Dallas, TX 75001" -240743,Bose SoundSport Headphones,1,99.99,08/26/19 11:50,"737 West St, Boston, MA 02215" -240744,Apple Airpods Headphones,1,150,08/28/19 12:30,"206 5th St, Boston, MA 02215" -240745,Lightning Charging Cable,1,14.95,08/11/19 21:29,"203 Willow St, Atlanta, GA 30301" -240746,USB-C Charging Cable,1,11.95,08/21/19 11:07,"353 River St, New York City, NY 10001" -240747,AAA Batteries (4-pack),1,2.99,08/14/19 20:42,"606 Lakeview St, Los Angeles, CA 90001" -240748,Bose SoundSport Headphones,1,99.99,08/23/19 07:23,"782 Church St, Austin, TX 73301" -240749,USB-C Charging Cable,2,11.95,08/01/19 20:10,"918 4th St, Boston, MA 02215" -240750,Lightning Charging Cable,1,14.95,08/18/19 13:15,"443 Chestnut St, San Francisco, CA 94016" -240751,34in Ultrawide Monitor,1,379.99,08/13/19 18:14,"919 Church St, Seattle, WA 98101" -240752,Wired Headphones,1,11.99,08/27/19 20:14,"16 13th St, San Francisco, CA 94016" -240753,Apple Airpods Headphones,1,150,08/23/19 22:38,"968 Walnut St, San Francisco, CA 94016" -240754,iPhone,1,700,08/28/19 13:51,"788 Adams St, Dallas, TX 75001" -240754,Lightning Charging Cable,1,14.95,08/28/19 13:51,"788 Adams St, Dallas, TX 75001" -240755,AA Batteries (4-pack),1,3.84,08/27/19 18:59,"450 Center St, Seattle, WA 98101" -240756,Apple Airpods Headphones,1,150,08/26/19 18:42,"616 Cedar St, Boston, MA 02215" -240757,USB-C Charging Cable,1,11.95,08/31/19 07:31,"580 13th St, San Francisco, CA 94016" -240758,Apple Airpods Headphones,1,150,08/01/19 20:10,"420 2nd St, Los Angeles, CA 90001" -240759,iPhone,1,700,08/20/19 22:38,"451 Highland St, Portland, ME 04101" -240760,Bose SoundSport Headphones,1,99.99,08/20/19 12:04,"214 Main St, San Francisco, CA 94016" -240761,USB-C Charging Cable,1,11.95,08/30/19 12:11,"685 8th St, Atlanta, GA 30301" -240762,27in FHD Monitor,1,149.99,08/21/19 16:44,"776 1st St, San Francisco, CA 94016" -240763,Wired Headphones,1,11.99,08/10/19 13:41,"600 10th St, Austin, TX 73301" -240764,AAA Batteries (4-pack),1,2.99,08/27/19 23:18,"413 Madison St, Atlanta, GA 30301" -240765,USB-C Charging Cable,1,11.95,08/28/19 18:07,"862 Ridge St, San Francisco, CA 94016" -240766,Wired Headphones,1,11.99,08/12/19 17:20,"716 Maple St, Boston, MA 02215" -240767,Bose SoundSport Headphones,1,99.99,08/06/19 07:25,"235 Forest St, Los Angeles, CA 90001" -240768,Google Phone,1,600,08/23/19 20:23,"615 Willow St, Boston, MA 02215" -240769,Flatscreen TV,1,300,08/23/19 06:40,"832 6th St, San Francisco, CA 94016" -240770,AA Batteries (4-pack),1,3.84,08/05/19 16:12,"367 6th St, Los Angeles, CA 90001" -240771,AAA Batteries (4-pack),2,2.99,08/25/19 15:01,"354 8th St, San Francisco, CA 94016" -240772,Bose SoundSport Headphones,1,99.99,08/26/19 20:52,"885 10th St, Seattle, WA 98101" -240773,AA Batteries (4-pack),2,3.84,08/29/19 07:53,"823 9th St, San Francisco, CA 94016" -240774,Lightning Charging Cable,2,14.95,08/26/19 09:04,"524 Spruce St, Los Angeles, CA 90001" -240774,Google Phone,1,600,08/26/19 09:04,"524 Spruce St, Los Angeles, CA 90001" -240775,AA Batteries (4-pack),1,3.84,08/07/19 16:46,"306 12th St, Boston, MA 02215" -240776,AA Batteries (4-pack),2,3.84,08/03/19 18:33,"290 10th St, Austin, TX 73301" -240777,USB-C Charging Cable,1,11.95,08/02/19 19:38,"293 Spruce St, Dallas, TX 75001" -240778,AAA Batteries (4-pack),4,2.99,08/07/19 08:52,"381 9th St, New York City, NY 10001" -240779,27in FHD Monitor,1,149.99,08/17/19 20:01,"881 Meadow St, Los Angeles, CA 90001" -240780,iPhone,1,700,08/26/19 22:36,"292 Church St, San Francisco, CA 94016" -240781,iPhone,1,700,08/19/19 22:26,"576 Sunset St, Portland, OR 97035" -240782,AAA Batteries (4-pack),1,2.99,08/16/19 12:17,"832 Chestnut St, San Francisco, CA 94016" -240783,AA Batteries (4-pack),1,3.84,08/13/19 10:34,"977 Dogwood St, San Francisco, CA 94016" -240784,20in Monitor,1,109.99,08/30/19 19:38,"511 Adams St, New York City, NY 10001" -240785,Wired Headphones,1,11.99,08/24/19 10:31,"304 8th St, Boston, MA 02215" -240786,Lightning Charging Cable,1,14.95,08/21/19 14:46,"727 5th St, New York City, NY 10001" -240787,ThinkPad Laptop,1,999.99,08/05/19 13:31,"266 Adams St, Boston, MA 02215" -240788,USB-C Charging Cable,1,11.95,08/10/19 20:15,"441 Center St, Los Angeles, CA 90001" -240789,27in 4K Gaming Monitor,1,389.99,08/18/19 10:49,"914 7th St, New York City, NY 10001" -,,,,, -240790,ThinkPad Laptop,1,999.99,08/15/19 21:51,"981 Center St, New York City, NY 10001" -240791,Macbook Pro Laptop,1,1700,08/04/19 19:09,"757 Jefferson St, Seattle, WA 98101" -240792,AA Batteries (4-pack),3,3.84,08/08/19 17:00,"237 Highland St, San Francisco, CA 94016" -240793,34in Ultrawide Monitor,1,379.99,08/10/19 19:52,"966 Dogwood St, New York City, NY 10001" -240794,Lightning Charging Cable,1,14.95,08/28/19 09:18,"440 Jackson St, San Francisco, CA 94016" -240795,Apple Airpods Headphones,1,150,08/26/19 22:08,"476 Main St, New York City, NY 10001" -240796,Apple Airpods Headphones,1,150,08/04/19 13:40,"849 5th St, Los Angeles, CA 90001" -240797,Bose SoundSport Headphones,1,99.99,08/15/19 08:19,"515 Hill St, Seattle, WA 98101" -240798,Wired Headphones,1,11.99,08/28/19 03:44,"285 Chestnut St, Dallas, TX 75001" -240799,AA Batteries (4-pack),1,3.84,08/08/19 17:36,"447 Lake St, Austin, TX 73301" -240800,27in 4K Gaming Monitor,1,389.99,08/14/19 14:46,"295 Wilson St, Austin, TX 73301" -240801,Apple Airpods Headphones,1,150,08/19/19 21:59,"926 Sunset St, Los Angeles, CA 90001" -240802,Lightning Charging Cable,1,14.95,08/30/19 19:09,"927 Church St, Dallas, TX 75001" -240803,AAA Batteries (4-pack),1,2.99,08/31/19 21:35,"951 5th St, Los Angeles, CA 90001" -240804,Bose SoundSport Headphones,1,99.99,08/23/19 11:45,"747 Chestnut St, San Francisco, CA 94016" -,,,,, -240805,Bose SoundSport Headphones,1,99.99,08/14/19 15:03,"69 Hickory St, San Francisco, CA 94016" -240806,LG Washing Machine,1,600.0,08/13/19 19:20,"979 1st St, Portland, ME 04101" -240807,Google Phone,1,600,08/04/19 18:59,"912 North St, Portland, OR 97035" -240808,ThinkPad Laptop,1,999.99,08/07/19 21:00,"468 Ridge St, Boston, MA 02215" -240809,34in Ultrawide Monitor,1,379.99,08/24/19 10:16,"731 14th St, San Francisco, CA 94016" -240810,iPhone,1,700,08/22/19 15:38,"570 Spruce St, Portland, OR 97035" -240810,Lightning Charging Cable,1,14.95,08/22/19 15:38,"570 Spruce St, Portland, OR 97035" -240811,Wired Headphones,1,11.99,08/26/19 17:23,"136 Cedar St, San Francisco, CA 94016" -240812,Wired Headphones,1,11.99,08/28/19 00:56,"215 South St, Portland, ME 04101" -240813,USB-C Charging Cable,1,11.95,08/25/19 13:54,"702 Johnson St, Seattle, WA 98101" -240814,34in Ultrawide Monitor,1,379.99,08/18/19 23:06,"709 7th St, San Francisco, CA 94016" -240815,Wired Headphones,1,11.99,08/05/19 11:43,"944 Highland St, San Francisco, CA 94016" -240816,USB-C Charging Cable,1,11.95,08/22/19 13:20,"838 8th St, Austin, TX 73301" -240817,AA Batteries (4-pack),1,3.84,08/01/19 05:13,"463 1st St, San Francisco, CA 94016" -240818,Wired Headphones,2,11.99,08/02/19 15:49,"521 Forest St, Austin, TX 73301" -240819,Wired Headphones,1,11.99,08/11/19 14:30,"309 Highland St, Los Angeles, CA 90001" -240820,Wired Headphones,1,11.99,08/14/19 15:29,"635 8th St, Dallas, TX 75001" -240821,27in 4K Gaming Monitor,1,389.99,08/18/19 14:56,"96 Pine St, Austin, TX 73301" -240822,Lightning Charging Cable,1,14.95,08/16/19 20:54,"252 1st St, San Francisco, CA 94016" -240823,AAA Batteries (4-pack),1,2.99,08/24/19 10:35,"828 14th St, San Francisco, CA 94016" -240824,Wired Headphones,1,11.99,08/25/19 19:11,"548 Johnson St, New York City, NY 10001" -240825,Lightning Charging Cable,1,14.95,08/18/19 10:44,"946 Hill St, Portland, ME 04101" -240826,20in Monitor,1,109.99,08/20/19 15:36,"747 Johnson St, Dallas, TX 75001" -240827,USB-C Charging Cable,1,11.95,08/07/19 12:42,"184 10th St, Dallas, TX 75001" -240828,LG Washing Machine,1,600.0,08/28/19 18:49,"756 10th St, Dallas, TX 75001" -240829,Lightning Charging Cable,1,14.95,08/24/19 13:47,"720 9th St, San Francisco, CA 94016" -240830,34in Ultrawide Monitor,1,379.99,08/25/19 22:56,"792 2nd St, Dallas, TX 75001" -240831,AA Batteries (4-pack),1,3.84,08/22/19 20:56,"595 Forest St, New York City, NY 10001" -240832,AAA Batteries (4-pack),1,2.99,08/04/19 22:04,"407 7th St, Los Angeles, CA 90001" -240833,Apple Airpods Headphones,1,150,08/12/19 21:10,"525 4th St, Los Angeles, CA 90001" -240834,AAA Batteries (4-pack),1,2.99,08/17/19 10:14,"333 Maple St, San Francisco, CA 94016" -240835,20in Monitor,1,109.99,08/08/19 15:31,"204 Johnson St, Los Angeles, CA 90001" -240836,34in Ultrawide Monitor,1,379.99,08/11/19 21:27,"985 Pine St, San Francisco, CA 94016" -240837,USB-C Charging Cable,1,11.95,08/25/19 08:58,"923 Sunset St, Los Angeles, CA 90001" -240838,AAA Batteries (4-pack),1,2.99,08/22/19 21:25,"222 Hickory St, New York City, NY 10001" -240839,Wired Headphones,1,11.99,08/08/19 05:05,"29 Hickory St, Portland, ME 04101" -240840,AA Batteries (4-pack),1,3.84,08/14/19 16:03,"52 Cedar St, New York City, NY 10001" -240841,AA Batteries (4-pack),1,3.84,08/24/19 13:04,"198 5th St, Boston, MA 02215" -240842,Apple Airpods Headphones,1,150,08/28/19 08:23,"519 Forest St, Los Angeles, CA 90001" -240843,Apple Airpods Headphones,1,150,08/22/19 13:57,"245 Washington St, Seattle, WA 98101" -240844,Google Phone,1,600,08/08/19 18:50,"36 Highland St, Atlanta, GA 30301" -240845,USB-C Charging Cable,1,11.95,08/21/19 15:40,"541 9th St, Portland, ME 04101" -240845,AAA Batteries (4-pack),1,2.99,08/21/19 15:40,"541 9th St, Portland, ME 04101" -240846,AAA Batteries (4-pack),2,2.99,08/18/19 20:13,"580 Johnson St, San Francisco, CA 94016" -240847,ThinkPad Laptop,1,999.99,08/27/19 18:00,"561 Center St, Atlanta, GA 30301" -240848,USB-C Charging Cable,1,11.95,08/03/19 07:14,"907 Hill St, Portland, OR 97035" -240849,iPhone,1,700,08/15/19 15:03,"780 Elm St, Portland, ME 04101" -240850,Bose SoundSport Headphones,1,99.99,08/09/19 17:11,"590 Madison St, Dallas, TX 75001" -240851,27in 4K Gaming Monitor,1,389.99,08/01/19 12:59,"677 Hickory St, San Francisco, CA 94016" -240852,iPhone,1,700,08/02/19 21:14,"899 Lincoln St, Boston, MA 02215" -240852,Lightning Charging Cable,2,14.95,08/02/19 21:14,"899 Lincoln St, Boston, MA 02215" -240853,AA Batteries (4-pack),1,3.84,08/22/19 11:37,"827 Chestnut St, San Francisco, CA 94016" -240854,27in FHD Monitor,1,149.99,08/16/19 18:34,"144 Maple St, Boston, MA 02215" -240855,Wired Headphones,1,11.99,08/23/19 21:17,"996 Hickory St, Atlanta, GA 30301" -240856,USB-C Charging Cable,1,11.95,08/11/19 13:28,"659 6th St, New York City, NY 10001" -240857,AAA Batteries (4-pack),1,2.99,08/31/19 18:49,"256 Lincoln St, Boston, MA 02215" -240858,27in 4K Gaming Monitor,1,389.99,08/12/19 20:04,"846 12th St, Boston, MA 02215" -240859,Apple Airpods Headphones,2,150,08/15/19 20:39,"506 Madison St, Boston, MA 02215" -240860,AAA Batteries (4-pack),1,2.99,08/26/19 09:45,"986 7th St, San Francisco, CA 94016" -240861,34in Ultrawide Monitor,1,379.99,08/26/19 22:32,"840 Wilson St, Boston, MA 02215" -240862,Lightning Charging Cable,1,14.95,08/06/19 15:26,"410 Lincoln St, Los Angeles, CA 90001" -240862,AAA Batteries (4-pack),1,2.99,08/06/19 15:26,"410 Lincoln St, Los Angeles, CA 90001" -240863,Wired Headphones,1,11.99,08/31/19 10:55,"250 Pine St, Los Angeles, CA 90001" -240864,Flatscreen TV,1,300,08/26/19 10:38,"226 11th St, San Francisco, CA 94016" -240865,USB-C Charging Cable,1,11.95,08/05/19 20:47,"656 Dogwood St, New York City, NY 10001" -240866,USB-C Charging Cable,1,11.95,08/21/19 14:40,"196 Spruce St, San Francisco, CA 94016" -240867,Bose SoundSport Headphones,1,99.99,08/28/19 08:57,"897 Hill St, San Francisco, CA 94016" -240868,AA Batteries (4-pack),1,3.84,08/29/19 13:24,"573 Johnson St, Boston, MA 02215" -240869,Google Phone,1,600,08/23/19 06:41,"30 Forest St, Austin, TX 73301" -240869,USB-C Charging Cable,1,11.95,08/23/19 06:41,"30 Forest St, Austin, TX 73301" -240870,Vareebadd Phone,1,400,08/29/19 19:35,"253 Hickory St, Los Angeles, CA 90001" -240870,Bose SoundSport Headphones,1,99.99,08/29/19 19:35,"253 Hickory St, Los Angeles, CA 90001" -240871,Apple Airpods Headphones,1,150,08/01/19 12:56,"380 Wilson St, San Francisco, CA 94016" -240872,Apple Airpods Headphones,1,150,08/10/19 21:11,"220 14th St, Dallas, TX 75001" -240873,USB-C Charging Cable,1,11.95,08/16/19 18:29,"617 Wilson St, Austin, TX 73301" -240874,AAA Batteries (4-pack),1,2.99,08/24/19 12:46,"235 14th St, San Francisco, CA 94016" -240875,20in Monitor,1,109.99,08/11/19 12:30,"116 10th St, Atlanta, GA 30301" -240876,AAA Batteries (4-pack),2,2.99,08/14/19 16:54,"207 Maple St, San Francisco, CA 94016" -240877,USB-C Charging Cable,1,11.95,08/07/19 18:37,"302 9th St, Boston, MA 02215" -240878,27in FHD Monitor,1,149.99,08/23/19 13:15,"322 Adams St, Atlanta, GA 30301" -240879,Apple Airpods Headphones,1,150,08/12/19 14:00,"908 Maple St, New York City, NY 10001" -240880,Apple Airpods Headphones,1,150,08/30/19 05:57,"203 Chestnut St, Seattle, WA 98101" -240881,Bose SoundSport Headphones,1,99.99,08/15/19 09:12,"957 Church St, New York City, NY 10001" -240882,Wired Headphones,1,11.99,08/29/19 16:36,"865 9th St, Los Angeles, CA 90001" -240883,34in Ultrawide Monitor,1,379.99,08/24/19 09:36,"495 Lake St, Dallas, TX 75001" -240884,27in FHD Monitor,1,149.99,08/31/19 15:50,"675 Cedar St, San Francisco, CA 94016" -240885,Wired Headphones,1,11.99,08/07/19 15:52,"288 Church St, Los Angeles, CA 90001" -240886,27in 4K Gaming Monitor,1,389.99,08/01/19 19:37,"411 Cherry St, San Francisco, CA 94016" -240887,AA Batteries (4-pack),1,3.84,08/24/19 01:09,"919 4th St, Dallas, TX 75001" -240888,Bose SoundSport Headphones,1,99.99,08/08/19 21:27,"908 Jefferson St, Dallas, TX 75001" -240889,AA Batteries (4-pack),1,3.84,08/07/19 22:50,"181 Washington St, Boston, MA 02215" -240890,Apple Airpods Headphones,1,150,08/06/19 16:15,"96 Jefferson St, Austin, TX 73301" -240891,Wired Headphones,2,11.99,08/26/19 13:13,"300 8th St, Dallas, TX 75001" -240892,Lightning Charging Cable,1,14.95,08/22/19 21:23,"926 4th St, Dallas, TX 75001" -240893,AA Batteries (4-pack),2,3.84,08/18/19 23:34,"15 6th St, Seattle, WA 98101" -240894,27in FHD Monitor,1,149.99,08/23/19 04:45,"251 11th St, Portland, OR 97035" -240895,Lightning Charging Cable,1,14.95,08/16/19 05:24,"407 Chestnut St, Portland, OR 97035" -240896,27in FHD Monitor,1,149.99,08/22/19 16:19,"289 Ridge St, San Francisco, CA 94016" -240897,Google Phone,1,600,08/05/19 16:37,"501 Meadow St, Boston, MA 02215" -240897,Wired Headphones,1,11.99,08/05/19 16:37,"501 Meadow St, Boston, MA 02215" -240898,iPhone,1,700,08/04/19 22:20,"880 Park St, San Francisco, CA 94016" -240899,USB-C Charging Cable,1,11.95,08/13/19 04:40,"425 Elm St, Boston, MA 02215" -240900,USB-C Charging Cable,1,11.95,08/24/19 12:17,"947 Washington St, San Francisco, CA 94016" -240901,Wired Headphones,1,11.99,08/17/19 19:54,"61 1st St, Los Angeles, CA 90001" -240902,Bose SoundSport Headphones,1,99.99,08/22/19 13:18,"754 Spruce St, Austin, TX 73301" -240903,AA Batteries (4-pack),1,3.84,08/01/19 16:40,"150 Willow St, New York City, NY 10001" -240904,Wired Headphones,1,11.99,08/04/19 15:27,"636 11th St, San Francisco, CA 94016" -240905,27in FHD Monitor,1,149.99,08/26/19 14:07,"665 Highland St, Los Angeles, CA 90001" -240906,AA Batteries (4-pack),1,3.84,08/21/19 09:19,"736 Cherry St, Portland, OR 97035" -240907,USB-C Charging Cable,1,11.95,08/24/19 15:26,"493 North St, Dallas, TX 75001" -240908,iPhone,1,700,08/26/19 12:13,"335 9th St, San Francisco, CA 94016" -240909,Flatscreen TV,1,300,08/10/19 14:57,"387 Cedar St, Los Angeles, CA 90001" -240910,Flatscreen TV,1,300,08/01/19 07:38,"482 Washington St, San Francisco, CA 94016" -240911,Lightning Charging Cable,1,14.95,08/28/19 22:34,"134 Wilson St, Los Angeles, CA 90001" -240912,27in FHD Monitor,1,149.99,08/22/19 16:55,"792 Madison St, New York City, NY 10001" -240913,AA Batteries (4-pack),1,3.84,08/19/19 21:58,"777 Willow St, Los Angeles, CA 90001" -240914,AA Batteries (4-pack),1,3.84,08/19/19 18:10,"914 13th St, New York City, NY 10001" -240914,AA Batteries (4-pack),2,3.84,08/19/19 18:10,"914 13th St, New York City, NY 10001" -240915,Macbook Pro Laptop,1,1700,08/28/19 15:49,"473 Adams St, Seattle, WA 98101" -240916,Apple Airpods Headphones,1,150,08/07/19 12:16,"351 13th St, San Francisco, CA 94016" -240917,Wired Headphones,2,11.99,08/05/19 18:49,"983 Cedar St, New York City, NY 10001" -240918,Flatscreen TV,1,300,08/19/19 14:26,"246 Highland St, San Francisco, CA 94016" -240919,AA Batteries (4-pack),1,3.84,08/24/19 20:44,"372 Adams St, San Francisco, CA 94016" -240920,Wired Headphones,1,11.99,08/27/19 16:00,"705 Washington St, Los Angeles, CA 90001" -240921,Lightning Charging Cable,1,14.95,08/25/19 07:13,"528 Spruce St, Austin, TX 73301" -240922,AAA Batteries (4-pack),1,2.99,08/19/19 20:03,"431 Meadow St, Portland, OR 97035" -240923,Lightning Charging Cable,2,14.95,08/05/19 12:44,"548 8th St, San Francisco, CA 94016" -240924,AAA Batteries (4-pack),1,2.99,08/25/19 13:01,"678 Maple St, New York City, NY 10001" -240925,Lightning Charging Cable,1,14.95,08/24/19 12:21,"485 Highland St, Austin, TX 73301" -240926,AA Batteries (4-pack),1,3.84,08/16/19 11:21,"316 Spruce St, Los Angeles, CA 90001" -240927,AA Batteries (4-pack),2,3.84,08/13/19 22:33,"856 Elm St, New York City, NY 10001" -240928,Apple Airpods Headphones,1,150,08/14/19 18:36,"420 9th St, Dallas, TX 75001" -240929,ThinkPad Laptop,1,999.99,08/07/19 15:19,"601 Main St, San Francisco, CA 94016" -240930,Lightning Charging Cable,1,14.95,08/28/19 18:04,"439 West St, Atlanta, GA 30301" -240931,AAA Batteries (4-pack),1,2.99,08/20/19 00:09,"342 1st St, New York City, NY 10001" -240932,AA Batteries (4-pack),4,3.84,08/11/19 08:48,"494 Willow St, Atlanta, GA 30301" -240933,Wired Headphones,1,11.99,08/10/19 07:36,"434 Meadow St, Dallas, TX 75001" -240934,AA Batteries (4-pack),1,3.84,08/27/19 21:41,"546 13th St, New York City, NY 10001" -240935,AAA Batteries (4-pack),1,2.99,08/28/19 18:13,"179 Spruce St, San Francisco, CA 94016" -240936,USB-C Charging Cable,1,11.95,08/18/19 18:20,"151 Johnson St, Austin, TX 73301" -240937,Apple Airpods Headphones,1,150,08/24/19 17:48,"800 Cherry St, Los Angeles, CA 90001" -240938,27in 4K Gaming Monitor,1,389.99,08/29/19 17:36,"581 Chestnut St, Austin, TX 73301" -240939,27in FHD Monitor,1,149.99,08/20/19 06:51,"522 Pine St, New York City, NY 10001" -240940,USB-C Charging Cable,1,11.95,08/29/19 10:05,"525 13th St, San Francisco, CA 94016" -240941,27in 4K Gaming Monitor,1,389.99,08/16/19 20:04,"969 West St, Los Angeles, CA 90001" -240942,Bose SoundSport Headphones,1,99.99,08/25/19 13:04,"276 Park St, San Francisco, CA 94016" -240943,Apple Airpods Headphones,1,150,08/06/19 14:21,"963 Lakeview St, New York City, NY 10001" -240944,USB-C Charging Cable,2,11.95,08/05/19 14:35,"675 Madison St, Austin, TX 73301" -240945,34in Ultrawide Monitor,1,379.99,08/08/19 00:47,"426 1st St, Los Angeles, CA 90001" -,,,,, -240946,AAA Batteries (4-pack),2,2.99,08/30/19 17:58,"611 Jackson St, Los Angeles, CA 90001" -240947,USB-C Charging Cable,1,11.95,08/24/19 17:02,"176 Meadow St, Los Angeles, CA 90001" -240948,AAA Batteries (4-pack),1,2.99,08/03/19 11:14,"295 Madison St, Los Angeles, CA 90001" -240949,AA Batteries (4-pack),1,3.84,08/02/19 21:02,"81 Chestnut St, Los Angeles, CA 90001" -240950,Vareebadd Phone,1,400,08/25/19 23:27,"89 Madison St, Los Angeles, CA 90001" -240951,Apple Airpods Headphones,1,150,08/26/19 21:14,"323 Cedar St, Los Angeles, CA 90001" -240952,USB-C Charging Cable,1,11.95,08/17/19 17:23,"566 Johnson St, Los Angeles, CA 90001" -240953,Vareebadd Phone,1,400,08/06/19 11:59,"486 Johnson St, New York City, NY 10001" -240953,USB-C Charging Cable,1,11.95,08/06/19 11:59,"486 Johnson St, New York City, NY 10001" -240954,AAA Batteries (4-pack),2,2.99,08/16/19 16:37,"403 8th St, Atlanta, GA 30301" -240955,Lightning Charging Cable,1,14.95,08/17/19 12:24,"431 Cedar St, Dallas, TX 75001" -240956,27in 4K Gaming Monitor,1,389.99,08/28/19 18:51,"418 Chestnut St, Boston, MA 02215" -240957,20in Monitor,2,109.99,08/11/19 01:19,"887 Elm St, Atlanta, GA 30301" -240958,USB-C Charging Cable,1,11.95,08/06/19 11:25,"295 8th St, Portland, OR 97035" -240959,27in 4K Gaming Monitor,1,389.99,08/25/19 13:49,"119 Pine St, Seattle, WA 98101" -240960,34in Ultrawide Monitor,1,379.99,08/12/19 11:43,"676 Main St, Dallas, TX 75001" -240961,27in FHD Monitor,1,149.99,08/23/19 12:35,"331 Church St, New York City, NY 10001" -240962,AA Batteries (4-pack),1,3.84,08/14/19 07:17,"180 Center St, Boston, MA 02215" -240963,Wired Headphones,1,11.99,08/16/19 22:16,"600 Meadow St, San Francisco, CA 94016" -240964,USB-C Charging Cable,1,11.95,08/01/19 21:45,"765 River St, Austin, TX 73301" -240965,Apple Airpods Headphones,1,150,08/14/19 12:07,"323 Main St, New York City, NY 10001" -240966,Wired Headphones,1,11.99,08/06/19 08:54,"138 Park St, Dallas, TX 75001" -240967,27in 4K Gaming Monitor,1,389.99,08/20/19 01:47,"558 South St, Atlanta, GA 30301" -240968,AAA Batteries (4-pack),1,2.99,08/28/19 20:29,"537 Meadow St, Seattle, WA 98101" -240969,USB-C Charging Cable,1,11.95,08/30/19 19:40,"396 8th St, San Francisco, CA 94016" -240970,Vareebadd Phone,2,400,08/16/19 21:42,"429 Meadow St, New York City, NY 10001" -240971,AA Batteries (4-pack),1,3.84,08/30/19 17:00,"23 River St, Seattle, WA 98101" -240972,27in FHD Monitor,1,149.99,08/12/19 12:37,"878 10th St, Seattle, WA 98101" -240973,USB-C Charging Cable,1,11.95,08/02/19 11:00,"705 Park St, New York City, NY 10001" -240974,27in 4K Gaming Monitor,1,389.99,08/24/19 12:00,"219 10th St, New York City, NY 10001" -240975,Lightning Charging Cable,1,14.95,08/27/19 06:31,"73 Park St, New York City, NY 10001" -240976,AAA Batteries (4-pack),1,2.99,08/14/19 19:43,"486 11th St, Atlanta, GA 30301" -240977,Macbook Pro Laptop,1,1700,08/10/19 09:07,"446 8th St, San Francisco, CA 94016" -240978,Apple Airpods Headphones,1,150,08/29/19 15:34,"865 13th St, San Francisco, CA 94016" -240979,AAA Batteries (4-pack),1,2.99,08/14/19 10:00,"410 Highland St, Portland, ME 04101" -240980,Lightning Charging Cable,1,14.95,08/05/19 18:43,"786 13th St, Atlanta, GA 30301" -240981,AA Batteries (4-pack),1,3.84,08/22/19 08:03,"991 Main St, Boston, MA 02215" -240982,AAA Batteries (4-pack),1,2.99,08/31/19 16:11,"230 Wilson St, Atlanta, GA 30301" -240983,AAA Batteries (4-pack),1,2.99,08/26/19 22:41,"346 Willow St, San Francisco, CA 94016" -240984,Wired Headphones,1,11.99,08/15/19 10:32,"785 Lakeview St, New York City, NY 10001" -240985,USB-C Charging Cable,1,11.95,08/23/19 19:21,"447 River St, San Francisco, CA 94016" -240986,USB-C Charging Cable,1,11.95,08/15/19 23:22,"573 Meadow St, Atlanta, GA 30301" -240987,Wired Headphones,1,11.99,08/19/19 15:06,"938 1st St, Austin, TX 73301" -240988,AA Batteries (4-pack),1,3.84,08/17/19 00:49,"108 Dogwood St, Boston, MA 02215" -240989,AAA Batteries (4-pack),1,2.99,08/31/19 13:18,"25 Madison St, Atlanta, GA 30301" -240990,AAA Batteries (4-pack),1,2.99,08/14/19 21:51,"326 Ridge St, Dallas, TX 75001" -240991,Wired Headphones,1,11.99,08/11/19 20:48,"31 7th St, New York City, NY 10001" -240992,Flatscreen TV,1,300,08/17/19 09:54,"58 Highland St, New York City, NY 10001" -240993,Apple Airpods Headphones,1,150,08/26/19 10:31,"86 2nd St, San Francisco, CA 94016" -240994,AAA Batteries (4-pack),1,2.99,08/04/19 10:52,"478 10th St, Los Angeles, CA 90001" -240995,Bose SoundSport Headphones,1,99.99,08/06/19 12:22,"609 7th St, Boston, MA 02215" -240996,27in FHD Monitor,1,149.99,08/13/19 20:36,"94 Jefferson St, Los Angeles, CA 90001" -240997,Flatscreen TV,1,300,08/24/19 12:38,"945 Meadow St, Dallas, TX 75001" -240998,AAA Batteries (4-pack),1,2.99,08/19/19 13:54,"886 Jefferson St, Boston, MA 02215" -240999,Wired Headphones,1,11.99,08/02/19 08:41,"860 8th St, New York City, NY 10001" -241000,Apple Airpods Headphones,1,150,08/14/19 09:20,"434 Pine St, New York City, NY 10001" -241001,Google Phone,1,600,08/13/19 12:34,"238 Willow St, Seattle, WA 98101" -241002,AAA Batteries (4-pack),2,2.99,08/21/19 17:45,"196 Spruce St, San Francisco, CA 94016" -241003,Macbook Pro Laptop,1,1700,08/09/19 14:43,"133 11th St, San Francisco, CA 94016" -241004,AA Batteries (4-pack),3,3.84,08/19/19 09:13,"735 Willow St, San Francisco, CA 94016" -241005,Lightning Charging Cable,1,14.95,08/20/19 09:54,"303 Spruce St, Boston, MA 02215" -241006,Lightning Charging Cable,1,14.95,08/04/19 12:30,"969 Lakeview St, San Francisco, CA 94016" -241007,AAA Batteries (4-pack),1,2.99,08/18/19 13:12,"791 8th St, Portland, OR 97035" -241008,AA Batteries (4-pack),1,3.84,08/17/19 12:11,"850 North St, Los Angeles, CA 90001" -241009,Flatscreen TV,1,300,08/27/19 14:24,"501 12th St, Boston, MA 02215" -241010,Vareebadd Phone,1,400,08/15/19 00:13,"516 Lincoln St, Seattle, WA 98101" -241010,Wired Headphones,1,11.99,08/15/19 00:13,"516 Lincoln St, Seattle, WA 98101" -241011,AAA Batteries (4-pack),1,2.99,08/04/19 10:31,"219 7th St, Dallas, TX 75001" -241012,Lightning Charging Cable,1,14.95,08/18/19 18:14,"772 10th St, Seattle, WA 98101" -241013,iPhone,1,700,08/16/19 01:49,"296 Hill St, San Francisco, CA 94016" -241013,Wired Headphones,1,11.99,08/16/19 01:49,"296 Hill St, San Francisco, CA 94016" -241014,AA Batteries (4-pack),2,3.84,08/25/19 15:09,"665 Highland St, San Francisco, CA 94016" -241015,27in FHD Monitor,1,149.99,08/22/19 13:05,"799 South St, Dallas, TX 75001" -241016,AAA Batteries (4-pack),1,2.99,08/13/19 08:55,"865 2nd St, San Francisco, CA 94016" -241017,ThinkPad Laptop,1,999.99,08/31/19 01:28,"884 12th St, Portland, ME 04101" -241018,AAA Batteries (4-pack),1,2.99,08/03/19 17:16,"518 Cherry St, Austin, TX 73301" -241019,27in FHD Monitor,1,149.99,08/31/19 18:43,"86 Pine St, New York City, NY 10001" -241020,USB-C Charging Cable,1,11.95,08/16/19 17:20,"643 River St, San Francisco, CA 94016" -241020,Lightning Charging Cable,1,14.95,08/16/19 17:20,"643 River St, San Francisco, CA 94016" -241021,Google Phone,1,600,08/20/19 09:12,"396 South St, San Francisco, CA 94016" -241022,ThinkPad Laptop,1,999.99,08/16/19 12:52,"48 14th St, New York City, NY 10001" -241023,Macbook Pro Laptop,1,1700,08/21/19 04:04,"268 Jackson St, Seattle, WA 98101" -241024,Flatscreen TV,1,300,08/19/19 23:09,"898 2nd St, Portland, OR 97035" -241025,Google Phone,1,600,08/07/19 16:29,"697 5th St, Boston, MA 02215" -241025,USB-C Charging Cable,1,11.95,08/07/19 16:29,"697 5th St, Boston, MA 02215" -241026,AA Batteries (4-pack),1,3.84,08/09/19 11:00,"753 8th St, Austin, TX 73301" -241027,34in Ultrawide Monitor,1,379.99,08/15/19 11:48,"954 2nd St, Austin, TX 73301" -241028,Lightning Charging Cable,1,14.95,08/26/19 00:18,"43 Lake St, Dallas, TX 75001" -241029,Apple Airpods Headphones,1,150,08/25/19 22:10,"894 13th St, Boston, MA 02215" -241030,Apple Airpods Headphones,1,150,08/11/19 11:20,"525 West St, Austin, TX 73301" -241031,Wired Headphones,1,11.99,08/12/19 16:37,"176 9th St, San Francisco, CA 94016" -241032,20in Monitor,1,109.99,08/07/19 14:58,"828 Lincoln St, Boston, MA 02215" -241033,AA Batteries (4-pack),1,3.84,08/21/19 01:18,"543 North St, Boston, MA 02215" -241034,USB-C Charging Cable,2,11.95,08/20/19 23:25,"436 14th St, San Francisco, CA 94016" -241035,Wired Headphones,1,11.99,08/13/19 14:25,"223 7th St, Seattle, WA 98101" -241036,USB-C Charging Cable,1,11.95,08/18/19 13:09,"728 Cherry St, Atlanta, GA 30301" -241037,USB-C Charging Cable,1,11.95,08/11/19 14:58,"566 North St, Los Angeles, CA 90001" -241038,Apple Airpods Headphones,1,150,08/29/19 05:54,"535 Chestnut St, Atlanta, GA 30301" -241039,AA Batteries (4-pack),1,3.84,08/27/19 09:33,"157 Main St, Austin, TX 73301" -241040,Lightning Charging Cable,1,14.95,08/14/19 23:37,"98 Willow St, San Francisco, CA 94016" -241041,Wired Headphones,1,11.99,08/11/19 17:06,"400 Meadow St, Atlanta, GA 30301" -241042,AA Batteries (4-pack),1,3.84,08/26/19 17:49,"75 Park St, Los Angeles, CA 90001" -241043,Apple Airpods Headphones,1,150,08/06/19 12:35,"1 Madison St, San Francisco, CA 94016" -241044,27in 4K Gaming Monitor,1,389.99,08/23/19 21:45,"645 South St, Los Angeles, CA 90001" -241045,Vareebadd Phone,1,400,08/25/19 11:48,"766 Elm St, Portland, ME 04101" -241045,USB-C Charging Cable,1,11.95,08/25/19 11:48,"766 Elm St, Portland, ME 04101" -241046,Apple Airpods Headphones,1,150,08/31/19 20:14,"649 Meadow St, Boston, MA 02215" -241047,27in 4K Gaming Monitor,1,389.99,08/27/19 21:13,"434 Sunset St, San Francisco, CA 94016" -241048,AAA Batteries (4-pack),4,2.99,08/27/19 10:21,"689 Willow St, Dallas, TX 75001" -241049,Macbook Pro Laptop,1,1700,08/22/19 15:42,"605 11th St, San Francisco, CA 94016" -241050,AAA Batteries (4-pack),1,2.99,08/29/19 19:51,"600 4th St, Boston, MA 02215" -241051,27in 4K Gaming Monitor,1,389.99,08/10/19 08:13,"770 Cedar St, New York City, NY 10001" -241052,USB-C Charging Cable,1,11.95,08/05/19 17:56,"366 10th St, Seattle, WA 98101" -241053,AAA Batteries (4-pack),6,2.99,08/17/19 18:52,"830 Willow St, New York City, NY 10001" -241054,AAA Batteries (4-pack),1,2.99,09/01/19 00:25,"175 South St, San Francisco, CA 94016" -241055,Lightning Charging Cable,1,14.95,08/22/19 16:53,"401 Wilson St, San Francisco, CA 94016" -241056,20in Monitor,1,109.99,08/08/19 10:09,"99 Walnut St, Los Angeles, CA 90001" -241057,Google Phone,1,600,08/28/19 10:28,"627 7th St, San Francisco, CA 94016" -241058,34in Ultrawide Monitor,1,379.99,08/04/19 16:59,"218 2nd St, Dallas, TX 75001" -241059,Wired Headphones,1,11.99,08/08/19 14:36,"998 Willow St, San Francisco, CA 94016" -241060,Google Phone,1,600,08/22/19 19:43,"40 Center St, Los Angeles, CA 90001" -241061,Flatscreen TV,1,300,08/22/19 07:57,"994 Highland St, Los Angeles, CA 90001" -241062,USB-C Charging Cable,1,11.95,08/26/19 11:45,"381 North St, San Francisco, CA 94016" -241063,USB-C Charging Cable,1,11.95,08/02/19 15:33,"65 Meadow St, Dallas, TX 75001" -241064,Lightning Charging Cable,1,14.95,08/13/19 11:47,"225 Park St, Seattle, WA 98101" -241065,27in 4K Gaming Monitor,1,389.99,08/29/19 16:20,"644 South St, Dallas, TX 75001" -241066,27in 4K Gaming Monitor,1,389.99,08/22/19 19:11,"130 Jefferson St, San Francisco, CA 94016" -241067,Lightning Charging Cable,2,14.95,08/30/19 14:17,"522 Main St, San Francisco, CA 94016" -241068,Flatscreen TV,1,300,08/11/19 18:11,"475 Sunset St, New York City, NY 10001" -241069,Wired Headphones,1,11.99,08/20/19 13:40,"789 South St, Dallas, TX 75001" -241070,20in Monitor,1,109.99,08/12/19 08:14,"959 Johnson St, Boston, MA 02215" -241071,Flatscreen TV,1,300,08/03/19 00:26,"604 Pine St, Austin, TX 73301" -241072,USB-C Charging Cable,1,11.95,08/13/19 23:45,"137 14th St, Seattle, WA 98101" -241073,AAA Batteries (4-pack),1,2.99,08/28/19 22:23,"734 Jefferson St, Boston, MA 02215" -241074,ThinkPad Laptop,1,999.99,08/14/19 22:03,"497 West St, San Francisco, CA 94016" -241075,Wired Headphones,1,11.99,08/21/19 08:04,"384 Meadow St, San Francisco, CA 94016" -241076,27in FHD Monitor,1,149.99,08/08/19 22:40,"516 12th St, San Francisco, CA 94016" -241077,27in 4K Gaming Monitor,1,389.99,08/15/19 07:41,"210 Washington St, Seattle, WA 98101" -241078,AA Batteries (4-pack),1,3.84,08/17/19 10:47,"649 Lakeview St, New York City, NY 10001" -241079,Bose SoundSport Headphones,1,99.99,08/03/19 09:45,"341 13th St, Los Angeles, CA 90001" -241080,Google Phone,1,600,08/01/19 22:46,"85 Dogwood St, Los Angeles, CA 90001" -241081,AA Batteries (4-pack),1,3.84,08/27/19 16:13,"277 Jefferson St, Dallas, TX 75001" -241082,Wired Headphones,1,11.99,08/30/19 16:51,"196 Madison St, Los Angeles, CA 90001" -241083,27in FHD Monitor,1,149.99,08/03/19 14:44,"281 4th St, Dallas, TX 75001" -241084,USB-C Charging Cable,1,11.95,08/23/19 06:19,"762 Maple St, New York City, NY 10001" -241085,ThinkPad Laptop,1,999.99,08/27/19 17:46,"667 Willow St, Los Angeles, CA 90001" -241086,27in 4K Gaming Monitor,1,389.99,08/18/19 20:41,"280 Cherry St, Boston, MA 02215" -241087,Apple Airpods Headphones,1,150,08/10/19 20:40,"689 River St, Portland, OR 97035" -241088,iPhone,1,700,08/14/19 03:32,"22 Center St, Austin, TX 73301" -241088,Wired Headphones,1,11.99,08/14/19 03:32,"22 Center St, Austin, TX 73301" -241089,Wired Headphones,1,11.99,08/13/19 11:39,"981 Spruce St, Boston, MA 02215" -241090,AAA Batteries (4-pack),2,2.99,08/10/19 15:09,"946 5th St, Los Angeles, CA 90001" -241091,27in FHD Monitor,1,149.99,08/12/19 20:00,"585 Hill St, Seattle, WA 98101" -241092,AAA Batteries (4-pack),1,2.99,08/03/19 20:15,"455 Elm St, Los Angeles, CA 90001" -241093,AA Batteries (4-pack),1,3.84,08/21/19 15:22,"208 West St, San Francisco, CA 94016" -241094,27in 4K Gaming Monitor,1,389.99,08/21/19 11:38,"106 South St, Austin, TX 73301" -241095,Flatscreen TV,1,300,08/11/19 20:44,"986 West St, Seattle, WA 98101" -241096,AAA Batteries (4-pack),2,2.99,08/04/19 13:45,"318 Maple St, Seattle, WA 98101" -241097,AAA Batteries (4-pack),2,2.99,08/13/19 15:17,"852 Dogwood St, Los Angeles, CA 90001" -241098,AAA Batteries (4-pack),1,2.99,08/02/19 01:03,"897 Pine St, Portland, OR 97035" -241099,Flatscreen TV,1,300,08/02/19 20:28,"38 West St, Atlanta, GA 30301" -241100,Wired Headphones,1,11.99,08/01/19 21:27,"529 Forest St, Portland, OR 97035" -241101,AAA Batteries (4-pack),2,2.99,08/06/19 20:07,"848 Lakeview St, New York City, NY 10001" -241102,Vareebadd Phone,1,400,08/12/19 20:10,"181 River St, Los Angeles, CA 90001" -241103,Wired Headphones,1,11.99,08/09/19 15:53,"265 Wilson St, Portland, OR 97035" -241104,27in FHD Monitor,1,149.99,08/03/19 19:30,"133 Willow St, San Francisco, CA 94016" -241105,AAA Batteries (4-pack),1,2.99,08/30/19 10:56,"773 South St, Los Angeles, CA 90001" -241106,Macbook Pro Laptop,1,1700,08/25/19 23:51,"187 9th St, Los Angeles, CA 90001" -241107,LG Washing Machine,1,600.0,08/08/19 16:56,"860 Willow St, San Francisco, CA 94016" -241108,USB-C Charging Cable,1,11.95,08/04/19 15:58,"365 Cedar St, Los Angeles, CA 90001" -241109,27in 4K Gaming Monitor,1,389.99,08/24/19 06:20,"261 Hill St, San Francisco, CA 94016" -241110,Lightning Charging Cable,2,14.95,08/01/19 19:55,"579 Madison St, Portland, OR 97035" -241111,Wired Headphones,1,11.99,08/29/19 10:42,"228 Willow St, Los Angeles, CA 90001" -241112,AA Batteries (4-pack),1,3.84,08/03/19 12:29,"940 Forest St, San Francisco, CA 94016" -241113,USB-C Charging Cable,1,11.95,08/23/19 20:00,"487 Madison St, San Francisco, CA 94016" -241114,USB-C Charging Cable,2,11.95,08/06/19 00:10,"18 2nd St, New York City, NY 10001" -241115,Lightning Charging Cable,1,14.95,08/16/19 19:05,"529 Willow St, New York City, NY 10001" -241116,27in FHD Monitor,1,149.99,08/13/19 11:58,"214 Dogwood St, San Francisco, CA 94016" -241117,20in Monitor,1,109.99,08/10/19 21:29,"709 Jackson St, Los Angeles, CA 90001" -241118,27in FHD Monitor,1,149.99,08/23/19 11:11,"844 Elm St, Los Angeles, CA 90001" -241119,34in Ultrawide Monitor,1,379.99,08/26/19 20:57,"851 Jefferson St, Los Angeles, CA 90001" -241120,AAA Batteries (4-pack),1,2.99,08/26/19 13:39,"363 6th St, San Francisco, CA 94016" -241121,Flatscreen TV,1,300,08/06/19 01:38,"64 Jefferson St, San Francisco, CA 94016" -241122,Bose SoundSport Headphones,1,99.99,08/03/19 16:23,"984 River St, New York City, NY 10001" -241123,ThinkPad Laptop,1,999.99,08/19/19 09:26,"219 North St, San Francisco, CA 94016" -241124,Macbook Pro Laptop,1,1700,08/15/19 17:33,"842 Cedar St, Los Angeles, CA 90001" -241125,ThinkPad Laptop,1,999.99,08/03/19 12:50,"422 Spruce St, Boston, MA 02215" -241126,iPhone,1,700,08/16/19 21:35,"579 Lincoln St, New York City, NY 10001" -241126,Lightning Charging Cable,1,14.95,08/16/19 21:35,"579 Lincoln St, New York City, NY 10001" -241127,Lightning Charging Cable,1,14.95,08/28/19 15:07,"523 Church St, Portland, OR 97035" -241128,27in 4K Gaming Monitor,1,389.99,08/05/19 23:36,"860 Lake St, Atlanta, GA 30301" -241129,Wired Headphones,1,11.99,08/26/19 05:14,"599 Adams St, Portland, ME 04101" -241130,27in FHD Monitor,1,149.99,08/19/19 08:38,"325 12th St, Portland, OR 97035" -241131,Flatscreen TV,1,300,08/29/19 07:52,"604 2nd St, San Francisco, CA 94016" -241132,Apple Airpods Headphones,1,150,08/18/19 12:05,"23 Cedar St, Austin, TX 73301" -241133,Flatscreen TV,1,300,08/27/19 11:28,"792 Forest St, Portland, OR 97035" -241134,Flatscreen TV,1,300,08/09/19 09:36,"75 Jefferson St, San Francisco, CA 94016" -241135,Wired Headphones,1,11.99,08/01/19 12:38,"392 Main St, Atlanta, GA 30301" -241136,Apple Airpods Headphones,1,150,08/29/19 15:33,"898 Willow St, New York City, NY 10001" -241137,Google Phone,1,600,08/20/19 13:22,"56 9th St, Austin, TX 73301" -241138,AA Batteries (4-pack),1,3.84,08/22/19 10:53,"315 Dogwood St, San Francisco, CA 94016" -241139,USB-C Charging Cable,1,11.95,08/19/19 00:53,"653 South St, San Francisco, CA 94016" -241140,Bose SoundSport Headphones,1,99.99,08/19/19 11:19,"351 6th St, San Francisco, CA 94016" -241141,USB-C Charging Cable,1,11.95,08/25/19 17:52,"477 Lake St, San Francisco, CA 94016" -241142,ThinkPad Laptop,1,999.99,08/10/19 12:55,"54 6th St, Atlanta, GA 30301" -241143,Bose SoundSport Headphones,1,99.99,08/09/19 21:31,"618 10th St, San Francisco, CA 94016" -241144,AA Batteries (4-pack),1,3.84,08/30/19 11:12,"200 Church St, New York City, NY 10001" -241145,AAA Batteries (4-pack),1,2.99,08/19/19 11:05,"854 8th St, Austin, TX 73301" -241146,27in FHD Monitor,1,149.99,08/03/19 17:51,"894 Chestnut St, Los Angeles, CA 90001" -241147,27in 4K Gaming Monitor,1,389.99,08/11/19 12:04,"93 Church St, Dallas, TX 75001" -241148,USB-C Charging Cable,1,11.95,08/14/19 08:33,"242 Pine St, Boston, MA 02215" -241149,USB-C Charging Cable,1,11.95,08/02/19 12:13,"679 14th St, Seattle, WA 98101" -241150,Lightning Charging Cable,1,14.95,08/31/19 20:46,"818 Lakeview St, Dallas, TX 75001" -241151,Wired Headphones,1,11.99,08/20/19 12:19,"750 1st St, San Francisco, CA 94016" -241152,Lightning Charging Cable,1,14.95,08/06/19 20:49,"985 Chestnut St, San Francisco, CA 94016" -241153,Macbook Pro Laptop,1,1700,08/14/19 11:31,"659 Adams St, Atlanta, GA 30301" -241154,Apple Airpods Headphones,1,150,08/26/19 11:05,"11 Johnson St, San Francisco, CA 94016" -241155,AA Batteries (4-pack),2,3.84,08/16/19 10:25,"711 8th St, Los Angeles, CA 90001" -241156,USB-C Charging Cable,1,11.95,08/16/19 09:42,"893 Church St, Seattle, WA 98101" -241157,34in Ultrawide Monitor,1,379.99,08/03/19 12:09,"92 Jefferson St, Portland, OR 97035" -241158,Apple Airpods Headphones,1,150,08/25/19 15:18,"582 Jackson St, San Francisco, CA 94016" -241159,20in Monitor,1,109.99,08/29/19 12:39,"796 South St, San Francisco, CA 94016" -241160,Google Phone,1,600,08/22/19 21:33,"811 Madison St, Los Angeles, CA 90001" -,,,,, -241161,AA Batteries (4-pack),1,3.84,08/04/19 22:04,"700 North St, Dallas, TX 75001" -241162,Wired Headphones,1,11.99,08/30/19 18:39,"850 Adams St, San Francisco, CA 94016" -241163,Wired Headphones,1,11.99,08/07/19 14:17,"232 Highland St, Boston, MA 02215" -241164,Google Phone,1,600,08/30/19 22:37,"277 Washington St, Los Angeles, CA 90001" -241165,Lightning Charging Cable,1,14.95,08/25/19 17:08,"484 South St, Austin, TX 73301" -241166,USB-C Charging Cable,1,11.95,08/26/19 18:18,"835 Hickory St, New York City, NY 10001" -241167,Lightning Charging Cable,1,14.95,08/31/19 16:43,"983 9th St, Seattle, WA 98101" -241168,Wired Headphones,1,11.99,08/20/19 18:01,"375 North St, San Francisco, CA 94016" -241169,Macbook Pro Laptop,1,1700,08/01/19 11:55,"524 Park St, New York City, NY 10001" -241170,ThinkPad Laptop,1,999.99,08/04/19 00:25,"627 4th St, Boston, MA 02215" -241171,LG Washing Machine,1,600.0,08/20/19 18:16,"42 Hill St, New York City, NY 10001" -241172,34in Ultrawide Monitor,1,379.99,08/25/19 13:58,"356 Center St, Atlanta, GA 30301" -241173,Lightning Charging Cable,1,14.95,08/26/19 12:47,"947 Johnson St, Los Angeles, CA 90001" -241174,Lightning Charging Cable,1,14.95,08/04/19 15:29,"136 Hill St, San Francisco, CA 94016" -241175,Bose SoundSport Headphones,1,99.99,08/31/19 13:31,"431 Madison St, Dallas, TX 75001" -241176,Lightning Charging Cable,1,14.95,08/03/19 18:44,"338 Maple St, San Francisco, CA 94016" -241177,Wired Headphones,1,11.99,08/11/19 16:54,"174 North St, San Francisco, CA 94016" -241178,Lightning Charging Cable,1,14.95,08/31/19 11:05,"448 Elm St, Seattle, WA 98101" -241179,AAA Batteries (4-pack),1,2.99,08/05/19 14:00,"558 8th St, Atlanta, GA 30301" -241180,USB-C Charging Cable,1,11.95,08/18/19 22:12,"403 5th St, Los Angeles, CA 90001" -241181,Vareebadd Phone,1,400,08/21/19 13:38,"365 Church St, Austin, TX 73301" -241182,27in 4K Gaming Monitor,1,389.99,08/31/19 20:22,"580 6th St, New York City, NY 10001" -241182,27in 4K Gaming Monitor,1,389.99,08/31/19 20:22,"580 6th St, New York City, NY 10001" -241183,Flatscreen TV,1,300,08/12/19 22:03,"405 Forest St, Los Angeles, CA 90001" -241184,Wired Headphones,1,11.99,08/03/19 07:52,"977 Elm St, Austin, TX 73301" -241185,Wired Headphones,2,11.99,08/22/19 09:36,"758 Park St, Atlanta, GA 30301" -241186,Apple Airpods Headphones,1,150,08/20/19 18:21,"438 Center St, Los Angeles, CA 90001" -241187,Lightning Charging Cable,1,14.95,08/20/19 22:56,"486 Willow St, San Francisco, CA 94016" -241188,AAA Batteries (4-pack),1,2.99,08/15/19 16:31,"43 Cherry St, San Francisco, CA 94016" -241189,ThinkPad Laptop,1,999.99,08/03/19 17:13,"288 8th St, Seattle, WA 98101" -241190,AA Batteries (4-pack),1,3.84,08/01/19 20:38,"19 Pine St, Austin, TX 73301" -241191,AAA Batteries (4-pack),1,2.99,08/03/19 09:45,"568 Hickory St, Los Angeles, CA 90001" -241192,Macbook Pro Laptop,1,1700,08/02/19 19:21,"145 Adams St, Los Angeles, CA 90001" -241193,AAA Batteries (4-pack),1,2.99,08/09/19 12:55,"347 10th St, San Francisco, CA 94016" -241194,AA Batteries (4-pack),1,3.84,08/25/19 19:04,"762 6th St, Seattle, WA 98101" -241195,ThinkPad Laptop,1,999.99,08/11/19 23:32,"621 Wilson St, San Francisco, CA 94016" -241196,Lightning Charging Cable,1,14.95,08/23/19 18:21,"817 4th St, Los Angeles, CA 90001" -241197,AA Batteries (4-pack),1,3.84,08/12/19 23:26,"326 Pine St, San Francisco, CA 94016" -241198,Wired Headphones,1,11.99,08/01/19 12:37,"200 River St, San Francisco, CA 94016" -241199,Lightning Charging Cable,1,14.95,08/27/19 19:25,"713 Walnut St, Seattle, WA 98101" -241200,27in 4K Gaming Monitor,1,389.99,08/22/19 20:32,"949 Main St, Boston, MA 02215" -241201,Lightning Charging Cable,1,14.95,08/10/19 07:14,"730 Cherry St, Los Angeles, CA 90001" -241202,AAA Batteries (4-pack),1,2.99,08/04/19 11:39,"226 Lakeview St, Seattle, WA 98101" -241203,iPhone,1,700,08/06/19 07:42,"433 Highland St, Atlanta, GA 30301" -241204,Apple Airpods Headphones,1,150,08/15/19 12:40,"283 Highland St, Boston, MA 02215" -241205,USB-C Charging Cable,2,11.95,08/23/19 01:28,"55 Hickory St, Seattle, WA 98101" -241206,AA Batteries (4-pack),1,3.84,08/12/19 20:53,"597 Spruce St, Atlanta, GA 30301" -241207,27in FHD Monitor,1,149.99,08/03/19 18:29,"397 Elm St, San Francisco, CA 94016" -241208,iPhone,1,700,08/13/19 12:08,"637 8th St, Los Angeles, CA 90001" -241209,AA Batteries (4-pack),1,3.84,08/19/19 17:47,"348 West St, Seattle, WA 98101" -241210,AAA Batteries (4-pack),3,2.99,08/17/19 07:51,"83 Meadow St, Dallas, TX 75001" -241211,iPhone,1,700,08/06/19 17:40,"228 5th St, Los Angeles, CA 90001" -241212,27in 4K Gaming Monitor,1,389.99,08/24/19 19:59,"902 4th St, Los Angeles, CA 90001" -241213,Bose SoundSport Headphones,1,99.99,08/27/19 10:13,"162 Maple St, Dallas, TX 75001" -241214,Wired Headphones,1,11.99,08/05/19 09:27,"248 2nd St, San Francisco, CA 94016" -241215,Wired Headphones,1,11.99,08/14/19 11:02,"172 Adams St, Atlanta, GA 30301" -241216,Wired Headphones,1,11.99,08/01/19 18:14,"110 Dogwood St, San Francisco, CA 94016" -241217,Apple Airpods Headphones,1,150,08/22/19 21:18,"550 Forest St, San Francisco, CA 94016" -241218,Google Phone,1,600,08/05/19 13:47,"638 9th St, San Francisco, CA 94016" -241219,AA Batteries (4-pack),1,3.84,08/28/19 10:14,"381 Walnut St, Los Angeles, CA 90001" -241220,Lightning Charging Cable,1,14.95,08/23/19 17:57,"73 Hill St, San Francisco, CA 94016" -241221,Google Phone,1,600,08/12/19 05:35,"365 5th St, New York City, NY 10001" -241222,Lightning Charging Cable,2,14.95,08/10/19 12:42,"9 Elm St, New York City, NY 10001" -241223,Apple Airpods Headphones,1,150,08/08/19 21:56,"319 Dogwood St, Dallas, TX 75001" -241224,iPhone,1,700,08/18/19 09:42,"457 4th St, San Francisco, CA 94016" -241224,Wired Headphones,1,11.99,08/18/19 09:42,"457 4th St, San Francisco, CA 94016" -241225,AA Batteries (4-pack),1,3.84,08/27/19 16:34,"549 Cherry St, San Francisco, CA 94016" -241226,AAA Batteries (4-pack),1,2.99,08/03/19 16:34,"601 Lakeview St, San Francisco, CA 94016" -241227,USB-C Charging Cable,1,11.95,08/31/19 20:50,"223 Lake St, Boston, MA 02215" -241228,27in 4K Gaming Monitor,1,389.99,08/25/19 17:23,"315 Hill St, Dallas, TX 75001" -241229,Lightning Charging Cable,1,14.95,08/08/19 11:05,"609 Church St, Portland, OR 97035" -241230,Lightning Charging Cable,2,14.95,08/31/19 16:29,"569 Main St, Portland, ME 04101" -241231,Bose SoundSport Headphones,1,99.99,08/02/19 18:45,"561 Park St, San Francisco, CA 94016" -241232,AA Batteries (4-pack),2,3.84,08/31/19 12:33,"189 5th St, Los Angeles, CA 90001" -241233,iPhone,1,700,08/15/19 22:46,"205 4th St, San Francisco, CA 94016" -241234,Bose SoundSport Headphones,1,99.99,08/25/19 21:57,"367 Johnson St, Seattle, WA 98101" -241235,AAA Batteries (4-pack),1,2.99,08/01/19 14:28,"368 10th St, Boston, MA 02215" -241236,34in Ultrawide Monitor,1,379.99,08/01/19 17:08,"657 Hill St, Boston, MA 02215" -241237,Google Phone,1,600,08/23/19 03:19,"114 Johnson St, Portland, OR 97035" -241238,27in FHD Monitor,1,149.99,08/24/19 16:39,"138 Wilson St, San Francisco, CA 94016" -241239,Bose SoundSport Headphones,1,99.99,08/15/19 20:52,"983 Hickory St, New York City, NY 10001" -241240,USB-C Charging Cable,1,11.95,08/10/19 22:09,"59 13th St, Los Angeles, CA 90001" -241241,AAA Batteries (4-pack),7,2.99,08/01/19 13:05,"426 Wilson St, Boston, MA 02215" -241241,20in Monitor,1,109.99,08/01/19 13:05,"426 Wilson St, Boston, MA 02215" -241242,USB-C Charging Cable,1,11.95,08/12/19 22:50,"936 Church St, New York City, NY 10001" -241243,Apple Airpods Headphones,1,150,08/25/19 23:18,"626 Jefferson St, San Francisco, CA 94016" -241244,USB-C Charging Cable,1,11.95,08/14/19 15:45,"167 9th St, Boston, MA 02215" -241245,Bose SoundSport Headphones,1,99.99,08/02/19 11:38,"532 6th St, Seattle, WA 98101" -241246,Bose SoundSport Headphones,1,99.99,08/14/19 19:14,"10 South St, Atlanta, GA 30301" -241247,AAA Batteries (4-pack),4,2.99,08/29/19 00:54,"123 Madison St, Boston, MA 02215" -241248,Wired Headphones,1,11.99,08/04/19 04:45,"614 4th St, San Francisco, CA 94016" -241249,20in Monitor,1,109.99,08/12/19 18:21,"901 Cherry St, New York City, NY 10001" -241250,Wired Headphones,1,11.99,08/19/19 00:51,"433 Chestnut St, Dallas, TX 75001" -241251,20in Monitor,1,109.99,08/12/19 16:54,"545 Center St, New York City, NY 10001" -241252,20in Monitor,1,109.99,08/13/19 19:52,"778 Meadow St, Los Angeles, CA 90001" -241253,Wired Headphones,1,11.99,08/31/19 17:53,"227 Jackson St, Los Angeles, CA 90001" -241254,iPhone,1,700,08/06/19 20:44,"193 9th St, Boston, MA 02215" -241255,USB-C Charging Cable,1,11.95,08/19/19 18:41,"839 2nd St, San Francisco, CA 94016" -241256,iPhone,1,700,08/10/19 10:12,"249 Meadow St, Boston, MA 02215" -241257,Apple Airpods Headphones,1,150,08/31/19 09:39,"546 12th St, Boston, MA 02215" -241258,AAA Batteries (4-pack),1,2.99,08/24/19 23:37,"871 14th St, Atlanta, GA 30301" -241258,USB-C Charging Cable,1,11.95,08/24/19 23:37,"871 14th St, Atlanta, GA 30301" -241259,27in FHD Monitor,1,149.99,08/16/19 04:53,"101 Highland St, Atlanta, GA 30301" -241260,Google Phone,1,600,08/13/19 00:18,"15 4th St, Austin, TX 73301" -241261,Wired Headphones,1,11.99,08/10/19 17:47,"401 Lakeview St, Seattle, WA 98101" -241262,AAA Batteries (4-pack),1,2.99,08/10/19 18:28,"815 5th St, New York City, NY 10001" -241263,iPhone,1,700,08/18/19 14:40,"417 2nd St, New York City, NY 10001" -241263,USB-C Charging Cable,1,11.95,08/18/19 14:40,"417 2nd St, New York City, NY 10001" -241264,34in Ultrawide Monitor,1,379.99,08/16/19 10:11,"684 Johnson St, Austin, TX 73301" -241265,20in Monitor,1,109.99,08/29/19 12:48,"161 Jefferson St, Dallas, TX 75001" -241266,USB-C Charging Cable,1,11.95,08/29/19 10:58,"331 Meadow St, Austin, TX 73301" -241267,Bose SoundSport Headphones,1,99.99,08/12/19 17:49,"644 10th St, Los Angeles, CA 90001" -241268,USB-C Charging Cable,1,11.95,08/03/19 07:26,"71 Cherry St, Portland, OR 97035" -241269,AA Batteries (4-pack),1,3.84,08/12/19 06:29,"229 Washington St, San Francisco, CA 94016" -241270,Wired Headphones,1,11.99,08/17/19 23:39,"758 Jefferson St, San Francisco, CA 94016" -241271,34in Ultrawide Monitor,1,379.99,08/11/19 00:05,"252 Church St, Portland, OR 97035" -241272,34in Ultrawide Monitor,1,379.99,08/19/19 14:49,"502 Highland St, Portland, OR 97035" -241273,USB-C Charging Cable,1,11.95,08/31/19 14:25,"128 Lakeview St, New York City, NY 10001" -241274,AA Batteries (4-pack),1,3.84,08/14/19 08:49,"57 South St, Boston, MA 02215" -241275,20in Monitor,1,109.99,08/10/19 20:05,"389 Maple St, Los Angeles, CA 90001" -241276,USB-C Charging Cable,1,11.95,08/30/19 09:02,"165 North St, Boston, MA 02215" -241277,Flatscreen TV,1,300,08/30/19 17:45,"980 Maple St, Austin, TX 73301" -241278,27in 4K Gaming Monitor,1,389.99,08/22/19 17:21,"414 Johnson St, Atlanta, GA 30301" -241279,USB-C Charging Cable,1,11.95,08/24/19 22:01,"864 Center St, San Francisco, CA 94016" -241280,Wired Headphones,1,11.99,08/22/19 16:07,"599 Park St, Atlanta, GA 30301" -241281,20in Monitor,1,109.99,08/18/19 16:02,"903 Chestnut St, San Francisco, CA 94016" -241282,27in 4K Gaming Monitor,1,389.99,08/07/19 19:23,"961 2nd St, San Francisco, CA 94016" -241283,AAA Batteries (4-pack),1,2.99,08/03/19 13:09,"613 Spruce St, Boston, MA 02215" -241284,USB-C Charging Cable,1,11.95,08/31/19 20:55,"52 Hill St, San Francisco, CA 94016" -241285,Wired Headphones,1,11.99,08/17/19 10:13,"423 6th St, Austin, TX 73301" -241286,Google Phone,1,600,08/09/19 12:24,"849 Chestnut St, Dallas, TX 75001" -241286,USB-C Charging Cable,1,11.95,08/09/19 12:24,"849 Chestnut St, Dallas, TX 75001" -241287,Bose SoundSport Headphones,1,99.99,08/04/19 14:28,"824 7th St, New York City, NY 10001" -241288,AAA Batteries (4-pack),1,2.99,08/29/19 18:20,"804 Elm St, Boston, MA 02215" -241289,AAA Batteries (4-pack),2,2.99,08/29/19 14:38,"668 13th St, Dallas, TX 75001" -241290,34in Ultrawide Monitor,1,379.99,08/15/19 16:30,"456 North St, Boston, MA 02215" -241291,Lightning Charging Cable,1,14.95,08/15/19 16:46,"9 Cherry St, New York City, NY 10001" -241292,Lightning Charging Cable,1,14.95,08/29/19 18:33,"736 Jackson St, Austin, TX 73301" -241293,iPhone,1,700,08/26/19 23:30,"319 Ridge St, Boston, MA 02215" -241294,AAA Batteries (4-pack),2,2.99,08/29/19 10:14,"421 Dogwood St, San Francisco, CA 94016" -241295,Wired Headphones,1,11.99,08/17/19 13:49,"917 Washington St, Seattle, WA 98101" -241296,USB-C Charging Cable,1,11.95,08/24/19 10:43,"245 Highland St, Portland, OR 97035" -241297,Bose SoundSport Headphones,1,99.99,08/15/19 18:50,"770 2nd St, Dallas, TX 75001" -241298,Bose SoundSport Headphones,1,99.99,08/15/19 09:46,"597 8th St, Los Angeles, CA 90001" -241299,Wired Headphones,2,11.99,08/13/19 17:19,"922 Hill St, San Francisco, CA 94016" -241300,Lightning Charging Cable,1,14.95,08/06/19 02:04,"122 Highland St, Portland, OR 97035" -241301,Lightning Charging Cable,1,14.95,08/24/19 16:20,"624 Ridge St, Los Angeles, CA 90001" -241302,AA Batteries (4-pack),1,3.84,08/07/19 07:31,"422 Lake St, New York City, NY 10001" -241303,Wired Headphones,1,11.99,08/26/19 12:20,"231 Park St, Portland, OR 97035" -241304,Bose SoundSport Headphones,1,99.99,08/03/19 20:54,"767 Willow St, San Francisco, CA 94016" -241305,Lightning Charging Cable,1,14.95,08/18/19 14:43,"648 Washington St, San Francisco, CA 94016" -241306,Google Phone,1,600,08/15/19 14:52,"195 Wilson St, San Francisco, CA 94016" -241307,Flatscreen TV,1,300,08/13/19 22:30,"271 14th St, Atlanta, GA 30301" -241308,AAA Batteries (4-pack),1,2.99,08/12/19 19:39,"609 13th St, Los Angeles, CA 90001" -241309,Bose SoundSport Headphones,1,99.99,08/11/19 10:18,"812 Hill St, San Francisco, CA 94016" -241310,Apple Airpods Headphones,1,150,08/24/19 12:26,"886 Jackson St, Seattle, WA 98101" -241311,27in 4K Gaming Monitor,1,389.99,08/27/19 15:34,"214 West St, Los Angeles, CA 90001" -241312,USB-C Charging Cable,1,11.95,08/12/19 11:22,"371 Cherry St, New York City, NY 10001" -241313,Google Phone,1,600,08/28/19 17:58,"849 9th St, New York City, NY 10001" -241313,USB-C Charging Cable,3,11.95,08/28/19 17:58,"849 9th St, New York City, NY 10001" -241314,USB-C Charging Cable,1,11.95,08/20/19 05:48,"207 7th St, Los Angeles, CA 90001" -241315,AAA Batteries (4-pack),1,2.99,08/13/19 13:08,"968 14th St, Los Angeles, CA 90001" -241316,Wired Headphones,1,11.99,08/23/19 17:31,"947 6th St, Dallas, TX 75001" -241317,Wired Headphones,1,11.99,08/22/19 11:55,"193 North St, Austin, TX 73301" -241318,Macbook Pro Laptop,1,1700,08/20/19 13:20,"210 Lincoln St, New York City, NY 10001" -241319,AAA Batteries (4-pack),1,2.99,08/22/19 13:32,"202 Adams St, New York City, NY 10001" -241320,AAA Batteries (4-pack),1,2.99,08/25/19 15:40,"541 Walnut St, Portland, OR 97035" -241321,34in Ultrawide Monitor,1,379.99,08/11/19 19:44,"543 Cherry St, Boston, MA 02215" -241322,USB-C Charging Cable,1,11.95,08/31/19 13:23,"962 Cherry St, Portland, OR 97035" -241323,34in Ultrawide Monitor,1,379.99,08/02/19 19:47,"17 Adams St, Austin, TX 73301" -241324,iPhone,1,700,08/18/19 14:09,"919 Center St, Portland, OR 97035" -241325,20in Monitor,1,109.99,08/01/19 13:30,"590 10th St, Atlanta, GA 30301" -241326,Apple Airpods Headphones,1,150,08/01/19 22:26,"177 Cedar St, Seattle, WA 98101" -241327,Google Phone,1,600,08/10/19 11:48,"988 Ridge St, Los Angeles, CA 90001" -241328,27in 4K Gaming Monitor,1,389.99,08/11/19 20:23,"650 14th St, Los Angeles, CA 90001" -241329,iPhone,1,700,08/07/19 00:54,"442 West St, Los Angeles, CA 90001" -241330,Google Phone,1,600,08/16/19 13:08,"606 Cherry St, Los Angeles, CA 90001" -241331,Wired Headphones,2,11.99,08/31/19 17:49,"782 Jefferson St, Los Angeles, CA 90001" -241332,Lightning Charging Cable,2,14.95,08/06/19 08:08,"706 Center St, San Francisco, CA 94016" -241333,Lightning Charging Cable,1,14.95,08/18/19 15:28,"561 Meadow St, Los Angeles, CA 90001" -241334,AA Batteries (4-pack),1,3.84,08/11/19 13:55,"185 Adams St, Seattle, WA 98101" -241334,Bose SoundSport Headphones,1,99.99,08/11/19 13:55,"185 Adams St, Seattle, WA 98101" -241335,Wired Headphones,1,11.99,08/21/19 10:42,"359 Jefferson St, Dallas, TX 75001" -241336,27in 4K Gaming Monitor,1,389.99,08/24/19 15:47,"490 1st St, New York City, NY 10001" -241337,USB-C Charging Cable,1,11.95,08/08/19 13:34,"840 Forest St, Portland, OR 97035" -241338,AA Batteries (4-pack),1,3.84,08/26/19 10:17,"671 9th St, New York City, NY 10001" -241339,USB-C Charging Cable,1,11.95,08/26/19 19:25,"330 Church St, Atlanta, GA 30301" -241340,AAA Batteries (4-pack),3,2.99,08/16/19 11:04,"94 River St, Los Angeles, CA 90001" -241341,AA Batteries (4-pack),2,3.84,08/14/19 13:18,"959 1st St, Austin, TX 73301" -241342,Lightning Charging Cable,1,14.95,08/29/19 08:59,"740 Park St, Atlanta, GA 30301" -241343,Bose SoundSport Headphones,1,99.99,08/27/19 23:08,"88 Maple St, Los Angeles, CA 90001" -241344,AA Batteries (4-pack),3,3.84,08/23/19 20:37,"644 11th St, Austin, TX 73301" -241345,Lightning Charging Cable,1,14.95,08/12/19 00:02,"245 Ridge St, Los Angeles, CA 90001" -241346,iPhone,1,700,08/14/19 00:36,"900 Center St, New York City, NY 10001" -241347,Apple Airpods Headphones,1,150,08/21/19 12:12,"967 Sunset St, Los Angeles, CA 90001" -241348,AAA Batteries (4-pack),2,2.99,08/23/19 12:39,"808 2nd St, New York City, NY 10001" -241349,USB-C Charging Cable,1,11.95,08/17/19 18:47,"936 Cherry St, Boston, MA 02215" -241350,AA Batteries (4-pack),2,3.84,08/07/19 15:42,"809 12th St, San Francisco, CA 94016" -241351,Bose SoundSport Headphones,1,99.99,08/04/19 10:37,"422 11th St, Los Angeles, CA 90001" -241352,34in Ultrawide Monitor,1,379.99,08/06/19 22:53,"116 Maple St, Seattle, WA 98101" -241353,34in Ultrawide Monitor,1,379.99,08/04/19 19:58,"121 9th St, Seattle, WA 98101" -241354,Lightning Charging Cable,1,14.95,08/11/19 15:57,"888 Cherry St, Seattle, WA 98101" -241355,AA Batteries (4-pack),1,3.84,08/19/19 13:23,"231 Hill St, Atlanta, GA 30301" -241356,Wired Headphones,1,11.99,08/24/19 13:37,"982 Dogwood St, Dallas, TX 75001" -241357,Apple Airpods Headphones,1,150,08/01/19 14:28,"706 River St, Atlanta, GA 30301" -241358,Wired Headphones,2,11.99,08/11/19 05:39,"252 Church St, San Francisco, CA 94016" -241359,Wired Headphones,1,11.99,08/22/19 10:10,"704 Wilson St, New York City, NY 10001" -241360,ThinkPad Laptop,1,999.99,08/29/19 14:05,"410 North St, Boston, MA 02215" -241361,Apple Airpods Headphones,1,150,08/17/19 09:05,"311 Pine St, New York City, NY 10001" -241362,USB-C Charging Cable,2,11.95,08/15/19 17:25,"821 Pine St, Boston, MA 02215" -241363,AA Batteries (4-pack),1,3.84,08/28/19 13:09,"354 1st St, San Francisco, CA 94016" -241364,Lightning Charging Cable,2,14.95,08/17/19 10:55,"930 Park St, San Francisco, CA 94016" -241365,AA Batteries (4-pack),1,3.84,08/10/19 15:21,"612 Lake St, Atlanta, GA 30301" -241366,Wired Headphones,1,11.99,08/02/19 11:20,"19 Main St, Boston, MA 02215" -241367,Wired Headphones,1,11.99,08/04/19 10:08,"623 Spruce St, Portland, OR 97035" -241368,Lightning Charging Cable,1,14.95,08/27/19 20:53,"745 Walnut St, San Francisco, CA 94016" -241369,Lightning Charging Cable,2,14.95,08/08/19 13:22,"946 Jackson St, Atlanta, GA 30301" -241370,34in Ultrawide Monitor,1,379.99,08/23/19 11:26,"714 Spruce St, New York City, NY 10001" -241371,ThinkPad Laptop,1,999.99,08/10/19 20:16,"443 11th St, San Francisco, CA 94016" -241372,27in FHD Monitor,1,149.99,08/24/19 11:13,"288 Jackson St, San Francisco, CA 94016" -241373,Lightning Charging Cable,1,14.95,08/30/19 10:56,"180 West St, Atlanta, GA 30301" -241374,AA Batteries (4-pack),1,3.84,08/09/19 10:18,"39 Walnut St, Portland, OR 97035" -241375,ThinkPad Laptop,1,999.99,08/08/19 10:33,"538 9th St, Atlanta, GA 30301" -241376,Lightning Charging Cable,1,14.95,08/29/19 11:56,"879 Adams St, Los Angeles, CA 90001" -241377,AAA Batteries (4-pack),1,2.99,08/06/19 15:05,"321 Spruce St, San Francisco, CA 94016" -241378,Lightning Charging Cable,1,14.95,08/16/19 15:23,"902 Cedar St, Austin, TX 73301" -241379,Apple Airpods Headphones,1,150,08/11/19 20:29,"822 West St, Atlanta, GA 30301" -241380,Google Phone,1,600,08/16/19 19:01,"11 Johnson St, Boston, MA 02215" -241381,Flatscreen TV,1,300,08/09/19 12:57,"286 7th St, Boston, MA 02215" -241382,Bose SoundSport Headphones,1,99.99,08/17/19 14:16,"292 7th St, San Francisco, CA 94016" -241383,AAA Batteries (4-pack),1,2.99,08/11/19 16:38,"833 Madison St, San Francisco, CA 94016" -241384,Bose SoundSport Headphones,1,99.99,08/08/19 15:38,"925 13th St, Dallas, TX 75001" -241385,AAA Batteries (4-pack),3,2.99,08/07/19 07:04,"67 9th St, Seattle, WA 98101" -241386,Apple Airpods Headphones,1,150,08/31/19 10:24,"896 Elm St, San Francisco, CA 94016" -241387,Google Phone,1,600,08/11/19 23:18,"926 Forest St, New York City, NY 10001" -241388,AAA Batteries (4-pack),1,2.99,08/15/19 10:04,"450 2nd St, Dallas, TX 75001" -241389,Apple Airpods Headphones,1,150,08/02/19 09:40,"305 Washington St, Dallas, TX 75001" -241390,ThinkPad Laptop,1,999.99,08/24/19 08:44,"193 10th St, Atlanta, GA 30301" -241391,AA Batteries (4-pack),2,3.84,08/17/19 21:37,"984 2nd St, Seattle, WA 98101" -241392,Flatscreen TV,1,300,08/15/19 21:02,"227 Forest St, San Francisco, CA 94016" -241393,AAA Batteries (4-pack),1,2.99,08/03/19 08:37,"665 Lakeview St, New York City, NY 10001" -241394,Google Phone,1,600,08/24/19 19:39,"815 6th St, Dallas, TX 75001" -241394,Wired Headphones,1,11.99,08/24/19 19:39,"815 6th St, Dallas, TX 75001" -241395,AA Batteries (4-pack),1,3.84,08/19/19 05:33,"92 7th St, San Francisco, CA 94016" -241396,AA Batteries (4-pack),1,3.84,08/03/19 16:52,"730 Jefferson St, San Francisco, CA 94016" -241397,AAA Batteries (4-pack),1,2.99,08/04/19 22:50,"791 Elm St, Seattle, WA 98101" -241398,Flatscreen TV,1,300,08/18/19 11:37,"611 Lincoln St, Atlanta, GA 30301" -241399,Vareebadd Phone,1,400,08/06/19 14:14,"31 Church St, Seattle, WA 98101" -241400,Wired Headphones,1,11.99,08/12/19 16:11,"125 5th St, Boston, MA 02215" -241401,Flatscreen TV,1,300,08/06/19 10:11,"838 Lake St, New York City, NY 10001" -241402,27in 4K Gaming Monitor,1,389.99,08/02/19 16:55,"702 River St, Boston, MA 02215" -241403,Wired Headphones,1,11.99,08/18/19 05:59,"151 Willow St, San Francisco, CA 94016" -241404,27in FHD Monitor,1,149.99,08/26/19 11:47,"853 Pine St, San Francisco, CA 94016" -241405,27in FHD Monitor,1,149.99,08/27/19 14:53,"355 Church St, New York City, NY 10001" -241406,Wired Headphones,1,11.99,08/19/19 09:40,"413 Spruce St, San Francisco, CA 94016" -241407,Vareebadd Phone,1,400,08/24/19 19:21,"752 Adams St, Boston, MA 02215" -241408,27in 4K Gaming Monitor,1,389.99,08/31/19 20:12,"216 12th St, Los Angeles, CA 90001" -241409,AAA Batteries (4-pack),1,2.99,08/28/19 13:32,"839 River St, Los Angeles, CA 90001" -241410,AAA Batteries (4-pack),2,2.99,08/16/19 21:55,"555 Church St, Atlanta, GA 30301" -241411,USB-C Charging Cable,1,11.95,08/22/19 13:35,"202 Dogwood St, Austin, TX 73301" -241412,Lightning Charging Cable,1,14.95,08/02/19 17:10,"396 Church St, Dallas, TX 75001" -241413,Apple Airpods Headphones,1,150,08/13/19 08:01,"48 Hickory St, Los Angeles, CA 90001" -241414,AA Batteries (4-pack),1,3.84,08/10/19 15:37,"43 Sunset St, Atlanta, GA 30301" -241415,Apple Airpods Headphones,1,150,08/30/19 15:43,"8 Dogwood St, San Francisco, CA 94016" -241416,Apple Airpods Headphones,1,150,08/01/19 22:26,"858 Forest St, Boston, MA 02215" -241417,AAA Batteries (4-pack),3,2.99,08/21/19 14:12,"794 Adams St, Seattle, WA 98101" -241418,iPhone,1,700,08/30/19 11:26,"928 11th St, Portland, ME 04101" -241419,AA Batteries (4-pack),1,3.84,08/31/19 16:57,"827 Chestnut St, Boston, MA 02215" -241420,Wired Headphones,1,11.99,08/09/19 15:31,"411 Johnson St, Boston, MA 02215" -241421,Apple Airpods Headphones,1,150,08/04/19 19:19,"531 Jackson St, Atlanta, GA 30301" -241422,34in Ultrawide Monitor,1,379.99,08/31/19 17:23,"86 Lake St, Seattle, WA 98101" -241423,Wired Headphones,1,11.99,08/19/19 08:58,"665 Lake St, Atlanta, GA 30301" -241424,Wired Headphones,1,11.99,08/01/19 08:22,"801 Meadow St, Seattle, WA 98101" -241425,AA Batteries (4-pack),1,3.84,08/17/19 18:15,"170 11th St, San Francisco, CA 94016" -241426,Apple Airpods Headphones,1,150,08/10/19 18:36,"998 Adams St, Dallas, TX 75001" -241427,AA Batteries (4-pack),1,3.84,08/16/19 20:01,"213 14th St, Boston, MA 02215" -241428,Bose SoundSport Headphones,1,99.99,08/23/19 12:19,"172 South St, New York City, NY 10001" -241429,Wired Headphones,1,11.99,08/20/19 22:16,"156 Lakeview St, Los Angeles, CA 90001" -241430,AAA Batteries (4-pack),1,2.99,08/28/19 07:51,"181 Cherry St, New York City, NY 10001" -241431,27in 4K Gaming Monitor,1,389.99,08/17/19 17:11,"682 Maple St, Los Angeles, CA 90001" -241432,AAA Batteries (4-pack),1,2.99,08/06/19 20:09,"693 Jackson St, Boston, MA 02215" -241433,Apple Airpods Headphones,1,150,08/27/19 19:52,"604 Madison St, Los Angeles, CA 90001" -241434,Apple Airpods Headphones,1,150,08/12/19 19:46,"518 Jefferson St, San Francisco, CA 94016" -241434,ThinkPad Laptop,1,999.99,08/12/19 19:46,"518 Jefferson St, San Francisco, CA 94016" -241435,ThinkPad Laptop,1,999.99,08/28/19 18:28,"991 Johnson St, Boston, MA 02215" -241436,Flatscreen TV,1,300,08/13/19 18:13,"18 Pine St, Boston, MA 02215" -241437,Wired Headphones,1,11.99,08/02/19 10:54,"675 Meadow St, Dallas, TX 75001" -241438,Wired Headphones,1,11.99,08/07/19 22:30,"57 10th St, Boston, MA 02215" -241439,AA Batteries (4-pack),1,3.84,08/15/19 23:32,"442 Dogwood St, Portland, OR 97035" -241440,34in Ultrawide Monitor,1,379.99,08/06/19 04:15,"727 Walnut St, Austin, TX 73301" -241441,AA Batteries (4-pack),1,3.84,08/14/19 15:27,"383 Forest St, Seattle, WA 98101" -241442,AA Batteries (4-pack),1,3.84,08/08/19 13:07,"594 Forest St, Los Angeles, CA 90001" -241443,Apple Airpods Headphones,1,150,08/23/19 15:26,"919 Johnson St, San Francisco, CA 94016" -241444,Lightning Charging Cable,1,14.95,08/03/19 11:50,"130 Jefferson St, New York City, NY 10001" -241445,Apple Airpods Headphones,1,150,08/10/19 18:10,"847 12th St, Seattle, WA 98101" -241446,Flatscreen TV,1,300,08/11/19 08:10,"537 Lake St, Dallas, TX 75001" -241447,Apple Airpods Headphones,1,150,08/31/19 21:07,"568 Highland St, Los Angeles, CA 90001" -241447,AA Batteries (4-pack),1,3.84,08/31/19 21:07,"568 Highland St, Los Angeles, CA 90001" -241448,AA Batteries (4-pack),1,3.84,08/10/19 15:09,"403 13th St, Dallas, TX 75001" -241449,27in 4K Gaming Monitor,1,389.99,08/01/19 13:27,"721 Center St, Los Angeles, CA 90001" -241450,AA Batteries (4-pack),1,3.84,08/01/19 22:04,"450 Park St, Boston, MA 02215" -241451,Apple Airpods Headphones,1,150,08/19/19 08:35,"10 Adams St, Boston, MA 02215" -241452,27in 4K Gaming Monitor,1,389.99,08/26/19 21:03,"362 10th St, Boston, MA 02215" -241453,ThinkPad Laptop,1,999.99,08/25/19 10:46,"355 Pine St, San Francisco, CA 94016" -241454,AA Batteries (4-pack),1,3.84,08/04/19 10:19,"735 Adams St, Portland, OR 97035" -241455,ThinkPad Laptop,1,999.99,08/11/19 16:51,"139 11th St, Seattle, WA 98101" -241456,Lightning Charging Cable,1,14.95,08/31/19 12:19,"857 Church St, San Francisco, CA 94016" -241457,AA Batteries (4-pack),1,3.84,08/02/19 05:07,"284 Hill St, San Francisco, CA 94016" -241458,USB-C Charging Cable,1,11.95,08/21/19 00:15,"930 10th St, Los Angeles, CA 90001" -241459,Macbook Pro Laptop,1,1700,08/26/19 14:19,"793 Lake St, Los Angeles, CA 90001" -241460,USB-C Charging Cable,2,11.95,08/03/19 13:01,"632 Main St, Dallas, TX 75001" -241461,Wired Headphones,1,11.99,08/27/19 23:55,"730 Lincoln St, San Francisco, CA 94016" -241462,27in 4K Gaming Monitor,1,389.99,08/15/19 15:13,"695 Spruce St, Portland, OR 97035" -241463,Vareebadd Phone,1,400,08/17/19 19:14,"494 Cedar St, Atlanta, GA 30301" -241464,Flatscreen TV,1,300,08/27/19 05:31,"573 5th St, Boston, MA 02215" -241464,Macbook Pro Laptop,1,1700,08/27/19 05:31,"573 5th St, Boston, MA 02215" -241465,Wired Headphones,1,11.99,08/19/19 15:27,"402 Cherry St, New York City, NY 10001" -241466,Wired Headphones,1,11.99,08/27/19 18:19,"542 14th St, Dallas, TX 75001" -241467,Wired Headphones,1,11.99,08/15/19 16:37,"377 1st St, Austin, TX 73301" -241468,Lightning Charging Cable,1,14.95,08/07/19 08:52,"348 Spruce St, Portland, OR 97035" -241469,AAA Batteries (4-pack),1,2.99,08/18/19 15:37,"323 9th St, San Francisco, CA 94016" -241469,34in Ultrawide Monitor,1,379.99,08/18/19 15:37,"323 9th St, San Francisco, CA 94016" -241470,iPhone,1,700,08/28/19 21:16,"843 Elm St, Seattle, WA 98101" -241471,AAA Batteries (4-pack),1,2.99,08/12/19 12:15,"592 12th St, Dallas, TX 75001" -241472,iPhone,1,700,08/20/19 14:09,"130 1st St, New York City, NY 10001" -241472,Wired Headphones,2,11.99,08/20/19 14:09,"130 1st St, New York City, NY 10001" -241473,AA Batteries (4-pack),1,3.84,08/06/19 23:59,"233 Park St, Los Angeles, CA 90001" -241474,Flatscreen TV,1,300,08/24/19 15:34,"76 Main St, Los Angeles, CA 90001" -241475,Lightning Charging Cable,1,14.95,08/19/19 20:40,"371 4th St, New York City, NY 10001" -241476,ThinkPad Laptop,1,999.99,08/25/19 14:19,"360 12th St, Dallas, TX 75001" -241477,Apple Airpods Headphones,1,150,08/21/19 11:58,"952 1st St, San Francisco, CA 94016" -241478,Apple Airpods Headphones,1,150,08/08/19 08:48,"343 Jackson St, San Francisco, CA 94016" -241479,27in FHD Monitor,1,149.99,08/24/19 11:38,"954 10th St, San Francisco, CA 94016" -241480,34in Ultrawide Monitor,1,379.99,08/08/19 12:32,"89 North St, Atlanta, GA 30301" -241481,AA Batteries (4-pack),3,3.84,08/12/19 21:40,"762 Spruce St, New York City, NY 10001" -241482,iPhone,1,700,08/04/19 14:43,"330 12th St, Seattle, WA 98101" -241483,Lightning Charging Cable,1,14.95,08/16/19 20:08,"783 Cherry St, San Francisco, CA 94016" -241484,34in Ultrawide Monitor,1,379.99,08/20/19 11:01,"644 Main St, Los Angeles, CA 90001" -241485,Bose SoundSport Headphones,1,99.99,08/27/19 11:16,"639 Adams St, Atlanta, GA 30301" -241486,Wired Headphones,1,11.99,08/02/19 10:24,"950 Sunset St, San Francisco, CA 94016" -241487,AAA Batteries (4-pack),1,2.99,08/28/19 20:33,"932 Ridge St, Seattle, WA 98101" -241488,Flatscreen TV,1,300,08/20/19 14:19,"21 Johnson St, New York City, NY 10001" -241489,Lightning Charging Cable,1,14.95,08/10/19 20:49,"187 Ridge St, Los Angeles, CA 90001" -241490,34in Ultrawide Monitor,1,379.99,08/16/19 09:56,"299 Madison St, Atlanta, GA 30301" -241491,AAA Batteries (4-pack),1,2.99,08/08/19 22:13,"961 Willow St, Portland, OR 97035" -241492,Apple Airpods Headphones,1,150,08/26/19 14:13,"604 Chestnut St, San Francisco, CA 94016" -241492,Bose SoundSport Headphones,1,99.99,08/26/19 14:13,"604 Chestnut St, San Francisco, CA 94016" -241493,AA Batteries (4-pack),1,3.84,08/14/19 20:58,"132 9th St, Boston, MA 02215" -241494,Wired Headphones,2,11.99,08/11/19 12:55,"84 Elm St, Los Angeles, CA 90001" -241495,Google Phone,1,600,08/22/19 13:26,"185 Cedar St, Seattle, WA 98101" -241496,Macbook Pro Laptop,1,1700,08/06/19 19:23,"407 Forest St, Los Angeles, CA 90001" -241497,27in FHD Monitor,1,149.99,08/31/19 17:22,"67 Hill St, New York City, NY 10001" -241498,USB-C Charging Cable,1,11.95,08/15/19 23:33,"654 Lake St, Dallas, TX 75001" -241499,AAA Batteries (4-pack),1,2.99,08/16/19 17:17,"613 Highland St, New York City, NY 10001" -241500,Bose SoundSport Headphones,1,99.99,08/29/19 10:47,"135 Lakeview St, San Francisco, CA 94016" -241501,Wired Headphones,1,11.99,08/16/19 08:41,"774 12th St, San Francisco, CA 94016" -241502,ThinkPad Laptop,1,999.99,08/15/19 11:25,"104 Main St, Portland, OR 97035" -241503,Lightning Charging Cable,1,14.95,08/31/19 10:44,"498 13th St, Dallas, TX 75001" -241504,Flatscreen TV,1,300,08/01/19 22:29,"273 Jefferson St, San Francisco, CA 94016" -241505,Apple Airpods Headphones,1,150,08/23/19 18:25,"122 Lakeview St, Atlanta, GA 30301" -241506,34in Ultrawide Monitor,1,379.99,08/09/19 13:39,"752 Hill St, Boston, MA 02215" -241507,Apple Airpods Headphones,1,150,08/01/19 14:14,"752 9th St, Seattle, WA 98101" -241508,Macbook Pro Laptop,1,1700,08/08/19 16:27,"853 North St, San Francisco, CA 94016" -241509,USB-C Charging Cable,1,11.95,08/28/19 19:38,"653 14th St, Boston, MA 02215" -241510,USB-C Charging Cable,1,11.95,08/02/19 12:27,"77 North St, San Francisco, CA 94016" -241511,AAA Batteries (4-pack),1,2.99,08/05/19 19:00,"369 Meadow St, Seattle, WA 98101" -241512,27in 4K Gaming Monitor,1,389.99,08/05/19 22:14,"539 Walnut St, Los Angeles, CA 90001" -241513,Lightning Charging Cable,1,14.95,08/23/19 15:32,"7 Jefferson St, New York City, NY 10001" -241514,Wired Headphones,1,11.99,08/10/19 07:10,"977 Elm St, New York City, NY 10001" -241515,Apple Airpods Headphones,1,150,08/13/19 17:31,"951 Meadow St, New York City, NY 10001" -241516,iPhone,1,700,08/02/19 17:59,"850 5th St, Los Angeles, CA 90001" -241517,Lightning Charging Cable,1,14.95,08/23/19 06:55,"401 Ridge St, Los Angeles, CA 90001" -241518,34in Ultrawide Monitor,1,379.99,08/27/19 06:19,"120 Pine St, New York City, NY 10001" -241519,27in FHD Monitor,1,149.99,08/10/19 00:47,"597 Lincoln St, Seattle, WA 98101" -241520,Wired Headphones,1,11.99,08/24/19 15:42,"480 Center St, Portland, OR 97035" -241521,Apple Airpods Headphones,1,150,08/11/19 08:47,"118 North St, Los Angeles, CA 90001" -241522,AAA Batteries (4-pack),4,2.99,08/03/19 09:56,"198 Jefferson St, San Francisco, CA 94016" -241523,27in FHD Monitor,1,149.99,08/31/19 17:15,"904 5th St, Dallas, TX 75001" -241524,Google Phone,1,600,08/17/19 14:45,"644 Dogwood St, Boston, MA 02215" -241524,USB-C Charging Cable,1,11.95,08/17/19 14:45,"644 Dogwood St, Boston, MA 02215" -241525,Bose SoundSport Headphones,1,99.99,08/07/19 11:17,"767 Johnson St, New York City, NY 10001" -241526,AA Batteries (4-pack),1,3.84,08/27/19 22:03,"252 9th St, Los Angeles, CA 90001" -241527,Lightning Charging Cable,1,14.95,08/24/19 14:19,"417 Cedar St, Seattle, WA 98101" -241528,Wired Headphones,1,11.99,08/04/19 20:41,"451 Ridge St, Boston, MA 02215" -241528,USB-C Charging Cable,2,11.95,08/04/19 20:41,"451 Ridge St, Boston, MA 02215" -241529,USB-C Charging Cable,1,11.95,08/04/19 12:43,"290 Park St, Austin, TX 73301" -241530,AA Batteries (4-pack),1,3.84,08/17/19 22:37,"341 West St, Los Angeles, CA 90001" -241531,LG Washing Machine,1,600.0,08/08/19 19:09,"774 Willow St, Austin, TX 73301" -241532,Wired Headphones,1,11.99,08/27/19 00:35,"295 Madison St, Seattle, WA 98101" -241533,Bose SoundSport Headphones,1,99.99,08/12/19 20:59,"779 Lake St, San Francisco, CA 94016" -241534,AAA Batteries (4-pack),2,2.99,08/25/19 14:42,"882 Johnson St, Atlanta, GA 30301" -241535,Google Phone,1,600,08/28/19 09:56,"221 4th St, Los Angeles, CA 90001" -241536,Wired Headphones,1,11.99,08/15/19 07:34,"725 2nd St, Seattle, WA 98101" -241537,Bose SoundSport Headphones,1,99.99,08/14/19 19:35,"680 Sunset St, Los Angeles, CA 90001" -241538,USB-C Charging Cable,1,11.95,08/21/19 18:47,"27 Elm St, New York City, NY 10001" -241539,AAA Batteries (4-pack),2,2.99,08/31/19 11:43,"481 South St, San Francisco, CA 94016" -241540,Lightning Charging Cable,1,14.95,08/22/19 09:55,"979 Hickory St, New York City, NY 10001" -241541,Wired Headphones,1,11.99,08/19/19 20:58,"148 Wilson St, New York City, NY 10001" -241542,USB-C Charging Cable,1,11.95,08/27/19 12:50,"168 Jefferson St, Boston, MA 02215" -241543,AAA Batteries (4-pack),1,2.99,08/16/19 06:10,"338 8th St, Los Angeles, CA 90001" -241544,Apple Airpods Headphones,1,150,08/03/19 09:28,"40 Adams St, San Francisco, CA 94016" -241545,Lightning Charging Cable,1,14.95,08/25/19 11:28,"992 Ridge St, New York City, NY 10001" -241546,Apple Airpods Headphones,1,150,08/17/19 14:41,"406 2nd St, New York City, NY 10001" -241547,27in FHD Monitor,1,149.99,08/16/19 10:48,"883 2nd St, Austin, TX 73301" -241548,Apple Airpods Headphones,1,150,08/25/19 10:16,"76 11th St, San Francisco, CA 94016" -241549,Lightning Charging Cable,1,14.95,08/22/19 19:20,"801 Pine St, Seattle, WA 98101" -241550,27in 4K Gaming Monitor,1,389.99,08/07/19 08:14,"206 Sunset St, Portland, OR 97035" -241551,Bose SoundSport Headphones,1,99.99,08/31/19 18:46,"413 7th St, Seattle, WA 98101" -241552,Google Phone,1,600,08/28/19 20:44,"343 9th St, San Francisco, CA 94016" -241553,Lightning Charging Cable,1,14.95,08/29/19 21:09,"996 Elm St, Austin, TX 73301" -241554,AAA Batteries (4-pack),1,2.99,08/05/19 07:29,"230 Church St, Los Angeles, CA 90001" -241555,27in FHD Monitor,1,149.99,08/23/19 11:03,"202 4th St, Seattle, WA 98101" -241556,Macbook Pro Laptop,1,1700,08/17/19 19:39,"325 Cherry St, San Francisco, CA 94016" -241557,Bose SoundSport Headphones,1,99.99,08/10/19 11:13,"403 9th St, New York City, NY 10001" -241557,20in Monitor,1,109.99,08/10/19 11:13,"403 9th St, New York City, NY 10001" -241558,Wired Headphones,1,11.99,08/24/19 22:05,"5 1st St, Los Angeles, CA 90001" -241559,AA Batteries (4-pack),1,3.84,08/02/19 19:54,"206 Center St, Atlanta, GA 30301" -241560,34in Ultrawide Monitor,1,379.99,08/21/19 21:08,"468 Highland St, Los Angeles, CA 90001" -241561,Bose SoundSport Headphones,1,99.99,08/19/19 20:56,"42 Jackson St, Seattle, WA 98101" -241562,20in Monitor,1,109.99,08/06/19 17:09,"651 Willow St, New York City, NY 10001" -241563,27in 4K Gaming Monitor,1,389.99,08/17/19 20:38,"863 Hickory St, San Francisco, CA 94016" -241564,iPhone,1,700,08/22/19 18:53,"337 Cedar St, Austin, TX 73301" -241565,Vareebadd Phone,1,400,08/16/19 13:53,"963 Ridge St, Los Angeles, CA 90001" -241566,Wired Headphones,1,11.99,08/30/19 12:18,"213 Cedar St, San Francisco, CA 94016" -241567,Lightning Charging Cable,1,14.95,08/03/19 12:40,"758 Chestnut St, New York City, NY 10001" -241568,Flatscreen TV,1,300,08/05/19 14:36,"740 Cherry St, Seattle, WA 98101" -241569,27in 4K Gaming Monitor,1,389.99,08/22/19 11:21,"378 Ridge St, San Francisco, CA 94016" -241570,Bose SoundSport Headphones,1,99.99,08/12/19 09:50,"312 Walnut St, Boston, MA 02215" -241571,AA Batteries (4-pack),1,3.84,08/05/19 19:38,"334 Park St, San Francisco, CA 94016" -241572,AA Batteries (4-pack),1,3.84,08/05/19 17:48,"264 4th St, San Francisco, CA 94016" -241573,AA Batteries (4-pack),2,3.84,08/11/19 07:35,"930 Adams St, San Francisco, CA 94016" -241574,27in FHD Monitor,1,149.99,08/18/19 10:08,"178 Walnut St, Atlanta, GA 30301" -241575,27in FHD Monitor,1,149.99,08/27/19 12:13,"859 Ridge St, Austin, TX 73301" -241576,AAA Batteries (4-pack),2,2.99,08/30/19 09:49,"968 Walnut St, Boston, MA 02215" -241577,27in FHD Monitor,1,149.99,08/01/19 19:54,"431 Spruce St, Boston, MA 02215" -241578,Wired Headphones,1,11.99,08/20/19 14:43,"460 Church St, Los Angeles, CA 90001" -241579,USB-C Charging Cable,1,11.95,08/10/19 10:56,"669 13th St, Los Angeles, CA 90001" -241580,27in 4K Gaming Monitor,1,389.99,08/25/19 07:18,"90 Lake St, Boston, MA 02215" -241581,AAA Batteries (4-pack),1,2.99,08/05/19 13:59,"36 Jefferson St, Dallas, TX 75001" -241582,AA Batteries (4-pack),1,3.84,08/01/19 18:43,"760 Lincoln St, Atlanta, GA 30301" -241583,Lightning Charging Cable,1,14.95,08/14/19 22:14,"541 Chestnut St, Boston, MA 02215" -241584,Google Phone,1,600,08/08/19 17:57,"410 Forest St, Atlanta, GA 30301" -241585,Lightning Charging Cable,1,14.95,08/20/19 20:30,"39 6th St, San Francisco, CA 94016" -241586,Lightning Charging Cable,1,14.95,08/19/19 09:08,"432 Church St, Boston, MA 02215" -241587,27in 4K Gaming Monitor,1,389.99,08/07/19 10:38,"822 Highland St, Los Angeles, CA 90001" -241588,Apple Airpods Headphones,1,150,08/22/19 20:04,"235 Forest St, Los Angeles, CA 90001" -241589,USB-C Charging Cable,1,11.95,08/22/19 19:26,"876 Lincoln St, Seattle, WA 98101" -241590,AAA Batteries (4-pack),1,2.99,08/31/19 11:12,"296 Spruce St, New York City, NY 10001" -241591,Apple Airpods Headphones,1,150,08/30/19 14:50,"68 Lincoln St, Boston, MA 02215" -241592,AAA Batteries (4-pack),1,2.99,08/01/19 22:29,"751 Center St, San Francisco, CA 94016" -241593,Apple Airpods Headphones,1,150,08/16/19 22:32,"844 12th St, Dallas, TX 75001" -241594,Google Phone,1,600,08/20/19 09:16,"25 8th St, Dallas, TX 75001" -241595,Wired Headphones,1,11.99,08/30/19 15:12,"393 Hill St, Los Angeles, CA 90001" -241596,AA Batteries (4-pack),2,3.84,08/28/19 10:59,"672 4th St, Boston, MA 02215" -241597,AA Batteries (4-pack),1,3.84,08/13/19 12:44,"158 9th St, New York City, NY 10001" -241598,Wired Headphones,1,11.99,08/31/19 10:45,"490 6th St, Los Angeles, CA 90001" -241599,USB-C Charging Cable,1,11.95,08/14/19 10:48,"839 1st St, San Francisco, CA 94016" -241600,AA Batteries (4-pack),2,3.84,08/28/19 17:26,"592 South St, Los Angeles, CA 90001" -241601,USB-C Charging Cable,1,11.95,08/06/19 15:58,"711 Lakeview St, Seattle, WA 98101" -241602,Macbook Pro Laptop,1,1700,08/17/19 17:05,"323 Meadow St, New York City, NY 10001" -241603,Google Phone,1,600,08/11/19 20:20,"789 Park St, Boston, MA 02215" -241603,USB-C Charging Cable,1,11.95,08/11/19 20:20,"789 Park St, Boston, MA 02215" -241604,Bose SoundSport Headphones,1,99.99,08/15/19 12:34,"796 4th St, Boston, MA 02215" -241605,AAA Batteries (4-pack),2,2.99,08/01/19 20:48,"326 Washington St, Boston, MA 02215" -241606,34in Ultrawide Monitor,1,379.99,08/14/19 11:41,"789 Johnson St, San Francisco, CA 94016" -241607,AAA Batteries (4-pack),1,2.99,08/21/19 20:39,"683 Church St, Boston, MA 02215" -241608,Bose SoundSport Headphones,1,99.99,08/11/19 00:38,"325 Ridge St, New York City, NY 10001" -241609,USB-C Charging Cable,1,11.95,08/19/19 19:06,"223 Madison St, Portland, OR 97035" -241610,ThinkPad Laptop,1,999.99,08/03/19 22:08,"6 Chestnut St, San Francisco, CA 94016" -241611,iPhone,1,700,08/08/19 12:07,"295 Willow St, San Francisco, CA 94016" -241612,AAA Batteries (4-pack),1,2.99,08/13/19 18:35,"116 14th St, Boston, MA 02215" -241613,Flatscreen TV,1,300,08/03/19 19:45,"503 Center St, Los Angeles, CA 90001" -241614,USB-C Charging Cable,1,11.95,08/22/19 23:58,"319 Forest St, San Francisco, CA 94016" -241615,AA Batteries (4-pack),1,3.84,08/24/19 13:40,"291 Adams St, Dallas, TX 75001" -241616,Flatscreen TV,1,300,08/28/19 13:51,"55 Lake St, San Francisco, CA 94016" -241617,USB-C Charging Cable,1,11.95,08/19/19 14:42,"774 Chestnut St, Boston, MA 02215" -241618,Wired Headphones,1,11.99,08/12/19 16:38,"137 Chestnut St, New York City, NY 10001" -241619,AA Batteries (4-pack),1,3.84,08/03/19 13:48,"21 2nd St, New York City, NY 10001" -241620,20in Monitor,1,109.99,08/08/19 16:35,"599 7th St, Atlanta, GA 30301" -241621,AA Batteries (4-pack),1,3.84,08/12/19 20:55,"729 Madison St, Seattle, WA 98101" -241622,AAA Batteries (4-pack),1,2.99,08/03/19 13:50,"334 Wilson St, New York City, NY 10001" -241623,Lightning Charging Cable,1,14.95,08/02/19 13:44,"75 Johnson St, Portland, OR 97035" -241624,27in FHD Monitor,1,149.99,08/24/19 13:59,"685 Dogwood St, Los Angeles, CA 90001" -241625,Apple Airpods Headphones,1,150,08/24/19 07:15,"209 12th St, San Francisco, CA 94016" -241626,iPhone,1,700,08/19/19 22:25,"711 Washington St, San Francisco, CA 94016" -241627,Lightning Charging Cable,1,14.95,08/07/19 23:13,"403 Church St, Austin, TX 73301" -241628,Lightning Charging Cable,1,14.95,08/16/19 08:38,"54 Highland St, Boston, MA 02215" -241629,USB-C Charging Cable,1,11.95,08/07/19 20:08,"280 Sunset St, Los Angeles, CA 90001" -241630,iPhone,1,700,08/05/19 08:52,"594 6th St, Atlanta, GA 30301" -241631,20in Monitor,1,109.99,08/03/19 18:33,"447 1st St, San Francisco, CA 94016" -241632,iPhone,1,700,08/15/19 08:50,"350 6th St, Atlanta, GA 30301" -241632,Lightning Charging Cable,1,14.95,08/15/19 08:50,"350 6th St, Atlanta, GA 30301" -241633,Lightning Charging Cable,1,14.95,08/14/19 05:36,"227 Church St, Dallas, TX 75001" -241634,Wired Headphones,1,11.99,08/20/19 16:40,"761 Cherry St, San Francisco, CA 94016" -241635,AAA Batteries (4-pack),1,2.99,08/22/19 21:21,"351 West St, Los Angeles, CA 90001" -241636,Bose SoundSport Headphones,1,99.99,08/01/19 16:34,"191 Willow St, Dallas, TX 75001" -241637,Bose SoundSport Headphones,1,99.99,08/04/19 20:09,"856 8th St, Dallas, TX 75001" -241638,iPhone,1,700,08/21/19 17:13,"743 Elm St, New York City, NY 10001" -241638,Wired Headphones,2,11.99,08/21/19 17:13,"743 Elm St, New York City, NY 10001" -241639,AA Batteries (4-pack),1,3.84,08/18/19 17:56,"798 12th St, New York City, NY 10001" -241640,Google Phone,1,600,08/28/19 19:44,"403 Jackson St, San Francisco, CA 94016" -241640,USB-C Charging Cable,1,11.95,08/28/19 19:44,"403 Jackson St, San Francisco, CA 94016" -241641,Lightning Charging Cable,2,14.95,08/18/19 23:05,"817 Main St, San Francisco, CA 94016" -241642,AAA Batteries (4-pack),2,2.99,08/27/19 13:22,"533 Jackson St, Portland, OR 97035" -241643,Apple Airpods Headphones,1,150,08/11/19 19:23,"996 North St, Los Angeles, CA 90001" -241644,USB-C Charging Cable,1,11.95,08/03/19 16:53,"934 Willow St, Los Angeles, CA 90001" -241645,Lightning Charging Cable,1,14.95,08/07/19 18:27,"305 Jackson St, San Francisco, CA 94016" -241646,Flatscreen TV,1,300,08/02/19 23:41,"659 Jefferson St, New York City, NY 10001" -241647,Lightning Charging Cable,1,14.95,08/31/19 21:38,"327 Walnut St, San Francisco, CA 94016" -241648,AA Batteries (4-pack),1,3.84,08/19/19 17:09,"96 Walnut St, Seattle, WA 98101" -241649,Apple Airpods Headphones,1,150,08/19/19 00:42,"854 Hickory St, Dallas, TX 75001" -241650,Wired Headphones,1,11.99,08/21/19 17:13,"260 14th St, San Francisco, CA 94016" -241651,Wired Headphones,1,11.99,08/09/19 09:10,"406 8th St, Los Angeles, CA 90001" -241652,Macbook Pro Laptop,1,1700,08/19/19 09:49,"208 Chestnut St, San Francisco, CA 94016" -241653,Apple Airpods Headphones,1,150,08/26/19 13:21,"459 Chestnut St, New York City, NY 10001" -241654,USB-C Charging Cable,2,11.95,08/19/19 15:09,"277 Jackson St, Dallas, TX 75001" -241655,LG Dryer,1,600.0,08/06/19 14:39,"942 West St, Boston, MA 02215" -241656,Apple Airpods Headphones,1,150,08/18/19 19:46,"595 Ridge St, San Francisco, CA 94016" -241657,Google Phone,1,600,08/12/19 10:30,"883 Jefferson St, Austin, TX 73301" -241657,USB-C Charging Cable,1,11.95,08/12/19 10:30,"883 Jefferson St, Austin, TX 73301" -241658,27in FHD Monitor,1,149.99,08/10/19 14:09,"103 Jackson St, Portland, ME 04101" -241659,Bose SoundSport Headphones,1,99.99,08/06/19 18:04,"953 Church St, Seattle, WA 98101" -241660,AA Batteries (4-pack),3,3.84,08/08/19 09:54,"535 Hill St, Portland, ME 04101" -241661,USB-C Charging Cable,1,11.95,08/12/19 19:35,"423 Lake St, New York City, NY 10001" -241662,Lightning Charging Cable,1,14.95,08/08/19 21:07,"105 Adams St, New York City, NY 10001" -241663,20in Monitor,1,109.99,08/26/19 19:14,"744 11th St, San Francisco, CA 94016" -241664,USB-C Charging Cable,1,11.95,08/04/19 08:16,"816 West St, Boston, MA 02215" -241665,Bose SoundSport Headphones,1,99.99,08/13/19 13:21,"68 Washington St, Boston, MA 02215" -241666,Bose SoundSport Headphones,1,99.99,08/30/19 18:42,"650 Sunset St, Los Angeles, CA 90001" -241667,USB-C Charging Cable,1,11.95,08/17/19 19:44,"188 4th St, Los Angeles, CA 90001" -241668,AAA Batteries (4-pack),1,2.99,08/14/19 12:08,"558 Lake St, Austin, TX 73301" -241669,ThinkPad Laptop,1,999.99,08/11/19 21:01,"444 Chestnut St, San Francisco, CA 94016" -241670,Apple Airpods Headphones,1,150,08/23/19 13:10,"280 13th St, Los Angeles, CA 90001" -241671,ThinkPad Laptop,1,999.99,08/17/19 13:38,"926 Walnut St, Austin, TX 73301" -241672,27in FHD Monitor,1,149.99,08/06/19 12:02,"317 Lake St, Los Angeles, CA 90001" -241673,Apple Airpods Headphones,1,150,08/10/19 14:29,"458 9th St, Los Angeles, CA 90001" -241674,AA Batteries (4-pack),4,3.84,08/11/19 15:27,"104 Madison St, San Francisco, CA 94016" -241675,AA Batteries (4-pack),2,3.84,08/19/19 17:16,"943 Hill St, Atlanta, GA 30301" -241675,20in Monitor,1,109.99,08/19/19 17:16,"943 Hill St, Atlanta, GA 30301" -241676,USB-C Charging Cable,1,11.95,08/19/19 08:22,"932 North St, Boston, MA 02215" -241677,AAA Batteries (4-pack),1,2.99,08/08/19 05:09,"66 11th St, Boston, MA 02215" -241678,Vareebadd Phone,1,400,08/13/19 12:16,"777 Cedar St, Los Angeles, CA 90001" -241678,Wired Headphones,1,11.99,08/13/19 12:16,"777 Cedar St, Los Angeles, CA 90001" -241679,ThinkPad Laptop,1,999.99,08/30/19 12:27,"456 14th St, New York City, NY 10001" -241680,LG Dryer,1,600.0,08/07/19 18:07,"301 Lakeview St, Portland, OR 97035" -241681,Lightning Charging Cable,1,14.95,08/25/19 13:34,"349 Lake St, Portland, OR 97035" -241682,Bose SoundSport Headphones,1,99.99,08/24/19 12:30,"991 7th St, Dallas, TX 75001" -241683,Bose SoundSport Headphones,1,99.99,08/01/19 23:06,"638 Center St, San Francisco, CA 94016" -241684,Lightning Charging Cable,1,14.95,08/16/19 09:02,"268 Pine St, New York City, NY 10001" -241685,Wired Headphones,1,11.99,08/01/19 10:51,"987 6th St, San Francisco, CA 94016" -241686,Bose SoundSport Headphones,1,99.99,08/04/19 15:56,"443 Forest St, San Francisco, CA 94016" -241687,Wired Headphones,1,11.99,08/31/19 02:44,"415 South St, Seattle, WA 98101" -241688,AAA Batteries (4-pack),1,2.99,08/13/19 20:53,"769 10th St, Portland, OR 97035" -241689,Lightning Charging Cable,1,14.95,08/06/19 12:12,"243 North St, Portland, OR 97035" -241690,Wired Headphones,1,11.99,08/28/19 23:52,"53 Johnson St, Los Angeles, CA 90001" -241691,Wired Headphones,1,11.99,08/04/19 14:30,"139 8th St, Boston, MA 02215" -241692,Lightning Charging Cable,2,14.95,08/26/19 19:56,"524 Jefferson St, Boston, MA 02215" -241693,27in 4K Gaming Monitor,1,389.99,08/13/19 18:42,"939 Highland St, Atlanta, GA 30301" -241694,27in 4K Gaming Monitor,1,389.99,08/08/19 10:52,"960 Wilson St, San Francisco, CA 94016" -241695,USB-C Charging Cable,1,11.95,08/10/19 22:19,"595 River St, Boston, MA 02215" -241696,Bose SoundSport Headphones,1,99.99,08/31/19 18:08,"651 Cherry St, San Francisco, CA 94016" -241697,ThinkPad Laptop,1,999.99,08/15/19 14:42,"940 11th St, Los Angeles, CA 90001" -241698,Wired Headphones,1,11.99,08/22/19 18:42,"138 Church St, Los Angeles, CA 90001" -241699,34in Ultrawide Monitor,1,379.99,08/01/19 20:50,"531 Elm St, San Francisco, CA 94016" -241700,Lightning Charging Cable,2,14.95,08/10/19 06:10,"999 13th St, Los Angeles, CA 90001" -241701,27in 4K Gaming Monitor,1,389.99,08/07/19 11:39,"644 Adams St, Los Angeles, CA 90001" -241702,USB-C Charging Cable,1,11.95,08/09/19 18:22,"363 West St, Boston, MA 02215" -241703,AAA Batteries (4-pack),1,2.99,08/04/19 19:24,"742 Washington St, New York City, NY 10001" -241704,Lightning Charging Cable,1,14.95,08/31/19 05:41,"481 4th St, New York City, NY 10001" -241704,27in FHD Monitor,1,149.99,08/31/19 05:41,"481 4th St, New York City, NY 10001" -241705,ThinkPad Laptop,1,999.99,08/15/19 11:39,"76 Park St, Portland, ME 04101" -241706,Apple Airpods Headphones,1,150,08/02/19 20:47,"77 Lake St, Atlanta, GA 30301" -241707,Lightning Charging Cable,1,14.95,08/08/19 11:42,"502 Elm St, Austin, TX 73301" -241708,Wired Headphones,1,11.99,08/22/19 17:22,"422 10th St, New York City, NY 10001" -241709,USB-C Charging Cable,1,11.95,08/06/19 20:40,"950 12th St, Los Angeles, CA 90001" -241710,Apple Airpods Headphones,1,150,08/28/19 16:09,"473 4th St, Austin, TX 73301" -241711,Apple Airpods Headphones,1,150,08/11/19 17:25,"759 14th St, Los Angeles, CA 90001" -241712,27in 4K Gaming Monitor,1,389.99,08/08/19 19:22,"244 Jackson St, Los Angeles, CA 90001" -241713,Bose SoundSport Headphones,1,99.99,08/28/19 17:31,"354 Highland St, San Francisco, CA 94016" -241714,34in Ultrawide Monitor,1,379.99,08/06/19 17:05,"979 11th St, Boston, MA 02215" -241715,AAA Batteries (4-pack),1,2.99,08/12/19 13:15,"444 Forest St, Dallas, TX 75001" -241716,AAA Batteries (4-pack),2,2.99,08/31/19 12:03,"917 Sunset St, San Francisco, CA 94016" -241717,AA Batteries (4-pack),1,3.84,08/04/19 18:38,"397 Park St, Los Angeles, CA 90001" -241718,27in 4K Gaming Monitor,1,389.99,08/24/19 22:16,"642 12th St, Portland, OR 97035" -241719,Google Phone,1,600,08/03/19 11:28,"225 Walnut St, Seattle, WA 98101" -241720,Lightning Charging Cable,1,14.95,08/05/19 09:21,"635 Walnut St, San Francisco, CA 94016" -241721,AAA Batteries (4-pack),1,2.99,08/07/19 23:12,"4 Jackson St, San Francisco, CA 94016" -241722,Wired Headphones,1,11.99,08/26/19 22:27,"357 Sunset St, San Francisco, CA 94016" -241723,USB-C Charging Cable,1,11.95,08/30/19 12:22,"11 River St, Seattle, WA 98101" -241724,AA Batteries (4-pack),2,3.84,08/12/19 21:08,"260 Park St, Atlanta, GA 30301" -241725,iPhone,1,700,08/22/19 13:10,"983 Elm St, San Francisco, CA 94016" -241726,iPhone,1,700,08/25/19 21:04,"874 Ridge St, San Francisco, CA 94016" -241727,20in Monitor,1,109.99,08/08/19 16:03,"837 Jackson St, New York City, NY 10001" -241728,Flatscreen TV,1,300,08/30/19 14:53,"953 South St, Boston, MA 02215" -241729,Wired Headphones,1,11.99,08/05/19 11:23,"851 14th St, New York City, NY 10001" -241730,USB-C Charging Cable,1,11.95,08/02/19 17:25,"260 Meadow St, Atlanta, GA 30301" -241731,AA Batteries (4-pack),1,3.84,08/22/19 16:35,"399 2nd St, Atlanta, GA 30301" -241732,AAA Batteries (4-pack),2,2.99,08/16/19 11:21,"345 Hill St, Boston, MA 02215" -241733,Wired Headphones,1,11.99,08/14/19 14:44,"181 Cherry St, New York City, NY 10001" -241734,AAA Batteries (4-pack),1,2.99,08/26/19 22:21,"492 Lake St, San Francisco, CA 94016" -241735,LG Dryer,1,600.0,08/28/19 20:41,"695 Washington St, San Francisco, CA 94016" -241736,USB-C Charging Cable,1,11.95,08/13/19 14:33,"872 10th St, San Francisco, CA 94016" -241737,Wired Headphones,1,11.99,08/29/19 23:59,"442 West St, New York City, NY 10001" -241738,USB-C Charging Cable,1,11.95,08/02/19 07:47,"785 8th St, San Francisco, CA 94016" -241739,27in 4K Gaming Monitor,1,389.99,08/27/19 19:10,"614 6th St, San Francisco, CA 94016" -241740,AA Batteries (4-pack),1,3.84,08/20/19 19:17,"447 11th St, Austin, TX 73301" -241741,Apple Airpods Headphones,1,150,08/26/19 09:38,"478 River St, New York City, NY 10001" -241742,Bose SoundSport Headphones,1,99.99,08/08/19 17:05,"632 Center St, Atlanta, GA 30301" -241743,Wired Headphones,1,11.99,08/07/19 13:57,"71 Center St, New York City, NY 10001" -241744,Lightning Charging Cable,1,14.95,08/24/19 22:37,"896 Cedar St, San Francisco, CA 94016" -241745,AAA Batteries (4-pack),1,2.99,08/30/19 05:34,"940 Willow St, San Francisco, CA 94016" -241746,20in Monitor,1,109.99,08/02/19 19:42,"842 Spruce St, Atlanta, GA 30301" -241747,Wired Headphones,1,11.99,08/04/19 18:03,"175 Park St, San Francisco, CA 94016" -241748,27in FHD Monitor,1,149.99,08/29/19 14:37,"255 Pine St, Austin, TX 73301" -241749,Lightning Charging Cable,1,14.95,08/12/19 18:55,"166 4th St, Boston, MA 02215" -241750,Apple Airpods Headphones,1,150,08/06/19 19:47,"567 Hill St, Boston, MA 02215" -241750,Flatscreen TV,1,300,08/06/19 19:47,"567 Hill St, Boston, MA 02215" -241751,Apple Airpods Headphones,1,150,08/17/19 15:22,"657 12th St, Seattle, WA 98101" -241752,iPhone,1,700,08/22/19 12:22,"675 9th St, San Francisco, CA 94016" -241753,27in FHD Monitor,1,149.99,08/21/19 22:56,"958 West St, San Francisco, CA 94016" -241754,Lightning Charging Cable,1,14.95,08/23/19 11:36,"470 6th St, Dallas, TX 75001" -241755,AA Batteries (4-pack),1,3.84,08/19/19 22:38,"600 Walnut St, Austin, TX 73301" -241756,AA Batteries (4-pack),1,3.84,08/21/19 14:01,"328 Sunset St, New York City, NY 10001" -241757,Lightning Charging Cable,1,14.95,08/11/19 16:01,"383 Lincoln St, Boston, MA 02215" -241758,Wired Headphones,3,11.99,08/28/19 14:40,"33 Park St, Boston, MA 02215" -241759,Bose SoundSport Headphones,1,99.99,08/17/19 22:14,"417 Lake St, Atlanta, GA 30301" -241760,AA Batteries (4-pack),1,3.84,08/16/19 19:59,"266 Madison St, Boston, MA 02215" -241761,Lightning Charging Cable,1,14.95,08/09/19 12:25,"664 South St, San Francisco, CA 94016" -241762,Flatscreen TV,1,300,08/02/19 13:47,"415 4th St, Dallas, TX 75001" -241763,AA Batteries (4-pack),1,3.84,08/24/19 20:10,"662 14th St, Boston, MA 02215" -241764,Lightning Charging Cable,1,14.95,08/22/19 13:44,"379 Highland St, San Francisco, CA 94016" -241765,USB-C Charging Cable,1,11.95,08/21/19 12:50,"489 Jackson St, Austin, TX 73301" -241766,AAA Batteries (4-pack),1,2.99,08/27/19 16:12,"226 6th St, Portland, OR 97035" -241767,Lightning Charging Cable,2,14.95,08/29/19 00:06,"297 Lake St, Atlanta, GA 30301" -241768,AAA Batteries (4-pack),1,2.99,08/26/19 21:31,"223 North St, San Francisco, CA 94016" -241769,AA Batteries (4-pack),1,3.84,08/15/19 21:27,"67 Highland St, San Francisco, CA 94016" -241770,USB-C Charging Cable,1,11.95,08/16/19 11:40,"685 Walnut St, Boston, MA 02215" -241771,Wired Headphones,1,11.99,08/09/19 18:15,"802 7th St, Los Angeles, CA 90001" -241772,20in Monitor,1,109.99,08/07/19 17:31,"630 Elm St, Boston, MA 02215" -241773,Apple Airpods Headphones,1,150,08/08/19 00:31,"704 11th St, New York City, NY 10001" -241774,Google Phone,1,600,08/20/19 20:27,"852 Center St, Los Angeles, CA 90001" -241775,27in 4K Gaming Monitor,1,389.99,08/17/19 11:20,"608 Washington St, San Francisco, CA 94016" -241776,Flatscreen TV,1,300,08/05/19 16:43,"294 Center St, Los Angeles, CA 90001" -241777,Apple Airpods Headphones,1,150,08/22/19 15:38,"932 Hill St, New York City, NY 10001" -241778,AA Batteries (4-pack),1,3.84,08/31/19 13:34,"563 Cherry St, San Francisco, CA 94016" -241779,Google Phone,1,600,08/17/19 23:12,"849 Lincoln St, San Francisco, CA 94016" -241780,Bose SoundSport Headphones,1,99.99,08/20/19 18:57,"139 Wilson St, New York City, NY 10001" -241780,AA Batteries (4-pack),1,3.84,08/20/19 18:57,"139 Wilson St, New York City, NY 10001" -241781,AA Batteries (4-pack),1,3.84,08/26/19 16:52,"6 Walnut St, New York City, NY 10001" -241782,USB-C Charging Cable,1,11.95,08/12/19 21:12,"917 12th St, Austin, TX 73301" -241783,Lightning Charging Cable,1,14.95,08/08/19 10:27,"159 8th St, Seattle, WA 98101" -241784,AAA Batteries (4-pack),1,2.99,08/06/19 07:55,"288 8th St, Atlanta, GA 30301" -241785,USB-C Charging Cable,1,11.95,08/15/19 18:40,"328 Center St, New York City, NY 10001" -241786,Lightning Charging Cable,1,14.95,08/06/19 10:48,"130 River St, Dallas, TX 75001" -241787,27in FHD Monitor,1,149.99,08/30/19 15:41,"804 Madison St, Portland, OR 97035" -241788,Lightning Charging Cable,1,14.95,08/24/19 13:43,"967 Chestnut St, Boston, MA 02215" -241789,27in 4K Gaming Monitor,1,389.99,08/10/19 15:43,"461 Cherry St, San Francisco, CA 94016" -241790,Google Phone,1,600,08/25/19 16:56,"125 Meadow St, San Francisco, CA 94016" -241790,USB-C Charging Cable,1,11.95,08/25/19 16:56,"125 Meadow St, San Francisco, CA 94016" -241791,20in Monitor,1,109.99,08/13/19 23:04,"381 6th St, New York City, NY 10001" -241792,ThinkPad Laptop,1,999.99,08/06/19 18:25,"534 Highland St, Seattle, WA 98101" -241793,Bose SoundSport Headphones,1,99.99,08/31/19 05:26,"185 14th St, Los Angeles, CA 90001" -241794,Apple Airpods Headphones,1,150,08/09/19 14:43,"827 2nd St, Dallas, TX 75001" -241795,Macbook Pro Laptop,1,1700,08/09/19 11:13,"117 Walnut St, New York City, NY 10001" -241796,AAA Batteries (4-pack),1,2.99,08/31/19 22:06,"535 South St, Atlanta, GA 30301" -241797,Apple Airpods Headphones,1,150,08/16/19 01:13,"919 Walnut St, San Francisco, CA 94016" -241798,ThinkPad Laptop,1,999.99,08/26/19 08:52,"940 River St, San Francisco, CA 94016" -241799,Bose SoundSport Headphones,1,99.99,08/07/19 13:43,"920 2nd St, San Francisco, CA 94016" -241800,Google Phone,1,600,08/14/19 12:42,"76 Cherry St, San Francisco, CA 94016" -241801,Macbook Pro Laptop,1,1700,08/02/19 15:39,"691 Church St, Seattle, WA 98101" -241802,ThinkPad Laptop,1,999.99,08/07/19 14:52,"362 Lake St, Los Angeles, CA 90001" -241803,ThinkPad Laptop,1,999.99,08/05/19 10:50,"388 4th St, Seattle, WA 98101" -241804,Wired Headphones,1,11.99,08/23/19 16:02,"120 Adams St, San Francisco, CA 94016" -241805,Bose SoundSport Headphones,1,99.99,08/29/19 12:45,"440 4th St, Portland, OR 97035" -241806,Lightning Charging Cable,1,14.95,08/20/19 15:33,"720 South St, Austin, TX 73301" -241807,AAA Batteries (4-pack),1,2.99,08/26/19 13:55,"319 7th St, Los Angeles, CA 90001" -241808,USB-C Charging Cable,1,11.95,08/07/19 21:45,"815 Maple St, Los Angeles, CA 90001" -241809,Wired Headphones,1,11.99,08/11/19 12:32,"226 Elm St, San Francisco, CA 94016" -241810,AAA Batteries (4-pack),1,2.99,08/01/19 17:10,"939 Washington St, San Francisco, CA 94016" -241811,20in Monitor,1,109.99,08/26/19 00:11,"773 7th St, Los Angeles, CA 90001" -241812,Wired Headphones,1,11.99,08/26/19 18:07,"580 Meadow St, Los Angeles, CA 90001" -241813,AAA Batteries (4-pack),3,2.99,08/08/19 21:51,"504 Hickory St, Dallas, TX 75001" -241814,Wired Headphones,1,11.99,08/13/19 20:08,"704 Washington St, Seattle, WA 98101" -241815,iPhone,1,700,08/15/19 07:46,"347 Lakeview St, San Francisco, CA 94016" -241816,AAA Batteries (4-pack),1,2.99,08/16/19 07:06,"733 Sunset St, Los Angeles, CA 90001" -241817,Vareebadd Phone,1,400,08/24/19 00:35,"837 13th St, Boston, MA 02215" -241817,USB-C Charging Cable,2,11.95,08/24/19 00:35,"837 13th St, Boston, MA 02215" -241817,Bose SoundSport Headphones,1,99.99,08/24/19 00:35,"837 13th St, Boston, MA 02215" -241818,USB-C Charging Cable,1,11.95,08/25/19 22:42,"352 6th St, San Francisco, CA 94016" -241819,AA Batteries (4-pack),1,3.84,08/06/19 10:46,"886 Dogwood St, San Francisco, CA 94016" -241820,USB-C Charging Cable,1,11.95,08/10/19 21:54,"429 Johnson St, New York City, NY 10001" -241821,AAA Batteries (4-pack),2,2.99,08/24/19 16:30,"778 Sunset St, Los Angeles, CA 90001" -241822,Wired Headphones,1,11.99,08/20/19 22:00,"109 Johnson St, Dallas, TX 75001" -241823,27in FHD Monitor,1,149.99,08/28/19 12:34,"438 Johnson St, San Francisco, CA 94016" -241824,Apple Airpods Headphones,1,150,08/03/19 19:01,"827 Forest St, San Francisco, CA 94016" -241825,AAA Batteries (4-pack),2,2.99,08/13/19 21:59,"303 10th St, Portland, OR 97035" -241826,34in Ultrawide Monitor,1,379.99,08/19/19 10:09,"545 9th St, Los Angeles, CA 90001" -241827,Lightning Charging Cable,1,14.95,08/28/19 17:14,"709 Willow St, Los Angeles, CA 90001" -241828,27in FHD Monitor,1,149.99,08/29/19 14:44,"216 12th St, Los Angeles, CA 90001" -241829,USB-C Charging Cable,1,11.95,08/13/19 11:16,"408 Lake St, New York City, NY 10001" -241830,27in FHD Monitor,1,149.99,08/01/19 13:26,"87 Park St, Boston, MA 02215" -241831,Lightning Charging Cable,1,14.95,08/18/19 21:40,"401 10th St, San Francisco, CA 94016" -241832,Apple Airpods Headphones,1,150,08/04/19 22:20,"152 Center St, San Francisco, CA 94016" -241833,27in FHD Monitor,1,149.99,08/01/19 22:52,"577 Jefferson St, Los Angeles, CA 90001" -241834,Google Phone,1,600,08/22/19 19:10,"976 Lincoln St, Dallas, TX 75001" -241835,Wired Headphones,1,11.99,08/25/19 15:38,"497 Dogwood St, New York City, NY 10001" -241836,iPhone,1,700,08/03/19 01:49,"436 13th St, Boston, MA 02215" -241837,Google Phone,1,600,08/20/19 17:21,"14 Cherry St, Los Angeles, CA 90001" -241838,34in Ultrawide Monitor,1,379.99,08/29/19 12:37,"395 Cedar St, Los Angeles, CA 90001" -241839,Bose SoundSport Headphones,1,99.99,08/15/19 21:30,"231 10th St, New York City, NY 10001" -241840,27in 4K Gaming Monitor,1,389.99,08/08/19 11:13,"785 10th St, Boston, MA 02215" -241841,Wired Headphones,1,11.99,08/26/19 13:45,"752 Lakeview St, Atlanta, GA 30301" -241842,Bose SoundSport Headphones,1,99.99,08/13/19 15:48,"517 Chestnut St, San Francisco, CA 94016" -241843,Wired Headphones,1,11.99,08/20/19 11:27,"858 Jefferson St, New York City, NY 10001" -241844,Wired Headphones,1,11.99,08/07/19 15:11,"583 13th St, Atlanta, GA 30301" -241845,Apple Airpods Headphones,1,150,08/25/19 16:49,"838 Church St, San Francisco, CA 94016" -241846,27in 4K Gaming Monitor,1,389.99,08/30/19 11:54,"505 8th St, Seattle, WA 98101" -241847,AA Batteries (4-pack),1,3.84,08/14/19 13:42,"902 Adams St, Boston, MA 02215" -241848,AA Batteries (4-pack),1,3.84,08/24/19 19:53,"622 Lake St, Portland, OR 97035" -241849,iPhone,1,700,08/18/19 16:19,"135 Dogwood St, Los Angeles, CA 90001" -241850,Apple Airpods Headphones,1,150,08/24/19 00:25,"735 Johnson St, Boston, MA 02215" -241851,AA Batteries (4-pack),1,3.84,08/17/19 19:06,"735 6th St, Austin, TX 73301" -241852,AA Batteries (4-pack),3,3.84,08/16/19 18:00,"788 Pine St, Boston, MA 02215" -241853,27in 4K Gaming Monitor,1,389.99,08/18/19 22:52,"27 Madison St, Boston, MA 02215" -241854,USB-C Charging Cable,1,11.95,08/01/19 20:48,"17 Cedar St, Los Angeles, CA 90001" -241855,USB-C Charging Cable,1,11.95,08/20/19 12:13,"691 4th St, San Francisco, CA 94016" -241856,Lightning Charging Cable,1,14.95,08/31/19 12:08,"210 Cherry St, New York City, NY 10001" -241857,USB-C Charging Cable,1,11.95,08/30/19 22:06,"753 Lakeview St, San Francisco, CA 94016" -241858,Wired Headphones,1,11.99,08/28/19 21:13,"343 Lincoln St, San Francisco, CA 94016" -241859,Google Phone,1,600,08/10/19 20:13,"391 West St, Seattle, WA 98101" -241860,Apple Airpods Headphones,1,150,08/24/19 07:15,"639 Highland St, Dallas, TX 75001" -241861,Wired Headphones,2,11.99,08/08/19 12:45,"558 Chestnut St, Boston, MA 02215" -241862,USB-C Charging Cable,1,11.95,08/15/19 12:52,"868 12th St, Boston, MA 02215" -241863,iPhone,1,700,08/25/19 20:38,"722 Washington St, Portland, OR 97035" -241863,Apple Airpods Headphones,1,150,08/25/19 20:38,"722 Washington St, Portland, OR 97035" -241864,iPhone,1,700,08/18/19 15:37,"883 Pine St, Seattle, WA 98101" -241865,AA Batteries (4-pack),1,3.84,08/23/19 17:16,"4 Lakeview St, Austin, TX 73301" -241866,AAA Batteries (4-pack),1,2.99,08/16/19 07:31,"322 Church St, New York City, NY 10001" -241867,AAA Batteries (4-pack),1,2.99,08/12/19 02:16,"483 Meadow St, New York City, NY 10001" -241868,Lightning Charging Cable,1,14.95,08/20/19 14:07,"878 Adams St, Los Angeles, CA 90001" -241869,Google Phone,1,600,08/14/19 12:16,"661 Madison St, Boston, MA 02215" -241870,Vareebadd Phone,1,400,08/27/19 08:20,"890 West St, San Francisco, CA 94016" -241871,Wired Headphones,1,11.99,08/06/19 15:00,"673 11th St, Boston, MA 02215" -241872,Flatscreen TV,1,300,08/03/19 22:05,"234 Hill St, Dallas, TX 75001" -241873,iPhone,1,700,08/02/19 12:05,"377 6th St, Boston, MA 02215" -241874,27in FHD Monitor,1,149.99,08/14/19 07:27,"106 Spruce St, San Francisco, CA 94016" -241875,AAA Batteries (4-pack),1,2.99,08/15/19 08:03,"105 Johnson St, Los Angeles, CA 90001" -241876,Macbook Pro Laptop,1,1700,08/07/19 21:08,"419 South St, Seattle, WA 98101" -241877,USB-C Charging Cable,1,11.95,08/13/19 11:10,"109 Spruce St, New York City, NY 10001" -241878,Wired Headphones,1,11.99,08/21/19 12:17,"643 Madison St, San Francisco, CA 94016" -241879,AA Batteries (4-pack),1,3.84,08/07/19 20:41,"559 2nd St, San Francisco, CA 94016" -241880,Wired Headphones,1,11.99,08/25/19 18:00,"688 Hickory St, Boston, MA 02215" -241881,Bose SoundSport Headphones,1,99.99,08/24/19 21:13,"163 South St, San Francisco, CA 94016" -241882,Flatscreen TV,1,300,08/17/19 15:40,"148 Madison St, Portland, OR 97035" -241883,AAA Batteries (4-pack),1,2.99,08/06/19 11:56,"553 Lincoln St, San Francisco, CA 94016" -241884,USB-C Charging Cable,1,11.95,08/28/19 14:20,"335 4th St, Atlanta, GA 30301" -241885,Google Phone,1,600,08/22/19 11:56,"899 Adams St, New York City, NY 10001" -241886,34in Ultrawide Monitor,1,379.99,08/23/19 20:28,"951 Cedar St, Atlanta, GA 30301" -241887,Bose SoundSport Headphones,1,99.99,08/13/19 23:49,"507 Wilson St, Los Angeles, CA 90001" -241888,Wired Headphones,3,11.99,08/02/19 10:04,"712 8th St, New York City, NY 10001" -241889,AAA Batteries (4-pack),1,2.99,08/10/19 20:39,"843 Forest St, San Francisco, CA 94016" -241890,Lightning Charging Cable,1,14.95,08/23/19 10:48,"228 Church St, Boston, MA 02215" -241891,Lightning Charging Cable,1,14.95,08/15/19 08:23,"230 Forest St, Los Angeles, CA 90001" -241892,Apple Airpods Headphones,1,150,08/07/19 10:33,"141 4th St, Boston, MA 02215" -241893,Lightning Charging Cable,1,14.95,08/21/19 22:26,"938 Ridge St, Los Angeles, CA 90001" -241894,Wired Headphones,1,11.99,08/09/19 11:50,"807 2nd St, Boston, MA 02215" -241895,USB-C Charging Cable,1,11.95,08/15/19 16:13,"926 Lake St, Dallas, TX 75001" -241896,Lightning Charging Cable,1,14.95,08/16/19 18:56,"242 North St, Dallas, TX 75001" -241897,USB-C Charging Cable,1,11.95,08/05/19 20:36,"342 Chestnut St, Portland, OR 97035" -241898,AA Batteries (4-pack),2,3.84,08/12/19 10:42,"563 1st St, Dallas, TX 75001" -241899,iPhone,1,700,08/27/19 23:04,"317 Wilson St, New York City, NY 10001" -241900,AA Batteries (4-pack),4,3.84,08/21/19 12:45,"719 14th St, Seattle, WA 98101" -241901,AA Batteries (4-pack),1,3.84,08/10/19 21:41,"719 Lakeview St, New York City, NY 10001" -241902,AA Batteries (4-pack),1,3.84,08/14/19 16:49,"583 10th St, Dallas, TX 75001" -241903,Lightning Charging Cable,1,14.95,08/26/19 10:55,"414 West St, Seattle, WA 98101" -241904,27in 4K Gaming Monitor,1,389.99,08/09/19 21:37,"540 Adams St, Seattle, WA 98101" -241905,Bose SoundSport Headphones,1,99.99,08/11/19 19:36,"240 North St, San Francisco, CA 94016" -241906,Wired Headphones,1,11.99,08/16/19 13:11,"21 Meadow St, New York City, NY 10001" -241907,Macbook Pro Laptop,1,1700,08/20/19 21:43,"311 Sunset St, Austin, TX 73301" -241908,27in 4K Gaming Monitor,1,389.99,08/14/19 04:11,"666 Chestnut St, San Francisco, CA 94016" -241909,AA Batteries (4-pack),1,3.84,08/20/19 20:21,"160 Forest St, San Francisco, CA 94016" -241910,27in FHD Monitor,1,149.99,08/10/19 20:56,"890 Center St, Los Angeles, CA 90001" -241911,Lightning Charging Cable,1,14.95,08/30/19 08:26,"248 Washington St, Austin, TX 73301" -241912,Bose SoundSport Headphones,1,99.99,08/10/19 11:02,"467 Dogwood St, Dallas, TX 75001" -241913,20in Monitor,1,109.99,08/25/19 09:36,"190 Lake St, Austin, TX 73301" -241914,Wired Headphones,1,11.99,08/18/19 19:36,"59 Cherry St, Atlanta, GA 30301" -241915,Google Phone,1,600,08/26/19 20:39,"797 Chestnut St, Los Angeles, CA 90001" -241916,Bose SoundSport Headphones,1,99.99,08/24/19 13:32,"425 13th St, San Francisco, CA 94016" -241917,USB-C Charging Cable,1,11.95,08/20/19 22:16,"104 2nd St, Dallas, TX 75001" -241918,20in Monitor,1,109.99,08/05/19 11:07,"721 Jackson St, San Francisco, CA 94016" -241919,27in 4K Gaming Monitor,1,389.99,08/29/19 06:47,"719 Washington St, Seattle, WA 98101" -241920,AAA Batteries (4-pack),2,2.99,08/10/19 21:16,"755 2nd St, New York City, NY 10001" -241921,AAA Batteries (4-pack),3,2.99,08/12/19 19:07,"658 2nd St, Boston, MA 02215" -241922,AAA Batteries (4-pack),1,2.99,08/25/19 21:19,"925 10th St, New York City, NY 10001" -241923,Lightning Charging Cable,1,14.95,08/14/19 11:51,"757 North St, Dallas, TX 75001" -241924,USB-C Charging Cable,1,11.95,08/08/19 16:05,"349 2nd St, Boston, MA 02215" -241925,USB-C Charging Cable,1,11.95,08/07/19 19:56,"270 North St, San Francisco, CA 94016" -241926,AAA Batteries (4-pack),1,2.99,08/19/19 11:55,"51 1st St, Portland, OR 97035" -241927,Lightning Charging Cable,2,14.95,08/30/19 21:15,"89 Johnson St, Seattle, WA 98101" -241928,AAA Batteries (4-pack),1,2.99,08/13/19 11:31,"322 2nd St, San Francisco, CA 94016" -241929,20in Monitor,1,109.99,08/16/19 08:57,"345 Center St, Seattle, WA 98101" -241930,34in Ultrawide Monitor,1,379.99,08/08/19 11:58,"520 8th St, New York City, NY 10001" -241931,Google Phone,1,600,08/27/19 00:19,"859 Hickory St, Los Angeles, CA 90001" -241932,AA Batteries (4-pack),3,3.84,08/25/19 20:52,"740 Sunset St, San Francisco, CA 94016" -241933,AA Batteries (4-pack),1,3.84,08/11/19 22:56,"121 Maple St, Atlanta, GA 30301" -241934,AA Batteries (4-pack),1,3.84,08/29/19 13:12,"231 Lakeview St, Los Angeles, CA 90001" -241935,Wired Headphones,1,11.99,08/22/19 07:57,"105 6th St, New York City, NY 10001" -241936,Macbook Pro Laptop,1,1700,08/14/19 16:18,"657 Hickory St, New York City, NY 10001" -241937,AA Batteries (4-pack),1,3.84,08/06/19 17:30,"542 2nd St, Portland, OR 97035" -241938,AAA Batteries (4-pack),1,2.99,08/22/19 19:15,"891 Forest St, Dallas, TX 75001" -241939,AA Batteries (4-pack),1,3.84,08/09/19 12:03,"151 Spruce St, Seattle, WA 98101" -241940,27in 4K Gaming Monitor,1,389.99,08/30/19 16:58,"978 Chestnut St, Boston, MA 02215" -241940,34in Ultrawide Monitor,1,379.99,08/30/19 16:58,"978 Chestnut St, Boston, MA 02215" -241941,USB-C Charging Cable,2,11.95,08/11/19 01:12,"675 Madison St, Los Angeles, CA 90001" -241942,Lightning Charging Cable,1,14.95,08/26/19 09:20,"741 Chestnut St, New York City, NY 10001" -241943,Wired Headphones,1,11.99,08/10/19 19:47,"131 6th St, Dallas, TX 75001" -241944,27in 4K Gaming Monitor,1,389.99,08/23/19 03:12,"200 Hickory St, New York City, NY 10001" -241945,AA Batteries (4-pack),1,3.84,08/26/19 21:24,"357 9th St, Boston, MA 02215" -241946,Bose SoundSport Headphones,1,99.99,08/27/19 22:19,"847 14th St, Los Angeles, CA 90001" -241947,Wired Headphones,2,11.99,08/14/19 20:21,"224 Maple St, Seattle, WA 98101" -241948,Wired Headphones,1,11.99,08/19/19 01:20,"149 Lake St, Boston, MA 02215" -241949,Flatscreen TV,1,300,08/10/19 11:06,"221 Cherry St, Dallas, TX 75001" -241950,Google Phone,1,600,08/06/19 07:44,"791 West St, Austin, TX 73301" -241951,Apple Airpods Headphones,1,150,08/29/19 10:04,"652 13th St, Austin, TX 73301" -241952,Lightning Charging Cable,1,14.95,08/31/19 07:17,"976 Jefferson St, Atlanta, GA 30301" -241953,27in 4K Gaming Monitor,1,389.99,08/06/19 15:41,"810 Forest St, Boston, MA 02215" -241954,USB-C Charging Cable,1,11.95,08/10/19 11:29,"210 Dogwood St, New York City, NY 10001" -241955,Vareebadd Phone,1,400,08/10/19 23:18,"722 14th St, Portland, OR 97035" -241956,AA Batteries (4-pack),1,3.84,08/06/19 19:15,"576 Johnson St, Seattle, WA 98101" -241957,iPhone,1,700,08/02/19 08:57,"178 8th St, New York City, NY 10001" -241958,27in FHD Monitor,1,149.99,08/29/19 10:32,"308 6th St, Boston, MA 02215" -241959,AAA Batteries (4-pack),1,2.99,08/28/19 15:58,"640 2nd St, Seattle, WA 98101" -241960,Lightning Charging Cable,1,14.95,08/28/19 21:53,"442 Spruce St, Los Angeles, CA 90001" -241961,USB-C Charging Cable,1,11.95,08/09/19 17:26,"940 13th St, New York City, NY 10001" -241962,Lightning Charging Cable,1,14.95,08/13/19 15:48,"114 1st St, New York City, NY 10001" -241963,USB-C Charging Cable,1,11.95,08/08/19 19:58,"742 Madison St, Portland, OR 97035" -241964,AAA Batteries (4-pack),1,2.99,08/11/19 10:28,"166 Elm St, Atlanta, GA 30301" -241965,iPhone,1,700,08/06/19 13:08,"374 11th St, Portland, OR 97035" -241966,Google Phone,1,600,08/24/19 11:11,"436 13th St, Seattle, WA 98101" -241967,Lightning Charging Cable,1,14.95,08/31/19 09:52,"682 13th St, Portland, OR 97035" -,,,,, -241968,AA Batteries (4-pack),1,3.84,08/23/19 18:41,"538 Center St, New York City, NY 10001" -241969,34in Ultrawide Monitor,1,379.99,08/06/19 08:44,"471 Church St, San Francisco, CA 94016" -241970,AAA Batteries (4-pack),1,2.99,08/18/19 12:18,"672 Main St, Los Angeles, CA 90001" -241971,USB-C Charging Cable,1,11.95,08/18/19 11:46,"738 8th St, Seattle, WA 98101" -241972,Bose SoundSport Headphones,1,99.99,08/24/19 20:09,"741 Hickory St, San Francisco, CA 94016" -241973,AA Batteries (4-pack),1,3.84,08/09/19 15:21,"930 Lincoln St, Dallas, TX 75001" -241974,Wired Headphones,1,11.99,08/01/19 05:48,"386 Maple St, Los Angeles, CA 90001" -241975,USB-C Charging Cable,1,11.95,08/05/19 21:29,"134 Willow St, San Francisco, CA 94016" -241976,USB-C Charging Cable,1,11.95,08/31/19 20:48,"980 River St, Seattle, WA 98101" -241977,USB-C Charging Cable,1,11.95,08/02/19 12:07,"599 Hill St, Austin, TX 73301" -241978,ThinkPad Laptop,1,999.99,08/03/19 10:12,"919 13th St, New York City, NY 10001" -241979,Apple Airpods Headphones,1,150,08/15/19 09:14,"774 Jefferson St, San Francisco, CA 94016" -241980,iPhone,1,700,08/10/19 09:52,"488 Jackson St, Los Angeles, CA 90001" -241981,USB-C Charging Cable,2,11.95,08/06/19 11:35,"585 Hill St, Seattle, WA 98101" -241982,USB-C Charging Cable,1,11.95,08/23/19 20:59,"340 Hickory St, Atlanta, GA 30301" -241983,AAA Batteries (4-pack),2,2.99,08/19/19 20:02,"727 Highland St, Atlanta, GA 30301" -241984,iPhone,1,700,08/24/19 13:36,"67 7th St, Atlanta, GA 30301" -241985,USB-C Charging Cable,1,11.95,08/15/19 21:11,"748 Jackson St, Portland, OR 97035" -241986,27in FHD Monitor,1,149.99,08/17/19 19:34,"774 Meadow St, Dallas, TX 75001" -241987,USB-C Charging Cable,1,11.95,08/31/19 19:43,"814 South St, Seattle, WA 98101" -241987,Lightning Charging Cable,1,14.95,08/31/19 19:43,"814 South St, Seattle, WA 98101" -241988,Lightning Charging Cable,1,14.95,08/16/19 19:26,"695 5th St, Seattle, WA 98101" -241989,Wired Headphones,1,11.99,08/11/19 12:06,"602 Main St, Atlanta, GA 30301" -241990,AAA Batteries (4-pack),1,2.99,08/03/19 12:52,"464 Main St, New York City, NY 10001" -241991,Macbook Pro Laptop,1,1700,08/14/19 12:38,"565 11th St, San Francisco, CA 94016" -241992,Wired Headphones,1,11.99,08/31/19 07:55,"456 Chestnut St, Los Angeles, CA 90001" -241993,Lightning Charging Cable,1,14.95,08/15/19 16:53,"51 Dogwood St, Los Angeles, CA 90001" -241994,AAA Batteries (4-pack),2,2.99,08/16/19 05:46,"257 Lake St, Portland, OR 97035" -241995,27in 4K Gaming Monitor,1,389.99,08/28/19 22:23,"318 Sunset St, Austin, TX 73301" -241996,AA Batteries (4-pack),2,3.84,08/13/19 11:07,"113 Ridge St, Austin, TX 73301" -241997,Bose SoundSport Headphones,1,99.99,08/04/19 22:31,"525 9th St, Dallas, TX 75001" -241998,Macbook Pro Laptop,1,1700,08/27/19 13:27,"421 Center St, San Francisco, CA 94016" -241999,27in FHD Monitor,1,149.99,08/25/19 09:14,"106 Church St, Seattle, WA 98101" -242000,USB-C Charging Cable,2,11.95,08/08/19 09:44,"160 Forest St, Austin, TX 73301" -242001,AAA Batteries (4-pack),2,2.99,08/29/19 12:23,"527 Sunset St, Los Angeles, CA 90001" -242002,27in FHD Monitor,1,149.99,08/20/19 19:56,"174 River St, San Francisco, CA 94016" -242003,AAA Batteries (4-pack),1,2.99,08/08/19 14:57,"175 Chestnut St, Dallas, TX 75001" -242004,AA Batteries (4-pack),1,3.84,08/08/19 08:37,"743 Spruce St, San Francisco, CA 94016" -242005,Bose SoundSport Headphones,1,99.99,08/18/19 07:41,"812 Willow St, San Francisco, CA 94016" -242006,Apple Airpods Headphones,1,150,08/24/19 14:59,"119 2nd St, San Francisco, CA 94016" -242007,Lightning Charging Cable,1,14.95,08/23/19 09:49,"814 Church St, Atlanta, GA 30301" -242008,34in Ultrawide Monitor,1,379.99,08/21/19 11:45,"717 Wilson St, Los Angeles, CA 90001" -242009,AA Batteries (4-pack),1,3.84,08/29/19 07:20,"293 Walnut St, New York City, NY 10001" -242010,AA Batteries (4-pack),2,3.84,08/14/19 22:35,"553 10th St, San Francisco, CA 94016" -242011,AA Batteries (4-pack),1,3.84,08/16/19 14:45,"743 Washington St, Atlanta, GA 30301" -242012,Lightning Charging Cable,1,14.95,08/29/19 18:43,"938 Pine St, San Francisco, CA 94016" -242013,Bose SoundSport Headphones,1,99.99,08/23/19 02:21,"860 Sunset St, Los Angeles, CA 90001" -242014,Apple Airpods Headphones,1,150,08/14/19 22:46,"13 Forest St, Dallas, TX 75001" -242015,Apple Airpods Headphones,1,150,08/11/19 12:33,"288 Pine St, Los Angeles, CA 90001" -242016,Lightning Charging Cable,1,14.95,08/17/19 14:21,"570 12th St, San Francisco, CA 94016" -242017,20in Monitor,1,109.99,08/23/19 18:27,"624 Hill St, Boston, MA 02215" -242018,27in FHD Monitor,1,149.99,08/24/19 23:24,"982 Meadow St, Dallas, TX 75001" -242018,27in 4K Gaming Monitor,1,389.99,08/24/19 23:24,"982 Meadow St, Dallas, TX 75001" -242019,Apple Airpods Headphones,1,150,08/19/19 10:33,"309 5th St, Los Angeles, CA 90001" -242019,Lightning Charging Cable,1,14.95,08/19/19 10:33,"309 5th St, Los Angeles, CA 90001" -242020,27in 4K Gaming Monitor,1,389.99,08/30/19 14:14,"27 6th St, Seattle, WA 98101" -242021,Lightning Charging Cable,1,14.95,08/27/19 08:52,"264 Forest St, Boston, MA 02215" -242022,Wired Headphones,2,11.99,08/19/19 19:02,"96 Hickory St, Atlanta, GA 30301" -242023,34in Ultrawide Monitor,1,379.99,08/22/19 13:47,"241 Park St, Atlanta, GA 30301" -242024,USB-C Charging Cable,1,11.95,08/25/19 15:17,"998 North St, Los Angeles, CA 90001" -242025,AAA Batteries (4-pack),1,2.99,08/07/19 09:41,"243 Walnut St, Los Angeles, CA 90001" -242026,Lightning Charging Cable,1,14.95,08/22/19 21:08,"22 Highland St, San Francisco, CA 94016" -242027,Wired Headphones,1,11.99,08/30/19 12:30,"368 Forest St, Boston, MA 02215" -242028,AAA Batteries (4-pack),1,2.99,08/20/19 10:25,"830 Chestnut St, San Francisco, CA 94016" -242029,iPhone,1,700,08/25/19 22:32,"965 Center St, Atlanta, GA 30301" -242030,AAA Batteries (4-pack),1,2.99,08/11/19 09:52,"873 Lincoln St, Atlanta, GA 30301" -242031,Lightning Charging Cable,1,14.95,08/06/19 09:11,"749 Ridge St, Los Angeles, CA 90001" -242032,AA Batteries (4-pack),1,3.84,08/19/19 14:48,"205 7th St, Boston, MA 02215" -242033,AA Batteries (4-pack),3,3.84,08/31/19 00:57,"783 Jefferson St, Los Angeles, CA 90001" -242034,AAA Batteries (4-pack),1,2.99,08/10/19 16:25,"447 Park St, Boston, MA 02215" -242035,20in Monitor,1,109.99,08/03/19 22:21,"44 Center St, Dallas, TX 75001" -242036,Wired Headphones,1,11.99,08/15/19 19:56,"571 8th St, Los Angeles, CA 90001" -242037,ThinkPad Laptop,1,999.99,08/31/19 17:13,"450 Elm St, Atlanta, GA 30301" -242038,Apple Airpods Headphones,1,150,08/04/19 12:24,"320 Lake St, Boston, MA 02215" -242039,AAA Batteries (4-pack),1,2.99,08/20/19 22:27,"228 7th St, Atlanta, GA 30301" -242040,Flatscreen TV,1,300,08/06/19 17:48,"714 Hickory St, Dallas, TX 75001" -242041,AA Batteries (4-pack),1,3.84,08/29/19 16:48,"799 Meadow St, Seattle, WA 98101" -242042,Google Phone,1,600,08/03/19 08:20,"370 Maple St, Atlanta, GA 30301" -242043,Wired Headphones,1,11.99,08/06/19 20:26,"409 Cherry St, Dallas, TX 75001" -242044,Google Phone,1,600,08/03/19 21:28,"831 4th St, Los Angeles, CA 90001" -242044,27in FHD Monitor,1,149.99,08/03/19 21:28,"831 4th St, Los Angeles, CA 90001" -242045,AAA Batteries (4-pack),1,2.99,08/09/19 14:46,"456 Lake St, Los Angeles, CA 90001" -242046,Google Phone,1,600,08/13/19 23:10,"600 Church St, New York City, NY 10001" -242047,USB-C Charging Cable,1,11.95,08/21/19 09:41,"291 North St, Boston, MA 02215" -242048,Flatscreen TV,1,300,08/01/19 16:23,"22 1st St, New York City, NY 10001" -242049,ThinkPad Laptop,1,999.99,08/12/19 14:49,"103 Cedar St, New York City, NY 10001" -242050,AAA Batteries (4-pack),1,2.99,08/01/19 10:12,"580 6th St, San Francisco, CA 94016" -242051,AAA Batteries (4-pack),1,2.99,08/10/19 07:00,"954 Walnut St, San Francisco, CA 94016" -242052,ThinkPad Laptop,1,999.99,08/14/19 23:28,"704 Madison St, San Francisco, CA 94016" -242053,Bose SoundSport Headphones,1,99.99,08/18/19 22:56,"116 South St, Atlanta, GA 30301" -242054,27in FHD Monitor,1,149.99,08/16/19 17:43,"280 Jefferson St, Boston, MA 02215" -242055,USB-C Charging Cable,1,11.95,08/31/19 13:30,"773 7th St, Boston, MA 02215" -242056,Apple Airpods Headphones,1,150,08/07/19 08:55,"217 Ridge St, Los Angeles, CA 90001" -242057,Lightning Charging Cable,1,14.95,08/16/19 13:04,"938 6th St, Dallas, TX 75001" -242058,AAA Batteries (4-pack),2,2.99,08/21/19 09:06,"355 5th St, Atlanta, GA 30301" -242059,Wired Headphones,1,11.99,08/24/19 18:37,"631 Madison St, Dallas, TX 75001" -242060,AAA Batteries (4-pack),2,2.99,08/30/19 20:57,"904 Adams St, Atlanta, GA 30301" -242061,AA Batteries (4-pack),1,3.84,08/02/19 06:27,"59 4th St, New York City, NY 10001" -242062,Apple Airpods Headphones,1,150,08/23/19 21:53,"794 Main St, Los Angeles, CA 90001" -242063,USB-C Charging Cable,1,11.95,08/28/19 18:23,"27 Cherry St, Dallas, TX 75001" -242064,20in Monitor,1,109.99,08/07/19 14:24,"834 Hill St, New York City, NY 10001" -242065,Apple Airpods Headphones,1,150,08/17/19 10:23,"832 Spruce St, Dallas, TX 75001" -242066,27in FHD Monitor,1,149.99,08/21/19 09:13,"970 Lakeview St, Austin, TX 73301" -242067,iPhone,1,700,08/04/19 23:04,"934 14th St, Austin, TX 73301" -242068,AAA Batteries (4-pack),2,2.99,08/17/19 13:49,"700 South St, San Francisco, CA 94016" -242069,34in Ultrawide Monitor,1,379.99,08/10/19 23:24,"848 6th St, San Francisco, CA 94016" -242070,27in 4K Gaming Monitor,1,389.99,08/29/19 00:49,"484 Spruce St, San Francisco, CA 94016" -242071,AAA Batteries (4-pack),1,2.99,08/18/19 17:06,"29 Park St, Atlanta, GA 30301" -242072,Wired Headphones,1,11.99,08/28/19 19:04,"234 West St, Portland, OR 97035" -242073,Apple Airpods Headphones,1,150,08/03/19 21:06,"841 1st St, Portland, OR 97035" -242074,Wired Headphones,1,11.99,08/24/19 05:50,"120 4th St, Austin, TX 73301" -242075,USB-C Charging Cable,1,11.95,08/16/19 10:53,"319 Main St, Austin, TX 73301" -242076,USB-C Charging Cable,1,11.95,08/25/19 16:24,"899 Spruce St, Los Angeles, CA 90001" -242077,AAA Batteries (4-pack),1,2.99,08/19/19 10:35,"512 Ridge St, Dallas, TX 75001" -242078,USB-C Charging Cable,1,11.95,08/14/19 23:01,"65 Chestnut St, San Francisco, CA 94016" -242079,AAA Batteries (4-pack),1,2.99,08/28/19 19:43,"294 North St, San Francisco, CA 94016" -242080,Bose SoundSport Headphones,1,99.99,08/12/19 21:16,"758 2nd St, Los Angeles, CA 90001" -242081,AAA Batteries (4-pack),4,2.99,08/16/19 20:15,"716 5th St, San Francisco, CA 94016" -242082,ThinkPad Laptop,1,999.99,08/09/19 12:40,"553 11th St, Austin, TX 73301" -242083,Google Phone,1,600,08/08/19 13:08,"812 2nd St, San Francisco, CA 94016" -242083,USB-C Charging Cable,1,11.95,08/08/19 13:08,"812 2nd St, San Francisco, CA 94016" -242084,AAA Batteries (4-pack),2,2.99,08/27/19 11:34,"626 Madison St, San Francisco, CA 94016" -242085,ThinkPad Laptop,1,999.99,08/02/19 03:14,"421 Willow St, San Francisco, CA 94016" -242086,Wired Headphones,1,11.99,08/08/19 20:51,"42 1st St, New York City, NY 10001" -242087,20in Monitor,1,109.99,08/04/19 15:09,"413 8th St, Portland, OR 97035" -242088,Apple Airpods Headphones,1,150,08/12/19 15:15,"980 Jefferson St, Dallas, TX 75001" -242089,Google Phone,1,600,08/31/19 11:18,"543 Walnut St, Portland, OR 97035" -242089,USB-C Charging Cable,1,11.95,08/31/19 11:18,"543 Walnut St, Portland, OR 97035" -242090,Wired Headphones,1,11.99,08/26/19 12:51,"188 North St, San Francisco, CA 94016" -242091,ThinkPad Laptop,1,999.99,08/13/19 02:27,"380 5th St, New York City, NY 10001" -242092,iPhone,1,700,08/20/19 16:57,"296 West St, Boston, MA 02215" -242092,Apple Airpods Headphones,1,150,08/20/19 16:57,"296 West St, Boston, MA 02215" -242093,USB-C Charging Cable,1,11.95,08/07/19 16:05,"656 1st St, San Francisco, CA 94016" -242094,Bose SoundSport Headphones,1,99.99,08/27/19 21:14,"530 5th St, San Francisco, CA 94016" -242095,USB-C Charging Cable,1,11.95,08/17/19 22:35,"870 Meadow St, Los Angeles, CA 90001" -242096,20in Monitor,1,109.99,08/08/19 20:03,"577 14th St, New York City, NY 10001" -242097,20in Monitor,1,109.99,08/16/19 17:35,"333 Elm St, San Francisco, CA 94016" -242098,Lightning Charging Cable,1,14.95,08/17/19 22:58,"488 Ridge St, San Francisco, CA 94016" -242099,AAA Batteries (4-pack),2,2.99,08/19/19 18:51,"834 1st St, Austin, TX 73301" -242100,AAA Batteries (4-pack),1,2.99,08/16/19 10:06,"751 Dogwood St, Portland, OR 97035" -,,,,, -242101,USB-C Charging Cable,1,11.95,08/18/19 18:39,"5 Willow St, Austin, TX 73301" -242102,AAA Batteries (4-pack),1,2.99,08/19/19 13:11,"821 11th St, Atlanta, GA 30301" -242103,AA Batteries (4-pack),2,3.84,08/07/19 17:00,"364 Forest St, Dallas, TX 75001" -242104,Google Phone,1,600,08/09/19 15:58,"861 Jackson St, New York City, NY 10001" -242104,USB-C Charging Cable,1,11.95,08/09/19 15:58,"861 Jackson St, New York City, NY 10001" -242105,Lightning Charging Cable,1,14.95,08/23/19 17:57,"77 12th St, San Francisco, CA 94016" -242106,Google Phone,1,600,08/12/19 12:37,"930 Elm St, Los Angeles, CA 90001" -242107,AA Batteries (4-pack),2,3.84,08/22/19 23:01,"690 Meadow St, New York City, NY 10001" -242108,27in 4K Gaming Monitor,1,389.99,08/03/19 10:05,"80 Meadow St, Atlanta, GA 30301" -242109,AA Batteries (4-pack),1,3.84,08/11/19 20:53,"374 7th St, Los Angeles, CA 90001" -242110,Wired Headphones,1,11.99,08/12/19 21:36,"640 West St, San Francisco, CA 94016" -242111,Lightning Charging Cable,2,14.95,08/05/19 14:49,"656 Ridge St, Boston, MA 02215" -242112,USB-C Charging Cable,1,11.95,08/04/19 19:52,"716 Willow St, San Francisco, CA 94016" -242113,AAA Batteries (4-pack),3,2.99,08/28/19 12:03,"873 7th St, San Francisco, CA 94016" -242114,Macbook Pro Laptop,1,1700,08/16/19 14:07,"518 Cherry St, San Francisco, CA 94016" -242115,AA Batteries (4-pack),1,3.84,08/30/19 22:13,"917 14th St, New York City, NY 10001" -242116,AAA Batteries (4-pack),4,2.99,08/04/19 06:06,"590 Park St, Boston, MA 02215" -242117,Bose SoundSport Headphones,1,99.99,08/16/19 13:35,"505 Dogwood St, Dallas, TX 75001" -242118,Wired Headphones,1,11.99,08/24/19 16:07,"320 Washington St, Atlanta, GA 30301" -242119,USB-C Charging Cable,1,11.95,08/09/19 11:00,"959 Park St, Boston, MA 02215" -242120,Bose SoundSport Headphones,1,99.99,08/15/19 18:03,"421 10th St, Boston, MA 02215" -242121,USB-C Charging Cable,1,11.95,08/15/19 11:45,"733 5th St, New York City, NY 10001" -242122,34in Ultrawide Monitor,1,379.99,08/29/19 22:08,"51 River St, New York City, NY 10001" -242123,27in FHD Monitor,1,149.99,08/10/19 16:56,"48 6th St, San Francisco, CA 94016" -242124,ThinkPad Laptop,1,999.99,08/18/19 13:09,"442 Church St, San Francisco, CA 94016" -242125,Wired Headphones,1,11.99,08/27/19 16:39,"878 West St, Seattle, WA 98101" -242126,AAA Batteries (4-pack),1,2.99,08/13/19 18:55,"980 5th St, Atlanta, GA 30301" -242127,Apple Airpods Headphones,1,150,08/26/19 08:33,"908 Elm St, Dallas, TX 75001" -242128,27in 4K Gaming Monitor,1,389.99,08/14/19 14:13,"284 6th St, New York City, NY 10001" -242129,Lightning Charging Cable,1,14.95,08/21/19 21:17,"518 Madison St, Los Angeles, CA 90001" -242130,Lightning Charging Cable,1,14.95,08/30/19 14:46,"709 Dogwood St, San Francisco, CA 94016" -242131,AA Batteries (4-pack),1,3.84,08/15/19 02:00,"308 Madison St, Seattle, WA 98101" -242132,Google Phone,1,600,08/02/19 16:32,"173 12th St, New York City, NY 10001" -242132,USB-C Charging Cable,1,11.95,08/02/19 16:32,"173 12th St, New York City, NY 10001" -242133,AAA Batteries (4-pack),1,2.99,08/23/19 11:11,"631 11th St, New York City, NY 10001" -242134,Macbook Pro Laptop,1,1700,08/29/19 16:37,"361 West St, San Francisco, CA 94016" -242135,USB-C Charging Cable,1,11.95,08/22/19 10:08,"15 Washington St, San Francisco, CA 94016" -242136,Apple Airpods Headphones,1,150,08/23/19 07:26,"32 6th St, New York City, NY 10001" -242137,Lightning Charging Cable,1,14.95,08/31/19 16:31,"63 Dogwood St, San Francisco, CA 94016" -242138,Bose SoundSport Headphones,1,99.99,08/28/19 11:49,"829 Lincoln St, San Francisco, CA 94016" -242139,Google Phone,1,600,08/23/19 20:42,"185 Lakeview St, San Francisco, CA 94016" -242139,USB-C Charging Cable,1,11.95,08/23/19 20:42,"185 Lakeview St, San Francisco, CA 94016" -242140,Lightning Charging Cable,1,14.95,08/21/19 15:11,"492 Lincoln St, New York City, NY 10001" -242141,Flatscreen TV,1,300,08/31/19 09:42,"985 South St, Atlanta, GA 30301" -242142,Lightning Charging Cable,1,14.95,08/25/19 10:40,"885 1st St, San Francisco, CA 94016" -242143,AAA Batteries (4-pack),1,2.99,08/18/19 17:35,"728 Chestnut St, Los Angeles, CA 90001" -242144,USB-C Charging Cable,1,11.95,08/17/19 15:19,"550 14th St, New York City, NY 10001" -242145,USB-C Charging Cable,1,11.95,08/08/19 07:08,"175 River St, Dallas, TX 75001" -242146,Lightning Charging Cable,1,14.95,08/21/19 19:11,"866 Spruce St, San Francisco, CA 94016" -242147,Wired Headphones,1,11.99,08/18/19 07:35,"653 Sunset St, Atlanta, GA 30301" -242148,Macbook Pro Laptop,1,1700,08/07/19 11:47,"192 Willow St, Dallas, TX 75001" -242149,34in Ultrawide Monitor,1,379.99,08/25/19 02:44,"845 14th St, Atlanta, GA 30301" -242150,27in FHD Monitor,1,149.99,08/02/19 19:12,"652 Dogwood St, Boston, MA 02215" -242151,AAA Batteries (4-pack),1,2.99,08/11/19 12:28,"893 Jefferson St, Portland, OR 97035" -242152,Lightning Charging Cable,1,14.95,08/04/19 06:10,"516 6th St, Boston, MA 02215" -242153,Wired Headphones,1,11.99,08/02/19 16:54,"928 Johnson St, Los Angeles, CA 90001" -242154,Wired Headphones,1,11.99,08/18/19 10:19,"837 Sunset St, San Francisco, CA 94016" -242155,USB-C Charging Cable,1,11.95,08/31/19 10:31,"741 Lakeview St, Portland, ME 04101" -242156,Bose SoundSport Headphones,1,99.99,08/06/19 00:52,"39 West St, New York City, NY 10001" -242157,USB-C Charging Cable,1,11.95,08/15/19 06:07,"552 North St, Los Angeles, CA 90001" -242158,iPhone,1,700,08/19/19 09:24,"23 Willow St, Boston, MA 02215" -242159,AA Batteries (4-pack),1,3.84,08/27/19 10:23,"234 Spruce St, Los Angeles, CA 90001" -242160,AA Batteries (4-pack),1,3.84,08/21/19 23:24,"447 Center St, Seattle, WA 98101" -242161,AA Batteries (4-pack),2,3.84,08/27/19 09:27,"644 Jefferson St, San Francisco, CA 94016" -242162,Bose SoundSport Headphones,1,99.99,08/19/19 12:05,"192 Pine St, Austin, TX 73301" -242163,USB-C Charging Cable,1,11.95,08/09/19 21:43,"540 Pine St, Seattle, WA 98101" -242164,ThinkPad Laptop,1,999.99,08/30/19 14:29,"187 Hickory St, Dallas, TX 75001" -242165,USB-C Charging Cable,2,11.95,08/22/19 15:46,"211 13th St, New York City, NY 10001" -242166,Lightning Charging Cable,1,14.95,08/26/19 13:33,"746 Chestnut St, Dallas, TX 75001" -242167,AAA Batteries (4-pack),1,2.99,08/14/19 19:40,"91 10th St, San Francisco, CA 94016" -242168,AAA Batteries (4-pack),2,2.99,08/18/19 11:00,"148 6th St, Los Angeles, CA 90001" -242169,Flatscreen TV,1,300,08/13/19 14:31,"710 10th St, Los Angeles, CA 90001" -242170,AAA Batteries (4-pack),2,2.99,08/29/19 16:27,"181 Church St, San Francisco, CA 94016" -242171,AAA Batteries (4-pack),1,2.99,08/12/19 06:56,"516 Dogwood St, Atlanta, GA 30301" -242172,Flatscreen TV,1,300,08/06/19 19:36,"589 Spruce St, Seattle, WA 98101" -242173,Wired Headphones,1,11.99,08/21/19 17:36,"835 Main St, Dallas, TX 75001" -242174,Lightning Charging Cable,1,14.95,08/17/19 18:19,"805 Pine St, Austin, TX 73301" -242175,AA Batteries (4-pack),2,3.84,08/25/19 20:07,"990 Lincoln St, New York City, NY 10001" -242176,AA Batteries (4-pack),1,3.84,08/07/19 13:38,"472 9th St, San Francisco, CA 94016" -242176,ThinkPad Laptop,1,999.99,08/07/19 13:38,"472 9th St, San Francisco, CA 94016" -242177,AA Batteries (4-pack),1,3.84,08/04/19 19:20,"395 2nd St, San Francisco, CA 94016" -242178,34in Ultrawide Monitor,1,379.99,08/30/19 18:08,"763 Elm St, San Francisco, CA 94016" -242179,AA Batteries (4-pack),1,3.84,08/02/19 13:39,"762 Ridge St, San Francisco, CA 94016" -242180,Lightning Charging Cable,1,14.95,08/28/19 21:37,"108 Meadow St, San Francisco, CA 94016" -242181,Lightning Charging Cable,1,14.95,08/04/19 09:13,"242 North St, New York City, NY 10001" -242182,Lightning Charging Cable,1,14.95,08/26/19 10:27,"171 2nd St, Boston, MA 02215" -242183,27in 4K Gaming Monitor,1,389.99,08/29/19 20:09,"248 11th St, Portland, OR 97035" -242184,Wired Headphones,1,11.99,08/30/19 23:17,"764 Lake St, Boston, MA 02215" -242185,USB-C Charging Cable,1,11.95,08/29/19 13:50,"104 Hill St, Portland, OR 97035" -242186,AAA Batteries (4-pack),1,2.99,08/04/19 11:12,"434 Sunset St, Los Angeles, CA 90001" -242187,iPhone,1,700,08/05/19 06:17,"255 11th St, San Francisco, CA 94016" -242188,Google Phone,1,600,08/10/19 12:41,"480 Lincoln St, San Francisco, CA 94016" -242188,USB-C Charging Cable,1,11.95,08/10/19 12:41,"480 Lincoln St, San Francisco, CA 94016" -242189,20in Monitor,1,109.99,08/16/19 22:32,"720 9th St, Boston, MA 02215" -242190,Google Phone,1,600,08/17/19 13:29,"435 Walnut St, San Francisco, CA 94016" -242191,AA Batteries (4-pack),1,3.84,08/19/19 20:42,"506 8th St, San Francisco, CA 94016" -242192,iPhone,1,700,08/29/19 15:41,"769 Walnut St, Los Angeles, CA 90001" -242193,USB-C Charging Cable,1,11.95,08/28/19 23:16,"972 14th St, Dallas, TX 75001" -242194,27in 4K Gaming Monitor,1,389.99,08/31/19 14:42,"62 Church St, San Francisco, CA 94016" -242195,20in Monitor,1,109.99,08/22/19 17:05,"94 10th St, Dallas, TX 75001" -242196,34in Ultrawide Monitor,1,379.99,08/16/19 15:30,"22 Lake St, San Francisco, CA 94016" -242197,iPhone,1,700,08/01/19 19:24,"770 13th St, Seattle, WA 98101" -242197,Wired Headphones,1,11.99,08/01/19 19:24,"770 13th St, Seattle, WA 98101" -242198,iPhone,1,700,08/10/19 09:34,"949 Lincoln St, Boston, MA 02215" -242199,Bose SoundSport Headphones,1,99.99,08/23/19 13:34,"528 Walnut St, Dallas, TX 75001" -242200,Apple Airpods Headphones,1,150,08/23/19 09:10,"659 North St, Austin, TX 73301" -242201,Apple Airpods Headphones,1,150,08/30/19 14:05,"385 Center St, San Francisco, CA 94016" -242202,Wired Headphones,1,11.99,08/16/19 18:27,"135 9th St, Austin, TX 73301" -242203,Wired Headphones,2,11.99,08/12/19 11:18,"476 South St, Seattle, WA 98101" -242204,Wired Headphones,1,11.99,08/07/19 12:17,"554 Center St, San Francisco, CA 94016" -242205,AAA Batteries (4-pack),1,2.99,08/22/19 08:42,"621 Lincoln St, Austin, TX 73301" -242206,Macbook Pro Laptop,1,1700,08/19/19 20:03,"779 13th St, Los Angeles, CA 90001" -242207,USB-C Charging Cable,1,11.95,08/06/19 12:15,"4 Center St, New York City, NY 10001" -242208,AAA Batteries (4-pack),1,2.99,08/09/19 12:23,"291 Wilson St, Austin, TX 73301" -242209,Lightning Charging Cable,1,14.95,08/28/19 09:21,"494 Highland St, Atlanta, GA 30301" -242210,USB-C Charging Cable,1,11.95,08/11/19 10:01,"606 9th St, Seattle, WA 98101" -242211,Bose SoundSport Headphones,1,99.99,08/11/19 11:34,"168 Elm St, Los Angeles, CA 90001" -242212,AA Batteries (4-pack),1,3.84,08/06/19 22:46,"711 4th St, Seattle, WA 98101" -242213,Lightning Charging Cable,1,14.95,08/24/19 02:45,"554 Pine St, Atlanta, GA 30301" -242214,Macbook Pro Laptop,1,1700,08/09/19 21:54,"869 8th St, Atlanta, GA 30301" -242215,27in FHD Monitor,1,149.99,08/14/19 13:34,"391 Ridge St, Boston, MA 02215" -242216,USB-C Charging Cable,1,11.95,08/12/19 19:37,"739 Adams St, New York City, NY 10001" -242217,Wired Headphones,1,11.99,08/29/19 20:59,"606 Wilson St, Boston, MA 02215" -242218,Apple Airpods Headphones,1,150,08/26/19 11:07,"985 Walnut St, Los Angeles, CA 90001" -242219,AAA Batteries (4-pack),1,2.99,08/12/19 11:30,"442 South St, New York City, NY 10001" -242220,AA Batteries (4-pack),1,3.84,08/28/19 09:25,"941 Spruce St, Seattle, WA 98101" -242221,34in Ultrawide Monitor,1,379.99,08/24/19 19:25,"618 5th St, Dallas, TX 75001" -242222,Bose SoundSport Headphones,1,99.99,08/09/19 11:07,"883 Wilson St, Los Angeles, CA 90001" -242223,Macbook Pro Laptop,1,1700,08/25/19 12:02,"883 Hill St, Boston, MA 02215" -242224,Vareebadd Phone,1,400,08/14/19 10:20,"911 2nd St, Atlanta, GA 30301" -242224,USB-C Charging Cable,1,11.95,08/14/19 10:20,"911 2nd St, Atlanta, GA 30301" -242225,Wired Headphones,1,11.99,08/12/19 07:02,"400 Wilson St, San Francisco, CA 94016" -242226,Bose SoundSport Headphones,1,99.99,08/02/19 13:20,"254 7th St, Los Angeles, CA 90001" -242227,Apple Airpods Headphones,1,150,08/19/19 12:21,"224 Washington St, Boston, MA 02215" -242228,Flatscreen TV,1,300,08/09/19 01:27,"211 5th St, New York City, NY 10001" -242229,AAA Batteries (4-pack),3,2.99,08/02/19 08:02,"785 Madison St, San Francisco, CA 94016" -242230,27in 4K Gaming Monitor,1,389.99,08/18/19 21:51,"33 Cedar St, Atlanta, GA 30301" -242231,iPhone,1,700,08/30/19 22:08,"190 Madison St, San Francisco, CA 94016" -242232,Apple Airpods Headphones,1,150,08/22/19 19:07,"680 Maple St, New York City, NY 10001" -242233,Apple Airpods Headphones,1,150,08/16/19 20:31,"534 Center St, Portland, OR 97035" -242234,AA Batteries (4-pack),1,3.84,08/31/19 20:09,"491 Walnut St, Portland, OR 97035" -242235,AAA Batteries (4-pack),1,2.99,08/11/19 21:12,"991 4th St, New York City, NY 10001" -242236,ThinkPad Laptop,1,999.99,08/25/19 20:25,"13 10th St, San Francisco, CA 94016" -242237,Bose SoundSport Headphones,1,99.99,08/06/19 20:44,"9 Elm St, Seattle, WA 98101" -242238,AAA Batteries (4-pack),2,2.99,08/09/19 13:49,"98 Wilson St, Boston, MA 02215" -242239,AAA Batteries (4-pack),2,2.99,08/01/19 17:43,"25 12th St, San Francisco, CA 94016" -242240,AA Batteries (4-pack),1,3.84,08/16/19 01:17,"907 Cherry St, Los Angeles, CA 90001" -242241,ThinkPad Laptop,1,999.99,08/14/19 09:25,"725 South St, San Francisco, CA 94016" -242242,Vareebadd Phone,1,400,08/22/19 19:49,"545 Jefferson St, Boston, MA 02215" -242243,iPhone,1,700,08/18/19 15:12,"276 2nd St, New York City, NY 10001" -242244,AA Batteries (4-pack),1,3.84,08/20/19 17:00,"622 2nd St, Dallas, TX 75001" -242245,Bose SoundSport Headphones,1,99.99,08/22/19 06:30,"102 River St, Los Angeles, CA 90001" -242246,ThinkPad Laptop,1,999.99,08/19/19 10:08,"948 Johnson St, Seattle, WA 98101" -242247,AA Batteries (4-pack),1,3.84,08/07/19 07:59,"675 Park St, Los Angeles, CA 90001" -242248,Google Phone,1,600,08/29/19 12:46,"640 7th St, New York City, NY 10001" -242248,USB-C Charging Cable,1,11.95,08/29/19 12:46,"640 7th St, New York City, NY 10001" -242249,Google Phone,1,600,08/27/19 20:20,"713 Willow St, Portland, OR 97035" -242249,USB-C Charging Cable,1,11.95,08/27/19 20:20,"713 Willow St, Portland, OR 97035" -242250,Bose SoundSport Headphones,1,99.99,08/31/19 14:25,"361 5th St, Dallas, TX 75001" -242251,Flatscreen TV,1,300,08/09/19 19:23,"267 Cherry St, San Francisco, CA 94016" -242252,AAA Batteries (4-pack),1,2.99,08/15/19 21:28,"858 1st St, San Francisco, CA 94016" -242253,AA Batteries (4-pack),1,3.84,08/04/19 15:51,"96 Madison St, Boston, MA 02215" -242254,Bose SoundSport Headphones,1,99.99,08/03/19 09:04,"586 Cherry St, New York City, NY 10001" -242255,27in FHD Monitor,1,149.99,08/30/19 15:57,"928 Hickory St, New York City, NY 10001" -242256,Lightning Charging Cable,1,14.95,08/19/19 10:30,"959 Spruce St, Seattle, WA 98101" -242257,34in Ultrawide Monitor,1,379.99,08/06/19 13:54,"840 Lincoln St, New York City, NY 10001" -242258,AA Batteries (4-pack),1,3.84,08/09/19 14:43,"440 2nd St, Los Angeles, CA 90001" -242259,27in FHD Monitor,1,149.99,08/27/19 07:33,"710 6th St, Seattle, WA 98101" -242260,USB-C Charging Cable,1,11.95,08/02/19 11:56,"264 9th St, Seattle, WA 98101" -242261,27in FHD Monitor,1,149.99,08/27/19 10:23,"682 Center St, Dallas, TX 75001" -242262,Lightning Charging Cable,1,14.95,08/06/19 09:33,"324 West St, San Francisco, CA 94016" -242263,iPhone,1,700,08/08/19 16:12,"890 Cedar St, Los Angeles, CA 90001" -242264,Vareebadd Phone,1,400,08/09/19 19:42,"810 Forest St, Austin, TX 73301" -242265,USB-C Charging Cable,1,11.95,08/07/19 15:20,"803 13th St, San Francisco, CA 94016" -242266,USB-C Charging Cable,1,11.95,08/25/19 17:35,"71 Chestnut St, Atlanta, GA 30301" -242267,Apple Airpods Headphones,1,150,08/31/19 16:08,"3 4th St, New York City, NY 10001" -242268,USB-C Charging Cable,1,11.95,08/02/19 11:14,"467 2nd St, Atlanta, GA 30301" -242269,Macbook Pro Laptop,1,1700,08/05/19 16:14,"686 7th St, Atlanta, GA 30301" -242270,AA Batteries (4-pack),1,3.84,08/09/19 15:45,"267 Sunset St, San Francisco, CA 94016" -242271,AA Batteries (4-pack),1,3.84,08/28/19 05:57,"56 14th St, Austin, TX 73301" -242272,Lightning Charging Cable,1,14.95,08/15/19 19:30,"420 Elm St, New York City, NY 10001" -242273,Flatscreen TV,1,300,08/21/19 21:25,"457 4th St, New York City, NY 10001" -242274,Lightning Charging Cable,1,14.95,08/30/19 11:10,"703 Lake St, Dallas, TX 75001" -242275,Wired Headphones,1,11.99,08/23/19 21:12,"79 Hickory St, San Francisco, CA 94016" -242276,USB-C Charging Cable,1,11.95,08/08/19 18:00,"860 Center St, San Francisco, CA 94016" -242277,Bose SoundSport Headphones,1,99.99,08/11/19 15:59,"601 10th St, Atlanta, GA 30301" -242278,20in Monitor,1,109.99,08/05/19 20:57,"91 Willow St, New York City, NY 10001" -242279,AAA Batteries (4-pack),1,2.99,08/13/19 14:50,"666 North St, Dallas, TX 75001" -242280,AA Batteries (4-pack),1,3.84,08/15/19 19:11,"926 Forest St, Boston, MA 02215" -242281,27in 4K Gaming Monitor,1,389.99,08/28/19 09:20,"711 Forest St, Atlanta, GA 30301" -242282,27in FHD Monitor,1,149.99,08/28/19 12:14,"46 Jefferson St, New York City, NY 10001" -242283,34in Ultrawide Monitor,1,379.99,08/06/19 17:23,"282 North St, New York City, NY 10001" -242284,27in 4K Gaming Monitor,1,389.99,08/01/19 17:42,"406 Lakeview St, Portland, ME 04101" -242285,Lightning Charging Cable,1,14.95,08/02/19 08:14,"843 Center St, San Francisco, CA 94016" -242286,Bose SoundSport Headphones,1,99.99,08/07/19 22:38,"873 7th St, Seattle, WA 98101" -242287,AA Batteries (4-pack),1,3.84,08/18/19 05:04,"267 7th St, Boston, MA 02215" -242288,USB-C Charging Cable,1,11.95,08/28/19 20:09,"205 1st St, Seattle, WA 98101" -242289,Lightning Charging Cable,1,14.95,08/24/19 17:59,"970 Walnut St, San Francisco, CA 94016" -242290,Wired Headphones,1,11.99,08/20/19 21:34,"669 5th St, Atlanta, GA 30301" -242291,AA Batteries (4-pack),2,3.84,08/31/19 13:51,"223 9th St, Portland, OR 97035" -242292,Wired Headphones,1,11.99,08/26/19 06:34,"591 Lincoln St, Portland, OR 97035" -242293,AAA Batteries (4-pack),1,2.99,08/26/19 19:10,"505 7th St, Atlanta, GA 30301" -242294,AAA Batteries (4-pack),1,2.99,08/22/19 23:13,"777 South St, Seattle, WA 98101" -242295,Wired Headphones,1,11.99,08/17/19 15:23,"925 14th St, Austin, TX 73301" -242295,27in FHD Monitor,1,149.99,08/17/19 15:23,"925 14th St, Austin, TX 73301" -242296,AAA Batteries (4-pack),2,2.99,08/14/19 20:54,"147 10th St, Boston, MA 02215" -242297,Bose SoundSport Headphones,1,99.99,08/10/19 10:32,"549 South St, San Francisco, CA 94016" -242298,Wired Headphones,1,11.99,08/26/19 14:57,"853 13th St, Boston, MA 02215" -242299,USB-C Charging Cable,1,11.95,08/21/19 17:16,"560 Pine St, Atlanta, GA 30301" -242300,USB-C Charging Cable,1,11.95,08/26/19 10:22,"202 8th St, San Francisco, CA 94016" -242301,20in Monitor,1,109.99,08/22/19 23:08,"796 Jefferson St, Austin, TX 73301" -242302,Wired Headphones,1,11.99,08/15/19 10:53,"626 10th St, Atlanta, GA 30301" -242303,Lightning Charging Cable,1,14.95,08/22/19 21:05,"327 10th St, New York City, NY 10001" -242304,Google Phone,1,600,08/19/19 16:49,"843 6th St, Atlanta, GA 30301" -242305,Lightning Charging Cable,1,14.95,08/22/19 09:41,"721 Lakeview St, Austin, TX 73301" -242306,34in Ultrawide Monitor,1,379.99,08/30/19 23:31,"453 11th St, Dallas, TX 75001" -242307,USB-C Charging Cable,1,11.95,08/08/19 11:52,"37 Sunset St, San Francisco, CA 94016" -242308,AAA Batteries (4-pack),4,2.99,08/26/19 14:46,"573 North St, New York City, NY 10001" -242309,27in 4K Gaming Monitor,1,389.99,08/07/19 12:43,"76 7th St, Austin, TX 73301" -242310,USB-C Charging Cable,1,11.95,08/14/19 11:56,"715 Jefferson St, Portland, OR 97035" -242311,AAA Batteries (4-pack),2,2.99,08/10/19 18:34,"956 Jackson St, Boston, MA 02215" -242312,ThinkPad Laptop,1,999.99,08/05/19 12:46,"277 Hickory St, New York City, NY 10001" -242313,Flatscreen TV,1,300,08/29/19 19:39,"906 Hill St, New York City, NY 10001" -242314,Apple Airpods Headphones,1,150,08/20/19 17:33,"5 8th St, Los Angeles, CA 90001" -242315,Wired Headphones,1,11.99,08/09/19 12:40,"207 River St, San Francisco, CA 94016" -242316,Lightning Charging Cable,1,14.95,08/24/19 09:00,"788 Madison St, San Francisco, CA 94016" -242317,AA Batteries (4-pack),1,3.84,08/12/19 12:20,"319 Walnut St, San Francisco, CA 94016" -242318,Bose SoundSport Headphones,1,99.99,08/10/19 07:21,"660 Willow St, Portland, OR 97035" -242319,AAA Batteries (4-pack),2,2.99,08/07/19 13:39,"746 Meadow St, Seattle, WA 98101" -242320,Wired Headphones,2,11.99,08/06/19 18:03,"832 Meadow St, Boston, MA 02215" -242321,27in 4K Gaming Monitor,1,389.99,08/14/19 19:39,"117 Main St, Atlanta, GA 30301" -242322,34in Ultrawide Monitor,1,379.99,08/22/19 19:57,"598 Park St, Los Angeles, CA 90001" -242323,27in FHD Monitor,1,149.99,08/04/19 13:58,"66 River St, Seattle, WA 98101" -242323,Lightning Charging Cable,1,14.95,08/04/19 13:58,"66 River St, Seattle, WA 98101" -242324,Lightning Charging Cable,1,14.95,08/31/19 09:12,"433 Lake St, Los Angeles, CA 90001" -242325,iPhone,1,700,08/23/19 05:51,"409 West St, Atlanta, GA 30301" -242326,Wired Headphones,1,11.99,08/09/19 14:35,"443 Church St, Boston, MA 02215" -242327,Wired Headphones,1,11.99,08/29/19 10:53,"612 Meadow St, New York City, NY 10001" -242328,Macbook Pro Laptop,1,1700,08/22/19 08:59,"764 Adams St, Atlanta, GA 30301" -242329,Lightning Charging Cable,1,14.95,08/12/19 22:08,"12 Johnson St, New York City, NY 10001" -242330,USB-C Charging Cable,1,11.95,08/13/19 22:01,"11 6th St, Los Angeles, CA 90001" -242331,Flatscreen TV,1,300,08/10/19 19:05,"367 South St, Los Angeles, CA 90001" -242332,Apple Airpods Headphones,1,150,08/24/19 16:22,"340 12th St, Atlanta, GA 30301" -242333,Wired Headphones,1,11.99,08/25/19 22:36,"954 River St, Dallas, TX 75001" -242334,AA Batteries (4-pack),1,3.84,08/29/19 06:49,"521 2nd St, New York City, NY 10001" -242335,27in FHD Monitor,1,149.99,08/12/19 07:32,"92 Willow St, San Francisco, CA 94016" -242336,iPhone,1,700,08/04/19 13:15,"41 Forest St, Los Angeles, CA 90001" -242337,Wired Headphones,1,11.99,08/21/19 05:28,"324 4th St, San Francisco, CA 94016" -242338,USB-C Charging Cable,1,11.95,08/26/19 14:27,"476 Hickory St, Austin, TX 73301" -242339,Wired Headphones,1,11.99,08/22/19 16:31,"84 2nd St, Austin, TX 73301" -242340,AA Batteries (4-pack),1,3.84,08/18/19 14:16,"632 Adams St, San Francisco, CA 94016" -242341,AAA Batteries (4-pack),2,2.99,08/26/19 16:32,"354 2nd St, San Francisco, CA 94016" -242342,AA Batteries (4-pack),1,3.84,08/18/19 00:16,"879 Lake St, New York City, NY 10001" -242343,ThinkPad Laptop,1,999.99,09/01/19 02:44,"510 Park St, Boston, MA 02215" -242344,AA Batteries (4-pack),3,3.84,08/20/19 12:26,"319 Jackson St, San Francisco, CA 94016" -242345,AA Batteries (4-pack),5,3.84,08/12/19 12:24,"413 Ridge St, San Francisco, CA 94016" -242346,Bose SoundSport Headphones,1,99.99,08/07/19 22:37,"879 8th St, San Francisco, CA 94016" -242347,AAA Batteries (4-pack),1,2.99,08/24/19 19:08,"397 Cherry St, Atlanta, GA 30301" -242348,Macbook Pro Laptop,1,1700,08/16/19 14:15,"287 North St, San Francisco, CA 94016" -242349,Bose SoundSport Headphones,1,99.99,08/28/19 09:07,"445 Pine St, San Francisco, CA 94016" -242350,USB-C Charging Cable,1,11.95,08/20/19 08:37,"179 Adams St, Los Angeles, CA 90001" -242351,AAA Batteries (4-pack),1,2.99,08/10/19 17:57,"186 Madison St, New York City, NY 10001" -242352,AAA Batteries (4-pack),1,2.99,08/04/19 00:25,"886 Cherry St, San Francisco, CA 94016" -242353,Lightning Charging Cable,1,14.95,08/12/19 21:39,"786 Pine St, Los Angeles, CA 90001" -242354,USB-C Charging Cable,2,11.95,08/06/19 20:59,"106 Hickory St, Atlanta, GA 30301" -242355,Bose SoundSport Headphones,1,99.99,08/28/19 04:48,"774 Meadow St, Portland, OR 97035" -242355,iPhone,1,700,08/28/19 04:48,"774 Meadow St, Portland, OR 97035" -242356,27in FHD Monitor,1,149.99,08/06/19 08:25,"86 Lakeview St, Atlanta, GA 30301" -242357,Lightning Charging Cable,2,14.95,08/29/19 11:56,"464 Meadow St, Portland, OR 97035" -242358,Lightning Charging Cable,1,14.95,08/09/19 21:50,"581 Lake St, San Francisco, CA 94016" -242359,Bose SoundSport Headphones,1,99.99,08/23/19 07:11,"963 Hickory St, New York City, NY 10001" -242360,AA Batteries (4-pack),2,3.84,08/10/19 20:01,"652 Highland St, Los Angeles, CA 90001" -242361,Apple Airpods Headphones,1,150,08/30/19 18:00,"881 6th St, Seattle, WA 98101" -242362,USB-C Charging Cable,1,11.95,08/13/19 11:45,"70 Hickory St, San Francisco, CA 94016" -242363,27in FHD Monitor,1,149.99,08/28/19 13:04,"145 South St, Seattle, WA 98101" -242364,AA Batteries (4-pack),1,3.84,08/16/19 14:48,"193 Sunset St, Atlanta, GA 30301" -242365,Lightning Charging Cable,1,14.95,08/15/19 00:09,"753 Cedar St, San Francisco, CA 94016" -242366,27in FHD Monitor,1,149.99,08/21/19 11:51,"840 Hickory St, San Francisco, CA 94016" -242367,27in FHD Monitor,1,149.99,08/20/19 08:03,"71 Adams St, San Francisco, CA 94016" -242368,Wired Headphones,1,11.99,08/27/19 18:14,"261 Highland St, San Francisco, CA 94016" -242369,Lightning Charging Cable,1,14.95,08/20/19 17:54,"326 12th St, Los Angeles, CA 90001" -242370,27in FHD Monitor,1,149.99,08/06/19 17:44,"251 Forest St, New York City, NY 10001" -242371,27in FHD Monitor,1,149.99,08/02/19 18:15,"216 12th St, San Francisco, CA 94016" -242372,Apple Airpods Headphones,1,150,08/09/19 08:47,"484 Meadow St, Los Angeles, CA 90001" -242373,AAA Batteries (4-pack),2,2.99,08/10/19 13:59,"616 Park St, San Francisco, CA 94016" -242374,Apple Airpods Headphones,1,150,08/09/19 20:29,"839 12th St, San Francisco, CA 94016" -242375,USB-C Charging Cable,1,11.95,08/01/19 18:56,"279 8th St, San Francisco, CA 94016" -242376,AA Batteries (4-pack),2,3.84,08/31/19 15:10,"163 Park St, Los Angeles, CA 90001" -242377,AA Batteries (4-pack),1,3.84,08/25/19 18:54,"484 2nd St, Los Angeles, CA 90001" -242378,Apple Airpods Headphones,1,150,08/11/19 08:27,"216 Park St, Boston, MA 02215" -242379,Macbook Pro Laptop,1,1700,08/16/19 21:10,"369 Elm St, Portland, OR 97035" -242380,Flatscreen TV,1,300,08/06/19 08:12,"572 Jefferson St, Dallas, TX 75001" -242381,USB-C Charging Cable,1,11.95,08/23/19 06:41,"796 Dogwood St, New York City, NY 10001" -242382,AA Batteries (4-pack),1,3.84,08/07/19 21:03,"290 14th St, Portland, OR 97035" -242383,iPhone,1,700,08/24/19 15:50,"773 Hickory St, New York City, NY 10001" -242384,Google Phone,1,600,08/17/19 14:14,"709 Elm St, Dallas, TX 75001" -242385,AAA Batteries (4-pack),1,2.99,08/28/19 12:36,"853 Cedar St, Portland, OR 97035" -242386,iPhone,1,700,08/12/19 11:47,"176 Lakeview St, Boston, MA 02215" -242387,Flatscreen TV,1,300,08/21/19 13:55,"417 6th St, New York City, NY 10001" -242388,Bose SoundSport Headphones,1,99.99,08/17/19 18:59,"297 Park St, San Francisco, CA 94016" -242389,iPhone,1,700,08/05/19 10:58,"256 7th St, New York City, NY 10001" -242390,AAA Batteries (4-pack),1,2.99,08/26/19 20:43,"328 1st St, Seattle, WA 98101" -242391,AAA Batteries (4-pack),1,2.99,08/22/19 10:33,"752 Jefferson St, Portland, OR 97035" -242392,Apple Airpods Headphones,1,150,08/19/19 10:06,"805 11th St, Los Angeles, CA 90001" -242393,Bose SoundSport Headphones,1,99.99,08/08/19 20:13,"857 Maple St, Dallas, TX 75001" -242394,Google Phone,1,600,08/08/19 08:15,"11 Forest St, New York City, NY 10001" -242395,27in 4K Gaming Monitor,1,389.99,08/09/19 18:40,"678 Washington St, Seattle, WA 98101" -242396,USB-C Charging Cable,2,11.95,08/25/19 02:31,"922 Adams St, Seattle, WA 98101" -242397,27in 4K Gaming Monitor,1,389.99,08/27/19 11:37,"132 Maple St, Portland, OR 97035" -242398,27in FHD Monitor,1,149.99,08/21/19 09:32,"891 Madison St, New York City, NY 10001" -242399,Apple Airpods Headphones,1,150,08/12/19 10:16,"568 7th St, Los Angeles, CA 90001" -242400,Google Phone,1,600,08/27/19 07:18,"68 6th St, Boston, MA 02215" -242400,USB-C Charging Cable,1,11.95,08/27/19 07:18,"68 6th St, Boston, MA 02215" -242401,Bose SoundSport Headphones,1,99.99,08/21/19 18:23,"284 Wilson St, Portland, OR 97035" -242402,27in 4K Gaming Monitor,1,389.99,08/08/19 12:31,"952 Meadow St, Los Angeles, CA 90001" -242403,Wired Headphones,1,11.99,08/14/19 14:24,"782 Willow St, San Francisco, CA 94016" -242404,Lightning Charging Cable,2,14.95,08/08/19 09:28,"764 Highland St, Boston, MA 02215" -242405,Apple Airpods Headphones,1,150,08/03/19 10:22,"474 Walnut St, San Francisco, CA 94016" -242406,AAA Batteries (4-pack),1,2.99,08/12/19 02:32,"734 10th St, Austin, TX 73301" -242407,Bose SoundSport Headphones,1,99.99,08/12/19 14:42,"374 Sunset St, San Francisco, CA 94016" -242408,Macbook Pro Laptop,1,1700,08/29/19 14:02,"836 Adams St, Boston, MA 02215" -242409,AAA Batteries (4-pack),1,2.99,08/12/19 19:46,"205 Ridge St, Los Angeles, CA 90001" -242410,Apple Airpods Headphones,1,150,08/16/19 15:40,"597 Cherry St, Austin, TX 73301" -242411,Bose SoundSport Headphones,1,99.99,08/27/19 22:24,"24 Washington St, Los Angeles, CA 90001" -242411,AAA Batteries (4-pack),1,2.99,08/27/19 22:24,"24 Washington St, Los Angeles, CA 90001" -242412,AA Batteries (4-pack),1,3.84,08/16/19 10:25,"443 13th St, Los Angeles, CA 90001" -242413,Flatscreen TV,1,300,08/10/19 11:04,"855 Pine St, Seattle, WA 98101" -242414,AAA Batteries (4-pack),2,2.99,08/18/19 21:45,"140 Lincoln St, San Francisco, CA 94016" -242415,Wired Headphones,1,11.99,08/09/19 17:44,"474 Cedar St, San Francisco, CA 94016" -242416,AA Batteries (4-pack),1,3.84,08/31/19 18:45,"925 Sunset St, New York City, NY 10001" -242417,Bose SoundSport Headphones,1,99.99,08/18/19 15:20,"457 7th St, San Francisco, CA 94016" -242418,Apple Airpods Headphones,1,150,08/09/19 20:45,"989 2nd St, Los Angeles, CA 90001" -242419,27in FHD Monitor,1,149.99,08/24/19 21:18,"98 Walnut St, Seattle, WA 98101" -242420,Wired Headphones,1,11.99,08/18/19 22:08,"710 Dogwood St, Seattle, WA 98101" -242421,Google Phone,1,600,08/06/19 08:52,"829 10th St, Boston, MA 02215" -242422,Wired Headphones,1,11.99,08/25/19 09:46,"17 10th St, Boston, MA 02215" -242423,34in Ultrawide Monitor,1,379.99,08/14/19 12:40,"436 Wilson St, Los Angeles, CA 90001" -242424,AAA Batteries (4-pack),1,2.99,08/31/19 12:57,"555 Cedar St, Los Angeles, CA 90001" -242425,Wired Headphones,3,11.99,08/29/19 23:37,"538 Meadow St, Dallas, TX 75001" -242426,Flatscreen TV,1,300,08/13/19 23:23,"751 12th St, San Francisco, CA 94016" -242427,Apple Airpods Headphones,1,150,08/01/19 21:05,"15 Dogwood St, Portland, OR 97035" -242428,Wired Headphones,1,11.99,08/29/19 15:19,"992 11th St, Atlanta, GA 30301" -242429,27in FHD Monitor,1,149.99,08/19/19 08:44,"845 Meadow St, Atlanta, GA 30301" -242430,Lightning Charging Cable,1,14.95,08/15/19 19:29,"33 Highland St, San Francisco, CA 94016" -242431,Bose SoundSport Headphones,1,99.99,08/09/19 18:04,"704 Meadow St, San Francisco, CA 94016" -242432,Google Phone,1,600,08/08/19 22:41,"768 Jackson St, Portland, OR 97035" -242433,AA Batteries (4-pack),3,3.84,08/05/19 17:09,"622 Madison St, Portland, OR 97035" -242434,AA Batteries (4-pack),1,3.84,08/12/19 12:35,"418 Jackson St, Atlanta, GA 30301" -242435,USB-C Charging Cable,1,11.95,08/21/19 21:26,"702 11th St, New York City, NY 10001" -242436,Flatscreen TV,1,300,08/03/19 13:16,"475 Highland St, Boston, MA 02215" -242436,Wired Headphones,1,11.99,08/03/19 13:16,"475 Highland St, Boston, MA 02215" -242437,Google Phone,1,600,08/10/19 18:50,"796 Madison St, New York City, NY 10001" -242438,Wired Headphones,1,11.99,08/10/19 19:34,"701 Park St, Los Angeles, CA 90001" -242439,AA Batteries (4-pack),1,3.84,08/19/19 12:29,"835 Sunset St, San Francisco, CA 94016" -242440,USB-C Charging Cable,1,11.95,08/28/19 17:14,"491 Church St, Boston, MA 02215" -242441,USB-C Charging Cable,1,11.95,08/23/19 11:06,"572 Maple St, San Francisco, CA 94016" -242442,Apple Airpods Headphones,1,150,08/12/19 10:17,"181 Chestnut St, Austin, TX 73301" -242443,iPhone,1,700,08/27/19 22:19,"126 Pine St, Austin, TX 73301" -242443,Apple Airpods Headphones,1,150,08/27/19 22:19,"126 Pine St, Austin, TX 73301" -242444,USB-C Charging Cable,2,11.95,08/14/19 13:51,"775 Lincoln St, Los Angeles, CA 90001" -242445,Wired Headphones,1,11.99,08/24/19 23:37,"95 Johnson St, Los Angeles, CA 90001" -242446,Lightning Charging Cable,1,14.95,08/02/19 21:51,"801 Jackson St, New York City, NY 10001" -242447,Lightning Charging Cable,2,14.95,08/12/19 18:49,"680 7th St, Los Angeles, CA 90001" -242448,USB-C Charging Cable,1,11.95,08/09/19 19:47,"558 4th St, New York City, NY 10001" -242449,34in Ultrawide Monitor,1,379.99,08/09/19 21:15,"697 Center St, Los Angeles, CA 90001" -242450,AAA Batteries (4-pack),1,2.99,08/18/19 16:57,"506 Adams St, San Francisco, CA 94016" -242451,Flatscreen TV,1,300,08/03/19 14:08,"829 11th St, New York City, NY 10001" -242452,20in Monitor,1,109.99,08/08/19 18:51,"98 Dogwood St, San Francisco, CA 94016" -242453,Macbook Pro Laptop,1,1700,08/22/19 11:12,"68 Main St, Portland, OR 97035" -242454,AAA Batteries (4-pack),4,2.99,08/05/19 20:44,"987 13th St, San Francisco, CA 94016" -242455,27in 4K Gaming Monitor,1,389.99,08/14/19 21:22,"591 Ridge St, Los Angeles, CA 90001" -242456,20in Monitor,1,109.99,08/25/19 15:13,"406 Adams St, Dallas, TX 75001" -242457,Macbook Pro Laptop,1,1700,08/12/19 16:53,"537 Johnson St, Austin, TX 73301" -242458,AA Batteries (4-pack),1,3.84,08/29/19 11:31,"131 Walnut St, New York City, NY 10001" -242459,27in 4K Gaming Monitor,1,389.99,08/26/19 19:42,"231 6th St, Atlanta, GA 30301" -242460,Bose SoundSport Headphones,1,99.99,08/20/19 14:09,"201 Madison St, Dallas, TX 75001" -242461,Wired Headphones,1,11.99,08/05/19 13:30,"747 8th St, Seattle, WA 98101" -242462,Apple Airpods Headphones,1,150,08/19/19 12:19,"594 Jefferson St, San Francisco, CA 94016" -242463,Flatscreen TV,1,300,08/24/19 11:51,"503 West St, San Francisco, CA 94016" -242464,Flatscreen TV,1,300,08/26/19 17:32,"214 Cherry St, San Francisco, CA 94016" -242465,Lightning Charging Cable,1,14.95,08/12/19 01:23,"827 Lake St, Portland, OR 97035" -242466,Bose SoundSport Headphones,1,99.99,08/21/19 21:10,"132 Cedar St, San Francisco, CA 94016" -242467,27in 4K Gaming Monitor,1,389.99,08/03/19 19:52,"778 4th St, Atlanta, GA 30301" -242468,ThinkPad Laptop,1,999.99,08/10/19 19:05,"877 Lincoln St, Dallas, TX 75001" -242469,20in Monitor,1,109.99,08/25/19 16:30,"540 Jefferson St, Dallas, TX 75001" -242470,USB-C Charging Cable,1,11.95,08/25/19 22:02,"931 10th St, Atlanta, GA 30301" -242471,Apple Airpods Headphones,1,150,08/27/19 20:05,"949 Johnson St, San Francisco, CA 94016" -242472,AAA Batteries (4-pack),1,2.99,08/18/19 21:20,"268 Madison St, San Francisco, CA 94016" -242473,Google Phone,1,600,08/27/19 16:37,"714 Maple St, Dallas, TX 75001" -242474,AA Batteries (4-pack),3,3.84,08/09/19 18:11,"729 8th St, Dallas, TX 75001" -242475,Apple Airpods Headphones,1,150,08/04/19 23:17,"533 Forest St, New York City, NY 10001" -242476,Flatscreen TV,1,300,08/27/19 17:33,"855 Ridge St, San Francisco, CA 94016" -242477,Apple Airpods Headphones,1,150,08/09/19 16:14,"824 14th St, San Francisco, CA 94016" -242478,Bose SoundSport Headphones,1,99.99,08/05/19 20:34,"126 Pine St, Los Angeles, CA 90001" -242479,Bose SoundSport Headphones,1,99.99,08/27/19 16:52,"223 Wilson St, New York City, NY 10001" -242480,34in Ultrawide Monitor,1,379.99,08/15/19 09:42,"928 Chestnut St, Atlanta, GA 30301" -242481,Lightning Charging Cable,1,14.95,08/19/19 12:07,"91 Madison St, Atlanta, GA 30301" -242482,AAA Batteries (4-pack),1,2.99,08/18/19 17:54,"3 North St, Atlanta, GA 30301" -242483,Bose SoundSport Headphones,1,99.99,08/10/19 10:12,"960 Lake St, Los Angeles, CA 90001" -242484,ThinkPad Laptop,1,999.99,08/07/19 11:18,"845 5th St, San Francisco, CA 94016" -242485,34in Ultrawide Monitor,1,379.99,08/31/19 22:20,"637 Cedar St, Seattle, WA 98101" -242486,AAA Batteries (4-pack),1,2.99,08/20/19 15:05,"892 Willow St, Los Angeles, CA 90001" -242487,AA Batteries (4-pack),1,3.84,08/15/19 14:28,"711 Jackson St, Los Angeles, CA 90001" -242488,Apple Airpods Headphones,1,150,08/05/19 08:59,"969 2nd St, Boston, MA 02215" -242489,Apple Airpods Headphones,1,150,08/23/19 07:22,"483 Adams St, Atlanta, GA 30301" -242490,AA Batteries (4-pack),1,3.84,08/22/19 00:33,"309 Sunset St, San Francisco, CA 94016" -242491,AA Batteries (4-pack),1,3.84,08/13/19 14:47,"542 River St, San Francisco, CA 94016" -242492,Lightning Charging Cable,1,14.95,08/29/19 04:54,"665 Adams St, Portland, ME 04101" -242493,Apple Airpods Headphones,1,150,08/27/19 13:37,"105 7th St, Los Angeles, CA 90001" -242494,Bose SoundSport Headphones,1,99.99,08/23/19 18:05,"920 West St, Los Angeles, CA 90001" -242495,Apple Airpods Headphones,1,150,08/07/19 20:48,"534 Highland St, Atlanta, GA 30301" -242496,AA Batteries (4-pack),1,3.84,08/30/19 18:55,"540 South St, San Francisco, CA 94016" -242497,Apple Airpods Headphones,1,150,08/14/19 13:50,"476 4th St, Seattle, WA 98101" -,,,,, -242498,Bose SoundSport Headphones,1,99.99,08/08/19 00:10,"87 South St, Seattle, WA 98101" -242499,AAA Batteries (4-pack),1,2.99,08/11/19 20:11,"434 4th St, Los Angeles, CA 90001" -242500,AAA Batteries (4-pack),2,2.99,08/13/19 16:41,"227 Wilson St, Portland, OR 97035" -242501,27in 4K Gaming Monitor,1,389.99,08/28/19 11:25,"96 Lakeview St, New York City, NY 10001" -242502,20in Monitor,1,109.99,08/27/19 12:19,"864 Meadow St, Dallas, TX 75001" -242503,Wired Headphones,1,11.99,08/02/19 09:50,"444 Chestnut St, Atlanta, GA 30301" -242504,Lightning Charging Cable,1,14.95,08/16/19 19:24,"533 14th St, San Francisco, CA 94016" -242505,Bose SoundSport Headphones,1,99.99,08/02/19 23:10,"294 Wilson St, Portland, OR 97035" -242506,27in FHD Monitor,1,149.99,08/25/19 05:51,"40 Center St, San Francisco, CA 94016" -242507,AAA Batteries (4-pack),2,2.99,08/20/19 10:04,"542 10th St, Atlanta, GA 30301" -242507,USB-C Charging Cable,1,11.95,08/20/19 10:04,"542 10th St, Atlanta, GA 30301" -242508,Flatscreen TV,1,300,08/21/19 16:01,"811 Main St, New York City, NY 10001" -242509,AA Batteries (4-pack),2,3.84,08/25/19 17:02,"65 West St, Los Angeles, CA 90001" -242510,AA Batteries (4-pack),1,3.84,08/10/19 22:42,"811 2nd St, Dallas, TX 75001" -242511,Wired Headphones,1,11.99,08/16/19 10:43,"328 Lake St, San Francisco, CA 94016" -242512,Google Phone,1,600,08/15/19 11:14,"842 Main St, Austin, TX 73301" -242513,Lightning Charging Cable,1,14.95,08/21/19 11:53,"514 Spruce St, Atlanta, GA 30301" -242514,AA Batteries (4-pack),1,3.84,08/19/19 21:30,"546 Highland St, Austin, TX 73301" -242515,27in FHD Monitor,1,149.99,08/04/19 09:33,"467 Walnut St, San Francisco, CA 94016" -242515,Lightning Charging Cable,1,14.95,08/04/19 09:33,"467 Walnut St, San Francisco, CA 94016" -242516,AAA Batteries (4-pack),1,2.99,08/07/19 17:29,"37 Hickory St, Austin, TX 73301" -242517,Wired Headphones,1,11.99,08/30/19 20:32,"606 11th St, Los Angeles, CA 90001" -242518,Wired Headphones,1,11.99,08/28/19 12:29,"483 8th St, Los Angeles, CA 90001" -242519,AA Batteries (4-pack),2,3.84,08/09/19 22:39,"852 Jackson St, Los Angeles, CA 90001" -242520,Bose SoundSport Headphones,1,99.99,08/10/19 11:23,"840 South St, Austin, TX 73301" -242521,34in Ultrawide Monitor,1,379.99,08/31/19 15:24,"426 Walnut St, Los Angeles, CA 90001" -242522,Apple Airpods Headphones,1,150,08/30/19 20:23,"503 8th St, New York City, NY 10001" -242523,iPhone,1,700,08/23/19 19:03,"339 4th St, Los Angeles, CA 90001" -242523,Lightning Charging Cable,1,14.95,08/23/19 19:03,"339 4th St, Los Angeles, CA 90001" -242524,27in 4K Gaming Monitor,1,389.99,08/02/19 08:25,"284 South St, San Francisco, CA 94016" -242525,27in 4K Gaming Monitor,1,389.99,08/19/19 07:11,"40 8th St, San Francisco, CA 94016" -242526,AA Batteries (4-pack),1,3.84,08/19/19 14:32,"580 6th St, Boston, MA 02215" -242527,Lightning Charging Cable,1,14.95,08/07/19 16:45,"727 Willow St, Los Angeles, CA 90001" -242528,USB-C Charging Cable,1,11.95,08/16/19 14:35,"395 12th St, Boston, MA 02215" -242529,Macbook Pro Laptop,1,1700,08/22/19 19:25,"72 Dogwood St, San Francisco, CA 94016" -242530,34in Ultrawide Monitor,1,379.99,08/19/19 15:36,"743 River St, Boston, MA 02215" -242531,27in 4K Gaming Monitor,1,389.99,08/24/19 16:38,"743 South St, Dallas, TX 75001" -242532,Wired Headphones,1,11.99,08/02/19 19:03,"496 Maple St, Austin, TX 73301" -242533,27in FHD Monitor,1,149.99,08/23/19 16:02,"35 9th St, Dallas, TX 75001" -242534,AAA Batteries (4-pack),1,2.99,08/11/19 12:02,"133 Walnut St, San Francisco, CA 94016" -242535,Bose SoundSport Headphones,1,99.99,08/20/19 23:17,"711 Highland St, Seattle, WA 98101" -242536,Wired Headphones,1,11.99,08/17/19 20:16,"250 Spruce St, San Francisco, CA 94016" -242537,USB-C Charging Cable,1,11.95,08/02/19 15:46,"378 Ridge St, Boston, MA 02215" -242538,Apple Airpods Headphones,1,150,08/22/19 23:06,"407 Park St, Los Angeles, CA 90001" -242539,Wired Headphones,1,11.99,08/20/19 12:21,"893 9th St, New York City, NY 10001" -242540,Lightning Charging Cable,1,14.95,08/02/19 00:33,"259 Jefferson St, San Francisco, CA 94016" -242541,27in 4K Gaming Monitor,1,389.99,08/14/19 15:30,"662 Johnson St, New York City, NY 10001" -242542,20in Monitor,1,109.99,08/26/19 16:55,"779 Elm St, Portland, OR 97035" -242543,Flatscreen TV,1,300,08/31/19 19:16,"271 Hickory St, San Francisco, CA 94016" -242544,ThinkPad Laptop,1,999.99,08/20/19 11:58,"998 Walnut St, San Francisco, CA 94016" -242545,Wired Headphones,1,11.99,08/27/19 11:02,"132 14th St, New York City, NY 10001" -242546,Apple Airpods Headphones,1,150,08/16/19 20:36,"581 Lakeview St, New York City, NY 10001" -242547,Apple Airpods Headphones,1,150,08/02/19 13:52,"39 Forest St, Boston, MA 02215" -242548,USB-C Charging Cable,1,11.95,08/18/19 12:35,"9 Dogwood St, San Francisco, CA 94016" -242549,AAA Batteries (4-pack),1,2.99,08/27/19 15:55,"255 Hill St, Los Angeles, CA 90001" -242550,Wired Headphones,1,11.99,08/16/19 15:13,"75 Hickory St, Seattle, WA 98101" -242551,USB-C Charging Cable,1,11.95,08/25/19 08:32,"430 Johnson St, New York City, NY 10001" -242552,Lightning Charging Cable,1,14.95,08/18/19 01:27,"415 Hickory St, Los Angeles, CA 90001" -242553,AA Batteries (4-pack),1,3.84,08/10/19 06:21,"265 Hickory St, San Francisco, CA 94016" -242554,Wired Headphones,1,11.99,08/21/19 16:29,"35 11th St, Los Angeles, CA 90001" -242555,Google Phone,1,600,08/13/19 08:59,"573 Johnson St, Boston, MA 02215" -242556,iPhone,1,700,08/20/19 17:13,"394 Madison St, New York City, NY 10001" -242557,Lightning Charging Cable,1,14.95,08/11/19 08:30,"796 Ridge St, New York City, NY 10001" -242558,Wired Headphones,1,11.99,08/02/19 14:28,"253 Main St, Portland, OR 97035" -242559,Flatscreen TV,1,300,08/14/19 12:17,"624 Jackson St, Los Angeles, CA 90001" -242560,Bose SoundSport Headphones,1,99.99,08/23/19 20:36,"792 1st St, Portland, OR 97035" -242561,Wired Headphones,1,11.99,08/03/19 15:04,"522 14th St, San Francisco, CA 94016" -242562,27in FHD Monitor,1,149.99,08/01/19 11:13,"418 Pine St, Boston, MA 02215" -242563,Apple Airpods Headphones,1,150,08/21/19 10:19,"149 Walnut St, San Francisco, CA 94016" -242564,USB-C Charging Cable,1,11.95,08/21/19 08:04,"416 Sunset St, Portland, OR 97035" -242565,AA Batteries (4-pack),1,3.84,08/22/19 20:12,"824 Dogwood St, Atlanta, GA 30301" -242566,Lightning Charging Cable,1,14.95,08/17/19 21:32,"733 4th St, Dallas, TX 75001" -242567,34in Ultrawide Monitor,1,379.99,08/29/19 21:38,"810 10th St, Portland, ME 04101" -242568,Google Phone,1,600,08/01/19 18:29,"83 Forest St, San Francisco, CA 94016" -242569,Lightning Charging Cable,2,14.95,08/02/19 12:34,"494 Cherry St, Seattle, WA 98101" -242570,Vareebadd Phone,1,400,08/18/19 15:23,"417 Church St, Seattle, WA 98101" -242571,AAA Batteries (4-pack),1,2.99,08/02/19 20:33,"493 Walnut St, San Francisco, CA 94016" -242572,AAA Batteries (4-pack),2,2.99,08/22/19 23:19,"626 Washington St, Los Angeles, CA 90001" -242573,Lightning Charging Cable,2,14.95,08/20/19 00:44,"603 Ridge St, Atlanta, GA 30301" -242574,Lightning Charging Cable,1,14.95,08/19/19 03:17,"865 12th St, Atlanta, GA 30301" -242575,20in Monitor,1,109.99,08/20/19 20:37,"317 River St, Boston, MA 02215" -242576,Flatscreen TV,1,300,08/19/19 22:15,"383 Lake St, Portland, ME 04101" -242577,AA Batteries (4-pack),1,3.84,08/04/19 15:28,"118 6th St, San Francisco, CA 94016" -242578,USB-C Charging Cable,1,11.95,08/26/19 20:10,"638 Church St, San Francisco, CA 94016" -242579,AAA Batteries (4-pack),1,2.99,08/17/19 13:52,"503 6th St, Portland, ME 04101" -242580,AA Batteries (4-pack),2,3.84,08/16/19 11:28,"407 6th St, San Francisco, CA 94016" -242581,Apple Airpods Headphones,1,150,08/19/19 22:25,"444 14th St, Austin, TX 73301" -242582,AAA Batteries (4-pack),1,2.99,08/30/19 13:59,"228 Church St, Portland, OR 97035" -242583,iPhone,1,700,08/01/19 17:13,"702 Cherry St, Boston, MA 02215" -242584,AA Batteries (4-pack),1,3.84,08/15/19 22:03,"522 7th St, Boston, MA 02215" -242585,Wired Headphones,2,11.99,08/19/19 16:52,"185 14th St, Austin, TX 73301" -242586,Wired Headphones,1,11.99,08/28/19 17:47,"750 1st St, New York City, NY 10001" -242587,USB-C Charging Cable,1,11.95,08/24/19 20:01,"262 12th St, Boston, MA 02215" -242588,Wired Headphones,1,11.99,08/27/19 07:52,"393 10th St, Austin, TX 73301" -242589,Lightning Charging Cable,1,14.95,08/02/19 16:37,"448 Hill St, New York City, NY 10001" -242590,AA Batteries (4-pack),1,3.84,08/04/19 09:23,"808 Sunset St, Austin, TX 73301" -242591,Google Phone,1,600,08/17/19 11:15,"596 Jackson St, San Francisco, CA 94016" -242592,USB-C Charging Cable,1,11.95,08/06/19 20:13,"893 Wilson St, San Francisco, CA 94016" -242593,Google Phone,1,600,08/12/19 21:08,"827 Jefferson St, San Francisco, CA 94016" -242594,Macbook Pro Laptop,1,1700,08/08/19 15:00,"242 Jackson St, Seattle, WA 98101" -242595,Bose SoundSport Headphones,1,99.99,08/05/19 12:07,"42 Walnut St, Los Angeles, CA 90001" -242596,AA Batteries (4-pack),1,3.84,08/26/19 13:58,"112 Jefferson St, Atlanta, GA 30301" -242597,Wired Headphones,1,11.99,08/29/19 10:49,"763 Chestnut St, Dallas, TX 75001" -242598,Apple Airpods Headphones,1,150,08/06/19 14:16,"520 Chestnut St, Boston, MA 02215" -242599,Wired Headphones,1,11.99,08/10/19 17:43,"590 Pine St, Portland, ME 04101" -242600,AAA Batteries (4-pack),1,2.99,08/21/19 08:44,"871 8th St, Boston, MA 02215" -242601,Bose SoundSport Headphones,1,99.99,08/09/19 20:25,"325 9th St, San Francisco, CA 94016" -242602,27in 4K Gaming Monitor,1,389.99,08/13/19 21:39,"916 Washington St, San Francisco, CA 94016" -242603,Flatscreen TV,1,300,08/18/19 20:29,"338 Hill St, Boston, MA 02215" -242604,AA Batteries (4-pack),4,3.84,08/03/19 15:02,"42 Center St, New York City, NY 10001" -242605,AA Batteries (4-pack),1,3.84,08/24/19 11:20,"590 Park St, Portland, OR 97035" -242606,USB-C Charging Cable,1,11.95,08/24/19 20:57,"675 Park St, San Francisco, CA 94016" -242607,AAA Batteries (4-pack),1,2.99,08/04/19 11:19,"897 5th St, Boston, MA 02215" -242608,ThinkPad Laptop,1,999.99,08/04/19 23:10,"49 2nd St, Los Angeles, CA 90001" -242609,27in 4K Gaming Monitor,1,389.99,08/13/19 16:10,"88 4th St, Los Angeles, CA 90001" -242610,20in Monitor,1,109.99,08/14/19 17:40,"44 12th St, Seattle, WA 98101" -242611,Lightning Charging Cable,1,14.95,08/30/19 23:12,"769 12th St, Seattle, WA 98101" -242612,USB-C Charging Cable,1,11.95,08/04/19 20:19,"844 Ridge St, Portland, ME 04101" -242613,Apple Airpods Headphones,1,150,08/06/19 18:22,"95 West St, Los Angeles, CA 90001" -242614,Google Phone,1,600,08/08/19 13:05,"912 South St, New York City, NY 10001" -242614,USB-C Charging Cable,1,11.95,08/08/19 13:05,"912 South St, New York City, NY 10001" -242615,Bose SoundSport Headphones,1,99.99,08/12/19 12:28,"938 10th St, Los Angeles, CA 90001" -242616,Lightning Charging Cable,1,14.95,08/10/19 11:11,"846 1st St, Dallas, TX 75001" -242617,USB-C Charging Cable,1,11.95,08/25/19 12:48,"575 Meadow St, Los Angeles, CA 90001" -242618,Lightning Charging Cable,1,14.95,08/18/19 13:18,"586 River St, Los Angeles, CA 90001" -242619,27in 4K Gaming Monitor,1,389.99,08/10/19 00:22,"297 11th St, San Francisco, CA 94016" -242620,27in FHD Monitor,1,149.99,08/27/19 20:23,"395 Highland St, Los Angeles, CA 90001" -242621,Macbook Pro Laptop,1,1700,08/10/19 14:56,"643 Spruce St, Boston, MA 02215" -242622,34in Ultrawide Monitor,1,379.99,08/03/19 12:25,"579 Walnut St, Boston, MA 02215" -242623,Wired Headphones,2,11.99,08/30/19 10:53,"471 Hill St, New York City, NY 10001" -242624,AAA Batteries (4-pack),1,2.99,08/25/19 15:57,"615 West St, New York City, NY 10001" -242625,Bose SoundSport Headphones,1,99.99,08/13/19 00:25,"195 Cedar St, San Francisco, CA 94016" -242626,Wired Headphones,3,11.99,08/24/19 08:58,"681 Washington St, San Francisco, CA 94016" -242627,27in 4K Gaming Monitor,1,389.99,08/27/19 18:39,"820 Meadow St, Atlanta, GA 30301" -242628,Lightning Charging Cable,1,14.95,08/27/19 20:17,"135 Spruce St, Seattle, WA 98101" -242629,27in FHD Monitor,1,149.99,08/30/19 07:18,"190 14th St, New York City, NY 10001" -242630,27in FHD Monitor,1,149.99,08/23/19 19:27,"463 Maple St, Boston, MA 02215" -242631,Bose SoundSport Headphones,1,99.99,08/02/19 22:31,"511 Spruce St, Atlanta, GA 30301" -242632,27in FHD Monitor,1,149.99,08/17/19 22:54,"796 Cherry St, New York City, NY 10001" -242633,27in 4K Gaming Monitor,1,389.99,08/20/19 03:44,"110 11th St, Seattle, WA 98101" -242634,AA Batteries (4-pack),1,3.84,08/10/19 07:54,"237 Jefferson St, New York City, NY 10001" -242635,Wired Headphones,1,11.99,08/23/19 23:34,"921 Adams St, San Francisco, CA 94016" -242636,27in FHD Monitor,1,149.99,08/07/19 12:54,"999 Sunset St, San Francisco, CA 94016" -242637,Apple Airpods Headphones,1,150,08/18/19 18:02,"414 Lakeview St, San Francisco, CA 94016" -242638,34in Ultrawide Monitor,1,379.99,08/04/19 12:23,"144 Washington St, New York City, NY 10001" -242639,Macbook Pro Laptop,1,1700,08/16/19 04:22,"613 Highland St, Los Angeles, CA 90001" -242640,AAA Batteries (4-pack),1,2.99,08/15/19 09:57,"189 11th St, Los Angeles, CA 90001" -242641,USB-C Charging Cable,1,11.95,08/22/19 11:35,"931 Cedar St, Los Angeles, CA 90001" -242642,AAA Batteries (4-pack),2,2.99,08/31/19 20:18,"512 14th St, Boston, MA 02215" -242643,Lightning Charging Cable,1,14.95,08/28/19 23:17,"64 13th St, New York City, NY 10001" -242644,Google Phone,1,600,08/31/19 12:09,"656 Church St, Portland, OR 97035" -242645,Wired Headphones,1,11.99,08/24/19 01:00,"683 Lake St, New York City, NY 10001" -242646,USB-C Charging Cable,1,11.95,08/26/19 22:35,"518 West St, Dallas, TX 75001" -242647,Lightning Charging Cable,1,14.95,08/29/19 12:17,"678 South St, Los Angeles, CA 90001" -242648,USB-C Charging Cable,1,11.95,08/14/19 17:11,"197 Madison St, Boston, MA 02215" -242649,AAA Batteries (4-pack),1,2.99,08/04/19 17:47,"315 West St, Portland, OR 97035" -242650,27in 4K Gaming Monitor,1,389.99,08/18/19 13:17,"34 Lincoln St, Atlanta, GA 30301" -242651,34in Ultrawide Monitor,1,379.99,08/26/19 11:28,"613 Main St, Atlanta, GA 30301" -242652,Google Phone,1,600,08/10/19 21:26,"805 Jackson St, Atlanta, GA 30301" -242653,Macbook Pro Laptop,1,1700,08/01/19 18:29,"981 Center St, New York City, NY 10001" -242654,34in Ultrawide Monitor,1,379.99,08/08/19 20:23,"433 1st St, San Francisco, CA 94016" -242655,AA Batteries (4-pack),1,3.84,08/21/19 00:12,"436 10th St, New York City, NY 10001" -242656,Apple Airpods Headphones,1,150,08/29/19 05:15,"736 Wilson St, New York City, NY 10001" -242657,AA Batteries (4-pack),4,3.84,08/23/19 19:18,"340 Washington St, Portland, OR 97035" -242658,Lightning Charging Cable,1,14.95,08/04/19 18:57,"610 8th St, Los Angeles, CA 90001" -242659,AA Batteries (4-pack),2,3.84,08/29/19 07:38,"705 Hill St, New York City, NY 10001" -242660,AAA Batteries (4-pack),1,2.99,08/18/19 17:27,"136 Pine St, Los Angeles, CA 90001" -242661,AA Batteries (4-pack),2,3.84,08/10/19 10:50,"80 West St, San Francisco, CA 94016" -242662,27in FHD Monitor,1,149.99,08/30/19 20:49,"95 10th St, San Francisco, CA 94016" -242663,27in 4K Gaming Monitor,1,389.99,08/29/19 15:25,"534 Chestnut St, San Francisco, CA 94016" -242664,USB-C Charging Cable,1,11.95,08/25/19 17:04,"966 10th St, New York City, NY 10001" -242665,Bose SoundSport Headphones,1,99.99,08/10/19 14:38,"953 Ridge St, San Francisco, CA 94016" -242666,AAA Batteries (4-pack),1,2.99,08/11/19 19:00,"848 Adams St, San Francisco, CA 94016" -242667,Apple Airpods Headphones,1,150,08/20/19 21:50,"994 Dogwood St, Dallas, TX 75001" -242668,Wired Headphones,1,11.99,08/16/19 21:07,"517 Madison St, Los Angeles, CA 90001" -242669,Google Phone,1,600,08/11/19 15:52,"453 Forest St, San Francisco, CA 94016" -242670,Google Phone,1,600,08/13/19 10:52,"10 Hill St, Dallas, TX 75001" -242671,AAA Batteries (4-pack),4,2.99,08/09/19 21:00,"104 Sunset St, San Francisco, CA 94016" -242672,20in Monitor,1,109.99,08/11/19 20:05,"61 River St, San Francisco, CA 94016" -242673,Lightning Charging Cable,1,14.95,08/09/19 19:37,"853 5th St, San Francisco, CA 94016" -242674,Lightning Charging Cable,1,14.95,08/15/19 15:30,"327 12th St, San Francisco, CA 94016" -242675,27in FHD Monitor,1,149.99,08/01/19 16:28,"138 Main St, San Francisco, CA 94016" -242676,AAA Batteries (4-pack),1,2.99,08/25/19 18:58,"45 North St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -242677,27in FHD Monitor,1,149.99,08/27/19 13:12,"409 River St, Austin, TX 73301" -242678,Lightning Charging Cable,1,14.95,08/31/19 08:45,"994 Dogwood St, Austin, TX 73301" -242679,Apple Airpods Headphones,1,150,08/22/19 10:03,"296 Lakeview St, Seattle, WA 98101" -242680,AA Batteries (4-pack),2,3.84,08/25/19 07:36,"677 5th St, San Francisco, CA 94016" -242681,AA Batteries (4-pack),1,3.84,08/20/19 13:50,"778 Willow St, Los Angeles, CA 90001" -242682,Bose SoundSport Headphones,1,99.99,08/04/19 17:46,"702 Forest St, Los Angeles, CA 90001" -242683,Lightning Charging Cable,1,14.95,08/12/19 19:46,"715 13th St, San Francisco, CA 94016" -242684,27in FHD Monitor,1,149.99,08/29/19 23:17,"606 6th St, San Francisco, CA 94016" -242685,34in Ultrawide Monitor,1,379.99,08/14/19 15:24,"343 10th St, Dallas, TX 75001" -242686,Lightning Charging Cable,1,14.95,08/12/19 11:17,"662 River St, San Francisco, CA 94016" -242687,Bose SoundSport Headphones,1,99.99,08/08/19 13:06,"889 Highland St, Boston, MA 02215" -242688,USB-C Charging Cable,1,11.95,08/19/19 15:22,"406 7th St, Boston, MA 02215" -242689,Lightning Charging Cable,1,14.95,08/26/19 21:28,"562 Highland St, Los Angeles, CA 90001" -242690,AA Batteries (4-pack),1,3.84,08/13/19 21:35,"354 8th St, New York City, NY 10001" -242691,Lightning Charging Cable,1,14.95,08/06/19 16:24,"665 6th St, New York City, NY 10001" -242692,27in 4K Gaming Monitor,1,389.99,08/13/19 06:13,"299 5th St, San Francisco, CA 94016" -242693,AA Batteries (4-pack),1,3.84,08/06/19 09:57,"566 Jackson St, Atlanta, GA 30301" -242694,AA Batteries (4-pack),3,3.84,08/03/19 10:39,"866 Church St, San Francisco, CA 94016" -242695,Bose SoundSport Headphones,1,99.99,08/11/19 18:05,"935 Ridge St, Dallas, TX 75001" -242696,USB-C Charging Cable,1,11.95,08/19/19 17:23,"199 Hickory St, New York City, NY 10001" -242697,Wired Headphones,1,11.99,08/02/19 11:46,"278 Madison St, Atlanta, GA 30301" -242698,AA Batteries (4-pack),1,3.84,08/31/19 12:09,"37 6th St, Austin, TX 73301" -242699,Lightning Charging Cable,2,14.95,08/03/19 18:45,"143 Meadow St, Austin, TX 73301" -242700,Lightning Charging Cable,1,14.95,08/03/19 16:58,"38 Cherry St, Seattle, WA 98101" -242700,LG Dryer,1,600.0,08/03/19 16:58,"38 Cherry St, Seattle, WA 98101" -242701,USB-C Charging Cable,1,11.95,08/22/19 19:37,"28 Elm St, San Francisco, CA 94016" -242702,USB-C Charging Cable,1,11.95,08/13/19 08:29,"333 Park St, Los Angeles, CA 90001" -242703,AAA Batteries (4-pack),2,2.99,08/03/19 11:17,"398 Jefferson St, San Francisco, CA 94016" -242704,iPhone,1,700,08/15/19 17:21,"541 Cedar St, San Francisco, CA 94016" -242705,AA Batteries (4-pack),1,3.84,08/08/19 12:27,"980 Maple St, San Francisco, CA 94016" -242706,AAA Batteries (4-pack),1,2.99,08/23/19 14:42,"809 Ridge St, Dallas, TX 75001" -242707,USB-C Charging Cable,1,11.95,08/22/19 06:27,"361 Dogwood St, San Francisco, CA 94016" -242708,ThinkPad Laptop,1,999.99,08/11/19 14:54,"979 Johnson St, Portland, OR 97035" -242709,ThinkPad Laptop,1,999.99,08/13/19 17:23,"648 8th St, New York City, NY 10001" -242710,Apple Airpods Headphones,1,150,08/07/19 21:26,"500 Cherry St, Portland, OR 97035" -242711,27in 4K Gaming Monitor,1,389.99,08/24/19 18:25,"232 South St, San Francisco, CA 94016" -242712,USB-C Charging Cable,1,11.95,08/17/19 16:45,"839 Jackson St, Dallas, TX 75001" -242713,iPhone,1,700,08/02/19 14:11,"771 Pine St, New York City, NY 10001" -242714,Bose SoundSport Headphones,1,99.99,08/07/19 23:17,"940 Spruce St, San Francisco, CA 94016" -242715,34in Ultrawide Monitor,1,379.99,08/10/19 08:10,"201 Jackson St, Boston, MA 02215" -242716,Wired Headphones,1,11.99,08/11/19 22:57,"630 Chestnut St, San Francisco, CA 94016" -242717,iPhone,1,700,08/18/19 10:52,"971 Walnut St, San Francisco, CA 94016" -242717,Lightning Charging Cable,1,14.95,08/18/19 10:52,"971 Walnut St, San Francisco, CA 94016" -242718,Flatscreen TV,1,300,08/21/19 18:20,"599 2nd St, San Francisco, CA 94016" -242719,Bose SoundSport Headphones,1,99.99,08/10/19 15:12,"506 Madison St, Seattle, WA 98101" -242720,AAA Batteries (4-pack),1,2.99,08/24/19 19:21,"396 River St, San Francisco, CA 94016" -242721,27in 4K Gaming Monitor,1,389.99,08/27/19 23:22,"691 Forest St, Atlanta, GA 30301" -242722,AAA Batteries (4-pack),2,2.99,08/18/19 22:50,"678 13th St, Seattle, WA 98101" -242723,Apple Airpods Headphones,1,150,08/27/19 20:41,"418 Center St, San Francisco, CA 94016" -242724,20in Monitor,1,109.99,08/07/19 17:06,"729 Park St, New York City, NY 10001" -242725,USB-C Charging Cable,1,11.95,08/25/19 17:41,"832 6th St, Los Angeles, CA 90001" -242726,Google Phone,1,600,08/25/19 01:04,"906 Sunset St, San Francisco, CA 94016" -242726,Bose SoundSport Headphones,1,99.99,08/25/19 01:04,"906 Sunset St, San Francisco, CA 94016" -242727,USB-C Charging Cable,1,11.95,08/15/19 20:44,"828 Ridge St, San Francisco, CA 94016" -242728,Apple Airpods Headphones,1,150,08/29/19 10:14,"899 Pine St, Atlanta, GA 30301" -242729,Lightning Charging Cable,1,14.95,08/13/19 18:24,"303 Elm St, San Francisco, CA 94016" -242730,AA Batteries (4-pack),1,3.84,08/28/19 16:18,"968 12th St, Atlanta, GA 30301" -242731,USB-C Charging Cable,1,11.95,08/05/19 17:20,"47 Hickory St, Seattle, WA 98101" -242732,AA Batteries (4-pack),1,3.84,08/13/19 01:40,"90 4th St, Los Angeles, CA 90001" -242733,Apple Airpods Headphones,1,150,08/02/19 09:56,"817 4th St, Austin, TX 73301" -242734,AAA Batteries (4-pack),1,2.99,08/05/19 08:35,"191 9th St, Boston, MA 02215" -242735,Wired Headphones,1,11.99,08/07/19 23:17,"413 Hickory St, New York City, NY 10001" -242736,20in Monitor,1,109.99,08/28/19 15:26,"192 Elm St, San Francisco, CA 94016" -242737,27in FHD Monitor,1,149.99,08/28/19 12:18,"11 Lake St, San Francisco, CA 94016" -242738,USB-C Charging Cable,1,11.95,08/20/19 11:47,"988 Lake St, New York City, NY 10001" -242739,Apple Airpods Headphones,1,150,08/22/19 01:41,"962 Meadow St, Boston, MA 02215" -242740,Bose SoundSport Headphones,1,99.99,08/15/19 11:14,"762 River St, Dallas, TX 75001" -242741,Wired Headphones,1,11.99,08/23/19 11:20,"46 Washington St, San Francisco, CA 94016" -242742,Apple Airpods Headphones,1,150,08/16/19 03:24,"955 Madison St, Portland, ME 04101" -242743,Wired Headphones,1,11.99,08/18/19 16:08,"419 Elm St, New York City, NY 10001" -242744,iPhone,1,700,08/14/19 01:02,"618 South St, Dallas, TX 75001" -242745,Bose SoundSport Headphones,1,99.99,08/05/19 00:29,"657 Maple St, San Francisco, CA 94016" -242746,Lightning Charging Cable,1,14.95,08/01/19 10:21,"348 Jefferson St, New York City, NY 10001" -242747,USB-C Charging Cable,1,11.95,08/20/19 20:56,"520 Meadow St, San Francisco, CA 94016" -242748,AA Batteries (4-pack),1,3.84,08/03/19 16:03,"363 Cherry St, Dallas, TX 75001" -242749,AAA Batteries (4-pack),1,2.99,08/26/19 09:07,"15 Cedar St, Boston, MA 02215" -242750,iPhone,1,700,08/13/19 21:31,"653 Meadow St, Seattle, WA 98101" -242751,20in Monitor,1,109.99,08/20/19 12:56,"820 Pine St, Austin, TX 73301" -242752,Apple Airpods Headphones,1,150,08/06/19 19:54,"41 Elm St, Los Angeles, CA 90001" -242753,AA Batteries (4-pack),2,3.84,08/12/19 19:03,"982 Forest St, San Francisco, CA 94016" -242754,ThinkPad Laptop,1,999.99,08/02/19 14:21,"366 Sunset St, Seattle, WA 98101" -242755,AA Batteries (4-pack),1,3.84,08/17/19 09:37,"215 Sunset St, Atlanta, GA 30301" -242756,Wired Headphones,1,11.99,08/24/19 21:13,"683 Forest St, Boston, MA 02215" -242757,Wired Headphones,1,11.99,08/18/19 18:21,"749 1st St, Dallas, TX 75001" -242758,ThinkPad Laptop,1,999.99,08/25/19 13:20,"579 Lakeview St, San Francisco, CA 94016" -242759,Apple Airpods Headphones,1,150,08/21/19 13:51,"773 11th St, Atlanta, GA 30301" -242760,AA Batteries (4-pack),2,3.84,08/10/19 11:22,"888 Spruce St, San Francisco, CA 94016" -242761,AAA Batteries (4-pack),1,2.99,08/14/19 11:20,"150 Hill St, San Francisco, CA 94016" -242762,ThinkPad Laptop,1,999.99,08/17/19 11:54,"446 Pine St, Seattle, WA 98101" -242763,AAA Batteries (4-pack),1,2.99,08/06/19 12:39,"598 Dogwood St, Seattle, WA 98101" -242764,Flatscreen TV,1,300,08/18/19 19:51,"940 Walnut St, Dallas, TX 75001" -242765,Bose SoundSport Headphones,1,99.99,08/06/19 22:08,"409 Sunset St, San Francisco, CA 94016" -242766,USB-C Charging Cable,1,11.95,08/15/19 04:56,"534 10th St, San Francisco, CA 94016" -242767,Wired Headphones,1,11.99,08/05/19 09:51,"92 8th St, Los Angeles, CA 90001" -242768,AA Batteries (4-pack),1,3.84,08/03/19 14:36,"91 Cherry St, San Francisco, CA 94016" -242768,Bose SoundSport Headphones,1,99.99,08/03/19 14:36,"91 Cherry St, San Francisco, CA 94016" -242769,Lightning Charging Cable,1,14.95,08/08/19 14:44,"24 Adams St, San Francisco, CA 94016" -242770,ThinkPad Laptop,1,999.99,08/18/19 06:47,"301 Ridge St, Portland, ME 04101" -242771,USB-C Charging Cable,1,11.95,08/04/19 22:06,"802 Hill St, San Francisco, CA 94016" -242772,34in Ultrawide Monitor,1,379.99,08/07/19 08:03,"426 Dogwood St, Seattle, WA 98101" -242773,Wired Headphones,1,11.99,08/20/19 12:04,"266 Maple St, Atlanta, GA 30301" -242774,20in Monitor,1,109.99,08/28/19 17:08,"661 Jackson St, Dallas, TX 75001" -242774,Wired Headphones,1,11.99,08/28/19 17:08,"661 Jackson St, Dallas, TX 75001" -242775,AAA Batteries (4-pack),3,2.99,08/23/19 11:35,"85 Cedar St, Boston, MA 02215" -242776,ThinkPad Laptop,1,999.99,08/06/19 20:54,"965 Ridge St, Seattle, WA 98101" -242777,USB-C Charging Cable,1,11.95,08/14/19 19:44,"65 Elm St, Atlanta, GA 30301" -242778,Wired Headphones,1,11.99,08/04/19 19:31,"618 Church St, Austin, TX 73301" -242779,Wired Headphones,1,11.99,08/11/19 18:51,"621 Dogwood St, Los Angeles, CA 90001" -242780,Flatscreen TV,1,300,08/09/19 21:05,"284 West St, Boston, MA 02215" -242781,34in Ultrawide Monitor,1,379.99,08/19/19 19:30,"587 Church St, Los Angeles, CA 90001" -242782,Macbook Pro Laptop,1,1700,08/27/19 21:43,"732 Madison St, Boston, MA 02215" -242783,AAA Batteries (4-pack),1,2.99,08/28/19 10:02,"864 Elm St, Los Angeles, CA 90001" -242784,Apple Airpods Headphones,1,150,08/08/19 19:38,"583 Hill St, Portland, OR 97035" -242784,Apple Airpods Headphones,1,150,08/08/19 19:38,"583 Hill St, Portland, OR 97035" -242785,Apple Airpods Headphones,1,150,08/28/19 22:58,"283 Center St, Austin, TX 73301" -242785,USB-C Charging Cable,1,11.95,08/28/19 22:58,"283 Center St, Austin, TX 73301" -242786,Apple Airpods Headphones,1,150,08/14/19 20:25,"384 Willow St, San Francisco, CA 94016" -242787,AA Batteries (4-pack),1,3.84,08/16/19 19:54,"838 Adams St, San Francisco, CA 94016" -242788,Lightning Charging Cable,1,14.95,08/15/19 07:43,"336 Park St, Seattle, WA 98101" -242789,USB-C Charging Cable,1,11.95,08/01/19 11:29,"694 Johnson St, Los Angeles, CA 90001" -242790,27in FHD Monitor,1,149.99,08/08/19 21:24,"368 Center St, Boston, MA 02215" -242791,iPhone,1,700,08/16/19 09:53,"939 2nd St, Atlanta, GA 30301" -242792,AAA Batteries (4-pack),1,2.99,08/22/19 14:24,"357 North St, Dallas, TX 75001" -242792,ThinkPad Laptop,1,999.99,08/22/19 14:24,"357 North St, Dallas, TX 75001" -242793,Wired Headphones,1,11.99,08/19/19 09:52,"88 Lake St, Boston, MA 02215" -242794,Vareebadd Phone,1,400,08/19/19 08:33,"489 North St, San Francisco, CA 94016" -242795,AA Batteries (4-pack),1,3.84,08/26/19 12:24,"507 West St, Seattle, WA 98101" -242795,Lightning Charging Cable,1,14.95,08/26/19 12:24,"507 West St, Seattle, WA 98101" -242796,Apple Airpods Headphones,1,150,08/21/19 18:31,"607 Hill St, Los Angeles, CA 90001" -242796,34in Ultrawide Monitor,1,379.99,08/21/19 18:31,"607 Hill St, Los Angeles, CA 90001" -242797,AA Batteries (4-pack),1,3.84,08/27/19 21:22,"76 Forest St, Portland, OR 97035" -242798,iPhone,1,700,08/01/19 20:59,"468 Hickory St, Atlanta, GA 30301" -242799,Apple Airpods Headphones,1,150,08/12/19 17:11,"625 Chestnut St, Portland, ME 04101" -242800,Lightning Charging Cable,1,14.95,08/23/19 11:07,"641 14th St, Dallas, TX 75001" -242801,AA Batteries (4-pack),1,3.84,08/11/19 21:03,"270 Lincoln St, Seattle, WA 98101" -242802,AA Batteries (4-pack),2,3.84,08/19/19 13:50,"496 Forest St, San Francisco, CA 94016" -242803,AAA Batteries (4-pack),5,2.99,08/01/19 18:30,"668 Maple St, Seattle, WA 98101" -242804,AAA Batteries (4-pack),2,2.99,08/25/19 22:38,"802 Johnson St, San Francisco, CA 94016" -242805,AAA Batteries (4-pack),2,2.99,08/05/19 22:37,"174 Dogwood St, Los Angeles, CA 90001" -242806,Wired Headphones,1,11.99,08/27/19 12:10,"68 Jackson St, San Francisco, CA 94016" -242807,Lightning Charging Cable,1,14.95,08/25/19 10:25,"549 South St, Boston, MA 02215" -242808,AA Batteries (4-pack),3,3.84,08/02/19 17:39,"465 4th St, San Francisco, CA 94016" -242809,Wired Headphones,1,11.99,08/26/19 02:09,"496 5th St, Los Angeles, CA 90001" -242810,USB-C Charging Cable,1,11.95,08/13/19 12:43,"65 South St, Boston, MA 02215" -242811,iPhone,1,700,08/06/19 00:27,"717 5th St, Austin, TX 73301" -242811,Lightning Charging Cable,1,14.95,08/06/19 00:27,"717 5th St, Austin, TX 73301" -242812,USB-C Charging Cable,1,11.95,08/25/19 20:45,"482 14th St, Portland, ME 04101" -242813,ThinkPad Laptop,1,999.99,08/19/19 14:28,"194 Cherry St, San Francisco, CA 94016" -242814,27in FHD Monitor,1,149.99,08/22/19 15:30,"925 Park St, Boston, MA 02215" -242815,Bose SoundSport Headphones,1,99.99,08/19/19 22:48,"30 10th St, San Francisco, CA 94016" -242816,Flatscreen TV,1,300,08/15/19 21:58,"186 Cherry St, Los Angeles, CA 90001" -242817,Wired Headphones,1,11.99,08/21/19 09:43,"706 8th St, Portland, OR 97035" -242818,27in 4K Gaming Monitor,1,389.99,08/02/19 20:07,"113 Dogwood St, Los Angeles, CA 90001" -242819,Flatscreen TV,1,300,08/19/19 19:19,"269 4th St, San Francisco, CA 94016" -242820,AAA Batteries (4-pack),1,2.99,08/29/19 16:58,"940 11th St, Dallas, TX 75001" -242821,USB-C Charging Cable,1,11.95,08/25/19 19:16,"12 Church St, New York City, NY 10001" -242822,27in FHD Monitor,1,149.99,08/26/19 19:24,"936 14th St, New York City, NY 10001" -242823,USB-C Charging Cable,1,11.95,08/15/19 04:15,"654 Dogwood St, Dallas, TX 75001" -242824,Apple Airpods Headphones,1,150,08/05/19 09:27,"551 Meadow St, Dallas, TX 75001" -242825,Wired Headphones,1,11.99,08/02/19 16:03,"169 Meadow St, Austin, TX 73301" -242826,AA Batteries (4-pack),1,3.84,08/26/19 17:57,"282 Willow St, Seattle, WA 98101" -242827,Apple Airpods Headphones,1,150,08/01/19 19:38,"474 Jackson St, San Francisco, CA 94016" -242828,27in 4K Gaming Monitor,1,389.99,08/13/19 17:18,"650 South St, New York City, NY 10001" -242829,AAA Batteries (4-pack),1,2.99,08/24/19 13:59,"320 12th St, Seattle, WA 98101" -242830,AA Batteries (4-pack),2,3.84,08/29/19 23:30,"993 8th St, San Francisco, CA 94016" -242831,27in 4K Gaming Monitor,1,389.99,08/13/19 10:25,"835 Jackson St, Boston, MA 02215" -242832,AA Batteries (4-pack),1,3.84,08/15/19 18:55,"347 Elm St, Dallas, TX 75001" -242833,AAA Batteries (4-pack),2,2.99,08/31/19 13:50,"805 Madison St, San Francisco, CA 94016" -242834,AA Batteries (4-pack),1,3.84,08/25/19 13:21,"403 7th St, New York City, NY 10001" -242835,Bose SoundSport Headphones,1,99.99,08/21/19 00:08,"87 13th St, Atlanta, GA 30301" -242836,Apple Airpods Headphones,1,150,08/24/19 11:24,"602 Maple St, New York City, NY 10001" -242837,Apple Airpods Headphones,1,150,08/15/19 10:45,"758 Highland St, San Francisco, CA 94016" -242838,Macbook Pro Laptop,1,1700,08/06/19 07:45,"388 Lakeview St, Dallas, TX 75001" -242839,27in FHD Monitor,1,149.99,08/31/19 17:57,"575 Dogwood St, Los Angeles, CA 90001" -242840,Wired Headphones,1,11.99,08/19/19 12:49,"273 Jackson St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -242841,Google Phone,1,600,08/03/19 13:49,"548 7th St, Los Angeles, CA 90001" -242842,iPhone,1,700,08/30/19 20:15,"720 Forest St, New York City, NY 10001" -242843,34in Ultrawide Monitor,1,379.99,08/22/19 21:56,"238 Elm St, Portland, OR 97035" -242844,Lightning Charging Cable,1,14.95,08/03/19 14:36,"270 Lincoln St, Los Angeles, CA 90001" -242845,AA Batteries (4-pack),1,3.84,08/13/19 21:08,"748 Adams St, New York City, NY 10001" -242846,Lightning Charging Cable,1,14.95,08/22/19 09:06,"734 5th St, San Francisco, CA 94016" -,,,,, -242847,AA Batteries (4-pack),1,3.84,08/11/19 20:21,"276 Highland St, New York City, NY 10001" -242848,ThinkPad Laptop,1,999.99,08/19/19 17:49,"825 Maple St, New York City, NY 10001" -242849,AAA Batteries (4-pack),2,2.99,08/13/19 10:05,"35 2nd St, Los Angeles, CA 90001" -242850,Wired Headphones,1,11.99,08/11/19 18:22,"87 Highland St, Dallas, TX 75001" -242851,Lightning Charging Cable,1,14.95,08/01/19 09:41,"874 River St, Atlanta, GA 30301" -242852,Macbook Pro Laptop,1,1700,08/10/19 21:16,"264 Spruce St, Austin, TX 73301" -242853,AAA Batteries (4-pack),1,2.99,08/23/19 10:17,"570 Jefferson St, Los Angeles, CA 90001" -242854,USB-C Charging Cable,1,11.95,08/31/19 15:23,"473 Church St, San Francisco, CA 94016" -242855,Apple Airpods Headphones,1,150,08/04/19 11:18,"60 Cedar St, San Francisco, CA 94016" -242856,Apple Airpods Headphones,1,150,08/01/19 23:10,"659 7th St, Boston, MA 02215" -242857,AA Batteries (4-pack),3,3.84,08/04/19 10:01,"177 7th St, Seattle, WA 98101" -242858,USB-C Charging Cable,1,11.95,08/14/19 17:54,"709 10th St, New York City, NY 10001" -242859,27in 4K Gaming Monitor,1,389.99,08/01/19 04:50,"980 Dogwood St, San Francisco, CA 94016" -242860,20in Monitor,1,109.99,08/21/19 11:11,"683 Sunset St, San Francisco, CA 94016" -242861,Bose SoundSport Headphones,1,99.99,08/13/19 21:11,"30 Cedar St, Boston, MA 02215" -242862,USB-C Charging Cable,1,11.95,08/22/19 22:56,"936 Cedar St, Austin, TX 73301" -242863,Flatscreen TV,1,300,08/03/19 09:31,"247 Dogwood St, Boston, MA 02215" -242864,Flatscreen TV,1,300,08/06/19 12:30,"678 12th St, Los Angeles, CA 90001" -242865,27in FHD Monitor,1,149.99,09/01/19 01:28,"678 Washington St, San Francisco, CA 94016" -242866,Wired Headphones,1,11.99,08/27/19 20:53,"242 Walnut St, Los Angeles, CA 90001" -242867,Lightning Charging Cable,1,14.95,08/29/19 09:18,"911 Dogwood St, Los Angeles, CA 90001" -242868,27in FHD Monitor,1,149.99,08/13/19 08:47,"486 River St, San Francisco, CA 94016" -242869,AAA Batteries (4-pack),1,2.99,08/31/19 13:19,"390 Chestnut St, New York City, NY 10001" -242870,ThinkPad Laptop,1,999.99,08/05/19 06:24,"777 South St, Portland, OR 97035" -242871,Flatscreen TV,1,300,08/27/19 18:23,"996 Madison St, Dallas, TX 75001" -242872,Bose SoundSport Headphones,1,99.99,08/05/19 10:47,"795 13th St, San Francisco, CA 94016" -242873,AA Batteries (4-pack),1,3.84,08/10/19 07:48,"9 Center St, Los Angeles, CA 90001" -242874,Apple Airpods Headphones,1,150,08/17/19 21:49,"85 Church St, San Francisco, CA 94016" -242875,Google Phone,1,600,08/11/19 18:47,"432 6th St, New York City, NY 10001" -242875,Bose SoundSport Headphones,1,99.99,08/11/19 18:47,"432 6th St, New York City, NY 10001" -242876,iPhone,1,700,08/20/19 09:01,"548 Walnut St, Dallas, TX 75001" -242877,Lightning Charging Cable,1,14.95,08/12/19 14:45,"294 8th St, Los Angeles, CA 90001" -242878,iPhone,1,700,08/05/19 16:05,"312 Pine St, Boston, MA 02215" -242879,Lightning Charging Cable,1,14.95,08/11/19 09:10,"804 Willow St, Boston, MA 02215" -242880,Lightning Charging Cable,1,14.95,08/06/19 21:27,"827 12th St, Seattle, WA 98101" -242881,Bose SoundSport Headphones,1,99.99,08/18/19 12:51,"535 5th St, San Francisco, CA 94016" -242881,AAA Batteries (4-pack),1,2.99,08/18/19 12:51,"535 5th St, San Francisco, CA 94016" -242882,USB-C Charging Cable,1,11.95,08/25/19 14:32,"621 West St, Boston, MA 02215" -242883,Lightning Charging Cable,1,14.95,08/26/19 22:14,"412 1st St, Portland, OR 97035" -242884,Lightning Charging Cable,1,14.95,08/31/19 11:17,"253 Dogwood St, Dallas, TX 75001" -242885,Macbook Pro Laptop,1,1700,08/09/19 22:08,"273 North St, Seattle, WA 98101" -242886,27in 4K Gaming Monitor,1,389.99,08/04/19 15:59,"295 Forest St, Portland, ME 04101" -242887,27in 4K Gaming Monitor,1,389.99,08/20/19 17:22,"199 Madison St, Los Angeles, CA 90001" -242888,AAA Batteries (4-pack),5,2.99,08/28/19 13:04,"637 12th St, Dallas, TX 75001" -242889,Macbook Pro Laptop,1,1700,08/14/19 16:42,"711 Johnson St, Seattle, WA 98101" -242890,Apple Airpods Headphones,1,150,08/25/19 16:03,"126 Meadow St, San Francisco, CA 94016" -242891,34in Ultrawide Monitor,1,379.99,08/20/19 14:38,"959 North St, Los Angeles, CA 90001" -242892,Bose SoundSport Headphones,1,99.99,08/21/19 18:35,"809 Madison St, New York City, NY 10001" -242893,iPhone,1,700,08/31/19 12:23,"330 5th St, Seattle, WA 98101" -242893,Apple Airpods Headphones,1,150,08/31/19 12:23,"330 5th St, Seattle, WA 98101" -242894,Lightning Charging Cable,1,14.95,08/29/19 18:35,"698 Cedar St, San Francisco, CA 94016" -242895,Lightning Charging Cable,1,14.95,08/12/19 19:24,"922 7th St, Boston, MA 02215" -242896,27in FHD Monitor,1,149.99,08/16/19 11:04,"576 Lincoln St, Seattle, WA 98101" -242897,Wired Headphones,1,11.99,08/18/19 18:47,"970 Cedar St, San Francisco, CA 94016" -242898,iPhone,1,700,08/11/19 08:50,"619 Maple St, Atlanta, GA 30301" -242898,Wired Headphones,1,11.99,08/11/19 08:50,"619 Maple St, Atlanta, GA 30301" -242899,Wired Headphones,1,11.99,08/21/19 22:47,"367 Elm St, Los Angeles, CA 90001" -242900,USB-C Charging Cable,1,11.95,08/22/19 16:20,"709 10th St, New York City, NY 10001" -242901,Wired Headphones,1,11.99,08/08/19 11:46,"499 Church St, Seattle, WA 98101" -242902,27in FHD Monitor,1,149.99,08/25/19 18:37,"485 Cherry St, Austin, TX 73301" -242903,AAA Batteries (4-pack),2,2.99,08/18/19 09:59,"291 Forest St, Portland, OR 97035" -242904,Apple Airpods Headphones,1,150,08/18/19 22:14,"470 Cedar St, Dallas, TX 75001" -242905,Bose SoundSport Headphones,1,99.99,08/19/19 06:31,"118 Cedar St, Boston, MA 02215" -242906,USB-C Charging Cable,1,11.95,08/11/19 17:26,"250 South St, Los Angeles, CA 90001" -242907,USB-C Charging Cable,1,11.95,08/22/19 08:45,"799 9th St, New York City, NY 10001" -242908,27in 4K Gaming Monitor,1,389.99,08/18/19 22:57,"737 8th St, Dallas, TX 75001" -242909,Bose SoundSport Headphones,1,99.99,08/20/19 15:01,"277 Cherry St, San Francisco, CA 94016" -242910,Google Phone,1,600,08/31/19 08:29,"355 Spruce St, Los Angeles, CA 90001" -242911,Apple Airpods Headphones,1,150,08/25/19 01:39,"50 Main St, Los Angeles, CA 90001" -242912,AA Batteries (4-pack),1,3.84,08/23/19 20:29,"12 Wilson St, San Francisco, CA 94016" -242913,USB-C Charging Cable,1,11.95,08/07/19 14:56,"581 Hill St, Boston, MA 02215" -242914,USB-C Charging Cable,1,11.95,08/26/19 13:15,"713 Cherry St, Portland, OR 97035" -242915,Lightning Charging Cable,1,14.95,08/09/19 06:10,"533 Jackson St, San Francisco, CA 94016" -242916,34in Ultrawide Monitor,1,379.99,08/23/19 10:59,"269 2nd St, Atlanta, GA 30301" -242917,Lightning Charging Cable,1,14.95,08/29/19 11:38,"872 Highland St, Seattle, WA 98101" -242918,Lightning Charging Cable,1,14.95,08/30/19 14:23,"861 Dogwood St, Los Angeles, CA 90001" -242919,Bose SoundSport Headphones,1,99.99,08/05/19 11:23,"256 Adams St, Austin, TX 73301" -242920,27in 4K Gaming Monitor,1,389.99,08/23/19 14:07,"2 Hill St, New York City, NY 10001" -242921,ThinkPad Laptop,1,999.99,08/08/19 11:58,"540 Church St, San Francisco, CA 94016" -242922,AA Batteries (4-pack),1,3.84,08/08/19 19:53,"719 13th St, San Francisco, CA 94016" -242923,Apple Airpods Headphones,1,150,08/01/19 14:33,"596 Pine St, Los Angeles, CA 90001" -242924,Wired Headphones,1,11.99,08/09/19 13:08,"921 Hill St, New York City, NY 10001" -242925,27in FHD Monitor,1,149.99,08/10/19 23:04,"211 6th St, Boston, MA 02215" -242926,USB-C Charging Cable,1,11.95,08/07/19 20:55,"848 Chestnut St, Seattle, WA 98101" -242927,27in FHD Monitor,1,149.99,08/19/19 15:54,"721 Sunset St, Atlanta, GA 30301" -242928,Apple Airpods Headphones,1,150,08/19/19 01:00,"21 Highland St, Dallas, TX 75001" -242929,USB-C Charging Cable,1,11.95,08/05/19 10:08,"72 Jefferson St, New York City, NY 10001" -242930,Lightning Charging Cable,1,14.95,08/29/19 17:53,"11 Meadow St, Atlanta, GA 30301" -242931,Wired Headphones,1,11.99,08/09/19 20:06,"274 Center St, Los Angeles, CA 90001" -242932,Apple Airpods Headphones,1,150,08/03/19 22:03,"260 Johnson St, Boston, MA 02215" -242933,27in FHD Monitor,1,149.99,08/02/19 13:07,"276 Ridge St, Dallas, TX 75001" -242934,Wired Headphones,1,11.99,08/21/19 10:12,"128 Highland St, Los Angeles, CA 90001" -242935,AA Batteries (4-pack),1,3.84,08/08/19 20:24,"463 Meadow St, Los Angeles, CA 90001" -242936,iPhone,1,700,08/14/19 09:27,"984 14th St, Austin, TX 73301" -242936,Lightning Charging Cable,2,14.95,08/14/19 09:27,"984 14th St, Austin, TX 73301" -242936,Apple Airpods Headphones,1,150,08/14/19 09:27,"984 14th St, Austin, TX 73301" -242936,Wired Headphones,1,11.99,08/14/19 09:27,"984 14th St, Austin, TX 73301" -242937,AA Batteries (4-pack),2,3.84,08/30/19 02:09,"582 9th St, New York City, NY 10001" -242938,20in Monitor,1,109.99,08/18/19 22:44,"571 Center St, Los Angeles, CA 90001" -242939,Lightning Charging Cable,1,14.95,08/21/19 10:22,"300 Highland St, Boston, MA 02215" -242940,27in FHD Monitor,1,149.99,08/10/19 10:10,"177 Center St, Seattle, WA 98101" -242941,27in FHD Monitor,1,149.99,08/16/19 14:52,"653 Walnut St, New York City, NY 10001" -242942,Lightning Charging Cable,1,14.95,08/10/19 21:47,"159 Dogwood St, San Francisco, CA 94016" -242943,iPhone,1,700,08/07/19 19:29,"106 Main St, Boston, MA 02215" -242944,Bose SoundSport Headphones,1,99.99,08/19/19 17:05,"244 14th St, Los Angeles, CA 90001" -242945,AA Batteries (4-pack),1,3.84,08/30/19 13:32,"542 Madison St, San Francisco, CA 94016" -242946,20in Monitor,1,109.99,08/08/19 09:57,"55 Wilson St, Los Angeles, CA 90001" -242947,Wired Headphones,1,11.99,08/14/19 10:49,"724 Spruce St, Los Angeles, CA 90001" -242948,LG Dryer,1,600.0,08/21/19 07:49,"483 Forest St, New York City, NY 10001" -242949,34in Ultrawide Monitor,1,379.99,08/26/19 02:03,"16 Walnut St, Dallas, TX 75001" -242950,Apple Airpods Headphones,2,150,08/04/19 14:39,"131 Park St, Los Angeles, CA 90001" -242951,ThinkPad Laptop,1,999.99,08/22/19 20:04,"24 Hill St, Boston, MA 02215" -242951,Apple Airpods Headphones,1,150,08/22/19 20:04,"24 Hill St, Boston, MA 02215" -242952,27in FHD Monitor,1,149.99,08/12/19 17:08,"276 Maple St, San Francisco, CA 94016" -242952,AAA Batteries (4-pack),4,2.99,08/12/19 17:08,"276 Maple St, San Francisco, CA 94016" -242953,Flatscreen TV,1,300,08/19/19 16:34,"627 Lake St, Portland, OR 97035" -242954,AA Batteries (4-pack),1,3.84,08/18/19 16:39,"456 5th St, San Francisco, CA 94016" -242955,Lightning Charging Cable,2,14.95,08/02/19 19:16,"508 Church St, San Francisco, CA 94016" -242956,USB-C Charging Cable,1,11.95,08/26/19 19:41,"311 4th St, Los Angeles, CA 90001" -242957,34in Ultrawide Monitor,1,379.99,08/17/19 08:23,"769 River St, New York City, NY 10001" -242958,Apple Airpods Headphones,1,150,08/27/19 07:02,"996 Lakeview St, San Francisco, CA 94016" -242959,AAA Batteries (4-pack),1,2.99,08/12/19 22:02,"68 Wilson St, San Francisco, CA 94016" -242960,Bose SoundSport Headphones,1,99.99,08/02/19 20:53,"588 Meadow St, New York City, NY 10001" -242960,Lightning Charging Cable,1,14.95,08/02/19 20:53,"588 Meadow St, New York City, NY 10001" -242961,AAA Batteries (4-pack),1,2.99,08/08/19 13:57,"110 Lincoln St, San Francisco, CA 94016" -242962,Bose SoundSport Headphones,2,99.99,08/14/19 22:11,"251 12th St, San Francisco, CA 94016" -242963,27in FHD Monitor,1,149.99,08/31/19 15:31,"404 Jefferson St, Dallas, TX 75001" -242963,AA Batteries (4-pack),1,3.84,08/31/19 15:31,"404 Jefferson St, Dallas, TX 75001" -242964,Lightning Charging Cable,1,14.95,08/19/19 20:47,"43 13th St, San Francisco, CA 94016" -242965,Macbook Pro Laptop,1,1700,08/14/19 22:59,"2 1st St, Portland, OR 97035" -242966,Lightning Charging Cable,1,14.95,08/06/19 12:08,"256 Adams St, San Francisco, CA 94016" -242967,27in FHD Monitor,1,149.99,08/25/19 21:24,"962 10th St, Boston, MA 02215" -242968,USB-C Charging Cable,1,11.95,08/01/19 19:57,"492 Lake St, San Francisco, CA 94016" -242969,AA Batteries (4-pack),4,3.84,08/23/19 20:15,"992 Hickory St, Portland, OR 97035" -242970,AA Batteries (4-pack),1,3.84,08/06/19 09:34,"455 North St, New York City, NY 10001" -242971,AAA Batteries (4-pack),1,2.99,08/30/19 18:54,"523 5th St, Boston, MA 02215" -242972,Wired Headphones,1,11.99,08/13/19 10:20,"935 14th St, Los Angeles, CA 90001" -242973,Lightning Charging Cable,1,14.95,08/19/19 19:40,"631 Cedar St, San Francisco, CA 94016" -242974,iPhone,1,700,08/09/19 12:07,"645 Washington St, Seattle, WA 98101" -242975,27in FHD Monitor,1,149.99,08/07/19 11:32,"471 Maple St, Portland, ME 04101" -242976,Flatscreen TV,1,300,08/27/19 19:22,"609 Wilson St, Portland, OR 97035" -242977,34in Ultrawide Monitor,1,379.99,08/13/19 18:37,"705 Wilson St, Boston, MA 02215" -242978,AAA Batteries (4-pack),1,2.99,08/30/19 06:39,"199 Willow St, San Francisco, CA 94016" -242979,Apple Airpods Headphones,1,150,08/13/19 16:45,"172 Johnson St, Los Angeles, CA 90001" -242980,AAA Batteries (4-pack),1,2.99,08/22/19 23:37,"270 West St, Seattle, WA 98101" -242981,AA Batteries (4-pack),1,3.84,08/09/19 18:44,"180 Spruce St, San Francisco, CA 94016" -242982,Wired Headphones,1,11.99,08/10/19 19:53,"563 Meadow St, New York City, NY 10001" -242983,Wired Headphones,1,11.99,08/08/19 10:25,"369 Chestnut St, Los Angeles, CA 90001" -242984,Apple Airpods Headphones,1,150,08/14/19 19:58,"72 Hickory St, New York City, NY 10001" -242985,27in FHD Monitor,1,149.99,08/17/19 15:02,"775 Sunset St, Atlanta, GA 30301" -242986,Lightning Charging Cable,1,14.95,08/29/19 18:45,"921 Forest St, Portland, ME 04101" -242987,AA Batteries (4-pack),1,3.84,08/20/19 18:47,"296 Spruce St, Dallas, TX 75001" -242988,Flatscreen TV,1,300,08/19/19 13:41,"842 Spruce St, Portland, OR 97035" -242989,Lightning Charging Cable,1,14.95,08/06/19 15:22,"710 Lake St, Los Angeles, CA 90001" -242990,AAA Batteries (4-pack),2,2.99,08/31/19 18:36,"43 Church St, Dallas, TX 75001" -242991,20in Monitor,1,109.99,08/19/19 14:41,"926 Adams St, Austin, TX 73301" -242992,Wired Headphones,1,11.99,08/30/19 13:14,"952 South St, Boston, MA 02215" -242993,USB-C Charging Cable,1,11.95,08/12/19 18:32,"285 Main St, Dallas, TX 75001" -242994,Apple Airpods Headphones,1,150,08/07/19 13:06,"202 West St, San Francisco, CA 94016" -,,,,, -242995,20in Monitor,1,109.99,08/12/19 22:55,"532 7th St, Portland, ME 04101" -242996,Wired Headphones,1,11.99,08/26/19 18:22,"575 10th St, Dallas, TX 75001" -242997,27in 4K Gaming Monitor,1,389.99,08/17/19 10:45,"159 Sunset St, Portland, OR 97035" -242998,Apple Airpods Headphones,1,150,08/13/19 19:05,"221 Cedar St, San Francisco, CA 94016" -242999,USB-C Charging Cable,1,11.95,08/04/19 22:00,"143 Johnson St, Dallas, TX 75001" -243000,Wired Headphones,1,11.99,08/30/19 09:56,"7 Johnson St, San Francisco, CA 94016" -243001,Bose SoundSport Headphones,1,99.99,08/21/19 18:44,"79 Lakeview St, Seattle, WA 98101" -243002,Lightning Charging Cable,1,14.95,08/09/19 12:05,"328 Ridge St, San Francisco, CA 94016" -243003,USB-C Charging Cable,1,11.95,08/11/19 10:15,"225 Park St, Portland, OR 97035" -243004,Wired Headphones,1,11.99,08/23/19 23:34,"761 Adams St, Atlanta, GA 30301" -243005,AA Batteries (4-pack),1,3.84,08/13/19 10:15,"228 Spruce St, New York City, NY 10001" -243006,AA Batteries (4-pack),1,3.84,08/08/19 09:46,"604 Cedar St, Dallas, TX 75001" -243007,Wired Headphones,1,11.99,08/30/19 19:00,"385 9th St, New York City, NY 10001" -243008,Apple Airpods Headphones,1,150,08/20/19 15:37,"788 11th St, New York City, NY 10001" -243009,Lightning Charging Cable,1,14.95,08/04/19 11:19,"751 Madison St, Los Angeles, CA 90001" -243010,Wired Headphones,1,11.99,08/05/19 00:00,"368 5th St, Dallas, TX 75001" -243011,Lightning Charging Cable,1,14.95,08/30/19 17:04,"371 Main St, Boston, MA 02215" -243012,iPhone,1,700,08/03/19 16:41,"232 9th St, Boston, MA 02215" -243013,iPhone,1,700,08/09/19 19:32,"71 Jackson St, Portland, OR 97035" -243014,Bose SoundSport Headphones,1,99.99,08/19/19 16:37,"817 Forest St, Los Angeles, CA 90001" -243015,Wired Headphones,1,11.99,08/11/19 19:51,"682 Adams St, Seattle, WA 98101" -243016,Flatscreen TV,1,300,08/15/19 19:04,"97 Lakeview St, Seattle, WA 98101" -243017,Bose SoundSport Headphones,1,99.99,08/05/19 17:35,"377 Hill St, San Francisco, CA 94016" -243018,Wired Headphones,1,11.99,08/30/19 01:07,"299 Adams St, Seattle, WA 98101" -243019,27in FHD Monitor,1,149.99,08/04/19 19:55,"958 West St, San Francisco, CA 94016" -243020,Lightning Charging Cable,1,14.95,08/28/19 21:38,"642 River St, New York City, NY 10001" -243021,AA Batteries (4-pack),1,3.84,08/23/19 23:42,"985 Lakeview St, Boston, MA 02215" -243022,iPhone,1,700,08/23/19 09:46,"191 Madison St, San Francisco, CA 94016" -243023,Wired Headphones,1,11.99,08/23/19 12:14,"299 Highland St, Austin, TX 73301" -243024,Google Phone,1,600,08/27/19 16:11,"201 Maple St, San Francisco, CA 94016" -243025,AAA Batteries (4-pack),1,2.99,08/20/19 16:59,"480 Forest St, New York City, NY 10001" -243026,Bose SoundSport Headphones,1,99.99,08/05/19 21:35,"633 Walnut St, San Francisco, CA 94016" -243027,ThinkPad Laptop,1,999.99,08/22/19 07:08,"526 Lincoln St, San Francisco, CA 94016" -243028,Wired Headphones,1,11.99,08/15/19 13:54,"972 Pine St, Los Angeles, CA 90001" -243029,Apple Airpods Headphones,1,150,08/26/19 12:44,"812 4th St, San Francisco, CA 94016" -243030,AAA Batteries (4-pack),1,2.99,08/28/19 07:57,"635 12th St, Los Angeles, CA 90001" -243031,Bose SoundSport Headphones,1,99.99,08/23/19 15:21,"676 Jefferson St, Portland, OR 97035" -243032,Bose SoundSport Headphones,1,99.99,08/16/19 18:47,"731 Jackson St, San Francisco, CA 94016" -243033,AA Batteries (4-pack),1,3.84,08/04/19 09:00,"114 Sunset St, Boston, MA 02215" -243034,USB-C Charging Cable,1,11.95,08/20/19 19:05,"888 Maple St, Los Angeles, CA 90001" -243035,AAA Batteries (4-pack),4,2.99,08/19/19 14:17,"600 Park St, Dallas, TX 75001" -243036,27in 4K Gaming Monitor,1,389.99,08/19/19 18:57,"550 5th St, Seattle, WA 98101" -243037,USB-C Charging Cable,1,11.95,08/02/19 21:15,"842 12th St, San Francisco, CA 94016" -243038,34in Ultrawide Monitor,1,379.99,08/17/19 23:35,"925 Cedar St, Boston, MA 02215" -243039,iPhone,1,700,08/06/19 20:36,"168 7th St, Austin, TX 73301" -243040,27in FHD Monitor,1,149.99,08/07/19 19:43,"904 Madison St, Boston, MA 02215" -243041,Lightning Charging Cable,1,14.95,08/29/19 18:58,"321 Lake St, Dallas, TX 75001" -243042,Macbook Pro Laptop,1,1700,08/29/19 13:47,"374 13th St, Dallas, TX 75001" -243043,AAA Batteries (4-pack),2,2.99,08/11/19 09:34,"795 Center St, New York City, NY 10001" -243044,AAA Batteries (4-pack),1,2.99,08/12/19 00:42,"476 1st St, Austin, TX 73301" -243045,USB-C Charging Cable,1,11.95,08/06/19 23:50,"47 Cherry St, San Francisco, CA 94016" -243046,34in Ultrawide Monitor,1,379.99,08/24/19 12:11,"430 Sunset St, Boston, MA 02215" -243047,Wired Headphones,1,11.99,08/24/19 20:05,"324 North St, New York City, NY 10001" -243048,Wired Headphones,1,11.99,08/12/19 21:06,"343 South St, San Francisco, CA 94016" -243049,AA Batteries (4-pack),1,3.84,08/02/19 10:01,"492 Jackson St, New York City, NY 10001" -243050,USB-C Charging Cable,1,11.95,08/23/19 15:01,"80 Jackson St, Los Angeles, CA 90001" -243051,Wired Headphones,1,11.99,08/22/19 22:52,"502 5th St, Boston, MA 02215" -243052,Wired Headphones,2,11.99,08/28/19 12:47,"967 Forest St, Dallas, TX 75001" -243053,Bose SoundSport Headphones,1,99.99,08/20/19 12:52,"812 Adams St, Los Angeles, CA 90001" -243054,iPhone,1,700,08/03/19 11:48,"902 Spruce St, Dallas, TX 75001" -243055,Vareebadd Phone,1,400,08/08/19 11:22,"52 9th St, San Francisco, CA 94016" -243056,AAA Batteries (4-pack),2,2.99,08/28/19 22:03,"859 Park St, Seattle, WA 98101" -243057,Lightning Charging Cable,1,14.95,08/27/19 01:32,"940 13th St, Los Angeles, CA 90001" -243058,AA Batteries (4-pack),1,3.84,08/18/19 13:30,"109 Lincoln St, New York City, NY 10001" -243059,Lightning Charging Cable,1,14.95,08/16/19 16:21,"796 River St, Austin, TX 73301" -243060,ThinkPad Laptop,1,999.99,08/06/19 23:17,"858 Jefferson St, San Francisco, CA 94016" -243061,Apple Airpods Headphones,1,150,08/24/19 15:38,"64 8th St, Dallas, TX 75001" -243062,iPhone,1,700,08/04/19 02:49,"609 8th St, Dallas, TX 75001" -243063,Vareebadd Phone,1,400,08/13/19 18:55,"91 Wilson St, New York City, NY 10001" -243064,Lightning Charging Cable,1,14.95,08/05/19 20:30,"349 Elm St, New York City, NY 10001" -243065,27in 4K Gaming Monitor,1,389.99,08/18/19 04:28,"911 2nd St, San Francisco, CA 94016" -243066,AA Batteries (4-pack),1,3.84,08/23/19 07:59,"337 North St, New York City, NY 10001" -243067,AAA Batteries (4-pack),2,2.99,08/15/19 15:00,"63 Ridge St, Atlanta, GA 30301" -243068,34in Ultrawide Monitor,1,379.99,08/18/19 13:59,"450 14th St, New York City, NY 10001" -243069,AA Batteries (4-pack),2,3.84,08/11/19 17:46,"105 Cherry St, Los Angeles, CA 90001" -243070,USB-C Charging Cable,1,11.95,08/15/19 20:38,"436 Jefferson St, San Francisco, CA 94016" -243071,ThinkPad Laptop,1,999.99,08/25/19 10:11,"274 Ridge St, San Francisco, CA 94016" -243072,AA Batteries (4-pack),1,3.84,08/12/19 10:34,"305 Willow St, Boston, MA 02215" -243073,Apple Airpods Headphones,1,150,08/15/19 17:32,"166 8th St, New York City, NY 10001" -243074,AA Batteries (4-pack),2,3.84,08/28/19 15:14,"854 Adams St, New York City, NY 10001" -243075,Wired Headphones,1,11.99,08/09/19 07:42,"135 Elm St, Seattle, WA 98101" -243076,Wired Headphones,1,11.99,08/31/19 04:21,"51 Highland St, San Francisco, CA 94016" -243076,Apple Airpods Headphones,1,150,08/31/19 04:21,"51 Highland St, San Francisco, CA 94016" -243077,Apple Airpods Headphones,1,150,08/13/19 20:39,"955 Adams St, San Francisco, CA 94016" -243078,AAA Batteries (4-pack),3,2.99,08/27/19 19:33,"683 Main St, New York City, NY 10001" -243079,Wired Headphones,1,11.99,08/24/19 23:42,"688 West St, Dallas, TX 75001" -243080,Lightning Charging Cable,1,14.95,08/14/19 16:48,"413 6th St, Dallas, TX 75001" -243081,27in 4K Gaming Monitor,1,389.99,08/07/19 15:12,"194 Madison St, Atlanta, GA 30301" -243082,Lightning Charging Cable,2,14.95,08/02/19 19:48,"14 Lake St, San Francisco, CA 94016" -243083,Macbook Pro Laptop,1,1700,08/07/19 20:25,"146 1st St, San Francisco, CA 94016" -243084,Bose SoundSport Headphones,1,99.99,08/15/19 13:26,"547 Lincoln St, Los Angeles, CA 90001" -243085,USB-C Charging Cable,1,11.95,08/14/19 08:05,"120 Meadow St, Austin, TX 73301" -243086,Apple Airpods Headphones,1,150,08/25/19 11:37,"499 14th St, Seattle, WA 98101" -243087,AA Batteries (4-pack),1,3.84,08/23/19 14:35,"352 Johnson St, Los Angeles, CA 90001" -243088,AAA Batteries (4-pack),1,2.99,08/10/19 12:31,"392 Walnut St, Dallas, TX 75001" -243089,AAA Batteries (4-pack),2,2.99,08/29/19 09:41,"106 Chestnut St, New York City, NY 10001" -243090,Lightning Charging Cable,1,14.95,08/30/19 09:43,"853 Hickory St, Los Angeles, CA 90001" -243091,Lightning Charging Cable,1,14.95,08/14/19 00:52,"143 North St, Portland, OR 97035" -243092,Bose SoundSport Headphones,1,99.99,08/13/19 08:15,"391 5th St, New York City, NY 10001" -243093,iPhone,1,700,08/24/19 12:47,"19 Johnson St, Austin, TX 73301" -243094,Lightning Charging Cable,1,14.95,08/31/19 12:22,"980 Main St, Atlanta, GA 30301" -243095,Lightning Charging Cable,1,14.95,08/15/19 15:32,"857 Cherry St, Seattle, WA 98101" -243096,27in FHD Monitor,2,149.99,08/24/19 13:52,"976 Walnut St, San Francisco, CA 94016" -243097,Apple Airpods Headphones,1,150,08/20/19 12:05,"126 Jackson St, Los Angeles, CA 90001" -243098,AA Batteries (4-pack),1,3.84,08/19/19 21:08,"751 5th St, Los Angeles, CA 90001" -243099,Flatscreen TV,1,300,08/20/19 17:20,"449 Lincoln St, Los Angeles, CA 90001" -243100,AA Batteries (4-pack),1,3.84,08/10/19 14:59,"218 Lincoln St, San Francisco, CA 94016" -243101,Apple Airpods Headphones,1,150,08/31/19 04:55,"304 5th St, New York City, NY 10001" -243102,Wired Headphones,1,11.99,08/10/19 17:46,"506 5th St, San Francisco, CA 94016" -243103,AAA Batteries (4-pack),2,2.99,08/23/19 20:19,"149 Meadow St, Austin, TX 73301" -243104,USB-C Charging Cable,1,11.95,08/24/19 20:02,"458 2nd St, Los Angeles, CA 90001" -243105,Flatscreen TV,1,300,08/08/19 11:00,"40 Wilson St, San Francisco, CA 94016" -243106,USB-C Charging Cable,1,11.95,08/28/19 18:27,"704 10th St, San Francisco, CA 94016" -243107,USB-C Charging Cable,1,11.95,08/14/19 16:37,"242 9th St, Boston, MA 02215" -243108,AAA Batteries (4-pack),1,2.99,08/24/19 10:17,"582 Cedar St, Los Angeles, CA 90001" -243109,iPhone,1,700,08/10/19 18:13,"563 Wilson St, New York City, NY 10001" -243109,Apple Airpods Headphones,1,150,08/10/19 18:13,"563 Wilson St, New York City, NY 10001" -243110,AA Batteries (4-pack),1,3.84,08/08/19 13:49,"751 5th St, Dallas, TX 75001" -243110,Lightning Charging Cable,1,14.95,08/08/19 13:49,"751 5th St, Dallas, TX 75001" -243111,Lightning Charging Cable,1,14.95,08/07/19 13:38,"626 Pine St, Dallas, TX 75001" -243112,AA Batteries (4-pack),3,3.84,08/08/19 16:50,"46 Church St, Portland, OR 97035" -243113,Wired Headphones,1,11.99,08/28/19 19:27,"767 Sunset St, San Francisco, CA 94016" -243114,Wired Headphones,1,11.99,08/05/19 17:04,"134 14th St, New York City, NY 10001" -243115,34in Ultrawide Monitor,1,379.99,08/23/19 12:04,"65 West St, San Francisco, CA 94016" -243116,AA Batteries (4-pack),1,3.84,08/05/19 00:11,"181 Washington St, San Francisco, CA 94016" -243117,27in FHD Monitor,2,149.99,08/29/19 10:59,"233 Forest St, Seattle, WA 98101" -243118,Lightning Charging Cable,1,14.95,08/17/19 15:54,"549 6th St, Portland, OR 97035" -243119,AA Batteries (4-pack),2,3.84,08/30/19 01:25,"166 9th St, Seattle, WA 98101" -243120,AA Batteries (4-pack),1,3.84,08/25/19 16:35,"960 Dogwood St, Los Angeles, CA 90001" -243121,AAA Batteries (4-pack),2,2.99,08/17/19 12:15,"364 North St, Dallas, TX 75001" -243122,34in Ultrawide Monitor,1,379.99,08/20/19 13:51,"135 Chestnut St, Los Angeles, CA 90001" -243123,Lightning Charging Cable,2,14.95,08/23/19 11:08,"393 4th St, Los Angeles, CA 90001" -243124,Bose SoundSport Headphones,1,99.99,08/21/19 07:15,"758 11th St, San Francisco, CA 94016" -243125,Lightning Charging Cable,1,14.95,08/11/19 18:22,"492 Hill St, Los Angeles, CA 90001" -243126,Wired Headphones,1,11.99,08/07/19 23:46,"373 River St, San Francisco, CA 94016" -243127,AA Batteries (4-pack),1,3.84,08/25/19 12:49,"341 13th St, New York City, NY 10001" -243128,USB-C Charging Cable,2,11.95,08/04/19 13:21,"627 Cherry St, San Francisco, CA 94016" -243129,27in FHD Monitor,1,149.99,08/19/19 13:13,"228 Hickory St, New York City, NY 10001" -243130,Lightning Charging Cable,1,14.95,08/31/19 22:28,"636 Jefferson St, New York City, NY 10001" -243131,Lightning Charging Cable,1,14.95,08/08/19 14:36,"370 Forest St, New York City, NY 10001" -243132,Lightning Charging Cable,1,14.95,08/17/19 14:06,"470 Hickory St, Los Angeles, CA 90001" -243133,Wired Headphones,2,11.99,08/10/19 22:28,"249 6th St, San Francisco, CA 94016" -243134,AA Batteries (4-pack),1,3.84,08/04/19 16:23,"855 Johnson St, Boston, MA 02215" -243134,Google Phone,1,600,08/04/19 16:23,"855 Johnson St, Boston, MA 02215" -243135,ThinkPad Laptop,1,999.99,08/26/19 10:22,"670 8th St, Austin, TX 73301" -243135,USB-C Charging Cable,1,11.95,08/26/19 10:22,"670 8th St, Austin, TX 73301" -243136,Macbook Pro Laptop,1,1700,08/04/19 22:43,"106 Lake St, San Francisco, CA 94016" -243137,Lightning Charging Cable,1,14.95,08/02/19 23:01,"336 Jackson St, Los Angeles, CA 90001" -243137,34in Ultrawide Monitor,1,379.99,08/02/19 23:01,"336 Jackson St, Los Angeles, CA 90001" -243138,Wired Headphones,1,11.99,08/18/19 16:58,"94 Jackson St, Los Angeles, CA 90001" -243139,Google Phone,1,600,08/08/19 19:18,"631 Hill St, Los Angeles, CA 90001" -243140,27in 4K Gaming Monitor,1,389.99,08/02/19 19:19,"801 Meadow St, Boston, MA 02215" -243141,Lightning Charging Cable,1,14.95,08/04/19 21:20,"332 Hill St, Seattle, WA 98101" -243142,Wired Headphones,1,11.99,08/25/19 09:37,"527 Wilson St, New York City, NY 10001" -243143,Bose SoundSport Headphones,1,99.99,08/27/19 22:08,"510 Spruce St, Los Angeles, CA 90001" -243144,Wired Headphones,1,11.99,08/15/19 23:12,"147 Chestnut St, San Francisco, CA 94016" -243145,Apple Airpods Headphones,1,150,08/19/19 13:01,"910 Willow St, Seattle, WA 98101" -243146,Lightning Charging Cable,1,14.95,08/18/19 13:31,"340 West St, Austin, TX 73301" -243147,AA Batteries (4-pack),2,3.84,08/14/19 14:07,"690 West St, Seattle, WA 98101" -243148,Lightning Charging Cable,1,14.95,08/20/19 12:59,"752 Ridge St, San Francisco, CA 94016" -243149,AAA Batteries (4-pack),1,2.99,08/06/19 19:45,"247 6th St, New York City, NY 10001" -243150,Bose SoundSport Headphones,1,99.99,08/01/19 21:23,"642 Adams St, New York City, NY 10001" -243151,20in Monitor,1,109.99,08/14/19 15:10,"858 Jefferson St, Los Angeles, CA 90001" -243152,AAA Batteries (4-pack),1,2.99,08/11/19 20:42,"793 6th St, Atlanta, GA 30301" -243153,34in Ultrawide Monitor,1,379.99,08/08/19 14:41,"869 13th St, New York City, NY 10001" -243154,27in 4K Gaming Monitor,1,389.99,08/22/19 00:39,"592 9th St, Austin, TX 73301" -243155,Apple Airpods Headphones,1,150,08/18/19 16:13,"627 North St, Los Angeles, CA 90001" -243156,Bose SoundSport Headphones,1,99.99,08/18/19 17:07,"474 Jefferson St, Los Angeles, CA 90001" -243157,Apple Airpods Headphones,1,150,08/07/19 11:51,"239 Wilson St, San Francisco, CA 94016" -243158,Wired Headphones,1,11.99,08/15/19 16:10,"228 Johnson St, Los Angeles, CA 90001" -243159,Apple Airpods Headphones,1,150,08/06/19 09:18,"439 Walnut St, Los Angeles, CA 90001" -243160,Apple Airpods Headphones,1,150,08/26/19 22:40,"10 Chestnut St, San Francisco, CA 94016" -243161,Lightning Charging Cable,1,14.95,08/27/19 18:08,"985 14th St, New York City, NY 10001" -243162,ThinkPad Laptop,1,999.99,08/07/19 11:17,"75 Pine St, New York City, NY 10001" -243163,Wired Headphones,1,11.99,08/14/19 17:24,"978 Jackson St, New York City, NY 10001" -243164,Wired Headphones,1,11.99,08/16/19 18:56,"195 6th St, Los Angeles, CA 90001" -243165,Bose SoundSport Headphones,1,99.99,08/25/19 22:26,"601 Hill St, San Francisco, CA 94016" -243166,34in Ultrawide Monitor,1,379.99,08/26/19 09:48,"299 Forest St, San Francisco, CA 94016" -243166,Flatscreen TV,1,300,08/26/19 09:48,"299 Forest St, San Francisco, CA 94016" -243167,Macbook Pro Laptop,1,1700,08/30/19 14:57,"96 13th St, Atlanta, GA 30301" -243168,AA Batteries (4-pack),1,3.84,08/09/19 21:41,"853 Elm St, Los Angeles, CA 90001" -243169,27in 4K Gaming Monitor,1,389.99,08/14/19 15:49,"739 6th St, Dallas, TX 75001" -243170,Bose SoundSport Headphones,1,99.99,08/13/19 21:08,"626 Walnut St, San Francisco, CA 94016" -243171,Lightning Charging Cable,1,14.95,08/20/19 07:21,"519 Madison St, San Francisco, CA 94016" -243171,USB-C Charging Cable,1,11.95,08/20/19 07:21,"519 Madison St, San Francisco, CA 94016" -243172,USB-C Charging Cable,1,11.95,08/16/19 22:23,"250 Lakeview St, Boston, MA 02215" -243173,Macbook Pro Laptop,1,1700,08/19/19 23:43,"810 Washington St, Dallas, TX 75001" -243174,Lightning Charging Cable,1,14.95,08/27/19 06:38,"994 Walnut St, Portland, OR 97035" -243175,iPhone,1,700,08/26/19 16:48,"122 Hill St, Los Angeles, CA 90001" -243176,Apple Airpods Headphones,1,150,08/15/19 09:58,"139 River St, New York City, NY 10001" -,,,,, -243177,Apple Airpods Headphones,1,150,08/31/19 16:36,"779 Main St, Los Angeles, CA 90001" -243178,AA Batteries (4-pack),1,3.84,08/31/19 16:29,"578 Center St, Dallas, TX 75001" -243179,34in Ultrawide Monitor,1,379.99,08/08/19 07:34,"602 Forest St, New York City, NY 10001" -243180,Lightning Charging Cable,1,14.95,08/26/19 20:19,"921 Forest St, Los Angeles, CA 90001" -243181,USB-C Charging Cable,1,11.95,08/09/19 14:28,"945 Hill St, Boston, MA 02215" -243182,Wired Headphones,1,11.99,08/14/19 17:38,"511 Jefferson St, Los Angeles, CA 90001" -243183,USB-C Charging Cable,1,11.95,08/13/19 13:21,"499 Walnut St, New York City, NY 10001" -243184,iPhone,1,700,08/17/19 13:37,"191 Forest St, Portland, OR 97035" -243184,Lightning Charging Cable,1,14.95,08/17/19 13:37,"191 Forest St, Portland, OR 97035" -243185,20in Monitor,1,109.99,08/29/19 14:40,"224 8th St, New York City, NY 10001" -243186,AA Batteries (4-pack),1,3.84,08/08/19 13:19,"17 Hickory St, Atlanta, GA 30301" -243187,USB-C Charging Cable,1,11.95,08/08/19 17:47,"975 South St, Los Angeles, CA 90001" -243188,Apple Airpods Headphones,1,150,08/25/19 11:13,"578 7th St, Los Angeles, CA 90001" -243189,Bose SoundSport Headphones,1,99.99,08/15/19 13:01,"257 5th St, Atlanta, GA 30301" -243190,AAA Batteries (4-pack),1,2.99,08/09/19 05:49,"780 Highland St, New York City, NY 10001" -243191,AA Batteries (4-pack),1,3.84,08/18/19 09:43,"190 Cherry St, Dallas, TX 75001" -243192,AAA Batteries (4-pack),1,2.99,08/31/19 11:39,"898 8th St, Los Angeles, CA 90001" -243193,34in Ultrawide Monitor,1,379.99,08/13/19 18:36,"431 13th St, San Francisco, CA 94016" -243194,Wired Headphones,1,11.99,08/12/19 13:02,"905 Walnut St, New York City, NY 10001" -243195,Apple Airpods Headphones,1,150,08/16/19 20:03,"690 2nd St, Los Angeles, CA 90001" -243196,AAA Batteries (4-pack),1,2.99,08/03/19 17:48,"230 12th St, Los Angeles, CA 90001" -243197,34in Ultrawide Monitor,1,379.99,08/06/19 21:15,"738 12th St, Portland, OR 97035" -243198,Bose SoundSport Headphones,1,99.99,08/31/19 09:29,"359 8th St, New York City, NY 10001" -243199,iPhone,1,700,08/21/19 22:34,"212 Cherry St, San Francisco, CA 94016" -243200,Wired Headphones,1,11.99,08/13/19 16:38,"569 Elm St, New York City, NY 10001" -243201,Wired Headphones,1,11.99,08/05/19 11:20,"351 4th St, San Francisco, CA 94016" -243202,Google Phone,1,600,08/17/19 23:58,"412 6th St, New York City, NY 10001" -243202,Wired Headphones,1,11.99,08/17/19 23:58,"412 6th St, New York City, NY 10001" -243203,AA Batteries (4-pack),1,3.84,08/31/19 21:12,"292 Lake St, Los Angeles, CA 90001" -243204,Lightning Charging Cable,1,14.95,08/31/19 22:38,"100 11th St, San Francisco, CA 94016" -243205,USB-C Charging Cable,1,11.95,08/06/19 08:39,"278 12th St, New York City, NY 10001" -243206,USB-C Charging Cable,1,11.95,08/13/19 23:38,"214 Meadow St, New York City, NY 10001" -243207,USB-C Charging Cable,2,11.95,08/29/19 21:31,"975 4th St, New York City, NY 10001" -243208,Bose SoundSport Headphones,1,99.99,08/15/19 23:36,"950 North St, San Francisco, CA 94016" -243209,Apple Airpods Headphones,1,150,08/24/19 13:43,"468 Highland St, San Francisco, CA 94016" -243210,USB-C Charging Cable,1,11.95,08/31/19 10:19,"105 12th St, Atlanta, GA 30301" -243211,Bose SoundSport Headphones,1,99.99,08/17/19 15:06,"716 Ridge St, San Francisco, CA 94016" -243212,AA Batteries (4-pack),1,3.84,08/19/19 22:32,"829 Johnson St, San Francisco, CA 94016" -243213,Bose SoundSport Headphones,1,99.99,08/12/19 12:19,"360 Ridge St, New York City, NY 10001" -243214,Wired Headphones,1,11.99,08/16/19 18:24,"893 Lake St, New York City, NY 10001" -243215,Lightning Charging Cable,1,14.95,08/14/19 09:11,"876 5th St, Los Angeles, CA 90001" -243216,AAA Batteries (4-pack),3,2.99,08/30/19 16:46,"145 7th St, San Francisco, CA 94016" -243217,Wired Headphones,1,11.99,08/24/19 22:05,"432 4th St, Los Angeles, CA 90001" -243218,Macbook Pro Laptop,1,1700,08/28/19 11:13,"286 Ridge St, Austin, TX 73301" -243219,AA Batteries (4-pack),1,3.84,08/21/19 23:47,"6 11th St, Austin, TX 73301" -243219,AA Batteries (4-pack),2,3.84,08/21/19 23:47,"6 11th St, Austin, TX 73301" -243220,27in FHD Monitor,1,149.99,08/10/19 16:26,"673 8th St, San Francisco, CA 94016" -243221,ThinkPad Laptop,1,999.99,08/23/19 10:57,"721 Hickory St, Dallas, TX 75001" -243222,Wired Headphones,1,11.99,08/27/19 19:53,"824 Lakeview St, Boston, MA 02215" -243223,Google Phone,1,600,08/26/19 15:25,"610 8th St, Dallas, TX 75001" -243224,Bose SoundSport Headphones,1,99.99,08/29/19 12:29,"939 Lakeview St, Dallas, TX 75001" -243225,AA Batteries (4-pack),1,3.84,08/11/19 08:03,"414 4th St, New York City, NY 10001" -243226,Macbook Pro Laptop,1,1700,08/20/19 20:17,"878 Adams St, Portland, ME 04101" -243227,AA Batteries (4-pack),1,3.84,08/29/19 22:01,"698 8th St, Boston, MA 02215" -243228,Bose SoundSport Headphones,1,99.99,08/08/19 11:35,"578 10th St, San Francisco, CA 94016" -243229,USB-C Charging Cable,1,11.95,08/21/19 21:53,"117 7th St, New York City, NY 10001" -243230,USB-C Charging Cable,1,11.95,08/06/19 20:31,"569 12th St, San Francisco, CA 94016" -243231,20in Monitor,1,109.99,08/13/19 23:40,"150 West St, Boston, MA 02215" -243232,Apple Airpods Headphones,1,150,08/01/19 11:59,"8 Jefferson St, Atlanta, GA 30301" -243233,20in Monitor,1,109.99,08/24/19 19:14,"655 Maple St, New York City, NY 10001" -243234,Wired Headphones,1,11.99,08/01/19 18:22,"726 2nd St, Austin, TX 73301" -243235,AAA Batteries (4-pack),2,2.99,08/22/19 15:05,"499 Ridge St, Austin, TX 73301" -243236,USB-C Charging Cable,1,11.95,08/22/19 14:29,"492 8th St, San Francisco, CA 94016" -243237,Lightning Charging Cable,2,14.95,08/23/19 01:03,"870 Madison St, Seattle, WA 98101" -243238,Wired Headphones,1,11.99,08/26/19 21:35,"494 14th St, San Francisco, CA 94016" -243239,Apple Airpods Headphones,1,150,08/19/19 20:07,"476 13th St, San Francisco, CA 94016" -243240,Bose SoundSport Headphones,1,99.99,08/03/19 21:42,"335 Lake St, Boston, MA 02215" -243241,iPhone,1,700,08/27/19 15:49,"329 Walnut St, Atlanta, GA 30301" -243242,USB-C Charging Cable,2,11.95,08/31/19 17:48,"886 West St, Portland, OR 97035" -243243,Bose SoundSport Headphones,2,99.99,08/28/19 21:23,"520 Washington St, New York City, NY 10001" -243243,AAA Batteries (4-pack),1,2.99,08/28/19 21:23,"520 Washington St, New York City, NY 10001" -243244,AA Batteries (4-pack),1,3.84,08/28/19 18:58,"933 Lakeview St, Los Angeles, CA 90001" -243245,27in FHD Monitor,1,149.99,08/05/19 15:34,"436 Cedar St, Dallas, TX 75001" -243246,Apple Airpods Headphones,1,150,08/16/19 18:16,"436 Jackson St, San Francisco, CA 94016" -243247,AA Batteries (4-pack),2,3.84,08/01/19 21:44,"684 Dogwood St, Dallas, TX 75001" -243248,AA Batteries (4-pack),2,3.84,08/01/19 16:40,"666 2nd St, Atlanta, GA 30301" -243249,Lightning Charging Cable,1,14.95,08/26/19 21:46,"160 Hickory St, Boston, MA 02215" -243250,Lightning Charging Cable,1,14.95,08/02/19 10:55,"354 Washington St, New York City, NY 10001" -243251,AAA Batteries (4-pack),1,2.99,08/29/19 15:26,"889 Main St, Los Angeles, CA 90001" -243252,Wired Headphones,1,11.99,08/22/19 23:06,"53 Hickory St, New York City, NY 10001" -243253,AAA Batteries (4-pack),2,2.99,08/29/19 17:05,"354 7th St, Los Angeles, CA 90001" -243254,Wired Headphones,1,11.99,08/27/19 10:04,"428 4th St, San Francisco, CA 94016" -243255,Vareebadd Phone,1,400,08/23/19 11:43,"79 Spruce St, San Francisco, CA 94016" -243256,Macbook Pro Laptop,1,1700,08/07/19 21:46,"254 Church St, San Francisco, CA 94016" -243257,AAA Batteries (4-pack),1,2.99,08/26/19 17:12,"576 Madison St, Seattle, WA 98101" -243258,iPhone,1,700,08/19/19 18:14,"2 Maple St, Los Angeles, CA 90001" -243259,Apple Airpods Headphones,1,150,08/17/19 09:35,"947 Elm St, Seattle, WA 98101" -243260,AAA Batteries (4-pack),1,2.99,08/03/19 09:08,"589 Forest St, Atlanta, GA 30301" -243261,20in Monitor,1,109.99,08/14/19 15:57,"125 Pine St, New York City, NY 10001" -243262,USB-C Charging Cable,1,11.95,08/14/19 22:23,"322 Jackson St, San Francisco, CA 94016" -243263,27in FHD Monitor,1,149.99,08/05/19 17:01,"215 Hickory St, Dallas, TX 75001" -243264,AAA Batteries (4-pack),1,2.99,08/15/19 19:56,"708 Meadow St, Austin, TX 73301" -243265,Wired Headphones,1,11.99,08/03/19 20:40,"169 12th St, New York City, NY 10001" -243266,Lightning Charging Cable,1,14.95,08/09/19 13:38,"774 Washington St, Los Angeles, CA 90001" -243267,iPhone,1,700,08/17/19 11:27,"379 Hill St, New York City, NY 10001" -243267,Wired Headphones,1,11.99,08/17/19 11:27,"379 Hill St, New York City, NY 10001" -243268,Apple Airpods Headphones,1,150,08/04/19 15:35,"166 14th St, Seattle, WA 98101" -243269,Macbook Pro Laptop,1,1700,08/20/19 19:40,"72 South St, Austin, TX 73301" -243270,AAA Batteries (4-pack),1,2.99,08/03/19 09:05,"654 Cedar St, Los Angeles, CA 90001" -243271,AA Batteries (4-pack),1,3.84,08/03/19 16:32,"885 Ridge St, Boston, MA 02215" -243272,AA Batteries (4-pack),1,3.84,08/07/19 11:52,"770 Walnut St, Boston, MA 02215" -243273,Lightning Charging Cable,1,14.95,08/27/19 15:02,"482 Forest St, San Francisco, CA 94016" -243274,LG Washing Machine,1,600.0,08/27/19 19:48,"386 6th St, Los Angeles, CA 90001" -243275,USB-C Charging Cable,1,11.95,08/14/19 18:03,"257 Pine St, Boston, MA 02215" -243276,Bose SoundSport Headphones,1,99.99,08/21/19 19:56,"315 7th St, San Francisco, CA 94016" -243277,ThinkPad Laptop,1,999.99,08/22/19 12:08,"276 Spruce St, Dallas, TX 75001" -243278,Lightning Charging Cable,1,14.95,08/25/19 17:19,"226 Sunset St, Dallas, TX 75001" -243279,Apple Airpods Headphones,1,150,08/02/19 12:05,"585 South St, Austin, TX 73301" -243280,Wired Headphones,1,11.99,08/19/19 19:04,"729 River St, San Francisco, CA 94016" -243281,Lightning Charging Cable,1,14.95,08/27/19 11:20,"895 Washington St, San Francisco, CA 94016" -243282,Lightning Charging Cable,1,14.95,08/14/19 12:02,"272 River St, Atlanta, GA 30301" -243283,Wired Headphones,1,11.99,08/31/19 21:06,"18 Main St, Los Angeles, CA 90001" -243284,Google Phone,1,600,08/17/19 18:30,"495 Walnut St, Los Angeles, CA 90001" -243285,AA Batteries (4-pack),1,3.84,08/08/19 20:42,"721 Willow St, Atlanta, GA 30301" -243286,Wired Headphones,1,11.99,08/16/19 14:50,"347 Cherry St, Boston, MA 02215" -243287,Apple Airpods Headphones,1,150,08/14/19 19:25,"514 River St, Los Angeles, CA 90001" -243288,27in 4K Gaming Monitor,1,389.99,08/24/19 13:29,"821 Chestnut St, Atlanta, GA 30301" -243289,34in Ultrawide Monitor,1,379.99,08/18/19 17:59,"304 South St, Portland, OR 97035" -243290,AAA Batteries (4-pack),1,2.99,08/31/19 20:41,"189 Ridge St, San Francisco, CA 94016" -243291,Flatscreen TV,1,300,08/19/19 12:35,"284 Main St, Los Angeles, CA 90001" -243292,AA Batteries (4-pack),2,3.84,08/07/19 16:40,"366 Johnson St, San Francisco, CA 94016" -243293,USB-C Charging Cable,1,11.95,08/04/19 19:15,"980 Willow St, Dallas, TX 75001" -243294,iPhone,1,700,08/02/19 17:47,"845 North St, New York City, NY 10001" -243295,USB-C Charging Cable,1,11.95,08/28/19 16:01,"15 Sunset St, Los Angeles, CA 90001" -243296,USB-C Charging Cable,1,11.95,08/15/19 21:14,"707 Lakeview St, New York City, NY 10001" -243297,ThinkPad Laptop,1,999.99,08/11/19 11:12,"684 7th St, Los Angeles, CA 90001" -243298,AAA Batteries (4-pack),3,2.99,08/08/19 12:02,"71 Dogwood St, New York City, NY 10001" -243299,USB-C Charging Cable,1,11.95,08/08/19 15:36,"656 Meadow St, Los Angeles, CA 90001" -243300,LG Washing Machine,1,600.0,08/16/19 18:57,"604 Ridge St, San Francisco, CA 94016" -243301,AA Batteries (4-pack),4,3.84,08/24/19 12:37,"654 Cherry St, Portland, OR 97035" -243302,USB-C Charging Cable,1,11.95,08/27/19 10:22,"150 Spruce St, Dallas, TX 75001" -243303,20in Monitor,1,109.99,08/28/19 08:56,"992 Cedar St, New York City, NY 10001" -243304,AA Batteries (4-pack),2,3.84,08/25/19 18:32,"716 Lake St, San Francisco, CA 94016" -243305,Vareebadd Phone,1,400,08/28/19 20:58,"401 Chestnut St, San Francisco, CA 94016" -243305,Bose SoundSport Headphones,1,99.99,08/28/19 20:58,"401 Chestnut St, San Francisco, CA 94016" -243306,Vareebadd Phone,1,400,08/07/19 13:56,"774 12th St, Atlanta, GA 30301" -243306,USB-C Charging Cable,1,11.95,08/07/19 13:56,"774 12th St, Atlanta, GA 30301" -243307,Apple Airpods Headphones,1,150,08/29/19 10:16,"47 11th St, San Francisco, CA 94016" -243308,Wired Headphones,1,11.99,08/24/19 13:10,"722 West St, New York City, NY 10001" -243309,ThinkPad Laptop,1,999.99,08/03/19 21:09,"40 Jackson St, Austin, TX 73301" -243310,27in 4K Gaming Monitor,1,389.99,08/26/19 16:52,"111 South St, Los Angeles, CA 90001" -243311,Lightning Charging Cable,1,14.95,08/09/19 14:59,"477 Hill St, New York City, NY 10001" -243312,iPhone,1,700,08/08/19 20:50,"756 Johnson St, Austin, TX 73301" -243313,Macbook Pro Laptop,1,1700,08/06/19 12:11,"420 5th St, Dallas, TX 75001" -243314,USB-C Charging Cable,1,11.95,08/24/19 23:29,"469 Cedar St, Seattle, WA 98101" -243315,Bose SoundSport Headphones,1,99.99,08/10/19 14:27,"312 Cherry St, Portland, OR 97035" -243316,USB-C Charging Cable,1,11.95,08/22/19 12:36,"112 Madison St, San Francisco, CA 94016" -243317,Lightning Charging Cable,1,14.95,08/27/19 19:27,"187 Willow St, Seattle, WA 98101" -243318,AAA Batteries (4-pack),2,2.99,08/07/19 18:18,"685 Washington St, Portland, OR 97035" -243319,iPhone,1,700,08/06/19 13:50,"114 Ridge St, San Francisco, CA 94016" -243320,34in Ultrawide Monitor,1,379.99,08/15/19 07:09,"29 Main St, Boston, MA 02215" -243321,AAA Batteries (4-pack),1,2.99,08/05/19 19:44,"182 7th St, Austin, TX 73301" -243322,Wired Headphones,1,11.99,08/11/19 19:38,"48 4th St, Portland, OR 97035" -243323,27in FHD Monitor,1,149.99,08/18/19 13:05,"976 6th St, Seattle, WA 98101" -243324,AAA Batteries (4-pack),1,2.99,08/16/19 11:37,"330 Walnut St, Los Angeles, CA 90001" -243325,Apple Airpods Headphones,1,150,08/07/19 12:22,"845 7th St, Seattle, WA 98101" -243326,Bose SoundSport Headphones,1,99.99,08/28/19 10:24,"861 2nd St, Los Angeles, CA 90001" -243327,AAA Batteries (4-pack),1,2.99,08/28/19 14:49,"727 Jefferson St, New York City, NY 10001" -243328,ThinkPad Laptop,1,999.99,08/21/19 10:36,"746 Main St, San Francisco, CA 94016" -243329,Apple Airpods Headphones,1,150,08/13/19 17:06,"468 Cherry St, Dallas, TX 75001" -243330,Apple Airpods Headphones,2,150,08/16/19 20:51,"60 9th St, Los Angeles, CA 90001" -243331,AA Batteries (4-pack),1,3.84,08/28/19 03:25,"724 Jackson St, Austin, TX 73301" -243332,AAA Batteries (4-pack),1,2.99,08/17/19 10:56,"593 Meadow St, San Francisco, CA 94016" -243332,Apple Airpods Headphones,1,150,08/17/19 10:56,"593 Meadow St, San Francisco, CA 94016" -243333,27in 4K Gaming Monitor,1,389.99,08/08/19 19:25,"172 2nd St, San Francisco, CA 94016" -243334,AAA Batteries (4-pack),1,2.99,08/12/19 23:25,"511 Highland St, Seattle, WA 98101" -243335,Google Phone,1,600,08/02/19 22:02,"162 Cedar St, Los Angeles, CA 90001" -243336,Lightning Charging Cable,1,14.95,08/02/19 21:13,"295 Maple St, San Francisco, CA 94016" -243337,34in Ultrawide Monitor,1,379.99,08/30/19 21:45,"885 5th St, Los Angeles, CA 90001" -243338,LG Dryer,1,600.0,08/28/19 09:53,"421 Willow St, Los Angeles, CA 90001" -243339,Bose SoundSport Headphones,1,99.99,08/05/19 18:00,"710 9th St, Seattle, WA 98101" -243340,34in Ultrawide Monitor,1,379.99,08/29/19 12:01,"842 South St, Seattle, WA 98101" -243341,USB-C Charging Cable,1,11.95,08/12/19 10:21,"477 Cherry St, New York City, NY 10001" -243342,AAA Batteries (4-pack),1,2.99,08/16/19 09:32,"984 North St, Portland, OR 97035" -243342,27in FHD Monitor,1,149.99,08/16/19 09:32,"984 North St, Portland, OR 97035" -243343,Bose SoundSport Headphones,1,99.99,08/28/19 23:20,"871 Park St, San Francisco, CA 94016" -243344,20in Monitor,1,109.99,08/18/19 14:22,"640 Main St, Seattle, WA 98101" -243345,AA Batteries (4-pack),2,3.84,08/22/19 19:52,"82 Dogwood St, Portland, OR 97035" -243346,Lightning Charging Cable,1,14.95,08/02/19 14:01,"299 1st St, Los Angeles, CA 90001" -243347,Bose SoundSport Headphones,1,99.99,08/29/19 00:58,"910 Lake St, San Francisco, CA 94016" -243348,AAA Batteries (4-pack),1,2.99,08/10/19 13:40,"160 Willow St, Seattle, WA 98101" -243349,Macbook Pro Laptop,1,1700,08/05/19 10:32,"106 Lincoln St, Los Angeles, CA 90001" -243350,34in Ultrawide Monitor,1,379.99,08/25/19 09:55,"986 Elm St, San Francisco, CA 94016" -243351,Bose SoundSport Headphones,1,99.99,08/02/19 12:45,"727 Church St, San Francisco, CA 94016" -243352,Wired Headphones,1,11.99,08/26/19 16:20,"910 Pine St, San Francisco, CA 94016" -243353,Bose SoundSport Headphones,1,99.99,08/28/19 17:32,"728 Lincoln St, Los Angeles, CA 90001" -243354,AA Batteries (4-pack),1,3.84,08/14/19 18:23,"291 Adams St, San Francisco, CA 94016" -243355,AA Batteries (4-pack),1,3.84,08/15/19 15:49,"796 2nd St, Austin, TX 73301" -243356,Bose SoundSport Headphones,1,99.99,08/08/19 09:29,"138 Jefferson St, Los Angeles, CA 90001" -243357,USB-C Charging Cable,1,11.95,08/22/19 20:20,"604 West St, San Francisco, CA 94016" -243358,iPhone,1,700,08/24/19 14:23,"535 Willow St, Portland, OR 97035" -243359,Lightning Charging Cable,1,14.95,08/04/19 02:20,"760 Park St, Los Angeles, CA 90001" -243360,Lightning Charging Cable,1,14.95,08/22/19 12:20,"597 Maple St, Atlanta, GA 30301" -243361,USB-C Charging Cable,1,11.95,08/10/19 17:45,"926 Elm St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -243362,Macbook Pro Laptop,1,1700,08/14/19 13:29,"509 Jefferson St, New York City, NY 10001" -243363,Apple Airpods Headphones,1,150,08/06/19 11:05,"70 13th St, Los Angeles, CA 90001" -243364,USB-C Charging Cable,1,11.95,08/07/19 20:58,"411 Hill St, San Francisco, CA 94016" -243365,Lightning Charging Cable,1,14.95,08/27/19 11:53,"621 Chestnut St, Austin, TX 73301" -243366,Bose SoundSport Headphones,1,99.99,08/08/19 11:37,"41 Jackson St, San Francisco, CA 94016" -243367,Wired Headphones,1,11.99,08/06/19 00:05,"571 Washington St, New York City, NY 10001" -243368,Wired Headphones,1,11.99,08/01/19 10:23,"970 Madison St, San Francisco, CA 94016" -243369,iPhone,1,700,08/31/19 16:31,"815 Forest St, San Francisco, CA 94016" -243370,Apple Airpods Headphones,1,150,08/04/19 20:24,"831 4th St, San Francisco, CA 94016" -243371,Apple Airpods Headphones,1,150,08/10/19 13:01,"964 11th St, Los Angeles, CA 90001" -243372,USB-C Charging Cable,1,11.95,08/25/19 08:16,"339 Chestnut St, Portland, ME 04101" -243373,AAA Batteries (4-pack),1,2.99,08/10/19 18:34,"424 1st St, Los Angeles, CA 90001" -243374,USB-C Charging Cable,1,11.95,08/01/19 09:03,"913 Jefferson St, New York City, NY 10001" -243375,27in 4K Gaming Monitor,1,389.99,08/25/19 13:14,"772 Sunset St, Portland, OR 97035" -243376,USB-C Charging Cable,1,11.95,08/27/19 02:20,"170 Wilson St, Dallas, TX 75001" -243377,Bose SoundSport Headphones,1,99.99,08/01/19 13:39,"280 Walnut St, San Francisco, CA 94016" -243378,USB-C Charging Cable,1,11.95,08/08/19 15:04,"305 4th St, Los Angeles, CA 90001" -243379,AAA Batteries (4-pack),1,2.99,08/06/19 14:59,"485 Elm St, Dallas, TX 75001" -243380,Apple Airpods Headphones,1,150,08/04/19 10:04,"585 Johnson St, Atlanta, GA 30301" -243381,AAA Batteries (4-pack),2,2.99,08/04/19 14:04,"959 Madison St, Seattle, WA 98101" -243382,USB-C Charging Cable,1,11.95,08/13/19 01:22,"277 Lincoln St, New York City, NY 10001" -243383,Wired Headphones,1,11.99,08/14/19 19:58,"885 Spruce St, San Francisco, CA 94016" -243384,AAA Batteries (4-pack),1,2.99,08/16/19 13:21,"835 Walnut St, Seattle, WA 98101" -243385,AAA Batteries (4-pack),1,2.99,08/06/19 09:32,"427 Main St, Portland, OR 97035" -243386,27in 4K Gaming Monitor,1,389.99,08/31/19 07:57,"207 North St, New York City, NY 10001" -243387,20in Monitor,1,109.99,08/07/19 22:20,"854 Chestnut St, Los Angeles, CA 90001" -243387,iPhone,1,700,08/07/19 22:20,"854 Chestnut St, Los Angeles, CA 90001" -243388,USB-C Charging Cable,1,11.95,08/18/19 20:41,"447 Washington St, San Francisco, CA 94016" -243389,Flatscreen TV,1,300,08/22/19 13:33,"298 Cherry St, Atlanta, GA 30301" -243390,ThinkPad Laptop,1,999.99,08/05/19 15:00,"844 6th St, San Francisco, CA 94016" -243391,USB-C Charging Cable,1,11.95,08/03/19 20:34,"488 7th St, Austin, TX 73301" -243392,Bose SoundSport Headphones,1,99.99,08/07/19 15:20,"412 Spruce St, San Francisco, CA 94016" -243393,AA Batteries (4-pack),1,3.84,08/06/19 13:39,"251 Center St, Boston, MA 02215" -243394,AAA Batteries (4-pack),1,2.99,08/28/19 10:50,"431 Adams St, Los Angeles, CA 90001" -243395,USB-C Charging Cable,1,11.95,08/01/19 15:12,"659 6th St, Seattle, WA 98101" -243396,27in 4K Gaming Monitor,1,389.99,08/15/19 18:03,"148 11th St, San Francisco, CA 94016" -243397,AAA Batteries (4-pack),3,2.99,08/18/19 20:53,"16 Church St, Los Angeles, CA 90001" -243398,Apple Airpods Headphones,1,150,08/31/19 15:04,"240 Lakeview St, Dallas, TX 75001" -243399,Apple Airpods Headphones,1,150,08/05/19 21:32,"348 11th St, New York City, NY 10001" -243400,AA Batteries (4-pack),2,3.84,08/20/19 15:49,"27 4th St, Atlanta, GA 30301" -243401,AA Batteries (4-pack),1,3.84,08/31/19 18:34,"412 10th St, Portland, OR 97035" -243402,AAA Batteries (4-pack),1,2.99,08/02/19 12:24,"492 West St, Seattle, WA 98101" -243403,AAA Batteries (4-pack),3,2.99,08/26/19 18:44,"355 Hickory St, Boston, MA 02215" -243404,AAA Batteries (4-pack),1,2.99,08/22/19 12:57,"234 2nd St, Los Angeles, CA 90001" -243405,USB-C Charging Cable,1,11.95,08/11/19 13:41,"88 Spruce St, Seattle, WA 98101" -243406,ThinkPad Laptop,1,999.99,08/05/19 21:15,"514 5th St, San Francisco, CA 94016" -243407,AAA Batteries (4-pack),1,2.99,08/27/19 11:54,"457 South St, Austin, TX 73301" -243408,AAA Batteries (4-pack),1,2.99,08/01/19 22:36,"404 Madison St, San Francisco, CA 94016" -243409,AAA Batteries (4-pack),2,2.99,08/29/19 16:39,"815 10th St, Austin, TX 73301" -243410,Lightning Charging Cable,1,14.95,08/07/19 01:27,"114 1st St, Boston, MA 02215" -243411,AAA Batteries (4-pack),1,2.99,08/11/19 18:54,"256 6th St, Boston, MA 02215" -243412,27in 4K Gaming Monitor,1,389.99,08/01/19 20:16,"998 11th St, Dallas, TX 75001" -243413,AA Batteries (4-pack),1,3.84,08/15/19 09:27,"435 Hickory St, Atlanta, GA 30301" -243414,USB-C Charging Cable,1,11.95,08/23/19 11:17,"518 Jackson St, Los Angeles, CA 90001" -243415,34in Ultrawide Monitor,1,379.99,08/26/19 23:20,"558 4th St, Dallas, TX 75001" -243416,Wired Headphones,1,11.99,08/20/19 08:48,"47 Washington St, New York City, NY 10001" -243417,27in 4K Gaming Monitor,1,389.99,08/23/19 20:59,"99 10th St, New York City, NY 10001" -243418,Lightning Charging Cable,1,14.95,08/19/19 20:50,"811 13th St, San Francisco, CA 94016" -243419,Lightning Charging Cable,1,14.95,08/24/19 17:25,"522 Lake St, Los Angeles, CA 90001" -243420,Wired Headphones,1,11.99,08/22/19 14:35,"871 Ridge St, Atlanta, GA 30301" -243420,Lightning Charging Cable,1,14.95,08/22/19 14:35,"871 Ridge St, Atlanta, GA 30301" -243421,AA Batteries (4-pack),1,3.84,08/04/19 12:13,"44 South St, Portland, OR 97035" -243422,USB-C Charging Cable,1,11.95,08/08/19 11:56,"341 Maple St, Boston, MA 02215" -243423,AA Batteries (4-pack),1,3.84,08/18/19 22:54,"507 7th St, Dallas, TX 75001" -243424,27in 4K Gaming Monitor,1,389.99,08/10/19 23:16,"680 Main St, Los Angeles, CA 90001" -243425,AA Batteries (4-pack),1,3.84,08/10/19 18:08,"587 Highland St, Boston, MA 02215" -243426,AAA Batteries (4-pack),1,2.99,08/01/19 23:25,"65 Hill St, Boston, MA 02215" -243427,Apple Airpods Headphones,1,150,08/20/19 01:45,"346 Park St, Seattle, WA 98101" -243428,Apple Airpods Headphones,1,150,08/14/19 17:32,"351 8th St, San Francisco, CA 94016" -243429,AA Batteries (4-pack),4,3.84,08/17/19 12:40,"566 Pine St, Seattle, WA 98101" -243430,LG Dryer,1,600.0,08/17/19 07:31,"20 12th St, Dallas, TX 75001" -243431,Vareebadd Phone,1,400,08/29/19 12:43,"177 Forest St, Los Angeles, CA 90001" -243432,Google Phone,1,600,08/26/19 11:46,"444 10th St, Atlanta, GA 30301" -243432,USB-C Charging Cable,1,11.95,08/26/19 11:46,"444 10th St, Atlanta, GA 30301" -243433,USB-C Charging Cable,1,11.95,08/07/19 12:16,"264 Spruce St, Atlanta, GA 30301" -243434,Apple Airpods Headphones,1,150,08/25/19 21:03,"74 Meadow St, Boston, MA 02215" -243435,Lightning Charging Cable,1,14.95,08/30/19 18:34,"459 Park St, San Francisco, CA 94016" -243436,Wired Headphones,2,11.99,08/15/19 16:45,"167 Chestnut St, Dallas, TX 75001" -243437,27in 4K Gaming Monitor,1,389.99,08/23/19 13:30,"393 North St, Seattle, WA 98101" -243438,ThinkPad Laptop,1,999.99,08/02/19 14:07,"486 Jefferson St, Austin, TX 73301" -243439,27in 4K Gaming Monitor,1,389.99,08/06/19 11:30,"760 Cherry St, San Francisco, CA 94016" -243440,Wired Headphones,1,11.99,08/17/19 20:50,"994 West St, San Francisco, CA 94016" -243441,Wired Headphones,1,11.99,08/02/19 11:24,"727 Hickory St, Boston, MA 02215" -243442,Flatscreen TV,1,300,08/29/19 14:35,"968 Maple St, New York City, NY 10001" -243443,Wired Headphones,1,11.99,08/26/19 15:30,"536 Hill St, Austin, TX 73301" -243444,Google Phone,1,600,08/25/19 09:30,"242 Main St, Seattle, WA 98101" -243444,USB-C Charging Cable,1,11.95,08/25/19 09:30,"242 Main St, Seattle, WA 98101" -243445,Bose SoundSport Headphones,1,99.99,08/29/19 18:39,"254 Lincoln St, San Francisco, CA 94016" -243446,AA Batteries (4-pack),1,3.84,08/16/19 14:45,"973 Hill St, Atlanta, GA 30301" -243447,Wired Headphones,1,11.99,08/31/19 19:54,"409 Lakeview St, Seattle, WA 98101" -243448,Bose SoundSport Headphones,1,99.99,08/28/19 09:45,"918 Cherry St, Seattle, WA 98101" -243449,Lightning Charging Cable,1,14.95,08/30/19 05:42,"455 2nd St, Portland, OR 97035" -243450,Bose SoundSport Headphones,1,99.99,08/20/19 21:05,"483 River St, San Francisco, CA 94016" -243450,Lightning Charging Cable,1,14.95,08/20/19 21:05,"483 River St, San Francisco, CA 94016" -243451,AA Batteries (4-pack),1,3.84,08/17/19 13:26,"547 7th St, Los Angeles, CA 90001" -243452,34in Ultrawide Monitor,1,379.99,08/15/19 10:51,"752 South St, Atlanta, GA 30301" -243453,AAA Batteries (4-pack),3,2.99,08/07/19 22:05,"730 Dogwood St, Los Angeles, CA 90001" -243454,Lightning Charging Cable,1,14.95,08/01/19 05:13,"50 9th St, Los Angeles, CA 90001" -243455,USB-C Charging Cable,2,11.95,08/26/19 13:21,"765 14th St, New York City, NY 10001" -243456,USB-C Charging Cable,1,11.95,08/06/19 11:51,"92 Forest St, Atlanta, GA 30301" -243457,27in FHD Monitor,1,149.99,08/28/19 11:35,"929 Lakeview St, Portland, OR 97035" -243458,27in FHD Monitor,1,149.99,08/12/19 23:42,"374 Center St, San Francisco, CA 94016" -243459,Apple Airpods Headphones,1,150,08/29/19 20:52,"65 Jackson St, Portland, OR 97035" -243460,iPhone,1,700,08/06/19 10:35,"845 Wilson St, Portland, OR 97035" -243461,Flatscreen TV,1,300,08/09/19 17:58,"481 9th St, San Francisco, CA 94016" -243462,AAA Batteries (4-pack),1,2.99,08/23/19 19:01,"819 Cedar St, New York City, NY 10001" -243463,AA Batteries (4-pack),1,3.84,08/02/19 13:29,"983 Jackson St, Atlanta, GA 30301" -243464,Wired Headphones,1,11.99,08/30/19 14:40,"967 Park St, Los Angeles, CA 90001" -243465,AAA Batteries (4-pack),1,2.99,08/18/19 15:41,"123 13th St, San Francisco, CA 94016" -243466,AA Batteries (4-pack),1,3.84,08/13/19 18:52,"573 7th St, San Francisco, CA 94016" -243467,AA Batteries (4-pack),1,3.84,08/18/19 23:16,"726 Johnson St, San Francisco, CA 94016" -243468,LG Washing Machine,1,600.0,08/04/19 14:32,"195 Dogwood St, New York City, NY 10001" -243469,AA Batteries (4-pack),1,3.84,08/03/19 10:02,"115 Forest St, Boston, MA 02215" -243470,iPhone,1,700,08/09/19 20:37,"165 9th St, San Francisco, CA 94016" -243471,Flatscreen TV,1,300,08/07/19 12:36,"815 Lincoln St, Atlanta, GA 30301" -243472,Flatscreen TV,1,300,08/12/19 11:27,"730 River St, Boston, MA 02215" -243473,AA Batteries (4-pack),1,3.84,08/05/19 00:19,"297 West St, San Francisco, CA 94016" -243474,Wired Headphones,1,11.99,08/04/19 07:59,"497 South St, Austin, TX 73301" -243475,Apple Airpods Headphones,1,150,08/29/19 01:39,"994 Meadow St, New York City, NY 10001" -243476,Lightning Charging Cable,1,14.95,08/23/19 19:20,"254 Willow St, Seattle, WA 98101" -243477,USB-C Charging Cable,1,11.95,08/09/19 22:41,"392 Willow St, Los Angeles, CA 90001" -243478,27in 4K Gaming Monitor,1,389.99,08/31/19 10:42,"439 4th St, New York City, NY 10001" -243479,20in Monitor,1,109.99,08/05/19 15:38,"988 Park St, Atlanta, GA 30301" -243480,Bose SoundSport Headphones,1,99.99,08/05/19 20:37,"609 2nd St, Portland, OR 97035" -243481,27in FHD Monitor,1,149.99,08/25/19 16:56,"880 4th St, New York City, NY 10001" -243482,AAA Batteries (4-pack),1,2.99,08/12/19 09:02,"17 Center St, San Francisco, CA 94016" -243483,Wired Headphones,1,11.99,08/23/19 11:42,"439 6th St, Los Angeles, CA 90001" -243484,AAA Batteries (4-pack),2,2.99,08/08/19 12:24,"547 Willow St, San Francisco, CA 94016" -243485,27in FHD Monitor,1,149.99,08/12/19 20:43,"90 Wilson St, Portland, ME 04101" -243486,AAA Batteries (4-pack),1,2.99,08/05/19 14:56,"476 4th St, New York City, NY 10001" -243487,USB-C Charging Cable,1,11.95,08/07/19 09:15,"648 Hickory St, Austin, TX 73301" -243488,iPhone,1,700,08/13/19 11:20,"530 Lincoln St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -243489,AA Batteries (4-pack),1,3.84,08/09/19 08:21,"642 Madison St, Los Angeles, CA 90001" -243490,Apple Airpods Headphones,1,150,08/14/19 20:11,"164 North St, San Francisco, CA 94016" -243491,27in FHD Monitor,1,149.99,08/19/19 09:07,"294 7th St, San Francisco, CA 94016" -243492,Lightning Charging Cable,1,14.95,08/04/19 09:08,"131 14th St, Los Angeles, CA 90001" -243493,AAA Batteries (4-pack),1,2.99,08/10/19 13:11,"170 Meadow St, San Francisco, CA 94016" -243494,Wired Headphones,1,11.99,08/23/19 12:59,"261 Dogwood St, San Francisco, CA 94016" -243495,AA Batteries (4-pack),1,3.84,08/27/19 16:53,"618 9th St, Atlanta, GA 30301" -243496,AA Batteries (4-pack),1,3.84,08/09/19 21:21,"381 Highland St, San Francisco, CA 94016" -243497,AA Batteries (4-pack),1,3.84,08/25/19 00:35,"457 Cedar St, Los Angeles, CA 90001" -243498,Lightning Charging Cable,1,14.95,08/09/19 11:55,"891 13th St, Los Angeles, CA 90001" -243499,Google Phone,1,600,08/27/19 14:39,"651 Center St, New York City, NY 10001" -243500,27in 4K Gaming Monitor,1,389.99,08/09/19 09:18,"816 Willow St, Los Angeles, CA 90001" -243501,Wired Headphones,1,11.99,08/15/19 11:02,"188 4th St, New York City, NY 10001" -243502,34in Ultrawide Monitor,1,379.99,08/19/19 18:46,"911 Lincoln St, San Francisco, CA 94016" -243503,Google Phone,1,600,08/21/19 21:06,"167 2nd St, Boston, MA 02215" -243503,Wired Headphones,1,11.99,08/21/19 21:06,"167 2nd St, Boston, MA 02215" -243504,USB-C Charging Cable,1,11.95,08/31/19 19:30,"483 Meadow St, Portland, OR 97035" -243505,AA Batteries (4-pack),1,3.84,08/30/19 13:09,"148 4th St, Los Angeles, CA 90001" -243506,Lightning Charging Cable,1,14.95,08/21/19 15:22,"592 Hill St, San Francisco, CA 94016" -243507,AA Batteries (4-pack),1,3.84,08/06/19 19:19,"820 7th St, New York City, NY 10001" -243507,Apple Airpods Headphones,1,150,08/06/19 19:19,"820 7th St, New York City, NY 10001" -243508,Apple Airpods Headphones,1,150,08/18/19 13:29,"566 14th St, Los Angeles, CA 90001" -243509,Apple Airpods Headphones,1,150,08/10/19 18:17,"987 Adams St, New York City, NY 10001" -243510,AA Batteries (4-pack),1,3.84,08/24/19 12:55,"534 Hickory St, San Francisco, CA 94016" -243511,Bose SoundSport Headphones,1,99.99,08/22/19 06:30,"343 Pine St, Atlanta, GA 30301" -243512,Bose SoundSport Headphones,1,99.99,08/05/19 18:41,"526 Chestnut St, Dallas, TX 75001" -243513,Google Phone,1,600,08/27/19 02:17,"462 2nd St, Dallas, TX 75001" -243514,AAA Batteries (4-pack),1,2.99,08/02/19 14:58,"161 North St, Los Angeles, CA 90001" -243515,Bose SoundSport Headphones,1,99.99,08/08/19 08:48,"893 2nd St, Dallas, TX 75001" -243516,AAA Batteries (4-pack),1,2.99,08/20/19 20:21,"656 Jackson St, Dallas, TX 75001" -243517,AA Batteries (4-pack),1,3.84,08/31/19 12:04,"916 Elm St, Dallas, TX 75001" -243517,Lightning Charging Cable,1,14.95,08/31/19 12:04,"916 Elm St, Dallas, TX 75001" -243518,AAA Batteries (4-pack),3,2.99,08/04/19 13:44,"336 8th St, Austin, TX 73301" -243519,AA Batteries (4-pack),2,3.84,08/09/19 14:57,"178 North St, Portland, ME 04101" -243520,USB-C Charging Cable,1,11.95,08/02/19 08:26,"885 Hill St, Dallas, TX 75001" -243521,Apple Airpods Headphones,1,150,08/03/19 19:10,"281 Cherry St, Dallas, TX 75001" -243522,Lightning Charging Cable,1,14.95,08/18/19 20:05,"889 Hill St, Portland, OR 97035" -243523,iPhone,1,700,08/07/19 20:45,"361 Lake St, New York City, NY 10001" -243523,Apple Airpods Headphones,1,150,08/07/19 20:45,"361 Lake St, New York City, NY 10001" -243524,USB-C Charging Cable,1,11.95,08/17/19 23:21,"126 Cedar St, New York City, NY 10001" -243525,20in Monitor,1,109.99,08/23/19 21:07,"556 13th St, Seattle, WA 98101" -243526,Bose SoundSport Headphones,1,99.99,08/07/19 10:46,"387 Wilson St, San Francisco, CA 94016" -243527,AA Batteries (4-pack),1,3.84,08/24/19 13:58,"644 4th St, San Francisco, CA 94016" -243528,Bose SoundSport Headphones,1,99.99,08/08/19 13:06,"723 Maple St, New York City, NY 10001" -243529,USB-C Charging Cable,2,11.95,08/26/19 08:10,"400 9th St, San Francisco, CA 94016" -243530,Vareebadd Phone,1,400,08/06/19 17:59,"292 Jefferson St, Atlanta, GA 30301" -243530,Bose SoundSport Headphones,1,99.99,08/06/19 17:59,"292 Jefferson St, Atlanta, GA 30301" -243531,USB-C Charging Cable,1,11.95,08/19/19 23:22,"832 10th St, Seattle, WA 98101" -243532,27in FHD Monitor,1,149.99,08/17/19 22:56,"104 Dogwood St, Austin, TX 73301" -243533,27in FHD Monitor,1,149.99,08/15/19 12:15,"638 1st St, Boston, MA 02215" -243534,Macbook Pro Laptop,1,1700,08/21/19 22:17,"197 Johnson St, San Francisco, CA 94016" -243535,AA Batteries (4-pack),1,3.84,08/31/19 19:35,"860 4th St, Dallas, TX 75001" -243536,AAA Batteries (4-pack),3,2.99,08/16/19 06:37,"303 Sunset St, Seattle, WA 98101" -243537,AA Batteries (4-pack),1,3.84,08/02/19 19:50,"718 Meadow St, Los Angeles, CA 90001" -243538,27in 4K Gaming Monitor,1,389.99,08/28/19 10:21,"320 8th St, Portland, ME 04101" -243539,Wired Headphones,1,11.99,08/26/19 10:02,"6 Meadow St, San Francisco, CA 94016" -243540,AAA Batteries (4-pack),1,2.99,08/21/19 22:03,"438 Jackson St, New York City, NY 10001" -243541,Wired Headphones,1,11.99,08/17/19 17:22,"500 Forest St, San Francisco, CA 94016" -243542,USB-C Charging Cable,1,11.95,08/19/19 20:20,"748 1st St, Austin, TX 73301" -243543,Wired Headphones,2,11.99,08/04/19 08:01,"103 4th St, Portland, ME 04101" -243544,27in 4K Gaming Monitor,1,389.99,08/08/19 05:58,"956 Church St, San Francisco, CA 94016" -243545,USB-C Charging Cable,1,11.95,08/23/19 15:02,"908 Jackson St, Los Angeles, CA 90001" -243546,ThinkPad Laptop,1,999.99,08/04/19 03:04,"680 Lakeview St, Los Angeles, CA 90001" -243547,Vareebadd Phone,1,400,08/03/19 09:40,"714 6th St, Seattle, WA 98101" -243547,Wired Headphones,2,11.99,08/03/19 09:40,"714 6th St, Seattle, WA 98101" -243548,Macbook Pro Laptop,1,1700,08/22/19 19:31,"91 North St, Dallas, TX 75001" -243549,Lightning Charging Cable,1,14.95,08/31/19 20:45,"502 Dogwood St, Los Angeles, CA 90001" -243550,AAA Batteries (4-pack),2,2.99,08/19/19 20:21,"431 Sunset St, Los Angeles, CA 90001" -243551,Lightning Charging Cable,1,14.95,08/23/19 13:21,"753 2nd St, San Francisco, CA 94016" -243552,Google Phone,1,600,08/22/19 10:03,"561 Elm St, New York City, NY 10001" -243553,Lightning Charging Cable,1,14.95,08/21/19 15:46,"443 River St, Dallas, TX 75001" -243554,USB-C Charging Cable,1,11.95,08/02/19 18:27,"495 Cedar St, Boston, MA 02215" -243555,LG Washing Machine,1,600.0,08/06/19 16:26,"294 Johnson St, Seattle, WA 98101" -243556,Lightning Charging Cable,1,14.95,08/04/19 18:24,"774 10th St, Seattle, WA 98101" -243557,USB-C Charging Cable,1,11.95,08/10/19 18:22,"873 2nd St, San Francisco, CA 94016" -243558,AAA Batteries (4-pack),1,2.99,08/05/19 11:11,"925 Cedar St, San Francisco, CA 94016" -243559,Lightning Charging Cable,1,14.95,08/03/19 11:49,"783 Wilson St, Austin, TX 73301" -243559,20in Monitor,1,109.99,08/03/19 11:49,"783 Wilson St, Austin, TX 73301" -243560,Flatscreen TV,1,300,08/22/19 21:42,"128 Johnson St, New York City, NY 10001" -243561,Lightning Charging Cable,1,14.95,08/20/19 10:01,"998 1st St, San Francisco, CA 94016" -243562,34in Ultrawide Monitor,1,379.99,08/10/19 16:30,"879 14th St, Boston, MA 02215" -243563,Lightning Charging Cable,1,14.95,08/24/19 15:30,"950 Ridge St, Atlanta, GA 30301" -243564,USB-C Charging Cable,1,11.95,08/17/19 12:55,"534 4th St, New York City, NY 10001" -243565,27in FHD Monitor,1,149.99,08/11/19 22:21,"168 Willow St, Boston, MA 02215" -243566,Apple Airpods Headphones,1,150,08/01/19 19:41,"160 12th St, Seattle, WA 98101" -243567,USB-C Charging Cable,1,11.95,08/15/19 12:34,"626 Johnson St, San Francisco, CA 94016" -243568,Lightning Charging Cable,1,14.95,08/18/19 14:37,"270 5th St, New York City, NY 10001" -243569,27in 4K Gaming Monitor,1,389.99,08/06/19 14:54,"512 Park St, Los Angeles, CA 90001" -243570,27in FHD Monitor,1,149.99,08/09/19 12:49,"185 Maple St, San Francisco, CA 94016" -243571,Lightning Charging Cable,1,14.95,08/26/19 10:28,"225 1st St, San Francisco, CA 94016" -243572,USB-C Charging Cable,1,11.95,08/24/19 20:48,"732 Lincoln St, San Francisco, CA 94016" -243573,27in 4K Gaming Monitor,1,389.99,08/12/19 15:02,"743 Lake St, Atlanta, GA 30301" -243574,Wired Headphones,1,11.99,08/26/19 23:09,"13 Church St, New York City, NY 10001" -243575,Apple Airpods Headphones,1,150,08/27/19 15:45,"148 Jackson St, New York City, NY 10001" -243576,Bose SoundSport Headphones,1,99.99,08/09/19 07:26,"726 Johnson St, San Francisco, CA 94016" -243577,Lightning Charging Cable,2,14.95,08/10/19 09:09,"597 Jefferson St, Los Angeles, CA 90001" -243578,USB-C Charging Cable,1,11.95,08/09/19 08:46,"895 Jefferson St, San Francisco, CA 94016" -243579,LG Dryer,1,600.0,08/06/19 19:38,"374 Meadow St, New York City, NY 10001" -243580,Flatscreen TV,1,300,08/11/19 20:56,"653 Willow St, Austin, TX 73301" -243581,Macbook Pro Laptop,1,1700,08/20/19 19:46,"84 11th St, Portland, OR 97035" -243582,iPhone,1,700,08/23/19 18:04,"794 1st St, Boston, MA 02215" -243582,Lightning Charging Cable,1,14.95,08/23/19 18:04,"794 1st St, Boston, MA 02215" -243583,AA Batteries (4-pack),1,3.84,08/26/19 20:15,"177 12th St, Los Angeles, CA 90001" -243584,Bose SoundSport Headphones,1,99.99,08/03/19 20:28,"729 Walnut St, San Francisco, CA 94016" -243585,LG Dryer,1,600.0,08/13/19 21:54,"320 Lincoln St, Los Angeles, CA 90001" -243586,USB-C Charging Cable,1,11.95,08/22/19 00:30,"92 14th St, San Francisco, CA 94016" -243587,Lightning Charging Cable,1,14.95,08/14/19 12:54,"621 South St, New York City, NY 10001" -243588,Lightning Charging Cable,1,14.95,08/31/19 09:37,"169 14th St, San Francisco, CA 94016" -243589,AAA Batteries (4-pack),2,2.99,08/07/19 17:33,"358 Maple St, San Francisco, CA 94016" -243590,27in 4K Gaming Monitor,1,389.99,08/08/19 17:15,"656 10th St, Austin, TX 73301" -243591,AAA Batteries (4-pack),1,2.99,08/17/19 14:07,"602 7th St, New York City, NY 10001" -243592,27in FHD Monitor,1,149.99,08/31/19 12:55,"25 Jackson St, New York City, NY 10001" -243593,AA Batteries (4-pack),1,3.84,08/10/19 09:25,"881 13th St, Los Angeles, CA 90001" -243594,AAA Batteries (4-pack),4,2.99,08/12/19 00:10,"635 Meadow St, San Francisco, CA 94016" -243595,Apple Airpods Headphones,1,150,08/05/19 20:34,"943 Chestnut St, San Francisco, CA 94016" -243596,Lightning Charging Cable,1,14.95,08/14/19 13:55,"511 2nd St, Austin, TX 73301" -243597,Bose SoundSport Headphones,1,99.99,08/10/19 12:10,"967 Willow St, Los Angeles, CA 90001" -243598,USB-C Charging Cable,1,11.95,08/12/19 07:29,"574 Center St, San Francisco, CA 94016" -243599,AAA Batteries (4-pack),2,2.99,08/21/19 14:46,"706 Center St, San Francisco, CA 94016" -243600,Bose SoundSport Headphones,1,99.99,08/23/19 22:06,"935 6th St, San Francisco, CA 94016" -243601,Apple Airpods Headphones,1,150,08/13/19 11:09,"96 Cherry St, Seattle, WA 98101" -243602,27in 4K Gaming Monitor,1,389.99,08/26/19 13:33,"852 Washington St, Atlanta, GA 30301" -243603,Macbook Pro Laptop,1,1700,08/09/19 12:39,"862 Wilson St, Austin, TX 73301" -243604,Lightning Charging Cable,1,14.95,08/06/19 08:58,"727 2nd St, New York City, NY 10001" -243605,LG Dryer,1,600.0,08/12/19 22:24,"288 Walnut St, Seattle, WA 98101" -243606,AA Batteries (4-pack),2,3.84,08/29/19 21:44,"908 Meadow St, Los Angeles, CA 90001" -243607,AAA Batteries (4-pack),1,2.99,08/16/19 11:08,"303 Sunset St, Seattle, WA 98101" -243608,27in FHD Monitor,1,149.99,08/14/19 07:25,"865 5th St, Los Angeles, CA 90001" -243609,Macbook Pro Laptop,1,1700,08/23/19 11:05,"908 Chestnut St, San Francisco, CA 94016" -243610,Google Phone,1,600,08/30/19 10:34,"253 Main St, Seattle, WA 98101" -243610,Wired Headphones,1,11.99,08/30/19 10:34,"253 Main St, Seattle, WA 98101" -243611,Lightning Charging Cable,1,14.95,08/29/19 08:29,"208 Meadow St, Los Angeles, CA 90001" -243612,Lightning Charging Cable,1,14.95,08/16/19 22:59,"989 Meadow St, Boston, MA 02215" -243613,34in Ultrawide Monitor,1,379.99,08/26/19 22:49,"108 Hill St, Atlanta, GA 30301" -243614,Wired Headphones,1,11.99,08/10/19 22:22,"364 Jefferson St, Boston, MA 02215" -243615,34in Ultrawide Monitor,1,379.99,08/29/19 21:16,"308 Hill St, Dallas, TX 75001" -243616,27in 4K Gaming Monitor,1,389.99,08/01/19 13:59,"920 Walnut St, San Francisco, CA 94016" -243617,Wired Headphones,1,11.99,08/03/19 09:17,"851 9th St, Boston, MA 02215" -243618,27in 4K Gaming Monitor,1,389.99,08/26/19 14:47,"223 Sunset St, Austin, TX 73301" -243619,USB-C Charging Cable,1,11.95,08/28/19 18:45,"836 Willow St, San Francisco, CA 94016" -243620,Apple Airpods Headphones,1,150,08/20/19 00:16,"381 Madison St, New York City, NY 10001" -243621,34in Ultrawide Monitor,1,379.99,08/18/19 19:11,"380 13th St, San Francisco, CA 94016" -243622,34in Ultrawide Monitor,1,379.99,08/09/19 11:55,"88 Hill St, San Francisco, CA 94016" -243623,Wired Headphones,1,11.99,08/13/19 22:54,"599 Highland St, Atlanta, GA 30301" -243624,27in FHD Monitor,1,149.99,08/02/19 13:47,"870 8th St, New York City, NY 10001" -243625,27in FHD Monitor,1,149.99,08/12/19 18:24,"824 Pine St, Portland, OR 97035" -243626,Lightning Charging Cable,1,14.95,08/29/19 23:20,"5 Jefferson St, Dallas, TX 75001" -243627,Lightning Charging Cable,1,14.95,08/02/19 14:55,"502 4th St, San Francisco, CA 94016" -243628,Apple Airpods Headphones,1,150,08/18/19 10:12,"721 Lincoln St, New York City, NY 10001" -243629,USB-C Charging Cable,3,11.95,08/06/19 14:31,"544 14th St, Seattle, WA 98101" -243630,Lightning Charging Cable,1,14.95,08/25/19 18:00,"924 5th St, Seattle, WA 98101" -243631,Wired Headphones,1,11.99,08/17/19 21:04,"222 North St, Austin, TX 73301" -243632,AA Batteries (4-pack),1,3.84,08/09/19 10:01,"180 Walnut St, Seattle, WA 98101" -243633,USB-C Charging Cable,1,11.95,08/02/19 07:37,"908 14th St, San Francisco, CA 94016" -243634,Wired Headphones,2,11.99,08/05/19 13:00,"588 Washington St, San Francisco, CA 94016" -243635,USB-C Charging Cable,1,11.95,08/25/19 00:05,"487 Washington St, Seattle, WA 98101" -243636,Vareebadd Phone,1,400,08/26/19 12:47,"188 Wilson St, Los Angeles, CA 90001" -243636,USB-C Charging Cable,1,11.95,08/26/19 12:47,"188 Wilson St, Los Angeles, CA 90001" -243637,Wired Headphones,1,11.99,08/19/19 10:34,"919 4th St, Dallas, TX 75001" -243638,AAA Batteries (4-pack),1,2.99,08/06/19 12:00,"628 River St, Portland, ME 04101" -243639,AAA Batteries (4-pack),1,2.99,08/02/19 16:08,"253 Highland St, Los Angeles, CA 90001" -243640,Wired Headphones,1,11.99,08/29/19 18:57,"380 Center St, Los Angeles, CA 90001" -243641,USB-C Charging Cable,1,11.95,08/12/19 07:35,"988 Lake St, Portland, OR 97035" -243642,Lightning Charging Cable,1,14.95,08/05/19 21:26,"250 11th St, Seattle, WA 98101" -243643,Lightning Charging Cable,2,14.95,08/20/19 12:29,"927 Lake St, Austin, TX 73301" -243644,Wired Headphones,1,11.99,08/25/19 06:29,"155 Chestnut St, San Francisco, CA 94016" -243645,USB-C Charging Cable,1,11.95,08/31/19 12:06,"529 Meadow St, New York City, NY 10001" -243646,iPhone,1,700,08/29/19 21:23,"386 River St, Dallas, TX 75001" -243647,Bose SoundSport Headphones,1,99.99,08/04/19 18:54,"605 Lake St, San Francisco, CA 94016" -243648,Apple Airpods Headphones,1,150,08/05/19 12:05,"933 Meadow St, Portland, OR 97035" -243649,Bose SoundSport Headphones,1,99.99,08/22/19 10:52,"564 Adams St, New York City, NY 10001" -243650,Lightning Charging Cable,1,14.95,08/24/19 16:07,"975 2nd St, San Francisco, CA 94016" -243651,Lightning Charging Cable,1,14.95,08/04/19 09:15,"529 8th St, Los Angeles, CA 90001" -243652,Bose SoundSport Headphones,1,99.99,08/03/19 17:40,"158 Johnson St, San Francisco, CA 94016" -243653,Lightning Charging Cable,1,14.95,08/09/19 08:37,"706 9th St, Atlanta, GA 30301" -243654,Apple Airpods Headphones,1,150,08/27/19 18:35,"408 Jackson St, Austin, TX 73301" -243655,USB-C Charging Cable,1,11.95,08/27/19 14:29,"695 4th St, New York City, NY 10001" -243656,Apple Airpods Headphones,1,150,08/08/19 12:02,"518 West St, Dallas, TX 75001" -243657,ThinkPad Laptop,1,999.99,08/03/19 18:19,"219 Johnson St, New York City, NY 10001" -243658,Wired Headphones,1,11.99,08/24/19 13:34,"837 Lincoln St, Los Angeles, CA 90001" -243659,AAA Batteries (4-pack),1,2.99,08/10/19 21:20,"635 Chestnut St, New York City, NY 10001" -243660,Lightning Charging Cable,1,14.95,08/28/19 23:02,"250 Wilson St, Boston, MA 02215" -243661,Apple Airpods Headphones,1,150,08/02/19 16:04,"219 Jefferson St, New York City, NY 10001" -243662,Apple Airpods Headphones,1,150,08/29/19 14:42,"628 9th St, San Francisco, CA 94016" -243663,Wired Headphones,1,11.99,08/23/19 14:58,"573 Adams St, Atlanta, GA 30301" -243664,Lightning Charging Cable,1,14.95,08/18/19 22:20,"238 West St, Los Angeles, CA 90001" -243665,Flatscreen TV,1,300,08/11/19 22:12,"477 Lakeview St, Portland, OR 97035" -243666,Vareebadd Phone,1,400,08/30/19 20:04,"593 Elm St, Seattle, WA 98101" -243666,Wired Headphones,1,11.99,08/30/19 20:04,"593 Elm St, Seattle, WA 98101" -243667,USB-C Charging Cable,1,11.95,09/01/19 00:55,"959 Center St, San Francisco, CA 94016" -243668,AA Batteries (4-pack),1,3.84,08/10/19 23:25,"22 Washington St, Los Angeles, CA 90001" -243669,27in 4K Gaming Monitor,1,389.99,08/18/19 11:55,"194 Lakeview St, San Francisco, CA 94016" -243670,Apple Airpods Headphones,1,150,08/26/19 17:36,"518 Jackson St, San Francisco, CA 94016" -243671,AA Batteries (4-pack),1,3.84,08/29/19 09:19,"362 6th St, San Francisco, CA 94016" -243672,AAA Batteries (4-pack),1,2.99,08/22/19 12:22,"920 River St, Boston, MA 02215" -243673,Lightning Charging Cable,1,14.95,08/30/19 19:12,"231 Church St, Los Angeles, CA 90001" -243674,AAA Batteries (4-pack),2,2.99,08/29/19 14:40,"192 Hill St, Seattle, WA 98101" -243675,Wired Headphones,1,11.99,08/07/19 17:51,"734 Willow St, New York City, NY 10001" -243676,AA Batteries (4-pack),3,3.84,08/24/19 18:30,"95 Chestnut St, Los Angeles, CA 90001" -243677,ThinkPad Laptop,1,999.99,08/17/19 13:18,"797 12th St, Boston, MA 02215" -243678,USB-C Charging Cable,1,11.95,08/28/19 14:11,"66 Lakeview St, Boston, MA 02215" -243679,AAA Batteries (4-pack),5,2.99,08/31/19 22:20,"70 13th St, Los Angeles, CA 90001" -243679,Apple Airpods Headphones,1,150,08/31/19 22:20,"70 13th St, Los Angeles, CA 90001" -243680,AAA Batteries (4-pack),2,2.99,08/31/19 23:47,"915 Pine St, San Francisco, CA 94016" -243681,Wired Headphones,1,11.99,08/03/19 10:59,"665 10th St, Austin, TX 73301" -243682,USB-C Charging Cable,1,11.95,08/09/19 16:41,"651 Hill St, Seattle, WA 98101" -243683,Lightning Charging Cable,1,14.95,08/11/19 11:08,"667 Dogwood St, Dallas, TX 75001" -243684,Bose SoundSport Headphones,1,99.99,08/16/19 15:56,"171 Highland St, New York City, NY 10001" -243685,Wired Headphones,1,11.99,08/04/19 21:44,"189 Lake St, Los Angeles, CA 90001" -243686,Bose SoundSport Headphones,1,99.99,08/03/19 01:49,"587 River St, Seattle, WA 98101" -243687,USB-C Charging Cable,1,11.95,08/21/19 18:17,"912 North St, Seattle, WA 98101" -243688,AA Batteries (4-pack),1,3.84,08/29/19 15:59,"619 Lake St, Los Angeles, CA 90001" -243689,Bose SoundSport Headphones,1,99.99,08/06/19 16:11,"49 Main St, New York City, NY 10001" -243690,Bose SoundSport Headphones,1,99.99,08/06/19 00:35,"278 Lake St, Los Angeles, CA 90001" -243691,34in Ultrawide Monitor,1,379.99,08/15/19 22:59,"667 11th St, Atlanta, GA 30301" -243692,USB-C Charging Cable,1,11.95,08/22/19 00:10,"607 Maple St, San Francisco, CA 94016" -243693,AAA Batteries (4-pack),3,2.99,08/15/19 23:20,"725 Jefferson St, Los Angeles, CA 90001" -243694,Bose SoundSport Headphones,1,99.99,08/20/19 10:47,"408 1st St, San Francisco, CA 94016" -243695,27in 4K Gaming Monitor,1,389.99,08/20/19 10:26,"243 Hill St, Boston, MA 02215" -243696,AA Batteries (4-pack),1,3.84,08/06/19 17:59,"109 6th St, Atlanta, GA 30301" -243697,ThinkPad Laptop,1,999.99,08/12/19 21:15,"519 5th St, Boston, MA 02215" -243698,AAA Batteries (4-pack),1,2.99,08/29/19 19:33,"988 Spruce St, Los Angeles, CA 90001" -243699,Macbook Pro Laptop,1,1700,08/29/19 10:17,"42 5th St, Austin, TX 73301" -243700,Bose SoundSport Headphones,1,99.99,08/29/19 09:57,"641 Lincoln St, New York City, NY 10001" -243701,Lightning Charging Cable,1,14.95,08/09/19 12:21,"75 Walnut St, San Francisco, CA 94016" -243702,ThinkPad Laptop,1,999.99,08/16/19 03:40,"493 Dogwood St, New York City, NY 10001" -243703,Lightning Charging Cable,1,14.95,08/08/19 21:36,"228 Ridge St, Austin, TX 73301" -243704,AAA Batteries (4-pack),1,2.99,08/04/19 16:25,"688 Sunset St, Seattle, WA 98101" -243705,Lightning Charging Cable,1,14.95,08/08/19 18:46,"460 Ridge St, Los Angeles, CA 90001" -243706,Wired Headphones,1,11.99,08/19/19 11:42,"708 Meadow St, New York City, NY 10001" -243707,AAA Batteries (4-pack),5,2.99,08/23/19 20:37,"990 Maple St, San Francisco, CA 94016" -243708,AA Batteries (4-pack),1,3.84,08/16/19 18:54,"54 9th St, Dallas, TX 75001" -243709,Apple Airpods Headphones,1,150,08/11/19 17:43,"775 Wilson St, San Francisco, CA 94016" -243710,Flatscreen TV,1,300,08/27/19 12:07,"321 Jefferson St, Los Angeles, CA 90001" -243711,LG Dryer,1,600.0,08/16/19 16:25,"403 Lake St, Austin, TX 73301" -243712,AA Batteries (4-pack),1,3.84,08/15/19 16:52,"874 Jefferson St, Atlanta, GA 30301" -243713,Lightning Charging Cable,1,14.95,08/18/19 12:17,"941 Sunset St, Los Angeles, CA 90001" -243714,27in FHD Monitor,1,149.99,08/11/19 20:23,"982 Ridge St, Dallas, TX 75001" -243715,Flatscreen TV,1,300,08/18/19 20:22,"649 Highland St, Portland, OR 97035" -243716,Lightning Charging Cable,1,14.95,08/02/19 11:26,"903 Meadow St, New York City, NY 10001" -243717,Apple Airpods Headphones,1,150,08/22/19 09:45,"424 Adams St, Boston, MA 02215" -243718,Wired Headphones,1,11.99,08/07/19 11:21,"171 Sunset St, San Francisco, CA 94016" -243719,AAA Batteries (4-pack),1,2.99,08/29/19 17:45,"339 Lincoln St, Dallas, TX 75001" -243720,AA Batteries (4-pack),2,3.84,08/18/19 05:07,"607 Jefferson St, San Francisco, CA 94016" -243721,AAA Batteries (4-pack),1,2.99,08/27/19 18:37,"295 Walnut St, San Francisco, CA 94016" -243722,USB-C Charging Cable,1,11.95,08/24/19 16:34,"228 7th St, San Francisco, CA 94016" -243723,Lightning Charging Cable,1,14.95,08/09/19 09:50,"78 11th St, Los Angeles, CA 90001" -243724,AAA Batteries (4-pack),1,2.99,08/23/19 11:32,"374 14th St, Dallas, TX 75001" -243725,27in FHD Monitor,1,149.99,08/28/19 08:27,"353 West St, Portland, OR 97035" -243726,Bose SoundSport Headphones,1,99.99,08/14/19 15:46,"424 1st St, Portland, ME 04101" -243727,Lightning Charging Cable,1,14.95,08/07/19 13:22,"295 Lakeview St, New York City, NY 10001" -243728,Macbook Pro Laptop,1,1700,08/26/19 12:57,"665 14th St, Los Angeles, CA 90001" -243728,Macbook Pro Laptop,1,1700,08/26/19 12:57,"665 14th St, Los Angeles, CA 90001" -243729,USB-C Charging Cable,1,11.95,08/19/19 12:45,"746 Jackson St, Portland, OR 97035" -243730,27in 4K Gaming Monitor,1,389.99,08/15/19 14:14,"941 Wilson St, Seattle, WA 98101" -243731,27in FHD Monitor,1,149.99,08/10/19 13:20,"28 Lincoln St, Los Angeles, CA 90001" -243732,iPhone,1,700,08/22/19 20:08,"330 Park St, Austin, TX 73301" -243733,AAA Batteries (4-pack),4,2.99,08/07/19 13:35,"806 1st St, Los Angeles, CA 90001" -243734,Apple Airpods Headphones,1,150,08/27/19 00:10,"687 Forest St, San Francisco, CA 94016" -243735,AAA Batteries (4-pack),4,2.99,08/08/19 13:54,"746 Chestnut St, New York City, NY 10001" -243736,Wired Headphones,1,11.99,08/11/19 11:55,"640 Center St, Boston, MA 02215" -243737,Wired Headphones,2,11.99,08/29/19 13:27,"863 4th St, San Francisco, CA 94016" -243738,Lightning Charging Cable,1,14.95,08/02/19 19:44,"497 11th St, New York City, NY 10001" -243739,AAA Batteries (4-pack),1,2.99,08/03/19 12:00,"501 River St, Los Angeles, CA 90001" -243740,USB-C Charging Cable,1,11.95,08/22/19 22:04,"10 Lincoln St, Austin, TX 73301" -243741,Apple Airpods Headphones,1,150,08/09/19 14:46,"243 Park St, Boston, MA 02215" -243742,Vareebadd Phone,1,400,08/21/19 19:32,"478 Main St, San Francisco, CA 94016" -243743,Wired Headphones,1,11.99,08/30/19 22:12,"818 Johnson St, Boston, MA 02215" -243744,Lightning Charging Cable,1,14.95,08/08/19 12:59,"597 Adams St, New York City, NY 10001" -243745,AA Batteries (4-pack),2,3.84,08/09/19 11:35,"887 11th St, San Francisco, CA 94016" -243746,Apple Airpods Headphones,1,150,08/30/19 13:51,"594 Hickory St, New York City, NY 10001" -243747,Macbook Pro Laptop,1,1700,08/18/19 19:15,"133 Elm St, San Francisco, CA 94016" -243748,AA Batteries (4-pack),1,3.84,08/02/19 15:39,"546 Dogwood St, San Francisco, CA 94016" -243749,Apple Airpods Headphones,1,150,08/09/19 09:48,"998 Meadow St, New York City, NY 10001" -243750,AAA Batteries (4-pack),2,2.99,08/12/19 01:58,"561 Jefferson St, Portland, OR 97035" -243751,Apple Airpods Headphones,1,150,08/04/19 16:19,"675 2nd St, Los Angeles, CA 90001" -243752,AA Batteries (4-pack),1,3.84,08/30/19 12:02,"645 4th St, Dallas, TX 75001" -243753,27in FHD Monitor,1,149.99,08/04/19 12:21,"854 Chestnut St, Seattle, WA 98101" -243754,USB-C Charging Cable,1,11.95,08/04/19 20:46,"721 Forest St, Austin, TX 73301" -243755,AA Batteries (4-pack),1,3.84,08/22/19 07:59,"612 Johnson St, San Francisco, CA 94016" -243756,AA Batteries (4-pack),1,3.84,08/08/19 23:08,"994 Chestnut St, Portland, OR 97035" -243757,27in 4K Gaming Monitor,1,389.99,08/14/19 21:26,"518 10th St, San Francisco, CA 94016" -243758,USB-C Charging Cable,1,11.95,08/08/19 00:21,"435 Dogwood St, Dallas, TX 75001" -243759,AA Batteries (4-pack),1,3.84,08/23/19 11:25,"391 Pine St, Boston, MA 02215" -243760,ThinkPad Laptop,1,999.99,08/02/19 06:52,"875 Elm St, San Francisco, CA 94016" -243761,Wired Headphones,1,11.99,08/08/19 18:57,"360 Church St, Boston, MA 02215" -243762,Wired Headphones,1,11.99,08/03/19 03:53,"794 10th St, Austin, TX 73301" -243763,AAA Batteries (4-pack),1,2.99,08/21/19 17:00,"550 Hill St, Atlanta, GA 30301" -243764,AA Batteries (4-pack),2,3.84,08/28/19 14:45,"142 Washington St, Austin, TX 73301" -243765,Wired Headphones,1,11.99,08/24/19 15:22,"703 Madison St, Atlanta, GA 30301" -243766,Lightning Charging Cable,1,14.95,08/31/19 19:18,"171 13th St, Portland, OR 97035" -243767,Google Phone,1,600,08/31/19 16:03,"955 2nd St, Atlanta, GA 30301" -243767,USB-C Charging Cable,1,11.95,08/31/19 16:03,"955 2nd St, Atlanta, GA 30301" -243768,iPhone,1,700,08/14/19 16:48,"817 Cedar St, Atlanta, GA 30301" -243768,Lightning Charging Cable,1,14.95,08/14/19 16:48,"817 Cedar St, Atlanta, GA 30301" -243769,AA Batteries (4-pack),1,3.84,08/16/19 12:17,"797 5th St, Seattle, WA 98101" -243770,AAA Batteries (4-pack),1,2.99,08/04/19 10:51,"343 7th St, San Francisco, CA 94016" -243771,20in Monitor,1,109.99,08/18/19 17:27,"18 7th St, Portland, ME 04101" -243772,27in FHD Monitor,1,149.99,08/19/19 18:43,"755 Sunset St, New York City, NY 10001" -243773,AA Batteries (4-pack),1,3.84,08/27/19 19:01,"770 Forest St, Los Angeles, CA 90001" -243774,AA Batteries (4-pack),2,3.84,08/16/19 11:15,"292 Elm St, Los Angeles, CA 90001" -243775,AAA Batteries (4-pack),1,2.99,08/17/19 17:05,"951 Highland St, Los Angeles, CA 90001" -243776,Apple Airpods Headphones,1,150,08/01/19 21:09,"239 6th St, Los Angeles, CA 90001" -243776,Macbook Pro Laptop,1,1700,08/01/19 21:09,"239 6th St, Los Angeles, CA 90001" -243777,AAA Batteries (4-pack),4,2.99,08/13/19 19:36,"240 Meadow St, Atlanta, GA 30301" -243778,AAA Batteries (4-pack),1,2.99,08/04/19 05:16,"626 Hill St, San Francisco, CA 94016" -243779,Lightning Charging Cable,1,14.95,08/01/19 17:24,"765 South St, San Francisco, CA 94016" -243780,USB-C Charging Cable,1,11.95,08/05/19 13:40,"346 Lakeview St, Portland, OR 97035" -243781,Apple Airpods Headphones,1,150,08/25/19 13:29,"588 4th St, Los Angeles, CA 90001" -243782,27in 4K Gaming Monitor,1,389.99,08/31/19 21:31,"881 Park St, New York City, NY 10001" -243783,Apple Airpods Headphones,1,150,08/27/19 21:28,"733 11th St, Boston, MA 02215" -243784,Lightning Charging Cable,1,14.95,08/02/19 12:53,"265 Jackson St, Boston, MA 02215" -243785,AA Batteries (4-pack),2,3.84,08/30/19 22:01,"509 6th St, Portland, OR 97035" -243786,AA Batteries (4-pack),3,3.84,08/22/19 13:23,"58 Cherry St, New York City, NY 10001" -243787,27in FHD Monitor,1,149.99,08/02/19 23:33,"725 2nd St, Atlanta, GA 30301" -243788,27in 4K Gaming Monitor,1,389.99,08/21/19 19:18,"359 Spruce St, San Francisco, CA 94016" -243789,Lightning Charging Cable,1,14.95,08/03/19 19:39,"756 Main St, New York City, NY 10001" -243790,Vareebadd Phone,1,400,08/20/19 02:15,"185 Sunset St, San Francisco, CA 94016" -243791,Google Phone,1,600,08/13/19 12:36,"876 Lakeview St, Boston, MA 02215" -243792,AAA Batteries (4-pack),2,2.99,08/26/19 20:50,"538 Adams St, Seattle, WA 98101" -243793,Lightning Charging Cable,1,14.95,08/04/19 09:37,"837 Jackson St, New York City, NY 10001" -243794,USB-C Charging Cable,2,11.95,08/20/19 14:25,"23 9th St, Boston, MA 02215" -243795,Wired Headphones,2,11.99,08/15/19 20:34,"174 Main St, Atlanta, GA 30301" -243796,Apple Airpods Headphones,1,150,08/20/19 14:18,"80 Johnson St, San Francisco, CA 94016" -243797,Lightning Charging Cable,1,14.95,08/20/19 16:53,"926 Hill St, Los Angeles, CA 90001" -243798,AA Batteries (4-pack),1,3.84,08/04/19 10:58,"559 Jackson St, San Francisco, CA 94016" -243799,AAA Batteries (4-pack),2,2.99,08/01/19 13:22,"217 Pine St, Dallas, TX 75001" -243800,Flatscreen TV,1,300,08/17/19 10:45,"448 1st St, Los Angeles, CA 90001" -243801,Apple Airpods Headphones,1,150,08/13/19 14:26,"291 Pine St, San Francisco, CA 94016" -243802,Vareebadd Phone,1,400,08/06/19 15:25,"23 4th St, Seattle, WA 98101" -243803,USB-C Charging Cable,1,11.95,08/28/19 18:11,"906 Park St, Austin, TX 73301" -243804,USB-C Charging Cable,1,11.95,08/23/19 19:50,"531 12th St, Austin, TX 73301" -243805,USB-C Charging Cable,1,11.95,08/24/19 09:28,"948 Lake St, Dallas, TX 75001" -243806,Lightning Charging Cable,1,14.95,08/09/19 12:18,"91 Hickory St, New York City, NY 10001" -243807,Lightning Charging Cable,1,14.95,08/22/19 08:25,"958 5th St, Los Angeles, CA 90001" -243808,27in FHD Monitor,1,149.99,08/03/19 00:01,"477 Meadow St, San Francisco, CA 94016" -243809,Wired Headphones,1,11.99,08/15/19 19:15,"480 8th St, Atlanta, GA 30301" -243810,USB-C Charging Cable,1,11.95,08/17/19 00:13,"279 12th St, Boston, MA 02215" -243811,USB-C Charging Cable,1,11.95,08/13/19 20:24,"508 Madison St, San Francisco, CA 94016" -243812,34in Ultrawide Monitor,1,379.99,08/25/19 00:56,"644 Spruce St, Los Angeles, CA 90001" -243813,USB-C Charging Cable,1,11.95,08/06/19 19:18,"255 Park St, Los Angeles, CA 90001" -243814,iPhone,1,700,08/04/19 19:06,"120 Ridge St, Portland, OR 97035" -243815,AA Batteries (4-pack),1,3.84,08/31/19 07:04,"917 12th St, Atlanta, GA 30301" -243816,27in 4K Gaming Monitor,1,389.99,08/19/19 13:04,"82 Hill St, Boston, MA 02215" -243817,iPhone,1,700,08/09/19 12:39,"530 Highland St, New York City, NY 10001" -243818,Wired Headphones,1,11.99,08/06/19 20:09,"901 Lake St, Boston, MA 02215" -243819,AA Batteries (4-pack),1,3.84,08/10/19 21:58,"110 Pine St, Austin, TX 73301" -243820,Lightning Charging Cable,1,14.95,08/03/19 08:47,"124 Adams St, Boston, MA 02215" -243821,AA Batteries (4-pack),1,3.84,08/26/19 22:02,"525 Jackson St, Atlanta, GA 30301" -243822,Apple Airpods Headphones,1,150,08/08/19 22:29,"773 River St, San Francisco, CA 94016" -243823,Bose SoundSport Headphones,1,99.99,08/25/19 16:55,"752 Church St, Austin, TX 73301" -243824,USB-C Charging Cable,1,11.95,08/26/19 12:15,"359 1st St, Austin, TX 73301" -243825,Apple Airpods Headphones,1,150,08/29/19 13:19,"634 Willow St, San Francisco, CA 94016" -243826,AAA Batteries (4-pack),2,2.99,08/04/19 15:11,"10 Johnson St, San Francisco, CA 94016" -243827,Bose SoundSport Headphones,1,99.99,08/03/19 14:09,"626 Hill St, Los Angeles, CA 90001" -243828,Wired Headphones,2,11.99,08/08/19 17:34,"276 Lakeview St, Atlanta, GA 30301" -243829,USB-C Charging Cable,1,11.95,08/20/19 17:50,"654 7th St, Boston, MA 02215" -243830,20in Monitor,1,109.99,08/31/19 17:29,"263 6th St, Atlanta, GA 30301" -243831,27in 4K Gaming Monitor,1,389.99,08/06/19 21:27,"675 South St, Boston, MA 02215" -243832,Flatscreen TV,1,300,08/10/19 21:58,"543 Main St, San Francisco, CA 94016" -243833,AAA Batteries (4-pack),3,2.99,08/13/19 11:57,"226 Walnut St, Los Angeles, CA 90001" -243834,USB-C Charging Cable,1,11.95,08/10/19 20:32,"969 8th St, San Francisco, CA 94016" -243835,AA Batteries (4-pack),1,3.84,08/24/19 17:24,"167 Forest St, Seattle, WA 98101" -243836,Apple Airpods Headphones,1,150,08/12/19 22:18,"126 14th St, Portland, OR 97035" -243837,Bose SoundSport Headphones,1,99.99,08/07/19 18:26,"208 Willow St, Dallas, TX 75001" -243838,Flatscreen TV,1,300,08/31/19 20:23,"88 North St, Seattle, WA 98101" -243839,Macbook Pro Laptop,1,1700,08/21/19 11:48,"370 Sunset St, New York City, NY 10001" -243840,AA Batteries (4-pack),1,3.84,08/25/19 20:08,"902 Chestnut St, Seattle, WA 98101" -243841,Vareebadd Phone,1,400,08/01/19 11:54,"319 6th St, San Francisco, CA 94016" -243841,USB-C Charging Cable,1,11.95,08/01/19 11:54,"319 6th St, San Francisco, CA 94016" -243842,Vareebadd Phone,1,400,08/12/19 14:27,"309 Willow St, Los Angeles, CA 90001" -243843,Lightning Charging Cable,1,14.95,08/16/19 09:36,"592 Hill St, Austin, TX 73301" -243844,Lightning Charging Cable,2,14.95,08/07/19 20:36,"467 8th St, Los Angeles, CA 90001" -243845,Google Phone,1,600,08/04/19 12:08,"915 Meadow St, New York City, NY 10001" -243846,AAA Batteries (4-pack),1,2.99,08/14/19 22:31,"306 Dogwood St, Los Angeles, CA 90001" -243847,iPhone,1,700,08/21/19 12:59,"460 11th St, New York City, NY 10001" -243847,Lightning Charging Cable,1,14.95,08/21/19 12:59,"460 11th St, New York City, NY 10001" -243848,Bose SoundSport Headphones,1,99.99,08/15/19 21:00,"131 South St, Austin, TX 73301" -243849,USB-C Charging Cable,3,11.95,08/28/19 12:12,"351 South St, Austin, TX 73301" -243850,27in FHD Monitor,1,149.99,08/16/19 16:33,"255 West St, New York City, NY 10001" -243851,USB-C Charging Cable,1,11.95,08/26/19 18:18,"702 12th St, San Francisco, CA 94016" -243852,Google Phone,1,600,08/06/19 17:33,"242 Spruce St, Boston, MA 02215" -243853,AA Batteries (4-pack),2,3.84,08/20/19 21:05,"384 Cedar St, Seattle, WA 98101" -243854,20in Monitor,1,109.99,08/26/19 21:14,"867 Park St, Austin, TX 73301" -243855,Apple Airpods Headphones,1,150,08/24/19 16:09,"434 River St, Los Angeles, CA 90001" -243856,27in 4K Gaming Monitor,1,389.99,08/22/19 17:16,"120 Willow St, San Francisco, CA 94016" -,,,,, -243857,34in Ultrawide Monitor,1,379.99,08/09/19 19:58,"51 Church St, San Francisco, CA 94016" -243858,AA Batteries (4-pack),2,3.84,08/21/19 13:23,"601 Ridge St, Dallas, TX 75001" -243859,27in FHD Monitor,1,149.99,08/19/19 15:36,"736 12th St, Dallas, TX 75001" -243860,iPhone,1,700,08/08/19 10:18,"838 Maple St, Atlanta, GA 30301" -243861,AA Batteries (4-pack),1,3.84,08/22/19 03:07,"959 Cherry St, New York City, NY 10001" -243862,LG Dryer,1,600.0,08/10/19 14:58,"909 Meadow St, Atlanta, GA 30301" -243863,Wired Headphones,1,11.99,08/11/19 23:57,"132 Park St, Portland, OR 97035" -243864,Apple Airpods Headphones,1,150,08/14/19 09:52,"53 North St, Dallas, TX 75001" -243865,AA Batteries (4-pack),1,3.84,08/04/19 18:06,"593 Lake St, San Francisco, CA 94016" -243866,20in Monitor,1,109.99,08/29/19 14:18,"198 Center St, Atlanta, GA 30301" -243866,Macbook Pro Laptop,1,1700,08/29/19 14:18,"198 Center St, Atlanta, GA 30301" -243867,iPhone,1,700,08/09/19 18:36,"530 Lake St, Los Angeles, CA 90001" -243868,Apple Airpods Headphones,1,150,08/09/19 16:14,"975 Wilson St, Boston, MA 02215" -243869,Wired Headphones,1,11.99,08/20/19 20:28,"517 4th St, San Francisco, CA 94016" -243870,Apple Airpods Headphones,1,150,08/04/19 12:35,"768 2nd St, New York City, NY 10001" -243871,USB-C Charging Cable,2,11.95,08/23/19 11:38,"839 Jefferson St, Austin, TX 73301" -243872,Apple Airpods Headphones,1,150,08/27/19 12:41,"312 Park St, Los Angeles, CA 90001" -243873,Apple Airpods Headphones,1,150,08/16/19 14:50,"852 11th St, Portland, OR 97035" -243874,Wired Headphones,1,11.99,08/26/19 23:29,"709 6th St, San Francisco, CA 94016" -243875,AAA Batteries (4-pack),1,2.99,08/14/19 16:33,"120 Dogwood St, Los Angeles, CA 90001" -243876,ThinkPad Laptop,1,999.99,08/28/19 13:09,"200 Chestnut St, San Francisco, CA 94016" -243877,Lightning Charging Cable,1,14.95,08/16/19 18:30,"90 4th St, Dallas, TX 75001" -243878,AA Batteries (4-pack),1,3.84,08/27/19 22:21,"372 Elm St, San Francisco, CA 94016" -243879,Lightning Charging Cable,1,14.95,08/05/19 11:14,"757 Jackson St, Dallas, TX 75001" -243880,AA Batteries (4-pack),1,3.84,08/30/19 18:48,"374 West St, Los Angeles, CA 90001" -243881,AA Batteries (4-pack),1,3.84,08/11/19 20:12,"62 Forest St, New York City, NY 10001" -243882,AA Batteries (4-pack),1,3.84,08/10/19 16:20,"719 9th St, Portland, OR 97035" -243883,Wired Headphones,1,11.99,08/28/19 18:52,"542 2nd St, Boston, MA 02215" -243884,Bose SoundSport Headphones,1,99.99,08/18/19 10:59,"905 14th St, San Francisco, CA 94016" -243885,USB-C Charging Cable,1,11.95,08/23/19 19:38,"980 2nd St, Dallas, TX 75001" -243886,ThinkPad Laptop,1,999.99,08/11/19 11:09,"855 Ridge St, Atlanta, GA 30301" -243887,AA Batteries (4-pack),1,3.84,08/26/19 07:21,"605 Sunset St, Los Angeles, CA 90001" -243888,USB-C Charging Cable,1,11.95,08/03/19 16:20,"39 Meadow St, Dallas, TX 75001" -243889,Macbook Pro Laptop,1,1700,08/30/19 23:22,"23 Cherry St, Seattle, WA 98101" -243890,AA Batteries (4-pack),2,3.84,08/08/19 21:24,"45 6th St, New York City, NY 10001" -243891,AAA Batteries (4-pack),1,2.99,08/05/19 11:01,"195 Lake St, San Francisco, CA 94016" -243892,iPhone,1,700,08/28/19 01:32,"68 Ridge St, San Francisco, CA 94016" -243893,USB-C Charging Cable,1,11.95,08/21/19 20:39,"918 Church St, New York City, NY 10001" -243894,27in FHD Monitor,1,149.99,08/14/19 02:46,"971 Church St, San Francisco, CA 94016" -243895,AAA Batteries (4-pack),1,2.99,08/17/19 18:56,"316 Sunset St, New York City, NY 10001" -243896,Lightning Charging Cable,1,14.95,08/05/19 12:43,"783 River St, Austin, TX 73301" -243897,AAA Batteries (4-pack),2,2.99,08/05/19 21:00,"920 Lake St, Atlanta, GA 30301" -243898,20in Monitor,1,109.99,08/20/19 09:56,"884 Main St, Dallas, TX 75001" -243899,Apple Airpods Headphones,1,150,08/17/19 09:00,"706 River St, Seattle, WA 98101" -243900,Wired Headphones,1,11.99,08/05/19 20:49,"879 Washington St, San Francisco, CA 94016" -243901,27in FHD Monitor,1,149.99,08/21/19 23:38,"387 13th St, Austin, TX 73301" -243902,Lightning Charging Cable,1,14.95,08/21/19 18:12,"726 Spruce St, Dallas, TX 75001" -243903,Apple Airpods Headphones,1,150,08/29/19 22:34,"752 10th St, Austin, TX 73301" -243904,AA Batteries (4-pack),1,3.84,08/28/19 12:38,"514 10th St, Dallas, TX 75001" -243905,AA Batteries (4-pack),1,3.84,08/04/19 20:34,"454 Adams St, San Francisco, CA 94016" -243906,34in Ultrawide Monitor,1,379.99,08/31/19 22:54,"320 Cedar St, Boston, MA 02215" -243907,Lightning Charging Cable,1,14.95,08/03/19 13:56,"635 Washington St, Austin, TX 73301" -243908,AAA Batteries (4-pack),2,2.99,08/05/19 17:30,"386 North St, Los Angeles, CA 90001" -243909,Vareebadd Phone,1,400,08/24/19 21:24,"969 Wilson St, New York City, NY 10001" -243910,Macbook Pro Laptop,1,1700,08/19/19 11:38,"532 Cedar St, Austin, TX 73301" -243911,Bose SoundSport Headphones,1,99.99,08/10/19 12:32,"980 6th St, Atlanta, GA 30301" -243912,Lightning Charging Cable,1,14.95,08/27/19 07:51,"924 Walnut St, San Francisco, CA 94016" -243913,AA Batteries (4-pack),1,3.84,08/17/19 12:42,"781 13th St, New York City, NY 10001" -243914,AA Batteries (4-pack),2,3.84,08/30/19 18:36,"841 Johnson St, Los Angeles, CA 90001" -243915,Wired Headphones,1,11.99,08/31/19 19:15,"867 11th St, New York City, NY 10001" -243916,USB-C Charging Cable,1,11.95,08/30/19 17:59,"826 Willow St, San Francisco, CA 94016" -243917,Macbook Pro Laptop,1,1700,08/18/19 12:57,"902 Park St, San Francisco, CA 94016" -243918,20in Monitor,1,109.99,08/07/19 13:07,"527 Lakeview St, Seattle, WA 98101" -243919,20in Monitor,1,109.99,08/02/19 15:52,"19 Jackson St, Dallas, TX 75001" -243920,Wired Headphones,1,11.99,08/09/19 14:25,"134 Willow St, Boston, MA 02215" -243921,iPhone,1,700,08/09/19 09:56,"50 Willow St, New York City, NY 10001" -243921,Wired Headphones,2,11.99,08/09/19 09:56,"50 Willow St, New York City, NY 10001" -243922,USB-C Charging Cable,1,11.95,08/22/19 12:37,"620 Cedar St, Boston, MA 02215" -243923,USB-C Charging Cable,1,11.95,08/21/19 17:54,"957 Lincoln St, San Francisco, CA 94016" -243924,34in Ultrawide Monitor,1,379.99,08/30/19 18:43,"692 Hickory St, Boston, MA 02215" -243925,Apple Airpods Headphones,1,150,08/17/19 13:37,"335 Willow St, Dallas, TX 75001" -243926,27in FHD Monitor,1,149.99,08/14/19 07:38,"900 Chestnut St, San Francisco, CA 94016" -243927,Google Phone,1,600,08/07/19 13:50,"784 Adams St, San Francisco, CA 94016" -243928,Wired Headphones,2,11.99,08/19/19 18:34,"507 Willow St, Boston, MA 02215" -243928,AA Batteries (4-pack),1,3.84,08/19/19 18:34,"507 Willow St, Boston, MA 02215" -243929,Apple Airpods Headphones,1,150,08/01/19 10:33,"89 8th St, Austin, TX 73301" -243930,Apple Airpods Headphones,1,150,08/15/19 23:07,"591 2nd St, Dallas, TX 75001" -243931,USB-C Charging Cable,1,11.95,08/21/19 16:52,"330 Dogwood St, Seattle, WA 98101" -243932,AAA Batteries (4-pack),1,2.99,08/28/19 17:29,"259 Hill St, Atlanta, GA 30301" -243933,Apple Airpods Headphones,1,150,08/09/19 21:39,"341 Elm St, Atlanta, GA 30301" -243934,Apple Airpods Headphones,1,150,08/10/19 19:08,"874 14th St, Boston, MA 02215" -243935,LG Washing Machine,1,600.0,08/08/19 15:03,"749 Walnut St, Los Angeles, CA 90001" -243936,Wired Headphones,1,11.99,08/14/19 15:14,"378 Highland St, Seattle, WA 98101" -243937,Flatscreen TV,1,300,08/15/19 12:36,"125 1st St, Atlanta, GA 30301" -243938,Lightning Charging Cable,1,14.95,08/02/19 21:10,"109 Forest St, Austin, TX 73301" -243939,Bose SoundSport Headphones,1,99.99,08/25/19 22:24,"60 Hill St, Seattle, WA 98101" -243940,Lightning Charging Cable,1,14.95,08/23/19 20:07,"318 10th St, Atlanta, GA 30301" -243941,Bose SoundSport Headphones,1,99.99,08/24/19 15:44,"996 Highland St, Boston, MA 02215" -243942,Apple Airpods Headphones,1,150,08/13/19 10:17,"152 Pine St, Los Angeles, CA 90001" -243943,AAA Batteries (4-pack),1,2.99,08/07/19 16:43,"209 12th St, Los Angeles, CA 90001" -243944,27in FHD Monitor,1,149.99,08/21/19 15:11,"52 River St, Atlanta, GA 30301" -243945,Google Phone,1,600,08/17/19 08:24,"20 10th St, San Francisco, CA 94016" -243945,Bose SoundSport Headphones,1,99.99,08/17/19 08:24,"20 10th St, San Francisco, CA 94016" -243946,Lightning Charging Cable,1,14.95,08/15/19 10:45,"35 Ridge St, San Francisco, CA 94016" -243947,Google Phone,1,600,08/28/19 07:26,"774 Hickory St, Dallas, TX 75001" -243947,USB-C Charging Cable,2,11.95,08/28/19 07:26,"774 Hickory St, Dallas, TX 75001" -243948,AA Batteries (4-pack),1,3.84,08/31/19 12:34,"239 7th St, Seattle, WA 98101" -243949,iPhone,1,700,08/03/19 19:48,"293 14th St, New York City, NY 10001" -243950,iPhone,1,700,08/24/19 14:27,"88 Center St, Boston, MA 02215" -243951,AAA Batteries (4-pack),2,2.99,08/11/19 23:56,"478 West St, Atlanta, GA 30301" -243952,Bose SoundSport Headphones,1,99.99,08/22/19 07:38,"42 Willow St, San Francisco, CA 94016" -243953,USB-C Charging Cable,1,11.95,08/23/19 23:06,"137 5th St, San Francisco, CA 94016" -243954,34in Ultrawide Monitor,1,379.99,08/14/19 19:07,"922 Adams St, Austin, TX 73301" -243955,USB-C Charging Cable,2,11.95,08/27/19 19:40,"636 14th St, New York City, NY 10001" -243956,AAA Batteries (4-pack),3,2.99,08/13/19 21:22,"433 Park St, San Francisco, CA 94016" -243957,27in 4K Gaming Monitor,1,389.99,08/31/19 15:15,"473 West St, Atlanta, GA 30301" -243958,Lightning Charging Cable,1,14.95,08/03/19 19:34,"314 Dogwood St, Portland, OR 97035" -243958,Lightning Charging Cable,1,14.95,08/03/19 19:34,"314 Dogwood St, Portland, OR 97035" -243959,AA Batteries (4-pack),1,3.84,08/17/19 09:17,"788 Lincoln St, Atlanta, GA 30301" -243960,AA Batteries (4-pack),3,3.84,08/29/19 20:56,"293 Church St, Seattle, WA 98101" -243961,Wired Headphones,1,11.99,08/20/19 14:03,"639 Washington St, Austin, TX 73301" -243962,20in Monitor,1,109.99,08/25/19 16:49,"70 Park St, Atlanta, GA 30301" -243963,USB-C Charging Cable,1,11.95,08/27/19 12:21,"484 Wilson St, Los Angeles, CA 90001" -243964,Apple Airpods Headphones,1,150,08/24/19 19:18,"504 Lake St, New York City, NY 10001" -243965,iPhone,1,700,08/04/19 02:45,"272 Lakeview St, New York City, NY 10001" -243966,20in Monitor,1,109.99,08/02/19 17:32,"710 2nd St, Boston, MA 02215" -243967,USB-C Charging Cable,1,11.95,08/28/19 17:33,"666 Wilson St, Los Angeles, CA 90001" -243968,USB-C Charging Cable,1,11.95,08/02/19 16:47,"606 13th St, Atlanta, GA 30301" -243969,Vareebadd Phone,1,400,08/19/19 08:58,"824 Sunset St, Atlanta, GA 30301" -243970,AA Batteries (4-pack),1,3.84,08/07/19 19:03,"107 Pine St, New York City, NY 10001" -243971,USB-C Charging Cable,1,11.95,08/06/19 23:19,"122 Cherry St, Portland, OR 97035" -243972,AA Batteries (4-pack),1,3.84,08/26/19 11:22,"145 Meadow St, Boston, MA 02215" -243973,USB-C Charging Cable,1,11.95,08/20/19 08:41,"739 Jefferson St, Seattle, WA 98101" -243974,Apple Airpods Headphones,1,150,08/11/19 22:20,"585 River St, San Francisco, CA 94016" -243975,AA Batteries (4-pack),1,3.84,08/05/19 23:33,"811 5th St, Austin, TX 73301" -243976,27in 4K Gaming Monitor,1,389.99,08/31/19 00:07,"405 South St, Atlanta, GA 30301" -243977,ThinkPad Laptop,1,999.99,08/12/19 10:05,"393 2nd St, Seattle, WA 98101" -243978,Wired Headphones,1,11.99,08/18/19 06:45,"981 Sunset St, San Francisco, CA 94016" -243979,Lightning Charging Cable,1,14.95,08/13/19 11:30,"714 Forest St, Boston, MA 02215" -243980,AAA Batteries (4-pack),3,2.99,08/14/19 12:55,"764 4th St, Atlanta, GA 30301" -243981,AA Batteries (4-pack),1,3.84,08/18/19 22:44,"951 6th St, San Francisco, CA 94016" -243982,AA Batteries (4-pack),1,3.84,08/15/19 19:06,"884 6th St, Atlanta, GA 30301" -243983,AA Batteries (4-pack),2,3.84,08/02/19 19:45,"476 7th St, Seattle, WA 98101" -243984,AA Batteries (4-pack),2,3.84,08/13/19 10:42,"517 Meadow St, Portland, OR 97035" -243985,Lightning Charging Cable,1,14.95,08/17/19 15:32,"573 Jefferson St, Austin, TX 73301" -243986,20in Monitor,1,109.99,08/27/19 07:43,"250 Chestnut St, New York City, NY 10001" -243987,Lightning Charging Cable,1,14.95,08/02/19 10:27,"459 12th St, San Francisco, CA 94016" -243988,27in FHD Monitor,1,149.99,08/08/19 12:20,"301 South St, Boston, MA 02215" -243989,AAA Batteries (4-pack),2,2.99,08/28/19 11:37,"209 South St, Dallas, TX 75001" -243990,Wired Headphones,1,11.99,08/23/19 21:07,"118 1st St, Dallas, TX 75001" -243991,Lightning Charging Cable,1,14.95,08/31/19 04:30,"775 Washington St, San Francisco, CA 94016" -243992,AAA Batteries (4-pack),1,2.99,08/06/19 02:36,"706 Johnson St, San Francisco, CA 94016" -243993,AA Batteries (4-pack),1,3.84,08/04/19 08:54,"161 10th St, Atlanta, GA 30301" -243994,Macbook Pro Laptop,1,1700,08/16/19 22:04,"496 River St, Boston, MA 02215" -243995,AAA Batteries (4-pack),4,2.99,08/19/19 21:32,"610 11th St, Dallas, TX 75001" -243996,27in FHD Monitor,1,149.99,08/18/19 19:54,"12 Jackson St, Portland, OR 97035" -243997,20in Monitor,1,109.99,08/07/19 17:29,"506 7th St, Dallas, TX 75001" -243998,ThinkPad Laptop,1,999.99,08/31/19 08:34,"158 Main St, New York City, NY 10001" -243999,Lightning Charging Cable,1,14.95,08/02/19 00:23,"585 4th St, Portland, OR 97035" -244000,AA Batteries (4-pack),1,3.84,08/05/19 19:09,"903 Maple St, Los Angeles, CA 90001" -244001,Apple Airpods Headphones,1,150,08/02/19 06:21,"275 Sunset St, Los Angeles, CA 90001" -244002,34in Ultrawide Monitor,1,379.99,08/16/19 16:04,"223 Maple St, Seattle, WA 98101" -244003,Bose SoundSport Headphones,1,99.99,08/20/19 15:07,"281 Dogwood St, Dallas, TX 75001" -244004,USB-C Charging Cable,1,11.95,08/23/19 10:28,"111 Washington St, New York City, NY 10001" -244005,USB-C Charging Cable,2,11.95,08/23/19 18:37,"921 Sunset St, Seattle, WA 98101" -244006,Lightning Charging Cable,1,14.95,08/03/19 19:40,"425 Park St, Los Angeles, CA 90001" -244007,Bose SoundSport Headphones,1,99.99,08/04/19 21:21,"852 Elm St, Los Angeles, CA 90001" -244008,Wired Headphones,1,11.99,08/29/19 18:30,"687 Park St, Seattle, WA 98101" -244009,USB-C Charging Cable,1,11.95,08/09/19 18:12,"729 Ridge St, Los Angeles, CA 90001" -244010,Lightning Charging Cable,2,14.95,08/27/19 20:53,"801 Ridge St, Los Angeles, CA 90001" -244011,27in 4K Gaming Monitor,1,389.99,08/05/19 22:18,"462 1st St, San Francisco, CA 94016" -244012,Lightning Charging Cable,1,14.95,08/28/19 17:48,"589 North St, Boston, MA 02215" -244013,Bose SoundSport Headphones,1,99.99,08/30/19 18:42,"387 8th St, Dallas, TX 75001" -244014,Lightning Charging Cable,1,14.95,08/09/19 22:37,"174 10th St, Austin, TX 73301" -244015,AA Batteries (4-pack),1,3.84,08/26/19 20:26,"352 14th St, Austin, TX 73301" -244016,20in Monitor,1,109.99,08/02/19 11:43,"534 Park St, New York City, NY 10001" -244017,AAA Batteries (4-pack),2,2.99,08/23/19 09:38,"793 13th St, New York City, NY 10001" -244018,USB-C Charging Cable,1,11.95,08/16/19 20:17,"737 Lake St, Atlanta, GA 30301" -244019,AA Batteries (4-pack),1,3.84,08/24/19 20:55,"350 Meadow St, Dallas, TX 75001" -244020,AA Batteries (4-pack),1,3.84,08/29/19 08:26,"920 West St, Los Angeles, CA 90001" -244021,AAA Batteries (4-pack),3,2.99,08/26/19 10:18,"97 Forest St, San Francisco, CA 94016" -244022,Google Phone,1,600,08/28/19 13:39,"965 2nd St, Seattle, WA 98101" -244023,iPhone,1,700,08/10/19 00:19,"199 9th St, New York City, NY 10001" -244023,Lightning Charging Cable,1,14.95,08/10/19 00:19,"199 9th St, New York City, NY 10001" -244024,Apple Airpods Headphones,1,150,08/20/19 19:55,"393 Center St, Seattle, WA 98101" -244025,Lightning Charging Cable,1,14.95,08/15/19 21:57,"353 Lake St, San Francisco, CA 94016" -244026,Bose SoundSport Headphones,1,99.99,08/26/19 19:30,"917 North St, Los Angeles, CA 90001" -244027,34in Ultrawide Monitor,1,379.99,08/17/19 04:55,"155 Lakeview St, Boston, MA 02215" -244028,Bose SoundSport Headphones,1,99.99,08/27/19 18:50,"977 9th St, Seattle, WA 98101" -244029,Wired Headphones,1,11.99,08/23/19 18:54,"952 South St, New York City, NY 10001" -244030,Wired Headphones,1,11.99,08/23/19 12:33,"804 9th St, Los Angeles, CA 90001" -244031,Lightning Charging Cable,1,14.95,08/14/19 07:45,"793 Sunset St, New York City, NY 10001" -244032,Vareebadd Phone,1,400,08/10/19 19:55,"29 Sunset St, San Francisco, CA 94016" -244032,USB-C Charging Cable,1,11.95,08/10/19 19:55,"29 Sunset St, San Francisco, CA 94016" -244033,USB-C Charging Cable,1,11.95,08/19/19 09:14,"308 Ridge St, New York City, NY 10001" -244034,Bose SoundSport Headphones,1,99.99,08/25/19 15:15,"942 Willow St, Seattle, WA 98101" -244035,Lightning Charging Cable,1,14.95,08/15/19 01:16,"500 Pine St, Los Angeles, CA 90001" -244036,Lightning Charging Cable,1,14.95,08/09/19 18:58,"140 1st St, Boston, MA 02215" -244037,ThinkPad Laptop,1,999.99,08/05/19 18:58,"249 Jackson St, San Francisco, CA 94016" -244038,AAA Batteries (4-pack),2,2.99,08/09/19 11:50,"152 13th St, Seattle, WA 98101" -244039,Apple Airpods Headphones,1,150,08/31/19 23:50,"983 4th St, Austin, TX 73301" -244040,USB-C Charging Cable,1,11.95,08/24/19 21:40,"564 North St, San Francisco, CA 94016" -244041,27in FHD Monitor,1,149.99,08/06/19 13:14,"107 8th St, San Francisco, CA 94016" -244042,AA Batteries (4-pack),1,3.84,08/27/19 08:47,"401 Maple St, Seattle, WA 98101" -244043,Lightning Charging Cable,1,14.95,08/13/19 01:02,"289 West St, New York City, NY 10001" -244044,AAA Batteries (4-pack),2,2.99,08/05/19 20:59,"93 6th St, Dallas, TX 75001" -244045,Wired Headphones,1,11.99,08/28/19 11:03,"305 Forest St, Los Angeles, CA 90001" -244046,Google Phone,1,600,08/02/19 22:34,"22 6th St, Dallas, TX 75001" -244047,27in FHD Monitor,1,149.99,08/16/19 09:59,"354 Dogwood St, San Francisco, CA 94016" -244048,Wired Headphones,1,11.99,08/29/19 22:18,"663 Pine St, New York City, NY 10001" -244049,Google Phone,1,600,08/15/19 20:00,"137 Meadow St, Atlanta, GA 30301" -244050,Macbook Pro Laptop,1,1700,08/01/19 15:48,"645 Meadow St, San Francisco, CA 94016" -244051,Wired Headphones,2,11.99,08/18/19 10:54,"908 Forest St, New York City, NY 10001" -244052,Bose SoundSport Headphones,1,99.99,08/03/19 23:53,"66 South St, Seattle, WA 98101" -244053,iPhone,1,700,08/29/19 19:16,"909 Johnson St, San Francisco, CA 94016" -244053,Lightning Charging Cable,1,14.95,08/29/19 19:16,"909 Johnson St, San Francisco, CA 94016" -244054,27in FHD Monitor,1,149.99,08/25/19 13:37,"415 5th St, New York City, NY 10001" -244055,Google Phone,1,600,08/18/19 20:01,"12 Main St, Los Angeles, CA 90001" -244056,Bose SoundSport Headphones,1,99.99,08/11/19 21:14,"405 4th St, Seattle, WA 98101" -244057,Flatscreen TV,1,300,08/16/19 13:08,"660 Cherry St, Dallas, TX 75001" -244058,Bose SoundSport Headphones,1,99.99,08/29/19 20:54,"71 Madison St, New York City, NY 10001" -244059,USB-C Charging Cable,1,11.95,08/22/19 13:33,"618 Lincoln St, Dallas, TX 75001" -244060,27in FHD Monitor,1,149.99,08/18/19 11:28,"683 South St, Los Angeles, CA 90001" -244061,Apple Airpods Headphones,1,150,08/17/19 08:22,"657 10th St, Dallas, TX 75001" -244062,AAA Batteries (4-pack),1,2.99,08/16/19 00:56,"65 Jackson St, Los Angeles, CA 90001" -244063,27in 4K Gaming Monitor,1,389.99,08/06/19 13:28,"686 Meadow St, Atlanta, GA 30301" -244064,LG Dryer,1,600.0,08/16/19 16:07,"915 1st St, Dallas, TX 75001" -244065,Lightning Charging Cable,1,14.95,08/11/19 11:35,"460 Lincoln St, Boston, MA 02215" -244066,Lightning Charging Cable,1,14.95,08/19/19 14:22,"221 Lincoln St, Boston, MA 02215" -244067,34in Ultrawide Monitor,1,379.99,08/07/19 18:02,"367 Center St, Boston, MA 02215" -244068,Lightning Charging Cable,1,14.95,08/12/19 22:38,"531 4th St, San Francisco, CA 94016" -244069,Google Phone,1,600,08/24/19 21:52,"103 Lake St, Dallas, TX 75001" -244069,USB-C Charging Cable,1,11.95,08/24/19 21:52,"103 Lake St, Dallas, TX 75001" -244070,Macbook Pro Laptop,1,1700,08/12/19 10:39,"503 6th St, Los Angeles, CA 90001" -244071,27in 4K Gaming Monitor,1,389.99,08/09/19 20:06,"929 River St, San Francisco, CA 94016" -244071,USB-C Charging Cable,1,11.95,08/09/19 20:06,"929 River St, San Francisco, CA 94016" -244072,Lightning Charging Cable,1,14.95,08/04/19 23:14,"30 Maple St, San Francisco, CA 94016" -244073,AAA Batteries (4-pack),1,2.99,08/06/19 18:47,"218 Hill St, San Francisco, CA 94016" -244074,Wired Headphones,1,11.99,08/29/19 09:54,"841 Elm St, Austin, TX 73301" -244075,ThinkPad Laptop,1,999.99,08/15/19 01:21,"394 Chestnut St, New York City, NY 10001" -244076,USB-C Charging Cable,1,11.95,08/03/19 08:58,"90 Spruce St, Los Angeles, CA 90001" -244077,Apple Airpods Headphones,1,150,08/01/19 11:24,"873 Cherry St, Austin, TX 73301" -244078,Bose SoundSport Headphones,1,99.99,08/03/19 21:19,"57 4th St, San Francisco, CA 94016" -244079,AA Batteries (4-pack),1,3.84,08/01/19 15:23,"896 6th St, Atlanta, GA 30301" -244080,Bose SoundSport Headphones,1,99.99,08/17/19 10:44,"541 River St, Los Angeles, CA 90001" -244081,Google Phone,1,600,08/13/19 10:13,"40 Chestnut St, Boston, MA 02215" -244082,AAA Batteries (4-pack),2,2.99,08/02/19 06:28,"509 Meadow St, Los Angeles, CA 90001" -244083,Flatscreen TV,1,300,08/02/19 20:08,"251 10th St, Seattle, WA 98101" -244084,Apple Airpods Headphones,2,150,08/22/19 21:21,"844 North St, Portland, ME 04101" -244085,AAA Batteries (4-pack),2,2.99,08/23/19 14:20,"414 Madison St, New York City, NY 10001" -244086,AA Batteries (4-pack),1,3.84,08/17/19 10:56,"532 Hickory St, New York City, NY 10001" -244087,Google Phone,1,600,08/29/19 07:18,"792 Forest St, Seattle, WA 98101" -244088,Apple Airpods Headphones,1,150,08/21/19 12:40,"677 Lakeview St, Los Angeles, CA 90001" -244089,27in FHD Monitor,1,149.99,08/12/19 11:15,"33 Lincoln St, San Francisco, CA 94016" -244090,USB-C Charging Cable,1,11.95,08/22/19 23:08,"87 Adams St, Boston, MA 02215" -244091,AAA Batteries (4-pack),1,2.99,08/22/19 15:38,"63 6th St, Los Angeles, CA 90001" -244092,AAA Batteries (4-pack),1,2.99,08/31/19 19:05,"775 12th St, San Francisco, CA 94016" -244093,USB-C Charging Cable,1,11.95,08/26/19 06:55,"671 Madison St, San Francisco, CA 94016" -244094,Bose SoundSport Headphones,1,99.99,08/01/19 18:45,"998 Center St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -244095,27in 4K Gaming Monitor,1,389.99,08/02/19 08:05,"949 Main St, San Francisco, CA 94016" -244096,AAA Batteries (4-pack),1,2.99,08/28/19 21:17,"381 8th St, Atlanta, GA 30301" -244097,AAA Batteries (4-pack),1,2.99,08/02/19 00:10,"772 Church St, Los Angeles, CA 90001" -244098,USB-C Charging Cable,1,11.95,08/23/19 18:24,"891 Washington St, Atlanta, GA 30301" -244099,27in 4K Gaming Monitor,1,389.99,08/11/19 11:23,"438 Hill St, Portland, ME 04101" -244100,Wired Headphones,1,11.99,08/29/19 22:36,"400 Forest St, New York City, NY 10001" -244101,AAA Batteries (4-pack),3,2.99,08/14/19 17:16,"207 Spruce St, Los Angeles, CA 90001" -244102,Lightning Charging Cable,1,14.95,08/12/19 19:25,"361 Pine St, New York City, NY 10001" -244103,AAA Batteries (4-pack),2,2.99,08/21/19 19:38,"885 Dogwood St, Boston, MA 02215" -244104,Lightning Charging Cable,1,14.95,08/18/19 06:28,"374 Lakeview St, Los Angeles, CA 90001" -244105,USB-C Charging Cable,2,11.95,08/26/19 23:34,"683 Highland St, Boston, MA 02215" -244106,27in FHD Monitor,1,149.99,08/03/19 14:43,"176 11th St, Dallas, TX 75001" -244107,Bose SoundSport Headphones,1,99.99,08/03/19 16:20,"335 Ridge St, New York City, NY 10001" -244108,AAA Batteries (4-pack),1,2.99,08/28/19 09:32,"77 Adams St, Portland, OR 97035" -244109,iPhone,1,700,08/17/19 16:28,"767 Adams St, San Francisco, CA 94016" -244109,Apple Airpods Headphones,1,150,08/17/19 16:28,"767 Adams St, San Francisco, CA 94016" -244110,Wired Headphones,1,11.99,08/12/19 12:48,"459 Spruce St, Portland, OR 97035" -244111,AA Batteries (4-pack),1,3.84,08/16/19 11:40,"879 Sunset St, New York City, NY 10001" -244112,Apple Airpods Headphones,1,150,08/13/19 15:05,"93 12th St, New York City, NY 10001" -244113,USB-C Charging Cable,1,11.95,08/10/19 17:13,"461 Center St, New York City, NY 10001" -244114,Lightning Charging Cable,1,14.95,08/25/19 17:29,"855 11th St, Seattle, WA 98101" -244115,AAA Batteries (4-pack),1,2.99,08/07/19 15:39,"777 West St, Dallas, TX 75001" -244116,AAA Batteries (4-pack),2,2.99,08/15/19 21:00,"372 14th St, Boston, MA 02215" -244117,Wired Headphones,1,11.99,08/20/19 00:08,"865 Highland St, Dallas, TX 75001" -244118,Wired Headphones,1,11.99,08/01/19 14:27,"189 11th St, Portland, OR 97035" -244119,USB-C Charging Cable,1,11.95,08/19/19 12:09,"255 Cedar St, Los Angeles, CA 90001" -244120,ThinkPad Laptop,1,999.99,08/02/19 09:46,"134 Forest St, Austin, TX 73301" -244121,ThinkPad Laptop,1,999.99,08/13/19 08:36,"825 Lakeview St, Boston, MA 02215" -244122,USB-C Charging Cable,1,11.95,08/12/19 00:04,"639 9th St, New York City, NY 10001" -244123,Bose SoundSport Headphones,1,99.99,08/04/19 15:35,"251 Hill St, San Francisco, CA 94016" -244124,Apple Airpods Headphones,1,150,08/18/19 14:30,"780 11th St, New York City, NY 10001" -244125,34in Ultrawide Monitor,1,379.99,08/09/19 20:10,"153 6th St, New York City, NY 10001" -244126,AA Batteries (4-pack),1,3.84,08/29/19 23:11,"157 13th St, San Francisco, CA 94016" -244127,USB-C Charging Cable,1,11.95,08/27/19 23:25,"702 Ridge St, Seattle, WA 98101" -244128,AA Batteries (4-pack),1,3.84,08/12/19 16:28,"214 Adams St, Seattle, WA 98101" -244129,AAA Batteries (4-pack),2,2.99,08/29/19 14:26,"949 Willow St, Atlanta, GA 30301" -244130,Lightning Charging Cable,1,14.95,08/26/19 00:42,"711 Center St, Atlanta, GA 30301" -244131,AAA Batteries (4-pack),1,2.99,08/21/19 18:46,"166 North St, New York City, NY 10001" -244132,Lightning Charging Cable,1,14.95,08/30/19 13:26,"410 Lincoln St, Seattle, WA 98101" -244133,AAA Batteries (4-pack),1,2.99,08/30/19 12:11,"705 Elm St, Los Angeles, CA 90001" -244134,iPhone,1,700,08/22/19 18:11,"929 Main St, Seattle, WA 98101" -244135,AA Batteries (4-pack),1,3.84,08/12/19 23:02,"903 Adams St, Los Angeles, CA 90001" -244136,27in 4K Gaming Monitor,1,389.99,08/23/19 16:52,"585 Park St, Portland, OR 97035" -244137,AAA Batteries (4-pack),1,2.99,08/04/19 07:41,"547 Ridge St, Los Angeles, CA 90001" -244138,iPhone,1,700,08/14/19 19:32,"549 10th St, San Francisco, CA 94016" -244138,Lightning Charging Cable,1,14.95,08/14/19 19:32,"549 10th St, San Francisco, CA 94016" -244139,Lightning Charging Cable,1,14.95,08/04/19 03:39,"830 4th St, San Francisco, CA 94016" -244140,27in 4K Gaming Monitor,1,389.99,08/07/19 14:11,"265 Cherry St, Boston, MA 02215" -244141,Apple Airpods Headphones,1,150,08/14/19 15:58,"883 13th St, Los Angeles, CA 90001" -244142,Macbook Pro Laptop,1,1700,08/09/19 12:22,"835 Pine St, Austin, TX 73301" -244143,27in 4K Gaming Monitor,1,389.99,08/09/19 22:54,"348 Lincoln St, San Francisco, CA 94016" -244144,AAA Batteries (4-pack),4,2.99,08/20/19 10:33,"77 Jackson St, Austin, TX 73301" -244145,Bose SoundSport Headphones,1,99.99,08/13/19 13:51,"172 Lake St, New York City, NY 10001" -244146,Google Phone,1,600,08/25/19 12:56,"123 Center St, Dallas, TX 75001" -244147,ThinkPad Laptop,1,999.99,08/20/19 19:16,"152 Forest St, San Francisco, CA 94016" -244148,Lightning Charging Cable,1,14.95,08/21/19 15:53,"898 Washington St, Austin, TX 73301" -244149,AAA Batteries (4-pack),1,2.99,08/19/19 17:22,"73 Jefferson St, San Francisco, CA 94016" -244150,Wired Headphones,1,11.99,08/05/19 19:00,"501 4th St, Atlanta, GA 30301" -244151,AAA Batteries (4-pack),1,2.99,08/13/19 17:41,"948 Meadow St, New York City, NY 10001" -244152,AA Batteries (4-pack),1,3.84,08/15/19 11:37,"135 Willow St, Atlanta, GA 30301" -244153,AAA Batteries (4-pack),2,2.99,08/19/19 18:02,"918 Lakeview St, Atlanta, GA 30301" -244154,AA Batteries (4-pack),1,3.84,08/22/19 20:34,"804 Center St, Boston, MA 02215" -244155,Lightning Charging Cable,2,14.95,08/18/19 15:17,"702 Center St, Atlanta, GA 30301" -244156,Wired Headphones,1,11.99,08/16/19 00:03,"838 West St, Boston, MA 02215" -244157,USB-C Charging Cable,1,11.95,08/05/19 20:57,"698 Forest St, Boston, MA 02215" -244158,Wired Headphones,1,11.99,08/31/19 02:07,"231 1st St, San Francisco, CA 94016" -244159,Lightning Charging Cable,1,14.95,08/16/19 18:36,"191 Jackson St, Seattle, WA 98101" -244160,ThinkPad Laptop,1,999.99,08/03/19 19:20,"798 1st St, San Francisco, CA 94016" -244161,Lightning Charging Cable,1,14.95,08/24/19 15:45,"716 Lincoln St, Los Angeles, CA 90001" -244162,AA Batteries (4-pack),3,3.84,08/02/19 13:03,"143 14th St, Dallas, TX 75001" -244163,USB-C Charging Cable,1,11.95,08/03/19 15:26,"309 11th St, San Francisco, CA 94016" -244164,USB-C Charging Cable,1,11.95,08/15/19 17:08,"251 Spruce St, Portland, OR 97035" -244165,Wired Headphones,1,11.99,08/26/19 09:29,"202 Jackson St, Dallas, TX 75001" -244166,Flatscreen TV,1,300,08/09/19 17:06,"5 Highland St, San Francisco, CA 94016" -244167,27in FHD Monitor,1,149.99,08/15/19 11:59,"321 Cherry St, Los Angeles, CA 90001" -244168,Lightning Charging Cable,1,14.95,08/31/19 21:59,"294 2nd St, Seattle, WA 98101" -244169,AA Batteries (4-pack),2,3.84,08/27/19 16:55,"897 8th St, Seattle, WA 98101" -244170,USB-C Charging Cable,1,11.95,08/24/19 20:38,"757 7th St, San Francisco, CA 94016" -244171,AA Batteries (4-pack),1,3.84,08/31/19 09:41,"330 Lakeview St, Los Angeles, CA 90001" -244172,27in 4K Gaming Monitor,1,389.99,08/22/19 11:53,"34 4th St, San Francisco, CA 94016" -244173,iPhone,1,700,08/28/19 21:38,"814 Highland St, Portland, OR 97035" -244173,Lightning Charging Cable,1,14.95,08/28/19 21:38,"814 Highland St, Portland, OR 97035" -244174,Apple Airpods Headphones,1,150,08/11/19 10:19,"265 Madison St, Seattle, WA 98101" -244175,Macbook Pro Laptop,1,1700,08/25/19 17:50,"13 Lakeview St, Seattle, WA 98101" -244176,USB-C Charging Cable,1,11.95,08/15/19 01:02,"829 Park St, San Francisco, CA 94016" -244177,Lightning Charging Cable,1,14.95,08/30/19 14:34,"229 14th St, San Francisco, CA 94016" -244178,AAA Batteries (4-pack),1,2.99,08/22/19 09:13,"341 12th St, Los Angeles, CA 90001" -244179,Macbook Pro Laptop,1,1700,08/29/19 13:57,"297 Wilson St, New York City, NY 10001" -244180,Bose SoundSport Headphones,1,99.99,08/28/19 18:57,"758 Ridge St, San Francisco, CA 94016" -244181,Flatscreen TV,1,300,08/20/19 13:50,"469 Meadow St, Portland, ME 04101" -244182,USB-C Charging Cable,1,11.95,08/07/19 20:32,"782 Church St, Portland, OR 97035" -244183,AA Batteries (4-pack),1,3.84,08/02/19 15:40,"48 9th St, San Francisco, CA 94016" -244184,Bose SoundSport Headphones,1,99.99,08/09/19 22:11,"745 Elm St, San Francisco, CA 94016" -244185,AA Batteries (4-pack),1,3.84,08/23/19 21:42,"437 Adams St, Atlanta, GA 30301" -244186,USB-C Charging Cable,2,11.95,08/23/19 18:58,"200 5th St, San Francisco, CA 94016" -244187,AA Batteries (4-pack),1,3.84,08/05/19 20:48,"66 8th St, New York City, NY 10001" -244188,AA Batteries (4-pack),1,3.84,08/28/19 19:51,"772 Main St, Los Angeles, CA 90001" -244189,Lightning Charging Cable,1,14.95,08/04/19 22:27,"329 Jackson St, Los Angeles, CA 90001" -244190,AA Batteries (4-pack),2,3.84,08/09/19 17:38,"370 9th St, Seattle, WA 98101" -244191,Google Phone,1,600,08/13/19 20:46,"982 Center St, Boston, MA 02215" -244191,USB-C Charging Cable,1,11.95,08/13/19 20:46,"982 Center St, Boston, MA 02215" -244191,Bose SoundSport Headphones,1,99.99,08/13/19 20:46,"982 Center St, Boston, MA 02215" -244192,Apple Airpods Headphones,1,150,08/11/19 14:58,"436 4th St, Atlanta, GA 30301" -244193,USB-C Charging Cable,1,11.95,08/27/19 20:22,"621 Maple St, New York City, NY 10001" -244194,USB-C Charging Cable,1,11.95,08/09/19 16:06,"814 10th St, Los Angeles, CA 90001" -244195,Lightning Charging Cable,1,14.95,08/14/19 01:48,"641 8th St, Portland, ME 04101" -244196,20in Monitor,1,109.99,08/25/19 17:10,"62 Johnson St, San Francisco, CA 94016" -244197,Lightning Charging Cable,1,14.95,08/21/19 17:57,"200 West St, Portland, OR 97035" -244198,AA Batteries (4-pack),1,3.84,08/18/19 10:06,"538 Wilson St, Seattle, WA 98101" -244199,27in FHD Monitor,1,149.99,08/28/19 14:37,"147 Madison St, San Francisco, CA 94016" -244200,34in Ultrawide Monitor,1,379.99,08/27/19 20:41,"704 Walnut St, Los Angeles, CA 90001" -244201,AA Batteries (4-pack),1,3.84,08/01/19 13:55,"666 Forest St, San Francisco, CA 94016" -244202,USB-C Charging Cable,1,11.95,08/26/19 11:22,"984 Jackson St, Los Angeles, CA 90001" -244203,LG Washing Machine,1,600.0,08/20/19 08:33,"193 Washington St, Seattle, WA 98101" -244204,USB-C Charging Cable,1,11.95,08/22/19 14:29,"63 Spruce St, Portland, OR 97035" -244205,AA Batteries (4-pack),1,3.84,08/01/19 21:49,"262 South St, Los Angeles, CA 90001" -244206,27in FHD Monitor,1,149.99,08/10/19 21:25,"93 11th St, Dallas, TX 75001" -244207,Apple Airpods Headphones,1,150,08/08/19 21:52,"520 Wilson St, Seattle, WA 98101" -244208,Google Phone,1,600,08/31/19 16:21,"523 Washington St, Portland, ME 04101" -244209,27in FHD Monitor,1,149.99,08/03/19 10:40,"473 13th St, San Francisco, CA 94016" -244210,ThinkPad Laptop,1,999.99,08/13/19 18:11,"668 Church St, Atlanta, GA 30301" -244211,Wired Headphones,1,11.99,08/14/19 19:29,"802 7th St, Austin, TX 73301" -244212,AA Batteries (4-pack),2,3.84,08/22/19 10:57,"268 Adams St, San Francisco, CA 94016" -244213,27in 4K Gaming Monitor,1,389.99,08/15/19 13:04,"715 Washington St, Dallas, TX 75001" -244214,AA Batteries (4-pack),1,3.84,08/07/19 22:18,"991 Center St, Seattle, WA 98101" -244215,ThinkPad Laptop,1,999.99,08/05/19 19:39,"24 14th St, Dallas, TX 75001" -244216,Bose SoundSport Headphones,1,99.99,08/18/19 09:39,"514 Sunset St, New York City, NY 10001" -244217,Wired Headphones,1,11.99,08/30/19 13:22,"576 Washington St, Atlanta, GA 30301" -244218,LG Washing Machine,1,600.0,08/31/19 22:24,"833 Madison St, Los Angeles, CA 90001" -244219,Bose SoundSport Headphones,1,99.99,08/13/19 21:38,"155 Adams St, Boston, MA 02215" -244220,Apple Airpods Headphones,1,150,08/29/19 21:27,"869 Madison St, Portland, OR 97035" -244221,Macbook Pro Laptop,1,1700,08/03/19 06:33,"524 11th St, New York City, NY 10001" -244222,Wired Headphones,1,11.99,08/28/19 19:42,"54 Washington St, New York City, NY 10001" -244223,Bose SoundSport Headphones,1,99.99,08/18/19 14:08,"102 Cherry St, Dallas, TX 75001" -244224,ThinkPad Laptop,1,999.99,08/13/19 17:02,"394 Center St, San Francisco, CA 94016" -244225,Lightning Charging Cable,2,14.95,08/16/19 09:01,"148 9th St, Boston, MA 02215" -244226,Lightning Charging Cable,1,14.95,08/09/19 11:32,"722 Hickory St, Atlanta, GA 30301" -244227,Wired Headphones,1,11.99,08/28/19 11:23,"562 14th St, Austin, TX 73301" -244228,Wired Headphones,1,11.99,08/01/19 16:51,"167 11th St, Boston, MA 02215" -244229,27in 4K Gaming Monitor,1,389.99,08/13/19 18:45,"88 South St, San Francisco, CA 94016" -244230,ThinkPad Laptop,1,999.99,08/02/19 18:30,"386 River St, Boston, MA 02215" -244231,AAA Batteries (4-pack),1,2.99,08/16/19 02:33,"630 West St, San Francisco, CA 94016" -244232,Lightning Charging Cable,1,14.95,08/20/19 22:56,"756 12th St, Los Angeles, CA 90001" -244233,AA Batteries (4-pack),1,3.84,08/27/19 17:38,"323 13th St, San Francisco, CA 94016" -244234,AA Batteries (4-pack),1,3.84,08/29/19 22:54,"799 12th St, Seattle, WA 98101" -244235,USB-C Charging Cable,1,11.95,08/02/19 19:50,"990 Forest St, Portland, OR 97035" -244236,AAA Batteries (4-pack),1,2.99,08/29/19 14:06,"27 Dogwood St, Austin, TX 73301" -244237,AA Batteries (4-pack),1,3.84,08/20/19 18:37,"727 Hill St, San Francisco, CA 94016" -244238,Wired Headphones,1,11.99,08/31/19 15:59,"935 Adams St, New York City, NY 10001" -244239,AA Batteries (4-pack),1,3.84,08/20/19 09:55,"4 Highland St, San Francisco, CA 94016" -244240,Lightning Charging Cable,1,14.95,08/06/19 11:48,"582 5th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -244241,Wired Headphones,1,11.99,08/22/19 21:56,"986 Chestnut St, Boston, MA 02215" -244242,Lightning Charging Cable,1,14.95,08/24/19 23:06,"733 10th St, Boston, MA 02215" -244243,Apple Airpods Headphones,1,150,08/04/19 20:05,"824 Meadow St, Dallas, TX 75001" -244244,Flatscreen TV,1,300,08/28/19 08:33,"668 Cedar St, Atlanta, GA 30301" -244245,Apple Airpods Headphones,1,150,08/14/19 10:12,"940 Meadow St, Dallas, TX 75001" -244245,Wired Headphones,1,11.99,08/14/19 10:12,"940 Meadow St, Dallas, TX 75001" -244246,AA Batteries (4-pack),2,3.84,08/24/19 22:32,"885 Park St, New York City, NY 10001" -244247,Google Phone,1,600,08/02/19 13:09,"842 River St, San Francisco, CA 94016" -244248,Macbook Pro Laptop,1,1700,08/01/19 16:00,"227 Johnson St, Seattle, WA 98101" -244249,Lightning Charging Cable,1,14.95,08/13/19 23:56,"232 Willow St, Seattle, WA 98101" -244250,Bose SoundSport Headphones,1,99.99,08/26/19 07:09,"515 9th St, Atlanta, GA 30301" -244251,Wired Headphones,1,11.99,08/30/19 14:22,"14 14th St, Atlanta, GA 30301" -244252,LG Washing Machine,1,600.0,08/13/19 13:23,"305 Main St, San Francisco, CA 94016" -244253,AA Batteries (4-pack),1,3.84,08/27/19 14:14,"477 Spruce St, Atlanta, GA 30301" -244254,Lightning Charging Cable,1,14.95,08/15/19 12:27,"709 Maple St, Boston, MA 02215" -244255,AA Batteries (4-pack),1,3.84,08/28/19 11:15,"280 Sunset St, San Francisco, CA 94016" -244256,AAA Batteries (4-pack),2,2.99,08/12/19 17:38,"434 Johnson St, New York City, NY 10001" -244257,Lightning Charging Cable,1,14.95,08/22/19 16:55,"455 9th St, San Francisco, CA 94016" -244257,27in 4K Gaming Monitor,1,389.99,08/22/19 16:55,"455 9th St, San Francisco, CA 94016" -244258,27in 4K Gaming Monitor,1,389.99,08/12/19 01:25,"80 Johnson St, Seattle, WA 98101" -244259,Lightning Charging Cable,1,14.95,08/05/19 00:39,"816 9th St, Boston, MA 02215" -244260,ThinkPad Laptop,1,999.99,08/06/19 19:17,"118 5th St, San Francisco, CA 94016" -244261,34in Ultrawide Monitor,1,379.99,08/19/19 12:17,"464 South St, Seattle, WA 98101" -244262,20in Monitor,1,109.99,08/02/19 11:47,"170 Madison St, San Francisco, CA 94016" -244263,Apple Airpods Headphones,1,150,08/20/19 11:27,"267 Lakeview St, Atlanta, GA 30301" -244264,Wired Headphones,1,11.99,08/06/19 14:52,"209 Madison St, Seattle, WA 98101" -244265,Apple Airpods Headphones,1,150,08/21/19 12:12,"204 Hill St, Seattle, WA 98101" -244266,AAA Batteries (4-pack),1,2.99,08/29/19 12:42,"348 Elm St, Dallas, TX 75001" -244267,AA Batteries (4-pack),1,3.84,08/14/19 09:45,"912 Adams St, Los Angeles, CA 90001" -244268,AAA Batteries (4-pack),1,2.99,08/03/19 22:18,"750 Meadow St, San Francisco, CA 94016" -244269,Google Phone,1,600,08/05/19 11:05,"822 Hill St, Seattle, WA 98101" -244270,AAA Batteries (4-pack),1,2.99,08/08/19 12:17,"900 Chestnut St, Boston, MA 02215" -244271,USB-C Charging Cable,1,11.95,08/29/19 18:35,"633 14th St, New York City, NY 10001" -244272,AAA Batteries (4-pack),2,2.99,08/11/19 12:07,"681 Jefferson St, Los Angeles, CA 90001" -244273,AAA Batteries (4-pack),1,2.99,08/03/19 20:22,"631 12th St, Portland, OR 97035" -,,,,, -244274,Wired Headphones,1,11.99,08/04/19 04:27,"328 Forest St, Portland, OR 97035" -244275,AAA Batteries (4-pack),2,2.99,08/01/19 13:10,"980 2nd St, Boston, MA 02215" -244276,34in Ultrawide Monitor,1,379.99,08/19/19 09:32,"112 6th St, San Francisco, CA 94016" -244277,AA Batteries (4-pack),2,3.84,08/31/19 18:19,"371 Chestnut St, New York City, NY 10001" -244278,AA Batteries (4-pack),1,3.84,08/26/19 10:17,"941 Dogwood St, Boston, MA 02215" -244279,Google Phone,1,600,08/30/19 23:16,"403 Lincoln St, San Francisco, CA 94016" -,,,,, -244280,Bose SoundSport Headphones,1,99.99,08/05/19 14:49,"787 Highland St, Los Angeles, CA 90001" -244281,Apple Airpods Headphones,1,150,08/09/19 14:26,"937 Sunset St, New York City, NY 10001" -244282,USB-C Charging Cable,1,11.95,08/30/19 20:20,"521 Ridge St, San Francisco, CA 94016" -244283,34in Ultrawide Monitor,1,379.99,08/23/19 22:21,"706 6th St, San Francisco, CA 94016" -244284,AAA Batteries (4-pack),2,2.99,08/26/19 21:46,"508 4th St, New York City, NY 10001" -244285,27in FHD Monitor,1,149.99,08/11/19 06:06,"577 Main St, New York City, NY 10001" -244286,USB-C Charging Cable,1,11.95,08/26/19 13:49,"659 Spruce St, Dallas, TX 75001" -244287,USB-C Charging Cable,1,11.95,08/25/19 16:29,"98 Jackson St, San Francisco, CA 94016" -244288,AA Batteries (4-pack),1,3.84,08/27/19 00:34,"916 Adams St, New York City, NY 10001" -244289,AAA Batteries (4-pack),1,2.99,08/28/19 15:51,"912 Madison St, Seattle, WA 98101" -244290,27in FHD Monitor,1,149.99,08/14/19 10:38,"794 Wilson St, Los Angeles, CA 90001" -244291,Apple Airpods Headphones,1,150,08/10/19 11:41,"844 Pine St, San Francisco, CA 94016" -244292,ThinkPad Laptop,1,999.99,08/08/19 10:32,"742 Hickory St, Los Angeles, CA 90001" -244293,Wired Headphones,2,11.99,08/19/19 16:12,"402 10th St, Boston, MA 02215" -244294,Apple Airpods Headphones,1,150,08/13/19 20:28,"910 Ridge St, San Francisco, CA 94016" -244295,USB-C Charging Cable,1,11.95,08/28/19 17:20,"508 Hickory St, Portland, ME 04101" -244296,AA Batteries (4-pack),1,3.84,08/26/19 08:08,"89 Johnson St, New York City, NY 10001" -244297,AA Batteries (4-pack),1,3.84,08/20/19 11:34,"853 Wilson St, Seattle, WA 98101" -244298,27in 4K Gaming Monitor,1,389.99,08/09/19 13:01,"836 8th St, Los Angeles, CA 90001" -244299,AA Batteries (4-pack),2,3.84,08/22/19 20:22,"57 Hill St, New York City, NY 10001" -244300,AAA Batteries (4-pack),1,2.99,08/26/19 11:44,"371 Washington St, Los Angeles, CA 90001" -244301,Wired Headphones,1,11.99,08/06/19 13:33,"499 1st St, Portland, OR 97035" -244302,USB-C Charging Cable,1,11.95,08/18/19 21:16,"935 5th St, New York City, NY 10001" -244303,Wired Headphones,1,11.99,08/18/19 19:30,"570 Sunset St, San Francisco, CA 94016" -244304,AAA Batteries (4-pack),1,2.99,08/21/19 15:31,"474 Maple St, San Francisco, CA 94016" -244305,Apple Airpods Headphones,1,150,08/18/19 12:16,"51 Walnut St, Los Angeles, CA 90001" -244306,AA Batteries (4-pack),2,3.84,08/29/19 09:49,"349 4th St, Seattle, WA 98101" -244307,Google Phone,1,600,08/18/19 17:03,"913 14th St, Dallas, TX 75001" -244307,USB-C Charging Cable,1,11.95,08/18/19 17:03,"913 14th St, Dallas, TX 75001" -244307,Wired Headphones,1,11.99,08/18/19 17:03,"913 14th St, Dallas, TX 75001" -244308,27in FHD Monitor,1,149.99,08/26/19 07:56,"554 South St, San Francisco, CA 94016" -244309,Apple Airpods Headphones,1,150,08/27/19 17:06,"371 9th St, Seattle, WA 98101" -244310,20in Monitor,1,109.99,08/17/19 21:24,"675 Jackson St, Portland, OR 97035" -244311,USB-C Charging Cable,1,11.95,08/15/19 22:37,"755 Ridge St, New York City, NY 10001" -244312,Wired Headphones,1,11.99,08/23/19 21:16,"575 10th St, Boston, MA 02215" -244313,AA Batteries (4-pack),1,3.84,08/28/19 18:02,"902 North St, Austin, TX 73301" -244314,Bose SoundSport Headphones,1,99.99,08/30/19 11:31,"984 Elm St, Austin, TX 73301" -244315,Lightning Charging Cable,1,14.95,08/30/19 10:05,"951 West St, San Francisco, CA 94016" -244316,Lightning Charging Cable,1,14.95,08/11/19 20:00,"846 Cherry St, San Francisco, CA 94016" -244317,Apple Airpods Headphones,1,150,08/02/19 22:20,"768 River St, Dallas, TX 75001" -244318,AAA Batteries (4-pack),1,2.99,08/22/19 21:28,"655 7th St, Boston, MA 02215" -244319,Bose SoundSport Headphones,1,99.99,08/06/19 18:05,"84 Lake St, Dallas, TX 75001" -244320,USB-C Charging Cable,1,11.95,08/13/19 19:23,"234 Hill St, Los Angeles, CA 90001" -244321,AA Batteries (4-pack),2,3.84,08/09/19 15:51,"141 Spruce St, Seattle, WA 98101" -244322,Macbook Pro Laptop,1,1700,08/10/19 19:58,"225 Walnut St, San Francisco, CA 94016" -244323,AA Batteries (4-pack),1,3.84,08/25/19 08:09,"198 10th St, Portland, OR 97035" -244324,AA Batteries (4-pack),1,3.84,08/24/19 10:42,"12 Wilson St, San Francisco, CA 94016" -244325,AA Batteries (4-pack),3,3.84,08/05/19 15:28,"655 Jefferson St, San Francisco, CA 94016" -244326,Bose SoundSport Headphones,1,99.99,08/20/19 10:30,"612 Lakeview St, Boston, MA 02215" -244327,Wired Headphones,1,11.99,08/12/19 21:33,"967 Meadow St, Boston, MA 02215" -244328,AAA Batteries (4-pack),1,2.99,08/01/19 22:51,"498 Cherry St, Dallas, TX 75001" -244328,Bose SoundSport Headphones,1,99.99,08/01/19 22:51,"498 Cherry St, Dallas, TX 75001" -244329,Apple Airpods Headphones,1,150,08/15/19 13:55,"864 13th St, Los Angeles, CA 90001" -244330,27in 4K Gaming Monitor,1,389.99,08/19/19 12:51,"225 Willow St, Dallas, TX 75001" -244330,USB-C Charging Cable,1,11.95,08/19/19 12:51,"225 Willow St, Dallas, TX 75001" -244331,Apple Airpods Headphones,1,150,08/18/19 11:55,"846 West St, Seattle, WA 98101" -244332,Wired Headphones,1,11.99,08/14/19 16:33,"625 Pine St, San Francisco, CA 94016" -244333,AAA Batteries (4-pack),1,2.99,08/26/19 08:42,"824 12th St, Dallas, TX 75001" -244334,Lightning Charging Cable,1,14.95,08/07/19 09:19,"119 Main St, Los Angeles, CA 90001" -244335,AAA Batteries (4-pack),1,2.99,08/29/19 19:23,"341 Elm St, Los Angeles, CA 90001" -244336,Flatscreen TV,1,300,08/22/19 20:23,"950 14th St, San Francisco, CA 94016" -244337,Lightning Charging Cable,1,14.95,08/12/19 12:26,"223 Forest St, Dallas, TX 75001" -244338,Google Phone,1,600,08/09/19 11:22,"25 Park St, Los Angeles, CA 90001" -244338,USB-C Charging Cable,1,11.95,08/09/19 11:22,"25 Park St, Los Angeles, CA 90001" -244339,Macbook Pro Laptop,1,1700,08/10/19 18:26,"158 Washington St, Atlanta, GA 30301" -244340,Macbook Pro Laptop,1,1700,08/17/19 10:58,"873 6th St, Seattle, WA 98101" -244341,Lightning Charging Cable,1,14.95,08/13/19 10:58,"517 Jackson St, San Francisco, CA 94016" -244342,ThinkPad Laptop,1,999.99,08/26/19 17:56,"302 Wilson St, Los Angeles, CA 90001" -244343,Apple Airpods Headphones,1,150,08/08/19 14:22,"554 Pine St, New York City, NY 10001" -244344,AAA Batteries (4-pack),3,2.99,08/02/19 10:06,"826 Chestnut St, Portland, OR 97035" -244345,27in 4K Gaming Monitor,1,389.99,08/14/19 17:12,"861 Highland St, San Francisco, CA 94016" -244346,Google Phone,1,600,08/26/19 17:34,"957 South St, San Francisco, CA 94016" -244346,USB-C Charging Cable,1,11.95,08/26/19 17:34,"957 South St, San Francisco, CA 94016" -244346,Wired Headphones,1,11.99,08/26/19 17:34,"957 South St, San Francisco, CA 94016" -244347,Apple Airpods Headphones,2,150,08/28/19 22:00,"611 Spruce St, Seattle, WA 98101" -244348,Google Phone,1,600,08/06/19 08:54,"786 4th St, Atlanta, GA 30301" -244349,AA Batteries (4-pack),1,3.84,08/30/19 15:58,"653 6th St, Portland, OR 97035" -244350,Lightning Charging Cable,1,14.95,08/22/19 08:22,"729 Pine St, Boston, MA 02215" -244351,AAA Batteries (4-pack),2,2.99,08/14/19 17:13,"857 Madison St, Boston, MA 02215" -244352,AAA Batteries (4-pack),4,2.99,08/27/19 17:11,"390 Willow St, Seattle, WA 98101" -244353,Apple Airpods Headphones,1,150,08/28/19 07:19,"387 Ridge St, San Francisco, CA 94016" -244354,Lightning Charging Cable,1,14.95,08/09/19 22:46,"844 Dogwood St, Los Angeles, CA 90001" -244355,ThinkPad Laptop,1,999.99,08/07/19 19:59,"122 Lake St, Austin, TX 73301" -244356,ThinkPad Laptop,1,999.99,08/11/19 10:41,"978 5th St, Atlanta, GA 30301" -244357,Bose SoundSport Headphones,1,99.99,08/08/19 13:57,"548 Chestnut St, Portland, OR 97035" -244358,AA Batteries (4-pack),2,3.84,08/03/19 14:50,"56 Sunset St, Seattle, WA 98101" -244359,AAA Batteries (4-pack),1,2.99,08/29/19 10:08,"802 5th St, New York City, NY 10001" -244360,Apple Airpods Headphones,1,150,08/23/19 06:54,"858 Washington St, Los Angeles, CA 90001" -244361,AAA Batteries (4-pack),1,2.99,08/24/19 19:38,"726 Maple St, Boston, MA 02215" -244362,27in FHD Monitor,1,149.99,08/17/19 20:21,"62 West St, San Francisco, CA 94016" -244363,27in FHD Monitor,1,149.99,08/13/19 23:05,"877 Ridge St, New York City, NY 10001" -244364,Bose SoundSport Headphones,1,99.99,08/18/19 17:57,"354 South St, Atlanta, GA 30301" -244365,27in 4K Gaming Monitor,1,389.99,08/14/19 21:35,"415 Church St, New York City, NY 10001" -244366,27in FHD Monitor,1,149.99,08/06/19 19:43,"801 Jackson St, Boston, MA 02215" -244367,AAA Batteries (4-pack),1,2.99,08/06/19 13:51,"145 Lake St, Atlanta, GA 30301" -244368,34in Ultrawide Monitor,1,379.99,08/30/19 20:31,"879 Park St, New York City, NY 10001" -244369,AAA Batteries (4-pack),1,2.99,08/17/19 14:30,"777 13th St, Boston, MA 02215" -244370,Apple Airpods Headphones,1,150,08/06/19 19:57,"884 Chestnut St, San Francisco, CA 94016" -244371,27in FHD Monitor,1,149.99,08/12/19 19:01,"112 14th St, Los Angeles, CA 90001" -244372,Lightning Charging Cable,1,14.95,08/21/19 15:13,"963 9th St, Portland, OR 97035" -244373,AA Batteries (4-pack),2,3.84,08/16/19 23:59,"351 Jackson St, Portland, OR 97035" -244374,USB-C Charging Cable,1,11.95,08/27/19 12:02,"616 8th St, New York City, NY 10001" -244375,Lightning Charging Cable,2,14.95,08/04/19 23:21,"29 5th St, Dallas, TX 75001" -244376,USB-C Charging Cable,1,11.95,08/01/19 22:50,"999 Meadow St, Atlanta, GA 30301" -244377,USB-C Charging Cable,1,11.95,08/01/19 16:51,"859 South St, San Francisco, CA 94016" -244378,Apple Airpods Headphones,1,150,08/01/19 15:28,"931 Washington St, Dallas, TX 75001" -244379,USB-C Charging Cable,1,11.95,08/19/19 10:47,"562 4th St, San Francisco, CA 94016" -244380,20in Monitor,1,109.99,08/01/19 13:26,"887 Lakeview St, New York City, NY 10001" -244381,Apple Airpods Headphones,1,150,08/09/19 07:29,"572 5th St, Portland, OR 97035" -244382,USB-C Charging Cable,1,11.95,08/16/19 10:29,"948 Lincoln St, Portland, ME 04101" -244383,Lightning Charging Cable,1,14.95,08/07/19 19:34,"854 Willow St, Los Angeles, CA 90001" -244384,AA Batteries (4-pack),1,3.84,08/25/19 18:01,"490 4th St, Los Angeles, CA 90001" -244385,AAA Batteries (4-pack),1,2.99,08/27/19 20:17,"144 Maple St, Portland, OR 97035" -244386,AAA Batteries (4-pack),1,2.99,08/10/19 19:00,"621 Park St, Seattle, WA 98101" -244387,27in 4K Gaming Monitor,1,389.99,08/07/19 17:52,"939 1st St, Boston, MA 02215" -244388,Lightning Charging Cable,1,14.95,08/27/19 12:45,"724 South St, Los Angeles, CA 90001" -244389,27in 4K Gaming Monitor,1,389.99,08/02/19 21:37,"631 West St, Atlanta, GA 30301" -244390,Lightning Charging Cable,1,14.95,08/13/19 12:08,"286 Dogwood St, Los Angeles, CA 90001" -244391,Wired Headphones,1,11.99,08/16/19 18:03,"276 10th St, Austin, TX 73301" -244392,Bose SoundSport Headphones,1,99.99,08/11/19 16:24,"113 Forest St, San Francisco, CA 94016" -244393,Wired Headphones,1,11.99,08/28/19 18:07,"884 Forest St, Boston, MA 02215" -244394,AA Batteries (4-pack),1,3.84,08/10/19 14:45,"878 2nd St, New York City, NY 10001" -244395,USB-C Charging Cable,1,11.95,08/20/19 16:24,"627 Main St, San Francisco, CA 94016" -244396,Bose SoundSport Headphones,1,99.99,08/28/19 14:53,"377 Jackson St, Austin, TX 73301" -244397,Wired Headphones,1,11.99,08/20/19 15:13,"98 Washington St, New York City, NY 10001" -244398,AAA Batteries (4-pack),1,2.99,08/18/19 13:53,"748 North St, New York City, NY 10001" -244399,Apple Airpods Headphones,1,150,08/07/19 09:06,"284 Jefferson St, New York City, NY 10001" -244400,USB-C Charging Cable,1,11.95,08/29/19 13:00,"771 14th St, Seattle, WA 98101" -244401,Flatscreen TV,1,300,08/01/19 10:46,"472 Church St, San Francisco, CA 94016" -244402,USB-C Charging Cable,1,11.95,08/28/19 19:48,"859 10th St, Los Angeles, CA 90001" -244403,Macbook Pro Laptop,1,1700,08/30/19 15:05,"820 Washington St, Los Angeles, CA 90001" -244404,Wired Headphones,1,11.99,08/12/19 17:44,"106 Forest St, San Francisco, CA 94016" -244405,Apple Airpods Headphones,1,150,08/13/19 13:33,"144 Pine St, Dallas, TX 75001" -244406,AA Batteries (4-pack),1,3.84,08/22/19 23:28,"11 South St, Portland, OR 97035" -244407,20in Monitor,1,109.99,08/01/19 22:04,"715 Adams St, San Francisco, CA 94016" -244408,AAA Batteries (4-pack),1,2.99,08/15/19 13:29,"137 Hickory St, San Francisco, CA 94016" -244409,USB-C Charging Cable,1,11.95,08/31/19 08:43,"142 Elm St, New York City, NY 10001" -244410,AA Batteries (4-pack),1,3.84,08/03/19 20:00,"317 Forest St, Portland, OR 97035" -244411,Lightning Charging Cable,1,14.95,08/12/19 11:27,"294 Lincoln St, Atlanta, GA 30301" -244412,Flatscreen TV,1,300,08/15/19 09:35,"772 6th St, Portland, OR 97035" -244413,Wired Headphones,1,11.99,08/23/19 15:35,"633 Madison St, San Francisco, CA 94016" -244414,Macbook Pro Laptop,1,1700,08/22/19 14:02,"505 13th St, Atlanta, GA 30301" -244415,AA Batteries (4-pack),1,3.84,08/07/19 11:49,"505 Lakeview St, San Francisco, CA 94016" -244416,34in Ultrawide Monitor,1,379.99,08/18/19 13:28,"658 14th St, New York City, NY 10001" -244417,27in FHD Monitor,1,149.99,08/30/19 17:06,"407 Dogwood St, Boston, MA 02215" -244418,Wired Headphones,1,11.99,08/05/19 11:38,"81 Chestnut St, New York City, NY 10001" -244419,ThinkPad Laptop,1,999.99,08/18/19 23:27,"364 7th St, Portland, OR 97035" -244420,ThinkPad Laptop,1,999.99,08/10/19 19:01,"103 Johnson St, San Francisco, CA 94016" -244421,34in Ultrawide Monitor,1,379.99,08/27/19 15:27,"148 Dogwood St, Boston, MA 02215" -244422,AA Batteries (4-pack),1,3.84,08/10/19 14:45,"546 Highland St, Atlanta, GA 30301" -244423,Apple Airpods Headphones,1,150,08/09/19 15:46,"949 River St, San Francisco, CA 94016" -244424,iPhone,1,700,08/02/19 23:58,"488 6th St, San Francisco, CA 94016" -244425,iPhone,1,700,08/23/19 13:55,"460 Hickory St, Atlanta, GA 30301" -244426,Apple Airpods Headphones,1,150,08/25/19 10:34,"866 Jackson St, New York City, NY 10001" -244427,AAA Batteries (4-pack),1,2.99,08/22/19 17:44,"417 Forest St, Portland, ME 04101" -244428,USB-C Charging Cable,2,11.95,08/30/19 09:14,"5 5th St, Portland, ME 04101" -244429,Apple Airpods Headphones,1,150,08/28/19 19:41,"513 West St, Seattle, WA 98101" -244430,Lightning Charging Cable,1,14.95,08/25/19 20:07,"920 Cedar St, Los Angeles, CA 90001" -244431,AAA Batteries (4-pack),1,2.99,08/18/19 11:59,"907 4th St, Portland, OR 97035" -244432,USB-C Charging Cable,1,11.95,08/02/19 12:05,"772 West St, Seattle, WA 98101" -244433,USB-C Charging Cable,1,11.95,08/17/19 16:48,"234 Main St, San Francisco, CA 94016" -244434,Macbook Pro Laptop,1,1700,08/20/19 14:49,"399 Lincoln St, Atlanta, GA 30301" -244435,Bose SoundSport Headphones,1,99.99,08/11/19 19:31,"608 Meadow St, San Francisco, CA 94016" -244436,Apple Airpods Headphones,1,150,08/22/19 19:04,"339 South St, San Francisco, CA 94016" -244437,Lightning Charging Cable,1,14.95,08/18/19 10:17,"241 Meadow St, New York City, NY 10001" -244438,Wired Headphones,2,11.99,08/09/19 03:48,"136 Park St, San Francisco, CA 94016" -244439,AAA Batteries (4-pack),1,2.99,08/17/19 10:26,"111 Lakeview St, Los Angeles, CA 90001" -244440,USB-C Charging Cable,1,11.95,08/20/19 10:24,"502 6th St, San Francisco, CA 94016" -244441,ThinkPad Laptop,1,999.99,08/24/19 17:07,"290 13th St, San Francisco, CA 94016" -244442,USB-C Charging Cable,1,11.95,08/11/19 18:45,"413 6th St, New York City, NY 10001" -244443,Wired Headphones,1,11.99,08/30/19 19:11,"292 Meadow St, San Francisco, CA 94016" -244444,AA Batteries (4-pack),1,3.84,08/30/19 01:49,"995 West St, San Francisco, CA 94016" -244445,USB-C Charging Cable,1,11.95,08/05/19 15:50,"893 8th St, Los Angeles, CA 90001" -244446,AAA Batteries (4-pack),1,2.99,08/28/19 21:15,"390 5th St, Dallas, TX 75001" -244447,Vareebadd Phone,1,400,08/18/19 11:04,"836 6th St, Los Angeles, CA 90001" -244448,AAA Batteries (4-pack),2,2.99,08/04/19 12:26,"42 2nd St, San Francisco, CA 94016" -244449,Bose SoundSport Headphones,1,99.99,08/12/19 12:52,"246 Park St, Los Angeles, CA 90001" -244450,27in 4K Gaming Monitor,1,389.99,08/28/19 20:36,"722 6th St, Los Angeles, CA 90001" -244451,Wired Headphones,1,11.99,08/18/19 22:44,"981 Ridge St, Los Angeles, CA 90001" -244452,AA Batteries (4-pack),1,3.84,08/15/19 18:38,"634 Hickory St, San Francisco, CA 94016" -244453,27in 4K Gaming Monitor,1,389.99,08/03/19 14:41,"920 Hickory St, San Francisco, CA 94016" -244454,Bose SoundSport Headphones,1,99.99,08/11/19 21:39,"327 North St, San Francisco, CA 94016" -244455,AA Batteries (4-pack),2,3.84,08/01/19 16:39,"959 9th St, Boston, MA 02215" -244456,20in Monitor,1,109.99,08/20/19 20:57,"354 2nd St, New York City, NY 10001" -244457,AAA Batteries (4-pack),1,2.99,08/24/19 21:27,"384 9th St, Los Angeles, CA 90001" -244458,Lightning Charging Cable,1,14.95,08/02/19 18:48,"979 Sunset St, Seattle, WA 98101" -244459,Wired Headphones,1,11.99,08/19/19 16:27,"563 7th St, Los Angeles, CA 90001" -244460,ThinkPad Laptop,1,999.99,08/17/19 14:31,"257 Washington St, Boston, MA 02215" -244461,Bose SoundSport Headphones,1,99.99,08/21/19 12:01,"213 Pine St, Boston, MA 02215" -244461,AAA Batteries (4-pack),1,2.99,08/21/19 12:01,"213 Pine St, Boston, MA 02215" -244462,Bose SoundSport Headphones,1,99.99,08/16/19 11:31,"444 Hickory St, Los Angeles, CA 90001" -244463,AA Batteries (4-pack),1,3.84,08/28/19 19:25,"109 Park St, Atlanta, GA 30301" -244464,AAA Batteries (4-pack),4,2.99,08/28/19 17:14,"804 5th St, New York City, NY 10001" -244465,AA Batteries (4-pack),1,3.84,08/14/19 10:12,"502 Adams St, San Francisco, CA 94016" -244466,AA Batteries (4-pack),2,3.84,08/09/19 11:08,"540 Sunset St, San Francisco, CA 94016" -244467,USB-C Charging Cable,1,11.95,08/31/19 14:12,"354 Main St, Los Angeles, CA 90001" -244468,Lightning Charging Cable,1,14.95,08/23/19 16:47,"342 Church St, Dallas, TX 75001" -244469,ThinkPad Laptop,1,999.99,08/05/19 21:57,"55 Dogwood St, Los Angeles, CA 90001" -244470,Apple Airpods Headphones,1,150,08/08/19 20:04,"272 13th St, San Francisco, CA 94016" -244471,27in 4K Gaming Monitor,1,389.99,08/12/19 18:29,"54 Walnut St, San Francisco, CA 94016" -244472,Wired Headphones,1,11.99,08/14/19 13:13,"567 12th St, Atlanta, GA 30301" -244473,Lightning Charging Cable,1,14.95,08/12/19 20:54,"32 2nd St, New York City, NY 10001" -244474,Bose SoundSport Headphones,1,99.99,08/28/19 17:34,"350 Hickory St, Los Angeles, CA 90001" -244475,27in FHD Monitor,1,149.99,08/24/19 21:13,"710 9th St, Portland, OR 97035" -244476,AAA Batteries (4-pack),1,2.99,08/05/19 08:57,"648 7th St, Dallas, TX 75001" -244477,AA Batteries (4-pack),2,3.84,08/12/19 04:08,"123 2nd St, Portland, ME 04101" -244478,27in FHD Monitor,1,149.99,08/09/19 02:18,"686 Jefferson St, Atlanta, GA 30301" -244479,Wired Headphones,1,11.99,08/12/19 12:01,"880 10th St, Los Angeles, CA 90001" -244480,iPhone,1,700,08/27/19 17:31,"813 Washington St, Boston, MA 02215" -244481,AA Batteries (4-pack),1,3.84,08/09/19 19:43,"527 1st St, San Francisco, CA 94016" -244482,Apple Airpods Headphones,1,150,08/17/19 15:17,"179 Elm St, San Francisco, CA 94016" -244483,Lightning Charging Cable,1,14.95,08/20/19 08:44,"809 Elm St, Austin, TX 73301" -244484,Lightning Charging Cable,1,14.95,08/07/19 12:04,"206 Washington St, Seattle, WA 98101" -244484,Bose SoundSport Headphones,1,99.99,08/07/19 12:04,"206 Washington St, Seattle, WA 98101" -244485,AAA Batteries (4-pack),1,2.99,08/03/19 14:00,"98 Adams St, Los Angeles, CA 90001" -244486,Macbook Pro Laptop,1,1700,08/26/19 11:42,"701 Forest St, Dallas, TX 75001" -244487,Apple Airpods Headphones,1,150,08/27/19 11:09,"961 Sunset St, Boston, MA 02215" -244488,27in FHD Monitor,1,149.99,08/24/19 21:55,"117 6th St, New York City, NY 10001" -244489,Apple Airpods Headphones,1,150,08/22/19 10:35,"892 Johnson St, Dallas, TX 75001" -244490,Apple Airpods Headphones,1,150,08/23/19 14:47,"330 Wilson St, San Francisco, CA 94016" -244491,Lightning Charging Cable,1,14.95,08/24/19 20:10,"196 Washington St, Austin, TX 73301" -244492,USB-C Charging Cable,1,11.95,08/12/19 21:00,"518 North St, New York City, NY 10001" -244493,Wired Headphones,1,11.99,08/21/19 22:50,"556 Madison St, Los Angeles, CA 90001" -244494,Bose SoundSport Headphones,1,99.99,08/26/19 18:13,"606 Wilson St, San Francisco, CA 94016" -244495,Google Phone,1,600,08/10/19 10:55,"587 River St, San Francisco, CA 94016" -244495,Bose SoundSport Headphones,1,99.99,08/10/19 10:55,"587 River St, San Francisco, CA 94016" -244496,34in Ultrawide Monitor,1,379.99,08/13/19 21:56,"393 Dogwood St, Portland, OR 97035" -244497,USB-C Charging Cable,1,11.95,08/14/19 21:08,"507 Ridge St, Austin, TX 73301" -244498,Flatscreen TV,1,300,08/25/19 19:13,"857 Center St, Dallas, TX 75001" -244499,iPhone,1,700,08/17/19 16:34,"146 Pine St, Dallas, TX 75001" -244500,ThinkPad Laptop,1,999.99,08/09/19 23:40,"839 Jefferson St, Seattle, WA 98101" -244501,27in 4K Gaming Monitor,1,389.99,08/05/19 19:01,"871 Chestnut St, San Francisco, CA 94016" -244502,AA Batteries (4-pack),1,3.84,08/13/19 15:06,"307 Ridge St, Dallas, TX 75001" -244503,Wired Headphones,1,11.99,08/15/19 17:14,"587 Lincoln St, Dallas, TX 75001" -244504,AAA Batteries (4-pack),4,2.99,08/15/19 18:58,"493 2nd St, San Francisco, CA 94016" -244505,USB-C Charging Cable,1,11.95,08/15/19 22:52,"217 13th St, Los Angeles, CA 90001" -244505,Apple Airpods Headphones,1,150,08/15/19 22:52,"217 13th St, Los Angeles, CA 90001" -244506,iPhone,1,700,08/04/19 23:26,"915 Center St, Los Angeles, CA 90001" -244507,34in Ultrawide Monitor,1,379.99,08/26/19 10:40,"702 Hickory St, Los Angeles, CA 90001" -244508,Macbook Pro Laptop,1,1700,08/24/19 18:13,"961 4th St, New York City, NY 10001" -244509,AAA Batteries (4-pack),1,2.99,08/07/19 09:31,"279 Hickory St, Austin, TX 73301" -244510,Wired Headphones,1,11.99,08/07/19 20:49,"24 Wilson St, Atlanta, GA 30301" -244511,USB-C Charging Cable,1,11.95,08/22/19 13:30,"654 4th St, Seattle, WA 98101" -244512,27in 4K Gaming Monitor,1,389.99,08/12/19 13:03,"8 Chestnut St, Los Angeles, CA 90001" -244513,Bose SoundSport Headphones,1,99.99,08/11/19 12:18,"809 Johnson St, Atlanta, GA 30301" -244514,Wired Headphones,2,11.99,08/28/19 07:54,"394 Dogwood St, Atlanta, GA 30301" -244515,Apple Airpods Headphones,1,150,08/21/19 11:24,"365 Madison St, Los Angeles, CA 90001" -244516,AA Batteries (4-pack),2,3.84,08/19/19 11:08,"495 Ridge St, Boston, MA 02215" -244517,Wired Headphones,1,11.99,08/01/19 10:43,"135 Lakeview St, Atlanta, GA 30301" -244518,AA Batteries (4-pack),5,3.84,08/19/19 11:05,"490 Wilson St, Los Angeles, CA 90001" -244519,Macbook Pro Laptop,1,1700,08/04/19 11:09,"127 Highland St, Atlanta, GA 30301" -244520,Apple Airpods Headphones,1,150,08/31/19 09:56,"856 Madison St, Boston, MA 02215" -244521,USB-C Charging Cable,1,11.95,08/14/19 12:17,"777 Adams St, San Francisco, CA 94016" -244522,Google Phone,1,600,08/20/19 07:23,"853 Washington St, Atlanta, GA 30301" -244523,USB-C Charging Cable,1,11.95,08/25/19 18:37,"35 Lincoln St, Austin, TX 73301" -244524,Apple Airpods Headphones,1,150,08/14/19 19:56,"763 Lake St, San Francisco, CA 94016" -244525,AAA Batteries (4-pack),1,2.99,08/07/19 22:15,"474 6th St, San Francisco, CA 94016" -244526,AA Batteries (4-pack),1,3.84,08/15/19 00:26,"316 Washington St, New York City, NY 10001" -244527,34in Ultrawide Monitor,1,379.99,08/05/19 17:17,"942 Washington St, Seattle, WA 98101" -244528,USB-C Charging Cable,3,11.95,08/15/19 12:46,"394 8th St, Boston, MA 02215" -244529,Apple Airpods Headphones,1,150,08/17/19 22:46,"129 1st St, San Francisco, CA 94016" -244530,Bose SoundSport Headphones,1,99.99,08/12/19 20:58,"92 Lincoln St, San Francisco, CA 94016" -244531,Lightning Charging Cable,1,14.95,08/26/19 14:12,"752 Lake St, Portland, OR 97035" -244532,AA Batteries (4-pack),1,3.84,08/07/19 01:20,"194 Main St, Los Angeles, CA 90001" -244533,34in Ultrawide Monitor,1,379.99,08/17/19 11:52,"406 Highland St, San Francisco, CA 94016" -244534,Wired Headphones,1,11.99,08/08/19 12:14,"66 4th St, Seattle, WA 98101" -244535,USB-C Charging Cable,1,11.95,08/11/19 10:36,"425 Hill St, Dallas, TX 75001" -244536,USB-C Charging Cable,1,11.95,08/09/19 08:26,"128 Elm St, New York City, NY 10001" -244537,Bose SoundSport Headphones,1,99.99,08/11/19 20:29,"203 Meadow St, San Francisco, CA 94016" -244538,iPhone,1,700,08/13/19 15:34,"498 Main St, Los Angeles, CA 90001" -244539,Apple Airpods Headphones,1,150,08/26/19 11:43,"188 13th St, Atlanta, GA 30301" -244540,Apple Airpods Headphones,1,150,08/30/19 21:43,"820 Elm St, Boston, MA 02215" -244541,27in FHD Monitor,1,149.99,08/18/19 12:20,"688 10th St, New York City, NY 10001" -244542,Bose SoundSport Headphones,1,99.99,08/01/19 18:46,"918 Hickory St, San Francisco, CA 94016" -244543,Bose SoundSport Headphones,1,99.99,08/12/19 13:31,"118 Lake St, Boston, MA 02215" -244544,LG Washing Machine,1,600.0,08/17/19 15:26,"533 South St, Dallas, TX 75001" -244545,Google Phone,1,600,08/27/19 12:13,"410 1st St, Seattle, WA 98101" -244546,USB-C Charging Cable,1,11.95,08/03/19 23:16,"837 Lakeview St, San Francisco, CA 94016" -244547,Bose SoundSport Headphones,1,99.99,08/12/19 14:51,"982 Cedar St, San Francisco, CA 94016" -244548,27in FHD Monitor,1,149.99,08/10/19 18:54,"749 Lincoln St, Boston, MA 02215" -244549,20in Monitor,1,109.99,08/28/19 16:14,"195 Wilson St, Seattle, WA 98101" -244550,Lightning Charging Cable,2,14.95,08/02/19 11:32,"170 11th St, San Francisco, CA 94016" -244551,Lightning Charging Cable,1,14.95,08/06/19 19:29,"226 Hill St, Dallas, TX 75001" -244552,AAA Batteries (4-pack),1,2.99,08/07/19 17:08,"397 Forest St, Seattle, WA 98101" -244553,AAA Batteries (4-pack),1,2.99,08/27/19 15:42,"146 Johnson St, Los Angeles, CA 90001" -244554,LG Washing Machine,1,600.0,08/20/19 14:25,"550 4th St, Portland, ME 04101" -244555,Bose SoundSport Headphones,1,99.99,08/02/19 22:01,"961 Church St, Atlanta, GA 30301" -244556,Wired Headphones,1,11.99,08/10/19 00:07,"473 West St, San Francisco, CA 94016" -244557,AAA Batteries (4-pack),1,2.99,08/26/19 20:18,"349 West St, Dallas, TX 75001" -244557,Bose SoundSport Headphones,1,99.99,08/26/19 20:18,"349 West St, Dallas, TX 75001" -244558,iPhone,1,700,08/29/19 12:00,"479 Washington St, New York City, NY 10001" -244558,Wired Headphones,1,11.99,08/29/19 12:00,"479 Washington St, New York City, NY 10001" -244559,20in Monitor,1,109.99,08/09/19 23:19,"431 Maple St, New York City, NY 10001" -244560,Macbook Pro Laptop,1,1700,08/01/19 10:41,"185 Pine St, Los Angeles, CA 90001" -244561,Vareebadd Phone,1,400,08/11/19 11:53,"767 Dogwood St, Dallas, TX 75001" -244561,USB-C Charging Cable,2,11.95,08/11/19 11:53,"767 Dogwood St, Dallas, TX 75001" -244562,34in Ultrawide Monitor,1,379.99,08/07/19 15:00,"892 Lake St, Austin, TX 73301" -244562,Lightning Charging Cable,1,14.95,08/07/19 15:00,"892 Lake St, Austin, TX 73301" -244563,Vareebadd Phone,1,400,08/13/19 12:25,"660 Church St, Los Angeles, CA 90001" -244564,Lightning Charging Cable,1,14.95,08/28/19 10:16,"468 Church St, New York City, NY 10001" -244565,Wired Headphones,2,11.99,08/14/19 13:23,"596 Lakeview St, San Francisco, CA 94016" -244566,Lightning Charging Cable,1,14.95,08/06/19 12:31,"507 River St, New York City, NY 10001" -244567,USB-C Charging Cable,1,11.95,08/31/19 09:51,"6 5th St, Boston, MA 02215" -244568,USB-C Charging Cable,1,11.95,08/17/19 11:30,"356 Dogwood St, San Francisco, CA 94016" -244569,Lightning Charging Cable,1,14.95,08/09/19 23:52,"99 Lake St, Dallas, TX 75001" -244570,Wired Headphones,1,11.99,08/31/19 19:45,"786 Ridge St, Austin, TX 73301" -244571,AA Batteries (4-pack),5,3.84,08/02/19 14:15,"369 8th St, Portland, OR 97035" -244572,Bose SoundSport Headphones,1,99.99,08/30/19 12:26,"384 West St, New York City, NY 10001" -244573,34in Ultrawide Monitor,1,379.99,08/14/19 13:01,"737 Lake St, San Francisco, CA 94016" -244574,27in 4K Gaming Monitor,1,389.99,08/07/19 10:04,"417 Forest St, San Francisco, CA 94016" -244575,34in Ultrawide Monitor,1,379.99,08/18/19 20:54,"68 Center St, San Francisco, CA 94016" -244576,Apple Airpods Headphones,1,150,08/15/19 14:48,"165 Madison St, Seattle, WA 98101" -244577,Vareebadd Phone,1,400,08/28/19 08:31,"449 Meadow St, Los Angeles, CA 90001" -244577,Bose SoundSport Headphones,1,99.99,08/28/19 08:31,"449 Meadow St, Los Angeles, CA 90001" -244578,Google Phone,1,600,08/17/19 16:05,"509 Walnut St, Los Angeles, CA 90001" -244579,Bose SoundSport Headphones,1,99.99,08/23/19 11:28,"94 Spruce St, San Francisco, CA 94016" -244580,AAA Batteries (4-pack),1,2.99,08/05/19 10:44,"156 Hill St, San Francisco, CA 94016" -244581,AA Batteries (4-pack),1,3.84,08/09/19 14:35,"614 Hickory St, Seattle, WA 98101" -244582,AA Batteries (4-pack),1,3.84,08/08/19 08:43,"159 Chestnut St, New York City, NY 10001" -244583,Bose SoundSport Headphones,1,99.99,08/31/19 18:20,"227 Cedar St, Austin, TX 73301" -244584,AA Batteries (4-pack),1,3.84,08/07/19 15:08,"632 River St, Dallas, TX 75001" -244585,Bose SoundSport Headphones,1,99.99,08/30/19 07:00,"350 12th St, New York City, NY 10001" -244586,iPhone,1,700,08/12/19 19:53,"473 4th St, San Francisco, CA 94016" -244586,Lightning Charging Cable,1,14.95,08/12/19 19:53,"473 4th St, San Francisco, CA 94016" -244587,Bose SoundSport Headphones,1,99.99,08/15/19 11:42,"425 Cedar St, Austin, TX 73301" -244588,Flatscreen TV,1,300,08/06/19 05:11,"395 Cedar St, Los Angeles, CA 90001" -244589,Apple Airpods Headphones,1,150,08/14/19 02:27,"694 Park St, San Francisco, CA 94016" -244590,Wired Headphones,1,11.99,08/06/19 07:34,"319 Cherry St, Boston, MA 02215" -244591,AA Batteries (4-pack),1,3.84,08/23/19 01:27,"865 Lake St, San Francisco, CA 94016" -244592,AAA Batteries (4-pack),2,2.99,08/19/19 12:55,"576 Forest St, Portland, OR 97035" -244593,AAA Batteries (4-pack),1,2.99,08/19/19 13:38,"78 Madison St, Los Angeles, CA 90001" -244594,Lightning Charging Cable,2,14.95,08/04/19 18:42,"960 Meadow St, Boston, MA 02215" -244595,iPhone,1,700,08/03/19 18:09,"711 Center St, Seattle, WA 98101" -244596,Lightning Charging Cable,1,14.95,08/09/19 09:26,"900 12th St, New York City, NY 10001" -244597,Apple Airpods Headphones,1,150,08/10/19 13:00,"985 Cedar St, Atlanta, GA 30301" -244597,AA Batteries (4-pack),1,3.84,08/10/19 13:00,"985 Cedar St, Atlanta, GA 30301" -244598,AA Batteries (4-pack),2,3.84,08/21/19 21:42,"147 Highland St, San Francisco, CA 94016" -244599,AA Batteries (4-pack),1,3.84,08/14/19 21:57,"814 14th St, Boston, MA 02215" -244600,34in Ultrawide Monitor,1,379.99,08/23/19 16:51,"440 Johnson St, San Francisco, CA 94016" -244601,Wired Headphones,1,11.99,08/13/19 07:16,"527 8th St, New York City, NY 10001" -244602,USB-C Charging Cable,1,11.95,08/13/19 12:07,"79 Park St, Seattle, WA 98101" -244603,27in FHD Monitor,1,149.99,08/22/19 16:22,"676 2nd St, San Francisco, CA 94016" -244604,Wired Headphones,3,11.99,08/15/19 21:19,"261 Ridge St, Los Angeles, CA 90001" -244605,AAA Batteries (4-pack),1,2.99,08/10/19 13:57,"374 Dogwood St, San Francisco, CA 94016" -244606,AAA Batteries (4-pack),1,2.99,08/07/19 21:00,"145 Chestnut St, Los Angeles, CA 90001" -244607,Lightning Charging Cable,1,14.95,08/23/19 11:35,"615 8th St, Boston, MA 02215" -244608,27in FHD Monitor,1,149.99,08/08/19 08:49,"931 13th St, New York City, NY 10001" -244609,Apple Airpods Headphones,1,150,08/08/19 14:24,"18 Main St, Seattle, WA 98101" -244610,USB-C Charging Cable,1,11.95,08/10/19 19:03,"670 River St, New York City, NY 10001" -244611,USB-C Charging Cable,2,11.95,08/13/19 20:43,"718 Jefferson St, Los Angeles, CA 90001" -244612,USB-C Charging Cable,3,11.95,08/29/19 19:51,"341 Walnut St, Seattle, WA 98101" -244613,iPhone,1,700,08/17/19 11:21,"617 Cedar St, Seattle, WA 98101" -244613,Lightning Charging Cable,1,14.95,08/17/19 11:21,"617 Cedar St, Seattle, WA 98101" -244614,Lightning Charging Cable,1,14.95,08/18/19 23:51,"589 Jefferson St, San Francisco, CA 94016" -244615,iPhone,1,700,08/25/19 21:36,"940 2nd St, Los Angeles, CA 90001" -244615,Apple Airpods Headphones,1,150,08/25/19 21:36,"940 2nd St, Los Angeles, CA 90001" -244616,Wired Headphones,1,11.99,08/31/19 17:34,"425 Chestnut St, Los Angeles, CA 90001" -244617,20in Monitor,1,109.99,08/07/19 21:18,"686 13th St, Boston, MA 02215" -244618,AAA Batteries (4-pack),1,2.99,08/02/19 21:55,"889 South St, San Francisco, CA 94016" -244619,Wired Headphones,1,11.99,08/31/19 10:25,"939 4th St, San Francisco, CA 94016" -244620,Wired Headphones,1,11.99,08/20/19 18:19,"87 9th St, Portland, OR 97035" -244621,Lightning Charging Cable,1,14.95,08/07/19 10:28,"481 Cedar St, Atlanta, GA 30301" -244622,27in 4K Gaming Monitor,1,389.99,08/04/19 00:37,"105 Park St, Los Angeles, CA 90001" -244623,Google Phone,1,600,08/20/19 18:27,"91 14th St, Los Angeles, CA 90001" -244624,Macbook Pro Laptop,1,1700,08/25/19 21:53,"505 13th St, San Francisco, CA 94016" -244625,Flatscreen TV,1,300,08/03/19 12:53,"351 Cherry St, Dallas, TX 75001" -244626,Lightning Charging Cable,1,14.95,08/09/19 10:35,"856 7th St, Seattle, WA 98101" -244627,USB-C Charging Cable,1,11.95,08/09/19 16:32,"900 Hill St, Los Angeles, CA 90001" -244628,Bose SoundSport Headphones,1,99.99,08/29/19 17:15,"713 River St, Portland, ME 04101" -244629,Bose SoundSport Headphones,1,99.99,08/13/19 16:04,"256 Walnut St, Boston, MA 02215" -244630,Google Phone,1,600,08/04/19 10:41,"289 1st St, Austin, TX 73301" -244631,27in FHD Monitor,1,149.99,08/04/19 14:44,"670 7th St, New York City, NY 10001" -244632,AA Batteries (4-pack),1,3.84,08/15/19 14:09,"779 Willow St, Los Angeles, CA 90001" -244633,27in 4K Gaming Monitor,1,389.99,08/28/19 19:19,"625 South St, Boston, MA 02215" -244634,USB-C Charging Cable,1,11.95,08/08/19 23:02,"418 Main St, Austin, TX 73301" -244635,Google Phone,1,600,08/28/19 07:42,"872 Cherry St, Seattle, WA 98101" -244636,LG Washing Machine,1,600.0,08/02/19 11:27,"205 Ridge St, Seattle, WA 98101" -244637,AA Batteries (4-pack),1,3.84,08/11/19 11:08,"289 Spruce St, Dallas, TX 75001" -244638,AAA Batteries (4-pack),1,2.99,08/18/19 13:46,"443 Lincoln St, San Francisco, CA 94016" -244639,USB-C Charging Cable,1,11.95,08/16/19 19:19,"324 Wilson St, San Francisco, CA 94016" -244640,27in FHD Monitor,1,149.99,08/19/19 05:51,"855 Maple St, Atlanta, GA 30301" -244641,Lightning Charging Cable,1,14.95,08/17/19 20:42,"840 11th St, San Francisco, CA 94016" -244642,AAA Batteries (4-pack),2,2.99,08/25/19 13:25,"350 Hill St, New York City, NY 10001" -244643,AAA Batteries (4-pack),2,2.99,08/06/19 11:21,"428 7th St, Seattle, WA 98101" -244644,Macbook Pro Laptop,1,1700,08/09/19 22:29,"375 14th St, Atlanta, GA 30301" -244645,USB-C Charging Cable,1,11.95,08/17/19 15:32,"524 Hickory St, Seattle, WA 98101" -244646,Bose SoundSport Headphones,1,99.99,08/12/19 23:19,"787 2nd St, San Francisco, CA 94016" -244647,AAA Batteries (4-pack),1,2.99,08/22/19 08:38,"53 Cherry St, San Francisco, CA 94016" -244648,AAA Batteries (4-pack),1,2.99,08/08/19 11:58,"258 Ridge St, Dallas, TX 75001" -244648,34in Ultrawide Monitor,1,379.99,08/08/19 11:58,"258 Ridge St, Dallas, TX 75001" -244649,Apple Airpods Headphones,1,150,08/20/19 19:06,"48 8th St, New York City, NY 10001" -244650,iPhone,1,700,08/22/19 11:46,"932 Dogwood St, San Francisco, CA 94016" -244651,AAA Batteries (4-pack),1,2.99,08/23/19 12:20,"815 Park St, Austin, TX 73301" -244652,Wired Headphones,1,11.99,08/15/19 09:47,"181 Center St, Los Angeles, CA 90001" -244653,20in Monitor,1,109.99,08/13/19 20:54,"760 Main St, Atlanta, GA 30301" -244654,27in 4K Gaming Monitor,1,389.99,08/02/19 00:54,"821 West St, New York City, NY 10001" -244655,ThinkPad Laptop,1,999.99,08/25/19 18:55,"458 Spruce St, Boston, MA 02215" -244656,AAA Batteries (4-pack),1,2.99,08/06/19 09:06,"355 Johnson St, New York City, NY 10001" -244657,USB-C Charging Cable,1,11.95,08/28/19 14:40,"955 5th St, Boston, MA 02215" -244658,USB-C Charging Cable,1,11.95,08/26/19 06:57,"227 12th St, San Francisco, CA 94016" -244659,Google Phone,1,600,08/30/19 18:38,"938 4th St, Los Angeles, CA 90001" -244660,AAA Batteries (4-pack),1,2.99,08/11/19 22:56,"591 Ridge St, Atlanta, GA 30301" -244661,Apple Airpods Headphones,1,150,08/27/19 15:02,"738 Center St, Los Angeles, CA 90001" -244662,Lightning Charging Cable,1,14.95,08/11/19 17:19,"502 West St, New York City, NY 10001" -244663,20in Monitor,1,109.99,08/01/19 21:38,"633 Adams St, Atlanta, GA 30301" -244664,ThinkPad Laptop,1,999.99,08/02/19 19:36,"563 Cherry St, Seattle, WA 98101" -244665,20in Monitor,1,109.99,08/29/19 09:39,"143 Cherry St, Los Angeles, CA 90001" -244666,Lightning Charging Cable,1,14.95,08/11/19 19:47,"656 Johnson St, Los Angeles, CA 90001" -244667,Bose SoundSport Headphones,1,99.99,08/31/19 09:34,"502 Highland St, San Francisco, CA 94016" -244668,Lightning Charging Cable,1,14.95,08/16/19 18:15,"122 Jackson St, Los Angeles, CA 90001" -244669,AA Batteries (4-pack),3,3.84,08/16/19 22:20,"367 Highland St, Seattle, WA 98101" -244670,Lightning Charging Cable,1,14.95,08/31/19 13:29,"849 Lincoln St, Atlanta, GA 30301" -244671,ThinkPad Laptop,1,999.99,08/26/19 21:29,"451 10th St, Austin, TX 73301" -244672,Apple Airpods Headphones,1,150,08/07/19 20:06,"915 7th St, Dallas, TX 75001" -244673,iPhone,1,700,08/02/19 15:58,"936 Dogwood St, Dallas, TX 75001" -244674,AAA Batteries (4-pack),2,2.99,08/06/19 11:40,"858 2nd St, Seattle, WA 98101" -244675,USB-C Charging Cable,1,11.95,08/11/19 22:45,"886 13th St, San Francisco, CA 94016" -244676,Apple Airpods Headphones,1,150,08/13/19 02:09,"952 Church St, Portland, OR 97035" -244677,AAA Batteries (4-pack),1,2.99,08/30/19 00:41,"172 Park St, Dallas, TX 75001" -244678,Apple Airpods Headphones,1,150,08/11/19 15:39,"261 Highland St, San Francisco, CA 94016" -244679,AAA Batteries (4-pack),1,2.99,08/05/19 12:03,"863 Jackson St, Austin, TX 73301" -244680,USB-C Charging Cable,1,11.95,08/01/19 20:43,"379 Main St, New York City, NY 10001" -244681,AA Batteries (4-pack),1,3.84,08/20/19 14:10,"208 9th St, New York City, NY 10001" -244682,Lightning Charging Cable,1,14.95,08/19/19 19:38,"232 2nd St, New York City, NY 10001" -244683,Bose SoundSport Headphones,1,99.99,08/15/19 12:10,"394 Church St, Seattle, WA 98101" -244684,USB-C Charging Cable,2,11.95,08/09/19 14:22,"104 14th St, San Francisco, CA 94016" -244685,Flatscreen TV,1,300,08/17/19 06:33,"799 Main St, Boston, MA 02215" -244686,ThinkPad Laptop,1,999.99,08/15/19 09:54,"372 12th St, Los Angeles, CA 90001" -244687,Bose SoundSport Headphones,1,99.99,08/24/19 06:39,"837 Chestnut St, New York City, NY 10001" -244688,AAA Batteries (4-pack),3,2.99,08/27/19 16:37,"35 Church St, Boston, MA 02215" -244689,20in Monitor,1,109.99,08/20/19 16:11,"264 Meadow St, Atlanta, GA 30301" -244690,Macbook Pro Laptop,1,1700,08/15/19 11:18,"961 Chestnut St, Boston, MA 02215" -244691,34in Ultrawide Monitor,1,379.99,08/11/19 08:55,"568 Washington St, Los Angeles, CA 90001" -244692,AAA Batteries (4-pack),1,2.99,08/31/19 11:03,"377 West St, Atlanta, GA 30301" -244693,20in Monitor,1,109.99,08/02/19 18:52,"413 8th St, Dallas, TX 75001" -244694,Wired Headphones,1,11.99,08/29/19 19:19,"275 12th St, Los Angeles, CA 90001" -244695,Lightning Charging Cable,1,14.95,08/05/19 16:30,"641 1st St, Portland, OR 97035" -244696,AA Batteries (4-pack),1,3.84,08/06/19 10:30,"692 4th St, San Francisco, CA 94016" -244697,27in 4K Gaming Monitor,1,389.99,08/20/19 18:43,"521 Maple St, Los Angeles, CA 90001" -244698,Apple Airpods Headphones,1,150,08/30/19 13:43,"725 Walnut St, Seattle, WA 98101" -244699,USB-C Charging Cable,1,11.95,08/23/19 19:32,"545 9th St, New York City, NY 10001" -244700,AAA Batteries (4-pack),1,2.99,08/18/19 14:25,"741 Willow St, San Francisco, CA 94016" -244701,Lightning Charging Cable,1,14.95,08/18/19 20:54,"34 River St, San Francisco, CA 94016" -244702,27in 4K Gaming Monitor,1,389.99,08/08/19 17:50,"181 4th St, San Francisco, CA 94016" -244703,USB-C Charging Cable,1,11.95,08/20/19 21:44,"118 11th St, Austin, TX 73301" -244704,Apple Airpods Headphones,1,150,08/31/19 23:01,"634 South St, San Francisco, CA 94016" -244705,Apple Airpods Headphones,1,150,08/22/19 12:35,"773 Johnson St, Austin, TX 73301" -244706,27in 4K Gaming Monitor,1,389.99,08/17/19 17:32,"773 Lake St, Dallas, TX 75001" -244707,ThinkPad Laptop,1,999.99,08/20/19 17:42,"84 Pine St, Dallas, TX 75001" -244708,Bose SoundSport Headphones,1,99.99,08/27/19 20:23,"330 Highland St, San Francisco, CA 94016" -244709,USB-C Charging Cable,1,11.95,08/16/19 18:02,"182 Center St, New York City, NY 10001" -244710,34in Ultrawide Monitor,1,379.99,08/30/19 09:56,"128 South St, Austin, TX 73301" -244711,27in 4K Gaming Monitor,1,389.99,08/14/19 14:09,"824 Jefferson St, Seattle, WA 98101" -244712,AAA Batteries (4-pack),1,2.99,08/03/19 19:03,"324 West St, New York City, NY 10001" -244713,Wired Headphones,1,11.99,08/16/19 10:32,"699 6th St, Los Angeles, CA 90001" -244714,USB-C Charging Cable,1,11.95,08/25/19 18:48,"184 River St, Dallas, TX 75001" -244715,Lightning Charging Cable,1,14.95,08/31/19 21:25,"469 Washington St, New York City, NY 10001" -244716,Apple Airpods Headphones,1,150,08/23/19 20:01,"529 Lake St, Seattle, WA 98101" -244717,34in Ultrawide Monitor,1,379.99,08/13/19 16:27,"787 Ridge St, San Francisco, CA 94016" -244718,Apple Airpods Headphones,1,150,08/18/19 21:53,"500 1st St, Atlanta, GA 30301" -244719,Bose SoundSport Headphones,1,99.99,08/14/19 11:55,"84 Johnson St, San Francisco, CA 94016" -244720,iPhone,1,700,08/09/19 12:05,"959 Maple St, Portland, OR 97035" -244721,Macbook Pro Laptop,1,1700,08/06/19 12:44,"824 9th St, Dallas, TX 75001" -244722,34in Ultrawide Monitor,1,379.99,08/27/19 13:35,"300 West St, Dallas, TX 75001" -244723,AA Batteries (4-pack),1,3.84,08/07/19 18:30,"49 Lake St, Seattle, WA 98101" -244724,Flatscreen TV,1,300,08/20/19 22:41,"569 South St, Atlanta, GA 30301" -244725,Wired Headphones,2,11.99,08/06/19 08:50,"101 Spruce St, Boston, MA 02215" -244726,ThinkPad Laptop,1,999.99,08/26/19 06:56,"640 Main St, Dallas, TX 75001" -244727,Wired Headphones,1,11.99,08/29/19 16:00,"36 North St, Los Angeles, CA 90001" -244727,Wired Headphones,1,11.99,08/29/19 16:00,"36 North St, Los Angeles, CA 90001" -244728,Wired Headphones,1,11.99,08/24/19 09:40,"162 Lincoln St, Boston, MA 02215" -244729,USB-C Charging Cable,1,11.95,08/15/19 13:13,"279 Spruce St, San Francisco, CA 94016" -244730,AA Batteries (4-pack),1,3.84,08/27/19 13:51,"492 Sunset St, Los Angeles, CA 90001" -244731,Apple Airpods Headphones,1,150,08/12/19 11:02,"49 Cherry St, Los Angeles, CA 90001" -244732,AA Batteries (4-pack),1,3.84,08/03/19 10:13,"297 Church St, Seattle, WA 98101" -244733,AA Batteries (4-pack),1,3.84,08/31/19 21:44,"746 Chestnut St, Los Angeles, CA 90001" -244734,AAA Batteries (4-pack),1,2.99,08/06/19 22:44,"916 Forest St, San Francisco, CA 94016" -244735,Google Phone,1,600,08/06/19 20:35,"658 Sunset St, Boston, MA 02215" -244736,AA Batteries (4-pack),1,3.84,08/15/19 21:46,"257 West St, Portland, OR 97035" -244737,AA Batteries (4-pack),1,3.84,08/17/19 00:22,"721 West St, Austin, TX 73301" -244738,27in 4K Gaming Monitor,1,389.99,08/08/19 13:04,"343 Lakeview St, Los Angeles, CA 90001" -244739,Lightning Charging Cable,1,14.95,08/26/19 15:16,"683 Chestnut St, San Francisco, CA 94016" -244740,AA Batteries (4-pack),1,3.84,08/13/19 20:35,"645 11th St, Portland, OR 97035" -244741,Bose SoundSport Headphones,1,99.99,08/13/19 10:55,"359 2nd St, San Francisco, CA 94016" -244742,Bose SoundSport Headphones,1,99.99,08/05/19 00:42,"554 Cherry St, Los Angeles, CA 90001" -244743,27in FHD Monitor,1,149.99,08/31/19 19:42,"840 Jackson St, Seattle, WA 98101" -244744,USB-C Charging Cable,1,11.95,08/06/19 19:10,"474 Hill St, Austin, TX 73301" -244745,34in Ultrawide Monitor,1,379.99,08/01/19 23:01,"286 Highland St, San Francisco, CA 94016" -244746,AAA Batteries (4-pack),2,2.99,08/09/19 13:44,"902 Sunset St, New York City, NY 10001" -244747,USB-C Charging Cable,1,11.95,08/02/19 17:08,"808 Dogwood St, Dallas, TX 75001" -244748,27in FHD Monitor,1,149.99,08/09/19 14:03,"116 Cedar St, Seattle, WA 98101" -244749,Vareebadd Phone,1,400,08/22/19 12:21,"167 Main St, Los Angeles, CA 90001" -244749,USB-C Charging Cable,1,11.95,08/22/19 12:21,"167 Main St, Los Angeles, CA 90001" -244750,USB-C Charging Cable,1,11.95,08/25/19 13:03,"568 Meadow St, Portland, OR 97035" -244751,Lightning Charging Cable,1,14.95,08/23/19 15:54,"532 Cedar St, Los Angeles, CA 90001" -244752,USB-C Charging Cable,1,11.95,08/16/19 13:01,"549 North St, Los Angeles, CA 90001" -244753,27in FHD Monitor,1,149.99,08/29/19 20:24,"537 9th St, Dallas, TX 75001" -244754,ThinkPad Laptop,1,999.99,08/10/19 15:11,"651 Cedar St, Los Angeles, CA 90001" -244755,Google Phone,1,600,08/05/19 19:28,"659 Dogwood St, Los Angeles, CA 90001" -244756,Lightning Charging Cable,1,14.95,08/14/19 16:27,"864 1st St, Los Angeles, CA 90001" -244756,Wired Headphones,2,11.99,08/14/19 16:27,"864 1st St, Los Angeles, CA 90001" -244757,AAA Batteries (4-pack),1,2.99,08/06/19 10:02,"942 14th St, Portland, OR 97035" -244758,27in 4K Gaming Monitor,1,389.99,08/29/19 09:49,"860 River St, Los Angeles, CA 90001" -244759,Google Phone,1,600,08/07/19 16:18,"92 Spruce St, Portland, OR 97035" -244760,ThinkPad Laptop,1,999.99,08/14/19 16:48,"538 Lakeview St, Seattle, WA 98101" -244761,Lightning Charging Cable,1,14.95,08/28/19 21:00,"709 Spruce St, New York City, NY 10001" -244762,Wired Headphones,1,11.99,08/19/19 14:49,"410 Maple St, Seattle, WA 98101" -244763,Bose SoundSport Headphones,1,99.99,08/03/19 12:16,"138 5th St, Boston, MA 02215" -244764,Lightning Charging Cable,1,14.95,08/17/19 22:39,"215 Cherry St, New York City, NY 10001" -244765,34in Ultrawide Monitor,1,379.99,08/20/19 12:25,"683 Cedar St, Seattle, WA 98101" -244766,AAA Batteries (4-pack),1,2.99,08/19/19 15:29,"797 6th St, New York City, NY 10001" -244767,USB-C Charging Cable,1,11.95,08/25/19 17:06,"921 Lake St, Dallas, TX 75001" -244768,AAA Batteries (4-pack),1,2.99,08/29/19 01:12,"38 Jackson St, Los Angeles, CA 90001" -244769,Bose SoundSport Headphones,1,99.99,08/17/19 00:32,"63 Forest St, San Francisco, CA 94016" -244770,Apple Airpods Headphones,1,150,08/18/19 11:08,"581 Sunset St, San Francisco, CA 94016" -244771,Lightning Charging Cable,1,14.95,08/30/19 23:47,"410 Willow St, Seattle, WA 98101" -244772,AA Batteries (4-pack),1,3.84,08/13/19 23:51,"508 12th St, Portland, OR 97035" -244773,Wired Headphones,1,11.99,08/08/19 06:54,"427 Hickory St, Los Angeles, CA 90001" -244774,USB-C Charging Cable,1,11.95,08/31/19 12:58,"578 Lake St, Portland, ME 04101" -244775,Bose SoundSport Headphones,1,99.99,08/09/19 11:06,"787 Wilson St, Los Angeles, CA 90001" -244776,ThinkPad Laptop,1,999.99,08/09/19 16:53,"103 Ridge St, Los Angeles, CA 90001" -244777,Lightning Charging Cable,1,14.95,08/20/19 19:28,"217 South St, San Francisco, CA 94016" -244778,AAA Batteries (4-pack),2,2.99,08/04/19 14:08,"328 Lincoln St, Los Angeles, CA 90001" -244779,Bose SoundSport Headphones,1,99.99,08/19/19 11:03,"961 2nd St, Austin, TX 73301" -244780,USB-C Charging Cable,1,11.95,08/24/19 15:53,"26 Highland St, Los Angeles, CA 90001" -244781,Macbook Pro Laptop,1,1700,08/24/19 19:14,"511 Highland St, Los Angeles, CA 90001" -244782,Macbook Pro Laptop,1,1700,08/22/19 17:38,"10 River St, Los Angeles, CA 90001" -244783,20in Monitor,1,109.99,08/14/19 11:38,"139 Church St, New York City, NY 10001" -244784,AAA Batteries (4-pack),4,2.99,08/13/19 18:51,"283 Hickory St, New York City, NY 10001" -244785,iPhone,1,700,08/15/19 15:27,"447 Forest St, San Francisco, CA 94016" -244786,Wired Headphones,1,11.99,08/13/19 10:40,"544 Lincoln St, Boston, MA 02215" -244787,Bose SoundSport Headphones,1,99.99,08/04/19 22:43,"408 2nd St, Dallas, TX 75001" -244788,iPhone,1,700,08/06/19 07:06,"913 Madison St, Seattle, WA 98101" -244789,Wired Headphones,2,11.99,08/28/19 12:29,"157 Wilson St, Portland, OR 97035" -244790,Lightning Charging Cable,1,14.95,08/29/19 21:01,"643 12th St, Portland, OR 97035" -244791,Bose SoundSport Headphones,1,99.99,08/22/19 21:03,"661 13th St, Los Angeles, CA 90001" -244792,34in Ultrawide Monitor,1,379.99,08/24/19 13:06,"84 Hickory St, Portland, OR 97035" -244793,34in Ultrawide Monitor,1,379.99,08/30/19 10:08,"743 13th St, Los Angeles, CA 90001" -244794,iPhone,1,700,08/23/19 14:09,"837 South St, Los Angeles, CA 90001" -244795,Lightning Charging Cable,1,14.95,08/22/19 17:16,"727 Maple St, New York City, NY 10001" -244796,Bose SoundSport Headphones,1,99.99,08/07/19 13:06,"630 1st St, San Francisco, CA 94016" -244797,AA Batteries (4-pack),3,3.84,08/02/19 15:00,"949 14th St, Los Angeles, CA 90001" -244798,AAA Batteries (4-pack),2,2.99,08/31/19 07:14,"96 13th St, Portland, OR 97035" -244799,AA Batteries (4-pack),1,3.84,08/20/19 23:39,"967 Pine St, Atlanta, GA 30301" -244800,USB-C Charging Cable,1,11.95,08/25/19 20:08,"298 Hill St, Seattle, WA 98101" -244801,Bose SoundSport Headphones,1,99.99,08/19/19 12:04,"919 Jefferson St, Los Angeles, CA 90001" -244802,USB-C Charging Cable,1,11.95,08/06/19 18:15,"591 5th St, Portland, OR 97035" -244803,iPhone,1,700,08/05/19 20:55,"342 Ridge St, Portland, OR 97035" -244804,AAA Batteries (4-pack),2,2.99,08/28/19 20:28,"664 Pine St, Seattle, WA 98101" -244805,Wired Headphones,1,11.99,08/17/19 16:55,"169 Main St, Boston, MA 02215" -244806,Bose SoundSport Headphones,1,99.99,08/16/19 06:20,"71 Jackson St, Austin, TX 73301" -244807,USB-C Charging Cable,1,11.95,08/30/19 23:29,"340 Maple St, Los Angeles, CA 90001" -244808,Wired Headphones,1,11.99,08/30/19 20:28,"288 Chestnut St, Atlanta, GA 30301" -244809,Lightning Charging Cable,1,14.95,08/04/19 20:21,"522 2nd St, Los Angeles, CA 90001" -244809,Wired Headphones,2,11.99,08/04/19 20:21,"522 2nd St, Los Angeles, CA 90001" -244810,Wired Headphones,1,11.99,08/01/19 13:59,"130 1st St, Boston, MA 02215" -244811,Bose SoundSport Headphones,1,99.99,08/22/19 11:05,"9 Highland St, Boston, MA 02215" -244812,Wired Headphones,1,11.99,08/31/19 11:04,"672 Hickory St, Los Angeles, CA 90001" -244812,USB-C Charging Cable,1,11.95,08/31/19 11:04,"672 Hickory St, Los Angeles, CA 90001" -244813,Wired Headphones,1,11.99,08/22/19 19:36,"805 Jackson St, New York City, NY 10001" -244814,Flatscreen TV,1,300,08/08/19 18:40,"358 14th St, San Francisco, CA 94016" -244815,iPhone,1,700,08/06/19 08:52,"87 Madison St, San Francisco, CA 94016" -244816,AA Batteries (4-pack),1,3.84,08/04/19 00:33,"179 Lake St, Seattle, WA 98101" -244817,AAA Batteries (4-pack),2,2.99,08/04/19 12:42,"708 Cedar St, Austin, TX 73301" -244818,Bose SoundSport Headphones,1,99.99,08/23/19 21:10,"257 14th St, Austin, TX 73301" -244819,AA Batteries (4-pack),1,3.84,08/10/19 10:07,"33 Church St, Dallas, TX 75001" -244820,Macbook Pro Laptop,1,1700,08/21/19 16:04,"820 Jefferson St, Dallas, TX 75001" -244821,Macbook Pro Laptop,1,1700,08/19/19 20:26,"605 Madison St, Seattle, WA 98101" -244822,AAA Batteries (4-pack),1,2.99,08/07/19 06:29,"774 Wilson St, Atlanta, GA 30301" -244823,Macbook Pro Laptop,1,1700,08/20/19 22:40,"237 Wilson St, Boston, MA 02215" -244824,Bose SoundSport Headphones,1,99.99,08/26/19 18:27,"94 Sunset St, New York City, NY 10001" -244825,USB-C Charging Cable,1,11.95,08/14/19 12:15,"200 10th St, Seattle, WA 98101" -244826,27in FHD Monitor,1,149.99,08/11/19 18:40,"575 8th St, Los Angeles, CA 90001" -244827,Bose SoundSport Headphones,1,99.99,08/15/19 12:22,"634 Wilson St, San Francisco, CA 94016" -244828,Google Phone,1,600,08/06/19 17:43,"966 Wilson St, Los Angeles, CA 90001" -244829,27in FHD Monitor,1,149.99,08/05/19 16:04,"393 River St, Portland, ME 04101" -244830,Macbook Pro Laptop,1,1700,08/24/19 14:35,"582 14th St, Los Angeles, CA 90001" -244830,LG Washing Machine,1,600.0,08/24/19 14:35,"582 14th St, Los Angeles, CA 90001" -244831,Lightning Charging Cable,1,14.95,08/10/19 17:18,"441 Lincoln St, Atlanta, GA 30301" -244832,LG Dryer,1,600.0,08/28/19 11:59,"925 River St, San Francisco, CA 94016" -244833,AA Batteries (4-pack),1,3.84,08/06/19 22:05,"837 Wilson St, San Francisco, CA 94016" -244834,27in 4K Gaming Monitor,1,389.99,08/31/19 12:00,"559 7th St, Boston, MA 02215" -244835,AAA Batteries (4-pack),1,2.99,08/20/19 15:51,"82 Forest St, San Francisco, CA 94016" -244835,Lightning Charging Cable,1,14.95,08/20/19 15:51,"82 Forest St, San Francisco, CA 94016" -244836,AA Batteries (4-pack),1,3.84,08/24/19 00:53,"29 Washington St, San Francisco, CA 94016" -244837,iPhone,1,700,08/31/19 11:48,"744 Chestnut St, Los Angeles, CA 90001" -244838,34in Ultrawide Monitor,1,379.99,08/09/19 20:19,"678 Park St, New York City, NY 10001" -244839,AA Batteries (4-pack),2,3.84,08/24/19 20:38,"151 Spruce St, Boston, MA 02215" -244840,iPhone,1,700,08/13/19 20:13,"817 Cedar St, Dallas, TX 75001" -244841,AA Batteries (4-pack),2,3.84,08/11/19 09:42,"130 Jefferson St, San Francisco, CA 94016" -244842,USB-C Charging Cable,1,11.95,08/16/19 11:12,"364 Cedar St, Atlanta, GA 30301" -244843,Wired Headphones,1,11.99,08/07/19 15:55,"895 Hickory St, New York City, NY 10001" -244844,Lightning Charging Cable,1,14.95,08/01/19 16:25,"29 Center St, Boston, MA 02215" -244845,Apple Airpods Headphones,1,150,08/31/19 12:48,"11 Park St, Atlanta, GA 30301" -244846,Bose SoundSport Headphones,1,99.99,08/13/19 17:52,"31 Spruce St, New York City, NY 10001" -244847,Vareebadd Phone,1,400,08/12/19 19:56,"183 Willow St, Los Angeles, CA 90001" -244848,Lightning Charging Cable,1,14.95,08/01/19 20:29,"360 Johnson St, Boston, MA 02215" -244849,Wired Headphones,1,11.99,08/16/19 15:52,"89 Walnut St, San Francisco, CA 94016" -244850,Wired Headphones,1,11.99,08/13/19 09:54,"129 7th St, Los Angeles, CA 90001" -244851,Bose SoundSport Headphones,1,99.99,08/30/19 10:48,"605 Washington St, Los Angeles, CA 90001" -244852,LG Washing Machine,1,600.0,08/25/19 10:25,"105 2nd St, Los Angeles, CA 90001" -244853,AAA Batteries (4-pack),2,2.99,08/10/19 18:09,"462 Church St, Atlanta, GA 30301" -244854,USB-C Charging Cable,1,11.95,08/28/19 11:05,"911 2nd St, Seattle, WA 98101" -244855,Apple Airpods Headphones,1,150,08/27/19 13:01,"410 Main St, Portland, OR 97035" -244856,Google Phone,1,600,08/27/19 08:45,"558 Pine St, Austin, TX 73301" -244857,iPhone,1,700,08/06/19 10:08,"189 Washington St, New York City, NY 10001" -244857,Lightning Charging Cable,1,14.95,08/06/19 10:08,"189 Washington St, New York City, NY 10001" -244858,AAA Batteries (4-pack),1,2.99,08/13/19 13:23,"931 Madison St, Seattle, WA 98101" -244859,Lightning Charging Cable,1,14.95,08/29/19 11:40,"972 8th St, Los Angeles, CA 90001" -244860,Vareebadd Phone,1,400,08/12/19 08:11,"692 12th St, Los Angeles, CA 90001" -244861,Bose SoundSport Headphones,1,99.99,08/14/19 21:12,"835 11th St, San Francisco, CA 94016" -244862,AA Batteries (4-pack),1,3.84,08/28/19 19:56,"444 Ridge St, Atlanta, GA 30301" -244863,20in Monitor,1,109.99,08/31/19 09:38,"829 11th St, Seattle, WA 98101" -244864,AAA Batteries (4-pack),1,2.99,08/16/19 09:07,"686 1st St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -244865,AAA Batteries (4-pack),1,2.99,08/14/19 20:46,"289 Hill St, Dallas, TX 75001" -244866,27in 4K Gaming Monitor,1,389.99,08/25/19 11:52,"359 Lake St, Seattle, WA 98101" -244867,Wired Headphones,1,11.99,08/04/19 11:13,"192 Lincoln St, Portland, ME 04101" -244868,Apple Airpods Headphones,1,150,08/03/19 20:11,"209 Maple St, Portland, OR 97035" -244869,Lightning Charging Cable,2,14.95,08/03/19 02:42,"995 Pine St, New York City, NY 10001" -244870,USB-C Charging Cable,1,11.95,08/10/19 16:02,"760 12th St, Dallas, TX 75001" -244871,27in 4K Gaming Monitor,1,389.99,08/05/19 23:18,"665 Highland St, Seattle, WA 98101" -244872,USB-C Charging Cable,2,11.95,08/17/19 10:26,"845 Walnut St, San Francisco, CA 94016" -244873,Bose SoundSport Headphones,1,99.99,08/27/19 19:44,"452 Hickory St, Dallas, TX 75001" -244874,AA Batteries (4-pack),1,3.84,08/24/19 22:03,"387 Lincoln St, New York City, NY 10001" -244875,ThinkPad Laptop,1,999.99,08/09/19 10:44,"315 Meadow St, Portland, OR 97035" -244876,Wired Headphones,1,11.99,08/21/19 16:15,"358 Center St, San Francisco, CA 94016" -244876,34in Ultrawide Monitor,1,379.99,08/21/19 16:15,"358 Center St, San Francisco, CA 94016" -244877,AAA Batteries (4-pack),1,2.99,08/16/19 19:05,"435 9th St, Boston, MA 02215" -244878,AA Batteries (4-pack),1,3.84,08/07/19 11:18,"118 1st St, Los Angeles, CA 90001" -244879,Lightning Charging Cable,1,14.95,08/12/19 10:11,"513 7th St, Boston, MA 02215" -244880,27in FHD Monitor,1,149.99,08/03/19 13:10,"47 2nd St, Los Angeles, CA 90001" -244881,34in Ultrawide Monitor,1,379.99,08/10/19 19:47,"747 Madison St, San Francisco, CA 94016" -244882,Flatscreen TV,1,300,08/10/19 11:06,"175 Ridge St, Boston, MA 02215" -244883,AAA Batteries (4-pack),1,2.99,08/30/19 14:38,"889 Elm St, Los Angeles, CA 90001" -244884,34in Ultrawide Monitor,1,379.99,08/10/19 19:30,"493 Elm St, Dallas, TX 75001" -244885,AA Batteries (4-pack),1,3.84,08/16/19 07:44,"244 South St, Seattle, WA 98101" -244886,AAA Batteries (4-pack),2,2.99,08/02/19 16:29,"951 Washington St, Boston, MA 02215" -244887,27in FHD Monitor,1,149.99,08/23/19 14:12,"776 Sunset St, Los Angeles, CA 90001" -244888,USB-C Charging Cable,1,11.95,08/24/19 15:40,"966 4th St, Seattle, WA 98101" -244889,27in 4K Gaming Monitor,1,389.99,08/03/19 16:23,"304 11th St, Portland, OR 97035" -244890,AAA Batteries (4-pack),1,2.99,08/25/19 22:58,"272 Washington St, Los Angeles, CA 90001" -244891,AA Batteries (4-pack),1,3.84,08/21/19 13:48,"693 Cherry St, Los Angeles, CA 90001" -244892,ThinkPad Laptop,1,999.99,08/15/19 23:25,"488 Spruce St, Austin, TX 73301" -244892,AAA Batteries (4-pack),1,2.99,08/15/19 23:25,"488 Spruce St, Austin, TX 73301" -244893,AA Batteries (4-pack),1,3.84,08/04/19 12:06,"212 West St, Los Angeles, CA 90001" -244894,ThinkPad Laptop,1,999.99,08/01/19 21:11,"377 11th St, San Francisco, CA 94016" -244895,Lightning Charging Cable,1,14.95,08/07/19 09:48,"544 Hickory St, Los Angeles, CA 90001" -244896,20in Monitor,1,109.99,08/17/19 19:39,"461 River St, San Francisco, CA 94016" -244897,Lightning Charging Cable,1,14.95,08/18/19 21:22,"187 4th St, San Francisco, CA 94016" -244898,AAA Batteries (4-pack),2,2.99,08/08/19 18:26,"616 8th St, Boston, MA 02215" -244899,USB-C Charging Cable,1,11.95,08/14/19 12:14,"865 Ridge St, Boston, MA 02215" -244900,USB-C Charging Cable,1,11.95,08/19/19 13:38,"563 Church St, Atlanta, GA 30301" -244901,Bose SoundSport Headphones,1,99.99,08/21/19 12:33,"808 6th St, Atlanta, GA 30301" -244902,Apple Airpods Headphones,1,150,08/12/19 13:48,"123 Lake St, Boston, MA 02215" -244903,Lightning Charging Cable,1,14.95,08/10/19 19:36,"789 Walnut St, San Francisco, CA 94016" -244904,Lightning Charging Cable,1,14.95,08/19/19 22:20,"293 Lakeview St, San Francisco, CA 94016" -244904,AA Batteries (4-pack),1,3.84,08/19/19 22:20,"293 Lakeview St, San Francisco, CA 94016" -244905,27in 4K Gaming Monitor,1,389.99,08/07/19 22:39,"965 Chestnut St, Boston, MA 02215" -244906,Lightning Charging Cable,1,14.95,08/01/19 08:50,"444 12th St, Boston, MA 02215" -244907,AA Batteries (4-pack),1,3.84,08/31/19 17:17,"908 Washington St, San Francisco, CA 94016" -244908,27in FHD Monitor,1,149.99,08/14/19 19:23,"135 Adams St, Los Angeles, CA 90001" -244909,27in FHD Monitor,1,149.99,08/03/19 16:48,"554 West St, New York City, NY 10001" -244910,Apple Airpods Headphones,1,150,08/11/19 19:33,"58 Willow St, Los Angeles, CA 90001" -244911,Bose SoundSport Headphones,1,99.99,08/18/19 06:06,"95 11th St, San Francisco, CA 94016" -244912,Wired Headphones,1,11.99,08/04/19 01:36,"149 Hickory St, Boston, MA 02215" -244913,Google Phone,1,600,08/14/19 12:59,"797 Forest St, New York City, NY 10001" -244914,AA Batteries (4-pack),1,3.84,08/16/19 11:12,"651 6th St, San Francisco, CA 94016" -244915,AA Batteries (4-pack),1,3.84,08/15/19 08:43,"148 5th St, Boston, MA 02215" -244916,Vareebadd Phone,1,400,08/26/19 08:40,"24 Dogwood St, Atlanta, GA 30301" -244917,iPhone,1,700,08/22/19 12:42,"757 Chestnut St, Portland, OR 97035" -244918,Bose SoundSport Headphones,1,99.99,08/27/19 10:18,"500 10th St, San Francisco, CA 94016" -244919,Bose SoundSport Headphones,1,99.99,08/28/19 08:58,"242 Elm St, New York City, NY 10001" -244920,Macbook Pro Laptop,1,1700,08/10/19 09:39,"362 Main St, San Francisco, CA 94016" -244921,Macbook Pro Laptop,1,1700,08/22/19 12:23,"270 9th St, Boston, MA 02215" -244922,Bose SoundSport Headphones,1,99.99,08/29/19 15:40,"884 Washington St, Seattle, WA 98101" -244923,Wired Headphones,1,11.99,08/27/19 10:36,"909 Johnson St, San Francisco, CA 94016" -244924,Lightning Charging Cable,1,14.95,08/16/19 22:52,"775 West St, Portland, OR 97035" -244925,AA Batteries (4-pack),2,3.84,08/24/19 14:06,"376 Elm St, Boston, MA 02215" -244926,Lightning Charging Cable,1,14.95,08/02/19 09:52,"200 10th St, Atlanta, GA 30301" -244927,AA Batteries (4-pack),1,3.84,08/22/19 16:10,"637 Church St, Atlanta, GA 30301" -244928,Google Phone,1,600,08/09/19 13:34,"983 11th St, Los Angeles, CA 90001" -244929,Macbook Pro Laptop,1,1700,08/16/19 11:33,"276 Hill St, Los Angeles, CA 90001" -244930,34in Ultrawide Monitor,1,379.99,08/19/19 08:11,"961 Lake St, Los Angeles, CA 90001" -244931,AAA Batteries (4-pack),1,2.99,08/31/19 19:42,"34 Pine St, Los Angeles, CA 90001" -244932,Wired Headphones,1,11.99,08/17/19 12:12,"59 North St, Boston, MA 02215" -244933,Lightning Charging Cable,1,14.95,08/11/19 23:35,"190 12th St, San Francisco, CA 94016" -244934,AA Batteries (4-pack),1,3.84,08/10/19 22:40,"705 Dogwood St, San Francisco, CA 94016" -244935,AAA Batteries (4-pack),1,2.99,08/23/19 20:30,"882 11th St, New York City, NY 10001" -244936,USB-C Charging Cable,1,11.95,08/16/19 06:01,"484 8th St, Dallas, TX 75001" -244937,iPhone,1,700,08/16/19 06:41,"699 7th St, New York City, NY 10001" -244937,Lightning Charging Cable,1,14.95,08/16/19 06:41,"699 7th St, New York City, NY 10001" -244938,Lightning Charging Cable,1,14.95,08/23/19 07:59,"679 Church St, New York City, NY 10001" -244939,USB-C Charging Cable,1,11.95,08/27/19 05:49,"792 Pine St, Dallas, TX 75001" -244940,27in 4K Gaming Monitor,1,389.99,08/29/19 21:23,"357 Jefferson St, San Francisco, CA 94016" -244941,Lightning Charging Cable,1,14.95,08/09/19 14:41,"192 Park St, San Francisco, CA 94016" -244942,Apple Airpods Headphones,1,150,08/17/19 13:05,"331 Ridge St, Portland, OR 97035" -244942,AAA Batteries (4-pack),1,2.99,08/17/19 13:05,"331 Ridge St, Portland, OR 97035" -244943,AAA Batteries (4-pack),1,2.99,08/12/19 13:43,"841 Forest St, Atlanta, GA 30301" -244944,Bose SoundSport Headphones,1,99.99,08/09/19 16:52,"677 Church St, Boston, MA 02215" -244945,Wired Headphones,1,11.99,08/03/19 14:19,"463 Wilson St, San Francisco, CA 94016" -244945,ThinkPad Laptop,1,999.99,08/03/19 14:19,"463 Wilson St, San Francisco, CA 94016" -244946,Flatscreen TV,1,300,08/21/19 22:11,"204 Jefferson St, San Francisco, CA 94016" -244947,USB-C Charging Cable,1,11.95,08/06/19 12:51,"751 Walnut St, New York City, NY 10001" -244948,ThinkPad Laptop,1,999.99,08/17/19 17:29,"824 Park St, Seattle, WA 98101" -244949,Wired Headphones,1,11.99,08/29/19 12:14,"19 Hill St, San Francisco, CA 94016" -244950,USB-C Charging Cable,2,11.95,08/06/19 09:22,"769 14th St, New York City, NY 10001" -244951,Bose SoundSport Headphones,1,99.99,08/14/19 10:44,"707 Adams St, San Francisco, CA 94016" -244952,27in FHD Monitor,1,149.99,08/12/19 07:56,"820 Forest St, San Francisco, CA 94016" -244953,Lightning Charging Cable,1,14.95,09/01/19 00:26,"262 Park St, Los Angeles, CA 90001" -244954,Bose SoundSport Headphones,1,99.99,08/14/19 16:26,"994 River St, Portland, OR 97035" -244955,Lightning Charging Cable,1,14.95,08/11/19 23:50,"599 Elm St, San Francisco, CA 94016" -244956,AAA Batteries (4-pack),1,2.99,08/06/19 15:11,"592 Park St, Austin, TX 73301" -244957,Wired Headphones,1,11.99,08/05/19 12:21,"191 Spruce St, New York City, NY 10001" -244958,AAA Batteries (4-pack),2,2.99,08/09/19 20:21,"607 14th St, San Francisco, CA 94016" -244959,USB-C Charging Cable,1,11.95,08/21/19 13:54,"329 Hickory St, San Francisco, CA 94016" -244960,AAA Batteries (4-pack),1,2.99,08/20/19 14:32,"581 Meadow St, San Francisco, CA 94016" -244961,USB-C Charging Cable,1,11.95,08/13/19 19:32,"854 5th St, Los Angeles, CA 90001" -244962,34in Ultrawide Monitor,1,379.99,08/13/19 00:00,"636 Washington St, Austin, TX 73301" -244963,Vareebadd Phone,1,400,08/17/19 09:26,"188 7th St, Atlanta, GA 30301" -244964,AAA Batteries (4-pack),2,2.99,08/01/19 17:48,"486 Jefferson St, Los Angeles, CA 90001" -244965,Apple Airpods Headphones,1,150,08/13/19 13:42,"517 Highland St, Atlanta, GA 30301" -244966,27in 4K Gaming Monitor,1,389.99,08/07/19 13:44,"582 6th St, Atlanta, GA 30301" -244967,Bose SoundSport Headphones,1,99.99,08/10/19 09:04,"742 Elm St, New York City, NY 10001" -244968,Apple Airpods Headphones,1,150,08/11/19 23:09,"165 10th St, New York City, NY 10001" -244969,Lightning Charging Cable,1,14.95,08/05/19 20:19,"524 Spruce St, Boston, MA 02215" -244970,Google Phone,1,600,08/02/19 19:58,"31 Madison St, Boston, MA 02215" -244971,Bose SoundSport Headphones,1,99.99,08/18/19 15:46,"483 10th St, San Francisco, CA 94016" -244972,AAA Batteries (4-pack),1,2.99,08/17/19 21:55,"206 Sunset St, San Francisco, CA 94016" -244973,AAA Batteries (4-pack),1,2.99,08/08/19 17:15,"829 Jefferson St, San Francisco, CA 94016" -,,,,, -244974,Bose SoundSport Headphones,1,99.99,08/27/19 13:50,"265 2nd St, Atlanta, GA 30301" -244975,AA Batteries (4-pack),1,3.84,08/15/19 18:30,"2 9th St, San Francisco, CA 94016" -244976,USB-C Charging Cable,1,11.95,08/09/19 17:54,"178 Lake St, San Francisco, CA 94016" -244977,Lightning Charging Cable,1,14.95,08/20/19 23:29,"772 13th St, Austin, TX 73301" -244978,Wired Headphones,1,11.99,08/12/19 10:50,"805 Madison St, Los Angeles, CA 90001" -244979,Apple Airpods Headphones,1,150,08/03/19 12:09,"318 12th St, Boston, MA 02215" -244980,USB-C Charging Cable,1,11.95,08/16/19 16:13,"583 Chestnut St, San Francisco, CA 94016" -244981,Macbook Pro Laptop,1,1700,08/10/19 12:45,"921 Adams St, San Francisco, CA 94016" -244982,Lightning Charging Cable,2,14.95,08/01/19 09:17,"4 Ridge St, Seattle, WA 98101" -244983,USB-C Charging Cable,1,11.95,08/05/19 08:23,"682 8th St, Atlanta, GA 30301" -244984,AAA Batteries (4-pack),2,2.99,08/19/19 20:24,"921 6th St, Austin, TX 73301" -244985,Apple Airpods Headphones,1,150,08/28/19 19:11,"11 Lakeview St, San Francisco, CA 94016" -244986,Apple Airpods Headphones,1,150,08/01/19 17:41,"143 Center St, San Francisco, CA 94016" -244987,AAA Batteries (4-pack),1,2.99,08/08/19 20:56,"613 5th St, Atlanta, GA 30301" -244988,AA Batteries (4-pack),1,3.84,08/23/19 14:49,"929 14th St, Atlanta, GA 30301" -244989,iPhone,1,700,08/16/19 19:20,"749 Center St, Portland, ME 04101" -244990,USB-C Charging Cable,1,11.95,08/15/19 12:03,"746 Adams St, Atlanta, GA 30301" -244991,iPhone,1,700,08/04/19 07:09,"503 Highland St, Los Angeles, CA 90001" -244991,Lightning Charging Cable,1,14.95,08/04/19 07:09,"503 Highland St, Los Angeles, CA 90001" -244992,AA Batteries (4-pack),1,3.84,08/16/19 11:42,"134 Cherry St, Boston, MA 02215" -244993,Google Phone,1,600,08/28/19 15:56,"834 Hill St, Los Angeles, CA 90001" -244994,Wired Headphones,2,11.99,08/24/19 14:39,"508 11th St, San Francisco, CA 94016" -244995,Google Phone,1,600,08/13/19 19:11,"684 Walnut St, San Francisco, CA 94016" -244995,USB-C Charging Cable,1,11.95,08/13/19 19:11,"684 Walnut St, San Francisco, CA 94016" -244996,Wired Headphones,1,11.99,08/07/19 15:52,"557 6th St, Atlanta, GA 30301" -244997,Wired Headphones,1,11.99,08/08/19 22:15,"312 Sunset St, Atlanta, GA 30301" -244998,Lightning Charging Cable,1,14.95,08/17/19 20:20,"895 Madison St, San Francisco, CA 94016" -244999,USB-C Charging Cable,1,11.95,08/13/19 19:55,"588 Lincoln St, Dallas, TX 75001" -245000,iPhone,1,700,08/27/19 16:00,"567 Church St, San Francisco, CA 94016" -245001,34in Ultrawide Monitor,1,379.99,08/10/19 12:21,"35 Hickory St, Seattle, WA 98101" -245002,USB-C Charging Cable,1,11.95,08/08/19 15:58,"726 8th St, Los Angeles, CA 90001" -245003,AAA Batteries (4-pack),4,2.99,08/20/19 14:12,"216 2nd St, Atlanta, GA 30301" -245004,AAA Batteries (4-pack),1,2.99,08/12/19 07:18,"966 Cedar St, Los Angeles, CA 90001" -245005,27in FHD Monitor,1,149.99,08/17/19 00:57,"657 River St, Los Angeles, CA 90001" -245006,Wired Headphones,2,11.99,08/12/19 20:19,"297 Main St, New York City, NY 10001" -245007,AAA Batteries (4-pack),1,2.99,08/15/19 00:45,"220 Center St, Seattle, WA 98101" -245008,Google Phone,1,600,08/02/19 11:42,"371 Jefferson St, New York City, NY 10001" -245008,USB-C Charging Cable,1,11.95,08/02/19 11:42,"371 Jefferson St, New York City, NY 10001" -245008,Wired Headphones,1,11.99,08/02/19 11:42,"371 Jefferson St, New York City, NY 10001" -245009,USB-C Charging Cable,1,11.95,08/17/19 13:24,"427 North St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -245010,Apple Airpods Headphones,1,150,08/10/19 20:20,"736 12th St, Atlanta, GA 30301" -245011,AA Batteries (4-pack),2,3.84,08/09/19 15:22,"968 South St, Atlanta, GA 30301" -245012,Apple Airpods Headphones,1,150,08/09/19 07:23,"726 2nd St, Portland, OR 97035" -245013,Google Phone,1,600,08/09/19 18:04,"35 Johnson St, Atlanta, GA 30301" -245014,27in FHD Monitor,1,149.99,08/06/19 15:33,"339 Lake St, San Francisco, CA 94016" -245015,34in Ultrawide Monitor,1,379.99,08/25/19 22:05,"682 Maple St, Atlanta, GA 30301" -245016,27in FHD Monitor,1,149.99,08/01/19 16:00,"458 Willow St, Boston, MA 02215" -245017,AAA Batteries (4-pack),1,2.99,08/09/19 01:01,"672 North St, New York City, NY 10001" -245018,Wired Headphones,1,11.99,08/22/19 18:57,"330 Wilson St, Los Angeles, CA 90001" -245019,USB-C Charging Cable,1,11.95,08/20/19 20:58,"124 10th St, San Francisco, CA 94016" -245020,Bose SoundSport Headphones,1,99.99,08/03/19 07:12,"781 6th St, Dallas, TX 75001" -245021,Lightning Charging Cable,1,14.95,08/04/19 11:13,"539 Center St, San Francisco, CA 94016" -245022,USB-C Charging Cable,1,11.95,08/27/19 00:34,"535 12th St, Boston, MA 02215" -245023,USB-C Charging Cable,1,11.95,08/28/19 11:50,"292 13th St, Seattle, WA 98101" -245024,Lightning Charging Cable,1,14.95,08/02/19 21:57,"191 Lakeview St, San Francisco, CA 94016" -245025,Lightning Charging Cable,1,14.95,08/06/19 16:17,"55 Center St, Seattle, WA 98101" -245026,AA Batteries (4-pack),1,3.84,08/17/19 18:37,"528 Washington St, Dallas, TX 75001" -245027,USB-C Charging Cable,1,11.95,08/07/19 16:40,"944 2nd St, Los Angeles, CA 90001" -245028,AA Batteries (4-pack),1,3.84,08/29/19 16:48,"88 Jefferson St, New York City, NY 10001" -245029,Lightning Charging Cable,1,14.95,08/21/19 15:52,"318 North St, Los Angeles, CA 90001" -245030,Apple Airpods Headphones,1,150,08/13/19 07:55,"521 Walnut St, Portland, OR 97035" -245031,Apple Airpods Headphones,1,150,08/08/19 01:46,"971 Highland St, Dallas, TX 75001" -245032,Wired Headphones,1,11.99,08/01/19 17:51,"850 10th St, San Francisco, CA 94016" -245033,AAA Batteries (4-pack),3,2.99,08/11/19 17:29,"838 River St, San Francisco, CA 94016" -245034,Wired Headphones,1,11.99,08/31/19 22:12,"984 Lakeview St, New York City, NY 10001" -245035,Lightning Charging Cable,1,14.95,08/13/19 18:24,"203 West St, Boston, MA 02215" -245036,USB-C Charging Cable,1,11.95,08/31/19 18:07,"323 Highland St, Seattle, WA 98101" -245037,USB-C Charging Cable,1,11.95,08/03/19 09:13,"697 River St, Dallas, TX 75001" -245038,27in FHD Monitor,1,149.99,08/18/19 13:42,"271 Sunset St, Los Angeles, CA 90001" -245039,Wired Headphones,1,11.99,08/02/19 14:10,"593 Forest St, San Francisco, CA 94016" -245040,Macbook Pro Laptop,1,1700,08/13/19 15:51,"266 10th St, San Francisco, CA 94016" -245041,Bose SoundSport Headphones,1,99.99,08/30/19 12:56,"494 Hickory St, Austin, TX 73301" -245042,USB-C Charging Cable,1,11.95,08/06/19 20:57,"595 Dogwood St, Los Angeles, CA 90001" -245043,Apple Airpods Headphones,1,150,08/26/19 11:28,"34 Wilson St, Atlanta, GA 30301" -245044,AAA Batteries (4-pack),1,2.99,08/22/19 15:46,"21 Walnut St, Los Angeles, CA 90001" -245044,AA Batteries (4-pack),1,3.84,08/22/19 15:46,"21 Walnut St, Los Angeles, CA 90001" -245045,USB-C Charging Cable,1,11.95,08/03/19 13:05,"426 Jackson St, Dallas, TX 75001" -245046,AAA Batteries (4-pack),1,2.99,08/17/19 11:40,"643 Meadow St, San Francisco, CA 94016" -245047,ThinkPad Laptop,1,999.99,08/27/19 12:40,"918 Chestnut St, San Francisco, CA 94016" -245048,iPhone,1,700,08/06/19 10:32,"93 Washington St, Atlanta, GA 30301" -245049,Lightning Charging Cable,1,14.95,08/20/19 19:20,"388 11th St, San Francisco, CA 94016" -245050,Lightning Charging Cable,1,14.95,08/29/19 08:28,"499 Washington St, New York City, NY 10001" -245051,USB-C Charging Cable,1,11.95,08/11/19 19:43,"352 4th St, Portland, OR 97035" -245052,AA Batteries (4-pack),1,3.84,08/16/19 06:12,"394 Elm St, New York City, NY 10001" -245053,Wired Headphones,1,11.99,08/18/19 18:10,"386 Washington St, San Francisco, CA 94016" -245054,USB-C Charging Cable,1,11.95,08/04/19 19:08,"577 Church St, New York City, NY 10001" -245055,AAA Batteries (4-pack),1,2.99,08/24/19 13:23,"838 Adams St, Los Angeles, CA 90001" -245056,iPhone,1,700,08/10/19 12:28,"489 Walnut St, Austin, TX 73301" -245056,Lightning Charging Cable,1,14.95,08/10/19 12:28,"489 Walnut St, Austin, TX 73301" -245057,Lightning Charging Cable,1,14.95,08/09/19 18:18,"339 West St, San Francisco, CA 94016" -245058,34in Ultrawide Monitor,1,379.99,08/24/19 14:16,"556 1st St, New York City, NY 10001" -245059,AA Batteries (4-pack),1,3.84,08/05/19 16:12,"608 Hill St, Seattle, WA 98101" -245060,Lightning Charging Cable,1,14.95,08/10/19 23:57,"524 5th St, Dallas, TX 75001" -245061,Bose SoundSport Headphones,1,99.99,08/08/19 13:19,"518 8th St, New York City, NY 10001" -245062,Lightning Charging Cable,1,14.95,08/07/19 18:28,"878 Center St, Los Angeles, CA 90001" -245063,USB-C Charging Cable,1,11.95,08/27/19 20:38,"801 Church St, Seattle, WA 98101" -245064,Bose SoundSport Headphones,1,99.99,08/17/19 12:00,"557 Willow St, San Francisco, CA 94016" -245065,20in Monitor,1,109.99,08/01/19 18:38,"228 1st St, San Francisco, CA 94016" -245066,AAA Batteries (4-pack),1,2.99,08/26/19 19:05,"241 Madison St, Los Angeles, CA 90001" -245067,Lightning Charging Cable,1,14.95,08/23/19 22:27,"938 14th St, Dallas, TX 75001" -245068,USB-C Charging Cable,2,11.95,08/30/19 01:03,"891 Jefferson St, New York City, NY 10001" -245069,20in Monitor,1,109.99,08/29/19 21:05,"293 Meadow St, New York City, NY 10001" -245070,Lightning Charging Cable,2,14.95,08/10/19 21:17,"813 Spruce St, Austin, TX 73301" -245071,Apple Airpods Headphones,1,150,08/10/19 14:22,"991 13th St, Austin, TX 73301" -245072,Wired Headphones,1,11.99,08/17/19 16:40,"631 Chestnut St, New York City, NY 10001" -245073,AAA Batteries (4-pack),1,2.99,08/14/19 10:06,"622 Maple St, Dallas, TX 75001" -245074,27in FHD Monitor,1,149.99,08/22/19 16:54,"369 Madison St, San Francisco, CA 94016" -245075,Wired Headphones,1,11.99,08/15/19 10:41,"886 Johnson St, Los Angeles, CA 90001" -245076,27in 4K Gaming Monitor,1,389.99,08/04/19 11:57,"527 Park St, San Francisco, CA 94016" -245077,Google Phone,1,600,08/11/19 12:00,"305 Adams St, New York City, NY 10001" -245078,Lightning Charging Cable,1,14.95,08/10/19 19:52,"795 11th St, San Francisco, CA 94016" -245079,27in 4K Gaming Monitor,1,389.99,08/29/19 11:57,"397 6th St, Dallas, TX 75001" -245080,Macbook Pro Laptop,1,1700,08/13/19 21:48,"171 Main St, Los Angeles, CA 90001" -245081,Apple Airpods Headphones,1,150,08/24/19 18:37,"156 Wilson St, Los Angeles, CA 90001" -245082,27in FHD Monitor,1,149.99,08/13/19 13:57,"639 Walnut St, Los Angeles, CA 90001" -245083,ThinkPad Laptop,1,999.99,08/13/19 16:37,"887 Johnson St, Boston, MA 02215" -245084,Apple Airpods Headphones,1,150,08/02/19 16:27,"487 Forest St, Seattle, WA 98101" -245085,USB-C Charging Cable,1,11.95,08/16/19 13:17,"723 Park St, Boston, MA 02215" -245086,AA Batteries (4-pack),1,3.84,08/20/19 18:07,"264 Washington St, Los Angeles, CA 90001" -245087,AAA Batteries (4-pack),2,2.99,08/08/19 20:03,"279 8th St, New York City, NY 10001" -245088,iPhone,1,700,08/29/19 18:06,"377 Sunset St, Boston, MA 02215" -245088,Lightning Charging Cable,1,14.95,08/29/19 18:06,"377 Sunset St, Boston, MA 02215" -245089,iPhone,1,700,08/02/19 19:14,"961 Lake St, San Francisco, CA 94016" -245089,Wired Headphones,1,11.99,08/02/19 19:14,"961 Lake St, San Francisco, CA 94016" -245090,AAA Batteries (4-pack),1,2.99,08/16/19 22:12,"446 Hickory St, Seattle, WA 98101" -245091,27in FHD Monitor,1,149.99,08/18/19 18:35,"354 Elm St, Portland, OR 97035" -245092,Wired Headphones,1,11.99,08/29/19 20:52,"591 1st St, San Francisco, CA 94016" -245092,Lightning Charging Cable,1,14.95,08/29/19 20:52,"591 1st St, San Francisco, CA 94016" -245093,27in FHD Monitor,1,149.99,08/18/19 22:17,"945 Jackson St, Los Angeles, CA 90001" -245094,27in 4K Gaming Monitor,1,389.99,08/11/19 08:33,"433 Pine St, Atlanta, GA 30301" -245095,ThinkPad Laptop,1,999.99,08/12/19 23:29,"717 Park St, Los Angeles, CA 90001" -245096,Apple Airpods Headphones,1,150,08/13/19 17:20,"586 Forest St, San Francisco, CA 94016" -245097,27in 4K Gaming Monitor,1,389.99,08/07/19 21:35,"731 7th St, Seattle, WA 98101" -245098,AA Batteries (4-pack),1,3.84,08/27/19 18:34,"968 Church St, San Francisco, CA 94016" -,,,,, -245099,Lightning Charging Cable,1,14.95,08/16/19 14:52,"254 North St, Dallas, TX 75001" -245100,Google Phone,1,600,08/31/19 11:48,"453 Lake St, New York City, NY 10001" -245100,USB-C Charging Cable,1,11.95,08/31/19 11:48,"453 Lake St, New York City, NY 10001" -245101,AA Batteries (4-pack),1,3.84,08/03/19 21:17,"816 Walnut St, Seattle, WA 98101" -245102,Lightning Charging Cable,1,14.95,08/15/19 23:16,"7 2nd St, Seattle, WA 98101" -245103,Bose SoundSport Headphones,1,99.99,08/25/19 10:20,"446 10th St, New York City, NY 10001" -245104,Lightning Charging Cable,1,14.95,08/18/19 18:46,"304 7th St, Portland, OR 97035" -245105,USB-C Charging Cable,1,11.95,08/19/19 16:28,"949 Willow St, Los Angeles, CA 90001" -245106,Lightning Charging Cable,1,14.95,08/07/19 16:16,"594 Spruce St, Los Angeles, CA 90001" -245107,Apple Airpods Headphones,1,150,08/09/19 19:18,"530 13th St, Portland, ME 04101" -245108,27in 4K Gaming Monitor,1,389.99,08/10/19 10:34,"447 Lincoln St, Los Angeles, CA 90001" -245109,Bose SoundSport Headphones,1,99.99,08/31/19 10:20,"198 Hickory St, New York City, NY 10001" -245110,Lightning Charging Cable,2,14.95,08/30/19 13:19,"543 Forest St, Los Angeles, CA 90001" -245111,27in FHD Monitor,1,149.99,08/13/19 01:57,"628 Cherry St, San Francisco, CA 94016" -245112,Vareebadd Phone,1,400,08/30/19 11:34,"512 North St, Los Angeles, CA 90001" -245112,Wired Headphones,1,11.99,08/30/19 11:34,"512 North St, Los Angeles, CA 90001" -245113,Apple Airpods Headphones,1,150,08/08/19 04:33,"255 Cherry St, Austin, TX 73301" -245114,USB-C Charging Cable,2,11.95,08/23/19 18:15,"557 Lincoln St, Seattle, WA 98101" -245115,27in FHD Monitor,1,149.99,08/23/19 20:36,"81 Lincoln St, Los Angeles, CA 90001" -245116,Macbook Pro Laptop,1,1700,08/05/19 17:36,"872 Walnut St, Los Angeles, CA 90001" -245117,Wired Headphones,1,11.99,08/03/19 15:27,"511 9th St, Los Angeles, CA 90001" -245118,27in 4K Gaming Monitor,1,389.99,08/14/19 22:13,"853 Sunset St, San Francisco, CA 94016" -245119,AA Batteries (4-pack),1,3.84,08/20/19 18:50,"878 Ridge St, Boston, MA 02215" -245120,Wired Headphones,1,11.99,08/29/19 17:38,"754 Dogwood St, San Francisco, CA 94016" -245121,Apple Airpods Headphones,1,150,08/23/19 10:34,"122 Park St, Boston, MA 02215" -245122,AAA Batteries (4-pack),1,2.99,08/12/19 09:24,"435 Hill St, Dallas, TX 75001" -245123,Lightning Charging Cable,1,14.95,08/06/19 17:49,"23 Hill St, Dallas, TX 75001" -245124,Apple Airpods Headphones,1,150,08/13/19 22:24,"376 Madison St, Atlanta, GA 30301" -245125,USB-C Charging Cable,1,11.95,08/01/19 10:52,"119 4th St, Seattle, WA 98101" -245126,Apple Airpods Headphones,1,150,08/30/19 14:47,"251 Johnson St, Los Angeles, CA 90001" -245127,USB-C Charging Cable,1,11.95,08/09/19 01:28,"353 Wilson St, Seattle, WA 98101" -245128,LG Dryer,1,600.0,08/24/19 14:46,"48 Maple St, Atlanta, GA 30301" -245129,Wired Headphones,1,11.99,08/28/19 11:41,"752 Jackson St, Austin, TX 73301" -245130,Google Phone,1,600,08/03/19 07:27,"722 Ridge St, Portland, ME 04101" -245131,34in Ultrawide Monitor,1,379.99,08/11/19 18:05,"587 Johnson St, Atlanta, GA 30301" -245132,AAA Batteries (4-pack),2,2.99,08/06/19 13:47,"115 Walnut St, Seattle, WA 98101" -245133,ThinkPad Laptop,1,999.99,08/01/19 13:15,"324 Wilson St, Dallas, TX 75001" -245133,Flatscreen TV,1,300,08/01/19 13:15,"324 Wilson St, Dallas, TX 75001" -245134,USB-C Charging Cable,1,11.95,08/20/19 11:33,"670 Ridge St, Los Angeles, CA 90001" -245135,AA Batteries (4-pack),1,3.84,08/10/19 08:24,"477 8th St, Los Angeles, CA 90001" -245136,USB-C Charging Cable,1,11.95,08/02/19 11:03,"349 Hill St, San Francisco, CA 94016" -245137,Apple Airpods Headphones,1,150,08/15/19 21:06,"931 Highland St, Portland, ME 04101" -245138,27in 4K Gaming Monitor,1,389.99,08/07/19 01:40,"613 Lincoln St, San Francisco, CA 94016" -245139,Lightning Charging Cable,1,14.95,08/31/19 09:47,"199 Cherry St, Atlanta, GA 30301" -245140,Bose SoundSport Headphones,1,99.99,08/24/19 14:15,"643 Church St, New York City, NY 10001" -245141,27in 4K Gaming Monitor,1,389.99,08/21/19 05:03,"185 Center St, San Francisco, CA 94016" -245142,Apple Airpods Headphones,1,150,08/08/19 14:22,"567 Cedar St, New York City, NY 10001" -245143,AA Batteries (4-pack),1,3.84,08/20/19 15:10,"441 5th St, San Francisco, CA 94016" -245144,Flatscreen TV,1,300,08/17/19 22:15,"295 Cherry St, Dallas, TX 75001" -245145,Apple Airpods Headphones,1,150,08/28/19 15:07,"995 Lincoln St, Seattle, WA 98101" -245146,AA Batteries (4-pack),1,3.84,08/08/19 21:18,"513 Dogwood St, New York City, NY 10001" -245147,Wired Headphones,1,11.99,08/11/19 11:33,"635 Forest St, San Francisco, CA 94016" -245148,Lightning Charging Cable,1,14.95,08/05/19 14:01,"184 Adams St, San Francisco, CA 94016" -245149,27in 4K Gaming Monitor,1,389.99,08/05/19 06:55,"173 Wilson St, Boston, MA 02215" -245150,Bose SoundSport Headphones,1,99.99,08/06/19 09:35,"390 Sunset St, San Francisco, CA 94016" -245151,iPhone,1,700,08/07/19 08:50,"987 13th St, San Francisco, CA 94016" -245151,Apple Airpods Headphones,1,150,08/07/19 08:50,"987 13th St, San Francisco, CA 94016" -245152,Flatscreen TV,1,300,08/22/19 00:52,"334 Elm St, Austin, TX 73301" -245153,Wired Headphones,1,11.99,08/26/19 14:22,"267 Ridge St, San Francisco, CA 94016" -245154,Bose SoundSport Headphones,1,99.99,08/18/19 15:42,"306 5th St, San Francisco, CA 94016" -245155,AA Batteries (4-pack),1,3.84,08/18/19 15:01,"772 5th St, Boston, MA 02215" -245156,Apple Airpods Headphones,1,150,08/26/19 17:57,"474 11th St, New York City, NY 10001" -245157,Apple Airpods Headphones,1,150,08/12/19 13:32,"763 11th St, New York City, NY 10001" -245158,AA Batteries (4-pack),1,3.84,08/02/19 12:11,"238 Church St, Portland, ME 04101" -245159,AA Batteries (4-pack),2,3.84,08/26/19 06:33,"311 10th St, San Francisco, CA 94016" -245160,Wired Headphones,1,11.99,08/12/19 22:56,"829 Forest St, Atlanta, GA 30301" -245161,34in Ultrawide Monitor,1,379.99,08/15/19 21:56,"576 West St, Boston, MA 02215" -245162,AA Batteries (4-pack),1,3.84,08/10/19 14:05,"672 Pine St, Portland, OR 97035" -245163,AA Batteries (4-pack),1,3.84,08/10/19 13:07,"448 Chestnut St, New York City, NY 10001" -245164,Wired Headphones,1,11.99,08/28/19 22:34,"808 Elm St, Austin, TX 73301" -245165,AAA Batteries (4-pack),1,2.99,08/18/19 18:40,"360 4th St, Seattle, WA 98101" -245166,AA Batteries (4-pack),2,3.84,08/29/19 12:14,"404 Spruce St, Portland, OR 97035" -245167,34in Ultrawide Monitor,1,379.99,08/11/19 09:47,"814 Main St, Seattle, WA 98101" -245168,AAA Batteries (4-pack),1,2.99,08/27/19 23:10,"502 10th St, Boston, MA 02215" -245169,Lightning Charging Cable,1,14.95,08/05/19 07:21,"432 Jackson St, Los Angeles, CA 90001" -245170,Lightning Charging Cable,1,14.95,08/13/19 16:01,"198 Ridge St, Boston, MA 02215" -245171,Wired Headphones,1,11.99,08/21/19 19:15,"478 Elm St, Atlanta, GA 30301" -245172,iPhone,1,700,08/15/19 11:51,"650 Forest St, Los Angeles, CA 90001" -245173,Bose SoundSport Headphones,1,99.99,08/17/19 19:35,"855 11th St, Portland, OR 97035" -245174,Google Phone,1,600,08/25/19 23:57,"801 Madison St, Seattle, WA 98101" -245175,Lightning Charging Cable,1,14.95,08/12/19 21:40,"523 Chestnut St, San Francisco, CA 94016" -245176,Bose SoundSport Headphones,1,99.99,09/01/19 01:13,"968 Johnson St, Los Angeles, CA 90001" -245177,Bose SoundSport Headphones,1,99.99,08/25/19 14:07,"470 Cedar St, San Francisco, CA 94016" -245178,AAA Batteries (4-pack),2,2.99,08/12/19 07:40,"164 North St, Atlanta, GA 30301" -245179,Lightning Charging Cable,1,14.95,08/20/19 16:53,"1 Maple St, New York City, NY 10001" -245180,Macbook Pro Laptop,1,1700,08/24/19 06:58,"507 Dogwood St, New York City, NY 10001" -245181,Wired Headphones,1,11.99,08/30/19 09:30,"26 Center St, Seattle, WA 98101" -245182,Apple Airpods Headphones,1,150,08/23/19 14:55,"220 River St, Atlanta, GA 30301" -245183,Wired Headphones,1,11.99,08/18/19 01:51,"121 Chestnut St, San Francisco, CA 94016" -245184,Macbook Pro Laptop,1,1700,08/27/19 03:00,"959 Forest St, Dallas, TX 75001" -245185,AA Batteries (4-pack),2,3.84,08/09/19 10:19,"541 4th St, San Francisco, CA 94016" -245186,Lightning Charging Cable,1,14.95,08/23/19 10:53,"304 Chestnut St, San Francisco, CA 94016" -245187,34in Ultrawide Monitor,1,379.99,08/24/19 15:35,"569 Cedar St, New York City, NY 10001" -245188,AAA Batteries (4-pack),1,2.99,08/13/19 11:12,"76 West St, Los Angeles, CA 90001" -245189,Google Phone,1,600,08/28/19 15:07,"336 Hickory St, Seattle, WA 98101" -245190,Lightning Charging Cable,1,14.95,08/07/19 14:02,"844 Cherry St, San Francisco, CA 94016" -245190,Wired Headphones,1,11.99,08/07/19 14:02,"844 Cherry St, San Francisco, CA 94016" -245191,20in Monitor,1,109.99,08/18/19 22:40,"57 Wilson St, Atlanta, GA 30301" -245192,USB-C Charging Cable,2,11.95,08/17/19 13:48,"650 Pine St, Dallas, TX 75001" -245193,34in Ultrawide Monitor,1,379.99,08/31/19 15:08,"511 Forest St, San Francisco, CA 94016" -245194,Wired Headphones,1,11.99,08/20/19 16:44,"41 Sunset St, Atlanta, GA 30301" -245195,Bose SoundSport Headphones,1,99.99,08/13/19 19:19,"660 Cherry St, San Francisco, CA 94016" -245196,Bose SoundSport Headphones,1,99.99,08/26/19 20:56,"566 Dogwood St, Portland, OR 97035" -245197,Apple Airpods Headphones,1,150,08/02/19 17:01,"255 River St, Dallas, TX 75001" -245198,Google Phone,1,600,08/13/19 00:08,"355 Johnson St, Atlanta, GA 30301" -245199,Lightning Charging Cable,1,14.95,08/12/19 17:26,"505 North St, San Francisco, CA 94016" -245200,Google Phone,1,600,08/20/19 12:40,"987 Dogwood St, Dallas, TX 75001" -245201,Bose SoundSport Headphones,1,99.99,08/18/19 00:31,"762 Hickory St, Austin, TX 73301" -245202,Wired Headphones,1,11.99,08/06/19 09:10,"547 Cedar St, San Francisco, CA 94016" -,,,,, -245203,Wired Headphones,1,11.99,08/10/19 16:36,"302 Forest St, Portland, ME 04101" -245204,AAA Batteries (4-pack),1,2.99,08/09/19 10:54,"451 13th St, Seattle, WA 98101" -245205,ThinkPad Laptop,1,999.99,08/28/19 01:02,"528 Spruce St, Atlanta, GA 30301" -245206,Apple Airpods Headphones,1,150,08/31/19 16:57,"440 8th St, Atlanta, GA 30301" -245207,USB-C Charging Cable,1,11.95,08/22/19 12:29,"121 Madison St, New York City, NY 10001" -245208,USB-C Charging Cable,1,11.95,08/31/19 22:11,"36 Hickory St, Dallas, TX 75001" -245209,Flatscreen TV,1,300,08/04/19 14:00,"670 Wilson St, Portland, OR 97035" -245210,Lightning Charging Cable,1,14.95,08/13/19 21:03,"171 Walnut St, Los Angeles, CA 90001" -245211,AA Batteries (4-pack),1,3.84,08/25/19 11:32,"857 9th St, Boston, MA 02215" -245212,AAA Batteries (4-pack),3,2.99,08/01/19 19:22,"801 2nd St, San Francisco, CA 94016" -245213,iPhone,1,700,08/05/19 14:21,"547 Spruce St, Portland, ME 04101" -245214,Wired Headphones,1,11.99,08/20/19 08:02,"628 Walnut St, Atlanta, GA 30301" -245215,ThinkPad Laptop,1,999.99,08/15/19 14:46,"94 5th St, Austin, TX 73301" -245216,Wired Headphones,1,11.99,08/03/19 19:34,"953 10th St, Seattle, WA 98101" -245217,Wired Headphones,1,11.99,08/20/19 23:38,"798 Willow St, New York City, NY 10001" -245218,USB-C Charging Cable,1,11.95,08/22/19 03:09,"284 Cherry St, Seattle, WA 98101" -245219,AAA Batteries (4-pack),1,2.99,08/01/19 08:43,"150 13th St, New York City, NY 10001" -245220,Lightning Charging Cable,1,14.95,08/06/19 23:21,"983 Church St, New York City, NY 10001" -245221,Apple Airpods Headphones,1,150,08/10/19 18:49,"157 Park St, Portland, OR 97035" -245222,AAA Batteries (4-pack),5,2.99,08/13/19 14:47,"768 Cherry St, Los Angeles, CA 90001" -245223,Bose SoundSport Headphones,1,99.99,08/03/19 14:55,"815 Main St, Los Angeles, CA 90001" -245224,Apple Airpods Headphones,1,150,08/30/19 12:47,"525 Lakeview St, Boston, MA 02215" -245225,Vareebadd Phone,1,400,08/13/19 14:01,"433 South St, Seattle, WA 98101" -245226,Wired Headphones,1,11.99,08/10/19 19:45,"451 14th St, Portland, OR 97035" -245227,AAA Batteries (4-pack),1,2.99,08/05/19 19:49,"351 Madison St, San Francisco, CA 94016" -245228,Bose SoundSport Headphones,1,99.99,08/03/19 18:30,"901 11th St, Portland, OR 97035" -245229,AA Batteries (4-pack),1,3.84,08/15/19 19:53,"139 Highland St, San Francisco, CA 94016" -245230,Flatscreen TV,1,300,08/01/19 14:15,"207 10th St, New York City, NY 10001" -245231,Flatscreen TV,1,300,08/07/19 17:00,"153 10th St, New York City, NY 10001" -245232,Bose SoundSport Headphones,1,99.99,08/20/19 11:44,"170 13th St, Los Angeles, CA 90001" -245233,Lightning Charging Cable,1,14.95,08/10/19 22:28,"807 River St, San Francisco, CA 94016" -245234,Bose SoundSport Headphones,1,99.99,08/31/19 19:47,"731 Meadow St, Boston, MA 02215" -245235,Apple Airpods Headphones,1,150,08/29/19 19:28,"138 Lake St, Los Angeles, CA 90001" -245236,27in FHD Monitor,1,149.99,08/07/19 11:44,"800 Lakeview St, Atlanta, GA 30301" -245237,20in Monitor,1,109.99,08/23/19 19:22,"715 1st St, Los Angeles, CA 90001" -245238,USB-C Charging Cable,1,11.95,08/25/19 09:56,"860 14th St, New York City, NY 10001" -245239,AAA Batteries (4-pack),1,2.99,08/04/19 20:20,"283 Church St, Atlanta, GA 30301" -245240,USB-C Charging Cable,1,11.95,08/05/19 19:48,"520 Highland St, Atlanta, GA 30301" -245241,USB-C Charging Cable,1,11.95,08/25/19 21:01,"748 Meadow St, Atlanta, GA 30301" -245242,Apple Airpods Headphones,1,150,08/29/19 15:09,"672 Maple St, New York City, NY 10001" -245243,Lightning Charging Cable,1,14.95,08/23/19 17:48,"797 Pine St, Atlanta, GA 30301" -245244,iPhone,1,700,08/04/19 08:03,"243 Cherry St, Atlanta, GA 30301" -245245,Wired Headphones,1,11.99,08/28/19 10:57,"558 Chestnut St, New York City, NY 10001" -245246,iPhone,1,700,08/28/19 11:18,"87 Johnson St, San Francisco, CA 94016" -245247,Bose SoundSport Headphones,1,99.99,08/24/19 11:29,"882 Jackson St, San Francisco, CA 94016" -245248,USB-C Charging Cable,1,11.95,08/07/19 12:25,"171 8th St, Austin, TX 73301" -245249,Flatscreen TV,1,300,08/06/19 18:09,"636 Lakeview St, Atlanta, GA 30301" -245250,20in Monitor,1,109.99,08/28/19 13:17,"549 11th St, New York City, NY 10001" -245251,Flatscreen TV,1,300,08/27/19 09:01,"846 6th St, San Francisco, CA 94016" -245252,34in Ultrawide Monitor,1,379.99,08/06/19 11:40,"84 West St, San Francisco, CA 94016" -245253,Lightning Charging Cable,1,14.95,08/30/19 12:35,"759 Elm St, New York City, NY 10001" -245254,Apple Airpods Headphones,1,150,08/17/19 00:33,"223 12th St, San Francisco, CA 94016" -245255,AAA Batteries (4-pack),2,2.99,08/22/19 15:51,"975 Forest St, San Francisco, CA 94016" -245256,Bose SoundSport Headphones,1,99.99,08/06/19 22:51,"290 Madison St, Atlanta, GA 30301" -245257,AAA Batteries (4-pack),1,2.99,08/30/19 21:25,"824 Dogwood St, New York City, NY 10001" -245258,LG Washing Machine,1,600.0,08/14/19 17:53,"771 Maple St, New York City, NY 10001" -245259,27in 4K Gaming Monitor,1,389.99,08/08/19 21:48,"309 2nd St, Atlanta, GA 30301" -245260,Bose SoundSport Headphones,1,99.99,08/28/19 14:32,"605 8th St, Boston, MA 02215" -245261,Wired Headphones,2,11.99,08/27/19 14:07,"189 West St, San Francisco, CA 94016" -245262,Flatscreen TV,1,300,08/05/19 17:00,"941 Park St, Seattle, WA 98101" -245263,Lightning Charging Cable,1,14.95,08/21/19 22:04,"910 Sunset St, New York City, NY 10001" -245264,AA Batteries (4-pack),1,3.84,08/31/19 15:30,"275 Hickory St, New York City, NY 10001" -245265,AA Batteries (4-pack),1,3.84,08/24/19 08:01,"825 Washington St, Portland, OR 97035" -245266,AAA Batteries (4-pack),1,2.99,08/03/19 18:03,"906 5th St, Boston, MA 02215" -245267,Lightning Charging Cable,1,14.95,08/16/19 12:01,"814 Ridge St, New York City, NY 10001" -245268,20in Monitor,1,109.99,08/06/19 08:37,"16 13th St, Los Angeles, CA 90001" -245269,ThinkPad Laptop,1,999.99,08/26/19 10:39,"199 Center St, New York City, NY 10001" -245270,USB-C Charging Cable,2,11.95,08/20/19 21:01,"448 Adams St, San Francisco, CA 94016" -245271,AAA Batteries (4-pack),1,2.99,08/16/19 19:58,"847 North St, New York City, NY 10001" -245272,USB-C Charging Cable,1,11.95,08/23/19 20:13,"919 10th St, Boston, MA 02215" -245273,USB-C Charging Cable,1,11.95,08/24/19 15:32,"476 West St, San Francisco, CA 94016" -245274,USB-C Charging Cable,1,11.95,08/25/19 13:51,"539 Lincoln St, Portland, OR 97035" -245275,iPhone,1,700,08/08/19 09:52,"987 Lincoln St, New York City, NY 10001" -245276,Google Phone,1,600,08/30/19 22:32,"12 Cedar St, Boston, MA 02215" -245277,Vareebadd Phone,1,400,08/24/19 09:04,"467 Church St, Dallas, TX 75001" -245278,Macbook Pro Laptop,1,1700,08/10/19 13:17,"876 Jackson St, Los Angeles, CA 90001" -245279,Apple Airpods Headphones,1,150,08/01/19 20:40,"187 Wilson St, Los Angeles, CA 90001" -245280,Bose SoundSport Headphones,1,99.99,08/06/19 14:13,"950 Lake St, Boston, MA 02215" -245281,Wired Headphones,1,11.99,08/02/19 17:01,"300 9th St, Dallas, TX 75001" -245282,Wired Headphones,1,11.99,08/23/19 23:43,"842 North St, Portland, OR 97035" -245283,AA Batteries (4-pack),5,3.84,08/03/19 21:40,"312 Spruce St, Seattle, WA 98101" -245284,27in FHD Monitor,1,149.99,08/17/19 00:14,"143 Jackson St, New York City, NY 10001" -245285,Google Phone,1,600,08/30/19 13:44,"232 4th St, Portland, OR 97035" -245286,Apple Airpods Headphones,1,150,08/18/19 20:28,"961 7th St, Atlanta, GA 30301" -245287,Flatscreen TV,1,300,08/08/19 12:30,"937 North St, Boston, MA 02215" -245288,34in Ultrawide Monitor,1,379.99,08/20/19 14:43,"847 Pine St, Seattle, WA 98101" -245289,Apple Airpods Headphones,1,150,08/18/19 08:35,"830 8th St, Los Angeles, CA 90001" -245290,AA Batteries (4-pack),1,3.84,08/28/19 14:37,"199 5th St, Portland, OR 97035" -245291,AAA Batteries (4-pack),2,2.99,08/01/19 17:41,"566 Dogwood St, San Francisco, CA 94016" -245292,Wired Headphones,1,11.99,08/11/19 21:58,"478 Jefferson St, Seattle, WA 98101" -245293,AAA Batteries (4-pack),1,2.99,08/07/19 22:45,"304 Elm St, Seattle, WA 98101" -245294,Lightning Charging Cable,1,14.95,08/19/19 21:14,"749 Main St, Los Angeles, CA 90001" -245295,Lightning Charging Cable,1,14.95,08/08/19 12:07,"820 Dogwood St, Seattle, WA 98101" -245296,Bose SoundSport Headphones,1,99.99,08/05/19 17:19,"491 Cherry St, Seattle, WA 98101" -245297,Apple Airpods Headphones,1,150,08/08/19 14:47,"728 11th St, Atlanta, GA 30301" -245298,Wired Headphones,1,11.99,08/07/19 12:28,"974 1st St, New York City, NY 10001" -245299,AAA Batteries (4-pack),2,2.99,08/11/19 17:58,"768 7th St, San Francisco, CA 94016" -245300,Macbook Pro Laptop,1,1700,08/22/19 15:15,"201 Adams St, Los Angeles, CA 90001" -245301,AAA Batteries (4-pack),2,2.99,08/25/19 10:32,"341 North St, Boston, MA 02215" -245302,Bose SoundSport Headphones,1,99.99,08/14/19 16:55,"911 Washington St, San Francisco, CA 94016" -245303,Bose SoundSport Headphones,1,99.99,08/02/19 12:53,"543 Forest St, Los Angeles, CA 90001" -245304,Wired Headphones,1,11.99,08/11/19 20:26,"418 Dogwood St, New York City, NY 10001" -245305,Lightning Charging Cable,1,14.95,08/17/19 09:11,"42 6th St, New York City, NY 10001" -245306,Lightning Charging Cable,1,14.95,08/10/19 11:55,"417 13th St, Seattle, WA 98101" -245307,USB-C Charging Cable,1,11.95,08/05/19 20:17,"199 Willow St, Portland, OR 97035" -245308,USB-C Charging Cable,1,11.95,08/28/19 14:48,"564 Adams St, Los Angeles, CA 90001" -245309,AA Batteries (4-pack),2,3.84,08/23/19 12:02,"727 Dogwood St, Los Angeles, CA 90001" -245310,USB-C Charging Cable,1,11.95,08/10/19 13:02,"865 10th St, San Francisco, CA 94016" -245311,Macbook Pro Laptop,1,1700,08/08/19 19:20,"956 Main St, San Francisco, CA 94016" -245312,Vareebadd Phone,1,400,08/21/19 16:51,"899 Elm St, Dallas, TX 75001" -245312,USB-C Charging Cable,1,11.95,08/21/19 16:51,"899 Elm St, Dallas, TX 75001" -245313,AA Batteries (4-pack),2,3.84,08/14/19 11:02,"53 Spruce St, Portland, OR 97035" -245314,Bose SoundSport Headphones,1,99.99,08/03/19 15:52,"708 Church St, San Francisco, CA 94016" -245315,Apple Airpods Headphones,1,150,08/23/19 17:24,"929 Spruce St, New York City, NY 10001" -245316,Bose SoundSport Headphones,1,99.99,08/16/19 09:58,"589 Willow St, San Francisco, CA 94016" -245317,iPhone,1,700,08/29/19 13:54,"947 Wilson St, San Francisco, CA 94016" -245317,Lightning Charging Cable,1,14.95,08/29/19 13:54,"947 Wilson St, San Francisco, CA 94016" -245318,AAA Batteries (4-pack),3,2.99,08/28/19 21:57,"412 2nd St, New York City, NY 10001" -245319,Macbook Pro Laptop,1,1700,08/11/19 21:01,"843 Park St, San Francisco, CA 94016" -245320,Wired Headphones,1,11.99,08/14/19 00:08,"694 Pine St, Portland, OR 97035" -245321,USB-C Charging Cable,1,11.95,08/08/19 20:16,"450 Maple St, Dallas, TX 75001" -245322,AAA Batteries (4-pack),1,2.99,08/28/19 16:07,"366 Center St, Dallas, TX 75001" -245323,USB-C Charging Cable,1,11.95,08/01/19 17:33,"763 11th St, New York City, NY 10001" -245324,USB-C Charging Cable,1,11.95,08/26/19 22:22,"993 Maple St, Boston, MA 02215" -245325,AA Batteries (4-pack),1,3.84,08/24/19 12:28,"295 Cherry St, Los Angeles, CA 90001" -245326,27in 4K Gaming Monitor,1,389.99,08/29/19 12:57,"51 Walnut St, Los Angeles, CA 90001" -245327,27in FHD Monitor,1,149.99,08/25/19 08:32,"688 North St, Seattle, WA 98101" -245328,Wired Headphones,1,11.99,08/04/19 18:27,"989 River St, New York City, NY 10001" -245329,Lightning Charging Cable,1,14.95,08/10/19 09:32,"177 Jefferson St, Seattle, WA 98101" -245330,AAA Batteries (4-pack),4,2.99,08/13/19 00:05,"687 Madison St, Boston, MA 02215" -245331,Lightning Charging Cable,2,14.95,08/26/19 17:17,"4 Jackson St, Portland, OR 97035" -245332,Wired Headphones,1,11.99,08/31/19 18:33,"498 1st St, Boston, MA 02215" -245333,AAA Batteries (4-pack),2,2.99,08/09/19 12:32,"7 North St, Dallas, TX 75001" -245334,USB-C Charging Cable,2,11.95,08/03/19 20:50,"316 Church St, Dallas, TX 75001" -245335,AA Batteries (4-pack),1,3.84,08/24/19 12:18,"700 Lincoln St, San Francisco, CA 94016" -245336,AAA Batteries (4-pack),1,2.99,08/29/19 09:50,"100 13th St, San Francisco, CA 94016" -245337,Apple Airpods Headphones,1,150,08/25/19 07:35,"772 4th St, Seattle, WA 98101" -245338,27in 4K Gaming Monitor,1,389.99,08/01/19 16:04,"978 Dogwood St, San Francisco, CA 94016" -245339,Macbook Pro Laptop,1,1700,08/26/19 10:55,"641 Church St, Portland, OR 97035" -245340,Macbook Pro Laptop,1,1700,08/01/19 14:17,"50 Wilson St, Dallas, TX 75001" -245341,Wired Headphones,1,11.99,08/08/19 14:27,"504 1st St, New York City, NY 10001" -245342,USB-C Charging Cable,1,11.95,08/03/19 17:51,"532 Elm St, Seattle, WA 98101" -245343,34in Ultrawide Monitor,1,379.99,08/11/19 13:13,"733 Willow St, Portland, ME 04101" -245344,AAA Batteries (4-pack),2,2.99,08/20/19 13:08,"152 South St, Seattle, WA 98101" -245345,AA Batteries (4-pack),1,3.84,08/08/19 09:36,"90 Meadow St, Los Angeles, CA 90001" -245346,Lightning Charging Cable,1,14.95,08/01/19 07:16,"627 Main St, Dallas, TX 75001" -245347,20in Monitor,1,109.99,08/14/19 11:26,"659 Maple St, Dallas, TX 75001" -245348,Wired Headphones,1,11.99,08/06/19 15:33,"671 Willow St, New York City, NY 10001" -245349,USB-C Charging Cable,1,11.95,08/21/19 10:46,"815 Elm St, Los Angeles, CA 90001" -245350,USB-C Charging Cable,1,11.95,08/06/19 18:24,"343 Dogwood St, New York City, NY 10001" -245351,iPhone,1,700,08/06/19 15:05,"392 Jefferson St, Los Angeles, CA 90001" -245352,ThinkPad Laptop,1,999.99,08/19/19 15:22,"58 West St, San Francisco, CA 94016" -245353,Google Phone,1,600,08/01/19 13:15,"691 7th St, San Francisco, CA 94016" -245353,USB-C Charging Cable,1,11.95,08/01/19 13:15,"691 7th St, San Francisco, CA 94016" -245354,AAA Batteries (4-pack),1,2.99,08/17/19 13:01,"472 2nd St, San Francisco, CA 94016" -245355,Wired Headphones,1,11.99,08/28/19 07:09,"579 Park St, Atlanta, GA 30301" -245356,Macbook Pro Laptop,1,1700,08/31/19 13:07,"23 North St, Los Angeles, CA 90001" -245357,Wired Headphones,2,11.99,08/01/19 20:15,"744 Meadow St, Dallas, TX 75001" -245358,Google Phone,1,600,08/10/19 20:14,"110 5th St, New York City, NY 10001" -245359,27in FHD Monitor,1,149.99,08/26/19 20:48,"859 Hill St, Boston, MA 02215" -245360,USB-C Charging Cable,1,11.95,08/22/19 02:20,"762 Lakeview St, Dallas, TX 75001" -245361,Macbook Pro Laptop,1,1700,08/16/19 19:38,"817 Jackson St, San Francisco, CA 94016" -245362,AAA Batteries (4-pack),1,2.99,08/24/19 21:03,"838 Elm St, Los Angeles, CA 90001" -245363,Lightning Charging Cable,1,14.95,08/25/19 12:23,"346 Lake St, Atlanta, GA 30301" -245364,AAA Batteries (4-pack),1,2.99,08/08/19 20:20,"891 Chestnut St, New York City, NY 10001" -245365,USB-C Charging Cable,1,11.95,08/12/19 21:28,"753 Maple St, Los Angeles, CA 90001" -245366,AA Batteries (4-pack),1,3.84,08/04/19 23:11,"977 Chestnut St, Los Angeles, CA 90001" -245367,AAA Batteries (4-pack),1,2.99,08/25/19 10:01,"633 Meadow St, Boston, MA 02215" -245368,Bose SoundSport Headphones,1,99.99,08/08/19 21:59,"45 River St, Seattle, WA 98101" -245369,USB-C Charging Cable,1,11.95,08/13/19 23:19,"398 Elm St, Dallas, TX 75001" -245370,27in 4K Gaming Monitor,1,389.99,08/02/19 12:57,"19 2nd St, Portland, OR 97035" -245371,Lightning Charging Cable,1,14.95,08/13/19 13:17,"915 Dogwood St, Seattle, WA 98101" -245371,AA Batteries (4-pack),1,3.84,08/13/19 13:17,"915 Dogwood St, Seattle, WA 98101" -245372,Macbook Pro Laptop,1,1700,08/29/19 12:10,"237 Pine St, New York City, NY 10001" -245373,Lightning Charging Cable,1,14.95,08/13/19 02:28,"115 Madison St, Los Angeles, CA 90001" -245374,27in 4K Gaming Monitor,1,389.99,08/08/19 16:48,"476 Center St, Atlanta, GA 30301" -245375,Macbook Pro Laptop,1,1700,08/29/19 19:48,"254 5th St, Portland, OR 97035" -245376,Google Phone,1,600,08/01/19 21:43,"783 6th St, Boston, MA 02215" -245377,Macbook Pro Laptop,1,1700,08/19/19 08:22,"503 Hickory St, Dallas, TX 75001" -245378,Vareebadd Phone,1,400,08/25/19 13:18,"195 7th St, New York City, NY 10001" -245379,Lightning Charging Cable,1,14.95,08/04/19 23:24,"632 Spruce St, Portland, OR 97035" -245380,Lightning Charging Cable,1,14.95,08/06/19 09:04,"152 Highland St, Los Angeles, CA 90001" -245381,AA Batteries (4-pack),2,3.84,08/30/19 21:26,"578 Forest St, Boston, MA 02215" -245382,USB-C Charging Cable,1,11.95,08/27/19 11:50,"228 11th St, Portland, OR 97035" -245383,iPhone,1,700,08/09/19 12:21,"283 Church St, Boston, MA 02215" -245384,AAA Batteries (4-pack),1,2.99,08/07/19 08:12,"98 Hickory St, Los Angeles, CA 90001" -245385,Apple Airpods Headphones,1,150,08/02/19 18:51,"395 Sunset St, San Francisco, CA 94016" -245386,LG Dryer,1,600.0,08/11/19 13:07,"95 7th St, Seattle, WA 98101" -245387,Apple Airpods Headphones,1,150,08/09/19 11:15,"93 Cherry St, Seattle, WA 98101" -245388,AA Batteries (4-pack),1,3.84,08/04/19 07:03,"292 Elm St, Los Angeles, CA 90001" -245389,Bose SoundSport Headphones,1,99.99,08/17/19 20:28,"374 Pine St, Los Angeles, CA 90001" -245390,USB-C Charging Cable,1,11.95,08/17/19 15:43,"295 Cherry St, San Francisco, CA 94016" -245391,AA Batteries (4-pack),1,3.84,08/11/19 23:01,"457 1st St, Seattle, WA 98101" -245392,Lightning Charging Cable,1,14.95,08/14/19 23:57,"315 Jefferson St, Seattle, WA 98101" -245393,27in 4K Gaming Monitor,1,389.99,08/21/19 18:18,"871 West St, Los Angeles, CA 90001" -245394,Bose SoundSport Headphones,1,99.99,08/24/19 12:45,"68 West St, Boston, MA 02215" -245395,AA Batteries (4-pack),1,3.84,08/25/19 10:27,"310 Jefferson St, New York City, NY 10001" -245396,AAA Batteries (4-pack),1,2.99,08/03/19 14:22,"829 Cherry St, Los Angeles, CA 90001" -245397,Lightning Charging Cable,1,14.95,08/16/19 11:49,"48 River St, Boston, MA 02215" -245398,27in FHD Monitor,1,149.99,08/29/19 16:57,"898 North St, Boston, MA 02215" -245399,AAA Batteries (4-pack),1,2.99,08/12/19 08:48,"134 River St, San Francisco, CA 94016" -245400,AA Batteries (4-pack),2,3.84,08/13/19 07:50,"138 Meadow St, San Francisco, CA 94016" -245401,AAA Batteries (4-pack),1,2.99,08/12/19 11:12,"491 Dogwood St, San Francisco, CA 94016" -245402,27in FHD Monitor,1,149.99,08/14/19 18:17,"65 Church St, Los Angeles, CA 90001" -245403,AA Batteries (4-pack),3,3.84,08/10/19 15:24,"515 4th St, Dallas, TX 75001" -245404,USB-C Charging Cable,1,11.95,08/11/19 19:16,"882 Washington St, Portland, OR 97035" -245405,Macbook Pro Laptop,1,1700,08/10/19 19:34,"296 Park St, San Francisco, CA 94016" -245406,Bose SoundSport Headphones,1,99.99,08/05/19 09:41,"718 Jefferson St, Los Angeles, CA 90001" -245407,Apple Airpods Headphones,1,150,08/09/19 17:22,"510 Pine St, Seattle, WA 98101" -245408,USB-C Charging Cable,1,11.95,08/02/19 12:04,"853 Willow St, Boston, MA 02215" -245409,Lightning Charging Cable,1,14.95,08/09/19 20:13,"466 Elm St, Austin, TX 73301" -245410,AAA Batteries (4-pack),1,2.99,08/21/19 20:29,"178 River St, Seattle, WA 98101" -245411,Vareebadd Phone,1,400,08/05/19 21:31,"531 13th St, San Francisco, CA 94016" -245412,Wired Headphones,1,11.99,08/14/19 14:28,"581 Chestnut St, San Francisco, CA 94016" -245413,USB-C Charging Cable,1,11.95,08/01/19 12:25,"864 Hill St, Austin, TX 73301" -245414,LG Dryer,1,600.0,08/12/19 16:57,"77 8th St, Los Angeles, CA 90001" -245415,USB-C Charging Cable,1,11.95,08/20/19 21:55,"183 Spruce St, Seattle, WA 98101" -245415,AA Batteries (4-pack),1,3.84,08/20/19 21:55,"183 Spruce St, Seattle, WA 98101" -245416,Apple Airpods Headphones,1,150,08/27/19 04:55,"840 Meadow St, San Francisco, CA 94016" -245417,Wired Headphones,2,11.99,08/09/19 16:44,"46 Chestnut St, Atlanta, GA 30301" -245418,Wired Headphones,1,11.99,08/19/19 19:37,"374 Center St, Boston, MA 02215" -245419,USB-C Charging Cable,1,11.95,08/31/19 02:09,"751 13th St, San Francisco, CA 94016" -245420,AA Batteries (4-pack),1,3.84,08/02/19 12:04,"178 Spruce St, San Francisco, CA 94016" -245421,ThinkPad Laptop,1,999.99,08/06/19 11:09,"191 Walnut St, Boston, MA 02215" -245422,27in 4K Gaming Monitor,1,389.99,08/14/19 19:18,"403 13th St, Boston, MA 02215" -245423,ThinkPad Laptop,1,999.99,08/24/19 13:27,"82 South St, New York City, NY 10001" -245424,Apple Airpods Headphones,1,150,08/19/19 16:26,"421 Washington St, New York City, NY 10001" -245425,USB-C Charging Cable,1,11.95,08/06/19 12:37,"735 7th St, Los Angeles, CA 90001" -245426,Wired Headphones,1,11.99,08/05/19 13:39,"532 Spruce St, Los Angeles, CA 90001" -245427,AAA Batteries (4-pack),3,2.99,08/31/19 22:04,"875 North St, New York City, NY 10001" -245428,Lightning Charging Cable,1,14.95,08/22/19 15:00,"375 Highland St, Los Angeles, CA 90001" -245429,AAA Batteries (4-pack),1,2.99,08/05/19 19:00,"998 Spruce St, Boston, MA 02215" -245430,AA Batteries (4-pack),1,3.84,08/05/19 17:54,"253 Meadow St, San Francisco, CA 94016" -245431,iPhone,1,700,08/26/19 17:01,"947 Cedar St, Los Angeles, CA 90001" -245432,Lightning Charging Cable,1,14.95,08/16/19 18:03,"290 Walnut St, Seattle, WA 98101" -245433,Apple Airpods Headphones,1,150,08/05/19 12:31,"621 13th St, Austin, TX 73301" -245434,Wired Headphones,1,11.99,08/27/19 22:01,"437 South St, Los Angeles, CA 90001" -245435,AA Batteries (4-pack),1,3.84,08/02/19 14:01,"16 9th St, New York City, NY 10001" -245436,AAA Batteries (4-pack),2,2.99,08/22/19 09:53,"147 Highland St, Seattle, WA 98101" -245437,Macbook Pro Laptop,1,1700,08/26/19 18:01,"612 9th St, Seattle, WA 98101" -245438,Apple Airpods Headphones,1,150,08/26/19 14:12,"605 Highland St, Boston, MA 02215" -245439,AA Batteries (4-pack),1,3.84,08/12/19 14:26,"287 9th St, Seattle, WA 98101" -245440,Apple Airpods Headphones,1,150,08/31/19 14:34,"151 Meadow St, Boston, MA 02215" -245441,USB-C Charging Cable,1,11.95,08/07/19 14:14,"350 Hickory St, Los Angeles, CA 90001" -245442,AAA Batteries (4-pack),2,2.99,08/04/19 21:43,"685 4th St, Los Angeles, CA 90001" -245443,Apple Airpods Headphones,1,150,08/28/19 13:17,"397 Hickory St, Seattle, WA 98101" -245444,AA Batteries (4-pack),2,3.84,08/24/19 07:23,"642 2nd St, San Francisco, CA 94016" -245445,Lightning Charging Cable,2,14.95,08/08/19 11:47,"671 Adams St, San Francisco, CA 94016" -245446,27in FHD Monitor,1,149.99,08/27/19 14:48,"388 Wilson St, San Francisco, CA 94016" -245447,Apple Airpods Headphones,1,150,08/02/19 14:35,"853 11th St, Los Angeles, CA 90001" -245448,Wired Headphones,1,11.99,08/12/19 18:54,"555 Lincoln St, Dallas, TX 75001" -245449,27in FHD Monitor,1,149.99,08/25/19 20:53,"577 West St, San Francisco, CA 94016" -245450,ThinkPad Laptop,1,999.99,08/16/19 08:10,"130 Ridge St, Boston, MA 02215" -245451,27in 4K Gaming Monitor,1,389.99,08/14/19 10:16,"384 5th St, New York City, NY 10001" -245452,20in Monitor,1,109.99,08/04/19 12:27,"333 4th St, San Francisco, CA 94016" -245453,Flatscreen TV,1,300,08/31/19 00:15,"427 Sunset St, New York City, NY 10001" -245454,AA Batteries (4-pack),1,3.84,08/27/19 19:42,"536 1st St, Los Angeles, CA 90001" -245455,Lightning Charging Cable,1,14.95,08/07/19 13:07,"61 12th St, Dallas, TX 75001" -245456,AAA Batteries (4-pack),1,2.99,08/07/19 00:12,"353 Park St, Portland, OR 97035" -245457,AA Batteries (4-pack),1,3.84,08/30/19 15:37,"192 5th St, San Francisco, CA 94016" -245458,Apple Airpods Headphones,1,150,08/28/19 22:18,"127 Lake St, San Francisco, CA 94016" -245459,AA Batteries (4-pack),2,3.84,08/05/19 13:24,"900 Lakeview St, Atlanta, GA 30301" -245460,AA Batteries (4-pack),2,3.84,08/31/19 15:07,"987 South St, Austin, TX 73301" -245461,27in FHD Monitor,1,149.99,08/24/19 08:39,"737 Dogwood St, Los Angeles, CA 90001" -245462,AA Batteries (4-pack),1,3.84,08/02/19 00:24,"307 Park St, New York City, NY 10001" -245463,34in Ultrawide Monitor,1,379.99,08/02/19 08:03,"283 14th St, Dallas, TX 75001" -245464,Apple Airpods Headphones,1,150,08/24/19 22:19,"735 Elm St, San Francisco, CA 94016" -245465,AAA Batteries (4-pack),1,2.99,08/23/19 15:44,"299 River St, New York City, NY 10001" -245465,20in Monitor,1,109.99,08/23/19 15:44,"299 River St, New York City, NY 10001" -245466,USB-C Charging Cable,1,11.95,08/26/19 15:18,"632 Wilson St, Boston, MA 02215" -245467,Apple Airpods Headphones,1,150,08/24/19 12:15,"920 Dogwood St, Seattle, WA 98101" -245468,iPhone,1,700,08/10/19 15:28,"733 2nd St, San Francisco, CA 94016" -245468,Lightning Charging Cable,1,14.95,08/10/19 15:28,"733 2nd St, San Francisco, CA 94016" -245469,USB-C Charging Cable,1,11.95,08/04/19 20:44,"746 Washington St, New York City, NY 10001" -245470,Google Phone,1,600,08/17/19 23:49,"689 Lake St, Boston, MA 02215" -245471,Google Phone,1,600,08/05/19 08:27,"483 Lincoln St, New York City, NY 10001" -245472,Flatscreen TV,1,300,08/09/19 11:26,"164 13th St, Seattle, WA 98101" -245473,USB-C Charging Cable,1,11.95,08/21/19 02:45,"608 Adams St, San Francisco, CA 94016" -245474,20in Monitor,1,109.99,08/28/19 17:34,"119 11th St, San Francisco, CA 94016" -245475,Wired Headphones,1,11.99,08/16/19 19:11,"913 Dogwood St, San Francisco, CA 94016" -245476,27in FHD Monitor,1,149.99,08/27/19 09:06,"385 Lakeview St, San Francisco, CA 94016" -245477,27in FHD Monitor,1,149.99,08/14/19 21:48,"678 14th St, New York City, NY 10001" -245478,Google Phone,1,600,08/17/19 18:33,"119 Lincoln St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -245479,Macbook Pro Laptop,1,1700,08/05/19 11:21,"766 Sunset St, New York City, NY 10001" -245480,Flatscreen TV,1,300,08/25/19 08:55,"189 Church St, Portland, ME 04101" -245481,Lightning Charging Cable,1,14.95,08/31/19 04:26,"28 7th St, Seattle, WA 98101" -245482,AA Batteries (4-pack),1,3.84,08/12/19 08:55,"756 Hickory St, New York City, NY 10001" -245483,Wired Headphones,1,11.99,08/14/19 19:48,"401 Lincoln St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -245484,Bose SoundSport Headphones,1,99.99,08/07/19 17:36,"160 Madison St, New York City, NY 10001" -245485,Bose SoundSport Headphones,1,99.99,08/23/19 07:13,"198 2nd St, New York City, NY 10001" -245486,Flatscreen TV,1,300,08/13/19 22:32,"888 Main St, Los Angeles, CA 90001" -245487,Flatscreen TV,1,300,08/12/19 11:40,"453 Cedar St, Boston, MA 02215" -245488,USB-C Charging Cable,1,11.95,08/16/19 13:53,"743 10th St, New York City, NY 10001" -245489,USB-C Charging Cable,1,11.95,08/25/19 11:05,"550 Ridge St, New York City, NY 10001" -245490,iPhone,1,700,08/23/19 10:33,"767 Cedar St, Los Angeles, CA 90001" -245491,34in Ultrawide Monitor,1,379.99,08/14/19 19:38,"867 West St, Boston, MA 02215" -245492,Apple Airpods Headphones,1,150,08/06/19 13:28,"664 Cherry St, Portland, ME 04101" -245493,Lightning Charging Cable,1,14.95,08/14/19 13:59,"634 Sunset St, Austin, TX 73301" -245494,USB-C Charging Cable,1,11.95,08/25/19 14:28,"604 Adams St, New York City, NY 10001" -245495,Wired Headphones,1,11.99,08/17/19 07:39,"534 Pine St, Boston, MA 02215" -245496,Bose SoundSport Headphones,1,99.99,08/12/19 14:43,"60 13th St, Austin, TX 73301" -245497,iPhone,1,700,08/14/19 16:39,"741 North St, Seattle, WA 98101" -245497,Lightning Charging Cable,1,14.95,08/14/19 16:39,"741 North St, Seattle, WA 98101" -245498,27in FHD Monitor,1,149.99,08/18/19 21:12,"738 River St, New York City, NY 10001" -245499,AA Batteries (4-pack),1,3.84,08/21/19 15:44,"230 Ridge St, San Francisco, CA 94016" -245500,AA Batteries (4-pack),1,3.84,08/19/19 09:32,"129 14th St, San Francisco, CA 94016" -245501,34in Ultrawide Monitor,1,379.99,08/17/19 22:04,"320 Walnut St, Austin, TX 73301" -245502,AA Batteries (4-pack),1,3.84,08/16/19 13:12,"663 Highland St, Atlanta, GA 30301" -245503,Lightning Charging Cable,1,14.95,08/28/19 18:01,"453 9th St, New York City, NY 10001" -245504,Wired Headphones,1,11.99,08/25/19 10:10,"612 Spruce St, San Francisco, CA 94016" -245505,Lightning Charging Cable,1,14.95,08/04/19 10:38,"777 Jackson St, Seattle, WA 98101" -245506,AA Batteries (4-pack),2,3.84,08/06/19 15:43,"792 Adams St, Boston, MA 02215" -245507,Bose SoundSport Headphones,1,99.99,08/10/19 11:30,"37 Chestnut St, New York City, NY 10001" -245508,AA Batteries (4-pack),1,3.84,08/16/19 10:59,"875 Pine St, San Francisco, CA 94016" -245509,Apple Airpods Headphones,1,150,08/19/19 23:19,"902 Sunset St, New York City, NY 10001" -245510,27in FHD Monitor,1,149.99,08/14/19 16:45,"497 Highland St, Seattle, WA 98101" -245511,Bose SoundSport Headphones,1,99.99,08/07/19 10:53,"614 Cherry St, San Francisco, CA 94016" -245512,iPhone,1,700,08/09/19 07:53,"821 Park St, Los Angeles, CA 90001" -245513,27in FHD Monitor,1,149.99,08/09/19 05:35,"211 Walnut St, Dallas, TX 75001" -245514,AAA Batteries (4-pack),2,2.99,08/17/19 19:36,"703 River St, Dallas, TX 75001" -245515,AAA Batteries (4-pack),1,2.99,08/03/19 17:55,"557 Willow St, Dallas, TX 75001" -245516,AAA Batteries (4-pack),2,2.99,08/12/19 14:40,"982 South St, Atlanta, GA 30301" -245517,Apple Airpods Headphones,1,150,08/17/19 12:51,"558 West St, San Francisco, CA 94016" -245518,Bose SoundSport Headphones,1,99.99,08/27/19 18:34,"96 Dogwood St, Portland, OR 97035" -245519,AAA Batteries (4-pack),2,2.99,08/08/19 17:40,"650 Dogwood St, Dallas, TX 75001" -245520,USB-C Charging Cable,1,11.95,08/29/19 03:02,"748 Cedar St, San Francisco, CA 94016" -245521,34in Ultrawide Monitor,1,379.99,08/13/19 00:59,"300 Highland St, San Francisco, CA 94016" -245522,AA Batteries (4-pack),1,3.84,08/05/19 22:57,"522 7th St, San Francisco, CA 94016" -245523,27in 4K Gaming Monitor,1,389.99,08/04/19 19:00,"104 6th St, Los Angeles, CA 90001" -245524,LG Washing Machine,1,600.0,08/28/19 14:27,"214 7th St, Boston, MA 02215" -245525,USB-C Charging Cable,1,11.95,08/16/19 13:24,"415 Madison St, San Francisco, CA 94016" -245526,Bose SoundSport Headphones,1,99.99,08/06/19 00:26,"471 14th St, Boston, MA 02215" -245527,AAA Batteries (4-pack),2,2.99,08/29/19 14:31,"468 4th St, Los Angeles, CA 90001" -245528,27in 4K Gaming Monitor,1,389.99,08/07/19 11:37,"692 Main St, San Francisco, CA 94016" -245529,Wired Headphones,1,11.99,08/19/19 22:37,"735 Lake St, Los Angeles, CA 90001" -245530,Lightning Charging Cable,1,14.95,08/20/19 19:07,"595 Jefferson St, San Francisco, CA 94016" -245531,iPhone,1,700,08/14/19 09:08,"770 Maple St, Dallas, TX 75001" -245532,Apple Airpods Headphones,1,150,08/31/19 11:25,"924 Hickory St, Boston, MA 02215" -245533,AA Batteries (4-pack),1,3.84,08/13/19 11:26,"617 South St, San Francisco, CA 94016" -245534,Bose SoundSport Headphones,1,99.99,08/01/19 17:40,"271 Johnson St, Seattle, WA 98101" -245535,27in 4K Gaming Monitor,1,389.99,08/18/19 19:13,"564 Main St, San Francisco, CA 94016" -245536,Wired Headphones,1,11.99,08/10/19 19:30,"468 14th St, Atlanta, GA 30301" -245537,ThinkPad Laptop,1,999.99,08/09/19 19:28,"567 Jackson St, Dallas, TX 75001" -245538,Lightning Charging Cable,1,14.95,08/15/19 19:37,"976 Cedar St, San Francisco, CA 94016" -245539,AA Batteries (4-pack),1,3.84,08/07/19 13:18,"599 4th St, Portland, ME 04101" -245540,Bose SoundSport Headphones,1,99.99,08/25/19 22:23,"351 13th St, Boston, MA 02215" -245541,Wired Headphones,1,11.99,08/27/19 13:37,"986 Wilson St, Boston, MA 02215" -245542,Google Phone,1,600,08/18/19 17:48,"596 Park St, San Francisco, CA 94016" -245543,Vareebadd Phone,1,400,08/14/19 06:06,"496 Cedar St, Boston, MA 02215" -245544,iPhone,1,700,08/07/19 06:11,"371 Ridge St, Atlanta, GA 30301" -245545,Lightning Charging Cable,1,14.95,08/06/19 14:15,"441 Highland St, New York City, NY 10001" -245546,Macbook Pro Laptop,1,1700,08/10/19 18:40,"156 Park St, Boston, MA 02215" -245547,Bose SoundSport Headphones,1,99.99,08/24/19 19:52,"263 Willow St, Los Angeles, CA 90001" -245548,Lightning Charging Cable,1,14.95,08/19/19 22:22,"242 Forest St, New York City, NY 10001" -245549,Lightning Charging Cable,1,14.95,08/28/19 21:02,"908 Chestnut St, Los Angeles, CA 90001" -245550,Wired Headphones,1,11.99,08/13/19 20:16,"256 Forest St, Seattle, WA 98101" -245551,Bose SoundSport Headphones,1,99.99,08/22/19 16:40,"454 Adams St, San Francisco, CA 94016" -245551,Flatscreen TV,1,300,08/22/19 16:40,"454 Adams St, San Francisco, CA 94016" -245552,USB-C Charging Cable,1,11.95,08/30/19 14:14,"380 Lakeview St, Los Angeles, CA 90001" -245553,Bose SoundSport Headphones,1,99.99,08/18/19 22:27,"499 Jackson St, Seattle, WA 98101" -245554,Bose SoundSport Headphones,1,99.99,08/03/19 11:39,"780 Willow St, New York City, NY 10001" -245555,Vareebadd Phone,1,400,08/02/19 11:32,"928 9th St, Seattle, WA 98101" -245556,iPhone,1,700,08/04/19 18:40,"641 4th St, Atlanta, GA 30301" -245557,27in 4K Gaming Monitor,1,389.99,08/21/19 09:59,"329 Church St, Seattle, WA 98101" -245558,AAA Batteries (4-pack),3,2.99,08/07/19 16:33,"691 5th St, San Francisco, CA 94016" -245559,AA Batteries (4-pack),1,3.84,08/11/19 15:05,"565 6th St, Los Angeles, CA 90001" -245560,27in 4K Gaming Monitor,1,389.99,08/04/19 19:40,"969 Johnson St, Boston, MA 02215" -245561,iPhone,1,700,08/17/19 14:27,"445 North St, Los Angeles, CA 90001" -245562,AA Batteries (4-pack),1,3.84,08/03/19 00:43,"529 2nd St, Portland, OR 97035" -245563,AAA Batteries (4-pack),1,2.99,08/11/19 18:09,"444 14th St, New York City, NY 10001" -245564,Google Phone,1,600,08/24/19 22:36,"57 12th St, New York City, NY 10001" -245564,Bose SoundSport Headphones,1,99.99,08/24/19 22:36,"57 12th St, New York City, NY 10001" -245565,27in 4K Gaming Monitor,1,389.99,08/28/19 21:46,"495 2nd St, San Francisco, CA 94016" -245566,Wired Headphones,1,11.99,08/06/19 20:50,"327 North St, Atlanta, GA 30301" -245567,USB-C Charging Cable,1,11.95,08/08/19 18:34,"282 River St, Los Angeles, CA 90001" -245568,AAA Batteries (4-pack),3,2.99,08/26/19 09:17,"134 Church St, New York City, NY 10001" -245569,Flatscreen TV,1,300,08/26/19 08:38,"901 13th St, San Francisco, CA 94016" -245570,AAA Batteries (4-pack),1,2.99,08/31/19 21:55,"797 Meadow St, San Francisco, CA 94016" -245571,iPhone,1,700,08/22/19 21:44,"702 North St, New York City, NY 10001" -245572,Apple Airpods Headphones,1,150,08/08/19 20:11,"217 9th St, Boston, MA 02215" -245573,AAA Batteries (4-pack),1,2.99,08/28/19 16:39,"610 Cherry St, Seattle, WA 98101" -245574,Macbook Pro Laptop,1,1700,08/20/19 17:19,"572 Jackson St, New York City, NY 10001" -245575,Lightning Charging Cable,1,14.95,08/18/19 00:55,"870 Hill St, Los Angeles, CA 90001" -245576,AAA Batteries (4-pack),2,2.99,08/23/19 08:25,"12 Hill St, San Francisco, CA 94016" -245577,Macbook Pro Laptop,1,1700,08/01/19 22:48,"373 11th St, Austin, TX 73301" -245578,27in 4K Gaming Monitor,1,389.99,08/27/19 09:17,"291 Elm St, Dallas, TX 75001" -245579,Apple Airpods Headphones,1,150,08/03/19 23:49,"156 Hickory St, Portland, ME 04101" -245580,Wired Headphones,1,11.99,08/03/19 17:44,"760 Church St, Seattle, WA 98101" -245581,Flatscreen TV,1,300,08/22/19 08:53,"604 Washington St, Los Angeles, CA 90001" -245582,AAA Batteries (4-pack),2,2.99,08/21/19 17:29,"207 4th St, Dallas, TX 75001" -245583,USB-C Charging Cable,1,11.95,08/22/19 12:07,"879 Jefferson St, Atlanta, GA 30301" -245584,Apple Airpods Headphones,1,150,08/20/19 19:55,"322 Hill St, Boston, MA 02215" -245585,Lightning Charging Cable,1,14.95,08/10/19 12:11,"820 Madison St, San Francisco, CA 94016" -245586,Apple Airpods Headphones,1,150,08/31/19 22:08,"207 Dogwood St, Seattle, WA 98101" -245587,27in 4K Gaming Monitor,1,389.99,08/14/19 16:18,"34 13th St, Austin, TX 73301" -245588,Wired Headphones,1,11.99,08/04/19 21:39,"199 Pine St, Los Angeles, CA 90001" -245589,AA Batteries (4-pack),1,3.84,08/13/19 05:37,"926 13th St, Boston, MA 02215" -245590,Apple Airpods Headphones,1,150,08/14/19 22:56,"327 Pine St, New York City, NY 10001" -245591,AAA Batteries (4-pack),1,2.99,08/02/19 18:52,"686 6th St, San Francisco, CA 94016" -245592,AAA Batteries (4-pack),1,2.99,08/23/19 21:28,"528 7th St, Boston, MA 02215" -245593,Bose SoundSport Headphones,1,99.99,08/19/19 08:10,"16 6th St, Atlanta, GA 30301" -245594,Bose SoundSport Headphones,1,99.99,08/25/19 22:43,"153 Lakeview St, Portland, OR 97035" -245595,Wired Headphones,1,11.99,08/24/19 18:38,"744 North St, Atlanta, GA 30301" -245596,Bose SoundSport Headphones,1,99.99,08/19/19 10:07,"533 7th St, Los Angeles, CA 90001" -245597,Bose SoundSport Headphones,1,99.99,08/20/19 16:49,"965 Wilson St, Dallas, TX 75001" -245598,Flatscreen TV,1,300,08/31/19 16:45,"86 Maple St, Dallas, TX 75001" -245599,USB-C Charging Cable,1,11.95,08/15/19 14:08,"773 Church St, San Francisco, CA 94016" -245600,Google Phone,1,600,08/04/19 08:53,"389 5th St, Austin, TX 73301" -245600,Bose SoundSport Headphones,1,99.99,08/04/19 08:53,"389 5th St, Austin, TX 73301" -245601,USB-C Charging Cable,1,11.95,08/25/19 09:54,"363 Maple St, New York City, NY 10001" -245602,iPhone,1,700,08/14/19 11:50,"584 Lake St, New York City, NY 10001" -245602,Wired Headphones,1,11.99,08/14/19 11:50,"584 Lake St, New York City, NY 10001" -245603,AAA Batteries (4-pack),1,2.99,08/12/19 19:52,"470 Adams St, San Francisco, CA 94016" -245604,Lightning Charging Cable,1,14.95,08/21/19 09:05,"853 Ridge St, Seattle, WA 98101" -245605,AA Batteries (4-pack),1,3.84,08/03/19 21:18,"406 Wilson St, Boston, MA 02215" -245606,AA Batteries (4-pack),1,3.84,08/23/19 13:51,"318 Lakeview St, Portland, ME 04101" -245607,Lightning Charging Cable,1,14.95,08/01/19 19:33,"75 5th St, Portland, OR 97035" -245608,Wired Headphones,1,11.99,08/07/19 16:00,"976 Highland St, San Francisco, CA 94016" -245609,27in FHD Monitor,1,149.99,08/07/19 22:14,"237 Hickory St, Los Angeles, CA 90001" -245610,Lightning Charging Cable,1,14.95,08/05/19 23:48,"332 Dogwood St, Seattle, WA 98101" -245611,USB-C Charging Cable,1,11.95,08/15/19 11:54,"374 Lake St, Boston, MA 02215" -245612,Wired Headphones,1,11.99,08/29/19 18:48,"85 South St, San Francisco, CA 94016" -245613,27in 4K Gaming Monitor,1,389.99,08/11/19 15:15,"18 Highland St, Seattle, WA 98101" -245614,Wired Headphones,1,11.99,08/29/19 21:30,"830 Adams St, San Francisco, CA 94016" -245615,Google Phone,1,600,08/27/19 11:05,"538 Cedar St, Portland, OR 97035" -245615,USB-C Charging Cable,1,11.95,08/27/19 11:05,"538 Cedar St, Portland, OR 97035" -245616,Wired Headphones,1,11.99,08/18/19 22:45,"157 Willow St, San Francisco, CA 94016" -245617,27in FHD Monitor,1,149.99,08/28/19 18:01,"837 Chestnut St, San Francisco, CA 94016" -245618,27in FHD Monitor,1,149.99,08/30/19 08:30,"6 Sunset St, Portland, OR 97035" -245619,Flatscreen TV,1,300,08/13/19 03:39,"215 13th St, Los Angeles, CA 90001" -245620,ThinkPad Laptop,1,999.99,08/24/19 16:59,"536 Hill St, Seattle, WA 98101" -245621,Lightning Charging Cable,1,14.95,08/09/19 22:33,"564 8th St, Atlanta, GA 30301" -245622,USB-C Charging Cable,1,11.95,08/06/19 11:00,"406 Dogwood St, San Francisco, CA 94016" -245623,Lightning Charging Cable,1,14.95,08/05/19 18:44,"68 Lakeview St, Atlanta, GA 30301" -245624,AAA Batteries (4-pack),1,2.99,08/14/19 14:10,"189 Lake St, San Francisco, CA 94016" -245625,AAA Batteries (4-pack),1,2.99,08/28/19 09:49,"198 Ridge St, Atlanta, GA 30301" -245626,USB-C Charging Cable,2,11.95,08/18/19 11:50,"887 Wilson St, San Francisco, CA 94016" -245627,AAA Batteries (4-pack),1,2.99,08/08/19 04:22,"911 11th St, New York City, NY 10001" -245628,Wired Headphones,1,11.99,08/02/19 21:49,"640 Park St, Portland, OR 97035" -245629,27in 4K Gaming Monitor,1,389.99,08/25/19 18:55,"803 Wilson St, Seattle, WA 98101" -245630,Lightning Charging Cable,1,14.95,08/09/19 13:38,"981 Lakeview St, Portland, OR 97035" -245631,Lightning Charging Cable,1,14.95,08/03/19 11:59,"61 Sunset St, San Francisco, CA 94016" -245632,Lightning Charging Cable,1,14.95,08/13/19 10:38,"658 Jackson St, Portland, OR 97035" -245633,USB-C Charging Cable,1,11.95,08/12/19 16:12,"424 River St, Los Angeles, CA 90001" -245634,Lightning Charging Cable,1,14.95,08/26/19 12:21,"421 7th St, Boston, MA 02215" -245635,Lightning Charging Cable,1,14.95,08/02/19 17:54,"620 5th St, New York City, NY 10001" -245636,Lightning Charging Cable,1,14.95,08/19/19 21:07,"793 12th St, Dallas, TX 75001" -245637,Bose SoundSport Headphones,1,99.99,08/07/19 21:06,"473 Johnson St, Seattle, WA 98101" -245638,AAA Batteries (4-pack),1,2.99,08/20/19 11:31,"724 Dogwood St, Austin, TX 73301" -245639,20in Monitor,1,109.99,08/19/19 12:17,"430 Walnut St, Los Angeles, CA 90001" -245640,USB-C Charging Cable,1,11.95,08/03/19 20:30,"413 North St, Seattle, WA 98101" -245641,34in Ultrawide Monitor,1,379.99,08/15/19 15:37,"777 1st St, San Francisco, CA 94016" -245642,AA Batteries (4-pack),1,3.84,08/21/19 18:33,"681 Chestnut St, Portland, ME 04101" -245643,AA Batteries (4-pack),1,3.84,08/06/19 20:10,"74 8th St, San Francisco, CA 94016" -245644,USB-C Charging Cable,1,11.95,08/10/19 22:03,"70 Forest St, Seattle, WA 98101" -245645,Lightning Charging Cable,1,14.95,08/30/19 18:37,"699 River St, Dallas, TX 75001" -245646,20in Monitor,1,109.99,08/13/19 11:21,"576 Chestnut St, Los Angeles, CA 90001" -245647,27in FHD Monitor,1,149.99,08/01/19 13:18,"894 Highland St, Dallas, TX 75001" -245648,AA Batteries (4-pack),1,3.84,08/04/19 22:48,"858 Main St, Los Angeles, CA 90001" -245649,USB-C Charging Cable,1,11.95,08/12/19 13:01,"697 Lakeview St, San Francisco, CA 94016" -245650,27in FHD Monitor,1,149.99,08/31/19 09:40,"673 5th St, Atlanta, GA 30301" -245651,Lightning Charging Cable,1,14.95,08/27/19 20:02,"779 Hickory St, Los Angeles, CA 90001" -245652,27in 4K Gaming Monitor,1,389.99,08/17/19 12:12,"374 River St, San Francisco, CA 94016" -245653,ThinkPad Laptop,1,999.99,08/14/19 18:01,"986 7th St, San Francisco, CA 94016" -245654,AA Batteries (4-pack),1,3.84,08/08/19 13:55,"867 Center St, San Francisco, CA 94016" -245655,USB-C Charging Cable,1,11.95,08/26/19 15:24,"413 West St, Boston, MA 02215" -245656,AA Batteries (4-pack),1,3.84,08/07/19 19:24,"938 13th St, New York City, NY 10001" -245657,Bose SoundSport Headphones,1,99.99,08/02/19 17:00,"566 Maple St, New York City, NY 10001" -245658,AAA Batteries (4-pack),1,2.99,08/18/19 12:05,"791 4th St, Boston, MA 02215" -245659,USB-C Charging Cable,1,11.95,08/16/19 12:20,"11 Hickory St, Portland, OR 97035" -245660,27in FHD Monitor,1,149.99,08/25/19 22:55,"407 Dogwood St, Atlanta, GA 30301" -245661,Bose SoundSport Headphones,1,99.99,08/23/19 14:53,"572 Center St, San Francisco, CA 94016" -245662,Lightning Charging Cable,1,14.95,08/28/19 15:13,"238 South St, New York City, NY 10001" -245663,Lightning Charging Cable,1,14.95,08/27/19 16:58,"397 Johnson St, Los Angeles, CA 90001" -245664,AAA Batteries (4-pack),1,2.99,08/30/19 21:21,"84 1st St, Atlanta, GA 30301" -245665,AA Batteries (4-pack),1,3.84,08/26/19 18:41,"740 North St, Portland, OR 97035" -245666,Google Phone,1,600,08/03/19 16:20,"643 West St, Boston, MA 02215" -245667,AAA Batteries (4-pack),3,2.99,08/03/19 11:21,"378 Highland St, Austin, TX 73301" -245668,Bose SoundSport Headphones,1,99.99,08/01/19 11:26,"692 Cedar St, Dallas, TX 75001" -245669,Macbook Pro Laptop,1,1700,08/30/19 08:29,"878 Cedar St, San Francisco, CA 94016" -245670,Vareebadd Phone,1,400,08/03/19 12:52,"536 Spruce St, Boston, MA 02215" -245671,Lightning Charging Cable,1,14.95,08/09/19 10:07,"150 Hill St, Dallas, TX 75001" -245672,AAA Batteries (4-pack),2,2.99,08/12/19 15:53,"243 Pine St, Boston, MA 02215" -245673,Lightning Charging Cable,1,14.95,08/27/19 18:39,"417 Jefferson St, Dallas, TX 75001" -245674,Apple Airpods Headphones,1,150,08/12/19 14:35,"404 Center St, San Francisco, CA 94016" -245675,USB-C Charging Cable,1,11.95,08/27/19 14:27,"63 Hickory St, San Francisco, CA 94016" -245676,USB-C Charging Cable,1,11.95,08/14/19 15:06,"798 Hill St, San Francisco, CA 94016" -245677,AAA Batteries (4-pack),3,2.99,08/01/19 18:31,"273 11th St, Seattle, WA 98101" -245678,USB-C Charging Cable,1,11.95,08/03/19 15:44,"490 13th St, New York City, NY 10001" -,,,,, -245679,AAA Batteries (4-pack),4,2.99,08/22/19 09:34,"255 9th St, Dallas, TX 75001" -245680,Bose SoundSport Headphones,1,99.99,08/09/19 19:54,"962 6th St, Atlanta, GA 30301" -245681,Google Phone,1,600,08/19/19 14:52,"591 14th St, New York City, NY 10001" -245682,27in 4K Gaming Monitor,1,389.99,08/24/19 15:49,"81 South St, Los Angeles, CA 90001" -245683,Lightning Charging Cable,1,14.95,08/24/19 12:53,"229 Dogwood St, Seattle, WA 98101" -245684,AAA Batteries (4-pack),1,2.99,08/01/19 10:52,"190 Center St, San Francisco, CA 94016" -245685,AAA Batteries (4-pack),1,2.99,08/03/19 22:29,"65 Cedar St, San Francisco, CA 94016" -245686,Google Phone,1,600,08/10/19 18:15,"615 River St, San Francisco, CA 94016" -245687,USB-C Charging Cable,1,11.95,08/19/19 18:49,"613 Lakeview St, Portland, OR 97035" -245688,Lightning Charging Cable,1,14.95,08/16/19 09:12,"612 7th St, Portland, OR 97035" -245689,34in Ultrawide Monitor,1,379.99,08/30/19 08:20,"794 11th St, Seattle, WA 98101" -245690,27in 4K Gaming Monitor,1,389.99,08/28/19 22:14,"648 Cherry St, Portland, OR 97035" -245691,AA Batteries (4-pack),1,3.84,08/15/19 21:10,"864 Cedar St, Austin, TX 73301" -245692,Apple Airpods Headphones,1,150,08/24/19 22:37,"902 Forest St, Atlanta, GA 30301" -245693,27in FHD Monitor,1,149.99,08/18/19 14:41,"125 6th St, Dallas, TX 75001" -245694,AA Batteries (4-pack),1,3.84,08/16/19 14:51,"111 11th St, San Francisco, CA 94016" -245695,AAA Batteries (4-pack),2,2.99,08/07/19 09:34,"905 Maple St, Dallas, TX 75001" -245696,Vareebadd Phone,1,400,08/11/19 19:39,"829 Park St, San Francisco, CA 94016" -245697,iPhone,1,700,08/24/19 16:58,"824 Walnut St, Portland, ME 04101" -245697,Lightning Charging Cable,1,14.95,08/24/19 16:58,"824 Walnut St, Portland, ME 04101" -245697,Wired Headphones,1,11.99,08/24/19 16:58,"824 Walnut St, Portland, ME 04101" -245698,Bose SoundSport Headphones,1,99.99,08/04/19 11:01,"990 12th St, San Francisco, CA 94016" -245699,Lightning Charging Cable,1,14.95,08/07/19 23:57,"506 Spruce St, Los Angeles, CA 90001" -245700,Lightning Charging Cable,1,14.95,08/29/19 11:14,"803 Cedar St, Boston, MA 02215" -245701,Google Phone,1,600,08/01/19 23:16,"802 Chestnut St, Atlanta, GA 30301" -245702,AAA Batteries (4-pack),1,2.99,08/26/19 12:07,"292 Washington St, Boston, MA 02215" -245703,20in Monitor,1,109.99,08/12/19 16:20,"780 Hill St, New York City, NY 10001" -245704,Bose SoundSport Headphones,1,99.99,08/22/19 11:58,"960 12th St, San Francisco, CA 94016" -245704,AA Batteries (4-pack),1,3.84,08/22/19 11:58,"960 12th St, San Francisco, CA 94016" -245705,Lightning Charging Cable,1,14.95,08/19/19 11:46,"343 14th St, San Francisco, CA 94016" -245706,USB-C Charging Cable,1,11.95,08/08/19 16:22,"553 Johnson St, Seattle, WA 98101" -245707,USB-C Charging Cable,1,11.95,08/08/19 07:38,"716 Meadow St, Austin, TX 73301" -245708,Wired Headphones,1,11.99,08/07/19 10:43,"319 Cherry St, San Francisco, CA 94016" -245709,Bose SoundSport Headphones,1,99.99,08/23/19 19:35,"732 Highland St, Boston, MA 02215" -245710,Apple Airpods Headphones,1,150,08/25/19 19:11,"110 Chestnut St, San Francisco, CA 94016" -245711,27in FHD Monitor,1,149.99,08/11/19 18:06,"346 Maple St, Los Angeles, CA 90001" -245712,Apple Airpods Headphones,1,150,09/01/19 02:48,"208 Dogwood St, Boston, MA 02215" -245713,Macbook Pro Laptop,1,1700,08/26/19 10:43,"763 Maple St, New York City, NY 10001" -245714,34in Ultrawide Monitor,1,379.99,08/25/19 06:05,"107 14th St, Boston, MA 02215" -245715,AA Batteries (4-pack),1,3.84,08/08/19 15:44,"948 Hill St, Atlanta, GA 30301" -245716,iPhone,1,700,08/29/19 19:13,"554 Johnson St, Los Angeles, CA 90001" -245717,iPhone,1,700,08/11/19 19:19,"851 Lincoln St, New York City, NY 10001" -245718,Flatscreen TV,1,300,08/29/19 16:32,"507 Hill St, San Francisco, CA 94016" -245719,USB-C Charging Cable,2,11.95,08/25/19 14:24,"22 Walnut St, San Francisco, CA 94016" -245720,AAA Batteries (4-pack),1,2.99,08/21/19 19:39,"455 Forest St, Austin, TX 73301" -245721,AA Batteries (4-pack),3,3.84,08/31/19 07:24,"570 Sunset St, San Francisco, CA 94016" -245722,27in 4K Gaming Monitor,1,389.99,08/05/19 21:53,"927 10th St, Atlanta, GA 30301" -245723,AAA Batteries (4-pack),1,2.99,08/13/19 16:07,"354 North St, Los Angeles, CA 90001" -245724,Lightning Charging Cable,1,14.95,08/17/19 15:06,"171 Hickory St, Boston, MA 02215" -245725,27in 4K Gaming Monitor,1,389.99,08/27/19 21:23,"877 10th St, San Francisco, CA 94016" -245726,AA Batteries (4-pack),1,3.84,08/22/19 21:40,"187 Hill St, Portland, OR 97035" -245727,iPhone,1,700,08/05/19 13:58,"150 10th St, Seattle, WA 98101" -245728,AA Batteries (4-pack),1,3.84,08/14/19 18:09,"255 Cedar St, San Francisco, CA 94016" -245729,AAA Batteries (4-pack),3,2.99,08/23/19 23:45,"552 Maple St, San Francisco, CA 94016" -245730,34in Ultrawide Monitor,1,379.99,08/26/19 15:02,"576 Ridge St, San Francisco, CA 94016" -245731,Apple Airpods Headphones,1,150,08/13/19 20:46,"105 River St, San Francisco, CA 94016" -245732,Flatscreen TV,1,300,08/14/19 03:21,"549 North St, San Francisco, CA 94016" -245733,Macbook Pro Laptop,1,1700,08/12/19 15:55,"387 Forest St, San Francisco, CA 94016" -245734,USB-C Charging Cable,1,11.95,08/08/19 18:29,"882 11th St, San Francisco, CA 94016" -245735,AA Batteries (4-pack),1,3.84,08/13/19 11:12,"312 Hickory St, New York City, NY 10001" -245736,34in Ultrawide Monitor,1,379.99,08/07/19 16:00,"954 Madison St, Los Angeles, CA 90001" -245737,AA Batteries (4-pack),1,3.84,08/01/19 14:06,"861 Park St, Seattle, WA 98101" -245738,27in FHD Monitor,1,149.99,08/04/19 11:40,"186 South St, Austin, TX 73301" -245739,AAA Batteries (4-pack),2,2.99,08/06/19 12:44,"44 Church St, Austin, TX 73301" -245740,Wired Headphones,1,11.99,08/24/19 06:58,"642 Park St, Boston, MA 02215" -245741,Vareebadd Phone,1,400,08/11/19 00:15,"917 10th St, Atlanta, GA 30301" -245742,20in Monitor,1,109.99,08/17/19 16:39,"323 North St, Seattle, WA 98101" -245743,USB-C Charging Cable,1,11.95,08/14/19 09:58,"619 Ridge St, Seattle, WA 98101" -245744,USB-C Charging Cable,1,11.95,08/14/19 11:48,"665 1st St, New York City, NY 10001" -245745,AAA Batteries (4-pack),3,2.99,08/21/19 14:32,"170 Cedar St, New York City, NY 10001" -245746,AAA Batteries (4-pack),1,2.99,08/10/19 15:49,"501 11th St, San Francisco, CA 94016" -245747,Lightning Charging Cable,1,14.95,08/18/19 01:11,"873 5th St, San Francisco, CA 94016" -245748,AAA Batteries (4-pack),1,2.99,08/05/19 14:51,"310 North St, New York City, NY 10001" -245749,AAA Batteries (4-pack),2,2.99,08/08/19 09:32,"723 5th St, Seattle, WA 98101" -245750,AAA Batteries (4-pack),1,2.99,08/08/19 17:05,"219 Center St, Los Angeles, CA 90001" -245751,Lightning Charging Cable,1,14.95,08/17/19 18:05,"809 7th St, Atlanta, GA 30301" -245752,Flatscreen TV,1,300,08/18/19 12:10,"868 Cedar St, Dallas, TX 75001" -245753,27in FHD Monitor,1,149.99,08/26/19 14:06,"37 6th St, San Francisco, CA 94016" -245754,Lightning Charging Cable,1,14.95,08/31/19 06:31,"692 Spruce St, Boston, MA 02215" -245755,Lightning Charging Cable,1,14.95,08/08/19 21:44,"540 Highland St, New York City, NY 10001" -245756,20in Monitor,1,109.99,08/03/19 15:14,"11 Washington St, Austin, TX 73301" -245757,Google Phone,1,600,08/14/19 21:49,"937 West St, Los Angeles, CA 90001" -245758,AA Batteries (4-pack),2,3.84,08/04/19 11:43,"897 11th St, Boston, MA 02215" -245759,AA Batteries (4-pack),1,3.84,08/30/19 00:46,"66 Washington St, Los Angeles, CA 90001" -245760,Lightning Charging Cable,1,14.95,08/07/19 18:11,"116 Ridge St, Dallas, TX 75001" -245761,iPhone,1,700,08/30/19 19:14,"341 Sunset St, Seattle, WA 98101" -245762,34in Ultrawide Monitor,1,379.99,08/15/19 14:21,"929 Washington St, Boston, MA 02215" -245763,AAA Batteries (4-pack),1,2.99,08/01/19 20:44,"547 13th St, Boston, MA 02215" -245763,Wired Headphones,1,11.99,08/01/19 20:44,"547 13th St, Boston, MA 02215" -245764,Flatscreen TV,1,300,08/04/19 17:39,"837 7th St, New York City, NY 10001" -245765,Bose SoundSport Headphones,1,99.99,08/28/19 11:29,"371 4th St, Boston, MA 02215" -245766,AA Batteries (4-pack),1,3.84,08/26/19 11:14,"164 Lake St, New York City, NY 10001" -245767,AAA Batteries (4-pack),1,2.99,08/17/19 14:16,"330 Spruce St, Seattle, WA 98101" -245768,USB-C Charging Cable,3,11.95,08/31/19 08:58,"405 2nd St, San Francisco, CA 94016" -245769,ThinkPad Laptop,1,999.99,08/15/19 10:51,"883 9th St, New York City, NY 10001" -245770,Wired Headphones,1,11.99,08/24/19 10:26,"771 Park St, Los Angeles, CA 90001" -245771,Wired Headphones,1,11.99,08/25/19 23:48,"592 11th St, Portland, OR 97035" -245772,USB-C Charging Cable,1,11.95,08/08/19 10:54,"13 River St, Los Angeles, CA 90001" -245773,AA Batteries (4-pack),1,3.84,08/14/19 06:46,"172 Cedar St, San Francisco, CA 94016" -245774,Wired Headphones,1,11.99,08/03/19 11:00,"39 Adams St, Los Angeles, CA 90001" -245775,Bose SoundSport Headphones,1,99.99,08/10/19 18:58,"27 11th St, San Francisco, CA 94016" -245776,34in Ultrawide Monitor,1,379.99,08/25/19 21:44,"329 Wilson St, San Francisco, CA 94016" -245777,27in FHD Monitor,1,149.99,08/23/19 10:14,"51 Main St, New York City, NY 10001" -245778,AA Batteries (4-pack),1,3.84,08/04/19 14:44,"591 9th St, Los Angeles, CA 90001" -245779,AAA Batteries (4-pack),1,2.99,08/02/19 22:43,"643 8th St, Austin, TX 73301" -245780,Vareebadd Phone,1,400,08/29/19 18:04,"488 Willow St, Atlanta, GA 30301" -245781,Lightning Charging Cable,1,14.95,08/29/19 10:10,"51 Adams St, Los Angeles, CA 90001" -245782,ThinkPad Laptop,1,999.99,08/14/19 16:49,"333 Church St, San Francisco, CA 94016" -245783,27in FHD Monitor,1,149.99,08/19/19 23:21,"403 Pine St, Seattle, WA 98101" -245784,AA Batteries (4-pack),1,3.84,08/09/19 20:30,"544 Center St, Seattle, WA 98101" -245785,34in Ultrawide Monitor,1,379.99,08/24/19 19:57,"478 6th St, San Francisco, CA 94016" -245786,Lightning Charging Cable,1,14.95,08/16/19 18:13,"832 Adams St, Los Angeles, CA 90001" -245787,34in Ultrawide Monitor,1,379.99,08/21/19 04:11,"589 8th St, San Francisco, CA 94016" -245788,20in Monitor,1,109.99,08/03/19 11:44,"619 Elm St, Dallas, TX 75001" -245789,Wired Headphones,1,11.99,08/12/19 17:04,"130 Highland St, Seattle, WA 98101" -245790,AAA Batteries (4-pack),1,2.99,08/05/19 15:42,"332 Hill St, Dallas, TX 75001" -245791,USB-C Charging Cable,1,11.95,08/05/19 21:33,"549 Meadow St, Boston, MA 02215" -245792,Bose SoundSport Headphones,1,99.99,08/11/19 22:46,"243 10th St, Atlanta, GA 30301" -245793,USB-C Charging Cable,1,11.95,08/07/19 10:26,"106 12th St, San Francisco, CA 94016" -245794,USB-C Charging Cable,1,11.95,08/03/19 02:29,"554 Dogwood St, New York City, NY 10001" -245795,AAA Batteries (4-pack),2,2.99,08/12/19 15:56,"763 Adams St, Dallas, TX 75001" -245796,USB-C Charging Cable,1,11.95,08/28/19 19:26,"995 6th St, Los Angeles, CA 90001" -245797,AAA Batteries (4-pack),3,2.99,08/01/19 18:57,"829 14th St, New York City, NY 10001" -245798,Lightning Charging Cable,1,14.95,08/29/19 07:43,"646 Sunset St, Los Angeles, CA 90001" -245799,Lightning Charging Cable,1,14.95,08/10/19 11:41,"621 Park St, Dallas, TX 75001" -245800,USB-C Charging Cable,1,11.95,08/10/19 16:20,"220 North St, New York City, NY 10001" -245801,AAA Batteries (4-pack),1,2.99,08/26/19 13:26,"874 Park St, New York City, NY 10001" -245802,AAA Batteries (4-pack),2,2.99,08/05/19 00:15,"715 Madison St, Los Angeles, CA 90001" -245803,Apple Airpods Headphones,1,150,08/13/19 06:19,"630 1st St, Los Angeles, CA 90001" -245803,USB-C Charging Cable,1,11.95,08/13/19 06:19,"630 1st St, Los Angeles, CA 90001" -245804,AAA Batteries (4-pack),1,2.99,08/09/19 09:45,"55 Hill St, New York City, NY 10001" -245805,AAA Batteries (4-pack),5,2.99,08/21/19 20:07,"618 Jackson St, Los Angeles, CA 90001" -245806,AA Batteries (4-pack),1,3.84,08/01/19 23:48,"644 Jackson St, San Francisco, CA 94016" -245807,Google Phone,1,600,08/28/19 10:27,"492 West St, Dallas, TX 75001" -245808,AA Batteries (4-pack),1,3.84,08/06/19 08:21,"515 River St, Portland, OR 97035" -245809,Wired Headphones,1,11.99,08/16/19 15:04,"933 Highland St, Los Angeles, CA 90001" -245810,Lightning Charging Cable,1,14.95,08/05/19 21:33,"7 Church St, Dallas, TX 75001" -245811,Apple Airpods Headphones,1,150,08/12/19 11:40,"511 Walnut St, Seattle, WA 98101" -245812,Lightning Charging Cable,1,14.95,08/09/19 15:53,"369 Walnut St, Seattle, WA 98101" -245813,ThinkPad Laptop,1,999.99,08/28/19 17:59,"391 Cherry St, Los Angeles, CA 90001" -245814,Lightning Charging Cable,1,14.95,08/26/19 21:02,"706 Lakeview St, San Francisco, CA 94016" -245815,AAA Batteries (4-pack),1,2.99,08/16/19 13:26,"413 10th St, San Francisco, CA 94016" -245816,Flatscreen TV,1,300,08/17/19 22:47,"578 Jackson St, Portland, OR 97035" -245817,Wired Headphones,1,11.99,08/07/19 13:04,"231 Cedar St, Boston, MA 02215" -245818,34in Ultrawide Monitor,1,379.99,08/22/19 20:21,"239 4th St, Los Angeles, CA 90001" -245819,AA Batteries (4-pack),1,3.84,08/16/19 15:21,"525 Elm St, San Francisco, CA 94016" -245820,34in Ultrawide Monitor,1,379.99,08/09/19 12:00,"733 Forest St, Boston, MA 02215" -245821,Google Phone,1,600,08/12/19 12:50,"592 13th St, New York City, NY 10001" -245822,27in FHD Monitor,1,149.99,08/01/19 22:26,"551 Madison St, New York City, NY 10001" -245823,Apple Airpods Headphones,1,150,08/21/19 13:01,"431 Ridge St, Boston, MA 02215" -245824,Wired Headphones,1,11.99,08/13/19 07:14,"727 Meadow St, San Francisco, CA 94016" -245825,Lightning Charging Cable,1,14.95,08/28/19 07:39,"871 Madison St, Los Angeles, CA 90001" -245826,34in Ultrawide Monitor,1,379.99,08/24/19 22:35,"70 Lake St, San Francisco, CA 94016" -245827,USB-C Charging Cable,1,11.95,08/27/19 21:40,"514 2nd St, San Francisco, CA 94016" -245828,Bose SoundSport Headphones,1,99.99,08/19/19 08:00,"891 5th St, New York City, NY 10001" -245829,AAA Batteries (4-pack),1,2.99,08/29/19 11:42,"323 Willow St, Seattle, WA 98101" -245830,AA Batteries (4-pack),1,3.84,08/14/19 17:56,"273 River St, San Francisco, CA 94016" -245831,Macbook Pro Laptop,1,1700,08/29/19 19:26,"482 13th St, Portland, OR 97035" -245832,AAA Batteries (4-pack),2,2.99,08/25/19 15:20,"461 River St, Los Angeles, CA 90001" -245833,Macbook Pro Laptop,1,1700,08/11/19 09:18,"391 2nd St, Dallas, TX 75001" -245834,LG Washing Machine,1,600.0,08/05/19 21:47,"540 Dogwood St, Boston, MA 02215" -245835,AA Batteries (4-pack),1,3.84,08/11/19 19:12,"542 14th St, Portland, OR 97035" -245836,Lightning Charging Cable,1,14.95,08/29/19 11:22,"611 West St, New York City, NY 10001" -245837,Bose SoundSport Headphones,1,99.99,08/16/19 00:19,"669 8th St, San Francisco, CA 94016" -245838,34in Ultrawide Monitor,1,379.99,08/08/19 09:22,"771 9th St, San Francisco, CA 94016" -245839,Apple Airpods Headphones,1,150,08/19/19 12:54,"807 1st St, Los Angeles, CA 90001" -245840,Flatscreen TV,1,300,08/05/19 12:05,"434 Walnut St, San Francisco, CA 94016" -245840,Lightning Charging Cable,1,14.95,08/05/19 12:05,"434 Walnut St, San Francisco, CA 94016" -245841,27in FHD Monitor,1,149.99,08/07/19 21:06,"369 Dogwood St, Los Angeles, CA 90001" -245842,Lightning Charging Cable,1,14.95,08/04/19 11:37,"949 Elm St, San Francisco, CA 94016" -245843,ThinkPad Laptop,1,999.99,08/29/19 12:59,"573 Meadow St, Portland, OR 97035" -245844,27in 4K Gaming Monitor,1,389.99,08/12/19 13:33,"591 Hill St, Boston, MA 02215" -245845,20in Monitor,1,109.99,08/04/19 13:03,"544 Washington St, New York City, NY 10001" -245846,Lightning Charging Cable,1,14.95,08/05/19 17:12,"936 Forest St, Atlanta, GA 30301" -245847,Lightning Charging Cable,1,14.95,08/28/19 02:07,"873 Center St, New York City, NY 10001" -245848,AAA Batteries (4-pack),1,2.99,08/30/19 16:58,"638 Cedar St, Boston, MA 02215" -245849,27in FHD Monitor,1,149.99,08/28/19 20:29,"506 Center St, Boston, MA 02215" -245850,Flatscreen TV,1,300,08/08/19 06:33,"274 Hickory St, Dallas, TX 75001" -245851,AA Batteries (4-pack),1,3.84,08/10/19 23:52,"865 Park St, San Francisco, CA 94016" -245851,Bose SoundSport Headphones,1,99.99,08/10/19 23:52,"865 Park St, San Francisco, CA 94016" -245852,Bose SoundSport Headphones,1,99.99,08/19/19 12:23,"154 North St, Boston, MA 02215" -245853,27in FHD Monitor,1,149.99,08/15/19 15:12,"774 Washington St, San Francisco, CA 94016" -245854,27in FHD Monitor,1,149.99,08/19/19 10:17,"945 11th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -245855,AA Batteries (4-pack),1,3.84,08/10/19 14:23,"305 Highland St, Austin, TX 73301" -245856,AAA Batteries (4-pack),2,2.99,08/17/19 23:15,"540 Highland St, Austin, TX 73301" -245857,Google Phone,1,600,08/19/19 18:49,"714 Wilson St, Los Angeles, CA 90001" -245858,USB-C Charging Cable,1,11.95,08/03/19 13:52,"883 Cedar St, New York City, NY 10001" -245859,Bose SoundSport Headphones,1,99.99,08/20/19 20:07,"864 5th St, San Francisco, CA 94016" -245860,Apple Airpods Headphones,1,150,08/05/19 10:27,"689 7th St, New York City, NY 10001" -245861,iPhone,1,700,08/08/19 15:13,"285 6th St, Seattle, WA 98101" -245862,USB-C Charging Cable,1,11.95,08/24/19 12:20,"526 Jackson St, Los Angeles, CA 90001" -245863,34in Ultrawide Monitor,1,379.99,08/08/19 20:11,"403 Park St, San Francisco, CA 94016" -245864,Bose SoundSport Headphones,1,99.99,08/29/19 19:57,"678 8th St, Boston, MA 02215" -245865,ThinkPad Laptop,1,999.99,08/19/19 10:20,"341 14th St, Atlanta, GA 30301" -245866,Lightning Charging Cable,1,14.95,08/30/19 20:44,"553 Hill St, Seattle, WA 98101" -245867,ThinkPad Laptop,1,999.99,08/30/19 14:20,"870 Lincoln St, Dallas, TX 75001" -245868,USB-C Charging Cable,1,11.95,08/30/19 16:56,"677 Cedar St, Dallas, TX 75001" -245869,AAA Batteries (4-pack),2,2.99,08/14/19 00:48,"593 2nd St, Dallas, TX 75001" -245870,Apple Airpods Headphones,1,150,08/13/19 19:24,"609 Dogwood St, San Francisco, CA 94016" -245871,Apple Airpods Headphones,1,150,08/05/19 23:00,"627 Cedar St, Seattle, WA 98101" -245872,ThinkPad Laptop,1,999.99,08/19/19 16:59,"230 Center St, Atlanta, GA 30301" -245873,Lightning Charging Cable,1,14.95,08/17/19 21:51,"367 7th St, Atlanta, GA 30301" -245874,USB-C Charging Cable,1,11.95,08/06/19 21:06,"381 Pine St, San Francisco, CA 94016" -245875,Lightning Charging Cable,1,14.95,08/22/19 20:45,"837 Sunset St, Austin, TX 73301" -245876,Wired Headphones,1,11.99,08/28/19 14:03,"582 Maple St, San Francisco, CA 94016" -245877,Bose SoundSport Headphones,1,99.99,08/14/19 17:08,"480 Pine St, Seattle, WA 98101" -245878,AAA Batteries (4-pack),1,2.99,08/27/19 10:27,"949 Dogwood St, San Francisco, CA 94016" -245879,iPhone,1,700,08/11/19 07:19,"503 River St, Seattle, WA 98101" -245880,AA Batteries (4-pack),1,3.84,08/16/19 09:37,"440 Cedar St, San Francisco, CA 94016" -245881,Lightning Charging Cable,1,14.95,08/24/19 09:30,"80 1st St, Austin, TX 73301" -245882,AAA Batteries (4-pack),2,2.99,08/09/19 14:28,"445 Hickory St, Seattle, WA 98101" -245883,Lightning Charging Cable,1,14.95,08/12/19 10:10,"369 10th St, San Francisco, CA 94016" -245884,Bose SoundSport Headphones,1,99.99,08/14/19 21:38,"74 Pine St, Boston, MA 02215" -245885,Bose SoundSport Headphones,1,99.99,08/10/19 17:08,"767 4th St, New York City, NY 10001" -245886,Lightning Charging Cable,1,14.95,08/14/19 13:02,"59 4th St, Los Angeles, CA 90001" -245887,Google Phone,1,600,08/20/19 21:16,"254 12th St, Austin, TX 73301" -245888,AAA Batteries (4-pack),1,2.99,08/19/19 13:11,"881 Chestnut St, Boston, MA 02215" -245889,AAA Batteries (4-pack),1,2.99,08/21/19 20:29,"571 6th St, New York City, NY 10001" -245890,iPhone,1,700,08/01/19 14:13,"381 Hickory St, Los Angeles, CA 90001" -245891,27in 4K Gaming Monitor,1,389.99,08/04/19 20:37,"409 Willow St, New York City, NY 10001" -245892,ThinkPad Laptop,1,999.99,08/21/19 18:26,"188 Lakeview St, New York City, NY 10001" -245893,Apple Airpods Headphones,1,150,08/13/19 13:53,"654 Lincoln St, Boston, MA 02215" -245894,Apple Airpods Headphones,1,150,08/23/19 13:18,"703 Hill St, New York City, NY 10001" -245895,AAA Batteries (4-pack),1,2.99,08/29/19 18:18,"31 Spruce St, San Francisco, CA 94016" -245896,USB-C Charging Cable,1,11.95,08/11/19 10:38,"797 13th St, Los Angeles, CA 90001" -245897,AA Batteries (4-pack),1,3.84,08/10/19 20:22,"864 South St, Boston, MA 02215" -245898,Apple Airpods Headphones,1,150,08/27/19 01:34,"313 Main St, New York City, NY 10001" -245899,Vareebadd Phone,1,400,08/11/19 00:35,"50 Walnut St, New York City, NY 10001" -245900,Wired Headphones,1,11.99,08/24/19 23:02,"800 Walnut St, New York City, NY 10001" -245901,ThinkPad Laptop,1,999.99,08/13/19 19:05,"493 1st St, Boston, MA 02215" -245902,Wired Headphones,1,11.99,08/26/19 10:37,"722 Meadow St, New York City, NY 10001" -245903,Macbook Pro Laptop,1,1700,08/06/19 08:59,"898 Park St, San Francisco, CA 94016" -245904,Wired Headphones,1,11.99,08/21/19 20:37,"464 Washington St, San Francisco, CA 94016" -245905,USB-C Charging Cable,1,11.95,08/25/19 11:58,"32 Elm St, Dallas, TX 75001" -245906,Wired Headphones,1,11.99,08/12/19 11:52,"905 West St, Boston, MA 02215" -245907,Flatscreen TV,1,300,08/05/19 15:44,"628 7th St, Atlanta, GA 30301" -245908,Vareebadd Phone,1,400,08/14/19 00:37,"851 Madison St, Los Angeles, CA 90001" -245909,AA Batteries (4-pack),1,3.84,08/11/19 06:50,"387 4th St, Austin, TX 73301" -245910,Wired Headphones,1,11.99,08/03/19 16:11,"348 Maple St, Austin, TX 73301" -245911,Lightning Charging Cable,1,14.95,08/10/19 22:16,"812 Jefferson St, Los Angeles, CA 90001" -245912,AA Batteries (4-pack),3,3.84,08/30/19 09:41,"687 Johnson St, Atlanta, GA 30301" -245913,Bose SoundSport Headphones,1,99.99,08/21/19 13:22,"632 Wilson St, Seattle, WA 98101" -245914,AA Batteries (4-pack),1,3.84,08/11/19 12:40,"633 Lincoln St, Los Angeles, CA 90001" -245915,Wired Headphones,1,11.99,08/14/19 14:24,"778 7th St, Austin, TX 73301" -245916,20in Monitor,1,109.99,08/06/19 20:07,"251 Meadow St, Los Angeles, CA 90001" -245917,USB-C Charging Cable,1,11.95,08/11/19 10:03,"379 Spruce St, Los Angeles, CA 90001" -245918,ThinkPad Laptop,1,999.99,08/05/19 10:52,"214 North St, San Francisco, CA 94016" -245919,Macbook Pro Laptop,1,1700,08/29/19 17:33,"579 9th St, New York City, NY 10001" -245920,Google Phone,1,600,08/26/19 11:14,"823 Park St, Boston, MA 02215" -245921,Apple Airpods Headphones,1,150,08/17/19 13:01,"146 Park St, Portland, OR 97035" -245922,ThinkPad Laptop,1,999.99,08/15/19 22:10,"23 Highland St, Los Angeles, CA 90001" -245923,Wired Headphones,1,11.99,08/01/19 16:27,"499 Highland St, Portland, OR 97035" -245924,27in FHD Monitor,1,149.99,08/21/19 15:20,"502 Sunset St, Boston, MA 02215" -245925,Bose SoundSport Headphones,1,99.99,08/25/19 14:53,"463 9th St, Atlanta, GA 30301" -245926,Wired Headphones,1,11.99,08/22/19 11:59,"97 Ridge St, Austin, TX 73301" -245927,Lightning Charging Cable,1,14.95,08/30/19 18:56,"915 Maple St, Dallas, TX 75001" -245928,AAA Batteries (4-pack),1,2.99,08/17/19 10:49,"844 Washington St, Dallas, TX 75001" -245929,27in FHD Monitor,1,149.99,08/04/19 05:30,"918 Lake St, San Francisco, CA 94016" -245930,AAA Batteries (4-pack),1,2.99,08/01/19 10:31,"543 Main St, New York City, NY 10001" -245931,Apple Airpods Headphones,1,150,08/10/19 17:07,"903 Highland St, Seattle, WA 98101" -245932,iPhone,1,700,08/26/19 16:19,"802 West St, Los Angeles, CA 90001" -245933,Apple Airpods Headphones,1,150,08/15/19 19:31,"526 Chestnut St, Los Angeles, CA 90001" -245934,AA Batteries (4-pack),1,3.84,08/06/19 19:47,"134 Jackson St, San Francisco, CA 94016" -245935,Wired Headphones,1,11.99,08/04/19 22:31,"220 Willow St, San Francisco, CA 94016" -245936,AAA Batteries (4-pack),2,2.99,08/18/19 15:01,"711 Park St, New York City, NY 10001" -245937,Wired Headphones,1,11.99,08/31/19 07:43,"412 Madison St, San Francisco, CA 94016" -245938,AA Batteries (4-pack),1,3.84,08/02/19 23:12,"811 5th St, Seattle, WA 98101" -245939,AAA Batteries (4-pack),2,2.99,08/08/19 20:34,"916 Sunset St, San Francisco, CA 94016" -245940,27in FHD Monitor,1,149.99,08/27/19 21:17,"815 Lakeview St, San Francisco, CA 94016" -245941,USB-C Charging Cable,1,11.95,08/28/19 19:15,"861 Spruce St, Seattle, WA 98101" -245942,Wired Headphones,1,11.99,08/11/19 10:01,"569 Madison St, New York City, NY 10001" -245943,Wired Headphones,1,11.99,08/29/19 10:54,"653 Pine St, Austin, TX 73301" -245944,Google Phone,1,600,08/05/19 15:58,"906 Sunset St, Los Angeles, CA 90001" -245945,iPhone,1,700,08/30/19 11:40,"366 Spruce St, New York City, NY 10001" -245946,AAA Batteries (4-pack),2,2.99,08/26/19 11:14,"737 Jackson St, Seattle, WA 98101" -245947,Flatscreen TV,1,300,08/14/19 22:30,"673 Sunset St, Los Angeles, CA 90001" -245948,Google Phone,1,600,08/17/19 23:12,"656 Main St, Boston, MA 02215" -245949,Macbook Pro Laptop,1,1700,08/23/19 11:40,"226 Center St, San Francisco, CA 94016" -245950,iPhone,1,700,08/02/19 21:54,"87 11th St, San Francisco, CA 94016" -245951,ThinkPad Laptop,1,999.99,08/10/19 09:01,"990 Johnson St, San Francisco, CA 94016" -245952,USB-C Charging Cable,1,11.95,08/25/19 10:20,"469 1st St, Boston, MA 02215" -245953,Bose SoundSport Headphones,1,99.99,08/11/19 13:06,"426 Park St, Atlanta, GA 30301" -245954,Lightning Charging Cable,1,14.95,08/15/19 14:56,"728 1st St, Los Angeles, CA 90001" -245955,Lightning Charging Cable,1,14.95,08/30/19 18:59,"791 Adams St, San Francisco, CA 94016" -245956,Wired Headphones,2,11.99,08/16/19 12:49,"59 2nd St, New York City, NY 10001" -245957,AAA Batteries (4-pack),1,2.99,08/24/19 00:13,"586 Lincoln St, New York City, NY 10001" -245958,AAA Batteries (4-pack),1,2.99,08/04/19 13:06,"38 Jefferson St, San Francisco, CA 94016" -245959,Macbook Pro Laptop,1,1700,08/01/19 21:00,"25 5th St, Atlanta, GA 30301" -245960,Vareebadd Phone,1,400,08/22/19 23:50,"933 Sunset St, Boston, MA 02215" -245961,Wired Headphones,1,11.99,08/07/19 13:39,"440 Main St, San Francisco, CA 94016" -245962,AA Batteries (4-pack),1,3.84,08/31/19 13:15,"521 South St, Boston, MA 02215" -245963,Bose SoundSport Headphones,1,99.99,08/09/19 22:43,"450 5th St, Boston, MA 02215" -245964,USB-C Charging Cable,1,11.95,08/14/19 11:45,"975 13th St, San Francisco, CA 94016" -245965,27in FHD Monitor,1,149.99,08/23/19 18:06,"735 Maple St, Los Angeles, CA 90001" -245966,AAA Batteries (4-pack),1,2.99,08/19/19 12:24,"898 Highland St, Austin, TX 73301" -245967,Apple Airpods Headphones,1,150,08/25/19 13:12,"301 Johnson St, San Francisco, CA 94016" -245968,Wired Headphones,1,11.99,08/26/19 21:57,"619 Highland St, San Francisco, CA 94016" -245969,iPhone,1,700,08/17/19 16:03,"171 5th St, San Francisco, CA 94016" -245970,Macbook Pro Laptop,1,1700,08/16/19 20:13,"33 Adams St, Seattle, WA 98101" -245971,Google Phone,1,600,08/16/19 18:50,"29 Washington St, San Francisco, CA 94016" -245972,Wired Headphones,1,11.99,08/14/19 13:09,"121 Highland St, New York City, NY 10001" -245973,Lightning Charging Cable,1,14.95,08/16/19 14:42,"711 Meadow St, Seattle, WA 98101" -245974,Bose SoundSport Headphones,1,99.99,08/23/19 17:31,"858 7th St, Los Angeles, CA 90001" -245975,Wired Headphones,1,11.99,08/30/19 09:37,"530 Ridge St, San Francisco, CA 94016" -245976,iPhone,1,700,08/23/19 06:01,"476 Park St, Atlanta, GA 30301" -245977,34in Ultrawide Monitor,1,379.99,08/05/19 10:49,"840 Washington St, Boston, MA 02215" -245978,20in Monitor,1,109.99,08/29/19 13:40,"40 Dogwood St, New York City, NY 10001" -245979,USB-C Charging Cable,1,11.95,08/03/19 19:35,"592 Cedar St, Portland, OR 97035" -245980,AA Batteries (4-pack),3,3.84,08/20/19 14:26,"658 Spruce St, San Francisco, CA 94016" -245981,Bose SoundSport Headphones,1,99.99,08/04/19 11:04,"365 Wilson St, San Francisco, CA 94016" -245982,Google Phone,1,600,08/31/19 15:29,"932 Wilson St, Seattle, WA 98101" -245982,Wired Headphones,1,11.99,08/31/19 15:29,"932 Wilson St, Seattle, WA 98101" -245983,Wired Headphones,1,11.99,08/04/19 22:34,"506 Highland St, Portland, OR 97035" -245984,Macbook Pro Laptop,1,1700,08/11/19 20:50,"985 Hill St, Los Angeles, CA 90001" -245985,34in Ultrawide Monitor,1,379.99,08/20/19 14:37,"18 Adams St, Seattle, WA 98101" -245986,Google Phone,1,600,08/31/19 20:18,"270 Park St, San Francisco, CA 94016" -245987,Flatscreen TV,1,300,08/04/19 21:52,"180 Maple St, Boston, MA 02215" -245988,USB-C Charging Cable,1,11.95,08/01/19 08:43,"696 9th St, Atlanta, GA 30301" -245989,Bose SoundSport Headphones,1,99.99,08/19/19 03:33,"392 Lincoln St, Atlanta, GA 30301" -245990,Wired Headphones,1,11.99,08/16/19 08:30,"109 Chestnut St, New York City, NY 10001" -245991,Vareebadd Phone,1,400,08/18/19 10:54,"433 Johnson St, New York City, NY 10001" -245992,iPhone,1,700,08/22/19 15:19,"832 1st St, Dallas, TX 75001" -245993,27in FHD Monitor,1,149.99,08/27/19 09:48,"788 Wilson St, Portland, OR 97035" -245994,20in Monitor,1,109.99,08/27/19 09:37,"625 Hickory St, Seattle, WA 98101" -245995,iPhone,1,700,08/25/19 12:31,"792 Adams St, Los Angeles, CA 90001" -245996,AA Batteries (4-pack),1,3.84,08/04/19 20:49,"340 Jackson St, San Francisco, CA 94016" -,,,,, -245997,Lightning Charging Cable,2,14.95,08/16/19 20:16,"697 14th St, San Francisco, CA 94016" -245998,Lightning Charging Cable,1,14.95,08/16/19 18:24,"662 7th St, Boston, MA 02215" -245999,27in 4K Gaming Monitor,1,389.99,08/26/19 22:40,"656 12th St, Los Angeles, CA 90001" -246000,Apple Airpods Headphones,1,150,08/05/19 08:38,"835 Jefferson St, San Francisco, CA 94016" -246001,Wired Headphones,1,11.99,08/06/19 13:38,"659 Lincoln St, Boston, MA 02215" -246002,AA Batteries (4-pack),2,3.84,08/21/19 11:52,"31 2nd St, Austin, TX 73301" -246003,Wired Headphones,1,11.99,08/26/19 09:14,"747 Hill St, San Francisco, CA 94016" -246004,USB-C Charging Cable,1,11.95,08/24/19 11:29,"485 River St, San Francisco, CA 94016" -246005,Wired Headphones,1,11.99,08/14/19 22:12,"227 Hickory St, New York City, NY 10001" -246006,AAA Batteries (4-pack),1,2.99,08/18/19 20:57,"544 Lake St, Seattle, WA 98101" -246007,20in Monitor,1,109.99,08/19/19 14:06,"112 Sunset St, New York City, NY 10001" -246008,Apple Airpods Headphones,1,150,08/28/19 14:42,"585 5th St, San Francisco, CA 94016" -246009,Vareebadd Phone,1,400,08/19/19 12:11,"389 2nd St, San Francisco, CA 94016" -246009,USB-C Charging Cable,1,11.95,08/19/19 12:11,"389 2nd St, San Francisco, CA 94016" -246010,AAA Batteries (4-pack),1,2.99,08/02/19 10:01,"651 Willow St, San Francisco, CA 94016" -246011,AAA Batteries (4-pack),3,2.99,08/31/19 15:09,"703 Jefferson St, New York City, NY 10001" -246011,Bose SoundSport Headphones,1,99.99,08/31/19 15:09,"703 Jefferson St, New York City, NY 10001" -246012,AAA Batteries (4-pack),1,2.99,08/02/19 17:00,"556 South St, Dallas, TX 75001" -246013,Wired Headphones,1,11.99,08/21/19 02:01,"485 Church St, Austin, TX 73301" -246014,USB-C Charging Cable,1,11.95,08/01/19 14:02,"563 Jefferson St, Atlanta, GA 30301" -246015,27in 4K Gaming Monitor,1,389.99,08/06/19 21:15,"322 Pine St, San Francisco, CA 94016" -246016,Lightning Charging Cable,1,14.95,08/29/19 09:19,"281 Jefferson St, Seattle, WA 98101" -246016,27in FHD Monitor,1,149.99,08/29/19 09:19,"281 Jefferson St, Seattle, WA 98101" -246017,AAA Batteries (4-pack),2,2.99,08/04/19 19:38,"96 10th St, Dallas, TX 75001" -246018,Macbook Pro Laptop,1,1700,08/15/19 05:44,"183 13th St, San Francisco, CA 94016" -246019,Wired Headphones,1,11.99,08/24/19 18:33,"651 Sunset St, Austin, TX 73301" -246020,Google Phone,1,600,08/23/19 11:05,"495 Ridge St, New York City, NY 10001" -246021,Wired Headphones,1,11.99,08/07/19 11:19,"899 9th St, Portland, OR 97035" -246022,AA Batteries (4-pack),2,3.84,08/23/19 18:06,"599 Wilson St, Boston, MA 02215" -246023,AA Batteries (4-pack),1,3.84,08/02/19 00:56,"431 4th St, Boston, MA 02215" -246024,Apple Airpods Headphones,1,150,08/02/19 20:56,"940 Willow St, Dallas, TX 75001" -246025,Flatscreen TV,1,300,08/02/19 14:08,"886 Center St, Boston, MA 02215" -246026,AAA Batteries (4-pack),2,2.99,08/15/19 11:43,"848 Jefferson St, San Francisco, CA 94016" -246027,AA Batteries (4-pack),1,3.84,08/28/19 22:21,"437 Madison St, Boston, MA 02215" -246028,Vareebadd Phone,1,400,08/14/19 16:20,"236 14th St, San Francisco, CA 94016" -246029,Lightning Charging Cable,1,14.95,08/25/19 23:26,"56 2nd St, Seattle, WA 98101" -246030,Apple Airpods Headphones,1,150,08/01/19 21:31,"472 2nd St, San Francisco, CA 94016" -246031,Google Phone,1,600,08/23/19 18:10,"829 4th St, Austin, TX 73301" -246032,AAA Batteries (4-pack),1,2.99,08/11/19 15:08,"186 Cedar St, Los Angeles, CA 90001" -246033,20in Monitor,1,109.99,08/19/19 20:52,"161 Willow St, Austin, TX 73301" -246034,27in 4K Gaming Monitor,1,389.99,08/09/19 02:40,"46 Chestnut St, Los Angeles, CA 90001" -246035,ThinkPad Laptop,1,999.99,08/02/19 14:16,"568 Lincoln St, Boston, MA 02215" -246036,USB-C Charging Cable,1,11.95,08/09/19 22:31,"17 Chestnut St, Los Angeles, CA 90001" -246037,AAA Batteries (4-pack),1,2.99,08/12/19 00:15,"367 2nd St, Boston, MA 02215" -246038,AA Batteries (4-pack),3,3.84,08/14/19 23:51,"422 Jefferson St, Boston, MA 02215" -246039,Apple Airpods Headphones,1,150,08/12/19 19:02,"274 Center St, Los Angeles, CA 90001" -246040,ThinkPad Laptop,1,999.99,08/20/19 17:53,"886 7th St, Boston, MA 02215" -246041,Lightning Charging Cable,1,14.95,08/26/19 13:17,"520 West St, San Francisco, CA 94016" -246041,USB-C Charging Cable,1,11.95,08/26/19 13:17,"520 West St, San Francisco, CA 94016" -246042,USB-C Charging Cable,1,11.95,08/13/19 19:02,"786 Adams St, Los Angeles, CA 90001" -246043,Lightning Charging Cable,1,14.95,08/23/19 10:19,"85 Lakeview St, Los Angeles, CA 90001" -246044,USB-C Charging Cable,2,11.95,08/05/19 10:35,"901 Church St, Los Angeles, CA 90001" -246045,20in Monitor,1,109.99,08/11/19 13:47,"91 14th St, Boston, MA 02215" -246046,Flatscreen TV,1,300,08/11/19 09:50,"962 12th St, San Francisco, CA 94016" -246047,Apple Airpods Headphones,1,150,08/27/19 20:53,"452 Spruce St, Atlanta, GA 30301" -246048,Lightning Charging Cable,1,14.95,08/25/19 18:24,"735 Madison St, Austin, TX 73301" -246049,USB-C Charging Cable,2,11.95,08/13/19 19:29,"429 12th St, Boston, MA 02215" -246050,AAA Batteries (4-pack),1,2.99,08/10/19 06:49,"520 Park St, Los Angeles, CA 90001" -246051,Apple Airpods Headphones,1,150,08/08/19 17:30,"288 Hickory St, Boston, MA 02215" -246052,Wired Headphones,1,11.99,08/12/19 23:29,"466 Walnut St, Dallas, TX 75001" -246053,Wired Headphones,1,11.99,08/06/19 13:22,"517 2nd St, New York City, NY 10001" -246054,Lightning Charging Cable,1,14.95,08/19/19 18:08,"209 West St, New York City, NY 10001" -246055,20in Monitor,1,109.99,08/21/19 10:49,"569 Washington St, Atlanta, GA 30301" -246056,Bose SoundSport Headphones,1,99.99,08/05/19 19:37,"792 Highland St, Dallas, TX 75001" -246057,iPhone,1,700,08/15/19 10:23,"963 Lake St, San Francisco, CA 94016" -246058,Vareebadd Phone,1,400,08/04/19 19:57,"842 North St, Los Angeles, CA 90001" -246059,27in 4K Gaming Monitor,1,389.99,08/05/19 19:25,"209 Walnut St, Boston, MA 02215" -246060,Wired Headphones,1,11.99,08/13/19 04:19,"927 Jackson St, Seattle, WA 98101" -246061,Apple Airpods Headphones,1,150,08/13/19 13:13,"314 9th St, Dallas, TX 75001" -246062,iPhone,1,700,08/21/19 20:40,"172 6th St, San Francisco, CA 94016" -246063,USB-C Charging Cable,1,11.95,08/27/19 17:40,"984 2nd St, Boston, MA 02215" -246064,Flatscreen TV,1,300,08/29/19 11:41,"892 Pine St, San Francisco, CA 94016" -246065,USB-C Charging Cable,1,11.95,08/01/19 10:42,"883 6th St, Los Angeles, CA 90001" -246066,AAA Batteries (4-pack),1,2.99,08/07/19 08:53,"675 4th St, Boston, MA 02215" -246067,USB-C Charging Cable,1,11.95,08/22/19 15:55,"804 Highland St, Atlanta, GA 30301" -246068,AAA Batteries (4-pack),1,2.99,08/15/19 13:10,"70 Hickory St, Dallas, TX 75001" -246069,AAA Batteries (4-pack),1,2.99,08/04/19 23:31,"881 14th St, Atlanta, GA 30301" -246070,iPhone,1,700,08/21/19 08:09,"625 8th St, Dallas, TX 75001" -246071,AA Batteries (4-pack),1,3.84,08/02/19 21:50,"159 Madison St, New York City, NY 10001" -246072,AAA Batteries (4-pack),2,2.99,08/08/19 20:34,"695 Pine St, Los Angeles, CA 90001" -246073,Vareebadd Phone,1,400,08/16/19 20:16,"576 Lakeview St, Austin, TX 73301" -246073,USB-C Charging Cable,1,11.95,08/16/19 20:16,"576 Lakeview St, Austin, TX 73301" -246074,AAA Batteries (4-pack),2,2.99,08/24/19 08:25,"456 Lake St, Atlanta, GA 30301" -246075,ThinkPad Laptop,1,999.99,08/28/19 18:21,"722 4th St, Boston, MA 02215" -246076,AAA Batteries (4-pack),1,2.99,08/21/19 09:31,"489 Spruce St, Austin, TX 73301" -246077,Bose SoundSport Headphones,1,99.99,08/06/19 17:17,"299 12th St, Seattle, WA 98101" -246078,AAA Batteries (4-pack),1,2.99,08/27/19 10:19,"1 Hill St, San Francisco, CA 94016" -246079,AA Batteries (4-pack),1,3.84,08/15/19 17:27,"824 Ridge St, San Francisco, CA 94016" -246080,Google Phone,1,600,08/24/19 18:25,"951 South St, San Francisco, CA 94016" -246080,Wired Headphones,1,11.99,08/24/19 18:25,"951 South St, San Francisco, CA 94016" -246081,Bose SoundSport Headphones,1,99.99,08/28/19 14:08,"697 Park St, San Francisco, CA 94016" -246082,AA Batteries (4-pack),3,3.84,08/21/19 15:52,"607 Church St, San Francisco, CA 94016" -246083,Wired Headphones,1,11.99,08/26/19 18:17,"330 11th St, San Francisco, CA 94016" -246084,Bose SoundSport Headphones,1,99.99,08/17/19 14:34,"731 Cherry St, Dallas, TX 75001" -246084,Bose SoundSport Headphones,1,99.99,08/17/19 14:34,"731 Cherry St, Dallas, TX 75001" -246085,iPhone,1,700,08/30/19 18:48,"710 5th St, San Francisco, CA 94016" -246086,27in FHD Monitor,1,149.99,08/31/19 12:39,"869 Hickory St, Atlanta, GA 30301" -246087,AAA Batteries (4-pack),1,2.99,08/14/19 17:25,"95 Forest St, Atlanta, GA 30301" -246088,Google Phone,1,600,08/26/19 00:00,"506 Jefferson St, Los Angeles, CA 90001" -246088,Wired Headphones,1,11.99,08/26/19 00:00,"506 Jefferson St, Los Angeles, CA 90001" -246089,iPhone,1,700,08/17/19 19:19,"337 West St, San Francisco, CA 94016" -246089,Lightning Charging Cable,1,14.95,08/17/19 19:19,"337 West St, San Francisco, CA 94016" -246090,Flatscreen TV,1,300,08/02/19 08:30,"284 Forest St, Los Angeles, CA 90001" -246091,Lightning Charging Cable,1,14.95,08/23/19 13:40,"27 Wilson St, Dallas, TX 75001" -246092,USB-C Charging Cable,1,11.95,08/03/19 09:47,"175 Main St, Los Angeles, CA 90001" -246092,USB-C Charging Cable,1,11.95,08/03/19 09:47,"175 Main St, Los Angeles, CA 90001" -246093,Lightning Charging Cable,1,14.95,08/06/19 19:38,"240 Highland St, Los Angeles, CA 90001" -246094,Apple Airpods Headphones,1,150,08/29/19 18:15,"990 5th St, Atlanta, GA 30301" -246095,USB-C Charging Cable,1,11.95,08/03/19 14:36,"649 Lincoln St, San Francisco, CA 94016" -246096,USB-C Charging Cable,1,11.95,08/23/19 08:35,"110 Pine St, San Francisco, CA 94016" -246097,AA Batteries (4-pack),1,3.84,08/24/19 17:17,"806 14th St, Atlanta, GA 30301" -246098,USB-C Charging Cable,1,11.95,08/25/19 23:09,"347 Hickory St, Los Angeles, CA 90001" -246099,USB-C Charging Cable,1,11.95,08/02/19 23:55,"85 12th St, Atlanta, GA 30301" -246100,Wired Headphones,1,11.99,08/14/19 08:57,"146 1st St, New York City, NY 10001" -246101,Macbook Pro Laptop,1,1700,08/07/19 15:56,"607 Ridge St, Los Angeles, CA 90001" -246102,Wired Headphones,1,11.99,08/31/19 08:28,"693 7th St, Boston, MA 02215" -246103,ThinkPad Laptop,1,999.99,08/22/19 20:35,"445 Highland St, Seattle, WA 98101" -246104,Lightning Charging Cable,1,14.95,08/25/19 01:03,"847 Madison St, New York City, NY 10001" -246105,Bose SoundSport Headphones,1,99.99,08/29/19 19:55,"412 Sunset St, Boston, MA 02215" -246106,Wired Headphones,1,11.99,08/20/19 11:16,"944 Forest St, Atlanta, GA 30301" -246107,AA Batteries (4-pack),2,3.84,08/25/19 18:05,"196 6th St, New York City, NY 10001" -246108,Wired Headphones,1,11.99,08/27/19 08:16,"709 Cedar St, Portland, OR 97035" -246109,AAA Batteries (4-pack),3,2.99,08/12/19 17:02,"296 South St, San Francisco, CA 94016" -246110,Apple Airpods Headphones,1,150,08/17/19 20:35,"150 West St, Austin, TX 73301" -246111,AAA Batteries (4-pack),1,2.99,08/16/19 01:02,"648 7th St, Los Angeles, CA 90001" -246112,Bose SoundSport Headphones,1,99.99,08/27/19 00:31,"758 5th St, Atlanta, GA 30301" -246113,27in 4K Gaming Monitor,1,389.99,08/22/19 13:19,"942 Johnson St, Seattle, WA 98101" -246114,ThinkPad Laptop,1,999.99,08/28/19 12:09,"86 Main St, Dallas, TX 75001" -246115,AAA Batteries (4-pack),2,2.99,08/09/19 01:57,"886 Church St, Boston, MA 02215" -246116,AAA Batteries (4-pack),1,2.99,08/23/19 01:33,"268 Forest St, Boston, MA 02215" -246117,Wired Headphones,1,11.99,08/25/19 22:59,"726 2nd St, New York City, NY 10001" -246118,27in FHD Monitor,1,149.99,08/07/19 14:53,"54 Pine St, Los Angeles, CA 90001" -246119,Wired Headphones,1,11.99,08/10/19 00:09,"678 Lincoln St, Seattle, WA 98101" -246120,Lightning Charging Cable,1,14.95,08/11/19 08:06,"152 Ridge St, Portland, OR 97035" -246121,Vareebadd Phone,1,400,08/06/19 18:15,"765 1st St, Seattle, WA 98101" -246122,27in FHD Monitor,1,149.99,08/05/19 18:01,"939 Pine St, New York City, NY 10001" -246123,AA Batteries (4-pack),1,3.84,08/28/19 10:37,"72 Jefferson St, San Francisco, CA 94016" -246124,AA Batteries (4-pack),1,3.84,08/16/19 09:56,"55 Wilson St, Seattle, WA 98101" -246125,USB-C Charging Cable,1,11.95,08/16/19 15:14,"519 Cherry St, Dallas, TX 75001" -246126,AA Batteries (4-pack),1,3.84,08/11/19 16:13,"213 Washington St, San Francisco, CA 94016" -246127,USB-C Charging Cable,1,11.95,08/18/19 08:51,"218 11th St, Austin, TX 73301" -246128,Lightning Charging Cable,1,14.95,08/29/19 17:53,"233 Washington St, Atlanta, GA 30301" -246128,USB-C Charging Cable,1,11.95,08/29/19 17:53,"233 Washington St, Atlanta, GA 30301" -246129,Apple Airpods Headphones,1,150,08/23/19 09:17,"221 Lakeview St, Seattle, WA 98101" -246130,Apple Airpods Headphones,1,150,08/19/19 14:33,"877 Elm St, Atlanta, GA 30301" -246131,Wired Headphones,1,11.99,08/24/19 16:39,"674 Adams St, Seattle, WA 98101" -246132,27in FHD Monitor,1,149.99,08/07/19 12:05,"56 Lincoln St, Los Angeles, CA 90001" -246133,AA Batteries (4-pack),1,3.84,08/18/19 11:00,"197 Chestnut St, Seattle, WA 98101" -246134,AA Batteries (4-pack),2,3.84,08/29/19 16:22,"88 12th St, Seattle, WA 98101" -246135,Apple Airpods Headphones,1,150,08/14/19 10:02,"748 Adams St, New York City, NY 10001" -246136,Wired Headphones,1,11.99,08/13/19 05:45,"988 Highland St, Atlanta, GA 30301" -246137,Wired Headphones,1,11.99,08/12/19 19:44,"109 12th St, New York City, NY 10001" -246138,iPhone,1,700,08/27/19 06:31,"563 Pine St, Seattle, WA 98101" -246139,20in Monitor,1,109.99,09/01/19 01:00,"761 Forest St, San Francisco, CA 94016" -246140,USB-C Charging Cable,1,11.95,08/19/19 12:44,"436 14th St, New York City, NY 10001" -246141,USB-C Charging Cable,1,11.95,08/18/19 16:33,"904 Lincoln St, New York City, NY 10001" -246142,27in 4K Gaming Monitor,1,389.99,08/20/19 14:47,"744 Lake St, San Francisco, CA 94016" -246143,27in 4K Gaming Monitor,1,389.99,08/13/19 13:32,"744 Lake St, Portland, OR 97035" -246144,AAA Batteries (4-pack),1,2.99,08/16/19 11:30,"537 Adams St, San Francisco, CA 94016" -246145,Flatscreen TV,1,300,08/29/19 07:58,"379 Lakeview St, New York City, NY 10001" -246146,Flatscreen TV,1,300,08/07/19 07:49,"607 Forest St, New York City, NY 10001" -246147,AAA Batteries (4-pack),1,2.99,08/10/19 12:03,"285 Chestnut St, Austin, TX 73301" -246148,Lightning Charging Cable,1,14.95,08/27/19 09:24,"911 Elm St, Atlanta, GA 30301" -246149,Wired Headphones,1,11.99,08/15/19 23:37,"379 Maple St, San Francisco, CA 94016" -246150,AAA Batteries (4-pack),3,2.99,08/24/19 06:47,"509 Hickory St, Austin, TX 73301" -246151,Wired Headphones,3,11.99,08/11/19 15:32,"442 Adams St, San Francisco, CA 94016" -246152,Lightning Charging Cable,1,14.95,08/26/19 23:27,"536 Lakeview St, New York City, NY 10001" -246153,AAA Batteries (4-pack),1,2.99,08/05/19 10:07,"252 Sunset St, Atlanta, GA 30301" -246154,34in Ultrawide Monitor,1,379.99,08/19/19 19:52,"627 Spruce St, Boston, MA 02215" -246154,ThinkPad Laptop,1,999.99,08/19/19 19:52,"627 Spruce St, Boston, MA 02215" -246155,Lightning Charging Cable,1,14.95,08/02/19 20:22,"333 Main St, Dallas, TX 75001" -246156,USB-C Charging Cable,1,11.95,08/25/19 13:50,"817 Walnut St, Dallas, TX 75001" -246157,LG Dryer,1,600.0,08/29/19 16:09,"481 14th St, Austin, TX 73301" -246158,Apple Airpods Headphones,1,150,08/17/19 19:56,"841 11th St, San Francisco, CA 94016" -246159,AA Batteries (4-pack),1,3.84,08/09/19 06:16,"171 Jefferson St, Portland, OR 97035" -246160,27in FHD Monitor,1,149.99,08/05/19 19:13,"339 Hickory St, San Francisco, CA 94016" -246161,27in 4K Gaming Monitor,1,389.99,08/12/19 07:33,"914 Lakeview St, San Francisco, CA 94016" -246162,Lightning Charging Cable,1,14.95,08/03/19 13:49,"625 Lincoln St, New York City, NY 10001" -246163,Bose SoundSport Headphones,1,99.99,08/10/19 16:07,"555 Willow St, Boston, MA 02215" -246164,Wired Headphones,1,11.99,08/06/19 12:07,"178 14th St, Atlanta, GA 30301" -246165,USB-C Charging Cable,2,11.95,08/11/19 14:40,"408 Elm St, Dallas, TX 75001" -246165,AAA Batteries (4-pack),1,2.99,08/11/19 14:40,"408 Elm St, Dallas, TX 75001" -246166,Wired Headphones,1,11.99,08/13/19 15:16,"992 Church St, Seattle, WA 98101" -246167,Lightning Charging Cable,1,14.95,08/16/19 03:53,"301 Elm St, Seattle, WA 98101" -246168,USB-C Charging Cable,1,11.95,08/20/19 15:20,"352 Chestnut St, San Francisco, CA 94016" -246169,AAA Batteries (4-pack),1,2.99,08/06/19 21:47,"771 Cedar St, Seattle, WA 98101" -246170,AA Batteries (4-pack),1,3.84,08/28/19 13:39,"99 Chestnut St, Portland, OR 97035" -246171,Lightning Charging Cable,1,14.95,08/01/19 20:44,"889 Adams St, Portland, OR 97035" -246172,USB-C Charging Cable,2,11.95,08/11/19 17:30,"948 1st St, San Francisco, CA 94016" -246173,34in Ultrawide Monitor,1,379.99,08/28/19 15:51,"363 Chestnut St, Dallas, TX 75001" -246174,34in Ultrawide Monitor,1,379.99,08/25/19 17:17,"265 10th St, Portland, OR 97035" -246175,Lightning Charging Cable,1,14.95,08/04/19 22:06,"322 1st St, Los Angeles, CA 90001" -246176,AA Batteries (4-pack),1,3.84,08/14/19 12:40,"91 Johnson St, San Francisco, CA 94016" -246177,Flatscreen TV,1,300,08/26/19 20:30,"949 9th St, New York City, NY 10001" -246178,USB-C Charging Cable,1,11.95,08/16/19 14:37,"444 Hill St, New York City, NY 10001" -246179,20in Monitor,1,109.99,08/13/19 21:27,"381 Chestnut St, San Francisco, CA 94016" -246180,Wired Headphones,1,11.99,08/23/19 22:26,"137 Walnut St, Seattle, WA 98101" -246181,AAA Batteries (4-pack),1,2.99,08/19/19 19:46,"18 Jefferson St, San Francisco, CA 94016" -246182,Lightning Charging Cable,1,14.95,08/22/19 15:43,"308 Spruce St, Los Angeles, CA 90001" -246183,AA Batteries (4-pack),1,3.84,08/11/19 12:41,"891 Wilson St, Boston, MA 02215" -246184,Bose SoundSport Headphones,1,99.99,08/23/19 14:12,"782 Forest St, San Francisco, CA 94016" -246185,AAA Batteries (4-pack),4,2.99,08/15/19 16:56,"547 6th St, San Francisco, CA 94016" -246186,Wired Headphones,1,11.99,08/28/19 23:54,"942 Wilson St, Austin, TX 73301" -246187,USB-C Charging Cable,1,11.95,08/11/19 13:35,"746 Dogwood St, Los Angeles, CA 90001" -246188,iPhone,1,700,08/22/19 14:58,"529 Sunset St, Seattle, WA 98101" -246189,20in Monitor,1,109.99,08/07/19 08:07,"840 West St, San Francisco, CA 94016" -246190,USB-C Charging Cable,1,11.95,08/03/19 13:11,"344 Dogwood St, New York City, NY 10001" -246191,AAA Batteries (4-pack),2,2.99,08/22/19 13:11,"98 Johnson St, Austin, TX 73301" -246192,USB-C Charging Cable,1,11.95,08/17/19 17:10,"828 Cedar St, Los Angeles, CA 90001" -246193,iPhone,1,700,08/28/19 17:26,"834 Jefferson St, San Francisco, CA 94016" -246194,27in 4K Gaming Monitor,1,389.99,08/17/19 12:29,"285 Lincoln St, San Francisco, CA 94016" -246195,AAA Batteries (4-pack),1,2.99,08/28/19 23:25,"36 Sunset St, San Francisco, CA 94016" -246196,USB-C Charging Cable,1,11.95,08/09/19 10:22,"336 12th St, Seattle, WA 98101" -246197,iPhone,1,700,08/27/19 02:30,"718 Sunset St, Dallas, TX 75001" -246197,AA Batteries (4-pack),1,3.84,08/27/19 02:30,"718 Sunset St, Dallas, TX 75001" -246198,Bose SoundSport Headphones,1,99.99,08/19/19 15:58,"478 Wilson St, Los Angeles, CA 90001" -246199,AAA Batteries (4-pack),2,2.99,08/25/19 21:07,"329 Washington St, Boston, MA 02215" -246200,AAA Batteries (4-pack),4,2.99,08/06/19 18:46,"387 Hickory St, San Francisco, CA 94016" -246201,USB-C Charging Cable,1,11.95,08/18/19 17:39,"768 Main St, Dallas, TX 75001" -246202,Wired Headphones,1,11.99,08/12/19 12:12,"888 Washington St, Boston, MA 02215" -246203,AA Batteries (4-pack),1,3.84,08/15/19 10:05,"533 Hickory St, Los Angeles, CA 90001" -246204,Bose SoundSport Headphones,1,99.99,08/11/19 10:43,"790 Hill St, Austin, TX 73301" -246205,20in Monitor,1,109.99,08/22/19 20:15,"258 Elm St, Los Angeles, CA 90001" -246206,AAA Batteries (4-pack),3,2.99,08/07/19 11:26,"938 Adams St, Los Angeles, CA 90001" -246207,Apple Airpods Headphones,1,150,08/24/19 22:03,"490 7th St, Los Angeles, CA 90001" -246208,USB-C Charging Cable,1,11.95,08/16/19 19:40,"298 1st St, Los Angeles, CA 90001" -246209,Bose SoundSport Headphones,1,99.99,08/22/19 17:27,"540 9th St, Atlanta, GA 30301" -246210,Flatscreen TV,1,300,08/02/19 09:41,"964 4th St, New York City, NY 10001" -246211,Lightning Charging Cable,1,14.95,08/17/19 19:29,"253 Pine St, Los Angeles, CA 90001" -246212,USB-C Charging Cable,1,11.95,08/26/19 09:59,"484 West St, San Francisco, CA 94016" -246213,Lightning Charging Cable,1,14.95,08/30/19 10:25,"853 Meadow St, Seattle, WA 98101" -246214,Macbook Pro Laptop,1,1700,08/16/19 14:31,"216 Lincoln St, Austin, TX 73301" -246215,Bose SoundSport Headphones,1,99.99,08/25/19 05:48,"43 Cedar St, San Francisco, CA 94016" -246216,Bose SoundSport Headphones,1,99.99,08/28/19 13:42,"35 5th St, San Francisco, CA 94016" -246217,USB-C Charging Cable,1,11.95,08/13/19 12:07,"126 Sunset St, Portland, OR 97035" -246218,AA Batteries (4-pack),1,3.84,08/19/19 13:22,"866 Walnut St, Seattle, WA 98101" -246219,Bose SoundSport Headphones,1,99.99,08/15/19 21:11,"889 Washington St, San Francisco, CA 94016" -246220,Lightning Charging Cable,1,14.95,08/15/19 10:22,"524 Madison St, San Francisco, CA 94016" -246221,Apple Airpods Headphones,1,150,08/05/19 12:12,"56 Maple St, Atlanta, GA 30301" -246222,Lightning Charging Cable,1,14.95,08/09/19 15:05,"67 4th St, San Francisco, CA 94016" -246223,Bose SoundSport Headphones,1,99.99,08/14/19 22:21,"69 Walnut St, San Francisco, CA 94016" -246224,AAA Batteries (4-pack),1,2.99,08/14/19 00:06,"743 West St, Dallas, TX 75001" -246225,Lightning Charging Cable,1,14.95,08/16/19 22:06,"710 Walnut St, Los Angeles, CA 90001" -246226,Lightning Charging Cable,1,14.95,08/04/19 10:21,"918 1st St, San Francisco, CA 94016" -246227,27in 4K Gaming Monitor,1,389.99,08/18/19 15:04,"333 14th St, New York City, NY 10001" -246228,USB-C Charging Cable,1,11.95,08/07/19 14:15,"661 6th St, Seattle, WA 98101" -246229,Lightning Charging Cable,1,14.95,08/03/19 22:12,"121 Dogwood St, Boston, MA 02215" -246230,27in FHD Monitor,1,149.99,08/17/19 11:50,"314 Chestnut St, San Francisco, CA 94016" -246231,AAA Batteries (4-pack),1,2.99,08/14/19 15:57,"111 Cedar St, New York City, NY 10001" -246232,AAA Batteries (4-pack),1,2.99,08/10/19 17:43,"692 1st St, San Francisco, CA 94016" -246233,AA Batteries (4-pack),3,3.84,08/24/19 12:38,"857 10th St, Portland, ME 04101" -246234,USB-C Charging Cable,2,11.95,08/26/19 09:46,"83 Dogwood St, Boston, MA 02215" -246235,34in Ultrawide Monitor,1,379.99,08/25/19 15:59,"296 1st St, Boston, MA 02215" -246236,Apple Airpods Headphones,1,150,08/01/19 15:18,"381 4th St, Los Angeles, CA 90001" -246237,34in Ultrawide Monitor,1,379.99,08/09/19 11:29,"312 Willow St, Boston, MA 02215" -246238,Apple Airpods Headphones,1,150,08/11/19 18:44,"8 Main St, Atlanta, GA 30301" -246239,Lightning Charging Cable,1,14.95,08/13/19 14:50,"753 7th St, Boston, MA 02215" -246240,Apple Airpods Headphones,1,150,08/11/19 12:35,"29 Lakeview St, Austin, TX 73301" -246241,AA Batteries (4-pack),1,3.84,08/13/19 20:52,"747 Cherry St, Dallas, TX 75001" -246242,AA Batteries (4-pack),1,3.84,08/15/19 18:03,"894 14th St, Atlanta, GA 30301" -246243,USB-C Charging Cable,1,11.95,08/27/19 00:24,"884 Jackson St, New York City, NY 10001" -246244,34in Ultrawide Monitor,1,379.99,08/23/19 18:30,"859 Ridge St, Austin, TX 73301" -246245,Macbook Pro Laptop,1,1700,08/26/19 10:05,"611 Church St, San Francisco, CA 94016" -246246,Lightning Charging Cable,1,14.95,08/12/19 05:44,"334 West St, New York City, NY 10001" -246247,27in 4K Gaming Monitor,1,389.99,08/24/19 15:02,"205 River St, Los Angeles, CA 90001" -246248,AAA Batteries (4-pack),2,2.99,08/11/19 19:38,"283 Forest St, San Francisco, CA 94016" -246248,USB-C Charging Cable,1,11.95,08/11/19 19:38,"283 Forest St, San Francisco, CA 94016" -246249,ThinkPad Laptop,1,999.99,08/17/19 12:55,"423 Willow St, San Francisco, CA 94016" -246250,USB-C Charging Cable,1,11.95,08/09/19 11:53,"248 Willow St, Los Angeles, CA 90001" -246251,USB-C Charging Cable,1,11.95,08/17/19 13:04,"550 Adams St, Boston, MA 02215" -246252,Apple Airpods Headphones,1,150,08/18/19 14:19,"345 Maple St, New York City, NY 10001" -246253,Wired Headphones,1,11.99,08/06/19 08:39,"392 Jefferson St, New York City, NY 10001" -246254,Lightning Charging Cable,1,14.95,08/17/19 16:44,"768 Lakeview St, Portland, ME 04101" -246255,20in Monitor,1,109.99,08/12/19 13:32,"270 Jackson St, San Francisco, CA 94016" -246256,AA Batteries (4-pack),2,3.84,08/19/19 11:14,"707 Forest St, San Francisco, CA 94016" -246257,AAA Batteries (4-pack),1,2.99,08/15/19 21:04,"868 River St, Atlanta, GA 30301" -246258,Flatscreen TV,1,300,08/26/19 17:08,"182 Jackson St, Seattle, WA 98101" -246259,AAA Batteries (4-pack),1,2.99,08/25/19 19:21,"181 Wilson St, San Francisco, CA 94016" -246260,Macbook Pro Laptop,1,1700,08/11/19 18:20,"282 Walnut St, Boston, MA 02215" -246261,Wired Headphones,1,11.99,08/16/19 17:37,"635 Main St, Portland, OR 97035" -246262,Wired Headphones,1,11.99,08/13/19 16:57,"907 10th St, San Francisco, CA 94016" -246262,USB-C Charging Cable,1,11.95,08/13/19 16:57,"907 10th St, San Francisco, CA 94016" -246263,USB-C Charging Cable,1,11.95,08/07/19 13:49,"85 Jackson St, Seattle, WA 98101" -246264,Bose SoundSport Headphones,1,99.99,08/24/19 11:36,"533 Dogwood St, San Francisco, CA 94016" -246265,AAA Batteries (4-pack),1,2.99,08/25/19 15:41,"760 Walnut St, Portland, OR 97035" -246266,AA Batteries (4-pack),2,3.84,08/14/19 18:18,"700 Spruce St, New York City, NY 10001" -246267,Wired Headphones,1,11.99,08/01/19 12:13,"56 West St, Boston, MA 02215" -246268,27in 4K Gaming Monitor,1,389.99,08/24/19 13:33,"960 Jefferson St, Dallas, TX 75001" -246269,AAA Batteries (4-pack),1,2.99,08/27/19 22:32,"731 Wilson St, Los Angeles, CA 90001" -246270,Lightning Charging Cable,1,14.95,08/20/19 13:22,"727 Forest St, New York City, NY 10001" -246271,Google Phone,1,600,08/06/19 20:44,"637 Wilson St, Los Angeles, CA 90001" -246272,Macbook Pro Laptop,1,1700,08/28/19 21:16,"746 Pine St, New York City, NY 10001" -246273,Lightning Charging Cable,1,14.95,08/16/19 10:12,"638 9th St, New York City, NY 10001" -246274,AA Batteries (4-pack),1,3.84,08/29/19 16:05,"262 North St, San Francisco, CA 94016" -246275,Lightning Charging Cable,1,14.95,08/26/19 00:17,"491 Lake St, San Francisco, CA 94016" -246275,Lightning Charging Cable,1,14.95,08/26/19 00:17,"491 Lake St, San Francisco, CA 94016" -246276,AA Batteries (4-pack),1,3.84,08/15/19 19:03,"7 Lake St, Atlanta, GA 30301" -246277,Lightning Charging Cable,1,14.95,08/07/19 11:02,"929 Wilson St, Portland, OR 97035" -246278,27in FHD Monitor,1,149.99,08/08/19 12:08,"951 Wilson St, Austin, TX 73301" -246279,Flatscreen TV,1,300,08/14/19 22:50,"983 Washington St, New York City, NY 10001" -246280,AA Batteries (4-pack),2,3.84,08/05/19 17:31,"387 Johnson St, Portland, OR 97035" -246281,Lightning Charging Cable,1,14.95,08/09/19 11:39,"266 8th St, Seattle, WA 98101" -246282,27in 4K Gaming Monitor,1,389.99,08/09/19 17:58,"467 2nd St, Atlanta, GA 30301" -246283,AAA Batteries (4-pack),1,2.99,08/03/19 13:14,"709 1st St, San Francisco, CA 94016" -246284,AAA Batteries (4-pack),1,2.99,08/30/19 22:06,"926 Church St, Boston, MA 02215" -246285,Apple Airpods Headphones,1,150,08/18/19 01:19,"649 8th St, San Francisco, CA 94016" -246286,Google Phone,1,600,08/16/19 19:15,"758 8th St, Seattle, WA 98101" -246286,Bose SoundSport Headphones,1,99.99,08/16/19 19:15,"758 8th St, Seattle, WA 98101" -246287,Wired Headphones,1,11.99,08/06/19 20:27,"332 Washington St, San Francisco, CA 94016" -246288,USB-C Charging Cable,1,11.95,08/27/19 08:15,"762 Jackson St, Portland, OR 97035" -246289,Bose SoundSport Headphones,1,99.99,08/18/19 17:44,"845 Lake St, Boston, MA 02215" -246290,Flatscreen TV,1,300,08/26/19 18:08,"713 Lincoln St, San Francisco, CA 94016" -246291,Wired Headphones,1,11.99,08/20/19 20:48,"752 9th St, Seattle, WA 98101" -246292,Flatscreen TV,1,300,08/18/19 23:34,"208 Park St, New York City, NY 10001" -246293,iPhone,1,700,08/10/19 13:44,"709 Cherry St, New York City, NY 10001" -246294,iPhone,1,700,08/05/19 10:27,"802 Church St, Boston, MA 02215" -246295,Lightning Charging Cable,1,14.95,08/30/19 16:46,"417 Jefferson St, Atlanta, GA 30301" -246296,AA Batteries (4-pack),1,3.84,08/16/19 17:33,"631 Hill St, San Francisco, CA 94016" -246297,Lightning Charging Cable,1,14.95,08/17/19 14:03,"428 10th St, Seattle, WA 98101" -246298,iPhone,1,700,08/03/19 17:24,"212 12th St, Boston, MA 02215" -246299,Apple Airpods Headphones,1,150,08/29/19 17:05,"324 Cherry St, San Francisco, CA 94016" -246300,27in 4K Gaming Monitor,1,389.99,08/04/19 16:18,"38 6th St, Austin, TX 73301" -246301,AAA Batteries (4-pack),3,2.99,08/17/19 11:26,"936 Center St, Seattle, WA 98101" -246302,USB-C Charging Cable,1,11.95,08/10/19 10:38,"617 8th St, Portland, OR 97035" -246303,iPhone,1,700,08/26/19 18:28,"77 Lakeview St, Boston, MA 02215" -246304,iPhone,1,700,08/01/19 08:59,"599 Park St, San Francisco, CA 94016" -246305,34in Ultrawide Monitor,1,379.99,08/05/19 10:14,"861 Willow St, Dallas, TX 75001" -246306,USB-C Charging Cable,1,11.95,08/29/19 19:06,"735 Walnut St, Los Angeles, CA 90001" -246307,Bose SoundSport Headphones,1,99.99,08/29/19 01:47,"197 Jefferson St, New York City, NY 10001" -246308,USB-C Charging Cable,1,11.95,08/13/19 19:13,"786 Meadow St, Austin, TX 73301" -246309,AA Batteries (4-pack),1,3.84,08/08/19 12:33,"418 11th St, Austin, TX 73301" -246310,27in 4K Gaming Monitor,1,389.99,08/30/19 18:54,"57 Hill St, San Francisco, CA 94016" -246311,Apple Airpods Headphones,1,150,08/19/19 13:54,"745 Washington St, Los Angeles, CA 90001" -246312,Lightning Charging Cable,3,14.95,08/14/19 13:02,"595 Adams St, Dallas, TX 75001" -246313,Wired Headphones,1,11.99,08/07/19 11:48,"42 Meadow St, Portland, ME 04101" -246314,Apple Airpods Headphones,1,150,08/14/19 22:55,"28 West St, Austin, TX 73301" -246315,Macbook Pro Laptop,1,1700,08/04/19 14:13,"861 Main St, New York City, NY 10001" -246316,Macbook Pro Laptop,1,1700,08/22/19 16:40,"694 Church St, San Francisco, CA 94016" -246317,Wired Headphones,1,11.99,08/27/19 13:23,"983 13th St, Atlanta, GA 30301" -246318,27in FHD Monitor,1,149.99,08/29/19 12:14,"926 Chestnut St, Portland, OR 97035" -246319,Bose SoundSport Headphones,1,99.99,08/28/19 15:46,"860 Lakeview St, San Francisco, CA 94016" -246320,AA Batteries (4-pack),1,3.84,08/02/19 18:21,"499 Spruce St, San Francisco, CA 94016" -246321,Flatscreen TV,1,300,08/13/19 18:48,"903 Highland St, Boston, MA 02215" -246322,34in Ultrawide Monitor,1,379.99,08/03/19 17:21,"297 Walnut St, Los Angeles, CA 90001" -246323,20in Monitor,1,109.99,08/17/19 16:46,"457 Lake St, Portland, OR 97035" -246324,AAA Batteries (4-pack),1,2.99,08/17/19 18:40,"278 Center St, San Francisco, CA 94016" -246325,Bose SoundSport Headphones,1,99.99,08/20/19 12:07,"708 North St, Seattle, WA 98101" -246326,iPhone,1,700,08/22/19 14:27,"373 11th St, Los Angeles, CA 90001" -246327,AA Batteries (4-pack),1,3.84,08/07/19 06:47,"673 Wilson St, Los Angeles, CA 90001" -246328,AAA Batteries (4-pack),1,2.99,08/24/19 18:31,"427 Cedar St, Los Angeles, CA 90001" -246329,AAA Batteries (4-pack),3,2.99,08/19/19 21:44,"819 14th St, San Francisco, CA 94016" -246330,USB-C Charging Cable,1,11.95,08/29/19 12:48,"642 Spruce St, Atlanta, GA 30301" -246331,AA Batteries (4-pack),1,3.84,08/21/19 12:29,"806 Pine St, Seattle, WA 98101" -246332,AA Batteries (4-pack),2,3.84,08/28/19 10:37,"744 Highland St, Los Angeles, CA 90001" -246333,AA Batteries (4-pack),2,3.84,08/03/19 11:15,"605 Spruce St, Los Angeles, CA 90001" -246334,USB-C Charging Cable,1,11.95,08/02/19 06:53,"4 Church St, Portland, OR 97035" -246335,Lightning Charging Cable,1,14.95,08/29/19 23:10,"101 10th St, Dallas, TX 75001" -246336,Lightning Charging Cable,1,14.95,08/23/19 19:15,"346 Spruce St, Portland, OR 97035" -246337,Lightning Charging Cable,1,14.95,08/01/19 22:07,"316 Lakeview St, San Francisco, CA 94016" -246338,AA Batteries (4-pack),1,3.84,08/23/19 20:03,"291 Chestnut St, San Francisco, CA 94016" -246339,Bose SoundSport Headphones,1,99.99,08/14/19 09:13,"211 Lakeview St, New York City, NY 10001" -246340,Wired Headphones,1,11.99,08/03/19 18:36,"882 Church St, Atlanta, GA 30301" -246341,Lightning Charging Cable,1,14.95,08/31/19 15:29,"174 Center St, Portland, OR 97035" -246342,Lightning Charging Cable,1,14.95,08/19/19 20:55,"541 River St, Austin, TX 73301" -246343,Apple Airpods Headphones,1,150,08/22/19 11:27,"922 Chestnut St, San Francisco, CA 94016" -246344,Apple Airpods Headphones,1,150,08/27/19 10:14,"392 Spruce St, Dallas, TX 75001" -246345,AA Batteries (4-pack),2,3.84,08/30/19 08:35,"155 West St, New York City, NY 10001" -246346,AA Batteries (4-pack),2,3.84,08/03/19 10:13,"299 Hill St, Atlanta, GA 30301" -246347,Flatscreen TV,1,300,08/20/19 16:35,"718 Jefferson St, New York City, NY 10001" -246348,20in Monitor,1,109.99,08/20/19 13:29,"382 Center St, San Francisco, CA 94016" -246349,20in Monitor,1,109.99,08/18/19 20:28,"975 Cherry St, San Francisco, CA 94016" -246350,Wired Headphones,1,11.99,08/31/19 12:25,"442 Walnut St, San Francisco, CA 94016" -246351,AA Batteries (4-pack),2,3.84,08/06/19 21:27,"767 Meadow St, Los Angeles, CA 90001" -246352,USB-C Charging Cable,1,11.95,08/10/19 17:49,"194 4th St, New York City, NY 10001" -246353,Apple Airpods Headphones,1,150,08/23/19 23:03,"913 River St, San Francisco, CA 94016" -246354,Wired Headphones,1,11.99,08/29/19 12:26,"171 Park St, Portland, OR 97035" -246355,27in FHD Monitor,1,149.99,08/08/19 20:25,"371 Adams St, Los Angeles, CA 90001" -246356,Lightning Charging Cable,1,14.95,08/15/19 15:36,"564 Chestnut St, Los Angeles, CA 90001" -246357,AA Batteries (4-pack),1,3.84,08/07/19 15:26,"631 Cedar St, San Francisco, CA 94016" -246358,Apple Airpods Headphones,1,150,08/08/19 22:24,"913 Madison St, Dallas, TX 75001" -246359,20in Monitor,1,109.99,08/26/19 21:24,"290 7th St, Los Angeles, CA 90001" -246360,20in Monitor,1,109.99,08/03/19 22:07,"707 Spruce St, San Francisco, CA 94016" -246361,AA Batteries (4-pack),1,3.84,08/24/19 10:03,"942 Washington St, Boston, MA 02215" -246362,Bose SoundSport Headphones,1,99.99,08/14/19 20:28,"42 Elm St, Dallas, TX 75001" -246363,Flatscreen TV,1,300,08/21/19 12:20,"962 1st St, Dallas, TX 75001" -246364,27in FHD Monitor,1,149.99,08/14/19 02:54,"504 Chestnut St, San Francisco, CA 94016" -246365,27in 4K Gaming Monitor,1,389.99,08/05/19 05:34,"160 6th St, Austin, TX 73301" -246366,27in FHD Monitor,1,149.99,08/28/19 08:50,"746 11th St, New York City, NY 10001" -246367,Apple Airpods Headphones,1,150,08/16/19 20:03,"638 12th St, San Francisco, CA 94016" -246368,USB-C Charging Cable,1,11.95,08/03/19 10:34,"222 Elm St, Dallas, TX 75001" -246369,AAA Batteries (4-pack),1,2.99,08/07/19 16:56,"251 Lakeview St, Atlanta, GA 30301" -246370,Bose SoundSport Headphones,1,99.99,08/04/19 20:44,"834 Jefferson St, Atlanta, GA 30301" -246371,Bose SoundSport Headphones,1,99.99,08/04/19 17:31,"390 13th St, Los Angeles, CA 90001" -246372,20in Monitor,1,109.99,08/10/19 16:20,"716 Madison St, Los Angeles, CA 90001" -246373,Lightning Charging Cable,1,14.95,08/20/19 17:43,"673 Lake St, New York City, NY 10001" -246374,USB-C Charging Cable,1,11.95,08/04/19 20:36,"222 Lake St, Boston, MA 02215" -246375,AA Batteries (4-pack),1,3.84,08/16/19 10:45,"615 11th St, Dallas, TX 75001" -246376,AAA Batteries (4-pack),1,2.99,08/09/19 08:41,"84 12th St, Los Angeles, CA 90001" -246377,AAA Batteries (4-pack),1,2.99,08/12/19 12:49,"877 7th St, Boston, MA 02215" -246378,AA Batteries (4-pack),1,3.84,08/28/19 19:43,"420 Madison St, San Francisco, CA 94016" -246379,USB-C Charging Cable,1,11.95,08/25/19 12:31,"964 Lake St, San Francisco, CA 94016" -246380,Macbook Pro Laptop,1,1700,08/23/19 03:39,"311 Washington St, Seattle, WA 98101" -246381,ThinkPad Laptop,1,999.99,08/23/19 19:44,"557 Pine St, Boston, MA 02215" -246382,27in FHD Monitor,1,149.99,08/05/19 16:25,"411 Sunset St, New York City, NY 10001" -246383,Lightning Charging Cable,1,14.95,08/14/19 20:38,"49 North St, Dallas, TX 75001" -246384,Flatscreen TV,1,300,08/05/19 16:36,"980 Johnson St, Los Angeles, CA 90001" -246385,USB-C Charging Cable,1,11.95,08/23/19 08:00,"332 Maple St, Los Angeles, CA 90001" -246386,AA Batteries (4-pack),1,3.84,08/27/19 20:38,"765 10th St, Austin, TX 73301" -246387,Bose SoundSport Headphones,1,99.99,08/25/19 11:46,"517 5th St, Boston, MA 02215" -246388,USB-C Charging Cable,1,11.95,08/15/19 00:02,"823 8th St, Seattle, WA 98101" -246389,AA Batteries (4-pack),1,3.84,08/15/19 14:44,"334 Ridge St, Atlanta, GA 30301" -246390,AAA Batteries (4-pack),1,2.99,08/01/19 16:51,"936 Johnson St, Dallas, TX 75001" -246391,ThinkPad Laptop,1,999.99,08/22/19 22:52,"484 Center St, Dallas, TX 75001" -246392,Lightning Charging Cable,1,14.95,08/25/19 16:00,"541 Church St, New York City, NY 10001" -246393,AAA Batteries (4-pack),1,2.99,08/25/19 09:55,"403 Cherry St, New York City, NY 10001" -246394,Wired Headphones,1,11.99,08/15/19 08:03,"374 10th St, San Francisco, CA 94016" -246395,Apple Airpods Headphones,1,150,08/05/19 13:22,"600 Madison St, New York City, NY 10001" -246396,27in FHD Monitor,1,149.99,08/16/19 11:47,"948 Lincoln St, Austin, TX 73301" -246397,Lightning Charging Cable,1,14.95,08/20/19 20:10,"649 Cedar St, Los Angeles, CA 90001" -246398,Apple Airpods Headphones,1,150,08/19/19 01:01,"792 Willow St, New York City, NY 10001" -246399,AAA Batteries (4-pack),1,2.99,08/19/19 20:58,"958 Meadow St, Seattle, WA 98101" -246400,USB-C Charging Cable,1,11.95,08/18/19 23:30,"519 Church St, New York City, NY 10001" -246401,AA Batteries (4-pack),1,3.84,08/20/19 18:39,"400 1st St, Dallas, TX 75001" -246402,Wired Headphones,1,11.99,08/17/19 12:05,"417 9th St, San Francisco, CA 94016" -246403,AAA Batteries (4-pack),2,2.99,08/28/19 09:11,"174 River St, San Francisco, CA 94016" -246404,AAA Batteries (4-pack),1,2.99,08/17/19 20:20,"278 Johnson St, Los Angeles, CA 90001" -246405,AAA Batteries (4-pack),2,2.99,08/07/19 18:47,"615 Meadow St, Dallas, TX 75001" -246406,AAA Batteries (4-pack),1,2.99,08/19/19 22:56,"302 North St, San Francisco, CA 94016" -246407,Apple Airpods Headphones,1,150,08/05/19 17:29,"757 Center St, Portland, ME 04101" -246408,AAA Batteries (4-pack),1,2.99,08/06/19 09:03,"409 Walnut St, Los Angeles, CA 90001" -246409,34in Ultrawide Monitor,1,379.99,08/06/19 11:03,"224 Highland St, Portland, OR 97035" -246410,AA Batteries (4-pack),1,3.84,08/09/19 23:41,"340 Cherry St, Dallas, TX 75001" -246411,27in FHD Monitor,1,149.99,08/12/19 13:08,"601 Washington St, Boston, MA 02215" -246412,AAA Batteries (4-pack),1,2.99,08/31/19 20:31,"405 Sunset St, San Francisco, CA 94016" -246413,Wired Headphones,1,11.99,08/03/19 12:25,"399 Chestnut St, Portland, OR 97035" -246414,Flatscreen TV,1,300,08/26/19 19:55,"549 Lakeview St, Los Angeles, CA 90001" -246415,AAA Batteries (4-pack),4,2.99,08/13/19 15:42,"1 Center St, San Francisco, CA 94016" -246416,Lightning Charging Cable,1,14.95,08/15/19 13:09,"469 Washington St, San Francisco, CA 94016" -246417,USB-C Charging Cable,1,11.95,08/09/19 22:34,"367 Meadow St, Austin, TX 73301" -246418,Macbook Pro Laptop,1,1700,08/25/19 08:57,"844 Lake St, New York City, NY 10001" -246419,27in FHD Monitor,1,149.99,08/18/19 09:33,"563 Lakeview St, Los Angeles, CA 90001" -246420,iPhone,1,700,08/18/19 10:19,"235 West St, San Francisco, CA 94016" -246421,Wired Headphones,1,11.99,08/07/19 18:33,"179 Meadow St, Los Angeles, CA 90001" -246422,Wired Headphones,1,11.99,08/15/19 08:57,"352 Jefferson St, San Francisco, CA 94016" -246423,USB-C Charging Cable,1,11.95,08/01/19 18:35,"39 8th St, New York City, NY 10001" -246424,Apple Airpods Headphones,1,150,08/02/19 21:18,"855 Forest St, Dallas, TX 75001" -246425,Lightning Charging Cable,1,14.95,08/20/19 11:27,"948 Hill St, Los Angeles, CA 90001" -246426,Bose SoundSport Headphones,1,99.99,08/02/19 17:40,"783 Spruce St, Dallas, TX 75001" -246427,Wired Headphones,1,11.99,08/20/19 07:03,"117 Park St, New York City, NY 10001" -246428,AAA Batteries (4-pack),3,2.99,08/23/19 08:46,"901 4th St, New York City, NY 10001" -246429,Flatscreen TV,1,300,08/31/19 15:42,"942 Jackson St, Atlanta, GA 30301" -246430,iPhone,1,700,08/05/19 09:27,"465 Jackson St, San Francisco, CA 94016" -246431,20in Monitor,1,109.99,08/01/19 18:54,"905 Lincoln St, San Francisco, CA 94016" -246432,Google Phone,1,600,08/25/19 18:57,"821 13th St, New York City, NY 10001" -246433,USB-C Charging Cable,1,11.95,08/28/19 11:07,"618 Pine St, Austin, TX 73301" -246434,Bose SoundSport Headphones,1,99.99,08/27/19 14:52,"694 Hickory St, Seattle, WA 98101" -246435,USB-C Charging Cable,1,11.95,08/02/19 08:08,"872 2nd St, Dallas, TX 75001" -246436,USB-C Charging Cable,1,11.95,08/25/19 11:11,"254 Jackson St, Austin, TX 73301" -246437,USB-C Charging Cable,1,11.95,08/06/19 21:06,"757 Lakeview St, San Francisco, CA 94016" -246438,iPhone,1,700,08/01/19 22:17,"542 11th St, Atlanta, GA 30301" -246438,Lightning Charging Cable,1,14.95,08/01/19 22:17,"542 11th St, Atlanta, GA 30301" -246439,27in FHD Monitor,1,149.99,08/04/19 12:43,"614 Hickory St, Dallas, TX 75001" -246440,AAA Batteries (4-pack),2,2.99,08/17/19 13:21,"561 Maple St, San Francisco, CA 94016" -246441,27in 4K Gaming Monitor,1,389.99,08/11/19 12:34,"700 2nd St, San Francisco, CA 94016" -246442,AAA Batteries (4-pack),1,2.99,08/15/19 16:16,"113 11th St, Boston, MA 02215" -246443,27in FHD Monitor,1,149.99,08/04/19 11:00,"95 7th St, San Francisco, CA 94016" -246444,iPhone,1,700,08/25/19 05:32,"871 River St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -246445,34in Ultrawide Monitor,1,379.99,08/14/19 22:54,"28 Main St, San Francisco, CA 94016" -246446,Wired Headphones,1,11.99,08/22/19 20:13,"146 Forest St, San Francisco, CA 94016" -246447,Apple Airpods Headphones,1,150,08/22/19 23:17,"918 Johnson St, New York City, NY 10001" -246448,27in FHD Monitor,1,149.99,08/12/19 15:24,"806 Forest St, Los Angeles, CA 90001" -246449,USB-C Charging Cable,2,11.95,08/10/19 14:37,"495 5th St, Seattle, WA 98101" -246450,Wired Headphones,1,11.99,08/09/19 11:28,"441 Maple St, New York City, NY 10001" -246451,LG Dryer,1,600.0,08/16/19 10:21,"534 12th St, San Francisco, CA 94016" -246452,AA Batteries (4-pack),3,3.84,08/12/19 18:03,"413 11th St, San Francisco, CA 94016" -246453,27in FHD Monitor,1,149.99,08/23/19 22:39,"956 Park St, Portland, ME 04101" -246454,Wired Headphones,1,11.99,08/04/19 19:58,"440 Jackson St, Los Angeles, CA 90001" -246455,Wired Headphones,1,11.99,08/20/19 01:22,"923 Ridge St, Portland, OR 97035" -246456,AA Batteries (4-pack),1,3.84,08/14/19 19:58,"507 Dogwood St, Atlanta, GA 30301" -246457,Vareebadd Phone,1,400,08/01/19 15:31,"31 Lincoln St, Atlanta, GA 30301" -246458,Lightning Charging Cable,1,14.95,08/21/19 09:29,"261 Lakeview St, Boston, MA 02215" -246459,USB-C Charging Cable,1,11.95,08/27/19 18:39,"70 Madison St, Los Angeles, CA 90001" -246460,Apple Airpods Headphones,1,150,08/31/19 16:47,"591 Hickory St, Atlanta, GA 30301" -246461,Bose SoundSport Headphones,1,99.99,08/19/19 15:26,"166 West St, New York City, NY 10001" -246462,USB-C Charging Cable,1,11.95,08/22/19 20:24,"793 Johnson St, San Francisco, CA 94016" -246463,Wired Headphones,1,11.99,08/10/19 10:01,"46 Sunset St, Portland, OR 97035" -246464,Bose SoundSport Headphones,1,99.99,08/26/19 08:05,"667 10th St, New York City, NY 10001" -246465,27in 4K Gaming Monitor,1,389.99,08/14/19 11:41,"340 13th St, Dallas, TX 75001" -246466,Lightning Charging Cable,1,14.95,08/09/19 19:23,"592 Lake St, Los Angeles, CA 90001" -246467,AAA Batteries (4-pack),1,2.99,08/22/19 09:52,"903 Hickory St, Dallas, TX 75001" -246468,Lightning Charging Cable,1,14.95,08/31/19 13:16,"592 10th St, Boston, MA 02215" -246469,27in 4K Gaming Monitor,1,389.99,08/07/19 16:50,"54 Forest St, Los Angeles, CA 90001" -246470,LG Dryer,1,600.0,08/25/19 12:07,"669 Main St, San Francisco, CA 94016" -246471,AA Batteries (4-pack),1,3.84,08/14/19 12:43,"382 Madison St, Atlanta, GA 30301" -246472,Macbook Pro Laptop,1,1700,08/20/19 16:39,"384 6th St, Boston, MA 02215" -246473,34in Ultrawide Monitor,1,379.99,08/25/19 14:38,"798 Hill St, Atlanta, GA 30301" -246474,AAA Batteries (4-pack),1,2.99,08/22/19 12:29,"190 Highland St, Portland, OR 97035" -246475,20in Monitor,1,109.99,08/19/19 14:11,"817 Adams St, Dallas, TX 75001" -246476,Macbook Pro Laptop,1,1700,08/31/19 21:14,"85 Elm St, San Francisco, CA 94016" -246477,AAA Batteries (4-pack),3,2.99,08/19/19 19:52,"824 Johnson St, Boston, MA 02215" -246478,USB-C Charging Cable,1,11.95,08/05/19 11:45,"130 South St, San Francisco, CA 94016" -246479,20in Monitor,1,109.99,08/15/19 13:17,"880 14th St, Boston, MA 02215" -246480,27in 4K Gaming Monitor,1,389.99,08/04/19 14:11,"327 Ridge St, Dallas, TX 75001" -246481,Bose SoundSport Headphones,1,99.99,08/03/19 21:00,"120 11th St, Los Angeles, CA 90001" -246482,AAA Batteries (4-pack),1,2.99,08/10/19 19:43,"94 7th St, Seattle, WA 98101" -246483,Google Phone,1,600,08/30/19 22:41,"601 Meadow St, Los Angeles, CA 90001" -246484,Bose SoundSport Headphones,1,99.99,08/02/19 22:36,"196 Johnson St, San Francisco, CA 94016" -246485,Wired Headphones,1,11.99,08/08/19 11:46,"783 Jefferson St, San Francisco, CA 94016" -246486,Apple Airpods Headphones,1,150,08/17/19 10:22,"911 Chestnut St, Dallas, TX 75001" -246487,Macbook Pro Laptop,1,1700,08/11/19 17:17,"247 Walnut St, Boston, MA 02215" -246488,AAA Batteries (4-pack),2,2.99,08/30/19 00:22,"628 Cherry St, New York City, NY 10001" -246489,LG Washing Machine,1,600.0,08/26/19 18:08,"402 Cherry St, Boston, MA 02215" -246490,Flatscreen TV,1,300,08/06/19 14:30,"137 11th St, San Francisco, CA 94016" -246491,USB-C Charging Cable,1,11.95,08/18/19 16:43,"657 1st St, New York City, NY 10001" -246492,AA Batteries (4-pack),1,3.84,08/22/19 19:31,"784 Cherry St, Los Angeles, CA 90001" -246493,Lightning Charging Cable,1,14.95,08/02/19 00:10,"362 13th St, Los Angeles, CA 90001" -246494,Wired Headphones,1,11.99,08/09/19 20:57,"995 Dogwood St, San Francisco, CA 94016" -246495,Apple Airpods Headphones,1,150,08/29/19 07:24,"794 Adams St, New York City, NY 10001" -246496,USB-C Charging Cable,1,11.95,08/02/19 13:03,"517 Meadow St, San Francisco, CA 94016" -246497,ThinkPad Laptop,1,999.99,08/15/19 19:47,"296 Washington St, Dallas, TX 75001" -246498,Lightning Charging Cable,1,14.95,08/31/19 08:33,"698 Hickory St, Dallas, TX 75001" -246499,Apple Airpods Headphones,1,150,08/07/19 14:05,"509 12th St, San Francisco, CA 94016" -246500,Lightning Charging Cable,1,14.95,08/21/19 11:41,"5 Church St, New York City, NY 10001" -246501,27in FHD Monitor,1,149.99,08/22/19 20:58,"767 Spruce St, San Francisco, CA 94016" -246502,Apple Airpods Headphones,1,150,08/19/19 23:08,"107 Spruce St, Boston, MA 02215" -246503,AAA Batteries (4-pack),2,2.99,08/26/19 19:26,"144 Jackson St, Boston, MA 02215" -246504,Apple Airpods Headphones,1,150,08/19/19 04:10,"28 Adams St, San Francisco, CA 94016" -246505,AAA Batteries (4-pack),2,2.99,08/24/19 14:01,"944 Johnson St, Seattle, WA 98101" -246506,Wired Headphones,2,11.99,08/11/19 11:04,"706 Spruce St, Los Angeles, CA 90001" -246507,AA Batteries (4-pack),1,3.84,08/15/19 07:58,"209 8th St, Boston, MA 02215" -246508,Bose SoundSport Headphones,1,99.99,08/02/19 13:15,"404 11th St, Austin, TX 73301" -246509,AA Batteries (4-pack),1,3.84,08/26/19 20:03,"686 Park St, New York City, NY 10001" -246510,Bose SoundSport Headphones,1,99.99,08/21/19 23:47,"924 14th St, San Francisco, CA 94016" -246511,Bose SoundSport Headphones,1,99.99,08/31/19 09:34,"806 Elm St, Los Angeles, CA 90001" -246512,AAA Batteries (4-pack),2,2.99,08/01/19 12:02,"292 Jefferson St, Los Angeles, CA 90001" -246513,34in Ultrawide Monitor,1,379.99,08/10/19 12:42,"390 11th St, Boston, MA 02215" -246514,27in FHD Monitor,1,149.99,08/09/19 12:29,"496 Meadow St, Atlanta, GA 30301" -246515,Apple Airpods Headphones,1,150,08/29/19 08:49,"629 Adams St, San Francisco, CA 94016" -246516,Flatscreen TV,1,300,08/10/19 17:18,"781 Cedar St, San Francisco, CA 94016" -246517,AAA Batteries (4-pack),3,2.99,08/12/19 07:50,"970 Jefferson St, Dallas, TX 75001" -246518,Macbook Pro Laptop,1,1700,08/29/19 20:11,"641 10th St, San Francisco, CA 94016" -246519,Lightning Charging Cable,1,14.95,08/04/19 10:28,"695 Elm St, Los Angeles, CA 90001" -246520,Bose SoundSport Headphones,1,99.99,08/07/19 11:49,"197 Jefferson St, San Francisco, CA 94016" -246521,Bose SoundSport Headphones,1,99.99,08/10/19 19:50,"617 13th St, Atlanta, GA 30301" -246522,AAA Batteries (4-pack),1,2.99,08/10/19 19:18,"115 12th St, Los Angeles, CA 90001" -246523,Google Phone,1,600,08/02/19 21:24,"479 North St, San Francisco, CA 94016" -246524,AAA Batteries (4-pack),1,2.99,08/23/19 19:53,"391 Meadow St, Seattle, WA 98101" -246525,Bose SoundSport Headphones,1,99.99,08/11/19 17:02,"743 9th St, Dallas, TX 75001" -246526,Apple Airpods Headphones,1,150,08/22/19 19:39,"440 Meadow St, Atlanta, GA 30301" -246527,34in Ultrawide Monitor,1,379.99,08/20/19 08:35,"176 11th St, Los Angeles, CA 90001" -246528,USB-C Charging Cable,2,11.95,08/19/19 22:43,"287 Jefferson St, New York City, NY 10001" -246529,Lightning Charging Cable,1,14.95,08/29/19 10:54,"140 6th St, Los Angeles, CA 90001" -246530,AA Batteries (4-pack),1,3.84,08/23/19 18:57,"938 Madison St, New York City, NY 10001" -246531,Apple Airpods Headphones,2,150,08/19/19 06:57,"812 Ridge St, Seattle, WA 98101" -246532,USB-C Charging Cable,2,11.95,08/26/19 06:40,"992 14th St, Seattle, WA 98101" -246533,Lightning Charging Cable,2,14.95,08/25/19 17:58,"809 Jackson St, San Francisco, CA 94016" -246534,iPhone,1,700,08/21/19 01:44,"733 Cherry St, Boston, MA 02215" -246535,Apple Airpods Headphones,1,150,08/22/19 19:36,"839 Hickory St, Dallas, TX 75001" -246536,ThinkPad Laptop,1,999.99,08/08/19 03:15,"980 14th St, Portland, OR 97035" -246537,Lightning Charging Cable,1,14.95,08/21/19 23:21,"529 Park St, Atlanta, GA 30301" -246538,Bose SoundSport Headphones,1,99.99,08/31/19 12:33,"73 Jackson St, New York City, NY 10001" -246539,USB-C Charging Cable,1,11.95,08/28/19 14:22,"102 Center St, Dallas, TX 75001" -246539,Lightning Charging Cable,1,14.95,08/28/19 14:22,"102 Center St, Dallas, TX 75001" -246540,USB-C Charging Cable,1,11.95,08/27/19 02:03,"563 Ridge St, Los Angeles, CA 90001" -246541,AA Batteries (4-pack),1,3.84,08/10/19 09:09,"981 South St, San Francisco, CA 94016" -246542,20in Monitor,1,109.99,08/27/19 16:46,"790 4th St, New York City, NY 10001" -246543,USB-C Charging Cable,1,11.95,08/10/19 15:17,"683 5th St, Boston, MA 02215" -246544,AA Batteries (4-pack),3,3.84,08/25/19 15:33,"678 9th St, Dallas, TX 75001" -246545,USB-C Charging Cable,1,11.95,08/23/19 11:38,"927 Madison St, San Francisco, CA 94016" -246546,27in 4K Gaming Monitor,1,389.99,08/10/19 15:49,"902 South St, Boston, MA 02215" -246547,AA Batteries (4-pack),1,3.84,08/18/19 22:17,"604 Ridge St, San Francisco, CA 94016" -246548,AA Batteries (4-pack),1,3.84,08/23/19 18:32,"754 Hickory St, San Francisco, CA 94016" -246549,Flatscreen TV,1,300,08/26/19 12:15,"867 12th St, San Francisco, CA 94016" -246550,Wired Headphones,1,11.99,08/15/19 10:19,"766 North St, San Francisco, CA 94016" -246551,Apple Airpods Headphones,1,150,08/22/19 08:25,"667 10th St, New York City, NY 10001" -246552,Wired Headphones,1,11.99,08/07/19 15:31,"491 Spruce St, Dallas, TX 75001" -246553,Lightning Charging Cable,1,14.95,08/15/19 10:29,"749 Elm St, Atlanta, GA 30301" -246554,Wired Headphones,2,11.99,08/29/19 11:35,"793 13th St, Atlanta, GA 30301" -246555,Wired Headphones,1,11.99,08/17/19 11:47,"93 Jefferson St, San Francisco, CA 94016" -246556,Apple Airpods Headphones,1,150,08/26/19 12:21,"352 Highland St, Los Angeles, CA 90001" -246557,Wired Headphones,1,11.99,08/17/19 14:15,"701 7th St, Atlanta, GA 30301" -246558,LG Dryer,1,600.0,08/10/19 15:22,"99 7th St, New York City, NY 10001" -246559,Apple Airpods Headphones,1,150,08/09/19 10:41,"906 Forest St, Boston, MA 02215" -246560,Vareebadd Phone,1,400,08/03/19 16:52,"773 Church St, Atlanta, GA 30301" -246561,20in Monitor,1,109.99,08/29/19 08:47,"428 Willow St, San Francisco, CA 94016" -246562,Lightning Charging Cable,1,14.95,08/30/19 14:50,"32 Highland St, Seattle, WA 98101" -246563,Macbook Pro Laptop,1,1700,08/15/19 14:57,"958 South St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -246564,Apple Airpods Headphones,1,150,08/24/19 04:56,"50 4th St, San Francisco, CA 94016" -246565,27in FHD Monitor,1,149.99,08/01/19 09:34,"741 Church St, Dallas, TX 75001" -246566,Wired Headphones,1,11.99,08/07/19 17:03,"946 Willow St, San Francisco, CA 94016" -246567,AA Batteries (4-pack),3,3.84,08/23/19 15:07,"179 Meadow St, Los Angeles, CA 90001" -246568,Wired Headphones,1,11.99,08/22/19 07:19,"30 8th St, Boston, MA 02215" -246569,Lightning Charging Cable,1,14.95,08/19/19 01:52,"493 13th St, San Francisco, CA 94016" -246570,Lightning Charging Cable,1,14.95,08/12/19 11:17,"722 Walnut St, San Francisco, CA 94016" -246571,USB-C Charging Cable,1,11.95,08/11/19 20:29,"104 Sunset St, Seattle, WA 98101" -246572,AA Batteries (4-pack),3,3.84,08/30/19 23:16,"52 Lake St, Seattle, WA 98101" -246573,Wired Headphones,1,11.99,08/29/19 19:56,"824 1st St, Boston, MA 02215" -246574,AA Batteries (4-pack),2,3.84,08/29/19 17:21,"109 Spruce St, San Francisco, CA 94016" -246575,AA Batteries (4-pack),2,3.84,08/11/19 08:42,"247 Cherry St, Los Angeles, CA 90001" -246576,Bose SoundSport Headphones,1,99.99,08/30/19 11:55,"55 Ridge St, Los Angeles, CA 90001" -246577,27in FHD Monitor,1,149.99,08/18/19 00:10,"838 Chestnut St, New York City, NY 10001" -246578,AA Batteries (4-pack),4,3.84,08/12/19 05:58,"578 7th St, New York City, NY 10001" -246579,iPhone,1,700,08/21/19 12:21,"842 Meadow St, Los Angeles, CA 90001" -246580,Bose SoundSport Headphones,1,99.99,08/01/19 08:19,"788 14th St, Seattle, WA 98101" -246581,AA Batteries (4-pack),1,3.84,08/10/19 11:21,"20 Meadow St, Boston, MA 02215" -246582,AAA Batteries (4-pack),1,2.99,08/22/19 18:05,"664 Forest St, San Francisco, CA 94016" -246583,Wired Headphones,1,11.99,08/05/19 07:05,"373 1st St, Seattle, WA 98101" -246584,AAA Batteries (4-pack),1,2.99,08/17/19 12:16,"922 Ridge St, San Francisco, CA 94016" -246585,Wired Headphones,1,11.99,08/28/19 15:12,"52 5th St, San Francisco, CA 94016" -246586,34in Ultrawide Monitor,1,379.99,08/19/19 10:35,"742 Highland St, Los Angeles, CA 90001" -246587,LG Washing Machine,1,600.0,08/11/19 23:24,"842 Jefferson St, Dallas, TX 75001" -246588,AAA Batteries (4-pack),1,2.99,08/10/19 23:57,"790 Sunset St, New York City, NY 10001" -246589,AAA Batteries (4-pack),1,2.99,08/08/19 23:31,"549 Highland St, Boston, MA 02215" -246590,AA Batteries (4-pack),2,3.84,08/31/19 08:54,"464 Jefferson St, Atlanta, GA 30301" -246591,27in 4K Gaming Monitor,1,389.99,08/12/19 07:54,"134 Wilson St, Seattle, WA 98101" -246592,Wired Headphones,1,11.99,08/16/19 12:38,"43 12th St, Dallas, TX 75001" -246593,Lightning Charging Cable,1,14.95,08/01/19 12:28,"755 Willow St, San Francisco, CA 94016" -246594,34in Ultrawide Monitor,1,379.99,08/26/19 16:26,"669 8th St, Dallas, TX 75001" -246595,AAA Batteries (4-pack),1,2.99,08/29/19 10:44,"418 7th St, Atlanta, GA 30301" -246596,Lightning Charging Cable,1,14.95,08/25/19 18:24,"207 Maple St, Seattle, WA 98101" -246597,Lightning Charging Cable,1,14.95,08/01/19 22:32,"835 Church St, San Francisco, CA 94016" -246598,27in FHD Monitor,1,149.99,08/08/19 00:34,"778 Park St, Los Angeles, CA 90001" -246599,AA Batteries (4-pack),1,3.84,08/13/19 07:39,"971 Jefferson St, Boston, MA 02215" -246600,27in 4K Gaming Monitor,1,389.99,08/31/19 20:51,"376 Madison St, Atlanta, GA 30301" -246601,USB-C Charging Cable,1,11.95,08/20/19 17:35,"220 Dogwood St, Los Angeles, CA 90001" -246602,34in Ultrawide Monitor,1,379.99,08/01/19 14:05,"490 Sunset St, Seattle, WA 98101" -246602,34in Ultrawide Monitor,1,379.99,08/01/19 14:05,"490 Sunset St, Seattle, WA 98101" -246603,AAA Batteries (4-pack),2,2.99,08/27/19 12:29,"440 1st St, Los Angeles, CA 90001" -246604,iPhone,1,700,08/26/19 12:15,"100 Spruce St, Atlanta, GA 30301" -246604,Lightning Charging Cable,1,14.95,08/26/19 12:15,"100 Spruce St, Atlanta, GA 30301" -246605,Lightning Charging Cable,1,14.95,08/05/19 10:10,"802 7th St, Boston, MA 02215" -246606,Vareebadd Phone,1,400,08/29/19 23:34,"964 Lakeview St, Boston, MA 02215" -246607,Flatscreen TV,1,300,08/01/19 18:57,"159 Meadow St, Boston, MA 02215" -246608,iPhone,1,700,08/10/19 06:02,"295 Cherry St, New York City, NY 10001" -246609,USB-C Charging Cable,1,11.95,08/19/19 14:01,"315 Johnson St, New York City, NY 10001" -246610,AAA Batteries (4-pack),2,2.99,08/12/19 11:21,"687 Cherry St, San Francisco, CA 94016" -246611,Wired Headphones,1,11.99,08/09/19 19:39,"521 10th St, San Francisco, CA 94016" -246612,USB-C Charging Cable,2,11.95,08/14/19 16:58,"552 Madison St, Atlanta, GA 30301" -246613,Lightning Charging Cable,1,14.95,08/11/19 18:34,"812 Maple St, San Francisco, CA 94016" -246614,Lightning Charging Cable,1,14.95,08/11/19 19:18,"339 Center St, San Francisco, CA 94016" -246615,Vareebadd Phone,1,400,08/25/19 12:25,"129 Hill St, Austin, TX 73301" -246616,USB-C Charging Cable,1,11.95,08/19/19 11:31,"199 Hill St, Boston, MA 02215" -246617,Lightning Charging Cable,1,14.95,08/19/19 21:30,"611 Johnson St, Dallas, TX 75001" -246618,AAA Batteries (4-pack),1,2.99,08/04/19 23:52,"494 7th St, Atlanta, GA 30301" -246619,Macbook Pro Laptop,1,1700,08/15/19 08:00,"890 West St, Boston, MA 02215" -246620,27in FHD Monitor,1,149.99,08/20/19 14:31,"962 10th St, Dallas, TX 75001" -246621,Apple Airpods Headphones,1,150,08/21/19 13:06,"273 6th St, Boston, MA 02215" -246622,AA Batteries (4-pack),1,3.84,08/22/19 16:30,"552 Park St, Seattle, WA 98101" -246623,27in 4K Gaming Monitor,1,389.99,08/05/19 02:02,"914 South St, Seattle, WA 98101" -246624,iPhone,1,700,08/07/19 14:46,"188 South St, San Francisco, CA 94016" -246625,AA Batteries (4-pack),1,3.84,08/25/19 16:54,"850 Washington St, Seattle, WA 98101" -246626,AA Batteries (4-pack),1,3.84,08/16/19 09:00,"126 North St, New York City, NY 10001" -246627,Bose SoundSport Headphones,1,99.99,08/22/19 10:51,"170 4th St, Boston, MA 02215" -246628,Wired Headphones,1,11.99,08/22/19 11:25,"557 Sunset St, Seattle, WA 98101" -246629,AAA Batteries (4-pack),1,2.99,08/07/19 01:35,"876 Wilson St, New York City, NY 10001" -246630,AA Batteries (4-pack),1,3.84,08/04/19 20:04,"763 Jackson St, Los Angeles, CA 90001" -246631,Vareebadd Phone,1,400,08/24/19 15:38,"468 Meadow St, San Francisco, CA 94016" -246632,Flatscreen TV,1,300,08/01/19 21:29,"674 Wilson St, Austin, TX 73301" -246633,USB-C Charging Cable,1,11.95,08/28/19 21:34,"273 5th St, New York City, NY 10001" -246634,27in FHD Monitor,1,149.99,08/05/19 15:19,"910 Pine St, New York City, NY 10001" -246635,Apple Airpods Headphones,1,150,08/18/19 20:42,"497 Cedar St, Los Angeles, CA 90001" -246636,Google Phone,1,600,08/07/19 01:09,"930 Elm St, Los Angeles, CA 90001" -246636,Wired Headphones,1,11.99,08/07/19 01:09,"930 Elm St, Los Angeles, CA 90001" -246637,Lightning Charging Cable,1,14.95,08/09/19 20:43,"696 Meadow St, Los Angeles, CA 90001" -246637,Flatscreen TV,1,300,08/09/19 20:43,"696 Meadow St, Los Angeles, CA 90001" -246638,Macbook Pro Laptop,1,1700,08/05/19 20:24,"640 Sunset St, Boston, MA 02215" -246639,USB-C Charging Cable,1,11.95,08/21/19 17:56,"344 12th St, Boston, MA 02215" -246640,Apple Airpods Headphones,1,150,08/21/19 10:30,"765 Pine St, San Francisco, CA 94016" -246641,20in Monitor,2,109.99,08/22/19 13:44,"785 Lakeview St, San Francisco, CA 94016" -246642,AA Batteries (4-pack),1,3.84,08/15/19 22:30,"768 1st St, New York City, NY 10001" -246643,Google Phone,1,600,08/05/19 16:51,"914 6th St, Austin, TX 73301" -246644,USB-C Charging Cable,1,11.95,08/05/19 18:45,"480 Maple St, New York City, NY 10001" -246645,20in Monitor,1,109.99,08/31/19 18:22,"388 10th St, Atlanta, GA 30301" -246646,Macbook Pro Laptop,1,1700,08/14/19 17:26,"807 Walnut St, Los Angeles, CA 90001" -246647,Macbook Pro Laptop,1,1700,08/17/19 21:12,"865 Dogwood St, San Francisco, CA 94016" -246648,Macbook Pro Laptop,1,1700,08/22/19 21:48,"76 Wilson St, Los Angeles, CA 90001" -246649,ThinkPad Laptop,1,999.99,08/12/19 00:10,"901 Park St, San Francisco, CA 94016" -246650,20in Monitor,1,109.99,08/04/19 00:32,"797 Madison St, San Francisco, CA 94016" -246651,Wired Headphones,1,11.99,08/04/19 20:43,"272 Washington St, New York City, NY 10001" -246652,Bose SoundSport Headphones,1,99.99,08/29/19 12:41,"118 Forest St, Los Angeles, CA 90001" -246653,iPhone,1,700,08/10/19 12:58,"633 Lakeview St, San Francisco, CA 94016" -246654,AA Batteries (4-pack),2,3.84,08/30/19 00:15,"975 5th St, Dallas, TX 75001" -246655,iPhone,1,700,08/18/19 17:56,"636 Main St, Seattle, WA 98101" -246655,Lightning Charging Cable,1,14.95,08/18/19 17:56,"636 Main St, Seattle, WA 98101" -246656,iPhone,1,700,08/10/19 18:20,"245 11th St, Los Angeles, CA 90001" -246656,Lightning Charging Cable,1,14.95,08/10/19 18:20,"245 11th St, Los Angeles, CA 90001" -246656,Apple Airpods Headphones,1,150,08/10/19 18:20,"245 11th St, Los Angeles, CA 90001" -246657,Lightning Charging Cable,1,14.95,08/16/19 16:06,"258 Forest St, Boston, MA 02215" -246658,AA Batteries (4-pack),1,3.84,08/18/19 19:00,"523 Center St, San Francisco, CA 94016" -246659,Google Phone,1,600,08/03/19 18:30,"237 Main St, New York City, NY 10001" -246660,AAA Batteries (4-pack),1,2.99,08/11/19 09:35,"991 Dogwood St, Los Angeles, CA 90001" -246661,AA Batteries (4-pack),2,3.84,08/01/19 12:57,"561 Sunset St, Portland, ME 04101" -246662,Wired Headphones,1,11.99,08/28/19 15:55,"577 Jefferson St, Dallas, TX 75001" -246663,AAA Batteries (4-pack),1,2.99,08/11/19 22:35,"490 Lincoln St, Atlanta, GA 30301" -246664,Lightning Charging Cable,1,14.95,08/21/19 18:04,"734 Main St, San Francisco, CA 94016" -246665,AA Batteries (4-pack),1,3.84,08/11/19 16:49,"744 11th St, New York City, NY 10001" -246666,Flatscreen TV,1,300,08/03/19 07:46,"226 South St, Atlanta, GA 30301" -246667,AA Batteries (4-pack),1,3.84,08/09/19 11:54,"124 Lincoln St, Atlanta, GA 30301" -246668,AAA Batteries (4-pack),1,2.99,08/03/19 17:40,"804 2nd St, San Francisco, CA 94016" -246669,Bose SoundSport Headphones,1,99.99,08/29/19 00:21,"281 10th St, San Francisco, CA 94016" -246670,Lightning Charging Cable,1,14.95,08/12/19 11:22,"602 Adams St, San Francisco, CA 94016" -246671,Macbook Pro Laptop,1,1700,08/23/19 11:13,"457 Cedar St, Dallas, TX 75001" -246672,27in FHD Monitor,1,149.99,08/16/19 13:27,"797 Wilson St, Boston, MA 02215" -246673,USB-C Charging Cable,1,11.95,08/29/19 17:20,"292 Lakeview St, New York City, NY 10001" -246674,Vareebadd Phone,1,400,08/17/19 06:37,"405 Hickory St, San Francisco, CA 94016" -246675,AA Batteries (4-pack),2,3.84,08/25/19 09:35,"1 Center St, Austin, TX 73301" -246676,USB-C Charging Cable,1,11.95,08/29/19 17:47,"882 Adams St, Atlanta, GA 30301" -246677,AA Batteries (4-pack),1,3.84,08/18/19 21:19,"700 Cherry St, Portland, OR 97035" -246678,AAA Batteries (4-pack),1,2.99,08/22/19 14:14,"579 7th St, Atlanta, GA 30301" -246679,Wired Headphones,1,11.99,08/26/19 15:32,"112 Madison St, Los Angeles, CA 90001" -246680,USB-C Charging Cable,1,11.95,08/29/19 12:41,"650 Main St, Dallas, TX 75001" -246681,Google Phone,1,600,08/17/19 11:17,"754 Church St, Dallas, TX 75001" -246682,AAA Batteries (4-pack),1,2.99,08/26/19 17:21,"181 Main St, Boston, MA 02215" -246683,AAA Batteries (4-pack),1,2.99,08/21/19 21:51,"895 12th St, Austin, TX 73301" -246684,USB-C Charging Cable,1,11.95,08/02/19 15:00,"108 Cedar St, San Francisco, CA 94016" -246685,Wired Headphones,1,11.99,08/02/19 15:38,"233 North St, San Francisco, CA 94016" -246686,AA Batteries (4-pack),1,3.84,08/16/19 10:58,"693 5th St, New York City, NY 10001" -246687,34in Ultrawide Monitor,1,379.99,08/28/19 11:39,"667 2nd St, Los Angeles, CA 90001" -246688,AA Batteries (4-pack),1,3.84,08/12/19 08:36,"731 Jefferson St, Seattle, WA 98101" -246689,Wired Headphones,1,11.99,08/30/19 17:56,"290 Johnson St, Portland, OR 97035" -246690,ThinkPad Laptop,1,999.99,08/04/19 15:22,"685 Wilson St, Atlanta, GA 30301" -246691,USB-C Charging Cable,1,11.95,08/03/19 18:30,"672 Elm St, New York City, NY 10001" -246692,AA Batteries (4-pack),1,3.84,08/04/19 03:05,"704 Jackson St, Seattle, WA 98101" -246693,34in Ultrawide Monitor,1,379.99,08/12/19 08:39,"114 Washington St, New York City, NY 10001" -246694,AA Batteries (4-pack),2,3.84,08/15/19 20:52,"434 Washington St, Boston, MA 02215" -246695,Macbook Pro Laptop,1,1700,08/08/19 17:40,"684 Cedar St, New York City, NY 10001" -246696,AAA Batteries (4-pack),2,2.99,08/19/19 14:33,"932 Walnut St, Atlanta, GA 30301" -246697,USB-C Charging Cable,1,11.95,08/13/19 19:52,"425 10th St, San Francisco, CA 94016" -246698,27in FHD Monitor,1,149.99,08/30/19 23:13,"13 Ridge St, Atlanta, GA 30301" -246699,AA Batteries (4-pack),1,3.84,08/03/19 21:26,"450 6th St, New York City, NY 10001" -246700,27in 4K Gaming Monitor,1,389.99,08/03/19 15:15,"479 7th St, Los Angeles, CA 90001" -246701,Bose SoundSport Headphones,1,99.99,08/04/19 16:16,"815 Cedar St, Dallas, TX 75001" -246702,AA Batteries (4-pack),2,3.84,08/06/19 22:54,"743 Madison St, Austin, TX 73301" -246703,AA Batteries (4-pack),2,3.84,08/03/19 20:08,"943 Elm St, Portland, OR 97035" -246704,AA Batteries (4-pack),1,3.84,08/18/19 21:09,"986 South St, Atlanta, GA 30301" -246705,AA Batteries (4-pack),2,3.84,08/05/19 11:52,"200 Ridge St, New York City, NY 10001" -246706,AA Batteries (4-pack),2,3.84,08/15/19 20:48,"762 Meadow St, Seattle, WA 98101" -246707,AAA Batteries (4-pack),1,2.99,08/05/19 21:27,"600 10th St, New York City, NY 10001" -246708,AAA Batteries (4-pack),1,2.99,08/17/19 10:54,"240 Meadow St, New York City, NY 10001" -246709,34in Ultrawide Monitor,1,379.99,08/13/19 22:47,"459 Dogwood St, Dallas, TX 75001" -246710,20in Monitor,1,109.99,08/21/19 23:19,"879 Lake St, New York City, NY 10001" -246711,Vareebadd Phone,1,400,08/27/19 12:13,"36 Forest St, San Francisco, CA 94016" -246712,Apple Airpods Headphones,1,150,08/27/19 18:23,"464 Ridge St, Dallas, TX 75001" -246713,ThinkPad Laptop,1,999.99,08/08/19 14:00,"178 Hickory St, Austin, TX 73301" -,,,,, -246714,AA Batteries (4-pack),1,3.84,08/30/19 15:23,"814 Lincoln St, Boston, MA 02215" -246715,AA Batteries (4-pack),1,3.84,08/22/19 18:29,"787 8th St, Seattle, WA 98101" -246715,34in Ultrawide Monitor,1,379.99,08/22/19 18:29,"787 8th St, Seattle, WA 98101" -246716,Lightning Charging Cable,1,14.95,08/26/19 10:00,"562 West St, San Francisco, CA 94016" -246717,Apple Airpods Headphones,1,150,08/27/19 16:54,"86 Maple St, New York City, NY 10001" -246718,AAA Batteries (4-pack),1,2.99,08/26/19 15:24,"940 11th St, Austin, TX 73301" -246719,AA Batteries (4-pack),1,3.84,08/03/19 21:45,"810 Willow St, Atlanta, GA 30301" -246720,AA Batteries (4-pack),1,3.84,08/25/19 16:50,"517 Hickory St, Seattle, WA 98101" -246721,Lightning Charging Cable,1,14.95,08/23/19 22:36,"456 5th St, Portland, OR 97035" -246722,27in FHD Monitor,1,149.99,08/09/19 21:52,"573 Pine St, Atlanta, GA 30301" -246723,27in 4K Gaming Monitor,1,389.99,08/08/19 19:22,"715 Lakeview St, Atlanta, GA 30301" -246724,Vareebadd Phone,1,400,08/16/19 08:37,"11 Jefferson St, Los Angeles, CA 90001" -246724,AA Batteries (4-pack),1,3.84,08/16/19 08:37,"11 Jefferson St, Los Angeles, CA 90001" -246725,Lightning Charging Cable,1,14.95,08/17/19 03:07,"444 Cedar St, Austin, TX 73301" -246726,34in Ultrawide Monitor,1,379.99,08/28/19 12:06,"819 Center St, Austin, TX 73301" -246727,Macbook Pro Laptop,1,1700,08/30/19 09:14,"314 13th St, Portland, ME 04101" -246728,27in FHD Monitor,1,149.99,08/09/19 14:14,"439 14th St, Atlanta, GA 30301" -246729,AAA Batteries (4-pack),2,2.99,08/12/19 09:24,"626 Johnson St, Atlanta, GA 30301" -246730,Bose SoundSport Headphones,1,99.99,08/24/19 13:56,"645 13th St, Seattle, WA 98101" -246731,AAA Batteries (4-pack),1,2.99,08/08/19 07:38,"701 Main St, Dallas, TX 75001" -246732,Lightning Charging Cable,1,14.95,08/31/19 18:33,"849 Pine St, San Francisco, CA 94016" -246733,AA Batteries (4-pack),1,3.84,08/22/19 09:40,"695 Forest St, New York City, NY 10001" -246734,Wired Headphones,1,11.99,08/26/19 11:24,"411 Wilson St, New York City, NY 10001" -246735,ThinkPad Laptop,1,999.99,08/24/19 21:23,"253 12th St, Portland, OR 97035" -246736,27in 4K Gaming Monitor,1,389.99,08/03/19 20:04,"574 9th St, Los Angeles, CA 90001" -246737,AA Batteries (4-pack),1,3.84,08/22/19 18:59,"299 Spruce St, Atlanta, GA 30301" -246738,AA Batteries (4-pack),1,3.84,08/01/19 16:51,"613 Maple St, New York City, NY 10001" -246739,27in 4K Gaming Monitor,1,389.99,08/12/19 19:06,"569 Main St, San Francisco, CA 94016" -246740,Macbook Pro Laptop,1,1700,08/10/19 16:52,"951 1st St, Austin, TX 73301" -246741,Lightning Charging Cable,1,14.95,08/04/19 21:40,"694 1st St, Boston, MA 02215" -246742,Lightning Charging Cable,1,14.95,08/18/19 16:47,"642 River St, Seattle, WA 98101" -246743,USB-C Charging Cable,2,11.95,08/02/19 14:37,"224 Lincoln St, San Francisco, CA 94016" -246744,Macbook Pro Laptop,1,1700,08/12/19 12:42,"381 Forest St, New York City, NY 10001" -246745,Bose SoundSport Headphones,1,99.99,08/31/19 14:20,"169 4th St, Boston, MA 02215" -246746,AA Batteries (4-pack),1,3.84,08/21/19 09:14,"534 Spruce St, New York City, NY 10001" -246747,AAA Batteries (4-pack),1,2.99,08/19/19 18:01,"894 Wilson St, Boston, MA 02215" -246748,20in Monitor,1,109.99,08/02/19 13:07,"701 Chestnut St, Austin, TX 73301" -246749,Apple Airpods Headphones,1,150,08/13/19 12:54,"895 Lakeview St, Dallas, TX 75001" -246750,Flatscreen TV,1,300,08/28/19 18:03,"669 Center St, Los Angeles, CA 90001" -246751,AA Batteries (4-pack),1,3.84,08/22/19 21:03,"836 1st St, New York City, NY 10001" -246752,Wired Headphones,1,11.99,08/20/19 21:21,"74 Adams St, New York City, NY 10001" -246753,Apple Airpods Headphones,1,150,08/10/19 17:56,"270 Sunset St, San Francisco, CA 94016" -246754,Lightning Charging Cable,1,14.95,08/20/19 08:55,"9 2nd St, New York City, NY 10001" -246755,Lightning Charging Cable,1,14.95,08/05/19 09:28,"649 Hill St, Seattle, WA 98101" -246756,AA Batteries (4-pack),2,3.84,08/11/19 16:02,"95 6th St, San Francisco, CA 94016" -246757,AAA Batteries (4-pack),1,2.99,08/22/19 19:30,"808 Jackson St, Los Angeles, CA 90001" -246758,Bose SoundSport Headphones,1,99.99,08/24/19 15:31,"988 10th St, Los Angeles, CA 90001" -246759,Flatscreen TV,1,300,08/12/19 12:06,"109 9th St, New York City, NY 10001" -246759,iPhone,1,700,08/12/19 12:06,"109 9th St, New York City, NY 10001" -246760,Lightning Charging Cable,1,14.95,08/22/19 13:53,"417 Meadow St, Los Angeles, CA 90001" -246761,AAA Batteries (4-pack),2,2.99,08/27/19 08:26,"276 South St, Seattle, WA 98101" -246762,AA Batteries (4-pack),3,3.84,08/13/19 11:38,"267 Forest St, Atlanta, GA 30301" -246763,AAA Batteries (4-pack),1,2.99,08/19/19 08:26,"967 Hickory St, Boston, MA 02215" -246764,AA Batteries (4-pack),1,3.84,08/05/19 16:02,"847 Church St, Boston, MA 02215" -246765,Macbook Pro Laptop,1,1700,08/15/19 19:53,"951 Lincoln St, New York City, NY 10001" -246766,AA Batteries (4-pack),1,3.84,08/15/19 17:16,"435 Wilson St, Los Angeles, CA 90001" -246767,USB-C Charging Cable,1,11.95,08/26/19 11:15,"157 South St, Seattle, WA 98101" -246768,Lightning Charging Cable,1,14.95,08/26/19 22:48,"597 13th St, Dallas, TX 75001" -246769,iPhone,1,700,08/09/19 12:23,"946 Park St, San Francisco, CA 94016" -246770,Google Phone,1,600,08/07/19 16:31,"320 Cedar St, San Francisco, CA 94016" -246771,Google Phone,1,600,08/17/19 17:56,"60 Center St, Seattle, WA 98101" -246772,USB-C Charging Cable,1,11.95,08/19/19 08:46,"47 4th St, Austin, TX 73301" -246773,USB-C Charging Cable,1,11.95,08/29/19 15:43,"612 Willow St, Los Angeles, CA 90001" -246774,AA Batteries (4-pack),1,3.84,08/05/19 15:52,"84 Jackson St, Boston, MA 02215" -246775,27in 4K Gaming Monitor,1,389.99,08/29/19 15:32,"431 Forest St, Atlanta, GA 30301" -246776,USB-C Charging Cable,1,11.95,08/16/19 21:36,"800 6th St, Atlanta, GA 30301" -246777,AA Batteries (4-pack),2,3.84,08/14/19 12:40,"647 Sunset St, New York City, NY 10001" -246778,Flatscreen TV,1,300,08/18/19 23:29,"987 14th St, San Francisco, CA 94016" -246779,Lightning Charging Cable,1,14.95,08/17/19 12:45,"527 Lakeview St, Dallas, TX 75001" -246780,34in Ultrawide Monitor,1,379.99,08/22/19 20:44,"453 Park St, San Francisco, CA 94016" -246781,Lightning Charging Cable,1,14.95,08/14/19 13:22,"486 8th St, Seattle, WA 98101" -246782,Wired Headphones,1,11.99,08/10/19 18:47,"398 West St, San Francisco, CA 94016" -246783,27in 4K Gaming Monitor,1,389.99,08/17/19 08:14,"812 Jefferson St, Austin, TX 73301" -246783,ThinkPad Laptop,1,999.99,08/17/19 08:14,"812 Jefferson St, Austin, TX 73301" -246784,Bose SoundSport Headphones,1,99.99,08/17/19 08:51,"894 Chestnut St, San Francisco, CA 94016" -246785,AA Batteries (4-pack),1,3.84,08/05/19 23:19,"610 Elm St, Boston, MA 02215" -246786,20in Monitor,1,109.99,08/28/19 20:00,"85 9th St, Los Angeles, CA 90001" -246787,Lightning Charging Cable,1,14.95,08/02/19 13:16,"501 10th St, Portland, OR 97035" -246788,Flatscreen TV,1,300,08/19/19 12:35,"379 Church St, San Francisco, CA 94016" -246789,iPhone,1,700,08/08/19 17:32,"518 8th St, San Francisco, CA 94016" -246790,27in FHD Monitor,1,149.99,08/30/19 00:26,"988 Center St, Los Angeles, CA 90001" -246791,Lightning Charging Cable,1,14.95,08/19/19 19:43,"930 1st St, Atlanta, GA 30301" -246792,AA Batteries (4-pack),2,3.84,08/11/19 12:10,"188 Spruce St, Seattle, WA 98101" -246793,Flatscreen TV,1,300,08/10/19 06:36,"97 Highland St, Seattle, WA 98101" -246794,27in 4K Gaming Monitor,1,389.99,08/02/19 22:44,"405 4th St, Austin, TX 73301" -246795,Lightning Charging Cable,1,14.95,08/25/19 11:48,"633 Meadow St, New York City, NY 10001" -246796,Apple Airpods Headphones,1,150,08/31/19 10:52,"555 Hickory St, Atlanta, GA 30301" -246797,Vareebadd Phone,1,400,08/25/19 21:21,"55 Lake St, Austin, TX 73301" -246797,USB-C Charging Cable,1,11.95,08/25/19 21:21,"55 Lake St, Austin, TX 73301" -246798,Apple Airpods Headphones,1,150,08/13/19 19:02,"631 6th St, Austin, TX 73301" -246799,34in Ultrawide Monitor,1,379.99,08/07/19 00:21,"972 11th St, New York City, NY 10001" -246800,Flatscreen TV,1,300,08/09/19 22:38,"969 Cedar St, Portland, OR 97035" -246801,AAA Batteries (4-pack),1,2.99,08/18/19 08:19,"971 Johnson St, Dallas, TX 75001" -246802,AA Batteries (4-pack),1,3.84,08/04/19 01:34,"499 14th St, San Francisco, CA 94016" -246803,Apple Airpods Headphones,1,150,08/07/19 12:37,"590 South St, San Francisco, CA 94016" -246804,AAA Batteries (4-pack),1,2.99,08/24/19 12:34,"659 Pine St, New York City, NY 10001" -246805,Google Phone,1,600,08/27/19 19:47,"693 Park St, Boston, MA 02215" -246806,Bose SoundSport Headphones,1,99.99,08/11/19 21:05,"934 6th St, Boston, MA 02215" -246807,AAA Batteries (4-pack),1,2.99,08/20/19 11:20,"7 Walnut St, Portland, OR 97035" -246808,USB-C Charging Cable,1,11.95,08/25/19 21:44,"842 South St, San Francisco, CA 94016" -246809,AA Batteries (4-pack),2,3.84,08/18/19 17:51,"591 River St, Boston, MA 02215" -246810,Google Phone,1,600,08/05/19 11:46,"988 9th St, San Francisco, CA 94016" -246811,AA Batteries (4-pack),1,3.84,08/31/19 07:37,"782 North St, Los Angeles, CA 90001" -246812,AA Batteries (4-pack),2,3.84,08/31/19 00:09,"200 10th St, Boston, MA 02215" -246813,Wired Headphones,1,11.99,08/28/19 09:13,"854 10th St, Portland, OR 97035" -246814,Lightning Charging Cable,1,14.95,08/24/19 18:35,"495 Hickory St, New York City, NY 10001" -246815,20in Monitor,1,109.99,08/06/19 22:39,"999 2nd St, Austin, TX 73301" -246816,Wired Headphones,1,11.99,08/11/19 00:29,"474 1st St, Atlanta, GA 30301" -246817,20in Monitor,1,109.99,08/17/19 23:17,"643 Park St, Seattle, WA 98101" -246818,Apple Airpods Headphones,1,150,08/04/19 14:10,"349 Johnson St, Los Angeles, CA 90001" -246819,USB-C Charging Cable,1,11.95,08/17/19 20:02,"116 11th St, Atlanta, GA 30301" -246820,Flatscreen TV,1,300,08/13/19 21:41,"468 Sunset St, Boston, MA 02215" -246821,Google Phone,1,600,08/09/19 09:46,"509 Dogwood St, Los Angeles, CA 90001" -246821,USB-C Charging Cable,1,11.95,08/09/19 09:46,"509 Dogwood St, Los Angeles, CA 90001" -246822,34in Ultrawide Monitor,1,379.99,08/20/19 10:41,"625 Main St, New York City, NY 10001" -246823,iPhone,1,700,08/12/19 15:43,"862 North St, San Francisco, CA 94016" -246824,AAA Batteries (4-pack),1,2.99,08/26/19 17:09,"295 Dogwood St, Atlanta, GA 30301" -246825,Flatscreen TV,1,300,08/22/19 19:05,"885 7th St, Los Angeles, CA 90001" -246826,27in FHD Monitor,1,149.99,08/12/19 11:13,"927 Lake St, Los Angeles, CA 90001" -246827,Wired Headphones,1,11.99,08/19/19 13:18,"527 Forest St, San Francisco, CA 94016" -246828,LG Dryer,1,600.0,08/23/19 20:55,"165 Lincoln St, Atlanta, GA 30301" -246829,Bose SoundSport Headphones,1,99.99,08/16/19 08:29,"40 7th St, Atlanta, GA 30301" -246830,Flatscreen TV,1,300,08/17/19 08:39,"525 1st St, Los Angeles, CA 90001" -246831,AAA Batteries (4-pack),1,2.99,08/09/19 22:01,"452 13th St, Boston, MA 02215" -246832,Apple Airpods Headphones,1,150,08/28/19 18:38,"115 Cedar St, Boston, MA 02215" -246833,Lightning Charging Cable,1,14.95,08/31/19 12:21,"661 Center St, Boston, MA 02215" -246834,Apple Airpods Headphones,1,150,08/02/19 19:34,"55 Washington St, Austin, TX 73301" -246835,27in 4K Gaming Monitor,1,389.99,08/20/19 01:57,"100 Elm St, New York City, NY 10001" -246836,iPhone,1,700,08/26/19 06:02,"415 River St, New York City, NY 10001" -246837,AA Batteries (4-pack),1,3.84,08/21/19 20:51,"455 Hill St, Dallas, TX 75001" -246838,AAA Batteries (4-pack),1,2.99,08/15/19 23:39,"977 North St, Atlanta, GA 30301" -246839,Lightning Charging Cable,1,14.95,08/19/19 16:09,"169 Cedar St, Boston, MA 02215" -246840,34in Ultrawide Monitor,1,379.99,08/15/19 20:41,"119 Madison St, New York City, NY 10001" -246841,USB-C Charging Cable,1,11.95,08/10/19 18:48,"67 7th St, New York City, NY 10001" -246842,Wired Headphones,1,11.99,08/20/19 16:54,"724 11th St, San Francisco, CA 94016" -246843,Bose SoundSport Headphones,1,99.99,08/24/19 17:16,"987 Jefferson St, San Francisco, CA 94016" -246844,AA Batteries (4-pack),2,3.84,08/10/19 23:16,"250 Walnut St, New York City, NY 10001" -246845,AAA Batteries (4-pack),1,2.99,08/21/19 16:08,"131 West St, San Francisco, CA 94016" -246846,AA Batteries (4-pack),1,3.84,08/30/19 19:21,"970 Center St, San Francisco, CA 94016" -246847,AA Batteries (4-pack),1,3.84,08/15/19 21:06,"494 South St, San Francisco, CA 94016" -246848,Bose SoundSport Headphones,2,99.99,08/10/19 18:03,"160 Pine St, New York City, NY 10001" -246849,Bose SoundSport Headphones,1,99.99,08/22/19 22:34,"594 West St, Seattle, WA 98101" -246850,27in FHD Monitor,1,149.99,08/05/19 13:40,"131 6th St, New York City, NY 10001" -246851,AA Batteries (4-pack),1,3.84,08/27/19 06:31,"453 8th St, Portland, OR 97035" -246852,Wired Headphones,1,11.99,08/03/19 20:07,"201 Meadow St, San Francisco, CA 94016" -246853,AA Batteries (4-pack),1,3.84,08/20/19 09:26,"309 Willow St, Dallas, TX 75001" -246854,Apple Airpods Headphones,1,150,08/17/19 19:04,"312 Hickory St, Seattle, WA 98101" -246855,Apple Airpods Headphones,1,150,08/26/19 19:08,"343 Spruce St, Seattle, WA 98101" -246856,34in Ultrawide Monitor,1,379.99,08/07/19 11:24,"691 Sunset St, Boston, MA 02215" -246857,AAA Batteries (4-pack),2,2.99,08/04/19 11:01,"942 Adams St, Atlanta, GA 30301" -246858,Apple Airpods Headphones,1,150,08/18/19 12:44,"881 11th St, Los Angeles, CA 90001" -246859,Apple Airpods Headphones,1,150,08/15/19 21:47,"124 Willow St, Atlanta, GA 30301" -246860,AAA Batteries (4-pack),3,2.99,08/29/19 12:40,"581 8th St, New York City, NY 10001" -246861,USB-C Charging Cable,1,11.95,08/06/19 17:53,"220 Jackson St, Atlanta, GA 30301" -246862,Apple Airpods Headphones,1,150,08/24/19 10:47,"8 Hill St, Atlanta, GA 30301" -246863,ThinkPad Laptop,1,999.99,08/25/19 17:39,"582 Sunset St, Dallas, TX 75001" -246864,27in FHD Monitor,1,149.99,08/23/19 16:53,"632 Jefferson St, San Francisco, CA 94016" -246865,Wired Headphones,1,11.99,08/16/19 10:13,"314 Ridge St, San Francisco, CA 94016" -246866,27in FHD Monitor,1,149.99,08/10/19 21:30,"635 Park St, Portland, ME 04101" -246867,AA Batteries (4-pack),1,3.84,08/13/19 15:29,"397 1st St, Seattle, WA 98101" -246868,Apple Airpods Headphones,1,150,08/04/19 12:31,"993 Highland St, New York City, NY 10001" -246869,AA Batteries (4-pack),1,3.84,08/06/19 20:55,"614 8th St, Seattle, WA 98101" -246870,20in Monitor,1,109.99,08/13/19 08:22,"723 Willow St, Seattle, WA 98101" -246871,Apple Airpods Headphones,1,150,08/29/19 16:02,"488 11th St, Austin, TX 73301" -246872,27in FHD Monitor,1,149.99,08/04/19 15:16,"19 10th St, New York City, NY 10001" -246873,iPhone,1,700,08/02/19 19:31,"709 10th St, Atlanta, GA 30301" -246874,Lightning Charging Cable,1,14.95,08/06/19 22:11,"782 Willow St, Dallas, TX 75001" -246875,iPhone,1,700,08/04/19 08:27,"681 7th St, Los Angeles, CA 90001" -246876,Bose SoundSport Headphones,1,99.99,08/16/19 10:45,"744 Center St, Austin, TX 73301" -246877,Wired Headphones,1,11.99,08/04/19 23:54,"257 Dogwood St, New York City, NY 10001" -246878,Apple Airpods Headphones,1,150,08/08/19 08:44,"904 Meadow St, Portland, OR 97035" -246879,20in Monitor,1,109.99,08/06/19 07:28,"549 Cedar St, Atlanta, GA 30301" -246880,Lightning Charging Cable,1,14.95,08/01/19 10:53,"958 Madison St, Boston, MA 02215" -246881,USB-C Charging Cable,1,11.95,08/29/19 08:55,"515 7th St, Austin, TX 73301" -246882,Lightning Charging Cable,1,14.95,08/23/19 17:09,"744 Cedar St, Los Angeles, CA 90001" -246883,27in FHD Monitor,1,149.99,08/22/19 13:49,"262 6th St, Los Angeles, CA 90001" -246884,USB-C Charging Cable,1,11.95,08/10/19 15:08,"928 Church St, Dallas, TX 75001" -246885,USB-C Charging Cable,1,11.95,09/01/19 04:45,"275 Adams St, Portland, OR 97035" -246886,Google Phone,1,600,08/17/19 13:20,"788 Lake St, Portland, OR 97035" -246887,USB-C Charging Cable,1,11.95,08/10/19 16:09,"856 Spruce St, Portland, ME 04101" -246888,ThinkPad Laptop,1,999.99,08/28/19 06:30,"865 Church St, San Francisco, CA 94016" -246889,AA Batteries (4-pack),1,3.84,08/18/19 15:11,"929 1st St, New York City, NY 10001" -246890,AA Batteries (4-pack),1,3.84,08/19/19 15:09,"518 Hill St, Boston, MA 02215" -246891,27in 4K Gaming Monitor,1,389.99,08/24/19 18:07,"648 12th St, Seattle, WA 98101" -246892,USB-C Charging Cable,1,11.95,08/17/19 00:54,"740 1st St, San Francisco, CA 94016" -246893,Bose SoundSport Headphones,1,99.99,08/17/19 12:31,"979 Jackson St, Atlanta, GA 30301" -246894,AAA Batteries (4-pack),1,2.99,08/09/19 09:02,"991 West St, Los Angeles, CA 90001" -246895,USB-C Charging Cable,2,11.95,08/10/19 10:15,"271 Wilson St, Portland, OR 97035" -246896,AA Batteries (4-pack),1,3.84,08/19/19 00:56,"720 11th St, San Francisco, CA 94016" -246897,27in FHD Monitor,1,149.99,08/18/19 23:22,"563 1st St, Portland, OR 97035" -246898,USB-C Charging Cable,1,11.95,08/05/19 13:36,"851 14th St, Boston, MA 02215" -246899,USB-C Charging Cable,1,11.95,08/19/19 11:23,"988 Adams St, Portland, OR 97035" -246900,Lightning Charging Cable,1,14.95,08/04/19 21:03,"702 Washington St, Dallas, TX 75001" -246901,Flatscreen TV,1,300,08/31/19 12:23,"919 Ridge St, San Francisco, CA 94016" -246902,Apple Airpods Headphones,1,150,08/03/19 13:42,"537 4th St, Austin, TX 73301" -246903,USB-C Charging Cable,1,11.95,08/21/19 11:15,"999 14th St, Los Angeles, CA 90001" -246904,Wired Headphones,1,11.99,08/20/19 23:41,"841 Spruce St, Dallas, TX 75001" -246905,AAA Batteries (4-pack),1,2.99,08/11/19 18:57,"10 Jefferson St, Portland, OR 97035" -246906,USB-C Charging Cable,1,11.95,08/31/19 13:47,"524 Cherry St, Boston, MA 02215" -246907,AA Batteries (4-pack),1,3.84,08/27/19 23:48,"273 Ridge St, Los Angeles, CA 90001" -246908,Apple Airpods Headphones,1,150,08/05/19 11:51,"144 Willow St, Dallas, TX 75001" -246909,AA Batteries (4-pack),1,3.84,08/14/19 10:07,"935 Jackson St, San Francisco, CA 94016" -246910,AA Batteries (4-pack),1,3.84,08/29/19 11:41,"805 Chestnut St, Dallas, TX 75001" -246911,AA Batteries (4-pack),1,3.84,08/06/19 15:22,"933 Madison St, San Francisco, CA 94016" -246912,Wired Headphones,1,11.99,08/22/19 20:47,"324 5th St, Seattle, WA 98101" -246913,AA Batteries (4-pack),1,3.84,08/02/19 13:09,"81 Lake St, Portland, OR 97035" -246914,AAA Batteries (4-pack),1,2.99,08/16/19 14:06,"497 12th St, New York City, NY 10001" -246915,AA Batteries (4-pack),1,3.84,08/18/19 17:01,"271 4th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -246916,Lightning Charging Cable,1,14.95,08/24/19 15:33,"455 Elm St, San Francisco, CA 94016" -246917,20in Monitor,1,109.99,08/30/19 12:09,"228 10th St, Los Angeles, CA 90001" -246918,iPhone,1,700,08/26/19 19:34,"567 Dogwood St, New York City, NY 10001" -246919,Lightning Charging Cable,1,14.95,08/02/19 16:08,"425 Lakeview St, Boston, MA 02215" -246920,Wired Headphones,1,11.99,08/28/19 10:06,"896 Cedar St, New York City, NY 10001" -246921,Flatscreen TV,1,300,08/10/19 17:59,"989 6th St, San Francisco, CA 94016" -246922,Apple Airpods Headphones,1,150,08/25/19 15:04,"776 Forest St, Atlanta, GA 30301" -246923,Macbook Pro Laptop,1,1700,08/30/19 07:29,"793 6th St, Atlanta, GA 30301" -,,,,, -246924,USB-C Charging Cable,1,11.95,08/22/19 10:46,"994 Madison St, Dallas, TX 75001" -246925,Lightning Charging Cable,1,14.95,08/19/19 12:08,"833 Cherry St, Atlanta, GA 30301" -246926,27in FHD Monitor,1,149.99,08/15/19 20:04,"101 Lakeview St, San Francisco, CA 94016" -246927,20in Monitor,1,109.99,08/04/19 18:38,"715 Cedar St, New York City, NY 10001" -246928,27in 4K Gaming Monitor,1,389.99,08/18/19 22:15,"771 Walnut St, San Francisco, CA 94016" -246929,Lightning Charging Cable,1,14.95,08/25/19 22:58,"232 Washington St, Los Angeles, CA 90001" -246930,27in 4K Gaming Monitor,1,389.99,08/19/19 18:57,"244 Center St, Atlanta, GA 30301" -246931,AAA Batteries (4-pack),1,2.99,08/10/19 23:11,"326 Park St, Seattle, WA 98101" -246932,Wired Headphones,1,11.99,08/18/19 22:03,"331 2nd St, New York City, NY 10001" -246933,Apple Airpods Headphones,1,150,08/06/19 21:25,"728 9th St, San Francisco, CA 94016" -246934,Lightning Charging Cable,1,14.95,08/23/19 08:10,"802 Walnut St, Austin, TX 73301" -246935,27in FHD Monitor,1,149.99,08/14/19 05:15,"661 River St, Atlanta, GA 30301" -246936,USB-C Charging Cable,1,11.95,08/30/19 19:33,"573 Johnson St, Boston, MA 02215" -246937,Google Phone,1,600,08/02/19 17:57,"681 South St, New York City, NY 10001" -246938,iPhone,1,700,08/06/19 20:12,"425 Sunset St, San Francisco, CA 94016" -246939,Lightning Charging Cable,1,14.95,08/02/19 22:17,"48 6th St, San Francisco, CA 94016" -246940,Apple Airpods Headphones,1,150,08/26/19 20:17,"404 Jefferson St, Boston, MA 02215" -246941,AA Batteries (4-pack),1,3.84,08/17/19 23:03,"52 Hickory St, New York City, NY 10001" -246942,AA Batteries (4-pack),1,3.84,08/05/19 18:04,"152 Hill St, Los Angeles, CA 90001" -246943,iPhone,1,700,08/01/19 17:37,"337 Lincoln St, Los Angeles, CA 90001" -246943,Apple Airpods Headphones,1,150,08/01/19 17:37,"337 Lincoln St, Los Angeles, CA 90001" -246944,Lightning Charging Cable,1,14.95,08/14/19 16:21,"845 Willow St, Boston, MA 02215" -246945,27in FHD Monitor,1,149.99,08/28/19 16:58,"988 Forest St, Los Angeles, CA 90001" -246946,ThinkPad Laptop,1,999.99,08/20/19 13:56,"104 North St, Los Angeles, CA 90001" -246947,USB-C Charging Cable,1,11.95,08/02/19 16:17,"246 Sunset St, New York City, NY 10001" -246948,27in FHD Monitor,1,149.99,08/22/19 11:28,"332 9th St, Portland, OR 97035" -246949,Lightning Charging Cable,1,14.95,08/21/19 13:38,"802 River St, New York City, NY 10001" -246950,Apple Airpods Headphones,1,150,08/03/19 14:20,"596 1st St, Los Angeles, CA 90001" -246951,Lightning Charging Cable,1,14.95,08/24/19 13:47,"180 5th St, Boston, MA 02215" -246952,AA Batteries (4-pack),3,3.84,08/20/19 22:55,"691 1st St, Dallas, TX 75001" -246953,Google Phone,1,600,08/14/19 13:15,"82 Madison St, Boston, MA 02215" -246954,Bose SoundSport Headphones,1,99.99,08/07/19 13:11,"965 Wilson St, San Francisco, CA 94016" -246955,Bose SoundSport Headphones,1,99.99,08/16/19 10:27,"408 1st St, San Francisco, CA 94016" -246956,Lightning Charging Cable,1,14.95,08/08/19 00:13,"727 9th St, San Francisco, CA 94016" -246957,iPhone,1,700,08/18/19 11:40,"119 Forest St, Los Angeles, CA 90001" -246958,27in FHD Monitor,1,149.99,08/21/19 12:40,"770 Church St, Los Angeles, CA 90001" -246959,Google Phone,1,600,08/12/19 16:11,"971 11th St, Seattle, WA 98101" -246960,Apple Airpods Headphones,1,150,08/20/19 18:39,"909 7th St, Boston, MA 02215" -246961,USB-C Charging Cable,1,11.95,08/14/19 12:04,"803 2nd St, Boston, MA 02215" -246962,Apple Airpods Headphones,1,150,08/22/19 07:03,"364 Park St, Dallas, TX 75001" -246963,AAA Batteries (4-pack),1,2.99,08/31/19 20:21,"943 North St, Atlanta, GA 30301" -246964,ThinkPad Laptop,1,999.99,08/03/19 12:20,"563 Adams St, Los Angeles, CA 90001" -246965,Bose SoundSport Headphones,1,99.99,08/16/19 19:51,"709 11th St, New York City, NY 10001" -246966,27in FHD Monitor,1,149.99,08/03/19 09:51,"916 1st St, Austin, TX 73301" -246967,AA Batteries (4-pack),1,3.84,08/16/19 13:52,"658 Dogwood St, Portland, ME 04101" -246968,AAA Batteries (4-pack),1,2.99,08/10/19 19:26,"443 Main St, Seattle, WA 98101" -246969,Apple Airpods Headphones,1,150,08/08/19 20:33,"413 Pine St, Portland, ME 04101" -246970,iPhone,1,700,08/06/19 09:23,"835 Walnut St, San Francisco, CA 94016" -246971,Lightning Charging Cable,1,14.95,08/05/19 18:05,"265 Park St, Los Angeles, CA 90001" -246972,20in Monitor,1,109.99,08/05/19 12:11,"100 Park St, New York City, NY 10001" -246973,AAA Batteries (4-pack),1,2.99,08/25/19 19:37,"783 11th St, San Francisco, CA 94016" -246974,AAA Batteries (4-pack),3,2.99,08/29/19 15:41,"174 Walnut St, Dallas, TX 75001" -246975,ThinkPad Laptop,1,999.99,08/12/19 18:44,"327 9th St, San Francisco, CA 94016" -246976,Apple Airpods Headphones,1,150,08/09/19 20:40,"513 Hickory St, New York City, NY 10001" -246977,Bose SoundSport Headphones,1,99.99,08/02/19 22:40,"104 Jackson St, Portland, OR 97035" -246978,Google Phone,1,600,08/29/19 16:27,"661 8th St, San Francisco, CA 94016" -246979,AAA Batteries (4-pack),1,2.99,08/31/19 19:42,"102 7th St, San Francisco, CA 94016" -246980,Lightning Charging Cable,1,14.95,08/10/19 22:08,"778 Jackson St, Austin, TX 73301" -246981,20in Monitor,1,109.99,08/11/19 18:51,"585 Chestnut St, Dallas, TX 75001" -246982,AA Batteries (4-pack),1,3.84,08/18/19 19:42,"491 Wilson St, Portland, OR 97035" -246983,iPhone,1,700,08/31/19 15:14,"945 Jefferson St, Boston, MA 02215" -246984,iPhone,1,700,08/10/19 17:15,"825 1st St, Portland, ME 04101" -246985,Wired Headphones,1,11.99,08/18/19 11:30,"144 5th St, New York City, NY 10001" -246986,AAA Batteries (4-pack),3,2.99,08/11/19 23:06,"532 Main St, Dallas, TX 75001" -246987,AA Batteries (4-pack),1,3.84,08/08/19 17:53,"860 Chestnut St, Los Angeles, CA 90001" -246988,Lightning Charging Cable,1,14.95,08/26/19 19:04,"814 9th St, New York City, NY 10001" -246989,34in Ultrawide Monitor,1,379.99,08/04/19 15:49,"733 North St, New York City, NY 10001" -246990,USB-C Charging Cable,1,11.95,08/16/19 15:49,"416 Adams St, Atlanta, GA 30301" -246991,Lightning Charging Cable,1,14.95,08/23/19 18:55,"156 Center St, New York City, NY 10001" -246992,Flatscreen TV,1,300,08/16/19 20:25,"377 Lincoln St, Austin, TX 73301" -246993,AA Batteries (4-pack),1,3.84,08/19/19 09:23,"415 Madison St, Boston, MA 02215" -246994,Flatscreen TV,1,300,08/21/19 07:05,"441 Adams St, Seattle, WA 98101" -246995,AAA Batteries (4-pack),1,2.99,08/07/19 03:19,"547 Madison St, San Francisco, CA 94016" -246996,Lightning Charging Cable,1,14.95,08/30/19 22:23,"194 Dogwood St, Boston, MA 02215" -246996,AA Batteries (4-pack),1,3.84,08/30/19 22:23,"194 Dogwood St, Boston, MA 02215" -246997,Lightning Charging Cable,1,14.95,08/26/19 19:03,"802 North St, Los Angeles, CA 90001" -246998,Macbook Pro Laptop,1,1700,08/27/19 10:26,"667 11th St, San Francisco, CA 94016" -246999,AAA Batteries (4-pack),1,2.99,08/25/19 09:40,"759 13th St, Boston, MA 02215" -247000,Lightning Charging Cable,2,14.95,08/05/19 22:42,"633 6th St, Portland, OR 97035" -247001,Apple Airpods Headphones,1,150,08/24/19 05:59,"454 North St, San Francisco, CA 94016" -247002,USB-C Charging Cable,1,11.95,08/29/19 06:21,"161 Elm St, Los Angeles, CA 90001" -247003,USB-C Charging Cable,1,11.95,08/04/19 08:33,"866 Dogwood St, Los Angeles, CA 90001" -247004,ThinkPad Laptop,1,999.99,08/11/19 18:44,"173 Johnson St, Seattle, WA 98101" -247005,Apple Airpods Headphones,1,150,08/19/19 20:10,"988 Forest St, San Francisco, CA 94016" -247006,iPhone,1,700,08/12/19 18:51,"319 8th St, San Francisco, CA 94016" -247006,Apple Airpods Headphones,1,150,08/12/19 18:51,"319 8th St, San Francisco, CA 94016" -247007,Lightning Charging Cable,2,14.95,08/04/19 12:27,"558 Lincoln St, Dallas, TX 75001" -247008,Wired Headphones,1,11.99,08/23/19 11:32,"131 Elm St, Atlanta, GA 30301" -247009,LG Washing Machine,1,600.0,08/19/19 11:41,"137 Johnson St, Austin, TX 73301" -247010,AAA Batteries (4-pack),1,2.99,08/19/19 11:12,"864 Maple St, San Francisco, CA 94016" -247011,AA Batteries (4-pack),1,3.84,08/08/19 13:02,"601 Church St, Los Angeles, CA 90001" -247012,27in 4K Gaming Monitor,1,389.99,08/08/19 19:58,"44 Lincoln St, New York City, NY 10001" -247013,27in FHD Monitor,1,149.99,08/20/19 22:50,"252 8th St, Atlanta, GA 30301" -247014,27in FHD Monitor,1,149.99,08/13/19 00:13,"246 River St, San Francisco, CA 94016" -247015,Google Phone,1,600,08/27/19 15:11,"123 Walnut St, Seattle, WA 98101" -247016,Lightning Charging Cable,1,14.95,08/31/19 13:09,"959 Wilson St, New York City, NY 10001" -247017,AA Batteries (4-pack),3,3.84,08/10/19 20:55,"960 Church St, Los Angeles, CA 90001" -247018,Lightning Charging Cable,1,14.95,08/19/19 10:13,"736 Maple St, San Francisco, CA 94016" -247019,Flatscreen TV,1,300,08/21/19 14:33,"504 Johnson St, Los Angeles, CA 90001" -247020,AA Batteries (4-pack),1,3.84,08/14/19 04:16,"669 Spruce St, San Francisco, CA 94016" -247021,Wired Headphones,1,11.99,08/10/19 20:53,"90 Meadow St, Boston, MA 02215" -247022,Macbook Pro Laptop,1,1700,08/29/19 14:37,"631 Pine St, Portland, OR 97035" -247023,AA Batteries (4-pack),1,3.84,08/02/19 16:31,"739 Meadow St, San Francisco, CA 94016" -247024,Apple Airpods Headphones,1,150,08/10/19 19:41,"271 Hickory St, Portland, OR 97035" -247025,Wired Headphones,1,11.99,08/30/19 06:21,"987 Highland St, Boston, MA 02215" -247026,USB-C Charging Cable,1,11.95,08/11/19 14:15,"421 Madison St, Boston, MA 02215" -247027,AAA Batteries (4-pack),3,2.99,08/11/19 09:26,"34 Chestnut St, Boston, MA 02215" -247028,AAA Batteries (4-pack),1,2.99,08/04/19 11:48,"146 Walnut St, New York City, NY 10001" -247029,Bose SoundSport Headphones,1,99.99,08/23/19 23:30,"124 Lake St, Seattle, WA 98101" -247030,Lightning Charging Cable,1,14.95,08/31/19 21:30,"313 West St, Los Angeles, CA 90001" -247031,Google Phone,1,600,08/10/19 15:57,"776 Lakeview St, Atlanta, GA 30301" -247032,27in 4K Gaming Monitor,1,389.99,08/21/19 11:06,"775 10th St, New York City, NY 10001" -247033,iPhone,1,700,08/04/19 19:03,"831 10th St, Seattle, WA 98101" -247033,Lightning Charging Cable,1,14.95,08/04/19 19:03,"831 10th St, Seattle, WA 98101" -247034,AAA Batteries (4-pack),1,2.99,08/10/19 18:41,"695 Forest St, Atlanta, GA 30301" -247035,USB-C Charging Cable,2,11.95,08/13/19 18:55,"330 9th St, New York City, NY 10001" -247036,AA Batteries (4-pack),1,3.84,08/10/19 22:36,"575 Lake St, Atlanta, GA 30301" -247037,Apple Airpods Headphones,1,150,08/20/19 09:53,"717 Ridge St, Boston, MA 02215" -247038,AA Batteries (4-pack),3,3.84,08/14/19 11:24,"638 South St, Los Angeles, CA 90001" -247039,27in FHD Monitor,1,149.99,08/27/19 10:33,"757 14th St, San Francisco, CA 94016" -247040,AAA Batteries (4-pack),1,2.99,08/02/19 10:30,"564 River St, Los Angeles, CA 90001" -247041,AAA Batteries (4-pack),2,2.99,08/07/19 16:38,"367 2nd St, Los Angeles, CA 90001" -247041,AAA Batteries (4-pack),2,2.99,08/07/19 16:38,"367 2nd St, Los Angeles, CA 90001" -247042,Bose SoundSport Headphones,1,99.99,08/12/19 09:23,"869 1st St, New York City, NY 10001" -247043,Bose SoundSport Headphones,1,99.99,08/08/19 18:49,"697 9th St, Atlanta, GA 30301" -247044,AAA Batteries (4-pack),1,2.99,08/16/19 17:26,"21 Jackson St, Los Angeles, CA 90001" -247045,Lightning Charging Cable,1,14.95,08/30/19 13:52,"11 Adams St, Los Angeles, CA 90001" -247046,AA Batteries (4-pack),1,3.84,08/14/19 18:50,"448 Madison St, Seattle, WA 98101" -247047,Lightning Charging Cable,1,14.95,08/14/19 21:34,"213 Jackson St, Portland, ME 04101" -247048,Apple Airpods Headphones,2,150,08/22/19 08:21,"161 Elm St, Boston, MA 02215" -247049,ThinkPad Laptop,1,999.99,08/24/19 11:25,"903 South St, San Francisco, CA 94016" -247050,Macbook Pro Laptop,1,1700,08/19/19 12:34,"294 Pine St, San Francisco, CA 94016" -247051,Wired Headphones,1,11.99,08/16/19 07:24,"861 Cherry St, Austin, TX 73301" -247052,Wired Headphones,1,11.99,08/14/19 13:34,"313 10th St, Seattle, WA 98101" -247053,Bose SoundSport Headphones,1,99.99,08/18/19 15:11,"1 2nd St, New York City, NY 10001" -247054,AA Batteries (4-pack),2,3.84,08/04/19 07:37,"354 Spruce St, Los Angeles, CA 90001" -247055,AA Batteries (4-pack),1,3.84,08/31/19 14:23,"53 10th St, Los Angeles, CA 90001" -247056,AA Batteries (4-pack),1,3.84,08/13/19 10:04,"215 Adams St, Boston, MA 02215" -247056,USB-C Charging Cable,1,11.95,08/13/19 10:04,"215 Adams St, Boston, MA 02215" -247057,Lightning Charging Cable,1,14.95,08/19/19 18:49,"137 9th St, Los Angeles, CA 90001" -247058,34in Ultrawide Monitor,1,379.99,08/08/19 20:24,"286 Maple St, Seattle, WA 98101" -247059,AAA Batteries (4-pack),1,2.99,08/31/19 10:15,"521 Jefferson St, New York City, NY 10001" -247060,USB-C Charging Cable,1,11.95,08/15/19 17:09,"167 Elm St, San Francisco, CA 94016" -247061,27in FHD Monitor,1,149.99,08/25/19 01:19,"600 Elm St, New York City, NY 10001" -247062,AAA Batteries (4-pack),2,2.99,08/28/19 14:18,"662 5th St, Atlanta, GA 30301" -247063,iPhone,1,700,08/13/19 22:35,"100 Jefferson St, Los Angeles, CA 90001" -247063,Apple Airpods Headphones,1,150,08/13/19 22:35,"100 Jefferson St, Los Angeles, CA 90001" -247064,Google Phone,1,600,08/08/19 12:21,"663 11th St, Dallas, TX 75001" -247065,Bose SoundSport Headphones,1,99.99,08/02/19 09:23,"780 Sunset St, Atlanta, GA 30301" -,,,,, -247066,Lightning Charging Cable,1,14.95,08/27/19 10:35,"71 Maple St, Los Angeles, CA 90001" -247067,27in FHD Monitor,1,149.99,08/07/19 07:58,"929 7th St, San Francisco, CA 94016" -247068,20in Monitor,1,109.99,08/10/19 15:22,"872 Madison St, San Francisco, CA 94016" -247069,Wired Headphones,1,11.99,08/01/19 16:25,"953 River St, Los Angeles, CA 90001" -247070,Apple Airpods Headphones,1,150,08/25/19 12:11,"331 Johnson St, San Francisco, CA 94016" -247071,Wired Headphones,2,11.99,08/31/19 11:06,"582 South St, Boston, MA 02215" -247072,Bose SoundSport Headphones,1,99.99,08/08/19 16:57,"813 Lake St, Dallas, TX 75001" -247073,USB-C Charging Cable,1,11.95,08/10/19 06:57,"800 Church St, Los Angeles, CA 90001" -247074,27in FHD Monitor,1,149.99,08/04/19 21:52,"207 2nd St, San Francisco, CA 94016" -,,,,, -247075,USB-C Charging Cable,1,11.95,08/10/19 19:18,"213 Main St, New York City, NY 10001" -247075,USB-C Charging Cable,1,11.95,08/10/19 19:18,"213 Main St, New York City, NY 10001" -247076,Macbook Pro Laptop,1,1700,08/26/19 21:07,"762 Forest St, San Francisco, CA 94016" -247077,Lightning Charging Cable,1,14.95,08/02/19 16:43,"408 Main St, San Francisco, CA 94016" -247078,Bose SoundSport Headphones,1,99.99,08/23/19 10:20,"90 South St, New York City, NY 10001" -247079,Lightning Charging Cable,1,14.95,08/02/19 22:20,"945 Willow St, Seattle, WA 98101" -247080,Lightning Charging Cable,1,14.95,08/08/19 13:47,"775 West St, New York City, NY 10001" -247081,USB-C Charging Cable,1,11.95,08/21/19 14:55,"674 Johnson St, Portland, ME 04101" -247082,Bose SoundSport Headphones,1,99.99,08/10/19 09:58,"870 Pine St, Portland, OR 97035" -247083,ThinkPad Laptop,1,999.99,08/03/19 13:37,"293 Highland St, Portland, OR 97035" -247084,Apple Airpods Headphones,1,150,08/03/19 10:27,"252 Hill St, Seattle, WA 98101" -247085,USB-C Charging Cable,1,11.95,08/25/19 16:17,"872 12th St, Los Angeles, CA 90001" -247086,Wired Headphones,1,11.99,08/12/19 13:18,"68 2nd St, San Francisco, CA 94016" -247087,Lightning Charging Cable,1,14.95,08/26/19 17:12,"704 Walnut St, Los Angeles, CA 90001" -247088,AA Batteries (4-pack),1,3.84,08/08/19 12:13,"77 Jackson St, Los Angeles, CA 90001" -247089,USB-C Charging Cable,1,11.95,08/31/19 16:08,"247 Jackson St, San Francisco, CA 94016" -247089,Lightning Charging Cable,1,14.95,08/31/19 16:08,"247 Jackson St, San Francisco, CA 94016" -247090,AAA Batteries (4-pack),1,2.99,08/14/19 23:26,"270 South St, Dallas, TX 75001" -247091,AAA Batteries (4-pack),1,2.99,08/07/19 09:54,"753 7th St, Austin, TX 73301" -247092,Wired Headphones,1,11.99,08/15/19 14:37,"658 7th St, San Francisco, CA 94016" -247093,Google Phone,1,600,08/08/19 16:44,"36 Ridge St, Los Angeles, CA 90001" -247094,Bose SoundSport Headphones,1,99.99,08/30/19 20:18,"291 Hill St, San Francisco, CA 94016" -247095,USB-C Charging Cable,1,11.95,08/03/19 10:15,"987 11th St, Dallas, TX 75001" -247096,27in 4K Gaming Monitor,1,389.99,08/31/19 18:35,"351 Lakeview St, Dallas, TX 75001" -247097,Lightning Charging Cable,1,14.95,08/23/19 19:43,"509 Elm St, Los Angeles, CA 90001" -247098,Bose SoundSport Headphones,1,99.99,08/29/19 12:47,"22 11th St, Atlanta, GA 30301" -247099,AA Batteries (4-pack),1,3.84,08/13/19 06:21,"653 9th St, Dallas, TX 75001" -247100,Flatscreen TV,1,300,08/08/19 10:28,"570 Forest St, New York City, NY 10001" -247101,AAA Batteries (4-pack),1,2.99,08/24/19 12:29,"833 Main St, Boston, MA 02215" -247102,Bose SoundSport Headphones,1,99.99,08/06/19 07:36,"962 Hickory St, Dallas, TX 75001" -247103,USB-C Charging Cable,2,11.95,08/28/19 09:56,"93 9th St, Los Angeles, CA 90001" -247104,AAA Batteries (4-pack),1,2.99,08/24/19 22:55,"662 West St, Portland, ME 04101" -247105,Flatscreen TV,1,300,08/25/19 07:09,"987 Spruce St, New York City, NY 10001" -247106,AAA Batteries (4-pack),1,2.99,08/29/19 15:27,"947 14th St, Seattle, WA 98101" -247107,USB-C Charging Cable,1,11.95,08/23/19 12:16,"625 Lakeview St, Los Angeles, CA 90001" -247108,Apple Airpods Headphones,1,150,08/29/19 13:23,"20 12th St, Austin, TX 73301" -247109,Lightning Charging Cable,1,14.95,08/19/19 09:10,"248 10th St, Atlanta, GA 30301" -247110,AA Batteries (4-pack),1,3.84,08/01/19 15:15,"985 Madison St, Austin, TX 73301" -247111,iPhone,1,700,08/17/19 18:40,"850 Park St, Portland, OR 97035" -247112,27in FHD Monitor,1,149.99,08/10/19 09:56,"508 Johnson St, San Francisco, CA 94016" -247113,Wired Headphones,1,11.99,08/28/19 12:29,"89 Ridge St, Portland, OR 97035" -247114,20in Monitor,1,109.99,08/23/19 18:17,"936 Ridge St, Dallas, TX 75001" -247115,USB-C Charging Cable,1,11.95,08/07/19 18:19,"172 West St, Los Angeles, CA 90001" -247116,20in Monitor,1,109.99,08/18/19 17:48,"199 Center St, Atlanta, GA 30301" -247117,Lightning Charging Cable,1,14.95,08/16/19 13:30,"179 Cherry St, New York City, NY 10001" -247118,Lightning Charging Cable,1,14.95,08/31/19 18:54,"394 Adams St, Austin, TX 73301" -247119,USB-C Charging Cable,1,11.95,08/31/19 14:18,"637 Forest St, Dallas, TX 75001" -247120,Apple Airpods Headphones,1,150,08/08/19 10:21,"253 4th St, Seattle, WA 98101" -247121,AAA Batteries (4-pack),4,2.99,08/01/19 18:27,"467 Pine St, Seattle, WA 98101" -247122,USB-C Charging Cable,1,11.95,08/28/19 16:38,"277 1st St, Austin, TX 73301" -247123,Google Phone,1,600,08/25/19 19:16,"260 8th St, San Francisco, CA 94016" -247124,AAA Batteries (4-pack),2,2.99,08/21/19 20:51,"18 13th St, Austin, TX 73301" -247125,Lightning Charging Cable,1,14.95,08/10/19 19:00,"228 River St, Dallas, TX 75001" -247126,Lightning Charging Cable,1,14.95,08/20/19 09:52,"730 Sunset St, San Francisco, CA 94016" -247127,Google Phone,1,600,08/29/19 21:08,"306 River St, Boston, MA 02215" -247127,Wired Headphones,2,11.99,08/29/19 21:08,"306 River St, Boston, MA 02215" -247128,Google Phone,1,600,08/02/19 16:55,"928 Lake St, Portland, OR 97035" -247129,Wired Headphones,1,11.99,08/23/19 08:34,"670 1st St, Boston, MA 02215" -247130,Bose SoundSport Headphones,1,99.99,08/19/19 23:01,"730 10th St, Boston, MA 02215" -247131,Bose SoundSport Headphones,1,99.99,08/25/19 22:32,"768 Lake St, Seattle, WA 98101" -247132,Bose SoundSport Headphones,1,99.99,08/14/19 08:29,"806 South St, San Francisco, CA 94016" -247133,ThinkPad Laptop,1,999.99,08/31/19 15:40,"133 Adams St, Seattle, WA 98101" -247134,Lightning Charging Cable,1,14.95,08/24/19 16:30,"959 Lake St, Boston, MA 02215" -247135,AAA Batteries (4-pack),1,2.99,08/05/19 21:47,"266 North St, Boston, MA 02215" -247136,AA Batteries (4-pack),1,3.84,08/17/19 10:48,"687 Pine St, San Francisco, CA 94016" -247137,Lightning Charging Cable,1,14.95,08/13/19 21:16,"692 13th St, Los Angeles, CA 90001" -247138,USB-C Charging Cable,1,11.95,08/01/19 22:00,"186 Park St, Los Angeles, CA 90001" -247139,USB-C Charging Cable,1,11.95,08/10/19 13:38,"930 Wilson St, Austin, TX 73301" -247140,Bose SoundSport Headphones,1,99.99,08/24/19 09:40,"631 Lincoln St, San Francisco, CA 94016" -247141,Apple Airpods Headphones,1,150,08/13/19 19:06,"219 North St, Atlanta, GA 30301" -247142,Apple Airpods Headphones,1,150,08/26/19 13:34,"324 Cedar St, New York City, NY 10001" -247143,Vareebadd Phone,1,400,08/01/19 22:05,"630 Dogwood St, Los Angeles, CA 90001" -247144,Wired Headphones,1,11.99,08/13/19 09:30,"7 Church St, Seattle, WA 98101" -247145,Lightning Charging Cable,1,14.95,08/10/19 13:25,"83 Johnson St, San Francisco, CA 94016" -247146,Bose SoundSport Headphones,1,99.99,08/27/19 20:10,"444 6th St, Austin, TX 73301" -247147,AA Batteries (4-pack),1,3.84,08/21/19 16:14,"689 Park St, Los Angeles, CA 90001" -247148,Macbook Pro Laptop,1,1700,08/23/19 20:11,"905 Meadow St, San Francisco, CA 94016" -247149,iPhone,1,700,08/29/19 00:48,"725 Elm St, New York City, NY 10001" -247149,Wired Headphones,1,11.99,08/29/19 00:48,"725 Elm St, New York City, NY 10001" -247150,Lightning Charging Cable,1,14.95,08/04/19 15:22,"138 1st St, New York City, NY 10001" -247151,AAA Batteries (4-pack),2,2.99,08/22/19 20:58,"403 Church St, Dallas, TX 75001" -247152,Apple Airpods Headphones,1,150,08/29/19 09:50,"467 1st St, San Francisco, CA 94016" -247153,AA Batteries (4-pack),1,3.84,08/08/19 06:09,"459 2nd St, San Francisco, CA 94016" -247154,iPhone,1,700,08/16/19 12:52,"475 Pine St, Los Angeles, CA 90001" -247155,Google Phone,1,600,08/23/19 15:33,"718 Highland St, Seattle, WA 98101" -247156,AAA Batteries (4-pack),1,2.99,08/13/19 13:32,"224 12th St, Los Angeles, CA 90001" -247157,Lightning Charging Cable,1,14.95,08/18/19 18:08,"69 North St, Atlanta, GA 30301" -247158,AA Batteries (4-pack),1,3.84,08/28/19 06:53,"246 Jefferson St, New York City, NY 10001" -247159,Lightning Charging Cable,1,14.95,08/23/19 19:53,"722 9th St, San Francisco, CA 94016" -247160,Wired Headphones,1,11.99,08/05/19 10:34,"240 4th St, New York City, NY 10001" -247161,AA Batteries (4-pack),1,3.84,08/26/19 13:12,"198 5th St, San Francisco, CA 94016" -247162,AA Batteries (4-pack),1,3.84,08/08/19 16:35,"223 Washington St, Seattle, WA 98101" -247163,20in Monitor,1,109.99,08/28/19 19:01,"323 Lincoln St, San Francisco, CA 94016" -247164,Wired Headphones,1,11.99,08/12/19 16:00,"209 Johnson St, New York City, NY 10001" -247165,AAA Batteries (4-pack),1,2.99,08/22/19 12:43,"552 Main St, Portland, OR 97035" -247166,AAA Batteries (4-pack),1,2.99,08/17/19 20:49,"967 North St, San Francisco, CA 94016" -247167,27in 4K Gaming Monitor,1,389.99,08/03/19 06:41,"40 River St, Seattle, WA 98101" -247168,Macbook Pro Laptop,1,1700,08/08/19 08:17,"815 Main St, New York City, NY 10001" -247169,Google Phone,1,600,08/25/19 20:33,"307 Elm St, Austin, TX 73301" -247170,AA Batteries (4-pack),1,3.84,08/30/19 05:40,"654 Hickory St, Boston, MA 02215" -247171,Lightning Charging Cable,1,14.95,08/27/19 00:14,"941 Lake St, New York City, NY 10001" -247172,27in FHD Monitor,1,149.99,08/07/19 05:21,"424 10th St, San Francisco, CA 94016" -247173,Wired Headphones,1,11.99,08/18/19 12:13,"488 8th St, New York City, NY 10001" -247174,AA Batteries (4-pack),3,3.84,08/22/19 07:55,"151 Pine St, Boston, MA 02215" -247175,Wired Headphones,1,11.99,08/30/19 19:15,"306 Jackson St, New York City, NY 10001" -247176,34in Ultrawide Monitor,1,379.99,08/17/19 21:05,"137 Chestnut St, Seattle, WA 98101" -247177,Lightning Charging Cable,1,14.95,08/19/19 11:14,"358 Highland St, Atlanta, GA 30301" -247178,Lightning Charging Cable,1,14.95,08/17/19 21:15,"849 Main St, Austin, TX 73301" -247179,USB-C Charging Cable,2,11.95,08/04/19 15:56,"844 Main St, Dallas, TX 75001" -247180,Google Phone,1,600,08/25/19 18:36,"752 Center St, San Francisco, CA 94016" -247180,USB-C Charging Cable,1,11.95,08/25/19 18:36,"752 Center St, San Francisco, CA 94016" -247181,USB-C Charging Cable,1,11.95,08/08/19 11:12,"87 Hill St, San Francisco, CA 94016" -247182,Wired Headphones,1,11.99,08/29/19 01:14,"844 Hickory St, San Francisco, CA 94016" -247183,USB-C Charging Cable,1,11.95,08/31/19 13:10,"940 Spruce St, San Francisco, CA 94016" -247184,Bose SoundSport Headphones,1,99.99,08/31/19 21:07,"164 2nd St, Atlanta, GA 30301" -247185,Lightning Charging Cable,1,14.95,08/31/19 10:41,"410 10th St, San Francisco, CA 94016" -247186,Apple Airpods Headphones,1,150,08/07/19 17:35,"932 Hill St, New York City, NY 10001" -247187,Lightning Charging Cable,1,14.95,08/09/19 17:38,"504 Willow St, Dallas, TX 75001" -247188,27in FHD Monitor,1,149.99,08/28/19 11:05,"453 Chestnut St, San Francisco, CA 94016" -247189,LG Dryer,1,600.0,08/17/19 22:09,"364 West St, Los Angeles, CA 90001" -247190,USB-C Charging Cable,2,11.95,08/25/19 14:42,"515 Jackson St, Portland, OR 97035" -247191,Lightning Charging Cable,1,14.95,08/29/19 14:30,"208 Walnut St, San Francisco, CA 94016" -247192,AA Batteries (4-pack),2,3.84,08/28/19 12:49,"199 11th St, Austin, TX 73301" -247193,27in FHD Monitor,1,149.99,08/22/19 20:45,"176 13th St, New York City, NY 10001" -247194,USB-C Charging Cable,1,11.95,08/15/19 14:12,"706 Church St, Seattle, WA 98101" -247195,Lightning Charging Cable,1,14.95,08/05/19 22:36,"433 South St, Atlanta, GA 30301" -247195,USB-C Charging Cable,1,11.95,08/05/19 22:36,"433 South St, Atlanta, GA 30301" -247196,34in Ultrawide Monitor,1,379.99,08/25/19 18:37,"822 1st St, Dallas, TX 75001" -247197,Lightning Charging Cable,2,14.95,08/28/19 14:58,"644 11th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -247198,ThinkPad Laptop,1,999.99,08/06/19 02:09,"510 Hickory St, Dallas, TX 75001" -247199,Apple Airpods Headphones,1,150,08/14/19 19:43,"758 9th St, Seattle, WA 98101" -247200,Wired Headphones,1,11.99,08/07/19 10:12,"997 River St, Portland, OR 97035" -247201,Apple Airpods Headphones,1,150,08/28/19 18:27,"288 2nd St, Portland, OR 97035" -247202,AA Batteries (4-pack),1,3.84,08/02/19 12:27,"463 Madison St, Atlanta, GA 30301" -247203,AAA Batteries (4-pack),1,2.99,08/11/19 11:44,"169 Jackson St, Dallas, TX 75001" -247204,27in FHD Monitor,1,149.99,08/12/19 14:24,"991 13th St, Boston, MA 02215" -247205,USB-C Charging Cable,1,11.95,08/31/19 01:41,"24 Chestnut St, Atlanta, GA 30301" -247206,27in 4K Gaming Monitor,1,389.99,08/04/19 10:11,"195 Highland St, New York City, NY 10001" -247207,Wired Headphones,1,11.99,08/06/19 13:38,"966 Highland St, Los Angeles, CA 90001" -247208,Flatscreen TV,1,300,08/08/19 13:19,"558 7th St, Seattle, WA 98101" -247209,Google Phone,1,600,08/12/19 08:14,"742 Meadow St, New York City, NY 10001" -247210,27in FHD Monitor,1,149.99,08/21/19 07:52,"783 Adams St, San Francisco, CA 94016" -247211,Apple Airpods Headphones,1,150,08/28/19 19:43,"883 Johnson St, Los Angeles, CA 90001" -247212,Vareebadd Phone,1,400,08/27/19 13:37,"259 14th St, Atlanta, GA 30301" -247213,USB-C Charging Cable,1,11.95,08/05/19 11:42,"462 5th St, Atlanta, GA 30301" -247214,Macbook Pro Laptop,1,1700,08/19/19 07:52,"33 Walnut St, Seattle, WA 98101" -247215,27in FHD Monitor,2,149.99,08/19/19 23:17,"664 Jackson St, San Francisco, CA 94016" -247216,Lightning Charging Cable,2,14.95,08/03/19 08:19,"644 Lincoln St, Austin, TX 73301" -247217,USB-C Charging Cable,1,11.95,08/05/19 13:32,"450 Hill St, Seattle, WA 98101" -247218,Flatscreen TV,1,300,08/07/19 10:36,"420 Church St, New York City, NY 10001" -247219,Bose SoundSport Headphones,1,99.99,08/04/19 09:51,"615 Ridge St, Portland, ME 04101" -247220,Apple Airpods Headphones,1,150,08/26/19 17:21,"370 Wilson St, San Francisco, CA 94016" -247221,AA Batteries (4-pack),1,3.84,08/10/19 20:30,"697 13th St, Seattle, WA 98101" -247222,AAA Batteries (4-pack),1,2.99,08/25/19 22:52,"88 Chestnut St, Austin, TX 73301" -247223,AAA Batteries (4-pack),1,2.99,08/23/19 11:55,"456 Forest St, Atlanta, GA 30301" -247224,Wired Headphones,1,11.99,08/31/19 16:24,"582 14th St, Dallas, TX 75001" -247225,AA Batteries (4-pack),1,3.84,08/26/19 14:48,"700 Hill St, Boston, MA 02215" -247226,ThinkPad Laptop,1,999.99,08/29/19 22:44,"520 Center St, Portland, ME 04101" -247227,Lightning Charging Cable,1,14.95,08/04/19 12:14,"36 Pine St, San Francisco, CA 94016" -247228,Lightning Charging Cable,1,14.95,08/10/19 09:27,"288 Meadow St, San Francisco, CA 94016" -247229,Bose SoundSport Headphones,1,99.99,08/08/19 12:38,"967 Wilson St, Boston, MA 02215" -247230,AAA Batteries (4-pack),2,2.99,08/20/19 20:16,"977 Dogwood St, Los Angeles, CA 90001" -247231,USB-C Charging Cable,1,11.95,08/16/19 09:59,"449 Cherry St, Dallas, TX 75001" -247232,USB-C Charging Cable,1,11.95,08/09/19 09:57,"734 Johnson St, Seattle, WA 98101" -247233,Apple Airpods Headphones,1,150,08/19/19 15:45,"238 7th St, New York City, NY 10001" -247234,AA Batteries (4-pack),1,3.84,08/18/19 05:22,"177 Elm St, San Francisco, CA 94016" -247235,Wired Headphones,1,11.99,08/12/19 09:41,"118 Hickory St, Boston, MA 02215" -247236,AA Batteries (4-pack),1,3.84,08/14/19 03:15,"988 Walnut St, Dallas, TX 75001" -247237,AAA Batteries (4-pack),1,2.99,08/06/19 08:28,"338 7th St, Atlanta, GA 30301" -247238,USB-C Charging Cable,1,11.95,08/16/19 16:55,"297 Sunset St, New York City, NY 10001" -247238,Bose SoundSport Headphones,1,99.99,08/16/19 16:55,"297 Sunset St, New York City, NY 10001" -247239,USB-C Charging Cable,1,11.95,08/23/19 17:51,"935 Jefferson St, New York City, NY 10001" -247240,USB-C Charging Cable,1,11.95,08/28/19 11:59,"579 10th St, Los Angeles, CA 90001" -247241,Lightning Charging Cable,1,14.95,08/02/19 11:47,"686 Dogwood St, San Francisco, CA 94016" -247242,Apple Airpods Headphones,1,150,08/22/19 20:34,"169 Walnut St, Boston, MA 02215" -247243,Wired Headphones,1,11.99,08/13/19 10:52,"366 14th St, Atlanta, GA 30301" -247244,Lightning Charging Cable,1,14.95,08/11/19 15:24,"66 Johnson St, Dallas, TX 75001" -247245,ThinkPad Laptop,1,999.99,08/22/19 23:19,"629 13th St, Portland, OR 97035" -247246,Lightning Charging Cable,1,14.95,08/09/19 21:15,"20 Elm St, New York City, NY 10001" -247247,AAA Batteries (4-pack),1,2.99,08/11/19 20:00,"253 Ridge St, Austin, TX 73301" -247248,LG Washing Machine,1,600.0,08/18/19 15:20,"253 7th St, San Francisco, CA 94016" -247249,Lightning Charging Cable,1,14.95,08/13/19 14:49,"976 Hill St, New York City, NY 10001" -247250,Apple Airpods Headphones,1,150,08/29/19 22:25,"932 Hickory St, San Francisco, CA 94016" -247251,Bose SoundSport Headphones,1,99.99,08/08/19 09:37,"567 Center St, San Francisco, CA 94016" -247252,34in Ultrawide Monitor,1,379.99,08/12/19 08:03,"183 Wilson St, Boston, MA 02215" -247253,27in 4K Gaming Monitor,1,389.99,08/01/19 23:28,"871 5th St, San Francisco, CA 94016" -247254,AAA Batteries (4-pack),1,2.99,08/24/19 11:48,"159 10th St, San Francisco, CA 94016" -247255,Lightning Charging Cable,1,14.95,08/16/19 07:15,"160 6th St, Los Angeles, CA 90001" -247256,34in Ultrawide Monitor,1,379.99,08/13/19 22:51,"176 Church St, Los Angeles, CA 90001" -247257,ThinkPad Laptop,1,999.99,08/27/19 09:20,"185 Wilson St, Dallas, TX 75001" -247258,Bose SoundSport Headphones,1,99.99,08/19/19 20:07,"810 Willow St, New York City, NY 10001" -247259,Lightning Charging Cable,1,14.95,08/01/19 12:37,"642 Pine St, New York City, NY 10001" -247260,Apple Airpods Headphones,1,150,08/04/19 14:56,"683 Cedar St, San Francisco, CA 94016" -247261,Apple Airpods Headphones,1,150,08/28/19 11:08,"692 4th St, New York City, NY 10001" -247262,Wired Headphones,1,11.99,08/25/19 13:23,"787 Wilson St, Boston, MA 02215" -247263,USB-C Charging Cable,2,11.95,08/25/19 12:39,"955 Elm St, Los Angeles, CA 90001" -247264,iPhone,1,700,08/25/19 20:14,"953 4th St, Boston, MA 02215" -247264,Lightning Charging Cable,1,14.95,08/25/19 20:14,"953 4th St, Boston, MA 02215" -247264,Wired Headphones,1,11.99,08/25/19 20:14,"953 4th St, Boston, MA 02215" -247265,USB-C Charging Cable,2,11.95,08/21/19 15:08,"781 11th St, Portland, OR 97035" -247266,Lightning Charging Cable,1,14.95,08/11/19 20:57,"582 Elm St, Portland, OR 97035" -247267,Lightning Charging Cable,1,14.95,08/13/19 14:24,"41 Madison St, New York City, NY 10001" -247268,Lightning Charging Cable,1,14.95,08/15/19 16:15,"860 2nd St, Seattle, WA 98101" -247269,ThinkPad Laptop,1,999.99,08/23/19 17:52,"873 8th St, Dallas, TX 75001" -247270,27in FHD Monitor,1,149.99,08/03/19 15:29,"418 Wilson St, Los Angeles, CA 90001" -247271,USB-C Charging Cable,1,11.95,08/12/19 17:05,"384 Hickory St, San Francisco, CA 94016" -247272,ThinkPad Laptop,1,999.99,08/28/19 23:30,"156 14th St, Dallas, TX 75001" -247273,AA Batteries (4-pack),1,3.84,08/05/19 10:02,"807 9th St, Atlanta, GA 30301" -247274,Flatscreen TV,1,300,08/23/19 22:01,"539 North St, New York City, NY 10001" -247275,27in 4K Gaming Monitor,1,389.99,08/22/19 18:13,"109 13th St, Atlanta, GA 30301" -247276,AA Batteries (4-pack),1,3.84,08/13/19 13:53,"306 Hickory St, Dallas, TX 75001" -247277,Macbook Pro Laptop,1,1700,08/22/19 08:12,"63 Hill St, Atlanta, GA 30301" -247278,Apple Airpods Headphones,1,150,08/12/19 18:09,"622 13th St, Portland, OR 97035" -247279,Bose SoundSport Headphones,1,99.99,08/11/19 23:38,"560 Lincoln St, Portland, OR 97035" -247280,USB-C Charging Cable,1,11.95,08/02/19 21:02,"700 Hickory St, Seattle, WA 98101" -247281,Macbook Pro Laptop,1,1700,08/18/19 17:33,"210 Forest St, Los Angeles, CA 90001" -247282,27in FHD Monitor,1,149.99,08/07/19 11:36,"507 Maple St, Los Angeles, CA 90001" -247283,34in Ultrawide Monitor,1,379.99,08/11/19 13:35,"525 Elm St, Boston, MA 02215" -247284,AA Batteries (4-pack),1,3.84,08/28/19 21:58,"617 South St, Boston, MA 02215" -247285,iPhone,1,700,08/05/19 20:51,"840 Cherry St, New York City, NY 10001" -247286,Bose SoundSport Headphones,1,99.99,08/25/19 15:11,"656 Adams St, Atlanta, GA 30301" -247287,iPhone,1,700,08/14/19 08:04,"39 Elm St, Portland, OR 97035" -247288,LG Dryer,1,600.0,08/21/19 15:36,"80 7th St, New York City, NY 10001" -247289,Lightning Charging Cable,1,14.95,08/17/19 15:22,"247 Church St, Boston, MA 02215" -247290,AA Batteries (4-pack),1,3.84,08/29/19 09:21,"52 Spruce St, Atlanta, GA 30301" -247291,Wired Headphones,1,11.99,08/17/19 22:30,"835 Chestnut St, Boston, MA 02215" -247292,Bose SoundSport Headphones,1,99.99,08/29/19 22:37,"566 2nd St, Los Angeles, CA 90001" -247293,Apple Airpods Headphones,1,150,08/11/19 10:15,"391 South St, Dallas, TX 75001" -247293,AAA Batteries (4-pack),2,2.99,08/11/19 10:15,"391 South St, Dallas, TX 75001" -247294,Apple Airpods Headphones,1,150,08/27/19 19:56,"806 Highland St, New York City, NY 10001" -247295,27in FHD Monitor,1,149.99,08/23/19 13:09,"349 Meadow St, Seattle, WA 98101" -247296,AAA Batteries (4-pack),1,2.99,08/16/19 20:55,"768 Church St, San Francisco, CA 94016" -247297,Apple Airpods Headphones,1,150,08/28/19 18:25,"934 Lincoln St, Portland, OR 97035" -247298,iPhone,1,700,08/05/19 17:26,"651 12th St, San Francisco, CA 94016" -247299,Lightning Charging Cable,1,14.95,08/02/19 11:48,"9 5th St, Portland, OR 97035" -247300,Wired Headphones,1,11.99,08/27/19 21:14,"585 Madison St, San Francisco, CA 94016" -247301,Flatscreen TV,1,300,08/27/19 21:24,"807 Spruce St, San Francisco, CA 94016" -247302,Macbook Pro Laptop,1,1700,08/02/19 20:21,"202 West St, San Francisco, CA 94016" -247303,Apple Airpods Headphones,1,150,08/31/19 07:34,"351 7th St, New York City, NY 10001" -247304,AA Batteries (4-pack),1,3.84,08/08/19 23:48,"691 Ridge St, New York City, NY 10001" -247305,Bose SoundSport Headphones,1,99.99,08/14/19 17:02,"978 Maple St, San Francisco, CA 94016" -247306,iPhone,1,700,08/25/19 01:35,"17 Elm St, New York City, NY 10001" -247307,Apple Airpods Headphones,1,150,08/31/19 12:52,"76 Meadow St, Los Angeles, CA 90001" -247308,AA Batteries (4-pack),1,3.84,08/10/19 08:29,"145 Park St, Portland, ME 04101" -247309,20in Monitor,1,109.99,08/03/19 19:32,"993 Center St, Los Angeles, CA 90001" -247310,Bose SoundSport Headphones,1,99.99,08/12/19 10:56,"275 Hill St, San Francisco, CA 94016" -247311,AA Batteries (4-pack),1,3.84,08/11/19 18:06,"868 Cherry St, New York City, NY 10001" -247312,Lightning Charging Cable,1,14.95,08/24/19 13:58,"173 Center St, San Francisco, CA 94016" -247313,34in Ultrawide Monitor,1,379.99,08/04/19 19:18,"459 13th St, Portland, OR 97035" -247314,Bose SoundSport Headphones,1,99.99,08/14/19 21:31,"144 Pine St, Los Angeles, CA 90001" -247315,Bose SoundSport Headphones,1,99.99,08/03/19 11:53,"747 Washington St, Los Angeles, CA 90001" -247316,Bose SoundSport Headphones,1,99.99,08/04/19 08:20,"767 Center St, New York City, NY 10001" -247317,ThinkPad Laptop,1,999.99,08/26/19 06:38,"309 South St, New York City, NY 10001" -247318,27in FHD Monitor,1,149.99,08/09/19 17:22,"910 12th St, New York City, NY 10001" -247319,iPhone,1,700,08/20/19 19:56,"133 North St, Boston, MA 02215" -247319,Lightning Charging Cable,1,14.95,08/20/19 19:56,"133 North St, Boston, MA 02215" -247320,USB-C Charging Cable,1,11.95,08/17/19 13:22,"164 Pine St, New York City, NY 10001" -247321,ThinkPad Laptop,1,999.99,08/04/19 17:05,"657 Adams St, San Francisco, CA 94016" -247322,AA Batteries (4-pack),1,3.84,08/04/19 17:41,"842 Ridge St, Los Angeles, CA 90001" -247323,Apple Airpods Headphones,1,150,08/15/19 21:54,"643 Hickory St, Los Angeles, CA 90001" -247324,USB-C Charging Cable,1,11.95,08/19/19 17:07,"27 Hill St, Los Angeles, CA 90001" -247325,Bose SoundSport Headphones,1,99.99,08/05/19 15:03,"459 Church St, Atlanta, GA 30301" -247326,USB-C Charging Cable,1,11.95,08/05/19 22:16,"830 Jefferson St, Dallas, TX 75001" -247327,Lightning Charging Cable,1,14.95,08/11/19 09:14,"814 Willow St, San Francisco, CA 94016" -247328,AA Batteries (4-pack),1,3.84,08/09/19 17:55,"724 Madison St, Dallas, TX 75001" -247329,AA Batteries (4-pack),2,3.84,08/22/19 14:23,"744 Hickory St, Atlanta, GA 30301" -247330,AA Batteries (4-pack),1,3.84,08/04/19 14:34,"581 Sunset St, San Francisco, CA 94016" -247331,Macbook Pro Laptop,1,1700,08/05/19 18:11,"594 Lake St, Austin, TX 73301" -247331,Bose SoundSport Headphones,1,99.99,08/05/19 18:11,"594 Lake St, Austin, TX 73301" -247332,Lightning Charging Cable,1,14.95,08/19/19 13:44,"680 Johnson St, Boston, MA 02215" -247333,Apple Airpods Headphones,1,150,08/01/19 10:34,"398 5th St, Boston, MA 02215" -247334,AA Batteries (4-pack),1,3.84,08/16/19 16:39,"113 Hill St, Los Angeles, CA 90001" -247335,Bose SoundSport Headphones,1,99.99,08/04/19 12:51,"109 North St, Los Angeles, CA 90001" -247336,AA Batteries (4-pack),2,3.84,08/13/19 10:37,"214 Chestnut St, Atlanta, GA 30301" -247337,Bose SoundSport Headphones,1,99.99,08/02/19 17:09,"934 Hill St, San Francisco, CA 94016" -247338,USB-C Charging Cable,1,11.95,08/21/19 16:33,"396 Maple St, Atlanta, GA 30301" -247339,Bose SoundSport Headphones,1,99.99,08/27/19 18:48,"313 Lincoln St, San Francisco, CA 94016" -247340,Wired Headphones,1,11.99,08/30/19 15:48,"857 Washington St, Austin, TX 73301" -247341,AA Batteries (4-pack),2,3.84,08/27/19 10:40,"165 Sunset St, Los Angeles, CA 90001" -247342,Google Phone,1,600,08/30/19 22:03,"475 West St, Dallas, TX 75001" -247342,Bose SoundSport Headphones,1,99.99,08/30/19 22:03,"475 West St, Dallas, TX 75001" -247343,Wired Headphones,1,11.99,08/16/19 11:09,"684 Lake St, Seattle, WA 98101" -247344,Apple Airpods Headphones,1,150,08/15/19 02:57,"325 Hickory St, Dallas, TX 75001" -247345,Lightning Charging Cable,1,14.95,08/24/19 16:34,"699 Elm St, Boston, MA 02215" -247346,Wired Headphones,2,11.99,08/26/19 09:04,"840 Pine St, Los Angeles, CA 90001" -247347,Bose SoundSport Headphones,2,99.99,08/25/19 13:38,"176 8th St, Boston, MA 02215" -247348,AA Batteries (4-pack),2,3.84,08/31/19 20:58,"177 Dogwood St, Dallas, TX 75001" -247349,Lightning Charging Cable,1,14.95,08/30/19 14:34,"103 Lake St, Boston, MA 02215" -247350,ThinkPad Laptop,1,999.99,08/11/19 17:33,"503 Center St, New York City, NY 10001" -247351,Vareebadd Phone,1,400,08/20/19 09:32,"714 Center St, Los Angeles, CA 90001" -247352,Apple Airpods Headphones,1,150,08/27/19 18:31,"720 Jackson St, Dallas, TX 75001" -247353,20in Monitor,1,109.99,08/31/19 22:11,"728 Sunset St, Atlanta, GA 30301" -247354,USB-C Charging Cable,1,11.95,08/26/19 18:17,"572 Madison St, San Francisco, CA 94016" -247355,USB-C Charging Cable,1,11.95,08/16/19 11:43,"764 Main St, New York City, NY 10001" -247356,iPhone,1,700,08/17/19 19:34,"382 Lake St, Atlanta, GA 30301" -247357,AA Batteries (4-pack),1,3.84,08/07/19 09:32,"980 Ridge St, Seattle, WA 98101" -247358,Flatscreen TV,1,300,08/21/19 20:39,"20 Jackson St, Boston, MA 02215" -247359,Apple Airpods Headphones,1,150,08/15/19 21:35,"524 1st St, New York City, NY 10001" -247360,Bose SoundSport Headphones,1,99.99,08/15/19 18:15,"95 Spruce St, Dallas, TX 75001" -247361,Bose SoundSport Headphones,1,99.99,08/23/19 18:14,"515 2nd St, Los Angeles, CA 90001" -247362,34in Ultrawide Monitor,1,379.99,08/14/19 09:41,"340 Jackson St, New York City, NY 10001" -247363,AAA Batteries (4-pack),1,2.99,08/24/19 08:04,"567 Church St, Austin, TX 73301" -247364,AA Batteries (4-pack),1,3.84,08/06/19 20:09,"332 Maple St, Austin, TX 73301" -247365,Apple Airpods Headphones,1,150,08/31/19 10:01,"654 Lincoln St, San Francisco, CA 94016" -247366,Bose SoundSport Headphones,1,99.99,08/23/19 12:24,"935 Ridge St, New York City, NY 10001" -247367,20in Monitor,1,109.99,08/19/19 20:22,"972 Meadow St, San Francisco, CA 94016" -247368,Wired Headphones,1,11.99,08/15/19 18:20,"671 6th St, San Francisco, CA 94016" -247369,Apple Airpods Headphones,1,150,08/01/19 18:51,"219 Park St, Los Angeles, CA 90001" -247370,AA Batteries (4-pack),1,3.84,08/04/19 09:20,"460 West St, Austin, TX 73301" -247371,27in FHD Monitor,1,149.99,08/27/19 04:50,"862 River St, New York City, NY 10001" -247372,Apple Airpods Headphones,1,150,08/08/19 14:52,"161 Cedar St, New York City, NY 10001" -247373,AAA Batteries (4-pack),1,2.99,08/18/19 19:52,"481 Jefferson St, San Francisco, CA 94016" -247374,34in Ultrawide Monitor,1,379.99,08/30/19 08:50,"565 10th St, Austin, TX 73301" -247375,Lightning Charging Cable,1,14.95,08/31/19 07:06,"687 Meadow St, Austin, TX 73301" -247376,Lightning Charging Cable,1,14.95,08/01/19 11:14,"122 1st St, Seattle, WA 98101" -247377,Apple Airpods Headphones,1,150,08/06/19 14:17,"557 North St, San Francisco, CA 94016" -247378,USB-C Charging Cable,1,11.95,08/08/19 19:00,"646 Ridge St, New York City, NY 10001" -247379,USB-C Charging Cable,1,11.95,08/16/19 18:53,"563 Cedar St, New York City, NY 10001" -247380,Bose SoundSport Headphones,1,99.99,08/24/19 18:02,"116 Willow St, San Francisco, CA 94016" -247381,Bose SoundSport Headphones,1,99.99,08/06/19 23:09,"353 Adams St, Dallas, TX 75001" -247382,Bose SoundSport Headphones,1,99.99,08/12/19 02:35,"191 Lincoln St, Seattle, WA 98101" -247383,AAA Batteries (4-pack),1,2.99,08/26/19 21:07,"74 Maple St, New York City, NY 10001" -247384,Wired Headphones,1,11.99,08/31/19 18:49,"121 Willow St, Dallas, TX 75001" -247385,USB-C Charging Cable,1,11.95,08/20/19 22:28,"569 Lincoln St, Atlanta, GA 30301" -247385,Apple Airpods Headphones,1,150,08/20/19 22:28,"569 Lincoln St, Atlanta, GA 30301" -247386,USB-C Charging Cable,1,11.95,08/17/19 14:55,"609 Madison St, San Francisco, CA 94016" -247386,Wired Headphones,1,11.99,08/17/19 14:55,"609 Madison St, San Francisco, CA 94016" -247387,Lightning Charging Cable,1,14.95,08/30/19 15:37,"683 Maple St, San Francisco, CA 94016" -247388,AA Batteries (4-pack),3,3.84,08/06/19 16:33,"723 Sunset St, Los Angeles, CA 90001" -247389,AA Batteries (4-pack),1,3.84,08/05/19 06:54,"900 North St, San Francisco, CA 94016" -247390,Lightning Charging Cable,1,14.95,08/20/19 02:27,"234 7th St, San Francisco, CA 94016" -247390,20in Monitor,1,109.99,08/20/19 02:27,"234 7th St, San Francisco, CA 94016" -247391,iPhone,1,700,08/28/19 22:32,"735 9th St, Austin, TX 73301" -247391,Lightning Charging Cable,1,14.95,08/28/19 22:32,"735 9th St, Austin, TX 73301" -247392,iPhone,1,700,08/14/19 04:06,"175 Maple St, San Francisco, CA 94016" -247393,Wired Headphones,1,11.99,08/03/19 00:50,"700 7th St, San Francisco, CA 94016" -247394,34in Ultrawide Monitor,1,379.99,08/08/19 23:39,"346 Ridge St, Los Angeles, CA 90001" -247395,Bose SoundSport Headphones,1,99.99,08/03/19 10:39,"345 Sunset St, New York City, NY 10001" -247396,Vareebadd Phone,1,400,08/02/19 13:09,"300 Chestnut St, Austin, TX 73301" -247397,Lightning Charging Cable,1,14.95,08/03/19 12:41,"554 Lincoln St, Austin, TX 73301" -247398,ThinkPad Laptop,1,999.99,08/22/19 19:25,"477 Walnut St, Boston, MA 02215" -247399,Macbook Pro Laptop,1,1700,08/18/19 21:57,"688 Spruce St, Atlanta, GA 30301" -247400,AAA Batteries (4-pack),1,2.99,08/18/19 21:09,"283 Cedar St, Dallas, TX 75001" -247401,Apple Airpods Headphones,1,150,08/27/19 18:56,"864 Meadow St, Boston, MA 02215" -247402,USB-C Charging Cable,1,11.95,08/12/19 15:53,"580 Main St, San Francisco, CA 94016" -247403,iPhone,1,700,08/07/19 09:03,"987 South St, San Francisco, CA 94016" -247404,AA Batteries (4-pack),1,3.84,08/24/19 13:38,"313 4th St, San Francisco, CA 94016" -247405,Flatscreen TV,1,300,08/22/19 22:11,"624 Sunset St, Atlanta, GA 30301" -247406,AAA Batteries (4-pack),3,2.99,08/19/19 19:44,"795 Cherry St, Dallas, TX 75001" -247407,Bose SoundSport Headphones,1,99.99,08/09/19 09:09,"654 Madison St, Los Angeles, CA 90001" -247408,USB-C Charging Cable,1,11.95,08/26/19 17:34,"44 Walnut St, New York City, NY 10001" -247409,34in Ultrawide Monitor,1,379.99,08/15/19 10:12,"886 Wilson St, Portland, OR 97035" -247410,AAA Batteries (4-pack),1,2.99,08/01/19 10:10,"262 Church St, New York City, NY 10001" -247411,USB-C Charging Cable,1,11.95,08/21/19 12:19,"377 2nd St, Austin, TX 73301" -247412,Apple Airpods Headphones,1,150,08/25/19 18:29,"721 River St, Boston, MA 02215" -247413,Macbook Pro Laptop,1,1700,08/14/19 10:15,"978 Dogwood St, Portland, OR 97035" -247414,Apple Airpods Headphones,1,150,08/21/19 15:39,"290 Lakeview St, Portland, OR 97035" -247415,Lightning Charging Cable,2,14.95,08/23/19 19:10,"283 Main St, Los Angeles, CA 90001" -247416,AAA Batteries (4-pack),1,2.99,08/07/19 09:27,"269 Walnut St, New York City, NY 10001" -247417,Apple Airpods Headphones,1,150,08/10/19 17:27,"736 2nd St, Atlanta, GA 30301" -247418,Apple Airpods Headphones,1,150,08/27/19 17:15,"263 Lincoln St, Boston, MA 02215" -247419,Apple Airpods Headphones,1,150,08/16/19 23:15,"385 Highland St, Los Angeles, CA 90001" -247420,Lightning Charging Cable,1,14.95,08/10/19 19:45,"160 Washington St, San Francisco, CA 94016" -247421,27in FHD Monitor,1,149.99,08/28/19 13:57,"976 7th St, Los Angeles, CA 90001" -247422,Google Phone,1,600,08/15/19 20:39,"54 9th St, Los Angeles, CA 90001" -247423,Apple Airpods Headphones,1,150,08/27/19 20:05,"460 Main St, San Francisco, CA 94016" -247424,Wired Headphones,1,11.99,08/21/19 15:47,"721 13th St, Atlanta, GA 30301" -247425,20in Monitor,1,109.99,08/09/19 19:10,"644 Lincoln St, Los Angeles, CA 90001" -247426,USB-C Charging Cable,2,11.95,08/23/19 16:26,"512 8th St, Dallas, TX 75001" -247427,AAA Batteries (4-pack),1,2.99,08/08/19 10:30,"48 Elm St, Seattle, WA 98101" -247428,Wired Headphones,1,11.99,08/04/19 21:17,"192 Pine St, Los Angeles, CA 90001" -247429,AA Batteries (4-pack),1,3.84,08/07/19 12:06,"675 Walnut St, Los Angeles, CA 90001" -247430,Wired Headphones,1,11.99,08/07/19 17:48,"258 Church St, Austin, TX 73301" -247431,Bose SoundSport Headphones,1,99.99,08/12/19 19:23,"393 8th St, New York City, NY 10001" -247432,20in Monitor,1,109.99,08/23/19 11:40,"790 Meadow St, Atlanta, GA 30301" -247433,27in FHD Monitor,1,149.99,08/22/19 05:59,"757 Adams St, Los Angeles, CA 90001" -247434,Apple Airpods Headphones,1,150,08/17/19 21:54,"138 Hickory St, Atlanta, GA 30301" -247435,iPhone,1,700,08/30/19 16:43,"940 9th St, Boston, MA 02215" -247435,Apple Airpods Headphones,1,150,08/30/19 16:43,"940 9th St, Boston, MA 02215" -247436,AA Batteries (4-pack),2,3.84,08/31/19 23:57,"845 Dogwood St, San Francisco, CA 94016" -247437,ThinkPad Laptop,1,999.99,08/26/19 11:25,"408 2nd St, Atlanta, GA 30301" -247438,Vareebadd Phone,1,400,08/06/19 13:14,"414 8th St, New York City, NY 10001" -247439,USB-C Charging Cable,1,11.95,08/23/19 19:42,"94 Maple St, San Francisco, CA 94016" -247440,Lightning Charging Cable,1,14.95,08/11/19 18:56,"270 Cherry St, Portland, OR 97035" -247441,Lightning Charging Cable,1,14.95,08/06/19 08:54,"871 Madison St, New York City, NY 10001" -247442,27in 4K Gaming Monitor,1,389.99,08/19/19 22:27,"574 Lincoln St, Los Angeles, CA 90001" -247443,27in FHD Monitor,1,149.99,08/15/19 09:49,"467 9th St, New York City, NY 10001" -247444,AA Batteries (4-pack),1,3.84,08/04/19 22:22,"889 Pine St, Los Angeles, CA 90001" -247445,Apple Airpods Headphones,1,150,08/12/19 11:28,"646 Spruce St, New York City, NY 10001" -247446,34in Ultrawide Monitor,1,379.99,08/11/19 09:21,"415 Lakeview St, Boston, MA 02215" -247447,Lightning Charging Cable,1,14.95,08/04/19 12:34,"755 5th St, Boston, MA 02215" -247448,Apple Airpods Headphones,1,150,08/26/19 00:46,"386 Highland St, San Francisco, CA 94016" -247449,Lightning Charging Cable,1,14.95,08/01/19 19:19,"368 Meadow St, New York City, NY 10001" -247450,Macbook Pro Laptop,1,1700,08/31/19 15:36,"803 Chestnut St, San Francisco, CA 94016" -247451,AA Batteries (4-pack),1,3.84,08/13/19 02:24,"476 10th St, New York City, NY 10001" -247452,Apple Airpods Headphones,1,150,08/26/19 10:42,"927 5th St, Atlanta, GA 30301" -247453,Lightning Charging Cable,1,14.95,08/16/19 11:20,"751 Dogwood St, Boston, MA 02215" -247454,27in 4K Gaming Monitor,1,389.99,08/07/19 22:51,"890 Chestnut St, San Francisco, CA 94016" -247455,Lightning Charging Cable,1,14.95,08/04/19 01:54,"657 Spruce St, Los Angeles, CA 90001" -247456,AA Batteries (4-pack),1,3.84,08/10/19 17:27,"574 South St, Seattle, WA 98101" -247457,iPhone,1,700,08/08/19 22:58,"132 Wilson St, Portland, ME 04101" -247457,Lightning Charging Cable,1,14.95,08/08/19 22:58,"132 Wilson St, Portland, ME 04101" -247458,Macbook Pro Laptop,1,1700,08/03/19 17:27,"573 11th St, San Francisco, CA 94016" -247459,Wired Headphones,1,11.99,08/03/19 17:56,"27 Hill St, Portland, OR 97035" -247460,USB-C Charging Cable,1,11.95,08/26/19 08:47,"292 Lakeview St, San Francisco, CA 94016" -247461,AA Batteries (4-pack),1,3.84,08/05/19 23:35,"518 Wilson St, Atlanta, GA 30301" -247462,USB-C Charging Cable,1,11.95,08/31/19 21:31,"289 Cedar St, San Francisco, CA 94016" -247463,iPhone,1,700,08/21/19 20:00,"977 West St, New York City, NY 10001" -247463,Lightning Charging Cable,1,14.95,08/21/19 20:00,"977 West St, New York City, NY 10001" -247464,Apple Airpods Headphones,1,150,08/15/19 06:02,"721 13th St, Boston, MA 02215" -247465,27in FHD Monitor,1,149.99,08/21/19 15:18,"204 Madison St, Dallas, TX 75001" -247466,27in FHD Monitor,1,149.99,08/04/19 19:15,"88 Highland St, Seattle, WA 98101" -247467,27in FHD Monitor,1,149.99,08/29/19 09:01,"958 Pine St, Seattle, WA 98101" -247468,Lightning Charging Cable,1,14.95,08/18/19 13:04,"932 Jefferson St, Boston, MA 02215" -247469,Apple Airpods Headphones,1,150,08/26/19 20:28,"244 Center St, Boston, MA 02215" -247470,AAA Batteries (4-pack),2,2.99,08/02/19 11:15,"852 8th St, San Francisco, CA 94016" -247471,Google Phone,1,600,08/04/19 14:12,"817 6th St, Atlanta, GA 30301" -247472,USB-C Charging Cable,1,11.95,08/01/19 14:54,"453 Willow St, Los Angeles, CA 90001" -247473,Wired Headphones,1,11.99,08/31/19 10:45,"961 Hickory St, New York City, NY 10001" -247474,Wired Headphones,1,11.99,08/25/19 13:32,"641 Main St, Seattle, WA 98101" -247475,Lightning Charging Cable,1,14.95,08/15/19 13:23,"238 Main St, New York City, NY 10001" -247476,USB-C Charging Cable,1,11.95,08/08/19 09:32,"534 Adams St, New York City, NY 10001" -247477,27in FHD Monitor,1,149.99,08/07/19 13:41,"629 Pine St, New York City, NY 10001" -247478,27in FHD Monitor,1,149.99,08/17/19 21:16,"670 Elm St, Dallas, TX 75001" -247479,Apple Airpods Headphones,1,150,08/28/19 08:32,"498 Cherry St, San Francisco, CA 94016" -247480,Wired Headphones,1,11.99,08/05/19 06:59,"789 Chestnut St, Dallas, TX 75001" -247481,Bose SoundSport Headphones,1,99.99,08/31/19 13:00,"447 11th St, San Francisco, CA 94016" -247482,AA Batteries (4-pack),1,3.84,08/22/19 15:59,"540 Sunset St, Los Angeles, CA 90001" -247483,Google Phone,1,600,08/25/19 15:03,"768 West St, Boston, MA 02215" -247484,Bose SoundSport Headphones,1,99.99,08/20/19 09:33,"431 14th St, New York City, NY 10001" -247485,Wired Headphones,1,11.99,08/18/19 12:32,"949 Washington St, New York City, NY 10001" -247486,Apple Airpods Headphones,1,150,08/11/19 13:51,"325 Lincoln St, Boston, MA 02215" -247487,27in 4K Gaming Monitor,1,389.99,08/30/19 21:33,"770 Dogwood St, San Francisco, CA 94016" -247488,AAA Batteries (4-pack),1,2.99,08/23/19 11:08,"218 Lake St, Portland, OR 97035" -247489,AAA Batteries (4-pack),1,2.99,08/27/19 19:47,"901 River St, San Francisco, CA 94016" -247490,USB-C Charging Cable,2,11.95,08/20/19 21:17,"797 Lakeview St, New York City, NY 10001" -247490,Wired Headphones,1,11.99,08/20/19 21:17,"797 Lakeview St, New York City, NY 10001" -247491,AAA Batteries (4-pack),1,2.99,08/01/19 23:50,"591 7th St, San Francisco, CA 94016" -247492,AAA Batteries (4-pack),3,2.99,08/09/19 20:18,"875 Center St, Los Angeles, CA 90001" -247493,Lightning Charging Cable,1,14.95,08/18/19 18:21,"898 Dogwood St, Boston, MA 02215" -247494,Macbook Pro Laptop,1,1700,08/10/19 16:08,"463 Ridge St, San Francisco, CA 94016" -247495,Apple Airpods Headphones,1,150,08/24/19 20:57,"903 Cherry St, Dallas, TX 75001" -247496,USB-C Charging Cable,1,11.95,08/04/19 21:52,"40 6th St, Los Angeles, CA 90001" -247497,ThinkPad Laptop,1,999.99,08/30/19 16:17,"868 Hickory St, Los Angeles, CA 90001" -247498,Lightning Charging Cable,1,14.95,08/20/19 13:24,"460 Maple St, Portland, ME 04101" -247499,USB-C Charging Cable,1,11.95,08/02/19 06:26,"233 Main St, Los Angeles, CA 90001" -247500,ThinkPad Laptop,1,999.99,08/28/19 13:28,"55 Main St, Dallas, TX 75001" -247501,Apple Airpods Headphones,1,150,08/31/19 01:00,"664 Cedar St, Los Angeles, CA 90001" -247502,Wired Headphones,1,11.99,08/31/19 11:11,"577 Forest St, Los Angeles, CA 90001" -247503,Bose SoundSport Headphones,1,99.99,08/26/19 18:20,"194 Main St, Austin, TX 73301" -247504,AAA Batteries (4-pack),1,2.99,08/19/19 16:50,"330 Meadow St, San Francisco, CA 94016" -247505,27in 4K Gaming Monitor,1,389.99,08/13/19 08:55,"263 Ridge St, Dallas, TX 75001" -247506,Lightning Charging Cable,1,14.95,08/10/19 07:59,"691 Jefferson St, Atlanta, GA 30301" -247507,iPhone,1,700,08/07/19 19:28,"354 Main St, New York City, NY 10001" -247508,Lightning Charging Cable,1,14.95,08/18/19 08:15,"231 5th St, New York City, NY 10001" -247509,27in FHD Monitor,1,149.99,08/23/19 18:23,"770 Willow St, Dallas, TX 75001" -247510,USB-C Charging Cable,1,11.95,08/26/19 16:41,"44 Cedar St, Los Angeles, CA 90001" -247511,Bose SoundSport Headphones,1,99.99,08/16/19 19:53,"262 South St, San Francisco, CA 94016" -247512,34in Ultrawide Monitor,1,379.99,08/13/19 21:15,"156 4th St, Atlanta, GA 30301" -247513,34in Ultrawide Monitor,1,379.99,08/27/19 00:28,"976 Elm St, New York City, NY 10001" -247514,Lightning Charging Cable,1,14.95,08/14/19 17:22,"97 Willow St, Seattle, WA 98101" -247515,USB-C Charging Cable,1,11.95,08/15/19 15:59,"876 Lake St, Dallas, TX 75001" -247516,Lightning Charging Cable,2,14.95,08/12/19 08:44,"181 River St, San Francisco, CA 94016" -247517,USB-C Charging Cable,1,11.95,08/24/19 20:21,"72 Center St, New York City, NY 10001" -247518,34in Ultrawide Monitor,1,379.99,08/30/19 19:46,"660 Washington St, Dallas, TX 75001" -247519,Vareebadd Phone,1,400,08/09/19 16:35,"136 1st St, Los Angeles, CA 90001" -247519,AA Batteries (4-pack),2,3.84,08/09/19 16:35,"136 1st St, Los Angeles, CA 90001" -247520,Bose SoundSport Headphones,1,99.99,08/29/19 15:18,"146 Meadow St, San Francisco, CA 94016" -247521,AAA Batteries (4-pack),2,2.99,08/09/19 23:48,"339 12th St, Dallas, TX 75001" -247522,LG Washing Machine,1,600.0,08/16/19 11:24,"746 Highland St, San Francisco, CA 94016" -247523,iPhone,1,700,08/12/19 15:57,"508 North St, Austin, TX 73301" -247524,Google Phone,1,600,08/08/19 18:41,"267 Willow St, New York City, NY 10001" -247525,AA Batteries (4-pack),1,3.84,08/19/19 08:15,"51 14th St, San Francisco, CA 94016" -247526,AA Batteries (4-pack),3,3.84,08/06/19 12:39,"795 Johnson St, Seattle, WA 98101" -247527,Google Phone,1,600,08/11/19 19:28,"337 Chestnut St, Dallas, TX 75001" -247528,AAA Batteries (4-pack),2,2.99,08/07/19 09:02,"627 Forest St, Dallas, TX 75001" -247529,34in Ultrawide Monitor,1,379.99,08/29/19 10:32,"266 8th St, New York City, NY 10001" -247530,34in Ultrawide Monitor,1,379.99,08/22/19 15:42,"169 Hickory St, Boston, MA 02215" -247531,Lightning Charging Cable,1,14.95,08/23/19 17:59,"591 Cherry St, Atlanta, GA 30301" -247532,USB-C Charging Cable,1,11.95,08/27/19 21:28,"456 River St, Boston, MA 02215" -247533,iPhone,1,700,08/25/19 08:45,"374 9th St, San Francisco, CA 94016" -247533,Flatscreen TV,1,300,08/25/19 08:45,"374 9th St, San Francisco, CA 94016" -247534,34in Ultrawide Monitor,1,379.99,08/15/19 06:53,"315 5th St, Atlanta, GA 30301" -247535,Bose SoundSport Headphones,1,99.99,08/27/19 14:47,"881 Pine St, Los Angeles, CA 90001" -247536,Flatscreen TV,1,300,08/13/19 10:27,"144 Lakeview St, Los Angeles, CA 90001" -247537,AA Batteries (4-pack),1,3.84,08/31/19 19:41,"567 11th St, San Francisco, CA 94016" -247537,Lightning Charging Cable,1,14.95,08/31/19 19:41,"567 11th St, San Francisco, CA 94016" -247538,Vareebadd Phone,1,400,08/17/19 20:51,"833 1st St, Austin, TX 73301" -247539,27in 4K Gaming Monitor,1,389.99,08/25/19 12:57,"452 Johnson St, Dallas, TX 75001" -247540,Apple Airpods Headphones,1,150,08/01/19 19:19,"724 Adams St, Atlanta, GA 30301" -247541,AA Batteries (4-pack),2,3.84,08/24/19 21:38,"97 Adams St, San Francisco, CA 94016" -247542,ThinkPad Laptop,1,999.99,08/11/19 10:26,"366 Dogwood St, San Francisco, CA 94016" -247543,iPhone,1,700,08/14/19 07:48,"357 Hickory St, Atlanta, GA 30301" -247543,Apple Airpods Headphones,1,150,08/14/19 07:48,"357 Hickory St, Atlanta, GA 30301" -247544,Lightning Charging Cable,2,14.95,08/21/19 12:51,"650 Pine St, Los Angeles, CA 90001" -247545,Lightning Charging Cable,1,14.95,08/25/19 16:34,"146 Chestnut St, San Francisco, CA 94016" -247546,AAA Batteries (4-pack),3,2.99,08/29/19 13:44,"122 4th St, New York City, NY 10001" -247547,Wired Headphones,1,11.99,08/21/19 16:57,"72 Maple St, San Francisco, CA 94016" -247548,USB-C Charging Cable,1,11.95,08/28/19 10:30,"321 Ridge St, Boston, MA 02215" -247549,Apple Airpods Headphones,1,150,08/31/19 10:57,"221 Lincoln St, Boston, MA 02215" -247550,AAA Batteries (4-pack),2,2.99,08/10/19 01:28,"74 5th St, San Francisco, CA 94016" -247551,Bose SoundSport Headphones,1,99.99,08/01/19 10:48,"355 Jackson St, Portland, OR 97035" -247552,Bose SoundSport Headphones,1,99.99,08/13/19 13:19,"945 Madison St, Austin, TX 73301" -247553,ThinkPad Laptop,1,999.99,08/30/19 21:31,"419 9th St, Los Angeles, CA 90001" -247554,Wired Headphones,2,11.99,08/26/19 18:06,"22 Madison St, Atlanta, GA 30301" -247555,AA Batteries (4-pack),2,3.84,08/14/19 12:48,"717 Lake St, San Francisco, CA 94016" -247556,Bose SoundSport Headphones,1,99.99,08/25/19 13:41,"528 Park St, San Francisco, CA 94016" -247557,27in 4K Gaming Monitor,1,389.99,08/30/19 13:17,"916 7th St, New York City, NY 10001" -247558,AAA Batteries (4-pack),1,2.99,08/19/19 15:11,"390 11th St, New York City, NY 10001" -247558,Apple Airpods Headphones,1,150,08/19/19 15:11,"390 11th St, New York City, NY 10001" -247559,AAA Batteries (4-pack),1,2.99,08/21/19 07:55,"317 5th St, Los Angeles, CA 90001" -247560,Apple Airpods Headphones,1,150,08/13/19 12:20,"824 Lake St, San Francisco, CA 94016" -247561,Google Phone,1,600,08/06/19 19:07,"701 Hill St, San Francisco, CA 94016" -247562,Apple Airpods Headphones,1,150,08/30/19 11:29,"575 Lakeview St, San Francisco, CA 94016" -247563,AA Batteries (4-pack),1,3.84,08/19/19 17:58,"369 Pine St, New York City, NY 10001" -247564,LG Dryer,1,600.0,08/06/19 20:32,"152 Ridge St, Dallas, TX 75001" -247565,Lightning Charging Cable,1,14.95,08/05/19 21:48,"925 9th St, New York City, NY 10001" -247566,Flatscreen TV,1,300,08/18/19 14:14,"340 North St, Atlanta, GA 30301" -247567,iPhone,1,700,08/31/19 22:52,"329 12th St, New York City, NY 10001" -247568,34in Ultrawide Monitor,1,379.99,08/03/19 17:14,"301 2nd St, San Francisco, CA 94016" -247569,34in Ultrawide Monitor,1,379.99,08/11/19 20:37,"53 Meadow St, Dallas, TX 75001" -247570,AAA Batteries (4-pack),2,2.99,08/17/19 12:32,"366 River St, San Francisco, CA 94016" -247571,20in Monitor,1,109.99,08/02/19 09:37,"232 4th St, Dallas, TX 75001" -247572,Vareebadd Phone,1,400,08/28/19 12:33,"894 11th St, Los Angeles, CA 90001" -247572,Bose SoundSport Headphones,1,99.99,08/28/19 12:33,"894 11th St, Los Angeles, CA 90001" -247573,AA Batteries (4-pack),1,3.84,08/10/19 08:03,"580 Wilson St, San Francisco, CA 94016" -247574,34in Ultrawide Monitor,1,379.99,08/23/19 14:19,"789 9th St, Dallas, TX 75001" -247575,AA Batteries (4-pack),1,3.84,08/29/19 13:43,"143 Ridge St, New York City, NY 10001" -247576,Wired Headphones,1,11.99,08/11/19 20:52,"170 Sunset St, Boston, MA 02215" -247577,Wired Headphones,1,11.99,08/21/19 11:06,"297 9th St, San Francisco, CA 94016" -247578,iPhone,1,700,08/02/19 16:57,"523 Wilson St, Portland, OR 97035" -247579,AA Batteries (4-pack),1,3.84,08/27/19 12:03,"573 7th St, San Francisco, CA 94016" -247580,Lightning Charging Cable,1,14.95,08/06/19 16:56,"99 Meadow St, Los Angeles, CA 90001" -247581,AAA Batteries (4-pack),1,2.99,08/03/19 18:45,"196 Sunset St, Dallas, TX 75001" -247582,Apple Airpods Headphones,1,150,08/15/19 17:51,"998 Adams St, New York City, NY 10001" -247583,34in Ultrawide Monitor,1,379.99,08/28/19 08:06,"821 Cedar St, San Francisco, CA 94016" -247584,AA Batteries (4-pack),1,3.84,08/05/19 15:12,"869 6th St, Los Angeles, CA 90001" -247585,Bose SoundSport Headphones,1,99.99,08/19/19 06:36,"442 2nd St, New York City, NY 10001" -247586,USB-C Charging Cable,1,11.95,08/29/19 10:29,"540 Forest St, San Francisco, CA 94016" -247587,Wired Headphones,1,11.99,08/09/19 23:25,"875 Dogwood St, Boston, MA 02215" -247588,AA Batteries (4-pack),1,3.84,08/06/19 13:24,"113 Adams St, Los Angeles, CA 90001" -247589,Google Phone,1,600,08/17/19 12:08,"585 12th St, Portland, OR 97035" -247590,AA Batteries (4-pack),1,3.84,08/01/19 20:49,"260 Lincoln St, New York City, NY 10001" -247591,ThinkPad Laptop,1,999.99,08/13/19 23:41,"828 5th St, Boston, MA 02215" -247592,AA Batteries (4-pack),1,3.84,08/28/19 11:35,"314 River St, Los Angeles, CA 90001" -247593,Apple Airpods Headphones,1,150,08/01/19 18:22,"726 Wilson St, San Francisco, CA 94016" -247594,Apple Airpods Headphones,1,150,08/14/19 08:21,"569 Walnut St, San Francisco, CA 94016" -247595,27in FHD Monitor,1,149.99,08/30/19 09:41,"384 4th St, San Francisco, CA 94016" -247596,ThinkPad Laptop,1,999.99,08/03/19 15:36,"753 North St, Dallas, TX 75001" -247597,iPhone,1,700,08/10/19 20:27,"926 Walnut St, Boston, MA 02215" -247598,27in FHD Monitor,1,149.99,08/29/19 12:43,"342 Adams St, Los Angeles, CA 90001" -247599,Flatscreen TV,1,300,08/01/19 08:50,"75 Madison St, Atlanta, GA 30301" -247600,AAA Batteries (4-pack),1,2.99,08/09/19 20:01,"394 Sunset St, San Francisco, CA 94016" -247601,Macbook Pro Laptop,1,1700,08/17/19 09:12,"282 Lakeview St, Seattle, WA 98101" -247602,AAA Batteries (4-pack),2,2.99,08/21/19 15:45,"418 Chestnut St, New York City, NY 10001" -247603,Lightning Charging Cable,1,14.95,08/17/19 18:30,"53 Washington St, Austin, TX 73301" -247604,Apple Airpods Headphones,1,150,08/16/19 11:44,"731 Dogwood St, San Francisco, CA 94016" -247605,USB-C Charging Cable,1,11.95,08/14/19 10:34,"311 Chestnut St, Los Angeles, CA 90001" -247606,Bose SoundSport Headphones,1,99.99,08/08/19 18:51,"181 Meadow St, Dallas, TX 75001" -247607,Wired Headphones,1,11.99,08/20/19 19:04,"230 Jackson St, Los Angeles, CA 90001" -247608,iPhone,1,700,08/24/19 10:07,"444 West St, San Francisco, CA 94016" -247609,AA Batteries (4-pack),1,3.84,08/23/19 21:50,"241 8th St, San Francisco, CA 94016" -247610,Apple Airpods Headphones,1,150,08/13/19 08:41,"591 Willow St, Los Angeles, CA 90001" -247611,27in FHD Monitor,1,149.99,08/24/19 19:01,"601 Jackson St, New York City, NY 10001" -247612,Wired Headphones,1,11.99,08/06/19 19:57,"419 11th St, Los Angeles, CA 90001" -247613,Flatscreen TV,1,300,08/22/19 21:46,"624 Dogwood St, San Francisco, CA 94016" -247614,34in Ultrawide Monitor,1,379.99,08/05/19 18:19,"185 South St, Austin, TX 73301" -247615,AAA Batteries (4-pack),1,2.99,08/05/19 05:18,"665 River St, Austin, TX 73301" -247616,Wired Headphones,1,11.99,08/11/19 14:55,"901 Meadow St, Dallas, TX 75001" -247617,Wired Headphones,1,11.99,08/09/19 00:18,"231 Forest St, New York City, NY 10001" -247618,20in Monitor,1,109.99,08/23/19 13:41,"184 Hickory St, Los Angeles, CA 90001" -247619,iPhone,1,700,08/17/19 14:55,"166 West St, Portland, OR 97035" -247620,AA Batteries (4-pack),1,3.84,08/26/19 21:37,"831 Lake St, Portland, OR 97035" -247621,Google Phone,1,600,08/26/19 19:37,"940 Forest St, Los Angeles, CA 90001" -247622,Vareebadd Phone,1,400,08/04/19 15:38,"237 Cedar St, Austin, TX 73301" -247623,iPhone,1,700,08/13/19 12:46,"565 2nd St, Atlanta, GA 30301" -247624,27in FHD Monitor,1,149.99,08/25/19 17:55,"628 Chestnut St, San Francisco, CA 94016" -247625,AAA Batteries (4-pack),1,2.99,08/30/19 12:20,"594 Willow St, San Francisco, CA 94016" -247626,AA Batteries (4-pack),1,3.84,08/04/19 10:30,"243 2nd St, Boston, MA 02215" -247627,20in Monitor,1,109.99,08/24/19 20:23,"210 10th St, Dallas, TX 75001" -247628,27in 4K Gaming Monitor,1,389.99,08/25/19 09:59,"233 Pine St, Los Angeles, CA 90001" -247629,LG Dryer,1,600.0,08/02/19 19:15,"958 Main St, San Francisco, CA 94016" -247630,Wired Headphones,1,11.99,08/23/19 18:59,"957 Willow St, Dallas, TX 75001" -247631,20in Monitor,1,109.99,08/04/19 18:04,"594 12th St, Los Angeles, CA 90001" -247632,iPhone,1,700,08/17/19 14:37,"979 Lakeview St, New York City, NY 10001" -247632,Apple Airpods Headphones,1,150,08/17/19 14:37,"979 Lakeview St, New York City, NY 10001" -247633,Wired Headphones,1,11.99,08/31/19 11:52,"130 Jefferson St, Seattle, WA 98101" -247634,Apple Airpods Headphones,1,150,08/08/19 14:18,"190 2nd St, Dallas, TX 75001" -247635,AAA Batteries (4-pack),1,2.99,08/13/19 07:02,"782 Maple St, Los Angeles, CA 90001" -247636,Bose SoundSport Headphones,1,99.99,08/21/19 18:34,"84 Dogwood St, Seattle, WA 98101" -247637,Vareebadd Phone,1,400,08/27/19 19:48,"680 7th St, Seattle, WA 98101" -247638,Lightning Charging Cable,1,14.95,08/26/19 11:58,"573 Lincoln St, Dallas, TX 75001" -247639,Apple Airpods Headphones,1,150,08/02/19 14:22,"750 Spruce St, Seattle, WA 98101" -247640,27in FHD Monitor,1,149.99,08/16/19 19:57,"720 14th St, New York City, NY 10001" -247640,Lightning Charging Cable,1,14.95,08/16/19 19:57,"720 14th St, New York City, NY 10001" -247641,Flatscreen TV,1,300,08/31/19 17:05,"978 Church St, Dallas, TX 75001" -247642,Bose SoundSport Headphones,1,99.99,08/11/19 09:50,"800 9th St, Austin, TX 73301" -247643,AAA Batteries (4-pack),1,2.99,08/26/19 19:54,"419 6th St, Austin, TX 73301" -247644,AAA Batteries (4-pack),1,2.99,08/22/19 13:10,"724 Park St, Atlanta, GA 30301" -247645,Bose SoundSport Headphones,1,99.99,08/13/19 07:33,"909 South St, San Francisco, CA 94016" -247646,Google Phone,1,600,08/01/19 23:49,"258 11th St, Portland, OR 97035" -247646,Wired Headphones,1,11.99,08/01/19 23:49,"258 11th St, Portland, OR 97035" -247647,AAA Batteries (4-pack),1,2.99,08/17/19 13:31,"446 Highland St, Austin, TX 73301" -247648,AAA Batteries (4-pack),1,2.99,08/29/19 03:11,"680 14th St, San Francisco, CA 94016" -247649,Bose SoundSport Headphones,2,99.99,08/07/19 15:55,"528 Dogwood St, Atlanta, GA 30301" -247650,AA Batteries (4-pack),1,3.84,08/11/19 08:22,"484 Johnson St, Atlanta, GA 30301" -247650,Lightning Charging Cable,1,14.95,08/11/19 08:22,"484 Johnson St, Atlanta, GA 30301" -247651,AAA Batteries (4-pack),3,2.99,08/05/19 20:31,"110 14th St, Dallas, TX 75001" -247652,27in FHD Monitor,1,149.99,08/09/19 10:23,"858 Dogwood St, Portland, OR 97035" -247653,27in 4K Gaming Monitor,1,389.99,08/29/19 15:53,"182 Park St, Portland, OR 97035" -247654,Lightning Charging Cable,1,14.95,08/16/19 19:23,"830 Park St, Atlanta, GA 30301" -247655,AA Batteries (4-pack),2,3.84,08/06/19 15:00,"512 River St, Seattle, WA 98101" -247656,20in Monitor,1,109.99,08/04/19 08:37,"886 Lincoln St, San Francisco, CA 94016" -247657,34in Ultrawide Monitor,1,379.99,08/22/19 09:23,"993 Ridge St, Los Angeles, CA 90001" -247658,LG Dryer,1,600.0,08/28/19 20:49,"534 11th St, San Francisco, CA 94016" -247659,Lightning Charging Cable,1,14.95,08/12/19 08:44,"680 West St, Dallas, TX 75001" -247660,USB-C Charging Cable,1,11.95,08/20/19 16:14,"961 Sunset St, New York City, NY 10001" -247661,AA Batteries (4-pack),1,3.84,08/25/19 09:58,"114 Lakeview St, New York City, NY 10001" -247662,34in Ultrawide Monitor,1,379.99,08/06/19 13:21,"909 Lake St, San Francisco, CA 94016" -247663,AAA Batteries (4-pack),2,2.99,08/24/19 07:42,"555 Walnut St, Los Angeles, CA 90001" -247664,Lightning Charging Cable,1,14.95,08/03/19 15:26,"965 Ridge St, San Francisco, CA 94016" -247665,AAA Batteries (4-pack),2,2.99,08/23/19 17:14,"975 Meadow St, Los Angeles, CA 90001" -247666,Google Phone,1,600,08/17/19 08:05,"782 Forest St, San Francisco, CA 94016" -247667,Wired Headphones,1,11.99,08/16/19 16:23,"452 Sunset St, Seattle, WA 98101" -247668,Lightning Charging Cable,1,14.95,08/26/19 11:28,"996 Forest St, New York City, NY 10001" -247669,Apple Airpods Headphones,1,150,08/11/19 17:39,"390 Meadow St, Los Angeles, CA 90001" -247670,Vareebadd Phone,1,400,08/14/19 21:29,"923 7th St, Austin, TX 73301" -247671,USB-C Charging Cable,1,11.95,08/20/19 00:30,"603 Spruce St, Los Angeles, CA 90001" -247672,AA Batteries (4-pack),2,3.84,08/28/19 22:26,"569 Highland St, San Francisco, CA 94016" -247673,USB-C Charging Cable,1,11.95,08/19/19 19:27,"600 River St, San Francisco, CA 94016" -247673,USB-C Charging Cable,1,11.95,08/19/19 19:27,"600 River St, San Francisco, CA 94016" -247674,Bose SoundSport Headphones,1,99.99,08/23/19 22:25,"124 12th St, San Francisco, CA 94016" -247675,Flatscreen TV,1,300,08/13/19 18:31,"964 Dogwood St, Dallas, TX 75001" -247676,AAA Batteries (4-pack),1,2.99,08/06/19 11:13,"941 Sunset St, Los Angeles, CA 90001" -247677,AAA Batteries (4-pack),2,2.99,08/25/19 20:55,"936 Chestnut St, Los Angeles, CA 90001" -247678,34in Ultrawide Monitor,1,379.99,08/03/19 11:44,"642 Willow St, Seattle, WA 98101" -247679,Bose SoundSport Headphones,1,99.99,08/11/19 08:32,"93 9th St, San Francisco, CA 94016" -247680,Wired Headphones,1,11.99,08/02/19 06:50,"421 7th St, San Francisco, CA 94016" -247681,Bose SoundSport Headphones,1,99.99,08/06/19 12:01,"391 Johnson St, Los Angeles, CA 90001" -247682,Vareebadd Phone,1,400,08/30/19 23:36,"888 Cedar St, San Francisco, CA 94016" -247683,34in Ultrawide Monitor,1,379.99,08/05/19 20:54,"647 Lakeview St, Atlanta, GA 30301" -247684,Bose SoundSport Headphones,1,99.99,08/03/19 10:14,"260 Maple St, Austin, TX 73301" -247685,AA Batteries (4-pack),1,3.84,08/08/19 23:36,"528 Main St, Dallas, TX 75001" -247686,AA Batteries (4-pack),1,3.84,08/29/19 19:46,"528 Elm St, Los Angeles, CA 90001" -247687,Wired Headphones,2,11.99,08/17/19 19:33,"350 Jackson St, Atlanta, GA 30301" -247688,Bose SoundSport Headphones,1,99.99,08/06/19 16:11,"15 12th St, San Francisco, CA 94016" -247689,Wired Headphones,1,11.99,08/04/19 19:44,"858 Madison St, Boston, MA 02215" -247690,AA Batteries (4-pack),4,3.84,08/27/19 11:05,"323 Hill St, Los Angeles, CA 90001" -247691,Lightning Charging Cable,1,14.95,08/27/19 21:58,"341 Lake St, Atlanta, GA 30301" -247692,Bose SoundSport Headphones,1,99.99,08/31/19 16:09,"856 River St, Boston, MA 02215" -247693,iPhone,1,700,08/23/19 22:17,"589 Spruce St, Portland, ME 04101" -247693,Lightning Charging Cable,1,14.95,08/23/19 22:17,"589 Spruce St, Portland, ME 04101" -247694,iPhone,1,700,08/11/19 16:12,"262 12th St, New York City, NY 10001" -247695,iPhone,1,700,08/23/19 21:21,"463 Maple St, San Francisco, CA 94016" -247696,USB-C Charging Cable,1,11.95,08/05/19 10:33,"797 Park St, Los Angeles, CA 90001" -247697,Flatscreen TV,1,300,08/04/19 17:34,"209 Pine St, Seattle, WA 98101" -247698,Google Phone,1,600,08/04/19 20:34,"33 14th St, Atlanta, GA 30301" -247699,27in 4K Gaming Monitor,1,389.99,08/16/19 15:41,"682 7th St, Seattle, WA 98101" -247700,20in Monitor,1,109.99,08/27/19 19:15,"210 Adams St, Boston, MA 02215" -247701,Wired Headphones,1,11.99,08/03/19 10:46,"967 West St, New York City, NY 10001" -247702,Bose SoundSport Headphones,1,99.99,08/31/19 21:17,"227 Forest St, Los Angeles, CA 90001" -247703,27in 4K Gaming Monitor,1,389.99,08/31/19 00:50,"187 13th St, San Francisco, CA 94016" -247704,Macbook Pro Laptop,1,1700,08/25/19 14:07,"165 River St, Dallas, TX 75001" -247705,Lightning Charging Cable,1,14.95,08/24/19 13:06,"597 12th St, Austin, TX 73301" -247706,AAA Batteries (4-pack),3,2.99,08/27/19 19:19,"788 Forest St, San Francisco, CA 94016" -247707,Lightning Charging Cable,1,14.95,08/28/19 19:33,"840 Cedar St, Portland, OR 97035" -247708,AA Batteries (4-pack),1,3.84,08/21/19 20:18,"1 Washington St, San Francisco, CA 94016" -247709,Apple Airpods Headphones,1,150,08/04/19 15:52,"239 Park St, Portland, OR 97035" -247710,iPhone,1,700,08/24/19 18:13,"399 Cherry St, Boston, MA 02215" -247711,AAA Batteries (4-pack),1,2.99,08/07/19 19:31,"178 5th St, San Francisco, CA 94016" -247712,AA Batteries (4-pack),2,3.84,08/21/19 08:41,"73 Chestnut St, New York City, NY 10001" -247713,USB-C Charging Cable,1,11.95,08/16/19 23:50,"484 1st St, Los Angeles, CA 90001" -247714,Bose SoundSport Headphones,1,99.99,08/18/19 10:45,"969 Adams St, Los Angeles, CA 90001" -247715,Apple Airpods Headphones,1,150,08/04/19 12:14,"933 11th St, Portland, OR 97035" -247716,AAA Batteries (4-pack),1,2.99,08/13/19 17:23,"743 Johnson St, San Francisco, CA 94016" -247717,Bose SoundSport Headphones,1,99.99,08/25/19 21:16,"892 Center St, Boston, MA 02215" -247718,Bose SoundSport Headphones,1,99.99,08/19/19 16:29,"893 11th St, Los Angeles, CA 90001" -247719,Lightning Charging Cable,1,14.95,08/20/19 10:03,"967 Park St, Dallas, TX 75001" -247720,20in Monitor,1,109.99,08/04/19 18:43,"95 Chestnut St, Los Angeles, CA 90001" -247721,Apple Airpods Headphones,1,150,08/30/19 15:09,"352 5th St, New York City, NY 10001" -247722,USB-C Charging Cable,1,11.95,08/22/19 15:16,"624 8th St, San Francisco, CA 94016" -247723,AAA Batteries (4-pack),1,2.99,08/12/19 08:47,"31 Spruce St, San Francisco, CA 94016" -247724,Lightning Charging Cable,1,14.95,08/09/19 17:00,"223 Park St, Dallas, TX 75001" -247725,20in Monitor,1,109.99,08/01/19 12:58,"270 12th St, Seattle, WA 98101" -247726,Wired Headphones,1,11.99,08/31/19 14:13,"932 Hill St, Los Angeles, CA 90001" -247727,Bose SoundSport Headphones,1,99.99,08/07/19 13:43,"759 14th St, Los Angeles, CA 90001" -247728,27in FHD Monitor,1,149.99,08/13/19 17:09,"693 River St, Seattle, WA 98101" -247729,Apple Airpods Headphones,1,150,08/13/19 23:44,"193 Center St, Atlanta, GA 30301" -247730,Wired Headphones,1,11.99,08/22/19 15:58,"144 Spruce St, Boston, MA 02215" -247731,Lightning Charging Cable,1,14.95,08/26/19 15:35,"290 7th St, San Francisco, CA 94016" -247732,Lightning Charging Cable,1,14.95,08/31/19 15:03,"796 Wilson St, Boston, MA 02215" -247733,Wired Headphones,1,11.99,08/31/19 10:32,"527 Park St, Atlanta, GA 30301" -247734,iPhone,1,700,08/29/19 12:34,"139 2nd St, Atlanta, GA 30301" -247734,Lightning Charging Cable,1,14.95,08/29/19 12:34,"139 2nd St, Atlanta, GA 30301" -247735,Wired Headphones,1,11.99,08/22/19 01:06,"740 1st St, San Francisco, CA 94016" -247736,Wired Headphones,1,11.99,08/10/19 19:36,"457 12th St, Dallas, TX 75001" -247737,20in Monitor,1,109.99,08/30/19 11:25,"855 2nd St, Boston, MA 02215" -247738,Lightning Charging Cable,1,14.95,08/17/19 16:17,"991 Jackson St, Los Angeles, CA 90001" -247739,Wired Headphones,1,11.99,08/17/19 10:35,"683 Madison St, Boston, MA 02215" -247740,Lightning Charging Cable,1,14.95,08/21/19 20:04,"453 Dogwood St, Portland, OR 97035" -247741,Lightning Charging Cable,1,14.95,08/28/19 18:48,"725 1st St, San Francisco, CA 94016" -247742,Bose SoundSport Headphones,1,99.99,08/12/19 06:00,"959 7th St, San Francisco, CA 94016" -247743,Apple Airpods Headphones,1,150,08/10/19 21:17,"368 Main St, Dallas, TX 75001" -247744,AAA Batteries (4-pack),2,2.99,08/17/19 22:53,"434 Johnson St, New York City, NY 10001" -247745,AAA Batteries (4-pack),1,2.99,08/24/19 11:28,"782 Cedar St, Los Angeles, CA 90001" -247746,USB-C Charging Cable,1,11.95,08/01/19 12:35,"662 Jefferson St, Boston, MA 02215" -247747,Apple Airpods Headphones,1,150,08/22/19 13:50,"713 West St, San Francisco, CA 94016" -247748,USB-C Charging Cable,1,11.95,08/31/19 18:44,"34 Wilson St, Atlanta, GA 30301" -247749,iPhone,1,700,08/03/19 16:36,"531 7th St, New York City, NY 10001" -247750,ThinkPad Laptop,1,999.99,08/28/19 23:17,"157 Wilson St, Dallas, TX 75001" -247751,AAA Batteries (4-pack),1,2.99,08/21/19 11:09,"743 10th St, Portland, OR 97035" -247752,Apple Airpods Headphones,1,150,08/13/19 18:36,"768 Adams St, Los Angeles, CA 90001" -247753,34in Ultrawide Monitor,1,379.99,08/13/19 21:35,"542 9th St, San Francisco, CA 94016" -247754,USB-C Charging Cable,1,11.95,08/17/19 01:03,"870 Johnson St, San Francisco, CA 94016" -247755,34in Ultrawide Monitor,1,379.99,08/31/19 14:28,"412 Park St, Los Angeles, CA 90001" -247756,Lightning Charging Cable,1,14.95,08/13/19 18:37,"682 Cedar St, Seattle, WA 98101" -247757,AAA Batteries (4-pack),3,2.99,08/07/19 15:25,"561 Cedar St, Austin, TX 73301" -247758,34in Ultrawide Monitor,1,379.99,08/07/19 14:28,"857 6th St, San Francisco, CA 94016" -247759,27in FHD Monitor,1,149.99,08/10/19 23:23,"479 Meadow St, San Francisco, CA 94016" -247760,Bose SoundSport Headphones,1,99.99,08/21/19 20:37,"705 Lake St, Portland, OR 97035" -247761,20in Monitor,1,109.99,08/01/19 22:05,"86 Forest St, Los Angeles, CA 90001" -247762,27in 4K Gaming Monitor,1,389.99,08/15/19 05:10,"50 Cedar St, San Francisco, CA 94016" -247762,Apple Airpods Headphones,1,150,08/15/19 05:10,"50 Cedar St, San Francisco, CA 94016" -247763,AAA Batteries (4-pack),1,2.99,08/22/19 20:25,"820 11th St, San Francisco, CA 94016" -247764,Apple Airpods Headphones,1,150,08/15/19 08:54,"610 Center St, Atlanta, GA 30301" -247765,Wired Headphones,1,11.99,08/04/19 18:55,"271 13th St, Austin, TX 73301" -247766,Apple Airpods Headphones,1,150,08/19/19 09:40,"740 Adams St, Los Angeles, CA 90001" -247767,Wired Headphones,1,11.99,08/22/19 20:43,"495 North St, Portland, OR 97035" -247768,Google Phone,1,600,08/20/19 22:38,"451 7th St, Atlanta, GA 30301" -247768,Bose SoundSport Headphones,1,99.99,08/20/19 22:38,"451 7th St, Atlanta, GA 30301" -247769,Macbook Pro Laptop,1,1700,08/16/19 17:59,"307 Cedar St, Los Angeles, CA 90001" -247770,Lightning Charging Cable,1,14.95,08/14/19 17:32,"620 Ridge St, Atlanta, GA 30301" -247771,Google Phone,1,600,08/24/19 13:24,"145 Church St, Los Angeles, CA 90001" -247771,USB-C Charging Cable,1,11.95,08/24/19 13:24,"145 Church St, Los Angeles, CA 90001" -247772,Lightning Charging Cable,1,14.95,08/11/19 17:52,"333 Johnson St, San Francisco, CA 94016" -247773,AAA Batteries (4-pack),1,2.99,08/04/19 10:26,"244 Willow St, Boston, MA 02215" -247774,Wired Headphones,1,11.99,08/30/19 21:31,"669 1st St, San Francisco, CA 94016" -247775,AA Batteries (4-pack),1,3.84,08/16/19 20:47,"704 Park St, Boston, MA 02215" -247776,AAA Batteries (4-pack),2,2.99,08/28/19 13:42,"196 River St, San Francisco, CA 94016" -247777,Apple Airpods Headphones,1,150,08/06/19 13:16,"134 Adams St, Los Angeles, CA 90001" -247778,Wired Headphones,2,11.99,08/11/19 10:55,"464 2nd St, Portland, ME 04101" -247779,iPhone,1,700,08/13/19 17:59,"365 Forest St, Seattle, WA 98101" -247780,AAA Batteries (4-pack),1,2.99,08/29/19 18:01,"148 Lakeview St, Los Angeles, CA 90001" -247781,Wired Headphones,1,11.99,08/07/19 17:21,"87 9th St, Portland, OR 97035" -247782,AA Batteries (4-pack),2,3.84,08/27/19 20:30,"627 Lakeview St, San Francisco, CA 94016" -247783,Bose SoundSport Headphones,1,99.99,08/08/19 10:46,"916 Center St, San Francisco, CA 94016" -247784,ThinkPad Laptop,1,999.99,08/19/19 13:48,"880 Walnut St, Los Angeles, CA 90001" -247785,Apple Airpods Headphones,1,150,08/04/19 07:57,"801 Lake St, San Francisco, CA 94016" -247786,Apple Airpods Headphones,1,150,08/12/19 18:58,"911 Willow St, Dallas, TX 75001" -247787,USB-C Charging Cable,1,11.95,08/05/19 22:07,"107 Main St, San Francisco, CA 94016" -247788,iPhone,1,700,08/03/19 11:36,"582 Center St, Dallas, TX 75001" -247788,Lightning Charging Cable,2,14.95,08/03/19 11:36,"582 Center St, Dallas, TX 75001" -247789,Lightning Charging Cable,1,14.95,08/29/19 11:36,"362 11th St, San Francisco, CA 94016" -247790,Lightning Charging Cable,1,14.95,08/07/19 08:57,"659 2nd St, Atlanta, GA 30301" -247791,Google Phone,1,600,08/20/19 15:04,"29 14th St, San Francisco, CA 94016" -247792,Apple Airpods Headphones,1,150,08/22/19 12:13,"384 Park St, Boston, MA 02215" -247793,Apple Airpods Headphones,1,150,08/17/19 14:57,"833 Lake St, San Francisco, CA 94016" -247794,Wired Headphones,1,11.99,08/28/19 14:34,"917 Maple St, New York City, NY 10001" -247795,Flatscreen TV,1,300,08/29/19 03:24,"833 Center St, Dallas, TX 75001" -247796,Wired Headphones,1,11.99,08/16/19 08:57,"559 Cherry St, Dallas, TX 75001" -247797,AAA Batteries (4-pack),1,2.99,08/08/19 13:15,"116 Willow St, Los Angeles, CA 90001" -247798,Apple Airpods Headphones,1,150,08/16/19 22:24,"42 Johnson St, New York City, NY 10001" -247799,AA Batteries (4-pack),1,3.84,08/22/19 15:31,"184 1st St, Atlanta, GA 30301" -247800,Wired Headphones,1,11.99,08/17/19 08:06,"786 Cherry St, San Francisco, CA 94016" -247801,Macbook Pro Laptop,1,1700,08/12/19 15:43,"661 Washington St, Los Angeles, CA 90001" -247802,AA Batteries (4-pack),1,3.84,08/08/19 20:24,"671 Walnut St, Los Angeles, CA 90001" -247803,Flatscreen TV,1,300,08/07/19 12:00,"769 Forest St, Boston, MA 02215" -247804,34in Ultrawide Monitor,1,379.99,08/03/19 17:13,"132 Pine St, San Francisco, CA 94016" -247805,AA Batteries (4-pack),1,3.84,08/24/19 12:20,"72 Church St, New York City, NY 10001" -247806,Lightning Charging Cable,1,14.95,08/30/19 10:25,"836 Cherry St, Los Angeles, CA 90001" -247807,Lightning Charging Cable,1,14.95,08/26/19 19:04,"802 Wilson St, Dallas, TX 75001" -247808,Lightning Charging Cable,1,14.95,08/15/19 17:37,"831 Elm St, San Francisco, CA 94016" -247809,Wired Headphones,1,11.99,08/16/19 11:59,"224 Sunset St, San Francisco, CA 94016" -247810,27in FHD Monitor,1,149.99,08/30/19 03:21,"40 2nd St, Portland, OR 97035" -247811,Wired Headphones,2,11.99,08/22/19 22:09,"981 Meadow St, Boston, MA 02215" -247812,27in 4K Gaming Monitor,1,389.99,08/20/19 17:13,"977 Adams St, New York City, NY 10001" -247813,iPhone,1,700,08/13/19 23:20,"623 4th St, Portland, OR 97035" -247814,Wired Headphones,1,11.99,08/25/19 13:56,"996 14th St, Seattle, WA 98101" -247815,AAA Batteries (4-pack),1,2.99,08/16/19 15:59,"707 Hickory St, Atlanta, GA 30301" -247816,AA Batteries (4-pack),3,3.84,08/03/19 14:53,"165 Cedar St, Los Angeles, CA 90001" -247817,Lightning Charging Cable,1,14.95,08/30/19 08:50,"360 Madison St, San Francisco, CA 94016" -247818,Apple Airpods Headphones,1,150,08/07/19 13:02,"938 13th St, Portland, ME 04101" -247819,20in Monitor,1,109.99,08/08/19 15:04,"956 Cherry St, New York City, NY 10001" -247820,AAA Batteries (4-pack),2,2.99,08/11/19 20:16,"27 Washington St, Atlanta, GA 30301" -247821,Bose SoundSport Headphones,1,99.99,08/30/19 11:23,"885 Lake St, Portland, ME 04101" -247822,Lightning Charging Cable,1,14.95,08/16/19 11:47,"453 Cedar St, New York City, NY 10001" -247823,AAA Batteries (4-pack),1,2.99,08/22/19 20:00,"456 13th St, Seattle, WA 98101" -247824,34in Ultrawide Monitor,1,379.99,08/20/19 15:32,"951 Dogwood St, Dallas, TX 75001" -247825,Wired Headphones,1,11.99,08/31/19 23:14,"972 4th St, San Francisco, CA 94016" -247826,Wired Headphones,1,11.99,08/17/19 10:25,"519 Cedar St, Los Angeles, CA 90001" -247826,AAA Batteries (4-pack),1,2.99,08/17/19 10:25,"519 Cedar St, Los Angeles, CA 90001" -247827,USB-C Charging Cable,1,11.95,08/03/19 18:33,"557 11th St, New York City, NY 10001" -247827,34in Ultrawide Monitor,1,379.99,08/03/19 18:33,"557 11th St, New York City, NY 10001" -247828,Lightning Charging Cable,1,14.95,08/13/19 11:30,"715 Meadow St, Boston, MA 02215" -247829,Bose SoundSport Headphones,1,99.99,08/09/19 10:23,"160 6th St, San Francisco, CA 94016" -247830,Lightning Charging Cable,1,14.95,08/12/19 20:07,"699 Washington St, Dallas, TX 75001" -247831,Wired Headphones,1,11.99,08/09/19 20:01,"992 7th St, New York City, NY 10001" -247832,USB-C Charging Cable,1,11.95,08/04/19 22:34,"92 Willow St, San Francisco, CA 94016" -247833,Wired Headphones,1,11.99,08/20/19 14:06,"254 Madison St, Austin, TX 73301" -247834,Google Phone,1,600,08/25/19 18:41,"990 7th St, Boston, MA 02215" -247835,Wired Headphones,1,11.99,08/27/19 16:11,"23 Ridge St, San Francisco, CA 94016" -247836,Lightning Charging Cable,1,14.95,08/10/19 12:01,"363 Lakeview St, San Francisco, CA 94016" -247837,Apple Airpods Headphones,1,150,08/03/19 10:19,"487 Adams St, San Francisco, CA 94016" -247838,Wired Headphones,1,11.99,08/13/19 16:48,"538 Cedar St, San Francisco, CA 94016" -247839,Google Phone,1,600,08/01/19 12:38,"808 Park St, Atlanta, GA 30301" -247839,USB-C Charging Cable,1,11.95,08/01/19 12:38,"808 Park St, Atlanta, GA 30301" -247840,USB-C Charging Cable,1,11.95,08/18/19 10:50,"237 8th St, San Francisco, CA 94016" -247841,AAA Batteries (4-pack),1,2.99,08/15/19 14:42,"296 Spruce St, New York City, NY 10001" -247842,AAA Batteries (4-pack),1,2.99,08/16/19 15:11,"256 Jackson St, Los Angeles, CA 90001" -247843,Apple Airpods Headphones,2,150,08/20/19 07:14,"848 Johnson St, Portland, OR 97035" -247844,AA Batteries (4-pack),1,3.84,08/29/19 10:42,"885 Dogwood St, Seattle, WA 98101" -247845,AA Batteries (4-pack),2,3.84,08/11/19 18:48,"8 5th St, Seattle, WA 98101" -247846,AAA Batteries (4-pack),2,2.99,08/08/19 20:08,"780 Sunset St, Atlanta, GA 30301" -247847,Vareebadd Phone,1,400,08/24/19 14:51,"99 Madison St, New York City, NY 10001" -247848,20in Monitor,1,109.99,08/06/19 12:13,"738 Forest St, Atlanta, GA 30301" -247849,Bose SoundSport Headphones,1,99.99,08/03/19 10:41,"202 Jefferson St, Los Angeles, CA 90001" -247850,27in 4K Gaming Monitor,1,389.99,08/23/19 15:36,"521 Hill St, San Francisco, CA 94016" -247851,Macbook Pro Laptop,1,1700,08/17/19 14:51,"896 Cedar St, Atlanta, GA 30301" -247852,Apple Airpods Headphones,1,150,08/27/19 15:14,"937 Lincoln St, Austin, TX 73301" -247853,Wired Headphones,1,11.99,08/30/19 15:04,"435 Wilson St, Los Angeles, CA 90001" -247854,USB-C Charging Cable,1,11.95,08/30/19 20:08,"355 Park St, Dallas, TX 75001" -247855,USB-C Charging Cable,1,11.95,08/21/19 10:50,"780 Maple St, New York City, NY 10001" -247856,Flatscreen TV,1,300,08/27/19 16:59,"588 Johnson St, Portland, OR 97035" -247857,AAA Batteries (4-pack),2,2.99,08/21/19 09:32,"637 Madison St, San Francisco, CA 94016" -247858,Macbook Pro Laptop,1,1700,08/25/19 15:31,"502 9th St, Atlanta, GA 30301" -247859,USB-C Charging Cable,1,11.95,08/05/19 11:06,"514 9th St, Los Angeles, CA 90001" -247860,Macbook Pro Laptop,1,1700,08/15/19 01:27,"129 Willow St, Los Angeles, CA 90001" -247861,AA Batteries (4-pack),1,3.84,08/01/19 06:16,"124 Park St, San Francisco, CA 94016" -247862,Bose SoundSport Headphones,1,99.99,08/30/19 18:31,"454 14th St, Los Angeles, CA 90001" -247863,Apple Airpods Headphones,1,150,08/10/19 12:24,"665 Willow St, Boston, MA 02215" -247864,AA Batteries (4-pack),1,3.84,08/21/19 18:21,"713 Spruce St, San Francisco, CA 94016" -247865,34in Ultrawide Monitor,1,379.99,08/04/19 13:10,"578 Johnson St, Los Angeles, CA 90001" -247866,AAA Batteries (4-pack),1,2.99,08/30/19 20:11,"288 7th St, San Francisco, CA 94016" -247867,Apple Airpods Headphones,1,150,08/17/19 14:06,"796 Willow St, San Francisco, CA 94016" -247868,34in Ultrawide Monitor,1,379.99,08/19/19 07:39,"151 Willow St, New York City, NY 10001" -247868,34in Ultrawide Monitor,1,379.99,08/19/19 07:39,"151 Willow St, New York City, NY 10001" -247869,AA Batteries (4-pack),1,3.84,08/21/19 06:32,"320 Jefferson St, San Francisco, CA 94016" -247870,Wired Headphones,1,11.99,08/15/19 18:04,"201 Center St, Atlanta, GA 30301" -247871,Bose SoundSport Headphones,1,99.99,08/16/19 19:51,"274 Lakeview St, Boston, MA 02215" -247872,Wired Headphones,1,11.99,08/16/19 17:30,"446 9th St, San Francisco, CA 94016" -247873,USB-C Charging Cable,1,11.95,08/27/19 16:03,"939 Forest St, Boston, MA 02215" -247874,Lightning Charging Cable,1,14.95,08/04/19 22:31,"357 South St, Austin, TX 73301" -247875,Lightning Charging Cable,1,14.95,08/24/19 19:36,"300 6th St, Dallas, TX 75001" -247876,Macbook Pro Laptop,1,1700,08/18/19 21:42,"221 1st St, New York City, NY 10001" -247877,Lightning Charging Cable,1,14.95,08/04/19 08:49,"83 Madison St, Austin, TX 73301" -247878,USB-C Charging Cable,1,11.95,08/14/19 19:57,"777 Willow St, Atlanta, GA 30301" -247879,Wired Headphones,1,11.99,08/07/19 16:01,"770 Lakeview St, Boston, MA 02215" -247879,USB-C Charging Cable,1,11.95,08/07/19 16:01,"770 Lakeview St, Boston, MA 02215" -247880,AA Batteries (4-pack),1,3.84,08/09/19 09:59,"770 Sunset St, San Francisco, CA 94016" -247881,Lightning Charging Cable,1,14.95,08/03/19 20:41,"396 Johnson St, San Francisco, CA 94016" -247882,Bose SoundSport Headphones,1,99.99,08/11/19 08:42,"863 8th St, New York City, NY 10001" -247883,Lightning Charging Cable,2,14.95,08/27/19 23:28,"96 Lakeview St, Atlanta, GA 30301" -247884,27in FHD Monitor,1,149.99,08/26/19 10:21,"756 Spruce St, Los Angeles, CA 90001" -247885,Apple Airpods Headphones,1,150,08/12/19 13:01,"711 Highland St, Seattle, WA 98101" -247886,USB-C Charging Cable,1,11.95,08/15/19 09:50,"653 North St, Seattle, WA 98101" -247887,34in Ultrawide Monitor,1,379.99,08/17/19 13:10,"333 6th St, New York City, NY 10001" -247888,34in Ultrawide Monitor,1,379.99,08/26/19 16:23,"674 Sunset St, Dallas, TX 75001" -247889,27in 4K Gaming Monitor,1,389.99,08/13/19 08:28,"409 Elm St, Los Angeles, CA 90001" -247890,Apple Airpods Headphones,1,150,08/17/19 12:33,"830 14th St, Portland, OR 97035" -247891,USB-C Charging Cable,1,11.95,08/23/19 12:43,"638 Lincoln St, San Francisco, CA 94016" -247891,AA Batteries (4-pack),1,3.84,08/23/19 12:43,"638 Lincoln St, San Francisco, CA 94016" -247892,AAA Batteries (4-pack),1,2.99,08/25/19 16:00,"749 7th St, Atlanta, GA 30301" -247893,AA Batteries (4-pack),3,3.84,08/30/19 17:28,"140 Washington St, Los Angeles, CA 90001" -247894,Lightning Charging Cable,1,14.95,08/31/19 07:15,"954 14th St, Portland, OR 97035" -247895,AA Batteries (4-pack),1,3.84,08/11/19 08:26,"929 Park St, Atlanta, GA 30301" -247896,Flatscreen TV,1,300,08/22/19 11:24,"601 West St, San Francisco, CA 94016" -247897,USB-C Charging Cable,1,11.95,08/21/19 11:08,"949 Willow St, Dallas, TX 75001" -247898,Wired Headphones,2,11.99,08/19/19 19:48,"742 7th St, San Francisco, CA 94016" -247899,Apple Airpods Headphones,1,150,08/09/19 16:29,"253 South St, Austin, TX 73301" -247900,iPhone,1,700,08/16/19 20:12,"944 West St, San Francisco, CA 94016" -247901,Wired Headphones,1,11.99,08/04/19 23:40,"333 North St, Los Angeles, CA 90001" -247902,Wired Headphones,1,11.99,08/25/19 19:44,"718 Lake St, San Francisco, CA 94016" -247903,Wired Headphones,1,11.99,08/10/19 13:30,"653 11th St, San Francisco, CA 94016" -247904,Apple Airpods Headphones,1,150,08/14/19 21:38,"960 Pine St, Dallas, TX 75001" -247905,AAA Batteries (4-pack),1,2.99,08/02/19 16:31,"319 11th St, New York City, NY 10001" -247906,LG Dryer,1,600.0,08/12/19 15:52,"220 Ridge St, San Francisco, CA 94016" -247907,AAA Batteries (4-pack),2,2.99,08/06/19 20:07,"978 Walnut St, Los Angeles, CA 90001" -247908,27in FHD Monitor,1,149.99,08/01/19 11:49,"736 Jackson St, San Francisco, CA 94016" -247909,Lightning Charging Cable,1,14.95,08/29/19 22:22,"77 South St, San Francisco, CA 94016" -247910,Flatscreen TV,1,300,08/20/19 16:20,"807 Adams St, Austin, TX 73301" -247911,USB-C Charging Cable,2,11.95,08/01/19 13:37,"676 Johnson St, Atlanta, GA 30301" -247912,AA Batteries (4-pack),1,3.84,08/16/19 15:53,"976 Hill St, Austin, TX 73301" -247913,Apple Airpods Headphones,1,150,08/24/19 19:05,"842 Madison St, Boston, MA 02215" -247914,27in FHD Monitor,1,149.99,08/14/19 23:29,"961 Ridge St, Los Angeles, CA 90001" -247915,Wired Headphones,1,11.99,08/10/19 19:56,"886 Wilson St, San Francisco, CA 94016" -247916,USB-C Charging Cable,1,11.95,08/12/19 14:11,"609 Dogwood St, Seattle, WA 98101" -247917,Apple Airpods Headphones,1,150,08/30/19 18:02,"764 8th St, San Francisco, CA 94016" -247918,AA Batteries (4-pack),2,3.84,08/20/19 16:02,"356 Jackson St, San Francisco, CA 94016" -247919,34in Ultrawide Monitor,1,379.99,08/10/19 23:57,"168 Willow St, Dallas, TX 75001" -247920,USB-C Charging Cable,1,11.95,08/08/19 18:36,"571 Pine St, Los Angeles, CA 90001" -247921,Apple Airpods Headphones,1,150,08/02/19 20:53,"328 Lakeview St, Boston, MA 02215" -247922,Apple Airpods Headphones,1,150,08/06/19 11:22,"209 Johnson St, New York City, NY 10001" -247923,Bose SoundSport Headphones,1,99.99,08/14/19 02:24,"954 5th St, Atlanta, GA 30301" -247924,USB-C Charging Cable,1,11.95,08/15/19 09:05,"443 River St, Seattle, WA 98101" -247925,Flatscreen TV,1,300,08/19/19 14:34,"913 1st St, Seattle, WA 98101" -247926,AA Batteries (4-pack),1,3.84,08/12/19 22:24,"350 Center St, Boston, MA 02215" -247927,Wired Headphones,1,11.99,08/29/19 20:59,"957 1st St, Austin, TX 73301" -247928,Bose SoundSport Headphones,1,99.99,08/30/19 09:04,"741 14th St, San Francisco, CA 94016" -247929,AA Batteries (4-pack),1,3.84,08/05/19 20:09,"712 Adams St, New York City, NY 10001" -247930,AAA Batteries (4-pack),2,2.99,08/28/19 18:45,"224 Cherry St, San Francisco, CA 94016" -247931,iPhone,1,700,08/17/19 12:31,"912 Highland St, Boston, MA 02215" -247932,Apple Airpods Headphones,1,150,08/15/19 19:22,"960 Ridge St, Austin, TX 73301" -247933,Bose SoundSport Headphones,1,99.99,08/27/19 23:32,"524 Cherry St, Los Angeles, CA 90001" -247934,Bose SoundSport Headphones,1,99.99,08/25/19 21:41,"332 12th St, New York City, NY 10001" -247935,Google Phone,1,600,08/03/19 20:04,"450 Wilson St, Atlanta, GA 30301" -247935,USB-C Charging Cable,1,11.95,08/03/19 20:04,"450 Wilson St, Atlanta, GA 30301" -247936,Apple Airpods Headphones,1,150,08/19/19 13:32,"449 Elm St, Seattle, WA 98101" -247937,27in 4K Gaming Monitor,1,389.99,08/20/19 16:05,"454 Jackson St, San Francisco, CA 94016" -247938,Vareebadd Phone,1,400,08/23/19 19:23,"534 Adams St, Portland, OR 97035" -247938,Google Phone,1,600,08/23/19 19:23,"534 Adams St, Portland, OR 97035" -247939,Google Phone,1,600,08/11/19 16:24,"400 Lake St, Los Angeles, CA 90001" -247940,AAA Batteries (4-pack),1,2.99,08/21/19 18:35,"995 Wilson St, Los Angeles, CA 90001" -247941,27in 4K Gaming Monitor,1,389.99,08/24/19 12:24,"792 Hill St, San Francisco, CA 94016" -247942,iPhone,1,700,08/11/19 15:29,"990 Meadow St, San Francisco, CA 94016" -247943,AAA Batteries (4-pack),1,2.99,08/31/19 14:10,"801 12th St, Los Angeles, CA 90001" -247944,AA Batteries (4-pack),1,3.84,08/19/19 15:45,"415 Elm St, New York City, NY 10001" -247945,AA Batteries (4-pack),1,3.84,08/26/19 09:59,"128 Spruce St, San Francisco, CA 94016" -247946,USB-C Charging Cable,1,11.95,08/29/19 18:11,"775 Spruce St, Atlanta, GA 30301" -247947,AA Batteries (4-pack),1,3.84,08/10/19 21:33,"649 Hill St, Boston, MA 02215" -247948,Wired Headphones,2,11.99,08/28/19 11:04,"398 Elm St, San Francisco, CA 94016" -247949,27in FHD Monitor,1,149.99,08/21/19 12:07,"738 Dogwood St, Boston, MA 02215" -247950,Bose SoundSport Headphones,1,99.99,08/18/19 11:23,"952 Johnson St, Los Angeles, CA 90001" -247951,Flatscreen TV,1,300,08/05/19 10:36,"427 Forest St, Los Angeles, CA 90001" -247952,Bose SoundSport Headphones,1,99.99,08/10/19 12:36,"496 Hill St, Atlanta, GA 30301" -247953,Wired Headphones,1,11.99,08/07/19 05:18,"893 North St, New York City, NY 10001" -247954,Bose SoundSport Headphones,1,99.99,08/30/19 19:18,"47 Dogwood St, Austin, TX 73301" -247955,iPhone,1,700,08/21/19 17:34,"41 Washington St, Los Angeles, CA 90001" -247956,Bose SoundSport Headphones,1,99.99,08/06/19 19:27,"877 9th St, Dallas, TX 75001" -247957,27in FHD Monitor,1,149.99,08/31/19 21:09,"737 Adams St, Portland, OR 97035" -247958,Apple Airpods Headphones,1,150,08/05/19 14:43,"897 Lake St, Portland, OR 97035" -247959,Lightning Charging Cable,1,14.95,08/25/19 13:25,"634 Chestnut St, Seattle, WA 98101" -247960,Apple Airpods Headphones,1,150,08/20/19 01:19,"233 Wilson St, New York City, NY 10001" -247961,Bose SoundSport Headphones,1,99.99,08/03/19 17:33,"532 Ridge St, Atlanta, GA 30301" -247962,AA Batteries (4-pack),1,3.84,08/19/19 16:22,"713 Ridge St, Atlanta, GA 30301" -247963,27in FHD Monitor,1,149.99,08/03/19 20:12,"471 11th St, Seattle, WA 98101" -247964,AAA Batteries (4-pack),1,2.99,08/30/19 14:38,"121 9th St, New York City, NY 10001" -247965,Apple Airpods Headphones,1,150,08/31/19 11:31,"82 Park St, San Francisco, CA 94016" -247966,iPhone,1,700,08/05/19 05:17,"847 6th St, New York City, NY 10001" -247966,Apple Airpods Headphones,1,150,08/05/19 05:17,"847 6th St, New York City, NY 10001" -247967,AAA Batteries (4-pack),2,2.99,08/04/19 22:08,"424 Wilson St, New York City, NY 10001" -247968,Wired Headphones,1,11.99,08/08/19 07:30,"818 13th St, San Francisco, CA 94016" -247969,AAA Batteries (4-pack),2,2.99,08/12/19 11:39,"301 Washington St, New York City, NY 10001" -247970,Wired Headphones,1,11.99,08/08/19 17:42,"199 1st St, Boston, MA 02215" -247971,AA Batteries (4-pack),4,3.84,08/18/19 14:11,"650 7th St, New York City, NY 10001" -247972,iPhone,1,700,08/21/19 06:32,"573 South St, Los Angeles, CA 90001" -247973,iPhone,1,700,08/01/19 22:38,"193 Ridge St, Atlanta, GA 30301" -247974,AAA Batteries (4-pack),2,2.99,08/02/19 20:32,"446 Park St, San Francisco, CA 94016" -247975,iPhone,1,700,08/24/19 15:19,"760 1st St, Portland, OR 97035" -247976,27in FHD Monitor,1,149.99,08/11/19 20:11,"313 South St, Atlanta, GA 30301" -247977,Wired Headphones,1,11.99,08/08/19 12:52,"613 10th St, Dallas, TX 75001" -247978,AAA Batteries (4-pack),2,2.99,08/13/19 12:03,"730 Park St, Austin, TX 73301" -247979,Lightning Charging Cable,1,14.95,08/23/19 19:02,"573 Hill St, Austin, TX 73301" -247980,Lightning Charging Cable,2,14.95,08/13/19 00:18,"290 Madison St, Los Angeles, CA 90001" -247981,27in FHD Monitor,1,149.99,08/14/19 20:27,"791 Cherry St, Boston, MA 02215" -247982,AA Batteries (4-pack),1,3.84,08/23/19 17:32,"962 Johnson St, San Francisco, CA 94016" -247983,Flatscreen TV,1,300,08/08/19 22:19,"711 6th St, San Francisco, CA 94016" -247984,27in FHD Monitor,1,149.99,08/21/19 19:14,"360 Spruce St, Atlanta, GA 30301" -247985,Lightning Charging Cable,1,14.95,08/15/19 19:22,"954 Sunset St, Los Angeles, CA 90001" -247986,Wired Headphones,1,11.99,08/18/19 20:13,"25 Jefferson St, Portland, OR 97035" -247987,Bose SoundSport Headphones,1,99.99,08/28/19 14:05,"863 Elm St, San Francisco, CA 94016" -247988,USB-C Charging Cable,1,11.95,08/18/19 20:26,"845 Wilson St, San Francisco, CA 94016" -247988,AA Batteries (4-pack),2,3.84,08/18/19 20:26,"845 Wilson St, San Francisco, CA 94016" -247989,AA Batteries (4-pack),2,3.84,08/22/19 12:39,"23 Lakeview St, Dallas, TX 75001" -247989,iPhone,1,700,08/22/19 12:39,"23 Lakeview St, Dallas, TX 75001" -247990,USB-C Charging Cable,2,11.95,08/22/19 13:40,"711 Adams St, Portland, OR 97035" -247991,AA Batteries (4-pack),6,3.84,08/07/19 22:39,"679 2nd St, San Francisco, CA 94016" -247992,AA Batteries (4-pack),2,3.84,08/02/19 19:04,"961 12th St, Los Angeles, CA 90001" -247993,Macbook Pro Laptop,1,1700,08/29/19 23:13,"768 Cherry St, San Francisco, CA 94016" -247994,Macbook Pro Laptop,1,1700,08/20/19 23:55,"317 Washington St, San Francisco, CA 94016" -247995,27in FHD Monitor,1,149.99,08/22/19 16:03,"270 Forest St, Los Angeles, CA 90001" -247996,ThinkPad Laptop,1,999.99,08/03/19 10:46,"336 9th St, San Francisco, CA 94016" -247997,Bose SoundSport Headphones,1,99.99,08/05/19 12:02,"487 4th St, Los Angeles, CA 90001" -247998,Bose SoundSport Headphones,1,99.99,08/22/19 09:09,"820 Ridge St, San Francisco, CA 94016" -247999,Wired Headphones,1,11.99,08/01/19 23:45,"811 Washington St, Seattle, WA 98101" -248000,Macbook Pro Laptop,1,1700,08/07/19 17:50,"987 Main St, Portland, ME 04101" -248000,Apple Airpods Headphones,1,150,08/07/19 17:50,"987 Main St, Portland, ME 04101" -248001,AAA Batteries (4-pack),1,2.99,08/01/19 19:55,"338 2nd St, San Francisco, CA 94016" -248001,Apple Airpods Headphones,1,150,08/01/19 19:55,"338 2nd St, San Francisco, CA 94016" -248002,Bose SoundSport Headphones,1,99.99,08/15/19 01:55,"793 North St, San Francisco, CA 94016" -248003,20in Monitor,1,109.99,08/04/19 13:10,"214 Highland St, Los Angeles, CA 90001" -248004,Lightning Charging Cable,1,14.95,08/29/19 17:06,"711 Lake St, Los Angeles, CA 90001" -248005,Wired Headphones,1,11.99,08/23/19 23:10,"428 Hickory St, Portland, OR 97035" -248005,AA Batteries (4-pack),1,3.84,08/23/19 23:10,"428 Hickory St, Portland, OR 97035" -248006,Apple Airpods Headphones,1,150,08/13/19 13:06,"510 Johnson St, San Francisco, CA 94016" -248007,AAA Batteries (4-pack),1,2.99,08/28/19 21:54,"388 1st St, Atlanta, GA 30301" -248008,AAA Batteries (4-pack),1,2.99,08/08/19 16:05,"565 5th St, Los Angeles, CA 90001" -248009,USB-C Charging Cable,1,11.95,08/16/19 23:10,"240 5th St, Dallas, TX 75001" -248010,USB-C Charging Cable,1,11.95,08/22/19 11:46,"561 Church St, Austin, TX 73301" -248011,USB-C Charging Cable,1,11.95,08/15/19 23:47,"774 9th St, San Francisco, CA 94016" -248012,Bose SoundSport Headphones,1,99.99,08/16/19 19:46,"191 8th St, San Francisco, CA 94016" -248013,USB-C Charging Cable,1,11.95,08/20/19 14:24,"852 Jefferson St, Dallas, TX 75001" -248014,Wired Headphones,1,11.99,08/15/19 12:06,"527 Wilson St, New York City, NY 10001" -248015,AA Batteries (4-pack),2,3.84,08/03/19 23:48,"139 Center St, San Francisco, CA 94016" -248016,Wired Headphones,1,11.99,08/06/19 05:49,"269 Lake St, Dallas, TX 75001" -248017,Apple Airpods Headphones,1,150,08/29/19 13:32,"353 Lake St, Dallas, TX 75001" -248018,AAA Batteries (4-pack),1,2.99,08/31/19 00:02,"951 8th St, Austin, TX 73301" -248019,Wired Headphones,1,11.99,08/23/19 13:32,"751 Main St, San Francisco, CA 94016" -248020,Lightning Charging Cable,1,14.95,08/02/19 00:56,"510 Cherry St, Los Angeles, CA 90001" -248021,AAA Batteries (4-pack),1,2.99,08/30/19 19:42,"458 10th St, Boston, MA 02215" -248022,USB-C Charging Cable,1,11.95,08/21/19 22:44,"432 Sunset St, San Francisco, CA 94016" -248023,USB-C Charging Cable,1,11.95,08/23/19 08:20,"614 Hickory St, Boston, MA 02215" -248024,AAA Batteries (4-pack),1,2.99,08/12/19 10:16,"526 Park St, Dallas, TX 75001" -248025,AA Batteries (4-pack),1,3.84,08/22/19 16:15,"526 Meadow St, Portland, OR 97035" -248026,LG Dryer,1,600.0,08/31/19 09:40,"41 North St, Boston, MA 02215" -248026,Vareebadd Phone,1,400,08/31/19 09:40,"41 North St, Boston, MA 02215" -248027,Bose SoundSport Headphones,2,99.99,08/10/19 12:11,"960 Pine St, Boston, MA 02215" -248028,AA Batteries (4-pack),1,3.84,08/22/19 17:03,"484 Highland St, Boston, MA 02215" -248029,Wired Headphones,1,11.99,08/24/19 19:00,"48 Highland St, Seattle, WA 98101" -248030,USB-C Charging Cable,1,11.95,08/10/19 19:47,"368 Center St, San Francisco, CA 94016" -248031,34in Ultrawide Monitor,1,379.99,08/09/19 17:28,"907 8th St, San Francisco, CA 94016" -248032,Wired Headphones,1,11.99,08/27/19 06:50,"341 Wilson St, Atlanta, GA 30301" -248033,Lightning Charging Cable,1,14.95,08/03/19 16:46,"691 Walnut St, Seattle, WA 98101" -248034,Wired Headphones,1,11.99,08/14/19 14:08,"856 6th St, San Francisco, CA 94016" -248035,Vareebadd Phone,1,400,08/28/19 08:48,"153 Elm St, New York City, NY 10001" -248036,USB-C Charging Cable,1,11.95,08/06/19 19:56,"340 Cherry St, San Francisco, CA 94016" -248036,USB-C Charging Cable,1,11.95,08/06/19 19:56,"340 Cherry St, San Francisco, CA 94016" -248037,AAA Batteries (4-pack),1,2.99,08/09/19 18:57,"230 Cherry St, New York City, NY 10001" -248038,27in 4K Gaming Monitor,1,389.99,08/11/19 18:02,"612 Meadow St, Seattle, WA 98101" -248039,AA Batteries (4-pack),1,3.84,08/24/19 10:06,"314 Jefferson St, Los Angeles, CA 90001" -248040,AAA Batteries (4-pack),3,2.99,08/28/19 07:37,"758 Highland St, Dallas, TX 75001" -248041,AAA Batteries (4-pack),1,2.99,08/23/19 01:28,"856 South St, San Francisco, CA 94016" -248042,USB-C Charging Cable,1,11.95,08/29/19 12:12,"283 West St, Los Angeles, CA 90001" -248043,USB-C Charging Cable,1,11.95,08/24/19 23:59,"986 Maple St, Los Angeles, CA 90001" -248044,LG Washing Machine,1,600.0,08/07/19 17:54,"812 Park St, Los Angeles, CA 90001" -248045,27in FHD Monitor,1,149.99,08/06/19 15:30,"107 Meadow St, San Francisco, CA 94016" -248046,AA Batteries (4-pack),1,3.84,08/14/19 21:18,"185 Pine St, Los Angeles, CA 90001" -248047,Bose SoundSport Headphones,1,99.99,08/30/19 21:13,"826 Highland St, Portland, OR 97035" -248048,AAA Batteries (4-pack),1,2.99,08/19/19 22:02,"730 Sunset St, Dallas, TX 75001" -248049,Vareebadd Phone,1,400,08/20/19 20:15,"561 West St, Atlanta, GA 30301" -248050,Macbook Pro Laptop,1,1700,08/28/19 17:16,"45 Chestnut St, San Francisco, CA 94016" -248051,Lightning Charging Cable,1,14.95,08/23/19 15:14,"257 Lincoln St, Los Angeles, CA 90001" -248052,USB-C Charging Cable,1,11.95,08/08/19 10:49,"424 Hickory St, Los Angeles, CA 90001" -248053,AA Batteries (4-pack),2,3.84,08/05/19 09:03,"57 Highland St, New York City, NY 10001" -248053,20in Monitor,1,109.99,08/05/19 09:03,"57 Highland St, New York City, NY 10001" -248054,Wired Headphones,1,11.99,08/05/19 10:33,"505 Lakeview St, Atlanta, GA 30301" -248055,iPhone,1,700,08/21/19 07:32,"675 12th St, Portland, OR 97035" -248056,AA Batteries (4-pack),1,3.84,08/27/19 17:15,"620 2nd St, Los Angeles, CA 90001" -248057,USB-C Charging Cable,1,11.95,08/05/19 11:57,"251 South St, San Francisco, CA 94016" -248058,USB-C Charging Cable,1,11.95,08/08/19 12:26,"284 11th St, Dallas, TX 75001" -248059,Lightning Charging Cable,1,14.95,08/27/19 22:42,"399 Ridge St, San Francisco, CA 94016" -248060,27in 4K Gaming Monitor,1,389.99,08/16/19 20:09,"682 Ridge St, San Francisco, CA 94016" -248061,Bose SoundSport Headphones,1,99.99,08/08/19 20:36,"442 Walnut St, Los Angeles, CA 90001" -248062,Wired Headphones,1,11.99,08/22/19 23:10,"55 4th St, Dallas, TX 75001" -248063,ThinkPad Laptop,1,999.99,08/05/19 23:00,"417 8th St, San Francisco, CA 94016" -248064,27in 4K Gaming Monitor,1,389.99,08/17/19 09:58,"208 Lake St, New York City, NY 10001" -248065,Macbook Pro Laptop,1,1700,08/25/19 18:53,"797 Lake St, New York City, NY 10001" -248066,Wired Headphones,1,11.99,08/03/19 10:39,"139 Elm St, Atlanta, GA 30301" -248067,34in Ultrawide Monitor,1,379.99,08/03/19 20:10,"830 Dogwood St, Seattle, WA 98101" -248068,Bose SoundSport Headphones,1,99.99,08/13/19 11:42,"563 Hill St, San Francisco, CA 94016" -248068,AA Batteries (4-pack),3,3.84,08/13/19 11:42,"563 Hill St, San Francisco, CA 94016" -248069,AAA Batteries (4-pack),1,2.99,08/29/19 15:39,"358 5th St, Los Angeles, CA 90001" -248070,Apple Airpods Headphones,1,150,08/29/19 16:16,"631 Jackson St, Dallas, TX 75001" -248071,AA Batteries (4-pack),1,3.84,08/10/19 22:13,"344 River St, Portland, OR 97035" -248072,Wired Headphones,1,11.99,08/24/19 10:59,"538 12th St, New York City, NY 10001" -248073,USB-C Charging Cable,1,11.95,08/11/19 17:41,"189 7th St, Los Angeles, CA 90001" -248074,Bose SoundSport Headphones,1,99.99,08/18/19 18:29,"815 Dogwood St, San Francisco, CA 94016" -248075,34in Ultrawide Monitor,1,379.99,08/28/19 13:39,"607 West St, San Francisco, CA 94016" -248076,Apple Airpods Headphones,1,150,08/24/19 20:16,"526 Cherry St, San Francisco, CA 94016" -248077,AA Batteries (4-pack),1,3.84,08/14/19 15:13,"888 Sunset St, San Francisco, CA 94016" -248078,Bose SoundSport Headphones,1,99.99,08/09/19 05:35,"164 Washington St, San Francisco, CA 94016" -248079,USB-C Charging Cable,1,11.95,08/23/19 12:44,"57 Dogwood St, Boston, MA 02215" -248080,Bose SoundSport Headphones,1,99.99,08/23/19 07:30,"772 Washington St, New York City, NY 10001" -248081,Apple Airpods Headphones,1,150,08/13/19 17:14,"738 5th St, Dallas, TX 75001" -248082,Macbook Pro Laptop,1,1700,08/25/19 14:20,"678 8th St, San Francisco, CA 94016" -248083,Lightning Charging Cable,1,14.95,08/04/19 09:00,"440 Lakeview St, San Francisco, CA 94016" -248084,AAA Batteries (4-pack),1,2.99,08/23/19 14:48,"886 5th St, San Francisco, CA 94016" -248085,USB-C Charging Cable,1,11.95,08/24/19 18:21,"337 1st St, Los Angeles, CA 90001" -248086,Apple Airpods Headphones,1,150,08/10/19 23:27,"644 2nd St, New York City, NY 10001" -248087,iPhone,1,700,08/20/19 14:33,"813 13th St, Los Angeles, CA 90001" -248088,ThinkPad Laptop,1,999.99,08/13/19 19:26,"614 11th St, San Francisco, CA 94016" -248088,Bose SoundSport Headphones,1,99.99,08/13/19 19:26,"614 11th St, San Francisco, CA 94016" -248089,Lightning Charging Cable,1,14.95,08/04/19 14:41,"116 Willow St, Boston, MA 02215" -248090,AA Batteries (4-pack),1,3.84,08/15/19 05:57,"398 Hill St, San Francisco, CA 94016" -248091,Lightning Charging Cable,1,14.95,08/09/19 17:19,"184 Pine St, Austin, TX 73301" -248092,27in FHD Monitor,1,149.99,08/13/19 16:24,"163 4th St, San Francisco, CA 94016" -248093,27in 4K Gaming Monitor,1,389.99,08/15/19 15:33,"569 Park St, Atlanta, GA 30301" -248094,Flatscreen TV,1,300,08/31/19 19:59,"190 Church St, Atlanta, GA 30301" -248095,34in Ultrawide Monitor,1,379.99,08/23/19 12:48,"905 Pine St, San Francisco, CA 94016" -248096,AAA Batteries (4-pack),1,2.99,08/28/19 01:37,"243 9th St, Boston, MA 02215" -248097,USB-C Charging Cable,1,11.95,08/26/19 21:44,"327 Maple St, Boston, MA 02215" -248098,Google Phone,2,600,08/13/19 09:11,"387 11th St, San Francisco, CA 94016" -248099,Lightning Charging Cable,1,14.95,08/07/19 20:48,"852 Cedar St, San Francisco, CA 94016" -248100,27in 4K Gaming Monitor,1,389.99,08/25/19 12:04,"579 Cedar St, New York City, NY 10001" -248101,AA Batteries (4-pack),1,3.84,08/25/19 13:36,"364 Jefferson St, Austin, TX 73301" -248102,AA Batteries (4-pack),1,3.84,08/06/19 13:32,"285 Main St, Boston, MA 02215" -248103,AA Batteries (4-pack),1,3.84,08/16/19 09:32,"22 6th St, Atlanta, GA 30301" -248104,20in Monitor,1,109.99,08/01/19 07:00,"528 9th St, Dallas, TX 75001" -248105,Google Phone,1,600,08/28/19 19:27,"21 Center St, New York City, NY 10001" -248105,Wired Headphones,1,11.99,08/28/19 19:27,"21 Center St, New York City, NY 10001" -248106,USB-C Charging Cable,1,11.95,08/11/19 12:50,"859 Johnson St, Boston, MA 02215" -248107,Macbook Pro Laptop,1,1700,08/06/19 21:12,"89 Spruce St, San Francisco, CA 94016" -248108,Wired Headphones,1,11.99,08/29/19 20:23,"541 Lake St, Los Angeles, CA 90001" -248109,Lightning Charging Cable,2,14.95,08/02/19 19:28,"409 1st St, San Francisco, CA 94016" -248110,Apple Airpods Headphones,1,150,08/13/19 17:24,"440 West St, San Francisco, CA 94016" -248111,USB-C Charging Cable,1,11.95,08/10/19 11:37,"47 Dogwood St, Austin, TX 73301" -248112,Wired Headphones,1,11.99,08/09/19 00:13,"976 Hickory St, New York City, NY 10001" -248113,20in Monitor,1,109.99,08/14/19 06:02,"62 Washington St, Portland, OR 97035" -248114,AA Batteries (4-pack),1,3.84,08/29/19 15:36,"187 South St, New York City, NY 10001" -248115,27in FHD Monitor,1,149.99,08/18/19 17:26,"411 11th St, San Francisco, CA 94016" -248116,Vareebadd Phone,1,400,08/28/19 16:59,"481 Wilson St, Portland, OR 97035" -248117,34in Ultrawide Monitor,1,379.99,08/04/19 14:20,"598 Johnson St, Los Angeles, CA 90001" -248118,AAA Batteries (4-pack),1,2.99,08/29/19 10:59,"224 Highland St, New York City, NY 10001" -248119,Lightning Charging Cable,1,14.95,08/01/19 09:24,"143 6th St, Boston, MA 02215" -248120,Google Phone,1,600,08/02/19 20:42,"619 5th St, New York City, NY 10001" -248120,USB-C Charging Cable,1,11.95,08/02/19 20:42,"619 5th St, New York City, NY 10001" -248121,USB-C Charging Cable,1,11.95,08/29/19 10:30,"762 Cherry St, Seattle, WA 98101" -248122,Bose SoundSport Headphones,1,99.99,08/20/19 22:50,"71 14th St, Dallas, TX 75001" -248123,USB-C Charging Cable,1,11.95,08/23/19 13:57,"252 13th St, Los Angeles, CA 90001" -248124,LG Dryer,1,600.0,08/29/19 00:07,"347 Willow St, Boston, MA 02215" -248125,Macbook Pro Laptop,1,1700,08/18/19 20:11,"88 5th St, Portland, OR 97035" -248126,AAA Batteries (4-pack),1,2.99,08/10/19 19:18,"337 Maple St, Portland, OR 97035" -248127,Wired Headphones,1,11.99,08/24/19 17:28,"368 Hickory St, Boston, MA 02215" -248128,Apple Airpods Headphones,1,150,08/16/19 21:02,"888 Jackson St, Austin, TX 73301" -248129,20in Monitor,1,109.99,08/04/19 11:43,"599 11th St, Dallas, TX 75001" -248130,Apple Airpods Headphones,1,150,08/07/19 22:56,"937 Highland St, Boston, MA 02215" -248131,USB-C Charging Cable,1,11.95,08/14/19 20:32,"120 4th St, New York City, NY 10001" -248132,27in 4K Gaming Monitor,1,389.99,08/26/19 13:06,"607 Cherry St, New York City, NY 10001" -248133,USB-C Charging Cable,1,11.95,08/21/19 08:42,"296 Church St, Los Angeles, CA 90001" -248134,Lightning Charging Cable,2,14.95,08/16/19 22:48,"48 Adams St, Los Angeles, CA 90001" -248135,LG Washing Machine,1,600.0,08/14/19 11:44,"429 11th St, New York City, NY 10001" -248136,Wired Headphones,1,11.99,08/09/19 19:38,"394 10th St, San Francisco, CA 94016" -248137,USB-C Charging Cable,1,11.95,08/24/19 09:01,"987 8th St, Portland, OR 97035" -248138,27in 4K Gaming Monitor,1,389.99,08/10/19 06:18,"742 North St, Portland, OR 97035" -248139,iPhone,1,700,08/10/19 23:39,"879 Spruce St, Los Angeles, CA 90001" -248140,Bose SoundSport Headphones,1,99.99,08/27/19 18:43,"49 Johnson St, Atlanta, GA 30301" -248141,AAA Batteries (4-pack),3,2.99,08/07/19 10:09,"304 Center St, Atlanta, GA 30301" -248142,34in Ultrawide Monitor,1,379.99,08/25/19 09:35,"928 Sunset St, Seattle, WA 98101" -248143,USB-C Charging Cable,1,11.95,08/04/19 20:45,"566 Adams St, San Francisco, CA 94016" -248144,Apple Airpods Headphones,1,150,08/22/19 15:10,"107 Maple St, Los Angeles, CA 90001" -248145,Wired Headphones,1,11.99,08/20/19 19:07,"87 12th St, Boston, MA 02215" -248146,Bose SoundSport Headphones,1,99.99,08/29/19 22:19,"868 Hickory St, San Francisco, CA 94016" -248147,AAA Batteries (4-pack),3,2.99,08/31/19 16:26,"206 Lakeview St, Boston, MA 02215" -248148,AA Batteries (4-pack),1,3.84,08/02/19 07:25,"568 13th St, Seattle, WA 98101" -248149,USB-C Charging Cable,1,11.95,08/08/19 12:10,"495 Walnut St, San Francisco, CA 94016" -248150,AA Batteries (4-pack),1,3.84,08/16/19 08:13,"738 Park St, Los Angeles, CA 90001" -295665,Macbook Pro Laptop,1,1700,12/30/19 00:01,"136 Church St, New York City, NY 10001" -295666,LG Washing Machine,1,600.0,12/29/19 07:03,"562 2nd St, New York City, NY 10001" -295667,USB-C Charging Cable,1,11.95,12/12/19 18:21,"277 Main St, New York City, NY 10001" -295668,27in FHD Monitor,1,149.99,12/22/19 15:13,"410 6th St, San Francisco, CA 94016" -295669,USB-C Charging Cable,1,11.95,12/18/19 12:38,"43 Hill St, Atlanta, GA 30301" -295670,AA Batteries (4-pack),1,3.84,12/31/19 22:58,"200 Jefferson St, New York City, NY 10001" -295671,USB-C Charging Cable,1,11.95,12/16/19 15:10,"928 12th St, Portland, OR 97035" -295672,USB-C Charging Cable,2,11.95,12/13/19 09:29,"813 Hickory St, Dallas, TX 75001" -295673,Bose SoundSport Headphones,1,99.99,12/15/19 23:26,"718 Wilson St, Dallas, TX 75001" -295674,AAA Batteries (4-pack),4,2.99,12/28/19 11:51,"77 7th St, Dallas, TX 75001" -295675,USB-C Charging Cable,2,11.95,12/13/19 13:52,"594 1st St, San Francisco, CA 94016" -295676,ThinkPad Laptop,1,999.99,12/28/19 17:19,"410 Lincoln St, Los Angeles, CA 90001" -295677,AA Batteries (4-pack),2,3.84,12/20/19 19:19,"866 Pine St, Boston, MA 02215" -295678,AAA Batteries (4-pack),2,2.99,12/06/19 09:38,"187 Lincoln St, Dallas, TX 75001" -295679,USB-C Charging Cable,1,11.95,12/25/19 09:39,"902 2nd St, Dallas, TX 75001" -295680,Lightning Charging Cable,1,14.95,12/01/19 14:30,"338 Main St, Austin, TX 73301" -295681,Google Phone,1,600,12/25/19 12:37,"79 Elm St, Boston, MA 02215" -295681,USB-C Charging Cable,1,11.95,12/25/19 12:37,"79 Elm St, Boston, MA 02215" -295681,Bose SoundSport Headphones,1,99.99,12/25/19 12:37,"79 Elm St, Boston, MA 02215" -295681,Wired Headphones,1,11.99,12/25/19 12:37,"79 Elm St, Boston, MA 02215" -295682,USB-C Charging Cable,1,11.95,12/23/19 19:25,"780 Elm St, Portland, OR 97035" -295683,Wired Headphones,1,11.99,12/23/19 22:46,"341 Lake St, San Francisco, CA 94016" -295684,AAA Batteries (4-pack),4,2.99,12/04/19 12:29,"936 Church St, San Francisco, CA 94016" -295685,Wired Headphones,1,11.99,12/11/19 22:54,"662 Ridge St, San Francisco, CA 94016" -295686,USB-C Charging Cable,1,11.95,12/17/19 16:10,"573 Maple St, Portland, ME 04101" -295687,Apple Airpods Headphones,1,150,12/10/19 00:38,"531 Ridge St, Boston, MA 02215" -295688,Apple Airpods Headphones,1,150,12/08/19 11:21,"546 Park St, Los Angeles, CA 90001" -295689,LG Washing Machine,1,600.0,12/24/19 11:21,"173 Lake St, San Francisco, CA 94016" -295690,Apple Airpods Headphones,1,150,12/04/19 00:44,"174 Cedar St, Seattle, WA 98101" -295691,Bose SoundSport Headphones,1,99.99,12/22/19 18:34,"102 Johnson St, Los Angeles, CA 90001" -295692,AA Batteries (4-pack),2,3.84,12/14/19 01:21,"640 Cherry St, Los Angeles, CA 90001" -295693,Wired Headphones,1,11.99,12/16/19 16:40,"856 12th St, Atlanta, GA 30301" -295694,Lightning Charging Cable,1,14.95,12/26/19 18:18,"310 Pine St, Dallas, TX 75001" -295695,Lightning Charging Cable,1,14.95,12/14/19 06:09,"903 Lincoln St, Boston, MA 02215" -295696,Lightning Charging Cable,1,14.95,12/23/19 13:09,"252 Hickory St, San Francisco, CA 94016" -295697,ThinkPad Laptop,1,999.99,12/15/19 07:38,"742 River St, San Francisco, CA 94016" -295698,Vareebadd Phone,1,400,12/13/19 14:32,"175 1st St, New York City, NY 10001" -295698,USB-C Charging Cable,2,11.95,12/13/19 14:32,"175 1st St, New York City, NY 10001" -295699,AA Batteries (4-pack),1,3.84,12/17/19 18:32,"162 Maple St, Seattle, WA 98101" -295700,Bose SoundSport Headphones,1,99.99,12/25/19 19:02,"363 Hickory St, New York City, NY 10001" -295701,Bose SoundSport Headphones,1,99.99,12/28/19 15:05,"751 North St, San Francisco, CA 94016" -295702,Wired Headphones,2,11.99,12/21/19 18:50,"628 River St, Austin, TX 73301" -295703,AA Batteries (4-pack),1,3.84,12/17/19 12:27,"502 Jefferson St, Austin, TX 73301" -295703,Bose SoundSport Headphones,1,99.99,12/17/19 12:27,"502 Jefferson St, Austin, TX 73301" -295704,Wired Headphones,1,11.99,12/12/19 00:20,"457 8th St, New York City, NY 10001" -295705,Wired Headphones,1,11.99,12/25/19 10:41,"133 Jackson St, New York City, NY 10001" -295706,AAA Batteries (4-pack),3,2.99,12/12/19 20:08,"599 Hill St, Los Angeles, CA 90001" -295707,Lightning Charging Cable,1,14.95,12/07/19 11:01,"547 Ridge St, San Francisco, CA 94016" -295708,27in FHD Monitor,1,149.99,12/13/19 14:55,"846 9th St, Boston, MA 02215" -295709,Bose SoundSport Headphones,1,99.99,12/25/19 16:38,"662 6th St, San Francisco, CA 94016" -295710,AAA Batteries (4-pack),1,2.99,12/26/19 19:09,"729 Pine St, Atlanta, GA 30301" -295711,AAA Batteries (4-pack),2,2.99,12/04/19 13:43,"489 Johnson St, San Francisco, CA 94016" -295712,Macbook Pro Laptop,1,1700,12/10/19 20:02,"331 Madison St, New York City, NY 10001" -295713,Bose SoundSport Headphones,1,99.99,12/24/19 07:55,"490 Spruce St, New York City, NY 10001" -295714,iPhone,1,700,12/31/19 07:39,"826 Hickory St, Los Angeles, CA 90001" -295715,USB-C Charging Cable,2,11.95,12/17/19 18:20,"169 Maple St, Seattle, WA 98101" -295716,20in Monitor,1,109.99,12/03/19 23:28,"593 9th St, Los Angeles, CA 90001" -295717,Macbook Pro Laptop,1,1700,12/25/19 09:51,"82 10th St, San Francisco, CA 94016" -295718,Lightning Charging Cable,1,14.95,12/27/19 17:25,"785 Chestnut St, San Francisco, CA 94016" -295719,27in FHD Monitor,1,149.99,12/24/19 18:51,"334 2nd St, Los Angeles, CA 90001" -295720,AA Batteries (4-pack),1,3.84,12/17/19 22:52,"298 Ridge St, New York City, NY 10001" -295721,34in Ultrawide Monitor,1,379.99,12/08/19 18:22,"915 1st St, Seattle, WA 98101" -295722,Wired Headphones,1,11.99,12/08/19 23:46,"380 Lake St, San Francisco, CA 94016" -295723,AA Batteries (4-pack),1,3.84,12/07/19 13:59,"530 Walnut St, Los Angeles, CA 90001" -295724,AA Batteries (4-pack),2,3.84,12/03/19 14:19,"570 Walnut St, Dallas, TX 75001" -295725,AAA Batteries (4-pack),3,2.99,12/05/19 15:01,"911 River St, San Francisco, CA 94016" -295726,iPhone,1,700,12/25/19 14:49,"203 Lakeview St, Boston, MA 02215" -295726,Lightning Charging Cable,1,14.95,12/25/19 14:49,"203 Lakeview St, Boston, MA 02215" -295727,Bose SoundSport Headphones,1,99.99,12/14/19 14:03,"5 Dogwood St, San Francisco, CA 94016" -295728,27in FHD Monitor,1,149.99,12/21/19 19:21,"366 Washington St, New York City, NY 10001" -295729,34in Ultrawide Monitor,1,379.99,12/28/19 21:58,"432 1st St, Dallas, TX 75001" -295730,34in Ultrawide Monitor,1,379.99,12/14/19 20:04,"574 West St, San Francisco, CA 94016" -295731,USB-C Charging Cable,1,11.95,12/16/19 11:47,"33 9th St, San Francisco, CA 94016" -295732,Apple Airpods Headphones,1,150,12/29/19 18:44,"860 Washington St, Boston, MA 02215" -295733,27in FHD Monitor,1,149.99,12/20/19 11:31,"228 5th St, Boston, MA 02215" -295734,AAA Batteries (4-pack),1,2.99,12/25/19 12:38,"453 Jackson St, Portland, OR 97035" -295735,iPhone,1,700,12/22/19 18:25,"374 Lincoln St, New York City, NY 10001" -295735,Apple Airpods Headphones,1,150,12/22/19 18:25,"374 Lincoln St, New York City, NY 10001" -295735,Wired Headphones,1,11.99,12/22/19 18:25,"374 Lincoln St, New York City, NY 10001" -295736,USB-C Charging Cable,2,11.95,12/27/19 14:26,"523 Lincoln St, San Francisco, CA 94016" -295737,iPhone,1,700,12/19/19 08:51,"966 10th St, Atlanta, GA 30301" -295737,Lightning Charging Cable,1,14.95,12/19/19 08:51,"966 10th St, Atlanta, GA 30301" -295738,AAA Batteries (4-pack),1,2.99,12/20/19 18:19,"829 7th St, Dallas, TX 75001" -295739,USB-C Charging Cable,1,11.95,12/14/19 21:07,"949 Wilson St, Los Angeles, CA 90001" -295740,USB-C Charging Cable,1,11.95,12/01/19 20:36,"102 Cedar St, New York City, NY 10001" -295741,Apple Airpods Headphones,1,150,12/02/19 21:39,"829 Johnson St, Boston, MA 02215" -295742,Apple Airpods Headphones,1,150,12/09/19 23:45,"368 Sunset St, New York City, NY 10001" -295743,USB-C Charging Cable,1,11.95,12/03/19 11:52,"346 South St, New York City, NY 10001" -295744,AA Batteries (4-pack),2,3.84,12/19/19 03:54,"579 Lake St, San Francisco, CA 94016" -295745,Flatscreen TV,1,300,12/24/19 10:38,"124 Lakeview St, New York City, NY 10001" -295746,27in FHD Monitor,1,149.99,12/27/19 16:14,"143 Adams St, New York City, NY 10001" -295747,AA Batteries (4-pack),3,3.84,12/10/19 21:50,"11 8th St, San Francisco, CA 94016" -295748,Wired Headphones,1,11.99,12/07/19 19:39,"45 Church St, Boston, MA 02215" -295749,Wired Headphones,2,11.99,12/04/19 05:24,"983 Highland St, Los Angeles, CA 90001" -295750,Bose SoundSport Headphones,1,99.99,12/27/19 20:26,"25 Lincoln St, San Francisco, CA 94016" -295751,AAA Batteries (4-pack),1,2.99,12/29/19 11:03,"922 Hickory St, Los Angeles, CA 90001" -295752,Google Phone,1,600,12/11/19 12:29,"341 Forest St, Dallas, TX 75001" -295753,34in Ultrawide Monitor,1,379.99,12/25/19 06:26,"365 Washington St, Dallas, TX 75001" -295753,Lightning Charging Cable,1,14.95,12/25/19 06:26,"365 Washington St, Dallas, TX 75001" -295754,Lightning Charging Cable,1,14.95,12/07/19 19:26,"502 Cherry St, Austin, TX 73301" -295755,Apple Airpods Headphones,1,150,12/21/19 06:52,"32 1st St, Boston, MA 02215" -295756,34in Ultrawide Monitor,1,379.99,12/02/19 22:44,"20 Wilson St, Atlanta, GA 30301" -295757,AA Batteries (4-pack),1,3.84,12/05/19 08:59,"819 Lake St, Portland, OR 97035" -295758,Wired Headphones,1,11.99,12/26/19 23:42,"910 Jackson St, New York City, NY 10001" -295759,Bose SoundSport Headphones,1,99.99,12/25/19 06:53,"15 Pine St, New York City, NY 10001" -295759,Wired Headphones,1,11.99,12/25/19 06:53,"15 Pine St, New York City, NY 10001" -295760,Bose SoundSport Headphones,1,99.99,12/30/19 18:40,"239 4th St, Atlanta, GA 30301" -295761,Lightning Charging Cable,1,14.95,12/31/19 17:32,"79 Chestnut St, Dallas, TX 75001" -295762,iPhone,1,700,12/04/19 08:16,"342 9th St, New York City, NY 10001" -295763,27in FHD Monitor,1,149.99,12/18/19 13:15,"594 4th St, Los Angeles, CA 90001" -295764,Lightning Charging Cable,1,14.95,12/01/19 14:44,"734 Hill St, New York City, NY 10001" -295765,Wired Headphones,1,11.99,12/08/19 20:22,"918 4th St, Seattle, WA 98101" -295766,Lightning Charging Cable,1,14.95,12/17/19 22:58,"795 8th St, Seattle, WA 98101" -295767,AAA Batteries (4-pack),1,2.99,12/21/19 13:00,"891 7th St, New York City, NY 10001" -295768,AAA Batteries (4-pack),2,2.99,12/22/19 22:36,"98 Johnson St, New York City, NY 10001" -295769,Bose SoundSport Headphones,1,99.99,12/27/19 19:44,"309 6th St, San Francisco, CA 94016" -295770,Bose SoundSport Headphones,1,99.99,12/28/19 10:27,"307 South St, San Francisco, CA 94016" -295771,AAA Batteries (4-pack),1,2.99,12/23/19 12:10,"352 Meadow St, San Francisco, CA 94016" -295772,Lightning Charging Cable,1,14.95,12/17/19 10:24,"44 Main St, Atlanta, GA 30301" -295773,Apple Airpods Headphones,1,150,12/07/19 20:09,"632 Cherry St, Los Angeles, CA 90001" -295774,Bose SoundSport Headphones,1,99.99,12/31/19 11:00,"196 Wilson St, Los Angeles, CA 90001" -295775,Google Phone,1,600,12/04/19 15:02,"439 Jefferson St, Dallas, TX 75001" -295776,USB-C Charging Cable,1,11.95,12/22/19 20:23,"552 Hill St, Atlanta, GA 30301" -295777,AAA Batteries (4-pack),1,2.99,12/09/19 19:47,"598 14th St, Atlanta, GA 30301" -295778,AA Batteries (4-pack),1,3.84,12/08/19 21:09,"820 Adams St, San Francisco, CA 94016" -295779,Wired Headphones,1,11.99,12/25/19 15:40,"201 Madison St, Los Angeles, CA 90001" -295780,USB-C Charging Cable,1,11.95,12/26/19 00:08,"864 Hickory St, Boston, MA 02215" -295781,USB-C Charging Cable,1,11.95,12/08/19 12:32,"413 Forest St, Boston, MA 02215" -295782,34in Ultrawide Monitor,1,379.99,12/19/19 20:06,"544 South St, Dallas, TX 75001" -295783,Vareebadd Phone,1,400,12/06/19 12:41,"87 5th St, San Francisco, CA 94016" -295783,USB-C Charging Cable,1,11.95,12/06/19 12:41,"87 5th St, San Francisco, CA 94016" -295784,USB-C Charging Cable,1,11.95,12/31/19 13:04,"935 Jackson St, Seattle, WA 98101" -295785,Bose SoundSport Headphones,1,99.99,12/09/19 20:35,"801 West St, Boston, MA 02215" -295786,USB-C Charging Cable,1,11.95,12/24/19 10:27,"859 12th St, Atlanta, GA 30301" -295786,Apple Airpods Headphones,1,150,12/24/19 10:27,"859 12th St, Atlanta, GA 30301" -295787,USB-C Charging Cable,1,11.95,12/28/19 21:03,"458 Elm St, Atlanta, GA 30301" -295788,AA Batteries (4-pack),1,3.84,12/28/19 20:30,"885 Lincoln St, Los Angeles, CA 90001" -295789,Lightning Charging Cable,1,14.95,12/05/19 15:09,"157 Main St, Austin, TX 73301" -295790,Lightning Charging Cable,1,14.95,12/05/19 19:20,"420 Center St, Los Angeles, CA 90001" -295791,USB-C Charging Cable,1,11.95,12/14/19 10:22,"286 North St, New York City, NY 10001" -295792,Lightning Charging Cable,1,14.95,12/20/19 09:46,"5 11th St, San Francisco, CA 94016" -295793,Google Phone,1,600,12/15/19 11:26,"275 Jackson St, San Francisco, CA 94016" -295793,USB-C Charging Cable,1,11.95,12/15/19 11:26,"275 Jackson St, San Francisco, CA 94016" -295794,27in 4K Gaming Monitor,1,389.99,12/20/19 15:43,"796 Chestnut St, Boston, MA 02215" -295795,Apple Airpods Headphones,1,150,12/08/19 20:01,"177 Walnut St, Los Angeles, CA 90001" -295796,Lightning Charging Cable,1,14.95,12/13/19 21:11,"677 Lakeview St, Seattle, WA 98101" -295797,Wired Headphones,1,11.99,12/16/19 09:23,"163 Washington St, Portland, ME 04101" -295798,Wired Headphones,1,11.99,12/05/19 12:10,"372 Chestnut St, Austin, TX 73301" -295799,AAA Batteries (4-pack),1,2.99,12/22/19 08:02,"236 Elm St, Los Angeles, CA 90001" -295800,AAA Batteries (4-pack),1,2.99,12/29/19 10:07,"140 10th St, Atlanta, GA 30301" -295801,Lightning Charging Cable,1,14.95,12/19/19 12:57,"943 Johnson St, San Francisco, CA 94016" -295802,34in Ultrawide Monitor,1,379.99,12/11/19 19:45,"838 Ridge St, San Francisco, CA 94016" -295803,Lightning Charging Cable,1,14.95,12/24/19 10:39,"513 Maple St, Los Angeles, CA 90001" -295804,Apple Airpods Headphones,1,150,12/20/19 02:31,"705 4th St, Los Angeles, CA 90001" -295805,Wired Headphones,1,11.99,12/06/19 14:55,"528 Willow St, New York City, NY 10001" -295806,Lightning Charging Cable,1,14.95,12/01/19 08:16,"323 Forest St, Dallas, TX 75001" -295807,20in Monitor,1,109.99,12/23/19 10:59,"286 Lincoln St, Los Angeles, CA 90001" -295808,AAA Batteries (4-pack),1,2.99,12/21/19 10:45,"961 Jackson St, San Francisco, CA 94016" -295809,27in FHD Monitor,1,149.99,12/28/19 12:33,"602 Ridge St, San Francisco, CA 94016" -295810,Lightning Charging Cable,1,14.95,12/17/19 08:45,"499 13th St, San Francisco, CA 94016" -295811,AAA Batteries (4-pack),1,2.99,12/23/19 11:59,"792 7th St, New York City, NY 10001" -295812,AA Batteries (4-pack),1,3.84,12/23/19 14:58,"359 12th St, Seattle, WA 98101" -295813,Bose SoundSport Headphones,1,99.99,12/11/19 21:07,"901 Madison St, New York City, NY 10001" -295814,AA Batteries (4-pack),3,3.84,12/24/19 08:29,"987 Cherry St, Los Angeles, CA 90001" -295815,Lightning Charging Cable,1,14.95,12/28/19 18:44,"464 Willow St, Boston, MA 02215" -295816,USB-C Charging Cable,1,11.95,12/21/19 19:28,"253 Jefferson St, Atlanta, GA 30301" -295817,USB-C Charging Cable,1,11.95,12/19/19 06:07,"963 Washington St, Austin, TX 73301" -295817,20in Monitor,1,109.99,12/19/19 06:07,"963 Washington St, Austin, TX 73301" -295818,Wired Headphones,1,11.99,12/07/19 16:28,"725 Wilson St, Boston, MA 02215" -295819,Lightning Charging Cable,1,14.95,12/23/19 12:11,"138 Highland St, Portland, OR 97035" -295820,Bose SoundSport Headphones,1,99.99,12/13/19 09:42,"51 Highland St, San Francisco, CA 94016" -295821,Bose SoundSport Headphones,1,99.99,12/29/19 14:16,"65 Center St, Boston, MA 02215" -295822,Google Phone,1,600,12/04/19 13:53,"307 Wilson St, San Francisco, CA 94016" -295822,Wired Headphones,1,11.99,12/04/19 13:53,"307 Wilson St, San Francisco, CA 94016" -295823,iPhone,1,700,12/10/19 02:12,"852 Maple St, Austin, TX 73301" -295824,Wired Headphones,1,11.99,12/29/19 15:45,"611 North St, New York City, NY 10001" -295825,Apple Airpods Headphones,1,150,12/17/19 16:13,"189 Pine St, Atlanta, GA 30301" -295826,USB-C Charging Cable,1,11.95,12/07/19 14:18,"765 Washington St, San Francisco, CA 94016" -295827,Bose SoundSport Headphones,1,99.99,12/01/19 18:25,"486 4th St, Los Angeles, CA 90001" -295828,USB-C Charging Cable,1,11.95,12/13/19 18:56,"984 Chestnut St, San Francisco, CA 94016" -295829,Google Phone,1,600,12/27/19 13:07,"904 13th St, Atlanta, GA 30301" -295829,USB-C Charging Cable,1,11.95,12/27/19 13:07,"904 13th St, Atlanta, GA 30301" -295830,Bose SoundSport Headphones,1,99.99,12/18/19 14:52,"515 Main St, New York City, NY 10001" -295831,27in 4K Gaming Monitor,1,389.99,12/19/19 14:28,"335 Chestnut St, Dallas, TX 75001" -295832,AA Batteries (4-pack),2,3.84,12/21/19 15:52,"972 Sunset St, Boston, MA 02215" -295833,USB-C Charging Cable,1,11.95,12/28/19 21:48,"673 Church St, Atlanta, GA 30301" -295834,Google Phone,1,600,12/16/19 19:45,"847 Lakeview St, San Francisco, CA 94016" -295835,USB-C Charging Cable,1,11.95,12/24/19 15:34,"892 Adams St, Austin, TX 73301" -295836,Lightning Charging Cable,1,14.95,12/15/19 17:49,"686 Cedar St, San Francisco, CA 94016" -295837,Bose SoundSport Headphones,1,99.99,12/30/19 22:22,"654 Highland St, Los Angeles, CA 90001" -295838,34in Ultrawide Monitor,1,379.99,12/14/19 22:57,"321 8th St, San Francisco, CA 94016" -295839,Apple Airpods Headphones,1,150,12/23/19 12:28,"340 Lakeview St, Seattle, WA 98101" -295840,27in 4K Gaming Monitor,1,389.99,12/07/19 22:52,"442 10th St, Los Angeles, CA 90001" -295841,Wired Headphones,1,11.99,12/01/19 15:29,"610 Madison St, Atlanta, GA 30301" -295842,Apple Airpods Headphones,1,150,12/03/19 12:44,"50 5th St, Los Angeles, CA 90001" -295843,Bose SoundSport Headphones,1,99.99,12/19/19 14:02,"700 West St, San Francisco, CA 94016" -295844,AA Batteries (4-pack),1,3.84,12/31/19 17:51,"663 12th St, Atlanta, GA 30301" -295845,Lightning Charging Cable,1,14.95,12/20/19 09:53,"955 Sunset St, San Francisco, CA 94016" -295846,Flatscreen TV,1,300,12/27/19 19:22,"453 Johnson St, Atlanta, GA 30301" -295847,34in Ultrawide Monitor,1,379.99,12/13/19 15:56,"40 Madison St, Dallas, TX 75001" -295848,Lightning Charging Cable,1,14.95,12/23/19 19:25,"675 Chestnut St, San Francisco, CA 94016" -295849,Wired Headphones,2,11.99,12/24/19 14:42,"121 2nd St, New York City, NY 10001" -295850,USB-C Charging Cable,1,11.95,12/29/19 15:54,"480 1st St, Los Angeles, CA 90001" -295851,iPhone,1,700,12/11/19 17:08,"197 2nd St, Boston, MA 02215" -295852,ThinkPad Laptop,1,999.99,12/24/19 20:52,"639 Sunset St, Los Angeles, CA 90001" -295853,Wired Headphones,1,11.99,12/05/19 16:54,"982 Cedar St, New York City, NY 10001" -295854,iPhone,1,700,12/29/19 10:35,"183 Hickory St, Austin, TX 73301" -295855,20in Monitor,1,109.99,12/12/19 17:43,"584 9th St, Boston, MA 02215" -295856,USB-C Charging Cable,1,11.95,12/24/19 10:37,"214 7th St, Boston, MA 02215" -295857,USB-C Charging Cable,1,11.95,12/30/19 21:42,"984 Jefferson St, Portland, OR 97035" -295858,AAA Batteries (4-pack),1,2.99,12/08/19 00:13,"218 7th St, Dallas, TX 75001" -295859,USB-C Charging Cable,1,11.95,12/29/19 10:53,"588 Washington St, Los Angeles, CA 90001" -295860,USB-C Charging Cable,1,11.95,12/05/19 15:17,"227 Cherry St, New York City, NY 10001" -295861,Lightning Charging Cable,1,14.95,12/01/19 12:59,"510 Sunset St, New York City, NY 10001" -295862,AAA Batteries (4-pack),1,2.99,12/03/19 14:22,"654 12th St, Portland, ME 04101" -295863,AA Batteries (4-pack),1,3.84,12/12/19 11:14,"736 Ridge St, Atlanta, GA 30301" -295864,27in 4K Gaming Monitor,1,389.99,12/20/19 20:02,"434 4th St, Austin, TX 73301" -295865,Bose SoundSport Headphones,1,99.99,12/03/19 15:18,"92 2nd St, Los Angeles, CA 90001" -295866,Wired Headphones,1,11.99,12/06/19 13:57,"281 West St, Los Angeles, CA 90001" -295867,Wired Headphones,1,11.99,12/27/19 21:16,"943 Cedar St, San Francisco, CA 94016" -295868,USB-C Charging Cable,1,11.95,12/28/19 20:55,"547 12th St, Boston, MA 02215" -295869,Lightning Charging Cable,1,14.95,12/16/19 18:46,"4 Main St, Los Angeles, CA 90001" -295870,Lightning Charging Cable,1,14.95,12/09/19 17:01,"955 13th St, San Francisco, CA 94016" -295871,Macbook Pro Laptop,1,1700,12/28/19 11:19,"661 Park St, Dallas, TX 75001" -295872,34in Ultrawide Monitor,1,379.99,12/14/19 10:49,"845 Forest St, Los Angeles, CA 90001" -295873,Google Phone,1,600,12/17/19 11:50,"919 Chestnut St, New York City, NY 10001" -295874,Wired Headphones,1,11.99,12/15/19 08:31,"78 Sunset St, San Francisco, CA 94016" -295875,Lightning Charging Cable,1,14.95,12/11/19 16:54,"898 Jefferson St, Los Angeles, CA 90001" -295876,AA Batteries (4-pack),1,3.84,12/08/19 19:00,"646 12th St, Atlanta, GA 30301" -295877,27in FHD Monitor,1,149.99,12/31/19 15:27,"721 1st St, Los Angeles, CA 90001" -295878,USB-C Charging Cable,1,11.95,12/14/19 20:05,"294 10th St, Los Angeles, CA 90001" -295879,34in Ultrawide Monitor,1,379.99,12/24/19 11:54,"893 Park St, Boston, MA 02215" -295880,AA Batteries (4-pack),1,3.84,12/13/19 17:38,"900 Madison St, San Francisco, CA 94016" -295881,USB-C Charging Cable,1,11.95,12/02/19 18:36,"316 River St, San Francisco, CA 94016" -295882,Wired Headphones,1,11.99,12/20/19 18:14,"301 Jackson St, Austin, TX 73301" -295883,27in 4K Gaming Monitor,1,389.99,12/26/19 08:48,"305 North St, New York City, NY 10001" -295884,AAA Batteries (4-pack),1,2.99,12/28/19 18:49,"198 Walnut St, San Francisco, CA 94016" -295885,iPhone,1,700,12/20/19 13:47,"223 5th St, Dallas, TX 75001" -295886,Wired Headphones,1,11.99,12/27/19 08:59,"352 2nd St, Los Angeles, CA 90001" -295887,Wired Headphones,1,11.99,12/24/19 18:37,"827 Lake St, Seattle, WA 98101" -295888,Lightning Charging Cable,1,14.95,12/31/19 14:42,"628 Church St, Los Angeles, CA 90001" -295889,USB-C Charging Cable,1,11.95,12/24/19 17:56,"300 Cherry St, New York City, NY 10001" -295890,ThinkPad Laptop,1,999.99,12/05/19 11:59,"254 Elm St, San Francisco, CA 94016" -295891,27in 4K Gaming Monitor,1,389.99,12/05/19 13:02,"854 North St, Atlanta, GA 30301" -295892,USB-C Charging Cable,1,11.95,12/28/19 13:31,"534 Walnut St, Portland, OR 97035" -295893,AAA Batteries (4-pack),1,2.99,12/25/19 23:02,"517 13th St, San Francisco, CA 94016" -295894,27in FHD Monitor,1,149.99,12/26/19 13:24,"9 Center St, Los Angeles, CA 90001" -295895,AAA Batteries (4-pack),1,2.99,12/29/19 00:18,"539 Forest St, San Francisco, CA 94016" -295896,Flatscreen TV,1,300,12/24/19 18:21,"929 Dogwood St, Los Angeles, CA 90001" -295897,27in FHD Monitor,1,149.99,12/08/19 11:55,"478 13th St, Portland, OR 97035" -295898,AA Batteries (4-pack),1,3.84,12/21/19 11:28,"375 Spruce St, San Francisco, CA 94016" -295899,USB-C Charging Cable,1,11.95,12/13/19 16:44,"722 Spruce St, Seattle, WA 98101" -295900,AA Batteries (4-pack),1,3.84,12/27/19 18:56,"283 Washington St, Boston, MA 02215" -295901,20in Monitor,1,109.99,12/05/19 20:02,"67 12th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -295902,AA Batteries (4-pack),2,3.84,12/26/19 21:54,"160 Maple St, Austin, TX 73301" -295903,AA Batteries (4-pack),1,3.84,12/21/19 13:40,"337 12th St, Dallas, TX 75001" -295904,Wired Headphones,1,11.99,12/19/19 17:30,"647 Wilson St, Atlanta, GA 30301" -295905,AA Batteries (4-pack),2,3.84,12/06/19 23:48,"345 Walnut St, Los Angeles, CA 90001" -295906,27in FHD Monitor,1,149.99,12/11/19 20:55,"773 7th St, Atlanta, GA 30301" -295907,AA Batteries (4-pack),2,3.84,12/18/19 08:43,"672 Dogwood St, Austin, TX 73301" -295908,20in Monitor,1,109.99,12/17/19 10:28,"342 Adams St, New York City, NY 10001" -295909,AA Batteries (4-pack),1,3.84,12/27/19 17:29,"360 Wilson St, Boston, MA 02215" -295910,Lightning Charging Cable,1,14.95,12/27/19 22:46,"6 Wilson St, Seattle, WA 98101" -,,,,, -295911,Apple Airpods Headphones,1,150,12/10/19 22:14,"152 Spruce St, Los Angeles, CA 90001" -295912,AA Batteries (4-pack),1,3.84,12/01/19 13:53,"282 Lincoln St, San Francisco, CA 94016" -295913,Apple Airpods Headphones,1,150,12/07/19 08:42,"13 Pine St, New York City, NY 10001" -295914,AAA Batteries (4-pack),1,2.99,12/13/19 13:48,"413 Center St, Austin, TX 73301" -295915,Google Phone,1,600,12/23/19 19:04,"535 Meadow St, New York City, NY 10001" -295916,Lightning Charging Cable,1,14.95,12/02/19 11:58,"965 Willow St, Atlanta, GA 30301" -295917,27in FHD Monitor,1,149.99,12/16/19 12:57,"569 2nd St, San Francisco, CA 94016" -295918,AA Batteries (4-pack),1,3.84,12/10/19 07:01,"92 River St, New York City, NY 10001" -295918,AAA Batteries (4-pack),1,2.99,12/10/19 07:01,"92 River St, New York City, NY 10001" -295919,Bose SoundSport Headphones,1,99.99,12/19/19 20:46,"478 Maple St, San Francisco, CA 94016" -295920,27in 4K Gaming Monitor,1,389.99,12/01/19 19:49,"344 6th St, New York City, NY 10001" -295921,27in FHD Monitor,1,149.99,12/16/19 11:09,"425 Main St, Los Angeles, CA 90001" -295922,Bose SoundSport Headphones,1,99.99,12/12/19 19:53,"676 Hickory St, Portland, OR 97035" -295923,Lightning Charging Cable,1,14.95,12/21/19 13:41,"968 8th St, Austin, TX 73301" -295924,Wired Headphones,1,11.99,12/13/19 10:53,"170 Hickory St, Seattle, WA 98101" -295925,AA Batteries (4-pack),1,3.84,12/23/19 10:01,"554 Cedar St, Dallas, TX 75001" -295926,Lightning Charging Cable,1,14.95,12/21/19 20:31,"372 Ridge St, San Francisco, CA 94016" -295927,Wired Headphones,1,11.99,12/16/19 08:14,"626 Walnut St, San Francisco, CA 94016" -295928,AAA Batteries (4-pack),1,2.99,12/25/19 12:08,"683 Forest St, Boston, MA 02215" -295929,Apple Airpods Headphones,1,150,12/25/19 19:18,"538 6th St, Portland, OR 97035" -295930,Wired Headphones,1,11.99,12/10/19 19:57,"774 Washington St, Atlanta, GA 30301" -295931,Bose SoundSport Headphones,1,99.99,12/16/19 22:01,"142 Madison St, San Francisco, CA 94016" -295932,Apple Airpods Headphones,1,150,12/19/19 10:28,"663 Spruce St, New York City, NY 10001" -295932,Bose SoundSport Headphones,1,99.99,12/19/19 10:28,"663 Spruce St, New York City, NY 10001" -295933,AAA Batteries (4-pack),1,2.99,12/16/19 22:44,"19 Maple St, New York City, NY 10001" -295934,27in 4K Gaming Monitor,1,389.99,12/01/19 14:56,"760 Ridge St, Atlanta, GA 30301" -295935,AA Batteries (4-pack),1,3.84,12/10/19 14:32,"606 Lakeview St, San Francisco, CA 94016" -295936,AAA Batteries (4-pack),1,2.99,12/23/19 10:08,"283 Highland St, Seattle, WA 98101" -295937,Lightning Charging Cable,1,14.95,12/26/19 23:17,"282 Willow St, Seattle, WA 98101" -295938,Lightning Charging Cable,1,14.95,12/08/19 08:11,"679 Hickory St, Austin, TX 73301" -295939,AA Batteries (4-pack),1,3.84,12/08/19 20:10,"799 Lakeview St, New York City, NY 10001" -295940,Wired Headphones,1,11.99,12/07/19 08:48,"441 12th St, Los Angeles, CA 90001" -295941,ThinkPad Laptop,1,999.99,12/31/19 16:24,"64 Dogwood St, Portland, OR 97035" -295942,Google Phone,1,600,12/30/19 19:21,"150 North St, Boston, MA 02215" -295943,AAA Batteries (4-pack),3,2.99,12/04/19 13:32,"701 Sunset St, Dallas, TX 75001" -295944,27in 4K Gaming Monitor,1,389.99,12/29/19 17:04,"175 Main St, San Francisco, CA 94016" -295945,Wired Headphones,1,11.99,12/06/19 10:20,"207 Sunset St, Austin, TX 73301" -295946,20in Monitor,1,109.99,12/09/19 11:44,"970 Lincoln St, Portland, OR 97035" -295947,AA Batteries (4-pack),1,3.84,12/29/19 20:09,"441 6th St, Austin, TX 73301" -295948,Macbook Pro Laptop,1,1700,12/17/19 21:08,"863 West St, San Francisco, CA 94016" -295949,Bose SoundSport Headphones,1,99.99,12/17/19 15:29,"603 River St, Los Angeles, CA 90001" -295950,AA Batteries (4-pack),1,3.84,12/31/19 09:15,"789 14th St, Boston, MA 02215" -295951,Lightning Charging Cable,1,14.95,12/02/19 10:25,"349 North St, Dallas, TX 75001" -295952,USB-C Charging Cable,1,11.95,12/23/19 12:55,"403 Dogwood St, Seattle, WA 98101" -295952,Flatscreen TV,1,300,12/23/19 12:55,"403 Dogwood St, Seattle, WA 98101" -295953,Flatscreen TV,1,300,12/24/19 17:03,"559 Church St, Dallas, TX 75001" -295954,27in FHD Monitor,1,149.99,12/29/19 18:56,"321 River St, Boston, MA 02215" -295955,USB-C Charging Cable,1,11.95,12/30/19 16:25,"357 Hickory St, Boston, MA 02215" -295956,AAA Batteries (4-pack),1,2.99,12/18/19 19:17,"793 Adams St, Boston, MA 02215" -295957,Lightning Charging Cable,1,14.95,12/27/19 16:15,"356 12th St, Los Angeles, CA 90001" -295958,AAA Batteries (4-pack),1,2.99,12/04/19 18:36,"485 4th St, Boston, MA 02215" -295959,AAA Batteries (4-pack),2,2.99,12/27/19 20:53,"198 13th St, Atlanta, GA 30301" -295960,AA Batteries (4-pack),1,3.84,12/21/19 19:35,"397 Forest St, San Francisco, CA 94016" -295961,AA Batteries (4-pack),2,3.84,12/16/19 13:13,"229 Park St, Austin, TX 73301" -295962,20in Monitor,1,109.99,12/25/19 16:15,"668 14th St, San Francisco, CA 94016" -295963,Macbook Pro Laptop,1,1700,12/08/19 10:21,"556 11th St, Austin, TX 73301" -295964,Bose SoundSport Headphones,1,99.99,12/03/19 21:52,"950 1st St, Los Angeles, CA 90001" -295965,iPhone,1,700,12/17/19 10:51,"514 Ridge St, Dallas, TX 75001" -295966,Lightning Charging Cable,1,14.95,12/17/19 19:42,"233 North St, San Francisco, CA 94016" -295967,AAA Batteries (4-pack),2,2.99,12/12/19 10:09,"283 South St, Los Angeles, CA 90001" -295968,AA Batteries (4-pack),1,3.84,12/05/19 13:18,"720 Center St, New York City, NY 10001" -295969,USB-C Charging Cable,1,11.95,12/10/19 11:08,"646 Elm St, Boston, MA 02215" -295970,AA Batteries (4-pack),1,3.84,12/03/19 23:08,"414 Adams St, Boston, MA 02215" -295971,AA Batteries (4-pack),2,3.84,12/30/19 16:45,"10 Adams St, Los Angeles, CA 90001" -295972,USB-C Charging Cable,1,11.95,12/12/19 11:54,"340 1st St, Los Angeles, CA 90001" -295973,AA Batteries (4-pack),1,3.84,12/07/19 02:15,"597 Center St, New York City, NY 10001" -295974,USB-C Charging Cable,1,11.95,12/15/19 20:57,"570 Cherry St, San Francisco, CA 94016" -295975,USB-C Charging Cable,1,11.95,12/14/19 10:01,"716 Hickory St, San Francisco, CA 94016" -295976,Bose SoundSport Headphones,1,99.99,12/30/19 13:20,"981 7th St, Dallas, TX 75001" -295977,Wired Headphones,1,11.99,12/09/19 17:50,"141 West St, Boston, MA 02215" -295978,27in FHD Monitor,1,149.99,12/10/19 08:08,"293 7th St, Boston, MA 02215" -295979,Bose SoundSport Headphones,1,99.99,12/28/19 20:33,"356 Lake St, Los Angeles, CA 90001" -295980,27in 4K Gaming Monitor,1,389.99,12/19/19 10:53,"934 2nd St, Boston, MA 02215" -295981,Lightning Charging Cable,1,14.95,12/27/19 20:27,"321 Hill St, San Francisco, CA 94016" -295982,Vareebadd Phone,1,400,12/28/19 07:11,"3 11th St, Los Angeles, CA 90001" -295983,AA Batteries (4-pack),3,3.84,12/06/19 10:46,"782 5th St, Los Angeles, CA 90001" -295984,Lightning Charging Cable,1,14.95,12/11/19 22:21,"2 6th St, New York City, NY 10001" -295985,Lightning Charging Cable,1,14.95,12/10/19 12:56,"269 2nd St, San Francisco, CA 94016" -295986,USB-C Charging Cable,1,11.95,12/18/19 01:34,"996 Meadow St, San Francisco, CA 94016" -295987,34in Ultrawide Monitor,1,379.99,12/06/19 19:07,"351 9th St, San Francisco, CA 94016" -295988,AA Batteries (4-pack),1,3.84,12/28/19 11:34,"351 Lake St, Austin, TX 73301" -295989,Lightning Charging Cable,1,14.95,12/16/19 14:01,"872 Johnson St, Boston, MA 02215" -295990,ThinkPad Laptop,1,999.99,12/16/19 22:08,"192 Chestnut St, Seattle, WA 98101" -295991,iPhone,1,700,12/15/19 20:16,"857 Center St, Boston, MA 02215" -295991,Lightning Charging Cable,1,14.95,12/15/19 20:16,"857 Center St, Boston, MA 02215" -295992,iPhone,1,700,12/02/19 06:33,"511 Main St, Los Angeles, CA 90001" -295993,AAA Batteries (4-pack),2,2.99,12/21/19 12:28,"106 Ridge St, New York City, NY 10001" -295994,Lightning Charging Cable,1,14.95,12/17/19 18:21,"34 River St, San Francisco, CA 94016" -295995,27in 4K Gaming Monitor,1,389.99,12/12/19 17:30,"968 Meadow St, Boston, MA 02215" -295996,Bose SoundSport Headphones,1,99.99,12/15/19 22:57,"286 7th St, Austin, TX 73301" -295997,Apple Airpods Headphones,1,150,12/09/19 07:45,"973 Pine St, Boston, MA 02215" -295998,AAA Batteries (4-pack),2,2.99,12/14/19 10:07,"771 Cedar St, Austin, TX 73301" -295999,Flatscreen TV,1,300,12/27/19 13:36,"884 Main St, Boston, MA 02215" -296000,USB-C Charging Cable,1,11.95,12/05/19 18:35,"916 Cherry St, Boston, MA 02215" -296001,Wired Headphones,1,11.99,12/18/19 15:44,"379 Madison St, San Francisco, CA 94016" -296002,AAA Batteries (4-pack),2,2.99,12/19/19 11:08,"543 Chestnut St, San Francisco, CA 94016" -296003,USB-C Charging Cable,1,11.95,12/23/19 05:57,"827 Center St, Los Angeles, CA 90001" -296004,Apple Airpods Headphones,1,150,12/02/19 19:03,"660 Willow St, Seattle, WA 98101" -296005,AAA Batteries (4-pack),2,2.99,12/27/19 19:39,"503 Highland St, Boston, MA 02215" -296006,USB-C Charging Cable,1,11.95,12/10/19 18:09,"620 Main St, San Francisco, CA 94016" -296007,Lightning Charging Cable,1,14.95,12/25/19 00:35,"267 North St, Seattle, WA 98101" -296008,Google Phone,1,600,12/06/19 13:18,"616 10th St, Seattle, WA 98101" -296009,USB-C Charging Cable,1,11.95,12/16/19 09:13,"389 Jefferson St, Seattle, WA 98101" -296010,27in 4K Gaming Monitor,1,389.99,12/13/19 13:00,"311 Spruce St, Boston, MA 02215" -296011,27in 4K Gaming Monitor,1,389.99,12/03/19 23:30,"764 Jefferson St, Portland, OR 97035" -296012,iPhone,1,700,12/15/19 18:43,"689 Pine St, Seattle, WA 98101" -296013,AAA Batteries (4-pack),1,2.99,12/07/19 11:08,"369 Park St, Los Angeles, CA 90001" -296014,AAA Batteries (4-pack),1,2.99,12/15/19 19:54,"43 8th St, Portland, OR 97035" -296015,Lightning Charging Cable,2,14.95,12/30/19 04:17,"902 1st St, Austin, TX 73301" -296016,Bose SoundSport Headphones,1,99.99,12/16/19 17:09,"543 Spruce St, New York City, NY 10001" -296017,USB-C Charging Cable,1,11.95,12/30/19 12:10,"374 Maple St, Boston, MA 02215" -296018,AAA Batteries (4-pack),2,2.99,12/28/19 07:14,"305 Dogwood St, Portland, ME 04101" -296019,Bose SoundSport Headphones,1,99.99,12/14/19 19:26,"600 Willow St, Austin, TX 73301" -296020,34in Ultrawide Monitor,1,379.99,12/25/19 23:36,"533 Chestnut St, San Francisco, CA 94016" -296021,Wired Headphones,1,11.99,12/25/19 12:49,"581 North St, Portland, OR 97035" -296022,Wired Headphones,1,11.99,12/06/19 19:25,"526 1st St, Boston, MA 02215" -296023,20in Monitor,1,109.99,12/11/19 11:52,"699 Walnut St, Los Angeles, CA 90001" -296024,AA Batteries (4-pack),2,3.84,12/12/19 12:10,"524 Jefferson St, San Francisco, CA 94016" -296025,AA Batteries (4-pack),2,3.84,12/03/19 03:34,"721 14th St, Atlanta, GA 30301" -296026,Apple Airpods Headphones,1,150,12/05/19 09:59,"937 Highland St, San Francisco, CA 94016" -296027,AAA Batteries (4-pack),3,2.99,12/20/19 06:27,"577 10th St, Los Angeles, CA 90001" -296028,Vareebadd Phone,1,400,12/04/19 18:45,"216 Maple St, Los Angeles, CA 90001" -296029,27in 4K Gaming Monitor,1,389.99,12/30/19 20:43,"347 Meadow St, Dallas, TX 75001" -296030,Macbook Pro Laptop,1,1700,12/24/19 12:31,"698 4th St, Portland, OR 97035" -296031,Google Phone,1,600,12/18/19 20:40,"815 Pine St, Seattle, WA 98101" -296032,Bose SoundSport Headphones,1,99.99,12/20/19 14:37,"54 13th St, Los Angeles, CA 90001" -296033,27in FHD Monitor,1,149.99,12/03/19 17:58,"920 2nd St, New York City, NY 10001" -296034,Google Phone,1,600,12/18/19 18:43,"844 Forest St, Dallas, TX 75001" -296035,Lightning Charging Cable,1,14.95,12/25/19 19:16,"864 Lake St, Boston, MA 02215" -296036,Wired Headphones,1,11.99,12/12/19 00:02,"887 Walnut St, San Francisco, CA 94016" -296037,AA Batteries (4-pack),1,3.84,12/23/19 10:13,"744 7th St, Dallas, TX 75001" -296038,Bose SoundSport Headphones,1,99.99,12/07/19 20:08,"170 8th St, Dallas, TX 75001" -296039,Wired Headphones,1,11.99,12/11/19 13:16,"856 Madison St, Los Angeles, CA 90001" -296040,27in FHD Monitor,1,149.99,12/25/19 16:30,"794 West St, Atlanta, GA 30301" -296041,Flatscreen TV,1,300,12/27/19 19:49,"495 6th St, San Francisco, CA 94016" -296042,27in FHD Monitor,1,149.99,12/13/19 16:29,"830 11th St, Boston, MA 02215" -296043,Lightning Charging Cable,1,14.95,12/05/19 18:46,"776 Johnson St, Atlanta, GA 30301" -296044,AA Batteries (4-pack),3,3.84,12/26/19 16:50,"74 1st St, New York City, NY 10001" -296045,34in Ultrawide Monitor,1,379.99,12/22/19 07:03,"262 Elm St, New York City, NY 10001" -296046,USB-C Charging Cable,1,11.95,12/15/19 11:59,"319 Lake St, San Francisco, CA 94016" -296047,AAA Batteries (4-pack),2,2.99,12/02/19 18:09,"433 4th St, Los Angeles, CA 90001" -296048,AAA Batteries (4-pack),2,2.99,12/07/19 14:03,"441 Meadow St, Dallas, TX 75001" -296049,27in FHD Monitor,1,149.99,12/12/19 15:16,"779 Adams St, Atlanta, GA 30301" -296050,USB-C Charging Cable,1,11.95,12/25/19 19:32,"571 Lake St, New York City, NY 10001" -296051,Wired Headphones,2,11.99,12/15/19 14:18,"796 6th St, New York City, NY 10001" -296052,Apple Airpods Headphones,1,150,12/08/19 18:59,"349 Maple St, San Francisco, CA 94016" -296053,34in Ultrawide Monitor,1,379.99,12/05/19 18:59,"538 8th St, Boston, MA 02215" -296054,ThinkPad Laptop,1,999.99,12/03/19 11:12,"788 7th St, Portland, OR 97035" -296055,Apple Airpods Headphones,1,150,12/25/19 04:56,"266 8th St, Austin, TX 73301" -296056,Google Phone,1,600,12/12/19 21:06,"803 Highland St, Portland, OR 97035" -296057,AAA Batteries (4-pack),1,2.99,12/05/19 12:41,"487 Willow St, Atlanta, GA 30301" -296058,USB-C Charging Cable,1,11.95,12/27/19 15:09,"864 14th St, Boston, MA 02215" -296059,USB-C Charging Cable,1,11.95,12/20/19 18:30,"998 North St, New York City, NY 10001" -296060,iPhone,1,700,12/23/19 18:50,"951 Lakeview St, San Francisco, CA 94016" -296061,Apple Airpods Headphones,1,150,12/09/19 20:45,"519 Hickory St, Los Angeles, CA 90001" -296062,27in FHD Monitor,1,149.99,12/09/19 16:32,"48 Adams St, Boston, MA 02215" -296063,Apple Airpods Headphones,1,150,12/13/19 08:35,"852 Wilson St, Boston, MA 02215" -296064,USB-C Charging Cable,1,11.95,12/11/19 16:35,"370 Lakeview St, Atlanta, GA 30301" -296065,Lightning Charging Cable,1,14.95,12/26/19 18:05,"80 Chestnut St, Los Angeles, CA 90001" -296066,27in 4K Gaming Monitor,1,389.99,12/05/19 11:12,"243 Maple St, San Francisco, CA 94016" -296067,Apple Airpods Headphones,1,150,12/29/19 06:21,"858 Hickory St, Boston, MA 02215" -296068,Macbook Pro Laptop,1,1700,12/08/19 22:10,"897 Jackson St, San Francisco, CA 94016" -296069,AAA Batteries (4-pack),1,2.99,12/22/19 04:48,"465 Lakeview St, Portland, OR 97035" -296070,Lightning Charging Cable,1,14.95,12/05/19 11:30,"181 Pine St, Seattle, WA 98101" -296071,27in FHD Monitor,1,149.99,12/23/19 09:56,"926 Adams St, New York City, NY 10001" -296072,USB-C Charging Cable,1,11.95,12/25/19 21:29,"271 Spruce St, Seattle, WA 98101" -296073,Lightning Charging Cable,1,14.95,12/27/19 07:36,"774 Madison St, Atlanta, GA 30301" -296074,Lightning Charging Cable,1,14.95,12/12/19 22:54,"115 Johnson St, Portland, OR 97035" -296075,AAA Batteries (4-pack),1,2.99,12/11/19 12:47,"284 Jefferson St, Los Angeles, CA 90001" -296076,Macbook Pro Laptop,1,1700,12/03/19 15:19,"679 Chestnut St, San Francisco, CA 94016" -296077,34in Ultrawide Monitor,1,379.99,12/27/19 09:09,"941 Park St, Los Angeles, CA 90001" -296078,Flatscreen TV,1,300,12/27/19 14:09,"383 Church St, Seattle, WA 98101" -296079,Wired Headphones,1,11.99,12/02/19 21:40,"964 Hill St, Atlanta, GA 30301" -296080,USB-C Charging Cable,2,11.95,12/22/19 13:53,"805 North St, San Francisco, CA 94016" -296081,Flatscreen TV,1,300,12/30/19 16:52,"970 Sunset St, Austin, TX 73301" -296081,Flatscreen TV,1,300,12/30/19 16:52,"970 Sunset St, Austin, TX 73301" -296082,27in 4K Gaming Monitor,1,389.99,12/21/19 08:38,"38 1st St, San Francisco, CA 94016" -296083,iPhone,1,700,12/30/19 20:04,"354 Lakeview St, San Francisco, CA 94016" -296084,27in 4K Gaming Monitor,1,389.99,12/05/19 14:04,"533 Hickory St, San Francisco, CA 94016" -296085,Google Phone,1,600,12/24/19 17:25,"482 North St, New York City, NY 10001" -296086,27in 4K Gaming Monitor,1,389.99,12/31/19 20:18,"305 Jefferson St, Austin, TX 73301" -296087,AAA Batteries (4-pack),1,2.99,12/26/19 01:06,"654 Wilson St, San Francisco, CA 94016" -296088,iPhone,1,700,12/16/19 20:32,"622 4th St, Boston, MA 02215" -296089,Lightning Charging Cable,1,14.95,12/16/19 13:05,"949 North St, Portland, OR 97035" -296090,USB-C Charging Cable,1,11.95,12/17/19 16:31,"965 13th St, Los Angeles, CA 90001" -296091,Apple Airpods Headphones,1,150,12/28/19 21:43,"10 Maple St, Los Angeles, CA 90001" -296092,34in Ultrawide Monitor,1,379.99,12/11/19 11:07,"546 Meadow St, Boston, MA 02215" -296093,Wired Headphones,1,11.99,12/15/19 11:13,"693 10th St, San Francisco, CA 94016" -296094,iPhone,1,700,12/04/19 01:44,"376 4th St, Atlanta, GA 30301" -296095,AA Batteries (4-pack),2,3.84,12/06/19 18:05,"613 Forest St, Los Angeles, CA 90001" -296096,Wired Headphones,2,11.99,12/14/19 12:43,"381 North St, Los Angeles, CA 90001" -296097,27in FHD Monitor,1,149.99,12/12/19 15:49,"111 Adams St, San Francisco, CA 94016" -296098,Apple Airpods Headphones,1,150,12/28/19 17:37,"126 7th St, Los Angeles, CA 90001" -296099,AAA Batteries (4-pack),1,2.99,12/01/19 09:12,"376 11th St, Los Angeles, CA 90001" -296100,Wired Headphones,1,11.99,12/27/19 10:05,"101 12th St, Seattle, WA 98101" -296101,Lightning Charging Cable,1,14.95,12/26/19 18:36,"598 Maple St, New York City, NY 10001" -296102,27in 4K Gaming Monitor,1,389.99,12/22/19 16:38,"741 4th St, San Francisco, CA 94016" -296103,Flatscreen TV,1,300,12/03/19 19:59,"942 Madison St, San Francisco, CA 94016" -296104,Bose SoundSport Headphones,1,99.99,12/10/19 18:32,"111 Elm St, Los Angeles, CA 90001" -296105,Lightning Charging Cable,1,14.95,12/29/19 17:57,"134 Dogwood St, San Francisco, CA 94016" -296106,Wired Headphones,3,11.99,12/18/19 13:04,"755 Adams St, New York City, NY 10001" -296107,Lightning Charging Cable,1,14.95,12/13/19 10:03,"235 West St, New York City, NY 10001" -296108,Apple Airpods Headphones,1,150,12/15/19 21:01,"621 7th St, San Francisco, CA 94016" -296109,AA Batteries (4-pack),1,3.84,12/05/19 20:27,"15 Jefferson St, New York City, NY 10001" -296110,iPhone,1,700,12/17/19 15:47,"621 Adams St, San Francisco, CA 94016" -296111,Apple Airpods Headphones,1,150,12/22/19 11:56,"917 Madison St, San Francisco, CA 94016" -296112,34in Ultrawide Monitor,1,379.99,12/11/19 20:51,"814 Walnut St, Los Angeles, CA 90001" -296113,AA Batteries (4-pack),1,3.84,12/25/19 04:31,"49 Wilson St, San Francisco, CA 94016" -296114,34in Ultrawide Monitor,1,379.99,12/07/19 17:35,"983 Jefferson St, Los Angeles, CA 90001" -296115,AAA Batteries (4-pack),1,2.99,12/03/19 08:38,"457 Cedar St, New York City, NY 10001" -296116,Bose SoundSport Headphones,1,99.99,12/23/19 10:31,"22 7th St, Dallas, TX 75001" -296117,AAA Batteries (4-pack),1,2.99,12/02/19 09:53,"223 6th St, Austin, TX 73301" -296118,AA Batteries (4-pack),1,3.84,12/24/19 16:47,"786 Lincoln St, Boston, MA 02215" -296119,AAA Batteries (4-pack),1,2.99,12/06/19 22:43,"585 10th St, New York City, NY 10001" -296120,USB-C Charging Cable,1,11.95,12/09/19 17:46,"83 Adams St, San Francisco, CA 94016" -296121,USB-C Charging Cable,1,11.95,12/22/19 08:42,"585 Chestnut St, New York City, NY 10001" -296122,USB-C Charging Cable,1,11.95,12/13/19 03:11,"602 2nd St, San Francisco, CA 94016" -296123,27in 4K Gaming Monitor,1,389.99,12/11/19 13:24,"927 Sunset St, Seattle, WA 98101" -296124,Lightning Charging Cable,1,14.95,12/07/19 08:38,"213 River St, New York City, NY 10001" -296125,27in FHD Monitor,1,149.99,12/26/19 19:16,"42 7th St, New York City, NY 10001" -296126,Macbook Pro Laptop,1,1700,12/31/19 18:45,"15 Main St, Seattle, WA 98101" -296127,USB-C Charging Cable,1,11.95,12/18/19 12:40,"426 Meadow St, Portland, ME 04101" -296128,AAA Batteries (4-pack),2,2.99,12/24/19 04:18,"148 Sunset St, Austin, TX 73301" -296129,Apple Airpods Headphones,1,150,12/17/19 17:14,"545 Lake St, Austin, TX 73301" -296130,27in FHD Monitor,1,149.99,12/14/19 09:59,"909 5th St, New York City, NY 10001" -296131,Bose SoundSport Headphones,1,99.99,12/25/19 21:02,"68 Willow St, Seattle, WA 98101" -296132,20in Monitor,1,109.99,12/02/19 20:21,"219 Jefferson St, Portland, OR 97035" -296133,AA Batteries (4-pack),1,3.84,12/29/19 19:31,"534 Center St, Boston, MA 02215" -296134,AAA Batteries (4-pack),1,2.99,12/16/19 10:29,"545 Willow St, Portland, OR 97035" -296135,AA Batteries (4-pack),1,3.84,12/06/19 19:18,"298 Lincoln St, Boston, MA 02215" -296135,Lightning Charging Cable,1,14.95,12/06/19 19:18,"298 Lincoln St, Boston, MA 02215" -296136,USB-C Charging Cable,1,11.95,12/11/19 04:19,"867 Church St, New York City, NY 10001" -296137,Wired Headphones,1,11.99,12/23/19 13:31,"502 Forest St, Dallas, TX 75001" -296138,34in Ultrawide Monitor,1,379.99,12/19/19 13:19,"235 Adams St, San Francisco, CA 94016" -296139,Bose SoundSport Headphones,1,99.99,12/29/19 02:40,"440 Elm St, New York City, NY 10001" -296140,Macbook Pro Laptop,1,1700,12/21/19 17:48,"678 Wilson St, Los Angeles, CA 90001" -296141,Lightning Charging Cable,1,14.95,12/09/19 18:21,"787 Elm St, San Francisco, CA 94016" -296141,Bose SoundSport Headphones,1,99.99,12/09/19 18:21,"787 Elm St, San Francisco, CA 94016" -296142,Google Phone,1,600,12/07/19 18:22,"388 9th St, Seattle, WA 98101" -296143,AAA Batteries (4-pack),1,2.99,12/05/19 20:25,"62 Highland St, Los Angeles, CA 90001" -296144,iPhone,1,700,12/16/19 21:21,"897 Main St, New York City, NY 10001" -296144,Apple Airpods Headphones,1,150,12/16/19 21:21,"897 Main St, New York City, NY 10001" -296145,27in 4K Gaming Monitor,1,389.99,12/19/19 18:09,"995 13th St, Boston, MA 02215" -296146,USB-C Charging Cable,1,11.95,12/06/19 13:01,"996 Elm St, Portland, OR 97035" -296147,Google Phone,1,600,12/07/19 09:04,"171 Adams St, Los Angeles, CA 90001" -296148,27in FHD Monitor,1,149.99,12/01/19 23:00,"662 Highland St, New York City, NY 10001" -296149,AAA Batteries (4-pack),2,2.99,12/08/19 23:12,"926 5th St, Seattle, WA 98101" -296150,Apple Airpods Headphones,1,150,12/04/19 14:00,"205 Cherry St, New York City, NY 10001" -296151,AA Batteries (4-pack),1,3.84,12/28/19 13:13,"19 Sunset St, New York City, NY 10001" -296152,USB-C Charging Cable,1,11.95,12/20/19 19:21,"879 River St, Seattle, WA 98101" -296152,Lightning Charging Cable,1,14.95,12/20/19 19:21,"879 River St, Seattle, WA 98101" -296153,Apple Airpods Headphones,1,150,12/11/19 21:25,"205 Elm St, Los Angeles, CA 90001" -296154,Lightning Charging Cable,1,14.95,12/08/19 20:30,"150 Ridge St, Austin, TX 73301" -296155,AA Batteries (4-pack),1,3.84,12/25/19 10:59,"423 Johnson St, Los Angeles, CA 90001" -296156,Lightning Charging Cable,1,14.95,12/10/19 20:30,"150 Lake St, Austin, TX 73301" -296157,AAA Batteries (4-pack),1,2.99,12/15/19 11:41,"46 12th St, Boston, MA 02215" -296158,USB-C Charging Cable,1,11.95,12/02/19 22:57,"251 River St, Portland, ME 04101" -296159,Wired Headphones,1,11.99,12/08/19 16:48,"480 Hickory St, Los Angeles, CA 90001" -296160,Wired Headphones,1,11.99,12/09/19 14:18,"348 Willow St, New York City, NY 10001" -296161,AAA Batteries (4-pack),1,2.99,12/13/19 09:53,"638 1st St, New York City, NY 10001" -296162,Lightning Charging Cable,1,14.95,12/31/19 09:36,"647 Jackson St, San Francisco, CA 94016" -296163,27in FHD Monitor,1,149.99,12/12/19 17:23,"971 7th St, Dallas, TX 75001" -296164,Lightning Charging Cable,1,14.95,12/01/19 10:12,"856 Hill St, Atlanta, GA 30301" -296165,AA Batteries (4-pack),2,3.84,12/09/19 16:44,"429 Madison St, Los Angeles, CA 90001" -296166,Wired Headphones,1,11.99,12/24/19 12:00,"196 Washington St, Portland, OR 97035" -296167,AAA Batteries (4-pack),4,2.99,12/22/19 10:18,"298 9th St, Los Angeles, CA 90001" -296168,ThinkPad Laptop,1,999.99,12/29/19 07:26,"810 Lincoln St, Boston, MA 02215" -296169,iPhone,1,700,12/10/19 22:31,"111 Hickory St, Seattle, WA 98101" -296170,AA Batteries (4-pack),2,3.84,12/28/19 18:46,"158 Lake St, Austin, TX 73301" -296171,Bose SoundSport Headphones,1,99.99,12/15/19 20:49,"977 Wilson St, New York City, NY 10001" -296172,Wired Headphones,1,11.99,12/29/19 21:37,"119 11th St, Seattle, WA 98101" -296173,Apple Airpods Headphones,1,150,12/08/19 09:26,"542 Maple St, New York City, NY 10001" -296174,27in FHD Monitor,1,149.99,12/29/19 09:38,"982 Cherry St, Portland, OR 97035" -296175,Bose SoundSport Headphones,1,99.99,12/27/19 09:45,"601 Lakeview St, Atlanta, GA 30301" -296176,Wired Headphones,1,11.99,12/11/19 17:56,"893 Cedar St, San Francisco, CA 94016" -296177,ThinkPad Laptop,1,999.99,12/23/19 14:22,"236 Cherry St, San Francisco, CA 94016" -296178,AAA Batteries (4-pack),1,2.99,12/16/19 17:47,"307 Chestnut St, Boston, MA 02215" -296179,Apple Airpods Headphones,1,150,12/09/19 14:42,"764 Hickory St, Boston, MA 02215" -296180,AA Batteries (4-pack),4,3.84,12/17/19 15:07,"958 North St, Portland, OR 97035" -296181,Wired Headphones,1,11.99,12/31/19 21:58,"275 Meadow St, Dallas, TX 75001" -296182,Bose SoundSport Headphones,1,99.99,12/06/19 10:27,"864 Dogwood St, Austin, TX 73301" -296183,USB-C Charging Cable,1,11.95,12/22/19 08:18,"220 Lake St, Portland, OR 97035" -296184,27in 4K Gaming Monitor,1,389.99,12/08/19 02:23,"468 Sunset St, New York City, NY 10001" -296185,Apple Airpods Headphones,1,150,12/13/19 12:26,"472 Walnut St, Los Angeles, CA 90001" -296186,Apple Airpods Headphones,1,150,12/11/19 12:22,"661 Chestnut St, Seattle, WA 98101" -296187,Google Phone,1,600,12/21/19 15:45,"322 5th St, San Francisco, CA 94016" -296187,USB-C Charging Cable,1,11.95,12/21/19 15:45,"322 5th St, San Francisco, CA 94016" -296188,27in FHD Monitor,1,149.99,12/14/19 13:50,"860 Forest St, Boston, MA 02215" -296189,AA Batteries (4-pack),1,3.84,12/11/19 19:16,"549 Park St, Dallas, TX 75001" -296190,AA Batteries (4-pack),2,3.84,12/07/19 14:04,"937 Hill St, Austin, TX 73301" -296191,USB-C Charging Cable,1,11.95,12/22/19 12:43,"688 Madison St, Atlanta, GA 30301" -296192,Bose SoundSport Headphones,1,99.99,12/14/19 07:34,"659 14th St, Dallas, TX 75001" -296193,AAA Batteries (4-pack),1,2.99,12/25/19 14:35,"863 Forest St, San Francisco, CA 94016" -296194,Apple Airpods Headphones,1,150,12/04/19 11:28,"305 Madison St, Boston, MA 02215" -296195,Apple Airpods Headphones,1,150,12/04/19 08:51,"840 Main St, San Francisco, CA 94016" -296196,Lightning Charging Cable,1,14.95,12/17/19 23:43,"459 11th St, Atlanta, GA 30301" -296197,20in Monitor,1,109.99,12/19/19 19:25,"202 Washington St, New York City, NY 10001" -296198,Vareebadd Phone,1,400,12/23/19 09:20,"303 Ridge St, Austin, TX 73301" -296199,Google Phone,1,600,12/06/19 22:03,"746 Ridge St, Los Angeles, CA 90001" -296200,Bose SoundSport Headphones,1,99.99,12/28/19 08:55,"56 1st St, San Francisco, CA 94016" -296201,AA Batteries (4-pack),1,3.84,12/19/19 14:56,"78 Hickory St, San Francisco, CA 94016" -296202,USB-C Charging Cable,1,11.95,12/13/19 10:35,"354 Elm St, San Francisco, CA 94016" -296203,34in Ultrawide Monitor,1,379.99,12/22/19 11:43,"732 Highland St, New York City, NY 10001" -296204,Apple Airpods Headphones,1,150,12/04/19 20:08,"6 4th St, San Francisco, CA 94016" -296205,USB-C Charging Cable,1,11.95,12/22/19 18:27,"982 Cedar St, Dallas, TX 75001" -296206,27in 4K Gaming Monitor,1,389.99,12/06/19 01:31,"626 9th St, Portland, ME 04101" -296207,Wired Headphones,1,11.99,12/16/19 08:54,"123 South St, Los Angeles, CA 90001" -296208,27in 4K Gaming Monitor,1,389.99,12/31/19 23:04,"445 Cedar St, Los Angeles, CA 90001" -296209,AA Batteries (4-pack),1,3.84,12/07/19 08:03,"462 1st St, New York City, NY 10001" -296210,Macbook Pro Laptop,1,1700,12/18/19 11:41,"763 Cherry St, San Francisco, CA 94016" -296211,AAA Batteries (4-pack),2,2.99,12/04/19 00:04,"189 1st St, San Francisco, CA 94016" -296212,27in FHD Monitor,1,149.99,12/04/19 14:26,"414 Pine St, Portland, ME 04101" -296213,iPhone,1,700,12/04/19 07:37,"498 8th St, New York City, NY 10001" -296214,Bose SoundSport Headphones,1,99.99,12/19/19 08:02,"363 Center St, Atlanta, GA 30301" -296215,Apple Airpods Headphones,1,150,12/28/19 19:02,"598 West St, San Francisco, CA 94016" -296216,AA Batteries (4-pack),2,3.84,12/22/19 12:07,"103 Dogwood St, Boston, MA 02215" -296217,AA Batteries (4-pack),4,3.84,12/27/19 15:07,"302 Johnson St, Seattle, WA 98101" -296218,AA Batteries (4-pack),1,3.84,12/28/19 18:34,"692 Meadow St, Boston, MA 02215" -296219,Lightning Charging Cable,1,14.95,12/09/19 08:25,"238 South St, Austin, TX 73301" -296220,Apple Airpods Headphones,1,150,12/19/19 15:01,"167 Meadow St, Austin, TX 73301" -296221,Apple Airpods Headphones,1,150,12/17/19 15:21,"521 Jackson St, Los Angeles, CA 90001" -296222,Apple Airpods Headphones,1,150,12/19/19 15:33,"958 2nd St, Los Angeles, CA 90001" -296223,AA Batteries (4-pack),1,3.84,12/13/19 06:20,"456 Highland St, San Francisco, CA 94016" -296224,Bose SoundSport Headphones,1,99.99,12/30/19 17:36,"786 Cherry St, Austin, TX 73301" -296225,Lightning Charging Cable,2,14.95,12/10/19 19:23,"807 8th St, Boston, MA 02215" -296226,Apple Airpods Headphones,1,150,12/27/19 22:39,"891 Hill St, San Francisco, CA 94016" -296227,27in 4K Gaming Monitor,1,389.99,12/14/19 19:47,"482 Center St, Los Angeles, CA 90001" -296228,Flatscreen TV,1,300,12/04/19 21:52,"891 Ridge St, Dallas, TX 75001" -296229,Google Phone,1,600,12/28/19 20:07,"351 9th St, Austin, TX 73301" -296230,USB-C Charging Cable,1,11.95,12/29/19 18:38,"900 Lake St, Seattle, WA 98101" -296231,USB-C Charging Cable,1,11.95,12/19/19 09:22,"45 Park St, Austin, TX 73301" -296232,AA Batteries (4-pack),1,3.84,12/27/19 10:41,"158 Washington St, Seattle, WA 98101" -296233,AA Batteries (4-pack),1,3.84,12/05/19 15:49,"444 8th St, Los Angeles, CA 90001" -296234,iPhone,1,700,12/01/19 10:44,"466 2nd St, Los Angeles, CA 90001" -296235,USB-C Charging Cable,1,11.95,12/23/19 16:13,"84 Lakeview St, San Francisco, CA 94016" -296236,AA Batteries (4-pack),2,3.84,12/11/19 15:04,"993 4th St, Los Angeles, CA 90001" -296237,27in FHD Monitor,1,149.99,12/02/19 10:35,"611 Chestnut St, San Francisco, CA 94016" -296238,ThinkPad Laptop,1,999.99,12/05/19 18:37,"544 6th St, San Francisco, CA 94016" -296239,Lightning Charging Cable,1,14.95,12/30/19 10:09,"184 Center St, New York City, NY 10001" -296240,USB-C Charging Cable,1,11.95,12/14/19 11:00,"128 Spruce St, Austin, TX 73301" -296241,USB-C Charging Cable,1,11.95,12/09/19 13:13,"843 Washington St, New York City, NY 10001" -296242,USB-C Charging Cable,1,11.95,12/29/19 17:51,"825 Johnson St, Los Angeles, CA 90001" -296243,34in Ultrawide Monitor,1,379.99,12/07/19 19:30,"263 Adams St, Atlanta, GA 30301" -296244,USB-C Charging Cable,1,11.95,12/26/19 18:04,"354 Adams St, Boston, MA 02215" -296245,Lightning Charging Cable,1,14.95,12/08/19 15:10,"449 13th St, New York City, NY 10001" -296246,Apple Airpods Headphones,1,150,12/02/19 16:49,"618 Main St, Austin, TX 73301" -296247,AAA Batteries (4-pack),1,2.99,12/28/19 14:54,"123 Washington St, New York City, NY 10001" -296248,Flatscreen TV,1,300,12/04/19 16:24,"722 Forest St, New York City, NY 10001" -296249,Wired Headphones,1,11.99,12/09/19 12:28,"90 12th St, Boston, MA 02215" -296250,Lightning Charging Cable,1,14.95,12/02/19 20:36,"308 8th St, New York City, NY 10001" -296251,Apple Airpods Headphones,1,150,12/23/19 21:43,"869 Maple St, Atlanta, GA 30301" -296252,Lightning Charging Cable,1,14.95,12/13/19 07:29,"399 14th St, Austin, TX 73301" -296253,AA Batteries (4-pack),2,3.84,12/02/19 21:20,"699 Jackson St, Portland, OR 97035" -296254,USB-C Charging Cable,3,11.95,12/12/19 10:04,"690 Dogwood St, San Francisco, CA 94016" -296255,ThinkPad Laptop,1,999.99,12/14/19 03:10,"566 Lincoln St, San Francisco, CA 94016" -296256,Bose SoundSport Headphones,1,99.99,12/03/19 13:05,"714 11th St, Seattle, WA 98101" -296257,Apple Airpods Headphones,1,150,12/07/19 21:00,"546 Willow St, San Francisco, CA 94016" -296258,AA Batteries (4-pack),3,3.84,12/09/19 23:55,"388 Wilson St, Austin, TX 73301" -296259,Wired Headphones,1,11.99,12/13/19 15:58,"896 West St, San Francisco, CA 94016" -296260,Bose SoundSport Headphones,1,99.99,12/14/19 10:02,"220 Adams St, Austin, TX 73301" -296261,Wired Headphones,1,11.99,12/21/19 19:59,"271 Adams St, New York City, NY 10001" -296262,Lightning Charging Cable,1,14.95,12/08/19 23:54,"615 Wilson St, San Francisco, CA 94016" -296263,Google Phone,1,600,12/11/19 18:04,"229 Pine St, San Francisco, CA 94016" -296263,Wired Headphones,1,11.99,12/11/19 18:04,"229 Pine St, San Francisco, CA 94016" -296264,Lightning Charging Cable,1,14.95,12/01/19 15:05,"36 5th St, New York City, NY 10001" -296265,iPhone,1,700,12/01/19 11:47,"350 Center St, Boston, MA 02215" -296266,27in FHD Monitor,1,149.99,12/11/19 14:52,"173 Cherry St, Dallas, TX 75001" -296267,Flatscreen TV,1,300,12/21/19 22:45,"573 7th St, Atlanta, GA 30301" -296267,Lightning Charging Cable,1,14.95,12/21/19 22:45,"573 7th St, Atlanta, GA 30301" -296268,20in Monitor,1,109.99,12/14/19 11:04,"41 Willow St, Los Angeles, CA 90001" -296269,AA Batteries (4-pack),1,3.84,12/06/19 17:57,"142 Park St, San Francisco, CA 94016" -296270,USB-C Charging Cable,1,11.95,12/06/19 08:05,"10 Cherry St, San Francisco, CA 94016" -296271,Apple Airpods Headphones,1,150,12/23/19 14:53,"727 9th St, Atlanta, GA 30301" -296272,Flatscreen TV,1,300,12/04/19 16:58,"170 Maple St, San Francisco, CA 94016" -296273,Wired Headphones,1,11.99,12/06/19 20:51,"584 West St, Los Angeles, CA 90001" -296274,USB-C Charging Cable,1,11.95,12/20/19 09:43,"871 Wilson St, Portland, ME 04101" -296275,Lightning Charging Cable,1,14.95,12/13/19 14:16,"159 14th St, Portland, OR 97035" -296276,Vareebadd Phone,1,400,12/30/19 17:56,"186 14th St, New York City, NY 10001" -296276,USB-C Charging Cable,1,11.95,12/30/19 17:56,"186 14th St, New York City, NY 10001" -296277,34in Ultrawide Monitor,1,379.99,12/10/19 16:46,"839 Lake St, New York City, NY 10001" -296278,AAA Batteries (4-pack),3,2.99,12/17/19 13:54,"666 Sunset St, Atlanta, GA 30301" -296279,Lightning Charging Cable,1,14.95,12/02/19 09:02,"80 Chestnut St, Los Angeles, CA 90001" -296280,Apple Airpods Headphones,1,150,12/03/19 23:15,"737 Elm St, Atlanta, GA 30301" -,,,,, -296281,Apple Airpods Headphones,1,150,12/04/19 22:53,"942 Ridge St, New York City, NY 10001" -296282,AA Batteries (4-pack),1,3.84,12/07/19 12:48,"954 West St, San Francisco, CA 94016" -296283,AAA Batteries (4-pack),1,2.99,12/06/19 20:46,"654 Cedar St, Boston, MA 02215" -296284,Lightning Charging Cable,1,14.95,12/25/19 08:57,"145 South St, San Francisco, CA 94016" -296285,Lightning Charging Cable,2,14.95,12/26/19 08:33,"484 Cherry St, Dallas, TX 75001" -296286,AAA Batteries (4-pack),2,2.99,12/22/19 13:43,"790 Wilson St, Dallas, TX 75001" -296287,Bose SoundSport Headphones,1,99.99,12/31/19 12:13,"322 North St, Seattle, WA 98101" -296288,Flatscreen TV,1,300,12/13/19 20:40,"277 Wilson St, New York City, NY 10001" -296289,Wired Headphones,1,11.99,12/22/19 22:38,"419 14th St, Portland, OR 97035" -296290,Lightning Charging Cable,1,14.95,12/26/19 18:15,"157 10th St, Portland, OR 97035" -296291,34in Ultrawide Monitor,1,379.99,12/24/19 12:31,"885 Ridge St, Atlanta, GA 30301" -296292,Lightning Charging Cable,1,14.95,12/29/19 12:05,"907 Pine St, Boston, MA 02215" -296293,Wired Headphones,1,11.99,12/09/19 14:35,"896 Sunset St, New York City, NY 10001" -296294,Apple Airpods Headphones,1,150,12/28/19 22:36,"360 6th St, Portland, ME 04101" -296295,AAA Batteries (4-pack),1,2.99,12/19/19 19:57,"445 Washington St, Portland, OR 97035" -296296,Lightning Charging Cable,1,14.95,12/21/19 18:28,"447 Lake St, New York City, NY 10001" -296297,USB-C Charging Cable,1,11.95,12/04/19 16:09,"224 Washington St, Los Angeles, CA 90001" -296298,Lightning Charging Cable,1,14.95,12/19/19 20:28,"709 12th St, Los Angeles, CA 90001" -296299,USB-C Charging Cable,1,11.95,12/31/19 11:24,"160 5th St, San Francisco, CA 94016" -296300,AA Batteries (4-pack),2,3.84,12/08/19 15:22,"828 Lake St, New York City, NY 10001" -296301,AA Batteries (4-pack),1,3.84,12/06/19 12:50,"722 7th St, Los Angeles, CA 90001" -296302,Apple Airpods Headphones,1,150,12/03/19 23:07,"620 Cedar St, Boston, MA 02215" -296303,Lightning Charging Cable,1,14.95,12/01/19 17:54,"843 Ridge St, New York City, NY 10001" -296304,AAA Batteries (4-pack),7,2.99,12/23/19 18:27,"567 Highland St, San Francisco, CA 94016" -296305,AA Batteries (4-pack),2,3.84,12/13/19 10:17,"327 7th St, Portland, OR 97035" -296306,AAA Batteries (4-pack),2,2.99,12/14/19 11:11,"703 Hickory St, San Francisco, CA 94016" -296307,Apple Airpods Headphones,1,150,12/07/19 09:49,"536 Main St, Seattle, WA 98101" -296308,USB-C Charging Cable,1,11.95,12/02/19 13:52,"873 Madison St, San Francisco, CA 94016" -296309,27in 4K Gaming Monitor,1,389.99,12/04/19 13:20,"125 Church St, New York City, NY 10001" -296310,AAA Batteries (4-pack),1,2.99,12/23/19 09:02,"994 West St, New York City, NY 10001" -296311,USB-C Charging Cable,1,11.95,12/30/19 10:48,"385 Park St, Dallas, TX 75001" -,,,,, -296312,Lightning Charging Cable,1,14.95,12/06/19 11:44,"432 7th St, Boston, MA 02215" -296313,27in 4K Gaming Monitor,1,389.99,12/02/19 12:21,"670 Highland St, San Francisco, CA 94016" -296314,34in Ultrawide Monitor,1,379.99,12/20/19 14:47,"931 7th St, Boston, MA 02215" -296315,USB-C Charging Cable,1,11.95,12/28/19 21:10,"937 Spruce St, San Francisco, CA 94016" -296316,AAA Batteries (4-pack),1,2.99,12/30/19 14:54,"325 Walnut St, Austin, TX 73301" -296317,AA Batteries (4-pack),1,3.84,12/21/19 10:47,"949 Elm St, Austin, TX 73301" -296318,Bose SoundSport Headphones,1,99.99,12/20/19 19:45,"35 Madison St, San Francisco, CA 94016" -296319,20in Monitor,1,109.99,12/31/19 09:58,"208 6th St, Dallas, TX 75001" -296320,AA Batteries (4-pack),2,3.84,12/19/19 19:15,"635 Lake St, Portland, OR 97035" -296321,Bose SoundSport Headphones,1,99.99,12/22/19 09:54,"51 Hickory St, San Francisco, CA 94016" -296322,AA Batteries (4-pack),2,3.84,12/27/19 10:08,"627 4th St, Portland, ME 04101" -296323,Lightning Charging Cable,1,14.95,12/04/19 21:09,"945 14th St, Atlanta, GA 30301" -296324,34in Ultrawide Monitor,1,379.99,12/19/19 12:33,"76 Madison St, New York City, NY 10001" -296325,Macbook Pro Laptop,1,1700,12/28/19 22:52,"755 Adams St, Seattle, WA 98101" -296326,20in Monitor,1,109.99,12/25/19 11:10,"178 12th St, Los Angeles, CA 90001" -296327,USB-C Charging Cable,1,11.95,12/05/19 23:54,"327 Chestnut St, Los Angeles, CA 90001" -296328,USB-C Charging Cable,1,11.95,12/21/19 12:05,"558 2nd St, New York City, NY 10001" -296329,LG Washing Machine,1,600.0,12/01/19 11:49,"194 South St, San Francisco, CA 94016" -296330,Wired Headphones,1,11.99,12/23/19 13:47,"298 Jackson St, San Francisco, CA 94016" -296331,Flatscreen TV,1,300,12/01/19 15:34,"473 6th St, Seattle, WA 98101" -296332,USB-C Charging Cable,1,11.95,12/12/19 10:09,"991 Dogwood St, New York City, NY 10001" -296333,27in 4K Gaming Monitor,1,389.99,12/24/19 23:12,"587 Lakeview St, Boston, MA 02215" -296334,Lightning Charging Cable,1,14.95,12/13/19 18:12,"952 Dogwood St, Los Angeles, CA 90001" -296335,Wired Headphones,1,11.99,12/31/19 11:10,"850 Walnut St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -296336,Lightning Charging Cable,1,14.95,12/29/19 18:26,"407 Highland St, Los Angeles, CA 90001" -296337,34in Ultrawide Monitor,1,379.99,12/23/19 11:23,"783 South St, Los Angeles, CA 90001" -296338,USB-C Charging Cable,1,11.95,12/23/19 15:55,"595 Lake St, San Francisco, CA 94016" -296339,USB-C Charging Cable,2,11.95,12/11/19 07:42,"585 Washington St, New York City, NY 10001" -296340,AAA Batteries (4-pack),2,2.99,12/02/19 12:10,"873 North St, Los Angeles, CA 90001" -296341,AAA Batteries (4-pack),1,2.99,12/26/19 21:52,"634 Elm St, Dallas, TX 75001" -296342,USB-C Charging Cable,1,11.95,12/04/19 09:03,"391 7th St, San Francisco, CA 94016" -296343,27in 4K Gaming Monitor,1,389.99,12/14/19 12:44,"486 10th St, San Francisco, CA 94016" -296344,27in FHD Monitor,1,149.99,12/24/19 11:47,"887 Jackson St, San Francisco, CA 94016" -296345,AA Batteries (4-pack),1,3.84,12/17/19 09:37,"790 Jackson St, San Francisco, CA 94016" -296346,Macbook Pro Laptop,1,1700,12/25/19 07:39,"818 Willow St, Boston, MA 02215" -296347,Google Phone,1,600,12/08/19 13:43,"65 11th St, Boston, MA 02215" -296348,AA Batteries (4-pack),3,3.84,12/13/19 23:46,"25 Lake St, Dallas, TX 75001" -296349,Lightning Charging Cable,1,14.95,12/06/19 13:31,"995 4th St, Boston, MA 02215" -296350,Wired Headphones,1,11.99,12/11/19 23:13,"804 Center St, San Francisco, CA 94016" -296351,ThinkPad Laptop,1,999.99,12/24/19 17:57,"168 10th St, Portland, ME 04101" -296352,Lightning Charging Cable,1,14.95,12/11/19 19:20,"478 Sunset St, Los Angeles, CA 90001" -296353,iPhone,1,700,12/01/19 22:49,"475 Cedar St, Los Angeles, CA 90001" -296353,Lightning Charging Cable,1,14.95,12/01/19 22:49,"475 Cedar St, Los Angeles, CA 90001" -296353,Wired Headphones,1,11.99,12/01/19 22:49,"475 Cedar St, Los Angeles, CA 90001" -296353,AA Batteries (4-pack),2,3.84,12/01/19 22:49,"475 Cedar St, Los Angeles, CA 90001" -296354,Vareebadd Phone,1,400,12/11/19 07:03,"299 Lake St, Atlanta, GA 30301" -296354,USB-C Charging Cable,1,11.95,12/11/19 07:03,"299 Lake St, Atlanta, GA 30301" -296355,Lightning Charging Cable,1,14.95,12/04/19 11:52,"142 North St, Seattle, WA 98101" -296356,20in Monitor,1,109.99,12/02/19 23:34,"61 Maple St, Portland, ME 04101" -296357,USB-C Charging Cable,1,11.95,12/09/19 22:26,"529 7th St, Atlanta, GA 30301" -296358,34in Ultrawide Monitor,1,379.99,12/15/19 19:02,"61 4th St, Seattle, WA 98101" -296359,AA Batteries (4-pack),1,3.84,12/22/19 14:23,"53 Forest St, San Francisco, CA 94016" -296360,Google Phone,1,600,12/12/19 10:12,"979 Sunset St, New York City, NY 10001" -296361,Wired Headphones,1,11.99,12/29/19 16:05,"577 Hickory St, San Francisco, CA 94016" -296362,Lightning Charging Cable,1,14.95,12/17/19 13:08,"677 Church St, Atlanta, GA 30301" -296363,AA Batteries (4-pack),3,3.84,12/01/19 22:03,"583 11th St, New York City, NY 10001" -296364,USB-C Charging Cable,1,11.95,12/10/19 17:07,"486 Cedar St, San Francisco, CA 94016" -296365,Vareebadd Phone,1,400,12/26/19 10:54,"444 1st St, Austin, TX 73301" -296366,USB-C Charging Cable,1,11.95,12/08/19 19:56,"588 Johnson St, San Francisco, CA 94016" -296367,iPhone,1,700,12/17/19 13:13,"902 Dogwood St, Portland, OR 97035" -296368,34in Ultrawide Monitor,1,379.99,12/19/19 13:44,"223 10th St, New York City, NY 10001" -296369,Wired Headphones,1,11.99,12/11/19 14:08,"171 West St, Portland, OR 97035" -296370,27in FHD Monitor,1,149.99,12/25/19 12:53,"555 13th St, Boston, MA 02215" -296371,iPhone,1,700,12/29/19 20:32,"234 Cherry St, Los Angeles, CA 90001" -296372,AA Batteries (4-pack),1,3.84,12/24/19 18:11,"638 Forest St, Dallas, TX 75001" -296373,Wired Headphones,1,11.99,12/26/19 22:15,"924 Washington St, San Francisco, CA 94016" -296374,AAA Batteries (4-pack),1,2.99,12/15/19 20:22,"212 Walnut St, Boston, MA 02215" -296375,Lightning Charging Cable,1,14.95,12/11/19 11:22,"564 10th St, Seattle, WA 98101" -296376,LG Dryer,1,600.0,12/21/19 10:10,"817 Meadow St, Portland, OR 97035" -296377,Apple Airpods Headphones,1,150,12/02/19 12:36,"694 Washington St, New York City, NY 10001" -296378,Wired Headphones,1,11.99,12/29/19 22:01,"190 Spruce St, Atlanta, GA 30301" -296379,Lightning Charging Cable,1,14.95,12/19/19 10:11,"533 5th St, Los Angeles, CA 90001" -296380,USB-C Charging Cable,1,11.95,12/19/19 12:58,"474 Washington St, Seattle, WA 98101" -296381,Lightning Charging Cable,1,14.95,12/02/19 18:19,"146 Wilson St, New York City, NY 10001" -296382,iPhone,1,700,12/30/19 10:03,"215 Willow St, Dallas, TX 75001" -296383,Lightning Charging Cable,1,14.95,12/08/19 13:20,"118 Park St, San Francisco, CA 94016" -296384,Lightning Charging Cable,1,14.95,12/24/19 22:10,"159 Willow St, San Francisco, CA 94016" -296385,34in Ultrawide Monitor,1,379.99,12/27/19 13:40,"120 Center St, Portland, OR 97035" -296386,AA Batteries (4-pack),1,3.84,12/07/19 15:05,"521 Center St, Portland, OR 97035" -296387,USB-C Charging Cable,2,11.95,12/27/19 21:07,"40 North St, Portland, OR 97035" -296388,AA Batteries (4-pack),1,3.84,12/02/19 09:42,"801 7th St, New York City, NY 10001" -296389,iPhone,1,700,12/06/19 17:39,"692 West St, Portland, OR 97035" -296390,iPhone,1,700,12/06/19 09:07,"619 Jackson St, New York City, NY 10001" -296390,Wired Headphones,1,11.99,12/06/19 09:07,"619 Jackson St, New York City, NY 10001" -296391,Google Phone,1,600,12/10/19 11:50,"183 2nd St, San Francisco, CA 94016" -296392,Apple Airpods Headphones,1,150,12/04/19 22:19,"726 Dogwood St, Dallas, TX 75001" -296393,USB-C Charging Cable,1,11.95,12/24/19 12:06,"827 River St, San Francisco, CA 94016" -296394,Lightning Charging Cable,1,14.95,12/28/19 18:52,"762 Washington St, Seattle, WA 98101" -296395,USB-C Charging Cable,1,11.95,12/04/19 13:42,"697 Adams St, New York City, NY 10001" -296396,Wired Headphones,1,11.99,12/29/19 22:18,"58 Elm St, Los Angeles, CA 90001" -296397,Lightning Charging Cable,1,14.95,12/08/19 10:11,"268 West St, Boston, MA 02215" -296398,AAA Batteries (4-pack),1,2.99,12/31/19 09:47,"845 4th St, San Francisco, CA 94016" -296399,AAA Batteries (4-pack),1,2.99,12/27/19 09:45,"546 Church St, Atlanta, GA 30301" -296400,AA Batteries (4-pack),1,3.84,12/14/19 21:20,"791 Highland St, Portland, OR 97035" -296401,Wired Headphones,1,11.99,12/17/19 22:42,"853 Elm St, Seattle, WA 98101" -296402,USB-C Charging Cable,1,11.95,12/16/19 18:06,"306 Chestnut St, San Francisco, CA 94016" -296403,Wired Headphones,1,11.99,12/26/19 15:35,"209 5th St, Los Angeles, CA 90001" -296404,Bose SoundSport Headphones,1,99.99,12/25/19 15:42,"268 Sunset St, Boston, MA 02215" -296405,Wired Headphones,2,11.99,12/11/19 07:58,"391 Lakeview St, San Francisco, CA 94016" -296406,ThinkPad Laptop,1,999.99,12/27/19 20:14,"799 Sunset St, Los Angeles, CA 90001" -296407,USB-C Charging Cable,1,11.95,12/12/19 15:41,"645 Hickory St, New York City, NY 10001" -296408,Wired Headphones,1,11.99,12/15/19 19:58,"964 River St, San Francisco, CA 94016" -296409,AAA Batteries (4-pack),2,2.99,12/22/19 12:28,"507 Johnson St, San Francisco, CA 94016" -296410,Lightning Charging Cable,1,14.95,12/31/19 17:52,"716 Johnson St, New York City, NY 10001" -296411,Lightning Charging Cable,2,14.95,12/13/19 21:05,"538 Park St, Boston, MA 02215" -296412,Apple Airpods Headphones,1,150,12/22/19 07:46,"403 Chestnut St, Atlanta, GA 30301" -296413,Flatscreen TV,1,300,12/12/19 10:49,"389 Washington St, Atlanta, GA 30301" -296414,34in Ultrawide Monitor,1,379.99,12/08/19 23:42,"815 Maple St, Dallas, TX 75001" -296415,Bose SoundSport Headphones,1,99.99,12/27/19 06:57,"236 Hill St, Boston, MA 02215" -296416,Bose SoundSport Headphones,1,99.99,12/11/19 03:38,"373 9th St, New York City, NY 10001" -296417,AA Batteries (4-pack),1,3.84,12/22/19 14:26,"595 Spruce St, San Francisco, CA 94016" -296418,AA Batteries (4-pack),2,3.84,12/12/19 15:50,"277 Lakeview St, San Francisco, CA 94016" -296419,Lightning Charging Cable,1,14.95,12/18/19 21:41,"509 Walnut St, Portland, OR 97035" -296420,USB-C Charging Cable,2,11.95,12/02/19 19:16,"414 North St, Atlanta, GA 30301" -296421,USB-C Charging Cable,1,11.95,12/28/19 07:26,"973 Walnut St, Austin, TX 73301" -296422,USB-C Charging Cable,1,11.95,12/22/19 13:05,"351 6th St, Atlanta, GA 30301" -296423,27in 4K Gaming Monitor,1,389.99,12/25/19 18:41,"95 Ridge St, Los Angeles, CA 90001" -296424,Apple Airpods Headphones,1,150,12/25/19 22:31,"999 Madison St, San Francisco, CA 94016" -296425,Lightning Charging Cable,1,14.95,12/04/19 16:14,"188 Cherry St, Los Angeles, CA 90001" -296426,AA Batteries (4-pack),2,3.84,12/22/19 23:27,"651 Dogwood St, Boston, MA 02215" -296427,Lightning Charging Cable,1,14.95,12/05/19 10:39,"326 9th St, Atlanta, GA 30301" -296428,Lightning Charging Cable,1,14.95,12/23/19 13:41,"933 6th St, San Francisco, CA 94016" -296429,AA Batteries (4-pack),2,3.84,12/30/19 07:58,"805 Cherry St, Los Angeles, CA 90001" -296430,Lightning Charging Cable,1,14.95,12/10/19 23:23,"217 Hickory St, San Francisco, CA 94016" -296431,Bose SoundSport Headphones,1,99.99,12/03/19 16:49,"519 Lakeview St, Seattle, WA 98101" -296432,AAA Batteries (4-pack),1,2.99,12/13/19 13:56,"911 Cherry St, Boston, MA 02215" -296433,Apple Airpods Headphones,1,150,12/08/19 10:28,"596 13th St, San Francisco, CA 94016" -296434,Wired Headphones,1,11.99,12/24/19 15:27,"745 13th St, New York City, NY 10001" -296435,Lightning Charging Cable,1,14.95,12/12/19 19:07,"536 Maple St, Los Angeles, CA 90001" -296436,Vareebadd Phone,1,400,12/25/19 13:13,"939 River St, Los Angeles, CA 90001" -296437,Flatscreen TV,1,300,12/01/19 12:42,"19 12th St, Seattle, WA 98101" -296438,Vareebadd Phone,1,400,12/02/19 12:20,"355 Pine St, San Francisco, CA 94016" -296439,34in Ultrawide Monitor,1,379.99,12/10/19 18:05,"882 Elm St, Seattle, WA 98101" -296440,Macbook Pro Laptop,1,1700,12/20/19 16:51,"988 Spruce St, Boston, MA 02215" -296441,Apple Airpods Headphones,1,150,12/22/19 19:00,"969 11th St, Boston, MA 02215" -296442,Google Phone,1,600,12/23/19 17:33,"364 North St, Boston, MA 02215" -296442,USB-C Charging Cable,1,11.95,12/23/19 17:33,"364 North St, Boston, MA 02215" -296443,Vareebadd Phone,1,400,12/20/19 10:49,"181 12th St, Austin, TX 73301" -296443,Bose SoundSport Headphones,1,99.99,12/20/19 10:49,"181 12th St, Austin, TX 73301" -296444,AAA Batteries (4-pack),4,2.99,12/17/19 14:24,"504 Hickory St, Atlanta, GA 30301" -296444,USB-C Charging Cable,1,11.95,12/17/19 14:24,"504 Hickory St, Atlanta, GA 30301" -296445,AAA Batteries (4-pack),1,2.99,12/05/19 14:25,"458 Jefferson St, Boston, MA 02215" -296446,Apple Airpods Headphones,1,150,12/22/19 19:03,"653 Park St, San Francisco, CA 94016" -296447,Macbook Pro Laptop,1,1700,12/06/19 18:17,"585 Willow St, San Francisco, CA 94016" -296448,Bose SoundSport Headphones,1,99.99,12/12/19 18:51,"907 Willow St, San Francisco, CA 94016" -296449,Wired Headphones,2,11.99,12/27/19 17:08,"354 10th St, Los Angeles, CA 90001" -296450,Bose SoundSport Headphones,1,99.99,12/27/19 15:44,"498 Walnut St, Atlanta, GA 30301" -296451,USB-C Charging Cable,1,11.95,12/28/19 13:18,"400 4th St, Los Angeles, CA 90001" -296452,USB-C Charging Cable,1,11.95,12/12/19 18:51,"16 Chestnut St, Portland, OR 97035" -296453,AA Batteries (4-pack),1,3.84,12/30/19 11:55,"981 Hill St, Portland, OR 97035" -296454,AAA Batteries (4-pack),1,2.99,12/28/19 09:28,"965 Main St, San Francisco, CA 94016" -296455,USB-C Charging Cable,1,11.95,12/05/19 18:51,"473 South St, San Francisco, CA 94016" -296456,Apple Airpods Headphones,1,150,12/01/19 04:48,"937 River St, San Francisco, CA 94016" -296457,Apple Airpods Headphones,1,150,12/30/19 17:10,"125 Main St, New York City, NY 10001" -296458,ThinkPad Laptop,1,999.99,12/20/19 20:41,"881 Walnut St, Boston, MA 02215" -296459,Wired Headphones,1,11.99,12/20/19 16:16,"621 Cherry St, Los Angeles, CA 90001" -296460,AA Batteries (4-pack),1,3.84,12/14/19 18:22,"444 5th St, Dallas, TX 75001" -296461,Apple Airpods Headphones,1,150,12/20/19 18:59,"802 9th St, Boston, MA 02215" -296462,AAA Batteries (4-pack),5,2.99,12/17/19 19:03,"584 Spruce St, Boston, MA 02215" -296463,34in Ultrawide Monitor,1,379.99,12/01/19 10:46,"348 Lakeview St, Dallas, TX 75001" -296464,AAA Batteries (4-pack),3,2.99,12/26/19 13:42,"286 1st St, San Francisco, CA 94016" -296465,AA Batteries (4-pack),1,3.84,12/16/19 11:11,"822 South St, Portland, OR 97035" -296466,Wired Headphones,1,11.99,12/08/19 16:17,"626 4th St, Portland, ME 04101" -296467,Wired Headphones,1,11.99,12/13/19 12:53,"700 11th St, San Francisco, CA 94016" -296468,Wired Headphones,1,11.99,12/26/19 13:31,"784 Elm St, San Francisco, CA 94016" -296469,AA Batteries (4-pack),1,3.84,12/19/19 05:56,"582 Chestnut St, New York City, NY 10001" -296470,AA Batteries (4-pack),2,3.84,12/11/19 16:38,"29 Meadow St, Dallas, TX 75001" -296471,Google Phone,1,600,12/13/19 10:16,"510 Elm St, Dallas, TX 75001" -296472,LG Dryer,1,600.0,12/21/19 10:50,"199 Cedar St, Dallas, TX 75001" -296473,Bose SoundSport Headphones,1,99.99,12/30/19 17:11,"854 Hickory St, San Francisco, CA 94016" -296474,iPhone,1,700,12/18/19 19:22,"464 Jefferson St, New York City, NY 10001" -296475,27in 4K Gaming Monitor,1,389.99,12/27/19 12:57,"309 South St, Los Angeles, CA 90001" -296476,27in FHD Monitor,1,149.99,12/30/19 18:16,"723 13th St, Boston, MA 02215" -296477,Apple Airpods Headphones,1,150,12/24/19 19:37,"548 West St, Dallas, TX 75001" -296478,Wired Headphones,1,11.99,12/08/19 18:58,"915 6th St, Atlanta, GA 30301" -296479,USB-C Charging Cable,1,11.95,12/24/19 19:25,"499 River St, Los Angeles, CA 90001" -296480,Wired Headphones,1,11.99,12/21/19 20:12,"874 Adams St, Austin, TX 73301" -296481,Vareebadd Phone,1,400,12/07/19 09:57,"347 Wilson St, New York City, NY 10001" -296482,Flatscreen TV,1,300,12/28/19 23:05,"135 9th St, San Francisco, CA 94016" -296483,ThinkPad Laptop,1,999.99,12/16/19 08:33,"146 Cherry St, Atlanta, GA 30301" -296484,Lightning Charging Cable,2,14.95,12/01/19 20:48,"146 Meadow St, San Francisco, CA 94016" -296485,LG Dryer,1,600.0,12/02/19 15:15,"794 Church St, Austin, TX 73301" -296486,USB-C Charging Cable,2,11.95,12/30/19 06:23,"369 Forest St, Dallas, TX 75001" -296487,AAA Batteries (4-pack),1,2.99,12/03/19 17:02,"925 2nd St, New York City, NY 10001" -296488,USB-C Charging Cable,1,11.95,12/18/19 13:09,"814 Madison St, San Francisco, CA 94016" -296489,Apple Airpods Headphones,1,150,12/26/19 20:37,"888 Cedar St, New York City, NY 10001" -296490,USB-C Charging Cable,1,11.95,12/21/19 23:40,"682 South St, Austin, TX 73301" -296491,27in 4K Gaming Monitor,1,389.99,12/17/19 23:02,"623 Church St, Los Angeles, CA 90001" -296492,Wired Headphones,1,11.99,12/06/19 10:27,"992 Forest St, Atlanta, GA 30301" -296493,ThinkPad Laptop,1,999.99,12/08/19 21:49,"403 Main St, Boston, MA 02215" -296494,Lightning Charging Cable,1,14.95,12/20/19 11:26,"873 9th St, Boston, MA 02215" -296495,ThinkPad Laptop,1,999.99,12/13/19 21:09,"389 North St, Los Angeles, CA 90001" -296496,Wired Headphones,1,11.99,12/06/19 18:13,"119 Elm St, Austin, TX 73301" -296497,iPhone,1,700,12/25/19 12:19,"572 13th St, Los Angeles, CA 90001" -296498,27in 4K Gaming Monitor,1,389.99,12/08/19 17:22,"452 Sunset St, Dallas, TX 75001" -296499,AAA Batteries (4-pack),2,2.99,12/01/19 23:13,"70 8th St, San Francisco, CA 94016" -296500,AA Batteries (4-pack),1,3.84,12/18/19 17:54,"621 8th St, Austin, TX 73301" -296501,AA Batteries (4-pack),1,3.84,12/06/19 16:56,"30 4th St, Atlanta, GA 30301" -296502,Apple Airpods Headphones,1,150,12/25/19 15:12,"82 Lake St, New York City, NY 10001" -296503,Apple Airpods Headphones,1,150,12/04/19 14:14,"998 Pine St, New York City, NY 10001" -296504,27in FHD Monitor,1,149.99,12/07/19 21:03,"614 Washington St, San Francisco, CA 94016" -296505,AAA Batteries (4-pack),1,2.99,12/30/19 09:13,"310 Hickory St, Portland, ME 04101" -296506,20in Monitor,1,109.99,12/11/19 14:21,"276 South St, Portland, ME 04101" -296507,Bose SoundSport Headphones,1,99.99,12/25/19 18:23,"218 Sunset St, San Francisco, CA 94016" -296508,Bose SoundSport Headphones,1,99.99,12/07/19 19:20,"980 Main St, San Francisco, CA 94016" -296509,USB-C Charging Cable,1,11.95,12/04/19 14:22,"486 Park St, New York City, NY 10001" -296510,AAA Batteries (4-pack),1,2.99,12/25/19 07:59,"342 Elm St, San Francisco, CA 94016" -296511,27in FHD Monitor,1,149.99,12/19/19 12:48,"503 Madison St, Austin, TX 73301" -296512,AAA Batteries (4-pack),1,2.99,12/10/19 20:29,"244 Washington St, Atlanta, GA 30301" -296513,Lightning Charging Cable,1,14.95,12/31/19 16:34,"230 Pine St, Portland, OR 97035" -296514,Wired Headphones,1,11.99,12/16/19 21:16,"548 5th St, San Francisco, CA 94016" -296515,AA Batteries (4-pack),1,3.84,12/14/19 22:34,"966 Church St, Atlanta, GA 30301" -296516,Wired Headphones,1,11.99,12/01/19 17:02,"979 Lakeview St, Dallas, TX 75001" -296517,AA Batteries (4-pack),1,3.84,12/01/19 14:28,"454 Hickory St, San Francisco, CA 94016" -296518,Macbook Pro Laptop,1,1700,12/25/19 03:17,"866 Willow St, Boston, MA 02215" -296519,USB-C Charging Cable,1,11.95,12/18/19 07:25,"334 Lake St, Los Angeles, CA 90001" -296520,Google Phone,1,600,12/25/19 20:52,"7 Jackson St, Boston, MA 02215" -296520,USB-C Charging Cable,1,11.95,12/25/19 20:52,"7 Jackson St, Boston, MA 02215" -296521,Lightning Charging Cable,1,14.95,12/23/19 09:12,"380 Chestnut St, Dallas, TX 75001" -296522,USB-C Charging Cable,1,11.95,12/06/19 16:35,"500 11th St, San Francisco, CA 94016" -296523,Bose SoundSport Headphones,1,99.99,12/19/19 13:09,"355 Sunset St, Boston, MA 02215" -296524,Lightning Charging Cable,1,14.95,12/15/19 18:03,"614 1st St, Portland, OR 97035" -296525,Bose SoundSport Headphones,1,99.99,12/17/19 11:59,"125 Lakeview St, Seattle, WA 98101" -296526,Google Phone,1,600,12/02/19 12:29,"39 Lincoln St, Los Angeles, CA 90001" -296527,AA Batteries (4-pack),1,3.84,12/11/19 20:49,"844 11th St, San Francisco, CA 94016" -296528,AA Batteries (4-pack),2,3.84,12/16/19 17:48,"118 Chestnut St, Los Angeles, CA 90001" -296529,Google Phone,1,600,12/09/19 15:37,"717 14th St, Atlanta, GA 30301" -296530,Apple Airpods Headphones,1,150,12/06/19 12:12,"806 Elm St, Dallas, TX 75001" -296531,27in FHD Monitor,1,149.99,12/09/19 16:10,"791 Lincoln St, San Francisco, CA 94016" -296531,Bose SoundSport Headphones,1,99.99,12/09/19 16:10,"791 Lincoln St, San Francisco, CA 94016" -296532,AA Batteries (4-pack),2,3.84,12/08/19 21:33,"279 Wilson St, New York City, NY 10001" -296533,Flatscreen TV,1,300,12/26/19 10:23,"993 11th St, Boston, MA 02215" -296534,USB-C Charging Cable,1,11.95,12/25/19 10:45,"663 9th St, San Francisco, CA 94016" -296535,AAA Batteries (4-pack),1,2.99,12/28/19 18:33,"197 7th St, Dallas, TX 75001" -296536,Macbook Pro Laptop,1,1700,12/27/19 14:17,"453 Ridge St, San Francisco, CA 94016" -296537,USB-C Charging Cable,1,11.95,12/23/19 13:41,"567 Forest St, Boston, MA 02215" -296538,AAA Batteries (4-pack),1,2.99,12/01/19 22:04,"144 South St, Atlanta, GA 30301" -296539,AAA Batteries (4-pack),1,2.99,12/09/19 11:06,"916 10th St, San Francisco, CA 94016" -296540,USB-C Charging Cable,1,11.95,12/31/19 14:49,"602 13th St, Portland, OR 97035" -296541,Wired Headphones,1,11.99,12/13/19 13:41,"160 Adams St, San Francisco, CA 94016" -296542,USB-C Charging Cable,1,11.95,12/31/19 12:33,"578 1st St, Portland, OR 97035" -296543,27in FHD Monitor,1,149.99,12/04/19 12:42,"593 Cherry St, Los Angeles, CA 90001" -296544,Lightning Charging Cable,1,14.95,12/16/19 18:25,"942 Center St, Atlanta, GA 30301" -296545,USB-C Charging Cable,1,11.95,12/25/19 19:20,"52 Maple St, Austin, TX 73301" -296546,Macbook Pro Laptop,1,1700,12/01/19 11:25,"565 Forest St, San Francisco, CA 94016" -296547,ThinkPad Laptop,1,999.99,12/31/19 01:16,"225 14th St, Boston, MA 02215" -296548,Bose SoundSport Headphones,1,99.99,12/04/19 20:45,"92 Center St, Los Angeles, CA 90001" -296549,34in Ultrawide Monitor,1,379.99,12/29/19 13:19,"740 7th St, New York City, NY 10001" -296550,AA Batteries (4-pack),1,3.84,12/12/19 10:31,"210 Center St, Dallas, TX 75001" -296551,Apple Airpods Headphones,1,150,12/29/19 14:59,"753 1st St, Los Angeles, CA 90001" -296552,AAA Batteries (4-pack),2,2.99,12/22/19 15:51,"666 1st St, Atlanta, GA 30301" -296553,USB-C Charging Cable,1,11.95,12/18/19 22:42,"61 Walnut St, San Francisco, CA 94016" -296554,27in FHD Monitor,1,149.99,12/19/19 21:22,"983 Hickory St, Portland, OR 97035" -296555,Lightning Charging Cable,1,14.95,12/30/19 04:32,"193 Church St, Boston, MA 02215" -296556,USB-C Charging Cable,1,11.95,12/01/19 23:00,"391 South St, Dallas, TX 75001" -296557,Wired Headphones,1,11.99,12/02/19 11:33,"89 Walnut St, San Francisco, CA 94016" -296558,Wired Headphones,1,11.99,12/16/19 17:43,"979 Wilson St, Seattle, WA 98101" -296559,Bose SoundSport Headphones,1,99.99,12/03/19 19:30,"804 West St, San Francisco, CA 94016" -296560,AA Batteries (4-pack),3,3.84,12/27/19 15:56,"616 Elm St, Portland, OR 97035" -296561,Lightning Charging Cable,1,14.95,12/04/19 16:23,"146 North St, Los Angeles, CA 90001" -296562,Apple Airpods Headphones,1,150,12/16/19 15:45,"748 Spruce St, San Francisco, CA 94016" -296563,Macbook Pro Laptop,1,1700,12/26/19 17:45,"64 South St, Portland, OR 97035" -296564,Lightning Charging Cable,1,14.95,12/07/19 08:17,"927 Hickory St, Seattle, WA 98101" -296565,AAA Batteries (4-pack),1,2.99,12/23/19 14:19,"915 Wilson St, Boston, MA 02215" -296566,Lightning Charging Cable,1,14.95,12/07/19 15:14,"343 Park St, New York City, NY 10001" -296567,AA Batteries (4-pack),1,3.84,12/27/19 12:21,"77 Cedar St, Atlanta, GA 30301" -296568,27in FHD Monitor,1,149.99,12/30/19 19:52,"884 Highland St, San Francisco, CA 94016" -296569,Lightning Charging Cable,1,14.95,12/25/19 10:32,"733 10th St, Atlanta, GA 30301" -296570,AAA Batteries (4-pack),1,2.99,12/20/19 17:12,"769 Ridge St, San Francisco, CA 94016" -296571,USB-C Charging Cable,1,11.95,12/27/19 13:14,"792 8th St, Dallas, TX 75001" -296572,USB-C Charging Cable,1,11.95,12/29/19 08:53,"866 Washington St, San Francisco, CA 94016" -296573,USB-C Charging Cable,1,11.95,12/09/19 14:14,"557 Spruce St, San Francisco, CA 94016" -296574,iPhone,1,700,12/17/19 20:17,"709 Spruce St, Los Angeles, CA 90001" -296574,Wired Headphones,1,11.99,12/17/19 20:17,"709 Spruce St, Los Angeles, CA 90001" -296575,Bose SoundSport Headphones,1,99.99,12/10/19 22:04,"780 North St, San Francisco, CA 94016" -296576,Wired Headphones,1,11.99,12/29/19 14:19,"569 13th St, San Francisco, CA 94016" -296577,AA Batteries (4-pack),1,3.84,12/24/19 20:01,"406 Walnut St, San Francisco, CA 94016" -296578,Apple Airpods Headphones,1,150,12/13/19 21:51,"661 Lake St, Atlanta, GA 30301" -296579,USB-C Charging Cable,2,11.95,12/31/19 11:22,"391 Willow St, Boston, MA 02215" -296580,Bose SoundSport Headphones,1,99.99,12/12/19 18:24,"801 Johnson St, San Francisco, CA 94016" -296581,Wired Headphones,1,11.99,12/03/19 22:39,"306 Lincoln St, Atlanta, GA 30301" -296582,Apple Airpods Headphones,1,150,12/17/19 09:45,"319 Ridge St, Atlanta, GA 30301" -296583,Wired Headphones,1,11.99,12/30/19 18:47,"141 Jefferson St, Seattle, WA 98101" -296584,Google Phone,1,600,12/07/19 18:54,"586 Johnson St, San Francisco, CA 94016" -296585,Lightning Charging Cable,1,14.95,12/09/19 20:45,"890 Park St, Portland, ME 04101" -296586,AA Batteries (4-pack),1,3.84,12/10/19 06:54,"12 Ridge St, San Francisco, CA 94016" -296587,Apple Airpods Headphones,1,150,12/07/19 18:07,"589 10th St, Seattle, WA 98101" -296588,USB-C Charging Cable,1,11.95,12/01/19 10:39,"728 Elm St, New York City, NY 10001" -296589,27in 4K Gaming Monitor,1,389.99,12/15/19 19:44,"995 Chestnut St, Los Angeles, CA 90001" -296590,Lightning Charging Cable,1,14.95,12/25/19 15:22,"938 1st St, Boston, MA 02215" -296591,Apple Airpods Headphones,1,150,12/01/19 13:11,"332 Sunset St, New York City, NY 10001" -296592,27in FHD Monitor,1,149.99,12/20/19 20:20,"368 4th St, Boston, MA 02215" -296593,Apple Airpods Headphones,1,150,12/04/19 00:29,"560 Cedar St, Atlanta, GA 30301" -296594,Apple Airpods Headphones,1,150,12/22/19 17:24,"629 Church St, Austin, TX 73301" -296595,Lightning Charging Cable,1,14.95,12/17/19 16:43,"793 10th St, Los Angeles, CA 90001" -296596,USB-C Charging Cable,1,11.95,12/07/19 18:38,"182 13th St, New York City, NY 10001" -296597,AAA Batteries (4-pack),1,2.99,12/03/19 13:05,"527 Sunset St, Seattle, WA 98101" -296598,AAA Batteries (4-pack),3,2.99,12/23/19 10:08,"757 Lake St, Seattle, WA 98101" -296599,Apple Airpods Headphones,1,150,12/06/19 20:13,"328 Jefferson St, San Francisco, CA 94016" -296600,Apple Airpods Headphones,1,150,12/15/19 17:51,"891 Willow St, Los Angeles, CA 90001" -296601,Google Phone,1,600,12/24/19 20:22,"115 River St, Los Angeles, CA 90001" -296602,ThinkPad Laptop,1,999.99,12/03/19 07:45,"313 Cedar St, Atlanta, GA 30301" -296603,AAA Batteries (4-pack),1,2.99,12/02/19 20:21,"665 10th St, San Francisco, CA 94016" -296604,USB-C Charging Cable,1,11.95,12/09/19 13:49,"754 Center St, San Francisco, CA 94016" -296605,Apple Airpods Headphones,1,150,12/26/19 10:48,"127 2nd St, Dallas, TX 75001" -296606,Wired Headphones,1,11.99,12/02/19 10:08,"585 Main St, Dallas, TX 75001" -296607,AA Batteries (4-pack),3,3.84,12/25/19 12:00,"549 Jackson St, San Francisco, CA 94016" -296608,ThinkPad Laptop,1,999.99,12/18/19 14:20,"987 River St, Atlanta, GA 30301" -296609,Google Phone,1,600,12/28/19 16:32,"176 Sunset St, Boston, MA 02215" -296609,USB-C Charging Cable,1,11.95,12/28/19 16:32,"176 Sunset St, Boston, MA 02215" -296610,Bose SoundSport Headphones,1,99.99,12/25/19 14:48,"245 9th St, Portland, OR 97035" -296611,USB-C Charging Cable,1,11.95,12/25/19 16:02,"603 14th St, New York City, NY 10001" -296612,34in Ultrawide Monitor,1,379.99,12/02/19 10:40,"161 Sunset St, New York City, NY 10001" -296613,Apple Airpods Headphones,1,150,12/08/19 15:27,"484 5th St, San Francisco, CA 94016" -296614,Wired Headphones,1,11.99,12/09/19 10:13,"590 Willow St, Atlanta, GA 30301" -296615,Google Phone,1,600,12/20/19 18:35,"909 Ridge St, San Francisco, CA 94016" -296616,AAA Batteries (4-pack),1,2.99,12/09/19 21:47,"543 Hill St, Seattle, WA 98101" -296617,ThinkPad Laptop,1,999.99,12/26/19 21:32,"248 Washington St, San Francisco, CA 94016" -296618,Wired Headphones,1,11.99,12/29/19 15:13,"678 Hickory St, New York City, NY 10001" -296619,27in 4K Gaming Monitor,1,389.99,12/11/19 12:46,"543 4th St, Dallas, TX 75001" -296620,iPhone,1,700,12/23/19 19:02,"139 Cedar St, Seattle, WA 98101" -296621,AAA Batteries (4-pack),1,2.99,12/16/19 10:39,"412 Sunset St, Seattle, WA 98101" -296622,iPhone,1,700,12/18/19 23:48,"537 Sunset St, Dallas, TX 75001" -296623,20in Monitor,1,109.99,12/29/19 00:04,"764 Elm St, Boston, MA 02215" -296624,Wired Headphones,1,11.99,12/23/19 15:49,"727 Sunset St, San Francisco, CA 94016" -296625,Macbook Pro Laptop,1,1700,12/25/19 20:00,"54 Church St, Boston, MA 02215" -296626,AA Batteries (4-pack),2,3.84,12/24/19 10:31,"533 Washington St, New York City, NY 10001" -296627,Lightning Charging Cable,2,14.95,12/18/19 11:58,"780 Johnson St, Boston, MA 02215" -296628,Flatscreen TV,1,300,12/23/19 16:31,"617 14th St, New York City, NY 10001" -296629,Bose SoundSport Headphones,1,99.99,12/16/19 21:29,"262 8th St, Dallas, TX 75001" -296630,Lightning Charging Cable,1,14.95,12/30/19 15:42,"415 Sunset St, Seattle, WA 98101" -296631,27in 4K Gaming Monitor,1,389.99,12/20/19 20:23,"389 5th St, San Francisco, CA 94016" -296632,Wired Headphones,1,11.99,12/17/19 13:01,"674 Washington St, San Francisco, CA 94016" -296633,Wired Headphones,2,11.99,12/18/19 23:04,"25 Lincoln St, Portland, OR 97035" -296634,Bose SoundSport Headphones,1,99.99,12/17/19 10:26,"520 Meadow St, San Francisco, CA 94016" -296635,Apple Airpods Headphones,1,150,12/02/19 10:27,"859 Washington St, Los Angeles, CA 90001" -296636,Apple Airpods Headphones,1,150,12/06/19 21:16,"988 6th St, Portland, OR 97035" -296637,Wired Headphones,1,11.99,12/27/19 23:55,"152 Cherry St, San Francisco, CA 94016" -296638,Apple Airpods Headphones,1,150,12/21/19 17:55,"642 Park St, Dallas, TX 75001" -296639,27in FHD Monitor,1,149.99,12/25/19 11:35,"860 7th St, New York City, NY 10001" -296640,Apple Airpods Headphones,1,150,12/29/19 22:47,"185 Main St, Los Angeles, CA 90001" -296641,iPhone,1,700,12/29/19 15:57,"148 Sunset St, Los Angeles, CA 90001" -296641,Wired Headphones,1,11.99,12/29/19 15:57,"148 Sunset St, Los Angeles, CA 90001" -296642,AAA Batteries (4-pack),1,2.99,12/29/19 22:42,"369 10th St, San Francisco, CA 94016" -296643,Wired Headphones,1,11.99,12/15/19 17:21,"712 Main St, Dallas, TX 75001" -296644,Lightning Charging Cable,1,14.95,12/15/19 21:12,"580 Pine St, San Francisco, CA 94016" -296645,27in FHD Monitor,1,149.99,12/22/19 15:29,"609 Washington St, San Francisco, CA 94016" -296646,AAA Batteries (4-pack),3,2.99,12/28/19 12:32,"299 Washington St, Atlanta, GA 30301" -296647,Macbook Pro Laptop,1,1700,12/09/19 16:09,"86 6th St, New York City, NY 10001" -296648,Bose SoundSport Headphones,1,99.99,12/10/19 13:40,"547 4th St, Austin, TX 73301" -296649,27in 4K Gaming Monitor,1,389.99,12/04/19 20:30,"605 14th St, San Francisco, CA 94016" -296650,Apple Airpods Headphones,1,150,12/02/19 16:38,"734 10th St, Los Angeles, CA 90001" -296651,34in Ultrawide Monitor,1,379.99,12/03/19 12:53,"188 Hickory St, San Francisco, CA 94016" -296652,Apple Airpods Headphones,1,150,12/30/19 19:55,"48 Willow St, Austin, TX 73301" -296653,Google Phone,1,600,12/14/19 10:19,"964 Lakeview St, Boston, MA 02215" -296653,Wired Headphones,1,11.99,12/14/19 10:19,"964 Lakeview St, Boston, MA 02215" -296654,AA Batteries (4-pack),1,3.84,12/16/19 22:46,"80 Dogwood St, Austin, TX 73301" -296655,USB-C Charging Cable,1,11.95,12/14/19 09:55,"823 Lakeview St, San Francisco, CA 94016" -296656,AAA Batteries (4-pack),1,2.99,12/28/19 10:36,"937 5th St, Atlanta, GA 30301" -296657,iPhone,1,700,12/05/19 18:26,"855 Wilson St, San Francisco, CA 94016" -296658,27in 4K Gaming Monitor,1,389.99,12/10/19 00:57,"454 13th St, Seattle, WA 98101" -296659,Flatscreen TV,1,300,12/12/19 12:43,"214 Forest St, San Francisco, CA 94016" -296660,AAA Batteries (4-pack),2,2.99,12/02/19 20:57,"232 West St, San Francisco, CA 94016" -296661,20in Monitor,1,109.99,12/29/19 22:30,"476 Ridge St, Los Angeles, CA 90001" -296662,27in FHD Monitor,1,149.99,12/15/19 20:28,"550 Johnson St, Austin, TX 73301" -296663,Google Phone,1,600,12/14/19 09:19,"835 13th St, New York City, NY 10001" -296664,20in Monitor,1,109.99,12/16/19 10:15,"460 Highland St, New York City, NY 10001" -296665,AAA Batteries (4-pack),1,2.99,12/29/19 20:37,"336 Wilson St, Los Angeles, CA 90001" -296666,Lightning Charging Cable,1,14.95,12/05/19 20:32,"228 Johnson St, San Francisco, CA 94016" -296667,Apple Airpods Headphones,1,150,12/20/19 18:55,"61 Meadow St, Portland, OR 97035" -296668,AAA Batteries (4-pack),2,2.99,12/20/19 16:07,"535 7th St, San Francisco, CA 94016" -296668,AAA Batteries (4-pack),4,2.99,12/20/19 16:07,"535 7th St, San Francisco, CA 94016" -296669,Lightning Charging Cable,1,14.95,12/28/19 05:47,"220 Meadow St, San Francisco, CA 94016" -296670,Vareebadd Phone,1,400,12/09/19 06:47,"918 Ridge St, San Francisco, CA 94016" -296670,USB-C Charging Cable,1,11.95,12/09/19 06:47,"918 Ridge St, San Francisco, CA 94016" -296671,Lightning Charging Cable,1,14.95,12/12/19 08:35,"649 Maple St, San Francisco, CA 94016" -296672,USB-C Charging Cable,2,11.95,12/24/19 17:39,"348 6th St, Los Angeles, CA 90001" -296673,AAA Batteries (4-pack),2,2.99,12/31/19 18:14,"620 Spruce St, Boston, MA 02215" -296674,Google Phone,1,600,12/03/19 18:27,"258 6th St, Los Angeles, CA 90001" -296675,Bose SoundSport Headphones,1,99.99,12/06/19 10:17,"278 Center St, Dallas, TX 75001" -296676,AAA Batteries (4-pack),2,2.99,12/25/19 13:41,"870 Hill St, San Francisco, CA 94016" -296677,34in Ultrawide Monitor,1,379.99,12/20/19 13:07,"909 Wilson St, San Francisco, CA 94016" -296678,27in FHD Monitor,1,149.99,12/22/19 10:53,"581 Center St, Seattle, WA 98101" -296679,Wired Headphones,1,11.99,12/20/19 13:05,"882 Lincoln St, Los Angeles, CA 90001" -296680,AA Batteries (4-pack),1,3.84,12/05/19 19:23,"796 Willow St, Boston, MA 02215" -296681,AAA Batteries (4-pack),1,2.99,12/10/19 00:18,"786 6th St, Dallas, TX 75001" -296682,Lightning Charging Cable,1,14.95,12/16/19 21:41,"182 Wilson St, Los Angeles, CA 90001" -296683,ThinkPad Laptop,1,999.99,12/05/19 20:01,"22 13th St, Seattle, WA 98101" -296684,Bose SoundSport Headphones,1,99.99,12/15/19 15:27,"381 Main St, Los Angeles, CA 90001" -296685,Apple Airpods Headphones,1,150,12/05/19 15:37,"275 Maple St, Austin, TX 73301" -296686,27in 4K Gaming Monitor,1,389.99,12/09/19 21:39,"118 Johnson St, Dallas, TX 75001" -296687,Lightning Charging Cable,1,14.95,12/07/19 21:39,"312 Maple St, Atlanta, GA 30301" -296687,27in 4K Gaming Monitor,1,389.99,12/07/19 21:39,"312 Maple St, Atlanta, GA 30301" -296688,Macbook Pro Laptop,1,1700,12/21/19 10:03,"717 Maple St, Boston, MA 02215" -296689,27in FHD Monitor,1,149.99,12/06/19 13:09,"121 Jackson St, Portland, OR 97035" -296690,20in Monitor,1,109.99,12/02/19 19:58,"500 Maple St, Los Angeles, CA 90001" -296691,20in Monitor,1,109.99,12/09/19 10:19,"655 Chestnut St, Los Angeles, CA 90001" -296692,Bose SoundSport Headphones,1,99.99,12/27/19 22:29,"788 9th St, New York City, NY 10001" -296693,Bose SoundSport Headphones,1,99.99,12/04/19 17:46,"910 Hickory St, New York City, NY 10001" -296694,20in Monitor,1,109.99,12/20/19 12:08,"307 5th St, San Francisco, CA 94016" -296695,27in FHD Monitor,1,149.99,12/06/19 18:58,"960 Sunset St, Boston, MA 02215" -296696,Lightning Charging Cable,1,14.95,12/10/19 10:03,"743 7th St, Seattle, WA 98101" -296697,Lightning Charging Cable,1,14.95,12/05/19 09:14,"395 Pine St, Seattle, WA 98101" -296698,Wired Headphones,1,11.99,12/13/19 22:02,"676 13th St, Atlanta, GA 30301" -296699,34in Ultrawide Monitor,1,379.99,12/09/19 10:24,"129 Center St, Dallas, TX 75001" -296700,USB-C Charging Cable,1,11.95,12/17/19 12:02,"300 Chestnut St, Atlanta, GA 30301" -296701,Macbook Pro Laptop,1,1700,12/16/19 08:14,"999 Cedar St, Boston, MA 02215" -296702,iPhone,1,700,12/13/19 13:49,"903 North St, San Francisco, CA 94016" -296703,USB-C Charging Cable,1,11.95,12/08/19 20:06,"380 12th St, New York City, NY 10001" -296704,20in Monitor,1,109.99,12/09/19 10:57,"294 9th St, San Francisco, CA 94016" -296705,AAA Batteries (4-pack),1,2.99,12/11/19 11:07,"664 West St, Los Angeles, CA 90001" -296706,Apple Airpods Headphones,1,150,12/29/19 16:30,"330 Spruce St, Austin, TX 73301" -296707,Apple Airpods Headphones,1,150,12/14/19 17:13,"199 Forest St, San Francisco, CA 94016" -296707,Wired Headphones,1,11.99,12/14/19 17:13,"199 Forest St, San Francisco, CA 94016" -296708,iPhone,1,700,12/02/19 22:20,"624 Lakeview St, Atlanta, GA 30301" -296709,Flatscreen TV,1,300,12/16/19 21:31,"960 Elm St, Seattle, WA 98101" -296710,Lightning Charging Cable,1,14.95,12/12/19 18:26,"953 Cedar St, San Francisco, CA 94016" -296711,USB-C Charging Cable,1,11.95,12/06/19 17:40,"492 Lake St, Atlanta, GA 30301" -296712,AAA Batteries (4-pack),1,2.99,12/07/19 12:03,"432 Forest St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -296713,Wired Headphones,2,11.99,12/15/19 23:39,"182 Main St, New York City, NY 10001" -296714,Wired Headphones,1,11.99,12/07/19 08:49,"227 2nd St, San Francisco, CA 94016" -296715,AAA Batteries (4-pack),1,2.99,12/01/19 14:37,"688 Dogwood St, Seattle, WA 98101" -296716,Lightning Charging Cable,1,14.95,12/15/19 20:42,"451 Jefferson St, Dallas, TX 75001" -296717,USB-C Charging Cable,1,11.95,12/13/19 14:21,"289 Cherry St, New York City, NY 10001" -296718,AAA Batteries (4-pack),5,2.99,12/11/19 10:23,"576 Johnson St, Seattle, WA 98101" -296719,AA Batteries (4-pack),2,3.84,12/08/19 17:18,"867 Center St, New York City, NY 10001" -296720,AAA Batteries (4-pack),1,2.99,12/16/19 08:40,"640 8th St, Atlanta, GA 30301" -296721,AA Batteries (4-pack),1,3.84,12/20/19 12:48,"458 Wilson St, San Francisco, CA 94016" -296722,USB-C Charging Cable,1,11.95,12/12/19 14:06,"511 Johnson St, San Francisco, CA 94016" -296723,USB-C Charging Cable,1,11.95,12/31/19 12:19,"15 Center St, Boston, MA 02215" -296724,AAA Batteries (4-pack),2,2.99,12/24/19 17:37,"459 4th St, Los Angeles, CA 90001" -296725,Google Phone,1,600,12/13/19 16:06,"607 Main St, Los Angeles, CA 90001" -296726,34in Ultrawide Monitor,1,379.99,12/14/19 17:33,"662 13th St, San Francisco, CA 94016" -296727,Flatscreen TV,1,300,12/09/19 19:24,"899 Walnut St, New York City, NY 10001" -296728,Wired Headphones,1,11.99,12/09/19 12:44,"799 Johnson St, San Francisco, CA 94016" -296729,34in Ultrawide Monitor,1,379.99,12/07/19 00:54,"429 Walnut St, Dallas, TX 75001" -296730,27in 4K Gaming Monitor,1,389.99,12/16/19 07:29,"818 Cedar St, Los Angeles, CA 90001" -296730,Wired Headphones,2,11.99,12/16/19 07:29,"818 Cedar St, Los Angeles, CA 90001" -296731,Google Phone,1,600,12/02/19 20:50,"482 Meadow St, San Francisco, CA 94016" -296732,AAA Batteries (4-pack),1,2.99,12/25/19 21:32,"338 2nd St, Atlanta, GA 30301" -296733,Wired Headphones,1,11.99,12/02/19 10:17,"696 10th St, San Francisco, CA 94016" -296734,Bose SoundSport Headphones,1,99.99,12/16/19 18:49,"837 Forest St, New York City, NY 10001" -296735,Lightning Charging Cable,1,14.95,12/21/19 08:51,"520 Willow St, Boston, MA 02215" -296736,AA Batteries (4-pack),1,3.84,12/01/19 11:12,"34 9th St, Dallas, TX 75001" -296737,AA Batteries (4-pack),2,3.84,12/17/19 08:24,"140 Cherry St, Seattle, WA 98101" -296738,20in Monitor,1,109.99,12/17/19 14:57,"207 Lakeview St, San Francisco, CA 94016" -296739,Wired Headphones,1,11.99,12/18/19 14:33,"397 Cedar St, Los Angeles, CA 90001" -296740,20in Monitor,1,109.99,12/06/19 06:13,"217 Forest St, Los Angeles, CA 90001" -296741,Google Phone,1,600,12/09/19 06:31,"961 Chestnut St, Boston, MA 02215" -296742,AAA Batteries (4-pack),2,2.99,12/02/19 08:13,"821 13th St, Seattle, WA 98101" -296743,AA Batteries (4-pack),1,3.84,12/14/19 14:44,"246 Jackson St, Los Angeles, CA 90001" -296744,Wired Headphones,1,11.99,12/05/19 18:01,"363 Cherry St, New York City, NY 10001" -296745,Wired Headphones,1,11.99,12/02/19 10:42,"379 Ridge St, New York City, NY 10001" -296746,27in FHD Monitor,1,149.99,12/06/19 14:12,"43 7th St, New York City, NY 10001" -296747,AA Batteries (4-pack),1,3.84,12/15/19 05:24,"644 11th St, Los Angeles, CA 90001" -296748,AAA Batteries (4-pack),1,2.99,12/17/19 18:47,"289 West St, New York City, NY 10001" -296749,34in Ultrawide Monitor,1,379.99,12/05/19 21:21,"570 Adams St, Seattle, WA 98101" -296750,Apple Airpods Headphones,1,150,12/20/19 10:08,"833 Maple St, Los Angeles, CA 90001" -296751,34in Ultrawide Monitor,1,379.99,12/07/19 08:24,"231 11th St, San Francisco, CA 94016" -296752,AA Batteries (4-pack),1,3.84,12/27/19 03:44,"80 13th St, New York City, NY 10001" -296753,USB-C Charging Cable,1,11.95,12/17/19 23:17,"541 Cherry St, Seattle, WA 98101" -296754,USB-C Charging Cable,2,11.95,12/31/19 14:27,"780 2nd St, Seattle, WA 98101" -296755,AAA Batteries (4-pack),2,2.99,12/31/19 00:27,"500 Meadow St, Atlanta, GA 30301" -296756,AAA Batteries (4-pack),1,2.99,12/14/19 14:09,"976 Lake St, Seattle, WA 98101" -296757,Apple Airpods Headphones,1,150,12/24/19 18:46,"80 Hill St, Boston, MA 02215" -296758,Lightning Charging Cable,1,14.95,12/14/19 17:11,"884 Hickory St, San Francisco, CA 94016" -296759,Apple Airpods Headphones,1,150,12/28/19 16:22,"703 9th St, Los Angeles, CA 90001" -296760,Flatscreen TV,1,300,12/18/19 13:11,"569 Center St, San Francisco, CA 94016" -296761,USB-C Charging Cable,1,11.95,12/24/19 23:04,"445 Johnson St, Austin, TX 73301" -296762,AA Batteries (4-pack),1,3.84,12/01/19 11:25,"460 Lincoln St, Seattle, WA 98101" -296763,Lightning Charging Cable,1,14.95,12/30/19 19:01,"783 Elm St, Atlanta, GA 30301" -296764,34in Ultrawide Monitor,1,379.99,12/06/19 21:48,"262 Hickory St, Atlanta, GA 30301" -296765,Wired Headphones,1,11.99,12/23/19 20:05,"892 Sunset St, Los Angeles, CA 90001" -296766,Wired Headphones,1,11.99,12/14/19 13:11,"177 Sunset St, New York City, NY 10001" -296767,AA Batteries (4-pack),1,3.84,12/06/19 14:22,"138 12th St, Seattle, WA 98101" -296768,AA Batteries (4-pack),2,3.84,12/10/19 14:33,"409 Washington St, San Francisco, CA 94016" -296769,Vareebadd Phone,1,400,12/13/19 22:16,"868 Elm St, Los Angeles, CA 90001" -296770,27in FHD Monitor,1,149.99,12/24/19 21:18,"621 Pine St, Los Angeles, CA 90001" -296771,27in 4K Gaming Monitor,1,389.99,12/27/19 18:38,"429 Madison St, Seattle, WA 98101" -296772,USB-C Charging Cable,1,11.95,12/17/19 13:32,"904 Spruce St, Boston, MA 02215" -296773,Wired Headphones,1,11.99,12/16/19 07:25,"796 South St, Dallas, TX 75001" -296774,AAA Batteries (4-pack),1,2.99,12/26/19 20:27,"174 8th St, Boston, MA 02215" -296775,27in 4K Gaming Monitor,1,389.99,12/07/19 02:05,"23 Adams St, Los Angeles, CA 90001" -296776,Wired Headphones,1,11.99,12/05/19 09:33,"709 7th St, Atlanta, GA 30301" -296777,USB-C Charging Cable,2,11.95,12/14/19 16:33,"140 6th St, San Francisco, CA 94016" -296778,Lightning Charging Cable,1,14.95,12/14/19 10:31,"703 14th St, New York City, NY 10001" -296779,ThinkPad Laptop,1,999.99,12/20/19 14:48,"769 North St, San Francisco, CA 94016" -296780,Wired Headphones,1,11.99,12/08/19 13:17,"226 Cherry St, Los Angeles, CA 90001" -296781,USB-C Charging Cable,1,11.95,12/27/19 20:50,"74 Meadow St, San Francisco, CA 94016" -296782,Google Phone,1,600,12/02/19 10:26,"15 11th St, San Francisco, CA 94016" -296783,27in 4K Gaming Monitor,1,389.99,12/03/19 22:54,"54 North St, Seattle, WA 98101" -296784,Wired Headphones,3,11.99,12/28/19 18:09,"408 10th St, Seattle, WA 98101" -296785,USB-C Charging Cable,1,11.95,12/26/19 09:24,"718 Madison St, New York City, NY 10001" -296786,AAA Batteries (4-pack),2,2.99,12/05/19 17:57,"891 Adams St, Seattle, WA 98101" -296787,Lightning Charging Cable,1,14.95,12/12/19 19:22,"367 4th St, San Francisco, CA 94016" -296788,USB-C Charging Cable,1,11.95,12/30/19 20:55,"913 Highland St, New York City, NY 10001" -296789,Apple Airpods Headphones,1,150,12/24/19 13:00,"733 Willow St, Los Angeles, CA 90001" -296790,AAA Batteries (4-pack),1,2.99,12/09/19 06:47,"577 Johnson St, San Francisco, CA 94016" -296791,Lightning Charging Cable,1,14.95,12/04/19 22:57,"678 14th St, Portland, OR 97035" -296792,AAA Batteries (4-pack),1,2.99,12/02/19 12:16,"900 Elm St, Dallas, TX 75001" -296793,AA Batteries (4-pack),1,3.84,12/23/19 23:34,"676 Chestnut St, Atlanta, GA 30301" -296794,iPhone,1,700,12/15/19 19:02,"788 Hill St, New York City, NY 10001" -296795,AAA Batteries (4-pack),1,2.99,12/23/19 15:53,"666 Willow St, San Francisco, CA 94016" -296796,USB-C Charging Cable,1,11.95,12/15/19 23:39,"133 Adams St, Los Angeles, CA 90001" -296797,Macbook Pro Laptop,1,1700,12/14/19 11:01,"80 1st St, New York City, NY 10001" -296797,Flatscreen TV,1,300,12/14/19 11:01,"80 1st St, New York City, NY 10001" -296798,AAA Batteries (4-pack),2,2.99,12/19/19 18:15,"360 7th St, San Francisco, CA 94016" -296799,Wired Headphones,1,11.99,12/18/19 19:00,"160 Johnson St, Seattle, WA 98101" -296800,AA Batteries (4-pack),1,3.84,12/27/19 17:05,"976 Maple St, Los Angeles, CA 90001" -296801,Lightning Charging Cable,1,14.95,12/14/19 13:56,"802 Hickory St, Dallas, TX 75001" -296802,Bose SoundSport Headphones,1,99.99,12/08/19 23:46,"366 7th St, Los Angeles, CA 90001" -296803,Lightning Charging Cable,1,14.95,12/03/19 10:10,"598 4th St, Los Angeles, CA 90001" -296804,Lightning Charging Cable,1,14.95,12/31/19 20:49,"114 10th St, Atlanta, GA 30301" -296804,AA Batteries (4-pack),1,3.84,12/31/19 20:49,"114 10th St, Atlanta, GA 30301" -296805,Apple Airpods Headphones,1,150,12/16/19 08:52,"771 Madison St, Dallas, TX 75001" -296806,Lightning Charging Cable,1,14.95,12/28/19 09:34,"163 Ridge St, Austin, TX 73301" -296807,AAA Batteries (4-pack),1,2.99,12/13/19 19:56,"781 Madison St, Los Angeles, CA 90001" -296808,Apple Airpods Headphones,1,150,12/21/19 19:04,"268 Hill St, Portland, OR 97035" -296809,34in Ultrawide Monitor,1,379.99,12/26/19 11:31,"757 Dogwood St, Seattle, WA 98101" -296810,Wired Headphones,1,11.99,12/10/19 17:31,"517 Park St, Boston, MA 02215" -296811,34in Ultrawide Monitor,1,379.99,12/10/19 07:39,"485 11th St, Portland, OR 97035" -296812,Lightning Charging Cable,1,14.95,12/17/19 12:06,"243 Maple St, Dallas, TX 75001" -296813,34in Ultrawide Monitor,1,379.99,12/11/19 22:12,"986 Elm St, Los Angeles, CA 90001" -296814,AA Batteries (4-pack),1,3.84,12/24/19 13:23,"613 Washington St, Portland, OR 97035" -296815,AA Batteries (4-pack),1,3.84,12/20/19 23:00,"214 Spruce St, Atlanta, GA 30301" -296816,Wired Headphones,1,11.99,12/07/19 11:26,"601 Center St, Dallas, TX 75001" -296817,20in Monitor,1,109.99,12/20/19 15:06,"541 Johnson St, San Francisco, CA 94016" -296818,Lightning Charging Cable,1,14.95,12/07/19 13:26,"208 4th St, Austin, TX 73301" -296819,Flatscreen TV,1,300,12/15/19 10:27,"530 Wilson St, Los Angeles, CA 90001" -296820,USB-C Charging Cable,2,11.95,12/05/19 12:36,"546 Elm St, Portland, OR 97035" -296821,AAA Batteries (4-pack),2,2.99,12/06/19 17:07,"840 Jefferson St, Seattle, WA 98101" -296822,Bose SoundSport Headphones,1,99.99,12/21/19 17:12,"310 Center St, New York City, NY 10001" -296823,Lightning Charging Cable,1,14.95,12/06/19 00:27,"640 Lincoln St, Boston, MA 02215" -296824,Apple Airpods Headphones,1,150,12/05/19 10:06,"339 5th St, San Francisco, CA 94016" -296825,USB-C Charging Cable,1,11.95,12/21/19 12:21,"2 Sunset St, San Francisco, CA 94016" -296826,USB-C Charging Cable,1,11.95,12/06/19 00:06,"950 13th St, Boston, MA 02215" -296827,Apple Airpods Headphones,1,150,12/28/19 13:36,"99 Center St, New York City, NY 10001" -296828,Wired Headphones,1,11.99,12/22/19 14:04,"810 2nd St, Boston, MA 02215" -296829,AA Batteries (4-pack),1,3.84,12/22/19 13:57,"100 Cedar St, New York City, NY 10001" -296830,Flatscreen TV,1,300,12/23/19 23:00,"797 Cedar St, Austin, TX 73301" -296831,34in Ultrawide Monitor,1,379.99,12/31/19 11:18,"420 Lincoln St, Boston, MA 02215" -296832,Apple Airpods Headphones,1,150,12/14/19 13:08,"392 Sunset St, Boston, MA 02215" -296833,Apple Airpods Headphones,1,150,12/19/19 11:03,"186 Elm St, New York City, NY 10001" -296834,USB-C Charging Cable,1,11.95,12/11/19 17:46,"328 12th St, Austin, TX 73301" -296835,Wired Headphones,1,11.99,12/25/19 19:10,"488 River St, Austin, TX 73301" -296836,Bose SoundSport Headphones,2,99.99,12/15/19 12:01,"783 10th St, Austin, TX 73301" -296837,Wired Headphones,1,11.99,12/23/19 14:15,"253 Cedar St, New York City, NY 10001" -296838,Lightning Charging Cable,1,14.95,12/30/19 16:44,"242 Lake St, Los Angeles, CA 90001" -296839,Bose SoundSport Headphones,1,99.99,12/15/19 09:10,"807 Dogwood St, New York City, NY 10001" -296840,27in 4K Gaming Monitor,1,389.99,12/07/19 09:28,"723 Jefferson St, Austin, TX 73301" -296841,iPhone,1,700,12/31/19 11:52,"431 Lincoln St, Los Angeles, CA 90001" -296841,Wired Headphones,1,11.99,12/31/19 11:52,"431 Lincoln St, Los Angeles, CA 90001" -296842,Wired Headphones,1,11.99,12/07/19 12:30,"488 Ridge St, New York City, NY 10001" -296843,Lightning Charging Cable,1,14.95,12/24/19 19:38,"168 2nd St, Los Angeles, CA 90001" -296844,34in Ultrawide Monitor,1,379.99,12/06/19 09:31,"971 Hill St, Dallas, TX 75001" -296845,LG Washing Machine,1,600.0,12/17/19 16:38,"930 River St, Atlanta, GA 30301" -296846,34in Ultrawide Monitor,1,379.99,12/21/19 21:38,"527 13th St, San Francisco, CA 94016" -296847,27in 4K Gaming Monitor,1,389.99,12/01/19 17:03,"596 14th St, San Francisco, CA 94016" -296848,USB-C Charging Cable,1,11.95,12/17/19 22:45,"305 11th St, Los Angeles, CA 90001" -296849,Apple Airpods Headphones,1,150,12/29/19 14:36,"208 Main St, Austin, TX 73301" -296850,Bose SoundSport Headphones,1,99.99,12/29/19 09:58,"825 South St, Boston, MA 02215" -296850,AAA Batteries (4-pack),2,2.99,12/29/19 09:58,"825 South St, Boston, MA 02215" -296851,USB-C Charging Cable,1,11.95,12/21/19 02:16,"621 Hill St, Atlanta, GA 30301" -296852,27in 4K Gaming Monitor,1,389.99,12/10/19 19:07,"505 South St, San Francisco, CA 94016" -296853,Wired Headphones,1,11.99,12/23/19 10:51,"896 Wilson St, San Francisco, CA 94016" -296854,Bose SoundSport Headphones,1,99.99,12/14/19 00:51,"588 West St, San Francisco, CA 94016" -296855,Wired Headphones,1,11.99,12/31/19 13:39,"130 12th St, New York City, NY 10001" -296856,Lightning Charging Cable,1,14.95,12/07/19 21:58,"618 Spruce St, San Francisco, CA 94016" -296856,27in FHD Monitor,1,149.99,12/07/19 21:58,"618 Spruce St, San Francisco, CA 94016" -296857,Apple Airpods Headphones,1,150,12/16/19 17:13,"953 Meadow St, Los Angeles, CA 90001" -296858,27in 4K Gaming Monitor,1,389.99,12/11/19 21:10,"569 Hickory St, Austin, TX 73301" -296859,USB-C Charging Cable,1,11.95,12/08/19 10:35,"320 Lincoln St, Atlanta, GA 30301" -296860,Wired Headphones,1,11.99,12/31/19 12:53,"437 7th St, San Francisco, CA 94016" -296861,AAA Batteries (4-pack),1,2.99,12/15/19 18:29,"462 12th St, New York City, NY 10001" -296862,AA Batteries (4-pack),2,3.84,12/21/19 09:02,"767 Park St, San Francisco, CA 94016" -296863,AA Batteries (4-pack),1,3.84,12/10/19 18:17,"969 Washington St, Dallas, TX 75001" -296864,USB-C Charging Cable,1,11.95,12/06/19 16:13,"238 Adams St, San Francisco, CA 94016" -296865,27in 4K Gaming Monitor,1,389.99,12/02/19 11:07,"87 Church St, San Francisco, CA 94016" -296866,USB-C Charging Cable,1,11.95,12/15/19 20:18,"820 Washington St, New York City, NY 10001" -296867,Lightning Charging Cable,1,14.95,12/23/19 16:55,"429 13th St, Boston, MA 02215" -296868,Apple Airpods Headphones,1,150,12/25/19 16:02,"440 Chestnut St, New York City, NY 10001" -296869,iPhone,1,700,12/06/19 01:43,"430 12th St, New York City, NY 10001" -296870,AAA Batteries (4-pack),1,2.99,12/18/19 18:37,"333 Washington St, San Francisco, CA 94016" -296871,34in Ultrawide Monitor,1,379.99,12/07/19 08:36,"618 Center St, Seattle, WA 98101" -296872,ThinkPad Laptop,1,999.99,12/24/19 10:53,"186 Lakeview St, Los Angeles, CA 90001" -296873,Wired Headphones,1,11.99,12/15/19 23:15,"613 9th St, San Francisco, CA 94016" -296874,Wired Headphones,1,11.99,12/05/19 23:56,"490 Washington St, San Francisco, CA 94016" -296875,USB-C Charging Cable,1,11.95,12/24/19 20:33,"297 Lincoln St, Boston, MA 02215" -296876,34in Ultrawide Monitor,1,379.99,12/10/19 23:17,"68 14th St, Los Angeles, CA 90001" -296877,Apple Airpods Headphones,1,150,12/25/19 21:18,"754 North St, Atlanta, GA 30301" -296878,34in Ultrawide Monitor,1,379.99,12/04/19 22:00,"232 Chestnut St, New York City, NY 10001" -296879,USB-C Charging Cable,1,11.95,12/11/19 20:27,"537 5th St, Los Angeles, CA 90001" -296880,34in Ultrawide Monitor,1,379.99,12/15/19 13:46,"501 12th St, Atlanta, GA 30301" -296881,Flatscreen TV,1,300,12/06/19 18:20,"832 Adams St, San Francisco, CA 94016" -296882,Apple Airpods Headphones,1,150,12/06/19 13:56,"5 South St, New York City, NY 10001" -296883,AAA Batteries (4-pack),1,2.99,12/23/19 20:24,"768 Forest St, Los Angeles, CA 90001" -296884,Lightning Charging Cable,1,14.95,12/11/19 13:10,"87 Pine St, Dallas, TX 75001" -296885,Wired Headphones,1,11.99,12/24/19 09:10,"936 River St, Portland, OR 97035" -296886,AA Batteries (4-pack),1,3.84,12/15/19 02:47,"29 Madison St, Los Angeles, CA 90001" -296887,Apple Airpods Headphones,1,150,12/01/19 09:26,"718 Spruce St, San Francisco, CA 94016" -296888,AAA Batteries (4-pack),2,2.99,12/27/19 20:46,"465 7th St, Dallas, TX 75001" -296889,Flatscreen TV,1,300,12/26/19 20:19,"706 Hill St, Dallas, TX 75001" -296890,Bose SoundSport Headphones,1,99.99,12/01/19 19:47,"434 Cedar St, Los Angeles, CA 90001" -296891,27in FHD Monitor,1,149.99,12/29/19 09:55,"881 1st St, Los Angeles, CA 90001" -296892,27in FHD Monitor,1,149.99,12/30/19 11:46,"365 South St, Los Angeles, CA 90001" -296893,LG Dryer,1,600.0,12/09/19 09:49,"108 Forest St, New York City, NY 10001" -296894,Flatscreen TV,1,300,12/16/19 03:56,"756 Madison St, Boston, MA 02215" -296895,34in Ultrawide Monitor,1,379.99,12/09/19 15:17,"326 Highland St, New York City, NY 10001" -296896,Lightning Charging Cable,1,14.95,12/31/19 09:53,"365 Lincoln St, San Francisco, CA 94016" -296897,Lightning Charging Cable,1,14.95,12/23/19 12:20,"613 Lake St, Atlanta, GA 30301" -296898,USB-C Charging Cable,1,11.95,12/06/19 06:23,"531 14th St, San Francisco, CA 94016" -296899,AAA Batteries (4-pack),1,2.99,12/07/19 12:15,"528 Johnson St, San Francisco, CA 94016" -296900,Vareebadd Phone,1,400,12/02/19 20:55,"237 Dogwood St, San Francisco, CA 94016" -296900,Wired Headphones,1,11.99,12/02/19 20:55,"237 Dogwood St, San Francisco, CA 94016" -296901,Lightning Charging Cable,1,14.95,12/21/19 09:15,"383 Highland St, New York City, NY 10001" -296902,20in Monitor,1,109.99,12/30/19 06:38,"707 Johnson St, Boston, MA 02215" -296903,USB-C Charging Cable,1,11.95,12/16/19 09:25,"103 Jackson St, San Francisco, CA 94016" -296904,Wired Headphones,1,11.99,12/13/19 18:47,"758 1st St, San Francisco, CA 94016" -296905,Macbook Pro Laptop,1,1700,12/11/19 18:03,"874 Lakeview St, Dallas, TX 75001" -296906,AAA Batteries (4-pack),4,2.99,12/08/19 19:38,"219 Adams St, Los Angeles, CA 90001" -296907,AA Batteries (4-pack),1,3.84,12/15/19 15:02,"348 Lakeview St, San Francisco, CA 94016" -296908,AAA Batteries (4-pack),1,2.99,12/23/19 08:21,"630 10th St, Los Angeles, CA 90001" -296909,Apple Airpods Headphones,1,150,12/26/19 09:00,"286 Cherry St, New York City, NY 10001" -296910,Apple Airpods Headphones,1,150,12/15/19 12:52,"266 12th St, Portland, OR 97035" -296911,34in Ultrawide Monitor,1,379.99,12/26/19 09:07,"722 Highland St, Los Angeles, CA 90001" -296912,Apple Airpods Headphones,1,150,12/24/19 13:15,"50 Adams St, San Francisco, CA 94016" -296913,34in Ultrawide Monitor,1,379.99,12/02/19 19:46,"283 Elm St, Dallas, TX 75001" -296914,Macbook Pro Laptop,1,1700,12/16/19 22:41,"886 Lakeview St, Seattle, WA 98101" -296914,iPhone,1,700,12/16/19 22:41,"886 Lakeview St, Seattle, WA 98101" -296915,Macbook Pro Laptop,1,1700,12/19/19 20:19,"433 Cherry St, Atlanta, GA 30301" -296916,iPhone,1,700,12/03/19 13:09,"427 Cedar St, San Francisco, CA 94016" -296917,Apple Airpods Headphones,1,150,12/18/19 11:57,"607 7th St, San Francisco, CA 94016" -296918,AA Batteries (4-pack),1,3.84,12/27/19 23:22,"773 Johnson St, Los Angeles, CA 90001" -296919,ThinkPad Laptop,1,999.99,12/01/19 19:41,"865 12th St, New York City, NY 10001" -296920,AAA Batteries (4-pack),2,2.99,12/03/19 16:55,"623 Chestnut St, New York City, NY 10001" -296921,AAA Batteries (4-pack),1,2.99,12/31/19 12:19,"659 Forest St, New York City, NY 10001" -296922,Google Phone,1,600,12/03/19 13:39,"146 5th St, San Francisco, CA 94016" -296922,USB-C Charging Cable,1,11.95,12/03/19 13:39,"146 5th St, San Francisco, CA 94016" -296923,AAA Batteries (4-pack),1,2.99,12/02/19 13:24,"279 Willow St, Dallas, TX 75001" -296924,iPhone,1,700,12/22/19 21:36,"754 10th St, Los Angeles, CA 90001" -296925,USB-C Charging Cable,1,11.95,12/14/19 21:34,"458 Center St, Seattle, WA 98101" -296926,27in 4K Gaming Monitor,1,389.99,12/25/19 15:19,"911 Cedar St, Los Angeles, CA 90001" -296927,Wired Headphones,1,11.99,12/18/19 17:54,"771 Jackson St, New York City, NY 10001" -296928,Lightning Charging Cable,2,14.95,12/26/19 21:36,"594 North St, Los Angeles, CA 90001" -296929,Bose SoundSport Headphones,1,99.99,12/29/19 13:03,"189 Chestnut St, San Francisco, CA 94016" -296930,Wired Headphones,1,11.99,12/16/19 22:55,"744 14th St, Austin, TX 73301" -296931,27in 4K Gaming Monitor,1,389.99,12/28/19 22:47,"442 7th St, Seattle, WA 98101" -296932,AA Batteries (4-pack),1,3.84,12/09/19 18:39,"959 1st St, Atlanta, GA 30301" -296933,Google Phone,1,600,12/26/19 09:38,"415 14th St, Los Angeles, CA 90001" -296934,Macbook Pro Laptop,1,1700,12/09/19 10:07,"83 13th St, Boston, MA 02215" -296935,Lightning Charging Cable,1,14.95,12/22/19 19:33,"985 Madison St, New York City, NY 10001" -296936,Lightning Charging Cable,1,14.95,12/19/19 22:02,"377 Willow St, Atlanta, GA 30301" -296937,AAA Batteries (4-pack),6,2.99,12/08/19 19:25,"45 Church St, Dallas, TX 75001" -296938,USB-C Charging Cable,1,11.95,12/08/19 16:53,"316 South St, San Francisco, CA 94016" -296939,Lightning Charging Cable,1,14.95,12/06/19 18:56,"464 Jefferson St, New York City, NY 10001" -296940,Lightning Charging Cable,2,14.95,12/25/19 07:14,"222 Walnut St, Austin, TX 73301" -296941,AAA Batteries (4-pack),2,2.99,12/20/19 08:05,"965 Dogwood St, New York City, NY 10001" -296942,ThinkPad Laptop,1,999.99,12/07/19 23:13,"34 6th St, San Francisco, CA 94016" -296943,ThinkPad Laptop,1,999.99,12/08/19 11:55,"141 Pine St, Atlanta, GA 30301" -296944,Google Phone,1,600,12/29/19 20:39,"855 Park St, Seattle, WA 98101" -296944,USB-C Charging Cable,1,11.95,12/29/19 20:39,"855 Park St, Seattle, WA 98101" -296945,USB-C Charging Cable,1,11.95,12/24/19 17:25,"973 Washington St, Atlanta, GA 30301" -296946,Google Phone,1,600,12/22/19 20:12,"594 South St, Portland, OR 97035" -296947,Bose SoundSport Headphones,1,99.99,12/24/19 21:02,"962 South St, Los Angeles, CA 90001" -296948,Apple Airpods Headphones,1,150,12/10/19 22:32,"12 Center St, Atlanta, GA 30301" -296949,ThinkPad Laptop,1,999.99,12/14/19 23:17,"144 10th St, Dallas, TX 75001" -296950,27in FHD Monitor,1,149.99,12/13/19 10:42,"267 Washington St, Los Angeles, CA 90001" -296951,AA Batteries (4-pack),1,3.84,12/04/19 22:02,"96 Meadow St, New York City, NY 10001" -296952,USB-C Charging Cable,1,11.95,12/07/19 22:12,"789 North St, Los Angeles, CA 90001" -296953,USB-C Charging Cable,2,11.95,12/14/19 14:21,"487 13th St, Boston, MA 02215" -296954,34in Ultrawide Monitor,1,379.99,12/25/19 20:19,"953 Hickory St, San Francisco, CA 94016" -296955,AAA Batteries (4-pack),2,2.99,12/30/19 19:37,"830 Highland St, New York City, NY 10001" -296956,Bose SoundSport Headphones,1,99.99,12/17/19 10:14,"797 Madison St, San Francisco, CA 94016" -296957,27in FHD Monitor,1,149.99,12/14/19 14:22,"291 Wilson St, Los Angeles, CA 90001" -296958,Bose SoundSport Headphones,1,99.99,12/09/19 15:07,"501 Highland St, San Francisco, CA 94016" -296959,AA Batteries (4-pack),1,3.84,12/03/19 16:55,"660 River St, Los Angeles, CA 90001" -296960,USB-C Charging Cable,1,11.95,12/20/19 20:58,"129 13th St, San Francisco, CA 94016" -296961,AA Batteries (4-pack),1,3.84,12/25/19 10:20,"970 West St, Seattle, WA 98101" -296962,USB-C Charging Cable,2,11.95,12/27/19 20:33,"192 Hickory St, San Francisco, CA 94016" -296963,Apple Airpods Headphones,1,150,12/15/19 12:41,"675 2nd St, San Francisco, CA 94016" -296964,27in FHD Monitor,1,149.99,12/16/19 13:27,"714 Washington St, San Francisco, CA 94016" -296965,Bose SoundSport Headphones,1,99.99,12/06/19 12:03,"804 8th St, New York City, NY 10001" -296966,Wired Headphones,1,11.99,12/19/19 20:03,"543 River St, Atlanta, GA 30301" -296967,AAA Batteries (4-pack),1,2.99,12/13/19 13:43,"392 Chestnut St, Dallas, TX 75001" -296968,Lightning Charging Cable,1,14.95,12/29/19 11:00,"575 Jackson St, Atlanta, GA 30301" -296969,Macbook Pro Laptop,1,1700,12/20/19 16:23,"626 Hickory St, San Francisco, CA 94016" -296970,AAA Batteries (4-pack),1,2.99,12/04/19 19:56,"618 Jackson St, Boston, MA 02215" -296971,Lightning Charging Cable,1,14.95,12/12/19 05:09,"507 14th St, Los Angeles, CA 90001" -296972,AA Batteries (4-pack),1,3.84,12/20/19 16:47,"156 Adams St, Boston, MA 02215" -296973,Apple Airpods Headphones,1,150,12/09/19 14:29,"645 Hickory St, San Francisco, CA 94016" -296974,AA Batteries (4-pack),1,3.84,12/09/19 22:55,"805 Highland St, New York City, NY 10001" -296975,LG Washing Machine,1,600.0,12/14/19 16:39,"643 Forest St, San Francisco, CA 94016" -296976,AAA Batteries (4-pack),2,2.99,12/08/19 18:50,"771 Meadow St, San Francisco, CA 94016" -296977,Apple Airpods Headphones,1,150,12/27/19 20:37,"225 7th St, San Francisco, CA 94016" -296978,Google Phone,1,600,12/21/19 13:10,"410 Jackson St, Los Angeles, CA 90001" -296978,USB-C Charging Cable,1,11.95,12/21/19 13:10,"410 Jackson St, Los Angeles, CA 90001" -296979,Wired Headphones,1,11.99,12/03/19 14:42,"840 Washington St, New York City, NY 10001" -296980,ThinkPad Laptop,1,999.99,12/06/19 10:49,"620 14th St, Los Angeles, CA 90001" -296981,Flatscreen TV,1,300,12/25/19 13:43,"43 Dogwood St, Atlanta, GA 30301" -296982,Wired Headphones,1,11.99,12/20/19 22:11,"39 Cedar St, Los Angeles, CA 90001" -296983,Lightning Charging Cable,1,14.95,12/27/19 15:17,"559 Forest St, Atlanta, GA 30301" -296984,AAA Batteries (4-pack),2,2.99,12/28/19 00:08,"446 Washington St, Portland, OR 97035" -,,,,, -296985,AA Batteries (4-pack),1,3.84,12/03/19 08:46,"318 River St, San Francisco, CA 94016" -296986,iPhone,1,700,12/10/19 11:29,"421 Sunset St, New York City, NY 10001" -296987,Lightning Charging Cable,1,14.95,12/27/19 08:46,"597 Hickory St, Portland, OR 97035" -296987,USB-C Charging Cable,1,11.95,12/27/19 08:46,"597 Hickory St, Portland, OR 97035" -296988,AA Batteries (4-pack),1,3.84,12/20/19 06:39,"793 Cherry St, Los Angeles, CA 90001" -296989,27in 4K Gaming Monitor,1,389.99,12/10/19 13:31,"752 11th St, Los Angeles, CA 90001" -296990,Bose SoundSport Headphones,1,99.99,12/29/19 13:09,"932 Elm St, San Francisco, CA 94016" -296991,AA Batteries (4-pack),1,3.84,12/13/19 09:09,"546 4th St, Los Angeles, CA 90001" -296992,iPhone,1,700,12/09/19 18:46,"410 Washington St, Dallas, TX 75001" -296992,Apple Airpods Headphones,1,150,12/09/19 18:46,"410 Washington St, Dallas, TX 75001" -296993,AAA Batteries (4-pack),1,2.99,12/07/19 12:26,"255 Pine St, Atlanta, GA 30301" -296994,AAA Batteries (4-pack),1,2.99,12/18/19 15:38,"95 Jackson St, San Francisco, CA 94016" -296995,AAA Batteries (4-pack),2,2.99,12/21/19 19:35,"542 Cedar St, New York City, NY 10001" -296996,AA Batteries (4-pack),2,3.84,12/08/19 09:20,"241 Madison St, Boston, MA 02215" -296997,Macbook Pro Laptop,1,1700,12/09/19 19:28,"488 Washington St, San Francisco, CA 94016" -296998,Google Phone,1,600,12/01/19 19:05,"177 Cedar St, Los Angeles, CA 90001" -296998,USB-C Charging Cable,1,11.95,12/01/19 19:05,"177 Cedar St, Los Angeles, CA 90001" -296998,Wired Headphones,1,11.99,12/01/19 19:05,"177 Cedar St, Los Angeles, CA 90001" -296999,Wired Headphones,1,11.99,12/05/19 09:46,"233 Hill St, Seattle, WA 98101" -297000,Macbook Pro Laptop,1,1700,12/01/19 19:02,"361 Hickory St, Boston, MA 02215" -297001,Lightning Charging Cable,1,14.95,12/09/19 14:50,"105 Madison St, Atlanta, GA 30301" -297002,USB-C Charging Cable,2,11.95,12/15/19 07:50,"901 Ridge St, Atlanta, GA 30301" -297003,Lightning Charging Cable,1,14.95,12/03/19 09:41,"889 Cedar St, Seattle, WA 98101" -297004,iPhone,1,700,12/21/19 15:11,"369 Forest St, New York City, NY 10001" -297005,Wired Headphones,1,11.99,12/19/19 15:17,"468 Elm St, Seattle, WA 98101" -297006,Apple Airpods Headphones,1,150,12/29/19 20:10,"805 North St, Boston, MA 02215" -297007,AA Batteries (4-pack),1,3.84,12/16/19 14:08,"438 West St, Los Angeles, CA 90001" -297008,Bose SoundSport Headphones,1,99.99,12/24/19 16:03,"673 Sunset St, San Francisco, CA 94016" -297009,Macbook Pro Laptop,1,1700,12/16/19 08:07,"779 Maple St, San Francisco, CA 94016" -297010,Wired Headphones,1,11.99,12/10/19 18:32,"262 Johnson St, Boston, MA 02215" -297011,USB-C Charging Cable,1,11.95,12/18/19 00:12,"540 Church St, San Francisco, CA 94016" -297012,AA Batteries (4-pack),1,3.84,12/02/19 11:37,"292 West St, New York City, NY 10001" -297013,USB-C Charging Cable,1,11.95,12/10/19 12:02,"149 Jefferson St, Portland, OR 97035" -297014,Apple Airpods Headphones,1,150,12/31/19 15:26,"516 14th St, Atlanta, GA 30301" -297015,AAA Batteries (4-pack),3,2.99,12/13/19 08:43,"58 Dogwood St, San Francisco, CA 94016" -297016,Wired Headphones,1,11.99,12/03/19 22:48,"157 Johnson St, Seattle, WA 98101" -297017,Apple Airpods Headphones,1,150,12/25/19 00:57,"990 11th St, Portland, OR 97035" -297018,Lightning Charging Cable,1,14.95,12/06/19 05:00,"549 Main St, San Francisco, CA 94016" -297019,USB-C Charging Cable,1,11.95,12/18/19 21:26,"297 West St, Boston, MA 02215" -297020,AA Batteries (4-pack),1,3.84,12/29/19 17:27,"387 10th St, Seattle, WA 98101" -297021,AAA Batteries (4-pack),1,2.99,12/23/19 20:35,"204 9th St, Seattle, WA 98101" -297022,Bose SoundSport Headphones,1,99.99,12/03/19 19:09,"132 Hickory St, San Francisco, CA 94016" -297023,iPhone,1,700,12/12/19 00:22,"169 Hill St, New York City, NY 10001" -297023,AAA Batteries (4-pack),1,2.99,12/12/19 00:22,"169 Hill St, New York City, NY 10001" -297024,Macbook Pro Laptop,1,1700,12/15/19 15:16,"869 9th St, San Francisco, CA 94016" -297025,34in Ultrawide Monitor,1,379.99,12/18/19 12:04,"836 Forest St, Boston, MA 02215" -297026,Wired Headphones,1,11.99,12/12/19 07:51,"696 Ridge St, Los Angeles, CA 90001" -297027,Google Phone,1,600,12/18/19 01:52,"261 Lake St, Los Angeles, CA 90001" -297028,Lightning Charging Cable,1,14.95,12/09/19 21:39,"567 Madison St, Boston, MA 02215" -297029,Lightning Charging Cable,2,14.95,12/25/19 10:54,"974 Pine St, Boston, MA 02215" -297030,Apple Airpods Headphones,1,150,12/22/19 14:14,"558 Willow St, San Francisco, CA 94016" -297031,AA Batteries (4-pack),1,3.84,12/07/19 17:36,"523 Maple St, San Francisco, CA 94016" -297032,AAA Batteries (4-pack),1,2.99,12/29/19 20:49,"811 River St, Dallas, TX 75001" -297033,27in 4K Gaming Monitor,1,389.99,12/16/19 11:25,"662 7th St, New York City, NY 10001" -297034,USB-C Charging Cable,1,11.95,12/07/19 17:18,"836 10th St, Boston, MA 02215" -297035,Bose SoundSport Headphones,2,99.99,12/08/19 11:03,"522 Walnut St, New York City, NY 10001" -297036,Google Phone,1,600,12/24/19 13:55,"386 Jefferson St, New York City, NY 10001" -297037,Lightning Charging Cable,1,14.95,12/08/19 13:43,"788 Highland St, Seattle, WA 98101" -297038,Apple Airpods Headphones,1,150,12/28/19 20:47,"778 Park St, New York City, NY 10001" -297039,USB-C Charging Cable,1,11.95,12/22/19 20:03,"252 Jefferson St, New York City, NY 10001" -297040,Wired Headphones,1,11.99,12/02/19 09:32,"526 Washington St, Atlanta, GA 30301" -297041,Lightning Charging Cable,1,14.95,12/12/19 08:22,"564 4th St, Dallas, TX 75001" -297042,Wired Headphones,1,11.99,12/02/19 09:09,"687 6th St, Austin, TX 73301" -297043,USB-C Charging Cable,1,11.95,12/20/19 13:02,"119 River St, San Francisco, CA 94016" -297044,AA Batteries (4-pack),2,3.84,12/21/19 19:12,"453 Park St, San Francisco, CA 94016" -297045,AAA Batteries (4-pack),1,2.99,12/23/19 11:50,"338 Walnut St, San Francisco, CA 94016" -297046,Bose SoundSport Headphones,1,99.99,12/14/19 16:23,"886 Hill St, Portland, OR 97035" -297047,USB-C Charging Cable,1,11.95,12/01/19 12:51,"146 Wilson St, New York City, NY 10001" -297048,AA Batteries (4-pack),1,3.84,12/23/19 18:52,"731 Walnut St, Los Angeles, CA 90001" -297049,Apple Airpods Headphones,1,150,12/29/19 13:40,"989 2nd St, Atlanta, GA 30301" -297050,AAA Batteries (4-pack),3,2.99,12/10/19 10:58,"269 Pine St, Dallas, TX 75001" -297051,AA Batteries (4-pack),2,3.84,12/02/19 01:25,"664 North St, Portland, OR 97035" -297052,AAA Batteries (4-pack),2,2.99,12/09/19 20:31,"479 Sunset St, Austin, TX 73301" -297053,27in FHD Monitor,1,149.99,12/03/19 21:13,"684 Maple St, Dallas, TX 75001" -297054,Lightning Charging Cable,1,14.95,12/09/19 15:47,"275 8th St, Boston, MA 02215" -297055,Bose SoundSport Headphones,1,99.99,12/13/19 21:56,"950 11th St, San Francisco, CA 94016" -297056,iPhone,1,700,12/17/19 08:43,"45 Willow St, New York City, NY 10001" -297056,Apple Airpods Headphones,1,150,12/17/19 08:43,"45 Willow St, New York City, NY 10001" -297056,Wired Headphones,1,11.99,12/17/19 08:43,"45 Willow St, New York City, NY 10001" -297057,AA Batteries (4-pack),1,3.84,12/31/19 16:26,"404 North St, Atlanta, GA 30301" -297058,Google Phone,1,600,12/06/19 10:52,"527 Cherry St, New York City, NY 10001" -297058,USB-C Charging Cable,1,11.95,12/06/19 10:52,"527 Cherry St, New York City, NY 10001" -297058,Wired Headphones,1,11.99,12/06/19 10:52,"527 Cherry St, New York City, NY 10001" -297059,AAA Batteries (4-pack),2,2.99,12/25/19 17:06,"895 Hickory St, San Francisco, CA 94016" -297060,Wired Headphones,1,11.99,12/16/19 01:06,"758 1st St, Portland, OR 97035" -297061,AA Batteries (4-pack),2,3.84,12/24/19 19:33,"888 Chestnut St, Boston, MA 02215" -297062,AA Batteries (4-pack),1,3.84,12/31/19 12:04,"740 11th St, San Francisco, CA 94016" -297063,AAA Batteries (4-pack),1,2.99,12/23/19 18:25,"24 13th St, New York City, NY 10001" -297064,AAA Batteries (4-pack),1,2.99,12/13/19 09:23,"816 Pine St, Los Angeles, CA 90001" -297065,34in Ultrawide Monitor,1,379.99,12/01/19 17:38,"3 North St, Boston, MA 02215" -297066,Wired Headphones,1,11.99,12/20/19 12:08,"133 4th St, Atlanta, GA 30301" -297067,Bose SoundSport Headphones,1,99.99,12/09/19 16:38,"864 Jackson St, San Francisco, CA 94016" -297068,Flatscreen TV,1,300,12/23/19 11:18,"326 7th St, San Francisco, CA 94016" -297069,27in FHD Monitor,1,149.99,12/15/19 22:08,"281 Lincoln St, Los Angeles, CA 90001" -297070,AAA Batteries (4-pack),1,2.99,12/05/19 17:55,"876 Forest St, Dallas, TX 75001" -297071,Wired Headphones,1,11.99,12/31/19 12:01,"101 Spruce St, Boston, MA 02215" -297072,Wired Headphones,1,11.99,12/29/19 13:46,"97 Meadow St, Los Angeles, CA 90001" -297073,iPhone,1,700,12/29/19 12:14,"695 4th St, Boston, MA 02215" -297074,AA Batteries (4-pack),1,3.84,12/02/19 11:46,"765 Forest St, Dallas, TX 75001" -297075,Lightning Charging Cable,1,14.95,12/07/19 02:06,"415 Center St, Atlanta, GA 30301" -297075,27in FHD Monitor,1,149.99,12/07/19 02:06,"415 Center St, Atlanta, GA 30301" -297076,Vareebadd Phone,1,400,12/03/19 05:35,"471 10th St, San Francisco, CA 94016" -297077,Lightning Charging Cable,1,14.95,12/14/19 12:02,"595 Pine St, Los Angeles, CA 90001" -297078,iPhone,1,700,12/27/19 14:43,"992 Cedar St, New York City, NY 10001" -297078,Lightning Charging Cable,1,14.95,12/27/19 14:43,"992 Cedar St, New York City, NY 10001" -297079,AA Batteries (4-pack),1,3.84,12/09/19 11:23,"554 North St, New York City, NY 10001" -297080,Lightning Charging Cable,1,14.95,12/07/19 19:10,"332 7th St, Portland, OR 97035" -297081,AA Batteries (4-pack),1,3.84,12/31/19 05:26,"709 Pine St, Dallas, TX 75001" -297082,Wired Headphones,1,11.99,12/12/19 12:16,"948 Lakeview St, Dallas, TX 75001" -,,,,, -297083,27in 4K Gaming Monitor,1,389.99,12/30/19 17:59,"215 8th St, San Francisco, CA 94016" -297084,Macbook Pro Laptop,1,1700,12/22/19 19:48,"712 Lakeview St, Los Angeles, CA 90001" -297085,27in 4K Gaming Monitor,1,389.99,12/16/19 19:52,"748 2nd St, New York City, NY 10001" -297086,AAA Batteries (4-pack),1,2.99,12/28/19 18:27,"19 4th St, Atlanta, GA 30301" -297087,Apple Airpods Headphones,1,150,12/05/19 11:56,"815 Park St, Atlanta, GA 30301" -297088,USB-C Charging Cable,2,11.95,12/06/19 12:42,"763 Sunset St, San Francisco, CA 94016" -297089,20in Monitor,1,109.99,12/02/19 19:56,"888 Wilson St, Los Angeles, CA 90001" -297090,AAA Batteries (4-pack),1,2.99,12/05/19 09:11,"596 13th St, Boston, MA 02215" -297091,Lightning Charging Cable,1,14.95,12/08/19 18:44,"913 11th St, New York City, NY 10001" -297092,AA Batteries (4-pack),1,3.84,12/21/19 15:15,"556 Willow St, San Francisco, CA 94016" -297093,Macbook Pro Laptop,1,1700,12/21/19 20:12,"685 Willow St, Dallas, TX 75001" -297094,USB-C Charging Cable,1,11.95,12/23/19 07:01,"93 1st St, New York City, NY 10001" -297095,AA Batteries (4-pack),1,3.84,12/03/19 06:22,"344 10th St, New York City, NY 10001" -297096,AA Batteries (4-pack),1,3.84,12/11/19 17:41,"121 Walnut St, Seattle, WA 98101" -297097,Lightning Charging Cable,1,14.95,12/09/19 08:31,"649 10th St, Los Angeles, CA 90001" -297098,AAA Batteries (4-pack),2,2.99,12/28/19 21:30,"986 Adams St, Dallas, TX 75001" -297099,USB-C Charging Cable,1,11.95,12/11/19 19:11,"521 River St, San Francisco, CA 94016" -297100,Macbook Pro Laptop,1,1700,12/16/19 21:47,"855 10th St, San Francisco, CA 94016" -297101,Bose SoundSport Headphones,1,99.99,12/09/19 21:03,"912 South St, Los Angeles, CA 90001" -297102,Lightning Charging Cable,1,14.95,12/25/19 10:36,"437 Lake St, Los Angeles, CA 90001" -297103,Google Phone,1,600,12/21/19 10:57,"360 Madison St, New York City, NY 10001" -297104,AAA Batteries (4-pack),3,2.99,12/19/19 22:44,"743 10th St, San Francisco, CA 94016" -297105,Lightning Charging Cable,1,14.95,12/30/19 13:53,"625 Jackson St, San Francisco, CA 94016" -297106,AA Batteries (4-pack),1,3.84,12/27/19 12:33,"817 6th St, New York City, NY 10001" -297107,Wired Headphones,1,11.99,12/26/19 09:04,"861 Wilson St, Dallas, TX 75001" -297108,AAA Batteries (4-pack),1,2.99,12/01/19 16:22,"860 7th St, San Francisco, CA 94016" -297109,AA Batteries (4-pack),1,3.84,12/17/19 21:37,"351 Cedar St, New York City, NY 10001" -297110,Lightning Charging Cable,1,14.95,12/12/19 15:24,"819 Wilson St, San Francisco, CA 94016" -297111,Lightning Charging Cable,1,14.95,12/29/19 14:27,"297 Spruce St, Dallas, TX 75001" -297112,27in FHD Monitor,1,149.99,12/17/19 11:17,"628 Madison St, Seattle, WA 98101" -297113,27in FHD Monitor,1,149.99,12/03/19 12:00,"423 Jefferson St, San Francisco, CA 94016" -297114,Wired Headphones,1,11.99,12/11/19 20:54,"815 South St, Los Angeles, CA 90001" -297115,Lightning Charging Cable,1,14.95,12/09/19 08:06,"137 11th St, San Francisco, CA 94016" -297116,AA Batteries (4-pack),1,3.84,12/07/19 19:31,"426 5th St, San Francisco, CA 94016" -297117,iPhone,1,700,12/25/19 23:38,"592 5th St, Los Angeles, CA 90001" -297118,Lightning Charging Cable,1,14.95,12/09/19 21:30,"179 Pine St, Dallas, TX 75001" -297119,Apple Airpods Headphones,1,150,12/24/19 14:50,"697 Willow St, Los Angeles, CA 90001" -297120,Flatscreen TV,1,300,12/15/19 10:44,"120 13th St, Los Angeles, CA 90001" -297121,USB-C Charging Cable,1,11.95,12/03/19 08:52,"14 Cedar St, San Francisco, CA 94016" -297122,Lightning Charging Cable,1,14.95,12/17/19 13:11,"757 2nd St, Portland, OR 97035" -297123,USB-C Charging Cable,2,11.95,12/29/19 18:47,"925 Center St, Seattle, WA 98101" -297124,Apple Airpods Headphones,1,150,12/27/19 12:57,"956 Wilson St, San Francisco, CA 94016" -297125,27in 4K Gaming Monitor,1,389.99,12/14/19 16:42,"489 Johnson St, San Francisco, CA 94016" -297126,Flatscreen TV,1,300,12/29/19 08:52,"536 River St, Boston, MA 02215" -297127,Lightning Charging Cable,1,14.95,12/30/19 23:21,"718 Highland St, Portland, OR 97035" -297128,ThinkPad Laptop,1,999.99,12/04/19 23:25,"90 14th St, Los Angeles, CA 90001" -297129,AAA Batteries (4-pack),1,2.99,12/31/19 04:59,"254 5th St, New York City, NY 10001" -297130,AAA Batteries (4-pack),2,2.99,12/13/19 21:16,"835 Cherry St, San Francisco, CA 94016" -297131,Apple Airpods Headphones,1,150,12/13/19 10:48,"608 Cherry St, Los Angeles, CA 90001" -297132,Lightning Charging Cable,1,14.95,12/17/19 06:43,"958 Dogwood St, San Francisco, CA 94016" -297133,27in FHD Monitor,1,149.99,12/30/19 22:31,"742 Elm St, Portland, OR 97035" -297134,Wired Headphones,1,11.99,12/04/19 11:23,"164 8th St, Atlanta, GA 30301" -297135,AA Batteries (4-pack),2,3.84,12/04/19 15:41,"639 Hickory St, Boston, MA 02215" -297136,Apple Airpods Headphones,1,150,12/31/19 20:32,"662 Church St, Los Angeles, CA 90001" -297137,Wired Headphones,1,11.99,12/21/19 13:06,"191 Walnut St, Portland, OR 97035" -297138,Apple Airpods Headphones,1,150,12/11/19 19:36,"485 Maple St, San Francisco, CA 94016" -297139,34in Ultrawide Monitor,1,379.99,12/28/19 13:46,"918 6th St, New York City, NY 10001" -297140,Apple Airpods Headphones,1,150,12/21/19 12:33,"610 2nd St, Boston, MA 02215" -297141,AAA Batteries (4-pack),2,2.99,12/04/19 13:31,"537 9th St, San Francisco, CA 94016" -297142,iPhone,1,700,12/26/19 13:29,"638 Forest St, Dallas, TX 75001" -297143,Apple Airpods Headphones,1,150,12/05/19 08:34,"625 Lincoln St, San Francisco, CA 94016" -297144,USB-C Charging Cable,1,11.95,12/26/19 21:42,"242 Hill St, Dallas, TX 75001" -297145,Lightning Charging Cable,1,14.95,12/11/19 21:45,"561 Chestnut St, New York City, NY 10001" -297146,AA Batteries (4-pack),2,3.84,12/13/19 21:06,"933 Willow St, Los Angeles, CA 90001" -297147,27in 4K Gaming Monitor,1,389.99,12/05/19 17:06,"305 Johnson St, San Francisco, CA 94016" -297148,Apple Airpods Headphones,1,150,12/01/19 08:24,"737 10th St, Dallas, TX 75001" -297149,Lightning Charging Cable,1,14.95,12/14/19 19:09,"671 Johnson St, Los Angeles, CA 90001" -297150,Lightning Charging Cable,1,14.95,01/01/20 00:38,"427 Wilson St, Dallas, TX 75001" -297151,Bose SoundSport Headphones,1,99.99,12/09/19 18:41,"515 Walnut St, Los Angeles, CA 90001" -297152,27in FHD Monitor,1,149.99,12/30/19 16:35,"250 Park St, Los Angeles, CA 90001" -297153,Vareebadd Phone,1,400,12/23/19 01:11,"211 Lakeview St, Boston, MA 02215" -297154,iPhone,1,700,12/06/19 18:10,"508 Jackson St, San Francisco, CA 94016" -297155,AA Batteries (4-pack),1,3.84,12/27/19 16:17,"413 Willow St, San Francisco, CA 94016" -297156,Flatscreen TV,1,300,12/22/19 14:46,"940 1st St, Boston, MA 02215" -297157,Wired Headphones,1,11.99,12/07/19 09:19,"591 Cedar St, San Francisco, CA 94016" -297158,20in Monitor,1,109.99,12/06/19 10:18,"119 Cedar St, Portland, OR 97035" -297159,Lightning Charging Cable,1,14.95,12/25/19 16:19,"401 8th St, Boston, MA 02215" -297160,Bose SoundSport Headphones,1,99.99,12/23/19 23:26,"985 Pine St, Atlanta, GA 30301" -297161,AAA Batteries (4-pack),3,2.99,12/19/19 11:31,"851 Wilson St, New York City, NY 10001" -297162,AAA Batteries (4-pack),2,2.99,12/28/19 14:21,"584 2nd St, San Francisco, CA 94016" -297163,27in FHD Monitor,1,149.99,12/26/19 14:28,"429 Main St, Los Angeles, CA 90001" -297164,AA Batteries (4-pack),1,3.84,12/23/19 06:08,"40 7th St, Boston, MA 02215" -297164,Lightning Charging Cable,1,14.95,12/23/19 06:08,"40 7th St, Boston, MA 02215" -297165,Lightning Charging Cable,1,14.95,12/20/19 15:27,"150 8th St, Boston, MA 02215" -297165,AAA Batteries (4-pack),2,2.99,12/20/19 15:27,"150 8th St, Boston, MA 02215" -297166,USB-C Charging Cable,1,11.95,12/10/19 15:32,"272 Lincoln St, San Francisco, CA 94016" -297167,AAA Batteries (4-pack),1,2.99,12/04/19 23:28,"738 Adams St, New York City, NY 10001" -297167,Flatscreen TV,1,300,12/04/19 23:28,"738 Adams St, New York City, NY 10001" -297168,USB-C Charging Cable,1,11.95,12/19/19 19:04,"955 Main St, Boston, MA 02215" -297169,Apple Airpods Headphones,1,150,12/15/19 15:13,"436 Lake St, San Francisco, CA 94016" -297170,AA Batteries (4-pack),1,3.84,12/15/19 00:03,"235 12th St, Boston, MA 02215" -297171,Apple Airpods Headphones,1,150,12/23/19 14:24,"924 Main St, Los Angeles, CA 90001" -297172,AAA Batteries (4-pack),1,2.99,12/17/19 22:43,"791 Wilson St, San Francisco, CA 94016" -297173,ThinkPad Laptop,1,999.99,12/24/19 14:19,"80 Jefferson St, Boston, MA 02215" -297174,Flatscreen TV,1,300,12/25/19 13:12,"225 Dogwood St, Seattle, WA 98101" -297175,Bose SoundSport Headphones,1,99.99,12/03/19 18:16,"209 Lake St, Austin, TX 73301" -297176,Apple Airpods Headphones,1,150,12/21/19 11:47,"288 6th St, Dallas, TX 75001" -297177,Wired Headphones,1,11.99,12/01/19 18:04,"308 Highland St, Seattle, WA 98101" -297178,USB-C Charging Cable,1,11.95,12/29/19 20:53,"55 Chestnut St, San Francisco, CA 94016" -297179,USB-C Charging Cable,1,11.95,12/01/19 14:56,"647 Wilson St, Seattle, WA 98101" -297180,Lightning Charging Cable,1,14.95,12/07/19 22:36,"158 South St, Los Angeles, CA 90001" -297181,AAA Batteries (4-pack),1,2.99,12/24/19 09:57,"108 Maple St, Dallas, TX 75001" -297182,AA Batteries (4-pack),1,3.84,12/19/19 13:46,"71 Willow St, Los Angeles, CA 90001" -297183,27in 4K Gaming Monitor,1,389.99,12/05/19 09:38,"96 Sunset St, New York City, NY 10001" -297184,AAA Batteries (4-pack),1,2.99,12/02/19 19:51,"398 Walnut St, New York City, NY 10001" -297185,Bose SoundSport Headphones,1,99.99,12/06/19 12:07,"652 11th St, Seattle, WA 98101" -297186,USB-C Charging Cable,1,11.95,12/04/19 17:26,"848 Elm St, Los Angeles, CA 90001" -297187,Bose SoundSport Headphones,1,99.99,12/01/19 19:29,"328 Dogwood St, New York City, NY 10001" -297188,Apple Airpods Headphones,1,150,12/07/19 10:42,"536 Washington St, Los Angeles, CA 90001" -297189,AA Batteries (4-pack),1,3.84,12/03/19 14:47,"666 Dogwood St, New York City, NY 10001" -297190,Bose SoundSport Headphones,1,99.99,12/22/19 10:41,"289 Chestnut St, Seattle, WA 98101" -297191,Bose SoundSport Headphones,1,99.99,12/04/19 11:40,"291 Main St, San Francisco, CA 94016" -297192,AA Batteries (4-pack),1,3.84,12/29/19 16:25,"207 12th St, New York City, NY 10001" -297192,Apple Airpods Headphones,1,150,12/29/19 16:25,"207 12th St, New York City, NY 10001" -297193,ThinkPad Laptop,1,999.99,12/12/19 13:18,"733 River St, New York City, NY 10001" -297194,iPhone,1,700,12/30/19 16:11,"771 Hill St, New York City, NY 10001" -297195,Wired Headphones,1,11.99,12/25/19 18:06,"974 1st St, Austin, TX 73301" -297196,20in Monitor,1,109.99,12/12/19 20:16,"928 River St, Seattle, WA 98101" -297197,Wired Headphones,1,11.99,12/19/19 06:40,"363 Washington St, San Francisco, CA 94016" -297197,AA Batteries (4-pack),1,3.84,12/19/19 06:40,"363 Washington St, San Francisco, CA 94016" -297198,AA Batteries (4-pack),1,3.84,12/08/19 15:53,"928 Dogwood St, San Francisco, CA 94016" -297199,Wired Headphones,1,11.99,12/18/19 08:16,"775 Maple St, Los Angeles, CA 90001" -297200,Wired Headphones,1,11.99,12/16/19 12:11,"367 6th St, New York City, NY 10001" -297201,USB-C Charging Cable,1,11.95,12/09/19 08:28,"497 Dogwood St, San Francisco, CA 94016" -297202,Google Phone,1,600,12/18/19 08:36,"497 River St, Portland, ME 04101" -297203,USB-C Charging Cable,1,11.95,12/20/19 19:31,"742 Cherry St, Atlanta, GA 30301" -297204,AA Batteries (4-pack),2,3.84,12/10/19 15:05,"337 Jefferson St, Dallas, TX 75001" -297205,27in FHD Monitor,1,149.99,12/06/19 19:37,"681 Highland St, Seattle, WA 98101" -297206,Flatscreen TV,1,300,12/10/19 12:42,"35 1st St, San Francisco, CA 94016" -297207,Macbook Pro Laptop,1,1700,12/21/19 09:32,"949 12th St, Portland, OR 97035" -297208,Bose SoundSport Headphones,1,99.99,12/07/19 15:20,"631 14th St, Boston, MA 02215" -297209,Lightning Charging Cable,1,14.95,12/07/19 15:15,"253 Jefferson St, Los Angeles, CA 90001" -297210,Bose SoundSport Headphones,1,99.99,12/14/19 13:52,"217 Forest St, Boston, MA 02215" -297211,Flatscreen TV,1,300,12/03/19 08:45,"635 8th St, San Francisco, CA 94016" -297212,iPhone,1,700,12/11/19 23:42,"240 11th St, New York City, NY 10001" -297213,27in FHD Monitor,1,149.99,12/02/19 13:51,"395 2nd St, Dallas, TX 75001" -297214,USB-C Charging Cable,1,11.95,12/03/19 20:51,"472 Forest St, Portland, OR 97035" -297215,Apple Airpods Headphones,1,150,12/30/19 09:38,"654 South St, New York City, NY 10001" -297216,Wired Headphones,1,11.99,12/04/19 10:34,"734 Lakeview St, San Francisco, CA 94016" -297217,AA Batteries (4-pack),1,3.84,12/11/19 17:11,"357 8th St, Portland, ME 04101" -297218,Wired Headphones,1,11.99,12/08/19 06:49,"2 1st St, Boston, MA 02215" -297219,Apple Airpods Headphones,1,150,12/10/19 19:44,"127 Dogwood St, San Francisco, CA 94016" -297220,Apple Airpods Headphones,1,150,12/06/19 08:57,"337 8th St, Portland, OR 97035" -297221,Lightning Charging Cable,1,14.95,12/21/19 05:22,"728 13th St, Boston, MA 02215" -297222,AAA Batteries (4-pack),2,2.99,12/28/19 23:31,"89 South St, San Francisco, CA 94016" -297223,Wired Headphones,1,11.99,12/18/19 15:28,"293 4th St, San Francisco, CA 94016" -297224,Lightning Charging Cable,1,14.95,12/02/19 23:53,"904 Sunset St, Seattle, WA 98101" -297225,Wired Headphones,1,11.99,12/01/19 21:49,"36 10th St, San Francisco, CA 94016" -297226,AAA Batteries (4-pack),1,2.99,12/24/19 14:26,"702 Ridge St, San Francisco, CA 94016" -297227,iPhone,1,700,12/01/19 19:14,"863 Hickory St, New York City, NY 10001" -297227,Lightning Charging Cable,1,14.95,12/01/19 19:14,"863 Hickory St, New York City, NY 10001" -297228,Bose SoundSport Headphones,1,99.99,12/21/19 19:37,"852 Elm St, Portland, OR 97035" -297229,Wired Headphones,1,11.99,12/05/19 22:49,"266 South St, Boston, MA 02215" -297230,Apple Airpods Headphones,1,150,12/27/19 17:27,"953 North St, Los Angeles, CA 90001" -297231,20in Monitor,1,109.99,12/24/19 07:27,"13 4th St, Portland, OR 97035" -297232,Apple Airpods Headphones,1,150,12/09/19 08:07,"144 Washington St, New York City, NY 10001" -297233,Wired Headphones,1,11.99,12/13/19 18:39,"303 North St, San Francisco, CA 94016" -297234,AA Batteries (4-pack),1,3.84,12/19/19 18:12,"448 Lakeview St, Dallas, TX 75001" -297235,Wired Headphones,1,11.99,12/31/19 15:29,"44 Main St, Atlanta, GA 30301" -297236,Lightning Charging Cable,1,14.95,12/16/19 13:15,"415 Cedar St, San Francisco, CA 94016" -297237,Bose SoundSport Headphones,1,99.99,12/16/19 10:28,"355 Park St, Boston, MA 02215" -297238,Macbook Pro Laptop,1,1700,12/21/19 15:03,"35 Elm St, Boston, MA 02215" -297239,AAA Batteries (4-pack),1,2.99,12/11/19 14:35,"798 South St, San Francisco, CA 94016" -297240,Bose SoundSport Headphones,1,99.99,12/12/19 12:00,"510 North St, San Francisco, CA 94016" -297241,USB-C Charging Cable,1,11.95,12/28/19 11:49,"406 Cedar St, Boston, MA 02215" -297242,Macbook Pro Laptop,1,1700,12/29/19 11:18,"382 7th St, Dallas, TX 75001" -297243,Wired Headphones,1,11.99,12/12/19 13:41,"934 Chestnut St, Portland, OR 97035" -297244,27in FHD Monitor,1,149.99,12/25/19 19:38,"802 Walnut St, Boston, MA 02215" -297245,27in FHD Monitor,1,149.99,12/05/19 09:23,"94 8th St, Los Angeles, CA 90001" -297246,27in 4K Gaming Monitor,1,389.99,12/01/19 20:20,"781 11th St, New York City, NY 10001" -297247,Lightning Charging Cable,1,14.95,12/14/19 12:26,"450 Adams St, Seattle, WA 98101" -297248,USB-C Charging Cable,1,11.95,12/22/19 11:04,"457 Dogwood St, San Francisco, CA 94016" -297249,iPhone,1,700,12/05/19 09:07,"298 Johnson St, Atlanta, GA 30301" -297250,iPhone,1,700,12/16/19 12:42,"857 Hickory St, Boston, MA 02215" -297251,iPhone,1,700,12/19/19 20:19,"835 Main St, Austin, TX 73301" -297252,27in 4K Gaming Monitor,1,389.99,12/26/19 18:55,"587 Cherry St, Boston, MA 02215" -297253,Lightning Charging Cable,1,14.95,12/24/19 13:18,"357 13th St, Atlanta, GA 30301" -297254,Wired Headphones,1,11.99,12/18/19 11:17,"595 Forest St, San Francisco, CA 94016" -297255,USB-C Charging Cable,1,11.95,12/08/19 13:38,"801 West St, Los Angeles, CA 90001" -297256,iPhone,1,700,12/11/19 20:25,"235 Meadow St, Boston, MA 02215" -297256,Lightning Charging Cable,1,14.95,12/11/19 20:25,"235 Meadow St, Boston, MA 02215" -297256,Apple Airpods Headphones,1,150,12/11/19 20:25,"235 Meadow St, Boston, MA 02215" -297257,Wired Headphones,1,11.99,12/18/19 16:59,"8 Forest St, Atlanta, GA 30301" -297258,AAA Batteries (4-pack),1,2.99,12/14/19 23:45,"397 Main St, Portland, OR 97035" -297259,Flatscreen TV,1,300,12/22/19 02:53,"133 7th St, Dallas, TX 75001" -297260,20in Monitor,1,109.99,12/05/19 10:30,"965 9th St, Atlanta, GA 30301" -297261,Flatscreen TV,1,300,12/01/19 11:43,"270 Adams St, Seattle, WA 98101" -297262,Apple Airpods Headphones,1,150,12/11/19 18:35,"633 Spruce St, San Francisco, CA 94016" -297263,USB-C Charging Cable,1,11.95,12/15/19 11:08,"334 Dogwood St, San Francisco, CA 94016" -297264,Lightning Charging Cable,1,14.95,12/17/19 23:46,"623 Cherry St, San Francisco, CA 94016" -297265,LG Washing Machine,1,600.0,12/11/19 20:36,"787 Ridge St, Los Angeles, CA 90001" -297266,Wired Headphones,1,11.99,12/25/19 22:49,"160 Elm St, New York City, NY 10001" -297267,Flatscreen TV,1,300,12/20/19 13:53,"327 Lakeview St, Boston, MA 02215" -297268,Bose SoundSport Headphones,1,99.99,12/13/19 10:33,"795 Main St, San Francisco, CA 94016" -297269,34in Ultrawide Monitor,1,379.99,12/07/19 13:42,"114 North St, San Francisco, CA 94016" -297270,iPhone,1,700,12/25/19 22:11,"938 Spruce St, Seattle, WA 98101" -297271,AAA Batteries (4-pack),2,2.99,12/21/19 09:19,"637 Wilson St, Dallas, TX 75001" -297272,USB-C Charging Cable,1,11.95,12/15/19 13:52,"14 13th St, San Francisco, CA 94016" -297273,Wired Headphones,1,11.99,12/03/19 20:18,"747 Cherry St, Seattle, WA 98101" -297274,Flatscreen TV,1,300,12/25/19 16:17,"737 Madison St, Boston, MA 02215" -297275,AA Batteries (4-pack),1,3.84,12/04/19 18:43,"709 Walnut St, Boston, MA 02215" -297276,Bose SoundSport Headphones,1,99.99,12/14/19 22:14,"915 North St, San Francisco, CA 94016" -297277,Wired Headphones,1,11.99,12/31/19 17:57,"961 Center St, Los Angeles, CA 90001" -297278,iPhone,1,700,12/09/19 20:06,"418 West St, Los Angeles, CA 90001" -297278,Wired Headphones,1,11.99,12/09/19 20:06,"418 West St, Los Angeles, CA 90001" -297279,Lightning Charging Cable,2,14.95,12/09/19 17:32,"701 Johnson St, New York City, NY 10001" -297280,AA Batteries (4-pack),1,3.84,12/12/19 09:13,"301 Ridge St, Los Angeles, CA 90001" -297281,Wired Headphones,1,11.99,12/01/19 17:00,"459 Jackson St, New York City, NY 10001" -297282,Bose SoundSport Headphones,1,99.99,12/16/19 15:56,"640 River St, Los Angeles, CA 90001" -297283,AA Batteries (4-pack),1,3.84,12/18/19 10:26,"743 Washington St, San Francisco, CA 94016" -297284,Apple Airpods Headphones,1,150,12/12/19 16:23,"410 5th St, Seattle, WA 98101" -297285,Lightning Charging Cable,1,14.95,12/14/19 11:50,"13 13th St, Boston, MA 02215" -297286,Google Phone,1,600,12/15/19 18:28,"364 9th St, Seattle, WA 98101" -297286,USB-C Charging Cable,1,11.95,12/15/19 18:28,"364 9th St, Seattle, WA 98101" -297287,Wired Headphones,1,11.99,12/14/19 14:53,"950 Pine St, Seattle, WA 98101" -297288,AA Batteries (4-pack),2,3.84,12/31/19 23:16,"914 Madison St, San Francisco, CA 94016" -297289,AAA Batteries (4-pack),1,2.99,12/31/19 19:25,"815 1st St, Los Angeles, CA 90001" -297290,AAA Batteries (4-pack),1,2.99,12/29/19 14:23,"306 Madison St, San Francisco, CA 94016" -297291,Lightning Charging Cable,1,14.95,12/08/19 22:19,"584 13th St, Atlanta, GA 30301" -297292,Bose SoundSport Headphones,1,99.99,12/19/19 09:17,"836 4th St, Seattle, WA 98101" -297293,34in Ultrawide Monitor,1,379.99,12/25/19 18:05,"160 Madison St, San Francisco, CA 94016" -297294,AA Batteries (4-pack),2,3.84,12/08/19 01:31,"334 Cedar St, Boston, MA 02215" -297295,Apple Airpods Headphones,1,150,12/06/19 19:32,"714 South St, Portland, OR 97035" -297296,AA Batteries (4-pack),3,3.84,12/04/19 09:39,"223 Forest St, Los Angeles, CA 90001" -297297,Wired Headphones,1,11.99,12/21/19 19:43,"875 2nd St, San Francisco, CA 94016" -297298,Wired Headphones,1,11.99,12/03/19 21:41,"583 Jackson St, New York City, NY 10001" -297299,Apple Airpods Headphones,1,150,12/02/19 14:48,"453 Ridge St, Dallas, TX 75001" -297300,Wired Headphones,1,11.99,12/13/19 11:17,"329 12th St, Austin, TX 73301" -297301,Wired Headphones,1,11.99,12/05/19 11:54,"334 Highland St, Boston, MA 02215" -297302,27in FHD Monitor,1,149.99,12/10/19 10:08,"820 Adams St, Atlanta, GA 30301" -297303,Lightning Charging Cable,1,14.95,12/18/19 13:03,"567 6th St, Los Angeles, CA 90001" -297304,Bose SoundSport Headphones,1,99.99,12/31/19 11:07,"269 North St, Portland, OR 97035" -297305,iPhone,1,700,12/11/19 09:00,"238 12th St, New York City, NY 10001" -297306,AA Batteries (4-pack),2,3.84,12/06/19 15:18,"807 Walnut St, Seattle, WA 98101" -297307,27in FHD Monitor,1,149.99,12/12/19 17:39,"42 Main St, Los Angeles, CA 90001" -297308,Apple Airpods Headphones,2,150,12/23/19 20:48,"280 Spruce St, San Francisco, CA 94016" -297309,Bose SoundSport Headphones,1,99.99,12/25/19 18:30,"997 Sunset St, New York City, NY 10001" -297310,Wired Headphones,2,11.99,12/08/19 20:44,"121 Dogwood St, San Francisco, CA 94016" -297311,Bose SoundSport Headphones,1,99.99,12/07/19 07:30,"858 Willow St, Los Angeles, CA 90001" -297311,Bose SoundSport Headphones,1,99.99,12/07/19 07:30,"858 Willow St, Los Angeles, CA 90001" -297312,Macbook Pro Laptop,1,1700,12/27/19 15:37,"219 12th St, Dallas, TX 75001" -297313,USB-C Charging Cable,1,11.95,12/15/19 12:57,"971 Madison St, San Francisco, CA 94016" -297314,Bose SoundSport Headphones,1,99.99,12/07/19 19:26,"121 Spruce St, Dallas, TX 75001" -297315,Wired Headphones,1,11.99,12/28/19 18:26,"220 Lake St, San Francisco, CA 94016" -297316,27in 4K Gaming Monitor,1,389.99,12/27/19 19:05,"824 Lakeview St, Dallas, TX 75001" -297317,Flatscreen TV,1,300,12/19/19 17:30,"367 Cherry St, Austin, TX 73301" -297318,AAA Batteries (4-pack),1,2.99,12/25/19 15:12,"523 Sunset St, Seattle, WA 98101" -297319,AA Batteries (4-pack),1,3.84,12/25/19 08:18,"652 Wilson St, Austin, TX 73301" -297320,Macbook Pro Laptop,1,1700,12/14/19 20:12,"160 West St, Dallas, TX 75001" -297321,AA Batteries (4-pack),1,3.84,12/24/19 12:52,"679 Lakeview St, New York City, NY 10001" -297322,ThinkPad Laptop,1,999.99,12/06/19 10:54,"823 Washington St, San Francisco, CA 94016" -297323,Flatscreen TV,1,300,12/04/19 22:00,"90 Park St, Dallas, TX 75001" -297324,Lightning Charging Cable,1,14.95,12/18/19 17:40,"860 Highland St, Boston, MA 02215" -297325,Bose SoundSport Headphones,1,99.99,12/01/19 15:18,"154 4th St, Portland, OR 97035" -297326,27in 4K Gaming Monitor,1,389.99,12/17/19 18:36,"823 Park St, New York City, NY 10001" -297327,iPhone,1,700,12/12/19 09:48,"787 Lincoln St, Boston, MA 02215" -297328,USB-C Charging Cable,1,11.95,12/27/19 01:46,"761 6th St, Austin, TX 73301" -297329,iPhone,1,700,12/28/19 12:44,"505 Madison St, Austin, TX 73301" -297330,Apple Airpods Headphones,1,150,12/14/19 20:57,"854 8th St, New York City, NY 10001" -297331,USB-C Charging Cable,1,11.95,12/18/19 11:34,"725 13th St, San Francisco, CA 94016" -297332,AAA Batteries (4-pack),2,2.99,12/09/19 01:28,"16 Center St, Austin, TX 73301" -297333,ThinkPad Laptop,1,999.99,12/24/19 15:28,"32 Lincoln St, Atlanta, GA 30301" -297334,Lightning Charging Cable,1,14.95,12/16/19 17:21,"980 Jefferson St, San Francisco, CA 94016" -297335,AAA Batteries (4-pack),1,2.99,12/20/19 11:26,"700 Madison St, New York City, NY 10001" -297336,AA Batteries (4-pack),4,3.84,12/07/19 09:19,"344 Lake St, New York City, NY 10001" -297337,Apple Airpods Headphones,1,150,12/06/19 11:40,"200 2nd St, San Francisco, CA 94016" -297338,USB-C Charging Cable,1,11.95,12/03/19 13:54,"946 Cherry St, Los Angeles, CA 90001" -297339,USB-C Charging Cable,1,11.95,12/21/19 12:02,"552 Cherry St, Dallas, TX 75001" -297340,Lightning Charging Cable,3,14.95,12/02/19 12:01,"132 13th St, Boston, MA 02215" -297341,27in FHD Monitor,1,149.99,12/15/19 11:28,"987 8th St, New York City, NY 10001" -297342,USB-C Charging Cable,1,11.95,12/17/19 01:57,"871 Cherry St, San Francisco, CA 94016" -297343,iPhone,1,700,12/28/19 18:11,"914 Pine St, Boston, MA 02215" -297343,Wired Headphones,1,11.99,12/28/19 18:11,"914 Pine St, Boston, MA 02215" -297344,Bose SoundSport Headphones,1,99.99,12/10/19 14:52,"113 4th St, Los Angeles, CA 90001" -297345,Google Phone,1,600,12/02/19 13:39,"88 8th St, Atlanta, GA 30301" -297345,Wired Headphones,1,11.99,12/02/19 13:39,"88 8th St, Atlanta, GA 30301" -297346,27in 4K Gaming Monitor,1,389.99,12/30/19 22:08,"756 Hill St, Dallas, TX 75001" -297347,iPhone,1,700,12/17/19 16:50,"266 Madison St, Atlanta, GA 30301" -297348,Bose SoundSport Headphones,1,99.99,12/11/19 13:24,"667 Highland St, Dallas, TX 75001" -297349,20in Monitor,1,109.99,12/02/19 19:29,"165 River St, San Francisco, CA 94016" -297350,Lightning Charging Cable,1,14.95,12/14/19 17:20,"295 Cherry St, Los Angeles, CA 90001" -297351,Wired Headphones,1,11.99,12/10/19 23:54,"413 Church St, New York City, NY 10001" -297352,USB-C Charging Cable,1,11.95,12/01/19 10:06,"179 Elm St, Los Angeles, CA 90001" -297353,27in 4K Gaming Monitor,1,389.99,12/11/19 21:37,"486 10th St, Austin, TX 73301" -297354,34in Ultrawide Monitor,1,379.99,12/28/19 12:40,"409 Sunset St, New York City, NY 10001" -297355,USB-C Charging Cable,1,11.95,12/30/19 06:36,"715 Adams St, New York City, NY 10001" -297356,27in 4K Gaming Monitor,1,389.99,12/18/19 22:01,"769 14th St, Dallas, TX 75001" -297357,Flatscreen TV,1,300,12/13/19 00:30,"725 Lakeview St, San Francisco, CA 94016" -297358,USB-C Charging Cable,1,11.95,12/19/19 21:28,"903 North St, Portland, OR 97035" -297359,USB-C Charging Cable,1,11.95,12/08/19 08:19,"936 Washington St, Atlanta, GA 30301" -297360,Lightning Charging Cable,1,14.95,12/08/19 20:56,"525 11th St, San Francisco, CA 94016" -297361,AA Batteries (4-pack),1,3.84,12/08/19 11:11,"617 Highland St, Austin, TX 73301" -297362,Macbook Pro Laptop,1,1700,12/11/19 06:31,"494 Ridge St, Portland, ME 04101" -297363,Wired Headphones,1,11.99,12/15/19 22:34,"707 Adams St, Boston, MA 02215" -297364,AA Batteries (4-pack),2,3.84,12/19/19 07:34,"844 Willow St, San Francisco, CA 94016" -297365,Lightning Charging Cable,1,14.95,12/08/19 13:20,"926 Adams St, San Francisco, CA 94016" -297366,Wired Headphones,1,11.99,12/07/19 19:09,"316 8th St, San Francisco, CA 94016" -297367,Lightning Charging Cable,1,14.95,12/11/19 10:23,"300 Ridge St, Boston, MA 02215" -297368,Apple Airpods Headphones,1,150,12/06/19 12:56,"624 Washington St, Atlanta, GA 30301" -297369,27in FHD Monitor,1,149.99,12/13/19 12:33,"758 1st St, Boston, MA 02215" -297370,AA Batteries (4-pack),3,3.84,12/26/19 21:31,"973 Main St, Portland, OR 97035" -297371,Lightning Charging Cable,1,14.95,12/10/19 20:05,"723 Lake St, New York City, NY 10001" -297372,Bose SoundSport Headphones,1,99.99,12/28/19 10:34,"580 Sunset St, San Francisco, CA 94016" -297373,Wired Headphones,1,11.99,12/19/19 20:22,"999 Maple St, Atlanta, GA 30301" -297374,iPhone,1,700,12/13/19 09:42,"982 North St, San Francisco, CA 94016" -297374,Apple Airpods Headphones,1,150,12/13/19 09:42,"982 North St, San Francisco, CA 94016" -297375,Wired Headphones,1,11.99,12/21/19 19:41,"26 Cherry St, Boston, MA 02215" -297376,27in FHD Monitor,1,149.99,12/03/19 11:38,"542 9th St, New York City, NY 10001" -297377,AAA Batteries (4-pack),1,2.99,12/29/19 20:41,"62 Cherry St, San Francisco, CA 94016" -297378,iPhone,1,700,12/19/19 10:12,"991 4th St, Dallas, TX 75001" -297378,Apple Airpods Headphones,1,150,12/19/19 10:12,"991 4th St, Dallas, TX 75001" -297379,Apple Airpods Headphones,1,150,12/18/19 16:17,"934 12th St, New York City, NY 10001" -297380,27in 4K Gaming Monitor,1,389.99,12/07/19 18:20,"19 Pine St, Portland, OR 97035" -297381,34in Ultrawide Monitor,1,379.99,12/29/19 00:34,"977 Hickory St, Atlanta, GA 30301" -297382,Bose SoundSport Headphones,1,99.99,12/03/19 17:44,"442 Lincoln St, San Francisco, CA 94016" -297383,Apple Airpods Headphones,1,150,12/27/19 19:42,"719 Main St, New York City, NY 10001" -297384,Bose SoundSport Headphones,1,99.99,12/26/19 18:04,"821 Spruce St, San Francisco, CA 94016" -297385,AA Batteries (4-pack),1,3.84,12/24/19 15:25,"435 13th St, Atlanta, GA 30301" -297386,Google Phone,1,600,12/04/19 04:03,"542 Ridge St, San Francisco, CA 94016" -297387,Lightning Charging Cable,1,14.95,12/22/19 19:50,"84 South St, Dallas, TX 75001" -297388,Google Phone,1,600,12/09/19 04:34,"148 Forest St, Austin, TX 73301" -297388,Wired Headphones,1,11.99,12/09/19 04:34,"148 Forest St, Austin, TX 73301" -297389,Flatscreen TV,1,300,12/15/19 00:46,"455 Lake St, San Francisco, CA 94016" -297390,Wired Headphones,1,11.99,12/22/19 22:56,"357 Cherry St, Austin, TX 73301" -297391,27in 4K Gaming Monitor,1,389.99,12/31/19 00:19,"875 River St, San Francisco, CA 94016" -297392,Apple Airpods Headphones,1,150,12/21/19 04:46,"138 7th St, Boston, MA 02215" -297393,Lightning Charging Cable,1,14.95,12/31/19 21:52,"884 Adams St, San Francisco, CA 94016" -297394,Flatscreen TV,1,300,12/16/19 14:18,"140 Elm St, San Francisco, CA 94016" -297395,Lightning Charging Cable,1,14.95,12/11/19 13:46,"715 North St, Boston, MA 02215" -297396,Lightning Charging Cable,1,14.95,12/04/19 18:34,"468 West St, Los Angeles, CA 90001" -297397,iPhone,1,700,12/24/19 08:24,"814 South St, New York City, NY 10001" -297398,AA Batteries (4-pack),1,3.84,12/19/19 12:44,"449 Cedar St, Boston, MA 02215" -297399,Wired Headphones,1,11.99,12/05/19 20:26,"30 Forest St, Atlanta, GA 30301" -297400,Wired Headphones,1,11.99,12/25/19 18:48,"231 Cherry St, Los Angeles, CA 90001" -297401,AAA Batteries (4-pack),1,2.99,12/02/19 10:14,"970 Meadow St, Atlanta, GA 30301" -297402,Lightning Charging Cable,1,14.95,12/10/19 21:53,"937 Ridge St, Dallas, TX 75001" -297403,Wired Headphones,1,11.99,12/30/19 12:29,"687 Jefferson St, San Francisco, CA 94016" -297404,Apple Airpods Headphones,1,150,12/04/19 17:52,"413 5th St, Boston, MA 02215" -297405,27in FHD Monitor,1,149.99,12/18/19 18:59,"329 Johnson St, Seattle, WA 98101" -297406,Lightning Charging Cable,1,14.95,12/29/19 22:09,"474 Jefferson St, Los Angeles, CA 90001" -297407,AAA Batteries (4-pack),1,2.99,12/05/19 14:32,"63 Jackson St, Boston, MA 02215" -297408,AA Batteries (4-pack),1,3.84,12/20/19 11:36,"670 6th St, Los Angeles, CA 90001" -297409,Lightning Charging Cable,1,14.95,12/22/19 19:17,"208 11th St, San Francisco, CA 94016" -297410,AAA Batteries (4-pack),1,2.99,12/19/19 14:27,"692 Elm St, Dallas, TX 75001" -297411,Wired Headphones,1,11.99,12/09/19 17:51,"637 13th St, New York City, NY 10001" -297412,USB-C Charging Cable,1,11.95,12/15/19 18:28,"616 4th St, Los Angeles, CA 90001" -297412,Lightning Charging Cable,1,14.95,12/15/19 18:28,"616 4th St, Los Angeles, CA 90001" -297413,AAA Batteries (4-pack),2,2.99,12/21/19 07:20,"88 Church St, Seattle, WA 98101" -297414,USB-C Charging Cable,1,11.95,12/25/19 20:56,"82 12th St, Seattle, WA 98101" -297415,AAA Batteries (4-pack),2,2.99,12/03/19 20:35,"167 Maple St, San Francisco, CA 94016" -297416,27in 4K Gaming Monitor,1,389.99,12/25/19 20:35,"472 River St, Los Angeles, CA 90001" -297417,AAA Batteries (4-pack),1,2.99,12/06/19 21:53,"8 Church St, Atlanta, GA 30301" -297418,Wired Headphones,2,11.99,12/26/19 21:57,"189 Lincoln St, San Francisco, CA 94016" -297419,Apple Airpods Headphones,1,150,12/29/19 20:04,"637 Washington St, San Francisco, CA 94016" -297420,Wired Headphones,1,11.99,12/01/19 16:52,"918 Dogwood St, Boston, MA 02215" -297421,Apple Airpods Headphones,1,150,12/19/19 11:38,"272 2nd St, Atlanta, GA 30301" -297422,USB-C Charging Cable,1,11.95,12/27/19 13:08,"932 Center St, New York City, NY 10001" -297423,Apple Airpods Headphones,1,150,12/13/19 23:12,"885 West St, Portland, OR 97035" -297424,Lightning Charging Cable,1,14.95,12/19/19 13:38,"801 Meadow St, New York City, NY 10001" -297425,Lightning Charging Cable,1,14.95,12/21/19 22:10,"588 9th St, San Francisco, CA 94016" -297426,USB-C Charging Cable,1,11.95,12/27/19 14:08,"350 5th St, Dallas, TX 75001" -297427,AA Batteries (4-pack),1,3.84,12/16/19 18:19,"577 12th St, Portland, ME 04101" -297428,Lightning Charging Cable,1,14.95,12/26/19 11:56,"967 Jackson St, Portland, ME 04101" -297429,Apple Airpods Headphones,1,150,12/03/19 12:31,"514 Hickory St, Dallas, TX 75001" -297430,Lightning Charging Cable,1,14.95,12/14/19 09:51,"844 Highland St, San Francisco, CA 94016" -297431,Apple Airpods Headphones,1,150,12/13/19 09:07,"587 Washington St, Austin, TX 73301" -297432,USB-C Charging Cable,1,11.95,12/13/19 10:04,"134 Spruce St, New York City, NY 10001" -297433,Wired Headphones,1,11.99,12/31/19 15:52,"416 Main St, Seattle, WA 98101" -297434,Apple Airpods Headphones,1,150,12/13/19 18:40,"633 Meadow St, San Francisco, CA 94016" -297435,AA Batteries (4-pack),2,3.84,12/08/19 10:54,"542 Center St, San Francisco, CA 94016" -297436,Flatscreen TV,1,300,12/31/19 18:03,"926 Lake St, Seattle, WA 98101" -297437,Apple Airpods Headphones,1,150,12/11/19 00:15,"227 4th St, San Francisco, CA 94016" -297438,iPhone,1,700,12/17/19 13:13,"708 Walnut St, New York City, NY 10001" -297438,Lightning Charging Cable,1,14.95,12/17/19 13:13,"708 Walnut St, New York City, NY 10001" -297439,Wired Headphones,1,11.99,12/27/19 18:43,"187 5th St, New York City, NY 10001" -297440,Lightning Charging Cable,1,14.95,12/03/19 11:56,"769 Park St, San Francisco, CA 94016" -297441,Bose SoundSport Headphones,1,99.99,12/24/19 10:04,"722 Maple St, New York City, NY 10001" -297442,AA Batteries (4-pack),1,3.84,12/28/19 12:56,"148 Lake St, Portland, OR 97035" -297443,AAA Batteries (4-pack),1,2.99,12/22/19 04:57,"54 14th St, Atlanta, GA 30301" -297444,Apple Airpods Headphones,1,150,12/22/19 19:52,"414 Highland St, New York City, NY 10001" -297445,27in 4K Gaming Monitor,1,389.99,12/11/19 09:40,"590 10th St, Atlanta, GA 30301" -297446,Flatscreen TV,1,300,12/04/19 17:16,"857 Hill St, Seattle, WA 98101" -297447,Apple Airpods Headphones,1,150,12/29/19 11:22,"628 2nd St, San Francisco, CA 94016" -297448,Lightning Charging Cable,1,14.95,12/05/19 10:45,"961 Willow St, Atlanta, GA 30301" -297449,34in Ultrawide Monitor,1,379.99,12/09/19 12:01,"195 11th St, San Francisco, CA 94016" -297450,34in Ultrawide Monitor,1,379.99,12/12/19 15:45,"762 Elm St, Los Angeles, CA 90001" -297451,AA Batteries (4-pack),1,3.84,12/24/19 17:49,"599 Washington St, Dallas, TX 75001" -297452,Google Phone,1,600,12/29/19 20:46,"451 Highland St, New York City, NY 10001" -297452,USB-C Charging Cable,2,11.95,12/29/19 20:46,"451 Highland St, New York City, NY 10001" -297453,Lightning Charging Cable,1,14.95,12/28/19 15:14,"469 Ridge St, Portland, OR 97035" -297454,Apple Airpods Headphones,1,150,12/23/19 11:27,"801 Pine St, San Francisco, CA 94016" -297455,Lightning Charging Cable,1,14.95,12/02/19 14:51,"972 Center St, New York City, NY 10001" -297456,Lightning Charging Cable,1,14.95,12/25/19 05:57,"570 Highland St, San Francisco, CA 94016" -297457,Google Phone,1,600,12/29/19 20:59,"640 Adams St, San Francisco, CA 94016" -297457,USB-C Charging Cable,2,11.95,12/29/19 20:59,"640 Adams St, San Francisco, CA 94016" -297458,USB-C Charging Cable,1,11.95,12/13/19 18:12,"660 Lincoln St, San Francisco, CA 94016" -297459,AA Batteries (4-pack),1,3.84,12/04/19 10:58,"619 13th St, San Francisco, CA 94016" -297460,USB-C Charging Cable,1,11.95,12/19/19 11:28,"602 Adams St, San Francisco, CA 94016" -297461,AA Batteries (4-pack),1,3.84,12/23/19 20:36,"86 Jefferson St, Dallas, TX 75001" -297462,AA Batteries (4-pack),1,3.84,12/15/19 15:41,"590 Main St, Atlanta, GA 30301" -297463,Lightning Charging Cable,1,14.95,12/18/19 13:01,"960 Hill St, Los Angeles, CA 90001" -297464,27in 4K Gaming Monitor,1,389.99,12/07/19 19:55,"955 Cherry St, San Francisco, CA 94016" -297465,iPhone,1,700,12/27/19 22:48,"550 Lakeview St, San Francisco, CA 94016" -297466,Wired Headphones,2,11.99,12/02/19 22:58,"644 Jefferson St, San Francisco, CA 94016" -297467,20in Monitor,1,109.99,12/27/19 17:07,"53 Highland St, Dallas, TX 75001" -297468,AA Batteries (4-pack),1,3.84,12/14/19 21:29,"880 Sunset St, Los Angeles, CA 90001" -297469,LG Washing Machine,1,600.0,12/28/19 17:06,"26 Dogwood St, Los Angeles, CA 90001" -297470,AAA Batteries (4-pack),1,2.99,12/21/19 23:47,"132 Center St, Los Angeles, CA 90001" -297471,27in FHD Monitor,1,149.99,12/05/19 21:20,"9 Park St, Portland, OR 97035" -297472,USB-C Charging Cable,1,11.95,12/27/19 14:12,"789 Madison St, Boston, MA 02215" -297473,AA Batteries (4-pack),1,3.84,12/01/19 13:29,"803 Chestnut St, Portland, OR 97035" -297474,Macbook Pro Laptop,1,1700,12/22/19 12:21,"581 Jackson St, New York City, NY 10001" -297475,20in Monitor,1,109.99,12/24/19 14:14,"389 Cedar St, Austin, TX 73301" -297476,Bose SoundSport Headphones,1,99.99,12/29/19 13:10,"403 Ridge St, Seattle, WA 98101" -297477,Apple Airpods Headphones,1,150,12/02/19 13:25,"452 Madison St, San Francisco, CA 94016" -297478,27in FHD Monitor,1,149.99,12/05/19 19:06,"168 Meadow St, Boston, MA 02215" -297479,AA Batteries (4-pack),1,3.84,12/10/19 16:33,"520 Jackson St, Seattle, WA 98101" -297480,Bose SoundSport Headphones,1,99.99,12/26/19 10:59,"111 Maple St, San Francisco, CA 94016" -297481,AA Batteries (4-pack),1,3.84,12/31/19 23:42,"82 Hill St, Dallas, TX 75001" -297482,Wired Headphones,2,11.99,12/11/19 13:04,"971 Maple St, Boston, MA 02215" -297483,iPhone,1,700,12/04/19 14:55,"705 Dogwood St, Boston, MA 02215" -297484,Lightning Charging Cable,1,14.95,12/12/19 08:50,"991 8th St, Los Angeles, CA 90001" -297485,27in FHD Monitor,1,149.99,12/02/19 14:42,"521 Ridge St, San Francisco, CA 94016" -297486,Lightning Charging Cable,1,14.95,12/22/19 19:00,"535 Hill St, San Francisco, CA 94016" -297487,AA Batteries (4-pack),2,3.84,12/31/19 18:17,"404 11th St, Portland, OR 97035" -297488,Macbook Pro Laptop,1,1700,12/07/19 14:38,"328 Ridge St, San Francisco, CA 94016" -297489,AAA Batteries (4-pack),1,2.99,12/16/19 13:56,"470 2nd St, New York City, NY 10001" -297490,Lightning Charging Cable,1,14.95,12/23/19 19:17,"284 Highland St, Dallas, TX 75001" -297491,Lightning Charging Cable,1,14.95,12/17/19 17:58,"470 9th St, San Francisco, CA 94016" -297492,ThinkPad Laptop,1,999.99,12/20/19 10:16,"999 1st St, New York City, NY 10001" -297493,AA Batteries (4-pack),2,3.84,12/23/19 07:28,"485 Chestnut St, Dallas, TX 75001" -297494,27in 4K Gaming Monitor,1,389.99,12/20/19 05:40,"946 Dogwood St, Boston, MA 02215" -297495,Lightning Charging Cable,1,14.95,12/21/19 21:07,"997 Maple St, New York City, NY 10001" -297496,Macbook Pro Laptop,1,1700,12/15/19 10:49,"645 Lincoln St, Seattle, WA 98101" -297497,27in FHD Monitor,1,149.99,12/06/19 21:28,"663 4th St, San Francisco, CA 94016" -297498,Apple Airpods Headphones,1,150,12/09/19 07:36,"269 10th St, New York City, NY 10001" -297499,Apple Airpods Headphones,1,150,12/30/19 00:03,"374 Park St, Boston, MA 02215" -297500,AA Batteries (4-pack),1,3.84,12/31/19 14:24,"637 Main St, Los Angeles, CA 90001" -297501,Bose SoundSport Headphones,1,99.99,12/03/19 10:25,"173 Lakeview St, Boston, MA 02215" -297502,USB-C Charging Cable,1,11.95,12/25/19 22:31,"661 Forest St, Portland, OR 97035" -297503,Lightning Charging Cable,1,14.95,12/23/19 22:02,"631 Willow St, New York City, NY 10001" -297504,USB-C Charging Cable,1,11.95,12/08/19 13:29,"679 North St, San Francisco, CA 94016" -297505,Wired Headphones,2,11.99,12/19/19 21:41,"578 Washington St, San Francisco, CA 94016" -297506,Flatscreen TV,1,300,12/14/19 10:56,"732 6th St, New York City, NY 10001" -297507,Bose SoundSport Headphones,1,99.99,12/13/19 17:54,"59 Center St, Los Angeles, CA 90001" -297508,AAA Batteries (4-pack),1,2.99,12/25/19 12:54,"564 11th St, New York City, NY 10001" -297509,Lightning Charging Cable,1,14.95,12/16/19 00:32,"980 Maple St, Los Angeles, CA 90001" -297510,USB-C Charging Cable,1,11.95,12/25/19 18:39,"73 North St, Seattle, WA 98101" -297511,Apple Airpods Headphones,1,150,12/06/19 16:42,"97 North St, Portland, OR 97035" -297512,USB-C Charging Cable,1,11.95,12/03/19 12:50,"336 13th St, Boston, MA 02215" -297513,Vareebadd Phone,1,400,12/24/19 15:00,"961 South St, Seattle, WA 98101" -297514,AAA Batteries (4-pack),1,2.99,12/04/19 19:04,"751 14th St, Seattle, WA 98101" -297515,AA Batteries (4-pack),1,3.84,12/03/19 12:03,"510 Highland St, New York City, NY 10001" -297516,Apple Airpods Headphones,1,150,12/26/19 10:14,"887 Elm St, Austin, TX 73301" -297517,Lightning Charging Cable,1,14.95,12/03/19 12:29,"768 Park St, Dallas, TX 75001" -297518,AA Batteries (4-pack),1,3.84,12/15/19 19:27,"804 5th St, San Francisco, CA 94016" -297519,Lightning Charging Cable,1,14.95,12/02/19 09:18,"899 River St, Boston, MA 02215" -297520,Lightning Charging Cable,1,14.95,12/22/19 11:25,"241 11th St, Los Angeles, CA 90001" -297521,Lightning Charging Cable,1,14.95,12/29/19 14:02,"319 Meadow St, Seattle, WA 98101" -297522,Lightning Charging Cable,1,14.95,12/21/19 13:14,"485 Center St, Los Angeles, CA 90001" -297523,27in 4K Gaming Monitor,1,389.99,12/03/19 18:17,"926 West St, Los Angeles, CA 90001" -297524,AAA Batteries (4-pack),2,2.99,12/15/19 09:28,"101 West St, Seattle, WA 98101" -297525,AA Batteries (4-pack),1,3.84,12/15/19 09:28,"468 Maple St, New York City, NY 10001" -297526,Bose SoundSport Headphones,1,99.99,12/01/19 16:35,"146 Center St, San Francisco, CA 94016" -297527,Bose SoundSport Headphones,1,99.99,12/20/19 03:31,"844 Jackson St, San Francisco, CA 94016" -297528,Lightning Charging Cable,1,14.95,12/05/19 10:38,"213 Elm St, Boston, MA 02215" -297529,20in Monitor,1,109.99,12/13/19 14:11,"527 Washington St, Dallas, TX 75001" -297530,Apple Airpods Headphones,1,150,12/02/19 15:13,"98 Spruce St, New York City, NY 10001" -297531,iPhone,1,700,12/19/19 06:57,"161 Walnut St, Boston, MA 02215" -297532,Lightning Charging Cable,1,14.95,12/22/19 20:44,"491 Highland St, Boston, MA 02215" -297533,Apple Airpods Headphones,1,150,12/14/19 12:45,"590 Washington St, Atlanta, GA 30301" -297534,USB-C Charging Cable,1,11.95,12/07/19 06:39,"585 Jackson St, Los Angeles, CA 90001" -297535,USB-C Charging Cable,2,11.95,12/07/19 18:00,"253 South St, San Francisco, CA 94016" -297536,USB-C Charging Cable,1,11.95,12/25/19 22:01,"756 Forest St, Boston, MA 02215" -297537,Apple Airpods Headphones,1,150,12/23/19 19:24,"61 Wilson St, Portland, OR 97035" -297538,iPhone,1,700,12/16/19 16:21,"72 Sunset St, Atlanta, GA 30301" -297538,Lightning Charging Cable,1,14.95,12/16/19 16:21,"72 Sunset St, Atlanta, GA 30301" -297539,Bose SoundSport Headphones,1,99.99,12/29/19 13:28,"633 Church St, Dallas, TX 75001" -297540,Lightning Charging Cable,1,14.95,12/17/19 22:29,"968 Hill St, Los Angeles, CA 90001" -297541,AAA Batteries (4-pack),1,2.99,12/20/19 10:24,"538 Hickory St, San Francisco, CA 94016" -297542,AAA Batteries (4-pack),3,2.99,12/14/19 14:56,"252 Dogwood St, San Francisco, CA 94016" -297543,34in Ultrawide Monitor,1,379.99,12/15/19 17:10,"916 7th St, Dallas, TX 75001" -297544,AAA Batteries (4-pack),2,2.99,12/09/19 19:26,"520 9th St, San Francisco, CA 94016" -297545,AAA Batteries (4-pack),2,2.99,12/26/19 16:15,"193 Chestnut St, Seattle, WA 98101" -297546,iPhone,1,700,12/12/19 18:28,"11 Jefferson St, Boston, MA 02215" -297547,27in 4K Gaming Monitor,1,389.99,12/01/19 13:25,"531 Meadow St, Seattle, WA 98101" -297548,USB-C Charging Cable,1,11.95,12/27/19 23:04,"24 Pine St, New York City, NY 10001" -297549,AA Batteries (4-pack),1,3.84,12/26/19 08:53,"942 Lakeview St, Dallas, TX 75001" -297550,AA Batteries (4-pack),1,3.84,12/31/19 03:02,"591 Jackson St, Dallas, TX 75001" -297551,iPhone,1,700,12/19/19 13:49,"840 12th St, Atlanta, GA 30301" -297552,Apple Airpods Headphones,1,150,12/23/19 13:34,"662 Center St, Boston, MA 02215" -297553,27in FHD Monitor,1,149.99,12/24/19 09:02,"784 Center St, Los Angeles, CA 90001" -297554,Vareebadd Phone,1,400,12/03/19 15:32,"275 11th St, Dallas, TX 75001" -297554,USB-C Charging Cable,1,11.95,12/03/19 15:32,"275 11th St, Dallas, TX 75001" -297554,iPhone,1,700,12/03/19 15:32,"275 11th St, Dallas, TX 75001" -297555,Bose SoundSport Headphones,1,99.99,12/17/19 15:28,"540 8th St, Los Angeles, CA 90001" -297556,Bose SoundSport Headphones,1,99.99,12/26/19 15:07,"618 Elm St, San Francisco, CA 94016" -297557,USB-C Charging Cable,1,11.95,12/16/19 16:34,"978 10th St, Boston, MA 02215" -297558,Apple Airpods Headphones,1,150,12/13/19 18:44,"815 Maple St, Seattle, WA 98101" -297559,USB-C Charging Cable,1,11.95,12/08/19 11:57,"417 8th St, New York City, NY 10001" -297560,AA Batteries (4-pack),1,3.84,12/21/19 13:28,"917 Main St, Boston, MA 02215" -297561,AA Batteries (4-pack),1,3.84,12/14/19 13:48,"65 South St, Seattle, WA 98101" -297562,Lightning Charging Cable,2,14.95,12/10/19 00:09,"610 Hickory St, Boston, MA 02215" -297563,Vareebadd Phone,1,400,12/05/19 21:35,"928 Jefferson St, Los Angeles, CA 90001" -297564,27in 4K Gaming Monitor,1,389.99,12/16/19 12:19,"83 Johnson St, Portland, OR 97035" -297565,Google Phone,1,600,12/04/19 18:56,"608 Walnut St, Dallas, TX 75001" -297565,Bose SoundSport Headphones,1,99.99,12/04/19 18:56,"608 Walnut St, Dallas, TX 75001" -297566,Flatscreen TV,1,300,12/08/19 21:00,"634 Cedar St, Austin, TX 73301" -297567,34in Ultrawide Monitor,1,379.99,12/08/19 13:33,"442 Dogwood St, Dallas, TX 75001" -297568,AA Batteries (4-pack),2,3.84,12/25/19 00:15,"742 North St, Boston, MA 02215" -297569,iPhone,1,700,12/12/19 12:21,"899 11th St, Boston, MA 02215" -297569,Lightning Charging Cable,1,14.95,12/12/19 12:21,"899 11th St, Boston, MA 02215" -297570,Wired Headphones,1,11.99,12/11/19 23:57,"165 10th St, Portland, OR 97035" -297571,Lightning Charging Cable,1,14.95,12/25/19 08:54,"700 Church St, San Francisco, CA 94016" -297572,USB-C Charging Cable,1,11.95,12/31/19 09:31,"880 Madison St, Austin, TX 73301" -297573,USB-C Charging Cable,1,11.95,12/04/19 08:34,"366 Cedar St, Boston, MA 02215" -297573,Lightning Charging Cable,1,14.95,12/04/19 08:34,"366 Cedar St, Boston, MA 02215" -297574,Vareebadd Phone,1,400,12/18/19 13:51,"519 Lake St, San Francisco, CA 94016" -297575,27in 4K Gaming Monitor,1,389.99,12/12/19 21:37,"142 Chestnut St, New York City, NY 10001" -297576,iPhone,1,700,12/24/19 13:31,"587 North St, New York City, NY 10001" -297576,Lightning Charging Cable,1,14.95,12/24/19 13:31,"587 North St, New York City, NY 10001" -297577,Google Phone,1,600,12/01/19 11:14,"90 Walnut St, San Francisco, CA 94016" -297578,USB-C Charging Cable,1,11.95,12/07/19 19:14,"714 Hickory St, San Francisco, CA 94016" -297579,Lightning Charging Cable,1,14.95,12/23/19 14:31,"653 9th St, San Francisco, CA 94016" -297580,Apple Airpods Headphones,1,150,12/12/19 19:57,"547 Jefferson St, Atlanta, GA 30301" -297581,27in 4K Gaming Monitor,1,389.99,12/13/19 12:36,"317 11th St, New York City, NY 10001" -297582,Lightning Charging Cable,1,14.95,12/18/19 00:54,"888 11th St, New York City, NY 10001" -297583,AA Batteries (4-pack),1,3.84,12/05/19 16:26,"972 10th St, Boston, MA 02215" -297584,USB-C Charging Cable,1,11.95,12/22/19 23:02,"84 Jefferson St, Austin, TX 73301" -297585,AA Batteries (4-pack),1,3.84,12/21/19 19:27,"508 Meadow St, New York City, NY 10001" -297586,Wired Headphones,1,11.99,12/29/19 20:17,"473 9th St, San Francisco, CA 94016" -297587,Bose SoundSport Headphones,1,99.99,12/12/19 11:46,"903 Main St, Boston, MA 02215" -297588,AAA Batteries (4-pack),1,2.99,12/23/19 21:47,"390 Maple St, Los Angeles, CA 90001" -297589,AA Batteries (4-pack),4,3.84,12/07/19 13:55,"552 1st St, Atlanta, GA 30301" -297590,AA Batteries (4-pack),2,3.84,12/01/19 17:19,"813 Park St, San Francisco, CA 94016" -297591,Macbook Pro Laptop,1,1700,12/23/19 11:46,"127 Church St, New York City, NY 10001" -297592,iPhone,1,700,12/01/19 11:22,"76 River St, Los Angeles, CA 90001" -297592,Lightning Charging Cable,1,14.95,12/01/19 11:22,"76 River St, Los Angeles, CA 90001" -297593,AAA Batteries (4-pack),1,2.99,12/10/19 10:37,"843 Jackson St, Atlanta, GA 30301" -297594,USB-C Charging Cable,2,11.95,12/09/19 15:29,"169 Washington St, San Francisco, CA 94016" -297595,Lightning Charging Cable,1,14.95,12/26/19 10:31,"881 Hickory St, Dallas, TX 75001" -297596,Flatscreen TV,1,300,12/10/19 18:45,"301 13th St, Los Angeles, CA 90001" -297597,Apple Airpods Headphones,1,150,12/12/19 16:26,"422 Johnson St, Atlanta, GA 30301" -297598,ThinkPad Laptop,1,999.99,12/05/19 00:04,"188 Forest St, Seattle, WA 98101" -297599,AAA Batteries (4-pack),2,2.99,12/19/19 13:07,"166 Jackson St, New York City, NY 10001" -297600,Flatscreen TV,1,300,12/05/19 18:51,"854 Main St, San Francisco, CA 94016" -297601,Bose SoundSport Headphones,1,99.99,12/23/19 17:52,"631 Main St, Los Angeles, CA 90001" -297602,Lightning Charging Cable,1,14.95,12/21/19 17:18,"441 7th St, San Francisco, CA 94016" -297603,Bose SoundSport Headphones,1,99.99,12/08/19 01:20,"546 Jefferson St, Los Angeles, CA 90001" -297604,Lightning Charging Cable,1,14.95,12/26/19 16:46,"659 12th St, Austin, TX 73301" -297605,Lightning Charging Cable,1,14.95,12/22/19 11:47,"936 Willow St, San Francisco, CA 94016" -297606,AA Batteries (4-pack),3,3.84,12/04/19 06:28,"175 Pine St, Portland, OR 97035" -297607,AA Batteries (4-pack),1,3.84,12/02/19 19:06,"211 Willow St, Atlanta, GA 30301" -297608,Bose SoundSport Headphones,1,99.99,12/23/19 18:52,"258 West St, Seattle, WA 98101" -297609,Google Phone,1,600,12/09/19 19:23,"252 14th St, Austin, TX 73301" -297610,USB-C Charging Cable,1,11.95,12/17/19 06:58,"638 Jefferson St, Los Angeles, CA 90001" -297611,Bose SoundSport Headphones,1,99.99,12/31/19 16:33,"752 Park St, New York City, NY 10001" -297612,Bose SoundSport Headphones,1,99.99,12/23/19 19:00,"54 7th St, San Francisco, CA 94016" -297613,20in Monitor,1,109.99,12/07/19 15:30,"642 Pine St, Los Angeles, CA 90001" -297614,27in FHD Monitor,1,149.99,12/16/19 00:05,"151 Wilson St, Boston, MA 02215" -297615,AAA Batteries (4-pack),2,2.99,12/19/19 20:17,"884 North St, Seattle, WA 98101" -297616,Macbook Pro Laptop,1,1700,12/14/19 22:39,"748 Elm St, San Francisco, CA 94016" -297617,ThinkPad Laptop,1,999.99,12/25/19 17:30,"759 Ridge St, Portland, OR 97035" -297618,AAA Batteries (4-pack),1,2.99,12/28/19 12:59,"606 Chestnut St, Austin, TX 73301" -297619,AAA Batteries (4-pack),1,2.99,12/10/19 19:48,"53 Jackson St, New York City, NY 10001" -297620,Macbook Pro Laptop,1,1700,12/23/19 15:17,"558 2nd St, New York City, NY 10001" -297621,AA Batteries (4-pack),1,3.84,12/20/19 15:41,"355 Ridge St, Atlanta, GA 30301" -297622,Apple Airpods Headphones,1,150,12/17/19 12:04,"95 Washington St, San Francisco, CA 94016" -297623,USB-C Charging Cable,1,11.95,12/02/19 22:26,"377 Elm St, San Francisco, CA 94016" -297624,AAA Batteries (4-pack),1,2.99,12/11/19 15:09,"630 Chestnut St, Dallas, TX 75001" -297625,Lightning Charging Cable,1,14.95,12/07/19 17:48,"459 Jefferson St, Seattle, WA 98101" -297626,AAA Batteries (4-pack),1,2.99,12/28/19 08:45,"511 Johnson St, San Francisco, CA 94016" -297627,Lightning Charging Cable,1,14.95,12/26/19 17:11,"319 Spruce St, San Francisco, CA 94016" -297628,AA Batteries (4-pack),1,3.84,12/20/19 18:57,"962 South St, Seattle, WA 98101" -297629,Wired Headphones,2,11.99,12/20/19 22:03,"616 Dogwood St, Boston, MA 02215" -297630,Google Phone,1,600,12/01/19 09:27,"952 Jackson St, Los Angeles, CA 90001" -297630,Wired Headphones,1,11.99,12/01/19 09:27,"952 Jackson St, Los Angeles, CA 90001" -297631,Macbook Pro Laptop,1,1700,12/09/19 08:09,"526 13th St, New York City, NY 10001" -297632,27in 4K Gaming Monitor,1,389.99,12/17/19 17:23,"965 6th St, Boston, MA 02215" -297633,27in 4K Gaming Monitor,1,389.99,12/04/19 14:46,"193 Meadow St, Boston, MA 02215" -297634,27in 4K Gaming Monitor,1,389.99,12/13/19 11:43,"181 Adams St, Atlanta, GA 30301" -297635,Wired Headphones,1,11.99,12/06/19 09:50,"199 8th St, San Francisco, CA 94016" -297636,Vareebadd Phone,1,400,12/10/19 20:18,"415 Cherry St, Los Angeles, CA 90001" -297637,ThinkPad Laptop,1,999.99,12/16/19 13:23,"454 Lake St, Dallas, TX 75001" -297638,Flatscreen TV,1,300,12/08/19 22:08,"27 14th St, San Francisco, CA 94016" -297639,Bose SoundSport Headphones,2,99.99,12/25/19 14:14,"206 Forest St, New York City, NY 10001" -297640,Bose SoundSport Headphones,1,99.99,12/03/19 11:15,"763 Dogwood St, San Francisco, CA 94016" -297640,27in FHD Monitor,1,149.99,12/03/19 11:15,"763 Dogwood St, San Francisco, CA 94016" -297641,Apple Airpods Headphones,1,150,12/29/19 13:41,"21 Jackson St, San Francisco, CA 94016" -297642,USB-C Charging Cable,1,11.95,12/11/19 09:03,"721 Cedar St, Atlanta, GA 30301" -297643,ThinkPad Laptop,1,999.99,12/24/19 19:00,"27 Maple St, Boston, MA 02215" -297644,USB-C Charging Cable,1,11.95,12/28/19 00:14,"778 West St, Atlanta, GA 30301" -297645,Lightning Charging Cable,1,14.95,12/01/19 18:01,"952 Lake St, San Francisco, CA 94016" -297646,Bose SoundSport Headphones,1,99.99,12/22/19 10:00,"522 7th St, New York City, NY 10001" -297647,AA Batteries (4-pack),1,3.84,12/06/19 13:16,"289 Main St, San Francisco, CA 94016" -297648,iPhone,1,700,12/21/19 00:06,"248 Hill St, New York City, NY 10001" -297649,Wired Headphones,1,11.99,12/21/19 13:12,"811 Johnson St, San Francisco, CA 94016" -297650,AAA Batteries (4-pack),1,2.99,12/22/19 23:28,"752 South St, Boston, MA 02215" -297651,27in 4K Gaming Monitor,1,389.99,12/16/19 21:20,"552 6th St, Los Angeles, CA 90001" -297652,Wired Headphones,1,11.99,12/06/19 22:49,"445 North St, Dallas, TX 75001" -297653,AA Batteries (4-pack),2,3.84,12/16/19 12:59,"119 Adams St, Austin, TX 73301" -297654,AA Batteries (4-pack),2,3.84,12/07/19 17:27,"375 Pine St, Dallas, TX 75001" -297655,Wired Headphones,1,11.99,12/26/19 19:44,"890 Forest St, Los Angeles, CA 90001" -297656,Lightning Charging Cable,1,14.95,12/27/19 20:28,"367 Adams St, Los Angeles, CA 90001" -297657,Flatscreen TV,1,300,12/01/19 15:20,"778 9th St, San Francisco, CA 94016" -297658,27in 4K Gaming Monitor,1,389.99,12/27/19 17:05,"628 Pine St, Dallas, TX 75001" -297659,AA Batteries (4-pack),1,3.84,12/17/19 16:26,"354 Jackson St, Dallas, TX 75001" -297660,Wired Headphones,1,11.99,12/09/19 19:57,"588 River St, San Francisco, CA 94016" -297661,AAA Batteries (4-pack),1,2.99,12/03/19 13:19,"250 11th St, San Francisco, CA 94016" -297662,AAA Batteries (4-pack),1,2.99,12/11/19 13:29,"134 7th St, San Francisco, CA 94016" -297663,Apple Airpods Headphones,1,150,12/23/19 23:19,"348 North St, New York City, NY 10001" -297664,Lightning Charging Cable,1,14.95,12/30/19 19:52,"32 Pine St, Portland, OR 97035" -297665,AA Batteries (4-pack),2,3.84,12/06/19 01:39,"755 Highland St, Boston, MA 02215" -297666,27in 4K Gaming Monitor,1,389.99,12/20/19 10:41,"303 Wilson St, Dallas, TX 75001" -297667,AAA Batteries (4-pack),1,2.99,12/02/19 14:49,"193 Cedar St, Portland, OR 97035" -297668,Lightning Charging Cable,1,14.95,12/08/19 10:17,"331 13th St, Austin, TX 73301" -297669,Macbook Pro Laptop,1,1700,12/04/19 10:17,"987 Sunset St, Dallas, TX 75001" -297670,Lightning Charging Cable,1,14.95,12/04/19 23:04,"532 Church St, Atlanta, GA 30301" -297671,34in Ultrawide Monitor,1,379.99,12/17/19 10:59,"736 Madison St, Portland, OR 97035" -297672,AAA Batteries (4-pack),2,2.99,12/21/19 21:13,"663 Sunset St, Austin, TX 73301" -297673,34in Ultrawide Monitor,1,379.99,12/02/19 19:52,"162 Willow St, Seattle, WA 98101" -297674,AAA Batteries (4-pack),1,2.99,12/31/19 23:53,"425 Lake St, Portland, OR 97035" -297675,AAA Batteries (4-pack),1,2.99,12/30/19 12:35,"16 Hickory St, Austin, TX 73301" -297676,Macbook Pro Laptop,1,1700,12/02/19 22:47,"161 Sunset St, Los Angeles, CA 90001" -297677,USB-C Charging Cable,1,11.95,12/10/19 11:36,"655 Wilson St, San Francisco, CA 94016" -297678,Lightning Charging Cable,2,14.95,12/12/19 05:50,"945 Madison St, Los Angeles, CA 90001" -297679,Bose SoundSport Headphones,1,99.99,12/26/19 12:15,"323 Sunset St, Boston, MA 02215" -297680,Macbook Pro Laptop,1,1700,12/11/19 14:04,"804 Lincoln St, San Francisco, CA 94016" -297681,USB-C Charging Cable,1,11.95,12/19/19 22:09,"718 13th St, Austin, TX 73301" -297682,Flatscreen TV,1,300,12/13/19 16:40,"790 11th St, Seattle, WA 98101" -297683,Wired Headphones,1,11.99,12/03/19 15:26,"540 10th St, Portland, OR 97035" -297684,AAA Batteries (4-pack),1,2.99,12/25/19 22:55,"589 Cherry St, Boston, MA 02215" -297685,AAA Batteries (4-pack),1,2.99,12/17/19 15:28,"300 Dogwood St, Portland, ME 04101" -,,,,, -297686,AAA Batteries (4-pack),1,2.99,12/27/19 00:25,"183 Madison St, Portland, OR 97035" -297687,Bose SoundSport Headphones,1,99.99,12/11/19 13:24,"984 Meadow St, New York City, NY 10001" -297688,Lightning Charging Cable,1,14.95,12/06/19 16:20,"462 14th St, New York City, NY 10001" -297689,AAA Batteries (4-pack),1,2.99,12/12/19 21:50,"774 9th St, San Francisco, CA 94016" -297690,USB-C Charging Cable,1,11.95,12/17/19 21:34,"231 Washington St, New York City, NY 10001" -297691,Apple Airpods Headphones,1,150,12/29/19 11:08,"899 10th St, San Francisco, CA 94016" -297692,Apple Airpods Headphones,1,150,12/11/19 21:49,"158 8th St, Atlanta, GA 30301" -297693,34in Ultrawide Monitor,1,379.99,12/27/19 14:19,"903 11th St, New York City, NY 10001" -297694,Lightning Charging Cable,1,14.95,12/12/19 17:15,"410 Chestnut St, New York City, NY 10001" -297695,Bose SoundSport Headphones,1,99.99,12/08/19 20:37,"244 6th St, Atlanta, GA 30301" -297696,20in Monitor,1,109.99,12/10/19 17:22,"768 8th St, Dallas, TX 75001" -297697,AAA Batteries (4-pack),1,2.99,12/30/19 17:58,"52 Jackson St, Los Angeles, CA 90001" -297698,USB-C Charging Cable,2,11.95,12/20/19 23:36,"420 7th St, San Francisco, CA 94016" -297699,USB-C Charging Cable,1,11.95,12/09/19 12:15,"122 Park St, Austin, TX 73301" -297700,34in Ultrawide Monitor,1,379.99,12/29/19 15:51,"486 Chestnut St, San Francisco, CA 94016" -297701,AA Batteries (4-pack),3,3.84,12/05/19 23:04,"716 North St, New York City, NY 10001" -297702,AAA Batteries (4-pack),1,2.99,12/01/19 12:33,"20 Lakeview St, Portland, ME 04101" -297703,Lightning Charging Cable,1,14.95,12/25/19 22:31,"284 Walnut St, New York City, NY 10001" -297704,USB-C Charging Cable,1,11.95,12/01/19 17:37,"41 Washington St, Austin, TX 73301" -297705,Apple Airpods Headphones,1,150,12/22/19 14:36,"682 11th St, Boston, MA 02215" -297706,iPhone,1,700,12/31/19 16:14,"246 Hill St, Atlanta, GA 30301" -297706,Lightning Charging Cable,1,14.95,12/31/19 16:14,"246 Hill St, Atlanta, GA 30301" -297707,AA Batteries (4-pack),1,3.84,12/08/19 17:37,"182 2nd St, San Francisco, CA 94016" -297708,Macbook Pro Laptop,1,1700,12/07/19 12:23,"124 Elm St, San Francisco, CA 94016" -297709,Wired Headphones,1,11.99,12/22/19 14:08,"526 5th St, Seattle, WA 98101" -297710,27in FHD Monitor,1,149.99,12/08/19 17:52,"739 14th St, Atlanta, GA 30301" -297711,ThinkPad Laptop,1,999.99,12/01/19 10:46,"961 4th St, Los Angeles, CA 90001" -297712,Apple Airpods Headphones,1,150,12/10/19 08:01,"84 Hill St, New York City, NY 10001" -297713,Apple Airpods Headphones,1,150,12/23/19 02:05,"405 Johnson St, Dallas, TX 75001" -297714,USB-C Charging Cable,1,11.95,12/01/19 12:42,"552 1st St, Los Angeles, CA 90001" -297715,USB-C Charging Cable,1,11.95,12/31/19 14:29,"421 Johnson St, San Francisco, CA 94016" -297716,USB-C Charging Cable,1,11.95,12/03/19 17:49,"79 North St, New York City, NY 10001" -297717,Apple Airpods Headphones,1,150,12/17/19 21:17,"151 12th St, San Francisco, CA 94016" -297718,AAA Batteries (4-pack),1,2.99,12/28/19 14:21,"202 Center St, San Francisco, CA 94016" -297719,Macbook Pro Laptop,1,1700,12/01/19 14:29,"927 9th St, San Francisco, CA 94016" -297720,Bose SoundSport Headphones,1,99.99,12/19/19 12:09,"588 Center St, Dallas, TX 75001" -297721,20in Monitor,1,109.99,12/20/19 17:01,"409 13th St, Seattle, WA 98101" -297722,USB-C Charging Cable,1,11.95,12/23/19 23:26,"71 1st St, New York City, NY 10001" -297723,Wired Headphones,1,11.99,12/28/19 15:55,"612 Dogwood St, Dallas, TX 75001" -297724,Bose SoundSport Headphones,1,99.99,12/11/19 11:39,"753 Church St, Los Angeles, CA 90001" -297725,Apple Airpods Headphones,1,150,12/16/19 10:26,"637 Johnson St, San Francisco, CA 94016" -297726,Vareebadd Phone,1,400,12/27/19 12:12,"235 11th St, New York City, NY 10001" -297727,USB-C Charging Cable,2,11.95,12/10/19 18:32,"994 Forest St, Dallas, TX 75001" -297728,20in Monitor,1,109.99,12/29/19 09:46,"211 Spruce St, Boston, MA 02215" -297729,USB-C Charging Cable,1,11.95,12/18/19 12:46,"995 West St, San Francisco, CA 94016" -297730,Vareebadd Phone,1,400,12/18/19 11:00,"399 South St, San Francisco, CA 94016" -297730,USB-C Charging Cable,1,11.95,12/18/19 11:00,"399 South St, San Francisco, CA 94016" -297731,ThinkPad Laptop,1,999.99,12/20/19 17:52,"269 Cedar St, Los Angeles, CA 90001" -297732,Lightning Charging Cable,1,14.95,12/25/19 08:26,"997 Center St, New York City, NY 10001" -297733,Wired Headphones,1,11.99,12/02/19 20:18,"506 Church St, New York City, NY 10001" -297734,27in FHD Monitor,1,149.99,12/08/19 19:43,"86 Park St, San Francisco, CA 94016" -297735,iPhone,1,700,12/23/19 21:39,"682 Elm St, Los Angeles, CA 90001" -297736,ThinkPad Laptop,1,999.99,12/31/19 00:10,"370 Cedar St, New York City, NY 10001" -297737,AAA Batteries (4-pack),1,2.99,12/29/19 07:13,"10 Park St, Boston, MA 02215" -297738,27in FHD Monitor,1,149.99,12/04/19 11:39,"443 Willow St, Austin, TX 73301" -297739,20in Monitor,1,109.99,12/23/19 17:45,"825 Meadow St, Atlanta, GA 30301" -297740,27in 4K Gaming Monitor,1,389.99,12/16/19 14:12,"490 Walnut St, Los Angeles, CA 90001" -297741,USB-C Charging Cable,2,11.95,12/23/19 17:21,"103 Church St, Boston, MA 02215" -297742,Bose SoundSport Headphones,1,99.99,12/02/19 09:32,"346 Maple St, Los Angeles, CA 90001" -297743,AA Batteries (4-pack),1,3.84,12/07/19 03:14,"691 Dogwood St, Los Angeles, CA 90001" -297744,Flatscreen TV,1,300,12/21/19 17:02,"435 Maple St, Portland, OR 97035" -297745,Macbook Pro Laptop,1,1700,12/30/19 00:51,"646 2nd St, San Francisco, CA 94016" -297746,USB-C Charging Cable,1,11.95,12/02/19 07:03,"36 14th St, Boston, MA 02215" -297747,Wired Headphones,1,11.99,12/29/19 11:05,"924 Jefferson St, Portland, OR 97035" -297748,Vareebadd Phone,1,400,12/25/19 10:47,"135 10th St, Los Angeles, CA 90001" -297749,USB-C Charging Cable,1,11.95,12/02/19 17:05,"887 Hickory St, New York City, NY 10001" -297750,AAA Batteries (4-pack),1,2.99,12/29/19 22:27,"889 Chestnut St, Atlanta, GA 30301" -297751,AAA Batteries (4-pack),2,2.99,12/16/19 13:10,"672 Maple St, Boston, MA 02215" -297752,AAA Batteries (4-pack),1,2.99,12/03/19 16:23,"898 Jackson St, San Francisco, CA 94016" -297753,AA Batteries (4-pack),1,3.84,12/30/19 17:11,"443 River St, Austin, TX 73301" -297754,USB-C Charging Cable,2,11.95,12/28/19 18:34,"741 Lakeview St, Dallas, TX 75001" -297755,USB-C Charging Cable,1,11.95,12/30/19 18:51,"79 Spruce St, Los Angeles, CA 90001" -297756,Flatscreen TV,1,300,12/26/19 18:19,"468 12th St, Austin, TX 73301" -297757,Wired Headphones,1,11.99,12/12/19 17:24,"519 1st St, San Francisco, CA 94016" -297758,AAA Batteries (4-pack),1,2.99,12/16/19 13:03,"225 12th St, Seattle, WA 98101" -297759,AAA Batteries (4-pack),1,2.99,12/27/19 18:26,"602 South St, New York City, NY 10001" -297760,iPhone,1,700,12/30/19 22:56,"917 Elm St, New York City, NY 10001" -297760,Lightning Charging Cable,1,14.95,12/30/19 22:56,"917 Elm St, New York City, NY 10001" -297761,Flatscreen TV,1,300,12/04/19 12:50,"894 Johnson St, San Francisco, CA 94016" -297762,Google Phone,1,600,12/02/19 21:58,"325 North St, Boston, MA 02215" -297763,Apple Airpods Headphones,1,150,12/15/19 11:50,"587 Sunset St, San Francisco, CA 94016" -297764,27in FHD Monitor,1,149.99,12/29/19 19:50,"71 Maple St, Atlanta, GA 30301" -297765,USB-C Charging Cable,3,11.95,12/12/19 11:56,"4 8th St, Austin, TX 73301" -297766,AA Batteries (4-pack),1,3.84,12/25/19 18:19,"4 Wilson St, New York City, NY 10001" -297767,USB-C Charging Cable,1,11.95,12/10/19 21:07,"170 Main St, Atlanta, GA 30301" -297768,Flatscreen TV,1,300,12/05/19 00:33,"225 Lincoln St, Dallas, TX 75001" -297769,Bose SoundSport Headphones,1,99.99,12/12/19 18:29,"55 7th St, Atlanta, GA 30301" -297770,iPhone,1,700,12/01/19 13:16,"104 Cherry St, San Francisco, CA 94016" -297771,iPhone,1,700,12/09/19 10:16,"404 Church St, Portland, OR 97035" -297772,USB-C Charging Cable,1,11.95,12/13/19 14:16,"380 13th St, New York City, NY 10001" -,,,,, -297773,Google Phone,1,600,12/05/19 23:47,"759 Spruce St, Dallas, TX 75001" -297774,Wired Headphones,1,11.99,12/27/19 12:17,"30 Pine St, Boston, MA 02215" -297775,Lightning Charging Cable,1,14.95,12/10/19 19:03,"878 Hickory St, Dallas, TX 75001" -297776,Lightning Charging Cable,1,14.95,12/24/19 21:48,"387 Adams St, Atlanta, GA 30301" -297777,Wired Headphones,2,11.99,12/02/19 11:45,"721 Wilson St, Atlanta, GA 30301" -297778,20in Monitor,1,109.99,12/31/19 15:06,"988 14th St, San Francisco, CA 94016" -297779,AAA Batteries (4-pack),1,2.99,12/25/19 17:57,"80 River St, New York City, NY 10001" -297780,AAA Batteries (4-pack),1,2.99,12/23/19 15:48,"37 Spruce St, New York City, NY 10001" -297781,Bose SoundSport Headphones,1,99.99,12/04/19 10:43,"365 Dogwood St, San Francisco, CA 94016" -297782,AA Batteries (4-pack),2,3.84,12/02/19 14:11,"125 Dogwood St, Boston, MA 02215" -297783,Lightning Charging Cable,1,14.95,12/30/19 09:10,"585 8th St, Austin, TX 73301" -297784,USB-C Charging Cable,1,11.95,12/24/19 15:18,"151 1st St, New York City, NY 10001" -297785,AAA Batteries (4-pack),1,2.99,12/19/19 20:20,"696 Lakeview St, San Francisco, CA 94016" -297786,Apple Airpods Headphones,1,150,12/21/19 00:57,"367 Wilson St, Seattle, WA 98101" -297787,Wired Headphones,1,11.99,12/11/19 13:24,"568 Madison St, Portland, OR 97035" -297788,iPhone,1,700,12/27/19 23:22,"944 13th St, San Francisco, CA 94016" -297789,AA Batteries (4-pack),2,3.84,12/22/19 13:11,"146 Lakeview St, Austin, TX 73301" -297790,Lightning Charging Cable,2,14.95,12/28/19 07:53,"241 13th St, Los Angeles, CA 90001" -297791,Apple Airpods Headphones,1,150,12/17/19 11:38,"19 Main St, Seattle, WA 98101" -297792,Wired Headphones,2,11.99,12/14/19 18:13,"933 Cedar St, Seattle, WA 98101" -297793,Lightning Charging Cable,1,14.95,12/04/19 17:27,"388 4th St, Dallas, TX 75001" -297794,Bose SoundSport Headphones,1,99.99,12/21/19 14:10,"90 Madison St, Atlanta, GA 30301" -297795,Bose SoundSport Headphones,1,99.99,12/13/19 18:15,"310 North St, San Francisco, CA 94016" -297796,AAA Batteries (4-pack),2,2.99,12/24/19 13:37,"64 5th St, New York City, NY 10001" -297797,34in Ultrawide Monitor,1,379.99,12/02/19 18:45,"894 Ridge St, San Francisco, CA 94016" -297798,27in FHD Monitor,1,149.99,12/28/19 15:53,"467 14th St, Los Angeles, CA 90001" -297799,AA Batteries (4-pack),1,3.84,12/13/19 22:04,"258 Madison St, San Francisco, CA 94016" -297800,Wired Headphones,1,11.99,12/05/19 03:41,"398 Washington St, Austin, TX 73301" -297801,USB-C Charging Cable,1,11.95,12/06/19 17:26,"653 River St, Los Angeles, CA 90001" -297802,ThinkPad Laptop,1,999.99,12/13/19 09:47,"266 River St, Dallas, TX 75001" -297803,27in 4K Gaming Monitor,1,389.99,12/27/19 18:33,"815 Maple St, Austin, TX 73301" -297804,Apple Airpods Headphones,1,150,12/14/19 20:57,"737 River St, Los Angeles, CA 90001" -297805,Wired Headphones,1,11.99,12/19/19 09:57,"907 Adams St, New York City, NY 10001" -297806,27in FHD Monitor,1,149.99,12/22/19 16:28,"6 Lakeview St, Portland, OR 97035" -297807,27in 4K Gaming Monitor,1,389.99,12/27/19 01:22,"183 10th St, New York City, NY 10001" -297808,AA Batteries (4-pack),1,3.84,12/09/19 18:50,"484 Adams St, Austin, TX 73301" -297809,Apple Airpods Headphones,1,150,12/04/19 21:35,"807 South St, Los Angeles, CA 90001" -297810,Bose SoundSport Headphones,1,99.99,12/15/19 19:35,"376 7th St, San Francisco, CA 94016" -297811,USB-C Charging Cable,1,11.95,12/28/19 12:14,"219 11th St, Atlanta, GA 30301" -297812,Bose SoundSport Headphones,2,99.99,12/01/19 17:00,"547 1st St, Dallas, TX 75001" -297813,AA Batteries (4-pack),2,3.84,12/09/19 19:31,"638 9th St, Atlanta, GA 30301" -297814,Lightning Charging Cable,1,14.95,12/09/19 18:57,"551 5th St, Los Angeles, CA 90001" -297815,Wired Headphones,1,11.99,12/31/19 19:12,"37 South St, Los Angeles, CA 90001" -297816,Google Phone,1,600,12/19/19 19:39,"511 West St, San Francisco, CA 94016" -297817,iPhone,1,700,01/01/20 00:22,"519 13th St, New York City, NY 10001" -297817,Lightning Charging Cable,2,14.95,01/01/20 00:22,"519 13th St, New York City, NY 10001" -297818,AAA Batteries (4-pack),2,2.99,12/10/19 07:24,"246 North St, Los Angeles, CA 90001" -297819,USB-C Charging Cable,1,11.95,12/10/19 21:57,"596 Johnson St, San Francisco, CA 94016" -297820,AAA Batteries (4-pack),4,2.99,12/24/19 09:50,"382 Forest St, Portland, ME 04101" -297821,Lightning Charging Cable,1,14.95,12/09/19 12:57,"311 Cherry St, New York City, NY 10001" -297822,Bose SoundSport Headphones,1,99.99,12/25/19 10:13,"399 River St, Seattle, WA 98101" -297823,Lightning Charging Cable,2,14.95,12/20/19 20:50,"17 North St, San Francisco, CA 94016" -297824,Lightning Charging Cable,2,14.95,12/09/19 23:15,"180 River St, Austin, TX 73301" -297825,27in 4K Gaming Monitor,1,389.99,12/24/19 13:06,"892 Chestnut St, New York City, NY 10001" -297826,Wired Headphones,1,11.99,12/14/19 21:53,"113 12th St, San Francisco, CA 94016" -297827,Apple Airpods Headphones,1,150,12/01/19 17:44,"299 Johnson St, Seattle, WA 98101" -297828,Lightning Charging Cable,1,14.95,12/12/19 15:07,"419 6th St, New York City, NY 10001" -297829,ThinkPad Laptop,1,999.99,12/15/19 11:57,"976 Center St, Portland, OR 97035" -297830,Lightning Charging Cable,1,14.95,12/03/19 22:04,"715 Pine St, Los Angeles, CA 90001" -297831,USB-C Charging Cable,1,11.95,12/05/19 00:25,"203 Cedar St, San Francisco, CA 94016" -297832,iPhone,1,700,12/12/19 12:36,"204 River St, New York City, NY 10001" -297833,27in 4K Gaming Monitor,1,389.99,12/28/19 17:01,"973 5th St, Dallas, TX 75001" -297834,AAA Batteries (4-pack),4,2.99,12/04/19 17:11,"720 Jackson St, San Francisco, CA 94016" -297835,Bose SoundSport Headphones,1,99.99,12/16/19 11:12,"320 Jackson St, Seattle, WA 98101" -297836,34in Ultrawide Monitor,1,379.99,12/30/19 09:37,"267 6th St, Los Angeles, CA 90001" -297837,AA Batteries (4-pack),2,3.84,12/02/19 13:09,"903 Walnut St, Atlanta, GA 30301" -297838,Flatscreen TV,1,300,12/01/19 20:45,"48 10th St, Seattle, WA 98101" -297839,Wired Headphones,1,11.99,12/12/19 15:29,"891 Washington St, Seattle, WA 98101" -297840,Apple Airpods Headphones,1,150,12/20/19 09:03,"267 Maple St, San Francisco, CA 94016" -297840,AAA Batteries (4-pack),1,2.99,12/20/19 09:03,"267 Maple St, San Francisco, CA 94016" -297841,ThinkPad Laptop,1,999.99,12/15/19 15:21,"409 North St, Dallas, TX 75001" -297842,Lightning Charging Cable,1,14.95,12/17/19 16:36,"634 10th St, San Francisco, CA 94016" -297843,USB-C Charging Cable,1,11.95,12/18/19 21:18,"482 Chestnut St, Boston, MA 02215" -297844,27in FHD Monitor,1,149.99,12/19/19 15:57,"414 5th St, Dallas, TX 75001" -297845,20in Monitor,1,109.99,12/31/19 11:39,"605 Willow St, Seattle, WA 98101" -297846,USB-C Charging Cable,1,11.95,12/26/19 13:44,"274 Jackson St, Boston, MA 02215" -297847,iPhone,1,700,12/01/19 15:06,"768 Maple St, New York City, NY 10001" -297847,Lightning Charging Cable,1,14.95,12/01/19 15:06,"768 Maple St, New York City, NY 10001" -297848,Bose SoundSport Headphones,1,99.99,12/27/19 20:08,"278 7th St, Boston, MA 02215" -297849,AAA Batteries (4-pack),2,2.99,12/03/19 17:15,"896 Main St, New York City, NY 10001" -297850,AAA Batteries (4-pack),1,2.99,12/20/19 14:36,"201 5th St, San Francisco, CA 94016" -297851,Flatscreen TV,1,300,12/25/19 21:41,"30 Hickory St, San Francisco, CA 94016" -297852,27in FHD Monitor,1,149.99,12/27/19 09:35,"940 Walnut St, San Francisco, CA 94016" -297853,27in FHD Monitor,1,149.99,12/16/19 22:21,"940 Cedar St, Boston, MA 02215" -297854,AAA Batteries (4-pack),1,2.99,12/12/19 23:34,"350 8th St, San Francisco, CA 94016" -297855,Apple Airpods Headphones,1,150,12/19/19 13:44,"235 7th St, Seattle, WA 98101" -297856,AA Batteries (4-pack),1,3.84,12/20/19 11:46,"384 2nd St, Dallas, TX 75001" -297857,Lightning Charging Cable,1,14.95,12/28/19 13:28,"293 6th St, Los Angeles, CA 90001" -297858,Lightning Charging Cable,1,14.95,12/15/19 11:50,"481 River St, Seattle, WA 98101" -297859,Macbook Pro Laptop,1,1700,12/07/19 14:07,"660 Madison St, New York City, NY 10001" -297860,Apple Airpods Headphones,1,150,12/04/19 08:54,"906 Cedar St, Los Angeles, CA 90001" -297861,AA Batteries (4-pack),1,3.84,12/15/19 10:20,"752 Center St, Boston, MA 02215" -297862,AAA Batteries (4-pack),1,2.99,12/20/19 14:53,"251 West St, Los Angeles, CA 90001" -297863,Lightning Charging Cable,1,14.95,12/04/19 16:14,"952 Lakeview St, New York City, NY 10001" -297864,20in Monitor,1,109.99,12/31/19 18:39,"556 9th St, Atlanta, GA 30301" -297865,Bose SoundSport Headphones,1,99.99,12/06/19 00:50,"186 14th St, New York City, NY 10001" -297866,Wired Headphones,1,11.99,12/03/19 06:40,"800 North St, Atlanta, GA 30301" -297867,AA Batteries (4-pack),1,3.84,12/03/19 16:27,"419 Lincoln St, San Francisco, CA 94016" -297868,Lightning Charging Cable,2,14.95,12/21/19 11:07,"847 Johnson St, Los Angeles, CA 90001" -297869,AAA Batteries (4-pack),1,2.99,12/16/19 19:22,"440 Maple St, Boston, MA 02215" -297870,Lightning Charging Cable,1,14.95,12/24/19 23:27,"732 Lincoln St, Dallas, TX 75001" -297871,ThinkPad Laptop,1,999.99,12/03/19 16:52,"95 13th St, Seattle, WA 98101" -297872,USB-C Charging Cable,2,11.95,12/06/19 18:54,"206 8th St, San Francisco, CA 94016" -297873,AA Batteries (4-pack),1,3.84,12/19/19 12:53,"28 Walnut St, San Francisco, CA 94016" -297874,20in Monitor,1,109.99,12/04/19 21:10,"311 10th St, Los Angeles, CA 90001" -297875,AAA Batteries (4-pack),2,2.99,12/17/19 08:20,"973 9th St, Los Angeles, CA 90001" -297876,Lightning Charging Cable,1,14.95,12/05/19 10:25,"162 9th St, Atlanta, GA 30301" -297877,Bose SoundSport Headphones,1,99.99,12/13/19 00:10,"578 2nd St, Atlanta, GA 30301" -297878,AAA Batteries (4-pack),1,2.99,12/02/19 22:01,"472 Highland St, New York City, NY 10001" -297879,Bose SoundSport Headphones,1,99.99,12/12/19 05:58,"242 14th St, Seattle, WA 98101" -297880,AAA Batteries (4-pack),2,2.99,12/20/19 07:49,"949 Adams St, Atlanta, GA 30301" -297881,Lightning Charging Cable,1,14.95,12/17/19 21:20,"564 Pine St, New York City, NY 10001" -297882,USB-C Charging Cable,3,11.95,12/05/19 12:03,"63 7th St, New York City, NY 10001" -297883,Apple Airpods Headphones,1,150,12/19/19 12:37,"678 11th St, Los Angeles, CA 90001" -297884,27in 4K Gaming Monitor,1,389.99,12/12/19 20:37,"67 13th St, San Francisco, CA 94016" -297885,Macbook Pro Laptop,1,1700,12/05/19 22:37,"566 Ridge St, Portland, OR 97035" -297886,Lightning Charging Cable,1,14.95,12/15/19 11:22,"211 Lake St, Dallas, TX 75001" -297887,Lightning Charging Cable,1,14.95,12/20/19 18:37,"278 11th St, San Francisco, CA 94016" -297888,USB-C Charging Cable,1,11.95,12/15/19 10:59,"472 Center St, Los Angeles, CA 90001" -297889,Lightning Charging Cable,1,14.95,12/18/19 13:39,"236 Forest St, San Francisco, CA 94016" -297890,34in Ultrawide Monitor,1,379.99,12/17/19 15:09,"812 Highland St, Los Angeles, CA 90001" -297891,AAA Batteries (4-pack),3,2.99,12/13/19 19:16,"568 13th St, Atlanta, GA 30301" -297892,ThinkPad Laptop,1,999.99,12/23/19 14:33,"478 Highland St, Portland, OR 97035" -297893,27in FHD Monitor,1,149.99,12/30/19 10:29,"475 Lake St, San Francisco, CA 94016" -297894,USB-C Charging Cable,1,11.95,12/13/19 11:40,"122 Main St, Boston, MA 02215" -297894,AA Batteries (4-pack),1,3.84,12/13/19 11:40,"122 Main St, Boston, MA 02215" -297895,USB-C Charging Cable,1,11.95,12/17/19 20:07,"382 5th St, Los Angeles, CA 90001" -297895,27in FHD Monitor,1,149.99,12/17/19 20:07,"382 5th St, Los Angeles, CA 90001" -297896,Bose SoundSport Headphones,1,99.99,12/06/19 22:45,"771 13th St, Los Angeles, CA 90001" -297897,USB-C Charging Cable,1,11.95,12/06/19 19:19,"737 Church St, Los Angeles, CA 90001" -297898,Wired Headphones,2,11.99,12/19/19 21:02,"624 River St, Atlanta, GA 30301" -297899,iPhone,1,700,12/10/19 16:20,"658 Hickory St, San Francisco, CA 94016" -297900,AAA Batteries (4-pack),1,2.99,12/19/19 21:27,"429 South St, Seattle, WA 98101" -297901,Wired Headphones,1,11.99,12/10/19 17:29,"249 Spruce St, New York City, NY 10001" -297902,Wired Headphones,1,11.99,12/01/19 10:31,"466 2nd St, Austin, TX 73301" -297903,USB-C Charging Cable,1,11.95,12/10/19 16:12,"537 Park St, Seattle, WA 98101" -297904,AAA Batteries (4-pack),1,2.99,12/03/19 00:07,"655 Elm St, Dallas, TX 75001" -297905,27in FHD Monitor,1,149.99,12/14/19 06:21,"817 Jefferson St, Dallas, TX 75001" -297906,Apple Airpods Headphones,1,150,12/30/19 10:54,"910 Johnson St, Portland, OR 97035" -297907,Flatscreen TV,1,300,12/23/19 10:07,"440 1st St, Dallas, TX 75001" -297908,Bose SoundSport Headphones,1,99.99,12/28/19 13:33,"862 13th St, San Francisco, CA 94016" -297909,Macbook Pro Laptop,1,1700,12/29/19 10:00,"310 Adams St, San Francisco, CA 94016" -297910,34in Ultrawide Monitor,1,379.99,12/29/19 10:39,"121 Lakeview St, Atlanta, GA 30301" -297911,Apple Airpods Headphones,1,150,12/11/19 12:14,"756 8th St, Los Angeles, CA 90001" -297912,AAA Batteries (4-pack),1,2.99,12/05/19 12:29,"910 Wilson St, Portland, OR 97035" -297913,34in Ultrawide Monitor,1,379.99,12/29/19 14:26,"50 Forest St, Los Angeles, CA 90001" -297914,AA Batteries (4-pack),1,3.84,12/03/19 22:52,"638 Center St, Los Angeles, CA 90001" -297915,AA Batteries (4-pack),1,3.84,12/04/19 11:59,"464 West St, New York City, NY 10001" -297916,34in Ultrawide Monitor,1,379.99,12/25/19 16:36,"537 14th St, Portland, OR 97035" -297917,AA Batteries (4-pack),1,3.84,12/18/19 22:18,"407 Lakeview St, Atlanta, GA 30301" -297918,Flatscreen TV,1,300,12/01/19 23:10,"812 Hickory St, Atlanta, GA 30301" -297919,AAA Batteries (4-pack),3,2.99,12/08/19 12:06,"171 Pine St, Dallas, TX 75001" -297920,iPhone,1,700,12/13/19 20:25,"128 Pine St, Boston, MA 02215" -297921,Apple Airpods Headphones,1,150,12/28/19 23:13,"476 Hill St, New York City, NY 10001" -297922,USB-C Charging Cable,2,11.95,12/22/19 15:57,"379 Elm St, San Francisco, CA 94016" -297923,20in Monitor,1,109.99,12/13/19 23:18,"717 Cherry St, San Francisco, CA 94016" -297924,AAA Batteries (4-pack),1,2.99,12/11/19 11:10,"382 Walnut St, Portland, OR 97035" -297925,AA Batteries (4-pack),1,3.84,12/14/19 10:20,"584 Pine St, Los Angeles, CA 90001" -297926,AA Batteries (4-pack),1,3.84,12/29/19 22:39,"831 Cherry St, Portland, OR 97035" -297927,AA Batteries (4-pack),1,3.84,12/18/19 16:44,"31 Maple St, Seattle, WA 98101" -297928,Google Phone,1,600,12/23/19 21:57,"198 Center St, Los Angeles, CA 90001" -297929,Apple Airpods Headphones,1,150,12/26/19 15:15,"100 12th St, Seattle, WA 98101" -297930,ThinkPad Laptop,1,999.99,12/30/19 09:17,"975 Johnson St, Boston, MA 02215" -297931,AA Batteries (4-pack),1,3.84,12/28/19 13:16,"804 2nd St, Dallas, TX 75001" -297932,AA Batteries (4-pack),1,3.84,12/04/19 19:44,"441 Lake St, Los Angeles, CA 90001" -297933,USB-C Charging Cable,2,11.95,12/31/19 19:21,"895 Hickory St, Boston, MA 02215" -297934,AA Batteries (4-pack),1,3.84,12/26/19 20:53,"390 Highland St, Portland, OR 97035" -297935,USB-C Charging Cable,1,11.95,12/04/19 21:58,"720 Wilson St, Seattle, WA 98101" -297936,27in 4K Gaming Monitor,1,389.99,12/25/19 17:49,"931 7th St, Dallas, TX 75001" -297937,AAA Batteries (4-pack),2,2.99,12/12/19 12:33,"574 7th St, Portland, OR 97035" -297938,Lightning Charging Cable,1,14.95,12/06/19 17:05,"836 Washington St, Los Angeles, CA 90001" -297939,AA Batteries (4-pack),1,3.84,12/15/19 16:58,"513 Meadow St, Boston, MA 02215" -297940,Bose SoundSport Headphones,1,99.99,12/11/19 17:32,"450 Hickory St, San Francisco, CA 94016" -297941,34in Ultrawide Monitor,1,379.99,12/31/19 16:00,"279 Sunset St, San Francisco, CA 94016" -297942,Flatscreen TV,1,300,12/29/19 00:17,"769 6th St, Portland, OR 97035" -297943,Bose SoundSport Headphones,1,99.99,12/25/19 23:55,"988 Church St, Austin, TX 73301" -297944,ThinkPad Laptop,1,999.99,12/23/19 23:08,"502 South St, Los Angeles, CA 90001" -297945,Vareebadd Phone,1,400,12/29/19 15:48,"181 Church St, Boston, MA 02215" -297945,USB-C Charging Cable,3,11.95,12/29/19 15:48,"181 Church St, Boston, MA 02215" -297945,Bose SoundSport Headphones,1,99.99,12/29/19 15:48,"181 Church St, Boston, MA 02215" -297946,Macbook Pro Laptop,1,1700,12/07/19 12:28,"427 Center St, Seattle, WA 98101" -297947,Lightning Charging Cable,1,14.95,12/26/19 22:10,"702 Jackson St, Los Angeles, CA 90001" -297948,AAA Batteries (4-pack),1,2.99,12/19/19 13:07,"697 Park St, Dallas, TX 75001" -297949,AAA Batteries (4-pack),1,2.99,12/03/19 08:56,"172 Forest St, New York City, NY 10001" -297950,Bose SoundSport Headphones,1,99.99,12/01/19 23:34,"742 Main St, San Francisco, CA 94016" -297951,USB-C Charging Cable,2,11.95,12/11/19 21:18,"79 7th St, San Francisco, CA 94016" -297951,Lightning Charging Cable,1,14.95,12/11/19 21:18,"79 7th St, San Francisco, CA 94016" -297952,Wired Headphones,1,11.99,12/08/19 08:59,"832 Dogwood St, Boston, MA 02215" -297953,AAA Batteries (4-pack),1,2.99,12/25/19 11:43,"424 8th St, Los Angeles, CA 90001" -297954,Macbook Pro Laptop,1,1700,12/20/19 20:25,"402 Sunset St, San Francisco, CA 94016" -297955,20in Monitor,1,109.99,12/29/19 18:40,"536 6th St, Austin, TX 73301" -297956,Wired Headphones,1,11.99,12/10/19 21:05,"419 Cedar St, Seattle, WA 98101" -297957,Apple Airpods Headphones,1,150,12/25/19 08:37,"670 11th St, New York City, NY 10001" -297958,AA Batteries (4-pack),2,3.84,12/02/19 13:03,"255 Center St, Atlanta, GA 30301" -297959,Bose SoundSport Headphones,1,99.99,12/29/19 13:10,"428 Wilson St, Seattle, WA 98101" -297960,AAA Batteries (4-pack),1,2.99,12/15/19 19:13,"934 Hill St, San Francisco, CA 94016" -297961,Google Phone,1,600,12/11/19 12:56,"891 13th St, New York City, NY 10001" -297962,27in 4K Gaming Monitor,1,389.99,12/02/19 15:51,"834 Lakeview St, San Francisco, CA 94016" -297963,Google Phone,1,600,12/07/19 20:46,"561 Center St, Seattle, WA 98101" -297964,AA Batteries (4-pack),2,3.84,12/29/19 23:33,"789 14th St, San Francisco, CA 94016" -297965,Google Phone,1,600,12/10/19 18:34,"791 Meadow St, Los Angeles, CA 90001" -297966,AAA Batteries (4-pack),1,2.99,12/28/19 08:18,"643 10th St, San Francisco, CA 94016" -297967,Macbook Pro Laptop,1,1700,12/31/19 14:27,"585 1st St, San Francisco, CA 94016" -297968,27in FHD Monitor,1,149.99,12/26/19 12:34,"250 2nd St, San Francisco, CA 94016" -297969,Google Phone,1,600,01/01/20 00:54,"542 2nd St, San Francisco, CA 94016" -297970,ThinkPad Laptop,1,999.99,12/25/19 14:49,"646 Church St, San Francisco, CA 94016" -297971,27in 4K Gaming Monitor,1,389.99,12/28/19 13:27,"596 Main St, Seattle, WA 98101" -297972,Wired Headphones,1,11.99,12/12/19 14:56,"356 Sunset St, Portland, OR 97035" -297973,27in FHD Monitor,1,149.99,12/21/19 11:34,"899 Elm St, Dallas, TX 75001" -297974,Lightning Charging Cable,1,14.95,12/10/19 00:24,"784 Lincoln St, Los Angeles, CA 90001" -297975,AA Batteries (4-pack),3,3.84,12/05/19 23:51,"426 12th St, New York City, NY 10001" -297976,27in FHD Monitor,1,149.99,12/29/19 15:09,"957 Sunset St, San Francisco, CA 94016" -297977,34in Ultrawide Monitor,1,379.99,12/22/19 20:33,"834 Jefferson St, New York City, NY 10001" -297978,AA Batteries (4-pack),1,3.84,12/24/19 09:25,"19 Walnut St, San Francisco, CA 94016" -297979,Bose SoundSport Headphones,1,99.99,12/04/19 17:33,"532 Chestnut St, Austin, TX 73301" -297980,Apple Airpods Headphones,1,150,12/17/19 12:55,"143 9th St, Atlanta, GA 30301" -297981,AAA Batteries (4-pack),2,2.99,12/05/19 10:30,"136 Lakeview St, Portland, OR 97035" -297982,Bose SoundSport Headphones,1,99.99,12/16/19 11:24,"257 Meadow St, Los Angeles, CA 90001" -297983,Google Phone,1,600,12/21/19 13:29,"459 Hill St, New York City, NY 10001" -297984,USB-C Charging Cable,1,11.95,12/22/19 16:25,"339 Center St, New York City, NY 10001" -297985,Bose SoundSport Headphones,1,99.99,12/03/19 13:45,"47 Madison St, Boston, MA 02215" -297986,AAA Batteries (4-pack),1,2.99,12/24/19 19:51,"303 11th St, San Francisco, CA 94016" -297987,Apple Airpods Headphones,1,150,12/28/19 14:52,"548 Lake St, Seattle, WA 98101" -297988,USB-C Charging Cable,1,11.95,12/08/19 20:55,"50 West St, Seattle, WA 98101" -297989,AA Batteries (4-pack),1,3.84,12/26/19 13:21,"270 North St, New York City, NY 10001" -297990,Macbook Pro Laptop,1,1700,12/22/19 12:01,"567 13th St, Portland, OR 97035" -297991,AAA Batteries (4-pack),2,2.99,12/14/19 23:13,"212 Lincoln St, Boston, MA 02215" -297992,LG Dryer,1,600.0,12/12/19 00:04,"427 Lake St, Atlanta, GA 30301" -297993,USB-C Charging Cable,1,11.95,12/08/19 23:29,"92 River St, Los Angeles, CA 90001" -297994,Macbook Pro Laptop,1,1700,12/07/19 10:29,"383 1st St, New York City, NY 10001" -297995,AAA Batteries (4-pack),1,2.99,12/25/19 00:50,"210 Willow St, San Francisco, CA 94016" -297996,Lightning Charging Cable,1,14.95,12/18/19 19:46,"259 South St, San Francisco, CA 94016" -297997,Wired Headphones,1,11.99,12/17/19 18:25,"883 1st St, Los Angeles, CA 90001" -297998,Bose SoundSport Headphones,1,99.99,12/02/19 19:15,"841 Lake St, Seattle, WA 98101" -297999,USB-C Charging Cable,1,11.95,12/01/19 17:51,"990 14th St, San Francisco, CA 94016" -298000,Apple Airpods Headphones,1,150,12/20/19 09:01,"194 7th St, Atlanta, GA 30301" -298001,AA Batteries (4-pack),1,3.84,12/16/19 05:50,"885 Sunset St, Los Angeles, CA 90001" -298002,ThinkPad Laptop,1,999.99,12/17/19 21:17,"582 Hickory St, New York City, NY 10001" -298003,Wired Headphones,1,11.99,12/31/19 20:08,"53 Washington St, Seattle, WA 98101" -298004,Apple Airpods Headphones,1,150,12/04/19 19:10,"559 Church St, Portland, ME 04101" -298005,20in Monitor,1,109.99,12/25/19 09:22,"857 Cedar St, Austin, TX 73301" -298006,Apple Airpods Headphones,1,150,12/06/19 15:05,"422 9th St, San Francisco, CA 94016" -298007,AA Batteries (4-pack),1,3.84,12/26/19 15:10,"704 13th St, Los Angeles, CA 90001" -298007,iPhone,1,700,12/26/19 15:10,"704 13th St, Los Angeles, CA 90001" -298008,Google Phone,1,600,12/25/19 18:07,"182 Adams St, New York City, NY 10001" -298008,USB-C Charging Cable,1,11.95,12/25/19 18:07,"182 Adams St, New York City, NY 10001" -298009,AAA Batteries (4-pack),1,2.99,12/05/19 10:11,"555 13th St, Portland, OR 97035" -298010,Wired Headphones,1,11.99,12/04/19 08:36,"350 Washington St, Los Angeles, CA 90001" -298011,Apple Airpods Headphones,1,150,12/14/19 19:14,"408 Willow St, Austin, TX 73301" -298012,27in FHD Monitor,1,149.99,12/05/19 12:19,"125 9th St, Seattle, WA 98101" -298013,Lightning Charging Cable,1,14.95,12/03/19 23:38,"317 7th St, Portland, OR 97035" -298014,Apple Airpods Headphones,1,150,12/20/19 06:29,"852 Elm St, San Francisco, CA 94016" -298015,ThinkPad Laptop,1,999.99,12/08/19 23:26,"619 North St, Dallas, TX 75001" -298016,Wired Headphones,1,11.99,12/25/19 20:49,"46 Chestnut St, New York City, NY 10001" -298017,Apple Airpods Headphones,1,150,12/11/19 12:18,"448 Johnson St, San Francisco, CA 94016" -298018,Flatscreen TV,1,300,12/20/19 21:16,"107 River St, Los Angeles, CA 90001" -298019,27in 4K Gaming Monitor,1,389.99,12/20/19 15:00,"590 14th St, Dallas, TX 75001" -298020,Bose SoundSport Headphones,1,99.99,12/08/19 10:32,"229 Cherry St, New York City, NY 10001" -298021,27in FHD Monitor,1,149.99,12/10/19 13:59,"626 Willow St, San Francisco, CA 94016" -298022,AAA Batteries (4-pack),1,2.99,12/19/19 06:22,"44 Jefferson St, Dallas, TX 75001" -298023,AAA Batteries (4-pack),1,2.99,12/09/19 19:13,"957 Maple St, San Francisco, CA 94016" -298024,Lightning Charging Cable,1,14.95,12/31/19 07:11,"668 River St, San Francisco, CA 94016" -298025,Bose SoundSport Headphones,1,99.99,12/17/19 15:22,"651 11th St, Dallas, TX 75001" -298026,Bose SoundSport Headphones,1,99.99,12/26/19 09:58,"754 Elm St, Los Angeles, CA 90001" -298027,Wired Headphones,1,11.99,12/03/19 01:33,"863 Sunset St, San Francisco, CA 94016" -298028,USB-C Charging Cable,1,11.95,12/01/19 17:44,"854 Center St, New York City, NY 10001" -298029,Flatscreen TV,1,300,12/15/19 21:41,"895 Chestnut St, San Francisco, CA 94016" -298030,AA Batteries (4-pack),1,3.84,12/11/19 13:14,"877 4th St, Boston, MA 02215" -298031,Bose SoundSport Headphones,1,99.99,12/28/19 12:23,"496 Cherry St, Dallas, TX 75001" -298032,USB-C Charging Cable,1,11.95,12/31/19 16:40,"930 Walnut St, Boston, MA 02215" -298033,USB-C Charging Cable,1,11.95,12/17/19 22:28,"133 10th St, San Francisco, CA 94016" -298034,Flatscreen TV,1,300,12/25/19 10:10,"407 5th St, Dallas, TX 75001" -298035,27in FHD Monitor,1,149.99,12/27/19 21:51,"763 Washington St, San Francisco, CA 94016" -298036,Lightning Charging Cable,1,14.95,12/29/19 20:12,"5 1st St, Portland, OR 97035" -298037,USB-C Charging Cable,1,11.95,12/18/19 21:16,"69 4th St, Boston, MA 02215" -298038,Apple Airpods Headphones,1,150,12/20/19 15:35,"987 Lincoln St, Boston, MA 02215" -298039,Lightning Charging Cable,1,14.95,12/17/19 09:10,"136 Chestnut St, Austin, TX 73301" -298040,Macbook Pro Laptop,1,1700,12/26/19 17:10,"286 Madison St, San Francisco, CA 94016" -298041,USB-C Charging Cable,1,11.95,12/31/19 11:34,"588 Pine St, Dallas, TX 75001" -298042,iPhone,1,700,12/16/19 17:54,"802 13th St, San Francisco, CA 94016" -298043,USB-C Charging Cable,1,11.95,12/10/19 23:40,"924 9th St, Dallas, TX 75001" -298044,Lightning Charging Cable,1,14.95,12/19/19 18:56,"325 Sunset St, San Francisco, CA 94016" -298045,34in Ultrawide Monitor,1,379.99,12/17/19 05:51,"301 Center St, Atlanta, GA 30301" -298046,Wired Headphones,1,11.99,12/27/19 20:51,"12 Forest St, San Francisco, CA 94016" -298047,Wired Headphones,1,11.99,12/17/19 11:36,"413 Meadow St, Portland, OR 97035" -298048,27in 4K Gaming Monitor,1,389.99,12/22/19 01:24,"528 Johnson St, Los Angeles, CA 90001" -298049,AA Batteries (4-pack),1,3.84,12/03/19 22:27,"426 West St, San Francisco, CA 94016" -298050,Bose SoundSport Headphones,1,99.99,12/21/19 12:24,"364 14th St, Los Angeles, CA 90001" -298051,Wired Headphones,1,11.99,12/31/19 17:30,"51 Lincoln St, San Francisco, CA 94016" -298052,AA Batteries (4-pack),1,3.84,12/11/19 21:25,"708 5th St, San Francisco, CA 94016" -298053,Google Phone,1,600,12/28/19 07:21,"762 2nd St, Boston, MA 02215" -298053,USB-C Charging Cable,1,11.95,12/28/19 07:21,"762 2nd St, Boston, MA 02215" -298054,Macbook Pro Laptop,1,1700,12/30/19 22:17,"368 Dogwood St, San Francisco, CA 94016" -298055,AAA Batteries (4-pack),1,2.99,12/26/19 12:08,"796 Jackson St, Austin, TX 73301" -298056,AAA Batteries (4-pack),2,2.99,12/17/19 19:48,"127 2nd St, Los Angeles, CA 90001" -298057,27in FHD Monitor,1,149.99,12/23/19 19:49,"698 Meadow St, Boston, MA 02215" -298058,Apple Airpods Headphones,1,150,12/12/19 07:15,"742 11th St, Boston, MA 02215" -298059,AAA Batteries (4-pack),1,2.99,12/05/19 19:29,"145 10th St, Atlanta, GA 30301" -298060,20in Monitor,1,109.99,12/12/19 23:05,"403 8th St, New York City, NY 10001" -298061,USB-C Charging Cable,1,11.95,12/19/19 22:15,"840 Sunset St, San Francisco, CA 94016" -298062,Google Phone,1,600,12/20/19 16:09,"345 Spruce St, New York City, NY 10001" -298063,Lightning Charging Cable,1,14.95,12/10/19 11:34,"762 Forest St, Austin, TX 73301" -298064,Apple Airpods Headphones,1,150,12/28/19 09:46,"66 Washington St, Boston, MA 02215" -298065,Lightning Charging Cable,1,14.95,12/12/19 23:53,"4 Willow St, San Francisco, CA 94016" -298066,Bose SoundSport Headphones,1,99.99,12/27/19 09:16,"278 Lincoln St, San Francisco, CA 94016" -298067,AA Batteries (4-pack),1,3.84,12/02/19 20:53,"706 7th St, Dallas, TX 75001" -298068,AA Batteries (4-pack),2,3.84,12/07/19 21:57,"381 West St, Boston, MA 02215" -298069,iPhone,1,700,12/20/19 12:42,"77 8th St, Los Angeles, CA 90001" -298070,AAA Batteries (4-pack),1,2.99,12/11/19 23:56,"434 Jefferson St, Boston, MA 02215" -298071,Wired Headphones,1,11.99,12/05/19 18:16,"51 12th St, San Francisco, CA 94016" -298072,AA Batteries (4-pack),3,3.84,12/06/19 18:49,"759 Johnson St, Seattle, WA 98101" -298073,AA Batteries (4-pack),1,3.84,12/24/19 10:14,"235 9th St, San Francisco, CA 94016" -298074,iPhone,1,700,12/13/19 20:53,"471 Meadow St, Dallas, TX 75001" -298075,USB-C Charging Cable,1,11.95,12/24/19 00:46,"617 Church St, Dallas, TX 75001" -298076,Lightning Charging Cable,1,14.95,12/05/19 10:58,"748 Johnson St, San Francisco, CA 94016" -298077,27in FHD Monitor,1,149.99,12/24/19 20:22,"424 Highland St, Boston, MA 02215" -298078,AA Batteries (4-pack),2,3.84,12/31/19 18:21,"334 7th St, Dallas, TX 75001" -298079,27in 4K Gaming Monitor,1,389.99,12/13/19 08:47,"847 Wilson St, New York City, NY 10001" -298080,AA Batteries (4-pack),1,3.84,12/24/19 16:37,"511 North St, San Francisco, CA 94016" -298081,Bose SoundSport Headphones,1,99.99,12/28/19 13:13,"50 Church St, New York City, NY 10001" -298082,USB-C Charging Cable,1,11.95,12/09/19 23:57,"193 1st St, San Francisco, CA 94016" -298083,Apple Airpods Headphones,1,150,12/19/19 16:42,"151 9th St, San Francisco, CA 94016" -298084,Flatscreen TV,1,300,12/03/19 13:18,"202 4th St, Portland, OR 97035" -298085,Bose SoundSport Headphones,1,99.99,12/10/19 11:47,"391 Elm St, New York City, NY 10001" -298086,USB-C Charging Cable,1,11.95,12/28/19 14:26,"738 Ridge St, Atlanta, GA 30301" -298087,AA Batteries (4-pack),2,3.84,12/19/19 12:44,"274 Lakeview St, Austin, TX 73301" -298088,34in Ultrawide Monitor,1,379.99,12/14/19 22:18,"689 River St, Los Angeles, CA 90001" -298089,USB-C Charging Cable,1,11.95,12/24/19 13:25,"540 Cherry St, San Francisco, CA 94016" -298090,Lightning Charging Cable,1,14.95,12/24/19 19:33,"277 6th St, Atlanta, GA 30301" -298091,AAA Batteries (4-pack),1,2.99,12/25/19 12:49,"484 Highland St, Boston, MA 02215" -298092,Wired Headphones,1,11.99,12/29/19 18:29,"257 1st St, Austin, TX 73301" -298093,AA Batteries (4-pack),2,3.84,12/23/19 20:45,"988 13th St, San Francisco, CA 94016" -298094,AAA Batteries (4-pack),1,2.99,12/30/19 05:58,"779 Elm St, Austin, TX 73301" -298095,Google Phone,1,600,12/04/19 08:34,"55 Forest St, Atlanta, GA 30301" -298096,Lightning Charging Cable,1,14.95,12/16/19 15:20,"784 Forest St, Boston, MA 02215" -298097,iPhone,1,700,12/12/19 10:07,"541 1st St, Austin, TX 73301" -298098,USB-C Charging Cable,1,11.95,12/07/19 14:00,"397 10th St, Los Angeles, CA 90001" -298099,USB-C Charging Cable,1,11.95,12/28/19 22:32,"164 Chestnut St, Seattle, WA 98101" -298100,Wired Headphones,1,11.99,12/16/19 16:55,"3 Washington St, Seattle, WA 98101" -298101,Lightning Charging Cable,1,14.95,12/09/19 12:21,"752 7th St, Seattle, WA 98101" -298102,27in FHD Monitor,1,149.99,12/05/19 19:19,"115 Church St, San Francisco, CA 94016" -298103,27in 4K Gaming Monitor,1,389.99,12/02/19 14:24,"397 Church St, Boston, MA 02215" -298104,AA Batteries (4-pack),1,3.84,12/16/19 22:30,"955 Johnson St, Los Angeles, CA 90001" -298105,AA Batteries (4-pack),3,3.84,12/20/19 22:02,"36 South St, Los Angeles, CA 90001" -298106,AA Batteries (4-pack),2,3.84,12/12/19 18:01,"51 Lake St, Austin, TX 73301" -298107,Wired Headphones,1,11.99,12/25/19 23:01,"802 Lake St, Los Angeles, CA 90001" -298108,AAA Batteries (4-pack),1,2.99,12/02/19 18:22,"779 Church St, Los Angeles, CA 90001" -298109,Flatscreen TV,1,300,12/31/19 09:07,"876 4th St, Atlanta, GA 30301" -298110,Bose SoundSport Headphones,1,99.99,12/18/19 22:24,"944 Cherry St, Seattle, WA 98101" -298111,iPhone,1,700,12/14/19 14:00,"549 Forest St, San Francisco, CA 94016" -298112,Wired Headphones,1,11.99,12/07/19 11:57,"572 Willow St, San Francisco, CA 94016" -298113,Apple Airpods Headphones,2,150,12/11/19 13:13,"789 Cedar St, Boston, MA 02215" -298114,AA Batteries (4-pack),1,3.84,12/22/19 01:57,"259 Johnson St, Atlanta, GA 30301" -298115,AAA Batteries (4-pack),1,2.99,12/21/19 11:26,"662 13th St, Atlanta, GA 30301" -298116,USB-C Charging Cable,2,11.95,12/19/19 12:27,"29 Church St, Atlanta, GA 30301" -298117,Google Phone,1,600,12/27/19 00:20,"307 Lakeview St, Portland, ME 04101" -298118,Google Phone,1,600,12/17/19 18:46,"425 6th St, Portland, OR 97035" -298118,USB-C Charging Cable,2,11.95,12/17/19 18:46,"425 6th St, Portland, OR 97035" -298119,Wired Headphones,2,11.99,12/18/19 20:26,"427 2nd St, Seattle, WA 98101" -298120,AA Batteries (4-pack),2,3.84,12/29/19 15:32,"884 8th St, Atlanta, GA 30301" -298121,AAA Batteries (4-pack),1,2.99,12/28/19 01:29,"666 Hill St, Los Angeles, CA 90001" -298122,AA Batteries (4-pack),2,3.84,12/20/19 15:41,"618 Main St, New York City, NY 10001" -298123,USB-C Charging Cable,1,11.95,12/26/19 14:18,"378 13th St, Seattle, WA 98101" -298124,Lightning Charging Cable,1,14.95,12/08/19 17:38,"837 1st St, San Francisco, CA 94016" -298125,Wired Headphones,1,11.99,12/26/19 19:30,"527 Maple St, Portland, OR 97035" -298126,AAA Batteries (4-pack),1,2.99,12/28/19 14:05,"627 Washington St, Dallas, TX 75001" -298127,Lightning Charging Cable,1,14.95,12/12/19 23:28,"622 Center St, Dallas, TX 75001" -298128,AAA Batteries (4-pack),1,2.99,12/05/19 21:34,"419 Cherry St, New York City, NY 10001" -298129,27in 4K Gaming Monitor,1,389.99,12/25/19 12:58,"347 Madison St, Los Angeles, CA 90001" -298130,Bose SoundSport Headphones,1,99.99,12/02/19 13:00,"953 Chestnut St, Austin, TX 73301" -298131,34in Ultrawide Monitor,1,379.99,12/16/19 21:22,"133 Park St, New York City, NY 10001" -298132,iPhone,1,700,12/28/19 21:54,"903 1st St, San Francisco, CA 94016" -298133,Bose SoundSport Headphones,1,99.99,12/03/19 12:07,"312 Ridge St, Boston, MA 02215" -298134,AA Batteries (4-pack),1,3.84,12/31/19 16:12,"605 Adams St, San Francisco, CA 94016" -298135,AAA Batteries (4-pack),2,2.99,12/15/19 11:18,"151 Willow St, Dallas, TX 75001" -298136,ThinkPad Laptop,1,999.99,12/30/19 14:09,"252 Lincoln St, Dallas, TX 75001" -298137,34in Ultrawide Monitor,2,379.99,12/18/19 16:07,"587 Hickory St, San Francisco, CA 94016" -298138,iPhone,1,700,12/29/19 18:02,"884 Hickory St, Boston, MA 02215" -298139,Lightning Charging Cable,1,14.95,12/24/19 17:15,"249 Wilson St, Boston, MA 02215" -298140,USB-C Charging Cable,1,11.95,12/29/19 12:13,"812 Madison St, Atlanta, GA 30301" -298141,Bose SoundSport Headphones,1,99.99,12/17/19 13:42,"876 Jackson St, New York City, NY 10001" -298142,USB-C Charging Cable,1,11.95,12/18/19 01:47,"763 Sunset St, Los Angeles, CA 90001" -298143,USB-C Charging Cable,1,11.95,12/23/19 09:13,"813 Johnson St, Boston, MA 02215" -298144,AAA Batteries (4-pack),2,2.99,12/02/19 17:49,"969 West St, Austin, TX 73301" -298145,Wired Headphones,1,11.99,12/14/19 17:11,"711 14th St, Dallas, TX 75001" -298146,USB-C Charging Cable,1,11.95,12/27/19 14:58,"556 Jackson St, San Francisco, CA 94016" -298147,Wired Headphones,1,11.99,12/18/19 19:05,"883 8th St, Boston, MA 02215" -298148,20in Monitor,1,109.99,12/13/19 08:27,"12 Maple St, San Francisco, CA 94016" -298149,AA Batteries (4-pack),2,3.84,12/01/19 15:05,"504 Center St, San Francisco, CA 94016" -298150,Wired Headphones,1,11.99,12/11/19 10:23,"498 Cherry St, Atlanta, GA 30301" -298151,Lightning Charging Cable,1,14.95,12/03/19 00:57,"55 6th St, Portland, OR 97035" -298152,AAA Batteries (4-pack),3,2.99,12/13/19 01:45,"393 2nd St, Los Angeles, CA 90001" -298153,Apple Airpods Headphones,1,150,12/26/19 13:44,"706 Washington St, Los Angeles, CA 90001" -298154,Bose SoundSport Headphones,2,99.99,12/22/19 19:38,"606 Dogwood St, Dallas, TX 75001" -298155,AA Batteries (4-pack),1,3.84,12/05/19 13:46,"590 Wilson St, San Francisco, CA 94016" -298156,Lightning Charging Cable,1,14.95,12/02/19 22:14,"347 Hill St, Dallas, TX 75001" -298157,USB-C Charging Cable,1,11.95,12/15/19 09:23,"981 Wilson St, Los Angeles, CA 90001" -298158,AA Batteries (4-pack),1,3.84,12/05/19 16:03,"986 5th St, New York City, NY 10001" -298159,Apple Airpods Headphones,1,150,12/10/19 06:40,"563 11th St, Portland, OR 97035" -298160,AA Batteries (4-pack),2,3.84,12/12/19 13:46,"996 7th St, San Francisco, CA 94016" -298161,Bose SoundSport Headphones,1,99.99,12/13/19 17:26,"632 South St, Portland, OR 97035" -298162,iPhone,1,700,12/15/19 09:50,"934 Madison St, San Francisco, CA 94016" -298163,34in Ultrawide Monitor,1,379.99,12/02/19 09:23,"848 Lincoln St, Boston, MA 02215" -298164,Google Phone,1,600,12/19/19 12:00,"873 North St, Seattle, WA 98101" -298165,Wired Headphones,1,11.99,12/02/19 22:03,"951 Walnut St, New York City, NY 10001" -298166,20in Monitor,1,109.99,12/31/19 11:29,"414 Forest St, Portland, OR 97035" -298167,Wired Headphones,1,11.99,12/28/19 19:30,"480 Walnut St, Los Angeles, CA 90001" -298168,USB-C Charging Cable,1,11.95,12/16/19 22:51,"167 Walnut St, San Francisco, CA 94016" -298169,AAA Batteries (4-pack),1,2.99,12/21/19 06:34,"365 River St, San Francisco, CA 94016" -298170,Apple Airpods Headphones,1,150,12/09/19 00:22,"201 West St, New York City, NY 10001" -298171,AA Batteries (4-pack),1,3.84,12/10/19 14:36,"789 Park St, San Francisco, CA 94016" -298172,27in FHD Monitor,1,149.99,12/20/19 12:58,"26 Jefferson St, Atlanta, GA 30301" -298173,USB-C Charging Cable,1,11.95,12/01/19 23:58,"185 Maple St, Boston, MA 02215" -298174,27in 4K Gaming Monitor,1,389.99,12/20/19 15:11,"764 8th St, Los Angeles, CA 90001" -298175,AAA Batteries (4-pack),1,2.99,12/17/19 17:13,"454 Spruce St, San Francisco, CA 94016" -298176,USB-C Charging Cable,1,11.95,12/13/19 15:12,"224 10th St, New York City, NY 10001" -298177,AA Batteries (4-pack),3,3.84,12/21/19 13:57,"35 Johnson St, Seattle, WA 98101" -298178,Lightning Charging Cable,1,14.95,12/31/19 07:15,"550 2nd St, Portland, OR 97035" -298179,Bose SoundSport Headphones,1,99.99,12/06/19 09:10,"748 Elm St, Atlanta, GA 30301" -298180,Lightning Charging Cable,1,14.95,12/21/19 18:23,"669 13th St, San Francisco, CA 94016" -298181,AAA Batteries (4-pack),1,2.99,12/15/19 23:37,"338 Cherry St, San Francisco, CA 94016" -298182,AA Batteries (4-pack),2,3.84,12/29/19 13:17,"508 Adams St, San Francisco, CA 94016" -298183,USB-C Charging Cable,1,11.95,12/28/19 18:08,"32 Dogwood St, Atlanta, GA 30301" -298184,Macbook Pro Laptop,1,1700,12/03/19 13:43,"26 9th St, Austin, TX 73301" -298185,Wired Headphones,1,11.99,12/06/19 14:23,"82 1st St, San Francisco, CA 94016" -298186,34in Ultrawide Monitor,1,379.99,12/22/19 00:02,"678 Willow St, Austin, TX 73301" -298187,34in Ultrawide Monitor,1,379.99,12/27/19 16:03,"848 Willow St, Atlanta, GA 30301" -298188,Lightning Charging Cable,1,14.95,12/13/19 12:51,"209 Cherry St, Seattle, WA 98101" -298189,AAA Batteries (4-pack),1,2.99,12/18/19 12:39,"677 Center St, Portland, OR 97035" -298190,34in Ultrawide Monitor,1,379.99,12/02/19 17:10,"973 Madison St, Atlanta, GA 30301" -298191,Lightning Charging Cable,2,14.95,12/17/19 22:55,"449 Lakeview St, New York City, NY 10001" -298192,AA Batteries (4-pack),2,3.84,12/12/19 13:32,"43 Church St, Boston, MA 02215" -298193,AAA Batteries (4-pack),1,2.99,12/29/19 13:09,"210 Johnson St, San Francisco, CA 94016" -298194,Lightning Charging Cable,1,14.95,12/16/19 19:13,"593 2nd St, San Francisco, CA 94016" -298195,Lightning Charging Cable,1,14.95,12/27/19 18:00,"549 12th St, New York City, NY 10001" -298196,AAA Batteries (4-pack),2,2.99,12/08/19 23:10,"675 Maple St, Los Angeles, CA 90001" -298197,Lightning Charging Cable,1,14.95,12/23/19 18:17,"57 Jackson St, Los Angeles, CA 90001" -298198,USB-C Charging Cable,1,11.95,12/23/19 08:30,"122 13th St, Seattle, WA 98101" -298199,AAA Batteries (4-pack),1,2.99,12/13/19 16:11,"745 Church St, Boston, MA 02215" -298200,Wired Headphones,1,11.99,12/06/19 10:36,"644 West St, New York City, NY 10001" -298201,AA Batteries (4-pack),1,3.84,12/20/19 11:15,"329 Meadow St, Dallas, TX 75001" -298202,Lightning Charging Cable,1,14.95,12/22/19 12:54,"107 Park St, Atlanta, GA 30301" -298203,Wired Headphones,1,11.99,12/28/19 11:39,"317 North St, Los Angeles, CA 90001" -298204,Lightning Charging Cable,1,14.95,12/19/19 09:30,"68 Madison St, San Francisco, CA 94016" -298205,Apple Airpods Headphones,1,150,12/29/19 11:24,"446 Chestnut St, San Francisco, CA 94016" -298206,27in FHD Monitor,1,149.99,12/30/19 22:23,"228 Elm St, New York City, NY 10001" -298207,iPhone,1,700,12/10/19 10:57,"387 Maple St, San Francisco, CA 94016" -298208,34in Ultrawide Monitor,1,379.99,12/09/19 14:35,"452 Cedar St, Seattle, WA 98101" -298209,Wired Headphones,1,11.99,12/27/19 15:57,"943 Ridge St, New York City, NY 10001" -298210,Apple Airpods Headphones,1,150,12/05/19 21:21,"131 Wilson St, San Francisco, CA 94016" -298211,Macbook Pro Laptop,1,1700,12/10/19 19:35,"8 2nd St, New York City, NY 10001" -298212,27in 4K Gaming Monitor,1,389.99,12/02/19 21:24,"870 9th St, New York City, NY 10001" -298213,Apple Airpods Headphones,1,150,12/21/19 14:52,"313 6th St, San Francisco, CA 94016" -298214,Google Phone,1,600,12/18/19 16:16,"330 Elm St, San Francisco, CA 94016" -298215,AAA Batteries (4-pack),1,2.99,12/17/19 10:16,"275 River St, Atlanta, GA 30301" -298216,Lightning Charging Cable,2,14.95,12/30/19 13:36,"820 2nd St, Seattle, WA 98101" -298216,AAA Batteries (4-pack),1,2.99,12/30/19 13:36,"820 2nd St, Seattle, WA 98101" -298217,Bose SoundSport Headphones,1,99.99,12/12/19 23:53,"110 Willow St, New York City, NY 10001" -298218,Wired Headphones,1,11.99,12/22/19 14:52,"906 7th St, Seattle, WA 98101" -298219,20in Monitor,1,109.99,12/03/19 09:34,"118 11th St, Los Angeles, CA 90001" -298220,USB-C Charging Cable,1,11.95,12/27/19 07:09,"447 9th St, Austin, TX 73301" -298221,Wired Headphones,1,11.99,12/31/19 21:11,"669 Willow St, Portland, OR 97035" -298222,AAA Batteries (4-pack),1,2.99,12/03/19 13:36,"77 Willow St, San Francisco, CA 94016" -298223,AA Batteries (4-pack),5,3.84,12/02/19 14:17,"84 South St, Portland, OR 97035" -298224,AA Batteries (4-pack),1,3.84,12/28/19 18:10,"877 Forest St, Seattle, WA 98101" -298225,AAA Batteries (4-pack),5,2.99,12/05/19 15:41,"50 4th St, Atlanta, GA 30301" -298226,AA Batteries (4-pack),1,3.84,12/17/19 20:37,"688 River St, San Francisco, CA 94016" -298227,ThinkPad Laptop,1,999.99,12/27/19 15:06,"377 River St, Austin, TX 73301" -298228,27in 4K Gaming Monitor,1,389.99,12/21/19 11:57,"222 Elm St, New York City, NY 10001" -298229,iPhone,1,700,12/25/19 09:56,"769 Ridge St, New York City, NY 10001" -298230,Bose SoundSport Headphones,1,99.99,12/09/19 17:59,"699 13th St, Boston, MA 02215" -298231,Lightning Charging Cable,1,14.95,12/20/19 11:24,"546 Spruce St, Seattle, WA 98101" -298232,Wired Headphones,1,11.99,12/27/19 16:50,"472 6th St, San Francisco, CA 94016" -298233,USB-C Charging Cable,1,11.95,12/02/19 19:56,"976 7th St, Seattle, WA 98101" -298234,27in FHD Monitor,1,149.99,12/02/19 23:39,"355 14th St, Los Angeles, CA 90001" -298235,27in FHD Monitor,1,149.99,12/29/19 15:36,"472 1st St, New York City, NY 10001" -298236,AAA Batteries (4-pack),2,2.99,12/09/19 06:01,"235 2nd St, Seattle, WA 98101" -298237,Google Phone,1,600,12/15/19 02:06,"985 Park St, New York City, NY 10001" -298238,AAA Batteries (4-pack),3,2.99,12/23/19 12:54,"560 Church St, Austin, TX 73301" -298239,27in FHD Monitor,1,149.99,12/09/19 09:12,"77 West St, Boston, MA 02215" -298240,iPhone,1,700,12/10/19 07:03,"923 Hill St, Los Angeles, CA 90001" -298241,iPhone,1,700,12/30/19 07:27,"418 8th St, Atlanta, GA 30301" -298242,Wired Headphones,1,11.99,12/26/19 07:53,"478 Elm St, Dallas, TX 75001" -298243,AAA Batteries (4-pack),1,2.99,12/24/19 19:51,"232 Lake St, San Francisco, CA 94016" -298244,Apple Airpods Headphones,1,150,12/01/19 15:28,"452 Ridge St, Boston, MA 02215" -298245,USB-C Charging Cable,1,11.95,12/29/19 08:36,"495 Spruce St, Boston, MA 02215" -298246,USB-C Charging Cable,2,11.95,12/17/19 13:25,"897 6th St, Austin, TX 73301" -298247,Flatscreen TV,1,300,12/06/19 17:10,"593 Washington St, San Francisco, CA 94016" -298248,USB-C Charging Cable,1,11.95,12/06/19 13:57,"486 Adams St, San Francisco, CA 94016" -298249,27in 4K Gaming Monitor,1,389.99,12/23/19 05:16,"826 Highland St, Los Angeles, CA 90001" -298250,AAA Batteries (4-pack),1,2.99,12/12/19 12:12,"572 Madison St, San Francisco, CA 94016" -298251,ThinkPad Laptop,1,999.99,12/24/19 09:49,"16 Wilson St, Austin, TX 73301" -298252,AA Batteries (4-pack),1,3.84,12/01/19 17:23,"326 5th St, Austin, TX 73301" -298253,AA Batteries (4-pack),1,3.84,12/15/19 14:15,"806 Pine St, San Francisco, CA 94016" -298254,Lightning Charging Cable,1,14.95,12/15/19 17:28,"853 7th St, Dallas, TX 75001" -298255,Bose SoundSport Headphones,1,99.99,12/04/19 19:01,"182 Wilson St, Los Angeles, CA 90001" -298256,Wired Headphones,1,11.99,12/17/19 13:02,"454 Walnut St, Los Angeles, CA 90001" -298257,27in 4K Gaming Monitor,1,389.99,12/22/19 11:29,"915 Washington St, San Francisco, CA 94016" -298258,LG Washing Machine,1,600.0,12/29/19 16:05,"929 11th St, San Francisco, CA 94016" -298259,USB-C Charging Cable,1,11.95,12/08/19 18:07,"730 South St, San Francisco, CA 94016" -298260,Wired Headphones,3,11.99,12/10/19 23:14,"703 South St, San Francisco, CA 94016" -298261,Wired Headphones,1,11.99,12/28/19 04:58,"9 5th St, Portland, OR 97035" -298262,AA Batteries (4-pack),1,3.84,12/02/19 00:02,"68 5th St, Seattle, WA 98101" -298263,Google Phone,1,600,12/25/19 20:16,"333 Maple St, San Francisco, CA 94016" -298264,USB-C Charging Cable,1,11.95,12/08/19 11:10,"177 11th St, San Francisco, CA 94016" -298265,Lightning Charging Cable,1,14.95,12/09/19 07:04,"227 Hickory St, San Francisco, CA 94016" -298266,Bose SoundSport Headphones,1,99.99,12/04/19 07:13,"792 Cedar St, Los Angeles, CA 90001" -298267,27in FHD Monitor,1,149.99,12/21/19 22:32,"252 Jackson St, Atlanta, GA 30301" -298268,AA Batteries (4-pack),2,3.84,12/17/19 13:49,"3 South St, San Francisco, CA 94016" -298269,Macbook Pro Laptop,1,1700,12/18/19 13:44,"553 12th St, Austin, TX 73301" -298270,USB-C Charging Cable,1,11.95,12/10/19 21:05,"762 Church St, Seattle, WA 98101" -298271,Wired Headphones,2,11.99,12/27/19 14:24,"543 Hill St, San Francisco, CA 94016" -298272,USB-C Charging Cable,1,11.95,12/09/19 14:19,"448 6th St, Los Angeles, CA 90001" -298273,Apple Airpods Headphones,1,150,12/09/19 08:13,"51 Lake St, Atlanta, GA 30301" -298274,20in Monitor,1,109.99,12/14/19 21:51,"16 Sunset St, Seattle, WA 98101" -298275,Apple Airpods Headphones,1,150,12/17/19 05:08,"59 Lakeview St, New York City, NY 10001" -298276,27in 4K Gaming Monitor,1,389.99,12/08/19 15:15,"368 West St, Boston, MA 02215" -298277,27in FHD Monitor,1,149.99,12/28/19 22:32,"834 11th St, Seattle, WA 98101" -298278,USB-C Charging Cable,1,11.95,12/06/19 03:52,"449 Ridge St, San Francisco, CA 94016" -298279,Lightning Charging Cable,1,14.95,12/31/19 01:20,"210 14th St, New York City, NY 10001" -298280,AA Batteries (4-pack),1,3.84,12/09/19 15:35,"653 Spruce St, Dallas, TX 75001" -298281,Apple Airpods Headphones,1,150,12/30/19 08:57,"988 Lake St, Austin, TX 73301" -298282,AA Batteries (4-pack),2,3.84,12/19/19 17:40,"944 1st St, Los Angeles, CA 90001" -298283,ThinkPad Laptop,1,999.99,12/11/19 09:56,"402 Johnson St, Atlanta, GA 30301" -298284,AAA Batteries (4-pack),2,2.99,12/11/19 22:37,"444 Wilson St, San Francisco, CA 94016" -298285,Lightning Charging Cable,1,14.95,12/21/19 12:19,"966 Lincoln St, San Francisco, CA 94016" -298286,USB-C Charging Cable,1,11.95,12/02/19 08:40,"522 11th St, San Francisco, CA 94016" -298287,LG Dryer,1,600.0,12/04/19 19:13,"947 Cherry St, Los Angeles, CA 90001" -298288,27in FHD Monitor,1,149.99,12/17/19 16:45,"206 Forest St, Dallas, TX 75001" -298289,Google Phone,1,600,12/04/19 11:30,"188 7th St, Austin, TX 73301" -298289,USB-C Charging Cable,1,11.95,12/04/19 11:30,"188 7th St, Austin, TX 73301" -298290,Lightning Charging Cable,1,14.95,12/17/19 06:23,"80 2nd St, Atlanta, GA 30301" -298291,AA Batteries (4-pack),3,3.84,12/01/19 12:19,"619 River St, San Francisco, CA 94016" -298292,Lightning Charging Cable,1,14.95,12/05/19 11:34,"797 Washington St, San Francisco, CA 94016" -298293,USB-C Charging Cable,1,11.95,12/15/19 20:59,"214 1st St, Dallas, TX 75001" -298294,AA Batteries (4-pack),1,3.84,12/02/19 20:37,"145 North St, Seattle, WA 98101" -298295,AAA Batteries (4-pack),4,2.99,12/17/19 17:46,"898 Adams St, Atlanta, GA 30301" -298296,iPhone,1,700,12/11/19 07:12,"207 13th St, Boston, MA 02215" -298297,USB-C Charging Cable,1,11.95,12/06/19 14:27,"383 Wilson St, San Francisco, CA 94016" -298298,Wired Headphones,1,11.99,12/26/19 12:08,"317 Maple St, San Francisco, CA 94016" -298299,ThinkPad Laptop,1,999.99,12/21/19 12:28,"158 Washington St, Los Angeles, CA 90001" -298300,AAA Batteries (4-pack),2,2.99,12/24/19 21:55,"137 9th St, Dallas, TX 75001" -298301,Wired Headphones,1,11.99,12/29/19 08:45,"13 4th St, Dallas, TX 75001" -298302,Lightning Charging Cable,1,14.95,12/25/19 14:41,"531 North St, Boston, MA 02215" -298303,27in FHD Monitor,1,149.99,12/16/19 21:02,"547 Jefferson St, San Francisco, CA 94016" -298304,AA Batteries (4-pack),1,3.84,12/25/19 23:20,"951 Center St, Los Angeles, CA 90001" -298305,Apple Airpods Headphones,1,150,12/29/19 09:48,"111 Meadow St, San Francisco, CA 94016" -298306,Apple Airpods Headphones,1,150,12/24/19 20:40,"901 Johnson St, San Francisco, CA 94016" -298307,Bose SoundSport Headphones,1,99.99,12/02/19 08:14,"638 Pine St, Seattle, WA 98101" -298308,Google Phone,1,600,12/21/19 15:07,"829 Dogwood St, San Francisco, CA 94016" -298309,Apple Airpods Headphones,1,150,12/07/19 01:16,"969 Jackson St, New York City, NY 10001" -298310,USB-C Charging Cable,1,11.95,12/24/19 05:54,"710 Highland St, San Francisco, CA 94016" -298311,USB-C Charging Cable,1,11.95,12/27/19 13:03,"995 Walnut St, San Francisco, CA 94016" -298312,AA Batteries (4-pack),1,3.84,12/04/19 12:26,"715 South St, Boston, MA 02215" -298313,AAA Batteries (4-pack),1,2.99,12/26/19 10:30,"228 Jackson St, Portland, OR 97035" -298314,27in 4K Gaming Monitor,1,389.99,12/15/19 18:24,"474 Wilson St, Atlanta, GA 30301" -298315,Lightning Charging Cable,1,14.95,12/09/19 09:58,"834 12th St, Boston, MA 02215" -298316,Lightning Charging Cable,1,14.95,12/27/19 10:17,"373 Elm St, Seattle, WA 98101" -298317,USB-C Charging Cable,1,11.95,12/30/19 11:23,"718 Adams St, Dallas, TX 75001" -298318,Lightning Charging Cable,1,14.95,12/28/19 16:20,"547 9th St, San Francisco, CA 94016" -298319,AAA Batteries (4-pack),2,2.99,12/29/19 13:30,"959 Walnut St, Los Angeles, CA 90001" -298320,AAA Batteries (4-pack),2,2.99,12/21/19 03:27,"374 6th St, Atlanta, GA 30301" -298321,USB-C Charging Cable,1,11.95,12/21/19 05:58,"183 Spruce St, New York City, NY 10001" -298322,Apple Airpods Headphones,1,150,12/07/19 10:06,"126 2nd St, New York City, NY 10001" -298323,34in Ultrawide Monitor,1,379.99,12/18/19 12:38,"221 Madison St, Portland, OR 97035" -298324,AA Batteries (4-pack),1,3.84,12/17/19 16:23,"955 Meadow St, Portland, ME 04101" -298325,AA Batteries (4-pack),1,3.84,12/13/19 05:43,"385 7th St, Dallas, TX 75001" -298326,USB-C Charging Cable,1,11.95,12/20/19 23:34,"271 Willow St, Portland, OR 97035" -298327,20in Monitor,1,109.99,12/21/19 10:37,"215 Lake St, New York City, NY 10001" -298328,Flatscreen TV,1,300,12/06/19 19:00,"150 Maple St, San Francisco, CA 94016" -298329,Macbook Pro Laptop,1,1700,12/02/19 07:47,"99 Main St, New York City, NY 10001" -298330,USB-C Charging Cable,1,11.95,12/19/19 12:07,"794 Jefferson St, Los Angeles, CA 90001" -298331,Flatscreen TV,1,300,12/23/19 19:43,"876 Pine St, San Francisco, CA 94016" -298332,AA Batteries (4-pack),2,3.84,12/17/19 06:46,"29 7th St, Atlanta, GA 30301" -298333,Bose SoundSport Headphones,1,99.99,12/04/19 18:04,"263 Willow St, San Francisco, CA 94016" -298334,USB-C Charging Cable,1,11.95,12/29/19 15:56,"761 Lakeview St, San Francisco, CA 94016" -298335,AA Batteries (4-pack),1,3.84,12/01/19 18:13,"717 6th St, Dallas, TX 75001" -298336,Macbook Pro Laptop,1,1700,12/06/19 14:08,"456 Lincoln St, San Francisco, CA 94016" -298337,Macbook Pro Laptop,1,1700,12/29/19 12:25,"100 Willow St, New York City, NY 10001" -298338,USB-C Charging Cable,1,11.95,12/30/19 18:38,"878 14th St, Los Angeles, CA 90001" -298339,Apple Airpods Headphones,1,150,12/14/19 14:27,"115 Park St, Portland, ME 04101" -298340,ThinkPad Laptop,1,999.99,12/13/19 13:12,"567 River St, Dallas, TX 75001" -298341,34in Ultrawide Monitor,1,379.99,12/22/19 13:40,"826 12th St, San Francisco, CA 94016" -298342,AA Batteries (4-pack),1,3.84,12/09/19 20:12,"775 Washington St, Los Angeles, CA 90001" -298343,Bose SoundSport Headphones,1,99.99,12/29/19 00:35,"349 Center St, Portland, OR 97035" -298344,Wired Headphones,4,11.99,01/01/20 03:34,"731 7th St, New York City, NY 10001" -298345,USB-C Charging Cable,1,11.95,12/28/19 18:50,"37 Meadow St, Seattle, WA 98101" -298346,27in FHD Monitor,1,149.99,12/21/19 13:03,"345 8th St, Boston, MA 02215" -298347,iPhone,1,700,12/07/19 15:50,"882 7th St, Boston, MA 02215" -298348,Wired Headphones,1,11.99,12/01/19 14:46,"854 Cedar St, Los Angeles, CA 90001" -298349,Wired Headphones,1,11.99,12/03/19 15:33,"668 Center St, Portland, OR 97035" -298350,Apple Airpods Headphones,1,150,12/24/19 04:54,"513 Johnson St, Portland, OR 97035" -298351,AAA Batteries (4-pack),1,2.99,12/24/19 19:12,"469 Park St, Austin, TX 73301" -298352,Lightning Charging Cable,1,14.95,12/20/19 09:10,"393 Cedar St, Boston, MA 02215" -298352,AA Batteries (4-pack),1,3.84,12/20/19 09:10,"393 Cedar St, Boston, MA 02215" -298353,27in FHD Monitor,1,149.99,12/30/19 15:32,"25 Wilson St, Los Angeles, CA 90001" -298354,34in Ultrawide Monitor,1,379.99,12/22/19 10:39,"676 Hill St, San Francisco, CA 94016" -298355,Wired Headphones,1,11.99,12/26/19 14:59,"423 Church St, Atlanta, GA 30301" -298356,iPhone,1,700,12/20/19 18:10,"917 Sunset St, Portland, OR 97035" -298357,Flatscreen TV,1,300,12/09/19 07:25,"834 2nd St, Boston, MA 02215" -298358,Apple Airpods Headphones,1,150,12/04/19 15:57,"482 8th St, San Francisco, CA 94016" -298358,Apple Airpods Headphones,1,150,12/04/19 15:57,"482 8th St, San Francisco, CA 94016" -298359,Apple Airpods Headphones,1,150,12/05/19 19:46,"515 13th St, Seattle, WA 98101" -298360,Lightning Charging Cable,1,14.95,12/26/19 11:40,"44 Wilson St, Boston, MA 02215" -298361,USB-C Charging Cable,1,11.95,12/20/19 14:21,"893 8th St, New York City, NY 10001" -298362,Lightning Charging Cable,1,14.95,12/23/19 10:31,"605 6th St, San Francisco, CA 94016" -298363,Lightning Charging Cable,1,14.95,12/09/19 22:17,"634 13th St, Dallas, TX 75001" -298364,AA Batteries (4-pack),2,3.84,12/02/19 00:38,"26 2nd St, Portland, OR 97035" -298365,Apple Airpods Headphones,1,150,12/11/19 20:46,"458 Cherry St, Dallas, TX 75001" -298366,AAA Batteries (4-pack),1,2.99,12/06/19 14:24,"488 5th St, San Francisco, CA 94016" -298367,AAA Batteries (4-pack),1,2.99,12/19/19 18:24,"353 13th St, Atlanta, GA 30301" -298368,20in Monitor,1,109.99,12/29/19 23:01,"258 6th St, Atlanta, GA 30301" -298369,USB-C Charging Cable,1,11.95,12/30/19 21:33,"199 11th St, Austin, TX 73301" -298370,20in Monitor,1,109.99,12/06/19 08:45,"586 14th St, Atlanta, GA 30301" -298371,Lightning Charging Cable,1,14.95,12/22/19 09:45,"293 7th St, San Francisco, CA 94016" -298372,27in FHD Monitor,1,149.99,12/21/19 03:51,"486 Chestnut St, Boston, MA 02215" -298373,AA Batteries (4-pack),1,3.84,12/16/19 22:37,"486 13th St, San Francisco, CA 94016" -298374,USB-C Charging Cable,1,11.95,12/30/19 20:05,"177 Meadow St, Austin, TX 73301" -298375,Lightning Charging Cable,1,14.95,12/29/19 03:32,"793 Spruce St, Seattle, WA 98101" -298376,AAA Batteries (4-pack),3,2.99,12/05/19 07:53,"382 Church St, Atlanta, GA 30301" -298377,AA Batteries (4-pack),1,3.84,12/31/19 03:08,"580 Washington St, New York City, NY 10001" -298378,AA Batteries (4-pack),2,3.84,12/26/19 04:52,"722 Hill St, Atlanta, GA 30301" -298379,USB-C Charging Cable,1,11.95,12/11/19 12:58,"856 Walnut St, Austin, TX 73301" -298380,Wired Headphones,1,11.99,12/15/19 19:42,"756 Meadow St, San Francisco, CA 94016" -298381,Apple Airpods Headphones,1,150,12/13/19 22:24,"770 Hickory St, San Francisco, CA 94016" -298382,Flatscreen TV,1,300,12/13/19 15:46,"602 10th St, New York City, NY 10001" -298383,Apple Airpods Headphones,1,150,12/10/19 17:40,"487 14th St, Boston, MA 02215" -298384,Bose SoundSport Headphones,1,99.99,12/13/19 20:17,"383 Walnut St, Boston, MA 02215" -298385,AA Batteries (4-pack),2,3.84,12/28/19 10:53,"875 Jackson St, San Francisco, CA 94016" -298386,AAA Batteries (4-pack),1,2.99,12/24/19 15:33,"77 Washington St, Los Angeles, CA 90001" -298387,20in Monitor,1,109.99,12/23/19 11:08,"493 1st St, Seattle, WA 98101" -298388,AA Batteries (4-pack),1,3.84,12/26/19 20:26,"731 Hill St, Los Angeles, CA 90001" -298389,AAA Batteries (4-pack),1,2.99,12/19/19 19:49,"719 4th St, Portland, OR 97035" -298390,Flatscreen TV,1,300,12/30/19 10:13,"93 Meadow St, New York City, NY 10001" -298391,Lightning Charging Cable,1,14.95,12/24/19 13:22,"293 Park St, Atlanta, GA 30301" -298392,AA Batteries (4-pack),1,3.84,12/09/19 10:25,"746 11th St, Los Angeles, CA 90001" -298393,USB-C Charging Cable,1,11.95,12/27/19 14:02,"5 Main St, Boston, MA 02215" -298394,27in 4K Gaming Monitor,1,389.99,12/05/19 14:24,"266 Hill St, Seattle, WA 98101" -298395,27in FHD Monitor,1,149.99,12/17/19 08:31,"528 River St, San Francisco, CA 94016" -298396,Apple Airpods Headphones,1,150,12/08/19 22:34,"678 Spruce St, San Francisco, CA 94016" -298397,27in 4K Gaming Monitor,1,389.99,12/26/19 17:44,"489 Hill St, Los Angeles, CA 90001" -298398,Macbook Pro Laptop,1,1700,12/11/19 14:47,"662 Ridge St, San Francisco, CA 94016" -298399,20in Monitor,1,109.99,12/31/19 03:14,"165 Sunset St, San Francisco, CA 94016" -298400,AA Batteries (4-pack),1,3.84,12/31/19 19:09,"391 Hickory St, Los Angeles, CA 90001" -298401,USB-C Charging Cable,1,11.95,12/30/19 23:53,"828 Wilson St, Atlanta, GA 30301" -298402,27in FHD Monitor,1,149.99,12/14/19 16:51,"615 Center St, Atlanta, GA 30301" -298403,iPhone,1,700,12/27/19 13:21,"945 Center St, New York City, NY 10001" -298404,Flatscreen TV,1,300,12/03/19 13:49,"236 9th St, San Francisco, CA 94016" -298405,Bose SoundSport Headphones,1,99.99,12/17/19 11:35,"764 Cherry St, San Francisco, CA 94016" -298406,AAA Batteries (4-pack),2,2.99,12/31/19 23:42,"30 Elm St, San Francisco, CA 94016" -298407,AAA Batteries (4-pack),1,2.99,12/31/19 16:49,"429 Sunset St, San Francisco, CA 94016" -298408,Bose SoundSport Headphones,1,99.99,12/21/19 13:59,"873 4th St, Atlanta, GA 30301" -298409,AA Batteries (4-pack),1,3.84,12/13/19 10:59,"702 South St, Boston, MA 02215" -298410,27in FHD Monitor,1,149.99,12/01/19 22:38,"893 Lakeview St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -298411,Apple Airpods Headphones,1,150,12/09/19 19:31,"363 5th St, Austin, TX 73301" -298412,Wired Headphones,1,11.99,12/27/19 10:06,"902 Johnson St, Los Angeles, CA 90001" -298413,AA Batteries (4-pack),1,3.84,12/03/19 13:46,"307 Walnut St, Seattle, WA 98101" -298414,LG Dryer,1,600.0,12/20/19 18:42,"74 Willow St, Los Angeles, CA 90001" -298415,34in Ultrawide Monitor,1,379.99,12/22/19 16:45,"613 Dogwood St, Boston, MA 02215" -298416,Wired Headphones,1,11.99,12/25/19 18:46,"645 1st St, Austin, TX 73301" -298417,Lightning Charging Cable,1,14.95,12/22/19 12:00,"305 Lakeview St, Portland, OR 97035" -298418,USB-C Charging Cable,2,11.95,12/26/19 06:35,"606 Dogwood St, Dallas, TX 75001" -298419,AAA Batteries (4-pack),6,2.99,12/02/19 08:40,"605 13th St, Dallas, TX 75001" -298420,AA Batteries (4-pack),1,3.84,12/10/19 14:02,"756 Wilson St, San Francisco, CA 94016" -298421,27in 4K Gaming Monitor,1,389.99,12/13/19 01:00,"934 9th St, Atlanta, GA 30301" -298422,Lightning Charging Cable,1,14.95,12/19/19 20:24,"249 Wilson St, Dallas, TX 75001" -298423,Apple Airpods Headphones,1,150,12/14/19 17:46,"617 Lakeview St, Portland, OR 97035" -298424,Macbook Pro Laptop,1,1700,12/03/19 10:14,"742 2nd St, Austin, TX 73301" -298425,USB-C Charging Cable,1,11.95,12/05/19 13:18,"124 Church St, Seattle, WA 98101" -298426,LG Dryer,1,600.0,12/31/19 07:45,"472 Willow St, Austin, TX 73301" -298427,USB-C Charging Cable,1,11.95,12/28/19 21:02,"652 Lake St, Portland, OR 97035" -298428,34in Ultrawide Monitor,1,379.99,12/01/19 14:04,"971 North St, New York City, NY 10001" -298429,Bose SoundSport Headphones,1,99.99,12/07/19 12:38,"762 Ridge St, San Francisco, CA 94016" -298430,Macbook Pro Laptop,1,1700,12/20/19 08:39,"229 Lake St, Portland, OR 97035" -298431,AA Batteries (4-pack),1,3.84,12/08/19 17:06,"333 Johnson St, New York City, NY 10001" -298432,Bose SoundSport Headphones,1,99.99,12/18/19 10:05,"406 Hill St, Portland, ME 04101" -298433,USB-C Charging Cable,1,11.95,12/13/19 07:58,"661 Madison St, Austin, TX 73301" -298434,iPhone,1,700,12/11/19 21:39,"807 6th St, Boston, MA 02215" -298435,AA Batteries (4-pack),1,3.84,12/18/19 16:18,"176 Hill St, Los Angeles, CA 90001" -298436,Wired Headphones,1,11.99,12/03/19 12:39,"493 Adams St, Boston, MA 02215" -298437,27in FHD Monitor,1,149.99,12/07/19 13:10,"924 River St, Boston, MA 02215" -298438,USB-C Charging Cable,1,11.95,12/31/19 16:35,"73 Highland St, San Francisco, CA 94016" -298439,USB-C Charging Cable,1,11.95,12/15/19 17:43,"11 Main St, Seattle, WA 98101" -298440,AA Batteries (4-pack),3,3.84,12/18/19 16:15,"336 Walnut St, New York City, NY 10001" -298441,Apple Airpods Headphones,1,150,12/25/19 00:32,"791 Jefferson St, New York City, NY 10001" -298442,Lightning Charging Cable,2,14.95,12/18/19 11:10,"974 Maple St, New York City, NY 10001" -298443,Apple Airpods Headphones,1,150,12/03/19 23:52,"143 Lakeview St, New York City, NY 10001" -298444,USB-C Charging Cable,1,11.95,12/24/19 19:36,"32 12th St, Dallas, TX 75001" -298445,27in FHD Monitor,1,149.99,12/03/19 21:32,"442 Walnut St, San Francisco, CA 94016" -298446,Macbook Pro Laptop,1,1700,12/02/19 23:33,"705 Willow St, New York City, NY 10001" -298447,Lightning Charging Cable,1,14.95,12/31/19 19:29,"939 5th St, Austin, TX 73301" -298448,Wired Headphones,1,11.99,12/12/19 16:56,"85 Lake St, Austin, TX 73301" -298449,Lightning Charging Cable,1,14.95,12/21/19 18:56,"313 9th St, San Francisco, CA 94016" -298450,Apple Airpods Headphones,1,150,12/01/19 10:05,"312 Main St, San Francisco, CA 94016" -298451,Wired Headphones,1,11.99,12/29/19 21:04,"134 11th St, Boston, MA 02215" -298452,Wired Headphones,1,11.99,12/31/19 10:07,"764 Lake St, Los Angeles, CA 90001" -298453,AA Batteries (4-pack),1,3.84,12/17/19 21:54,"880 Adams St, San Francisco, CA 94016" -298454,AAA Batteries (4-pack),3,2.99,12/09/19 10:21,"103 Jefferson St, Los Angeles, CA 90001" -298455,20in Monitor,1,109.99,12/22/19 09:19,"702 Wilson St, New York City, NY 10001" -298456,Lightning Charging Cable,1,14.95,12/20/19 17:48,"700 Dogwood St, Boston, MA 02215" -298457,Lightning Charging Cable,1,14.95,12/07/19 20:17,"848 River St, San Francisco, CA 94016" -298458,iPhone,1,700,12/04/19 19:02,"371 Center St, Los Angeles, CA 90001" -298458,Wired Headphones,1,11.99,12/04/19 19:02,"371 Center St, Los Angeles, CA 90001" -298459,Apple Airpods Headphones,1,150,12/29/19 20:02,"145 Chestnut St, Atlanta, GA 30301" -298460,USB-C Charging Cable,1,11.95,12/15/19 10:55,"53 Wilson St, New York City, NY 10001" -298461,Lightning Charging Cable,1,14.95,12/04/19 12:47,"306 Hill St, Los Angeles, CA 90001" -298462,Flatscreen TV,1,300,12/08/19 12:04,"347 Jackson St, Seattle, WA 98101" -298463,AA Batteries (4-pack),2,3.84,12/29/19 23:06,"210 Adams St, San Francisco, CA 94016" -298464,Lightning Charging Cable,1,14.95,12/24/19 20:35,"32 14th St, New York City, NY 10001" -298464,Bose SoundSport Headphones,1,99.99,12/24/19 20:35,"32 14th St, New York City, NY 10001" -298465,iPhone,1,700,12/04/19 17:26,"852 Maple St, Dallas, TX 75001" -298466,27in 4K Gaming Monitor,1,389.99,12/07/19 13:44,"41 River St, Los Angeles, CA 90001" -298466,Wired Headphones,1,11.99,12/07/19 13:44,"41 River St, Los Angeles, CA 90001" -298467,AA Batteries (4-pack),1,3.84,12/07/19 11:43,"486 Sunset St, Seattle, WA 98101" -298468,iPhone,1,700,12/03/19 13:38,"362 Pine St, New York City, NY 10001" -298469,Bose SoundSport Headphones,1,99.99,12/11/19 10:26,"784 Lakeview St, San Francisco, CA 94016" -298470,Flatscreen TV,1,300,12/12/19 22:11,"98 North St, Boston, MA 02215" -298471,20in Monitor,1,109.99,12/05/19 11:14,"549 Meadow St, San Francisco, CA 94016" -298472,Macbook Pro Laptop,1,1700,12/14/19 13:24,"919 Jackson St, Boston, MA 02215" -298473,USB-C Charging Cable,1,11.95,12/11/19 12:19,"343 Hill St, San Francisco, CA 94016" -298474,AAA Batteries (4-pack),1,2.99,12/30/19 18:54,"149 Highland St, New York City, NY 10001" -298475,Macbook Pro Laptop,1,1700,12/15/19 11:38,"880 Maple St, New York City, NY 10001" -298475,Lightning Charging Cable,1,14.95,12/15/19 11:38,"880 Maple St, New York City, NY 10001" -298476,27in FHD Monitor,1,149.99,12/17/19 16:20,"302 Ridge St, New York City, NY 10001" -298477,Wired Headphones,1,11.99,12/06/19 09:49,"801 8th St, Seattle, WA 98101" -298478,Lightning Charging Cable,1,14.95,12/25/19 09:49,"947 Hickory St, Boston, MA 02215" -298479,Lightning Charging Cable,1,14.95,12/11/19 09:21,"396 8th St, San Francisco, CA 94016" -298480,AA Batteries (4-pack),2,3.84,12/12/19 20:12,"125 Spruce St, New York City, NY 10001" -298481,AA Batteries (4-pack),1,3.84,12/13/19 16:35,"583 Hill St, New York City, NY 10001" -298482,USB-C Charging Cable,1,11.95,12/06/19 16:06,"199 Madison St, Seattle, WA 98101" -298483,Lightning Charging Cable,1,14.95,12/03/19 09:45,"928 Pine St, Los Angeles, CA 90001" -298483,iPhone,1,700,12/03/19 09:45,"928 Pine St, Los Angeles, CA 90001" -298484,27in FHD Monitor,1,149.99,12/29/19 12:57,"30 Johnson St, Atlanta, GA 30301" -298485,20in Monitor,1,109.99,12/19/19 14:34,"713 Forest St, San Francisco, CA 94016" -298486,Lightning Charging Cable,1,14.95,12/12/19 09:48,"61 Madison St, Boston, MA 02215" -298487,AAA Batteries (4-pack),2,2.99,12/07/19 20:46,"378 Center St, New York City, NY 10001" -298488,Lightning Charging Cable,1,14.95,12/30/19 11:33,"60 Forest St, Boston, MA 02215" -298489,Macbook Pro Laptop,1,1700,12/12/19 11:11,"561 West St, Austin, TX 73301" -298490,Apple Airpods Headphones,1,150,12/18/19 12:19,"438 Chestnut St, Portland, ME 04101" -298491,34in Ultrawide Monitor,1,379.99,12/06/19 22:40,"259 Hill St, Los Angeles, CA 90001" -298492,Lightning Charging Cable,1,14.95,12/13/19 00:05,"476 13th St, San Francisco, CA 94016" -298493,AA Batteries (4-pack),1,3.84,12/25/19 00:29,"58 Dogwood St, Boston, MA 02215" -298494,USB-C Charging Cable,1,11.95,12/02/19 17:41,"175 River St, San Francisco, CA 94016" -298495,AAA Batteries (4-pack),1,2.99,12/03/19 12:11,"628 Main St, New York City, NY 10001" -298496,USB-C Charging Cable,1,11.95,12/03/19 09:11,"549 Meadow St, Boston, MA 02215" -298497,iPhone,1,700,12/13/19 11:57,"388 Lincoln St, Atlanta, GA 30301" -298498,Lightning Charging Cable,1,14.95,12/11/19 14:29,"337 5th St, Austin, TX 73301" -298499,Lightning Charging Cable,1,14.95,12/31/19 09:30,"868 Cedar St, San Francisco, CA 94016" -298500,Lightning Charging Cable,1,14.95,12/11/19 11:51,"89 Lincoln St, New York City, NY 10001" -298501,AA Batteries (4-pack),1,3.84,12/02/19 14:50,"130 5th St, Seattle, WA 98101" -298502,Wired Headphones,1,11.99,12/22/19 23:31,"114 6th St, Seattle, WA 98101" -298503,AA Batteries (4-pack),2,3.84,12/27/19 18:30,"981 10th St, Portland, ME 04101" -298504,AAA Batteries (4-pack),1,2.99,12/30/19 12:25,"946 Pine St, Seattle, WA 98101" -298505,AA Batteries (4-pack),3,3.84,12/16/19 01:37,"860 Maple St, Los Angeles, CA 90001" -298506,AAA Batteries (4-pack),1,2.99,12/17/19 23:23,"382 11th St, Portland, OR 97035" -298507,AA Batteries (4-pack),1,3.84,12/12/19 00:12,"733 12th St, San Francisco, CA 94016" -298508,Vareebadd Phone,1,400,12/30/19 19:23,"377 Elm St, Austin, TX 73301" -298508,USB-C Charging Cable,1,11.95,12/30/19 19:23,"377 Elm St, Austin, TX 73301" -298509,Macbook Pro Laptop,1,1700,12/12/19 02:12,"411 Lake St, Portland, OR 97035" -298510,Wired Headphones,1,11.99,12/04/19 13:58,"810 Willow St, New York City, NY 10001" -298511,Lightning Charging Cable,2,14.95,12/04/19 17:21,"660 Walnut St, San Francisco, CA 94016" -298512,Apple Airpods Headphones,1,150,12/11/19 00:28,"675 Elm St, Seattle, WA 98101" -298513,Lightning Charging Cable,1,14.95,12/14/19 10:23,"233 Elm St, Dallas, TX 75001" -298514,Lightning Charging Cable,1,14.95,12/28/19 19:25,"573 Main St, Portland, OR 97035" -298515,34in Ultrawide Monitor,1,379.99,12/27/19 08:42,"577 10th St, Los Angeles, CA 90001" -298516,AA Batteries (4-pack),2,3.84,12/13/19 18:17,"543 Park St, Atlanta, GA 30301" -298517,Bose SoundSport Headphones,1,99.99,12/14/19 16:52,"298 Johnson St, New York City, NY 10001" -298518,AAA Batteries (4-pack),2,2.99,12/22/19 12:00,"467 Elm St, Boston, MA 02215" -298519,Lightning Charging Cable,1,14.95,12/04/19 13:56,"703 North St, San Francisco, CA 94016" -298520,Wired Headphones,2,11.99,12/27/19 15:17,"604 12th St, New York City, NY 10001" -298521,AAA Batteries (4-pack),1,2.99,12/15/19 17:16,"421 12th St, Austin, TX 73301" -298522,Vareebadd Phone,1,400,12/06/19 15:59,"365 Lakeview St, Atlanta, GA 30301" -298523,USB-C Charging Cable,1,11.95,12/04/19 11:34,"234 Hickory St, San Francisco, CA 94016" -298524,LG Dryer,1,600.0,12/29/19 13:04,"886 9th St, San Francisco, CA 94016" -298525,Wired Headphones,1,11.99,12/21/19 23:18,"618 Forest St, Boston, MA 02215" -298526,AA Batteries (4-pack),1,3.84,12/15/19 18:31,"221 Pine St, New York City, NY 10001" -298527,Lightning Charging Cable,1,14.95,12/02/19 22:31,"237 South St, Los Angeles, CA 90001" -298528,Flatscreen TV,1,300,12/30/19 23:50,"851 Cherry St, Seattle, WA 98101" -298529,Lightning Charging Cable,1,14.95,12/29/19 22:13,"374 5th St, Austin, TX 73301" -298530,Bose SoundSport Headphones,1,99.99,12/30/19 18:12,"529 Lincoln St, San Francisco, CA 94016" -298531,Macbook Pro Laptop,1,1700,12/04/19 19:16,"344 Adams St, San Francisco, CA 94016" -298532,AAA Batteries (4-pack),1,2.99,12/10/19 15:32,"490 6th St, San Francisco, CA 94016" -298533,AAA Batteries (4-pack),1,2.99,12/30/19 18:08,"398 Elm St, Los Angeles, CA 90001" -298534,AAA Batteries (4-pack),1,2.99,12/30/19 10:30,"672 Church St, San Francisco, CA 94016" -298535,Wired Headphones,1,11.99,12/12/19 20:37,"543 Walnut St, Atlanta, GA 30301" -298536,Wired Headphones,1,11.99,12/01/19 13:24,"121 4th St, New York City, NY 10001" -298537,USB-C Charging Cable,1,11.95,12/10/19 19:45,"479 4th St, Los Angeles, CA 90001" -298538,Apple Airpods Headphones,1,150,12/05/19 11:23,"729 Elm St, San Francisco, CA 94016" -298539,USB-C Charging Cable,1,11.95,12/12/19 13:30,"507 Cherry St, Boston, MA 02215" -298540,Flatscreen TV,1,300,12/10/19 20:32,"908 6th St, Los Angeles, CA 90001" -298541,Bose SoundSport Headphones,1,99.99,12/03/19 09:05,"762 Highland St, Los Angeles, CA 90001" -298542,Bose SoundSport Headphones,1,99.99,12/05/19 11:54,"174 6th St, Atlanta, GA 30301" -298543,Flatscreen TV,1,300,12/16/19 11:05,"787 4th St, Los Angeles, CA 90001" -298544,Wired Headphones,1,11.99,12/26/19 00:11,"649 South St, Atlanta, GA 30301" -298545,Lightning Charging Cable,1,14.95,12/24/19 19:46,"594 Adams St, Portland, ME 04101" -298546,Lightning Charging Cable,1,14.95,12/03/19 13:04,"719 7th St, Los Angeles, CA 90001" -298547,iPhone,1,700,12/10/19 15:05,"6 Maple St, Dallas, TX 75001" -298548,AAA Batteries (4-pack),1,2.99,12/27/19 08:52,"265 Church St, San Francisco, CA 94016" -298549,AA Batteries (4-pack),1,3.84,12/07/19 15:08,"101 10th St, Atlanta, GA 30301" -298550,Bose SoundSport Headphones,1,99.99,12/10/19 11:39,"699 Johnson St, Los Angeles, CA 90001" -298551,Flatscreen TV,1,300,12/13/19 11:41,"449 9th St, New York City, NY 10001" -298552,Apple Airpods Headphones,1,150,12/06/19 08:22,"56 Church St, Los Angeles, CA 90001" -298553,AA Batteries (4-pack),1,3.84,12/17/19 13:19,"418 10th St, San Francisco, CA 94016" -298554,Wired Headphones,2,11.99,12/27/19 13:21,"106 12th St, San Francisco, CA 94016" -298555,Wired Headphones,1,11.99,12/18/19 14:56,"675 Madison St, San Francisco, CA 94016" -298556,Wired Headphones,1,11.99,12/14/19 17:24,"87 Dogwood St, Dallas, TX 75001" -298557,Lightning Charging Cable,1,14.95,12/01/19 20:03,"577 7th St, Los Angeles, CA 90001" -298558,Lightning Charging Cable,1,14.95,12/24/19 11:54,"980 Jefferson St, Dallas, TX 75001" -298559,AAA Batteries (4-pack),1,2.99,12/28/19 08:09,"555 5th St, San Francisco, CA 94016" -298560,Bose SoundSport Headphones,1,99.99,12/28/19 14:47,"356 7th St, Portland, OR 97035" -298561,27in 4K Gaming Monitor,1,389.99,12/11/19 19:41,"806 1st St, San Francisco, CA 94016" -298562,iPhone,1,700,12/17/19 10:43,"202 Spruce St, San Francisco, CA 94016" -298563,USB-C Charging Cable,1,11.95,12/31/19 20:10,"22 12th St, Dallas, TX 75001" -298564,Macbook Pro Laptop,1,1700,12/10/19 19:43,"170 West St, San Francisco, CA 94016" -298565,Lightning Charging Cable,1,14.95,12/30/19 09:12,"196 North St, Los Angeles, CA 90001" -298566,Macbook Pro Laptop,1,1700,12/03/19 18:59,"43 Cedar St, Boston, MA 02215" -298567,Lightning Charging Cable,1,14.95,12/07/19 14:15,"875 Willow St, Los Angeles, CA 90001" -298568,Wired Headphones,2,11.99,12/20/19 19:49,"159 Pine St, Boston, MA 02215" -298569,Apple Airpods Headphones,1,150,12/25/19 13:32,"662 5th St, Boston, MA 02215" -298570,AA Batteries (4-pack),2,3.84,12/07/19 10:18,"268 Hill St, Atlanta, GA 30301" -298571,Lightning Charging Cable,1,14.95,12/28/19 17:55,"546 Sunset St, Los Angeles, CA 90001" -298572,27in 4K Gaming Monitor,1,389.99,12/15/19 12:41,"498 9th St, Austin, TX 73301" -,,,,, -298573,Lightning Charging Cable,1,14.95,12/03/19 11:32,"421 Center St, Portland, OR 97035" -298574,27in FHD Monitor,1,149.99,12/12/19 12:19,"567 Walnut St, Atlanta, GA 30301" -298575,Lightning Charging Cable,1,14.95,12/17/19 19:44,"82 Ridge St, Portland, OR 97035" -298576,Wired Headphones,1,11.99,12/05/19 16:16,"692 13th St, Los Angeles, CA 90001" -298577,Lightning Charging Cable,1,14.95,12/06/19 06:43,"421 Church St, Portland, OR 97035" -298578,AA Batteries (4-pack),2,3.84,12/18/19 18:58,"348 Hill St, New York City, NY 10001" -298579,Wired Headphones,1,11.99,12/02/19 20:08,"722 9th St, New York City, NY 10001" -298580,Wired Headphones,1,11.99,12/08/19 08:00,"428 South St, Los Angeles, CA 90001" -298581,Apple Airpods Headphones,1,150,12/12/19 18:18,"896 Hill St, New York City, NY 10001" -298582,20in Monitor,1,109.99,12/25/19 14:43,"750 Lake St, San Francisco, CA 94016" -298583,Macbook Pro Laptop,1,1700,12/11/19 11:27,"934 2nd St, Boston, MA 02215" -298584,USB-C Charging Cable,1,11.95,12/27/19 10:44,"625 Highland St, Los Angeles, CA 90001" -298585,27in 4K Gaming Monitor,1,389.99,12/29/19 11:19,"231 Hill St, San Francisco, CA 94016" -298586,AAA Batteries (4-pack),4,2.99,12/19/19 14:32,"351 Park St, Los Angeles, CA 90001" -298587,USB-C Charging Cable,3,11.95,12/19/19 13:06,"917 South St, Los Angeles, CA 90001" -298588,Flatscreen TV,1,300,12/13/19 12:08,"368 6th St, Boston, MA 02215" -298589,AAA Batteries (4-pack),4,2.99,12/09/19 16:27,"532 2nd St, Dallas, TX 75001" -298590,27in FHD Monitor,1,149.99,12/21/19 14:23,"868 Lakeview St, New York City, NY 10001" -298591,AAA Batteries (4-pack),1,2.99,12/19/19 01:00,"238 Cedar St, San Francisco, CA 94016" -298592,AAA Batteries (4-pack),1,2.99,12/10/19 10:17,"824 Adams St, Dallas, TX 75001" -298593,34in Ultrawide Monitor,1,379.99,12/31/19 10:16,"515 Adams St, Los Angeles, CA 90001" -298594,AAA Batteries (4-pack),1,2.99,12/23/19 13:11,"665 Cherry St, San Francisco, CA 94016" -298595,34in Ultrawide Monitor,1,379.99,12/02/19 10:55,"575 Highland St, Los Angeles, CA 90001" -298596,AAA Batteries (4-pack),1,2.99,12/24/19 18:45,"118 Center St, San Francisco, CA 94016" -298597,USB-C Charging Cable,1,11.95,12/21/19 08:52,"527 South St, Portland, OR 97035" -298598,Wired Headphones,2,11.99,12/19/19 21:16,"22 River St, San Francisco, CA 94016" -298599,Lightning Charging Cable,1,14.95,12/14/19 22:03,"200 Spruce St, Boston, MA 02215" -298600,AA Batteries (4-pack),2,3.84,12/12/19 15:46,"809 South St, Boston, MA 02215" -298601,Lightning Charging Cable,1,14.95,12/20/19 12:53,"525 Lincoln St, San Francisco, CA 94016" -298602,Apple Airpods Headphones,1,150,12/11/19 10:57,"491 Cherry St, Portland, OR 97035" -298603,Flatscreen TV,1,300,12/29/19 16:21,"733 4th St, San Francisco, CA 94016" -298604,Bose SoundSport Headphones,1,99.99,12/17/19 07:13,"406 Jackson St, Portland, OR 97035" -298605,Macbook Pro Laptop,1,1700,12/14/19 16:26,"142 West St, Boston, MA 02215" -298606,USB-C Charging Cable,1,11.95,12/31/19 21:40,"675 10th St, Los Angeles, CA 90001" -298607,Bose SoundSport Headphones,1,99.99,12/31/19 10:19,"135 Elm St, Boston, MA 02215" -298608,27in 4K Gaming Monitor,1,389.99,12/12/19 21:12,"438 Main St, San Francisco, CA 94016" -298609,Apple Airpods Headphones,1,150,12/17/19 10:13,"847 Main St, San Francisco, CA 94016" -298610,Lightning Charging Cable,1,14.95,12/16/19 19:43,"272 5th St, San Francisco, CA 94016" -298611,Flatscreen TV,1,300,12/29/19 21:11,"949 6th St, Portland, OR 97035" -298612,20in Monitor,1,109.99,12/02/19 15:19,"969 7th St, Seattle, WA 98101" -298613,Lightning Charging Cable,1,14.95,12/31/19 11:30,"423 11th St, San Francisco, CA 94016" -298614,Google Phone,1,600,12/01/19 09:25,"9 Dogwood St, New York City, NY 10001" -298615,Lightning Charging Cable,1,14.95,12/27/19 19:13,"945 North St, Portland, OR 97035" -298616,Wired Headphones,1,11.99,12/09/19 21:43,"755 Dogwood St, New York City, NY 10001" -298617,Lightning Charging Cable,1,14.95,12/25/19 21:08,"873 Adams St, New York City, NY 10001" -298618,Wired Headphones,1,11.99,12/24/19 12:59,"345 10th St, Dallas, TX 75001" -298619,Wired Headphones,1,11.99,12/08/19 15:51,"5 10th St, Los Angeles, CA 90001" -298620,USB-C Charging Cable,1,11.95,12/30/19 08:57,"43 Wilson St, New York City, NY 10001" -298621,USB-C Charging Cable,2,11.95,12/14/19 20:46,"125 1st St, San Francisco, CA 94016" -298622,ThinkPad Laptop,1,999.99,12/12/19 08:03,"332 Hill St, New York City, NY 10001" -298623,Apple Airpods Headphones,1,150,12/03/19 21:10,"691 11th St, Seattle, WA 98101" -298624,Lightning Charging Cable,1,14.95,12/07/19 10:13,"504 14th St, Portland, OR 97035" -298625,LG Dryer,1,600.0,12/25/19 21:34,"460 Ridge St, Dallas, TX 75001" -298626,AAA Batteries (4-pack),1,2.99,12/17/19 13:07,"961 Dogwood St, New York City, NY 10001" -298627,Bose SoundSport Headphones,1,99.99,12/05/19 18:45,"185 Madison St, San Francisco, CA 94016" -298628,Google Phone,1,600,12/08/19 11:20,"883 10th St, Atlanta, GA 30301" -298629,Lightning Charging Cable,1,14.95,12/12/19 20:39,"893 8th St, Los Angeles, CA 90001" -298630,Lightning Charging Cable,1,14.95,12/08/19 05:45,"807 2nd St, San Francisco, CA 94016" -298631,AAA Batteries (4-pack),1,2.99,12/25/19 21:41,"596 Jackson St, Dallas, TX 75001" -298632,USB-C Charging Cable,1,11.95,12/24/19 08:40,"538 Sunset St, San Francisco, CA 94016" -298633,34in Ultrawide Monitor,1,379.99,12/07/19 18:40,"300 Pine St, Boston, MA 02215" -298634,AA Batteries (4-pack),1,3.84,12/05/19 12:17,"554 5th St, San Francisco, CA 94016" -298635,Wired Headphones,1,11.99,12/01/19 14:41,"104 14th St, Austin, TX 73301" -298636,Macbook Pro Laptop,1,1700,12/23/19 16:38,"972 14th St, Portland, OR 97035" -298637,Bose SoundSport Headphones,1,99.99,12/30/19 20:34,"787 Cedar St, Los Angeles, CA 90001" -298638,Apple Airpods Headphones,1,150,12/27/19 12:30,"289 Forest St, Boston, MA 02215" -298639,AAA Batteries (4-pack),1,2.99,12/31/19 12:14,"469 Highland St, Dallas, TX 75001" -298640,AA Batteries (4-pack),2,3.84,12/19/19 11:45,"315 Wilson St, Los Angeles, CA 90001" -298641,AA Batteries (4-pack),1,3.84,12/25/19 11:15,"403 Lake St, Los Angeles, CA 90001" -298642,AAA Batteries (4-pack),1,2.99,12/31/19 13:04,"420 Meadow St, Boston, MA 02215" -298643,Macbook Pro Laptop,1,1700,12/04/19 18:11,"466 6th St, Seattle, WA 98101" -298644,Bose SoundSport Headphones,1,99.99,12/26/19 09:27,"526 Forest St, San Francisco, CA 94016" -298645,Google Phone,1,600,12/20/19 15:45,"75 Spruce St, San Francisco, CA 94016" -298646,Flatscreen TV,1,300,12/04/19 17:28,"177 Washington St, Atlanta, GA 30301" -298647,AA Batteries (4-pack),1,3.84,12/18/19 11:02,"665 North St, Portland, OR 97035" -298648,Wired Headphones,1,11.99,12/10/19 06:07,"423 Lake St, Portland, OR 97035" -298649,Lightning Charging Cable,1,14.95,12/20/19 22:00,"455 Madison St, Boston, MA 02215" -298650,ThinkPad Laptop,1,999.99,12/26/19 13:37,"611 Elm St, Atlanta, GA 30301" -298651,Lightning Charging Cable,1,14.95,12/27/19 23:42,"796 Washington St, Seattle, WA 98101" -298652,Wired Headphones,1,11.99,12/23/19 10:55,"20 Center St, Los Angeles, CA 90001" -298652,USB-C Charging Cable,1,11.95,12/23/19 10:55,"20 Center St, Los Angeles, CA 90001" -298653,Macbook Pro Laptop,1,1700,12/04/19 18:10,"377 Willow St, New York City, NY 10001" -298654,AA Batteries (4-pack),1,3.84,12/19/19 10:10,"980 Pine St, Los Angeles, CA 90001" -298655,Google Phone,1,600,12/03/19 20:32,"770 Maple St, San Francisco, CA 94016" -298656,Google Phone,1,600,12/06/19 13:51,"718 North St, San Francisco, CA 94016" -298657,Lightning Charging Cable,1,14.95,12/01/19 18:22,"428 12th St, Atlanta, GA 30301" -298657,Lightning Charging Cable,1,14.95,12/01/19 18:22,"428 12th St, Atlanta, GA 30301" -298658,iPhone,1,700,12/11/19 14:51,"388 Washington St, San Francisco, CA 94016" -298658,Apple Airpods Headphones,1,150,12/11/19 14:51,"388 Washington St, San Francisco, CA 94016" -298659,27in FHD Monitor,1,149.99,12/26/19 19:26,"278 Park St, Austin, TX 73301" -298660,Wired Headphones,1,11.99,12/10/19 12:57,"781 5th St, Los Angeles, CA 90001" -298661,Apple Airpods Headphones,1,150,12/16/19 19:28,"967 Lincoln St, New York City, NY 10001" -298662,Google Phone,1,600,12/09/19 09:39,"54 Hickory St, San Francisco, CA 94016" -298662,USB-C Charging Cable,1,11.95,12/09/19 09:39,"54 Hickory St, San Francisco, CA 94016" -298663,27in 4K Gaming Monitor,1,389.99,12/19/19 21:23,"186 Jackson St, Seattle, WA 98101" -298664,AAA Batteries (4-pack),1,2.99,12/30/19 13:32,"873 Willow St, San Francisco, CA 94016" -298665,LG Washing Machine,1,600.0,12/20/19 18:16,"450 11th St, Seattle, WA 98101" -298666,USB-C Charging Cable,1,11.95,12/18/19 12:39,"334 Johnson St, Los Angeles, CA 90001" -298667,ThinkPad Laptop,1,999.99,12/30/19 13:38,"444 Elm St, San Francisco, CA 94016" -298668,Bose SoundSport Headphones,1,99.99,12/30/19 14:23,"420 Sunset St, San Francisco, CA 94016" -298669,AA Batteries (4-pack),1,3.84,12/31/19 21:45,"610 8th St, San Francisco, CA 94016" -298670,27in 4K Gaming Monitor,1,389.99,12/02/19 20:48,"688 8th St, San Francisco, CA 94016" -298671,Lightning Charging Cable,1,14.95,12/08/19 23:08,"678 Wilson St, San Francisco, CA 94016" -298672,Lightning Charging Cable,1,14.95,12/22/19 19:30,"915 Cherry St, New York City, NY 10001" -298673,Bose SoundSport Headphones,1,99.99,12/14/19 11:51,"919 Sunset St, Seattle, WA 98101" -298674,Lightning Charging Cable,3,14.95,12/06/19 22:23,"720 12th St, Atlanta, GA 30301" -298675,ThinkPad Laptop,1,999.99,12/02/19 19:12,"925 8th St, New York City, NY 10001" -298676,Google Phone,1,600,12/16/19 10:54,"383 Johnson St, Atlanta, GA 30301" -298677,USB-C Charging Cable,1,11.95,12/25/19 10:31,"421 Elm St, San Francisco, CA 94016" -298678,20in Monitor,1,109.99,12/24/19 08:32,"682 14th St, San Francisco, CA 94016" -298679,Wired Headphones,1,11.99,12/08/19 11:32,"851 River St, Los Angeles, CA 90001" -298680,Lightning Charging Cable,2,14.95,12/11/19 08:15,"563 River St, Seattle, WA 98101" -298681,AAA Batteries (4-pack),1,2.99,12/12/19 22:02,"232 1st St, San Francisco, CA 94016" -298682,AAA Batteries (4-pack),1,2.99,12/25/19 16:16,"101 Church St, San Francisco, CA 94016" -298682,Apple Airpods Headphones,1,150,12/25/19 16:16,"101 Church St, San Francisco, CA 94016" -298683,Apple Airpods Headphones,1,150,12/31/19 15:34,"741 10th St, San Francisco, CA 94016" -298684,AA Batteries (4-pack),1,3.84,12/10/19 16:56,"711 Spruce St, San Francisco, CA 94016" -298685,AAA Batteries (4-pack),1,2.99,12/10/19 18:40,"414 Main St, Dallas, TX 75001" -298686,34in Ultrawide Monitor,1,379.99,12/01/19 21:33,"282 Ridge St, Dallas, TX 75001" -298687,27in 4K Gaming Monitor,1,389.99,12/25/19 21:30,"632 West St, Austin, TX 73301" -298688,AAA Batteries (4-pack),1,2.99,12/04/19 11:26,"376 Lakeview St, Los Angeles, CA 90001" -298689,34in Ultrawide Monitor,1,379.99,12/13/19 22:26,"187 13th St, Los Angeles, CA 90001" -298690,Apple Airpods Headphones,1,150,12/29/19 06:43,"606 Washington St, Los Angeles, CA 90001" -298691,Flatscreen TV,1,300,12/31/19 19:56,"345 Forest St, Portland, OR 97035" -298692,AAA Batteries (4-pack),1,2.99,12/06/19 13:39,"498 13th St, Dallas, TX 75001" -298692,ThinkPad Laptop,1,999.99,12/06/19 13:39,"498 13th St, Dallas, TX 75001" -298693,Apple Airpods Headphones,1,150,12/22/19 16:57,"299 Church St, Boston, MA 02215" -298694,Flatscreen TV,1,300,12/24/19 22:26,"626 Park St, Portland, OR 97035" -298695,AAA Batteries (4-pack),3,2.99,12/26/19 13:05,"166 Willow St, Atlanta, GA 30301" -298696,Flatscreen TV,1,300,12/17/19 19:56,"145 Wilson St, San Francisco, CA 94016" -298697,Wired Headphones,1,11.99,12/27/19 01:13,"24 Elm St, Portland, ME 04101" -298698,AA Batteries (4-pack),1,3.84,12/23/19 05:00,"616 Washington St, San Francisco, CA 94016" -298698,Lightning Charging Cable,1,14.95,12/23/19 05:00,"616 Washington St, San Francisco, CA 94016" -298699,USB-C Charging Cable,2,11.95,12/14/19 09:25,"129 Lake St, Boston, MA 02215" -298700,AA Batteries (4-pack),1,3.84,12/29/19 08:49,"88 Hill St, Dallas, TX 75001" -298701,27in FHD Monitor,1,149.99,12/02/19 14:14,"390 Lakeview St, Dallas, TX 75001" -298702,Wired Headphones,1,11.99,12/30/19 17:35,"47 1st St, Austin, TX 73301" -298703,Lightning Charging Cable,1,14.95,12/28/19 16:13,"704 13th St, Los Angeles, CA 90001" -298704,AA Batteries (4-pack),1,3.84,12/12/19 09:48,"864 Wilson St, Portland, OR 97035" -298705,AAA Batteries (4-pack),1,2.99,12/05/19 17:56,"142 Lake St, Austin, TX 73301" -298706,USB-C Charging Cable,1,11.95,12/18/19 22:01,"47 11th St, San Francisco, CA 94016" -298707,AA Batteries (4-pack),1,3.84,12/17/19 16:34,"644 Johnson St, Atlanta, GA 30301" -298708,Apple Airpods Headphones,1,150,12/18/19 19:02,"650 West St, New York City, NY 10001" -298709,Apple Airpods Headphones,1,150,12/23/19 01:12,"355 Madison St, Boston, MA 02215" -298710,Flatscreen TV,1,300,12/19/19 19:22,"489 12th St, Atlanta, GA 30301" -298711,LG Dryer,1,600.0,12/31/19 11:32,"952 4th St, Boston, MA 02215" -298712,AAA Batteries (4-pack),1,2.99,12/12/19 09:48,"383 Hickory St, Dallas, TX 75001" -298713,AAA Batteries (4-pack),1,2.99,12/31/19 12:20,"868 Highland St, Los Angeles, CA 90001" -298714,AAA Batteries (4-pack),1,2.99,12/13/19 10:23,"644 Ridge St, San Francisco, CA 94016" -298715,Lightning Charging Cable,2,14.95,12/19/19 22:23,"85 1st St, Boston, MA 02215" -298716,iPhone,1,700,12/19/19 19:38,"724 14th St, Seattle, WA 98101" -298717,AA Batteries (4-pack),2,3.84,12/18/19 23:09,"599 Washington St, San Francisco, CA 94016" -298718,Lightning Charging Cable,1,14.95,12/23/19 15:16,"109 Sunset St, Portland, ME 04101" -298719,AAA Batteries (4-pack),2,2.99,12/01/19 15:00,"910 Walnut St, San Francisco, CA 94016" -298720,Wired Headphones,1,11.99,12/12/19 05:01,"865 Johnson St, New York City, NY 10001" -298721,AA Batteries (4-pack),1,3.84,12/23/19 09:00,"82 Willow St, Dallas, TX 75001" -298722,AAA Batteries (4-pack),1,2.99,12/22/19 15:26,"241 7th St, Los Angeles, CA 90001" -298723,Apple Airpods Headphones,1,150,12/26/19 14:30,"641 Lincoln St, Boston, MA 02215" -298724,Google Phone,1,600,12/28/19 09:16,"728 Forest St, San Francisco, CA 94016" -298725,20in Monitor,1,109.99,12/26/19 12:04,"226 Meadow St, Austin, TX 73301" -298726,AAA Batteries (4-pack),2,2.99,12/04/19 13:21,"592 Church St, Los Angeles, CA 90001" -298727,USB-C Charging Cable,1,11.95,12/23/19 12:09,"55 Main St, Portland, OR 97035" -298728,Wired Headphones,1,11.99,12/12/19 13:02,"926 Hickory St, New York City, NY 10001" -298729,20in Monitor,1,109.99,12/10/19 14:32,"39 Highland St, Boston, MA 02215" -298730,iPhone,1,700,12/22/19 22:31,"265 11th St, Dallas, TX 75001" -298731,27in FHD Monitor,1,149.99,12/12/19 22:12,"195 5th St, New York City, NY 10001" -298732,Vareebadd Phone,1,400,12/16/19 11:59,"122 Elm St, Atlanta, GA 30301" -298732,Bose SoundSport Headphones,1,99.99,12/16/19 11:59,"122 Elm St, Atlanta, GA 30301" -298733,AAA Batteries (4-pack),2,2.99,12/31/19 11:30,"453 7th St, Boston, MA 02215" -298734,Google Phone,1,600,12/16/19 15:29,"964 Center St, Austin, TX 73301" -298734,USB-C Charging Cable,1,11.95,12/16/19 15:29,"964 Center St, Austin, TX 73301" -298735,Lightning Charging Cable,1,14.95,12/18/19 17:50,"869 Lincoln St, San Francisco, CA 94016" -298736,Wired Headphones,1,11.99,12/22/19 17:32,"797 2nd St, Boston, MA 02215" -298737,LG Washing Machine,1,600.0,12/02/19 17:08,"533 Jackson St, San Francisco, CA 94016" -298738,AAA Batteries (4-pack),4,2.99,12/26/19 10:06,"591 Main St, Los Angeles, CA 90001" -298739,Lightning Charging Cable,1,14.95,12/19/19 17:37,"190 Jackson St, Los Angeles, CA 90001" -298740,AAA Batteries (4-pack),1,2.99,12/16/19 13:46,"309 Church St, Austin, TX 73301" -298741,USB-C Charging Cable,2,11.95,12/11/19 19:31,"688 Hill St, Atlanta, GA 30301" -298742,Lightning Charging Cable,1,14.95,12/19/19 09:55,"737 Washington St, San Francisco, CA 94016" -298743,Google Phone,1,600,12/01/19 21:05,"764 Johnson St, Austin, TX 73301" -298744,Macbook Pro Laptop,1,1700,12/26/19 13:42,"37 Park St, San Francisco, CA 94016" -298744,Google Phone,1,600,12/26/19 13:42,"37 Park St, San Francisco, CA 94016" -298745,Macbook Pro Laptop,1,1700,12/27/19 08:58,"903 11th St, Atlanta, GA 30301" -298746,AAA Batteries (4-pack),2,2.99,12/14/19 18:24,"808 Forest St, Los Angeles, CA 90001" -298747,USB-C Charging Cable,1,11.95,12/15/19 09:24,"630 North St, Portland, OR 97035" -298748,AAA Batteries (4-pack),1,2.99,12/22/19 12:48,"797 13th St, Los Angeles, CA 90001" -298749,Apple Airpods Headphones,1,150,12/22/19 19:37,"675 Pine St, San Francisco, CA 94016" -298750,AA Batteries (4-pack),1,3.84,12/11/19 20:04,"864 Spruce St, Seattle, WA 98101" -298751,Lightning Charging Cable,1,14.95,12/12/19 11:55,"5 Jefferson St, New York City, NY 10001" -298752,AA Batteries (4-pack),1,3.84,12/23/19 19:23,"307 2nd St, San Francisco, CA 94016" -298753,AA Batteries (4-pack),1,3.84,12/25/19 11:12,"522 1st St, Seattle, WA 98101" -298754,34in Ultrawide Monitor,1,379.99,12/09/19 08:04,"858 North St, Portland, OR 97035" -298755,Wired Headphones,1,11.99,12/30/19 09:36,"207 4th St, Boston, MA 02215" -298756,Wired Headphones,1,11.99,12/19/19 18:07,"804 Jefferson St, Los Angeles, CA 90001" -298757,USB-C Charging Cable,1,11.95,12/23/19 23:08,"253 Hickory St, San Francisco, CA 94016" -298758,USB-C Charging Cable,1,11.95,12/27/19 21:57,"892 13th St, New York City, NY 10001" -298759,AA Batteries (4-pack),3,3.84,12/05/19 12:54,"756 Lincoln St, Atlanta, GA 30301" -,,,,, -298760,Bose SoundSport Headphones,1,99.99,12/14/19 15:57,"632 1st St, Boston, MA 02215" -298761,Wired Headphones,1,11.99,12/23/19 19:41,"784 Wilson St, Seattle, WA 98101" -298762,AA Batteries (4-pack),2,3.84,12/05/19 15:55,"807 Cedar St, Boston, MA 02215" -298763,Wired Headphones,1,11.99,12/26/19 22:40,"91 6th St, Boston, MA 02215" -298764,AAA Batteries (4-pack),3,2.99,12/10/19 10:48,"311 North St, Portland, ME 04101" -298765,27in FHD Monitor,1,149.99,12/10/19 14:13,"5 Cedar St, Boston, MA 02215" -298766,AAA Batteries (4-pack),1,2.99,12/27/19 09:22,"728 Hickory St, Boston, MA 02215" -298767,Lightning Charging Cable,2,14.95,12/05/19 06:33,"520 Church St, Los Angeles, CA 90001" -298768,Lightning Charging Cable,1,14.95,12/20/19 16:22,"779 Center St, Portland, OR 97035" -298769,Wired Headphones,1,11.99,12/15/19 19:15,"512 West St, Los Angeles, CA 90001" -298770,Google Phone,1,600,12/13/19 22:00,"585 Hickory St, San Francisco, CA 94016" -298771,Vareebadd Phone,1,400,12/27/19 21:12,"988 7th St, Dallas, TX 75001" -298772,AAA Batteries (4-pack),1,2.99,12/01/19 20:20,"298 Cedar St, Portland, OR 97035" -298773,Apple Airpods Headphones,1,150,12/23/19 01:47,"788 13th St, Los Angeles, CA 90001" -298774,AAA Batteries (4-pack),1,2.99,12/13/19 16:21,"235 11th St, Boston, MA 02215" -298775,AA Batteries (4-pack),1,3.84,12/07/19 10:33,"786 5th St, Portland, OR 97035" -298776,AA Batteries (4-pack),1,3.84,12/13/19 20:39,"744 Cherry St, Los Angeles, CA 90001" -298777,Wired Headphones,1,11.99,12/01/19 19:52,"255 Adams St, Portland, OR 97035" -298778,USB-C Charging Cable,2,11.95,12/29/19 15:27,"867 4th St, Los Angeles, CA 90001" -298779,Bose SoundSport Headphones,1,99.99,12/19/19 00:00,"305 Wilson St, New York City, NY 10001" -298780,AAA Batteries (4-pack),1,2.99,12/15/19 21:10,"59 Madison St, Boston, MA 02215" -298781,AAA Batteries (4-pack),2,2.99,12/01/19 15:59,"978 Meadow St, Austin, TX 73301" -298782,Bose SoundSport Headphones,1,99.99,12/03/19 21:06,"686 1st St, Seattle, WA 98101" -298783,AA Batteries (4-pack),1,3.84,12/04/19 11:18,"798 Hill St, San Francisco, CA 94016" -298784,Flatscreen TV,1,300,12/28/19 01:18,"203 7th St, New York City, NY 10001" -298785,USB-C Charging Cable,1,11.95,12/18/19 11:24,"868 Forest St, Austin, TX 73301" -298786,Lightning Charging Cable,1,14.95,12/08/19 12:55,"315 6th St, Dallas, TX 75001" -298787,AA Batteries (4-pack),1,3.84,12/13/19 09:22,"624 Johnson St, Los Angeles, CA 90001" -298788,Wired Headphones,1,11.99,12/13/19 20:06,"313 Church St, Atlanta, GA 30301" -298789,27in FHD Monitor,1,149.99,12/05/19 23:13,"397 5th St, San Francisco, CA 94016" -298790,AA Batteries (4-pack),2,3.84,12/17/19 21:39,"538 Jackson St, New York City, NY 10001" -298791,Lightning Charging Cable,1,14.95,12/14/19 21:28,"669 West St, Dallas, TX 75001" -298792,AAA Batteries (4-pack),1,2.99,12/15/19 11:30,"891 Johnson St, San Francisco, CA 94016" -298793,Lightning Charging Cable,1,14.95,12/11/19 10:50,"835 Pine St, Boston, MA 02215" -298794,34in Ultrawide Monitor,1,379.99,12/17/19 15:27,"185 2nd St, Atlanta, GA 30301" -298795,Wired Headphones,2,11.99,12/26/19 18:29,"346 Maple St, New York City, NY 10001" -298796,AA Batteries (4-pack),1,3.84,12/10/19 14:56,"803 Cedar St, New York City, NY 10001" -298797,20in Monitor,1,109.99,12/08/19 19:52,"669 5th St, Austin, TX 73301" -298798,Wired Headphones,1,11.99,12/31/19 21:45,"853 Adams St, New York City, NY 10001" -298799,USB-C Charging Cable,1,11.95,12/16/19 13:02,"659 Adams St, Seattle, WA 98101" -298800,Apple Airpods Headphones,1,150,12/11/19 23:14,"495 Dogwood St, Austin, TX 73301" -298801,Bose SoundSport Headphones,1,99.99,12/03/19 09:27,"744 Hickory St, Los Angeles, CA 90001" -298801,Lightning Charging Cable,1,14.95,12/03/19 09:27,"744 Hickory St, Los Angeles, CA 90001" -298802,Lightning Charging Cable,1,14.95,12/15/19 10:17,"173 Walnut St, Portland, OR 97035" -298803,AAA Batteries (4-pack),1,2.99,12/01/19 09:34,"824 Madison St, San Francisco, CA 94016" -298804,iPhone,1,700,12/07/19 11:30,"505 West St, New York City, NY 10001" -298805,Macbook Pro Laptop,1,1700,12/04/19 10:53,"708 Dogwood St, Atlanta, GA 30301" -298806,iPhone,1,700,12/03/19 17:22,"979 Madison St, New York City, NY 10001" -298806,Lightning Charging Cable,1,14.95,12/03/19 17:22,"979 Madison St, New York City, NY 10001" -298807,Macbook Pro Laptop,1,1700,12/17/19 14:52,"599 Madison St, Los Angeles, CA 90001" -298808,Lightning Charging Cable,1,14.95,12/11/19 09:25,"312 14th St, Boston, MA 02215" -298809,Wired Headphones,1,11.99,12/04/19 20:10,"634 Center St, Portland, OR 97035" -298810,27in 4K Gaming Monitor,1,389.99,12/27/19 17:46,"20 Ridge St, San Francisco, CA 94016" -298811,USB-C Charging Cable,1,11.95,12/05/19 22:38,"242 14th St, Dallas, TX 75001" -298812,AA Batteries (4-pack),1,3.84,12/22/19 15:12,"124 Spruce St, San Francisco, CA 94016" -298813,Apple Airpods Headphones,1,150,12/06/19 23:07,"337 5th St, Austin, TX 73301" -298814,34in Ultrawide Monitor,1,379.99,12/31/19 06:30,"199 Highland St, Portland, ME 04101" -298815,USB-C Charging Cable,2,11.95,12/09/19 08:45,"14 Walnut St, San Francisco, CA 94016" -298816,Lightning Charging Cable,1,14.95,12/23/19 09:11,"615 Madison St, New York City, NY 10001" -298817,Lightning Charging Cable,1,14.95,12/20/19 21:46,"866 Cedar St, Boston, MA 02215" -298818,AA Batteries (4-pack),1,3.84,12/17/19 21:53,"346 5th St, New York City, NY 10001" -298819,27in 4K Gaming Monitor,1,389.99,12/09/19 11:45,"109 5th St, Portland, OR 97035" -298820,AA Batteries (4-pack),1,3.84,12/31/19 21:32,"395 Johnson St, San Francisco, CA 94016" -298821,27in 4K Gaming Monitor,1,389.99,12/30/19 10:07,"496 Cherry St, Dallas, TX 75001" -298821,AAA Batteries (4-pack),1,2.99,12/30/19 10:07,"496 Cherry St, Dallas, TX 75001" -298822,Apple Airpods Headphones,1,150,12/12/19 23:53,"101 South St, San Francisco, CA 94016" -298823,Apple Airpods Headphones,1,150,12/28/19 20:22,"151 14th St, Boston, MA 02215" -298824,iPhone,1,700,12/17/19 20:53,"118 8th St, Atlanta, GA 30301" -298825,AAA Batteries (4-pack),1,2.99,12/26/19 12:36,"451 Maple St, Portland, OR 97035" -298826,Lightning Charging Cable,1,14.95,12/05/19 18:04,"492 Willow St, Los Angeles, CA 90001" -298827,AAA Batteries (4-pack),1,2.99,12/13/19 19:50,"401 Hill St, New York City, NY 10001" -298828,Apple Airpods Headphones,1,150,12/10/19 12:29,"157 Ridge St, Los Angeles, CA 90001" -298829,Google Phone,1,600,12/22/19 21:16,"179 2nd St, San Francisco, CA 94016" -298829,USB-C Charging Cable,1,11.95,12/22/19 21:16,"179 2nd St, San Francisco, CA 94016" -298830,27in 4K Gaming Monitor,1,389.99,12/20/19 15:20,"477 Center St, Portland, OR 97035" -298831,Apple Airpods Headphones,1,150,12/12/19 02:42,"729 River St, Austin, TX 73301" -298832,AAA Batteries (4-pack),1,2.99,12/11/19 22:20,"814 Cedar St, Seattle, WA 98101" -298833,27in 4K Gaming Monitor,1,389.99,12/10/19 19:24,"704 Forest St, San Francisco, CA 94016" -298834,Apple Airpods Headphones,1,150,12/28/19 20:20,"264 Hill St, San Francisco, CA 94016" -298835,iPhone,1,700,12/14/19 10:03,"45 Maple St, New York City, NY 10001" -298835,Lightning Charging Cable,1,14.95,12/14/19 10:03,"45 Maple St, New York City, NY 10001" -298836,Macbook Pro Laptop,1,1700,12/15/19 22:30,"117 Dogwood St, Atlanta, GA 30301" -298837,27in FHD Monitor,1,149.99,12/08/19 16:59,"525 8th St, Portland, OR 97035" -298838,Lightning Charging Cable,1,14.95,12/20/19 19:33,"105 Madison St, Boston, MA 02215" -298839,Wired Headphones,1,11.99,12/06/19 23:51,"396 Lincoln St, Atlanta, GA 30301" -298840,Bose SoundSport Headphones,1,99.99,12/13/19 18:59,"67 Main St, San Francisco, CA 94016" -298841,27in FHD Monitor,1,149.99,12/28/19 11:43,"815 Johnson St, Atlanta, GA 30301" -298842,20in Monitor,1,109.99,12/03/19 13:54,"319 Ridge St, San Francisco, CA 94016" -298843,Lightning Charging Cable,1,14.95,12/10/19 18:59,"46 Wilson St, Los Angeles, CA 90001" -298844,Vareebadd Phone,1,400,12/23/19 14:41,"193 Wilson St, Dallas, TX 75001" -298844,USB-C Charging Cable,1,11.95,12/23/19 14:41,"193 Wilson St, Dallas, TX 75001" -298845,AA Batteries (4-pack),3,3.84,12/10/19 19:27,"388 West St, Los Angeles, CA 90001" -298846,Google Phone,1,600,12/17/19 00:24,"103 Madison St, Austin, TX 73301" -298847,USB-C Charging Cable,1,11.95,12/20/19 21:39,"58 Washington St, San Francisco, CA 94016" -298848,ThinkPad Laptop,1,999.99,12/06/19 07:47,"256 2nd St, New York City, NY 10001" -298849,USB-C Charging Cable,1,11.95,12/14/19 20:37,"162 1st St, Dallas, TX 75001" -298850,AAA Batteries (4-pack),1,2.99,12/04/19 21:54,"203 Dogwood St, Dallas, TX 75001" -298851,AA Batteries (4-pack),1,3.84,12/06/19 14:56,"301 Lincoln St, Los Angeles, CA 90001" -298852,Apple Airpods Headphones,1,150,12/30/19 18:16,"344 Lincoln St, Los Angeles, CA 90001" -298853,Flatscreen TV,1,300,12/15/19 07:27,"541 Washington St, Los Angeles, CA 90001" -298854,AAA Batteries (4-pack),2,2.99,12/15/19 04:15,"904 Jackson St, Seattle, WA 98101" -298855,AAA Batteries (4-pack),1,2.99,12/07/19 18:15,"996 Cedar St, New York City, NY 10001" -298856,USB-C Charging Cable,2,11.95,12/15/19 12:51,"832 Maple St, Atlanta, GA 30301" -298857,Wired Headphones,1,11.99,12/31/19 08:33,"144 Maple St, New York City, NY 10001" -298858,27in 4K Gaming Monitor,1,389.99,12/10/19 21:07,"938 6th St, Portland, OR 97035" -298859,Apple Airpods Headphones,1,150,12/09/19 10:58,"124 11th St, San Francisco, CA 94016" -298860,Wired Headphones,1,11.99,12/07/19 09:03,"306 Church St, Dallas, TX 75001" -298861,27in FHD Monitor,1,149.99,12/28/19 14:25,"989 Meadow St, Seattle, WA 98101" -298862,AAA Batteries (4-pack),3,2.99,12/24/19 11:03,"422 North St, San Francisco, CA 94016" -298863,Wired Headphones,1,11.99,12/05/19 23:08,"963 9th St, Los Angeles, CA 90001" -298864,USB-C Charging Cable,1,11.95,12/13/19 10:58,"616 Main St, Portland, OR 97035" -298865,AA Batteries (4-pack),1,3.84,12/21/19 16:58,"594 Wilson St, Dallas, TX 75001" -298866,Wired Headphones,1,11.99,12/16/19 10:22,"225 Cherry St, New York City, NY 10001" -298867,USB-C Charging Cable,1,11.95,12/01/19 09:48,"603 4th St, New York City, NY 10001" -298867,27in 4K Gaming Monitor,1,389.99,12/01/19 09:48,"603 4th St, New York City, NY 10001" -298868,Lightning Charging Cable,1,14.95,12/12/19 13:00,"970 6th St, San Francisco, CA 94016" -298869,Macbook Pro Laptop,1,1700,12/21/19 13:55,"730 Dogwood St, Los Angeles, CA 90001" -298870,Lightning Charging Cable,1,14.95,12/07/19 08:04,"139 Cherry St, Boston, MA 02215" -298871,Google Phone,1,600,12/15/19 14:21,"530 Center St, Atlanta, GA 30301" -298871,Bose SoundSport Headphones,1,99.99,12/15/19 14:21,"530 Center St, Atlanta, GA 30301" -298871,Wired Headphones,1,11.99,12/15/19 14:21,"530 Center St, Atlanta, GA 30301" -298872,Bose SoundSport Headphones,1,99.99,12/30/19 21:09,"254 Maple St, Boston, MA 02215" -298873,Bose SoundSport Headphones,1,99.99,12/10/19 21:58,"756 Washington St, Los Angeles, CA 90001" -298874,34in Ultrawide Monitor,1,379.99,12/31/19 00:00,"534 Main St, Los Angeles, CA 90001" -298875,Bose SoundSport Headphones,1,99.99,12/25/19 16:49,"799 Lakeview St, San Francisco, CA 94016" -298876,Apple Airpods Headphones,1,150,12/11/19 17:06,"368 Madison St, San Francisco, CA 94016" -298877,Bose SoundSport Headphones,1,99.99,12/12/19 19:30,"229 11th St, Dallas, TX 75001" -298878,Apple Airpods Headphones,1,150,12/22/19 14:30,"149 6th St, San Francisco, CA 94016" -298879,Apple Airpods Headphones,1,150,12/09/19 08:30,"408 Main St, San Francisco, CA 94016" -298880,AAA Batteries (4-pack),1,2.99,12/14/19 19:57,"197 7th St, Los Angeles, CA 90001" -,,,,, -298881,ThinkPad Laptop,1,999.99,12/12/19 19:14,"481 Sunset St, Seattle, WA 98101" -298882,34in Ultrawide Monitor,1,379.99,12/03/19 07:53,"862 Forest St, Los Angeles, CA 90001" -298883,Wired Headphones,1,11.99,12/28/19 18:07,"516 Willow St, Los Angeles, CA 90001" -298883,Wired Headphones,1,11.99,12/28/19 18:07,"516 Willow St, Los Angeles, CA 90001" -298884,Apple Airpods Headphones,1,150,12/03/19 18:06,"725 River St, San Francisco, CA 94016" -298885,Lightning Charging Cable,1,14.95,12/22/19 12:12,"775 Johnson St, Austin, TX 73301" -298886,Apple Airpods Headphones,1,150,12/21/19 15:06,"930 Main St, Boston, MA 02215" -298887,USB-C Charging Cable,1,11.95,12/23/19 09:16,"727 Jefferson St, Dallas, TX 75001" -298888,AA Batteries (4-pack),2,3.84,12/22/19 12:33,"840 Main St, Dallas, TX 75001" -298889,AA Batteries (4-pack),1,3.84,12/31/19 23:20,"77 10th St, Los Angeles, CA 90001" -298890,34in Ultrawide Monitor,1,379.99,12/16/19 09:12,"675 Sunset St, Seattle, WA 98101" -298891,USB-C Charging Cable,1,11.95,12/07/19 16:18,"704 Lincoln St, San Francisco, CA 94016" -298892,Bose SoundSport Headphones,1,99.99,12/29/19 23:53,"369 5th St, San Francisco, CA 94016" -298893,AAA Batteries (4-pack),1,2.99,12/05/19 08:33,"662 Jackson St, San Francisco, CA 94016" -298894,AA Batteries (4-pack),2,3.84,12/16/19 11:18,"793 Forest St, Boston, MA 02215" -298895,AA Batteries (4-pack),1,3.84,12/24/19 12:42,"126 4th St, Austin, TX 73301" -298896,Apple Airpods Headphones,1,150,12/30/19 19:38,"322 Wilson St, Boston, MA 02215" -298897,ThinkPad Laptop,1,999.99,12/09/19 16:31,"694 Cherry St, Seattle, WA 98101" -298898,27in FHD Monitor,1,149.99,12/21/19 16:29,"487 Wilson St, San Francisco, CA 94016" -298899,Flatscreen TV,1,300,12/07/19 04:15,"761 6th St, San Francisco, CA 94016" -298900,Apple Airpods Headphones,1,150,12/16/19 13:19,"267 5th St, Atlanta, GA 30301" -298901,AA Batteries (4-pack),1,3.84,12/17/19 10:48,"782 Jackson St, Austin, TX 73301" -298902,Apple Airpods Headphones,1,150,12/28/19 14:33,"434 10th St, New York City, NY 10001" -298903,Vareebadd Phone,1,400,12/07/19 22:34,"392 River St, San Francisco, CA 94016" -298904,AA Batteries (4-pack),1,3.84,12/07/19 13:32,"229 6th St, Boston, MA 02215" -298905,USB-C Charging Cable,1,11.95,12/31/19 10:09,"913 Pine St, San Francisco, CA 94016" -298906,AA Batteries (4-pack),5,3.84,12/02/19 14:48,"805 Chestnut St, Boston, MA 02215" -298907,USB-C Charging Cable,1,11.95,12/20/19 16:21,"208 Jackson St, New York City, NY 10001" -298908,Wired Headphones,1,11.99,12/01/19 13:57,"457 Ridge St, San Francisco, CA 94016" -298909,AA Batteries (4-pack),1,3.84,12/30/19 14:26,"259 Jefferson St, Seattle, WA 98101" -298910,34in Ultrawide Monitor,1,379.99,12/25/19 14:36,"619 Center St, Seattle, WA 98101" -298911,Wired Headphones,1,11.99,12/13/19 01:50,"458 Lakeview St, Boston, MA 02215" -298912,AAA Batteries (4-pack),1,2.99,12/18/19 22:32,"953 Lakeview St, San Francisco, CA 94016" -298913,Wired Headphones,1,11.99,12/10/19 23:32,"441 Park St, New York City, NY 10001" -298914,Google Phone,1,600,12/26/19 11:57,"713 Jackson St, Boston, MA 02215" -298915,Apple Airpods Headphones,1,150,12/31/19 18:19,"103 River St, Boston, MA 02215" -298916,iPhone,1,700,12/30/19 07:16,"611 River St, Atlanta, GA 30301" -298917,AAA Batteries (4-pack),1,2.99,12/16/19 18:53,"914 Center St, Portland, OR 97035" -298918,27in FHD Monitor,1,149.99,12/01/19 09:08,"14 8th St, San Francisco, CA 94016" -298919,AA Batteries (4-pack),1,3.84,12/26/19 09:35,"202 Cherry St, Los Angeles, CA 90001" -298920,Macbook Pro Laptop,1,1700,12/22/19 05:25,"414 Cedar St, Seattle, WA 98101" -298921,Wired Headphones,1,11.99,12/26/19 15:11,"589 Lakeview St, Seattle, WA 98101" -298922,iPhone,1,700,12/10/19 20:10,"171 Main St, Dallas, TX 75001" -298922,Lightning Charging Cable,1,14.95,12/10/19 20:10,"171 Main St, Dallas, TX 75001" -298923,Lightning Charging Cable,1,14.95,12/12/19 02:33,"291 Center St, New York City, NY 10001" -298924,USB-C Charging Cable,1,11.95,12/22/19 18:57,"25 Park St, Los Angeles, CA 90001" -298925,Google Phone,1,600,12/19/19 10:14,"564 6th St, Austin, TX 73301" -298926,34in Ultrawide Monitor,1,379.99,12/12/19 12:50,"355 Forest St, Boston, MA 02215" -,,,,, -298927,USB-C Charging Cable,1,11.95,12/04/19 21:13,"242 Lake St, Dallas, TX 75001" -298928,Lightning Charging Cable,1,14.95,12/20/19 16:15,"432 7th St, New York City, NY 10001" -298929,Apple Airpods Headphones,1,150,12/05/19 08:32,"4 Pine St, San Francisco, CA 94016" -298930,AAA Batteries (4-pack),2,2.99,12/21/19 13:09,"196 Hickory St, San Francisco, CA 94016" -298931,Google Phone,1,600,12/10/19 13:02,"540 West St, Seattle, WA 98101" -298931,USB-C Charging Cable,1,11.95,12/10/19 13:02,"540 West St, Seattle, WA 98101" -298932,AA Batteries (4-pack),1,3.84,12/31/19 13:27,"67 4th St, Portland, OR 97035" -298933,27in FHD Monitor,1,149.99,12/27/19 15:09,"522 River St, Atlanta, GA 30301" -298934,Wired Headphones,1,11.99,12/11/19 10:28,"400 Highland St, Seattle, WA 98101" -298935,27in 4K Gaming Monitor,1,389.99,12/23/19 15:27,"954 Walnut St, Dallas, TX 75001" -298936,AAA Batteries (4-pack),1,2.99,12/17/19 07:54,"521 13th St, San Francisco, CA 94016" -298937,Wired Headphones,1,11.99,12/18/19 13:50,"540 Elm St, Boston, MA 02215" -298938,USB-C Charging Cable,1,11.95,12/05/19 23:10,"108 Forest St, New York City, NY 10001" -298939,20in Monitor,1,109.99,12/13/19 23:51,"94 South St, San Francisco, CA 94016" -298940,Wired Headphones,1,11.99,12/02/19 14:11,"907 Elm St, San Francisco, CA 94016" -298941,Bose SoundSport Headphones,1,99.99,12/05/19 17:27,"897 10th St, Dallas, TX 75001" -298942,USB-C Charging Cable,1,11.95,12/18/19 17:39,"842 9th St, Los Angeles, CA 90001" -298943,AAA Batteries (4-pack),1,2.99,12/02/19 11:44,"213 1st St, Boston, MA 02215" -298944,AAA Batteries (4-pack),3,2.99,12/03/19 14:51,"47 Dogwood St, Boston, MA 02215" -298945,AAA Batteries (4-pack),1,2.99,12/31/19 10:34,"478 4th St, San Francisco, CA 94016" -298946,Bose SoundSport Headphones,1,99.99,12/21/19 23:39,"707 Lake St, San Francisco, CA 94016" -298947,Vareebadd Phone,1,400,12/09/19 10:31,"303 8th St, New York City, NY 10001" -298948,AAA Batteries (4-pack),3,2.99,12/07/19 11:02,"568 Pine St, Portland, OR 97035" -298949,AAA Batteries (4-pack),1,2.99,12/05/19 19:44,"224 Hickory St, Atlanta, GA 30301" -298950,AA Batteries (4-pack),1,3.84,12/11/19 07:00,"758 Meadow St, San Francisco, CA 94016" -298951,Apple Airpods Headphones,1,150,12/27/19 13:38,"544 Hickory St, Dallas, TX 75001" -298952,Bose SoundSport Headphones,1,99.99,12/30/19 19:46,"224 Madison St, San Francisco, CA 94016" -298953,AAA Batteries (4-pack),1,2.99,12/25/19 06:29,"434 South St, Los Angeles, CA 90001" -298954,AAA Batteries (4-pack),1,2.99,12/19/19 11:34,"335 River St, Austin, TX 73301" -298955,34in Ultrawide Monitor,1,379.99,12/31/19 08:06,"79 6th St, Los Angeles, CA 90001" -298956,USB-C Charging Cable,1,11.95,12/08/19 20:11,"422 1st St, Boston, MA 02215" -298957,LG Dryer,1,600.0,12/21/19 13:05,"818 1st St, Los Angeles, CA 90001" -298958,Google Phone,1,600,12/22/19 10:26,"212 Hill St, Atlanta, GA 30301" -298959,27in 4K Gaming Monitor,1,389.99,12/09/19 19:20,"970 1st St, Seattle, WA 98101" -298960,Macbook Pro Laptop,1,1700,12/21/19 23:37,"374 Highland St, Los Angeles, CA 90001" -298961,AAA Batteries (4-pack),3,2.99,12/12/19 11:20,"421 2nd St, San Francisco, CA 94016" -298962,Lightning Charging Cable,1,14.95,12/30/19 14:45,"656 5th St, San Francisco, CA 94016" -298963,AAA Batteries (4-pack),1,2.99,12/19/19 06:59,"22 Washington St, New York City, NY 10001" -298964,AAA Batteries (4-pack),1,2.99,12/30/19 18:38,"348 10th St, Atlanta, GA 30301" -298965,Apple Airpods Headphones,1,150,12/24/19 12:39,"350 Jackson St, New York City, NY 10001" -298966,USB-C Charging Cable,1,11.95,12/22/19 11:45,"674 Dogwood St, New York City, NY 10001" -298967,Flatscreen TV,1,300,12/22/19 10:18,"703 Lake St, San Francisco, CA 94016" -298968,Wired Headphones,1,11.99,12/20/19 09:31,"193 Chestnut St, Austin, TX 73301" -298969,AA Batteries (4-pack),2,3.84,12/19/19 12:40,"774 Hickory St, Seattle, WA 98101" -298970,Bose SoundSport Headphones,1,99.99,12/17/19 14:18,"227 Cedar St, Los Angeles, CA 90001" -298971,USB-C Charging Cable,1,11.95,12/27/19 08:34,"565 Cherry St, New York City, NY 10001" -298972,Wired Headphones,1,11.99,12/06/19 14:32,"80 Elm St, Los Angeles, CA 90001" -298973,iPhone,1,700,12/04/19 15:16,"560 South St, Seattle, WA 98101" -298974,AAA Batteries (4-pack),1,2.99,12/24/19 13:50,"992 Ridge St, Seattle, WA 98101" -298975,Apple Airpods Headphones,1,150,12/26/19 09:37,"527 Johnson St, Los Angeles, CA 90001" -298976,Lightning Charging Cable,1,14.95,12/29/19 16:32,"984 Adams St, San Francisco, CA 94016" -298977,Google Phone,1,600,12/03/19 19:57,"471 Hickory St, Los Angeles, CA 90001" -298978,Lightning Charging Cable,1,14.95,12/29/19 19:04,"413 Jackson St, San Francisco, CA 94016" -298979,AAA Batteries (4-pack),1,2.99,12/13/19 04:25,"165 Washington St, Austin, TX 73301" -298980,AAA Batteries (4-pack),1,2.99,12/10/19 10:59,"726 Meadow St, Austin, TX 73301" -298981,AAA Batteries (4-pack),1,2.99,12/28/19 21:45,"497 Johnson St, San Francisco, CA 94016" -298982,Wired Headphones,1,11.99,12/12/19 19:19,"755 Forest St, Portland, OR 97035" -298983,Flatscreen TV,1,300,12/14/19 12:58,"748 Lincoln St, New York City, NY 10001" -298984,Wired Headphones,1,11.99,12/31/19 13:23,"445 Spruce St, Atlanta, GA 30301" -298985,iPhone,1,700,12/14/19 10:07,"871 Main St, Los Angeles, CA 90001" -298986,Wired Headphones,1,11.99,12/09/19 17:53,"203 Hickory St, Los Angeles, CA 90001" -298987,Lightning Charging Cable,1,14.95,12/22/19 20:03,"632 Jefferson St, Austin, TX 73301" -298988,Wired Headphones,1,11.99,12/26/19 16:11,"528 8th St, Austin, TX 73301" -298988,Wired Headphones,1,11.99,12/26/19 16:11,"528 8th St, Austin, TX 73301" -298989,AAA Batteries (4-pack),1,2.99,12/03/19 19:38,"77 Adams St, New York City, NY 10001" -298990,Apple Airpods Headphones,1,150,12/20/19 14:01,"314 Wilson St, Seattle, WA 98101" -298991,iPhone,1,700,12/29/19 20:29,"356 Spruce St, San Francisco, CA 94016" -298991,Lightning Charging Cable,1,14.95,12/29/19 20:29,"356 Spruce St, San Francisco, CA 94016" -298992,Bose SoundSport Headphones,1,99.99,12/15/19 15:24,"301 5th St, New York City, NY 10001" -298993,Apple Airpods Headphones,1,150,12/22/19 21:39,"450 11th St, Portland, OR 97035" -298994,iPhone,1,700,12/06/19 16:04,"987 Lakeview St, Los Angeles, CA 90001" -298994,Apple Airpods Headphones,1,150,12/06/19 16:04,"987 Lakeview St, Los Angeles, CA 90001" -298995,AA Batteries (4-pack),1,3.84,12/31/19 11:55,"909 Johnson St, Los Angeles, CA 90001" -298996,AAA Batteries (4-pack),1,2.99,12/05/19 17:34,"540 Highland St, Dallas, TX 75001" -298997,USB-C Charging Cable,1,11.95,12/18/19 05:46,"322 Spruce St, Boston, MA 02215" -298998,Apple Airpods Headphones,1,150,12/17/19 11:38,"376 8th St, Los Angeles, CA 90001" -298999,AAA Batteries (4-pack),1,2.99,12/31/19 18:30,"907 Cherry St, New York City, NY 10001" -299000,Lightning Charging Cable,2,14.95,12/04/19 09:30,"785 Church St, Portland, OR 97035" -299001,AA Batteries (4-pack),1,3.84,12/01/19 21:28,"377 13th St, New York City, NY 10001" -299002,Wired Headphones,1,11.99,12/02/19 17:13,"630 Washington St, New York City, NY 10001" -299003,iPhone,1,700,12/24/19 14:23,"142 Wilson St, San Francisco, CA 94016" -299004,Lightning Charging Cable,1,14.95,12/19/19 18:08,"798 Washington St, San Francisco, CA 94016" -299005,Wired Headphones,1,11.99,12/31/19 12:30,"330 Park St, San Francisco, CA 94016" -299006,AAA Batteries (4-pack),1,2.99,12/30/19 09:01,"726 Hill St, San Francisco, CA 94016" -299007,Wired Headphones,1,11.99,12/22/19 14:20,"751 Highland St, New York City, NY 10001" -299008,Apple Airpods Headphones,1,150,12/18/19 19:31,"655 Elm St, Austin, TX 73301" -299009,Bose SoundSport Headphones,1,99.99,12/19/19 11:43,"165 Church St, Boston, MA 02215" -299010,AAA Batteries (4-pack),3,2.99,12/25/19 18:55,"680 Willow St, Boston, MA 02215" -299010,Lightning Charging Cable,1,14.95,12/25/19 18:55,"680 Willow St, Boston, MA 02215" -299011,USB-C Charging Cable,1,11.95,12/15/19 19:52,"534 1st St, Los Angeles, CA 90001" -299012,Bose SoundSport Headphones,1,99.99,12/12/19 19:26,"891 11th St, San Francisco, CA 94016" -299013,AA Batteries (4-pack),1,3.84,12/17/19 16:21,"713 Spruce St, Dallas, TX 75001" -299014,AA Batteries (4-pack),1,3.84,12/11/19 02:20,"3 Meadow St, Dallas, TX 75001" -,,,,, -299015,Flatscreen TV,1,300,12/31/19 09:03,"627 Lake St, Los Angeles, CA 90001" -299016,AAA Batteries (4-pack),2,2.99,12/21/19 19:55,"878 5th St, Seattle, WA 98101" -299017,Wired Headphones,1,11.99,12/14/19 13:56,"477 Willow St, Boston, MA 02215" -299018,Wired Headphones,1,11.99,12/24/19 09:30,"718 Lakeview St, Los Angeles, CA 90001" -299019,AA Batteries (4-pack),2,3.84,12/30/19 16:22,"584 9th St, Los Angeles, CA 90001" -299020,AAA Batteries (4-pack),4,2.99,12/13/19 22:48,"889 Willow St, Portland, OR 97035" -299021,Bose SoundSport Headphones,1,99.99,12/23/19 19:38,"845 Chestnut St, San Francisco, CA 94016" -299022,Bose SoundSport Headphones,1,99.99,12/07/19 20:52,"248 South St, Los Angeles, CA 90001" -299023,Wired Headphones,1,11.99,12/11/19 17:18,"13 Ridge St, San Francisco, CA 94016" -299024,Google Phone,1,600,12/30/19 19:25,"65 Ridge St, Boston, MA 02215" -299024,Wired Headphones,1,11.99,12/30/19 19:25,"65 Ridge St, Boston, MA 02215" -299025,Bose SoundSport Headphones,1,99.99,12/16/19 20:44,"815 9th St, Boston, MA 02215" -299026,27in FHD Monitor,1,149.99,12/04/19 08:53,"985 Park St, Los Angeles, CA 90001" -299027,USB-C Charging Cable,1,11.95,12/24/19 18:55,"793 4th St, Atlanta, GA 30301" -299028,USB-C Charging Cable,1,11.95,12/23/19 23:40,"746 Park St, Seattle, WA 98101" -299029,AAA Batteries (4-pack),3,2.99,12/31/19 04:50,"828 Main St, Los Angeles, CA 90001" -299030,AA Batteries (4-pack),1,3.84,12/29/19 15:44,"110 Wilson St, Portland, ME 04101" -299031,USB-C Charging Cable,1,11.95,12/08/19 12:31,"722 Walnut St, San Francisco, CA 94016" -299032,34in Ultrawide Monitor,1,379.99,12/25/19 22:58,"806 Spruce St, San Francisco, CA 94016" -299033,AAA Batteries (4-pack),2,2.99,12/14/19 19:06,"152 Washington St, Boston, MA 02215" -299034,AA Batteries (4-pack),2,3.84,12/26/19 14:45,"30 South St, San Francisco, CA 94016" -299035,27in FHD Monitor,1,149.99,12/14/19 22:47,"702 Elm St, Atlanta, GA 30301" -299036,Lightning Charging Cable,1,14.95,12/07/19 16:25,"523 Hickory St, San Francisco, CA 94016" -299037,AA Batteries (4-pack),1,3.84,12/20/19 17:56,"785 North St, San Francisco, CA 94016" -299038,34in Ultrawide Monitor,1,379.99,12/28/19 11:31,"94 Adams St, San Francisco, CA 94016" -299039,Lightning Charging Cable,1,14.95,12/01/19 13:14,"697 Lakeview St, Seattle, WA 98101" -299040,Apple Airpods Headphones,1,150,12/19/19 11:57,"260 Center St, Austin, TX 73301" -299041,AAA Batteries (4-pack),3,2.99,12/24/19 17:37,"93 6th St, Los Angeles, CA 90001" -299042,AAA Batteries (4-pack),2,2.99,12/31/19 20:05,"322 Adams St, Austin, TX 73301" -299043,Wired Headphones,2,11.99,12/13/19 12:40,"790 Jackson St, San Francisco, CA 94016" -299044,Lightning Charging Cable,1,14.95,12/31/19 23:36,"946 South St, Atlanta, GA 30301" -299045,Wired Headphones,1,11.99,12/06/19 18:29,"647 Forest St, Los Angeles, CA 90001" -299046,Google Phone,1,600,12/30/19 22:06,"373 River St, San Francisco, CA 94016" -299046,USB-C Charging Cable,1,11.95,12/30/19 22:06,"373 River St, San Francisco, CA 94016" -299047,iPhone,1,700,12/06/19 17:34,"233 Pine St, San Francisco, CA 94016" -299048,Apple Airpods Headphones,1,150,12/28/19 17:12,"688 11th St, Los Angeles, CA 90001" -299049,Apple Airpods Headphones,1,150,01/01/20 01:17,"762 Johnson St, San Francisco, CA 94016" -299050,27in 4K Gaming Monitor,1,389.99,12/17/19 19:30,"439 Cherry St, San Francisco, CA 94016" -299051,Bose SoundSport Headphones,1,99.99,12/20/19 20:29,"626 West St, Seattle, WA 98101" -299052,AAA Batteries (4-pack),1,2.99,12/22/19 11:48,"495 1st St, Dallas, TX 75001" -299053,USB-C Charging Cable,1,11.95,12/02/19 08:45,"956 Cherry St, Atlanta, GA 30301" -299054,AAA Batteries (4-pack),1,2.99,12/11/19 22:12,"536 Cedar St, Dallas, TX 75001" -299055,Bose SoundSport Headphones,1,99.99,12/31/19 07:24,"380 Wilson St, Boston, MA 02215" -299056,Lightning Charging Cable,1,14.95,12/29/19 23:57,"173 Forest St, Austin, TX 73301" -299057,34in Ultrawide Monitor,1,379.99,12/09/19 11:14,"457 12th St, San Francisco, CA 94016" -299058,Lightning Charging Cable,2,14.95,12/01/19 20:22,"823 10th St, Portland, OR 97035" -299059,Apple Airpods Headphones,1,150,12/01/19 05:47,"113 South St, Los Angeles, CA 90001" -299060,Wired Headphones,1,11.99,12/22/19 13:08,"971 Forest St, San Francisco, CA 94016" -299061,34in Ultrawide Monitor,1,379.99,12/23/19 00:03,"435 Wilson St, Seattle, WA 98101" -299062,iPhone,1,700,12/20/19 12:21,"977 Cedar St, Dallas, TX 75001" -299063,34in Ultrawide Monitor,1,379.99,12/25/19 22:31,"257 12th St, Portland, OR 97035" -299064,iPhone,1,700,12/22/19 17:04,"451 9th St, Los Angeles, CA 90001" -299065,iPhone,1,700,12/28/19 10:02,"126 Hickory St, Portland, OR 97035" -299066,iPhone,1,700,12/29/19 16:45,"459 Meadow St, San Francisco, CA 94016" -299067,iPhone,1,700,12/03/19 12:42,"155 Church St, New York City, NY 10001" -299067,Apple Airpods Headphones,1,150,12/03/19 12:42,"155 Church St, New York City, NY 10001" -299068,Wired Headphones,1,11.99,12/09/19 12:20,"553 Wilson St, New York City, NY 10001" -299069,20in Monitor,1,109.99,12/03/19 11:11,"912 Hill St, New York City, NY 10001" -299070,AA Batteries (4-pack),2,3.84,12/20/19 15:08,"556 Pine St, Seattle, WA 98101" -299071,ThinkPad Laptop,1,999.99,12/18/19 15:23,"851 Meadow St, Dallas, TX 75001" -299072,20in Monitor,1,109.99,12/17/19 19:05,"492 Chestnut St, Dallas, TX 75001" -299073,USB-C Charging Cable,1,11.95,12/19/19 12:37,"310 5th St, San Francisco, CA 94016" -299074,iPhone,1,700,12/16/19 14:09,"547 9th St, San Francisco, CA 94016" -299075,Wired Headphones,1,11.99,12/02/19 11:14,"829 Park St, Portland, OR 97035" -299076,iPhone,1,700,12/11/19 10:40,"934 Church St, San Francisco, CA 94016" -299077,Lightning Charging Cable,1,14.95,12/18/19 20:09,"653 Jefferson St, Dallas, TX 75001" -299078,AA Batteries (4-pack),1,3.84,12/14/19 11:15,"747 Hickory St, Los Angeles, CA 90001" -299079,20in Monitor,1,109.99,12/18/19 13:45,"467 Ridge St, Boston, MA 02215" -299080,AA Batteries (4-pack),1,3.84,12/07/19 14:38,"119 Maple St, San Francisco, CA 94016" -299081,LG Washing Machine,1,600.0,12/29/19 11:42,"568 7th St, New York City, NY 10001" -299082,AAA Batteries (4-pack),1,2.99,12/14/19 19:40,"564 5th St, Portland, OR 97035" -299083,27in 4K Gaming Monitor,1,389.99,12/09/19 12:48,"615 North St, Atlanta, GA 30301" -299084,AA Batteries (4-pack),3,3.84,12/15/19 18:34,"71 North St, Atlanta, GA 30301" -299085,Bose SoundSport Headphones,1,99.99,12/01/19 17:32,"134 Maple St, Seattle, WA 98101" -299086,Lightning Charging Cable,1,14.95,12/13/19 17:31,"570 Wilson St, San Francisco, CA 94016" -299087,Bose SoundSport Headphones,1,99.99,12/18/19 19:14,"400 14th St, New York City, NY 10001" -299088,LG Washing Machine,1,600.0,12/30/19 15:21,"804 10th St, Dallas, TX 75001" -299089,AAA Batteries (4-pack),1,2.99,12/01/19 19:37,"794 10th St, San Francisco, CA 94016" -299090,Wired Headphones,1,11.99,12/24/19 20:26,"675 Jackson St, Los Angeles, CA 90001" -299091,Wired Headphones,1,11.99,12/08/19 14:59,"106 13th St, New York City, NY 10001" -299092,27in FHD Monitor,1,149.99,12/22/19 21:11,"23 Meadow St, Los Angeles, CA 90001" -299093,Google Phone,1,600,12/01/19 11:59,"145 Sunset St, Boston, MA 02215" -299094,Lightning Charging Cable,1,14.95,12/21/19 13:43,"852 8th St, Austin, TX 73301" -299095,Wired Headphones,1,11.99,12/25/19 18:56,"88 11th St, New York City, NY 10001" -299096,Apple Airpods Headphones,1,150,12/30/19 04:11,"506 7th St, Dallas, TX 75001" -299097,Wired Headphones,1,11.99,12/28/19 19:08,"507 Forest St, Los Angeles, CA 90001" -299098,Lightning Charging Cable,1,14.95,12/05/19 11:05,"324 5th St, Dallas, TX 75001" -299099,USB-C Charging Cable,1,11.95,12/08/19 13:41,"674 Center St, Portland, OR 97035" -299100,AA Batteries (4-pack),1,3.84,12/04/19 10:46,"84 South St, Portland, OR 97035" -299101,Lightning Charging Cable,1,14.95,12/28/19 22:37,"76 Pine St, Dallas, TX 75001" -299102,iPhone,1,700,12/08/19 09:05,"809 West St, Los Angeles, CA 90001" -299103,USB-C Charging Cable,2,11.95,12/01/19 08:04,"414 Maple St, New York City, NY 10001" -299104,iPhone,1,700,12/09/19 18:39,"104 Walnut St, San Francisco, CA 94016" -299104,Lightning Charging Cable,1,14.95,12/09/19 18:39,"104 Walnut St, San Francisco, CA 94016" -299105,AAA Batteries (4-pack),1,2.99,12/22/19 13:45,"569 1st St, Boston, MA 02215" -299106,AAA Batteries (4-pack),2,2.99,12/11/19 01:31,"502 Highland St, Dallas, TX 75001" -299107,AA Batteries (4-pack),1,3.84,12/03/19 10:34,"546 13th St, Seattle, WA 98101" -299108,AAA Batteries (4-pack),2,2.99,12/08/19 18:57,"240 South St, Portland, ME 04101" -299109,27in FHD Monitor,1,149.99,12/17/19 20:51,"305 Center St, San Francisco, CA 94016" -299110,Lightning Charging Cable,1,14.95,12/16/19 23:06,"929 Hickory St, New York City, NY 10001" -299111,Lightning Charging Cable,1,14.95,12/22/19 06:41,"560 9th St, San Francisco, CA 94016" -299112,Apple Airpods Headphones,1,150,12/11/19 22:48,"882 1st St, San Francisco, CA 94016" -299113,USB-C Charging Cable,1,11.95,12/19/19 20:55,"88 1st St, Atlanta, GA 30301" -299114,Apple Airpods Headphones,1,150,12/04/19 22:46,"498 Sunset St, San Francisco, CA 94016" -299115,Wired Headphones,1,11.99,12/04/19 21:47,"142 Lakeview St, New York City, NY 10001" -299116,34in Ultrawide Monitor,1,379.99,12/30/19 08:03,"545 Dogwood St, Los Angeles, CA 90001" -299117,USB-C Charging Cable,1,11.95,12/24/19 20:25,"523 11th St, Los Angeles, CA 90001" -299118,AAA Batteries (4-pack),2,2.99,12/11/19 21:05,"443 Walnut St, New York City, NY 10001" -299119,27in FHD Monitor,1,149.99,12/26/19 17:07,"916 Park St, Seattle, WA 98101" -299120,Lightning Charging Cable,1,14.95,12/01/19 17:20,"560 12th St, New York City, NY 10001" -299120,AAA Batteries (4-pack),1,2.99,12/01/19 17:20,"560 12th St, New York City, NY 10001" -299121,USB-C Charging Cable,2,11.95,12/23/19 11:30,"227 Willow St, Seattle, WA 98101" -299122,Macbook Pro Laptop,1,1700,12/09/19 14:51,"108 Lake St, Los Angeles, CA 90001" -299123,ThinkPad Laptop,1,999.99,12/20/19 18:51,"651 Chestnut St, Boston, MA 02215" -299123,Lightning Charging Cable,1,14.95,12/20/19 18:51,"651 Chestnut St, Boston, MA 02215" -299124,Lightning Charging Cable,1,14.95,12/21/19 16:24,"370 River St, San Francisco, CA 94016" -299125,USB-C Charging Cable,1,11.95,01/01/20 04:21,"754 Hickory St, New York City, NY 10001" -299126,iPhone,1,700,12/21/19 12:41,"256 Wilson St, Boston, MA 02215" -299126,Lightning Charging Cable,1,14.95,12/21/19 12:41,"256 Wilson St, Boston, MA 02215" -299126,Wired Headphones,1,11.99,12/21/19 12:41,"256 Wilson St, Boston, MA 02215" -299127,AA Batteries (4-pack),3,3.84,12/29/19 21:07,"515 Wilson St, Portland, OR 97035" -299127,AAA Batteries (4-pack),1,2.99,12/29/19 21:07,"515 Wilson St, Portland, OR 97035" -299128,USB-C Charging Cable,1,11.95,12/14/19 19:01,"231 9th St, New York City, NY 10001" -299129,AAA Batteries (4-pack),3,2.99,12/27/19 17:38,"418 Lake St, New York City, NY 10001" -299130,Lightning Charging Cable,1,14.95,12/17/19 12:17,"338 West St, Dallas, TX 75001" -299131,Vareebadd Phone,1,400,12/10/19 15:49,"27 Dogwood St, Dallas, TX 75001" -299132,Lightning Charging Cable,1,14.95,12/14/19 10:00,"15 Adams St, New York City, NY 10001" -299133,AAA Batteries (4-pack),1,2.99,12/05/19 18:38,"961 5th St, Seattle, WA 98101" -299134,AAA Batteries (4-pack),1,2.99,12/09/19 15:38,"914 Chestnut St, Atlanta, GA 30301" -299135,USB-C Charging Cable,1,11.95,12/10/19 16:55,"896 Church St, New York City, NY 10001" -299136,AAA Batteries (4-pack),1,2.99,12/17/19 13:13,"969 Meadow St, Los Angeles, CA 90001" -299137,Apple Airpods Headphones,1,150,12/29/19 16:45,"114 Cedar St, New York City, NY 10001" -299137,Wired Headphones,1,11.99,12/29/19 16:45,"114 Cedar St, New York City, NY 10001" -299138,iPhone,1,700,12/18/19 00:31,"153 Forest St, Dallas, TX 75001" -299139,Wired Headphones,1,11.99,12/28/19 14:07,"310 North St, New York City, NY 10001" -299140,Apple Airpods Headphones,1,150,12/14/19 22:40,"423 Dogwood St, Boston, MA 02215" -299141,Bose SoundSport Headphones,1,99.99,12/19/19 11:16,"901 Hickory St, Portland, ME 04101" -299142,AA Batteries (4-pack),2,3.84,12/03/19 11:21,"168 4th St, Atlanta, GA 30301" -299143,Flatscreen TV,1,300,12/25/19 01:22,"245 Highland St, Austin, TX 73301" -299144,USB-C Charging Cable,1,11.95,12/17/19 11:41,"940 Willow St, Atlanta, GA 30301" -299145,AAA Batteries (4-pack),1,2.99,12/12/19 13:05,"410 14th St, New York City, NY 10001" -299146,Apple Airpods Headphones,1,150,12/02/19 23:03,"629 Sunset St, Boston, MA 02215" -299147,Google Phone,1,600,12/10/19 11:23,"170 Pine St, San Francisco, CA 94016" -299148,USB-C Charging Cable,1,11.95,12/20/19 14:10,"43 Meadow St, Seattle, WA 98101" -299149,27in 4K Gaming Monitor,1,389.99,12/13/19 16:39,"837 North St, San Francisco, CA 94016" -299150,Macbook Pro Laptop,1,1700,12/08/19 20:28,"646 Washington St, Los Angeles, CA 90001" -299151,Flatscreen TV,1,300,12/02/19 18:23,"112 Highland St, New York City, NY 10001" -299152,USB-C Charging Cable,1,11.95,12/23/19 17:25,"437 14th St, Portland, OR 97035" -299153,27in FHD Monitor,1,149.99,12/30/19 19:16,"532 Meadow St, Portland, ME 04101" -299154,20in Monitor,1,109.99,12/06/19 07:57,"82 7th St, San Francisco, CA 94016" -299155,AA Batteries (4-pack),1,3.84,12/25/19 11:13,"561 Meadow St, New York City, NY 10001" -299156,Bose SoundSport Headphones,2,99.99,12/30/19 13:22,"525 6th St, Los Angeles, CA 90001" -299157,Wired Headphones,1,11.99,12/28/19 08:31,"563 Chestnut St, Austin, TX 73301" -299158,Macbook Pro Laptop,1,1700,12/03/19 21:29,"608 Elm St, San Francisco, CA 94016" -299159,AAA Batteries (4-pack),1,2.99,12/23/19 10:24,"771 Pine St, Dallas, TX 75001" -299160,34in Ultrawide Monitor,1,379.99,12/03/19 23:05,"912 Pine St, Los Angeles, CA 90001" -299161,AA Batteries (4-pack),1,3.84,12/27/19 18:53,"757 Forest St, Dallas, TX 75001" -299162,Wired Headphones,1,11.99,12/12/19 11:09,"512 10th St, Dallas, TX 75001" -299163,20in Monitor,1,109.99,12/01/19 08:06,"485 River St, Austin, TX 73301" -299164,Google Phone,1,600,12/14/19 17:21,"594 6th St, San Francisco, CA 94016" -299164,USB-C Charging Cable,1,11.95,12/14/19 17:21,"594 6th St, San Francisco, CA 94016" -299165,AA Batteries (4-pack),1,3.84,12/20/19 20:25,"953 Park St, Dallas, TX 75001" -299166,Wired Headphones,1,11.99,12/22/19 14:28,"309 7th St, New York City, NY 10001" -299167,20in Monitor,2,109.99,12/26/19 15:18,"973 Hill St, San Francisco, CA 94016" -299168,AA Batteries (4-pack),2,3.84,12/14/19 13:21,"817 Spruce St, New York City, NY 10001" -299169,iPhone,1,700,12/21/19 19:40,"983 Madison St, New York City, NY 10001" -299170,34in Ultrawide Monitor,1,379.99,12/05/19 09:19,"972 8th St, Austin, TX 73301" -299171,Lightning Charging Cable,1,14.95,12/17/19 09:28,"273 8th St, San Francisco, CA 94016" -299172,Macbook Pro Laptop,1,1700,12/31/19 15:06,"433 North St, San Francisco, CA 94016" -299173,AAA Batteries (4-pack),1,2.99,12/20/19 21:42,"575 Park St, Seattle, WA 98101" -299174,Flatscreen TV,1,300,12/24/19 19:11,"696 12th St, Portland, OR 97035" -299175,ThinkPad Laptop,1,999.99,12/30/19 08:04,"740 Main St, San Francisco, CA 94016" -299176,27in FHD Monitor,1,149.99,12/17/19 23:16,"930 Meadow St, Atlanta, GA 30301" -299177,27in FHD Monitor,1,149.99,12/02/19 09:30,"823 West St, Boston, MA 02215" -299178,27in FHD Monitor,1,149.99,12/04/19 19:14,"758 River St, Seattle, WA 98101" -299178,Apple Airpods Headphones,1,150,12/04/19 19:14,"758 River St, Seattle, WA 98101" -299179,Lightning Charging Cable,1,14.95,12/28/19 17:52,"55 Spruce St, Portland, OR 97035" -299180,Bose SoundSport Headphones,1,99.99,12/26/19 18:11,"911 14th St, San Francisco, CA 94016" -299181,34in Ultrawide Monitor,1,379.99,12/31/19 17:06,"65 Jackson St, San Francisco, CA 94016" -299182,Lightning Charging Cable,1,14.95,12/24/19 12:48,"847 Pine St, Portland, OR 97035" -299183,USB-C Charging Cable,1,11.95,12/09/19 18:29,"731 Madison St, New York City, NY 10001" -299184,AA Batteries (4-pack),1,3.84,12/04/19 13:42,"592 Jefferson St, San Francisco, CA 94016" -299185,iPhone,1,700,12/21/19 11:24,"975 South St, Atlanta, GA 30301" -299186,Google Phone,1,600,12/29/19 23:20,"305 Meadow St, Austin, TX 73301" -299186,Wired Headphones,1,11.99,12/29/19 23:20,"305 Meadow St, Austin, TX 73301" -299187,Wired Headphones,1,11.99,12/05/19 21:28,"140 Chestnut St, New York City, NY 10001" -299188,Bose SoundSport Headphones,1,99.99,12/29/19 09:24,"896 Cedar St, Los Angeles, CA 90001" -299189,Bose SoundSport Headphones,1,99.99,12/05/19 11:11,"317 River St, San Francisco, CA 94016" -299190,Flatscreen TV,1,300,12/28/19 04:48,"104 12th St, Boston, MA 02215" -299191,Flatscreen TV,1,300,12/28/19 12:08,"723 5th St, Dallas, TX 75001" -299192,Apple Airpods Headphones,1,150,12/11/19 07:32,"374 Main St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -299193,27in FHD Monitor,1,149.99,12/13/19 09:25,"123 Spruce St, Los Angeles, CA 90001" -299194,27in 4K Gaming Monitor,1,389.99,12/11/19 20:05,"175 Wilson St, Atlanta, GA 30301" -299195,Wired Headphones,1,11.99,12/27/19 08:10,"712 Meadow St, Los Angeles, CA 90001" -299196,USB-C Charging Cable,1,11.95,12/16/19 12:09,"905 14th St, Los Angeles, CA 90001" -299197,AAA Batteries (4-pack),1,2.99,12/31/19 22:29,"205 Hickory St, Los Angeles, CA 90001" -299198,34in Ultrawide Monitor,1,379.99,12/04/19 20:23,"202 Pine St, Boston, MA 02215" -299199,Bose SoundSport Headphones,1,99.99,12/09/19 11:44,"664 Main St, Austin, TX 73301" -299200,Wired Headphones,1,11.99,12/30/19 13:08,"934 Meadow St, Portland, OR 97035" -299201,Apple Airpods Headphones,1,150,12/13/19 12:51,"602 Park St, Austin, TX 73301" -299202,USB-C Charging Cable,1,11.95,12/20/19 21:10,"899 Willow St, New York City, NY 10001" -299203,AAA Batteries (4-pack),1,2.99,12/23/19 17:55,"163 Ridge St, New York City, NY 10001" -299204,AA Batteries (4-pack),1,3.84,12/10/19 15:46,"916 Park St, Los Angeles, CA 90001" -299205,Lightning Charging Cable,1,14.95,12/15/19 11:57,"571 Jackson St, Los Angeles, CA 90001" -299206,Vareebadd Phone,1,400,12/10/19 11:00,"436 River St, San Francisco, CA 94016" -299206,USB-C Charging Cable,1,11.95,12/10/19 11:00,"436 River St, San Francisco, CA 94016" -299206,Wired Headphones,1,11.99,12/10/19 11:00,"436 River St, San Francisco, CA 94016" -299207,Bose SoundSport Headphones,1,99.99,12/08/19 12:17,"180 Ridge St, Seattle, WA 98101" -299208,Apple Airpods Headphones,1,150,12/26/19 12:51,"535 Church St, Austin, TX 73301" -299209,AAA Batteries (4-pack),1,2.99,12/28/19 20:31,"113 Elm St, New York City, NY 10001" -299210,Lightning Charging Cable,1,14.95,12/18/19 12:20,"25 11th St, Portland, OR 97035" -299211,Wired Headphones,1,11.99,12/09/19 19:26,"854 River St, San Francisco, CA 94016" -299212,Lightning Charging Cable,1,14.95,12/11/19 22:55,"64 Chestnut St, Los Angeles, CA 90001" -299213,AAA Batteries (4-pack),1,2.99,12/23/19 17:59,"33 South St, Atlanta, GA 30301" -299214,USB-C Charging Cable,1,11.95,12/07/19 16:36,"146 South St, Boston, MA 02215" -299215,iPhone,1,700,12/05/19 10:56,"156 Willow St, Los Angeles, CA 90001" -299216,Apple Airpods Headphones,1,150,12/29/19 11:26,"531 9th St, Portland, OR 97035" -299217,AA Batteries (4-pack),2,3.84,12/22/19 22:57,"422 Cherry St, Los Angeles, CA 90001" -299218,USB-C Charging Cable,1,11.95,12/25/19 10:49,"908 Cherry St, San Francisco, CA 94016" -299219,Lightning Charging Cable,1,14.95,12/16/19 22:48,"798 2nd St, Dallas, TX 75001" -299220,27in 4K Gaming Monitor,1,389.99,12/05/19 18:56,"874 Hill St, Atlanta, GA 30301" -299221,34in Ultrawide Monitor,1,379.99,12/07/19 21:10,"832 Chestnut St, San Francisco, CA 94016" -299222,Apple Airpods Headphones,1,150,12/19/19 20:03,"339 Wilson St, San Francisco, CA 94016" -299223,20in Monitor,1,109.99,12/23/19 23:04,"388 Washington St, Los Angeles, CA 90001" -299224,20in Monitor,1,109.99,12/05/19 19:47,"526 Ridge St, Atlanta, GA 30301" -299225,AA Batteries (4-pack),1,3.84,12/24/19 16:46,"746 Cedar St, Los Angeles, CA 90001" -299226,Flatscreen TV,1,300,12/01/19 09:08,"907 Willow St, Los Angeles, CA 90001" -299227,Lightning Charging Cable,1,14.95,12/08/19 00:00,"568 Forest St, San Francisco, CA 94016" -299228,34in Ultrawide Monitor,1,379.99,12/13/19 10:55,"482 2nd St, Los Angeles, CA 90001" -299229,AAA Batteries (4-pack),1,2.99,12/26/19 14:04,"208 Forest St, Atlanta, GA 30301" -299230,iPhone,1,700,12/06/19 11:32,"611 Maple St, Seattle, WA 98101" -299231,Apple Airpods Headphones,1,150,12/05/19 22:58,"403 14th St, New York City, NY 10001" -299232,Lightning Charging Cable,1,14.95,12/07/19 11:22,"116 Forest St, San Francisco, CA 94016" -299233,27in 4K Gaming Monitor,1,389.99,12/10/19 11:26,"448 Wilson St, New York City, NY 10001" -299234,Apple Airpods Headphones,1,150,12/21/19 19:11,"12 Johnson St, Boston, MA 02215" -299235,Vareebadd Phone,1,400,12/21/19 12:47,"452 Adams St, Austin, TX 73301" -299236,iPhone,1,700,12/10/19 16:13,"726 South St, Boston, MA 02215" -299236,Lightning Charging Cable,1,14.95,12/10/19 16:13,"726 South St, Boston, MA 02215" -299236,Wired Headphones,1,11.99,12/10/19 16:13,"726 South St, Boston, MA 02215" -299237,Bose SoundSport Headphones,1,99.99,12/09/19 10:10,"297 Main St, Portland, OR 97035" -299238,20in Monitor,1,109.99,12/13/19 18:26,"89 Maple St, San Francisco, CA 94016" -299239,Bose SoundSport Headphones,1,99.99,12/15/19 13:11,"767 Hickory St, Boston, MA 02215" -299240,Bose SoundSport Headphones,1,99.99,12/02/19 14:32,"29 Park St, San Francisco, CA 94016" -299241,USB-C Charging Cable,1,11.95,12/23/19 08:58,"25 Maple St, San Francisco, CA 94016" -299242,Lightning Charging Cable,1,14.95,12/14/19 12:27,"109 Ridge St, Los Angeles, CA 90001" -,,,,, -299243,iPhone,1,700,12/09/19 10:33,"288 North St, Los Angeles, CA 90001" -299244,Macbook Pro Laptop,1,1700,12/24/19 22:26,"117 Lakeview St, San Francisco, CA 94016" -299245,Lightning Charging Cable,1,14.95,12/08/19 15:51,"382 South St, Atlanta, GA 30301" -299246,27in 4K Gaming Monitor,1,389.99,12/18/19 21:27,"640 Spruce St, Boston, MA 02215" -299247,Lightning Charging Cable,1,14.95,12/01/19 18:11,"869 4th St, San Francisco, CA 94016" -299248,Lightning Charging Cable,1,14.95,12/03/19 12:05,"359 2nd St, Atlanta, GA 30301" -299249,Flatscreen TV,1,300,12/28/19 18:41,"176 Highland St, New York City, NY 10001" -299250,iPhone,1,700,12/22/19 23:33,"462 Dogwood St, Los Angeles, CA 90001" -299251,iPhone,1,700,12/02/19 22:19,"87 Cherry St, Boston, MA 02215" -299251,Wired Headphones,1,11.99,12/02/19 22:19,"87 Cherry St, Boston, MA 02215" -299252,Wired Headphones,1,11.99,12/12/19 15:30,"59 Lincoln St, Los Angeles, CA 90001" -299253,Wired Headphones,1,11.99,12/01/19 21:24,"483 Adams St, Austin, TX 73301" -299254,AAA Batteries (4-pack),3,2.99,12/10/19 12:41,"795 South St, Portland, OR 97035" -299255,AAA Batteries (4-pack),1,2.99,12/28/19 20:55,"344 Madison St, Seattle, WA 98101" -299256,Macbook Pro Laptop,1,1700,12/20/19 13:03,"890 Cedar St, Dallas, TX 75001" -299257,Google Phone,1,600,12/30/19 10:01,"728 1st St, New York City, NY 10001" -299258,USB-C Charging Cable,1,11.95,12/27/19 12:28,"240 14th St, San Francisco, CA 94016" -299259,AAA Batteries (4-pack),1,2.99,12/21/19 22:02,"127 10th St, Atlanta, GA 30301" -299260,AAA Batteries (4-pack),1,2.99,12/04/19 23:09,"447 Center St, Los Angeles, CA 90001" -299261,Google Phone,1,600,12/10/19 18:35,"75 Center St, New York City, NY 10001" -299262,Vareebadd Phone,1,400,12/24/19 09:18,"331 11th St, Boston, MA 02215" -299263,Wired Headphones,1,11.99,12/28/19 16:57,"939 12th St, Austin, TX 73301" -299264,Apple Airpods Headphones,1,150,12/12/19 09:44,"429 Highland St, San Francisco, CA 94016" -299265,Apple Airpods Headphones,1,150,12/20/19 22:14,"481 North St, Atlanta, GA 30301" -299266,Bose SoundSport Headphones,1,99.99,12/12/19 19:54,"6 8th St, San Francisco, CA 94016" -299267,AAA Batteries (4-pack),1,2.99,12/05/19 11:01,"37 Cherry St, Dallas, TX 75001" -299268,Wired Headphones,1,11.99,12/23/19 05:38,"548 Meadow St, San Francisco, CA 94016" -299268,AAA Batteries (4-pack),1,2.99,12/23/19 05:38,"548 Meadow St, San Francisco, CA 94016" -299269,AAA Batteries (4-pack),1,2.99,12/11/19 12:07,"526 9th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -299270,34in Ultrawide Monitor,1,379.99,12/16/19 18:22,"721 1st St, Dallas, TX 75001" -299271,Lightning Charging Cable,1,14.95,12/25/19 00:17,"140 Forest St, Atlanta, GA 30301" -299272,USB-C Charging Cable,1,11.95,12/22/19 17:41,"121 7th St, Dallas, TX 75001" -299273,Lightning Charging Cable,1,14.95,12/17/19 13:48,"750 Willow St, Los Angeles, CA 90001" -299274,iPhone,1,700,12/05/19 14:03,"814 5th St, Atlanta, GA 30301" -299275,34in Ultrawide Monitor,1,379.99,12/08/19 06:23,"888 Meadow St, Austin, TX 73301" -299276,20in Monitor,1,109.99,12/08/19 18:35,"773 Adams St, Boston, MA 02215" -299277,Bose SoundSport Headphones,1,99.99,12/19/19 11:59,"797 Chestnut St, Los Angeles, CA 90001" -299278,iPhone,1,700,12/01/19 18:54,"57 Park St, San Francisco, CA 94016" -299278,Wired Headphones,1,11.99,12/01/19 18:54,"57 Park St, San Francisco, CA 94016" -299279,20in Monitor,1,109.99,12/14/19 22:40,"174 West St, Seattle, WA 98101" -299280,AAA Batteries (4-pack),1,2.99,12/22/19 20:07,"11 Dogwood St, Boston, MA 02215" -299281,Macbook Pro Laptop,1,1700,12/10/19 10:11,"118 Hickory St, Los Angeles, CA 90001" -299282,Apple Airpods Headphones,1,150,12/10/19 13:29,"58 Hill St, Los Angeles, CA 90001" -299283,Macbook Pro Laptop,1,1700,12/13/19 22:37,"816 2nd St, Dallas, TX 75001" -299284,Lightning Charging Cable,2,14.95,12/28/19 15:02,"441 Walnut St, Seattle, WA 98101" -299285,20in Monitor,1,109.99,12/01/19 20:13,"640 11th St, Los Angeles, CA 90001" -299286,Apple Airpods Headphones,1,150,12/26/19 11:07,"773 Park St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -299287,Wired Headphones,1,11.99,12/15/19 20:44,"591 Hill St, New York City, NY 10001" -299288,AA Batteries (4-pack),1,3.84,12/05/19 15:21,"184 Park St, Los Angeles, CA 90001" -299289,AAA Batteries (4-pack),1,2.99,12/20/19 21:25,"95 Willow St, San Francisco, CA 94016" -299290,Lightning Charging Cable,1,14.95,12/14/19 09:41,"73 Dogwood St, Seattle, WA 98101" -299291,AAA Batteries (4-pack),1,2.99,12/10/19 20:09,"370 Washington St, Portland, OR 97035" -299292,AA Batteries (4-pack),1,3.84,12/21/19 19:16,"204 Sunset St, Seattle, WA 98101" -299293,Bose SoundSport Headphones,1,99.99,12/13/19 09:21,"600 River St, Dallas, TX 75001" -299294,USB-C Charging Cable,1,11.95,12/21/19 12:43,"383 Jackson St, Portland, OR 97035" -299295,USB-C Charging Cable,1,11.95,12/26/19 20:04,"213 Hickory St, Atlanta, GA 30301" -299296,AAA Batteries (4-pack),1,2.99,12/23/19 18:26,"58 Jefferson St, Los Angeles, CA 90001" -299297,Apple Airpods Headphones,1,150,12/12/19 02:34,"953 Hickory St, Seattle, WA 98101" -299298,Bose SoundSport Headphones,1,99.99,12/26/19 22:52,"646 Walnut St, New York City, NY 10001" -299299,Apple Airpods Headphones,1,150,12/24/19 10:08,"673 Spruce St, Dallas, TX 75001" -299300,Lightning Charging Cable,1,14.95,12/06/19 16:49,"212 Chestnut St, Seattle, WA 98101" -299301,Flatscreen TV,1,300,12/22/19 18:31,"697 14th St, Seattle, WA 98101" -299302,27in FHD Monitor,1,149.99,12/18/19 12:05,"699 Madison St, Boston, MA 02215" -299303,iPhone,1,700,12/10/19 22:46,"199 Dogwood St, New York City, NY 10001" -299304,Wired Headphones,2,11.99,12/04/19 11:00,"570 Highland St, New York City, NY 10001" -299305,iPhone,1,700,12/10/19 20:06,"784 4th St, San Francisco, CA 94016" -299306,Lightning Charging Cable,1,14.95,12/02/19 14:57,"628 11th St, New York City, NY 10001" -299307,USB-C Charging Cable,2,11.95,12/29/19 12:24,"940 11th St, Austin, TX 73301" -299308,USB-C Charging Cable,1,11.95,12/11/19 16:23,"606 Ridge St, Los Angeles, CA 90001" -299309,AA Batteries (4-pack),1,3.84,12/28/19 14:31,"572 8th St, Atlanta, GA 30301" -299310,20in Monitor,1,109.99,12/19/19 19:00,"501 Center St, San Francisco, CA 94016" -299311,USB-C Charging Cable,2,11.95,12/05/19 18:39,"403 11th St, New York City, NY 10001" -299312,Apple Airpods Headphones,1,150,12/25/19 20:32,"913 River St, Seattle, WA 98101" -299313,Lightning Charging Cable,1,14.95,12/29/19 09:30,"802 Meadow St, San Francisco, CA 94016" -299314,Lightning Charging Cable,1,14.95,12/16/19 20:10,"193 Main St, Atlanta, GA 30301" -299315,Wired Headphones,1,11.99,12/29/19 12:44,"185 5th St, New York City, NY 10001" -299316,Wired Headphones,1,11.99,12/22/19 13:57,"235 Dogwood St, Atlanta, GA 30301" -299317,USB-C Charging Cable,1,11.95,12/13/19 17:00,"812 Sunset St, Los Angeles, CA 90001" -299318,Google Phone,1,600,12/20/19 16:46,"713 Hill St, Austin, TX 73301" -299319,Bose SoundSport Headphones,1,99.99,12/18/19 21:32,"883 Cherry St, Los Angeles, CA 90001" -299320,iPhone,1,700,12/12/19 15:14,"196 Church St, Los Angeles, CA 90001" -299321,Macbook Pro Laptop,1,1700,12/23/19 19:47,"309 Park St, Los Angeles, CA 90001" -299322,AAA Batteries (4-pack),2,2.99,12/24/19 09:28,"955 Forest St, Seattle, WA 98101" -299323,Bose SoundSport Headphones,1,99.99,12/23/19 21:20,"692 8th St, Austin, TX 73301" -299324,AAA Batteries (4-pack),1,2.99,12/13/19 08:35,"497 Hill St, San Francisco, CA 94016" -299325,34in Ultrawide Monitor,1,379.99,12/04/19 07:49,"155 Johnson St, Boston, MA 02215" -299326,Apple Airpods Headphones,1,150,12/17/19 23:07,"218 Jackson St, San Francisco, CA 94016" -299327,AAA Batteries (4-pack),1,2.99,12/27/19 20:38,"650 Highland St, Boston, MA 02215" -299328,iPhone,1,700,12/21/19 12:11,"690 Ridge St, Boston, MA 02215" -299329,USB-C Charging Cable,1,11.95,12/12/19 11:02,"217 Madison St, New York City, NY 10001" -299330,Wired Headphones,1,11.99,12/07/19 22:42,"37 7th St, Los Angeles, CA 90001" -299331,Wired Headphones,1,11.99,12/15/19 11:47,"918 Center St, Dallas, TX 75001" -299332,Apple Airpods Headphones,1,150,12/18/19 08:28,"486 Washington St, Atlanta, GA 30301" -299333,AAA Batteries (4-pack),1,2.99,12/29/19 19:32,"101 Main St, Dallas, TX 75001" -299334,Apple Airpods Headphones,1,150,12/25/19 14:57,"579 Johnson St, San Francisco, CA 94016" -299335,27in 4K Gaming Monitor,1,389.99,12/13/19 20:51,"334 Johnson St, Dallas, TX 75001" -299336,AAA Batteries (4-pack),1,2.99,12/01/19 12:15,"580 Maple St, San Francisco, CA 94016" -299337,27in 4K Gaming Monitor,1,389.99,12/13/19 20:04,"163 Hill St, New York City, NY 10001" -299338,AAA Batteries (4-pack),1,2.99,12/27/19 20:55,"921 Washington St, San Francisco, CA 94016" -,,,,, -299339,Bose SoundSport Headphones,1,99.99,12/20/19 12:15,"963 11th St, Boston, MA 02215" -299340,27in FHD Monitor,1,149.99,12/16/19 11:12,"206 Elm St, Atlanta, GA 30301" -299341,AAA Batteries (4-pack),4,2.99,12/05/19 05:56,"643 1st St, Dallas, TX 75001" -299342,AAA Batteries (4-pack),1,2.99,12/05/19 12:27,"798 Chestnut St, Seattle, WA 98101" -299343,Wired Headphones,1,11.99,12/17/19 19:05,"621 River St, Seattle, WA 98101" -299344,USB-C Charging Cable,1,11.95,12/02/19 23:21,"646 6th St, Los Angeles, CA 90001" -299345,20in Monitor,1,109.99,12/20/19 12:09,"440 5th St, Dallas, TX 75001" -299346,34in Ultrawide Monitor,1,379.99,12/19/19 11:17,"593 Center St, Austin, TX 73301" -299347,Bose SoundSport Headphones,1,99.99,12/10/19 12:15,"963 Dogwood St, Los Angeles, CA 90001" -299348,34in Ultrawide Monitor,1,379.99,12/20/19 06:15,"170 Washington St, New York City, NY 10001" -299349,27in 4K Gaming Monitor,1,389.99,12/10/19 23:32,"917 River St, Los Angeles, CA 90001" -299350,Bose SoundSport Headphones,1,99.99,12/15/19 10:44,"762 11th St, San Francisco, CA 94016" -299351,Wired Headphones,1,11.99,12/29/19 07:14,"273 Walnut St, Dallas, TX 75001" -299352,Wired Headphones,1,11.99,12/10/19 11:21,"768 Park St, Seattle, WA 98101" -299353,USB-C Charging Cable,1,11.95,12/28/19 22:38,"697 Pine St, Portland, ME 04101" -299354,USB-C Charging Cable,1,11.95,12/07/19 07:46,"989 Elm St, Seattle, WA 98101" -299355,Google Phone,1,600,12/03/19 17:20,"898 Lakeview St, San Francisco, CA 94016" -299356,AAA Batteries (4-pack),1,2.99,12/01/19 04:32,"512 Lake St, Dallas, TX 75001" -299357,Bose SoundSport Headphones,1,99.99,12/29/19 18:04,"516 6th St, Seattle, WA 98101" -299358,34in Ultrawide Monitor,1,379.99,12/03/19 20:07,"707 Hill St, San Francisco, CA 94016" -299359,AAA Batteries (4-pack),1,2.99,12/24/19 12:41,"357 Center St, San Francisco, CA 94016" -299360,Lightning Charging Cable,1,14.95,12/29/19 13:57,"784 Adams St, Los Angeles, CA 90001" -299361,27in FHD Monitor,1,149.99,12/29/19 09:06,"770 Dogwood St, Portland, OR 97035" -299362,Apple Airpods Headphones,1,150,12/10/19 16:27,"556 South St, Dallas, TX 75001" -299363,USB-C Charging Cable,1,11.95,12/05/19 18:28,"869 North St, San Francisco, CA 94016" -299364,AAA Batteries (4-pack),2,2.99,12/13/19 21:59,"269 Meadow St, Boston, MA 02215" -299365,Google Phone,1,600,12/22/19 22:33,"814 Walnut St, Austin, TX 73301" -299366,LG Dryer,1,600.0,12/18/19 08:15,"829 Johnson St, Los Angeles, CA 90001" -299367,Apple Airpods Headphones,1,150,12/22/19 16:07,"331 Elm St, San Francisco, CA 94016" -299368,AA Batteries (4-pack),1,3.84,12/26/19 21:43,"718 5th St, Atlanta, GA 30301" -299369,Lightning Charging Cable,1,14.95,12/06/19 17:11,"29 2nd St, Dallas, TX 75001" -299370,Lightning Charging Cable,1,14.95,12/30/19 16:56,"631 13th St, San Francisco, CA 94016" -299371,USB-C Charging Cable,1,11.95,12/31/19 22:20,"275 Highland St, Dallas, TX 75001" -299372,AA Batteries (4-pack),1,3.84,12/13/19 10:25,"195 1st St, Dallas, TX 75001" -299373,Lightning Charging Cable,1,14.95,12/18/19 12:43,"204 Lake St, Atlanta, GA 30301" -299374,Macbook Pro Laptop,1,1700,12/22/19 11:22,"960 Cedar St, Dallas, TX 75001" -299375,20in Monitor,1,109.99,12/17/19 11:05,"166 10th St, New York City, NY 10001" -299376,Lightning Charging Cable,1,14.95,12/12/19 22:03,"218 Meadow St, Boston, MA 02215" -299377,AAA Batteries (4-pack),1,2.99,12/27/19 13:45,"210 South St, Dallas, TX 75001" -299378,Vareebadd Phone,1,400,12/31/19 23:37,"876 Lincoln St, San Francisco, CA 94016" -299379,USB-C Charging Cable,2,11.95,12/26/19 22:14,"79 Jackson St, Los Angeles, CA 90001" -299380,Lightning Charging Cable,1,14.95,12/04/19 18:21,"62 11th St, Portland, OR 97035" -299381,AA Batteries (4-pack),1,3.84,12/17/19 15:40,"195 West St, Atlanta, GA 30301" -299382,Lightning Charging Cable,1,14.95,12/28/19 16:28,"430 5th St, Los Angeles, CA 90001" -299383,AAA Batteries (4-pack),1,2.99,12/10/19 14:39,"505 West St, San Francisco, CA 94016" -299384,Macbook Pro Laptop,1,1700,12/31/19 19:54,"308 Pine St, San Francisco, CA 94016" -299385,AAA Batteries (4-pack),1,2.99,12/15/19 17:34,"28 Pine St, Portland, OR 97035" -299386,USB-C Charging Cable,1,11.95,12/21/19 11:31,"838 Forest St, San Francisco, CA 94016" -299387,Bose SoundSport Headphones,1,99.99,12/29/19 15:56,"828 Hickory St, Los Angeles, CA 90001" -299388,Lightning Charging Cable,1,14.95,12/31/19 19:33,"158 Dogwood St, Los Angeles, CA 90001" -299389,Flatscreen TV,1,300,12/26/19 23:12,"699 Highland St, San Francisco, CA 94016" -299390,Wired Headphones,1,11.99,12/14/19 15:52,"979 Church St, Dallas, TX 75001" -299391,AA Batteries (4-pack),1,3.84,12/15/19 21:56,"534 Hill St, San Francisco, CA 94016" -299392,Lightning Charging Cable,1,14.95,12/20/19 16:37,"280 13th St, Boston, MA 02215" -299393,AAA Batteries (4-pack),3,2.99,12/14/19 13:02,"736 12th St, Boston, MA 02215" -299394,Lightning Charging Cable,1,14.95,12/12/19 09:55,"582 4th St, Portland, ME 04101" -299395,AA Batteries (4-pack),1,3.84,12/19/19 16:42,"309 Pine St, New York City, NY 10001" -299396,Apple Airpods Headphones,1,150,12/25/19 16:09,"395 14th St, New York City, NY 10001" -299397,AA Batteries (4-pack),1,3.84,12/08/19 22:02,"517 Jackson St, Los Angeles, CA 90001" -299398,iPhone,1,700,12/09/19 12:23,"562 1st St, San Francisco, CA 94016" -299398,Apple Airpods Headphones,1,150,12/09/19 12:23,"562 1st St, San Francisco, CA 94016" -299399,Apple Airpods Headphones,1,150,12/15/19 10:40,"171 Adams St, San Francisco, CA 94016" -299400,AA Batteries (4-pack),3,3.84,12/21/19 15:47,"822 Main St, San Francisco, CA 94016" -299401,Apple Airpods Headphones,1,150,12/29/19 06:54,"503 8th St, New York City, NY 10001" -299402,USB-C Charging Cable,1,11.95,12/18/19 20:19,"507 14th St, San Francisco, CA 94016" -299403,Lightning Charging Cable,1,14.95,12/19/19 09:59,"484 North St, San Francisco, CA 94016" -299404,USB-C Charging Cable,1,11.95,12/21/19 10:18,"878 Lincoln St, Boston, MA 02215" -299405,Bose SoundSport Headphones,1,99.99,12/10/19 19:05,"207 12th St, Portland, ME 04101" -299406,Lightning Charging Cable,1,14.95,12/12/19 19:25,"945 Jackson St, New York City, NY 10001" -299407,AAA Batteries (4-pack),1,2.99,12/19/19 23:45,"647 Sunset St, Portland, OR 97035" -299408,AA Batteries (4-pack),2,3.84,12/27/19 11:26,"827 4th St, San Francisco, CA 94016" -299409,Lightning Charging Cable,1,14.95,12/14/19 10:19,"753 9th St, Seattle, WA 98101" -299410,Wired Headphones,1,11.99,12/13/19 14:52,"192 5th St, Boston, MA 02215" -299411,USB-C Charging Cable,1,11.95,12/21/19 14:35,"29 North St, Atlanta, GA 30301" -299412,Lightning Charging Cable,1,14.95,12/04/19 08:25,"648 Spruce St, New York City, NY 10001" -299413,27in FHD Monitor,1,149.99,12/26/19 17:34,"107 Pine St, San Francisco, CA 94016" -299414,Bose SoundSport Headphones,1,99.99,12/09/19 08:21,"653 Dogwood St, Portland, OR 97035" -299415,Flatscreen TV,1,300,12/14/19 16:25,"402 River St, New York City, NY 10001" -299416,Google Phone,1,600,12/31/19 19:48,"950 Center St, Boston, MA 02215" -299417,AAA Batteries (4-pack),1,2.99,12/07/19 13:26,"592 Pine St, San Francisco, CA 94016" -299418,ThinkPad Laptop,1,999.99,12/17/19 19:46,"897 Adams St, Atlanta, GA 30301" -299419,Wired Headphones,1,11.99,12/20/19 12:45,"495 Washington St, San Francisco, CA 94016" -299420,USB-C Charging Cable,1,11.95,12/10/19 20:17,"630 Jackson St, Los Angeles, CA 90001" -299421,Wired Headphones,1,11.99,12/04/19 15:25,"707 North St, San Francisco, CA 94016" -299422,34in Ultrawide Monitor,1,379.99,12/11/19 13:47,"267 Madison St, Seattle, WA 98101" -299423,Apple Airpods Headphones,1,150,12/02/19 22:48,"440 Maple St, Boston, MA 02215" -299424,Macbook Pro Laptop,1,1700,12/03/19 12:54,"936 Highland St, San Francisco, CA 94016" -299425,Wired Headphones,1,11.99,12/14/19 14:54,"902 Jefferson St, Dallas, TX 75001" -299426,AAA Batteries (4-pack),3,2.99,12/15/19 13:31,"840 5th St, San Francisco, CA 94016" -299427,AA Batteries (4-pack),1,3.84,12/02/19 22:15,"758 Ridge St, Atlanta, GA 30301" -299428,USB-C Charging Cable,1,11.95,12/21/19 19:23,"590 Park St, Seattle, WA 98101" -299429,AA Batteries (4-pack),1,3.84,12/28/19 06:14,"952 Hill St, Portland, OR 97035" -299430,Apple Airpods Headphones,1,150,12/30/19 15:16,"470 Willow St, San Francisco, CA 94016" -299431,Wired Headphones,1,11.99,12/05/19 22:18,"412 Madison St, San Francisco, CA 94016" -299432,34in Ultrawide Monitor,1,379.99,12/27/19 15:52,"886 5th St, Portland, OR 97035" -299433,USB-C Charging Cable,1,11.95,12/21/19 20:06,"753 South St, Atlanta, GA 30301" -299434,AAA Batteries (4-pack),4,2.99,12/20/19 18:43,"664 Ridge St, Boston, MA 02215" -299434,27in FHD Monitor,1,149.99,12/20/19 18:43,"664 Ridge St, Boston, MA 02215" -299435,Wired Headphones,1,11.99,12/18/19 13:21,"492 9th St, Los Angeles, CA 90001" -299436,34in Ultrawide Monitor,1,379.99,12/29/19 19:47,"804 7th St, New York City, NY 10001" -299437,iPhone,1,700,12/12/19 13:50,"198 Hill St, Boston, MA 02215" -299438,Wired Headphones,1,11.99,12/27/19 17:37,"679 Lake St, San Francisco, CA 94016" -299439,ThinkPad Laptop,1,999.99,12/03/19 08:23,"59 Willow St, Los Angeles, CA 90001" -299440,Bose SoundSport Headphones,1,99.99,12/04/19 18:27,"129 Chestnut St, Los Angeles, CA 90001" -299441,Lightning Charging Cable,1,14.95,12/28/19 08:18,"514 Meadow St, Los Angeles, CA 90001" -299442,iPhone,1,700,12/26/19 09:17,"416 Center St, New York City, NY 10001" -299442,Wired Headphones,1,11.99,12/26/19 09:17,"416 Center St, New York City, NY 10001" -299443,ThinkPad Laptop,1,999.99,12/12/19 14:32,"776 Sunset St, New York City, NY 10001" -299444,AA Batteries (4-pack),5,3.84,12/28/19 19:11,"142 Ridge St, Los Angeles, CA 90001" -299445,USB-C Charging Cable,1,11.95,12/08/19 14:35,"291 Madison St, New York City, NY 10001" -299446,Bose SoundSport Headphones,1,99.99,12/19/19 10:05,"773 Park St, San Francisco, CA 94016" -299447,27in 4K Gaming Monitor,1,389.99,12/04/19 10:57,"791 Washington St, Atlanta, GA 30301" -299448,Wired Headphones,1,11.99,12/13/19 20:28,"598 11th St, New York City, NY 10001" -299449,Bose SoundSport Headphones,1,99.99,12/12/19 15:15,"511 13th St, New York City, NY 10001" -299450,AAA Batteries (4-pack),2,2.99,12/11/19 10:15,"820 13th St, New York City, NY 10001" -299451,Macbook Pro Laptop,1,1700,12/22/19 10:24,"527 Park St, New York City, NY 10001" -299452,AAA Batteries (4-pack),1,2.99,12/21/19 19:44,"721 9th St, Atlanta, GA 30301" -299453,27in FHD Monitor,1,149.99,12/12/19 13:09,"127 7th St, San Francisco, CA 94016" -299454,AA Batteries (4-pack),1,3.84,12/10/19 20:08,"681 14th St, Portland, OR 97035" -299455,AA Batteries (4-pack),2,3.84,12/29/19 08:24,"976 Center St, Dallas, TX 75001" -299456,Apple Airpods Headphones,1,150,12/30/19 22:06,"584 4th St, Los Angeles, CA 90001" -299457,Apple Airpods Headphones,1,150,12/16/19 13:06,"399 Cedar St, New York City, NY 10001" -299458,Wired Headphones,1,11.99,12/10/19 10:01,"270 River St, Portland, OR 97035" -299459,USB-C Charging Cable,1,11.95,12/23/19 17:33,"771 Elm St, San Francisco, CA 94016" -299460,Bose SoundSport Headphones,1,99.99,12/08/19 13:11,"809 North St, Portland, OR 97035" -299461,Lightning Charging Cable,1,14.95,12/11/19 20:16,"316 4th St, Atlanta, GA 30301" -299462,AAA Batteries (4-pack),2,2.99,12/31/19 15:47,"223 10th St, Los Angeles, CA 90001" -299463,AA Batteries (4-pack),3,3.84,12/20/19 17:17,"979 13th St, Los Angeles, CA 90001" -299464,27in 4K Gaming Monitor,1,389.99,12/26/19 20:46,"699 Walnut St, New York City, NY 10001" -299465,Flatscreen TV,1,300,12/22/19 19:08,"858 Chestnut St, San Francisco, CA 94016" -299466,AA Batteries (4-pack),1,3.84,12/22/19 10:12,"519 Cherry St, Los Angeles, CA 90001" -299467,Lightning Charging Cable,1,14.95,12/19/19 11:16,"337 Main St, San Francisco, CA 94016" -299468,USB-C Charging Cable,1,11.95,12/29/19 17:08,"317 Johnson St, Los Angeles, CA 90001" -299469,34in Ultrawide Monitor,1,379.99,12/13/19 00:29,"726 11th St, New York City, NY 10001" -299470,Flatscreen TV,1,300,12/21/19 17:14,"996 Johnson St, New York City, NY 10001" -299471,34in Ultrawide Monitor,1,379.99,12/28/19 12:46,"112 Spruce St, Los Angeles, CA 90001" -299472,AAA Batteries (4-pack),1,2.99,12/21/19 03:52,"450 6th St, Los Angeles, CA 90001" -299473,34in Ultrawide Monitor,1,379.99,12/07/19 12:31,"619 Willow St, Atlanta, GA 30301" -299474,Bose SoundSport Headphones,1,99.99,12/06/19 23:28,"909 1st St, Dallas, TX 75001" -299475,AAA Batteries (4-pack),1,2.99,12/20/19 15:52,"378 Hickory St, New York City, NY 10001" -299476,Lightning Charging Cable,1,14.95,12/06/19 16:46,"815 Cherry St, Portland, ME 04101" -299477,AA Batteries (4-pack),1,3.84,12/28/19 19:15,"670 Walnut St, Portland, OR 97035" -299478,AA Batteries (4-pack),1,3.84,12/07/19 16:35,"499 Ridge St, Los Angeles, CA 90001" -299479,34in Ultrawide Monitor,1,379.99,12/03/19 20:34,"294 Ridge St, Los Angeles, CA 90001" -299480,Wired Headphones,1,11.99,12/09/19 23:19,"397 12th St, Dallas, TX 75001" -299481,AA Batteries (4-pack),3,3.84,12/06/19 20:16,"372 Main St, New York City, NY 10001" -299482,Apple Airpods Headphones,1,150,12/08/19 23:03,"684 Hill St, Portland, OR 97035" -299483,Macbook Pro Laptop,1,1700,12/15/19 14:27,"235 Sunset St, Los Angeles, CA 90001" -299484,Vareebadd Phone,1,400,12/29/19 00:46,"959 Church St, Seattle, WA 98101" -299485,20in Monitor,1,109.99,12/29/19 16:29,"485 13th St, Seattle, WA 98101" -299486,34in Ultrawide Monitor,1,379.99,12/01/19 23:05,"678 Cherry St, San Francisco, CA 94016" -299487,AAA Batteries (4-pack),1,2.99,12/05/19 02:12,"834 West St, Los Angeles, CA 90001" -299488,Apple Airpods Headphones,1,150,12/29/19 12:30,"752 1st St, Austin, TX 73301" -299489,iPhone,1,700,12/05/19 20:18,"327 Hickory St, New York City, NY 10001" -299490,Lightning Charging Cable,1,14.95,12/08/19 13:42,"98 Lincoln St, Austin, TX 73301" -299491,Lightning Charging Cable,1,14.95,12/20/19 19:59,"468 Center St, Boston, MA 02215" -299492,Lightning Charging Cable,1,14.95,12/13/19 11:29,"451 Spruce St, Portland, OR 97035" -299493,AAA Batteries (4-pack),3,2.99,12/10/19 07:47,"599 Sunset St, Portland, OR 97035" -299494,AA Batteries (4-pack),1,3.84,12/10/19 16:53,"616 Ridge St, New York City, NY 10001" -299495,Lightning Charging Cable,1,14.95,12/24/19 19:47,"878 Hickory St, Boston, MA 02215" -299496,Apple Airpods Headphones,1,150,12/24/19 12:40,"784 Washington St, San Francisco, CA 94016" -299497,27in FHD Monitor,1,149.99,12/19/19 10:53,"410 Hill St, Boston, MA 02215" -299498,Wired Headphones,1,11.99,12/16/19 01:11,"242 Sunset St, Atlanta, GA 30301" -299499,AA Batteries (4-pack),2,3.84,12/18/19 19:46,"723 Dogwood St, Los Angeles, CA 90001" -299500,Lightning Charging Cable,1,14.95,12/24/19 22:19,"926 North St, San Francisco, CA 94016" -299501,AA Batteries (4-pack),1,3.84,12/23/19 21:18,"151 14th St, Seattle, WA 98101" -299502,AA Batteries (4-pack),2,3.84,12/24/19 12:34,"696 2nd St, San Francisco, CA 94016" -299503,34in Ultrawide Monitor,1,379.99,12/03/19 14:48,"239 Main St, Austin, TX 73301" -299504,Lightning Charging Cable,1,14.95,12/12/19 19:57,"485 Lake St, San Francisco, CA 94016" -299505,Wired Headphones,1,11.99,12/18/19 12:15,"363 Jackson St, San Francisco, CA 94016" -299506,Apple Airpods Headphones,1,150,12/07/19 09:35,"284 9th St, Los Angeles, CA 90001" -299507,Apple Airpods Headphones,1,150,12/14/19 23:48,"529 Johnson St, Los Angeles, CA 90001" -299508,AA Batteries (4-pack),2,3.84,12/14/19 21:31,"997 Sunset St, Dallas, TX 75001" -299509,iPhone,1,700,12/24/19 14:18,"404 River St, Atlanta, GA 30301" -299510,USB-C Charging Cable,1,11.95,12/16/19 04:21,"635 2nd St, Boston, MA 02215" -299511,Wired Headphones,1,11.99,12/28/19 14:06,"393 12th St, San Francisco, CA 94016" -299512,27in 4K Gaming Monitor,1,389.99,12/20/19 02:24,"988 River St, Los Angeles, CA 90001" -299513,USB-C Charging Cable,1,11.95,12/07/19 21:57,"17 Highland St, Austin, TX 73301" -299514,Apple Airpods Headphones,1,150,12/26/19 10:04,"568 Elm St, San Francisco, CA 94016" -299515,Lightning Charging Cable,1,14.95,12/16/19 04:04,"81 14th St, San Francisco, CA 94016" -299516,Lightning Charging Cable,1,14.95,12/27/19 14:13,"319 Cherry St, San Francisco, CA 94016" -299517,Apple Airpods Headphones,1,150,12/28/19 21:14,"803 Pine St, Dallas, TX 75001" -299518,Flatscreen TV,1,300,12/07/19 10:24,"273 Meadow St, New York City, NY 10001" -299518,34in Ultrawide Monitor,1,379.99,12/07/19 10:24,"273 Meadow St, New York City, NY 10001" -299519,27in 4K Gaming Monitor,1,389.99,12/10/19 19:38,"25 13th St, San Francisco, CA 94016" -299520,USB-C Charging Cable,1,11.95,12/15/19 10:16,"532 Lakeview St, New York City, NY 10001" -299521,USB-C Charging Cable,1,11.95,12/29/19 11:56,"599 Jefferson St, New York City, NY 10001" -299522,Wired Headphones,1,11.99,12/02/19 06:05,"288 Lincoln St, Los Angeles, CA 90001" -299523,Bose SoundSport Headphones,1,99.99,12/14/19 20:52,"30 Church St, Atlanta, GA 30301" -299524,Lightning Charging Cable,1,14.95,12/01/19 21:15,"610 Jefferson St, Los Angeles, CA 90001" -299525,USB-C Charging Cable,1,11.95,12/25/19 15:41,"158 Sunset St, San Francisco, CA 94016" -299526,USB-C Charging Cable,1,11.95,12/11/19 19:39,"472 8th St, San Francisco, CA 94016" -299527,iPhone,1,700,12/29/19 15:31,"796 Johnson St, Los Angeles, CA 90001" -299528,AA Batteries (4-pack),1,3.84,12/15/19 17:18,"298 Johnson St, Atlanta, GA 30301" -299529,Wired Headphones,1,11.99,12/28/19 13:51,"603 8th St, San Francisco, CA 94016" -299530,AAA Batteries (4-pack),1,2.99,12/29/19 17:39,"352 Walnut St, Boston, MA 02215" -299531,AA Batteries (4-pack),1,3.84,12/27/19 06:24,"878 Park St, Portland, OR 97035" -299532,LG Washing Machine,1,600.0,12/05/19 11:10,"605 Church St, San Francisco, CA 94016" -299533,AAA Batteries (4-pack),1,2.99,12/04/19 19:50,"127 8th St, San Francisco, CA 94016" -299534,USB-C Charging Cable,1,11.95,12/19/19 16:35,"99 Spruce St, Portland, ME 04101" -299535,iPhone,1,700,12/09/19 00:15,"638 4th St, Los Angeles, CA 90001" -299536,AAA Batteries (4-pack),1,2.99,12/17/19 22:23,"851 Wilson St, Los Angeles, CA 90001" -299536,Flatscreen TV,1,300,12/17/19 22:23,"851 Wilson St, Los Angeles, CA 90001" -299537,AA Batteries (4-pack),1,3.84,12/16/19 12:48,"71 14th St, Portland, ME 04101" -299538,Flatscreen TV,1,300,12/29/19 23:15,"210 North St, Atlanta, GA 30301" -299539,20in Monitor,1,109.99,12/17/19 17:59,"821 Willow St, Seattle, WA 98101" -299540,Google Phone,1,600,12/20/19 13:20,"321 Wilson St, Portland, OR 97035" -299540,USB-C Charging Cable,1,11.95,12/20/19 13:20,"321 Wilson St, Portland, OR 97035" -299541,USB-C Charging Cable,1,11.95,12/18/19 00:17,"538 Sunset St, Los Angeles, CA 90001" -299542,AAA Batteries (4-pack),1,2.99,12/17/19 10:55,"156 Center St, San Francisco, CA 94016" -299543,AAA Batteries (4-pack),1,2.99,12/15/19 20:12,"386 Washington St, Boston, MA 02215" -299544,Flatscreen TV,1,300,12/09/19 19:09,"9 Dogwood St, San Francisco, CA 94016" -299545,AAA Batteries (4-pack),1,2.99,12/13/19 14:28,"537 Jefferson St, Los Angeles, CA 90001" -299546,Wired Headphones,1,11.99,12/13/19 11:15,"512 Ridge St, Atlanta, GA 30301" -299547,Bose SoundSport Headphones,1,99.99,12/23/19 03:00,"278 2nd St, New York City, NY 10001" -299548,Wired Headphones,1,11.99,12/23/19 16:10,"299 West St, New York City, NY 10001" -299549,AAA Batteries (4-pack),1,2.99,12/17/19 13:30,"454 10th St, San Francisco, CA 94016" -299550,Lightning Charging Cable,1,14.95,12/27/19 11:55,"861 Forest St, Atlanta, GA 30301" -299550,AA Batteries (4-pack),2,3.84,12/27/19 11:55,"861 Forest St, Atlanta, GA 30301" -299551,AA Batteries (4-pack),2,3.84,12/26/19 07:39,"236 5th St, Los Angeles, CA 90001" -299552,USB-C Charging Cable,1,11.95,12/26/19 22:03,"273 6th St, San Francisco, CA 94016" -299553,Flatscreen TV,1,300,12/17/19 18:56,"136 2nd St, Los Angeles, CA 90001" -299554,Wired Headphones,1,11.99,12/11/19 15:29,"362 Lakeview St, Los Angeles, CA 90001" -299555,Lightning Charging Cable,1,14.95,12/05/19 00:00,"403 9th St, Los Angeles, CA 90001" -299556,Wired Headphones,1,11.99,12/24/19 14:02,"505 Dogwood St, New York City, NY 10001" -299557,Lightning Charging Cable,1,14.95,12/25/19 02:01,"84 5th St, Boston, MA 02215" -299558,Lightning Charging Cable,1,14.95,12/31/19 16:48,"216 Park St, Austin, TX 73301" -299559,ThinkPad Laptop,1,999.99,12/03/19 23:27,"299 South St, San Francisco, CA 94016" -299560,Apple Airpods Headphones,1,150,12/08/19 13:57,"480 Lakeview St, Los Angeles, CA 90001" -299561,20in Monitor,1,109.99,12/22/19 19:46,"917 Forest St, Los Angeles, CA 90001" -299562,AA Batteries (4-pack),1,3.84,12/06/19 01:45,"471 8th St, San Francisco, CA 94016" -299563,Lightning Charging Cable,1,14.95,12/02/19 11:48,"45 4th St, New York City, NY 10001" -299564,Bose SoundSport Headphones,1,99.99,12/15/19 12:04,"696 Chestnut St, New York City, NY 10001" -299565,27in 4K Gaming Monitor,1,389.99,12/23/19 07:39,"304 Hickory St, Dallas, TX 75001" -299566,AA Batteries (4-pack),1,3.84,12/21/19 09:19,"102 River St, Boston, MA 02215" -299567,Bose SoundSport Headphones,1,99.99,12/16/19 19:08,"131 Park St, Boston, MA 02215" -299568,Apple Airpods Headphones,1,150,12/04/19 22:16,"438 Jefferson St, Dallas, TX 75001" -299569,ThinkPad Laptop,1,999.99,12/14/19 06:47,"606 Maple St, Boston, MA 02215" -299570,Bose SoundSport Headphones,1,99.99,12/22/19 01:25,"140 5th St, New York City, NY 10001" -299571,27in FHD Monitor,1,149.99,12/26/19 11:04,"9 11th St, San Francisco, CA 94016" -299572,Apple Airpods Headphones,1,150,12/30/19 09:17,"757 Walnut St, New York City, NY 10001" -299572,Wired Headphones,1,11.99,12/30/19 09:17,"757 Walnut St, New York City, NY 10001" -299573,Lightning Charging Cable,1,14.95,12/12/19 14:26,"855 2nd St, Atlanta, GA 30301" -299573,Bose SoundSport Headphones,1,99.99,12/12/19 14:26,"855 2nd St, Atlanta, GA 30301" -299574,iPhone,1,700,12/09/19 12:13,"610 13th St, San Francisco, CA 94016" -299575,USB-C Charging Cable,1,11.95,12/01/19 21:35,"999 Dogwood St, Atlanta, GA 30301" -299576,USB-C Charging Cable,1,11.95,12/26/19 12:48,"442 Maple St, New York City, NY 10001" -299577,Wired Headphones,1,11.99,12/11/19 16:09,"79 South St, Austin, TX 73301" -299578,Lightning Charging Cable,2,14.95,12/11/19 18:00,"794 Cherry St, Los Angeles, CA 90001" -299579,27in FHD Monitor,1,149.99,12/24/19 11:23,"789 Spruce St, Boston, MA 02215" -299580,Lightning Charging Cable,1,14.95,12/25/19 15:05,"677 4th St, Los Angeles, CA 90001" -299581,34in Ultrawide Monitor,1,379.99,12/31/19 10:53,"564 Main St, Dallas, TX 75001" -299582,AAA Batteries (4-pack),1,2.99,12/02/19 22:47,"29 Lakeview St, Los Angeles, CA 90001" -299583,iPhone,1,700,12/24/19 21:08,"195 2nd St, Boston, MA 02215" -299584,ThinkPad Laptop,1,999.99,12/12/19 18:51,"866 North St, San Francisco, CA 94016" -299585,27in 4K Gaming Monitor,1,389.99,12/11/19 20:11,"22 River St, Boston, MA 02215" -299586,iPhone,1,700,12/09/19 01:50,"770 Highland St, Boston, MA 02215" -299586,Wired Headphones,2,11.99,12/09/19 01:50,"770 Highland St, Boston, MA 02215" -299587,27in FHD Monitor,1,149.99,12/28/19 21:36,"715 Spruce St, Los Angeles, CA 90001" -,,,,, -299588,AA Batteries (4-pack),1,3.84,12/27/19 03:53,"872 7th St, Los Angeles, CA 90001" -299589,Vareebadd Phone,1,400,12/13/19 20:27,"176 6th St, Dallas, TX 75001" -299590,Apple Airpods Headphones,1,150,12/09/19 19:55,"350 Willow St, San Francisco, CA 94016" -299591,Bose SoundSport Headphones,1,99.99,12/18/19 11:30,"781 Walnut St, Atlanta, GA 30301" -299592,LG Dryer,1,600.0,12/26/19 20:22,"722 Center St, Austin, TX 73301" -299593,AA Batteries (4-pack),3,3.84,12/05/19 14:48,"93 Dogwood St, San Francisco, CA 94016" -299594,USB-C Charging Cable,1,11.95,12/25/19 17:57,"507 Ridge St, Boston, MA 02215" -299595,Wired Headphones,1,11.99,12/29/19 20:23,"479 2nd St, Boston, MA 02215" -299596,Apple Airpods Headphones,1,150,12/29/19 11:33,"444 Hill St, Seattle, WA 98101" -299597,Bose SoundSport Headphones,1,99.99,12/05/19 10:29,"606 Willow St, New York City, NY 10001" -299598,iPhone,1,700,12/05/19 12:11,"528 Meadow St, Portland, OR 97035" -299598,Wired Headphones,1,11.99,12/05/19 12:11,"528 Meadow St, Portland, OR 97035" -299599,Google Phone,1,600,12/13/19 06:50,"475 Lincoln St, San Francisco, CA 94016" -299600,Lightning Charging Cable,1,14.95,12/11/19 14:04,"164 Center St, Los Angeles, CA 90001" -299601,Apple Airpods Headphones,1,150,12/24/19 12:04,"119 Main St, Seattle, WA 98101" -299602,Wired Headphones,1,11.99,12/03/19 20:11,"651 Hickory St, Boston, MA 02215" -299603,Bose SoundSport Headphones,1,99.99,12/08/19 10:35,"339 Adams St, Los Angeles, CA 90001" -299604,AA Batteries (4-pack),1,3.84,12/27/19 18:43,"707 South St, Portland, OR 97035" -299605,AA Batteries (4-pack),1,3.84,12/26/19 18:40,"556 Spruce St, New York City, NY 10001" -299605,AA Batteries (4-pack),3,3.84,12/26/19 18:40,"556 Spruce St, New York City, NY 10001" -299606,USB-C Charging Cable,1,11.95,12/11/19 08:31,"604 River St, New York City, NY 10001" -299607,Google Phone,1,600,12/16/19 16:17,"919 Main St, Atlanta, GA 30301" -299608,AAA Batteries (4-pack),1,2.99,12/28/19 15:54,"511 Meadow St, New York City, NY 10001" -299609,AAA Batteries (4-pack),3,2.99,12/24/19 19:11,"310 Washington St, San Francisco, CA 94016" -299610,Bose SoundSport Headphones,1,99.99,12/17/19 09:33,"704 4th St, Boston, MA 02215" -299611,Apple Airpods Headphones,1,150,12/08/19 02:02,"55 8th St, New York City, NY 10001" -299612,USB-C Charging Cable,1,11.95,12/28/19 15:25,"617 12th St, Atlanta, GA 30301" -299613,USB-C Charging Cable,1,11.95,12/13/19 12:22,"916 4th St, New York City, NY 10001" -299614,34in Ultrawide Monitor,1,379.99,12/15/19 16:19,"268 5th St, Boston, MA 02215" -299615,Flatscreen TV,1,300,12/28/19 06:23,"683 Washington St, New York City, NY 10001" -299616,Wired Headphones,1,11.99,12/08/19 14:01,"28 Highland St, Los Angeles, CA 90001" -299617,AA Batteries (4-pack),1,3.84,12/27/19 20:55,"746 Highland St, Austin, TX 73301" -299618,Lightning Charging Cable,1,14.95,12/21/19 19:56,"283 Chestnut St, San Francisco, CA 94016" -299619,ThinkPad Laptop,1,999.99,12/25/19 19:24,"481 Johnson St, Portland, OR 97035" -299620,Wired Headphones,1,11.99,12/18/19 09:42,"4 Washington St, San Francisco, CA 94016" -299620,AA Batteries (4-pack),1,3.84,12/18/19 09:42,"4 Washington St, San Francisco, CA 94016" -299621,AA Batteries (4-pack),1,3.84,12/18/19 06:35,"937 Chestnut St, Boston, MA 02215" -299622,AAA Batteries (4-pack),2,2.99,12/31/19 18:20,"699 9th St, Los Angeles, CA 90001" -299623,Macbook Pro Laptop,1,1700,12/20/19 00:03,"956 6th St, New York City, NY 10001" -299624,iPhone,1,700,12/14/19 07:53,"575 Elm St, San Francisco, CA 94016" -299625,27in FHD Monitor,1,149.99,12/03/19 15:02,"843 Pine St, Portland, OR 97035" -299626,AA Batteries (4-pack),2,3.84,12/15/19 11:09,"144 Washington St, San Francisco, CA 94016" -299627,AAA Batteries (4-pack),2,2.99,12/18/19 07:25,"577 West St, Portland, OR 97035" -299628,AA Batteries (4-pack),1,3.84,12/27/19 20:54,"328 Wilson St, Boston, MA 02215" -299629,Bose SoundSport Headphones,1,99.99,12/29/19 20:14,"361 1st St, Los Angeles, CA 90001" -299630,AAA Batteries (4-pack),3,2.99,12/28/19 11:23,"893 Meadow St, Austin, TX 73301" -299631,Google Phone,1,600,12/05/19 11:22,"983 14th St, Dallas, TX 75001" -299631,USB-C Charging Cable,1,11.95,12/05/19 11:22,"983 14th St, Dallas, TX 75001" -299632,iPhone,1,700,12/18/19 09:10,"727 Dogwood St, Los Angeles, CA 90001" -299633,27in FHD Monitor,1,149.99,12/30/19 17:47,"256 West St, Los Angeles, CA 90001" -299634,USB-C Charging Cable,1,11.95,12/02/19 14:13,"389 South St, San Francisco, CA 94016" -299635,AA Batteries (4-pack),2,3.84,12/07/19 08:28,"747 Cherry St, San Francisco, CA 94016" -299636,AA Batteries (4-pack),1,3.84,12/08/19 08:51,"800 Hill St, Seattle, WA 98101" -299637,Macbook Pro Laptop,1,1700,12/03/19 17:23,"589 Walnut St, New York City, NY 10001" -299638,Wired Headphones,1,11.99,12/18/19 14:58,"850 Church St, Seattle, WA 98101" -299639,AAA Batteries (4-pack),1,2.99,12/29/19 20:13,"534 Maple St, Portland, OR 97035" -299640,Lightning Charging Cable,1,14.95,12/19/19 16:24,"235 Park St, New York City, NY 10001" -299641,27in 4K Gaming Monitor,1,389.99,12/05/19 11:29,"584 Forest St, Los Angeles, CA 90001" -299642,AA Batteries (4-pack),2,3.84,12/16/19 14:41,"811 Willow St, Atlanta, GA 30301" -299643,Wired Headphones,1,11.99,12/03/19 10:18,"656 Lake St, Los Angeles, CA 90001" -299644,USB-C Charging Cable,1,11.95,12/07/19 19:56,"950 Wilson St, San Francisco, CA 94016" -299645,AAA Batteries (4-pack),2,2.99,12/16/19 18:09,"454 Wilson St, Boston, MA 02215" -299646,Lightning Charging Cable,1,14.95,12/19/19 12:08,"633 Willow St, Boston, MA 02215" -299647,Google Phone,1,600,12/10/19 13:42,"57 Hickory St, San Francisco, CA 94016" -299648,USB-C Charging Cable,1,11.95,12/08/19 20:20,"284 Lakeview St, Atlanta, GA 30301" -299649,27in 4K Gaming Monitor,1,389.99,12/06/19 23:13,"510 14th St, Dallas, TX 75001" -299650,ThinkPad Laptop,1,999.99,12/08/19 15:37,"825 Highland St, Los Angeles, CA 90001" -299651,Macbook Pro Laptop,1,1700,12/13/19 12:13,"140 River St, Los Angeles, CA 90001" -299652,USB-C Charging Cable,1,11.95,12/20/19 05:29,"177 Sunset St, New York City, NY 10001" -299653,Macbook Pro Laptop,1,1700,12/18/19 22:25,"434 River St, San Francisco, CA 94016" -299654,AAA Batteries (4-pack),4,2.99,12/13/19 14:00,"251 7th St, San Francisco, CA 94016" -299655,AA Batteries (4-pack),1,3.84,12/16/19 15:57,"584 9th St, Seattle, WA 98101" -299656,USB-C Charging Cable,1,11.95,12/31/19 03:27,"704 8th St, San Francisco, CA 94016" -299657,USB-C Charging Cable,1,11.95,12/05/19 16:12,"744 11th St, San Francisco, CA 94016" -299658,AA Batteries (4-pack),3,3.84,12/21/19 10:26,"844 4th St, New York City, NY 10001" -299659,USB-C Charging Cable,1,11.95,12/20/19 18:35,"769 13th St, Portland, OR 97035" -299660,AA Batteries (4-pack),1,3.84,12/23/19 13:05,"785 Madison St, Seattle, WA 98101" -299661,Lightning Charging Cable,1,14.95,12/02/19 14:17,"85 14th St, New York City, NY 10001" -299662,AAA Batteries (4-pack),1,2.99,12/25/19 14:34,"697 Sunset St, Austin, TX 73301" -299663,27in FHD Monitor,1,149.99,12/20/19 11:27,"117 Highland St, San Francisco, CA 94016" -299664,Wired Headphones,1,11.99,12/22/19 23:41,"417 South St, San Francisco, CA 94016" -299665,USB-C Charging Cable,1,11.95,12/11/19 18:05,"98 2nd St, Los Angeles, CA 90001" -299666,Lightning Charging Cable,1,14.95,12/18/19 20:18,"447 13th St, New York City, NY 10001" -299667,Wired Headphones,1,11.99,12/06/19 03:16,"989 Sunset St, Austin, TX 73301" -299668,AAA Batteries (4-pack),1,2.99,12/16/19 18:23,"242 Lakeview St, New York City, NY 10001" -299669,Vareebadd Phone,1,400,12/31/19 20:49,"327 Hickory St, San Francisco, CA 94016" -299670,AA Batteries (4-pack),1,3.84,12/14/19 17:45,"278 Main St, New York City, NY 10001" -299670,Lightning Charging Cable,1,14.95,12/14/19 17:45,"278 Main St, New York City, NY 10001" -299671,Macbook Pro Laptop,1,1700,12/29/19 19:37,"38 Sunset St, San Francisco, CA 94016" -299672,AA Batteries (4-pack),1,3.84,12/08/19 07:33,"317 Johnson St, Austin, TX 73301" -299673,USB-C Charging Cable,1,11.95,12/05/19 19:50,"467 Spruce St, New York City, NY 10001" -299674,AA Batteries (4-pack),1,3.84,12/16/19 13:07,"90 Dogwood St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -299675,AAA Batteries (4-pack),1,2.99,12/29/19 07:13,"103 Maple St, Atlanta, GA 30301" -299676,Flatscreen TV,1,300,12/10/19 10:04,"278 Jackson St, New York City, NY 10001" -299677,USB-C Charging Cable,1,11.95,12/18/19 11:11,"527 12th St, Los Angeles, CA 90001" -299678,AA Batteries (4-pack),1,3.84,12/15/19 10:45,"117 4th St, New York City, NY 10001" -299679,27in FHD Monitor,1,149.99,12/17/19 19:44,"259 Main St, Austin, TX 73301" -299680,AAA Batteries (4-pack),1,2.99,12/13/19 23:54,"87 Spruce St, Boston, MA 02215" -299681,27in 4K Gaming Monitor,1,389.99,12/26/19 19:26,"863 Cherry St, Los Angeles, CA 90001" -299682,Lightning Charging Cable,1,14.95,12/15/19 22:45,"228 7th St, Austin, TX 73301" -299683,USB-C Charging Cable,2,11.95,12/28/19 19:31,"294 Willow St, Portland, OR 97035" -299684,AA Batteries (4-pack),1,3.84,12/11/19 14:03,"766 West St, San Francisco, CA 94016" -299685,USB-C Charging Cable,1,11.95,12/27/19 21:37,"781 Hill St, San Francisco, CA 94016" -299686,Apple Airpods Headphones,1,150,12/31/19 14:13,"560 5th St, San Francisco, CA 94016" -299687,Apple Airpods Headphones,1,150,12/18/19 21:21,"161 8th St, San Francisco, CA 94016" -299688,27in FHD Monitor,1,149.99,12/25/19 14:49,"423 Cedar St, Boston, MA 02215" -299689,Bose SoundSport Headphones,1,99.99,12/20/19 14:26,"843 1st St, San Francisco, CA 94016" -299690,USB-C Charging Cable,1,11.95,12/16/19 22:24,"911 Spruce St, New York City, NY 10001" -299691,Wired Headphones,1,11.99,12/13/19 21:23,"457 Walnut St, Dallas, TX 75001" -299692,Bose SoundSport Headphones,1,99.99,12/31/19 12:28,"157 Main St, Boston, MA 02215" -299693,AAA Batteries (4-pack),1,2.99,12/01/19 14:06,"181 Jefferson St, Atlanta, GA 30301" -299694,AA Batteries (4-pack),2,3.84,12/30/19 07:48,"578 Johnson St, New York City, NY 10001" -299695,Apple Airpods Headphones,1,150,12/16/19 20:47,"888 Meadow St, San Francisco, CA 94016" -299696,34in Ultrawide Monitor,1,379.99,12/17/19 20:49,"976 Washington St, New York City, NY 10001" -299697,Lightning Charging Cable,1,14.95,12/10/19 18:30,"389 Sunset St, New York City, NY 10001" -299698,AA Batteries (4-pack),2,3.84,12/26/19 12:43,"209 13th St, San Francisco, CA 94016" -299699,USB-C Charging Cable,1,11.95,12/12/19 11:25,"159 Walnut St, Atlanta, GA 30301" -299700,AA Batteries (4-pack),1,3.84,12/20/19 06:34,"371 Cedar St, Dallas, TX 75001" -299701,Wired Headphones,1,11.99,12/16/19 15:16,"346 10th St, Dallas, TX 75001" -299702,AAA Batteries (4-pack),4,2.99,12/26/19 01:46,"658 Church St, Boston, MA 02215" -299703,Google Phone,1,600,12/25/19 20:19,"165 Main St, New York City, NY 10001" -299703,USB-C Charging Cable,1,11.95,12/25/19 20:19,"165 Main St, New York City, NY 10001" -299704,Lightning Charging Cable,1,14.95,12/27/19 22:12,"530 Jackson St, Portland, OR 97035" -299705,27in FHD Monitor,1,149.99,12/13/19 17:15,"371 Lincoln St, New York City, NY 10001" -299706,20in Monitor,1,109.99,12/17/19 09:33,"843 Wilson St, San Francisco, CA 94016" -299707,Macbook Pro Laptop,1,1700,12/10/19 02:28,"116 Park St, New York City, NY 10001" -299708,AAA Batteries (4-pack),1,2.99,12/10/19 11:50,"245 14th St, San Francisco, CA 94016" -299709,Apple Airpods Headphones,1,150,12/13/19 00:27,"196 14th St, Austin, TX 73301" -299710,27in 4K Gaming Monitor,1,389.99,12/05/19 17:17,"427 Dogwood St, Portland, ME 04101" -299711,Apple Airpods Headphones,1,150,12/21/19 16:00,"396 Maple St, Dallas, TX 75001" -299712,AAA Batteries (4-pack),3,2.99,12/20/19 18:54,"360 Lincoln St, New York City, NY 10001" -299713,AA Batteries (4-pack),7,3.84,12/17/19 20:56,"160 Hickory St, Dallas, TX 75001" -299714,27in FHD Monitor,1,149.99,12/07/19 16:18,"488 Lakeview St, San Francisco, CA 94016" -299715,Lightning Charging Cable,1,14.95,12/02/19 03:10,"414 Hill St, Seattle, WA 98101" -299716,Lightning Charging Cable,1,14.95,12/14/19 09:48,"903 Hill St, Seattle, WA 98101" -299717,Lightning Charging Cable,1,14.95,12/12/19 13:28,"435 Chestnut St, Seattle, WA 98101" -299718,Google Phone,1,600,12/03/19 17:18,"990 North St, New York City, NY 10001" -299719,Macbook Pro Laptop,1,1700,12/02/19 09:18,"260 Pine St, New York City, NY 10001" -299719,Apple Airpods Headphones,1,150,12/02/19 09:18,"260 Pine St, New York City, NY 10001" -299720,AA Batteries (4-pack),1,3.84,12/23/19 20:35,"105 2nd St, San Francisco, CA 94016" -299721,Google Phone,1,600,12/24/19 08:49,"837 Willow St, Los Angeles, CA 90001" -299722,Bose SoundSport Headphones,1,99.99,12/06/19 12:32,"165 Madison St, Seattle, WA 98101" -299723,Wired Headphones,2,11.99,12/15/19 11:25,"160 Hill St, Portland, OR 97035" -299724,AA Batteries (4-pack),2,3.84,12/06/19 11:35,"299 4th St, San Francisco, CA 94016" -299725,USB-C Charging Cable,1,11.95,12/28/19 12:00,"950 Hickory St, Seattle, WA 98101" -299726,LG Dryer,1,600.0,12/22/19 15:55,"787 9th St, Atlanta, GA 30301" -299727,Apple Airpods Headphones,1,150,12/12/19 14:57,"591 Johnson St, Austin, TX 73301" -299728,Lightning Charging Cable,1,14.95,12/21/19 00:21,"265 8th St, Dallas, TX 75001" -299729,USB-C Charging Cable,1,11.95,12/29/19 13:16,"933 Jefferson St, Los Angeles, CA 90001" -299730,Bose SoundSport Headphones,1,99.99,12/06/19 06:15,"526 West St, San Francisco, CA 94016" -299731,USB-C Charging Cable,1,11.95,12/19/19 16:16,"534 Center St, New York City, NY 10001" -299732,AA Batteries (4-pack),1,3.84,12/18/19 15:53,"933 Johnson St, Los Angeles, CA 90001" -299733,Lightning Charging Cable,1,14.95,12/21/19 16:20,"267 2nd St, San Francisco, CA 94016" -299734,Bose SoundSport Headphones,1,99.99,12/23/19 14:02,"446 Lakeview St, Boston, MA 02215" -299735,Wired Headphones,1,11.99,12/23/19 21:26,"738 14th St, Seattle, WA 98101" -299736,Macbook Pro Laptop,1,1700,12/12/19 07:23,"929 2nd St, New York City, NY 10001" -299737,Lightning Charging Cable,2,14.95,12/18/19 23:05,"925 Adams St, Seattle, WA 98101" -299738,Apple Airpods Headphones,1,150,12/25/19 16:17,"862 12th St, Los Angeles, CA 90001" -299739,Lightning Charging Cable,1,14.95,12/25/19 20:31,"241 12th St, San Francisco, CA 94016" -299740,Vareebadd Phone,1,400,12/29/19 20:12,"541 Washington St, Los Angeles, CA 90001" -299741,Lightning Charging Cable,1,14.95,12/22/19 22:05,"783 South St, Boston, MA 02215" -299742,USB-C Charging Cable,1,11.95,12/28/19 18:04,"944 8th St, San Francisco, CA 94016" -299743,Lightning Charging Cable,2,14.95,12/11/19 11:21,"988 Forest St, Dallas, TX 75001" -299744,Bose SoundSport Headphones,1,99.99,12/20/19 10:54,"709 Lake St, Los Angeles, CA 90001" -299745,Vareebadd Phone,1,400,12/27/19 16:14,"180 Center St, Portland, OR 97035" -299745,Bose SoundSport Headphones,1,99.99,12/27/19 16:14,"180 Center St, Portland, OR 97035" -299746,USB-C Charging Cable,1,11.95,12/07/19 21:09,"174 Jackson St, Dallas, TX 75001" -299747,Apple Airpods Headphones,1,150,12/23/19 20:27,"184 Wilson St, Boston, MA 02215" -299748,iPhone,1,700,12/17/19 14:00,"523 Cedar St, San Francisco, CA 94016" -299749,Lightning Charging Cable,1,14.95,12/16/19 11:40,"332 Church St, San Francisco, CA 94016" -299750,AAA Batteries (4-pack),2,2.99,12/30/19 23:20,"504 1st St, Dallas, TX 75001" -299751,Macbook Pro Laptop,1,1700,12/21/19 16:42,"390 Meadow St, Austin, TX 73301" -299752,Lightning Charging Cable,2,14.95,12/02/19 18:15,"597 Maple St, Seattle, WA 98101" -299753,Lightning Charging Cable,2,14.95,12/15/19 02:51,"679 Meadow St, New York City, NY 10001" -299754,Wired Headphones,1,11.99,12/04/19 17:00,"624 10th St, New York City, NY 10001" -299755,Lightning Charging Cable,1,14.95,12/16/19 13:21,"579 Main St, Boston, MA 02215" -299756,Google Phone,1,600,12/14/19 08:38,"564 Johnson St, San Francisco, CA 94016" -299757,AAA Batteries (4-pack),1,2.99,12/28/19 17:00,"564 Willow St, Los Angeles, CA 90001" -299758,USB-C Charging Cable,1,11.95,12/17/19 17:57,"710 Spruce St, Austin, TX 73301" -299759,USB-C Charging Cable,1,11.95,12/16/19 09:34,"52 Meadow St, Seattle, WA 98101" -299760,USB-C Charging Cable,1,11.95,12/24/19 14:59,"677 Lincoln St, Los Angeles, CA 90001" -299761,AAA Batteries (4-pack),1,2.99,12/05/19 09:09,"5 River St, Boston, MA 02215" -299762,Google Phone,1,600,12/01/19 18:58,"191 Center St, Portland, OR 97035" -299763,USB-C Charging Cable,1,11.95,12/02/19 21:48,"371 Center St, Los Angeles, CA 90001" -299764,Google Phone,1,600,12/09/19 12:15,"975 5th St, Atlanta, GA 30301" -299765,Google Phone,1,600,12/16/19 11:19,"311 12th St, Los Angeles, CA 90001" -299766,Apple Airpods Headphones,1,150,12/09/19 10:18,"989 River St, Atlanta, GA 30301" -299767,27in 4K Gaming Monitor,1,389.99,12/14/19 06:22,"944 River St, New York City, NY 10001" -299768,Wired Headphones,2,11.99,12/19/19 14:16,"686 14th St, Portland, OR 97035" -299769,27in FHD Monitor,1,149.99,12/01/19 22:18,"598 Wilson St, New York City, NY 10001" -299770,AAA Batteries (4-pack),1,2.99,12/26/19 06:36,"140 Jackson St, Dallas, TX 75001" -299771,Apple Airpods Headphones,1,150,12/09/19 11:44,"396 Lincoln St, Dallas, TX 75001" -299772,Wired Headphones,1,11.99,12/16/19 16:48,"103 Main St, Austin, TX 73301" -299773,Lightning Charging Cable,1,14.95,12/09/19 10:37,"239 West St, Portland, OR 97035" -299774,USB-C Charging Cable,1,11.95,12/30/19 16:58,"832 Cherry St, Los Angeles, CA 90001" -299775,Wired Headphones,1,11.99,12/12/19 11:36,"771 Ridge St, San Francisco, CA 94016" -299776,Wired Headphones,1,11.99,12/17/19 12:48,"945 Ridge St, Boston, MA 02215" -299777,Wired Headphones,1,11.99,12/17/19 12:47,"672 Elm St, Seattle, WA 98101" -299778,AAA Batteries (4-pack),1,2.99,12/29/19 21:26,"643 Center St, Seattle, WA 98101" -299779,AAA Batteries (4-pack),1,2.99,12/30/19 18:34,"851 Center St, San Francisco, CA 94016" -299780,USB-C Charging Cable,1,11.95,12/08/19 18:06,"321 9th St, Seattle, WA 98101" -299781,Flatscreen TV,1,300,12/02/19 12:52,"992 Pine St, New York City, NY 10001" -299782,Apple Airpods Headphones,1,150,12/17/19 19:29,"948 12th St, Los Angeles, CA 90001" -299783,iPhone,1,700,12/08/19 09:28,"34 13th St, Seattle, WA 98101" -299784,Wired Headphones,1,11.99,12/31/19 15:55,"26 Cherry St, San Francisco, CA 94016" -299785,iPhone,1,700,12/06/19 17:42,"403 2nd St, Dallas, TX 75001" -299786,27in 4K Gaming Monitor,1,389.99,12/14/19 14:27,"867 Walnut St, San Francisco, CA 94016" -299787,Macbook Pro Laptop,1,1700,12/02/19 18:46,"115 Meadow St, Atlanta, GA 30301" -299788,27in FHD Monitor,1,149.99,12/05/19 17:12,"722 Lakeview St, San Francisco, CA 94016" -299789,AAA Batteries (4-pack),1,2.99,12/16/19 16:58,"229 7th St, Boston, MA 02215" -299790,Apple Airpods Headphones,1,150,12/02/19 16:16,"13 4th St, Boston, MA 02215" -299791,ThinkPad Laptop,1,999.99,12/11/19 10:01,"200 Center St, New York City, NY 10001" -299792,Vareebadd Phone,1,400,12/13/19 05:51,"193 Cherry St, Los Angeles, CA 90001" -299792,Bose SoundSport Headphones,1,99.99,12/13/19 05:51,"193 Cherry St, Los Angeles, CA 90001" -299792,Wired Headphones,1,11.99,12/13/19 05:51,"193 Cherry St, Los Angeles, CA 90001" -299793,AAA Batteries (4-pack),1,2.99,12/19/19 15:01,"202 Main St, New York City, NY 10001" -299794,34in Ultrawide Monitor,1,379.99,12/28/19 14:32,"878 2nd St, Dallas, TX 75001" -299795,USB-C Charging Cable,1,11.95,12/20/19 12:23,"682 Hill St, Portland, OR 97035" -299796,AA Batteries (4-pack),1,3.84,12/17/19 19:19,"293 Washington St, Seattle, WA 98101" -299797,USB-C Charging Cable,1,11.95,12/08/19 22:47,"512 7th St, Seattle, WA 98101" -299798,Lightning Charging Cable,1,14.95,12/20/19 10:36,"142 Church St, New York City, NY 10001" -299799,27in 4K Gaming Monitor,1,389.99,12/13/19 15:57,"776 Maple St, New York City, NY 10001" -299800,USB-C Charging Cable,1,11.95,12/17/19 19:47,"648 14th St, Boston, MA 02215" -299801,Google Phone,1,600,12/14/19 15:14,"724 Walnut St, San Francisco, CA 94016" -299802,34in Ultrawide Monitor,1,379.99,12/24/19 09:08,"554 Church St, San Francisco, CA 94016" -299803,USB-C Charging Cable,1,11.95,12/07/19 19:32,"744 Walnut St, San Francisco, CA 94016" -299804,AAA Batteries (4-pack),1,2.99,12/07/19 09:34,"59 Adams St, San Francisco, CA 94016" -299804,27in FHD Monitor,1,149.99,12/07/19 09:34,"59 Adams St, San Francisco, CA 94016" -299805,Lightning Charging Cable,1,14.95,12/09/19 08:47,"37 Spruce St, New York City, NY 10001" -299806,AA Batteries (4-pack),1,3.84,12/10/19 15:29,"743 Johnson St, Los Angeles, CA 90001" -299807,27in 4K Gaming Monitor,1,389.99,12/03/19 08:37,"568 Dogwood St, Boston, MA 02215" -299808,AAA Batteries (4-pack),1,2.99,12/09/19 23:10,"647 9th St, San Francisco, CA 94016" -299809,AAA Batteries (4-pack),1,2.99,12/09/19 00:58,"458 Cedar St, New York City, NY 10001" -299810,27in 4K Gaming Monitor,1,389.99,12/06/19 10:25,"187 Hill St, New York City, NY 10001" -299811,Macbook Pro Laptop,1,1700,12/21/19 19:59,"967 Maple St, Atlanta, GA 30301" -299812,AA Batteries (4-pack),1,3.84,12/26/19 15:22,"2 Dogwood St, Seattle, WA 98101" -299813,AAA Batteries (4-pack),1,2.99,12/14/19 13:21,"370 5th St, Seattle, WA 98101" -299814,27in FHD Monitor,1,149.99,12/18/19 15:25,"499 Highland St, Los Angeles, CA 90001" -299815,20in Monitor,1,109.99,12/19/19 09:13,"29 Main St, Austin, TX 73301" -299816,AA Batteries (4-pack),1,3.84,12/13/19 15:05,"624 Jackson St, Dallas, TX 75001" -299817,Bose SoundSport Headphones,1,99.99,12/16/19 19:27,"487 Wilson St, Seattle, WA 98101" -299818,AAA Batteries (4-pack),1,2.99,12/09/19 22:05,"774 West St, Los Angeles, CA 90001" -299819,Google Phone,1,600,12/26/19 19:00,"815 11th St, Los Angeles, CA 90001" -299819,AAA Batteries (4-pack),1,2.99,12/26/19 19:00,"815 11th St, Los Angeles, CA 90001" -299820,20in Monitor,1,109.99,12/08/19 18:52,"903 Cedar St, Atlanta, GA 30301" -299821,iPhone,1,700,12/02/19 19:13,"611 Maple St, New York City, NY 10001" -299822,Apple Airpods Headphones,1,150,12/25/19 16:19,"642 Cedar St, Austin, TX 73301" -299823,AAA Batteries (4-pack),1,2.99,12/25/19 18:48,"662 Chestnut St, San Francisco, CA 94016" -299824,27in FHD Monitor,1,149.99,12/15/19 11:57,"476 Adams St, Los Angeles, CA 90001" -299825,Wired Headphones,1,11.99,12/24/19 16:57,"783 Jefferson St, Atlanta, GA 30301" -299826,Bose SoundSport Headphones,1,99.99,12/17/19 17:56,"585 Center St, Seattle, WA 98101" -299827,USB-C Charging Cable,2,11.95,12/04/19 17:09,"568 14th St, New York City, NY 10001" -299828,Wired Headphones,1,11.99,12/30/19 06:43,"527 Dogwood St, Atlanta, GA 30301" -299829,Lightning Charging Cable,1,14.95,12/23/19 10:43,"499 Cherry St, San Francisco, CA 94016" -299830,iPhone,1,700,12/25/19 18:58,"208 Jackson St, Los Angeles, CA 90001" -299830,Lightning Charging Cable,1,14.95,12/25/19 18:58,"208 Jackson St, Los Angeles, CA 90001" -299830,Apple Airpods Headphones,1,150,12/25/19 18:58,"208 Jackson St, Los Angeles, CA 90001" -299831,27in FHD Monitor,1,149.99,12/30/19 12:54,"714 Madison St, Portland, OR 97035" -299832,Bose SoundSport Headphones,1,99.99,12/16/19 17:29,"474 8th St, San Francisco, CA 94016" -299833,USB-C Charging Cable,1,11.95,12/06/19 18:50,"211 Lakeview St, Dallas, TX 75001" -299834,USB-C Charging Cable,1,11.95,12/06/19 11:21,"123 Lakeview St, San Francisco, CA 94016" -299835,27in 4K Gaming Monitor,1,389.99,12/26/19 23:17,"349 Hill St, New York City, NY 10001" -299836,27in 4K Gaming Monitor,1,389.99,12/19/19 08:40,"876 Elm St, Los Angeles, CA 90001" -299837,Flatscreen TV,1,300,12/02/19 14:48,"61 9th St, San Francisco, CA 94016" -299838,Apple Airpods Headphones,1,150,12/22/19 15:21,"117 Center St, Los Angeles, CA 90001" -299839,USB-C Charging Cable,1,11.95,12/07/19 14:41,"136 Pine St, Boston, MA 02215" -299840,Google Phone,1,600,12/03/19 19:04,"5 Madison St, Portland, OR 97035" -299841,Wired Headphones,1,11.99,12/23/19 07:09,"571 Hickory St, Los Angeles, CA 90001" -299842,AAA Batteries (4-pack),1,2.99,12/10/19 21:39,"927 1st St, New York City, NY 10001" -299843,27in 4K Gaming Monitor,1,389.99,12/13/19 17:31,"30 Chestnut St, San Francisco, CA 94016" -299844,20in Monitor,1,109.99,12/15/19 18:17,"77 Jackson St, San Francisco, CA 94016" -299845,20in Monitor,1,109.99,12/19/19 19:02,"256 11th St, Atlanta, GA 30301" -299846,Lightning Charging Cable,1,14.95,12/10/19 15:27,"692 Maple St, Dallas, TX 75001" -299847,Macbook Pro Laptop,1,1700,12/07/19 20:09,"394 12th St, Seattle, WA 98101" -299848,Apple Airpods Headphones,1,150,12/06/19 21:02,"447 Forest St, Los Angeles, CA 90001" -299849,Macbook Pro Laptop,1,1700,12/02/19 07:52,"703 Washington St, San Francisco, CA 94016" -299850,AAA Batteries (4-pack),1,2.99,12/21/19 11:04,"554 Maple St, Los Angeles, CA 90001" -299851,Lightning Charging Cable,1,14.95,12/12/19 17:23,"287 Lincoln St, Boston, MA 02215" -299852,Flatscreen TV,1,300,12/17/19 21:47,"323 4th St, Dallas, TX 75001" -299853,27in 4K Gaming Monitor,1,389.99,12/12/19 08:06,"910 Lincoln St, Portland, OR 97035" -299854,Bose SoundSport Headphones,1,99.99,12/23/19 14:47,"112 5th St, Atlanta, GA 30301" -299855,Wired Headphones,1,11.99,12/24/19 19:40,"449 2nd St, New York City, NY 10001" -299856,Lightning Charging Cable,1,14.95,12/18/19 20:40,"479 11th St, Austin, TX 73301" -299857,AAA Batteries (4-pack),1,2.99,12/26/19 07:53,"776 Park St, San Francisco, CA 94016" -299858,Apple Airpods Headphones,1,150,12/15/19 10:43,"460 Elm St, San Francisco, CA 94016" -299859,AAA Batteries (4-pack),2,2.99,12/26/19 21:46,"746 Elm St, Seattle, WA 98101" -299860,AAA Batteries (4-pack),1,2.99,12/28/19 09:23,"11 Elm St, Los Angeles, CA 90001" -299861,Macbook Pro Laptop,1,1700,12/18/19 07:37,"163 Main St, Seattle, WA 98101" -299862,AA Batteries (4-pack),1,3.84,12/24/19 20:15,"912 Washington St, San Francisco, CA 94016" -299863,USB-C Charging Cable,1,11.95,12/26/19 17:44,"119 Jefferson St, Boston, MA 02215" -299864,Bose SoundSport Headphones,1,99.99,12/13/19 21:28,"760 2nd St, Dallas, TX 75001" -299865,AAA Batteries (4-pack),1,2.99,12/18/19 12:46,"501 Church St, Seattle, WA 98101" -299866,Lightning Charging Cable,1,14.95,12/05/19 09:42,"940 Lakeview St, Atlanta, GA 30301" -299867,34in Ultrawide Monitor,1,379.99,12/01/19 22:55,"126 9th St, Boston, MA 02215" -299868,Bose SoundSport Headphones,1,99.99,12/01/19 20:07,"899 Elm St, San Francisco, CA 94016" -299869,Bose SoundSport Headphones,1,99.99,12/02/19 14:12,"853 Lake St, Boston, MA 02215" -299870,Bose SoundSport Headphones,1,99.99,12/19/19 11:37,"662 8th St, New York City, NY 10001" -299871,Bose SoundSport Headphones,1,99.99,12/23/19 17:05,"990 Cherry St, Portland, OR 97035" -299872,27in FHD Monitor,1,149.99,12/02/19 22:57,"365 Pine St, San Francisco, CA 94016" -299873,AAA Batteries (4-pack),1,2.99,12/13/19 19:30,"428 Spruce St, Seattle, WA 98101" -299874,iPhone,1,700,12/19/19 09:47,"159 Park St, Atlanta, GA 30301" -299875,Apple Airpods Headphones,1,150,12/28/19 18:18,"446 Walnut St, Los Angeles, CA 90001" -299876,20in Monitor,1,109.99,12/05/19 18:51,"902 5th St, San Francisco, CA 94016" -299877,AAA Batteries (4-pack),3,2.99,12/08/19 00:49,"843 Jackson St, Dallas, TX 75001" -299878,Lightning Charging Cable,1,14.95,12/21/19 16:12,"923 Church St, Los Angeles, CA 90001" -299879,27in 4K Gaming Monitor,1,389.99,12/30/19 09:44,"855 Highland St, San Francisco, CA 94016" -299880,iPhone,1,700,12/19/19 18:51,"144 Washington St, Boston, MA 02215" -299881,USB-C Charging Cable,1,11.95,12/24/19 21:31,"765 10th St, Seattle, WA 98101" -299882,Google Phone,1,600,12/04/19 04:46,"523 West St, Atlanta, GA 30301" -299882,Wired Headphones,1,11.99,12/04/19 04:46,"523 West St, Atlanta, GA 30301" -299883,Lightning Charging Cable,1,14.95,12/21/19 07:22,"333 Lake St, Los Angeles, CA 90001" -299884,Apple Airpods Headphones,1,150,12/23/19 13:30,"699 Pine St, Boston, MA 02215" -299885,Wired Headphones,1,11.99,12/24/19 09:48,"524 13th St, Boston, MA 02215" -299886,20in Monitor,1,109.99,12/12/19 14:11,"368 11th St, San Francisco, CA 94016" -299886,USB-C Charging Cable,1,11.95,12/12/19 14:11,"368 11th St, San Francisco, CA 94016" -299887,USB-C Charging Cable,1,11.95,12/16/19 16:55,"554 9th St, New York City, NY 10001" -299888,USB-C Charging Cable,2,11.95,12/04/19 11:45,"472 Center St, Boston, MA 02215" -299889,Apple Airpods Headphones,1,150,12/08/19 20:21,"212 Highland St, New York City, NY 10001" -299890,27in FHD Monitor,1,149.99,12/24/19 05:55,"924 Park St, Dallas, TX 75001" -299891,Lightning Charging Cable,1,14.95,12/30/19 21:17,"882 6th St, Seattle, WA 98101" -299892,AA Batteries (4-pack),1,3.84,12/27/19 15:24,"248 Meadow St, New York City, NY 10001" -299893,AA Batteries (4-pack),1,3.84,12/15/19 00:33,"511 13th St, Atlanta, GA 30301" -299894,ThinkPad Laptop,1,999.99,12/25/19 18:11,"823 Lakeview St, Los Angeles, CA 90001" -299895,Bose SoundSport Headphones,1,99.99,12/07/19 14:44,"896 Maple St, Boston, MA 02215" -299896,USB-C Charging Cable,1,11.95,12/20/19 18:40,"632 West St, San Francisco, CA 94016" -299897,Bose SoundSport Headphones,1,99.99,12/01/19 10:56,"964 Lakeview St, San Francisco, CA 94016" -299898,Vareebadd Phone,1,400,12/22/19 22:50,"408 8th St, San Francisco, CA 94016" -299898,USB-C Charging Cable,1,11.95,12/22/19 22:50,"408 8th St, San Francisco, CA 94016" -299899,Flatscreen TV,1,300,12/18/19 14:16,"766 Hickory St, Portland, OR 97035" -299900,Lightning Charging Cable,1,14.95,12/31/19 00:03,"92 Ridge St, San Francisco, CA 94016" -299901,AA Batteries (4-pack),1,3.84,12/20/19 10:39,"822 Park St, Seattle, WA 98101" -299902,Apple Airpods Headphones,1,150,12/27/19 22:50,"125 Adams St, Boston, MA 02215" -299903,Bose SoundSport Headphones,1,99.99,12/10/19 19:17,"14 9th St, New York City, NY 10001" -299904,Macbook Pro Laptop,1,1700,12/01/19 17:24,"465 Spruce St, Portland, OR 97035" -299905,Lightning Charging Cable,2,14.95,12/11/19 19:25,"778 West St, San Francisco, CA 94016" -299906,USB-C Charging Cable,1,11.95,12/12/19 14:07,"834 Ridge St, San Francisco, CA 94016" -299907,AA Batteries (4-pack),1,3.84,12/16/19 20:57,"66 7th St, Dallas, TX 75001" -299908,Lightning Charging Cable,1,14.95,12/04/19 09:03,"139 Lakeview St, Austin, TX 73301" -299909,27in FHD Monitor,1,149.99,12/18/19 20:38,"246 Ridge St, Portland, ME 04101" -299910,Lightning Charging Cable,1,14.95,12/09/19 18:20,"48 2nd St, Los Angeles, CA 90001" -299911,Lightning Charging Cable,1,14.95,12/10/19 15:49,"793 7th St, Los Angeles, CA 90001" -299912,Google Phone,1,600,12/14/19 15:32,"722 Main St, Boston, MA 02215" -299913,AAA Batteries (4-pack),1,2.99,12/20/19 12:04,"901 Hickory St, Seattle, WA 98101" -299914,USB-C Charging Cable,1,11.95,12/31/19 20:55,"505 2nd St, Boston, MA 02215" -299915,20in Monitor,1,109.99,12/19/19 22:17,"112 Forest St, Portland, OR 97035" -299916,Flatscreen TV,1,300,12/24/19 12:20,"415 South St, New York City, NY 10001" -299917,iPhone,1,700,12/22/19 15:17,"612 Lincoln St, Boston, MA 02215" -299918,Apple Airpods Headphones,1,150,12/04/19 16:04,"585 Ridge St, San Francisco, CA 94016" -299919,USB-C Charging Cable,1,11.95,12/24/19 12:58,"707 12th St, Seattle, WA 98101" -299920,Lightning Charging Cable,1,14.95,12/26/19 09:41,"83 Forest St, Los Angeles, CA 90001" -299921,AAA Batteries (4-pack),3,2.99,12/21/19 19:39,"884 Chestnut St, San Francisco, CA 94016" -299922,Apple Airpods Headphones,1,150,12/17/19 22:53,"661 7th St, San Francisco, CA 94016" -299923,AAA Batteries (4-pack),1,2.99,12/03/19 22:08,"18 Adams St, San Francisco, CA 94016" -299924,Lightning Charging Cable,1,14.95,12/22/19 15:26,"481 14th St, Seattle, WA 98101" -299925,Lightning Charging Cable,1,14.95,12/18/19 17:02,"621 6th St, Atlanta, GA 30301" -299926,Lightning Charging Cable,1,14.95,12/15/19 19:39,"195 8th St, Atlanta, GA 30301" -299927,20in Monitor,1,109.99,12/31/19 16:55,"143 Chestnut St, Los Angeles, CA 90001" -299928,Macbook Pro Laptop,1,1700,12/05/19 20:42,"241 North St, Portland, ME 04101" -299929,Apple Airpods Headphones,1,150,12/28/19 14:04,"677 Park St, San Francisco, CA 94016" -299930,27in FHD Monitor,1,149.99,12/14/19 12:44,"502 11th St, Austin, TX 73301" -299931,Bose SoundSport Headphones,1,99.99,12/12/19 14:47,"47 Madison St, Boston, MA 02215" -299932,Bose SoundSport Headphones,1,99.99,12/17/19 19:19,"332 Pine St, San Francisco, CA 94016" -299933,AAA Batteries (4-pack),1,2.99,12/02/19 18:28,"298 Maple St, Boston, MA 02215" -299934,USB-C Charging Cable,1,11.95,12/11/19 22:01,"927 11th St, Boston, MA 02215" -299935,Macbook Pro Laptop,1,1700,12/21/19 21:54,"429 7th St, Los Angeles, CA 90001" -299936,AAA Batteries (4-pack),1,2.99,12/01/19 07:40,"983 Spruce St, Boston, MA 02215" -299937,34in Ultrawide Monitor,1,379.99,12/12/19 09:50,"155 Jefferson St, San Francisco, CA 94016" -299938,27in 4K Gaming Monitor,1,389.99,12/29/19 12:46,"769 Lincoln St, Los Angeles, CA 90001" -299939,Wired Headphones,1,11.99,12/29/19 09:31,"573 Meadow St, Portland, OR 97035" -299940,Lightning Charging Cable,1,14.95,12/11/19 16:47,"439 10th St, New York City, NY 10001" -299941,Wired Headphones,1,11.99,12/25/19 03:13,"373 South St, Boston, MA 02215" -299942,Lightning Charging Cable,1,14.95,12/17/19 23:27,"511 11th St, Portland, OR 97035" -299943,USB-C Charging Cable,1,11.95,12/31/19 15:13,"633 7th St, Atlanta, GA 30301" -299944,27in 4K Gaming Monitor,1,389.99,12/10/19 21:37,"74 Lakeview St, Seattle, WA 98101" -299945,Apple Airpods Headphones,1,150,12/29/19 14:35,"545 Willow St, Austin, TX 73301" -299946,Lightning Charging Cable,1,14.95,12/31/19 20:54,"84 9th St, San Francisco, CA 94016" -299947,34in Ultrawide Monitor,1,379.99,12/10/19 17:36,"537 Lakeview St, Los Angeles, CA 90001" -299948,Wired Headphones,1,11.99,12/26/19 14:42,"432 Wilson St, Los Angeles, CA 90001" -299949,Lightning Charging Cable,1,14.95,12/09/19 12:58,"829 Adams St, Austin, TX 73301" -299950,27in 4K Gaming Monitor,1,389.99,12/02/19 17:02,"133 13th St, Boston, MA 02215" -299951,Wired Headphones,1,11.99,12/14/19 15:59,"451 Hickory St, New York City, NY 10001" -299952,27in FHD Monitor,1,149.99,12/31/19 13:01,"395 8th St, Dallas, TX 75001" -299953,Google Phone,1,600,12/25/19 18:17,"977 Jefferson St, New York City, NY 10001" -299953,USB-C Charging Cable,1,11.95,12/25/19 18:17,"977 Jefferson St, New York City, NY 10001" -299954,Macbook Pro Laptop,1,1700,12/18/19 11:09,"467 Washington St, Portland, OR 97035" -299955,Bose SoundSport Headphones,1,99.99,12/25/19 18:00,"830 Walnut St, Los Angeles, CA 90001" -299956,20in Monitor,1,109.99,12/17/19 07:24,"87 North St, San Francisco, CA 94016" -299957,Wired Headphones,1,11.99,12/26/19 20:26,"114 River St, Atlanta, GA 30301" -299958,AA Batteries (4-pack),2,3.84,12/26/19 20:00,"124 West St, Austin, TX 73301" -299959,AAA Batteries (4-pack),1,2.99,12/11/19 17:19,"829 South St, San Francisco, CA 94016" -299960,Google Phone,1,600,12/10/19 22:08,"910 Willow St, San Francisco, CA 94016" -299961,USB-C Charging Cable,1,11.95,12/23/19 13:37,"901 Center St, Austin, TX 73301" -299962,USB-C Charging Cable,1,11.95,12/08/19 11:31,"917 2nd St, Dallas, TX 75001" -299963,Wired Headphones,1,11.99,12/19/19 18:01,"717 Center St, New York City, NY 10001" -299964,34in Ultrawide Monitor,1,379.99,12/02/19 18:45,"911 12th St, Portland, OR 97035" -299965,AAA Batteries (4-pack),1,2.99,12/02/19 19:11,"331 Meadow St, Los Angeles, CA 90001" -299966,AA Batteries (4-pack),5,3.84,12/18/19 13:08,"717 Walnut St, San Francisco, CA 94016" -299967,Apple Airpods Headphones,1,150,12/04/19 22:21,"173 Wilson St, San Francisco, CA 94016" -299968,AA Batteries (4-pack),2,3.84,12/30/19 12:41,"633 9th St, New York City, NY 10001" -299969,AAA Batteries (4-pack),1,2.99,12/27/19 19:29,"754 Park St, Boston, MA 02215" -299970,20in Monitor,1,109.99,12/29/19 07:41,"355 Chestnut St, Los Angeles, CA 90001" -299971,27in FHD Monitor,1,149.99,12/31/19 11:07,"644 Dogwood St, Los Angeles, CA 90001" -299972,ThinkPad Laptop,1,999.99,12/12/19 19:27,"995 Washington St, New York City, NY 10001" -299973,Apple Airpods Headphones,1,150,12/24/19 16:16,"652 Madison St, Portland, OR 97035" -299974,AA Batteries (4-pack),1,3.84,12/28/19 11:05,"755 North St, San Francisco, CA 94016" -299975,Google Phone,1,600,12/08/19 23:32,"787 Wilson St, Los Angeles, CA 90001" -299975,USB-C Charging Cable,1,11.95,12/08/19 23:32,"787 Wilson St, Los Angeles, CA 90001" -299976,AA Batteries (4-pack),3,3.84,12/28/19 10:04,"325 5th St, Atlanta, GA 30301" -299977,27in FHD Monitor,1,149.99,12/20/19 19:36,"551 13th St, San Francisco, CA 94016" -299978,27in FHD Monitor,1,149.99,12/13/19 22:20,"245 Hill St, Boston, MA 02215" -299979,Vareebadd Phone,1,400,12/17/19 20:01,"696 Madison St, Portland, OR 97035" -299980,Apple Airpods Headphones,1,150,12/24/19 16:33,"119 Johnson St, Atlanta, GA 30301" -299981,iPhone,1,700,12/09/19 20:17,"545 Chestnut St, Portland, OR 97035" -299981,Apple Airpods Headphones,1,150,12/09/19 20:17,"545 Chestnut St, Portland, OR 97035" -299982,iPhone,1,700,12/27/19 11:51,"210 Maple St, New York City, NY 10001" -299983,Wired Headphones,1,11.99,12/24/19 13:45,"581 Center St, New York City, NY 10001" -299984,Macbook Pro Laptop,1,1700,12/20/19 09:33,"590 Pine St, New York City, NY 10001" -299985,Lightning Charging Cable,1,14.95,12/16/19 18:44,"642 4th St, New York City, NY 10001" -299986,AA Batteries (4-pack),1,3.84,12/07/19 00:51,"254 6th St, Portland, OR 97035" -299987,USB-C Charging Cable,1,11.95,12/24/19 22:30,"998 13th St, Dallas, TX 75001" -299988,Google Phone,1,600,12/04/19 21:17,"420 Adams St, Los Angeles, CA 90001" -299988,Wired Headphones,1,11.99,12/04/19 21:17,"420 Adams St, Los Angeles, CA 90001" -299989,Lightning Charging Cable,1,14.95,12/25/19 20:41,"502 Maple St, New York City, NY 10001" -299990,Flatscreen TV,1,300,12/04/19 15:52,"785 Church St, Dallas, TX 75001" -299991,USB-C Charging Cable,1,11.95,12/26/19 14:39,"642 Lincoln St, Boston, MA 02215" -299992,Lightning Charging Cable,1,14.95,12/11/19 17:30,"499 Madison St, San Francisco, CA 94016" -299993,Apple Airpods Headphones,1,150,12/10/19 08:40,"400 Lake St, Boston, MA 02215" -299994,Bose SoundSport Headphones,1,99.99,12/23/19 14:09,"106 Hill St, Austin, TX 73301" -299995,USB-C Charging Cable,1,11.95,12/03/19 15:46,"238 River St, San Francisco, CA 94016" -299996,Macbook Pro Laptop,1,1700,12/10/19 12:37,"786 9th St, New York City, NY 10001" -299997,27in 4K Gaming Monitor,1,389.99,12/11/19 22:51,"676 7th St, Portland, OR 97035" -299998,Macbook Pro Laptop,1,1700,12/22/19 11:17,"183 Maple St, Los Angeles, CA 90001" -299999,AAA Batteries (4-pack),6,2.99,12/10/19 19:29,"132 11th St, Boston, MA 02215" -300000,ThinkPad Laptop,1,999.99,12/26/19 16:40,"132 Ridge St, San Francisco, CA 94016" -300001,USB-C Charging Cable,1,11.95,12/25/19 15:28,"970 Adams St, Los Angeles, CA 90001" -300002,AAA Batteries (4-pack),1,2.99,12/31/19 12:32,"596 South St, Atlanta, GA 30301" -300002,Lightning Charging Cable,1,14.95,12/31/19 12:32,"596 South St, Atlanta, GA 30301" -300003,20in Monitor,1,109.99,12/14/19 14:49,"705 Sunset St, New York City, NY 10001" -300004,AAA Batteries (4-pack),1,2.99,12/17/19 18:41,"380 Park St, San Francisco, CA 94016" -300005,Wired Headphones,1,11.99,12/25/19 08:57,"539 Johnson St, New York City, NY 10001" -300006,AAA Batteries (4-pack),2,2.99,12/06/19 01:34,"382 Hickory St, New York City, NY 10001" -300007,AA Batteries (4-pack),1,3.84,12/23/19 23:07,"266 12th St, New York City, NY 10001" -300008,Bose SoundSport Headphones,1,99.99,12/29/19 14:18,"586 Meadow St, Portland, OR 97035" -300009,Apple Airpods Headphones,1,150,12/27/19 17:01,"972 2nd St, Atlanta, GA 30301" -300010,Lightning Charging Cable,1,14.95,12/20/19 15:52,"274 7th St, San Francisco, CA 94016" -300011,Bose SoundSport Headphones,1,99.99,12/01/19 21:22,"814 9th St, San Francisco, CA 94016" -300012,Wired Headphones,1,11.99,12/10/19 00:31,"559 Park St, New York City, NY 10001" -300013,AA Batteries (4-pack),1,3.84,12/11/19 13:09,"495 Meadow St, Los Angeles, CA 90001" -300014,USB-C Charging Cable,1,11.95,12/06/19 15:57,"347 7th St, Seattle, WA 98101" -300015,Wired Headphones,1,11.99,12/20/19 15:10,"942 14th St, Boston, MA 02215" -300016,USB-C Charging Cable,1,11.95,12/23/19 10:27,"204 Hickory St, Los Angeles, CA 90001" -300017,USB-C Charging Cable,1,11.95,12/04/19 15:56,"294 Maple St, Boston, MA 02215" -300018,Wired Headphones,1,11.99,12/09/19 20:48,"17 Cherry St, Los Angeles, CA 90001" -300019,Lightning Charging Cable,1,14.95,12/23/19 18:03,"971 Madison St, San Francisco, CA 94016" -300020,iPhone,1,700,12/02/19 16:24,"875 River St, Boston, MA 02215" -300021,USB-C Charging Cable,1,11.95,12/14/19 23:04,"812 8th St, Portland, ME 04101" -300022,Google Phone,1,600,12/21/19 18:45,"940 River St, San Francisco, CA 94016" -300023,LG Washing Machine,1,600.0,12/28/19 15:32,"890 Ridge St, San Francisco, CA 94016" -300024,AAA Batteries (4-pack),1,2.99,12/01/19 21:58,"274 14th St, Austin, TX 73301" -300025,Lightning Charging Cable,1,14.95,12/12/19 15:52,"41 South St, San Francisco, CA 94016" -300026,Apple Airpods Headphones,1,150,12/15/19 16:03,"75 Lakeview St, Dallas, TX 75001" -300027,Wired Headphones,1,11.99,12/17/19 21:50,"966 Dogwood St, Dallas, TX 75001" -300028,27in FHD Monitor,1,149.99,12/05/19 18:10,"453 2nd St, New York City, NY 10001" -300029,AA Batteries (4-pack),1,3.84,12/09/19 16:31,"341 8th St, San Francisco, CA 94016" -300030,AAA Batteries (4-pack),2,2.99,12/12/19 13:40,"842 Cherry St, San Francisco, CA 94016" -300031,Wired Headphones,1,11.99,12/27/19 20:26,"659 6th St, San Francisco, CA 94016" -300032,USB-C Charging Cable,2,11.95,12/20/19 16:13,"338 South St, San Francisco, CA 94016" -300033,AA Batteries (4-pack),1,3.84,12/07/19 22:41,"584 Lincoln St, San Francisco, CA 94016" -300034,Google Phone,1,600,12/14/19 06:28,"602 11th St, Atlanta, GA 30301" -300034,USB-C Charging Cable,1,11.95,12/14/19 06:28,"602 11th St, Atlanta, GA 30301" -300035,AAA Batteries (4-pack),2,2.99,12/21/19 05:45,"994 Wilson St, Portland, OR 97035" -300036,Apple Airpods Headphones,1,150,12/07/19 06:57,"516 Highland St, Seattle, WA 98101" -300037,USB-C Charging Cable,1,11.95,12/31/19 13:14,"766 Maple St, San Francisco, CA 94016" -300038,Wired Headphones,1,11.99,12/25/19 14:44,"229 10th St, Los Angeles, CA 90001" -300039,Google Phone,1,600,12/12/19 13:48,"879 Wilson St, San Francisco, CA 94016" -300040,Flatscreen TV,1,300,12/16/19 08:02,"850 Park St, Dallas, TX 75001" -300041,Lightning Charging Cable,1,14.95,12/25/19 22:37,"941 5th St, New York City, NY 10001" -300042,Lightning Charging Cable,1,14.95,12/25/19 18:11,"630 14th St, Dallas, TX 75001" -300043,Vareebadd Phone,1,400,12/30/19 17:06,"59 Hill St, San Francisco, CA 94016" -300044,AA Batteries (4-pack),1,3.84,12/26/19 13:59,"761 9th St, Dallas, TX 75001" -300045,AA Batteries (4-pack),1,3.84,12/14/19 15:09,"949 Main St, Boston, MA 02215" -300046,Lightning Charging Cable,1,14.95,12/13/19 14:45,"152 Sunset St, Los Angeles, CA 90001" -300047,iPhone,1,700,12/11/19 22:58,"519 Johnson St, Los Angeles, CA 90001" -300048,Macbook Pro Laptop,1,1700,12/04/19 16:17,"450 Jackson St, New York City, NY 10001" -300049,Google Phone,1,600,12/02/19 00:30,"761 14th St, Seattle, WA 98101" -300050,AAA Batteries (4-pack),2,2.99,12/28/19 18:51,"896 9th St, Dallas, TX 75001" -300051,AA Batteries (4-pack),1,3.84,12/27/19 21:29,"211 West St, San Francisco, CA 94016" -300052,Bose SoundSport Headphones,1,99.99,12/23/19 20:07,"996 11th St, Los Angeles, CA 90001" -300053,27in 4K Gaming Monitor,1,389.99,12/16/19 21:14,"809 Lake St, Austin, TX 73301" -300054,Bose SoundSport Headphones,1,99.99,12/07/19 05:54,"390 Dogwood St, Boston, MA 02215" -300055,34in Ultrawide Monitor,1,379.99,12/20/19 21:40,"442 North St, New York City, NY 10001" -300056,AAA Batteries (4-pack),3,2.99,12/22/19 18:11,"677 1st St, Dallas, TX 75001" -300057,Lightning Charging Cable,1,14.95,12/28/19 20:08,"715 Madison St, Los Angeles, CA 90001" -300058,34in Ultrawide Monitor,1,379.99,12/12/19 04:12,"255 Washington St, Los Angeles, CA 90001" -300059,AA Batteries (4-pack),1,3.84,12/25/19 18:34,"490 Center St, San Francisco, CA 94016" -300060,AAA Batteries (4-pack),3,2.99,12/01/19 11:11,"571 11th St, Atlanta, GA 30301" -300061,USB-C Charging Cable,3,11.95,12/06/19 09:44,"488 Cedar St, Portland, ME 04101" -300062,Bose SoundSport Headphones,1,99.99,12/23/19 22:04,"272 Pine St, Seattle, WA 98101" -300063,AA Batteries (4-pack),2,3.84,12/25/19 13:47,"603 9th St, Dallas, TX 75001" -300064,Lightning Charging Cable,1,14.95,12/30/19 21:01,"48 Church St, New York City, NY 10001" -300065,ThinkPad Laptop,1,999.99,12/14/19 14:44,"190 Washington St, Los Angeles, CA 90001" -300066,Apple Airpods Headphones,1,150,12/08/19 11:32,"310 6th St, Portland, OR 97035" -300067,Lightning Charging Cable,1,14.95,12/08/19 10:10,"709 Center St, Austin, TX 73301" -300068,20in Monitor,1,109.99,12/02/19 17:47,"722 Cedar St, Los Angeles, CA 90001" -300069,Apple Airpods Headphones,1,150,12/14/19 15:18,"961 Highland St, San Francisco, CA 94016" -300070,27in FHD Monitor,1,149.99,12/26/19 18:34,"99 Elm St, San Francisco, CA 94016" -300071,34in Ultrawide Monitor,1,379.99,12/26/19 20:25,"847 Jefferson St, Seattle, WA 98101" -300072,Vareebadd Phone,1,400,12/26/19 07:21,"995 Lincoln St, San Francisco, CA 94016" -300072,USB-C Charging Cable,1,11.95,12/26/19 07:21,"995 Lincoln St, San Francisco, CA 94016" -300072,Wired Headphones,1,11.99,12/26/19 07:21,"995 Lincoln St, San Francisco, CA 94016" -300073,iPhone,1,700,12/14/19 10:23,"638 5th St, New York City, NY 10001" -300074,USB-C Charging Cable,2,11.95,12/07/19 23:04,"577 Johnson St, San Francisco, CA 94016" -300075,Bose SoundSport Headphones,1,99.99,12/04/19 23:00,"256 Park St, Seattle, WA 98101" -300076,USB-C Charging Cable,1,11.95,12/12/19 21:46,"233 Cedar St, Seattle, WA 98101" -300077,Macbook Pro Laptop,1,1700,12/17/19 15:37,"325 1st St, Los Angeles, CA 90001" -300078,USB-C Charging Cable,1,11.95,12/23/19 16:18,"42 Park St, San Francisco, CA 94016" -300079,Wired Headphones,1,11.99,12/10/19 11:34,"96 2nd St, New York City, NY 10001" -300080,Apple Airpods Headphones,1,150,12/28/19 20:31,"593 13th St, Dallas, TX 75001" -300081,AAA Batteries (4-pack),3,2.99,12/02/19 14:24,"917 Pine St, Los Angeles, CA 90001" -300082,Wired Headphones,2,11.99,12/14/19 15:22,"63 Pine St, New York City, NY 10001" -300083,USB-C Charging Cable,1,11.95,12/13/19 11:09,"823 Lake St, New York City, NY 10001" -300084,Wired Headphones,1,11.99,12/27/19 18:29,"140 Dogwood St, San Francisco, CA 94016" -300085,AA Batteries (4-pack),1,3.84,12/17/19 14:01,"601 Spruce St, Boston, MA 02215" -300085,AA Batteries (4-pack),1,3.84,12/17/19 14:01,"601 Spruce St, Boston, MA 02215" -300086,USB-C Charging Cable,1,11.95,12/15/19 18:02,"386 Chestnut St, Portland, ME 04101" -300087,34in Ultrawide Monitor,1,379.99,12/27/19 11:09,"325 8th St, Seattle, WA 98101" -300088,Apple Airpods Headphones,1,150,12/17/19 11:54,"595 Willow St, San Francisco, CA 94016" -300089,20in Monitor,1,109.99,12/25/19 22:48,"476 7th St, New York City, NY 10001" -300090,Wired Headphones,1,11.99,12/13/19 13:51,"97 Center St, Los Angeles, CA 90001" -300091,Macbook Pro Laptop,1,1700,12/06/19 19:18,"308 6th St, Boston, MA 02215" -300092,USB-C Charging Cable,1,11.95,12/01/19 06:55,"208 Meadow St, Los Angeles, CA 90001" -300093,Apple Airpods Headphones,1,150,12/17/19 08:28,"803 6th St, Austin, TX 73301" -300094,Macbook Pro Laptop,1,1700,12/29/19 10:49,"97 Johnson St, New York City, NY 10001" -300095,AAA Batteries (4-pack),1,2.99,12/08/19 14:06,"896 10th St, Boston, MA 02215" -300096,Lightning Charging Cable,1,14.95,12/24/19 19:39,"622 2nd St, Seattle, WA 98101" -300097,USB-C Charging Cable,1,11.95,12/03/19 11:06,"695 Sunset St, Dallas, TX 75001" -300098,AA Batteries (4-pack),2,3.84,12/26/19 18:52,"192 Hill St, Seattle, WA 98101" -300099,27in FHD Monitor,1,149.99,12/11/19 18:43,"315 7th St, Atlanta, GA 30301" -300100,Lightning Charging Cable,1,14.95,12/13/19 09:24,"677 West St, Seattle, WA 98101" -300101,AA Batteries (4-pack),1,3.84,12/18/19 11:17,"685 2nd St, Los Angeles, CA 90001" -300102,Wired Headphones,1,11.99,12/27/19 19:55,"591 Chestnut St, Los Angeles, CA 90001" -300103,Bose SoundSport Headphones,1,99.99,12/26/19 21:19,"531 Main St, Dallas, TX 75001" -300104,Wired Headphones,1,11.99,12/27/19 22:18,"903 Meadow St, Portland, OR 97035" -300105,Google Phone,1,600,12/07/19 20:13,"423 12th St, San Francisco, CA 94016" -300106,34in Ultrawide Monitor,1,379.99,12/28/19 05:59,"214 Maple St, San Francisco, CA 94016" -300107,AA Batteries (4-pack),1,3.84,12/01/19 12:22,"816 Cedar St, New York City, NY 10001" -300108,ThinkPad Laptop,1,999.99,12/12/19 17:21,"136 West St, Atlanta, GA 30301" -300109,Wired Headphones,1,11.99,12/23/19 16:00,"852 Elm St, San Francisco, CA 94016" -300110,AAA Batteries (4-pack),2,2.99,12/24/19 18:49,"130 North St, Dallas, TX 75001" -300111,27in 4K Gaming Monitor,1,389.99,12/28/19 17:38,"938 Hickory St, Dallas, TX 75001" -300112,USB-C Charging Cable,1,11.95,12/13/19 16:55,"976 14th St, Austin, TX 73301" -300113,USB-C Charging Cable,1,11.95,12/12/19 09:21,"629 Willow St, San Francisco, CA 94016" -300114,Bose SoundSport Headphones,1,99.99,12/22/19 20:17,"945 Maple St, Austin, TX 73301" -300115,Lightning Charging Cable,1,14.95,12/27/19 11:06,"292 Adams St, Boston, MA 02215" -300116,Bose SoundSport Headphones,1,99.99,12/20/19 18:51,"996 Lake St, Boston, MA 02215" -300117,Apple Airpods Headphones,1,150,12/12/19 22:42,"549 Maple St, Atlanta, GA 30301" -300117,AAA Batteries (4-pack),1,2.99,12/12/19 22:42,"549 Maple St, Atlanta, GA 30301" -300118,ThinkPad Laptop,1,999.99,12/10/19 15:08,"111 Main St, San Francisco, CA 94016" -300119,Wired Headphones,1,11.99,12/30/19 13:22,"533 Jackson St, Seattle, WA 98101" -300119,Wired Headphones,1,11.99,12/30/19 13:22,"533 Jackson St, Seattle, WA 98101" -300120,34in Ultrawide Monitor,1,379.99,12/04/19 20:17,"984 Spruce St, Los Angeles, CA 90001" -300121,AAA Batteries (4-pack),1,2.99,12/05/19 09:57,"152 Spruce St, Los Angeles, CA 90001" -300122,Lightning Charging Cable,1,14.95,12/22/19 14:51,"880 Lakeview St, San Francisco, CA 94016" -300123,Wired Headphones,1,11.99,12/26/19 20:53,"146 River St, Boston, MA 02215" -,,,,, -300124,Bose SoundSport Headphones,1,99.99,12/28/19 12:55,"698 12th St, New York City, NY 10001" -300125,AA Batteries (4-pack),3,3.84,12/20/19 14:43,"180 Ridge St, San Francisco, CA 94016" -300126,Wired Headphones,1,11.99,12/16/19 08:46,"6 West St, New York City, NY 10001" -300127,Wired Headphones,1,11.99,12/10/19 08:55,"385 Center St, Dallas, TX 75001" -300127,Wired Headphones,1,11.99,12/10/19 08:55,"385 Center St, Dallas, TX 75001" -300128,AAA Batteries (4-pack),1,2.99,12/17/19 20:21,"718 2nd St, Portland, OR 97035" -300129,27in 4K Gaming Monitor,1,389.99,12/11/19 21:44,"413 Cherry St, San Francisco, CA 94016" -300130,Bose SoundSport Headphones,1,99.99,12/16/19 13:56,"971 West St, New York City, NY 10001" -300131,USB-C Charging Cable,1,11.95,12/09/19 12:05,"53 Cedar St, Los Angeles, CA 90001" -300132,27in 4K Gaming Monitor,1,389.99,12/10/19 16:36,"467 Center St, Portland, OR 97035" -300133,Flatscreen TV,1,300,12/09/19 20:01,"674 Walnut St, San Francisco, CA 94016" -300134,27in 4K Gaming Monitor,1,389.99,12/16/19 21:32,"916 Hill St, Atlanta, GA 30301" -300135,Wired Headphones,1,11.99,12/03/19 20:41,"239 9th St, New York City, NY 10001" -300136,Google Phone,1,600,12/23/19 09:26,"10 Lakeview St, Boston, MA 02215" -300137,27in 4K Gaming Monitor,1,389.99,12/27/19 11:17,"971 Lincoln St, Los Angeles, CA 90001" -300138,27in 4K Gaming Monitor,1,389.99,12/21/19 11:38,"512 Ridge St, San Francisco, CA 94016" -300139,Lightning Charging Cable,1,14.95,12/22/19 21:48,"908 12th St, Portland, ME 04101" -300140,Macbook Pro Laptop,1,1700,12/08/19 06:21,"871 Lakeview St, Los Angeles, CA 90001" -300141,USB-C Charging Cable,1,11.95,12/31/19 11:14,"459 Chestnut St, Boston, MA 02215" -300142,AA Batteries (4-pack),1,3.84,12/24/19 14:51,"799 14th St, Los Angeles, CA 90001" -300143,USB-C Charging Cable,1,11.95,12/28/19 20:07,"478 Jackson St, New York City, NY 10001" -300144,Lightning Charging Cable,1,14.95,12/05/19 19:53,"617 8th St, Seattle, WA 98101" -300145,Google Phone,1,600,12/19/19 14:59,"694 Cherry St, Portland, OR 97035" -300146,Bose SoundSport Headphones,1,99.99,12/31/19 20:41,"121 Madison St, Seattle, WA 98101" -300147,20in Monitor,1,109.99,12/28/19 15:15,"192 Maple St, San Francisco, CA 94016" -300148,Google Phone,1,600,12/14/19 20:19,"387 Lake St, Los Angeles, CA 90001" -300148,Bose SoundSport Headphones,1,99.99,12/14/19 20:19,"387 Lake St, Los Angeles, CA 90001" -300149,AA Batteries (4-pack),1,3.84,12/06/19 09:47,"578 Chestnut St, Dallas, TX 75001" -300150,Bose SoundSport Headphones,1,99.99,12/22/19 13:12,"368 Jackson St, New York City, NY 10001" -300151,AA Batteries (4-pack),1,3.84,12/08/19 00:06,"534 7th St, Atlanta, GA 30301" -300152,27in 4K Gaming Monitor,1,389.99,12/23/19 07:37,"317 Sunset St, Los Angeles, CA 90001" -300153,AA Batteries (4-pack),1,3.84,12/20/19 16:25,"180 Sunset St, New York City, NY 10001" -300154,iPhone,1,700,12/23/19 17:08,"817 12th St, Portland, OR 97035" -300155,AAA Batteries (4-pack),1,2.99,12/21/19 20:37,"978 Pine St, Portland, OR 97035" -300156,Wired Headphones,2,11.99,12/22/19 15:25,"712 Lakeview St, Boston, MA 02215" -300157,Wired Headphones,1,11.99,12/10/19 12:09,"825 Cherry St, San Francisco, CA 94016" -300158,ThinkPad Laptop,1,999.99,12/05/19 19:33,"566 9th St, Boston, MA 02215" -300159,20in Monitor,1,109.99,12/23/19 09:51,"565 Main St, Seattle, WA 98101" -300160,Wired Headphones,1,11.99,12/25/19 18:11,"170 Hill St, San Francisco, CA 94016" -300161,27in 4K Gaming Monitor,1,389.99,12/30/19 13:48,"813 9th St, Boston, MA 02215" -300162,AAA Batteries (4-pack),1,2.99,12/17/19 03:00,"682 Pine St, San Francisco, CA 94016" -300163,Lightning Charging Cable,1,14.95,12/15/19 12:11,"264 Church St, Portland, ME 04101" -300164,LG Dryer,1,600.0,12/17/19 19:41,"950 Ridge St, New York City, NY 10001" -300165,Wired Headphones,1,11.99,12/13/19 17:55,"584 Chestnut St, New York City, NY 10001" -300166,Bose SoundSport Headphones,1,99.99,12/10/19 08:04,"834 West St, San Francisco, CA 94016" -300167,Wired Headphones,1,11.99,12/25/19 20:21,"487 Jackson St, Los Angeles, CA 90001" -300168,AAA Batteries (4-pack),2,2.99,12/09/19 11:44,"7 Adams St, Dallas, TX 75001" -300169,Bose SoundSport Headphones,1,99.99,12/15/19 15:20,"136 Center St, San Francisco, CA 94016" -300170,Lightning Charging Cable,1,14.95,12/20/19 22:48,"649 Forest St, Dallas, TX 75001" -300171,Lightning Charging Cable,1,14.95,12/07/19 12:45,"30 Lake St, Dallas, TX 75001" -300172,Apple Airpods Headphones,1,150,12/04/19 07:10,"985 Washington St, Atlanta, GA 30301" -300173,Apple Airpods Headphones,1,150,12/19/19 11:08,"699 Ridge St, Atlanta, GA 30301" -300174,Bose SoundSport Headphones,1,99.99,12/20/19 11:40,"310 14th St, San Francisco, CA 94016" -300175,Lightning Charging Cable,1,14.95,12/30/19 19:05,"416 1st St, San Francisco, CA 94016" -300176,USB-C Charging Cable,1,11.95,12/21/19 18:51,"373 Hill St, Seattle, WA 98101" -300177,LG Washing Machine,1,600.0,12/17/19 19:17,"394 Sunset St, Boston, MA 02215" -300178,27in FHD Monitor,1,149.99,12/29/19 07:49,"138 1st St, Atlanta, GA 30301" -300179,Apple Airpods Headphones,1,150,12/14/19 07:01,"696 6th St, Los Angeles, CA 90001" -300180,Apple Airpods Headphones,1,150,12/31/19 02:01,"433 Cherry St, Austin, TX 73301" -300181,Bose SoundSport Headphones,1,99.99,12/10/19 01:25,"50 Jackson St, Los Angeles, CA 90001" -300182,Apple Airpods Headphones,1,150,12/05/19 10:04,"215 Washington St, Los Angeles, CA 90001" -300183,Lightning Charging Cable,1,14.95,12/07/19 23:42,"406 Adams St, Atlanta, GA 30301" -300184,Wired Headphones,2,11.99,12/25/19 12:38,"953 Wilson St, New York City, NY 10001" -300185,Bose SoundSport Headphones,1,99.99,12/20/19 20:47,"482 Johnson St, Seattle, WA 98101" -300186,Apple Airpods Headphones,1,150,12/13/19 23:03,"979 Hickory St, Los Angeles, CA 90001" -300187,27in FHD Monitor,1,149.99,12/10/19 12:06,"562 4th St, New York City, NY 10001" -300188,Lightning Charging Cable,1,14.95,12/01/19 18:07,"812 Washington St, Atlanta, GA 30301" -300189,Bose SoundSport Headphones,1,99.99,12/24/19 14:36,"583 Ridge St, Portland, OR 97035" -300190,AA Batteries (4-pack),1,3.84,12/16/19 00:58,"357 13th St, San Francisco, CA 94016" -300191,AA Batteries (4-pack),1,3.84,12/25/19 21:41,"182 6th St, San Francisco, CA 94016" -300192,Bose SoundSport Headphones,1,99.99,12/10/19 06:55,"115 North St, Los Angeles, CA 90001" -300193,AAA Batteries (4-pack),4,2.99,12/14/19 21:07,"135 Adams St, Boston, MA 02215" -300194,Bose SoundSport Headphones,1,99.99,12/17/19 20:37,"800 Ridge St, Atlanta, GA 30301" -300195,Wired Headphones,1,11.99,12/21/19 11:39,"861 12th St, San Francisco, CA 94016" -300196,Bose SoundSport Headphones,1,99.99,12/17/19 08:03,"143 Lincoln St, Portland, OR 97035" -300197,27in 4K Gaming Monitor,1,389.99,12/02/19 20:46,"120 2nd St, Boston, MA 02215" -300198,AAA Batteries (4-pack),1,2.99,12/14/19 18:54,"200 Dogwood St, Atlanta, GA 30301" -300199,AA Batteries (4-pack),1,3.84,12/03/19 22:39,"920 Lincoln St, New York City, NY 10001" -300200,USB-C Charging Cable,1,11.95,12/09/19 10:57,"845 Johnson St, New York City, NY 10001" -300201,Wired Headphones,1,11.99,12/24/19 12:32,"108 Highland St, Portland, OR 97035" -300202,27in FHD Monitor,1,149.99,12/13/19 04:42,"217 1st St, New York City, NY 10001" -300203,AA Batteries (4-pack),2,3.84,12/03/19 13:34,"899 Pine St, Los Angeles, CA 90001" -300204,Apple Airpods Headphones,1,150,12/10/19 15:27,"605 Dogwood St, Seattle, WA 98101" -300205,20in Monitor,1,109.99,12/01/19 19:39,"944 Lakeview St, Los Angeles, CA 90001" -300206,Flatscreen TV,1,300,12/01/19 07:03,"141 14th St, Boston, MA 02215" -300207,Wired Headphones,1,11.99,12/27/19 10:01,"91 Washington St, Seattle, WA 98101" -300208,Apple Airpods Headphones,1,150,12/06/19 16:22,"893 West St, San Francisco, CA 94016" -300209,USB-C Charging Cable,1,11.95,12/30/19 20:49,"665 11th St, Austin, TX 73301" -300210,Google Phone,1,600,12/14/19 15:17,"7 4th St, San Francisco, CA 94016" -300211,AA Batteries (4-pack),2,3.84,12/23/19 19:42,"386 13th St, New York City, NY 10001" -300212,Flatscreen TV,1,300,12/06/19 20:34,"476 12th St, Atlanta, GA 30301" -,,,,, -300213,Wired Headphones,2,11.99,12/13/19 11:12,"811 Walnut St, Los Angeles, CA 90001" -300214,Wired Headphones,1,11.99,12/05/19 10:02,"691 13th St, Austin, TX 73301" -300215,27in 4K Gaming Monitor,1,389.99,12/07/19 08:37,"69 1st St, Boston, MA 02215" -300216,Flatscreen TV,1,300,12/13/19 17:16,"509 Chestnut St, Los Angeles, CA 90001" -300217,Bose SoundSport Headphones,1,99.99,12/28/19 19:22,"588 7th St, Los Angeles, CA 90001" -300218,USB-C Charging Cable,2,11.95,12/08/19 15:09,"563 Highland St, Dallas, TX 75001" -300219,34in Ultrawide Monitor,1,379.99,12/16/19 20:53,"475 Center St, San Francisco, CA 94016" -300220,iPhone,1,700,12/12/19 15:27,"22 2nd St, New York City, NY 10001" -,,,,, -300221,AA Batteries (4-pack),1,3.84,12/30/19 21:36,"978 Elm St, San Francisco, CA 94016" -300222,iPhone,1,700,12/16/19 16:14,"957 Hill St, New York City, NY 10001" -300222,Apple Airpods Headphones,1,150,12/16/19 16:14,"957 Hill St, New York City, NY 10001" -300223,USB-C Charging Cable,1,11.95,12/07/19 22:11,"542 Walnut St, Boston, MA 02215" -300224,iPhone,1,700,12/01/19 12:33,"662 14th St, Seattle, WA 98101" -300225,Wired Headphones,1,11.99,12/27/19 12:04,"413 6th St, San Francisco, CA 94016" -300226,Lightning Charging Cable,1,14.95,12/29/19 11:14,"560 1st St, Dallas, TX 75001" -300227,USB-C Charging Cable,2,11.95,12/05/19 13:50,"5 13th St, Dallas, TX 75001" -300228,20in Monitor,1,109.99,12/02/19 13:53,"692 Johnson St, Boston, MA 02215" -300229,LG Dryer,1,600.0,12/25/19 18:17,"683 11th St, Atlanta, GA 30301" -300230,iPhone,1,700,12/20/19 06:02,"804 Jackson St, San Francisco, CA 94016" -300230,Apple Airpods Headphones,1,150,12/20/19 06:02,"804 Jackson St, San Francisco, CA 94016" -300231,AAA Batteries (4-pack),2,2.99,12/23/19 07:35,"793 Lakeview St, Austin, TX 73301" -300232,Lightning Charging Cable,1,14.95,12/01/19 12:05,"513 Pine St, Austin, TX 73301" -300233,Wired Headphones,1,11.99,12/18/19 14:42,"371 Washington St, Portland, OR 97035" -300234,34in Ultrawide Monitor,1,379.99,12/23/19 09:07,"679 Wilson St, Boston, MA 02215" -300235,AAA Batteries (4-pack),1,2.99,12/18/19 09:52,"204 Cherry St, Boston, MA 02215" -300236,USB-C Charging Cable,1,11.95,12/26/19 20:22,"736 Jackson St, Atlanta, GA 30301" -300237,34in Ultrawide Monitor,1,379.99,12/05/19 07:44,"321 Church St, San Francisco, CA 94016" -300238,AA Batteries (4-pack),1,3.84,12/30/19 21:29,"420 5th St, Atlanta, GA 30301" -300239,27in FHD Monitor,1,149.99,12/02/19 13:49,"677 Washington St, Los Angeles, CA 90001" -300240,Apple Airpods Headphones,1,150,12/05/19 09:30,"168 Highland St, Seattle, WA 98101" -300241,Wired Headphones,1,11.99,12/11/19 18:58,"505 13th St, Los Angeles, CA 90001" -300242,Lightning Charging Cable,1,14.95,12/03/19 10:16,"112 Washington St, Los Angeles, CA 90001" -300243,USB-C Charging Cable,2,11.95,12/03/19 14:21,"519 Park St, Los Angeles, CA 90001" -300244,Wired Headphones,1,11.99,12/15/19 16:54,"362 Adams St, Los Angeles, CA 90001" -300245,Lightning Charging Cable,1,14.95,12/05/19 11:33,"419 Meadow St, San Francisco, CA 94016" -300246,Wired Headphones,1,11.99,12/07/19 19:14,"167 South St, San Francisco, CA 94016" -300247,Google Phone,1,600,12/04/19 18:21,"295 7th St, San Francisco, CA 94016" -300248,Wired Headphones,1,11.99,12/27/19 14:16,"531 13th St, San Francisco, CA 94016" -300249,20in Monitor,1,109.99,12/17/19 11:27,"283 Lakeview St, Los Angeles, CA 90001" -300250,USB-C Charging Cable,1,11.95,12/10/19 07:37,"811 Lakeview St, Austin, TX 73301" -300251,Apple Airpods Headphones,1,150,12/01/19 17:55,"12 River St, New York City, NY 10001" -300252,AA Batteries (4-pack),1,3.84,12/07/19 08:22,"828 River St, Los Angeles, CA 90001" -300253,Bose SoundSport Headphones,1,99.99,12/19/19 18:38,"491 8th St, Boston, MA 02215" -300254,Bose SoundSport Headphones,1,99.99,12/12/19 11:21,"442 Elm St, Austin, TX 73301" -300255,AAA Batteries (4-pack),1,2.99,12/22/19 17:18,"896 Adams St, San Francisco, CA 94016" -300256,Flatscreen TV,1,300,12/24/19 16:46,"197 Dogwood St, Portland, OR 97035" -300257,Lightning Charging Cable,1,14.95,12/12/19 17:02,"144 11th St, Boston, MA 02215" -300258,Google Phone,1,600,12/15/19 13:42,"381 Main St, New York City, NY 10001" -300258,Bose SoundSport Headphones,1,99.99,12/15/19 13:42,"381 Main St, New York City, NY 10001" -300259,AAA Batteries (4-pack),1,2.99,12/14/19 09:05,"695 7th St, New York City, NY 10001" -300260,iPhone,1,700,12/11/19 13:39,"224 Lake St, Portland, ME 04101" -300261,USB-C Charging Cable,1,11.95,12/06/19 07:56,"367 Ridge St, Atlanta, GA 30301" -300262,USB-C Charging Cable,1,11.95,12/05/19 16:47,"77 Wilson St, New York City, NY 10001" -300263,AA Batteries (4-pack),4,3.84,12/08/19 07:17,"707 Madison St, Los Angeles, CA 90001" -300264,AAA Batteries (4-pack),1,2.99,12/30/19 10:47,"127 Lincoln St, San Francisco, CA 94016" -300265,Bose SoundSport Headphones,1,99.99,12/17/19 15:07,"161 Spruce St, New York City, NY 10001" -300266,Wired Headphones,1,11.99,12/31/19 09:21,"556 North St, Los Angeles, CA 90001" -300267,AA Batteries (4-pack),1,3.84,12/06/19 00:50,"45 Jefferson St, San Francisco, CA 94016" -300268,Lightning Charging Cable,1,14.95,12/19/19 20:19,"203 Pine St, Dallas, TX 75001" -300269,AA Batteries (4-pack),2,3.84,12/23/19 15:23,"91 Chestnut St, Boston, MA 02215" -300270,20in Monitor,1,109.99,12/21/19 06:04,"828 Church St, San Francisco, CA 94016" -300271,27in FHD Monitor,1,149.99,12/01/19 12:50,"315 7th St, San Francisco, CA 94016" -300272,AAA Batteries (4-pack),1,2.99,12/19/19 18:20,"19 Jackson St, Austin, TX 73301" -300273,Wired Headphones,1,11.99,12/28/19 14:49,"845 Hill St, Portland, OR 97035" -300274,Wired Headphones,1,11.99,12/10/19 10:41,"810 Hill St, Seattle, WA 98101" -300275,AAA Batteries (4-pack),1,2.99,12/22/19 11:14,"545 8th St, Atlanta, GA 30301" -300276,Google Phone,1,600,12/21/19 21:32,"193 14th St, New York City, NY 10001" -300276,USB-C Charging Cable,1,11.95,12/21/19 21:32,"193 14th St, New York City, NY 10001" -300277,Wired Headphones,1,11.99,12/20/19 21:27,"532 13th St, San Francisco, CA 94016" -300278,Bose SoundSport Headphones,1,99.99,12/15/19 18:56,"996 Elm St, New York City, NY 10001" -300279,AA Batteries (4-pack),1,3.84,12/14/19 19:27,"158 8th St, New York City, NY 10001" -300280,AAA Batteries (4-pack),1,2.99,12/04/19 16:58,"275 Church St, New York City, NY 10001" -300281,Lightning Charging Cable,1,14.95,12/03/19 15:33,"126 Cherry St, San Francisco, CA 94016" -300282,Macbook Pro Laptop,1,1700,12/15/19 18:09,"545 9th St, Seattle, WA 98101" -300283,Lightning Charging Cable,1,14.95,12/29/19 06:53,"109 Pine St, Dallas, TX 75001" -300284,Wired Headphones,1,11.99,12/19/19 20:51,"525 Adams St, Atlanta, GA 30301" -300285,AAA Batteries (4-pack),1,2.99,12/02/19 09:22,"311 7th St, San Francisco, CA 94016" -300286,USB-C Charging Cable,1,11.95,12/17/19 22:27,"210 Highland St, Los Angeles, CA 90001" -300287,AA Batteries (4-pack),2,3.84,12/01/19 14:27,"567 Pine St, Portland, OR 97035" -300288,AAA Batteries (4-pack),1,2.99,12/12/19 10:12,"352 12th St, Seattle, WA 98101" -300289,AA Batteries (4-pack),1,3.84,12/05/19 07:44,"26 13th St, Portland, OR 97035" -300290,USB-C Charging Cable,1,11.95,12/28/19 22:10,"662 4th St, Dallas, TX 75001" -300291,Apple Airpods Headphones,1,150,12/10/19 20:07,"486 West St, San Francisco, CA 94016" -300292,AA Batteries (4-pack),2,3.84,12/04/19 18:11,"244 12th St, Atlanta, GA 30301" -300293,Flatscreen TV,1,300,12/08/19 15:28,"361 Highland St, New York City, NY 10001" -300294,Lightning Charging Cable,1,14.95,12/14/19 23:10,"130 Walnut St, Seattle, WA 98101" -300295,27in FHD Monitor,1,149.99,12/11/19 12:52,"386 Dogwood St, New York City, NY 10001" -300296,Apple Airpods Headphones,1,150,12/04/19 22:03,"734 Church St, San Francisco, CA 94016" -300297,Bose SoundSport Headphones,1,99.99,12/23/19 07:51,"988 13th St, San Francisco, CA 94016" -300298,20in Monitor,1,109.99,12/30/19 06:12,"457 Hickory St, San Francisco, CA 94016" -300299,27in 4K Gaming Monitor,1,389.99,12/04/19 16:29,"574 South St, New York City, NY 10001" -300300,Lightning Charging Cable,1,14.95,12/24/19 21:41,"966 Adams St, New York City, NY 10001" -300301,Lightning Charging Cable,1,14.95,12/07/19 09:34,"656 Madison St, Boston, MA 02215" -300302,AA Batteries (4-pack),1,3.84,12/03/19 23:02,"120 Ridge St, Los Angeles, CA 90001" -300303,27in FHD Monitor,1,149.99,12/22/19 14:02,"360 Sunset St, Boston, MA 02215" -300304,Apple Airpods Headphones,1,150,12/07/19 17:49,"746 Lakeview St, Austin, TX 73301" -300305,Google Phone,1,600,12/31/19 17:23,"66 Park St, Los Angeles, CA 90001" -300306,27in FHD Monitor,1,149.99,12/01/19 17:36,"316 Walnut St, Atlanta, GA 30301" -300307,AAA Batteries (4-pack),2,2.99,12/24/19 08:12,"524 6th St, New York City, NY 10001" -300308,AAA Batteries (4-pack),1,2.99,12/03/19 07:56,"502 Meadow St, San Francisco, CA 94016" -300309,Macbook Pro Laptop,1,1700,12/25/19 13:55,"377 Cedar St, Dallas, TX 75001" -300310,Google Phone,1,600,12/12/19 19:48,"123 Johnson St, Seattle, WA 98101" -300310,Wired Headphones,1,11.99,12/12/19 19:48,"123 Johnson St, Seattle, WA 98101" -300311,Bose SoundSport Headphones,1,99.99,12/08/19 20:00,"553 2nd St, Atlanta, GA 30301" -300312,Wired Headphones,1,11.99,12/30/19 14:38,"293 Cedar St, Boston, MA 02215" -300313,ThinkPad Laptop,1,999.99,12/22/19 13:37,"855 Jackson St, San Francisco, CA 94016" -300314,Google Phone,1,600,12/18/19 14:46,"969 Spruce St, Seattle, WA 98101" -300315,AA Batteries (4-pack),1,3.84,12/02/19 06:18,"281 6th St, San Francisco, CA 94016" -300316,AAA Batteries (4-pack),1,2.99,12/06/19 16:42,"51 13th St, New York City, NY 10001" -300317,Apple Airpods Headphones,1,150,12/25/19 20:25,"49 Jefferson St, Boston, MA 02215" -300318,AAA Batteries (4-pack),1,2.99,12/01/19 22:41,"720 1st St, Dallas, TX 75001" -300319,USB-C Charging Cable,1,11.95,12/03/19 12:19,"631 River St, Los Angeles, CA 90001" -300320,Lightning Charging Cable,1,14.95,12/20/19 12:15,"976 Center St, San Francisco, CA 94016" -300321,AAA Batteries (4-pack),3,2.99,12/22/19 05:44,"331 Park St, New York City, NY 10001" -300322,Wired Headphones,1,11.99,12/01/19 19:17,"65 2nd St, Seattle, WA 98101" -300323,Bose SoundSport Headphones,1,99.99,12/07/19 08:31,"893 Main St, Seattle, WA 98101" -300324,USB-C Charging Cable,2,11.95,12/06/19 01:22,"544 Hill St, Los Angeles, CA 90001" -300325,Flatscreen TV,1,300,12/18/19 10:07,"444 Washington St, Atlanta, GA 30301" -300326,Google Phone,1,600,12/07/19 12:59,"279 Dogwood St, Atlanta, GA 30301" -300327,34in Ultrawide Monitor,1,379.99,12/21/19 17:49,"382 Cedar St, Los Angeles, CA 90001" -300328,AAA Batteries (4-pack),2,2.99,12/27/19 19:42,"319 Cherry St, New York City, NY 10001" -300329,AA Batteries (4-pack),2,3.84,12/15/19 07:29,"470 Jefferson St, San Francisco, CA 94016" -300330,Vareebadd Phone,1,400,12/24/19 11:38,"439 Washington St, Atlanta, GA 30301" -300331,USB-C Charging Cable,1,11.95,12/29/19 19:32,"148 Hickory St, Los Angeles, CA 90001" -300332,USB-C Charging Cable,1,11.95,12/02/19 15:38,"399 Jackson St, Atlanta, GA 30301" -300333,AAA Batteries (4-pack),1,2.99,12/11/19 20:23,"754 Spruce St, Seattle, WA 98101" -300334,Lightning Charging Cable,1,14.95,12/13/19 21:15,"775 Hickory St, Atlanta, GA 30301" -300335,USB-C Charging Cable,1,11.95,12/24/19 10:59,"785 Cedar St, Dallas, TX 75001" -300336,Bose SoundSport Headphones,1,99.99,12/21/19 13:22,"810 6th St, New York City, NY 10001" -300337,Wired Headphones,2,11.99,12/05/19 12:56,"332 Lincoln St, Los Angeles, CA 90001" -300338,Lightning Charging Cable,1,14.95,12/19/19 15:41,"479 Hickory St, Dallas, TX 75001" -300339,USB-C Charging Cable,1,11.95,12/19/19 19:31,"813 5th St, New York City, NY 10001" -300340,USB-C Charging Cable,1,11.95,12/02/19 09:33,"931 Pine St, San Francisco, CA 94016" -300341,AAA Batteries (4-pack),1,2.99,12/06/19 02:24,"367 Adams St, San Francisco, CA 94016" -300342,USB-C Charging Cable,1,11.95,12/29/19 19:06,"505 12th St, Boston, MA 02215" -300343,Vareebadd Phone,1,400,12/14/19 04:27,"497 Walnut St, Los Angeles, CA 90001" -300343,USB-C Charging Cable,1,11.95,12/14/19 04:27,"497 Walnut St, Los Angeles, CA 90001" -300344,AA Batteries (4-pack),1,3.84,12/30/19 21:14,"123 12th St, Dallas, TX 75001" -300345,USB-C Charging Cable,1,11.95,12/11/19 21:01,"8 Jefferson St, Dallas, TX 75001" -300346,USB-C Charging Cable,1,11.95,12/29/19 13:00,"597 13th St, San Francisco, CA 94016" -300347,Lightning Charging Cable,1,14.95,12/14/19 18:58,"290 Madison St, New York City, NY 10001" -300348,Bose SoundSport Headphones,1,99.99,12/29/19 08:11,"859 Cherry St, New York City, NY 10001" -300349,Wired Headphones,1,11.99,12/18/19 13:06,"405 14th St, Boston, MA 02215" -300350,iPhone,1,700,12/15/19 20:45,"349 West St, San Francisco, CA 94016" -300351,AAA Batteries (4-pack),1,2.99,12/11/19 11:49,"248 9th St, Seattle, WA 98101" -300352,Apple Airpods Headphones,1,150,12/04/19 12:55,"188 South St, Austin, TX 73301" -300353,Apple Airpods Headphones,1,150,12/14/19 09:50,"865 Lakeview St, San Francisco, CA 94016" -300354,Lightning Charging Cable,1,14.95,12/11/19 11:54,"155 Ridge St, Los Angeles, CA 90001" -300355,Apple Airpods Headphones,1,150,12/07/19 17:32,"807 14th St, San Francisco, CA 94016" -300356,AAA Batteries (4-pack),1,2.99,12/30/19 18:27,"15 Jefferson St, Portland, OR 97035" -300357,Wired Headphones,1,11.99,12/02/19 13:23,"870 8th St, Los Angeles, CA 90001" -,,,,, -300358,iPhone,1,700,12/14/19 13:30,"439 Johnson St, New York City, NY 10001" -300359,USB-C Charging Cable,1,11.95,12/27/19 09:47,"335 Cherry St, Austin, TX 73301" -300360,27in FHD Monitor,1,149.99,12/24/19 13:28,"503 10th St, Atlanta, GA 30301" -300361,ThinkPad Laptop,1,999.99,12/23/19 17:54,"994 Park St, San Francisco, CA 94016" -300362,USB-C Charging Cable,1,11.95,01/01/20 00:59,"581 River St, San Francisco, CA 94016" -300363,USB-C Charging Cable,1,11.95,12/24/19 21:20,"425 Park St, San Francisco, CA 94016" -300364,Lightning Charging Cable,1,14.95,12/09/19 19:45,"19 9th St, Seattle, WA 98101" -300365,Lightning Charging Cable,1,14.95,12/26/19 12:44,"265 5th St, Los Angeles, CA 90001" -300366,Wired Headphones,1,11.99,12/06/19 13:16,"316 Walnut St, Los Angeles, CA 90001" -300367,Apple Airpods Headphones,1,150,12/17/19 02:20,"693 Jackson St, Portland, OR 97035" -300368,AA Batteries (4-pack),1,3.84,12/09/19 13:24,"239 North St, Boston, MA 02215" -300369,AA Batteries (4-pack),1,3.84,12/06/19 18:44,"229 Dogwood St, Boston, MA 02215" -300370,Lightning Charging Cable,1,14.95,12/06/19 13:00,"16 Forest St, Boston, MA 02215" -300371,Wired Headphones,1,11.99,12/04/19 12:54,"833 13th St, Austin, TX 73301" -300372,20in Monitor,1,109.99,12/31/19 13:35,"170 2nd St, Dallas, TX 75001" -300373,AA Batteries (4-pack),1,3.84,12/16/19 22:02,"639 2nd St, Los Angeles, CA 90001" -300374,Wired Headphones,1,11.99,12/31/19 11:35,"363 Dogwood St, Portland, ME 04101" -300375,Bose SoundSport Headphones,1,99.99,12/29/19 13:27,"919 9th St, Los Angeles, CA 90001" -300376,34in Ultrawide Monitor,1,379.99,12/10/19 13:02,"457 Pine St, San Francisco, CA 94016" -300377,27in FHD Monitor,1,149.99,12/30/19 20:39,"807 Walnut St, Los Angeles, CA 90001" -300378,Flatscreen TV,1,300,12/10/19 18:58,"48 13th St, San Francisco, CA 94016" -300379,Wired Headphones,1,11.99,12/04/19 02:58,"322 Maple St, Atlanta, GA 30301" -300380,Wired Headphones,1,11.99,12/16/19 21:23,"917 6th St, San Francisco, CA 94016" -300381,Bose SoundSport Headphones,1,99.99,12/08/19 20:54,"812 Lakeview St, Los Angeles, CA 90001" -300382,AAA Batteries (4-pack),1,2.99,12/26/19 18:44,"256 Jackson St, San Francisco, CA 94016" -300383,Google Phone,1,600,12/20/19 19:21,"885 Jefferson St, Atlanta, GA 30301" -300383,Wired Headphones,1,11.99,12/20/19 19:21,"885 Jefferson St, Atlanta, GA 30301" -300384,USB-C Charging Cable,1,11.95,12/08/19 15:45,"401 Church St, Dallas, TX 75001" -300385,AA Batteries (4-pack),1,3.84,12/05/19 18:23,"869 1st St, Seattle, WA 98101" -300386,Lightning Charging Cable,1,14.95,12/23/19 17:10,"6 Jackson St, Seattle, WA 98101" -300387,Wired Headphones,1,11.99,12/09/19 15:28,"176 Jefferson St, Portland, ME 04101" -300388,USB-C Charging Cable,1,11.95,12/25/19 10:11,"439 4th St, Boston, MA 02215" -300389,Lightning Charging Cable,1,14.95,12/20/19 14:24,"812 Hill St, Boston, MA 02215" -300390,AAA Batteries (4-pack),1,2.99,12/23/19 17:17,"995 West St, Dallas, TX 75001" -300391,Bose SoundSport Headphones,1,99.99,12/15/19 22:47,"558 Center St, San Francisco, CA 94016" -300392,USB-C Charging Cable,1,11.95,12/12/19 13:09,"813 Cedar St, Atlanta, GA 30301" -300393,USB-C Charging Cable,1,11.95,12/28/19 11:57,"782 Ridge St, Dallas, TX 75001" -300394,Lightning Charging Cable,1,14.95,12/31/19 23:27,"634 Highland St, Atlanta, GA 30301" -300395,Google Phone,1,600,12/16/19 02:29,"679 Jackson St, Portland, OR 97035" -300395,USB-C Charging Cable,1,11.95,12/16/19 02:29,"679 Jackson St, Portland, OR 97035" -300396,Lightning Charging Cable,1,14.95,12/05/19 22:11,"105 Dogwood St, Seattle, WA 98101" -300397,Wired Headphones,1,11.99,12/13/19 14:40,"538 Church St, San Francisco, CA 94016" -300398,Vareebadd Phone,1,400,12/14/19 08:34,"742 Center St, New York City, NY 10001" -300399,Lightning Charging Cable,1,14.95,12/05/19 10:28,"514 Madison St, San Francisco, CA 94016" -300400,Lightning Charging Cable,1,14.95,12/10/19 11:44,"617 13th St, Atlanta, GA 30301" -300401,20in Monitor,1,109.99,12/12/19 21:19,"820 Park St, Boston, MA 02215" -300402,Google Phone,1,600,12/15/19 17:33,"93 River St, San Francisco, CA 94016" -300403,AAA Batteries (4-pack),3,2.99,12/21/19 18:04,"896 South St, Portland, OR 97035" -300404,Flatscreen TV,1,300,12/10/19 02:05,"690 Center St, San Francisco, CA 94016" -300405,Lightning Charging Cable,1,14.95,12/19/19 07:45,"253 Elm St, San Francisco, CA 94016" -300406,AA Batteries (4-pack),1,3.84,12/08/19 20:32,"618 Lincoln St, Seattle, WA 98101" -300407,AA Batteries (4-pack),3,3.84,12/08/19 15:10,"128 West St, Atlanta, GA 30301" -300408,20in Monitor,1,109.99,12/08/19 17:11,"380 Jackson St, New York City, NY 10001" -300409,Bose SoundSport Headphones,1,99.99,12/31/19 11:50,"899 Wilson St, Dallas, TX 75001" -300410,AAA Batteries (4-pack),1,2.99,12/23/19 13:07,"641 North St, Atlanta, GA 30301" -300411,Lightning Charging Cable,1,14.95,12/26/19 22:48,"978 Dogwood St, Los Angeles, CA 90001" -300412,USB-C Charging Cable,1,11.95,12/27/19 16:47,"626 Sunset St, Dallas, TX 75001" -300412,20in Monitor,1,109.99,12/27/19 16:47,"626 Sunset St, Dallas, TX 75001" -300413,AAA Batteries (4-pack),1,2.99,12/15/19 12:31,"567 Wilson St, Dallas, TX 75001" -300414,27in FHD Monitor,1,149.99,12/08/19 11:11,"266 14th St, Dallas, TX 75001" -300415,Bose SoundSport Headphones,1,99.99,12/13/19 13:16,"740 5th St, Portland, OR 97035" -300416,AAA Batteries (4-pack),1,2.99,12/06/19 17:18,"767 Sunset St, Dallas, TX 75001" -300417,Apple Airpods Headphones,1,150,12/02/19 13:41,"964 8th St, New York City, NY 10001" -300418,Google Phone,1,600,12/31/19 09:10,"258 Washington St, Atlanta, GA 30301" -300419,iPhone,1,700,12/18/19 21:12,"218 Cedar St, Portland, OR 97035" -300420,AAA Batteries (4-pack),1,2.99,12/17/19 13:07,"441 7th St, Portland, OR 97035" -300421,USB-C Charging Cable,1,11.95,12/06/19 09:32,"640 Jefferson St, Boston, MA 02215" -300422,USB-C Charging Cable,1,11.95,12/11/19 09:30,"276 7th St, Seattle, WA 98101" -300423,USB-C Charging Cable,1,11.95,12/23/19 20:05,"529 Lake St, Boston, MA 02215" -300424,Lightning Charging Cable,1,14.95,12/08/19 08:57,"666 Dogwood St, Austin, TX 73301" -300425,USB-C Charging Cable,1,11.95,12/23/19 15:59,"203 7th St, Boston, MA 02215" -300426,Macbook Pro Laptop,1,1700,12/08/19 23:30,"78 Johnson St, New York City, NY 10001" -300427,LG Dryer,1,600.0,12/13/19 17:45,"102 8th St, New York City, NY 10001" -300428,AA Batteries (4-pack),2,3.84,12/30/19 18:49,"280 Willow St, Dallas, TX 75001" -300429,USB-C Charging Cable,1,11.95,12/20/19 18:26,"707 Jefferson St, New York City, NY 10001" -300430,Lightning Charging Cable,1,14.95,12/13/19 11:21,"627 Meadow St, New York City, NY 10001" -300431,USB-C Charging Cable,2,11.95,12/11/19 19:42,"95 Meadow St, San Francisco, CA 94016" -300432,Lightning Charging Cable,1,14.95,12/22/19 17:02,"393 Highland St, Seattle, WA 98101" -300433,AA Batteries (4-pack),2,3.84,12/06/19 04:09,"320 River St, Atlanta, GA 30301" -300434,Lightning Charging Cable,1,14.95,12/22/19 11:45,"838 10th St, Boston, MA 02215" -300435,Bose SoundSport Headphones,1,99.99,12/08/19 15:53,"681 Johnson St, Boston, MA 02215" -300436,Wired Headphones,1,11.99,12/11/19 10:27,"157 Jefferson St, Austin, TX 73301" -300437,ThinkPad Laptop,1,999.99,12/11/19 12:08,"313 Hickory St, Los Angeles, CA 90001" -300438,20in Monitor,1,109.99,12/20/19 00:32,"264 Willow St, Boston, MA 02215" -300439,AA Batteries (4-pack),1,3.84,12/09/19 16:38,"784 Center St, San Francisco, CA 94016" -300440,27in FHD Monitor,1,149.99,12/25/19 16:54,"2 Chestnut St, Seattle, WA 98101" -300441,USB-C Charging Cable,3,11.95,12/11/19 12:08,"533 5th St, Austin, TX 73301" -300442,Bose SoundSport Headphones,1,99.99,12/19/19 12:10,"273 River St, Los Angeles, CA 90001" -300443,Macbook Pro Laptop,1,1700,12/08/19 18:26,"527 13th St, Seattle, WA 98101" -300444,USB-C Charging Cable,1,11.95,12/03/19 12:25,"459 Center St, San Francisco, CA 94016" -300445,LG Dryer,1,600.0,12/05/19 08:10,"757 Church St, Seattle, WA 98101" -300446,AA Batteries (4-pack),1,3.84,12/09/19 12:42,"825 Main St, San Francisco, CA 94016" -300447,Flatscreen TV,1,300,12/04/19 09:59,"617 11th St, Austin, TX 73301" -300448,Apple Airpods Headphones,1,150,12/24/19 20:56,"199 5th St, San Francisco, CA 94016" -300449,USB-C Charging Cable,1,11.95,12/06/19 19:16,"95 5th St, New York City, NY 10001" -300450,AAA Batteries (4-pack),1,2.99,12/14/19 20:37,"867 Cherry St, Portland, OR 97035" -300451,Macbook Pro Laptop,1,1700,12/13/19 13:24,"811 2nd St, Boston, MA 02215" -300452,AA Batteries (4-pack),1,3.84,12/02/19 19:07,"515 Highland St, Portland, OR 97035" -300453,Bose SoundSport Headphones,1,99.99,12/29/19 15:47,"868 9th St, New York City, NY 10001" -300454,AA Batteries (4-pack),1,3.84,12/12/19 15:53,"657 Maple St, Portland, ME 04101" -300455,Flatscreen TV,1,300,12/18/19 13:57,"800 Lincoln St, Atlanta, GA 30301" -300456,AAA Batteries (4-pack),1,2.99,12/27/19 21:23,"929 North St, San Francisco, CA 94016" -300456,USB-C Charging Cable,2,11.95,12/27/19 21:23,"929 North St, San Francisco, CA 94016" -300457,AAA Batteries (4-pack),1,2.99,12/21/19 12:00,"240 Ridge St, San Francisco, CA 94016" -300458,Macbook Pro Laptop,1,1700,12/15/19 17:28,"309 10th St, Atlanta, GA 30301" -300459,USB-C Charging Cable,1,11.95,12/28/19 17:23,"635 8th St, Atlanta, GA 30301" -300460,Lightning Charging Cable,2,14.95,12/19/19 17:56,"838 Lakeview St, Dallas, TX 75001" -300461,USB-C Charging Cable,1,11.95,12/10/19 12:13,"518 8th St, New York City, NY 10001" -300462,Bose SoundSport Headphones,1,99.99,12/03/19 11:42,"267 North St, Portland, ME 04101" -300463,Lightning Charging Cable,1,14.95,12/14/19 20:05,"152 Elm St, Portland, OR 97035" -300464,Google Phone,1,600,12/07/19 16:17,"532 Pine St, Los Angeles, CA 90001" -300465,Apple Airpods Headphones,1,150,12/11/19 21:27,"60 4th St, Portland, OR 97035" -300466,Wired Headphones,1,11.99,12/29/19 11:51,"723 13th St, Atlanta, GA 30301" -300467,AAA Batteries (4-pack),1,2.99,12/01/19 09:47,"593 Cherry St, Seattle, WA 98101" -300468,27in FHD Monitor,1,149.99,12/26/19 00:27,"27 South St, Los Angeles, CA 90001" -300469,AAA Batteries (4-pack),1,2.99,12/18/19 14:02,"206 Maple St, Boston, MA 02215" -300470,AAA Batteries (4-pack),1,2.99,12/11/19 23:00,"585 South St, Austin, TX 73301" -300471,AA Batteries (4-pack),1,3.84,12/01/19 11:33,"273 Lincoln St, Austin, TX 73301" -300472,27in 4K Gaming Monitor,1,389.99,12/22/19 14:27,"49 Hill St, Boston, MA 02215" -300473,USB-C Charging Cable,1,11.95,12/29/19 17:05,"374 13th St, New York City, NY 10001" -300474,USB-C Charging Cable,1,11.95,12/06/19 14:53,"866 River St, Los Angeles, CA 90001" -300475,AAA Batteries (4-pack),1,2.99,12/04/19 18:46,"422 Elm St, New York City, NY 10001" -300476,AA Batteries (4-pack),2,3.84,12/10/19 18:53,"311 Center St, Los Angeles, CA 90001" -300477,34in Ultrawide Monitor,1,379.99,12/22/19 18:06,"213 Cedar St, Seattle, WA 98101" -300478,Wired Headphones,1,11.99,12/31/19 05:08,"710 Maple St, New York City, NY 10001" -300479,AAA Batteries (4-pack),1,2.99,12/28/19 11:25,"977 10th St, Boston, MA 02215" -300480,Vareebadd Phone,1,400,12/04/19 18:07,"342 Dogwood St, New York City, NY 10001" -300481,34in Ultrawide Monitor,1,379.99,12/30/19 17:15,"906 7th St, Atlanta, GA 30301" -300482,Flatscreen TV,1,300,12/04/19 19:16,"256 Dogwood St, Los Angeles, CA 90001" -300483,AA Batteries (4-pack),3,3.84,12/26/19 12:55,"200 7th St, Atlanta, GA 30301" -300484,Wired Headphones,2,11.99,12/29/19 19:10,"803 Cedar St, Atlanta, GA 30301" -300485,Wired Headphones,1,11.99,12/08/19 21:20,"824 Madison St, New York City, NY 10001" -300486,iPhone,1,700,12/12/19 17:33,"765 Johnson St, Dallas, TX 75001" -300487,Lightning Charging Cable,1,14.95,12/19/19 13:25,"424 Jefferson St, San Francisco, CA 94016" -300488,Bose SoundSport Headphones,1,99.99,12/27/19 07:33,"34 12th St, Los Angeles, CA 90001" -300489,Lightning Charging Cable,1,14.95,12/20/19 13:39,"116 River St, Portland, OR 97035" -300490,Apple Airpods Headphones,1,150,12/03/19 21:13,"853 Lincoln St, New York City, NY 10001" -300491,AA Batteries (4-pack),4,3.84,12/31/19 12:28,"653 Park St, New York City, NY 10001" -300492,Bose SoundSport Headphones,1,99.99,12/08/19 13:54,"701 4th St, Dallas, TX 75001" -300493,AAA Batteries (4-pack),1,2.99,12/05/19 12:04,"713 Meadow St, Austin, TX 73301" -300494,Wired Headphones,1,11.99,12/02/19 18:52,"49 Lincoln St, Seattle, WA 98101" -300495,iPhone,1,700,12/08/19 12:44,"516 11th St, New York City, NY 10001" -300495,AA Batteries (4-pack),1,3.84,12/08/19 12:44,"516 11th St, New York City, NY 10001" -300496,Apple Airpods Headphones,1,150,12/03/19 11:26,"53 Maple St, New York City, NY 10001" -300497,Wired Headphones,1,11.99,12/16/19 01:05,"91 Lakeview St, San Francisco, CA 94016" -300498,20in Monitor,1,109.99,12/18/19 12:21,"998 Elm St, Los Angeles, CA 90001" -300499,USB-C Charging Cable,1,11.95,12/04/19 20:53,"104 West St, New York City, NY 10001" -300500,Lightning Charging Cable,1,14.95,12/21/19 14:36,"210 Center St, Portland, OR 97035" -300501,Apple Airpods Headphones,1,150,12/19/19 07:12,"157 Forest St, Portland, OR 97035" -300502,iPhone,1,700,12/09/19 13:47,"654 Pine St, Los Angeles, CA 90001" -300503,Apple Airpods Headphones,1,150,12/13/19 13:54,"29 Forest St, Los Angeles, CA 90001" -300504,AA Batteries (4-pack),1,3.84,12/12/19 19:11,"967 Forest St, San Francisco, CA 94016" -300505,iPhone,1,700,12/24/19 21:11,"199 6th St, Dallas, TX 75001" -300506,AA Batteries (4-pack),1,3.84,12/17/19 12:46,"950 Dogwood St, Boston, MA 02215" -300507,AA Batteries (4-pack),1,3.84,12/19/19 04:22,"238 Meadow St, Portland, ME 04101" -300508,AAA Batteries (4-pack),1,2.99,12/03/19 08:33,"563 Cherry St, Atlanta, GA 30301" -300509,Wired Headphones,1,11.99,12/17/19 09:06,"70 Adams St, Los Angeles, CA 90001" -300510,AA Batteries (4-pack),1,3.84,12/08/19 11:25,"551 West St, Austin, TX 73301" -300511,Bose SoundSport Headphones,1,99.99,12/22/19 07:43,"756 Jackson St, Boston, MA 02215" -300512,USB-C Charging Cable,1,11.95,12/12/19 16:30,"731 9th St, San Francisco, CA 94016" -300513,iPhone,1,700,12/27/19 08:27,"131 Ridge St, San Francisco, CA 94016" -300514,Wired Headphones,1,11.99,12/29/19 17:33,"826 10th St, New York City, NY 10001" -300515,ThinkPad Laptop,1,999.99,12/13/19 14:40,"218 1st St, Atlanta, GA 30301" -300516,Wired Headphones,1,11.99,12/15/19 20:41,"375 12th St, Austin, TX 73301" -300517,Wired Headphones,1,11.99,12/27/19 20:40,"318 8th St, San Francisco, CA 94016" -300518,AAA Batteries (4-pack),1,2.99,12/19/19 11:23,"768 South St, Los Angeles, CA 90001" -300519,Bose SoundSport Headphones,1,99.99,01/01/20 05:13,"657 Spruce St, New York City, NY 10001" -300519,Lightning Charging Cable,1,14.95,01/01/20 05:13,"657 Spruce St, New York City, NY 10001" -300520,34in Ultrawide Monitor,1,379.99,12/23/19 16:40,"214 Washington St, San Francisco, CA 94016" -300521,AAA Batteries (4-pack),2,2.99,12/03/19 13:36,"505 Lincoln St, Seattle, WA 98101" -300522,27in 4K Gaming Monitor,1,389.99,12/28/19 06:12,"708 Walnut St, New York City, NY 10001" -300523,USB-C Charging Cable,1,11.95,12/09/19 21:14,"756 Cedar St, Seattle, WA 98101" -300524,Macbook Pro Laptop,1,1700,12/10/19 10:31,"738 Adams St, Austin, TX 73301" -300525,AA Batteries (4-pack),1,3.84,12/31/19 01:12,"20 Cherry St, Seattle, WA 98101" -300526,Apple Airpods Headphones,1,150,12/26/19 13:20,"668 Hickory St, Austin, TX 73301" -300527,27in FHD Monitor,1,149.99,12/12/19 17:36,"420 Johnson St, Los Angeles, CA 90001" -300528,Google Phone,1,600,12/06/19 15:19,"944 Main St, Atlanta, GA 30301" -300528,USB-C Charging Cable,1,11.95,12/06/19 15:19,"944 Main St, Atlanta, GA 30301" -300529,Google Phone,1,600,12/23/19 12:47,"486 Walnut St, Los Angeles, CA 90001" -300530,Flatscreen TV,1,300,12/12/19 18:41,"589 Elm St, Boston, MA 02215" -300531,Wired Headphones,1,11.99,12/26/19 09:39,"266 Sunset St, Austin, TX 73301" -300532,AAA Batteries (4-pack),2,2.99,12/24/19 10:22,"395 7th St, Portland, ME 04101" -300533,34in Ultrawide Monitor,1,379.99,12/23/19 13:34,"239 Maple St, San Francisco, CA 94016" -300534,Bose SoundSport Headphones,1,99.99,12/04/19 19:44,"302 12th St, San Francisco, CA 94016" -300535,Flatscreen TV,1,300,12/17/19 11:43,"73 Jefferson St, Los Angeles, CA 90001" -300536,Bose SoundSport Headphones,1,99.99,12/27/19 07:19,"497 Cherry St, Boston, MA 02215" -300537,ThinkPad Laptop,1,999.99,12/05/19 02:13,"551 Pine St, San Francisco, CA 94016" -300538,Bose SoundSport Headphones,1,99.99,12/11/19 11:37,"354 Sunset St, Atlanta, GA 30301" -300539,34in Ultrawide Monitor,1,379.99,12/24/19 08:44,"186 Sunset St, Dallas, TX 75001" -300540,AAA Batteries (4-pack),1,2.99,12/11/19 00:37,"342 Hickory St, Portland, ME 04101" -300541,USB-C Charging Cable,1,11.95,12/14/19 20:01,"290 Lake St, Seattle, WA 98101" -300542,USB-C Charging Cable,1,11.95,12/30/19 00:24,"961 Cherry St, Portland, OR 97035" -300543,Wired Headphones,1,11.99,12/28/19 17:57,"715 11th St, New York City, NY 10001" -300544,27in 4K Gaming Monitor,1,389.99,12/02/19 09:43,"555 West St, Dallas, TX 75001" -300545,AAA Batteries (4-pack),1,2.99,12/04/19 13:20,"836 Ridge St, Seattle, WA 98101" -300546,27in 4K Gaming Monitor,1,389.99,12/21/19 19:35,"443 River St, Los Angeles, CA 90001" -300547,34in Ultrawide Monitor,1,379.99,12/25/19 10:19,"53 7th St, Los Angeles, CA 90001" -300548,Wired Headphones,1,11.99,12/09/19 20:33,"13 Maple St, San Francisco, CA 94016" -300549,Macbook Pro Laptop,1,1700,12/21/19 23:02,"820 Washington St, New York City, NY 10001" -300550,USB-C Charging Cable,1,11.95,12/21/19 09:00,"415 Pine St, Boston, MA 02215" -300551,Lightning Charging Cable,1,14.95,12/04/19 20:02,"405 10th St, San Francisco, CA 94016" -300552,AAA Batteries (4-pack),1,2.99,12/31/19 17:14,"890 5th St, Portland, OR 97035" -300553,20in Monitor,1,109.99,12/08/19 13:06,"257 Walnut St, San Francisco, CA 94016" -300554,Lightning Charging Cable,1,14.95,12/18/19 20:54,"180 13th St, Dallas, TX 75001" -300555,Flatscreen TV,1,300,12/31/19 19:49,"466 12th St, New York City, NY 10001" -300556,20in Monitor,1,109.99,12/26/19 23:05,"766 Cedar St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -300557,27in 4K Gaming Monitor,1,389.99,12/30/19 19:55,"506 Elm St, Atlanta, GA 30301" -300558,Lightning Charging Cable,2,14.95,12/23/19 12:37,"112 Main St, Los Angeles, CA 90001" -300559,USB-C Charging Cable,1,11.95,12/01/19 06:52,"566 Jefferson St, Los Angeles, CA 90001" -300560,USB-C Charging Cable,1,11.95,12/02/19 18:30,"137 13th St, Boston, MA 02215" -300561,AAA Batteries (4-pack),1,2.99,12/04/19 19:27,"413 Center St, New York City, NY 10001" -300562,Lightning Charging Cable,1,14.95,12/30/19 15:25,"695 12th St, Austin, TX 73301" -300563,Apple Airpods Headphones,1,150,12/19/19 21:48,"693 Johnson St, Los Angeles, CA 90001" -300564,AAA Batteries (4-pack),1,2.99,12/21/19 07:06,"356 Church St, Boston, MA 02215" -300565,20in Monitor,1,109.99,12/09/19 15:49,"388 Center St, San Francisco, CA 94016" -300566,USB-C Charging Cable,1,11.95,12/08/19 19:03,"708 8th St, San Francisco, CA 94016" -300567,AA Batteries (4-pack),1,3.84,12/02/19 18:17,"225 Jackson St, Dallas, TX 75001" -300568,AA Batteries (4-pack),1,3.84,12/12/19 19:53,"266 Dogwood St, Dallas, TX 75001" -300569,Macbook Pro Laptop,1,1700,12/30/19 21:21,"350 Dogwood St, Austin, TX 73301" -300570,Lightning Charging Cable,1,14.95,12/14/19 15:57,"941 Main St, Portland, OR 97035" -300571,AA Batteries (4-pack),1,3.84,12/29/19 13:17,"793 Cedar St, Dallas, TX 75001" -300572,Apple Airpods Headphones,1,150,12/28/19 19:55,"277 River St, Portland, OR 97035" -300573,Bose SoundSport Headphones,1,99.99,12/04/19 19:31,"255 Maple St, San Francisco, CA 94016" -300574,USB-C Charging Cable,1,11.95,12/21/19 19:45,"435 2nd St, New York City, NY 10001" -300575,Wired Headphones,1,11.99,12/11/19 10:59,"623 1st St, Portland, ME 04101" -300576,AA Batteries (4-pack),1,3.84,12/22/19 11:12,"910 South St, San Francisco, CA 94016" -300576,Bose SoundSport Headphones,1,99.99,12/22/19 11:12,"910 South St, San Francisco, CA 94016" -300577,27in 4K Gaming Monitor,1,389.99,12/21/19 18:06,"196 Meadow St, Portland, OR 97035" -300578,AAA Batteries (4-pack),3,2.99,12/02/19 12:42,"781 8th St, San Francisco, CA 94016" -300579,34in Ultrawide Monitor,1,379.99,12/14/19 14:28,"229 2nd St, Austin, TX 73301" -300580,Lightning Charging Cable,1,14.95,12/17/19 16:30,"972 7th St, New York City, NY 10001" -300581,Google Phone,1,600,12/18/19 19:10,"435 Spruce St, Los Angeles, CA 90001" -300582,27in 4K Gaming Monitor,1,389.99,12/11/19 20:08,"388 Pine St, Boston, MA 02215" -300583,27in FHD Monitor,1,149.99,12/19/19 10:25,"997 Lakeview St, Atlanta, GA 30301" -300584,AA Batteries (4-pack),1,3.84,12/13/19 13:49,"275 Hickory St, New York City, NY 10001" -300585,Wired Headphones,1,11.99,12/10/19 15:03,"614 1st St, Boston, MA 02215" -300586,AAA Batteries (4-pack),1,2.99,12/13/19 18:22,"57 Walnut St, New York City, NY 10001" -300587,AA Batteries (4-pack),2,3.84,12/30/19 12:56,"881 14th St, San Francisco, CA 94016" -300588,iPhone,1,700,12/07/19 22:44,"771 Wilson St, Dallas, TX 75001" -300589,34in Ultrawide Monitor,1,379.99,12/22/19 04:53,"476 7th St, San Francisco, CA 94016" -300590,Flatscreen TV,1,300,12/17/19 16:19,"885 Lincoln St, Boston, MA 02215" -300591,34in Ultrawide Monitor,1,379.99,12/10/19 17:38,"79 7th St, Portland, OR 97035" -300592,Bose SoundSport Headphones,1,99.99,12/10/19 16:22,"899 Lake St, Seattle, WA 98101" -300593,27in FHD Monitor,1,149.99,12/02/19 07:49,"925 Adams St, Dallas, TX 75001" -300594,Lightning Charging Cable,1,14.95,12/03/19 05:31,"576 Lakeview St, San Francisco, CA 94016" -300595,Bose SoundSport Headphones,1,99.99,12/21/19 18:22,"104 Adams St, Boston, MA 02215" -300596,27in 4K Gaming Monitor,1,389.99,12/03/19 14:48,"667 1st St, San Francisco, CA 94016" -300597,AA Batteries (4-pack),1,3.84,12/16/19 18:51,"227 Washington St, Austin, TX 73301" -300598,AA Batteries (4-pack),1,3.84,12/29/19 11:13,"563 Lincoln St, Dallas, TX 75001" -300599,USB-C Charging Cable,1,11.95,12/17/19 10:34,"309 1st St, New York City, NY 10001" -300600,AA Batteries (4-pack),2,3.84,12/02/19 15:22,"790 13th St, Boston, MA 02215" -300601,Apple Airpods Headphones,1,150,12/16/19 14:11,"577 Elm St, Los Angeles, CA 90001" -300601,20in Monitor,1,109.99,12/16/19 14:11,"577 Elm St, Los Angeles, CA 90001" -300602,Lightning Charging Cable,1,14.95,12/21/19 00:34,"768 Lincoln St, Los Angeles, CA 90001" -300603,Apple Airpods Headphones,1,150,12/16/19 10:15,"791 River St, Boston, MA 02215" -300604,Wired Headphones,1,11.99,12/28/19 19:32,"594 Park St, Dallas, TX 75001" -300605,27in FHD Monitor,1,149.99,12/11/19 07:19,"446 South St, San Francisco, CA 94016" -300606,AAA Batteries (4-pack),1,2.99,12/21/19 22:36,"981 9th St, San Francisco, CA 94016" -300607,ThinkPad Laptop,1,999.99,12/01/19 19:24,"484 Highland St, Portland, OR 97035" -300608,AAA Batteries (4-pack),1,2.99,12/06/19 00:54,"660 13th St, San Francisco, CA 94016" -300609,20in Monitor,1,109.99,12/27/19 23:16,"127 Cherry St, San Francisco, CA 94016" -300610,AA Batteries (4-pack),1,3.84,12/18/19 11:17,"518 Walnut St, San Francisco, CA 94016" -300611,USB-C Charging Cable,1,11.95,12/22/19 11:20,"759 13th St, Dallas, TX 75001" -300612,Lightning Charging Cable,1,14.95,12/03/19 14:26,"842 Church St, Los Angeles, CA 90001" -300613,AAA Batteries (4-pack),2,2.99,12/16/19 23:07,"76 Church St, San Francisco, CA 94016" -300614,Wired Headphones,1,11.99,12/06/19 13:35,"934 10th St, Boston, MA 02215" -300615,iPhone,1,700,12/24/19 10:05,"322 Maple St, San Francisco, CA 94016" -300615,Apple Airpods Headphones,1,150,12/24/19 10:05,"322 Maple St, San Francisco, CA 94016" -300616,Google Phone,1,600,12/21/19 22:08,"749 Adams St, San Francisco, CA 94016" -300617,Apple Airpods Headphones,1,150,12/14/19 18:45,"767 Church St, Dallas, TX 75001" -300618,Flatscreen TV,1,300,12/05/19 10:40,"849 12th St, Atlanta, GA 30301" -300619,Apple Airpods Headphones,1,150,12/08/19 14:28,"99 Jefferson St, Los Angeles, CA 90001" -300620,Lightning Charging Cable,1,14.95,12/23/19 13:58,"51 Spruce St, Los Angeles, CA 90001" -300621,AAA Batteries (4-pack),2,2.99,12/19/19 19:42,"623 Lakeview St, Portland, OR 97035" -300622,ThinkPad Laptop,1,999.99,12/10/19 19:27,"22 Willow St, Dallas, TX 75001" -300623,USB-C Charging Cable,1,11.95,12/22/19 20:56,"934 River St, New York City, NY 10001" -300624,AAA Batteries (4-pack),1,2.99,12/10/19 07:15,"417 Hickory St, Los Angeles, CA 90001" -300625,Bose SoundSport Headphones,1,99.99,12/05/19 20:27,"580 1st St, Los Angeles, CA 90001" -300626,Lightning Charging Cable,2,14.95,12/07/19 12:22,"686 Meadow St, San Francisco, CA 94016" -300627,34in Ultrawide Monitor,1,379.99,12/24/19 15:00,"798 Highland St, Seattle, WA 98101" -300628,AA Batteries (4-pack),1,3.84,12/14/19 18:55,"528 Ridge St, Boston, MA 02215" -300629,Flatscreen TV,1,300,12/16/19 20:38,"119 Cedar St, Dallas, TX 75001" -300630,Vareebadd Phone,1,400,12/23/19 14:38,"416 Johnson St, New York City, NY 10001" -300631,Flatscreen TV,1,300,12/23/19 12:48,"920 Dogwood St, Dallas, TX 75001" -300632,20in Monitor,1,109.99,12/13/19 17:29,"583 Lake St, Boston, MA 02215" -300633,Lightning Charging Cable,1,14.95,12/21/19 17:59,"907 Spruce St, Boston, MA 02215" -300634,USB-C Charging Cable,1,11.95,12/29/19 13:40,"718 Dogwood St, Austin, TX 73301" -300635,Lightning Charging Cable,1,14.95,12/12/19 12:28,"468 Dogwood St, San Francisco, CA 94016" -300636,USB-C Charging Cable,1,11.95,12/09/19 07:04,"504 1st St, New York City, NY 10001" -300637,AAA Batteries (4-pack),1,2.99,12/25/19 12:31,"126 Wilson St, Austin, TX 73301" -300638,USB-C Charging Cable,1,11.95,12/22/19 09:44,"349 Cherry St, Austin, TX 73301" -300639,USB-C Charging Cable,1,11.95,12/04/19 01:25,"131 Center St, Los Angeles, CA 90001" -300640,Bose SoundSport Headphones,1,99.99,12/11/19 12:10,"591 Meadow St, Atlanta, GA 30301" -300641,Flatscreen TV,1,300,12/20/19 11:45,"919 11th St, Los Angeles, CA 90001" -300642,Flatscreen TV,1,300,12/28/19 19:08,"841 6th St, Boston, MA 02215" -300643,27in FHD Monitor,1,149.99,12/28/19 10:37,"759 Maple St, Boston, MA 02215" -300644,Bose SoundSport Headphones,1,99.99,12/14/19 12:03,"922 Main St, Austin, TX 73301" -300645,Lightning Charging Cable,1,14.95,12/28/19 22:58,"996 4th St, San Francisco, CA 94016" -300646,Google Phone,1,600,12/28/19 22:14,"244 Maple St, Seattle, WA 98101" -300647,27in FHD Monitor,1,149.99,12/08/19 13:39,"845 Washington St, Boston, MA 02215" -300648,AA Batteries (4-pack),3,3.84,12/10/19 23:53,"103 Wilson St, Los Angeles, CA 90001" -300649,Lightning Charging Cable,1,14.95,12/16/19 21:29,"529 Jackson St, Los Angeles, CA 90001" -300650,20in Monitor,1,109.99,12/14/19 20:33,"516 Main St, Atlanta, GA 30301" -300651,Apple Airpods Headphones,1,150,12/21/19 01:55,"633 Spruce St, San Francisco, CA 94016" -300652,USB-C Charging Cable,1,11.95,12/26/19 20:15,"991 13th St, Atlanta, GA 30301" -300653,27in FHD Monitor,1,149.99,12/25/19 16:49,"796 Meadow St, San Francisco, CA 94016" -300654,USB-C Charging Cable,1,11.95,12/31/19 22:38,"679 Center St, Los Angeles, CA 90001" -300655,Bose SoundSport Headphones,1,99.99,12/03/19 00:04,"431 Madison St, San Francisco, CA 94016" -300656,AAA Batteries (4-pack),2,2.99,12/25/19 19:17,"134 Adams St, Los Angeles, CA 90001" -300657,USB-C Charging Cable,2,11.95,12/03/19 20:23,"173 1st St, Boston, MA 02215" -300658,Lightning Charging Cable,1,14.95,12/17/19 22:43,"755 Walnut St, Boston, MA 02215" -300659,iPhone,1,700,12/11/19 22:58,"781 South St, San Francisco, CA 94016" -300659,Lightning Charging Cable,1,14.95,12/11/19 22:58,"781 South St, San Francisco, CA 94016" -300660,Apple Airpods Headphones,1,150,12/30/19 20:55,"454 Jackson St, Austin, TX 73301" -300661,USB-C Charging Cable,1,11.95,12/22/19 20:05,"799 5th St, San Francisco, CA 94016" -300662,USB-C Charging Cable,1,11.95,12/08/19 22:14,"288 Main St, Los Angeles, CA 90001" -300663,LG Washing Machine,1,600.0,12/17/19 01:49,"708 Church St, San Francisco, CA 94016" -300664,AA Batteries (4-pack),1,3.84,12/17/19 15:59,"72 1st St, Atlanta, GA 30301" -300665,27in FHD Monitor,1,149.99,12/03/19 23:38,"695 River St, Austin, TX 73301" -300666,Bose SoundSport Headphones,1,99.99,12/17/19 19:33,"796 4th St, Atlanta, GA 30301" -300667,USB-C Charging Cable,1,11.95,12/13/19 19:15,"511 Spruce St, Boston, MA 02215" -300668,27in 4K Gaming Monitor,1,389.99,12/30/19 14:42,"191 Johnson St, San Francisco, CA 94016" -300669,iPhone,1,700,12/24/19 00:17,"745 Maple St, Boston, MA 02215" -300670,AA Batteries (4-pack),1,3.84,12/02/19 16:16,"485 Johnson St, Los Angeles, CA 90001" -300671,Apple Airpods Headphones,1,150,12/02/19 18:05,"548 Lake St, Boston, MA 02215" -300672,Lightning Charging Cable,1,14.95,12/29/19 22:11,"354 12th St, Los Angeles, CA 90001" -300673,iPhone,1,700,12/18/19 19:18,"236 Madison St, Los Angeles, CA 90001" -300673,Apple Airpods Headphones,1,150,12/18/19 19:18,"236 Madison St, Los Angeles, CA 90001" -300674,Macbook Pro Laptop,1,1700,12/28/19 17:27,"771 Jackson St, Atlanta, GA 30301" -300675,AA Batteries (4-pack),1,3.84,12/05/19 16:59,"191 2nd St, Los Angeles, CA 90001" -300676,AA Batteries (4-pack),1,3.84,12/31/19 17:03,"847 4th St, Los Angeles, CA 90001" -300677,USB-C Charging Cable,1,11.95,12/07/19 17:36,"815 River St, New York City, NY 10001" -300678,Apple Airpods Headphones,1,150,12/08/19 09:21,"298 Hickory St, San Francisco, CA 94016" -300679,AA Batteries (4-pack),1,3.84,12/29/19 18:57,"184 Dogwood St, New York City, NY 10001" -300680,Apple Airpods Headphones,1,150,12/27/19 21:06,"940 6th St, Los Angeles, CA 90001" -300681,Lightning Charging Cable,1,14.95,12/16/19 19:27,"658 Jackson St, Atlanta, GA 30301" -300682,Macbook Pro Laptop,1,1700,12/24/19 11:20,"764 Center St, Dallas, TX 75001" -300683,Vareebadd Phone,1,400,12/27/19 11:01,"841 Cedar St, San Francisco, CA 94016" -300683,USB-C Charging Cable,1,11.95,12/27/19 11:01,"841 Cedar St, San Francisco, CA 94016" -300683,Wired Headphones,1,11.99,12/27/19 11:01,"841 Cedar St, San Francisco, CA 94016" -300684,USB-C Charging Cable,1,11.95,12/14/19 22:55,"282 Dogwood St, San Francisco, CA 94016" -300685,Apple Airpods Headphones,1,150,12/13/19 20:54,"95 Meadow St, Seattle, WA 98101" -300686,LG Dryer,1,600.0,12/30/19 13:31,"420 10th St, Dallas, TX 75001" -300687,AA Batteries (4-pack),1,3.84,12/07/19 22:05,"952 Hill St, New York City, NY 10001" -300688,Lightning Charging Cable,1,14.95,12/30/19 11:57,"553 Lake St, New York City, NY 10001" -300689,Apple Airpods Headphones,1,150,12/01/19 16:43,"948 Adams St, Los Angeles, CA 90001" -300690,Vareebadd Phone,1,400,12/28/19 09:36,"562 Jefferson St, Los Angeles, CA 90001" -300691,USB-C Charging Cable,1,11.95,12/10/19 11:57,"39 Spruce St, Atlanta, GA 30301" -300692,Bose SoundSport Headphones,1,99.99,12/27/19 09:30,"887 River St, Austin, TX 73301" -300693,Bose SoundSport Headphones,1,99.99,12/22/19 15:02,"183 Willow St, New York City, NY 10001" -300694,LG Washing Machine,1,600.0,12/15/19 02:08,"157 14th St, Los Angeles, CA 90001" -300695,Bose SoundSport Headphones,1,99.99,12/25/19 17:07,"48 Cedar St, Atlanta, GA 30301" -300696,Apple Airpods Headphones,1,150,12/16/19 17:41,"734 1st St, Los Angeles, CA 90001" -300697,Lightning Charging Cable,1,14.95,12/19/19 12:19,"560 Main St, Austin, TX 73301" -300698,Wired Headphones,1,11.99,12/28/19 16:58,"779 Willow St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -300699,27in FHD Monitor,1,149.99,12/07/19 14:38,"989 Sunset St, New York City, NY 10001" -300700,AAA Batteries (4-pack),1,2.99,12/14/19 14:53,"706 Maple St, San Francisco, CA 94016" -300701,AAA Batteries (4-pack),1,2.99,12/13/19 17:45,"82 North St, Los Angeles, CA 90001" -300702,USB-C Charging Cable,1,11.95,12/11/19 16:38,"152 South St, Boston, MA 02215" -300703,27in 4K Gaming Monitor,1,389.99,12/12/19 20:16,"767 Pine St, Boston, MA 02215" -300704,Lightning Charging Cable,1,14.95,12/12/19 22:10,"435 West St, Dallas, TX 75001" -300705,Wired Headphones,3,11.99,12/18/19 03:04,"570 Madison St, Dallas, TX 75001" -300706,27in FHD Monitor,1,149.99,12/21/19 12:43,"421 Wilson St, Seattle, WA 98101" -300707,Wired Headphones,1,11.99,12/06/19 17:18,"801 7th St, Portland, OR 97035" -300708,USB-C Charging Cable,1,11.95,12/21/19 02:07,"473 Hickory St, Boston, MA 02215" -300709,Wired Headphones,1,11.99,12/30/19 15:06,"844 Lincoln St, Los Angeles, CA 90001" -300710,USB-C Charging Cable,1,11.95,12/03/19 16:58,"420 Lake St, Portland, OR 97035" -300711,27in FHD Monitor,1,149.99,12/22/19 10:00,"262 Hickory St, Portland, OR 97035" -300712,AA Batteries (4-pack),1,3.84,12/16/19 14:36,"542 Ridge St, New York City, NY 10001" -300713,34in Ultrawide Monitor,1,379.99,12/22/19 20:55,"264 Church St, Portland, OR 97035" -300714,iPhone,1,700,12/12/19 18:48,"898 Maple St, Dallas, TX 75001" -300715,Bose SoundSport Headphones,1,99.99,12/23/19 18:28,"745 Main St, New York City, NY 10001" -300716,Wired Headphones,1,11.99,12/26/19 10:32,"398 2nd St, Seattle, WA 98101" -300717,AA Batteries (4-pack),1,3.84,12/08/19 20:24,"877 North St, San Francisco, CA 94016" -300718,Apple Airpods Headphones,1,150,12/14/19 14:26,"846 Sunset St, San Francisco, CA 94016" -300719,ThinkPad Laptop,1,999.99,12/14/19 17:32,"486 Chestnut St, Dallas, TX 75001" -300719,Vareebadd Phone,1,400,12/14/19 17:32,"486 Chestnut St, Dallas, TX 75001" -300720,34in Ultrawide Monitor,1,379.99,12/06/19 22:24,"86 6th St, New York City, NY 10001" -300721,AAA Batteries (4-pack),1,2.99,12/21/19 10:45,"121 Ridge St, San Francisco, CA 94016" -300722,USB-C Charging Cable,1,11.95,12/02/19 02:34,"274 Hickory St, New York City, NY 10001" -300723,Lightning Charging Cable,1,14.95,12/05/19 20:35,"768 Cherry St, New York City, NY 10001" -300724,Lightning Charging Cable,1,14.95,12/05/19 10:41,"704 Lincoln St, Seattle, WA 98101" -300725,Apple Airpods Headphones,1,150,12/19/19 10:07,"498 Maple St, Seattle, WA 98101" -300726,Wired Headphones,2,11.99,12/29/19 20:39,"562 Dogwood St, New York City, NY 10001" -300727,AAA Batteries (4-pack),1,2.99,12/12/19 18:24,"533 Church St, Austin, TX 73301" -300728,Apple Airpods Headphones,1,150,12/29/19 13:57,"971 11th St, San Francisco, CA 94016" -300729,27in FHD Monitor,1,149.99,12/23/19 10:33,"281 Ridge St, San Francisco, CA 94016" -300730,ThinkPad Laptop,1,999.99,12/07/19 20:53,"534 West St, New York City, NY 10001" -300731,AA Batteries (4-pack),1,3.84,12/15/19 15:53,"216 Dogwood St, San Francisco, CA 94016" -300732,Wired Headphones,2,11.99,12/30/19 08:07,"580 2nd St, Dallas, TX 75001" -300733,AA Batteries (4-pack),2,3.84,12/11/19 16:48,"102 Hickory St, Los Angeles, CA 90001" -300734,Macbook Pro Laptop,1,1700,12/16/19 10:55,"172 Ridge St, Los Angeles, CA 90001" -300735,Wired Headphones,1,11.99,12/25/19 21:34,"688 5th St, Portland, ME 04101" -300736,AAA Batteries (4-pack),1,2.99,12/03/19 20:39,"215 Adams St, Boston, MA 02215" -300737,iPhone,1,700,12/12/19 16:08,"884 Center St, Atlanta, GA 30301" -300738,ThinkPad Laptop,1,999.99,12/25/19 20:15,"146 14th St, Austin, TX 73301" -300739,USB-C Charging Cable,1,11.95,12/16/19 14:34,"751 Washington St, New York City, NY 10001" -300740,Apple Airpods Headphones,1,150,12/30/19 13:15,"641 Jefferson St, San Francisco, CA 94016" -300741,27in 4K Gaming Monitor,1,389.99,12/28/19 13:22,"456 12th St, San Francisco, CA 94016" -300742,Lightning Charging Cable,2,14.95,12/13/19 14:26,"312 Forest St, Portland, OR 97035" -300743,Lightning Charging Cable,1,14.95,12/10/19 07:57,"927 10th St, Atlanta, GA 30301" -300744,USB-C Charging Cable,1,11.95,12/14/19 07:22,"683 Lake St, San Francisco, CA 94016" -300745,AA Batteries (4-pack),1,3.84,12/04/19 10:55,"111 13th St, Los Angeles, CA 90001" -300746,AA Batteries (4-pack),1,3.84,12/11/19 11:02,"147 Church St, Dallas, TX 75001" -300747,AA Batteries (4-pack),1,3.84,12/18/19 10:22,"434 Center St, San Francisco, CA 94016" -300748,Flatscreen TV,1,300,12/06/19 19:23,"11 Lincoln St, Seattle, WA 98101" -300749,USB-C Charging Cable,1,11.95,12/02/19 22:17,"927 Jackson St, San Francisco, CA 94016" -300750,Apple Airpods Headphones,2,150,12/30/19 18:06,"314 1st St, New York City, NY 10001" -300751,AA Batteries (4-pack),1,3.84,12/07/19 17:52,"934 Ridge St, Los Angeles, CA 90001" -300752,20in Monitor,1,109.99,12/30/19 19:36,"303 Maple St, Atlanta, GA 30301" -300753,20in Monitor,1,109.99,12/28/19 22:36,"563 Maple St, Atlanta, GA 30301" -300754,AA Batteries (4-pack),1,3.84,12/14/19 20:47,"150 Center St, San Francisco, CA 94016" -300755,AAA Batteries (4-pack),2,2.99,12/08/19 18:43,"912 11th St, San Francisco, CA 94016" -300756,Macbook Pro Laptop,1,1700,12/10/19 13:11,"35 13th St, Los Angeles, CA 90001" -300757,USB-C Charging Cable,1,11.95,12/07/19 09:02,"205 Dogwood St, Austin, TX 73301" -300758,LG Washing Machine,1,600.0,12/22/19 19:39,"287 Cherry St, San Francisco, CA 94016" -300759,20in Monitor,1,109.99,01/01/20 00:14,"193 5th St, Austin, TX 73301" -300760,Macbook Pro Laptop,1,1700,12/16/19 21:45,"724 Lakeview St, Boston, MA 02215" -300761,iPhone,1,700,12/16/19 21:15,"524 Hill St, New York City, NY 10001" -300762,AA Batteries (4-pack),1,3.84,12/06/19 17:56,"339 River St, Portland, OR 97035" -300763,Lightning Charging Cable,1,14.95,12/02/19 17:29,"214 Forest St, Portland, OR 97035" -300764,Wired Headphones,1,11.99,12/15/19 09:53,"525 Washington St, Seattle, WA 98101" -300765,Apple Airpods Headphones,1,150,12/28/19 09:42,"350 Lincoln St, Los Angeles, CA 90001" -300766,Google Phone,1,600,12/29/19 07:45,"787 Cedar St, Dallas, TX 75001" -300766,USB-C Charging Cable,1,11.95,12/29/19 07:45,"787 Cedar St, Dallas, TX 75001" -300767,USB-C Charging Cable,1,11.95,12/13/19 23:24,"177 Elm St, Boston, MA 02215" -300768,Apple Airpods Headphones,1,150,12/10/19 11:21,"838 12th St, New York City, NY 10001" -300769,Apple Airpods Headphones,1,150,12/21/19 07:00,"45 Park St, Atlanta, GA 30301" -300770,USB-C Charging Cable,1,11.95,12/28/19 14:13,"587 Lincoln St, Austin, TX 73301" -300771,Lightning Charging Cable,1,14.95,12/17/19 11:01,"450 Dogwood St, Boston, MA 02215" -300772,34in Ultrawide Monitor,1,379.99,12/22/19 15:14,"315 Maple St, Boston, MA 02215" -300773,USB-C Charging Cable,1,11.95,12/20/19 13:41,"757 6th St, Los Angeles, CA 90001" -300774,AA Batteries (4-pack),1,3.84,12/25/19 12:58,"390 Wilson St, San Francisco, CA 94016" -300775,Flatscreen TV,1,300,12/17/19 14:20,"66 Church St, Los Angeles, CA 90001" -300776,Apple Airpods Headphones,1,150,12/29/19 17:21,"553 Washington St, Atlanta, GA 30301" -300777,Lightning Charging Cable,1,14.95,12/04/19 19:17,"116 South St, San Francisco, CA 94016" -300778,Lightning Charging Cable,1,14.95,12/09/19 18:04,"990 Meadow St, New York City, NY 10001" -300779,Google Phone,1,600,12/12/19 19:44,"419 Forest St, San Francisco, CA 94016" -300780,Bose SoundSport Headphones,1,99.99,12/26/19 22:15,"160 10th St, San Francisco, CA 94016" -300781,iPhone,1,700,12/14/19 21:12,"994 12th St, New York City, NY 10001" -300782,Lightning Charging Cable,1,14.95,12/05/19 13:45,"412 14th St, New York City, NY 10001" -300783,Lightning Charging Cable,1,14.95,12/06/19 04:41,"908 South St, Boston, MA 02215" -300784,Wired Headphones,1,11.99,12/22/19 13:54,"983 North St, Portland, OR 97035" -300785,Wired Headphones,1,11.99,12/20/19 10:59,"484 1st St, Los Angeles, CA 90001" -300786,Wired Headphones,1,11.99,12/15/19 04:36,"395 Highland St, Seattle, WA 98101" -300787,Lightning Charging Cable,1,14.95,12/29/19 04:59,"211 North St, Atlanta, GA 30301" -300788,AA Batteries (4-pack),2,3.84,12/10/19 11:03,"635 Highland St, New York City, NY 10001" -300789,Apple Airpods Headphones,1,150,12/12/19 16:33,"854 Cherry St, San Francisco, CA 94016" -300790,ThinkPad Laptop,1,999.99,12/12/19 16:42,"367 1st St, San Francisco, CA 94016" -300791,AA Batteries (4-pack),1,3.84,12/18/19 22:47,"6 Chestnut St, San Francisco, CA 94016" -300792,AAA Batteries (4-pack),1,2.99,12/30/19 18:21,"426 Ridge St, Boston, MA 02215" -300793,Bose SoundSport Headphones,1,99.99,12/01/19 14:21,"720 South St, Atlanta, GA 30301" -300794,USB-C Charging Cable,1,11.95,12/26/19 09:42,"198 Sunset St, Dallas, TX 75001" -300795,Flatscreen TV,1,300,12/19/19 05:21,"440 River St, Austin, TX 73301" -300796,AAA Batteries (4-pack),1,2.99,12/14/19 09:30,"821 South St, Dallas, TX 75001" -300797,27in FHD Monitor,1,149.99,12/31/19 09:48,"854 Dogwood St, Atlanta, GA 30301" -300798,Bose SoundSport Headphones,1,99.99,12/14/19 10:02,"53 Johnson St, Austin, TX 73301" -300799,USB-C Charging Cable,1,11.95,12/24/19 13:26,"892 Adams St, Los Angeles, CA 90001" -300800,AA Batteries (4-pack),1,3.84,12/17/19 11:00,"17 Elm St, Austin, TX 73301" -300801,Apple Airpods Headphones,1,150,12/20/19 13:30,"395 7th St, Atlanta, GA 30301" -300802,Lightning Charging Cable,1,14.95,12/13/19 11:56,"209 5th St, Los Angeles, CA 90001" -300803,Lightning Charging Cable,1,14.95,12/16/19 11:26,"555 Church St, San Francisco, CA 94016" -300804,Apple Airpods Headphones,1,150,12/20/19 19:03,"620 Ridge St, New York City, NY 10001" -300805,Wired Headphones,1,11.99,12/24/19 22:58,"554 West St, Dallas, TX 75001" -300806,Bose SoundSport Headphones,1,99.99,12/30/19 14:06,"272 2nd St, Boston, MA 02215" -300807,Bose SoundSport Headphones,1,99.99,12/10/19 21:07,"142 10th St, New York City, NY 10001" -300808,Lightning Charging Cable,1,14.95,12/02/19 19:43,"474 Center St, San Francisco, CA 94016" -300809,34in Ultrawide Monitor,1,379.99,12/21/19 15:35,"849 Forest St, New York City, NY 10001" -300810,Bose SoundSport Headphones,1,99.99,12/28/19 09:10,"15 Adams St, San Francisco, CA 94016" -300811,AAA Batteries (4-pack),1,2.99,12/09/19 19:41,"536 10th St, Boston, MA 02215" -300812,27in 4K Gaming Monitor,1,389.99,12/16/19 11:11,"120 Johnson St, Dallas, TX 75001" -300813,AA Batteries (4-pack),2,3.84,12/24/19 11:51,"35 2nd St, San Francisco, CA 94016" -300814,Bose SoundSport Headphones,1,99.99,12/17/19 10:57,"429 9th St, Los Angeles, CA 90001" -300815,Apple Airpods Headphones,1,150,12/24/19 18:41,"362 Spruce St, Boston, MA 02215" -300816,34in Ultrawide Monitor,1,379.99,12/31/19 19:16,"344 2nd St, San Francisco, CA 94016" -300817,AA Batteries (4-pack),3,3.84,12/03/19 15:42,"457 11th St, Los Angeles, CA 90001" -300818,Macbook Pro Laptop,1,1700,12/09/19 17:02,"172 Jackson St, New York City, NY 10001" -300819,USB-C Charging Cable,1,11.95,12/30/19 13:28,"339 14th St, Seattle, WA 98101" -300820,USB-C Charging Cable,1,11.95,12/08/19 09:48,"785 Spruce St, Boston, MA 02215" -300821,Wired Headphones,1,11.99,12/22/19 19:15,"671 14th St, Los Angeles, CA 90001" -300822,27in 4K Gaming Monitor,1,389.99,12/10/19 18:52,"832 Church St, Austin, TX 73301" -300823,Wired Headphones,1,11.99,12/15/19 12:51,"270 Hickory St, Atlanta, GA 30301" -300824,Flatscreen TV,1,300,12/09/19 18:58,"760 Lakeview St, Seattle, WA 98101" -300825,Wired Headphones,1,11.99,12/03/19 14:41,"265 1st St, San Francisco, CA 94016" -300826,ThinkPad Laptop,1,999.99,12/16/19 16:33,"108 Forest St, Seattle, WA 98101" -300827,Apple Airpods Headphones,1,150,12/23/19 18:38,"1 Elm St, New York City, NY 10001" -300828,Wired Headphones,1,11.99,12/20/19 14:57,"54 Madison St, Los Angeles, CA 90001" -300829,Lightning Charging Cable,1,14.95,12/23/19 18:02,"807 Highland St, Boston, MA 02215" -300830,Lightning Charging Cable,1,14.95,12/29/19 19:48,"606 Adams St, New York City, NY 10001" -300831,Macbook Pro Laptop,1,1700,12/09/19 11:04,"857 2nd St, Seattle, WA 98101" -300832,34in Ultrawide Monitor,1,379.99,12/26/19 19:46,"738 10th St, Seattle, WA 98101" -300833,Wired Headphones,1,11.99,12/10/19 19:02,"834 Walnut St, San Francisco, CA 94016" -300834,iPhone,1,700,12/08/19 17:37,"682 2nd St, San Francisco, CA 94016" -300835,Google Phone,1,600,12/10/19 07:56,"170 11th St, Atlanta, GA 30301" -300835,Bose SoundSport Headphones,1,99.99,12/10/19 07:56,"170 11th St, Atlanta, GA 30301" -300835,Wired Headphones,1,11.99,12/10/19 07:56,"170 11th St, Atlanta, GA 30301" -300836,AA Batteries (4-pack),4,3.84,12/06/19 19:33,"403 Meadow St, Portland, OR 97035" -300837,USB-C Charging Cable,1,11.95,12/10/19 16:23,"402 Willow St, Boston, MA 02215" -300838,AA Batteries (4-pack),1,3.84,12/15/19 13:59,"679 Cherry St, Boston, MA 02215" -300839,Lightning Charging Cable,1,14.95,12/25/19 19:55,"166 8th St, New York City, NY 10001" -300840,Wired Headphones,1,11.99,12/26/19 14:30,"837 South St, Seattle, WA 98101" -300841,Lightning Charging Cable,1,14.95,12/27/19 21:13,"613 13th St, San Francisco, CA 94016" -300842,Bose SoundSport Headphones,1,99.99,12/24/19 21:44,"996 Wilson St, San Francisco, CA 94016" -300843,AAA Batteries (4-pack),2,2.99,12/22/19 19:40,"725 Spruce St, New York City, NY 10001" -300844,USB-C Charging Cable,1,11.95,12/06/19 18:45,"729 Pine St, Dallas, TX 75001" -300845,Google Phone,1,600,12/13/19 20:02,"866 Park St, San Francisco, CA 94016" -300846,ThinkPad Laptop,1,999.99,12/16/19 16:59,"326 Ridge St, Boston, MA 02215" -300847,Lightning Charging Cable,1,14.95,12/08/19 08:11,"340 8th St, Los Angeles, CA 90001" -300848,Wired Headphones,2,11.99,12/08/19 13:48,"110 13th St, New York City, NY 10001" -300849,Lightning Charging Cable,1,14.95,12/04/19 21:31,"66 Washington St, New York City, NY 10001" -300850,Apple Airpods Headphones,1,150,12/31/19 08:54,"657 8th St, Boston, MA 02215" -300851,20in Monitor,1,109.99,12/12/19 12:53,"550 Cherry St, San Francisco, CA 94016" -300852,Wired Headphones,1,11.99,12/19/19 19:18,"257 River St, Atlanta, GA 30301" -300853,Bose SoundSport Headphones,1,99.99,12/27/19 14:33,"247 Adams St, Boston, MA 02215" -300854,Apple Airpods Headphones,1,150,12/06/19 18:33,"269 8th St, New York City, NY 10001" -300855,Wired Headphones,1,11.99,12/03/19 18:24,"457 4th St, Boston, MA 02215" -300856,Wired Headphones,1,11.99,12/11/19 21:44,"442 10th St, Los Angeles, CA 90001" -300857,iPhone,1,700,12/01/19 21:13,"74 Walnut St, Austin, TX 73301" -300857,Lightning Charging Cable,1,14.95,12/01/19 21:13,"74 Walnut St, Austin, TX 73301" -300858,AAA Batteries (4-pack),1,2.99,12/20/19 20:00,"839 Wilson St, Dallas, TX 75001" -300859,Wired Headphones,1,11.99,12/29/19 14:21,"159 Meadow St, Dallas, TX 75001" -300860,USB-C Charging Cable,1,11.95,12/03/19 23:41,"128 Washington St, Dallas, TX 75001" -300861,Lightning Charging Cable,1,14.95,12/14/19 05:38,"10 1st St, Dallas, TX 75001" -300862,Bose SoundSport Headphones,1,99.99,12/04/19 12:50,"568 Sunset St, San Francisco, CA 94016" -300863,Apple Airpods Headphones,1,150,12/28/19 18:13,"625 Chestnut St, Austin, TX 73301" -300864,Lightning Charging Cable,1,14.95,12/05/19 21:43,"444 Cedar St, San Francisco, CA 94016" -300865,Lightning Charging Cable,1,14.95,12/27/19 22:35,"145 Pine St, Portland, OR 97035" -300866,AA Batteries (4-pack),3,3.84,12/28/19 10:21,"294 14th St, San Francisco, CA 94016" -300867,AA Batteries (4-pack),1,3.84,12/26/19 08:58,"142 Walnut St, New York City, NY 10001" -300868,27in 4K Gaming Monitor,1,389.99,12/08/19 10:01,"570 Center St, Seattle, WA 98101" -300869,Wired Headphones,1,11.99,12/08/19 19:56,"644 Madison St, San Francisco, CA 94016" -300870,AA Batteries (4-pack),1,3.84,12/13/19 08:21,"529 Lincoln St, Austin, TX 73301" -300871,20in Monitor,1,109.99,12/02/19 10:22,"438 Johnson St, Los Angeles, CA 90001" -300872,Lightning Charging Cable,1,14.95,12/15/19 01:37,"72 River St, Boston, MA 02215" -300873,Wired Headphones,1,11.99,12/09/19 21:43,"689 9th St, New York City, NY 10001" -300874,27in 4K Gaming Monitor,1,389.99,12/25/19 18:19,"788 Adams St, San Francisco, CA 94016" -300875,ThinkPad Laptop,1,999.99,12/27/19 23:08,"684 River St, Los Angeles, CA 90001" -300875,Bose SoundSport Headphones,1,99.99,12/27/19 23:08,"684 River St, Los Angeles, CA 90001" -300876,Lightning Charging Cable,1,14.95,12/25/19 14:04,"853 10th St, Seattle, WA 98101" -300877,iPhone,1,700,12/13/19 10:21,"685 4th St, San Francisco, CA 94016" -300877,Lightning Charging Cable,1,14.95,12/13/19 10:21,"685 4th St, San Francisco, CA 94016" -300878,Wired Headphones,1,11.99,12/26/19 20:28,"556 Willow St, San Francisco, CA 94016" -300879,Lightning Charging Cable,1,14.95,12/15/19 21:43,"156 Jackson St, New York City, NY 10001" -300880,USB-C Charging Cable,2,11.95,12/14/19 15:27,"978 Maple St, Seattle, WA 98101" -300881,Flatscreen TV,1,300,12/04/19 09:27,"487 River St, New York City, NY 10001" -300882,AAA Batteries (4-pack),1,2.99,12/03/19 13:48,"697 Main St, San Francisco, CA 94016" -300883,Apple Airpods Headphones,1,150,12/17/19 08:26,"948 Park St, Austin, TX 73301" -300884,Wired Headphones,1,11.99,12/22/19 05:49,"745 Maple St, San Francisco, CA 94016" -300885,AA Batteries (4-pack),1,3.84,12/24/19 19:35,"821 Jackson St, Portland, OR 97035" -300886,Apple Airpods Headphones,1,150,12/28/19 07:19,"767 6th St, Los Angeles, CA 90001" -300887,AAA Batteries (4-pack),3,2.99,12/22/19 11:08,"827 9th St, Los Angeles, CA 90001" -300888,AAA Batteries (4-pack),1,2.99,12/26/19 13:13,"834 River St, Los Angeles, CA 90001" -300889,AAA Batteries (4-pack),1,2.99,12/22/19 10:30,"990 13th St, San Francisco, CA 94016" -300890,Apple Airpods Headphones,1,150,12/27/19 18:02,"623 5th St, Boston, MA 02215" -300891,AA Batteries (4-pack),3,3.84,12/08/19 11:05,"450 Adams St, New York City, NY 10001" -300892,USB-C Charging Cable,1,11.95,12/20/19 10:02,"546 Lincoln St, Los Angeles, CA 90001" -300893,27in FHD Monitor,1,149.99,12/14/19 15:44,"446 11th St, San Francisco, CA 94016" -300894,20in Monitor,1,109.99,12/30/19 19:50,"363 Washington St, San Francisco, CA 94016" -300895,Lightning Charging Cable,2,14.95,12/03/19 15:11,"359 Meadow St, Portland, OR 97035" -300896,ThinkPad Laptop,1,999.99,12/07/19 21:06,"560 Highland St, Dallas, TX 75001" -300897,AAA Batteries (4-pack),1,2.99,12/31/19 10:16,"404 Johnson St, San Francisco, CA 94016" -300898,USB-C Charging Cable,1,11.95,12/15/19 21:47,"568 9th St, San Francisco, CA 94016" -300899,Wired Headphones,1,11.99,12/20/19 15:12,"628 10th St, Dallas, TX 75001" -300900,AA Batteries (4-pack),3,3.84,12/12/19 13:22,"472 Johnson St, Seattle, WA 98101" -300901,Apple Airpods Headphones,1,150,12/03/19 16:58,"414 Elm St, Portland, ME 04101" -300902,Wired Headphones,1,11.99,12/08/19 23:55,"922 Willow St, Los Angeles, CA 90001" -300903,ThinkPad Laptop,1,999.99,12/09/19 07:30,"402 Elm St, Portland, OR 97035" -300904,20in Monitor,1,109.99,12/15/19 23:21,"26 Maple St, Austin, TX 73301" -300905,Google Phone,1,600,12/07/19 21:21,"815 Lake St, Seattle, WA 98101" -300906,USB-C Charging Cable,1,11.95,12/13/19 09:25,"710 13th St, Boston, MA 02215" -300907,AAA Batteries (4-pack),1,2.99,12/27/19 15:05,"303 Chestnut St, San Francisco, CA 94016" -300908,ThinkPad Laptop,1,999.99,12/12/19 17:22,"300 Adams St, Boston, MA 02215" -300909,AAA Batteries (4-pack),1,2.99,12/15/19 19:06,"210 Cherry St, New York City, NY 10001" -300910,27in 4K Gaming Monitor,1,389.99,12/02/19 15:49,"945 Cedar St, Los Angeles, CA 90001" -300911,AA Batteries (4-pack),1,3.84,12/31/19 19:45,"1 Center St, Boston, MA 02215" -300912,AA Batteries (4-pack),1,3.84,12/20/19 15:05,"93 11th St, New York City, NY 10001" -300913,Lightning Charging Cable,1,14.95,12/18/19 15:34,"282 Pine St, Boston, MA 02215" -300914,AA Batteries (4-pack),1,3.84,12/31/19 14:11,"463 13th St, San Francisco, CA 94016" -300915,20in Monitor,1,109.99,12/24/19 02:36,"338 11th St, Atlanta, GA 30301" -300916,27in 4K Gaming Monitor,1,389.99,12/14/19 20:17,"174 Pine St, Dallas, TX 75001" -300917,AAA Batteries (4-pack),2,2.99,12/09/19 07:26,"258 6th St, Dallas, TX 75001" -300918,AAA Batteries (4-pack),1,2.99,12/16/19 20:07,"903 Walnut St, Los Angeles, CA 90001" -300919,Apple Airpods Headphones,1,150,12/25/19 14:18,"972 Church St, Seattle, WA 98101" -300920,34in Ultrawide Monitor,1,379.99,12/17/19 13:36,"126 North St, San Francisco, CA 94016" -300921,AA Batteries (4-pack),1,3.84,12/16/19 16:59,"521 Pine St, Boston, MA 02215" -300922,USB-C Charging Cable,1,11.95,12/18/19 13:50,"917 Chestnut St, Dallas, TX 75001" -300923,Bose SoundSport Headphones,1,99.99,12/12/19 16:37,"788 2nd St, New York City, NY 10001" -300924,Macbook Pro Laptop,1,1700,12/07/19 10:22,"258 6th St, Portland, OR 97035" -300925,Wired Headphones,1,11.99,12/22/19 19:36,"646 5th St, Austin, TX 73301" -300926,Vareebadd Phone,1,400,12/13/19 11:48,"510 12th St, Atlanta, GA 30301" -300927,Macbook Pro Laptop,1,1700,12/31/19 14:36,"148 Lake St, Seattle, WA 98101" -300928,34in Ultrawide Monitor,1,379.99,12/24/19 19:15,"207 Maple St, Atlanta, GA 30301" -300929,ThinkPad Laptop,1,999.99,12/04/19 10:32,"568 10th St, Los Angeles, CA 90001" -300930,Lightning Charging Cable,1,14.95,12/22/19 17:41,"891 Jackson St, Seattle, WA 98101" -300931,Lightning Charging Cable,1,14.95,12/09/19 11:44,"61 Forest St, Boston, MA 02215" -300932,34in Ultrawide Monitor,1,379.99,12/23/19 21:24,"680 Adams St, New York City, NY 10001" -300933,Wired Headphones,1,11.99,12/17/19 14:56,"391 River St, Austin, TX 73301" -300934,Bose SoundSport Headphones,1,99.99,12/21/19 05:15,"716 Jackson St, San Francisco, CA 94016" -300935,Lightning Charging Cable,1,14.95,12/10/19 11:19,"225 West St, Austin, TX 73301" -300936,Apple Airpods Headphones,1,150,12/17/19 10:36,"605 Willow St, Los Angeles, CA 90001" -300937,iPhone,1,700,12/11/19 19:32,"827 1st St, New York City, NY 10001" -300938,Wired Headphones,1,11.99,12/07/19 19:46,"778 Spruce St, Seattle, WA 98101" -300939,Macbook Pro Laptop,1,1700,12/31/19 07:01,"948 11th St, Boston, MA 02215" -300940,AAA Batteries (4-pack),2,2.99,12/04/19 18:36,"9 Hill St, Atlanta, GA 30301" -300941,AA Batteries (4-pack),1,3.84,12/20/19 06:52,"597 Forest St, New York City, NY 10001" -300942,27in FHD Monitor,1,149.99,12/06/19 10:53,"435 Cherry St, San Francisco, CA 94016" -300943,AA Batteries (4-pack),2,3.84,12/08/19 19:52,"905 North St, Austin, TX 73301" -300944,Lightning Charging Cable,1,14.95,12/23/19 16:28,"334 Spruce St, New York City, NY 10001" -300945,Bose SoundSport Headphones,1,99.99,12/12/19 11:28,"463 Main St, Dallas, TX 75001" -300946,AAA Batteries (4-pack),1,2.99,12/13/19 22:44,"533 Washington St, Portland, OR 97035" -300947,27in 4K Gaming Monitor,1,389.99,12/03/19 09:58,"535 Lincoln St, San Francisco, CA 94016" -300948,AAA Batteries (4-pack),1,2.99,12/30/19 11:55,"512 Spruce St, Boston, MA 02215" -300949,AA Batteries (4-pack),1,3.84,12/22/19 07:22,"913 Cherry St, San Francisco, CA 94016" -300950,AAA Batteries (4-pack),1,2.99,12/23/19 20:27,"706 Chestnut St, San Francisco, CA 94016" -300951,AAA Batteries (4-pack),1,2.99,12/16/19 08:27,"797 Lake St, Portland, OR 97035" -300952,AA Batteries (4-pack),2,3.84,12/03/19 13:48,"725 Center St, Seattle, WA 98101" -300953,USB-C Charging Cable,2,11.95,12/10/19 14:27,"607 Meadow St, Boston, MA 02215" -300954,Bose SoundSport Headphones,1,99.99,12/15/19 08:11,"815 Willow St, Atlanta, GA 30301" -300955,Macbook Pro Laptop,1,1700,12/20/19 19:36,"751 7th St, Los Angeles, CA 90001" -300956,AAA Batteries (4-pack),1,2.99,12/18/19 14:32,"126 Washington St, Atlanta, GA 30301" -300956,Wired Headphones,1,11.99,12/18/19 14:32,"126 Washington St, Atlanta, GA 30301" -300957,AAA Batteries (4-pack),1,2.99,12/21/19 11:35,"102 North St, Portland, ME 04101" -300958,Lightning Charging Cable,1,14.95,12/06/19 18:34,"855 South St, Dallas, TX 75001" -300959,Bose SoundSport Headphones,1,99.99,12/20/19 18:21,"173 Walnut St, San Francisco, CA 94016" -300960,AA Batteries (4-pack),1,3.84,12/11/19 21:59,"826 Sunset St, Seattle, WA 98101" -300961,AAA Batteries (4-pack),2,2.99,12/16/19 19:58,"715 8th St, San Francisco, CA 94016" -300962,Apple Airpods Headphones,1,150,12/28/19 23:12,"794 South St, Los Angeles, CA 90001" -300963,USB-C Charging Cable,1,11.95,12/06/19 20:30,"864 Center St, Atlanta, GA 30301" -300964,USB-C Charging Cable,1,11.95,12/30/19 18:44,"186 North St, Atlanta, GA 30301" -300965,27in 4K Gaming Monitor,1,389.99,12/30/19 10:39,"938 Pine St, Portland, OR 97035" -300966,Apple Airpods Headphones,1,150,12/10/19 12:50,"8 River St, San Francisco, CA 94016" -300967,Wired Headphones,1,11.99,12/03/19 14:24,"564 Spruce St, Boston, MA 02215" -300968,USB-C Charging Cable,1,11.95,12/09/19 07:13,"437 Hill St, Austin, TX 73301" -300969,27in 4K Gaming Monitor,1,389.99,12/14/19 21:26,"696 Wilson St, Los Angeles, CA 90001" -300970,AA Batteries (4-pack),1,3.84,12/31/19 18:16,"5 5th St, Austin, TX 73301" -300971,34in Ultrawide Monitor,1,379.99,12/23/19 17:25,"24 13th St, San Francisco, CA 94016" -300972,20in Monitor,1,109.99,12/27/19 13:13,"564 Pine St, Los Angeles, CA 90001" -300973,Bose SoundSport Headphones,1,99.99,12/29/19 14:44,"124 South St, Boston, MA 02215" -300974,USB-C Charging Cable,1,11.95,12/24/19 18:38,"412 Meadow St, Austin, TX 73301" -300975,27in 4K Gaming Monitor,1,389.99,12/03/19 20:45,"972 Lakeview St, Los Angeles, CA 90001" -300976,Apple Airpods Headphones,1,150,12/07/19 15:01,"597 4th St, Atlanta, GA 30301" -300977,ThinkPad Laptop,1,999.99,12/26/19 21:03,"787 8th St, Los Angeles, CA 90001" -300978,Lightning Charging Cable,1,14.95,12/18/19 10:25,"824 West St, San Francisco, CA 94016" -300979,Lightning Charging Cable,1,14.95,12/15/19 10:52,"409 Sunset St, San Francisco, CA 94016" -300980,27in FHD Monitor,1,149.99,12/01/19 06:16,"959 Ridge St, San Francisco, CA 94016" -300981,Bose SoundSport Headphones,1,99.99,12/05/19 16:27,"79 1st St, San Francisco, CA 94016" -300982,AAA Batteries (4-pack),1,2.99,12/27/19 14:27,"110 7th St, Boston, MA 02215" -300983,AA Batteries (4-pack),3,3.84,12/30/19 15:20,"14 Hill St, New York City, NY 10001" -300984,USB-C Charging Cable,1,11.95,12/11/19 06:27,"389 1st St, Seattle, WA 98101" -300985,AA Batteries (4-pack),2,3.84,12/17/19 10:54,"75 Spruce St, San Francisco, CA 94016" -300986,AA Batteries (4-pack),3,3.84,12/17/19 21:11,"366 7th St, New York City, NY 10001" -300987,Lightning Charging Cable,1,14.95,12/09/19 20:41,"261 Willow St, San Francisco, CA 94016" -300987,Google Phone,1,600,12/09/19 20:41,"261 Willow St, San Francisco, CA 94016" -300988,27in FHD Monitor,1,149.99,12/06/19 22:09,"838 West St, New York City, NY 10001" -300989,Vareebadd Phone,1,400,12/03/19 10:22,"617 Sunset St, Los Angeles, CA 90001" -300990,Flatscreen TV,1,300,12/05/19 18:53,"628 Park St, New York City, NY 10001" -300991,27in FHD Monitor,1,149.99,12/01/19 20:41,"599 Wilson St, Portland, OR 97035" -300992,Apple Airpods Headphones,1,150,12/07/19 19:24,"341 Adams St, Dallas, TX 75001" -300993,AA Batteries (4-pack),1,3.84,12/01/19 12:00,"570 Willow St, San Francisco, CA 94016" -300994,34in Ultrawide Monitor,1,379.99,12/23/19 10:06,"720 Lincoln St, Boston, MA 02215" -300995,Apple Airpods Headphones,1,150,12/16/19 06:25,"229 Main St, Austin, TX 73301" -300996,Wired Headphones,1,11.99,12/30/19 22:38,"846 Adams St, San Francisco, CA 94016" -300997,34in Ultrawide Monitor,1,379.99,12/09/19 15:08,"468 Spruce St, Atlanta, GA 30301" -300998,34in Ultrawide Monitor,1,379.99,12/30/19 19:44,"674 Meadow St, Seattle, WA 98101" -300999,27in FHD Monitor,1,149.99,12/03/19 17:27,"485 Hill St, San Francisco, CA 94016" -301000,Flatscreen TV,1,300,12/16/19 19:18,"868 Spruce St, Seattle, WA 98101" -301001,AAA Batteries (4-pack),1,2.99,12/06/19 10:23,"455 12th St, New York City, NY 10001" -301002,27in 4K Gaming Monitor,1,389.99,12/22/19 14:50,"823 Johnson St, Seattle, WA 98101" -301003,AAA Batteries (4-pack),3,2.99,12/24/19 10:46,"675 Meadow St, Seattle, WA 98101" -301004,Google Phone,1,600,12/19/19 14:27,"147 1st St, San Francisco, CA 94016" -301004,USB-C Charging Cable,1,11.95,12/19/19 14:27,"147 1st St, San Francisco, CA 94016" -301005,Flatscreen TV,1,300,12/19/19 12:44,"440 Adams St, Los Angeles, CA 90001" -301006,AA Batteries (4-pack),1,3.84,12/24/19 10:59,"850 14th St, Los Angeles, CA 90001" -301007,Bose SoundSport Headphones,1,99.99,12/31/19 08:26,"686 2nd St, Boston, MA 02215" -301008,AA Batteries (4-pack),1,3.84,12/02/19 19:22,"374 Main St, Los Angeles, CA 90001" -301009,Wired Headphones,1,11.99,12/13/19 20:58,"812 River St, Los Angeles, CA 90001" -301010,Apple Airpods Headphones,1,150,12/17/19 04:54,"279 Sunset St, Boston, MA 02215" -301011,Lightning Charging Cable,1,14.95,12/28/19 19:32,"556 4th St, Seattle, WA 98101" -301012,27in 4K Gaming Monitor,1,389.99,12/27/19 15:17,"377 Lakeview St, Dallas, TX 75001" -301013,20in Monitor,1,109.99,12/16/19 16:59,"812 Jackson St, Austin, TX 73301" -301014,AA Batteries (4-pack),2,3.84,12/02/19 07:11,"536 8th St, San Francisco, CA 94016" -301015,AAA Batteries (4-pack),2,2.99,12/07/19 17:18,"410 River St, Austin, TX 73301" -301016,27in FHD Monitor,1,149.99,12/13/19 18:22,"995 Forest St, Dallas, TX 75001" -301017,Wired Headphones,1,11.99,12/15/19 18:49,"625 2nd St, San Francisco, CA 94016" -301018,AA Batteries (4-pack),1,3.84,12/02/19 14:51,"746 Pine St, Los Angeles, CA 90001" -301019,AAA Batteries (4-pack),1,2.99,12/18/19 12:27,"153 Washington St, Boston, MA 02215" -301020,Wired Headphones,1,11.99,12/06/19 11:25,"239 Cedar St, Los Angeles, CA 90001" -301021,iPhone,1,700,12/20/19 17:22,"729 West St, Los Angeles, CA 90001" -301022,34in Ultrawide Monitor,1,379.99,12/19/19 11:54,"487 Sunset St, Los Angeles, CA 90001" -301023,USB-C Charging Cable,1,11.95,12/19/19 13:15,"723 11th St, Dallas, TX 75001" -301024,27in FHD Monitor,1,149.99,12/08/19 18:45,"370 Cherry St, Boston, MA 02215" -301025,Apple Airpods Headphones,1,150,12/24/19 00:40,"488 Willow St, Portland, OR 97035" -301026,AA Batteries (4-pack),1,3.84,12/07/19 20:29,"158 Jefferson St, New York City, NY 10001" -301027,USB-C Charging Cable,1,11.95,12/04/19 12:12,"8 Jefferson St, Atlanta, GA 30301" -301028,AA Batteries (4-pack),1,3.84,12/20/19 21:04,"145 12th St, Austin, TX 73301" -301029,Wired Headphones,1,11.99,12/15/19 15:04,"524 Pine St, Los Angeles, CA 90001" -301030,AA Batteries (4-pack),1,3.84,12/14/19 19:20,"250 Lakeview St, Atlanta, GA 30301" -301031,Apple Airpods Headphones,1,150,12/05/19 13:59,"769 Sunset St, New York City, NY 10001" -301032,Apple Airpods Headphones,1,150,12/13/19 16:39,"155 Maple St, San Francisco, CA 94016" -301033,Wired Headphones,1,11.99,12/19/19 11:22,"737 Wilson St, New York City, NY 10001" -301034,iPhone,1,700,12/14/19 08:29,"777 Jefferson St, New York City, NY 10001" -301034,Wired Headphones,1,11.99,12/14/19 08:29,"777 Jefferson St, New York City, NY 10001" -301035,Lightning Charging Cable,1,14.95,12/09/19 08:54,"234 14th St, San Francisco, CA 94016" -301036,USB-C Charging Cable,2,11.95,12/01/19 13:28,"883 Spruce St, San Francisco, CA 94016" -301037,ThinkPad Laptop,1,999.99,12/01/19 21:39,"818 Main St, San Francisco, CA 94016" -301038,Bose SoundSport Headphones,1,99.99,12/29/19 08:13,"107 Chestnut St, San Francisco, CA 94016" -301039,Lightning Charging Cable,1,14.95,12/15/19 21:36,"416 Walnut St, Boston, MA 02215" -301040,27in FHD Monitor,1,149.99,12/26/19 23:44,"960 West St, Dallas, TX 75001" -301041,Bose SoundSport Headphones,1,99.99,12/20/19 22:02,"922 Washington St, Seattle, WA 98101" -301042,27in 4K Gaming Monitor,1,389.99,12/08/19 09:07,"837 Chestnut St, Boston, MA 02215" -301043,Lightning Charging Cable,1,14.95,12/15/19 10:47,"522 Forest St, Boston, MA 02215" -,,,,, -301044,USB-C Charging Cable,1,11.95,12/13/19 15:46,"879 Jefferson St, Atlanta, GA 30301" -301045,Flatscreen TV,1,300,12/15/19 20:45,"720 Pine St, San Francisco, CA 94016" -301046,AAA Batteries (4-pack),1,2.99,12/02/19 10:40,"472 8th St, Seattle, WA 98101" -301047,AA Batteries (4-pack),1,3.84,12/01/19 23:16,"113 Sunset St, San Francisco, CA 94016" -301048,Lightning Charging Cable,1,14.95,12/07/19 09:34,"889 Maple St, San Francisco, CA 94016" -301049,27in FHD Monitor,1,149.99,12/03/19 21:10,"512 Pine St, Seattle, WA 98101" -301050,iPhone,1,700,12/10/19 11:58,"310 Pine St, San Francisco, CA 94016" -301051,Lightning Charging Cable,1,14.95,12/28/19 22:21,"404 Willow St, Boston, MA 02215" -301052,AA Batteries (4-pack),1,3.84,12/22/19 07:28,"45 Maple St, New York City, NY 10001" -301053,USB-C Charging Cable,1,11.95,12/07/19 20:48,"69 14th St, Portland, OR 97035" -301054,Apple Airpods Headphones,1,150,12/22/19 22:33,"535 Walnut St, Dallas, TX 75001" -301055,ThinkPad Laptop,1,999.99,12/26/19 09:17,"475 Ridge St, Seattle, WA 98101" -301056,AA Batteries (4-pack),1,3.84,12/05/19 12:57,"591 Main St, Austin, TX 73301" -301057,AA Batteries (4-pack),1,3.84,12/19/19 22:51,"675 Walnut St, San Francisco, CA 94016" -301058,AA Batteries (4-pack),1,3.84,12/26/19 19:16,"987 Lakeview St, Seattle, WA 98101" -301059,Vareebadd Phone,1,400,12/03/19 19:55,"64 10th St, Austin, TX 73301" -301060,Lightning Charging Cable,1,14.95,12/12/19 09:58,"601 5th St, Boston, MA 02215" -301061,34in Ultrawide Monitor,1,379.99,12/24/19 11:12,"676 Willow St, Atlanta, GA 30301" -301062,AA Batteries (4-pack),2,3.84,12/06/19 20:46,"788 Washington St, Seattle, WA 98101" -301063,Bose SoundSport Headphones,1,99.99,12/29/19 15:09,"148 Pine St, Dallas, TX 75001" -301064,Lightning Charging Cable,1,14.95,12/04/19 22:56,"349 Meadow St, Los Angeles, CA 90001" -301065,Apple Airpods Headphones,1,150,12/05/19 20:31,"210 South St, Portland, ME 04101" -301066,AA Batteries (4-pack),1,3.84,12/02/19 21:51,"121 Cherry St, Austin, TX 73301" -301067,27in 4K Gaming Monitor,1,389.99,12/02/19 18:33,"6 Center St, New York City, NY 10001" -301068,Wired Headphones,1,11.99,12/29/19 13:45,"136 Pine St, Atlanta, GA 30301" -301069,Bose SoundSport Headphones,1,99.99,12/12/19 01:02,"458 8th St, Austin, TX 73301" -301070,AA Batteries (4-pack),1,3.84,12/15/19 17:09,"960 Park St, Austin, TX 73301" -301071,Apple Airpods Headphones,1,150,12/21/19 10:12,"22 Jefferson St, Portland, OR 97035" -301072,Wired Headphones,1,11.99,12/27/19 01:32,"22 Willow St, San Francisco, CA 94016" -301072,34in Ultrawide Monitor,1,379.99,12/27/19 01:32,"22 Willow St, San Francisco, CA 94016" -301073,27in 4K Gaming Monitor,1,389.99,12/15/19 09:50,"82 Spruce St, San Francisco, CA 94016" -301074,Lightning Charging Cable,1,14.95,12/06/19 10:06,"708 Maple St, New York City, NY 10001" -301075,27in FHD Monitor,1,149.99,12/17/19 17:25,"75 12th St, Los Angeles, CA 90001" -301076,20in Monitor,1,109.99,12/22/19 11:27,"145 Wilson St, Austin, TX 73301" -301077,Lightning Charging Cable,1,14.95,12/14/19 20:25,"201 Spruce St, Boston, MA 02215" -301078,ThinkPad Laptop,1,999.99,12/25/19 00:52,"257 Willow St, Dallas, TX 75001" -301079,Bose SoundSport Headphones,1,99.99,12/02/19 14:38,"499 River St, Boston, MA 02215" -301080,34in Ultrawide Monitor,1,379.99,12/01/19 22:02,"562 Elm St, Los Angeles, CA 90001" -301081,Macbook Pro Laptop,1,1700,12/30/19 03:39,"752 14th St, Los Angeles, CA 90001" -301082,AA Batteries (4-pack),3,3.84,12/26/19 16:53,"925 Elm St, New York City, NY 10001" -301083,27in 4K Gaming Monitor,1,389.99,12/08/19 07:02,"634 Ridge St, Boston, MA 02215" -301084,Bose SoundSport Headphones,1,99.99,12/28/19 13:01,"260 Lake St, Los Angeles, CA 90001" -301085,AAA Batteries (4-pack),1,2.99,12/29/19 09:33,"113 13th St, Boston, MA 02215" -301086,USB-C Charging Cable,1,11.95,12/02/19 20:08,"94 Madison St, Dallas, TX 75001" -301087,USB-C Charging Cable,1,11.95,12/28/19 18:29,"820 14th St, San Francisco, CA 94016" -301088,Lightning Charging Cable,1,14.95,12/22/19 09:21,"987 West St, Portland, OR 97035" -301089,Bose SoundSport Headphones,1,99.99,12/15/19 18:59,"442 Chestnut St, San Francisco, CA 94016" -301090,AA Batteries (4-pack),2,3.84,12/09/19 12:01,"667 Main St, Portland, OR 97035" -301091,20in Monitor,1,109.99,12/22/19 22:12,"246 Maple St, Atlanta, GA 30301" -301092,AAA Batteries (4-pack),1,2.99,12/28/19 14:46,"890 14th St, San Francisco, CA 94016" -301093,Flatscreen TV,1,300,12/03/19 17:23,"727 Lake St, San Francisco, CA 94016" -301094,Apple Airpods Headphones,1,150,12/04/19 09:41,"600 Main St, Austin, TX 73301" -301095,34in Ultrawide Monitor,1,379.99,12/19/19 06:47,"946 Forest St, Los Angeles, CA 90001" -301096,ThinkPad Laptop,1,999.99,12/30/19 17:10,"957 12th St, Portland, OR 97035" -301097,AAA Batteries (4-pack),1,2.99,12/18/19 06:53,"93 9th St, San Francisco, CA 94016" -301098,Apple Airpods Headphones,1,150,12/03/19 22:47,"937 North St, Portland, OR 97035" -301099,20in Monitor,1,109.99,12/16/19 07:09,"451 Cherry St, San Francisco, CA 94016" -301100,AAA Batteries (4-pack),1,2.99,12/24/19 10:08,"788 Hill St, New York City, NY 10001" -301101,Apple Airpods Headphones,1,150,12/20/19 13:40,"554 Forest St, Austin, TX 73301" -301101,AAA Batteries (4-pack),1,2.99,12/20/19 13:40,"554 Forest St, Austin, TX 73301" -301102,Apple Airpods Headphones,1,150,12/24/19 13:13,"740 South St, San Francisco, CA 94016" -301103,iPhone,1,700,12/12/19 12:03,"989 Main St, Boston, MA 02215" -301104,AAA Batteries (4-pack),1,2.99,12/11/19 19:04,"87 South St, New York City, NY 10001" -301105,Macbook Pro Laptop,1,1700,12/30/19 17:41,"325 Willow St, Los Angeles, CA 90001" -301106,Macbook Pro Laptop,1,1700,12/22/19 18:02,"811 Chestnut St, Los Angeles, CA 90001" -301107,Lightning Charging Cable,2,14.95,12/05/19 16:22,"958 West St, Portland, ME 04101" -301108,Apple Airpods Headphones,1,150,12/11/19 18:30,"344 Wilson St, Boston, MA 02215" -301109,27in 4K Gaming Monitor,1,389.99,12/06/19 11:38,"476 South St, Los Angeles, CA 90001" -301110,34in Ultrawide Monitor,1,379.99,12/07/19 08:48,"55 Willow St, Boston, MA 02215" -301111,USB-C Charging Cable,1,11.95,12/02/19 00:59,"364 14th St, Atlanta, GA 30301" -301112,27in 4K Gaming Monitor,1,389.99,12/04/19 12:16,"273 Jefferson St, San Francisco, CA 94016" -301113,27in 4K Gaming Monitor,1,389.99,12/27/19 20:16,"217 River St, New York City, NY 10001" -301114,Wired Headphones,1,11.99,12/11/19 14:24,"314 North St, Seattle, WA 98101" -301115,ThinkPad Laptop,1,999.99,12/01/19 13:54,"817 2nd St, Atlanta, GA 30301" -301116,AA Batteries (4-pack),1,3.84,12/10/19 01:16,"545 Sunset St, San Francisco, CA 94016" -301117,20in Monitor,1,109.99,12/22/19 16:03,"688 Elm St, Boston, MA 02215" -301118,Wired Headphones,1,11.99,12/31/19 20:06,"823 Church St, Dallas, TX 75001" -301119,AAA Batteries (4-pack),1,2.99,12/27/19 12:35,"293 North St, San Francisco, CA 94016" -301120,Google Phone,1,600,12/16/19 09:03,"897 11th St, Boston, MA 02215" -301121,Macbook Pro Laptop,1,1700,12/02/19 10:39,"253 5th St, Boston, MA 02215" -301122,Macbook Pro Laptop,1,1700,12/06/19 09:55,"767 Main St, Boston, MA 02215" -301123,Macbook Pro Laptop,1,1700,12/09/19 20:21,"433 Walnut St, San Francisco, CA 94016" -301124,Flatscreen TV,1,300,12/30/19 10:31,"617 Elm St, Los Angeles, CA 90001" -301125,AAA Batteries (4-pack),1,2.99,12/23/19 16:34,"873 Forest St, Boston, MA 02215" -301126,Apple Airpods Headphones,1,150,12/07/19 23:33,"254 5th St, Los Angeles, CA 90001" -301127,27in 4K Gaming Monitor,1,389.99,12/16/19 19:15,"791 Main St, San Francisco, CA 94016" -301127,AAA Batteries (4-pack),1,2.99,12/16/19 19:15,"791 Main St, San Francisco, CA 94016" -301128,Wired Headphones,1,11.99,12/04/19 15:00,"783 Spruce St, San Francisco, CA 94016" -301129,Bose SoundSport Headphones,1,99.99,12/11/19 11:27,"784 9th St, San Francisco, CA 94016" -301130,34in Ultrawide Monitor,1,379.99,12/11/19 20:13,"376 Forest St, New York City, NY 10001" -301131,Bose SoundSport Headphones,1,99.99,12/11/19 16:38,"525 4th St, Atlanta, GA 30301" -301132,Vareebadd Phone,1,400,12/21/19 10:32,"889 Adams St, Seattle, WA 98101" -301133,AA Batteries (4-pack),1,3.84,12/27/19 10:05,"941 Lakeview St, Boston, MA 02215" -301134,AA Batteries (4-pack),1,3.84,12/21/19 19:54,"943 North St, San Francisco, CA 94016" -301135,Lightning Charging Cable,1,14.95,12/26/19 22:43,"303 Spruce St, Portland, OR 97035" -301136,USB-C Charging Cable,1,11.95,12/03/19 19:01,"545 Willow St, San Francisco, CA 94016" -301137,Apple Airpods Headphones,1,150,12/17/19 20:51,"8 Hickory St, New York City, NY 10001" -301138,27in FHD Monitor,1,149.99,12/23/19 13:57,"644 Park St, San Francisco, CA 94016" -301139,Apple Airpods Headphones,1,150,12/02/19 09:50,"893 9th St, Dallas, TX 75001" -301140,27in FHD Monitor,1,149.99,12/30/19 19:55,"335 Cherry St, New York City, NY 10001" -301141,Apple Airpods Headphones,1,150,12/22/19 14:02,"647 Meadow St, Boston, MA 02215" -301142,Wired Headphones,1,11.99,12/22/19 21:22,"598 West St, Boston, MA 02215" -301143,20in Monitor,1,109.99,12/30/19 16:56,"74 Walnut St, Los Angeles, CA 90001" -301144,Apple Airpods Headphones,1,150,12/02/19 19:49,"456 North St, Los Angeles, CA 90001" -301145,iPhone,1,700,12/23/19 14:25,"586 12th St, San Francisco, CA 94016" -301146,Bose SoundSport Headphones,1,99.99,12/20/19 10:07,"907 Center St, San Francisco, CA 94016" -301147,AA Batteries (4-pack),1,3.84,12/21/19 11:59,"896 Wilson St, Seattle, WA 98101" -301148,USB-C Charging Cable,1,11.95,12/16/19 00:53,"226 Washington St, Los Angeles, CA 90001" -301149,20in Monitor,1,109.99,12/16/19 18:37,"495 Jefferson St, Boston, MA 02215" -301150,USB-C Charging Cable,1,11.95,12/31/19 13:31,"185 13th St, Atlanta, GA 30301" -301151,AA Batteries (4-pack),1,3.84,12/12/19 09:06,"32 Forest St, Los Angeles, CA 90001" -301152,Wired Headphones,1,11.99,12/12/19 13:28,"183 Lake St, Dallas, TX 75001" -301153,AAA Batteries (4-pack),2,2.99,12/17/19 18:01,"926 5th St, Boston, MA 02215" -301154,USB-C Charging Cable,1,11.95,12/08/19 12:30,"271 2nd St, San Francisco, CA 94016" -301155,Wired Headphones,3,11.99,12/27/19 18:25,"854 Cherry St, Los Angeles, CA 90001" -301156,USB-C Charging Cable,1,11.95,12/15/19 12:16,"652 Center St, Dallas, TX 75001" -301157,Macbook Pro Laptop,1,1700,12/10/19 13:15,"316 Lincoln St, New York City, NY 10001" -301158,27in 4K Gaming Monitor,1,389.99,12/15/19 10:20,"540 10th St, Atlanta, GA 30301" -301159,34in Ultrawide Monitor,1,379.99,12/08/19 11:05,"639 Jackson St, Seattle, WA 98101" -301160,USB-C Charging Cable,1,11.95,12/11/19 05:56,"557 West St, Boston, MA 02215" -301161,Wired Headphones,1,11.99,12/17/19 11:38,"424 Forest St, San Francisco, CA 94016" -301162,AA Batteries (4-pack),1,3.84,12/12/19 16:01,"359 Main St, Seattle, WA 98101" -301163,LG Dryer,1,600.0,12/01/19 19:35,"396 7th St, San Francisco, CA 94016" -301164,Lightning Charging Cable,1,14.95,12/29/19 11:39,"203 Chestnut St, Austin, TX 73301" -301165,iPhone,1,700,12/24/19 11:51,"734 Lake St, New York City, NY 10001" -301165,Lightning Charging Cable,1,14.95,12/24/19 11:51,"734 Lake St, New York City, NY 10001" -301166,Flatscreen TV,1,300,12/25/19 16:34,"124 Lake St, Los Angeles, CA 90001" -301167,USB-C Charging Cable,2,11.95,12/14/19 20:37,"243 Lincoln St, Los Angeles, CA 90001" -301168,Bose SoundSport Headphones,1,99.99,12/03/19 20:34,"423 Main St, Seattle, WA 98101" -301169,Bose SoundSport Headphones,1,99.99,12/10/19 08:41,"999 Forest St, Boston, MA 02215" -301170,Bose SoundSport Headphones,1,99.99,12/05/19 14:14,"541 Wilson St, Los Angeles, CA 90001" -301171,Apple Airpods Headphones,1,150,12/07/19 21:55,"18 6th St, San Francisco, CA 94016" -301172,AA Batteries (4-pack),1,3.84,12/21/19 17:44,"179 Center St, New York City, NY 10001" -301173,Lightning Charging Cable,1,14.95,12/25/19 11:03,"519 Johnson St, New York City, NY 10001" -301174,Lightning Charging Cable,1,14.95,12/28/19 08:59,"283 Main St, Boston, MA 02215" -301175,Bose SoundSport Headphones,1,99.99,12/23/19 11:53,"230 Forest St, San Francisco, CA 94016" -301176,Wired Headphones,1,11.99,12/13/19 12:57,"126 Dogwood St, Seattle, WA 98101" -301177,AA Batteries (4-pack),2,3.84,12/13/19 23:00,"970 Chestnut St, Atlanta, GA 30301" -301178,Vareebadd Phone,1,400,12/21/19 15:06,"277 Jackson St, Atlanta, GA 30301" -301178,USB-C Charging Cable,1,11.95,12/21/19 15:06,"277 Jackson St, Atlanta, GA 30301" -301179,USB-C Charging Cable,1,11.95,12/09/19 14:27,"783 5th St, Atlanta, GA 30301" -301180,27in FHD Monitor,1,149.99,12/12/19 10:26,"231 Center St, Atlanta, GA 30301" -301181,Apple Airpods Headphones,1,150,12/08/19 21:21,"377 1st St, Boston, MA 02215" -301182,Apple Airpods Headphones,1,150,12/17/19 01:42,"271 8th St, Seattle, WA 98101" -301183,20in Monitor,1,109.99,12/05/19 15:51,"417 6th St, Seattle, WA 98101" -301184,Apple Airpods Headphones,1,150,12/07/19 16:43,"203 Forest St, Atlanta, GA 30301" -301185,AA Batteries (4-pack),1,3.84,12/11/19 08:34,"540 Wilson St, San Francisco, CA 94016" -301186,Apple Airpods Headphones,1,150,12/13/19 19:20,"361 Park St, Austin, TX 73301" -301186,Google Phone,1,600,12/13/19 19:20,"361 Park St, Austin, TX 73301" -301187,AAA Batteries (4-pack),1,2.99,12/18/19 19:31,"841 Lincoln St, Portland, OR 97035" -301188,20in Monitor,1,109.99,12/28/19 18:46,"294 5th St, Seattle, WA 98101" -301189,Google Phone,1,600,12/15/19 07:24,"273 Center St, San Francisco, CA 94016" -301190,20in Monitor,1,109.99,12/08/19 18:05,"182 West St, San Francisco, CA 94016" -301191,Google Phone,1,600,12/17/19 11:27,"821 Center St, Los Angeles, CA 90001" -301192,Wired Headphones,1,11.99,12/02/19 12:21,"90 Cedar St, New York City, NY 10001" -301193,Lightning Charging Cable,1,14.95,12/02/19 22:03,"593 Forest St, Portland, OR 97035" -301194,Flatscreen TV,1,300,12/11/19 14:27,"576 Dogwood St, Austin, TX 73301" -301195,USB-C Charging Cable,1,11.95,12/26/19 13:30,"500 Meadow St, Atlanta, GA 30301" -301196,Lightning Charging Cable,1,14.95,12/26/19 16:18,"102 Maple St, Boston, MA 02215" -301197,ThinkPad Laptop,1,999.99,12/12/19 16:49,"621 Lincoln St, San Francisco, CA 94016" -301198,34in Ultrawide Monitor,1,379.99,12/29/19 14:13,"396 Meadow St, Atlanta, GA 30301" -301199,AAA Batteries (4-pack),1,2.99,12/12/19 21:45,"978 Chestnut St, San Francisco, CA 94016" -301200,Apple Airpods Headphones,1,150,12/24/19 18:23,"167 8th St, Seattle, WA 98101" -301201,AAA Batteries (4-pack),1,2.99,12/29/19 10:21,"552 Jefferson St, Dallas, TX 75001" -301202,iPhone,1,700,12/10/19 17:28,"19 7th St, San Francisco, CA 94016" -301203,34in Ultrawide Monitor,1,379.99,12/17/19 20:31,"659 River St, New York City, NY 10001" -301204,AAA Batteries (4-pack),1,2.99,12/14/19 21:26,"207 Forest St, San Francisco, CA 94016" -301205,USB-C Charging Cable,1,11.95,12/17/19 08:23,"125 West St, Los Angeles, CA 90001" -301206,iPhone,1,700,12/18/19 16:28,"261 5th St, Los Angeles, CA 90001" -301207,AA Batteries (4-pack),1,3.84,12/09/19 11:02,"652 Adams St, Boston, MA 02215" -301208,USB-C Charging Cable,1,11.95,12/29/19 18:09,"959 Walnut St, Boston, MA 02215" -301209,27in FHD Monitor,1,149.99,12/26/19 08:08,"325 Highland St, Seattle, WA 98101" -301210,Wired Headphones,1,11.99,12/30/19 16:00,"270 Forest St, Boston, MA 02215" -301211,USB-C Charging Cable,1,11.95,12/25/19 19:01,"148 Walnut St, New York City, NY 10001" -301212,Wired Headphones,1,11.99,12/06/19 10:08,"218 Wilson St, San Francisco, CA 94016" -301213,USB-C Charging Cable,1,11.95,12/21/19 14:30,"494 Hill St, San Francisco, CA 94016" -301214,Lightning Charging Cable,1,14.95,12/06/19 11:41,"48 Dogwood St, Austin, TX 73301" -301215,Wired Headphones,1,11.99,12/02/19 09:30,"731 10th St, San Francisco, CA 94016" -301216,27in 4K Gaming Monitor,1,389.99,12/07/19 16:54,"250 14th St, Atlanta, GA 30301" -301217,USB-C Charging Cable,2,11.95,12/21/19 12:59,"965 West St, Austin, TX 73301" -301218,Lightning Charging Cable,1,14.95,12/23/19 23:13,"80 Cherry St, San Francisco, CA 94016" -301219,Lightning Charging Cable,1,14.95,12/14/19 18:07,"833 7th St, Austin, TX 73301" -301220,Lightning Charging Cable,2,14.95,12/07/19 18:33,"441 Sunset St, New York City, NY 10001" -301221,AAA Batteries (4-pack),1,2.99,12/20/19 11:03,"51 Meadow St, Seattle, WA 98101" -301222,27in 4K Gaming Monitor,1,389.99,12/25/19 20:26,"722 9th St, Boston, MA 02215" -301223,AA Batteries (4-pack),1,3.84,12/05/19 08:20,"404 Dogwood St, San Francisco, CA 94016" -301224,Bose SoundSport Headphones,1,99.99,12/20/19 10:31,"172 Meadow St, Boston, MA 02215" -301225,Bose SoundSport Headphones,1,99.99,12/04/19 10:55,"918 7th St, Los Angeles, CA 90001" -301226,Lightning Charging Cable,1,14.95,12/10/19 10:10,"226 South St, Portland, OR 97035" -301227,AAA Batteries (4-pack),2,2.99,12/02/19 21:07,"121 4th St, Boston, MA 02215" -301228,Lightning Charging Cable,1,14.95,12/30/19 10:11,"284 Spruce St, New York City, NY 10001" -301229,Bose SoundSport Headphones,1,99.99,12/07/19 21:08,"505 Madison St, San Francisco, CA 94016" -301230,AAA Batteries (4-pack),1,2.99,12/28/19 11:34,"787 4th St, Boston, MA 02215" -301231,20in Monitor,1,109.99,12/08/19 21:01,"49 Meadow St, Los Angeles, CA 90001" -301232,USB-C Charging Cable,1,11.95,12/26/19 08:16,"515 11th St, Boston, MA 02215" -301233,Apple Airpods Headphones,1,150,12/17/19 14:45,"875 Chestnut St, Boston, MA 02215" -301234,27in 4K Gaming Monitor,1,389.99,12/12/19 07:37,"815 13th St, San Francisco, CA 94016" -301235,Wired Headphones,1,11.99,12/17/19 11:45,"323 Park St, Portland, OR 97035" -301236,Wired Headphones,1,11.99,12/17/19 22:54,"46 Park St, Los Angeles, CA 90001" -301237,AAA Batteries (4-pack),1,2.99,12/04/19 10:17,"253 Lincoln St, New York City, NY 10001" -301238,AA Batteries (4-pack),1,3.84,12/13/19 23:55,"399 Madison St, Atlanta, GA 30301" -301239,Lightning Charging Cable,1,14.95,12/20/19 14:00,"502 Elm St, San Francisco, CA 94016" -301240,Lightning Charging Cable,1,14.95,12/23/19 01:13,"811 Chestnut St, Boston, MA 02215" -301241,USB-C Charging Cable,1,11.95,12/11/19 19:37,"408 Hickory St, Boston, MA 02215" -301242,Wired Headphones,1,11.99,12/03/19 21:58,"279 Dogwood St, Austin, TX 73301" -301243,Wired Headphones,1,11.99,12/07/19 15:30,"381 1st St, Austin, TX 73301" -301244,Wired Headphones,1,11.99,12/15/19 19:47,"598 Lincoln St, San Francisco, CA 94016" -301245,Apple Airpods Headphones,1,150,12/14/19 17:29,"766 Maple St, Seattle, WA 98101" -301246,AA Batteries (4-pack),2,3.84,12/09/19 07:25,"871 Lake St, Atlanta, GA 30301" -301246,Apple Airpods Headphones,1,150,12/09/19 07:25,"871 Lake St, Atlanta, GA 30301" -301247,Macbook Pro Laptop,1,1700,12/03/19 20:02,"308 Maple St, Austin, TX 73301" -301248,Flatscreen TV,1,300,12/18/19 23:48,"748 Madison St, San Francisco, CA 94016" -301249,Vareebadd Phone,1,400,12/18/19 19:05,"475 Cherry St, San Francisco, CA 94016" -301250,Lightning Charging Cable,1,14.95,12/29/19 14:16,"189 Cherry St, Atlanta, GA 30301" -301251,Apple Airpods Headphones,1,150,12/25/19 18:26,"766 11th St, Dallas, TX 75001" -301252,AA Batteries (4-pack),1,3.84,12/22/19 12:41,"958 Ridge St, Los Angeles, CA 90001" -301253,iPhone,1,700,12/01/19 14:59,"267 8th St, Boston, MA 02215" -301254,AA Batteries (4-pack),1,3.84,12/17/19 19:24,"97 Lakeview St, Boston, MA 02215" -301255,ThinkPad Laptop,1,999.99,12/24/19 23:09,"24 Center St, Los Angeles, CA 90001" -301256,Wired Headphones,1,11.99,12/10/19 14:59,"846 14th St, Portland, ME 04101" -301257,Lightning Charging Cable,2,14.95,12/14/19 12:46,"514 Madison St, Los Angeles, CA 90001" -301258,20in Monitor,1,109.99,12/10/19 09:29,"541 Highland St, San Francisco, CA 94016" -301259,Lightning Charging Cable,1,14.95,12/13/19 23:47,"975 River St, San Francisco, CA 94016" -301260,34in Ultrawide Monitor,1,379.99,12/23/19 12:33,"753 West St, Los Angeles, CA 90001" -301261,Apple Airpods Headphones,1,150,12/01/19 20:08,"402 North St, Portland, ME 04101" -301262,27in FHD Monitor,1,149.99,12/08/19 11:22,"829 Johnson St, Los Angeles, CA 90001" -301263,AAA Batteries (4-pack),1,2.99,12/13/19 17:39,"965 Washington St, New York City, NY 10001" -301264,AA Batteries (4-pack),1,3.84,12/01/19 21:57,"768 Dogwood St, Atlanta, GA 30301" -301265,AAA Batteries (4-pack),1,2.99,12/07/19 12:06,"821 Ridge St, Dallas, TX 75001" -301266,AA Batteries (4-pack),1,3.84,12/05/19 08:41,"228 7th St, San Francisco, CA 94016" -301267,34in Ultrawide Monitor,1,379.99,12/13/19 19:36,"429 Washington St, Atlanta, GA 30301" -301268,AAA Batteries (4-pack),1,2.99,12/15/19 04:54,"180 Cedar St, San Francisco, CA 94016" -301269,Bose SoundSport Headphones,1,99.99,12/28/19 12:58,"417 Main St, Los Angeles, CA 90001" -301270,AAA Batteries (4-pack),1,2.99,12/11/19 12:27,"669 Washington St, Seattle, WA 98101" -301271,AAA Batteries (4-pack),4,2.99,12/07/19 14:10,"609 Center St, San Francisco, CA 94016" -301272,AA Batteries (4-pack),1,3.84,12/19/19 11:53,"661 Wilson St, San Francisco, CA 94016" -301273,Macbook Pro Laptop,1,1700,12/17/19 13:22,"345 Jefferson St, New York City, NY 10001" -301274,USB-C Charging Cable,1,11.95,12/29/19 18:33,"447 Spruce St, Dallas, TX 75001" -301275,Apple Airpods Headphones,1,150,12/05/19 09:32,"198 Forest St, Seattle, WA 98101" -301276,Bose SoundSport Headphones,1,99.99,12/20/19 21:36,"718 Main St, San Francisco, CA 94016" -301277,27in FHD Monitor,1,149.99,12/26/19 10:49,"767 Chestnut St, San Francisco, CA 94016" -301278,iPhone,1,700,12/21/19 05:22,"454 Highland St, New York City, NY 10001" -301279,USB-C Charging Cable,1,11.95,12/16/19 09:38,"91 Hill St, Los Angeles, CA 90001" -301280,USB-C Charging Cable,1,11.95,12/02/19 18:19,"18 14th St, Seattle, WA 98101" -301281,USB-C Charging Cable,1,11.95,12/22/19 12:52,"562 Lakeview St, New York City, NY 10001" -301282,AA Batteries (4-pack),1,3.84,12/23/19 11:20,"480 13th St, New York City, NY 10001" -301283,AAA Batteries (4-pack),1,2.99,12/30/19 20:29,"451 10th St, Los Angeles, CA 90001" -301284,AAA Batteries (4-pack),1,2.99,12/14/19 23:41,"655 5th St, Boston, MA 02215" -301285,USB-C Charging Cable,1,11.95,12/14/19 23:19,"277 Willow St, New York City, NY 10001" -301286,Wired Headphones,1,11.99,12/02/19 14:44,"906 Pine St, Los Angeles, CA 90001" -301287,AAA Batteries (4-pack),1,2.99,12/25/19 22:12,"305 West St, Dallas, TX 75001" -,,,,, -301288,Wired Headphones,1,11.99,12/10/19 12:15,"685 Spruce St, San Francisco, CA 94016" -301289,AAA Batteries (4-pack),3,2.99,12/19/19 09:13,"701 South St, San Francisco, CA 94016" -301290,Wired Headphones,2,11.99,12/28/19 11:21,"368 11th St, Boston, MA 02215" -301291,USB-C Charging Cable,1,11.95,12/14/19 11:08,"101 West St, San Francisco, CA 94016" -301292,27in 4K Gaming Monitor,1,389.99,12/24/19 18:02,"877 River St, Los Angeles, CA 90001" -301293,Macbook Pro Laptop,1,1700,12/06/19 12:28,"275 Lakeview St, Boston, MA 02215" -301293,Lightning Charging Cable,1,14.95,12/06/19 12:28,"275 Lakeview St, Boston, MA 02215" -301294,AAA Batteries (4-pack),1,2.99,12/29/19 21:14,"32 Maple St, Portland, OR 97035" -301295,AAA Batteries (4-pack),3,2.99,12/12/19 11:33,"802 Forest St, Atlanta, GA 30301" -301296,Lightning Charging Cable,2,14.95,12/13/19 18:16,"4 9th St, New York City, NY 10001" -301297,USB-C Charging Cable,2,11.95,12/22/19 12:45,"119 Park St, San Francisco, CA 94016" -301298,USB-C Charging Cable,1,11.95,12/22/19 20:34,"941 Jackson St, San Francisco, CA 94016" -301299,34in Ultrawide Monitor,1,379.99,12/10/19 15:27,"87 Elm St, Los Angeles, CA 90001" -301300,27in 4K Gaming Monitor,1,389.99,12/20/19 15:35,"760 11th St, New York City, NY 10001" -301301,AA Batteries (4-pack),1,3.84,12/13/19 10:42,"600 2nd St, Los Angeles, CA 90001" -301302,ThinkPad Laptop,1,999.99,12/21/19 12:32,"140 Madison St, Los Angeles, CA 90001" -301303,USB-C Charging Cable,1,11.95,12/07/19 16:54,"135 Wilson St, New York City, NY 10001" -301304,Wired Headphones,1,11.99,12/10/19 13:27,"558 Jefferson St, San Francisco, CA 94016" -301305,ThinkPad Laptop,1,999.99,12/24/19 21:06,"463 6th St, Dallas, TX 75001" -301306,AA Batteries (4-pack),2,3.84,12/27/19 04:25,"19 Highland St, Austin, TX 73301" -301307,AA Batteries (4-pack),3,3.84,12/14/19 16:35,"450 8th St, New York City, NY 10001" -301308,Lightning Charging Cable,1,14.95,12/21/19 18:43,"257 4th St, Boston, MA 02215" -301309,AA Batteries (4-pack),1,3.84,12/22/19 09:50,"367 11th St, San Francisco, CA 94016" -301310,AAA Batteries (4-pack),1,2.99,12/27/19 14:47,"834 Church St, San Francisco, CA 94016" -301311,Apple Airpods Headphones,1,150,12/02/19 13:28,"250 Sunset St, San Francisco, CA 94016" -301312,AAA Batteries (4-pack),1,2.99,12/17/19 11:16,"952 West St, Austin, TX 73301" -301313,iPhone,1,700,12/11/19 19:04,"6 Forest St, Portland, OR 97035" -301314,27in FHD Monitor,1,149.99,12/03/19 22:08,"785 8th St, New York City, NY 10001" -301315,iPhone,1,700,12/30/19 21:00,"633 Dogwood St, Los Angeles, CA 90001" -301316,AA Batteries (4-pack),1,3.84,12/29/19 03:49,"155 Ridge St, San Francisco, CA 94016" -301317,Bose SoundSport Headphones,1,99.99,12/19/19 19:32,"851 Chestnut St, Seattle, WA 98101" -301318,AA Batteries (4-pack),2,3.84,12/27/19 00:27,"816 9th St, Atlanta, GA 30301" -301319,AAA Batteries (4-pack),1,2.99,12/14/19 10:23,"786 Park St, New York City, NY 10001" -301320,AA Batteries (4-pack),3,3.84,12/28/19 21:10,"327 7th St, Los Angeles, CA 90001" -301321,Apple Airpods Headphones,1,150,12/06/19 00:54,"320 Highland St, New York City, NY 10001" -301322,Bose SoundSport Headphones,1,99.99,12/19/19 22:24,"226 Church St, Los Angeles, CA 90001" -301323,Apple Airpods Headphones,1,150,12/17/19 20:41,"287 1st St, San Francisco, CA 94016" -301324,Bose SoundSport Headphones,1,99.99,12/04/19 15:06,"92 South St, Los Angeles, CA 90001" -301325,AA Batteries (4-pack),1,3.84,12/20/19 11:57,"712 North St, San Francisco, CA 94016" -301326,Lightning Charging Cable,1,14.95,12/19/19 22:54,"788 10th St, Dallas, TX 75001" -301327,Wired Headphones,1,11.99,12/27/19 16:06,"739 Spruce St, San Francisco, CA 94016" -301328,Apple Airpods Headphones,1,150,12/28/19 13:20,"210 8th St, San Francisco, CA 94016" -301329,27in 4K Gaming Monitor,1,389.99,12/10/19 19:24,"313 Adams St, New York City, NY 10001" -301330,Bose SoundSport Headphones,1,99.99,12/02/19 06:29,"344 Hill St, San Francisco, CA 94016" -301331,Wired Headphones,1,11.99,12/04/19 13:42,"380 Lakeview St, San Francisco, CA 94016" -301332,Wired Headphones,1,11.99,12/28/19 20:55,"16 1st St, Dallas, TX 75001" -301333,Lightning Charging Cable,1,14.95,12/09/19 14:38,"922 Willow St, San Francisco, CA 94016" -301334,AA Batteries (4-pack),1,3.84,12/03/19 09:53,"636 Chestnut St, New York City, NY 10001" -301334,USB-C Charging Cable,1,11.95,12/03/19 09:53,"636 Chestnut St, New York City, NY 10001" -301335,Apple Airpods Headphones,1,150,12/12/19 22:21,"624 5th St, Austin, TX 73301" -301336,Vareebadd Phone,1,400,12/18/19 02:05,"176 Center St, Los Angeles, CA 90001" -301336,USB-C Charging Cable,1,11.95,12/18/19 02:05,"176 Center St, Los Angeles, CA 90001" -301337,iPhone,1,700,12/29/19 00:47,"12 6th St, Boston, MA 02215" -301338,Lightning Charging Cable,1,14.95,12/17/19 13:44,"701 Sunset St, San Francisco, CA 94016" -301339,Vareebadd Phone,1,400,12/11/19 21:00,"528 2nd St, San Francisco, CA 94016" -301340,Vareebadd Phone,1,400,12/16/19 15:17,"299 1st St, Boston, MA 02215" -301341,Bose SoundSport Headphones,1,99.99,12/10/19 20:12,"976 7th St, Austin, TX 73301" -301342,USB-C Charging Cable,1,11.95,12/09/19 21:00,"668 5th St, Atlanta, GA 30301" -301343,Bose SoundSport Headphones,1,99.99,12/27/19 09:54,"418 10th St, San Francisco, CA 94016" -301344,AA Batteries (4-pack),1,3.84,12/18/19 21:41,"582 8th St, Boston, MA 02215" -301345,AA Batteries (4-pack),1,3.84,12/24/19 08:20,"34 7th St, Portland, OR 97035" -301346,Lightning Charging Cable,1,14.95,12/01/19 23:14,"796 Chestnut St, San Francisco, CA 94016" -301347,Lightning Charging Cable,2,14.95,12/21/19 22:05,"503 9th St, Los Angeles, CA 90001" -301347,Apple Airpods Headphones,1,150,12/21/19 22:05,"503 9th St, Los Angeles, CA 90001" -301348,Bose SoundSport Headphones,1,99.99,12/18/19 11:36,"562 Sunset St, Los Angeles, CA 90001" -301349,Wired Headphones,1,11.99,12/14/19 14:14,"13 10th St, San Francisco, CA 94016" -301350,Vareebadd Phone,1,400,12/31/19 09:40,"241 West St, Seattle, WA 98101" -301351,Lightning Charging Cable,1,14.95,12/18/19 12:02,"764 10th St, Boston, MA 02215" -301352,Wired Headphones,1,11.99,12/05/19 14:00,"124 Sunset St, San Francisco, CA 94016" -301353,AAA Batteries (4-pack),1,2.99,12/03/19 22:48,"161 Meadow St, Portland, OR 97035" -301354,AAA Batteries (4-pack),1,2.99,12/03/19 22:59,"238 Highland St, Atlanta, GA 30301" -301355,Vareebadd Phone,1,400,12/23/19 17:13,"801 Washington St, Atlanta, GA 30301" -301356,AA Batteries (4-pack),1,3.84,12/02/19 03:49,"964 Dogwood St, Austin, TX 73301" -301357,ThinkPad Laptop,1,999.99,12/17/19 17:30,"578 Cedar St, Boston, MA 02215" -301358,Wired Headphones,1,11.99,12/18/19 16:53,"208 12th St, Los Angeles, CA 90001" -301359,AAA Batteries (4-pack),2,2.99,12/08/19 19:37,"321 5th St, Seattle, WA 98101" -301360,Apple Airpods Headphones,1,150,12/11/19 13:21,"725 5th St, Los Angeles, CA 90001" -301361,Wired Headphones,1,11.99,12/04/19 15:05,"357 13th St, Dallas, TX 75001" -301362,AA Batteries (4-pack),1,3.84,12/03/19 09:04,"394 13th St, Dallas, TX 75001" -301363,AA Batteries (4-pack),1,3.84,12/20/19 20:06,"296 Lake St, Austin, TX 73301" -301364,Wired Headphones,1,11.99,12/10/19 09:55,"186 Chestnut St, Dallas, TX 75001" -301365,Apple Airpods Headphones,1,150,12/27/19 07:45,"855 Hill St, New York City, NY 10001" -301366,Wired Headphones,1,11.99,12/09/19 02:01,"967 Hill St, Dallas, TX 75001" -301367,USB-C Charging Cable,1,11.95,12/07/19 18:56,"727 South St, San Francisco, CA 94016" -301368,Lightning Charging Cable,1,14.95,12/27/19 14:15,"22 River St, Los Angeles, CA 90001" -301369,AAA Batteries (4-pack),2,2.99,12/09/19 21:14,"444 14th St, Portland, OR 97035" -301370,AAA Batteries (4-pack),1,2.99,12/04/19 23:14,"935 Lake St, Boston, MA 02215" -301371,Wired Headphones,1,11.99,12/16/19 23:24,"999 Elm St, San Francisco, CA 94016" -301372,iPhone,1,700,12/31/19 13:41,"41 Highland St, San Francisco, CA 94016" -301373,AA Batteries (4-pack),1,3.84,12/17/19 00:10,"838 14th St, San Francisco, CA 94016" -301374,Bose SoundSport Headphones,1,99.99,12/26/19 18:24,"179 4th St, San Francisco, CA 94016" -301375,AA Batteries (4-pack),1,3.84,12/10/19 20:38,"184 Chestnut St, Atlanta, GA 30301" -301376,Apple Airpods Headphones,1,150,12/22/19 16:58,"953 Walnut St, Los Angeles, CA 90001" -301377,AA Batteries (4-pack),1,3.84,12/04/19 09:16,"303 Pine St, Seattle, WA 98101" -301378,Lightning Charging Cable,1,14.95,12/21/19 12:00,"32 Main St, Atlanta, GA 30301" -301379,ThinkPad Laptop,1,999.99,12/08/19 23:50,"595 8th St, New York City, NY 10001" -301380,Flatscreen TV,1,300,12/11/19 10:35,"19 Dogwood St, Boston, MA 02215" -301381,Flatscreen TV,1,300,12/27/19 12:18,"317 6th St, New York City, NY 10001" -301382,Google Phone,1,600,12/18/19 12:09,"925 Park St, San Francisco, CA 94016" -301382,USB-C Charging Cable,1,11.95,12/18/19 12:09,"925 Park St, San Francisco, CA 94016" -301382,Bose SoundSport Headphones,1,99.99,12/18/19 12:09,"925 Park St, San Francisco, CA 94016" -301383,Bose SoundSport Headphones,1,99.99,12/20/19 21:20,"883 Main St, Atlanta, GA 30301" -301384,AAA Batteries (4-pack),2,2.99,12/31/19 15:51,"98 6th St, Atlanta, GA 30301" -301385,20in Monitor,1,109.99,12/27/19 19:52,"973 Johnson St, Boston, MA 02215" -301386,USB-C Charging Cable,1,11.95,12/12/19 22:55,"870 Jefferson St, Dallas, TX 75001" -301387,AA Batteries (4-pack),2,3.84,12/28/19 09:56,"660 Jefferson St, Los Angeles, CA 90001" -301388,27in FHD Monitor,1,149.99,12/18/19 20:40,"562 Wilson St, Boston, MA 02215" -301389,27in FHD Monitor,1,149.99,12/28/19 10:25,"133 Ridge St, Portland, ME 04101" -301390,Wired Headphones,1,11.99,12/12/19 20:56,"474 Lake St, Atlanta, GA 30301" -301391,27in 4K Gaming Monitor,1,389.99,12/12/19 18:48,"563 Hill St, Seattle, WA 98101" -301392,AAA Batteries (4-pack),1,2.99,12/28/19 18:59,"282 14th St, San Francisco, CA 94016" -301393,AA Batteries (4-pack),2,3.84,12/24/19 15:08,"185 6th St, Seattle, WA 98101" -301394,AA Batteries (4-pack),1,3.84,12/10/19 15:02,"258 13th St, New York City, NY 10001" -301395,LG Dryer,1,600.0,12/12/19 11:13,"310 Cherry St, Boston, MA 02215" -301396,Vareebadd Phone,1,400,12/06/19 20:57,"55 Cedar St, San Francisco, CA 94016" -301397,LG Washing Machine,1,600.0,12/30/19 13:57,"369 Ridge St, Boston, MA 02215" -301398,AA Batteries (4-pack),1,3.84,12/04/19 14:59,"405 Lake St, Boston, MA 02215" -301399,Bose SoundSport Headphones,1,99.99,12/10/19 16:39,"938 Washington St, Atlanta, GA 30301" -301400,ThinkPad Laptop,1,999.99,12/05/19 19:57,"827 Chestnut St, Los Angeles, CA 90001" -301401,Lightning Charging Cable,1,14.95,12/27/19 06:40,"50 North St, Los Angeles, CA 90001" -301402,Apple Airpods Headphones,1,150,12/20/19 13:17,"383 Sunset St, Los Angeles, CA 90001" -301403,AA Batteries (4-pack),2,3.84,12/25/19 08:22,"925 Lincoln St, New York City, NY 10001" -301404,20in Monitor,1,109.99,12/30/19 19:53,"533 Cherry St, Austin, TX 73301" -301405,Bose SoundSport Headphones,1,99.99,12/22/19 06:11,"720 Lincoln St, New York City, NY 10001" -301406,AA Batteries (4-pack),1,3.84,12/24/19 13:23,"685 Cherry St, Dallas, TX 75001" -301407,Apple Airpods Headphones,1,150,12/13/19 14:10,"723 Walnut St, New York City, NY 10001" -301408,Macbook Pro Laptop,1,1700,12/19/19 00:07,"131 Jefferson St, San Francisco, CA 94016" -301409,34in Ultrawide Monitor,1,379.99,12/17/19 19:39,"64 South St, Dallas, TX 75001" -301410,USB-C Charging Cable,1,11.95,12/07/19 10:08,"418 Sunset St, New York City, NY 10001" -301411,27in 4K Gaming Monitor,1,389.99,12/12/19 14:50,"114 Lake St, Boston, MA 02215" -301412,AAA Batteries (4-pack),1,2.99,12/13/19 17:31,"877 North St, New York City, NY 10001" -301413,Lightning Charging Cable,1,14.95,12/03/19 17:51,"507 12th St, San Francisco, CA 94016" -301414,Lightning Charging Cable,1,14.95,12/01/19 11:45,"702 Ridge St, Seattle, WA 98101" -301415,Lightning Charging Cable,1,14.95,12/24/19 16:37,"376 Elm St, Austin, TX 73301" -301416,AAA Batteries (4-pack),1,2.99,12/18/19 11:16,"242 6th St, Los Angeles, CA 90001" -301417,34in Ultrawide Monitor,1,379.99,12/20/19 11:27,"437 Main St, Atlanta, GA 30301" -301418,AA Batteries (4-pack),1,3.84,12/06/19 22:51,"876 Johnson St, Seattle, WA 98101" -301419,Wired Headphones,1,11.99,12/24/19 15:38,"49 Highland St, San Francisco, CA 94016" -301420,Lightning Charging Cable,1,14.95,12/17/19 18:47,"695 Main St, New York City, NY 10001" -301421,LG Dryer,1,600.0,12/18/19 18:32,"662 Park St, Los Angeles, CA 90001" -301422,20in Monitor,1,109.99,12/11/19 11:34,"284 Pine St, Seattle, WA 98101" -301423,Bose SoundSport Headphones,1,99.99,12/05/19 16:48,"370 Lincoln St, Los Angeles, CA 90001" -301424,iPhone,1,700,12/19/19 23:02,"230 South St, Los Angeles, CA 90001" -301425,iPhone,1,700,12/17/19 19:07,"731 2nd St, Boston, MA 02215" -301425,Lightning Charging Cable,1,14.95,12/17/19 19:07,"731 2nd St, Boston, MA 02215" -301426,AAA Batteries (4-pack),3,2.99,12/19/19 08:02,"693 Washington St, San Francisco, CA 94016" -301427,27in FHD Monitor,1,149.99,12/08/19 16:53,"670 11th St, Seattle, WA 98101" -301428,USB-C Charging Cable,1,11.95,12/22/19 20:45,"164 Willow St, New York City, NY 10001" -301429,AAA Batteries (4-pack),1,2.99,12/06/19 11:13,"688 Lincoln St, New York City, NY 10001" -301430,Lightning Charging Cable,1,14.95,12/06/19 23:19,"695 Park St, San Francisco, CA 94016" -301431,Apple Airpods Headphones,1,150,12/01/19 16:32,"82 Chestnut St, San Francisco, CA 94016" -301432,Lightning Charging Cable,1,14.95,12/17/19 14:28,"118 6th St, Atlanta, GA 30301" -301433,Apple Airpods Headphones,1,150,12/20/19 11:53,"570 Forest St, Atlanta, GA 30301" -301434,Bose SoundSport Headphones,1,99.99,12/13/19 10:16,"995 13th St, Los Angeles, CA 90001" -301435,AA Batteries (4-pack),2,3.84,12/20/19 00:30,"984 Chestnut St, New York City, NY 10001" -301436,AA Batteries (4-pack),1,3.84,12/05/19 16:13,"975 Cherry St, New York City, NY 10001" -301437,Lightning Charging Cable,1,14.95,12/27/19 16:24,"115 6th St, Los Angeles, CA 90001" -301438,iPhone,1,700,12/13/19 14:51,"851 Lake St, Los Angeles, CA 90001" -301439,USB-C Charging Cable,1,11.95,12/14/19 23:35,"914 10th St, San Francisco, CA 94016" -301440,Flatscreen TV,1,300,12/21/19 16:31,"296 10th St, Seattle, WA 98101" -301441,AA Batteries (4-pack),1,3.84,12/16/19 15:37,"946 Pine St, San Francisco, CA 94016" -301442,Wired Headphones,3,11.99,12/09/19 13:48,"898 Hickory St, New York City, NY 10001" -301443,AAA Batteries (4-pack),1,2.99,12/18/19 08:04,"491 Main St, Boston, MA 02215" -301444,Macbook Pro Laptop,1,1700,12/22/19 11:28,"742 6th St, New York City, NY 10001" -301445,27in FHD Monitor,1,149.99,12/16/19 16:01,"764 Pine St, Los Angeles, CA 90001" -301446,Google Phone,1,600,12/08/19 22:27,"797 Jefferson St, New York City, NY 10001" -301447,Wired Headphones,1,11.99,12/18/19 10:08,"762 12th St, Seattle, WA 98101" -301448,Lightning Charging Cable,1,14.95,12/15/19 16:50,"266 Sunset St, Portland, OR 97035" -301449,Lightning Charging Cable,1,14.95,12/17/19 23:19,"637 West St, Austin, TX 73301" -301450,Apple Airpods Headphones,1,150,12/23/19 19:39,"804 Church St, New York City, NY 10001" -301451,Bose SoundSport Headphones,1,99.99,12/09/19 22:07,"24 13th St, Austin, TX 73301" -301452,USB-C Charging Cable,1,11.95,12/18/19 12:29,"746 Washington St, Atlanta, GA 30301" -301453,Wired Headphones,2,11.99,12/16/19 11:05,"764 1st St, San Francisco, CA 94016" -301454,Flatscreen TV,1,300,12/12/19 09:22,"708 Cherry St, New York City, NY 10001" -301455,AAA Batteries (4-pack),1,2.99,12/12/19 23:51,"417 Dogwood St, Portland, ME 04101" -301456,Lightning Charging Cable,2,14.95,12/17/19 12:44,"749 14th St, Atlanta, GA 30301" -301457,Apple Airpods Headphones,1,150,12/13/19 22:59,"379 Lakeview St, Los Angeles, CA 90001" -301458,Apple Airpods Headphones,1,150,12/10/19 01:27,"680 Hill St, Boston, MA 02215" -301459,Wired Headphones,1,11.99,12/31/19 20:11,"429 Willow St, Austin, TX 73301" -301460,Apple Airpods Headphones,1,150,12/25/19 19:15,"294 6th St, Atlanta, GA 30301" -301461,USB-C Charging Cable,1,11.95,12/20/19 20:26,"184 Jackson St, New York City, NY 10001" -301462,Macbook Pro Laptop,1,1700,12/28/19 18:36,"208 Adams St, San Francisco, CA 94016" -301463,AA Batteries (4-pack),5,3.84,12/28/19 13:02,"792 Jefferson St, San Francisco, CA 94016" -301464,Lightning Charging Cable,1,14.95,12/17/19 13:06,"478 Chestnut St, Boston, MA 02215" -301465,AAA Batteries (4-pack),1,2.99,12/15/19 21:07,"902 Spruce St, San Francisco, CA 94016" -301466,27in FHD Monitor,1,149.99,12/25/19 17:26,"753 Lincoln St, San Francisco, CA 94016" -301467,Wired Headphones,1,11.99,12/01/19 20:41,"7 Center St, San Francisco, CA 94016" -301468,Apple Airpods Headphones,1,150,12/02/19 23:53,"605 8th St, San Francisco, CA 94016" -301469,AAA Batteries (4-pack),1,2.99,12/31/19 08:19,"879 Park St, Boston, MA 02215" -301470,AAA Batteries (4-pack),2,2.99,12/12/19 21:41,"661 Elm St, Los Angeles, CA 90001" -301471,AA Batteries (4-pack),1,3.84,12/04/19 13:54,"369 9th St, Austin, TX 73301" -301472,USB-C Charging Cable,1,11.95,12/15/19 18:13,"758 North St, San Francisco, CA 94016" -301473,Apple Airpods Headphones,1,150,12/13/19 09:18,"3 11th St, New York City, NY 10001" -301474,iPhone,1,700,12/30/19 07:19,"594 Spruce St, Dallas, TX 75001" -301475,USB-C Charging Cable,1,11.95,12/11/19 21:08,"488 13th St, San Francisco, CA 94016" -301476,Bose SoundSport Headphones,1,99.99,12/06/19 23:10,"611 10th St, New York City, NY 10001" -301477,27in 4K Gaming Monitor,1,389.99,12/28/19 16:54,"348 Johnson St, Los Angeles, CA 90001" -301478,USB-C Charging Cable,2,11.95,12/02/19 21:19,"523 Washington St, Portland, ME 04101" -301479,AAA Batteries (4-pack),1,2.99,12/10/19 16:23,"776 Spruce St, Los Angeles, CA 90001" -301480,AAA Batteries (4-pack),3,2.99,12/17/19 14:01,"38 Walnut St, Dallas, TX 75001" -301481,AA Batteries (4-pack),1,3.84,12/23/19 04:54,"941 Lincoln St, San Francisco, CA 94016" -301482,Wired Headphones,1,11.99,12/10/19 20:47,"68 Chestnut St, Seattle, WA 98101" -301483,34in Ultrawide Monitor,1,379.99,12/04/19 23:25,"974 Jefferson St, San Francisco, CA 94016" -301484,Bose SoundSport Headphones,1,99.99,12/27/19 18:44,"285 Chestnut St, San Francisco, CA 94016" -301485,Lightning Charging Cable,1,14.95,12/06/19 12:52,"106 10th St, Austin, TX 73301" -301486,Lightning Charging Cable,1,14.95,12/09/19 20:07,"175 2nd St, Los Angeles, CA 90001" -301487,27in FHD Monitor,1,149.99,12/13/19 10:51,"363 4th St, Seattle, WA 98101" -301488,Lightning Charging Cable,1,14.95,12/29/19 16:12,"747 Hickory St, New York City, NY 10001" -301489,USB-C Charging Cable,1,11.95,12/11/19 20:26,"729 Chestnut St, Atlanta, GA 30301" -301490,Wired Headphones,2,11.99,12/26/19 17:32,"622 5th St, Seattle, WA 98101" -301491,Bose SoundSport Headphones,1,99.99,12/12/19 10:12,"124 Main St, Atlanta, GA 30301" -301492,Google Phone,1,600,12/22/19 21:58,"568 Adams St, San Francisco, CA 94016" -301493,AA Batteries (4-pack),1,3.84,12/01/19 19:34,"707 Forest St, Dallas, TX 75001" -301494,Lightning Charging Cable,1,14.95,12/28/19 15:22,"59 4th St, New York City, NY 10001" -301495,Lightning Charging Cable,1,14.95,12/30/19 11:27,"658 Cedar St, San Francisco, CA 94016" -301496,AAA Batteries (4-pack),1,2.99,12/28/19 17:54,"740 Main St, San Francisco, CA 94016" -301497,AA Batteries (4-pack),1,3.84,12/21/19 11:08,"461 7th St, San Francisco, CA 94016" -301498,Wired Headphones,1,11.99,12/03/19 14:49,"181 Sunset St, Dallas, TX 75001" -301499,Bose SoundSport Headphones,1,99.99,12/31/19 16:00,"934 Lincoln St, San Francisco, CA 94016" -301500,Flatscreen TV,1,300,12/05/19 23:23,"685 Walnut St, Los Angeles, CA 90001" -301501,USB-C Charging Cable,1,11.95,12/14/19 18:46,"687 Meadow St, San Francisco, CA 94016" -301502,Lightning Charging Cable,1,14.95,12/22/19 19:58,"906 5th St, New York City, NY 10001" -301503,Google Phone,1,600,12/15/19 15:54,"105 North St, Dallas, TX 75001" -301503,USB-C Charging Cable,1,11.95,12/15/19 15:54,"105 North St, Dallas, TX 75001" -301504,Wired Headphones,1,11.99,12/14/19 16:53,"985 Chestnut St, San Francisco, CA 94016" -301505,Wired Headphones,1,11.99,12/25/19 13:03,"472 Maple St, San Francisco, CA 94016" -301506,Flatscreen TV,1,300,12/31/19 12:10,"888 7th St, San Francisco, CA 94016" -301507,Vareebadd Phone,1,400,12/27/19 12:11,"303 Ridge St, Los Angeles, CA 90001" -301507,USB-C Charging Cable,1,11.95,12/27/19 12:11,"303 Ridge St, Los Angeles, CA 90001" -301508,Apple Airpods Headphones,1,150,12/24/19 21:10,"211 1st St, Boston, MA 02215" -301509,Lightning Charging Cable,1,14.95,12/28/19 21:56,"479 2nd St, Atlanta, GA 30301" -301510,Wired Headphones,1,11.99,12/09/19 21:36,"20 Highland St, San Francisco, CA 94016" -301511,AAA Batteries (4-pack),2,2.99,12/18/19 20:11,"958 Hickory St, Seattle, WA 98101" -301512,34in Ultrawide Monitor,1,379.99,12/11/19 23:14,"134 Center St, Dallas, TX 75001" -301513,20in Monitor,1,109.99,12/23/19 22:19,"903 Church St, Los Angeles, CA 90001" -301514,USB-C Charging Cable,1,11.95,12/06/19 21:31,"578 7th St, San Francisco, CA 94016" -301515,USB-C Charging Cable,1,11.95,12/08/19 13:33,"568 Walnut St, Los Angeles, CA 90001" -301516,Apple Airpods Headphones,1,150,12/25/19 20:20,"359 4th St, Los Angeles, CA 90001" -301517,AA Batteries (4-pack),1,3.84,12/28/19 00:13,"387 Hill St, San Francisco, CA 94016" -301518,AAA Batteries (4-pack),1,2.99,12/26/19 17:12,"160 Jackson St, Boston, MA 02215" -301519,27in FHD Monitor,1,149.99,12/27/19 10:09,"675 5th St, Seattle, WA 98101" -301520,USB-C Charging Cable,1,11.95,12/23/19 16:26,"122 Spruce St, New York City, NY 10001" -301521,27in FHD Monitor,1,149.99,12/12/19 21:34,"392 Madison St, Portland, ME 04101" -301522,27in FHD Monitor,1,149.99,12/04/19 12:27,"203 Chestnut St, Atlanta, GA 30301" -301523,Wired Headphones,1,11.99,12/05/19 12:32,"516 13th St, San Francisco, CA 94016" -301524,AAA Batteries (4-pack),1,2.99,12/25/19 12:49,"236 Dogwood St, Dallas, TX 75001" -301525,Lightning Charging Cable,1,14.95,12/11/19 17:34,"910 Meadow St, New York City, NY 10001" -301526,Apple Airpods Headphones,1,150,12/08/19 01:01,"689 Jackson St, Seattle, WA 98101" -301527,AAA Batteries (4-pack),3,2.99,12/19/19 15:29,"924 Forest St, San Francisco, CA 94016" -301528,Flatscreen TV,1,300,12/08/19 21:55,"587 Meadow St, Atlanta, GA 30301" -301529,Wired Headphones,2,11.99,12/07/19 15:26,"767 14th St, Atlanta, GA 30301" -301530,Apple Airpods Headphones,1,150,12/25/19 18:28,"9 Jackson St, Boston, MA 02215" -301531,Apple Airpods Headphones,1,150,12/18/19 18:16,"502 Hill St, San Francisco, CA 94016" -301532,Wired Headphones,1,11.99,12/31/19 18:46,"800 10th St, San Francisco, CA 94016" -301533,27in FHD Monitor,1,149.99,12/15/19 17:13,"80 Cherry St, Boston, MA 02215" -301534,Apple Airpods Headphones,1,150,12/09/19 23:56,"609 12th St, Los Angeles, CA 90001" -301535,27in 4K Gaming Monitor,1,389.99,12/02/19 04:20,"334 Hickory St, New York City, NY 10001" -301536,AA Batteries (4-pack),1,3.84,12/07/19 20:28,"37 Willow St, Boston, MA 02215" -301537,Lightning Charging Cable,1,14.95,12/23/19 19:11,"737 Elm St, New York City, NY 10001" -301538,Apple Airpods Headphones,1,150,12/13/19 05:09,"374 Wilson St, New York City, NY 10001" -301539,USB-C Charging Cable,1,11.95,12/24/19 12:23,"852 Dogwood St, Portland, OR 97035" -301540,Flatscreen TV,1,300,12/28/19 12:55,"261 Johnson St, Austin, TX 73301" -301541,AAA Batteries (4-pack),1,2.99,12/23/19 18:21,"105 Lakeview St, Boston, MA 02215" -301542,Wired Headphones,1,11.99,12/01/19 19:54,"172 7th St, Dallas, TX 75001" -301543,Lightning Charging Cable,2,14.95,12/28/19 11:27,"854 10th St, San Francisco, CA 94016" -301544,AAA Batteries (4-pack),3,2.99,12/26/19 19:21,"679 Center St, Boston, MA 02215" -301545,34in Ultrawide Monitor,1,379.99,12/18/19 15:01,"652 Pine St, Austin, TX 73301" -301546,27in FHD Monitor,1,149.99,12/25/19 19:25,"786 Maple St, San Francisco, CA 94016" -301547,LG Dryer,1,600.0,12/23/19 23:37,"753 Forest St, New York City, NY 10001" -301548,AAA Batteries (4-pack),1,2.99,12/25/19 15:23,"316 West St, Austin, TX 73301" -301549,Lightning Charging Cable,1,14.95,12/18/19 14:46,"129 Walnut St, Austin, TX 73301" -301550,Wired Headphones,1,11.99,12/01/19 12:03,"125 12th St, Atlanta, GA 30301" -301551,AAA Batteries (4-pack),1,2.99,12/29/19 00:40,"351 Lakeview St, Los Angeles, CA 90001" -301552,Bose SoundSport Headphones,1,99.99,12/18/19 10:22,"528 River St, Los Angeles, CA 90001" -301553,Lightning Charging Cable,1,14.95,12/02/19 10:57,"219 Elm St, Dallas, TX 75001" -,,,,, -301554,AA Batteries (4-pack),1,3.84,12/10/19 18:57,"545 Elm St, Dallas, TX 75001" -301555,Apple Airpods Headphones,1,150,12/23/19 18:09,"860 Cedar St, San Francisco, CA 94016" -301556,Wired Headphones,2,11.99,12/16/19 12:49,"780 Dogwood St, Los Angeles, CA 90001" -301557,20in Monitor,1,109.99,12/30/19 21:56,"637 Hickory St, Los Angeles, CA 90001" -301558,AAA Batteries (4-pack),2,2.99,12/31/19 11:08,"750 Adams St, Dallas, TX 75001" -301559,AAA Batteries (4-pack),2,2.99,12/23/19 11:54,"97 Spruce St, Seattle, WA 98101" -301560,Wired Headphones,1,11.99,12/10/19 04:16,"123 Hill St, Los Angeles, CA 90001" -301561,Lightning Charging Cable,1,14.95,12/13/19 21:21,"815 Jefferson St, Boston, MA 02215" -301562,27in 4K Gaming Monitor,1,389.99,12/28/19 07:41,"343 Sunset St, Seattle, WA 98101" -301563,27in 4K Gaming Monitor,1,389.99,12/27/19 17:39,"859 5th St, New York City, NY 10001" -301564,AAA Batteries (4-pack),1,2.99,12/08/19 14:00,"405 Johnson St, Dallas, TX 75001" -301565,AAA Batteries (4-pack),1,2.99,12/10/19 19:09,"998 Walnut St, Dallas, TX 75001" -301566,27in 4K Gaming Monitor,1,389.99,12/09/19 09:37,"449 12th St, Dallas, TX 75001" -301567,Bose SoundSport Headphones,1,99.99,12/21/19 19:25,"719 5th St, Los Angeles, CA 90001" -301568,AA Batteries (4-pack),3,3.84,12/01/19 13:48,"978 1st St, Boston, MA 02215" -301569,USB-C Charging Cable,1,11.95,12/24/19 02:00,"354 Pine St, San Francisco, CA 94016" -301570,Wired Headphones,1,11.99,12/23/19 17:29,"204 11th St, New York City, NY 10001" -301571,AA Batteries (4-pack),1,3.84,12/24/19 20:53,"750 12th St, New York City, NY 10001" -301572,Lightning Charging Cable,1,14.95,12/04/19 14:28,"93 Forest St, Los Angeles, CA 90001" -301573,34in Ultrawide Monitor,1,379.99,12/13/19 12:23,"709 Elm St, Boston, MA 02215" -301574,AAA Batteries (4-pack),1,2.99,12/10/19 13:57,"26 6th St, New York City, NY 10001" -301575,Lightning Charging Cable,1,14.95,12/10/19 16:53,"359 Pine St, Los Angeles, CA 90001" -301576,USB-C Charging Cable,1,11.95,12/30/19 18:24,"810 Sunset St, Boston, MA 02215" -301577,USB-C Charging Cable,1,11.95,12/29/19 16:12,"197 Highland St, Seattle, WA 98101" -301578,AAA Batteries (4-pack),1,2.99,12/02/19 20:40,"139 Lake St, Portland, OR 97035" -301579,AA Batteries (4-pack),1,3.84,12/21/19 12:33,"260 1st St, Dallas, TX 75001" -301580,Wired Headphones,1,11.99,12/23/19 14:42,"788 Church St, Dallas, TX 75001" -301581,34in Ultrawide Monitor,1,379.99,12/07/19 20:54,"992 Meadow St, Boston, MA 02215" -301582,Lightning Charging Cable,1,14.95,12/11/19 07:47,"370 Madison St, Seattle, WA 98101" -301583,AAA Batteries (4-pack),1,2.99,12/24/19 21:05,"373 1st St, San Francisco, CA 94016" -301584,AAA Batteries (4-pack),1,2.99,12/01/19 15:14,"994 Sunset St, Portland, ME 04101" -301585,AA Batteries (4-pack),1,3.84,12/31/19 11:00,"676 Lincoln St, Los Angeles, CA 90001" -301586,Lightning Charging Cable,1,14.95,12/23/19 19:13,"144 7th St, Los Angeles, CA 90001" -301587,AA Batteries (4-pack),1,3.84,12/30/19 11:26,"283 Lincoln St, Los Angeles, CA 90001" -301588,Wired Headphones,1,11.99,12/16/19 08:57,"868 Maple St, Seattle, WA 98101" -301589,Apple Airpods Headphones,1,150,12/18/19 13:43,"245 5th St, New York City, NY 10001" -301590,Lightning Charging Cable,2,14.95,12/10/19 21:26,"350 Madison St, San Francisco, CA 94016" -301591,Flatscreen TV,1,300,12/26/19 17:50,"490 River St, Los Angeles, CA 90001" -301592,AA Batteries (4-pack),1,3.84,12/01/19 12:06,"812 Madison St, Atlanta, GA 30301" -301593,AA Batteries (4-pack),3,3.84,12/19/19 11:24,"602 Sunset St, San Francisco, CA 94016" -301594,Bose SoundSport Headphones,1,99.99,12/18/19 21:18,"540 Church St, San Francisco, CA 94016" -301595,iPhone,1,700,12/22/19 13:24,"609 12th St, San Francisco, CA 94016" -301596,Bose SoundSport Headphones,1,99.99,12/02/19 19:08,"937 12th St, Atlanta, GA 30301" -301597,USB-C Charging Cable,2,11.95,12/01/19 09:04,"24 Sunset St, New York City, NY 10001" -301598,AAA Batteries (4-pack),1,2.99,12/12/19 01:04,"264 Adams St, Portland, OR 97035" -301599,Lightning Charging Cable,1,14.95,12/24/19 19:54,"225 Hill St, Atlanta, GA 30301" -301600,USB-C Charging Cable,1,11.95,12/21/19 14:00,"835 Hickory St, New York City, NY 10001" -301601,34in Ultrawide Monitor,1,379.99,12/11/19 17:02,"532 Washington St, Atlanta, GA 30301" -301602,Bose SoundSport Headphones,1,99.99,12/28/19 13:25,"785 13th St, New York City, NY 10001" -301603,USB-C Charging Cable,1,11.95,12/29/19 22:01,"349 4th St, New York City, NY 10001" -301604,AAA Batteries (4-pack),1,2.99,12/28/19 14:39,"13 5th St, New York City, NY 10001" -301605,AAA Batteries (4-pack),1,2.99,12/21/19 14:01,"825 10th St, Los Angeles, CA 90001" -301606,USB-C Charging Cable,2,11.95,12/30/19 19:04,"136 10th St, New York City, NY 10001" -301607,AA Batteries (4-pack),1,3.84,12/27/19 19:56,"797 Spruce St, Seattle, WA 98101" -301608,AAA Batteries (4-pack),1,2.99,12/07/19 09:23,"337 Hill St, Los Angeles, CA 90001" -301609,Lightning Charging Cable,1,14.95,12/07/19 21:54,"769 Center St, San Francisco, CA 94016" -301610,Lightning Charging Cable,1,14.95,12/13/19 21:49,"16 Park St, Portland, ME 04101" -301611,Wired Headphones,2,11.99,12/12/19 10:19,"691 Lincoln St, Seattle, WA 98101" -301611,AAA Batteries (4-pack),3,2.99,12/12/19 10:19,"691 Lincoln St, Seattle, WA 98101" -301612,AAA Batteries (4-pack),1,2.99,12/27/19 12:15,"892 Maple St, San Francisco, CA 94016" -301613,AA Batteries (4-pack),1,3.84,12/12/19 19:00,"228 Lincoln St, Seattle, WA 98101" -301614,Bose SoundSport Headphones,1,99.99,12/20/19 23:07,"527 13th St, Los Angeles, CA 90001" -301615,AAA Batteries (4-pack),1,2.99,12/07/19 22:36,"114 Walnut St, Los Angeles, CA 90001" -301616,AAA Batteries (4-pack),2,2.99,12/19/19 17:28,"826 North St, San Francisco, CA 94016" -301617,Apple Airpods Headphones,1,150,12/13/19 10:25,"32 14th St, San Francisco, CA 94016" -301618,USB-C Charging Cable,1,11.95,12/16/19 09:24,"475 4th St, San Francisco, CA 94016" -301619,Flatscreen TV,1,300,12/07/19 07:11,"742 7th St, New York City, NY 10001" -301620,AAA Batteries (4-pack),1,2.99,12/12/19 18:19,"868 Lakeview St, San Francisco, CA 94016" -301621,AAA Batteries (4-pack),2,2.99,12/17/19 22:57,"157 5th St, San Francisco, CA 94016" -301622,Lightning Charging Cable,1,14.95,12/06/19 16:28,"925 8th St, San Francisco, CA 94016" -301623,AA Batteries (4-pack),2,3.84,12/31/19 20:05,"939 12th St, San Francisco, CA 94016" -301624,Google Phone,1,600,12/09/19 09:44,"634 Maple St, Seattle, WA 98101" -301625,USB-C Charging Cable,1,11.95,12/27/19 14:58,"5 Maple St, Seattle, WA 98101" -301626,Flatscreen TV,1,300,12/18/19 14:16,"395 Center St, San Francisco, CA 94016" -301627,AA Batteries (4-pack),1,3.84,12/29/19 20:15,"935 Ridge St, Seattle, WA 98101" -301628,AA Batteries (4-pack),1,3.84,12/24/19 10:16,"179 Walnut St, San Francisco, CA 94016" -301629,ThinkPad Laptop,1,999.99,12/22/19 14:05,"421 Chestnut St, Dallas, TX 75001" -301630,Google Phone,1,600,12/22/19 14:46,"561 Maple St, Austin, TX 73301" -301631,Apple Airpods Headphones,1,150,12/28/19 03:38,"812 Jefferson St, San Francisco, CA 94016" -301632,Bose SoundSport Headphones,1,99.99,12/18/19 12:47,"977 9th St, Los Angeles, CA 90001" -301633,LG Washing Machine,1,600.0,12/17/19 11:28,"462 Elm St, Los Angeles, CA 90001" -301634,Apple Airpods Headphones,1,150,12/02/19 08:33,"89 Willow St, New York City, NY 10001" -301635,Macbook Pro Laptop,1,1700,12/20/19 17:21,"64 2nd St, San Francisco, CA 94016" -301636,AA Batteries (4-pack),1,3.84,12/02/19 19:53,"173 Main St, Dallas, TX 75001" -301637,AAA Batteries (4-pack),1,2.99,12/22/19 20:37,"323 Sunset St, Los Angeles, CA 90001" -301638,AAA Batteries (4-pack),1,2.99,12/08/19 13:25,"858 Spruce St, Los Angeles, CA 90001" -301639,AA Batteries (4-pack),1,3.84,12/09/19 18:45,"814 Lake St, Portland, ME 04101" -301640,Macbook Pro Laptop,1,1700,12/22/19 15:17,"476 Church St, Austin, TX 73301" -301641,Lightning Charging Cable,1,14.95,12/24/19 18:32,"185 Meadow St, Seattle, WA 98101" -301642,AAA Batteries (4-pack),1,2.99,12/11/19 12:13,"351 2nd St, Atlanta, GA 30301" -301643,USB-C Charging Cable,1,11.95,12/12/19 06:08,"148 West St, Atlanta, GA 30301" -301644,Wired Headphones,1,11.99,12/02/19 23:42,"651 Church St, Seattle, WA 98101" -301645,Bose SoundSport Headphones,1,99.99,12/13/19 19:21,"896 1st St, Dallas, TX 75001" -301646,Bose SoundSport Headphones,1,99.99,12/16/19 13:33,"739 Cherry St, Boston, MA 02215" -301647,20in Monitor,1,109.99,12/05/19 12:21,"455 Cherry St, San Francisco, CA 94016" -301648,Apple Airpods Headphones,1,150,12/13/19 15:12,"576 Forest St, Portland, OR 97035" -301649,Lightning Charging Cable,1,14.95,12/30/19 10:15,"132 6th St, Atlanta, GA 30301" -301650,Bose SoundSport Headphones,1,99.99,12/19/19 23:07,"959 Chestnut St, Boston, MA 02215" -301651,Wired Headphones,1,11.99,12/25/19 17:41,"756 12th St, Seattle, WA 98101" -301652,Wired Headphones,1,11.99,12/07/19 14:39,"713 11th St, San Francisco, CA 94016" -301653,USB-C Charging Cable,1,11.95,12/01/19 18:05,"113 Lincoln St, San Francisco, CA 94016" -301654,Google Phone,1,600,12/29/19 19:24,"199 2nd St, Seattle, WA 98101" -301655,USB-C Charging Cable,1,11.95,12/19/19 12:43,"986 2nd St, San Francisco, CA 94016" -301656,USB-C Charging Cable,1,11.95,12/13/19 15:27,"214 Maple St, Los Angeles, CA 90001" -301657,34in Ultrawide Monitor,1,379.99,12/04/19 18:12,"93 4th St, Los Angeles, CA 90001" -301658,AA Batteries (4-pack),1,3.84,12/19/19 09:00,"200 Elm St, Seattle, WA 98101" -301659,Wired Headphones,1,11.99,12/04/19 19:30,"166 Walnut St, Portland, ME 04101" -301660,USB-C Charging Cable,1,11.95,12/17/19 19:46,"201 Center St, Austin, TX 73301" -301661,USB-C Charging Cable,1,11.95,12/16/19 12:07,"399 1st St, Los Angeles, CA 90001" -301662,AAA Batteries (4-pack),1,2.99,12/09/19 09:34,"361 Hill St, New York City, NY 10001" -301663,AA Batteries (4-pack),2,3.84,12/28/19 07:44,"449 Wilson St, San Francisco, CA 94016" -301664,AAA Batteries (4-pack),2,2.99,12/05/19 11:54,"857 Elm St, Boston, MA 02215" -301665,USB-C Charging Cable,1,11.95,12/12/19 18:22,"239 Church St, New York City, NY 10001" -301666,27in 4K Gaming Monitor,2,389.99,12/29/19 11:56,"18 North St, Boston, MA 02215" -301667,34in Ultrawide Monitor,1,379.99,12/23/19 15:45,"790 Sunset St, San Francisco, CA 94016" -301668,Lightning Charging Cable,1,14.95,12/13/19 15:53,"341 11th St, Portland, OR 97035" -301669,Apple Airpods Headphones,1,150,12/01/19 21:28,"344 9th St, New York City, NY 10001" -301670,Lightning Charging Cable,1,14.95,12/21/19 08:25,"86 Sunset St, Los Angeles, CA 90001" -301671,iPhone,1,700,12/04/19 23:33,"868 Madison St, Austin, TX 73301" -301672,USB-C Charging Cable,1,11.95,12/18/19 23:26,"931 2nd St, Los Angeles, CA 90001" -301673,34in Ultrawide Monitor,1,379.99,12/27/19 08:53,"411 Jefferson St, Boston, MA 02215" -301674,Wired Headphones,3,11.99,12/16/19 19:52,"974 Maple St, Los Angeles, CA 90001" -301675,Wired Headphones,1,11.99,12/02/19 21:29,"213 Madison St, New York City, NY 10001" -301676,Wired Headphones,1,11.99,12/02/19 19:03,"240 North St, Portland, ME 04101" -301677,Bose SoundSport Headphones,1,99.99,12/28/19 15:58,"513 1st St, Los Angeles, CA 90001" -301678,Lightning Charging Cable,1,14.95,12/07/19 12:19,"422 Lakeview St, Atlanta, GA 30301" -301679,AAA Batteries (4-pack),1,2.99,12/06/19 15:08,"378 Walnut St, Los Angeles, CA 90001" -301680,Wired Headphones,1,11.99,12/11/19 18:47,"637 2nd St, Seattle, WA 98101" -301681,Lightning Charging Cable,1,14.95,12/06/19 20:31,"788 1st St, Boston, MA 02215" -301682,AAA Batteries (4-pack),2,2.99,12/15/19 14:24,"863 Main St, San Francisco, CA 94016" -301683,27in FHD Monitor,1,149.99,12/23/19 22:18,"457 River St, San Francisco, CA 94016" -301684,Lightning Charging Cable,1,14.95,12/21/19 11:17,"524 Church St, Los Angeles, CA 90001" -301685,ThinkPad Laptop,1,999.99,12/28/19 15:49,"40 South St, Seattle, WA 98101" -301686,AAA Batteries (4-pack),1,2.99,12/14/19 23:41,"942 Wilson St, San Francisco, CA 94016" -301687,Wired Headphones,1,11.99,12/03/19 23:40,"578 North St, Atlanta, GA 30301" -301688,USB-C Charging Cable,1,11.95,12/08/19 16:45,"990 Forest St, Austin, TX 73301" -301689,AA Batteries (4-pack),1,3.84,12/30/19 13:53,"181 Center St, Los Angeles, CA 90001" -301690,AA Batteries (4-pack),1,3.84,12/31/19 17:35,"562 Johnson St, Portland, OR 97035" -301691,Flatscreen TV,1,300,12/03/19 05:32,"710 Meadow St, San Francisco, CA 94016" -301692,USB-C Charging Cable,1,11.95,12/07/19 11:10,"314 Jackson St, Seattle, WA 98101" -301693,AAA Batteries (4-pack),1,2.99,12/20/19 16:44,"536 Spruce St, San Francisco, CA 94016" -301693,AAA Batteries (4-pack),1,2.99,12/20/19 16:44,"536 Spruce St, San Francisco, CA 94016" -301694,Lightning Charging Cable,1,14.95,12/18/19 05:58,"58 Spruce St, Atlanta, GA 30301" -301695,AAA Batteries (4-pack),1,2.99,12/17/19 14:27,"661 Washington St, Boston, MA 02215" -301696,Apple Airpods Headphones,1,150,12/10/19 16:02,"224 Maple St, Austin, TX 73301" -301697,Bose SoundSport Headphones,1,99.99,12/26/19 16:46,"115 12th St, San Francisco, CA 94016" -301698,AAA Batteries (4-pack),1,2.99,12/18/19 21:55,"770 North St, Dallas, TX 75001" -301699,20in Monitor,1,109.99,12/21/19 15:51,"792 6th St, San Francisco, CA 94016" -301700,AA Batteries (4-pack),1,3.84,12/29/19 12:45,"846 Lake St, Austin, TX 73301" -301701,iPhone,1,700,12/15/19 13:23,"591 Maple St, Seattle, WA 98101" -301701,Lightning Charging Cable,1,14.95,12/15/19 13:23,"591 Maple St, Seattle, WA 98101" -301702,AAA Batteries (4-pack),2,2.99,12/07/19 20:37,"947 Lake St, San Francisco, CA 94016" -301703,AAA Batteries (4-pack),1,2.99,12/16/19 15:25,"691 Maple St, San Francisco, CA 94016" -301704,Lightning Charging Cable,1,14.95,12/18/19 13:01,"632 2nd St, Dallas, TX 75001" -301705,34in Ultrawide Monitor,1,379.99,12/24/19 14:33,"4 North St, New York City, NY 10001" -301706,27in FHD Monitor,1,149.99,12/13/19 23:29,"138 5th St, Seattle, WA 98101" -301707,Wired Headphones,1,11.99,12/12/19 06:20,"255 Walnut St, San Francisco, CA 94016" -301708,27in 4K Gaming Monitor,1,389.99,12/04/19 13:13,"422 West St, Austin, TX 73301" -301709,Wired Headphones,1,11.99,12/19/19 10:54,"648 Walnut St, Seattle, WA 98101" -301710,Lightning Charging Cable,1,14.95,12/24/19 14:43,"15 Jackson St, Boston, MA 02215" -301711,AA Batteries (4-pack),1,3.84,12/20/19 20:39,"92 Forest St, Los Angeles, CA 90001" -301712,USB-C Charging Cable,1,11.95,12/07/19 05:57,"49 1st St, Atlanta, GA 30301" -301713,AA Batteries (4-pack),3,3.84,12/07/19 13:17,"436 South St, Seattle, WA 98101" -301714,AAA Batteries (4-pack),3,2.99,12/12/19 14:38,"937 North St, San Francisco, CA 94016" -301715,USB-C Charging Cable,1,11.95,12/08/19 18:51,"668 Cedar St, Los Angeles, CA 90001" -301716,AA Batteries (4-pack),1,3.84,12/15/19 04:52,"715 4th St, San Francisco, CA 94016" -301717,Apple Airpods Headphones,1,150,12/14/19 22:27,"494 Church St, Seattle, WA 98101" -301718,Bose SoundSport Headphones,1,99.99,12/05/19 20:11,"839 Dogwood St, New York City, NY 10001" -301719,Lightning Charging Cable,1,14.95,12/22/19 10:54,"913 12th St, Atlanta, GA 30301" -301720,20in Monitor,1,109.99,12/12/19 10:15,"586 Walnut St, Los Angeles, CA 90001" -301721,Wired Headphones,1,11.99,12/14/19 13:37,"217 Elm St, Portland, OR 97035" -301722,Lightning Charging Cable,2,14.95,12/10/19 07:17,"88 5th St, Los Angeles, CA 90001" -301723,iPhone,1,700,12/16/19 23:11,"696 Meadow St, Portland, OR 97035" -301724,AAA Batteries (4-pack),1,2.99,12/14/19 00:46,"373 Maple St, Portland, OR 97035" -301725,Wired Headphones,1,11.99,12/29/19 10:35,"673 Cherry St, New York City, NY 10001" -301726,Wired Headphones,1,11.99,12/07/19 14:44,"821 Walnut St, San Francisco, CA 94016" -301727,Google Phone,1,600,12/16/19 20:49,"450 Wilson St, Seattle, WA 98101" -301727,Bose SoundSport Headphones,1,99.99,12/16/19 20:49,"450 Wilson St, Seattle, WA 98101" -301728,USB-C Charging Cable,1,11.95,12/01/19 20:48,"900 Spruce St, San Francisco, CA 94016" -301729,iPhone,1,700,12/19/19 16:42,"492 South St, Los Angeles, CA 90001" -301729,Lightning Charging Cable,1,14.95,12/19/19 16:42,"492 South St, Los Angeles, CA 90001" -301730,ThinkPad Laptop,1,999.99,12/13/19 20:58,"774 Meadow St, San Francisco, CA 94016" -301731,ThinkPad Laptop,1,999.99,12/27/19 10:08,"865 Jefferson St, Dallas, TX 75001" -301732,Lightning Charging Cable,1,14.95,12/19/19 23:55,"644 9th St, Seattle, WA 98101" -301733,Flatscreen TV,1,300,12/08/19 17:53,"113 7th St, Boston, MA 02215" -301734,34in Ultrawide Monitor,1,379.99,12/04/19 08:20,"533 Highland St, New York City, NY 10001" -301735,Lightning Charging Cable,1,14.95,12/06/19 16:10,"29 5th St, Los Angeles, CA 90001" -301736,Lightning Charging Cable,1,14.95,12/19/19 17:42,"437 6th St, Portland, OR 97035" -301737,ThinkPad Laptop,1,999.99,12/02/19 15:11,"177 Willow St, San Francisco, CA 94016" -301738,Lightning Charging Cable,1,14.95,12/28/19 08:03,"14 2nd St, San Francisco, CA 94016" -301739,USB-C Charging Cable,1,11.95,12/18/19 15:35,"98 Lake St, San Francisco, CA 94016" -301740,USB-C Charging Cable,1,11.95,12/04/19 11:23,"884 Willow St, San Francisco, CA 94016" -301741,Bose SoundSport Headphones,1,99.99,12/19/19 19:19,"280 Spruce St, New York City, NY 10001" -301742,USB-C Charging Cable,1,11.95,12/30/19 20:45,"927 Center St, Los Angeles, CA 90001" -301743,USB-C Charging Cable,1,11.95,12/09/19 14:25,"278 Church St, Boston, MA 02215" -301744,34in Ultrawide Monitor,1,379.99,12/09/19 18:26,"384 West St, Los Angeles, CA 90001" -301745,27in FHD Monitor,1,149.99,12/22/19 17:09,"590 Adams St, San Francisco, CA 94016" -301746,27in 4K Gaming Monitor,1,389.99,12/04/19 15:07,"212 West St, Dallas, TX 75001" -301747,34in Ultrawide Monitor,1,379.99,12/13/19 11:22,"795 Johnson St, Boston, MA 02215" -301748,USB-C Charging Cable,1,11.95,12/08/19 13:17,"604 2nd St, New York City, NY 10001" -301749,27in FHD Monitor,2,149.99,12/24/19 14:45,"563 Maple St, Atlanta, GA 30301" -301750,AAA Batteries (4-pack),3,2.99,12/11/19 12:43,"602 Lincoln St, Austin, TX 73301" -301751,Lightning Charging Cable,1,14.95,12/13/19 20:43,"418 Lincoln St, San Francisco, CA 94016" -301752,AAA Batteries (4-pack),3,2.99,12/02/19 10:39,"135 Elm St, Dallas, TX 75001" -301753,Macbook Pro Laptop,1,1700,12/19/19 18:21,"207 5th St, San Francisco, CA 94016" -301754,USB-C Charging Cable,1,11.95,12/12/19 18:09,"657 Center St, Los Angeles, CA 90001" -301755,27in FHD Monitor,1,149.99,12/30/19 19:56,"510 7th St, San Francisco, CA 94016" -301756,USB-C Charging Cable,1,11.95,12/25/19 16:18,"626 Lakeview St, Seattle, WA 98101" -301757,34in Ultrawide Monitor,1,379.99,12/16/19 11:45,"188 Johnson St, New York City, NY 10001" -301758,Macbook Pro Laptop,1,1700,12/11/19 11:16,"777 Church St, Boston, MA 02215" -301759,34in Ultrawide Monitor,1,379.99,12/02/19 10:35,"876 Maple St, Los Angeles, CA 90001" -301760,AAA Batteries (4-pack),2,2.99,12/22/19 20:38,"502 Lake St, New York City, NY 10001" -301761,Google Phone,1,600,12/08/19 13:19,"39 Washington St, Dallas, TX 75001" -301762,20in Monitor,1,109.99,12/21/19 00:40,"321 Johnson St, Dallas, TX 75001" -301763,USB-C Charging Cable,1,11.95,12/12/19 16:42,"948 Willow St, San Francisco, CA 94016" -301764,Apple Airpods Headphones,1,150,12/04/19 15:28,"11 11th St, Portland, OR 97035" -301765,iPhone,1,700,12/07/19 23:07,"979 5th St, Atlanta, GA 30301" -301766,USB-C Charging Cable,1,11.95,12/26/19 09:23,"310 Hill St, Atlanta, GA 30301" -301767,Bose SoundSport Headphones,1,99.99,12/01/19 14:11,"710 Maple St, San Francisco, CA 94016" -301768,USB-C Charging Cable,1,11.95,12/06/19 16:54,"33 Main St, Los Angeles, CA 90001" -301769,USB-C Charging Cable,1,11.95,12/25/19 19:20,"893 North St, Seattle, WA 98101" -301770,27in FHD Monitor,1,149.99,12/07/19 01:01,"748 Chestnut St, Atlanta, GA 30301" -301771,27in 4K Gaming Monitor,1,389.99,12/10/19 17:50,"892 Elm St, Boston, MA 02215" -301772,27in 4K Gaming Monitor,1,389.99,12/02/19 15:40,"451 Adams St, Los Angeles, CA 90001" -301773,Wired Headphones,2,11.99,12/08/19 12:13,"729 Washington St, Boston, MA 02215" -301774,AAA Batteries (4-pack),1,2.99,12/13/19 20:07,"325 Johnson St, San Francisco, CA 94016" -301775,AAA Batteries (4-pack),1,2.99,12/29/19 12:44,"754 Walnut St, Seattle, WA 98101" -301776,Flatscreen TV,1,300,12/02/19 11:19,"339 Hickory St, New York City, NY 10001" -301777,AAA Batteries (4-pack),3,2.99,12/24/19 18:32,"83 Sunset St, San Francisco, CA 94016" -301778,USB-C Charging Cable,1,11.95,12/01/19 02:50,"920 Highland St, Seattle, WA 98101" -301779,Apple Airpods Headphones,1,150,12/26/19 12:42,"610 Main St, Seattle, WA 98101" -301780,AA Batteries (4-pack),1,3.84,12/09/19 00:54,"985 South St, San Francisco, CA 94016" -301780,AA Batteries (4-pack),1,3.84,12/09/19 00:54,"985 South St, San Francisco, CA 94016" -301781,AA Batteries (4-pack),1,3.84,12/24/19 19:54,"337 South St, Dallas, TX 75001" -301782,AAA Batteries (4-pack),1,2.99,12/14/19 23:41,"273 West St, New York City, NY 10001" -301783,Apple Airpods Headphones,1,150,12/23/19 11:50,"58 Park St, Los Angeles, CA 90001" -301784,Macbook Pro Laptop,1,1700,12/13/19 15:12,"713 Church St, San Francisco, CA 94016" -301785,34in Ultrawide Monitor,1,379.99,12/25/19 07:49,"55 7th St, New York City, NY 10001" -301786,AAA Batteries (4-pack),2,2.99,12/16/19 10:05,"641 Park St, Los Angeles, CA 90001" -301787,Lightning Charging Cable,1,14.95,12/24/19 15:07,"738 Forest St, San Francisco, CA 94016" -301788,20in Monitor,1,109.99,12/06/19 19:12,"666 Meadow St, San Francisco, CA 94016" -301789,27in 4K Gaming Monitor,1,389.99,12/18/19 15:05,"603 Lakeview St, Dallas, TX 75001" -301790,Apple Airpods Headphones,1,150,12/20/19 10:54,"87 1st St, San Francisco, CA 94016" -301791,Wired Headphones,1,11.99,12/22/19 21:03,"745 8th St, New York City, NY 10001" -301792,34in Ultrawide Monitor,1,379.99,12/12/19 19:01,"831 Jackson St, Boston, MA 02215" -301793,Google Phone,1,600,12/14/19 18:46,"29 North St, Seattle, WA 98101" -301794,Apple Airpods Headphones,1,150,12/27/19 16:32,"186 West St, Boston, MA 02215" -301795,ThinkPad Laptop,1,999.99,12/27/19 12:26,"963 Meadow St, Dallas, TX 75001" -301796,USB-C Charging Cable,1,11.95,12/09/19 07:29,"953 West St, Atlanta, GA 30301" -301797,iPhone,1,700,12/05/19 11:11,"822 Park St, Seattle, WA 98101" -301797,Apple Airpods Headphones,1,150,12/05/19 11:11,"822 Park St, Seattle, WA 98101" -301798,34in Ultrawide Monitor,1,379.99,12/28/19 18:54,"902 Highland St, Boston, MA 02215" -301799,AA Batteries (4-pack),1,3.84,12/30/19 17:26,"99 Ridge St, New York City, NY 10001" -301800,AAA Batteries (4-pack),1,2.99,12/09/19 20:32,"659 Willow St, Seattle, WA 98101" -301801,iPhone,1,700,12/09/19 01:09,"826 11th St, Seattle, WA 98101" -301802,Wired Headphones,1,11.99,12/28/19 19:37,"848 11th St, Los Angeles, CA 90001" -301803,Wired Headphones,1,11.99,12/16/19 20:00,"927 Willow St, Los Angeles, CA 90001" -301804,34in Ultrawide Monitor,1,379.99,12/11/19 20:40,"272 Lake St, New York City, NY 10001" -301805,AAA Batteries (4-pack),2,2.99,12/26/19 12:24,"104 River St, Atlanta, GA 30301" -301806,Bose SoundSport Headphones,1,99.99,12/24/19 03:49,"707 Center St, Atlanta, GA 30301" -301807,Vareebadd Phone,1,400,12/13/19 00:19,"374 Sunset St, Atlanta, GA 30301" -301808,AA Batteries (4-pack),1,3.84,12/09/19 22:11,"31 West St, Los Angeles, CA 90001" -301809,Lightning Charging Cable,1,14.95,12/28/19 12:05,"476 Chestnut St, San Francisco, CA 94016" -301810,Bose SoundSport Headphones,1,99.99,12/21/19 15:38,"328 Lake St, New York City, NY 10001" -301811,Wired Headphones,1,11.99,12/27/19 09:29,"640 Park St, Seattle, WA 98101" -301812,USB-C Charging Cable,1,11.95,12/07/19 19:38,"40 Jackson St, Portland, ME 04101" -301813,ThinkPad Laptop,1,999.99,12/18/19 23:03,"616 Washington St, Atlanta, GA 30301" -301814,AA Batteries (4-pack),1,3.84,12/12/19 18:09,"606 Hill St, New York City, NY 10001" -301815,34in Ultrawide Monitor,1,379.99,12/08/19 13:26,"856 14th St, Los Angeles, CA 90001" -301816,Wired Headphones,1,11.99,12/26/19 09:04,"581 7th St, Seattle, WA 98101" -301817,iPhone,1,700,12/14/19 18:10,"889 Ridge St, Los Angeles, CA 90001" -301818,Wired Headphones,1,11.99,12/22/19 08:59,"7 Maple St, Dallas, TX 75001" -301819,Lightning Charging Cable,1,14.95,12/13/19 17:24,"87 Lake St, Atlanta, GA 30301" -301820,Apple Airpods Headphones,1,150,12/02/19 18:37,"619 Cherry St, Los Angeles, CA 90001" -301821,iPhone,1,700,12/01/19 18:41,"623 Lakeview St, Los Angeles, CA 90001" -301822,34in Ultrawide Monitor,1,379.99,12/20/19 17:13,"462 Cedar St, Dallas, TX 75001" -301823,Bose SoundSport Headphones,1,99.99,12/20/19 16:41,"484 South St, San Francisco, CA 94016" -301824,Bose SoundSport Headphones,1,99.99,12/23/19 22:51,"513 Spruce St, San Francisco, CA 94016" -301825,Wired Headphones,1,11.99,12/10/19 17:02,"591 10th St, Seattle, WA 98101" -301826,USB-C Charging Cable,1,11.95,12/25/19 21:43,"207 4th St, San Francisco, CA 94016" -301827,Apple Airpods Headphones,1,150,12/14/19 21:39,"1 14th St, Seattle, WA 98101" -301828,Bose SoundSport Headphones,1,99.99,12/13/19 00:58,"145 Elm St, San Francisco, CA 94016" -301829,27in 4K Gaming Monitor,1,389.99,12/26/19 21:04,"231 10th St, Seattle, WA 98101" -301830,AAA Batteries (4-pack),1,2.99,12/07/19 13:44,"115 Hill St, Seattle, WA 98101" -301831,Apple Airpods Headphones,1,150,12/20/19 22:37,"137 Wilson St, Los Angeles, CA 90001" -301832,AAA Batteries (4-pack),1,2.99,12/31/19 20:51,"774 Washington St, San Francisco, CA 94016" -301832,20in Monitor,2,109.99,12/31/19 20:51,"774 Washington St, San Francisco, CA 94016" -301833,Lightning Charging Cable,1,14.95,12/29/19 13:55,"368 Lake St, Portland, OR 97035" -301834,AA Batteries (4-pack),1,3.84,12/12/19 07:46,"989 14th St, Austin, TX 73301" -301835,Wired Headphones,1,11.99,12/25/19 15:59,"589 South St, Los Angeles, CA 90001" -301836,AA Batteries (4-pack),4,3.84,12/19/19 09:00,"650 10th St, San Francisco, CA 94016" -301837,Bose SoundSport Headphones,1,99.99,12/08/19 12:33,"808 6th St, Boston, MA 02215" -301838,Lightning Charging Cable,1,14.95,12/10/19 15:40,"636 Highland St, Dallas, TX 75001" -301839,Bose SoundSport Headphones,1,99.99,12/14/19 11:02,"491 Washington St, Boston, MA 02215" -301840,Lightning Charging Cable,1,14.95,12/14/19 12:06,"137 Sunset St, New York City, NY 10001" -301841,AA Batteries (4-pack),1,3.84,12/30/19 14:00,"755 Willow St, Dallas, TX 75001" -301842,USB-C Charging Cable,1,11.95,12/17/19 12:24,"745 Lake St, Atlanta, GA 30301" -301843,AA Batteries (4-pack),1,3.84,12/13/19 13:03,"411 Chestnut St, Portland, OR 97035" -301844,27in 4K Gaming Monitor,1,389.99,12/21/19 20:08,"371 Hickory St, Austin, TX 73301" -301845,iPhone,1,700,12/23/19 10:11,"602 2nd St, Austin, TX 73301" -301845,Wired Headphones,2,11.99,12/23/19 10:11,"602 2nd St, Austin, TX 73301" -301846,Lightning Charging Cable,3,14.95,12/12/19 18:27,"592 Madison St, San Francisco, CA 94016" -301847,27in FHD Monitor,1,149.99,12/02/19 21:48,"291 4th St, Seattle, WA 98101" -301848,AA Batteries (4-pack),1,3.84,12/14/19 22:52,"84 Adams St, Dallas, TX 75001" -301849,AA Batteries (4-pack),1,3.84,12/25/19 19:08,"205 7th St, San Francisco, CA 94016" -301850,Bose SoundSport Headphones,1,99.99,12/05/19 10:13,"655 Jefferson St, New York City, NY 10001" -301851,AAA Batteries (4-pack),2,2.99,12/06/19 20:33,"197 Jefferson St, San Francisco, CA 94016" -301852,Apple Airpods Headphones,1,150,12/25/19 19:10,"285 Lincoln St, Austin, TX 73301" -301853,AA Batteries (4-pack),1,3.84,12/13/19 09:17,"11 Madison St, Seattle, WA 98101" -301854,AAA Batteries (4-pack),1,2.99,12/15/19 11:03,"958 Wilson St, Los Angeles, CA 90001" -301855,AA Batteries (4-pack),1,3.84,12/16/19 14:44,"322 Ridge St, San Francisco, CA 94016" -301856,ThinkPad Laptop,1,999.99,12/25/19 14:01,"538 8th St, Austin, TX 73301" -301857,Lightning Charging Cable,2,14.95,12/17/19 20:31,"479 Maple St, Los Angeles, CA 90001" -301858,AAA Batteries (4-pack),1,2.99,12/24/19 00:04,"194 Lakeview St, Dallas, TX 75001" -301859,AA Batteries (4-pack),1,3.84,12/08/19 15:00,"483 Sunset St, New York City, NY 10001" -301860,AAA Batteries (4-pack),1,2.99,12/29/19 11:30,"337 Wilson St, San Francisco, CA 94016" -301861,Flatscreen TV,1,300,12/20/19 01:22,"564 Highland St, Boston, MA 02215" -301862,27in 4K Gaming Monitor,1,389.99,12/16/19 21:58,"116 Meadow St, Atlanta, GA 30301" -301863,Lightning Charging Cable,1,14.95,12/21/19 13:16,"934 5th St, New York City, NY 10001" -301864,AA Batteries (4-pack),1,3.84,12/05/19 17:48,"407 1st St, Portland, OR 97035" -301865,USB-C Charging Cable,1,11.95,12/11/19 12:01,"310 Lakeview St, Portland, OR 97035" -301866,27in 4K Gaming Monitor,1,389.99,12/09/19 18:00,"862 Wilson St, New York City, NY 10001" -301867,27in 4K Gaming Monitor,1,389.99,12/20/19 21:51,"191 Maple St, Atlanta, GA 30301" -301868,Bose SoundSport Headphones,1,99.99,12/03/19 11:44,"331 Park St, Seattle, WA 98101" -301869,AAA Batteries (4-pack),1,2.99,12/08/19 14:24,"71 Ridge St, Boston, MA 02215" -301870,Wired Headphones,1,11.99,12/29/19 03:28,"795 Jackson St, Los Angeles, CA 90001" -301871,27in FHD Monitor,1,149.99,12/13/19 19:36,"625 11th St, San Francisco, CA 94016" -301872,Vareebadd Phone,1,400,12/11/19 21:42,"72 West St, Boston, MA 02215" -301873,Apple Airpods Headphones,1,150,12/11/19 08:59,"323 1st St, Los Angeles, CA 90001" -301874,AAA Batteries (4-pack),1,2.99,12/29/19 12:57,"16 7th St, Dallas, TX 75001" -301875,Bose SoundSport Headphones,1,99.99,12/03/19 19:15,"79 Ridge St, San Francisco, CA 94016" -301876,27in FHD Monitor,1,149.99,12/01/19 11:04,"457 7th St, Portland, OR 97035" -301877,27in 4K Gaming Monitor,1,389.99,12/30/19 19:37,"643 South St, San Francisco, CA 94016" -301878,USB-C Charging Cable,1,11.95,12/21/19 15:53,"805 Meadow St, Boston, MA 02215" -301879,Wired Headphones,1,11.99,12/20/19 17:02,"890 1st St, San Francisco, CA 94016" -301880,AAA Batteries (4-pack),1,2.99,12/19/19 03:10,"130 West St, San Francisco, CA 94016" -301881,20in Monitor,1,109.99,12/06/19 16:10,"258 Adams St, Seattle, WA 98101" -301881,27in FHD Monitor,1,149.99,12/06/19 16:10,"258 Adams St, Seattle, WA 98101" -301882,Google Phone,1,600,12/02/19 15:20,"313 Forest St, Los Angeles, CA 90001" -301883,LG Dryer,1,600.0,12/02/19 16:56,"219 2nd St, Los Angeles, CA 90001" -301884,Vareebadd Phone,1,400,12/28/19 13:11,"463 Ridge St, San Francisco, CA 94016" -301884,Flatscreen TV,1,300,12/28/19 13:11,"463 Ridge St, San Francisco, CA 94016" -301885,AAA Batteries (4-pack),1,2.99,12/07/19 21:43,"651 Jefferson St, San Francisco, CA 94016" -301886,AAA Batteries (4-pack),1,2.99,12/09/19 06:48,"265 6th St, Portland, OR 97035" -301887,Lightning Charging Cable,1,14.95,12/30/19 17:50,"733 Lakeview St, San Francisco, CA 94016" -301888,AA Batteries (4-pack),2,3.84,12/08/19 20:13,"741 Hickory St, Portland, OR 97035" -301889,AA Batteries (4-pack),1,3.84,12/09/19 02:29,"475 Cherry St, Seattle, WA 98101" -301890,Bose SoundSport Headphones,1,99.99,12/26/19 19:43,"755 Church St, Austin, TX 73301" -301891,USB-C Charging Cable,1,11.95,12/13/19 23:04,"458 Elm St, Austin, TX 73301" -301892,iPhone,1,700,12/13/19 12:35,"6 Walnut St, Portland, OR 97035" -301892,Wired Headphones,1,11.99,12/13/19 12:35,"6 Walnut St, Portland, OR 97035" -301893,AAA Batteries (4-pack),2,2.99,12/24/19 16:59,"148 7th St, Seattle, WA 98101" -301894,AAA Batteries (4-pack),1,2.99,12/15/19 18:49,"995 Cherry St, Boston, MA 02215" -301895,Apple Airpods Headphones,1,150,12/16/19 11:47,"861 Madison St, Los Angeles, CA 90001" -301896,Wired Headphones,1,11.99,12/08/19 10:52,"137 2nd St, San Francisco, CA 94016" -301896,27in 4K Gaming Monitor,1,389.99,12/08/19 10:52,"137 2nd St, San Francisco, CA 94016" -301897,20in Monitor,1,109.99,12/25/19 08:29,"558 7th St, Seattle, WA 98101" -301898,AAA Batteries (4-pack),1,2.99,12/26/19 12:37,"236 Elm St, San Francisco, CA 94016" -301899,iPhone,1,700,12/25/19 09:42,"506 Walnut St, Portland, OR 97035" -301900,AA Batteries (4-pack),2,3.84,12/13/19 14:47,"63 Johnson St, Los Angeles, CA 90001" -301901,27in 4K Gaming Monitor,1,389.99,12/06/19 21:51,"552 5th St, San Francisco, CA 94016" -301902,AA Batteries (4-pack),1,3.84,12/19/19 20:13,"537 Jefferson St, Atlanta, GA 30301" -301903,Wired Headphones,1,11.99,12/24/19 19:42,"707 River St, Dallas, TX 75001" -301904,Apple Airpods Headphones,1,150,12/12/19 01:02,"124 8th St, Los Angeles, CA 90001" -301905,Apple Airpods Headphones,1,150,12/08/19 20:08,"888 Sunset St, San Francisco, CA 94016" -301906,USB-C Charging Cable,1,11.95,12/16/19 22:49,"874 Hickory St, Boston, MA 02215" -301907,iPhone,1,700,12/12/19 11:07,"768 10th St, San Francisco, CA 94016" -301908,USB-C Charging Cable,1,11.95,12/05/19 11:04,"267 1st St, San Francisco, CA 94016" -301909,USB-C Charging Cable,1,11.95,12/06/19 08:23,"83 Maple St, San Francisco, CA 94016" -301910,AAA Batteries (4-pack),1,2.99,12/11/19 00:00,"355 14th St, Portland, OR 97035" -301911,Bose SoundSport Headphones,1,99.99,12/07/19 11:40,"351 Sunset St, Austin, TX 73301" -301912,AA Batteries (4-pack),1,3.84,12/31/19 19:55,"777 13th St, Boston, MA 02215" -301913,Bose SoundSport Headphones,1,99.99,12/25/19 10:17,"78 Center St, Los Angeles, CA 90001" -301914,AAA Batteries (4-pack),1,2.99,12/19/19 08:36,"799 Willow St, Los Angeles, CA 90001" -301915,27in FHD Monitor,1,149.99,12/19/19 01:34,"951 Dogwood St, Portland, ME 04101" -301916,AAA Batteries (4-pack),1,2.99,12/13/19 11:16,"604 5th St, Seattle, WA 98101" -301917,Apple Airpods Headphones,1,150,12/03/19 14:33,"850 Sunset St, San Francisco, CA 94016" -301917,Vareebadd Phone,1,400,12/03/19 14:33,"850 Sunset St, San Francisco, CA 94016" -301918,AAA Batteries (4-pack),2,2.99,12/13/19 15:13,"567 Madison St, San Francisco, CA 94016" -301919,USB-C Charging Cable,1,11.95,12/05/19 11:44,"947 Ridge St, San Francisco, CA 94016" -301920,AA Batteries (4-pack),2,3.84,12/22/19 15:01,"386 13th St, Los Angeles, CA 90001" -301921,Lightning Charging Cable,1,14.95,12/21/19 16:05,"611 12th St, Los Angeles, CA 90001" -301922,Apple Airpods Headphones,1,150,12/16/19 11:49,"647 Elm St, Atlanta, GA 30301" -301923,34in Ultrawide Monitor,1,379.99,12/19/19 03:40,"552 Ridge St, San Francisco, CA 94016" -301924,Lightning Charging Cable,1,14.95,12/29/19 23:23,"120 Lincoln St, Seattle, WA 98101" -301925,Macbook Pro Laptop,1,1700,12/25/19 10:42,"979 Main St, San Francisco, CA 94016" -301926,Vareebadd Phone,1,400,12/03/19 23:20,"590 Washington St, San Francisco, CA 94016" -301927,27in FHD Monitor,1,149.99,12/23/19 13:17,"568 11th St, Seattle, WA 98101" -301928,AAA Batteries (4-pack),1,2.99,12/15/19 11:10,"44 Dogwood St, Los Angeles, CA 90001" -301929,AA Batteries (4-pack),1,3.84,12/31/19 16:37,"193 Church St, Atlanta, GA 30301" -301930,USB-C Charging Cable,1,11.95,12/23/19 17:15,"903 Meadow St, Boston, MA 02215" -301931,Bose SoundSport Headphones,1,99.99,12/13/19 16:57,"444 12th St, Dallas, TX 75001" -301932,Wired Headphones,1,11.99,12/27/19 12:57,"2 Cedar St, Dallas, TX 75001" -301933,Lightning Charging Cable,1,14.95,12/15/19 12:50,"664 1st St, Los Angeles, CA 90001" -301934,27in FHD Monitor,1,149.99,12/19/19 23:49,"915 Lincoln St, Los Angeles, CA 90001" -301935,iPhone,1,700,12/02/19 05:11,"271 4th St, Los Angeles, CA 90001" -301936,Bose SoundSport Headphones,1,99.99,12/12/19 17:40,"718 Adams St, New York City, NY 10001" -301937,USB-C Charging Cable,2,11.95,12/05/19 23:36,"613 Willow St, Dallas, TX 75001" -301938,USB-C Charging Cable,2,11.95,12/16/19 10:00,"857 Willow St, Los Angeles, CA 90001" -301938,Wired Headphones,2,11.99,12/16/19 10:00,"857 Willow St, Los Angeles, CA 90001" -301939,USB-C Charging Cable,1,11.95,12/10/19 13:55,"242 Lincoln St, Austin, TX 73301" -301940,USB-C Charging Cable,1,11.95,12/04/19 15:39,"218 Lincoln St, Boston, MA 02215" -301941,Lightning Charging Cable,1,14.95,12/18/19 17:09,"663 9th St, San Francisco, CA 94016" -301942,Apple Airpods Headphones,1,150,12/30/19 11:19,"877 Adams St, Portland, OR 97035" -301943,USB-C Charging Cable,1,11.95,12/26/19 14:15,"375 Highland St, Dallas, TX 75001" -301944,AA Batteries (4-pack),1,3.84,12/28/19 23:16,"274 Center St, Los Angeles, CA 90001" -301945,iPhone,1,700,12/26/19 17:08,"791 12th St, Portland, OR 97035" -301946,AA Batteries (4-pack),1,3.84,12/12/19 15:35,"658 Center St, New York City, NY 10001" -301947,AA Batteries (4-pack),1,3.84,12/03/19 20:32,"647 Adams St, Los Angeles, CA 90001" -301948,AAA Batteries (4-pack),4,2.99,12/19/19 10:44,"553 7th St, New York City, NY 10001" -301949,Wired Headphones,1,11.99,12/15/19 13:51,"913 1st St, Boston, MA 02215" -301950,Apple Airpods Headphones,1,150,12/15/19 12:52,"543 Madison St, Los Angeles, CA 90001" -301951,Lightning Charging Cable,1,14.95,12/10/19 20:15,"141 Highland St, New York City, NY 10001" -301952,Bose SoundSport Headphones,1,99.99,12/20/19 12:07,"977 Adams St, Atlanta, GA 30301" -301953,Bose SoundSport Headphones,1,99.99,12/15/19 15:02,"811 Chestnut St, Los Angeles, CA 90001" -301954,Wired Headphones,1,11.99,12/24/19 15:26,"906 13th St, Los Angeles, CA 90001" -301955,AA Batteries (4-pack),1,3.84,12/16/19 12:19,"448 Jefferson St, San Francisco, CA 94016" -301956,Apple Airpods Headphones,1,150,12/06/19 11:15,"336 Highland St, Boston, MA 02215" -301957,USB-C Charging Cable,2,11.95,12/27/19 08:31,"27 Spruce St, Los Angeles, CA 90001" -301958,USB-C Charging Cable,1,11.95,12/07/19 10:18,"56 Lincoln St, Los Angeles, CA 90001" -301959,AA Batteries (4-pack),1,3.84,12/18/19 22:15,"184 Walnut St, Austin, TX 73301" -301960,AAA Batteries (4-pack),1,2.99,12/23/19 11:25,"500 Ridge St, Dallas, TX 75001" -301961,AAA Batteries (4-pack),2,2.99,12/13/19 14:09,"987 Cedar St, Seattle, WA 98101" -301962,Macbook Pro Laptop,1,1700,12/03/19 18:10,"707 Hickory St, San Francisco, CA 94016" -301963,34in Ultrawide Monitor,1,379.99,12/13/19 09:48,"186 Main St, San Francisco, CA 94016" -301964,Lightning Charging Cable,1,14.95,12/16/19 15:48,"128 Meadow St, Portland, ME 04101" -301965,USB-C Charging Cable,1,11.95,12/02/19 11:16,"32 Meadow St, Dallas, TX 75001" -301966,USB-C Charging Cable,1,11.95,12/03/19 21:22,"220 River St, Boston, MA 02215" -301967,Lightning Charging Cable,2,14.95,12/19/19 22:38,"965 Ridge St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -301968,AA Batteries (4-pack),1,3.84,12/17/19 10:07,"428 Lakeview St, Boston, MA 02215" -301969,Wired Headphones,1,11.99,12/12/19 15:20,"931 Wilson St, Seattle, WA 98101" -301970,AA Batteries (4-pack),1,3.84,12/06/19 19:30,"613 West St, San Francisco, CA 94016" -301971,Google Phone,1,600,12/22/19 17:56,"61 6th St, New York City, NY 10001" -301972,Lightning Charging Cable,1,14.95,12/11/19 21:21,"361 14th St, Seattle, WA 98101" -301973,Flatscreen TV,1,300,12/27/19 13:59,"147 13th St, New York City, NY 10001" -301974,Bose SoundSport Headphones,1,99.99,12/27/19 11:39,"768 10th St, Portland, ME 04101" -301975,USB-C Charging Cable,1,11.95,12/30/19 08:30,"940 Adams St, Boston, MA 02215" -301976,27in 4K Gaming Monitor,1,389.99,12/18/19 11:23,"379 Walnut St, New York City, NY 10001" -301977,Wired Headphones,1,11.99,12/20/19 18:34,"441 Ridge St, Atlanta, GA 30301" -301978,34in Ultrawide Monitor,2,379.99,12/08/19 20:23,"905 Park St, Los Angeles, CA 90001" -301979,Macbook Pro Laptop,1,1700,12/15/19 09:00,"661 Spruce St, San Francisco, CA 94016" -301980,27in 4K Gaming Monitor,1,389.99,12/31/19 11:16,"969 Willow St, San Francisco, CA 94016" -301981,Google Phone,1,600,12/01/19 17:16,"447 Maple St, Atlanta, GA 30301" -301982,Google Phone,1,600,12/12/19 10:55,"237 South St, Austin, TX 73301" -301983,USB-C Charging Cable,1,11.95,12/30/19 09:39,"706 Cherry St, New York City, NY 10001" -301984,USB-C Charging Cable,2,11.95,12/18/19 15:19,"81 Johnson St, Austin, TX 73301" -301985,Google Phone,1,600,12/23/19 14:15,"582 6th St, Portland, OR 97035" -301985,USB-C Charging Cable,1,11.95,12/23/19 14:15,"582 6th St, Portland, OR 97035" -301986,LG Washing Machine,1,600.0,12/10/19 18:19,"547 Hill St, Seattle, WA 98101" -301987,USB-C Charging Cable,1,11.95,12/01/19 07:48,"934 Cherry St, Los Angeles, CA 90001" -301988,Wired Headphones,1,11.99,12/29/19 18:20,"463 North St, Seattle, WA 98101" -301989,Lightning Charging Cable,1,14.95,12/15/19 23:55,"148 Jackson St, Seattle, WA 98101" -301990,AAA Batteries (4-pack),4,2.99,12/20/19 01:36,"814 Hill St, Los Angeles, CA 90001" -301991,34in Ultrawide Monitor,1,379.99,12/17/19 15:02,"257 Adams St, Dallas, TX 75001" -301992,27in 4K Gaming Monitor,1,389.99,12/26/19 09:04,"432 8th St, Boston, MA 02215" -301993,Lightning Charging Cable,1,14.95,12/04/19 14:45,"568 Jefferson St, Los Angeles, CA 90001" -301994,USB-C Charging Cable,1,11.95,12/31/19 11:34,"104 West St, Atlanta, GA 30301" -301995,AA Batteries (4-pack),3,3.84,12/31/19 09:15,"356 5th St, Seattle, WA 98101" -301996,Bose SoundSport Headphones,1,99.99,12/19/19 12:54,"675 1st St, Los Angeles, CA 90001" -301997,AAA Batteries (4-pack),1,2.99,12/15/19 20:16,"249 5th St, San Francisco, CA 94016" -301997,USB-C Charging Cable,1,11.95,12/15/19 20:16,"249 5th St, San Francisco, CA 94016" -301998,Google Phone,1,600,12/10/19 21:14,"557 Johnson St, San Francisco, CA 94016" -301999,USB-C Charging Cable,1,11.95,12/22/19 21:54,"350 11th St, Atlanta, GA 30301" -302000,USB-C Charging Cable,1,11.95,12/21/19 09:47,"299 14th St, New York City, NY 10001" -302001,AA Batteries (4-pack),1,3.84,12/29/19 18:48,"975 14th St, San Francisco, CA 94016" -302002,Apple Airpods Headphones,1,150,12/03/19 21:39,"753 Lake St, Boston, MA 02215" -302003,34in Ultrawide Monitor,1,379.99,12/28/19 08:00,"579 Madison St, San Francisco, CA 94016" -302004,AAA Batteries (4-pack),2,2.99,12/19/19 21:13,"58 Wilson St, Boston, MA 02215" -302005,iPhone,1,700,12/04/19 18:48,"902 Washington St, San Francisco, CA 94016" -302006,AAA Batteries (4-pack),1,2.99,12/21/19 10:05,"324 Elm St, New York City, NY 10001" -302007,Lightning Charging Cable,1,14.95,12/19/19 09:38,"764 Lincoln St, Los Angeles, CA 90001" -302008,Wired Headphones,1,11.99,12/25/19 10:04,"791 South St, Dallas, TX 75001" -302009,iPhone,1,700,12/30/19 01:55,"446 Madison St, Los Angeles, CA 90001" -302010,34in Ultrawide Monitor,1,379.99,12/10/19 01:43,"509 Church St, Los Angeles, CA 90001" -302011,iPhone,1,700,12/15/19 11:49,"245 Lakeview St, San Francisco, CA 94016" -302012,AA Batteries (4-pack),1,3.84,12/11/19 19:20,"252 Jefferson St, Boston, MA 02215" -302013,27in 4K Gaming Monitor,1,389.99,12/19/19 13:29,"586 7th St, San Francisco, CA 94016" -302014,Apple Airpods Headphones,1,150,12/21/19 20:41,"376 Park St, Atlanta, GA 30301" -302015,Wired Headphones,1,11.99,12/12/19 17:26,"107 South St, Austin, TX 73301" -302016,Apple Airpods Headphones,1,150,12/09/19 14:49,"475 Center St, San Francisco, CA 94016" -302017,Wired Headphones,1,11.99,12/05/19 15:04,"79 Willow St, San Francisco, CA 94016" -302018,AAA Batteries (4-pack),2,2.99,12/05/19 08:43,"444 South St, San Francisco, CA 94016" -302019,27in 4K Gaming Monitor,1,389.99,12/05/19 22:12,"997 Park St, New York City, NY 10001" -302020,AA Batteries (4-pack),2,3.84,12/06/19 18:49,"583 Adams St, Los Angeles, CA 90001" -302021,USB-C Charging Cable,1,11.95,12/11/19 21:23,"77 7th St, New York City, NY 10001" -302022,Wired Headphones,1,11.99,12/22/19 17:44,"533 Sunset St, Boston, MA 02215" -302023,Google Phone,1,600,12/20/19 21:37,"77 Cedar St, Portland, OR 97035" -302024,ThinkPad Laptop,1,999.99,12/06/19 21:58,"764 Hickory St, Boston, MA 02215" -302025,Google Phone,1,600,12/28/19 23:42,"647 5th St, New York City, NY 10001" -302026,Wired Headphones,1,11.99,12/08/19 22:35,"625 Madison St, San Francisco, CA 94016" -302027,Lightning Charging Cable,1,14.95,12/26/19 19:39,"360 Maple St, Austin, TX 73301" -302028,USB-C Charging Cable,1,11.95,12/10/19 09:24,"639 Elm St, San Francisco, CA 94016" -302029,Wired Headphones,1,11.99,12/06/19 00:02,"17 Chestnut St, Los Angeles, CA 90001" -302030,Lightning Charging Cable,1,14.95,12/11/19 18:42,"302 Park St, Boston, MA 02215" -302031,Apple Airpods Headphones,1,150,12/14/19 15:56,"620 Washington St, Atlanta, GA 30301" -302032,USB-C Charging Cable,1,11.95,12/19/19 09:02,"484 River St, Seattle, WA 98101" -302033,Macbook Pro Laptop,1,1700,12/25/19 23:13,"885 4th St, Boston, MA 02215" -302034,AA Batteries (4-pack),1,3.84,12/07/19 20:19,"899 North St, Atlanta, GA 30301" -302035,Wired Headphones,1,11.99,12/22/19 23:25,"759 Meadow St, San Francisco, CA 94016" -302036,USB-C Charging Cable,1,11.95,12/26/19 10:38,"881 2nd St, Boston, MA 02215" -302037,Macbook Pro Laptop,1,1700,12/17/19 07:38,"94 Hill St, Los Angeles, CA 90001" -302038,USB-C Charging Cable,1,11.95,12/15/19 18:38,"860 Sunset St, Atlanta, GA 30301" -302039,Bose SoundSport Headphones,1,99.99,12/13/19 23:58,"720 8th St, San Francisco, CA 94016" -302040,USB-C Charging Cable,1,11.95,12/06/19 13:11,"818 River St, Seattle, WA 98101" -302041,Wired Headphones,1,11.99,12/08/19 15:32,"248 Main St, Dallas, TX 75001" -302042,20in Monitor,1,109.99,12/04/19 19:10,"667 West St, New York City, NY 10001" -302043,Apple Airpods Headphones,1,150,12/05/19 17:40,"599 2nd St, Los Angeles, CA 90001" -302044,Lightning Charging Cable,1,14.95,12/16/19 19:28,"751 Lincoln St, Los Angeles, CA 90001" -302045,USB-C Charging Cable,1,11.95,12/17/19 11:38,"779 West St, Los Angeles, CA 90001" -302046,AA Batteries (4-pack),1,3.84,12/24/19 19:20,"143 Forest St, New York City, NY 10001" -302047,AAA Batteries (4-pack),2,2.99,12/17/19 23:56,"831 Spruce St, Dallas, TX 75001" -302048,27in FHD Monitor,1,149.99,12/25/19 08:32,"953 South St, New York City, NY 10001" -302049,Wired Headphones,1,11.99,12/08/19 11:05,"911 North St, Los Angeles, CA 90001" -302050,AA Batteries (4-pack),1,3.84,12/25/19 12:19,"12 Elm St, Portland, OR 97035" -302051,AAA Batteries (4-pack),2,2.99,12/26/19 12:09,"367 Cherry St, San Francisco, CA 94016" -302052,Lightning Charging Cable,1,14.95,12/25/19 18:51,"972 Cherry St, New York City, NY 10001" -302053,Flatscreen TV,1,300,12/13/19 05:48,"647 Cedar St, New York City, NY 10001" -302054,27in FHD Monitor,1,149.99,12/05/19 20:32,"243 Cherry St, New York City, NY 10001" -302055,iPhone,1,700,12/21/19 20:34,"156 West St, Los Angeles, CA 90001" -302055,Wired Headphones,1,11.99,12/21/19 20:34,"156 West St, Los Angeles, CA 90001" -302056,27in FHD Monitor,1,149.99,12/10/19 13:19,"191 12th St, Dallas, TX 75001" -302057,AAA Batteries (4-pack),1,2.99,12/16/19 14:26,"736 11th St, Dallas, TX 75001" -302058,27in FHD Monitor,1,149.99,12/31/19 11:46,"248 Hickory St, Portland, OR 97035" -302059,Lightning Charging Cable,1,14.95,12/06/19 08:16,"241 9th St, New York City, NY 10001" -302060,AA Batteries (4-pack),1,3.84,12/14/19 01:25,"458 Hickory St, San Francisco, CA 94016" -302061,ThinkPad Laptop,1,999.99,12/19/19 10:51,"924 Hill St, Boston, MA 02215" -302062,Macbook Pro Laptop,1,1700,12/25/19 18:56,"343 Dogwood St, Portland, OR 97035" -302063,AA Batteries (4-pack),1,3.84,12/07/19 02:08,"803 Lake St, Dallas, TX 75001" -302064,AA Batteries (4-pack),1,3.84,12/02/19 14:52,"337 Johnson St, San Francisco, CA 94016" -302065,Lightning Charging Cable,1,14.95,12/27/19 19:23,"93 Willow St, Los Angeles, CA 90001" -302066,Wired Headphones,1,11.99,12/11/19 11:22,"942 Center St, San Francisco, CA 94016" -302067,USB-C Charging Cable,1,11.95,12/21/19 13:13,"276 Washington St, Atlanta, GA 30301" -302068,Wired Headphones,1,11.99,12/11/19 19:46,"174 Johnson St, Portland, OR 97035" -302069,ThinkPad Laptop,1,999.99,12/21/19 13:18,"675 Main St, Dallas, TX 75001" -302070,AA Batteries (4-pack),1,3.84,12/03/19 08:55,"802 Maple St, San Francisco, CA 94016" -302071,USB-C Charging Cable,1,11.95,12/18/19 18:12,"417 8th St, Boston, MA 02215" -302072,Apple Airpods Headphones,1,150,12/19/19 22:25,"245 Elm St, Austin, TX 73301" -302073,AAA Batteries (4-pack),1,2.99,12/10/19 14:07,"649 Madison St, Dallas, TX 75001" -302074,Lightning Charging Cable,1,14.95,12/01/19 09:08,"156 Spruce St, San Francisco, CA 94016" -302075,USB-C Charging Cable,1,11.95,12/11/19 22:12,"497 2nd St, San Francisco, CA 94016" -302076,AAA Batteries (4-pack),1,2.99,12/25/19 13:28,"851 Spruce St, Atlanta, GA 30301" -302077,AAA Batteries (4-pack),2,2.99,12/01/19 22:45,"664 Johnson St, Los Angeles, CA 90001" -302078,Bose SoundSport Headphones,1,99.99,12/04/19 18:55,"806 Wilson St, Boston, MA 02215" -302079,Flatscreen TV,1,300,12/19/19 18:39,"837 Dogwood St, San Francisco, CA 94016" -302080,AA Batteries (4-pack),2,3.84,12/30/19 07:33,"934 Lakeview St, Los Angeles, CA 90001" -302081,Lightning Charging Cable,1,14.95,12/05/19 20:05,"635 Lake St, Los Angeles, CA 90001" -302082,Google Phone,1,600,12/05/19 11:32,"680 Walnut St, Boston, MA 02215" -302083,27in FHD Monitor,1,149.99,12/11/19 22:41,"239 2nd St, New York City, NY 10001" -302084,Lightning Charging Cable,1,14.95,12/02/19 13:43,"55 12th St, San Francisco, CA 94016" -302085,Lightning Charging Cable,1,14.95,12/25/19 11:57,"232 Spruce St, San Francisco, CA 94016" -302086,Bose SoundSport Headphones,1,99.99,12/18/19 09:31,"955 Jackson St, Atlanta, GA 30301" -,,,,, -302087,AA Batteries (4-pack),1,3.84,12/10/19 14:49,"779 14th St, San Francisco, CA 94016" -302088,AAA Batteries (4-pack),4,2.99,12/25/19 12:28,"576 Willow St, San Francisco, CA 94016" -302089,Wired Headphones,1,11.99,12/14/19 18:12,"345 Wilson St, Austin, TX 73301" -302090,Apple Airpods Headphones,1,150,12/11/19 13:21,"908 6th St, Austin, TX 73301" -302091,27in FHD Monitor,1,149.99,12/19/19 21:41,"708 Spruce St, Los Angeles, CA 90001" -302092,USB-C Charging Cable,1,11.95,12/28/19 11:31,"411 12th St, Boston, MA 02215" -302093,34in Ultrawide Monitor,1,379.99,12/06/19 10:25,"731 Dogwood St, Austin, TX 73301" -302094,AAA Batteries (4-pack),1,2.99,12/31/19 22:02,"551 9th St, Los Angeles, CA 90001" -302095,AA Batteries (4-pack),1,3.84,12/18/19 15:08,"219 14th St, San Francisco, CA 94016" -302096,AAA Batteries (4-pack),1,2.99,12/15/19 15:49,"774 12th St, Los Angeles, CA 90001" -302097,AA Batteries (4-pack),1,3.84,12/23/19 13:38,"908 West St, Los Angeles, CA 90001" -302098,USB-C Charging Cable,1,11.95,12/30/19 15:59,"970 Highland St, Atlanta, GA 30301" -302099,AAA Batteries (4-pack),4,2.99,12/23/19 22:44,"277 Willow St, Austin, TX 73301" -302100,Flatscreen TV,1,300,12/21/19 10:35,"574 8th St, Boston, MA 02215" -302101,Wired Headphones,1,11.99,12/17/19 12:13,"16 12th St, San Francisco, CA 94016" -302102,Lightning Charging Cable,1,14.95,12/03/19 20:37,"555 Hickory St, Atlanta, GA 30301" -302103,AAA Batteries (4-pack),2,2.99,12/06/19 14:43,"825 Madison St, Los Angeles, CA 90001" -302104,20in Monitor,1,109.99,12/07/19 13:08,"127 Park St, Seattle, WA 98101" -302105,Apple Airpods Headphones,1,150,12/17/19 10:15,"218 River St, Atlanta, GA 30301" -302106,Apple Airpods Headphones,1,150,12/31/19 12:59,"972 Forest St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -302107,Apple Airpods Headphones,1,150,12/16/19 16:44,"510 Forest St, San Francisco, CA 94016" -302108,34in Ultrawide Monitor,1,379.99,12/18/19 18:40,"12 13th St, Los Angeles, CA 90001" -302109,Lightning Charging Cable,1,14.95,12/09/19 10:57,"154 Cherry St, Atlanta, GA 30301" -302110,AA Batteries (4-pack),2,3.84,12/04/19 21:28,"30 Forest St, Boston, MA 02215" -302111,Bose SoundSport Headphones,1,99.99,12/18/19 21:27,"69 13th St, San Francisco, CA 94016" -302112,AAA Batteries (4-pack),1,2.99,12/28/19 13:05,"869 Sunset St, New York City, NY 10001" -302113,USB-C Charging Cable,1,11.95,12/24/19 18:05,"157 North St, Austin, TX 73301" -302114,USB-C Charging Cable,1,11.95,12/01/19 21:20,"114 9th St, San Francisco, CA 94016" -302115,USB-C Charging Cable,1,11.95,12/12/19 22:52,"267 11th St, Dallas, TX 75001" -302116,LG Washing Machine,1,600.0,12/08/19 20:08,"674 9th St, Los Angeles, CA 90001" -302117,Google Phone,1,600,12/09/19 10:56,"450 Pine St, Los Angeles, CA 90001" -302118,iPhone,1,700,12/09/19 08:38,"881 Highland St, San Francisco, CA 94016" -302119,27in FHD Monitor,1,149.99,12/07/19 14:11,"603 Park St, San Francisco, CA 94016" -302120,Wired Headphones,1,11.99,12/27/19 08:09,"257 Washington St, Atlanta, GA 30301" -302121,Wired Headphones,1,11.99,12/08/19 22:06,"321 Highland St, Seattle, WA 98101" -302122,iPhone,1,700,12/09/19 13:20,"440 Washington St, San Francisco, CA 94016" -302123,Bose SoundSport Headphones,1,99.99,12/07/19 12:55,"362 South St, San Francisco, CA 94016" -302124,Bose SoundSport Headphones,1,99.99,12/10/19 22:22,"917 Sunset St, Atlanta, GA 30301" -302125,Google Phone,1,600,12/16/19 17:12,"885 11th St, San Francisco, CA 94016" -302126,USB-C Charging Cable,1,11.95,12/18/19 18:00,"986 Ridge St, Boston, MA 02215" -302127,Google Phone,1,600,12/21/19 19:36,"658 Hill St, San Francisco, CA 94016" -302127,Wired Headphones,1,11.99,12/21/19 19:36,"658 Hill St, San Francisco, CA 94016" -302128,AA Batteries (4-pack),1,3.84,12/21/19 06:05,"971 9th St, Boston, MA 02215" -302129,27in FHD Monitor,1,149.99,12/24/19 23:00,"10 8th St, San Francisco, CA 94016" -302130,27in 4K Gaming Monitor,1,389.99,12/17/19 20:34,"719 14th St, Los Angeles, CA 90001" -302131,Lightning Charging Cable,1,14.95,12/31/19 12:39,"911 Ridge St, Boston, MA 02215" -302132,LG Washing Machine,1,600.0,12/29/19 05:36,"158 Hill St, San Francisco, CA 94016" -302133,20in Monitor,1,109.99,12/05/19 20:42,"875 4th St, Boston, MA 02215" -302134,AAA Batteries (4-pack),1,2.99,12/01/19 22:53,"420 North St, Atlanta, GA 30301" -302135,Flatscreen TV,1,300,12/18/19 10:29,"750 West St, San Francisco, CA 94016" -302136,AA Batteries (4-pack),1,3.84,12/15/19 10:36,"558 Cedar St, San Francisco, CA 94016" -302137,34in Ultrawide Monitor,1,379.99,12/26/19 19:28,"577 10th St, Portland, OR 97035" -302138,27in 4K Gaming Monitor,1,389.99,12/09/19 12:02,"936 Cedar St, Los Angeles, CA 90001" -302139,Bose SoundSport Headphones,1,99.99,12/28/19 14:56,"81 Madison St, Dallas, TX 75001" -302140,27in 4K Gaming Monitor,1,389.99,12/08/19 22:43,"208 Hickory St, Los Angeles, CA 90001" -302141,20in Monitor,1,109.99,12/08/19 13:06,"346 Forest St, New York City, NY 10001" -302142,AAA Batteries (4-pack),2,2.99,12/19/19 14:12,"136 Spruce St, Boston, MA 02215" -302143,AA Batteries (4-pack),1,3.84,12/18/19 19:51,"965 13th St, Seattle, WA 98101" -302144,20in Monitor,1,109.99,12/04/19 11:17,"782 Adams St, Los Angeles, CA 90001" -302145,AA Batteries (4-pack),1,3.84,12/17/19 14:14,"339 Center St, Los Angeles, CA 90001" -302146,Lightning Charging Cable,1,14.95,12/14/19 10:45,"427 13th St, Dallas, TX 75001" -302146,34in Ultrawide Monitor,1,379.99,12/14/19 10:45,"427 13th St, Dallas, TX 75001" -302147,Macbook Pro Laptop,1,1700,12/13/19 13:44,"976 14th St, Los Angeles, CA 90001" -302148,Google Phone,1,600,12/30/19 21:16,"749 Church St, Boston, MA 02215" -302149,Apple Airpods Headphones,1,150,12/29/19 23:05,"271 Park St, Los Angeles, CA 90001" -302150,AAA Batteries (4-pack),1,2.99,12/29/19 19:53,"531 9th St, Dallas, TX 75001" -302151,AA Batteries (4-pack),2,3.84,12/20/19 13:19,"641 Cherry St, San Francisco, CA 94016" -302152,AAA Batteries (4-pack),3,2.99,12/07/19 14:00,"401 Madison St, Portland, OR 97035" -302153,34in Ultrawide Monitor,1,379.99,12/16/19 17:17,"601 4th St, San Francisco, CA 94016" -302154,Bose SoundSport Headphones,1,99.99,12/30/19 18:04,"454 Pine St, Dallas, TX 75001" -302154,Apple Airpods Headphones,1,150,12/30/19 18:04,"454 Pine St, Dallas, TX 75001" -302155,Lightning Charging Cable,1,14.95,12/26/19 20:10,"837 Cherry St, San Francisco, CA 94016" -302156,USB-C Charging Cable,1,11.95,12/23/19 11:47,"444 West St, Seattle, WA 98101" -302157,Bose SoundSport Headphones,1,99.99,12/14/19 14:17,"861 Cedar St, Los Angeles, CA 90001" -302158,ThinkPad Laptop,1,999.99,12/06/19 16:43,"585 1st St, San Francisco, CA 94016" -302159,Flatscreen TV,1,300,12/31/19 21:03,"721 Dogwood St, Los Angeles, CA 90001" -302160,Lightning Charging Cable,1,14.95,12/26/19 13:46,"40 Walnut St, San Francisco, CA 94016" -302161,Flatscreen TV,1,300,12/15/19 14:20,"496 12th St, Boston, MA 02215" -302162,Wired Headphones,1,11.99,12/31/19 00:00,"369 Lakeview St, New York City, NY 10001" -302163,27in FHD Monitor,1,149.99,12/29/19 18:31,"264 Hickory St, Atlanta, GA 30301" -302164,Lightning Charging Cable,1,14.95,12/07/19 10:14,"89 River St, Boston, MA 02215" -302165,34in Ultrawide Monitor,1,379.99,12/16/19 21:50,"271 10th St, San Francisco, CA 94016" -302166,34in Ultrawide Monitor,1,379.99,12/13/19 22:57,"447 2nd St, Los Angeles, CA 90001" -302167,Lightning Charging Cable,1,14.95,12/28/19 13:44,"992 6th St, San Francisco, CA 94016" -302168,Flatscreen TV,1,300,12/23/19 10:09,"549 Cedar St, Portland, OR 97035" -302169,AAA Batteries (4-pack),1,2.99,12/31/19 13:39,"623 West St, Boston, MA 02215" -302170,AAA Batteries (4-pack),1,2.99,12/05/19 13:33,"117 Jefferson St, Boston, MA 02215" -302171,USB-C Charging Cable,1,11.95,12/30/19 19:05,"683 10th St, New York City, NY 10001" -302171,Wired Headphones,1,11.99,12/30/19 19:05,"683 10th St, New York City, NY 10001" -302172,AA Batteries (4-pack),1,3.84,12/25/19 14:34,"871 10th St, Atlanta, GA 30301" -302173,34in Ultrawide Monitor,1,379.99,12/26/19 18:59,"968 Dogwood St, San Francisco, CA 94016" -302174,ThinkPad Laptop,1,999.99,12/20/19 17:20,"946 9th St, New York City, NY 10001" -302175,AA Batteries (4-pack),1,3.84,12/18/19 11:54,"81 West St, San Francisco, CA 94016" -302176,USB-C Charging Cable,1,11.95,12/06/19 17:51,"960 Lincoln St, Boston, MA 02215" -302177,Apple Airpods Headphones,1,150,12/21/19 15:44,"476 Main St, San Francisco, CA 94016" -302178,Lightning Charging Cable,2,14.95,12/19/19 12:17,"633 1st St, Boston, MA 02215" -302179,AA Batteries (4-pack),1,3.84,12/11/19 14:41,"98 Cedar St, New York City, NY 10001" -302180,AA Batteries (4-pack),1,3.84,12/28/19 12:17,"291 Hill St, Atlanta, GA 30301" -302181,USB-C Charging Cable,1,11.95,12/04/19 15:41,"891 Lake St, San Francisco, CA 94016" -302182,AA Batteries (4-pack),2,3.84,12/21/19 22:19,"283 5th St, San Francisco, CA 94016" -302183,Wired Headphones,1,11.99,12/16/19 09:05,"291 7th St, San Francisco, CA 94016" -302184,Lightning Charging Cable,1,14.95,12/16/19 15:08,"421 River St, Atlanta, GA 30301" -302185,AAA Batteries (4-pack),1,2.99,12/23/19 09:42,"931 Willow St, San Francisco, CA 94016" -302186,AAA Batteries (4-pack),1,2.99,12/24/19 10:04,"516 11th St, Los Angeles, CA 90001" -302187,Lightning Charging Cable,2,14.95,12/11/19 13:25,"112 Church St, Los Angeles, CA 90001" -302188,USB-C Charging Cable,1,11.95,12/09/19 19:02,"123 Spruce St, Los Angeles, CA 90001" -302189,AA Batteries (4-pack),1,3.84,12/08/19 21:57,"601 10th St, Los Angeles, CA 90001" -302190,AA Batteries (4-pack),1,3.84,12/03/19 18:14,"304 Park St, Los Angeles, CA 90001" -302191,Lightning Charging Cable,1,14.95,12/02/19 13:51,"130 Ridge St, Austin, TX 73301" -302192,ThinkPad Laptop,1,999.99,12/21/19 10:19,"314 12th St, Los Angeles, CA 90001" -302193,Wired Headphones,1,11.99,12/11/19 10:35,"894 Pine St, San Francisco, CA 94016" -302194,Google Phone,1,600,12/05/19 10:08,"600 Maple St, Dallas, TX 75001" -302195,Apple Airpods Headphones,1,150,12/30/19 18:26,"405 Church St, San Francisco, CA 94016" -302196,Wired Headphones,1,11.99,12/26/19 12:46,"435 5th St, New York City, NY 10001" -302197,AAA Batteries (4-pack),1,2.99,12/16/19 20:30,"960 Elm St, Atlanta, GA 30301" -302198,Lightning Charging Cable,1,14.95,12/29/19 04:15,"402 6th St, Dallas, TX 75001" -302199,Wired Headphones,1,11.99,12/15/19 10:32,"493 River St, Boston, MA 02215" -302200,AA Batteries (4-pack),1,3.84,12/31/19 01:48,"334 4th St, Atlanta, GA 30301" -302201,Apple Airpods Headphones,1,150,12/18/19 14:58,"252 9th St, Los Angeles, CA 90001" -302202,Bose SoundSport Headphones,1,99.99,12/29/19 17:28,"380 6th St, Dallas, TX 75001" -302203,Wired Headphones,1,11.99,12/06/19 20:04,"261 9th St, Austin, TX 73301" -302204,AAA Batteries (4-pack),3,2.99,12/20/19 12:49,"563 Elm St, Boston, MA 02215" -302205,AAA Batteries (4-pack),1,2.99,12/30/19 06:59,"506 14th St, San Francisco, CA 94016" -302206,USB-C Charging Cable,1,11.95,12/12/19 18:04,"95 Lincoln St, Portland, OR 97035" -302207,USB-C Charging Cable,1,11.95,12/16/19 10:56,"917 Jefferson St, Los Angeles, CA 90001" -302208,AAA Batteries (4-pack),2,2.99,12/16/19 00:11,"935 Park St, Seattle, WA 98101" -302209,USB-C Charging Cable,1,11.95,12/14/19 10:42,"16 Lincoln St, Boston, MA 02215" -302210,Wired Headphones,1,11.99,12/19/19 14:10,"921 Johnson St, San Francisco, CA 94016" -302211,AAA Batteries (4-pack),1,2.99,12/06/19 12:05,"151 8th St, Austin, TX 73301" -302212,USB-C Charging Cable,1,11.95,12/24/19 18:17,"831 Meadow St, Portland, OR 97035" -302213,Flatscreen TV,1,300,12/06/19 15:35,"283 Lake St, Austin, TX 73301" -302214,Apple Airpods Headphones,1,150,12/06/19 17:51,"973 Jackson St, San Francisco, CA 94016" -302215,AA Batteries (4-pack),2,3.84,12/14/19 10:07,"655 5th St, Portland, OR 97035" -302216,27in FHD Monitor,1,149.99,12/11/19 21:46,"510 Center St, Atlanta, GA 30301" -302217,Wired Headphones,1,11.99,12/24/19 10:48,"508 Chestnut St, San Francisco, CA 94016" -302218,27in FHD Monitor,1,149.99,12/31/19 16:41,"402 Sunset St, Los Angeles, CA 90001" -302219,AAA Batteries (4-pack),1,2.99,12/07/19 15:34,"828 2nd St, San Francisco, CA 94016" -302220,AAA Batteries (4-pack),1,2.99,12/22/19 00:42,"59 Jefferson St, Atlanta, GA 30301" -302221,Wired Headphones,1,11.99,12/15/19 21:27,"868 Cherry St, New York City, NY 10001" -302222,Bose SoundSport Headphones,1,99.99,12/26/19 05:20,"359 Pine St, New York City, NY 10001" -302223,AAA Batteries (4-pack),1,2.99,12/20/19 08:37,"464 11th St, San Francisco, CA 94016" -302224,USB-C Charging Cable,1,11.95,12/08/19 11:41,"739 North St, Seattle, WA 98101" -302225,Apple Airpods Headphones,1,150,12/14/19 15:13,"961 Lincoln St, New York City, NY 10001" -302226,AAA Batteries (4-pack),5,2.99,12/24/19 10:22,"894 7th St, New York City, NY 10001" -302227,Lightning Charging Cable,1,14.95,12/14/19 12:24,"767 8th St, Portland, OR 97035" -302228,34in Ultrawide Monitor,1,379.99,12/12/19 15:17,"350 Madison St, San Francisco, CA 94016" -302229,AA Batteries (4-pack),1,3.84,12/05/19 17:23,"131 4th St, Los Angeles, CA 90001" -302230,Lightning Charging Cable,1,14.95,12/16/19 20:19,"847 Johnson St, Atlanta, GA 30301" -302231,AAA Batteries (4-pack),1,2.99,12/15/19 12:11,"285 Washington St, Los Angeles, CA 90001" -302232,27in FHD Monitor,1,149.99,12/23/19 19:30,"79 Wilson St, Boston, MA 02215" -302233,Wired Headphones,1,11.99,12/27/19 05:34,"347 Ridge St, Dallas, TX 75001" -302234,USB-C Charging Cable,2,11.95,12/09/19 16:03,"520 Lincoln St, Dallas, TX 75001" -302235,Wired Headphones,1,11.99,12/30/19 12:13,"701 13th St, New York City, NY 10001" -302236,27in FHD Monitor,1,149.99,12/17/19 15:39,"582 Park St, New York City, NY 10001" -302237,Wired Headphones,1,11.99,12/11/19 07:05,"355 Meadow St, San Francisco, CA 94016" -302238,Bose SoundSport Headphones,1,99.99,12/19/19 14:34,"15 Lincoln St, San Francisco, CA 94016" -302239,Lightning Charging Cable,1,14.95,12/15/19 19:53,"843 6th St, Dallas, TX 75001" -302240,Lightning Charging Cable,1,14.95,12/09/19 19:28,"363 14th St, San Francisco, CA 94016" -302241,Bose SoundSport Headphones,1,99.99,12/01/19 20:42,"586 9th St, Dallas, TX 75001" -302242,Flatscreen TV,1,300,12/09/19 16:58,"973 Spruce St, Seattle, WA 98101" -302243,USB-C Charging Cable,1,11.95,12/20/19 19:28,"833 River St, New York City, NY 10001" -302244,34in Ultrawide Monitor,1,379.99,12/25/19 22:46,"79 Ridge St, San Francisco, CA 94016" -302245,USB-C Charging Cable,1,11.95,12/11/19 13:08,"129 Adams St, New York City, NY 10001" -302246,27in 4K Gaming Monitor,1,389.99,12/08/19 13:14,"686 Forest St, Los Angeles, CA 90001" -302247,AA Batteries (4-pack),2,3.84,12/29/19 23:00,"674 1st St, Los Angeles, CA 90001" -302248,ThinkPad Laptop,1,999.99,12/08/19 17:58,"88 Dogwood St, Seattle, WA 98101" -302249,AAA Batteries (4-pack),2,2.99,12/29/19 20:43,"426 Main St, Portland, OR 97035" -302250,Apple Airpods Headphones,1,150,12/10/19 13:30,"67 South St, Atlanta, GA 30301" -302251,Bose SoundSport Headphones,1,99.99,12/26/19 14:28,"322 Lincoln St, Atlanta, GA 30301" -302252,27in 4K Gaming Monitor,1,389.99,12/01/19 19:27,"244 Center St, Los Angeles, CA 90001" -302253,AAA Batteries (4-pack),1,2.99,12/31/19 11:54,"748 Elm St, New York City, NY 10001" -302254,Lightning Charging Cable,1,14.95,12/03/19 09:13,"831 Lake St, Los Angeles, CA 90001" -302255,USB-C Charging Cable,1,11.95,12/15/19 11:00,"626 Washington St, Atlanta, GA 30301" -302256,Wired Headphones,1,11.99,12/10/19 12:12,"797 Elm St, Austin, TX 73301" -302257,AAA Batteries (4-pack),2,2.99,12/25/19 10:37,"774 Madison St, Los Angeles, CA 90001" -302258,AA Batteries (4-pack),2,3.84,12/06/19 19:10,"577 1st St, Seattle, WA 98101" -302259,AA Batteries (4-pack),2,3.84,12/18/19 18:14,"320 13th St, Boston, MA 02215" -302260,USB-C Charging Cable,1,11.95,12/19/19 18:39,"192 5th St, Austin, TX 73301" -302261,Apple Airpods Headphones,1,150,12/01/19 23:17,"127 12th St, Boston, MA 02215" -302262,AAA Batteries (4-pack),1,2.99,12/06/19 19:37,"268 Center St, Atlanta, GA 30301" -302263,20in Monitor,1,109.99,12/07/19 10:37,"513 Park St, Boston, MA 02215" -302264,AA Batteries (4-pack),1,3.84,12/05/19 21:13,"592 River St, Boston, MA 02215" -302265,Apple Airpods Headphones,1,150,12/06/19 12:10,"669 Highland St, Atlanta, GA 30301" -302266,Lightning Charging Cable,1,14.95,12/18/19 16:23,"10 9th St, New York City, NY 10001" -302267,USB-C Charging Cable,1,11.95,12/14/19 11:14,"346 11th St, San Francisco, CA 94016" -302268,USB-C Charging Cable,1,11.95,12/29/19 15:27,"558 12th St, Los Angeles, CA 90001" -302269,Apple Airpods Headphones,1,150,12/09/19 20:39,"817 12th St, San Francisco, CA 94016" -302269,Google Phone,1,600,12/09/19 20:39,"817 12th St, San Francisco, CA 94016" -302270,AAA Batteries (4-pack),1,2.99,12/27/19 19:23,"872 Maple St, New York City, NY 10001" -302271,27in 4K Gaming Monitor,1,389.99,12/20/19 16:51,"257 12th St, Los Angeles, CA 90001" -302272,Lightning Charging Cable,1,14.95,12/15/19 11:52,"549 Ridge St, Los Angeles, CA 90001" -302273,USB-C Charging Cable,1,11.95,12/09/19 22:53,"999 4th St, Seattle, WA 98101" -302274,AA Batteries (4-pack),1,3.84,12/11/19 20:40,"415 Pine St, New York City, NY 10001" -302275,AAA Batteries (4-pack),1,2.99,12/10/19 16:14,"623 West St, Boston, MA 02215" -302276,AAA Batteries (4-pack),2,2.99,12/26/19 08:32,"90 Main St, New York City, NY 10001" -302277,Bose SoundSport Headphones,1,99.99,12/23/19 21:48,"316 Forest St, Los Angeles, CA 90001" -302278,Apple Airpods Headphones,1,150,12/02/19 15:36,"174 Jefferson St, New York City, NY 10001" -302279,AAA Batteries (4-pack),1,2.99,12/29/19 15:31,"510 Walnut St, San Francisco, CA 94016" -302280,AA Batteries (4-pack),1,3.84,12/14/19 23:18,"186 Cedar St, Austin, TX 73301" -302281,AAA Batteries (4-pack),1,2.99,12/07/19 18:28,"270 5th St, New York City, NY 10001" -302282,Lightning Charging Cable,1,14.95,12/21/19 21:24,"37 Hickory St, Boston, MA 02215" -302283,USB-C Charging Cable,1,11.95,12/16/19 19:49,"163 Cedar St, San Francisco, CA 94016" -302284,USB-C Charging Cable,1,11.95,12/21/19 04:08,"743 Lincoln St, Dallas, TX 75001" -302285,Bose SoundSport Headphones,1,99.99,12/18/19 23:10,"793 Spruce St, Seattle, WA 98101" -302286,USB-C Charging Cable,1,11.95,12/25/19 16:22,"431 Main St, Boston, MA 02215" -302287,AA Batteries (4-pack),3,3.84,12/30/19 04:15,"272 Main St, Los Angeles, CA 90001" -302288,34in Ultrawide Monitor,1,379.99,12/18/19 18:51,"862 Chestnut St, Atlanta, GA 30301" -302289,Lightning Charging Cable,1,14.95,12/15/19 06:33,"419 Main St, San Francisco, CA 94016" -302290,Flatscreen TV,1,300,12/01/19 20:28,"549 2nd St, New York City, NY 10001" -302291,AAA Batteries (4-pack),3,2.99,12/02/19 19:19,"534 Madison St, San Francisco, CA 94016" -302292,27in FHD Monitor,1,149.99,12/10/19 11:04,"10 4th St, San Francisco, CA 94016" -302293,AAA Batteries (4-pack),2,2.99,12/17/19 11:36,"71 7th St, New York City, NY 10001" -302294,AAA Batteries (4-pack),4,2.99,12/30/19 15:49,"233 Ridge St, Austin, TX 73301" -302295,iPhone,1,700,12/27/19 10:12,"215 Madison St, Seattle, WA 98101" -302296,Wired Headphones,1,11.99,12/14/19 18:35,"92 Maple St, San Francisco, CA 94016" -302297,Bose SoundSport Headphones,1,99.99,12/24/19 20:09,"817 Church St, San Francisco, CA 94016" -302298,Wired Headphones,3,11.99,12/16/19 12:31,"47 Washington St, Boston, MA 02215" -302299,USB-C Charging Cable,1,11.95,12/07/19 19:47,"582 Cedar St, Los Angeles, CA 90001" -302300,20in Monitor,1,109.99,12/18/19 13:51,"88 River St, Atlanta, GA 30301" -302301,USB-C Charging Cable,1,11.95,12/06/19 23:41,"203 Forest St, New York City, NY 10001" -302302,Wired Headphones,1,11.99,12/03/19 11:16,"636 South St, San Francisco, CA 94016" -302303,AA Batteries (4-pack),1,3.84,12/02/19 21:59,"491 Forest St, New York City, NY 10001" -302304,USB-C Charging Cable,1,11.95,12/13/19 07:21,"250 Lakeview St, San Francisco, CA 94016" -302305,Google Phone,1,600,12/14/19 12:44,"917 North St, Boston, MA 02215" -302306,AA Batteries (4-pack),1,3.84,12/07/19 00:55,"489 Hickory St, Los Angeles, CA 90001" -302307,Lightning Charging Cable,1,14.95,12/02/19 20:19,"264 River St, New York City, NY 10001" -302308,ThinkPad Laptop,1,999.99,12/11/19 14:29,"565 Forest St, San Francisco, CA 94016" -302309,34in Ultrawide Monitor,1,379.99,12/19/19 10:33,"649 10th St, New York City, NY 10001" -302310,AA Batteries (4-pack),2,3.84,12/29/19 08:26,"575 6th St, Seattle, WA 98101" -302311,20in Monitor,1,109.99,12/10/19 10:00,"270 Church St, Seattle, WA 98101" -302312,Google Phone,1,600,12/04/19 00:00,"442 9th St, Seattle, WA 98101" -302313,Bose SoundSport Headphones,1,99.99,12/31/19 13:06,"685 Lakeview St, San Francisco, CA 94016" -302314,Bose SoundSport Headphones,1,99.99,12/16/19 18:59,"785 Adams St, Los Angeles, CA 90001" -302315,USB-C Charging Cable,1,11.95,12/20/19 11:53,"450 Washington St, San Francisco, CA 94016" -302316,Lightning Charging Cable,1,14.95,12/14/19 01:40,"852 8th St, Dallas, TX 75001" -302317,USB-C Charging Cable,1,11.95,12/08/19 05:23,"93 10th St, Boston, MA 02215" -302318,Lightning Charging Cable,2,14.95,12/14/19 18:06,"160 Maple St, New York City, NY 10001" -302319,34in Ultrawide Monitor,1,379.99,12/23/19 19:48,"442 10th St, San Francisco, CA 94016" -302320,Wired Headphones,1,11.99,12/07/19 18:38,"332 Jackson St, Boston, MA 02215" -302321,AA Batteries (4-pack),1,3.84,12/04/19 21:57,"472 Dogwood St, San Francisco, CA 94016" -302322,20in Monitor,1,109.99,12/14/19 19:44,"453 Adams St, Atlanta, GA 30301" -302322,Wired Headphones,2,11.99,12/14/19 19:44,"453 Adams St, Atlanta, GA 30301" -302323,AAA Batteries (4-pack),2,2.99,12/19/19 19:19,"534 13th St, Portland, OR 97035" -302324,Apple Airpods Headphones,1,150,12/14/19 16:31,"351 Lake St, Portland, OR 97035" -302325,Apple Airpods Headphones,1,150,12/07/19 17:42,"718 Johnson St, Atlanta, GA 30301" -302326,Apple Airpods Headphones,1,150,12/29/19 12:58,"154 Johnson St, Boston, MA 02215" -302327,Lightning Charging Cable,1,14.95,12/13/19 14:49,"533 Chestnut St, New York City, NY 10001" -302328,Wired Headphones,1,11.99,12/02/19 20:16,"627 West St, New York City, NY 10001" -302329,iPhone,1,700,12/17/19 08:18,"754 11th St, San Francisco, CA 94016" -302330,27in FHD Monitor,1,149.99,12/03/19 02:08,"157 Madison St, Portland, OR 97035" -302331,USB-C Charging Cable,1,11.95,12/23/19 11:05,"101 1st St, Austin, TX 73301" -302332,iPhone,1,700,12/11/19 15:33,"575 Jefferson St, Los Angeles, CA 90001" -302332,Apple Airpods Headphones,1,150,12/11/19 15:33,"575 Jefferson St, Los Angeles, CA 90001" -302333,USB-C Charging Cable,1,11.95,12/29/19 15:11,"244 Meadow St, San Francisco, CA 94016" -302334,USB-C Charging Cable,3,11.95,12/15/19 18:09,"129 2nd St, Dallas, TX 75001" -302335,Lightning Charging Cable,1,14.95,12/02/19 22:59,"772 Hickory St, Los Angeles, CA 90001" -302336,Flatscreen TV,1,300,12/12/19 12:38,"626 7th St, New York City, NY 10001" -302337,USB-C Charging Cable,1,11.95,12/28/19 16:14,"787 Cedar St, Austin, TX 73301" -302338,Apple Airpods Headphones,1,150,12/14/19 12:38,"189 2nd St, San Francisco, CA 94016" -302339,USB-C Charging Cable,1,11.95,12/08/19 08:21,"307 4th St, San Francisco, CA 94016" -302340,USB-C Charging Cable,1,11.95,12/13/19 16:14,"692 Lincoln St, New York City, NY 10001" -302341,Lightning Charging Cable,1,14.95,12/20/19 19:46,"294 Lake St, San Francisco, CA 94016" -302342,Bose SoundSport Headphones,1,99.99,12/23/19 07:55,"68 9th St, Portland, OR 97035" -302343,AA Batteries (4-pack),2,3.84,12/22/19 13:30,"401 Ridge St, Portland, ME 04101" -302344,Lightning Charging Cable,1,14.95,12/17/19 19:16,"643 Hickory St, San Francisco, CA 94016" -302345,Google Phone,1,600,12/19/19 00:38,"427 Spruce St, Boston, MA 02215" -302346,USB-C Charging Cable,1,11.95,12/23/19 11:53,"779 North St, Austin, TX 73301" -302347,Wired Headphones,1,11.99,12/08/19 12:48,"73 Jefferson St, Los Angeles, CA 90001" -302348,Wired Headphones,1,11.99,12/08/19 11:23,"414 South St, San Francisco, CA 94016" -302349,Bose SoundSport Headphones,1,99.99,12/28/19 03:43,"857 8th St, New York City, NY 10001" -302350,Wired Headphones,1,11.99,12/10/19 18:55,"552 Sunset St, San Francisco, CA 94016" -302351,Wired Headphones,3,11.99,12/18/19 13:12,"339 Center St, New York City, NY 10001" -302352,USB-C Charging Cable,1,11.95,12/26/19 11:43,"572 7th St, San Francisco, CA 94016" -302353,Flatscreen TV,1,300,12/18/19 08:54,"142 Madison St, Austin, TX 73301" -302354,Flatscreen TV,1,300,12/29/19 20:03,"47 Park St, San Francisco, CA 94016" -302355,AA Batteries (4-pack),1,3.84,12/06/19 13:07,"142 Jefferson St, Boston, MA 02215" -302356,Bose SoundSport Headphones,1,99.99,12/06/19 10:44,"923 Park St, San Francisco, CA 94016" -302357,AAA Batteries (4-pack),1,2.99,12/21/19 18:02,"954 Willow St, New York City, NY 10001" -302358,ThinkPad Laptop,1,999.99,12/31/19 21:37,"788 12th St, New York City, NY 10001" -302359,AA Batteries (4-pack),4,3.84,12/03/19 15:11,"628 Hickory St, Los Angeles, CA 90001" -302360,Macbook Pro Laptop,1,1700,12/20/19 22:17,"895 Meadow St, New York City, NY 10001" -302361,Lightning Charging Cable,1,14.95,12/06/19 13:20,"617 Meadow St, San Francisco, CA 94016" -302362,Lightning Charging Cable,1,14.95,12/29/19 11:59,"566 Ridge St, San Francisco, CA 94016" -302363,Bose SoundSport Headphones,1,99.99,12/11/19 11:37,"574 8th St, Boston, MA 02215" -302364,Apple Airpods Headphones,1,150,12/21/19 17:28,"320 Adams St, Atlanta, GA 30301" -302365,Bose SoundSport Headphones,1,99.99,12/12/19 09:26,"662 River St, Los Angeles, CA 90001" -302366,USB-C Charging Cable,1,11.95,12/07/19 20:57,"831 West St, San Francisco, CA 94016" -302367,Wired Headphones,1,11.99,12/01/19 17:46,"12 Wilson St, San Francisco, CA 94016" -302368,34in Ultrawide Monitor,1,379.99,12/07/19 00:00,"482 6th St, Boston, MA 02215" -302369,Wired Headphones,1,11.99,12/16/19 20:45,"591 Center St, Boston, MA 02215" -302370,AA Batteries (4-pack),2,3.84,12/01/19 13:22,"656 9th St, San Francisco, CA 94016" -302371,LG Washing Machine,1,600.0,12/04/19 11:25,"798 10th St, Seattle, WA 98101" -302372,Bose SoundSport Headphones,1,99.99,12/06/19 20:49,"513 Johnson St, San Francisco, CA 94016" -302373,AAA Batteries (4-pack),2,2.99,12/30/19 18:44,"808 Hickory St, Seattle, WA 98101" -302374,Google Phone,1,600,12/24/19 21:17,"668 Lake St, New York City, NY 10001" -302375,AA Batteries (4-pack),1,3.84,12/15/19 17:28,"517 9th St, Los Angeles, CA 90001" -302376,Lightning Charging Cable,1,14.95,12/03/19 18:57,"279 Dogwood St, Los Angeles, CA 90001" -302377,AAA Batteries (4-pack),1,2.99,12/12/19 18:17,"374 Wilson St, Los Angeles, CA 90001" -302378,AAA Batteries (4-pack),1,2.99,12/14/19 06:50,"493 Hickory St, Los Angeles, CA 90001" -302379,Lightning Charging Cable,1,14.95,12/14/19 17:14,"26 Willow St, Boston, MA 02215" -302380,AAA Batteries (4-pack),6,2.99,12/24/19 12:14,"54 Dogwood St, Seattle, WA 98101" -302381,USB-C Charging Cable,2,11.95,12/24/19 23:18,"334 Jefferson St, Boston, MA 02215" -302382,AAA Batteries (4-pack),2,2.99,12/27/19 21:44,"396 10th St, Seattle, WA 98101" -302383,USB-C Charging Cable,1,11.95,12/25/19 13:08,"10 Meadow St, Portland, OR 97035" -302384,AA Batteries (4-pack),1,3.84,12/15/19 09:09,"72 2nd St, Seattle, WA 98101" -302385,Wired Headphones,1,11.99,12/13/19 20:44,"938 Maple St, New York City, NY 10001" -302386,Vareebadd Phone,1,400,12/17/19 23:06,"165 7th St, Los Angeles, CA 90001" -302387,AAA Batteries (4-pack),3,2.99,12/17/19 09:11,"693 6th St, Boston, MA 02215" -302388,AAA Batteries (4-pack),2,2.99,12/06/19 17:37,"692 West St, Dallas, TX 75001" -302388,Apple Airpods Headphones,1,150,12/06/19 17:37,"692 West St, Dallas, TX 75001" -302389,Macbook Pro Laptop,1,1700,12/18/19 17:53,"644 1st St, Los Angeles, CA 90001" -302390,Lightning Charging Cable,2,14.95,12/12/19 13:57,"435 1st St, New York City, NY 10001" -,,,,, -302391,27in 4K Gaming Monitor,1,389.99,12/26/19 00:37,"907 Madison St, Dallas, TX 75001" -302392,AAA Batteries (4-pack),1,2.99,12/09/19 13:05,"999 West St, Dallas, TX 75001" -302393,Lightning Charging Cable,1,14.95,01/01/20 00:14,"108 Jefferson St, Boston, MA 02215" -302394,USB-C Charging Cable,1,11.95,12/27/19 14:34,"856 Chestnut St, Boston, MA 02215" -302395,USB-C Charging Cable,1,11.95,12/05/19 00:50,"945 4th St, Seattle, WA 98101" -302396,AA Batteries (4-pack),1,3.84,12/30/19 17:59,"464 1st St, New York City, NY 10001" -302397,Macbook Pro Laptop,1,1700,12/02/19 10:53,"549 Cedar St, Portland, OR 97035" -302398,AAA Batteries (4-pack),2,2.99,12/04/19 20:56,"750 4th St, San Francisco, CA 94016" -302399,AA Batteries (4-pack),1,3.84,12/30/19 19:29,"386 Center St, San Francisco, CA 94016" -302400,27in FHD Monitor,1,149.99,12/23/19 19:13,"16 Forest St, Los Angeles, CA 90001" -302401,iPhone,1,700,12/18/19 23:12,"382 Cherry St, Dallas, TX 75001" -302401,Lightning Charging Cable,1,14.95,12/18/19 23:12,"382 Cherry St, Dallas, TX 75001" -302402,Macbook Pro Laptop,1,1700,12/23/19 12:24,"1 12th St, San Francisco, CA 94016" -302403,Lightning Charging Cable,1,14.95,12/03/19 18:01,"327 7th St, Portland, OR 97035" -302404,Bose SoundSport Headphones,1,99.99,12/18/19 09:42,"755 Lakeview St, Portland, OR 97035" -302405,AAA Batteries (4-pack),1,2.99,12/01/19 19:34,"5 Willow St, New York City, NY 10001" -302406,Apple Airpods Headphones,1,150,12/30/19 17:49,"173 Johnson St, New York City, NY 10001" -302407,USB-C Charging Cable,1,11.95,12/21/19 08:59,"178 1st St, Dallas, TX 75001" -302408,Lightning Charging Cable,2,14.95,12/14/19 12:32,"431 Sunset St, Seattle, WA 98101" -302409,20in Monitor,1,109.99,12/23/19 15:21,"176 North St, San Francisco, CA 94016" -302410,AAA Batteries (4-pack),1,2.99,12/23/19 18:15,"124 Sunset St, New York City, NY 10001" -302411,USB-C Charging Cable,1,11.95,12/07/19 02:15,"21 Highland St, San Francisco, CA 94016" -302412,Apple Airpods Headphones,1,150,12/07/19 08:49,"87 Lincoln St, New York City, NY 10001" -302413,LG Washing Machine,1,600.0,12/20/19 22:25,"191 Hill St, New York City, NY 10001" -302414,Apple Airpods Headphones,1,150,12/06/19 11:28,"349 Church St, Austin, TX 73301" -302415,Bose SoundSport Headphones,1,99.99,12/16/19 01:14,"835 Main St, Los Angeles, CA 90001" -302416,Google Phone,1,600,12/12/19 09:35,"280 14th St, Seattle, WA 98101" -302417,Apple Airpods Headphones,1,150,12/28/19 13:31,"302 Johnson St, Atlanta, GA 30301" -302418,Lightning Charging Cable,1,14.95,12/22/19 19:49,"649 Washington St, Atlanta, GA 30301" -302419,Flatscreen TV,1,300,12/21/19 13:21,"97 Main St, Dallas, TX 75001" -302420,AAA Batteries (4-pack),1,2.99,12/31/19 12:06,"311 Walnut St, New York City, NY 10001" -302421,USB-C Charging Cable,1,11.95,12/26/19 03:03,"969 5th St, Austin, TX 73301" -302422,Bose SoundSport Headphones,1,99.99,12/03/19 20:59,"16 Adams St, New York City, NY 10001" -302423,Lightning Charging Cable,1,14.95,12/12/19 19:14,"70 9th St, Los Angeles, CA 90001" -302424,Bose SoundSport Headphones,1,99.99,12/17/19 19:27,"685 Ridge St, San Francisco, CA 94016" -302425,Wired Headphones,2,11.99,12/21/19 12:51,"812 Madison St, Boston, MA 02215" -302426,USB-C Charging Cable,1,11.95,12/23/19 04:05,"813 Lake St, Los Angeles, CA 90001" -302427,Lightning Charging Cable,1,14.95,12/02/19 17:02,"723 Meadow St, Atlanta, GA 30301" -302428,Google Phone,1,600,12/18/19 21:10,"896 Jackson St, Atlanta, GA 30301" -302428,USB-C Charging Cable,1,11.95,12/18/19 21:10,"896 Jackson St, Atlanta, GA 30301" -302429,Apple Airpods Headphones,1,150,12/06/19 14:26,"904 11th St, Seattle, WA 98101" -302430,27in FHD Monitor,1,149.99,12/09/19 23:58,"833 Washington St, Dallas, TX 75001" -302431,Wired Headphones,1,11.99,12/15/19 18:11,"250 14th St, Dallas, TX 75001" -302432,Lightning Charging Cable,1,14.95,12/25/19 11:54,"55 Park St, San Francisco, CA 94016" -302433,Macbook Pro Laptop,1,1700,12/05/19 19:25,"352 1st St, Atlanta, GA 30301" -302434,27in FHD Monitor,1,149.99,12/14/19 21:23,"176 4th St, Portland, OR 97035" -302435,Wired Headphones,1,11.99,12/08/19 15:38,"918 11th St, Dallas, TX 75001" -302436,Bose SoundSport Headphones,1,99.99,12/24/19 15:24,"368 1st St, New York City, NY 10001" -302437,Lightning Charging Cable,1,14.95,12/28/19 09:59,"628 Lincoln St, San Francisco, CA 94016" -302438,AA Batteries (4-pack),1,3.84,12/18/19 19:41,"931 Dogwood St, San Francisco, CA 94016" -302439,Bose SoundSport Headphones,1,99.99,12/08/19 22:08,"118 Elm St, Austin, TX 73301" -302440,Bose SoundSport Headphones,1,99.99,12/06/19 11:46,"643 Main St, New York City, NY 10001" -302441,ThinkPad Laptop,1,999.99,12/25/19 07:05,"680 6th St, Seattle, WA 98101" -302442,AAA Batteries (4-pack),1,2.99,12/15/19 17:18,"947 Chestnut St, Los Angeles, CA 90001" -302443,Bose SoundSport Headphones,1,99.99,12/01/19 12:16,"637 1st St, Dallas, TX 75001" -302444,Google Phone,1,600,12/26/19 16:08,"197 Center St, New York City, NY 10001" -302444,USB-C Charging Cable,3,11.95,12/26/19 16:08,"197 Center St, New York City, NY 10001" -302445,Lightning Charging Cable,1,14.95,12/02/19 01:36,"841 Wilson St, Portland, OR 97035" -302446,USB-C Charging Cable,1,11.95,12/12/19 11:34,"396 Sunset St, San Francisco, CA 94016" -302447,Apple Airpods Headphones,2,150,12/06/19 17:09,"647 Lake St, Dallas, TX 75001" -302448,AAA Batteries (4-pack),1,2.99,12/25/19 11:34,"721 Ridge St, San Francisco, CA 94016" -302449,AAA Batteries (4-pack),1,2.99,12/18/19 23:22,"889 Hickory St, Seattle, WA 98101" -302450,AAA Batteries (4-pack),1,2.99,12/11/19 09:17,"551 North St, Seattle, WA 98101" -302451,Macbook Pro Laptop,1,1700,12/02/19 12:53,"707 Cedar St, San Francisco, CA 94016" -302451,Apple Airpods Headphones,1,150,12/02/19 12:53,"707 Cedar St, San Francisco, CA 94016" -302452,27in FHD Monitor,1,149.99,12/18/19 16:06,"138 Jefferson St, Portland, OR 97035" -302453,Apple Airpods Headphones,1,150,12/17/19 06:37,"561 North St, New York City, NY 10001" -302454,AA Batteries (4-pack),1,3.84,12/28/19 17:49,"261 5th St, Atlanta, GA 30301" -302455,USB-C Charging Cable,1,11.95,12/18/19 00:34,"537 Ridge St, Dallas, TX 75001" -302456,Wired Headphones,1,11.99,12/08/19 17:00,"28 River St, New York City, NY 10001" -302457,AA Batteries (4-pack),1,3.84,12/12/19 19:05,"262 4th St, San Francisco, CA 94016" -302458,Bose SoundSport Headphones,1,99.99,12/24/19 16:42,"553 Meadow St, Los Angeles, CA 90001" -302459,27in 4K Gaming Monitor,1,389.99,12/23/19 18:21,"965 West St, Portland, OR 97035" -302460,USB-C Charging Cable,1,11.95,12/10/19 19:53,"111 Dogwood St, New York City, NY 10001" -302461,USB-C Charging Cable,1,11.95,12/27/19 22:20,"952 Walnut St, Seattle, WA 98101" -302462,Apple Airpods Headphones,1,150,12/07/19 12:31,"471 Pine St, Portland, OR 97035" -302463,34in Ultrawide Monitor,1,379.99,12/07/19 06:27,"268 Cedar St, Boston, MA 02215" -302464,Google Phone,1,600,12/23/19 11:40,"919 10th St, Boston, MA 02215" -302464,AAA Batteries (4-pack),1,2.99,12/23/19 11:40,"919 10th St, Boston, MA 02215" -302465,34in Ultrawide Monitor,1,379.99,12/07/19 01:58,"821 Lake St, Portland, OR 97035" -302466,Apple Airpods Headphones,1,150,12/04/19 09:16,"161 Pine St, Portland, OR 97035" -302467,Wired Headphones,1,11.99,12/25/19 16:32,"417 Cherry St, San Francisco, CA 94016" -302468,Flatscreen TV,1,300,12/20/19 13:09,"160 11th St, Los Angeles, CA 90001" -302469,ThinkPad Laptop,1,999.99,12/07/19 12:28,"564 2nd St, New York City, NY 10001" -302470,34in Ultrawide Monitor,1,379.99,12/25/19 11:15,"233 Dogwood St, Dallas, TX 75001" -302471,USB-C Charging Cable,1,11.95,12/22/19 17:13,"878 10th St, Boston, MA 02215" -302472,20in Monitor,1,109.99,12/04/19 07:08,"268 4th St, New York City, NY 10001" -302473,Bose SoundSport Headphones,1,99.99,12/19/19 17:56,"750 Meadow St, San Francisco, CA 94016" -302474,ThinkPad Laptop,1,999.99,12/04/19 19:47,"937 Hickory St, Los Angeles, CA 90001" -302475,Lightning Charging Cable,1,14.95,12/12/19 10:54,"421 Center St, Los Angeles, CA 90001" -302476,Wired Headphones,1,11.99,12/08/19 21:37,"214 Forest St, Boston, MA 02215" -302477,Bose SoundSport Headphones,1,99.99,12/01/19 13:17,"452 Meadow St, Los Angeles, CA 90001" -302478,Lightning Charging Cable,1,14.95,12/25/19 23:41,"299 11th St, San Francisco, CA 94016" -302478,Bose SoundSport Headphones,1,99.99,12/25/19 23:41,"299 11th St, San Francisco, CA 94016" -302479,34in Ultrawide Monitor,1,379.99,12/03/19 15:54,"186 North St, Atlanta, GA 30301" -302480,AAA Batteries (4-pack),1,2.99,12/05/19 19:03,"282 Cedar St, San Francisco, CA 94016" -302481,Lightning Charging Cable,1,14.95,12/01/19 17:17,"932 Meadow St, Atlanta, GA 30301" -302482,27in FHD Monitor,1,149.99,12/12/19 22:30,"492 Chestnut St, Los Angeles, CA 90001" -302483,Vareebadd Phone,1,400,12/14/19 12:23,"396 8th St, New York City, NY 10001" -302484,Apple Airpods Headphones,1,150,12/01/19 11:55,"152 8th St, Austin, TX 73301" -302485,AAA Batteries (4-pack),4,2.99,12/17/19 09:41,"452 West St, San Francisco, CA 94016" -302486,AAA Batteries (4-pack),2,2.99,12/17/19 18:52,"36 Cedar St, Atlanta, GA 30301" -302487,Wired Headphones,1,11.99,12/17/19 15:12,"858 Forest St, New York City, NY 10001" -302488,Google Phone,1,600,12/18/19 21:43,"248 Wilson St, New York City, NY 10001" -302489,Macbook Pro Laptop,1,1700,12/30/19 17:19,"246 Willow St, Portland, ME 04101" -302490,AA Batteries (4-pack),1,3.84,12/10/19 16:06,"525 River St, Los Angeles, CA 90001" -302491,USB-C Charging Cable,1,11.95,12/06/19 17:28,"457 Elm St, Los Angeles, CA 90001" -302491,AAA Batteries (4-pack),1,2.99,12/06/19 17:28,"457 Elm St, Los Angeles, CA 90001" -302492,34in Ultrawide Monitor,1,379.99,12/04/19 10:18,"437 Elm St, Boston, MA 02215" -302493,27in FHD Monitor,1,149.99,12/28/19 14:09,"591 Walnut St, San Francisco, CA 94016" -302494,USB-C Charging Cable,1,11.95,12/08/19 20:50,"479 Main St, Seattle, WA 98101" -302495,AAA Batteries (4-pack),1,2.99,12/21/19 13:40,"652 Cedar St, Portland, ME 04101" -302496,Bose SoundSport Headphones,1,99.99,12/18/19 20:02,"829 Dogwood St, Austin, TX 73301" -302497,Wired Headphones,1,11.99,12/04/19 14:19,"687 Walnut St, Los Angeles, CA 90001" -302498,Wired Headphones,1,11.99,12/02/19 14:44,"510 Sunset St, Portland, OR 97035" -302499,Lightning Charging Cable,1,14.95,12/06/19 10:57,"425 North St, Atlanta, GA 30301" -302500,AAA Batteries (4-pack),3,2.99,12/24/19 18:21,"451 Washington St, San Francisco, CA 94016" -302501,AAA Batteries (4-pack),1,2.99,12/19/19 02:06,"562 11th St, Atlanta, GA 30301" -302502,27in 4K Gaming Monitor,1,389.99,12/21/19 20:11,"53 Maple St, Portland, OR 97035" -302503,Bose SoundSport Headphones,1,99.99,12/18/19 09:53,"999 Adams St, Atlanta, GA 30301" -302504,Flatscreen TV,1,300,12/03/19 11:05,"603 Lake St, Dallas, TX 75001" -302505,AAA Batteries (4-pack),1,2.99,12/19/19 22:46,"145 Forest St, Los Angeles, CA 90001" -302506,Vareebadd Phone,1,400,12/30/19 17:05,"847 13th St, Los Angeles, CA 90001" -302507,AAA Batteries (4-pack),1,2.99,12/31/19 10:02,"137 Cedar St, Seattle, WA 98101" -302508,USB-C Charging Cable,1,11.95,12/28/19 04:54,"296 Maple St, Dallas, TX 75001" -302509,USB-C Charging Cable,1,11.95,12/03/19 11:34,"684 Dogwood St, Boston, MA 02215" -302510,AA Batteries (4-pack),1,3.84,12/03/19 20:20,"664 1st St, Dallas, TX 75001" -302511,Bose SoundSport Headphones,1,99.99,12/07/19 11:52,"554 12th St, Dallas, TX 75001" -302512,iPhone,1,700,12/27/19 20:14,"241 River St, Los Angeles, CA 90001" -302512,Lightning Charging Cable,1,14.95,12/27/19 20:14,"241 River St, Los Angeles, CA 90001" -302513,AAA Batteries (4-pack),1,2.99,12/17/19 20:36,"683 North St, Boston, MA 02215" -302514,iPhone,1,700,12/24/19 13:28,"134 Sunset St, Los Angeles, CA 90001" -302515,Apple Airpods Headphones,1,150,12/28/19 10:13,"48 9th St, Los Angeles, CA 90001" -302516,27in 4K Gaming Monitor,1,389.99,12/02/19 12:58,"162 Washington St, Seattle, WA 98101" -302517,Wired Headphones,1,11.99,12/27/19 20:13,"261 8th St, San Francisco, CA 94016" -302518,Lightning Charging Cable,2,14.95,12/18/19 19:01,"709 6th St, Austin, TX 73301" -302519,Bose SoundSport Headphones,1,99.99,12/29/19 15:47,"37 Cedar St, Portland, OR 97035" -302520,27in 4K Gaming Monitor,1,389.99,12/12/19 21:32,"843 7th St, Atlanta, GA 30301" -302521,Wired Headphones,1,11.99,12/17/19 20:55,"682 Park St, Los Angeles, CA 90001" -302522,Wired Headphones,1,11.99,12/04/19 17:16,"293 Pine St, Boston, MA 02215" -302523,Lightning Charging Cable,1,14.95,12/09/19 09:36,"337 12th St, New York City, NY 10001" -302524,AA Batteries (4-pack),1,3.84,12/25/19 07:39,"950 Madison St, Atlanta, GA 30301" -302525,AAA Batteries (4-pack),1,2.99,12/27/19 20:39,"446 Jackson St, Dallas, TX 75001" -302526,20in Monitor,1,109.99,12/21/19 09:19,"714 Jefferson St, Austin, TX 73301" -302527,27in 4K Gaming Monitor,1,389.99,12/23/19 13:22,"698 Walnut St, Austin, TX 73301" -302528,iPhone,1,700,12/12/19 07:56,"375 11th St, Boston, MA 02215" -302529,USB-C Charging Cable,1,11.95,12/03/19 15:53,"425 Sunset St, Los Angeles, CA 90001" -302530,Bose SoundSport Headphones,1,99.99,12/26/19 22:58,"363 Washington St, New York City, NY 10001" -302531,Wired Headphones,1,11.99,12/20/19 06:48,"907 10th St, Seattle, WA 98101" -302532,34in Ultrawide Monitor,1,379.99,12/07/19 20:37,"255 Madison St, Portland, ME 04101" -302533,USB-C Charging Cable,1,11.95,12/29/19 10:59,"519 Forest St, San Francisco, CA 94016" -302534,iPhone,1,700,12/23/19 16:06,"899 Dogwood St, New York City, NY 10001" -302534,Wired Headphones,1,11.99,12/23/19 16:06,"899 Dogwood St, New York City, NY 10001" -302535,Apple Airpods Headphones,1,150,12/07/19 14:52,"309 14th St, Los Angeles, CA 90001" -302536,AAA Batteries (4-pack),1,2.99,12/03/19 19:35,"187 Main St, Boston, MA 02215" -302537,Bose SoundSport Headphones,1,99.99,12/24/19 21:54,"672 6th St, San Francisco, CA 94016" -302538,Apple Airpods Headphones,1,150,12/24/19 12:51,"150 Meadow St, San Francisco, CA 94016" -302539,Lightning Charging Cable,1,14.95,12/24/19 20:35,"489 Center St, Seattle, WA 98101" -302540,Lightning Charging Cable,2,14.95,12/23/19 21:33,"111 7th St, San Francisco, CA 94016" -302541,ThinkPad Laptop,1,999.99,12/15/19 08:30,"26 7th St, Boston, MA 02215" -302542,Macbook Pro Laptop,1,1700,12/03/19 18:04,"724 Madison St, Boston, MA 02215" -302543,Lightning Charging Cable,1,14.95,12/05/19 12:20,"853 North St, San Francisco, CA 94016" -302544,Apple Airpods Headphones,1,150,12/03/19 09:15,"162 Chestnut St, New York City, NY 10001" -302545,AA Batteries (4-pack),1,3.84,12/28/19 18:45,"659 6th St, Atlanta, GA 30301" -302546,Google Phone,1,600,12/14/19 18:10,"893 10th St, San Francisco, CA 94016" -302546,Bose SoundSport Headphones,1,99.99,12/14/19 18:10,"893 10th St, San Francisco, CA 94016" -302547,34in Ultrawide Monitor,1,379.99,12/05/19 12:12,"845 Johnson St, Boston, MA 02215" -302548,AAA Batteries (4-pack),1,2.99,12/13/19 14:25,"214 Meadow St, San Francisco, CA 94016" -302549,AA Batteries (4-pack),3,3.84,12/24/19 16:45,"15 11th St, San Francisco, CA 94016" -302550,ThinkPad Laptop,1,999.99,12/13/19 17:57,"512 West St, Los Angeles, CA 90001" -302551,AA Batteries (4-pack),1,3.84,12/20/19 22:01,"905 7th St, Los Angeles, CA 90001" -302552,Lightning Charging Cable,1,14.95,12/15/19 12:31,"311 12th St, Austin, TX 73301" -302553,Apple Airpods Headphones,1,150,12/05/19 22:15,"815 14th St, New York City, NY 10001" -302554,AAA Batteries (4-pack),1,2.99,12/05/19 11:04,"407 Jackson St, San Francisco, CA 94016" -302555,Macbook Pro Laptop,1,1700,12/18/19 16:07,"507 Lake St, Los Angeles, CA 90001" -302556,Lightning Charging Cable,1,14.95,12/30/19 19:15,"7 9th St, Austin, TX 73301" -302557,AAA Batteries (4-pack),1,2.99,12/16/19 05:35,"692 5th St, San Francisco, CA 94016" -302558,Lightning Charging Cable,1,14.95,12/11/19 12:09,"60 Chestnut St, San Francisco, CA 94016" -302559,AA Batteries (4-pack),2,3.84,12/16/19 00:03,"587 Church St, Seattle, WA 98101" -302560,Bose SoundSport Headphones,1,99.99,12/25/19 18:43,"275 Hickory St, Los Angeles, CA 90001" -302561,iPhone,1,700,12/12/19 12:08,"496 Willow St, Dallas, TX 75001" -302562,AAA Batteries (4-pack),2,2.99,12/10/19 10:38,"321 River St, San Francisco, CA 94016" -302563,AAA Batteries (4-pack),3,2.99,12/13/19 19:36,"68 13th St, San Francisco, CA 94016" -302564,Wired Headphones,1,11.99,12/25/19 13:47,"667 South St, Dallas, TX 75001" -302565,AAA Batteries (4-pack),1,2.99,12/06/19 19:27,"629 Adams St, Dallas, TX 75001" -302566,Google Phone,1,600,12/17/19 15:41,"66 Main St, San Francisco, CA 94016" -302566,USB-C Charging Cable,1,11.95,12/17/19 15:41,"66 Main St, San Francisco, CA 94016" -302567,AAA Batteries (4-pack),1,2.99,12/20/19 08:13,"261 Spruce St, San Francisco, CA 94016" -302568,ThinkPad Laptop,1,999.99,12/02/19 21:14,"589 Meadow St, Austin, TX 73301" -302569,AA Batteries (4-pack),1,3.84,12/22/19 13:40,"35 Dogwood St, San Francisco, CA 94016" -302570,USB-C Charging Cable,1,11.95,12/23/19 13:42,"567 Wilson St, Austin, TX 73301" -302571,iPhone,1,700,12/01/19 20:55,"454 Lakeview St, New York City, NY 10001" -302572,Wired Headphones,1,11.99,12/17/19 17:03,"920 Center St, Atlanta, GA 30301" -302573,USB-C Charging Cable,1,11.95,12/24/19 17:13,"132 Lake St, Austin, TX 73301" -302574,Wired Headphones,1,11.99,12/03/19 10:59,"736 Spruce St, San Francisco, CA 94016" -302575,Lightning Charging Cable,1,14.95,12/15/19 13:58,"137 South St, Los Angeles, CA 90001" -302576,Apple Airpods Headphones,1,150,12/30/19 00:44,"199 1st St, Dallas, TX 75001" -302577,34in Ultrawide Monitor,1,379.99,12/30/19 10:54,"86 Spruce St, Boston, MA 02215" -302577,USB-C Charging Cable,1,11.95,12/30/19 10:54,"86 Spruce St, Boston, MA 02215" -302578,Lightning Charging Cable,1,14.95,12/18/19 16:38,"247 14th St, Dallas, TX 75001" -302578,USB-C Charging Cable,1,11.95,12/18/19 16:38,"247 14th St, Dallas, TX 75001" -302579,AA Batteries (4-pack),2,3.84,12/18/19 06:52,"757 River St, San Francisco, CA 94016" -302580,Lightning Charging Cable,1,14.95,12/14/19 09:26,"188 Lincoln St, Atlanta, GA 30301" -302581,Apple Airpods Headphones,1,150,12/17/19 12:47,"597 11th St, Dallas, TX 75001" -302582,Lightning Charging Cable,1,14.95,12/19/19 18:18,"984 Johnson St, San Francisco, CA 94016" -302583,27in FHD Monitor,1,149.99,12/07/19 22:45,"903 North St, Austin, TX 73301" -302584,Google Phone,1,600,12/22/19 13:10,"447 Adams St, Dallas, TX 75001" -302585,Google Phone,1,600,12/06/19 07:58,"559 4th St, San Francisco, CA 94016" -302586,Flatscreen TV,1,300,12/10/19 09:48,"780 Johnson St, Dallas, TX 75001" -302587,AA Batteries (4-pack),1,3.84,12/13/19 15:41,"236 Ridge St, San Francisco, CA 94016" -302588,Flatscreen TV,1,300,12/02/19 09:57,"105 Maple St, Boston, MA 02215" -302589,USB-C Charging Cable,1,11.95,12/04/19 19:55,"627 Pine St, New York City, NY 10001" -302590,Apple Airpods Headphones,1,150,12/25/19 23:09,"670 Madison St, Dallas, TX 75001" -302591,iPhone,1,700,12/03/19 22:06,"924 8th St, Los Angeles, CA 90001" -302592,USB-C Charging Cable,2,11.95,12/02/19 16:21,"4 Washington St, San Francisco, CA 94016" -302593,AAA Batteries (4-pack),2,2.99,12/28/19 08:13,"969 Dogwood St, Seattle, WA 98101" -302594,27in 4K Gaming Monitor,1,389.99,12/27/19 10:15,"660 Hickory St, San Francisco, CA 94016" -302595,USB-C Charging Cable,1,11.95,12/12/19 17:27,"74 Church St, San Francisco, CA 94016" -302596,AA Batteries (4-pack),1,3.84,12/16/19 18:02,"316 Maple St, Los Angeles, CA 90001" -302597,Apple Airpods Headphones,1,150,12/30/19 12:45,"283 2nd St, Dallas, TX 75001" -302598,Apple Airpods Headphones,1,150,12/01/19 14:59,"734 Chestnut St, San Francisco, CA 94016" -302599,Lightning Charging Cable,2,14.95,12/20/19 21:43,"258 Adams St, Atlanta, GA 30301" -302600,Lightning Charging Cable,1,14.95,12/05/19 11:42,"183 Jefferson St, Dallas, TX 75001" -302601,Wired Headphones,1,11.99,12/07/19 10:28,"675 Lake St, Atlanta, GA 30301" -302602,Lightning Charging Cable,1,14.95,12/07/19 11:07,"219 Meadow St, Atlanta, GA 30301" -302603,27in FHD Monitor,1,149.99,12/01/19 18:56,"388 Lake St, Los Angeles, CA 90001" -302604,Apple Airpods Headphones,1,150,12/27/19 12:23,"499 Spruce St, San Francisco, CA 94016" -302605,Wired Headphones,1,11.99,12/28/19 18:55,"191 Forest St, San Francisco, CA 94016" -302606,AA Batteries (4-pack),3,3.84,12/28/19 12:46,"452 Hill St, Los Angeles, CA 90001" -302607,AA Batteries (4-pack),1,3.84,12/28/19 10:11,"799 Church St, Los Angeles, CA 90001" -302608,Apple Airpods Headphones,1,150,12/31/19 18:40,"94 South St, New York City, NY 10001" -302609,Lightning Charging Cable,1,14.95,12/24/19 18:11,"139 Hickory St, Boston, MA 02215" -302610,Apple Airpods Headphones,1,150,12/06/19 09:18,"587 Maple St, New York City, NY 10001" -302611,AA Batteries (4-pack),1,3.84,12/27/19 23:21,"366 Main St, San Francisco, CA 94016" -302612,AAA Batteries (4-pack),1,2.99,12/05/19 15:29,"297 14th St, San Francisco, CA 94016" -302613,Macbook Pro Laptop,1,1700,12/29/19 17:29,"560 Meadow St, Boston, MA 02215" -302614,AA Batteries (4-pack),3,3.84,12/31/19 15:59,"995 South St, Atlanta, GA 30301" -302615,34in Ultrawide Monitor,1,379.99,12/14/19 16:14,"966 Main St, Atlanta, GA 30301" -302616,Lightning Charging Cable,1,14.95,12/13/19 23:21,"990 8th St, Boston, MA 02215" -302617,AA Batteries (4-pack),1,3.84,12/05/19 21:16,"357 River St, San Francisco, CA 94016" -302618,AA Batteries (4-pack),1,3.84,12/01/19 20:08,"425 River St, Boston, MA 02215" -302619,AA Batteries (4-pack),2,3.84,12/26/19 16:31,"34 Wilson St, Atlanta, GA 30301" -302620,AA Batteries (4-pack),1,3.84,12/08/19 19:09,"387 North St, Los Angeles, CA 90001" -302621,27in 4K Gaming Monitor,1,389.99,12/16/19 10:40,"140 9th St, Boston, MA 02215" -302622,Apple Airpods Headphones,1,150,12/28/19 01:38,"899 Washington St, Seattle, WA 98101" -302623,27in FHD Monitor,1,149.99,12/07/19 09:31,"546 Pine St, New York City, NY 10001" -302624,AAA Batteries (4-pack),1,2.99,12/10/19 09:00,"276 Cedar St, Boston, MA 02215" -302625,Google Phone,1,600,12/30/19 09:30,"53 Cedar St, New York City, NY 10001" -302625,Wired Headphones,1,11.99,12/30/19 09:30,"53 Cedar St, New York City, NY 10001" -302626,AA Batteries (4-pack),2,3.84,12/07/19 19:56,"756 Walnut St, Dallas, TX 75001" -302627,Lightning Charging Cable,1,14.95,12/05/19 13:01,"833 Highland St, New York City, NY 10001" -302628,Wired Headphones,1,11.99,12/21/19 18:16,"568 Hickory St, San Francisco, CA 94016" -302629,USB-C Charging Cable,1,11.95,12/03/19 06:04,"202 Ridge St, San Francisco, CA 94016" -302630,AAA Batteries (4-pack),1,2.99,12/13/19 19:06,"148 Madison St, Boston, MA 02215" -302631,Lightning Charging Cable,1,14.95,12/17/19 16:51,"710 1st St, Seattle, WA 98101" -302632,AAA Batteries (4-pack),1,2.99,12/30/19 13:16,"720 Walnut St, Austin, TX 73301" -302633,USB-C Charging Cable,1,11.95,12/16/19 20:17,"392 West St, Atlanta, GA 30301" -302634,Bose SoundSport Headphones,1,99.99,12/13/19 17:17,"641 Center St, San Francisco, CA 94016" -302635,AA Batteries (4-pack),1,3.84,12/23/19 12:47,"660 7th St, San Francisco, CA 94016" -302636,34in Ultrawide Monitor,1,379.99,12/22/19 07:07,"629 Center St, San Francisco, CA 94016" -302637,AAA Batteries (4-pack),1,2.99,12/14/19 22:36,"628 Adams St, San Francisco, CA 94016" -302638,Lightning Charging Cable,2,14.95,12/24/19 08:51,"257 Washington St, Portland, OR 97035" -302639,Google Phone,1,600,12/03/19 19:08,"121 Washington St, New York City, NY 10001" -302639,USB-C Charging Cable,2,11.95,12/03/19 19:08,"121 Washington St, New York City, NY 10001" -302640,Lightning Charging Cable,1,14.95,12/16/19 14:43,"947 West St, San Francisco, CA 94016" -302641,AAA Batteries (4-pack),2,2.99,12/03/19 12:48,"839 Forest St, Atlanta, GA 30301" -302642,Macbook Pro Laptop,1,1700,12/18/19 19:25,"921 9th St, Atlanta, GA 30301" -302643,Lightning Charging Cable,2,14.95,12/24/19 05:27,"297 9th St, Dallas, TX 75001" -302644,Lightning Charging Cable,1,14.95,12/18/19 07:05,"737 7th St, Austin, TX 73301" -302645,USB-C Charging Cable,1,11.95,12/19/19 23:38,"220 11th St, Austin, TX 73301" -302646,USB-C Charging Cable,1,11.95,12/04/19 05:54,"911 Park St, San Francisco, CA 94016" -302647,Bose SoundSport Headphones,1,99.99,12/13/19 15:10,"615 Meadow St, New York City, NY 10001" -302648,USB-C Charging Cable,1,11.95,12/23/19 15:10,"950 South St, Austin, TX 73301" -302649,AAA Batteries (4-pack),2,2.99,12/04/19 20:10,"987 Church St, Boston, MA 02215" -302650,AAA Batteries (4-pack),2,2.99,12/12/19 11:52,"423 4th St, San Francisco, CA 94016" -302651,Lightning Charging Cable,1,14.95,12/03/19 19:08,"105 Cherry St, Dallas, TX 75001" -302652,Apple Airpods Headphones,1,150,12/04/19 08:17,"237 Walnut St, New York City, NY 10001" -302653,USB-C Charging Cable,1,11.95,12/07/19 21:00,"261 Park St, San Francisco, CA 94016" -302654,AAA Batteries (4-pack),1,2.99,12/05/19 20:01,"600 2nd St, New York City, NY 10001" -302655,AAA Batteries (4-pack),1,2.99,12/11/19 10:35,"111 Forest St, Seattle, WA 98101" -302656,Wired Headphones,1,11.99,12/09/19 12:36,"286 8th St, Los Angeles, CA 90001" -302657,ThinkPad Laptop,1,999.99,12/23/19 07:19,"676 Center St, Dallas, TX 75001" -302658,iPhone,1,700,12/04/19 14:05,"382 Walnut St, Los Angeles, CA 90001" -302659,27in FHD Monitor,1,149.99,12/03/19 18:36,"445 Hickory St, Atlanta, GA 30301" -302660,AA Batteries (4-pack),1,3.84,12/17/19 17:34,"901 Park St, Austin, TX 73301" -302661,ThinkPad Laptop,1,999.99,12/28/19 11:26,"79 Jackson St, Boston, MA 02215" -302662,27in 4K Gaming Monitor,1,389.99,12/01/19 08:36,"194 4th St, Dallas, TX 75001" -302663,Apple Airpods Headphones,1,150,12/14/19 19:17,"581 13th St, San Francisco, CA 94016" -302664,USB-C Charging Cable,1,11.95,12/31/19 10:36,"110 Highland St, San Francisco, CA 94016" -302665,USB-C Charging Cable,1,11.95,12/25/19 19:32,"871 South St, San Francisco, CA 94016" -302666,ThinkPad Laptop,1,999.99,12/01/19 17:57,"762 Adams St, Los Angeles, CA 90001" -302667,Apple Airpods Headphones,1,150,12/23/19 16:17,"406 Dogwood St, Boston, MA 02215" -302668,AA Batteries (4-pack),1,3.84,12/19/19 11:03,"76 Elm St, Portland, OR 97035" -302669,AAA Batteries (4-pack),1,2.99,12/22/19 02:23,"556 Sunset St, San Francisco, CA 94016" -302670,AAA Batteries (4-pack),4,2.99,12/23/19 21:01,"735 Cedar St, Boston, MA 02215" -302671,27in FHD Monitor,1,149.99,12/27/19 06:22,"468 Forest St, San Francisco, CA 94016" -302672,Bose SoundSport Headphones,1,99.99,12/07/19 23:33,"363 Center St, Boston, MA 02215" -302673,27in FHD Monitor,1,149.99,12/01/19 08:48,"749 Meadow St, Austin, TX 73301" -302674,27in FHD Monitor,1,149.99,12/10/19 12:46,"436 Cherry St, Portland, OR 97035" -302675,Wired Headphones,1,11.99,12/08/19 17:44,"21 4th St, Austin, TX 73301" -302676,Lightning Charging Cable,1,14.95,12/19/19 18:13,"940 6th St, New York City, NY 10001" -302677,20in Monitor,1,109.99,12/03/19 17:21,"198 Ridge St, Seattle, WA 98101" -302678,Lightning Charging Cable,1,14.95,12/18/19 15:15,"178 Hill St, Seattle, WA 98101" -302679,34in Ultrawide Monitor,1,379.99,12/28/19 19:42,"881 Dogwood St, San Francisco, CA 94016" -302680,AA Batteries (4-pack),1,3.84,12/05/19 03:33,"738 Jefferson St, Los Angeles, CA 90001" -302681,Flatscreen TV,1,300,12/30/19 14:19,"679 Spruce St, Boston, MA 02215" -302682,ThinkPad Laptop,1,999.99,12/10/19 20:00,"790 Park St, Los Angeles, CA 90001" -302683,iPhone,1,700,12/08/19 11:13,"711 Jefferson St, Los Angeles, CA 90001" -302684,AA Batteries (4-pack),1,3.84,12/29/19 14:05,"975 Lincoln St, Boston, MA 02215" -302685,Apple Airpods Headphones,1,150,12/13/19 19:32,"178 Wilson St, Atlanta, GA 30301" -302686,Lightning Charging Cable,1,14.95,12/25/19 18:23,"740 Elm St, Boston, MA 02215" -302687,AAA Batteries (4-pack),1,2.99,12/03/19 20:22,"503 7th St, New York City, NY 10001" -302688,Google Phone,1,600,12/11/19 09:30,"997 4th St, Portland, OR 97035" -302689,Bose SoundSport Headphones,1,99.99,12/24/19 14:36,"834 6th St, Austin, TX 73301" -302690,27in FHD Monitor,1,149.99,12/26/19 14:39,"572 2nd St, Los Angeles, CA 90001" -302691,AA Batteries (4-pack),1,3.84,12/29/19 07:49,"283 South St, Los Angeles, CA 90001" -302691,iPhone,1,700,12/29/19 07:49,"283 South St, Los Angeles, CA 90001" -302692,Lightning Charging Cable,1,14.95,12/25/19 09:52,"493 8th St, Boston, MA 02215" -302693,AAA Batteries (4-pack),2,2.99,12/19/19 13:47,"121 Park St, Boston, MA 02215" -302694,AAA Batteries (4-pack),3,2.99,12/26/19 09:31,"825 Church St, Atlanta, GA 30301" -302695,AAA Batteries (4-pack),2,2.99,12/08/19 01:59,"550 Sunset St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -302696,Lightning Charging Cable,1,14.95,12/22/19 08:29,"536 Dogwood St, San Francisco, CA 94016" -302697,AA Batteries (4-pack),2,3.84,12/04/19 14:51,"304 River St, Boston, MA 02215" -302698,AA Batteries (4-pack),1,3.84,12/31/19 21:12,"951 Wilson St, Atlanta, GA 30301" -302699,27in FHD Monitor,1,149.99,12/18/19 16:31,"966 West St, San Francisco, CA 94016" -302700,AAA Batteries (4-pack),1,2.99,12/31/19 14:32,"454 Wilson St, New York City, NY 10001" -302701,AA Batteries (4-pack),1,3.84,12/31/19 00:15,"457 North St, Portland, OR 97035" -302702,27in FHD Monitor,1,149.99,12/10/19 10:09,"176 Forest St, Dallas, TX 75001" -302703,Apple Airpods Headphones,1,150,12/11/19 08:40,"498 Jackson St, New York City, NY 10001" -302704,ThinkPad Laptop,1,999.99,12/06/19 12:50,"686 Adams St, Dallas, TX 75001" -302705,AA Batteries (4-pack),2,3.84,12/14/19 16:49,"279 Lake St, San Francisco, CA 94016" -302706,Google Phone,1,600,12/09/19 12:42,"933 Hill St, Austin, TX 73301" -302707,AA Batteries (4-pack),1,3.84,12/24/19 12:57,"83 5th St, Seattle, WA 98101" -302708,Vareebadd Phone,1,400,12/12/19 22:10,"961 Lakeview St, San Francisco, CA 94016" -302708,Wired Headphones,2,11.99,12/12/19 22:10,"961 Lakeview St, San Francisco, CA 94016" -302709,Bose SoundSport Headphones,1,99.99,12/11/19 14:19,"454 Center St, Seattle, WA 98101" -302710,Wired Headphones,1,11.99,12/06/19 22:10,"508 Sunset St, San Francisco, CA 94016" -302711,AAA Batteries (4-pack),2,2.99,12/31/19 16:09,"829 Elm St, Seattle, WA 98101" -302712,AAA Batteries (4-pack),1,2.99,12/29/19 13:30,"261 9th St, Dallas, TX 75001" -302713,Apple Airpods Headphones,1,150,12/12/19 23:16,"441 Park St, Boston, MA 02215" -302713,Bose SoundSport Headphones,1,99.99,12/12/19 23:16,"441 Park St, Boston, MA 02215" -302714,Wired Headphones,1,11.99,12/06/19 08:54,"781 Meadow St, Boston, MA 02215" -302715,USB-C Charging Cable,2,11.95,12/17/19 19:41,"564 Hickory St, Boston, MA 02215" -302716,Flatscreen TV,1,300,12/24/19 21:13,"104 Ridge St, San Francisco, CA 94016" -302717,USB-C Charging Cable,1,11.95,12/15/19 21:24,"26 Lakeview St, Atlanta, GA 30301" -302717,AAA Batteries (4-pack),1,2.99,12/15/19 21:24,"26 Lakeview St, Atlanta, GA 30301" -302718,AA Batteries (4-pack),1,3.84,12/17/19 22:14,"879 West St, San Francisco, CA 94016" -302719,Wired Headphones,1,11.99,12/05/19 22:01,"318 Main St, Atlanta, GA 30301" -302720,USB-C Charging Cable,1,11.95,12/29/19 18:33,"689 4th St, San Francisco, CA 94016" -302721,iPhone,1,700,12/24/19 23:30,"70 Adams St, Seattle, WA 98101" -302721,Lightning Charging Cable,1,14.95,12/24/19 23:30,"70 Adams St, Seattle, WA 98101" -302721,Wired Headphones,1,11.99,12/24/19 23:30,"70 Adams St, Seattle, WA 98101" -302722,Wired Headphones,1,11.99,12/23/19 14:23,"763 Dogwood St, Portland, ME 04101" -302723,AAA Batteries (4-pack),1,2.99,12/14/19 18:32,"962 Ridge St, San Francisco, CA 94016" -302724,Wired Headphones,2,11.99,12/22/19 14:57,"721 River St, Los Angeles, CA 90001" -302725,USB-C Charging Cable,1,11.95,12/04/19 15:43,"830 River St, New York City, NY 10001" -302726,USB-C Charging Cable,1,11.95,12/07/19 11:09,"993 Hickory St, Austin, TX 73301" -302727,Apple Airpods Headphones,1,150,12/20/19 15:55,"46 12th St, New York City, NY 10001" -302728,27in FHD Monitor,1,149.99,12/31/19 19:12,"238 6th St, Boston, MA 02215" -302729,Lightning Charging Cable,1,14.95,12/17/19 22:23,"393 Highland St, Dallas, TX 75001" -302730,20in Monitor,1,109.99,12/27/19 22:31,"993 Forest St, Boston, MA 02215" -302731,USB-C Charging Cable,1,11.95,12/22/19 15:48,"343 Forest St, Seattle, WA 98101" -302732,34in Ultrawide Monitor,1,379.99,12/27/19 21:35,"331 Sunset St, Portland, OR 97035" -302733,AAA Batteries (4-pack),1,2.99,12/07/19 20:50,"30 Wilson St, Dallas, TX 75001" -302734,AA Batteries (4-pack),1,3.84,12/10/19 10:47,"760 10th St, San Francisco, CA 94016" -302735,Wired Headphones,1,11.99,12/04/19 19:59,"776 Walnut St, Portland, OR 97035" -302736,Apple Airpods Headphones,1,150,12/29/19 18:16,"26 Adams St, New York City, NY 10001" -302737,34in Ultrawide Monitor,1,379.99,12/17/19 09:35,"980 Washington St, Seattle, WA 98101" -302738,27in 4K Gaming Monitor,1,389.99,12/11/19 00:52,"135 North St, Boston, MA 02215" -302739,Wired Headphones,1,11.99,12/05/19 12:05,"170 Hill St, Los Angeles, CA 90001" -302740,AAA Batteries (4-pack),3,2.99,12/04/19 15:53,"828 Forest St, New York City, NY 10001" -302741,27in 4K Gaming Monitor,1,389.99,12/22/19 07:53,"417 Johnson St, Los Angeles, CA 90001" -302742,AA Batteries (4-pack),1,3.84,12/02/19 08:38,"722 River St, New York City, NY 10001" -302743,34in Ultrawide Monitor,1,379.99,12/21/19 19:30,"429 Lincoln St, San Francisco, CA 94016" -302744,27in 4K Gaming Monitor,1,389.99,12/27/19 21:55,"2 5th St, Dallas, TX 75001" -302745,Flatscreen TV,1,300,12/01/19 11:22,"541 Pine St, Los Angeles, CA 90001" -302746,iPhone,1,700,12/12/19 20:50,"193 Forest St, San Francisco, CA 94016" -302746,Lightning Charging Cable,1,14.95,12/12/19 20:50,"193 Forest St, San Francisco, CA 94016" -302747,Lightning Charging Cable,1,14.95,12/15/19 15:24,"123 Walnut St, Boston, MA 02215" -302748,34in Ultrawide Monitor,2,379.99,12/05/19 18:11,"186 Pine St, Atlanta, GA 30301" -302749,AAA Batteries (4-pack),1,2.99,12/11/19 17:41,"313 5th St, Portland, ME 04101" -302750,iPhone,1,700,12/04/19 12:36,"995 Cedar St, Austin, TX 73301" -302750,Lightning Charging Cable,1,14.95,12/04/19 12:36,"995 Cedar St, Austin, TX 73301" -302751,iPhone,1,700,12/02/19 14:29,"158 Washington St, San Francisco, CA 94016" -302752,Vareebadd Phone,1,400,12/23/19 20:37,"3 Elm St, Boston, MA 02215" -302753,AAA Batteries (4-pack),1,2.99,12/16/19 22:15,"681 Pine St, San Francisco, CA 94016" -302754,Wired Headphones,1,11.99,12/29/19 20:31,"234 2nd St, New York City, NY 10001" -302755,Wired Headphones,1,11.99,12/03/19 12:18,"297 Madison St, Atlanta, GA 30301" -302756,Lightning Charging Cable,1,14.95,12/25/19 16:52,"266 Park St, Portland, OR 97035" -302757,Lightning Charging Cable,1,14.95,12/14/19 20:35,"989 Johnson St, San Francisco, CA 94016" -302758,AAA Batteries (4-pack),2,2.99,12/08/19 00:27,"487 Sunset St, Atlanta, GA 30301" -302759,Lightning Charging Cable,1,14.95,12/08/19 12:14,"404 13th St, Seattle, WA 98101" -302760,Lightning Charging Cable,1,14.95,12/15/19 18:06,"852 Park St, San Francisco, CA 94016" -302761,AA Batteries (4-pack),1,3.84,12/22/19 14:37,"701 9th St, Dallas, TX 75001" -,,,,, -302762,AAA Batteries (4-pack),1,2.99,12/12/19 13:24,"393 North St, Austin, TX 73301" -302763,27in 4K Gaming Monitor,1,389.99,12/07/19 19:14,"76 6th St, Los Angeles, CA 90001" -302764,Lightning Charging Cable,1,14.95,12/26/19 08:14,"676 2nd St, Atlanta, GA 30301" -302765,Bose SoundSport Headphones,1,99.99,12/14/19 19:15,"662 Chestnut St, San Francisco, CA 94016" -302766,AA Batteries (4-pack),1,3.84,12/01/19 12:19,"139 Lincoln St, New York City, NY 10001" -302767,Wired Headphones,1,11.99,12/20/19 12:57,"535 5th St, Los Angeles, CA 90001" -302768,AAA Batteries (4-pack),2,2.99,12/23/19 23:26,"827 2nd St, Los Angeles, CA 90001" -302769,Macbook Pro Laptop,1,1700,12/24/19 03:28,"839 Lincoln St, San Francisco, CA 94016" -302770,AA Batteries (4-pack),1,3.84,12/08/19 23:35,"71 West St, San Francisco, CA 94016" -302771,AA Batteries (4-pack),1,3.84,12/01/19 12:39,"810 Dogwood St, Seattle, WA 98101" -302772,AA Batteries (4-pack),1,3.84,12/26/19 19:47,"703 9th St, San Francisco, CA 94016" -302773,iPhone,1,700,12/21/19 12:27,"966 Meadow St, San Francisco, CA 94016" -302774,AAA Batteries (4-pack),1,2.99,12/20/19 06:06,"123 Church St, Austin, TX 73301" -302775,Wired Headphones,1,11.99,12/12/19 12:07,"652 Center St, San Francisco, CA 94016" -302776,Lightning Charging Cable,1,14.95,12/25/19 10:15,"755 Cedar St, Los Angeles, CA 90001" -302777,34in Ultrawide Monitor,1,379.99,12/18/19 00:41,"760 Pine St, New York City, NY 10001" -302778,Bose SoundSport Headphones,1,99.99,12/30/19 12:35,"35 1st St, Portland, OR 97035" -302778,AAA Batteries (4-pack),1,2.99,12/30/19 12:35,"35 1st St, Portland, OR 97035" -302779,27in FHD Monitor,1,149.99,12/28/19 14:34,"665 Maple St, New York City, NY 10001" -302780,34in Ultrawide Monitor,1,379.99,12/19/19 18:11,"188 Sunset St, Austin, TX 73301" -302781,Apple Airpods Headphones,1,150,12/14/19 00:17,"974 Ridge St, Boston, MA 02215" -302782,Lightning Charging Cable,1,14.95,12/04/19 17:02,"601 Church St, Los Angeles, CA 90001" -302783,AA Batteries (4-pack),1,3.84,12/28/19 10:24,"357 Sunset St, Atlanta, GA 30301" -302784,Wired Headphones,1,11.99,12/19/19 14:40,"283 14th St, Dallas, TX 75001" -302785,USB-C Charging Cable,1,11.95,12/05/19 00:01,"529 9th St, Portland, ME 04101" -302786,34in Ultrawide Monitor,1,379.99,12/18/19 10:36,"703 Maple St, Boston, MA 02215" -302787,USB-C Charging Cable,1,11.95,12/24/19 10:27,"5 1st St, San Francisco, CA 94016" -302788,Flatscreen TV,1,300,12/07/19 18:59,"276 Spruce St, Seattle, WA 98101" -302789,AAA Batteries (4-pack),2,2.99,12/12/19 22:10,"77 Center St, Boston, MA 02215" -302790,iPhone,1,700,12/14/19 12:04,"185 South St, Boston, MA 02215" -302791,AA Batteries (4-pack),1,3.84,12/31/19 16:17,"671 4th St, Boston, MA 02215" -302792,Lightning Charging Cable,1,14.95,12/31/19 19:26,"866 Forest St, New York City, NY 10001" -302793,Google Phone,1,600,12/06/19 23:37,"994 6th St, Los Angeles, CA 90001" -302793,USB-C Charging Cable,1,11.95,12/06/19 23:37,"994 6th St, Los Angeles, CA 90001" -302794,20in Monitor,1,109.99,12/22/19 09:53,"111 1st St, Los Angeles, CA 90001" -302795,AA Batteries (4-pack),1,3.84,12/31/19 08:45,"591 Main St, Austin, TX 73301" -302796,Lightning Charging Cable,1,14.95,12/21/19 20:19,"947 Forest St, Los Angeles, CA 90001" -302797,Bose SoundSport Headphones,1,99.99,12/24/19 18:08,"717 8th St, San Francisco, CA 94016" -302798,AA Batteries (4-pack),2,3.84,12/29/19 11:01,"848 River St, Austin, TX 73301" -302799,Lightning Charging Cable,1,14.95,12/22/19 16:50,"183 Hill St, New York City, NY 10001" -302800,AAA Batteries (4-pack),2,2.99,12/21/19 20:53,"178 13th St, New York City, NY 10001" -302801,ThinkPad Laptop,1,999.99,12/05/19 15:05,"648 Lakeview St, New York City, NY 10001" -302802,USB-C Charging Cable,1,11.95,12/03/19 21:25,"684 Meadow St, New York City, NY 10001" -302803,Apple Airpods Headphones,1,150,12/14/19 17:18,"949 Lakeview St, Austin, TX 73301" -302804,AAA Batteries (4-pack),1,2.99,12/27/19 08:46,"556 Washington St, Los Angeles, CA 90001" -302805,AA Batteries (4-pack),1,3.84,12/19/19 14:11,"577 Center St, Boston, MA 02215" -302806,Google Phone,1,600,12/30/19 19:21,"207 Cherry St, San Francisco, CA 94016" -302807,AAA Batteries (4-pack),3,2.99,12/25/19 20:00,"635 Madison St, San Francisco, CA 94016" -302808,Lightning Charging Cable,2,14.95,12/17/19 00:24,"366 Lakeview St, San Francisco, CA 94016" -302809,AA Batteries (4-pack),1,3.84,12/27/19 11:01,"719 Sunset St, Los Angeles, CA 90001" -302810,Apple Airpods Headphones,1,150,12/15/19 12:56,"355 Center St, Dallas, TX 75001" -302811,AA Batteries (4-pack),1,3.84,12/13/19 10:15,"547 Lincoln St, New York City, NY 10001" -302812,Flatscreen TV,1,300,12/02/19 22:42,"811 Jefferson St, Los Angeles, CA 90001" -302813,Bose SoundSport Headphones,1,99.99,12/02/19 13:10,"453 Sunset St, Portland, OR 97035" -302814,Lightning Charging Cable,1,14.95,12/09/19 14:47,"332 8th St, Portland, OR 97035" -302815,Wired Headphones,1,11.99,12/12/19 23:08,"332 Jackson St, San Francisco, CA 94016" -302816,27in 4K Gaming Monitor,1,389.99,12/03/19 07:45,"190 Forest St, New York City, NY 10001" -,,,,, -302817,Flatscreen TV,1,300,12/26/19 20:19,"185 Adams St, Portland, ME 04101" -302818,LG Dryer,1,600.0,12/08/19 18:30,"685 Cherry St, Austin, TX 73301" -302819,AAA Batteries (4-pack),3,2.99,12/27/19 22:23,"752 Church St, Boston, MA 02215" -302820,27in 4K Gaming Monitor,1,389.99,12/09/19 21:57,"4 Church St, San Francisco, CA 94016" -302821,AAA Batteries (4-pack),1,2.99,12/16/19 13:05,"264 Main St, Portland, ME 04101" -302822,Apple Airpods Headphones,1,150,12/23/19 11:38,"532 Willow St, Los Angeles, CA 90001" -302823,AAA Batteries (4-pack),3,2.99,12/09/19 20:32,"852 Lakeview St, San Francisco, CA 94016" -302824,Lightning Charging Cable,2,14.95,12/19/19 11:48,"68 1st St, Los Angeles, CA 90001" -302825,AA Batteries (4-pack),2,3.84,12/25/19 11:53,"394 Hickory St, Dallas, TX 75001" -302826,AA Batteries (4-pack),1,3.84,12/15/19 22:03,"681 Cherry St, Seattle, WA 98101" -302827,27in FHD Monitor,1,149.99,12/15/19 12:29,"221 5th St, Dallas, TX 75001" -302828,Lightning Charging Cable,1,14.95,12/08/19 19:32,"93 Main St, Dallas, TX 75001" -302829,Lightning Charging Cable,1,14.95,12/19/19 21:31,"830 Lakeview St, Atlanta, GA 30301" -302830,Google Phone,1,600,12/28/19 20:58,"57 Jefferson St, Los Angeles, CA 90001" -302831,AAA Batteries (4-pack),1,2.99,12/26/19 21:00,"416 Pine St, New York City, NY 10001" -302832,AA Batteries (4-pack),1,3.84,12/29/19 19:22,"666 Center St, Seattle, WA 98101" -302833,Lightning Charging Cable,1,14.95,12/23/19 00:27,"44 6th St, New York City, NY 10001" -302834,Apple Airpods Headphones,1,150,12/18/19 12:00,"219 8th St, San Francisco, CA 94016" -302835,iPhone,1,700,12/13/19 11:45,"216 Johnson St, Los Angeles, CA 90001" -302836,Wired Headphones,2,11.99,12/22/19 22:17,"685 5th St, Seattle, WA 98101" -302837,Wired Headphones,1,11.99,12/11/19 14:27,"635 Walnut St, Seattle, WA 98101" -302838,27in 4K Gaming Monitor,1,389.99,12/27/19 12:21,"955 North St, Dallas, TX 75001" -302839,Apple Airpods Headphones,1,150,12/09/19 11:59,"150 Ridge St, Atlanta, GA 30301" -302840,AAA Batteries (4-pack),1,2.99,12/21/19 14:03,"111 13th St, Dallas, TX 75001" -302841,AAA Batteries (4-pack),1,2.99,12/05/19 13:01,"573 Meadow St, San Francisco, CA 94016" -302842,AA Batteries (4-pack),1,3.84,12/15/19 11:58,"392 Johnson St, San Francisco, CA 94016" -302843,Vareebadd Phone,1,400,12/02/19 18:34,"340 Center St, Seattle, WA 98101" -302844,Bose SoundSport Headphones,1,99.99,12/22/19 13:47,"25 Madison St, Boston, MA 02215" -302845,USB-C Charging Cable,1,11.95,12/22/19 23:18,"805 Jackson St, New York City, NY 10001" -302846,Lightning Charging Cable,1,14.95,12/22/19 18:54,"489 9th St, Boston, MA 02215" -302846,Lightning Charging Cable,1,14.95,12/22/19 18:54,"489 9th St, Boston, MA 02215" -302847,AAA Batteries (4-pack),2,2.99,12/17/19 23:03,"159 11th St, Atlanta, GA 30301" -302848,Lightning Charging Cable,1,14.95,12/13/19 15:03,"576 12th St, Portland, OR 97035" -302849,iPhone,1,700,12/16/19 19:36,"34 Lake St, San Francisco, CA 94016" -302850,USB-C Charging Cable,1,11.95,12/16/19 15:57,"308 Lakeview St, San Francisco, CA 94016" -302851,27in FHD Monitor,1,149.99,12/03/19 20:05,"272 14th St, Portland, OR 97035" -302852,Wired Headphones,1,11.99,12/26/19 05:52,"341 Willow St, Dallas, TX 75001" -302853,AA Batteries (4-pack),1,3.84,12/22/19 16:43,"231 Lincoln St, Los Angeles, CA 90001" -302854,Lightning Charging Cable,1,14.95,12/15/19 01:44,"458 Adams St, Austin, TX 73301" -302855,USB-C Charging Cable,1,11.95,12/10/19 13:36,"284 Lakeview St, Los Angeles, CA 90001" -302856,27in FHD Monitor,1,149.99,12/13/19 12:44,"283 1st St, Los Angeles, CA 90001" -302857,AA Batteries (4-pack),1,3.84,12/12/19 09:49,"552 Adams St, Los Angeles, CA 90001" -302858,Apple Airpods Headphones,1,150,12/14/19 01:09,"109 Forest St, San Francisco, CA 94016" -302859,27in FHD Monitor,1,149.99,12/03/19 05:43,"992 Jackson St, Seattle, WA 98101" -302860,Google Phone,1,600,12/31/19 16:17,"490 Center St, Dallas, TX 75001" -302861,Wired Headphones,1,11.99,12/11/19 09:08,"705 Dogwood St, Seattle, WA 98101" -302862,AA Batteries (4-pack),1,3.84,12/23/19 16:41,"108 Adams St, Los Angeles, CA 90001" -302863,AAA Batteries (4-pack),1,2.99,12/22/19 09:33,"596 Johnson St, San Francisco, CA 94016" -302864,Lightning Charging Cable,1,14.95,12/30/19 23:47,"575 2nd St, Portland, OR 97035" -302864,27in 4K Gaming Monitor,1,389.99,12/30/19 23:47,"575 2nd St, Portland, OR 97035" -302865,Apple Airpods Headphones,1,150,12/23/19 20:49,"854 4th St, Atlanta, GA 30301" -302866,iPhone,1,700,12/30/19 17:57,"845 Ridge St, Boston, MA 02215" -302867,USB-C Charging Cable,1,11.95,12/13/19 21:10,"663 Hill St, New York City, NY 10001" -302868,27in FHD Monitor,1,149.99,12/03/19 17:08,"986 Walnut St, Los Angeles, CA 90001" -302869,Wired Headphones,1,11.99,12/27/19 08:34,"984 13th St, New York City, NY 10001" -302870,Vareebadd Phone,1,400,12/01/19 08:27,"319 Jefferson St, Seattle, WA 98101" -302871,20in Monitor,1,109.99,12/20/19 16:31,"154 Spruce St, San Francisco, CA 94016" -302872,Lightning Charging Cable,1,14.95,12/29/19 20:47,"440 Hill St, Boston, MA 02215" -302873,Bose SoundSport Headphones,1,99.99,12/22/19 20:39,"764 14th St, Boston, MA 02215" -302874,Lightning Charging Cable,1,14.95,12/22/19 22:22,"398 River St, San Francisco, CA 94016" -302875,34in Ultrawide Monitor,1,379.99,12/29/19 14:40,"477 2nd St, Seattle, WA 98101" -302876,AA Batteries (4-pack),2,3.84,12/21/19 11:25,"863 Johnson St, Dallas, TX 75001" -302877,20in Monitor,1,109.99,12/21/19 22:56,"319 Park St, Boston, MA 02215" -302878,AA Batteries (4-pack),1,3.84,12/03/19 20:37,"703 Lakeview St, Portland, OR 97035" -302879,AAA Batteries (4-pack),1,2.99,12/29/19 12:28,"266 11th St, Portland, OR 97035" -302880,Wired Headphones,2,11.99,12/19/19 10:32,"341 7th St, Dallas, TX 75001" -302881,27in 4K Gaming Monitor,1,389.99,12/09/19 19:36,"294 14th St, Portland, OR 97035" -302881,Google Phone,1,600,12/09/19 19:36,"294 14th St, Portland, OR 97035" -302882,Apple Airpods Headphones,1,150,12/29/19 17:05,"162 Adams St, San Francisco, CA 94016" -302883,27in 4K Gaming Monitor,1,389.99,12/27/19 19:35,"141 Highland St, Austin, TX 73301" -302884,27in FHD Monitor,1,149.99,12/19/19 21:12,"874 Maple St, Los Angeles, CA 90001" -302885,ThinkPad Laptop,1,999.99,12/29/19 20:08,"469 Spruce St, Boston, MA 02215" -302886,AAA Batteries (4-pack),1,2.99,12/09/19 00:37,"394 South St, Atlanta, GA 30301" -302887,Lightning Charging Cable,1,14.95,12/24/19 17:11,"488 Hickory St, San Francisco, CA 94016" -302888,AAA Batteries (4-pack),4,2.99,12/03/19 17:38,"954 North St, Boston, MA 02215" -302888,27in FHD Monitor,1,149.99,12/03/19 17:38,"954 North St, Boston, MA 02215" -302889,AAA Batteries (4-pack),5,2.99,12/25/19 19:50,"437 Hill St, Austin, TX 73301" -302890,AA Batteries (4-pack),1,3.84,12/15/19 11:16,"728 Main St, Atlanta, GA 30301" -302891,USB-C Charging Cable,1,11.95,12/06/19 07:46,"516 Adams St, Dallas, TX 75001" -302892,Bose SoundSport Headphones,1,99.99,12/09/19 15:28,"967 Madison St, Dallas, TX 75001" -302893,USB-C Charging Cable,1,11.95,12/06/19 15:50,"731 11th St, San Francisco, CA 94016" -302894,Flatscreen TV,1,300,12/18/19 12:56,"932 1st St, Los Angeles, CA 90001" -302895,Macbook Pro Laptop,1,1700,12/16/19 14:00,"180 14th St, San Francisco, CA 94016" -302896,Lightning Charging Cable,2,14.95,12/13/19 18:09,"284 Lake St, Seattle, WA 98101" -302897,LG Dryer,1,600.0,12/10/19 11:39,"378 14th St, Los Angeles, CA 90001" -302898,AAA Batteries (4-pack),1,2.99,12/06/19 21:28,"620 Highland St, Atlanta, GA 30301" -302899,Apple Airpods Headphones,1,150,12/12/19 15:50,"469 Johnson St, Los Angeles, CA 90001" -302900,iPhone,1,700,12/05/19 20:55,"345 Wilson St, New York City, NY 10001" -302901,20in Monitor,1,109.99,12/16/19 10:41,"444 Adams St, San Francisco, CA 94016" -302902,AAA Batteries (4-pack),1,2.99,12/08/19 08:58,"825 Wilson St, San Francisco, CA 94016" -302903,LG Dryer,1,600.0,12/08/19 09:29,"906 Church St, Seattle, WA 98101" -302904,34in Ultrawide Monitor,1,379.99,12/17/19 21:43,"883 14th St, Atlanta, GA 30301" -302905,AA Batteries (4-pack),1,3.84,12/08/19 11:45,"426 Willow St, Austin, TX 73301" -302906,34in Ultrawide Monitor,1,379.99,12/17/19 12:56,"375 Center St, Boston, MA 02215" -302907,Lightning Charging Cable,1,14.95,12/23/19 22:17,"384 West St, Los Angeles, CA 90001" -302908,AA Batteries (4-pack),1,3.84,12/02/19 23:55,"648 Madison St, Boston, MA 02215" -302909,Lightning Charging Cable,1,14.95,12/06/19 10:51,"716 River St, San Francisco, CA 94016" -302910,Wired Headphones,1,11.99,12/09/19 17:20,"26 12th St, Portland, OR 97035" -302911,Wired Headphones,1,11.99,12/04/19 18:21,"360 Johnson St, Los Angeles, CA 90001" -302912,AAA Batteries (4-pack),1,2.99,12/10/19 20:00,"839 River St, San Francisco, CA 94016" -302913,USB-C Charging Cable,1,11.95,12/26/19 11:54,"967 Adams St, Seattle, WA 98101" -302914,Bose SoundSport Headphones,1,99.99,12/13/19 15:10,"862 Main St, Austin, TX 73301" -302915,Wired Headphones,1,11.99,12/24/19 23:09,"721 Main St, Los Angeles, CA 90001" -302916,AAA Batteries (4-pack),2,2.99,12/05/19 16:54,"206 Wilson St, Portland, OR 97035" -302917,USB-C Charging Cable,1,11.95,12/08/19 19:55,"775 5th St, Boston, MA 02215" -302918,ThinkPad Laptop,1,999.99,12/10/19 23:55,"57 Jefferson St, San Francisco, CA 94016" -302919,Apple Airpods Headphones,1,150,12/28/19 19:01,"885 Jackson St, San Francisco, CA 94016" -302920,AA Batteries (4-pack),1,3.84,12/20/19 13:46,"217 Washington St, Atlanta, GA 30301" -302921,AA Batteries (4-pack),2,3.84,12/16/19 06:29,"638 2nd St, San Francisco, CA 94016" -302922,Wired Headphones,1,11.99,12/06/19 23:38,"329 Maple St, New York City, NY 10001" -302923,Apple Airpods Headphones,1,150,12/22/19 18:41,"180 Highland St, Portland, OR 97035" -302924,Google Phone,1,600,12/30/19 10:15,"63 Center St, San Francisco, CA 94016" -302925,USB-C Charging Cable,1,11.95,12/11/19 20:29,"727 9th St, San Francisco, CA 94016" -302926,Wired Headphones,1,11.99,12/24/19 17:44,"177 Pine St, San Francisco, CA 94016" -302927,Apple Airpods Headphones,1,150,12/12/19 20:42,"129 Jefferson St, San Francisco, CA 94016" -302928,Lightning Charging Cable,1,14.95,12/19/19 10:08,"686 Jefferson St, Los Angeles, CA 90001" -302929,Wired Headphones,1,11.99,12/23/19 19:33,"892 Jackson St, Los Angeles, CA 90001" -302930,Bose SoundSport Headphones,1,99.99,12/23/19 18:40,"988 Elm St, Atlanta, GA 30301" -302931,27in 4K Gaming Monitor,1,389.99,12/15/19 23:39,"888 Hickory St, Austin, TX 73301" -302932,Wired Headphones,1,11.99,12/23/19 08:35,"937 6th St, Boston, MA 02215" -302933,Wired Headphones,1,11.99,12/02/19 20:55,"444 Dogwood St, New York City, NY 10001" -302934,34in Ultrawide Monitor,1,379.99,12/19/19 12:48,"263 Sunset St, Boston, MA 02215" -302935,Flatscreen TV,1,300,12/08/19 22:22,"19 Spruce St, Los Angeles, CA 90001" -302936,Lightning Charging Cable,1,14.95,12/07/19 12:19,"266 Washington St, Boston, MA 02215" -302937,USB-C Charging Cable,1,11.95,12/18/19 19:16,"245 Jefferson St, New York City, NY 10001" -302938,USB-C Charging Cable,2,11.95,12/17/19 18:54,"24 Walnut St, San Francisco, CA 94016" -302939,AAA Batteries (4-pack),1,2.99,12/01/19 18:46,"774 Washington St, San Francisco, CA 94016" -302940,Lightning Charging Cable,1,14.95,12/15/19 14:59,"779 Lakeview St, San Francisco, CA 94016" -302941,27in 4K Gaming Monitor,1,389.99,12/15/19 22:15,"558 13th St, Seattle, WA 98101" -302942,AAA Batteries (4-pack),2,2.99,12/17/19 18:07,"755 5th St, San Francisco, CA 94016" -302943,27in FHD Monitor,1,149.99,12/20/19 10:09,"590 4th St, New York City, NY 10001" -302944,AA Batteries (4-pack),1,3.84,12/01/19 22:23,"462 Hickory St, Los Angeles, CA 90001" -302945,Flatscreen TV,1,300,12/01/19 12:11,"736 13th St, San Francisco, CA 94016" -302946,USB-C Charging Cable,1,11.95,12/30/19 17:43,"598 Forest St, Dallas, TX 75001" -302947,Lightning Charging Cable,1,14.95,12/15/19 21:15,"427 Elm St, New York City, NY 10001" -302948,USB-C Charging Cable,2,11.95,12/29/19 15:58,"491 Cedar St, Boston, MA 02215" -302949,27in FHD Monitor,1,149.99,12/04/19 22:29,"402 5th St, Austin, TX 73301" -302950,27in 4K Gaming Monitor,1,389.99,12/15/19 21:51,"294 River St, Los Angeles, CA 90001" -302951,AAA Batteries (4-pack),1,2.99,12/01/19 16:15,"176 Cedar St, San Francisco, CA 94016" -302952,Flatscreen TV,1,300,12/02/19 09:35,"877 Washington St, New York City, NY 10001" -302953,USB-C Charging Cable,1,11.95,12/23/19 10:17,"488 1st St, Dallas, TX 75001" -302954,Wired Headphones,1,11.99,12/21/19 15:40,"755 Jefferson St, New York City, NY 10001" -302955,Lightning Charging Cable,1,14.95,12/25/19 19:09,"138 Park St, Portland, ME 04101" -302956,Bose SoundSport Headphones,1,99.99,12/16/19 01:27,"41 Walnut St, Los Angeles, CA 90001" -302957,AA Batteries (4-pack),1,3.84,12/25/19 21:04,"92 Chestnut St, Los Angeles, CA 90001" -302958,USB-C Charging Cable,1,11.95,12/24/19 21:13,"196 14th St, San Francisco, CA 94016" -302959,USB-C Charging Cable,1,11.95,12/01/19 11:59,"50 Walnut St, Portland, OR 97035" -302960,Apple Airpods Headphones,1,150,12/15/19 07:54,"93 13th St, Boston, MA 02215" -302961,AA Batteries (4-pack),1,3.84,12/09/19 13:21,"490 Dogwood St, San Francisco, CA 94016" -302962,AAA Batteries (4-pack),2,2.99,12/12/19 20:51,"361 Wilson St, Portland, OR 97035" -302963,Flatscreen TV,1,300,12/13/19 01:47,"794 14th St, Seattle, WA 98101" -302964,AAA Batteries (4-pack),1,2.99,12/30/19 23:05,"990 Washington St, Los Angeles, CA 90001" -302965,34in Ultrawide Monitor,1,379.99,12/12/19 12:54,"314 Main St, Dallas, TX 75001" -302966,Lightning Charging Cable,2,14.95,12/28/19 21:01,"836 10th St, Seattle, WA 98101" -302967,iPhone,1,700,12/14/19 13:13,"165 Adams St, New York City, NY 10001" -302968,AAA Batteries (4-pack),1,2.99,12/14/19 17:26,"479 13th St, New York City, NY 10001" -302969,Wired Headphones,1,11.99,12/22/19 13:20,"644 Forest St, New York City, NY 10001" -302970,34in Ultrawide Monitor,1,379.99,12/14/19 11:05,"993 Highland St, Dallas, TX 75001" -302971,27in 4K Gaming Monitor,1,389.99,12/06/19 11:00,"629 Willow St, Seattle, WA 98101" -302972,USB-C Charging Cable,1,11.95,12/11/19 20:26,"165 Willow St, Atlanta, GA 30301" -302973,Lightning Charging Cable,1,14.95,12/13/19 16:04,"585 Willow St, San Francisco, CA 94016" -302974,27in 4K Gaming Monitor,1,389.99,12/17/19 13:55,"967 Lake St, Boston, MA 02215" -302975,Wired Headphones,1,11.99,12/17/19 21:34,"898 Madison St, San Francisco, CA 94016" -302976,ThinkPad Laptop,1,999.99,12/03/19 15:25,"542 11th St, Boston, MA 02215" -302977,Lightning Charging Cable,1,14.95,12/13/19 18:54,"294 Madison St, Dallas, TX 75001" -302978,USB-C Charging Cable,1,11.95,12/27/19 16:02,"999 12th St, Atlanta, GA 30301" -302979,Wired Headphones,1,11.99,12/29/19 13:48,"951 Church St, San Francisco, CA 94016" -302980,Wired Headphones,1,11.99,12/24/19 19:53,"596 5th St, San Francisco, CA 94016" -302981,USB-C Charging Cable,1,11.95,12/18/19 18:48,"144 1st St, San Francisco, CA 94016" -302982,iPhone,1,700,12/10/19 05:55,"759 Hickory St, San Francisco, CA 94016" -302983,USB-C Charging Cable,1,11.95,12/03/19 08:58,"681 6th St, Dallas, TX 75001" -302984,AAA Batteries (4-pack),2,2.99,12/28/19 17:07,"361 Cedar St, Seattle, WA 98101" -302985,USB-C Charging Cable,1,11.95,12/23/19 20:32,"803 13th St, New York City, NY 10001" -302985,Apple Airpods Headphones,1,150,12/23/19 20:32,"803 13th St, New York City, NY 10001" -302986,20in Monitor,1,109.99,12/05/19 15:19,"187 Cedar St, San Francisco, CA 94016" -302987,Lightning Charging Cable,1,14.95,12/28/19 20:49,"596 North St, San Francisco, CA 94016" -302988,ThinkPad Laptop,1,999.99,12/21/19 13:52,"333 Cherry St, Seattle, WA 98101" -302989,Vareebadd Phone,1,400,12/23/19 15:00,"8 2nd St, Atlanta, GA 30301" -302989,USB-C Charging Cable,1,11.95,12/23/19 15:00,"8 2nd St, Atlanta, GA 30301" -302989,Wired Headphones,1,11.99,12/23/19 15:00,"8 2nd St, Atlanta, GA 30301" -302990,AAA Batteries (4-pack),2,2.99,12/06/19 19:39,"930 Center St, San Francisco, CA 94016" -302991,Google Phone,1,600,12/26/19 07:48,"605 Washington St, Los Angeles, CA 90001" -302991,USB-C Charging Cable,1,11.95,12/26/19 07:48,"605 Washington St, Los Angeles, CA 90001" -302991,Wired Headphones,2,11.99,12/26/19 07:48,"605 Washington St, Los Angeles, CA 90001" -302992,AA Batteries (4-pack),1,3.84,12/04/19 17:44,"987 Jackson St, Boston, MA 02215" -302993,AA Batteries (4-pack),2,3.84,12/12/19 16:37,"480 River St, Portland, OR 97035" -302994,Lightning Charging Cable,1,14.95,12/19/19 16:31,"139 Elm St, Los Angeles, CA 90001" -302995,AAA Batteries (4-pack),1,2.99,12/16/19 16:33,"786 Lincoln St, Atlanta, GA 30301" -302996,20in Monitor,1,109.99,12/04/19 15:05,"178 Ridge St, Seattle, WA 98101" -302997,Flatscreen TV,1,300,12/11/19 02:24,"958 Hill St, Los Angeles, CA 90001" -302998,USB-C Charging Cable,1,11.95,12/27/19 20:11,"639 Cedar St, Atlanta, GA 30301" -302999,AA Batteries (4-pack),1,3.84,12/19/19 20:52,"312 Madison St, Austin, TX 73301" -303000,Lightning Charging Cable,1,14.95,12/14/19 21:58,"933 Hickory St, Los Angeles, CA 90001" -303001,Apple Airpods Headphones,1,150,12/18/19 19:43,"778 Chestnut St, Atlanta, GA 30301" -303002,AA Batteries (4-pack),1,3.84,12/21/19 21:55,"531 Park St, Austin, TX 73301" -303003,AA Batteries (4-pack),2,3.84,12/02/19 19:12,"659 Highland St, Atlanta, GA 30301" -303004,USB-C Charging Cable,1,11.95,12/24/19 18:48,"128 South St, Austin, TX 73301" -303005,ThinkPad Laptop,1,999.99,12/04/19 22:28,"283 Willow St, Boston, MA 02215" -303006,Bose SoundSport Headphones,1,99.99,12/14/19 20:23,"96 Ridge St, San Francisco, CA 94016" -303007,Apple Airpods Headphones,1,150,12/25/19 19:42,"944 Church St, Atlanta, GA 30301" -303008,AAA Batteries (4-pack),2,2.99,12/28/19 10:12,"853 Johnson St, Austin, TX 73301" -303009,27in FHD Monitor,1,149.99,12/06/19 17:50,"250 Main St, San Francisco, CA 94016" -303010,iPhone,1,700,12/03/19 04:47,"308 Willow St, Boston, MA 02215" -303011,AAA Batteries (4-pack),2,2.99,12/27/19 12:27,"228 Adams St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -303012,Apple Airpods Headphones,1,150,12/10/19 01:47,"125 Lake St, Atlanta, GA 30301" -303013,20in Monitor,1,109.99,12/29/19 21:04,"923 Ridge St, San Francisco, CA 94016" -303014,AAA Batteries (4-pack),1,2.99,12/02/19 17:47,"810 Willow St, San Francisco, CA 94016" -303015,USB-C Charging Cable,1,11.95,12/26/19 10:22,"922 14th St, New York City, NY 10001" -303016,AA Batteries (4-pack),2,3.84,12/29/19 19:06,"555 Church St, Los Angeles, CA 90001" -303017,Apple Airpods Headphones,1,150,12/20/19 10:56,"915 Walnut St, San Francisco, CA 94016" -303018,AA Batteries (4-pack),2,3.84,12/24/19 07:03,"533 Hill St, Austin, TX 73301" -303019,27in FHD Monitor,1,149.99,12/19/19 21:48,"606 Chestnut St, San Francisco, CA 94016" -303020,Bose SoundSport Headphones,1,99.99,12/01/19 22:03,"209 North St, Dallas, TX 75001" -303021,Wired Headphones,1,11.99,12/07/19 09:36,"878 Church St, Boston, MA 02215" -303022,Lightning Charging Cable,1,14.95,12/01/19 11:48,"306 West St, Atlanta, GA 30301" -303023,Wired Headphones,1,11.99,12/04/19 00:25,"632 Highland St, New York City, NY 10001" -303024,Lightning Charging Cable,1,14.95,12/23/19 13:04,"131 Hill St, New York City, NY 10001" -303025,Bose SoundSport Headphones,1,99.99,12/24/19 08:25,"899 Church St, New York City, NY 10001" -303026,iPhone,1,700,12/07/19 12:34,"117 Washington St, San Francisco, CA 94016" -303027,USB-C Charging Cable,1,11.95,12/10/19 20:09,"978 9th St, San Francisco, CA 94016" -303028,USB-C Charging Cable,3,11.95,12/09/19 00:19,"960 Jackson St, Boston, MA 02215" -303029,AA Batteries (4-pack),1,3.84,12/12/19 17:37,"659 6th St, Portland, OR 97035" -303030,Bose SoundSport Headphones,1,99.99,12/05/19 11:53,"860 West St, San Francisco, CA 94016" -303031,AA Batteries (4-pack),1,3.84,12/17/19 17:04,"852 Wilson St, San Francisco, CA 94016" -303032,27in FHD Monitor,1,149.99,12/04/19 19:04,"381 Lakeview St, Atlanta, GA 30301" -303033,Lightning Charging Cable,1,14.95,12/21/19 20:12,"397 Center St, Atlanta, GA 30301" -303034,Bose SoundSport Headphones,1,99.99,12/18/19 18:50,"422 Sunset St, San Francisco, CA 94016" -303035,USB-C Charging Cable,1,11.95,12/23/19 11:17,"622 7th St, Los Angeles, CA 90001" -303036,USB-C Charging Cable,1,11.95,12/06/19 09:34,"69 Maple St, San Francisco, CA 94016" -303037,AAA Batteries (4-pack),1,2.99,12/10/19 14:56,"327 West St, Dallas, TX 75001" -303038,AAA Batteries (4-pack),2,2.99,12/06/19 18:33,"619 Wilson St, Seattle, WA 98101" -303039,AAA Batteries (4-pack),2,2.99,12/05/19 06:31,"158 11th St, New York City, NY 10001" -303040,AA Batteries (4-pack),1,3.84,12/24/19 21:38,"906 West St, Los Angeles, CA 90001" -303041,Wired Headphones,1,11.99,12/27/19 00:22,"824 5th St, Seattle, WA 98101" -303042,27in 4K Gaming Monitor,1,389.99,12/28/19 14:45,"18 Center St, New York City, NY 10001" -303043,USB-C Charging Cable,1,11.95,12/29/19 22:03,"938 Adams St, New York City, NY 10001" -303043,AA Batteries (4-pack),2,3.84,12/29/19 22:03,"938 Adams St, New York City, NY 10001" -,,,,, -303044,Flatscreen TV,1,300,12/06/19 19:11,"902 Meadow St, Austin, TX 73301" -303045,ThinkPad Laptop,1,999.99,12/12/19 09:57,"619 6th St, Austin, TX 73301" -303046,Lightning Charging Cable,1,14.95,12/23/19 08:13,"779 10th St, Boston, MA 02215" -303047,34in Ultrawide Monitor,1,379.99,12/16/19 10:49,"600 Forest St, Dallas, TX 75001" -303048,Wired Headphones,1,11.99,12/31/19 14:39,"278 River St, San Francisco, CA 94016" -303049,Google Phone,1,600,12/21/19 07:46,"982 Spruce St, Austin, TX 73301" -303050,USB-C Charging Cable,1,11.95,12/31/19 19:54,"397 5th St, Seattle, WA 98101" -303051,iPhone,1,700,12/25/19 20:15,"541 Washington St, Portland, OR 97035" -303051,Lightning Charging Cable,1,14.95,12/25/19 20:15,"541 Washington St, Portland, OR 97035" -303052,27in FHD Monitor,1,149.99,12/02/19 19:58,"438 Meadow St, Dallas, TX 75001" -303053,AAA Batteries (4-pack),3,2.99,12/19/19 23:23,"948 2nd St, New York City, NY 10001" -303054,Bose SoundSport Headphones,1,99.99,12/21/19 17:18,"967 7th St, San Francisco, CA 94016" -303055,Macbook Pro Laptop,1,1700,12/05/19 20:17,"984 Cedar St, Los Angeles, CA 90001" -303056,27in FHD Monitor,1,149.99,12/22/19 15:14,"799 13th St, San Francisco, CA 94016" -303057,Wired Headphones,1,11.99,12/18/19 17:34,"299 10th St, Austin, TX 73301" -303058,27in FHD Monitor,1,149.99,12/30/19 18:41,"799 Elm St, San Francisco, CA 94016" -303059,AAA Batteries (4-pack),2,2.99,12/30/19 11:21,"559 12th St, Boston, MA 02215" -303060,Wired Headphones,1,11.99,12/04/19 05:59,"126 Jackson St, Portland, OR 97035" -303061,USB-C Charging Cable,1,11.95,12/27/19 16:56,"993 North St, San Francisco, CA 94016" -303062,27in 4K Gaming Monitor,1,389.99,12/26/19 11:47,"271 South St, San Francisco, CA 94016" -303063,Google Phone,1,600,12/22/19 14:29,"263 Sunset St, San Francisco, CA 94016" -303064,USB-C Charging Cable,1,11.95,12/19/19 21:55,"954 Lakeview St, San Francisco, CA 94016" -303065,Lightning Charging Cable,1,14.95,12/10/19 19:39,"847 Adams St, Portland, OR 97035" -303066,Bose SoundSport Headphones,1,99.99,12/16/19 22:22,"611 Maple St, San Francisco, CA 94016" -303067,34in Ultrawide Monitor,1,379.99,12/27/19 21:26,"746 South St, Boston, MA 02215" -303068,Apple Airpods Headphones,1,150,12/28/19 18:12,"333 Cherry St, New York City, NY 10001" -303069,Google Phone,1,600,12/25/19 15:00,"603 Hill St, New York City, NY 10001" -303069,USB-C Charging Cable,1,11.95,12/25/19 15:00,"603 Hill St, New York City, NY 10001" -303070,AAA Batteries (4-pack),1,2.99,12/18/19 22:59,"332 Washington St, Boston, MA 02215" -303071,LG Dryer,1,600.0,12/13/19 20:31,"59 5th St, Seattle, WA 98101" -303072,LG Washing Machine,1,600.0,12/14/19 17:30,"151 Elm St, San Francisco, CA 94016" -303073,Wired Headphones,1,11.99,12/20/19 11:22,"273 12th St, San Francisco, CA 94016" -303074,20in Monitor,1,109.99,12/12/19 17:32,"105 Chestnut St, San Francisco, CA 94016" -303075,Lightning Charging Cable,1,14.95,12/10/19 18:23,"788 Johnson St, Dallas, TX 75001" -303076,LG Washing Machine,1,600.0,12/02/19 21:36,"821 Forest St, Dallas, TX 75001" -303077,Macbook Pro Laptop,1,1700,12/08/19 18:58,"104 Lakeview St, Boston, MA 02215" -303078,27in 4K Gaming Monitor,1,389.99,12/01/19 18:56,"37 Meadow St, Seattle, WA 98101" -303079,34in Ultrawide Monitor,1,379.99,12/23/19 01:35,"685 Chestnut St, Austin, TX 73301" -303080,27in FHD Monitor,1,149.99,12/03/19 11:37,"33 River St, Portland, OR 97035" -303080,Apple Airpods Headphones,1,150,12/03/19 11:37,"33 River St, Portland, OR 97035" -303081,Wired Headphones,1,11.99,12/10/19 20:40,"841 Lincoln St, Boston, MA 02215" -303082,Wired Headphones,3,11.99,12/01/19 23:06,"812 Park St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -303083,Bose SoundSport Headphones,1,99.99,12/15/19 19:07,"116 Lincoln St, New York City, NY 10001" -303084,USB-C Charging Cable,1,11.95,12/09/19 13:49,"570 Madison St, Austin, TX 73301" -303085,20in Monitor,1,109.99,12/24/19 12:50,"148 Highland St, San Francisco, CA 94016" -303086,Lightning Charging Cable,1,14.95,12/02/19 17:28,"101 5th St, Portland, OR 97035" -303087,27in FHD Monitor,1,149.99,12/11/19 19:44,"946 Spruce St, Los Angeles, CA 90001" -303088,AAA Batteries (4-pack),2,2.99,12/19/19 22:19,"404 Madison St, Boston, MA 02215" -303089,Wired Headphones,1,11.99,12/26/19 09:24,"763 Highland St, Los Angeles, CA 90001" -303090,AAA Batteries (4-pack),2,2.99,12/06/19 23:02,"35 Maple St, Dallas, TX 75001" -303091,ThinkPad Laptop,1,999.99,12/26/19 08:16,"451 Sunset St, Los Angeles, CA 90001" -303092,Wired Headphones,1,11.99,12/26/19 20:35,"634 Meadow St, Austin, TX 73301" -303093,Flatscreen TV,1,300,12/19/19 16:22,"276 Maple St, Dallas, TX 75001" -303094,Lightning Charging Cable,1,14.95,12/26/19 16:24,"871 7th St, New York City, NY 10001" -303095,20in Monitor,1,109.99,12/12/19 10:03,"902 Washington St, Los Angeles, CA 90001" -303096,27in 4K Gaming Monitor,1,389.99,12/21/19 23:09,"54 8th St, Atlanta, GA 30301" -303097,iPhone,1,700,12/28/19 17:46,"927 Ridge St, Austin, TX 73301" -303098,USB-C Charging Cable,1,11.95,12/25/19 17:36,"84 Willow St, Boston, MA 02215" -303099,Apple Airpods Headphones,1,150,12/02/19 22:03,"801 Spruce St, San Francisco, CA 94016" -303100,Lightning Charging Cable,1,14.95,12/29/19 20:22,"804 Jackson St, Atlanta, GA 30301" -303101,Lightning Charging Cable,1,14.95,12/28/19 15:27,"819 6th St, Los Angeles, CA 90001" -303102,AA Batteries (4-pack),1,3.84,12/06/19 20:49,"23 Maple St, Los Angeles, CA 90001" -303103,27in 4K Gaming Monitor,1,389.99,12/23/19 11:43,"448 Church St, Boston, MA 02215" -303104,Wired Headphones,1,11.99,12/09/19 14:54,"37 Lakeview St, Portland, OR 97035" -303105,USB-C Charging Cable,1,11.95,12/14/19 22:45,"528 Main St, Boston, MA 02215" -303106,Vareebadd Phone,1,400,12/15/19 21:33,"776 Adams St, Boston, MA 02215" -303107,USB-C Charging Cable,1,11.95,12/06/19 18:25,"763 12th St, Dallas, TX 75001" -303108,AA Batteries (4-pack),1,3.84,12/26/19 21:26,"504 Walnut St, New York City, NY 10001" -303109,Apple Airpods Headphones,1,150,12/06/19 21:08,"211 Ridge St, Atlanta, GA 30301" -303110,Lightning Charging Cable,1,14.95,12/06/19 23:03,"40 South St, Los Angeles, CA 90001" -303111,USB-C Charging Cable,1,11.95,12/17/19 07:59,"990 8th St, Boston, MA 02215" -303112,USB-C Charging Cable,1,11.95,12/18/19 11:13,"640 Hill St, Boston, MA 02215" -303113,iPhone,1,700,12/29/19 17:27,"615 Chestnut St, Austin, TX 73301" -303114,Lightning Charging Cable,1,14.95,12/02/19 21:25,"955 Madison St, Los Angeles, CA 90001" -303115,AA Batteries (4-pack),1,3.84,12/13/19 15:53,"156 Walnut St, San Francisco, CA 94016" -303116,iPhone,1,700,12/14/19 16:20,"947 14th St, Atlanta, GA 30301" -303117,AA Batteries (4-pack),1,3.84,12/27/19 05:53,"939 14th St, Dallas, TX 75001" -303118,USB-C Charging Cable,2,11.95,12/07/19 15:44,"122 Jefferson St, San Francisco, CA 94016" -303119,Bose SoundSport Headphones,1,99.99,12/18/19 11:49,"425 Main St, Seattle, WA 98101" -303120,Lightning Charging Cable,1,14.95,12/13/19 18:07,"220 2nd St, New York City, NY 10001" -303121,USB-C Charging Cable,1,11.95,12/06/19 07:31,"197 Meadow St, Atlanta, GA 30301" -303122,Google Phone,1,600,12/26/19 17:27,"152 Forest St, Seattle, WA 98101" -303123,Lightning Charging Cable,1,14.95,12/22/19 00:23,"48 7th St, Boston, MA 02215" -303124,Apple Airpods Headphones,1,150,12/08/19 18:51,"415 Jackson St, Atlanta, GA 30301" -303125,Bose SoundSport Headphones,1,99.99,12/30/19 17:57,"477 Church St, Atlanta, GA 30301" -303126,USB-C Charging Cable,1,11.95,12/20/19 23:49,"337 Walnut St, Los Angeles, CA 90001" -303127,Google Phone,1,600,12/10/19 15:52,"602 4th St, Los Angeles, CA 90001" -303128,Wired Headphones,2,11.99,12/21/19 18:53,"273 Adams St, Boston, MA 02215" -303129,USB-C Charging Cable,1,11.95,12/01/19 17:35,"985 Adams St, Los Angeles, CA 90001" -303130,AA Batteries (4-pack),1,3.84,12/26/19 16:07,"567 River St, San Francisco, CA 94016" -303131,Wired Headphones,1,11.99,12/27/19 13:01,"349 Maple St, Portland, OR 97035" -303132,Wired Headphones,1,11.99,12/04/19 19:13,"824 Hickory St, Austin, TX 73301" -303133,20in Monitor,1,109.99,12/19/19 17:12,"987 River St, Atlanta, GA 30301" -303134,AAA Batteries (4-pack),2,2.99,12/24/19 01:16,"186 Lincoln St, Portland, OR 97035" -303135,Bose SoundSport Headphones,1,99.99,12/12/19 19:55,"199 Dogwood St, Portland, OR 97035" -303136,27in FHD Monitor,1,149.99,12/19/19 21:23,"451 14th St, Seattle, WA 98101" -303137,Apple Airpods Headphones,1,150,12/07/19 07:20,"918 Spruce St, Portland, OR 97035" -303138,AA Batteries (4-pack),1,3.84,12/04/19 20:02,"874 8th St, Seattle, WA 98101" -303139,Lightning Charging Cable,1,14.95,12/06/19 10:37,"833 14th St, Portland, OR 97035" -303140,Vareebadd Phone,1,400,12/04/19 12:49,"785 Cherry St, Los Angeles, CA 90001" -303141,20in Monitor,1,109.99,12/25/19 18:23,"573 Washington St, New York City, NY 10001" -303142,Apple Airpods Headphones,1,150,12/13/19 16:12,"42 7th St, San Francisco, CA 94016" -303143,AA Batteries (4-pack),1,3.84,12/13/19 03:45,"398 Park St, San Francisco, CA 94016" -303144,Google Phone,1,600,12/31/19 18:22,"546 12th St, Los Angeles, CA 90001" -303145,Bose SoundSport Headphones,1,99.99,12/19/19 22:39,"562 Walnut St, Boston, MA 02215" -303146,Apple Airpods Headphones,1,150,12/06/19 22:41,"63 Maple St, Los Angeles, CA 90001" -303147,iPhone,1,700,12/31/19 19:40,"499 13th St, Atlanta, GA 30301" -303147,Lightning Charging Cable,1,14.95,12/31/19 19:40,"499 13th St, Atlanta, GA 30301" -303148,USB-C Charging Cable,1,11.95,12/28/19 07:48,"280 Meadow St, Boston, MA 02215" -303149,ThinkPad Laptop,1,999.99,12/29/19 21:58,"810 2nd St, San Francisco, CA 94016" -303150,Bose SoundSport Headphones,1,99.99,12/14/19 22:35,"175 South St, Seattle, WA 98101" -303151,USB-C Charging Cable,1,11.95,12/05/19 23:18,"792 Wilson St, Dallas, TX 75001" -303152,27in FHD Monitor,1,149.99,12/04/19 20:32,"137 Wilson St, Los Angeles, CA 90001" -303153,Apple Airpods Headphones,1,150,12/15/19 13:55,"312 Wilson St, New York City, NY 10001" -303154,iPhone,1,700,12/25/19 08:53,"126 Church St, San Francisco, CA 94016" -303154,Wired Headphones,1,11.99,12/25/19 08:53,"126 Church St, San Francisco, CA 94016" -303155,Wired Headphones,1,11.99,12/24/19 09:52,"104 Chestnut St, San Francisco, CA 94016" -303156,Macbook Pro Laptop,1,1700,12/10/19 22:31,"108 Highland St, Los Angeles, CA 90001" -303157,USB-C Charging Cable,1,11.95,12/07/19 13:39,"211 11th St, Atlanta, GA 30301" -303158,Wired Headphones,1,11.99,12/25/19 22:27,"154 Lincoln St, Los Angeles, CA 90001" -303159,Lightning Charging Cable,1,14.95,12/07/19 19:27,"729 Church St, Austin, TX 73301" -303160,27in 4K Gaming Monitor,1,389.99,12/21/19 09:20,"45 Spruce St, Seattle, WA 98101" -303161,Wired Headphones,1,11.99,12/08/19 19:38,"670 Main St, Dallas, TX 75001" -303162,USB-C Charging Cable,1,11.95,12/16/19 11:13,"52 7th St, Dallas, TX 75001" -303163,AAA Batteries (4-pack),4,2.99,12/17/19 14:14,"690 Wilson St, San Francisco, CA 94016" -303164,Lightning Charging Cable,1,14.95,12/07/19 13:16,"938 Lincoln St, San Francisco, CA 94016" -303165,AAA Batteries (4-pack),1,2.99,12/15/19 22:07,"854 Spruce St, San Francisco, CA 94016" -303166,AAA Batteries (4-pack),2,2.99,12/01/19 13:21,"99 Spruce St, San Francisco, CA 94016" -303167,34in Ultrawide Monitor,1,379.99,12/27/19 09:38,"922 Chestnut St, Seattle, WA 98101" -303168,AAA Batteries (4-pack),1,2.99,12/23/19 21:42,"432 Highland St, San Francisco, CA 94016" -303169,AAA Batteries (4-pack),1,2.99,12/31/19 15:59,"350 Lake St, Boston, MA 02215" -303170,Lightning Charging Cable,1,14.95,12/03/19 13:50,"226 Ridge St, Seattle, WA 98101" -303171,AAA Batteries (4-pack),2,2.99,12/31/19 19:15,"855 River St, Dallas, TX 75001" -303172,iPhone,1,700,12/14/19 20:28,"633 Washington St, New York City, NY 10001" -303173,27in 4K Gaming Monitor,1,389.99,12/15/19 21:27,"711 Sunset St, Portland, OR 97035" -303174,27in 4K Gaming Monitor,1,389.99,12/23/19 22:59,"745 West St, Seattle, WA 98101" -303175,Wired Headphones,1,11.99,12/15/19 13:47,"592 River St, Dallas, TX 75001" -303176,Macbook Pro Laptop,1,1700,12/02/19 22:56,"797 West St, Los Angeles, CA 90001" -303177,Lightning Charging Cable,1,14.95,12/01/19 16:10,"316 South St, Dallas, TX 75001" -303178,20in Monitor,1,109.99,12/11/19 20:27,"192 Willow St, Los Angeles, CA 90001" -303179,Lightning Charging Cable,1,14.95,12/15/19 15:53,"276 9th St, San Francisco, CA 94016" -303180,Apple Airpods Headphones,1,150,12/10/19 10:45,"302 Meadow St, New York City, NY 10001" -303181,Lightning Charging Cable,1,14.95,12/11/19 02:57,"564 11th St, Dallas, TX 75001" -303182,Lightning Charging Cable,1,14.95,12/20/19 23:26,"82 12th St, San Francisco, CA 94016" -303183,Lightning Charging Cable,1,14.95,12/31/19 20:05,"39 Cherry St, Boston, MA 02215" -303184,USB-C Charging Cable,1,11.95,12/09/19 09:12,"915 Cedar St, San Francisco, CA 94016" -303185,Lightning Charging Cable,1,14.95,12/15/19 17:41,"375 Lake St, Los Angeles, CA 90001" -303186,20in Monitor,1,109.99,12/19/19 19:51,"682 Cedar St, Seattle, WA 98101" -303187,Bose SoundSport Headphones,1,99.99,12/05/19 13:29,"828 Madison St, Atlanta, GA 30301" -303188,Lightning Charging Cable,1,14.95,12/25/19 09:16,"202 Park St, Portland, ME 04101" -303189,Lightning Charging Cable,1,14.95,12/14/19 20:40,"257 North St, New York City, NY 10001" -303190,AAA Batteries (4-pack),1,2.99,12/23/19 11:24,"999 Main St, Atlanta, GA 30301" -303191,AAA Batteries (4-pack),3,2.99,12/19/19 06:18,"85 Walnut St, Los Angeles, CA 90001" -303192,Bose SoundSport Headphones,1,99.99,12/10/19 21:07,"290 Lake St, Atlanta, GA 30301" -303193,AA Batteries (4-pack),1,3.84,12/16/19 09:13,"721 Dogwood St, Seattle, WA 98101" -303194,Lightning Charging Cable,1,14.95,12/09/19 21:35,"46 2nd St, Boston, MA 02215" -303195,Apple Airpods Headphones,2,150,12/12/19 21:36,"687 Wilson St, Portland, OR 97035" -303196,27in FHD Monitor,1,149.99,12/08/19 12:14,"272 Washington St, Dallas, TX 75001" -303197,Wired Headphones,1,11.99,12/13/19 19:33,"320 Cherry St, Boston, MA 02215" -303198,AA Batteries (4-pack),1,3.84,12/06/19 16:14,"68 Willow St, New York City, NY 10001" -303199,USB-C Charging Cable,1,11.95,12/14/19 15:36,"991 Pine St, San Francisco, CA 94016" -303200,Lightning Charging Cable,1,14.95,12/06/19 20:50,"294 Forest St, Seattle, WA 98101" -303201,AA Batteries (4-pack),1,3.84,12/19/19 20:11,"870 6th St, Atlanta, GA 30301" -303202,Lightning Charging Cable,2,14.95,12/10/19 10:35,"564 Main St, San Francisco, CA 94016" -303203,USB-C Charging Cable,1,11.95,12/05/19 11:11,"64 1st St, Atlanta, GA 30301" -303204,AAA Batteries (4-pack),1,2.99,12/11/19 05:36,"313 12th St, Portland, ME 04101" -303205,Apple Airpods Headphones,1,150,12/09/19 16:35,"986 Spruce St, Dallas, TX 75001" -303206,34in Ultrawide Monitor,1,379.99,12/11/19 08:27,"660 Park St, Boston, MA 02215" -303207,AAA Batteries (4-pack),1,2.99,12/21/19 21:54,"335 Walnut St, Atlanta, GA 30301" -303208,Bose SoundSport Headphones,1,99.99,12/10/19 11:48,"867 2nd St, New York City, NY 10001" -303209,USB-C Charging Cable,2,11.95,12/23/19 09:31,"471 Jefferson St, San Francisco, CA 94016" -303210,Lightning Charging Cable,1,14.95,12/02/19 16:56,"265 Center St, Seattle, WA 98101" -303211,Wired Headphones,2,11.99,12/20/19 19:23,"50 Lincoln St, New York City, NY 10001" -303212,Apple Airpods Headphones,1,150,12/09/19 21:27,"568 6th St, San Francisco, CA 94016" -303213,iPhone,1,700,12/24/19 09:30,"831 7th St, Portland, OR 97035" -303214,AA Batteries (4-pack),1,3.84,12/01/19 20:09,"795 Willow St, San Francisco, CA 94016" -303215,AAA Batteries (4-pack),1,2.99,12/02/19 22:58,"834 Park St, New York City, NY 10001" -303216,USB-C Charging Cable,1,11.95,12/07/19 01:06,"539 Pine St, Los Angeles, CA 90001" -303217,Lightning Charging Cable,1,14.95,12/31/19 05:38,"462 12th St, Atlanta, GA 30301" -303218,iPhone,1,700,12/05/19 01:26,"165 5th St, Atlanta, GA 30301" -303219,AAA Batteries (4-pack),1,2.99,12/30/19 11:27,"907 Willow St, Los Angeles, CA 90001" -303220,USB-C Charging Cable,1,11.95,12/31/19 18:22,"165 Cherry St, Portland, OR 97035" -303221,Apple Airpods Headphones,1,150,12/27/19 13:02,"708 Johnson St, Austin, TX 73301" -303222,27in FHD Monitor,1,149.99,12/20/19 16:38,"233 Elm St, Seattle, WA 98101" -303223,Lightning Charging Cable,1,14.95,12/24/19 22:53,"202 5th St, San Francisco, CA 94016" -303224,Apple Airpods Headphones,1,150,12/06/19 17:41,"545 Lake St, Boston, MA 02215" -303225,Lightning Charging Cable,1,14.95,12/01/19 13:17,"441 Maple St, Austin, TX 73301" -303226,AA Batteries (4-pack),2,3.84,12/11/19 17:49,"969 Maple St, New York City, NY 10001" -303227,AA Batteries (4-pack),1,3.84,12/24/19 11:50,"752 Forest St, Atlanta, GA 30301" -303228,Google Phone,1,600,12/29/19 14:56,"709 Main St, New York City, NY 10001" -303229,Bose SoundSport Headphones,1,99.99,12/03/19 12:36,"27 Chestnut St, New York City, NY 10001" -303230,AA Batteries (4-pack),1,3.84,12/13/19 16:40,"582 1st St, Portland, OR 97035" -303231,Flatscreen TV,1,300,12/30/19 15:00,"167 Madison St, San Francisco, CA 94016" -303232,Google Phone,1,600,12/03/19 10:06,"214 Meadow St, Los Angeles, CA 90001" -303233,Lightning Charging Cable,1,14.95,12/02/19 19:25,"198 Main St, San Francisco, CA 94016" -303234,27in 4K Gaming Monitor,1,389.99,12/03/19 01:54,"838 Lake St, San Francisco, CA 94016" -303235,USB-C Charging Cable,1,11.95,12/02/19 13:45,"620 Jackson St, Atlanta, GA 30301" -303236,Apple Airpods Headphones,1,150,12/21/19 08:51,"200 Maple St, Los Angeles, CA 90001" -303237,AAA Batteries (4-pack),1,2.99,12/29/19 19:27,"618 Spruce St, Dallas, TX 75001" -303238,USB-C Charging Cable,1,11.95,12/02/19 13:15,"389 Lakeview St, New York City, NY 10001" -303239,AAA Batteries (4-pack),2,2.99,12/23/19 17:28,"473 Center St, Los Angeles, CA 90001" -303240,iPhone,1,700,12/04/19 10:03,"61 Hickory St, Los Angeles, CA 90001" -303241,Apple Airpods Headphones,1,150,12/14/19 16:56,"588 Spruce St, Austin, TX 73301" -303242,Apple Airpods Headphones,1,150,12/14/19 19:01,"36 8th St, New York City, NY 10001" -303243,AA Batteries (4-pack),3,3.84,12/05/19 20:50,"239 8th St, New York City, NY 10001" -303244,AA Batteries (4-pack),1,3.84,12/09/19 08:19,"48 9th St, Boston, MA 02215" -303245,ThinkPad Laptop,1,999.99,12/19/19 19:02,"177 Church St, Boston, MA 02215" -303246,Lightning Charging Cable,1,14.95,12/19/19 08:21,"890 8th St, Seattle, WA 98101" -303247,Flatscreen TV,1,300,12/02/19 14:50,"979 6th St, Seattle, WA 98101" -303248,AA Batteries (4-pack),2,3.84,12/09/19 11:43,"378 2nd St, New York City, NY 10001" -303249,Lightning Charging Cable,1,14.95,12/24/19 21:58,"788 Washington St, New York City, NY 10001" -303250,Wired Headphones,2,11.99,12/20/19 20:24,"511 Lake St, Austin, TX 73301" -303251,27in 4K Gaming Monitor,1,389.99,12/10/19 17:35,"300 Center St, San Francisco, CA 94016" -303252,USB-C Charging Cable,1,11.95,12/18/19 21:29,"90 North St, San Francisco, CA 94016" -303253,27in FHD Monitor,1,149.99,12/05/19 13:22,"775 1st St, Dallas, TX 75001" -303254,Bose SoundSport Headphones,1,99.99,12/06/19 16:43,"22 12th St, New York City, NY 10001" -303255,27in FHD Monitor,1,149.99,12/20/19 12:14,"606 1st St, Dallas, TX 75001" -303256,Apple Airpods Headphones,1,150,12/24/19 08:46,"270 10th St, New York City, NY 10001" -303257,27in FHD Monitor,1,149.99,12/14/19 23:10,"745 Adams St, San Francisco, CA 94016" -303258,iPhone,1,700,12/11/19 08:27,"37 Washington St, San Francisco, CA 94016" -303259,Bose SoundSport Headphones,1,99.99,12/19/19 10:08,"35 Washington St, Atlanta, GA 30301" -303260,Wired Headphones,1,11.99,12/12/19 18:43,"531 Pine St, Dallas, TX 75001" -303261,AAA Batteries (4-pack),2,2.99,12/01/19 08:25,"721 7th St, New York City, NY 10001" -303262,AA Batteries (4-pack),1,3.84,12/15/19 16:12,"978 Sunset St, Atlanta, GA 30301" -303263,Wired Headphones,1,11.99,12/09/19 13:50,"117 12th St, New York City, NY 10001" -303264,Wired Headphones,1,11.99,12/15/19 13:00,"271 Sunset St, Austin, TX 73301" -303265,20in Monitor,1,109.99,12/30/19 17:00,"160 Jefferson St, Atlanta, GA 30301" -303266,Wired Headphones,1,11.99,12/08/19 19:38,"583 4th St, San Francisco, CA 94016" -303267,27in FHD Monitor,1,149.99,12/15/19 19:53,"591 9th St, Atlanta, GA 30301" -303268,Bose SoundSport Headphones,1,99.99,12/24/19 15:30,"915 Jefferson St, Seattle, WA 98101" -303269,Bose SoundSport Headphones,1,99.99,12/06/19 19:02,"299 West St, New York City, NY 10001" -303270,USB-C Charging Cable,1,11.95,12/17/19 18:56,"117 Hill St, Atlanta, GA 30301" -303271,AA Batteries (4-pack),1,3.84,12/31/19 20:02,"103 7th St, Los Angeles, CA 90001" -303272,AA Batteries (4-pack),2,3.84,12/11/19 15:20,"20 6th St, San Francisco, CA 94016" -303273,Macbook Pro Laptop,1,1700,12/20/19 11:39,"600 Spruce St, Atlanta, GA 30301" -303274,AA Batteries (4-pack),1,3.84,12/11/19 13:28,"720 Walnut St, Portland, OR 97035" -303275,27in 4K Gaming Monitor,1,389.99,12/30/19 16:17,"414 13th St, Seattle, WA 98101" -303276,iPhone,1,700,12/30/19 21:30,"741 Hickory St, San Francisco, CA 94016" -303277,Wired Headphones,1,11.99,12/13/19 14:11,"323 Jefferson St, San Francisco, CA 94016" -303278,LG Dryer,1,600.0,12/08/19 12:10,"900 Jackson St, Austin, TX 73301" -303279,27in FHD Monitor,1,149.99,12/04/19 13:03,"959 Hill St, Los Angeles, CA 90001" -303280,Bose SoundSport Headphones,1,99.99,12/16/19 16:58,"712 North St, San Francisco, CA 94016" -303281,Lightning Charging Cable,1,14.95,12/26/19 19:50,"890 7th St, Los Angeles, CA 90001" -303282,Lightning Charging Cable,1,14.95,12/18/19 09:59,"667 Meadow St, San Francisco, CA 94016" -303283,Wired Headphones,1,11.99,12/28/19 07:00,"927 Hill St, San Francisco, CA 94016" -303284,Lightning Charging Cable,1,14.95,12/05/19 09:14,"157 4th St, Seattle, WA 98101" -303285,AA Batteries (4-pack),1,3.84,12/28/19 11:40,"197 2nd St, San Francisco, CA 94016" -303286,Bose SoundSport Headphones,1,99.99,12/07/19 01:23,"421 Dogwood St, Atlanta, GA 30301" -303287,iPhone,1,700,12/18/19 22:00,"263 Madison St, Boston, MA 02215" -303288,27in 4K Gaming Monitor,1,389.99,12/27/19 06:22,"936 Walnut St, San Francisco, CA 94016" -303289,iPhone,1,700,12/01/19 18:58,"559 5th St, Los Angeles, CA 90001" -303290,27in FHD Monitor,1,149.99,12/11/19 18:34,"729 Ridge St, San Francisco, CA 94016" -303291,Flatscreen TV,1,300,12/19/19 11:15,"641 9th St, Dallas, TX 75001" -303292,Vareebadd Phone,1,400,12/29/19 18:50,"899 Walnut St, New York City, NY 10001" -303293,USB-C Charging Cable,1,11.95,12/03/19 17:02,"229 1st St, Atlanta, GA 30301" -303294,AAA Batteries (4-pack),2,2.99,12/12/19 18:02,"992 Adams St, Boston, MA 02215" -303295,AA Batteries (4-pack),3,3.84,12/24/19 14:20,"992 South St, Dallas, TX 75001" -303295,Apple Airpods Headphones,1,150,12/24/19 14:20,"992 South St, Dallas, TX 75001" -303296,Apple Airpods Headphones,1,150,12/17/19 21:19,"261 West St, Los Angeles, CA 90001" -303297,Lightning Charging Cable,1,14.95,12/08/19 19:01,"368 Spruce St, Los Angeles, CA 90001" -303298,Wired Headphones,2,11.99,12/13/19 16:33,"886 Main St, Boston, MA 02215" -303299,Wired Headphones,1,11.99,12/10/19 17:48,"633 Chestnut St, New York City, NY 10001" -303300,AAA Batteries (4-pack),1,2.99,12/14/19 14:57,"88 Center St, San Francisco, CA 94016" -303301,Lightning Charging Cable,1,14.95,12/22/19 17:22,"637 10th St, San Francisco, CA 94016" -303302,USB-C Charging Cable,1,11.95,12/30/19 12:21,"457 Spruce St, New York City, NY 10001" -303303,Bose SoundSport Headphones,1,99.99,12/22/19 13:02,"527 5th St, San Francisco, CA 94016" -303304,Lightning Charging Cable,2,14.95,12/19/19 13:39,"153 10th St, Austin, TX 73301" -303305,AA Batteries (4-pack),1,3.84,12/29/19 11:06,"614 Main St, Los Angeles, CA 90001" -303306,34in Ultrawide Monitor,1,379.99,12/12/19 20:48,"727 Forest St, San Francisco, CA 94016" -303307,Wired Headphones,1,11.99,12/05/19 17:47,"304 Forest St, Boston, MA 02215" -303308,ThinkPad Laptop,1,999.99,12/30/19 10:00,"893 8th St, Portland, OR 97035" -303309,USB-C Charging Cable,1,11.95,12/25/19 13:00,"253 Lake St, Seattle, WA 98101" -303310,AAA Batteries (4-pack),2,2.99,12/18/19 08:42,"988 13th St, Boston, MA 02215" -303311,Bose SoundSport Headphones,1,99.99,12/11/19 20:39,"412 Sunset St, New York City, NY 10001" -303312,Lightning Charging Cable,1,14.95,12/04/19 17:48,"109 Park St, San Francisco, CA 94016" -303313,USB-C Charging Cable,1,11.95,12/07/19 08:47,"339 Maple St, Boston, MA 02215" -303314,Wired Headphones,1,11.99,12/29/19 12:54,"797 13th St, New York City, NY 10001" -303315,AAA Batteries (4-pack),1,2.99,12/04/19 19:25,"810 7th St, San Francisco, CA 94016" -303316,AAA Batteries (4-pack),2,2.99,12/10/19 16:15,"949 13th St, New York City, NY 10001" -303317,Google Phone,1,600,12/13/19 19:32,"462 Cedar St, San Francisco, CA 94016" -303317,USB-C Charging Cable,1,11.95,12/13/19 19:32,"462 Cedar St, San Francisco, CA 94016" -303318,ThinkPad Laptop,1,999.99,12/17/19 22:58,"409 12th St, Dallas, TX 75001" -303319,AAA Batteries (4-pack),1,2.99,12/02/19 18:28,"219 Meadow St, San Francisco, CA 94016" -303320,AA Batteries (4-pack),1,3.84,12/19/19 19:04,"382 2nd St, Portland, OR 97035" -303321,Bose SoundSport Headphones,1,99.99,12/23/19 01:19,"241 Church St, Los Angeles, CA 90001" -303322,Wired Headphones,1,11.99,12/22/19 13:43,"314 Sunset St, San Francisco, CA 94016" -303322,Lightning Charging Cable,1,14.95,12/22/19 13:43,"314 Sunset St, San Francisco, CA 94016" -303323,USB-C Charging Cable,1,11.95,12/30/19 13:54,"330 River St, Los Angeles, CA 90001" -303324,Apple Airpods Headphones,1,150,12/12/19 02:57,"509 Hickory St, Los Angeles, CA 90001" -303325,AAA Batteries (4-pack),2,2.99,12/10/19 14:23,"425 14th St, Los Angeles, CA 90001" -303326,AAA Batteries (4-pack),2,2.99,12/16/19 16:37,"827 Highland St, Austin, TX 73301" -303327,AA Batteries (4-pack),1,3.84,12/21/19 12:51,"580 11th St, San Francisco, CA 94016" -303328,Macbook Pro Laptop,1,1700,12/22/19 16:28,"942 Church St, Portland, OR 97035" -303329,27in 4K Gaming Monitor,1,389.99,12/31/19 08:26,"948 12th St, San Francisco, CA 94016" -303330,20in Monitor,1,109.99,12/15/19 20:58,"425 1st St, Dallas, TX 75001" -303331,Bose SoundSport Headphones,1,99.99,12/01/19 17:07,"9 13th St, San Francisco, CA 94016" -303332,USB-C Charging Cable,1,11.95,12/26/19 04:20,"354 1st St, San Francisco, CA 94016" -303333,Lightning Charging Cable,1,14.95,12/20/19 12:16,"434 5th St, New York City, NY 10001" -303334,USB-C Charging Cable,1,11.95,12/26/19 16:30,"256 Elm St, Austin, TX 73301" -303335,AAA Batteries (4-pack),1,2.99,12/14/19 22:18,"549 Walnut St, New York City, NY 10001" -303336,34in Ultrawide Monitor,1,379.99,12/17/19 12:03,"520 Chestnut St, New York City, NY 10001" -303337,Apple Airpods Headphones,1,150,12/06/19 11:11,"374 Willow St, New York City, NY 10001" -303338,USB-C Charging Cable,1,11.95,12/10/19 20:03,"467 6th St, San Francisco, CA 94016" -303338,Lightning Charging Cable,1,14.95,12/10/19 20:03,"467 6th St, San Francisco, CA 94016" -303339,Apple Airpods Headphones,1,150,12/11/19 13:47,"533 Washington St, Boston, MA 02215" -303340,USB-C Charging Cable,1,11.95,12/14/19 15:41,"368 Elm St, Seattle, WA 98101" -303341,Apple Airpods Headphones,1,150,12/25/19 22:20,"127 Lakeview St, Los Angeles, CA 90001" -303342,Lightning Charging Cable,1,14.95,12/16/19 14:03,"927 11th St, San Francisco, CA 94016" -303343,AAA Batteries (4-pack),2,2.99,12/14/19 11:57,"618 Jefferson St, San Francisco, CA 94016" -303344,iPhone,1,700,12/26/19 16:19,"252 Cedar St, New York City, NY 10001" -303345,LG Washing Machine,1,600.0,12/10/19 19:03,"197 2nd St, Dallas, TX 75001" -303346,Google Phone,1,600,12/17/19 12:40,"781 Pine St, New York City, NY 10001" -303347,Google Phone,1,600,12/22/19 20:07,"427 Walnut St, Los Angeles, CA 90001" -303348,AAA Batteries (4-pack),3,2.99,12/14/19 07:34,"323 Hill St, San Francisco, CA 94016" -303349,Lightning Charging Cable,1,14.95,12/15/19 20:15,"255 Jackson St, Boston, MA 02215" -303350,Bose SoundSport Headphones,1,99.99,12/02/19 19:26,"581 Cherry St, Dallas, TX 75001" -303351,Wired Headphones,1,11.99,12/03/19 18:08,"259 Meadow St, San Francisco, CA 94016" -303352,AA Batteries (4-pack),2,3.84,12/14/19 00:52,"232 4th St, New York City, NY 10001" -303353,Bose SoundSport Headphones,1,99.99,12/04/19 13:12,"442 8th St, Los Angeles, CA 90001" -303354,USB-C Charging Cable,1,11.95,12/12/19 11:28,"932 Lakeview St, New York City, NY 10001" -303355,Wired Headphones,1,11.99,12/16/19 15:12,"862 Park St, San Francisco, CA 94016" -303356,iPhone,1,700,12/30/19 18:14,"288 Willow St, Seattle, WA 98101" -303356,Wired Headphones,1,11.99,12/30/19 18:14,"288 Willow St, Seattle, WA 98101" -303357,Apple Airpods Headphones,1,150,12/25/19 14:10,"120 6th St, San Francisco, CA 94016" -303357,Google Phone,1,600,12/25/19 14:10,"120 6th St, San Francisco, CA 94016" -303358,Wired Headphones,1,11.99,12/01/19 12:56,"605 Church St, San Francisco, CA 94016" -303359,AA Batteries (4-pack),1,3.84,12/24/19 18:58,"862 4th St, Los Angeles, CA 90001" -303360,AAA Batteries (4-pack),1,2.99,12/20/19 10:59,"290 10th St, Los Angeles, CA 90001" -303361,USB-C Charging Cable,1,11.95,12/01/19 15:32,"545 Hill St, Dallas, TX 75001" -303362,Bose SoundSport Headphones,1,99.99,12/21/19 21:26,"960 Hill St, Los Angeles, CA 90001" -303363,AA Batteries (4-pack),2,3.84,12/07/19 07:41,"818 Cherry St, San Francisco, CA 94016" -303364,Bose SoundSport Headphones,1,99.99,12/16/19 14:19,"100 Madison St, Boston, MA 02215" -303365,Apple Airpods Headphones,1,150,12/12/19 16:10,"823 10th St, Los Angeles, CA 90001" -303366,AA Batteries (4-pack),2,3.84,12/25/19 18:15,"538 Sunset St, San Francisco, CA 94016" -303367,Bose SoundSport Headphones,1,99.99,12/21/19 11:27,"733 Park St, Seattle, WA 98101" -303368,iPhone,1,700,12/08/19 14:39,"605 Cedar St, Boston, MA 02215" -303368,Lightning Charging Cable,1,14.95,12/08/19 14:39,"605 Cedar St, Boston, MA 02215" -303369,Lightning Charging Cable,1,14.95,12/14/19 10:04,"140 13th St, Los Angeles, CA 90001" -303370,Google Phone,1,600,12/28/19 20:11,"711 Ridge St, Los Angeles, CA 90001" -303370,Bose SoundSport Headphones,1,99.99,12/28/19 20:11,"711 Ridge St, Los Angeles, CA 90001" -303371,Apple Airpods Headphones,1,150,12/30/19 07:25,"535 Highland St, Atlanta, GA 30301" -303372,AAA Batteries (4-pack),1,2.99,12/15/19 01:14,"634 Ridge St, Boston, MA 02215" -303373,Wired Headphones,1,11.99,12/03/19 08:38,"574 Hickory St, Boston, MA 02215" -303374,Wired Headphones,1,11.99,12/26/19 08:33,"301 Cedar St, San Francisco, CA 94016" -303375,AA Batteries (4-pack),1,3.84,12/18/19 22:41,"304 Park St, San Francisco, CA 94016" -303376,Apple Airpods Headphones,1,150,12/30/19 12:20,"48 8th St, San Francisco, CA 94016" -303377,Apple Airpods Headphones,1,150,12/05/19 10:16,"836 Pine St, Austin, TX 73301" -303378,AA Batteries (4-pack),1,3.84,12/19/19 18:54,"77 12th St, New York City, NY 10001" -303379,27in 4K Gaming Monitor,1,389.99,12/21/19 20:45,"112 South St, Boston, MA 02215" -303380,AA Batteries (4-pack),1,3.84,12/26/19 10:24,"715 Lakeview St, San Francisco, CA 94016" -303381,Flatscreen TV,1,300,12/02/19 14:24,"437 11th St, San Francisco, CA 94016" -303382,Wired Headphones,1,11.99,12/05/19 22:00,"348 Cedar St, San Francisco, CA 94016" -303383,AAA Batteries (4-pack),1,2.99,12/01/19 14:39,"158 Main St, San Francisco, CA 94016" -303384,Apple Airpods Headphones,1,150,12/03/19 15:12,"959 Elm St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -303385,AA Batteries (4-pack),1,3.84,12/15/19 09:38,"354 5th St, San Francisco, CA 94016" -303386,iPhone,1,700,12/26/19 13:19,"106 Cedar St, San Francisco, CA 94016" -303387,AAA Batteries (4-pack),2,2.99,12/20/19 12:58,"757 Cherry St, Boston, MA 02215" -303388,Wired Headphones,1,11.99,12/28/19 10:17,"28 Washington St, Portland, OR 97035" -303389,USB-C Charging Cable,1,11.95,12/11/19 14:45,"147 1st St, New York City, NY 10001" -303390,34in Ultrawide Monitor,1,379.99,12/14/19 11:26,"950 7th St, New York City, NY 10001" -303391,20in Monitor,1,109.99,12/29/19 00:17,"9 11th St, Boston, MA 02215" -303392,Apple Airpods Headphones,1,150,12/03/19 11:58,"916 9th St, New York City, NY 10001" -303393,34in Ultrawide Monitor,1,379.99,12/06/19 00:29,"219 4th St, San Francisco, CA 94016" -303394,27in FHD Monitor,1,149.99,12/20/19 23:46,"151 Ridge St, Dallas, TX 75001" -303395,27in 4K Gaming Monitor,1,389.99,12/18/19 10:05,"193 Center St, San Francisco, CA 94016" -303396,AA Batteries (4-pack),1,3.84,12/18/19 20:21,"404 Hickory St, Atlanta, GA 30301" -303397,34in Ultrawide Monitor,1,379.99,12/22/19 17:02,"250 Jackson St, Los Angeles, CA 90001" -303398,Bose SoundSport Headphones,1,99.99,12/08/19 16:28,"677 12th St, New York City, NY 10001" -303399,AA Batteries (4-pack),1,3.84,12/09/19 10:25,"158 1st St, Boston, MA 02215" -303400,USB-C Charging Cable,1,11.95,12/26/19 00:16,"552 Spruce St, Seattle, WA 98101" -303401,27in FHD Monitor,1,149.99,12/20/19 17:45,"916 Washington St, Dallas, TX 75001" -303402,Google Phone,1,600,12/21/19 12:01,"903 Sunset St, Boston, MA 02215" -303402,Wired Headphones,1,11.99,12/21/19 12:01,"903 Sunset St, Boston, MA 02215" -303403,AA Batteries (4-pack),1,3.84,12/17/19 19:29,"212 Main St, Portland, ME 04101" -303404,iPhone,1,700,12/12/19 09:30,"200 Cedar St, San Francisco, CA 94016" -303405,Lightning Charging Cable,1,14.95,12/02/19 12:52,"786 Park St, Portland, OR 97035" -303406,27in FHD Monitor,1,149.99,12/16/19 21:31,"241 Madison St, San Francisco, CA 94016" -303407,27in FHD Monitor,1,149.99,12/26/19 19:11,"273 Johnson St, New York City, NY 10001" -303408,20in Monitor,1,109.99,12/01/19 15:13,"468 Madison St, Atlanta, GA 30301" -303409,Flatscreen TV,1,300,12/26/19 20:42,"295 14th St, Boston, MA 02215" -303410,AA Batteries (4-pack),1,3.84,12/26/19 11:40,"54 Willow St, Los Angeles, CA 90001" -303411,Flatscreen TV,1,300,12/05/19 13:52,"892 2nd St, San Francisco, CA 94016" -303412,27in FHD Monitor,1,149.99,12/17/19 17:59,"324 Meadow St, Dallas, TX 75001" -303413,Lightning Charging Cable,1,14.95,12/08/19 21:10,"152 13th St, Los Angeles, CA 90001" -303414,Bose SoundSport Headphones,1,99.99,12/12/19 04:06,"139 Spruce St, San Francisco, CA 94016" -303415,Wired Headphones,1,11.99,12/15/19 14:59,"545 Hill St, New York City, NY 10001" -303416,Lightning Charging Cable,1,14.95,12/24/19 09:28,"364 Center St, Boston, MA 02215" -303417,27in 4K Gaming Monitor,1,389.99,12/11/19 21:50,"761 Walnut St, Seattle, WA 98101" -303418,Macbook Pro Laptop,1,1700,12/23/19 16:21,"337 Center St, New York City, NY 10001" -303419,AAA Batteries (4-pack),1,2.99,12/07/19 20:22,"991 Meadow St, Dallas, TX 75001" -303420,Lightning Charging Cable,1,14.95,12/22/19 18:50,"850 Dogwood St, New York City, NY 10001" -303421,20in Monitor,1,109.99,12/10/19 20:36,"746 Walnut St, Seattle, WA 98101" -303421,Bose SoundSport Headphones,1,99.99,12/10/19 20:36,"746 Walnut St, Seattle, WA 98101" -303422,Lightning Charging Cable,1,14.95,12/10/19 11:34,"264 11th St, Atlanta, GA 30301" -303423,Apple Airpods Headphones,1,150,12/26/19 14:02,"135 Adams St, Portland, OR 97035" -303424,Wired Headphones,1,11.99,12/26/19 11:10,"84 Willow St, San Francisco, CA 94016" -303425,Lightning Charging Cable,1,14.95,12/15/19 07:54,"253 2nd St, San Francisco, CA 94016" -303426,Wired Headphones,1,11.99,12/14/19 17:43,"400 6th St, Austin, TX 73301" -303427,Lightning Charging Cable,1,14.95,12/08/19 21:56,"465 North St, San Francisco, CA 94016" -303428,AA Batteries (4-pack),1,3.84,12/05/19 19:35,"481 Cedar St, Seattle, WA 98101" -303429,Google Phone,1,600,12/16/19 13:28,"545 Spruce St, Los Angeles, CA 90001" -303430,USB-C Charging Cable,1,11.95,12/12/19 12:40,"273 11th St, Boston, MA 02215" -303431,USB-C Charging Cable,1,11.95,12/13/19 17:41,"715 Wilson St, San Francisco, CA 94016" -303432,Google Phone,1,600,12/24/19 06:19,"743 14th St, Atlanta, GA 30301" -303433,Lightning Charging Cable,1,14.95,12/24/19 17:34,"693 Johnson St, San Francisco, CA 94016" -303434,AAA Batteries (4-pack),2,2.99,12/01/19 14:46,"686 4th St, San Francisco, CA 94016" -303435,AAA Batteries (4-pack),2,2.99,12/17/19 08:51,"683 Chestnut St, Portland, OR 97035" -303436,Wired Headphones,1,11.99,12/01/19 07:08,"533 11th St, Dallas, TX 75001" -303437,Bose SoundSport Headphones,1,99.99,12/04/19 09:44,"749 5th St, Dallas, TX 75001" -303438,AA Batteries (4-pack),2,3.84,12/05/19 20:01,"706 Hill St, San Francisco, CA 94016" -303439,Apple Airpods Headphones,1,150,12/30/19 20:39,"387 Park St, San Francisco, CA 94016" -303440,USB-C Charging Cable,1,11.95,12/03/19 20:31,"568 8th St, San Francisco, CA 94016" -303441,Lightning Charging Cable,1,14.95,12/19/19 22:11,"421 7th St, New York City, NY 10001" -303442,Wired Headphones,1,11.99,12/01/19 13:54,"694 Maple St, Atlanta, GA 30301" -303443,Wired Headphones,1,11.99,12/03/19 11:17,"11 7th St, Atlanta, GA 30301" -303444,AAA Batteries (4-pack),4,2.99,12/30/19 18:35,"72 Hickory St, Portland, OR 97035" -303445,Lightning Charging Cable,1,14.95,12/12/19 20:06,"319 14th St, Dallas, TX 75001" -303446,27in FHD Monitor,1,149.99,12/04/19 19:45,"771 Lake St, Los Angeles, CA 90001" -303447,AA Batteries (4-pack),1,3.84,12/15/19 19:29,"170 Lake St, Boston, MA 02215" -303448,AAA Batteries (4-pack),2,2.99,12/23/19 14:51,"746 Lake St, Los Angeles, CA 90001" -303449,AAA Batteries (4-pack),2,2.99,12/31/19 08:33,"495 Cherry St, Boston, MA 02215" -303450,34in Ultrawide Monitor,1,379.99,12/27/19 10:51,"276 Hickory St, New York City, NY 10001" -303451,27in FHD Monitor,1,149.99,12/28/19 20:55,"791 South St, San Francisco, CA 94016" -303452,34in Ultrawide Monitor,1,379.99,12/12/19 20:04,"811 Walnut St, Los Angeles, CA 90001" -303453,34in Ultrawide Monitor,1,379.99,12/14/19 23:22,"241 Park St, San Francisco, CA 94016" -303454,Wired Headphones,1,11.99,12/06/19 20:49,"834 10th St, Los Angeles, CA 90001" -303455,AA Batteries (4-pack),1,3.84,12/05/19 08:18,"170 Maple St, Portland, ME 04101" -303456,Wired Headphones,1,11.99,12/07/19 05:59,"390 Elm St, San Francisco, CA 94016" -303457,Apple Airpods Headphones,1,150,12/08/19 15:20,"548 Johnson St, Seattle, WA 98101" -303458,USB-C Charging Cable,2,11.95,12/06/19 16:23,"285 River St, Dallas, TX 75001" -303458,ThinkPad Laptop,1,999.99,12/06/19 16:23,"285 River St, Dallas, TX 75001" -303459,27in 4K Gaming Monitor,1,389.99,12/09/19 15:27,"62 North St, Atlanta, GA 30301" -303460,AA Batteries (4-pack),1,3.84,12/10/19 20:26,"86 Main St, Los Angeles, CA 90001" -303461,Lightning Charging Cable,1,14.95,12/12/19 20:10,"509 11th St, New York City, NY 10001" -303462,Bose SoundSport Headphones,1,99.99,12/23/19 19:54,"277 Cherry St, Los Angeles, CA 90001" -303463,Bose SoundSport Headphones,1,99.99,12/03/19 20:54,"680 1st St, Los Angeles, CA 90001" -303464,AA Batteries (4-pack),1,3.84,12/25/19 11:14,"347 14th St, Atlanta, GA 30301" -303465,USB-C Charging Cable,1,11.95,12/10/19 12:02,"423 Meadow St, New York City, NY 10001" -303466,AA Batteries (4-pack),1,3.84,12/27/19 12:59,"781 Maple St, Los Angeles, CA 90001" -303467,iPhone,1,700,12/18/19 19:00,"445 Hill St, New York City, NY 10001" -303467,Lightning Charging Cable,1,14.95,12/18/19 19:00,"445 Hill St, New York City, NY 10001" -303468,27in FHD Monitor,1,149.99,12/12/19 07:26,"38 5th St, Atlanta, GA 30301" -303469,Bose SoundSport Headphones,1,99.99,12/11/19 20:00,"410 Hickory St, Atlanta, GA 30301" -303470,USB-C Charging Cable,1,11.95,12/30/19 21:17,"948 River St, New York City, NY 10001" -303471,AAA Batteries (4-pack),1,2.99,12/31/19 13:56,"804 10th St, Los Angeles, CA 90001" -303472,Wired Headphones,1,11.99,12/10/19 20:32,"271 Dogwood St, Seattle, WA 98101" -303473,34in Ultrawide Monitor,1,379.99,12/28/19 12:40,"56 Walnut St, Boston, MA 02215" -303474,AA Batteries (4-pack),2,3.84,12/14/19 12:50,"140 13th St, New York City, NY 10001" -303475,USB-C Charging Cable,2,11.95,12/21/19 07:28,"993 10th St, Boston, MA 02215" -,,,,, -303476,Wired Headphones,1,11.99,12/18/19 10:36,"366 Cedar St, New York City, NY 10001" -303477,iPhone,1,700,12/19/19 12:34,"545 12th St, Boston, MA 02215" -303477,Lightning Charging Cable,1,14.95,12/19/19 12:34,"545 12th St, Boston, MA 02215" -303478,20in Monitor,1,109.99,12/15/19 16:09,"179 Jefferson St, Seattle, WA 98101" -303479,iPhone,1,700,12/22/19 20:03,"946 Jackson St, Seattle, WA 98101" -303480,Flatscreen TV,1,300,12/05/19 22:55,"911 Walnut St, Atlanta, GA 30301" -303481,Apple Airpods Headphones,1,150,12/23/19 11:18,"776 14th St, San Francisco, CA 94016" -303482,Wired Headphones,1,11.99,12/16/19 23:17,"666 Jackson St, San Francisco, CA 94016" -303483,AA Batteries (4-pack),2,3.84,12/04/19 12:26,"940 Walnut St, Boston, MA 02215" -303484,Flatscreen TV,1,300,12/22/19 20:29,"950 Forest St, Los Angeles, CA 90001" -303485,USB-C Charging Cable,1,11.95,12/26/19 12:14,"424 10th St, New York City, NY 10001" -303485,Google Phone,1,600,12/26/19 12:14,"424 10th St, New York City, NY 10001" -303486,AAA Batteries (4-pack),1,2.99,12/31/19 20:02,"182 4th St, San Francisco, CA 94016" -303487,AA Batteries (4-pack),1,3.84,12/16/19 18:39,"734 Church St, San Francisco, CA 94016" -303488,AAA Batteries (4-pack),2,2.99,12/04/19 19:22,"856 Chestnut St, Dallas, TX 75001" -303489,AAA Batteries (4-pack),1,2.99,12/30/19 20:20,"423 Willow St, Los Angeles, CA 90001" -303490,Bose SoundSport Headphones,1,99.99,12/30/19 09:40,"849 6th St, Portland, OR 97035" -303491,27in 4K Gaming Monitor,1,389.99,12/23/19 09:23,"936 Center St, New York City, NY 10001" -303492,AAA Batteries (4-pack),2,2.99,12/17/19 16:53,"595 7th St, San Francisco, CA 94016" -303493,Bose SoundSport Headphones,1,99.99,12/26/19 12:13,"453 8th St, San Francisco, CA 94016" -303494,Google Phone,1,600,12/29/19 17:46,"105 Spruce St, New York City, NY 10001" -303495,AAA Batteries (4-pack),1,2.99,12/16/19 11:28,"994 Sunset St, Dallas, TX 75001" -303496,Wired Headphones,1,11.99,12/15/19 17:26,"510 11th St, Austin, TX 73301" -303497,Apple Airpods Headphones,1,150,12/04/19 19:15,"885 14th St, Atlanta, GA 30301" -303498,34in Ultrawide Monitor,1,379.99,12/10/19 10:34,"451 Lincoln St, Portland, ME 04101" -303499,USB-C Charging Cable,2,11.95,12/19/19 21:27,"257 Ridge St, Austin, TX 73301" -303500,Bose SoundSport Headphones,1,99.99,12/15/19 11:19,"878 10th St, Boston, MA 02215" -303501,AAA Batteries (4-pack),1,2.99,12/26/19 13:43,"278 4th St, San Francisco, CA 94016" -303502,Wired Headphones,1,11.99,12/26/19 17:54,"764 Lake St, Portland, OR 97035" -303503,AA Batteries (4-pack),1,3.84,12/13/19 10:41,"194 13th St, San Francisco, CA 94016" -303504,Bose SoundSport Headphones,1,99.99,12/06/19 02:22,"391 Jefferson St, New York City, NY 10001" -303505,Wired Headphones,1,11.99,12/06/19 11:59,"360 Highland St, Los Angeles, CA 90001" -303506,AAA Batteries (4-pack),1,2.99,12/22/19 11:12,"159 Spruce St, New York City, NY 10001" -303507,Lightning Charging Cable,1,14.95,12/08/19 13:56,"980 Highland St, Dallas, TX 75001" -303508,Wired Headphones,1,11.99,12/21/19 19:33,"321 Sunset St, San Francisco, CA 94016" -303508,USB-C Charging Cable,1,11.95,12/21/19 19:33,"321 Sunset St, San Francisco, CA 94016" -303509,iPhone,1,700,12/31/19 18:29,"673 Lakeview St, Boston, MA 02215" -303510,Apple Airpods Headphones,1,150,12/24/19 21:03,"702 1st St, Los Angeles, CA 90001" -303511,iPhone,1,700,12/29/19 10:56,"719 9th St, New York City, NY 10001" -303512,Wired Headphones,1,11.99,12/25/19 13:36,"411 8th St, Atlanta, GA 30301" -303513,iPhone,1,700,12/26/19 12:05,"890 West St, Boston, MA 02215" -303514,Wired Headphones,1,11.99,12/31/19 17:58,"927 Washington St, New York City, NY 10001" -303515,Apple Airpods Headphones,1,150,12/13/19 18:06,"904 Church St, Los Angeles, CA 90001" -303516,AAA Batteries (4-pack),2,2.99,12/01/19 23:35,"504 Park St, San Francisco, CA 94016" -303517,Bose SoundSport Headphones,1,99.99,12/27/19 12:32,"226 Park St, New York City, NY 10001" -303518,Apple Airpods Headphones,1,150,12/07/19 15:23,"339 North St, San Francisco, CA 94016" -303519,Macbook Pro Laptop,1,1700,12/02/19 17:31,"802 South St, Portland, OR 97035" -303520,iPhone,1,700,12/21/19 18:53,"800 Hill St, Los Angeles, CA 90001" -303520,Lightning Charging Cable,1,14.95,12/21/19 18:53,"800 Hill St, Los Angeles, CA 90001" -303521,Google Phone,1,600,12/01/19 20:43,"853 7th St, San Francisco, CA 94016" -303522,ThinkPad Laptop,1,999.99,12/16/19 13:34,"674 Pine St, Portland, OR 97035" -303523,Bose SoundSport Headphones,1,99.99,12/28/19 13:08,"514 4th St, New York City, NY 10001" -303524,AAA Batteries (4-pack),1,2.99,12/10/19 18:29,"307 Center St, New York City, NY 10001" -303525,USB-C Charging Cable,1,11.95,12/20/19 14:03,"600 North St, San Francisco, CA 94016" -303525,Google Phone,1,600,12/20/19 14:03,"600 North St, San Francisco, CA 94016" -303526,USB-C Charging Cable,1,11.95,12/22/19 11:26,"279 Ridge St, Los Angeles, CA 90001" -303527,iPhone,1,700,12/07/19 18:07,"617 6th St, San Francisco, CA 94016" -303527,Lightning Charging Cable,2,14.95,12/07/19 18:07,"617 6th St, San Francisco, CA 94016" -303528,Wired Headphones,1,11.99,12/21/19 19:01,"578 14th St, San Francisco, CA 94016" -303529,Bose SoundSport Headphones,1,99.99,12/18/19 21:04,"673 Dogwood St, Seattle, WA 98101" -,,,,, -303530,USB-C Charging Cable,1,11.95,12/09/19 18:01,"941 North St, Boston, MA 02215" -303531,Wired Headphones,1,11.99,12/18/19 14:31,"573 8th St, San Francisco, CA 94016" -303532,AA Batteries (4-pack),1,3.84,12/15/19 20:53,"702 14th St, Portland, OR 97035" -303533,Apple Airpods Headphones,1,150,12/24/19 22:11,"977 Hickory St, Dallas, TX 75001" -303534,Lightning Charging Cable,2,14.95,12/28/19 19:48,"362 12th St, Los Angeles, CA 90001" -303535,Google Phone,1,600,12/05/19 14:59,"974 2nd St, Atlanta, GA 30301" -303535,USB-C Charging Cable,1,11.95,12/05/19 14:59,"974 2nd St, Atlanta, GA 30301" -303536,Apple Airpods Headphones,1,150,12/10/19 09:50,"978 Meadow St, Seattle, WA 98101" -303537,Wired Headphones,1,11.99,12/17/19 09:04,"18 Spruce St, San Francisco, CA 94016" -303538,USB-C Charging Cable,1,11.95,12/20/19 07:23,"569 14th St, Seattle, WA 98101" -303539,Bose SoundSport Headphones,1,99.99,12/06/19 07:10,"176 Sunset St, Los Angeles, CA 90001" -303540,Bose SoundSport Headphones,1,99.99,12/05/19 09:48,"529 South St, Boston, MA 02215" -303541,AAA Batteries (4-pack),1,2.99,12/23/19 05:51,"738 Church St, San Francisco, CA 94016" -303542,Vareebadd Phone,1,400,12/11/19 15:21,"788 Meadow St, New York City, NY 10001" -303543,Apple Airpods Headphones,1,150,12/07/19 07:02,"688 10th St, Los Angeles, CA 90001" -303544,Lightning Charging Cable,1,14.95,12/31/19 15:54,"231 Walnut St, New York City, NY 10001" -303545,iPhone,1,700,12/11/19 21:25,"456 7th St, San Francisco, CA 94016" -303546,AAA Batteries (4-pack),1,2.99,12/27/19 20:24,"306 Walnut St, Los Angeles, CA 90001" -303547,AAA Batteries (4-pack),1,2.99,12/11/19 14:33,"376 4th St, Seattle, WA 98101" -303548,Flatscreen TV,1,300,12/05/19 18:17,"624 4th St, San Francisco, CA 94016" -303549,20in Monitor,1,109.99,12/17/19 07:13,"336 4th St, New York City, NY 10001" -303550,Lightning Charging Cable,1,14.95,12/11/19 21:18,"177 4th St, San Francisco, CA 94016" -303551,Wired Headphones,1,11.99,12/23/19 13:30,"751 Ridge St, San Francisco, CA 94016" -303552,Apple Airpods Headphones,1,150,12/11/19 06:37,"564 4th St, Seattle, WA 98101" -303553,20in Monitor,1,109.99,12/21/19 17:28,"975 Park St, New York City, NY 10001" -303554,Apple Airpods Headphones,1,150,12/13/19 08:26,"363 Chestnut St, San Francisco, CA 94016" -303555,Apple Airpods Headphones,1,150,12/27/19 10:18,"569 West St, Los Angeles, CA 90001" -303556,ThinkPad Laptop,1,999.99,12/31/19 07:21,"368 Elm St, Dallas, TX 75001" -303557,AA Batteries (4-pack),1,3.84,12/18/19 09:56,"562 5th St, San Francisco, CA 94016" -303558,USB-C Charging Cable,1,11.95,12/08/19 11:14,"288 Park St, Atlanta, GA 30301" -303559,AAA Batteries (4-pack),1,2.99,12/01/19 16:24,"78 Adams St, San Francisco, CA 94016" -303560,27in 4K Gaming Monitor,1,389.99,12/03/19 10:07,"514 Ridge St, Los Angeles, CA 90001" -303561,Wired Headphones,1,11.99,12/06/19 21:36,"486 Walnut St, New York City, NY 10001" -303562,Macbook Pro Laptop,1,1700,12/09/19 21:56,"393 5th St, San Francisco, CA 94016" -303563,AA Batteries (4-pack),2,3.84,12/02/19 17:33,"221 Lakeview St, Seattle, WA 98101" -303564,Wired Headphones,1,11.99,12/09/19 22:12,"403 Chestnut St, Los Angeles, CA 90001" -303565,Bose SoundSport Headphones,1,99.99,12/20/19 17:15,"589 Lincoln St, Seattle, WA 98101" -303566,Apple Airpods Headphones,1,150,12/21/19 19:04,"668 8th St, San Francisco, CA 94016" -303567,AA Batteries (4-pack),1,3.84,12/12/19 15:21,"411 Washington St, Atlanta, GA 30301" -303568,Bose SoundSport Headphones,1,99.99,12/17/19 17:10,"911 13th St, Boston, MA 02215" -303569,Lightning Charging Cable,1,14.95,12/09/19 19:50,"862 14th St, Los Angeles, CA 90001" -303570,Macbook Pro Laptop,1,1700,12/22/19 01:52,"924 Center St, Dallas, TX 75001" -303571,Flatscreen TV,1,300,12/29/19 06:45,"29 2nd St, San Francisco, CA 94016" -303572,USB-C Charging Cable,2,11.95,12/16/19 19:58,"719 Wilson St, Atlanta, GA 30301" -303573,Lightning Charging Cable,1,14.95,12/11/19 18:15,"485 Spruce St, Seattle, WA 98101" -303574,Wired Headphones,1,11.99,12/01/19 10:18,"800 Spruce St, New York City, NY 10001" -303575,Apple Airpods Headphones,1,150,12/22/19 00:10,"472 Forest St, Austin, TX 73301" -303576,Apple Airpods Headphones,1,150,12/01/19 13:06,"270 Chestnut St, Boston, MA 02215" -303577,AA Batteries (4-pack),1,3.84,12/13/19 17:00,"838 5th St, Boston, MA 02215" -303578,34in Ultrawide Monitor,1,379.99,12/28/19 11:10,"435 14th St, New York City, NY 10001" -303579,AA Batteries (4-pack),1,3.84,12/05/19 22:27,"816 6th St, Dallas, TX 75001" -303580,AA Batteries (4-pack),1,3.84,12/26/19 11:42,"561 5th St, New York City, NY 10001" -303581,USB-C Charging Cable,2,11.95,12/06/19 16:56,"869 13th St, Boston, MA 02215" -303582,AA Batteries (4-pack),1,3.84,12/06/19 00:17,"501 Washington St, Seattle, WA 98101" -303583,Wired Headphones,1,11.99,12/14/19 22:56,"812 Lincoln St, San Francisco, CA 94016" -303584,27in 4K Gaming Monitor,1,389.99,12/05/19 21:26,"643 Center St, Atlanta, GA 30301" -303585,Apple Airpods Headphones,1,150,12/18/19 10:12,"487 Johnson St, Boston, MA 02215" -303586,Bose SoundSport Headphones,1,99.99,12/23/19 11:56,"819 Cherry St, New York City, NY 10001" -303587,Lightning Charging Cable,1,14.95,12/24/19 13:26,"395 Sunset St, Austin, TX 73301" -303588,Lightning Charging Cable,1,14.95,12/12/19 13:59,"630 Adams St, Portland, ME 04101" -303589,Apple Airpods Headphones,1,150,12/25/19 13:06,"630 Forest St, San Francisco, CA 94016" -303590,20in Monitor,1,109.99,12/03/19 10:45,"769 Willow St, Seattle, WA 98101" -303591,iPhone,1,700,12/25/19 11:47,"717 South St, San Francisco, CA 94016" -303592,USB-C Charging Cable,2,11.95,12/17/19 10:44,"747 4th St, New York City, NY 10001" -303592,Google Phone,1,600,12/17/19 10:44,"747 4th St, New York City, NY 10001" -303593,Google Phone,1,600,12/14/19 01:02,"87 River St, San Francisco, CA 94016" -303593,USB-C Charging Cable,1,11.95,12/14/19 01:02,"87 River St, San Francisco, CA 94016" -303594,AAA Batteries (4-pack),2,2.99,12/08/19 20:39,"655 Johnson St, New York City, NY 10001" -303595,AAA Batteries (4-pack),1,2.99,12/26/19 17:26,"232 Church St, Seattle, WA 98101" -303596,Flatscreen TV,1,300,12/07/19 19:01,"423 1st St, San Francisco, CA 94016" -303597,iPhone,1,700,12/14/19 22:20,"951 10th St, Boston, MA 02215" -303598,Apple Airpods Headphones,1,150,12/09/19 01:18,"806 Dogwood St, Seattle, WA 98101" -303599,Lightning Charging Cable,1,14.95,12/03/19 14:33,"406 South St, New York City, NY 10001" -303600,Lightning Charging Cable,1,14.95,12/01/19 19:37,"59 Center St, San Francisco, CA 94016" -303601,Wired Headphones,1,11.99,12/24/19 13:11,"498 Cedar St, Seattle, WA 98101" -303602,USB-C Charging Cable,1,11.95,12/31/19 11:57,"23 Hill St, Dallas, TX 75001" -303603,iPhone,1,700,12/21/19 16:42,"547 Lakeview St, New York City, NY 10001" -303604,AAA Batteries (4-pack),1,2.99,12/24/19 22:44,"258 4th St, Los Angeles, CA 90001" -303605,USB-C Charging Cable,1,11.95,12/10/19 21:27,"445 South St, Los Angeles, CA 90001" -303606,Bose SoundSport Headphones,1,99.99,12/28/19 14:08,"369 Hickory St, Atlanta, GA 30301" -303607,AA Batteries (4-pack),1,3.84,12/14/19 18:48,"915 Washington St, New York City, NY 10001" -303608,iPhone,1,700,12/06/19 11:56,"592 Sunset St, Seattle, WA 98101" -303609,Google Phone,1,600,12/11/19 00:13,"320 River St, Los Angeles, CA 90001" -303610,Flatscreen TV,1,300,12/22/19 08:26,"614 5th St, Los Angeles, CA 90001" -303611,Bose SoundSport Headphones,1,99.99,12/13/19 10:54,"569 Elm St, Dallas, TX 75001" -303612,Apple Airpods Headphones,1,150,12/28/19 15:12,"922 10th St, Austin, TX 73301" -303613,ThinkPad Laptop,1,999.99,12/18/19 17:00,"810 Jackson St, San Francisco, CA 94016" -303614,Apple Airpods Headphones,1,150,12/03/19 14:23,"750 Jefferson St, San Francisco, CA 94016" -303615,USB-C Charging Cable,1,11.95,12/20/19 18:42,"202 Jackson St, Los Angeles, CA 90001" -303616,27in 4K Gaming Monitor,1,389.99,12/07/19 15:27,"368 9th St, New York City, NY 10001" -303617,Bose SoundSport Headphones,1,99.99,12/03/19 15:44,"95 Wilson St, San Francisco, CA 94016" -303618,AAA Batteries (4-pack),1,2.99,12/07/19 22:45,"945 South St, Seattle, WA 98101" -303619,Apple Airpods Headphones,1,150,12/06/19 10:14,"586 8th St, Atlanta, GA 30301" -303620,Wired Headphones,1,11.99,12/25/19 00:07,"498 Main St, San Francisco, CA 94016" -303621,AA Batteries (4-pack),1,3.84,12/28/19 17:35,"536 Highland St, San Francisco, CA 94016" -303622,27in 4K Gaming Monitor,1,389.99,12/23/19 07:48,"575 River St, New York City, NY 10001" -303623,27in FHD Monitor,1,149.99,12/24/19 09:46,"34 West St, San Francisco, CA 94016" -303624,Wired Headphones,1,11.99,12/17/19 00:30,"711 Chestnut St, Boston, MA 02215" -303625,AA Batteries (4-pack),1,3.84,12/14/19 18:45,"927 Pine St, San Francisco, CA 94016" -303626,AAA Batteries (4-pack),1,2.99,12/28/19 21:09,"700 14th St, Atlanta, GA 30301" -303627,Bose SoundSport Headphones,1,99.99,12/29/19 01:07,"805 Walnut St, Los Angeles, CA 90001" -303628,AAA Batteries (4-pack),3,2.99,12/16/19 20:28,"632 Hill St, Boston, MA 02215" -303629,Flatscreen TV,1,300,12/20/19 14:25,"524 Wilson St, Seattle, WA 98101" -303630,AA Batteries (4-pack),2,3.84,12/01/19 15:52,"37 Cherry St, Los Angeles, CA 90001" -303631,AA Batteries (4-pack),1,3.84,12/21/19 06:14,"859 11th St, Austin, TX 73301" -303632,Lightning Charging Cable,1,14.95,12/22/19 10:38,"257 1st St, Los Angeles, CA 90001" -303633,Apple Airpods Headphones,1,150,12/31/19 18:13,"101 6th St, New York City, NY 10001" -303634,Wired Headphones,1,11.99,12/01/19 16:44,"891 Wilson St, Austin, TX 73301" -303635,Bose SoundSport Headphones,1,99.99,12/08/19 23:15,"576 Meadow St, Los Angeles, CA 90001" -303636,27in 4K Gaming Monitor,1,389.99,12/10/19 13:15,"634 Park St, San Francisco, CA 94016" -303637,AA Batteries (4-pack),2,3.84,12/23/19 04:37,"911 8th St, Los Angeles, CA 90001" -303638,Bose SoundSport Headphones,1,99.99,12/30/19 19:25,"180 1st St, Atlanta, GA 30301" -303639,USB-C Charging Cable,1,11.95,12/01/19 10:44,"644 Chestnut St, Atlanta, GA 30301" -303640,AAA Batteries (4-pack),1,2.99,12/05/19 07:40,"462 Sunset St, Atlanta, GA 30301" -303641,Bose SoundSport Headphones,1,99.99,12/16/19 14:44,"811 Maple St, San Francisco, CA 94016" -303642,Macbook Pro Laptop,1,1700,12/06/19 22:37,"994 10th St, New York City, NY 10001" -303643,Bose SoundSport Headphones,1,99.99,12/10/19 11:27,"805 13th St, San Francisco, CA 94016" -303644,USB-C Charging Cable,1,11.95,12/08/19 16:59,"546 6th St, Atlanta, GA 30301" -303645,20in Monitor,1,109.99,12/24/19 18:52,"979 Lincoln St, Seattle, WA 98101" -303646,Lightning Charging Cable,1,14.95,12/14/19 12:47,"118 West St, Los Angeles, CA 90001" -303647,Lightning Charging Cable,1,14.95,12/22/19 11:36,"355 11th St, Dallas, TX 75001" -303648,Vareebadd Phone,1,400,12/23/19 09:17,"800 Ridge St, San Francisco, CA 94016" -303648,Wired Headphones,1,11.99,12/23/19 09:17,"800 Ridge St, San Francisco, CA 94016" -303649,USB-C Charging Cable,1,11.95,12/31/19 13:07,"272 Park St, Seattle, WA 98101" -303650,Bose SoundSport Headphones,1,99.99,12/18/19 13:04,"62 Willow St, New York City, NY 10001" -303651,AA Batteries (4-pack),2,3.84,12/04/19 09:29,"220 Adams St, Los Angeles, CA 90001" -303652,Bose SoundSport Headphones,1,99.99,12/03/19 21:32,"851 Dogwood St, San Francisco, CA 94016" -303653,20in Monitor,1,109.99,12/03/19 09:18,"72 Madison St, Los Angeles, CA 90001" -303654,Wired Headphones,1,11.99,12/04/19 13:05,"58 Church St, Los Angeles, CA 90001" -303655,USB-C Charging Cable,1,11.95,12/12/19 15:41,"79 9th St, San Francisco, CA 94016" -303656,AA Batteries (4-pack),1,3.84,12/19/19 15:53,"287 1st St, Boston, MA 02215" -303657,AA Batteries (4-pack),1,3.84,12/09/19 10:51,"1 Highland St, San Francisco, CA 94016" -303658,USB-C Charging Cable,1,11.95,12/16/19 11:56,"892 7th St, Los Angeles, CA 90001" -303659,27in FHD Monitor,1,149.99,12/16/19 16:12,"593 Cherry St, New York City, NY 10001" -303660,USB-C Charging Cable,1,11.95,12/14/19 19:39,"376 12th St, Los Angeles, CA 90001" -303661,AAA Batteries (4-pack),1,2.99,12/06/19 17:18,"312 South St, New York City, NY 10001" -303662,27in FHD Monitor,1,149.99,12/16/19 14:58,"578 Ridge St, San Francisco, CA 94016" -303662,AAA Batteries (4-pack),2,2.99,12/16/19 14:58,"578 Ridge St, San Francisco, CA 94016" -303663,USB-C Charging Cable,1,11.95,12/16/19 18:30,"524 6th St, San Francisco, CA 94016" -303664,AAA Batteries (4-pack),1,2.99,12/12/19 08:15,"428 5th St, Seattle, WA 98101" -303665,27in 4K Gaming Monitor,1,389.99,12/02/19 09:52,"967 Forest St, Dallas, TX 75001" -303666,Apple Airpods Headphones,1,150,12/10/19 12:03,"59 Wilson St, San Francisco, CA 94016" -303667,iPhone,1,700,12/11/19 19:39,"301 North St, New York City, NY 10001" -303668,AA Batteries (4-pack),1,3.84,12/02/19 07:46,"260 Center St, Boston, MA 02215" -303669,AAA Batteries (4-pack),1,2.99,12/08/19 20:16,"597 Main St, Los Angeles, CA 90001" -303670,Apple Airpods Headphones,1,150,12/17/19 13:06,"318 Jackson St, Dallas, TX 75001" -303671,Lightning Charging Cable,1,14.95,12/27/19 20:36,"805 Meadow St, Dallas, TX 75001" -303672,Apple Airpods Headphones,1,150,12/17/19 13:23,"235 Maple St, Boston, MA 02215" -303673,AA Batteries (4-pack),1,3.84,12/09/19 19:38,"84 Church St, Boston, MA 02215" -303674,AA Batteries (4-pack),2,3.84,12/30/19 10:07,"169 Lake St, New York City, NY 10001" -303675,ThinkPad Laptop,1,999.99,12/09/19 19:28,"444 13th St, Seattle, WA 98101" -303676,Lightning Charging Cable,1,14.95,12/02/19 16:40,"920 Jackson St, New York City, NY 10001" -303677,Lightning Charging Cable,1,14.95,12/02/19 18:36,"205 Chestnut St, New York City, NY 10001" -303678,Lightning Charging Cable,1,14.95,12/30/19 08:46,"378 6th St, Los Angeles, CA 90001" -303679,Lightning Charging Cable,1,14.95,12/19/19 16:15,"43 7th St, Dallas, TX 75001" -303680,Apple Airpods Headphones,1,150,12/10/19 15:30,"944 2nd St, Boston, MA 02215" -303681,AA Batteries (4-pack),1,3.84,12/13/19 17:06,"699 4th St, San Francisco, CA 94016" -303682,USB-C Charging Cable,1,11.95,12/08/19 16:07,"729 Hickory St, Seattle, WA 98101" -303683,Macbook Pro Laptop,1,1700,12/26/19 16:13,"828 Willow St, Seattle, WA 98101" -303684,AA Batteries (4-pack),3,3.84,12/07/19 16:14,"254 Washington St, New York City, NY 10001" -303685,AAA Batteries (4-pack),1,2.99,12/24/19 11:22,"835 Center St, Seattle, WA 98101" -303686,Apple Airpods Headphones,1,150,12/13/19 11:05,"51 Walnut St, San Francisco, CA 94016" -303687,Lightning Charging Cable,1,14.95,12/26/19 17:27,"999 West St, Los Angeles, CA 90001" -303688,Lightning Charging Cable,1,14.95,12/29/19 10:03,"827 Pine St, Boston, MA 02215" -303689,AA Batteries (4-pack),1,3.84,12/21/19 16:07,"447 Center St, Boston, MA 02215" -303690,AAA Batteries (4-pack),1,2.99,12/20/19 11:49,"513 1st St, San Francisco, CA 94016" -303691,AAA Batteries (4-pack),1,2.99,12/07/19 18:14,"317 Chestnut St, San Francisco, CA 94016" -303692,USB-C Charging Cable,1,11.95,12/07/19 13:10,"502 Center St, San Francisco, CA 94016" -303693,Lightning Charging Cable,2,14.95,12/26/19 19:39,"435 Church St, Los Angeles, CA 90001" -303694,iPhone,1,700,12/22/19 04:40,"424 Spruce St, New York City, NY 10001" -303695,AA Batteries (4-pack),2,3.84,12/19/19 18:14,"180 2nd St, San Francisco, CA 94016" -303696,AA Batteries (4-pack),1,3.84,12/15/19 00:29,"361 Sunset St, Atlanta, GA 30301" -303697,AA Batteries (4-pack),2,3.84,12/15/19 12:56,"613 Center St, San Francisco, CA 94016" -303698,Lightning Charging Cable,1,14.95,12/31/19 19:51,"89 Cherry St, New York City, NY 10001" -303699,Flatscreen TV,1,300,12/02/19 21:27,"455 Church St, Austin, TX 73301" -303700,Lightning Charging Cable,1,14.95,12/28/19 20:21,"652 Lakeview St, Los Angeles, CA 90001" -303701,Wired Headphones,1,11.99,12/21/19 13:10,"755 Cedar St, Portland, OR 97035" -303702,Apple Airpods Headphones,1,150,12/29/19 18:48,"669 Chestnut St, Atlanta, GA 30301" -303703,Apple Airpods Headphones,1,150,12/16/19 23:14,"669 5th St, Boston, MA 02215" -303704,iPhone,1,700,12/04/19 16:25,"157 West St, Boston, MA 02215" -303705,Lightning Charging Cable,3,14.95,12/25/19 09:48,"63 Cedar St, Dallas, TX 75001" -303706,Wired Headphones,1,11.99,12/23/19 13:02,"48 Center St, Portland, OR 97035" -303707,Bose SoundSport Headphones,1,99.99,12/18/19 16:45,"453 Jackson St, Boston, MA 02215" -303708,AA Batteries (4-pack),1,3.84,12/06/19 13:02,"871 Hickory St, Los Angeles, CA 90001" -303709,AAA Batteries (4-pack),1,2.99,12/09/19 08:49,"429 Spruce St, Seattle, WA 98101" -303709,AA Batteries (4-pack),1,3.84,12/09/19 08:49,"429 Spruce St, Seattle, WA 98101" -303710,Bose SoundSport Headphones,1,99.99,12/24/19 17:58,"122 Jefferson St, Los Angeles, CA 90001" -303711,Wired Headphones,1,11.99,12/31/19 17:05,"183 Elm St, Austin, TX 73301" -303712,AAA Batteries (4-pack),3,2.99,12/09/19 23:01,"878 Highland St, Los Angeles, CA 90001" -303713,Apple Airpods Headphones,1,150,12/26/19 18:01,"871 14th St, Seattle, WA 98101" -303714,AA Batteries (4-pack),1,3.84,12/04/19 20:01,"4 12th St, Los Angeles, CA 90001" -303715,AAA Batteries (4-pack),1,2.99,12/24/19 14:49,"639 Johnson St, Dallas, TX 75001" -303716,AAA Batteries (4-pack),2,2.99,12/09/19 19:25,"313 Chestnut St, Los Angeles, CA 90001" -303717,USB-C Charging Cable,1,11.95,12/05/19 21:48,"816 Forest St, Atlanta, GA 30301" -303718,AAA Batteries (4-pack),1,2.99,12/31/19 11:19,"712 Cherry St, Seattle, WA 98101" -303719,iPhone,1,700,12/02/19 16:08,"349 Lake St, Seattle, WA 98101" -303719,Wired Headphones,1,11.99,12/02/19 16:08,"349 Lake St, Seattle, WA 98101" -303720,iPhone,1,700,12/29/19 23:40,"974 South St, Dallas, TX 75001" -303721,Flatscreen TV,1,300,12/22/19 12:05,"268 Cedar St, San Francisco, CA 94016" -303721,AA Batteries (4-pack),1,3.84,12/22/19 12:05,"268 Cedar St, San Francisco, CA 94016" -303722,Macbook Pro Laptop,1,1700,12/13/19 11:06,"766 10th St, San Francisco, CA 94016" -303723,Flatscreen TV,1,300,12/20/19 14:22,"511 5th St, Boston, MA 02215" -303724,AA Batteries (4-pack),1,3.84,12/08/19 14:06,"807 Chestnut St, Portland, OR 97035" -303725,34in Ultrawide Monitor,1,379.99,12/25/19 10:56,"384 Main St, Seattle, WA 98101" -303726,AA Batteries (4-pack),1,3.84,12/30/19 10:12,"520 Willow St, Portland, OR 97035" -303727,Bose SoundSport Headphones,1,99.99,12/22/19 18:52,"364 Wilson St, Atlanta, GA 30301" -303728,34in Ultrawide Monitor,1,379.99,12/24/19 11:56,"233 8th St, New York City, NY 10001" -303729,USB-C Charging Cable,1,11.95,12/20/19 13:27,"909 Johnson St, Dallas, TX 75001" -303730,Bose SoundSport Headphones,1,99.99,12/28/19 12:59,"142 Walnut St, Portland, OR 97035" -303731,Macbook Pro Laptop,1,1700,12/12/19 15:18,"229 Meadow St, Los Angeles, CA 90001" -303732,Bose SoundSport Headphones,1,99.99,12/12/19 16:45,"197 14th St, Austin, TX 73301" -303733,Wired Headphones,2,11.99,12/04/19 08:14,"52 Center St, Atlanta, GA 30301" -303734,ThinkPad Laptop,1,999.99,12/29/19 05:47,"612 Dogwood St, Seattle, WA 98101" -303735,Bose SoundSport Headphones,1,99.99,12/21/19 17:42,"160 Adams St, San Francisco, CA 94016" -303736,Wired Headphones,1,11.99,12/01/19 23:15,"809 Hickory St, San Francisco, CA 94016" -303736,LG Washing Machine,1,600.0,12/01/19 23:15,"809 Hickory St, San Francisco, CA 94016" -303737,20in Monitor,1,109.99,12/18/19 12:43,"442 Maple St, Los Angeles, CA 90001" -303738,USB-C Charging Cable,1,11.95,12/23/19 21:05,"416 Jefferson St, San Francisco, CA 94016" -303739,Wired Headphones,1,11.99,12/29/19 22:02,"657 Center St, Seattle, WA 98101" -303740,AAA Batteries (4-pack),1,2.99,12/10/19 19:17,"376 Dogwood St, San Francisco, CA 94016" -303741,Bose SoundSport Headphones,1,99.99,12/20/19 13:00,"894 Johnson St, San Francisco, CA 94016" -303742,Lightning Charging Cable,1,14.95,12/07/19 12:46,"824 Maple St, Dallas, TX 75001" -303743,Lightning Charging Cable,1,14.95,12/07/19 11:57,"12 2nd St, New York City, NY 10001" -303744,AA Batteries (4-pack),1,3.84,12/30/19 14:06,"455 Walnut St, San Francisco, CA 94016" -303745,Lightning Charging Cable,1,14.95,12/02/19 23:30,"269 12th St, Los Angeles, CA 90001" -303746,Apple Airpods Headphones,1,150,12/31/19 11:18,"281 Park St, Los Angeles, CA 90001" -303747,USB-C Charging Cable,1,11.95,12/14/19 12:01,"479 2nd St, Boston, MA 02215" -303748,AA Batteries (4-pack),2,3.84,12/13/19 12:18,"578 Main St, San Francisco, CA 94016" -303749,AA Batteries (4-pack),1,3.84,12/09/19 11:45,"269 9th St, San Francisco, CA 94016" -303750,Bose SoundSport Headphones,1,99.99,12/03/19 10:03,"967 Forest St, Boston, MA 02215" -303751,Apple Airpods Headphones,1,150,12/11/19 11:19,"250 Lincoln St, New York City, NY 10001" -303751,27in FHD Monitor,1,149.99,12/11/19 11:19,"250 Lincoln St, New York City, NY 10001" -303752,AA Batteries (4-pack),1,3.84,12/13/19 14:48,"293 West St, New York City, NY 10001" -303753,USB-C Charging Cable,1,11.95,12/07/19 17:16,"235 4th St, Portland, OR 97035" -303754,27in FHD Monitor,1,149.99,12/02/19 08:19,"991 Walnut St, Portland, OR 97035" -303755,Wired Headphones,1,11.99,12/18/19 07:42,"775 Center St, Portland, OR 97035" -303756,USB-C Charging Cable,1,11.95,12/18/19 15:43,"820 Dogwood St, New York City, NY 10001" -303757,Wired Headphones,1,11.99,12/12/19 07:42,"441 1st St, New York City, NY 10001" -303758,USB-C Charging Cable,1,11.95,12/27/19 18:03,"237 Madison St, New York City, NY 10001" -303759,Wired Headphones,1,11.99,12/04/19 12:45,"654 Maple St, San Francisco, CA 94016" -303760,34in Ultrawide Monitor,1,379.99,12/22/19 14:49,"925 13th St, Atlanta, GA 30301" -303761,Bose SoundSport Headphones,1,99.99,12/12/19 08:52,"743 Chestnut St, Los Angeles, CA 90001" -303762,USB-C Charging Cable,2,11.95,12/31/19 14:55,"258 Lincoln St, Dallas, TX 75001" -303763,34in Ultrawide Monitor,1,379.99,12/18/19 20:37,"29 Center St, Seattle, WA 98101" -303764,Lightning Charging Cable,1,14.95,12/03/19 19:26,"9 4th St, Dallas, TX 75001" -303765,AA Batteries (4-pack),1,3.84,12/16/19 21:49,"505 9th St, Boston, MA 02215" -303766,27in 4K Gaming Monitor,1,389.99,12/20/19 19:05,"607 Chestnut St, Seattle, WA 98101" -303767,27in 4K Gaming Monitor,1,389.99,12/19/19 11:29,"208 Meadow St, San Francisco, CA 94016" -303768,Lightning Charging Cable,1,14.95,12/22/19 14:52,"218 River St, Seattle, WA 98101" -303769,AAA Batteries (4-pack),5,2.99,12/20/19 18:26,"235 10th St, Dallas, TX 75001" -303770,Google Phone,1,600,12/23/19 12:41,"308 4th St, Portland, OR 97035" -303771,Flatscreen TV,1,300,12/18/19 23:25,"706 Lincoln St, San Francisco, CA 94016" -303772,USB-C Charging Cable,1,11.95,12/30/19 13:58,"134 Johnson St, San Francisco, CA 94016" -303773,AAA Batteries (4-pack),2,2.99,12/25/19 11:24,"829 8th St, New York City, NY 10001" -303774,Apple Airpods Headphones,1,150,12/27/19 22:23,"799 Lincoln St, Los Angeles, CA 90001" -303775,AAA Batteries (4-pack),3,2.99,12/04/19 10:38,"787 Park St, Los Angeles, CA 90001" -303776,Lightning Charging Cable,1,14.95,12/30/19 19:47,"269 Ridge St, New York City, NY 10001" -303777,Apple Airpods Headphones,1,150,12/30/19 15:35,"75 Washington St, Los Angeles, CA 90001" -303777,Apple Airpods Headphones,1,150,12/30/19 15:35,"75 Washington St, Los Angeles, CA 90001" -303778,AA Batteries (4-pack),1,3.84,12/04/19 07:59,"226 Cherry St, San Francisco, CA 94016" -303779,Flatscreen TV,1,300,12/20/19 12:02,"816 Forest St, Boston, MA 02215" -303780,Lightning Charging Cable,1,14.95,12/05/19 22:22,"283 River St, Portland, OR 97035" -303781,Google Phone,1,600,12/16/19 11:10,"107 North St, Seattle, WA 98101" -303782,AA Batteries (4-pack),2,3.84,12/06/19 19:32,"609 Spruce St, San Francisco, CA 94016" -303783,AAA Batteries (4-pack),2,2.99,12/23/19 18:48,"577 Hickory St, Boston, MA 02215" -303784,USB-C Charging Cable,1,11.95,12/23/19 09:55,"516 Lakeview St, Boston, MA 02215" -303785,AAA Batteries (4-pack),1,2.99,12/11/19 18:12,"690 12th St, San Francisco, CA 94016" -303786,AAA Batteries (4-pack),2,2.99,12/29/19 23:22,"289 Willow St, San Francisco, CA 94016" -303787,AAA Batteries (4-pack),2,2.99,12/30/19 19:29,"117 West St, Portland, OR 97035" -303788,Flatscreen TV,1,300,12/02/19 23:44,"41 Jefferson St, San Francisco, CA 94016" -303789,27in 4K Gaming Monitor,1,389.99,12/30/19 13:19,"350 Adams St, Boston, MA 02215" -303790,Wired Headphones,2,11.99,12/03/19 13:24,"108 Dogwood St, San Francisco, CA 94016" -303791,AAA Batteries (4-pack),1,2.99,12/21/19 12:33,"808 6th St, Los Angeles, CA 90001" -303792,AA Batteries (4-pack),1,3.84,12/18/19 11:41,"813 Hickory St, Boston, MA 02215" -303793,Apple Airpods Headphones,1,150,12/01/19 14:16,"587 Johnson St, San Francisco, CA 94016" -303794,AA Batteries (4-pack),2,3.84,12/24/19 06:16,"735 Ridge St, Dallas, TX 75001" -303795,Flatscreen TV,1,300,12/15/19 20:30,"65 Johnson St, Atlanta, GA 30301" -303796,ThinkPad Laptop,1,999.99,12/25/19 12:42,"925 Wilson St, Portland, OR 97035" -303797,Flatscreen TV,1,300,12/24/19 18:52,"80 Church St, Portland, OR 97035" -303798,AAA Batteries (4-pack),1,2.99,12/01/19 18:38,"209 Elm St, Atlanta, GA 30301" -303799,AA Batteries (4-pack),4,3.84,12/11/19 10:17,"298 Adams St, Atlanta, GA 30301" -303800,Lightning Charging Cable,1,14.95,12/07/19 13:33,"702 10th St, Portland, OR 97035" -303801,USB-C Charging Cable,1,11.95,12/11/19 13:50,"876 West St, Atlanta, GA 30301" -303802,Wired Headphones,1,11.99,12/28/19 03:13,"597 Sunset St, San Francisco, CA 94016" -303803,ThinkPad Laptop,1,999.99,12/25/19 17:49,"101 Park St, Dallas, TX 75001" -303804,Wired Headphones,1,11.99,12/22/19 21:59,"199 Cherry St, New York City, NY 10001" -303805,27in FHD Monitor,1,149.99,12/07/19 13:04,"627 2nd St, Seattle, WA 98101" -303806,Bose SoundSport Headphones,1,99.99,12/01/19 09:27,"859 Maple St, Atlanta, GA 30301" -303807,27in 4K Gaming Monitor,1,389.99,12/25/19 11:44,"625 Ridge St, Atlanta, GA 30301" -303808,Apple Airpods Headphones,1,150,12/26/19 09:59,"974 Highland St, Seattle, WA 98101" -303809,AAA Batteries (4-pack),2,2.99,12/30/19 14:48,"539 North St, Boston, MA 02215" -303810,Google Phone,1,600,12/07/19 11:42,"980 Lake St, Boston, MA 02215" -303811,27in FHD Monitor,1,149.99,12/28/19 14:14,"182 Chestnut St, Austin, TX 73301" -303812,AAA Batteries (4-pack),2,2.99,12/06/19 08:34,"565 Highland St, Los Angeles, CA 90001" -303813,AAA Batteries (4-pack),1,2.99,12/02/19 01:06,"263 Maple St, Dallas, TX 75001" -303814,27in FHD Monitor,1,149.99,12/19/19 11:05,"520 Jackson St, Los Angeles, CA 90001" -303815,Apple Airpods Headphones,1,150,12/06/19 15:01,"717 Cherry St, New York City, NY 10001" -303816,ThinkPad Laptop,1,999.99,12/24/19 10:22,"519 7th St, Atlanta, GA 30301" -303817,Bose SoundSport Headphones,1,99.99,12/14/19 18:39,"485 Sunset St, San Francisco, CA 94016" -303818,USB-C Charging Cable,2,11.95,12/11/19 23:13,"691 River St, Dallas, TX 75001" -303819,AAA Batteries (4-pack),1,2.99,12/07/19 13:38,"158 River St, Los Angeles, CA 90001" -303820,USB-C Charging Cable,1,11.95,12/21/19 15:59,"857 Jackson St, Los Angeles, CA 90001" -303821,Bose SoundSport Headphones,1,99.99,12/24/19 20:42,"465 Jackson St, New York City, NY 10001" -303822,Wired Headphones,1,11.99,12/06/19 19:49,"737 Elm St, Los Angeles, CA 90001" -303823,AAA Batteries (4-pack),1,2.99,12/13/19 09:49,"231 South St, Dallas, TX 75001" -303824,Apple Airpods Headphones,1,150,12/18/19 14:08,"81 14th St, Los Angeles, CA 90001" -303825,Bose SoundSport Headphones,1,99.99,12/16/19 10:43,"300 Pine St, Portland, OR 97035" -303826,AAA Batteries (4-pack),1,2.99,12/29/19 19:43,"802 Pine St, New York City, NY 10001" -303827,iPhone,1,700,12/26/19 18:55,"746 Lakeview St, Portland, OR 97035" -303828,AA Batteries (4-pack),1,3.84,12/23/19 15:32,"925 Lakeview St, Los Angeles, CA 90001" -303829,27in 4K Gaming Monitor,1,389.99,12/01/19 17:19,"721 Adams St, San Francisco, CA 94016" -303830,AA Batteries (4-pack),1,3.84,12/14/19 16:58,"942 Pine St, Portland, OR 97035" -303831,34in Ultrawide Monitor,1,379.99,12/15/19 08:57,"875 Sunset St, San Francisco, CA 94016" -303832,27in 4K Gaming Monitor,1,389.99,12/12/19 22:13,"470 Church St, New York City, NY 10001" -303833,Wired Headphones,1,11.99,12/28/19 20:01,"829 Sunset St, Los Angeles, CA 90001" -303834,27in 4K Gaming Monitor,1,389.99,12/10/19 15:27,"50 Jackson St, New York City, NY 10001" -303835,AAA Batteries (4-pack),1,2.99,12/16/19 14:47,"206 Hill St, Boston, MA 02215" -303836,AA Batteries (4-pack),1,3.84,12/23/19 14:12,"327 Highland St, Boston, MA 02215" -303837,AA Batteries (4-pack),2,3.84,12/31/19 15:28,"170 Highland St, San Francisco, CA 94016" -303838,AAA Batteries (4-pack),1,2.99,12/24/19 15:02,"839 5th St, San Francisco, CA 94016" -303839,Lightning Charging Cable,1,14.95,12/06/19 19:35,"82 Willow St, New York City, NY 10001" -303840,27in 4K Gaming Monitor,1,389.99,12/19/19 18:47,"800 Elm St, New York City, NY 10001" -303841,USB-C Charging Cable,1,11.95,12/24/19 22:02,"225 Walnut St, New York City, NY 10001" -303842,27in FHD Monitor,1,149.99,12/25/19 12:48,"799 Dogwood St, Seattle, WA 98101" -303843,ThinkPad Laptop,1,999.99,12/08/19 17:11,"374 1st St, Atlanta, GA 30301" -303844,Macbook Pro Laptop,1,1700,12/09/19 15:32,"790 Center St, Atlanta, GA 30301" -303845,Wired Headphones,1,11.99,12/24/19 21:26,"817 Elm St, Portland, OR 97035" -303846,Apple Airpods Headphones,1,150,12/24/19 00:03,"306 8th St, San Francisco, CA 94016" -303847,20in Monitor,1,109.99,12/14/19 20:13,"89 12th St, Los Angeles, CA 90001" -303848,USB-C Charging Cable,1,11.95,12/26/19 13:13,"385 Spruce St, New York City, NY 10001" -303849,Wired Headphones,1,11.99,12/30/19 12:06,"824 Forest St, Los Angeles, CA 90001" -303850,Bose SoundSport Headphones,1,99.99,12/13/19 15:00,"485 Church St, Los Angeles, CA 90001" -303851,Flatscreen TV,1,300,12/13/19 15:06,"280 South St, Los Angeles, CA 90001" -303852,Apple Airpods Headphones,1,150,12/01/19 09:28,"498 Lincoln St, Atlanta, GA 30301" -303853,27in FHD Monitor,1,149.99,12/31/19 12:31,"429 Madison St, New York City, NY 10001" -303854,34in Ultrawide Monitor,1,379.99,12/15/19 01:49,"479 Hickory St, New York City, NY 10001" -303855,AAA Batteries (4-pack),1,2.99,12/20/19 08:55,"691 Lake St, New York City, NY 10001" -303856,27in 4K Gaming Monitor,1,389.99,12/29/19 15:54,"642 Center St, Dallas, TX 75001" -303857,AA Batteries (4-pack),1,3.84,12/13/19 20:17,"780 Hickory St, Los Angeles, CA 90001" -303858,Flatscreen TV,1,300,12/29/19 20:08,"213 River St, San Francisco, CA 94016" -303859,Lightning Charging Cable,1,14.95,12/04/19 04:32,"232 Forest St, San Francisco, CA 94016" -303860,Lightning Charging Cable,1,14.95,12/02/19 08:59,"434 Hill St, Atlanta, GA 30301" -303861,USB-C Charging Cable,1,11.95,12/17/19 10:48,"26 Cedar St, Boston, MA 02215" -303862,USB-C Charging Cable,1,11.95,12/17/19 14:01,"243 Lakeview St, Portland, OR 97035" -303863,20in Monitor,1,109.99,12/27/19 10:23,"331 Center St, Seattle, WA 98101" -303864,Macbook Pro Laptop,1,1700,12/22/19 11:56,"117 6th St, Seattle, WA 98101" -303865,Lightning Charging Cable,3,14.95,12/15/19 11:34,"766 Main St, Boston, MA 02215" -303866,AAA Batteries (4-pack),1,2.99,12/01/19 09:12,"231 Dogwood St, Seattle, WA 98101" -303867,Bose SoundSport Headphones,1,99.99,12/29/19 09:57,"64 Wilson St, San Francisco, CA 94016" -303868,USB-C Charging Cable,1,11.95,12/28/19 20:50,"821 Cherry St, Los Angeles, CA 90001" -303869,Wired Headphones,1,11.99,12/18/19 15:28,"797 Jackson St, New York City, NY 10001" -303870,iPhone,1,700,12/31/19 01:09,"631 9th St, Atlanta, GA 30301" -303871,Wired Headphones,1,11.99,12/31/19 01:13,"246 12th St, Dallas, TX 75001" -303872,27in 4K Gaming Monitor,1,389.99,12/15/19 13:24,"582 Johnson St, New York City, NY 10001" -303873,iPhone,1,700,12/12/19 14:29,"638 Church St, Los Angeles, CA 90001" -303874,27in FHD Monitor,1,149.99,12/02/19 15:07,"150 Johnson St, San Francisco, CA 94016" -303875,Bose SoundSport Headphones,1,99.99,12/15/19 12:38,"200 Walnut St, San Francisco, CA 94016" -303876,Bose SoundSport Headphones,1,99.99,12/05/19 11:58,"356 Lincoln St, Los Angeles, CA 90001" -303877,AAA Batteries (4-pack),1,2.99,12/25/19 19:48,"835 11th St, Los Angeles, CA 90001" -303878,27in FHD Monitor,1,149.99,12/10/19 14:45,"891 Cherry St, San Francisco, CA 94016" -303879,USB-C Charging Cable,1,11.95,12/18/19 18:30,"517 Elm St, Seattle, WA 98101" -303880,Apple Airpods Headphones,1,150,12/30/19 09:36,"528 6th St, Atlanta, GA 30301" -303881,Wired Headphones,1,11.99,12/20/19 23:15,"781 Jackson St, Atlanta, GA 30301" -303882,34in Ultrawide Monitor,1,379.99,12/01/19 18:01,"313 Lincoln St, San Francisco, CA 94016" -303883,AA Batteries (4-pack),2,3.84,12/01/19 11:34,"684 Willow St, Portland, OR 97035" -303884,AAA Batteries (4-pack),2,2.99,12/29/19 00:23,"458 12th St, San Francisco, CA 94016" -303885,Apple Airpods Headphones,1,150,12/20/19 18:30,"129 Jefferson St, New York City, NY 10001" -303886,AA Batteries (4-pack),1,3.84,12/17/19 00:34,"701 4th St, Portland, OR 97035" -303887,AAA Batteries (4-pack),3,2.99,12/25/19 10:46,"249 Lincoln St, Austin, TX 73301" -303888,Bose SoundSport Headphones,1,99.99,12/22/19 13:25,"414 Cedar St, Dallas, TX 75001" -303889,USB-C Charging Cable,1,11.95,12/12/19 01:18,"142 9th St, New York City, NY 10001" -303890,iPhone,1,700,12/26/19 09:17,"163 Walnut St, Atlanta, GA 30301" -303891,Macbook Pro Laptop,1,1700,12/10/19 11:38,"5 Center St, New York City, NY 10001" -303892,USB-C Charging Cable,1,11.95,12/27/19 00:39,"951 8th St, Portland, OR 97035" -303893,27in 4K Gaming Monitor,1,389.99,12/13/19 17:04,"653 Elm St, Los Angeles, CA 90001" -303894,Bose SoundSport Headphones,1,99.99,12/24/19 21:11,"68 Walnut St, Portland, OR 97035" -303895,AA Batteries (4-pack),3,3.84,12/14/19 00:53,"972 Forest St, Seattle, WA 98101" -303896,Lightning Charging Cable,1,14.95,12/11/19 15:57,"664 Dogwood St, San Francisco, CA 94016" -303897,Macbook Pro Laptop,1,1700,12/25/19 08:13,"258 14th St, Los Angeles, CA 90001" -303898,Flatscreen TV,1,300,12/24/19 21:59,"355 Center St, Austin, TX 73301" -303899,USB-C Charging Cable,1,11.95,12/11/19 16:27,"319 Jefferson St, Los Angeles, CA 90001" -303900,ThinkPad Laptop,1,999.99,12/24/19 16:08,"883 Washington St, Boston, MA 02215" -303901,Apple Airpods Headphones,1,150,12/06/19 19:57,"35 Hickory St, Los Angeles, CA 90001" -303902,AA Batteries (4-pack),1,3.84,12/01/19 18:34,"983 12th St, San Francisco, CA 94016" -303903,Bose SoundSport Headphones,1,99.99,12/06/19 11:00,"310 Main St, Boston, MA 02215" -303904,AAA Batteries (4-pack),1,2.99,12/19/19 11:49,"92 Elm St, Boston, MA 02215" -303905,ThinkPad Laptop,1,999.99,12/19/19 15:17,"159 Pine St, San Francisco, CA 94016" -303906,34in Ultrawide Monitor,1,379.99,12/24/19 18:22,"186 14th St, Los Angeles, CA 90001" -303907,Google Phone,1,600,12/03/19 17:34,"470 Hickory St, Portland, OR 97035" -303907,USB-C Charging Cable,1,11.95,12/03/19 17:34,"470 Hickory St, Portland, OR 97035" -303907,Wired Headphones,2,11.99,12/03/19 17:34,"470 Hickory St, Portland, OR 97035" -303908,AAA Batteries (4-pack),2,2.99,12/08/19 14:09,"996 North St, Boston, MA 02215" -303909,USB-C Charging Cable,1,11.95,12/06/19 16:21,"698 Lincoln St, Seattle, WA 98101" -303909,Lightning Charging Cable,1,14.95,12/06/19 16:21,"698 Lincoln St, Seattle, WA 98101" -303910,iPhone,1,700,12/05/19 09:44,"25 Sunset St, San Francisco, CA 94016" -303911,Bose SoundSport Headphones,1,99.99,12/13/19 23:51,"553 Hickory St, Los Angeles, CA 90001" -303912,ThinkPad Laptop,1,999.99,12/08/19 17:44,"341 8th St, San Francisco, CA 94016" -303913,Google Phone,1,600,12/17/19 17:43,"497 Church St, Boston, MA 02215" -303914,AA Batteries (4-pack),1,3.84,12/22/19 09:50,"564 Chestnut St, Los Angeles, CA 90001" -303915,27in 4K Gaming Monitor,1,389.99,12/21/19 15:11,"453 14th St, San Francisco, CA 94016" -,,,,, -303916,34in Ultrawide Monitor,1,379.99,12/24/19 06:54,"761 7th St, Dallas, TX 75001" -303917,AAA Batteries (4-pack),2,2.99,12/11/19 21:32,"72 Meadow St, Portland, OR 97035" -303918,AAA Batteries (4-pack),1,2.99,12/21/19 19:21,"677 Lake St, New York City, NY 10001" -303919,27in FHD Monitor,1,149.99,12/30/19 06:41,"271 Maple St, Portland, OR 97035" -303920,iPhone,1,700,12/10/19 16:42,"656 10th St, San Francisco, CA 94016" -303920,Wired Headphones,1,11.99,12/10/19 16:42,"656 10th St, San Francisco, CA 94016" -303921,AA Batteries (4-pack),2,3.84,12/06/19 22:10,"968 Cherry St, Los Angeles, CA 90001" -303922,AAA Batteries (4-pack),1,2.99,12/06/19 17:24,"912 Dogwood St, San Francisco, CA 94016" -303923,Lightning Charging Cable,1,14.95,12/28/19 12:37,"790 9th St, Los Angeles, CA 90001" -303924,LG Dryer,1,600.0,12/05/19 11:54,"211 Willow St, Los Angeles, CA 90001" -,,,,, -303925,AA Batteries (4-pack),2,3.84,12/07/19 22:03,"66 Sunset St, Atlanta, GA 30301" -303926,27in FHD Monitor,1,149.99,12/15/19 19:55,"705 Chestnut St, San Francisco, CA 94016" -303927,Apple Airpods Headphones,1,150,12/26/19 19:30,"540 Highland St, San Francisco, CA 94016" -303928,AAA Batteries (4-pack),3,2.99,12/21/19 21:53,"179 Adams St, Los Angeles, CA 90001" -303929,Macbook Pro Laptop,1,1700,12/04/19 06:02,"800 West St, New York City, NY 10001" -303930,27in FHD Monitor,1,149.99,12/30/19 07:09,"302 6th St, Boston, MA 02215" -303931,USB-C Charging Cable,1,11.95,12/27/19 22:30,"454 5th St, Los Angeles, CA 90001" -303932,Lightning Charging Cable,1,14.95,12/11/19 16:45,"149 Chestnut St, Austin, TX 73301" -303933,Lightning Charging Cable,1,14.95,12/20/19 18:29,"121 Jefferson St, San Francisco, CA 94016" -303934,Lightning Charging Cable,1,14.95,12/23/19 10:11,"820 Willow St, San Francisco, CA 94016" -303935,20in Monitor,1,109.99,12/13/19 06:41,"676 14th St, Los Angeles, CA 90001" -303936,Wired Headphones,1,11.99,12/04/19 18:00,"611 West St, San Francisco, CA 94016" -303937,AAA Batteries (4-pack),1,2.99,12/19/19 10:17,"953 Cedar St, San Francisco, CA 94016" -303938,Lightning Charging Cable,1,14.95,12/09/19 12:44,"986 4th St, New York City, NY 10001" -303939,USB-C Charging Cable,1,11.95,12/09/19 13:59,"451 11th St, Boston, MA 02215" -303940,Lightning Charging Cable,1,14.95,12/04/19 16:59,"910 Washington St, Los Angeles, CA 90001" -303941,Lightning Charging Cable,1,14.95,12/07/19 07:18,"61 4th St, Boston, MA 02215" -303942,Bose SoundSport Headphones,1,99.99,12/14/19 11:32,"181 14th St, Seattle, WA 98101" -303943,iPhone,1,700,12/23/19 08:58,"762 12th St, Boston, MA 02215" -303944,Bose SoundSport Headphones,1,99.99,12/14/19 11:26,"49 River St, San Francisco, CA 94016" -303945,Wired Headphones,1,11.99,12/29/19 13:27,"113 Wilson St, Boston, MA 02215" -303946,Wired Headphones,1,11.99,12/04/19 14:02,"508 6th St, Austin, TX 73301" -303947,AA Batteries (4-pack),2,3.84,12/12/19 18:04,"964 1st St, Atlanta, GA 30301" -303948,Bose SoundSport Headphones,1,99.99,12/15/19 11:26,"679 1st St, New York City, NY 10001" -303949,Flatscreen TV,1,300,12/13/19 09:40,"502 Maple St, San Francisco, CA 94016" -303950,34in Ultrawide Monitor,1,379.99,12/31/19 13:30,"435 Chestnut St, Portland, OR 97035" -303951,LG Washing Machine,1,600.0,12/22/19 15:00,"356 South St, San Francisco, CA 94016" -303952,AAA Batteries (4-pack),1,2.99,12/19/19 08:26,"260 South St, Dallas, TX 75001" -303953,Flatscreen TV,1,300,12/30/19 20:53,"592 Hickory St, Austin, TX 73301" -303954,Apple Airpods Headphones,1,150,12/22/19 00:44,"664 Hill St, Portland, ME 04101" -303955,Wired Headphones,1,11.99,12/27/19 14:58,"867 Lake St, New York City, NY 10001" -303956,AAA Batteries (4-pack),1,2.99,12/10/19 10:37,"115 Hickory St, Portland, OR 97035" -303957,Bose SoundSport Headphones,1,99.99,12/01/19 19:53,"627 10th St, Seattle, WA 98101" -303958,USB-C Charging Cable,1,11.95,12/18/19 10:31,"87 13th St, Seattle, WA 98101" -303959,AAA Batteries (4-pack),1,2.99,12/24/19 15:17,"415 Sunset St, San Francisco, CA 94016" -303960,iPhone,1,700,12/30/19 18:18,"600 Madison St, San Francisco, CA 94016" -303961,USB-C Charging Cable,1,11.95,12/17/19 21:48,"2 Pine St, San Francisco, CA 94016" -303962,Lightning Charging Cable,1,14.95,12/30/19 14:44,"963 Lakeview St, New York City, NY 10001" -303963,USB-C Charging Cable,1,11.95,12/10/19 13:25,"612 2nd St, Seattle, WA 98101" -303964,Lightning Charging Cable,1,14.95,12/06/19 23:44,"362 Hill St, San Francisco, CA 94016" -303965,AA Batteries (4-pack),1,3.84,12/04/19 13:32,"390 Wilson St, Boston, MA 02215" -303966,Wired Headphones,1,11.99,12/09/19 17:35,"864 Pine St, San Francisco, CA 94016" -303967,Apple Airpods Headphones,1,150,12/19/19 10:37,"146 Hill St, Atlanta, GA 30301" -303968,iPhone,1,700,12/04/19 19:20,"982 5th St, Boston, MA 02215" -303968,Lightning Charging Cable,1,14.95,12/04/19 19:20,"982 5th St, Boston, MA 02215" -303969,USB-C Charging Cable,1,11.95,12/11/19 15:02,"728 Ridge St, Atlanta, GA 30301" -303970,20in Monitor,1,109.99,12/24/19 11:34,"813 Lincoln St, Los Angeles, CA 90001" -303971,Wired Headphones,1,11.99,12/23/19 21:09,"808 Lincoln St, Los Angeles, CA 90001" -303972,Vareebadd Phone,1,400,12/03/19 08:36,"263 Wilson St, New York City, NY 10001" -303972,USB-C Charging Cable,1,11.95,12/03/19 08:36,"263 Wilson St, New York City, NY 10001" -303973,Bose SoundSport Headphones,1,99.99,12/18/19 22:26,"963 Washington St, Atlanta, GA 30301" -303974,Apple Airpods Headphones,1,150,12/24/19 08:39,"991 South St, San Francisco, CA 94016" -303975,Apple Airpods Headphones,1,150,12/31/19 19:11,"353 4th St, Dallas, TX 75001" -303976,AA Batteries (4-pack),1,3.84,12/20/19 20:18,"618 4th St, Austin, TX 73301" -303977,iPhone,1,700,12/20/19 23:45,"585 Dogwood St, Seattle, WA 98101" -303978,AAA Batteries (4-pack),2,2.99,12/05/19 20:06,"595 Johnson St, New York City, NY 10001" -303979,27in FHD Monitor,1,149.99,12/09/19 08:41,"312 Lincoln St, Los Angeles, CA 90001" -303980,AAA Batteries (4-pack),1,2.99,12/27/19 13:41,"146 Adams St, Los Angeles, CA 90001" -303981,Wired Headphones,1,11.99,12/11/19 15:32,"946 Pine St, Seattle, WA 98101" -303982,USB-C Charging Cable,1,11.95,12/16/19 12:44,"58 8th St, San Francisco, CA 94016" -303983,AAA Batteries (4-pack),2,2.99,12/16/19 00:33,"810 13th St, Los Angeles, CA 90001" -303984,USB-C Charging Cable,1,11.95,12/12/19 09:46,"821 Maple St, San Francisco, CA 94016" -303984,AAA Batteries (4-pack),1,2.99,12/12/19 09:46,"821 Maple St, San Francisco, CA 94016" -303985,34in Ultrawide Monitor,1,379.99,12/13/19 13:34,"238 Forest St, San Francisco, CA 94016" -303986,Google Phone,1,600,12/05/19 16:43,"40 Maple St, New York City, NY 10001" -303986,Wired Headphones,1,11.99,12/05/19 16:43,"40 Maple St, New York City, NY 10001" -303987,Wired Headphones,1,11.99,12/27/19 19:16,"594 7th St, Portland, OR 97035" -303988,27in FHD Monitor,1,149.99,12/19/19 10:09,"250 Wilson St, Austin, TX 73301" -303989,Google Phone,1,600,12/17/19 00:03,"7 4th St, San Francisco, CA 94016" -303990,AA Batteries (4-pack),2,3.84,12/16/19 16:24,"967 Wilson St, Boston, MA 02215" -303991,Google Phone,1,600,12/09/19 12:58,"978 Center St, Portland, ME 04101" -303992,34in Ultrawide Monitor,1,379.99,12/25/19 16:11,"922 Cedar St, San Francisco, CA 94016" -303993,Bose SoundSport Headphones,1,99.99,12/30/19 10:45,"502 10th St, New York City, NY 10001" -303994,Lightning Charging Cable,1,14.95,12/28/19 13:40,"627 Jefferson St, Austin, TX 73301" -303995,AA Batteries (4-pack),1,3.84,12/16/19 10:33,"955 Wilson St, Los Angeles, CA 90001" -303996,Lightning Charging Cable,2,14.95,12/26/19 21:16,"628 Willow St, Portland, ME 04101" -303997,AA Batteries (4-pack),1,3.84,12/15/19 13:52,"717 4th St, Dallas, TX 75001" -303998,Google Phone,1,600,12/25/19 09:05,"108 South St, Boston, MA 02215" -303999,USB-C Charging Cable,1,11.95,12/24/19 17:36,"867 Park St, San Francisco, CA 94016" -304000,Wired Headphones,1,11.99,12/03/19 21:17,"87 Center St, Portland, OR 97035" -304001,ThinkPad Laptop,1,999.99,12/16/19 20:09,"810 Sunset St, New York City, NY 10001" -304002,AA Batteries (4-pack),1,3.84,12/29/19 13:13,"899 7th St, New York City, NY 10001" -304003,Wired Headphones,1,11.99,12/12/19 03:02,"276 Willow St, New York City, NY 10001" -304004,AAA Batteries (4-pack),1,2.99,12/27/19 10:03,"507 12th St, Seattle, WA 98101" -304005,AA Batteries (4-pack),2,3.84,12/26/19 10:12,"286 Adams St, Seattle, WA 98101" -304006,27in 4K Gaming Monitor,1,389.99,12/15/19 07:51,"431 Jefferson St, Los Angeles, CA 90001" -304007,20in Monitor,1,109.99,12/06/19 01:51,"748 Dogwood St, San Francisco, CA 94016" -304008,27in FHD Monitor,1,149.99,12/14/19 17:44,"476 Park St, Austin, TX 73301" -304009,Vareebadd Phone,1,400,12/09/19 21:19,"152 7th St, San Francisco, CA 94016" -304010,Apple Airpods Headphones,1,150,12/17/19 12:18,"403 Adams St, Los Angeles, CA 90001" -304011,Apple Airpods Headphones,1,150,12/19/19 20:49,"390 Maple St, Seattle, WA 98101" -304012,AAA Batteries (4-pack),1,2.99,12/16/19 15:11,"14 Church St, Austin, TX 73301" -304013,Apple Airpods Headphones,1,150,12/01/19 09:12,"195 Chestnut St, New York City, NY 10001" -304014,Google Phone,1,600,12/16/19 10:16,"103 Dogwood St, Boston, MA 02215" -304015,AAA Batteries (4-pack),1,2.99,12/13/19 20:14,"102 Lakeview St, Boston, MA 02215" -304016,Lightning Charging Cable,1,14.95,12/11/19 13:15,"145 Center St, Boston, MA 02215" -304017,Lightning Charging Cable,1,14.95,12/23/19 15:53,"73 River St, Los Angeles, CA 90001" -304018,Apple Airpods Headphones,1,150,12/03/19 18:38,"5 13th St, Dallas, TX 75001" -304019,Bose SoundSport Headphones,1,99.99,12/30/19 22:59,"177 Center St, Los Angeles, CA 90001" -304020,Lightning Charging Cable,1,14.95,12/27/19 17:03,"974 6th St, Boston, MA 02215" -304021,34in Ultrawide Monitor,1,379.99,12/23/19 22:13,"721 Meadow St, Austin, TX 73301" -304022,Apple Airpods Headphones,1,150,12/05/19 10:00,"732 Spruce St, Los Angeles, CA 90001" -304023,Apple Airpods Headphones,1,150,12/24/19 10:48,"118 Forest St, Dallas, TX 75001" -304024,ThinkPad Laptop,1,999.99,12/19/19 17:19,"531 Hickory St, Portland, OR 97035" -304025,Apple Airpods Headphones,1,150,12/20/19 10:44,"664 Madison St, Portland, OR 97035" -304026,AAA Batteries (4-pack),1,2.99,12/25/19 13:22,"140 North St, San Francisco, CA 94016" -304027,27in FHD Monitor,1,149.99,12/03/19 15:31,"105 Walnut St, San Francisco, CA 94016" -304028,Bose SoundSport Headphones,1,99.99,12/06/19 19:28,"146 Hill St, Portland, OR 97035" -304029,Lightning Charging Cable,1,14.95,12/17/19 17:52,"760 Main St, San Francisco, CA 94016" -304030,iPhone,1,700,12/03/19 18:02,"549 14th St, Los Angeles, CA 90001" -304031,USB-C Charging Cable,1,11.95,12/05/19 17:16,"44 2nd St, San Francisco, CA 94016" -304032,iPhone,1,700,12/15/19 21:51,"346 Church St, Seattle, WA 98101" -304033,Lightning Charging Cable,1,14.95,12/02/19 21:09,"654 12th St, Los Angeles, CA 90001" -304034,USB-C Charging Cable,1,11.95,12/21/19 22:39,"366 Willow St, Los Angeles, CA 90001" -304035,Wired Headphones,1,11.99,12/07/19 10:01,"394 Jackson St, Austin, TX 73301" -304036,AAA Batteries (4-pack),1,2.99,12/03/19 14:22,"707 8th St, San Francisco, CA 94016" -304037,AAA Batteries (4-pack),3,2.99,12/09/19 14:32,"954 10th St, New York City, NY 10001" -304038,USB-C Charging Cable,1,11.95,12/20/19 18:49,"426 North St, Austin, TX 73301" -304039,AA Batteries (4-pack),1,3.84,12/30/19 19:10,"579 Washington St, Los Angeles, CA 90001" -304040,Apple Airpods Headphones,1,150,12/26/19 08:56,"48 Johnson St, Dallas, TX 75001" -304041,AAA Batteries (4-pack),1,2.99,12/07/19 15:05,"477 Hill St, San Francisco, CA 94016" -304042,27in 4K Gaming Monitor,1,389.99,12/31/19 18:37,"990 Meadow St, Boston, MA 02215" -304043,USB-C Charging Cable,1,11.95,12/23/19 19:52,"789 Willow St, Los Angeles, CA 90001" -304044,AAA Batteries (4-pack),2,2.99,12/22/19 07:07,"417 Madison St, Seattle, WA 98101" -304045,iPhone,1,700,12/24/19 08:24,"199 1st St, Seattle, WA 98101" -304046,Macbook Pro Laptop,1,1700,12/15/19 17:31,"709 Elm St, Los Angeles, CA 90001" -304047,Flatscreen TV,1,300,12/20/19 20:27,"312 1st St, Austin, TX 73301" -304048,27in FHD Monitor,1,149.99,12/07/19 18:50,"559 Cherry St, San Francisco, CA 94016" -304049,Bose SoundSport Headphones,1,99.99,12/31/19 18:34,"183 Main St, New York City, NY 10001" -304050,27in 4K Gaming Monitor,1,389.99,12/18/19 17:22,"312 Madison St, Los Angeles, CA 90001" -304051,34in Ultrawide Monitor,1,379.99,12/08/19 19:44,"602 West St, San Francisco, CA 94016" -304052,AA Batteries (4-pack),1,3.84,12/01/19 20:40,"831 Spruce St, Portland, OR 97035" -304053,20in Monitor,1,109.99,12/16/19 17:55,"954 Dogwood St, San Francisco, CA 94016" -304054,USB-C Charging Cable,1,11.95,12/01/19 22:32,"786 5th St, San Francisco, CA 94016" -304055,Flatscreen TV,1,300,12/24/19 22:07,"236 Adams St, Boston, MA 02215" -304055,AAA Batteries (4-pack),2,2.99,12/24/19 22:07,"236 Adams St, Boston, MA 02215" -304056,AA Batteries (4-pack),2,3.84,12/25/19 23:03,"531 Forest St, San Francisco, CA 94016" -304056,ThinkPad Laptop,1,999.99,12/25/19 23:03,"531 Forest St, San Francisco, CA 94016" -304057,27in FHD Monitor,1,149.99,12/27/19 00:07,"246 12th St, San Francisco, CA 94016" -304058,Wired Headphones,1,11.99,12/18/19 00:34,"170 12th St, New York City, NY 10001" -304059,Lightning Charging Cable,1,14.95,12/19/19 13:23,"760 River St, New York City, NY 10001" -304060,Apple Airpods Headphones,1,150,12/28/19 12:15,"566 8th St, Atlanta, GA 30301" -304061,Apple Airpods Headphones,1,150,12/15/19 00:37,"817 Church St, San Francisco, CA 94016" -304062,34in Ultrawide Monitor,1,379.99,12/02/19 00:54,"997 9th St, Atlanta, GA 30301" -304063,Flatscreen TV,1,300,12/14/19 13:01,"939 Highland St, Dallas, TX 75001" -304064,Wired Headphones,1,11.99,12/20/19 09:01,"898 Cedar St, Seattle, WA 98101" -304065,27in 4K Gaming Monitor,1,389.99,12/29/19 14:00,"792 5th St, Atlanta, GA 30301" -304065,Wired Headphones,1,11.99,12/29/19 14:00,"792 5th St, Atlanta, GA 30301" -304066,Apple Airpods Headphones,1,150,12/10/19 22:27,"933 Cherry St, Los Angeles, CA 90001" -304067,iPhone,1,700,12/25/19 09:02,"785 Maple St, San Francisco, CA 94016" -304068,20in Monitor,1,109.99,12/19/19 00:22,"676 8th St, Los Angeles, CA 90001" -304069,Bose SoundSport Headphones,1,99.99,12/05/19 11:00,"850 Lake St, Los Angeles, CA 90001" -304070,AA Batteries (4-pack),1,3.84,12/02/19 18:24,"827 Hill St, New York City, NY 10001" -304071,Lightning Charging Cable,1,14.95,12/21/19 17:55,"640 Jackson St, New York City, NY 10001" -304072,USB-C Charging Cable,1,11.95,12/24/19 11:54,"21 Sunset St, Los Angeles, CA 90001" -304073,34in Ultrawide Monitor,1,379.99,12/03/19 18:08,"671 Lakeview St, Austin, TX 73301" -304074,Google Phone,1,600,12/15/19 16:42,"731 Adams St, San Francisco, CA 94016" -304075,Wired Headphones,1,11.99,12/11/19 12:13,"597 Cedar St, Austin, TX 73301" -304076,Flatscreen TV,1,300,12/15/19 18:53,"586 Hill St, New York City, NY 10001" -304077,AA Batteries (4-pack),1,3.84,12/30/19 20:37,"709 Cherry St, Portland, OR 97035" -304078,27in 4K Gaming Monitor,1,389.99,12/29/19 07:01,"173 Main St, Dallas, TX 75001" -304079,Wired Headphones,1,11.99,12/12/19 20:39,"270 South St, Los Angeles, CA 90001" -304080,Wired Headphones,1,11.99,12/29/19 22:18,"924 12th St, San Francisco, CA 94016" -304081,Lightning Charging Cable,1,14.95,12/01/19 18:34,"878 Center St, San Francisco, CA 94016" -304082,AAA Batteries (4-pack),1,2.99,12/19/19 09:49,"817 10th St, San Francisco, CA 94016" -304083,AA Batteries (4-pack),2,3.84,12/23/19 21:22,"574 Maple St, San Francisco, CA 94016" -304084,USB-C Charging Cable,1,11.95,12/15/19 00:18,"721 Hill St, San Francisco, CA 94016" -304085,27in FHD Monitor,1,149.99,12/03/19 18:17,"42 14th St, New York City, NY 10001" -304086,27in FHD Monitor,1,149.99,12/04/19 18:23,"24 Cherry St, Portland, OR 97035" -304087,ThinkPad Laptop,1,999.99,12/27/19 21:43,"801 1st St, New York City, NY 10001" -304088,AA Batteries (4-pack),2,3.84,12/02/19 13:32,"23 11th St, Dallas, TX 75001" -304089,Macbook Pro Laptop,1,1700,12/21/19 19:55,"560 Main St, New York City, NY 10001" -304090,USB-C Charging Cable,1,11.95,12/17/19 18:38,"62 7th St, New York City, NY 10001" -304091,AA Batteries (4-pack),1,3.84,12/14/19 18:09,"685 Chestnut St, Atlanta, GA 30301" -304092,AAA Batteries (4-pack),1,2.99,12/19/19 21:29,"710 Spruce St, New York City, NY 10001" -304093,iPhone,1,700,12/25/19 10:13,"566 Dogwood St, Dallas, TX 75001" -304094,AA Batteries (4-pack),2,3.84,12/16/19 18:00,"72 Elm St, New York City, NY 10001" -304095,Wired Headphones,1,11.99,12/14/19 21:13,"295 Willow St, New York City, NY 10001" -304096,27in 4K Gaming Monitor,1,389.99,12/17/19 07:37,"840 6th St, Atlanta, GA 30301" -304097,USB-C Charging Cable,2,11.95,12/13/19 21:25,"638 Jackson St, San Francisco, CA 94016" -304098,Lightning Charging Cable,1,14.95,12/25/19 22:37,"696 Jackson St, Austin, TX 73301" -304099,Wired Headphones,1,11.99,12/10/19 08:45,"879 Maple St, Dallas, TX 75001" -304100,Vareebadd Phone,1,400,12/18/19 20:22,"889 8th St, Dallas, TX 75001" -304101,AAA Batteries (4-pack),1,2.99,12/20/19 17:44,"843 West St, Dallas, TX 75001" -304101,AA Batteries (4-pack),1,3.84,12/20/19 17:44,"843 West St, Dallas, TX 75001" -304102,Wired Headphones,1,11.99,12/05/19 15:39,"620 Walnut St, New York City, NY 10001" -304103,Bose SoundSport Headphones,1,99.99,12/09/19 10:47,"194 6th St, San Francisco, CA 94016" -304104,Macbook Pro Laptop,1,1700,12/02/19 13:44,"438 Forest St, New York City, NY 10001" -304105,USB-C Charging Cable,1,11.95,12/28/19 23:02,"294 Spruce St, Dallas, TX 75001" -304106,USB-C Charging Cable,2,11.95,12/20/19 13:19,"407 Johnson St, Los Angeles, CA 90001" -304107,AA Batteries (4-pack),1,3.84,12/19/19 12:06,"914 2nd St, Boston, MA 02215" -304108,Wired Headphones,1,11.99,12/13/19 10:00,"809 11th St, Seattle, WA 98101" -304109,Lightning Charging Cable,1,14.95,12/11/19 09:29,"833 North St, Austin, TX 73301" -304110,USB-C Charging Cable,1,11.95,12/24/19 22:08,"439 Highland St, Seattle, WA 98101" -304111,20in Monitor,1,109.99,12/25/19 12:46,"592 West St, Los Angeles, CA 90001" -304112,34in Ultrawide Monitor,1,379.99,12/22/19 10:58,"32 South St, San Francisco, CA 94016" -304113,Apple Airpods Headphones,1,150,12/03/19 17:18,"589 Ridge St, Los Angeles, CA 90001" -304114,USB-C Charging Cable,1,11.95,12/14/19 09:24,"312 Hill St, New York City, NY 10001" -304115,20in Monitor,1,109.99,12/12/19 22:16,"187 Washington St, Portland, ME 04101" -304116,27in FHD Monitor,1,149.99,12/28/19 15:49,"419 Church St, San Francisco, CA 94016" -304117,Lightning Charging Cable,1,14.95,12/13/19 15:13,"854 10th St, Boston, MA 02215" -304118,USB-C Charging Cable,1,11.95,12/23/19 20:03,"610 7th St, Los Angeles, CA 90001" -304119,Bose SoundSport Headphones,1,99.99,12/20/19 11:32,"841 West St, San Francisco, CA 94016" -304120,USB-C Charging Cable,1,11.95,12/13/19 11:29,"30 6th St, San Francisco, CA 94016" -304121,USB-C Charging Cable,2,11.95,12/24/19 12:53,"301 Ridge St, San Francisco, CA 94016" -304122,AA Batteries (4-pack),2,3.84,12/08/19 14:17,"309 Adams St, New York City, NY 10001" -304123,AAA Batteries (4-pack),1,2.99,12/24/19 19:45,"138 Sunset St, Boston, MA 02215" -304124,Lightning Charging Cable,1,14.95,12/29/19 22:05,"10 Willow St, Portland, OR 97035" -304125,LG Dryer,1,600.0,12/06/19 10:57,"591 Willow St, Portland, OR 97035" -304126,34in Ultrawide Monitor,1,379.99,12/04/19 18:45,"563 Lincoln St, San Francisco, CA 94016" -304127,Wired Headphones,1,11.99,12/03/19 14:43,"541 Wilson St, San Francisco, CA 94016" -304128,Bose SoundSport Headphones,1,99.99,12/15/19 15:39,"675 Highland St, Seattle, WA 98101" -304129,Wired Headphones,1,11.99,12/15/19 20:30,"926 13th St, Atlanta, GA 30301" -304130,ThinkPad Laptop,1,999.99,12/31/19 13:44,"887 Wilson St, San Francisco, CA 94016" -304131,USB-C Charging Cable,1,11.95,12/22/19 12:40,"203 Main St, San Francisco, CA 94016" -304132,27in 4K Gaming Monitor,1,389.99,12/25/19 18:16,"991 Main St, Los Angeles, CA 90001" -304133,AAA Batteries (4-pack),1,2.99,12/28/19 13:19,"990 14th St, San Francisco, CA 94016" -304133,Lightning Charging Cable,1,14.95,12/28/19 13:19,"990 14th St, San Francisco, CA 94016" -304134,USB-C Charging Cable,2,11.95,12/31/19 00:00,"384 4th St, Boston, MA 02215" -304135,Apple Airpods Headphones,1,150,12/17/19 18:42,"581 Elm St, Atlanta, GA 30301" -304136,34in Ultrawide Monitor,1,379.99,12/23/19 12:08,"610 11th St, Portland, OR 97035" -304136,iPhone,1,700,12/23/19 12:08,"610 11th St, Portland, OR 97035" -304137,USB-C Charging Cable,1,11.95,12/24/19 09:16,"607 West St, Los Angeles, CA 90001" -304138,USB-C Charging Cable,1,11.95,12/05/19 05:09,"69 Highland St, San Francisco, CA 94016" -304139,USB-C Charging Cable,1,11.95,12/07/19 18:21,"173 1st St, Boston, MA 02215" -304140,Vareebadd Phone,1,400,12/30/19 21:39,"22 Madison St, New York City, NY 10001" -304141,Apple Airpods Headphones,1,150,12/07/19 12:54,"378 8th St, New York City, NY 10001" -304142,USB-C Charging Cable,1,11.95,12/30/19 19:46,"60 Wilson St, Dallas, TX 75001" -304143,Bose SoundSport Headphones,1,99.99,12/20/19 14:36,"999 Pine St, San Francisco, CA 94016" -304144,Google Phone,1,600,12/03/19 20:22,"124 11th St, San Francisco, CA 94016" -304145,Wired Headphones,1,11.99,12/27/19 21:06,"192 Jefferson St, Portland, OR 97035" -304146,Wired Headphones,1,11.99,12/19/19 11:48,"915 Park St, Seattle, WA 98101" -304147,Bose SoundSport Headphones,1,99.99,12/22/19 09:39,"592 Madison St, Atlanta, GA 30301" -304148,27in FHD Monitor,1,149.99,12/30/19 17:26,"938 Chestnut St, Atlanta, GA 30301" -304149,AAA Batteries (4-pack),1,2.99,12/10/19 21:03,"646 Highland St, Boston, MA 02215" -304150,Wired Headphones,1,11.99,12/28/19 14:32,"989 12th St, Los Angeles, CA 90001" -304151,Lightning Charging Cable,1,14.95,12/26/19 13:48,"338 4th St, San Francisco, CA 94016" -304152,Bose SoundSport Headphones,1,99.99,12/25/19 20:57,"104 Willow St, Los Angeles, CA 90001" -304153,34in Ultrawide Monitor,1,379.99,12/15/19 01:03,"395 13th St, Los Angeles, CA 90001" -304154,AA Batteries (4-pack),1,3.84,12/15/19 12:57,"676 Johnson St, New York City, NY 10001" -304155,Apple Airpods Headphones,1,150,12/26/19 16:04,"100 Walnut St, Portland, OR 97035" -304156,USB-C Charging Cable,1,11.95,12/23/19 21:04,"67 North St, Dallas, TX 75001" -304157,USB-C Charging Cable,1,11.95,12/09/19 22:06,"979 Sunset St, Boston, MA 02215" -304158,27in 4K Gaming Monitor,1,389.99,12/08/19 10:00,"900 Jackson St, New York City, NY 10001" -304159,AAA Batteries (4-pack),1,2.99,12/23/19 17:52,"246 9th St, Boston, MA 02215" -304160,Bose SoundSport Headphones,1,99.99,12/27/19 08:35,"589 4th St, Dallas, TX 75001" -304161,Lightning Charging Cable,1,14.95,12/16/19 19:40,"810 Main St, Los Angeles, CA 90001" -304162,Apple Airpods Headphones,1,150,12/24/19 19:26,"381 Highland St, Dallas, TX 75001" -304163,Lightning Charging Cable,1,14.95,12/24/19 01:35,"128 Jefferson St, Atlanta, GA 30301" -304164,Apple Airpods Headphones,1,150,12/10/19 18:33,"242 8th St, Seattle, WA 98101" -304165,AAA Batteries (4-pack),1,2.99,01/01/20 04:13,"825 Adams St, Portland, OR 97035" -304166,Wired Headphones,1,11.99,12/19/19 16:59,"443 9th St, Austin, TX 73301" -304167,Lightning Charging Cable,1,14.95,12/12/19 15:16,"245 Lakeview St, Atlanta, GA 30301" -304168,AAA Batteries (4-pack),2,2.99,12/14/19 12:39,"597 Cedar St, New York City, NY 10001" -304169,Lightning Charging Cable,1,14.95,12/09/19 19:14,"286 Cedar St, Los Angeles, CA 90001" -304170,Lightning Charging Cable,1,14.95,12/30/19 13:14,"248 Sunset St, Boston, MA 02215" -304171,34in Ultrawide Monitor,1,379.99,12/05/19 07:47,"223 Elm St, Los Angeles, CA 90001" -304172,Flatscreen TV,1,300,12/31/19 11:10,"386 Maple St, Portland, OR 97035" -304173,AA Batteries (4-pack),1,3.84,12/30/19 10:40,"351 Wilson St, Los Angeles, CA 90001" -304174,USB-C Charging Cable,1,11.95,12/31/19 14:15,"22 12th St, San Francisco, CA 94016" -304175,Lightning Charging Cable,1,14.95,12/20/19 12:20,"553 4th St, San Francisco, CA 94016" -304176,USB-C Charging Cable,2,11.95,12/26/19 22:46,"855 Highland St, Portland, OR 97035" -304177,Lightning Charging Cable,1,14.95,12/27/19 14:58,"7 7th St, Los Angeles, CA 90001" -304178,Apple Airpods Headphones,1,150,12/09/19 18:52,"977 Pine St, Los Angeles, CA 90001" -304179,LG Washing Machine,1,600.0,12/04/19 12:59,"462 Lincoln St, San Francisco, CA 94016" -304180,Wired Headphones,1,11.99,12/30/19 11:44,"455 6th St, Seattle, WA 98101" -304181,USB-C Charging Cable,1,11.95,12/22/19 19:00,"263 Cedar St, Atlanta, GA 30301" -304182,20in Monitor,1,109.99,12/25/19 12:21,"859 Spruce St, Seattle, WA 98101" -304183,AA Batteries (4-pack),2,3.84,12/15/19 20:53,"820 River St, Boston, MA 02215" -304184,AAA Batteries (4-pack),2,2.99,12/11/19 23:47,"870 Lake St, Portland, OR 97035" -304185,34in Ultrawide Monitor,1,379.99,12/03/19 09:29,"724 West St, San Francisco, CA 94016" -304186,AA Batteries (4-pack),1,3.84,12/11/19 14:43,"280 Highland St, Boston, MA 02215" -304187,AA Batteries (4-pack),1,3.84,12/14/19 15:11,"124 Main St, Los Angeles, CA 90001" -304188,Wired Headphones,1,11.99,12/15/19 17:21,"900 6th St, Atlanta, GA 30301" -304189,USB-C Charging Cable,1,11.95,12/07/19 21:55,"393 7th St, Austin, TX 73301" -304190,Lightning Charging Cable,1,14.95,12/13/19 09:56,"472 Jackson St, New York City, NY 10001" -304191,AA Batteries (4-pack),1,3.84,12/30/19 12:39,"963 Church St, Boston, MA 02215" -304192,34in Ultrawide Monitor,1,379.99,12/13/19 23:06,"463 10th St, Boston, MA 02215" -304193,27in FHD Monitor,1,149.99,12/16/19 17:35,"237 Madison St, Seattle, WA 98101" -304194,Wired Headphones,1,11.99,12/06/19 10:13,"222 Pine St, Portland, OR 97035" -304195,Lightning Charging Cable,1,14.95,12/27/19 16:16,"480 Wilson St, San Francisco, CA 94016" -304196,ThinkPad Laptop,1,999.99,12/19/19 09:47,"406 14th St, San Francisco, CA 94016" -304197,Wired Headphones,1,11.99,12/28/19 13:59,"174 Forest St, Boston, MA 02215" -304198,Bose SoundSport Headphones,1,99.99,12/15/19 20:32,"578 Washington St, Los Angeles, CA 90001" -304199,Bose SoundSport Headphones,1,99.99,12/13/19 18:12,"248 Madison St, New York City, NY 10001" -304200,Wired Headphones,1,11.99,12/08/19 21:25,"665 Sunset St, San Francisco, CA 94016" -304201,ThinkPad Laptop,1,999.99,12/31/19 08:11,"944 Johnson St, New York City, NY 10001" -,,,,, -304202,20in Monitor,1,109.99,12/31/19 12:57,"721 Elm St, Boston, MA 02215" -304203,Apple Airpods Headphones,1,150,12/18/19 20:10,"682 5th St, Boston, MA 02215" -304204,27in FHD Monitor,1,149.99,12/16/19 19:01,"127 1st St, New York City, NY 10001" -304205,27in 4K Gaming Monitor,1,389.99,12/21/19 16:21,"72 4th St, Atlanta, GA 30301" -304206,Apple Airpods Headphones,1,150,12/29/19 17:20,"701 Sunset St, New York City, NY 10001" -304207,Wired Headphones,2,11.99,12/21/19 20:03,"395 Church St, Boston, MA 02215" -304208,USB-C Charging Cable,1,11.95,12/13/19 20:46,"356 Highland St, New York City, NY 10001" -304209,Wired Headphones,1,11.99,12/20/19 20:20,"643 Adams St, San Francisco, CA 94016" -304210,AA Batteries (4-pack),1,3.84,12/21/19 13:33,"366 Adams St, Los Angeles, CA 90001" -304211,Apple Airpods Headphones,1,150,12/06/19 20:53,"905 Hickory St, San Francisco, CA 94016" -304212,Lightning Charging Cable,1,14.95,12/14/19 17:54,"813 Johnson St, Seattle, WA 98101" -304213,AAA Batteries (4-pack),1,2.99,12/22/19 18:54,"936 13th St, Dallas, TX 75001" -304214,AA Batteries (4-pack),1,3.84,12/15/19 20:11,"60 Main St, Los Angeles, CA 90001" -304215,Bose SoundSport Headphones,1,99.99,12/15/19 12:54,"916 Madison St, Los Angeles, CA 90001" -304216,34in Ultrawide Monitor,1,379.99,12/08/19 19:25,"766 Wilson St, Dallas, TX 75001" -304217,Wired Headphones,1,11.99,12/15/19 21:20,"141 Hickory St, New York City, NY 10001" -304218,USB-C Charging Cable,1,11.95,12/21/19 18:50,"523 Meadow St, San Francisco, CA 94016" -304219,Lightning Charging Cable,2,14.95,12/19/19 16:01,"936 River St, Austin, TX 73301" -304219,AA Batteries (4-pack),2,3.84,12/19/19 16:01,"936 River St, Austin, TX 73301" -304220,27in 4K Gaming Monitor,1,389.99,12/12/19 15:51,"426 Dogwood St, San Francisco, CA 94016" -304221,Lightning Charging Cable,1,14.95,12/16/19 23:21,"945 Pine St, Austin, TX 73301" -304221,Wired Headphones,1,11.99,12/16/19 23:21,"945 Pine St, Austin, TX 73301" -304222,Wired Headphones,1,11.99,12/10/19 09:45,"371 Willow St, Atlanta, GA 30301" -304223,Macbook Pro Laptop,1,1700,12/31/19 11:18,"142 11th St, Seattle, WA 98101" -304224,USB-C Charging Cable,1,11.95,12/26/19 11:35,"706 River St, New York City, NY 10001" -304225,Bose SoundSport Headphones,1,99.99,12/03/19 21:05,"803 Main St, Dallas, TX 75001" -304226,Apple Airpods Headphones,1,150,12/12/19 19:05,"689 Washington St, Atlanta, GA 30301" -304227,Wired Headphones,1,11.99,12/08/19 17:16,"760 Main St, Los Angeles, CA 90001" -304228,Google Phone,1,600,12/06/19 09:53,"216 2nd St, Portland, OR 97035" -304229,Wired Headphones,1,11.99,12/25/19 13:34,"477 5th St, Portland, OR 97035" -304230,27in 4K Gaming Monitor,1,389.99,12/26/19 19:07,"662 Adams St, Los Angeles, CA 90001" -304231,Bose SoundSport Headphones,1,99.99,12/17/19 20:20,"238 Church St, Dallas, TX 75001" -304232,AAA Batteries (4-pack),2,2.99,12/31/19 10:10,"346 Pine St, Portland, OR 97035" -304233,Macbook Pro Laptop,1,1700,12/23/19 16:26,"279 Highland St, Boston, MA 02215" -304234,AA Batteries (4-pack),2,3.84,12/20/19 17:33,"764 Johnson St, Austin, TX 73301" -304235,Bose SoundSport Headphones,1,99.99,12/06/19 20:18,"983 Forest St, Atlanta, GA 30301" -304236,Apple Airpods Headphones,1,150,12/24/19 21:05,"549 Spruce St, Los Angeles, CA 90001" -304237,USB-C Charging Cable,1,11.95,12/16/19 15:04,"475 12th St, New York City, NY 10001" -304238,Wired Headphones,1,11.99,12/31/19 18:53,"353 Pine St, Los Angeles, CA 90001" -304239,AA Batteries (4-pack),1,3.84,12/07/19 18:20,"409 Adams St, San Francisco, CA 94016" -304240,AAA Batteries (4-pack),1,2.99,12/09/19 19:05,"796 8th St, Boston, MA 02215" -304241,AA Batteries (4-pack),2,3.84,12/13/19 20:15,"706 Madison St, Atlanta, GA 30301" -304242,34in Ultrawide Monitor,1,379.99,12/24/19 14:07,"578 9th St, Portland, OR 97035" -304243,Macbook Pro Laptop,1,1700,12/03/19 14:39,"766 Park St, Los Angeles, CA 90001" -304244,iPhone,1,700,12/04/19 12:21,"39 Forest St, New York City, NY 10001" -304245,27in 4K Gaming Monitor,1,389.99,12/29/19 11:51,"252 Johnson St, Seattle, WA 98101" -304246,Vareebadd Phone,1,400,12/28/19 14:12,"364 Dogwood St, New York City, NY 10001" -304247,Wired Headphones,1,11.99,12/12/19 19:40,"456 Pine St, Los Angeles, CA 90001" -304248,Lightning Charging Cable,1,14.95,12/11/19 19:09,"440 9th St, Portland, OR 97035" -304249,USB-C Charging Cable,1,11.95,12/22/19 11:22,"269 12th St, Los Angeles, CA 90001" -304250,Vareebadd Phone,1,400,12/30/19 09:49,"270 Adams St, San Francisco, CA 94016" -304251,iPhone,1,700,12/09/19 11:09,"547 7th St, Austin, TX 73301" -304252,Lightning Charging Cable,1,14.95,12/26/19 12:53,"783 Park St, Austin, TX 73301" -304252,iPhone,1,700,12/26/19 12:53,"783 Park St, Austin, TX 73301" -304253,Apple Airpods Headphones,1,150,12/22/19 08:32,"193 2nd St, Seattle, WA 98101" -304254,AA Batteries (4-pack),2,3.84,12/19/19 11:34,"938 10th St, New York City, NY 10001" -304255,AA Batteries (4-pack),1,3.84,12/03/19 13:24,"647 West St, Los Angeles, CA 90001" -304256,Bose SoundSport Headphones,1,99.99,12/23/19 11:13,"562 Hickory St, Los Angeles, CA 90001" -304257,iPhone,1,700,12/11/19 18:04,"68 9th St, Boston, MA 02215" -304257,34in Ultrawide Monitor,1,379.99,12/11/19 18:04,"68 9th St, Boston, MA 02215" -304258,Bose SoundSport Headphones,1,99.99,12/29/19 19:00,"457 Jefferson St, San Francisco, CA 94016" -304259,34in Ultrawide Monitor,1,379.99,12/10/19 20:54,"356 Elm St, Atlanta, GA 30301" -304260,Flatscreen TV,1,300,12/12/19 13:35,"283 Forest St, San Francisco, CA 94016" -304261,USB-C Charging Cable,1,11.95,12/24/19 19:56,"741 Lincoln St, Atlanta, GA 30301" -304262,AAA Batteries (4-pack),1,2.99,12/15/19 17:44,"571 Elm St, San Francisco, CA 94016" -304263,Lightning Charging Cable,2,14.95,12/31/19 18:12,"937 Madison St, Los Angeles, CA 90001" -304264,AAA Batteries (4-pack),1,2.99,12/14/19 22:57,"527 Elm St, Atlanta, GA 30301" -304265,AAA Batteries (4-pack),2,2.99,12/12/19 22:07,"486 Jackson St, Seattle, WA 98101" -304266,Apple Airpods Headphones,1,150,12/27/19 14:30,"351 Church St, Los Angeles, CA 90001" -304267,AAA Batteries (4-pack),1,2.99,12/21/19 20:45,"329 Adams St, Atlanta, GA 30301" -304268,Wired Headphones,1,11.99,12/19/19 19:07,"634 Lake St, Atlanta, GA 30301" -304269,20in Monitor,1,109.99,12/27/19 18:29,"165 2nd St, Boston, MA 02215" -304270,AA Batteries (4-pack),3,3.84,12/05/19 14:26,"51 Cherry St, Seattle, WA 98101" -304271,AA Batteries (4-pack),1,3.84,12/19/19 10:59,"983 Hickory St, New York City, NY 10001" -304272,Google Phone,1,600,12/06/19 21:15,"207 Sunset St, Atlanta, GA 30301" -304273,34in Ultrawide Monitor,1,379.99,12/24/19 15:13,"979 Elm St, Boston, MA 02215" -304274,LG Dryer,1,600.0,12/07/19 22:20,"723 Washington St, San Francisco, CA 94016" -304275,Flatscreen TV,1,300,12/15/19 22:35,"46 Chestnut St, New York City, NY 10001" -304276,ThinkPad Laptop,1,999.99,12/15/19 06:07,"358 5th St, New York City, NY 10001" -304276,iPhone,1,700,12/15/19 06:07,"358 5th St, New York City, NY 10001" -304277,Wired Headphones,1,11.99,12/13/19 17:57,"738 6th St, New York City, NY 10001" -304278,AAA Batteries (4-pack),1,2.99,12/28/19 11:24,"753 Pine St, San Francisco, CA 94016" -304279,34in Ultrawide Monitor,1,379.99,12/09/19 19:15,"413 Cedar St, Los Angeles, CA 90001" -304280,Bose SoundSport Headphones,1,99.99,12/08/19 08:50,"637 12th St, Los Angeles, CA 90001" -304281,AA Batteries (4-pack),1,3.84,12/07/19 20:41,"165 Madison St, Boston, MA 02215" -304282,Google Phone,1,600,12/31/19 23:35,"524 4th St, New York City, NY 10001" -304283,27in FHD Monitor,1,149.99,12/15/19 04:54,"610 Forest St, New York City, NY 10001" -304284,27in FHD Monitor,1,149.99,12/30/19 18:06,"284 Elm St, Portland, OR 97035" -304285,AAA Batteries (4-pack),2,2.99,12/03/19 11:58,"789 Willow St, San Francisco, CA 94016" -304286,USB-C Charging Cable,1,11.95,12/22/19 18:13,"865 Park St, Los Angeles, CA 90001" -304287,ThinkPad Laptop,1,999.99,12/10/19 18:09,"185 2nd St, San Francisco, CA 94016" -304288,Wired Headphones,1,11.99,12/11/19 19:39,"769 4th St, New York City, NY 10001" -304289,Apple Airpods Headphones,1,150,12/30/19 20:43,"758 1st St, Boston, MA 02215" -304290,Google Phone,1,600,12/25/19 09:31,"120 9th St, Los Angeles, CA 90001" -304290,USB-C Charging Cable,1,11.95,12/25/19 09:31,"120 9th St, Los Angeles, CA 90001" -304291,Apple Airpods Headphones,1,150,12/17/19 11:45,"750 12th St, Boston, MA 02215" -304291,Bose SoundSport Headphones,1,99.99,12/17/19 11:45,"750 12th St, Boston, MA 02215" -304292,Bose SoundSport Headphones,1,99.99,12/04/19 08:57,"40 13th St, New York City, NY 10001" -304293,Macbook Pro Laptop,1,1700,12/02/19 14:41,"252 Maple St, Los Angeles, CA 90001" -304294,USB-C Charging Cable,1,11.95,12/26/19 19:58,"648 6th St, Los Angeles, CA 90001" -304295,Google Phone,1,600,12/13/19 18:23,"635 13th St, Los Angeles, CA 90001" -304295,Wired Headphones,1,11.99,12/13/19 18:23,"635 13th St, Los Angeles, CA 90001" -304296,LG Dryer,1,600.0,12/28/19 22:10,"776 12th St, Austin, TX 73301" -304297,AA Batteries (4-pack),1,3.84,12/14/19 19:17,"154 Highland St, San Francisco, CA 94016" -304298,27in FHD Monitor,1,149.99,12/17/19 10:54,"408 Cedar St, Atlanta, GA 30301" -304299,Apple Airpods Headphones,1,150,12/07/19 12:19,"359 2nd St, New York City, NY 10001" -304300,AA Batteries (4-pack),1,3.84,12/05/19 21:44,"247 Elm St, Boston, MA 02215" -304301,Apple Airpods Headphones,1,150,12/23/19 12:20,"551 River St, Boston, MA 02215" -304302,Apple Airpods Headphones,1,150,12/05/19 17:01,"149 Dogwood St, San Francisco, CA 94016" -304303,USB-C Charging Cable,1,11.95,12/11/19 09:38,"615 2nd St, San Francisco, CA 94016" -304304,Apple Airpods Headphones,1,150,12/08/19 14:56,"27 Center St, Los Angeles, CA 90001" -304305,Wired Headphones,1,11.99,12/16/19 02:47,"81 Elm St, San Francisco, CA 94016" -304306,27in FHD Monitor,1,149.99,12/29/19 12:10,"415 Chestnut St, San Francisco, CA 94016" -304307,Wired Headphones,1,11.99,12/28/19 19:35,"524 River St, Dallas, TX 75001" -304308,AAA Batteries (4-pack),1,2.99,12/02/19 15:18,"513 14th St, Dallas, TX 75001" -304309,27in 4K Gaming Monitor,1,389.99,12/03/19 19:16,"606 2nd St, Seattle, WA 98101" -304310,Wired Headphones,1,11.99,12/05/19 11:19,"762 Forest St, Dallas, TX 75001" -304311,AAA Batteries (4-pack),1,2.99,12/29/19 10:42,"402 Johnson St, San Francisco, CA 94016" -304312,AA Batteries (4-pack),2,3.84,12/20/19 09:06,"283 West St, New York City, NY 10001" -304313,27in FHD Monitor,1,149.99,12/29/19 12:44,"872 Center St, Atlanta, GA 30301" -304314,USB-C Charging Cable,1,11.95,12/11/19 02:43,"82 9th St, Los Angeles, CA 90001" -304315,Wired Headphones,1,11.99,12/24/19 23:45,"200 Hickory St, Dallas, TX 75001" -304316,iPhone,1,700,12/08/19 20:55,"228 5th St, New York City, NY 10001" -304317,Wired Headphones,1,11.99,12/11/19 00:43,"326 11th St, New York City, NY 10001" -304318,USB-C Charging Cable,1,11.95,12/10/19 17:35,"198 Cedar St, Los Angeles, CA 90001" -304319,Macbook Pro Laptop,1,1700,12/29/19 10:16,"868 11th St, San Francisco, CA 94016" -304320,AA Batteries (4-pack),1,3.84,12/29/19 06:51,"490 8th St, Atlanta, GA 30301" -304321,AAA Batteries (4-pack),1,2.99,12/13/19 13:11,"205 Madison St, Boston, MA 02215" -304322,Lightning Charging Cable,1,14.95,12/03/19 13:12,"943 13th St, New York City, NY 10001" -304323,Lightning Charging Cable,1,14.95,12/14/19 13:57,"535 11th St, Austin, TX 73301" -304324,iPhone,1,700,12/13/19 10:44,"293 Walnut St, San Francisco, CA 94016" -304324,Lightning Charging Cable,1,14.95,12/13/19 10:44,"293 Walnut St, San Francisco, CA 94016" -304325,Lightning Charging Cable,1,14.95,12/18/19 07:03,"733 Church St, San Francisco, CA 94016" -304326,Flatscreen TV,1,300,12/02/19 19:47,"961 14th St, Boston, MA 02215" -304327,34in Ultrawide Monitor,1,379.99,12/23/19 11:12,"493 Cherry St, Portland, OR 97035" -304328,AAA Batteries (4-pack),2,2.99,12/12/19 23:22,"865 Madison St, Los Angeles, CA 90001" -304329,USB-C Charging Cable,1,11.95,12/25/19 03:39,"105 Sunset St, Boston, MA 02215" -304330,Lightning Charging Cable,1,14.95,12/05/19 15:54,"937 Jefferson St, Dallas, TX 75001" -304331,Lightning Charging Cable,1,14.95,12/27/19 11:13,"503 4th St, San Francisco, CA 94016" -304332,USB-C Charging Cable,1,11.95,12/23/19 18:20,"853 Jefferson St, San Francisco, CA 94016" -304333,AAA Batteries (4-pack),3,2.99,12/18/19 16:09,"68 Lincoln St, Seattle, WA 98101" -304334,Vareebadd Phone,1,400,12/28/19 16:51,"2 9th St, Dallas, TX 75001" -304335,AA Batteries (4-pack),1,3.84,12/22/19 23:14,"63 11th St, San Francisco, CA 94016" -304336,Wired Headphones,1,11.99,12/28/19 11:15,"900 Madison St, San Francisco, CA 94016" -304337,USB-C Charging Cable,1,11.95,12/01/19 20:48,"796 13th St, New York City, NY 10001" -304338,USB-C Charging Cable,1,11.95,12/27/19 10:34,"825 Dogwood St, Los Angeles, CA 90001" -304339,Apple Airpods Headphones,1,150,12/18/19 04:33,"737 Hill St, New York City, NY 10001" -304340,27in 4K Gaming Monitor,1,389.99,12/18/19 20:47,"57 Cedar St, New York City, NY 10001" -304341,20in Monitor,1,109.99,12/18/19 20:18,"569 Elm St, Los Angeles, CA 90001" -304342,Lightning Charging Cable,1,14.95,12/12/19 21:48,"705 Park St, Boston, MA 02215" -304343,Bose SoundSport Headphones,1,99.99,12/16/19 18:24,"803 8th St, Austin, TX 73301" -304344,Apple Airpods Headphones,1,150,12/22/19 18:48,"645 Lincoln St, San Francisco, CA 94016" -304345,AAA Batteries (4-pack),2,2.99,12/03/19 09:00,"518 Meadow St, Dallas, TX 75001" -304346,AA Batteries (4-pack),4,3.84,12/19/19 15:22,"164 Dogwood St, Atlanta, GA 30301" -304347,USB-C Charging Cable,1,11.95,12/16/19 08:52,"574 Church St, Los Angeles, CA 90001" -304348,Bose SoundSport Headphones,1,99.99,12/26/19 22:07,"170 12th St, Boston, MA 02215" -304349,ThinkPad Laptop,1,999.99,12/25/19 10:36,"268 14th St, Los Angeles, CA 90001" -304350,Google Phone,1,600,12/26/19 16:22,"637 Dogwood St, New York City, NY 10001" -304351,Bose SoundSport Headphones,1,99.99,12/26/19 13:44,"89 Dogwood St, San Francisco, CA 94016" -304352,Wired Headphones,2,11.99,12/17/19 15:14,"620 13th St, Los Angeles, CA 90001" -304353,Wired Headphones,1,11.99,12/04/19 17:07,"853 Washington St, Boston, MA 02215" -304354,Flatscreen TV,1,300,12/31/19 20:25,"140 Spruce St, Atlanta, GA 30301" -304355,Macbook Pro Laptop,1,1700,12/05/19 20:12,"924 Cedar St, Atlanta, GA 30301" -304356,ThinkPad Laptop,1,999.99,12/06/19 21:22,"810 Hill St, Dallas, TX 75001" -304357,Lightning Charging Cable,1,14.95,12/13/19 08:24,"710 13th St, Atlanta, GA 30301" -304358,iPhone,1,700,12/07/19 13:45,"844 12th St, Austin, TX 73301" -304359,Apple Airpods Headphones,1,150,12/19/19 08:33,"858 Lincoln St, Dallas, TX 75001" -,,,,, -304360,Bose SoundSport Headphones,1,99.99,12/16/19 19:42,"671 6th St, New York City, NY 10001" -304361,AA Batteries (4-pack),1,3.84,12/28/19 23:58,"753 12th St, San Francisco, CA 94016" -304362,Lightning Charging Cable,1,14.95,12/24/19 21:22,"802 Highland St, Los Angeles, CA 90001" -304363,27in 4K Gaming Monitor,1,389.99,12/01/19 12:03,"400 7th St, Portland, OR 97035" -304364,Lightning Charging Cable,1,14.95,12/28/19 20:10,"519 Hickory St, Seattle, WA 98101" -304365,iPhone,1,700,12/18/19 11:40,"45 Lake St, San Francisco, CA 94016" -304366,Flatscreen TV,1,300,12/15/19 00:37,"164 Center St, Los Angeles, CA 90001" -304367,Apple Airpods Headphones,1,150,12/28/19 09:16,"574 Ridge St, Los Angeles, CA 90001" -304368,AA Batteries (4-pack),1,3.84,12/23/19 22:05,"991 Jackson St, Dallas, TX 75001" -304369,27in FHD Monitor,1,149.99,12/21/19 20:46,"608 Wilson St, Atlanta, GA 30301" -304370,LG Washing Machine,1,600.0,12/05/19 20:38,"363 14th St, New York City, NY 10001" -304371,34in Ultrawide Monitor,1,379.99,12/09/19 17:24,"982 Cedar St, Boston, MA 02215" -304372,AAA Batteries (4-pack),1,2.99,12/12/19 21:15,"493 Willow St, San Francisco, CA 94016" -304373,27in FHD Monitor,1,149.99,12/06/19 19:39,"605 Church St, Seattle, WA 98101" -304374,AA Batteries (4-pack),1,3.84,12/11/19 16:43,"123 Washington St, Atlanta, GA 30301" -304375,Lightning Charging Cable,1,14.95,12/13/19 00:38,"272 North St, Los Angeles, CA 90001" -304375,Lightning Charging Cable,1,14.95,12/13/19 00:38,"272 North St, Los Angeles, CA 90001" -304376,27in 4K Gaming Monitor,1,389.99,12/17/19 13:57,"569 Dogwood St, Los Angeles, CA 90001" -304377,27in 4K Gaming Monitor,1,389.99,12/31/19 16:01,"529 12th St, Atlanta, GA 30301" -304378,USB-C Charging Cable,1,11.95,12/03/19 08:56,"325 Jackson St, Atlanta, GA 30301" -304379,AA Batteries (4-pack),1,3.84,12/30/19 15:38,"322 Johnson St, San Francisco, CA 94016" -304380,Lightning Charging Cable,1,14.95,12/09/19 08:50,"653 Elm St, San Francisco, CA 94016" -304381,Lightning Charging Cable,1,14.95,12/03/19 20:15,"446 Jefferson St, Boston, MA 02215" -304382,Apple Airpods Headphones,1,150,12/27/19 17:47,"118 Wilson St, Dallas, TX 75001" -304383,Lightning Charging Cable,1,14.95,12/10/19 10:56,"493 Church St, San Francisco, CA 94016" -304384,AAA Batteries (4-pack),1,2.99,12/18/19 14:45,"763 Hickory St, Los Angeles, CA 90001" -304385,AAA Batteries (4-pack),1,2.99,12/26/19 12:31,"554 Sunset St, Seattle, WA 98101" -304386,AAA Batteries (4-pack),1,2.99,12/12/19 15:38,"154 Church St, San Francisco, CA 94016" -304387,iPhone,1,700,12/11/19 16:47,"661 Park St, San Francisco, CA 94016" -304388,Lightning Charging Cable,1,14.95,12/05/19 11:41,"141 10th St, San Francisco, CA 94016" -304389,27in 4K Gaming Monitor,1,389.99,12/23/19 09:32,"129 2nd St, Los Angeles, CA 90001" -304390,AAA Batteries (4-pack),2,2.99,12/13/19 11:35,"988 Spruce St, Portland, OR 97035" -304391,27in 4K Gaming Monitor,1,389.99,12/09/19 21:21,"923 Pine St, San Francisco, CA 94016" -304392,AAA Batteries (4-pack),1,2.99,12/03/19 21:02,"406 Spruce St, New York City, NY 10001" -304393,AAA Batteries (4-pack),2,2.99,12/12/19 21:14,"711 Dogwood St, Dallas, TX 75001" -304394,USB-C Charging Cable,1,11.95,12/19/19 11:57,"153 Willow St, Dallas, TX 75001" -304395,Lightning Charging Cable,1,14.95,12/09/19 18:52,"263 Highland St, Boston, MA 02215" -304396,Macbook Pro Laptop,1,1700,12/19/19 13:51,"683 West St, San Francisco, CA 94016" -304397,AAA Batteries (4-pack),1,2.99,12/23/19 21:59,"557 7th St, New York City, NY 10001" -304398,Wired Headphones,1,11.99,12/15/19 11:20,"43 River St, Dallas, TX 75001" -304399,Lightning Charging Cable,1,14.95,12/30/19 17:50,"725 Adams St, Los Angeles, CA 90001" -304400,Lightning Charging Cable,1,14.95,12/15/19 14:28,"530 8th St, Los Angeles, CA 90001" -304401,Apple Airpods Headphones,1,150,12/20/19 10:29,"699 South St, Austin, TX 73301" -304402,Flatscreen TV,1,300,12/04/19 17:27,"712 Chestnut St, Portland, OR 97035" -304403,AAA Batteries (4-pack),2,2.99,12/19/19 07:03,"70 River St, Atlanta, GA 30301" -304404,AAA Batteries (4-pack),1,2.99,12/18/19 11:15,"738 Madison St, Portland, ME 04101" -304405,USB-C Charging Cable,1,11.95,12/06/19 22:25,"732 Jefferson St, New York City, NY 10001" -304406,Lightning Charging Cable,1,14.95,12/31/19 22:02,"723 South St, San Francisco, CA 94016" -304407,Wired Headphones,1,11.99,12/23/19 10:20,"188 Madison St, Portland, ME 04101" -304408,Wired Headphones,1,11.99,12/01/19 05:10,"395 North St, New York City, NY 10001" -304409,Wired Headphones,2,11.99,12/14/19 14:53,"712 Chestnut St, New York City, NY 10001" -304410,ThinkPad Laptop,1,999.99,12/28/19 13:28,"214 Hickory St, Portland, ME 04101" -304411,Google Phone,1,600,12/12/19 12:47,"485 9th St, Atlanta, GA 30301" -304412,Macbook Pro Laptop,1,1700,12/15/19 19:40,"793 1st St, Atlanta, GA 30301" -304413,Wired Headphones,1,11.99,12/04/19 14:50,"834 9th St, Austin, TX 73301" -304414,AA Batteries (4-pack),1,3.84,12/16/19 20:00,"207 Park St, New York City, NY 10001" -304415,Google Phone,1,600,12/21/19 21:44,"55 Center St, San Francisco, CA 94016" -304416,USB-C Charging Cable,1,11.95,12/07/19 22:52,"226 13th St, Boston, MA 02215" -304417,Lightning Charging Cable,1,14.95,12/08/19 20:30,"342 Center St, New York City, NY 10001" -304418,ThinkPad Laptop,1,999.99,12/21/19 14:49,"686 Chestnut St, San Francisco, CA 94016" -304419,Apple Airpods Headphones,1,150,12/07/19 06:58,"512 Cedar St, Dallas, TX 75001" -304419,AA Batteries (4-pack),1,3.84,12/07/19 06:58,"512 Cedar St, Dallas, TX 75001" -304420,Bose SoundSport Headphones,1,99.99,12/17/19 08:31,"183 Pine St, New York City, NY 10001" -304421,20in Monitor,1,109.99,12/23/19 22:52,"782 11th St, Los Angeles, CA 90001" -304422,27in FHD Monitor,1,149.99,12/03/19 12:10,"388 Wilson St, Atlanta, GA 30301" -304423,AA Batteries (4-pack),4,3.84,12/31/19 21:45,"905 9th St, New York City, NY 10001" -304424,AA Batteries (4-pack),1,3.84,12/20/19 17:10,"465 Dogwood St, San Francisco, CA 94016" -304425,Apple Airpods Headphones,1,150,12/23/19 06:18,"897 Lincoln St, Atlanta, GA 30301" -304426,AAA Batteries (4-pack),2,2.99,12/19/19 21:18,"962 Johnson St, San Francisco, CA 94016" -304427,Wired Headphones,1,11.99,12/08/19 21:52,"194 5th St, Boston, MA 02215" -304428,AAA Batteries (4-pack),2,2.99,12/25/19 11:26,"99 Church St, Atlanta, GA 30301" -304429,Bose SoundSport Headphones,1,99.99,12/24/19 23:17,"379 South St, New York City, NY 10001" -304430,AAA Batteries (4-pack),1,2.99,12/15/19 14:14,"830 Adams St, Los Angeles, CA 90001" -304431,AA Batteries (4-pack),1,3.84,12/12/19 18:17,"955 Dogwood St, Los Angeles, CA 90001" -304432,Apple Airpods Headphones,1,150,12/30/19 14:30,"920 13th St, Seattle, WA 98101" -304433,Lightning Charging Cable,1,14.95,12/06/19 22:02,"460 Chestnut St, Los Angeles, CA 90001" -304434,Google Phone,1,600,12/14/19 22:35,"545 Forest St, Austin, TX 73301" -304435,AAA Batteries (4-pack),1,2.99,12/17/19 16:48,"67 River St, Los Angeles, CA 90001" -304436,AA Batteries (4-pack),1,3.84,12/25/19 19:51,"190 Meadow St, Boston, MA 02215" -304437,Lightning Charging Cable,1,14.95,12/18/19 10:31,"617 Willow St, Los Angeles, CA 90001" -304438,USB-C Charging Cable,1,11.95,12/12/19 11:10,"307 Wilson St, Portland, OR 97035" -304439,ThinkPad Laptop,1,999.99,12/01/19 08:24,"291 Cherry St, New York City, NY 10001" -304440,27in 4K Gaming Monitor,1,389.99,12/15/19 20:17,"635 Spruce St, Dallas, TX 75001" -304441,AA Batteries (4-pack),1,3.84,12/16/19 08:19,"854 Walnut St, San Francisco, CA 94016" -304442,Lightning Charging Cable,1,14.95,12/18/19 23:04,"332 Lincoln St, Dallas, TX 75001" -304443,27in FHD Monitor,1,149.99,12/10/19 09:54,"733 Park St, New York City, NY 10001" -304444,AAA Batteries (4-pack),1,2.99,12/23/19 16:31,"501 Lake St, New York City, NY 10001" -304445,Macbook Pro Laptop,1,1700,12/16/19 11:06,"550 Johnson St, San Francisco, CA 94016" -304446,Lightning Charging Cable,1,14.95,12/17/19 08:56,"806 Washington St, San Francisco, CA 94016" -304447,Lightning Charging Cable,1,14.95,12/07/19 18:52,"164 14th St, Los Angeles, CA 90001" -304447,Bose SoundSport Headphones,1,99.99,12/07/19 18:52,"164 14th St, Los Angeles, CA 90001" -304448,ThinkPad Laptop,1,999.99,12/05/19 13:08,"838 Washington St, New York City, NY 10001" -304449,Macbook Pro Laptop,1,1700,12/07/19 01:20,"164 Hickory St, Seattle, WA 98101" -304450,USB-C Charging Cable,1,11.95,12/28/19 13:18,"301 Pine St, Atlanta, GA 30301" -304451,USB-C Charging Cable,1,11.95,12/04/19 12:31,"921 Johnson St, Atlanta, GA 30301" -304452,AAA Batteries (4-pack),3,2.99,12/09/19 05:50,"516 Center St, Boston, MA 02215" -304453,Lightning Charging Cable,1,14.95,12/07/19 19:50,"67 Cedar St, Atlanta, GA 30301" -304454,27in 4K Gaming Monitor,1,389.99,12/08/19 20:49,"272 Washington St, Atlanta, GA 30301" -304455,Vareebadd Phone,1,400,12/24/19 12:46,"120 North St, New York City, NY 10001" -304455,USB-C Charging Cable,1,11.95,12/24/19 12:46,"120 North St, New York City, NY 10001" -304456,USB-C Charging Cable,1,11.95,12/25/19 06:05,"364 10th St, Boston, MA 02215" -304457,27in FHD Monitor,1,149.99,12/21/19 16:39,"612 Hickory St, Atlanta, GA 30301" -304458,AAA Batteries (4-pack),4,2.99,12/09/19 21:52,"732 Jackson St, Dallas, TX 75001" -304459,AAA Batteries (4-pack),2,2.99,12/16/19 11:59,"325 Hickory St, Atlanta, GA 30301" -304460,USB-C Charging Cable,1,11.95,12/17/19 12:54,"583 Pine St, San Francisco, CA 94016" -304461,Apple Airpods Headphones,1,150,12/06/19 14:50,"340 Hill St, Dallas, TX 75001" -304462,Apple Airpods Headphones,1,150,12/18/19 13:52,"570 Forest St, Los Angeles, CA 90001" -304463,AA Batteries (4-pack),1,3.84,12/19/19 10:29,"844 Wilson St, San Francisco, CA 94016" -304464,Bose SoundSport Headphones,1,99.99,12/05/19 18:07,"699 Church St, Dallas, TX 75001" -304465,iPhone,1,700,12/10/19 15:51,"238 River St, Seattle, WA 98101" -304465,Lightning Charging Cable,1,14.95,12/10/19 15:51,"238 River St, Seattle, WA 98101" -304466,20in Monitor,1,109.99,12/03/19 19:18,"716 Center St, Boston, MA 02215" -304467,Wired Headphones,2,11.99,12/09/19 20:04,"773 4th St, San Francisco, CA 94016" -304468,Wired Headphones,1,11.99,12/03/19 05:15,"620 North St, Los Angeles, CA 90001" -304469,Bose SoundSport Headphones,1,99.99,12/11/19 15:04,"409 Washington St, Atlanta, GA 30301" -304470,AAA Batteries (4-pack),1,2.99,12/03/19 07:07,"164 11th St, New York City, NY 10001" -304471,34in Ultrawide Monitor,1,379.99,12/20/19 16:43,"123 Walnut St, San Francisco, CA 94016" -304472,34in Ultrawide Monitor,1,379.99,12/26/19 10:45,"431 Ridge St, Boston, MA 02215" -304473,Apple Airpods Headphones,1,150,12/31/19 13:10,"993 6th St, Dallas, TX 75001" -304474,Bose SoundSport Headphones,1,99.99,12/11/19 21:50,"542 Maple St, Seattle, WA 98101" -304475,iPhone,1,700,12/30/19 15:13,"674 Jefferson St, San Francisco, CA 94016" -304476,Apple Airpods Headphones,1,150,12/31/19 17:47,"619 10th St, Seattle, WA 98101" -304477,Wired Headphones,2,11.99,12/04/19 17:55,"192 North St, Los Angeles, CA 90001" -304478,AAA Batteries (4-pack),2,2.99,12/07/19 22:02,"416 12th St, Dallas, TX 75001" -304479,USB-C Charging Cable,1,11.95,12/22/19 20:39,"890 North St, San Francisco, CA 94016" -304480,AAA Batteries (4-pack),2,2.99,12/15/19 18:47,"559 14th St, Dallas, TX 75001" -304481,Apple Airpods Headphones,1,150,12/04/19 00:07,"782 Pine St, Dallas, TX 75001" -304482,Wired Headphones,1,11.99,12/05/19 21:20,"771 Sunset St, Atlanta, GA 30301" -304483,Lightning Charging Cable,1,14.95,12/27/19 14:25,"969 Washington St, Boston, MA 02215" -304484,Bose SoundSport Headphones,1,99.99,12/27/19 14:27,"874 Willow St, Boston, MA 02215" -304485,ThinkPad Laptop,1,999.99,12/28/19 13:07,"390 Lake St, Dallas, TX 75001" -304486,Wired Headphones,1,11.99,12/16/19 11:04,"741 Highland St, Seattle, WA 98101" -304487,Wired Headphones,1,11.99,12/13/19 21:04,"320 10th St, Dallas, TX 75001" -304488,Bose SoundSport Headphones,1,99.99,12/28/19 21:10,"667 Walnut St, San Francisco, CA 94016" -304489,AA Batteries (4-pack),1,3.84,12/25/19 15:50,"810 10th St, San Francisco, CA 94016" -304490,Vareebadd Phone,1,400,12/08/19 20:51,"312 14th St, Seattle, WA 98101" -304491,Google Phone,1,600,12/29/19 15:23,"782 Wilson St, New York City, NY 10001" -304492,Wired Headphones,1,11.99,12/23/19 15:12,"321 9th St, Los Angeles, CA 90001" -304493,Bose SoundSport Headphones,1,99.99,12/22/19 04:03,"675 11th St, Atlanta, GA 30301" -304494,Lightning Charging Cable,1,14.95,12/31/19 19:57,"452 Highland St, Portland, ME 04101" -304495,27in 4K Gaming Monitor,1,389.99,12/10/19 15:33,"898 8th St, San Francisco, CA 94016" -304496,Lightning Charging Cable,1,14.95,12/16/19 10:20,"779 Cedar St, Seattle, WA 98101" -304497,Wired Headphones,1,11.99,12/10/19 01:28,"426 Center St, San Francisco, CA 94016" -304498,Bose SoundSport Headphones,1,99.99,12/23/19 14:09,"528 Pine St, San Francisco, CA 94016" -304499,Google Phone,1,600,12/09/19 07:13,"492 Willow St, Los Angeles, CA 90001" -304500,AA Batteries (4-pack),1,3.84,12/24/19 15:08,"880 1st St, Boston, MA 02215" -304501,Lightning Charging Cable,2,14.95,12/27/19 14:02,"543 Johnson St, New York City, NY 10001" -304501,ThinkPad Laptop,1,999.99,12/27/19 14:02,"543 Johnson St, New York City, NY 10001" -304502,Wired Headphones,1,11.99,12/05/19 21:05,"637 Maple St, Los Angeles, CA 90001" -304503,Apple Airpods Headphones,1,150,12/05/19 21:33,"658 Lakeview St, New York City, NY 10001" -304504,USB-C Charging Cable,1,11.95,12/05/19 10:46,"921 2nd St, Los Angeles, CA 90001" -304505,27in FHD Monitor,1,149.99,12/13/19 21:11,"551 Hill St, San Francisco, CA 94016" -304506,Lightning Charging Cable,1,14.95,12/08/19 17:17,"74 1st St, San Francisco, CA 94016" -304507,27in 4K Gaming Monitor,1,389.99,12/11/19 18:05,"304 Church St, Atlanta, GA 30301" -304508,Bose SoundSport Headphones,1,99.99,12/21/19 08:53,"63 Walnut St, San Francisco, CA 94016" -304509,Bose SoundSport Headphones,1,99.99,12/23/19 19:08,"56 Lakeview St, Dallas, TX 75001" -304510,20in Monitor,1,109.99,12/21/19 17:42,"542 13th St, Austin, TX 73301" -304511,Apple Airpods Headphones,1,150,12/21/19 09:29,"748 Walnut St, Los Angeles, CA 90001" -304512,Wired Headphones,1,11.99,12/17/19 07:03,"645 Meadow St, Los Angeles, CA 90001" -304513,Wired Headphones,1,11.99,12/03/19 19:13,"631 Wilson St, San Francisco, CA 94016" -304514,Wired Headphones,1,11.99,12/07/19 14:31,"535 6th St, New York City, NY 10001" -304515,AA Batteries (4-pack),1,3.84,12/11/19 16:31,"841 Elm St, San Francisco, CA 94016" -304516,USB-C Charging Cable,1,11.95,12/22/19 20:39,"970 6th St, Portland, OR 97035" -304517,AAA Batteries (4-pack),1,2.99,12/21/19 19:45,"245 Willow St, San Francisco, CA 94016" -304518,Apple Airpods Headphones,1,150,12/03/19 23:27,"682 Pine St, Atlanta, GA 30301" -304519,27in FHD Monitor,1,149.99,12/04/19 19:24,"174 Main St, Dallas, TX 75001" -304520,34in Ultrawide Monitor,1,379.99,12/04/19 10:32,"817 Ridge St, San Francisco, CA 94016" -304521,27in FHD Monitor,1,149.99,12/05/19 16:30,"644 Chestnut St, Seattle, WA 98101" -304522,Wired Headphones,1,11.99,12/17/19 19:04,"33 14th St, Los Angeles, CA 90001" -304523,iPhone,1,700,12/05/19 07:49,"467 Madison St, Dallas, TX 75001" -304524,Flatscreen TV,1,300,12/24/19 18:09,"143 Johnson St, Los Angeles, CA 90001" -304525,USB-C Charging Cable,1,11.95,12/18/19 20:11,"590 6th St, Los Angeles, CA 90001" -304526,Apple Airpods Headphones,1,150,12/27/19 20:00,"9 Wilson St, San Francisco, CA 94016" -304527,Lightning Charging Cable,1,14.95,12/16/19 14:23,"109 Highland St, Los Angeles, CA 90001" -304528,Wired Headphones,1,11.99,12/31/19 20:09,"789 Chestnut St, San Francisco, CA 94016" -304529,AAA Batteries (4-pack),1,2.99,12/07/19 22:32,"772 13th St, New York City, NY 10001" -304530,Wired Headphones,1,11.99,12/14/19 10:14,"420 6th St, Austin, TX 73301" -304531,Wired Headphones,1,11.99,12/27/19 00:44,"306 Jackson St, Los Angeles, CA 90001" -304531,Wired Headphones,1,11.99,12/27/19 00:44,"306 Jackson St, Los Angeles, CA 90001" -304532,Lightning Charging Cable,1,14.95,12/09/19 13:10,"95 Spruce St, Seattle, WA 98101" -304533,Apple Airpods Headphones,1,150,12/17/19 21:26,"526 Park St, Dallas, TX 75001" -304534,Wired Headphones,1,11.99,12/06/19 20:11,"445 Adams St, Los Angeles, CA 90001" -304535,Bose SoundSport Headphones,1,99.99,12/05/19 07:20,"113 Center St, San Francisco, CA 94016" -304536,Wired Headphones,1,11.99,12/12/19 12:45,"479 Lakeview St, San Francisco, CA 94016" -304537,Bose SoundSport Headphones,1,99.99,12/12/19 18:18,"325 Willow St, San Francisco, CA 94016" -304538,Bose SoundSport Headphones,1,99.99,12/19/19 19:37,"112 South St, Los Angeles, CA 90001" -304539,Lightning Charging Cable,1,14.95,12/10/19 18:53,"663 Highland St, Los Angeles, CA 90001" -304540,27in FHD Monitor,1,149.99,12/03/19 01:23,"857 Cedar St, Boston, MA 02215" -304541,AA Batteries (4-pack),2,3.84,12/22/19 16:01,"592 South St, Los Angeles, CA 90001" -304542,iPhone,1,700,12/12/19 09:57,"231 Lake St, Atlanta, GA 30301" -304543,Apple Airpods Headphones,1,150,12/05/19 01:22,"695 14th St, Seattle, WA 98101" -304544,Wired Headphones,1,11.99,12/29/19 05:43,"281 13th St, Boston, MA 02215" -304545,Wired Headphones,1,11.99,12/09/19 23:27,"282 13th St, Portland, ME 04101" -304546,AAA Batteries (4-pack),1,2.99,12/03/19 12:12,"590 10th St, New York City, NY 10001" -304547,Bose SoundSport Headphones,1,99.99,12/07/19 14:43,"305 11th St, Los Angeles, CA 90001" -304548,AA Batteries (4-pack),1,3.84,12/30/19 09:56,"69 7th St, Atlanta, GA 30301" -304549,Lightning Charging Cable,1,14.95,12/24/19 18:28,"113 Elm St, Dallas, TX 75001" -304550,Lightning Charging Cable,1,14.95,12/02/19 15:35,"393 Spruce St, Los Angeles, CA 90001" -304551,AAA Batteries (4-pack),1,2.99,12/19/19 16:41,"783 Ridge St, New York City, NY 10001" -304552,AA Batteries (4-pack),1,3.84,12/16/19 11:07,"692 Walnut St, New York City, NY 10001" -304553,27in FHD Monitor,1,149.99,12/25/19 19:30,"512 Pine St, San Francisco, CA 94016" -304554,USB-C Charging Cable,1,11.95,12/19/19 20:40,"208 4th St, San Francisco, CA 94016" -304555,AA Batteries (4-pack),2,3.84,12/31/19 10:12,"252 Hill St, Boston, MA 02215" -304556,Lightning Charging Cable,2,14.95,12/28/19 11:00,"120 10th St, Atlanta, GA 30301" -304557,Macbook Pro Laptop,1,1700,12/17/19 17:59,"932 12th St, San Francisco, CA 94016" -304558,Apple Airpods Headphones,1,150,12/26/19 16:01,"558 Elm St, Los Angeles, CA 90001" -304559,AAA Batteries (4-pack),1,2.99,12/06/19 09:24,"271 8th St, Seattle, WA 98101" -304560,Lightning Charging Cable,1,14.95,12/24/19 19:16,"136 7th St, New York City, NY 10001" -304561,27in FHD Monitor,1,149.99,12/06/19 20:30,"781 Highland St, Los Angeles, CA 90001" -304562,Lightning Charging Cable,1,14.95,12/15/19 15:43,"88 Walnut St, Austin, TX 73301" -304563,AAA Batteries (4-pack),1,2.99,12/15/19 23:39,"655 Jefferson St, Atlanta, GA 30301" -304564,AA Batteries (4-pack),1,3.84,12/22/19 20:29,"268 Wilson St, Seattle, WA 98101" -304565,27in 4K Gaming Monitor,1,389.99,12/24/19 15:56,"28 6th St, New York City, NY 10001" -304566,Bose SoundSport Headphones,1,99.99,12/20/19 14:00,"861 Lake St, Portland, OR 97035" -304567,AAA Batteries (4-pack),1,2.99,12/23/19 14:59,"641 Wilson St, Austin, TX 73301" -304568,iPhone,1,700,12/10/19 16:25,"672 Dogwood St, San Francisco, CA 94016" -304568,Lightning Charging Cable,1,14.95,12/10/19 16:25,"672 Dogwood St, San Francisco, CA 94016" -304569,iPhone,1,700,12/15/19 08:50,"519 Main St, Dallas, TX 75001" -304570,USB-C Charging Cable,1,11.95,12/09/19 11:35,"602 Sunset St, San Francisco, CA 94016" -304571,34in Ultrawide Monitor,1,379.99,12/14/19 19:10,"888 Johnson St, New York City, NY 10001" -304572,Wired Headphones,1,11.99,12/22/19 21:29,"8 Willow St, Los Angeles, CA 90001" -304573,27in FHD Monitor,1,149.99,12/13/19 12:06,"919 West St, New York City, NY 10001" -304574,27in 4K Gaming Monitor,1,389.99,12/05/19 08:30,"151 Center St, Atlanta, GA 30301" -304574,AA Batteries (4-pack),1,3.84,12/05/19 08:30,"151 Center St, Atlanta, GA 30301" -304575,AA Batteries (4-pack),1,3.84,12/30/19 17:45,"843 Main St, San Francisco, CA 94016" -304576,USB-C Charging Cable,2,11.95,12/20/19 11:33,"45 Forest St, San Francisco, CA 94016" -304577,iPhone,1,700,12/08/19 09:59,"775 Elm St, San Francisco, CA 94016" -304578,AAA Batteries (4-pack),1,2.99,12/20/19 17:35,"434 Maple St, San Francisco, CA 94016" -304579,Flatscreen TV,1,300,12/10/19 01:58,"792 Jefferson St, Los Angeles, CA 90001" -304580,Apple Airpods Headphones,1,150,12/19/19 01:18,"199 Pine St, Los Angeles, CA 90001" -304581,AAA Batteries (4-pack),2,2.99,12/07/19 16:23,"14 Jackson St, New York City, NY 10001" -304582,USB-C Charging Cable,1,11.95,12/07/19 10:19,"699 Madison St, Austin, TX 73301" -304583,27in 4K Gaming Monitor,1,389.99,12/20/19 08:59,"927 Dogwood St, Boston, MA 02215" -304584,Lightning Charging Cable,1,14.95,12/12/19 07:43,"530 Dogwood St, Dallas, TX 75001" -304585,AAA Batteries (4-pack),3,2.99,12/23/19 11:45,"870 Madison St, San Francisco, CA 94016" -304586,Apple Airpods Headphones,1,150,12/15/19 10:50,"120 2nd St, New York City, NY 10001" -304587,34in Ultrawide Monitor,1,379.99,12/02/19 22:14,"150 Main St, New York City, NY 10001" -304588,Macbook Pro Laptop,1,1700,12/07/19 07:35,"16 Walnut St, Portland, ME 04101" -304589,Bose SoundSport Headphones,1,99.99,12/25/19 15:34,"593 River St, Dallas, TX 75001" -304590,AAA Batteries (4-pack),2,2.99,12/07/19 15:59,"819 West St, Los Angeles, CA 90001" -304591,USB-C Charging Cable,1,11.95,12/20/19 13:15,"975 Park St, Boston, MA 02215" -304592,USB-C Charging Cable,1,11.95,12/18/19 19:16,"213 Washington St, Los Angeles, CA 90001" -304593,27in 4K Gaming Monitor,1,389.99,12/12/19 10:06,"97 5th St, Austin, TX 73301" -304594,Lightning Charging Cable,1,14.95,12/07/19 09:35,"289 Park St, Boston, MA 02215" -304595,USB-C Charging Cable,1,11.95,12/15/19 11:20,"492 Forest St, Dallas, TX 75001" -304596,34in Ultrawide Monitor,1,379.99,12/12/19 22:42,"496 8th St, Atlanta, GA 30301" -304597,Wired Headphones,1,11.99,12/31/19 16:23,"498 Sunset St, Dallas, TX 75001" -304598,AA Batteries (4-pack),2,3.84,12/17/19 11:45,"236 Hill St, Los Angeles, CA 90001" -304599,AA Batteries (4-pack),2,3.84,12/01/19 11:09,"458 Forest St, Los Angeles, CA 90001" -304600,AAA Batteries (4-pack),3,2.99,12/16/19 11:03,"181 Park St, Los Angeles, CA 90001" -304601,20in Monitor,1,109.99,12/31/19 19:20,"965 Lake St, Los Angeles, CA 90001" -304602,Google Phone,1,600,12/17/19 21:23,"762 Dogwood St, New York City, NY 10001" -304603,AAA Batteries (4-pack),1,2.99,12/02/19 21:56,"664 13th St, Los Angeles, CA 90001" -304604,34in Ultrawide Monitor,1,379.99,12/30/19 13:50,"737 11th St, Austin, TX 73301" -304605,AA Batteries (4-pack),2,3.84,12/14/19 17:41,"547 Park St, Atlanta, GA 30301" -304606,Lightning Charging Cable,1,14.95,12/24/19 18:21,"278 Park St, Dallas, TX 75001" -304607,USB-C Charging Cable,1,11.95,12/06/19 23:44,"265 Johnson St, Los Angeles, CA 90001" -304608,AAA Batteries (4-pack),2,2.99,12/31/19 09:21,"752 Dogwood St, Portland, OR 97035" -304609,Lightning Charging Cable,1,14.95,12/24/19 17:38,"159 Chestnut St, Austin, TX 73301" -304610,AA Batteries (4-pack),1,3.84,12/18/19 10:15,"222 Center St, Portland, OR 97035" -304611,27in 4K Gaming Monitor,1,389.99,12/25/19 13:27,"659 Cedar St, Atlanta, GA 30301" -304612,AAA Batteries (4-pack),1,2.99,12/26/19 17:09,"634 West St, Portland, OR 97035" -304613,Lightning Charging Cable,1,14.95,12/14/19 10:13,"585 Elm St, New York City, NY 10001" -304614,Lightning Charging Cable,1,14.95,12/04/19 12:26,"984 13th St, Portland, OR 97035" -304615,AA Batteries (4-pack),1,3.84,12/10/19 21:10,"14 Lakeview St, New York City, NY 10001" -304616,Flatscreen TV,1,300,12/12/19 10:10,"888 River St, San Francisco, CA 94016" -304617,27in 4K Gaming Monitor,1,389.99,12/12/19 21:08,"731 4th St, Los Angeles, CA 90001" -304618,AA Batteries (4-pack),1,3.84,12/17/19 08:27,"420 Sunset St, Los Angeles, CA 90001" -304619,Vareebadd Phone,1,400,12/07/19 16:35,"881 North St, Seattle, WA 98101" -304619,USB-C Charging Cable,1,11.95,12/07/19 16:35,"881 North St, Seattle, WA 98101" -304620,27in 4K Gaming Monitor,1,389.99,12/12/19 22:05,"679 7th St, Los Angeles, CA 90001" -304621,Lightning Charging Cable,1,14.95,12/15/19 22:04,"537 Church St, Los Angeles, CA 90001" -304622,AAA Batteries (4-pack),1,2.99,12/18/19 09:34,"302 5th St, Atlanta, GA 30301" -304623,USB-C Charging Cable,2,11.95,12/19/19 23:53,"57 14th St, San Francisco, CA 94016" -304624,Lightning Charging Cable,1,14.95,12/04/19 21:06,"104 Jefferson St, San Francisco, CA 94016" -304625,AA Batteries (4-pack),1,3.84,12/04/19 10:48,"83 1st St, Dallas, TX 75001" -304626,Google Phone,1,600,12/27/19 09:30,"68 7th St, New York City, NY 10001" -304627,iPhone,1,700,12/14/19 11:40,"254 6th St, Dallas, TX 75001" -304628,Macbook Pro Laptop,1,1700,12/24/19 11:30,"87 Lincoln St, San Francisco, CA 94016" -304628,AAA Batteries (4-pack),1,2.99,12/24/19 11:30,"87 Lincoln St, San Francisco, CA 94016" -304629,20in Monitor,1,109.99,12/20/19 11:16,"88 Johnson St, San Francisco, CA 94016" -304630,Apple Airpods Headphones,1,150,12/17/19 22:56,"79 Johnson St, Atlanta, GA 30301" -304631,27in FHD Monitor,1,149.99,12/22/19 00:09,"50 13th St, Los Angeles, CA 90001" -304632,27in FHD Monitor,1,149.99,12/12/19 08:08,"382 Wilson St, San Francisco, CA 94016" -304633,Bose SoundSport Headphones,1,99.99,12/11/19 22:50,"404 River St, San Francisco, CA 94016" -304634,Lightning Charging Cable,1,14.95,12/28/19 11:23,"787 Maple St, Seattle, WA 98101" -304635,20in Monitor,1,109.99,12/08/19 05:01,"413 Spruce St, San Francisco, CA 94016" -304636,Apple Airpods Headphones,1,150,12/08/19 20:06,"986 Wilson St, New York City, NY 10001" -304637,34in Ultrawide Monitor,1,379.99,12/20/19 17:08,"811 Walnut St, San Francisco, CA 94016" -304638,USB-C Charging Cable,1,11.95,12/10/19 14:41,"17 9th St, Seattle, WA 98101" -304639,27in 4K Gaming Monitor,1,389.99,12/23/19 18:32,"965 Highland St, San Francisco, CA 94016" -304640,USB-C Charging Cable,1,11.95,12/10/19 00:41,"855 Pine St, New York City, NY 10001" -304641,Google Phone,1,600,12/26/19 17:14,"230 Adams St, Los Angeles, CA 90001" -304642,AAA Batteries (4-pack),1,2.99,12/24/19 06:03,"280 14th St, Seattle, WA 98101" -304643,27in 4K Gaming Monitor,1,389.99,12/01/19 08:33,"697 River St, Boston, MA 02215" -304644,ThinkPad Laptop,1,999.99,12/09/19 06:40,"988 River St, New York City, NY 10001" -304644,AAA Batteries (4-pack),2,2.99,12/09/19 06:40,"988 River St, New York City, NY 10001" -304645,27in 4K Gaming Monitor,1,389.99,12/30/19 12:29,"672 Maple St, Los Angeles, CA 90001" -304646,Bose SoundSport Headphones,1,99.99,12/20/19 07:16,"312 Madison St, Portland, OR 97035" -304647,Bose SoundSport Headphones,1,99.99,12/24/19 16:28,"273 Main St, New York City, NY 10001" -304648,AA Batteries (4-pack),1,3.84,12/09/19 20:46,"583 Pine St, San Francisco, CA 94016" -304649,34in Ultrawide Monitor,1,379.99,12/20/19 15:08,"768 Church St, Seattle, WA 98101" -304650,USB-C Charging Cable,1,11.95,12/13/19 06:17,"835 Spruce St, Dallas, TX 75001" -304651,AAA Batteries (4-pack),1,2.99,12/22/19 10:16,"438 Washington St, Los Angeles, CA 90001" -304652,AA Batteries (4-pack),2,3.84,12/26/19 19:50,"747 13th St, Los Angeles, CA 90001" -304653,ThinkPad Laptop,1,999.99,12/19/19 22:11,"464 10th St, San Francisco, CA 94016" -304654,AAA Batteries (4-pack),2,2.99,12/12/19 12:25,"287 Center St, Dallas, TX 75001" -304655,AA Batteries (4-pack),1,3.84,12/06/19 18:39,"998 Elm St, Portland, OR 97035" -304656,Lightning Charging Cable,1,14.95,12/27/19 19:50,"711 Washington St, Portland, OR 97035" -304657,AA Batteries (4-pack),3,3.84,12/05/19 23:04,"58 Hill St, Boston, MA 02215" -304658,Macbook Pro Laptop,1,1700,12/11/19 23:17,"802 Wilson St, San Francisco, CA 94016" -304659,AAA Batteries (4-pack),1,2.99,12/17/19 10:13,"185 Chestnut St, Austin, TX 73301" -304660,Lightning Charging Cable,1,14.95,12/24/19 18:53,"396 6th St, Portland, OR 97035" -304661,34in Ultrawide Monitor,1,379.99,12/14/19 09:06,"677 Spruce St, San Francisco, CA 94016" -304662,USB-C Charging Cable,1,11.95,12/28/19 20:49,"306 7th St, Seattle, WA 98101" -304663,27in 4K Gaming Monitor,1,389.99,12/01/19 10:26,"425 River St, New York City, NY 10001" -304664,Bose SoundSport Headphones,1,99.99,12/28/19 07:06,"402 7th St, New York City, NY 10001" -304665,34in Ultrawide Monitor,1,379.99,12/03/19 21:55,"983 Center St, Dallas, TX 75001" -304666,USB-C Charging Cable,1,11.95,12/08/19 08:53,"654 Adams St, Portland, OR 97035" -304667,USB-C Charging Cable,1,11.95,12/16/19 12:25,"201 4th St, Los Angeles, CA 90001" -304668,USB-C Charging Cable,1,11.95,12/13/19 06:08,"672 12th St, Los Angeles, CA 90001" -304669,Vareebadd Phone,1,400,12/12/19 11:37,"421 11th St, Los Angeles, CA 90001" -304670,Wired Headphones,1,11.99,12/23/19 19:55,"931 River St, Atlanta, GA 30301" -304671,Lightning Charging Cable,1,14.95,12/09/19 10:26,"171 8th St, Los Angeles, CA 90001" -304672,ThinkPad Laptop,1,999.99,12/20/19 09:19,"903 12th St, New York City, NY 10001" -304673,AA Batteries (4-pack),2,3.84,12/23/19 20:08,"355 West St, Los Angeles, CA 90001" -304674,iPhone,1,700,12/03/19 17:24,"964 Meadow St, New York City, NY 10001" -304674,Lightning Charging Cable,1,14.95,12/03/19 17:24,"964 Meadow St, New York City, NY 10001" -304675,AAA Batteries (4-pack),1,2.99,12/19/19 20:08,"148 Johnson St, San Francisco, CA 94016" -304676,AA Batteries (4-pack),1,3.84,12/04/19 23:46,"423 West St, New York City, NY 10001" -304677,27in FHD Monitor,1,149.99,12/13/19 20:02,"95 Sunset St, Seattle, WA 98101" -304678,Bose SoundSport Headphones,1,99.99,12/22/19 21:37,"628 Spruce St, Portland, ME 04101" -304679,27in 4K Gaming Monitor,1,389.99,12/26/19 14:12,"981 Spruce St, Seattle, WA 98101" -304680,Wired Headphones,1,11.99,12/28/19 11:59,"914 Spruce St, Seattle, WA 98101" -304681,Apple Airpods Headphones,1,150,12/26/19 09:26,"483 1st St, Dallas, TX 75001" -304682,Wired Headphones,1,11.99,12/08/19 20:22,"146 4th St, Dallas, TX 75001" -304683,AAA Batteries (4-pack),1,2.99,12/18/19 19:53,"51 Lincoln St, Dallas, TX 75001" -304684,Google Phone,1,600,12/20/19 09:57,"378 River St, Los Angeles, CA 90001" -304684,USB-C Charging Cable,1,11.95,12/20/19 09:57,"378 River St, Los Angeles, CA 90001" -304684,Wired Headphones,1,11.99,12/20/19 09:57,"378 River St, Los Angeles, CA 90001" -304685,ThinkPad Laptop,1,999.99,12/31/19 09:20,"464 8th St, San Francisco, CA 94016" -304686,AAA Batteries (4-pack),1,2.99,12/12/19 10:56,"159 11th St, New York City, NY 10001" -304687,Wired Headphones,1,11.99,12/05/19 12:18,"996 Adams St, New York City, NY 10001" -304688,Bose SoundSport Headphones,1,99.99,12/13/19 18:30,"294 Jefferson St, San Francisco, CA 94016" -304689,Lightning Charging Cable,1,14.95,12/05/19 09:39,"730 Lakeview St, Austin, TX 73301" -304690,ThinkPad Laptop,1,999.99,12/25/19 17:05,"434 5th St, San Francisco, CA 94016" -304691,27in 4K Gaming Monitor,1,389.99,12/29/19 11:43,"118 Main St, San Francisco, CA 94016" -304692,iPhone,1,700,12/19/19 09:45,"945 Hickory St, Boston, MA 02215" -304693,Macbook Pro Laptop,1,1700,12/05/19 10:30,"566 Jefferson St, Boston, MA 02215" -304694,Bose SoundSport Headphones,1,99.99,12/19/19 06:40,"661 11th St, San Francisco, CA 94016" -304695,34in Ultrawide Monitor,1,379.99,12/18/19 21:52,"438 12th St, San Francisco, CA 94016" -304696,AAA Batteries (4-pack),7,2.99,12/02/19 21:21,"393 West St, Atlanta, GA 30301" -304697,AAA Batteries (4-pack),2,2.99,12/09/19 11:11,"311 2nd St, Los Angeles, CA 90001" -304698,Wired Headphones,1,11.99,12/15/19 08:22,"158 Dogwood St, Atlanta, GA 30301" -304699,Bose SoundSport Headphones,1,99.99,12/09/19 23:58,"996 13th St, San Francisco, CA 94016" -304700,USB-C Charging Cable,1,11.95,12/22/19 12:42,"485 7th St, Atlanta, GA 30301" -304701,Apple Airpods Headphones,1,150,12/11/19 13:24,"442 Walnut St, New York City, NY 10001" -304702,AA Batteries (4-pack),4,3.84,12/29/19 17:04,"45 5th St, Boston, MA 02215" -304702,AA Batteries (4-pack),1,3.84,12/29/19 17:04,"45 5th St, Boston, MA 02215" -304703,AA Batteries (4-pack),1,3.84,12/22/19 16:39,"821 Wilson St, Los Angeles, CA 90001" -304704,34in Ultrawide Monitor,1,379.99,12/10/19 23:47,"706 1st St, San Francisco, CA 94016" -304705,Google Phone,1,600,12/13/19 22:39,"757 Park St, Los Angeles, CA 90001" -304706,Lightning Charging Cable,1,14.95,12/28/19 12:40,"857 11th St, Seattle, WA 98101" -304707,Wired Headphones,1,11.99,12/25/19 20:17,"707 Cherry St, Portland, ME 04101" -304708,Macbook Pro Laptop,1,1700,12/01/19 13:59,"619 Hickory St, Los Angeles, CA 90001" -304709,AAA Batteries (4-pack),2,2.99,12/10/19 22:52,"123 14th St, New York City, NY 10001" -304710,20in Monitor,1,109.99,12/07/19 17:30,"872 Lakeview St, Austin, TX 73301" -304711,Lightning Charging Cable,1,14.95,12/05/19 14:31,"854 7th St, Seattle, WA 98101" -304712,Bose SoundSport Headphones,1,99.99,12/20/19 18:16,"939 Center St, Boston, MA 02215" -304713,Flatscreen TV,1,300,12/06/19 10:47,"796 Adams St, New York City, NY 10001" -304714,AAA Batteries (4-pack),1,2.99,12/01/19 18:37,"852 Elm St, San Francisco, CA 94016" -304715,USB-C Charging Cable,1,11.95,12/29/19 01:53,"847 West St, Dallas, TX 75001" -304716,iPhone,1,700,12/27/19 18:41,"81 7th St, San Francisco, CA 94016" -304717,AAA Batteries (4-pack),2,2.99,12/28/19 10:24,"331 Elm St, Portland, OR 97035" -304718,iPhone,1,700,12/18/19 00:07,"860 Madison St, Portland, OR 97035" -304719,Lightning Charging Cable,1,14.95,12/15/19 20:11,"153 13th St, San Francisco, CA 94016" -304720,20in Monitor,1,109.99,12/09/19 22:45,"852 Lakeview St, New York City, NY 10001" -304721,Lightning Charging Cable,1,14.95,12/10/19 18:22,"294 Church St, Seattle, WA 98101" -304722,Lightning Charging Cable,1,14.95,12/19/19 04:23,"403 1st St, San Francisco, CA 94016" -304723,AA Batteries (4-pack),1,3.84,12/03/19 08:42,"851 Lakeview St, New York City, NY 10001" -304724,27in FHD Monitor,1,149.99,12/28/19 10:42,"509 Lakeview St, Boston, MA 02215" -304724,USB-C Charging Cable,1,11.95,12/28/19 10:42,"509 Lakeview St, Boston, MA 02215" -304725,AA Batteries (4-pack),1,3.84,12/01/19 14:45,"209 South St, New York City, NY 10001" -304726,AAA Batteries (4-pack),2,2.99,12/23/19 21:47,"850 Elm St, Austin, TX 73301" -304727,USB-C Charging Cable,1,11.95,12/21/19 21:22,"816 12th St, Portland, OR 97035" -304728,AAA Batteries (4-pack),1,2.99,12/24/19 09:39,"697 Lincoln St, Los Angeles, CA 90001" -304729,Apple Airpods Headphones,1,150,12/23/19 14:16,"823 Jackson St, Los Angeles, CA 90001" -304730,34in Ultrawide Monitor,1,379.99,12/20/19 19:40,"454 Forest St, San Francisco, CA 94016" -304731,Lightning Charging Cable,1,14.95,12/03/19 21:06,"711 Adams St, Boston, MA 02215" -304732,USB-C Charging Cable,1,11.95,12/06/19 08:05,"134 South St, New York City, NY 10001" -304733,Google Phone,1,600,12/26/19 02:04,"854 Dogwood St, Austin, TX 73301" -304734,iPhone,1,700,12/04/19 22:30,"266 6th St, Dallas, TX 75001" -304735,AA Batteries (4-pack),1,3.84,12/31/19 01:11,"90 Hill St, Atlanta, GA 30301" -304736,Apple Airpods Headphones,1,150,12/04/19 20:00,"10 Pine St, San Francisco, CA 94016" -304737,AA Batteries (4-pack),1,3.84,12/02/19 16:18,"719 14th St, Los Angeles, CA 90001" -304738,Wired Headphones,1,11.99,12/05/19 22:06,"593 Ridge St, Austin, TX 73301" -304739,iPhone,1,700,12/20/19 14:24,"479 Adams St, Dallas, TX 75001" -304740,iPhone,1,700,12/21/19 11:55,"496 Dogwood St, Atlanta, GA 30301" -304741,Wired Headphones,1,11.99,12/05/19 13:47,"895 Hickory St, Boston, MA 02215" -304742,iPhone,1,700,12/25/19 14:27,"354 Lincoln St, San Francisco, CA 94016" -304742,Lightning Charging Cable,1,14.95,12/25/19 14:27,"354 Lincoln St, San Francisco, CA 94016" -304742,Wired Headphones,1,11.99,12/25/19 14:27,"354 Lincoln St, San Francisco, CA 94016" -304743,AA Batteries (4-pack),2,3.84,12/11/19 09:54,"468 8th St, New York City, NY 10001" -304744,Flatscreen TV,1,300,12/13/19 20:34,"64 7th St, New York City, NY 10001" -304745,Apple Airpods Headphones,1,150,12/11/19 07:05,"288 6th St, San Francisco, CA 94016" -304746,AAA Batteries (4-pack),1,2.99,12/10/19 19:41,"192 Lakeview St, Dallas, TX 75001" -304747,Wired Headphones,1,11.99,12/21/19 13:42,"206 Dogwood St, Atlanta, GA 30301" -304748,AAA Batteries (4-pack),2,2.99,12/26/19 16:04,"614 Dogwood St, Boston, MA 02215" -304749,Lightning Charging Cable,1,14.95,12/23/19 21:39,"590 14th St, New York City, NY 10001" -304750,Lightning Charging Cable,1,14.95,12/09/19 21:44,"12 2nd St, Atlanta, GA 30301" -304751,Wired Headphones,1,11.99,12/09/19 07:43,"789 Willow St, Los Angeles, CA 90001" -304752,AA Batteries (4-pack),1,3.84,12/13/19 23:52,"762 10th St, Austin, TX 73301" -304753,LG Washing Machine,1,600.0,12/30/19 22:48,"358 Forest St, San Francisco, CA 94016" -304754,iPhone,1,700,12/11/19 11:44,"661 River St, Austin, TX 73301" -304754,Lightning Charging Cable,1,14.95,12/11/19 11:44,"661 River St, Austin, TX 73301" -304755,iPhone,1,700,12/05/19 20:15,"685 Hickory St, Seattle, WA 98101" -304756,Wired Headphones,2,11.99,12/28/19 09:54,"518 Wilson St, Portland, OR 97035" -304757,Macbook Pro Laptop,1,1700,12/25/19 19:18,"493 10th St, Austin, TX 73301" -304758,AA Batteries (4-pack),3,3.84,12/28/19 20:04,"776 Washington St, New York City, NY 10001" -304759,AAA Batteries (4-pack),1,2.99,12/24/19 01:31,"565 Washington St, Seattle, WA 98101" -304760,Wired Headphones,1,11.99,12/23/19 13:53,"471 Maple St, Portland, OR 97035" -304761,USB-C Charging Cable,1,11.95,12/22/19 09:51,"506 8th St, San Francisco, CA 94016" -304761,USB-C Charging Cable,1,11.95,12/22/19 09:51,"506 8th St, San Francisco, CA 94016" -304762,AAA Batteries (4-pack),2,2.99,12/24/19 21:59,"588 4th St, Boston, MA 02215" -304763,Apple Airpods Headphones,1,150,12/20/19 11:40,"894 River St, San Francisco, CA 94016" -304764,Apple Airpods Headphones,1,150,12/30/19 10:07,"503 Highland St, San Francisco, CA 94016" -304765,AAA Batteries (4-pack),4,2.99,12/11/19 19:15,"549 5th St, San Francisco, CA 94016" -304766,Wired Headphones,1,11.99,12/23/19 10:08,"882 Ridge St, San Francisco, CA 94016" -304767,Macbook Pro Laptop,1,1700,12/18/19 18:33,"869 7th St, Seattle, WA 98101" -304768,USB-C Charging Cable,1,11.95,12/23/19 13:11,"316 Hickory St, Dallas, TX 75001" -304769,Apple Airpods Headphones,1,150,12/14/19 16:01,"854 South St, Atlanta, GA 30301" -304770,USB-C Charging Cable,1,11.95,12/15/19 23:55,"442 Main St, Los Angeles, CA 90001" -304771,Flatscreen TV,1,300,12/20/19 14:09,"774 2nd St, Los Angeles, CA 90001" -304772,34in Ultrawide Monitor,1,379.99,12/08/19 17:19,"803 Dogwood St, Boston, MA 02215" -304773,27in FHD Monitor,1,149.99,12/28/19 13:37,"194 North St, San Francisco, CA 94016" -304774,USB-C Charging Cable,1,11.95,12/05/19 21:24,"190 2nd St, Dallas, TX 75001" -304774,AAA Batteries (4-pack),1,2.99,12/05/19 21:24,"190 2nd St, Dallas, TX 75001" -304775,27in 4K Gaming Monitor,1,389.99,12/05/19 14:16,"122 Meadow St, San Francisco, CA 94016" -304776,34in Ultrawide Monitor,1,379.99,12/08/19 15:00,"957 Sunset St, San Francisco, CA 94016" -304777,AA Batteries (4-pack),1,3.84,12/21/19 11:00,"568 Hill St, Boston, MA 02215" -304778,AAA Batteries (4-pack),1,2.99,12/29/19 10:29,"305 Lake St, Los Angeles, CA 90001" -304779,Bose SoundSport Headphones,1,99.99,12/10/19 05:01,"315 Adams St, Los Angeles, CA 90001" -304780,AAA Batteries (4-pack),4,2.99,12/17/19 22:33,"662 Jackson St, San Francisco, CA 94016" -304781,Bose SoundSport Headphones,1,99.99,12/29/19 19:47,"746 Adams St, Boston, MA 02215" -304782,AAA Batteries (4-pack),4,2.99,12/11/19 22:07,"289 8th St, Austin, TX 73301" -304783,27in 4K Gaming Monitor,1,389.99,12/11/19 08:49,"100 Center St, San Francisco, CA 94016" -304784,AAA Batteries (4-pack),2,2.99,12/28/19 20:26,"384 Jackson St, New York City, NY 10001" -304784,Lightning Charging Cable,1,14.95,12/28/19 20:26,"384 Jackson St, New York City, NY 10001" -304785,Lightning Charging Cable,1,14.95,12/24/19 15:36,"342 Madison St, New York City, NY 10001" -304786,AAA Batteries (4-pack),3,2.99,12/30/19 19:51,"358 Forest St, Boston, MA 02215" -304787,27in 4K Gaming Monitor,1,389.99,12/23/19 11:40,"948 Elm St, San Francisco, CA 94016" -304788,Wired Headphones,1,11.99,12/14/19 10:13,"740 West St, New York City, NY 10001" -304789,AA Batteries (4-pack),1,3.84,12/04/19 17:02,"961 Church St, Dallas, TX 75001" -304790,USB-C Charging Cable,1,11.95,12/31/19 12:21,"467 Madison St, Seattle, WA 98101" -304791,USB-C Charging Cable,1,11.95,12/14/19 17:04,"825 Lincoln St, San Francisco, CA 94016" -304792,27in 4K Gaming Monitor,1,389.99,12/08/19 07:22,"663 6th St, Austin, TX 73301" -304793,USB-C Charging Cable,1,11.95,12/26/19 20:12,"178 Willow St, Atlanta, GA 30301" -304794,Lightning Charging Cable,1,14.95,12/04/19 16:06,"121 10th St, San Francisco, CA 94016" -304795,Flatscreen TV,1,300,12/16/19 19:41,"50 River St, New York City, NY 10001" -304796,Macbook Pro Laptop,1,1700,12/18/19 11:15,"218 Pine St, San Francisco, CA 94016" -304797,Lightning Charging Cable,1,14.95,12/30/19 10:50,"820 Cherry St, Los Angeles, CA 90001" -304798,Wired Headphones,1,11.99,12/26/19 20:43,"553 Ridge St, San Francisco, CA 94016" -304799,Wired Headphones,1,11.99,12/12/19 17:28,"791 6th St, Austin, TX 73301" -304800,Wired Headphones,1,11.99,12/18/19 18:27,"63 Pine St, Seattle, WA 98101" -304801,Bose SoundSport Headphones,2,99.99,12/23/19 19:38,"714 Main St, San Francisco, CA 94016" -304802,Google Phone,1,600,12/27/19 13:14,"569 Lake St, Los Angeles, CA 90001" -304802,USB-C Charging Cable,1,11.95,12/27/19 13:14,"569 Lake St, Los Angeles, CA 90001" -304802,Bose SoundSport Headphones,1,99.99,12/27/19 13:14,"569 Lake St, Los Angeles, CA 90001" -304802,34in Ultrawide Monitor,1,379.99,12/27/19 13:14,"569 Lake St, Los Angeles, CA 90001" -304803,Google Phone,1,600,12/17/19 19:28,"888 4th St, Dallas, TX 75001" -304804,27in FHD Monitor,1,149.99,12/26/19 10:23,"97 Wilson St, Boston, MA 02215" -304805,Bose SoundSport Headphones,1,99.99,12/20/19 22:16,"280 2nd St, Atlanta, GA 30301" -304805,Lightning Charging Cable,1,14.95,12/20/19 22:16,"280 2nd St, Atlanta, GA 30301" -304806,Lightning Charging Cable,1,14.95,12/24/19 15:49,"287 Willow St, San Francisco, CA 94016" -304807,Wired Headphones,1,11.99,12/17/19 23:01,"283 Jackson St, San Francisco, CA 94016" -304808,AA Batteries (4-pack),1,3.84,12/20/19 21:40,"330 Walnut St, San Francisco, CA 94016" -304809,AA Batteries (4-pack),1,3.84,12/15/19 20:10,"819 Adams St, Los Angeles, CA 90001" -304810,Lightning Charging Cable,2,14.95,12/02/19 21:19,"396 8th St, Los Angeles, CA 90001" -304811,Bose SoundSport Headphones,1,99.99,12/04/19 20:32,"511 Meadow St, Los Angeles, CA 90001" -304812,AAA Batteries (4-pack),2,2.99,12/02/19 22:05,"547 Main St, San Francisco, CA 94016" -304813,34in Ultrawide Monitor,1,379.99,12/16/19 09:39,"146 5th St, San Francisco, CA 94016" -304813,AA Batteries (4-pack),1,3.84,12/16/19 09:39,"146 5th St, San Francisco, CA 94016" -304814,Lightning Charging Cable,1,14.95,12/09/19 21:11,"935 8th St, Austin, TX 73301" -304815,AAA Batteries (4-pack),1,2.99,12/15/19 15:38,"864 Walnut St, San Francisco, CA 94016" -304816,Google Phone,1,600,12/20/19 15:12,"487 9th St, San Francisco, CA 94016" -304817,AA Batteries (4-pack),1,3.84,12/20/19 03:32,"318 Jefferson St, Los Angeles, CA 90001" -304818,AAA Batteries (4-pack),1,2.99,12/30/19 13:48,"669 Pine St, San Francisco, CA 94016" -304819,34in Ultrawide Monitor,1,379.99,12/10/19 05:05,"691 Washington St, Boston, MA 02215" -304820,Bose SoundSport Headphones,1,99.99,12/21/19 06:24,"317 5th St, Atlanta, GA 30301" -304821,Lightning Charging Cable,1,14.95,12/20/19 10:47,"351 9th St, San Francisco, CA 94016" -304822,USB-C Charging Cable,2,11.95,12/04/19 12:34,"300 Dogwood St, Atlanta, GA 30301" -304823,AAA Batteries (4-pack),1,2.99,12/20/19 19:17,"237 2nd St, New York City, NY 10001" -304824,AA Batteries (4-pack),1,3.84,12/28/19 10:52,"990 Elm St, New York City, NY 10001" -304825,AA Batteries (4-pack),1,3.84,12/07/19 00:10,"424 Park St, San Francisco, CA 94016" -304826,Apple Airpods Headphones,1,150,12/25/19 15:09,"641 Adams St, Portland, ME 04101" -304827,USB-C Charging Cable,1,11.95,12/01/19 12:02,"833 Cedar St, Boston, MA 02215" -304828,AA Batteries (4-pack),1,3.84,12/07/19 14:42,"605 Church St, Atlanta, GA 30301" -304829,Flatscreen TV,1,300,12/26/19 16:30,"805 Main St, Dallas, TX 75001" -304829,AA Batteries (4-pack),1,3.84,12/26/19 16:30,"805 Main St, Dallas, TX 75001" -304830,Flatscreen TV,1,300,12/04/19 11:15,"151 10th St, San Francisco, CA 94016" -304831,Lightning Charging Cable,1,14.95,12/14/19 10:38,"743 13th St, Seattle, WA 98101" -304832,Wired Headphones,1,11.99,12/21/19 08:54,"141 Cedar St, Los Angeles, CA 90001" -304833,Wired Headphones,1,11.99,12/26/19 15:31,"704 Madison St, Los Angeles, CA 90001" -304834,LG Washing Machine,1,600.0,12/24/19 00:52,"919 Sunset St, Atlanta, GA 30301" -304835,USB-C Charging Cable,1,11.95,12/01/19 20:08,"887 11th St, Boston, MA 02215" -304836,ThinkPad Laptop,1,999.99,12/29/19 14:33,"350 Jackson St, Los Angeles, CA 90001" -304837,Flatscreen TV,1,300,12/21/19 19:40,"751 Maple St, San Francisco, CA 94016" -304838,USB-C Charging Cable,1,11.95,12/30/19 12:50,"563 Jefferson St, San Francisco, CA 94016" -304839,Lightning Charging Cable,1,14.95,12/13/19 02:13,"28 Main St, Portland, OR 97035" -304840,AAA Batteries (4-pack),1,2.99,12/25/19 08:09,"968 Park St, New York City, NY 10001" -304841,Apple Airpods Headphones,1,150,12/12/19 23:13,"222 River St, San Francisco, CA 94016" -304842,AAA Batteries (4-pack),1,2.99,12/11/19 14:38,"173 Johnson St, New York City, NY 10001" -304843,Lightning Charging Cable,1,14.95,12/24/19 04:53,"218 Sunset St, Dallas, TX 75001" -304844,iPhone,1,700,12/31/19 01:33,"199 Jackson St, Portland, OR 97035" -304845,Apple Airpods Headphones,1,150,12/27/19 18:58,"379 Pine St, Dallas, TX 75001" -304846,Bose SoundSport Headphones,1,99.99,12/15/19 13:41,"788 Lake St, San Francisco, CA 94016" -304847,Lightning Charging Cable,1,14.95,12/15/19 14:36,"498 Meadow St, Atlanta, GA 30301" -304848,Bose SoundSport Headphones,1,99.99,12/26/19 10:32,"895 Johnson St, Seattle, WA 98101" -304849,27in FHD Monitor,1,149.99,12/17/19 19:27,"756 Adams St, Atlanta, GA 30301" -304850,ThinkPad Laptop,1,999.99,12/29/19 21:49,"729 7th St, Seattle, WA 98101" -304851,Wired Headphones,1,11.99,12/01/19 15:57,"291 11th St, Boston, MA 02215" -304852,AAA Batteries (4-pack),1,2.99,12/18/19 22:13,"442 Ridge St, New York City, NY 10001" -304853,34in Ultrawide Monitor,1,379.99,12/01/19 19:26,"352 7th St, San Francisco, CA 94016" -304854,Lightning Charging Cable,1,14.95,12/14/19 19:57,"450 North St, Dallas, TX 75001" -304855,Lightning Charging Cable,1,14.95,12/30/19 15:09,"155 8th St, Los Angeles, CA 90001" -304856,AAA Batteries (4-pack),3,2.99,12/25/19 07:47,"142 Dogwood St, Dallas, TX 75001" -304857,USB-C Charging Cable,1,11.95,12/26/19 13:34,"573 12th St, Los Angeles, CA 90001" -304858,27in 4K Gaming Monitor,1,389.99,12/21/19 18:56,"916 Willow St, San Francisco, CA 94016" -304859,Wired Headphones,1,11.99,12/01/19 12:06,"408 Jackson St, San Francisco, CA 94016" -304860,Bose SoundSport Headphones,1,99.99,12/12/19 17:05,"400 10th St, Los Angeles, CA 90001" -304861,Wired Headphones,1,11.99,12/16/19 15:07,"438 Johnson St, San Francisco, CA 94016" -304862,Lightning Charging Cable,1,14.95,12/29/19 13:18,"93 Hickory St, Dallas, TX 75001" -304863,34in Ultrawide Monitor,1,379.99,12/04/19 20:10,"867 Center St, Seattle, WA 98101" -304864,Wired Headphones,1,11.99,12/02/19 06:53,"303 Hill St, Seattle, WA 98101" -304865,AA Batteries (4-pack),1,3.84,12/28/19 19:01,"378 West St, New York City, NY 10001" -304866,AA Batteries (4-pack),1,3.84,12/25/19 18:38,"457 14th St, San Francisco, CA 94016" -304867,Lightning Charging Cable,1,14.95,12/09/19 02:01,"742 12th St, San Francisco, CA 94016" -304867,AAA Batteries (4-pack),1,2.99,12/09/19 02:01,"742 12th St, San Francisco, CA 94016" -304868,AAA Batteries (4-pack),2,2.99,12/27/19 18:53,"962 Lincoln St, Los Angeles, CA 90001" -304869,Bose SoundSport Headphones,1,99.99,12/03/19 17:56,"178 Elm St, Seattle, WA 98101" -304870,Wired Headphones,1,11.99,12/15/19 07:22,"12 4th St, Los Angeles, CA 90001" -304871,Macbook Pro Laptop,1,1700,12/03/19 23:28,"394 Meadow St, Los Angeles, CA 90001" -304872,USB-C Charging Cable,2,11.95,12/26/19 15:46,"657 Walnut St, San Francisco, CA 94016" -304873,AA Batteries (4-pack),2,3.84,12/13/19 21:46,"165 Walnut St, Austin, TX 73301" -304874,AAA Batteries (4-pack),1,2.99,12/14/19 19:26,"928 9th St, Boston, MA 02215" -304875,34in Ultrawide Monitor,1,379.99,12/12/19 00:49,"844 13th St, San Francisco, CA 94016" -304876,Apple Airpods Headphones,1,150,12/26/19 20:36,"336 Chestnut St, Los Angeles, CA 90001" -304877,Bose SoundSport Headphones,1,99.99,12/16/19 13:09,"522 Dogwood St, Los Angeles, CA 90001" -304878,AAA Batteries (4-pack),1,2.99,12/07/19 10:28,"143 Chestnut St, San Francisco, CA 94016" -304879,Lightning Charging Cable,1,14.95,12/25/19 18:40,"41 Elm St, Los Angeles, CA 90001" -304880,27in 4K Gaming Monitor,1,389.99,12/10/19 08:18,"398 Lakeview St, Boston, MA 02215" -304881,Lightning Charging Cable,1,14.95,12/23/19 15:15,"308 Chestnut St, San Francisco, CA 94016" -304882,iPhone,1,700,12/10/19 19:31,"201 Johnson St, Seattle, WA 98101" -304883,20in Monitor,1,109.99,12/19/19 17:40,"974 Lake St, Portland, OR 97035" -304884,Wired Headphones,1,11.99,12/10/19 19:17,"308 7th St, Boston, MA 02215" -304885,AA Batteries (4-pack),1,3.84,12/17/19 10:10,"193 North St, New York City, NY 10001" -304886,AAA Batteries (4-pack),2,2.99,12/21/19 19:46,"844 Lakeview St, Boston, MA 02215" -304887,AAA Batteries (4-pack),2,2.99,12/13/19 19:24,"670 Main St, San Francisco, CA 94016" -304888,Google Phone,1,600,12/30/19 19:23,"550 Adams St, San Francisco, CA 94016" -304888,34in Ultrawide Monitor,1,379.99,12/30/19 19:23,"550 Adams St, San Francisco, CA 94016" -304889,Vareebadd Phone,1,400,12/01/19 07:01,"972 Spruce St, Dallas, TX 75001" -304890,27in FHD Monitor,1,149.99,12/12/19 13:51,"647 2nd St, San Francisco, CA 94016" -304891,USB-C Charging Cable,1,11.95,12/25/19 12:10,"657 2nd St, San Francisco, CA 94016" -304892,Lightning Charging Cable,1,14.95,12/05/19 13:11,"732 Main St, Dallas, TX 75001" -304893,Apple Airpods Headphones,1,150,12/13/19 22:48,"910 Jackson St, Boston, MA 02215" -304894,Google Phone,1,600,12/03/19 19:39,"440 2nd St, Austin, TX 73301" -304894,USB-C Charging Cable,1,11.95,12/03/19 19:39,"440 2nd St, Austin, TX 73301" -304895,Wired Headphones,1,11.99,12/18/19 09:58,"606 Chestnut St, Los Angeles, CA 90001" -304896,Bose SoundSport Headphones,1,99.99,12/17/19 13:59,"748 9th St, Portland, OR 97035" -304897,Bose SoundSport Headphones,1,99.99,12/30/19 20:49,"783 Hickory St, Portland, OR 97035" -304898,USB-C Charging Cable,1,11.95,12/30/19 18:03,"451 Maple St, San Francisco, CA 94016" -304899,Wired Headphones,1,11.99,12/27/19 16:55,"150 Madison St, New York City, NY 10001" -304900,Apple Airpods Headphones,1,150,12/08/19 13:35,"880 Pine St, San Francisco, CA 94016" -304901,AA Batteries (4-pack),1,3.84,12/08/19 08:23,"180 Main St, Austin, TX 73301" -304902,AAA Batteries (4-pack),1,2.99,12/07/19 20:49,"524 Chestnut St, San Francisco, CA 94016" -304903,USB-C Charging Cable,1,11.95,12/22/19 13:06,"410 Adams St, Austin, TX 73301" -304904,27in FHD Monitor,1,149.99,12/05/19 11:08,"187 Church St, Seattle, WA 98101" -304905,Lightning Charging Cable,1,14.95,12/09/19 18:09,"760 North St, Los Angeles, CA 90001" -304906,Flatscreen TV,1,300,12/23/19 14:07,"953 Madison St, Boston, MA 02215" -304907,27in FHD Monitor,1,149.99,12/30/19 09:27,"560 Pine St, Los Angeles, CA 90001" -304908,Lightning Charging Cable,1,14.95,12/29/19 16:56,"425 Cedar St, Seattle, WA 98101" -304909,27in 4K Gaming Monitor,1,389.99,12/16/19 15:26,"734 Church St, New York City, NY 10001" -304910,Flatscreen TV,1,300,12/11/19 00:41,"336 Sunset St, Boston, MA 02215" -304911,USB-C Charging Cable,1,11.95,12/06/19 01:27,"771 Cedar St, Boston, MA 02215" -304912,Lightning Charging Cable,2,14.95,12/12/19 10:51,"30 2nd St, New York City, NY 10001" -304913,Wired Headphones,1,11.99,12/06/19 15:25,"762 South St, Los Angeles, CA 90001" -304914,USB-C Charging Cable,1,11.95,12/01/19 10:49,"430 Lincoln St, Los Angeles, CA 90001" -304915,Wired Headphones,1,11.99,12/23/19 08:52,"806 Dogwood St, Boston, MA 02215" -304916,Lightning Charging Cable,1,14.95,12/07/19 07:25,"504 South St, Boston, MA 02215" -304917,AAA Batteries (4-pack),1,2.99,12/07/19 15:09,"940 9th St, New York City, NY 10001" -304918,Wired Headphones,1,11.99,12/22/19 13:09,"765 West St, Dallas, TX 75001" -304919,AAA Batteries (4-pack),2,2.99,12/17/19 19:53,"623 Walnut St, San Francisco, CA 94016" -304920,34in Ultrawide Monitor,1,379.99,12/14/19 14:28,"714 Willow St, Atlanta, GA 30301" -304921,34in Ultrawide Monitor,1,379.99,12/21/19 08:12,"207 Meadow St, New York City, NY 10001" -304922,Wired Headphones,1,11.99,12/24/19 05:58,"12 1st St, Los Angeles, CA 90001" -304923,Apple Airpods Headphones,1,150,12/26/19 19:05,"961 South St, Dallas, TX 75001" -304924,Bose SoundSport Headphones,1,99.99,12/15/19 23:16,"159 2nd St, Boston, MA 02215" -304925,Bose SoundSport Headphones,1,99.99,12/13/19 11:57,"734 8th St, San Francisco, CA 94016" -304926,iPhone,1,700,12/07/19 10:49,"14 Hill St, San Francisco, CA 94016" -304927,USB-C Charging Cable,1,11.95,12/19/19 21:17,"667 Hickory St, Atlanta, GA 30301" -304928,iPhone,1,700,12/23/19 23:02,"910 Johnson St, Los Angeles, CA 90001" -304929,Lightning Charging Cable,2,14.95,12/28/19 15:11,"439 Cedar St, Boston, MA 02215" -304930,USB-C Charging Cable,1,11.95,12/07/19 15:42,"595 7th St, Boston, MA 02215" -304931,iPhone,1,700,12/01/19 09:32,"41 Maple St, San Francisco, CA 94016" -304932,Wired Headphones,1,11.99,12/02/19 14:59,"736 Maple St, New York City, NY 10001" -304933,AA Batteries (4-pack),1,3.84,12/10/19 12:36,"43 Ridge St, Seattle, WA 98101" -304934,iPhone,1,700,12/20/19 00:10,"874 Meadow St, Seattle, WA 98101" -304935,USB-C Charging Cable,1,11.95,12/01/19 07:26,"667 West St, Boston, MA 02215" -304936,Flatscreen TV,1,300,12/22/19 20:26,"15 Walnut St, Seattle, WA 98101" -304937,Wired Headphones,1,11.99,12/13/19 19:21,"135 North St, Boston, MA 02215" -304938,Lightning Charging Cable,1,14.95,12/05/19 11:57,"372 Park St, Seattle, WA 98101" -304939,iPhone,1,700,12/20/19 21:16,"96 Madison St, Boston, MA 02215" -304940,Bose SoundSport Headphones,1,99.99,12/15/19 19:18,"664 Madison St, San Francisco, CA 94016" -304941,20in Monitor,1,109.99,12/11/19 18:35,"74 West St, Los Angeles, CA 90001" -304942,Apple Airpods Headphones,1,150,12/15/19 16:56,"858 South St, Atlanta, GA 30301" -304943,USB-C Charging Cable,1,11.95,12/07/19 02:29,"215 10th St, Los Angeles, CA 90001" -304944,Wired Headphones,1,11.99,12/26/19 08:32,"942 5th St, Portland, OR 97035" -304945,Macbook Pro Laptop,1,1700,12/12/19 10:05,"388 Dogwood St, Boston, MA 02215" -304946,Wired Headphones,1,11.99,12/28/19 20:11,"71 Johnson St, Austin, TX 73301" -304947,Bose SoundSport Headphones,1,99.99,12/07/19 13:48,"675 4th St, Los Angeles, CA 90001" -304948,Wired Headphones,1,11.99,12/29/19 12:15,"378 Elm St, San Francisco, CA 94016" -304949,Lightning Charging Cable,1,14.95,12/12/19 18:41,"369 Dogwood St, San Francisco, CA 94016" -304950,Lightning Charging Cable,1,14.95,12/25/19 18:54,"851 Church St, San Francisco, CA 94016" -304951,27in FHD Monitor,1,149.99,12/30/19 08:57,"460 6th St, New York City, NY 10001" -304952,Wired Headphones,1,11.99,12/28/19 11:19,"502 West St, Portland, OR 97035" -304953,AAA Batteries (4-pack),1,2.99,12/26/19 10:05,"852 Lake St, Los Angeles, CA 90001" -304954,Lightning Charging Cable,1,14.95,12/04/19 11:01,"568 Jackson St, Dallas, TX 75001" -304955,AAA Batteries (4-pack),2,2.99,12/26/19 18:54,"448 Dogwood St, New York City, NY 10001" -304956,Lightning Charging Cable,1,14.95,12/25/19 23:39,"313 6th St, Dallas, TX 75001" -304957,Bose SoundSport Headphones,1,99.99,12/21/19 15:11,"443 Wilson St, Los Angeles, CA 90001" -304958,Lightning Charging Cable,1,14.95,12/13/19 23:36,"564 Highland St, San Francisco, CA 94016" -304959,Macbook Pro Laptop,1,1700,12/24/19 17:24,"849 Hill St, Portland, OR 97035" -304960,AA Batteries (4-pack),1,3.84,12/08/19 23:42,"486 14th St, Boston, MA 02215" -304961,ThinkPad Laptop,1,999.99,12/11/19 21:45,"981 River St, San Francisco, CA 94016" -304962,Lightning Charging Cable,1,14.95,12/01/19 11:15,"340 Cedar St, Atlanta, GA 30301" -304962,USB-C Charging Cable,1,11.95,12/01/19 11:15,"340 Cedar St, Atlanta, GA 30301" -304963,20in Monitor,1,109.99,12/25/19 20:30,"802 Madison St, New York City, NY 10001" -304964,USB-C Charging Cable,1,11.95,12/07/19 19:24,"174 Lake St, Seattle, WA 98101" -304965,Bose SoundSport Headphones,1,99.99,12/22/19 17:51,"533 Park St, Atlanta, GA 30301" -304966,Wired Headphones,1,11.99,12/02/19 19:16,"721 Highland St, Seattle, WA 98101" -304967,USB-C Charging Cable,1,11.95,12/17/19 15:53,"651 Highland St, Austin, TX 73301" -304968,iPhone,1,700,12/21/19 16:42,"223 River St, Los Angeles, CA 90001" -304969,27in FHD Monitor,1,149.99,12/19/19 16:47,"646 Cherry St, Seattle, WA 98101" -304970,USB-C Charging Cable,1,11.95,12/11/19 12:55,"507 6th St, Portland, ME 04101" -304971,27in FHD Monitor,1,149.99,12/20/19 09:22,"406 North St, San Francisco, CA 94016" -304972,AA Batteries (4-pack),2,3.84,12/30/19 17:05,"963 Hill St, San Francisco, CA 94016" -304973,USB-C Charging Cable,1,11.95,12/02/19 18:36,"333 Willow St, Atlanta, GA 30301" -304974,USB-C Charging Cable,1,11.95,12/02/19 23:15,"638 Adams St, Portland, OR 97035" -304975,AA Batteries (4-pack),1,3.84,12/23/19 22:28,"460 Adams St, San Francisco, CA 94016" -304976,AAA Batteries (4-pack),1,2.99,12/18/19 09:32,"230 Maple St, Austin, TX 73301" -304977,Flatscreen TV,1,300,12/29/19 13:32,"185 Johnson St, Boston, MA 02215" -304978,Bose SoundSport Headphones,1,99.99,12/17/19 12:00,"962 Dogwood St, Atlanta, GA 30301" -304979,AAA Batteries (4-pack),1,2.99,12/11/19 20:39,"621 Madison St, Boston, MA 02215" -304980,Wired Headphones,1,11.99,12/17/19 13:15,"983 Elm St, Dallas, TX 75001" -304981,AAA Batteries (4-pack),1,2.99,12/03/19 16:29,"916 Maple St, San Francisco, CA 94016" -304982,AAA Batteries (4-pack),1,2.99,12/21/19 18:44,"499 2nd St, Austin, TX 73301" -304983,AAA Batteries (4-pack),1,2.99,12/24/19 13:54,"334 Meadow St, Atlanta, GA 30301" -304984,Wired Headphones,1,11.99,12/29/19 07:05,"292 Park St, Los Angeles, CA 90001" -304985,Bose SoundSport Headphones,1,99.99,12/01/19 16:01,"487 Hickory St, San Francisco, CA 94016" -304986,20in Monitor,1,109.99,12/20/19 23:21,"814 Johnson St, Los Angeles, CA 90001" -304987,AA Batteries (4-pack),1,3.84,12/25/19 10:58,"891 Park St, Los Angeles, CA 90001" -304988,Lightning Charging Cable,1,14.95,12/14/19 13:49,"72 Pine St, Dallas, TX 75001" -304989,Wired Headphones,1,11.99,12/26/19 20:39,"183 Hill St, Boston, MA 02215" -304990,Apple Airpods Headphones,1,150,12/12/19 10:59,"733 Lakeview St, Dallas, TX 75001" -304991,AA Batteries (4-pack),4,3.84,12/03/19 09:08,"625 Center St, San Francisco, CA 94016" -304992,Bose SoundSport Headphones,1,99.99,12/24/19 05:57,"945 Lakeview St, Los Angeles, CA 90001" -304993,AAA Batteries (4-pack),1,2.99,12/16/19 21:19,"818 5th St, Los Angeles, CA 90001" -304994,Bose SoundSport Headphones,1,99.99,12/14/19 15:21,"340 Dogwood St, Atlanta, GA 30301" -304995,AA Batteries (4-pack),1,3.84,12/15/19 19:42,"592 Maple St, San Francisco, CA 94016" -304996,iPhone,1,700,12/12/19 22:47,"799 Hickory St, New York City, NY 10001" -304997,27in FHD Monitor,1,149.99,12/08/19 06:52,"383 7th St, Seattle, WA 98101" -304998,USB-C Charging Cable,1,11.95,12/23/19 07:22,"517 River St, Los Angeles, CA 90001" -304999,Wired Headphones,1,11.99,12/15/19 16:45,"606 Church St, Dallas, TX 75001" -305000,ThinkPad Laptop,1,999.99,12/20/19 15:26,"715 Ridge St, Austin, TX 73301" -305001,Flatscreen TV,1,300,12/14/19 17:48,"567 Madison St, Dallas, TX 75001" -305002,AA Batteries (4-pack),2,3.84,12/24/19 21:56,"431 North St, Boston, MA 02215" -305003,AA Batteries (4-pack),2,3.84,12/09/19 22:01,"147 North St, Portland, ME 04101" -305004,AA Batteries (4-pack),1,3.84,12/02/19 14:00,"276 Main St, Atlanta, GA 30301" -305005,Lightning Charging Cable,1,14.95,12/19/19 15:59,"637 Chestnut St, San Francisco, CA 94016" -305006,AA Batteries (4-pack),1,3.84,12/13/19 22:55,"322 River St, New York City, NY 10001" -305007,20in Monitor,1,109.99,12/23/19 20:09,"559 Lakeview St, Boston, MA 02215" -305008,iPhone,1,700,12/09/19 17:48,"610 Maple St, Dallas, TX 75001" -305009,Lightning Charging Cable,1,14.95,12/11/19 21:31,"7 Adams St, Boston, MA 02215" -305010,Apple Airpods Headphones,1,150,12/19/19 15:42,"10 Center St, Atlanta, GA 30301" -305010,Wired Headphones,1,11.99,12/19/19 15:42,"10 Center St, Atlanta, GA 30301" -305011,Wired Headphones,1,11.99,12/21/19 16:38,"118 Cedar St, San Francisco, CA 94016" -305012,Macbook Pro Laptop,1,1700,12/26/19 19:16,"534 Spruce St, Los Angeles, CA 90001" -305013,Lightning Charging Cable,1,14.95,12/06/19 15:20,"407 Jackson St, Atlanta, GA 30301" -305014,27in FHD Monitor,1,149.99,12/12/19 21:08,"621 Main St, Seattle, WA 98101" -305015,Wired Headphones,1,11.99,12/05/19 17:46,"737 Lincoln St, New York City, NY 10001" -305016,AAA Batteries (4-pack),1,2.99,12/13/19 20:50,"809 Adams St, Seattle, WA 98101" -305017,AA Batteries (4-pack),1,3.84,12/26/19 21:53,"357 9th St, San Francisco, CA 94016" -305018,ThinkPad Laptop,1,999.99,12/20/19 19:07,"99 1st St, Boston, MA 02215" -305019,USB-C Charging Cable,1,11.95,12/03/19 21:39,"380 6th St, Los Angeles, CA 90001" -305020,Macbook Pro Laptop,1,1700,12/13/19 11:32,"317 Johnson St, Seattle, WA 98101" -305021,Macbook Pro Laptop,1,1700,12/14/19 14:27,"223 Church St, San Francisco, CA 94016" -305022,34in Ultrawide Monitor,1,379.99,12/25/19 15:54,"652 Adams St, San Francisco, CA 94016" -305023,AA Batteries (4-pack),1,3.84,12/24/19 03:00,"80 Maple St, Atlanta, GA 30301" -305024,Bose SoundSport Headphones,1,99.99,12/16/19 13:05,"104 River St, Atlanta, GA 30301" -305025,34in Ultrawide Monitor,1,379.99,12/16/19 14:07,"961 Adams St, Portland, OR 97035" -305026,Apple Airpods Headphones,1,150,12/23/19 12:18,"863 Spruce St, San Francisco, CA 94016" -305027,Apple Airpods Headphones,1,150,12/28/19 18:19,"522 Spruce St, San Francisco, CA 94016" -305028,AAA Batteries (4-pack),2,2.99,12/28/19 12:35,"869 Main St, Dallas, TX 75001" -305029,Lightning Charging Cable,1,14.95,12/28/19 21:27,"786 13th St, Austin, TX 73301" -305030,Vareebadd Phone,1,400,12/01/19 18:49,"554 6th St, New York City, NY 10001" -305030,USB-C Charging Cable,1,11.95,12/01/19 18:49,"554 6th St, New York City, NY 10001" -305031,Bose SoundSport Headphones,1,99.99,12/22/19 21:48,"814 7th St, Atlanta, GA 30301" -305032,Bose SoundSport Headphones,1,99.99,12/12/19 15:58,"725 2nd St, Boston, MA 02215" -305033,USB-C Charging Cable,1,11.95,12/05/19 22:00,"787 North St, Portland, OR 97035" -305034,LG Dryer,1,600.0,12/22/19 09:58,"867 6th St, San Francisco, CA 94016" -305035,AAA Batteries (4-pack),1,2.99,12/28/19 18:47,"909 Cedar St, New York City, NY 10001" -305036,AA Batteries (4-pack),1,3.84,12/24/19 00:38,"501 Sunset St, Boston, MA 02215" -305037,Bose SoundSport Headphones,1,99.99,12/22/19 16:33,"168 Sunset St, Portland, OR 97035" -305038,34in Ultrawide Monitor,1,379.99,12/19/19 07:50,"59 Maple St, Boston, MA 02215" -305039,Wired Headphones,1,11.99,12/25/19 12:31,"869 Maple St, San Francisco, CA 94016" -305040,AAA Batteries (4-pack),2,2.99,12/14/19 02:15,"359 River St, New York City, NY 10001" -305041,Apple Airpods Headphones,1,150,12/24/19 01:11,"290 Walnut St, Atlanta, GA 30301" -305042,iPhone,1,700,12/21/19 10:02,"410 Washington St, Portland, ME 04101" -305043,AAA Batteries (4-pack),2,2.99,12/31/19 10:42,"454 Hickory St, Los Angeles, CA 90001" -305044,AA Batteries (4-pack),1,3.84,12/08/19 13:03,"632 Hill St, Dallas, TX 75001" -305045,Bose SoundSport Headphones,1,99.99,12/10/19 16:03,"951 14th St, New York City, NY 10001" -305046,USB-C Charging Cable,1,11.95,12/20/19 16:09,"254 7th St, Austin, TX 73301" -305047,Lightning Charging Cable,1,14.95,12/05/19 22:07,"863 Ridge St, Los Angeles, CA 90001" -305048,Lightning Charging Cable,1,14.95,12/27/19 22:03,"24 6th St, San Francisco, CA 94016" -305049,Bose SoundSport Headphones,1,99.99,12/07/19 19:46,"25 South St, Dallas, TX 75001" -305050,20in Monitor,1,109.99,12/31/19 13:31,"20 Hill St, Los Angeles, CA 90001" -305051,Wired Headphones,1,11.99,12/30/19 19:59,"769 Main St, Los Angeles, CA 90001" -305052,Bose SoundSport Headphones,1,99.99,12/02/19 12:47,"955 Center St, New York City, NY 10001" -305053,Macbook Pro Laptop,1,1700,12/02/19 10:00,"151 9th St, Boston, MA 02215" -305054,AA Batteries (4-pack),1,3.84,12/09/19 21:11,"956 Pine St, Boston, MA 02215" -305055,Lightning Charging Cable,1,14.95,12/28/19 12:09,"135 Main St, Seattle, WA 98101" -305056,Apple Airpods Headphones,1,150,12/05/19 10:40,"575 Wilson St, San Francisco, CA 94016" -305057,Apple Airpods Headphones,1,150,12/10/19 22:01,"390 Hickory St, New York City, NY 10001" -305058,Apple Airpods Headphones,1,150,12/17/19 11:31,"111 Cedar St, New York City, NY 10001" -305059,Apple Airpods Headphones,1,150,12/16/19 12:35,"426 5th St, Atlanta, GA 30301" -305060,AA Batteries (4-pack),1,3.84,12/23/19 17:32,"627 Lake St, San Francisco, CA 94016" -305061,Wired Headphones,1,11.99,12/02/19 18:10,"384 12th St, Seattle, WA 98101" -305062,iPhone,1,700,12/19/19 16:53,"213 Lake St, Seattle, WA 98101" -305062,Wired Headphones,1,11.99,12/19/19 16:53,"213 Lake St, Seattle, WA 98101" -305063,AAA Batteries (4-pack),3,2.99,12/17/19 18:48,"969 South St, San Francisco, CA 94016" -305064,USB-C Charging Cable,1,11.95,12/29/19 13:11,"374 7th St, Boston, MA 02215" -305064,Lightning Charging Cable,1,14.95,12/29/19 13:11,"374 7th St, Boston, MA 02215" -305065,Lightning Charging Cable,1,14.95,12/06/19 13:07,"325 Johnson St, Los Angeles, CA 90001" -305066,AAA Batteries (4-pack),3,2.99,12/07/19 17:30,"226 10th St, Seattle, WA 98101" -305067,AA Batteries (4-pack),3,3.84,12/17/19 19:53,"666 Hickory St, Los Angeles, CA 90001" -305068,Wired Headphones,1,11.99,12/01/19 10:30,"268 9th St, Los Angeles, CA 90001" -305069,Wired Headphones,1,11.99,12/11/19 22:48,"568 Wilson St, Los Angeles, CA 90001" -305070,Google Phone,1,600,12/26/19 00:24,"542 Wilson St, Portland, OR 97035" -305071,Wired Headphones,1,11.99,12/03/19 12:28,"943 Hill St, San Francisco, CA 94016" -305072,Flatscreen TV,1,300,12/29/19 22:04,"839 North St, San Francisco, CA 94016" -305073,iPhone,1,700,12/26/19 12:40,"421 8th St, Boston, MA 02215" -305074,Apple Airpods Headphones,1,150,12/22/19 10:43,"977 9th St, Portland, OR 97035" -305075,AA Batteries (4-pack),2,3.84,12/19/19 15:18,"368 Washington St, Boston, MA 02215" -305076,Bose SoundSport Headphones,1,99.99,12/12/19 12:50,"872 Cherry St, Portland, OR 97035" -305077,Flatscreen TV,1,300,12/12/19 21:07,"470 7th St, Atlanta, GA 30301" -305078,Lightning Charging Cable,1,14.95,12/16/19 13:14,"287 1st St, Portland, OR 97035" -305079,Google Phone,1,600,12/13/19 19:25,"138 Meadow St, Portland, OR 97035" -305079,USB-C Charging Cable,1,11.95,12/13/19 19:25,"138 Meadow St, Portland, OR 97035" -305080,Wired Headphones,1,11.99,12/26/19 14:51,"404 Elm St, Los Angeles, CA 90001" -305081,Macbook Pro Laptop,1,1700,12/03/19 17:36,"66 Highland St, New York City, NY 10001" -305082,Flatscreen TV,1,300,12/02/19 10:46,"139 Cedar St, Portland, OR 97035" -305083,AAA Batteries (4-pack),2,2.99,12/26/19 15:42,"748 Sunset St, New York City, NY 10001" -305084,iPhone,1,700,12/05/19 12:59,"544 9th St, Dallas, TX 75001" -305085,AAA Batteries (4-pack),1,2.99,12/05/19 18:23,"552 Pine St, New York City, NY 10001" -305086,USB-C Charging Cable,1,11.95,12/18/19 20:02,"893 Dogwood St, San Francisco, CA 94016" -305087,AA Batteries (4-pack),1,3.84,12/08/19 13:04,"472 Meadow St, Los Angeles, CA 90001" -305088,AA Batteries (4-pack),1,3.84,12/26/19 16:21,"493 11th St, Los Angeles, CA 90001" -305089,Bose SoundSport Headphones,1,99.99,12/21/19 03:16,"109 Cherry St, Boston, MA 02215" -305090,Lightning Charging Cable,1,14.95,12/15/19 05:29,"200 Main St, San Francisco, CA 94016" -305091,Lightning Charging Cable,1,14.95,12/21/19 16:06,"824 4th St, Portland, OR 97035" -305092,USB-C Charging Cable,1,11.95,12/10/19 10:17,"664 9th St, San Francisco, CA 94016" -305093,Apple Airpods Headphones,1,150,12/31/19 17:54,"583 Highland St, San Francisco, CA 94016" -305094,Bose SoundSport Headphones,1,99.99,12/11/19 10:39,"93 Johnson St, Austin, TX 73301" -305095,Wired Headphones,1,11.99,12/12/19 00:44,"445 Maple St, Dallas, TX 75001" -305096,20in Monitor,1,109.99,12/22/19 20:19,"72 Pine St, Atlanta, GA 30301" -305097,AAA Batteries (4-pack),1,2.99,12/26/19 19:14,"788 Madison St, Austin, TX 73301" -305098,AAA Batteries (4-pack),1,2.99,12/01/19 12:36,"25 2nd St, Seattle, WA 98101" -305099,Lightning Charging Cable,1,14.95,12/17/19 18:40,"638 Maple St, Seattle, WA 98101" -305100,Apple Airpods Headphones,1,150,12/21/19 12:03,"554 10th St, Boston, MA 02215" -305101,USB-C Charging Cable,1,11.95,12/27/19 10:37,"794 Jefferson St, San Francisco, CA 94016" -305102,Lightning Charging Cable,1,14.95,12/07/19 00:06,"41 10th St, Boston, MA 02215" -305103,34in Ultrawide Monitor,1,379.99,12/13/19 22:57,"920 Pine St, San Francisco, CA 94016" -305104,Bose SoundSport Headphones,1,99.99,12/20/19 20:51,"470 Adams St, San Francisco, CA 94016" -305105,Apple Airpods Headphones,1,150,12/20/19 14:59,"188 13th St, New York City, NY 10001" -305106,Macbook Pro Laptop,1,1700,12/04/19 21:56,"472 Wilson St, Dallas, TX 75001" -305107,27in FHD Monitor,1,149.99,12/23/19 09:07,"539 Lake St, San Francisco, CA 94016" -305108,Wired Headphones,1,11.99,12/10/19 21:32,"62 Washington St, Seattle, WA 98101" -305109,Google Phone,1,600,12/20/19 13:21,"885 Jackson St, Los Angeles, CA 90001" -305110,27in FHD Monitor,1,149.99,12/27/19 19:45,"601 Center St, Los Angeles, CA 90001" -305111,LG Dryer,1,600.0,12/02/19 20:22,"24 Jackson St, Los Angeles, CA 90001" -305112,Bose SoundSport Headphones,1,99.99,12/31/19 12:09,"164 Hickory St, New York City, NY 10001" -305113,34in Ultrawide Monitor,1,379.99,12/06/19 14:39,"172 1st St, New York City, NY 10001" -305114,34in Ultrawide Monitor,1,379.99,12/18/19 01:42,"616 Park St, Los Angeles, CA 90001" -305115,USB-C Charging Cable,1,11.95,12/25/19 10:27,"506 Willow St, Los Angeles, CA 90001" -305116,Apple Airpods Headphones,1,150,12/31/19 12:30,"517 Elm St, San Francisco, CA 94016" -305117,Lightning Charging Cable,1,14.95,12/14/19 22:30,"661 13th St, Los Angeles, CA 90001" -305118,ThinkPad Laptop,1,999.99,12/31/19 14:51,"735 West St, New York City, NY 10001" -305119,Lightning Charging Cable,1,14.95,12/22/19 11:56,"462 Adams St, Los Angeles, CA 90001" -305120,Flatscreen TV,1,300,12/04/19 15:01,"342 Walnut St, Dallas, TX 75001" -305121,AAA Batteries (4-pack),3,2.99,12/20/19 00:39,"773 Cedar St, Dallas, TX 75001" -305122,Lightning Charging Cable,1,14.95,12/16/19 19:58,"729 Cherry St, Los Angeles, CA 90001" -305123,USB-C Charging Cable,1,11.95,12/06/19 14:24,"753 7th St, Los Angeles, CA 90001" -305124,Lightning Charging Cable,1,14.95,12/06/19 12:11,"603 Ridge St, Boston, MA 02215" -305125,AAA Batteries (4-pack),1,2.99,12/15/19 19:01,"505 Dogwood St, New York City, NY 10001" -305126,34in Ultrawide Monitor,1,379.99,12/12/19 18:30,"925 Jefferson St, San Francisco, CA 94016" -305127,USB-C Charging Cable,1,11.95,12/06/19 20:02,"885 13th St, San Francisco, CA 94016" -305128,20in Monitor,1,109.99,12/26/19 22:09,"364 8th St, New York City, NY 10001" -305129,USB-C Charging Cable,1,11.95,12/24/19 11:37,"953 Forest St, Boston, MA 02215" -305130,USB-C Charging Cable,1,11.95,12/15/19 18:59,"90 9th St, Portland, ME 04101" -305131,Bose SoundSport Headphones,1,99.99,12/28/19 13:50,"527 Willow St, San Francisco, CA 94016" -305132,Bose SoundSport Headphones,1,99.99,12/18/19 09:29,"535 West St, Seattle, WA 98101" -305133,ThinkPad Laptop,1,999.99,12/26/19 13:40,"65 Madison St, Boston, MA 02215" -305134,AA Batteries (4-pack),2,3.84,12/28/19 09:07,"677 Cedar St, San Francisco, CA 94016" -305135,20in Monitor,1,109.99,12/22/19 18:28,"796 Washington St, Boston, MA 02215" -305136,Google Phone,1,600,12/14/19 12:24,"785 Jackson St, Austin, TX 73301" -305137,AAA Batteries (4-pack),1,2.99,12/06/19 13:44,"60 Maple St, Atlanta, GA 30301" -305138,AA Batteries (4-pack),3,3.84,12/16/19 14:44,"224 Center St, Seattle, WA 98101" -305139,20in Monitor,1,109.99,12/30/19 17:04,"132 Jackson St, San Francisco, CA 94016" -305140,Apple Airpods Headphones,1,150,12/10/19 06:03,"262 Cedar St, San Francisco, CA 94016" -305141,ThinkPad Laptop,1,999.99,12/17/19 10:27,"643 10th St, San Francisco, CA 94016" -305142,AA Batteries (4-pack),1,3.84,12/28/19 22:51,"579 5th St, New York City, NY 10001" -305143,AAA Batteries (4-pack),1,2.99,12/26/19 22:56,"121 Elm St, Dallas, TX 75001" -305144,27in FHD Monitor,1,149.99,12/02/19 11:36,"812 South St, Boston, MA 02215" -305145,Lightning Charging Cable,1,14.95,12/01/19 13:02,"495 12th St, Boston, MA 02215" -305146,Google Phone,1,600,12/21/19 17:25,"739 Sunset St, Boston, MA 02215" -305147,AA Batteries (4-pack),2,3.84,12/14/19 10:02,"64 Sunset St, Los Angeles, CA 90001" -305148,Wired Headphones,1,11.99,12/02/19 14:01,"338 5th St, Los Angeles, CA 90001" -305149,Apple Airpods Headphones,1,150,12/10/19 14:10,"527 Hill St, San Francisco, CA 94016" -305150,iPhone,1,700,12/14/19 15:29,"788 Jackson St, Dallas, TX 75001" -305151,Wired Headphones,1,11.99,12/09/19 19:10,"145 Lakeview St, New York City, NY 10001" -305152,USB-C Charging Cable,1,11.95,12/05/19 22:47,"621 River St, Los Angeles, CA 90001" -305153,AAA Batteries (4-pack),2,2.99,12/26/19 13:58,"786 Sunset St, Atlanta, GA 30301" -305154,27in 4K Gaming Monitor,1,389.99,12/12/19 17:59,"856 6th St, Dallas, TX 75001" -305155,Wired Headphones,1,11.99,12/07/19 23:25,"614 Johnson St, Los Angeles, CA 90001" -305156,AAA Batteries (4-pack),2,2.99,12/27/19 21:03,"148 River St, San Francisco, CA 94016" -305157,34in Ultrawide Monitor,1,379.99,12/11/19 01:32,"494 14th St, Atlanta, GA 30301" -305158,Bose SoundSport Headphones,1,99.99,12/16/19 11:36,"814 Meadow St, San Francisco, CA 94016" -305159,USB-C Charging Cable,1,11.95,12/30/19 02:47,"640 Main St, San Francisco, CA 94016" -305160,Flatscreen TV,1,300,12/12/19 07:44,"397 12th St, Los Angeles, CA 90001" -305161,Vareebadd Phone,1,400,12/29/19 19:48,"735 Main St, Boston, MA 02215" -305162,AA Batteries (4-pack),1,3.84,12/22/19 14:41,"139 North St, Los Angeles, CA 90001" -305163,Wired Headphones,1,11.99,12/15/19 04:54,"618 Wilson St, Austin, TX 73301" -305164,34in Ultrawide Monitor,1,379.99,12/09/19 17:36,"382 Center St, Los Angeles, CA 90001" -305165,Lightning Charging Cable,1,14.95,12/23/19 13:00,"483 Madison St, Los Angeles, CA 90001" -305166,AA Batteries (4-pack),1,3.84,12/26/19 13:52,"4 Adams St, Boston, MA 02215" -305167,Wired Headphones,1,11.99,12/02/19 18:48,"911 Johnson St, Portland, ME 04101" -305168,Wired Headphones,1,11.99,12/07/19 18:53,"994 Wilson St, Boston, MA 02215" -305169,iPhone,1,700,12/19/19 08:19,"433 10th St, Atlanta, GA 30301" -305170,Lightning Charging Cable,1,14.95,12/21/19 23:30,"797 Spruce St, Atlanta, GA 30301" -305171,AAA Batteries (4-pack),1,2.99,12/25/19 11:44,"661 5th St, San Francisco, CA 94016" -305172,USB-C Charging Cable,1,11.95,12/26/19 14:48,"172 Maple St, Seattle, WA 98101" -305173,34in Ultrawide Monitor,1,379.99,12/23/19 10:33,"748 North St, San Francisco, CA 94016" -305174,iPhone,1,700,12/28/19 17:30,"508 Pine St, San Francisco, CA 94016" -305175,Google Phone,1,600,12/24/19 23:21,"399 Hill St, Boston, MA 02215" -305176,iPhone,1,700,12/20/19 19:23,"512 Meadow St, San Francisco, CA 94016" -305177,Wired Headphones,1,11.99,12/03/19 09:47,"799 Chestnut St, San Francisco, CA 94016" -305178,Google Phone,1,600,12/10/19 11:51,"836 Jefferson St, San Francisco, CA 94016" -305179,Lightning Charging Cable,2,14.95,12/04/19 15:24,"861 5th St, Los Angeles, CA 90001" -305180,iPhone,1,700,12/12/19 08:08,"102 Pine St, Atlanta, GA 30301" -305181,AA Batteries (4-pack),2,3.84,12/03/19 23:09,"944 Church St, Atlanta, GA 30301" -305182,Wired Headphones,1,11.99,12/10/19 10:53,"49 12th St, San Francisco, CA 94016" -305183,AA Batteries (4-pack),2,3.84,12/17/19 21:41,"724 Wilson St, Austin, TX 73301" -305184,Macbook Pro Laptop,1,1700,12/25/19 10:32,"269 Johnson St, San Francisco, CA 94016" -305185,Lightning Charging Cable,1,14.95,12/09/19 19:48,"653 Walnut St, New York City, NY 10001" -305186,Apple Airpods Headphones,1,150,12/30/19 20:56,"987 Wilson St, San Francisco, CA 94016" -305187,27in 4K Gaming Monitor,1,389.99,12/04/19 17:45,"451 14th St, New York City, NY 10001" -305188,AAA Batteries (4-pack),1,2.99,12/23/19 20:49,"108 South St, San Francisco, CA 94016" -305189,Apple Airpods Headphones,1,150,12/04/19 08:01,"979 12th St, Portland, OR 97035" -305190,Flatscreen TV,1,300,12/04/19 12:16,"975 Johnson St, Boston, MA 02215" -305191,Wired Headphones,1,11.99,12/29/19 16:28,"715 9th St, Austin, TX 73301" -305192,iPhone,1,700,12/27/19 13:20,"321 6th St, San Francisco, CA 94016" -305193,Apple Airpods Headphones,1,150,12/26/19 22:00,"677 Hill St, Portland, OR 97035" -305194,AA Batteries (4-pack),2,3.84,12/14/19 14:11,"816 River St, Boston, MA 02215" -305195,AA Batteries (4-pack),1,3.84,12/17/19 20:02,"440 12th St, Seattle, WA 98101" -305196,Lightning Charging Cable,1,14.95,12/13/19 07:11,"942 Dogwood St, New York City, NY 10001" -305197,Google Phone,1,600,12/26/19 08:38,"550 5th St, San Francisco, CA 94016" -305198,Bose SoundSport Headphones,1,99.99,12/19/19 21:42,"390 Chestnut St, Dallas, TX 75001" -305199,27in FHD Monitor,1,149.99,12/21/19 22:13,"582 2nd St, Portland, ME 04101" -305200,ThinkPad Laptop,1,999.99,12/30/19 15:51,"295 Cedar St, New York City, NY 10001" -305201,27in 4K Gaming Monitor,1,389.99,12/07/19 20:56,"940 Willow St, New York City, NY 10001" -305202,AAA Batteries (4-pack),1,2.99,12/18/19 17:08,"757 Meadow St, Atlanta, GA 30301" -305203,Bose SoundSport Headphones,1,99.99,12/30/19 21:24,"522 Willow St, New York City, NY 10001" -305204,USB-C Charging Cable,1,11.95,12/15/19 08:31,"737 Chestnut St, San Francisco, CA 94016" -305205,USB-C Charging Cable,1,11.95,12/20/19 10:10,"780 11th St, New York City, NY 10001" -305206,USB-C Charging Cable,1,11.95,12/14/19 08:13,"201 Dogwood St, Dallas, TX 75001" -305207,27in 4K Gaming Monitor,1,389.99,12/20/19 14:07,"164 Main St, Atlanta, GA 30301" -305208,27in 4K Gaming Monitor,1,389.99,12/27/19 20:40,"246 12th St, Boston, MA 02215" -305209,Wired Headphones,2,11.99,12/23/19 14:45,"555 Lake St, Los Angeles, CA 90001" -305210,USB-C Charging Cable,1,11.95,12/22/19 08:29,"916 River St, Los Angeles, CA 90001" -305211,34in Ultrawide Monitor,1,379.99,12/26/19 14:06,"729 Cedar St, Boston, MA 02215" -305212,Bose SoundSport Headphones,1,99.99,12/18/19 12:30,"484 Park St, Austin, TX 73301" -305213,Lightning Charging Cable,1,14.95,12/27/19 12:46,"796 Johnson St, San Francisco, CA 94016" -305214,ThinkPad Laptop,1,999.99,12/10/19 14:59,"16 Walnut St, Boston, MA 02215" -305215,AA Batteries (4-pack),1,3.84,12/22/19 11:15,"57 North St, Portland, OR 97035" -305216,Wired Headphones,3,11.99,12/30/19 08:24,"912 Walnut St, Dallas, TX 75001" -305217,AAA Batteries (4-pack),1,2.99,12/17/19 20:17,"308 5th St, Boston, MA 02215" -305218,Apple Airpods Headphones,1,150,12/14/19 13:04,"353 Ridge St, Los Angeles, CA 90001" -305219,USB-C Charging Cable,1,11.95,12/26/19 13:24,"937 Elm St, Seattle, WA 98101" -305220,27in FHD Monitor,1,149.99,12/22/19 19:26,"9 Ridge St, Seattle, WA 98101" -305221,Lightning Charging Cable,1,14.95,12/15/19 11:17,"250 Lincoln St, Boston, MA 02215" -305222,AA Batteries (4-pack),2,3.84,12/17/19 13:36,"646 Dogwood St, Los Angeles, CA 90001" -305223,Google Phone,1,600,12/22/19 11:47,"570 8th St, San Francisco, CA 94016" -305224,34in Ultrawide Monitor,1,379.99,12/24/19 13:29,"661 Ridge St, New York City, NY 10001" -305225,Wired Headphones,1,11.99,12/30/19 17:28,"172 Meadow St, San Francisco, CA 94016" -305226,Apple Airpods Headphones,1,150,12/16/19 19:04,"901 Willow St, Atlanta, GA 30301" -305227,Wired Headphones,1,11.99,12/26/19 09:07,"511 Pine St, Atlanta, GA 30301" -305228,Wired Headphones,1,11.99,12/08/19 12:28,"144 South St, Los Angeles, CA 90001" -305229,iPhone,1,700,12/16/19 23:52,"319 Dogwood St, San Francisco, CA 94016" -305229,Lightning Charging Cable,1,14.95,12/16/19 23:52,"319 Dogwood St, San Francisco, CA 94016" -305230,Flatscreen TV,1,300,12/14/19 15:46,"286 Meadow St, Boston, MA 02215" -305231,AAA Batteries (4-pack),1,2.99,12/13/19 14:22,"639 8th St, Atlanta, GA 30301" -305232,34in Ultrawide Monitor,1,379.99,12/24/19 14:16,"627 Forest St, Los Angeles, CA 90001" -305233,AA Batteries (4-pack),1,3.84,12/17/19 17:56,"904 North St, Atlanta, GA 30301" -305234,Apple Airpods Headphones,1,150,12/21/19 17:06,"902 Ridge St, Austin, TX 73301" -305235,Lightning Charging Cable,1,14.95,12/28/19 10:56,"784 South St, Seattle, WA 98101" -305236,AAA Batteries (4-pack),1,2.99,12/13/19 14:24,"434 Pine St, Dallas, TX 75001" -305237,AAA Batteries (4-pack),1,2.99,12/11/19 09:20,"35 8th St, New York City, NY 10001" -305238,ThinkPad Laptop,1,999.99,12/07/19 18:01,"807 Cedar St, Boston, MA 02215" -305239,Lightning Charging Cable,1,14.95,12/18/19 17:30,"155 Elm St, Dallas, TX 75001" -305240,ThinkPad Laptop,1,999.99,12/22/19 17:30,"985 Pine St, San Francisco, CA 94016" -305241,AA Batteries (4-pack),1,3.84,12/29/19 12:07,"712 11th St, Boston, MA 02215" -305242,Wired Headphones,1,11.99,12/27/19 18:36,"235 Jefferson St, San Francisco, CA 94016" -305243,Wired Headphones,1,11.99,12/06/19 18:42,"942 4th St, San Francisco, CA 94016" -305244,Lightning Charging Cable,1,14.95,12/08/19 18:00,"358 Madison St, Los Angeles, CA 90001" -305245,AAA Batteries (4-pack),1,2.99,12/04/19 22:06,"295 Sunset St, Los Angeles, CA 90001" -305246,Vareebadd Phone,1,400,12/31/19 08:59,"693 Maple St, Dallas, TX 75001" -305247,AA Batteries (4-pack),1,3.84,12/27/19 18:06,"139 Chestnut St, San Francisco, CA 94016" -305248,USB-C Charging Cable,1,11.95,12/25/19 15:37,"765 8th St, Seattle, WA 98101" -305249,AAA Batteries (4-pack),3,2.99,12/03/19 11:11,"961 1st St, Boston, MA 02215" -305250,USB-C Charging Cable,1,11.95,12/02/19 17:36,"909 12th St, Portland, ME 04101" -305251,Lightning Charging Cable,1,14.95,12/04/19 21:42,"712 Maple St, Los Angeles, CA 90001" -305252,Apple Airpods Headphones,1,150,12/20/19 17:00,"474 10th St, Atlanta, GA 30301" -305253,AAA Batteries (4-pack),1,2.99,12/29/19 23:47,"317 Pine St, Boston, MA 02215" -305254,Wired Headphones,1,11.99,12/06/19 21:01,"724 Elm St, Atlanta, GA 30301" -305255,USB-C Charging Cable,1,11.95,12/05/19 14:42,"474 Sunset St, Boston, MA 02215" -305256,AAA Batteries (4-pack),3,2.99,12/31/19 00:34,"311 Maple St, San Francisco, CA 94016" -305257,Apple Airpods Headphones,1,150,12/01/19 20:38,"932 Cherry St, Austin, TX 73301" -305258,AA Batteries (4-pack),1,3.84,12/14/19 07:15,"88 Pine St, New York City, NY 10001" -305258,AAA Batteries (4-pack),2,2.99,12/14/19 07:15,"88 Pine St, New York City, NY 10001" -305259,iPhone,1,700,12/22/19 18:58,"467 Center St, Boston, MA 02215" -305259,Wired Headphones,1,11.99,12/22/19 18:58,"467 Center St, Boston, MA 02215" -305260,USB-C Charging Cable,1,11.95,12/01/19 10:49,"227 14th St, Portland, OR 97035" -305261,AA Batteries (4-pack),1,3.84,12/17/19 16:04,"44 South St, Dallas, TX 75001" -305262,AA Batteries (4-pack),1,3.84,12/15/19 07:24,"998 Meadow St, Portland, OR 97035" -305263,AAA Batteries (4-pack),1,2.99,12/13/19 20:02,"475 Meadow St, San Francisco, CA 94016" -305264,Apple Airpods Headphones,1,150,12/30/19 18:58,"785 Elm St, San Francisco, CA 94016" -305265,34in Ultrawide Monitor,1,379.99,12/15/19 13:10,"178 Elm St, Atlanta, GA 30301" -305266,Lightning Charging Cable,1,14.95,12/08/19 20:42,"540 5th St, Dallas, TX 75001" -305267,USB-C Charging Cable,1,11.95,12/01/19 16:35,"362 Willow St, San Francisco, CA 94016" -305268,iPhone,1,700,12/22/19 22:20,"516 Lincoln St, Los Angeles, CA 90001" -305269,27in FHD Monitor,1,149.99,12/09/19 09:21,"77 Jefferson St, Seattle, WA 98101" -305270,AA Batteries (4-pack),1,3.84,12/16/19 16:06,"543 5th St, San Francisco, CA 94016" -305271,AAA Batteries (4-pack),1,2.99,12/22/19 22:30,"386 13th St, San Francisco, CA 94016" -305272,Lightning Charging Cable,1,14.95,12/14/19 20:54,"847 Lakeview St, San Francisco, CA 94016" -305273,Macbook Pro Laptop,1,1700,12/28/19 14:09,"236 10th St, San Francisco, CA 94016" -305274,Wired Headphones,1,11.99,12/02/19 19:28,"322 Center St, San Francisco, CA 94016" -305275,iPhone,1,700,12/11/19 18:50,"940 Cedar St, Atlanta, GA 30301" -305276,Lightning Charging Cable,1,14.95,12/15/19 19:37,"883 Forest St, Dallas, TX 75001" -305277,AA Batteries (4-pack),1,3.84,12/28/19 20:30,"518 10th St, Los Angeles, CA 90001" -305278,USB-C Charging Cable,1,11.95,12/13/19 11:29,"983 Maple St, Los Angeles, CA 90001" -305279,USB-C Charging Cable,1,11.95,12/04/19 17:19,"427 Adams St, San Francisco, CA 94016" -305280,AA Batteries (4-pack),1,3.84,12/29/19 16:30,"177 Adams St, Portland, OR 97035" -305281,Apple Airpods Headphones,1,150,12/09/19 08:19,"721 Hickory St, San Francisco, CA 94016" -305282,USB-C Charging Cable,1,11.95,12/22/19 14:01,"788 Wilson St, Portland, ME 04101" -305283,Apple Airpods Headphones,1,150,12/21/19 07:38,"707 Cedar St, Los Angeles, CA 90001" -305284,AAA Batteries (4-pack),1,2.99,12/03/19 15:43,"782 Sunset St, New York City, NY 10001" -305285,USB-C Charging Cable,1,11.95,12/12/19 12:26,"691 Jefferson St, Portland, OR 97035" -305286,AAA Batteries (4-pack),1,2.99,12/17/19 19:01,"818 13th St, Seattle, WA 98101" -305287,Lightning Charging Cable,1,14.95,12/08/19 17:56,"393 Washington St, Austin, TX 73301" -305288,AAA Batteries (4-pack),4,2.99,12/22/19 19:28,"844 South St, Dallas, TX 75001" -305289,Apple Airpods Headphones,1,150,12/09/19 07:35,"529 South St, San Francisco, CA 94016" -305290,Bose SoundSport Headphones,1,99.99,12/18/19 17:58,"803 North St, San Francisco, CA 94016" -305291,20in Monitor,1,109.99,12/29/19 14:06,"995 Adams St, Portland, ME 04101" -305292,Bose SoundSport Headphones,1,99.99,12/05/19 20:00,"421 Lincoln St, New York City, NY 10001" -305293,Wired Headphones,1,11.99,12/03/19 16:09,"147 Cedar St, Dallas, TX 75001" -305294,Wired Headphones,1,11.99,12/26/19 17:34,"891 Willow St, San Francisco, CA 94016" -305295,Google Phone,1,600,12/23/19 20:59,"618 Elm St, San Francisco, CA 94016" -305296,AAA Batteries (4-pack),1,2.99,12/30/19 16:35,"858 Willow St, Dallas, TX 75001" -305297,ThinkPad Laptop,1,999.99,12/20/19 08:00,"732 10th St, Austin, TX 73301" -305298,USB-C Charging Cable,1,11.95,12/27/19 17:47,"701 Lincoln St, San Francisco, CA 94016" -305299,AAA Batteries (4-pack),1,2.99,12/06/19 18:43,"723 Madison St, Boston, MA 02215" -305300,AAA Batteries (4-pack),1,2.99,12/08/19 11:50,"420 5th St, San Francisco, CA 94016" -305301,20in Monitor,1,109.99,12/10/19 06:34,"582 South St, Portland, OR 97035" -305302,iPhone,1,700,12/26/19 08:58,"49 Cherry St, Boston, MA 02215" -305303,Macbook Pro Laptop,1,1700,12/07/19 20:59,"585 Elm St, Dallas, TX 75001" -305304,Google Phone,1,600,12/30/19 20:18,"524 2nd St, Los Angeles, CA 90001" -305305,Macbook Pro Laptop,1,1700,12/29/19 08:48,"814 West St, Los Angeles, CA 90001" -305306,Lightning Charging Cable,2,14.95,12/20/19 16:46,"135 Madison St, Los Angeles, CA 90001" -305307,27in FHD Monitor,1,149.99,12/18/19 13:46,"397 Johnson St, San Francisco, CA 94016" -305308,Macbook Pro Laptop,1,1700,12/25/19 17:33,"843 Main St, Boston, MA 02215" -305309,USB-C Charging Cable,2,11.95,12/01/19 21:32,"73 Hill St, Boston, MA 02215" -305310,USB-C Charging Cable,1,11.95,12/16/19 20:15,"408 Cherry St, Portland, OR 97035" -305311,27in FHD Monitor,1,149.99,12/10/19 21:08,"833 Jefferson St, Dallas, TX 75001" -305312,Wired Headphones,1,11.99,12/23/19 16:21,"385 River St, San Francisco, CA 94016" -305313,Wired Headphones,1,11.99,12/03/19 23:11,"75 13th St, Los Angeles, CA 90001" -305314,USB-C Charging Cable,1,11.95,12/03/19 21:13,"711 Lakeview St, Dallas, TX 75001" -305315,USB-C Charging Cable,1,11.95,12/06/19 12:10,"638 Main St, Boston, MA 02215" -305316,Wired Headphones,1,11.99,12/10/19 17:06,"957 Cedar St, San Francisco, CA 94016" -305316,USB-C Charging Cable,1,11.95,12/10/19 17:06,"957 Cedar St, San Francisco, CA 94016" -305317,Wired Headphones,1,11.99,12/10/19 14:21,"554 West St, Los Angeles, CA 90001" -305318,34in Ultrawide Monitor,1,379.99,12/29/19 18:19,"863 12th St, New York City, NY 10001" -305319,USB-C Charging Cable,1,11.95,12/31/19 05:26,"620 Forest St, Seattle, WA 98101" -305320,AAA Batteries (4-pack),1,2.99,12/21/19 22:27,"291 5th St, Los Angeles, CA 90001" -305321,Apple Airpods Headphones,1,150,12/22/19 13:10,"952 9th St, Dallas, TX 75001" -305322,27in FHD Monitor,1,149.99,12/08/19 10:58,"397 Maple St, Boston, MA 02215" -305323,Bose SoundSport Headphones,1,99.99,12/02/19 15:39,"801 Chestnut St, San Francisco, CA 94016" -305324,Lightning Charging Cable,1,14.95,12/08/19 12:40,"204 1st St, Portland, OR 97035" -305325,Google Phone,1,600,12/15/19 14:16,"712 Forest St, New York City, NY 10001" -305325,USB-C Charging Cable,1,11.95,12/15/19 14:16,"712 Forest St, New York City, NY 10001" -305326,iPhone,1,700,12/06/19 17:52,"877 Lake St, Seattle, WA 98101" -305327,27in FHD Monitor,1,149.99,12/29/19 23:08,"792 13th St, Boston, MA 02215" -305328,AA Batteries (4-pack),1,3.84,12/28/19 23:58,"676 Park St, Atlanta, GA 30301" -305329,Wired Headphones,1,11.99,12/10/19 16:57,"373 Park St, Atlanta, GA 30301" -305330,Bose SoundSport Headphones,1,99.99,12/23/19 07:17,"446 Dogwood St, Los Angeles, CA 90001" -305331,USB-C Charging Cable,2,11.95,12/24/19 20:04,"628 Willow St, San Francisco, CA 94016" -305332,27in FHD Monitor,1,149.99,12/17/19 20:32,"848 Hill St, Los Angeles, CA 90001" -305333,AAA Batteries (4-pack),1,2.99,12/23/19 09:53,"437 8th St, Austin, TX 73301" -305333,Apple Airpods Headphones,1,150,12/23/19 09:53,"437 8th St, Austin, TX 73301" -305334,AAA Batteries (4-pack),2,2.99,12/31/19 17:31,"450 4th St, San Francisco, CA 94016" -305335,AA Batteries (4-pack),1,3.84,12/03/19 11:22,"89 Elm St, Boston, MA 02215" -305336,Apple Airpods Headphones,1,150,12/11/19 16:50,"303 Pine St, Austin, TX 73301" -305337,Bose SoundSport Headphones,1,99.99,12/26/19 06:01,"331 9th St, Boston, MA 02215" -305338,Bose SoundSport Headphones,1,99.99,12/07/19 19:59,"605 1st St, San Francisco, CA 94016" -305339,Google Phone,1,600,12/07/19 20:17,"658 River St, New York City, NY 10001" -305339,Wired Headphones,1,11.99,12/07/19 20:17,"658 River St, New York City, NY 10001" -305340,Bose SoundSport Headphones,1,99.99,12/31/19 00:06,"737 Walnut St, Seattle, WA 98101" -305341,Lightning Charging Cable,1,14.95,12/19/19 06:29,"9 6th St, Seattle, WA 98101" -305341,AA Batteries (4-pack),2,3.84,12/19/19 06:29,"9 6th St, Seattle, WA 98101" -305342,USB-C Charging Cable,1,11.95,12/04/19 20:25,"123 Washington St, Los Angeles, CA 90001" -305343,Wired Headphones,1,11.99,12/21/19 18:15,"273 8th St, Austin, TX 73301" -305344,Lightning Charging Cable,1,14.95,12/31/19 23:07,"746 Chestnut St, Seattle, WA 98101" -305345,Flatscreen TV,1,300,12/19/19 18:37,"327 Madison St, Los Angeles, CA 90001" -305346,USB-C Charging Cable,1,11.95,12/04/19 08:49,"494 2nd St, Atlanta, GA 30301" -305347,Apple Airpods Headphones,1,150,12/03/19 18:43,"736 Jefferson St, Los Angeles, CA 90001" -305348,AA Batteries (4-pack),1,3.84,12/20/19 12:54,"834 Maple St, Los Angeles, CA 90001" -305349,Wired Headphones,1,11.99,12/24/19 13:09,"311 Willow St, Los Angeles, CA 90001" -305350,Lightning Charging Cable,1,14.95,12/19/19 12:42,"587 9th St, Los Angeles, CA 90001" -305351,Apple Airpods Headphones,1,150,12/22/19 16:37,"50 11th St, San Francisco, CA 94016" -305351,Google Phone,1,600,12/22/19 16:37,"50 11th St, San Francisco, CA 94016" -305352,34in Ultrawide Monitor,1,379.99,12/25/19 15:28,"539 Main St, San Francisco, CA 94016" -305353,AA Batteries (4-pack),1,3.84,12/01/19 09:39,"657 Willow St, Portland, OR 97035" -305354,USB-C Charging Cable,1,11.95,12/03/19 16:13,"933 Church St, Austin, TX 73301" -305355,Wired Headphones,1,11.99,12/13/19 10:14,"431 South St, New York City, NY 10001" -305356,AA Batteries (4-pack),3,3.84,12/23/19 08:54,"462 Elm St, New York City, NY 10001" -305357,Lightning Charging Cable,1,14.95,12/20/19 18:40,"659 Jackson St, Los Angeles, CA 90001" -305358,Wired Headphones,1,11.99,12/01/19 11:58,"458 9th St, Los Angeles, CA 90001" -305359,USB-C Charging Cable,1,11.95,12/03/19 16:08,"104 Jackson St, San Francisco, CA 94016" -305360,USB-C Charging Cable,1,11.95,12/21/19 17:04,"443 Wilson St, San Francisco, CA 94016" -305361,USB-C Charging Cable,1,11.95,12/18/19 22:22,"69 Wilson St, San Francisco, CA 94016" -305362,Wired Headphones,1,11.99,12/14/19 18:19,"943 4th St, Atlanta, GA 30301" -305363,ThinkPad Laptop,1,999.99,12/03/19 15:10,"212 Hill St, San Francisco, CA 94016" -305364,iPhone,1,700,12/08/19 12:25,"627 14th St, Boston, MA 02215" -305365,Bose SoundSport Headphones,1,99.99,12/27/19 21:25,"58 Dogwood St, Seattle, WA 98101" -305366,AA Batteries (4-pack),1,3.84,12/20/19 16:19,"634 Lincoln St, Boston, MA 02215" -305367,Lightning Charging Cable,2,14.95,12/11/19 11:51,"636 6th St, New York City, NY 10001" -305368,USB-C Charging Cable,1,11.95,12/05/19 15:25,"64 Lincoln St, San Francisco, CA 94016" -305369,AAA Batteries (4-pack),2,2.99,12/20/19 12:48,"137 Cherry St, Seattle, WA 98101" -305370,AA Batteries (4-pack),3,3.84,12/04/19 12:45,"156 Dogwood St, San Francisco, CA 94016" -305371,Wired Headphones,1,11.99,12/21/19 12:38,"514 12th St, New York City, NY 10001" -305372,USB-C Charging Cable,1,11.95,12/25/19 19:47,"885 West St, San Francisco, CA 94016" -305373,27in 4K Gaming Monitor,1,389.99,12/23/19 17:24,"493 4th St, Los Angeles, CA 90001" -305374,Lightning Charging Cable,1,14.95,12/27/19 13:54,"922 5th St, Portland, ME 04101" -305375,Lightning Charging Cable,1,14.95,12/14/19 13:13,"899 Wilson St, San Francisco, CA 94016" -305376,Apple Airpods Headphones,1,150,12/27/19 19:11,"718 10th St, New York City, NY 10001" -305377,AAA Batteries (4-pack),1,2.99,12/28/19 18:26,"920 2nd St, Dallas, TX 75001" -305378,Apple Airpods Headphones,1,150,12/19/19 10:03,"645 West St, Austin, TX 73301" -305379,AAA Batteries (4-pack),1,2.99,12/07/19 11:32,"575 Lincoln St, San Francisco, CA 94016" -305380,ThinkPad Laptop,1,999.99,12/27/19 19:13,"25 Meadow St, New York City, NY 10001" -305381,Flatscreen TV,1,300,12/11/19 00:28,"387 Church St, New York City, NY 10001" -305382,27in FHD Monitor,1,149.99,12/05/19 21:14,"996 Ridge St, Boston, MA 02215" -305382,Apple Airpods Headphones,1,150,12/05/19 21:14,"996 Ridge St, Boston, MA 02215" -305383,Vareebadd Phone,1,400,12/24/19 19:54,"192 2nd St, Boston, MA 02215" -305384,USB-C Charging Cable,1,11.95,12/11/19 16:11,"307 River St, San Francisco, CA 94016" -305385,27in FHD Monitor,1,149.99,12/07/19 14:16,"827 Johnson St, Boston, MA 02215" -305386,Bose SoundSport Headphones,1,99.99,12/03/19 19:26,"658 5th St, Austin, TX 73301" -305387,AAA Batteries (4-pack),1,2.99,12/15/19 18:31,"947 11th St, Boston, MA 02215" -305388,Bose SoundSport Headphones,1,99.99,12/25/19 21:22,"351 13th St, San Francisco, CA 94016" -305389,Wired Headphones,1,11.99,12/17/19 12:35,"731 6th St, Seattle, WA 98101" -305390,Lightning Charging Cable,1,14.95,12/05/19 16:59,"601 Lakeview St, Atlanta, GA 30301" -305391,AAA Batteries (4-pack),1,2.99,12/18/19 08:15,"465 Maple St, San Francisco, CA 94016" -305392,AA Batteries (4-pack),1,3.84,12/27/19 09:45,"867 7th St, Dallas, TX 75001" -305393,Lightning Charging Cable,1,14.95,12/12/19 09:52,"10 Walnut St, Dallas, TX 75001" -305394,USB-C Charging Cable,1,11.95,12/19/19 07:53,"838 Cedar St, Dallas, TX 75001" -305395,Flatscreen TV,1,300,12/19/19 19:03,"692 Hickory St, Los Angeles, CA 90001" -305396,Flatscreen TV,1,300,12/23/19 17:26,"474 8th St, Dallas, TX 75001" -305397,USB-C Charging Cable,1,11.95,12/30/19 15:27,"497 10th St, New York City, NY 10001" -305398,AAA Batteries (4-pack),1,2.99,12/29/19 15:48,"843 West St, Portland, OR 97035" -305399,AA Batteries (4-pack),1,3.84,12/02/19 13:19,"748 Jefferson St, New York City, NY 10001" -305400,34in Ultrawide Monitor,1,379.99,12/05/19 06:40,"491 Jefferson St, Los Angeles, CA 90001" -305401,Apple Airpods Headphones,1,150,12/07/19 21:24,"537 10th St, Dallas, TX 75001" -305402,ThinkPad Laptop,1,999.99,12/10/19 20:29,"538 9th St, New York City, NY 10001" -305403,Google Phone,1,600,12/19/19 13:14,"209 Hill St, Austin, TX 73301" -305404,AA Batteries (4-pack),3,3.84,12/14/19 14:40,"762 Spruce St, Portland, ME 04101" -305405,Apple Airpods Headphones,1,150,12/31/19 12:02,"966 Meadow St, Dallas, TX 75001" -305406,USB-C Charging Cable,1,11.95,12/20/19 23:24,"824 Adams St, New York City, NY 10001" -305407,AAA Batteries (4-pack),2,2.99,12/26/19 23:41,"695 Lake St, New York City, NY 10001" -305408,Bose SoundSport Headphones,1,99.99,12/20/19 19:52,"397 11th St, San Francisco, CA 94016" -305409,27in FHD Monitor,1,149.99,12/19/19 11:53,"941 Pine St, New York City, NY 10001" -305410,Flatscreen TV,1,300,12/18/19 21:20,"90 Hill St, Boston, MA 02215" -305411,AA Batteries (4-pack),1,3.84,12/26/19 22:08,"489 Elm St, San Francisco, CA 94016" -305412,27in FHD Monitor,1,149.99,12/24/19 08:58,"278 Wilson St, New York City, NY 10001" -305413,Wired Headphones,2,11.99,12/02/19 22:16,"550 4th St, San Francisco, CA 94016" -305414,USB-C Charging Cable,1,11.95,12/30/19 17:15,"596 9th St, Los Angeles, CA 90001" -305415,AA Batteries (4-pack),1,3.84,12/14/19 21:38,"118 Sunset St, San Francisco, CA 94016" -305416,AA Batteries (4-pack),2,3.84,12/22/19 17:15,"343 1st St, San Francisco, CA 94016" -305417,AAA Batteries (4-pack),2,2.99,12/11/19 22:44,"560 Park St, Seattle, WA 98101" -305418,Macbook Pro Laptop,1,1700,12/03/19 13:48,"21 Chestnut St, Portland, OR 97035" -305419,27in 4K Gaming Monitor,1,389.99,12/02/19 13:53,"635 Lincoln St, Los Angeles, CA 90001" -305420,AA Batteries (4-pack),1,3.84,12/31/19 21:58,"6 Ridge St, San Francisco, CA 94016" -305421,Macbook Pro Laptop,1,1700,12/29/19 16:16,"898 West St, Atlanta, GA 30301" -305422,Wired Headphones,1,11.99,12/20/19 19:51,"730 River St, Los Angeles, CA 90001" -305423,Wired Headphones,1,11.99,12/31/19 10:58,"702 Chestnut St, San Francisco, CA 94016" -305423,Wired Headphones,1,11.99,12/31/19 10:58,"702 Chestnut St, San Francisco, CA 94016" -305424,Apple Airpods Headphones,1,150,12/23/19 10:48,"949 14th St, Atlanta, GA 30301" -305425,Google Phone,1,600,12/24/19 12:27,"179 5th St, San Francisco, CA 94016" -305426,Lightning Charging Cable,1,14.95,12/30/19 00:04,"666 Jefferson St, New York City, NY 10001" -305427,AA Batteries (4-pack),2,3.84,12/16/19 06:29,"794 Church St, San Francisco, CA 94016" -305428,Bose SoundSport Headphones,1,99.99,12/19/19 17:57,"96 South St, San Francisco, CA 94016" -305429,Lightning Charging Cable,1,14.95,12/13/19 17:57,"108 Church St, Seattle, WA 98101" -305430,27in FHD Monitor,1,149.99,12/21/19 18:34,"528 Lincoln St, New York City, NY 10001" -305431,Wired Headphones,1,11.99,12/12/19 23:54,"499 Madison St, Austin, TX 73301" -305432,Lightning Charging Cable,1,14.95,12/24/19 21:12,"931 Dogwood St, San Francisco, CA 94016" -305433,AA Batteries (4-pack),1,3.84,12/14/19 11:29,"473 10th St, Dallas, TX 75001" -305434,AAA Batteries (4-pack),1,2.99,12/06/19 18:40,"984 Pine St, Boston, MA 02215" -305435,Lightning Charging Cable,2,14.95,12/23/19 06:48,"471 Jefferson St, Atlanta, GA 30301" -305436,Lightning Charging Cable,1,14.95,12/26/19 22:10,"591 Adams St, Los Angeles, CA 90001" -305437,AA Batteries (4-pack),2,3.84,12/09/19 13:12,"57 Center St, San Francisco, CA 94016" -305438,Macbook Pro Laptop,1,1700,12/10/19 19:46,"366 5th St, Los Angeles, CA 90001" -305438,27in FHD Monitor,1,149.99,12/10/19 19:46,"366 5th St, Los Angeles, CA 90001" -305439,ThinkPad Laptop,1,999.99,12/09/19 09:11,"982 South St, New York City, NY 10001" -305440,Macbook Pro Laptop,1,1700,12/28/19 15:04,"712 8th St, New York City, NY 10001" -305441,ThinkPad Laptop,1,999.99,12/03/19 22:00,"588 Main St, Portland, OR 97035" -305442,Wired Headphones,1,11.99,12/31/19 18:04,"737 Jackson St, San Francisco, CA 94016" -305443,Apple Airpods Headphones,1,150,12/15/19 23:08,"12 Walnut St, New York City, NY 10001" -305444,Lightning Charging Cable,1,14.95,12/28/19 20:35,"45 Willow St, Atlanta, GA 30301" -305445,Lightning Charging Cable,1,14.95,12/14/19 18:46,"910 Forest St, San Francisco, CA 94016" -305446,AAA Batteries (4-pack),1,2.99,12/08/19 11:16,"768 Wilson St, New York City, NY 10001" -305447,AA Batteries (4-pack),1,3.84,12/03/19 11:18,"116 9th St, Boston, MA 02215" -305448,Wired Headphones,1,11.99,12/19/19 07:06,"17 Church St, San Francisco, CA 94016" -305449,USB-C Charging Cable,1,11.95,12/08/19 14:20,"375 South St, Los Angeles, CA 90001" -305450,Apple Airpods Headphones,1,150,12/17/19 22:03,"696 Sunset St, Dallas, TX 75001" -305451,Macbook Pro Laptop,1,1700,12/28/19 18:22,"470 Walnut St, San Francisco, CA 94016" -305452,AAA Batteries (4-pack),5,2.99,12/16/19 07:04,"308 Walnut St, New York City, NY 10001" -305453,USB-C Charging Cable,1,11.95,12/08/19 14:23,"400 Adams St, Los Angeles, CA 90001" -305454,AAA Batteries (4-pack),1,2.99,12/24/19 00:15,"891 Cedar St, Los Angeles, CA 90001" -305455,27in FHD Monitor,1,149.99,12/16/19 17:36,"392 Madison St, Portland, OR 97035" -305456,USB-C Charging Cable,1,11.95,12/09/19 07:40,"613 Jackson St, Seattle, WA 98101" -305457,Lightning Charging Cable,1,14.95,12/13/19 08:32,"650 7th St, New York City, NY 10001" -305458,AAA Batteries (4-pack),2,2.99,12/23/19 17:55,"354 6th St, New York City, NY 10001" -305459,AAA Batteries (4-pack),1,2.99,12/24/19 19:13,"864 West St, Dallas, TX 75001" -305460,AA Batteries (4-pack),2,3.84,12/08/19 18:55,"859 Cherry St, New York City, NY 10001" -305461,AAA Batteries (4-pack),1,2.99,12/05/19 18:22,"826 Spruce St, Portland, OR 97035" -305462,Apple Airpods Headphones,1,150,12/18/19 05:43,"826 10th St, San Francisco, CA 94016" -305463,Apple Airpods Headphones,1,150,12/16/19 18:42,"7 Park St, San Francisco, CA 94016" -305464,Wired Headphones,2,11.99,12/15/19 12:42,"927 Ridge St, Boston, MA 02215" -305465,Wired Headphones,1,11.99,12/28/19 17:28,"939 14th St, San Francisco, CA 94016" -305466,AA Batteries (4-pack),2,3.84,12/07/19 21:54,"423 Lake St, New York City, NY 10001" -305467,AA Batteries (4-pack),1,3.84,12/10/19 06:05,"547 South St, Los Angeles, CA 90001" -305468,AAA Batteries (4-pack),2,2.99,12/20/19 16:29,"604 Jackson St, Dallas, TX 75001" -305469,ThinkPad Laptop,1,999.99,12/29/19 18:07,"372 Willow St, San Francisco, CA 94016" -305470,Apple Airpods Headphones,1,150,12/20/19 21:27,"45 Highland St, San Francisco, CA 94016" -305471,Apple Airpods Headphones,1,150,12/06/19 22:30,"909 11th St, Los Angeles, CA 90001" -305472,Wired Headphones,1,11.99,12/25/19 10:00,"499 Jackson St, Austin, TX 73301" -305473,Bose SoundSport Headphones,1,99.99,12/11/19 22:08,"719 2nd St, New York City, NY 10001" -305474,27in FHD Monitor,1,149.99,12/11/19 14:35,"187 Washington St, San Francisco, CA 94016" -305475,AA Batteries (4-pack),3,3.84,12/14/19 20:19,"834 Main St, San Francisco, CA 94016" -305476,Flatscreen TV,1,300,12/27/19 11:51,"255 Center St, Dallas, TX 75001" -305477,AAA Batteries (4-pack),2,2.99,12/10/19 01:30,"39 Adams St, San Francisco, CA 94016" -305478,iPhone,1,700,12/06/19 11:52,"372 Lincoln St, Dallas, TX 75001" -305479,Lightning Charging Cable,1,14.95,12/28/19 13:54,"666 Chestnut St, San Francisco, CA 94016" -305480,27in 4K Gaming Monitor,1,389.99,12/24/19 10:31,"509 Elm St, Dallas, TX 75001" -305481,Vareebadd Phone,1,400,12/31/19 10:05,"69 Chestnut St, Los Angeles, CA 90001" -305482,Google Phone,1,600,12/10/19 12:25,"229 Johnson St, San Francisco, CA 94016" -305483,27in FHD Monitor,1,149.99,12/26/19 08:33,"61 South St, Los Angeles, CA 90001" -305484,Apple Airpods Headphones,1,150,12/22/19 00:46,"426 Main St, Boston, MA 02215" -305485,Macbook Pro Laptop,1,1700,12/20/19 05:48,"971 Maple St, New York City, NY 10001" -305486,Apple Airpods Headphones,1,150,12/01/19 19:31,"896 Jefferson St, Seattle, WA 98101" -305487,USB-C Charging Cable,1,11.95,12/25/19 09:14,"836 Dogwood St, Boston, MA 02215" -305488,USB-C Charging Cable,1,11.95,12/13/19 22:53,"278 Lakeview St, Atlanta, GA 30301" -305489,Macbook Pro Laptop,1,1700,12/29/19 20:21,"933 Adams St, Atlanta, GA 30301" -305490,AAA Batteries (4-pack),1,2.99,12/07/19 06:55,"328 2nd St, Boston, MA 02215" -305491,Wired Headphones,1,11.99,12/25/19 10:18,"378 14th St, San Francisco, CA 94016" -305492,USB-C Charging Cable,1,11.95,12/29/19 20:56,"434 Adams St, Portland, OR 97035" -305493,USB-C Charging Cable,1,11.95,12/30/19 18:40,"775 Lincoln St, New York City, NY 10001" -305494,USB-C Charging Cable,1,11.95,12/15/19 22:22,"10 10th St, New York City, NY 10001" -305495,Wired Headphones,1,11.99,12/17/19 12:21,"151 Maple St, Austin, TX 73301" -305496,Apple Airpods Headphones,1,150,12/21/19 18:37,"416 Washington St, Atlanta, GA 30301" -305497,USB-C Charging Cable,1,11.95,12/27/19 09:56,"764 Hill St, Dallas, TX 75001" -305498,AAA Batteries (4-pack),2,2.99,12/08/19 09:58,"696 12th St, Los Angeles, CA 90001" -305498,iPhone,1,700,12/08/19 09:58,"696 12th St, Los Angeles, CA 90001" -305499,Lightning Charging Cable,1,14.95,12/02/19 08:53,"398 13th St, Atlanta, GA 30301" -305500,Wired Headphones,1,11.99,12/30/19 10:32,"962 Maple St, New York City, NY 10001" -305501,iPhone,1,700,12/01/19 21:16,"330 Willow St, Portland, ME 04101" -305502,AAA Batteries (4-pack),1,2.99,12/16/19 21:08,"920 1st St, Atlanta, GA 30301" -305503,AAA Batteries (4-pack),1,2.99,12/28/19 19:21,"947 Highland St, New York City, NY 10001" -305504,USB-C Charging Cable,1,11.95,12/07/19 12:01,"847 Lincoln St, Austin, TX 73301" -305505,USB-C Charging Cable,1,11.95,12/14/19 18:30,"276 Ridge St, Dallas, TX 75001" -305506,USB-C Charging Cable,1,11.95,12/25/19 16:20,"999 11th St, San Francisco, CA 94016" -305507,Google Phone,1,600,12/16/19 14:16,"846 Sunset St, San Francisco, CA 94016" -305508,Bose SoundSport Headphones,1,99.99,12/06/19 17:00,"420 West St, San Francisco, CA 94016" -305509,Bose SoundSport Headphones,1,99.99,12/30/19 20:22,"936 11th St, Boston, MA 02215" -305510,Bose SoundSport Headphones,1,99.99,12/04/19 15:26,"16 Hill St, Atlanta, GA 30301" -305511,Lightning Charging Cable,1,14.95,12/12/19 18:01,"66 West St, Los Angeles, CA 90001" -305512,27in 4K Gaming Monitor,1,389.99,12/27/19 12:44,"466 Main St, New York City, NY 10001" -305513,AAA Batteries (4-pack),1,2.99,12/02/19 21:06,"406 2nd St, San Francisco, CA 94016" -305514,Lightning Charging Cable,1,14.95,12/01/19 20:26,"492 Lincoln St, Portland, OR 97035" -305515,Lightning Charging Cable,1,14.95,12/14/19 18:58,"403 Jefferson St, Portland, OR 97035" -305516,34in Ultrawide Monitor,1,379.99,12/24/19 14:00,"27 Madison St, Los Angeles, CA 90001" -305517,AA Batteries (4-pack),1,3.84,12/17/19 14:26,"509 1st St, Seattle, WA 98101" -305518,Apple Airpods Headphones,1,150,12/09/19 10:42,"480 8th St, San Francisco, CA 94016" -305519,AAA Batteries (4-pack),1,2.99,12/25/19 12:39,"585 Lakeview St, Seattle, WA 98101" -305520,USB-C Charging Cable,1,11.95,12/21/19 11:27,"470 Forest St, San Francisco, CA 94016" -305521,Wired Headphones,1,11.99,12/20/19 16:35,"999 Maple St, San Francisco, CA 94016" -305522,Google Phone,1,600,12/18/19 11:17,"778 Hill St, Austin, TX 73301" -305523,Apple Airpods Headphones,1,150,12/05/19 20:16,"196 12th St, Portland, OR 97035" -305524,USB-C Charging Cable,1,11.95,12/10/19 17:29,"132 Elm St, Portland, ME 04101" -305525,USB-C Charging Cable,1,11.95,12/18/19 20:07,"928 5th St, Atlanta, GA 30301" -305526,USB-C Charging Cable,1,11.95,12/17/19 13:03,"587 10th St, Dallas, TX 75001" -305527,iPhone,1,700,12/26/19 15:47,"526 12th St, San Francisco, CA 94016" -305527,Apple Airpods Headphones,1,150,12/26/19 15:47,"526 12th St, San Francisco, CA 94016" -305528,AAA Batteries (4-pack),3,2.99,12/31/19 07:38,"659 Highland St, New York City, NY 10001" -305529,AAA Batteries (4-pack),2,2.99,12/19/19 17:27,"118 Park St, Atlanta, GA 30301" -305530,Bose SoundSport Headphones,1,99.99,12/29/19 15:42,"45 Ridge St, Dallas, TX 75001" -305531,AA Batteries (4-pack),4,3.84,12/31/19 09:37,"106 13th St, Los Angeles, CA 90001" -305532,AA Batteries (4-pack),1,3.84,12/17/19 19:50,"465 Forest St, San Francisco, CA 94016" -305533,Lightning Charging Cable,1,14.95,12/03/19 16:32,"147 River St, New York City, NY 10001" -305534,27in 4K Gaming Monitor,1,389.99,12/26/19 15:25,"105 North St, Los Angeles, CA 90001" -305535,AA Batteries (4-pack),1,3.84,12/09/19 23:03,"197 8th St, Boston, MA 02215" -305536,AA Batteries (4-pack),2,3.84,12/31/19 18:30,"85 Washington St, Austin, TX 73301" -305537,AA Batteries (4-pack),1,3.84,12/09/19 20:28,"106 14th St, Boston, MA 02215" -305538,Apple Airpods Headphones,1,150,01/01/20 01:00,"693 1st St, Portland, OR 97035" -305539,Apple Airpods Headphones,1,150,12/19/19 20:21,"944 14th St, San Francisco, CA 94016" -305540,Wired Headphones,1,11.99,12/26/19 20:05,"632 Forest St, San Francisco, CA 94016" -305541,AA Batteries (4-pack),1,3.84,12/04/19 11:46,"582 Spruce St, New York City, NY 10001" -305542,Lightning Charging Cable,1,14.95,12/17/19 14:19,"538 Lincoln St, New York City, NY 10001" -305543,AA Batteries (4-pack),2,3.84,12/03/19 13:51,"715 Forest St, New York City, NY 10001" -305544,Flatscreen TV,1,300,12/13/19 22:23,"982 Adams St, San Francisco, CA 94016" -305545,Bose SoundSport Headphones,1,99.99,12/25/19 17:02,"775 9th St, Boston, MA 02215" -305546,AAA Batteries (4-pack),2,2.99,12/14/19 21:52,"352 Cedar St, Seattle, WA 98101" -305547,iPhone,1,700,12/06/19 09:07,"395 Hill St, Seattle, WA 98101" -305548,Lightning Charging Cable,1,14.95,12/04/19 08:22,"551 Johnson St, San Francisco, CA 94016" -305549,20in Monitor,1,109.99,12/18/19 18:05,"941 Lakeview St, San Francisco, CA 94016" -305550,USB-C Charging Cable,1,11.95,12/18/19 13:01,"178 2nd St, Dallas, TX 75001" -305551,USB-C Charging Cable,1,11.95,12/16/19 19:51,"577 Meadow St, Boston, MA 02215" -305552,Google Phone,1,600,12/08/19 06:11,"897 14th St, Atlanta, GA 30301" -305553,AAA Batteries (4-pack),2,2.99,12/27/19 19:06,"950 Hill St, Boston, MA 02215" -305554,iPhone,1,700,12/13/19 00:37,"347 Center St, Boston, MA 02215" -305555,AAA Batteries (4-pack),2,2.99,12/08/19 19:56,"363 Walnut St, Boston, MA 02215" -305556,Vareebadd Phone,1,400,12/17/19 21:49,"234 Dogwood St, Portland, OR 97035" -305556,Wired Headphones,1,11.99,12/17/19 21:49,"234 Dogwood St, Portland, OR 97035" -305557,AAA Batteries (4-pack),1,2.99,12/15/19 13:04,"47 Cedar St, Portland, OR 97035" -305558,AA Batteries (4-pack),1,3.84,12/15/19 11:11,"295 14th St, New York City, NY 10001" -305558,Wired Headphones,1,11.99,12/15/19 11:11,"295 14th St, New York City, NY 10001" -305559,Lightning Charging Cable,1,14.95,12/06/19 21:25,"100 Hickory St, New York City, NY 10001" -305560,34in Ultrawide Monitor,1,379.99,12/12/19 14:52,"651 Maple St, Austin, TX 73301" -305561,27in FHD Monitor,1,149.99,12/08/19 11:45,"305 South St, Los Angeles, CA 90001" -305562,Wired Headphones,2,11.99,12/19/19 08:14,"336 Highland St, New York City, NY 10001" -305563,Lightning Charging Cable,1,14.95,12/22/19 15:37,"779 11th St, Seattle, WA 98101" -305564,Lightning Charging Cable,1,14.95,12/10/19 11:52,"312 Jefferson St, New York City, NY 10001" -305565,Bose SoundSport Headphones,1,99.99,12/09/19 10:52,"241 Jefferson St, Austin, TX 73301" -305566,27in FHD Monitor,1,149.99,12/26/19 20:53,"730 4th St, San Francisco, CA 94016" -305567,AA Batteries (4-pack),1,3.84,12/25/19 11:26,"590 Jefferson St, Boston, MA 02215" -305568,Bose SoundSport Headphones,1,99.99,12/21/19 11:46,"778 Johnson St, Los Angeles, CA 90001" -305569,Wired Headphones,1,11.99,12/17/19 13:37,"798 Forest St, Austin, TX 73301" -305570,USB-C Charging Cable,2,11.95,12/11/19 14:19,"610 Dogwood St, Los Angeles, CA 90001" -305571,Lightning Charging Cable,1,14.95,12/15/19 09:49,"761 1st St, Atlanta, GA 30301" -,,,,, -305572,AAA Batteries (4-pack),2,2.99,12/27/19 21:16,"257 Lincoln St, Boston, MA 02215" -305573,Flatscreen TV,1,300,12/13/19 13:51,"982 South St, Los Angeles, CA 90001" -305574,USB-C Charging Cable,1,11.95,12/08/19 08:35,"848 Willow St, New York City, NY 10001" -305575,ThinkPad Laptop,1,999.99,12/01/19 20:14,"283 Park St, Los Angeles, CA 90001" -305576,Apple Airpods Headphones,1,150,12/13/19 21:38,"663 13th St, Boston, MA 02215" -305577,Apple Airpods Headphones,1,150,12/13/19 18:28,"283 13th St, Los Angeles, CA 90001" -305578,AAA Batteries (4-pack),3,2.99,12/30/19 16:00,"916 West St, Boston, MA 02215" -305579,ThinkPad Laptop,1,999.99,12/16/19 14:32,"102 Hickory St, Los Angeles, CA 90001" -305580,Lightning Charging Cable,1,14.95,12/03/19 10:40,"471 Lakeview St, Boston, MA 02215" -305581,Google Phone,1,600,12/20/19 17:37,"38 Meadow St, San Francisco, CA 94016" -305581,Wired Headphones,1,11.99,12/20/19 17:37,"38 Meadow St, San Francisco, CA 94016" -305582,Apple Airpods Headphones,1,150,12/04/19 23:16,"260 9th St, Seattle, WA 98101" -305583,USB-C Charging Cable,1,11.95,12/22/19 10:51,"235 South St, Seattle, WA 98101" -305584,Lightning Charging Cable,1,14.95,12/14/19 15:36,"959 12th St, Boston, MA 02215" -305585,USB-C Charging Cable,1,11.95,12/18/19 11:29,"386 1st St, Dallas, TX 75001" -305586,Wired Headphones,1,11.99,12/08/19 19:55,"623 Madison St, Los Angeles, CA 90001" -305587,USB-C Charging Cable,1,11.95,12/28/19 12:07,"479 Park St, Portland, OR 97035" -305588,USB-C Charging Cable,1,11.95,12/21/19 10:10,"492 Dogwood St, Boston, MA 02215" -305589,Google Phone,1,600,12/24/19 11:17,"379 Johnson St, San Francisco, CA 94016" -305590,Apple Airpods Headphones,1,150,12/07/19 19:34,"589 Pine St, Seattle, WA 98101" -305591,AAA Batteries (4-pack),1,2.99,12/07/19 12:56,"636 Forest St, Austin, TX 73301" -305592,AAA Batteries (4-pack),1,2.99,12/12/19 11:10,"58 Willow St, Portland, ME 04101" -305593,AA Batteries (4-pack),1,3.84,12/18/19 23:45,"294 14th St, Atlanta, GA 30301" -305594,LG Washing Machine,1,600.0,12/17/19 13:29,"739 Jefferson St, San Francisco, CA 94016" -305595,Wired Headphones,1,11.99,12/27/19 17:14,"926 Church St, San Francisco, CA 94016" -305596,27in FHD Monitor,1,149.99,12/05/19 13:29,"74 Ridge St, Portland, ME 04101" -305597,Apple Airpods Headphones,1,150,12/18/19 17:41,"351 Park St, Atlanta, GA 30301" -305598,USB-C Charging Cable,1,11.95,12/24/19 19:34,"269 Sunset St, San Francisco, CA 94016" -305599,Flatscreen TV,1,300,12/27/19 07:43,"599 Church St, San Francisco, CA 94016" -305600,USB-C Charging Cable,1,11.95,12/12/19 10:54,"274 7th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -305601,Apple Airpods Headphones,1,150,12/03/19 11:18,"814 10th St, Austin, TX 73301" -305602,AA Batteries (4-pack),1,3.84,12/17/19 18:56,"625 10th St, Los Angeles, CA 90001" -305603,27in FHD Monitor,1,149.99,12/25/19 15:21,"654 North St, Seattle, WA 98101" -305604,Apple Airpods Headphones,1,150,12/28/19 02:54,"690 Lincoln St, Los Angeles, CA 90001" -305605,Apple Airpods Headphones,1,150,12/16/19 16:02,"583 Maple St, Los Angeles, CA 90001" -305606,AA Batteries (4-pack),2,3.84,12/14/19 21:19,"885 Pine St, Dallas, TX 75001" -305607,Bose SoundSport Headphones,1,99.99,12/04/19 20:01,"400 2nd St, New York City, NY 10001" -305608,AA Batteries (4-pack),1,3.84,12/21/19 12:43,"61 River St, Atlanta, GA 30301" -305609,27in 4K Gaming Monitor,1,389.99,12/05/19 10:56,"210 Cedar St, Los Angeles, CA 90001" -305610,AA Batteries (4-pack),1,3.84,12/27/19 17:54,"128 South St, Dallas, TX 75001" -305611,Bose SoundSport Headphones,1,99.99,12/02/19 08:56,"795 River St, Boston, MA 02215" -305612,USB-C Charging Cable,1,11.95,12/27/19 11:52,"66 1st St, San Francisco, CA 94016" -305613,Bose SoundSport Headphones,1,99.99,12/20/19 00:24,"860 Pine St, Los Angeles, CA 90001" -305614,AAA Batteries (4-pack),1,2.99,12/06/19 16:54,"11 South St, New York City, NY 10001" -305615,Lightning Charging Cable,1,14.95,12/24/19 17:16,"392 Hickory St, Atlanta, GA 30301" -305616,AAA Batteries (4-pack),1,2.99,12/21/19 16:36,"18 Main St, Dallas, TX 75001" -305617,AAA Batteries (4-pack),1,2.99,12/18/19 22:00,"768 1st St, Los Angeles, CA 90001" -305618,Lightning Charging Cable,1,14.95,12/08/19 10:50,"735 10th St, Dallas, TX 75001" -305619,27in 4K Gaming Monitor,1,389.99,12/19/19 17:27,"243 Sunset St, San Francisco, CA 94016" -305620,iPhone,1,700,12/28/19 17:10,"647 Adams St, San Francisco, CA 94016" -305621,Lightning Charging Cable,1,14.95,12/30/19 09:11,"215 6th St, New York City, NY 10001" -305622,USB-C Charging Cable,1,11.95,12/17/19 09:42,"766 River St, Seattle, WA 98101" -305623,USB-C Charging Cable,1,11.95,12/17/19 11:32,"889 5th St, Atlanta, GA 30301" -305624,AAA Batteries (4-pack),1,2.99,12/29/19 19:35,"964 5th St, Boston, MA 02215" -305625,AA Batteries (4-pack),1,3.84,12/04/19 18:20,"305 8th St, San Francisco, CA 94016" -305626,Bose SoundSport Headphones,1,99.99,12/04/19 22:35,"5 6th St, Atlanta, GA 30301" -305627,Wired Headphones,1,11.99,12/03/19 17:38,"70 Main St, San Francisco, CA 94016" -305628,USB-C Charging Cable,1,11.95,12/05/19 10:38,"338 Cherry St, Atlanta, GA 30301" -305629,AAA Batteries (4-pack),1,2.99,12/18/19 19:14,"323 Lincoln St, Austin, TX 73301" -305630,USB-C Charging Cable,1,11.95,12/20/19 21:22,"475 Maple St, San Francisco, CA 94016" -305631,AAA Batteries (4-pack),2,2.99,12/03/19 20:30,"402 Cherry St, San Francisco, CA 94016" -305632,Apple Airpods Headphones,1,150,12/23/19 20:03,"901 5th St, San Francisco, CA 94016" -305633,Apple Airpods Headphones,1,150,12/28/19 23:58,"221 Washington St, Portland, OR 97035" -305634,Apple Airpods Headphones,1,150,12/23/19 08:57,"62 4th St, San Francisco, CA 94016" -305635,USB-C Charging Cable,1,11.95,12/27/19 10:17,"493 Church St, Seattle, WA 98101" -305636,Wired Headphones,1,11.99,12/14/19 16:12,"474 9th St, Los Angeles, CA 90001" -305637,AAA Batteries (4-pack),1,2.99,12/14/19 16:54,"76 Elm St, Los Angeles, CA 90001" -305638,USB-C Charging Cable,1,11.95,12/19/19 21:44,"246 Pine St, Dallas, TX 75001" -305639,Google Phone,1,600,12/11/19 11:18,"15 Chestnut St, Seattle, WA 98101" -305640,Macbook Pro Laptop,1,1700,12/06/19 13:04,"138 13th St, New York City, NY 10001" -305641,Wired Headphones,1,11.99,12/17/19 02:23,"93 4th St, Portland, OR 97035" -305642,AAA Batteries (4-pack),2,2.99,12/21/19 14:26,"695 Spruce St, San Francisco, CA 94016" -305643,Lightning Charging Cable,1,14.95,12/06/19 21:14,"861 5th St, New York City, NY 10001" -305644,34in Ultrawide Monitor,1,379.99,12/19/19 10:58,"694 Lake St, Dallas, TX 75001" -305645,AA Batteries (4-pack),1,3.84,12/14/19 14:39,"752 Highland St, San Francisco, CA 94016" -305646,Bose SoundSport Headphones,1,99.99,12/17/19 11:54,"427 12th St, San Francisco, CA 94016" -305647,AAA Batteries (4-pack),1,2.99,12/18/19 15:04,"694 Walnut St, San Francisco, CA 94016" -305648,AAA Batteries (4-pack),1,2.99,12/19/19 15:12,"793 Johnson St, San Francisco, CA 94016" -305649,27in FHD Monitor,1,149.99,12/08/19 19:03,"298 Ridge St, New York City, NY 10001" -305650,ThinkPad Laptop,1,999.99,12/24/19 09:00,"166 Hickory St, New York City, NY 10001" -305651,Lightning Charging Cable,1,14.95,12/10/19 00:01,"61 Cedar St, Portland, OR 97035" -305652,Apple Airpods Headphones,1,150,12/04/19 11:43,"960 Wilson St, Los Angeles, CA 90001" -305653,USB-C Charging Cable,1,11.95,12/30/19 12:59,"392 12th St, Los Angeles, CA 90001" -305654,Flatscreen TV,1,300,12/26/19 14:45,"768 Lakeview St, Los Angeles, CA 90001" -305655,AA Batteries (4-pack),1,3.84,12/02/19 10:46,"773 North St, San Francisco, CA 94016" -305655,Lightning Charging Cable,1,14.95,12/02/19 10:46,"773 North St, San Francisco, CA 94016" -305656,AAA Batteries (4-pack),1,2.99,12/17/19 10:37,"260 Cherry St, New York City, NY 10001" -305657,Bose SoundSport Headphones,1,99.99,12/23/19 20:12,"653 2nd St, Austin, TX 73301" -305658,Wired Headphones,1,11.99,12/09/19 15:40,"541 South St, San Francisco, CA 94016" -305659,AA Batteries (4-pack),1,3.84,12/14/19 19:16,"706 7th St, Austin, TX 73301" -305660,Lightning Charging Cable,1,14.95,12/09/19 20:29,"758 Forest St, Los Angeles, CA 90001" -305661,27in FHD Monitor,1,149.99,12/19/19 06:33,"164 9th St, New York City, NY 10001" -305662,Bose SoundSport Headphones,1,99.99,12/21/19 13:09,"389 Cedar St, New York City, NY 10001" -305663,Lightning Charging Cable,1,14.95,12/05/19 08:42,"595 West St, Dallas, TX 75001" -305664,Apple Airpods Headphones,1,150,12/01/19 15:13,"588 Maple St, San Francisco, CA 94016" -305665,iPhone,1,700,12/22/19 23:28,"725 Hickory St, Los Angeles, CA 90001" -305666,20in Monitor,1,109.99,12/29/19 00:34,"361 Lincoln St, San Francisco, CA 94016" -305667,Wired Headphones,1,11.99,12/21/19 20:02,"156 Ridge St, San Francisco, CA 94016" -305668,iPhone,1,700,12/18/19 14:03,"359 Jefferson St, Seattle, WA 98101" -305668,Wired Headphones,1,11.99,12/18/19 14:03,"359 Jefferson St, Seattle, WA 98101" -305669,USB-C Charging Cable,1,11.95,12/09/19 09:24,"112 Center St, Boston, MA 02215" -,,,,, -305670,Lightning Charging Cable,2,14.95,12/19/19 20:17,"659 Chestnut St, Dallas, TX 75001" -305671,Wired Headphones,1,11.99,12/03/19 11:42,"320 Johnson St, San Francisco, CA 94016" -305672,Bose SoundSport Headphones,1,99.99,12/21/19 09:07,"399 6th St, Seattle, WA 98101" -305673,Wired Headphones,1,11.99,12/26/19 16:01,"194 Elm St, Los Angeles, CA 90001" -305674,Apple Airpods Headphones,1,150,12/12/19 12:23,"438 4th St, San Francisco, CA 94016" -305675,AA Batteries (4-pack),1,3.84,12/08/19 17:55,"992 2nd St, Portland, OR 97035" -305676,27in 4K Gaming Monitor,1,389.99,12/09/19 10:19,"78 South St, Los Angeles, CA 90001" -305677,USB-C Charging Cable,1,11.95,12/17/19 03:34,"328 9th St, Boston, MA 02215" -305678,Wired Headphones,1,11.99,12/05/19 00:38,"481 Church St, San Francisco, CA 94016" -305679,USB-C Charging Cable,1,11.95,12/17/19 00:35,"656 Lakeview St, Dallas, TX 75001" -305680,Apple Airpods Headphones,1,150,12/19/19 11:06,"453 Adams St, Portland, OR 97035" -305681,ThinkPad Laptop,1,999.99,12/03/19 16:33,"180 Lake St, Boston, MA 02215" -305682,Lightning Charging Cable,1,14.95,12/13/19 16:10,"646 Center St, Portland, OR 97035" -305683,iPhone,1,700,12/26/19 12:02,"378 13th St, New York City, NY 10001" -305684,Apple Airpods Headphones,1,150,12/28/19 12:52,"107 Walnut St, Portland, OR 97035" -305685,Bose SoundSport Headphones,1,99.99,12/18/19 16:01,"740 1st St, Los Angeles, CA 90001" -305686,USB-C Charging Cable,1,11.95,12/22/19 23:52,"361 Forest St, San Francisco, CA 94016" -305687,Google Phone,1,600,12/07/19 08:07,"129 Hickory St, San Francisco, CA 94016" -305688,USB-C Charging Cable,1,11.95,12/07/19 12:33,"485 Cedar St, Boston, MA 02215" -305689,AA Batteries (4-pack),1,3.84,12/31/19 11:35,"952 Madison St, Los Angeles, CA 90001" -305690,Wired Headphones,1,11.99,12/12/19 13:29,"801 Madison St, New York City, NY 10001" -305691,AAA Batteries (4-pack),1,2.99,12/10/19 13:25,"250 2nd St, Los Angeles, CA 90001" -305692,AAA Batteries (4-pack),3,2.99,12/08/19 13:54,"502 12th St, Los Angeles, CA 90001" -305693,Wired Headphones,2,11.99,12/30/19 20:20,"43 Willow St, New York City, NY 10001" -305694,USB-C Charging Cable,1,11.95,12/04/19 22:48,"410 Forest St, Dallas, TX 75001" -305695,USB-C Charging Cable,1,11.95,12/27/19 20:47,"346 Pine St, Boston, MA 02215" -305696,27in FHD Monitor,1,149.99,12/24/19 16:32,"437 North St, San Francisco, CA 94016" -305696,Wired Headphones,1,11.99,12/24/19 16:32,"437 North St, San Francisco, CA 94016" -305697,Apple Airpods Headphones,1,150,12/06/19 23:43,"577 Walnut St, Seattle, WA 98101" -305698,Flatscreen TV,1,300,12/19/19 20:22,"639 Pine St, San Francisco, CA 94016" -305699,USB-C Charging Cable,1,11.95,12/08/19 16:09,"130 Ridge St, Portland, OR 97035" -305700,Bose SoundSport Headphones,1,99.99,12/28/19 18:49,"332 Center St, Austin, TX 73301" -305701,AAA Batteries (4-pack),3,2.99,12/17/19 17:14,"479 Lincoln St, Portland, OR 97035" -305702,LG Dryer,1,600.0,12/05/19 12:10,"269 Chestnut St, New York City, NY 10001" -305703,Google Phone,1,600,12/25/19 12:03,"64 Lake St, Dallas, TX 75001" -305703,USB-C Charging Cable,1,11.95,12/25/19 12:03,"64 Lake St, Dallas, TX 75001" -305704,27in 4K Gaming Monitor,1,389.99,12/13/19 22:59,"539 Cedar St, New York City, NY 10001" -305705,Bose SoundSport Headphones,1,99.99,12/05/19 09:49,"570 Maple St, San Francisco, CA 94016" -305706,Google Phone,1,600,12/31/19 16:21,"988 Lakeview St, Los Angeles, CA 90001" -305706,USB-C Charging Cable,1,11.95,12/31/19 16:21,"988 Lakeview St, Los Angeles, CA 90001" -305707,AAA Batteries (4-pack),1,2.99,12/19/19 14:49,"307 13th St, Portland, OR 97035" -305708,34in Ultrawide Monitor,1,379.99,12/29/19 19:54,"421 Washington St, Boston, MA 02215" -305709,27in FHD Monitor,1,149.99,12/19/19 12:19,"70 Madison St, Atlanta, GA 30301" -305710,Apple Airpods Headphones,1,150,12/22/19 13:14,"586 Forest St, Boston, MA 02215" -305711,27in FHD Monitor,1,149.99,12/18/19 12:04,"449 South St, New York City, NY 10001" -305712,Bose SoundSport Headphones,1,99.99,12/06/19 22:01,"966 Forest St, New York City, NY 10001" -305713,Wired Headphones,1,11.99,12/27/19 12:51,"578 Park St, Portland, OR 97035" -305714,ThinkPad Laptop,1,999.99,12/16/19 10:38,"474 Adams St, San Francisco, CA 94016" -305715,USB-C Charging Cable,1,11.95,12/30/19 19:44,"37 Meadow St, Atlanta, GA 30301" -305716,AA Batteries (4-pack),1,3.84,12/16/19 16:25,"303 Highland St, New York City, NY 10001" -305717,Lightning Charging Cable,1,14.95,12/05/19 16:24,"183 Meadow St, Atlanta, GA 30301" -305718,Lightning Charging Cable,1,14.95,12/17/19 16:47,"640 West St, San Francisco, CA 94016" -305719,20in Monitor,1,109.99,12/17/19 05:27,"984 8th St, Los Angeles, CA 90001" -305720,Bose SoundSport Headphones,1,99.99,12/23/19 14:17,"14 Lincoln St, New York City, NY 10001" -305721,AAA Batteries (4-pack),1,2.99,12/06/19 10:32,"629 11th St, New York City, NY 10001" -305722,Apple Airpods Headphones,1,150,12/08/19 23:50,"109 Forest St, Portland, OR 97035" -305723,Macbook Pro Laptop,1,1700,12/24/19 13:16,"947 Sunset St, Austin, TX 73301" -305724,Google Phone,1,600,12/03/19 10:21,"693 Main St, San Francisco, CA 94016" -305725,Flatscreen TV,1,300,12/15/19 00:08,"136 Highland St, Los Angeles, CA 90001" -305726,20in Monitor,1,109.99,12/13/19 19:52,"552 13th St, Los Angeles, CA 90001" -305727,USB-C Charging Cable,1,11.95,12/03/19 00:57,"874 Wilson St, New York City, NY 10001" -305728,34in Ultrawide Monitor,1,379.99,12/22/19 18:39,"151 Lakeview St, Atlanta, GA 30301" -305729,Wired Headphones,1,11.99,12/21/19 19:14,"154 Maple St, Los Angeles, CA 90001" -305730,Lightning Charging Cable,1,14.95,12/20/19 07:06,"757 7th St, Los Angeles, CA 90001" -305731,Wired Headphones,1,11.99,12/11/19 22:37,"428 Forest St, New York City, NY 10001" -305732,Bose SoundSport Headphones,1,99.99,12/07/19 13:33,"53 Main St, San Francisco, CA 94016" -305733,27in FHD Monitor,1,149.99,12/09/19 18:41,"380 10th St, Atlanta, GA 30301" -305734,34in Ultrawide Monitor,1,379.99,12/16/19 16:04,"480 13th St, San Francisco, CA 94016" -305735,Macbook Pro Laptop,1,1700,12/31/19 18:51,"994 Maple St, San Francisco, CA 94016" -305736,Apple Airpods Headphones,1,150,12/14/19 12:46,"729 Center St, New York City, NY 10001" -305737,AAA Batteries (4-pack),1,2.99,12/12/19 11:41,"40 North St, Atlanta, GA 30301" -305738,34in Ultrawide Monitor,1,379.99,12/30/19 20:01,"309 Spruce St, Los Angeles, CA 90001" -305739,Lightning Charging Cable,1,14.95,12/10/19 05:05,"162 12th St, Austin, TX 73301" -305740,27in FHD Monitor,1,149.99,12/13/19 04:34,"394 8th St, San Francisco, CA 94016" -305741,27in 4K Gaming Monitor,1,389.99,12/16/19 10:43,"479 Ridge St, San Francisco, CA 94016" -305742,Bose SoundSport Headphones,1,99.99,12/10/19 10:12,"309 Hill St, New York City, NY 10001" -305743,Apple Airpods Headphones,1,150,12/22/19 18:41,"842 Wilson St, Atlanta, GA 30301" -305744,iPhone,1,700,12/04/19 00:51,"463 Willow St, Los Angeles, CA 90001" -305745,Bose SoundSport Headphones,1,99.99,12/22/19 21:56,"725 Wilson St, Los Angeles, CA 90001" -305746,20in Monitor,1,109.99,12/14/19 16:00,"19 Center St, San Francisco, CA 94016" -305747,USB-C Charging Cable,1,11.95,12/23/19 05:25,"261 7th St, Los Angeles, CA 90001" -305748,20in Monitor,1,109.99,12/22/19 02:26,"482 2nd St, New York City, NY 10001" -305749,Bose SoundSport Headphones,1,99.99,12/11/19 09:26,"514 11th St, Boston, MA 02215" -305750,Wired Headphones,1,11.99,12/24/19 17:10,"47 13th St, San Francisco, CA 94016" -,,,,, -305751,Wired Headphones,1,11.99,12/13/19 17:49,"761 Washington St, Dallas, TX 75001" -305752,Apple Airpods Headphones,1,150,12/29/19 21:46,"132 Madison St, New York City, NY 10001" -305753,AAA Batteries (4-pack),1,2.99,12/06/19 21:31,"613 4th St, Los Angeles, CA 90001" -305754,AAA Batteries (4-pack),1,2.99,12/05/19 12:39,"904 Cedar St, Atlanta, GA 30301" -305755,34in Ultrawide Monitor,1,379.99,12/30/19 08:33,"111 Highland St, Austin, TX 73301" -305756,AA Batteries (4-pack),3,3.84,12/16/19 13:12,"469 2nd St, New York City, NY 10001" -305757,27in 4K Gaming Monitor,1,389.99,12/02/19 17:36,"232 Cherry St, Los Angeles, CA 90001" -305758,AAA Batteries (4-pack),5,2.99,12/28/19 07:56,"851 Spruce St, Atlanta, GA 30301" -305759,USB-C Charging Cable,1,11.95,12/24/19 08:57,"941 Madison St, Los Angeles, CA 90001" -305760,Lightning Charging Cable,1,14.95,12/04/19 15:50,"887 Elm St, Boston, MA 02215" -305761,27in 4K Gaming Monitor,1,389.99,12/19/19 14:06,"932 6th St, San Francisco, CA 94016" -305762,20in Monitor,1,109.99,12/20/19 17:07,"981 Sunset St, San Francisco, CA 94016" -305763,USB-C Charging Cable,1,11.95,12/16/19 22:13,"216 Elm St, Los Angeles, CA 90001" -305764,LG Dryer,1,600.0,12/06/19 14:32,"983 North St, Seattle, WA 98101" -305765,AAA Batteries (4-pack),1,2.99,12/19/19 13:16,"212 6th St, Austin, TX 73301" -305766,USB-C Charging Cable,1,11.95,12/23/19 20:03,"165 River St, Atlanta, GA 30301" -305767,Apple Airpods Headphones,1,150,12/01/19 12:47,"288 Johnson St, Boston, MA 02215" -305768,Bose SoundSport Headphones,1,99.99,12/12/19 18:41,"668 North St, Atlanta, GA 30301" -305769,Apple Airpods Headphones,1,150,12/21/19 13:20,"635 4th St, Portland, OR 97035" -305770,USB-C Charging Cable,1,11.95,12/01/19 20:59,"897 Church St, San Francisco, CA 94016" -305771,USB-C Charging Cable,1,11.95,12/25/19 09:07,"110 Johnson St, San Francisco, CA 94016" -305772,Macbook Pro Laptop,1,1700,12/10/19 11:54,"223 Center St, Boston, MA 02215" -305773,Lightning Charging Cable,1,14.95,12/28/19 13:45,"916 North St, San Francisco, CA 94016" -305774,27in FHD Monitor,1,149.99,12/23/19 18:50,"835 10th St, Austin, TX 73301" -305775,Wired Headphones,1,11.99,12/20/19 19:17,"655 Forest St, New York City, NY 10001" -305776,Lightning Charging Cable,1,14.95,12/21/19 13:43,"980 South St, Los Angeles, CA 90001" -305777,iPhone,1,700,12/13/19 20:01,"884 West St, Boston, MA 02215" -305778,27in FHD Monitor,1,149.99,12/12/19 05:03,"705 9th St, San Francisco, CA 94016" -305779,AA Batteries (4-pack),2,3.84,12/05/19 11:22,"265 Madison St, Los Angeles, CA 90001" -305780,USB-C Charging Cable,1,11.95,12/06/19 18:30,"455 Pine St, San Francisco, CA 94016" -305781,Lightning Charging Cable,1,14.95,12/16/19 17:07,"503 Willow St, Los Angeles, CA 90001" -305782,Macbook Pro Laptop,1,1700,12/09/19 19:38,"373 Park St, Boston, MA 02215" -305783,Google Phone,1,600,12/30/19 17:53,"138 Pine St, San Francisco, CA 94016" -305783,USB-C Charging Cable,1,11.95,12/30/19 17:53,"138 Pine St, San Francisco, CA 94016" -305784,AA Batteries (4-pack),1,3.84,12/27/19 12:53,"110 Sunset St, San Francisco, CA 94016" -305785,ThinkPad Laptop,1,999.99,12/06/19 11:23,"861 Johnson St, San Francisco, CA 94016" -305786,Lightning Charging Cable,1,14.95,12/01/19 13:00,"12 Adams St, San Francisco, CA 94016" -305787,Flatscreen TV,1,300,12/13/19 21:57,"329 Adams St, San Francisco, CA 94016" -305788,Macbook Pro Laptop,1,1700,12/18/19 13:17,"678 Ridge St, Boston, MA 02215" -305789,USB-C Charging Cable,1,11.95,12/11/19 19:13,"522 4th St, New York City, NY 10001" -305790,ThinkPad Laptop,1,999.99,12/04/19 11:12,"543 Main St, Los Angeles, CA 90001" -305791,Lightning Charging Cable,1,14.95,12/19/19 13:05,"862 Jefferson St, Los Angeles, CA 90001" -305792,Apple Airpods Headphones,1,150,12/28/19 08:45,"50 Spruce St, Atlanta, GA 30301" -305793,Apple Airpods Headphones,1,150,12/18/19 19:14,"134 9th St, Portland, OR 97035" -305794,Lightning Charging Cable,1,14.95,12/23/19 17:27,"501 Ridge St, Atlanta, GA 30301" -305795,Apple Airpods Headphones,1,150,12/22/19 18:35,"471 Jackson St, Atlanta, GA 30301" -305796,USB-C Charging Cable,1,11.95,12/26/19 23:51,"963 Park St, New York City, NY 10001" -305797,USB-C Charging Cable,1,11.95,12/01/19 22:10,"954 2nd St, Atlanta, GA 30301" -305798,AA Batteries (4-pack),1,3.84,12/09/19 05:16,"199 1st St, Boston, MA 02215" -305799,AA Batteries (4-pack),1,3.84,12/11/19 14:16,"177 Walnut St, New York City, NY 10001" -305800,AA Batteries (4-pack),2,3.84,12/24/19 16:24,"921 14th St, Seattle, WA 98101" -305801,Lightning Charging Cable,1,14.95,12/22/19 14:50,"794 Park St, San Francisco, CA 94016" -305802,USB-C Charging Cable,1,11.95,12/15/19 03:51,"568 8th St, Austin, TX 73301" -305803,Wired Headphones,1,11.99,12/26/19 15:23,"922 Madison St, New York City, NY 10001" -305804,34in Ultrawide Monitor,1,379.99,12/15/19 21:53,"445 Main St, San Francisco, CA 94016" -305804,34in Ultrawide Monitor,1,379.99,12/15/19 21:53,"445 Main St, San Francisco, CA 94016" -305805,AA Batteries (4-pack),1,3.84,12/11/19 17:49,"732 9th St, Seattle, WA 98101" -305806,Lightning Charging Cable,1,14.95,12/07/19 12:59,"577 North St, Los Angeles, CA 90001" -305807,Wired Headphones,1,11.99,12/19/19 14:08,"529 Lincoln St, New York City, NY 10001" -305808,USB-C Charging Cable,1,11.95,12/12/19 07:40,"59 Madison St, Los Angeles, CA 90001" -305809,AA Batteries (4-pack),2,3.84,12/09/19 11:35,"400 North St, San Francisco, CA 94016" -305810,Apple Airpods Headphones,1,150,12/26/19 21:24,"664 Center St, San Francisco, CA 94016" -305811,ThinkPad Laptop,1,999.99,12/21/19 23:10,"85 Lincoln St, San Francisco, CA 94016" -305812,USB-C Charging Cable,1,11.95,12/11/19 18:29,"701 River St, Dallas, TX 75001" -305813,AA Batteries (4-pack),1,3.84,12/02/19 12:13,"802 6th St, Austin, TX 73301" -305814,AA Batteries (4-pack),1,3.84,12/25/19 14:11,"908 Wilson St, San Francisco, CA 94016" -305815,Apple Airpods Headphones,1,150,12/08/19 10:43,"674 Jefferson St, San Francisco, CA 94016" -305816,27in 4K Gaming Monitor,1,389.99,12/14/19 10:32,"941 4th St, Portland, OR 97035" -305817,USB-C Charging Cable,1,11.95,12/04/19 16:36,"356 Main St, San Francisco, CA 94016" -305818,USB-C Charging Cable,3,11.95,12/28/19 01:54,"693 Center St, Boston, MA 02215" -305819,AA Batteries (4-pack),1,3.84,12/16/19 17:34,"734 Adams St, Seattle, WA 98101" -305820,AA Batteries (4-pack),2,3.84,12/29/19 12:50,"634 Lake St, Portland, OR 97035" -305821,AA Batteries (4-pack),2,3.84,12/08/19 12:56,"679 Jackson St, Los Angeles, CA 90001" -305822,Bose SoundSport Headphones,1,99.99,12/08/19 17:30,"245 1st St, San Francisco, CA 94016" -305823,USB-C Charging Cable,1,11.95,12/10/19 15:47,"615 Lake St, San Francisco, CA 94016" -305824,ThinkPad Laptop,1,999.99,12/23/19 08:43,"567 Church St, San Francisco, CA 94016" -305825,27in 4K Gaming Monitor,1,389.99,12/28/19 12:58,"420 11th St, San Francisco, CA 94016" -305826,Lightning Charging Cable,2,14.95,12/02/19 04:59,"939 Cedar St, Dallas, TX 75001" -305827,iPhone,1,700,12/04/19 16:30,"361 6th St, Boston, MA 02215" -305827,Wired Headphones,1,11.99,12/04/19 16:30,"361 6th St, Boston, MA 02215" -305828,AAA Batteries (4-pack),1,2.99,12/23/19 08:07,"21 6th St, Los Angeles, CA 90001" -305829,AAA Batteries (4-pack),1,2.99,12/08/19 12:54,"832 River St, San Francisco, CA 94016" -305830,Apple Airpods Headphones,1,150,12/15/19 10:15,"332 Lake St, Austin, TX 73301" -305831,20in Monitor,1,109.99,12/08/19 20:25,"311 Lincoln St, Boston, MA 02215" -305832,USB-C Charging Cable,1,11.95,12/18/19 14:37,"21 South St, Los Angeles, CA 90001" -305833,ThinkPad Laptop,1,999.99,12/29/19 22:55,"670 Jefferson St, Atlanta, GA 30301" -305834,Bose SoundSport Headphones,1,99.99,12/05/19 17:06,"650 River St, San Francisco, CA 94016" -305835,Lightning Charging Cable,1,14.95,12/16/19 20:09,"293 Wilson St, Boston, MA 02215" -305836,Lightning Charging Cable,1,14.95,12/07/19 20:14,"46 4th St, Boston, MA 02215" -305837,iPhone,1,700,12/15/19 19:43,"206 Willow St, San Francisco, CA 94016" -305838,USB-C Charging Cable,1,11.95,12/15/19 11:49,"280 Hill St, Seattle, WA 98101" -305839,AA Batteries (4-pack),1,3.84,12/25/19 07:38,"36 Highland St, Dallas, TX 75001" -305840,Bose SoundSport Headphones,1,99.99,01/01/20 04:54,"784 River St, San Francisco, CA 94016" -305841,USB-C Charging Cable,1,11.95,12/25/19 22:34,"526 7th St, Austin, TX 73301" -305842,Apple Airpods Headphones,1,150,12/15/19 03:12,"6 Madison St, San Francisco, CA 94016" -305843,USB-C Charging Cable,1,11.95,12/14/19 03:42,"759 Maple St, San Francisco, CA 94016" -305844,27in 4K Gaming Monitor,1,389.99,12/04/19 17:12,"72 Ridge St, San Francisco, CA 94016" -305845,AA Batteries (4-pack),2,3.84,12/10/19 12:37,"528 Dogwood St, Portland, OR 97035" -305846,Apple Airpods Headphones,1,150,12/20/19 19:15,"661 11th St, San Francisco, CA 94016" -305847,20in Monitor,1,109.99,12/07/19 15:20,"785 Pine St, Los Angeles, CA 90001" -305848,Lightning Charging Cable,1,14.95,12/08/19 21:19,"811 Hickory St, New York City, NY 10001" -305849,AA Batteries (4-pack),3,3.84,12/03/19 14:15,"155 10th St, Los Angeles, CA 90001" -305850,Apple Airpods Headphones,1,150,12/08/19 05:25,"439 1st St, Boston, MA 02215" -305851,AA Batteries (4-pack),1,3.84,12/30/19 00:11,"755 Ridge St, New York City, NY 10001" -305852,AAA Batteries (4-pack),1,2.99,12/06/19 12:48,"457 Forest St, New York City, NY 10001" -305853,AA Batteries (4-pack),2,3.84,12/08/19 10:47,"985 12th St, Seattle, WA 98101" -305854,Wired Headphones,1,11.99,12/04/19 15:06,"539 Cherry St, New York City, NY 10001" -305855,AA Batteries (4-pack),1,3.84,12/09/19 16:45,"463 6th St, New York City, NY 10001" -305856,Google Phone,1,600,12/25/19 06:44,"581 West St, Los Angeles, CA 90001" -305857,Macbook Pro Laptop,1,1700,12/05/19 08:51,"402 Cedar St, New York City, NY 10001" -305858,Lightning Charging Cable,1,14.95,12/15/19 10:29,"110 South St, Los Angeles, CA 90001" -305859,Wired Headphones,1,11.99,12/02/19 11:48,"396 5th St, Austin, TX 73301" -305860,LG Washing Machine,1,600.0,12/31/19 19:05,"882 Johnson St, Los Angeles, CA 90001" -305861,iPhone,1,700,12/16/19 22:45,"24 Lincoln St, Seattle, WA 98101" -305862,iPhone,1,700,12/22/19 11:12,"200 Ridge St, San Francisco, CA 94016" -305862,Lightning Charging Cable,2,14.95,12/22/19 11:12,"200 Ridge St, San Francisco, CA 94016" -305863,Lightning Charging Cable,1,14.95,12/09/19 15:58,"950 1st St, Boston, MA 02215" -305864,Apple Airpods Headphones,1,150,12/29/19 16:59,"708 11th St, Seattle, WA 98101" -305865,Apple Airpods Headphones,1,150,12/18/19 19:37,"584 Spruce St, Los Angeles, CA 90001" -305866,AA Batteries (4-pack),1,3.84,12/22/19 18:02,"781 Adams St, Atlanta, GA 30301" -305867,USB-C Charging Cable,1,11.95,12/29/19 13:20,"13 9th St, Atlanta, GA 30301" -305868,Wired Headphones,1,11.99,12/15/19 00:23,"353 1st St, Los Angeles, CA 90001" -305869,Apple Airpods Headphones,1,150,12/25/19 12:39,"657 Adams St, Boston, MA 02215" -305870,Lightning Charging Cable,1,14.95,12/05/19 10:41,"199 Wilson St, New York City, NY 10001" -305871,iPhone,1,700,12/06/19 13:56,"910 Hickory St, Portland, OR 97035" -305872,AAA Batteries (4-pack),1,2.99,12/01/19 12:26,"432 Elm St, Atlanta, GA 30301" -305873,34in Ultrawide Monitor,1,379.99,12/08/19 21:55,"18 Forest St, New York City, NY 10001" -305874,Bose SoundSport Headphones,1,99.99,12/14/19 16:01,"806 2nd St, Dallas, TX 75001" -305875,AA Batteries (4-pack),2,3.84,12/24/19 21:47,"457 Main St, Los Angeles, CA 90001" -305876,34in Ultrawide Monitor,1,379.99,12/23/19 13:46,"952 Cherry St, San Francisco, CA 94016" -305877,Flatscreen TV,1,300,12/25/19 14:33,"989 5th St, Dallas, TX 75001" -305878,Wired Headphones,1,11.99,12/17/19 00:01,"57 Washington St, Los Angeles, CA 90001" -305879,Wired Headphones,1,11.99,12/11/19 08:55,"494 4th St, Dallas, TX 75001" -305880,34in Ultrawide Monitor,1,379.99,12/18/19 14:19,"413 4th St, Atlanta, GA 30301" -305881,AA Batteries (4-pack),1,3.84,12/21/19 18:46,"854 Dogwood St, Boston, MA 02215" -305882,Apple Airpods Headphones,1,150,12/17/19 00:18,"654 Lincoln St, Boston, MA 02215" -305883,AAA Batteries (4-pack),2,2.99,12/01/19 22:50,"599 Jackson St, Dallas, TX 75001" -305884,AA Batteries (4-pack),1,3.84,12/31/19 18:29,"208 Church St, Portland, OR 97035" -305885,iPhone,1,700,12/24/19 18:07,"277 Forest St, San Francisco, CA 94016" -305885,Wired Headphones,1,11.99,12/24/19 18:07,"277 Forest St, San Francisco, CA 94016" -305886,USB-C Charging Cable,1,11.95,12/14/19 22:10,"54 Sunset St, New York City, NY 10001" -305887,34in Ultrawide Monitor,1,379.99,12/31/19 10:43,"265 Spruce St, Portland, OR 97035" -,,,,, -305888,Bose SoundSport Headphones,1,99.99,12/31/19 15:46,"135 West St, Portland, OR 97035" -305889,AA Batteries (4-pack),1,3.84,12/03/19 19:11,"511 Spruce St, New York City, NY 10001" -305890,27in FHD Monitor,1,149.99,12/18/19 09:11,"214 Chestnut St, Dallas, TX 75001" -305891,Apple Airpods Headphones,1,150,12/24/19 22:13,"368 Jackson St, New York City, NY 10001" -305892,Google Phone,1,600,12/28/19 21:55,"551 14th St, New York City, NY 10001" -305893,Apple Airpods Headphones,1,150,12/02/19 12:34,"572 Ridge St, San Francisco, CA 94016" -305894,iPhone,1,700,12/22/19 12:11,"70 Jefferson St, New York City, NY 10001" -305895,AAA Batteries (4-pack),1,2.99,12/23/19 09:19,"308 13th St, San Francisco, CA 94016" -305896,AAA Batteries (4-pack),3,2.99,12/22/19 12:12,"618 Elm St, Atlanta, GA 30301" -305897,AA Batteries (4-pack),1,3.84,12/23/19 22:12,"504 Walnut St, Los Angeles, CA 90001" -305898,Apple Airpods Headphones,1,150,12/19/19 14:39,"348 Pine St, San Francisco, CA 94016" -305899,Lightning Charging Cable,1,14.95,12/01/19 19:59,"958 South St, Atlanta, GA 30301" -305900,27in 4K Gaming Monitor,1,389.99,12/28/19 18:36,"409 12th St, Portland, OR 97035" -305901,Apple Airpods Headphones,1,150,12/06/19 19:37,"657 Meadow St, San Francisco, CA 94016" -305902,USB-C Charging Cable,1,11.95,12/21/19 16:53,"684 Church St, San Francisco, CA 94016" -305903,27in 4K Gaming Monitor,1,389.99,12/24/19 10:33,"479 Spruce St, San Francisco, CA 94016" -305904,Lightning Charging Cable,1,14.95,12/18/19 23:13,"881 Pine St, Boston, MA 02215" -305905,AA Batteries (4-pack),1,3.84,12/29/19 11:32,"543 14th St, Dallas, TX 75001" -305906,iPhone,1,700,12/17/19 22:24,"451 7th St, Atlanta, GA 30301" -305907,AAA Batteries (4-pack),1,2.99,12/11/19 16:11,"757 Highland St, New York City, NY 10001" -305908,ThinkPad Laptop,1,999.99,12/17/19 08:43,"423 Jefferson St, Dallas, TX 75001" -305909,Bose SoundSport Headphones,1,99.99,12/25/19 21:38,"273 Dogwood St, Los Angeles, CA 90001" -305910,34in Ultrawide Monitor,1,379.99,12/22/19 08:43,"444 Cedar St, Portland, OR 97035" -305911,AAA Batteries (4-pack),1,2.99,12/12/19 09:29,"932 Meadow St, Los Angeles, CA 90001" -305912,Bose SoundSport Headphones,1,99.99,12/08/19 17:00,"682 10th St, San Francisco, CA 94016" -305913,Lightning Charging Cable,1,14.95,12/06/19 19:43,"959 Chestnut St, Seattle, WA 98101" -305914,USB-C Charging Cable,1,11.95,12/28/19 19:02,"880 Meadow St, Seattle, WA 98101" -,,,,, -305915,Apple Airpods Headphones,1,150,12/17/19 16:03,"886 Dogwood St, Seattle, WA 98101" -305916,iPhone,1,700,12/27/19 20:01,"92 Maple St, San Francisco, CA 94016" -305917,27in 4K Gaming Monitor,1,389.99,12/15/19 09:14,"294 Main St, Boston, MA 02215" -305918,USB-C Charging Cable,2,11.95,12/24/19 21:22,"273 6th St, San Francisco, CA 94016" -305919,Apple Airpods Headphones,1,150,12/05/19 22:26,"480 4th St, San Francisco, CA 94016" -305920,Apple Airpods Headphones,1,150,12/21/19 19:24,"42 Adams St, Seattle, WA 98101" -305921,Bose SoundSport Headphones,1,99.99,12/01/19 17:51,"733 Walnut St, San Francisco, CA 94016" -305922,USB-C Charging Cable,1,11.95,12/16/19 19:00,"496 4th St, Seattle, WA 98101" -305923,Lightning Charging Cable,1,14.95,12/09/19 12:17,"790 Church St, Los Angeles, CA 90001" -305924,Lightning Charging Cable,2,14.95,12/20/19 19:44,"782 Forest St, Dallas, TX 75001" -305925,Bose SoundSport Headphones,1,99.99,12/29/19 14:52,"129 West St, Seattle, WA 98101" -305926,Lightning Charging Cable,1,14.95,12/30/19 21:18,"492 Wilson St, San Francisco, CA 94016" -305927,AA Batteries (4-pack),1,3.84,12/15/19 09:14,"61 Pine St, Los Angeles, CA 90001" -305928,ThinkPad Laptop,1,999.99,12/08/19 16:33,"637 North St, Los Angeles, CA 90001" -305928,ThinkPad Laptop,1,999.99,12/08/19 16:33,"637 North St, Los Angeles, CA 90001" -305929,iPhone,1,700,12/15/19 20:12,"889 Willow St, Dallas, TX 75001" -305930,AAA Batteries (4-pack),1,2.99,12/11/19 20:28,"522 West St, Portland, OR 97035" -305931,Apple Airpods Headphones,1,150,12/20/19 10:42,"64 Lincoln St, San Francisco, CA 94016" -305932,Lightning Charging Cable,1,14.95,12/14/19 12:37,"506 South St, Atlanta, GA 30301" -305933,Google Phone,1,600,12/11/19 22:01,"46 Dogwood St, Austin, TX 73301" -305934,Flatscreen TV,1,300,12/16/19 16:09,"894 Pine St, New York City, NY 10001" -305935,Lightning Charging Cable,1,14.95,12/20/19 16:05,"192 Willow St, New York City, NY 10001" -305936,iPhone,1,700,12/13/19 08:32,"509 14th St, Los Angeles, CA 90001" -305937,Flatscreen TV,1,300,12/02/19 14:17,"547 West St, Los Angeles, CA 90001" -305938,USB-C Charging Cable,1,11.95,12/19/19 14:58,"861 Dogwood St, Austin, TX 73301" -305939,Google Phone,1,600,12/29/19 13:04,"210 13th St, New York City, NY 10001" -305940,USB-C Charging Cable,1,11.95,12/14/19 23:33,"473 Madison St, San Francisco, CA 94016" -305941,Lightning Charging Cable,1,14.95,12/17/19 15:10,"625 Highland St, Portland, OR 97035" -305942,USB-C Charging Cable,2,11.95,12/28/19 09:43,"819 11th St, Atlanta, GA 30301" -305943,Apple Airpods Headphones,1,150,12/12/19 20:01,"247 Sunset St, New York City, NY 10001" -305944,ThinkPad Laptop,1,999.99,12/01/19 20:49,"441 8th St, Boston, MA 02215" -305945,Bose SoundSport Headphones,1,99.99,12/25/19 11:23,"177 13th St, San Francisco, CA 94016" -305946,AAA Batteries (4-pack),2,2.99,12/28/19 20:47,"831 14th St, San Francisco, CA 94016" -305947,AA Batteries (4-pack),1,3.84,12/08/19 08:46,"404 13th St, Dallas, TX 75001" -305948,iPhone,1,700,12/16/19 12:53,"527 Willow St, Boston, MA 02215" -305948,Lightning Charging Cable,1,14.95,12/16/19 12:53,"527 Willow St, Boston, MA 02215" -305949,USB-C Charging Cable,1,11.95,12/08/19 16:20,"246 Highland St, San Francisco, CA 94016" -305950,AAA Batteries (4-pack),1,2.99,12/02/19 19:14,"456 Washington St, Atlanta, GA 30301" -305951,Wired Headphones,1,11.99,12/06/19 13:29,"938 Willow St, New York City, NY 10001" -305952,Google Phone,1,600,12/21/19 10:35,"481 Hill St, San Francisco, CA 94016" -305952,Flatscreen TV,1,300,12/21/19 10:35,"481 Hill St, San Francisco, CA 94016" -305953,Bose SoundSport Headphones,1,99.99,12/25/19 15:00,"944 Elm St, San Francisco, CA 94016" -305954,Bose SoundSport Headphones,1,99.99,12/13/19 11:57,"289 Pine St, Boston, MA 02215" -305954,Bose SoundSport Headphones,1,99.99,12/13/19 11:57,"289 Pine St, Boston, MA 02215" -305955,AAA Batteries (4-pack),1,2.99,12/07/19 01:02,"317 9th St, San Francisco, CA 94016" -305956,USB-C Charging Cable,1,11.95,12/30/19 08:58,"783 Cedar St, Dallas, TX 75001" -305957,USB-C Charging Cable,1,11.95,12/22/19 15:56,"140 Hickory St, Los Angeles, CA 90001" -305958,Bose SoundSport Headphones,1,99.99,12/07/19 13:45,"489 Church St, San Francisco, CA 94016" -305959,27in FHD Monitor,1,149.99,12/27/19 11:35,"175 Washington St, Dallas, TX 75001" -305960,Apple Airpods Headphones,1,150,12/24/19 12:31,"331 Washington St, Los Angeles, CA 90001" -305961,USB-C Charging Cable,1,11.95,12/23/19 13:38,"261 South St, San Francisco, CA 94016" -305962,ThinkPad Laptop,1,999.99,12/03/19 02:06,"4 Jefferson St, Los Angeles, CA 90001" -305963,Wired Headphones,1,11.99,12/11/19 23:54,"347 Walnut St, Austin, TX 73301" -305964,Bose SoundSport Headphones,1,99.99,12/04/19 10:44,"753 10th St, Portland, OR 97035" -305965,USB-C Charging Cable,1,11.95,12/17/19 17:50,"923 14th St, Dallas, TX 75001" -305966,27in FHD Monitor,1,149.99,12/10/19 07:09,"406 Johnson St, New York City, NY 10001" -305967,Flatscreen TV,1,300,12/25/19 14:41,"442 Spruce St, Los Angeles, CA 90001" -305968,34in Ultrawide Monitor,1,379.99,12/19/19 11:55,"704 Elm St, Los Angeles, CA 90001" -305969,Google Phone,1,600,12/29/19 17:41,"548 Church St, Austin, TX 73301" -305970,Bose SoundSport Headphones,1,99.99,12/27/19 20:24,"384 Lincoln St, Boston, MA 02215" -305971,USB-C Charging Cable,1,11.95,12/14/19 16:05,"595 4th St, San Francisco, CA 94016" -305972,iPhone,1,700,12/18/19 16:35,"896 Wilson St, San Francisco, CA 94016" -305973,AAA Batteries (4-pack),1,2.99,12/06/19 21:12,"898 Willow St, Boston, MA 02215" -305974,iPhone,1,700,12/10/19 22:59,"273 Jackson St, San Francisco, CA 94016" -305975,USB-C Charging Cable,1,11.95,12/23/19 15:18,"55 Park St, Atlanta, GA 30301" -305976,AA Batteries (4-pack),1,3.84,12/09/19 07:24,"905 5th St, Dallas, TX 75001" -305976,AAA Batteries (4-pack),1,2.99,12/09/19 07:24,"905 5th St, Dallas, TX 75001" -305977,Lightning Charging Cable,1,14.95,12/15/19 09:34,"913 5th St, Austin, TX 73301" -305978,Wired Headphones,1,11.99,12/01/19 08:58,"905 Madison St, Los Angeles, CA 90001" -305979,USB-C Charging Cable,1,11.95,12/02/19 11:09,"806 South St, Los Angeles, CA 90001" -305980,27in 4K Gaming Monitor,1,389.99,12/26/19 17:20,"135 1st St, San Francisco, CA 94016" -305981,Lightning Charging Cable,1,14.95,12/12/19 19:28,"927 11th St, Austin, TX 73301" -305982,Lightning Charging Cable,1,14.95,12/12/19 13:43,"739 5th St, Austin, TX 73301" -305983,AAA Batteries (4-pack),1,2.99,12/08/19 07:14,"913 11th St, Seattle, WA 98101" -305984,Macbook Pro Laptop,1,1700,12/25/19 20:56,"104 Meadow St, Seattle, WA 98101" -305985,AA Batteries (4-pack),1,3.84,12/23/19 08:05,"838 Highland St, San Francisco, CA 94016" -305986,Apple Airpods Headphones,1,150,12/26/19 12:10,"246 Center St, Boston, MA 02215" -305987,Flatscreen TV,1,300,12/17/19 15:35,"580 Madison St, Los Angeles, CA 90001" -305988,Lightning Charging Cable,1,14.95,12/06/19 20:14,"278 Cedar St, Los Angeles, CA 90001" -305989,Wired Headphones,1,11.99,12/14/19 13:43,"807 Willow St, Portland, OR 97035" -305990,Bose SoundSport Headphones,1,99.99,12/15/19 10:24,"909 Dogwood St, San Francisco, CA 94016" -305991,Lightning Charging Cable,1,14.95,12/07/19 00:47,"814 12th St, San Francisco, CA 94016" -305992,27in FHD Monitor,1,149.99,12/31/19 09:21,"821 11th St, Dallas, TX 75001" -305993,Bose SoundSport Headphones,1,99.99,12/28/19 21:29,"417 Jefferson St, Seattle, WA 98101" -305994,AA Batteries (4-pack),1,3.84,12/22/19 13:57,"650 Lakeview St, Seattle, WA 98101" -305995,Bose SoundSport Headphones,1,99.99,12/09/19 17:36,"733 Pine St, Atlanta, GA 30301" -305996,Wired Headphones,1,11.99,12/12/19 21:02,"200 Hickory St, San Francisco, CA 94016" -305997,AAA Batteries (4-pack),1,2.99,12/23/19 20:23,"402 1st St, Los Angeles, CA 90001" -305998,Google Phone,1,600,12/08/19 16:40,"111 4th St, Seattle, WA 98101" -305998,USB-C Charging Cable,1,11.95,12/08/19 16:40,"111 4th St, Seattle, WA 98101" -305999,AAA Batteries (4-pack),1,2.99,12/18/19 14:54,"542 2nd St, San Francisco, CA 94016" -306000,Lightning Charging Cable,1,14.95,12/09/19 15:01,"647 Walnut St, Seattle, WA 98101" -306001,Wired Headphones,1,11.99,12/31/19 10:41,"30 6th St, Dallas, TX 75001" -306002,iPhone,1,700,12/06/19 09:13,"39 Elm St, Seattle, WA 98101" -306003,Lightning Charging Cable,1,14.95,12/07/19 22:33,"838 Meadow St, New York City, NY 10001" -306004,AAA Batteries (4-pack),1,2.99,12/19/19 18:55,"384 Cherry St, Seattle, WA 98101" -306005,27in FHD Monitor,1,149.99,12/18/19 12:11,"951 Church St, Atlanta, GA 30301" -306006,AA Batteries (4-pack),1,3.84,12/31/19 20:58,"408 Johnson St, San Francisco, CA 94016" -306007,Google Phone,1,600,12/28/19 15:13,"546 Main St, Dallas, TX 75001" -306008,27in 4K Gaming Monitor,1,389.99,12/11/19 21:32,"396 Dogwood St, Portland, OR 97035" -306009,Lightning Charging Cable,1,14.95,12/15/19 16:00,"71 Willow St, San Francisco, CA 94016" -306010,Bose SoundSport Headphones,1,99.99,12/24/19 22:03,"712 1st St, New York City, NY 10001" -306011,34in Ultrawide Monitor,1,379.99,12/26/19 19:17,"640 4th St, Austin, TX 73301" -306012,ThinkPad Laptop,1,999.99,12/12/19 20:26,"943 1st St, Atlanta, GA 30301" -306013,27in FHD Monitor,1,149.99,12/04/19 06:50,"708 Lincoln St, Seattle, WA 98101" -306014,AAA Batteries (4-pack),2,2.99,12/29/19 19:45,"244 5th St, San Francisco, CA 94016" -306015,USB-C Charging Cable,1,11.95,12/23/19 22:42,"622 7th St, Boston, MA 02215" -306016,Lightning Charging Cable,1,14.95,12/07/19 16:04,"297 Highland St, Los Angeles, CA 90001" -306017,Wired Headphones,1,11.99,12/05/19 11:06,"322 Maple St, Los Angeles, CA 90001" -306018,Lightning Charging Cable,1,14.95,12/14/19 19:08,"525 5th St, New York City, NY 10001" -306019,AA Batteries (4-pack),2,3.84,12/30/19 18:25,"760 Maple St, San Francisco, CA 94016" -306020,AAA Batteries (4-pack),2,2.99,12/09/19 17:37,"323 Forest St, Atlanta, GA 30301" -306021,Wired Headphones,1,11.99,12/11/19 19:39,"50 Pine St, Boston, MA 02215" -306022,Apple Airpods Headphones,1,150,12/20/19 14:43,"495 Chestnut St, San Francisco, CA 94016" -306023,Lightning Charging Cable,1,14.95,12/04/19 14:18,"251 Main St, Dallas, TX 75001" -306024,20in Monitor,1,109.99,12/09/19 12:28,"888 8th St, Los Angeles, CA 90001" -306025,Bose SoundSport Headphones,1,99.99,12/19/19 00:39,"453 Highland St, Portland, OR 97035" -306025,Flatscreen TV,1,300,12/19/19 00:39,"453 Highland St, Portland, OR 97035" -306026,27in FHD Monitor,1,149.99,12/27/19 20:30,"929 Adams St, Los Angeles, CA 90001" -306027,Apple Airpods Headphones,1,150,12/23/19 19:24,"945 Willow St, Dallas, TX 75001" -306028,AA Batteries (4-pack),1,3.84,12/20/19 06:31,"724 11th St, San Francisco, CA 94016" -306029,AA Batteries (4-pack),1,3.84,12/20/19 10:39,"262 Johnson St, San Francisco, CA 94016" -306030,ThinkPad Laptop,1,999.99,12/10/19 12:05,"840 5th St, Atlanta, GA 30301" -306031,AAA Batteries (4-pack),3,2.99,12/22/19 17:29,"527 Adams St, Austin, TX 73301" -306032,34in Ultrawide Monitor,1,379.99,12/30/19 16:17,"795 Willow St, New York City, NY 10001" -306033,LG Dryer,1,600.0,12/07/19 13:51,"719 Center St, Boston, MA 02215" -306034,USB-C Charging Cable,1,11.95,12/12/19 21:46,"216 Pine St, Los Angeles, CA 90001" -306035,Lightning Charging Cable,1,14.95,12/14/19 14:13,"813 Pine St, Los Angeles, CA 90001" -306036,Lightning Charging Cable,1,14.95,12/03/19 19:24,"205 Church St, Los Angeles, CA 90001" -306037,Bose SoundSport Headphones,1,99.99,12/27/19 16:09,"286 12th St, Los Angeles, CA 90001" -306038,Apple Airpods Headphones,1,150,12/18/19 13:56,"70 11th St, Austin, TX 73301" -306039,AA Batteries (4-pack),1,3.84,12/25/19 15:57,"362 West St, Boston, MA 02215" -306040,Wired Headphones,1,11.99,12/20/19 20:40,"300 Park St, Atlanta, GA 30301" -306041,Bose SoundSport Headphones,1,99.99,12/12/19 21:59,"911 Walnut St, Atlanta, GA 30301" -306042,Bose SoundSport Headphones,1,99.99,12/09/19 17:35,"990 Meadow St, Austin, TX 73301" -306043,iPhone,1,700,12/04/19 11:59,"49 North St, Atlanta, GA 30301" -306044,27in FHD Monitor,1,149.99,12/13/19 04:58,"11 14th St, New York City, NY 10001" -306045,Wired Headphones,1,11.99,12/17/19 11:17,"253 11th St, San Francisco, CA 94016" -306046,Lightning Charging Cable,1,14.95,12/27/19 10:52,"854 Hickory St, New York City, NY 10001" -306047,Lightning Charging Cable,1,14.95,12/23/19 16:30,"307 Main St, Boston, MA 02215" -306048,Bose SoundSport Headphones,1,99.99,12/14/19 20:12,"261 4th St, Austin, TX 73301" -306049,Apple Airpods Headphones,1,150,12/25/19 20:09,"826 Main St, Seattle, WA 98101" -306050,iPhone,1,700,12/20/19 12:22,"136 Elm St, Los Angeles, CA 90001" -306051,USB-C Charging Cable,1,11.95,12/12/19 15:32,"321 Wilson St, San Francisco, CA 94016" -306052,USB-C Charging Cable,1,11.95,12/06/19 23:57,"284 2nd St, San Francisco, CA 94016" -306053,AA Batteries (4-pack),2,3.84,12/17/19 20:35,"218 North St, Boston, MA 02215" -306054,Wired Headphones,1,11.99,12/22/19 11:47,"77 11th St, New York City, NY 10001" -306055,20in Monitor,1,109.99,12/19/19 10:42,"951 Lincoln St, New York City, NY 10001" -306056,Apple Airpods Headphones,1,150,12/24/19 13:28,"356 Ridge St, Boston, MA 02215" -306057,Lightning Charging Cable,1,14.95,12/18/19 16:45,"126 7th St, San Francisco, CA 94016" -306058,27in FHD Monitor,1,149.99,12/27/19 23:44,"969 Elm St, San Francisco, CA 94016" -306059,Lightning Charging Cable,1,14.95,12/09/19 21:30,"9 Elm St, San Francisco, CA 94016" -306060,AAA Batteries (4-pack),1,2.99,12/12/19 16:37,"442 Park St, New York City, NY 10001" -306061,Lightning Charging Cable,1,14.95,12/19/19 18:57,"48 Jefferson St, Seattle, WA 98101" -306062,AA Batteries (4-pack),1,3.84,12/28/19 20:53,"376 2nd St, Atlanta, GA 30301" -306063,Vareebadd Phone,1,400,12/16/19 15:23,"519 5th St, San Francisco, CA 94016" -306064,20in Monitor,1,109.99,12/18/19 12:12,"793 North St, San Francisco, CA 94016" -306065,AAA Batteries (4-pack),1,2.99,12/16/19 16:39,"990 Hickory St, Portland, ME 04101" -306066,Bose SoundSport Headphones,1,99.99,12/15/19 10:32,"477 13th St, New York City, NY 10001" -306067,AAA Batteries (4-pack),2,2.99,12/31/19 19:33,"79 Chestnut St, Los Angeles, CA 90001" -306068,27in 4K Gaming Monitor,1,389.99,12/30/19 21:26,"128 Hill St, San Francisco, CA 94016" -306069,Google Phone,1,600,12/05/19 19:50,"61 Washington St, Seattle, WA 98101" -306069,Wired Headphones,1,11.99,12/05/19 19:50,"61 Washington St, Seattle, WA 98101" -306070,27in 4K Gaming Monitor,1,389.99,12/20/19 23:14,"784 Chestnut St, Boston, MA 02215" -306071,Lightning Charging Cable,1,14.95,12/22/19 21:26,"217 Pine St, Dallas, TX 75001" -306072,27in FHD Monitor,1,149.99,12/11/19 11:58,"156 Jefferson St, Dallas, TX 75001" -306073,Apple Airpods Headphones,1,150,12/12/19 13:02,"738 Highland St, Atlanta, GA 30301" -306074,USB-C Charging Cable,1,11.95,12/02/19 20:43,"665 Spruce St, San Francisco, CA 94016" -306075,Lightning Charging Cable,2,14.95,12/24/19 11:56,"308 6th St, New York City, NY 10001" -306076,Lightning Charging Cable,1,14.95,12/28/19 10:48,"498 Cedar St, San Francisco, CA 94016" -306077,Macbook Pro Laptop,1,1700,12/05/19 15:22,"585 14th St, San Francisco, CA 94016" -306078,Wired Headphones,1,11.99,12/23/19 11:28,"52 Sunset St, Los Angeles, CA 90001" -306079,34in Ultrawide Monitor,1,379.99,12/23/19 17:20,"128 Sunset St, New York City, NY 10001" -306080,AA Batteries (4-pack),1,3.84,12/26/19 11:29,"813 Walnut St, Atlanta, GA 30301" -306081,AA Batteries (4-pack),1,3.84,12/13/19 16:16,"521 5th St, San Francisco, CA 94016" -306082,iPhone,1,700,12/30/19 05:04,"633 Lincoln St, New York City, NY 10001" -306083,USB-C Charging Cable,1,11.95,12/14/19 12:56,"403 Wilson St, New York City, NY 10001" -306084,Macbook Pro Laptop,1,1700,12/23/19 21:10,"321 11th St, Los Angeles, CA 90001" -306085,Bose SoundSport Headphones,1,99.99,12/18/19 16:43,"399 14th St, New York City, NY 10001" -306086,Lightning Charging Cable,1,14.95,12/14/19 17:32,"877 Willow St, Los Angeles, CA 90001" -306087,34in Ultrawide Monitor,1,379.99,12/22/19 21:42,"390 11th St, Portland, OR 97035" -306088,AA Batteries (4-pack),1,3.84,12/18/19 22:39,"716 Pine St, San Francisco, CA 94016" -306089,Lightning Charging Cable,1,14.95,12/27/19 21:23,"321 8th St, San Francisco, CA 94016" -306090,USB-C Charging Cable,1,11.95,12/20/19 18:45,"758 Adams St, Los Angeles, CA 90001" -306091,AA Batteries (4-pack),1,3.84,12/21/19 16:03,"659 Church St, Los Angeles, CA 90001" -306092,AA Batteries (4-pack),2,3.84,12/09/19 15:30,"641 9th St, Atlanta, GA 30301" -306093,AAA Batteries (4-pack),2,2.99,12/19/19 23:43,"115 14th St, Austin, TX 73301" -306094,Flatscreen TV,1,300,12/06/19 10:38,"763 11th St, San Francisco, CA 94016" -306095,34in Ultrawide Monitor,1,379.99,12/31/19 10:25,"843 South St, Boston, MA 02215" -306096,USB-C Charging Cable,1,11.95,12/02/19 13:52,"434 12th St, New York City, NY 10001" -306097,AA Batteries (4-pack),2,3.84,12/18/19 04:08,"932 13th St, Los Angeles, CA 90001" -306098,AA Batteries (4-pack),1,3.84,12/02/19 09:10,"923 2nd St, San Francisco, CA 94016" -306099,Flatscreen TV,1,300,12/08/19 19:55,"420 Washington St, Dallas, TX 75001" -306100,AAA Batteries (4-pack),1,2.99,12/30/19 22:16,"900 Madison St, San Francisco, CA 94016" -306101,USB-C Charging Cable,1,11.95,12/21/19 20:45,"172 Wilson St, Boston, MA 02215" -306102,Apple Airpods Headphones,1,150,12/09/19 11:03,"769 Hickory St, Austin, TX 73301" -306103,Bose SoundSport Headphones,1,99.99,12/29/19 12:17,"873 Meadow St, San Francisco, CA 94016" -306104,Vareebadd Phone,1,400,12/18/19 14:05,"275 Jackson St, San Francisco, CA 94016" -306105,Macbook Pro Laptop,1,1700,12/03/19 08:31,"236 Lincoln St, New York City, NY 10001" -306106,USB-C Charging Cable,2,11.95,12/14/19 15:50,"449 6th St, New York City, NY 10001" -306107,Wired Headphones,1,11.99,12/31/19 14:39,"128 Johnson St, Seattle, WA 98101" -306108,AAA Batteries (4-pack),2,2.99,12/17/19 20:39,"982 12th St, Atlanta, GA 30301" -306109,Bose SoundSport Headphones,1,99.99,12/11/19 21:26,"320 South St, Austin, TX 73301" -306110,USB-C Charging Cable,1,11.95,12/20/19 20:44,"911 Center St, Los Angeles, CA 90001" -306111,27in FHD Monitor,1,149.99,12/20/19 01:07,"191 North St, Boston, MA 02215" -306112,Apple Airpods Headphones,1,150,12/22/19 19:28,"167 6th St, Boston, MA 02215" -306113,Wired Headphones,1,11.99,12/13/19 21:09,"768 River St, Atlanta, GA 30301" -306114,AA Batteries (4-pack),1,3.84,12/07/19 09:48,"332 11th St, Atlanta, GA 30301" -306115,iPhone,1,700,12/08/19 17:10,"433 2nd St, New York City, NY 10001" -306115,Apple Airpods Headphones,1,150,12/08/19 17:10,"433 2nd St, New York City, NY 10001" -306115,AAA Batteries (4-pack),1,2.99,12/08/19 17:10,"433 2nd St, New York City, NY 10001" -306116,Lightning Charging Cable,1,14.95,12/04/19 08:19,"163 West St, San Francisco, CA 94016" -306117,Bose SoundSport Headphones,1,99.99,12/20/19 12:04,"219 Cedar St, Los Angeles, CA 90001" -306118,USB-C Charging Cable,1,11.95,12/22/19 11:53,"56 River St, San Francisco, CA 94016" -306119,AAA Batteries (4-pack),1,2.99,12/07/19 10:17,"44 1st St, Los Angeles, CA 90001" -306120,USB-C Charging Cable,1,11.95,12/25/19 23:29,"827 Sunset St, San Francisco, CA 94016" -306121,Wired Headphones,1,11.99,12/10/19 09:25,"914 Washington St, Austin, TX 73301" -306122,Wired Headphones,1,11.99,12/03/19 08:49,"663 North St, Los Angeles, CA 90001" -306123,USB-C Charging Cable,2,11.95,12/05/19 19:05,"316 Jefferson St, San Francisco, CA 94016" -306124,Lightning Charging Cable,1,14.95,12/04/19 23:42,"547 Hill St, San Francisco, CA 94016" -306125,27in 4K Gaming Monitor,1,389.99,12/15/19 12:14,"19 Center St, San Francisco, CA 94016" -306126,Lightning Charging Cable,1,14.95,12/06/19 17:15,"328 Ridge St, Portland, OR 97035" -306127,Wired Headphones,1,11.99,12/15/19 09:56,"271 8th St, New York City, NY 10001" -306128,AA Batteries (4-pack),1,3.84,12/25/19 15:56,"159 Center St, Dallas, TX 75001" -306129,AA Batteries (4-pack),1,3.84,12/28/19 13:27,"506 8th St, Los Angeles, CA 90001" -306130,27in FHD Monitor,1,149.99,12/05/19 13:19,"970 North St, Portland, ME 04101" -306131,USB-C Charging Cable,2,11.95,12/26/19 15:10,"763 Elm St, Boston, MA 02215" -306132,Apple Airpods Headphones,1,150,12/11/19 14:30,"200 Sunset St, San Francisco, CA 94016" -306133,Macbook Pro Laptop,1,1700,12/31/19 19:16,"838 Lake St, New York City, NY 10001" -306134,Lightning Charging Cable,1,14.95,12/20/19 19:06,"374 South St, Los Angeles, CA 90001" -306135,Google Phone,1,600,12/06/19 17:02,"909 Lake St, Portland, OR 97035" -306135,USB-C Charging Cable,1,11.95,12/06/19 17:02,"909 Lake St, Portland, OR 97035" -306136,USB-C Charging Cable,1,11.95,12/10/19 19:53,"49 Jefferson St, Los Angeles, CA 90001" -306137,34in Ultrawide Monitor,1,379.99,12/23/19 12:20,"105 Church St, Austin, TX 73301" -306138,Lightning Charging Cable,1,14.95,12/27/19 18:42,"72 Walnut St, San Francisco, CA 94016" -306139,27in FHD Monitor,1,149.99,12/31/19 21:12,"313 Sunset St, Los Angeles, CA 90001" -306140,Macbook Pro Laptop,1,1700,12/16/19 11:10,"894 13th St, Austin, TX 73301" -306141,Bose SoundSport Headphones,1,99.99,12/15/19 13:28,"828 River St, San Francisco, CA 94016" -306142,USB-C Charging Cable,1,11.95,12/23/19 22:51,"346 Lake St, Los Angeles, CA 90001" -306143,Bose SoundSport Headphones,1,99.99,12/20/19 15:21,"643 Wilson St, San Francisco, CA 94016" -306144,Bose SoundSport Headphones,1,99.99,12/20/19 21:57,"329 2nd St, Los Angeles, CA 90001" -306145,Apple Airpods Headphones,1,150,12/14/19 10:20,"379 River St, New York City, NY 10001" -306146,AAA Batteries (4-pack),2,2.99,12/13/19 22:33,"307 Jackson St, New York City, NY 10001" -306147,iPhone,1,700,12/29/19 23:05,"304 Jefferson St, Dallas, TX 75001" -306148,Bose SoundSport Headphones,1,99.99,12/15/19 01:31,"162 13th St, Dallas, TX 75001" -306149,27in 4K Gaming Monitor,1,389.99,12/28/19 18:48,"473 Ridge St, Seattle, WA 98101" -306150,AAA Batteries (4-pack),2,2.99,12/17/19 10:12,"105 9th St, Atlanta, GA 30301" -306151,USB-C Charging Cable,1,11.95,12/31/19 19:30,"738 Church St, Seattle, WA 98101" -306152,USB-C Charging Cable,1,11.95,12/20/19 16:02,"803 Highland St, Los Angeles, CA 90001" -306153,USB-C Charging Cable,1,11.95,12/12/19 11:51,"488 Ridge St, Los Angeles, CA 90001" -306154,Bose SoundSport Headphones,1,99.99,12/04/19 15:16,"903 Church St, San Francisco, CA 94016" -306155,Lightning Charging Cable,1,14.95,12/23/19 14:37,"424 2nd St, Atlanta, GA 30301" -306156,AAA Batteries (4-pack),1,2.99,12/11/19 13:48,"274 5th St, New York City, NY 10001" -306157,Lightning Charging Cable,1,14.95,12/15/19 16:39,"426 13th St, New York City, NY 10001" -306158,USB-C Charging Cable,1,11.95,12/22/19 17:12,"343 Lincoln St, Boston, MA 02215" -306159,AAA Batteries (4-pack),1,2.99,12/07/19 20:09,"564 Hickory St, New York City, NY 10001" -306160,LG Washing Machine,1,600.0,12/02/19 04:34,"977 Willow St, San Francisco, CA 94016" -306161,ThinkPad Laptop,1,999.99,12/03/19 22:35,"186 Madison St, Seattle, WA 98101" -306162,ThinkPad Laptop,1,999.99,12/12/19 09:18,"2 1st St, New York City, NY 10001" -306163,AA Batteries (4-pack),1,3.84,12/10/19 23:09,"273 Cherry St, Los Angeles, CA 90001" -306164,Lightning Charging Cable,1,14.95,12/11/19 10:45,"108 Ridge St, New York City, NY 10001" -306165,Bose SoundSport Headphones,1,99.99,12/31/19 21:42,"3 2nd St, Los Angeles, CA 90001" -306166,AAA Batteries (4-pack),1,2.99,12/16/19 12:46,"453 8th St, Dallas, TX 75001" -306167,USB-C Charging Cable,1,11.95,12/02/19 16:43,"219 West St, New York City, NY 10001" -306168,AA Batteries (4-pack),1,3.84,12/13/19 21:56,"186 North St, New York City, NY 10001" -306169,iPhone,1,700,12/14/19 14:34,"416 Jefferson St, Boston, MA 02215" -306169,Lightning Charging Cable,1,14.95,12/14/19 14:34,"416 Jefferson St, Boston, MA 02215" -306170,Wired Headphones,1,11.99,12/27/19 21:34,"892 River St, Los Angeles, CA 90001" -306171,Vareebadd Phone,1,400,12/12/19 18:21,"328 7th St, San Francisco, CA 94016" -306172,AAA Batteries (4-pack),1,2.99,12/10/19 09:38,"185 10th St, Portland, ME 04101" -306173,AA Batteries (4-pack),1,3.84,12/23/19 09:12,"539 Walnut St, Austin, TX 73301" -306174,AA Batteries (4-pack),2,3.84,12/29/19 11:53,"82 14th St, Seattle, WA 98101" -306175,AA Batteries (4-pack),1,3.84,12/11/19 20:10,"657 1st St, Portland, OR 97035" -306176,Google Phone,1,600,12/25/19 19:25,"452 Church St, Seattle, WA 98101" -306177,27in 4K Gaming Monitor,1,389.99,12/27/19 19:35,"734 Walnut St, Portland, OR 97035" -306178,Bose SoundSport Headphones,1,99.99,12/26/19 04:54,"802 Center St, Austin, TX 73301" -306179,USB-C Charging Cable,1,11.95,12/26/19 12:25,"696 4th St, Los Angeles, CA 90001" -306180,Apple Airpods Headphones,1,150,12/13/19 09:33,"858 13th St, Boston, MA 02215" -306181,AA Batteries (4-pack),1,3.84,12/18/19 16:05,"837 Cherry St, Boston, MA 02215" -306182,AAA Batteries (4-pack),2,2.99,12/17/19 12:22,"339 9th St, San Francisco, CA 94016" -306183,27in 4K Gaming Monitor,1,389.99,12/14/19 20:06,"206 Hickory St, Seattle, WA 98101" -306184,Bose SoundSport Headphones,1,99.99,12/27/19 11:17,"503 Madison St, Dallas, TX 75001" -306185,iPhone,1,700,12/11/19 13:25,"278 14th St, Portland, OR 97035" -306186,Apple Airpods Headphones,1,150,12/23/19 14:16,"970 Jackson St, Seattle, WA 98101" -306187,Bose SoundSport Headphones,1,99.99,12/16/19 10:49,"424 Walnut St, Seattle, WA 98101" -306188,AA Batteries (4-pack),1,3.84,12/15/19 14:07,"834 West St, New York City, NY 10001" -306189,Apple Airpods Headphones,1,150,12/11/19 16:46,"723 South St, Los Angeles, CA 90001" -306190,Wired Headphones,1,11.99,12/15/19 00:02,"22 North St, Los Angeles, CA 90001" -306191,Apple Airpods Headphones,1,150,12/10/19 03:10,"950 River St, Seattle, WA 98101" -306192,Google Phone,1,600,12/08/19 19:33,"795 Elm St, Boston, MA 02215" -306193,Lightning Charging Cable,1,14.95,12/11/19 10:21,"620 Lincoln St, Los Angeles, CA 90001" -306194,iPhone,1,700,12/04/19 11:12,"382 South St, New York City, NY 10001" -306194,Wired Headphones,1,11.99,12/04/19 11:12,"382 South St, New York City, NY 10001" -306195,Lightning Charging Cable,1,14.95,12/10/19 17:49,"998 Jefferson St, San Francisco, CA 94016" -306196,AAA Batteries (4-pack),1,2.99,12/26/19 13:02,"718 Walnut St, San Francisco, CA 94016" -306197,USB-C Charging Cable,1,11.95,12/11/19 15:03,"867 Church St, Atlanta, GA 30301" -306198,Bose SoundSport Headphones,1,99.99,12/22/19 05:05,"421 6th St, Austin, TX 73301" -306199,Wired Headphones,1,11.99,12/19/19 20:16,"943 Jackson St, Boston, MA 02215" -306200,Wired Headphones,1,11.99,12/08/19 11:06,"308 Dogwood St, Atlanta, GA 30301" -306201,AA Batteries (4-pack),1,3.84,12/03/19 18:16,"45 Center St, Boston, MA 02215" -306202,20in Monitor,1,109.99,12/11/19 16:54,"511 Walnut St, Atlanta, GA 30301" -306203,USB-C Charging Cable,1,11.95,12/24/19 00:31,"275 Hill St, San Francisco, CA 94016" -306204,AAA Batteries (4-pack),2,2.99,12/13/19 21:29,"556 2nd St, Los Angeles, CA 90001" -306205,AAA Batteries (4-pack),1,2.99,12/25/19 10:27,"272 North St, Atlanta, GA 30301" -306206,AAA Batteries (4-pack),1,2.99,12/04/19 14:38,"913 West St, San Francisco, CA 94016" -306207,AAA Batteries (4-pack),1,2.99,12/16/19 20:09,"697 9th St, Dallas, TX 75001" -306208,USB-C Charging Cable,1,11.95,12/02/19 14:00,"312 10th St, Boston, MA 02215" -306209,AA Batteries (4-pack),1,3.84,12/07/19 13:23,"68 Chestnut St, Atlanta, GA 30301" -306210,Wired Headphones,1,11.99,12/12/19 16:20,"716 14th St, Los Angeles, CA 90001" -306211,34in Ultrawide Monitor,1,379.99,12/05/19 08:53,"859 Chestnut St, Portland, ME 04101" -306212,Lightning Charging Cable,1,14.95,12/13/19 05:51,"414 North St, Boston, MA 02215" -306213,Wired Headphones,1,11.99,12/28/19 22:26,"36 Ridge St, San Francisco, CA 94016" -306214,AAA Batteries (4-pack),1,2.99,12/26/19 07:33,"513 Cherry St, Boston, MA 02215" -306215,ThinkPad Laptop,1,999.99,12/28/19 07:19,"688 Spruce St, Boston, MA 02215" -306216,20in Monitor,1,109.99,12/05/19 21:27,"98 10th St, Atlanta, GA 30301" -306217,USB-C Charging Cable,1,11.95,12/26/19 09:21,"378 Chestnut St, Atlanta, GA 30301" -306218,AAA Batteries (4-pack),1,2.99,12/23/19 23:00,"125 Spruce St, Boston, MA 02215" -306219,Google Phone,1,600,12/26/19 14:56,"470 Lakeview St, Portland, OR 97035" -306219,USB-C Charging Cable,1,11.95,12/26/19 14:56,"470 Lakeview St, Portland, OR 97035" -306220,AAA Batteries (4-pack),1,2.99,12/02/19 20:48,"782 8th St, Boston, MA 02215" -306221,AA Batteries (4-pack),1,3.84,12/11/19 11:16,"516 Dogwood St, Los Angeles, CA 90001" -306222,Bose SoundSport Headphones,1,99.99,12/30/19 14:10,"521 Walnut St, Dallas, TX 75001" -306223,AA Batteries (4-pack),2,3.84,12/20/19 15:23,"690 7th St, Dallas, TX 75001" -306224,USB-C Charging Cable,1,11.95,12/28/19 17:27,"242 Highland St, San Francisco, CA 94016" -306225,Google Phone,1,600,12/02/19 21:13,"581 5th St, Dallas, TX 75001" -306226,Lightning Charging Cable,1,14.95,12/22/19 10:41,"538 9th St, Seattle, WA 98101" -306227,Wired Headphones,1,11.99,12/05/19 17:10,"648 9th St, Los Angeles, CA 90001" -306228,AA Batteries (4-pack),1,3.84,12/23/19 17:32,"56 Park St, Los Angeles, CA 90001" -306229,AAA Batteries (4-pack),1,2.99,12/07/19 18:53,"995 Dogwood St, Atlanta, GA 30301" -306230,AAA Batteries (4-pack),1,2.99,12/09/19 06:24,"347 Lakeview St, San Francisco, CA 94016" -306231,LG Washing Machine,1,600.0,12/03/19 20:25,"503 Chestnut St, San Francisco, CA 94016" -306232,USB-C Charging Cable,1,11.95,12/05/19 18:54,"193 Cedar St, New York City, NY 10001" -306233,Google Phone,1,600,12/30/19 20:35,"587 Dogwood St, Boston, MA 02215" -306234,Apple Airpods Headphones,1,150,12/11/19 20:08,"908 11th St, San Francisco, CA 94016" -306235,AAA Batteries (4-pack),2,2.99,12/23/19 14:35,"444 Madison St, Atlanta, GA 30301" -306236,Lightning Charging Cable,1,14.95,12/22/19 13:53,"749 13th St, New York City, NY 10001" -306237,Lightning Charging Cable,1,14.95,12/05/19 12:05,"122 Meadow St, San Francisco, CA 94016" -306238,Lightning Charging Cable,1,14.95,12/20/19 08:10,"660 Chestnut St, San Francisco, CA 94016" -306239,27in 4K Gaming Monitor,1,389.99,12/01/19 18:58,"702 Center St, San Francisco, CA 94016" -306240,Apple Airpods Headphones,1,150,12/28/19 19:59,"576 Jefferson St, San Francisco, CA 94016" -306241,Wired Headphones,1,11.99,12/19/19 19:02,"872 11th St, Portland, OR 97035" -306242,27in 4K Gaming Monitor,1,389.99,12/14/19 15:51,"571 Sunset St, Seattle, WA 98101" -306243,27in FHD Monitor,1,149.99,12/11/19 21:44,"862 Washington St, Dallas, TX 75001" -306244,USB-C Charging Cable,1,11.95,12/13/19 06:34,"300 Chestnut St, Boston, MA 02215" -306245,USB-C Charging Cable,1,11.95,12/23/19 17:34,"143 Pine St, San Francisco, CA 94016" -306246,iPhone,1,700,12/06/19 18:37,"761 Church St, San Francisco, CA 94016" -306246,Wired Headphones,1,11.99,12/06/19 18:37,"761 Church St, San Francisco, CA 94016" -306247,Lightning Charging Cable,1,14.95,12/24/19 22:06,"478 5th St, New York City, NY 10001" -306248,AAA Batteries (4-pack),6,2.99,12/23/19 18:08,"598 Church St, New York City, NY 10001" -306249,Wired Headphones,1,11.99,12/26/19 18:35,"854 Sunset St, Los Angeles, CA 90001" -306250,Flatscreen TV,1,300,12/02/19 15:46,"468 14th St, Boston, MA 02215" -306251,Bose SoundSport Headphones,1,99.99,12/25/19 10:02,"518 Adams St, San Francisco, CA 94016" -306252,USB-C Charging Cable,1,11.95,12/31/19 13:27,"654 Sunset St, Austin, TX 73301" -306253,Bose SoundSport Headphones,1,99.99,12/07/19 19:33,"534 Jefferson St, Seattle, WA 98101" -306254,USB-C Charging Cable,1,11.95,12/24/19 16:30,"812 Forest St, Los Angeles, CA 90001" -306255,Lightning Charging Cable,1,14.95,12/07/19 10:57,"650 Center St, Dallas, TX 75001" -306256,Lightning Charging Cable,1,14.95,12/01/19 19:18,"597 8th St, Los Angeles, CA 90001" -306257,Google Phone,1,600,12/20/19 14:03,"703 2nd St, Boston, MA 02215" -306258,Lightning Charging Cable,1,14.95,12/15/19 20:16,"116 Lincoln St, Seattle, WA 98101" -306258,USB-C Charging Cable,1,11.95,12/15/19 20:16,"116 Lincoln St, Seattle, WA 98101" -306259,USB-C Charging Cable,1,11.95,12/07/19 22:42,"122 Dogwood St, Seattle, WA 98101" -306260,Apple Airpods Headphones,1,150,12/17/19 18:48,"729 North St, Los Angeles, CA 90001" -306261,Apple Airpods Headphones,1,150,12/19/19 17:22,"573 Madison St, Seattle, WA 98101" -306261,27in 4K Gaming Monitor,1,389.99,12/19/19 17:22,"573 Madison St, Seattle, WA 98101" -306262,iPhone,1,700,12/27/19 20:35,"86 Adams St, San Francisco, CA 94016" -306263,Bose SoundSport Headphones,1,99.99,12/04/19 22:37,"196 5th St, Austin, TX 73301" -306264,AA Batteries (4-pack),1,3.84,12/14/19 14:07,"371 Elm St, Austin, TX 73301" -306265,Apple Airpods Headphones,1,150,12/26/19 16:06,"967 7th St, Austin, TX 73301" -306266,Apple Airpods Headphones,1,150,12/17/19 12:03,"710 Lakeview St, Seattle, WA 98101" -306267,iPhone,1,700,12/23/19 18:58,"41 Jackson St, Atlanta, GA 30301" -306268,AA Batteries (4-pack),1,3.84,12/13/19 15:06,"536 7th St, San Francisco, CA 94016" -306269,iPhone,1,700,12/15/19 17:21,"764 8th St, Portland, OR 97035" -306270,iPhone,1,700,12/21/19 06:27,"293 Cherry St, San Francisco, CA 94016" -306271,AAA Batteries (4-pack),2,2.99,12/10/19 13:17,"487 River St, New York City, NY 10001" -306272,27in 4K Gaming Monitor,1,389.99,12/15/19 12:19,"24 Madison St, Los Angeles, CA 90001" -306273,Macbook Pro Laptop,1,1700,12/28/19 18:51,"971 Sunset St, Portland, OR 97035" -306274,27in FHD Monitor,1,149.99,12/11/19 18:37,"185 4th St, San Francisco, CA 94016" -306275,iPhone,1,700,12/25/19 22:02,"82 4th St, Los Angeles, CA 90001" -306276,Flatscreen TV,1,300,12/08/19 17:16,"637 South St, New York City, NY 10001" -306277,Google Phone,1,600,12/12/19 06:28,"735 Chestnut St, Portland, OR 97035" -306277,Bose SoundSport Headphones,1,99.99,12/12/19 06:28,"735 Chestnut St, Portland, OR 97035" -306278,USB-C Charging Cable,1,11.95,12/29/19 20:44,"962 Sunset St, San Francisco, CA 94016" -306279,Lightning Charging Cable,1,14.95,12/31/19 12:38,"999 14th St, Los Angeles, CA 90001" -306280,Apple Airpods Headphones,1,150,12/08/19 21:07,"18 Jackson St, Boston, MA 02215" -306281,Wired Headphones,1,11.99,12/11/19 10:48,"26 River St, San Francisco, CA 94016" -306282,Bose SoundSport Headphones,1,99.99,12/12/19 14:37,"574 Wilson St, San Francisco, CA 94016" -306283,20in Monitor,1,109.99,12/10/19 10:06,"334 Meadow St, Los Angeles, CA 90001" -306284,USB-C Charging Cable,1,11.95,12/27/19 19:23,"560 Main St, San Francisco, CA 94016" -306285,ThinkPad Laptop,1,999.99,12/18/19 13:00,"982 Dogwood St, Los Angeles, CA 90001" -306286,AA Batteries (4-pack),1,3.84,12/01/19 07:27,"973 Cherry St, New York City, NY 10001" -306287,27in FHD Monitor,1,149.99,12/24/19 13:25,"502 5th St, San Francisco, CA 94016" -306288,USB-C Charging Cable,1,11.95,12/20/19 16:40,"221 7th St, San Francisco, CA 94016" -306289,AAA Batteries (4-pack),2,2.99,12/17/19 20:05,"896 West St, San Francisco, CA 94016" -306290,Apple Airpods Headphones,1,150,12/08/19 20:30,"215 Chestnut St, New York City, NY 10001" -306291,AA Batteries (4-pack),1,3.84,12/18/19 17:24,"177 West St, Seattle, WA 98101" -306292,USB-C Charging Cable,1,11.95,12/04/19 17:18,"58 Adams St, Los Angeles, CA 90001" -306293,ThinkPad Laptop,1,999.99,12/09/19 14:56,"784 West St, Atlanta, GA 30301" -306294,34in Ultrawide Monitor,1,379.99,12/22/19 19:06,"130 Forest St, Seattle, WA 98101" -306295,Wired Headphones,1,11.99,12/01/19 21:38,"43 Church St, Portland, OR 97035" -306296,USB-C Charging Cable,1,11.95,12/18/19 09:03,"256 Johnson St, Seattle, WA 98101" -306297,Google Phone,1,600,12/01/19 12:18,"791 14th St, Los Angeles, CA 90001" -306298,iPhone,1,700,12/09/19 11:00,"508 River St, Seattle, WA 98101" -306299,Lightning Charging Cable,1,14.95,12/21/19 14:21,"921 River St, Los Angeles, CA 90001" -306300,Apple Airpods Headphones,1,150,12/23/19 13:26,"144 Sunset St, New York City, NY 10001" -306301,AA Batteries (4-pack),1,3.84,12/24/19 18:43,"155 Jefferson St, Seattle, WA 98101" -306302,Wired Headphones,1,11.99,12/10/19 09:25,"86 Elm St, New York City, NY 10001" -306303,27in 4K Gaming Monitor,1,389.99,12/29/19 09:40,"289 Cherry St, San Francisco, CA 94016" -306304,Wired Headphones,1,11.99,12/13/19 09:04,"437 Dogwood St, San Francisco, CA 94016" -306305,AAA Batteries (4-pack),1,2.99,12/26/19 18:28,"959 12th St, New York City, NY 10001" -306306,27in 4K Gaming Monitor,1,389.99,12/29/19 05:08,"560 7th St, San Francisco, CA 94016" -306307,iPhone,1,700,12/09/19 21:55,"249 Pine St, San Francisco, CA 94016" -306308,Flatscreen TV,1,300,12/13/19 18:00,"960 Hill St, Seattle, WA 98101" -306308,Flatscreen TV,1,300,12/13/19 18:00,"960 Hill St, Seattle, WA 98101" -306309,AA Batteries (4-pack),1,3.84,12/24/19 13:51,"110 Maple St, Boston, MA 02215" -306310,USB-C Charging Cable,1,11.95,12/03/19 01:25,"688 Chestnut St, Austin, TX 73301" -306311,iPhone,1,700,12/11/19 23:36,"462 Willow St, Seattle, WA 98101" -306311,AAA Batteries (4-pack),1,2.99,12/11/19 23:36,"462 Willow St, Seattle, WA 98101" -306312,27in FHD Monitor,1,149.99,12/24/19 08:35,"299 7th St, Atlanta, GA 30301" -306313,Bose SoundSport Headphones,1,99.99,12/06/19 05:39,"470 6th St, New York City, NY 10001" -306314,34in Ultrawide Monitor,1,379.99,12/17/19 11:58,"576 Jefferson St, Atlanta, GA 30301" -306315,Bose SoundSport Headphones,1,99.99,12/05/19 10:43,"102 Johnson St, Portland, OR 97035" -306316,Macbook Pro Laptop,1,1700,12/20/19 13:25,"585 Forest St, San Francisco, CA 94016" -306317,iPhone,1,700,12/24/19 11:24,"790 Church St, New York City, NY 10001" -306318,Wired Headphones,1,11.99,12/30/19 20:39,"302 13th St, New York City, NY 10001" -306319,USB-C Charging Cable,1,11.95,12/31/19 18:39,"60 West St, New York City, NY 10001" -306320,Bose SoundSport Headphones,1,99.99,12/16/19 17:45,"209 Jefferson St, Los Angeles, CA 90001" -306321,iPhone,1,700,12/12/19 20:48,"36 Johnson St, Austin, TX 73301" -306322,AAA Batteries (4-pack),1,2.99,12/29/19 16:05,"858 5th St, San Francisco, CA 94016" -306323,AAA Batteries (4-pack),2,2.99,12/13/19 08:58,"216 Dogwood St, Dallas, TX 75001" -306324,AA Batteries (4-pack),1,3.84,12/24/19 15:01,"139 12th St, Seattle, WA 98101" -306325,AA Batteries (4-pack),2,3.84,12/28/19 21:07,"879 Lakeview St, New York City, NY 10001" -306326,Google Phone,1,600,12/22/19 15:52,"917 Maple St, Boston, MA 02215" -306327,Bose SoundSport Headphones,1,99.99,12/02/19 18:19,"60 Main St, New York City, NY 10001" -306328,Wired Headphones,1,11.99,12/02/19 18:18,"152 Lake St, Boston, MA 02215" -306329,Wired Headphones,1,11.99,12/23/19 21:46,"709 8th St, San Francisco, CA 94016" -306330,AAA Batteries (4-pack),1,2.99,12/25/19 11:50,"216 8th St, Austin, TX 73301" -306331,AA Batteries (4-pack),1,3.84,12/25/19 10:38,"601 7th St, San Francisco, CA 94016" -306332,iPhone,1,700,12/17/19 15:56,"552 Spruce St, Austin, TX 73301" -306332,Lightning Charging Cable,1,14.95,12/17/19 15:56,"552 Spruce St, Austin, TX 73301" -306333,AA Batteries (4-pack),1,3.84,12/21/19 15:20,"102 Park St, Los Angeles, CA 90001" -306334,USB-C Charging Cable,1,11.95,12/25/19 20:36,"815 River St, Los Angeles, CA 90001" -306335,Bose SoundSport Headphones,1,99.99,12/27/19 09:18,"975 14th St, Atlanta, GA 30301" -306336,20in Monitor,1,109.99,12/28/19 23:22,"570 13th St, San Francisco, CA 94016" -306337,Bose SoundSport Headphones,1,99.99,12/13/19 15:26,"493 Lakeview St, Boston, MA 02215" -306338,Wired Headphones,2,11.99,12/06/19 20:47,"744 Johnson St, Dallas, TX 75001" -306339,iPhone,1,700,12/24/19 16:56,"710 Park St, Portland, OR 97035" -306340,USB-C Charging Cable,2,11.95,12/31/19 14:12,"460 South St, Los Angeles, CA 90001" -306341,USB-C Charging Cable,1,11.95,12/12/19 14:41,"245 Forest St, New York City, NY 10001" -306342,AAA Batteries (4-pack),2,2.99,12/21/19 15:14,"762 10th St, New York City, NY 10001" -306343,Wired Headphones,1,11.99,12/04/19 14:34,"108 Meadow St, San Francisco, CA 94016" -306344,USB-C Charging Cable,1,11.95,12/02/19 14:55,"107 North St, Boston, MA 02215" -306345,AAA Batteries (4-pack),2,2.99,12/26/19 09:39,"747 River St, Los Angeles, CA 90001" -306346,Apple Airpods Headphones,1,150,12/28/19 07:47,"519 Highland St, Austin, TX 73301" -306347,USB-C Charging Cable,1,11.95,12/15/19 09:14,"57 Highland St, Portland, OR 97035" -306348,Lightning Charging Cable,1,14.95,12/23/19 19:25,"710 Sunset St, Los Angeles, CA 90001" -306349,USB-C Charging Cable,1,11.95,12/14/19 17:25,"377 Madison St, Boston, MA 02215" -306350,Google Phone,1,600,12/24/19 13:49,"794 Hickory St, Los Angeles, CA 90001" -306351,AAA Batteries (4-pack),1,2.99,12/08/19 20:57,"945 4th St, Boston, MA 02215" -306352,AAA Batteries (4-pack),1,2.99,12/14/19 16:47,"474 Jackson St, Atlanta, GA 30301" -306353,AAA Batteries (4-pack),2,2.99,12/13/19 22:31,"79 10th St, Dallas, TX 75001" -306354,AAA Batteries (4-pack),1,2.99,12/01/19 15:43,"452 Lakeview St, Seattle, WA 98101" -306355,Flatscreen TV,1,300,12/13/19 19:07,"222 Center St, Atlanta, GA 30301" -306356,20in Monitor,1,109.99,12/09/19 08:48,"189 5th St, Boston, MA 02215" -306357,27in FHD Monitor,1,149.99,12/25/19 19:29,"376 Chestnut St, Dallas, TX 75001" -306358,AAA Batteries (4-pack),2,2.99,12/24/19 11:36,"78 Church St, Los Angeles, CA 90001" -306359,USB-C Charging Cable,1,11.95,12/20/19 08:45,"151 1st St, San Francisco, CA 94016" -306360,AAA Batteries (4-pack),3,2.99,12/21/19 09:42,"260 Elm St, New York City, NY 10001" -306361,AA Batteries (4-pack),1,3.84,12/19/19 22:09,"561 1st St, San Francisco, CA 94016" -306362,AA Batteries (4-pack),2,3.84,12/27/19 11:17,"862 Lincoln St, Los Angeles, CA 90001" -306363,AA Batteries (4-pack),4,3.84,12/05/19 03:19,"222 South St, Los Angeles, CA 90001" -306364,USB-C Charging Cable,1,11.95,12/06/19 12:40,"253 West St, Boston, MA 02215" -306365,Bose SoundSport Headphones,1,99.99,12/20/19 16:53,"998 8th St, Austin, TX 73301" -306366,Wired Headphones,1,11.99,12/15/19 21:31,"812 Meadow St, San Francisco, CA 94016" -306367,Macbook Pro Laptop,1,1700,12/05/19 19:23,"744 West St, Portland, ME 04101" -306368,Macbook Pro Laptop,1,1700,12/26/19 22:07,"459 13th St, Los Angeles, CA 90001" -306369,Flatscreen TV,1,300,12/26/19 11:34,"260 Walnut St, Boston, MA 02215" -306370,AA Batteries (4-pack),2,3.84,12/26/19 17:18,"356 Forest St, Los Angeles, CA 90001" -306371,Lightning Charging Cable,1,14.95,12/15/19 06:11,"429 Ridge St, New York City, NY 10001" -306372,Wired Headphones,1,11.99,12/23/19 17:28,"255 South St, Los Angeles, CA 90001" -306373,USB-C Charging Cable,3,11.95,12/16/19 16:34,"419 Madison St, San Francisco, CA 94016" -306374,Bose SoundSport Headphones,1,99.99,12/22/19 12:34,"814 Hickory St, Boston, MA 02215" -306375,27in FHD Monitor,1,149.99,12/25/19 12:46,"447 Highland St, San Francisco, CA 94016" -306376,Bose SoundSport Headphones,1,99.99,12/17/19 06:54,"368 North St, Seattle, WA 98101" -306377,Lightning Charging Cable,1,14.95,12/21/19 02:10,"752 Sunset St, San Francisco, CA 94016" -306378,AA Batteries (4-pack),2,3.84,12/08/19 20:34,"673 Main St, Boston, MA 02215" -306379,Wired Headphones,1,11.99,12/09/19 03:45,"460 5th St, Dallas, TX 75001" -306380,AA Batteries (4-pack),1,3.84,12/05/19 12:15,"284 Walnut St, San Francisco, CA 94016" -306381,AAA Batteries (4-pack),1,2.99,12/14/19 10:43,"270 Jefferson St, San Francisco, CA 94016" -306382,Lightning Charging Cable,1,14.95,12/11/19 11:31,"584 Walnut St, Boston, MA 02215" -306383,AAA Batteries (4-pack),1,2.99,12/20/19 20:28,"961 Jackson St, Dallas, TX 75001" -306384,Google Phone,1,600,12/16/19 16:53,"869 Lincoln St, Dallas, TX 75001" -306385,USB-C Charging Cable,1,11.95,12/14/19 17:15,"147 14th St, Seattle, WA 98101" -306386,iPhone,1,700,12/08/19 14:22,"424 Maple St, Seattle, WA 98101" -306387,Wired Headphones,1,11.99,12/15/19 11:21,"286 Adams St, San Francisco, CA 94016" -306388,AA Batteries (4-pack),1,3.84,12/02/19 01:57,"22 1st St, Boston, MA 02215" -306389,AAA Batteries (4-pack),2,2.99,12/03/19 15:35,"846 Pine St, San Francisco, CA 94016" -306390,Apple Airpods Headphones,1,150,12/16/19 15:20,"2 Washington St, Atlanta, GA 30301" -306391,Lightning Charging Cable,1,14.95,12/08/19 12:39,"795 Ridge St, Seattle, WA 98101" -306392,AAA Batteries (4-pack),1,2.99,12/04/19 10:28,"202 Spruce St, New York City, NY 10001" -306393,Lightning Charging Cable,1,14.95,12/02/19 07:46,"404 2nd St, San Francisco, CA 94016" -306394,AAA Batteries (4-pack),4,2.99,12/14/19 11:54,"616 Maple St, Dallas, TX 75001" -306395,Apple Airpods Headphones,1,150,12/11/19 13:38,"318 Church St, Portland, OR 97035" -306396,AA Batteries (4-pack),1,3.84,12/02/19 11:12,"776 Park St, Dallas, TX 75001" -306397,AAA Batteries (4-pack),2,2.99,12/02/19 07:26,"676 Highland St, Boston, MA 02215" -306398,20in Monitor,1,109.99,12/26/19 15:52,"197 South St, Los Angeles, CA 90001" -306399,AA Batteries (4-pack),1,3.84,12/22/19 09:04,"962 Madison St, San Francisco, CA 94016" -306400,AA Batteries (4-pack),2,3.84,12/02/19 12:34,"541 Adams St, Dallas, TX 75001" -306401,Wired Headphones,1,11.99,12/28/19 22:44,"923 Washington St, Boston, MA 02215" -306402,Apple Airpods Headphones,1,150,12/21/19 08:40,"926 Johnson St, San Francisco, CA 94016" -306403,34in Ultrawide Monitor,1,379.99,12/10/19 17:17,"952 Meadow St, Los Angeles, CA 90001" -306404,AAA Batteries (4-pack),1,2.99,12/08/19 12:22,"880 Sunset St, San Francisco, CA 94016" -306405,Apple Airpods Headphones,1,150,12/09/19 09:24,"72 Hill St, Atlanta, GA 30301" -306406,27in FHD Monitor,1,149.99,12/15/19 12:49,"677 Wilson St, San Francisco, CA 94016" -306407,AA Batteries (4-pack),3,3.84,12/29/19 19:07,"298 1st St, Los Angeles, CA 90001" -306408,Apple Airpods Headphones,1,150,12/11/19 23:20,"125 7th St, Dallas, TX 75001" -306409,USB-C Charging Cable,1,11.95,12/15/19 13:13,"850 6th St, Boston, MA 02215" -306410,Lightning Charging Cable,1,14.95,12/31/19 14:59,"264 Pine St, Los Angeles, CA 90001" -306411,Lightning Charging Cable,1,14.95,12/09/19 00:58,"112 Hill St, Portland, ME 04101" -306412,USB-C Charging Cable,1,11.95,12/22/19 17:19,"334 Sunset St, San Francisco, CA 94016" -306413,AA Batteries (4-pack),1,3.84,12/31/19 08:23,"614 West St, Portland, OR 97035" -306414,AAA Batteries (4-pack),2,2.99,12/28/19 09:44,"682 Hill St, Seattle, WA 98101" -306415,AAA Batteries (4-pack),1,2.99,12/17/19 07:42,"570 Church St, New York City, NY 10001" -306416,27in 4K Gaming Monitor,1,389.99,12/23/19 09:10,"307 Ridge St, Los Angeles, CA 90001" -306417,Wired Headphones,1,11.99,12/29/19 02:07,"466 Lake St, Dallas, TX 75001" -306418,USB-C Charging Cable,1,11.95,12/19/19 19:33,"292 South St, Atlanta, GA 30301" -306419,USB-C Charging Cable,1,11.95,12/04/19 14:57,"975 10th St, Boston, MA 02215" -306420,AAA Batteries (4-pack),2,2.99,12/30/19 14:15,"611 Cedar St, Los Angeles, CA 90001" -306421,Lightning Charging Cable,1,14.95,12/04/19 15:26,"377 Dogwood St, New York City, NY 10001" -306422,AA Batteries (4-pack),1,3.84,12/05/19 11:19,"467 Sunset St, Seattle, WA 98101" -306423,ThinkPad Laptop,1,999.99,12/20/19 14:53,"7 10th St, Boston, MA 02215" -306424,Apple Airpods Headphones,1,150,12/24/19 14:43,"77 6th St, New York City, NY 10001" -306425,Macbook Pro Laptop,1,1700,12/10/19 16:26,"808 Main St, San Francisco, CA 94016" -306426,USB-C Charging Cable,1,11.95,12/01/19 18:33,"270 8th St, Boston, MA 02215" -306427,AAA Batteries (4-pack),1,2.99,12/13/19 16:34,"102 Maple St, Austin, TX 73301" -306428,Flatscreen TV,1,300,12/08/19 20:27,"370 7th St, Boston, MA 02215" -306428,Lightning Charging Cable,1,14.95,12/08/19 20:27,"370 7th St, Boston, MA 02215" -306429,ThinkPad Laptop,1,999.99,12/12/19 15:00,"811 Lincoln St, Atlanta, GA 30301" -306430,USB-C Charging Cable,1,11.95,12/27/19 14:36,"639 Main St, San Francisco, CA 94016" -306431,34in Ultrawide Monitor,1,379.99,12/07/19 09:13,"471 9th St, New York City, NY 10001" -306432,Macbook Pro Laptop,1,1700,12/04/19 13:39,"990 Lakeview St, Boston, MA 02215" -306433,AA Batteries (4-pack),2,3.84,12/22/19 21:42,"885 Spruce St, Los Angeles, CA 90001" -306434,Lightning Charging Cable,1,14.95,12/15/19 09:52,"414 10th St, Dallas, TX 75001" -306435,Lightning Charging Cable,1,14.95,12/11/19 21:17,"467 10th St, San Francisco, CA 94016" -306436,Wired Headphones,1,11.99,12/23/19 13:54,"433 12th St, Los Angeles, CA 90001" -306437,USB-C Charging Cable,1,11.95,12/03/19 11:59,"881 Cherry St, Seattle, WA 98101" -306438,LG Washing Machine,1,600.0,12/17/19 19:21,"332 Walnut St, San Francisco, CA 94016" -306439,AAA Batteries (4-pack),1,2.99,12/01/19 13:35,"114 Forest St, Dallas, TX 75001" -306440,27in FHD Monitor,1,149.99,12/26/19 19:03,"290 Willow St, Portland, OR 97035" -306441,iPhone,1,700,12/26/19 11:55,"877 Center St, San Francisco, CA 94016" -306441,Wired Headphones,1,11.99,12/26/19 11:55,"877 Center St, San Francisco, CA 94016" -306442,iPhone,1,700,12/17/19 16:26,"25 Johnson St, San Francisco, CA 94016" -306443,Flatscreen TV,1,300,12/09/19 16:23,"637 Cedar St, Dallas, TX 75001" -306444,USB-C Charging Cable,3,11.95,12/06/19 14:29,"523 Jackson St, Atlanta, GA 30301" -306445,Lightning Charging Cable,1,14.95,12/29/19 22:03,"784 North St, Boston, MA 02215" -306446,Lightning Charging Cable,1,14.95,12/02/19 18:31,"493 North St, Los Angeles, CA 90001" -306447,Google Phone,1,600,12/22/19 17:15,"626 Willow St, San Francisco, CA 94016" -306448,AAA Batteries (4-pack),1,2.99,12/12/19 07:43,"298 7th St, Boston, MA 02215" -306449,iPhone,1,700,12/26/19 23:43,"787 Madison St, Seattle, WA 98101" -306450,Wired Headphones,1,11.99,12/22/19 16:12,"369 Ridge St, San Francisco, CA 94016" -306451,AA Batteries (4-pack),1,3.84,12/07/19 10:52,"869 Meadow St, Seattle, WA 98101" -306452,iPhone,1,700,12/09/19 15:11,"551 River St, Seattle, WA 98101" -306453,Wired Headphones,1,11.99,12/17/19 08:45,"290 7th St, Boston, MA 02215" -306454,AAA Batteries (4-pack),2,2.99,12/24/19 07:19,"55 River St, Portland, OR 97035" -306455,ThinkPad Laptop,1,999.99,12/01/19 12:52,"319 Pine St, New York City, NY 10001" -306456,Wired Headphones,1,11.99,12/05/19 16:53,"701 Willow St, San Francisco, CA 94016" -306457,Wired Headphones,1,11.99,12/02/19 13:37,"532 Highland St, Los Angeles, CA 90001" -306458,27in 4K Gaming Monitor,1,389.99,12/22/19 11:27,"641 West St, Atlanta, GA 30301" -306458,27in 4K Gaming Monitor,1,389.99,12/22/19 11:27,"641 West St, Atlanta, GA 30301" -306459,Lightning Charging Cable,1,14.95,12/29/19 00:58,"343 4th St, Boston, MA 02215" -306460,AAA Batteries (4-pack),2,2.99,12/21/19 17:53,"769 Dogwood St, New York City, NY 10001" -306461,27in 4K Gaming Monitor,1,389.99,12/12/19 20:00,"694 Cedar St, Atlanta, GA 30301" -306462,AA Batteries (4-pack),1,3.84,12/03/19 10:45,"661 Dogwood St, Los Angeles, CA 90001" -306463,AA Batteries (4-pack),1,3.84,12/02/19 23:38,"884 Park St, San Francisco, CA 94016" -306464,AA Batteries (4-pack),1,3.84,12/16/19 00:22,"308 11th St, New York City, NY 10001" -306465,Bose SoundSport Headphones,1,99.99,12/07/19 13:21,"104 Highland St, Dallas, TX 75001" -306466,Lightning Charging Cable,1,14.95,12/14/19 10:57,"167 Washington St, Seattle, WA 98101" -306467,Lightning Charging Cable,1,14.95,12/31/19 21:25,"29 14th St, San Francisco, CA 94016" -306468,AAA Batteries (4-pack),1,2.99,12/16/19 16:14,"95 Highland St, Atlanta, GA 30301" -306469,Lightning Charging Cable,1,14.95,12/23/19 07:21,"189 River St, Boston, MA 02215" -306470,Google Phone,1,600,12/12/19 18:27,"25 Center St, San Francisco, CA 94016" -306470,USB-C Charging Cable,1,11.95,12/12/19 18:27,"25 Center St, San Francisco, CA 94016" -306471,AAA Batteries (4-pack),1,2.99,12/16/19 10:27,"117 5th St, San Francisco, CA 94016" -306472,Lightning Charging Cable,1,14.95,12/15/19 00:55,"144 Forest St, New York City, NY 10001" -306473,USB-C Charging Cable,2,11.95,12/12/19 14:29,"810 Chestnut St, Dallas, TX 75001" -306474,Wired Headphones,1,11.99,12/15/19 08:59,"6 11th St, San Francisco, CA 94016" -306475,Wired Headphones,1,11.99,12/13/19 17:18,"869 South St, San Francisco, CA 94016" -306476,USB-C Charging Cable,1,11.95,12/12/19 18:51,"913 5th St, Boston, MA 02215" -306477,Wired Headphones,1,11.99,12/11/19 10:32,"394 Cedar St, Seattle, WA 98101" -306478,Macbook Pro Laptop,1,1700,12/19/19 14:25,"339 South St, Los Angeles, CA 90001" -306479,AA Batteries (4-pack),1,3.84,12/07/19 06:58,"910 Cherry St, New York City, NY 10001" -306480,USB-C Charging Cable,1,11.95,12/14/19 08:19,"598 Chestnut St, Los Angeles, CA 90001" -306481,34in Ultrawide Monitor,1,379.99,12/02/19 18:12,"81 Lake St, Boston, MA 02215" -306482,Lightning Charging Cable,1,14.95,12/05/19 06:55,"81 Hill St, Los Angeles, CA 90001" -306483,Apple Airpods Headphones,1,150,12/13/19 00:20,"523 Walnut St, Los Angeles, CA 90001" -306484,AAA Batteries (4-pack),3,2.99,12/04/19 18:36,"161 6th St, Los Angeles, CA 90001" -306485,Lightning Charging Cable,1,14.95,12/01/19 21:57,"337 9th St, San Francisco, CA 94016" -306485,Lightning Charging Cable,1,14.95,12/01/19 21:57,"337 9th St, San Francisco, CA 94016" -306486,27in 4K Gaming Monitor,1,389.99,12/29/19 15:46,"849 Lincoln St, New York City, NY 10001" -306487,Apple Airpods Headphones,1,150,12/17/19 22:59,"864 Center St, New York City, NY 10001" -306488,Wired Headphones,1,11.99,12/01/19 21:43,"971 Lincoln St, Boston, MA 02215" -306489,27in FHD Monitor,1,149.99,12/24/19 15:30,"51 Cherry St, New York City, NY 10001" -306490,20in Monitor,1,109.99,12/25/19 15:40,"456 14th St, Los Angeles, CA 90001" -306491,AA Batteries (4-pack),1,3.84,12/22/19 17:02,"225 Spruce St, Seattle, WA 98101" -306492,Lightning Charging Cable,1,14.95,12/22/19 10:25,"403 Ridge St, San Francisco, CA 94016" -306493,AAA Batteries (4-pack),1,2.99,12/20/19 19:35,"50 Maple St, Atlanta, GA 30301" -306494,Wired Headphones,1,11.99,12/09/19 15:19,"775 Hickory St, Boston, MA 02215" -306495,27in 4K Gaming Monitor,1,389.99,12/04/19 16:34,"949 Lake St, Boston, MA 02215" -306496,Flatscreen TV,1,300,12/09/19 19:16,"664 Walnut St, New York City, NY 10001" -306497,USB-C Charging Cable,1,11.95,12/02/19 22:24,"134 Cherry St, San Francisco, CA 94016" -306498,Lightning Charging Cable,1,14.95,12/30/19 23:13,"997 Jackson St, Los Angeles, CA 90001" -306498,AAA Batteries (4-pack),1,2.99,12/30/19 23:13,"997 Jackson St, Los Angeles, CA 90001" -306499,Bose SoundSport Headphones,1,99.99,12/24/19 19:56,"97 South St, Portland, ME 04101" -306500,Vareebadd Phone,1,400,12/15/19 12:09,"6 River St, Los Angeles, CA 90001" -306501,Bose SoundSport Headphones,1,99.99,12/03/19 09:46,"27 Washington St, Boston, MA 02215" -306502,Wired Headphones,1,11.99,12/11/19 13:04,"103 Cherry St, San Francisco, CA 94016" -306503,Lightning Charging Cable,2,14.95,12/01/19 14:01,"577 Maple St, San Francisco, CA 94016" -306504,Apple Airpods Headphones,1,150,12/13/19 16:43,"480 2nd St, Boston, MA 02215" -306505,20in Monitor,1,109.99,12/07/19 12:05,"23 5th St, San Francisco, CA 94016" -306506,Apple Airpods Headphones,1,150,12/19/19 21:10,"6 Park St, San Francisco, CA 94016" -306507,Lightning Charging Cable,1,14.95,12/06/19 17:21,"36 Pine St, New York City, NY 10001" -306508,Wired Headphones,1,11.99,12/19/19 02:33,"921 North St, San Francisco, CA 94016" -306509,27in FHD Monitor,1,149.99,12/02/19 16:03,"959 Park St, San Francisco, CA 94016" -306510,USB-C Charging Cable,1,11.95,12/28/19 07:06,"201 Park St, Boston, MA 02215" -306511,Macbook Pro Laptop,1,1700,12/28/19 22:57,"549 River St, San Francisco, CA 94016" -306512,Flatscreen TV,1,300,12/28/19 17:56,"575 13th St, Seattle, WA 98101" -306513,Google Phone,1,600,12/06/19 14:37,"964 Cedar St, San Francisco, CA 94016" -306514,Macbook Pro Laptop,1,1700,12/22/19 18:33,"947 Forest St, Los Angeles, CA 90001" -306515,Apple Airpods Headphones,1,150,12/21/19 16:56,"719 Ridge St, San Francisco, CA 94016" -306516,Wired Headphones,1,11.99,12/05/19 16:19,"912 7th St, Boston, MA 02215" -306517,Wired Headphones,1,11.99,12/22/19 15:30,"186 Church St, San Francisco, CA 94016" -306517,Google Phone,1,600,12/22/19 15:30,"186 Church St, San Francisco, CA 94016" -306518,AAA Batteries (4-pack),1,2.99,12/21/19 21:44,"964 4th St, Portland, ME 04101" -306519,USB-C Charging Cable,1,11.95,12/19/19 10:35,"266 Walnut St, New York City, NY 10001" -306520,Apple Airpods Headphones,1,150,12/20/19 15:32,"283 Pine St, Boston, MA 02215" -306521,USB-C Charging Cable,1,11.95,12/16/19 08:36,"503 Cedar St, San Francisco, CA 94016" -306522,Lightning Charging Cable,3,14.95,12/16/19 01:18,"881 Washington St, Los Angeles, CA 90001" -306523,AA Batteries (4-pack),1,3.84,12/15/19 09:57,"339 Cedar St, Boston, MA 02215" -306524,Macbook Pro Laptop,1,1700,12/01/19 12:29,"315 Elm St, Boston, MA 02215" -306525,Lightning Charging Cable,1,14.95,12/04/19 20:21,"636 Pine St, Seattle, WA 98101" -306526,27in 4K Gaming Monitor,1,389.99,12/17/19 10:09,"532 Wilson St, Seattle, WA 98101" -306527,20in Monitor,1,109.99,12/11/19 15:30,"886 12th St, New York City, NY 10001" -306527,Wired Headphones,1,11.99,12/11/19 15:30,"886 12th St, New York City, NY 10001" -306528,Wired Headphones,1,11.99,12/18/19 19:01,"115 Forest St, New York City, NY 10001" -306529,USB-C Charging Cable,1,11.95,12/01/19 12:53,"359 4th St, San Francisco, CA 94016" -306530,Bose SoundSport Headphones,1,99.99,12/02/19 19:26,"504 Church St, Portland, ME 04101" -306531,Flatscreen TV,1,300,12/30/19 12:01,"208 Sunset St, Portland, OR 97035" -306532,AA Batteries (4-pack),1,3.84,12/15/19 21:17,"112 Adams St, Los Angeles, CA 90001" -306533,Vareebadd Phone,1,400,12/06/19 19:38,"394 Main St, New York City, NY 10001" -306534,Lightning Charging Cable,1,14.95,12/09/19 20:59,"436 2nd St, Portland, OR 97035" -306535,AA Batteries (4-pack),1,3.84,12/26/19 18:57,"452 Adams St, Boston, MA 02215" -306536,USB-C Charging Cable,1,11.95,12/10/19 11:49,"549 Adams St, New York City, NY 10001" -306537,27in FHD Monitor,1,149.99,12/27/19 20:36,"290 Hill St, Los Angeles, CA 90001" -306538,AAA Batteries (4-pack),3,2.99,12/27/19 08:11,"876 12th St, Los Angeles, CA 90001" -306539,Macbook Pro Laptop,1,1700,12/13/19 17:39,"382 Sunset St, Portland, OR 97035" -306540,AAA Batteries (4-pack),1,2.99,12/29/19 21:44,"524 Church St, Dallas, TX 75001" -306541,AA Batteries (4-pack),1,3.84,12/22/19 19:21,"932 Elm St, Portland, OR 97035" -306542,USB-C Charging Cable,1,11.95,12/14/19 16:01,"528 Lake St, New York City, NY 10001" -306543,Lightning Charging Cable,1,14.95,12/04/19 07:02,"412 9th St, New York City, NY 10001" -306544,Flatscreen TV,1,300,12/27/19 07:04,"378 7th St, San Francisco, CA 94016" -306545,Lightning Charging Cable,2,14.95,12/23/19 19:29,"482 Johnson St, San Francisco, CA 94016" -306546,Macbook Pro Laptop,1,1700,12/16/19 18:26,"860 Washington St, Dallas, TX 75001" -306547,Wired Headphones,1,11.99,12/03/19 16:51,"262 Hickory St, San Francisco, CA 94016" -306548,34in Ultrawide Monitor,1,379.99,12/03/19 15:33,"690 Pine St, Seattle, WA 98101" -306549,Wired Headphones,1,11.99,12/27/19 16:50,"324 Maple St, San Francisco, CA 94016" -306550,Bose SoundSport Headphones,1,99.99,12/29/19 16:24,"681 Sunset St, Los Angeles, CA 90001" -306551,Wired Headphones,1,11.99,12/11/19 17:30,"287 River St, New York City, NY 10001" -306552,Wired Headphones,1,11.99,12/31/19 14:50,"857 West St, Dallas, TX 75001" -306553,Wired Headphones,1,11.99,12/08/19 19:47,"996 Jefferson St, Dallas, TX 75001" -306554,AAA Batteries (4-pack),1,2.99,12/22/19 20:21,"348 Church St, Seattle, WA 98101" -306555,AA Batteries (4-pack),2,3.84,12/19/19 02:55,"678 Cedar St, San Francisco, CA 94016" -306556,USB-C Charging Cable,1,11.95,12/12/19 12:51,"519 4th St, San Francisco, CA 94016" -306557,Flatscreen TV,1,300,12/01/19 17:36,"427 Hickory St, Seattle, WA 98101" -306558,AAA Batteries (4-pack),2,2.99,12/24/19 10:41,"122 5th St, San Francisco, CA 94016" -306559,Apple Airpods Headphones,1,150,12/06/19 17:02,"914 Chestnut St, Dallas, TX 75001" -306560,Wired Headphones,1,11.99,12/18/19 22:54,"862 7th St, San Francisco, CA 94016" -306561,Vareebadd Phone,1,400,12/22/19 16:34,"694 Maple St, Boston, MA 02215" -306562,Apple Airpods Headphones,1,150,12/03/19 17:59,"710 Spruce St, Dallas, TX 75001" -306563,27in FHD Monitor,1,149.99,12/01/19 13:37,"636 Park St, Dallas, TX 75001" -306564,USB-C Charging Cable,2,11.95,12/29/19 22:47,"514 River St, Austin, TX 73301" -306565,AA Batteries (4-pack),1,3.84,12/31/19 12:07,"314 12th St, Seattle, WA 98101" -306566,27in FHD Monitor,1,149.99,12/01/19 19:22,"111 7th St, Austin, TX 73301" -306567,Bose SoundSport Headphones,1,99.99,12/29/19 22:10,"681 Jefferson St, Los Angeles, CA 90001" -306568,AA Batteries (4-pack),2,3.84,12/15/19 20:40,"551 Chestnut St, Los Angeles, CA 90001" -306569,Lightning Charging Cable,1,14.95,12/15/19 17:15,"159 Meadow St, Atlanta, GA 30301" -306570,Wired Headphones,1,11.99,12/27/19 19:34,"75 6th St, San Francisco, CA 94016" -306571,Apple Airpods Headphones,1,150,12/03/19 09:30,"831 Spruce St, Boston, MA 02215" -306572,Flatscreen TV,1,300,12/12/19 12:21,"854 Jefferson St, New York City, NY 10001" -306573,USB-C Charging Cable,1,11.95,12/13/19 14:51,"4 Johnson St, Seattle, WA 98101" -306574,iPhone,1,700,12/26/19 22:03,"728 Highland St, Boston, MA 02215" -306574,Lightning Charging Cable,1,14.95,12/26/19 22:03,"728 Highland St, Boston, MA 02215" -306575,27in 4K Gaming Monitor,1,389.99,12/26/19 19:11,"855 Lake St, Boston, MA 02215" -306576,iPhone,1,700,12/18/19 21:08,"107 Walnut St, Portland, OR 97035" -306577,Macbook Pro Laptop,1,1700,12/15/19 16:00,"130 4th St, San Francisco, CA 94016" -306578,Wired Headphones,1,11.99,12/05/19 01:02,"134 12th St, Seattle, WA 98101" -306579,Vareebadd Phone,1,400,12/08/19 20:40,"331 Ridge St, Dallas, TX 75001" -306580,Wired Headphones,1,11.99,12/07/19 14:29,"850 Walnut St, New York City, NY 10001" -306581,27in FHD Monitor,1,149.99,12/25/19 09:41,"154 1st St, New York City, NY 10001" -306582,Wired Headphones,2,11.99,12/26/19 10:34,"379 Chestnut St, San Francisco, CA 94016" -306583,27in FHD Monitor,1,149.99,12/26/19 05:41,"898 Sunset St, New York City, NY 10001" -306584,Wired Headphones,1,11.99,12/27/19 09:23,"205 Willow St, Atlanta, GA 30301" -306585,Apple Airpods Headphones,1,150,12/22/19 23:22,"778 North St, Boston, MA 02215" -306586,iPhone,1,700,12/20/19 13:54,"976 Elm St, Los Angeles, CA 90001" -306587,27in FHD Monitor,1,149.99,12/10/19 23:12,"859 8th St, San Francisco, CA 94016" -306588,Lightning Charging Cable,2,14.95,12/27/19 08:39,"466 9th St, New York City, NY 10001" -306589,AAA Batteries (4-pack),1,2.99,12/02/19 12:59,"98 Lake St, Los Angeles, CA 90001" -306590,Bose SoundSport Headphones,1,99.99,12/24/19 18:57,"4 South St, San Francisco, CA 94016" -306591,AAA Batteries (4-pack),1,2.99,12/06/19 20:21,"829 Ridge St, Atlanta, GA 30301" -306592,Lightning Charging Cable,1,14.95,12/10/19 13:23,"976 Lincoln St, San Francisco, CA 94016" -306593,27in FHD Monitor,1,149.99,12/04/19 09:02,"562 Cherry St, San Francisco, CA 94016" -306594,Wired Headphones,1,11.99,12/23/19 09:30,"578 Park St, Los Angeles, CA 90001" -306595,AAA Batteries (4-pack),2,2.99,12/03/19 13:34,"831 Wilson St, New York City, NY 10001" -306596,USB-C Charging Cable,1,11.95,12/20/19 09:13,"511 5th St, Los Angeles, CA 90001" -306597,Lightning Charging Cable,1,14.95,12/21/19 21:31,"437 7th St, San Francisco, CA 94016" -306598,USB-C Charging Cable,1,11.95,12/26/19 15:06,"68 Wilson St, San Francisco, CA 94016" -306599,27in FHD Monitor,1,149.99,12/27/19 21:24,"768 North St, Los Angeles, CA 90001" -,,,,, -306600,AAA Batteries (4-pack),1,2.99,12/25/19 16:51,"359 14th St, San Francisco, CA 94016" -306601,Google Phone,1,600,12/13/19 21:43,"636 Johnson St, Portland, OR 97035" -306602,Wired Headphones,1,11.99,12/02/19 12:40,"414 Hickory St, San Francisco, CA 94016" -306603,Google Phone,1,600,12/27/19 12:50,"528 11th St, Seattle, WA 98101" -306603,USB-C Charging Cable,1,11.95,12/27/19 12:50,"528 11th St, Seattle, WA 98101" -306604,27in 4K Gaming Monitor,1,389.99,12/07/19 13:52,"289 9th St, San Francisco, CA 94016" -306605,Wired Headphones,1,11.99,12/07/19 09:08,"481 6th St, New York City, NY 10001" -306606,Apple Airpods Headphones,1,150,12/21/19 12:04,"536 Forest St, Atlanta, GA 30301" -306607,27in 4K Gaming Monitor,1,389.99,12/16/19 10:07,"222 Wilson St, Los Angeles, CA 90001" -306608,USB-C Charging Cable,1,11.95,12/25/19 05:15,"710 Main St, Boston, MA 02215" -306609,Bose SoundSport Headphones,1,99.99,12/03/19 07:38,"166 Lakeview St, San Francisco, CA 94016" -306610,USB-C Charging Cable,1,11.95,12/11/19 09:14,"497 Highland St, New York City, NY 10001" -306611,Vareebadd Phone,1,400,12/24/19 16:38,"53 Dogwood St, Los Angeles, CA 90001" -306611,Wired Headphones,1,11.99,12/24/19 16:38,"53 Dogwood St, Los Angeles, CA 90001" -306612,AA Batteries (4-pack),1,3.84,12/09/19 12:48,"749 4th St, Seattle, WA 98101" -306613,iPhone,1,700,12/22/19 01:43,"952 Meadow St, Los Angeles, CA 90001" -306614,ThinkPad Laptop,1,999.99,12/18/19 13:11,"566 Washington St, Seattle, WA 98101" -306615,USB-C Charging Cable,1,11.95,12/06/19 05:31,"857 Sunset St, New York City, NY 10001" -306616,AA Batteries (4-pack),1,3.84,12/02/19 13:47,"663 Lincoln St, San Francisco, CA 94016" -306617,AAA Batteries (4-pack),1,2.99,12/02/19 13:03,"997 Lake St, Dallas, TX 75001" -306618,Flatscreen TV,1,300,12/05/19 15:45,"832 Spruce St, Dallas, TX 75001" -306619,27in FHD Monitor,1,149.99,12/27/19 17:07,"240 Ridge St, Portland, OR 97035" -306620,ThinkPad Laptop,1,999.99,12/24/19 20:04,"214 Church St, New York City, NY 10001" -306621,34in Ultrawide Monitor,1,379.99,12/11/19 08:21,"802 12th St, Dallas, TX 75001" -306622,34in Ultrawide Monitor,1,379.99,12/31/19 17:05,"912 13th St, Boston, MA 02215" -306623,USB-C Charging Cable,1,11.95,12/31/19 20:00,"28 Ridge St, New York City, NY 10001" -306624,Wired Headphones,1,11.99,12/29/19 12:53,"907 14th St, Seattle, WA 98101" -306625,USB-C Charging Cable,1,11.95,12/19/19 13:37,"157 4th St, Seattle, WA 98101" -306626,Wired Headphones,1,11.99,12/02/19 22:00,"946 8th St, Los Angeles, CA 90001" -,,,,, -306627,Wired Headphones,2,11.99,12/18/19 10:37,"471 Sunset St, San Francisco, CA 94016" -306628,Wired Headphones,1,11.99,12/06/19 09:49,"180 7th St, Los Angeles, CA 90001" -306629,27in FHD Monitor,1,149.99,12/13/19 11:45,"393 Hickory St, San Francisco, CA 94016" -306630,Wired Headphones,1,11.99,12/19/19 20:27,"284 Cedar St, San Francisco, CA 94016" -306631,Lightning Charging Cable,1,14.95,12/07/19 22:27,"343 8th St, Boston, MA 02215" -306632,27in FHD Monitor,1,149.99,12/16/19 16:34,"217 4th St, San Francisco, CA 94016" -306633,34in Ultrawide Monitor,1,379.99,12/10/19 13:25,"318 Willow St, San Francisco, CA 94016" -306634,AAA Batteries (4-pack),1,2.99,12/22/19 16:41,"171 Park St, Boston, MA 02215" -306635,AA Batteries (4-pack),1,3.84,12/16/19 19:13,"241 Maple St, San Francisco, CA 94016" -306636,Bose SoundSport Headphones,1,99.99,12/13/19 15:44,"104 Wilson St, Dallas, TX 75001" -306637,AA Batteries (4-pack),1,3.84,12/08/19 10:05,"712 8th St, Los Angeles, CA 90001" -306638,Bose SoundSport Headphones,1,99.99,12/21/19 10:50,"536 Elm St, Los Angeles, CA 90001" -306639,Apple Airpods Headphones,1,150,12/21/19 19:57,"806 Church St, Los Angeles, CA 90001" -306640,USB-C Charging Cable,1,11.95,12/24/19 10:41,"156 Adams St, Portland, ME 04101" -306641,AAA Batteries (4-pack),1,2.99,12/23/19 17:46,"855 Hill St, San Francisco, CA 94016" -306642,20in Monitor,1,109.99,12/09/19 13:18,"870 14th St, Los Angeles, CA 90001" -306643,Wired Headphones,1,11.99,12/08/19 02:37,"562 Washington St, Atlanta, GA 30301" -306644,AAA Batteries (4-pack),1,2.99,12/21/19 17:51,"115 Sunset St, Dallas, TX 75001" -306645,Lightning Charging Cable,1,14.95,12/16/19 02:09,"761 Chestnut St, Austin, TX 73301" -306646,Wired Headphones,1,11.99,12/01/19 09:49,"562 Spruce St, San Francisco, CA 94016" -306647,Lightning Charging Cable,1,14.95,12/19/19 23:39,"467 8th St, New York City, NY 10001" -306648,Macbook Pro Laptop,1,1700,12/13/19 10:56,"380 5th St, New York City, NY 10001" -306649,Lightning Charging Cable,1,14.95,12/22/19 23:14,"689 Ridge St, San Francisco, CA 94016" -306650,LG Dryer,1,600.0,12/24/19 13:36,"125 14th St, New York City, NY 10001" -306651,27in 4K Gaming Monitor,1,389.99,12/27/19 15:30,"69 Wilson St, New York City, NY 10001" -306652,Lightning Charging Cable,1,14.95,12/01/19 17:47,"163 Church St, San Francisco, CA 94016" -306653,AA Batteries (4-pack),1,3.84,12/31/19 23:19,"377 Wilson St, Atlanta, GA 30301" -306654,ThinkPad Laptop,1,999.99,12/07/19 09:45,"533 Jefferson St, Los Angeles, CA 90001" -306655,ThinkPad Laptop,1,999.99,01/01/20 01:46,"431 Hickory St, Los Angeles, CA 90001" -306656,Flatscreen TV,1,300,12/07/19 09:13,"812 Spruce St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -306657,USB-C Charging Cable,1,11.95,12/19/19 16:19,"860 Pine St, New York City, NY 10001" -306658,27in 4K Gaming Monitor,1,389.99,12/24/19 10:33,"332 12th St, Dallas, TX 75001" -306659,iPhone,1,700,12/19/19 22:02,"394 Elm St, Boston, MA 02215" -306660,AA Batteries (4-pack),1,3.84,12/01/19 11:36,"138 12th St, Atlanta, GA 30301" -306661,Macbook Pro Laptop,1,1700,12/07/19 16:20,"494 Hickory St, San Francisco, CA 94016" -306662,AA Batteries (4-pack),2,3.84,12/16/19 14:16,"449 4th St, Boston, MA 02215" -306663,Wired Headphones,1,11.99,12/05/19 23:06,"576 10th St, San Francisco, CA 94016" -306664,AA Batteries (4-pack),1,3.84,12/19/19 10:04,"998 Chestnut St, San Francisco, CA 94016" -306665,34in Ultrawide Monitor,1,379.99,12/14/19 13:27,"125 Johnson St, San Francisco, CA 94016" -306666,USB-C Charging Cable,1,11.95,12/25/19 00:30,"701 Willow St, Seattle, WA 98101" -306667,Bose SoundSport Headphones,1,99.99,12/10/19 20:23,"584 Cherry St, Boston, MA 02215" -306668,20in Monitor,1,109.99,12/09/19 14:39,"858 Walnut St, New York City, NY 10001" -306669,Apple Airpods Headphones,1,150,12/22/19 10:44,"663 5th St, Los Angeles, CA 90001" -306670,Wired Headphones,1,11.99,12/07/19 14:38,"837 Church St, Seattle, WA 98101" -306671,Bose SoundSport Headphones,1,99.99,12/28/19 10:00,"68 Maple St, Los Angeles, CA 90001" -306672,Lightning Charging Cable,2,14.95,12/06/19 13:39,"863 Meadow St, Los Angeles, CA 90001" -306673,Lightning Charging Cable,2,14.95,12/23/19 16:59,"459 Center St, Dallas, TX 75001" -306674,34in Ultrawide Monitor,1,379.99,12/09/19 12:05,"830 Meadow St, New York City, NY 10001" -306675,27in 4K Gaming Monitor,1,389.99,12/19/19 10:44,"9 Meadow St, Boston, MA 02215" -306676,AA Batteries (4-pack),1,3.84,12/08/19 17:12,"837 9th St, Atlanta, GA 30301" -306677,Apple Airpods Headphones,1,150,12/28/19 16:42,"391 Meadow St, New York City, NY 10001" -306678,Apple Airpods Headphones,1,150,12/10/19 01:12,"515 Willow St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -306679,Vareebadd Phone,1,400,12/24/19 03:51,"402 Main St, San Francisco, CA 94016" -,,,,, -306680,USB-C Charging Cable,1,11.95,12/30/19 11:11,"801 Lake St, San Francisco, CA 94016" -306681,Wired Headphones,1,11.99,12/28/19 23:33,"336 Center St, New York City, NY 10001" -306681,USB-C Charging Cable,1,11.95,12/28/19 23:33,"336 Center St, New York City, NY 10001" -306682,Lightning Charging Cable,1,14.95,12/12/19 19:54,"412 Park St, Los Angeles, CA 90001" -306683,ThinkPad Laptop,1,999.99,12/13/19 18:41,"702 Johnson St, San Francisco, CA 94016" -306684,27in FHD Monitor,1,149.99,12/04/19 09:17,"502 Washington St, San Francisco, CA 94016" -306685,Macbook Pro Laptop,1,1700,12/02/19 13:28,"638 Park St, Atlanta, GA 30301" -306686,Macbook Pro Laptop,1,1700,12/22/19 23:25,"908 Madison St, San Francisco, CA 94016" -306687,Wired Headphones,1,11.99,12/03/19 00:15,"818 Madison St, San Francisco, CA 94016" -306688,USB-C Charging Cable,1,11.95,12/23/19 18:06,"283 Maple St, San Francisco, CA 94016" -306689,AAA Batteries (4-pack),1,2.99,12/18/19 10:04,"550 Johnson St, Los Angeles, CA 90001" -306690,Macbook Pro Laptop,1,1700,12/18/19 14:43,"432 Church St, Los Angeles, CA 90001" -306691,Wired Headphones,1,11.99,12/03/19 16:01,"49 Dogwood St, Seattle, WA 98101" -306692,USB-C Charging Cable,1,11.95,12/31/19 16:52,"840 11th St, Dallas, TX 75001" -306693,Apple Airpods Headphones,1,150,12/02/19 01:12,"196 Pine St, New York City, NY 10001" -306694,Lightning Charging Cable,1,14.95,12/09/19 18:34,"825 13th St, Portland, OR 97035" -306695,Bose SoundSport Headphones,1,99.99,12/31/19 22:43,"372 Jackson St, Boston, MA 02215" -306696,Macbook Pro Laptop,1,1700,12/19/19 23:49,"836 Church St, Los Angeles, CA 90001" -306697,Lightning Charging Cable,1,14.95,12/12/19 15:17,"664 Hill St, Austin, TX 73301" -306698,USB-C Charging Cable,1,11.95,12/10/19 13:58,"951 Meadow St, Seattle, WA 98101" -306699,Apple Airpods Headphones,1,150,12/07/19 02:31,"338 Jefferson St, Seattle, WA 98101" -306700,Flatscreen TV,1,300,12/13/19 13:36,"408 10th St, Austin, TX 73301" -306701,ThinkPad Laptop,1,999.99,12/07/19 17:40,"321 Pine St, San Francisco, CA 94016" -306702,27in FHD Monitor,1,149.99,12/23/19 15:20,"396 Hickory St, Los Angeles, CA 90001" -306703,Apple Airpods Headphones,1,150,12/01/19 20:09,"628 Meadow St, Los Angeles, CA 90001" -306704,Apple Airpods Headphones,1,150,12/05/19 06:46,"430 Adams St, San Francisco, CA 94016" -306705,Wired Headphones,1,11.99,12/29/19 09:35,"710 Pine St, San Francisco, CA 94016" -306706,AA Batteries (4-pack),2,3.84,12/18/19 09:18,"474 Willow St, Los Angeles, CA 90001" -306707,Macbook Pro Laptop,1,1700,12/26/19 15:21,"934 Ridge St, Seattle, WA 98101" -306708,AAA Batteries (4-pack),3,2.99,12/27/19 11:07,"387 Pine St, Atlanta, GA 30301" -306709,Google Phone,1,600,12/08/19 17:41,"186 Forest St, Austin, TX 73301" -306710,AAA Batteries (4-pack),1,2.99,12/31/19 12:48,"541 Adams St, Atlanta, GA 30301" -306711,AAA Batteries (4-pack),1,2.99,12/26/19 09:57,"243 Elm St, Boston, MA 02215" -306712,Wired Headphones,1,11.99,12/31/19 19:40,"138 Lakeview St, San Francisco, CA 94016" -306713,AAA Batteries (4-pack),1,2.99,12/11/19 10:15,"629 6th St, San Francisco, CA 94016" -306714,iPhone,1,700,12/26/19 18:41,"821 7th St, Boston, MA 02215" -306715,Wired Headphones,1,11.99,12/05/19 18:31,"79 Hill St, San Francisco, CA 94016" -306716,AAA Batteries (4-pack),1,2.99,12/22/19 09:21,"345 South St, Atlanta, GA 30301" -306717,Apple Airpods Headphones,1,150,12/21/19 21:21,"169 Madison St, New York City, NY 10001" -306718,Wired Headphones,1,11.99,12/26/19 13:19,"459 Sunset St, Boston, MA 02215" -306719,Wired Headphones,1,11.99,12/07/19 10:17,"342 Maple St, San Francisco, CA 94016" -306720,USB-C Charging Cable,1,11.95,12/31/19 12:20,"639 River St, Los Angeles, CA 90001" -306721,USB-C Charging Cable,1,11.95,12/31/19 07:10,"54 Lake St, Seattle, WA 98101" -306722,Wired Headphones,1,11.99,12/29/19 11:31,"536 Center St, New York City, NY 10001" -306723,Macbook Pro Laptop,1,1700,12/16/19 11:41,"497 Walnut St, San Francisco, CA 94016" -306724,Lightning Charging Cable,1,14.95,12/24/19 11:51,"438 River St, San Francisco, CA 94016" -306725,USB-C Charging Cable,1,11.95,12/21/19 17:40,"657 13th St, Seattle, WA 98101" -306726,USB-C Charging Cable,1,11.95,12/05/19 17:11,"691 10th St, Atlanta, GA 30301" -306727,USB-C Charging Cable,1,11.95,12/24/19 19:10,"570 4th St, New York City, NY 10001" -306728,Wired Headphones,1,11.99,12/03/19 06:34,"441 West St, San Francisco, CA 94016" -306729,34in Ultrawide Monitor,1,379.99,12/17/19 23:23,"671 Spruce St, Dallas, TX 75001" -306730,Wired Headphones,1,11.99,12/29/19 17:34,"816 Washington St, Austin, TX 73301" -306731,AAA Batteries (4-pack),1,2.99,12/17/19 10:30,"962 Cedar St, Atlanta, GA 30301" -306732,Apple Airpods Headphones,1,150,12/01/19 22:43,"732 Highland St, Los Angeles, CA 90001" -306733,Lightning Charging Cable,1,14.95,12/02/19 17:08,"265 Washington St, San Francisco, CA 94016" -306734,Bose SoundSport Headphones,1,99.99,12/27/19 22:36,"697 14th St, San Francisco, CA 94016" -306735,34in Ultrawide Monitor,1,379.99,12/05/19 15:34,"874 Willow St, Atlanta, GA 30301" -306736,USB-C Charging Cable,1,11.95,12/17/19 08:26,"354 North St, Atlanta, GA 30301" -306737,USB-C Charging Cable,1,11.95,12/09/19 18:05,"200 Lakeview St, New York City, NY 10001" -306738,Bose SoundSport Headphones,1,99.99,12/30/19 10:44,"296 Lakeview St, Los Angeles, CA 90001" -306739,USB-C Charging Cable,1,11.95,12/18/19 13:13,"871 Walnut St, Atlanta, GA 30301" -306739,Lightning Charging Cable,1,14.95,12/18/19 13:13,"871 Walnut St, Atlanta, GA 30301" -306740,AA Batteries (4-pack),1,3.84,12/11/19 10:10,"955 12th St, San Francisco, CA 94016" -306741,AAA Batteries (4-pack),1,2.99,12/13/19 07:28,"454 Hickory St, San Francisco, CA 94016" -306742,27in FHD Monitor,1,149.99,12/01/19 19:19,"492 Jackson St, Seattle, WA 98101" -306743,USB-C Charging Cable,1,11.95,12/14/19 10:34,"815 Willow St, Dallas, TX 75001" -306744,Macbook Pro Laptop,1,1700,12/16/19 21:51,"652 9th St, Seattle, WA 98101" -306744,USB-C Charging Cable,1,11.95,12/16/19 21:51,"652 9th St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -306745,AAA Batteries (4-pack),1,2.99,12/01/19 21:33,"11 Forest St, Seattle, WA 98101" -306746,Google Phone,1,600,12/27/19 19:36,"228 2nd St, Los Angeles, CA 90001" -306747,AA Batteries (4-pack),1,3.84,12/23/19 20:19,"456 Walnut St, San Francisco, CA 94016" -306748,27in FHD Monitor,1,149.99,12/12/19 14:57,"385 Ridge St, Los Angeles, CA 90001" -306749,Macbook Pro Laptop,1,1700,12/23/19 07:19,"422 8th St, Portland, OR 97035" -306750,USB-C Charging Cable,1,11.95,12/16/19 21:09,"536 Forest St, San Francisco, CA 94016" -306750,Lightning Charging Cable,1,14.95,12/16/19 21:09,"536 Forest St, San Francisco, CA 94016" -306751,Lightning Charging Cable,1,14.95,12/10/19 12:22,"363 8th St, Los Angeles, CA 90001" -306752,AAA Batteries (4-pack),1,2.99,12/10/19 13:48,"400 Lincoln St, Boston, MA 02215" -306752,Apple Airpods Headphones,1,150,12/10/19 13:48,"400 Lincoln St, Boston, MA 02215" -306753,34in Ultrawide Monitor,1,379.99,12/06/19 19:51,"37 9th St, San Francisco, CA 94016" -306754,27in 4K Gaming Monitor,1,389.99,12/15/19 20:24,"642 Dogwood St, Los Angeles, CA 90001" -306755,USB-C Charging Cable,1,11.95,12/10/19 14:45,"646 Lincoln St, Boston, MA 02215" -306756,USB-C Charging Cable,1,11.95,12/17/19 07:09,"934 Spruce St, Portland, OR 97035" -306757,Google Phone,1,600,12/24/19 13:42,"333 Washington St, Dallas, TX 75001" -306758,Wired Headphones,1,11.99,12/02/19 14:23,"73 Jackson St, Seattle, WA 98101" -306759,AAA Batteries (4-pack),3,2.99,12/13/19 19:43,"808 Forest St, Boston, MA 02215" -306760,Apple Airpods Headphones,1,150,12/27/19 19:02,"457 11th St, New York City, NY 10001" -306761,USB-C Charging Cable,1,11.95,12/16/19 07:37,"541 Cedar St, New York City, NY 10001" -306762,USB-C Charging Cable,1,11.95,12/14/19 02:39,"864 Madison St, New York City, NY 10001" -306763,USB-C Charging Cable,1,11.95,12/03/19 09:52,"766 Johnson St, San Francisco, CA 94016" -306764,Wired Headphones,1,11.99,12/23/19 08:42,"560 Adams St, Boston, MA 02215" -306765,Lightning Charging Cable,1,14.95,12/18/19 18:50,"764 8th St, Seattle, WA 98101" -306766,27in 4K Gaming Monitor,1,389.99,12/06/19 21:16,"498 North St, Atlanta, GA 30301" -306767,iPhone,1,700,12/10/19 00:00,"35 Lakeview St, San Francisco, CA 94016" -306768,Macbook Pro Laptop,1,1700,12/16/19 16:38,"83 5th St, San Francisco, CA 94016" -306769,Wired Headphones,1,11.99,12/14/19 08:32,"456 Johnson St, San Francisco, CA 94016" -306770,AA Batteries (4-pack),1,3.84,12/28/19 21:37,"307 Hill St, Seattle, WA 98101" -306771,Wired Headphones,1,11.99,12/01/19 19:46,"259 Wilson St, New York City, NY 10001" -306772,34in Ultrawide Monitor,1,379.99,12/31/19 10:28,"504 Madison St, San Francisco, CA 94016" -306773,20in Monitor,1,109.99,12/24/19 20:46,"751 14th St, Seattle, WA 98101" -306774,iPhone,1,700,12/07/19 05:48,"78 Lincoln St, Austin, TX 73301" -306774,Lightning Charging Cable,1,14.95,12/07/19 05:48,"78 Lincoln St, Austin, TX 73301" -306775,iPhone,1,700,12/13/19 17:48,"915 6th St, San Francisco, CA 94016" -306776,27in 4K Gaming Monitor,1,389.99,12/24/19 08:37,"680 Center St, Los Angeles, CA 90001" -306777,Wired Headphones,1,11.99,12/12/19 19:45,"253 North St, Boston, MA 02215" -306778,USB-C Charging Cable,1,11.95,12/18/19 16:54,"357 2nd St, New York City, NY 10001" -306779,Wired Headphones,1,11.99,12/05/19 16:43,"851 1st St, New York City, NY 10001" -306780,Lightning Charging Cable,1,14.95,12/19/19 20:17,"411 Washington St, San Francisco, CA 94016" -306781,Flatscreen TV,1,300,12/12/19 09:54,"919 Jefferson St, Seattle, WA 98101" -306782,Google Phone,1,600,12/03/19 21:03,"12 Dogwood St, New York City, NY 10001" -306782,USB-C Charging Cable,1,11.95,12/03/19 21:03,"12 Dogwood St, New York City, NY 10001" -306783,AA Batteries (4-pack),1,3.84,12/22/19 12:31,"168 Maple St, Austin, TX 73301" -306784,Lightning Charging Cable,1,14.95,12/17/19 13:17,"209 Cherry St, Portland, OR 97035" -306785,AAA Batteries (4-pack),1,2.99,12/03/19 15:57,"28 Hill St, Los Angeles, CA 90001" -306786,27in FHD Monitor,1,149.99,12/02/19 11:52,"826 Lake St, New York City, NY 10001" -306787,iPhone,1,700,12/21/19 16:44,"170 Dogwood St, Portland, OR 97035" -306787,Wired Headphones,1,11.99,12/21/19 16:44,"170 Dogwood St, Portland, OR 97035" -306788,Wired Headphones,1,11.99,12/29/19 07:13,"698 Church St, Los Angeles, CA 90001" -306789,Wired Headphones,1,11.99,12/02/19 10:33,"63 Elm St, San Francisco, CA 94016" -306790,USB-C Charging Cable,1,11.95,12/27/19 18:18,"663 Highland St, San Francisco, CA 94016" -306791,AA Batteries (4-pack),2,3.84,12/01/19 12:58,"255 7th St, San Francisco, CA 94016" -306792,Bose SoundSport Headphones,1,99.99,12/14/19 11:22,"972 13th St, Atlanta, GA 30301" -306793,Bose SoundSport Headphones,1,99.99,12/17/19 13:00,"483 Cedar St, San Francisco, CA 94016" -306794,AAA Batteries (4-pack),1,2.99,12/31/19 13:38,"502 1st St, Los Angeles, CA 90001" -306795,AAA Batteries (4-pack),1,2.99,12/07/19 11:44,"564 Chestnut St, Atlanta, GA 30301" -306796,27in FHD Monitor,1,149.99,12/14/19 14:00,"338 Church St, Portland, OR 97035" -306797,Bose SoundSport Headphones,1,99.99,12/27/19 05:53,"691 Jefferson St, Los Angeles, CA 90001" -306798,USB-C Charging Cable,1,11.95,12/28/19 10:15,"247 Spruce St, San Francisco, CA 94016" -306799,AAA Batteries (4-pack),1,2.99,12/13/19 20:34,"33 Highland St, San Francisco, CA 94016" -306800,Apple Airpods Headphones,1,150,12/01/19 22:25,"318 Church St, Boston, MA 02215" -306801,34in Ultrawide Monitor,1,379.99,12/14/19 19:25,"168 5th St, Dallas, TX 75001" -306802,AAA Batteries (4-pack),3,2.99,12/03/19 00:18,"619 Cherry St, Boston, MA 02215" -306803,Apple Airpods Headphones,1,150,12/09/19 08:01,"785 Spruce St, Boston, MA 02215" -306804,Lightning Charging Cable,1,14.95,12/26/19 11:26,"649 Hill St, Dallas, TX 75001" -306805,USB-C Charging Cable,1,11.95,12/20/19 19:57,"98 5th St, San Francisco, CA 94016" -306806,AA Batteries (4-pack),1,3.84,12/01/19 18:09,"935 Lake St, Portland, OR 97035" -306807,AAA Batteries (4-pack),2,2.99,12/06/19 16:12,"942 River St, Austin, TX 73301" -306808,AA Batteries (4-pack),1,3.84,12/01/19 21:42,"850 6th St, New York City, NY 10001" -306809,Macbook Pro Laptop,1,1700,01/01/20 02:20,"326 14th St, Dallas, TX 75001" -306810,Lightning Charging Cable,1,14.95,12/08/19 17:51,"739 Pine St, San Francisco, CA 94016" -306811,USB-C Charging Cable,1,11.95,12/27/19 10:26,"843 North St, San Francisco, CA 94016" -306812,USB-C Charging Cable,1,11.95,12/31/19 12:39,"399 7th St, Dallas, TX 75001" -306813,20in Monitor,1,109.99,12/04/19 12:25,"557 Madison St, San Francisco, CA 94016" -306814,20in Monitor,1,109.99,12/02/19 18:53,"152 Ridge St, San Francisco, CA 94016" -306815,Google Phone,1,600,12/23/19 21:17,"731 7th St, San Francisco, CA 94016" -306816,Google Phone,1,600,12/12/19 13:14,"248 Hill St, Atlanta, GA 30301" -306817,iPhone,1,700,12/21/19 12:56,"815 13th St, San Francisco, CA 94016" -306818,Apple Airpods Headphones,1,150,12/16/19 10:11,"979 Ridge St, Los Angeles, CA 90001" -306819,Bose SoundSport Headphones,1,99.99,12/02/19 18:59,"435 14th St, Seattle, WA 98101" -306820,AA Batteries (4-pack),1,3.84,12/24/19 19:07,"681 13th St, Boston, MA 02215" -306821,USB-C Charging Cable,1,11.95,12/11/19 11:30,"455 Dogwood St, New York City, NY 10001" -306822,Lightning Charging Cable,1,14.95,12/23/19 11:48,"128 South St, San Francisco, CA 94016" -306823,27in FHD Monitor,1,149.99,12/19/19 14:48,"995 Wilson St, Austin, TX 73301" -306824,Wired Headphones,1,11.99,12/02/19 23:30,"500 Johnson St, San Francisco, CA 94016" -306825,AA Batteries (4-pack),1,3.84,12/24/19 06:19,"778 Highland St, San Francisco, CA 94016" -306826,Wired Headphones,1,11.99,12/03/19 19:50,"83 Cherry St, Boston, MA 02215" -306827,Bose SoundSport Headphones,1,99.99,12/17/19 16:53,"231 South St, Portland, ME 04101" -306828,Flatscreen TV,1,300,12/30/19 00:23,"14 Johnson St, Dallas, TX 75001" -306829,27in 4K Gaming Monitor,1,389.99,12/06/19 09:16,"937 North St, Boston, MA 02215" -306830,AAA Batteries (4-pack),2,2.99,12/29/19 21:00,"152 5th St, Atlanta, GA 30301" -306831,Wired Headphones,2,11.99,12/17/19 10:44,"946 Lincoln St, Austin, TX 73301" -306832,Flatscreen TV,1,300,12/09/19 22:34,"90 Maple St, Seattle, WA 98101" -306833,Bose SoundSport Headphones,1,99.99,12/14/19 18:48,"678 Cedar St, Los Angeles, CA 90001" -306834,34in Ultrawide Monitor,1,379.99,12/18/19 14:03,"288 South St, San Francisco, CA 94016" -306835,Apple Airpods Headphones,1,150,12/09/19 13:37,"660 Park St, New York City, NY 10001" -306836,34in Ultrawide Monitor,1,379.99,12/02/19 12:17,"766 13th St, San Francisco, CA 94016" -306837,Lightning Charging Cable,1,14.95,12/02/19 11:00,"314 7th St, San Francisco, CA 94016" -306838,USB-C Charging Cable,1,11.95,12/14/19 15:48,"26 Sunset St, Boston, MA 02215" -306839,AAA Batteries (4-pack),1,2.99,12/04/19 14:35,"210 Sunset St, Dallas, TX 75001" -306840,AA Batteries (4-pack),1,3.84,12/05/19 13:01,"343 10th St, New York City, NY 10001" -306841,Wired Headphones,1,11.99,12/22/19 19:20,"940 Ridge St, San Francisco, CA 94016" -306842,AA Batteries (4-pack),1,3.84,12/18/19 00:47,"736 5th St, Los Angeles, CA 90001" -306843,AAA Batteries (4-pack),2,2.99,12/02/19 12:43,"281 Willow St, Boston, MA 02215" -306844,AA Batteries (4-pack),1,3.84,12/04/19 08:02,"284 Lincoln St, Seattle, WA 98101" -306845,AAA Batteries (4-pack),1,2.99,12/25/19 06:45,"249 Park St, Austin, TX 73301" -306846,iPhone,1,700,12/03/19 20:03,"377 North St, New York City, NY 10001" -306846,Lightning Charging Cable,1,14.95,12/03/19 20:03,"377 North St, New York City, NY 10001" -306847,Lightning Charging Cable,1,14.95,12/31/19 08:09,"913 Washington St, San Francisco, CA 94016" -306848,USB-C Charging Cable,1,11.95,12/29/19 13:58,"424 Johnson St, San Francisco, CA 94016" -306849,Lightning Charging Cable,1,14.95,12/10/19 12:09,"737 Walnut St, Boston, MA 02215" -306850,Macbook Pro Laptop,1,1700,12/19/19 21:07,"160 14th St, New York City, NY 10001" -306851,AA Batteries (4-pack),1,3.84,12/01/19 18:31,"704 North St, New York City, NY 10001" -306851,AA Batteries (4-pack),3,3.84,12/01/19 18:31,"704 North St, New York City, NY 10001" -306852,Flatscreen TV,1,300,12/12/19 11:26,"779 Lakeview St, Portland, OR 97035" -306853,AA Batteries (4-pack),2,3.84,12/02/19 14:20,"643 10th St, Los Angeles, CA 90001" -306854,USB-C Charging Cable,1,11.95,12/06/19 22:16,"451 Jefferson St, Los Angeles, CA 90001" -306855,Bose SoundSport Headphones,1,99.99,12/25/19 07:37,"213 6th St, San Francisco, CA 94016" -306856,Lightning Charging Cable,1,14.95,12/21/19 10:52,"319 8th St, San Francisco, CA 94016" -306857,iPhone,1,700,12/03/19 18:31,"25 Lakeview St, Los Angeles, CA 90001" -306857,Apple Airpods Headphones,1,150,12/03/19 18:31,"25 Lakeview St, Los Angeles, CA 90001" -306858,34in Ultrawide Monitor,1,379.99,12/30/19 10:28,"631 6th St, New York City, NY 10001" -306859,27in 4K Gaming Monitor,1,389.99,12/11/19 11:30,"221 Forest St, San Francisco, CA 94016" -306860,20in Monitor,1,109.99,12/25/19 17:40,"481 Cherry St, Los Angeles, CA 90001" -306861,27in FHD Monitor,1,149.99,12/20/19 10:14,"704 7th St, New York City, NY 10001" -306862,20in Monitor,1,109.99,12/26/19 01:32,"691 Maple St, New York City, NY 10001" -306863,AA Batteries (4-pack),1,3.84,12/07/19 19:09,"661 9th St, Dallas, TX 75001" -306864,AA Batteries (4-pack),1,3.84,12/12/19 17:36,"117 Main St, Boston, MA 02215" -306865,Macbook Pro Laptop,1,1700,12/25/19 01:46,"969 Cedar St, San Francisco, CA 94016" -306866,AAA Batteries (4-pack),2,2.99,12/02/19 11:45,"516 Spruce St, San Francisco, CA 94016" -306867,Apple Airpods Headphones,1,150,12/12/19 10:11,"645 Spruce St, San Francisco, CA 94016" -306867,27in FHD Monitor,1,149.99,12/12/19 10:11,"645 Spruce St, San Francisco, CA 94016" -306868,AA Batteries (4-pack),1,3.84,12/18/19 21:54,"577 11th St, Dallas, TX 75001" -306869,Macbook Pro Laptop,1,1700,12/24/19 20:33,"866 2nd St, Portland, OR 97035" -306870,Macbook Pro Laptop,1,1700,12/17/19 09:00,"401 11th St, San Francisco, CA 94016" -306871,iPhone,1,700,12/06/19 09:58,"260 2nd St, Los Angeles, CA 90001" -306872,27in FHD Monitor,1,149.99,12/10/19 23:05,"284 Willow St, San Francisco, CA 94016" -306873,Lightning Charging Cable,1,14.95,12/08/19 19:54,"179 North St, Boston, MA 02215" -306874,Vareebadd Phone,1,400,12/19/19 10:59,"549 Ridge St, Boston, MA 02215" -306874,Wired Headphones,1,11.99,12/19/19 10:59,"549 Ridge St, Boston, MA 02215" -306875,AA Batteries (4-pack),1,3.84,12/15/19 09:40,"870 1st St, Portland, ME 04101" -306876,Flatscreen TV,1,300,12/27/19 19:20,"680 Cherry St, San Francisco, CA 94016" -306877,iPhone,1,700,12/21/19 21:32,"999 Cherry St, San Francisco, CA 94016" -306878,20in Monitor,1,109.99,12/11/19 13:46,"346 West St, Austin, TX 73301" -306879,Bose SoundSport Headphones,1,99.99,12/13/19 23:37,"189 9th St, Austin, TX 73301" -306880,AAA Batteries (4-pack),1,2.99,12/24/19 09:24,"96 Madison St, Portland, OR 97035" -306881,Lightning Charging Cable,1,14.95,12/20/19 12:50,"105 Washington St, Boston, MA 02215" -306882,27in 4K Gaming Monitor,1,389.99,12/29/19 13:14,"784 Lake St, San Francisco, CA 94016" -306883,Macbook Pro Laptop,1,1700,12/14/19 09:56,"850 Lincoln St, New York City, NY 10001" -306884,Lightning Charging Cable,1,14.95,12/07/19 00:59,"525 12th St, Atlanta, GA 30301" -306885,Bose SoundSport Headphones,1,99.99,12/20/19 15:13,"985 Ridge St, Boston, MA 02215" -,,,,, -306886,Apple Airpods Headphones,1,150,12/20/19 19:15,"97 Hickory St, Austin, TX 73301" -306887,Wired Headphones,1,11.99,12/20/19 12:10,"598 Hickory St, San Francisco, CA 94016" -306888,Wired Headphones,1,11.99,12/23/19 14:56,"2 Maple St, San Francisco, CA 94016" -306889,AA Batteries (4-pack),1,3.84,12/06/19 12:40,"294 Jackson St, Portland, OR 97035" -306890,Apple Airpods Headphones,1,150,12/10/19 17:39,"922 7th St, Atlanta, GA 30301" -306891,Flatscreen TV,1,300,12/28/19 08:26,"410 Main St, San Francisco, CA 94016" -306892,AA Batteries (4-pack),1,3.84,12/12/19 11:04,"453 Cedar St, Portland, ME 04101" -306893,AAA Batteries (4-pack),1,2.99,12/30/19 18:03,"458 1st St, Portland, OR 97035" -306894,AAA Batteries (4-pack),1,2.99,12/23/19 15:00,"276 Lincoln St, Los Angeles, CA 90001" -306895,34in Ultrawide Monitor,1,379.99,12/17/19 15:25,"121 Cedar St, New York City, NY 10001" -306896,USB-C Charging Cable,1,11.95,12/23/19 18:07,"705 North St, Seattle, WA 98101" -306897,AA Batteries (4-pack),1,3.84,12/29/19 21:03,"365 Dogwood St, Austin, TX 73301" -306898,AAA Batteries (4-pack),1,2.99,12/12/19 01:21,"448 11th St, San Francisco, CA 94016" -306899,AA Batteries (4-pack),1,3.84,12/10/19 17:46,"958 2nd St, Dallas, TX 75001" -306899,27in 4K Gaming Monitor,1,389.99,12/10/19 17:46,"958 2nd St, Dallas, TX 75001" -306900,ThinkPad Laptop,1,999.99,12/30/19 16:45,"550 Hickory St, Portland, OR 97035" -306901,27in 4K Gaming Monitor,1,389.99,12/23/19 23:15,"790 Center St, Boston, MA 02215" -306902,AAA Batteries (4-pack),4,2.99,12/17/19 18:38,"458 Jefferson St, San Francisco, CA 94016" -306903,34in Ultrawide Monitor,1,379.99,12/26/19 17:15,"639 Hickory St, Boston, MA 02215" -306904,27in FHD Monitor,1,149.99,12/16/19 22:05,"692 Center St, New York City, NY 10001" -306905,Wired Headphones,1,11.99,12/03/19 11:48,"655 Chestnut St, New York City, NY 10001" -306906,AA Batteries (4-pack),1,3.84,12/30/19 14:39,"764 7th St, New York City, NY 10001" -306907,Macbook Pro Laptop,1,1700,12/29/19 01:15,"481 South St, Los Angeles, CA 90001" -306908,AA Batteries (4-pack),1,3.84,12/16/19 19:49,"854 South St, San Francisco, CA 94016" -306909,Google Phone,1,600,12/24/19 22:01,"521 Sunset St, San Francisco, CA 94016" -306909,USB-C Charging Cable,2,11.95,12/24/19 22:01,"521 Sunset St, San Francisco, CA 94016" -306910,ThinkPad Laptop,1,999.99,12/01/19 13:52,"512 12th St, Dallas, TX 75001" -306911,27in FHD Monitor,1,149.99,12/21/19 11:25,"922 Adams St, Portland, OR 97035" -306912,AAA Batteries (4-pack),1,2.99,12/10/19 11:34,"487 Cedar St, New York City, NY 10001" -306913,ThinkPad Laptop,1,999.99,12/31/19 00:13,"360 8th St, San Francisco, CA 94016" -306914,AA Batteries (4-pack),1,3.84,12/04/19 14:02,"715 Wilson St, Seattle, WA 98101" -306915,Bose SoundSport Headphones,1,99.99,12/31/19 03:34,"801 Sunset St, Boston, MA 02215" -306916,Apple Airpods Headphones,1,150,12/15/19 19:58,"583 Hill St, Los Angeles, CA 90001" -306917,AA Batteries (4-pack),1,3.84,12/27/19 17:33,"942 Cedar St, Dallas, TX 75001" -306918,USB-C Charging Cable,1,11.95,12/23/19 21:03,"919 Lincoln St, Los Angeles, CA 90001" -306919,34in Ultrawide Monitor,1,379.99,12/07/19 21:35,"973 Lincoln St, San Francisco, CA 94016" -306920,Wired Headphones,1,11.99,12/01/19 12:44,"599 Meadow St, San Francisco, CA 94016" -306921,34in Ultrawide Monitor,1,379.99,12/28/19 06:51,"504 2nd St, San Francisco, CA 94016" -306922,Lightning Charging Cable,1,14.95,12/25/19 12:54,"810 Pine St, Seattle, WA 98101" -306923,USB-C Charging Cable,2,11.95,12/12/19 07:32,"151 River St, Los Angeles, CA 90001" -306924,Lightning Charging Cable,1,14.95,12/02/19 20:11,"412 Cedar St, Seattle, WA 98101" -306925,Macbook Pro Laptop,1,1700,12/24/19 16:01,"462 11th St, New York City, NY 10001" -306926,AAA Batteries (4-pack),1,2.99,12/26/19 19:12,"442 2nd St, Seattle, WA 98101" -306927,AAA Batteries (4-pack),1,2.99,12/10/19 14:14,"760 Washington St, Dallas, TX 75001" -306928,ThinkPad Laptop,1,999.99,01/01/20 03:14,"762 Elm St, Boston, MA 02215" -306929,USB-C Charging Cable,1,11.95,12/05/19 20:39,"493 5th St, San Francisco, CA 94016" -306930,Apple Airpods Headphones,1,150,12/03/19 11:16,"842 Ridge St, San Francisco, CA 94016" -306931,Flatscreen TV,1,300,12/09/19 13:57,"920 Center St, San Francisco, CA 94016" -306932,AA Batteries (4-pack),1,3.84,12/24/19 20:46,"954 9th St, New York City, NY 10001" -306933,LG Washing Machine,1,600.0,12/08/19 16:29,"643 Lakeview St, Boston, MA 02215" -306934,27in 4K Gaming Monitor,1,389.99,12/12/19 09:25,"302 Lake St, Portland, OR 97035" -306935,Vareebadd Phone,1,400,12/14/19 15:00,"482 Walnut St, Los Angeles, CA 90001" -306936,Bose SoundSport Headphones,1,99.99,12/10/19 21:10,"364 Maple St, Los Angeles, CA 90001" -306937,Wired Headphones,1,11.99,12/31/19 20:11,"627 Lakeview St, Dallas, TX 75001" -306938,Apple Airpods Headphones,1,150,12/08/19 13:48,"841 5th St, Los Angeles, CA 90001" -306939,Bose SoundSport Headphones,1,99.99,12/01/19 20:07,"153 Dogwood St, Boston, MA 02215" -306940,USB-C Charging Cable,2,11.95,12/01/19 18:16,"457 6th St, Atlanta, GA 30301" -306941,AAA Batteries (4-pack),1,2.99,12/20/19 18:53,"167 Wilson St, New York City, NY 10001" -306942,Wired Headphones,1,11.99,12/24/19 18:43,"816 Washington St, New York City, NY 10001" -306942,Apple Airpods Headphones,1,150,12/24/19 18:43,"816 Washington St, New York City, NY 10001" -306943,Apple Airpods Headphones,1,150,12/15/19 21:16,"996 Cherry St, Dallas, TX 75001" -306944,27in FHD Monitor,1,149.99,12/23/19 18:52,"679 Sunset St, New York City, NY 10001" -306945,34in Ultrawide Monitor,1,379.99,12/08/19 12:35,"401 9th St, Seattle, WA 98101" -306946,AAA Batteries (4-pack),2,2.99,12/18/19 07:49,"427 Sunset St, San Francisco, CA 94016" -306947,USB-C Charging Cable,1,11.95,12/21/19 12:48,"755 Maple St, New York City, NY 10001" -306948,Bose SoundSport Headphones,1,99.99,12/06/19 12:56,"985 12th St, San Francisco, CA 94016" -306949,Macbook Pro Laptop,1,1700,12/07/19 20:28,"195 Maple St, Portland, OR 97035" -306950,iPhone,1,700,12/30/19 19:28,"273 Park St, Boston, MA 02215" -306951,Flatscreen TV,1,300,12/12/19 23:50,"454 Elm St, Dallas, TX 75001" -306952,Wired Headphones,1,11.99,12/19/19 14:16,"128 Washington St, Los Angeles, CA 90001" -306953,Apple Airpods Headphones,1,150,12/16/19 22:51,"838 Spruce St, San Francisco, CA 94016" -306954,27in FHD Monitor,1,149.99,12/22/19 20:03,"516 14th St, Boston, MA 02215" -306955,iPhone,1,700,12/20/19 20:34,"712 13th St, Los Angeles, CA 90001" -306955,Lightning Charging Cable,1,14.95,12/20/19 20:34,"712 13th St, Los Angeles, CA 90001" -306956,USB-C Charging Cable,1,11.95,12/15/19 14:03,"627 Maple St, Los Angeles, CA 90001" -306957,AA Batteries (4-pack),1,3.84,12/10/19 21:22,"164 13th St, Los Angeles, CA 90001" -306958,AA Batteries (4-pack),1,3.84,12/26/19 22:11,"488 Washington St, San Francisco, CA 94016" -306959,iPhone,1,700,12/20/19 11:45,"715 2nd St, New York City, NY 10001" -306959,Wired Headphones,1,11.99,12/20/19 11:45,"715 2nd St, New York City, NY 10001" -306960,AA Batteries (4-pack),1,3.84,12/15/19 10:58,"828 Dogwood St, New York City, NY 10001" -306961,Vareebadd Phone,1,400,12/09/19 12:25,"566 5th St, New York City, NY 10001" -306962,AA Batteries (4-pack),1,3.84,12/03/19 05:35,"863 Meadow St, New York City, NY 10001" -306963,AA Batteries (4-pack),1,3.84,12/26/19 18:40,"621 Jefferson St, Boston, MA 02215" -306964,USB-C Charging Cable,1,11.95,12/22/19 10:00,"734 Elm St, Los Angeles, CA 90001" -306965,AA Batteries (4-pack),1,3.84,12/14/19 21:28,"7 Madison St, San Francisco, CA 94016" -306966,AA Batteries (4-pack),1,3.84,12/17/19 13:48,"553 Walnut St, Boston, MA 02215" -306967,iPhone,1,700,12/27/19 20:41,"559 Ridge St, Los Angeles, CA 90001" -306967,Lightning Charging Cable,1,14.95,12/27/19 20:41,"559 Ridge St, Los Angeles, CA 90001" -306968,Lightning Charging Cable,1,14.95,12/08/19 17:53,"888 Hill St, San Francisco, CA 94016" -306969,AAA Batteries (4-pack),1,2.99,12/18/19 14:08,"49 Lincoln St, Austin, TX 73301" -306970,AAA Batteries (4-pack),2,2.99,12/07/19 11:45,"941 Lake St, Dallas, TX 75001" -306971,Bose SoundSport Headphones,1,99.99,12/18/19 20:06,"549 9th St, Los Angeles, CA 90001" -306972,AA Batteries (4-pack),1,3.84,12/14/19 12:31,"525 Lincoln St, Portland, OR 97035" -306973,AAA Batteries (4-pack),1,2.99,12/01/19 23:06,"120 11th St, Boston, MA 02215" -306974,Lightning Charging Cable,1,14.95,12/03/19 10:01,"181 Lakeview St, Seattle, WA 98101" -306975,AAA Batteries (4-pack),2,2.99,12/21/19 09:06,"874 Park St, San Francisco, CA 94016" -306976,Flatscreen TV,1,300,12/30/19 16:26,"912 10th St, Atlanta, GA 30301" -306977,Apple Airpods Headphones,1,150,12/22/19 20:34,"591 Forest St, Austin, TX 73301" -306978,AA Batteries (4-pack),1,3.84,12/06/19 10:01,"322 Johnson St, Atlanta, GA 30301" -306979,AAA Batteries (4-pack),2,2.99,12/21/19 11:25,"972 Cherry St, Boston, MA 02215" -306980,34in Ultrawide Monitor,1,379.99,12/11/19 08:32,"978 Chestnut St, Los Angeles, CA 90001" -306981,USB-C Charging Cable,1,11.95,12/08/19 04:29,"269 Highland St, San Francisco, CA 94016" -306982,USB-C Charging Cable,1,11.95,12/07/19 16:59,"247 10th St, San Francisco, CA 94016" -306983,Wired Headphones,1,11.99,12/23/19 11:11,"733 Adams St, Dallas, TX 75001" -306984,27in FHD Monitor,1,149.99,12/09/19 15:13,"578 River St, Portland, OR 97035" -306985,27in FHD Monitor,1,149.99,12/24/19 16:01,"972 Dogwood St, New York City, NY 10001" -306986,Lightning Charging Cable,1,14.95,12/21/19 12:20,"483 12th St, San Francisco, CA 94016" -306987,27in FHD Monitor,1,149.99,12/03/19 13:16,"100 5th St, Austin, TX 73301" -306988,AAA Batteries (4-pack),1,2.99,12/20/19 07:34,"329 11th St, Los Angeles, CA 90001" -306989,USB-C Charging Cable,1,11.95,12/22/19 17:36,"260 Jefferson St, Dallas, TX 75001" -306990,Vareebadd Phone,1,400,12/02/19 17:50,"973 Sunset St, Los Angeles, CA 90001" -306990,USB-C Charging Cable,1,11.95,12/02/19 17:50,"973 Sunset St, Los Angeles, CA 90001" -306991,Lightning Charging Cable,1,14.95,12/21/19 06:46,"671 Jefferson St, San Francisco, CA 94016" -306992,Apple Airpods Headphones,1,150,12/15/19 14:19,"684 7th St, New York City, NY 10001" -306993,AAA Batteries (4-pack),1,2.99,12/16/19 23:29,"940 9th St, Boston, MA 02215" -306994,27in 4K Gaming Monitor,1,389.99,12/09/19 03:44,"688 Dogwood St, San Francisco, CA 94016" -306995,Bose SoundSport Headphones,1,99.99,12/25/19 18:08,"779 Hill St, Los Angeles, CA 90001" -306996,iPhone,1,700,12/11/19 16:59,"771 Jackson St, San Francisco, CA 94016" -306997,Apple Airpods Headphones,1,150,12/31/19 12:29,"725 Wilson St, Seattle, WA 98101" -306998,ThinkPad Laptop,1,999.99,12/17/19 10:36,"962 Pine St, San Francisco, CA 94016" -306999,Bose SoundSport Headphones,1,99.99,12/21/19 11:04,"465 Maple St, Portland, OR 97035" -307000,Wired Headphones,1,11.99,12/12/19 13:39,"786 West St, Atlanta, GA 30301" -307001,Bose SoundSport Headphones,1,99.99,12/08/19 22:25,"764 Lakeview St, Atlanta, GA 30301" -307002,AAA Batteries (4-pack),1,2.99,12/25/19 20:16,"285 Ridge St, New York City, NY 10001" -307003,Wired Headphones,1,11.99,12/03/19 15:47,"579 Spruce St, Los Angeles, CA 90001" -307004,AA Batteries (4-pack),1,3.84,12/09/19 08:18,"407 Meadow St, New York City, NY 10001" -307005,USB-C Charging Cable,1,11.95,12/19/19 07:04,"349 Lakeview St, New York City, NY 10001" -307006,Lightning Charging Cable,1,14.95,12/02/19 12:24,"165 Walnut St, San Francisco, CA 94016" -307007,Apple Airpods Headphones,1,150,12/26/19 06:35,"753 Johnson St, Atlanta, GA 30301" -307008,Apple Airpods Headphones,1,150,12/28/19 13:13,"729 Hickory St, Boston, MA 02215" -307009,Bose SoundSport Headphones,1,99.99,12/28/19 16:24,"137 2nd St, Los Angeles, CA 90001" -307010,27in 4K Gaming Monitor,1,389.99,12/03/19 19:30,"33 Jackson St, New York City, NY 10001" -307011,Wired Headphones,1,11.99,12/19/19 14:50,"388 2nd St, Dallas, TX 75001" -307012,AAA Batteries (4-pack),1,2.99,12/15/19 11:01,"574 Chestnut St, San Francisco, CA 94016" -307013,27in FHD Monitor,1,149.99,12/01/19 11:13,"333 10th St, Atlanta, GA 30301" -307014,20in Monitor,1,109.99,12/28/19 09:25,"537 Center St, Dallas, TX 75001" -307015,Wired Headphones,1,11.99,12/19/19 00:06,"876 Forest St, Boston, MA 02215" -307016,USB-C Charging Cable,1,11.95,12/21/19 17:04,"458 Johnson St, Los Angeles, CA 90001" -307017,USB-C Charging Cable,1,11.95,12/05/19 20:22,"44 North St, San Francisco, CA 94016" -307018,Apple Airpods Headphones,1,150,12/02/19 12:06,"430 Meadow St, Portland, OR 97035" -307019,USB-C Charging Cable,1,11.95,12/23/19 23:29,"646 5th St, New York City, NY 10001" -307020,Wired Headphones,1,11.99,12/22/19 20:58,"467 1st St, Boston, MA 02215" -307021,20in Monitor,1,109.99,12/28/19 16:23,"189 Pine St, Los Angeles, CA 90001" -307022,AAA Batteries (4-pack),1,2.99,12/29/19 17:35,"520 Cherry St, San Francisco, CA 94016" -307023,Apple Airpods Headphones,1,150,12/13/19 09:50,"667 North St, Los Angeles, CA 90001" -307024,Wired Headphones,1,11.99,12/02/19 10:21,"629 Madison St, Los Angeles, CA 90001" -307025,Bose SoundSport Headphones,1,99.99,12/23/19 14:38,"394 4th St, San Francisco, CA 94016" -307026,ThinkPad Laptop,1,999.99,12/01/19 16:17,"544 North St, San Francisco, CA 94016" -307027,Google Phone,1,600,12/29/19 10:46,"238 9th St, Seattle, WA 98101" -307028,AAA Batteries (4-pack),2,2.99,12/26/19 01:15,"566 Spruce St, San Francisco, CA 94016" -307029,Bose SoundSport Headphones,1,99.99,12/21/19 12:10,"248 Walnut St, San Francisco, CA 94016" -307030,Lightning Charging Cable,1,14.95,12/01/19 11:51,"569 Madison St, San Francisco, CA 94016" -307031,AAA Batteries (4-pack),1,2.99,12/02/19 12:14,"697 Jefferson St, Boston, MA 02215" -307032,Wired Headphones,1,11.99,12/16/19 23:33,"113 Madison St, San Francisco, CA 94016" -307033,iPhone,1,700,12/01/19 16:47,"684 12th St, Los Angeles, CA 90001" -307034,AAA Batteries (4-pack),1,2.99,12/16/19 12:17,"692 River St, San Francisco, CA 94016" -307035,Lightning Charging Cable,1,14.95,12/04/19 18:46,"971 Elm St, Austin, TX 73301" -307036,27in FHD Monitor,1,149.99,12/20/19 10:11,"178 South St, Los Angeles, CA 90001" -307037,AAA Batteries (4-pack),1,2.99,12/29/19 17:08,"302 Elm St, San Francisco, CA 94016" -307038,AA Batteries (4-pack),1,3.84,12/19/19 20:43,"1 Ridge St, San Francisco, CA 94016" -307039,AA Batteries (4-pack),1,3.84,12/24/19 12:59,"7 Hill St, Portland, OR 97035" -307040,Lightning Charging Cable,1,14.95,12/05/19 07:54,"376 13th St, Portland, OR 97035" -307041,USB-C Charging Cable,1,11.95,12/13/19 18:45,"803 10th St, Boston, MA 02215" -307042,AAA Batteries (4-pack),3,2.99,12/01/19 11:56,"156 South St, Portland, OR 97035" -307043,AAA Batteries (4-pack),1,2.99,12/20/19 23:22,"355 Highland St, Atlanta, GA 30301" -307044,iPhone,1,700,12/25/19 21:54,"336 7th St, Boston, MA 02215" -307045,Lightning Charging Cable,1,14.95,12/11/19 16:56,"860 Cedar St, Seattle, WA 98101" -307046,USB-C Charging Cable,1,11.95,12/25/19 22:44,"976 13th St, New York City, NY 10001" -307047,Lightning Charging Cable,1,14.95,12/17/19 01:48,"800 West St, San Francisco, CA 94016" -307048,Apple Airpods Headphones,1,150,12/19/19 20:44,"135 Dogwood St, San Francisco, CA 94016" -307049,AA Batteries (4-pack),1,3.84,12/21/19 17:11,"106 Pine St, Portland, OR 97035" -307050,AA Batteries (4-pack),1,3.84,12/06/19 11:19,"805 Sunset St, New York City, NY 10001" -307051,Bose SoundSport Headphones,1,99.99,12/12/19 16:21,"755 5th St, Boston, MA 02215" -307052,Apple Airpods Headphones,1,150,12/11/19 19:33,"460 Ridge St, San Francisco, CA 94016" -307053,Wired Headphones,1,11.99,12/30/19 14:55,"342 Church St, Portland, ME 04101" -307054,Lightning Charging Cable,1,14.95,12/22/19 18:07,"728 4th St, Los Angeles, CA 90001" -307055,Wired Headphones,1,11.99,12/29/19 09:33,"696 Center St, Boston, MA 02215" -307056,iPhone,1,700,12/24/19 15:08,"788 13th St, New York City, NY 10001" -307057,Apple Airpods Headphones,1,150,12/11/19 14:05,"669 Lake St, Los Angeles, CA 90001" -307058,27in FHD Monitor,1,149.99,12/13/19 12:21,"372 River St, San Francisco, CA 94016" -307059,Wired Headphones,1,11.99,12/03/19 21:28,"779 9th St, Los Angeles, CA 90001" -307060,Wired Headphones,1,11.99,12/07/19 13:30,"914 Chestnut St, Austin, TX 73301" -307061,Lightning Charging Cable,1,14.95,12/12/19 19:21,"787 Adams St, Boston, MA 02215" -307062,AAA Batteries (4-pack),1,2.99,12/30/19 13:11,"441 Church St, New York City, NY 10001" -307063,Apple Airpods Headphones,1,150,12/21/19 16:06,"95 Hickory St, Atlanta, GA 30301" -307064,27in 4K Gaming Monitor,1,389.99,12/18/19 14:01,"751 Sunset St, Boston, MA 02215" -307065,AAA Batteries (4-pack),1,2.99,12/19/19 20:41,"512 Park St, New York City, NY 10001" -307066,Apple Airpods Headphones,1,150,12/06/19 18:09,"54 North St, Portland, OR 97035" -307067,Wired Headphones,1,11.99,12/01/19 09:55,"243 Cedar St, Dallas, TX 75001" -307068,Apple Airpods Headphones,1,150,12/25/19 13:08,"656 Elm St, Seattle, WA 98101" -307069,Google Phone,1,600,12/09/19 01:30,"892 Church St, Seattle, WA 98101" -307070,Wired Headphones,1,11.99,12/23/19 19:18,"201 Walnut St, New York City, NY 10001" -307071,AA Batteries (4-pack),1,3.84,12/16/19 11:59,"480 Chestnut St, Portland, OR 97035" -307071,Lightning Charging Cable,1,14.95,12/16/19 11:59,"480 Chestnut St, Portland, OR 97035" -307072,Google Phone,1,600,12/27/19 19:33,"988 Jackson St, San Francisco, CA 94016" -307073,Wired Headphones,1,11.99,12/28/19 09:46,"675 Church St, Atlanta, GA 30301" -307074,Apple Airpods Headphones,1,150,12/24/19 19:00,"505 Johnson St, Boston, MA 02215" -307075,Lightning Charging Cable,1,14.95,12/16/19 12:38,"836 Adams St, San Francisco, CA 94016" -307076,AAA Batteries (4-pack),2,2.99,12/19/19 15:09,"288 4th St, Boston, MA 02215" -307077,Apple Airpods Headphones,1,150,12/14/19 10:59,"180 Willow St, San Francisco, CA 94016" -307078,Wired Headphones,1,11.99,12/30/19 18:42,"387 Jefferson St, Atlanta, GA 30301" -307079,Apple Airpods Headphones,1,150,12/18/19 14:53,"722 1st St, San Francisco, CA 94016" -307080,Lightning Charging Cable,1,14.95,12/03/19 19:35,"549 11th St, New York City, NY 10001" -307081,Macbook Pro Laptop,1,1700,12/21/19 18:25,"625 Walnut St, San Francisco, CA 94016" -307082,Wired Headphones,1,11.99,12/31/19 18:14,"690 Hill St, San Francisco, CA 94016" -307083,Wired Headphones,1,11.99,12/16/19 10:56,"196 Willow St, San Francisco, CA 94016" -307084,Lightning Charging Cable,1,14.95,12/07/19 22:14,"437 Cherry St, Los Angeles, CA 90001" -307085,Wired Headphones,1,11.99,12/14/19 15:06,"101 Chestnut St, Boston, MA 02215" -307086,Bose SoundSport Headphones,1,99.99,12/10/19 10:16,"606 7th St, Portland, OR 97035" -307087,AAA Batteries (4-pack),2,2.99,12/07/19 17:26,"787 8th St, Boston, MA 02215" -307088,Macbook Pro Laptop,1,1700,12/20/19 09:08,"372 Main St, Los Angeles, CA 90001" -307089,AA Batteries (4-pack),1,3.84,12/14/19 15:03,"69 4th St, Austin, TX 73301" -307090,Google Phone,1,600,12/03/19 00:34,"603 11th St, San Francisco, CA 94016" -307091,Google Phone,1,600,12/09/19 07:04,"996 Maple St, New York City, NY 10001" -307092,Flatscreen TV,1,300,12/21/19 20:32,"956 2nd St, Boston, MA 02215" -307093,AAA Batteries (4-pack),2,2.99,12/07/19 02:49,"569 Wilson St, Seattle, WA 98101" -307094,USB-C Charging Cable,1,11.95,12/25/19 14:46,"408 River St, New York City, NY 10001" -307095,AA Batteries (4-pack),1,3.84,12/24/19 10:40,"684 Dogwood St, San Francisco, CA 94016" -307096,27in 4K Gaming Monitor,1,389.99,12/02/19 14:34,"522 Lincoln St, San Francisco, CA 94016" -307097,AAA Batteries (4-pack),1,2.99,12/07/19 10:18,"975 Dogwood St, Boston, MA 02215" -307098,AA Batteries (4-pack),1,3.84,12/10/19 10:47,"507 Spruce St, Los Angeles, CA 90001" -307099,ThinkPad Laptop,1,999.99,12/15/19 19:36,"393 Park St, San Francisco, CA 94016" -307100,20in Monitor,1,109.99,12/18/19 19:15,"216 9th St, Seattle, WA 98101" -307101,Lightning Charging Cable,1,14.95,12/10/19 17:04,"703 7th St, Seattle, WA 98101" -307102,USB-C Charging Cable,1,11.95,12/12/19 19:48,"602 1st St, Los Angeles, CA 90001" -307103,Google Phone,1,600,12/17/19 14:47,"718 8th St, Dallas, TX 75001" -307103,USB-C Charging Cable,1,11.95,12/17/19 14:47,"718 8th St, Dallas, TX 75001" -307103,Wired Headphones,1,11.99,12/17/19 14:47,"718 8th St, Dallas, TX 75001" -307104,Bose SoundSport Headphones,1,99.99,12/12/19 21:07,"652 Johnson St, New York City, NY 10001" -307105,Bose SoundSport Headphones,1,99.99,12/18/19 23:05,"370 Spruce St, Seattle, WA 98101" -307106,Lightning Charging Cable,1,14.95,12/22/19 09:52,"718 4th St, Dallas, TX 75001" -307107,USB-C Charging Cable,1,11.95,12/30/19 23:39,"479 14th St, San Francisco, CA 94016" -307108,Macbook Pro Laptop,1,1700,12/01/19 09:11,"518 Wilson St, San Francisco, CA 94016" -307109,AAA Batteries (4-pack),1,2.99,12/16/19 12:05,"264 Elm St, New York City, NY 10001" -307110,Vareebadd Phone,1,400,12/01/19 21:19,"921 Jefferson St, San Francisco, CA 94016" -307111,Lightning Charging Cable,1,14.95,12/02/19 06:16,"146 Lincoln St, Portland, OR 97035" -307112,Apple Airpods Headphones,1,150,12/02/19 12:43,"549 Spruce St, Dallas, TX 75001" -307113,Bose SoundSport Headphones,1,99.99,12/08/19 19:15,"895 Main St, Dallas, TX 75001" -307114,Apple Airpods Headphones,1,150,12/13/19 16:17,"512 Maple St, Portland, OR 97035" -307114,Apple Airpods Headphones,1,150,12/13/19 16:17,"512 Maple St, Portland, OR 97035" -307115,Apple Airpods Headphones,1,150,12/18/19 06:13,"403 Dogwood St, San Francisco, CA 94016" -307116,Lightning Charging Cable,2,14.95,12/25/19 09:37,"929 1st St, Seattle, WA 98101" -307117,Wired Headphones,1,11.99,12/15/19 18:48,"873 10th St, Seattle, WA 98101" -307118,Bose SoundSport Headphones,1,99.99,12/02/19 11:27,"514 Cedar St, New York City, NY 10001" -307119,AA Batteries (4-pack),2,3.84,12/15/19 12:42,"978 West St, Los Angeles, CA 90001" -307120,34in Ultrawide Monitor,1,379.99,12/03/19 12:42,"453 Chestnut St, Portland, OR 97035" -307121,USB-C Charging Cable,1,11.95,12/31/19 15:27,"618 13th St, Boston, MA 02215" -307122,AA Batteries (4-pack),1,3.84,12/13/19 09:12,"967 Center St, San Francisco, CA 94016" -307123,34in Ultrawide Monitor,1,379.99,12/29/19 18:41,"832 5th St, Los Angeles, CA 90001" -307124,Bose SoundSport Headphones,1,99.99,12/01/19 18:03,"730 Madison St, Boston, MA 02215" -307125,Bose SoundSport Headphones,1,99.99,12/12/19 15:17,"239 Ridge St, Boston, MA 02215" -307126,Bose SoundSport Headphones,1,99.99,12/28/19 10:53,"481 Maple St, Austin, TX 73301" -307127,AA Batteries (4-pack),1,3.84,12/27/19 01:17,"465 West St, Portland, OR 97035" -307128,AAA Batteries (4-pack),1,2.99,12/15/19 12:45,"230 Ridge St, Portland, OR 97035" -307129,AAA Batteries (4-pack),2,2.99,12/16/19 15:11,"954 Hill St, Los Angeles, CA 90001" -307130,Bose SoundSport Headphones,1,99.99,12/25/19 08:31,"487 Hickory St, New York City, NY 10001" -307131,27in 4K Gaming Monitor,1,389.99,12/04/19 21:11,"425 8th St, San Francisco, CA 94016" -307132,ThinkPad Laptop,1,999.99,12/01/19 18:09,"636 Center St, Dallas, TX 75001" -307133,Bose SoundSport Headphones,1,99.99,12/23/19 20:38,"344 Hickory St, New York City, NY 10001" -307134,ThinkPad Laptop,1,999.99,12/04/19 00:56,"568 West St, Austin, TX 73301" -307135,Flatscreen TV,1,300,12/21/19 16:48,"408 Sunset St, Boston, MA 02215" -307136,27in 4K Gaming Monitor,1,389.99,12/15/19 08:41,"391 5th St, San Francisco, CA 94016" -307137,Flatscreen TV,1,300,12/21/19 15:28,"526 Lincoln St, San Francisco, CA 94016" -307138,Lightning Charging Cable,2,14.95,12/06/19 22:08,"858 Chestnut St, Boston, MA 02215" -307139,Lightning Charging Cable,1,14.95,12/04/19 23:49,"553 Hickory St, San Francisco, CA 94016" -307140,AAA Batteries (4-pack),1,2.99,12/23/19 19:28,"156 Wilson St, San Francisco, CA 94016" -307141,AAA Batteries (4-pack),1,2.99,12/29/19 21:32,"166 Cedar St, San Francisco, CA 94016" -307142,USB-C Charging Cable,1,11.95,12/25/19 20:32,"417 Elm St, Los Angeles, CA 90001" -307143,Lightning Charging Cable,1,14.95,12/20/19 18:49,"361 Park St, Austin, TX 73301" -307144,iPhone,1,700,12/22/19 20:03,"265 Wilson St, Los Angeles, CA 90001" -307145,AA Batteries (4-pack),1,3.84,12/23/19 21:51,"929 Lincoln St, Boston, MA 02215" -307146,Wired Headphones,1,11.99,12/18/19 14:37,"441 Dogwood St, San Francisco, CA 94016" -307147,ThinkPad Laptop,1,999.99,12/27/19 13:48,"492 5th St, Boston, MA 02215" -307148,AAA Batteries (4-pack),1,2.99,12/14/19 23:34,"685 West St, San Francisco, CA 94016" -307149,LG Dryer,1,600.0,12/30/19 19:31,"747 Jackson St, Los Angeles, CA 90001" -307150,Wired Headphones,1,11.99,12/23/19 22:32,"375 Sunset St, Austin, TX 73301" -307151,USB-C Charging Cable,2,11.95,12/13/19 16:38,"376 8th St, New York City, NY 10001" -307152,Bose SoundSport Headphones,1,99.99,12/07/19 23:18,"199 Park St, Los Angeles, CA 90001" -307153,ThinkPad Laptop,1,999.99,12/01/19 10:31,"652 14th St, Atlanta, GA 30301" -307153,Macbook Pro Laptop,1,1700,12/01/19 10:31,"652 14th St, Atlanta, GA 30301" -307154,Google Phone,1,600,12/27/19 20:03,"269 Park St, Atlanta, GA 30301" -307155,AAA Batteries (4-pack),4,2.99,12/22/19 01:12,"27 2nd St, San Francisco, CA 94016" -307156,AA Batteries (4-pack),1,3.84,12/27/19 18:53,"309 Hill St, San Francisco, CA 94016" -307157,Wired Headphones,1,11.99,12/04/19 11:55,"736 2nd St, Atlanta, GA 30301" -307158,27in 4K Gaming Monitor,1,389.99,12/28/19 14:48,"650 Jackson St, San Francisco, CA 94016" -307159,Lightning Charging Cable,1,14.95,12/31/19 20:39,"582 6th St, Atlanta, GA 30301" -307160,Google Phone,1,600,12/01/19 08:49,"227 11th St, Dallas, TX 75001" -307161,AA Batteries (4-pack),1,3.84,12/10/19 07:52,"694 8th St, San Francisco, CA 94016" -307162,Wired Headphones,2,11.99,12/30/19 11:01,"588 Park St, Los Angeles, CA 90001" -307163,27in FHD Monitor,1,149.99,12/22/19 10:50,"520 Johnson St, Portland, ME 04101" -307164,Bose SoundSport Headphones,2,99.99,12/27/19 15:45,"26 Wilson St, Dallas, TX 75001" -307165,27in FHD Monitor,1,149.99,12/02/19 15:53,"716 Hickory St, Portland, OR 97035" -307166,AAA Batteries (4-pack),6,2.99,12/23/19 05:34,"604 Johnson St, Seattle, WA 98101" -307167,AA Batteries (4-pack),1,3.84,12/23/19 19:14,"241 2nd St, New York City, NY 10001" -307168,34in Ultrawide Monitor,1,379.99,12/03/19 07:39,"76 7th St, New York City, NY 10001" -307169,AAA Batteries (4-pack),1,2.99,12/23/19 16:24,"699 River St, Austin, TX 73301" -307170,Apple Airpods Headphones,1,150,12/26/19 18:45,"889 Hill St, Los Angeles, CA 90001" -307171,AAA Batteries (4-pack),1,2.99,12/08/19 09:22,"552 Center St, Los Angeles, CA 90001" -307172,34in Ultrawide Monitor,1,379.99,12/08/19 15:58,"188 Cherry St, Los Angeles, CA 90001" -307173,Apple Airpods Headphones,1,150,12/12/19 21:08,"528 14th St, Boston, MA 02215" -307174,AA Batteries (4-pack),2,3.84,12/02/19 18:56,"50 7th St, Dallas, TX 75001" -307175,Wired Headphones,1,11.99,12/15/19 11:20,"185 8th St, Seattle, WA 98101" -307176,AAA Batteries (4-pack),2,2.99,12/09/19 18:18,"900 Park St, San Francisco, CA 94016" -307177,Vareebadd Phone,1,400,12/18/19 11:28,"248 Pine St, Atlanta, GA 30301" -307178,USB-C Charging Cable,1,11.95,12/26/19 20:20,"980 Forest St, Dallas, TX 75001" -307179,Bose SoundSport Headphones,1,99.99,12/04/19 00:03,"309 1st St, Portland, OR 97035" -307180,USB-C Charging Cable,1,11.95,12/09/19 18:30,"705 14th St, New York City, NY 10001" -307181,Wired Headphones,2,11.99,12/01/19 11:01,"93 Adams St, Boston, MA 02215" -307182,Macbook Pro Laptop,1,1700,12/15/19 07:02,"979 North St, San Francisco, CA 94016" -307183,AAA Batteries (4-pack),1,2.99,12/15/19 19:54,"403 Center St, Atlanta, GA 30301" -307184,AA Batteries (4-pack),2,3.84,12/04/19 21:25,"440 Johnson St, Boston, MA 02215" -307185,AAA Batteries (4-pack),1,2.99,12/22/19 16:41,"13 10th St, Los Angeles, CA 90001" -307186,Apple Airpods Headphones,1,150,12/19/19 11:16,"659 Church St, Dallas, TX 75001" -307187,Apple Airpods Headphones,1,150,12/01/19 18:23,"464 5th St, Atlanta, GA 30301" -307188,Wired Headphones,1,11.99,12/15/19 22:40,"3 13th St, Seattle, WA 98101" -307189,Apple Airpods Headphones,1,150,12/22/19 19:15,"28 Jefferson St, Seattle, WA 98101" -307190,AAA Batteries (4-pack),1,2.99,12/15/19 18:28,"872 Center St, Atlanta, GA 30301" -307191,Flatscreen TV,1,300,12/13/19 14:17,"312 Elm St, New York City, NY 10001" -307192,Wired Headphones,1,11.99,12/01/19 13:38,"876 4th St, Los Angeles, CA 90001" -307193,USB-C Charging Cable,1,11.95,12/29/19 08:49,"661 8th St, Portland, OR 97035" -307194,27in FHD Monitor,1,149.99,12/16/19 16:54,"788 Forest St, New York City, NY 10001" -307195,AAA Batteries (4-pack),2,2.99,12/12/19 16:45,"922 Chestnut St, Dallas, TX 75001" -307196,AA Batteries (4-pack),1,3.84,12/23/19 10:37,"261 West St, New York City, NY 10001" -307197,AA Batteries (4-pack),1,3.84,12/12/19 08:29,"464 Elm St, Dallas, TX 75001" -307198,AA Batteries (4-pack),2,3.84,12/16/19 22:08,"186 Wilson St, Austin, TX 73301" -307199,Wired Headphones,1,11.99,12/13/19 15:25,"426 Meadow St, New York City, NY 10001" -307200,Lightning Charging Cable,1,14.95,12/06/19 00:45,"278 Forest St, San Francisco, CA 94016" -307201,Lightning Charging Cable,1,14.95,12/21/19 17:28,"606 Cherry St, Los Angeles, CA 90001" -307202,AAA Batteries (4-pack),2,2.99,12/03/19 20:45,"845 Church St, San Francisco, CA 94016" -307203,Flatscreen TV,1,300,12/27/19 15:58,"736 Elm St, Dallas, TX 75001" -307204,27in FHD Monitor,1,149.99,12/23/19 13:52,"373 Washington St, Boston, MA 02215" -307205,USB-C Charging Cable,1,11.95,12/20/19 15:57,"866 6th St, San Francisco, CA 94016" -307206,Apple Airpods Headphones,1,150,12/15/19 18:39,"570 Highland St, Dallas, TX 75001" -307207,AAA Batteries (4-pack),3,2.99,12/06/19 12:03,"834 8th St, Los Angeles, CA 90001" -307208,iPhone,1,700,12/09/19 23:08,"758 Chestnut St, Dallas, TX 75001" -307209,AA Batteries (4-pack),1,3.84,12/06/19 16:21,"574 Lakeview St, Los Angeles, CA 90001" -307210,Bose SoundSport Headphones,1,99.99,12/17/19 21:50,"199 Madison St, New York City, NY 10001" -307211,Apple Airpods Headphones,1,150,12/06/19 21:06,"787 Hill St, New York City, NY 10001" -307212,USB-C Charging Cable,1,11.95,12/31/19 15:23,"748 Sunset St, San Francisco, CA 94016" -307213,AAA Batteries (4-pack),2,2.99,12/23/19 19:41,"925 6th St, San Francisco, CA 94016" -307214,Lightning Charging Cable,1,14.95,12/24/19 09:29,"160 Park St, Austin, TX 73301" -307215,27in 4K Gaming Monitor,1,389.99,12/23/19 17:44,"723 Chestnut St, Seattle, WA 98101" -307216,Apple Airpods Headphones,1,150,12/10/19 12:24,"166 Lakeview St, Los Angeles, CA 90001" -307217,Lightning Charging Cable,1,14.95,12/10/19 10:15,"370 North St, Atlanta, GA 30301" -307218,AA Batteries (4-pack),1,3.84,12/20/19 18:39,"522 Jackson St, Portland, OR 97035" -307219,Bose SoundSport Headphones,1,99.99,12/11/19 09:58,"13 9th St, San Francisco, CA 94016" -307220,AAA Batteries (4-pack),1,2.99,12/14/19 14:38,"557 Forest St, San Francisco, CA 94016" -307221,AA Batteries (4-pack),1,3.84,12/16/19 07:33,"944 Pine St, Atlanta, GA 30301" -307222,Apple Airpods Headphones,1,150,12/08/19 09:07,"665 Dogwood St, Los Angeles, CA 90001" -307223,Apple Airpods Headphones,1,150,12/10/19 20:15,"842 7th St, San Francisco, CA 94016" -307224,Macbook Pro Laptop,1,1700,12/25/19 15:29,"207 Wilson St, San Francisco, CA 94016" -307225,AA Batteries (4-pack),2,3.84,12/19/19 19:28,"987 Center St, Los Angeles, CA 90001" -307226,AAA Batteries (4-pack),1,2.99,12/28/19 20:13,"230 Spruce St, New York City, NY 10001" -307227,Wired Headphones,1,11.99,12/17/19 14:05,"448 Wilson St, Los Angeles, CA 90001" -307228,27in FHD Monitor,1,149.99,12/08/19 19:38,"513 Park St, Boston, MA 02215" -307229,Vareebadd Phone,1,400,12/31/19 03:56,"6 Center St, Austin, TX 73301" -307229,Wired Headphones,1,11.99,12/31/19 03:56,"6 Center St, Austin, TX 73301" -307230,34in Ultrawide Monitor,1,379.99,12/28/19 06:50,"255 Madison St, San Francisco, CA 94016" -307231,27in FHD Monitor,1,149.99,12/05/19 10:43,"198 Lincoln St, Los Angeles, CA 90001" -307232,Google Phone,1,600,12/12/19 10:04,"433 Forest St, Seattle, WA 98101" -307233,AAA Batteries (4-pack),2,2.99,12/17/19 11:39,"639 14th St, San Francisco, CA 94016" -307234,Lightning Charging Cable,1,14.95,12/21/19 09:15,"879 Johnson St, Los Angeles, CA 90001" -307235,AA Batteries (4-pack),1,3.84,12/15/19 19:48,"945 8th St, New York City, NY 10001" -307236,iPhone,1,700,12/02/19 07:16,"851 Forest St, Portland, OR 97035" -307237,34in Ultrawide Monitor,1,379.99,12/04/19 16:33,"889 Meadow St, Portland, OR 97035" -307238,34in Ultrawide Monitor,1,379.99,12/06/19 11:22,"505 Willow St, San Francisco, CA 94016" -307239,Wired Headphones,1,11.99,12/21/19 11:34,"260 South St, San Francisco, CA 94016" -307240,AAA Batteries (4-pack),4,2.99,12/16/19 16:08,"415 Washington St, Los Angeles, CA 90001" -307241,USB-C Charging Cable,1,11.95,12/28/19 12:31,"250 Meadow St, San Francisco, CA 94016" -307242,AAA Batteries (4-pack),1,2.99,12/13/19 18:04,"71 West St, San Francisco, CA 94016" -307243,Apple Airpods Headphones,1,150,12/19/19 20:56,"260 Jefferson St, San Francisco, CA 94016" -307244,Wired Headphones,1,11.99,12/28/19 19:40,"398 Main St, San Francisco, CA 94016" -307245,27in 4K Gaming Monitor,1,389.99,12/09/19 17:00,"303 North St, New York City, NY 10001" -307246,AAA Batteries (4-pack),1,2.99,12/28/19 13:15,"132 12th St, Austin, TX 73301" -307247,AA Batteries (4-pack),1,3.84,12/11/19 15:01,"62 Cherry St, Portland, OR 97035" -307248,Wired Headphones,1,11.99,12/09/19 16:38,"20 Meadow St, New York City, NY 10001" -307249,Bose SoundSport Headphones,1,99.99,12/10/19 21:46,"209 Center St, Atlanta, GA 30301" -307250,Lightning Charging Cable,1,14.95,12/10/19 20:26,"310 Adams St, Boston, MA 02215" -307251,Bose SoundSport Headphones,1,99.99,12/18/19 17:33,"396 2nd St, Atlanta, GA 30301" -307252,Google Phone,1,600,12/08/19 11:48,"880 Forest St, New York City, NY 10001" -307253,Google Phone,1,600,12/01/19 15:17,"883 14th St, San Francisco, CA 94016" -307254,Lightning Charging Cable,1,14.95,12/21/19 20:10,"922 River St, San Francisco, CA 94016" -307255,Apple Airpods Headphones,1,150,12/22/19 14:26,"601 Park St, San Francisco, CA 94016" -307256,USB-C Charging Cable,2,11.95,12/11/19 17:00,"484 Johnson St, San Francisco, CA 94016" -307257,Wired Headphones,1,11.99,12/20/19 09:32,"162 9th St, Portland, OR 97035" -307258,AAA Batteries (4-pack),1,2.99,12/29/19 19:17,"585 6th St, Dallas, TX 75001" -307259,Lightning Charging Cable,1,14.95,12/22/19 11:13,"613 Sunset St, San Francisco, CA 94016" -307260,USB-C Charging Cable,1,11.95,12/22/19 09:09,"531 Willow St, Boston, MA 02215" -307261,34in Ultrawide Monitor,1,379.99,12/06/19 21:59,"198 North St, Atlanta, GA 30301" -307262,Vareebadd Phone,1,400,12/02/19 12:32,"773 7th St, Boston, MA 02215" -307263,iPhone,1,700,12/17/19 15:25,"399 Highland St, Dallas, TX 75001" -307264,Wired Headphones,1,11.99,12/14/19 16:16,"96 12th St, Los Angeles, CA 90001" -307265,AA Batteries (4-pack),1,3.84,12/18/19 15:14,"887 13th St, San Francisco, CA 94016" -307266,34in Ultrawide Monitor,1,379.99,12/06/19 18:46,"638 Johnson St, San Francisco, CA 94016" -307267,USB-C Charging Cable,1,11.95,12/08/19 23:59,"142 Maple St, Seattle, WA 98101" -307268,AAA Batteries (4-pack),2,2.99,12/18/19 22:56,"733 Jackson St, Los Angeles, CA 90001" -307269,AA Batteries (4-pack),3,3.84,12/03/19 15:39,"660 12th St, San Francisco, CA 94016" -307270,USB-C Charging Cable,1,11.95,12/17/19 22:11,"496 Lincoln St, Portland, ME 04101" -307271,AAA Batteries (4-pack),1,2.99,12/01/19 09:53,"312 Lake St, Atlanta, GA 30301" -307272,USB-C Charging Cable,1,11.95,12/20/19 16:59,"859 Meadow St, Dallas, TX 75001" -307273,27in FHD Monitor,1,149.99,12/21/19 18:51,"141 10th St, Austin, TX 73301" -307274,USB-C Charging Cable,2,11.95,12/27/19 18:18,"239 Dogwood St, Portland, OR 97035" -307275,Lightning Charging Cable,1,14.95,12/19/19 13:36,"263 6th St, Los Angeles, CA 90001" -307276,Macbook Pro Laptop,1,1700,12/20/19 09:38,"549 Chestnut St, Dallas, TX 75001" -307277,USB-C Charging Cable,1,11.95,12/01/19 12:55,"573 Jefferson St, Seattle, WA 98101" -307278,Google Phone,1,600,12/11/19 02:49,"915 Park St, Atlanta, GA 30301" -307279,27in FHD Monitor,1,149.99,12/07/19 14:53,"792 1st St, San Francisco, CA 94016" -307280,USB-C Charging Cable,1,11.95,12/16/19 23:19,"653 Spruce St, Atlanta, GA 30301" -307281,AA Batteries (4-pack),1,3.84,12/12/19 16:57,"859 9th St, San Francisco, CA 94016" -307282,Apple Airpods Headphones,1,150,12/16/19 16:14,"107 11th St, New York City, NY 10001" -307283,Lightning Charging Cable,1,14.95,12/27/19 19:21,"639 Center St, Boston, MA 02215" -307284,Apple Airpods Headphones,1,150,12/08/19 17:54,"573 Spruce St, San Francisco, CA 94016" -307285,AA Batteries (4-pack),1,3.84,12/01/19 11:37,"111 Meadow St, Los Angeles, CA 90001" -307286,Wired Headphones,1,11.99,12/17/19 19:36,"672 6th St, Los Angeles, CA 90001" -307287,Bose SoundSport Headphones,1,99.99,12/23/19 19:38,"652 Meadow St, San Francisco, CA 94016" -307288,27in FHD Monitor,1,149.99,12/11/19 14:36,"245 South St, Boston, MA 02215" -307289,27in 4K Gaming Monitor,1,389.99,12/19/19 19:34,"610 North St, San Francisco, CA 94016" -307290,20in Monitor,1,109.99,12/25/19 18:46,"875 13th St, Atlanta, GA 30301" -307291,AAA Batteries (4-pack),1,2.99,12/21/19 09:31,"441 Main St, Los Angeles, CA 90001" -307292,USB-C Charging Cable,1,11.95,12/05/19 23:29,"186 Maple St, Portland, OR 97035" -307293,Lightning Charging Cable,1,14.95,12/03/19 14:29,"844 11th St, Atlanta, GA 30301" -307294,ThinkPad Laptop,1,999.99,12/24/19 16:42,"345 Lake St, San Francisco, CA 94016" -307295,Lightning Charging Cable,1,14.95,12/27/19 14:42,"793 Cherry St, Austin, TX 73301" -307296,AAA Batteries (4-pack),1,2.99,12/25/19 23:52,"162 8th St, Los Angeles, CA 90001" -307297,AAA Batteries (4-pack),1,2.99,12/11/19 20:05,"415 Jackson St, San Francisco, CA 94016" -307298,Wired Headphones,1,11.99,12/20/19 08:27,"255 Hill St, New York City, NY 10001" -307299,Bose SoundSport Headphones,1,99.99,12/14/19 21:14,"175 Johnson St, Dallas, TX 75001" -307300,iPhone,1,700,12/19/19 20:04,"556 South St, Atlanta, GA 30301" -307301,27in 4K Gaming Monitor,1,389.99,12/29/19 14:18,"198 Lakeview St, Seattle, WA 98101" -307302,AAA Batteries (4-pack),2,2.99,12/23/19 16:46,"573 8th St, Austin, TX 73301" -307303,AA Batteries (4-pack),1,3.84,12/25/19 21:01,"338 Adams St, Boston, MA 02215" -307304,USB-C Charging Cable,1,11.95,12/30/19 11:34,"606 Jackson St, San Francisco, CA 94016" -307305,AA Batteries (4-pack),1,3.84,12/22/19 07:36,"697 Highland St, Dallas, TX 75001" -307306,Apple Airpods Headphones,1,150,12/17/19 17:23,"249 Hickory St, Seattle, WA 98101" -307307,Lightning Charging Cable,1,14.95,12/01/19 09:58,"914 Sunset St, San Francisco, CA 94016" -307308,Lightning Charging Cable,1,14.95,12/05/19 18:47,"510 1st St, New York City, NY 10001" -307309,ThinkPad Laptop,1,999.99,12/07/19 16:24,"896 12th St, New York City, NY 10001" -307310,Wired Headphones,1,11.99,12/17/19 21:00,"214 Forest St, San Francisco, CA 94016" -307311,AA Batteries (4-pack),1,3.84,12/30/19 15:24,"862 Lake St, Seattle, WA 98101" -307312,AAA Batteries (4-pack),2,2.99,12/18/19 20:30,"370 Johnson St, San Francisco, CA 94016" -307313,Lightning Charging Cable,1,14.95,12/14/19 21:05,"233 12th St, Los Angeles, CA 90001" -307314,Wired Headphones,1,11.99,12/27/19 21:37,"954 10th St, Los Angeles, CA 90001" -307315,iPhone,1,700,12/12/19 12:16,"41 Pine St, Los Angeles, CA 90001" -307316,Lightning Charging Cable,1,14.95,12/30/19 20:22,"619 Hickory St, Boston, MA 02215" -307317,iPhone,1,700,12/24/19 12:05,"522 South St, Boston, MA 02215" -307318,AA Batteries (4-pack),1,3.84,12/06/19 16:43,"264 Cedar St, Atlanta, GA 30301" -307319,Wired Headphones,1,11.99,12/26/19 18:35,"939 8th St, New York City, NY 10001" -307320,Apple Airpods Headphones,1,150,12/17/19 18:08,"717 Center St, Dallas, TX 75001" -307321,ThinkPad Laptop,1,999.99,12/07/19 18:47,"503 Wilson St, Los Angeles, CA 90001" -307322,USB-C Charging Cable,1,11.95,12/01/19 16:34,"335 14th St, Los Angeles, CA 90001" -307323,Bose SoundSport Headphones,1,99.99,12/17/19 09:00,"777 Pine St, Austin, TX 73301" -307324,USB-C Charging Cable,2,11.95,12/18/19 01:39,"986 4th St, Dallas, TX 75001" -307325,AA Batteries (4-pack),1,3.84,12/30/19 12:17,"341 Lake St, San Francisco, CA 94016" -307326,27in FHD Monitor,1,149.99,12/21/19 11:54,"702 Spruce St, Atlanta, GA 30301" -307327,AAA Batteries (4-pack),1,2.99,12/16/19 12:09,"676 River St, Los Angeles, CA 90001" -307328,Bose SoundSport Headphones,1,99.99,12/31/19 14:40,"372 11th St, Dallas, TX 75001" -307328,27in FHD Monitor,1,149.99,12/31/19 14:40,"372 11th St, Dallas, TX 75001" -307329,20in Monitor,1,109.99,12/03/19 22:27,"807 Forest St, Los Angeles, CA 90001" -307330,Lightning Charging Cable,1,14.95,12/13/19 10:40,"348 Willow St, San Francisco, CA 94016" -307331,AAA Batteries (4-pack),3,2.99,12/31/19 17:02,"768 9th St, San Francisco, CA 94016" -307332,Apple Airpods Headphones,1,150,12/04/19 18:07,"420 Dogwood St, Seattle, WA 98101" -307333,USB-C Charging Cable,1,11.95,12/20/19 18:00,"406 4th St, Boston, MA 02215" -307334,Wired Headphones,1,11.99,12/16/19 08:23,"489 River St, New York City, NY 10001" -307335,AA Batteries (4-pack),1,3.84,12/29/19 17:40,"150 14th St, New York City, NY 10001" -307336,20in Monitor,1,109.99,12/22/19 21:02,"415 4th St, Boston, MA 02215" -307337,AA Batteries (4-pack),2,3.84,12/27/19 13:02,"534 4th St, San Francisco, CA 94016" -307338,Wired Headphones,1,11.99,12/14/19 23:38,"584 9th St, Los Angeles, CA 90001" -307339,Lightning Charging Cable,1,14.95,12/07/19 23:29,"308 Madison St, San Francisco, CA 94016" -307340,20in Monitor,1,109.99,12/06/19 15:41,"433 11th St, Boston, MA 02215" -307341,Apple Airpods Headphones,1,150,12/13/19 06:25,"169 8th St, Boston, MA 02215" -307342,27in FHD Monitor,1,149.99,12/02/19 16:52,"248 7th St, Atlanta, GA 30301" -307343,Wired Headphones,1,11.99,12/07/19 23:16,"204 West St, Los Angeles, CA 90001" -307344,Bose SoundSport Headphones,1,99.99,12/20/19 12:52,"852 Washington St, Atlanta, GA 30301" -307345,AAA Batteries (4-pack),2,2.99,12/22/19 15:53,"119 Main St, San Francisco, CA 94016" -307346,Wired Headphones,1,11.99,12/30/19 19:04,"311 Washington St, San Francisco, CA 94016" -307347,Lightning Charging Cable,1,14.95,12/29/19 01:10,"591 Sunset St, Los Angeles, CA 90001" -307348,USB-C Charging Cable,1,11.95,12/04/19 00:19,"434 12th St, Boston, MA 02215" -307349,Wired Headphones,1,11.99,12/24/19 12:51,"875 Walnut St, Seattle, WA 98101" -307350,AAA Batteries (4-pack),2,2.99,12/20/19 17:51,"253 Dogwood St, New York City, NY 10001" -307351,Lightning Charging Cable,1,14.95,12/15/19 14:33,"686 7th St, Atlanta, GA 30301" -307352,Apple Airpods Headphones,1,150,12/13/19 14:25,"408 Lincoln St, Los Angeles, CA 90001" -307353,AA Batteries (4-pack),1,3.84,12/29/19 14:02,"879 Ridge St, Austin, TX 73301" -307353,Apple Airpods Headphones,1,150,12/29/19 14:02,"879 Ridge St, Austin, TX 73301" -307354,Apple Airpods Headphones,1,150,12/12/19 23:04,"194 Lake St, Seattle, WA 98101" -307355,Lightning Charging Cable,1,14.95,12/23/19 19:16,"640 5th St, New York City, NY 10001" -307356,AA Batteries (4-pack),1,3.84,12/24/19 23:36,"995 Wilson St, Dallas, TX 75001" -307357,Wired Headphones,1,11.99,12/22/19 21:47,"164 1st St, New York City, NY 10001" -307358,AA Batteries (4-pack),2,3.84,12/24/19 19:44,"757 Forest St, Los Angeles, CA 90001" -307359,Wired Headphones,1,11.99,12/22/19 08:24,"759 Johnson St, New York City, NY 10001" -307360,Google Phone,1,600,12/23/19 23:42,"454 Jefferson St, Boston, MA 02215" -307361,20in Monitor,1,109.99,12/28/19 15:03,"878 Walnut St, San Francisco, CA 94016" -307362,34in Ultrawide Monitor,1,379.99,12/25/19 14:39,"463 Wilson St, Los Angeles, CA 90001" -307363,Wired Headphones,1,11.99,12/03/19 14:32,"321 Wilson St, Los Angeles, CA 90001" -307364,AAA Batteries (4-pack),1,2.99,12/09/19 16:45,"659 Main St, San Francisco, CA 94016" -307365,Lightning Charging Cable,1,14.95,12/22/19 13:52,"149 Hill St, New York City, NY 10001" -307366,Bose SoundSport Headphones,1,99.99,12/30/19 07:12,"545 Main St, Los Angeles, CA 90001" -307367,Apple Airpods Headphones,1,150,12/28/19 19:14,"733 2nd St, Los Angeles, CA 90001" -307368,Wired Headphones,1,11.99,12/31/19 18:22,"401 Main St, San Francisco, CA 94016" -307369,USB-C Charging Cable,1,11.95,12/24/19 22:49,"405 5th St, San Francisco, CA 94016" -307370,iPhone,1,700,12/04/19 15:44,"283 Main St, New York City, NY 10001" -307371,Apple Airpods Headphones,1,150,12/15/19 01:11,"526 Maple St, New York City, NY 10001" -307372,Lightning Charging Cable,1,14.95,12/21/19 19:08,"112 Sunset St, New York City, NY 10001" -307373,AAA Batteries (4-pack),2,2.99,12/02/19 18:20,"596 10th St, San Francisco, CA 94016" -307374,iPhone,1,700,12/28/19 12:04,"84 South St, San Francisco, CA 94016" -307375,27in 4K Gaming Monitor,1,389.99,12/22/19 16:42,"16 4th St, Austin, TX 73301" -307376,Lightning Charging Cable,1,14.95,12/04/19 15:38,"942 Lake St, San Francisco, CA 94016" -307377,Bose SoundSport Headphones,1,99.99,12/05/19 09:34,"53 Lincoln St, Dallas, TX 75001" -307378,Wired Headphones,1,11.99,12/12/19 11:56,"788 10th St, Los Angeles, CA 90001" -307379,AA Batteries (4-pack),1,3.84,12/15/19 12:59,"172 Pine St, Los Angeles, CA 90001" -307380,Wired Headphones,1,11.99,12/29/19 13:12,"469 Dogwood St, Atlanta, GA 30301" -307381,Vareebadd Phone,1,400,12/16/19 18:31,"422 Lake St, Boston, MA 02215" -307382,Lightning Charging Cable,1,14.95,12/16/19 13:53,"57 Dogwood St, Los Angeles, CA 90001" -307383,Apple Airpods Headphones,1,150,12/30/19 04:43,"79 Elm St, New York City, NY 10001" -307384,Lightning Charging Cable,1,14.95,12/11/19 09:41,"712 Hill St, Atlanta, GA 30301" -307385,Wired Headphones,1,11.99,12/17/19 11:24,"986 Lakeview St, New York City, NY 10001" -307386,AA Batteries (4-pack),1,3.84,12/12/19 09:12,"163 9th St, Boston, MA 02215" -307387,AA Batteries (4-pack),1,3.84,12/14/19 20:18,"826 Hickory St, Atlanta, GA 30301" -307388,USB-C Charging Cable,1,11.95,12/29/19 14:19,"535 Washington St, Atlanta, GA 30301" -307389,Flatscreen TV,1,300,12/28/19 19:00,"935 Jefferson St, San Francisco, CA 94016" -307390,ThinkPad Laptop,1,999.99,12/30/19 06:54,"60 Walnut St, Austin, TX 73301" -307391,Wired Headphones,1,11.99,12/08/19 08:57,"853 Dogwood St, San Francisco, CA 94016" -307392,AA Batteries (4-pack),1,3.84,12/31/19 22:46,"334 North St, Boston, MA 02215" -307393,20in Monitor,1,109.99,12/06/19 08:08,"658 Jefferson St, Atlanta, GA 30301" -307394,Bose SoundSport Headphones,1,99.99,12/14/19 11:43,"851 Spruce St, Los Angeles, CA 90001" -307395,Apple Airpods Headphones,1,150,12/18/19 19:43,"109 River St, Dallas, TX 75001" -307396,Wired Headphones,2,11.99,12/26/19 17:31,"171 2nd St, San Francisco, CA 94016" -307397,AAA Batteries (4-pack),3,2.99,12/25/19 00:36,"846 Lakeview St, Austin, TX 73301" -307398,Apple Airpods Headphones,1,150,12/18/19 10:10,"618 12th St, Austin, TX 73301" -307399,Apple Airpods Headphones,1,150,12/02/19 13:36,"324 12th St, San Francisco, CA 94016" -307400,AAA Batteries (4-pack),1,2.99,12/05/19 01:34,"321 Adams St, San Francisco, CA 94016" -307401,Apple Airpods Headphones,1,150,12/31/19 00:26,"492 Adams St, New York City, NY 10001" -307402,Bose SoundSport Headphones,1,99.99,12/15/19 23:03,"519 Spruce St, Los Angeles, CA 90001" -307403,ThinkPad Laptop,1,999.99,12/26/19 19:47,"123 Forest St, Austin, TX 73301" -307404,Lightning Charging Cable,1,14.95,12/30/19 17:17,"860 Jackson St, Los Angeles, CA 90001" -307405,Lightning Charging Cable,1,14.95,12/31/19 11:58,"658 Main St, Seattle, WA 98101" -307406,Wired Headphones,1,11.99,12/23/19 06:54,"672 1st St, Seattle, WA 98101" -307407,Lightning Charging Cable,1,14.95,12/17/19 16:22,"135 Jefferson St, San Francisco, CA 94016" -307408,27in FHD Monitor,1,149.99,12/06/19 18:27,"92 Willow St, Dallas, TX 75001" -307409,AAA Batteries (4-pack),2,2.99,12/07/19 17:04,"123 8th St, New York City, NY 10001" -307410,AA Batteries (4-pack),1,3.84,12/30/19 12:30,"88 10th St, Los Angeles, CA 90001" -307411,27in 4K Gaming Monitor,1,389.99,12/10/19 11:20,"276 Hill St, Boston, MA 02215" -307412,Lightning Charging Cable,1,14.95,12/03/19 16:30,"755 Center St, Atlanta, GA 30301" -307413,Wired Headphones,2,11.99,12/06/19 16:15,"471 West St, Seattle, WA 98101" -307414,Bose SoundSport Headphones,1,99.99,12/14/19 13:23,"496 4th St, Los Angeles, CA 90001" -307415,AAA Batteries (4-pack),2,2.99,12/06/19 11:44,"345 Walnut St, Boston, MA 02215" -307416,27in FHD Monitor,1,149.99,12/02/19 20:49,"893 Adams St, San Francisco, CA 94016" -307417,AAA Batteries (4-pack),2,2.99,12/11/19 18:21,"440 Pine St, San Francisco, CA 94016" -,,,,, -307418,Lightning Charging Cable,1,14.95,12/27/19 23:53,"681 Cedar St, Seattle, WA 98101" -307419,AA Batteries (4-pack),1,3.84,12/20/19 09:28,"890 Lakeview St, Boston, MA 02215" -307420,AAA Batteries (4-pack),1,2.99,12/12/19 15:09,"86 13th St, Los Angeles, CA 90001" -307421,Bose SoundSport Headphones,1,99.99,12/01/19 08:21,"739 2nd St, Los Angeles, CA 90001" -307422,USB-C Charging Cable,1,11.95,12/26/19 13:06,"946 Cherry St, Atlanta, GA 30301" -307423,Bose SoundSport Headphones,1,99.99,12/18/19 05:09,"995 1st St, Dallas, TX 75001" -307424,Apple Airpods Headphones,1,150,12/17/19 09:23,"631 Johnson St, New York City, NY 10001" -307425,Apple Airpods Headphones,1,150,12/30/19 19:45,"297 4th St, Dallas, TX 75001" -307426,iPhone,1,700,12/16/19 14:23,"585 North St, Boston, MA 02215" -307427,Vareebadd Phone,1,400,12/25/19 22:14,"559 4th St, San Francisco, CA 94016" -307428,Flatscreen TV,1,300,12/23/19 02:28,"289 Cherry St, Dallas, TX 75001" -307429,iPhone,1,700,12/21/19 11:36,"722 1st St, Portland, OR 97035" -307430,Google Phone,1,600,12/06/19 09:53,"996 River St, San Francisco, CA 94016" -307431,Apple Airpods Headphones,1,150,12/08/19 10:20,"479 North St, Portland, OR 97035" -307432,AAA Batteries (4-pack),1,2.99,12/15/19 09:23,"449 5th St, Los Angeles, CA 90001" -307433,ThinkPad Laptop,1,999.99,12/06/19 23:10,"673 Highland St, Austin, TX 73301" -307434,Apple Airpods Headphones,1,150,12/14/19 21:19,"867 Willow St, Atlanta, GA 30301" -307435,Apple Airpods Headphones,1,150,12/04/19 22:41,"363 Lincoln St, New York City, NY 10001" -307436,AAA Batteries (4-pack),1,2.99,12/25/19 23:10,"150 8th St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -307437,AA Batteries (4-pack),1,3.84,12/09/19 14:02,"846 Elm St, San Francisco, CA 94016" -307438,Wired Headphones,1,11.99,12/18/19 20:58,"351 Elm St, Los Angeles, CA 90001" -307439,Macbook Pro Laptop,1,1700,12/31/19 22:19,"380 Washington St, Dallas, TX 75001" -307440,Lightning Charging Cable,1,14.95,12/20/19 12:00,"614 West St, San Francisco, CA 94016" -307441,ThinkPad Laptop,1,999.99,12/07/19 14:15,"70 North St, New York City, NY 10001" -307442,AAA Batteries (4-pack),1,2.99,12/14/19 20:08,"984 5th St, Dallas, TX 75001" -307443,Bose SoundSport Headphones,1,99.99,12/01/19 14:53,"762 2nd St, New York City, NY 10001" -307444,AAA Batteries (4-pack),1,2.99,12/13/19 09:31,"823 Hill St, Austin, TX 73301" -307445,AA Batteries (4-pack),2,3.84,12/14/19 14:58,"315 Cherry St, New York City, NY 10001" -307446,AA Batteries (4-pack),1,3.84,12/29/19 11:56,"112 Johnson St, Boston, MA 02215" -307447,AAA Batteries (4-pack),1,2.99,12/16/19 18:17,"251 Hill St, Atlanta, GA 30301" -307448,Bose SoundSport Headphones,1,99.99,12/29/19 20:43,"264 14th St, Los Angeles, CA 90001" -307449,AAA Batteries (4-pack),1,2.99,12/21/19 20:13,"972 4th St, New York City, NY 10001" -307450,AA Batteries (4-pack),1,3.84,12/03/19 17:19,"25 North St, New York City, NY 10001" -307451,USB-C Charging Cable,1,11.95,12/19/19 10:32,"81 13th St, Dallas, TX 75001" -307452,Lightning Charging Cable,1,14.95,12/21/19 21:36,"423 1st St, Dallas, TX 75001" -307453,LG Washing Machine,1,600.0,12/03/19 12:55,"681 Meadow St, San Francisco, CA 94016" -307454,Wired Headphones,1,11.99,12/16/19 16:28,"951 Cedar St, Dallas, TX 75001" -307455,34in Ultrawide Monitor,1,379.99,12/06/19 07:36,"416 Church St, Atlanta, GA 30301" -307456,Wired Headphones,1,11.99,12/19/19 10:50,"951 Lincoln St, Los Angeles, CA 90001" -307457,Google Phone,1,600,12/16/19 19:45,"346 Maple St, Atlanta, GA 30301" -307458,Lightning Charging Cable,1,14.95,12/14/19 14:50,"836 13th St, Seattle, WA 98101" -307459,20in Monitor,1,109.99,12/16/19 12:42,"668 6th St, Seattle, WA 98101" -307460,20in Monitor,1,109.99,12/29/19 11:20,"670 Madison St, Austin, TX 73301" -307461,Wired Headphones,1,11.99,12/08/19 10:45,"275 4th St, San Francisco, CA 94016" -307462,Wired Headphones,1,11.99,12/10/19 08:29,"108 Cedar St, San Francisco, CA 94016" -307462,Vareebadd Phone,1,400,12/10/19 08:29,"108 Cedar St, San Francisco, CA 94016" -307463,27in FHD Monitor,1,149.99,12/27/19 13:20,"384 Cedar St, San Francisco, CA 94016" -307464,ThinkPad Laptop,1,999.99,12/14/19 14:01,"702 North St, Seattle, WA 98101" -307465,AAA Batteries (4-pack),2,2.99,12/31/19 05:57,"12 4th St, Portland, OR 97035" -307466,Lightning Charging Cable,2,14.95,12/23/19 16:20,"508 6th St, Los Angeles, CA 90001" -307467,Bose SoundSport Headphones,1,99.99,12/20/19 18:40,"66 Wilson St, Atlanta, GA 30301" -307468,Apple Airpods Headphones,1,150,12/03/19 18:23,"820 Ridge St, Los Angeles, CA 90001" -307469,AA Batteries (4-pack),1,3.84,12/08/19 20:54,"806 5th St, Portland, OR 97035" -307470,27in 4K Gaming Monitor,1,389.99,12/18/19 18:46,"919 Elm St, San Francisco, CA 94016" -307471,Wired Headphones,1,11.99,12/19/19 09:39,"768 Cedar St, New York City, NY 10001" -307472,AAA Batteries (4-pack),1,2.99,12/02/19 17:44,"346 Cherry St, Los Angeles, CA 90001" -307473,34in Ultrawide Monitor,1,379.99,12/09/19 18:34,"245 Lake St, San Francisco, CA 94016" -307474,AA Batteries (4-pack),1,3.84,12/19/19 01:28,"904 Hickory St, San Francisco, CA 94016" -307475,Lightning Charging Cable,1,14.95,12/12/19 23:38,"135 6th St, Los Angeles, CA 90001" -307476,Wired Headphones,1,11.99,12/08/19 14:20,"492 Cherry St, Los Angeles, CA 90001" -307477,Wired Headphones,2,11.99,12/30/19 11:11,"463 1st St, San Francisco, CA 94016" -307478,AAA Batteries (4-pack),1,2.99,12/25/19 11:45,"74 Johnson St, Dallas, TX 75001" -307479,USB-C Charging Cable,1,11.95,12/14/19 23:03,"49 Forest St, New York City, NY 10001" -307480,AAA Batteries (4-pack),1,2.99,12/12/19 18:37,"422 Wilson St, Los Angeles, CA 90001" -307481,34in Ultrawide Monitor,1,379.99,12/06/19 14:23,"697 12th St, Boston, MA 02215" -307482,Apple Airpods Headphones,1,150,12/28/19 14:43,"797 13th St, Los Angeles, CA 90001" -307483,USB-C Charging Cable,1,11.95,12/24/19 09:41,"230 Cedar St, Los Angeles, CA 90001" -307484,Flatscreen TV,1,300,12/18/19 20:29,"447 10th St, San Francisco, CA 94016" -307485,Wired Headphones,1,11.99,12/22/19 17:40,"876 Pine St, Boston, MA 02215" -307486,Wired Headphones,1,11.99,12/30/19 14:40,"728 Hill St, New York City, NY 10001" -307487,AA Batteries (4-pack),1,3.84,12/20/19 09:33,"973 Dogwood St, New York City, NY 10001" -307488,iPhone,1,700,12/15/19 09:30,"515 Ridge St, Dallas, TX 75001" -307489,Wired Headphones,1,11.99,12/01/19 21:42,"874 13th St, Los Angeles, CA 90001" -307490,AA Batteries (4-pack),2,3.84,12/23/19 04:21,"212 Willow St, Los Angeles, CA 90001" -307491,AA Batteries (4-pack),1,3.84,12/25/19 19:25,"726 7th St, Dallas, TX 75001" -307492,USB-C Charging Cable,1,11.95,12/10/19 21:25,"133 Cherry St, San Francisco, CA 94016" -307493,Wired Headphones,1,11.99,12/04/19 19:44,"291 Meadow St, San Francisco, CA 94016" -307494,34in Ultrawide Monitor,1,379.99,12/21/19 20:50,"251 Washington St, Atlanta, GA 30301" -307495,Apple Airpods Headphones,1,150,12/29/19 10:58,"875 North St, Boston, MA 02215" -307496,AAA Batteries (4-pack),1,2.99,12/19/19 17:40,"513 Lake St, Los Angeles, CA 90001" -307497,AAA Batteries (4-pack),2,2.99,12/10/19 15:02,"988 12th St, Atlanta, GA 30301" -307498,AAA Batteries (4-pack),2,2.99,12/25/19 20:39,"331 8th St, Boston, MA 02215" -,,,,, -307499,Lightning Charging Cable,1,14.95,12/09/19 21:22,"378 Madison St, Los Angeles, CA 90001" -307500,Apple Airpods Headphones,1,150,12/31/19 07:31,"152 Forest St, Portland, OR 97035" -307501,USB-C Charging Cable,1,11.95,12/23/19 19:40,"859 Meadow St, Boston, MA 02215" -307502,Bose SoundSport Headphones,1,99.99,12/12/19 11:18,"34 Hill St, Los Angeles, CA 90001" -307503,Bose SoundSport Headphones,1,99.99,12/28/19 16:19,"475 Hickory St, Dallas, TX 75001" -307504,AA Batteries (4-pack),1,3.84,12/23/19 12:34,"60 6th St, New York City, NY 10001" -307505,iPhone,1,700,12/27/19 08:10,"251 Highland St, Austin, TX 73301" -307506,AAA Batteries (4-pack),1,2.99,12/19/19 13:10,"196 Madison St, Los Angeles, CA 90001" -307507,AAA Batteries (4-pack),4,2.99,12/23/19 12:58,"430 11th St, San Francisco, CA 94016" -,,,,, -307508,27in FHD Monitor,1,149.99,12/27/19 10:36,"727 5th St, Dallas, TX 75001" -307509,Wired Headphones,1,11.99,12/01/19 15:49,"256 Chestnut St, San Francisco, CA 94016" -307510,AA Batteries (4-pack),1,3.84,12/28/19 21:44,"545 Meadow St, Seattle, WA 98101" -307511,AA Batteries (4-pack),1,3.84,12/06/19 07:58,"612 Walnut St, Los Angeles, CA 90001" -307512,Bose SoundSport Headphones,1,99.99,12/13/19 08:36,"300 Center St, San Francisco, CA 94016" -307513,Apple Airpods Headphones,1,150,12/21/19 10:13,"607 10th St, Boston, MA 02215" -307514,USB-C Charging Cable,1,11.95,12/06/19 20:27,"301 Hill St, San Francisco, CA 94016" -307515,ThinkPad Laptop,1,999.99,12/10/19 18:42,"311 11th St, Dallas, TX 75001" -307516,AAA Batteries (4-pack),2,2.99,12/26/19 12:41,"697 Elm St, San Francisco, CA 94016" -307517,AAA Batteries (4-pack),1,2.99,12/10/19 21:35,"920 South St, New York City, NY 10001" -307518,iPhone,1,700,12/10/19 18:12,"194 8th St, Los Angeles, CA 90001" -307519,27in FHD Monitor,1,149.99,12/31/19 20:24,"231 West St, San Francisco, CA 94016" -307520,20in Monitor,1,109.99,12/30/19 23:12,"971 Madison St, Atlanta, GA 30301" -307521,USB-C Charging Cable,1,11.95,12/16/19 12:00,"851 Lake St, Portland, OR 97035" -307522,AA Batteries (4-pack),1,3.84,12/14/19 16:22,"988 Church St, Boston, MA 02215" -307523,iPhone,1,700,12/22/19 07:20,"548 Spruce St, Seattle, WA 98101" -307524,LG Dryer,1,600.0,12/21/19 10:31,"339 Hickory St, New York City, NY 10001" -307525,27in 4K Gaming Monitor,1,389.99,12/13/19 06:32,"113 Spruce St, Boston, MA 02215" -307526,USB-C Charging Cable,1,11.95,12/21/19 12:16,"596 Lakeview St, New York City, NY 10001" -307527,27in 4K Gaming Monitor,1,389.99,12/05/19 18:59,"123 Jackson St, San Francisco, CA 94016" -307528,Wired Headphones,1,11.99,12/05/19 04:14,"368 West St, Boston, MA 02215" -307529,USB-C Charging Cable,1,11.95,12/17/19 17:07,"108 Meadow St, San Francisco, CA 94016" -307530,Apple Airpods Headphones,1,150,12/25/19 16:07,"635 Elm St, Atlanta, GA 30301" -307531,Bose SoundSport Headphones,1,99.99,12/19/19 15:02,"200 7th St, Boston, MA 02215" -307532,ThinkPad Laptop,1,999.99,12/01/19 15:01,"428 Jefferson St, San Francisco, CA 94016" -307533,Wired Headphones,1,11.99,12/24/19 12:18,"555 North St, Los Angeles, CA 90001" -307534,Flatscreen TV,1,300,12/18/19 07:02,"366 5th St, Seattle, WA 98101" -307535,Flatscreen TV,1,300,12/24/19 11:16,"204 Ridge St, Los Angeles, CA 90001" -307536,20in Monitor,1,109.99,12/13/19 14:16,"865 8th St, Atlanta, GA 30301" -307537,AA Batteries (4-pack),2,3.84,12/17/19 19:28,"893 Church St, Boston, MA 02215" -307538,Lightning Charging Cable,1,14.95,12/06/19 17:13,"633 10th St, New York City, NY 10001" -307539,27in FHD Monitor,1,149.99,12/18/19 19:00,"252 5th St, Seattle, WA 98101" -307540,USB-C Charging Cable,1,11.95,12/15/19 19:37,"503 Jefferson St, Atlanta, GA 30301" -307541,AAA Batteries (4-pack),1,2.99,12/11/19 16:58,"783 Maple St, Los Angeles, CA 90001" -307542,27in FHD Monitor,1,149.99,12/08/19 00:55,"390 Cedar St, San Francisco, CA 94016" -307543,Wired Headphones,1,11.99,12/22/19 00:10,"766 Forest St, San Francisco, CA 94016" -307544,AA Batteries (4-pack),1,3.84,12/12/19 07:28,"520 Chestnut St, Dallas, TX 75001" -307545,Macbook Pro Laptop,1,1700,12/19/19 15:31,"547 Lakeview St, Austin, TX 73301" -307546,USB-C Charging Cable,2,11.95,12/25/19 11:27,"383 Elm St, Atlanta, GA 30301" -307547,Vareebadd Phone,1,400,12/02/19 13:38,"961 Johnson St, Dallas, TX 75001" -307548,Wired Headphones,1,11.99,12/02/19 00:17,"649 Park St, Boston, MA 02215" -307549,AA Batteries (4-pack),1,3.84,12/18/19 10:18,"999 Maple St, Dallas, TX 75001" -307550,AA Batteries (4-pack),1,3.84,12/08/19 16:53,"596 5th St, Los Angeles, CA 90001" -307551,LG Washing Machine,1,600.0,12/14/19 18:39,"934 Church St, New York City, NY 10001" -307552,USB-C Charging Cable,1,11.95,12/07/19 13:38,"153 Cedar St, Atlanta, GA 30301" -307553,27in FHD Monitor,1,149.99,12/06/19 19:42,"528 Spruce St, San Francisco, CA 94016" -307554,Bose SoundSport Headphones,1,99.99,12/31/19 16:14,"963 Wilson St, San Francisco, CA 94016" -307555,Macbook Pro Laptop,1,1700,12/11/19 22:34,"329 Hill St, Seattle, WA 98101" -307556,27in 4K Gaming Monitor,1,389.99,12/18/19 13:43,"84 12th St, New York City, NY 10001" -307557,Google Phone,1,600,12/31/19 20:42,"501 Hickory St, Seattle, WA 98101" -307558,AAA Batteries (4-pack),1,2.99,12/24/19 18:49,"145 Lakeview St, Dallas, TX 75001" -307559,Wired Headphones,1,11.99,12/07/19 16:23,"839 West St, Los Angeles, CA 90001" -307560,ThinkPad Laptop,1,999.99,12/02/19 18:39,"923 Cedar St, Atlanta, GA 30301" -307561,USB-C Charging Cable,1,11.95,12/16/19 22:09,"238 Hill St, Atlanta, GA 30301" -307562,Lightning Charging Cable,1,14.95,12/21/19 11:01,"170 Spruce St, Seattle, WA 98101" -307563,Google Phone,1,600,12/12/19 10:12,"221 Cherry St, Los Angeles, CA 90001" -307564,Bose SoundSport Headphones,1,99.99,12/25/19 14:50,"323 Walnut St, New York City, NY 10001" -307565,27in FHD Monitor,1,149.99,12/23/19 14:38,"696 Meadow St, Dallas, TX 75001" -307566,AA Batteries (4-pack),2,3.84,12/05/19 22:23,"974 Walnut St, San Francisco, CA 94016" -307567,USB-C Charging Cable,1,11.95,12/11/19 20:06,"854 Main St, Seattle, WA 98101" -307568,AAA Batteries (4-pack),2,2.99,12/16/19 11:56,"683 5th St, New York City, NY 10001" -307569,Lightning Charging Cable,1,14.95,12/02/19 12:24,"153 14th St, Seattle, WA 98101" -307570,34in Ultrawide Monitor,1,379.99,12/15/19 13:51,"809 8th St, Dallas, TX 75001" -307571,Wired Headphones,1,11.99,12/13/19 15:59,"433 11th St, Atlanta, GA 30301" -307572,Lightning Charging Cable,1,14.95,12/22/19 18:59,"635 10th St, San Francisco, CA 94016" -307573,AAA Batteries (4-pack),1,2.99,12/17/19 17:31,"744 South St, Seattle, WA 98101" -307574,AA Batteries (4-pack),1,3.84,12/07/19 09:25,"725 Church St, Los Angeles, CA 90001" -,,,,, -307575,AA Batteries (4-pack),1,3.84,12/12/19 12:31,"101 Lake St, Atlanta, GA 30301" -307576,AAA Batteries (4-pack),1,2.99,12/31/19 22:38,"586 Walnut St, Los Angeles, CA 90001" -307577,27in FHD Monitor,1,149.99,12/19/19 09:14,"103 Park St, San Francisco, CA 94016" -307578,20in Monitor,1,109.99,12/28/19 22:52,"564 12th St, Los Angeles, CA 90001" -307579,AAA Batteries (4-pack),1,2.99,12/16/19 23:08,"143 Center St, San Francisco, CA 94016" -307580,AAA Batteries (4-pack),3,2.99,12/10/19 22:27,"821 Elm St, San Francisco, CA 94016" -307581,Apple Airpods Headphones,1,150,12/31/19 18:15,"627 Forest St, San Francisco, CA 94016" -307582,AA Batteries (4-pack),1,3.84,12/09/19 19:40,"324 Hickory St, New York City, NY 10001" -307583,Lightning Charging Cable,1,14.95,12/26/19 12:36,"304 1st St, Atlanta, GA 30301" -307584,USB-C Charging Cable,1,11.95,12/16/19 18:07,"627 Maple St, Seattle, WA 98101" -307585,Wired Headphones,1,11.99,12/31/19 11:25,"250 Wilson St, Dallas, TX 75001" -307586,Bose SoundSport Headphones,1,99.99,12/04/19 06:09,"655 Lake St, Portland, ME 04101" -307587,AA Batteries (4-pack),2,3.84,12/19/19 18:21,"31 4th St, Seattle, WA 98101" -307588,AA Batteries (4-pack),1,3.84,12/05/19 18:17,"641 Walnut St, Atlanta, GA 30301" -307589,Lightning Charging Cable,1,14.95,12/09/19 14:21,"361 Chestnut St, Dallas, TX 75001" -307590,AAA Batteries (4-pack),2,2.99,12/11/19 12:58,"451 Meadow St, Seattle, WA 98101" -307591,27in 4K Gaming Monitor,1,389.99,12/26/19 08:00,"252 1st St, New York City, NY 10001" -307592,USB-C Charging Cable,1,11.95,12/04/19 14:04,"219 Forest St, New York City, NY 10001" -307593,ThinkPad Laptop,1,999.99,12/13/19 02:25,"96 12th St, Atlanta, GA 30301" -307594,Bose SoundSport Headphones,1,99.99,12/15/19 18:55,"232 11th St, Austin, TX 73301" -307595,Bose SoundSport Headphones,1,99.99,12/25/19 23:12,"836 Ridge St, New York City, NY 10001" -307596,Wired Headphones,1,11.99,12/21/19 15:11,"293 Meadow St, Dallas, TX 75001" -307597,27in FHD Monitor,1,149.99,12/08/19 12:46,"200 Spruce St, Portland, OR 97035" -307598,27in FHD Monitor,1,149.99,12/13/19 16:55,"136 Willow St, New York City, NY 10001" -307598,AA Batteries (4-pack),1,3.84,12/13/19 16:55,"136 Willow St, New York City, NY 10001" -307599,Apple Airpods Headphones,1,150,12/11/19 22:48,"654 Hickory St, Los Angeles, CA 90001" -307600,Lightning Charging Cable,1,14.95,12/11/19 12:51,"561 Adams St, San Francisco, CA 94016" -307601,Wired Headphones,1,11.99,12/27/19 11:30,"640 Cedar St, Los Angeles, CA 90001" -307602,AA Batteries (4-pack),1,3.84,12/17/19 23:02,"741 Adams St, Dallas, TX 75001" -307603,27in 4K Gaming Monitor,1,389.99,12/27/19 11:27,"490 Sunset St, Seattle, WA 98101" -307604,USB-C Charging Cable,1,11.95,12/27/19 15:16,"48 Main St, San Francisco, CA 94016" -307605,AA Batteries (4-pack),1,3.84,12/24/19 21:21,"106 4th St, Los Angeles, CA 90001" -307606,Lightning Charging Cable,1,14.95,12/03/19 14:56,"437 Washington St, New York City, NY 10001" -307607,Google Phone,1,600,12/15/19 12:38,"101 Pine St, Seattle, WA 98101" -307608,USB-C Charging Cable,1,11.95,12/12/19 23:03,"668 Lakeview St, San Francisco, CA 94016" -307609,Apple Airpods Headphones,1,150,12/09/19 17:45,"571 2nd St, San Francisco, CA 94016" -307610,Wired Headphones,1,11.99,12/07/19 13:32,"716 South St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -307611,USB-C Charging Cable,1,11.95,12/08/19 13:14,"521 2nd St, New York City, NY 10001" -307612,Wired Headphones,1,11.99,12/17/19 13:59,"417 Spruce St, Boston, MA 02215" -307613,Wired Headphones,1,11.99,12/15/19 19:16,"750 Center St, Boston, MA 02215" -307614,Lightning Charging Cable,1,14.95,12/03/19 19:49,"842 Highland St, San Francisco, CA 94016" -307615,AAA Batteries (4-pack),1,2.99,12/23/19 23:29,"651 Park St, San Francisco, CA 94016" -307616,AAA Batteries (4-pack),1,2.99,12/28/19 06:27,"748 Spruce St, San Francisco, CA 94016" -307617,AAA Batteries (4-pack),1,2.99,12/30/19 13:09,"539 13th St, Boston, MA 02215" -307618,USB-C Charging Cable,1,11.95,12/28/19 07:34,"542 7th St, San Francisco, CA 94016" -307619,Wired Headphones,1,11.99,12/02/19 16:01,"708 Madison St, Atlanta, GA 30301" -307620,Lightning Charging Cable,2,14.95,12/23/19 18:03,"970 Highland St, Boston, MA 02215" -307621,Apple Airpods Headphones,1,150,12/02/19 21:04,"284 Wilson St, Atlanta, GA 30301" -307622,Lightning Charging Cable,1,14.95,12/15/19 08:32,"327 Wilson St, San Francisco, CA 94016" -307623,Lightning Charging Cable,2,14.95,12/09/19 21:39,"151 10th St, Seattle, WA 98101" -307624,Apple Airpods Headphones,1,150,12/29/19 01:00,"786 Chestnut St, Boston, MA 02215" -307625,34in Ultrawide Monitor,1,379.99,12/06/19 17:42,"692 Highland St, Austin, TX 73301" -307626,Apple Airpods Headphones,1,150,12/10/19 17:23,"388 1st St, Austin, TX 73301" -307627,Lightning Charging Cable,1,14.95,12/12/19 22:13,"64 Jefferson St, Los Angeles, CA 90001" -307628,Flatscreen TV,1,300,12/30/19 13:12,"122 Maple St, Portland, ME 04101" -307629,ThinkPad Laptop,1,999.99,12/31/19 14:47,"714 6th St, Dallas, TX 75001" -307630,USB-C Charging Cable,1,11.95,12/25/19 14:51,"96 Highland St, Seattle, WA 98101" -307631,ThinkPad Laptop,1,999.99,12/28/19 02:05,"402 1st St, Seattle, WA 98101" -307632,USB-C Charging Cable,1,11.95,12/14/19 00:20,"138 Chestnut St, Seattle, WA 98101" -307633,27in 4K Gaming Monitor,1,389.99,12/19/19 14:14,"235 Ridge St, Dallas, TX 75001" -307634,Bose SoundSport Headphones,1,99.99,12/29/19 13:32,"141 Dogwood St, Portland, OR 97035" -307635,USB-C Charging Cable,1,11.95,12/17/19 23:38,"257 9th St, Portland, OR 97035" -307636,USB-C Charging Cable,1,11.95,12/04/19 23:20,"511 North St, Dallas, TX 75001" -307637,Lightning Charging Cable,1,14.95,12/06/19 19:46,"442 Willow St, Dallas, TX 75001" -307638,34in Ultrawide Monitor,1,379.99,12/13/19 15:15,"238 11th St, Los Angeles, CA 90001" -307639,Macbook Pro Laptop,1,1700,12/05/19 09:27,"133 7th St, San Francisco, CA 94016" -307640,AAA Batteries (4-pack),3,2.99,12/05/19 06:23,"723 Main St, Seattle, WA 98101" -307641,Lightning Charging Cable,1,14.95,12/31/19 13:57,"480 Johnson St, San Francisco, CA 94016" -307642,Macbook Pro Laptop,1,1700,12/21/19 09:16,"599 West St, Dallas, TX 75001" -307643,ThinkPad Laptop,1,999.99,12/17/19 10:48,"460 4th St, Los Angeles, CA 90001" -307644,AAA Batteries (4-pack),1,2.99,12/04/19 14:09,"915 Main St, San Francisco, CA 94016" -307645,Bose SoundSport Headphones,1,99.99,12/06/19 14:45,"416 Center St, Boston, MA 02215" -307646,Bose SoundSport Headphones,1,99.99,12/02/19 12:45,"750 13th St, Los Angeles, CA 90001" -307647,LG Washing Machine,1,600.0,12/23/19 21:08,"159 Lincoln St, New York City, NY 10001" -307648,20in Monitor,1,109.99,12/21/19 09:51,"870 Chestnut St, San Francisco, CA 94016" -307649,Apple Airpods Headphones,1,150,12/30/19 15:36,"484 Ridge St, San Francisco, CA 94016" -307650,20in Monitor,1,109.99,12/02/19 20:15,"871 6th St, Atlanta, GA 30301" -307651,USB-C Charging Cable,2,11.95,12/24/19 13:58,"813 Dogwood St, San Francisco, CA 94016" -307652,AAA Batteries (4-pack),1,2.99,12/05/19 11:32,"760 Church St, Boston, MA 02215" -307653,AAA Batteries (4-pack),1,2.99,12/22/19 19:10,"895 Elm St, Portland, OR 97035" -307654,Bose SoundSport Headphones,1,99.99,12/26/19 08:08,"396 1st St, San Francisco, CA 94016" -,,,,, -307655,Wired Headphones,1,11.99,12/09/19 13:18,"275 8th St, Seattle, WA 98101" -307656,AA Batteries (4-pack),2,3.84,12/06/19 21:22,"862 14th St, Los Angeles, CA 90001" -307657,AAA Batteries (4-pack),1,2.99,12/21/19 05:09,"73 South St, San Francisco, CA 94016" -307658,USB-C Charging Cable,1,11.95,12/19/19 07:59,"275 Sunset St, San Francisco, CA 94016" -307659,AAA Batteries (4-pack),1,2.99,12/03/19 17:45,"484 Chestnut St, San Francisco, CA 94016" -307660,Apple Airpods Headphones,1,150,12/23/19 18:00,"304 8th St, Portland, OR 97035" -307661,Wired Headphones,1,11.99,12/18/19 18:08,"572 West St, New York City, NY 10001" -307662,27in FHD Monitor,1,149.99,12/16/19 14:13,"65 10th St, Los Angeles, CA 90001" -307663,AAA Batteries (4-pack),2,2.99,12/13/19 09:57,"462 Willow St, San Francisco, CA 94016" -307664,27in 4K Gaming Monitor,1,389.99,12/12/19 13:43,"669 8th St, Boston, MA 02215" -307665,27in 4K Gaming Monitor,1,389.99,12/25/19 20:14,"126 Dogwood St, New York City, NY 10001" -307666,Apple Airpods Headphones,1,150,12/22/19 15:46,"952 Sunset St, New York City, NY 10001" -307667,Apple Airpods Headphones,1,150,12/16/19 21:19,"967 Highland St, Dallas, TX 75001" -307668,USB-C Charging Cable,1,11.95,12/01/19 17:32,"140 Forest St, Seattle, WA 98101" -307669,27in FHD Monitor,1,149.99,12/19/19 00:07,"455 Main St, Los Angeles, CA 90001" -307670,20in Monitor,1,109.99,12/28/19 11:04,"912 Cherry St, Boston, MA 02215" -307671,Bose SoundSport Headphones,1,99.99,12/01/19 11:34,"59 6th St, Atlanta, GA 30301" -307672,Wired Headphones,1,11.99,12/14/19 18:57,"148 West St, San Francisco, CA 94016" -307673,Bose SoundSport Headphones,1,99.99,12/08/19 21:20,"528 1st St, Austin, TX 73301" -307674,AA Batteries (4-pack),1,3.84,12/19/19 09:54,"44 Sunset St, Seattle, WA 98101" -307675,USB-C Charging Cable,1,11.95,12/11/19 10:46,"237 12th St, San Francisco, CA 94016" -307676,Macbook Pro Laptop,1,1700,12/10/19 11:27,"985 Jackson St, Boston, MA 02215" -307677,Apple Airpods Headphones,1,150,12/10/19 20:23,"110 Jackson St, Los Angeles, CA 90001" -307678,Bose SoundSport Headphones,1,99.99,12/11/19 21:36,"848 Sunset St, New York City, NY 10001" -307679,Flatscreen TV,1,300,12/31/19 12:49,"578 6th St, Dallas, TX 75001" -307680,Lightning Charging Cable,1,14.95,12/14/19 13:44,"347 14th St, Los Angeles, CA 90001" -307681,Macbook Pro Laptop,1,1700,12/26/19 16:50,"656 Cedar St, Seattle, WA 98101" -307682,AAA Batteries (4-pack),2,2.99,12/29/19 12:06,"352 13th St, Boston, MA 02215" -307683,AAA Batteries (4-pack),1,2.99,12/10/19 11:46,"172 West St, New York City, NY 10001" -307684,Wired Headphones,1,11.99,12/31/19 15:33,"722 12th St, Boston, MA 02215" -307685,iPhone,1,700,12/17/19 17:06,"992 10th St, New York City, NY 10001" -307686,USB-C Charging Cable,1,11.95,12/25/19 12:46,"901 Walnut St, San Francisco, CA 94016" -307687,Lightning Charging Cable,1,14.95,12/03/19 09:22,"684 Madison St, Los Angeles, CA 90001" -307688,AAA Batteries (4-pack),1,2.99,12/05/19 13:03,"975 10th St, Seattle, WA 98101" -307689,USB-C Charging Cable,1,11.95,12/21/19 15:01,"377 1st St, Boston, MA 02215" -307690,AAA Batteries (4-pack),1,2.99,12/16/19 13:38,"693 1st St, San Francisco, CA 94016" -307691,AA Batteries (4-pack),1,3.84,12/28/19 18:53,"590 Wilson St, Seattle, WA 98101" -307692,Lightning Charging Cable,1,14.95,12/17/19 17:28,"863 Ridge St, New York City, NY 10001" -307693,Wired Headphones,1,11.99,12/02/19 16:56,"504 Lincoln St, San Francisco, CA 94016" -307694,Apple Airpods Headphones,1,150,12/15/19 23:58,"774 Hickory St, Seattle, WA 98101" -307695,AA Batteries (4-pack),1,3.84,12/25/19 16:25,"917 5th St, San Francisco, CA 94016" -307696,AAA Batteries (4-pack),1,2.99,12/21/19 11:56,"833 Highland St, Seattle, WA 98101" -307697,Apple Airpods Headphones,1,150,12/09/19 14:28,"881 6th St, Dallas, TX 75001" -307698,AAA Batteries (4-pack),1,2.99,12/26/19 12:52,"808 Willow St, San Francisco, CA 94016" -307698,AAA Batteries (4-pack),5,2.99,12/26/19 12:52,"808 Willow St, San Francisco, CA 94016" -307699,USB-C Charging Cable,1,11.95,12/17/19 17:45,"308 Church St, New York City, NY 10001" -307700,AA Batteries (4-pack),1,3.84,12/18/19 08:44,"586 Washington St, San Francisco, CA 94016" -307701,Wired Headphones,1,11.99,12/26/19 22:05,"546 Hill St, Dallas, TX 75001" -307702,AAA Batteries (4-pack),1,2.99,12/23/19 22:56,"949 11th St, Los Angeles, CA 90001" -307703,AA Batteries (4-pack),1,3.84,12/09/19 23:34,"842 Cedar St, Austin, TX 73301" -307704,Lightning Charging Cable,1,14.95,12/24/19 01:03,"871 Walnut St, Portland, OR 97035" -307705,AA Batteries (4-pack),2,3.84,12/29/19 21:19,"594 Highland St, San Francisco, CA 94016" -307706,Lightning Charging Cable,1,14.95,12/29/19 14:07,"745 Hill St, Seattle, WA 98101" -307707,27in FHD Monitor,1,149.99,12/05/19 17:07,"745 Walnut St, Los Angeles, CA 90001" -307708,AAA Batteries (4-pack),2,2.99,12/05/19 09:21,"994 Sunset St, Los Angeles, CA 90001" -307709,USB-C Charging Cable,1,11.95,12/07/19 13:05,"463 Washington St, New York City, NY 10001" -307710,Vareebadd Phone,1,400,12/02/19 11:15,"330 West St, New York City, NY 10001" -307711,Lightning Charging Cable,1,14.95,12/20/19 02:09,"311 1st St, New York City, NY 10001" -307712,Lightning Charging Cable,1,14.95,12/24/19 20:48,"114 Church St, Boston, MA 02215" -307713,Wired Headphones,1,11.99,12/26/19 21:08,"73 2nd St, Boston, MA 02215" -307714,Bose SoundSport Headphones,1,99.99,12/15/19 13:39,"865 West St, New York City, NY 10001" -307715,Apple Airpods Headphones,1,150,12/12/19 13:12,"965 11th St, New York City, NY 10001" -307716,20in Monitor,1,109.99,12/20/19 20:49,"377 Hill St, San Francisco, CA 94016" -307717,USB-C Charging Cable,1,11.95,12/10/19 13:10,"119 9th St, Seattle, WA 98101" -307718,Macbook Pro Laptop,1,1700,12/06/19 21:21,"376 West St, Dallas, TX 75001" -307719,Apple Airpods Headphones,1,150,12/12/19 14:10,"512 13th St, Dallas, TX 75001" -307720,Lightning Charging Cable,1,14.95,12/05/19 10:54,"498 7th St, San Francisco, CA 94016" -307721,27in FHD Monitor,1,149.99,12/28/19 21:58,"540 7th St, San Francisco, CA 94016" -307722,AA Batteries (4-pack),1,3.84,12/23/19 08:44,"695 Maple St, Seattle, WA 98101" -307723,27in FHD Monitor,1,149.99,12/02/19 15:03,"840 Wilson St, Los Angeles, CA 90001" -307724,AA Batteries (4-pack),2,3.84,12/13/19 12:21,"520 12th St, Atlanta, GA 30301" -307725,Macbook Pro Laptop,1,1700,12/14/19 07:59,"826 2nd St, New York City, NY 10001" -307726,Lightning Charging Cable,1,14.95,12/31/19 20:16,"585 Main St, Boston, MA 02215" -307727,USB-C Charging Cable,1,11.95,12/03/19 10:24,"160 12th St, Los Angeles, CA 90001" -307728,34in Ultrawide Monitor,1,379.99,12/11/19 08:47,"651 8th St, New York City, NY 10001" -307729,Flatscreen TV,1,300,12/11/19 01:01,"546 Elm St, Austin, TX 73301" -307730,Apple Airpods Headphones,1,150,12/15/19 09:00,"253 West St, Dallas, TX 75001" -307731,AA Batteries (4-pack),1,3.84,12/11/19 19:01,"367 Adams St, San Francisco, CA 94016" -307732,34in Ultrawide Monitor,1,379.99,12/20/19 00:46,"963 Lake St, San Francisco, CA 94016" -307733,AA Batteries (4-pack),1,3.84,12/28/19 00:18,"815 Lake St, Los Angeles, CA 90001" -307734,AAA Batteries (4-pack),1,2.99,12/07/19 12:37,"558 Main St, Los Angeles, CA 90001" -307735,USB-C Charging Cable,2,11.95,12/19/19 15:46,"501 Madison St, Austin, TX 73301" -307736,Wired Headphones,1,11.99,12/29/19 07:10,"950 Lincoln St, New York City, NY 10001" -307737,Apple Airpods Headphones,1,150,12/07/19 19:29,"248 Cherry St, San Francisco, CA 94016" -307738,Lightning Charging Cable,1,14.95,12/02/19 09:04,"773 Cedar St, Atlanta, GA 30301" -307739,ThinkPad Laptop,1,999.99,12/18/19 15:30,"283 8th St, Los Angeles, CA 90001" -307740,27in 4K Gaming Monitor,1,389.99,12/12/19 20:14,"197 Johnson St, Boston, MA 02215" -307740,Lightning Charging Cable,1,14.95,12/12/19 20:14,"197 Johnson St, Boston, MA 02215" -307741,USB-C Charging Cable,1,11.95,12/24/19 19:46,"269 9th St, San Francisco, CA 94016" -307742,Apple Airpods Headphones,1,150,12/16/19 22:13,"566 Cherry St, San Francisco, CA 94016" -307743,USB-C Charging Cable,1,11.95,12/11/19 21:39,"518 Spruce St, Seattle, WA 98101" -307744,AA Batteries (4-pack),2,3.84,12/15/19 20:39,"114 North St, Atlanta, GA 30301" -307744,iPhone,1,700,12/15/19 20:39,"114 North St, Atlanta, GA 30301" -307745,AAA Batteries (4-pack),1,2.99,12/25/19 19:20,"77 River St, Los Angeles, CA 90001" -307746,Wired Headphones,1,11.99,12/29/19 14:03,"90 Lakeview St, New York City, NY 10001" -307747,Lightning Charging Cable,1,14.95,12/23/19 12:21,"689 Highland St, Dallas, TX 75001" -307748,27in FHD Monitor,1,149.99,12/05/19 10:36,"745 12th St, San Francisco, CA 94016" -307749,Lightning Charging Cable,1,14.95,12/30/19 09:54,"990 Hill St, Seattle, WA 98101" -307749,Bose SoundSport Headphones,1,99.99,12/30/19 09:54,"990 Hill St, Seattle, WA 98101" -307750,USB-C Charging Cable,2,11.95,12/06/19 10:43,"956 Maple St, San Francisco, CA 94016" -307751,Bose SoundSport Headphones,1,99.99,12/27/19 09:36,"828 South St, Dallas, TX 75001" -307752,27in FHD Monitor,1,149.99,12/25/19 18:26,"432 Church St, Portland, OR 97035" -307753,ThinkPad Laptop,1,999.99,12/05/19 17:42,"876 Madison St, Austin, TX 73301" -307754,AAA Batteries (4-pack),1,2.99,12/22/19 20:25,"249 Sunset St, New York City, NY 10001" -307755,AAA Batteries (4-pack),3,2.99,12/30/19 08:34,"83 Walnut St, San Francisco, CA 94016" -307756,Apple Airpods Headphones,1,150,12/01/19 16:06,"942 Johnson St, San Francisco, CA 94016" -307757,USB-C Charging Cable,1,11.95,12/25/19 13:08,"584 2nd St, San Francisco, CA 94016" -307758,Wired Headphones,1,11.99,12/31/19 16:19,"459 Meadow St, Dallas, TX 75001" -307759,Wired Headphones,1,11.99,12/15/19 20:08,"364 11th St, Dallas, TX 75001" -307760,Bose SoundSport Headphones,1,99.99,12/13/19 14:52,"379 River St, Boston, MA 02215" -307761,USB-C Charging Cable,1,11.95,12/28/19 10:18,"215 4th St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -307762,Bose SoundSport Headphones,1,99.99,12/26/19 16:37,"855 Jefferson St, San Francisco, CA 94016" -307763,34in Ultrawide Monitor,1,379.99,12/11/19 14:12,"251 Wilson St, San Francisco, CA 94016" -307764,20in Monitor,1,109.99,12/15/19 21:14,"330 4th St, San Francisco, CA 94016" -307765,20in Monitor,1,109.99,12/27/19 14:40,"588 Chestnut St, Austin, TX 73301" -307766,AA Batteries (4-pack),1,3.84,12/13/19 23:00,"329 Madison St, Boston, MA 02215" -307766,AAA Batteries (4-pack),2,2.99,12/13/19 23:00,"329 Madison St, Boston, MA 02215" -307767,Google Phone,1,600,12/17/19 09:33,"89 Lakeview St, San Francisco, CA 94016" -307768,AA Batteries (4-pack),1,3.84,12/04/19 23:04,"828 11th St, Seattle, WA 98101" -307769,AAA Batteries (4-pack),3,2.99,12/17/19 18:05,"604 4th St, San Francisco, CA 94016" -307770,Apple Airpods Headphones,1,150,12/08/19 17:21,"864 1st St, Austin, TX 73301" -307771,USB-C Charging Cable,1,11.95,12/10/19 13:59,"470 Pine St, New York City, NY 10001" -307772,20in Monitor,1,109.99,12/28/19 22:57,"229 Willow St, Boston, MA 02215" -307773,Vareebadd Phone,1,400,12/04/19 12:56,"80 West St, Seattle, WA 98101" -307774,Google Phone,1,600,12/14/19 20:05,"470 Highland St, New York City, NY 10001" -307775,AAA Batteries (4-pack),1,2.99,12/05/19 16:36,"908 Lake St, San Francisco, CA 94016" -307776,Apple Airpods Headphones,1,150,12/14/19 10:27,"18 5th St, San Francisco, CA 94016" -307777,Flatscreen TV,1,300,12/28/19 22:26,"672 Sunset St, Los Angeles, CA 90001" -307778,AAA Batteries (4-pack),1,2.99,12/12/19 17:14,"994 Chestnut St, Boston, MA 02215" -307779,Bose SoundSport Headphones,1,99.99,12/20/19 16:43,"212 Forest St, Atlanta, GA 30301" -307780,ThinkPad Laptop,1,999.99,12/29/19 07:12,"10 Pine St, San Francisco, CA 94016" -307781,Wired Headphones,1,11.99,12/06/19 17:07,"705 Elm St, Los Angeles, CA 90001" -307782,Bose SoundSport Headphones,1,99.99,12/21/19 10:57,"303 8th St, Seattle, WA 98101" -307783,Lightning Charging Cable,1,14.95,12/14/19 14:04,"781 Center St, New York City, NY 10001" -307784,AA Batteries (4-pack),1,3.84,12/16/19 15:14,"689 Dogwood St, Atlanta, GA 30301" -307785,Lightning Charging Cable,1,14.95,12/04/19 08:54,"681 Wilson St, Seattle, WA 98101" -307786,USB-C Charging Cable,1,11.95,12/03/19 19:07,"749 Cherry St, Austin, TX 73301" -307787,USB-C Charging Cable,1,11.95,12/19/19 20:02,"618 Johnson St, Dallas, TX 75001" -307788,20in Monitor,1,109.99,12/04/19 17:25,"137 Lakeview St, Boston, MA 02215" -307789,AAA Batteries (4-pack),1,2.99,12/12/19 12:16,"608 Willow St, Portland, ME 04101" -307790,AA Batteries (4-pack),2,3.84,12/08/19 15:45,"203 Sunset St, Boston, MA 02215" -307791,Bose SoundSport Headphones,1,99.99,12/25/19 12:38,"291 Madison St, Portland, OR 97035" -307792,AAA Batteries (4-pack),1,2.99,12/09/19 15:14,"417 Elm St, Boston, MA 02215" -307793,Flatscreen TV,1,300,12/25/19 09:50,"656 11th St, Portland, OR 97035" -307794,34in Ultrawide Monitor,1,379.99,12/02/19 20:49,"534 Ridge St, Atlanta, GA 30301" -307795,Apple Airpods Headphones,1,150,12/29/19 22:15,"994 Cedar St, New York City, NY 10001" -307796,27in 4K Gaming Monitor,1,389.99,12/29/19 00:18,"2 Washington St, San Francisco, CA 94016" -307797,Apple Airpods Headphones,1,150,12/02/19 21:36,"200 11th St, Atlanta, GA 30301" -307798,Wired Headphones,1,11.99,12/19/19 14:47,"26 Hill St, San Francisco, CA 94016" -307799,ThinkPad Laptop,1,999.99,12/31/19 22:52,"276 Jackson St, Seattle, WA 98101" -307800,Lightning Charging Cable,1,14.95,12/11/19 20:42,"941 Cherry St, San Francisco, CA 94016" -307801,Wired Headphones,1,11.99,12/07/19 19:30,"843 Maple St, New York City, NY 10001" -307802,Google Phone,1,600,12/28/19 14:26,"796 Ridge St, Atlanta, GA 30301" -307802,USB-C Charging Cable,1,11.95,12/28/19 14:26,"796 Ridge St, Atlanta, GA 30301" -307802,Wired Headphones,1,11.99,12/28/19 14:26,"796 Ridge St, Atlanta, GA 30301" -307803,Bose SoundSport Headphones,1,99.99,12/18/19 10:34,"941 Cedar St, Los Angeles, CA 90001" -307804,Lightning Charging Cable,1,14.95,12/30/19 09:40,"544 Jefferson St, San Francisco, CA 94016" -307805,AAA Batteries (4-pack),1,2.99,12/29/19 18:46,"597 14th St, Portland, OR 97035" -307806,USB-C Charging Cable,1,11.95,12/20/19 14:27,"449 Wilson St, Los Angeles, CA 90001" -307807,AA Batteries (4-pack),1,3.84,12/18/19 10:10,"587 5th St, San Francisco, CA 94016" -307808,LG Washing Machine,1,600.0,12/14/19 16:27,"85 1st St, Atlanta, GA 30301" -307809,27in FHD Monitor,1,149.99,12/13/19 19:05,"97 Walnut St, Los Angeles, CA 90001" -307810,27in FHD Monitor,1,149.99,12/30/19 20:20,"728 Jackson St, Seattle, WA 98101" -307811,Lightning Charging Cable,1,14.95,12/18/19 19:01,"132 4th St, Portland, ME 04101" -307812,AAA Batteries (4-pack),1,2.99,12/20/19 10:30,"776 River St, Boston, MA 02215" -307813,34in Ultrawide Monitor,1,379.99,12/07/19 14:59,"859 12th St, San Francisco, CA 94016" -307813,Lightning Charging Cable,1,14.95,12/07/19 14:59,"859 12th St, San Francisco, CA 94016" -307814,Vareebadd Phone,1,400,12/04/19 15:19,"183 7th St, Portland, OR 97035" -307815,Bose SoundSport Headphones,1,99.99,12/15/19 17:24,"504 Park St, Seattle, WA 98101" -307816,USB-C Charging Cable,1,11.95,12/12/19 22:46,"321 Meadow St, Los Angeles, CA 90001" -307817,Macbook Pro Laptop,1,1700,12/09/19 17:44,"968 Maple St, Portland, OR 97035" -307818,34in Ultrawide Monitor,1,379.99,12/28/19 23:30,"401 4th St, Seattle, WA 98101" -307819,Bose SoundSport Headphones,1,99.99,12/05/19 06:20,"973 Hill St, Los Angeles, CA 90001" -307820,AA Batteries (4-pack),1,3.84,12/18/19 20:18,"982 Maple St, Boston, MA 02215" -307821,Wired Headphones,1,11.99,12/08/19 11:10,"827 Meadow St, Dallas, TX 75001" -307822,AA Batteries (4-pack),1,3.84,12/04/19 09:39,"474 Chestnut St, Seattle, WA 98101" -307823,Bose SoundSport Headphones,1,99.99,12/16/19 23:36,"580 10th St, San Francisco, CA 94016" -307824,Wired Headphones,1,11.99,12/13/19 15:28,"489 12th St, San Francisco, CA 94016" -307825,Apple Airpods Headphones,1,150,12/20/19 19:01,"195 8th St, Dallas, TX 75001" -307826,Apple Airpods Headphones,1,150,12/27/19 21:45,"930 14th St, New York City, NY 10001" -307827,Apple Airpods Headphones,2,150,12/05/19 13:37,"838 1st St, Austin, TX 73301" -307828,AAA Batteries (4-pack),2,2.99,12/30/19 00:33,"732 Maple St, Seattle, WA 98101" -307829,20in Monitor,1,109.99,12/06/19 11:02,"103 Dogwood St, New York City, NY 10001" -307830,Bose SoundSport Headphones,1,99.99,12/29/19 13:59,"946 West St, Los Angeles, CA 90001" -307831,Wired Headphones,1,11.99,12/15/19 20:37,"806 Johnson St, San Francisco, CA 94016" -307832,USB-C Charging Cable,1,11.95,12/28/19 04:53,"158 13th St, Los Angeles, CA 90001" -307833,Flatscreen TV,1,300,12/03/19 23:37,"601 Willow St, Seattle, WA 98101" -307834,34in Ultrawide Monitor,1,379.99,12/09/19 18:06,"701 Washington St, New York City, NY 10001" -307835,AA Batteries (4-pack),2,3.84,12/10/19 16:20,"64 Jefferson St, New York City, NY 10001" -307836,AAA Batteries (4-pack),3,2.99,12/13/19 07:55,"470 Walnut St, Atlanta, GA 30301" -307837,Apple Airpods Headphones,1,150,12/09/19 03:32,"565 West St, Atlanta, GA 30301" -307838,AA Batteries (4-pack),2,3.84,12/20/19 19:20,"499 Willow St, Boston, MA 02215" -307839,20in Monitor,1,109.99,12/26/19 03:33,"85 13th St, San Francisco, CA 94016" -307840,27in FHD Monitor,1,149.99,12/16/19 17:55,"945 Chestnut St, Atlanta, GA 30301" -307841,AA Batteries (4-pack),1,3.84,12/17/19 16:56,"831 Meadow St, Austin, TX 73301" -307842,Lightning Charging Cable,1,14.95,12/19/19 08:22,"989 Madison St, Dallas, TX 75001" -307843,34in Ultrawide Monitor,1,379.99,12/11/19 07:44,"910 Elm St, New York City, NY 10001" -307844,Wired Headphones,1,11.99,12/24/19 13:33,"467 5th St, San Francisco, CA 94016" -307845,27in FHD Monitor,1,149.99,12/06/19 03:51,"692 Dogwood St, Los Angeles, CA 90001" -307846,Apple Airpods Headphones,1,150,12/21/19 12:03,"377 Wilson St, Seattle, WA 98101" -307847,Flatscreen TV,1,300,12/05/19 09:19,"439 West St, Los Angeles, CA 90001" -307848,USB-C Charging Cable,1,11.95,12/15/19 01:04,"554 14th St, Portland, OR 97035" -307849,Bose SoundSport Headphones,1,99.99,12/28/19 14:10,"416 West St, Boston, MA 02215" -307849,Wired Headphones,1,11.99,12/28/19 14:10,"416 West St, Boston, MA 02215" -307850,27in FHD Monitor,1,149.99,12/17/19 19:47,"187 West St, San Francisco, CA 94016" -307851,Apple Airpods Headphones,1,150,12/17/19 15:31,"528 Washington St, New York City, NY 10001" -307852,Lightning Charging Cable,1,14.95,12/26/19 22:06,"677 Jackson St, New York City, NY 10001" -307853,AA Batteries (4-pack),1,3.84,12/18/19 18:54,"294 2nd St, Austin, TX 73301" -307854,Wired Headphones,1,11.99,12/29/19 13:48,"666 14th St, San Francisco, CA 94016" -307855,Apple Airpods Headphones,1,150,12/02/19 12:25,"175 4th St, Boston, MA 02215" -307856,Google Phone,1,600,12/16/19 10:39,"858 Elm St, Seattle, WA 98101" -307857,Google Phone,1,600,12/02/19 08:18,"514 Park St, Atlanta, GA 30301" -307858,Apple Airpods Headphones,1,150,12/07/19 22:31,"922 Sunset St, Dallas, TX 75001" -307859,USB-C Charging Cable,1,11.95,12/03/19 14:01,"463 Madison St, New York City, NY 10001" -307859,AAA Batteries (4-pack),2,2.99,12/03/19 14:01,"463 Madison St, New York City, NY 10001" -307860,20in Monitor,1,109.99,12/01/19 16:03,"198 Lakeview St, San Francisco, CA 94016" -307861,Lightning Charging Cable,1,14.95,12/29/19 13:01,"124 Cherry St, San Francisco, CA 94016" -307861,Lightning Charging Cable,1,14.95,12/29/19 13:01,"124 Cherry St, San Francisco, CA 94016" -307862,Apple Airpods Headphones,1,150,12/15/19 10:37,"484 Meadow St, New York City, NY 10001" -307863,ThinkPad Laptop,1,999.99,12/01/19 13:08,"218 Highland St, San Francisco, CA 94016" -307864,AAA Batteries (4-pack),3,2.99,12/29/19 12:46,"771 Jefferson St, New York City, NY 10001" -307865,AA Batteries (4-pack),3,3.84,12/23/19 11:45,"982 4th St, Seattle, WA 98101" -307866,Lightning Charging Cable,1,14.95,12/09/19 21:04,"206 9th St, Atlanta, GA 30301" -307867,Apple Airpods Headphones,1,150,12/02/19 21:10,"346 Hickory St, Los Angeles, CA 90001" -307868,Lightning Charging Cable,1,14.95,12/14/19 23:00,"621 Park St, New York City, NY 10001" -307869,USB-C Charging Cable,1,11.95,12/29/19 07:13,"711 Wilson St, Austin, TX 73301" -307870,AAA Batteries (4-pack),2,2.99,12/10/19 14:31,"549 Jefferson St, Portland, OR 97035" -307871,Bose SoundSport Headphones,1,99.99,12/06/19 11:51,"801 Lincoln St, Portland, OR 97035" -307872,AAA Batteries (4-pack),1,2.99,12/24/19 16:57,"630 6th St, Seattle, WA 98101" -307873,AAA Batteries (4-pack),1,2.99,12/31/19 15:19,"521 Cherry St, San Francisco, CA 94016" -307874,Lightning Charging Cable,1,14.95,12/06/19 13:01,"369 Church St, Los Angeles, CA 90001" -307875,Macbook Pro Laptop,1,1700,12/16/19 13:12,"872 Lincoln St, San Francisco, CA 94016" -307876,Lightning Charging Cable,1,14.95,12/25/19 11:11,"311 Chestnut St, Boston, MA 02215" -307877,34in Ultrawide Monitor,1,379.99,12/17/19 21:24,"125 Ridge St, Atlanta, GA 30301" -307878,27in FHD Monitor,1,149.99,12/30/19 22:18,"989 Jefferson St, San Francisco, CA 94016" -307879,USB-C Charging Cable,1,11.95,12/06/19 08:14,"488 Jackson St, Dallas, TX 75001" -307880,Bose SoundSport Headphones,1,99.99,12/16/19 20:50,"440 Ridge St, Portland, OR 97035" -307881,Macbook Pro Laptop,1,1700,12/25/19 22:34,"450 Wilson St, Seattle, WA 98101" -307882,Bose SoundSport Headphones,1,99.99,12/05/19 23:35,"840 North St, Portland, OR 97035" -307883,USB-C Charging Cable,1,11.95,12/13/19 12:07,"128 Chestnut St, Austin, TX 73301" -307884,AA Batteries (4-pack),1,3.84,12/14/19 11:17,"482 Park St, San Francisco, CA 94016" -307885,Apple Airpods Headphones,1,150,12/03/19 13:37,"667 1st St, San Francisco, CA 94016" -307886,Apple Airpods Headphones,1,150,12/24/19 14:40,"795 Elm St, Los Angeles, CA 90001" -307887,AA Batteries (4-pack),1,3.84,12/27/19 09:35,"931 Elm St, San Francisco, CA 94016" -307888,Apple Airpods Headphones,1,150,12/30/19 15:34,"963 Hill St, San Francisco, CA 94016" -307889,Wired Headphones,1,11.99,12/22/19 12:59,"618 Chestnut St, Atlanta, GA 30301" -307890,Lightning Charging Cable,1,14.95,01/01/20 02:06,"39 Pine St, New York City, NY 10001" -307891,Google Phone,1,600,12/20/19 09:44,"46 5th St, Dallas, TX 75001" -307892,USB-C Charging Cable,1,11.95,12/17/19 20:51,"104 Center St, Portland, OR 97035" -307893,20in Monitor,1,109.99,12/05/19 22:49,"661 Madison St, San Francisco, CA 94016" -307894,USB-C Charging Cable,1,11.95,12/05/19 15:54,"319 Ridge St, New York City, NY 10001" -307895,Google Phone,1,600,12/06/19 13:56,"457 Jackson St, Austin, TX 73301" -307896,Apple Airpods Headphones,1,150,12/05/19 18:26,"777 10th St, Los Angeles, CA 90001" -307897,AA Batteries (4-pack),1,3.84,12/06/19 14:23,"740 7th St, New York City, NY 10001" -307898,Google Phone,1,600,12/15/19 14:02,"324 Chestnut St, New York City, NY 10001" -307898,USB-C Charging Cable,1,11.95,12/15/19 14:02,"324 Chestnut St, New York City, NY 10001" -307899,Bose SoundSport Headphones,1,99.99,12/31/19 17:55,"965 2nd St, Los Angeles, CA 90001" -307900,Wired Headphones,1,11.99,12/30/19 10:19,"723 Hill St, Atlanta, GA 30301" -307901,USB-C Charging Cable,1,11.95,12/07/19 16:53,"830 Center St, San Francisco, CA 94016" -307902,Bose SoundSport Headphones,1,99.99,12/10/19 17:06,"480 Cedar St, Austin, TX 73301" -307903,Apple Airpods Headphones,1,150,12/31/19 20:41,"640 Wilson St, Seattle, WA 98101" -307904,Macbook Pro Laptop,1,1700,12/24/19 14:58,"159 Maple St, Seattle, WA 98101" -307905,20in Monitor,1,109.99,12/28/19 20:30,"374 Cedar St, Dallas, TX 75001" -307906,27in FHD Monitor,1,149.99,12/02/19 12:18,"670 12th St, Los Angeles, CA 90001" -307906,34in Ultrawide Monitor,1,379.99,12/02/19 12:18,"670 12th St, Los Angeles, CA 90001" -307907,Wired Headphones,1,11.99,12/02/19 11:18,"362 Walnut St, San Francisco, CA 94016" -307908,iPhone,1,700,12/13/19 08:22,"142 12th St, San Francisco, CA 94016" -307909,AAA Batteries (4-pack),1,2.99,12/03/19 10:53,"193 Hickory St, Portland, OR 97035" -307910,iPhone,1,700,12/06/19 11:42,"765 10th St, Seattle, WA 98101" -307911,AAA Batteries (4-pack),1,2.99,12/10/19 20:56,"197 6th St, New York City, NY 10001" -307912,27in FHD Monitor,1,149.99,12/07/19 16:12,"306 Highland St, Dallas, TX 75001" -307913,Lightning Charging Cable,1,14.95,12/27/19 19:45,"46 Pine St, New York City, NY 10001" -307914,AA Batteries (4-pack),1,3.84,12/15/19 19:16,"664 Main St, New York City, NY 10001" -307915,AA Batteries (4-pack),1,3.84,12/28/19 10:10,"138 Cedar St, San Francisco, CA 94016" -307916,27in 4K Gaming Monitor,1,389.99,12/25/19 10:49,"680 9th St, Portland, OR 97035" -307917,Wired Headphones,1,11.99,12/12/19 15:41,"714 Highland St, New York City, NY 10001" -307918,USB-C Charging Cable,1,11.95,12/04/19 13:44,"31 Lake St, Atlanta, GA 30301" -307919,AAA Batteries (4-pack),1,2.99,12/29/19 15:37,"921 13th St, New York City, NY 10001" -307920,AA Batteries (4-pack),1,3.84,12/20/19 12:49,"851 Sunset St, San Francisco, CA 94016" -307921,USB-C Charging Cable,2,11.95,12/12/19 11:55,"824 Church St, San Francisco, CA 94016" -307922,USB-C Charging Cable,1,11.95,12/15/19 14:36,"49 Johnson St, Boston, MA 02215" -307923,Lightning Charging Cable,1,14.95,12/07/19 07:56,"526 13th St, Los Angeles, CA 90001" -307923,Lightning Charging Cable,1,14.95,12/07/19 07:56,"526 13th St, Los Angeles, CA 90001" -307924,Bose SoundSport Headphones,1,99.99,12/17/19 09:27,"441 Lakeview St, San Francisco, CA 94016" -307925,Bose SoundSport Headphones,1,99.99,12/09/19 14:08,"928 7th St, San Francisco, CA 94016" -307926,iPhone,1,700,12/14/19 15:12,"494 2nd St, New York City, NY 10001" -307927,AA Batteries (4-pack),4,3.84,12/13/19 07:20,"559 Hill St, San Francisco, CA 94016" -307928,AA Batteries (4-pack),1,3.84,12/05/19 22:18,"992 North St, Los Angeles, CA 90001" -307929,Flatscreen TV,1,300,12/23/19 09:54,"946 Lincoln St, New York City, NY 10001" -307930,34in Ultrawide Monitor,1,379.99,12/11/19 13:20,"887 Jefferson St, Dallas, TX 75001" -307931,27in FHD Monitor,1,149.99,12/14/19 17:39,"918 Jefferson St, Portland, ME 04101" -307932,USB-C Charging Cable,1,11.95,12/25/19 19:26,"20 11th St, Austin, TX 73301" -307933,20in Monitor,1,109.99,12/05/19 19:07,"802 Maple St, Los Angeles, CA 90001" -307934,Google Phone,1,600,12/05/19 20:36,"820 Madison St, Atlanta, GA 30301" -307935,Lightning Charging Cable,1,14.95,12/14/19 16:28,"873 6th St, Los Angeles, CA 90001" -307936,AA Batteries (4-pack),2,3.84,12/15/19 07:49,"749 5th St, Boston, MA 02215" -307937,Flatscreen TV,1,300,12/19/19 19:37,"757 7th St, Portland, ME 04101" -307938,AA Batteries (4-pack),6,3.84,12/01/19 14:36,"421 13th St, Portland, OR 97035" -307939,iPhone,1,700,12/05/19 18:24,"753 Main St, Atlanta, GA 30301" -307940,USB-C Charging Cable,1,11.95,12/19/19 23:11,"593 Center St, Los Angeles, CA 90001" -307941,20in Monitor,1,109.99,12/27/19 17:11,"903 Adams St, San Francisco, CA 94016" -307942,USB-C Charging Cable,1,11.95,12/30/19 12:52,"59 West St, Los Angeles, CA 90001" -307943,Lightning Charging Cable,1,14.95,12/04/19 08:53,"900 5th St, San Francisco, CA 94016" -307944,Lightning Charging Cable,1,14.95,12/10/19 19:51,"270 South St, Portland, OR 97035" -307945,AA Batteries (4-pack),2,3.84,12/19/19 09:21,"856 Hickory St, San Francisco, CA 94016" -307946,27in FHD Monitor,1,149.99,12/27/19 23:48,"885 Ridge St, San Francisco, CA 94016" -307947,USB-C Charging Cable,1,11.95,12/02/19 13:20,"380 10th St, Boston, MA 02215" -307948,Apple Airpods Headphones,1,150,12/29/19 12:28,"335 Jackson St, Atlanta, GA 30301" -307949,AAA Batteries (4-pack),1,2.99,12/06/19 11:12,"477 14th St, Atlanta, GA 30301" -307950,ThinkPad Laptop,1,999.99,12/29/19 20:04,"524 Hickory St, New York City, NY 10001" -307951,Apple Airpods Headphones,1,150,12/29/19 21:46,"357 5th St, Austin, TX 73301" -307952,Bose SoundSport Headphones,1,99.99,12/06/19 13:11,"490 South St, Seattle, WA 98101" -307953,34in Ultrawide Monitor,1,379.99,12/04/19 13:32,"924 2nd St, Seattle, WA 98101" -307954,Bose SoundSport Headphones,1,99.99,12/23/19 18:23,"351 Lincoln St, Atlanta, GA 30301" -307954,AAA Batteries (4-pack),1,2.99,12/23/19 18:23,"351 Lincoln St, Atlanta, GA 30301" -307955,27in FHD Monitor,1,149.99,12/16/19 11:05,"944 Pine St, Boston, MA 02215" -307956,AAA Batteries (4-pack),1,2.99,12/28/19 06:03,"680 9th St, San Francisco, CA 94016" -307957,20in Monitor,1,109.99,12/06/19 16:26,"644 Adams St, Los Angeles, CA 90001" -307958,Apple Airpods Headphones,1,150,12/13/19 10:07,"953 Forest St, Seattle, WA 98101" -307959,AA Batteries (4-pack),1,3.84,12/15/19 11:15,"845 4th St, San Francisco, CA 94016" -307960,Wired Headphones,1,11.99,12/06/19 18:52,"366 4th St, New York City, NY 10001" -307961,Wired Headphones,1,11.99,12/20/19 16:21,"704 Sunset St, San Francisco, CA 94016" -307962,Lightning Charging Cable,1,14.95,12/30/19 16:33,"700 11th St, Seattle, WA 98101" -307963,34in Ultrawide Monitor,1,379.99,12/22/19 11:36,"41 8th St, Boston, MA 02215" -307964,Lightning Charging Cable,1,14.95,12/22/19 19:48,"770 Highland St, San Francisco, CA 94016" -307965,USB-C Charging Cable,1,11.95,12/05/19 20:13,"897 Jackson St, Portland, ME 04101" -307966,Bose SoundSport Headphones,1,99.99,12/24/19 18:09,"466 Highland St, Boston, MA 02215" -307967,Apple Airpods Headphones,1,150,12/23/19 14:42,"259 Hill St, Seattle, WA 98101" -307968,27in FHD Monitor,1,149.99,12/13/19 05:38,"507 8th St, Austin, TX 73301" -307969,AAA Batteries (4-pack),1,2.99,12/24/19 10:05,"543 Hickory St, Los Angeles, CA 90001" -307970,20in Monitor,1,109.99,12/30/19 11:52,"816 Hill St, Boston, MA 02215" -307971,ThinkPad Laptop,1,999.99,12/01/19 08:34,"284 South St, New York City, NY 10001" -307972,AA Batteries (4-pack),1,3.84,12/07/19 20:13,"803 North St, Atlanta, GA 30301" -307973,AAA Batteries (4-pack),1,2.99,12/22/19 21:36,"745 Lincoln St, New York City, NY 10001" -307974,Bose SoundSport Headphones,1,99.99,12/28/19 15:13,"488 South St, Boston, MA 02215" -307975,27in FHD Monitor,1,149.99,12/12/19 11:24,"103 6th St, Dallas, TX 75001" -307976,Lightning Charging Cable,1,14.95,12/26/19 22:30,"759 7th St, Los Angeles, CA 90001" -307977,Wired Headphones,1,11.99,12/07/19 13:40,"800 North St, San Francisco, CA 94016" -307978,AA Batteries (4-pack),1,3.84,12/01/19 11:36,"146 Highland St, Los Angeles, CA 90001" -307979,USB-C Charging Cable,1,11.95,12/08/19 01:02,"997 10th St, San Francisco, CA 94016" -307980,Vareebadd Phone,1,400,12/20/19 21:15,"354 1st St, Boston, MA 02215" -307981,20in Monitor,1,109.99,12/07/19 22:51,"195 Highland St, Portland, OR 97035" -307982,AAA Batteries (4-pack),2,2.99,12/15/19 13:21,"239 Park St, Seattle, WA 98101" -307983,AAA Batteries (4-pack),1,2.99,12/31/19 22:27,"89 Elm St, Seattle, WA 98101" -307984,AA Batteries (4-pack),1,3.84,12/12/19 20:14,"310 Lake St, Portland, OR 97035" -307985,27in 4K Gaming Monitor,1,389.99,12/15/19 16:08,"674 8th St, Dallas, TX 75001" -307986,Lightning Charging Cable,1,14.95,12/06/19 18:49,"803 River St, San Francisco, CA 94016" -307987,34in Ultrawide Monitor,1,379.99,12/29/19 18:01,"675 Cherry St, San Francisco, CA 94016" -307988,AAA Batteries (4-pack),2,2.99,12/19/19 09:00,"822 Cherry St, Boston, MA 02215" -307989,Google Phone,1,600,12/15/19 11:40,"883 Cherry St, San Francisco, CA 94016" -307990,AA Batteries (4-pack),1,3.84,12/30/19 21:33,"961 2nd St, Dallas, TX 75001" -307991,AAA Batteries (4-pack),3,2.99,12/06/19 16:21,"954 7th St, Los Angeles, CA 90001" -307992,27in 4K Gaming Monitor,1,389.99,12/09/19 17:15,"95 1st St, San Francisco, CA 94016" -307993,AA Batteries (4-pack),1,3.84,12/19/19 19:02,"947 5th St, New York City, NY 10001" -307994,AA Batteries (4-pack),1,3.84,12/19/19 10:49,"430 Pine St, New York City, NY 10001" -307995,27in FHD Monitor,1,149.99,12/30/19 19:53,"324 Wilson St, Portland, OR 97035" -307996,27in 4K Gaming Monitor,1,389.99,12/08/19 23:01,"932 12th St, San Francisco, CA 94016" -307997,Lightning Charging Cable,1,14.95,12/31/19 09:58,"986 Cedar St, San Francisco, CA 94016" -307998,Lightning Charging Cable,1,14.95,12/10/19 10:58,"184 Center St, Atlanta, GA 30301" -307999,AAA Batteries (4-pack),1,2.99,12/07/19 12:40,"671 West St, Los Angeles, CA 90001" -308000,Wired Headphones,1,11.99,12/04/19 18:06,"676 West St, New York City, NY 10001" -308001,AA Batteries (4-pack),1,3.84,12/11/19 09:52,"676 12th St, San Francisco, CA 94016" -308002,Lightning Charging Cable,1,14.95,12/08/19 13:58,"265 Meadow St, Los Angeles, CA 90001" -308003,Wired Headphones,1,11.99,12/05/19 20:52,"56 Adams St, San Francisco, CA 94016" -308004,AAA Batteries (4-pack),1,2.99,12/20/19 17:33,"417 Chestnut St, San Francisco, CA 94016" -308005,Lightning Charging Cable,1,14.95,12/18/19 08:30,"700 12th St, New York City, NY 10001" -308006,Lightning Charging Cable,1,14.95,12/03/19 16:22,"833 Hickory St, Austin, TX 73301" -308007,Lightning Charging Cable,2,14.95,12/16/19 07:28,"32 7th St, San Francisco, CA 94016" -308008,Google Phone,1,600,12/04/19 12:42,"545 5th St, Boston, MA 02215" -308009,AA Batteries (4-pack),1,3.84,12/23/19 18:20,"502 10th St, Seattle, WA 98101" -308010,AAA Batteries (4-pack),2,2.99,12/15/19 14:07,"996 Highland St, Portland, OR 97035" -308011,USB-C Charging Cable,1,11.95,12/28/19 12:27,"755 River St, New York City, NY 10001" -308012,20in Monitor,1,109.99,12/13/19 19:37,"166 Forest St, San Francisco, CA 94016" -308013,Bose SoundSport Headphones,2,99.99,12/06/19 18:56,"315 Ridge St, Los Angeles, CA 90001" -308014,AAA Batteries (4-pack),1,2.99,12/27/19 17:27,"317 Jefferson St, Los Angeles, CA 90001" -308014,Apple Airpods Headphones,1,150,12/27/19 17:27,"317 Jefferson St, Los Angeles, CA 90001" -308015,AAA Batteries (4-pack),1,2.99,12/06/19 19:55,"49 8th St, San Francisco, CA 94016" -308016,AAA Batteries (4-pack),1,2.99,12/16/19 14:38,"284 Madison St, Atlanta, GA 30301" -308017,Apple Airpods Headphones,1,150,12/07/19 11:51,"909 Dogwood St, Dallas, TX 75001" -308018,AAA Batteries (4-pack),1,2.99,12/03/19 18:55,"5 9th St, Seattle, WA 98101" -308019,iPhone,1,700,12/04/19 18:27,"69 Hickory St, Los Angeles, CA 90001" -308019,Lightning Charging Cable,1,14.95,12/04/19 18:27,"69 Hickory St, Los Angeles, CA 90001" -308020,USB-C Charging Cable,1,11.95,12/15/19 21:24,"348 6th St, San Francisco, CA 94016" -308021,LG Dryer,1,600.0,12/22/19 19:06,"210 West St, Atlanta, GA 30301" -308022,AA Batteries (4-pack),1,3.84,12/31/19 20:38,"953 Forest St, Portland, ME 04101" -308023,Wired Headphones,1,11.99,12/01/19 21:58,"967 Madison St, Atlanta, GA 30301" -308024,Lightning Charging Cable,1,14.95,12/30/19 23:59,"615 6th St, Dallas, TX 75001" -308025,ThinkPad Laptop,1,999.99,12/16/19 09:19,"774 6th St, New York City, NY 10001" -308026,AA Batteries (4-pack),1,3.84,12/31/19 23:12,"95 Park St, Dallas, TX 75001" -308027,ThinkPad Laptop,1,999.99,12/28/19 11:14,"777 Washington St, Austin, TX 73301" -308028,20in Monitor,1,109.99,12/17/19 15:01,"333 Highland St, New York City, NY 10001" -308029,Apple Airpods Headphones,1,150,12/06/19 12:40,"843 Madison St, Boston, MA 02215" -308030,Apple Airpods Headphones,1,150,12/01/19 17:15,"982 6th St, New York City, NY 10001" -308031,20in Monitor,1,109.99,12/11/19 18:56,"378 Lake St, Atlanta, GA 30301" -308032,AAA Batteries (4-pack),1,2.99,12/30/19 08:47,"699 Sunset St, Los Angeles, CA 90001" -308033,Flatscreen TV,1,300,12/26/19 16:26,"525 Cherry St, New York City, NY 10001" -308034,Bose SoundSport Headphones,1,99.99,12/04/19 13:48,"487 Wilson St, Dallas, TX 75001" -308035,AAA Batteries (4-pack),1,2.99,12/16/19 15:18,"391 Adams St, Los Angeles, CA 90001" -308036,27in 4K Gaming Monitor,1,389.99,12/04/19 10:00,"608 Center St, New York City, NY 10001" -308037,AAA Batteries (4-pack),3,2.99,12/20/19 20:25,"691 4th St, Los Angeles, CA 90001" -308038,USB-C Charging Cable,1,11.95,12/08/19 17:53,"357 Park St, Portland, ME 04101" -308039,Google Phone,1,600,12/04/19 17:54,"499 Sunset St, New York City, NY 10001" -308040,iPhone,1,700,12/02/19 15:58,"227 Park St, Seattle, WA 98101" -308041,Apple Airpods Headphones,1,150,12/02/19 04:29,"91 Lakeview St, Atlanta, GA 30301" -308042,Apple Airpods Headphones,1,150,12/31/19 18:02,"400 Maple St, Atlanta, GA 30301" -308043,AA Batteries (4-pack),1,3.84,12/04/19 13:54,"387 North St, Dallas, TX 75001" -308044,AAA Batteries (4-pack),1,2.99,12/30/19 01:11,"363 Walnut St, Austin, TX 73301" -308045,AAA Batteries (4-pack),3,2.99,12/02/19 22:33,"808 Highland St, Dallas, TX 75001" -308046,27in 4K Gaming Monitor,1,389.99,12/02/19 22:27,"694 Pine St, New York City, NY 10001" -308047,Lightning Charging Cable,1,14.95,12/31/19 17:22,"944 5th St, San Francisco, CA 94016" -308048,Lightning Charging Cable,1,14.95,12/24/19 19:22,"931 Dogwood St, San Francisco, CA 94016" -308049,AA Batteries (4-pack),2,3.84,12/13/19 11:25,"478 Wilson St, Dallas, TX 75001" -308050,AAA Batteries (4-pack),1,2.99,12/24/19 06:56,"560 Hickory St, Atlanta, GA 30301" -308051,iPhone,1,700,12/09/19 16:38,"692 Meadow St, San Francisco, CA 94016" -308052,Flatscreen TV,1,300,12/28/19 19:30,"580 Johnson St, Atlanta, GA 30301" -308053,USB-C Charging Cable,1,11.95,12/25/19 09:07,"593 Elm St, San Francisco, CA 94016" -308054,AAA Batteries (4-pack),1,2.99,12/01/19 08:46,"179 River St, Seattle, WA 98101" -308055,USB-C Charging Cable,1,11.95,12/07/19 11:44,"941 Forest St, Austin, TX 73301" -308056,Bose SoundSport Headphones,1,99.99,12/02/19 22:27,"175 10th St, San Francisco, CA 94016" -308057,Wired Headphones,1,11.99,12/31/19 18:09,"39 Lake St, Atlanta, GA 30301" -308058,Lightning Charging Cable,1,14.95,12/04/19 12:21,"593 Lincoln St, Dallas, TX 75001" -308059,Wired Headphones,2,11.99,12/11/19 20:14,"286 Hill St, Dallas, TX 75001" -308060,34in Ultrawide Monitor,1,379.99,12/10/19 20:33,"644 Forest St, Boston, MA 02215" -308061,iPhone,1,700,12/27/19 19:22,"162 2nd St, Los Angeles, CA 90001" -308061,Apple Airpods Headphones,1,150,12/27/19 19:22,"162 2nd St, Los Angeles, CA 90001" -308062,Wired Headphones,1,11.99,12/13/19 15:20,"330 Johnson St, Atlanta, GA 30301" -308063,AA Batteries (4-pack),1,3.84,12/16/19 08:59,"122 Dogwood St, Dallas, TX 75001" -308064,Lightning Charging Cable,2,14.95,12/20/19 12:28,"163 14th St, San Francisco, CA 94016" -308065,AA Batteries (4-pack),1,3.84,12/07/19 17:31,"316 Washington St, San Francisco, CA 94016" -308065,Macbook Pro Laptop,1,1700,12/07/19 17:31,"316 Washington St, San Francisco, CA 94016" -308066,AA Batteries (4-pack),1,3.84,12/09/19 17:39,"196 Cedar St, Seattle, WA 98101" -308067,Vareebadd Phone,1,400,12/29/19 14:12,"246 West St, San Francisco, CA 94016" -308067,Wired Headphones,1,11.99,12/29/19 14:12,"246 West St, San Francisco, CA 94016" -308068,Bose SoundSport Headphones,1,99.99,12/18/19 11:17,"489 Chestnut St, Austin, TX 73301" -308069,Apple Airpods Headphones,1,150,12/09/19 10:43,"800 Wilson St, Atlanta, GA 30301" -308070,AA Batteries (4-pack),2,3.84,12/30/19 11:39,"649 Highland St, Atlanta, GA 30301" -308071,Google Phone,1,600,12/16/19 10:09,"952 8th St, Boston, MA 02215" -308072,Apple Airpods Headphones,1,150,12/13/19 11:50,"106 11th St, Los Angeles, CA 90001" -308073,AA Batteries (4-pack),2,3.84,12/25/19 17:42,"219 1st St, Boston, MA 02215" -308074,Apple Airpods Headphones,1,150,12/09/19 00:25,"222 Jefferson St, Boston, MA 02215" -308075,USB-C Charging Cable,1,11.95,12/30/19 18:45,"785 Sunset St, Atlanta, GA 30301" -308076,USB-C Charging Cable,1,11.95,12/30/19 13:56,"247 Main St, San Francisco, CA 94016" -308077,AA Batteries (4-pack),1,3.84,12/01/19 17:19,"280 River St, Seattle, WA 98101" -308078,AAA Batteries (4-pack),1,2.99,12/23/19 16:00,"466 West St, Atlanta, GA 30301" -308079,iPhone,1,700,12/14/19 12:19,"156 13th St, San Francisco, CA 94016" -308079,Apple Airpods Headphones,1,150,12/14/19 12:19,"156 13th St, San Francisco, CA 94016" -308080,AA Batteries (4-pack),2,3.84,12/26/19 10:35,"294 North St, Seattle, WA 98101" -308081,Bose SoundSport Headphones,1,99.99,12/17/19 18:43,"324 11th St, San Francisco, CA 94016" -308082,Wired Headphones,1,11.99,12/19/19 15:54,"238 Highland St, Seattle, WA 98101" -308083,iPhone,1,700,12/16/19 11:50,"417 7th St, Los Angeles, CA 90001" -308084,Lightning Charging Cable,1,14.95,12/11/19 13:17,"378 Forest St, New York City, NY 10001" -308085,Macbook Pro Laptop,1,1700,12/18/19 11:36,"912 11th St, Atlanta, GA 30301" -308086,Apple Airpods Headphones,1,150,12/13/19 10:51,"352 Main St, Dallas, TX 75001" -308087,27in 4K Gaming Monitor,1,389.99,12/09/19 10:32,"370 River St, Seattle, WA 98101" -308088,Lightning Charging Cable,1,14.95,12/03/19 10:08,"75 Maple St, Los Angeles, CA 90001" -308089,34in Ultrawide Monitor,1,379.99,12/09/19 01:58,"892 Ridge St, Seattle, WA 98101" -308090,Wired Headphones,1,11.99,12/08/19 21:49,"216 Elm St, Los Angeles, CA 90001" -308091,27in FHD Monitor,1,149.99,12/19/19 10:25,"717 Cherry St, Boston, MA 02215" -308092,LG Washing Machine,1,600.0,12/09/19 16:41,"86 Walnut St, San Francisco, CA 94016" -308093,Apple Airpods Headphones,1,150,12/12/19 19:13,"873 14th St, Dallas, TX 75001" -308094,Apple Airpods Headphones,1,150,12/03/19 21:37,"770 11th St, Atlanta, GA 30301" -308095,AAA Batteries (4-pack),2,2.99,12/26/19 18:42,"889 Meadow St, Austin, TX 73301" -308096,Bose SoundSport Headphones,1,99.99,12/08/19 21:14,"561 Johnson St, New York City, NY 10001" -308097,Bose SoundSport Headphones,1,99.99,12/15/19 18:50,"692 Forest St, Boston, MA 02215" -308098,Wired Headphones,1,11.99,12/13/19 17:12,"6 Pine St, Austin, TX 73301" -308099,USB-C Charging Cable,1,11.95,12/08/19 19:10,"391 Center St, Atlanta, GA 30301" -308100,Macbook Pro Laptop,1,1700,12/18/19 08:42,"505 Elm St, Los Angeles, CA 90001" -308101,34in Ultrawide Monitor,1,379.99,12/26/19 23:42,"101 11th St, Boston, MA 02215" -308102,AAA Batteries (4-pack),1,2.99,12/13/19 14:13,"54 Ridge St, Los Angeles, CA 90001" -308103,USB-C Charging Cable,1,11.95,12/08/19 09:23,"804 Forest St, New York City, NY 10001" -308104,27in 4K Gaming Monitor,1,389.99,12/27/19 11:08,"675 West St, Atlanta, GA 30301" -308105,Apple Airpods Headphones,1,150,12/11/19 18:31,"27 2nd St, Los Angeles, CA 90001" -308106,LG Washing Machine,1,600.0,12/03/19 19:37,"830 Madison St, Dallas, TX 75001" -308107,Lightning Charging Cable,1,14.95,12/12/19 14:30,"65 2nd St, Atlanta, GA 30301" -308108,AA Batteries (4-pack),1,3.84,12/30/19 13:17,"518 North St, San Francisco, CA 94016" -308109,Bose SoundSport Headphones,1,99.99,12/21/19 12:43,"871 Hickory St, New York City, NY 10001" -308110,USB-C Charging Cable,1,11.95,12/19/19 22:53,"887 Spruce St, New York City, NY 10001" -308111,AA Batteries (4-pack),1,3.84,12/01/19 05:49,"936 Chestnut St, Portland, OR 97035" -308112,27in 4K Gaming Monitor,1,389.99,12/16/19 18:28,"481 Spruce St, San Francisco, CA 94016" -308113,AAA Batteries (4-pack),1,2.99,12/08/19 21:53,"956 Main St, San Francisco, CA 94016" -308114,Apple Airpods Headphones,1,150,12/17/19 16:46,"15 Jefferson St, Dallas, TX 75001" -308115,34in Ultrawide Monitor,1,379.99,12/13/19 17:51,"366 10th St, San Francisco, CA 94016" -308116,27in 4K Gaming Monitor,1,389.99,12/14/19 14:27,"259 North St, Atlanta, GA 30301" -308117,Wired Headphones,1,11.99,12/03/19 13:02,"180 10th St, Austin, TX 73301" -308118,Apple Airpods Headphones,1,150,12/30/19 18:43,"736 Lincoln St, New York City, NY 10001" -308119,USB-C Charging Cable,1,11.95,12/30/19 17:37,"440 Meadow St, Atlanta, GA 30301" -308120,Vareebadd Phone,1,400,12/15/19 08:09,"496 7th St, San Francisco, CA 94016" -308121,Lightning Charging Cable,1,14.95,12/31/19 16:43,"644 Pine St, San Francisco, CA 94016" -308122,Wired Headphones,1,11.99,12/03/19 21:26,"725 Jefferson St, Boston, MA 02215" -308123,USB-C Charging Cable,1,11.95,12/26/19 09:48,"4 Church St, Portland, OR 97035" -308124,Wired Headphones,1,11.99,12/07/19 13:13,"515 Cherry St, Dallas, TX 75001" -308125,Apple Airpods Headphones,1,150,12/23/19 07:08,"793 Highland St, New York City, NY 10001" -308126,Flatscreen TV,1,300,12/31/19 20:05,"290 14th St, San Francisco, CA 94016" -308127,AA Batteries (4-pack),1,3.84,12/30/19 11:55,"450 Chestnut St, New York City, NY 10001" -308128,AA Batteries (4-pack),1,3.84,12/17/19 06:22,"150 Elm St, Los Angeles, CA 90001" -308129,Wired Headphones,1,11.99,12/06/19 10:20,"767 Hill St, New York City, NY 10001" -308130,34in Ultrawide Monitor,1,379.99,12/24/19 10:59,"933 Spruce St, Dallas, TX 75001" -308131,AA Batteries (4-pack),1,3.84,12/25/19 13:43,"430 Highland St, San Francisco, CA 94016" -308132,USB-C Charging Cable,1,11.95,12/10/19 15:51,"531 Lake St, Portland, ME 04101" -308133,USB-C Charging Cable,1,11.95,12/12/19 15:44,"706 Chestnut St, Boston, MA 02215" -308134,Bose SoundSport Headphones,1,99.99,12/31/19 21:33,"779 Lincoln St, San Francisco, CA 94016" -308135,Lightning Charging Cable,1,14.95,12/15/19 11:30,"672 Johnson St, Atlanta, GA 30301" -308136,iPhone,1,700,12/06/19 10:42,"963 2nd St, Los Angeles, CA 90001" -308137,Apple Airpods Headphones,1,150,12/21/19 21:05,"313 14th St, San Francisco, CA 94016" -308137,USB-C Charging Cable,1,11.95,12/21/19 21:05,"313 14th St, San Francisco, CA 94016" -308138,USB-C Charging Cable,1,11.95,12/08/19 06:17,"196 10th St, San Francisco, CA 94016" -308139,USB-C Charging Cable,1,11.95,12/31/19 14:56,"640 5th St, Austin, TX 73301" -308140,USB-C Charging Cable,1,11.95,12/17/19 14:35,"95 12th St, New York City, NY 10001" -308141,AAA Batteries (4-pack),1,2.99,12/25/19 18:09,"259 Center St, San Francisco, CA 94016" -308142,34in Ultrawide Monitor,1,379.99,12/02/19 22:02,"843 6th St, Dallas, TX 75001" -308143,Lightning Charging Cable,1,14.95,12/04/19 12:57,"242 Lakeview St, New York City, NY 10001" -308144,Lightning Charging Cable,1,14.95,12/23/19 18:21,"639 Lakeview St, Atlanta, GA 30301" -308145,AA Batteries (4-pack),1,3.84,12/12/19 07:48,"426 Main St, Atlanta, GA 30301" -308146,USB-C Charging Cable,2,11.95,12/14/19 18:54,"919 West St, San Francisco, CA 94016" -308147,Bose SoundSport Headphones,1,99.99,12/21/19 20:44,"669 Adams St, Boston, MA 02215" -308148,USB-C Charging Cable,1,11.95,12/16/19 17:59,"820 Jefferson St, San Francisco, CA 94016" -308149,Bose SoundSport Headphones,1,99.99,12/17/19 19:46,"849 South St, Dallas, TX 75001" -308150,USB-C Charging Cable,1,11.95,12/20/19 00:07,"139 Cherry St, Atlanta, GA 30301" -308151,AAA Batteries (4-pack),1,2.99,12/19/19 10:53,"50 Cherry St, Boston, MA 02215" -308152,USB-C Charging Cable,1,11.95,12/23/19 04:18,"707 5th St, San Francisco, CA 94016" -308153,34in Ultrawide Monitor,1,379.99,12/25/19 21:03,"279 1st St, Dallas, TX 75001" -308154,USB-C Charging Cable,1,11.95,12/15/19 16:58,"38 Lincoln St, San Francisco, CA 94016" -308155,AAA Batteries (4-pack),1,2.99,12/22/19 09:19,"201 Church St, Portland, OR 97035" -308156,USB-C Charging Cable,1,11.95,12/10/19 20:13,"314 14th St, Los Angeles, CA 90001" -308157,AA Batteries (4-pack),2,3.84,12/08/19 12:45,"301 Cedar St, Boston, MA 02215" -308158,Bose SoundSport Headphones,1,99.99,12/31/19 19:57,"108 Wilson St, San Francisco, CA 94016" -308159,Bose SoundSport Headphones,1,99.99,12/22/19 21:28,"252 9th St, Los Angeles, CA 90001" -308160,Bose SoundSport Headphones,1,99.99,12/14/19 19:38,"49 North St, Atlanta, GA 30301" -308161,AA Batteries (4-pack),1,3.84,12/28/19 14:25,"372 Hickory St, Seattle, WA 98101" -308162,27in 4K Gaming Monitor,1,389.99,12/05/19 15:18,"336 Cherry St, San Francisco, CA 94016" -,,,,, -308163,AAA Batteries (4-pack),1,2.99,12/31/19 15:47,"469 Jackson St, Austin, TX 73301" -308164,AA Batteries (4-pack),2,3.84,12/26/19 16:32,"729 6th St, Boston, MA 02215" -308165,Wired Headphones,1,11.99,12/26/19 23:31,"614 Center St, Atlanta, GA 30301" -308166,Wired Headphones,2,11.99,12/28/19 14:49,"58 10th St, San Francisco, CA 94016" -308167,Vareebadd Phone,1,400,12/29/19 08:20,"699 Lincoln St, New York City, NY 10001" -,,,,, -308168,Bose SoundSport Headphones,1,99.99,12/30/19 09:45,"706 2nd St, Los Angeles, CA 90001" -308169,27in 4K Gaming Monitor,1,389.99,12/21/19 13:47,"395 Lakeview St, San Francisco, CA 94016" -308170,Wired Headphones,1,11.99,12/08/19 16:11,"164 Highland St, San Francisco, CA 94016" -308171,AA Batteries (4-pack),1,3.84,12/03/19 18:59,"655 Main St, San Francisco, CA 94016" -308172,USB-C Charging Cable,1,11.95,12/15/19 14:40,"167 2nd St, Los Angeles, CA 90001" -308173,Wired Headphones,1,11.99,12/06/19 14:03,"880 Lakeview St, San Francisco, CA 94016" -308174,Apple Airpods Headphones,1,150,12/10/19 20:54,"444 Madison St, Seattle, WA 98101" -308175,Wired Headphones,1,11.99,12/26/19 12:36,"102 Ridge St, San Francisco, CA 94016" -308176,34in Ultrawide Monitor,1,379.99,12/14/19 00:13,"13 Ridge St, Portland, OR 97035" -308177,Apple Airpods Headphones,1,150,12/17/19 10:10,"683 North St, Seattle, WA 98101" -308178,AAA Batteries (4-pack),1,2.99,12/14/19 17:28,"809 2nd St, Dallas, TX 75001" -308179,Lightning Charging Cable,2,14.95,12/24/19 13:44,"545 Ridge St, Los Angeles, CA 90001" -308180,Bose SoundSport Headphones,1,99.99,12/30/19 07:17,"422 Cherry St, Dallas, TX 75001" -308181,AAA Batteries (4-pack),1,2.99,12/08/19 02:10,"904 Hickory St, Seattle, WA 98101" -308182,Wired Headphones,1,11.99,12/13/19 07:30,"852 Church St, San Francisco, CA 94016" -308183,iPhone,1,700,12/11/19 13:25,"270 8th St, Los Angeles, CA 90001" -308183,Lightning Charging Cable,1,14.95,12/11/19 13:25,"270 8th St, Los Angeles, CA 90001" -308184,AA Batteries (4-pack),1,3.84,12/17/19 14:20,"423 11th St, San Francisco, CA 94016" -308185,27in FHD Monitor,1,149.99,01/01/20 04:06,"202 Maple St, San Francisco, CA 94016" -308186,Lightning Charging Cable,2,14.95,12/15/19 12:44,"908 Lake St, Atlanta, GA 30301" -308187,AAA Batteries (4-pack),1,2.99,12/19/19 17:02,"593 4th St, Atlanta, GA 30301" -308188,Wired Headphones,1,11.99,12/04/19 12:03,"830 Willow St, Los Angeles, CA 90001" -308189,Lightning Charging Cable,1,14.95,12/19/19 12:27,"736 Park St, Los Angeles, CA 90001" -308190,Google Phone,1,600,12/22/19 16:31,"120 8th St, Los Angeles, CA 90001" -308191,34in Ultrawide Monitor,1,379.99,12/15/19 23:00,"179 Forest St, New York City, NY 10001" -308192,Lightning Charging Cable,1,14.95,12/20/19 19:32,"652 1st St, New York City, NY 10001" -308193,Wired Headphones,1,11.99,12/10/19 15:00,"899 Highland St, San Francisco, CA 94016" -308194,Lightning Charging Cable,1,14.95,12/23/19 21:00,"505 7th St, San Francisco, CA 94016" -308195,AAA Batteries (4-pack),2,2.99,12/27/19 04:39,"939 Ridge St, New York City, NY 10001" -308196,AAA Batteries (4-pack),2,2.99,12/04/19 20:57,"934 Cedar St, New York City, NY 10001" -308197,Wired Headphones,1,11.99,12/15/19 08:15,"231 Lincoln St, Atlanta, GA 30301" -308198,27in FHD Monitor,1,149.99,12/22/19 10:32,"603 Chestnut St, Los Angeles, CA 90001" -308199,USB-C Charging Cable,1,11.95,12/27/19 22:01,"509 11th St, New York City, NY 10001" -308200,Bose SoundSport Headphones,1,99.99,12/21/19 15:04,"790 Church St, New York City, NY 10001" -308201,AA Batteries (4-pack),1,3.84,12/16/19 21:19,"539 Walnut St, Los Angeles, CA 90001" -308202,Bose SoundSport Headphones,1,99.99,12/29/19 13:12,"422 River St, Portland, OR 97035" -308203,AA Batteries (4-pack),1,3.84,12/07/19 11:53,"915 Lakeview St, Dallas, TX 75001" -308204,Bose SoundSport Headphones,1,99.99,12/25/19 20:07,"93 Lakeview St, Boston, MA 02215" -308205,Bose SoundSport Headphones,1,99.99,12/23/19 20:37,"415 North St, New York City, NY 10001" -308206,Google Phone,1,600,12/18/19 15:21,"623 13th St, Boston, MA 02215" -308207,Bose SoundSport Headphones,1,99.99,12/17/19 21:29,"907 Madison St, San Francisco, CA 94016" -308208,Apple Airpods Headphones,1,150,12/13/19 21:46,"717 8th St, San Francisco, CA 94016" -308209,Vareebadd Phone,1,400,12/03/19 17:06,"595 10th St, Atlanta, GA 30301" -308210,iPhone,1,700,12/21/19 12:10,"342 Cherry St, New York City, NY 10001" -308210,Lightning Charging Cable,1,14.95,12/21/19 12:10,"342 Cherry St, New York City, NY 10001" -308211,Macbook Pro Laptop,1,1700,12/27/19 08:56,"497 Pine St, San Francisco, CA 94016" -308212,USB-C Charging Cable,1,11.95,12/26/19 17:22,"626 Pine St, Dallas, TX 75001" -308213,AAA Batteries (4-pack),1,2.99,12/02/19 16:05,"816 Lake St, Austin, TX 73301" -308214,Wired Headphones,1,11.99,12/18/19 14:07,"146 West St, Los Angeles, CA 90001" -308215,Bose SoundSport Headphones,1,99.99,12/01/19 08:44,"756 Maple St, San Francisco, CA 94016" -308216,Flatscreen TV,1,300,12/28/19 08:39,"573 6th St, San Francisco, CA 94016" -308217,Apple Airpods Headphones,1,150,12/22/19 19:59,"519 Jackson St, Portland, ME 04101" -308218,Wired Headphones,2,11.99,12/11/19 18:37,"469 Pine St, Austin, TX 73301" -308219,Apple Airpods Headphones,1,150,12/27/19 01:19,"443 West St, San Francisco, CA 94016" -308220,Apple Airpods Headphones,1,150,12/07/19 10:32,"113 Dogwood St, Dallas, TX 75001" -308221,iPhone,1,700,12/03/19 19:20,"636 Hill St, Austin, TX 73301" -308222,Wired Headphones,1,11.99,12/02/19 23:32,"624 14th St, Portland, OR 97035" -308223,27in 4K Gaming Monitor,1,389.99,12/07/19 18:39,"730 Pine St, Portland, OR 97035" -308224,Wired Headphones,1,11.99,12/21/19 13:30,"890 Lakeview St, Seattle, WA 98101" -308225,AA Batteries (4-pack),2,3.84,12/24/19 22:03,"472 9th St, New York City, NY 10001" -308226,Bose SoundSport Headphones,1,99.99,12/16/19 20:15,"618 Madison St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -308227,Apple Airpods Headphones,1,150,12/25/19 18:59,"2 Dogwood St, Atlanta, GA 30301" -308228,20in Monitor,1,109.99,12/04/19 19:53,"71 Walnut St, San Francisco, CA 94016" -308229,AA Batteries (4-pack),2,3.84,12/19/19 09:16,"677 Chestnut St, San Francisco, CA 94016" -308229,Bose SoundSport Headphones,1,99.99,12/19/19 09:16,"677 Chestnut St, San Francisco, CA 94016" -308230,Apple Airpods Headphones,1,150,12/19/19 19:34,"922 River St, Austin, TX 73301" -308231,Wired Headphones,1,11.99,12/13/19 18:49,"55 5th St, Los Angeles, CA 90001" -308232,iPhone,1,700,12/06/19 15:18,"997 12th St, San Francisco, CA 94016" -308233,AA Batteries (4-pack),1,3.84,12/28/19 17:19,"877 5th St, Los Angeles, CA 90001" -308234,34in Ultrawide Monitor,1,379.99,12/21/19 19:31,"507 Center St, Los Angeles, CA 90001" -308234,Apple Airpods Headphones,1,150,12/21/19 19:31,"507 Center St, Los Angeles, CA 90001" -308235,Google Phone,1,600,12/15/19 11:42,"801 Madison St, San Francisco, CA 94016" -308235,USB-C Charging Cable,1,11.95,12/15/19 11:42,"801 Madison St, San Francisco, CA 94016" -308236,AA Batteries (4-pack),2,3.84,12/04/19 16:52,"467 Wilson St, San Francisco, CA 94016" -308237,27in 4K Gaming Monitor,1,389.99,12/04/19 10:21,"388 13th St, New York City, NY 10001" -308238,iPhone,1,700,12/23/19 10:36,"173 Madison St, San Francisco, CA 94016" -308239,34in Ultrawide Monitor,1,379.99,12/08/19 12:42,"43 Elm St, San Francisco, CA 94016" -308240,AAA Batteries (4-pack),3,2.99,12/21/19 11:18,"417 Center St, New York City, NY 10001" -308241,Lightning Charging Cable,1,14.95,12/05/19 15:44,"130 Washington St, Boston, MA 02215" -308242,AAA Batteries (4-pack),2,2.99,12/14/19 19:54,"973 9th St, Dallas, TX 75001" -308243,Apple Airpods Headphones,1,150,12/01/19 12:54,"873 South St, San Francisco, CA 94016" -308244,34in Ultrawide Monitor,1,379.99,12/08/19 22:39,"101 Lincoln St, Austin, TX 73301" -308245,USB-C Charging Cable,1,11.95,12/07/19 19:33,"844 Main St, Los Angeles, CA 90001" -308246,AA Batteries (4-pack),2,3.84,12/18/19 11:33,"413 West St, San Francisco, CA 94016" -308247,Google Phone,1,600,12/18/19 11:30,"487 West St, San Francisco, CA 94016" -308248,Wired Headphones,2,11.99,12/22/19 16:45,"20 Main St, San Francisco, CA 94016" -308249,USB-C Charging Cable,1,11.95,12/25/19 16:33,"795 Washington St, San Francisco, CA 94016" -308250,Macbook Pro Laptop,1,1700,12/18/19 15:28,"374 River St, Los Angeles, CA 90001" -308251,AAA Batteries (4-pack),1,2.99,12/15/19 10:50,"666 Lincoln St, Dallas, TX 75001" -308252,27in FHD Monitor,1,149.99,12/08/19 20:46,"386 Hickory St, San Francisco, CA 94016" -308253,Lightning Charging Cable,1,14.95,12/26/19 14:48,"536 River St, New York City, NY 10001" -308254,Bose SoundSport Headphones,1,99.99,12/28/19 09:38,"583 South St, New York City, NY 10001" -308255,Apple Airpods Headphones,1,150,12/03/19 13:18,"494 Jefferson St, Los Angeles, CA 90001" -308256,Wired Headphones,1,11.99,12/18/19 19:07,"164 Lincoln St, Seattle, WA 98101" -308257,27in FHD Monitor,1,149.99,12/18/19 10:09,"991 Hill St, San Francisco, CA 94016" -308258,LG Dryer,1,600.0,12/28/19 13:12,"805 South St, Los Angeles, CA 90001" -308259,AA Batteries (4-pack),1,3.84,12/24/19 20:12,"207 Johnson St, Los Angeles, CA 90001" -308260,Bose SoundSport Headphones,1,99.99,12/10/19 05:24,"956 Wilson St, Dallas, TX 75001" -308261,AA Batteries (4-pack),1,3.84,12/13/19 15:34,"818 5th St, Portland, OR 97035" -308262,USB-C Charging Cable,1,11.95,12/09/19 19:02,"401 Church St, Atlanta, GA 30301" -308263,34in Ultrawide Monitor,1,379.99,12/23/19 21:22,"823 Adams St, Seattle, WA 98101" -308264,Bose SoundSport Headphones,1,99.99,12/18/19 18:30,"352 Pine St, Atlanta, GA 30301" -308265,Macbook Pro Laptop,1,1700,12/26/19 15:19,"773 6th St, San Francisco, CA 94016" -308266,USB-C Charging Cable,1,11.95,12/10/19 18:23,"475 Lake St, San Francisco, CA 94016" -308267,Lightning Charging Cable,1,14.95,12/15/19 20:58,"629 South St, New York City, NY 10001" -308268,20in Monitor,1,109.99,12/31/19 21:00,"411 5th St, New York City, NY 10001" -308269,Apple Airpods Headphones,1,150,12/18/19 15:47,"441 Center St, Austin, TX 73301" -308270,USB-C Charging Cable,1,11.95,12/13/19 22:22,"339 Madison St, Austin, TX 73301" -308271,Lightning Charging Cable,1,14.95,12/13/19 21:00,"896 Maple St, Los Angeles, CA 90001" -308272,Wired Headphones,1,11.99,12/18/19 20:36,"258 Spruce St, Dallas, TX 75001" -308273,USB-C Charging Cable,1,11.95,12/25/19 10:03,"647 Meadow St, San Francisco, CA 94016" -308274,iPhone,1,700,12/17/19 19:20,"23 9th St, Los Angeles, CA 90001" -308275,AA Batteries (4-pack),1,3.84,12/12/19 23:49,"460 13th St, San Francisco, CA 94016" -308276,Bose SoundSport Headphones,1,99.99,12/17/19 17:18,"621 Johnson St, Los Angeles, CA 90001" -308277,USB-C Charging Cable,1,11.95,12/10/19 17:25,"854 1st St, Los Angeles, CA 90001" -308278,Vareebadd Phone,1,400,12/13/19 19:35,"639 Jackson St, Seattle, WA 98101" -308279,AA Batteries (4-pack),1,3.84,12/11/19 21:08,"598 11th St, Atlanta, GA 30301" -308280,AA Batteries (4-pack),1,3.84,12/31/19 08:27,"103 Madison St, New York City, NY 10001" -308281,Wired Headphones,1,11.99,12/26/19 11:14,"990 6th St, Seattle, WA 98101" -308282,USB-C Charging Cable,1,11.95,12/19/19 12:41,"199 8th St, Seattle, WA 98101" -308283,AAA Batteries (4-pack),1,2.99,12/30/19 11:02,"361 4th St, San Francisco, CA 94016" -308284,USB-C Charging Cable,1,11.95,12/19/19 18:14,"203 12th St, San Francisco, CA 94016" -308285,USB-C Charging Cable,1,11.95,12/17/19 21:43,"907 6th St, Los Angeles, CA 90001" -308286,USB-C Charging Cable,1,11.95,12/16/19 17:53,"373 Cedar St, New York City, NY 10001" -308287,AAA Batteries (4-pack),2,2.99,12/09/19 14:34,"132 13th St, San Francisco, CA 94016" -308288,27in 4K Gaming Monitor,1,389.99,12/08/19 12:51,"144 Ridge St, Los Angeles, CA 90001" -308289,AAA Batteries (4-pack),1,2.99,12/09/19 15:00,"139 Meadow St, San Francisco, CA 94016" -308290,Wired Headphones,1,11.99,12/05/19 22:52,"425 Pine St, Seattle, WA 98101" -308291,27in 4K Gaming Monitor,1,389.99,12/10/19 19:22,"522 Johnson St, San Francisco, CA 94016" -308292,Flatscreen TV,1,300,12/23/19 13:26,"64 Jackson St, Boston, MA 02215" -308293,Wired Headphones,1,11.99,12/27/19 20:27,"348 Adams St, Dallas, TX 75001" -308294,AA Batteries (4-pack),2,3.84,12/28/19 18:16,"119 Jefferson St, Los Angeles, CA 90001" -308295,AA Batteries (4-pack),1,3.84,12/27/19 17:06,"845 River St, Los Angeles, CA 90001" -308296,27in 4K Gaming Monitor,1,389.99,12/16/19 02:18,"901 Lake St, Boston, MA 02215" -308297,34in Ultrawide Monitor,1,379.99,12/22/19 21:02,"536 14th St, Seattle, WA 98101" -308298,34in Ultrawide Monitor,1,379.99,12/10/19 04:29,"705 7th St, Seattle, WA 98101" -308299,USB-C Charging Cable,1,11.95,12/12/19 21:58,"752 Willow St, Boston, MA 02215" -,,,,, -308300,34in Ultrawide Monitor,1,379.99,12/31/19 21:45,"384 Jackson St, Los Angeles, CA 90001" -308301,AA Batteries (4-pack),6,3.84,12/21/19 08:42,"691 Main St, Dallas, TX 75001" -308302,AAA Batteries (4-pack),2,2.99,12/17/19 19:39,"692 Washington St, Austin, TX 73301" -308303,AA Batteries (4-pack),1,3.84,12/18/19 19:29,"21 Church St, Portland, OR 97035" -308304,iPhone,1,700,12/29/19 12:49,"268 Jackson St, Boston, MA 02215" -308305,Lightning Charging Cable,2,14.95,12/22/19 22:58,"315 14th St, San Francisco, CA 94016" -308306,Vareebadd Phone,1,400,12/01/19 20:24,"318 Ridge St, San Francisco, CA 94016" -308307,Apple Airpods Headphones,1,150,12/13/19 18:06,"238 Hickory St, Dallas, TX 75001" -308308,Google Phone,1,600,12/18/19 15:08,"914 Elm St, San Francisco, CA 94016" -308309,20in Monitor,1,109.99,12/24/19 20:20,"308 Walnut St, New York City, NY 10001" -308310,34in Ultrawide Monitor,1,379.99,12/24/19 22:47,"163 Adams St, Los Angeles, CA 90001" -308311,ThinkPad Laptop,1,999.99,12/14/19 01:01,"369 Main St, Los Angeles, CA 90001" -308312,AA Batteries (4-pack),2,3.84,12/16/19 22:55,"247 Dogwood St, Los Angeles, CA 90001" -308313,Bose SoundSport Headphones,1,99.99,12/16/19 10:39,"834 10th St, San Francisco, CA 94016" -308314,USB-C Charging Cable,1,11.95,12/06/19 21:08,"578 North St, San Francisco, CA 94016" -308315,Wired Headphones,1,11.99,12/03/19 06:58,"77 Elm St, Dallas, TX 75001" -308316,Apple Airpods Headphones,1,150,12/02/19 07:59,"4 8th St, Atlanta, GA 30301" -308317,AAA Batteries (4-pack),1,2.99,12/12/19 20:31,"614 Adams St, Los Angeles, CA 90001" -308318,Wired Headphones,2,11.99,12/07/19 12:54,"73 River St, Seattle, WA 98101" -308319,USB-C Charging Cable,1,11.95,12/31/19 19:56,"706 12th St, Boston, MA 02215" -308320,Lightning Charging Cable,1,14.95,12/21/19 03:13,"214 10th St, New York City, NY 10001" -,,,,, -308321,Wired Headphones,1,11.99,12/25/19 19:23,"995 Johnson St, Boston, MA 02215" -308322,Bose SoundSport Headphones,1,99.99,01/01/20 00:24,"362 Willow St, San Francisco, CA 94016" -308323,iPhone,1,700,12/01/19 22:10,"680 5th St, New York City, NY 10001" -308324,AA Batteries (4-pack),1,3.84,12/11/19 22:39,"881 Washington St, New York City, NY 10001" -308325,Apple Airpods Headphones,1,150,12/07/19 09:49,"361 Ridge St, Portland, ME 04101" -308326,20in Monitor,1,109.99,12/18/19 12:17,"460 Main St, San Francisco, CA 94016" -308327,Lightning Charging Cable,1,14.95,12/11/19 20:19,"32 Jackson St, New York City, NY 10001" -308328,27in FHD Monitor,1,149.99,12/26/19 11:08,"309 Johnson St, Boston, MA 02215" -308329,Wired Headphones,1,11.99,12/03/19 09:29,"315 Hickory St, Seattle, WA 98101" -308330,AA Batteries (4-pack),2,3.84,12/15/19 17:36,"687 6th St, San Francisco, CA 94016" -308331,AAA Batteries (4-pack),1,2.99,12/07/19 21:35,"395 9th St, New York City, NY 10001" -308332,AA Batteries (4-pack),1,3.84,12/15/19 11:16,"56 Highland St, New York City, NY 10001" -308333,USB-C Charging Cable,1,11.95,12/04/19 12:31,"721 12th St, Los Angeles, CA 90001" -308334,LG Washing Machine,1,600.0,12/21/19 18:29,"379 North St, New York City, NY 10001" -308335,USB-C Charging Cable,1,11.95,12/25/19 16:18,"531 14th St, Portland, ME 04101" -308336,Macbook Pro Laptop,1,1700,12/06/19 13:01,"590 Meadow St, Boston, MA 02215" -308337,27in 4K Gaming Monitor,1,389.99,12/26/19 11:07,"339 Lincoln St, Seattle, WA 98101" -308338,34in Ultrawide Monitor,1,379.99,12/29/19 11:44,"326 11th St, Boston, MA 02215" -308338,AAA Batteries (4-pack),1,2.99,12/29/19 11:44,"326 11th St, Boston, MA 02215" -308339,AAA Batteries (4-pack),1,2.99,12/24/19 21:23,"422 Main St, Dallas, TX 75001" -308340,AAA Batteries (4-pack),2,2.99,12/22/19 20:15,"190 4th St, New York City, NY 10001" -308341,AAA Batteries (4-pack),1,2.99,12/11/19 16:36,"976 Church St, Seattle, WA 98101" -308342,USB-C Charging Cable,2,11.95,12/11/19 11:54,"882 Sunset St, San Francisco, CA 94016" -308343,Lightning Charging Cable,1,14.95,12/07/19 17:19,"910 10th St, San Francisco, CA 94016" -308344,AA Batteries (4-pack),1,3.84,12/18/19 17:13,"590 Adams St, Seattle, WA 98101" -308345,LG Dryer,1,600.0,12/24/19 08:44,"936 Center St, Atlanta, GA 30301" -308346,27in FHD Monitor,1,149.99,12/24/19 13:38,"937 Jackson St, Boston, MA 02215" -308347,Lightning Charging Cable,2,14.95,12/04/19 15:10,"277 11th St, New York City, NY 10001" -308348,AA Batteries (4-pack),1,3.84,12/30/19 10:27,"346 Lakeview St, San Francisco, CA 94016" -308349,Macbook Pro Laptop,1,1700,12/21/19 09:22,"107 Spruce St, Portland, ME 04101" -308350,AAA Batteries (4-pack),4,2.99,12/26/19 18:56,"888 Main St, San Francisco, CA 94016" -308351,AA Batteries (4-pack),1,3.84,12/16/19 22:55,"586 Highland St, Los Angeles, CA 90001" -308352,Macbook Pro Laptop,1,1700,12/25/19 09:04,"192 13th St, Seattle, WA 98101" -308352,34in Ultrawide Monitor,1,379.99,12/25/19 09:04,"192 13th St, Seattle, WA 98101" -308353,27in 4K Gaming Monitor,1,389.99,12/20/19 00:13,"655 Hickory St, New York City, NY 10001" -308354,ThinkPad Laptop,1,999.99,12/29/19 17:49,"955 Pine St, New York City, NY 10001" -308355,Apple Airpods Headphones,1,150,12/26/19 16:54,"78 7th St, Seattle, WA 98101" -308356,Apple Airpods Headphones,1,150,12/24/19 15:07,"126 Hickory St, Austin, TX 73301" -308356,AA Batteries (4-pack),1,3.84,12/24/19 15:07,"126 Hickory St, Austin, TX 73301" -308357,Wired Headphones,1,11.99,12/30/19 07:13,"298 Willow St, Portland, OR 97035" -308358,Apple Airpods Headphones,1,150,12/18/19 18:10,"809 Walnut St, San Francisco, CA 94016" -308359,Wired Headphones,1,11.99,12/08/19 01:30,"611 5th St, Seattle, WA 98101" -308360,Flatscreen TV,1,300,12/02/19 13:44,"691 11th St, Atlanta, GA 30301" -308361,AA Batteries (4-pack),3,3.84,12/01/19 15:31,"326 Lincoln St, Los Angeles, CA 90001" -308362,AAA Batteries (4-pack),1,2.99,12/31/19 10:18,"914 Pine St, San Francisco, CA 94016" -308362,AAA Batteries (4-pack),1,2.99,12/31/19 10:18,"914 Pine St, San Francisco, CA 94016" -308363,Apple Airpods Headphones,1,150,12/27/19 23:12,"671 River St, Portland, OR 97035" -308364,USB-C Charging Cable,1,11.95,12/05/19 21:13,"12 Church St, Portland, OR 97035" -308365,USB-C Charging Cable,1,11.95,12/31/19 12:53,"432 Washington St, San Francisco, CA 94016" -308366,Flatscreen TV,1,300,12/28/19 20:48,"671 Pine St, San Francisco, CA 94016" -308367,Apple Airpods Headphones,1,150,12/08/19 16:57,"270 Ridge St, Boston, MA 02215" -308367,Lightning Charging Cable,1,14.95,12/08/19 16:57,"270 Ridge St, Boston, MA 02215" -308368,Wired Headphones,1,11.99,12/01/19 19:00,"539 Park St, Portland, ME 04101" -308369,Vareebadd Phone,1,400,12/13/19 08:43,"511 Jefferson St, Boston, MA 02215" -308369,Bose SoundSport Headphones,1,99.99,12/13/19 08:43,"511 Jefferson St, Boston, MA 02215" -308370,Wired Headphones,1,11.99,12/13/19 22:02,"116 Maple St, Boston, MA 02215" -308371,27in FHD Monitor,1,149.99,12/20/19 16:37,"501 Forest St, San Francisco, CA 94016" -308372,27in FHD Monitor,1,149.99,12/02/19 01:24,"392 Main St, San Francisco, CA 94016" -308373,Macbook Pro Laptop,1,1700,12/18/19 21:56,"311 Lake St, Boston, MA 02215" -308374,AAA Batteries (4-pack),1,2.99,12/30/19 10:05,"963 4th St, Dallas, TX 75001" -308375,Lightning Charging Cable,2,14.95,12/10/19 08:40,"430 2nd St, Dallas, TX 75001" -308376,AA Batteries (4-pack),1,3.84,12/19/19 20:53,"26 Spruce St, Seattle, WA 98101" -308377,Wired Headphones,1,11.99,12/14/19 19:43,"758 11th St, New York City, NY 10001" -308378,34in Ultrawide Monitor,1,379.99,12/20/19 09:11,"362 Highland St, Boston, MA 02215" -308379,Wired Headphones,1,11.99,12/11/19 19:13,"916 11th St, Los Angeles, CA 90001" -308380,34in Ultrawide Monitor,1,379.99,12/09/19 16:28,"240 Forest St, Los Angeles, CA 90001" -308381,Apple Airpods Headphones,1,150,12/02/19 20:47,"754 Elm St, Los Angeles, CA 90001" -308382,Wired Headphones,1,11.99,12/20/19 17:49,"799 Dogwood St, San Francisco, CA 94016" -308383,ThinkPad Laptop,1,999.99,12/19/19 21:52,"312 Dogwood St, Boston, MA 02215" -308384,ThinkPad Laptop,1,999.99,12/24/19 06:36,"868 Hill St, Boston, MA 02215" -308385,AAA Batteries (4-pack),1,2.99,12/27/19 11:34,"299 13th St, San Francisco, CA 94016" -308386,Google Phone,1,600,12/10/19 09:30,"482 Hill St, San Francisco, CA 94016" -308387,Flatscreen TV,1,300,12/21/19 17:59,"408 River St, Los Angeles, CA 90001" -308388,AA Batteries (4-pack),1,3.84,12/03/19 20:09,"526 Lakeview St, Los Angeles, CA 90001" -308389,Wired Headphones,1,11.99,12/30/19 09:26,"812 9th St, Boston, MA 02215" -308390,Lightning Charging Cable,1,14.95,12/14/19 15:12,"750 Forest St, New York City, NY 10001" -308391,AA Batteries (4-pack),1,3.84,12/31/19 00:24,"927 Lincoln St, Portland, ME 04101" -308392,AAA Batteries (4-pack),5,2.99,12/20/19 20:24,"5 Jackson St, Portland, ME 04101" -308393,Google Phone,1,600,12/11/19 13:55,"713 Willow St, Seattle, WA 98101" -308394,USB-C Charging Cable,1,11.95,12/02/19 12:42,"30 Cherry St, Los Angeles, CA 90001" -308395,34in Ultrawide Monitor,1,379.99,12/30/19 12:32,"198 Jefferson St, Seattle, WA 98101" -308396,27in 4K Gaming Monitor,1,389.99,12/16/19 15:07,"432 River St, Portland, OR 97035" -308397,27in 4K Gaming Monitor,1,389.99,12/21/19 23:53,"956 2nd St, Los Angeles, CA 90001" -308398,Macbook Pro Laptop,1,1700,12/11/19 17:13,"445 Maple St, Austin, TX 73301" -308399,USB-C Charging Cable,1,11.95,12/09/19 23:34,"772 Chestnut St, Portland, OR 97035" -308400,Lightning Charging Cable,1,14.95,12/19/19 11:25,"447 7th St, Los Angeles, CA 90001" -308401,Lightning Charging Cable,1,14.95,12/02/19 18:12,"354 Chestnut St, San Francisco, CA 94016" -308402,20in Monitor,1,109.99,12/19/19 20:53,"938 10th St, Boston, MA 02215" -308403,AA Batteries (4-pack),1,3.84,12/29/19 19:23,"745 Jefferson St, Los Angeles, CA 90001" -308404,AAA Batteries (4-pack),4,2.99,12/27/19 23:27,"671 Maple St, Portland, OR 97035" -308405,USB-C Charging Cable,1,11.95,12/24/19 16:25,"186 Maple St, Seattle, WA 98101" -308406,Apple Airpods Headphones,1,150,12/25/19 02:41,"879 Pine St, Atlanta, GA 30301" -308407,AAA Batteries (4-pack),3,2.99,12/22/19 17:28,"64 2nd St, Austin, TX 73301" -308408,iPhone,1,700,12/10/19 22:38,"10 Madison St, Boston, MA 02215" -308409,USB-C Charging Cable,1,11.95,12/05/19 18:14,"649 8th St, Boston, MA 02215" -308410,USB-C Charging Cable,1,11.95,12/25/19 12:36,"704 Sunset St, San Francisco, CA 94016" -308411,27in FHD Monitor,1,149.99,12/08/19 13:37,"281 Lakeview St, San Francisco, CA 94016" -308412,AA Batteries (4-pack),1,3.84,12/16/19 14:38,"184 Wilson St, Los Angeles, CA 90001" -308413,34in Ultrawide Monitor,1,379.99,12/19/19 17:59,"712 Cedar St, Atlanta, GA 30301" -308414,Bose SoundSport Headphones,1,99.99,12/05/19 13:19,"879 Jackson St, Boston, MA 02215" -308414,Vareebadd Phone,1,400,12/05/19 13:19,"879 Jackson St, Boston, MA 02215" -308415,Macbook Pro Laptop,1,1700,12/10/19 15:58,"987 Ridge St, New York City, NY 10001" -308416,USB-C Charging Cable,1,11.95,12/06/19 09:25,"141 River St, Los Angeles, CA 90001" -308417,Lightning Charging Cable,1,14.95,12/12/19 11:45,"934 Park St, Portland, OR 97035" -308418,Macbook Pro Laptop,1,1700,12/16/19 12:51,"281 Hickory St, Austin, TX 73301" -308419,Wired Headphones,1,11.99,12/05/19 17:23,"986 Adams St, Dallas, TX 75001" -308420,iPhone,1,700,12/24/19 20:26,"275 North St, Los Angeles, CA 90001" -308421,Wired Headphones,1,11.99,12/07/19 08:50,"127 Hickory St, San Francisco, CA 94016" -308422,Lightning Charging Cable,1,14.95,12/24/19 11:29,"364 12th St, Atlanta, GA 30301" -308423,AAA Batteries (4-pack),1,2.99,12/26/19 00:54,"150 Lincoln St, San Francisco, CA 94016" -308424,USB-C Charging Cable,1,11.95,12/03/19 00:19,"684 River St, San Francisco, CA 94016" -308425,27in FHD Monitor,1,149.99,12/11/19 17:04,"974 Jefferson St, Seattle, WA 98101" -308426,AA Batteries (4-pack),1,3.84,12/09/19 17:41,"948 9th St, Boston, MA 02215" -308427,iPhone,1,700,12/25/19 15:30,"258 Jefferson St, Dallas, TX 75001" -308427,Lightning Charging Cable,1,14.95,12/25/19 15:30,"258 Jefferson St, Dallas, TX 75001" -308428,Wired Headphones,1,11.99,12/14/19 17:38,"990 7th St, San Francisco, CA 94016" -308429,27in FHD Monitor,1,149.99,12/25/19 23:08,"660 North St, Los Angeles, CA 90001" -308430,Apple Airpods Headphones,1,150,12/02/19 22:39,"564 Park St, New York City, NY 10001" -308431,Apple Airpods Headphones,1,150,12/03/19 20:43,"632 7th St, Los Angeles, CA 90001" -308432,Flatscreen TV,1,300,12/14/19 14:30,"19 Maple St, Boston, MA 02215" -308433,AAA Batteries (4-pack),2,2.99,12/28/19 16:25,"422 South St, Atlanta, GA 30301" -308434,Bose SoundSport Headphones,1,99.99,12/25/19 15:10,"836 Forest St, San Francisco, CA 94016" -308435,USB-C Charging Cable,1,11.95,12/08/19 10:07,"534 Walnut St, Los Angeles, CA 90001" -308436,27in 4K Gaming Monitor,1,389.99,12/22/19 21:04,"665 River St, San Francisco, CA 94016" -308437,20in Monitor,1,109.99,12/05/19 14:34,"467 North St, Los Angeles, CA 90001" -308438,Wired Headphones,1,11.99,12/04/19 18:23,"663 1st St, New York City, NY 10001" -308438,USB-C Charging Cable,1,11.95,12/04/19 18:23,"663 1st St, New York City, NY 10001" -308439,27in 4K Gaming Monitor,1,389.99,12/24/19 11:32,"801 Jefferson St, New York City, NY 10001" -308440,Lightning Charging Cable,1,14.95,12/07/19 21:00,"367 Maple St, Los Angeles, CA 90001" -308441,Lightning Charging Cable,1,14.95,12/04/19 02:04,"890 Meadow St, Austin, TX 73301" -308442,Wired Headphones,1,11.99,12/15/19 12:17,"807 4th St, Boston, MA 02215" -308443,20in Monitor,1,109.99,12/24/19 13:41,"646 Willow St, Los Angeles, CA 90001" -308444,AAA Batteries (4-pack),2,2.99,12/22/19 16:37,"14 10th St, Los Angeles, CA 90001" -308445,AAA Batteries (4-pack),1,2.99,12/19/19 16:45,"145 Church St, Seattle, WA 98101" -308446,USB-C Charging Cable,2,11.95,12/28/19 12:58,"318 North St, San Francisco, CA 94016" -308447,27in FHD Monitor,1,149.99,12/31/19 17:02,"150 Maple St, Austin, TX 73301" -308448,Google Phone,1,600,12/10/19 14:06,"452 8th St, San Francisco, CA 94016" -308449,AAA Batteries (4-pack),1,2.99,12/25/19 13:33,"370 Elm St, Boston, MA 02215" -308450,USB-C Charging Cable,2,11.95,12/03/19 19:23,"388 Ridge St, Austin, TX 73301" -308450,Wired Headphones,1,11.99,12/03/19 19:23,"388 Ridge St, Austin, TX 73301" -308451,Apple Airpods Headphones,1,150,12/09/19 23:31,"720 11th St, San Francisco, CA 94016" -308452,USB-C Charging Cable,1,11.95,12/01/19 16:02,"92 Lakeview St, Portland, OR 97035" -308453,27in FHD Monitor,1,149.99,12/29/19 09:10,"717 2nd St, Dallas, TX 75001" -308453,AAA Batteries (4-pack),2,2.99,12/29/19 09:10,"717 2nd St, Dallas, TX 75001" -308454,Bose SoundSport Headphones,1,99.99,12/05/19 14:40,"537 Adams St, Portland, OR 97035" -308455,Wired Headphones,1,11.99,12/02/19 20:45,"849 7th St, Portland, OR 97035" -308456,USB-C Charging Cable,1,11.95,12/24/19 16:08,"473 Highland St, San Francisco, CA 94016" -308457,Wired Headphones,1,11.99,12/07/19 10:40,"110 Pine St, New York City, NY 10001" -308458,34in Ultrawide Monitor,1,379.99,12/17/19 10:12,"886 Madison St, New York City, NY 10001" -308459,Flatscreen TV,1,300,12/17/19 14:27,"431 5th St, New York City, NY 10001" -308460,AAA Batteries (4-pack),1,2.99,12/22/19 18:18,"230 5th St, San Francisco, CA 94016" -308461,Lightning Charging Cable,1,14.95,12/31/19 10:44,"966 12th St, Seattle, WA 98101" -308462,AAA Batteries (4-pack),2,2.99,12/04/19 10:58,"692 Lincoln St, San Francisco, CA 94016" -308463,34in Ultrawide Monitor,1,379.99,12/08/19 19:55,"827 Chestnut St, San Francisco, CA 94016" -308464,20in Monitor,1,109.99,12/05/19 15:44,"521 River St, Austin, TX 73301" -308465,Flatscreen TV,1,300,12/11/19 00:33,"368 West St, Boston, MA 02215" -308466,AA Batteries (4-pack),1,3.84,12/04/19 12:28,"314 Lincoln St, Austin, TX 73301" -308467,Wired Headphones,1,11.99,12/13/19 10:59,"748 North St, San Francisco, CA 94016" -308468,Lightning Charging Cable,1,14.95,12/07/19 18:12,"195 Hickory St, Dallas, TX 75001" -308469,Vareebadd Phone,1,400,12/04/19 21:46,"907 Willow St, Atlanta, GA 30301" -308470,Bose SoundSport Headphones,1,99.99,12/28/19 23:07,"715 Washington St, San Francisco, CA 94016" -308471,Apple Airpods Headphones,1,150,12/26/19 10:14,"30 6th St, Austin, TX 73301" -308472,27in 4K Gaming Monitor,1,389.99,12/05/19 19:40,"711 Hickory St, Portland, ME 04101" -308473,Vareebadd Phone,1,400,12/20/19 03:53,"381 Lake St, Boston, MA 02215" -308474,Apple Airpods Headphones,1,150,12/01/19 08:52,"484 Washington St, Portland, OR 97035" -308475,Bose SoundSport Headphones,1,99.99,12/15/19 22:58,"33 Pine St, Los Angeles, CA 90001" -308476,Bose SoundSport Headphones,1,99.99,12/05/19 09:47,"822 Elm St, New York City, NY 10001" -308477,Bose SoundSport Headphones,1,99.99,12/18/19 22:30,"838 Spruce St, Seattle, WA 98101" -308478,Wired Headphones,1,11.99,12/14/19 06:43,"397 Cedar St, San Francisco, CA 94016" -308479,Bose SoundSport Headphones,1,99.99,12/19/19 07:02,"190 10th St, Atlanta, GA 30301" -308480,AA Batteries (4-pack),1,3.84,12/09/19 21:00,"406 Lincoln St, Dallas, TX 75001" -308481,Apple Airpods Headphones,1,150,12/02/19 19:22,"339 Spruce St, San Francisco, CA 94016" -308482,iPhone,1,700,12/21/19 19:23,"866 1st St, New York City, NY 10001" -308483,Lightning Charging Cable,1,14.95,12/05/19 12:26,"527 4th St, Los Angeles, CA 90001" -308484,USB-C Charging Cable,1,11.95,12/31/19 22:54,"711 Lake St, New York City, NY 10001" -308485,ThinkPad Laptop,1,999.99,12/21/19 15:00,"175 Highland St, New York City, NY 10001" -308486,Lightning Charging Cable,1,14.95,12/25/19 15:38,"792 2nd St, San Francisco, CA 94016" -308487,Bose SoundSport Headphones,1,99.99,12/17/19 14:23,"811 Lakeview St, New York City, NY 10001" -308488,AA Batteries (4-pack),1,3.84,12/21/19 13:14,"239 8th St, Boston, MA 02215" -308489,AAA Batteries (4-pack),1,2.99,12/03/19 20:35,"170 6th St, San Francisco, CA 94016" -308490,Bose SoundSport Headphones,1,99.99,12/14/19 11:50,"78 Spruce St, Atlanta, GA 30301" -308491,ThinkPad Laptop,1,999.99,12/18/19 20:47,"488 2nd St, San Francisco, CA 94016" -308492,AA Batteries (4-pack),2,3.84,12/22/19 21:17,"21 Walnut St, San Francisco, CA 94016" -308493,Wired Headphones,1,11.99,12/21/19 11:33,"122 12th St, Atlanta, GA 30301" -308494,AA Batteries (4-pack),1,3.84,12/04/19 21:09,"816 Cedar St, Portland, ME 04101" -308495,ThinkPad Laptop,1,999.99,12/31/19 22:19,"825 Highland St, Los Angeles, CA 90001" -308496,AA Batteries (4-pack),2,3.84,12/21/19 19:16,"185 13th St, New York City, NY 10001" -308497,Lightning Charging Cable,1,14.95,12/11/19 11:06,"604 Forest St, Dallas, TX 75001" -308498,Lightning Charging Cable,1,14.95,12/21/19 11:36,"382 Sunset St, New York City, NY 10001" -308499,Wired Headphones,1,11.99,12/23/19 20:48,"55 Jefferson St, San Francisco, CA 94016" -308500,AAA Batteries (4-pack),1,2.99,12/27/19 15:33,"455 9th St, New York City, NY 10001" -308501,20in Monitor,1,109.99,12/24/19 17:24,"113 Willow St, Seattle, WA 98101" -308502,Apple Airpods Headphones,1,150,12/21/19 21:22,"486 Dogwood St, Portland, OR 97035" -308503,Lightning Charging Cable,1,14.95,12/11/19 21:23,"161 8th St, Seattle, WA 98101" -308504,AAA Batteries (4-pack),1,2.99,12/05/19 19:33,"571 7th St, San Francisco, CA 94016" -308505,iPhone,1,700,12/06/19 06:32,"280 6th St, Los Angeles, CA 90001" -308506,Wired Headphones,1,11.99,12/17/19 18:16,"371 Adams St, Seattle, WA 98101" -308507,Apple Airpods Headphones,1,150,12/14/19 16:03,"787 Park St, Dallas, TX 75001" -308507,AA Batteries (4-pack),2,3.84,12/14/19 16:03,"787 Park St, Dallas, TX 75001" -308508,Bose SoundSport Headphones,1,99.99,12/16/19 17:33,"651 Jefferson St, Atlanta, GA 30301" -308509,AAA Batteries (4-pack),4,2.99,12/29/19 16:18,"737 Center St, Boston, MA 02215" -308510,USB-C Charging Cable,1,11.95,12/29/19 21:35,"652 Walnut St, San Francisco, CA 94016" -308511,Bose SoundSport Headphones,1,99.99,12/28/19 09:56,"406 14th St, Seattle, WA 98101" -308512,AAA Batteries (4-pack),2,2.99,12/23/19 15:59,"925 Dogwood St, Los Angeles, CA 90001" -308513,Wired Headphones,1,11.99,12/07/19 08:11,"353 Wilson St, Portland, ME 04101" -308514,Apple Airpods Headphones,1,150,12/12/19 03:31,"258 Willow St, Atlanta, GA 30301" -308515,Apple Airpods Headphones,1,150,12/18/19 00:30,"113 Walnut St, New York City, NY 10001" -308516,27in FHD Monitor,1,149.99,12/29/19 14:15,"554 South St, San Francisco, CA 94016" -308517,Lightning Charging Cable,1,14.95,12/06/19 19:20,"481 12th St, Portland, OR 97035" -308518,Apple Airpods Headphones,1,150,12/08/19 21:02,"233 North St, Dallas, TX 75001" -308519,27in 4K Gaming Monitor,1,389.99,12/17/19 15:42,"438 Center St, Boston, MA 02215" -308520,Vareebadd Phone,1,400,12/31/19 16:27,"27 Maple St, Dallas, TX 75001" -308521,iPhone,1,700,12/27/19 11:33,"988 Walnut St, Seattle, WA 98101" -308522,USB-C Charging Cable,1,11.95,12/05/19 20:22,"355 Sunset St, New York City, NY 10001" -308523,34in Ultrawide Monitor,1,379.99,12/11/19 18:10,"287 14th St, Portland, OR 97035" -308524,ThinkPad Laptop,1,999.99,12/06/19 10:33,"568 Spruce St, Atlanta, GA 30301" -308525,34in Ultrawide Monitor,1,379.99,12/17/19 10:13,"702 Dogwood St, San Francisco, CA 94016" -308526,Bose SoundSport Headphones,1,99.99,12/18/19 18:56,"320 5th St, New York City, NY 10001" -308527,Vareebadd Phone,1,400,12/10/19 21:41,"615 Park St, Dallas, TX 75001" -308528,USB-C Charging Cable,1,11.95,12/16/19 01:15,"205 North St, San Francisco, CA 94016" -308529,Vareebadd Phone,1,400,12/14/19 07:53,"795 Walnut St, Seattle, WA 98101" -308530,Lightning Charging Cable,1,14.95,12/19/19 13:43,"545 River St, San Francisco, CA 94016" -308531,AA Batteries (4-pack),1,3.84,12/12/19 18:24,"440 River St, San Francisco, CA 94016" -308532,AAA Batteries (4-pack),1,2.99,12/04/19 17:44,"704 Dogwood St, San Francisco, CA 94016" -308533,ThinkPad Laptop,1,999.99,12/26/19 20:04,"397 Chestnut St, Atlanta, GA 30301" -308534,AA Batteries (4-pack),4,3.84,12/23/19 14:14,"245 Lake St, Austin, TX 73301" -308535,Lightning Charging Cable,1,14.95,12/26/19 11:12,"976 14th St, San Francisco, CA 94016" -308536,Wired Headphones,1,11.99,12/08/19 13:05,"465 9th St, Los Angeles, CA 90001" -308537,Flatscreen TV,1,300,12/28/19 21:28,"320 Jackson St, Los Angeles, CA 90001" -308538,20in Monitor,1,109.99,12/13/19 08:18,"945 Cedar St, Atlanta, GA 30301" -308539,Wired Headphones,2,11.99,12/04/19 18:55,"692 North St, San Francisco, CA 94016" -308540,Apple Airpods Headphones,1,150,12/10/19 20:38,"180 14th St, Boston, MA 02215" -308541,USB-C Charging Cable,1,11.95,12/17/19 16:56,"12 2nd St, San Francisco, CA 94016" -308542,27in 4K Gaming Monitor,1,389.99,12/19/19 19:03,"395 Highland St, Atlanta, GA 30301" -308543,Bose SoundSport Headphones,1,99.99,12/22/19 14:07,"366 Lake St, New York City, NY 10001" -308544,AA Batteries (4-pack),3,3.84,12/11/19 06:42,"607 Elm St, Dallas, TX 75001" -308545,Wired Headphones,1,11.99,12/18/19 15:25,"538 6th St, Dallas, TX 75001" -308546,Vareebadd Phone,1,400,12/13/19 10:39,"66 Sunset St, San Francisco, CA 94016" -308546,USB-C Charging Cable,1,11.95,12/13/19 10:39,"66 Sunset St, San Francisco, CA 94016" -308547,Lightning Charging Cable,1,14.95,12/17/19 19:39,"966 Johnson St, Seattle, WA 98101" -308548,AAA Batteries (4-pack),1,2.99,12/02/19 17:04,"647 Forest St, San Francisco, CA 94016" -308549,USB-C Charging Cable,1,11.95,12/22/19 16:08,"128 Lake St, San Francisco, CA 94016" -308550,Macbook Pro Laptop,1,1700,12/19/19 16:47,"974 Wilson St, Seattle, WA 98101" -308551,Macbook Pro Laptop,1,1700,12/17/19 08:12,"750 Cherry St, Seattle, WA 98101" -308552,USB-C Charging Cable,1,11.95,12/09/19 12:55,"811 Hickory St, Los Angeles, CA 90001" -308553,AAA Batteries (4-pack),1,2.99,12/13/19 13:15,"672 Main St, Boston, MA 02215" -308554,Google Phone,1,600,12/12/19 10:06,"544 4th St, Dallas, TX 75001" -308555,AAA Batteries (4-pack),1,2.99,12/27/19 15:20,"532 Cherry St, San Francisco, CA 94016" -308556,Lightning Charging Cable,1,14.95,12/29/19 07:16,"252 Hickory St, Atlanta, GA 30301" -308557,Flatscreen TV,1,300,12/09/19 19:47,"578 12th St, Atlanta, GA 30301" -308558,Flatscreen TV,1,300,12/26/19 10:11,"150 Cedar St, Los Angeles, CA 90001" -308559,20in Monitor,1,109.99,12/26/19 14:20,"3 Hill St, Atlanta, GA 30301" -308560,USB-C Charging Cable,1,11.95,12/13/19 16:34,"807 Jackson St, New York City, NY 10001" -308561,Lightning Charging Cable,1,14.95,12/08/19 12:22,"806 Madison St, Boston, MA 02215" -308562,Bose SoundSport Headphones,1,99.99,12/31/19 12:21,"754 Adams St, Atlanta, GA 30301" -308563,USB-C Charging Cable,1,11.95,12/09/19 22:46,"653 South St, Boston, MA 02215" -308564,Lightning Charging Cable,1,14.95,12/15/19 19:01,"132 River St, Austin, TX 73301" -308565,AAA Batteries (4-pack),1,2.99,12/10/19 20:48,"855 Cedar St, Portland, OR 97035" -308566,27in FHD Monitor,1,149.99,12/09/19 13:52,"423 Lakeview St, San Francisco, CA 94016" -308567,AA Batteries (4-pack),1,3.84,12/28/19 19:55,"676 Meadow St, San Francisco, CA 94016" -308568,AA Batteries (4-pack),1,3.84,12/19/19 13:28,"386 Highland St, Seattle, WA 98101" -308569,AAA Batteries (4-pack),2,2.99,12/02/19 21:20,"583 Hickory St, New York City, NY 10001" -308570,Wired Headphones,2,11.99,12/16/19 21:07,"964 Sunset St, Dallas, TX 75001" -308571,Lightning Charging Cable,1,14.95,12/22/19 19:26,"769 Cedar St, Seattle, WA 98101" -308572,AAA Batteries (4-pack),4,2.99,12/29/19 19:11,"17 Johnson St, Boston, MA 02215" -308573,AA Batteries (4-pack),2,3.84,12/12/19 13:26,"202 9th St, New York City, NY 10001" -308574,27in 4K Gaming Monitor,1,389.99,12/17/19 17:16,"318 Johnson St, San Francisco, CA 94016" -308575,Lightning Charging Cable,1,14.95,12/11/19 20:08,"964 Cedar St, Seattle, WA 98101" -308576,iPhone,1,700,12/09/19 19:01,"87 Church St, Los Angeles, CA 90001" -308576,Wired Headphones,1,11.99,12/09/19 19:01,"87 Church St, Los Angeles, CA 90001" -308577,AAA Batteries (4-pack),3,2.99,12/07/19 01:05,"614 Lincoln St, San Francisco, CA 94016" -308578,20in Monitor,1,109.99,12/18/19 00:33,"701 Lincoln St, New York City, NY 10001" -308579,Bose SoundSport Headphones,1,99.99,12/04/19 12:52,"722 Hill St, Boston, MA 02215" -308580,34in Ultrawide Monitor,1,379.99,12/17/19 09:29,"512 Pine St, Austin, TX 73301" -308581,AAA Batteries (4-pack),1,2.99,12/30/19 11:35,"220 8th St, Seattle, WA 98101" -308582,Apple Airpods Headphones,1,150,12/30/19 04:01,"963 Walnut St, New York City, NY 10001" -308583,USB-C Charging Cable,1,11.95,12/01/19 07:31,"144 Madison St, San Francisco, CA 94016" -308584,AA Batteries (4-pack),1,3.84,12/20/19 23:03,"593 South St, New York City, NY 10001" -308585,Bose SoundSport Headphones,1,99.99,12/11/19 22:31,"431 7th St, Seattle, WA 98101" -308586,27in FHD Monitor,1,149.99,12/28/19 13:53,"501 Johnson St, New York City, NY 10001" -308587,Vareebadd Phone,1,400,12/21/19 19:08,"29 Willow St, Boston, MA 02215" -308588,Lightning Charging Cable,1,14.95,12/11/19 15:23,"106 Chestnut St, New York City, NY 10001" -308589,Flatscreen TV,1,300,12/17/19 11:50,"644 Park St, New York City, NY 10001" -308590,Wired Headphones,1,11.99,12/20/19 23:25,"190 6th St, San Francisco, CA 94016" -308591,iPhone,1,700,12/12/19 23:16,"431 South St, Boston, MA 02215" -308591,Lightning Charging Cable,1,14.95,12/12/19 23:16,"431 South St, Boston, MA 02215" -308592,USB-C Charging Cable,1,11.95,12/11/19 15:51,"496 10th St, San Francisco, CA 94016" -308593,20in Monitor,1,109.99,12/20/19 18:57,"950 Hickory St, Portland, OR 97035" -308594,USB-C Charging Cable,2,11.95,12/18/19 18:35,"164 11th St, Portland, ME 04101" -308594,Vareebadd Phone,1,400,12/18/19 18:35,"164 11th St, Portland, ME 04101" -308595,Lightning Charging Cable,1,14.95,12/10/19 19:08,"863 South St, Boston, MA 02215" -308596,AA Batteries (4-pack),2,3.84,12/10/19 18:38,"883 Maple St, Atlanta, GA 30301" -308597,Bose SoundSport Headphones,1,99.99,12/18/19 09:32,"21 7th St, San Francisco, CA 94016" -308598,Macbook Pro Laptop,1,1700,12/15/19 13:00,"593 Spruce St, San Francisco, CA 94016" -308599,AA Batteries (4-pack),1,3.84,12/05/19 19:00,"49 Cherry St, Seattle, WA 98101" -308600,Flatscreen TV,1,300,12/17/19 07:43,"875 West St, Portland, OR 97035" -308601,AA Batteries (4-pack),2,3.84,12/18/19 20:52,"211 10th St, Seattle, WA 98101" -308602,AA Batteries (4-pack),2,3.84,12/11/19 12:36,"503 Pine St, New York City, NY 10001" -308603,Bose SoundSport Headphones,1,99.99,12/03/19 08:36,"428 14th St, San Francisco, CA 94016" -308604,Wired Headphones,1,11.99,12/06/19 10:27,"216 Chestnut St, San Francisco, CA 94016" -308605,Wired Headphones,1,11.99,12/03/19 12:18,"928 Sunset St, San Francisco, CA 94016" -308606,Macbook Pro Laptop,1,1700,12/07/19 18:15,"952 River St, Seattle, WA 98101" -308607,Apple Airpods Headphones,1,150,12/11/19 15:12,"918 Sunset St, New York City, NY 10001" -308608,Google Phone,1,600,12/13/19 12:58,"284 Cedar St, Dallas, TX 75001" -308608,Wired Headphones,2,11.99,12/13/19 12:58,"284 Cedar St, Dallas, TX 75001" -308609,Bose SoundSport Headphones,1,99.99,12/01/19 09:18,"561 Lincoln St, Atlanta, GA 30301" -308610,USB-C Charging Cable,2,11.95,12/31/19 17:43,"212 14th St, Boston, MA 02215" -308611,Bose SoundSport Headphones,1,99.99,12/20/19 11:32,"434 Jefferson St, New York City, NY 10001" -308612,34in Ultrawide Monitor,1,379.99,12/21/19 19:31,"930 Walnut St, Boston, MA 02215" -308613,20in Monitor,1,109.99,12/28/19 17:14,"181 Spruce St, San Francisco, CA 94016" -308613,Wired Headphones,1,11.99,12/28/19 17:14,"181 Spruce St, San Francisco, CA 94016" -308614,AA Batteries (4-pack),3,3.84,12/27/19 20:45,"850 Chestnut St, Boston, MA 02215" -308615,AA Batteries (4-pack),2,3.84,12/13/19 18:58,"882 Walnut St, Seattle, WA 98101" -308616,AAA Batteries (4-pack),2,2.99,12/04/19 12:10,"231 Lake St, Boston, MA 02215" -308617,AAA Batteries (4-pack),1,2.99,12/26/19 13:08,"581 Cherry St, Boston, MA 02215" -308618,Google Phone,1,600,12/17/19 15:32,"446 9th St, San Francisco, CA 94016" -308619,Flatscreen TV,1,300,12/22/19 18:56,"871 Washington St, San Francisco, CA 94016" -308620,USB-C Charging Cable,1,11.95,12/24/19 14:43,"270 9th St, San Francisco, CA 94016" -308621,AA Batteries (4-pack),1,3.84,12/08/19 20:56,"568 10th St, Portland, OR 97035" -308622,Google Phone,1,600,12/12/19 13:36,"586 Main St, Dallas, TX 75001" -308623,27in 4K Gaming Monitor,1,389.99,12/08/19 14:32,"808 Lake St, Los Angeles, CA 90001" -308624,Bose SoundSport Headphones,1,99.99,12/22/19 22:03,"408 6th St, Atlanta, GA 30301" -308625,USB-C Charging Cable,1,11.95,12/09/19 22:52,"140 10th St, Atlanta, GA 30301" -308626,AAA Batteries (4-pack),3,2.99,12/30/19 20:56,"510 Forest St, San Francisco, CA 94016" -308627,AA Batteries (4-pack),1,3.84,12/17/19 02:08,"27 1st St, Atlanta, GA 30301" -308628,Macbook Pro Laptop,1,1700,12/14/19 11:02,"266 Willow St, Boston, MA 02215" -308629,27in FHD Monitor,1,149.99,12/09/19 21:43,"268 Hill St, Austin, TX 73301" -308630,AAA Batteries (4-pack),1,2.99,12/14/19 13:46,"597 10th St, Los Angeles, CA 90001" -308631,AAA Batteries (4-pack),1,2.99,12/13/19 11:24,"756 1st St, San Francisco, CA 94016" -308632,Apple Airpods Headphones,1,150,12/17/19 18:21,"451 2nd St, San Francisco, CA 94016" -308633,AA Batteries (4-pack),1,3.84,12/25/19 01:14,"142 Maple St, San Francisco, CA 94016" -308634,Apple Airpods Headphones,1,150,12/10/19 02:55,"862 11th St, Los Angeles, CA 90001" -308635,Bose SoundSport Headphones,1,99.99,12/17/19 12:04,"723 Washington St, Boston, MA 02215" -308636,AAA Batteries (4-pack),1,2.99,12/14/19 17:19,"840 Jefferson St, Los Angeles, CA 90001" -308637,USB-C Charging Cable,1,11.95,12/09/19 15:32,"87 Jackson St, Boston, MA 02215" -308638,Wired Headphones,1,11.99,12/30/19 12:36,"221 4th St, Los Angeles, CA 90001" -308639,Apple Airpods Headphones,1,150,12/18/19 09:42,"867 Lakeview St, Portland, ME 04101" -308640,iPhone,1,700,12/20/19 09:57,"355 Cherry St, San Francisco, CA 94016" -308641,Lightning Charging Cable,1,14.95,12/20/19 16:37,"858 Sunset St, Dallas, TX 75001" -308642,Lightning Charging Cable,1,14.95,12/26/19 01:51,"905 Hill St, Seattle, WA 98101" -308643,Macbook Pro Laptop,1,1700,12/16/19 20:25,"865 Hickory St, San Francisco, CA 94016" -308644,AAA Batteries (4-pack),2,2.99,12/15/19 04:30,"640 Lake St, Atlanta, GA 30301" -308645,Bose SoundSport Headphones,1,99.99,12/21/19 15:58,"183 Ridge St, San Francisco, CA 94016" -308646,Bose SoundSport Headphones,1,99.99,12/03/19 19:34,"861 Madison St, Portland, OR 97035" -308647,iPhone,1,700,12/18/19 01:28,"326 9th St, San Francisco, CA 94016" -308648,AAA Batteries (4-pack),2,2.99,12/28/19 14:55,"514 12th St, San Francisco, CA 94016" -308649,Wired Headphones,1,11.99,12/19/19 19:49,"281 Maple St, New York City, NY 10001" -308650,Bose SoundSport Headphones,1,99.99,12/24/19 09:56,"849 South St, Seattle, WA 98101" -308651,Apple Airpods Headphones,1,150,12/18/19 12:29,"408 Dogwood St, San Francisco, CA 94016" -308652,AA Batteries (4-pack),1,3.84,12/08/19 21:02,"162 2nd St, San Francisco, CA 94016" -308653,Bose SoundSport Headphones,1,99.99,12/06/19 10:36,"766 Walnut St, Portland, ME 04101" -308654,Wired Headphones,1,11.99,12/12/19 09:39,"872 Main St, Los Angeles, CA 90001" -308655,Apple Airpods Headphones,1,150,12/01/19 13:23,"820 Hill St, Atlanta, GA 30301" -308656,20in Monitor,1,109.99,12/28/19 06:35,"543 Adams St, San Francisco, CA 94016" -308657,Apple Airpods Headphones,1,150,12/16/19 16:02,"419 5th St, New York City, NY 10001" -308658,AAA Batteries (4-pack),2,2.99,12/28/19 14:51,"231 Willow St, New York City, NY 10001" -308659,USB-C Charging Cable,1,11.95,12/07/19 00:23,"597 Pine St, Los Angeles, CA 90001" -308660,iPhone,1,700,12/13/19 18:15,"299 Cherry St, Portland, ME 04101" -308660,Lightning Charging Cable,1,14.95,12/13/19 18:15,"299 Cherry St, Portland, ME 04101" -308661,AAA Batteries (4-pack),1,2.99,12/09/19 11:06,"268 Forest St, Los Angeles, CA 90001" -308662,Wired Headphones,1,11.99,12/27/19 07:35,"408 Walnut St, Portland, OR 97035" -308663,USB-C Charging Cable,1,11.95,12/07/19 19:26,"410 North St, Dallas, TX 75001" -308664,Apple Airpods Headphones,1,150,12/12/19 23:05,"536 Cherry St, San Francisco, CA 94016" -308665,34in Ultrawide Monitor,1,379.99,12/12/19 11:30,"44 Pine St, New York City, NY 10001" -308666,AAA Batteries (4-pack),1,2.99,12/31/19 20:27,"239 Lincoln St, Los Angeles, CA 90001" -308667,20in Monitor,1,109.99,12/29/19 18:16,"40 Elm St, Boston, MA 02215" -308668,AA Batteries (4-pack),2,3.84,12/04/19 20:21,"49 10th St, Atlanta, GA 30301" -,,,,, -308669,AAA Batteries (4-pack),1,2.99,12/07/19 18:01,"908 Church St, Dallas, TX 75001" -308670,Google Phone,1,600,12/23/19 11:44,"314 Lakeview St, Portland, ME 04101" -308670,USB-C Charging Cable,1,11.95,12/23/19 11:44,"314 Lakeview St, Portland, ME 04101" -308671,27in 4K Gaming Monitor,1,389.99,12/28/19 10:52,"773 Johnson St, San Francisco, CA 94016" -308671,27in 4K Gaming Monitor,1,389.99,12/28/19 10:52,"773 Johnson St, San Francisco, CA 94016" -308672,Google Phone,1,600,12/27/19 17:24,"24 Ridge St, New York City, NY 10001" -308673,Lightning Charging Cable,1,14.95,12/14/19 22:19,"891 Jackson St, Los Angeles, CA 90001" -308674,iPhone,1,700,12/16/19 22:08,"171 Lincoln St, Los Angeles, CA 90001" -308675,Wired Headphones,1,11.99,12/02/19 14:47,"152 1st St, San Francisco, CA 94016" -308676,Apple Airpods Headphones,1,150,12/27/19 20:37,"605 Jackson St, San Francisco, CA 94016" -308677,USB-C Charging Cable,1,11.95,12/03/19 08:07,"123 Spruce St, Los Angeles, CA 90001" -308678,27in 4K Gaming Monitor,1,389.99,12/06/19 21:17,"968 12th St, San Francisco, CA 94016" -308679,34in Ultrawide Monitor,1,379.99,12/23/19 14:47,"946 Maple St, Los Angeles, CA 90001" -308680,AAA Batteries (4-pack),4,2.99,12/17/19 16:46,"17 Sunset St, San Francisco, CA 94016" -308681,Wired Headphones,1,11.99,12/19/19 00:02,"894 Ridge St, Los Angeles, CA 90001" -308682,Apple Airpods Headphones,1,150,12/26/19 16:49,"871 Willow St, Atlanta, GA 30301" -308683,Wired Headphones,1,11.99,12/02/19 20:29,"943 10th St, San Francisco, CA 94016" -308684,USB-C Charging Cable,1,11.95,12/21/19 02:38,"794 9th St, Dallas, TX 75001" -308685,AA Batteries (4-pack),1,3.84,12/13/19 15:52,"667 6th St, San Francisco, CA 94016" -308686,iPhone,1,700,12/01/19 13:08,"634 West St, Seattle, WA 98101" -308687,Wired Headphones,1,11.99,12/01/19 16:13,"424 Church St, San Francisco, CA 94016" -308688,Google Phone,1,600,12/20/19 09:07,"324 Elm St, San Francisco, CA 94016" -308689,Bose SoundSport Headphones,1,99.99,12/07/19 08:45,"226 Johnson St, Boston, MA 02215" -308690,Wired Headphones,1,11.99,12/02/19 20:51,"559 River St, Los Angeles, CA 90001" -308691,Macbook Pro Laptop,1,1700,12/26/19 20:18,"257 6th St, San Francisco, CA 94016" -308692,AAA Batteries (4-pack),1,2.99,12/04/19 02:07,"486 12th St, Los Angeles, CA 90001" -308693,Wired Headphones,1,11.99,12/04/19 19:51,"810 Washington St, San Francisco, CA 94016" -308694,Wired Headphones,1,11.99,12/25/19 14:54,"995 Main St, Los Angeles, CA 90001" -308695,USB-C Charging Cable,1,11.95,12/27/19 13:34,"924 Chestnut St, Portland, OR 97035" -308696,27in 4K Gaming Monitor,1,389.99,12/26/19 14:08,"716 4th St, Seattle, WA 98101" -308697,AAA Batteries (4-pack),1,2.99,12/31/19 20:09,"597 Lincoln St, San Francisco, CA 94016" -308698,Bose SoundSport Headphones,1,99.99,12/09/19 18:55,"420 River St, Boston, MA 02215" -308699,27in 4K Gaming Monitor,1,389.99,12/13/19 11:42,"33 Walnut St, Atlanta, GA 30301" -308700,34in Ultrawide Monitor,1,379.99,12/16/19 14:27,"239 7th St, San Francisco, CA 94016" -308701,Apple Airpods Headphones,1,150,12/30/19 14:49,"656 Church St, Boston, MA 02215" -308702,34in Ultrawide Monitor,1,379.99,12/30/19 14:45,"349 1st St, Austin, TX 73301" -308703,Lightning Charging Cable,1,14.95,12/04/19 22:56,"80 1st St, Dallas, TX 75001" -308704,Lightning Charging Cable,1,14.95,12/05/19 22:53,"530 2nd St, New York City, NY 10001" -308705,USB-C Charging Cable,1,11.95,12/14/19 15:06,"805 11th St, Boston, MA 02215" -308706,Lightning Charging Cable,1,14.95,12/24/19 15:30,"318 South St, Seattle, WA 98101" -308707,AA Batteries (4-pack),1,3.84,12/02/19 09:45,"353 Elm St, San Francisco, CA 94016" -308708,AAA Batteries (4-pack),1,2.99,12/29/19 01:08,"369 Hickory St, Dallas, TX 75001" -308709,Bose SoundSport Headphones,1,99.99,12/24/19 14:18,"747 10th St, Boston, MA 02215" -308710,Flatscreen TV,1,300,12/20/19 08:04,"534 Park St, Los Angeles, CA 90001" -308711,27in FHD Monitor,1,149.99,12/19/19 20:09,"695 13th St, Dallas, TX 75001" -308712,20in Monitor,1,109.99,12/21/19 13:47,"846 11th St, San Francisco, CA 94016" -308713,Bose SoundSport Headphones,1,99.99,12/22/19 06:15,"309 Lincoln St, San Francisco, CA 94016" -308714,USB-C Charging Cable,1,11.95,12/05/19 19:04,"448 Cherry St, Los Angeles, CA 90001" -308715,AAA Batteries (4-pack),2,2.99,12/04/19 14:15,"861 Hill St, Atlanta, GA 30301" -308716,USB-C Charging Cable,1,11.95,12/14/19 16:50,"831 Walnut St, Austin, TX 73301" -308717,AA Batteries (4-pack),1,3.84,12/17/19 13:10,"282 Sunset St, Boston, MA 02215" -308718,Lightning Charging Cable,1,14.95,12/11/19 06:39,"933 North St, Boston, MA 02215" -308719,USB-C Charging Cable,1,11.95,12/01/19 18:37,"103 11th St, Seattle, WA 98101" -308720,AAA Batteries (4-pack),1,2.99,12/12/19 11:31,"813 Johnson St, Seattle, WA 98101" -308721,AA Batteries (4-pack),1,3.84,12/26/19 08:54,"176 Walnut St, New York City, NY 10001" -308722,Wired Headphones,1,11.99,12/28/19 09:20,"260 7th St, Los Angeles, CA 90001" -308723,Wired Headphones,1,11.99,12/19/19 22:10,"876 Lincoln St, Seattle, WA 98101" -308724,Lightning Charging Cable,1,14.95,12/03/19 13:41,"785 Jefferson St, New York City, NY 10001" -308725,Wired Headphones,1,11.99,12/06/19 00:54,"462 Lakeview St, Austin, TX 73301" -308726,iPhone,1,700,12/16/19 17:28,"697 Meadow St, New York City, NY 10001" -308726,Lightning Charging Cable,1,14.95,12/16/19 17:28,"697 Meadow St, New York City, NY 10001" -308727,USB-C Charging Cable,1,11.95,12/04/19 14:14,"525 Sunset St, Boston, MA 02215" -308728,AAA Batteries (4-pack),1,2.99,12/04/19 10:29,"971 Sunset St, Seattle, WA 98101" -308729,AA Batteries (4-pack),1,3.84,12/01/19 21:21,"642 North St, New York City, NY 10001" -308730,Apple Airpods Headphones,1,150,12/03/19 18:25,"879 Willow St, Dallas, TX 75001" -308731,Lightning Charging Cable,1,14.95,12/05/19 22:30,"894 Adams St, San Francisco, CA 94016" -308732,27in FHD Monitor,1,149.99,12/07/19 09:35,"527 Hickory St, New York City, NY 10001" -308733,iPhone,1,700,12/09/19 21:31,"492 Jefferson St, Seattle, WA 98101" -308734,iPhone,1,700,12/26/19 12:48,"270 8th St, Seattle, WA 98101" -308735,34in Ultrawide Monitor,1,379.99,12/14/19 15:59,"113 Washington St, Portland, OR 97035" -308736,27in 4K Gaming Monitor,1,389.99,12/14/19 20:29,"938 14th St, San Francisco, CA 94016" -308737,AA Batteries (4-pack),1,3.84,12/21/19 09:30,"841 Walnut St, San Francisco, CA 94016" -308738,Apple Airpods Headphones,1,150,12/24/19 14:22,"782 Hill St, Portland, OR 97035" -308739,Wired Headphones,1,11.99,12/12/19 14:51,"833 12th St, New York City, NY 10001" -308740,AAA Batteries (4-pack),2,2.99,12/10/19 21:38,"117 Highland St, San Francisco, CA 94016" -308741,Google Phone,1,600,12/13/19 01:41,"482 Meadow St, New York City, NY 10001" -308741,AA Batteries (4-pack),1,3.84,12/13/19 01:41,"482 Meadow St, New York City, NY 10001" -308742,Bose SoundSport Headphones,1,99.99,12/29/19 08:41,"292 4th St, New York City, NY 10001" -308743,Wired Headphones,1,11.99,12/10/19 12:50,"251 West St, San Francisco, CA 94016" -308744,Lightning Charging Cable,2,14.95,12/07/19 22:54,"213 2nd St, Los Angeles, CA 90001" -308745,Macbook Pro Laptop,1,1700,12/25/19 21:21,"52 8th St, San Francisco, CA 94016" -308746,Macbook Pro Laptop,1,1700,12/07/19 12:00,"333 Center St, San Francisco, CA 94016" -308747,AA Batteries (4-pack),1,3.84,12/28/19 22:08,"855 Wilson St, New York City, NY 10001" -308748,Wired Headphones,1,11.99,12/23/19 12:45,"164 Wilson St, Portland, OR 97035" -308749,Lightning Charging Cable,1,14.95,12/18/19 21:36,"689 Main St, Atlanta, GA 30301" -308750,Bose SoundSport Headphones,1,99.99,12/24/19 20:06,"39 Main St, New York City, NY 10001" -308751,USB-C Charging Cable,1,11.95,12/31/19 20:17,"204 Sunset St, New York City, NY 10001" -308752,27in 4K Gaming Monitor,1,389.99,12/07/19 19:09,"226 9th St, Atlanta, GA 30301" -308753,AAA Batteries (4-pack),2,2.99,12/08/19 22:31,"943 7th St, New York City, NY 10001" -308754,Lightning Charging Cable,1,14.95,12/31/19 00:16,"148 West St, Los Angeles, CA 90001" -308755,Bose SoundSport Headphones,1,99.99,12/29/19 00:15,"500 Highland St, Atlanta, GA 30301" -308756,LG Dryer,1,600.0,12/10/19 18:05,"750 Maple St, San Francisco, CA 94016" -308757,USB-C Charging Cable,1,11.95,12/25/19 14:24,"124 Wilson St, New York City, NY 10001" -308758,AAA Batteries (4-pack),1,2.99,12/23/19 18:13,"522 Forest St, New York City, NY 10001" -308759,USB-C Charging Cable,1,11.95,12/27/19 00:24,"274 Adams St, Boston, MA 02215" -308760,Lightning Charging Cable,1,14.95,12/01/19 15:09,"729 Center St, New York City, NY 10001" -308761,USB-C Charging Cable,1,11.95,12/10/19 01:19,"537 11th St, Portland, OR 97035" -308762,Wired Headphones,1,11.99,12/18/19 21:19,"84 2nd St, Austin, TX 73301" -308763,AAA Batteries (4-pack),1,2.99,12/10/19 16:33,"919 North St, Dallas, TX 75001" -308764,27in 4K Gaming Monitor,1,389.99,12/23/19 09:40,"768 2nd St, Boston, MA 02215" -308765,27in FHD Monitor,1,149.99,12/16/19 15:38,"526 11th St, San Francisco, CA 94016" -308766,Apple Airpods Headphones,1,150,12/22/19 13:42,"471 Chestnut St, San Francisco, CA 94016" -308767,Lightning Charging Cable,2,14.95,12/17/19 07:32,"473 Park St, New York City, NY 10001" -308768,USB-C Charging Cable,1,11.95,12/05/19 11:07,"236 4th St, Boston, MA 02215" -308769,Wired Headphones,2,11.99,12/17/19 07:12,"428 Spruce St, New York City, NY 10001" -308770,AAA Batteries (4-pack),2,2.99,12/21/19 22:03,"974 Washington St, New York City, NY 10001" -308771,Apple Airpods Headphones,1,150,12/26/19 00:11,"362 River St, Boston, MA 02215" -308772,Lightning Charging Cable,1,14.95,12/06/19 13:58,"756 Wilson St, San Francisco, CA 94016" -308773,Flatscreen TV,1,300,12/08/19 12:56,"753 12th St, Dallas, TX 75001" -308774,Bose SoundSport Headphones,1,99.99,12/12/19 23:10,"981 Highland St, Boston, MA 02215" -308775,Bose SoundSport Headphones,1,99.99,12/28/19 19:05,"874 6th St, Seattle, WA 98101" -308776,Apple Airpods Headphones,1,150,12/11/19 16:48,"329 1st St, Los Angeles, CA 90001" -308777,27in FHD Monitor,1,149.99,12/25/19 08:28,"469 Meadow St, Portland, OR 97035" -308778,Lightning Charging Cable,1,14.95,12/10/19 10:58,"591 Cedar St, Los Angeles, CA 90001" -308779,Macbook Pro Laptop,1,1700,12/18/19 20:50,"505 10th St, San Francisco, CA 94016" -308780,Bose SoundSport Headphones,1,99.99,12/08/19 13:27,"961 West St, Dallas, TX 75001" -308781,Wired Headphones,1,11.99,12/11/19 12:57,"586 9th St, San Francisco, CA 94016" -308782,AA Batteries (4-pack),2,3.84,12/08/19 11:26,"234 Maple St, San Francisco, CA 94016" -308783,Flatscreen TV,1,300,12/21/19 10:37,"564 West St, Los Angeles, CA 90001" -308784,AA Batteries (4-pack),1,3.84,12/15/19 16:54,"648 12th St, Los Angeles, CA 90001" -308785,Apple Airpods Headphones,1,150,12/15/19 20:35,"532 Spruce St, San Francisco, CA 94016" -308786,USB-C Charging Cable,1,11.95,12/31/19 10:22,"198 7th St, San Francisco, CA 94016" -308787,iPhone,1,700,12/25/19 23:45,"530 Center St, Seattle, WA 98101" -308787,Apple Airpods Headphones,1,150,12/25/19 23:45,"530 Center St, Seattle, WA 98101" -308788,iPhone,1,700,12/04/19 09:23,"319 Maple St, New York City, NY 10001" -308789,Google Phone,1,600,12/03/19 20:40,"359 Center St, San Francisco, CA 94016" -308790,Wired Headphones,1,11.99,12/07/19 20:50,"435 Hill St, New York City, NY 10001" -308791,Apple Airpods Headphones,1,150,12/24/19 20:29,"934 10th St, New York City, NY 10001" -308792,Lightning Charging Cable,1,14.95,12/14/19 16:41,"753 Cedar St, Boston, MA 02215" -308793,Wired Headphones,1,11.99,12/20/19 08:01,"370 Jefferson St, San Francisco, CA 94016" -308794,AAA Batteries (4-pack),1,2.99,12/03/19 12:09,"904 Willow St, New York City, NY 10001" -308795,iPhone,1,700,12/01/19 15:55,"623 Dogwood St, Atlanta, GA 30301" -308795,Apple Airpods Headphones,1,150,12/01/19 15:55,"623 Dogwood St, Atlanta, GA 30301" -308795,Wired Headphones,1,11.99,12/01/19 15:55,"623 Dogwood St, Atlanta, GA 30301" -308796,Wired Headphones,1,11.99,12/19/19 18:50,"315 4th St, San Francisco, CA 94016" -308797,USB-C Charging Cable,1,11.95,12/02/19 14:58,"294 10th St, Boston, MA 02215" -308797,ThinkPad Laptop,1,999.99,12/02/19 14:58,"294 10th St, Boston, MA 02215" -308798,Google Phone,1,600,12/21/19 16:18,"496 6th St, Dallas, TX 75001" -308799,Bose SoundSport Headphones,1,99.99,12/16/19 23:02,"680 Hickory St, New York City, NY 10001" -308800,Wired Headphones,1,11.99,12/29/19 22:49,"858 Elm St, New York City, NY 10001" -308801,Lightning Charging Cable,1,14.95,12/19/19 17:45,"843 Park St, San Francisco, CA 94016" -308802,USB-C Charging Cable,1,11.95,12/26/19 10:38,"251 Jackson St, San Francisco, CA 94016" -308803,AAA Batteries (4-pack),1,2.99,12/13/19 11:20,"534 8th St, San Francisco, CA 94016" -308804,Apple Airpods Headphones,1,150,12/26/19 12:27,"202 7th St, Los Angeles, CA 90001" -308805,Lightning Charging Cable,1,14.95,12/11/19 20:48,"181 Cherry St, New York City, NY 10001" -308806,Lightning Charging Cable,1,14.95,12/21/19 10:02,"623 Cherry St, Austin, TX 73301" -308807,AAA Batteries (4-pack),1,2.99,12/23/19 10:01,"835 14th St, Los Angeles, CA 90001" -308807,AAA Batteries (4-pack),2,2.99,12/23/19 10:01,"835 14th St, Los Angeles, CA 90001" -308808,USB-C Charging Cable,1,11.95,12/02/19 10:29,"104 10th St, San Francisco, CA 94016" -308809,Lightning Charging Cable,1,14.95,12/30/19 06:08,"407 Maple St, San Francisco, CA 94016" -308810,Lightning Charging Cable,1,14.95,12/19/19 12:05,"502 8th St, San Francisco, CA 94016" -308811,Apple Airpods Headphones,1,150,12/31/19 08:18,"478 2nd St, Portland, OR 97035" -308812,iPhone,1,700,12/14/19 13:06,"201 Ridge St, Boston, MA 02215" -308813,Wired Headphones,1,11.99,12/15/19 21:11,"6 Willow St, Boston, MA 02215" -308814,iPhone,1,700,12/10/19 16:16,"732 12th St, Seattle, WA 98101" -308815,AAA Batteries (4-pack),1,2.99,12/12/19 22:10,"451 West St, Los Angeles, CA 90001" -308816,Lightning Charging Cable,1,14.95,12/11/19 10:30,"10 Center St, Dallas, TX 75001" -308817,LG Washing Machine,1,600.0,12/23/19 14:34,"710 Dogwood St, Dallas, TX 75001" -308818,Lightning Charging Cable,1,14.95,12/09/19 16:31,"887 11th St, Atlanta, GA 30301" -308819,USB-C Charging Cable,1,11.95,12/15/19 16:38,"360 7th St, New York City, NY 10001" -308820,27in 4K Gaming Monitor,1,389.99,12/30/19 11:36,"980 8th St, Los Angeles, CA 90001" -308821,USB-C Charging Cable,1,11.95,12/06/19 01:01,"116 Cherry St, Austin, TX 73301" -308822,USB-C Charging Cable,1,11.95,12/07/19 11:20,"103 Spruce St, San Francisco, CA 94016" -308823,AAA Batteries (4-pack),1,2.99,12/07/19 04:04,"20 Jackson St, Los Angeles, CA 90001" -308824,20in Monitor,1,109.99,12/20/19 17:55,"251 5th St, Austin, TX 73301" -308825,ThinkPad Laptop,1,999.99,12/20/19 10:31,"68 Park St, Los Angeles, CA 90001" -308826,Apple Airpods Headphones,1,150,12/11/19 19:21,"354 Lake St, Austin, TX 73301" -308827,Google Phone,1,600,12/24/19 10:19,"786 11th St, Portland, ME 04101" -308828,Wired Headphones,1,11.99,12/24/19 15:23,"288 5th St, Los Angeles, CA 90001" -308829,Bose SoundSport Headphones,2,99.99,12/14/19 18:56,"138 Lincoln St, Los Angeles, CA 90001" -308830,AA Batteries (4-pack),1,3.84,12/28/19 19:53,"129 5th St, New York City, NY 10001" -308831,Wired Headphones,1,11.99,12/05/19 18:00,"188 Elm St, Boston, MA 02215" -308832,USB-C Charging Cable,1,11.95,12/29/19 15:02,"756 13th St, San Francisco, CA 94016" -308833,Apple Airpods Headphones,1,150,12/17/19 04:32,"411 Jackson St, Dallas, TX 75001" -308834,USB-C Charging Cable,1,11.95,12/31/19 10:40,"101 Cedar St, Boston, MA 02215" -308835,Lightning Charging Cable,1,14.95,12/30/19 14:38,"139 10th St, San Francisco, CA 94016" -308836,Bose SoundSport Headphones,1,99.99,12/31/19 21:46,"188 14th St, Seattle, WA 98101" -308837,27in FHD Monitor,1,149.99,12/25/19 22:08,"81 Walnut St, Portland, OR 97035" -308838,Lightning Charging Cable,1,14.95,12/01/19 18:56,"901 Park St, New York City, NY 10001" -308838,Google Phone,1,600,12/01/19 18:56,"901 Park St, New York City, NY 10001" -308839,USB-C Charging Cable,1,11.95,12/08/19 20:38,"376 4th St, Seattle, WA 98101" -308840,AAA Batteries (4-pack),1,2.99,12/05/19 13:06,"972 Elm St, San Francisco, CA 94016" -308841,Lightning Charging Cable,1,14.95,12/22/19 23:29,"664 North St, San Francisco, CA 94016" -308842,Wired Headphones,1,11.99,12/05/19 17:18,"120 River St, San Francisco, CA 94016" -308843,Bose SoundSport Headphones,1,99.99,12/18/19 21:03,"893 Center St, San Francisco, CA 94016" -308844,AA Batteries (4-pack),1,3.84,12/14/19 12:01,"773 Wilson St, Atlanta, GA 30301" -308845,USB-C Charging Cable,1,11.95,12/09/19 13:19,"923 Lincoln St, New York City, NY 10001" -308846,AA Batteries (4-pack),1,3.84,12/14/19 04:50,"414 Jackson St, Atlanta, GA 30301" -308847,Lightning Charging Cable,1,14.95,12/16/19 07:20,"471 2nd St, Portland, OR 97035" -308848,USB-C Charging Cable,1,11.95,12/02/19 10:34,"362 Hill St, Los Angeles, CA 90001" -308849,Lightning Charging Cable,1,14.95,12/12/19 13:42,"896 Johnson St, Atlanta, GA 30301" -308850,Wired Headphones,1,11.99,12/05/19 21:59,"472 Cedar St, Portland, OR 97035" -308851,Lightning Charging Cable,1,14.95,12/26/19 15:24,"562 Lake St, Boston, MA 02215" -308852,Wired Headphones,1,11.99,12/02/19 17:59,"22 11th St, Los Angeles, CA 90001" -308853,Lightning Charging Cable,1,14.95,12/21/19 13:59,"726 Elm St, New York City, NY 10001" -308854,Lightning Charging Cable,1,14.95,12/15/19 15:07,"347 Lakeview St, Atlanta, GA 30301" -308855,Lightning Charging Cable,2,14.95,12/31/19 11:54,"415 North St, San Francisco, CA 94016" -308856,Flatscreen TV,1,300,12/28/19 19:38,"221 Dogwood St, Los Angeles, CA 90001" -308857,AA Batteries (4-pack),1,3.84,12/29/19 20:01,"383 14th St, Seattle, WA 98101" -308858,AAA Batteries (4-pack),1,2.99,12/07/19 09:53,"697 Willow St, Boston, MA 02215" -308859,Google Phone,1,600,12/10/19 15:06,"177 Madison St, Dallas, TX 75001" -308860,USB-C Charging Cable,1,11.95,12/19/19 10:29,"507 Elm St, San Francisco, CA 94016" -308861,Lightning Charging Cable,1,14.95,12/21/19 20:53,"572 South St, Los Angeles, CA 90001" -308862,AAA Batteries (4-pack),1,2.99,12/16/19 11:35,"208 Sunset St, San Francisco, CA 94016" -308863,Apple Airpods Headphones,1,150,12/22/19 12:31,"215 6th St, Los Angeles, CA 90001" -308864,Wired Headphones,3,11.99,12/21/19 19:26,"202 Highland St, New York City, NY 10001" -308865,Google Phone,1,600,12/31/19 21:08,"307 6th St, San Francisco, CA 94016" -308866,27in 4K Gaming Monitor,1,389.99,12/24/19 23:13,"18 4th St, Atlanta, GA 30301" -308867,Lightning Charging Cable,1,14.95,12/11/19 14:55,"478 13th St, Los Angeles, CA 90001" -308868,Bose SoundSport Headphones,1,99.99,12/26/19 21:22,"721 Maple St, Los Angeles, CA 90001" -308869,USB-C Charging Cable,1,11.95,12/15/19 12:20,"224 Sunset St, Dallas, TX 75001" -308870,Bose SoundSport Headphones,1,99.99,12/05/19 14:08,"433 Washington St, Los Angeles, CA 90001" -308871,Lightning Charging Cable,1,14.95,12/28/19 20:35,"704 Church St, San Francisco, CA 94016" -308872,USB-C Charging Cable,1,11.95,12/09/19 12:56,"67 8th St, San Francisco, CA 94016" -308873,Bose SoundSport Headphones,1,99.99,12/07/19 12:35,"596 Adams St, Seattle, WA 98101" -308874,AA Batteries (4-pack),1,3.84,12/17/19 10:00,"566 Lake St, Atlanta, GA 30301" -308875,iPhone,1,700,12/20/19 13:10,"192 Lakeview St, Boston, MA 02215" -308876,Apple Airpods Headphones,1,150,12/25/19 12:07,"609 Washington St, Los Angeles, CA 90001" -308877,27in 4K Gaming Monitor,1,389.99,12/18/19 21:13,"146 7th St, Los Angeles, CA 90001" -308878,Apple Airpods Headphones,2,150,12/26/19 17:18,"94 Pine St, New York City, NY 10001" -308879,Wired Headphones,1,11.99,12/20/19 21:28,"240 4th St, San Francisco, CA 94016" -308880,Apple Airpods Headphones,1,150,12/06/19 11:22,"389 Lakeview St, San Francisco, CA 94016" -308881,Apple Airpods Headphones,1,150,12/19/19 10:45,"127 West St, San Francisco, CA 94016" -308882,Lightning Charging Cable,1,14.95,12/04/19 10:37,"960 9th St, San Francisco, CA 94016" -308883,34in Ultrawide Monitor,1,379.99,12/03/19 21:19,"607 Sunset St, Los Angeles, CA 90001" -308884,Lightning Charging Cable,1,14.95,12/06/19 00:56,"914 Chestnut St, Boston, MA 02215" -308885,Lightning Charging Cable,1,14.95,12/17/19 18:21,"776 River St, Atlanta, GA 30301" -308886,20in Monitor,1,109.99,12/05/19 12:36,"588 North St, Dallas, TX 75001" -308887,USB-C Charging Cable,1,11.95,12/17/19 01:40,"963 8th St, San Francisco, CA 94016" -308888,AA Batteries (4-pack),2,3.84,12/17/19 16:40,"189 Chestnut St, San Francisco, CA 94016" -308889,ThinkPad Laptop,1,999.99,12/15/19 13:35,"833 2nd St, Los Angeles, CA 90001" -308890,Apple Airpods Headphones,1,150,12/15/19 21:45,"311 Lake St, San Francisco, CA 94016" -308891,iPhone,1,700,12/03/19 02:45,"531 Cedar St, New York City, NY 10001" -308891,Lightning Charging Cable,1,14.95,12/03/19 02:45,"531 Cedar St, New York City, NY 10001" -308892,AAA Batteries (4-pack),1,2.99,12/15/19 22:44,"815 South St, Dallas, TX 75001" -308893,Lightning Charging Cable,1,14.95,12/30/19 21:38,"301 Center St, Los Angeles, CA 90001" -308894,USB-C Charging Cable,2,11.95,12/29/19 18:29,"171 6th St, Los Angeles, CA 90001" -308895,Apple Airpods Headphones,1,150,12/18/19 18:45,"837 Forest St, New York City, NY 10001" -308896,Apple Airpods Headphones,1,150,12/14/19 14:30,"221 Park St, Los Angeles, CA 90001" -308897,Bose SoundSport Headphones,1,99.99,12/15/19 12:09,"97 Jefferson St, Los Angeles, CA 90001" -308898,Lightning Charging Cable,1,14.95,12/14/19 20:13,"396 Spruce St, Seattle, WA 98101" -308899,AA Batteries (4-pack),1,3.84,12/24/19 18:06,"325 Center St, Austin, TX 73301" -308900,34in Ultrawide Monitor,1,379.99,12/11/19 06:22,"843 12th St, Austin, TX 73301" -308901,Apple Airpods Headphones,1,150,12/24/19 19:57,"477 Elm St, Los Angeles, CA 90001" -308902,ThinkPad Laptop,1,999.99,12/13/19 02:42,"123 Highland St, Atlanta, GA 30301" -308903,USB-C Charging Cable,1,11.95,12/23/19 07:33,"126 Willow St, San Francisco, CA 94016" -308904,Flatscreen TV,1,300,12/26/19 03:48,"946 10th St, Austin, TX 73301" -308905,27in FHD Monitor,1,149.99,12/22/19 13:58,"738 River St, San Francisco, CA 94016" -308906,Lightning Charging Cable,1,14.95,12/12/19 14:03,"451 Spruce St, Los Angeles, CA 90001" -308907,AA Batteries (4-pack),1,3.84,12/24/19 11:49,"953 4th St, New York City, NY 10001" -308908,USB-C Charging Cable,1,11.95,12/08/19 16:57,"917 Highland St, Seattle, WA 98101" -308909,AAA Batteries (4-pack),1,2.99,12/28/19 14:49,"165 14th St, New York City, NY 10001" -308910,AAA Batteries (4-pack),1,2.99,12/28/19 23:24,"546 Hickory St, San Francisco, CA 94016" -308911,AAA Batteries (4-pack),1,2.99,12/14/19 19:45,"142 14th St, New York City, NY 10001" -308912,USB-C Charging Cable,1,11.95,12/06/19 21:22,"554 West St, San Francisco, CA 94016" -308913,Wired Headphones,2,11.99,12/04/19 19:48,"927 Madison St, Boston, MA 02215" -308914,Wired Headphones,1,11.99,12/31/19 11:38,"395 Maple St, Dallas, TX 75001" -308915,LG Dryer,1,600.0,12/20/19 13:02,"173 Jefferson St, San Francisco, CA 94016" -308916,Bose SoundSport Headphones,1,99.99,12/04/19 16:34,"452 11th St, Seattle, WA 98101" -308917,USB-C Charging Cable,1,11.95,12/26/19 16:04,"515 Walnut St, Los Angeles, CA 90001" -308918,iPhone,1,700,12/19/19 12:57,"656 Willow St, Boston, MA 02215" -308919,AAA Batteries (4-pack),1,2.99,12/13/19 17:06,"219 Church St, Boston, MA 02215" -308920,Wired Headphones,1,11.99,12/22/19 18:08,"688 Pine St, Dallas, TX 75001" -308921,27in FHD Monitor,1,149.99,12/28/19 02:22,"754 Chestnut St, Boston, MA 02215" -308922,34in Ultrawide Monitor,1,379.99,12/15/19 15:04,"878 12th St, San Francisco, CA 94016" -308923,AA Batteries (4-pack),1,3.84,12/02/19 20:07,"950 13th St, San Francisco, CA 94016" -308924,iPhone,1,700,12/10/19 13:42,"881 14th St, New York City, NY 10001" -308924,Wired Headphones,1,11.99,12/10/19 13:42,"881 14th St, New York City, NY 10001" -308925,AAA Batteries (4-pack),1,2.99,12/12/19 17:27,"35 Cherry St, San Francisco, CA 94016" -308926,AAA Batteries (4-pack),1,2.99,12/01/19 11:05,"753 1st St, Los Angeles, CA 90001" -308927,Lightning Charging Cable,1,14.95,12/19/19 22:24,"841 Madison St, Los Angeles, CA 90001" -308928,Bose SoundSport Headphones,1,99.99,12/10/19 12:35,"97 Ridge St, Portland, OR 97035" -308929,Apple Airpods Headphones,1,150,12/15/19 10:21,"375 Lake St, Seattle, WA 98101" -308930,Flatscreen TV,1,300,12/25/19 11:48,"748 5th St, San Francisco, CA 94016" -308931,USB-C Charging Cable,1,11.95,12/24/19 11:54,"848 Ridge St, Portland, OR 97035" -308932,AA Batteries (4-pack),1,3.84,12/10/19 09:19,"640 2nd St, Los Angeles, CA 90001" -308933,20in Monitor,1,109.99,12/13/19 10:00,"411 Elm St, Los Angeles, CA 90001" -308934,ThinkPad Laptop,1,999.99,12/16/19 23:01,"627 Church St, Los Angeles, CA 90001" -308935,Macbook Pro Laptop,1,1700,12/02/19 21:37,"648 Wilson St, San Francisco, CA 94016" -308936,AA Batteries (4-pack),1,3.84,12/06/19 13:22,"520 Wilson St, Austin, TX 73301" -308937,AA Batteries (4-pack),1,3.84,12/26/19 12:33,"429 Dogwood St, New York City, NY 10001" -308938,AAA Batteries (4-pack),1,2.99,12/02/19 11:45,"588 South St, San Francisco, CA 94016" -308939,USB-C Charging Cable,1,11.95,12/30/19 11:28,"716 Jefferson St, San Francisco, CA 94016" -308940,Macbook Pro Laptop,1,1700,12/10/19 18:18,"969 Wilson St, Los Angeles, CA 90001" -308941,Google Phone,1,600,12/30/19 11:52,"477 9th St, Seattle, WA 98101" -308942,Lightning Charging Cable,1,14.95,12/24/19 18:57,"131 Main St, New York City, NY 10001" -308943,Lightning Charging Cable,1,14.95,12/31/19 17:00,"582 Maple St, Los Angeles, CA 90001" -308944,AAA Batteries (4-pack),1,2.99,12/21/19 17:44,"536 South St, Los Angeles, CA 90001" -308945,Lightning Charging Cable,1,14.95,12/26/19 13:02,"495 12th St, San Francisco, CA 94016" -308946,Wired Headphones,1,11.99,12/20/19 23:19,"219 Cherry St, Los Angeles, CA 90001" -308947,Lightning Charging Cable,1,14.95,12/22/19 16:40,"404 River St, New York City, NY 10001" -308948,27in FHD Monitor,1,149.99,12/05/19 18:34,"626 Lincoln St, Los Angeles, CA 90001" -308949,AAA Batteries (4-pack),1,2.99,12/12/19 19:53,"345 Cherry St, Boston, MA 02215" -308950,Apple Airpods Headphones,1,150,12/15/19 09:40,"660 13th St, New York City, NY 10001" -308951,20in Monitor,1,109.99,12/10/19 10:14,"414 4th St, Los Angeles, CA 90001" -308952,USB-C Charging Cable,1,11.95,12/22/19 20:31,"939 Walnut St, Dallas, TX 75001" -308953,27in FHD Monitor,1,149.99,12/02/19 08:02,"564 Pine St, Los Angeles, CA 90001" -308954,Lightning Charging Cable,1,14.95,12/06/19 16:11,"191 6th St, Dallas, TX 75001" -308955,Lightning Charging Cable,1,14.95,12/03/19 20:38,"687 Maple St, Los Angeles, CA 90001" -308956,iPhone,1,700,12/25/19 17:47,"303 Park St, New York City, NY 10001" -308956,Wired Headphones,1,11.99,12/25/19 17:47,"303 Park St, New York City, NY 10001" -308957,USB-C Charging Cable,1,11.95,12/21/19 12:03,"367 4th St, Portland, OR 97035" -308958,Lightning Charging Cable,1,14.95,12/05/19 11:45,"690 Jefferson St, Boston, MA 02215" -308959,USB-C Charging Cable,1,11.95,12/25/19 22:13,"803 Center St, Atlanta, GA 30301" -308960,AAA Batteries (4-pack),1,2.99,12/07/19 18:04,"905 Center St, Dallas, TX 75001" -308961,Lightning Charging Cable,1,14.95,12/11/19 19:43,"786 River St, Austin, TX 73301" -308962,AAA Batteries (4-pack),1,2.99,12/12/19 19:47,"534 Walnut St, New York City, NY 10001" -308963,USB-C Charging Cable,1,11.95,12/04/19 13:42,"551 Sunset St, Seattle, WA 98101" -308964,LG Dryer,1,600.0,12/13/19 19:51,"915 Main St, Dallas, TX 75001" -308965,Wired Headphones,1,11.99,12/18/19 16:36,"722 12th St, Dallas, TX 75001" -308966,Bose SoundSport Headphones,1,99.99,12/20/19 13:44,"164 Ridge St, Dallas, TX 75001" -308967,USB-C Charging Cable,1,11.95,12/19/19 16:55,"88 9th St, San Francisco, CA 94016" -308968,USB-C Charging Cable,1,11.95,12/28/19 05:20,"987 Hickory St, Portland, OR 97035" -308969,USB-C Charging Cable,1,11.95,12/14/19 13:17,"665 Cherry St, San Francisco, CA 94016" -308970,AA Batteries (4-pack),1,3.84,12/05/19 13:26,"777 10th St, San Francisco, CA 94016" -308971,Wired Headphones,1,11.99,12/13/19 23:04,"698 Spruce St, Austin, TX 73301" -308972,34in Ultrawide Monitor,1,379.99,12/10/19 18:50,"344 Church St, San Francisco, CA 94016" -308973,Apple Airpods Headphones,1,150,12/16/19 08:00,"949 Dogwood St, New York City, NY 10001" -308974,27in 4K Gaming Monitor,1,389.99,12/23/19 14:45,"604 Hickory St, Seattle, WA 98101" -308975,AA Batteries (4-pack),1,3.84,12/14/19 07:59,"343 Highland St, Seattle, WA 98101" -308976,iPhone,1,700,12/26/19 22:23,"112 2nd St, Los Angeles, CA 90001" -308977,AAA Batteries (4-pack),1,2.99,12/15/19 21:37,"440 Maple St, Dallas, TX 75001" -308978,USB-C Charging Cable,1,11.95,12/02/19 14:33,"879 Lincoln St, Los Angeles, CA 90001" -308979,Lightning Charging Cable,1,14.95,12/10/19 21:42,"678 4th St, Austin, TX 73301" -308980,Google Phone,1,600,12/30/19 15:55,"824 14th St, San Francisco, CA 94016" -308981,27in FHD Monitor,1,149.99,12/27/19 08:51,"678 Lake St, Austin, TX 73301" -308982,Apple Airpods Headphones,1,150,12/19/19 14:17,"444 Church St, Boston, MA 02215" -308983,USB-C Charging Cable,1,11.95,12/06/19 19:22,"910 Lakeview St, Atlanta, GA 30301" -308984,27in 4K Gaming Monitor,1,389.99,12/20/19 15:19,"629 11th St, Dallas, TX 75001" -308985,Wired Headphones,1,11.99,12/28/19 07:27,"585 13th St, Boston, MA 02215" -308986,Wired Headphones,1,11.99,12/22/19 08:34,"934 Spruce St, San Francisco, CA 94016" -308987,Google Phone,1,600,12/22/19 07:07,"162 1st St, San Francisco, CA 94016" -308988,Apple Airpods Headphones,1,150,12/06/19 14:28,"869 Hill St, San Francisco, CA 94016" -308989,AAA Batteries (4-pack),1,2.99,12/18/19 20:56,"86 Elm St, Dallas, TX 75001" -308990,ThinkPad Laptop,1,999.99,12/09/19 16:05,"529 Johnson St, Seattle, WA 98101" -308991,AAA Batteries (4-pack),1,2.99,12/22/19 18:39,"148 Adams St, Boston, MA 02215" -308992,Apple Airpods Headphones,1,150,12/26/19 19:30,"189 Chestnut St, New York City, NY 10001" -308992,AAA Batteries (4-pack),2,2.99,12/26/19 19:30,"189 Chestnut St, New York City, NY 10001" -308993,Lightning Charging Cable,1,14.95,12/05/19 10:39,"186 10th St, Los Angeles, CA 90001" -308994,USB-C Charging Cable,1,11.95,12/10/19 15:54,"124 12th St, Los Angeles, CA 90001" -308995,27in 4K Gaming Monitor,1,389.99,12/24/19 13:53,"708 Sunset St, San Francisco, CA 94016" -308996,Vareebadd Phone,1,400,12/04/19 15:26,"26 Washington St, San Francisco, CA 94016" -308997,20in Monitor,1,109.99,12/26/19 12:18,"473 Sunset St, Atlanta, GA 30301" -308998,Bose SoundSport Headphones,1,99.99,12/07/19 10:17,"142 Chestnut St, Dallas, TX 75001" -308999,Lightning Charging Cable,1,14.95,12/07/19 19:20,"946 10th St, Seattle, WA 98101" -309000,AA Batteries (4-pack),3,3.84,12/20/19 10:23,"527 4th St, New York City, NY 10001" -309001,Wired Headphones,1,11.99,12/10/19 11:19,"626 2nd St, San Francisco, CA 94016" -309002,20in Monitor,1,109.99,12/19/19 11:59,"22 13th St, Los Angeles, CA 90001" -309003,Lightning Charging Cable,1,14.95,12/12/19 21:45,"786 Cedar St, Atlanta, GA 30301" -309004,Wired Headphones,1,11.99,12/03/19 17:48,"245 North St, Boston, MA 02215" -309005,Lightning Charging Cable,1,14.95,12/30/19 22:01,"510 6th St, Dallas, TX 75001" -309006,Lightning Charging Cable,1,14.95,12/30/19 10:14,"7 Forest St, Seattle, WA 98101" -309007,USB-C Charging Cable,1,11.95,12/02/19 10:18,"662 Madison St, Los Angeles, CA 90001" -309008,Apple Airpods Headphones,1,150,12/23/19 22:13,"161 Pine St, Austin, TX 73301" -309008,Apple Airpods Headphones,1,150,12/23/19 22:13,"161 Pine St, Austin, TX 73301" -309009,27in 4K Gaming Monitor,1,389.99,12/27/19 14:52,"893 13th St, Portland, OR 97035" -309010,USB-C Charging Cable,2,11.95,12/26/19 07:55,"960 Washington St, Austin, TX 73301" -309011,Apple Airpods Headphones,1,150,12/09/19 21:52,"264 9th St, Dallas, TX 75001" -309012,Wired Headphones,1,11.99,12/20/19 15:21,"397 Ridge St, San Francisco, CA 94016" -309012,34in Ultrawide Monitor,1,379.99,12/20/19 15:21,"397 Ridge St, San Francisco, CA 94016" -309013,AAA Batteries (4-pack),1,2.99,12/24/19 14:07,"744 River St, Atlanta, GA 30301" -309014,AAA Batteries (4-pack),1,2.99,12/25/19 12:43,"502 9th St, New York City, NY 10001" -309015,Apple Airpods Headphones,1,150,12/26/19 19:37,"732 Elm St, New York City, NY 10001" -309016,Lightning Charging Cable,1,14.95,12/14/19 21:48,"708 1st St, San Francisco, CA 94016" -309017,Lightning Charging Cable,1,14.95,12/19/19 12:24,"42 12th St, Los Angeles, CA 90001" -309018,AAA Batteries (4-pack),1,2.99,12/13/19 19:30,"161 West St, Dallas, TX 75001" -309019,Wired Headphones,1,11.99,12/28/19 12:44,"54 11th St, Los Angeles, CA 90001" -309020,Lightning Charging Cable,1,14.95,12/11/19 11:58,"21 Park St, San Francisco, CA 94016" -309021,Bose SoundSport Headphones,1,99.99,12/31/19 07:23,"425 Sunset St, San Francisco, CA 94016" -309022,Google Phone,1,600,12/03/19 19:26,"715 Spruce St, Boston, MA 02215" -309022,USB-C Charging Cable,1,11.95,12/03/19 19:26,"715 Spruce St, Boston, MA 02215" -309023,Google Phone,1,600,12/23/19 13:22,"751 Hickory St, Boston, MA 02215" -309023,USB-C Charging Cable,1,11.95,12/23/19 13:22,"751 Hickory St, Boston, MA 02215" -309024,iPhone,1,700,12/04/19 17:19,"509 Lake St, San Francisco, CA 94016" -309025,Apple Airpods Headphones,1,150,12/08/19 15:52,"792 Lake St, Seattle, WA 98101" -309026,Lightning Charging Cable,1,14.95,12/07/19 17:08,"527 Walnut St, Boston, MA 02215" -309027,AA Batteries (4-pack),1,3.84,12/05/19 12:57,"103 River St, Boston, MA 02215" -309028,Bose SoundSport Headphones,1,99.99,12/19/19 16:33,"736 Wilson St, San Francisco, CA 94016" -309029,Lightning Charging Cable,1,14.95,12/12/19 07:21,"474 Elm St, New York City, NY 10001" -309030,AA Batteries (4-pack),1,3.84,12/23/19 15:26,"40 5th St, San Francisco, CA 94016" -309031,USB-C Charging Cable,1,11.95,12/14/19 03:09,"800 Cedar St, New York City, NY 10001" -309032,20in Monitor,1,109.99,12/21/19 18:06,"797 12th St, New York City, NY 10001" -309033,AA Batteries (4-pack),1,3.84,12/14/19 00:47,"107 Jackson St, Boston, MA 02215" -309034,Wired Headphones,1,11.99,12/12/19 12:45,"721 Center St, New York City, NY 10001" -309035,LG Dryer,1,600.0,12/04/19 13:09,"527 2nd St, Los Angeles, CA 90001" -309036,Wired Headphones,1,11.99,12/11/19 10:06,"529 Elm St, New York City, NY 10001" -309037,USB-C Charging Cable,1,11.95,12/23/19 13:05,"513 Hill St, Dallas, TX 75001" -309038,USB-C Charging Cable,1,11.95,12/21/19 16:14,"368 Lincoln St, San Francisco, CA 94016" -309039,27in 4K Gaming Monitor,1,389.99,12/27/19 09:31,"909 South St, Los Angeles, CA 90001" -309040,Lightning Charging Cable,1,14.95,12/16/19 20:03,"95 Willow St, Los Angeles, CA 90001" -309041,ThinkPad Laptop,1,999.99,12/07/19 10:04,"66 Lincoln St, San Francisco, CA 94016" -309042,Lightning Charging Cable,1,14.95,12/31/19 19:50,"953 Willow St, San Francisco, CA 94016" -309043,AAA Batteries (4-pack),1,2.99,12/05/19 21:00,"388 Johnson St, Austin, TX 73301" -309044,27in 4K Gaming Monitor,1,389.99,12/15/19 16:21,"181 Hickory St, San Francisco, CA 94016" -309045,Apple Airpods Headphones,1,150,12/14/19 20:00,"358 Chestnut St, New York City, NY 10001" -309045,Apple Airpods Headphones,1,150,12/14/19 20:00,"358 Chestnut St, New York City, NY 10001" -309046,Lightning Charging Cable,1,14.95,12/28/19 10:32,"880 Hill St, San Francisco, CA 94016" -309046,Wired Headphones,1,11.99,12/28/19 10:32,"880 Hill St, San Francisco, CA 94016" -309047,AA Batteries (4-pack),1,3.84,12/04/19 13:46,"777 8th St, Boston, MA 02215" -309048,Lightning Charging Cable,1,14.95,12/24/19 13:37,"81 Chestnut St, Los Angeles, CA 90001" -309049,27in 4K Gaming Monitor,1,389.99,12/24/19 15:47,"49 Center St, Los Angeles, CA 90001" -309050,Lightning Charging Cable,1,14.95,12/18/19 16:54,"222 1st St, Boston, MA 02215" -309051,AAA Batteries (4-pack),3,2.99,12/29/19 12:41,"421 Spruce St, Portland, ME 04101" -309052,Macbook Pro Laptop,1,1700,12/07/19 08:17,"452 Forest St, Los Angeles, CA 90001" -309053,27in FHD Monitor,1,149.99,12/15/19 13:06,"772 Center St, San Francisco, CA 94016" -309054,Apple Airpods Headphones,1,150,12/25/19 19:09,"904 Jackson St, New York City, NY 10001" -309055,USB-C Charging Cable,1,11.95,12/31/19 16:16,"943 Madison St, San Francisco, CA 94016" -309056,Google Phone,1,600,12/01/19 10:36,"860 Meadow St, San Francisco, CA 94016" -309057,Flatscreen TV,1,300,12/09/19 19:46,"30 Highland St, Dallas, TX 75001" -309058,AAA Batteries (4-pack),1,2.99,12/20/19 09:42,"868 Hill St, San Francisco, CA 94016" -309059,AA Batteries (4-pack),2,3.84,12/10/19 18:01,"916 Jefferson St, San Francisco, CA 94016" -309060,AAA Batteries (4-pack),1,2.99,12/29/19 17:26,"657 West St, San Francisco, CA 94016" -309061,Apple Airpods Headphones,1,150,12/07/19 16:16,"412 River St, San Francisco, CA 94016" -309062,Vareebadd Phone,1,400,12/17/19 11:23,"978 Ridge St, Austin, TX 73301" -309063,AAA Batteries (4-pack),1,2.99,12/14/19 14:04,"682 Elm St, San Francisco, CA 94016" -309064,USB-C Charging Cable,1,11.95,12/06/19 11:59,"953 10th St, Los Angeles, CA 90001" -309065,34in Ultrawide Monitor,1,379.99,12/05/19 12:34,"569 Cherry St, San Francisco, CA 94016" -309066,Lightning Charging Cable,2,14.95,12/23/19 19:12,"49 Hill St, Dallas, TX 75001" -309067,AAA Batteries (4-pack),1,2.99,12/02/19 12:29,"983 Johnson St, San Francisco, CA 94016" -309068,AA Batteries (4-pack),2,3.84,12/29/19 08:19,"753 Madison St, New York City, NY 10001" -309069,34in Ultrawide Monitor,1,379.99,12/19/19 13:10,"731 Wilson St, Portland, OR 97035" -309070,iPhone,1,700,12/01/19 11:50,"575 West St, New York City, NY 10001" -309070,Lightning Charging Cable,3,14.95,12/01/19 11:50,"575 West St, New York City, NY 10001" -309071,27in FHD Monitor,1,149.99,12/08/19 17:51,"80 12th St, Dallas, TX 75001" -309072,AAA Batteries (4-pack),3,2.99,12/14/19 19:12,"527 Jackson St, San Francisco, CA 94016" -309073,USB-C Charging Cable,2,11.95,12/29/19 18:51,"871 Meadow St, New York City, NY 10001" -309074,Bose SoundSport Headphones,1,99.99,12/13/19 17:53,"863 Jackson St, San Francisco, CA 94016" -309075,Apple Airpods Headphones,1,150,12/19/19 18:34,"847 Chestnut St, Atlanta, GA 30301" -309076,USB-C Charging Cable,1,11.95,12/04/19 01:15,"185 2nd St, San Francisco, CA 94016" -309077,27in 4K Gaming Monitor,1,389.99,12/18/19 10:32,"727 Park St, Los Angeles, CA 90001" -309078,27in 4K Gaming Monitor,1,389.99,12/31/19 21:06,"701 12th St, Boston, MA 02215" -309079,Apple Airpods Headphones,1,150,12/19/19 14:07,"826 Jefferson St, Portland, OR 97035" -309080,Google Phone,1,600,12/04/19 14:52,"898 Dogwood St, Boston, MA 02215" -309081,AAA Batteries (4-pack),1,2.99,12/08/19 17:14,"844 Elm St, Dallas, TX 75001" -309082,USB-C Charging Cable,1,11.95,12/12/19 20:28,"947 Adams St, Seattle, WA 98101" -309083,Apple Airpods Headphones,1,150,12/24/19 19:02,"53 Hickory St, San Francisco, CA 94016" -309084,ThinkPad Laptop,1,999.99,12/13/19 00:37,"175 10th St, New York City, NY 10001" -309085,AA Batteries (4-pack),1,3.84,12/08/19 11:16,"85 Cherry St, Atlanta, GA 30301" -309086,Wired Headphones,1,11.99,12/13/19 01:52,"560 1st St, San Francisco, CA 94016" -309087,Wired Headphones,1,11.99,12/30/19 19:25,"511 Willow St, Los Angeles, CA 90001" -309088,Bose SoundSport Headphones,1,99.99,12/06/19 19:03,"326 1st St, Boston, MA 02215" -309089,AAA Batteries (4-pack),1,2.99,12/17/19 18:52,"977 South St, Boston, MA 02215" -309090,USB-C Charging Cable,1,11.95,12/26/19 11:52,"750 Johnson St, Los Angeles, CA 90001" -309091,20in Monitor,1,109.99,12/09/19 19:01,"533 Cherry St, San Francisco, CA 94016" -309092,AA Batteries (4-pack),2,3.84,12/23/19 20:06,"887 5th St, Austin, TX 73301" -309093,Apple Airpods Headphones,1,150,12/29/19 22:23,"293 Hickory St, Los Angeles, CA 90001" -309094,iPhone,1,700,12/04/19 22:25,"790 Lake St, Seattle, WA 98101" -309095,USB-C Charging Cable,2,11.95,12/24/19 11:21,"668 Pine St, San Francisco, CA 94016" -309096,Wired Headphones,1,11.99,12/17/19 09:59,"810 Wilson St, Los Angeles, CA 90001" -309097,Lightning Charging Cable,1,14.95,12/11/19 19:12,"637 Hill St, New York City, NY 10001" -309098,Google Phone,1,600,12/13/19 08:13,"9 Lakeview St, San Francisco, CA 94016" -309098,USB-C Charging Cable,1,11.95,12/13/19 08:13,"9 Lakeview St, San Francisco, CA 94016" -309098,Wired Headphones,1,11.99,12/13/19 08:13,"9 Lakeview St, San Francisco, CA 94016" -309099,Wired Headphones,1,11.99,12/07/19 11:12,"335 4th St, Los Angeles, CA 90001" -309100,USB-C Charging Cable,3,11.95,12/11/19 20:11,"783 Chestnut St, Seattle, WA 98101" -309101,Lightning Charging Cable,1,14.95,12/20/19 09:00,"664 Forest St, San Francisco, CA 94016" -309102,Lightning Charging Cable,1,14.95,12/18/19 19:41,"138 9th St, Austin, TX 73301" -309103,34in Ultrawide Monitor,1,379.99,12/15/19 08:16,"782 Maple St, San Francisco, CA 94016" -309104,Wired Headphones,1,11.99,12/16/19 23:44,"713 Pine St, New York City, NY 10001" -309105,Wired Headphones,2,11.99,12/23/19 17:27,"558 Johnson St, Los Angeles, CA 90001" -309106,Wired Headphones,1,11.99,12/16/19 22:39,"879 Lake St, San Francisco, CA 94016" -309107,ThinkPad Laptop,1,999.99,12/27/19 05:56,"729 Cedar St, Boston, MA 02215" -309108,27in FHD Monitor,1,149.99,12/03/19 13:25,"561 Center St, Seattle, WA 98101" -309109,Google Phone,1,600,12/28/19 01:46,"44 Lincoln St, Seattle, WA 98101" -309110,USB-C Charging Cable,2,11.95,12/03/19 07:13,"625 11th St, Los Angeles, CA 90001" -309111,AAA Batteries (4-pack),1,2.99,12/01/19 17:05,"792 8th St, San Francisco, CA 94016" -309112,AA Batteries (4-pack),1,3.84,12/07/19 08:28,"316 1st St, Boston, MA 02215" -309113,AA Batteries (4-pack),1,3.84,12/19/19 10:59,"754 Highland St, San Francisco, CA 94016" -309114,Lightning Charging Cable,1,14.95,12/12/19 07:49,"439 Cedar St, Atlanta, GA 30301" -309115,Wired Headphones,2,11.99,12/21/19 12:36,"90 River St, Seattle, WA 98101" -309116,USB-C Charging Cable,1,11.95,12/06/19 20:41,"238 Maple St, Boston, MA 02215" -309117,Wired Headphones,1,11.99,12/17/19 01:54,"806 7th St, Dallas, TX 75001" -309118,Bose SoundSport Headphones,1,99.99,12/05/19 00:04,"190 6th St, New York City, NY 10001" -309119,AAA Batteries (4-pack),3,2.99,12/25/19 14:11,"543 7th St, San Francisco, CA 94016" -309120,Lightning Charging Cable,1,14.95,12/28/19 07:42,"805 Elm St, Boston, MA 02215" -309121,Wired Headphones,1,11.99,12/30/19 22:33,"903 Elm St, San Francisco, CA 94016" -309122,27in 4K Gaming Monitor,1,389.99,12/09/19 18:42,"474 Sunset St, San Francisco, CA 94016" -309123,AA Batteries (4-pack),1,3.84,12/20/19 11:01,"310 Washington St, San Francisco, CA 94016" -309124,Bose SoundSport Headphones,1,99.99,12/16/19 21:16,"737 Sunset St, San Francisco, CA 94016" -309125,Wired Headphones,1,11.99,12/19/19 21:16,"292 6th St, New York City, NY 10001" -309126,Lightning Charging Cable,1,14.95,12/03/19 23:33,"533 Park St, Dallas, TX 75001" -309127,27in 4K Gaming Monitor,1,389.99,12/25/19 15:05,"980 Johnson St, New York City, NY 10001" -309128,USB-C Charging Cable,1,11.95,12/19/19 16:07,"560 Maple St, Austin, TX 73301" -309129,27in FHD Monitor,1,149.99,12/22/19 10:32,"434 Cedar St, Los Angeles, CA 90001" -309130,AA Batteries (4-pack),1,3.84,12/22/19 11:48,"535 Meadow St, Los Angeles, CA 90001" -309131,Lightning Charging Cable,1,14.95,12/07/19 19:16,"750 9th St, San Francisco, CA 94016" -309132,34in Ultrawide Monitor,1,379.99,12/13/19 09:46,"765 Johnson St, Boston, MA 02215" -309133,AA Batteries (4-pack),1,3.84,12/21/19 13:15,"273 8th St, San Francisco, CA 94016" -309134,Wired Headphones,1,11.99,12/13/19 21:11,"393 Jefferson St, Dallas, TX 75001" -309135,Macbook Pro Laptop,1,1700,12/07/19 01:30,"995 Lake St, Dallas, TX 75001" -309136,Vareebadd Phone,1,400,12/10/19 16:18,"440 11th St, Dallas, TX 75001" -309137,AA Batteries (4-pack),1,3.84,12/13/19 15:19,"639 North St, New York City, NY 10001" -309138,AA Batteries (4-pack),1,3.84,12/05/19 22:12,"472 Lake St, New York City, NY 10001" -309139,ThinkPad Laptop,1,999.99,12/08/19 17:51,"807 River St, Boston, MA 02215" -309140,USB-C Charging Cable,1,11.95,12/04/19 19:27,"782 13th St, Austin, TX 73301" -309141,ThinkPad Laptop,1,999.99,12/31/19 13:51,"564 Wilson St, Atlanta, GA 30301" -309141,Bose SoundSport Headphones,1,99.99,12/31/19 13:51,"564 Wilson St, Atlanta, GA 30301" -309142,AAA Batteries (4-pack),1,2.99,12/15/19 13:31,"430 River St, Dallas, TX 75001" -309143,Vareebadd Phone,1,400,12/10/19 15:28,"422 Pine St, Boston, MA 02215" -309144,Wired Headphones,1,11.99,12/27/19 17:19,"522 Adams St, Seattle, WA 98101" -309145,AAA Batteries (4-pack),1,2.99,12/10/19 13:19,"388 1st St, San Francisco, CA 94016" -309146,27in FHD Monitor,1,149.99,12/28/19 21:10,"741 Walnut St, New York City, NY 10001" -309147,AA Batteries (4-pack),1,3.84,12/13/19 13:48,"96 12th St, Los Angeles, CA 90001" -309148,Bose SoundSport Headphones,1,99.99,12/12/19 20:22,"168 Chestnut St, San Francisco, CA 94016" -309149,USB-C Charging Cable,1,11.95,12/21/19 21:01,"875 Hill St, Los Angeles, CA 90001" -309150,Macbook Pro Laptop,1,1700,12/06/19 20:07,"582 West St, Austin, TX 73301" -309151,Lightning Charging Cable,1,14.95,12/31/19 15:02,"619 Washington St, Los Angeles, CA 90001" -309152,Lightning Charging Cable,1,14.95,12/18/19 21:06,"421 Willow St, New York City, NY 10001" -309153,AAA Batteries (4-pack),3,2.99,12/31/19 01:46,"110 Jackson St, New York City, NY 10001" -309154,iPhone,1,700,12/02/19 17:35,"121 14th St, Dallas, TX 75001" -309154,Lightning Charging Cable,1,14.95,12/02/19 17:35,"121 14th St, Dallas, TX 75001" -309155,Macbook Pro Laptop,1,1700,12/29/19 21:22,"208 13th St, San Francisco, CA 94016" -309156,Lightning Charging Cable,1,14.95,12/29/19 14:10,"720 Hickory St, Dallas, TX 75001" -309157,Lightning Charging Cable,1,14.95,12/16/19 19:31,"993 Washington St, New York City, NY 10001" -309158,Apple Airpods Headphones,1,150,12/06/19 17:17,"8 Maple St, Los Angeles, CA 90001" -309159,34in Ultrawide Monitor,1,379.99,12/25/19 21:02,"529 Elm St, San Francisco, CA 94016" -309160,Wired Headphones,2,11.99,12/28/19 11:51,"476 7th St, Los Angeles, CA 90001" -309161,Lightning Charging Cable,1,14.95,12/03/19 20:02,"343 Dogwood St, Los Angeles, CA 90001" -309162,Wired Headphones,1,11.99,12/08/19 23:01,"780 Forest St, Los Angeles, CA 90001" -309163,USB-C Charging Cable,1,11.95,12/05/19 19:41,"490 7th St, Atlanta, GA 30301" -309164,iPhone,1,700,12/16/19 16:59,"890 Cherry St, Dallas, TX 75001" -309165,Wired Headphones,1,11.99,12/23/19 10:24,"885 Hill St, New York City, NY 10001" -309166,Wired Headphones,1,11.99,12/03/19 13:48,"758 Jefferson St, New York City, NY 10001" -309167,Flatscreen TV,1,300,12/15/19 22:58,"203 8th St, Los Angeles, CA 90001" -309168,Wired Headphones,1,11.99,12/23/19 11:12,"626 Center St, San Francisco, CA 94016" -309169,Apple Airpods Headphones,1,150,12/15/19 19:46,"728 Chestnut St, Atlanta, GA 30301" -309170,20in Monitor,1,109.99,12/09/19 21:28,"60 Hill St, New York City, NY 10001" -309171,AA Batteries (4-pack),2,3.84,12/26/19 10:45,"222 Lincoln St, Boston, MA 02215" -309172,AAA Batteries (4-pack),1,2.99,12/03/19 16:21,"514 13th St, Seattle, WA 98101" -309173,34in Ultrawide Monitor,1,379.99,12/26/19 18:01,"868 Forest St, Los Angeles, CA 90001" -309174,AA Batteries (4-pack),1,3.84,12/12/19 00:21,"218 Adams St, Los Angeles, CA 90001" -309175,Macbook Pro Laptop,1,1700,12/08/19 17:18,"886 Wilson St, Dallas, TX 75001" -309176,Lightning Charging Cable,1,14.95,12/18/19 12:06,"110 Washington St, Atlanta, GA 30301" -309177,Wired Headphones,1,11.99,12/07/19 10:54,"448 7th St, Boston, MA 02215" -309178,34in Ultrawide Monitor,1,379.99,12/30/19 08:56,"29 2nd St, Los Angeles, CA 90001" -309179,34in Ultrawide Monitor,1,379.99,12/27/19 06:46,"473 Lakeview St, San Francisco, CA 94016" -309180,AAA Batteries (4-pack),2,2.99,12/03/19 14:07,"861 North St, Seattle, WA 98101" -309181,AAA Batteries (4-pack),2,2.99,12/01/19 23:03,"404 Maple St, San Francisco, CA 94016" -309182,AAA Batteries (4-pack),2,2.99,12/17/19 07:00,"627 Park St, Boston, MA 02215" -309183,iPhone,1,700,12/08/19 12:04,"242 Highland St, Seattle, WA 98101" -309183,Apple Airpods Headphones,1,150,12/08/19 12:04,"242 Highland St, Seattle, WA 98101" -309184,27in FHD Monitor,1,149.99,12/20/19 18:51,"984 Lakeview St, San Francisco, CA 94016" -309185,AA Batteries (4-pack),1,3.84,12/26/19 11:21,"703 Meadow St, Seattle, WA 98101" -309186,AAA Batteries (4-pack),1,2.99,12/04/19 11:24,"584 Hickory St, Austin, TX 73301" -309187,USB-C Charging Cable,1,11.95,12/15/19 15:33,"403 Wilson St, Boston, MA 02215" -309188,AAA Batteries (4-pack),1,2.99,12/17/19 12:00,"331 Spruce St, San Francisco, CA 94016" -309189,AA Batteries (4-pack),2,3.84,12/25/19 23:25,"335 Wilson St, Seattle, WA 98101" -309190,27in FHD Monitor,1,149.99,12/28/19 21:13,"744 West St, Atlanta, GA 30301" -309191,Apple Airpods Headphones,1,150,12/12/19 16:22,"953 Center St, New York City, NY 10001" -309192,Apple Airpods Headphones,1,150,12/29/19 09:48,"337 14th St, Seattle, WA 98101" -309193,AA Batteries (4-pack),2,3.84,12/22/19 00:30,"807 6th St, Los Angeles, CA 90001" -309194,Apple Airpods Headphones,1,150,12/11/19 21:37,"916 9th St, Dallas, TX 75001" -309195,Lightning Charging Cable,1,14.95,12/18/19 08:12,"984 11th St, Austin, TX 73301" -309196,Flatscreen TV,1,300,12/27/19 13:23,"175 Sunset St, New York City, NY 10001" -309197,Lightning Charging Cable,1,14.95,12/18/19 20:00,"685 Park St, San Francisco, CA 94016" -309198,USB-C Charging Cable,1,11.95,12/22/19 20:13,"85 Sunset St, Seattle, WA 98101" -309199,AA Batteries (4-pack),1,3.84,12/01/19 09:45,"304 2nd St, Los Angeles, CA 90001" -309200,Google Phone,1,600,12/14/19 19:12,"626 Walnut St, New York City, NY 10001" -309201,USB-C Charging Cable,1,11.95,12/27/19 12:27,"611 Park St, Portland, OR 97035" -309202,20in Monitor,1,109.99,12/30/19 18:00,"19 11th St, Atlanta, GA 30301" -309203,Bose SoundSport Headphones,1,99.99,12/08/19 21:48,"399 North St, New York City, NY 10001" -309204,USB-C Charging Cable,1,11.95,12/26/19 07:43,"74 North St, Boston, MA 02215" -309204,Lightning Charging Cable,1,14.95,12/26/19 07:43,"74 North St, Boston, MA 02215" -309205,Flatscreen TV,1,300,12/23/19 18:13,"783 8th St, San Francisco, CA 94016" -309206,AAA Batteries (4-pack),1,2.99,12/09/19 14:31,"292 Adams St, New York City, NY 10001" -309207,AAA Batteries (4-pack),2,2.99,12/31/19 18:26,"703 Lincoln St, Los Angeles, CA 90001" -309208,Flatscreen TV,1,300,12/17/19 17:58,"507 Sunset St, San Francisco, CA 94016" -309209,AA Batteries (4-pack),1,3.84,12/23/19 22:03,"301 Cedar St, Boston, MA 02215" -309210,Apple Airpods Headphones,1,150,12/13/19 15:09,"281 Sunset St, Los Angeles, CA 90001" -309211,USB-C Charging Cable,1,11.95,12/28/19 20:17,"942 Ridge St, Seattle, WA 98101" -309212,USB-C Charging Cable,1,11.95,12/17/19 09:30,"91 Dogwood St, Seattle, WA 98101" -309213,Google Phone,1,600,12/01/19 03:10,"694 11th St, Portland, OR 97035" -309214,Wired Headphones,1,11.99,12/17/19 13:37,"883 1st St, Seattle, WA 98101" -309215,iPhone,1,700,12/20/19 07:56,"963 Elm St, San Francisco, CA 94016" -309216,Apple Airpods Headphones,1,150,12/26/19 11:26,"408 Hill St, Los Angeles, CA 90001" -309217,AA Batteries (4-pack),1,3.84,12/22/19 15:25,"820 8th St, Dallas, TX 75001" -309218,Lightning Charging Cable,1,14.95,12/31/19 13:24,"512 7th St, Austin, TX 73301" -309219,ThinkPad Laptop,1,999.99,12/02/19 12:40,"549 Hill St, Dallas, TX 75001" -309220,Apple Airpods Headphones,1,150,12/30/19 19:33,"903 Forest St, San Francisco, CA 94016" -309221,USB-C Charging Cable,1,11.95,12/12/19 23:19,"443 Hill St, Austin, TX 73301" -309222,34in Ultrawide Monitor,1,379.99,12/24/19 12:04,"924 7th St, New York City, NY 10001" -309223,Vareebadd Phone,1,400,12/01/19 20:46,"543 Cedar St, Los Angeles, CA 90001" -309224,AA Batteries (4-pack),2,3.84,12/02/19 09:59,"632 Lakeview St, Atlanta, GA 30301" -309225,Bose SoundSport Headphones,1,99.99,12/21/19 15:56,"408 Walnut St, Los Angeles, CA 90001" -309226,AAA Batteries (4-pack),1,2.99,12/03/19 19:48,"926 8th St, New York City, NY 10001" -309227,Apple Airpods Headphones,1,150,12/23/19 17:43,"804 13th St, Portland, OR 97035" -309228,iPhone,1,700,12/10/19 18:56,"79 Willow St, Portland, OR 97035" -309228,Apple Airpods Headphones,1,150,12/10/19 18:56,"79 Willow St, Portland, OR 97035" -309229,LG Dryer,1,600.0,12/24/19 12:24,"482 7th St, Dallas, TX 75001" -309230,AAA Batteries (4-pack),1,2.99,12/01/19 09:01,"99 1st St, San Francisco, CA 94016" -309231,USB-C Charging Cable,1,11.95,12/27/19 13:32,"709 4th St, San Francisco, CA 94016" -309232,Bose SoundSport Headphones,1,99.99,12/10/19 20:01,"558 Jefferson St, Los Angeles, CA 90001" -309233,Lightning Charging Cable,1,14.95,12/22/19 11:17,"583 Hill St, Austin, TX 73301" -309234,AAA Batteries (4-pack),1,2.99,12/05/19 19:46,"982 Spruce St, Portland, ME 04101" -309235,Wired Headphones,1,11.99,12/03/19 17:15,"557 Cedar St, Los Angeles, CA 90001" -309236,Wired Headphones,1,11.99,12/27/19 17:15,"773 13th St, Seattle, WA 98101" -309237,34in Ultrawide Monitor,1,379.99,12/29/19 10:59,"814 Maple St, Los Angeles, CA 90001" -309238,Macbook Pro Laptop,1,1700,12/01/19 20:51,"642 Elm St, Atlanta, GA 30301" -309239,AA Batteries (4-pack),1,3.84,12/10/19 12:38,"479 West St, Dallas, TX 75001" -309240,USB-C Charging Cable,2,11.95,12/28/19 13:35,"795 5th St, Boston, MA 02215" -309241,Lightning Charging Cable,1,14.95,12/01/19 06:53,"97 West St, Boston, MA 02215" -309242,27in 4K Gaming Monitor,1,389.99,12/16/19 23:32,"971 North St, New York City, NY 10001" -309243,Bose SoundSport Headphones,1,99.99,12/13/19 08:22,"872 Wilson St, Portland, OR 97035" -309244,Wired Headphones,1,11.99,12/13/19 20:53,"508 Lakeview St, Los Angeles, CA 90001" -309245,34in Ultrawide Monitor,1,379.99,12/04/19 23:48,"907 Jackson St, Seattle, WA 98101" -309246,20in Monitor,1,109.99,12/25/19 09:48,"340 Main St, Atlanta, GA 30301" -309247,Google Phone,1,600,12/14/19 20:41,"337 Park St, Austin, TX 73301" -309248,USB-C Charging Cable,1,11.95,12/22/19 16:33,"671 Dogwood St, Atlanta, GA 30301" -309249,34in Ultrawide Monitor,1,379.99,12/12/19 01:11,"105 Meadow St, San Francisco, CA 94016" -309250,34in Ultrawide Monitor,1,379.99,12/21/19 10:14,"435 Jefferson St, Atlanta, GA 30301" -309251,ThinkPad Laptop,1,999.99,12/21/19 19:06,"324 Wilson St, New York City, NY 10001" -309252,Wired Headphones,1,11.99,12/27/19 10:42,"219 2nd St, Portland, OR 97035" -309253,Lightning Charging Cable,1,14.95,12/11/19 13:03,"17 Lake St, Austin, TX 73301" -309254,Lightning Charging Cable,1,14.95,12/19/19 12:48,"230 Jefferson St, New York City, NY 10001" -309255,USB-C Charging Cable,1,11.95,12/29/19 21:09,"387 8th St, Seattle, WA 98101" -309256,Apple Airpods Headphones,1,150,12/07/19 13:06,"89 14th St, Boston, MA 02215" -309257,AAA Batteries (4-pack),1,2.99,12/03/19 17:15,"276 North St, Los Angeles, CA 90001" -309258,AAA Batteries (4-pack),2,2.99,12/18/19 17:49,"723 Cedar St, New York City, NY 10001" -309259,AAA Batteries (4-pack),1,2.99,12/14/19 10:39,"835 5th St, Portland, OR 97035" -309260,AAA Batteries (4-pack),1,2.99,12/13/19 12:14,"690 12th St, New York City, NY 10001" -309261,27in 4K Gaming Monitor,1,389.99,12/05/19 18:30,"973 Adams St, San Francisco, CA 94016" -309262,AA Batteries (4-pack),1,3.84,12/30/19 18:18,"334 Sunset St, Boston, MA 02215" -309263,Bose SoundSport Headphones,1,99.99,12/10/19 12:01,"978 Lincoln St, Atlanta, GA 30301" -309264,Apple Airpods Headphones,1,150,12/22/19 09:16,"918 Meadow St, San Francisco, CA 94016" -309265,Vareebadd Phone,1,400,12/03/19 12:26,"594 6th St, San Francisco, CA 94016" -309266,iPhone,1,700,12/04/19 18:03,"276 1st St, Dallas, TX 75001" -309267,Apple Airpods Headphones,1,150,12/24/19 12:23,"712 Meadow St, Portland, OR 97035" -309268,Lightning Charging Cable,1,14.95,12/17/19 18:14,"391 10th St, Portland, OR 97035" -309269,USB-C Charging Cable,1,11.95,12/11/19 07:27,"386 Ridge St, Portland, OR 97035" -309270,AAA Batteries (4-pack),1,2.99,12/12/19 20:25,"414 14th St, New York City, NY 10001" -309271,AA Batteries (4-pack),1,3.84,12/16/19 17:38,"520 4th St, Atlanta, GA 30301" -309272,Bose SoundSport Headphones,1,99.99,12/16/19 08:50,"839 5th St, Dallas, TX 75001" -309273,AA Batteries (4-pack),1,3.84,12/13/19 21:44,"469 Hill St, New York City, NY 10001" -309274,AAA Batteries (4-pack),1,2.99,12/06/19 10:46,"144 1st St, San Francisco, CA 94016" -309275,AAA Batteries (4-pack),2,2.99,12/30/19 22:11,"204 Main St, San Francisco, CA 94016" -309276,Wired Headphones,1,11.99,12/25/19 18:31,"429 10th St, Dallas, TX 75001" -309277,AAA Batteries (4-pack),2,2.99,12/07/19 09:53,"54 Washington St, Boston, MA 02215" -309278,iPhone,1,700,12/19/19 17:15,"701 Center St, Portland, OR 97035" -309279,Apple Airpods Headphones,1,150,12/04/19 08:50,"717 Main St, Portland, OR 97035" -309280,USB-C Charging Cable,1,11.95,12/12/19 10:59,"977 Jackson St, Los Angeles, CA 90001" -309281,Macbook Pro Laptop,1,1700,12/16/19 19:59,"944 13th St, Atlanta, GA 30301" -309282,Apple Airpods Headphones,1,150,12/08/19 11:48,"120 Pine St, San Francisco, CA 94016" -309283,AAA Batteries (4-pack),1,2.99,12/19/19 13:05,"463 12th St, San Francisco, CA 94016" -309284,Lightning Charging Cable,1,14.95,12/25/19 13:41,"242 2nd St, Los Angeles, CA 90001" -309284,Wired Headphones,1,11.99,12/25/19 13:41,"242 2nd St, Los Angeles, CA 90001" -309285,Wired Headphones,2,11.99,12/21/19 16:19,"215 9th St, Boston, MA 02215" -309286,Apple Airpods Headphones,1,150,12/24/19 09:10,"241 Sunset St, Portland, OR 97035" -309287,USB-C Charging Cable,1,11.95,12/08/19 17:40,"93 Chestnut St, San Francisco, CA 94016" -309288,AA Batteries (4-pack),1,3.84,12/30/19 16:55,"363 Adams St, New York City, NY 10001" -309289,Bose SoundSport Headphones,1,99.99,12/13/19 09:06,"631 Main St, Boston, MA 02215" -309290,Apple Airpods Headphones,1,150,12/21/19 19:02,"944 7th St, Seattle, WA 98101" -309291,Macbook Pro Laptop,1,1700,12/20/19 01:06,"405 Cherry St, New York City, NY 10001" -309292,AA Batteries (4-pack),1,3.84,12/10/19 16:53,"113 2nd St, Atlanta, GA 30301" -309293,Bose SoundSport Headphones,1,99.99,12/14/19 11:01,"349 Lincoln St, New York City, NY 10001" -309294,USB-C Charging Cable,1,11.95,12/29/19 22:52,"526 Church St, Boston, MA 02215" -309295,27in 4K Gaming Monitor,1,389.99,12/18/19 10:40,"695 Ridge St, Boston, MA 02215" -309296,27in 4K Gaming Monitor,1,389.99,12/18/19 18:54,"824 Adams St, Portland, ME 04101" -309297,Bose SoundSport Headphones,1,99.99,12/23/19 21:09,"542 Wilson St, Dallas, TX 75001" -309298,Bose SoundSport Headphones,1,99.99,12/29/19 07:04,"205 Hickory St, San Francisco, CA 94016" -309299,Lightning Charging Cable,1,14.95,12/11/19 00:21,"773 Walnut St, San Francisco, CA 94016" -309300,Flatscreen TV,1,300,12/25/19 19:14,"504 Meadow St, San Francisco, CA 94016" -309301,Lightning Charging Cable,1,14.95,12/30/19 08:48,"788 Madison St, Seattle, WA 98101" -309302,USB-C Charging Cable,1,11.95,12/11/19 14:31,"729 11th St, Portland, OR 97035" -309303,USB-C Charging Cable,1,11.95,12/21/19 10:49,"621 7th St, San Francisco, CA 94016" -309304,Bose SoundSport Headphones,1,99.99,12/22/19 00:45,"934 Hill St, Los Angeles, CA 90001" -309305,Apple Airpods Headphones,1,150,12/02/19 19:53,"750 Forest St, Los Angeles, CA 90001" -309306,USB-C Charging Cable,1,11.95,12/27/19 21:13,"537 Jackson St, Boston, MA 02215" -309307,Wired Headphones,1,11.99,12/22/19 10:50,"724 Cherry St, San Francisco, CA 94016" -309308,AAA Batteries (4-pack),1,2.99,12/08/19 23:50,"412 Jackson St, Atlanta, GA 30301" -309309,iPhone,1,700,12/21/19 08:48,"989 Chestnut St, Seattle, WA 98101" -309310,Bose SoundSport Headphones,1,99.99,12/27/19 14:57,"815 14th St, New York City, NY 10001" -309311,34in Ultrawide Monitor,1,379.99,12/25/19 19:03,"90 West St, Dallas, TX 75001" -309312,27in FHD Monitor,1,149.99,12/17/19 21:38,"581 River St, Boston, MA 02215" -309313,AA Batteries (4-pack),1,3.84,12/07/19 08:11,"197 7th St, Dallas, TX 75001" -309314,Flatscreen TV,1,300,12/17/19 15:11,"695 North St, San Francisco, CA 94016" -309315,Wired Headphones,1,11.99,12/29/19 19:14,"363 Forest St, San Francisco, CA 94016" -309316,Google Phone,1,600,12/28/19 11:26,"504 2nd St, San Francisco, CA 94016" -309317,AAA Batteries (4-pack),3,2.99,12/26/19 06:42,"120 6th St, New York City, NY 10001" -309318,USB-C Charging Cable,2,11.95,12/31/19 18:47,"85 11th St, New York City, NY 10001" -309319,Flatscreen TV,1,300,12/18/19 15:00,"202 11th St, New York City, NY 10001" -309320,AAA Batteries (4-pack),1,2.99,12/31/19 15:03,"618 1st St, San Francisco, CA 94016" -309321,AA Batteries (4-pack),1,3.84,12/30/19 12:53,"941 Wilson St, Los Angeles, CA 90001" -309322,Google Phone,1,600,12/30/19 18:40,"973 8th St, Dallas, TX 75001" -309323,AAA Batteries (4-pack),1,2.99,12/21/19 23:27,"866 Hickory St, Dallas, TX 75001" -309324,Flatscreen TV,1,300,12/29/19 19:31,"565 Chestnut St, Atlanta, GA 30301" -309325,AA Batteries (4-pack),1,3.84,12/08/19 10:59,"241 West St, Seattle, WA 98101" -309326,AAA Batteries (4-pack),1,2.99,12/01/19 14:36,"450 Church St, San Francisco, CA 94016" -309327,27in 4K Gaming Monitor,1,389.99,12/10/19 06:27,"387 8th St, Austin, TX 73301" -309328,Lightning Charging Cable,1,14.95,12/04/19 17:12,"360 Center St, San Francisco, CA 94016" -309329,34in Ultrawide Monitor,1,379.99,12/14/19 08:52,"853 River St, San Francisco, CA 94016" -309330,27in 4K Gaming Monitor,1,389.99,12/30/19 05:21,"297 Maple St, New York City, NY 10001" -309331,34in Ultrawide Monitor,1,379.99,12/09/19 09:10,"634 2nd St, Portland, OR 97035" -309332,AAA Batteries (4-pack),1,2.99,12/07/19 18:50,"649 North St, Los Angeles, CA 90001" -309333,Wired Headphones,1,11.99,12/13/19 16:28,"233 9th St, San Francisco, CA 94016" -309334,Wired Headphones,1,11.99,12/20/19 15:14,"318 2nd St, Seattle, WA 98101" -309335,Wired Headphones,1,11.99,12/31/19 18:57,"165 Wilson St, San Francisco, CA 94016" -309336,Lightning Charging Cable,1,14.95,12/29/19 20:53,"323 Maple St, New York City, NY 10001" -309337,LG Dryer,1,600.0,12/17/19 00:45,"387 West St, San Francisco, CA 94016" -309338,Wired Headphones,1,11.99,12/03/19 10:52,"653 Jefferson St, Atlanta, GA 30301" -309339,USB-C Charging Cable,1,11.95,12/02/19 10:55,"781 Highland St, Boston, MA 02215" -,,,,, -309340,Bose SoundSport Headphones,1,99.99,12/18/19 11:54,"680 Madison St, San Francisco, CA 94016" -309341,AA Batteries (4-pack),1,3.84,12/23/19 17:59,"85 Church St, San Francisco, CA 94016" -309342,27in FHD Monitor,1,149.99,12/18/19 13:14,"358 13th St, San Francisco, CA 94016" -309343,Lightning Charging Cable,1,14.95,12/01/19 08:47,"596 Jefferson St, Boston, MA 02215" -309343,USB-C Charging Cable,1,11.95,12/01/19 08:47,"596 Jefferson St, Boston, MA 02215" -309344,Lightning Charging Cable,1,14.95,12/15/19 22:45,"411 Jackson St, Portland, OR 97035" -309345,Bose SoundSport Headphones,1,99.99,12/28/19 10:05,"445 Madison St, San Francisco, CA 94016" -309346,USB-C Charging Cable,1,11.95,12/26/19 21:39,"121 Meadow St, San Francisco, CA 94016" -309347,iPhone,1,700,12/24/19 13:38,"967 Dogwood St, Dallas, TX 75001" -309348,AAA Batteries (4-pack),2,2.99,12/12/19 20:43,"968 Lakeview St, Los Angeles, CA 90001" -309349,Lightning Charging Cable,2,14.95,12/24/19 10:36,"120 Hill St, Dallas, TX 75001" -309350,Lightning Charging Cable,1,14.95,12/18/19 17:26,"638 9th St, Los Angeles, CA 90001" -309351,20in Monitor,1,109.99,12/01/19 20:55,"690 1st St, Dallas, TX 75001" -309352,Apple Airpods Headphones,1,150,12/28/19 21:23,"403 South St, Portland, OR 97035" -309353,34in Ultrawide Monitor,1,379.99,12/23/19 01:44,"644 West St, Los Angeles, CA 90001" -309354,Apple Airpods Headphones,1,150,12/07/19 15:26,"271 7th St, New York City, NY 10001" -309355,Google Phone,1,600,12/25/19 17:17,"554 Main St, San Francisco, CA 94016" -309356,Lightning Charging Cable,1,14.95,12/12/19 20:40,"360 Church St, Austin, TX 73301" -309357,AAA Batteries (4-pack),1,2.99,12/29/19 10:36,"226 Madison St, Austin, TX 73301" -309358,Apple Airpods Headphones,1,150,12/09/19 09:27,"687 River St, Seattle, WA 98101" -309359,Lightning Charging Cable,1,14.95,12/24/19 21:36,"836 Center St, Atlanta, GA 30301" -309360,34in Ultrawide Monitor,1,379.99,12/18/19 10:03,"111 13th St, San Francisco, CA 94016" -309361,AA Batteries (4-pack),1,3.84,12/27/19 20:38,"305 Pine St, Austin, TX 73301" -309362,AAA Batteries (4-pack),1,2.99,12/14/19 19:24,"234 Highland St, Dallas, TX 75001" -309363,USB-C Charging Cable,1,11.95,12/28/19 18:15,"746 Hickory St, Austin, TX 73301" -309364,AA Batteries (4-pack),1,3.84,12/22/19 20:58,"941 West St, Seattle, WA 98101" -309365,Apple Airpods Headphones,1,150,12/12/19 09:14,"224 Elm St, Portland, OR 97035" -309366,Wired Headphones,1,11.99,12/31/19 23:25,"328 Washington St, Portland, OR 97035" -309367,27in FHD Monitor,1,149.99,12/01/19 15:53,"658 13th St, Los Angeles, CA 90001" -309368,Bose SoundSport Headphones,1,99.99,12/30/19 15:39,"415 7th St, New York City, NY 10001" -309369,Google Phone,1,600,12/18/19 20:57,"640 Walnut St, Seattle, WA 98101" -309370,Apple Airpods Headphones,1,150,12/04/19 12:15,"562 2nd St, Boston, MA 02215" -309371,27in FHD Monitor,1,149.99,12/04/19 08:57,"733 Sunset St, San Francisco, CA 94016" -309372,Lightning Charging Cable,1,14.95,12/12/19 12:24,"208 7th St, Boston, MA 02215" -309373,LG Dryer,1,600.0,12/01/19 16:00,"372 6th St, Portland, OR 97035" -309374,iPhone,1,700,12/21/19 10:47,"626 1st St, San Francisco, CA 94016" -309375,ThinkPad Laptop,1,999.99,12/17/19 08:49,"169 West St, Atlanta, GA 30301" -309376,Lightning Charging Cable,1,14.95,12/22/19 16:25,"133 13th St, San Francisco, CA 94016" -309377,LG Dryer,1,600.0,12/08/19 00:15,"928 Lakeview St, Atlanta, GA 30301" -309378,AA Batteries (4-pack),1,3.84,12/26/19 16:40,"644 Cedar St, Los Angeles, CA 90001" -309379,USB-C Charging Cable,2,11.95,12/25/19 18:42,"525 Sunset St, San Francisco, CA 94016" -309380,AAA Batteries (4-pack),1,2.99,12/27/19 15:40,"578 13th St, Los Angeles, CA 90001" -309381,27in 4K Gaming Monitor,1,389.99,12/10/19 08:52,"293 14th St, Dallas, TX 75001" -309382,USB-C Charging Cable,1,11.95,12/14/19 13:10,"929 7th St, New York City, NY 10001" -309383,Apple Airpods Headphones,1,150,12/06/19 21:59,"234 Elm St, San Francisco, CA 94016" -309384,Wired Headphones,1,11.99,12/06/19 19:45,"443 West St, Los Angeles, CA 90001" -309385,Wired Headphones,1,11.99,12/24/19 22:37,"337 Forest St, San Francisco, CA 94016" -309386,AA Batteries (4-pack),1,3.84,12/24/19 13:44,"299 Ridge St, Austin, TX 73301" -309387,27in FHD Monitor,1,149.99,12/27/19 14:47,"761 Washington St, Boston, MA 02215" -309388,Lightning Charging Cable,1,14.95,12/27/19 09:17,"732 13th St, Dallas, TX 75001" -309389,Lightning Charging Cable,1,14.95,12/31/19 14:56,"464 9th St, Boston, MA 02215" -309390,Lightning Charging Cable,1,14.95,12/07/19 14:25,"398 Walnut St, Boston, MA 02215" -309391,Apple Airpods Headphones,1,150,12/03/19 10:26,"610 14th St, Dallas, TX 75001" -309392,iPhone,1,700,12/14/19 20:33,"199 Johnson St, New York City, NY 10001" -309393,Wired Headphones,1,11.99,12/12/19 00:41,"600 Hickory St, Los Angeles, CA 90001" -309394,AAA Batteries (4-pack),1,2.99,12/27/19 12:13,"190 11th St, New York City, NY 10001" -309395,Lightning Charging Cable,1,14.95,12/22/19 16:07,"640 Chestnut St, New York City, NY 10001" -309396,Flatscreen TV,2,300,12/04/19 12:45,"880 Washington St, Boston, MA 02215" -309397,27in FHD Monitor,1,149.99,12/02/19 09:52,"634 Washington St, San Francisco, CA 94016" -309398,Lightning Charging Cable,1,14.95,12/05/19 16:43,"484 Lakeview St, New York City, NY 10001" -309399,USB-C Charging Cable,1,11.95,12/24/19 08:49,"890 Main St, Los Angeles, CA 90001" -309400,Apple Airpods Headphones,1,150,12/21/19 11:52,"899 4th St, Portland, ME 04101" -309401,Lightning Charging Cable,1,14.95,12/03/19 22:42,"798 West St, Portland, ME 04101" -309402,AA Batteries (4-pack),3,3.84,12/26/19 11:43,"459 12th St, New York City, NY 10001" -309403,iPhone,1,700,12/08/19 22:03,"364 6th St, Boston, MA 02215" -309404,ThinkPad Laptop,1,999.99,12/29/19 19:31,"70 Dogwood St, Seattle, WA 98101" -309405,34in Ultrawide Monitor,1,379.99,12/05/19 11:25,"661 Lake St, San Francisco, CA 94016" -309406,20in Monitor,1,109.99,12/15/19 19:37,"739 Lincoln St, Los Angeles, CA 90001" -309407,Bose SoundSport Headphones,1,99.99,12/18/19 15:17,"115 9th St, Los Angeles, CA 90001" -309408,USB-C Charging Cable,1,11.95,12/13/19 08:32,"103 7th St, New York City, NY 10001" -309409,Apple Airpods Headphones,1,150,12/30/19 16:45,"551 Lincoln St, Boston, MA 02215" -309410,AAA Batteries (4-pack),1,2.99,12/08/19 22:28,"66 Chestnut St, Dallas, TX 75001" -309411,AA Batteries (4-pack),2,3.84,12/21/19 23:46,"192 Hickory St, San Francisco, CA 94016" -309412,AAA Batteries (4-pack),2,2.99,12/31/19 19:01,"542 5th St, San Francisco, CA 94016" -309413,Bose SoundSport Headphones,1,99.99,12/17/19 15:24,"150 9th St, Los Angeles, CA 90001" -309414,AAA Batteries (4-pack),1,2.99,12/21/19 12:14,"909 Sunset St, San Francisco, CA 94016" -309415,Apple Airpods Headphones,1,150,12/17/19 18:33,"685 Jackson St, Los Angeles, CA 90001" -309416,Lightning Charging Cable,1,14.95,12/30/19 10:38,"195 West St, San Francisco, CA 94016" -309417,34in Ultrawide Monitor,1,379.99,12/03/19 10:27,"218 Park St, Portland, OR 97035" -309418,AA Batteries (4-pack),1,3.84,12/25/19 10:09,"544 11th St, Atlanta, GA 30301" -309419,Google Phone,1,600,12/28/19 21:57,"926 Jefferson St, Los Angeles, CA 90001" -309419,USB-C Charging Cable,1,11.95,12/28/19 21:57,"926 Jefferson St, Los Angeles, CA 90001" -309420,34in Ultrawide Monitor,1,379.99,12/06/19 23:00,"999 6th St, Dallas, TX 75001" -309421,USB-C Charging Cable,1,11.95,12/28/19 18:35,"284 5th St, San Francisco, CA 94016" -309422,Lightning Charging Cable,1,14.95,12/19/19 23:45,"223 West St, Seattle, WA 98101" -309423,20in Monitor,1,109.99,12/22/19 20:30,"222 12th St, San Francisco, CA 94016" -309424,USB-C Charging Cable,1,11.95,12/24/19 23:44,"689 12th St, Austin, TX 73301" -309425,Wired Headphones,1,11.99,12/11/19 07:26,"456 River St, Los Angeles, CA 90001" -309426,Lightning Charging Cable,1,14.95,12/03/19 21:15,"813 North St, New York City, NY 10001" -309427,Bose SoundSport Headphones,1,99.99,12/21/19 11:02,"870 1st St, Dallas, TX 75001" -309428,27in 4K Gaming Monitor,1,389.99,12/14/19 11:57,"917 14th St, San Francisco, CA 94016" -309429,AA Batteries (4-pack),4,3.84,12/27/19 22:22,"172 Park St, New York City, NY 10001" -309429,Apple Airpods Headphones,1,150,12/27/19 22:22,"172 Park St, New York City, NY 10001" -309430,Apple Airpods Headphones,1,150,12/23/19 08:06,"361 Cherry St, San Francisco, CA 94016" -309431,USB-C Charging Cable,1,11.95,12/22/19 17:37,"138 Pine St, Seattle, WA 98101" -309432,Lightning Charging Cable,1,14.95,12/14/19 08:40,"677 Jefferson St, Austin, TX 73301" -309433,USB-C Charging Cable,1,11.95,12/24/19 12:23,"51 10th St, Austin, TX 73301" -309434,iPhone,1,700,12/19/19 09:19,"664 5th St, New York City, NY 10001" -309435,Wired Headphones,1,11.99,12/02/19 19:10,"819 Main St, Los Angeles, CA 90001" -309436,Lightning Charging Cable,1,14.95,12/23/19 11:33,"237 Adams St, Atlanta, GA 30301" -309437,20in Monitor,1,109.99,12/11/19 15:15,"235 South St, San Francisco, CA 94016" -309438,AAA Batteries (4-pack),1,2.99,12/28/19 19:52,"16 Jefferson St, San Francisco, CA 94016" -309439,Apple Airpods Headphones,1,150,12/17/19 13:06,"793 6th St, San Francisco, CA 94016" -309440,Bose SoundSport Headphones,1,99.99,12/08/19 20:30,"22 Washington St, Atlanta, GA 30301" -309441,USB-C Charging Cable,1,11.95,12/23/19 11:38,"309 Church St, Austin, TX 73301" -309442,iPhone,1,700,12/20/19 15:02,"930 Jefferson St, Los Angeles, CA 90001" -309443,Bose SoundSport Headphones,1,99.99,12/28/19 19:22,"846 7th St, Dallas, TX 75001" -309444,27in FHD Monitor,1,149.99,12/27/19 00:00,"753 Chestnut St, New York City, NY 10001" -309445,Wired Headphones,2,11.99,12/19/19 22:14,"517 Walnut St, San Francisco, CA 94016" -309446,Lightning Charging Cable,1,14.95,12/04/19 20:37,"813 Ridge St, San Francisco, CA 94016" -309447,AA Batteries (4-pack),1,3.84,12/27/19 14:41,"796 Walnut St, San Francisco, CA 94016" -309448,34in Ultrawide Monitor,1,379.99,12/06/19 12:59,"810 6th St, Atlanta, GA 30301" -309449,Lightning Charging Cable,1,14.95,12/05/19 18:01,"205 Jackson St, Boston, MA 02215" -309450,USB-C Charging Cable,1,11.95,12/04/19 13:47,"456 Madison St, Boston, MA 02215" -309451,Wired Headphones,1,11.99,12/15/19 01:05,"784 Hickory St, Austin, TX 73301" -309452,AAA Batteries (4-pack),1,2.99,12/10/19 14:15,"945 Lincoln St, Los Angeles, CA 90001" -309453,Google Phone,1,600,12/28/19 15:49,"120 9th St, San Francisco, CA 94016" -309454,20in Monitor,1,109.99,12/18/19 17:49,"449 2nd St, Dallas, TX 75001" -309455,AA Batteries (4-pack),1,3.84,12/31/19 16:19,"945 Hill St, Boston, MA 02215" -309456,Flatscreen TV,1,300,12/22/19 16:43,"186 Hickory St, Seattle, WA 98101" -309457,USB-C Charging Cable,1,11.95,12/04/19 14:53,"691 Park St, Los Angeles, CA 90001" -309458,Lightning Charging Cable,1,14.95,12/20/19 09:13,"270 Park St, New York City, NY 10001" -309459,27in 4K Gaming Monitor,1,389.99,12/16/19 20:57,"928 Jackson St, Seattle, WA 98101" -309460,34in Ultrawide Monitor,1,379.99,12/16/19 15:29,"74 Dogwood St, New York City, NY 10001" -309461,27in 4K Gaming Monitor,1,389.99,12/06/19 11:03,"614 Park St, San Francisco, CA 94016" -309462,AAA Batteries (4-pack),1,2.99,12/24/19 18:20,"812 5th St, New York City, NY 10001" -309463,Bose SoundSport Headphones,1,99.99,12/12/19 13:19,"911 Sunset St, New York City, NY 10001" -309464,Wired Headphones,1,11.99,12/27/19 15:51,"640 14th St, Atlanta, GA 30301" -309465,Google Phone,1,600,12/31/19 17:17,"117 Dogwood St, San Francisco, CA 94016" -309466,AA Batteries (4-pack),3,3.84,12/20/19 00:47,"377 Walnut St, Boston, MA 02215" -309467,34in Ultrawide Monitor,1,379.99,12/27/19 11:00,"552 North St, New York City, NY 10001" -309468,Macbook Pro Laptop,1,1700,12/17/19 10:31,"495 8th St, Atlanta, GA 30301" -309469,Bose SoundSport Headphones,1,99.99,12/10/19 19:52,"29 North St, San Francisco, CA 94016" -309470,Wired Headphones,1,11.99,12/04/19 00:15,"947 14th St, Boston, MA 02215" -309471,LG Dryer,1,600.0,12/29/19 12:22,"240 Lakeview St, New York City, NY 10001" -309472,Wired Headphones,1,11.99,12/21/19 17:22,"872 Center St, Portland, OR 97035" -309473,Apple Airpods Headphones,1,150,12/29/19 19:43,"8 Pine St, Seattle, WA 98101" -309474,Apple Airpods Headphones,1,150,12/31/19 07:53,"878 5th St, Boston, MA 02215" -309475,AAA Batteries (4-pack),1,2.99,12/09/19 07:10,"507 Dogwood St, Los Angeles, CA 90001" -309476,USB-C Charging Cable,1,11.95,12/27/19 08:40,"191 14th St, San Francisco, CA 94016" -309477,Flatscreen TV,1,300,12/13/19 07:34,"46 Washington St, Portland, OR 97035" -309478,Macbook Pro Laptop,1,1700,12/11/19 00:30,"995 8th St, Portland, OR 97035" -309479,Wired Headphones,1,11.99,12/06/19 13:04,"35 Washington St, San Francisco, CA 94016" -309480,27in 4K Gaming Monitor,1,389.99,12/26/19 09:46,"833 Chestnut St, Los Angeles, CA 90001" -309481,Wired Headphones,1,11.99,12/31/19 16:54,"366 Park St, Boston, MA 02215" -309482,AA Batteries (4-pack),1,3.84,12/10/19 16:59,"680 Lincoln St, New York City, NY 10001" -309483,Lightning Charging Cable,1,14.95,12/19/19 13:10,"820 1st St, Austin, TX 73301" -309484,AA Batteries (4-pack),1,3.84,12/05/19 12:27,"748 Wilson St, New York City, NY 10001" -309485,27in 4K Gaming Monitor,1,389.99,12/26/19 17:45,"323 8th St, Los Angeles, CA 90001" -309486,Lightning Charging Cable,1,14.95,12/07/19 14:38,"339 Sunset St, New York City, NY 10001" -309487,Macbook Pro Laptop,1,1700,12/15/19 11:58,"880 9th St, Atlanta, GA 30301" -309488,LG Dryer,1,600.0,12/13/19 11:30,"96 North St, San Francisco, CA 94016" -309489,Wired Headphones,1,11.99,12/05/19 16:09,"496 9th St, Boston, MA 02215" -309490,Apple Airpods Headphones,1,150,12/13/19 19:18,"933 2nd St, San Francisco, CA 94016" -309491,27in 4K Gaming Monitor,1,389.99,12/15/19 11:25,"504 Jackson St, Los Angeles, CA 90001" -309492,Apple Airpods Headphones,1,150,12/29/19 13:14,"304 Cedar St, Seattle, WA 98101" -309493,Apple Airpods Headphones,1,150,12/18/19 10:06,"468 10th St, Seattle, WA 98101" -309494,Apple Airpods Headphones,1,150,12/13/19 16:30,"784 Lincoln St, Los Angeles, CA 90001" -309495,Apple Airpods Headphones,1,150,12/27/19 10:55,"843 2nd St, San Francisco, CA 94016" -309496,AA Batteries (4-pack),1,3.84,12/14/19 23:01,"841 Lake St, Atlanta, GA 30301" -309497,34in Ultrawide Monitor,1,379.99,12/02/19 21:20,"712 Jefferson St, San Francisco, CA 94016" -309498,27in 4K Gaming Monitor,1,389.99,12/02/19 18:25,"36 West St, Austin, TX 73301" -309499,AAA Batteries (4-pack),1,2.99,12/24/19 13:41,"261 10th St, New York City, NY 10001" -309499,Lightning Charging Cable,1,14.95,12/24/19 13:41,"261 10th St, New York City, NY 10001" -309500,27in 4K Gaming Monitor,1,389.99,12/09/19 12:12,"706 Washington St, New York City, NY 10001" -309501,Wired Headphones,1,11.99,12/13/19 21:13,"882 Jackson St, New York City, NY 10001" -309502,Flatscreen TV,1,300,12/08/19 17:04,"552 10th St, Dallas, TX 75001" -309503,AA Batteries (4-pack),1,3.84,12/01/19 09:13,"419 Church St, New York City, NY 10001" -309504,Apple Airpods Headphones,1,150,12/24/19 15:09,"984 7th St, Atlanta, GA 30301" -309505,iPhone,1,700,12/12/19 23:15,"485 8th St, San Francisco, CA 94016" -309506,Google Phone,1,600,12/08/19 06:22,"395 14th St, Dallas, TX 75001" -309507,Apple Airpods Headphones,1,150,12/06/19 00:02,"338 9th St, Boston, MA 02215" -309508,Apple Airpods Headphones,1,150,12/24/19 20:02,"227 Forest St, New York City, NY 10001" -309509,AAA Batteries (4-pack),1,2.99,12/23/19 08:23,"365 West St, Atlanta, GA 30301" -309510,Bose SoundSport Headphones,1,99.99,12/07/19 16:32,"334 Dogwood St, New York City, NY 10001" -309511,Bose SoundSport Headphones,1,99.99,12/07/19 18:37,"101 Church St, Los Angeles, CA 90001" -309512,AA Batteries (4-pack),1,3.84,12/12/19 11:06,"397 10th St, Los Angeles, CA 90001" -309513,Bose SoundSport Headphones,1,99.99,12/21/19 13:51,"511 11th St, Austin, TX 73301" -309514,Wired Headphones,1,11.99,12/27/19 15:32,"902 10th St, Los Angeles, CA 90001" -309515,Wired Headphones,1,11.99,12/08/19 10:24,"931 1st St, New York City, NY 10001" -309516,AAA Batteries (4-pack),1,2.99,12/28/19 20:24,"303 Cedar St, Boston, MA 02215" -309517,ThinkPad Laptop,1,999.99,12/31/19 12:04,"446 Jackson St, Los Angeles, CA 90001" -309518,AA Batteries (4-pack),3,3.84,12/29/19 13:22,"418 North St, New York City, NY 10001" -309519,27in FHD Monitor,1,149.99,12/20/19 08:33,"672 Adams St, Portland, OR 97035" -309520,27in FHD Monitor,1,149.99,12/24/19 09:31,"630 River St, Dallas, TX 75001" -309521,Macbook Pro Laptop,1,1700,12/14/19 20:37,"400 Church St, Atlanta, GA 30301" -309522,AAA Batteries (4-pack),1,2.99,12/06/19 16:08,"160 5th St, Seattle, WA 98101" -309523,AAA Batteries (4-pack),2,2.99,12/26/19 15:42,"965 Willow St, Los Angeles, CA 90001" -309524,Wired Headphones,1,11.99,12/09/19 10:52,"264 Center St, Dallas, TX 75001" -309525,27in FHD Monitor,1,149.99,12/09/19 16:07,"259 Washington St, San Francisco, CA 94016" -309526,AAA Batteries (4-pack),3,2.99,12/26/19 14:40,"71 11th St, New York City, NY 10001" -309527,27in 4K Gaming Monitor,1,389.99,12/12/19 22:29,"126 Johnson St, New York City, NY 10001" -309527,Wired Headphones,1,11.99,12/12/19 22:29,"126 Johnson St, New York City, NY 10001" -309528,Apple Airpods Headphones,1,150,12/28/19 19:03,"692 13th St, New York City, NY 10001" -309529,34in Ultrawide Monitor,1,379.99,12/07/19 21:19,"730 Dogwood St, Boston, MA 02215" -309530,AAA Batteries (4-pack),1,2.99,12/29/19 23:14,"164 1st St, Portland, OR 97035" -309531,iPhone,1,700,12/11/19 15:58,"410 River St, San Francisco, CA 94016" -309531,Apple Airpods Headphones,1,150,12/11/19 15:58,"410 River St, San Francisco, CA 94016" -309532,Google Phone,1,600,12/03/19 15:06,"874 Adams St, Los Angeles, CA 90001" -309533,AA Batteries (4-pack),1,3.84,12/02/19 15:46,"778 Pine St, Boston, MA 02215" -309534,20in Monitor,1,109.99,12/30/19 12:08,"938 Walnut St, Los Angeles, CA 90001" -309535,Bose SoundSport Headphones,1,99.99,12/24/19 06:20,"102 Spruce St, Los Angeles, CA 90001" -309536,Bose SoundSport Headphones,1,99.99,12/24/19 10:43,"867 Jackson St, New York City, NY 10001" -309537,Lightning Charging Cable,1,14.95,12/23/19 19:13,"674 Spruce St, San Francisco, CA 94016" -309538,27in FHD Monitor,1,149.99,12/23/19 07:03,"448 Madison St, San Francisco, CA 94016" -309539,AA Batteries (4-pack),1,3.84,12/10/19 10:56,"183 1st St, Boston, MA 02215" -309540,27in 4K Gaming Monitor,1,389.99,12/25/19 19:43,"174 Adams St, Boston, MA 02215" -309541,34in Ultrawide Monitor,1,379.99,12/13/19 12:14,"567 2nd St, Los Angeles, CA 90001" -309542,Macbook Pro Laptop,1,1700,12/22/19 23:31,"475 11th St, San Francisco, CA 94016" -309543,Lightning Charging Cable,1,14.95,12/14/19 23:25,"743 Hickory St, San Francisco, CA 94016" -309544,27in FHD Monitor,1,149.99,12/19/19 12:17,"177 Meadow St, New York City, NY 10001" -309545,Wired Headphones,1,11.99,12/19/19 19:53,"352 5th St, Seattle, WA 98101" -309546,USB-C Charging Cable,1,11.95,12/11/19 16:25,"911 Church St, San Francisco, CA 94016" -309547,34in Ultrawide Monitor,1,379.99,12/27/19 21:20,"490 Jackson St, Dallas, TX 75001" -309548,iPhone,1,700,12/09/19 14:04,"705 Hill St, New York City, NY 10001" -309548,Lightning Charging Cable,1,14.95,12/09/19 14:04,"705 Hill St, New York City, NY 10001" -309549,20in Monitor,1,109.99,12/02/19 11:53,"568 14th St, San Francisco, CA 94016" -309550,Wired Headphones,2,11.99,12/01/19 09:36,"27 1st St, Atlanta, GA 30301" -309551,LG Dryer,1,600.0,12/15/19 10:18,"733 Spruce St, Austin, TX 73301" -309552,Google Phone,1,600,12/20/19 22:01,"805 Center St, Los Angeles, CA 90001" -309553,AA Batteries (4-pack),1,3.84,12/17/19 19:28,"590 Hill St, Portland, OR 97035" -309554,AA Batteries (4-pack),2,3.84,12/26/19 06:00,"15 Lakeview St, San Francisco, CA 94016" -309555,Wired Headphones,1,11.99,12/25/19 00:26,"669 Willow St, Los Angeles, CA 90001" -309556,Apple Airpods Headphones,1,150,12/13/19 18:45,"463 11th St, Boston, MA 02215" -309557,Google Phone,1,600,12/13/19 12:56,"723 13th St, San Francisco, CA 94016" -309558,27in FHD Monitor,1,149.99,12/18/19 00:30,"994 Sunset St, Los Angeles, CA 90001" -309559,AA Batteries (4-pack),2,3.84,12/17/19 08:33,"552 6th St, Boston, MA 02215" -309560,Lightning Charging Cable,1,14.95,12/23/19 15:09,"426 Jackson St, New York City, NY 10001" -309561,AAA Batteries (4-pack),1,2.99,12/28/19 17:39,"185 5th St, New York City, NY 10001" -309562,AA Batteries (4-pack),4,3.84,12/04/19 18:52,"401 Adams St, Dallas, TX 75001" -309563,Apple Airpods Headphones,2,150,12/10/19 17:53,"454 Jackson St, Dallas, TX 75001" -309564,27in FHD Monitor,1,149.99,12/22/19 17:48,"812 Chestnut St, San Francisco, CA 94016" -309565,Bose SoundSport Headphones,1,99.99,12/08/19 12:20,"188 5th St, Los Angeles, CA 90001" -309566,Google Phone,1,600,12/27/19 07:50,"311 South St, Boston, MA 02215" -309567,AA Batteries (4-pack),1,3.84,12/26/19 14:51,"28 Ridge St, Austin, TX 73301" -309568,Wired Headphones,1,11.99,12/02/19 13:54,"13 11th St, Los Angeles, CA 90001" -309569,LG Dryer,1,600.0,12/10/19 08:42,"176 Cherry St, New York City, NY 10001" -309570,USB-C Charging Cable,1,11.95,12/09/19 15:49,"645 Spruce St, Atlanta, GA 30301" -309571,iPhone,1,700,12/20/19 14:49,"529 12th St, Atlanta, GA 30301" -309572,Lightning Charging Cable,1,14.95,12/08/19 19:15,"868 12th St, Portland, OR 97035" -309573,iPhone,1,700,12/13/19 15:04,"883 Sunset St, Portland, OR 97035" -309574,27in 4K Gaming Monitor,1,389.99,12/12/19 13:49,"553 Jefferson St, Boston, MA 02215" -309575,Bose SoundSport Headphones,1,99.99,12/26/19 08:36,"307 Chestnut St, Los Angeles, CA 90001" -309576,27in 4K Gaming Monitor,1,389.99,12/16/19 14:50,"967 Chestnut St, Portland, OR 97035" -309577,AA Batteries (4-pack),1,3.84,12/05/19 17:28,"609 10th St, Atlanta, GA 30301" -309578,AA Batteries (4-pack),1,3.84,12/11/19 17:27,"94 14th St, San Francisco, CA 94016" -309579,AA Batteries (4-pack),1,3.84,12/24/19 08:37,"167 Dogwood St, Seattle, WA 98101" -309580,USB-C Charging Cable,1,11.95,12/22/19 20:03,"837 Sunset St, San Francisco, CA 94016" -309581,USB-C Charging Cable,1,11.95,12/14/19 16:55,"17 Hickory St, Portland, ME 04101" -309582,AAA Batteries (4-pack),1,2.99,12/24/19 12:21,"175 Adams St, Seattle, WA 98101" -309583,ThinkPad Laptop,1,999.99,12/08/19 20:13,"155 Willow St, Los Angeles, CA 90001" -309584,Wired Headphones,1,11.99,12/31/19 04:20,"820 Meadow St, Seattle, WA 98101" -309585,AAA Batteries (4-pack),1,2.99,12/06/19 10:38,"263 Dogwood St, San Francisco, CA 94016" -309586,Macbook Pro Laptop,1,1700,12/06/19 16:10,"736 Spruce St, New York City, NY 10001" -309587,USB-C Charging Cable,1,11.95,12/16/19 19:16,"251 Sunset St, Portland, OR 97035" -309588,20in Monitor,1,109.99,12/20/19 21:50,"140 Forest St, San Francisco, CA 94016" -309589,USB-C Charging Cable,1,11.95,12/03/19 09:22,"573 Lakeview St, New York City, NY 10001" -309590,USB-C Charging Cable,1,11.95,12/05/19 13:33,"12 Chestnut St, Seattle, WA 98101" -309591,ThinkPad Laptop,1,999.99,12/28/19 20:35,"692 Maple St, Portland, ME 04101" -309592,34in Ultrawide Monitor,1,379.99,12/03/19 20:04,"43 Main St, San Francisco, CA 94016" -309593,USB-C Charging Cable,1,11.95,12/05/19 12:06,"781 North St, Boston, MA 02215" -309594,Lightning Charging Cable,1,14.95,12/20/19 18:16,"484 Spruce St, Portland, OR 97035" -309595,Lightning Charging Cable,1,14.95,12/27/19 12:58,"582 11th St, Boston, MA 02215" -309596,AA Batteries (4-pack),1,3.84,12/15/19 08:30,"311 8th St, Boston, MA 02215" -309597,Wired Headphones,1,11.99,12/29/19 19:13,"63 Madison St, Boston, MA 02215" -309598,Bose SoundSport Headphones,1,99.99,12/28/19 12:43,"401 Johnson St, Atlanta, GA 30301" -309599,AA Batteries (4-pack),1,3.84,12/22/19 13:19,"730 Forest St, San Francisco, CA 94016" -309600,Lightning Charging Cable,1,14.95,12/12/19 20:29,"20 Hill St, San Francisco, CA 94016" -309601,AAA Batteries (4-pack),1,2.99,12/27/19 12:57,"303 Elm St, Atlanta, GA 30301" -309602,AA Batteries (4-pack),1,3.84,12/17/19 23:58,"643 Lake St, Dallas, TX 75001" -309603,34in Ultrawide Monitor,1,379.99,12/28/19 19:21,"203 Hill St, New York City, NY 10001" -309604,Macbook Pro Laptop,1,1700,12/19/19 10:58,"121 Chestnut St, Seattle, WA 98101" -309605,Apple Airpods Headphones,1,150,12/19/19 16:18,"965 Cherry St, Portland, OR 97035" -309606,AAA Batteries (4-pack),2,2.99,12/13/19 11:40,"979 Ridge St, Seattle, WA 98101" -309607,34in Ultrawide Monitor,1,379.99,12/11/19 15:32,"205 Walnut St, Los Angeles, CA 90001" -309608,AAA Batteries (4-pack),3,2.99,12/13/19 20:05,"502 North St, San Francisco, CA 94016" -309609,AAA Batteries (4-pack),3,2.99,12/17/19 18:24,"170 Johnson St, San Francisco, CA 94016" -309610,27in FHD Monitor,1,149.99,12/31/19 20:39,"920 Main St, Atlanta, GA 30301" -309611,34in Ultrawide Monitor,1,379.99,12/26/19 20:53,"57 West St, Los Angeles, CA 90001" -309612,AA Batteries (4-pack),1,3.84,12/19/19 12:16,"27 Dogwood St, Los Angeles, CA 90001" -309613,Bose SoundSport Headphones,1,99.99,12/02/19 20:58,"297 Dogwood St, San Francisco, CA 94016" -309614,AAA Batteries (4-pack),1,2.99,12/08/19 17:06,"274 Adams St, Seattle, WA 98101" -309615,Lightning Charging Cable,1,14.95,12/12/19 22:34,"529 Elm St, New York City, NY 10001" -309616,USB-C Charging Cable,1,11.95,12/19/19 19:33,"187 Dogwood St, Los Angeles, CA 90001" -309617,27in FHD Monitor,1,149.99,12/04/19 10:46,"69 Jefferson St, Seattle, WA 98101" -309618,27in FHD Monitor,1,149.99,12/18/19 21:23,"569 14th St, New York City, NY 10001" -309619,AAA Batteries (4-pack),1,2.99,12/08/19 21:55,"560 Maple St, San Francisco, CA 94016" -309620,27in 4K Gaming Monitor,1,389.99,12/23/19 14:17,"746 Adams St, San Francisco, CA 94016" -309621,AA Batteries (4-pack),1,3.84,12/11/19 15:46,"229 Chestnut St, San Francisco, CA 94016" -309622,20in Monitor,1,109.99,12/01/19 18:19,"673 Johnson St, Dallas, TX 75001" -309623,Lightning Charging Cable,1,14.95,12/06/19 11:00,"460 Ridge St, New York City, NY 10001" -309624,Apple Airpods Headphones,1,150,12/08/19 21:10,"884 1st St, San Francisco, CA 94016" -309625,Apple Airpods Headphones,1,150,12/09/19 13:11,"987 Lakeview St, San Francisco, CA 94016" -309626,AA Batteries (4-pack),1,3.84,12/03/19 15:43,"845 Dogwood St, San Francisco, CA 94016" -309627,Apple Airpods Headphones,1,150,12/30/19 18:55,"614 Wilson St, San Francisco, CA 94016" -309628,34in Ultrawide Monitor,1,379.99,12/18/19 18:05,"842 6th St, San Francisco, CA 94016" -309629,AA Batteries (4-pack),3,3.84,12/24/19 12:25,"157 River St, Dallas, TX 75001" -309630,34in Ultrawide Monitor,1,379.99,12/11/19 11:10,"525 12th St, New York City, NY 10001" -309631,Google Phone,1,600,12/26/19 15:31,"497 Ridge St, New York City, NY 10001" -309632,AAA Batteries (4-pack),1,2.99,12/29/19 17:48,"813 9th St, Seattle, WA 98101" -309633,Lightning Charging Cable,1,14.95,12/06/19 11:07,"179 Lakeview St, New York City, NY 10001" -309634,AA Batteries (4-pack),1,3.84,12/30/19 22:08,"695 Park St, Los Angeles, CA 90001" -309635,27in 4K Gaming Monitor,1,389.99,12/25/19 18:47,"592 4th St, San Francisco, CA 94016" -309636,iPhone,1,700,12/18/19 19:16,"653 5th St, Seattle, WA 98101" -309637,34in Ultrawide Monitor,1,379.99,12/20/19 08:03,"227 Spruce St, San Francisco, CA 94016" -309638,Macbook Pro Laptop,1,1700,12/22/19 17:53,"846 Jefferson St, Boston, MA 02215" -309639,Wired Headphones,1,11.99,12/03/19 21:01,"327 Pine St, Boston, MA 02215" -309640,34in Ultrawide Monitor,1,379.99,12/14/19 20:07,"718 Lincoln St, San Francisco, CA 94016" -309641,34in Ultrawide Monitor,1,379.99,12/17/19 19:34,"602 Walnut St, Atlanta, GA 30301" -309642,Google Phone,1,600,12/31/19 00:46,"843 Church St, Boston, MA 02215" -309643,AAA Batteries (4-pack),1,2.99,12/20/19 13:27,"938 12th St, San Francisco, CA 94016" -309644,AA Batteries (4-pack),1,3.84,12/23/19 15:57,"351 2nd St, Dallas, TX 75001" -309645,AAA Batteries (4-pack),2,2.99,12/29/19 21:41,"537 Park St, San Francisco, CA 94016" -309646,Lightning Charging Cable,1,14.95,12/02/19 21:12,"896 Spruce St, Boston, MA 02215" -309647,Wired Headphones,1,11.99,12/03/19 21:23,"628 9th St, San Francisco, CA 94016" -309648,Wired Headphones,1,11.99,12/03/19 00:10,"238 West St, Seattle, WA 98101" -309649,Vareebadd Phone,1,400,12/12/19 21:53,"418 Lincoln St, San Francisco, CA 94016" -309650,Google Phone,1,600,12/24/19 17:51,"989 Johnson St, Dallas, TX 75001" -309651,AA Batteries (4-pack),1,3.84,12/31/19 20:08,"59 Hickory St, Atlanta, GA 30301" -309652,AA Batteries (4-pack),2,3.84,12/18/19 20:05,"495 Dogwood St, San Francisco, CA 94016" -309653,Wired Headphones,1,11.99,12/03/19 23:23,"660 Johnson St, San Francisco, CA 94016" -309654,USB-C Charging Cable,1,11.95,12/17/19 14:43,"236 1st St, Los Angeles, CA 90001" -309655,Wired Headphones,1,11.99,12/08/19 21:29,"688 Hickory St, Boston, MA 02215" -309656,Bose SoundSport Headphones,1,99.99,12/01/19 12:34,"533 Sunset St, Boston, MA 02215" -309657,27in FHD Monitor,1,149.99,12/29/19 09:48,"448 Ridge St, Atlanta, GA 30301" -309658,Flatscreen TV,1,300,12/24/19 09:35,"977 1st St, Boston, MA 02215" -309659,Wired Headphones,1,11.99,12/17/19 01:00,"899 Ridge St, San Francisco, CA 94016" -309660,Apple Airpods Headphones,1,150,12/04/19 11:46,"324 8th St, Atlanta, GA 30301" -309661,iPhone,1,700,12/04/19 15:56,"346 Lake St, Austin, TX 73301" -309661,Lightning Charging Cable,1,14.95,12/04/19 15:56,"346 Lake St, Austin, TX 73301" -309662,iPhone,1,700,12/04/19 11:20,"81 Cedar St, San Francisco, CA 94016" -309663,Lightning Charging Cable,2,14.95,12/30/19 20:32,"901 Cherry St, Los Angeles, CA 90001" -309664,Bose SoundSport Headphones,1,99.99,12/19/19 16:39,"655 11th St, Seattle, WA 98101" -309665,34in Ultrawide Monitor,1,379.99,12/11/19 03:31,"100 Madison St, San Francisco, CA 94016" -309666,Macbook Pro Laptop,1,1700,12/15/19 04:20,"348 Walnut St, Los Angeles, CA 90001" -309667,Wired Headphones,1,11.99,12/30/19 13:08,"784 11th St, Dallas, TX 75001" -309668,USB-C Charging Cable,1,11.95,12/29/19 08:47,"302 Hill St, Atlanta, GA 30301" -309669,AA Batteries (4-pack),1,3.84,12/26/19 12:45,"590 Center St, San Francisco, CA 94016" -309670,AAA Batteries (4-pack),1,2.99,12/03/19 21:07,"520 Cedar St, San Francisco, CA 94016" -309671,Lightning Charging Cable,1,14.95,12/16/19 12:58,"90 Lakeview St, New York City, NY 10001" -309672,27in 4K Gaming Monitor,1,389.99,12/22/19 13:44,"427 Highland St, San Francisco, CA 94016" -309673,Flatscreen TV,1,300,12/07/19 16:34,"13 Meadow St, Seattle, WA 98101" -309674,AA Batteries (4-pack),1,3.84,12/06/19 12:54,"666 West St, Dallas, TX 75001" -309675,34in Ultrawide Monitor,1,379.99,12/30/19 14:23,"638 10th St, New York City, NY 10001" -309676,ThinkPad Laptop,1,999.99,12/23/19 10:07,"328 4th St, New York City, NY 10001" -309677,AAA Batteries (4-pack),1,2.99,12/26/19 09:30,"782 12th St, Portland, ME 04101" -309678,Wired Headphones,1,11.99,12/27/19 23:00,"462 Jefferson St, Los Angeles, CA 90001" -309679,USB-C Charging Cable,1,11.95,12/19/19 15:00,"203 6th St, San Francisco, CA 94016" -309680,AAA Batteries (4-pack),1,2.99,12/15/19 20:03,"305 Chestnut St, Boston, MA 02215" -309681,Wired Headphones,1,11.99,12/23/19 19:48,"287 13th St, Seattle, WA 98101" -309682,Wired Headphones,1,11.99,12/05/19 13:08,"470 2nd St, New York City, NY 10001" -309683,AAA Batteries (4-pack),2,2.99,12/27/19 20:07,"735 Elm St, Dallas, TX 75001" -309684,27in FHD Monitor,1,149.99,12/06/19 00:09,"839 Highland St, San Francisco, CA 94016" -309685,Lightning Charging Cable,1,14.95,12/24/19 08:37,"390 Lake St, Austin, TX 73301" -309686,Bose SoundSport Headphones,1,99.99,12/14/19 22:34,"114 Lakeview St, Portland, OR 97035" -309687,AAA Batteries (4-pack),1,2.99,12/14/19 12:18,"96 Cedar St, Atlanta, GA 30301" -309688,Lightning Charging Cable,1,14.95,12/26/19 09:37,"65 Lincoln St, San Francisco, CA 94016" -309689,Flatscreen TV,1,300,12/23/19 15:13,"332 Madison St, Dallas, TX 75001" -309690,USB-C Charging Cable,1,11.95,12/17/19 23:05,"758 8th St, Los Angeles, CA 90001" -309690,Wired Headphones,1,11.99,12/17/19 23:05,"758 8th St, Los Angeles, CA 90001" -309691,Google Phone,1,600,12/31/19 18:01,"340 7th St, San Francisco, CA 94016" -309692,iPhone,1,700,12/13/19 12:02,"370 4th St, New York City, NY 10001" -309693,Bose SoundSport Headphones,1,99.99,12/07/19 23:29,"386 Dogwood St, San Francisco, CA 94016" -309694,Apple Airpods Headphones,1,150,12/12/19 09:26,"877 Spruce St, San Francisco, CA 94016" -309695,Lightning Charging Cable,1,14.95,12/22/19 11:52,"543 Main St, New York City, NY 10001" -309696,27in FHD Monitor,1,149.99,12/16/19 13:44,"112 Spruce St, Los Angeles, CA 90001" -309697,AA Batteries (4-pack),1,3.84,12/22/19 19:17,"902 5th St, Dallas, TX 75001" -309698,Bose SoundSport Headphones,1,99.99,12/06/19 13:10,"497 Jackson St, Portland, ME 04101" -309699,Apple Airpods Headphones,1,150,12/13/19 21:33,"752 Church St, Boston, MA 02215" -309700,AA Batteries (4-pack),1,3.84,12/07/19 13:03,"523 9th St, Atlanta, GA 30301" -309701,Macbook Pro Laptop,1,1700,12/10/19 07:42,"144 Lincoln St, San Francisco, CA 94016" -309702,AA Batteries (4-pack),1,3.84,12/03/19 09:24,"933 Wilson St, Atlanta, GA 30301" -309703,Apple Airpods Headphones,1,150,12/27/19 19:11,"599 5th St, Los Angeles, CA 90001" -309703,Wired Headphones,1,11.99,12/27/19 19:11,"599 5th St, Los Angeles, CA 90001" -309704,27in FHD Monitor,1,149.99,12/26/19 13:36,"798 8th St, Dallas, TX 75001" -309705,Lightning Charging Cable,1,14.95,12/25/19 11:06,"432 Lake St, New York City, NY 10001" -309706,AA Batteries (4-pack),2,3.84,12/17/19 19:46,"153 Hill St, San Francisco, CA 94016" -309706,AA Batteries (4-pack),1,3.84,12/17/19 19:46,"153 Hill St, San Francisco, CA 94016" -309707,Lightning Charging Cable,1,14.95,12/10/19 09:59,"90 Lakeview St, New York City, NY 10001" -309708,27in 4K Gaming Monitor,1,389.99,12/16/19 19:41,"379 Sunset St, San Francisco, CA 94016" -309709,Apple Airpods Headphones,1,150,12/12/19 17:31,"217 Lincoln St, Seattle, WA 98101" -309710,Google Phone,1,600,12/10/19 18:45,"41 Jackson St, San Francisco, CA 94016" -309711,ThinkPad Laptop,1,999.99,12/02/19 17:36,"767 Elm St, San Francisco, CA 94016" -309712,Vareebadd Phone,1,400,12/03/19 15:39,"425 Wilson St, New York City, NY 10001" -309712,USB-C Charging Cable,1,11.95,12/03/19 15:39,"425 Wilson St, New York City, NY 10001" -309713,USB-C Charging Cable,1,11.95,12/11/19 17:51,"350 River St, Boston, MA 02215" -309714,Apple Airpods Headphones,1,150,12/19/19 14:09,"977 River St, Los Angeles, CA 90001" -309715,AAA Batteries (4-pack),2,2.99,12/21/19 20:58,"710 12th St, Atlanta, GA 30301" -309716,USB-C Charging Cable,1,11.95,12/30/19 10:34,"747 8th St, San Francisco, CA 94016" -309717,USB-C Charging Cable,1,11.95,12/04/19 12:42,"701 8th St, San Francisco, CA 94016" -309718,Wired Headphones,1,11.99,12/15/19 01:26,"335 Chestnut St, Atlanta, GA 30301" -309719,Wired Headphones,1,11.99,12/29/19 09:34,"74 Adams St, San Francisco, CA 94016" -309720,Flatscreen TV,1,300,12/24/19 18:26,"276 Sunset St, San Francisco, CA 94016" -309721,Bose SoundSport Headphones,1,99.99,12/09/19 12:47,"510 Madison St, New York City, NY 10001" -309722,iPhone,1,700,12/24/19 19:13,"722 Chestnut St, New York City, NY 10001" -309723,AAA Batteries (4-pack),1,2.99,12/10/19 17:12,"11 Main St, Los Angeles, CA 90001" -309724,Lightning Charging Cable,1,14.95,12/06/19 22:34,"269 Center St, Seattle, WA 98101" -309725,Macbook Pro Laptop,1,1700,12/19/19 06:44,"407 Church St, Atlanta, GA 30301" -309726,Macbook Pro Laptop,1,1700,12/01/19 07:51,"934 Hickory St, Portland, ME 04101" -309727,Apple Airpods Headphones,1,150,12/21/19 13:09,"987 Walnut St, Atlanta, GA 30301" -309728,Vareebadd Phone,1,400,12/30/19 07:59,"618 Walnut St, Austin, TX 73301" -309729,AA Batteries (4-pack),3,3.84,12/08/19 07:22,"694 Jefferson St, Austin, TX 73301" -309730,20in Monitor,1,109.99,12/28/19 13:59,"545 Ridge St, San Francisco, CA 94016" -309731,Wired Headphones,1,11.99,12/27/19 11:19,"267 Main St, San Francisco, CA 94016" -309732,Macbook Pro Laptop,1,1700,12/11/19 14:31,"229 1st St, San Francisco, CA 94016" -309733,27in 4K Gaming Monitor,1,389.99,12/12/19 11:46,"426 Ridge St, Dallas, TX 75001" -309734,Wired Headphones,1,11.99,12/20/19 01:32,"746 Willow St, San Francisco, CA 94016" -309735,Flatscreen TV,1,300,12/06/19 16:04,"920 Adams St, Austin, TX 73301" -309736,AAA Batteries (4-pack),1,2.99,12/23/19 12:13,"18 River St, San Francisco, CA 94016" -309737,AAA Batteries (4-pack),1,2.99,12/23/19 13:01,"229 Chestnut St, Atlanta, GA 30301" -309738,Apple Airpods Headphones,1,150,12/24/19 07:03,"736 Ridge St, Los Angeles, CA 90001" -309739,AA Batteries (4-pack),1,3.84,12/11/19 15:02,"773 Johnson St, San Francisco, CA 94016" -309740,Bose SoundSport Headphones,1,99.99,12/13/19 15:15,"407 Lake St, New York City, NY 10001" -309741,Wired Headphones,1,11.99,12/27/19 19:19,"133 Hickory St, Portland, ME 04101" -309742,Wired Headphones,1,11.99,12/30/19 11:13,"361 Jefferson St, San Francisco, CA 94016" -309743,Wired Headphones,1,11.99,12/04/19 12:46,"341 River St, Los Angeles, CA 90001" -309744,Apple Airpods Headphones,1,150,12/14/19 18:12,"744 12th St, Atlanta, GA 30301" -309745,27in 4K Gaming Monitor,1,389.99,12/04/19 18:06,"70 Jefferson St, New York City, NY 10001" -309746,Lightning Charging Cable,1,14.95,12/09/19 06:42,"33 10th St, New York City, NY 10001" -309747,Lightning Charging Cable,1,14.95,12/03/19 21:39,"964 Willow St, Austin, TX 73301" -309748,Apple Airpods Headphones,1,150,12/04/19 17:00,"872 12th St, Los Angeles, CA 90001" -309749,USB-C Charging Cable,1,11.95,12/21/19 19:07,"417 Walnut St, Seattle, WA 98101" -309750,Lightning Charging Cable,1,14.95,12/08/19 13:32,"493 7th St, Dallas, TX 75001" -309751,Wired Headphones,1,11.99,12/25/19 00:41,"872 Maple St, Boston, MA 02215" -309752,AA Batteries (4-pack),1,3.84,12/24/19 04:36,"595 14th St, Los Angeles, CA 90001" -309753,Apple Airpods Headphones,1,150,12/21/19 18:43,"209 Park St, Boston, MA 02215" -309754,AA Batteries (4-pack),1,3.84,12/29/19 07:33,"582 10th St, Boston, MA 02215" -309754,Lightning Charging Cable,1,14.95,12/29/19 07:33,"582 10th St, Boston, MA 02215" -309755,Apple Airpods Headphones,1,150,12/05/19 07:34,"905 2nd St, San Francisco, CA 94016" -309756,Apple Airpods Headphones,1,150,12/30/19 13:42,"511 Meadow St, Boston, MA 02215" -309757,Apple Airpods Headphones,1,150,12/02/19 16:34,"177 10th St, Dallas, TX 75001" -309758,AAA Batteries (4-pack),2,2.99,12/29/19 20:20,"524 Madison St, Portland, OR 97035" -309759,Google Phone,1,600,12/30/19 03:30,"299 Center St, Boston, MA 02215" -309759,USB-C Charging Cable,1,11.95,12/30/19 03:30,"299 Center St, Boston, MA 02215" -309759,Bose SoundSport Headphones,1,99.99,12/30/19 03:30,"299 Center St, Boston, MA 02215" -309760,Lightning Charging Cable,1,14.95,12/30/19 11:34,"654 Forest St, Atlanta, GA 30301" -309761,AAA Batteries (4-pack),3,2.99,12/12/19 12:43,"478 5th St, Atlanta, GA 30301" -309762,27in FHD Monitor,1,149.99,12/10/19 17:05,"264 West St, Portland, OR 97035" -309763,AA Batteries (4-pack),1,3.84,12/28/19 22:16,"172 Washington St, Dallas, TX 75001" -309764,AA Batteries (4-pack),2,3.84,12/24/19 12:13,"192 7th St, San Francisco, CA 94016" -309765,34in Ultrawide Monitor,1,379.99,12/27/19 11:40,"4 Washington St, Portland, OR 97035" -309766,27in FHD Monitor,1,149.99,12/19/19 17:55,"902 Washington St, Austin, TX 73301" -309767,AAA Batteries (4-pack),1,2.99,12/13/19 21:49,"698 Lincoln St, San Francisco, CA 94016" -309768,AA Batteries (4-pack),1,3.84,12/16/19 00:51,"688 Lake St, San Francisco, CA 94016" -309769,27in FHD Monitor,1,149.99,12/19/19 08:51,"680 12th St, New York City, NY 10001" -309770,AAA Batteries (4-pack),1,2.99,12/06/19 17:31,"669 Highland St, San Francisco, CA 94016" -309771,Lightning Charging Cable,1,14.95,12/17/19 11:26,"534 Forest St, New York City, NY 10001" -309772,Bose SoundSport Headphones,1,99.99,12/07/19 13:58,"727 Adams St, Dallas, TX 75001" -309773,AAA Batteries (4-pack),1,2.99,12/31/19 23:52,"60 Hickory St, Los Angeles, CA 90001" -309774,AA Batteries (4-pack),2,3.84,12/05/19 09:06,"507 Wilson St, San Francisco, CA 94016" -309775,ThinkPad Laptop,1,999.99,12/26/19 19:30,"809 Sunset St, Boston, MA 02215" -309776,Lightning Charging Cable,1,14.95,12/31/19 15:02,"998 North St, San Francisco, CA 94016" -309777,Flatscreen TV,1,300,12/16/19 08:04,"702 13th St, San Francisco, CA 94016" -309778,Bose SoundSport Headphones,1,99.99,12/12/19 23:08,"311 1st St, San Francisco, CA 94016" -309779,Bose SoundSport Headphones,1,99.99,12/21/19 14:55,"9 14th St, Austin, TX 73301" -309780,AAA Batteries (4-pack),2,2.99,12/12/19 17:03,"868 Ridge St, Austin, TX 73301" -309781,Wired Headphones,1,11.99,12/03/19 15:47,"513 Elm St, Dallas, TX 75001" -309782,USB-C Charging Cable,1,11.95,12/21/19 18:01,"439 South St, New York City, NY 10001" -309783,AA Batteries (4-pack),1,3.84,12/10/19 13:51,"703 7th St, San Francisco, CA 94016" -309784,USB-C Charging Cable,1,11.95,12/01/19 12:49,"777 Ridge St, Los Angeles, CA 90001" -309785,USB-C Charging Cable,2,11.95,12/12/19 15:28,"526 Jackson St, New York City, NY 10001" -309786,27in 4K Gaming Monitor,1,389.99,12/02/19 22:33,"607 Spruce St, San Francisco, CA 94016" -309787,Apple Airpods Headphones,1,150,12/30/19 22:43,"514 Spruce St, Los Angeles, CA 90001" -309788,AAA Batteries (4-pack),1,2.99,12/27/19 13:40,"468 Spruce St, Boston, MA 02215" -309789,Lightning Charging Cable,1,14.95,12/04/19 16:21,"558 South St, Seattle, WA 98101" -309790,AAA Batteries (4-pack),1,2.99,12/14/19 09:02,"971 Maple St, Portland, OR 97035" -309791,Apple Airpods Headphones,1,150,12/31/19 15:40,"393 Spruce St, Austin, TX 73301" -309792,AA Batteries (4-pack),2,3.84,12/08/19 16:34,"434 West St, New York City, NY 10001" -309793,Apple Airpods Headphones,1,150,12/22/19 17:53,"161 Cherry St, New York City, NY 10001" -309794,Apple Airpods Headphones,1,150,12/08/19 20:43,"83 Hickory St, New York City, NY 10001" -309795,USB-C Charging Cable,1,11.95,12/04/19 17:50,"259 Madison St, Los Angeles, CA 90001" -309796,Lightning Charging Cable,1,14.95,12/17/19 01:46,"642 Cherry St, San Francisco, CA 94016" -309797,ThinkPad Laptop,1,999.99,12/02/19 13:32,"541 1st St, Austin, TX 73301" -309797,USB-C Charging Cable,1,11.95,12/02/19 13:32,"541 1st St, Austin, TX 73301" -309798,USB-C Charging Cable,1,11.95,12/21/19 23:29,"449 Adams St, New York City, NY 10001" -309799,Wired Headphones,1,11.99,12/15/19 19:30,"246 9th St, Seattle, WA 98101" -309800,AA Batteries (4-pack),1,3.84,12/20/19 19:19,"701 Pine St, Atlanta, GA 30301" -309801,Macbook Pro Laptop,1,1700,12/08/19 21:12,"430 North St, Dallas, TX 75001" -309802,Apple Airpods Headphones,1,150,12/21/19 20:36,"143 North St, Dallas, TX 75001" -309803,AAA Batteries (4-pack),1,2.99,12/12/19 20:54,"615 Jackson St, San Francisco, CA 94016" -309804,Bose SoundSport Headphones,1,99.99,12/12/19 18:49,"805 Washington St, Austin, TX 73301" -309805,Bose SoundSport Headphones,1,99.99,12/19/19 11:55,"827 13th St, New York City, NY 10001" -309806,20in Monitor,1,109.99,12/02/19 12:34,"889 Lakeview St, New York City, NY 10001" -309807,Lightning Charging Cable,1,14.95,12/08/19 15:18,"805 Adams St, Los Angeles, CA 90001" -309808,27in FHD Monitor,1,149.99,12/22/19 22:42,"832 6th St, Seattle, WA 98101" -309809,AA Batteries (4-pack),2,3.84,12/10/19 14:49,"316 1st St, Atlanta, GA 30301" -309810,AAA Batteries (4-pack),1,2.99,12/10/19 08:58,"938 Cedar St, New York City, NY 10001" -309811,AAA Batteries (4-pack),3,2.99,12/14/19 21:56,"374 2nd St, San Francisco, CA 94016" -309812,Apple Airpods Headphones,1,150,12/13/19 21:40,"83 Sunset St, Atlanta, GA 30301" -309813,AA Batteries (4-pack),1,3.84,12/27/19 20:21,"158 North St, San Francisco, CA 94016" -309814,AAA Batteries (4-pack),1,2.99,12/21/19 09:10,"44 Cedar St, Seattle, WA 98101" -309815,Lightning Charging Cable,1,14.95,12/14/19 12:43,"324 River St, Austin, TX 73301" -309816,Bose SoundSport Headphones,1,99.99,12/25/19 05:47,"354 8th St, Los Angeles, CA 90001" -309817,AAA Batteries (4-pack),1,2.99,12/01/19 16:52,"252 7th St, Portland, OR 97035" -309818,Apple Airpods Headphones,1,150,12/10/19 13:22,"714 West St, New York City, NY 10001" -309819,Google Phone,1,600,12/15/19 15:56,"62 9th St, Atlanta, GA 30301" -309819,Bose SoundSport Headphones,1,99.99,12/15/19 15:56,"62 9th St, Atlanta, GA 30301" -309820,USB-C Charging Cable,1,11.95,12/04/19 18:43,"817 Park St, Portland, OR 97035" -309821,Google Phone,1,600,12/08/19 00:59,"689 Hickory St, Atlanta, GA 30301" -309822,Wired Headphones,1,11.99,12/23/19 09:05,"234 Dogwood St, San Francisco, CA 94016" -309823,Macbook Pro Laptop,1,1700,12/17/19 11:18,"689 Sunset St, San Francisco, CA 94016" -,,,,, -309824,AA Batteries (4-pack),2,3.84,12/05/19 16:54,"240 1st St, Portland, OR 97035" -309825,USB-C Charging Cable,1,11.95,12/18/19 09:33,"213 Walnut St, Seattle, WA 98101" -309826,Wired Headphones,1,11.99,12/26/19 19:01,"818 4th St, Seattle, WA 98101" -309827,Apple Airpods Headphones,1,150,12/22/19 11:17,"827 Spruce St, San Francisco, CA 94016" -309828,34in Ultrawide Monitor,1,379.99,12/06/19 19:59,"984 Madison St, Atlanta, GA 30301" -309829,USB-C Charging Cable,1,11.95,12/11/19 14:29,"508 North St, San Francisco, CA 94016" -309830,AAA Batteries (4-pack),1,2.99,12/29/19 20:23,"297 10th St, Los Angeles, CA 90001" -309831,iPhone,1,700,12/21/19 19:36,"578 Wilson St, Los Angeles, CA 90001" -309832,27in FHD Monitor,1,149.99,12/30/19 13:21,"525 14th St, New York City, NY 10001" -309833,Wired Headphones,1,11.99,12/10/19 13:33,"195 Lakeview St, San Francisco, CA 94016" -309834,AA Batteries (4-pack),1,3.84,12/09/19 21:23,"568 Hill St, San Francisco, CA 94016" -309835,Lightning Charging Cable,1,14.95,12/03/19 17:29,"774 4th St, Los Angeles, CA 90001" -309836,Wired Headphones,1,11.99,12/30/19 12:59,"994 Forest St, Atlanta, GA 30301" -309837,Bose SoundSport Headphones,1,99.99,12/16/19 03:14,"356 4th St, Atlanta, GA 30301" -309838,AA Batteries (4-pack),1,3.84,12/29/19 11:25,"338 2nd St, San Francisco, CA 94016" -309839,Apple Airpods Headphones,1,150,12/25/19 18:21,"480 12th St, Boston, MA 02215" -309840,Bose SoundSport Headphones,1,99.99,12/15/19 00:14,"358 Meadow St, San Francisco, CA 94016" -309841,34in Ultrawide Monitor,1,379.99,12/09/19 17:03,"137 12th St, New York City, NY 10001" -309842,Bose SoundSport Headphones,1,99.99,12/15/19 23:15,"508 Park St, San Francisco, CA 94016" -309843,27in FHD Monitor,1,149.99,12/05/19 15:30,"534 11th St, Dallas, TX 75001" -309844,Bose SoundSport Headphones,2,99.99,12/15/19 16:26,"224 Park St, Atlanta, GA 30301" -309845,Apple Airpods Headphones,1,150,12/18/19 15:30,"961 13th St, Boston, MA 02215" -309846,Lightning Charging Cable,1,14.95,12/17/19 12:59,"43 14th St, New York City, NY 10001" -309847,AA Batteries (4-pack),1,3.84,12/16/19 11:12,"111 10th St, Dallas, TX 75001" -309848,AAA Batteries (4-pack),1,2.99,12/28/19 11:46,"437 Meadow St, Los Angeles, CA 90001" -309849,Lightning Charging Cable,1,14.95,12/10/19 12:54,"458 Forest St, San Francisco, CA 94016" -309850,Wired Headphones,1,11.99,12/22/19 13:54,"976 4th St, San Francisco, CA 94016" -309851,Bose SoundSport Headphones,1,99.99,12/31/19 15:28,"946 Church St, Atlanta, GA 30301" -309852,USB-C Charging Cable,1,11.95,12/16/19 19:44,"716 13th St, Boston, MA 02215" -309853,27in 4K Gaming Monitor,1,389.99,12/30/19 11:06,"506 Willow St, Seattle, WA 98101" -309854,Wired Headphones,2,11.99,12/13/19 13:29,"90 Lincoln St, Seattle, WA 98101" -309855,AAA Batteries (4-pack),2,2.99,12/30/19 10:32,"631 11th St, Los Angeles, CA 90001" -309856,34in Ultrawide Monitor,1,379.99,12/23/19 19:49,"438 13th St, Portland, OR 97035" -309857,27in FHD Monitor,1,149.99,12/17/19 14:04,"85 7th St, San Francisco, CA 94016" -309858,Apple Airpods Headphones,1,150,12/11/19 04:55,"236 Washington St, Los Angeles, CA 90001" -309859,Apple Airpods Headphones,1,150,12/19/19 11:28,"684 Forest St, Dallas, TX 75001" -309860,AA Batteries (4-pack),3,3.84,12/06/19 15:11,"794 Jefferson St, San Francisco, CA 94016" -309861,Macbook Pro Laptop,1,1700,12/04/19 22:15,"678 River St, Seattle, WA 98101" -309862,Apple Airpods Headphones,1,150,12/16/19 13:10,"948 Church St, Portland, ME 04101" -309863,Lightning Charging Cable,1,14.95,12/29/19 08:32,"599 Dogwood St, San Francisco, CA 94016" -309864,USB-C Charging Cable,1,11.95,12/04/19 22:24,"924 North St, Atlanta, GA 30301" -309865,27in FHD Monitor,1,149.99,12/18/19 00:12,"6 Dogwood St, Portland, OR 97035" -309866,34in Ultrawide Monitor,1,379.99,12/22/19 18:54,"954 10th St, Atlanta, GA 30301" -309867,20in Monitor,1,109.99,12/12/19 02:51,"811 Cherry St, San Francisco, CA 94016" -309868,USB-C Charging Cable,1,11.95,12/23/19 17:19,"891 Ridge St, Boston, MA 02215" -309869,Lightning Charging Cable,1,14.95,12/19/19 13:29,"442 Meadow St, San Francisco, CA 94016" -309870,USB-C Charging Cable,1,11.95,12/30/19 13:37,"508 Cedar St, San Francisco, CA 94016" -309871,27in 4K Gaming Monitor,1,389.99,12/30/19 19:51,"602 Madison St, Los Angeles, CA 90001" -309872,Apple Airpods Headphones,1,150,12/25/19 09:42,"733 4th St, New York City, NY 10001" -309873,34in Ultrawide Monitor,1,379.99,12/11/19 00:23,"266 Madison St, San Francisco, CA 94016" -309874,Wired Headphones,1,11.99,12/01/19 09:20,"785 Hill St, Atlanta, GA 30301" -309875,AA Batteries (4-pack),1,3.84,12/04/19 18:18,"392 12th St, Boston, MA 02215" -309876,AA Batteries (4-pack),1,3.84,12/16/19 18:52,"509 Dogwood St, San Francisco, CA 94016" -309877,iPhone,1,700,12/23/19 20:38,"1 Willow St, San Francisco, CA 94016" -309878,USB-C Charging Cable,1,11.95,12/24/19 15:39,"159 River St, San Francisco, CA 94016" -309879,Lightning Charging Cable,1,14.95,12/17/19 12:08,"637 Dogwood St, Boston, MA 02215" -309880,Lightning Charging Cable,1,14.95,12/12/19 11:49,"795 Park St, San Francisco, CA 94016" -309881,Bose SoundSport Headphones,1,99.99,12/27/19 21:07,"427 South St, San Francisco, CA 94016" -309882,USB-C Charging Cable,1,11.95,12/29/19 11:29,"19 Center St, San Francisco, CA 94016" -309883,AA Batteries (4-pack),4,3.84,12/27/19 18:27,"796 Chestnut St, San Francisco, CA 94016" -309884,Wired Headphones,1,11.99,12/06/19 12:01,"985 West St, Boston, MA 02215" -309885,AA Batteries (4-pack),1,3.84,12/17/19 12:30,"832 Spruce St, Seattle, WA 98101" -309886,Apple Airpods Headphones,1,150,12/18/19 06:17,"334 Spruce St, San Francisco, CA 94016" -309887,27in 4K Gaming Monitor,1,389.99,12/20/19 12:54,"492 Madison St, Los Angeles, CA 90001" -309888,AAA Batteries (4-pack),2,2.99,12/15/19 13:18,"869 Cedar St, New York City, NY 10001" -309889,34in Ultrawide Monitor,1,379.99,12/25/19 11:56,"373 Elm St, Los Angeles, CA 90001" -309890,Apple Airpods Headphones,1,150,12/22/19 18:49,"701 Adams St, Los Angeles, CA 90001" -309891,Macbook Pro Laptop,1,1700,12/08/19 18:21,"353 Jefferson St, Los Angeles, CA 90001" -309892,Lightning Charging Cable,1,14.95,12/03/19 00:05,"707 Highland St, Boston, MA 02215" -309893,Vareebadd Phone,1,400,12/01/19 18:15,"22 Washington St, Austin, TX 73301" -309894,Macbook Pro Laptop,1,1700,12/30/19 23:20,"342 Maple St, Dallas, TX 75001" -309895,USB-C Charging Cable,1,11.95,12/31/19 11:41,"269 Cherry St, Dallas, TX 75001" -309896,AA Batteries (4-pack),1,3.84,12/04/19 10:11,"118 Ridge St, Boston, MA 02215" -309897,Wired Headphones,1,11.99,12/01/19 17:10,"801 Spruce St, Los Angeles, CA 90001" -309898,ThinkPad Laptop,1,999.99,12/29/19 16:45,"321 Park St, Los Angeles, CA 90001" -309899,Bose SoundSport Headphones,1,99.99,12/15/19 05:47,"489 Forest St, Boston, MA 02215" -309900,Lightning Charging Cable,1,14.95,12/03/19 20:01,"355 Elm St, Boston, MA 02215" -309901,Macbook Pro Laptop,1,1700,12/15/19 17:08,"979 Main St, San Francisco, CA 94016" -309902,iPhone,1,700,12/11/19 10:22,"826 8th St, Los Angeles, CA 90001" -309903,27in 4K Gaming Monitor,1,389.99,12/26/19 21:42,"909 South St, Austin, TX 73301" -309904,ThinkPad Laptop,1,999.99,12/14/19 15:14,"408 Washington St, San Francisco, CA 94016" -309905,Wired Headphones,1,11.99,12/23/19 17:53,"212 Chestnut St, New York City, NY 10001" -309906,AA Batteries (4-pack),1,3.84,12/30/19 11:12,"311 Ridge St, Los Angeles, CA 90001" -309907,Google Phone,1,600,12/07/19 09:14,"839 Hill St, San Francisco, CA 94016" -309908,Bose SoundSport Headphones,1,99.99,12/05/19 16:28,"309 6th St, New York City, NY 10001" -309909,34in Ultrawide Monitor,1,379.99,12/23/19 14:46,"714 Center St, Atlanta, GA 30301" -309910,Macbook Pro Laptop,1,1700,12/28/19 14:59,"349 Willow St, Boston, MA 02215" -309911,AA Batteries (4-pack),1,3.84,12/06/19 21:53,"673 Church St, Los Angeles, CA 90001" -309912,Wired Headphones,1,11.99,12/31/19 16:58,"809 Pine St, Atlanta, GA 30301" -309913,Bose SoundSport Headphones,1,99.99,12/09/19 14:04,"180 Cedar St, San Francisco, CA 94016" -309914,Bose SoundSport Headphones,1,99.99,12/21/19 12:53,"460 4th St, Boston, MA 02215" -309915,Bose SoundSport Headphones,1,99.99,12/23/19 13:03,"913 Cherry St, Los Angeles, CA 90001" -309916,Wired Headphones,1,11.99,12/23/19 18:42,"302 Cedar St, Los Angeles, CA 90001" -309917,AAA Batteries (4-pack),1,2.99,12/05/19 10:32,"540 8th St, Dallas, TX 75001" -309918,Lightning Charging Cable,2,14.95,12/31/19 00:53,"501 10th St, Dallas, TX 75001" -309919,Apple Airpods Headphones,1,150,12/16/19 09:27,"537 Lincoln St, San Francisco, CA 94016" -309920,ThinkPad Laptop,1,999.99,12/15/19 12:01,"62 10th St, San Francisco, CA 94016" -309921,USB-C Charging Cable,1,11.95,12/08/19 11:28,"477 4th St, San Francisco, CA 94016" -309922,AA Batteries (4-pack),1,3.84,12/17/19 13:46,"985 Park St, Seattle, WA 98101" -309923,AA Batteries (4-pack),1,3.84,12/09/19 18:37,"335 13th St, Atlanta, GA 30301" -309924,Lightning Charging Cable,1,14.95,12/10/19 11:27,"837 Main St, Boston, MA 02215" -309925,USB-C Charging Cable,1,11.95,12/15/19 10:20,"419 River St, Boston, MA 02215" -309926,Lightning Charging Cable,1,14.95,12/04/19 15:54,"889 Dogwood St, Boston, MA 02215" -309927,34in Ultrawide Monitor,1,379.99,12/25/19 10:22,"530 Hickory St, San Francisco, CA 94016" -309928,AA Batteries (4-pack),1,3.84,12/20/19 03:16,"200 9th St, Boston, MA 02215" -309929,20in Monitor,1,109.99,12/25/19 23:01,"34 Hill St, Los Angeles, CA 90001" -309930,AA Batteries (4-pack),1,3.84,12/15/19 20:22,"163 Lake St, New York City, NY 10001" -309931,AAA Batteries (4-pack),2,2.99,12/30/19 11:46,"567 West St, Dallas, TX 75001" -309932,34in Ultrawide Monitor,1,379.99,12/14/19 18:43,"655 Forest St, New York City, NY 10001" -309933,Lightning Charging Cable,1,14.95,12/22/19 16:53,"686 Forest St, Los Angeles, CA 90001" -309934,Wired Headphones,1,11.99,12/09/19 14:15,"430 Highland St, Los Angeles, CA 90001" -309935,Lightning Charging Cable,1,14.95,12/30/19 18:10,"524 Adams St, San Francisco, CA 94016" -309936,34in Ultrawide Monitor,1,379.99,12/28/19 20:21,"386 Lakeview St, San Francisco, CA 94016" -309937,AA Batteries (4-pack),1,3.84,12/20/19 17:59,"308 Pine St, Los Angeles, CA 90001" -309938,AA Batteries (4-pack),1,3.84,12/20/19 12:09,"555 Hill St, Atlanta, GA 30301" -309939,27in 4K Gaming Monitor,1,389.99,12/25/19 20:59,"429 Elm St, Atlanta, GA 30301" -309940,LG Dryer,1,600.0,12/27/19 15:21,"515 Walnut St, Seattle, WA 98101" -309941,iPhone,1,700,12/31/19 12:35,"850 Cherry St, Boston, MA 02215" -309942,27in FHD Monitor,1,149.99,12/05/19 09:12,"463 Church St, San Francisco, CA 94016" -309943,USB-C Charging Cable,1,11.95,12/09/19 11:25,"610 West St, San Francisco, CA 94016" -309944,Wired Headphones,1,11.99,12/04/19 14:36,"367 14th St, New York City, NY 10001" -309945,Wired Headphones,1,11.99,12/29/19 13:16,"785 Elm St, Seattle, WA 98101" -309946,Wired Headphones,1,11.99,12/20/19 22:25,"158 Lincoln St, Los Angeles, CA 90001" -309947,Lightning Charging Cable,1,14.95,12/25/19 03:20,"428 6th St, Atlanta, GA 30301" -309948,Wired Headphones,1,11.99,12/07/19 13:17,"591 West St, Seattle, WA 98101" -309949,Macbook Pro Laptop,1,1700,12/15/19 02:18,"642 Wilson St, San Francisco, CA 94016" -309950,Apple Airpods Headphones,1,150,12/07/19 17:21,"741 9th St, San Francisco, CA 94016" -309951,Apple Airpods Headphones,3,150,12/31/19 21:37,"446 Walnut St, Boston, MA 02215" -309952,AAA Batteries (4-pack),2,2.99,12/18/19 11:53,"651 Lake St, Atlanta, GA 30301" -309953,Google Phone,1,600,12/15/19 00:06,"675 Meadow St, Seattle, WA 98101" -309954,AAA Batteries (4-pack),1,2.99,12/25/19 10:08,"817 Cedar St, New York City, NY 10001" -309955,USB-C Charging Cable,1,11.95,12/31/19 15:33,"824 Sunset St, Portland, OR 97035" -309956,AAA Batteries (4-pack),1,2.99,12/03/19 10:54,"160 Johnson St, Austin, TX 73301" -309957,AAA Batteries (4-pack),1,2.99,12/10/19 20:50,"811 11th St, San Francisco, CA 94016" -309958,AAA Batteries (4-pack),2,2.99,12/29/19 22:19,"653 Forest St, New York City, NY 10001" -309959,AA Batteries (4-pack),1,3.84,12/08/19 16:21,"639 South St, Los Angeles, CA 90001" -309960,Apple Airpods Headphones,1,150,12/29/19 15:06,"656 Spruce St, San Francisco, CA 94016" -309961,Bose SoundSport Headphones,1,99.99,12/17/19 01:15,"620 Spruce St, Los Angeles, CA 90001" -309962,Lightning Charging Cable,1,14.95,12/23/19 10:34,"804 Adams St, Los Angeles, CA 90001" -309963,ThinkPad Laptop,1,999.99,12/10/19 11:12,"922 Elm St, New York City, NY 10001" -309964,AAA Batteries (4-pack),2,2.99,12/29/19 20:13,"494 2nd St, Austin, TX 73301" -309965,34in Ultrawide Monitor,1,379.99,12/24/19 14:21,"391 Sunset St, Seattle, WA 98101" -309966,27in FHD Monitor,1,149.99,12/29/19 11:30,"886 Hill St, San Francisco, CA 94016" -309967,Apple Airpods Headphones,1,150,12/29/19 23:34,"592 Chestnut St, Seattle, WA 98101" -309968,Wired Headphones,1,11.99,12/18/19 07:08,"458 Pine St, Los Angeles, CA 90001" -309968,Apple Airpods Headphones,1,150,12/18/19 07:08,"458 Pine St, Los Angeles, CA 90001" -309969,Wired Headphones,1,11.99,12/25/19 22:29,"693 Meadow St, Los Angeles, CA 90001" -309970,Lightning Charging Cable,1,14.95,12/02/19 10:08,"335 7th St, Seattle, WA 98101" -309971,Google Phone,1,600,12/29/19 03:20,"633 Meadow St, Austin, TX 73301" -309972,Wired Headphones,1,11.99,12/24/19 22:02,"825 9th St, San Francisco, CA 94016" -309973,Wired Headphones,1,11.99,12/20/19 10:25,"274 Jackson St, Los Angeles, CA 90001" -309974,34in Ultrawide Monitor,1,379.99,12/23/19 21:08,"641 Lakeview St, Dallas, TX 75001" -309975,AAA Batteries (4-pack),1,2.99,12/08/19 06:49,"646 North St, Atlanta, GA 30301" -309976,Lightning Charging Cable,1,14.95,12/16/19 20:40,"741 13th St, Los Angeles, CA 90001" -309977,27in FHD Monitor,1,149.99,12/13/19 09:09,"408 6th St, Austin, TX 73301" -309978,Bose SoundSport Headphones,1,99.99,12/11/19 06:01,"17 11th St, San Francisco, CA 94016" -309979,27in 4K Gaming Monitor,1,389.99,12/01/19 21:38,"680 Jackson St, New York City, NY 10001" -309980,iPhone,1,700,12/08/19 18:22,"729 Jackson St, San Francisco, CA 94016" -309981,Lightning Charging Cable,1,14.95,12/06/19 13:45,"746 River St, Austin, TX 73301" -309982,27in 4K Gaming Monitor,1,389.99,12/07/19 16:48,"925 5th St, Los Angeles, CA 90001" -309982,27in FHD Monitor,1,149.99,12/07/19 16:48,"925 5th St, Los Angeles, CA 90001" -309983,Wired Headphones,1,11.99,12/04/19 05:30,"13 1st St, New York City, NY 10001" -309984,USB-C Charging Cable,1,11.95,12/18/19 15:42,"712 Main St, San Francisco, CA 94016" -309985,AAA Batteries (4-pack),1,2.99,12/30/19 16:39,"28 Hickory St, San Francisco, CA 94016" -309986,Lightning Charging Cable,1,14.95,12/08/19 13:27,"778 Wilson St, Seattle, WA 98101" -309987,Lightning Charging Cable,1,14.95,12/26/19 12:19,"580 13th St, Seattle, WA 98101" -309988,Bose SoundSport Headphones,1,99.99,12/05/19 05:29,"924 14th St, Dallas, TX 75001" -309989,Lightning Charging Cable,1,14.95,12/23/19 11:50,"2 6th St, Los Angeles, CA 90001" -309990,AA Batteries (4-pack),1,3.84,12/11/19 23:53,"990 Hickory St, Atlanta, GA 30301" -309991,AA Batteries (4-pack),2,3.84,12/19/19 09:35,"147 Chestnut St, Los Angeles, CA 90001" -309992,Bose SoundSport Headphones,1,99.99,12/11/19 15:09,"945 Maple St, Los Angeles, CA 90001" -309993,Wired Headphones,2,11.99,12/17/19 16:21,"752 Spruce St, Seattle, WA 98101" -309994,AA Batteries (4-pack),1,3.84,12/29/19 14:03,"281 10th St, Los Angeles, CA 90001" -309995,AAA Batteries (4-pack),2,2.99,12/17/19 16:44,"570 Walnut St, Dallas, TX 75001" -309996,iPhone,1,700,12/14/19 18:56,"229 Walnut St, New York City, NY 10001" -309997,Wired Headphones,1,11.99,12/19/19 22:45,"198 Maple St, San Francisco, CA 94016" -309998,AA Batteries (4-pack),1,3.84,12/15/19 23:02,"124 11th St, Boston, MA 02215" -309999,27in 4K Gaming Monitor,1,389.99,12/30/19 15:23,"196 Willow St, Boston, MA 02215" -310000,Apple Airpods Headphones,1,150,12/27/19 22:24,"740 Dogwood St, Dallas, TX 75001" -310001,USB-C Charging Cable,1,11.95,12/14/19 17:54,"305 Adams St, San Francisco, CA 94016" -310002,Lightning Charging Cable,1,14.95,12/21/19 14:25,"41 Wilson St, Seattle, WA 98101" -310003,Wired Headphones,1,11.99,12/05/19 14:06,"281 Washington St, Los Angeles, CA 90001" -310004,ThinkPad Laptop,1,999.99,12/04/19 16:57,"512 Jackson St, San Francisco, CA 94016" -310005,iPhone,1,700,12/30/19 23:26,"570 10th St, Boston, MA 02215" -310006,34in Ultrawide Monitor,1,379.99,12/19/19 19:52,"906 Johnson St, San Francisco, CA 94016" -310007,Lightning Charging Cable,1,14.95,12/14/19 14:10,"96 5th St, Dallas, TX 75001" -310008,Wired Headphones,1,11.99,12/23/19 16:12,"28 Cedar St, San Francisco, CA 94016" -310009,Wired Headphones,1,11.99,12/13/19 11:22,"872 North St, Boston, MA 02215" -310010,AAA Batteries (4-pack),1,2.99,12/12/19 15:10,"57 12th St, Boston, MA 02215" -310011,USB-C Charging Cable,1,11.95,12/01/19 16:56,"258 Washington St, Portland, OR 97035" -310012,AAA Batteries (4-pack),1,2.99,12/08/19 12:17,"41 Hickory St, Atlanta, GA 30301" -310013,AAA Batteries (4-pack),1,2.99,12/05/19 15:47,"1 Willow St, Portland, OR 97035" -310014,Wired Headphones,1,11.99,12/04/19 11:03,"168 Highland St, Boston, MA 02215" -310015,ThinkPad Laptop,1,999.99,12/31/19 13:53,"669 7th St, San Francisco, CA 94016" -310016,Lightning Charging Cable,1,14.95,12/22/19 21:04,"43 Cherry St, Portland, OR 97035" -310017,Lightning Charging Cable,1,14.95,12/27/19 09:47,"64 Chestnut St, Portland, ME 04101" -310018,27in FHD Monitor,1,149.99,12/26/19 12:18,"238 Cedar St, Boston, MA 02215" -310019,Lightning Charging Cable,4,14.95,12/12/19 16:27,"771 1st St, Boston, MA 02215" -310020,USB-C Charging Cable,1,11.95,12/18/19 17:28,"670 Dogwood St, Seattle, WA 98101" -310021,AA Batteries (4-pack),1,3.84,12/31/19 20:19,"600 South St, Dallas, TX 75001" -310022,Bose SoundSport Headphones,1,99.99,12/13/19 12:34,"262 West St, Seattle, WA 98101" -310023,Lightning Charging Cable,1,14.95,12/04/19 21:02,"573 Wilson St, Atlanta, GA 30301" -310024,AAA Batteries (4-pack),2,2.99,12/21/19 09:57,"890 Hill St, New York City, NY 10001" -310025,Apple Airpods Headphones,1,150,12/26/19 19:36,"35 Park St, Portland, OR 97035" -310026,Wired Headphones,1,11.99,12/16/19 12:45,"549 Highland St, Dallas, TX 75001" -310027,Wired Headphones,1,11.99,12/07/19 13:19,"541 13th St, New York City, NY 10001" -310028,Google Phone,1,600,12/05/19 19:08,"90 Washington St, Boston, MA 02215" -310029,Vareebadd Phone,1,400,12/07/19 12:47,"515 Walnut St, New York City, NY 10001" -310029,Wired Headphones,1,11.99,12/07/19 12:47,"515 Walnut St, New York City, NY 10001" -310030,USB-C Charging Cable,1,11.95,12/19/19 18:41,"388 Cherry St, Portland, ME 04101" -310031,27in FHD Monitor,1,149.99,12/11/19 23:13,"45 11th St, New York City, NY 10001" -310032,USB-C Charging Cable,1,11.95,12/24/19 14:16,"937 Washington St, Portland, ME 04101" -310033,Macbook Pro Laptop,1,1700,12/19/19 08:25,"568 Park St, Atlanta, GA 30301" -310034,iPhone,1,700,12/28/19 13:16,"837 Madison St, Seattle, WA 98101" -310035,Wired Headphones,1,11.99,12/30/19 10:28,"715 Jackson St, New York City, NY 10001" -310036,USB-C Charging Cable,1,11.95,12/24/19 12:05,"357 South St, Portland, OR 97035" -310037,20in Monitor,1,109.99,12/11/19 10:53,"671 Church St, Seattle, WA 98101" -310038,Lightning Charging Cable,1,14.95,12/27/19 14:25,"980 Highland St, San Francisco, CA 94016" -310039,34in Ultrawide Monitor,1,379.99,12/07/19 14:22,"326 Adams St, New York City, NY 10001" -310040,Bose SoundSport Headphones,1,99.99,12/20/19 23:00,"570 South St, San Francisco, CA 94016" -310041,Apple Airpods Headphones,1,150,12/29/19 14:06,"351 Maple St, Boston, MA 02215" -310042,AA Batteries (4-pack),1,3.84,12/15/19 20:37,"656 Lake St, New York City, NY 10001" -310043,AAA Batteries (4-pack),1,2.99,12/06/19 20:05,"849 5th St, Los Angeles, CA 90001" -310044,Macbook Pro Laptop,1,1700,12/03/19 13:21,"998 Meadow St, Boston, MA 02215" -310044,AA Batteries (4-pack),1,3.84,12/03/19 13:21,"998 Meadow St, Boston, MA 02215" -310045,Apple Airpods Headphones,1,150,12/18/19 11:08,"849 10th St, Boston, MA 02215" -310046,27in FHD Monitor,1,149.99,12/27/19 19:16,"766 West St, San Francisco, CA 94016" -310047,Bose SoundSport Headphones,1,99.99,12/19/19 13:21,"298 10th St, Los Angeles, CA 90001" -310048,Lightning Charging Cable,1,14.95,12/05/19 15:31,"717 Ridge St, New York City, NY 10001" -310049,Apple Airpods Headphones,1,150,12/10/19 18:56,"449 Washington St, San Francisco, CA 94016" -310050,27in 4K Gaming Monitor,1,389.99,12/28/19 09:53,"772 5th St, Seattle, WA 98101" -310051,34in Ultrawide Monitor,1,379.99,12/16/19 20:12,"752 6th St, San Francisco, CA 94016" -310052,Lightning Charging Cable,1,14.95,12/17/19 13:47,"408 13th St, San Francisco, CA 94016" -310053,Macbook Pro Laptop,1,1700,12/24/19 11:23,"351 Jefferson St, New York City, NY 10001" -310053,Wired Headphones,1,11.99,12/24/19 11:23,"351 Jefferson St, New York City, NY 10001" -310054,34in Ultrawide Monitor,1,379.99,12/25/19 10:19,"394 North St, Boston, MA 02215" -310055,AA Batteries (4-pack),1,3.84,12/10/19 19:47,"187 Hickory St, Atlanta, GA 30301" -310056,Apple Airpods Headphones,1,150,12/19/19 10:41,"572 Highland St, San Francisco, CA 94016" -310057,Macbook Pro Laptop,1,1700,12/07/19 19:48,"259 Maple St, Portland, OR 97035" -310058,USB-C Charging Cable,1,11.95,12/11/19 14:25,"698 Lakeview St, Boston, MA 02215" -310059,AA Batteries (4-pack),1,3.84,12/20/19 21:32,"494 Center St, Dallas, TX 75001" -310060,Flatscreen TV,1,300,12/05/19 17:08,"329 Cedar St, Atlanta, GA 30301" -310061,USB-C Charging Cable,1,11.95,12/02/19 13:49,"434 Willow St, Boston, MA 02215" -310062,Wired Headphones,1,11.99,12/17/19 10:59,"711 Willow St, San Francisco, CA 94016" -310063,Bose SoundSport Headphones,1,99.99,12/26/19 18:26,"297 Park St, San Francisco, CA 94016" -310064,USB-C Charging Cable,1,11.95,12/12/19 15:18,"229 8th St, San Francisco, CA 94016" -310065,Lightning Charging Cable,1,14.95,12/03/19 10:54,"861 6th St, San Francisco, CA 94016" -310066,AA Batteries (4-pack),2,3.84,12/01/19 16:55,"842 1st St, Atlanta, GA 30301" -310067,AA Batteries (4-pack),1,3.84,12/04/19 11:30,"432 Park St, Los Angeles, CA 90001" -310068,Lightning Charging Cable,1,14.95,12/25/19 13:41,"609 7th St, Boston, MA 02215" -310069,USB-C Charging Cable,1,11.95,12/05/19 12:27,"41 Spruce St, Austin, TX 73301" -310070,LG Washing Machine,1,600.0,12/04/19 18:21,"696 Cherry St, Dallas, TX 75001" -310071,Wired Headphones,1,11.99,12/01/19 18:18,"775 West St, San Francisco, CA 94016" -310072,Flatscreen TV,1,300,12/23/19 20:53,"941 Madison St, Boston, MA 02215" -310073,USB-C Charging Cable,1,11.95,12/12/19 20:45,"789 1st St, San Francisco, CA 94016" -310074,Apple Airpods Headphones,1,150,01/01/20 01:46,"636 Lakeview St, San Francisco, CA 94016" -310075,34in Ultrawide Monitor,1,379.99,12/16/19 14:26,"343 Washington St, Boston, MA 02215" -310076,USB-C Charging Cable,1,11.95,12/25/19 12:18,"244 South St, Boston, MA 02215" -310077,USB-C Charging Cable,1,11.95,12/04/19 22:17,"979 8th St, Atlanta, GA 30301" -310078,Macbook Pro Laptop,1,1700,12/29/19 14:03,"454 Jackson St, San Francisco, CA 94016" -310079,Wired Headphones,1,11.99,12/20/19 13:41,"186 Ridge St, San Francisco, CA 94016" -310080,20in Monitor,1,109.99,12/06/19 13:32,"496 North St, Portland, OR 97035" -310081,AAA Batteries (4-pack),1,2.99,12/17/19 11:53,"258 10th St, Austin, TX 73301" -310082,27in FHD Monitor,1,149.99,12/20/19 18:57,"13 Hickory St, Seattle, WA 98101" -310083,Bose SoundSport Headphones,1,99.99,12/05/19 15:19,"9 Dogwood St, Dallas, TX 75001" -310084,Wired Headphones,1,11.99,12/02/19 17:13,"851 Highland St, New York City, NY 10001" -310085,Lightning Charging Cable,1,14.95,12/06/19 08:11,"90 Adams St, Los Angeles, CA 90001" -310086,Bose SoundSport Headphones,1,99.99,12/31/19 08:25,"456 13th St, New York City, NY 10001" -310087,Macbook Pro Laptop,1,1700,12/26/19 16:55,"50 River St, Los Angeles, CA 90001" -310088,AAA Batteries (4-pack),1,2.99,12/13/19 14:58,"296 Meadow St, Los Angeles, CA 90001" -310089,iPhone,1,700,12/18/19 11:05,"908 Meadow St, San Francisco, CA 94016" -310090,27in FHD Monitor,1,149.99,12/26/19 22:35,"527 9th St, Seattle, WA 98101" -310091,USB-C Charging Cable,1,11.95,12/07/19 14:58,"993 Hill St, Los Angeles, CA 90001" -310092,Lightning Charging Cable,1,14.95,12/20/19 19:25,"380 Jefferson St, San Francisco, CA 94016" -310093,20in Monitor,1,109.99,12/27/19 10:47,"712 Cherry St, San Francisco, CA 94016" -310094,AAA Batteries (4-pack),2,2.99,12/03/19 13:00,"536 Meadow St, Los Angeles, CA 90001" -310095,Flatscreen TV,1,300,12/18/19 16:43,"941 Forest St, Seattle, WA 98101" -310096,USB-C Charging Cable,1,11.95,12/09/19 14:40,"471 Sunset St, Atlanta, GA 30301" -310097,Apple Airpods Headphones,1,150,12/04/19 22:40,"556 10th St, New York City, NY 10001" -310098,Google Phone,1,600,12/08/19 19:48,"679 Meadow St, New York City, NY 10001" -310099,Bose SoundSport Headphones,1,99.99,12/28/19 11:59,"688 Highland St, Seattle, WA 98101" -310100,Lightning Charging Cable,1,14.95,12/19/19 16:00,"667 Johnson St, Los Angeles, CA 90001" -310101,USB-C Charging Cable,1,11.95,12/29/19 02:20,"463 Pine St, San Francisco, CA 94016" -310102,AAA Batteries (4-pack),2,2.99,12/04/19 01:02,"370 9th St, Dallas, TX 75001" -310103,27in FHD Monitor,1,149.99,12/30/19 16:18,"301 Maple St, Atlanta, GA 30301" -310104,AAA Batteries (4-pack),1,2.99,12/21/19 09:00,"57 Jackson St, Los Angeles, CA 90001" -310105,AA Batteries (4-pack),1,3.84,12/29/19 10:34,"509 West St, Dallas, TX 75001" -310106,Flatscreen TV,1,300,12/06/19 13:30,"235 Meadow St, New York City, NY 10001" -310107,Wired Headphones,1,11.99,12/17/19 10:43,"876 6th St, San Francisco, CA 94016" -310108,20in Monitor,1,109.99,12/25/19 17:10,"993 Main St, Atlanta, GA 30301" -310109,Lightning Charging Cable,1,14.95,12/06/19 20:22,"258 7th St, San Francisco, CA 94016" -310110,Apple Airpods Headphones,1,150,12/27/19 20:53,"169 Willow St, Portland, OR 97035" -310111,Apple Airpods Headphones,1,150,12/15/19 18:36,"300 Wilson St, San Francisco, CA 94016" -310112,USB-C Charging Cable,1,11.95,12/08/19 15:19,"251 North St, San Francisco, CA 94016" -310113,AAA Batteries (4-pack),2,2.99,12/30/19 10:48,"665 Highland St, Los Angeles, CA 90001" -310114,AAA Batteries (4-pack),1,2.99,12/04/19 14:53,"149 Lakeview St, Seattle, WA 98101" -310115,Apple Airpods Headphones,1,150,12/10/19 12:33,"987 1st St, Los Angeles, CA 90001" -310116,Wired Headphones,1,11.99,12/18/19 07:23,"281 Highland St, Boston, MA 02215" -310117,Lightning Charging Cable,1,14.95,12/14/19 08:33,"15 Hill St, San Francisco, CA 94016" -310118,Apple Airpods Headphones,1,150,12/19/19 11:28,"440 Jackson St, Atlanta, GA 30301" -310119,USB-C Charging Cable,1,11.95,12/13/19 11:24,"77 Center St, San Francisco, CA 94016" -310120,Apple Airpods Headphones,1,150,12/29/19 21:15,"811 Johnson St, Seattle, WA 98101" -310121,USB-C Charging Cable,1,11.95,12/16/19 20:03,"266 Jefferson St, Dallas, TX 75001" -310122,AA Batteries (4-pack),1,3.84,12/26/19 17:49,"871 South St, San Francisco, CA 94016" -310123,Apple Airpods Headphones,1,150,12/02/19 18:48,"934 Spruce St, Boston, MA 02215" -310124,AA Batteries (4-pack),1,3.84,12/08/19 16:23,"205 Ridge St, Los Angeles, CA 90001" -310125,ThinkPad Laptop,1,999.99,12/21/19 12:49,"759 11th St, Portland, OR 97035" -310126,AA Batteries (4-pack),1,3.84,12/16/19 20:08,"951 8th St, Seattle, WA 98101" -310127,AA Batteries (4-pack),1,3.84,12/14/19 15:06,"4 North St, San Francisco, CA 94016" -310128,34in Ultrawide Monitor,1,379.99,12/13/19 06:27,"562 Hill St, New York City, NY 10001" -310129,AAA Batteries (4-pack),1,2.99,12/20/19 20:25,"389 Sunset St, San Francisco, CA 94016" -310130,AAA Batteries (4-pack),1,2.99,12/21/19 08:06,"99 Pine St, San Francisco, CA 94016" -310131,USB-C Charging Cable,1,11.95,12/14/19 11:26,"117 West St, San Francisco, CA 94016" -310132,Wired Headphones,1,11.99,12/07/19 18:53,"698 Church St, Seattle, WA 98101" -310133,27in 4K Gaming Monitor,1,389.99,12/04/19 12:25,"689 Lake St, New York City, NY 10001" -310134,AAA Batteries (4-pack),3,2.99,12/17/19 11:50,"776 Highland St, Los Angeles, CA 90001" -310134,ThinkPad Laptop,1,999.99,12/17/19 11:50,"776 Highland St, Los Angeles, CA 90001" -310135,iPhone,1,700,12/13/19 20:36,"37 Sunset St, Atlanta, GA 30301" -310136,Wired Headphones,1,11.99,12/16/19 09:02,"326 Lake St, Dallas, TX 75001" -310137,Lightning Charging Cable,1,14.95,12/24/19 18:37,"874 Pine St, Los Angeles, CA 90001" -310138,AAA Batteries (4-pack),1,2.99,12/27/19 20:06,"578 Spruce St, Los Angeles, CA 90001" -310139,AAA Batteries (4-pack),1,2.99,12/07/19 19:54,"405 South St, San Francisco, CA 94016" -310140,Lightning Charging Cable,1,14.95,12/14/19 10:55,"579 Meadow St, Seattle, WA 98101" -310141,AA Batteries (4-pack),3,3.84,12/31/19 15:07,"893 Highland St, Boston, MA 02215" -310142,Vareebadd Phone,1,400,12/13/19 17:24,"669 11th St, New York City, NY 10001" -310142,34in Ultrawide Monitor,1,379.99,12/13/19 17:24,"669 11th St, New York City, NY 10001" -310143,Apple Airpods Headphones,1,150,12/20/19 11:15,"626 2nd St, San Francisco, CA 94016" -310144,AA Batteries (4-pack),1,3.84,12/10/19 14:05,"717 5th St, Boston, MA 02215" -310145,Flatscreen TV,1,300,12/17/19 11:12,"931 9th St, San Francisco, CA 94016" -310146,34in Ultrawide Monitor,1,379.99,12/04/19 18:26,"947 Hickory St, New York City, NY 10001" -310147,27in FHD Monitor,1,149.99,12/30/19 00:31,"611 Lake St, Austin, TX 73301" -310148,USB-C Charging Cable,1,11.95,12/26/19 13:34,"463 Johnson St, Atlanta, GA 30301" -310148,AAA Batteries (4-pack),1,2.99,12/26/19 13:34,"463 Johnson St, Atlanta, GA 30301" -310149,Bose SoundSport Headphones,1,99.99,12/05/19 17:56,"204 11th St, Los Angeles, CA 90001" -310150,Lightning Charging Cable,1,14.95,12/11/19 11:47,"406 Willow St, San Francisco, CA 94016" -310151,Wired Headphones,1,11.99,12/13/19 00:14,"660 Jackson St, Los Angeles, CA 90001" -310152,AAA Batteries (4-pack),1,2.99,12/01/19 23:07,"446 Washington St, Seattle, WA 98101" -310153,27in 4K Gaming Monitor,1,389.99,12/06/19 21:08,"35 7th St, Boston, MA 02215" -310154,USB-C Charging Cable,1,11.95,12/20/19 06:23,"411 Lakeview St, Austin, TX 73301" -310155,Google Phone,1,600,12/25/19 22:14,"954 Lake St, Boston, MA 02215" -310156,AAA Batteries (4-pack),1,2.99,12/21/19 11:57,"337 11th St, Boston, MA 02215" -310157,AAA Batteries (4-pack),1,2.99,12/04/19 16:55,"422 2nd St, Los Angeles, CA 90001" -310158,Lightning Charging Cable,1,14.95,12/09/19 12:48,"825 6th St, San Francisco, CA 94016" -310159,Wired Headphones,1,11.99,12/17/19 15:21,"744 Church St, New York City, NY 10001" -310160,AAA Batteries (4-pack),2,2.99,12/12/19 18:10,"618 5th St, New York City, NY 10001" -310161,AA Batteries (4-pack),2,3.84,12/09/19 19:51,"228 8th St, Boston, MA 02215" -310162,27in FHD Monitor,1,149.99,12/19/19 23:20,"746 Wilson St, Los Angeles, CA 90001" -310163,Macbook Pro Laptop,1,1700,12/11/19 15:19,"255 Dogwood St, Boston, MA 02215" -310164,Bose SoundSport Headphones,1,99.99,12/02/19 10:36,"994 2nd St, New York City, NY 10001" -310165,Wired Headphones,1,11.99,12/14/19 23:11,"914 Elm St, Dallas, TX 75001" -310166,Flatscreen TV,1,300,12/21/19 13:14,"397 Willow St, Seattle, WA 98101" -310167,Wired Headphones,1,11.99,12/26/19 14:39,"114 Chestnut St, Dallas, TX 75001" -310167,27in 4K Gaming Monitor,1,389.99,12/26/19 14:39,"114 Chestnut St, Dallas, TX 75001" -310168,Bose SoundSport Headphones,1,99.99,12/22/19 12:10,"298 12th St, Atlanta, GA 30301" -310169,AAA Batteries (4-pack),1,2.99,12/21/19 19:33,"6 Hill St, San Francisco, CA 94016" -310170,Lightning Charging Cable,1,14.95,12/02/19 22:43,"120 Adams St, Seattle, WA 98101" -310171,27in 4K Gaming Monitor,1,389.99,12/13/19 20:31,"713 Hill St, San Francisco, CA 94016" -310172,AAA Batteries (4-pack),1,2.99,12/06/19 03:41,"136 12th St, Los Angeles, CA 90001" -310173,AA Batteries (4-pack),1,3.84,12/19/19 14:19,"596 South St, Seattle, WA 98101" -310174,AAA Batteries (4-pack),2,2.99,12/18/19 22:48,"568 Sunset St, San Francisco, CA 94016" -310175,Wired Headphones,1,11.99,12/06/19 01:06,"659 11th St, New York City, NY 10001" -310176,27in 4K Gaming Monitor,1,389.99,12/30/19 18:41,"455 Walnut St, Los Angeles, CA 90001" -310177,Wired Headphones,1,11.99,12/07/19 12:27,"673 Spruce St, Dallas, TX 75001" -310178,Wired Headphones,1,11.99,12/07/19 11:53,"705 Center St, Seattle, WA 98101" -310179,34in Ultrawide Monitor,1,379.99,12/03/19 19:17,"553 10th St, Dallas, TX 75001" -310180,Wired Headphones,1,11.99,12/23/19 10:37,"666 6th St, New York City, NY 10001" -310181,Macbook Pro Laptop,1,1700,12/31/19 14:50,"482 Walnut St, San Francisco, CA 94016" -310182,Bose SoundSport Headphones,1,99.99,12/26/19 12:04,"776 Church St, San Francisco, CA 94016" -310183,USB-C Charging Cable,1,11.95,12/29/19 10:49,"986 Main St, Los Angeles, CA 90001" -310184,Lightning Charging Cable,1,14.95,12/16/19 12:56,"309 12th St, Boston, MA 02215" -310185,34in Ultrawide Monitor,1,379.99,12/08/19 13:36,"469 Dogwood St, Los Angeles, CA 90001" -310186,Bose SoundSport Headphones,1,99.99,12/03/19 17:03,"802 Main St, San Francisco, CA 94016" -310187,Macbook Pro Laptop,1,1700,12/20/19 18:57,"253 2nd St, Seattle, WA 98101" -310188,Wired Headphones,1,11.99,12/24/19 08:55,"727 9th St, San Francisco, CA 94016" -310188,Apple Airpods Headphones,1,150,12/24/19 08:55,"727 9th St, San Francisco, CA 94016" -310189,AAA Batteries (4-pack),1,2.99,12/14/19 20:15,"851 Hickory St, Dallas, TX 75001" -310190,27in FHD Monitor,1,149.99,12/05/19 08:19,"562 Lakeview St, New York City, NY 10001" -310191,Lightning Charging Cable,1,14.95,12/03/19 02:17,"169 Lake St, Dallas, TX 75001" -310192,AAA Batteries (4-pack),2,2.99,12/08/19 16:54,"511 Cedar St, San Francisco, CA 94016" -310193,Lightning Charging Cable,1,14.95,12/17/19 16:08,"224 Cherry St, San Francisco, CA 94016" -310194,AA Batteries (4-pack),1,3.84,12/14/19 16:32,"339 Cherry St, San Francisco, CA 94016" -310195,Apple Airpods Headphones,1,150,12/16/19 20:04,"999 1st St, Atlanta, GA 30301" -310196,AAA Batteries (4-pack),2,2.99,12/05/19 11:44,"32 5th St, San Francisco, CA 94016" -310197,Wired Headphones,1,11.99,12/22/19 04:28,"116 Lake St, Boston, MA 02215" -310198,Apple Airpods Headphones,1,150,12/16/19 18:32,"765 West St, Seattle, WA 98101" -310199,Lightning Charging Cable,1,14.95,12/08/19 19:34,"545 Sunset St, San Francisco, CA 94016" -310200,Wired Headphones,1,11.99,12/29/19 18:11,"667 Hill St, Boston, MA 02215" -310201,27in 4K Gaming Monitor,1,389.99,12/20/19 15:07,"949 Pine St, Atlanta, GA 30301" -310202,27in 4K Gaming Monitor,1,389.99,12/05/19 15:03,"760 Meadow St, San Francisco, CA 94016" -310203,USB-C Charging Cable,1,11.95,12/11/19 09:45,"784 Jefferson St, Los Angeles, CA 90001" -310204,27in 4K Gaming Monitor,1,389.99,12/14/19 12:53,"918 River St, Seattle, WA 98101" -310205,27in 4K Gaming Monitor,1,389.99,12/15/19 08:36,"263 5th St, Los Angeles, CA 90001" -310206,ThinkPad Laptop,1,999.99,12/03/19 03:35,"941 9th St, Dallas, TX 75001" -310207,USB-C Charging Cable,1,11.95,12/01/19 17:10,"209 Center St, San Francisco, CA 94016" -310208,USB-C Charging Cable,1,11.95,12/28/19 08:03,"724 7th St, Los Angeles, CA 90001" -310209,Apple Airpods Headphones,1,150,12/05/19 12:08,"729 13th St, Boston, MA 02215" -310210,Wired Headphones,1,11.99,12/01/19 21:05,"342 Dogwood St, Austin, TX 73301" -310211,AA Batteries (4-pack),1,3.84,12/20/19 07:37,"347 Willow St, Los Angeles, CA 90001" -310212,Lightning Charging Cable,1,14.95,12/27/19 10:40,"71 Elm St, San Francisco, CA 94016" -310213,ThinkPad Laptop,1,999.99,12/08/19 18:56,"469 Spruce St, Dallas, TX 75001" -310214,20in Monitor,1,109.99,12/12/19 17:05,"913 Jefferson St, New York City, NY 10001" -310215,AAA Batteries (4-pack),1,2.99,12/05/19 10:41,"881 Highland St, New York City, NY 10001" -310216,USB-C Charging Cable,1,11.95,12/21/19 11:28,"734 Johnson St, Los Angeles, CA 90001" -310217,ThinkPad Laptop,1,999.99,12/01/19 09:33,"310 Jefferson St, Atlanta, GA 30301" -310218,Wired Headphones,1,11.99,12/18/19 09:57,"611 Washington St, Boston, MA 02215" -310219,AA Batteries (4-pack),1,3.84,12/15/19 16:57,"13 Maple St, San Francisco, CA 94016" -310220,USB-C Charging Cable,1,11.95,12/06/19 15:32,"150 Hickory St, San Francisco, CA 94016" -310221,27in FHD Monitor,1,149.99,12/08/19 16:19,"904 6th St, Los Angeles, CA 90001" -310222,Apple Airpods Headphones,1,150,12/20/19 12:19,"697 Hickory St, Los Angeles, CA 90001" -310223,Wired Headphones,1,11.99,12/12/19 12:20,"323 Ridge St, New York City, NY 10001" -310224,AA Batteries (4-pack),1,3.84,12/07/19 23:53,"633 Lake St, Austin, TX 73301" -310225,Bose SoundSport Headphones,1,99.99,12/08/19 15:28,"69 1st St, Dallas, TX 75001" -310226,Bose SoundSport Headphones,1,99.99,12/12/19 22:03,"95 Lake St, San Francisco, CA 94016" -310227,Bose SoundSport Headphones,1,99.99,12/10/19 15:32,"145 Forest St, Los Angeles, CA 90001" -310228,Lightning Charging Cable,2,14.95,12/19/19 19:54,"739 Main St, Dallas, TX 75001" -310229,LG Dryer,1,600.0,12/28/19 17:33,"798 6th St, Boston, MA 02215" -310230,USB-C Charging Cable,1,11.95,12/06/19 11:27,"661 Elm St, Boston, MA 02215" -310231,ThinkPad Laptop,1,999.99,12/20/19 07:59,"844 Highland St, San Francisco, CA 94016" -310232,Lightning Charging Cable,2,14.95,12/15/19 15:02,"985 Cedar St, Seattle, WA 98101" -310233,AAA Batteries (4-pack),1,2.99,12/25/19 19:28,"59 Lincoln St, Los Angeles, CA 90001" -310234,Vareebadd Phone,1,400,12/08/19 10:51,"746 Church St, Boston, MA 02215" -310235,34in Ultrawide Monitor,1,379.99,12/19/19 11:31,"337 Chestnut St, Boston, MA 02215" -310236,34in Ultrawide Monitor,1,379.99,12/01/19 16:20,"790 Spruce St, Atlanta, GA 30301" -310237,USB-C Charging Cable,1,11.95,12/25/19 22:25,"641 River St, San Francisco, CA 94016" -310238,USB-C Charging Cable,1,11.95,12/11/19 12:35,"978 Jefferson St, San Francisco, CA 94016" -310239,Bose SoundSport Headphones,1,99.99,12/18/19 11:32,"499 7th St, San Francisco, CA 94016" -310240,Lightning Charging Cable,1,14.95,12/15/19 13:54,"215 11th St, Los Angeles, CA 90001" -310241,Google Phone,1,600,12/25/19 22:43,"419 Pine St, New York City, NY 10001" -310241,USB-C Charging Cable,1,11.95,12/25/19 22:43,"419 Pine St, New York City, NY 10001" -310242,AA Batteries (4-pack),2,3.84,12/16/19 20:18,"743 Lincoln St, New York City, NY 10001" -310243,Flatscreen TV,1,300,12/29/19 21:05,"867 Walnut St, San Francisco, CA 94016" -310244,ThinkPad Laptop,1,999.99,12/15/19 22:36,"870 South St, Boston, MA 02215" -310245,AA Batteries (4-pack),1,3.84,12/24/19 21:25,"182 Jefferson St, Boston, MA 02215" -310246,AAA Batteries (4-pack),1,2.99,12/09/19 16:13,"829 Chestnut St, Boston, MA 02215" -310247,AA Batteries (4-pack),1,3.84,12/16/19 10:18,"409 Chestnut St, San Francisco, CA 94016" -310248,Bose SoundSport Headphones,1,99.99,12/02/19 21:36,"944 Main St, Seattle, WA 98101" -310249,AA Batteries (4-pack),1,3.84,12/05/19 19:23,"415 Jackson St, New York City, NY 10001" -310250,Google Phone,1,600,12/29/19 07:34,"654 Forest St, Dallas, TX 75001" -310250,Lightning Charging Cable,1,14.95,12/29/19 07:34,"654 Forest St, Dallas, TX 75001" -310251,27in FHD Monitor,1,149.99,12/16/19 22:48,"606 Highland St, Boston, MA 02215" -310252,27in FHD Monitor,1,149.99,12/17/19 18:06,"74 Elm St, Los Angeles, CA 90001" -310253,AA Batteries (4-pack),2,3.84,12/23/19 21:21,"982 Elm St, New York City, NY 10001" -310254,27in FHD Monitor,1,149.99,12/20/19 12:03,"949 8th St, Los Angeles, CA 90001" -310255,USB-C Charging Cable,2,11.95,12/02/19 10:11,"886 Cherry St, Boston, MA 02215" -310256,AA Batteries (4-pack),5,3.84,12/18/19 10:44,"523 6th St, San Francisco, CA 94016" -310257,Apple Airpods Headphones,1,150,12/24/19 10:30,"210 Johnson St, Los Angeles, CA 90001" -310258,Wired Headphones,1,11.99,12/26/19 10:42,"429 River St, San Francisco, CA 94016" -310259,AAA Batteries (4-pack),1,2.99,12/02/19 12:34,"84 4th St, San Francisco, CA 94016" -310260,Lightning Charging Cable,1,14.95,12/18/19 18:25,"206 Lake St, Portland, OR 97035" -310261,Macbook Pro Laptop,1,1700,12/30/19 22:08,"563 Forest St, San Francisco, CA 94016" -310262,Apple Airpods Headphones,1,150,12/26/19 15:48,"10 7th St, Los Angeles, CA 90001" -310263,AAA Batteries (4-pack),1,2.99,12/15/19 11:53,"756 Lake St, Seattle, WA 98101" -310264,USB-C Charging Cable,1,11.95,12/10/19 10:39,"477 Hickory St, Los Angeles, CA 90001" -310265,AAA Batteries (4-pack),1,2.99,12/22/19 19:13,"102 1st St, San Francisco, CA 94016" -310266,Flatscreen TV,1,300,12/07/19 17:15,"846 Elm St, Austin, TX 73301" -310267,Macbook Pro Laptop,1,1700,12/19/19 20:32,"609 4th St, Austin, TX 73301" -310268,Flatscreen TV,1,300,12/08/19 19:35,"696 8th St, Atlanta, GA 30301" -310269,AAA Batteries (4-pack),2,2.99,12/04/19 12:08,"41 9th St, San Francisco, CA 94016" -310270,Lightning Charging Cable,1,14.95,12/23/19 17:01,"829 10th St, San Francisco, CA 94016" -310271,Apple Airpods Headphones,1,150,12/23/19 14:00,"390 South St, New York City, NY 10001" -310272,Bose SoundSport Headphones,1,99.99,12/04/19 13:42,"782 11th St, Dallas, TX 75001" -310273,Wired Headphones,1,11.99,12/30/19 19:20,"864 Hickory St, Boston, MA 02215" -310274,AA Batteries (4-pack),1,3.84,12/04/19 19:43,"995 Sunset St, New York City, NY 10001" -310275,AA Batteries (4-pack),1,3.84,12/09/19 14:59,"324 Wilson St, Boston, MA 02215" -310276,Lightning Charging Cable,1,14.95,12/08/19 22:25,"566 Chestnut St, Seattle, WA 98101" -310277,Lightning Charging Cable,1,14.95,12/02/19 16:15,"778 Lakeview St, Austin, TX 73301" -310278,iPhone,1,700,12/28/19 12:09,"908 Lakeview St, New York City, NY 10001" -310279,AAA Batteries (4-pack),1,2.99,12/10/19 20:01,"838 Lakeview St, San Francisco, CA 94016" -310280,AA Batteries (4-pack),1,3.84,12/19/19 22:06,"416 Main St, Los Angeles, CA 90001" -310281,USB-C Charging Cable,1,11.95,12/27/19 22:05,"151 9th St, New York City, NY 10001" -310282,Apple Airpods Headphones,1,150,12/29/19 19:35,"731 Pine St, Boston, MA 02215" -310283,USB-C Charging Cable,1,11.95,12/01/19 21:16,"885 4th St, Boston, MA 02215" -310284,27in FHD Monitor,1,149.99,12/01/19 15:13,"667 Cedar St, New York City, NY 10001" -310285,Wired Headphones,1,11.99,12/12/19 16:27,"385 Washington St, San Francisco, CA 94016" -310286,AAA Batteries (4-pack),1,2.99,12/19/19 14:39,"510 Main St, Dallas, TX 75001" -310287,USB-C Charging Cable,1,11.95,12/05/19 21:05,"105 Park St, Boston, MA 02215" -310288,USB-C Charging Cable,1,11.95,12/12/19 15:48,"707 Hickory St, New York City, NY 10001" -310289,27in 4K Gaming Monitor,1,389.99,12/05/19 23:29,"13 Hickory St, San Francisco, CA 94016" -310290,AA Batteries (4-pack),1,3.84,12/07/19 12:19,"634 Highland St, Los Angeles, CA 90001" -310291,AAA Batteries (4-pack),1,2.99,12/31/19 08:22,"813 Dogwood St, San Francisco, CA 94016" -310292,Apple Airpods Headphones,1,150,12/27/19 20:49,"543 North St, San Francisco, CA 94016" -310293,Macbook Pro Laptop,1,1700,12/16/19 05:00,"459 Jefferson St, New York City, NY 10001" -310294,20in Monitor,1,109.99,12/27/19 13:32,"975 Sunset St, Austin, TX 73301" -310295,AAA Batteries (4-pack),1,2.99,12/19/19 21:24,"387 Madison St, Dallas, TX 75001" -310296,Bose SoundSport Headphones,1,99.99,12/24/19 16:08,"893 10th St, New York City, NY 10001" -310297,USB-C Charging Cable,1,11.95,12/19/19 19:05,"401 Dogwood St, San Francisco, CA 94016" -310298,20in Monitor,1,109.99,12/13/19 15:05,"839 Ridge St, Los Angeles, CA 90001" -310299,AAA Batteries (4-pack),2,2.99,12/11/19 23:12,"562 Hill St, Boston, MA 02215" -310300,Bose SoundSport Headphones,1,99.99,12/22/19 22:27,"994 Madison St, Los Angeles, CA 90001" -310301,AA Batteries (4-pack),1,3.84,12/07/19 15:13,"753 Sunset St, Austin, TX 73301" -310302,34in Ultrawide Monitor,1,379.99,12/28/19 13:16,"283 5th St, Seattle, WA 98101" -310303,AAA Batteries (4-pack),2,2.99,12/17/19 10:29,"990 7th St, New York City, NY 10001" -310304,AAA Batteries (4-pack),2,2.99,12/17/19 14:25,"954 11th St, New York City, NY 10001" -310305,27in FHD Monitor,1,149.99,12/20/19 19:43,"310 Lake St, San Francisco, CA 94016" -310306,Apple Airpods Headphones,1,150,12/16/19 06:57,"972 River St, New York City, NY 10001" -310307,Macbook Pro Laptop,1,1700,12/26/19 16:51,"841 Main St, Atlanta, GA 30301" -310308,27in FHD Monitor,1,149.99,12/18/19 22:56,"977 Johnson St, New York City, NY 10001" -310309,Wired Headphones,1,11.99,12/06/19 13:52,"170 Spruce St, Boston, MA 02215" -310310,AA Batteries (4-pack),1,3.84,12/04/19 14:55,"305 7th St, Boston, MA 02215" -310311,20in Monitor,1,109.99,12/24/19 23:59,"629 13th St, Boston, MA 02215" -310312,Apple Airpods Headphones,1,150,12/05/19 14:02,"200 Main St, Los Angeles, CA 90001" -310313,iPhone,1,700,12/16/19 08:57,"133 Madison St, San Francisco, CA 94016" -310313,Apple Airpods Headphones,1,150,12/16/19 08:57,"133 Madison St, San Francisco, CA 94016" -310314,20in Monitor,1,109.99,12/04/19 10:46,"990 11th St, Austin, TX 73301" -310315,27in FHD Monitor,1,149.99,12/23/19 13:50,"249 1st St, Atlanta, GA 30301" -310316,USB-C Charging Cable,1,11.95,12/08/19 17:21,"202 Lake St, Austin, TX 73301" -310317,Lightning Charging Cable,3,14.95,12/27/19 12:16,"82 Elm St, Dallas, TX 75001" -310318,AA Batteries (4-pack),1,3.84,12/26/19 14:58,"615 Lincoln St, Boston, MA 02215" -310319,Bose SoundSport Headphones,1,99.99,12/22/19 15:21,"395 Johnson St, New York City, NY 10001" -310320,AA Batteries (4-pack),1,3.84,12/15/19 21:08,"586 Elm St, San Francisco, CA 94016" -310321,USB-C Charging Cable,1,11.95,12/12/19 11:21,"236 Meadow St, Los Angeles, CA 90001" -310322,Lightning Charging Cable,1,14.95,12/11/19 11:59,"210 Highland St, Dallas, TX 75001" -310323,Wired Headphones,1,11.99,12/24/19 11:43,"235 Cedar St, Boston, MA 02215" -310324,Lightning Charging Cable,1,14.95,12/19/19 15:21,"814 Dogwood St, Boston, MA 02215" -,,,,, -310325,Google Phone,1,600,12/04/19 21:48,"310 Maple St, Boston, MA 02215" -310325,Bose SoundSport Headphones,1,99.99,12/04/19 21:48,"310 Maple St, Boston, MA 02215" -310326,Lightning Charging Cable,2,14.95,12/27/19 21:40,"281 4th St, San Francisco, CA 94016" -310327,Lightning Charging Cable,1,14.95,12/04/19 22:06,"823 Elm St, Seattle, WA 98101" -310328,Wired Headphones,1,11.99,12/20/19 13:05,"484 8th St, New York City, NY 10001" -310329,AAA Batteries (4-pack),1,2.99,12/21/19 10:40,"285 South St, Seattle, WA 98101" -310330,USB-C Charging Cable,1,11.95,12/15/19 14:53,"976 Walnut St, Atlanta, GA 30301" -310331,Lightning Charging Cable,1,14.95,12/17/19 01:31,"946 North St, Portland, ME 04101" -310332,34in Ultrawide Monitor,1,379.99,12/25/19 17:53,"424 Maple St, Boston, MA 02215" -310333,Bose SoundSport Headphones,1,99.99,12/06/19 19:17,"498 Willow St, Seattle, WA 98101" -310334,Wired Headphones,1,11.99,12/10/19 12:06,"687 2nd St, Seattle, WA 98101" -310335,AA Batteries (4-pack),1,3.84,12/13/19 10:20,"854 Johnson St, San Francisco, CA 94016" -310336,Google Phone,1,600,12/06/19 05:07,"936 6th St, Portland, OR 97035" -310336,USB-C Charging Cable,1,11.95,12/06/19 05:07,"936 6th St, Portland, OR 97035" -310337,Lightning Charging Cable,1,14.95,12/15/19 11:58,"549 Wilson St, Portland, ME 04101" -310338,Bose SoundSport Headphones,1,99.99,12/19/19 16:32,"798 West St, New York City, NY 10001" -310339,Lightning Charging Cable,1,14.95,12/15/19 00:11,"461 South St, Los Angeles, CA 90001" -310340,Wired Headphones,1,11.99,12/29/19 10:21,"871 Maple St, Los Angeles, CA 90001" -310341,USB-C Charging Cable,1,11.95,12/18/19 18:56,"490 North St, Dallas, TX 75001" -310342,Lightning Charging Cable,1,14.95,12/09/19 07:07,"292 Center St, San Francisco, CA 94016" -310343,Lightning Charging Cable,1,14.95,12/28/19 21:28,"832 Chestnut St, Dallas, TX 75001" -310344,AA Batteries (4-pack),1,3.84,12/24/19 12:10,"159 Washington St, Los Angeles, CA 90001" -310345,Bose SoundSport Headphones,1,99.99,12/11/19 20:19,"540 Lake St, Austin, TX 73301" -310346,27in 4K Gaming Monitor,1,389.99,12/29/19 14:57,"640 Forest St, Los Angeles, CA 90001" -310347,AA Batteries (4-pack),1,3.84,12/27/19 11:40,"543 Dogwood St, Los Angeles, CA 90001" -310348,Apple Airpods Headphones,1,150,12/21/19 16:28,"281 Highland St, Austin, TX 73301" -310349,Google Phone,1,600,12/02/19 12:44,"458 Jefferson St, San Francisco, CA 94016" -310350,Apple Airpods Headphones,1,150,12/11/19 07:12,"89 14th St, Seattle, WA 98101" -310351,USB-C Charging Cable,1,11.95,12/01/19 15:49,"202 Sunset St, San Francisco, CA 94016" -310352,Lightning Charging Cable,1,14.95,12/24/19 19:59,"225 Jackson St, Dallas, TX 75001" -310353,USB-C Charging Cable,1,11.95,12/17/19 18:13,"342 10th St, New York City, NY 10001" -310354,Lightning Charging Cable,1,14.95,12/01/19 22:18,"651 4th St, Boston, MA 02215" -310355,AA Batteries (4-pack),1,3.84,12/20/19 12:10,"817 Cedar St, New York City, NY 10001" -310356,LG Washing Machine,1,600.0,12/18/19 08:53,"834 Center St, New York City, NY 10001" -310357,Google Phone,1,600,12/31/19 12:59,"810 8th St, New York City, NY 10001" -310358,Flatscreen TV,1,300,12/27/19 12:51,"797 River St, Atlanta, GA 30301" -310359,Bose SoundSport Headphones,1,99.99,12/08/19 21:44,"734 West St, Portland, OR 97035" -310360,Wired Headphones,1,11.99,12/10/19 12:53,"153 7th St, San Francisco, CA 94016" -310361,USB-C Charging Cable,1,11.95,12/11/19 19:09,"909 North St, Seattle, WA 98101" -310362,Apple Airpods Headphones,1,150,12/18/19 16:57,"62 Hill St, Dallas, TX 75001" -310363,Macbook Pro Laptop,1,1700,12/13/19 21:28,"274 West St, Los Angeles, CA 90001" -310364,Apple Airpods Headphones,1,150,12/05/19 15:57,"122 Adams St, Austin, TX 73301" -310365,AA Batteries (4-pack),2,3.84,12/06/19 12:03,"837 8th St, Dallas, TX 75001" -310366,AA Batteries (4-pack),2,3.84,12/21/19 21:02,"746 5th St, Los Angeles, CA 90001" -310367,Apple Airpods Headphones,1,150,12/18/19 11:45,"799 Madison St, Atlanta, GA 30301" -310368,AAA Batteries (4-pack),1,2.99,12/12/19 21:53,"962 7th St, Atlanta, GA 30301" -310369,AA Batteries (4-pack),1,3.84,12/13/19 13:25,"242 11th St, San Francisco, CA 94016" -310370,AA Batteries (4-pack),1,3.84,12/29/19 17:19,"942 Cherry St, Dallas, TX 75001" -310371,AAA Batteries (4-pack),1,2.99,12/10/19 04:30,"108 4th St, Portland, ME 04101" -310372,Bose SoundSport Headphones,1,99.99,12/25/19 10:44,"851 South St, San Francisco, CA 94016" -310373,Wired Headphones,1,11.99,12/05/19 11:01,"107 Jackson St, Atlanta, GA 30301" -310374,Wired Headphones,1,11.99,12/21/19 11:02,"419 7th St, Los Angeles, CA 90001" -310375,Wired Headphones,1,11.99,12/30/19 08:33,"884 Washington St, New York City, NY 10001" -310376,Bose SoundSport Headphones,1,99.99,12/03/19 14:53,"660 Church St, Los Angeles, CA 90001" -310377,27in FHD Monitor,1,149.99,12/14/19 14:03,"641 8th St, Boston, MA 02215" -310378,AA Batteries (4-pack),1,3.84,12/21/19 19:55,"905 Ridge St, Seattle, WA 98101" -310379,AA Batteries (4-pack),1,3.84,12/05/19 12:13,"241 Highland St, Los Angeles, CA 90001" -310380,AA Batteries (4-pack),1,3.84,12/30/19 12:06,"839 Chestnut St, Dallas, TX 75001" -310381,AA Batteries (4-pack),1,3.84,12/07/19 01:11,"45 11th St, San Francisco, CA 94016" -310382,AA Batteries (4-pack),3,3.84,12/05/19 10:06,"51 1st St, Los Angeles, CA 90001" -310383,Vareebadd Phone,1,400,12/14/19 12:18,"579 Elm St, Austin, TX 73301" -310384,Lightning Charging Cable,1,14.95,12/20/19 10:16,"881 Highland St, Los Angeles, CA 90001" -310385,Flatscreen TV,1,300,12/01/19 18:24,"376 Sunset St, Seattle, WA 98101" -310386,27in FHD Monitor,1,149.99,12/19/19 18:47,"889 Meadow St, Dallas, TX 75001" -310387,USB-C Charging Cable,1,11.95,12/18/19 22:05,"340 Jefferson St, Seattle, WA 98101" -310388,Bose SoundSport Headphones,1,99.99,12/04/19 08:59,"198 South St, Seattle, WA 98101" -310389,Apple Airpods Headphones,2,150,12/19/19 12:37,"524 Adams St, Los Angeles, CA 90001" -310390,Google Phone,1,600,12/03/19 19:39,"2 Wilson St, Seattle, WA 98101" -310390,USB-C Charging Cable,1,11.95,12/03/19 19:39,"2 Wilson St, Seattle, WA 98101" -310391,AA Batteries (4-pack),1,3.84,12/26/19 19:42,"231 Hickory St, Boston, MA 02215" -310392,Lightning Charging Cable,1,14.95,12/28/19 21:52,"144 North St, New York City, NY 10001" -310393,USB-C Charging Cable,1,11.95,12/06/19 18:56,"282 Lincoln St, Los Angeles, CA 90001" -310394,Lightning Charging Cable,1,14.95,12/21/19 23:53,"987 Center St, New York City, NY 10001" -310395,USB-C Charging Cable,2,11.95,12/11/19 07:28,"301 Church St, Austin, TX 73301" -310396,Apple Airpods Headphones,1,150,12/16/19 14:43,"45 North St, Austin, TX 73301" -310397,Apple Airpods Headphones,1,150,12/26/19 20:13,"954 Washington St, Portland, OR 97035" -310398,USB-C Charging Cable,3,11.95,12/24/19 13:29,"687 Jefferson St, Dallas, TX 75001" -310399,Apple Airpods Headphones,1,150,12/07/19 19:05,"870 Jackson St, Atlanta, GA 30301" -310400,Wired Headphones,1,11.99,12/11/19 15:18,"468 Chestnut St, San Francisco, CA 94016" -310401,USB-C Charging Cable,1,11.95,12/27/19 11:15,"178 7th St, Atlanta, GA 30301" -310402,AAA Batteries (4-pack),2,2.99,12/02/19 21:14,"596 Forest St, Dallas, TX 75001" -310403,20in Monitor,1,109.99,12/10/19 11:19,"879 Maple St, Atlanta, GA 30301" -310404,Lightning Charging Cable,1,14.95,12/11/19 14:50,"742 Jefferson St, Atlanta, GA 30301" -310405,Wired Headphones,1,11.99,12/14/19 10:17,"827 North St, Dallas, TX 75001" -310406,Lightning Charging Cable,1,14.95,12/29/19 14:52,"660 8th St, New York City, NY 10001" -310407,USB-C Charging Cable,1,11.95,12/20/19 20:41,"382 Church St, Portland, OR 97035" -310408,USB-C Charging Cable,1,11.95,12/03/19 23:19,"578 14th St, New York City, NY 10001" -310409,AAA Batteries (4-pack),1,2.99,12/10/19 18:37,"722 1st St, Portland, OR 97035" -310410,AA Batteries (4-pack),1,3.84,12/14/19 10:07,"183 Maple St, New York City, NY 10001" -310411,Google Phone,1,600,12/12/19 14:17,"298 North St, Boston, MA 02215" -310411,USB-C Charging Cable,1,11.95,12/12/19 14:17,"298 North St, Boston, MA 02215" -310412,Lightning Charging Cable,1,14.95,12/15/19 09:27,"353 9th St, New York City, NY 10001" -310413,AA Batteries (4-pack),1,3.84,12/16/19 06:41,"319 Ridge St, San Francisco, CA 94016" -310414,Wired Headphones,1,11.99,12/21/19 18:11,"357 4th St, Los Angeles, CA 90001" -310415,iPhone,1,700,12/01/19 19:07,"322 2nd St, San Francisco, CA 94016" -310415,Wired Headphones,2,11.99,12/01/19 19:07,"322 2nd St, San Francisco, CA 94016" -310416,27in 4K Gaming Monitor,1,389.99,12/06/19 19:34,"307 12th St, Seattle, WA 98101" -310417,Macbook Pro Laptop,1,1700,12/06/19 09:48,"109 Sunset St, Los Angeles, CA 90001" -310418,AA Batteries (4-pack),1,3.84,12/01/19 19:25,"107 Center St, Los Angeles, CA 90001" -310419,Lightning Charging Cable,1,14.95,12/29/19 23:57,"52 6th St, New York City, NY 10001" -310420,AA Batteries (4-pack),1,3.84,12/29/19 01:08,"557 Cedar St, Los Angeles, CA 90001" -310421,AA Batteries (4-pack),2,3.84,12/12/19 23:22,"334 14th St, Los Angeles, CA 90001" -310422,AA Batteries (4-pack),1,3.84,12/20/19 19:41,"431 Maple St, Dallas, TX 75001" -310423,Lightning Charging Cable,1,14.95,12/03/19 18:36,"771 6th St, Seattle, WA 98101" -310424,Lightning Charging Cable,1,14.95,12/31/19 10:43,"398 Chestnut St, Atlanta, GA 30301" -310425,Lightning Charging Cable,1,14.95,12/15/19 18:11,"477 8th St, New York City, NY 10001" -310426,Lightning Charging Cable,1,14.95,12/31/19 10:46,"22 Chestnut St, San Francisco, CA 94016" -310427,Lightning Charging Cable,2,14.95,12/27/19 17:14,"169 Cedar St, San Francisco, CA 94016" -310428,Apple Airpods Headphones,1,150,12/11/19 13:53,"914 8th St, San Francisco, CA 94016" -310429,34in Ultrawide Monitor,1,379.99,12/05/19 13:14,"366 9th St, San Francisco, CA 94016" -310430,Flatscreen TV,1,300,12/13/19 08:48,"11 12th St, San Francisco, CA 94016" -310431,27in 4K Gaming Monitor,1,389.99,12/01/19 22:19,"390 Madison St, Los Angeles, CA 90001" -310432,Lightning Charging Cable,1,14.95,12/15/19 10:57,"350 Jefferson St, Portland, OR 97035" -310433,Wired Headphones,1,11.99,12/12/19 12:55,"825 Spruce St, Austin, TX 73301" -310434,ThinkPad Laptop,1,999.99,12/12/19 08:26,"725 Cedar St, Austin, TX 73301" -310435,Macbook Pro Laptop,1,1700,12/07/19 09:51,"745 Highland St, San Francisco, CA 94016" -310436,Apple Airpods Headphones,1,150,12/17/19 09:30,"813 Park St, Los Angeles, CA 90001" -310437,USB-C Charging Cable,1,11.95,12/31/19 19:14,"449 Maple St, Los Angeles, CA 90001" -310438,Wired Headphones,1,11.99,12/24/19 10:01,"58 Pine St, San Francisco, CA 94016" -310439,USB-C Charging Cable,1,11.95,12/12/19 12:08,"813 14th St, Portland, OR 97035" -310440,AAA Batteries (4-pack),3,2.99,12/17/19 13:44,"509 Elm St, Portland, OR 97035" -310441,27in 4K Gaming Monitor,1,389.99,12/05/19 16:03,"953 10th St, Seattle, WA 98101" -310442,Lightning Charging Cable,1,14.95,12/27/19 22:04,"38 10th St, Portland, OR 97035" -310443,Macbook Pro Laptop,1,1700,12/11/19 14:57,"617 Meadow St, New York City, NY 10001" -310444,USB-C Charging Cable,1,11.95,12/10/19 17:22,"243 Lincoln St, Los Angeles, CA 90001" -310445,27in FHD Monitor,1,149.99,12/09/19 08:45,"629 Wilson St, New York City, NY 10001" -310446,Bose SoundSport Headphones,1,99.99,12/04/19 13:58,"919 12th St, New York City, NY 10001" -310447,AAA Batteries (4-pack),2,2.99,12/19/19 22:06,"568 5th St, Atlanta, GA 30301" -310448,USB-C Charging Cable,1,11.95,12/24/19 18:21,"60 Park St, Los Angeles, CA 90001" -310449,Apple Airpods Headphones,1,150,12/14/19 16:03,"168 Highland St, Boston, MA 02215" -310450,Apple Airpods Headphones,1,150,12/26/19 18:01,"617 Cedar St, San Francisco, CA 94016" -310451,LG Dryer,1,600.0,12/14/19 15:58,"77 Willow St, New York City, NY 10001" -310452,USB-C Charging Cable,1,11.95,12/13/19 17:31,"768 Lincoln St, San Francisco, CA 94016" -310453,Apple Airpods Headphones,1,150,12/27/19 21:32,"320 1st St, Los Angeles, CA 90001" -310454,AA Batteries (4-pack),1,3.84,12/30/19 15:30,"530 Highland St, Los Angeles, CA 90001" -310455,Lightning Charging Cable,1,14.95,12/27/19 23:15,"558 10th St, New York City, NY 10001" -310456,34in Ultrawide Monitor,1,379.99,12/20/19 16:59,"128 5th St, Portland, OR 97035" -310457,Bose SoundSport Headphones,1,99.99,12/22/19 16:49,"250 Maple St, San Francisco, CA 94016" -310458,ThinkPad Laptop,1,999.99,12/21/19 13:03,"829 Cedar St, San Francisco, CA 94016" -310459,Wired Headphones,1,11.99,12/05/19 11:45,"542 Forest St, San Francisco, CA 94016" -310460,Flatscreen TV,1,300,12/30/19 00:40,"135 12th St, Dallas, TX 75001" -310461,34in Ultrawide Monitor,1,379.99,12/12/19 18:31,"5 Park St, Los Angeles, CA 90001" -310462,Wired Headphones,1,11.99,12/04/19 05:18,"592 Ridge St, Dallas, TX 75001" -310463,Bose SoundSport Headphones,1,99.99,12/05/19 13:50,"969 Meadow St, San Francisco, CA 94016" -310464,27in 4K Gaming Monitor,1,389.99,12/28/19 22:29,"906 Forest St, Portland, OR 97035" -310465,iPhone,1,700,12/07/19 10:44,"430 5th St, Boston, MA 02215" -310466,LG Washing Machine,1,600.0,12/17/19 17:52,"420 Church St, Los Angeles, CA 90001" -310467,27in FHD Monitor,1,149.99,12/18/19 08:12,"551 Highland St, Los Angeles, CA 90001" -310468,AA Batteries (4-pack),1,3.84,12/01/19 16:22,"543 11th St, Seattle, WA 98101" -310469,USB-C Charging Cable,1,11.95,12/26/19 22:12,"144 Wilson St, Atlanta, GA 30301" -310470,ThinkPad Laptop,1,999.99,12/26/19 09:48,"279 North St, Austin, TX 73301" -310471,AA Batteries (4-pack),2,3.84,12/14/19 18:47,"49 13th St, San Francisco, CA 94016" -310472,Wired Headphones,1,11.99,12/12/19 11:38,"471 Center St, San Francisco, CA 94016" -310473,27in FHD Monitor,1,149.99,12/31/19 00:19,"160 Madison St, San Francisco, CA 94016" -310474,Lightning Charging Cable,1,14.95,12/22/19 19:10,"818 5th St, Dallas, TX 75001" -310475,27in 4K Gaming Monitor,1,389.99,12/29/19 23:05,"812 11th St, Portland, OR 97035" -310476,Bose SoundSport Headphones,1,99.99,12/22/19 16:02,"977 Highland St, Austin, TX 73301" -310477,AAA Batteries (4-pack),1,2.99,12/16/19 11:43,"315 Elm St, Seattle, WA 98101" -310478,ThinkPad Laptop,1,999.99,12/07/19 08:57,"645 Chestnut St, Los Angeles, CA 90001" -310479,34in Ultrawide Monitor,1,379.99,12/22/19 11:28,"772 Center St, Boston, MA 02215" -310480,ThinkPad Laptop,1,999.99,12/30/19 12:49,"29 Meadow St, Boston, MA 02215" -310481,Apple Airpods Headphones,1,150,12/31/19 10:31,"333 Ridge St, Los Angeles, CA 90001" -310482,34in Ultrawide Monitor,1,379.99,12/26/19 19:39,"504 Sunset St, Atlanta, GA 30301" -310483,Wired Headphones,1,11.99,12/20/19 23:06,"259 Willow St, New York City, NY 10001" -310484,34in Ultrawide Monitor,1,379.99,12/05/19 08:17,"91 Maple St, Los Angeles, CA 90001" -310485,Lightning Charging Cable,1,14.95,12/21/19 20:32,"552 6th St, Portland, OR 97035" -310486,Google Phone,1,600,12/17/19 15:05,"230 10th St, Los Angeles, CA 90001" -310487,Lightning Charging Cable,1,14.95,12/15/19 19:46,"43 Lincoln St, Boston, MA 02215" -310488,Apple Airpods Headphones,1,150,12/09/19 10:12,"887 12th St, Dallas, TX 75001" -310489,Lightning Charging Cable,1,14.95,12/15/19 14:17,"482 Jackson St, Austin, TX 73301" -310490,Flatscreen TV,1,300,12/09/19 19:03,"793 8th St, Los Angeles, CA 90001" -310491,Wired Headphones,1,11.99,12/31/19 17:06,"112 Jefferson St, San Francisco, CA 94016" -310492,USB-C Charging Cable,1,11.95,12/19/19 10:52,"10 Walnut St, Seattle, WA 98101" -310493,AAA Batteries (4-pack),2,2.99,12/08/19 15:14,"621 North St, San Francisco, CA 94016" -310493,AAA Batteries (4-pack),1,2.99,12/08/19 15:14,"621 North St, San Francisco, CA 94016" -310494,Lightning Charging Cable,1,14.95,12/21/19 09:20,"125 South St, Los Angeles, CA 90001" -310495,Bose SoundSport Headphones,1,99.99,12/13/19 15:01,"914 Lincoln St, Boston, MA 02215" -310496,Wired Headphones,1,11.99,12/09/19 21:56,"861 8th St, Austin, TX 73301" -310497,Wired Headphones,1,11.99,12/05/19 11:39,"285 14th St, Dallas, TX 75001" -310498,iPhone,1,700,12/01/19 18:36,"713 Lake St, Dallas, TX 75001" -310498,Lightning Charging Cable,1,14.95,12/01/19 18:36,"713 Lake St, Dallas, TX 75001" -310499,Bose SoundSport Headphones,1,99.99,12/23/19 13:55,"733 12th St, New York City, NY 10001" -310500,Flatscreen TV,1,300,12/14/19 14:18,"936 Hickory St, Boston, MA 02215" -310501,AA Batteries (4-pack),1,3.84,12/08/19 07:18,"676 Adams St, San Francisco, CA 94016" -310502,Bose SoundSport Headphones,1,99.99,12/22/19 18:08,"196 10th St, San Francisco, CA 94016" -310503,Google Phone,1,600,12/12/19 13:34,"46 Ridge St, San Francisco, CA 94016" -310504,Lightning Charging Cable,1,14.95,12/28/19 10:26,"180 Church St, Los Angeles, CA 90001" -310505,AAA Batteries (4-pack),1,2.99,12/25/19 07:19,"19 West St, Boston, MA 02215" -310506,AAA Batteries (4-pack),1,2.99,12/12/19 16:54,"355 Washington St, Los Angeles, CA 90001" -310507,Wired Headphones,1,11.99,12/01/19 19:50,"348 7th St, New York City, NY 10001" -310508,27in 4K Gaming Monitor,1,389.99,12/28/19 20:57,"964 Hickory St, Los Angeles, CA 90001" -310509,Wired Headphones,1,11.99,12/25/19 16:29,"52 9th St, Boston, MA 02215" -310510,AA Batteries (4-pack),1,3.84,12/03/19 10:26,"845 1st St, San Francisco, CA 94016" -310511,AAA Batteries (4-pack),1,2.99,12/03/19 15:00,"373 10th St, San Francisco, CA 94016" -310512,Lightning Charging Cable,1,14.95,12/30/19 17:58,"85 12th St, San Francisco, CA 94016" -310513,AAA Batteries (4-pack),2,2.99,12/10/19 15:47,"521 Cherry St, Boston, MA 02215" -310514,20in Monitor,1,109.99,12/19/19 11:14,"938 North St, Seattle, WA 98101" -310515,20in Monitor,1,109.99,12/28/19 15:12,"93 Cedar St, Los Angeles, CA 90001" -310516,Wired Headphones,1,11.99,12/14/19 19:17,"474 Lakeview St, San Francisco, CA 94016" -310517,Flatscreen TV,1,300,12/04/19 11:31,"359 Walnut St, New York City, NY 10001" -310518,27in FHD Monitor,1,149.99,12/08/19 17:01,"890 Johnson St, San Francisco, CA 94016" -310519,Wired Headphones,1,11.99,12/25/19 15:39,"216 Cedar St, San Francisco, CA 94016" -310520,iPhone,1,700,12/09/19 14:01,"760 11th St, Atlanta, GA 30301" -310521,AAA Batteries (4-pack),1,2.99,12/14/19 10:46,"600 Wilson St, San Francisco, CA 94016" -310522,iPhone,1,700,12/08/19 17:16,"120 8th St, New York City, NY 10001" -310523,AAA Batteries (4-pack),1,2.99,12/11/19 11:26,"166 Main St, Austin, TX 73301" -310524,Bose SoundSport Headphones,1,99.99,12/21/19 10:58,"319 8th St, Portland, OR 97035" -310524,Bose SoundSport Headphones,1,99.99,12/21/19 10:58,"319 8th St, Portland, OR 97035" -310525,Lightning Charging Cable,1,14.95,12/24/19 19:51,"980 Maple St, Los Angeles, CA 90001" -310526,Lightning Charging Cable,1,14.95,12/05/19 13:04,"243 Hill St, Dallas, TX 75001" -310527,USB-C Charging Cable,1,11.95,12/06/19 19:57,"503 Jackson St, Atlanta, GA 30301" -310528,USB-C Charging Cable,1,11.95,12/23/19 18:59,"779 9th St, Seattle, WA 98101" -310529,20in Monitor,1,109.99,12/28/19 15:36,"580 7th St, San Francisco, CA 94016" -310530,27in 4K Gaming Monitor,1,389.99,12/27/19 20:36,"716 5th St, Austin, TX 73301" -310531,AAA Batteries (4-pack),3,2.99,12/30/19 09:33,"942 Elm St, Austin, TX 73301" -310532,Apple Airpods Headphones,1,150,12/13/19 14:33,"52 River St, Los Angeles, CA 90001" -310533,Wired Headphones,1,11.99,12/26/19 09:49,"862 River St, Dallas, TX 75001" -310534,ThinkPad Laptop,1,999.99,12/16/19 19:23,"258 Main St, New York City, NY 10001" -310535,AA Batteries (4-pack),1,3.84,12/08/19 21:36,"510 Hill St, San Francisco, CA 94016" -310536,Lightning Charging Cable,1,14.95,12/23/19 15:17,"97 Lakeview St, Los Angeles, CA 90001" -310537,iPhone,1,700,12/23/19 17:47,"359 South St, San Francisco, CA 94016" -310537,Lightning Charging Cable,1,14.95,12/23/19 17:47,"359 South St, San Francisco, CA 94016" -310538,AA Batteries (4-pack),1,3.84,12/01/19 18:43,"450 Adams St, Boston, MA 02215" -310539,Wired Headphones,1,11.99,12/15/19 23:12,"12 6th St, Atlanta, GA 30301" -310540,USB-C Charging Cable,1,11.95,12/02/19 13:38,"107 8th St, Seattle, WA 98101" -310541,Lightning Charging Cable,1,14.95,12/25/19 15:12,"122 Highland St, Los Angeles, CA 90001" -310542,34in Ultrawide Monitor,1,379.99,12/01/19 11:28,"195 9th St, New York City, NY 10001" -310543,AA Batteries (4-pack),2,3.84,12/05/19 19:09,"109 Main St, Atlanta, GA 30301" -310544,Apple Airpods Headphones,1,150,12/25/19 08:47,"595 Sunset St, Austin, TX 73301" -310545,34in Ultrawide Monitor,1,379.99,12/25/19 09:01,"937 Forest St, New York City, NY 10001" -310546,34in Ultrawide Monitor,1,379.99,12/13/19 21:00,"731 8th St, Los Angeles, CA 90001" -310547,AAA Batteries (4-pack),1,2.99,12/20/19 08:37,"792 Main St, Boston, MA 02215" -310548,AA Batteries (4-pack),1,3.84,12/31/19 13:38,"484 7th St, San Francisco, CA 94016" -310549,Macbook Pro Laptop,1,1700,12/24/19 18:10,"321 Cherry St, Los Angeles, CA 90001" -310550,27in 4K Gaming Monitor,1,389.99,12/13/19 20:14,"208 9th St, Atlanta, GA 30301" -310551,USB-C Charging Cable,2,11.95,12/02/19 11:27,"101 Highland St, San Francisco, CA 94016" -310552,AAA Batteries (4-pack),1,2.99,12/29/19 19:44,"320 13th St, Austin, TX 73301" -310553,Lightning Charging Cable,1,14.95,12/21/19 18:37,"742 Church St, Boston, MA 02215" -310554,USB-C Charging Cable,1,11.95,12/13/19 13:15,"411 Jefferson St, San Francisco, CA 94016" -310555,Apple Airpods Headphones,1,150,12/31/19 11:52,"398 13th St, Seattle, WA 98101" -310556,USB-C Charging Cable,1,11.95,12/18/19 11:52,"953 Washington St, San Francisco, CA 94016" -310557,Lightning Charging Cable,1,14.95,12/31/19 19:31,"655 Lakeview St, Portland, OR 97035" -310558,ThinkPad Laptop,1,999.99,12/18/19 12:42,"490 Forest St, Atlanta, GA 30301" -310559,Lightning Charging Cable,1,14.95,12/10/19 17:42,"427 West St, Atlanta, GA 30301" -310560,AAA Batteries (4-pack),1,2.99,12/25/19 16:54,"954 2nd St, New York City, NY 10001" -310561,AA Batteries (4-pack),1,3.84,12/02/19 14:16,"525 North St, Los Angeles, CA 90001" -310562,Wired Headphones,1,11.99,12/17/19 15:50,"982 Church St, Boston, MA 02215" -310563,Bose SoundSport Headphones,1,99.99,12/17/19 06:17,"675 Forest St, New York City, NY 10001" -310564,AAA Batteries (4-pack),2,2.99,12/05/19 08:44,"56 Cedar St, New York City, NY 10001" -310565,Flatscreen TV,1,300,12/12/19 09:05,"558 Wilson St, San Francisco, CA 94016" -310566,iPhone,1,700,12/23/19 20:21,"987 Washington St, New York City, NY 10001" -310567,Google Phone,1,600,12/08/19 17:21,"613 Maple St, Atlanta, GA 30301" -310568,AA Batteries (4-pack),1,3.84,12/19/19 20:57,"784 Cherry St, Boston, MA 02215" -310569,Lightning Charging Cable,1,14.95,12/31/19 21:45,"74 13th St, New York City, NY 10001" -310570,Lightning Charging Cable,1,14.95,12/26/19 07:32,"974 Forest St, Boston, MA 02215" -310571,USB-C Charging Cable,1,11.95,12/01/19 07:29,"913 West St, San Francisco, CA 94016" -310572,ThinkPad Laptop,1,999.99,12/21/19 15:32,"253 12th St, Boston, MA 02215" -310573,Apple Airpods Headphones,1,150,12/07/19 09:51,"288 South St, New York City, NY 10001" -310574,USB-C Charging Cable,1,11.95,12/21/19 20:54,"736 Dogwood St, Los Angeles, CA 90001" -310575,AA Batteries (4-pack),1,3.84,12/09/19 22:04,"415 Lincoln St, Atlanta, GA 30301" -310576,AAA Batteries (4-pack),1,2.99,12/04/19 12:21,"890 Jefferson St, Los Angeles, CA 90001" -310577,USB-C Charging Cable,1,11.95,12/22/19 16:43,"69 Lake St, Seattle, WA 98101" -310578,Bose SoundSport Headphones,1,99.99,12/05/19 10:37,"860 Jefferson St, Dallas, TX 75001" -310579,Flatscreen TV,1,300,12/03/19 11:45,"597 7th St, Los Angeles, CA 90001" -310580,Bose SoundSport Headphones,1,99.99,12/04/19 13:00,"138 Center St, San Francisco, CA 94016" -310581,Apple Airpods Headphones,1,150,12/07/19 17:10,"764 Meadow St, Los Angeles, CA 90001" -310582,Bose SoundSport Headphones,1,99.99,12/11/19 08:22,"275 Chestnut St, Los Angeles, CA 90001" -310583,Bose SoundSport Headphones,1,99.99,12/18/19 22:51,"891 Forest St, Atlanta, GA 30301" -310584,Lightning Charging Cable,1,14.95,12/28/19 03:21,"989 Lakeview St, New York City, NY 10001" -310585,Bose SoundSport Headphones,1,99.99,12/12/19 10:13,"86 6th St, Dallas, TX 75001" -310586,Lightning Charging Cable,1,14.95,12/09/19 17:08,"424 12th St, Los Angeles, CA 90001" -310587,Apple Airpods Headphones,1,150,12/23/19 19:00,"735 Hill St, San Francisco, CA 94016" -310588,Lightning Charging Cable,1,14.95,12/14/19 11:41,"862 Park St, San Francisco, CA 94016" -310589,USB-C Charging Cable,1,11.95,12/28/19 16:49,"270 Jefferson St, Boston, MA 02215" -310590,USB-C Charging Cable,1,11.95,12/14/19 11:21,"159 Center St, San Francisco, CA 94016" -310591,USB-C Charging Cable,1,11.95,12/13/19 21:32,"559 Wilson St, Seattle, WA 98101" -310592,AAA Batteries (4-pack),1,2.99,12/10/19 19:38,"839 West St, San Francisco, CA 94016" -310593,Apple Airpods Headphones,1,150,12/23/19 10:44,"408 Lake St, Dallas, TX 75001" -310594,Lightning Charging Cable,1,14.95,12/14/19 12:11,"514 Jackson St, Dallas, TX 75001" -310595,Bose SoundSport Headphones,1,99.99,12/22/19 21:50,"767 9th St, Los Angeles, CA 90001" -310596,USB-C Charging Cable,1,11.95,12/13/19 16:09,"562 Spruce St, San Francisco, CA 94016" -310597,34in Ultrawide Monitor,1,379.99,12/09/19 22:22,"345 Sunset St, Boston, MA 02215" -310598,ThinkPad Laptop,1,999.99,12/30/19 01:18,"419 Jefferson St, New York City, NY 10001" -310599,Apple Airpods Headphones,1,150,12/14/19 21:47,"747 7th St, Los Angeles, CA 90001" -310600,27in 4K Gaming Monitor,1,389.99,12/05/19 13:33,"239 8th St, Austin, TX 73301" -310601,Lightning Charging Cable,2,14.95,12/23/19 00:46,"54 Highland St, San Francisco, CA 94016" -310602,USB-C Charging Cable,1,11.95,12/26/19 15:55,"647 Main St, Atlanta, GA 30301" -310603,Wired Headphones,1,11.99,12/19/19 20:26,"63 Pine St, New York City, NY 10001" -310604,Lightning Charging Cable,1,14.95,12/11/19 20:57,"464 10th St, Boston, MA 02215" -310605,Wired Headphones,1,11.99,12/13/19 10:43,"823 Dogwood St, Boston, MA 02215" -310606,34in Ultrawide Monitor,1,379.99,12/04/19 00:21,"472 Ridge St, Portland, ME 04101" -310607,Wired Headphones,1,11.99,12/14/19 23:32,"382 Elm St, San Francisco, CA 94016" -310608,Macbook Pro Laptop,1,1700,12/20/19 14:21,"197 Lincoln St, San Francisco, CA 94016" -310609,AA Batteries (4-pack),2,3.84,12/30/19 15:49,"957 Johnson St, Los Angeles, CA 90001" -310610,USB-C Charging Cable,1,11.95,12/15/19 19:55,"992 Cherry St, San Francisco, CA 94016" -310611,AA Batteries (4-pack),1,3.84,12/09/19 12:14,"482 Chestnut St, Atlanta, GA 30301" -310612,AA Batteries (4-pack),1,3.84,12/27/19 12:01,"960 Park St, Atlanta, GA 30301" -310612,Apple Airpods Headphones,1,150,12/27/19 12:01,"960 Park St, Atlanta, GA 30301" -310613,AA Batteries (4-pack),3,3.84,12/12/19 09:36,"814 Center St, Los Angeles, CA 90001" -310614,AA Batteries (4-pack),1,3.84,12/08/19 17:38,"335 9th St, New York City, NY 10001" -310615,34in Ultrawide Monitor,1,379.99,12/07/19 20:12,"828 South St, San Francisco, CA 94016" -310616,AA Batteries (4-pack),1,3.84,12/04/19 09:23,"720 Washington St, San Francisco, CA 94016" -310617,Lightning Charging Cable,1,14.95,12/12/19 19:01,"570 Spruce St, Portland, OR 97035" -310618,27in 4K Gaming Monitor,1,389.99,12/01/19 18:27,"520 Lake St, Austin, TX 73301" -310619,Apple Airpods Headphones,1,150,12/08/19 11:39,"506 8th St, Seattle, WA 98101" -310620,Wired Headphones,1,11.99,12/03/19 17:02,"947 5th St, New York City, NY 10001" -310621,Wired Headphones,1,11.99,12/28/19 00:05,"244 Walnut St, San Francisco, CA 94016" -310621,USB-C Charging Cable,1,11.95,12/28/19 00:05,"244 Walnut St, San Francisco, CA 94016" -310622,Bose SoundSport Headphones,1,99.99,12/30/19 21:36,"815 Center St, New York City, NY 10001" -310623,Apple Airpods Headphones,1,150,12/30/19 16:27,"736 8th St, San Francisco, CA 94016" -310624,Google Phone,1,600,12/25/19 22:13,"537 Sunset St, Seattle, WA 98101" -310625,iPhone,1,700,12/20/19 10:43,"295 Lake St, Boston, MA 02215" -310626,AA Batteries (4-pack),2,3.84,12/11/19 11:57,"298 4th St, New York City, NY 10001" -310627,AAA Batteries (4-pack),2,2.99,12/17/19 15:53,"4 Sunset St, Boston, MA 02215" -310628,AA Batteries (4-pack),1,3.84,12/15/19 04:32,"652 Church St, New York City, NY 10001" -310629,AAA Batteries (4-pack),1,2.99,12/05/19 10:49,"867 Highland St, Seattle, WA 98101" -310630,Vareebadd Phone,1,400,12/16/19 11:34,"266 Hickory St, Atlanta, GA 30301" -310631,AA Batteries (4-pack),1,3.84,12/13/19 14:49,"333 13th St, Los Angeles, CA 90001" -310632,20in Monitor,1,109.99,12/08/19 13:47,"633 Center St, Seattle, WA 98101" -310633,AAA Batteries (4-pack),1,2.99,12/28/19 21:47,"872 Highland St, Seattle, WA 98101" -310634,34in Ultrawide Monitor,1,379.99,12/20/19 13:42,"669 Chestnut St, Austin, TX 73301" -310635,Lightning Charging Cable,1,14.95,12/20/19 22:05,"943 2nd St, Los Angeles, CA 90001" -310636,ThinkPad Laptop,1,999.99,12/05/19 21:56,"949 Center St, San Francisco, CA 94016" -310637,27in 4K Gaming Monitor,1,389.99,12/28/19 09:36,"248 Main St, San Francisco, CA 94016" -310638,34in Ultrawide Monitor,1,379.99,12/15/19 18:09,"656 14th St, New York City, NY 10001" -310639,AA Batteries (4-pack),1,3.84,12/30/19 20:53,"660 Madison St, New York City, NY 10001" -310640,Apple Airpods Headphones,1,150,12/04/19 14:16,"926 South St, Los Angeles, CA 90001" -310641,Lightning Charging Cable,1,14.95,12/31/19 13:04,"413 Park St, Dallas, TX 75001" -310642,Lightning Charging Cable,1,14.95,12/10/19 12:19,"837 River St, San Francisco, CA 94016" -310643,USB-C Charging Cable,1,11.95,12/12/19 08:41,"129 River St, Seattle, WA 98101" -310644,iPhone,1,700,12/28/19 17:14,"565 North St, New York City, NY 10001" -310645,AA Batteries (4-pack),1,3.84,12/16/19 20:43,"684 Adams St, Los Angeles, CA 90001" -310646,USB-C Charging Cable,1,11.95,12/06/19 23:34,"95 Church St, San Francisco, CA 94016" -310647,AAA Batteries (4-pack),2,2.99,12/26/19 21:11,"736 Cherry St, Los Angeles, CA 90001" -310648,USB-C Charging Cable,1,11.95,12/11/19 12:27,"213 Jefferson St, Boston, MA 02215" -310649,Apple Airpods Headphones,1,150,12/12/19 19:16,"818 North St, New York City, NY 10001" -310650,Flatscreen TV,1,300,12/30/19 13:05,"264 Spruce St, Boston, MA 02215" -310651,27in FHD Monitor,1,149.99,12/14/19 00:25,"969 14th St, San Francisco, CA 94016" -310652,Apple Airpods Headphones,1,150,12/11/19 15:25,"810 14th St, Los Angeles, CA 90001" -310653,AAA Batteries (4-pack),1,2.99,12/31/19 15:29,"531 Willow St, Atlanta, GA 30301" -310654,Flatscreen TV,1,300,12/10/19 10:14,"442 14th St, Los Angeles, CA 90001" -310655,34in Ultrawide Monitor,1,379.99,12/04/19 05:31,"844 Elm St, Austin, TX 73301" -310656,Lightning Charging Cable,1,14.95,12/05/19 16:03,"210 Washington St, Los Angeles, CA 90001" -310657,USB-C Charging Cable,1,11.95,12/21/19 18:16,"671 Main St, San Francisco, CA 94016" -310658,27in FHD Monitor,1,149.99,12/07/19 07:59,"718 Willow St, Los Angeles, CA 90001" -310659,Apple Airpods Headphones,1,150,12/13/19 09:42,"730 Jefferson St, Dallas, TX 75001" -310660,AA Batteries (4-pack),2,3.84,12/31/19 13:45,"770 Madison St, San Francisco, CA 94016" -310661,Apple Airpods Headphones,1,150,12/31/19 15:06,"161 Highland St, Los Angeles, CA 90001" -310662,LG Dryer,1,600.0,12/09/19 13:34,"276 Main St, New York City, NY 10001" -310663,Bose SoundSport Headphones,1,99.99,12/08/19 22:20,"884 Sunset St, Austin, TX 73301" -310664,27in 4K Gaming Monitor,1,389.99,12/13/19 13:33,"175 Johnson St, Los Angeles, CA 90001" -310664,AA Batteries (4-pack),1,3.84,12/13/19 13:33,"175 Johnson St, Los Angeles, CA 90001" -310665,USB-C Charging Cable,1,11.95,12/17/19 17:28,"522 Cedar St, San Francisco, CA 94016" -310666,USB-C Charging Cable,1,11.95,12/03/19 08:40,"677 Pine St, Los Angeles, CA 90001" -310667,Bose SoundSport Headphones,1,99.99,12/30/19 12:44,"7 1st St, Los Angeles, CA 90001" -310668,Macbook Pro Laptop,1,1700,12/19/19 10:30,"844 North St, Seattle, WA 98101" -310669,USB-C Charging Cable,1,11.95,12/31/19 22:45,"846 12th St, Los Angeles, CA 90001" -310670,AA Batteries (4-pack),1,3.84,12/07/19 08:06,"60 Willow St, San Francisco, CA 94016" -310671,USB-C Charging Cable,1,11.95,12/22/19 10:11,"344 11th St, Austin, TX 73301" -310672,Google Phone,1,600,12/22/19 11:30,"185 Jefferson St, Portland, ME 04101" -310673,Apple Airpods Headphones,1,150,12/15/19 08:24,"629 Hickory St, San Francisco, CA 94016" -310674,iPhone,1,700,12/07/19 21:48,"385 12th St, Atlanta, GA 30301" -310675,27in FHD Monitor,1,149.99,12/26/19 16:54,"91 9th St, Boston, MA 02215" -310676,AA Batteries (4-pack),5,3.84,12/26/19 09:47,"867 13th St, Austin, TX 73301" -310677,27in FHD Monitor,1,149.99,12/27/19 21:22,"221 Wilson St, Boston, MA 02215" -310678,Flatscreen TV,1,300,12/06/19 18:27,"688 Sunset St, Boston, MA 02215" -310679,USB-C Charging Cable,1,11.95,12/18/19 07:42,"533 Lincoln St, Dallas, TX 75001" -310680,Bose SoundSport Headphones,1,99.99,12/02/19 21:42,"255 Sunset St, Boston, MA 02215" -310681,AAA Batteries (4-pack),1,2.99,12/21/19 11:45,"272 14th St, Atlanta, GA 30301" -310682,iPhone,1,700,12/16/19 12:14,"290 Meadow St, Atlanta, GA 30301" -310683,AA Batteries (4-pack),1,3.84,12/25/19 21:26,"226 14th St, Portland, ME 04101" -310684,Flatscreen TV,1,300,12/16/19 14:07,"709 14th St, San Francisco, CA 94016" -310685,Lightning Charging Cable,1,14.95,12/18/19 13:27,"546 Ridge St, Dallas, TX 75001" -310686,USB-C Charging Cable,1,11.95,12/03/19 20:34,"494 Highland St, San Francisco, CA 94016" -310687,27in FHD Monitor,1,149.99,12/15/19 11:33,"603 Hill St, San Francisco, CA 94016" -310688,Bose SoundSport Headphones,1,99.99,12/09/19 18:29,"592 Chestnut St, San Francisco, CA 94016" -310689,AAA Batteries (4-pack),4,2.99,12/07/19 22:41,"809 10th St, Dallas, TX 75001" -310690,Google Phone,1,600,12/01/19 13:40,"558 Meadow St, Atlanta, GA 30301" -310691,Lightning Charging Cable,2,14.95,12/17/19 02:21,"656 Center St, San Francisco, CA 94016" -310692,Wired Headphones,1,11.99,12/10/19 20:09,"663 Main St, Atlanta, GA 30301" -310693,Google Phone,1,600,12/05/19 09:05,"586 Lake St, Atlanta, GA 30301" -310694,Vareebadd Phone,1,400,12/06/19 13:08,"696 Meadow St, Seattle, WA 98101" -310694,USB-C Charging Cable,1,11.95,12/06/19 13:08,"696 Meadow St, Seattle, WA 98101" -310695,AAA Batteries (4-pack),1,2.99,12/18/19 09:54,"172 Adams St, Los Angeles, CA 90001" -310696,Wired Headphones,1,11.99,12/05/19 16:35,"215 Walnut St, Atlanta, GA 30301" -310697,27in 4K Gaming Monitor,1,389.99,12/12/19 19:05,"832 Main St, San Francisco, CA 94016" -310698,USB-C Charging Cable,1,11.95,12/27/19 11:47,"568 North St, Seattle, WA 98101" -310699,Wired Headphones,1,11.99,12/24/19 09:13,"380 Church St, Atlanta, GA 30301" -310700,27in 4K Gaming Monitor,1,389.99,12/06/19 12:26,"803 Lincoln St, Los Angeles, CA 90001" -310701,Macbook Pro Laptop,1,1700,12/03/19 17:34,"142 West St, San Francisco, CA 94016" -310702,34in Ultrawide Monitor,1,379.99,12/01/19 19:34,"807 5th St, San Francisco, CA 94016" -310703,AAA Batteries (4-pack),1,2.99,12/18/19 17:02,"628 Spruce St, San Francisco, CA 94016" -310704,Flatscreen TV,1,300,12/26/19 17:48,"499 Cedar St, New York City, NY 10001" -310705,iPhone,1,700,12/18/19 03:41,"909 Hickory St, Los Angeles, CA 90001" -310705,Wired Headphones,1,11.99,12/18/19 03:41,"909 Hickory St, Los Angeles, CA 90001" -310706,Bose SoundSport Headphones,1,99.99,12/06/19 22:49,"289 Jefferson St, Seattle, WA 98101" -310707,27in FHD Monitor,1,149.99,12/20/19 10:50,"405 6th St, Boston, MA 02215" -310708,20in Monitor,1,109.99,12/19/19 12:05,"409 Chestnut St, Boston, MA 02215" -310709,Wired Headphones,1,11.99,12/29/19 17:26,"681 Highland St, Portland, OR 97035" -310710,Lightning Charging Cable,1,14.95,12/05/19 01:04,"544 Lakeview St, Boston, MA 02215" -310711,AA Batteries (4-pack),1,3.84,12/31/19 11:04,"984 Lincoln St, San Francisco, CA 94016" -310712,20in Monitor,1,109.99,12/17/19 20:39,"143 Johnson St, San Francisco, CA 94016" -310713,Apple Airpods Headphones,1,150,12/12/19 18:50,"584 8th St, Atlanta, GA 30301" -310714,34in Ultrawide Monitor,1,379.99,12/01/19 16:55,"638 6th St, San Francisco, CA 94016" -310715,Wired Headphones,1,11.99,12/08/19 15:26,"426 Park St, San Francisco, CA 94016" -310716,20in Monitor,1,109.99,12/18/19 10:57,"260 13th St, Los Angeles, CA 90001" -310717,Bose SoundSport Headphones,1,99.99,12/06/19 09:44,"94 Elm St, Dallas, TX 75001" -310718,Lightning Charging Cable,1,14.95,12/19/19 08:47,"818 6th St, New York City, NY 10001" -310719,Lightning Charging Cable,1,14.95,12/29/19 17:32,"40 Highland St, New York City, NY 10001" -310720,iPhone,1,700,12/26/19 23:31,"947 2nd St, Los Angeles, CA 90001" -310721,AAA Batteries (4-pack),4,2.99,12/10/19 21:03,"149 Main St, New York City, NY 10001" -310722,27in 4K Gaming Monitor,1,389.99,12/27/19 08:14,"477 Madison St, Boston, MA 02215" -310723,AAA Batteries (4-pack),1,2.99,12/23/19 14:22,"297 West St, San Francisco, CA 94016" -310724,34in Ultrawide Monitor,1,379.99,12/23/19 11:16,"674 South St, Atlanta, GA 30301" -310725,Wired Headphones,1,11.99,12/26/19 05:54,"358 Maple St, Los Angeles, CA 90001" -310726,Bose SoundSport Headphones,1,99.99,12/16/19 11:31,"184 Main St, Los Angeles, CA 90001" -310727,27in FHD Monitor,1,149.99,12/15/19 17:12,"492 Jefferson St, Austin, TX 73301" -310728,Lightning Charging Cable,1,14.95,12/23/19 15:53,"626 Cherry St, Boston, MA 02215" -310729,Apple Airpods Headphones,1,150,12/09/19 17:59,"514 Maple St, Dallas, TX 75001" -310730,Vareebadd Phone,1,400,12/24/19 08:35,"660 Walnut St, Portland, OR 97035" -310731,34in Ultrawide Monitor,1,379.99,12/21/19 09:20,"346 7th St, Atlanta, GA 30301" -310732,iPhone,1,700,12/23/19 20:50,"859 Center St, Seattle, WA 98101" -310733,Apple Airpods Headphones,1,150,12/31/19 08:01,"629 Church St, Boston, MA 02215" -310734,27in FHD Monitor,1,149.99,12/20/19 09:47,"52 South St, New York City, NY 10001" -310735,Lightning Charging Cable,1,14.95,12/08/19 18:39,"920 Hill St, Boston, MA 02215" -310736,USB-C Charging Cable,2,11.95,12/21/19 15:00,"93 7th St, Austin, TX 73301" -310737,Lightning Charging Cable,1,14.95,12/13/19 00:12,"526 Church St, San Francisco, CA 94016" -310737,Macbook Pro Laptop,1,1700,12/13/19 00:12,"526 Church St, San Francisco, CA 94016" -310738,Lightning Charging Cable,1,14.95,12/08/19 13:41,"819 5th St, Seattle, WA 98101" -310739,27in 4K Gaming Monitor,1,389.99,12/04/19 11:50,"960 Park St, New York City, NY 10001" -310740,Wired Headphones,1,11.99,12/05/19 03:11,"551 Dogwood St, San Francisco, CA 94016" -310741,Lightning Charging Cable,1,14.95,12/07/19 08:30,"663 Dogwood St, Atlanta, GA 30301" -310742,AA Batteries (4-pack),1,3.84,12/31/19 10:57,"114 Lakeview St, Seattle, WA 98101" -310743,Lightning Charging Cable,1,14.95,12/08/19 07:49,"2 Adams St, Portland, OR 97035" -310744,AA Batteries (4-pack),1,3.84,12/25/19 13:19,"459 Highland St, Portland, OR 97035" -310745,Bose SoundSport Headphones,1,99.99,12/29/19 09:52,"864 Forest St, Los Angeles, CA 90001" -310746,AA Batteries (4-pack),2,3.84,12/31/19 21:42,"860 6th St, Austin, TX 73301" -310747,AAA Batteries (4-pack),1,2.99,12/13/19 13:05,"743 Church St, San Francisco, CA 94016" -310748,Wired Headphones,2,11.99,12/25/19 08:37,"840 Ridge St, Boston, MA 02215" -310749,USB-C Charging Cable,1,11.95,12/06/19 20:34,"689 Cedar St, San Francisco, CA 94016" -310750,AA Batteries (4-pack),2,3.84,12/19/19 11:22,"819 2nd St, Seattle, WA 98101" -310751,Flatscreen TV,1,300,12/12/19 16:33,"440 11th St, San Francisco, CA 94016" -310752,AA Batteries (4-pack),2,3.84,12/09/19 19:19,"492 Walnut St, San Francisco, CA 94016" -310753,Google Phone,1,600,12/20/19 17:55,"27 Ridge St, Austin, TX 73301" -310754,AAA Batteries (4-pack),1,2.99,12/19/19 08:11,"529 1st St, Los Angeles, CA 90001" -310755,AA Batteries (4-pack),1,3.84,12/31/19 08:13,"249 Cedar St, Atlanta, GA 30301" -310756,Apple Airpods Headphones,1,150,12/28/19 01:44,"80 Hill St, Los Angeles, CA 90001" -310757,AAA Batteries (4-pack),1,2.99,12/21/19 20:02,"96 Hill St, San Francisco, CA 94016" -310758,Lightning Charging Cable,1,14.95,12/09/19 16:08,"103 11th St, San Francisco, CA 94016" -310759,Wired Headphones,2,11.99,12/01/19 22:56,"734 Lakeview St, Dallas, TX 75001" -310760,Lightning Charging Cable,1,14.95,12/28/19 15:03,"426 Hickory St, New York City, NY 10001" -310761,AAA Batteries (4-pack),2,2.99,12/22/19 14:40,"810 Maple St, Austin, TX 73301" -310762,USB-C Charging Cable,1,11.95,12/30/19 20:24,"972 Willow St, Boston, MA 02215" -310763,AA Batteries (4-pack),2,3.84,12/09/19 08:18,"870 10th St, Los Angeles, CA 90001" -310764,Apple Airpods Headphones,1,150,12/25/19 22:52,"351 Park St, San Francisco, CA 94016" -310765,AA Batteries (4-pack),3,3.84,12/24/19 20:34,"569 Jackson St, San Francisco, CA 94016" -310766,Apple Airpods Headphones,1,150,12/11/19 07:22,"978 5th St, San Francisco, CA 94016" -310767,Macbook Pro Laptop,1,1700,12/28/19 18:45,"814 14th St, Seattle, WA 98101" -310768,Macbook Pro Laptop,1,1700,12/07/19 08:24,"148 Park St, Atlanta, GA 30301" -310769,Google Phone,1,600,12/02/19 12:20,"346 11th St, San Francisco, CA 94016" -310769,USB-C Charging Cable,1,11.95,12/02/19 12:20,"346 11th St, San Francisco, CA 94016" -310770,Lightning Charging Cable,1,14.95,12/02/19 22:35,"149 Forest St, San Francisco, CA 94016" -310771,27in 4K Gaming Monitor,1,389.99,12/19/19 17:56,"537 Elm St, Dallas, TX 75001" -310772,AAA Batteries (4-pack),2,2.99,12/11/19 12:57,"964 Ridge St, New York City, NY 10001" -310773,iPhone,1,700,12/05/19 11:16,"415 Johnson St, Boston, MA 02215" -310773,Wired Headphones,1,11.99,12/05/19 11:16,"415 Johnson St, Boston, MA 02215" -310774,Flatscreen TV,1,300,12/13/19 17:11,"701 9th St, Dallas, TX 75001" -310775,USB-C Charging Cable,1,11.95,12/08/19 14:41,"948 Wilson St, Los Angeles, CA 90001" -310776,ThinkPad Laptop,1,999.99,12/26/19 09:09,"445 Elm St, San Francisco, CA 94016" -310777,USB-C Charging Cable,1,11.95,12/17/19 08:20,"350 Washington St, San Francisco, CA 94016" -310778,AA Batteries (4-pack),1,3.84,12/25/19 07:36,"131 Washington St, Austin, TX 73301" -310779,USB-C Charging Cable,2,11.95,12/07/19 22:08,"918 11th St, San Francisco, CA 94016" -310780,Lightning Charging Cable,1,14.95,12/26/19 13:27,"387 Willow St, San Francisco, CA 94016" -310781,Lightning Charging Cable,1,14.95,12/17/19 22:35,"229 Chestnut St, Austin, TX 73301" -310782,Wired Headphones,1,11.99,12/26/19 19:47,"952 Hickory St, Boston, MA 02215" -310783,27in FHD Monitor,1,149.99,12/09/19 13:08,"563 12th St, San Francisco, CA 94016" -310784,USB-C Charging Cable,1,11.95,12/02/19 20:26,"263 Jackson St, New York City, NY 10001" -310785,Wired Headphones,2,11.99,12/31/19 00:57,"41 Lincoln St, Boston, MA 02215" -310786,Apple Airpods Headphones,1,150,12/19/19 14:44,"354 Lincoln St, Atlanta, GA 30301" -310787,Lightning Charging Cable,1,14.95,12/12/19 18:20,"748 West St, Los Angeles, CA 90001" -310788,Google Phone,1,600,12/14/19 17:40,"254 Wilson St, Boston, MA 02215" -310789,Apple Airpods Headphones,1,150,12/14/19 19:07,"416 1st St, San Francisco, CA 94016" -310789,Flatscreen TV,1,300,12/14/19 19:07,"416 1st St, San Francisco, CA 94016" -310790,USB-C Charging Cable,1,11.95,12/10/19 19:19,"837 Wilson St, Los Angeles, CA 90001" -310791,USB-C Charging Cable,1,11.95,12/28/19 17:27,"775 Lakeview St, Austin, TX 73301" -310792,Bose SoundSport Headphones,1,99.99,12/30/19 06:34,"799 Hill St, Dallas, TX 75001" -310793,AA Batteries (4-pack),3,3.84,12/14/19 22:01,"820 Dogwood St, San Francisco, CA 94016" -310794,27in FHD Monitor,1,149.99,12/29/19 01:18,"871 1st St, Boston, MA 02215" -310795,27in 4K Gaming Monitor,1,389.99,12/06/19 14:34,"853 Jackson St, Seattle, WA 98101" -310795,AA Batteries (4-pack),1,3.84,12/06/19 14:34,"853 Jackson St, Seattle, WA 98101" -310796,USB-C Charging Cable,2,11.95,12/25/19 08:22,"486 Highland St, Austin, TX 73301" -310797,Wired Headphones,1,11.99,12/21/19 12:51,"555 Park St, Portland, OR 97035" -310798,AA Batteries (4-pack),2,3.84,12/03/19 19:30,"721 12th St, Los Angeles, CA 90001" -310799,AA Batteries (4-pack),1,3.84,12/21/19 18:05,"261 Willow St, Seattle, WA 98101" -310800,AA Batteries (4-pack),2,3.84,12/28/19 10:23,"839 Elm St, New York City, NY 10001" -310801,20in Monitor,1,109.99,12/22/19 13:05,"163 Adams St, Portland, ME 04101" -310802,Bose SoundSport Headphones,1,99.99,12/23/19 06:27,"994 4th St, Los Angeles, CA 90001" -310803,AAA Batteries (4-pack),1,2.99,12/28/19 16:58,"205 Church St, Los Angeles, CA 90001" -310804,iPhone,1,700,12/23/19 17:51,"177 Spruce St, New York City, NY 10001" -310805,AAA Batteries (4-pack),1,2.99,12/08/19 11:15,"436 8th St, San Francisco, CA 94016" -310806,Google Phone,1,600,12/25/19 01:28,"130 11th St, New York City, NY 10001" -310807,Apple Airpods Headphones,1,150,12/22/19 10:22,"168 Johnson St, Seattle, WA 98101" -310808,27in 4K Gaming Monitor,1,389.99,12/09/19 15:43,"625 Forest St, Boston, MA 02215" -310809,Apple Airpods Headphones,1,150,12/27/19 23:05,"451 Hickory St, Atlanta, GA 30301" -310810,20in Monitor,1,109.99,12/27/19 07:19,"405 North St, Dallas, TX 75001" -310811,Bose SoundSport Headphones,1,99.99,12/26/19 12:47,"513 Dogwood St, New York City, NY 10001" -310812,AA Batteries (4-pack),1,3.84,12/12/19 23:27,"672 North St, Boston, MA 02215" -310813,Bose SoundSport Headphones,1,99.99,12/10/19 11:47,"176 8th St, Portland, OR 97035" -310814,USB-C Charging Cable,1,11.95,12/17/19 13:32,"343 Main St, Los Angeles, CA 90001" -310815,Apple Airpods Headphones,1,150,12/31/19 21:09,"698 13th St, Austin, TX 73301" -310816,27in FHD Monitor,1,149.99,12/21/19 13:21,"595 Lake St, Seattle, WA 98101" -310817,Wired Headphones,1,11.99,12/30/19 19:39,"134 Madison St, Boston, MA 02215" -310818,iPhone,1,700,12/07/19 18:17,"323 North St, San Francisco, CA 94016" -310819,20in Monitor,1,109.99,12/20/19 14:57,"911 Jackson St, Austin, TX 73301" -310820,Bose SoundSport Headphones,1,99.99,12/11/19 14:28,"843 Sunset St, Los Angeles, CA 90001" -310821,Bose SoundSport Headphones,1,99.99,12/19/19 22:56,"93 8th St, Boston, MA 02215" -310822,AA Batteries (4-pack),1,3.84,12/24/19 16:06,"254 Maple St, Los Angeles, CA 90001" -310823,Apple Airpods Headphones,1,150,12/23/19 21:15,"326 11th St, New York City, NY 10001" -310824,iPhone,1,700,12/09/19 20:41,"229 Main St, New York City, NY 10001" -310825,27in FHD Monitor,1,149.99,12/23/19 13:53,"669 11th St, San Francisco, CA 94016" -310826,AAA Batteries (4-pack),1,2.99,12/27/19 19:20,"694 Cherry St, Los Angeles, CA 90001" -310827,AA Batteries (4-pack),1,3.84,12/20/19 13:11,"94 Madison St, Dallas, TX 75001" -310828,Apple Airpods Headphones,1,150,12/22/19 16:52,"365 Jackson St, San Francisco, CA 94016" -310829,Wired Headphones,1,11.99,12/14/19 22:31,"358 South St, Seattle, WA 98101" -310830,Flatscreen TV,1,300,12/27/19 11:17,"61 Wilson St, Atlanta, GA 30301" -310831,34in Ultrawide Monitor,1,379.99,12/18/19 12:33,"571 6th St, Dallas, TX 75001" -310832,USB-C Charging Cable,1,11.95,12/24/19 15:11,"727 Center St, Seattle, WA 98101" -310833,AA Batteries (4-pack),1,3.84,12/18/19 15:47,"968 Hill St, San Francisco, CA 94016" -310834,AA Batteries (4-pack),1,3.84,12/18/19 19:40,"920 10th St, San Francisco, CA 94016" -310835,USB-C Charging Cable,1,11.95,12/29/19 19:10,"276 Cedar St, San Francisco, CA 94016" -310836,AAA Batteries (4-pack),2,2.99,12/11/19 22:16,"458 Jefferson St, Portland, OR 97035" -310837,USB-C Charging Cable,1,11.95,12/30/19 15:13,"890 5th St, Boston, MA 02215" -310838,USB-C Charging Cable,1,11.95,12/14/19 18:06,"492 Dogwood St, Boston, MA 02215" -310839,Bose SoundSport Headphones,1,99.99,12/23/19 16:29,"747 Sunset St, Austin, TX 73301" -310840,27in 4K Gaming Monitor,1,389.99,12/14/19 19:15,"690 11th St, Boston, MA 02215" -310841,AA Batteries (4-pack),3,3.84,12/25/19 23:02,"177 River St, Austin, TX 73301" -310842,USB-C Charging Cable,1,11.95,12/03/19 20:49,"603 Meadow St, Boston, MA 02215" -310843,20in Monitor,1,109.99,12/17/19 15:55,"249 Highland St, San Francisco, CA 94016" -310844,Wired Headphones,1,11.99,12/18/19 00:20,"893 South St, Dallas, TX 75001" -310845,Bose SoundSport Headphones,1,99.99,12/23/19 14:57,"679 Maple St, New York City, NY 10001" -310846,AA Batteries (4-pack),1,3.84,12/09/19 10:20,"771 Adams St, Boston, MA 02215" -310847,Lightning Charging Cable,1,14.95,12/24/19 17:27,"501 Lake St, San Francisco, CA 94016" -310848,AAA Batteries (4-pack),4,2.99,12/01/19 08:48,"447 Washington St, New York City, NY 10001" -310849,Bose SoundSport Headphones,1,99.99,12/22/19 14:16,"683 South St, Los Angeles, CA 90001" -310850,Lightning Charging Cable,1,14.95,12/06/19 13:03,"275 Spruce St, Los Angeles, CA 90001" -310851,Apple Airpods Headphones,1,150,12/09/19 00:07,"518 2nd St, Los Angeles, CA 90001" -310852,USB-C Charging Cable,1,11.95,12/29/19 16:01,"172 Sunset St, New York City, NY 10001" -310853,AAA Batteries (4-pack),1,2.99,12/04/19 16:00,"75 Walnut St, San Francisco, CA 94016" -310854,USB-C Charging Cable,1,11.95,12/10/19 14:12,"510 Forest St, New York City, NY 10001" -310855,Apple Airpods Headphones,1,150,12/04/19 09:39,"799 Dogwood St, Austin, TX 73301" -310856,AAA Batteries (4-pack),1,2.99,12/01/19 23:14,"886 Wilson St, San Francisco, CA 94016" -310857,Vareebadd Phone,1,400,12/28/19 14:28,"206 Maple St, Austin, TX 73301" -310857,USB-C Charging Cable,1,11.95,12/28/19 14:28,"206 Maple St, Austin, TX 73301" -310858,Flatscreen TV,1,300,12/10/19 19:27,"417 Jackson St, Los Angeles, CA 90001" -310859,USB-C Charging Cable,1,11.95,12/05/19 20:43,"972 Ridge St, Dallas, TX 75001" -310860,Macbook Pro Laptop,1,1700,12/09/19 21:14,"482 Sunset St, San Francisco, CA 94016" -310861,Flatscreen TV,1,300,12/31/19 19:07,"169 Highland St, Boston, MA 02215" -310862,AAA Batteries (4-pack),1,2.99,12/06/19 09:47,"596 Dogwood St, Dallas, TX 75001" -310863,Wired Headphones,2,11.99,12/04/19 19:41,"537 Main St, Los Angeles, CA 90001" -310864,Google Phone,1,600,12/24/19 20:29,"666 Chestnut St, San Francisco, CA 94016" -310864,USB-C Charging Cable,2,11.95,12/24/19 20:29,"666 Chestnut St, San Francisco, CA 94016" -310865,AA Batteries (4-pack),1,3.84,12/12/19 21:58,"356 14th St, San Francisco, CA 94016" -310866,Google Phone,1,600,12/23/19 09:37,"639 9th St, Seattle, WA 98101" -310867,AA Batteries (4-pack),1,3.84,12/19/19 08:42,"580 Meadow St, Atlanta, GA 30301" -310868,USB-C Charging Cable,1,11.95,12/25/19 07:39,"317 Elm St, San Francisco, CA 94016" -310869,Lightning Charging Cable,1,14.95,12/05/19 13:45,"513 8th St, Seattle, WA 98101" -310870,Macbook Pro Laptop,1,1700,12/18/19 11:18,"903 Center St, Seattle, WA 98101" -310871,USB-C Charging Cable,1,11.95,12/03/19 17:59,"673 10th St, Los Angeles, CA 90001" -310872,Apple Airpods Headphones,1,150,12/09/19 20:32,"927 12th St, Seattle, WA 98101" -310873,Apple Airpods Headphones,1,150,12/09/19 08:15,"528 14th St, Boston, MA 02215" -310874,Flatscreen TV,1,300,12/04/19 20:46,"879 Highland St, Atlanta, GA 30301" -310875,27in FHD Monitor,1,149.99,12/03/19 21:29,"337 Spruce St, San Francisco, CA 94016" -310876,AAA Batteries (4-pack),1,2.99,12/08/19 09:02,"149 Jefferson St, Portland, OR 97035" -310877,Wired Headphones,2,11.99,12/29/19 19:04,"618 14th St, New York City, NY 10001" -310878,USB-C Charging Cable,2,11.95,12/11/19 12:52,"879 Hickory St, Atlanta, GA 30301" -310879,34in Ultrawide Monitor,1,379.99,12/17/19 11:48,"766 Highland St, Atlanta, GA 30301" -310880,27in 4K Gaming Monitor,1,389.99,12/03/19 17:43,"805 Cherry St, Boston, MA 02215" -310881,Bose SoundSport Headphones,1,99.99,12/21/19 17:27,"892 Hickory St, Los Angeles, CA 90001" -310882,USB-C Charging Cable,1,11.95,12/16/19 17:25,"886 West St, Los Angeles, CA 90001" -310883,Apple Airpods Headphones,1,150,12/22/19 18:34,"54 1st St, New York City, NY 10001" -310884,AAA Batteries (4-pack),2,2.99,12/23/19 11:51,"7 Willow St, New York City, NY 10001" -310885,AA Batteries (4-pack),2,3.84,12/21/19 19:35,"670 Ridge St, Portland, OR 97035" -310886,27in FHD Monitor,1,149.99,12/08/19 00:01,"421 Cherry St, Boston, MA 02215" -310887,27in FHD Monitor,1,149.99,12/12/19 15:40,"572 Jackson St, San Francisco, CA 94016" -310888,ThinkPad Laptop,1,999.99,12/21/19 10:45,"888 4th St, San Francisco, CA 94016" -310889,34in Ultrawide Monitor,1,379.99,12/13/19 09:51,"738 12th St, San Francisco, CA 94016" -310890,AA Batteries (4-pack),1,3.84,12/18/19 20:09,"191 Meadow St, Boston, MA 02215" -310891,USB-C Charging Cable,1,11.95,12/17/19 22:27,"837 10th St, Dallas, TX 75001" -310892,AA Batteries (4-pack),2,3.84,12/14/19 16:32,"592 Park St, San Francisco, CA 94016" -310893,USB-C Charging Cable,1,11.95,12/07/19 07:50,"671 Forest St, San Francisco, CA 94016" -310894,Apple Airpods Headphones,1,150,12/23/19 14:56,"906 River St, Boston, MA 02215" -310895,Apple Airpods Headphones,1,150,12/11/19 16:34,"261 Cedar St, New York City, NY 10001" -310896,Wired Headphones,1,11.99,12/18/19 13:21,"576 West St, Los Angeles, CA 90001" -310897,Bose SoundSport Headphones,1,99.99,12/02/19 00:14,"167 Johnson St, Atlanta, GA 30301" -310898,iPhone,1,700,12/29/19 10:27,"903 Dogwood St, Atlanta, GA 30301" -310898,Wired Headphones,1,11.99,12/29/19 10:27,"903 Dogwood St, Atlanta, GA 30301" -310899,USB-C Charging Cable,1,11.95,12/02/19 19:49,"569 Hill St, San Francisco, CA 94016" -310900,27in FHD Monitor,1,149.99,12/16/19 19:14,"238 Forest St, Boston, MA 02215" -310901,Wired Headphones,1,11.99,12/07/19 14:23,"971 Walnut St, Atlanta, GA 30301" -310902,34in Ultrawide Monitor,1,379.99,12/02/19 10:44,"661 Cedar St, New York City, NY 10001" -310903,AAA Batteries (4-pack),3,2.99,12/08/19 09:21,"448 Hill St, New York City, NY 10001" -310904,27in 4K Gaming Monitor,1,389.99,12/14/19 23:00,"706 10th St, Los Angeles, CA 90001" -310905,AA Batteries (4-pack),1,3.84,12/05/19 11:40,"140 Pine St, Boston, MA 02215" -310906,AAA Batteries (4-pack),1,2.99,12/13/19 14:06,"936 2nd St, Los Angeles, CA 90001" -310907,Lightning Charging Cable,1,14.95,12/29/19 15:42,"502 11th St, Los Angeles, CA 90001" -310908,Apple Airpods Headphones,1,150,12/15/19 20:21,"788 River St, Los Angeles, CA 90001" -310909,Lightning Charging Cable,1,14.95,12/02/19 09:05,"992 Adams St, Boston, MA 02215" -310910,Wired Headphones,1,11.99,12/14/19 08:22,"671 11th St, Los Angeles, CA 90001" -310911,Wired Headphones,1,11.99,12/06/19 14:58,"793 West St, New York City, NY 10001" -310912,Google Phone,1,600,12/02/19 08:40,"268 5th St, San Francisco, CA 94016" -310913,Apple Airpods Headphones,1,150,12/12/19 11:15,"366 Maple St, San Francisco, CA 94016" -310914,20in Monitor,1,109.99,12/06/19 21:58,"247 Maple St, Los Angeles, CA 90001" -310915,USB-C Charging Cable,1,11.95,12/15/19 14:16,"380 Church St, Seattle, WA 98101" -310916,27in 4K Gaming Monitor,1,389.99,12/03/19 12:43,"545 Adams St, Los Angeles, CA 90001" -310917,Lightning Charging Cable,1,14.95,12/13/19 18:28,"887 Elm St, San Francisco, CA 94016" -310918,AAA Batteries (4-pack),1,2.99,12/21/19 14:37,"307 Dogwood St, New York City, NY 10001" -310919,Bose SoundSport Headphones,1,99.99,12/16/19 17:01,"36 Lakeview St, Portland, OR 97035" -310920,Wired Headphones,1,11.99,12/13/19 09:51,"164 Madison St, Seattle, WA 98101" -310921,Bose SoundSport Headphones,1,99.99,12/17/19 17:12,"696 Elm St, Atlanta, GA 30301" -310922,27in 4K Gaming Monitor,1,389.99,12/01/19 19:01,"275 7th St, Austin, TX 73301" -310923,Flatscreen TV,1,300,12/22/19 00:45,"864 14th St, San Francisco, CA 94016" -310924,27in FHD Monitor,1,149.99,12/16/19 18:41,"608 Center St, San Francisco, CA 94016" -310925,Google Phone,1,600,12/22/19 12:57,"646 Pine St, Seattle, WA 98101" -310926,USB-C Charging Cable,1,11.95,12/31/19 21:50,"156 7th St, San Francisco, CA 94016" -310927,Bose SoundSport Headphones,1,99.99,12/03/19 15:17,"349 Johnson St, Los Angeles, CA 90001" -310928,USB-C Charging Cable,1,11.95,12/29/19 19:20,"81 Church St, Seattle, WA 98101" -310929,Bose SoundSport Headphones,1,99.99,12/26/19 11:27,"881 Center St, Seattle, WA 98101" -310930,Lightning Charging Cable,1,14.95,12/03/19 03:35,"725 Jackson St, San Francisco, CA 94016" -310931,AAA Batteries (4-pack),1,2.99,12/02/19 17:16,"311 Church St, Dallas, TX 75001" -310932,AA Batteries (4-pack),1,3.84,12/18/19 16:54,"411 Washington St, Los Angeles, CA 90001" -310933,ThinkPad Laptop,1,999.99,12/09/19 11:28,"843 Highland St, Los Angeles, CA 90001" -310934,27in 4K Gaming Monitor,1,389.99,12/28/19 20:52,"202 Spruce St, Atlanta, GA 30301" -310935,AA Batteries (4-pack),1,3.84,12/19/19 14:03,"92 Main St, Boston, MA 02215" -310936,Apple Airpods Headphones,1,150,12/12/19 09:04,"656 Meadow St, San Francisco, CA 94016" -310937,Bose SoundSport Headphones,1,99.99,12/04/19 04:38,"108 River St, Dallas, TX 75001" -310938,Wired Headphones,1,11.99,12/30/19 18:00,"716 Highland St, New York City, NY 10001" -310939,USB-C Charging Cable,1,11.95,12/19/19 10:15,"664 Walnut St, New York City, NY 10001" -310940,Apple Airpods Headphones,1,150,12/18/19 16:46,"814 Jackson St, New York City, NY 10001" -310941,AAA Batteries (4-pack),2,2.99,12/19/19 16:35,"349 4th St, San Francisco, CA 94016" -310942,AAA Batteries (4-pack),3,2.99,12/01/19 19:39,"188 12th St, Los Angeles, CA 90001" -310943,USB-C Charging Cable,1,11.95,12/21/19 21:03,"311 Hickory St, Seattle, WA 98101" -310944,Lightning Charging Cable,1,14.95,12/17/19 21:07,"500 Hill St, Los Angeles, CA 90001" -310945,Macbook Pro Laptop,1,1700,12/05/19 09:48,"124 Meadow St, Boston, MA 02215" -310946,27in FHD Monitor,1,149.99,12/16/19 17:19,"478 11th St, Los Angeles, CA 90001" -,,,,, -310947,34in Ultrawide Monitor,1,379.99,12/15/19 15:54,"847 Pine St, Los Angeles, CA 90001" -310948,Google Phone,1,600,12/04/19 20:20,"456 Meadow St, San Francisco, CA 94016" -310949,iPhone,1,700,12/24/19 07:02,"127 4th St, Seattle, WA 98101" -310950,20in Monitor,1,109.99,12/27/19 12:43,"308 Walnut St, San Francisco, CA 94016" -310951,Lightning Charging Cable,1,14.95,12/22/19 13:46,"195 Elm St, Boston, MA 02215" -310952,AA Batteries (4-pack),5,3.84,12/20/19 17:36,"427 North St, San Francisco, CA 94016" -310953,Lightning Charging Cable,1,14.95,12/18/19 19:15,"36 12th St, San Francisco, CA 94016" -310954,Bose SoundSport Headphones,1,99.99,12/11/19 07:21,"472 Willow St, San Francisco, CA 94016" -310955,Google Phone,1,600,12/26/19 17:43,"752 14th St, San Francisco, CA 94016" -310956,AA Batteries (4-pack),1,3.84,12/29/19 12:45,"123 Adams St, Boston, MA 02215" -310957,Wired Headphones,1,11.99,12/27/19 23:46,"47 Jackson St, San Francisco, CA 94016" -310958,Macbook Pro Laptop,1,1700,12/18/19 14:40,"644 Johnson St, Seattle, WA 98101" -310958,Apple Airpods Headphones,1,150,12/18/19 14:40,"644 Johnson St, Seattle, WA 98101" -310959,Bose SoundSport Headphones,1,99.99,12/06/19 12:05,"352 River St, San Francisco, CA 94016" -310960,USB-C Charging Cable,1,11.95,12/23/19 18:43,"393 14th St, San Francisco, CA 94016" -310961,34in Ultrawide Monitor,1,379.99,12/12/19 18:13,"279 Maple St, Boston, MA 02215" -310962,Flatscreen TV,1,300,12/17/19 16:09,"758 Pine St, New York City, NY 10001" -310963,iPhone,1,700,12/25/19 17:23,"960 Adams St, New York City, NY 10001" -310964,Apple Airpods Headphones,1,150,12/05/19 13:10,"858 11th St, Atlanta, GA 30301" -,,,,, -310965,34in Ultrawide Monitor,1,379.99,12/31/19 19:42,"566 Jefferson St, San Francisco, CA 94016" -310966,AAA Batteries (4-pack),1,2.99,12/24/19 14:35,"127 Maple St, Dallas, TX 75001" -310967,Lightning Charging Cable,1,14.95,12/21/19 17:57,"967 North St, New York City, NY 10001" -310968,Macbook Pro Laptop,1,1700,12/12/19 11:14,"556 North St, San Francisco, CA 94016" -310969,AA Batteries (4-pack),2,3.84,12/04/19 10:38,"102 Cedar St, Atlanta, GA 30301" -310970,AAA Batteries (4-pack),1,2.99,12/28/19 17:08,"708 Jackson St, San Francisco, CA 94016" -310971,Apple Airpods Headphones,1,150,12/05/19 22:34,"190 Johnson St, Los Angeles, CA 90001" -310972,AA Batteries (4-pack),1,3.84,12/29/19 12:01,"103 Dogwood St, Dallas, TX 75001" -310973,Macbook Pro Laptop,1,1700,12/18/19 11:30,"209 South St, Seattle, WA 98101" -310974,Vareebadd Phone,1,400,12/31/19 21:58,"72 South St, San Francisco, CA 94016" -310975,USB-C Charging Cable,1,11.95,12/04/19 14:50,"681 Ridge St, San Francisco, CA 94016" -310976,iPhone,1,700,12/19/19 18:07,"266 West St, San Francisco, CA 94016" -310976,Wired Headphones,1,11.99,12/19/19 18:07,"266 West St, San Francisco, CA 94016" -310977,USB-C Charging Cable,1,11.95,12/07/19 13:30,"478 2nd St, Los Angeles, CA 90001" -310978,USB-C Charging Cable,1,11.95,12/29/19 13:23,"376 Pine St, Dallas, TX 75001" -310979,AAA Batteries (4-pack),1,2.99,12/01/19 19:15,"243 Meadow St, San Francisco, CA 94016" -310980,Wired Headphones,1,11.99,12/19/19 18:25,"256 West St, New York City, NY 10001" -310981,Wired Headphones,1,11.99,12/05/19 09:32,"129 Jackson St, Los Angeles, CA 90001" -310982,AA Batteries (4-pack),2,3.84,12/31/19 14:20,"867 Lake St, Dallas, TX 75001" -310983,USB-C Charging Cable,1,11.95,12/20/19 12:37,"472 Johnson St, Atlanta, GA 30301" -310984,27in 4K Gaming Monitor,1,389.99,12/20/19 12:25,"271 Adams St, Dallas, TX 75001" -310985,USB-C Charging Cable,1,11.95,12/17/19 14:25,"164 Hickory St, Austin, TX 73301" -310986,AAA Batteries (4-pack),2,2.99,12/11/19 09:56,"257 11th St, Austin, TX 73301" -310987,20in Monitor,1,109.99,12/24/19 14:47,"204 7th St, Seattle, WA 98101" -310988,AA Batteries (4-pack),1,3.84,12/10/19 12:04,"782 Jackson St, New York City, NY 10001" -310989,Apple Airpods Headphones,1,150,12/30/19 18:31,"130 Willow St, Atlanta, GA 30301" -310990,AA Batteries (4-pack),1,3.84,12/26/19 09:25,"370 Cedar St, Seattle, WA 98101" -310991,Lightning Charging Cable,1,14.95,12/01/19 09:05,"483 Main St, Los Angeles, CA 90001" -310992,Bose SoundSport Headphones,1,99.99,12/20/19 15:27,"819 Hickory St, Boston, MA 02215" -310993,AA Batteries (4-pack),1,3.84,12/04/19 10:38,"797 Jackson St, San Francisco, CA 94016" -310994,27in 4K Gaming Monitor,1,389.99,12/29/19 19:02,"601 Lakeview St, San Francisco, CA 94016" -310995,20in Monitor,1,109.99,12/28/19 17:08,"318 Adams St, San Francisco, CA 94016" -310996,Apple Airpods Headphones,1,150,12/06/19 15:25,"753 Spruce St, Los Angeles, CA 90001" -310997,27in 4K Gaming Monitor,1,389.99,12/11/19 18:59,"132 River St, San Francisco, CA 94016" -310998,AAA Batteries (4-pack),1,2.99,12/22/19 21:49,"120 Washington St, San Francisco, CA 94016" -310998,Wired Headphones,1,11.99,12/22/19 21:49,"120 Washington St, San Francisco, CA 94016" -310999,USB-C Charging Cable,1,11.95,12/02/19 05:44,"313 Highland St, New York City, NY 10001" -311000,Apple Airpods Headphones,1,150,12/17/19 12:54,"263 Adams St, Dallas, TX 75001" -311001,USB-C Charging Cable,1,11.95,12/08/19 11:22,"71 Lake St, New York City, NY 10001" -311002,Wired Headphones,1,11.99,12/17/19 11:39,"205 Lakeview St, Boston, MA 02215" -311003,iPhone,1,700,12/04/19 18:20,"686 1st St, Austin, TX 73301" -311004,Bose SoundSport Headphones,1,99.99,12/28/19 16:17,"427 6th St, New York City, NY 10001" -311005,USB-C Charging Cable,1,11.95,12/16/19 09:33,"89 Jefferson St, Los Angeles, CA 90001" -311006,USB-C Charging Cable,1,11.95,12/06/19 14:52,"259 10th St, Portland, OR 97035" -311007,AA Batteries (4-pack),1,3.84,12/29/19 14:43,"999 13th St, San Francisco, CA 94016" -311008,Lightning Charging Cable,1,14.95,12/12/19 12:57,"70 West St, Seattle, WA 98101" -311009,Wired Headphones,1,11.99,12/04/19 12:50,"353 South St, Los Angeles, CA 90001" -311009,AA Batteries (4-pack),1,3.84,12/04/19 12:50,"353 South St, Los Angeles, CA 90001" -311010,Google Phone,1,600,12/28/19 02:45,"55 5th St, San Francisco, CA 94016" -311011,27in FHD Monitor,1,149.99,12/11/19 14:36,"255 2nd St, Dallas, TX 75001" -311012,AA Batteries (4-pack),2,3.84,12/06/19 13:03,"338 River St, Los Angeles, CA 90001" -311013,Macbook Pro Laptop,1,1700,12/04/19 02:25,"618 Maple St, San Francisco, CA 94016" -311014,Wired Headphones,2,11.99,12/30/19 12:38,"426 Pine St, Atlanta, GA 30301" -311015,iPhone,1,700,12/03/19 10:34,"939 Ridge St, New York City, NY 10001" -311016,Google Phone,1,600,12/31/19 20:09,"736 5th St, Los Angeles, CA 90001" -311017,Bose SoundSport Headphones,1,99.99,12/23/19 11:52,"997 12th St, San Francisco, CA 94016" -311018,USB-C Charging Cable,1,11.95,12/10/19 07:07,"696 4th St, San Francisco, CA 94016" -311019,Wired Headphones,1,11.99,12/03/19 21:10,"148 Jefferson St, Atlanta, GA 30301" -311020,ThinkPad Laptop,1,999.99,12/30/19 10:34,"296 Sunset St, New York City, NY 10001" -311021,27in FHD Monitor,1,149.99,12/06/19 22:56,"680 South St, New York City, NY 10001" -311022,USB-C Charging Cable,1,11.95,12/07/19 16:29,"774 Adams St, San Francisco, CA 94016" -311023,Lightning Charging Cable,1,14.95,12/15/19 11:44,"201 2nd St, New York City, NY 10001" -311024,USB-C Charging Cable,1,11.95,12/20/19 15:55,"880 Cherry St, San Francisco, CA 94016" -311025,Bose SoundSport Headphones,1,99.99,12/21/19 20:11,"749 11th St, Dallas, TX 75001" -311026,Wired Headphones,1,11.99,12/15/19 22:19,"885 10th St, Los Angeles, CA 90001" -311027,Lightning Charging Cable,1,14.95,12/24/19 23:25,"231 Highland St, New York City, NY 10001" -311028,USB-C Charging Cable,1,11.95,12/23/19 18:45,"807 Ridge St, Atlanta, GA 30301" -311029,Apple Airpods Headphones,1,150,12/04/19 12:51,"572 Walnut St, Boston, MA 02215" -311030,iPhone,1,700,12/03/19 13:20,"393 Walnut St, San Francisco, CA 94016" -311031,AAA Batteries (4-pack),1,2.99,12/16/19 22:59,"13 Lake St, Atlanta, GA 30301" -311032,27in FHD Monitor,1,149.99,12/08/19 08:08,"439 Sunset St, New York City, NY 10001" -311033,34in Ultrawide Monitor,1,379.99,12/01/19 14:52,"39 North St, Seattle, WA 98101" -311034,AA Batteries (4-pack),3,3.84,12/10/19 16:20,"765 Meadow St, New York City, NY 10001" -311035,Lightning Charging Cable,1,14.95,12/30/19 16:17,"523 Center St, Los Angeles, CA 90001" -311036,AAA Batteries (4-pack),3,2.99,12/31/19 22:04,"138 Lincoln St, Los Angeles, CA 90001" -311036,Macbook Pro Laptop,1,1700,12/31/19 22:04,"138 Lincoln St, Los Angeles, CA 90001" -311037,USB-C Charging Cable,1,11.95,12/07/19 18:09,"886 Sunset St, Los Angeles, CA 90001" -311038,27in FHD Monitor,1,149.99,12/01/19 17:20,"739 2nd St, Boston, MA 02215" -311039,Apple Airpods Headphones,1,150,12/09/19 16:38,"217 Cherry St, Boston, MA 02215" -311040,Wired Headphones,1,11.99,12/31/19 16:02,"825 Park St, Boston, MA 02215" -311041,AAA Batteries (4-pack),1,2.99,12/19/19 13:29,"127 14th St, New York City, NY 10001" -311042,USB-C Charging Cable,1,11.95,12/20/19 14:17,"942 2nd St, Seattle, WA 98101" -311043,Bose SoundSport Headphones,1,99.99,12/20/19 19:10,"626 Dogwood St, Los Angeles, CA 90001" -311044,Apple Airpods Headphones,1,150,12/19/19 23:10,"587 Highland St, San Francisco, CA 94016" -311045,AAA Batteries (4-pack),1,2.99,12/16/19 16:18,"343 Johnson St, Portland, ME 04101" -311046,Bose SoundSport Headphones,1,99.99,12/20/19 18:26,"126 Madison St, San Francisco, CA 94016" -311047,AA Batteries (4-pack),1,3.84,12/05/19 20:31,"53 Ridge St, Los Angeles, CA 90001" -311048,USB-C Charging Cable,1,11.95,12/14/19 15:48,"477 Lakeview St, New York City, NY 10001" -311049,20in Monitor,1,109.99,12/14/19 22:25,"696 Main St, San Francisco, CA 94016" -311050,AA Batteries (4-pack),1,3.84,12/30/19 22:53,"734 Madison St, New York City, NY 10001" -311051,Wired Headphones,1,11.99,12/24/19 22:54,"128 Elm St, Los Angeles, CA 90001" -311052,20in Monitor,1,109.99,12/16/19 15:33,"578 Lakeview St, Dallas, TX 75001" -311053,Lightning Charging Cable,2,14.95,12/15/19 17:10,"107 Johnson St, Austin, TX 73301" -311054,USB-C Charging Cable,1,11.95,12/25/19 10:13,"586 Willow St, New York City, NY 10001" -311055,Bose SoundSport Headphones,1,99.99,12/08/19 22:33,"561 1st St, Boston, MA 02215" -311056,34in Ultrawide Monitor,1,379.99,12/02/19 11:58,"856 Church St, Atlanta, GA 30301" -311057,Wired Headphones,1,11.99,12/06/19 13:12,"294 Lakeview St, Boston, MA 02215" -311058,Lightning Charging Cable,2,14.95,12/18/19 15:28,"8 Adams St, Los Angeles, CA 90001" -311059,USB-C Charging Cable,1,11.95,12/02/19 17:41,"970 14th St, San Francisco, CA 94016" -311060,AA Batteries (4-pack),2,3.84,12/08/19 19:41,"364 Pine St, San Francisco, CA 94016" -311061,USB-C Charging Cable,1,11.95,12/24/19 18:41,"810 14th St, San Francisco, CA 94016" -311062,Google Phone,1,600,12/16/19 23:46,"383 9th St, Dallas, TX 75001" -311063,USB-C Charging Cable,1,11.95,12/07/19 17:32,"434 Spruce St, Boston, MA 02215" -311064,AA Batteries (4-pack),6,3.84,12/30/19 12:13,"582 River St, San Francisco, CA 94016" -311065,iPhone,1,700,12/06/19 16:08,"268 4th St, New York City, NY 10001" -311066,Apple Airpods Headphones,1,150,12/29/19 13:27,"594 2nd St, Los Angeles, CA 90001" -311067,Bose SoundSport Headphones,1,99.99,12/18/19 21:35,"811 9th St, San Francisco, CA 94016" -311068,27in 4K Gaming Monitor,1,389.99,12/30/19 17:47,"593 Ridge St, Boston, MA 02215" -311069,Bose SoundSport Headphones,1,99.99,12/02/19 15:06,"797 1st St, Dallas, TX 75001" -311070,USB-C Charging Cable,1,11.95,12/25/19 19:48,"875 4th St, New York City, NY 10001" -311071,Macbook Pro Laptop,1,1700,12/08/19 04:26,"287 Spruce St, Atlanta, GA 30301" -311072,USB-C Charging Cable,1,11.95,12/09/19 14:59,"93 Lincoln St, Atlanta, GA 30301" -311073,AAA Batteries (4-pack),1,2.99,12/30/19 16:31,"590 Meadow St, San Francisco, CA 94016" -311074,20in Monitor,1,109.99,12/19/19 16:57,"137 13th St, Los Angeles, CA 90001" -311075,Lightning Charging Cable,1,14.95,12/17/19 18:21,"18 Hickory St, New York City, NY 10001" -311076,27in 4K Gaming Monitor,1,389.99,12/08/19 19:59,"898 14th St, San Francisco, CA 94016" -311077,AA Batteries (4-pack),5,3.84,12/09/19 13:44,"293 Walnut St, Los Angeles, CA 90001" -311078,27in 4K Gaming Monitor,1,389.99,12/10/19 13:24,"169 Ridge St, Dallas, TX 75001" -311079,27in 4K Gaming Monitor,1,389.99,12/04/19 01:55,"156 12th St, Portland, OR 97035" -311080,Flatscreen TV,1,300,12/22/19 22:10,"160 River St, San Francisco, CA 94016" -311081,USB-C Charging Cable,1,11.95,12/18/19 13:39,"881 9th St, Dallas, TX 75001" -311082,Lightning Charging Cable,1,14.95,12/10/19 13:39,"560 Adams St, San Francisco, CA 94016" -311083,Apple Airpods Headphones,1,150,12/05/19 20:35,"890 Hill St, New York City, NY 10001" -311084,Macbook Pro Laptop,1,1700,12/17/19 19:10,"231 Wilson St, Boston, MA 02215" -311085,AAA Batteries (4-pack),1,2.99,12/15/19 19:15,"394 Pine St, San Francisco, CA 94016" -311086,Lightning Charging Cable,2,14.95,12/29/19 12:25,"477 Center St, Atlanta, GA 30301" -311087,20in Monitor,1,109.99,12/14/19 19:51,"77 13th St, Boston, MA 02215" -311088,AAA Batteries (4-pack),1,2.99,12/30/19 09:45,"68 Jackson St, Portland, OR 97035" -311089,Bose SoundSport Headphones,1,99.99,12/11/19 16:55,"844 7th St, Atlanta, GA 30301" -311090,USB-C Charging Cable,1,11.95,12/15/19 13:21,"471 Adams St, Los Angeles, CA 90001" -311091,iPhone,1,700,12/02/19 15:03,"559 West St, San Francisco, CA 94016" -311092,USB-C Charging Cable,1,11.95,12/28/19 20:47,"987 Sunset St, San Francisco, CA 94016" -311093,USB-C Charging Cable,1,11.95,12/03/19 14:23,"620 Sunset St, San Francisco, CA 94016" -311094,Wired Headphones,1,11.99,12/14/19 14:09,"776 12th St, San Francisco, CA 94016" -311095,Wired Headphones,1,11.99,12/06/19 17:54,"688 Cedar St, Boston, MA 02215" -311096,Bose SoundSport Headphones,2,99.99,12/29/19 19:04,"128 Jackson St, Los Angeles, CA 90001" -311097,Macbook Pro Laptop,1,1700,12/31/19 20:05,"766 Main St, San Francisco, CA 94016" -311098,Bose SoundSport Headphones,1,99.99,12/04/19 20:42,"763 South St, San Francisco, CA 94016" -311099,34in Ultrawide Monitor,1,379.99,12/24/19 11:31,"363 11th St, Dallas, TX 75001" -311100,Lightning Charging Cable,1,14.95,12/24/19 15:54,"868 North St, Portland, OR 97035" -311101,Apple Airpods Headphones,1,150,12/29/19 13:07,"92 Cherry St, New York City, NY 10001" -311102,AAA Batteries (4-pack),2,2.99,12/21/19 09:23,"640 Lake St, New York City, NY 10001" -311103,34in Ultrawide Monitor,1,379.99,12/16/19 15:07,"36 Church St, Los Angeles, CA 90001" -311104,Bose SoundSport Headphones,1,99.99,12/31/19 21:52,"361 Washington St, Los Angeles, CA 90001" -311105,Apple Airpods Headphones,1,150,12/24/19 19:34,"787 8th St, New York City, NY 10001" -311106,27in FHD Monitor,1,149.99,12/03/19 20:20,"576 10th St, Boston, MA 02215" -311107,27in FHD Monitor,1,149.99,12/25/19 19:38,"756 Hickory St, Boston, MA 02215" -311108,USB-C Charging Cable,1,11.95,12/16/19 15:03,"219 Dogwood St, San Francisco, CA 94016" -311109,Bose SoundSport Headphones,1,99.99,12/18/19 14:27,"143 Center St, Los Angeles, CA 90001" -311110,Lightning Charging Cable,1,14.95,12/10/19 10:22,"872 13th St, Dallas, TX 75001" -311111,Flatscreen TV,1,300,12/01/19 14:28,"317 West St, San Francisco, CA 94016" -311112,AAA Batteries (4-pack),1,2.99,12/30/19 14:48,"169 5th St, Portland, ME 04101" -311113,Apple Airpods Headphones,1,150,12/09/19 19:29,"734 Lakeview St, Portland, ME 04101" -311114,USB-C Charging Cable,1,11.95,12/21/19 10:38,"405 6th St, San Francisco, CA 94016" -311115,Lightning Charging Cable,1,14.95,12/31/19 23:16,"9 South St, Los Angeles, CA 90001" -311116,Macbook Pro Laptop,1,1700,12/02/19 09:21,"503 Johnson St, San Francisco, CA 94016" -311117,Lightning Charging Cable,1,14.95,12/21/19 14:27,"225 4th St, San Francisco, CA 94016" -311118,27in FHD Monitor,1,149.99,12/01/19 17:40,"183 Church St, Portland, OR 97035" -311119,Lightning Charging Cable,1,14.95,12/23/19 12:44,"658 Hickory St, San Francisco, CA 94016" -311120,Wired Headphones,1,11.99,12/03/19 18:10,"648 Jackson St, Dallas, TX 75001" -311121,Wired Headphones,1,11.99,12/24/19 15:22,"578 Wilson St, Portland, OR 97035" -311122,Apple Airpods Headphones,1,150,12/18/19 15:06,"426 North St, San Francisco, CA 94016" -311123,AA Batteries (4-pack),1,3.84,12/20/19 16:09,"464 Lakeview St, San Francisco, CA 94016" -311124,ThinkPad Laptop,1,999.99,12/23/19 09:03,"17 Ridge St, Boston, MA 02215" -311125,Apple Airpods Headphones,1,150,12/24/19 13:24,"261 13th St, San Francisco, CA 94016" -311126,34in Ultrawide Monitor,1,379.99,12/16/19 16:58,"374 Jackson St, San Francisco, CA 94016" -311127,27in 4K Gaming Monitor,1,389.99,12/15/19 21:14,"291 Willow St, Boston, MA 02215" -311128,27in FHD Monitor,1,149.99,12/06/19 16:36,"329 Hill St, Dallas, TX 75001" -311129,USB-C Charging Cable,1,11.95,12/23/19 13:24,"836 Center St, Los Angeles, CA 90001" -311130,Bose SoundSport Headphones,1,99.99,12/02/19 16:56,"972 Willow St, Dallas, TX 75001" -311131,USB-C Charging Cable,1,11.95,12/11/19 22:59,"661 Meadow St, Austin, TX 73301" -311132,AA Batteries (4-pack),1,3.84,12/17/19 20:47,"652 Jackson St, Los Angeles, CA 90001" -311133,Lightning Charging Cable,2,14.95,12/31/19 06:16,"195 7th St, New York City, NY 10001" -311134,AAA Batteries (4-pack),1,2.99,12/15/19 19:44,"812 2nd St, Portland, OR 97035" -311135,27in FHD Monitor,1,149.99,12/09/19 17:49,"343 Ridge St, San Francisco, CA 94016" -311136,Wired Headphones,1,11.99,12/21/19 15:31,"404 4th St, San Francisco, CA 94016" -311137,Wired Headphones,1,11.99,12/12/19 11:43,"991 7th St, Boston, MA 02215" -311138,Macbook Pro Laptop,1,1700,12/24/19 15:42,"77 Pine St, San Francisco, CA 94016" -311139,20in Monitor,1,109.99,12/31/19 19:40,"349 Church St, Austin, TX 73301" -311140,Macbook Pro Laptop,1,1700,12/22/19 17:12,"177 12th St, Boston, MA 02215" -311141,27in 4K Gaming Monitor,1,389.99,12/06/19 11:07,"645 9th St, Boston, MA 02215" -311142,27in FHD Monitor,1,149.99,12/17/19 10:58,"63 Lakeview St, New York City, NY 10001" -311143,USB-C Charging Cable,1,11.95,12/12/19 18:46,"691 Wilson St, San Francisco, CA 94016" -311144,AA Batteries (4-pack),1,3.84,12/28/19 10:31,"422 Cherry St, San Francisco, CA 94016" -311145,AAA Batteries (4-pack),1,2.99,12/11/19 10:00,"276 River St, San Francisco, CA 94016" -311146,20in Monitor,1,109.99,12/14/19 11:36,"997 Sunset St, New York City, NY 10001" -311147,USB-C Charging Cable,2,11.95,12/08/19 08:55,"343 2nd St, Boston, MA 02215" -311148,USB-C Charging Cable,1,11.95,12/04/19 13:01,"917 Center St, Dallas, TX 75001" -311149,iPhone,1,700,12/10/19 18:41,"15 Madison St, New York City, NY 10001" -311150,Lightning Charging Cable,1,14.95,12/26/19 14:54,"951 Maple St, San Francisco, CA 94016" -311151,34in Ultrawide Monitor,1,379.99,12/07/19 08:13,"448 South St, Austin, TX 73301" -311152,AA Batteries (4-pack),1,3.84,12/12/19 12:25,"222 14th St, San Francisco, CA 94016" -311153,iPhone,1,700,12/27/19 18:28,"184 West St, Los Angeles, CA 90001" -311154,USB-C Charging Cable,1,11.95,12/25/19 21:29,"273 14th St, Austin, TX 73301" -311155,Bose SoundSport Headphones,1,99.99,12/24/19 06:57,"59 12th St, Dallas, TX 75001" -311156,Bose SoundSport Headphones,1,99.99,12/11/19 19:09,"91 Adams St, San Francisco, CA 94016" -311157,Bose SoundSport Headphones,1,99.99,12/07/19 00:29,"218 Willow St, Boston, MA 02215" -311158,AAA Batteries (4-pack),1,2.99,12/14/19 12:06,"305 Adams St, Boston, MA 02215" -311159,AAA Batteries (4-pack),1,2.99,12/29/19 08:19,"948 Maple St, New York City, NY 10001" -311160,USB-C Charging Cable,2,11.95,12/12/19 23:47,"332 Walnut St, Austin, TX 73301" -311161,AAA Batteries (4-pack),2,2.99,12/31/19 11:40,"546 Ridge St, San Francisco, CA 94016" -311162,USB-C Charging Cable,1,11.95,12/08/19 12:01,"363 1st St, San Francisco, CA 94016" -311163,iPhone,1,700,12/18/19 11:30,"759 7th St, Boston, MA 02215" -311164,Apple Airpods Headphones,1,150,12/29/19 11:54,"804 Willow St, San Francisco, CA 94016" -311165,Lightning Charging Cable,1,14.95,12/09/19 16:22,"614 Lincoln St, Austin, TX 73301" -311166,Bose SoundSport Headphones,1,99.99,12/05/19 19:36,"837 6th St, Los Angeles, CA 90001" -311167,Bose SoundSport Headphones,1,99.99,12/28/19 21:54,"546 Lake St, New York City, NY 10001" -311168,Google Phone,1,600,12/06/19 14:55,"251 Cedar St, Austin, TX 73301" -311169,USB-C Charging Cable,1,11.95,12/05/19 07:14,"178 Dogwood St, Los Angeles, CA 90001" -311170,AA Batteries (4-pack),1,3.84,12/10/19 21:27,"810 4th St, San Francisco, CA 94016" -311171,Bose SoundSport Headphones,1,99.99,12/02/19 13:18,"56 Washington St, Los Angeles, CA 90001" -311172,AA Batteries (4-pack),1,3.84,12/07/19 00:06,"988 Hickory St, Los Angeles, CA 90001" -311173,AA Batteries (4-pack),1,3.84,12/29/19 19:27,"547 Sunset St, San Francisco, CA 94016" -311174,Vareebadd Phone,1,400,12/26/19 18:36,"448 Main St, Austin, TX 73301" -311175,Google Phone,1,600,12/25/19 22:30,"247 Dogwood St, Atlanta, GA 30301" -311176,AAA Batteries (4-pack),1,2.99,12/05/19 20:14,"837 Washington St, Atlanta, GA 30301" -311177,Bose SoundSport Headphones,1,99.99,12/27/19 22:00,"753 Hill St, Boston, MA 02215" -311178,Lightning Charging Cable,1,14.95,12/16/19 19:05,"496 Dogwood St, Portland, OR 97035" -311179,Macbook Pro Laptop,1,1700,12/10/19 09:28,"511 6th St, New York City, NY 10001" -311180,Bose SoundSport Headphones,1,99.99,12/30/19 12:40,"425 South St, Los Angeles, CA 90001" -311181,ThinkPad Laptop,1,999.99,12/15/19 10:04,"832 Lincoln St, New York City, NY 10001" -311182,20in Monitor,1,109.99,12/20/19 21:42,"98 Lake St, Portland, OR 97035" -311183,AAA Batteries (4-pack),1,2.99,12/16/19 13:14,"316 11th St, San Francisco, CA 94016" -311184,Wired Headphones,1,11.99,12/24/19 06:52,"570 Dogwood St, San Francisco, CA 94016" -311185,AAA Batteries (4-pack),1,2.99,12/03/19 10:34,"230 River St, New York City, NY 10001" -311186,USB-C Charging Cable,1,11.95,12/15/19 18:40,"839 Chestnut St, Atlanta, GA 30301" -311187,Bose SoundSport Headphones,1,99.99,12/10/19 11:04,"811 10th St, Portland, ME 04101" -311188,Google Phone,1,600,12/27/19 17:27,"184 Cedar St, San Francisco, CA 94016" -311188,USB-C Charging Cable,1,11.95,12/27/19 17:27,"184 Cedar St, San Francisco, CA 94016" -311189,Wired Headphones,1,11.99,12/31/19 18:39,"558 South St, San Francisco, CA 94016" -311190,AAA Batteries (4-pack),1,2.99,12/25/19 12:33,"883 Dogwood St, New York City, NY 10001" -311191,AAA Batteries (4-pack),2,2.99,12/14/19 11:53,"629 13th St, San Francisco, CA 94016" -311192,USB-C Charging Cable,1,11.95,12/09/19 19:50,"200 4th St, Los Angeles, CA 90001" -311193,USB-C Charging Cable,1,11.95,12/15/19 14:48,"410 11th St, Dallas, TX 75001" -311194,Vareebadd Phone,1,400,12/09/19 18:49,"462 14th St, Seattle, WA 98101" -311194,ThinkPad Laptop,1,999.99,12/09/19 18:49,"462 14th St, Seattle, WA 98101" -311195,34in Ultrawide Monitor,1,379.99,12/20/19 19:58,"877 Johnson St, Austin, TX 73301" -311196,Apple Airpods Headphones,1,150,12/11/19 15:06,"410 Washington St, Seattle, WA 98101" -311197,AAA Batteries (4-pack),1,2.99,12/23/19 15:23,"982 13th St, Los Angeles, CA 90001" -311198,27in 4K Gaming Monitor,1,389.99,12/12/19 19:22,"441 Spruce St, San Francisco, CA 94016" -311199,USB-C Charging Cable,1,11.95,12/17/19 07:42,"793 Lakeview St, San Francisco, CA 94016" -311200,AA Batteries (4-pack),1,3.84,12/04/19 09:47,"131 Adams St, Los Angeles, CA 90001" -311201,Lightning Charging Cable,1,14.95,12/12/19 10:22,"403 North St, San Francisco, CA 94016" -311202,Apple Airpods Headphones,1,150,12/25/19 15:22,"487 Spruce St, Portland, OR 97035" -311203,AA Batteries (4-pack),1,3.84,12/12/19 08:31,"237 Ridge St, Austin, TX 73301" -311204,iPhone,1,700,12/18/19 19:05,"849 West St, San Francisco, CA 94016" -311204,Lightning Charging Cable,1,14.95,12/18/19 19:05,"849 West St, San Francisco, CA 94016" -311205,Bose SoundSport Headphones,1,99.99,12/18/19 14:34,"982 Jackson St, San Francisco, CA 94016" -311206,34in Ultrawide Monitor,1,379.99,12/26/19 14:05,"617 North St, Austin, TX 73301" -311207,ThinkPad Laptop,1,999.99,12/02/19 10:26,"728 Highland St, Los Angeles, CA 90001" -311208,Google Phone,1,600,12/23/19 19:36,"44 Jackson St, Los Angeles, CA 90001" -311209,Flatscreen TV,1,300,12/02/19 20:01,"707 Maple St, Portland, OR 97035" -311210,20in Monitor,1,109.99,12/28/19 09:24,"38 Chestnut St, Boston, MA 02215" -311211,27in FHD Monitor,1,149.99,12/22/19 14:15,"710 River St, New York City, NY 10001" -311212,AA Batteries (4-pack),2,3.84,12/31/19 00:39,"416 13th St, San Francisco, CA 94016" -311213,Macbook Pro Laptop,1,1700,12/09/19 12:57,"982 10th St, New York City, NY 10001" -311214,Bose SoundSport Headphones,1,99.99,12/23/19 21:46,"518 Park St, San Francisco, CA 94016" -311215,Macbook Pro Laptop,1,1700,12/04/19 21:01,"866 Meadow St, Dallas, TX 75001" -311216,Apple Airpods Headphones,1,150,12/09/19 18:57,"588 Jackson St, Seattle, WA 98101" -311217,USB-C Charging Cable,1,11.95,12/28/19 17:32,"791 8th St, New York City, NY 10001" -311218,Flatscreen TV,1,300,12/02/19 16:02,"376 14th St, Los Angeles, CA 90001" -311219,34in Ultrawide Monitor,1,379.99,12/11/19 12:25,"570 Lincoln St, Austin, TX 73301" -311220,Lightning Charging Cable,1,14.95,12/17/19 18:30,"70 Highland St, Dallas, TX 75001" -311221,AAA Batteries (4-pack),1,2.99,12/19/19 11:54,"983 Lake St, Boston, MA 02215" -311222,AA Batteries (4-pack),1,3.84,12/15/19 21:17,"680 Cherry St, Boston, MA 02215" -311223,Apple Airpods Headphones,1,150,12/14/19 12:39,"83 Washington St, Boston, MA 02215" -311224,Bose SoundSport Headphones,1,99.99,12/29/19 00:12,"844 Johnson St, Boston, MA 02215" -311225,iPhone,1,700,12/27/19 14:43,"166 13th St, Boston, MA 02215" -311226,Lightning Charging Cable,1,14.95,12/30/19 20:21,"699 Lake St, Dallas, TX 75001" -311227,USB-C Charging Cable,1,11.95,12/01/19 18:39,"656 Jackson St, San Francisco, CA 94016" -311228,Bose SoundSport Headphones,1,99.99,12/13/19 22:06,"388 Lake St, Los Angeles, CA 90001" -311229,34in Ultrawide Monitor,1,379.99,12/15/19 08:46,"356 5th St, San Francisco, CA 94016" -311230,Macbook Pro Laptop,1,1700,12/06/19 08:21,"818 Center St, Los Angeles, CA 90001" -311231,20in Monitor,1,109.99,12/11/19 12:32,"649 14th St, New York City, NY 10001" -311232,Lightning Charging Cable,1,14.95,12/14/19 20:26,"656 North St, Boston, MA 02215" -311233,Google Phone,1,600,12/26/19 18:40,"311 Meadow St, Boston, MA 02215" -311234,USB-C Charging Cable,2,11.95,12/17/19 12:24,"71 West St, Atlanta, GA 30301" -311235,Apple Airpods Headphones,1,150,12/11/19 13:56,"319 Elm St, San Francisco, CA 94016" -311236,Wired Headphones,1,11.99,12/04/19 04:55,"834 Hill St, San Francisco, CA 94016" -311237,AA Batteries (4-pack),1,3.84,12/22/19 15:35,"968 Spruce St, Los Angeles, CA 90001" -311238,AA Batteries (4-pack),3,3.84,12/03/19 23:58,"902 Walnut St, San Francisco, CA 94016" -311239,34in Ultrawide Monitor,1,379.99,12/28/19 08:11,"741 Church St, Los Angeles, CA 90001" -311240,Wired Headphones,1,11.99,12/07/19 00:28,"192 Highland St, San Francisco, CA 94016" -311241,iPhone,1,700,12/18/19 16:20,"718 8th St, Austin, TX 73301" -311242,Wired Headphones,1,11.99,12/12/19 15:24,"922 10th St, San Francisco, CA 94016" -311243,USB-C Charging Cable,1,11.95,12/05/19 16:14,"998 West St, New York City, NY 10001" -311244,Bose SoundSport Headphones,1,99.99,12/02/19 00:40,"291 Pine St, Boston, MA 02215" -311245,27in FHD Monitor,2,149.99,12/03/19 20:11,"558 4th St, Los Angeles, CA 90001" -311246,Lightning Charging Cable,1,14.95,12/17/19 11:01,"64 5th St, Dallas, TX 75001" -311247,27in 4K Gaming Monitor,1,389.99,12/22/19 19:12,"18 5th St, New York City, NY 10001" -311248,AAA Batteries (4-pack),1,2.99,12/18/19 16:31,"462 North St, Los Angeles, CA 90001" -311249,Macbook Pro Laptop,1,1700,12/16/19 09:20,"927 Willow St, New York City, NY 10001" -311250,USB-C Charging Cable,1,11.95,12/09/19 20:06,"409 Washington St, Dallas, TX 75001" -311250,27in FHD Monitor,1,149.99,12/09/19 20:06,"409 Washington St, Dallas, TX 75001" -311251,ThinkPad Laptop,1,999.99,12/30/19 11:51,"59 Meadow St, Dallas, TX 75001" -311252,Macbook Pro Laptop,1,1700,12/11/19 20:14,"622 North St, San Francisco, CA 94016" -311253,USB-C Charging Cable,2,11.95,12/18/19 14:36,"314 Ridge St, Portland, OR 97035" -311254,34in Ultrawide Monitor,1,379.99,12/25/19 17:19,"809 11th St, Boston, MA 02215" -311255,34in Ultrawide Monitor,1,379.99,12/22/19 17:18,"120 Lakeview St, Seattle, WA 98101" -311256,AAA Batteries (4-pack),1,2.99,12/15/19 15:11,"856 Elm St, Portland, OR 97035" -311257,AAA Batteries (4-pack),6,2.99,12/18/19 11:32,"32 Jefferson St, San Francisco, CA 94016" -311258,Google Phone,1,600,12/24/19 18:54,"872 Walnut St, San Francisco, CA 94016" -311259,AAA Batteries (4-pack),1,2.99,12/11/19 18:53,"485 11th St, Seattle, WA 98101" -311260,Apple Airpods Headphones,1,150,12/11/19 21:02,"21 Lake St, Los Angeles, CA 90001" -311261,20in Monitor,1,109.99,12/16/19 15:29,"612 Spruce St, Atlanta, GA 30301" -311262,34in Ultrawide Monitor,1,379.99,12/07/19 17:08,"936 Wilson St, Austin, TX 73301" -311263,USB-C Charging Cable,2,11.95,12/03/19 13:16,"808 Johnson St, San Francisco, CA 94016" -311264,34in Ultrawide Monitor,1,379.99,12/26/19 13:50,"436 Chestnut St, New York City, NY 10001" -311265,AA Batteries (4-pack),2,3.84,12/08/19 03:30,"547 Main St, Atlanta, GA 30301" -311266,LG Dryer,1,600.0,12/20/19 00:24,"958 Sunset St, San Francisco, CA 94016" -311267,USB-C Charging Cable,1,11.95,12/30/19 23:22,"84 Adams St, San Francisco, CA 94016" -311268,AA Batteries (4-pack),1,3.84,12/07/19 03:14,"929 Sunset St, Portland, ME 04101" -311269,Lightning Charging Cable,1,14.95,12/30/19 18:03,"585 Walnut St, San Francisco, CA 94016" -311270,Wired Headphones,1,11.99,12/21/19 17:04,"889 10th St, Seattle, WA 98101" -311271,20in Monitor,1,109.99,12/14/19 22:51,"77 West St, San Francisco, CA 94016" -311272,Lightning Charging Cable,1,14.95,12/23/19 08:36,"361 10th St, Boston, MA 02215" -311273,AAA Batteries (4-pack),1,2.99,12/30/19 23:30,"855 West St, Los Angeles, CA 90001" -311274,27in FHD Monitor,1,149.99,12/21/19 15:32,"693 Jackson St, Austin, TX 73301" -311275,USB-C Charging Cable,1,11.95,12/03/19 18:26,"446 Main St, Los Angeles, CA 90001" -311276,Wired Headphones,1,11.99,12/06/19 09:26,"903 Madison St, Los Angeles, CA 90001" -311277,AA Batteries (4-pack),1,3.84,12/13/19 11:20,"706 Forest St, Dallas, TX 75001" -311278,Macbook Pro Laptop,1,1700,12/24/19 13:29,"223 Hickory St, Los Angeles, CA 90001" -311279,AAA Batteries (4-pack),1,2.99,12/03/19 07:01,"48 Ridge St, Los Angeles, CA 90001" -311280,Lightning Charging Cable,1,14.95,12/09/19 15:02,"344 Adams St, Los Angeles, CA 90001" -311281,AAA Batteries (4-pack),2,2.99,12/04/19 20:55,"953 River St, San Francisco, CA 94016" -311282,iPhone,1,700,12/16/19 14:31,"950 Cherry St, Boston, MA 02215" -311283,AAA Batteries (4-pack),5,2.99,12/31/19 00:45,"248 North St, Boston, MA 02215" -311284,Bose SoundSport Headphones,1,99.99,12/16/19 14:27,"844 2nd St, San Francisco, CA 94016" -311285,27in FHD Monitor,1,149.99,12/24/19 09:04,"892 Jackson St, Dallas, TX 75001" -311286,20in Monitor,1,109.99,12/30/19 17:49,"106 Main St, San Francisco, CA 94016" -311287,Bose SoundSport Headphones,1,99.99,12/07/19 22:46,"821 Jefferson St, Atlanta, GA 30301" -311288,Bose SoundSport Headphones,1,99.99,12/01/19 22:27,"645 Chestnut St, San Francisco, CA 94016" -311289,Bose SoundSport Headphones,1,99.99,12/17/19 16:25,"607 13th St, Dallas, TX 75001" -311290,Wired Headphones,1,11.99,12/16/19 17:12,"540 6th St, New York City, NY 10001" -311291,iPhone,1,700,12/13/19 20:57,"550 Lakeview St, Atlanta, GA 30301" -311292,27in 4K Gaming Monitor,1,389.99,12/01/19 15:43,"639 Spruce St, New York City, NY 10001" -311293,Wired Headphones,1,11.99,12/02/19 11:18,"324 River St, Portland, ME 04101" -311294,USB-C Charging Cable,1,11.95,12/09/19 21:08,"754 Forest St, Portland, OR 97035" -311295,AA Batteries (4-pack),1,3.84,12/25/19 09:05,"298 Main St, Los Angeles, CA 90001" -311296,Wired Headphones,1,11.99,12/11/19 19:20,"624 Hill St, Dallas, TX 75001" -311297,AAA Batteries (4-pack),1,2.99,12/08/19 21:35,"361 Forest St, Boston, MA 02215" -311298,Lightning Charging Cable,1,14.95,12/02/19 12:56,"109 Sunset St, Boston, MA 02215" -311298,USB-C Charging Cable,1,11.95,12/02/19 12:56,"109 Sunset St, Boston, MA 02215" -311299,AA Batteries (4-pack),1,3.84,12/03/19 03:39,"421 Hickory St, Seattle, WA 98101" -311300,AA Batteries (4-pack),1,3.84,12/11/19 12:45,"916 Lakeview St, Seattle, WA 98101" -311301,Apple Airpods Headphones,1,150,12/08/19 22:03,"59 Cherry St, San Francisco, CA 94016" -311302,20in Monitor,1,109.99,12/10/19 10:39,"464 Jefferson St, New York City, NY 10001" -311303,Vareebadd Phone,1,400,12/04/19 18:48,"504 Hill St, San Francisco, CA 94016" -311304,AAA Batteries (4-pack),2,2.99,12/11/19 12:09,"881 Lincoln St, San Francisco, CA 94016" -311305,Lightning Charging Cable,1,14.95,12/22/19 23:41,"445 Adams St, Atlanta, GA 30301" -311306,Apple Airpods Headphones,1,150,12/01/19 20:58,"656 Highland St, Portland, OR 97035" -311307,Bose SoundSport Headphones,1,99.99,12/08/19 14:53,"475 12th St, Boston, MA 02215" -311308,Wired Headphones,1,11.99,12/16/19 04:38,"715 Chestnut St, Portland, OR 97035" -311309,USB-C Charging Cable,1,11.95,12/25/19 12:31,"961 Dogwood St, New York City, NY 10001" -311310,27in FHD Monitor,1,149.99,12/16/19 21:47,"471 11th St, San Francisco, CA 94016" -311311,Lightning Charging Cable,1,14.95,12/04/19 15:36,"788 Sunset St, San Francisco, CA 94016" -311312,27in 4K Gaming Monitor,1,389.99,12/24/19 16:41,"963 1st St, Los Angeles, CA 90001" -311313,Bose SoundSport Headphones,1,99.99,12/27/19 12:20,"373 Park St, San Francisco, CA 94016" -311314,USB-C Charging Cable,1,11.95,12/15/19 22:32,"55 Pine St, Los Angeles, CA 90001" -311315,Apple Airpods Headphones,1,150,12/15/19 01:54,"17 Washington St, Portland, OR 97035" -311316,AA Batteries (4-pack),2,3.84,12/19/19 01:29,"132 6th St, New York City, NY 10001" -311317,LG Dryer,1,600.0,12/24/19 22:41,"914 Lakeview St, San Francisco, CA 94016" -311318,AA Batteries (4-pack),2,3.84,12/06/19 11:28,"515 5th St, New York City, NY 10001" -311319,AAA Batteries (4-pack),2,2.99,12/31/19 23:02,"203 Ridge St, Dallas, TX 75001" -311320,Wired Headphones,1,11.99,12/13/19 02:39,"1 Adams St, Dallas, TX 75001" -311321,AA Batteries (4-pack),1,3.84,12/26/19 17:36,"744 Elm St, Austin, TX 73301" -311322,Apple Airpods Headphones,1,150,12/20/19 22:45,"991 Lake St, San Francisco, CA 94016" -311323,USB-C Charging Cable,1,11.95,12/28/19 17:30,"570 South St, New York City, NY 10001" -311324,AAA Batteries (4-pack),1,2.99,12/12/19 11:19,"273 Willow St, Los Angeles, CA 90001" -311325,Vareebadd Phone,1,400,12/10/19 07:33,"52 Center St, Los Angeles, CA 90001" -311325,USB-C Charging Cable,1,11.95,12/10/19 07:33,"52 Center St, Los Angeles, CA 90001" -311326,Lightning Charging Cable,1,14.95,12/14/19 11:05,"843 River St, Atlanta, GA 30301" -311327,AA Batteries (4-pack),2,3.84,12/17/19 21:26,"212 Highland St, San Francisco, CA 94016" -311328,USB-C Charging Cable,1,11.95,12/04/19 13:11,"640 West St, Dallas, TX 75001" -311329,Lightning Charging Cable,1,14.95,12/18/19 21:13,"879 10th St, Los Angeles, CA 90001" -311330,Apple Airpods Headphones,1,150,12/01/19 09:51,"794 Pine St, San Francisco, CA 94016" -311331,Lightning Charging Cable,1,14.95,12/17/19 19:57,"650 North St, New York City, NY 10001" -311332,USB-C Charging Cable,1,11.95,12/20/19 09:17,"415 River St, Dallas, TX 75001" -311333,20in Monitor,1,109.99,12/12/19 22:08,"701 Adams St, Dallas, TX 75001" -311334,AA Batteries (4-pack),1,3.84,12/26/19 18:53,"726 Park St, New York City, NY 10001" -311335,USB-C Charging Cable,2,11.95,12/25/19 02:25,"792 Meadow St, Seattle, WA 98101" -311336,Google Phone,1,600,12/30/19 12:37,"926 Chestnut St, San Francisco, CA 94016" -311337,Bose SoundSport Headphones,1,99.99,12/13/19 18:09,"823 Cedar St, Boston, MA 02215" -311338,AAA Batteries (4-pack),2,2.99,12/17/19 11:25,"65 Elm St, Seattle, WA 98101" -311339,Apple Airpods Headphones,1,150,12/09/19 17:52,"723 Center St, Portland, OR 97035" -311340,27in 4K Gaming Monitor,1,389.99,12/29/19 17:26,"617 Chestnut St, Los Angeles, CA 90001" -311341,ThinkPad Laptop,1,999.99,12/19/19 12:17,"734 Hill St, San Francisco, CA 94016" -311342,Bose SoundSport Headphones,1,99.99,12/17/19 21:30,"953 North St, Seattle, WA 98101" -311343,Bose SoundSport Headphones,1,99.99,12/22/19 13:50,"576 Adams St, Los Angeles, CA 90001" -311344,Lightning Charging Cable,1,14.95,12/02/19 20:36,"277 Chestnut St, Boston, MA 02215" -311345,AA Batteries (4-pack),1,3.84,12/07/19 21:23,"140 Meadow St, New York City, NY 10001" -311346,AA Batteries (4-pack),1,3.84,12/20/19 23:44,"216 Highland St, San Francisco, CA 94016" -311347,AAA Batteries (4-pack),1,2.99,12/09/19 12:32,"655 South St, San Francisco, CA 94016" -311348,Apple Airpods Headphones,1,150,12/28/19 12:45,"552 Sunset St, Los Angeles, CA 90001" -311349,Wired Headphones,1,11.99,12/02/19 19:07,"721 South St, Atlanta, GA 30301" -311350,AAA Batteries (4-pack),3,2.99,12/31/19 13:27,"818 Jefferson St, Boston, MA 02215" -311351,AAA Batteries (4-pack),1,2.99,12/13/19 10:34,"677 Forest St, Atlanta, GA 30301" -311352,Google Phone,1,600,12/23/19 09:43,"82 Sunset St, San Francisco, CA 94016" -311352,Wired Headphones,1,11.99,12/23/19 09:43,"82 Sunset St, San Francisco, CA 94016" -311353,Macbook Pro Laptop,1,1700,12/04/19 19:25,"753 Chestnut St, Boston, MA 02215" -311354,AA Batteries (4-pack),4,3.84,12/17/19 12:42,"448 North St, San Francisco, CA 94016" -311355,AA Batteries (4-pack),1,3.84,12/24/19 21:51,"441 West St, Seattle, WA 98101" -311356,Apple Airpods Headphones,1,150,12/20/19 23:11,"383 8th St, Boston, MA 02215" -311357,Macbook Pro Laptop,1,1700,12/05/19 20:30,"239 Cherry St, Dallas, TX 75001" -311358,USB-C Charging Cable,1,11.95,12/03/19 14:11,"413 Pine St, Los Angeles, CA 90001" -311359,34in Ultrawide Monitor,1,379.99,12/20/19 16:45,"842 Sunset St, Dallas, TX 75001" -311360,20in Monitor,1,109.99,12/01/19 12:00,"771 Jackson St, Boston, MA 02215" -311361,USB-C Charging Cable,1,11.95,12/19/19 14:38,"374 Meadow St, New York City, NY 10001" -311362,27in FHD Monitor,1,149.99,12/23/19 12:21,"931 Hickory St, New York City, NY 10001" -311363,Wired Headphones,1,11.99,12/13/19 12:49,"145 11th St, Austin, TX 73301" -311364,Vareebadd Phone,1,400,12/12/19 12:34,"414 Hickory St, Los Angeles, CA 90001" -311364,Wired Headphones,1,11.99,12/12/19 12:34,"414 Hickory St, Los Angeles, CA 90001" -311365,AAA Batteries (4-pack),1,2.99,12/12/19 14:53,"176 Center St, San Francisco, CA 94016" -311366,iPhone,1,700,12/04/19 07:33,"156 5th St, San Francisco, CA 94016" -311367,27in FHD Monitor,1,149.99,12/01/19 12:35,"542 Cherry St, Los Angeles, CA 90001" -311368,Lightning Charging Cable,1,14.95,12/05/19 20:59,"119 Meadow St, San Francisco, CA 94016" -311369,USB-C Charging Cable,3,11.95,12/25/19 21:28,"696 7th St, Boston, MA 02215" -311370,Bose SoundSport Headphones,1,99.99,12/17/19 13:57,"966 South St, San Francisco, CA 94016" -311371,27in FHD Monitor,1,149.99,12/17/19 22:35,"858 Hill St, Seattle, WA 98101" -311372,AA Batteries (4-pack),1,3.84,12/01/19 12:06,"35 Jackson St, Boston, MA 02215" -311373,Wired Headphones,1,11.99,12/08/19 20:55,"141 4th St, Atlanta, GA 30301" -311374,USB-C Charging Cable,1,11.95,12/16/19 14:24,"265 Elm St, Portland, ME 04101" -311375,USB-C Charging Cable,1,11.95,12/11/19 10:36,"395 Madison St, Los Angeles, CA 90001" -311376,Lightning Charging Cable,1,14.95,12/12/19 14:41,"997 Lincoln St, Los Angeles, CA 90001" -311377,Bose SoundSport Headphones,1,99.99,12/25/19 14:56,"233 Lake St, Boston, MA 02215" -311378,AA Batteries (4-pack),1,3.84,12/26/19 10:43,"435 Washington St, Los Angeles, CA 90001" -311379,iPhone,1,700,12/02/19 19:17,"244 9th St, Austin, TX 73301" -311380,AA Batteries (4-pack),1,3.84,12/28/19 14:53,"124 14th St, Seattle, WA 98101" -311381,AA Batteries (4-pack),1,3.84,12/03/19 04:31,"258 7th St, Boston, MA 02215" -311382,AAA Batteries (4-pack),3,2.99,12/17/19 17:54,"142 South St, San Francisco, CA 94016" -311383,Apple Airpods Headphones,1,150,12/20/19 20:17,"161 Highland St, Atlanta, GA 30301" -311384,27in 4K Gaming Monitor,1,389.99,12/15/19 18:12,"218 Meadow St, Boston, MA 02215" -311385,USB-C Charging Cable,2,11.95,12/12/19 21:42,"538 Main St, Los Angeles, CA 90001" -311386,iPhone,1,700,01/01/20 00:10,"730 Pine St, San Francisco, CA 94016" -311386,Apple Airpods Headphones,1,150,01/01/20 00:10,"730 Pine St, San Francisco, CA 94016" -311387,Lightning Charging Cable,1,14.95,12/21/19 01:19,"804 Lakeview St, Los Angeles, CA 90001" -311388,Wired Headphones,1,11.99,12/05/19 10:02,"610 Pine St, New York City, NY 10001" -311389,Google Phone,1,600,12/29/19 16:20,"66 Chestnut St, Portland, ME 04101" -311390,34in Ultrawide Monitor,1,379.99,12/14/19 18:04,"99 9th St, San Francisco, CA 94016" -311391,USB-C Charging Cable,1,11.95,12/04/19 21:17,"624 South St, Los Angeles, CA 90001" -311392,27in FHD Monitor,1,149.99,12/13/19 16:21,"545 Walnut St, Boston, MA 02215" -311393,AA Batteries (4-pack),1,3.84,12/30/19 18:56,"829 Cherry St, Atlanta, GA 30301" -311394,USB-C Charging Cable,1,11.95,12/23/19 12:00,"939 5th St, Los Angeles, CA 90001" -311395,AA Batteries (4-pack),1,3.84,12/24/19 12:13,"806 Forest St, Los Angeles, CA 90001" -311396,AA Batteries (4-pack),1,3.84,12/01/19 16:44,"204 Washington St, New York City, NY 10001" -311396,Wired Headphones,1,11.99,12/01/19 16:44,"204 Washington St, New York City, NY 10001" -311397,Google Phone,1,600,12/20/19 14:16,"478 Forest St, Seattle, WA 98101" -311397,Wired Headphones,2,11.99,12/20/19 14:16,"478 Forest St, Seattle, WA 98101" -,,,,, -311398,Flatscreen TV,1,300,12/04/19 08:30,"609 Elm St, Seattle, WA 98101" -311398,Apple Airpods Headphones,1,150,12/04/19 08:30,"609 Elm St, Seattle, WA 98101" -311399,AA Batteries (4-pack),1,3.84,12/14/19 09:50,"7 Cherry St, Dallas, TX 75001" -311400,Flatscreen TV,1,300,12/27/19 10:20,"36 9th St, San Francisco, CA 94016" -311401,USB-C Charging Cable,1,11.95,12/10/19 22:00,"930 7th St, Portland, OR 97035" -311402,34in Ultrawide Monitor,1,379.99,12/23/19 14:51,"939 West St, Dallas, TX 75001" -311403,AAA Batteries (4-pack),1,2.99,12/06/19 15:13,"861 Hill St, Los Angeles, CA 90001" -311404,AAA Batteries (4-pack),1,2.99,12/01/19 16:46,"801 Forest St, Atlanta, GA 30301" -311405,34in Ultrawide Monitor,1,379.99,12/07/19 10:18,"290 Dogwood St, Dallas, TX 75001" -311406,Lightning Charging Cable,1,14.95,12/16/19 19:46,"216 Dogwood St, Seattle, WA 98101" -311407,Wired Headphones,1,11.99,12/21/19 00:42,"413 River St, Seattle, WA 98101" -311408,Apple Airpods Headphones,1,150,12/04/19 08:01,"880 Hickory St, Los Angeles, CA 90001" -311409,Lightning Charging Cable,1,14.95,12/24/19 13:01,"649 2nd St, Los Angeles, CA 90001" -311410,Lightning Charging Cable,1,14.95,12/10/19 12:52,"279 Cedar St, Atlanta, GA 30301" -311411,AAA Batteries (4-pack),3,2.99,12/23/19 12:22,"504 Sunset St, New York City, NY 10001" -311412,Vareebadd Phone,1,400,12/15/19 15:34,"895 7th St, New York City, NY 10001" -311412,USB-C Charging Cable,1,11.95,12/15/19 15:34,"895 7th St, New York City, NY 10001" -311413,Bose SoundSport Headphones,1,99.99,12/12/19 22:41,"898 Adams St, San Francisco, CA 94016" -311414,Apple Airpods Headphones,1,150,12/07/19 20:10,"321 2nd St, Boston, MA 02215" -311415,Wired Headphones,1,11.99,12/13/19 00:37,"270 River St, New York City, NY 10001" -311416,27in 4K Gaming Monitor,1,389.99,12/28/19 18:28,"776 South St, New York City, NY 10001" -311417,Lightning Charging Cable,1,14.95,12/16/19 23:53,"136 9th St, Boston, MA 02215" -311418,USB-C Charging Cable,1,11.95,12/16/19 17:38,"796 Maple St, Los Angeles, CA 90001" -311419,USB-C Charging Cable,1,11.95,12/12/19 13:38,"776 9th St, Los Angeles, CA 90001" -311420,ThinkPad Laptop,1,999.99,12/16/19 00:06,"703 13th St, Atlanta, GA 30301" -311421,Wired Headphones,1,11.99,12/06/19 09:59,"54 11th St, San Francisco, CA 94016" -311422,27in 4K Gaming Monitor,1,389.99,12/02/19 10:34,"292 Highland St, Austin, TX 73301" -311423,27in 4K Gaming Monitor,1,389.99,12/19/19 08:03,"817 Hill St, Seattle, WA 98101" -311424,Apple Airpods Headphones,1,150,12/30/19 12:06,"406 7th St, Dallas, TX 75001" -311425,Bose SoundSport Headphones,1,99.99,12/01/19 19:23,"879 Johnson St, San Francisco, CA 94016" -311426,USB-C Charging Cable,1,11.95,12/12/19 12:45,"41 Church St, San Francisco, CA 94016" -311427,iPhone,1,700,12/26/19 22:15,"920 11th St, Los Angeles, CA 90001" -311428,ThinkPad Laptop,1,999.99,12/04/19 15:07,"863 6th St, New York City, NY 10001" -311429,34in Ultrawide Monitor,1,379.99,12/05/19 15:35,"359 Maple St, San Francisco, CA 94016" -311430,Bose SoundSport Headphones,1,99.99,12/19/19 16:15,"927 Walnut St, Atlanta, GA 30301" -311431,ThinkPad Laptop,1,999.99,12/03/19 17:55,"903 Madison St, Los Angeles, CA 90001" -311432,Wired Headphones,1,11.99,12/21/19 13:14,"519 Hickory St, San Francisco, CA 94016" -311433,Lightning Charging Cable,1,14.95,12/08/19 21:10,"431 Lincoln St, Los Angeles, CA 90001" -311434,Bose SoundSport Headphones,1,99.99,12/13/19 10:24,"999 2nd St, Boston, MA 02215" -311435,USB-C Charging Cable,1,11.95,12/06/19 07:43,"978 Madison St, Seattle, WA 98101" -311436,27in FHD Monitor,1,149.99,12/04/19 09:54,"269 Lake St, Seattle, WA 98101" -311437,ThinkPad Laptop,1,999.99,12/05/19 19:42,"386 Walnut St, Atlanta, GA 30301" -311438,AA Batteries (4-pack),2,3.84,12/08/19 13:59,"718 Lake St, Atlanta, GA 30301" -311439,Apple Airpods Headphones,1,150,12/24/19 22:44,"679 Highland St, Boston, MA 02215" -311440,Wired Headphones,1,11.99,12/22/19 12:48,"130 Jackson St, Los Angeles, CA 90001" -311441,AAA Batteries (4-pack),1,2.99,12/25/19 19:18,"499 5th St, Portland, OR 97035" -311442,Bose SoundSport Headphones,1,99.99,12/28/19 22:30,"677 Ridge St, Austin, TX 73301" -311443,Wired Headphones,1,11.99,12/21/19 12:36,"772 5th St, Los Angeles, CA 90001" -311444,Apple Airpods Headphones,1,150,12/02/19 01:49,"679 7th St, San Francisco, CA 94016" -311445,27in 4K Gaming Monitor,1,389.99,12/14/19 06:01,"463 Willow St, Atlanta, GA 30301" -311446,USB-C Charging Cable,1,11.95,12/07/19 06:35,"62 Sunset St, Portland, OR 97035" -311447,AAA Batteries (4-pack),1,2.99,12/28/19 01:29,"783 11th St, Boston, MA 02215" -311448,AAA Batteries (4-pack),1,2.99,12/08/19 11:39,"705 Wilson St, San Francisco, CA 94016" -311449,USB-C Charging Cable,2,11.95,12/26/19 10:44,"763 12th St, Los Angeles, CA 90001" -311450,Lightning Charging Cable,1,14.95,12/13/19 18:15,"285 1st St, Dallas, TX 75001" -311451,Flatscreen TV,1,300,12/18/19 17:28,"955 7th St, San Francisco, CA 94016" -311452,Bose SoundSport Headphones,1,99.99,12/14/19 23:55,"328 Maple St, Los Angeles, CA 90001" -311453,Bose SoundSport Headphones,1,99.99,12/06/19 23:23,"867 Park St, Seattle, WA 98101" -311454,Lightning Charging Cable,1,14.95,12/09/19 23:47,"515 6th St, New York City, NY 10001" -311455,27in FHD Monitor,1,149.99,12/15/19 08:48,"102 Adams St, Dallas, TX 75001" -311456,AA Batteries (4-pack),1,3.84,12/03/19 17:06,"664 11th St, New York City, NY 10001" -311457,USB-C Charging Cable,1,11.95,12/15/19 06:00,"838 North St, Los Angeles, CA 90001" -311458,27in 4K Gaming Monitor,1,389.99,12/15/19 08:58,"238 Walnut St, Boston, MA 02215" -311459,AA Batteries (4-pack),1,3.84,12/17/19 08:46,"570 Madison St, Boston, MA 02215" -311460,AA Batteries (4-pack),3,3.84,12/29/19 19:21,"817 Madison St, Atlanta, GA 30301" -311461,34in Ultrawide Monitor,1,379.99,12/18/19 14:00,"74 Church St, New York City, NY 10001" -311462,Flatscreen TV,1,300,12/06/19 14:12,"185 Park St, Dallas, TX 75001" -311463,AAA Batteries (4-pack),2,2.99,12/14/19 06:35,"939 Washington St, New York City, NY 10001" -311464,Lightning Charging Cable,1,14.95,12/16/19 20:28,"642 Lake St, San Francisco, CA 94016" -311465,Wired Headphones,1,11.99,12/27/19 15:23,"667 10th St, San Francisco, CA 94016" -311466,ThinkPad Laptop,1,999.99,12/01/19 14:20,"126 Chestnut St, San Francisco, CA 94016" -311467,Lightning Charging Cable,1,14.95,12/24/19 17:28,"535 Lake St, Boston, MA 02215" -311468,AAA Batteries (4-pack),4,2.99,12/12/19 11:09,"336 Meadow St, San Francisco, CA 94016" -311469,iPhone,1,700,12/21/19 16:33,"792 6th St, Boston, MA 02215" -311470,USB-C Charging Cable,1,11.95,12/30/19 12:57,"154 Center St, Los Angeles, CA 90001" -311471,USB-C Charging Cable,1,11.95,12/24/19 10:52,"840 Lake St, Austin, TX 73301" -311472,AA Batteries (4-pack),1,3.84,12/30/19 10:07,"279 Spruce St, Dallas, TX 75001" -311473,Wired Headphones,1,11.99,12/25/19 20:10,"698 11th St, San Francisco, CA 94016" -311474,AA Batteries (4-pack),1,3.84,12/30/19 12:43,"521 Cherry St, Los Angeles, CA 90001" -311475,AA Batteries (4-pack),1,3.84,12/29/19 17:18,"212 5th St, Seattle, WA 98101" -311476,AA Batteries (4-pack),2,3.84,12/23/19 14:22,"847 Spruce St, Los Angeles, CA 90001" -311477,27in FHD Monitor,1,149.99,12/09/19 10:45,"617 Jackson St, Portland, OR 97035" -311478,ThinkPad Laptop,1,999.99,12/27/19 20:29,"821 7th St, Los Angeles, CA 90001" -311479,34in Ultrawide Monitor,1,379.99,12/08/19 16:27,"292 Center St, Seattle, WA 98101" -311480,AA Batteries (4-pack),1,3.84,12/28/19 20:44,"948 South St, Los Angeles, CA 90001" -311481,AAA Batteries (4-pack),2,2.99,12/30/19 15:30,"858 South St, San Francisco, CA 94016" -311482,USB-C Charging Cable,1,11.95,12/21/19 20:18,"331 Adams St, Los Angeles, CA 90001" -311483,AAA Batteries (4-pack),1,2.99,12/26/19 13:59,"323 Lake St, New York City, NY 10001" -311484,AAA Batteries (4-pack),1,2.99,12/05/19 15:10,"490 1st St, New York City, NY 10001" -311485,Flatscreen TV,1,300,12/26/19 11:40,"455 North St, San Francisco, CA 94016" -311486,AA Batteries (4-pack),1,3.84,12/03/19 09:42,"372 Lake St, Seattle, WA 98101" -311487,Apple Airpods Headphones,1,150,12/14/19 20:52,"269 Chestnut St, Boston, MA 02215" -311488,AA Batteries (4-pack),2,3.84,12/04/19 23:17,"504 Church St, San Francisco, CA 94016" -311489,USB-C Charging Cable,1,11.95,12/19/19 12:11,"189 West St, Los Angeles, CA 90001" -311490,Apple Airpods Headphones,1,150,12/06/19 17:45,"343 Forest St, Los Angeles, CA 90001" -311491,27in FHD Monitor,1,149.99,12/12/19 19:24,"595 12th St, San Francisco, CA 94016" -311492,20in Monitor,1,109.99,12/02/19 15:52,"363 Madison St, Dallas, TX 75001" -311493,Lightning Charging Cable,1,14.95,12/26/19 20:50,"721 5th St, Los Angeles, CA 90001" -311494,AA Batteries (4-pack),1,3.84,12/20/19 12:14,"985 Wilson St, Los Angeles, CA 90001" -311495,AAA Batteries (4-pack),1,2.99,12/24/19 13:53,"244 Jefferson St, Dallas, TX 75001" -311496,AAA Batteries (4-pack),2,2.99,12/02/19 07:06,"238 Jefferson St, San Francisco, CA 94016" -311497,AAA Batteries (4-pack),2,2.99,12/31/19 23:05,"855 Spruce St, Seattle, WA 98101" -311498,AAA Batteries (4-pack),1,2.99,12/10/19 15:54,"489 River St, San Francisco, CA 94016" -311499,ThinkPad Laptop,1,999.99,12/25/19 00:27,"341 7th St, New York City, NY 10001" -311500,iPhone,1,700,12/10/19 14:09,"910 11th St, Atlanta, GA 30301" -311500,Lightning Charging Cable,1,14.95,12/10/19 14:09,"910 11th St, Atlanta, GA 30301" -311501,AA Batteries (4-pack),1,3.84,12/31/19 14:39,"533 Hill St, San Francisco, CA 94016" -311502,AA Batteries (4-pack),1,3.84,12/07/19 16:24,"473 8th St, San Francisco, CA 94016" -311503,27in 4K Gaming Monitor,1,389.99,12/07/19 10:56,"782 Center St, New York City, NY 10001" -311504,AA Batteries (4-pack),1,3.84,12/22/19 18:35,"74 2nd St, Portland, OR 97035" -311505,Apple Airpods Headphones,1,150,12/05/19 15:27,"700 11th St, Boston, MA 02215" -311506,Lightning Charging Cable,1,14.95,12/16/19 18:52,"243 13th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -311507,Flatscreen TV,1,300,12/25/19 16:35,"17 Dogwood St, San Francisco, CA 94016" -311508,AAA Batteries (4-pack),3,2.99,12/09/19 11:01,"392 Park St, Atlanta, GA 30301" -311509,AA Batteries (4-pack),2,3.84,12/13/19 08:15,"763 North St, Portland, ME 04101" -311510,27in 4K Gaming Monitor,1,389.99,12/15/19 19:36,"951 Cedar St, Boston, MA 02215" -311511,AA Batteries (4-pack),1,3.84,12/15/19 11:00,"795 Meadow St, New York City, NY 10001" -311512,AAA Batteries (4-pack),1,2.99,12/03/19 10:22,"161 10th St, Los Angeles, CA 90001" -311513,USB-C Charging Cable,1,11.95,12/18/19 12:07,"311 Spruce St, Austin, TX 73301" -311514,Apple Airpods Headphones,1,150,12/23/19 10:56,"373 Park St, Los Angeles, CA 90001" -311515,AA Batteries (4-pack),1,3.84,12/16/19 10:20,"233 Jackson St, New York City, NY 10001" -311516,AA Batteries (4-pack),2,3.84,12/01/19 14:33,"99 4th St, Austin, TX 73301" -311517,Wired Headphones,1,11.99,12/12/19 19:53,"540 Wilson St, Boston, MA 02215" -311518,ThinkPad Laptop,1,999.99,12/29/19 14:49,"430 Chestnut St, Dallas, TX 75001" -311519,iPhone,1,700,12/17/19 00:11,"679 Ridge St, Seattle, WA 98101" -311520,iPhone,1,700,12/31/19 22:35,"787 8th St, New York City, NY 10001" -311521,Lightning Charging Cable,1,14.95,12/12/19 17:18,"798 River St, San Francisco, CA 94016" -311522,Apple Airpods Headphones,1,150,12/15/19 20:46,"353 River St, San Francisco, CA 94016" -311523,Apple Airpods Headphones,1,150,12/14/19 17:39,"482 Cherry St, San Francisco, CA 94016" -311524,AA Batteries (4-pack),2,3.84,12/16/19 21:56,"9 Highland St, San Francisco, CA 94016" -311525,Macbook Pro Laptop,1,1700,12/19/19 19:28,"12 Spruce St, San Francisco, CA 94016" -311526,AA Batteries (4-pack),1,3.84,12/20/19 10:50,"402 River St, San Francisco, CA 94016" -311527,ThinkPad Laptop,1,999.99,12/15/19 00:37,"893 Lake St, Austin, TX 73301" -311528,Lightning Charging Cable,2,14.95,12/30/19 12:29,"947 Maple St, San Francisco, CA 94016" -311529,27in 4K Gaming Monitor,1,389.99,12/27/19 14:32,"818 Center St, New York City, NY 10001" -311530,AA Batteries (4-pack),1,3.84,12/04/19 18:22,"127 North St, Los Angeles, CA 90001" -311531,Lightning Charging Cable,1,14.95,12/07/19 16:53,"491 Hickory St, New York City, NY 10001" -311532,AAA Batteries (4-pack),1,2.99,12/31/19 03:30,"124 Madison St, New York City, NY 10001" -311533,AA Batteries (4-pack),3,3.84,12/10/19 07:42,"629 Lincoln St, Atlanta, GA 30301" -311534,Flatscreen TV,1,300,12/20/19 02:47,"379 Jefferson St, San Francisco, CA 94016" -311535,Lightning Charging Cable,1,14.95,12/07/19 13:13,"767 Chestnut St, Los Angeles, CA 90001" -311536,27in 4K Gaming Monitor,1,389.99,12/23/19 10:02,"329 Main St, Dallas, TX 75001" -311537,Wired Headphones,1,11.99,12/14/19 11:27,"446 Main St, Los Angeles, CA 90001" -311538,Apple Airpods Headphones,1,150,12/04/19 10:09,"978 Spruce St, New York City, NY 10001" -311539,Bose SoundSport Headphones,1,99.99,12/16/19 12:09,"186 Maple St, Atlanta, GA 30301" -311540,27in FHD Monitor,1,149.99,12/02/19 13:51,"494 West St, Boston, MA 02215" -311541,Google Phone,1,600,12/04/19 08:12,"96 River St, Austin, TX 73301" -311541,USB-C Charging Cable,1,11.95,12/04/19 08:12,"96 River St, Austin, TX 73301" -311542,27in 4K Gaming Monitor,1,389.99,12/11/19 11:06,"58 Lake St, Seattle, WA 98101" -311543,Flatscreen TV,1,300,12/29/19 11:52,"815 Washington St, New York City, NY 10001" -311544,Google Phone,1,600,12/24/19 20:20,"880 Church St, Atlanta, GA 30301" -311545,AA Batteries (4-pack),1,3.84,12/09/19 12:52,"314 Center St, Boston, MA 02215" -311546,Lightning Charging Cable,1,14.95,12/14/19 12:11,"911 Maple St, Austin, TX 73301" -311547,AA Batteries (4-pack),1,3.84,12/16/19 22:37,"403 7th St, San Francisco, CA 94016" -311548,Wired Headphones,1,11.99,12/20/19 13:33,"187 Washington St, San Francisco, CA 94016" -311549,AA Batteries (4-pack),1,3.84,12/02/19 11:05,"18 14th St, Seattle, WA 98101" -311550,AAA Batteries (4-pack),1,2.99,12/09/19 02:13,"377 South St, San Francisco, CA 94016" -311551,27in FHD Monitor,1,149.99,12/04/19 19:02,"784 North St, Los Angeles, CA 90001" -311552,Lightning Charging Cable,1,14.95,12/03/19 09:04,"736 North St, Atlanta, GA 30301" -311553,Lightning Charging Cable,1,14.95,12/14/19 09:39,"732 Hickory St, Boston, MA 02215" -311554,Apple Airpods Headphones,1,150,12/10/19 20:14,"682 Church St, New York City, NY 10001" -311555,Bose SoundSport Headphones,1,99.99,12/27/19 19:22,"473 Ridge St, Los Angeles, CA 90001" -311556,Wired Headphones,1,11.99,12/20/19 20:00,"99 Jackson St, Dallas, TX 75001" -311557,Apple Airpods Headphones,1,150,12/06/19 14:58,"861 Madison St, Dallas, TX 75001" -311558,Lightning Charging Cable,1,14.95,12/20/19 09:55,"570 Walnut St, San Francisco, CA 94016" -311558,ThinkPad Laptop,1,999.99,12/20/19 09:55,"570 Walnut St, San Francisco, CA 94016" -311559,Lightning Charging Cable,1,14.95,12/08/19 14:32,"399 North St, Los Angeles, CA 90001" -311560,Wired Headphones,1,11.99,12/25/19 16:50,"375 South St, Atlanta, GA 30301" -311561,AA Batteries (4-pack),3,3.84,12/17/19 23:38,"663 2nd St, San Francisco, CA 94016" -311562,Macbook Pro Laptop,1,1700,12/29/19 23:36,"644 Forest St, New York City, NY 10001" -311563,iPhone,1,700,12/09/19 20:16,"798 Jefferson St, Seattle, WA 98101" -311564,AAA Batteries (4-pack),3,2.99,12/14/19 21:36,"800 Dogwood St, San Francisco, CA 94016" -311565,AA Batteries (4-pack),2,3.84,12/02/19 11:06,"374 Ridge St, Portland, OR 97035" -311566,AA Batteries (4-pack),3,3.84,12/26/19 14:23,"648 5th St, Seattle, WA 98101" -311567,Lightning Charging Cable,1,14.95,12/06/19 23:33,"462 Elm St, New York City, NY 10001" -311568,Wired Headphones,1,11.99,12/03/19 11:20,"400 Johnson St, Austin, TX 73301" -311569,USB-C Charging Cable,1,11.95,12/27/19 11:56,"311 Lincoln St, Boston, MA 02215" -311570,Flatscreen TV,1,300,12/05/19 18:30,"766 Center St, New York City, NY 10001" -311571,USB-C Charging Cable,2,11.95,12/13/19 21:00,"757 Sunset St, San Francisco, CA 94016" -311572,Macbook Pro Laptop,1,1700,12/18/19 22:00,"905 Pine St, Portland, OR 97035" -311573,Macbook Pro Laptop,1,1700,12/15/19 19:02,"54 Cedar St, San Francisco, CA 94016" -311574,Google Phone,1,600,12/16/19 20:27,"47 Highland St, Seattle, WA 98101" -311575,Bose SoundSport Headphones,1,99.99,12/07/19 12:26,"301 2nd St, San Francisco, CA 94016" -311576,USB-C Charging Cable,1,11.95,12/13/19 21:35,"195 Highland St, Los Angeles, CA 90001" -311577,USB-C Charging Cable,1,11.95,12/06/19 10:55,"222 2nd St, San Francisco, CA 94016" -311578,USB-C Charging Cable,2,11.95,12/19/19 20:25,"337 14th St, Dallas, TX 75001" -311579,AA Batteries (4-pack),1,3.84,12/02/19 22:44,"353 North St, San Francisco, CA 94016" -311580,AA Batteries (4-pack),1,3.84,12/25/19 17:06,"64 Cedar St, San Francisco, CA 94016" -311581,Macbook Pro Laptop,1,1700,12/17/19 09:58,"369 7th St, Boston, MA 02215" -311582,Macbook Pro Laptop,1,1700,12/18/19 11:25,"319 River St, Seattle, WA 98101" -311583,Lightning Charging Cable,1,14.95,12/31/19 19:10,"200 Washington St, Los Angeles, CA 90001" -311584,Vareebadd Phone,1,400,12/24/19 08:34,"588 7th St, Los Angeles, CA 90001" -311585,Bose SoundSport Headphones,1,99.99,12/11/19 20:45,"196 Washington St, San Francisco, CA 94016" -311586,ThinkPad Laptop,1,999.99,12/01/19 21:57,"477 Dogwood St, San Francisco, CA 94016" -311587,Macbook Pro Laptop,1,1700,12/08/19 19:17,"118 Hill St, Los Angeles, CA 90001" -311588,Macbook Pro Laptop,1,1700,12/05/19 19:03,"27 10th St, Seattle, WA 98101" -311589,iPhone,1,700,12/17/19 18:54,"124 1st St, Dallas, TX 75001" -311589,Lightning Charging Cable,1,14.95,12/17/19 18:54,"124 1st St, Dallas, TX 75001" -311590,AAA Batteries (4-pack),1,2.99,12/31/19 17:47,"887 Jackson St, Portland, OR 97035" -311591,AA Batteries (4-pack),1,3.84,12/27/19 17:54,"198 10th St, San Francisco, CA 94016" -311592,AA Batteries (4-pack),1,3.84,12/10/19 06:27,"550 Pine St, San Francisco, CA 94016" -311593,LG Washing Machine,1,600.0,12/08/19 21:15,"725 11th St, Portland, ME 04101" -311594,AAA Batteries (4-pack),1,2.99,12/16/19 17:41,"194 Walnut St, New York City, NY 10001" -311595,34in Ultrawide Monitor,1,379.99,12/27/19 23:41,"730 Lakeview St, Los Angeles, CA 90001" -311596,AAA Batteries (4-pack),4,2.99,12/15/19 10:23,"589 Elm St, San Francisco, CA 94016" -311597,Macbook Pro Laptop,1,1700,12/15/19 13:08,"753 9th St, San Francisco, CA 94016" -311598,Google Phone,1,600,12/21/19 18:20,"274 Washington St, New York City, NY 10001" -311599,Lightning Charging Cable,1,14.95,12/11/19 20:11,"150 Madison St, Los Angeles, CA 90001" -311600,34in Ultrawide Monitor,1,379.99,12/25/19 13:59,"789 9th St, Portland, OR 97035" -311601,iPhone,1,700,12/18/19 08:16,"766 West St, San Francisco, CA 94016" -311602,27in 4K Gaming Monitor,1,389.99,12/11/19 18:07,"667 Ridge St, Boston, MA 02215" -311603,AAA Batteries (4-pack),1,2.99,12/06/19 13:42,"722 5th St, Austin, TX 73301" -311604,AA Batteries (4-pack),1,3.84,12/20/19 17:37,"142 Center St, San Francisco, CA 94016" -311605,AAA Batteries (4-pack),1,2.99,12/31/19 22:04,"594 Wilson St, San Francisco, CA 94016" -311606,iPhone,1,700,12/04/19 20:35,"267 Forest St, Boston, MA 02215" -311607,Lightning Charging Cable,1,14.95,12/20/19 17:43,"244 Wilson St, Atlanta, GA 30301" -311608,AA Batteries (4-pack),3,3.84,12/12/19 09:35,"205 Lake St, Dallas, TX 75001" -311609,27in FHD Monitor,1,149.99,12/17/19 10:45,"755 Hickory St, San Francisco, CA 94016" -311610,USB-C Charging Cable,1,11.95,12/02/19 01:04,"517 South St, Los Angeles, CA 90001" -311611,Lightning Charging Cable,1,14.95,12/17/19 18:29,"987 Elm St, Boston, MA 02215" -311612,Lightning Charging Cable,1,14.95,12/04/19 16:30,"516 River St, San Francisco, CA 94016" -311613,Macbook Pro Laptop,1,1700,12/02/19 00:40,"705 Forest St, San Francisco, CA 94016" -311614,Macbook Pro Laptop,1,1700,12/08/19 15:08,"751 Wilson St, Los Angeles, CA 90001" -311615,Apple Airpods Headphones,1,150,12/29/19 00:42,"454 Main St, San Francisco, CA 94016" -311616,USB-C Charging Cable,1,11.95,12/29/19 19:57,"197 7th St, Dallas, TX 75001" -311617,ThinkPad Laptop,1,999.99,12/06/19 01:08,"140 Pine St, Portland, ME 04101" -311618,USB-C Charging Cable,1,11.95,12/15/19 08:01,"907 Johnson St, San Francisco, CA 94016" -311619,20in Monitor,1,109.99,12/31/19 18:22,"121 Madison St, Atlanta, GA 30301" -311620,AAA Batteries (4-pack),1,2.99,12/27/19 20:41,"519 Pine St, Atlanta, GA 30301" -311621,Wired Headphones,1,11.99,12/11/19 20:59,"990 13th St, San Francisco, CA 94016" -311622,Apple Airpods Headphones,1,150,12/17/19 20:10,"585 7th St, Boston, MA 02215" -311623,Macbook Pro Laptop,1,1700,12/30/19 19:50,"711 9th St, Atlanta, GA 30301" -311624,AAA Batteries (4-pack),1,2.99,12/27/19 15:29,"91 Cherry St, Atlanta, GA 30301" -311625,USB-C Charging Cable,1,11.95,12/25/19 09:24,"839 Adams St, Los Angeles, CA 90001" -311626,AA Batteries (4-pack),1,3.84,12/16/19 18:39,"721 South St, Austin, TX 73301" -311627,USB-C Charging Cable,1,11.95,12/16/19 18:03,"488 Willow St, San Francisco, CA 94016" -311628,ThinkPad Laptop,1,999.99,12/09/19 01:06,"697 Hill St, Seattle, WA 98101" -311629,Apple Airpods Headphones,1,150,12/22/19 15:14,"523 Cedar St, San Francisco, CA 94016" -311630,34in Ultrawide Monitor,1,379.99,12/03/19 06:49,"631 Meadow St, San Francisco, CA 94016" -311630,AA Batteries (4-pack),2,3.84,12/03/19 06:49,"631 Meadow St, San Francisco, CA 94016" -311631,USB-C Charging Cable,1,11.95,12/19/19 12:42,"102 Dogwood St, Boston, MA 02215" -311632,20in Monitor,1,109.99,12/28/19 17:44,"897 North St, Los Angeles, CA 90001" -311633,Lightning Charging Cable,1,14.95,12/10/19 10:50,"199 Jackson St, New York City, NY 10001" -311634,20in Monitor,1,109.99,12/30/19 07:00,"451 Ridge St, Boston, MA 02215" -311635,Wired Headphones,2,11.99,12/27/19 10:42,"202 8th St, New York City, NY 10001" -311636,Apple Airpods Headphones,1,150,12/13/19 09:57,"948 Park St, Los Angeles, CA 90001" -311637,Lightning Charging Cable,1,14.95,12/05/19 17:32,"340 Church St, Boston, MA 02215" -311638,Bose SoundSport Headphones,1,99.99,12/14/19 16:38,"847 North St, San Francisco, CA 94016" -311639,AA Batteries (4-pack),1,3.84,12/23/19 21:54,"84 Cedar St, Austin, TX 73301" -311640,34in Ultrawide Monitor,1,379.99,12/11/19 09:25,"48 Hill St, San Francisco, CA 94016" -311641,USB-C Charging Cable,1,11.95,12/23/19 21:32,"750 Main St, Austin, TX 73301" -311642,Bose SoundSport Headphones,1,99.99,12/02/19 22:14,"109 Madison St, Seattle, WA 98101" -311643,Bose SoundSport Headphones,1,99.99,12/17/19 17:07,"882 Lincoln St, Portland, OR 97035" -311644,Bose SoundSport Headphones,1,99.99,12/14/19 20:52,"926 10th St, New York City, NY 10001" -311645,34in Ultrawide Monitor,1,379.99,12/09/19 09:30,"179 14th St, New York City, NY 10001" -311646,Apple Airpods Headphones,1,150,12/18/19 21:22,"224 12th St, Atlanta, GA 30301" -311647,iPhone,1,700,12/31/19 17:53,"19 Lincoln St, New York City, NY 10001" -311648,Lightning Charging Cable,1,14.95,12/28/19 15:33,"992 12th St, Boston, MA 02215" -311649,27in 4K Gaming Monitor,1,389.99,12/05/19 17:42,"759 Church St, New York City, NY 10001" -311650,Google Phone,1,600,12/18/19 22:44,"734 Maple St, Seattle, WA 98101" -311650,Wired Headphones,2,11.99,12/18/19 22:44,"734 Maple St, Seattle, WA 98101" -311651,Apple Airpods Headphones,1,150,12/14/19 19:39,"554 Park St, Seattle, WA 98101" -311652,USB-C Charging Cable,1,11.95,12/29/19 13:34,"398 West St, Atlanta, GA 30301" -311653,Wired Headphones,1,11.99,12/15/19 19:36,"125 Jefferson St, Seattle, WA 98101" -311654,27in FHD Monitor,1,149.99,12/17/19 23:02,"211 Lakeview St, San Francisco, CA 94016" -311655,27in 4K Gaming Monitor,1,389.99,12/07/19 11:29,"219 Madison St, Atlanta, GA 30301" -311656,Lightning Charging Cable,1,14.95,12/22/19 11:08,"181 Forest St, Los Angeles, CA 90001" -311657,Wired Headphones,1,11.99,12/23/19 20:19,"147 Lincoln St, Portland, ME 04101" -311658,Wired Headphones,1,11.99,12/22/19 18:19,"863 Jefferson St, San Francisco, CA 94016" -311658,AAA Batteries (4-pack),1,2.99,12/22/19 18:19,"863 Jefferson St, San Francisco, CA 94016" -311659,Apple Airpods Headphones,1,150,12/26/19 19:45,"840 Spruce St, Portland, OR 97035" -311660,Lightning Charging Cable,1,14.95,12/18/19 18:33,"440 Hickory St, Portland, OR 97035" -311661,Apple Airpods Headphones,1,150,12/27/19 19:57,"210 West St, Boston, MA 02215" -311661,27in 4K Gaming Monitor,1,389.99,12/27/19 19:57,"210 West St, Boston, MA 02215" -311662,Bose SoundSport Headphones,1,99.99,12/11/19 13:55,"331 Cedar St, Los Angeles, CA 90001" -311663,Lightning Charging Cable,1,14.95,12/27/19 18:12,"550 Willow St, Dallas, TX 75001" -311664,Wired Headphones,1,11.99,12/10/19 12:46,"659 Hickory St, Austin, TX 73301" -311665,Google Phone,1,600,12/03/19 13:33,"875 North St, San Francisco, CA 94016" -311665,USB-C Charging Cable,1,11.95,12/03/19 13:33,"875 North St, San Francisco, CA 94016" -311666,USB-C Charging Cable,1,11.95,12/14/19 15:50,"4 11th St, Los Angeles, CA 90001" -311667,27in FHD Monitor,1,149.99,12/14/19 19:04,"109 5th St, Los Angeles, CA 90001" -311668,AA Batteries (4-pack),1,3.84,12/23/19 10:22,"198 Elm St, Atlanta, GA 30301" -311669,ThinkPad Laptop,1,999.99,12/27/19 17:07,"868 7th St, Boston, MA 02215" -311670,Bose SoundSport Headphones,1,99.99,12/20/19 12:01,"112 North St, Boston, MA 02215" -311671,iPhone,1,700,12/01/19 16:08,"525 Main St, San Francisco, CA 94016" -311672,Bose SoundSport Headphones,1,99.99,12/02/19 16:16,"400 1st St, San Francisco, CA 94016" -311673,USB-C Charging Cable,1,11.95,12/26/19 22:24,"169 Forest St, San Francisco, CA 94016" -311674,AAA Batteries (4-pack),3,2.99,12/28/19 15:19,"682 Maple St, Portland, OR 97035" -311675,Lightning Charging Cable,1,14.95,12/13/19 12:06,"587 Lake St, San Francisco, CA 94016" -311676,27in 4K Gaming Monitor,1,389.99,12/12/19 17:57,"472 14th St, Dallas, TX 75001" -311677,Apple Airpods Headphones,1,150,12/25/19 15:25,"713 Cherry St, Boston, MA 02215" -311678,27in 4K Gaming Monitor,1,389.99,12/15/19 23:24,"126 Dogwood St, Atlanta, GA 30301" -311679,Bose SoundSport Headphones,1,99.99,12/11/19 12:46,"661 8th St, Boston, MA 02215" -311680,iPhone,1,700,12/01/19 22:38,"928 Church St, Los Angeles, CA 90001" -311681,27in FHD Monitor,1,149.99,12/04/19 07:40,"22 13th St, San Francisco, CA 94016" -311682,AAA Batteries (4-pack),1,2.99,12/02/19 12:46,"411 Washington St, San Francisco, CA 94016" -311683,27in 4K Gaming Monitor,1,389.99,12/18/19 20:58,"673 Lincoln St, Atlanta, GA 30301" -311684,Flatscreen TV,1,300,12/06/19 15:06,"115 Elm St, San Francisco, CA 94016" -311685,Lightning Charging Cable,1,14.95,12/27/19 12:26,"707 6th St, Los Angeles, CA 90001" -311686,Bose SoundSport Headphones,1,99.99,12/14/19 10:46,"853 Elm St, New York City, NY 10001" -311687,USB-C Charging Cable,1,11.95,12/22/19 03:57,"302 13th St, Dallas, TX 75001" -311688,AA Batteries (4-pack),1,3.84,12/24/19 19:31,"936 10th St, San Francisco, CA 94016" -311689,AAA Batteries (4-pack),2,2.99,12/15/19 15:52,"738 14th St, Boston, MA 02215" -311690,AA Batteries (4-pack),2,3.84,12/19/19 10:29,"312 Jefferson St, San Francisco, CA 94016" -311691,USB-C Charging Cable,1,11.95,12/27/19 19:18,"496 Lake St, Atlanta, GA 30301" -311692,Lightning Charging Cable,1,14.95,12/09/19 11:49,"462 Park St, Los Angeles, CA 90001" -311693,27in FHD Monitor,1,149.99,12/06/19 18:05,"594 9th St, Dallas, TX 75001" -311694,AAA Batteries (4-pack),1,2.99,12/19/19 07:35,"905 11th St, Atlanta, GA 30301" -311695,Wired Headphones,1,11.99,12/21/19 21:06,"107 Lakeview St, San Francisco, CA 94016" -311696,Bose SoundSport Headphones,1,99.99,12/05/19 11:28,"742 Wilson St, Boston, MA 02215" -311697,Vareebadd Phone,1,400,12/12/19 07:29,"216 9th St, Austin, TX 73301" -311697,USB-C Charging Cable,1,11.95,12/12/19 07:29,"216 9th St, Austin, TX 73301" -311698,Google Phone,1,600,12/09/19 20:10,"315 1st St, Boston, MA 02215" -311699,Lightning Charging Cable,1,14.95,12/16/19 17:18,"468 Adams St, Los Angeles, CA 90001" -311700,AAA Batteries (4-pack),1,2.99,12/28/19 22:00,"370 Cedar St, Los Angeles, CA 90001" -311701,34in Ultrawide Monitor,1,379.99,12/04/19 19:44,"290 Lake St, San Francisco, CA 94016" -311702,Wired Headphones,1,11.99,12/17/19 07:11,"401 Ridge St, San Francisco, CA 94016" -311703,Apple Airpods Headphones,1,150,12/03/19 14:27,"803 14th St, New York City, NY 10001" -311704,Vareebadd Phone,1,400,12/16/19 10:57,"827 Madison St, Atlanta, GA 30301" -311704,USB-C Charging Cable,1,11.95,12/16/19 10:57,"827 Madison St, Atlanta, GA 30301" -311705,Lightning Charging Cable,1,14.95,12/24/19 15:47,"752 South St, Dallas, TX 75001" -311706,Wired Headphones,1,11.99,12/11/19 10:44,"516 Hickory St, New York City, NY 10001" -311707,27in 4K Gaming Monitor,1,389.99,12/27/19 11:12,"937 2nd St, San Francisco, CA 94016" -311708,Lightning Charging Cable,1,14.95,12/18/19 18:30,"756 Hickory St, Los Angeles, CA 90001" -311709,AA Batteries (4-pack),2,3.84,12/23/19 15:15,"713 6th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -311710,AA Batteries (4-pack),1,3.84,12/22/19 13:07,"253 Willow St, San Francisco, CA 94016" -311711,Wired Headphones,1,11.99,12/07/19 10:15,"475 South St, Portland, ME 04101" -311712,AAA Batteries (4-pack),3,2.99,12/10/19 21:54,"267 8th St, Seattle, WA 98101" -311713,USB-C Charging Cable,1,11.95,12/06/19 19:03,"2 Hill St, New York City, NY 10001" -311714,Bose SoundSport Headphones,1,99.99,12/20/19 08:25,"866 Center St, Seattle, WA 98101" -311715,Flatscreen TV,1,300,12/13/19 01:09,"503 Wilson St, Los Angeles, CA 90001" -311715,AAA Batteries (4-pack),1,2.99,12/13/19 01:09,"503 Wilson St, Los Angeles, CA 90001" -311716,Apple Airpods Headphones,1,150,12/03/19 23:22,"286 4th St, Boston, MA 02215" -311717,AA Batteries (4-pack),1,3.84,12/14/19 07:52,"153 Pine St, San Francisco, CA 94016" -311717,iPhone,1,700,12/14/19 07:52,"153 Pine St, San Francisco, CA 94016" -311718,Flatscreen TV,1,300,12/27/19 11:22,"224 Chestnut St, Los Angeles, CA 90001" -311719,AA Batteries (4-pack),2,3.84,12/09/19 20:42,"594 Hill St, Portland, OR 97035" -311720,AAA Batteries (4-pack),1,2.99,12/08/19 14:51,"914 11th St, Seattle, WA 98101" -311721,USB-C Charging Cable,1,11.95,12/28/19 08:58,"914 Lincoln St, Los Angeles, CA 90001" -311722,USB-C Charging Cable,1,11.95,12/29/19 15:39,"543 2nd St, New York City, NY 10001" -311723,ThinkPad Laptop,1,999.99,12/03/19 12:10,"799 1st St, San Francisco, CA 94016" -311724,Wired Headphones,1,11.99,12/22/19 10:25,"670 Walnut St, Atlanta, GA 30301" -311725,Bose SoundSport Headphones,1,99.99,12/14/19 09:35,"60 Jackson St, Los Angeles, CA 90001" -311726,USB-C Charging Cable,1,11.95,12/10/19 22:19,"862 5th St, Portland, OR 97035" -311727,Google Phone,1,600,12/16/19 11:20,"198 Lake St, Seattle, WA 98101" -311727,USB-C Charging Cable,1,11.95,12/16/19 11:20,"198 Lake St, Seattle, WA 98101" -311727,Wired Headphones,1,11.99,12/16/19 11:20,"198 Lake St, Seattle, WA 98101" -311728,Apple Airpods Headphones,1,150,12/19/19 09:41,"864 Adams St, Seattle, WA 98101" -311729,Lightning Charging Cable,1,14.95,12/22/19 17:01,"636 Cherry St, Seattle, WA 98101" -311730,27in FHD Monitor,1,149.99,12/29/19 12:57,"980 Elm St, San Francisco, CA 94016" -311731,27in FHD Monitor,1,149.99,12/13/19 21:07,"846 Main St, Austin, TX 73301" -311732,ThinkPad Laptop,1,999.99,12/01/19 09:09,"399 Forest St, San Francisco, CA 94016" -311733,Macbook Pro Laptop,1,1700,12/16/19 11:12,"650 West St, San Francisco, CA 94016" -311734,AAA Batteries (4-pack),1,2.99,12/16/19 21:53,"654 Park St, Boston, MA 02215" -311735,USB-C Charging Cable,1,11.95,12/24/19 19:41,"573 5th St, San Francisco, CA 94016" -311736,Bose SoundSport Headphones,1,99.99,12/17/19 17:39,"243 1st St, Boston, MA 02215" -311737,AAA Batteries (4-pack),1,2.99,12/06/19 20:07,"905 Johnson St, New York City, NY 10001" -311738,USB-C Charging Cable,1,11.95,12/29/19 20:29,"743 10th St, Seattle, WA 98101" -311739,AAA Batteries (4-pack),1,2.99,12/28/19 00:26,"757 Pine St, Seattle, WA 98101" -311740,AA Batteries (4-pack),1,3.84,12/23/19 14:09,"565 Park St, San Francisco, CA 94016" -311741,AA Batteries (4-pack),1,3.84,12/09/19 01:24,"386 7th St, San Francisco, CA 94016" -311742,AA Batteries (4-pack),4,3.84,12/02/19 20:45,"969 Maple St, San Francisco, CA 94016" -311743,AA Batteries (4-pack),3,3.84,12/01/19 14:10,"784 5th St, Atlanta, GA 30301" -311744,Wired Headphones,1,11.99,12/31/19 17:05,"204 11th St, Los Angeles, CA 90001" -311745,Google Phone,1,600,12/07/19 09:17,"926 13th St, Boston, MA 02215" -311745,USB-C Charging Cable,1,11.95,12/07/19 09:17,"926 13th St, Boston, MA 02215" -311746,USB-C Charging Cable,1,11.95,12/14/19 17:24,"830 5th St, Atlanta, GA 30301" -311747,ThinkPad Laptop,1,999.99,12/09/19 16:23,"862 Lincoln St, Atlanta, GA 30301" -311748,USB-C Charging Cable,1,11.95,12/19/19 10:41,"273 2nd St, New York City, NY 10001" -311749,USB-C Charging Cable,1,11.95,12/07/19 13:53,"543 12th St, Los Angeles, CA 90001" -311750,USB-C Charging Cable,1,11.95,12/13/19 10:52,"130 Pine St, Dallas, TX 75001" -311751,Apple Airpods Headphones,1,150,12/21/19 05:11,"147 Lake St, Atlanta, GA 30301" -311752,AAA Batteries (4-pack),1,2.99,12/25/19 00:23,"561 Park St, New York City, NY 10001" -311753,Lightning Charging Cable,1,14.95,12/26/19 22:28,"537 Church St, New York City, NY 10001" -311754,Flatscreen TV,1,300,12/18/19 11:27,"75 South St, Boston, MA 02215" -311755,Apple Airpods Headphones,1,150,12/08/19 08:49,"785 Center St, Austin, TX 73301" -311756,Lightning Charging Cable,1,14.95,12/12/19 01:26,"721 Maple St, Atlanta, GA 30301" -311757,Google Phone,1,600,12/11/19 09:53,"493 West St, Boston, MA 02215" -311758,Wired Headphones,1,11.99,12/31/19 14:33,"866 Jackson St, Seattle, WA 98101" -311759,27in FHD Monitor,1,149.99,12/30/19 19:18,"906 Lakeview St, Atlanta, GA 30301" -311760,Bose SoundSport Headphones,1,99.99,12/20/19 17:53,"264 Cedar St, Boston, MA 02215" -311761,20in Monitor,1,109.99,12/29/19 15:03,"821 4th St, Los Angeles, CA 90001" -311762,Lightning Charging Cable,1,14.95,12/02/19 14:42,"618 Lakeview St, Austin, TX 73301" -311763,Apple Airpods Headphones,1,150,12/10/19 22:10,"52 Sunset St, San Francisco, CA 94016" -311764,Lightning Charging Cable,1,14.95,12/12/19 09:57,"485 Cedar St, San Francisco, CA 94016" -311765,AA Batteries (4-pack),1,3.84,12/02/19 15:54,"323 6th St, New York City, NY 10001" -311766,Wired Headphones,1,11.99,12/12/19 22:52,"935 Dogwood St, San Francisco, CA 94016" -311767,27in 4K Gaming Monitor,1,389.99,12/07/19 13:14,"289 Cherry St, Atlanta, GA 30301" -311768,AA Batteries (4-pack),1,3.84,12/09/19 19:07,"645 Chestnut St, Portland, OR 97035" -311769,USB-C Charging Cable,1,11.95,12/23/19 12:30,"596 West St, Portland, ME 04101" -311770,USB-C Charging Cable,1,11.95,12/29/19 10:38,"132 West St, San Francisco, CA 94016" -311771,Wired Headphones,1,11.99,12/04/19 08:27,"45 Lincoln St, San Francisco, CA 94016" -311772,Lightning Charging Cable,1,14.95,12/11/19 10:47,"407 Lakeview St, Dallas, TX 75001" -311773,AA Batteries (4-pack),2,3.84,12/28/19 10:48,"341 Sunset St, New York City, NY 10001" -311774,27in 4K Gaming Monitor,1,389.99,12/01/19 16:59,"757 Forest St, San Francisco, CA 94016" -311775,Apple Airpods Headphones,1,150,12/08/19 20:38,"713 Main St, Los Angeles, CA 90001" -311776,34in Ultrawide Monitor,1,379.99,12/15/19 20:08,"101 5th St, Atlanta, GA 30301" -311777,Apple Airpods Headphones,1,150,12/01/19 13:19,"205 6th St, Austin, TX 73301" -311778,USB-C Charging Cable,1,11.95,12/07/19 20:16,"655 Maple St, San Francisco, CA 94016" -311778,ThinkPad Laptop,1,999.99,12/07/19 20:16,"655 Maple St, San Francisco, CA 94016" -311779,USB-C Charging Cable,1,11.95,12/22/19 15:35,"408 Madison St, Los Angeles, CA 90001" -311780,27in FHD Monitor,1,149.99,12/21/19 20:07,"633 2nd St, San Francisco, CA 94016" -311781,Apple Airpods Headphones,1,150,12/29/19 13:38,"272 Cherry St, San Francisco, CA 94016" -311782,USB-C Charging Cable,2,11.95,12/23/19 06:53,"181 Center St, Los Angeles, CA 90001" -311783,AA Batteries (4-pack),4,3.84,12/14/19 16:38,"375 Meadow St, Los Angeles, CA 90001" -311784,Bose SoundSport Headphones,1,99.99,12/02/19 11:59,"234 12th St, Los Angeles, CA 90001" -311785,AAA Batteries (4-pack),3,2.99,12/06/19 08:27,"770 1st St, San Francisco, CA 94016" -311786,USB-C Charging Cable,2,11.95,12/08/19 11:55,"235 South St, San Francisco, CA 94016" -311787,AAA Batteries (4-pack),1,2.99,12/08/19 00:30,"455 7th St, Boston, MA 02215" -311788,AAA Batteries (4-pack),1,2.99,12/02/19 10:03,"481 Washington St, Portland, ME 04101" -311789,27in 4K Gaming Monitor,1,389.99,12/13/19 11:25,"210 Cherry St, Boston, MA 02215" -311790,34in Ultrawide Monitor,1,379.99,12/26/19 20:22,"520 Sunset St, Dallas, TX 75001" -311791,USB-C Charging Cable,1,11.95,12/11/19 11:00,"771 Main St, San Francisco, CA 94016" -311792,Bose SoundSport Headphones,1,99.99,12/28/19 20:57,"19 Wilson St, Atlanta, GA 30301" -311793,Lightning Charging Cable,1,14.95,12/08/19 12:17,"195 12th St, San Francisco, CA 94016" -311794,AAA Batteries (4-pack),1,2.99,12/12/19 11:17,"555 2nd St, Seattle, WA 98101" -311795,Apple Airpods Headphones,1,150,12/23/19 12:18,"68 14th St, New York City, NY 10001" -311796,Google Phone,1,600,12/20/19 13:13,"76 1st St, Los Angeles, CA 90001" -311797,Lightning Charging Cable,1,14.95,12/03/19 12:21,"500 Forest St, San Francisco, CA 94016" -311798,Bose SoundSport Headphones,1,99.99,12/15/19 15:26,"834 River St, Seattle, WA 98101" -311799,AA Batteries (4-pack),1,3.84,12/20/19 12:12,"48 Park St, Austin, TX 73301" -311800,AAA Batteries (4-pack),1,2.99,12/18/19 19:09,"666 Main St, San Francisco, CA 94016" -311801,AAA Batteries (4-pack),1,2.99,12/10/19 14:12,"163 Pine St, Seattle, WA 98101" -311802,AA Batteries (4-pack),1,3.84,12/16/19 18:00,"987 River St, New York City, NY 10001" -311803,Wired Headphones,1,11.99,12/23/19 15:31,"982 Park St, San Francisco, CA 94016" -311804,Wired Headphones,1,11.99,12/17/19 15:44,"221 Forest St, New York City, NY 10001" -311805,AA Batteries (4-pack),3,3.84,12/05/19 12:21,"812 Adams St, Los Angeles, CA 90001" -311806,AAA Batteries (4-pack),3,2.99,12/02/19 16:02,"586 Hickory St, Dallas, TX 75001" -311807,USB-C Charging Cable,1,11.95,12/20/19 22:10,"603 Adams St, Los Angeles, CA 90001" -311808,USB-C Charging Cable,1,11.95,12/02/19 22:24,"223 11th St, Boston, MA 02215" -311809,Wired Headphones,1,11.99,12/28/19 17:41,"964 Chestnut St, San Francisco, CA 94016" -311810,AAA Batteries (4-pack),1,2.99,12/20/19 10:43,"328 Lincoln St, San Francisco, CA 94016" -311811,20in Monitor,1,109.99,12/09/19 15:16,"684 Lincoln St, San Francisco, CA 94016" -311812,Bose SoundSport Headphones,1,99.99,12/27/19 07:29,"906 Chestnut St, Portland, OR 97035" -311813,Apple Airpods Headphones,1,150,12/06/19 18:56,"379 Walnut St, Portland, OR 97035" -311814,Wired Headphones,1,11.99,12/07/19 17:18,"706 1st St, Los Angeles, CA 90001" -311815,Wired Headphones,1,11.99,12/14/19 14:19,"182 Cherry St, Seattle, WA 98101" -311816,27in 4K Gaming Monitor,1,389.99,12/10/19 17:30,"600 2nd St, Atlanta, GA 30301" -311817,34in Ultrawide Monitor,1,379.99,12/10/19 10:01,"766 West St, Austin, TX 73301" -311818,27in 4K Gaming Monitor,1,389.99,12/16/19 23:33,"660 Main St, San Francisco, CA 94016" -311819,Apple Airpods Headphones,1,150,12/06/19 07:57,"663 Cherry St, Los Angeles, CA 90001" -311820,USB-C Charging Cable,1,11.95,12/18/19 18:10,"276 Washington St, San Francisco, CA 94016" -311821,Wired Headphones,1,11.99,12/10/19 22:14,"444 Johnson St, San Francisco, CA 94016" -311822,Macbook Pro Laptop,1,1700,12/23/19 09:59,"189 Highland St, Boston, MA 02215" -311823,Wired Headphones,1,11.99,12/16/19 12:18,"67 Wilson St, Austin, TX 73301" -311824,Wired Headphones,1,11.99,12/12/19 13:22,"194 South St, Boston, MA 02215" -311825,Bose SoundSport Headphones,1,99.99,12/30/19 17:03,"528 9th St, San Francisco, CA 94016" -311826,Wired Headphones,1,11.99,12/10/19 17:07,"710 Meadow St, New York City, NY 10001" -311827,Wired Headphones,1,11.99,12/02/19 13:01,"536 8th St, Los Angeles, CA 90001" -311828,27in 4K Gaming Monitor,1,389.99,12/16/19 11:39,"848 13th St, Dallas, TX 75001" -311829,Google Phone,1,600,12/10/19 14:07,"307 1st St, Seattle, WA 98101" -311830,AAA Batteries (4-pack),3,2.99,12/30/19 15:50,"998 6th St, Los Angeles, CA 90001" -311831,Apple Airpods Headphones,1,150,12/27/19 16:41,"116 Pine St, Los Angeles, CA 90001" -311832,27in FHD Monitor,1,149.99,12/09/19 22:28,"567 10th St, San Francisco, CA 94016" -311833,Wired Headphones,2,11.99,12/28/19 10:18,"741 River St, New York City, NY 10001" -311834,AAA Batteries (4-pack),2,2.99,12/12/19 18:37,"619 8th St, San Francisco, CA 94016" -311835,Bose SoundSport Headphones,1,99.99,12/17/19 09:19,"92 Church St, Boston, MA 02215" -311836,AAA Batteries (4-pack),1,2.99,12/05/19 15:09,"647 Lake St, Boston, MA 02215" -311837,Apple Airpods Headphones,1,150,12/22/19 12:31,"616 Maple St, Los Angeles, CA 90001" -311838,AA Batteries (4-pack),1,3.84,12/23/19 04:56,"212 Pine St, Dallas, TX 75001" -311839,AAA Batteries (4-pack),1,2.99,12/02/19 15:08,"787 Jackson St, New York City, NY 10001" -311840,USB-C Charging Cable,1,11.95,12/31/19 01:11,"986 6th St, New York City, NY 10001" -311841,Flatscreen TV,1,300,12/02/19 18:21,"625 Lincoln St, Atlanta, GA 30301" -311842,iPhone,1,700,12/10/19 23:41,"754 Dogwood St, Portland, OR 97035" -311843,Macbook Pro Laptop,1,1700,12/14/19 14:31,"393 Dogwood St, New York City, NY 10001" -311844,Lightning Charging Cable,1,14.95,12/10/19 22:10,"194 6th St, Seattle, WA 98101" -311845,USB-C Charging Cable,1,11.95,12/13/19 21:24,"672 North St, Los Angeles, CA 90001" -311846,AA Batteries (4-pack),1,3.84,12/09/19 21:27,"781 Adams St, Los Angeles, CA 90001" -311847,AAA Batteries (4-pack),2,2.99,12/17/19 12:17,"24 North St, New York City, NY 10001" -311848,AA Batteries (4-pack),1,3.84,12/31/19 20:46,"939 North St, Portland, ME 04101" -311849,USB-C Charging Cable,1,11.95,12/18/19 21:27,"883 Church St, San Francisco, CA 94016" -311850,USB-C Charging Cable,1,11.95,12/08/19 12:51,"227 River St, San Francisco, CA 94016" -311851,USB-C Charging Cable,1,11.95,12/14/19 21:28,"329 Dogwood St, San Francisco, CA 94016" -311852,Bose SoundSport Headphones,1,99.99,12/09/19 09:02,"819 Madison St, Dallas, TX 75001" -311853,AA Batteries (4-pack),1,3.84,12/18/19 17:08,"471 Walnut St, Seattle, WA 98101" -311854,Bose SoundSport Headphones,1,99.99,12/16/19 11:00,"59 Sunset St, Boston, MA 02215" -311855,ThinkPad Laptop,1,999.99,12/03/19 16:29,"112 Hickory St, Los Angeles, CA 90001" -311856,AAA Batteries (4-pack),1,2.99,12/16/19 21:07,"566 Walnut St, San Francisco, CA 94016" -311857,Lightning Charging Cable,1,14.95,12/28/19 09:17,"546 12th St, Los Angeles, CA 90001" -311858,ThinkPad Laptop,1,999.99,12/06/19 17:43,"60 Chestnut St, Boston, MA 02215" -311859,20in Monitor,1,109.99,12/31/19 16:54,"771 Dogwood St, San Francisco, CA 94016" -311860,AAA Batteries (4-pack),1,2.99,12/01/19 19:26,"236 9th St, San Francisco, CA 94016" -311861,Macbook Pro Laptop,1,1700,12/30/19 11:56,"574 14th St, Atlanta, GA 30301" -311862,Apple Airpods Headphones,1,150,12/10/19 13:47,"241 6th St, New York City, NY 10001" -311863,Wired Headphones,1,11.99,12/01/19 21:57,"328 Walnut St, Los Angeles, CA 90001" -311864,Flatscreen TV,1,300,12/15/19 18:04,"893 9th St, New York City, NY 10001" -311865,Lightning Charging Cable,1,14.95,12/03/19 12:30,"552 Forest St, San Francisco, CA 94016" -311866,Apple Airpods Headphones,1,150,12/29/19 14:45,"146 5th St, San Francisco, CA 94016" -311867,Flatscreen TV,1,300,12/05/19 17:05,"626 Adams St, San Francisco, CA 94016" -311868,Wired Headphones,1,11.99,12/16/19 03:25,"495 14th St, New York City, NY 10001" -311869,27in FHD Monitor,1,149.99,12/08/19 18:57,"547 South St, San Francisco, CA 94016" -311870,USB-C Charging Cable,1,11.95,12/13/19 15:31,"696 Wilson St, San Francisco, CA 94016" -311871,20in Monitor,1,109.99,12/11/19 13:24,"951 Center St, Atlanta, GA 30301" -311872,Lightning Charging Cable,2,14.95,12/29/19 10:26,"208 9th St, Atlanta, GA 30301" -311873,Wired Headphones,1,11.99,12/14/19 10:50,"485 River St, San Francisco, CA 94016" -311874,Wired Headphones,1,11.99,12/23/19 09:56,"387 Jackson St, New York City, NY 10001" -311875,Apple Airpods Headphones,1,150,12/31/19 18:11,"220 11th St, Boston, MA 02215" -311876,Apple Airpods Headphones,1,150,12/22/19 00:44,"608 13th St, San Francisco, CA 94016" -311877,Lightning Charging Cable,1,14.95,12/01/19 10:42,"287 Jackson St, San Francisco, CA 94016" -311878,Lightning Charging Cable,1,14.95,12/12/19 12:34,"230 Hickory St, Austin, TX 73301" -311878,20in Monitor,1,109.99,12/12/19 12:34,"230 Hickory St, Austin, TX 73301" -311879,Apple Airpods Headphones,1,150,12/24/19 17:53,"455 Walnut St, Los Angeles, CA 90001" -311880,Flatscreen TV,1,300,12/04/19 20:23,"451 13th St, Portland, ME 04101" -311881,Wired Headphones,1,11.99,12/01/19 20:52,"509 8th St, Portland, ME 04101" -311882,AAA Batteries (4-pack),4,2.99,12/11/19 16:18,"516 Pine St, Los Angeles, CA 90001" -311883,Apple Airpods Headphones,1,150,12/17/19 09:43,"30 Wilson St, Los Angeles, CA 90001" -311884,AA Batteries (4-pack),1,3.84,12/30/19 08:22,"648 Church St, New York City, NY 10001" -311885,AA Batteries (4-pack),1,3.84,12/20/19 12:31,"771 River St, New York City, NY 10001" -311886,AAA Batteries (4-pack),1,2.99,12/24/19 18:47,"279 Main St, New York City, NY 10001" -311887,Bose SoundSport Headphones,1,99.99,12/19/19 10:04,"498 Elm St, San Francisco, CA 94016" -311888,Lightning Charging Cable,1,14.95,12/23/19 12:17,"595 Washington St, Dallas, TX 75001" -311889,Apple Airpods Headphones,1,150,12/21/19 16:23,"461 Pine St, Dallas, TX 75001" -311890,Apple Airpods Headphones,1,150,12/08/19 11:26,"926 Park St, New York City, NY 10001" -311891,Apple Airpods Headphones,1,150,12/28/19 16:00,"656 Hickory St, Los Angeles, CA 90001" -311892,Wired Headphones,1,11.99,12/28/19 20:43,"72 Johnson St, San Francisco, CA 94016" -311893,USB-C Charging Cable,2,11.95,12/30/19 10:27,"82 Cherry St, Boston, MA 02215" -311894,Flatscreen TV,1,300,12/08/19 11:59,"705 Jefferson St, Seattle, WA 98101" -311895,AAA Batteries (4-pack),1,2.99,12/26/19 12:15,"872 Lincoln St, Los Angeles, CA 90001" -311896,27in FHD Monitor,1,149.99,12/18/19 09:26,"533 13th St, San Francisco, CA 94016" -311897,USB-C Charging Cable,1,11.95,12/26/19 18:15,"484 Hill St, New York City, NY 10001" -311898,34in Ultrawide Monitor,1,379.99,12/02/19 15:02,"658 10th St, San Francisco, CA 94016" -311898,Bose SoundSport Headphones,1,99.99,12/02/19 15:02,"658 10th St, San Francisco, CA 94016" -311899,Apple Airpods Headphones,1,150,12/10/19 20:56,"404 Jackson St, San Francisco, CA 94016" -311900,Google Phone,1,600,12/13/19 08:34,"962 Jefferson St, Atlanta, GA 30301" -311901,Flatscreen TV,1,300,12/21/19 13:59,"641 Center St, San Francisco, CA 94016" -311902,Lightning Charging Cable,2,14.95,12/29/19 14:14,"302 Lake St, Boston, MA 02215" -311903,USB-C Charging Cable,2,11.95,12/16/19 12:30,"515 Center St, New York City, NY 10001" -311904,USB-C Charging Cable,1,11.95,12/05/19 09:49,"437 Elm St, Atlanta, GA 30301" -311905,Wired Headphones,1,11.99,12/14/19 07:13,"94 Lincoln St, Los Angeles, CA 90001" -311906,AAA Batteries (4-pack),2,2.99,12/13/19 22:26,"381 Wilson St, Portland, OR 97035" -311907,Lightning Charging Cable,1,14.95,12/29/19 22:28,"576 13th St, Boston, MA 02215" -311908,USB-C Charging Cable,1,11.95,12/31/19 14:45,"285 11th St, Los Angeles, CA 90001" -311909,AAA Batteries (4-pack),1,2.99,12/06/19 21:10,"964 Chestnut St, San Francisco, CA 94016" -311910,20in Monitor,1,109.99,12/04/19 19:07,"413 Main St, Dallas, TX 75001" -311911,Macbook Pro Laptop,1,1700,12/06/19 07:08,"501 Wilson St, Dallas, TX 75001" -311912,Flatscreen TV,1,300,12/07/19 20:09,"915 Ridge St, Dallas, TX 75001" -311913,USB-C Charging Cable,1,11.95,12/30/19 20:13,"165 Walnut St, New York City, NY 10001" -311914,Google Phone,1,600,12/27/19 07:16,"62 12th St, San Francisco, CA 94016" -311915,USB-C Charging Cable,1,11.95,12/07/19 11:43,"483 7th St, Austin, TX 73301" -311916,Wired Headphones,1,11.99,12/18/19 11:48,"120 Lake St, Portland, OR 97035" -311917,Wired Headphones,1,11.99,12/24/19 10:04,"138 Hill St, Los Angeles, CA 90001" -311917,iPhone,1,700,12/24/19 10:04,"138 Hill St, Los Angeles, CA 90001" -311918,Flatscreen TV,1,300,12/08/19 23:10,"661 Jackson St, San Francisco, CA 94016" -311919,USB-C Charging Cable,1,11.95,12/15/19 00:41,"451 1st St, New York City, NY 10001" -311920,Flatscreen TV,1,300,12/17/19 22:11,"689 Adams St, Boston, MA 02215" -311921,Apple Airpods Headphones,1,150,12/26/19 15:19,"937 Jefferson St, San Francisco, CA 94016" -311922,Wired Headphones,1,11.99,12/27/19 19:50,"511 4th St, Dallas, TX 75001" -311923,AA Batteries (4-pack),1,3.84,12/11/19 15:22,"795 Johnson St, San Francisco, CA 94016" -311924,AA Batteries (4-pack),2,3.84,12/14/19 02:13,"549 13th St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -311925,USB-C Charging Cable,1,11.95,12/19/19 00:09,"539 Walnut St, New York City, NY 10001" -311926,Bose SoundSport Headphones,1,99.99,12/22/19 13:00,"516 Walnut St, Austin, TX 73301" -311927,AA Batteries (4-pack),1,3.84,12/12/19 15:24,"317 Cherry St, New York City, NY 10001" -311928,iPhone,1,700,12/13/19 21:48,"258 9th St, Los Angeles, CA 90001" -311929,AA Batteries (4-pack),1,3.84,12/18/19 21:29,"861 6th St, New York City, NY 10001" -311930,Wired Headphones,1,11.99,12/24/19 19:58,"771 12th St, Los Angeles, CA 90001" -311931,Lightning Charging Cable,1,14.95,12/07/19 12:48,"480 12th St, Los Angeles, CA 90001" -311932,USB-C Charging Cable,1,11.95,12/03/19 16:12,"290 9th St, San Francisco, CA 94016" -311933,AAA Batteries (4-pack),2,2.99,12/28/19 13:34,"748 South St, San Francisco, CA 94016" -311934,27in 4K Gaming Monitor,1,389.99,12/13/19 13:50,"621 Dogwood St, Los Angeles, CA 90001" -311935,Apple Airpods Headphones,1,150,12/05/19 21:33,"453 Chestnut St, Los Angeles, CA 90001" -311936,AAA Batteries (4-pack),2,2.99,12/21/19 12:55,"743 Cedar St, Portland, OR 97035" -311937,AAA Batteries (4-pack),1,2.99,12/31/19 20:54,"595 Hickory St, Boston, MA 02215" -311938,27in 4K Gaming Monitor,1,389.99,12/06/19 14:24,"775 2nd St, Seattle, WA 98101" -311939,AAA Batteries (4-pack),3,2.99,12/21/19 11:19,"467 Walnut St, Seattle, WA 98101" -311940,Wired Headphones,1,11.99,12/26/19 06:52,"548 Center St, Dallas, TX 75001" -311941,iPhone,1,700,12/05/19 21:08,"711 Maple St, New York City, NY 10001" -311942,Wired Headphones,1,11.99,12/27/19 01:10,"2 Walnut St, Portland, OR 97035" -311943,AA Batteries (4-pack),2,3.84,12/19/19 09:35,"427 Cherry St, San Francisco, CA 94016" -311944,Wired Headphones,1,11.99,12/15/19 12:19,"468 Ridge St, Dallas, TX 75001" -311945,USB-C Charging Cable,1,11.95,12/13/19 15:40,"37 Chestnut St, Boston, MA 02215" -311946,Bose SoundSport Headphones,1,99.99,12/16/19 10:24,"262 Center St, Atlanta, GA 30301" -311947,Google Phone,1,600,12/23/19 18:23,"246 Adams St, San Francisco, CA 94016" -311948,AAA Batteries (4-pack),2,2.99,12/30/19 13:33,"179 12th St, San Francisco, CA 94016" -311949,Wired Headphones,1,11.99,12/16/19 19:12,"437 Willow St, Dallas, TX 75001" -311950,AAA Batteries (4-pack),1,2.99,12/18/19 17:32,"592 2nd St, Dallas, TX 75001" -311951,ThinkPad Laptop,1,999.99,12/28/19 14:23,"356 Lincoln St, San Francisco, CA 94016" -311952,ThinkPad Laptop,1,999.99,12/22/19 18:31,"971 13th St, Los Angeles, CA 90001" -311953,27in 4K Gaming Monitor,1,389.99,12/23/19 09:47,"924 9th St, Boston, MA 02215" -311954,Lightning Charging Cable,1,14.95,12/06/19 13:23,"827 Maple St, Atlanta, GA 30301" -311955,Apple Airpods Headphones,1,150,12/24/19 20:35,"73 7th St, Seattle, WA 98101" -311956,AAA Batteries (4-pack),3,2.99,12/27/19 20:42,"290 Madison St, New York City, NY 10001" -311957,34in Ultrawide Monitor,1,379.99,12/22/19 13:44,"338 Chestnut St, Boston, MA 02215" -311958,Lightning Charging Cable,1,14.95,12/02/19 17:46,"821 Lincoln St, New York City, NY 10001" -311959,Wired Headphones,1,11.99,12/21/19 15:03,"137 Park St, Los Angeles, CA 90001" -311960,iPhone,1,700,12/13/19 14:28,"996 Sunset St, Boston, MA 02215" -311960,Apple Airpods Headphones,1,150,12/13/19 14:28,"996 Sunset St, Boston, MA 02215" -311961,27in 4K Gaming Monitor,1,389.99,12/21/19 13:01,"736 South St, San Francisco, CA 94016" -311962,AAA Batteries (4-pack),4,2.99,12/24/19 22:01,"171 Dogwood St, Atlanta, GA 30301" -311963,AA Batteries (4-pack),1,3.84,12/05/19 18:34,"646 Lincoln St, San Francisco, CA 94016" -311964,Wired Headphones,1,11.99,12/18/19 18:29,"911 Hill St, Los Angeles, CA 90001" -311965,Apple Airpods Headphones,1,150,12/02/19 13:10,"741 Cherry St, Los Angeles, CA 90001" -311966,AA Batteries (4-pack),1,3.84,12/20/19 18:23,"298 Lincoln St, Atlanta, GA 30301" -311967,LG Dryer,1,600.0,12/26/19 14:50,"963 Walnut St, Portland, OR 97035" -311968,Apple Airpods Headphones,1,150,12/30/19 20:11,"342 Wilson St, San Francisco, CA 94016" -311969,Vareebadd Phone,1,400,12/08/19 11:00,"466 Maple St, San Francisco, CA 94016" -311969,USB-C Charging Cable,1,11.95,12/08/19 11:00,"466 Maple St, San Francisco, CA 94016" -311970,Wired Headphones,1,11.99,12/06/19 22:03,"832 7th St, Boston, MA 02215" -311971,Apple Airpods Headphones,1,150,12/19/19 12:15,"56 Cedar St, Atlanta, GA 30301" -311972,20in Monitor,1,109.99,12/31/19 18:46,"973 Sunset St, Boston, MA 02215" -311973,AA Batteries (4-pack),1,3.84,12/29/19 19:57,"818 Forest St, Boston, MA 02215" -311974,34in Ultrawide Monitor,1,379.99,12/08/19 13:46,"448 Main St, San Francisco, CA 94016" -311975,Wired Headphones,1,11.99,12/31/19 01:11,"526 4th St, Austin, TX 73301" -311976,Wired Headphones,2,11.99,12/19/19 23:27,"887 7th St, New York City, NY 10001" -311977,Google Phone,1,600,12/03/19 11:33,"146 Walnut St, New York City, NY 10001" -311978,34in Ultrawide Monitor,1,379.99,12/05/19 12:15,"635 5th St, San Francisco, CA 94016" -311979,Wired Headphones,1,11.99,12/28/19 10:45,"794 Cedar St, New York City, NY 10001" -311980,Wired Headphones,1,11.99,12/21/19 16:43,"751 2nd St, San Francisco, CA 94016" -311981,27in 4K Gaming Monitor,1,389.99,12/17/19 13:29,"371 9th St, New York City, NY 10001" -311982,AAA Batteries (4-pack),1,2.99,12/12/19 20:23,"292 Wilson St, Seattle, WA 98101" -311983,Wired Headphones,1,11.99,12/08/19 14:46,"970 Washington St, Boston, MA 02215" -311984,Apple Airpods Headphones,1,150,12/13/19 20:03,"814 Jefferson St, Portland, OR 97035" -311985,Wired Headphones,1,11.99,12/18/19 14:27,"734 Forest St, San Francisco, CA 94016" -311986,Apple Airpods Headphones,1,150,12/28/19 11:49,"878 7th St, New York City, NY 10001" -311987,Wired Headphones,1,11.99,12/28/19 11:30,"136 8th St, Dallas, TX 75001" -311988,Lightning Charging Cable,2,14.95,12/24/19 13:51,"142 Highland St, San Francisco, CA 94016" -311989,USB-C Charging Cable,1,11.95,12/22/19 01:45,"608 Center St, San Francisco, CA 94016" -311990,AA Batteries (4-pack),1,3.84,12/12/19 20:07,"226 Hill St, San Francisco, CA 94016" -311991,USB-C Charging Cable,1,11.95,12/17/19 11:34,"116 Lincoln St, San Francisco, CA 94016" -311992,USB-C Charging Cable,1,11.95,12/18/19 21:39,"901 Lake St, Atlanta, GA 30301" -311993,USB-C Charging Cable,1,11.95,12/17/19 10:10,"990 Chestnut St, Portland, OR 97035" -311994,ThinkPad Laptop,1,999.99,12/23/19 16:35,"626 Jackson St, Portland, ME 04101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -311995,Bose SoundSport Headphones,1,99.99,12/23/19 19:19,"258 14th St, Boston, MA 02215" -311996,USB-C Charging Cable,1,11.95,12/21/19 14:02,"138 Maple St, Boston, MA 02215" -311997,Google Phone,1,600,12/12/19 17:00,"311 Forest St, Austin, TX 73301" -311998,27in FHD Monitor,1,149.99,12/04/19 20:24,"988 Cedar St, Atlanta, GA 30301" -311999,USB-C Charging Cable,1,11.95,12/08/19 11:48,"781 11th St, New York City, NY 10001" -312000,27in FHD Monitor,1,149.99,12/21/19 11:40,"654 4th St, Portland, ME 04101" -312001,Google Phone,1,600,12/05/19 00:44,"51 1st St, Los Angeles, CA 90001" -312001,USB-C Charging Cable,1,11.95,12/05/19 00:44,"51 1st St, Los Angeles, CA 90001" -312002,34in Ultrawide Monitor,1,379.99,12/03/19 20:11,"924 Forest St, Austin, TX 73301" -312003,AA Batteries (4-pack),1,3.84,12/27/19 19:20,"500 Wilson St, San Francisco, CA 94016" -312004,Apple Airpods Headphones,2,150,12/31/19 16:22,"135 14th St, San Francisco, CA 94016" -312005,Lightning Charging Cable,1,14.95,12/24/19 16:34,"798 5th St, Portland, OR 97035" -312006,Wired Headphones,2,11.99,12/16/19 11:48,"989 Washington St, San Francisco, CA 94016" -312007,Wired Headphones,1,11.99,12/12/19 18:27,"529 13th St, Atlanta, GA 30301" -312008,USB-C Charging Cable,1,11.95,12/13/19 19:25,"507 Sunset St, Dallas, TX 75001" -312009,AA Batteries (4-pack),3,3.84,12/25/19 23:23,"436 13th St, Dallas, TX 75001" -312010,USB-C Charging Cable,1,11.95,12/13/19 18:42,"368 5th St, Austin, TX 73301" -312011,27in 4K Gaming Monitor,1,389.99,12/14/19 12:40,"817 North St, San Francisco, CA 94016" -312012,27in FHD Monitor,1,149.99,01/01/20 02:12,"507 13th St, San Francisco, CA 94016" -312013,AA Batteries (4-pack),1,3.84,12/25/19 06:37,"857 Highland St, Dallas, TX 75001" -312013,Wired Headphones,1,11.99,12/25/19 06:37,"857 Highland St, Dallas, TX 75001" -312014,Apple Airpods Headphones,1,150,12/19/19 18:38,"264 7th St, San Francisco, CA 94016" -312015,Macbook Pro Laptop,1,1700,12/05/19 17:30,"30 Lincoln St, Los Angeles, CA 90001" -312016,AAA Batteries (4-pack),3,2.99,12/26/19 07:13,"890 Cedar St, New York City, NY 10001" -312017,Wired Headphones,1,11.99,12/08/19 15:30,"506 Dogwood St, Los Angeles, CA 90001" -312018,Lightning Charging Cable,1,14.95,12/11/19 21:59,"132 Chestnut St, Atlanta, GA 30301" -312019,27in 4K Gaming Monitor,1,389.99,12/01/19 11:35,"607 River St, Seattle, WA 98101" -312020,Apple Airpods Headphones,1,150,12/04/19 00:07,"767 Meadow St, Austin, TX 73301" -312021,Bose SoundSport Headphones,1,99.99,12/27/19 13:11,"424 Hickory St, Seattle, WA 98101" -312022,Wired Headphones,1,11.99,12/15/19 17:40,"975 2nd St, Atlanta, GA 30301" -312023,iPhone,1,700,12/22/19 21:49,"386 Wilson St, Los Angeles, CA 90001" -312023,Apple Airpods Headphones,1,150,12/22/19 21:49,"386 Wilson St, Los Angeles, CA 90001" -312024,AAA Batteries (4-pack),1,2.99,12/02/19 12:44,"991 11th St, Seattle, WA 98101" -312025,AA Batteries (4-pack),1,3.84,12/25/19 10:19,"367 Johnson St, Seattle, WA 98101" -312026,AAA Batteries (4-pack),1,2.99,12/26/19 13:16,"808 Jackson St, Seattle, WA 98101" -312027,Wired Headphones,1,11.99,12/28/19 12:19,"750 Hill St, Boston, MA 02215" -312028,Wired Headphones,1,11.99,12/07/19 20:05,"525 5th St, New York City, NY 10001" -312029,Flatscreen TV,1,300,12/04/19 08:13,"118 4th St, San Francisco, CA 94016" -312030,AAA Batteries (4-pack),1,2.99,12/31/19 08:42,"271 Adams St, New York City, NY 10001" -312031,Bose SoundSport Headphones,1,99.99,12/24/19 19:31,"164 Forest St, San Francisco, CA 94016" -312032,AA Batteries (4-pack),1,3.84,12/25/19 20:42,"96 Sunset St, New York City, NY 10001" -312033,Wired Headphones,1,11.99,12/17/19 19:50,"617 Jackson St, Dallas, TX 75001" -312033,Macbook Pro Laptop,1,1700,12/17/19 19:50,"617 Jackson St, Dallas, TX 75001" -312034,AA Batteries (4-pack),1,3.84,12/04/19 12:52,"138 Cedar St, Los Angeles, CA 90001" -312035,Wired Headphones,1,11.99,12/20/19 22:47,"250 Spruce St, Boston, MA 02215" -312035,Bose SoundSport Headphones,1,99.99,12/20/19 22:47,"250 Spruce St, Boston, MA 02215" -312036,Lightning Charging Cable,1,14.95,12/13/19 16:45,"633 North St, San Francisco, CA 94016" -312037,Wired Headphones,1,11.99,12/09/19 11:09,"907 Adams St, Los Angeles, CA 90001" -312038,AAA Batteries (4-pack),1,2.99,12/23/19 19:33,"89 12th St, Boston, MA 02215" -312039,AA Batteries (4-pack),1,3.84,12/06/19 07:42,"627 14th St, Seattle, WA 98101" -312040,iPhone,1,700,12/14/19 17:44,"523 Madison St, Boston, MA 02215" -312041,iPhone,1,700,12/24/19 21:57,"971 Madison St, Los Angeles, CA 90001" -312042,Apple Airpods Headphones,1,150,12/02/19 07:16,"561 4th St, Austin, TX 73301" -312043,USB-C Charging Cable,1,11.95,12/11/19 09:58,"278 Spruce St, Portland, ME 04101" -312044,iPhone,1,700,12/31/19 11:53,"62 Johnson St, Los Angeles, CA 90001" -312044,Lightning Charging Cable,1,14.95,12/31/19 11:53,"62 Johnson St, Los Angeles, CA 90001" -312045,Apple Airpods Headphones,1,150,12/28/19 17:50,"248 Cedar St, Los Angeles, CA 90001" -312046,Wired Headphones,1,11.99,12/18/19 19:54,"592 Maple St, Seattle, WA 98101" -312047,AA Batteries (4-pack),2,3.84,12/01/19 09:55,"353 Lakeview St, Austin, TX 73301" -312048,USB-C Charging Cable,1,11.95,12/10/19 16:36,"623 Church St, Portland, ME 04101" -312049,Wired Headphones,1,11.99,12/09/19 08:18,"90 River St, New York City, NY 10001" -312050,Lightning Charging Cable,1,14.95,12/22/19 19:09,"174 Highland St, Austin, TX 73301" -312051,Google Phone,1,600,12/10/19 21:11,"15 8th St, Dallas, TX 75001" -312051,Wired Headphones,1,11.99,12/10/19 21:11,"15 8th St, Dallas, TX 75001" -312052,27in FHD Monitor,1,149.99,12/06/19 08:20,"788 Willow St, San Francisco, CA 94016" -312053,Google Phone,1,600,12/19/19 21:18,"345 14th St, San Francisco, CA 94016" -312053,Wired Headphones,1,11.99,12/19/19 21:18,"345 14th St, San Francisco, CA 94016" -312054,USB-C Charging Cable,1,11.95,12/17/19 09:25,"338 6th St, San Francisco, CA 94016" -312055,USB-C Charging Cable,2,11.95,12/19/19 16:01,"389 Johnson St, Boston, MA 02215" -312056,27in FHD Monitor,1,149.99,12/16/19 19:39,"113 5th St, Dallas, TX 75001" -312057,Lightning Charging Cable,1,14.95,12/29/19 20:57,"522 River St, Boston, MA 02215" -312058,USB-C Charging Cable,1,11.95,12/25/19 19:48,"653 Cherry St, Austin, TX 73301" -312059,27in 4K Gaming Monitor,1,389.99,12/30/19 20:03,"499 Highland St, New York City, NY 10001" -312060,34in Ultrawide Monitor,1,379.99,12/13/19 15:55,"699 Madison St, Boston, MA 02215" -312061,AAA Batteries (4-pack),1,2.99,12/20/19 09:15,"256 Maple St, Atlanta, GA 30301" -312062,AA Batteries (4-pack),1,3.84,12/11/19 13:38,"566 Willow St, Austin, TX 73301" -312063,USB-C Charging Cable,1,11.95,12/30/19 16:38,"370 Ridge St, Dallas, TX 75001" -312064,Apple Airpods Headphones,1,150,12/21/19 20:55,"337 Cherry St, New York City, NY 10001" -312065,AA Batteries (4-pack),2,3.84,12/26/19 21:29,"431 12th St, Seattle, WA 98101" -312066,iPhone,1,700,12/12/19 08:10,"596 Elm St, Dallas, TX 75001" -312067,Lightning Charging Cable,1,14.95,12/16/19 22:42,"510 West St, Atlanta, GA 30301" -312068,Lightning Charging Cable,1,14.95,12/20/19 10:47,"940 Main St, Austin, TX 73301" -312069,AAA Batteries (4-pack),1,2.99,12/16/19 16:07,"922 5th St, Los Angeles, CA 90001" -312070,27in 4K Gaming Monitor,1,389.99,12/21/19 16:25,"61 Meadow St, Portland, OR 97035" -312071,AA Batteries (4-pack),1,3.84,12/08/19 10:54,"97 West St, Seattle, WA 98101" -312072,Apple Airpods Headphones,1,150,12/08/19 04:40,"128 2nd St, Los Angeles, CA 90001" -312073,Lightning Charging Cable,2,14.95,12/01/19 07:43,"661 Hickory St, Boston, MA 02215" -312074,AAA Batteries (4-pack),1,2.99,12/16/19 16:24,"396 Elm St, San Francisco, CA 94016" -312075,Bose SoundSport Headphones,1,99.99,12/30/19 22:09,"589 Cherry St, Portland, OR 97035" -312076,AA Batteries (4-pack),1,3.84,12/16/19 13:50,"345 Church St, New York City, NY 10001" -312077,Google Phone,1,600,12/19/19 19:31,"465 Washington St, San Francisco, CA 94016" -312078,Lightning Charging Cable,1,14.95,12/11/19 15:36,"231 8th St, Boston, MA 02215" -312079,AA Batteries (4-pack),2,3.84,12/02/19 15:11,"794 Spruce St, San Francisco, CA 94016" -312080,Flatscreen TV,1,300,12/20/19 21:52,"665 Cherry St, San Francisco, CA 94016" -312081,AAA Batteries (4-pack),1,2.99,12/13/19 09:46,"98 Adams St, New York City, NY 10001" -312082,AA Batteries (4-pack),1,3.84,12/16/19 20:25,"89 Adams St, New York City, NY 10001" -312083,AAA Batteries (4-pack),2,2.99,12/29/19 22:32,"643 Wilson St, San Francisco, CA 94016" -312084,AA Batteries (4-pack),2,3.84,12/15/19 03:19,"102 Jackson St, Los Angeles, CA 90001" -312085,AA Batteries (4-pack),1,3.84,12/14/19 22:25,"279 Willow St, San Francisco, CA 94016" -312086,Apple Airpods Headphones,1,150,12/24/19 07:24,"799 Hill St, Boston, MA 02215" -312087,Bose SoundSport Headphones,1,99.99,12/19/19 14:36,"274 Park St, Austin, TX 73301" -312088,Flatscreen TV,1,300,12/06/19 22:57,"24 Cedar St, Dallas, TX 75001" -312089,USB-C Charging Cable,1,11.95,12/21/19 11:17,"967 Lakeview St, New York City, NY 10001" -312090,27in 4K Gaming Monitor,1,389.99,12/28/19 23:34,"593 Park St, Austin, TX 73301" -312091,AAA Batteries (4-pack),2,2.99,12/08/19 23:02,"561 Lakeview St, New York City, NY 10001" -312092,Lightning Charging Cable,1,14.95,12/24/19 06:16,"785 Hill St, San Francisco, CA 94016" -312093,Lightning Charging Cable,1,14.95,12/31/19 14:33,"539 Adams St, San Francisco, CA 94016" -312094,iPhone,1,700,12/30/19 15:59,"559 Main St, San Francisco, CA 94016" -312095,34in Ultrawide Monitor,1,379.99,12/27/19 21:23,"516 1st St, Boston, MA 02215" -312096,ThinkPad Laptop,1,999.99,12/10/19 15:28,"659 13th St, Atlanta, GA 30301" -312097,Apple Airpods Headphones,1,150,12/17/19 19:55,"760 1st St, San Francisco, CA 94016" -312098,Apple Airpods Headphones,1,150,12/28/19 14:41,"246 9th St, Seattle, WA 98101" -312099,Bose SoundSport Headphones,1,99.99,12/01/19 08:54,"274 Dogwood St, San Francisco, CA 94016" -312100,34in Ultrawide Monitor,1,379.99,12/10/19 13:56,"645 Lakeview St, Los Angeles, CA 90001" -312101,Apple Airpods Headphones,1,150,12/12/19 03:40,"153 14th St, Portland, ME 04101" -312102,USB-C Charging Cable,1,11.95,12/09/19 16:38,"338 Lake St, San Francisco, CA 94016" -312103,Wired Headphones,1,11.99,12/11/19 13:05,"628 Jackson St, Boston, MA 02215" -312104,Lightning Charging Cable,1,14.95,12/03/19 08:27,"168 Washington St, San Francisco, CA 94016" -312105,Apple Airpods Headphones,1,150,12/29/19 19:15,"750 9th St, Portland, ME 04101" -312106,ThinkPad Laptop,1,999.99,12/20/19 07:22,"604 Washington St, Austin, TX 73301" -312107,AA Batteries (4-pack),1,3.84,12/03/19 18:08,"141 Church St, Dallas, TX 75001" -312108,27in 4K Gaming Monitor,1,389.99,12/11/19 11:30,"8 1st St, Atlanta, GA 30301" -312109,USB-C Charging Cable,3,11.95,12/20/19 14:28,"408 Dogwood St, San Francisco, CA 94016" -312110,Apple Airpods Headphones,1,150,12/09/19 18:22,"956 8th St, New York City, NY 10001" -312111,Lightning Charging Cable,1,14.95,12/22/19 10:59,"947 14th St, Los Angeles, CA 90001" -312112,AAA Batteries (4-pack),2,2.99,12/23/19 11:03,"713 Meadow St, Portland, OR 97035" -312113,Apple Airpods Headphones,1,150,12/19/19 13:16,"635 8th St, New York City, NY 10001" -312114,20in Monitor,1,109.99,12/08/19 12:59,"592 Spruce St, Los Angeles, CA 90001" -312115,Lightning Charging Cable,1,14.95,12/19/19 14:37,"463 Wilson St, San Francisco, CA 94016" -312116,Google Phone,1,600,12/15/19 09:54,"26 Willow St, Austin, TX 73301" -312117,Macbook Pro Laptop,1,1700,12/14/19 12:39,"628 Dogwood St, San Francisco, CA 94016" -312118,Lightning Charging Cable,1,14.95,12/01/19 11:37,"622 Walnut St, Boston, MA 02215" -312119,ThinkPad Laptop,1,999.99,12/06/19 21:53,"635 Maple St, Atlanta, GA 30301" -312120,Wired Headphones,1,11.99,12/25/19 18:32,"414 Jackson St, San Francisco, CA 94016" -312121,ThinkPad Laptop,1,999.99,12/12/19 12:43,"788 Elm St, Los Angeles, CA 90001" -312122,27in FHD Monitor,1,149.99,12/23/19 13:15,"952 River St, New York City, NY 10001" -312123,USB-C Charging Cable,1,11.95,12/03/19 17:22,"528 13th St, Portland, OR 97035" -312124,AAA Batteries (4-pack),1,2.99,12/04/19 18:56,"668 Hill St, Seattle, WA 98101" -312125,AA Batteries (4-pack),1,3.84,12/09/19 14:58,"88 Willow St, San Francisco, CA 94016" -312126,AAA Batteries (4-pack),1,2.99,12/23/19 23:29,"548 West St, Los Angeles, CA 90001" -312127,27in 4K Gaming Monitor,1,389.99,12/22/19 10:09,"390 West St, Atlanta, GA 30301" -312128,Wired Headphones,1,11.99,12/05/19 20:07,"53 River St, New York City, NY 10001" -312129,AA Batteries (4-pack),2,3.84,12/23/19 21:17,"411 1st St, New York City, NY 10001" -312130,Vareebadd Phone,1,400,12/05/19 20:22,"923 7th St, San Francisco, CA 94016" -312131,Flatscreen TV,1,300,12/10/19 07:53,"655 4th St, San Francisco, CA 94016" -312132,Bose SoundSport Headphones,1,99.99,12/16/19 13:23,"927 4th St, San Francisco, CA 94016" -312133,AAA Batteries (4-pack),1,2.99,12/13/19 12:17,"497 2nd St, San Francisco, CA 94016" -312134,Bose SoundSport Headphones,1,99.99,12/19/19 21:04,"899 Cherry St, New York City, NY 10001" -312135,27in 4K Gaming Monitor,1,389.99,12/08/19 18:28,"941 Walnut St, Boston, MA 02215" -312136,Bose SoundSport Headphones,1,99.99,12/02/19 13:57,"576 Walnut St, New York City, NY 10001" -312137,27in 4K Gaming Monitor,1,389.99,12/29/19 21:38,"142 Wilson St, San Francisco, CA 94016" -312138,Wired Headphones,1,11.99,12/26/19 10:16,"987 Hill St, San Francisco, CA 94016" -312139,Lightning Charging Cable,1,14.95,12/22/19 14:24,"485 Walnut St, Los Angeles, CA 90001" -312140,Wired Headphones,1,11.99,12/13/19 11:54,"923 8th St, New York City, NY 10001" -312141,iPhone,1,700,12/02/19 14:37,"336 Maple St, Los Angeles, CA 90001" -312142,AA Batteries (4-pack),2,3.84,12/20/19 22:05,"51 Hill St, San Francisco, CA 94016" -312143,Wired Headphones,1,11.99,12/18/19 12:38,"992 Hickory St, Dallas, TX 75001" -312144,Wired Headphones,1,11.99,12/19/19 19:59,"714 Meadow St, New York City, NY 10001" -312145,Wired Headphones,1,11.99,12/12/19 11:19,"818 Lincoln St, New York City, NY 10001" -312146,Apple Airpods Headphones,1,150,12/02/19 18:56,"350 4th St, Austin, TX 73301" -312147,Lightning Charging Cable,1,14.95,12/09/19 10:48,"377 10th St, Los Angeles, CA 90001" -312148,27in 4K Gaming Monitor,1,389.99,12/09/19 17:54,"783 12th St, Boston, MA 02215" -312149,USB-C Charging Cable,1,11.95,12/18/19 14:22,"512 Church St, Boston, MA 02215" -312150,AAA Batteries (4-pack),2,2.99,12/19/19 07:43,"326 Forest St, New York City, NY 10001" -312151,AA Batteries (4-pack),1,3.84,12/30/19 21:43,"53 North St, Dallas, TX 75001" -312152,AAA Batteries (4-pack),1,2.99,12/15/19 08:16,"932 Elm St, San Francisco, CA 94016" -312153,Google Phone,1,600,12/04/19 18:45,"83 Forest St, Seattle, WA 98101" -312154,USB-C Charging Cable,1,11.95,12/30/19 10:01,"572 Maple St, Los Angeles, CA 90001" -312155,AAA Batteries (4-pack),3,2.99,12/28/19 20:03,"899 2nd St, New York City, NY 10001" -312156,Lightning Charging Cable,1,14.95,12/19/19 14:29,"565 1st St, Portland, OR 97035" -312157,AA Batteries (4-pack),1,3.84,12/16/19 17:56,"147 West St, Los Angeles, CA 90001" -312158,Lightning Charging Cable,1,14.95,12/02/19 00:16,"510 Jackson St, Los Angeles, CA 90001" -312159,Lightning Charging Cable,1,14.95,12/20/19 13:52,"826 Highland St, San Francisco, CA 94016" -312160,20in Monitor,1,109.99,12/12/19 11:32,"795 Washington St, San Francisco, CA 94016" -312161,Flatscreen TV,1,300,12/28/19 20:14,"410 Church St, Seattle, WA 98101" -312162,Flatscreen TV,1,300,12/25/19 14:40,"936 South St, Austin, TX 73301" -312163,AA Batteries (4-pack),3,3.84,12/29/19 16:14,"956 Madison St, San Francisco, CA 94016" -312164,USB-C Charging Cable,1,11.95,12/25/19 06:58,"825 13th St, Austin, TX 73301" -312164,Wired Headphones,1,11.99,12/25/19 06:58,"825 13th St, Austin, TX 73301" -312165,USB-C Charging Cable,1,11.95,12/11/19 11:51,"645 Hill St, Los Angeles, CA 90001" -312166,Macbook Pro Laptop,1,1700,12/26/19 13:28,"269 Forest St, Austin, TX 73301" -312167,AA Batteries (4-pack),2,3.84,12/11/19 09:47,"587 Cedar St, New York City, NY 10001" -312168,AAA Batteries (4-pack),1,2.99,12/29/19 10:27,"804 Ridge St, San Francisco, CA 94016" -312169,USB-C Charging Cable,1,11.95,12/14/19 07:19,"572 Lake St, Portland, OR 97035" -312170,AAA Batteries (4-pack),1,2.99,12/13/19 16:28,"596 Sunset St, Seattle, WA 98101" -312171,AA Batteries (4-pack),1,3.84,12/17/19 13:15,"666 1st St, San Francisco, CA 94016" -312172,AAA Batteries (4-pack),2,2.99,12/16/19 09:30,"439 Elm St, Los Angeles, CA 90001" -312173,34in Ultrawide Monitor,1,379.99,12/26/19 17:13,"272 Wilson St, Dallas, TX 75001" -312174,USB-C Charging Cable,1,11.95,12/06/19 09:57,"865 River St, Atlanta, GA 30301" -312175,20in Monitor,1,109.99,12/19/19 15:39,"496 4th St, New York City, NY 10001" -312176,USB-C Charging Cable,1,11.95,12/17/19 14:31,"383 Wilson St, New York City, NY 10001" -312177,USB-C Charging Cable,1,11.95,12/24/19 19:25,"644 9th St, Portland, OR 97035" -312178,AAA Batteries (4-pack),1,2.99,12/05/19 19:17,"625 Jackson St, Portland, OR 97035" -312179,AA Batteries (4-pack),3,3.84,12/16/19 21:55,"754 Jackson St, San Francisco, CA 94016" -312180,Wired Headphones,1,11.99,12/16/19 22:27,"634 7th St, San Francisco, CA 94016" -312181,Macbook Pro Laptop,1,1700,12/26/19 13:12,"718 Park St, San Francisco, CA 94016" -312182,AA Batteries (4-pack),1,3.84,12/02/19 06:27,"267 12th St, San Francisco, CA 94016" -312183,AAA Batteries (4-pack),1,2.99,12/04/19 18:35,"256 River St, San Francisco, CA 94016" -312184,27in 4K Gaming Monitor,1,389.99,12/14/19 10:03,"521 11th St, Dallas, TX 75001" -312185,USB-C Charging Cable,1,11.95,12/21/19 19:41,"241 Adams St, Portland, OR 97035" -312186,iPhone,1,700,12/19/19 13:32,"645 Spruce St, Los Angeles, CA 90001" -312187,AAA Batteries (4-pack),6,2.99,12/23/19 10:07,"943 Forest St, Los Angeles, CA 90001" -312188,Macbook Pro Laptop,1,1700,12/20/19 12:09,"359 North St, Boston, MA 02215" -312189,iPhone,1,700,12/07/19 07:31,"747 Cherry St, Austin, TX 73301" -312190,AAA Batteries (4-pack),1,2.99,12/03/19 11:42,"355 Forest St, San Francisco, CA 94016" -312191,AAA Batteries (4-pack),1,2.99,12/28/19 14:09,"501 River St, Boston, MA 02215" -312192,20in Monitor,1,109.99,12/23/19 22:11,"547 Meadow St, Portland, ME 04101" -312193,20in Monitor,1,109.99,12/13/19 04:29,"452 Hill St, Boston, MA 02215" -312194,AAA Batteries (4-pack),1,2.99,12/03/19 17:12,"319 14th St, San Francisco, CA 94016" -312195,Bose SoundSport Headphones,1,99.99,12/19/19 21:31,"680 Elm St, San Francisco, CA 94016" -312196,Flatscreen TV,1,300,12/29/19 23:12,"76 Hill St, New York City, NY 10001" -312197,27in FHD Monitor,1,149.99,12/01/19 17:32,"911 1st St, New York City, NY 10001" -312198,Lightning Charging Cable,1,14.95,12/19/19 09:27,"489 Maple St, Dallas, TX 75001" -312199,27in 4K Gaming Monitor,1,389.99,12/05/19 17:30,"625 Washington St, Dallas, TX 75001" -312200,Google Phone,1,600,12/22/19 17:34,"297 Johnson St, Dallas, TX 75001" -312201,AA Batteries (4-pack),2,3.84,12/16/19 22:43,"3 Ridge St, Seattle, WA 98101" -312201,20in Monitor,1,109.99,12/16/19 22:43,"3 Ridge St, Seattle, WA 98101" -312202,Apple Airpods Headphones,1,150,12/11/19 21:31,"178 North St, Boston, MA 02215" -312203,Flatscreen TV,1,300,12/25/19 14:05,"713 7th St, Seattle, WA 98101" -312204,AA Batteries (4-pack),2,3.84,12/05/19 15:19,"589 Lake St, Boston, MA 02215" -312205,27in 4K Gaming Monitor,1,389.99,12/10/19 19:56,"271 6th St, Dallas, TX 75001" -312206,Google Phone,1,600,12/13/19 20:37,"225 Madison St, Austin, TX 73301" -312207,AA Batteries (4-pack),1,3.84,12/12/19 00:13,"893 8th St, Los Angeles, CA 90001" -312208,Wired Headphones,2,11.99,12/25/19 17:58,"668 Cherry St, San Francisco, CA 94016" -312209,Bose SoundSport Headphones,1,99.99,12/08/19 12:07,"513 Sunset St, Atlanta, GA 30301" -312210,27in 4K Gaming Monitor,1,389.99,12/16/19 11:28,"586 Chestnut St, San Francisco, CA 94016" -312211,AA Batteries (4-pack),1,3.84,12/23/19 03:31,"622 Adams St, Atlanta, GA 30301" -312212,AA Batteries (4-pack),1,3.84,12/11/19 12:50,"973 Ridge St, San Francisco, CA 94016" -312213,AAA Batteries (4-pack),1,2.99,12/04/19 07:00,"236 Hill St, Atlanta, GA 30301" -312214,AA Batteries (4-pack),1,3.84,12/01/19 12:35,"989 Church St, San Francisco, CA 94016" -312215,Wired Headphones,1,11.99,12/13/19 09:18,"711 West St, Boston, MA 02215" -312216,Bose SoundSport Headphones,1,99.99,12/19/19 13:52,"606 7th St, Seattle, WA 98101" -312217,Flatscreen TV,1,300,12/09/19 11:59,"107 Jefferson St, Dallas, TX 75001" -312218,Bose SoundSport Headphones,1,99.99,12/07/19 21:26,"234 Maple St, San Francisco, CA 94016" -312219,AAA Batteries (4-pack),1,2.99,12/26/19 16:01,"908 Spruce St, New York City, NY 10001" -312220,AAA Batteries (4-pack),1,2.99,12/16/19 19:05,"741 Hill St, Austin, TX 73301" -312221,USB-C Charging Cable,1,11.95,12/27/19 17:52,"542 6th St, Los Angeles, CA 90001" -312222,Apple Airpods Headphones,1,150,12/30/19 15:06,"803 Willow St, New York City, NY 10001" -312223,LG Washing Machine,1,600.0,12/18/19 20:19,"428 4th St, San Francisco, CA 94016" -312224,USB-C Charging Cable,1,11.95,12/06/19 07:10,"269 Adams St, Portland, OR 97035" -312225,Bose SoundSport Headphones,1,99.99,12/22/19 00:14,"815 South St, Los Angeles, CA 90001" -312226,Lightning Charging Cable,1,14.95,12/01/19 20:34,"266 Lake St, Los Angeles, CA 90001" -312227,34in Ultrawide Monitor,1,379.99,12/09/19 22:46,"934 8th St, Los Angeles, CA 90001" -312228,20in Monitor,1,109.99,12/18/19 23:08,"514 9th St, Boston, MA 02215" -312228,ThinkPad Laptop,1,999.99,12/18/19 23:08,"514 9th St, Boston, MA 02215" -312229,AA Batteries (4-pack),1,3.84,12/06/19 16:30,"676 Hill St, San Francisco, CA 94016" -312230,34in Ultrawide Monitor,1,379.99,12/12/19 09:23,"397 14th St, San Francisco, CA 94016" -312231,Wired Headphones,1,11.99,12/24/19 10:59,"820 Lakeview St, Los Angeles, CA 90001" -312232,Lightning Charging Cable,1,14.95,12/29/19 22:21,"43 Jefferson St, Boston, MA 02215" -312233,Lightning Charging Cable,1,14.95,12/23/19 23:26,"366 Lakeview St, Atlanta, GA 30301" -312234,34in Ultrawide Monitor,1,379.99,12/11/19 11:50,"851 Church St, New York City, NY 10001" -312235,AAA Batteries (4-pack),1,2.99,12/21/19 10:24,"425 8th St, New York City, NY 10001" -312236,AAA Batteries (4-pack),1,2.99,12/09/19 16:04,"517 Main St, Los Angeles, CA 90001" -312237,Lightning Charging Cable,3,14.95,12/11/19 19:28,"356 Willow St, San Francisco, CA 94016" -312238,USB-C Charging Cable,1,11.95,12/30/19 23:05,"237 Walnut St, Dallas, TX 75001" -312239,Wired Headphones,1,11.99,12/19/19 22:32,"611 North St, San Francisco, CA 94016" -312240,Vareebadd Phone,1,400,12/21/19 22:14,"132 Wilson St, New York City, NY 10001" -312241,34in Ultrawide Monitor,1,379.99,12/01/19 20:28,"81 14th St, New York City, NY 10001" -312242,AA Batteries (4-pack),2,3.84,12/07/19 12:06,"271 Forest St, San Francisco, CA 94016" -312243,27in 4K Gaming Monitor,1,389.99,12/18/19 08:35,"132 Willow St, Boston, MA 02215" -312244,27in FHD Monitor,1,149.99,12/22/19 09:33,"97 12th St, Los Angeles, CA 90001" -312245,Apple Airpods Headphones,1,150,12/25/19 15:48,"8 Jackson St, Los Angeles, CA 90001" -312246,Lightning Charging Cable,1,14.95,12/14/19 13:36,"687 Willow St, Seattle, WA 98101" -312247,Macbook Pro Laptop,1,1700,12/31/19 20:19,"907 Spruce St, Seattle, WA 98101" -312248,27in FHD Monitor,1,149.99,12/29/19 18:39,"714 Willow St, San Francisco, CA 94016" -312249,USB-C Charging Cable,1,11.95,12/14/19 11:49,"440 Lake St, San Francisco, CA 94016" -312250,AA Batteries (4-pack),1,3.84,12/21/19 17:05,"404 Center St, New York City, NY 10001" -312251,Lightning Charging Cable,1,14.95,12/27/19 14:10,"500 2nd St, Seattle, WA 98101" -312252,Flatscreen TV,1,300,12/22/19 22:38,"388 9th St, Atlanta, GA 30301" -312253,20in Monitor,1,109.99,12/16/19 15:45,"824 12th St, Austin, TX 73301" -312254,iPhone,1,700,12/19/19 22:20,"11 Park St, Portland, OR 97035" -312255,USB-C Charging Cable,1,11.95,12/24/19 10:12,"126 Lake St, Los Angeles, CA 90001" -312256,AAA Batteries (4-pack),1,2.99,12/10/19 14:27,"66 Dogwood St, Atlanta, GA 30301" -312257,27in FHD Monitor,1,149.99,12/23/19 22:22,"44 Chestnut St, Portland, OR 97035" -312258,Wired Headphones,1,11.99,12/31/19 15:49,"101 8th St, San Francisco, CA 94016" -312259,20in Monitor,1,109.99,12/09/19 17:19,"459 Cherry St, San Francisco, CA 94016" -312259,USB-C Charging Cable,1,11.95,12/09/19 17:19,"459 Cherry St, San Francisco, CA 94016" -312260,27in FHD Monitor,1,149.99,12/07/19 20:12,"567 12th St, New York City, NY 10001" -312261,Google Phone,1,600,12/16/19 23:52,"48 North St, Seattle, WA 98101" -312262,USB-C Charging Cable,1,11.95,12/26/19 19:16,"911 11th St, San Francisco, CA 94016" -312263,Apple Airpods Headphones,1,150,12/08/19 13:23,"805 Highland St, Los Angeles, CA 90001" -312264,Lightning Charging Cable,1,14.95,12/04/19 20:39,"88 Walnut St, Dallas, TX 75001" -312265,AA Batteries (4-pack),1,3.84,12/12/19 14:55,"139 Hill St, San Francisco, CA 94016" -312266,USB-C Charging Cable,1,11.95,12/22/19 19:14,"681 Wilson St, Boston, MA 02215" -312267,Wired Headphones,1,11.99,12/12/19 18:04,"244 Walnut St, New York City, NY 10001" -312268,Wired Headphones,1,11.99,12/04/19 11:14,"621 Main St, New York City, NY 10001" -312269,Wired Headphones,1,11.99,12/23/19 17:58,"767 North St, New York City, NY 10001" -312270,Vareebadd Phone,1,400,12/12/19 21:34,"603 Center St, Boston, MA 02215" -312270,USB-C Charging Cable,1,11.95,12/12/19 21:34,"603 Center St, Boston, MA 02215" -312271,Apple Airpods Headphones,1,150,12/07/19 23:40,"392 Adams St, Atlanta, GA 30301" -312272,Lightning Charging Cable,1,14.95,12/26/19 10:17,"339 Hickory St, San Francisco, CA 94016" -312273,AA Batteries (4-pack),1,3.84,12/05/19 13:45,"212 Forest St, New York City, NY 10001" -312274,Apple Airpods Headphones,1,150,12/17/19 00:14,"706 14th St, New York City, NY 10001" -312275,USB-C Charging Cable,1,11.95,12/30/19 18:34,"672 Wilson St, New York City, NY 10001" -312276,USB-C Charging Cable,1,11.95,12/27/19 09:23,"427 Madison St, San Francisco, CA 94016" -312277,USB-C Charging Cable,1,11.95,12/05/19 17:21,"210 Church St, San Francisco, CA 94016" -312278,Apple Airpods Headphones,1,150,12/07/19 17:34,"817 Washington St, New York City, NY 10001" -312279,AAA Batteries (4-pack),1,2.99,12/30/19 18:14,"953 Church St, Portland, OR 97035" -312280,27in 4K Gaming Monitor,1,389.99,12/14/19 20:38,"347 Cherry St, New York City, NY 10001" -312281,AA Batteries (4-pack),1,3.84,12/19/19 16:39,"442 River St, Los Angeles, CA 90001" -312282,AAA Batteries (4-pack),1,2.99,12/19/19 16:19,"454 Meadow St, Atlanta, GA 30301" -312283,Wired Headphones,1,11.99,12/05/19 14:57,"615 Pine St, Austin, TX 73301" -312284,AA Batteries (4-pack),2,3.84,12/22/19 20:11,"471 14th St, Atlanta, GA 30301" -312285,AA Batteries (4-pack),1,3.84,12/01/19 20:17,"938 14th St, Austin, TX 73301" -312286,AA Batteries (4-pack),1,3.84,12/04/19 13:09,"167 Ridge St, Atlanta, GA 30301" -312287,Lightning Charging Cable,2,14.95,12/02/19 09:38,"575 7th St, Los Angeles, CA 90001" -312288,AAA Batteries (4-pack),2,2.99,12/31/19 11:31,"700 6th St, San Francisco, CA 94016" -312289,Lightning Charging Cable,1,14.95,12/08/19 12:56,"949 9th St, San Francisco, CA 94016" -312290,Apple Airpods Headphones,1,150,12/03/19 14:09,"443 Cherry St, San Francisco, CA 94016" -312291,Bose SoundSport Headphones,1,99.99,12/09/19 10:43,"146 Meadow St, Austin, TX 73301" -312292,AAA Batteries (4-pack),1,2.99,12/25/19 17:33,"364 Wilson St, Austin, TX 73301" -312293,AAA Batteries (4-pack),2,2.99,12/21/19 23:54,"967 Adams St, San Francisco, CA 94016" -312294,20in Monitor,1,109.99,12/31/19 15:37,"3 Jackson St, New York City, NY 10001" -312295,AA Batteries (4-pack),1,3.84,12/18/19 05:36,"352 Washington St, Seattle, WA 98101" -312296,AAA Batteries (4-pack),1,2.99,12/19/19 22:36,"717 Hickory St, Los Angeles, CA 90001" -312297,Apple Airpods Headphones,1,150,12/27/19 11:36,"567 7th St, Seattle, WA 98101" -312298,Wired Headphones,1,11.99,12/20/19 20:42,"561 Willow St, San Francisco, CA 94016" -312299,USB-C Charging Cable,1,11.95,12/11/19 13:18,"437 Meadow St, Boston, MA 02215" -312300,USB-C Charging Cable,2,11.95,12/11/19 08:44,"961 9th St, Boston, MA 02215" -312301,USB-C Charging Cable,1,11.95,12/11/19 21:31,"906 Spruce St, Atlanta, GA 30301" -312302,AA Batteries (4-pack),2,3.84,12/20/19 08:49,"995 Dogwood St, Portland, OR 97035" -312303,27in 4K Gaming Monitor,1,389.99,12/22/19 09:45,"304 Main St, San Francisco, CA 94016" -312304,Google Phone,1,600,12/31/19 22:37,"319 Main St, Boston, MA 02215" -312305,ThinkPad Laptop,1,999.99,12/10/19 10:07,"77 Hill St, Atlanta, GA 30301" -312306,27in 4K Gaming Monitor,1,389.99,12/22/19 21:59,"34 Ridge St, Los Angeles, CA 90001" -312307,Lightning Charging Cable,1,14.95,12/03/19 17:39,"462 Park St, New York City, NY 10001" -312308,AA Batteries (4-pack),1,3.84,12/30/19 09:19,"919 Church St, New York City, NY 10001" -312309,AA Batteries (4-pack),1,3.84,12/12/19 18:41,"199 8th St, Los Angeles, CA 90001" -312310,AAA Batteries (4-pack),1,2.99,12/23/19 18:54,"358 Washington St, Los Angeles, CA 90001" -312311,Apple Airpods Headphones,1,150,12/12/19 16:59,"97 11th St, Los Angeles, CA 90001" -312312,AA Batteries (4-pack),1,3.84,12/03/19 12:41,"427 4th St, San Francisco, CA 94016" -312313,Wired Headphones,1,11.99,12/03/19 14:30,"491 West St, Los Angeles, CA 90001" -312314,Lightning Charging Cable,1,14.95,12/17/19 15:06,"793 6th St, Seattle, WA 98101" -312315,34in Ultrawide Monitor,1,379.99,12/13/19 22:33,"219 1st St, San Francisco, CA 94016" -312316,USB-C Charging Cable,1,11.95,12/11/19 08:05,"82 10th St, Seattle, WA 98101" -312317,27in 4K Gaming Monitor,1,389.99,12/09/19 14:58,"617 Chestnut St, Austin, TX 73301" -312318,Lightning Charging Cable,1,14.95,12/22/19 13:31,"639 8th St, Boston, MA 02215" -312319,27in 4K Gaming Monitor,1,389.99,12/03/19 15:52,"785 8th St, Los Angeles, CA 90001" -312320,Apple Airpods Headphones,1,150,12/06/19 23:55,"550 Church St, Austin, TX 73301" -312321,USB-C Charging Cable,2,11.95,12/01/19 17:18,"29 4th St, San Francisco, CA 94016" -312322,27in FHD Monitor,1,149.99,12/11/19 01:48,"780 Willow St, Los Angeles, CA 90001" -312323,Wired Headphones,1,11.99,12/28/19 15:01,"402 Chestnut St, San Francisco, CA 94016" -312324,Wired Headphones,1,11.99,12/02/19 12:59,"838 Washington St, Los Angeles, CA 90001" -312325,AA Batteries (4-pack),1,3.84,12/19/19 16:40,"9 Maple St, Boston, MA 02215" -312326,Google Phone,1,600,12/13/19 09:24,"107 Jackson St, San Francisco, CA 94016" -312327,Flatscreen TV,1,300,12/02/19 23:05,"511 Lake St, Los Angeles, CA 90001" -312328,AAA Batteries (4-pack),6,2.99,12/21/19 11:00,"351 Lincoln St, San Francisco, CA 94016" -312329,Bose SoundSport Headphones,1,99.99,12/20/19 18:42,"15 8th St, Boston, MA 02215" -312330,AA Batteries (4-pack),1,3.84,12/28/19 20:02,"598 Walnut St, San Francisco, CA 94016" -312331,Google Phone,1,600,12/10/19 19:45,"609 13th St, Portland, OR 97035" -312332,27in FHD Monitor,1,149.99,12/13/19 14:44,"123 13th St, Boston, MA 02215" -312333,Lightning Charging Cable,1,14.95,12/04/19 17:30,"929 Park St, New York City, NY 10001" -312334,Apple Airpods Headphones,1,150,12/11/19 15:41,"652 North St, Dallas, TX 75001" -312335,USB-C Charging Cable,1,11.95,12/01/19 20:55,"874 12th St, San Francisco, CA 94016" -312336,27in FHD Monitor,1,149.99,12/26/19 00:30,"759 4th St, Portland, OR 97035" -312337,USB-C Charging Cable,1,11.95,12/16/19 14:59,"971 Madison St, San Francisco, CA 94016" -312338,27in FHD Monitor,1,149.99,12/03/19 14:09,"908 Adams St, Los Angeles, CA 90001" -312339,Google Phone,1,600,12/17/19 21:17,"663 Elm St, Portland, OR 97035" -312339,USB-C Charging Cable,1,11.95,12/17/19 21:17,"663 Elm St, Portland, OR 97035" -312340,Bose SoundSport Headphones,1,99.99,12/08/19 13:09,"686 Walnut St, Portland, OR 97035" -312341,AA Batteries (4-pack),1,3.84,12/05/19 13:57,"448 South St, Los Angeles, CA 90001" -312342,Wired Headphones,1,11.99,12/02/19 10:30,"703 Dogwood St, San Francisco, CA 94016" -312343,Apple Airpods Headphones,1,150,12/27/19 23:44,"183 Ridge St, Portland, OR 97035" -312344,AAA Batteries (4-pack),1,2.99,12/31/19 01:14,"709 Meadow St, Los Angeles, CA 90001" -312345,Apple Airpods Headphones,1,150,12/27/19 09:08,"644 Dogwood St, New York City, NY 10001" -312346,USB-C Charging Cable,1,11.95,12/21/19 08:21,"858 Lakeview St, New York City, NY 10001" -312346,Bose SoundSport Headphones,1,99.99,12/21/19 08:21,"858 Lakeview St, New York City, NY 10001" -312347,ThinkPad Laptop,1,999.99,12/09/19 12:46,"360 Meadow St, New York City, NY 10001" -312348,Wired Headphones,1,11.99,12/15/19 18:33,"738 Washington St, San Francisco, CA 94016" -312349,27in 4K Gaming Monitor,1,389.99,12/26/19 12:46,"990 Adams St, New York City, NY 10001" -312350,Bose SoundSport Headphones,1,99.99,12/18/19 11:41,"324 Johnson St, Atlanta, GA 30301" -312351,Google Phone,1,600,12/13/19 02:22,"136 South St, Portland, OR 97035" -312352,Flatscreen TV,1,300,12/08/19 12:07,"321 Adams St, San Francisco, CA 94016" -312353,Apple Airpods Headphones,1,150,12/26/19 12:05,"897 Chestnut St, New York City, NY 10001" -312354,Lightning Charging Cable,1,14.95,12/19/19 07:27,"126 13th St, Portland, OR 97035" -312355,AAA Batteries (4-pack),1,2.99,12/06/19 11:49,"449 Wilson St, Los Angeles, CA 90001" -312356,Lightning Charging Cable,1,14.95,12/15/19 07:43,"752 9th St, Atlanta, GA 30301" -312357,Wired Headphones,1,11.99,12/09/19 17:34,"509 7th St, Boston, MA 02215" -312358,Wired Headphones,2,11.99,12/10/19 12:10,"571 North St, New York City, NY 10001" -312359,Lightning Charging Cable,2,14.95,12/26/19 10:13,"819 Dogwood St, Atlanta, GA 30301" -312360,AA Batteries (4-pack),1,3.84,12/19/19 21:26,"707 Jackson St, Boston, MA 02215" -312361,Flatscreen TV,1,300,12/19/19 15:35,"97 Center St, Atlanta, GA 30301" -312362,AAA Batteries (4-pack),1,2.99,12/26/19 09:56,"294 South St, San Francisco, CA 94016" -312363,Apple Airpods Headphones,1,150,12/27/19 21:04,"568 River St, New York City, NY 10001" -312364,27in FHD Monitor,1,149.99,12/15/19 13:30,"325 Church St, Boston, MA 02215" -312365,USB-C Charging Cable,1,11.95,12/10/19 18:10,"987 River St, Los Angeles, CA 90001" -312366,AAA Batteries (4-pack),1,2.99,12/13/19 23:20,"189 8th St, Los Angeles, CA 90001" -312367,USB-C Charging Cable,1,11.95,12/17/19 20:52,"946 West St, Los Angeles, CA 90001" -312368,Macbook Pro Laptop,1,1700,12/10/19 11:53,"128 Main St, New York City, NY 10001" -312369,Wired Headphones,1,11.99,12/28/19 13:35,"410 Lake St, New York City, NY 10001" -312370,Apple Airpods Headphones,1,150,12/04/19 14:07,"930 10th St, Atlanta, GA 30301" -312371,Apple Airpods Headphones,1,150,12/10/19 07:56,"921 North St, San Francisco, CA 94016" -312372,Lightning Charging Cable,1,14.95,12/13/19 23:07,"458 4th St, Atlanta, GA 30301" -312373,Flatscreen TV,1,300,12/10/19 15:00,"689 Wilson St, San Francisco, CA 94016" -312374,Wired Headphones,1,11.99,12/27/19 17:30,"901 Johnson St, Atlanta, GA 30301" -312375,Lightning Charging Cable,1,14.95,12/26/19 18:20,"83 11th St, San Francisco, CA 94016" -312376,20in Monitor,1,109.99,12/24/19 11:14,"913 Forest St, Atlanta, GA 30301" -312377,Apple Airpods Headphones,1,150,12/05/19 23:25,"712 Sunset St, Seattle, WA 98101" -312378,Flatscreen TV,1,300,12/10/19 09:08,"630 Hickory St, Portland, OR 97035" -312379,34in Ultrawide Monitor,1,379.99,12/21/19 18:43,"160 Park St, San Francisco, CA 94016" -312380,Bose SoundSport Headphones,1,99.99,12/01/19 18:33,"872 11th St, Dallas, TX 75001" -312381,27in 4K Gaming Monitor,1,389.99,12/18/19 17:31,"653 Main St, Seattle, WA 98101" -312382,34in Ultrawide Monitor,1,379.99,12/29/19 09:53,"349 Willow St, Los Angeles, CA 90001" -312383,AAA Batteries (4-pack),1,2.99,12/04/19 13:24,"467 5th St, Dallas, TX 75001" -312384,Bose SoundSport Headphones,1,99.99,12/14/19 19:28,"47 6th St, Dallas, TX 75001" -312385,Wired Headphones,1,11.99,12/10/19 15:45,"919 Maple St, Dallas, TX 75001" -312386,20in Monitor,1,109.99,12/25/19 14:13,"637 Lake St, Los Angeles, CA 90001" -312387,27in FHD Monitor,1,149.99,12/06/19 11:17,"548 Sunset St, Boston, MA 02215" -312388,Lightning Charging Cable,1,14.95,12/10/19 13:07,"842 13th St, San Francisco, CA 94016" -312389,Bose SoundSport Headphones,1,99.99,12/15/19 10:07,"7 River St, Atlanta, GA 30301" -312390,Wired Headphones,1,11.99,12/24/19 08:31,"674 Washington St, Dallas, TX 75001" -312391,AA Batteries (4-pack),3,3.84,12/25/19 05:34,"382 Madison St, New York City, NY 10001" -312392,Lightning Charging Cable,1,14.95,12/01/19 09:34,"816 7th St, Dallas, TX 75001" -312393,iPhone,1,700,12/01/19 13:47,"519 Pine St, Boston, MA 02215" -312394,Lightning Charging Cable,1,14.95,12/06/19 05:50,"127 West St, San Francisco, CA 94016" -312395,AA Batteries (4-pack),1,3.84,12/27/19 23:52,"186 12th St, Atlanta, GA 30301" -312395,ThinkPad Laptop,1,999.99,12/27/19 23:52,"186 12th St, Atlanta, GA 30301" -312396,Vareebadd Phone,1,400,12/30/19 12:48,"456 Maple St, Seattle, WA 98101" -312396,USB-C Charging Cable,1,11.95,12/30/19 12:48,"456 Maple St, Seattle, WA 98101" -312397,27in 4K Gaming Monitor,1,389.99,12/06/19 20:18,"164 Chestnut St, Los Angeles, CA 90001" -312398,Wired Headphones,2,11.99,12/14/19 22:02,"606 13th St, New York City, NY 10001" -312399,Wired Headphones,1,11.99,12/07/19 15:24,"216 Highland St, Dallas, TX 75001" -312400,USB-C Charging Cable,1,11.95,12/08/19 10:24,"140 North St, New York City, NY 10001" -312401,Apple Airpods Headphones,1,150,12/02/19 13:19,"304 Adams St, Seattle, WA 98101" -312402,Lightning Charging Cable,1,14.95,12/21/19 01:48,"310 12th St, Seattle, WA 98101" -312403,Lightning Charging Cable,1,14.95,12/28/19 11:31,"905 Cherry St, Portland, OR 97035" -312404,Wired Headphones,1,11.99,12/30/19 19:30,"416 Walnut St, Los Angeles, CA 90001" -312405,Apple Airpods Headphones,1,150,12/13/19 22:33,"278 9th St, Atlanta, GA 30301" -312406,Apple Airpods Headphones,1,150,12/09/19 01:02,"935 Dogwood St, New York City, NY 10001" -312407,Google Phone,1,600,12/09/19 15:18,"523 Elm St, Seattle, WA 98101" -312407,USB-C Charging Cable,1,11.95,12/09/19 15:18,"523 Elm St, Seattle, WA 98101" -312407,Wired Headphones,1,11.99,12/09/19 15:18,"523 Elm St, Seattle, WA 98101" -312407,Apple Airpods Headphones,1,150,12/09/19 15:18,"523 Elm St, Seattle, WA 98101" -312408,USB-C Charging Cable,1,11.95,12/23/19 02:54,"98 Jefferson St, Los Angeles, CA 90001" -312409,Vareebadd Phone,1,400,12/09/19 19:45,"112 Forest St, Boston, MA 02215" -312410,Macbook Pro Laptop,1,1700,12/13/19 21:01,"130 Elm St, Dallas, TX 75001" -312411,Lightning Charging Cable,2,14.95,12/17/19 10:44,"940 Forest St, San Francisco, CA 94016" -312412,Flatscreen TV,1,300,12/23/19 12:34,"466 Johnson St, Atlanta, GA 30301" -312413,Bose SoundSport Headphones,1,99.99,12/27/19 16:15,"436 14th St, Seattle, WA 98101" -312414,Apple Airpods Headphones,1,150,12/23/19 13:06,"937 Church St, Los Angeles, CA 90001" -312415,27in FHD Monitor,1,149.99,12/04/19 23:11,"834 Walnut St, Dallas, TX 75001" -312416,Wired Headphones,1,11.99,12/15/19 18:13,"876 7th St, San Francisco, CA 94016" -312416,Lightning Charging Cable,1,14.95,12/15/19 18:13,"876 7th St, San Francisco, CA 94016" -312417,Wired Headphones,1,11.99,12/31/19 07:21,"124 Chestnut St, Boston, MA 02215" -312418,AAA Batteries (4-pack),1,2.99,12/05/19 07:09,"410 River St, Dallas, TX 75001" -312419,AA Batteries (4-pack),1,3.84,12/23/19 22:15,"637 Dogwood St, New York City, NY 10001" -312420,AA Batteries (4-pack),1,3.84,12/16/19 07:34,"54 Main St, Atlanta, GA 30301" -312421,34in Ultrawide Monitor,1,379.99,12/07/19 00:09,"437 Highland St, San Francisco, CA 94016" -312422,Lightning Charging Cable,1,14.95,12/09/19 15:09,"613 Center St, Los Angeles, CA 90001" -312423,Bose SoundSport Headphones,1,99.99,12/10/19 09:45,"252 Jefferson St, Dallas, TX 75001" -312424,AAA Batteries (4-pack),1,2.99,12/01/19 04:24,"226 Elm St, New York City, NY 10001" -312425,Google Phone,1,600,12/27/19 14:18,"696 Main St, Seattle, WA 98101" -312426,Wired Headphones,2,11.99,12/10/19 10:06,"195 7th St, San Francisco, CA 94016" -312427,Apple Airpods Headphones,1,150,12/17/19 18:01,"424 4th St, Austin, TX 73301" -312427,Lightning Charging Cable,1,14.95,12/17/19 18:01,"424 4th St, Austin, TX 73301" -312428,Bose SoundSport Headphones,1,99.99,12/07/19 19:26,"806 Willow St, Los Angeles, CA 90001" -312429,Bose SoundSport Headphones,1,99.99,12/28/19 17:39,"706 Jefferson St, Atlanta, GA 30301" -312430,Google Phone,1,600,12/15/19 00:56,"117 Church St, Seattle, WA 98101" -312431,Wired Headphones,1,11.99,12/13/19 06:50,"141 Lincoln St, New York City, NY 10001" -312431,34in Ultrawide Monitor,1,379.99,12/13/19 06:50,"141 Lincoln St, New York City, NY 10001" -312432,Bose SoundSport Headphones,1,99.99,12/20/19 10:36,"477 Cedar St, Seattle, WA 98101" -312433,Lightning Charging Cable,1,14.95,12/01/19 07:44,"956 Lincoln St, Seattle, WA 98101" -312434,Apple Airpods Headphones,1,150,12/20/19 09:55,"528 6th St, San Francisco, CA 94016" -312435,34in Ultrawide Monitor,1,379.99,12/28/19 20:12,"324 Johnson St, San Francisco, CA 94016" -312436,Lightning Charging Cable,1,14.95,12/07/19 11:59,"767 North St, San Francisco, CA 94016" -312437,AA Batteries (4-pack),1,3.84,12/16/19 20:20,"393 Johnson St, New York City, NY 10001" -312438,Google Phone,1,600,12/09/19 17:26,"190 Hickory St, Los Angeles, CA 90001" -312438,Wired Headphones,1,11.99,12/09/19 17:26,"190 Hickory St, Los Angeles, CA 90001" -312439,Wired Headphones,1,11.99,12/24/19 09:55,"706 Jefferson St, New York City, NY 10001" -312440,Bose SoundSport Headphones,1,99.99,12/25/19 13:01,"858 Lake St, Boston, MA 02215" -312441,AA Batteries (4-pack),1,3.84,12/15/19 10:58,"575 Hill St, Los Angeles, CA 90001" -312442,AA Batteries (4-pack),1,3.84,12/01/19 14:40,"105 14th St, San Francisco, CA 94016" -312443,Apple Airpods Headphones,1,150,12/26/19 10:19,"353 Park St, Los Angeles, CA 90001" -312444,Bose SoundSport Headphones,1,99.99,12/18/19 22:17,"621 Jackson St, Portland, OR 97035" -312445,AAA Batteries (4-pack),1,2.99,12/29/19 05:30,"480 Dogwood St, San Francisco, CA 94016" -312446,AA Batteries (4-pack),1,3.84,12/23/19 12:58,"567 6th St, Atlanta, GA 30301" -312447,AA Batteries (4-pack),1,3.84,12/21/19 15:40,"245 Dogwood St, Los Angeles, CA 90001" -312448,Apple Airpods Headphones,1,150,12/08/19 11:12,"497 Chestnut St, Atlanta, GA 30301" -312449,AA Batteries (4-pack),2,3.84,12/27/19 02:26,"497 11th St, Boston, MA 02215" -312450,27in 4K Gaming Monitor,1,389.99,12/18/19 14:16,"14 Lake St, Boston, MA 02215" -312451,Apple Airpods Headphones,1,150,12/13/19 12:16,"293 Forest St, Dallas, TX 75001" -312452,USB-C Charging Cable,1,11.95,12/05/19 10:24,"161 Park St, Dallas, TX 75001" -312453,Flatscreen TV,1,300,12/02/19 11:08,"662 Cherry St, Atlanta, GA 30301" -312454,AAA Batteries (4-pack),3,2.99,12/15/19 11:26,"332 Church St, Boston, MA 02215" -312455,27in FHD Monitor,1,149.99,12/03/19 07:44,"460 11th St, San Francisco, CA 94016" -312456,Bose SoundSport Headphones,1,99.99,12/15/19 13:45,"421 Main St, Portland, OR 97035" -312457,Bose SoundSport Headphones,1,99.99,12/02/19 11:54,"932 Church St, San Francisco, CA 94016" -312458,Wired Headphones,1,11.99,12/23/19 11:22,"44 Cherry St, New York City, NY 10001" -312459,Flatscreen TV,1,300,12/28/19 17:44,"201 Highland St, Austin, TX 73301" -312460,Bose SoundSport Headphones,1,99.99,12/03/19 09:42,"185 Chestnut St, Seattle, WA 98101" -312461,27in FHD Monitor,1,149.99,12/12/19 23:06,"749 Jefferson St, San Francisco, CA 94016" -312462,iPhone,1,700,12/08/19 13:19,"210 Spruce St, San Francisco, CA 94016" -312462,Lightning Charging Cable,1,14.95,12/08/19 13:19,"210 Spruce St, San Francisco, CA 94016" -312462,Apple Airpods Headphones,2,150,12/08/19 13:19,"210 Spruce St, San Francisco, CA 94016" -312462,Wired Headphones,1,11.99,12/08/19 13:19,"210 Spruce St, San Francisco, CA 94016" -312463,AA Batteries (4-pack),1,3.84,12/31/19 11:56,"99 Pine St, New York City, NY 10001" -312464,Lightning Charging Cable,1,14.95,12/24/19 08:33,"241 Ridge St, Seattle, WA 98101" -312465,Macbook Pro Laptop,1,1700,12/23/19 15:00,"618 1st St, Atlanta, GA 30301" -312466,AAA Batteries (4-pack),1,2.99,12/08/19 13:22,"872 Cedar St, Boston, MA 02215" -312467,27in 4K Gaming Monitor,1,389.99,12/16/19 21:09,"588 8th St, San Francisco, CA 94016" -312468,USB-C Charging Cable,1,11.95,12/28/19 19:54,"632 Forest St, San Francisco, CA 94016" -312469,USB-C Charging Cable,1,11.95,12/18/19 21:39,"699 Lincoln St, Dallas, TX 75001" -312470,Bose SoundSport Headphones,1,99.99,12/13/19 21:03,"229 Washington St, Portland, OR 97035" -312471,AAA Batteries (4-pack),1,2.99,12/11/19 19:34,"334 Church St, Atlanta, GA 30301" -312472,Bose SoundSport Headphones,1,99.99,12/24/19 19:48,"407 Madison St, San Francisco, CA 94016" -312473,AA Batteries (4-pack),1,3.84,12/18/19 15:31,"909 Washington St, Los Angeles, CA 90001" -312474,Lightning Charging Cable,1,14.95,12/19/19 21:16,"314 Dogwood St, Los Angeles, CA 90001" -312475,AA Batteries (4-pack),1,3.84,12/14/19 19:23,"654 Center St, San Francisco, CA 94016" -312476,AAA Batteries (4-pack),1,2.99,12/29/19 19:14,"300 11th St, San Francisco, CA 94016" -312477,27in 4K Gaming Monitor,1,389.99,12/18/19 17:27,"509 Lake St, Boston, MA 02215" -312478,Wired Headphones,1,11.99,12/31/19 23:17,"837 14th St, Boston, MA 02215" -312479,AAA Batteries (4-pack),1,2.99,12/17/19 10:45,"121 7th St, Austin, TX 73301" -312480,Google Phone,1,600,12/20/19 16:40,"442 8th St, New York City, NY 10001" -312481,Google Phone,1,600,12/30/19 11:04,"282 Hickory St, Atlanta, GA 30301" -312482,34in Ultrawide Monitor,1,379.99,12/18/19 06:48,"697 Jefferson St, Dallas, TX 75001" -312483,Wired Headphones,1,11.99,12/13/19 16:01,"636 Park St, Los Angeles, CA 90001" -312484,34in Ultrawide Monitor,1,379.99,12/11/19 19:39,"197 Wilson St, New York City, NY 10001" -312485,USB-C Charging Cable,1,11.95,12/13/19 13:25,"702 Dogwood St, San Francisco, CA 94016" -312486,20in Monitor,1,109.99,12/14/19 23:40,"405 10th St, Los Angeles, CA 90001" -312487,AAA Batteries (4-pack),1,2.99,12/26/19 08:44,"744 Jackson St, Seattle, WA 98101" -312488,USB-C Charging Cable,1,11.95,12/27/19 18:26,"148 Chestnut St, New York City, NY 10001" -312489,Lightning Charging Cable,1,14.95,12/05/19 11:01,"858 4th St, Los Angeles, CA 90001" -312490,Wired Headphones,1,11.99,12/31/19 20:14,"520 2nd St, Atlanta, GA 30301" -312491,iPhone,1,700,12/27/19 23:34,"759 West St, San Francisco, CA 94016" -312492,AAA Batteries (4-pack),1,2.99,12/02/19 12:24,"611 Sunset St, San Francisco, CA 94016" -312493,Apple Airpods Headphones,1,150,12/02/19 18:16,"730 Chestnut St, Seattle, WA 98101" -312494,AAA Batteries (4-pack),1,2.99,12/14/19 18:18,"631 Meadow St, Dallas, TX 75001" -312495,Bose SoundSport Headphones,1,99.99,12/22/19 19:17,"331 Meadow St, San Francisco, CA 94016" -312496,Lightning Charging Cable,1,14.95,12/25/19 13:02,"963 North St, San Francisco, CA 94016" -312497,AAA Batteries (4-pack),5,2.99,12/13/19 22:27,"557 1st St, San Francisco, CA 94016" -312498,USB-C Charging Cable,1,11.95,12/22/19 18:39,"981 8th St, Los Angeles, CA 90001" -312499,Wired Headphones,1,11.99,12/23/19 16:59,"78 Hickory St, San Francisco, CA 94016" -312500,USB-C Charging Cable,1,11.95,12/27/19 10:06,"939 Church St, Dallas, TX 75001" -312501,Bose SoundSport Headphones,1,99.99,12/18/19 19:11,"448 Meadow St, San Francisco, CA 94016" -312502,ThinkPad Laptop,1,999.99,12/07/19 14:09,"817 Maple St, Austin, TX 73301" -312503,Apple Airpods Headphones,1,150,12/30/19 15:50,"528 Lakeview St, San Francisco, CA 94016" -312504,Apple Airpods Headphones,1,150,12/14/19 18:31,"275 5th St, San Francisco, CA 94016" -312505,Lightning Charging Cable,1,14.95,12/04/19 19:46,"768 14th St, Boston, MA 02215" -312506,Lightning Charging Cable,1,14.95,12/30/19 20:01,"976 11th St, New York City, NY 10001" -312507,ThinkPad Laptop,1,999.99,12/06/19 12:05,"686 Maple St, San Francisco, CA 94016" -312508,ThinkPad Laptop,1,999.99,12/16/19 20:59,"695 8th St, Portland, OR 97035" -312509,AA Batteries (4-pack),1,3.84,12/20/19 11:03,"535 Pine St, San Francisco, CA 94016" -312510,USB-C Charging Cable,1,11.95,12/18/19 17:54,"247 9th St, Seattle, WA 98101" -312511,AAA Batteries (4-pack),2,2.99,12/05/19 12:26,"64 Hill St, Los Angeles, CA 90001" -312512,Bose SoundSport Headphones,1,99.99,12/05/19 23:36,"808 8th St, Seattle, WA 98101" -312512,AAA Batteries (4-pack),3,2.99,12/05/19 23:36,"808 8th St, Seattle, WA 98101" -312513,27in FHD Monitor,1,149.99,12/24/19 13:04,"56 7th St, Boston, MA 02215" -312514,AA Batteries (4-pack),1,3.84,12/11/19 16:21,"409 7th St, Seattle, WA 98101" -312515,Macbook Pro Laptop,1,1700,12/09/19 07:11,"639 Highland St, San Francisco, CA 94016" -312516,Wired Headphones,1,11.99,12/02/19 23:56,"549 Madison St, New York City, NY 10001" -312517,AAA Batteries (4-pack),1,2.99,12/17/19 13:50,"926 Center St, Seattle, WA 98101" -312518,AAA Batteries (4-pack),2,2.99,12/11/19 13:30,"174 Chestnut St, Seattle, WA 98101" -312519,AAA Batteries (4-pack),1,2.99,12/22/19 22:15,"57 Cherry St, New York City, NY 10001" -312520,Lightning Charging Cable,1,14.95,12/27/19 12:31,"995 Johnson St, Seattle, WA 98101" -312521,AAA Batteries (4-pack),1,2.99,12/17/19 08:41,"772 Main St, Los Angeles, CA 90001" -312522,Google Phone,1,600,12/31/19 20:49,"240 Washington St, Seattle, WA 98101" -312523,Lightning Charging Cable,1,14.95,12/31/19 13:45,"94 12th St, San Francisco, CA 94016" -312524,27in FHD Monitor,1,149.99,12/25/19 11:19,"802 Cedar St, Atlanta, GA 30301" -312525,Bose SoundSport Headphones,1,99.99,12/06/19 22:29,"790 West St, San Francisco, CA 94016" -312526,AA Batteries (4-pack),2,3.84,12/23/19 09:21,"823 7th St, Boston, MA 02215" -312527,27in FHD Monitor,1,149.99,12/09/19 17:12,"122 7th St, Boston, MA 02215" -312528,USB-C Charging Cable,1,11.95,12/16/19 10:25,"980 Hickory St, Seattle, WA 98101" -312529,Bose SoundSport Headphones,1,99.99,12/28/19 16:19,"776 Hickory St, San Francisco, CA 94016" -312530,AA Batteries (4-pack),1,3.84,12/22/19 11:54,"864 Center St, Boston, MA 02215" -312531,Lightning Charging Cable,1,14.95,12/15/19 23:53,"481 Elm St, Atlanta, GA 30301" -312532,Bose SoundSport Headphones,1,99.99,12/26/19 06:43,"115 Pine St, San Francisco, CA 94016" -312532,AAA Batteries (4-pack),1,2.99,12/26/19 06:43,"115 Pine St, San Francisco, CA 94016" -312533,USB-C Charging Cable,1,11.95,12/23/19 18:10,"777 West St, Los Angeles, CA 90001" -312534,34in Ultrawide Monitor,1,379.99,12/17/19 20:46,"688 14th St, Boston, MA 02215" -312535,27in 4K Gaming Monitor,1,389.99,12/19/19 13:25,"198 7th St, Los Angeles, CA 90001" -312536,Wired Headphones,1,11.99,12/20/19 12:37,"313 Madison St, San Francisco, CA 94016" -312537,27in 4K Gaming Monitor,1,389.99,12/14/19 01:18,"417 13th St, New York City, NY 10001" -312538,Google Phone,1,600,12/19/19 22:05,"413 Meadow St, San Francisco, CA 94016" -312539,AAA Batteries (4-pack),1,2.99,12/23/19 20:38,"608 1st St, Boston, MA 02215" -312540,Lightning Charging Cable,1,14.95,12/02/19 17:17,"59 Chestnut St, Seattle, WA 98101" -312541,27in 4K Gaming Monitor,1,389.99,12/21/19 10:02,"547 11th St, Los Angeles, CA 90001" -312542,Wired Headphones,1,11.99,12/19/19 08:17,"57 Forest St, Seattle, WA 98101" -312543,USB-C Charging Cable,1,11.95,12/26/19 12:51,"790 Elm St, Los Angeles, CA 90001" -312544,Apple Airpods Headphones,1,150,12/17/19 10:51,"997 Park St, Boston, MA 02215" -312544,AAA Batteries (4-pack),2,2.99,12/17/19 10:51,"997 Park St, Boston, MA 02215" -312545,Lightning Charging Cable,1,14.95,12/29/19 10:06,"150 4th St, Boston, MA 02215" -312546,Apple Airpods Headphones,1,150,12/19/19 11:41,"26 Adams St, New York City, NY 10001" -312547,USB-C Charging Cable,1,11.95,12/26/19 21:05,"683 Cherry St, Los Angeles, CA 90001" -312548,27in 4K Gaming Monitor,1,389.99,12/21/19 17:00,"530 Johnson St, Austin, TX 73301" -312549,Apple Airpods Headphones,1,150,12/27/19 20:32,"511 Lincoln St, San Francisco, CA 94016" -312550,27in 4K Gaming Monitor,1,389.99,12/07/19 16:41,"62 Forest St, Seattle, WA 98101" -312551,Wired Headphones,1,11.99,12/28/19 10:26,"959 Lakeview St, San Francisco, CA 94016" -312552,USB-C Charging Cable,1,11.95,12/31/19 20:01,"956 Elm St, Los Angeles, CA 90001" -312553,Apple Airpods Headphones,1,150,12/20/19 14:51,"705 South St, San Francisco, CA 94016" -312554,AAA Batteries (4-pack),1,2.99,12/31/19 04:44,"886 7th St, Dallas, TX 75001" -312555,AA Batteries (4-pack),1,3.84,12/04/19 15:07,"767 Johnson St, Austin, TX 73301" -312556,Lightning Charging Cable,1,14.95,12/23/19 19:21,"80 Walnut St, Seattle, WA 98101" -312557,LG Dryer,1,600.0,12/02/19 08:22,"560 13th St, Seattle, WA 98101" -312558,AAA Batteries (4-pack),1,2.99,12/29/19 00:59,"29 5th St, San Francisco, CA 94016" -312559,AA Batteries (4-pack),1,3.84,12/16/19 10:46,"750 West St, New York City, NY 10001" -312560,AAA Batteries (4-pack),1,2.99,12/27/19 11:03,"328 Hickory St, Seattle, WA 98101" -312561,USB-C Charging Cable,1,11.95,12/24/19 11:34,"172 Walnut St, San Francisco, CA 94016" -312562,AA Batteries (4-pack),2,3.84,12/18/19 20:27,"549 Meadow St, Los Angeles, CA 90001" -312563,USB-C Charging Cable,1,11.95,12/03/19 12:53,"530 Walnut St, New York City, NY 10001" -312564,AA Batteries (4-pack),1,3.84,12/17/19 01:08,"369 Lakeview St, San Francisco, CA 94016" -312565,Google Phone,1,600,12/07/19 18:08,"570 8th St, San Francisco, CA 94016" -312566,27in 4K Gaming Monitor,1,389.99,12/24/19 09:26,"8 Adams St, Los Angeles, CA 90001" -312567,Macbook Pro Laptop,1,1700,12/04/19 19:18,"558 Willow St, New York City, NY 10001" -312568,AAA Batteries (4-pack),1,2.99,12/23/19 19:38,"818 Dogwood St, Los Angeles, CA 90001" -312569,AAA Batteries (4-pack),2,2.99,12/29/19 16:28,"749 North St, Los Angeles, CA 90001" -312570,iPhone,1,700,12/04/19 14:55,"89 Cherry St, Seattle, WA 98101" -312571,27in FHD Monitor,1,149.99,12/21/19 12:15,"418 Main St, Seattle, WA 98101" -312572,Apple Airpods Headphones,1,150,12/08/19 20:12,"601 Adams St, Boston, MA 02215" -312573,AA Batteries (4-pack),2,3.84,12/06/19 13:10,"484 Forest St, San Francisco, CA 94016" -312574,USB-C Charging Cable,2,11.95,12/13/19 22:42,"571 Church St, Los Angeles, CA 90001" -312575,Flatscreen TV,1,300,12/13/19 18:49,"739 Wilson St, New York City, NY 10001" -312576,USB-C Charging Cable,1,11.95,12/13/19 14:37,"796 Cedar St, Dallas, TX 75001" -312577,34in Ultrawide Monitor,1,379.99,12/14/19 10:38,"697 Park St, New York City, NY 10001" -312578,Wired Headphones,1,11.99,12/10/19 17:27,"575 Pine St, San Francisco, CA 94016" -312579,Lightning Charging Cable,1,14.95,12/11/19 09:17,"75 Jackson St, Atlanta, GA 30301" -312580,Bose SoundSport Headphones,1,99.99,12/30/19 13:31,"485 Cedar St, Boston, MA 02215" -312581,Wired Headphones,1,11.99,12/25/19 09:42,"920 Park St, Dallas, TX 75001" -312582,USB-C Charging Cable,2,11.95,12/12/19 16:39,"697 Johnson St, San Francisco, CA 94016" -312583,AA Batteries (4-pack),1,3.84,12/11/19 09:17,"500 4th St, Boston, MA 02215" -312584,Lightning Charging Cable,1,14.95,12/29/19 22:44,"340 10th St, New York City, NY 10001" -312585,Apple Airpods Headphones,1,150,12/17/19 10:18,"840 River St, Seattle, WA 98101" -312586,27in 4K Gaming Monitor,1,389.99,12/27/19 21:42,"749 South St, New York City, NY 10001" -312587,Bose SoundSport Headphones,1,99.99,12/06/19 21:58,"846 River St, New York City, NY 10001" -312588,Wired Headphones,1,11.99,12/31/19 10:46,"971 Sunset St, Portland, OR 97035" -312589,Lightning Charging Cable,1,14.95,12/14/19 23:07,"255 Washington St, San Francisco, CA 94016" -312590,27in 4K Gaming Monitor,1,389.99,12/28/19 15:36,"273 Maple St, Boston, MA 02215" -312591,Bose SoundSport Headphones,1,99.99,12/30/19 12:27,"420 Meadow St, Los Angeles, CA 90001" -312592,AA Batteries (4-pack),1,3.84,12/11/19 21:48,"734 14th St, Austin, TX 73301" -312593,USB-C Charging Cable,1,11.95,12/16/19 22:42,"566 South St, San Francisco, CA 94016" -312594,AA Batteries (4-pack),3,3.84,12/09/19 06:56,"725 Church St, Seattle, WA 98101" -312595,27in FHD Monitor,1,149.99,12/22/19 13:54,"3 North St, Boston, MA 02215" -312596,Wired Headphones,1,11.99,12/23/19 11:48,"115 South St, New York City, NY 10001" -312597,USB-C Charging Cable,1,11.95,12/02/19 13:57,"812 12th St, San Francisco, CA 94016" -312598,ThinkPad Laptop,1,999.99,12/04/19 19:26,"627 1st St, San Francisco, CA 94016" -312599,AA Batteries (4-pack),1,3.84,12/07/19 18:35,"13 North St, Austin, TX 73301" -312600,Apple Airpods Headphones,1,150,12/20/19 13:45,"671 Center St, Seattle, WA 98101" -312601,Apple Airpods Headphones,1,150,12/18/19 14:05,"892 Jackson St, Dallas, TX 75001" -312602,AA Batteries (4-pack),1,3.84,12/16/19 11:24,"659 Walnut St, Los Angeles, CA 90001" -312603,20in Monitor,1,109.99,12/21/19 19:25,"941 Hill St, San Francisco, CA 94016" -312604,Wired Headphones,1,11.99,12/13/19 20:35,"11 Wilson St, Boston, MA 02215" -,,,,, -312605,27in FHD Monitor,1,149.99,12/18/19 07:15,"131 Adams St, Seattle, WA 98101" -312606,Wired Headphones,1,11.99,12/08/19 21:57,"97 Chestnut St, New York City, NY 10001" -312607,Lightning Charging Cable,1,14.95,12/03/19 14:05,"812 Chestnut St, Boston, MA 02215" -312607,AA Batteries (4-pack),1,3.84,12/03/19 14:05,"812 Chestnut St, Boston, MA 02215" -312608,27in FHD Monitor,1,149.99,12/23/19 07:20,"581 Maple St, New York City, NY 10001" -312609,Lightning Charging Cable,1,14.95,12/30/19 07:49,"898 Park St, San Francisco, CA 94016" -312610,Google Phone,1,600,12/19/19 01:06,"202 12th St, Los Angeles, CA 90001" -312611,AA Batteries (4-pack),1,3.84,12/01/19 16:37,"184 Hill St, Dallas, TX 75001" -312612,Apple Airpods Headphones,1,150,12/26/19 12:31,"986 Cedar St, Seattle, WA 98101" -312613,iPhone,1,700,12/22/19 18:02,"977 Maple St, San Francisco, CA 94016" -312614,AA Batteries (4-pack),2,3.84,12/13/19 00:27,"741 Adams St, Boston, MA 02215" -312615,iPhone,1,700,12/30/19 19:53,"146 12th St, Dallas, TX 75001" -312616,AAA Batteries (4-pack),1,2.99,12/25/19 09:13,"710 5th St, Seattle, WA 98101" -312617,Lightning Charging Cable,1,14.95,12/25/19 14:35,"79 10th St, Atlanta, GA 30301" -312618,Lightning Charging Cable,1,14.95,12/03/19 17:34,"747 10th St, San Francisco, CA 94016" -312619,AAA Batteries (4-pack),1,2.99,12/21/19 07:33,"594 Church St, San Francisco, CA 94016" -312620,27in FHD Monitor,1,149.99,12/08/19 15:21,"165 4th St, New York City, NY 10001" -312621,Bose SoundSport Headphones,1,99.99,12/21/19 10:06,"961 South St, San Francisco, CA 94016" -312622,iPhone,1,700,12/19/19 18:30,"544 Walnut St, San Francisco, CA 94016" -312623,27in 4K Gaming Monitor,1,389.99,12/30/19 23:58,"946 Maple St, San Francisco, CA 94016" -312624,Flatscreen TV,1,300,12/14/19 09:38,"993 West St, Portland, OR 97035" -312625,AAA Batteries (4-pack),2,2.99,12/12/19 11:50,"826 Hickory St, San Francisco, CA 94016" -312626,iPhone,1,700,12/12/19 16:50,"938 Adams St, Boston, MA 02215" -312626,Lightning Charging Cable,1,14.95,12/12/19 16:50,"938 Adams St, Boston, MA 02215" -312627,AAA Batteries (4-pack),1,2.99,12/08/19 12:25,"167 Adams St, San Francisco, CA 94016" -312628,Apple Airpods Headphones,1,150,12/02/19 05:34,"36 Lakeview St, Los Angeles, CA 90001" -312629,AA Batteries (4-pack),2,3.84,12/15/19 14:48,"548 9th St, New York City, NY 10001" -312630,Wired Headphones,1,11.99,12/11/19 01:52,"266 Adams St, Boston, MA 02215" -312631,USB-C Charging Cable,1,11.95,12/08/19 08:35,"569 10th St, Los Angeles, CA 90001" -312632,Apple Airpods Headphones,1,150,12/04/19 01:00,"67 11th St, New York City, NY 10001" -312633,Lightning Charging Cable,1,14.95,12/16/19 12:07,"252 Highland St, Dallas, TX 75001" -312634,Wired Headphones,1,11.99,12/13/19 19:05,"671 Cherry St, Boston, MA 02215" -312635,Vareebadd Phone,1,400,12/31/19 09:38,"85 Dogwood St, Dallas, TX 75001" -312635,Bose SoundSport Headphones,1,99.99,12/31/19 09:38,"85 Dogwood St, Dallas, TX 75001" -312636,AAA Batteries (4-pack),1,2.99,12/12/19 19:17,"753 Main St, Boston, MA 02215" -312637,20in Monitor,1,109.99,12/10/19 11:06,"31 Cedar St, New York City, NY 10001" -312638,USB-C Charging Cable,1,11.95,12/26/19 14:13,"817 8th St, New York City, NY 10001" -312639,Bose SoundSport Headphones,1,99.99,12/16/19 14:49,"767 Lincoln St, San Francisco, CA 94016" -312640,AAA Batteries (4-pack),1,2.99,12/27/19 14:15,"287 Dogwood St, San Francisco, CA 94016" -312641,AA Batteries (4-pack),1,3.84,12/26/19 10:34,"977 Madison St, Portland, OR 97035" -312642,Macbook Pro Laptop,1,1700,12/17/19 13:38,"808 Lake St, Seattle, WA 98101" -312643,AA Batteries (4-pack),1,3.84,12/19/19 12:36,"102 Wilson St, Dallas, TX 75001" -312644,AA Batteries (4-pack),1,3.84,12/11/19 12:23,"631 Church St, Portland, ME 04101" -312645,Apple Airpods Headphones,1,150,12/05/19 14:42,"469 Sunset St, Los Angeles, CA 90001" -312646,AA Batteries (4-pack),1,3.84,12/17/19 21:31,"684 Hill St, San Francisco, CA 94016" -312647,Wired Headphones,1,11.99,12/20/19 13:07,"959 South St, Atlanta, GA 30301" -312648,ThinkPad Laptop,1,999.99,12/09/19 10:43,"783 Elm St, Dallas, TX 75001" -312649,AA Batteries (4-pack),1,3.84,12/20/19 12:04,"625 7th St, San Francisco, CA 94016" -312650,AA Batteries (4-pack),2,3.84,12/19/19 10:23,"829 Dogwood St, Austin, TX 73301" -312651,Lightning Charging Cable,1,14.95,12/26/19 09:34,"460 Wilson St, Austin, TX 73301" -312652,AA Batteries (4-pack),1,3.84,12/03/19 15:02,"843 Walnut St, Dallas, TX 75001" -312653,34in Ultrawide Monitor,1,379.99,12/24/19 21:14,"28 Main St, New York City, NY 10001" -312654,iPhone,1,700,12/08/19 16:47,"861 11th St, Boston, MA 02215" -312655,Flatscreen TV,1,300,12/31/19 07:41,"261 6th St, New York City, NY 10001" -312656,AA Batteries (4-pack),1,3.84,12/30/19 10:07,"557 9th St, Atlanta, GA 30301" -312657,iPhone,1,700,12/29/19 14:37,"289 Chestnut St, Austin, TX 73301" -312657,Wired Headphones,1,11.99,12/29/19 14:37,"289 Chestnut St, Austin, TX 73301" -312658,AAA Batteries (4-pack),2,2.99,12/02/19 13:47,"507 Washington St, San Francisco, CA 94016" -312659,Lightning Charging Cable,1,14.95,12/19/19 11:07,"8 Elm St, Boston, MA 02215" -312660,Lightning Charging Cable,2,14.95,12/19/19 23:50,"973 West St, Boston, MA 02215" -312661,Google Phone,1,600,12/06/19 10:55,"545 Lake St, San Francisco, CA 94016" -312662,AAA Batteries (4-pack),2,2.99,12/17/19 19:13,"765 9th St, San Francisco, CA 94016" -312663,USB-C Charging Cable,2,11.95,12/28/19 08:56,"68 Maple St, Austin, TX 73301" -312664,USB-C Charging Cable,2,11.95,12/16/19 05:11,"361 Main St, San Francisco, CA 94016" -312665,Wired Headphones,1,11.99,12/28/19 18:08,"881 4th St, Dallas, TX 75001" -312666,AAA Batteries (4-pack),2,2.99,12/19/19 16:52,"326 Jefferson St, San Francisco, CA 94016" -312667,LG Washing Machine,1,600.0,12/15/19 11:17,"924 Ridge St, Boston, MA 02215" -312668,Google Phone,1,600,12/27/19 12:56,"437 Walnut St, Boston, MA 02215" -312669,USB-C Charging Cable,1,11.95,12/09/19 20:06,"54 Meadow St, Boston, MA 02215" -312670,Lightning Charging Cable,1,14.95,12/14/19 08:45,"333 Cedar St, New York City, NY 10001" -312671,USB-C Charging Cable,1,11.95,12/10/19 18:45,"448 River St, San Francisco, CA 94016" -312672,USB-C Charging Cable,1,11.95,12/22/19 06:38,"620 Lincoln St, New York City, NY 10001" -312673,Macbook Pro Laptop,1,1700,12/10/19 23:01,"450 Lakeview St, Portland, OR 97035" -312674,Bose SoundSport Headphones,1,99.99,12/25/19 23:48,"744 13th St, Dallas, TX 75001" -312675,Lightning Charging Cable,2,14.95,12/23/19 18:56,"88 Ridge St, Dallas, TX 75001" -312676,Apple Airpods Headphones,1,150,12/31/19 16:44,"146 West St, Portland, ME 04101" -312677,Lightning Charging Cable,1,14.95,12/02/19 15:16,"794 Wilson St, Dallas, TX 75001" -312678,AAA Batteries (4-pack),1,2.99,12/29/19 19:16,"390 Johnson St, San Francisco, CA 94016" -312679,Wired Headphones,1,11.99,12/01/19 10:29,"468 Jefferson St, Atlanta, GA 30301" -312680,AAA Batteries (4-pack),1,2.99,12/06/19 10:10,"792 South St, Portland, OR 97035" -312681,Lightning Charging Cable,1,14.95,12/14/19 16:22,"883 Hill St, New York City, NY 10001" -312682,AA Batteries (4-pack),1,3.84,12/02/19 17:34,"267 Pine St, Boston, MA 02215" -312683,34in Ultrawide Monitor,1,379.99,12/22/19 10:18,"893 4th St, San Francisco, CA 94016" -312684,Bose SoundSport Headphones,1,99.99,12/23/19 09:14,"540 Hickory St, Seattle, WA 98101" -312685,Flatscreen TV,1,300,12/02/19 12:52,"13 Lakeview St, San Francisco, CA 94016" -312686,Bose SoundSport Headphones,1,99.99,12/26/19 23:36,"485 Highland St, Los Angeles, CA 90001" -312687,Lightning Charging Cable,1,14.95,12/23/19 13:48,"525 North St, Dallas, TX 75001" -312688,27in FHD Monitor,1,149.99,12/25/19 17:14,"751 West St, Boston, MA 02215" -312689,AAA Batteries (4-pack),1,2.99,12/25/19 00:17,"691 Willow St, Atlanta, GA 30301" -312690,AA Batteries (4-pack),2,3.84,12/31/19 10:15,"575 Highland St, Boston, MA 02215" -312691,AAA Batteries (4-pack),1,2.99,12/20/19 20:43,"868 Cedar St, New York City, NY 10001" -312692,20in Monitor,1,109.99,12/21/19 19:31,"223 Lakeview St, San Francisco, CA 94016" -312693,USB-C Charging Cable,1,11.95,12/15/19 22:06,"188 Ridge St, Los Angeles, CA 90001" -312694,AA Batteries (4-pack),1,3.84,12/17/19 20:17,"171 Maple St, Portland, OR 97035" -312695,AAA Batteries (4-pack),1,2.99,12/16/19 12:24,"217 1st St, Los Angeles, CA 90001" -312696,AAA Batteries (4-pack),2,2.99,12/06/19 19:21,"827 South St, Portland, OR 97035" -312697,Lightning Charging Cable,1,14.95,12/10/19 19:15,"401 Center St, Seattle, WA 98101" -312698,AA Batteries (4-pack),1,3.84,12/01/19 13:02,"826 Chestnut St, Atlanta, GA 30301" -312699,iPhone,1,700,12/11/19 18:50,"163 North St, Seattle, WA 98101" -312700,Flatscreen TV,1,300,12/29/19 22:01,"212 Lake St, Austin, TX 73301" -312701,USB-C Charging Cable,1,11.95,12/12/19 11:02,"791 Lincoln St, Dallas, TX 75001" -312702,27in 4K Gaming Monitor,1,389.99,12/13/19 14:45,"686 Spruce St, Dallas, TX 75001" -312703,Lightning Charging Cable,1,14.95,12/23/19 17:56,"395 13th St, San Francisco, CA 94016" -312704,AAA Batteries (4-pack),1,2.99,12/16/19 16:53,"874 Chestnut St, Dallas, TX 75001" -312705,Apple Airpods Headphones,1,150,12/05/19 21:28,"658 Forest St, San Francisco, CA 94016" -312706,AA Batteries (4-pack),1,3.84,12/06/19 00:18,"794 4th St, Dallas, TX 75001" -312707,Apple Airpods Headphones,1,150,12/03/19 00:11,"402 Willow St, Seattle, WA 98101" -312708,USB-C Charging Cable,1,11.95,12/05/19 15:51,"584 Highland St, New York City, NY 10001" -312709,Apple Airpods Headphones,1,150,12/21/19 22:07,"81 5th St, San Francisco, CA 94016" -312710,AA Batteries (4-pack),1,3.84,12/20/19 15:48,"593 5th St, New York City, NY 10001" -312711,AA Batteries (4-pack),1,3.84,12/06/19 09:12,"836 4th St, San Francisco, CA 94016" -312712,AA Batteries (4-pack),1,3.84,12/06/19 17:51,"461 1st St, Seattle, WA 98101" -312713,Lightning Charging Cable,1,14.95,12/29/19 14:41,"191 Lakeview St, Austin, TX 73301" -312714,AAA Batteries (4-pack),1,2.99,12/05/19 10:42,"599 10th St, San Francisco, CA 94016" -312715,34in Ultrawide Monitor,1,379.99,12/01/19 11:49,"359 Pine St, New York City, NY 10001" -312716,Wired Headphones,1,11.99,12/19/19 15:34,"497 Madison St, Atlanta, GA 30301" -312717,Lightning Charging Cable,1,14.95,12/25/19 19:41,"371 Johnson St, San Francisco, CA 94016" -312718,27in 4K Gaming Monitor,1,389.99,12/23/19 14:11,"174 Willow St, New York City, NY 10001" -312719,Bose SoundSport Headphones,1,99.99,12/03/19 09:29,"870 Ridge St, San Francisco, CA 94016" -312720,iPhone,1,700,12/28/19 14:50,"43 Ridge St, Dallas, TX 75001" -312720,Wired Headphones,3,11.99,12/28/19 14:50,"43 Ridge St, Dallas, TX 75001" -312721,Lightning Charging Cable,1,14.95,12/17/19 09:48,"519 4th St, Boston, MA 02215" -312722,Lightning Charging Cable,1,14.95,12/16/19 19:13,"170 Jefferson St, Dallas, TX 75001" -312723,ThinkPad Laptop,1,999.99,12/29/19 14:47,"526 Walnut St, Seattle, WA 98101" -312724,Bose SoundSport Headphones,1,99.99,12/01/19 22:36,"587 9th St, Los Angeles, CA 90001" -312725,AAA Batteries (4-pack),1,2.99,12/18/19 19:49,"684 North St, New York City, NY 10001" -312726,34in Ultrawide Monitor,1,379.99,12/15/19 19:36,"123 Cherry St, Boston, MA 02215" -312727,AA Batteries (4-pack),1,3.84,12/24/19 14:30,"662 4th St, San Francisco, CA 94016" -312728,Google Phone,1,600,12/13/19 15:36,"287 Jackson St, San Francisco, CA 94016" -312729,AA Batteries (4-pack),1,3.84,12/31/19 10:44,"654 Ridge St, San Francisco, CA 94016" -312730,Bose SoundSport Headphones,1,99.99,12/13/19 23:44,"700 Washington St, Atlanta, GA 30301" -312731,Bose SoundSport Headphones,1,99.99,12/11/19 15:50,"927 Cedar St, San Francisco, CA 94016" -312732,AAA Batteries (4-pack),2,2.99,12/18/19 22:04,"327 Main St, Dallas, TX 75001" -312733,20in Monitor,1,109.99,12/02/19 16:17,"330 13th St, Boston, MA 02215" -312734,Lightning Charging Cable,1,14.95,12/29/19 20:12,"378 Sunset St, San Francisco, CA 94016" -312735,27in 4K Gaming Monitor,1,389.99,12/11/19 12:41,"567 Elm St, Los Angeles, CA 90001" -312736,AA Batteries (4-pack),1,3.84,12/19/19 15:10,"952 8th St, Dallas, TX 75001" -312737,AA Batteries (4-pack),1,3.84,12/09/19 12:39,"411 6th St, Atlanta, GA 30301" -312738,USB-C Charging Cable,2,11.95,12/17/19 09:41,"315 6th St, New York City, NY 10001" -312739,Lightning Charging Cable,1,14.95,12/15/19 14:48,"323 14th St, Portland, OR 97035" -312740,Lightning Charging Cable,1,14.95,12/05/19 18:04,"930 5th St, Dallas, TX 75001" -312741,USB-C Charging Cable,1,11.95,12/14/19 09:38,"369 Walnut St, New York City, NY 10001" -312742,27in 4K Gaming Monitor,1,389.99,12/10/19 19:47,"58 10th St, Los Angeles, CA 90001" -312743,27in 4K Gaming Monitor,1,389.99,12/04/19 10:55,"499 Lincoln St, Dallas, TX 75001" -312744,Bose SoundSport Headphones,1,99.99,12/09/19 09:25,"82 Main St, Austin, TX 73301" -312745,AAA Batteries (4-pack),1,2.99,12/15/19 15:25,"102 Park St, Boston, MA 02215" -312746,Apple Airpods Headphones,1,150,12/01/19 18:06,"563 Pine St, Portland, OR 97035" -312747,AA Batteries (4-pack),1,3.84,12/19/19 06:03,"608 Madison St, Seattle, WA 98101" -312748,20in Monitor,1,109.99,12/22/19 11:45,"314 2nd St, Boston, MA 02215" -312749,Apple Airpods Headphones,1,150,12/25/19 11:59,"310 Meadow St, Dallas, TX 75001" -312750,USB-C Charging Cable,1,11.95,12/19/19 23:56,"689 Hickory St, Boston, MA 02215" -312751,AAA Batteries (4-pack),1,2.99,12/06/19 15:34,"982 4th St, New York City, NY 10001" -312752,Apple Airpods Headphones,1,150,12/21/19 23:21,"390 11th St, Los Angeles, CA 90001" -312753,Bose SoundSport Headphones,1,99.99,12/25/19 14:17,"802 South St, Boston, MA 02215" -312754,AA Batteries (4-pack),1,3.84,12/08/19 22:06,"468 Washington St, Austin, TX 73301" -312755,27in 4K Gaming Monitor,1,389.99,12/26/19 19:55,"981 North St, Los Angeles, CA 90001" -312756,27in 4K Gaming Monitor,1,389.99,12/06/19 20:43,"492 7th St, Dallas, TX 75001" -312757,Bose SoundSport Headphones,1,99.99,12/11/19 10:29,"57 Jackson St, Seattle, WA 98101" -312758,AAA Batteries (4-pack),1,2.99,12/20/19 18:39,"492 Jefferson St, Dallas, TX 75001" -312759,USB-C Charging Cable,1,11.95,12/28/19 22:18,"624 8th St, New York City, NY 10001" -312760,ThinkPad Laptop,1,999.99,12/31/19 12:16,"99 Jefferson St, San Francisco, CA 94016" -312761,AAA Batteries (4-pack),1,2.99,12/25/19 13:10,"167 Walnut St, San Francisco, CA 94016" -312762,Wired Headphones,2,11.99,12/15/19 19:20,"714 14th St, Seattle, WA 98101" -312763,Lightning Charging Cable,1,14.95,12/10/19 16:30,"170 Willow St, Seattle, WA 98101" -312764,Wired Headphones,1,11.99,12/01/19 13:35,"696 Maple St, Los Angeles, CA 90001" -312765,AA Batteries (4-pack),1,3.84,12/10/19 15:26,"400 Forest St, Boston, MA 02215" -312766,20in Monitor,1,109.99,12/16/19 11:37,"149 River St, Seattle, WA 98101" -312767,Bose SoundSport Headphones,1,99.99,12/11/19 12:27,"902 1st St, Los Angeles, CA 90001" -312768,AAA Batteries (4-pack),1,2.99,12/26/19 10:44,"682 North St, Seattle, WA 98101" -312769,Macbook Pro Laptop,1,1700,12/15/19 07:06,"986 7th St, Atlanta, GA 30301" -312770,AAA Batteries (4-pack),2,2.99,12/26/19 13:45,"384 6th St, Austin, TX 73301" -312771,Bose SoundSport Headphones,1,99.99,12/14/19 20:12,"271 12th St, San Francisco, CA 94016" -312772,Lightning Charging Cable,1,14.95,12/17/19 15:27,"164 Ridge St, San Francisco, CA 94016" -312773,Flatscreen TV,1,300,12/30/19 20:08,"986 Ridge St, Seattle, WA 98101" -312774,AAA Batteries (4-pack),2,2.99,12/06/19 01:52,"473 Spruce St, New York City, NY 10001" -312775,Apple Airpods Headphones,1,150,12/27/19 16:20,"976 River St, Boston, MA 02215" -312776,USB-C Charging Cable,1,11.95,12/04/19 18:50,"648 Ridge St, San Francisco, CA 94016" -312777,iPhone,1,700,12/08/19 17:53,"394 2nd St, San Francisco, CA 94016" -312777,Lightning Charging Cable,1,14.95,12/08/19 17:53,"394 2nd St, San Francisco, CA 94016" -312778,27in FHD Monitor,1,149.99,12/17/19 11:39,"574 11th St, Los Angeles, CA 90001" -312779,Google Phone,1,600,12/20/19 10:55,"306 Highland St, Austin, TX 73301" -312779,Wired Headphones,1,11.99,12/20/19 10:55,"306 Highland St, Austin, TX 73301" -312780,Wired Headphones,1,11.99,12/10/19 17:23,"90 River St, Boston, MA 02215" -312781,USB-C Charging Cable,1,11.95,12/31/19 20:57,"391 Madison St, Boston, MA 02215" -312782,USB-C Charging Cable,1,11.95,12/28/19 10:01,"145 Church St, Los Angeles, CA 90001" -312783,Apple Airpods Headphones,1,150,12/14/19 18:31,"580 Hickory St, San Francisco, CA 94016" -312784,Bose SoundSport Headphones,1,99.99,12/24/19 08:56,"904 Lake St, Los Angeles, CA 90001" -312785,27in FHD Monitor,1,149.99,12/19/19 05:12,"346 Center St, San Francisco, CA 94016" -312786,USB-C Charging Cable,1,11.95,12/05/19 13:16,"102 Cherry St, New York City, NY 10001" -312787,AAA Batteries (4-pack),1,2.99,12/25/19 15:21,"289 Adams St, Portland, OR 97035" -312787,Lightning Charging Cable,1,14.95,12/25/19 15:21,"289 Adams St, Portland, OR 97035" -312788,Bose SoundSport Headphones,1,99.99,12/30/19 13:01,"985 Forest St, Boston, MA 02215" -312789,Lightning Charging Cable,1,14.95,12/06/19 15:26,"644 Hickory St, Seattle, WA 98101" -312790,AAA Batteries (4-pack),2,2.99,12/21/19 13:41,"913 Church St, Austin, TX 73301" -312791,Bose SoundSport Headphones,1,99.99,12/31/19 14:50,"196 Forest St, San Francisco, CA 94016" -312792,Lightning Charging Cable,2,14.95,12/23/19 19:12,"94 Johnson St, Los Angeles, CA 90001" -312793,20in Monitor,1,109.99,12/25/19 14:04,"106 Cherry St, Seattle, WA 98101" -312794,USB-C Charging Cable,1,11.95,12/25/19 02:20,"482 Wilson St, Portland, OR 97035" -312795,AA Batteries (4-pack),3,3.84,12/03/19 17:16,"727 Sunset St, Los Angeles, CA 90001" -312796,Bose SoundSport Headphones,1,99.99,12/03/19 10:18,"641 7th St, Boston, MA 02215" -312797,Macbook Pro Laptop,1,1700,12/26/19 13:01,"143 River St, Austin, TX 73301" -312798,Apple Airpods Headphones,1,150,12/28/19 19:25,"265 Main St, San Francisco, CA 94016" -312799,Bose SoundSport Headphones,1,99.99,12/13/19 05:22,"507 10th St, Boston, MA 02215" -312800,Wired Headphones,1,11.99,12/30/19 15:51,"312 Dogwood St, Los Angeles, CA 90001" -312801,Wired Headphones,1,11.99,12/28/19 20:29,"802 9th St, San Francisco, CA 94016" -312802,ThinkPad Laptop,1,999.99,12/17/19 05:13,"431 Jackson St, New York City, NY 10001" -312803,AAA Batteries (4-pack),1,2.99,12/08/19 23:49,"413 Dogwood St, Seattle, WA 98101" -312804,Lightning Charging Cable,1,14.95,12/19/19 15:01,"648 River St, New York City, NY 10001" -312805,AAA Batteries (4-pack),1,2.99,12/17/19 10:31,"200 Church St, San Francisco, CA 94016" -312806,Flatscreen TV,1,300,12/02/19 20:22,"803 9th St, New York City, NY 10001" -312807,Wired Headphones,1,11.99,12/20/19 09:26,"941 6th St, New York City, NY 10001" -312808,Apple Airpods Headphones,1,150,12/16/19 07:48,"210 Cedar St, Boston, MA 02215" -312809,USB-C Charging Cable,1,11.95,12/17/19 12:21,"358 Center St, San Francisco, CA 94016" -312810,Lightning Charging Cable,1,14.95,12/06/19 10:55,"323 Park St, San Francisco, CA 94016" -312811,27in 4K Gaming Monitor,1,389.99,12/04/19 14:34,"172 Center St, Boston, MA 02215" -312812,Flatscreen TV,1,300,01/01/20 01:56,"129 6th St, Boston, MA 02215" -312813,27in 4K Gaming Monitor,1,389.99,12/11/19 17:46,"93 River St, Los Angeles, CA 90001" -312814,AAA Batteries (4-pack),1,2.99,12/02/19 14:19,"345 10th St, Dallas, TX 75001" -312815,Wired Headphones,1,11.99,12/02/19 21:01,"237 Meadow St, Seattle, WA 98101" -312816,Wired Headphones,1,11.99,12/07/19 17:09,"620 South St, Los Angeles, CA 90001" -312817,AAA Batteries (4-pack),4,2.99,12/21/19 16:55,"108 13th St, Los Angeles, CA 90001" -312818,34in Ultrawide Monitor,1,379.99,12/22/19 11:47,"462 West St, Seattle, WA 98101" -312819,AA Batteries (4-pack),1,3.84,12/14/19 14:59,"604 5th St, San Francisco, CA 94016" -312820,AAA Batteries (4-pack),2,2.99,12/29/19 23:41,"909 Church St, Portland, ME 04101" -312821,27in FHD Monitor,1,149.99,12/13/19 17:03,"715 4th St, Los Angeles, CA 90001" -312822,27in 4K Gaming Monitor,1,389.99,12/04/19 18:55,"411 Center St, San Francisco, CA 94016" -312823,27in 4K Gaming Monitor,1,389.99,12/19/19 11:52,"680 Cedar St, Dallas, TX 75001" -312824,AAA Batteries (4-pack),1,2.99,12/18/19 22:18,"304 Walnut St, New York City, NY 10001" -312825,Bose SoundSport Headphones,1,99.99,12/03/19 23:33,"615 1st St, New York City, NY 10001" -312825,Bose SoundSport Headphones,1,99.99,12/03/19 23:33,"615 1st St, New York City, NY 10001" -312826,AAA Batteries (4-pack),3,2.99,12/08/19 11:42,"679 Forest St, Los Angeles, CA 90001" -312827,Bose SoundSport Headphones,1,99.99,12/19/19 09:52,"800 Elm St, San Francisco, CA 94016" -312828,27in 4K Gaming Monitor,1,389.99,12/05/19 16:19,"486 Madison St, Los Angeles, CA 90001" -,,,,, -312829,Lightning Charging Cable,1,14.95,12/27/19 21:40,"834 North St, Atlanta, GA 30301" -312830,Bose SoundSport Headphones,1,99.99,12/27/19 17:08,"537 North St, Seattle, WA 98101" -312831,Bose SoundSport Headphones,1,99.99,12/14/19 03:46,"901 6th St, Boston, MA 02215" -312831,Wired Headphones,1,11.99,12/14/19 03:46,"901 6th St, Boston, MA 02215" -312832,Apple Airpods Headphones,1,150,12/04/19 20:07,"143 Hickory St, Los Angeles, CA 90001" -312833,AAA Batteries (4-pack),1,2.99,12/15/19 05:48,"510 Wilson St, Los Angeles, CA 90001" -312834,AAA Batteries (4-pack),2,2.99,12/16/19 16:40,"522 6th St, San Francisco, CA 94016" -312835,ThinkPad Laptop,1,999.99,12/12/19 16:28,"689 8th St, Seattle, WA 98101" -312836,LG Washing Machine,1,600.0,12/31/19 11:25,"696 Forest St, San Francisco, CA 94016" -312837,Lightning Charging Cable,1,14.95,12/03/19 21:11,"16 6th St, Dallas, TX 75001" -312838,Wired Headphones,1,11.99,12/13/19 21:01,"109 13th St, San Francisco, CA 94016" -312839,Lightning Charging Cable,1,14.95,12/03/19 13:00,"958 Washington St, Dallas, TX 75001" -312840,USB-C Charging Cable,1,11.95,12/14/19 12:40,"625 1st St, Los Angeles, CA 90001" -312841,AA Batteries (4-pack),1,3.84,12/03/19 09:00,"554 Meadow St, Boston, MA 02215" -312842,27in 4K Gaming Monitor,1,389.99,12/01/19 07:14,"785 Elm St, Portland, ME 04101" -312843,AA Batteries (4-pack),1,3.84,12/20/19 18:12,"957 Lake St, New York City, NY 10001" -312844,ThinkPad Laptop,1,999.99,12/26/19 10:32,"633 Lincoln St, Seattle, WA 98101" -312845,AAA Batteries (4-pack),3,2.99,12/22/19 09:26,"761 Walnut St, Dallas, TX 75001" -312846,Bose SoundSport Headphones,1,99.99,12/04/19 23:24,"240 Meadow St, Los Angeles, CA 90001" -312847,Wired Headphones,1,11.99,12/30/19 17:05,"258 Dogwood St, New York City, NY 10001" -312848,AA Batteries (4-pack),1,3.84,12/29/19 14:09,"654 Maple St, Los Angeles, CA 90001" -312849,Lightning Charging Cable,1,14.95,12/02/19 20:56,"837 Forest St, Boston, MA 02215" -312850,USB-C Charging Cable,1,11.95,12/24/19 16:47,"455 Sunset St, New York City, NY 10001" -312851,Lightning Charging Cable,1,14.95,12/27/19 19:25,"561 1st St, Portland, ME 04101" -312851,AAA Batteries (4-pack),1,2.99,12/27/19 19:25,"561 1st St, Portland, ME 04101" -312852,AA Batteries (4-pack),2,3.84,12/01/19 11:37,"455 Meadow St, Dallas, TX 75001" -312853,AAA Batteries (4-pack),1,2.99,12/12/19 12:59,"726 Willow St, Austin, TX 73301" -312854,27in FHD Monitor,1,149.99,12/09/19 14:49,"516 Washington St, Dallas, TX 75001" -312855,Macbook Pro Laptop,1,1700,12/22/19 23:38,"929 Lakeview St, Dallas, TX 75001" -312856,27in 4K Gaming Monitor,1,389.99,12/08/19 10:23,"152 Spruce St, Dallas, TX 75001" -312857,Lightning Charging Cable,2,14.95,12/28/19 19:28,"256 14th St, San Francisco, CA 94016" -312858,AA Batteries (4-pack),1,3.84,12/26/19 12:03,"948 Willow St, Austin, TX 73301" -312859,Apple Airpods Headphones,1,150,12/14/19 01:52,"172 South St, Austin, TX 73301" -312860,USB-C Charging Cable,1,11.95,12/08/19 10:23,"452 Lakeview St, Atlanta, GA 30301" -312861,Lightning Charging Cable,1,14.95,12/18/19 10:15,"132 Willow St, Boston, MA 02215" -312861,AAA Batteries (4-pack),2,2.99,12/18/19 10:15,"132 Willow St, Boston, MA 02215" -312862,Bose SoundSport Headphones,1,99.99,12/10/19 12:03,"295 Adams St, New York City, NY 10001" -312863,USB-C Charging Cable,1,11.95,12/08/19 06:34,"890 Lakeview St, Seattle, WA 98101" -312864,Vareebadd Phone,1,400,12/06/19 23:44,"338 Cherry St, San Francisco, CA 94016" -312865,USB-C Charging Cable,1,11.95,12/25/19 22:32,"175 Park St, Boston, MA 02215" -312866,AAA Batteries (4-pack),1,2.99,12/22/19 10:01,"149 Washington St, Atlanta, GA 30301" -312867,Google Phone,2,600,12/29/19 12:52,"305 Hill St, Los Angeles, CA 90001" -312867,USB-C Charging Cable,1,11.95,12/29/19 12:52,"305 Hill St, Los Angeles, CA 90001" -312867,Bose SoundSport Headphones,1,99.99,12/29/19 12:52,"305 Hill St, Los Angeles, CA 90001" -312868,Wired Headphones,1,11.99,12/12/19 16:41,"373 14th St, San Francisco, CA 94016" -312869,AAA Batteries (4-pack),1,2.99,12/03/19 07:51,"476 Center St, San Francisco, CA 94016" -312870,AAA Batteries (4-pack),1,2.99,12/05/19 21:12,"793 1st St, Atlanta, GA 30301" -312871,AA Batteries (4-pack),1,3.84,12/27/19 14:41,"352 4th St, Atlanta, GA 30301" -312872,AAA Batteries (4-pack),2,2.99,12/30/19 11:48,"383 Elm St, Boston, MA 02215" -312873,Lightning Charging Cable,1,14.95,12/31/19 18:19,"890 4th St, San Francisco, CA 94016" -312874,Wired Headphones,1,11.99,12/21/19 19:55,"931 Church St, Boston, MA 02215" -312875,AA Batteries (4-pack),3,3.84,12/03/19 12:26,"106 6th St, Boston, MA 02215" -312876,USB-C Charging Cable,1,11.95,12/20/19 08:04,"540 2nd St, Seattle, WA 98101" -312877,Lightning Charging Cable,1,14.95,12/22/19 20:31,"676 Adams St, Los Angeles, CA 90001" -312878,USB-C Charging Cable,1,11.95,12/03/19 20:26,"92 Maple St, San Francisco, CA 94016" -312879,USB-C Charging Cable,1,11.95,12/21/19 10:48,"803 Forest St, Portland, OR 97035" -312880,AAA Batteries (4-pack),4,2.99,12/21/19 10:47,"464 Lakeview St, Seattle, WA 98101" -312881,AAA Batteries (4-pack),1,2.99,12/13/19 23:11,"530 14th St, Los Angeles, CA 90001" -312882,ThinkPad Laptop,1,999.99,12/23/19 12:19,"185 Chestnut St, San Francisco, CA 94016" -312883,Apple Airpods Headphones,1,150,12/01/19 17:47,"943 Sunset St, Dallas, TX 75001" -312884,AAA Batteries (4-pack),1,2.99,12/22/19 10:59,"331 11th St, New York City, NY 10001" -312885,Apple Airpods Headphones,1,150,12/17/19 14:29,"780 Adams St, San Francisco, CA 94016" -312886,Apple Airpods Headphones,1,150,12/10/19 20:25,"492 1st St, Los Angeles, CA 90001" -312887,20in Monitor,1,109.99,12/20/19 12:51,"909 11th St, San Francisco, CA 94016" -312888,27in FHD Monitor,1,149.99,12/11/19 16:55,"216 Park St, Atlanta, GA 30301" -312889,AAA Batteries (4-pack),1,2.99,12/25/19 18:15,"235 9th St, New York City, NY 10001" -312890,USB-C Charging Cable,1,11.95,12/30/19 14:13,"610 Jackson St, San Francisco, CA 94016" -312891,Lightning Charging Cable,1,14.95,12/22/19 12:30,"420 Pine St, New York City, NY 10001" -312892,iPhone,1,700,12/23/19 01:40,"956 Maple St, San Francisco, CA 94016" -312893,34in Ultrawide Monitor,1,379.99,12/10/19 22:53,"676 Park St, Los Angeles, CA 90001" -312894,Apple Airpods Headphones,1,150,12/26/19 14:02,"237 9th St, San Francisco, CA 94016" -312895,Wired Headphones,1,11.99,12/11/19 12:51,"168 Jefferson St, Boston, MA 02215" -312896,Flatscreen TV,1,300,12/01/19 22:07,"953 Meadow St, Los Angeles, CA 90001" -312897,Wired Headphones,2,11.99,12/29/19 18:28,"614 Chestnut St, New York City, NY 10001" -312898,USB-C Charging Cable,1,11.95,12/29/19 22:14,"603 Spruce St, Dallas, TX 75001" -312899,Wired Headphones,1,11.99,12/08/19 17:29,"3 West St, New York City, NY 10001" -312900,Apple Airpods Headphones,1,150,12/07/19 11:11,"818 8th St, Boston, MA 02215" -312901,34in Ultrawide Monitor,1,379.99,12/09/19 17:40,"68 11th St, San Francisco, CA 94016" -312902,27in FHD Monitor,1,149.99,12/02/19 20:43,"71 Madison St, New York City, NY 10001" -312903,Wired Headphones,1,11.99,12/15/19 14:19,"144 Cherry St, Los Angeles, CA 90001" -312904,Apple Airpods Headphones,1,150,12/12/19 23:16,"959 Walnut St, Seattle, WA 98101" -312905,iPhone,1,700,12/31/19 22:21,"851 Dogwood St, New York City, NY 10001" -312906,AA Batteries (4-pack),1,3.84,12/17/19 12:26,"280 Main St, Portland, ME 04101" -312907,USB-C Charging Cable,1,11.95,12/22/19 00:02,"916 West St, Boston, MA 02215" -312908,Lightning Charging Cable,1,14.95,12/17/19 09:34,"597 11th St, Dallas, TX 75001" -312909,Wired Headphones,1,11.99,12/12/19 21:36,"688 Jackson St, New York City, NY 10001" -312910,Wired Headphones,1,11.99,12/14/19 17:42,"174 2nd St, San Francisco, CA 94016" -312911,Lightning Charging Cable,1,14.95,12/15/19 02:06,"246 Chestnut St, New York City, NY 10001" -312912,iPhone,1,700,12/13/19 12:28,"518 Chestnut St, Los Angeles, CA 90001" -312913,Bose SoundSport Headphones,1,99.99,12/31/19 18:31,"447 Walnut St, Austin, TX 73301" -312914,Bose SoundSport Headphones,1,99.99,12/21/19 10:01,"954 Cedar St, Seattle, WA 98101" -312915,AA Batteries (4-pack),1,3.84,12/14/19 23:17,"463 Church St, Boston, MA 02215" -312916,USB-C Charging Cable,1,11.95,12/12/19 13:55,"549 Church St, San Francisco, CA 94016" -312917,Apple Airpods Headphones,1,150,12/27/19 18:45,"910 Sunset St, Los Angeles, CA 90001" -312918,iPhone,1,700,12/30/19 14:41,"360 12th St, New York City, NY 10001" -312919,AAA Batteries (4-pack),1,2.99,12/09/19 12:12,"902 River St, Los Angeles, CA 90001" -312920,Wired Headphones,1,11.99,12/07/19 07:50,"311 Walnut St, Atlanta, GA 30301" -312921,Flatscreen TV,1,300,12/24/19 18:03,"146 South St, Portland, OR 97035" -312922,AA Batteries (4-pack),3,3.84,12/16/19 22:23,"950 Lincoln St, Dallas, TX 75001" -312923,Lightning Charging Cable,1,14.95,12/17/19 14:15,"347 10th St, Boston, MA 02215" -312924,Bose SoundSport Headphones,1,99.99,12/11/19 20:40,"985 Lincoln St, San Francisco, CA 94016" -,,,,, -312925,USB-C Charging Cable,1,11.95,12/28/19 11:40,"526 South St, Boston, MA 02215" -312926,iPhone,1,700,12/27/19 19:26,"352 10th St, Los Angeles, CA 90001" -312926,Lightning Charging Cable,2,14.95,12/27/19 19:26,"352 10th St, Los Angeles, CA 90001" -312927,AA Batteries (4-pack),1,3.84,12/31/19 11:51,"461 Adams St, San Francisco, CA 94016" -312927,iPhone,1,700,12/31/19 11:51,"461 Adams St, San Francisco, CA 94016" -312928,Bose SoundSport Headphones,1,99.99,12/14/19 17:31,"529 4th St, San Francisco, CA 94016" -312929,Wired Headphones,1,11.99,12/29/19 15:25,"184 Maple St, New York City, NY 10001" -312930,AAA Batteries (4-pack),1,2.99,12/05/19 08:30,"60 Lake St, New York City, NY 10001" -312931,AA Batteries (4-pack),2,3.84,12/17/19 13:39,"182 Hill St, Los Angeles, CA 90001" -312932,Lightning Charging Cable,1,14.95,12/04/19 08:11,"990 Jefferson St, Boston, MA 02215" -312933,Lightning Charging Cable,1,14.95,12/03/19 01:31,"330 Cherry St, San Francisco, CA 94016" -312934,iPhone,1,700,12/29/19 17:44,"893 Cherry St, Los Angeles, CA 90001" -312935,27in 4K Gaming Monitor,1,389.99,12/06/19 12:30,"303 Hickory St, Seattle, WA 98101" -312936,Apple Airpods Headphones,1,150,12/14/19 09:11,"527 9th St, Los Angeles, CA 90001" -312937,AA Batteries (4-pack),2,3.84,12/22/19 15:13,"552 5th St, New York City, NY 10001" -312938,iPhone,1,700,12/04/19 08:31,"638 Johnson St, Los Angeles, CA 90001" -312938,Lightning Charging Cable,1,14.95,12/04/19 08:31,"638 Johnson St, Los Angeles, CA 90001" -312939,AA Batteries (4-pack),1,3.84,12/06/19 17:46,"320 9th St, New York City, NY 10001" -312940,Google Phone,1,600,12/03/19 09:00,"206 Pine St, Austin, TX 73301" -312941,Macbook Pro Laptop,1,1700,12/19/19 11:33,"968 2nd St, San Francisco, CA 94016" -312942,Wired Headphones,1,11.99,12/31/19 09:37,"272 5th St, New York City, NY 10001" -312943,Lightning Charging Cable,1,14.95,12/29/19 09:21,"469 Park St, Seattle, WA 98101" -312944,Lightning Charging Cable,1,14.95,12/07/19 20:12,"185 Spruce St, Seattle, WA 98101" -312945,AAA Batteries (4-pack),1,2.99,12/03/19 16:57,"401 Lakeview St, San Francisco, CA 94016" -312946,Wired Headphones,1,11.99,12/08/19 11:13,"919 11th St, Boston, MA 02215" -312946,AAA Batteries (4-pack),1,2.99,12/08/19 11:13,"919 11th St, Boston, MA 02215" -312947,Bose SoundSport Headphones,1,99.99,12/02/19 12:07,"225 13th St, Los Angeles, CA 90001" -312948,Google Phone,1,600,12/11/19 10:23,"849 10th St, Los Angeles, CA 90001" -312948,Bose SoundSport Headphones,1,99.99,12/11/19 10:23,"849 10th St, Los Angeles, CA 90001" -312949,USB-C Charging Cable,1,11.95,12/11/19 05:46,"714 Washington St, New York City, NY 10001" -312950,iPhone,1,700,12/13/19 21:59,"916 Lincoln St, New York City, NY 10001" -312950,Lightning Charging Cable,1,14.95,12/13/19 21:59,"916 Lincoln St, New York City, NY 10001" -312951,Wired Headphones,1,11.99,12/31/19 10:30,"256 14th St, San Francisco, CA 94016" -312952,Wired Headphones,1,11.99,12/04/19 18:12,"398 Center St, San Francisco, CA 94016" -312953,USB-C Charging Cable,1,11.95,12/01/19 12:36,"765 6th St, San Francisco, CA 94016" -312954,Apple Airpods Headphones,1,150,12/29/19 14:29,"615 Sunset St, Dallas, TX 75001" -312955,Apple Airpods Headphones,1,150,12/10/19 18:30,"750 Highland St, San Francisco, CA 94016" -312956,AA Batteries (4-pack),1,3.84,12/17/19 22:03,"141 Washington St, San Francisco, CA 94016" -312957,34in Ultrawide Monitor,1,379.99,12/19/19 11:06,"746 Lincoln St, San Francisco, CA 94016" -312958,iPhone,1,700,12/23/19 19:31,"755 Church St, Los Angeles, CA 90001" -312959,AA Batteries (4-pack),1,3.84,12/06/19 18:20,"348 8th St, San Francisco, CA 94016" -312960,Bose SoundSport Headphones,1,99.99,12/18/19 13:49,"612 Spruce St, New York City, NY 10001" -312961,Bose SoundSport Headphones,1,99.99,12/29/19 01:02,"797 Pine St, San Francisco, CA 94016" -312962,Wired Headphones,1,11.99,12/27/19 11:15,"850 11th St, Dallas, TX 75001" -312963,Vareebadd Phone,1,400,12/01/19 08:50,"925 12th St, Atlanta, GA 30301" -312964,AA Batteries (4-pack),1,3.84,12/09/19 10:05,"126 5th St, Boston, MA 02215" -312965,Lightning Charging Cable,1,14.95,12/10/19 11:17,"96 Willow St, Boston, MA 02215" -312966,Macbook Pro Laptop,1,1700,12/12/19 15:02,"825 6th St, Boston, MA 02215" -312966,AAA Batteries (4-pack),3,2.99,12/12/19 15:02,"825 6th St, Boston, MA 02215" -312967,USB-C Charging Cable,1,11.95,12/04/19 16:50,"451 Lakeview St, New York City, NY 10001" -312968,AAA Batteries (4-pack),2,2.99,12/15/19 12:23,"791 Madison St, Los Angeles, CA 90001" -312969,Wired Headphones,3,11.99,12/18/19 23:55,"677 Johnson St, Austin, TX 73301" -312970,AA Batteries (4-pack),6,3.84,12/12/19 10:59,"879 West St, New York City, NY 10001" -312971,AAA Batteries (4-pack),1,2.99,12/09/19 19:56,"689 5th St, New York City, NY 10001" -312972,27in FHD Monitor,1,149.99,12/17/19 18:58,"569 Walnut St, San Francisco, CA 94016" -312973,Apple Airpods Headphones,1,150,12/15/19 11:36,"618 Lake St, Atlanta, GA 30301" -312974,USB-C Charging Cable,1,11.95,12/29/19 18:41,"152 7th St, New York City, NY 10001" -312975,Lightning Charging Cable,1,14.95,12/16/19 19:16,"772 Jackson St, Dallas, TX 75001" -312976,Bose SoundSport Headphones,1,99.99,12/26/19 20:53,"439 Lakeview St, San Francisco, CA 94016" -312977,Lightning Charging Cable,1,14.95,12/28/19 17:47,"581 Willow St, Los Angeles, CA 90001" -312978,34in Ultrawide Monitor,1,379.99,12/25/19 09:28,"603 Center St, San Francisco, CA 94016" -312979,Bose SoundSport Headphones,1,99.99,12/11/19 13:44,"207 Walnut St, Boston, MA 02215" -312980,Wired Headphones,1,11.99,12/31/19 19:46,"195 9th St, San Francisco, CA 94016" -312981,Macbook Pro Laptop,1,1700,12/14/19 12:57,"521 Jefferson St, Boston, MA 02215" -312982,AAA Batteries (4-pack),1,2.99,12/10/19 22:35,"440 Walnut St, Los Angeles, CA 90001" -312983,AA Batteries (4-pack),1,3.84,12/08/19 19:54,"214 Chestnut St, San Francisco, CA 94016" -312984,AA Batteries (4-pack),2,3.84,12/22/19 11:49,"338 5th St, New York City, NY 10001" -312985,Bose SoundSport Headphones,1,99.99,12/26/19 22:49,"418 Adams St, Atlanta, GA 30301" -312986,Lightning Charging Cable,2,14.95,12/11/19 07:59,"369 River St, Austin, TX 73301" -312986,USB-C Charging Cable,1,11.95,12/11/19 07:59,"369 River St, Austin, TX 73301" -312987,Lightning Charging Cable,1,14.95,12/16/19 21:39,"361 Dogwood St, New York City, NY 10001" -312988,Apple Airpods Headphones,1,150,12/21/19 19:18,"252 5th St, Dallas, TX 75001" -312989,USB-C Charging Cable,1,11.95,12/25/19 22:18,"131 Dogwood St, Atlanta, GA 30301" -312990,USB-C Charging Cable,1,11.95,12/30/19 05:52,"888 7th St, San Francisco, CA 94016" -312991,AAA Batteries (4-pack),1,2.99,12/03/19 16:16,"385 Church St, San Francisco, CA 94016" -312992,34in Ultrawide Monitor,1,379.99,12/31/19 15:24,"837 14th St, Los Angeles, CA 90001" -312993,AA Batteries (4-pack),2,3.84,12/31/19 14:33,"904 Hickory St, Seattle, WA 98101" -312994,iPhone,1,700,12/19/19 13:08,"879 13th St, Seattle, WA 98101" -312995,USB-C Charging Cable,1,11.95,12/10/19 16:29,"131 Sunset St, Atlanta, GA 30301" -312996,AAA Batteries (4-pack),1,2.99,12/05/19 06:12,"70 West St, Seattle, WA 98101" -312996,AAA Batteries (4-pack),3,2.99,12/05/19 06:12,"70 West St, Seattle, WA 98101" -312997,27in 4K Gaming Monitor,1,389.99,12/28/19 13:42,"972 Jackson St, Boston, MA 02215" -312998,ThinkPad Laptop,1,999.99,12/22/19 17:45,"191 10th St, San Francisco, CA 94016" -312999,AAA Batteries (4-pack),1,2.99,12/10/19 20:56,"660 7th St, Los Angeles, CA 90001" -313000,Flatscreen TV,1,300,12/09/19 15:30,"448 Pine St, Austin, TX 73301" -313001,USB-C Charging Cable,1,11.95,12/06/19 23:17,"795 4th St, Dallas, TX 75001" -313002,AA Batteries (4-pack),4,3.84,12/07/19 20:14,"880 Center St, Seattle, WA 98101" -313003,AA Batteries (4-pack),1,3.84,12/22/19 21:21,"259 Forest St, San Francisco, CA 94016" -313004,Apple Airpods Headphones,1,150,12/02/19 16:07,"692 4th St, San Francisco, CA 94016" -313005,34in Ultrawide Monitor,1,379.99,12/07/19 17:52,"891 Wilson St, Los Angeles, CA 90001" -313006,AA Batteries (4-pack),1,3.84,12/18/19 12:18,"610 Elm St, San Francisco, CA 94016" -313007,AAA Batteries (4-pack),2,2.99,12/17/19 17:59,"418 13th St, New York City, NY 10001" -313008,USB-C Charging Cable,1,11.95,12/15/19 17:50,"22 Willow St, New York City, NY 10001" -313009,AAA Batteries (4-pack),1,2.99,12/20/19 16:44,"107 Jackson St, Los Angeles, CA 90001" -313010,AAA Batteries (4-pack),1,2.99,12/06/19 15:11,"635 Madison St, New York City, NY 10001" -313011,Bose SoundSport Headphones,1,99.99,12/25/19 13:46,"708 1st St, Austin, TX 73301" -313012,Lightning Charging Cable,1,14.95,12/05/19 03:34,"700 Hickory St, New York City, NY 10001" -313012,20in Monitor,1,109.99,12/05/19 03:34,"700 Hickory St, New York City, NY 10001" -313013,Wired Headphones,1,11.99,12/09/19 11:36,"88 Jackson St, Austin, TX 73301" -313014,Lightning Charging Cable,1,14.95,12/01/19 13:15,"371 Sunset St, Atlanta, GA 30301" -313015,Wired Headphones,2,11.99,12/29/19 16:44,"380 West St, Austin, TX 73301" -313016,USB-C Charging Cable,1,11.95,12/30/19 14:46,"298 Highland St, San Francisco, CA 94016" -313017,Google Phone,1,600,12/05/19 12:25,"881 Elm St, Atlanta, GA 30301" -313018,Bose SoundSport Headphones,1,99.99,12/28/19 18:15,"977 Main St, Seattle, WA 98101" -313019,Google Phone,1,600,12/15/19 10:09,"547 Lake St, San Francisco, CA 94016" -313020,USB-C Charging Cable,1,11.95,12/30/19 12:15,"993 Jefferson St, Los Angeles, CA 90001" -313021,Wired Headphones,1,11.99,12/21/19 12:32,"62 Forest St, Atlanta, GA 30301" -313022,27in 4K Gaming Monitor,1,389.99,12/25/19 13:19,"541 Ridge St, Dallas, TX 75001" -313023,Wired Headphones,1,11.99,12/12/19 12:27,"492 8th St, Dallas, TX 75001" -313024,Lightning Charging Cable,1,14.95,12/28/19 13:03,"120 Ridge St, Los Angeles, CA 90001" -313025,Bose SoundSport Headphones,1,99.99,12/14/19 22:06,"535 Dogwood St, Los Angeles, CA 90001" -313026,Bose SoundSport Headphones,1,99.99,12/29/19 19:11,"815 Ridge St, Los Angeles, CA 90001" -313027,AAA Batteries (4-pack),2,2.99,12/13/19 12:37,"853 Johnson St, Portland, OR 97035" -313028,34in Ultrawide Monitor,1,379.99,12/30/19 08:13,"753 8th St, Los Angeles, CA 90001" -313029,Apple Airpods Headphones,1,150,12/17/19 14:18,"364 Sunset St, Seattle, WA 98101" -313030,27in 4K Gaming Monitor,1,389.99,12/17/19 22:54,"971 11th St, Portland, OR 97035" -313030,AA Batteries (4-pack),1,3.84,12/17/19 22:54,"971 11th St, Portland, OR 97035" -313031,20in Monitor,1,109.99,12/11/19 20:01,"106 7th St, Los Angeles, CA 90001" -313032,Apple Airpods Headphones,1,150,12/21/19 13:51,"380 Chestnut St, Boston, MA 02215" -313033,Macbook Pro Laptop,1,1700,12/27/19 14:12,"982 Chestnut St, New York City, NY 10001" -313034,LG Dryer,1,600.0,12/01/19 20:01,"23 Sunset St, Atlanta, GA 30301" -313035,Flatscreen TV,1,300,12/11/19 17:51,"152 Cherry St, Los Angeles, CA 90001" -313036,27in FHD Monitor,1,149.99,12/09/19 10:44,"566 River St, Portland, ME 04101" -313037,Wired Headphones,3,11.99,12/13/19 00:03,"372 Forest St, Dallas, TX 75001" -313038,AA Batteries (4-pack),1,3.84,12/15/19 13:10,"186 14th St, Seattle, WA 98101" -313039,Wired Headphones,1,11.99,12/27/19 08:11,"882 Elm St, New York City, NY 10001" -313040,Wired Headphones,1,11.99,12/26/19 11:56,"647 Pine St, Seattle, WA 98101" -313041,USB-C Charging Cable,1,11.95,12/18/19 11:38,"934 8th St, New York City, NY 10001" -313042,AA Batteries (4-pack),1,3.84,12/11/19 19:23,"714 West St, Dallas, TX 75001" -313043,27in FHD Monitor,1,149.99,12/15/19 12:57,"561 Center St, New York City, NY 10001" -313044,34in Ultrawide Monitor,1,379.99,12/12/19 11:48,"992 Hickory St, Los Angeles, CA 90001" -313045,AAA Batteries (4-pack),3,2.99,12/15/19 09:38,"316 Washington St, Portland, OR 97035" -313046,AA Batteries (4-pack),3,3.84,12/09/19 11:21,"479 2nd St, Seattle, WA 98101" -313047,Lightning Charging Cable,1,14.95,12/18/19 11:38,"878 Chestnut St, San Francisco, CA 94016" -313048,USB-C Charging Cable,1,11.95,12/04/19 14:00,"18 7th St, Los Angeles, CA 90001" -313049,Bose SoundSport Headphones,1,99.99,12/04/19 12:52,"778 Spruce St, Atlanta, GA 30301" -313050,USB-C Charging Cable,1,11.95,12/29/19 10:37,"4 South St, Dallas, TX 75001" -313051,USB-C Charging Cable,1,11.95,12/25/19 11:50,"989 Cherry St, New York City, NY 10001" -313052,Bose SoundSport Headphones,1,99.99,12/28/19 18:57,"9 Cedar St, Atlanta, GA 30301" -313053,20in Monitor,1,109.99,12/09/19 10:07,"377 Cedar St, New York City, NY 10001" -313054,AAA Batteries (4-pack),2,2.99,12/29/19 22:55,"304 Washington St, Los Angeles, CA 90001" -313055,Lightning Charging Cable,1,14.95,12/03/19 20:23,"51 River St, New York City, NY 10001" -313056,iPhone,1,700,12/31/19 18:40,"870 Forest St, New York City, NY 10001" -313056,Lightning Charging Cable,1,14.95,12/31/19 18:40,"870 Forest St, New York City, NY 10001" -313057,Lightning Charging Cable,1,14.95,12/29/19 19:51,"955 Jefferson St, Atlanta, GA 30301" -313058,Wired Headphones,2,11.99,12/02/19 22:34,"635 Center St, Atlanta, GA 30301" -313059,Apple Airpods Headphones,1,150,12/26/19 13:41,"17 Dogwood St, New York City, NY 10001" -313060,Macbook Pro Laptop,1,1700,12/21/19 21:37,"235 10th St, New York City, NY 10001" -313061,AA Batteries (4-pack),1,3.84,12/02/19 19:23,"423 Madison St, Los Angeles, CA 90001" -313062,Vareebadd Phone,1,400,12/23/19 13:33,"580 Cherry St, New York City, NY 10001" -313062,Wired Headphones,1,11.99,12/23/19 13:33,"580 Cherry St, New York City, NY 10001" -313063,Apple Airpods Headphones,1,150,12/09/19 17:24,"86 Johnson St, Los Angeles, CA 90001" -313064,Wired Headphones,1,11.99,12/12/19 00:45,"824 10th St, Los Angeles, CA 90001" -313065,Lightning Charging Cable,1,14.95,12/06/19 21:10,"210 Washington St, Atlanta, GA 30301" -313066,20in Monitor,1,109.99,12/25/19 05:42,"988 4th St, Boston, MA 02215" -313067,AA Batteries (4-pack),1,3.84,12/18/19 20:47,"899 Dogwood St, Seattle, WA 98101" -313068,AAA Batteries (4-pack),1,2.99,12/20/19 13:59,"14 Church St, Los Angeles, CA 90001" -313069,AA Batteries (4-pack),1,3.84,12/13/19 14:07,"527 North St, Atlanta, GA 30301" -313070,27in FHD Monitor,1,149.99,12/30/19 12:16,"109 Madison St, Los Angeles, CA 90001" -313071,Bose SoundSport Headphones,1,99.99,12/14/19 19:33,"148 North St, Portland, OR 97035" -313072,34in Ultrawide Monitor,1,379.99,12/15/19 12:26,"196 Main St, Seattle, WA 98101" -313073,USB-C Charging Cable,1,11.95,12/27/19 22:01,"513 8th St, Portland, OR 97035" -313074,Lightning Charging Cable,1,14.95,12/22/19 21:50,"974 Madison St, Dallas, TX 75001" -313075,27in 4K Gaming Monitor,1,389.99,12/02/19 22:16,"543 Church St, Boston, MA 02215" -313076,Wired Headphones,1,11.99,12/02/19 10:53,"225 Cherry St, San Francisco, CA 94016" -313077,Lightning Charging Cable,1,14.95,12/20/19 14:16,"342 12th St, Portland, OR 97035" -313078,Lightning Charging Cable,1,14.95,12/07/19 18:37,"175 Ridge St, New York City, NY 10001" -313079,Apple Airpods Headphones,1,150,12/12/19 19:05,"84 Maple St, Portland, ME 04101" -313080,Macbook Pro Laptop,1,1700,12/06/19 18:40,"995 Spruce St, Boston, MA 02215" -313081,Google Phone,1,600,12/22/19 12:03,"488 Dogwood St, Seattle, WA 98101" -313082,Lightning Charging Cable,1,14.95,12/30/19 19:17,"747 Walnut St, San Francisco, CA 94016" -313083,Wired Headphones,1,11.99,12/31/19 21:29,"469 7th St, San Francisco, CA 94016" -313084,USB-C Charging Cable,1,11.95,12/15/19 19:01,"594 Center St, Seattle, WA 98101" -313085,USB-C Charging Cable,2,11.95,12/15/19 23:11,"811 Wilson St, San Francisco, CA 94016" -313086,Macbook Pro Laptop,1,1700,12/23/19 08:12,"309 Spruce St, San Francisco, CA 94016" -313087,USB-C Charging Cable,2,11.95,12/27/19 18:03,"830 Church St, San Francisco, CA 94016" -313088,AAA Batteries (4-pack),2,2.99,12/21/19 18:06,"812 Maple St, San Francisco, CA 94016" -313089,Lightning Charging Cable,1,14.95,12/04/19 13:59,"922 South St, Seattle, WA 98101" -313090,AAA Batteries (4-pack),1,2.99,12/29/19 13:51,"387 Hill St, Dallas, TX 75001" -313091,AAA Batteries (4-pack),2,2.99,12/11/19 21:31,"76 Washington St, Los Angeles, CA 90001" -313092,20in Monitor,1,109.99,12/04/19 22:53,"974 Walnut St, Dallas, TX 75001" -313093,Vareebadd Phone,1,400,12/18/19 06:56,"90 13th St, Dallas, TX 75001" -313093,USB-C Charging Cable,1,11.95,12/18/19 06:56,"90 13th St, Dallas, TX 75001" -313094,AA Batteries (4-pack),1,3.84,12/05/19 20:43,"990 4th St, Boston, MA 02215" -313095,34in Ultrawide Monitor,1,379.99,12/05/19 19:40,"752 Highland St, Boston, MA 02215" -313096,Bose SoundSport Headphones,1,99.99,12/07/19 20:40,"850 Forest St, San Francisco, CA 94016" -313097,Apple Airpods Headphones,1,150,12/15/19 12:21,"436 Hickory St, Austin, TX 73301" -313098,AA Batteries (4-pack),1,3.84,12/19/19 10:58,"958 2nd St, Dallas, TX 75001" -313099,Bose SoundSport Headphones,1,99.99,12/04/19 21:38,"435 Pine St, San Francisco, CA 94016" -313100,Wired Headphones,1,11.99,12/13/19 22:03,"588 West St, New York City, NY 10001" -313101,AAA Batteries (4-pack),1,2.99,12/24/19 08:52,"89 10th St, Dallas, TX 75001" -313102,iPhone,1,700,12/31/19 16:28,"891 Sunset St, Los Angeles, CA 90001" -313103,34in Ultrawide Monitor,1,379.99,12/17/19 19:05,"527 Meadow St, San Francisco, CA 94016" -313104,iPhone,1,700,12/13/19 14:54,"557 Walnut St, Seattle, WA 98101" -313105,Lightning Charging Cable,1,14.95,12/31/19 21:24,"37 13th St, Portland, OR 97035" -313106,AAA Batteries (4-pack),1,2.99,12/13/19 21:58,"95 Walnut St, Austin, TX 73301" -313107,Bose SoundSport Headphones,1,99.99,12/24/19 05:10,"378 5th St, San Francisco, CA 94016" -313108,Lightning Charging Cable,1,14.95,12/14/19 15:19,"932 Washington St, San Francisco, CA 94016" -313109,Wired Headphones,1,11.99,12/13/19 13:13,"206 Elm St, Dallas, TX 75001" -313110,Bose SoundSport Headphones,1,99.99,12/21/19 18:12,"326 Johnson St, Seattle, WA 98101" -313111,AAA Batteries (4-pack),1,2.99,12/23/19 12:50,"228 Hickory St, Portland, OR 97035" -313112,AAA Batteries (4-pack),1,2.99,12/19/19 11:17,"748 Dogwood St, Boston, MA 02215" -313113,USB-C Charging Cable,1,11.95,12/29/19 15:31,"558 Meadow St, Portland, OR 97035" -313114,AAA Batteries (4-pack),2,2.99,12/30/19 11:46,"67 Washington St, Portland, ME 04101" -313115,Google Phone,1,600,12/17/19 08:32,"866 9th St, San Francisco, CA 94016" -313115,USB-C Charging Cable,2,11.95,12/17/19 08:32,"866 9th St, San Francisco, CA 94016" -313115,Wired Headphones,1,11.99,12/17/19 08:32,"866 9th St, San Francisco, CA 94016" -313116,AAA Batteries (4-pack),1,2.99,12/11/19 10:20,"617 Maple St, Seattle, WA 98101" -313117,AA Batteries (4-pack),1,3.84,12/28/19 19:23,"696 North St, Los Angeles, CA 90001" -313118,Lightning Charging Cable,1,14.95,12/08/19 21:06,"136 Main St, San Francisco, CA 94016" -313119,Lightning Charging Cable,1,14.95,12/02/19 12:30,"583 Pine St, Portland, OR 97035" -313120,AAA Batteries (4-pack),1,2.99,12/29/19 12:23,"242 Lincoln St, Portland, OR 97035" -313121,Lightning Charging Cable,1,14.95,12/15/19 09:29,"16 Center St, New York City, NY 10001" -313122,AAA Batteries (4-pack),1,2.99,12/27/19 13:42,"52 12th St, San Francisco, CA 94016" -313123,USB-C Charging Cable,1,11.95,12/09/19 17:37,"181 Cedar St, San Francisco, CA 94016" -313124,Wired Headphones,1,11.99,12/04/19 17:27,"53 Park St, Los Angeles, CA 90001" -313125,Bose SoundSport Headphones,1,99.99,12/09/19 12:08,"262 Washington St, Seattle, WA 98101" -313126,Flatscreen TV,1,300,12/12/19 09:17,"890 Willow St, San Francisco, CA 94016" -313127,Vareebadd Phone,1,400,12/05/19 00:23,"850 West St, Los Angeles, CA 90001" -313128,USB-C Charging Cable,1,11.95,12/19/19 10:47,"972 5th St, San Francisco, CA 94016" -313129,34in Ultrawide Monitor,1,379.99,12/13/19 19:01,"62 Spruce St, Portland, ME 04101" -313130,Apple Airpods Headphones,1,150,12/14/19 10:50,"930 Lake St, Los Angeles, CA 90001" -313131,Lightning Charging Cable,1,14.95,12/17/19 15:28,"553 Johnson St, Atlanta, GA 30301" -313132,Lightning Charging Cable,1,14.95,12/26/19 13:12,"383 Sunset St, Los Angeles, CA 90001" -313132,27in FHD Monitor,1,149.99,12/26/19 13:12,"383 Sunset St, Los Angeles, CA 90001" -313133,Vareebadd Phone,1,400,12/04/19 04:37,"578 Elm St, Dallas, TX 75001" -313134,AA Batteries (4-pack),1,3.84,12/09/19 14:34,"598 River St, Austin, TX 73301" -313135,Lightning Charging Cable,1,14.95,12/29/19 17:04,"374 North St, Los Angeles, CA 90001" -313136,AAA Batteries (4-pack),1,2.99,12/14/19 12:09,"819 Dogwood St, Seattle, WA 98101" -313137,Wired Headphones,1,11.99,12/20/19 17:17,"538 1st St, Los Angeles, CA 90001" -313138,iPhone,1,700,12/04/19 11:07,"577 Cedar St, Boston, MA 02215" -313138,Lightning Charging Cable,1,14.95,12/04/19 11:07,"577 Cedar St, Boston, MA 02215" -313139,27in 4K Gaming Monitor,1,389.99,12/31/19 13:41,"250 Maple St, Boston, MA 02215" -313140,USB-C Charging Cable,1,11.95,12/09/19 21:33,"591 10th St, Atlanta, GA 30301" -313141,AAA Batteries (4-pack),2,2.99,12/29/19 14:12,"943 West St, Los Angeles, CA 90001" -313142,AA Batteries (4-pack),1,3.84,12/06/19 12:31,"954 Park St, San Francisco, CA 94016" -313142,Apple Airpods Headphones,1,150,12/06/19 12:31,"954 Park St, San Francisco, CA 94016" -313143,34in Ultrawide Monitor,1,379.99,12/03/19 19:14,"636 Jackson St, San Francisco, CA 94016" -313144,Lightning Charging Cable,1,14.95,12/20/19 14:49,"270 Spruce St, Boston, MA 02215" -313145,Macbook Pro Laptop,1,1700,12/13/19 05:53,"411 4th St, New York City, NY 10001" -313146,AA Batteries (4-pack),1,3.84,12/22/19 21:54,"13 West St, San Francisco, CA 94016" -313147,AAA Batteries (4-pack),1,2.99,12/27/19 21:15,"749 6th St, Atlanta, GA 30301" -313148,AAA Batteries (4-pack),1,2.99,12/07/19 09:49,"889 South St, Boston, MA 02215" -313149,iPhone,1,700,12/20/19 08:43,"427 Meadow St, San Francisco, CA 94016" -313150,27in 4K Gaming Monitor,1,389.99,12/06/19 14:17,"962 West St, San Francisco, CA 94016" -313151,AAA Batteries (4-pack),1,2.99,12/18/19 08:15,"370 Walnut St, San Francisco, CA 94016" -313152,AAA Batteries (4-pack),1,2.99,12/21/19 10:03,"301 South St, Dallas, TX 75001" -313153,USB-C Charging Cable,1,11.95,12/12/19 22:10,"26 Maple St, San Francisco, CA 94016" -313154,Wired Headphones,2,11.99,12/27/19 20:15,"885 Elm St, Boston, MA 02215" -313155,Bose SoundSport Headphones,1,99.99,12/25/19 22:23,"616 Lakeview St, San Francisco, CA 94016" -313156,Lightning Charging Cable,1,14.95,12/07/19 21:30,"123 Madison St, Los Angeles, CA 90001" -313157,27in FHD Monitor,1,149.99,12/30/19 13:20,"537 5th St, Portland, OR 97035" -313158,Wired Headphones,1,11.99,12/15/19 11:56,"523 Maple St, Los Angeles, CA 90001" -313159,20in Monitor,1,109.99,12/16/19 16:20,"918 Walnut St, Dallas, TX 75001" -313160,Wired Headphones,1,11.99,12/14/19 00:21,"791 13th St, San Francisco, CA 94016" -313161,Lightning Charging Cable,1,14.95,12/11/19 12:16,"548 River St, Seattle, WA 98101" -313162,AAA Batteries (4-pack),1,2.99,12/13/19 18:39,"627 Cherry St, Dallas, TX 75001" -313163,Lightning Charging Cable,1,14.95,12/14/19 21:23,"832 Forest St, San Francisco, CA 94016" -313164,AAA Batteries (4-pack),2,2.99,12/26/19 07:50,"261 Center St, Boston, MA 02215" -313165,iPhone,1,700,12/22/19 18:36,"483 Pine St, Atlanta, GA 30301" -313166,Google Phone,1,600,12/18/19 16:01,"808 Lincoln St, Dallas, TX 75001" -313167,USB-C Charging Cable,1,11.95,12/30/19 19:00,"800 Meadow St, Boston, MA 02215" -313168,iPhone,1,700,12/04/19 16:07,"329 Cedar St, Atlanta, GA 30301" -313168,Apple Airpods Headphones,1,150,12/04/19 16:07,"329 Cedar St, Atlanta, GA 30301" -313169,Bose SoundSport Headphones,1,99.99,12/14/19 09:55,"487 5th St, Portland, OR 97035" -313170,Wired Headphones,1,11.99,12/16/19 13:31,"669 River St, Los Angeles, CA 90001" -313171,USB-C Charging Cable,1,11.95,12/21/19 10:22,"95 11th St, New York City, NY 10001" -313172,Google Phone,1,600,12/07/19 17:13,"397 Lake St, San Francisco, CA 94016" -313173,34in Ultrawide Monitor,1,379.99,12/10/19 15:27,"829 Cherry St, Dallas, TX 75001" -313174,Bose SoundSport Headphones,1,99.99,12/14/19 22:30,"386 Forest St, San Francisco, CA 94016" -313175,Wired Headphones,1,11.99,12/26/19 22:31,"831 Highland St, Los Angeles, CA 90001" -313176,27in 4K Gaming Monitor,1,389.99,12/26/19 11:38,"321 7th St, Los Angeles, CA 90001" -313177,Lightning Charging Cable,1,14.95,12/01/19 10:53,"20 Jackson St, San Francisco, CA 94016" -313178,USB-C Charging Cable,1,11.95,12/30/19 22:06,"268 13th St, San Francisco, CA 94016" -313179,Wired Headphones,1,11.99,12/05/19 07:17,"789 Chestnut St, Los Angeles, CA 90001" -313180,Vareebadd Phone,1,400,12/19/19 08:12,"620 11th St, San Francisco, CA 94016" -313181,34in Ultrawide Monitor,1,379.99,12/14/19 23:53,"877 12th St, Los Angeles, CA 90001" -313182,Apple Airpods Headphones,1,150,12/05/19 18:12,"768 Forest St, San Francisco, CA 94016" -313183,Lightning Charging Cable,2,14.95,12/03/19 20:49,"775 Lake St, Boston, MA 02215" -313184,AAA Batteries (4-pack),1,2.99,12/05/19 13:32,"183 7th St, San Francisco, CA 94016" -313185,20in Monitor,1,109.99,12/31/19 22:48,"594 South St, San Francisco, CA 94016" -313186,Wired Headphones,1,11.99,12/24/19 11:24,"932 6th St, Los Angeles, CA 90001" -313187,Macbook Pro Laptop,1,1700,12/29/19 06:52,"165 Adams St, Portland, OR 97035" -313188,Flatscreen TV,1,300,12/16/19 13:37,"780 Hill St, Boston, MA 02215" -313189,Vareebadd Phone,1,400,12/27/19 12:23,"760 Hill St, San Francisco, CA 94016" -313189,USB-C Charging Cable,1,11.95,12/27/19 12:23,"760 Hill St, San Francisco, CA 94016" -313190,Lightning Charging Cable,1,14.95,12/25/19 04:16,"128 South St, San Francisco, CA 94016" -313191,Macbook Pro Laptop,1,1700,12/11/19 19:57,"57 7th St, Atlanta, GA 30301" -313192,Wired Headphones,1,11.99,12/21/19 16:07,"225 Spruce St, Los Angeles, CA 90001" -313193,AAA Batteries (4-pack),1,2.99,12/19/19 12:43,"271 5th St, New York City, NY 10001" -313194,AAA Batteries (4-pack),1,2.99,12/10/19 11:08,"814 11th St, Austin, TX 73301" -313195,Lightning Charging Cable,1,14.95,12/04/19 13:40,"37 6th St, Seattle, WA 98101" -313196,27in FHD Monitor,1,149.99,12/20/19 12:33,"960 Center St, Los Angeles, CA 90001" -313197,Lightning Charging Cable,1,14.95,12/01/19 19:04,"968 Lakeview St, San Francisco, CA 94016" -313198,Wired Headphones,1,11.99,12/24/19 17:39,"527 Johnson St, Atlanta, GA 30301" -313199,AAA Batteries (4-pack),3,2.99,12/28/19 00:07,"185 Washington St, San Francisco, CA 94016" -313200,USB-C Charging Cable,1,11.95,12/06/19 10:33,"172 Dogwood St, Boston, MA 02215" -313201,Bose SoundSport Headphones,1,99.99,12/18/19 02:53,"162 12th St, Portland, OR 97035" -313202,Apple Airpods Headphones,1,150,12/29/19 17:53,"870 2nd St, Los Angeles, CA 90001" -313203,Wired Headphones,1,11.99,12/04/19 09:35,"790 Ridge St, New York City, NY 10001" -313204,Apple Airpods Headphones,1,150,12/26/19 19:24,"272 Ridge St, San Francisco, CA 94016" -313205,Flatscreen TV,1,300,12/28/19 21:22,"79 4th St, Dallas, TX 75001" -313206,34in Ultrawide Monitor,1,379.99,12/14/19 09:42,"431 Spruce St, Los Angeles, CA 90001" -313207,Wired Headphones,1,11.99,12/05/19 20:09,"934 Madison St, Austin, TX 73301" -313208,USB-C Charging Cable,1,11.95,12/19/19 19:50,"755 11th St, Los Angeles, CA 90001" -313209,Apple Airpods Headphones,1,150,12/19/19 02:19,"810 Cherry St, Boston, MA 02215" -313210,Bose SoundSport Headphones,1,99.99,12/04/19 15:28,"930 12th St, Dallas, TX 75001" -313211,27in FHD Monitor,1,149.99,12/01/19 21:32,"228 Dogwood St, New York City, NY 10001" -313212,Wired Headphones,2,11.99,12/05/19 10:06,"204 Lincoln St, San Francisco, CA 94016" -313213,Wired Headphones,1,11.99,12/09/19 22:37,"568 Madison St, Los Angeles, CA 90001" -313214,AAA Batteries (4-pack),1,2.99,12/25/19 21:00,"25 Hill St, Seattle, WA 98101" -313215,27in 4K Gaming Monitor,1,389.99,12/27/19 12:23,"176 6th St, Portland, ME 04101" -313216,Lightning Charging Cable,1,14.95,12/05/19 13:31,"811 4th St, Los Angeles, CA 90001" -313217,ThinkPad Laptop,1,999.99,12/29/19 08:58,"274 Lakeview St, Los Angeles, CA 90001" -313218,AA Batteries (4-pack),1,3.84,12/24/19 18:34,"295 Chestnut St, San Francisco, CA 94016" -313219,Wired Headphones,1,11.99,12/29/19 14:38,"218 Lake St, San Francisco, CA 94016" -313220,Wired Headphones,1,11.99,12/30/19 12:50,"797 Walnut St, San Francisco, CA 94016" -313221,AA Batteries (4-pack),1,3.84,12/16/19 21:13,"870 Elm St, San Francisco, CA 94016" -313222,iPhone,1,700,12/23/19 17:37,"267 11th St, Los Angeles, CA 90001" -313222,Lightning Charging Cable,1,14.95,12/23/19 17:37,"267 11th St, Los Angeles, CA 90001" -313223,Bose SoundSport Headphones,1,99.99,12/13/19 21:28,"491 Adams St, Austin, TX 73301" -313224,AA Batteries (4-pack),1,3.84,12/14/19 22:05,"767 Sunset St, Los Angeles, CA 90001" -313225,USB-C Charging Cable,1,11.95,12/22/19 12:39,"757 Highland St, San Francisco, CA 94016" -313226,Wired Headphones,1,11.99,12/25/19 14:20,"188 Willow St, San Francisco, CA 94016" -313227,Lightning Charging Cable,1,14.95,12/10/19 23:22,"152 Spruce St, Portland, OR 97035" -313228,Flatscreen TV,1,300,12/11/19 15:08,"666 Highland St, New York City, NY 10001" -313229,Google Phone,1,600,12/02/19 17:48,"224 5th St, San Francisco, CA 94016" -313230,AAA Batteries (4-pack),1,2.99,12/09/19 10:02,"574 2nd St, San Francisco, CA 94016" -313231,Lightning Charging Cable,1,14.95,12/28/19 04:34,"710 Highland St, San Francisco, CA 94016" -313232,ThinkPad Laptop,1,999.99,12/13/19 21:14,"37 4th St, San Francisco, CA 94016" -313233,Wired Headphones,1,11.99,12/25/19 18:11,"873 7th St, Atlanta, GA 30301" -313234,Wired Headphones,2,11.99,12/05/19 19:14,"285 Madison St, New York City, NY 10001" -313235,iPhone,1,700,12/15/19 21:09,"648 6th St, Seattle, WA 98101" -313236,Wired Headphones,1,11.99,12/11/19 19:09,"297 Pine St, Atlanta, GA 30301" -313237,Lightning Charging Cable,1,14.95,12/09/19 18:34,"545 Ridge St, Los Angeles, CA 90001" -313238,USB-C Charging Cable,1,11.95,12/10/19 19:00,"857 11th St, San Francisco, CA 94016" -313239,27in 4K Gaming Monitor,1,389.99,12/02/19 12:19,"26 9th St, Boston, MA 02215" -313240,20in Monitor,1,109.99,12/06/19 21:08,"841 Main St, San Francisco, CA 94016" -313241,Bose SoundSport Headphones,1,99.99,12/12/19 10:31,"576 Lake St, New York City, NY 10001" -313242,AAA Batteries (4-pack),1,2.99,12/16/19 19:10,"559 Washington St, Austin, TX 73301" -313243,USB-C Charging Cable,1,11.95,12/18/19 10:02,"474 Spruce St, Seattle, WA 98101" -313244,27in 4K Gaming Monitor,1,389.99,12/10/19 08:27,"125 Elm St, San Francisco, CA 94016" -313245,Apple Airpods Headphones,1,150,12/20/19 01:00,"827 7th St, Dallas, TX 75001" -313246,Bose SoundSport Headphones,1,99.99,12/05/19 20:19,"990 Church St, Atlanta, GA 30301" -313247,USB-C Charging Cable,1,11.95,12/20/19 10:53,"767 Meadow St, Austin, TX 73301" -313247,Apple Airpods Headphones,1,150,12/20/19 10:53,"767 Meadow St, Austin, TX 73301" -313248,Bose SoundSport Headphones,1,99.99,12/16/19 14:08,"353 Hill St, Portland, OR 97035" -313249,34in Ultrawide Monitor,1,379.99,12/02/19 13:39,"633 Chestnut St, Portland, OR 97035" -313250,USB-C Charging Cable,2,11.95,12/18/19 12:05,"177 South St, San Francisco, CA 94016" -313251,Lightning Charging Cable,1,14.95,12/22/19 10:16,"754 9th St, New York City, NY 10001" -313252,AAA Batteries (4-pack),1,2.99,12/19/19 07:08,"969 Meadow St, Los Angeles, CA 90001" -313253,AAA Batteries (4-pack),1,2.99,12/08/19 08:48,"885 Hickory St, Austin, TX 73301" -313254,USB-C Charging Cable,2,11.95,12/18/19 20:35,"697 Sunset St, Boston, MA 02215" -313255,USB-C Charging Cable,1,11.95,12/31/19 20:19,"576 Lake St, Dallas, TX 75001" -313256,Apple Airpods Headphones,1,150,12/03/19 21:17,"8 Jefferson St, New York City, NY 10001" -313257,27in 4K Gaming Monitor,1,389.99,12/01/19 20:59,"448 8th St, Boston, MA 02215" -313258,AAA Batteries (4-pack),1,2.99,12/02/19 13:32,"247 Johnson St, Dallas, TX 75001" -313259,Lightning Charging Cable,1,14.95,12/01/19 19:58,"488 North St, New York City, NY 10001" -313260,AA Batteries (4-pack),1,3.84,12/07/19 18:48,"538 West St, Portland, ME 04101" -313261,27in FHD Monitor,1,149.99,12/10/19 16:40,"283 Willow St, Los Angeles, CA 90001" -313262,USB-C Charging Cable,1,11.95,12/06/19 20:31,"495 Sunset St, Atlanta, GA 30301" -313263,Bose SoundSport Headphones,1,99.99,12/17/19 21:40,"775 Hickory St, Los Angeles, CA 90001" -313264,27in 4K Gaming Monitor,1,389.99,12/01/19 20:40,"258 Adams St, New York City, NY 10001" -313265,27in FHD Monitor,1,149.99,12/04/19 00:17,"596 4th St, Portland, OR 97035" -313266,Apple Airpods Headphones,1,150,12/13/19 11:18,"545 12th St, Seattle, WA 98101" -313267,Bose SoundSport Headphones,1,99.99,12/25/19 14:00,"100 11th St, New York City, NY 10001" -313268,AAA Batteries (4-pack),1,2.99,12/02/19 18:47,"477 Cedar St, Boston, MA 02215" -313269,Wired Headphones,1,11.99,12/01/19 19:19,"428 11th St, Portland, ME 04101" -313270,iPhone,1,700,12/28/19 19:48,"982 Park St, Los Angeles, CA 90001" -313270,Lightning Charging Cable,1,14.95,12/28/19 19:48,"982 Park St, Los Angeles, CA 90001" -313271,Wired Headphones,1,11.99,12/18/19 14:26,"884 Walnut St, Dallas, TX 75001" -313272,20in Monitor,1,109.99,12/10/19 09:55,"528 10th St, Austin, TX 73301" -313273,AA Batteries (4-pack),1,3.84,12/28/19 09:27,"204 Chestnut St, Boston, MA 02215" -313274,AAA Batteries (4-pack),1,2.99,12/11/19 15:30,"652 Main St, Seattle, WA 98101" -313275,LG Dryer,1,600.0,12/26/19 08:54,"862 2nd St, New York City, NY 10001" -313276,Lightning Charging Cable,1,14.95,12/15/19 21:16,"200 Main St, San Francisco, CA 94016" -313277,Wired Headphones,1,11.99,12/26/19 12:31,"396 Center St, Austin, TX 73301" -313278,Flatscreen TV,1,300,12/18/19 10:13,"622 West St, Portland, OR 97035" -313279,Lightning Charging Cable,1,14.95,12/14/19 17:17,"957 Main St, San Francisco, CA 94016" -313280,27in FHD Monitor,1,149.99,12/31/19 09:03,"260 Willow St, New York City, NY 10001" -313281,iPhone,1,700,12/11/19 16:14,"653 Lincoln St, New York City, NY 10001" -313281,Wired Headphones,1,11.99,12/11/19 16:14,"653 Lincoln St, New York City, NY 10001" -313282,Apple Airpods Headphones,1,150,12/18/19 22:01,"350 Highland St, San Francisco, CA 94016" -313283,AA Batteries (4-pack),1,3.84,12/03/19 11:33,"175 Lakeview St, San Francisco, CA 94016" -313284,USB-C Charging Cable,1,11.95,12/01/19 16:32,"296 Chestnut St, Seattle, WA 98101" -313285,iPhone,1,700,12/31/19 20:53,"718 8th St, San Francisco, CA 94016" -313286,Flatscreen TV,1,300,12/04/19 17:01,"526 Dogwood St, Boston, MA 02215" -313287,27in FHD Monitor,1,149.99,12/07/19 13:03,"900 Main St, Los Angeles, CA 90001" -313288,Wired Headphones,1,11.99,12/12/19 10:30,"571 Church St, Boston, MA 02215" -313289,USB-C Charging Cable,1,11.95,12/06/19 10:26,"511 Hickory St, San Francisco, CA 94016" -313290,Wired Headphones,1,11.99,12/27/19 16:06,"415 9th St, San Francisco, CA 94016" -313291,Macbook Pro Laptop,1,1700,12/26/19 20:36,"984 Washington St, Los Angeles, CA 90001" -313292,USB-C Charging Cable,1,11.95,12/25/19 16:03,"198 Johnson St, New York City, NY 10001" -313293,USB-C Charging Cable,1,11.95,12/29/19 21:50,"589 8th St, San Francisco, CA 94016" -313294,USB-C Charging Cable,1,11.95,12/10/19 11:50,"990 Elm St, San Francisco, CA 94016" -313295,Apple Airpods Headphones,1,150,12/22/19 19:20,"774 Lakeview St, Seattle, WA 98101" -313296,Apple Airpods Headphones,1,150,12/27/19 21:33,"130 2nd St, Los Angeles, CA 90001" -313297,AAA Batteries (4-pack),1,2.99,12/04/19 16:53,"459 Jefferson St, San Francisco, CA 94016" -313298,USB-C Charging Cable,1,11.95,12/05/19 17:40,"410 8th St, Seattle, WA 98101" -313299,USB-C Charging Cable,1,11.95,12/26/19 12:04,"36 Cherry St, San Francisco, CA 94016" -313300,Lightning Charging Cable,1,14.95,12/13/19 20:14,"794 Hill St, San Francisco, CA 94016" -313301,Flatscreen TV,1,300,12/18/19 22:27,"105 Spruce St, San Francisco, CA 94016" -313302,27in 4K Gaming Monitor,1,389.99,12/10/19 22:24,"48 8th St, Austin, TX 73301" -313303,USB-C Charging Cable,1,11.95,12/10/19 11:35,"112 Madison St, Los Angeles, CA 90001" -313304,AAA Batteries (4-pack),1,2.99,12/03/19 23:43,"916 West St, San Francisco, CA 94016" -313305,34in Ultrawide Monitor,1,379.99,12/08/19 18:25,"915 Ridge St, Boston, MA 02215" -313306,AA Batteries (4-pack),1,3.84,12/14/19 16:25,"262 7th St, San Francisco, CA 94016" -313307,Apple Airpods Headphones,1,150,12/10/19 21:01,"895 Pine St, Dallas, TX 75001" -313308,AA Batteries (4-pack),1,3.84,12/03/19 14:28,"336 Jackson St, Dallas, TX 75001" -313309,Lightning Charging Cable,1,14.95,12/03/19 10:14,"582 Lake St, Los Angeles, CA 90001" -313310,AAA Batteries (4-pack),2,2.99,12/19/19 02:03,"23 1st St, Dallas, TX 75001" -313311,AA Batteries (4-pack),1,3.84,12/11/19 19:08,"273 14th St, New York City, NY 10001" -313312,27in FHD Monitor,1,149.99,12/29/19 21:10,"22 10th St, New York City, NY 10001" -313313,Wired Headphones,1,11.99,12/06/19 11:48,"516 Jefferson St, Dallas, TX 75001" -313314,Lightning Charging Cable,1,14.95,12/27/19 14:23,"187 Hill St, Seattle, WA 98101" -313315,Bose SoundSport Headphones,1,99.99,12/21/19 06:30,"172 5th St, Atlanta, GA 30301" -313316,iPhone,1,700,12/05/19 21:26,"316 Main St, Los Angeles, CA 90001" -313317,Apple Airpods Headphones,2,150,12/29/19 19:28,"910 4th St, New York City, NY 10001" -313318,Bose SoundSport Headphones,1,99.99,12/02/19 20:11,"149 12th St, Seattle, WA 98101" -313319,Lightning Charging Cable,1,14.95,12/13/19 13:00,"493 5th St, Boston, MA 02215" -313320,AAA Batteries (4-pack),1,2.99,12/25/19 13:01,"605 11th St, Portland, OR 97035" -313321,Vareebadd Phone,1,400,12/13/19 17:48,"321 South St, Dallas, TX 75001" -313322,Wired Headphones,2,11.99,12/08/19 13:41,"728 Lake St, New York City, NY 10001" -313323,AA Batteries (4-pack),1,3.84,12/19/19 23:43,"692 Maple St, San Francisco, CA 94016" -313323,USB-C Charging Cable,1,11.95,12/19/19 23:43,"692 Maple St, San Francisco, CA 94016" -313324,Bose SoundSport Headphones,1,99.99,12/01/19 13:25,"157 Madison St, Los Angeles, CA 90001" -313325,20in Monitor,1,109.99,12/03/19 15:57,"576 South St, Portland, OR 97035" -313326,AAA Batteries (4-pack),2,2.99,12/02/19 17:12,"269 6th St, San Francisco, CA 94016" -313327,Apple Airpods Headphones,1,150,12/09/19 22:25,"812 Elm St, New York City, NY 10001" -313328,Google Phone,1,600,12/20/19 17:42,"554 Jackson St, New York City, NY 10001" -313329,Wired Headphones,1,11.99,12/30/19 23:20,"680 5th St, Seattle, WA 98101" -313330,AAA Batteries (4-pack),1,2.99,12/12/19 17:41,"901 Sunset St, Boston, MA 02215" -313331,AAA Batteries (4-pack),2,2.99,12/10/19 23:26,"424 Dogwood St, San Francisco, CA 94016" -313332,Bose SoundSport Headphones,1,99.99,12/02/19 12:39,"753 Forest St, San Francisco, CA 94016" -313333,USB-C Charging Cable,1,11.95,12/29/19 18:46,"576 6th St, Austin, TX 73301" -313334,AAA Batteries (4-pack),1,2.99,12/19/19 06:34,"607 7th St, San Francisco, CA 94016" -313335,Macbook Pro Laptop,1,1700,12/22/19 13:00,"329 6th St, Dallas, TX 75001" -313336,USB-C Charging Cable,1,11.95,12/25/19 19:31,"284 Maple St, Austin, TX 73301" -313337,Lightning Charging Cable,1,14.95,12/03/19 21:26,"685 Lincoln St, New York City, NY 10001" -313338,Apple Airpods Headphones,1,150,12/21/19 09:13,"880 Forest St, New York City, NY 10001" -313339,Wired Headphones,1,11.99,12/29/19 08:36,"388 River St, Atlanta, GA 30301" -313340,Wired Headphones,1,11.99,12/19/19 11:49,"220 Ridge St, Portland, ME 04101" -313341,AA Batteries (4-pack),2,3.84,12/26/19 20:18,"547 North St, San Francisco, CA 94016" -313342,USB-C Charging Cable,1,11.95,12/26/19 22:52,"725 Meadow St, San Francisco, CA 94016" -313343,Apple Airpods Headphones,1,150,12/13/19 21:24,"731 West St, Dallas, TX 75001" -313344,AAA Batteries (4-pack),2,2.99,12/18/19 13:55,"595 8th St, New York City, NY 10001" -313345,AA Batteries (4-pack),2,3.84,12/09/19 00:51,"664 Forest St, San Francisco, CA 94016" -313346,34in Ultrawide Monitor,1,379.99,12/17/19 20:56,"24 10th St, Los Angeles, CA 90001" -313347,iPhone,1,700,12/01/19 20:27,"189 Ridge St, Atlanta, GA 30301" -313348,Apple Airpods Headphones,1,150,12/31/19 16:34,"630 Cedar St, Boston, MA 02215" -313349,Bose SoundSport Headphones,1,99.99,12/15/19 07:37,"2 Hill St, Atlanta, GA 30301" -313350,AAA Batteries (4-pack),2,2.99,12/05/19 16:14,"365 10th St, New York City, NY 10001" -313351,AAA Batteries (4-pack),1,2.99,12/03/19 11:52,"717 Cherry St, Los Angeles, CA 90001" -313352,Apple Airpods Headphones,1,150,12/12/19 20:35,"528 Lake St, Dallas, TX 75001" -313353,Apple Airpods Headphones,1,150,12/31/19 12:58,"259 Cherry St, Seattle, WA 98101" -313354,Flatscreen TV,1,300,12/01/19 17:46,"547 Church St, San Francisco, CA 94016" -313355,AAA Batteries (4-pack),1,2.99,12/16/19 11:21,"909 Maple St, San Francisco, CA 94016" -313356,AAA Batteries (4-pack),1,2.99,12/26/19 12:36,"629 1st St, Los Angeles, CA 90001" -313357,iPhone,1,700,12/08/19 14:59,"404 9th St, Seattle, WA 98101" -313358,AA Batteries (4-pack),1,3.84,12/29/19 11:05,"319 North St, New York City, NY 10001" -313359,AAA Batteries (4-pack),2,2.99,12/29/19 19:21,"930 Highland St, Austin, TX 73301" -313360,iPhone,1,700,12/15/19 11:45,"445 Madison St, Los Angeles, CA 90001" -313360,Lightning Charging Cable,1,14.95,12/15/19 11:45,"445 Madison St, Los Angeles, CA 90001" -313361,Wired Headphones,1,11.99,12/10/19 18:49,"648 6th St, Los Angeles, CA 90001" -313362,27in FHD Monitor,1,149.99,12/24/19 19:41,"164 11th St, Boston, MA 02215" -313363,USB-C Charging Cable,1,11.95,12/16/19 12:01,"209 Johnson St, Atlanta, GA 30301" -313364,Macbook Pro Laptop,1,1700,12/22/19 22:06,"913 Walnut St, New York City, NY 10001" -313365,USB-C Charging Cable,1,11.95,12/22/19 22:49,"578 5th St, Atlanta, GA 30301" -313366,20in Monitor,1,109.99,12/21/19 12:16,"394 2nd St, Atlanta, GA 30301" -313367,AAA Batteries (4-pack),1,2.99,12/13/19 12:24,"281 Main St, Dallas, TX 75001" -313368,ThinkPad Laptop,1,999.99,12/25/19 16:18,"594 Wilson St, Boston, MA 02215" -313369,Google Phone,1,600,12/13/19 11:36,"715 7th St, San Francisco, CA 94016" -313370,AAA Batteries (4-pack),3,2.99,12/24/19 20:16,"808 Walnut St, Dallas, TX 75001" -313371,Google Phone,1,600,12/20/19 17:59,"79 Park St, Seattle, WA 98101" -313372,AA Batteries (4-pack),1,3.84,12/13/19 21:59,"423 Forest St, Los Angeles, CA 90001" -313373,Vareebadd Phone,1,400,12/30/19 21:16,"991 1st St, Los Angeles, CA 90001" -313374,AA Batteries (4-pack),3,3.84,12/03/19 20:42,"19 Dogwood St, San Francisco, CA 94016" -313375,USB-C Charging Cable,1,11.95,12/26/19 22:10,"85 10th St, Seattle, WA 98101" -313376,Flatscreen TV,1,300,12/24/19 12:00,"319 Center St, San Francisco, CA 94016" -313377,AAA Batteries (4-pack),3,2.99,12/17/19 23:31,"122 2nd St, Los Angeles, CA 90001" -313378,AAA Batteries (4-pack),5,2.99,12/26/19 21:01,"447 8th St, Dallas, TX 75001" -313379,Apple Airpods Headphones,1,150,12/05/19 23:11,"354 Wilson St, Boston, MA 02215" -313380,Wired Headphones,1,11.99,12/10/19 19:14,"678 11th St, New York City, NY 10001" -313381,ThinkPad Laptop,1,999.99,12/31/19 19:45,"208 Cherry St, Atlanta, GA 30301" -313382,Bose SoundSport Headphones,1,99.99,12/21/19 21:07,"737 7th St, Boston, MA 02215" -313383,AAA Batteries (4-pack),1,2.99,12/23/19 09:26,"314 Wilson St, Los Angeles, CA 90001" -313384,AAA Batteries (4-pack),1,2.99,12/15/19 18:39,"238 Lakeview St, Atlanta, GA 30301" -313385,iPhone,1,700,12/23/19 10:04,"8 Sunset St, Los Angeles, CA 90001" -313385,Apple Airpods Headphones,1,150,12/23/19 10:04,"8 Sunset St, Los Angeles, CA 90001" -313386,AAA Batteries (4-pack),1,2.99,12/15/19 06:19,"510 River St, Austin, TX 73301" -313387,Bose SoundSport Headphones,1,99.99,12/04/19 21:04,"229 8th St, Seattle, WA 98101" -313388,27in FHD Monitor,1,149.99,12/09/19 15:24,"509 Elm St, Los Angeles, CA 90001" -313389,AAA Batteries (4-pack),1,2.99,12/07/19 11:40,"960 Chestnut St, Austin, TX 73301" -313390,Bose SoundSport Headphones,1,99.99,12/13/19 01:50,"334 Hickory St, New York City, NY 10001" -313391,27in FHD Monitor,1,149.99,12/28/19 21:47,"833 Main St, Austin, TX 73301" -313392,AA Batteries (4-pack),1,3.84,12/26/19 10:23,"997 Center St, Atlanta, GA 30301" -313393,34in Ultrawide Monitor,1,379.99,12/19/19 05:26,"513 Lincoln St, San Francisco, CA 94016" -313394,Lightning Charging Cable,1,14.95,12/28/19 16:01,"417 Lakeview St, Los Angeles, CA 90001" -313395,Bose SoundSport Headphones,1,99.99,12/18/19 23:50,"972 Maple St, Dallas, TX 75001" -313396,AA Batteries (4-pack),1,3.84,12/15/19 23:53,"505 Elm St, Austin, TX 73301" -313397,Wired Headphones,1,11.99,12/18/19 12:34,"63 5th St, Los Angeles, CA 90001" -313398,Bose SoundSport Headphones,1,99.99,12/27/19 07:44,"993 Lakeview St, Los Angeles, CA 90001" -313399,AA Batteries (4-pack),1,3.84,12/27/19 09:51,"886 Church St, Los Angeles, CA 90001" -313400,AAA Batteries (4-pack),1,2.99,12/29/19 09:17,"586 Church St, Los Angeles, CA 90001" -313401,AA Batteries (4-pack),1,3.84,12/15/19 14:52,"142 13th St, Los Angeles, CA 90001" -313402,USB-C Charging Cable,1,11.95,12/10/19 03:17,"309 Jefferson St, San Francisco, CA 94016" -313403,27in 4K Gaming Monitor,1,389.99,12/31/19 22:32,"927 Main St, San Francisco, CA 94016" -313404,Macbook Pro Laptop,1,1700,12/16/19 09:29,"227 Spruce St, Dallas, TX 75001" -313405,USB-C Charging Cable,1,11.95,12/28/19 19:21,"69 Spruce St, New York City, NY 10001" -313406,AA Batteries (4-pack),2,3.84,12/25/19 13:03,"176 Ridge St, Austin, TX 73301" -313407,Wired Headphones,1,11.99,12/02/19 14:46,"234 13th St, San Francisco, CA 94016" -313408,Apple Airpods Headphones,1,150,12/27/19 10:20,"72 Jackson St, New York City, NY 10001" -313409,USB-C Charging Cable,1,11.95,12/25/19 06:48,"697 Cherry St, San Francisco, CA 94016" -313410,Wired Headphones,1,11.99,12/27/19 19:47,"6 Hill St, San Francisco, CA 94016" -313410,Wired Headphones,1,11.99,12/27/19 19:47,"6 Hill St, San Francisco, CA 94016" -313411,Apple Airpods Headphones,1,150,12/03/19 18:32,"723 Meadow St, Portland, OR 97035" -313412,Google Phone,1,600,12/06/19 22:31,"459 4th St, New York City, NY 10001" -313413,Bose SoundSport Headphones,1,99.99,12/21/19 13:31,"285 Jackson St, Seattle, WA 98101" -313414,AAA Batteries (4-pack),1,2.99,12/24/19 19:57,"278 Cherry St, Seattle, WA 98101" -313415,AA Batteries (4-pack),1,3.84,12/19/19 20:19,"967 9th St, Dallas, TX 75001" -313416,Wired Headphones,1,11.99,12/17/19 18:15,"121 Jackson St, San Francisco, CA 94016" -313417,AA Batteries (4-pack),2,3.84,12/30/19 20:07,"148 10th St, Austin, TX 73301" -313418,AAA Batteries (4-pack),2,2.99,12/27/19 19:09,"977 West St, San Francisco, CA 94016" -313419,AAA Batteries (4-pack),1,2.99,12/16/19 19:03,"340 Johnson St, Dallas, TX 75001" -313420,AA Batteries (4-pack),2,3.84,12/01/19 18:00,"393 Madison St, San Francisco, CA 94016" -313421,AA Batteries (4-pack),1,3.84,12/14/19 20:11,"222 Cherry St, Austin, TX 73301" -313422,27in FHD Monitor,1,149.99,12/15/19 16:29,"256 Willow St, Austin, TX 73301" -313423,USB-C Charging Cable,1,11.95,12/24/19 12:05,"782 Dogwood St, Dallas, TX 75001" -313424,AA Batteries (4-pack),1,3.84,12/04/19 15:29,"859 Main St, New York City, NY 10001" -313425,Google Phone,1,600,12/20/19 21:55,"570 13th St, San Francisco, CA 94016" -313425,AA Batteries (4-pack),1,3.84,12/20/19 21:55,"570 13th St, San Francisco, CA 94016" -313426,AAA Batteries (4-pack),1,2.99,12/22/19 13:17,"807 River St, New York City, NY 10001" -313427,ThinkPad Laptop,1,999.99,12/12/19 10:32,"444 Hill St, Portland, OR 97035" -313428,Bose SoundSport Headphones,1,99.99,12/06/19 16:31,"92 Elm St, San Francisco, CA 94016" -313429,Apple Airpods Headphones,1,150,12/16/19 18:52,"93 South St, Portland, OR 97035" -313430,ThinkPad Laptop,1,999.99,12/02/19 22:47,"550 Willow St, New York City, NY 10001" -313431,Lightning Charging Cable,1,14.95,12/04/19 15:23,"697 11th St, New York City, NY 10001" -313432,27in 4K Gaming Monitor,1,389.99,12/29/19 18:40,"518 Jefferson St, Portland, OR 97035" -313433,USB-C Charging Cable,2,11.95,12/17/19 18:20,"639 13th St, Atlanta, GA 30301" -313434,USB-C Charging Cable,1,11.95,12/27/19 22:34,"595 Meadow St, Boston, MA 02215" -313435,Google Phone,1,600,12/05/19 23:03,"804 Meadow St, New York City, NY 10001" -313436,AA Batteries (4-pack),1,3.84,12/20/19 12:12,"796 North St, Los Angeles, CA 90001" -313437,ThinkPad Laptop,1,999.99,12/28/19 20:36,"454 5th St, Portland, ME 04101" -313438,USB-C Charging Cable,1,11.95,12/22/19 08:55,"279 1st St, San Francisco, CA 94016" -313439,20in Monitor,1,109.99,12/01/19 13:42,"554 Sunset St, Los Angeles, CA 90001" -313440,USB-C Charging Cable,1,11.95,12/16/19 22:56,"343 Wilson St, Dallas, TX 75001" -313441,Apple Airpods Headphones,1,150,12/14/19 10:33,"952 Hill St, Dallas, TX 75001" -313442,AA Batteries (4-pack),1,3.84,12/26/19 20:45,"991 Willow St, Los Angeles, CA 90001" -313443,ThinkPad Laptop,1,999.99,12/23/19 10:06,"509 Dogwood St, Seattle, WA 98101" -313444,34in Ultrawide Monitor,1,379.99,12/19/19 12:07,"964 Hickory St, Portland, ME 04101" -313445,Bose SoundSport Headphones,1,99.99,12/23/19 15:47,"417 River St, Dallas, TX 75001" -313446,AA Batteries (4-pack),1,3.84,12/17/19 10:32,"717 Main St, Dallas, TX 75001" -313447,AAA Batteries (4-pack),1,2.99,12/06/19 20:03,"778 11th St, Dallas, TX 75001" -313448,Lightning Charging Cable,1,14.95,12/21/19 16:41,"25 Lake St, Atlanta, GA 30301" -313449,ThinkPad Laptop,1,999.99,12/01/19 05:07,"279 Jefferson St, New York City, NY 10001" -313450,27in 4K Gaming Monitor,1,389.99,12/02/19 01:17,"596 8th St, Austin, TX 73301" -313451,Apple Airpods Headphones,1,150,12/07/19 11:40,"625 Hill St, San Francisco, CA 94016" -313452,Lightning Charging Cable,1,14.95,12/10/19 19:14,"581 Willow St, Boston, MA 02215" -313453,Bose SoundSport Headphones,1,99.99,12/21/19 15:16,"387 Church St, Los Angeles, CA 90001" -313454,Apple Airpods Headphones,1,150,12/04/19 10:02,"793 Dogwood St, Seattle, WA 98101" -313455,27in FHD Monitor,1,149.99,12/28/19 22:21,"575 Center St, Los Angeles, CA 90001" -313456,Lightning Charging Cable,1,14.95,12/11/19 18:27,"199 4th St, San Francisco, CA 94016" -313457,USB-C Charging Cable,1,11.95,12/10/19 09:45,"199 12th St, Seattle, WA 98101" -313458,Apple Airpods Headphones,1,150,12/30/19 06:52,"132 Washington St, New York City, NY 10001" -313459,Wired Headphones,1,11.99,12/16/19 15:35,"559 12th St, Boston, MA 02215" -313460,27in 4K Gaming Monitor,1,389.99,12/29/19 06:32,"559 Adams St, New York City, NY 10001" -313461,Lightning Charging Cable,1,14.95,12/17/19 18:28,"169 Johnson St, San Francisco, CA 94016" -313462,Lightning Charging Cable,1,14.95,12/03/19 10:26,"427 Park St, San Francisco, CA 94016" -313463,USB-C Charging Cable,1,11.95,12/05/19 17:41,"400 Jackson St, Seattle, WA 98101" -313464,USB-C Charging Cable,1,11.95,12/10/19 19:17,"355 Maple St, Atlanta, GA 30301" -313465,Lightning Charging Cable,2,14.95,12/17/19 10:17,"111 4th St, Los Angeles, CA 90001" -313466,iPhone,1,700,12/01/19 20:18,"189 Center St, Atlanta, GA 30301" -313467,AA Batteries (4-pack),1,3.84,12/28/19 14:11,"276 Meadow St, Boston, MA 02215" -313468,27in FHD Monitor,1,149.99,12/20/19 14:30,"687 12th St, New York City, NY 10001" -313469,Apple Airpods Headphones,1,150,12/24/19 12:46,"366 Adams St, Austin, TX 73301" -313470,Google Phone,1,600,12/26/19 16:30,"718 Willow St, San Francisco, CA 94016" -313471,AAA Batteries (4-pack),2,2.99,12/29/19 14:31,"201 Willow St, Dallas, TX 75001" -313472,Bose SoundSport Headphones,1,99.99,12/27/19 23:46,"232 Madison St, Portland, OR 97035" -313473,iPhone,1,700,12/17/19 07:53,"845 5th St, Dallas, TX 75001" -313474,Wired Headphones,1,11.99,12/16/19 10:36,"770 Wilson St, Los Angeles, CA 90001" -313475,USB-C Charging Cable,1,11.95,12/29/19 06:05,"465 Forest St, Los Angeles, CA 90001" -313476,ThinkPad Laptop,1,999.99,12/14/19 22:55,"821 Lakeview St, Boston, MA 02215" -313477,27in FHD Monitor,1,149.99,12/28/19 08:54,"586 North St, Boston, MA 02215" -313478,AAA Batteries (4-pack),1,2.99,12/18/19 16:18,"269 West St, San Francisco, CA 94016" -313479,USB-C Charging Cable,1,11.95,12/19/19 23:33,"943 Cherry St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -313480,USB-C Charging Cable,2,11.95,12/19/19 19:46,"539 Johnson St, Atlanta, GA 30301" -313481,USB-C Charging Cable,1,11.95,12/15/19 11:36,"238 10th St, New York City, NY 10001" -313482,Apple Airpods Headphones,1,150,12/03/19 22:04,"102 Center St, Austin, TX 73301" -313483,AA Batteries (4-pack),1,3.84,12/24/19 10:25,"393 Elm St, Dallas, TX 75001" -313484,AAA Batteries (4-pack),1,2.99,12/19/19 17:08,"588 Wilson St, Boston, MA 02215" -313485,34in Ultrawide Monitor,1,379.99,12/02/19 11:38,"353 1st St, Los Angeles, CA 90001" -313486,Lightning Charging Cable,1,14.95,12/07/19 15:55,"565 Adams St, Los Angeles, CA 90001" -313487,AAA Batteries (4-pack),1,2.99,12/01/19 20:11,"728 Johnson St, San Francisco, CA 94016" -313488,USB-C Charging Cable,1,11.95,12/10/19 14:21,"600 Lincoln St, Boston, MA 02215" -313489,AA Batteries (4-pack),2,3.84,12/23/19 10:55,"876 Park St, Austin, TX 73301" -313490,AAA Batteries (4-pack),1,2.99,12/16/19 22:26,"513 Willow St, Boston, MA 02215" -313490,Macbook Pro Laptop,1,1700,12/16/19 22:26,"513 Willow St, Boston, MA 02215" -313491,USB-C Charging Cable,2,11.95,12/30/19 12:05,"898 9th St, New York City, NY 10001" -313492,Macbook Pro Laptop,1,1700,12/17/19 14:55,"298 Lincoln St, Los Angeles, CA 90001" -313493,ThinkPad Laptop,1,999.99,12/15/19 22:23,"211 South St, Los Angeles, CA 90001" -313494,ThinkPad Laptop,1,999.99,12/23/19 07:54,"909 West St, New York City, NY 10001" -313495,USB-C Charging Cable,1,11.95,12/28/19 16:45,"245 Lincoln St, Dallas, TX 75001" -313496,USB-C Charging Cable,1,11.95,12/21/19 10:45,"947 Ridge St, Atlanta, GA 30301" -313497,USB-C Charging Cable,1,11.95,12/24/19 18:17,"488 Maple St, Boston, MA 02215" -313498,Wired Headphones,1,11.99,12/25/19 17:23,"269 5th St, San Francisco, CA 94016" -313499,USB-C Charging Cable,1,11.95,12/23/19 01:01,"90 12th St, Boston, MA 02215" -313500,34in Ultrawide Monitor,1,379.99,12/17/19 13:24,"484 11th St, Dallas, TX 75001" -313501,Bose SoundSport Headphones,1,99.99,12/19/19 20:47,"858 5th St, Seattle, WA 98101" -313502,Lightning Charging Cable,1,14.95,12/08/19 13:04,"637 North St, San Francisco, CA 94016" -313503,AAA Batteries (4-pack),1,2.99,12/26/19 08:19,"270 Dogwood St, New York City, NY 10001" -313504,LG Dryer,1,600.0,12/22/19 15:24,"469 Chestnut St, Boston, MA 02215" -313505,Google Phone,1,600,12/04/19 12:10,"293 Park St, San Francisco, CA 94016" -313506,34in Ultrawide Monitor,1,379.99,12/29/19 14:47,"50 Chestnut St, New York City, NY 10001" -313507,AAA Batteries (4-pack),1,2.99,12/12/19 17:54,"28 Johnson St, Los Angeles, CA 90001" -313508,Lightning Charging Cable,1,14.95,12/09/19 06:45,"730 14th St, Dallas, TX 75001" -313509,Wired Headphones,1,11.99,12/12/19 22:31,"900 South St, San Francisco, CA 94016" -313510,AAA Batteries (4-pack),1,2.99,12/09/19 12:15,"377 12th St, San Francisco, CA 94016" -313511,AAA Batteries (4-pack),2,2.99,12/29/19 19:01,"188 8th St, Los Angeles, CA 90001" -313512,Apple Airpods Headphones,1,150,12/18/19 19:52,"494 Jackson St, Los Angeles, CA 90001" -313513,Lightning Charging Cable,1,14.95,12/23/19 04:19,"167 Highland St, Los Angeles, CA 90001" -313514,Macbook Pro Laptop,1,1700,12/12/19 14:02,"909 Maple St, Dallas, TX 75001" -313515,AA Batteries (4-pack),1,3.84,12/04/19 15:09,"91 Hill St, Portland, OR 97035" -313516,LG Washing Machine,1,600.0,12/14/19 12:15,"414 1st St, Boston, MA 02215" -313517,Apple Airpods Headphones,1,150,12/30/19 15:20,"248 Lincoln St, Austin, TX 73301" -313518,Bose SoundSport Headphones,1,99.99,12/18/19 22:23,"341 7th St, San Francisco, CA 94016" -313519,Lightning Charging Cable,1,14.95,12/17/19 12:33,"87 Dogwood St, Los Angeles, CA 90001" -313520,AA Batteries (4-pack),1,3.84,12/20/19 13:46,"112 Lakeview St, New York City, NY 10001" -313521,iPhone,1,700,12/31/19 19:55,"903 Jefferson St, Los Angeles, CA 90001" -313522,AA Batteries (4-pack),1,3.84,12/28/19 20:34,"891 Adams St, Portland, OR 97035" -313523,27in FHD Monitor,1,149.99,12/04/19 20:55,"200 Center St, San Francisco, CA 94016" -313523,Lightning Charging Cable,1,14.95,12/04/19 20:55,"200 Center St, San Francisco, CA 94016" -313524,27in FHD Monitor,1,149.99,12/27/19 08:43,"54 Maple St, New York City, NY 10001" -313525,AAA Batteries (4-pack),1,2.99,12/07/19 14:32,"17 Washington St, Portland, OR 97035" -313526,27in FHD Monitor,1,149.99,12/07/19 16:19,"541 Chestnut St, San Francisco, CA 94016" -313527,Google Phone,1,600,12/03/19 14:15,"420 Park St, Boston, MA 02215" -313528,USB-C Charging Cable,2,11.95,12/29/19 19:36,"29 5th St, Seattle, WA 98101" -313529,AA Batteries (4-pack),1,3.84,12/03/19 06:15,"21 5th St, San Francisco, CA 94016" -313530,USB-C Charging Cable,1,11.95,12/29/19 20:13,"683 Center St, Boston, MA 02215" -313531,Bose SoundSport Headphones,1,99.99,12/07/19 20:47,"814 Walnut St, Los Angeles, CA 90001" -313532,Wired Headphones,1,11.99,12/26/19 20:36,"703 Spruce St, San Francisco, CA 94016" -313533,Apple Airpods Headphones,1,150,12/18/19 13:35,"884 Adams St, Los Angeles, CA 90001" -313534,iPhone,1,700,12/03/19 12:14,"957 Hickory St, New York City, NY 10001" -313535,Google Phone,1,600,12/12/19 13:36,"487 Cedar St, San Francisco, CA 94016" -313536,34in Ultrawide Monitor,1,379.99,12/09/19 00:20,"216 Elm St, Seattle, WA 98101" -313537,27in 4K Gaming Monitor,1,389.99,12/06/19 11:51,"415 Jackson St, New York City, NY 10001" -313538,ThinkPad Laptop,1,999.99,12/29/19 22:29,"58 5th St, Boston, MA 02215" -313539,27in 4K Gaming Monitor,1,389.99,12/30/19 08:59,"93 Sunset St, San Francisco, CA 94016" -313540,Google Phone,1,600,12/24/19 13:37,"243 Wilson St, Los Angeles, CA 90001" -313541,Lightning Charging Cable,1,14.95,12/31/19 17:10,"835 1st St, Austin, TX 73301" -313541,USB-C Charging Cable,1,11.95,12/31/19 17:10,"835 1st St, Austin, TX 73301" -313542,AAA Batteries (4-pack),1,2.99,12/26/19 21:45,"234 Highland St, Atlanta, GA 30301" -313543,USB-C Charging Cable,1,11.95,12/21/19 18:36,"630 Lincoln St, Portland, OR 97035" -313544,Flatscreen TV,1,300,12/06/19 13:49,"409 Forest St, San Francisco, CA 94016" -313545,USB-C Charging Cable,1,11.95,12/25/19 23:01,"63 11th St, New York City, NY 10001" -313546,AA Batteries (4-pack),2,3.84,12/25/19 13:22,"23 Willow St, Dallas, TX 75001" -313547,27in 4K Gaming Monitor,1,389.99,12/24/19 00:10,"836 Spruce St, New York City, NY 10001" -313548,LG Dryer,1,600.0,12/10/19 15:47,"521 7th St, San Francisco, CA 94016" -313549,AA Batteries (4-pack),1,3.84,12/15/19 14:11,"670 7th St, Los Angeles, CA 90001" -313550,Apple Airpods Headphones,1,150,12/26/19 11:18,"876 13th St, Dallas, TX 75001" -313551,Google Phone,1,600,12/12/19 01:50,"20 Walnut St, San Francisco, CA 94016" -313552,Wired Headphones,1,11.99,12/17/19 19:01,"432 2nd St, San Francisco, CA 94016" -313553,ThinkPad Laptop,1,999.99,12/05/19 08:42,"945 Hickory St, Los Angeles, CA 90001" -313554,iPhone,1,700,12/09/19 20:13,"144 Wilson St, Los Angeles, CA 90001" -313555,Apple Airpods Headphones,1,150,12/03/19 20:17,"930 Cherry St, San Francisco, CA 94016" -313556,20in Monitor,1,109.99,12/16/19 00:52,"426 Adams St, New York City, NY 10001" -313557,Wired Headphones,1,11.99,12/22/19 10:44,"949 Adams St, San Francisco, CA 94016" -313558,USB-C Charging Cable,1,11.95,12/19/19 18:38,"580 Hickory St, Boston, MA 02215" -313559,Lightning Charging Cable,1,14.95,12/10/19 18:15,"962 Ridge St, New York City, NY 10001" -313560,ThinkPad Laptop,1,999.99,12/11/19 19:12,"576 Hill St, Atlanta, GA 30301" -313561,Apple Airpods Headphones,1,150,12/21/19 11:08,"349 River St, Los Angeles, CA 90001" -313562,27in FHD Monitor,1,149.99,12/28/19 19:56,"332 Highland St, San Francisco, CA 94016" -313563,Lightning Charging Cable,1,14.95,12/17/19 22:07,"523 Church St, New York City, NY 10001" -313564,AAA Batteries (4-pack),3,2.99,12/02/19 17:01,"20 West St, Los Angeles, CA 90001" -313565,Lightning Charging Cable,1,14.95,12/15/19 19:44,"13 12th St, Seattle, WA 98101" -313566,27in FHD Monitor,1,149.99,12/01/19 23:53,"607 Main St, Dallas, TX 75001" -313567,Lightning Charging Cable,1,14.95,12/06/19 20:16,"690 Jefferson St, Los Angeles, CA 90001" -313568,Google Phone,1,600,12/10/19 10:37,"819 South St, New York City, NY 10001" -313569,Apple Airpods Headphones,1,150,12/21/19 15:04,"652 River St, San Francisco, CA 94016" -313570,AA Batteries (4-pack),1,3.84,12/25/19 23:43,"89 10th St, New York City, NY 10001" -313571,34in Ultrawide Monitor,1,379.99,12/30/19 12:21,"86 14th St, Atlanta, GA 30301" -313572,AAA Batteries (4-pack),2,2.99,12/31/19 11:31,"31 9th St, Portland, ME 04101" -313573,Wired Headphones,1,11.99,12/24/19 11:04,"867 Walnut St, San Francisco, CA 94016" -313574,Bose SoundSport Headphones,1,99.99,12/21/19 13:03,"51 North St, Austin, TX 73301" -313575,Bose SoundSport Headphones,1,99.99,12/16/19 16:44,"838 Lincoln St, Austin, TX 73301" -313576,AAA Batteries (4-pack),1,2.99,12/16/19 10:36,"84 Madison St, Austin, TX 73301" -313577,USB-C Charging Cable,1,11.95,12/05/19 14:08,"851 Sunset St, Dallas, TX 75001" -313578,Apple Airpods Headphones,1,150,12/25/19 08:26,"281 Walnut St, San Francisco, CA 94016" -313579,Lightning Charging Cable,1,14.95,12/13/19 19:14,"307 Center St, San Francisco, CA 94016" -313580,AAA Batteries (4-pack),2,2.99,12/12/19 11:08,"787 7th St, Portland, OR 97035" -313581,AA Batteries (4-pack),1,3.84,12/22/19 22:27,"406 Cherry St, San Francisco, CA 94016" -313582,USB-C Charging Cable,1,11.95,12/29/19 13:10,"440 Lakeview St, Dallas, TX 75001" -313583,Flatscreen TV,1,300,12/08/19 17:00,"283 Adams St, San Francisco, CA 94016" -313584,AA Batteries (4-pack),3,3.84,12/30/19 15:27,"120 South St, Seattle, WA 98101" -313585,Macbook Pro Laptop,1,1700,12/04/19 15:44,"747 South St, Atlanta, GA 30301" -313586,AAA Batteries (4-pack),1,2.99,12/19/19 17:21,"54 Madison St, Seattle, WA 98101" -313587,Wired Headphones,1,11.99,12/03/19 13:40,"568 Pine St, New York City, NY 10001" -313588,AAA Batteries (4-pack),4,2.99,12/20/19 14:59,"701 Forest St, Portland, OR 97035" -313589,Lightning Charging Cable,1,14.95,12/11/19 17:13,"287 1st St, San Francisco, CA 94016" -313590,AA Batteries (4-pack),1,3.84,12/23/19 19:15,"861 Adams St, San Francisco, CA 94016" -313591,AAA Batteries (4-pack),1,2.99,12/17/19 04:56,"14 Lakeview St, San Francisco, CA 94016" -313592,iPhone,1,700,12/02/19 21:53,"816 2nd St, Los Angeles, CA 90001" -313593,34in Ultrawide Monitor,1,379.99,12/08/19 15:17,"888 Hill St, Seattle, WA 98101" -313594,AAA Batteries (4-pack),1,2.99,12/05/19 09:11,"685 Elm St, Boston, MA 02215" -313595,Apple Airpods Headphones,1,150,12/23/19 12:13,"910 12th St, New York City, NY 10001" -313596,Lightning Charging Cable,1,14.95,12/05/19 13:45,"549 12th St, Los Angeles, CA 90001" -313597,27in 4K Gaming Monitor,1,389.99,12/14/19 14:24,"223 8th St, Austin, TX 73301" -313598,Lightning Charging Cable,1,14.95,12/14/19 10:39,"519 Wilson St, San Francisco, CA 94016" -313599,AAA Batteries (4-pack),3,2.99,12/15/19 18:36,"727 7th St, New York City, NY 10001" -313600,Google Phone,1,600,12/23/19 19:30,"503 Cherry St, Dallas, TX 75001" -313601,LG Dryer,1,600.0,12/16/19 06:51,"645 Lincoln St, Austin, TX 73301" -313602,Wired Headphones,1,11.99,12/14/19 20:51,"773 Maple St, San Francisco, CA 94016" -313603,Lightning Charging Cable,1,14.95,12/27/19 14:44,"254 West St, Atlanta, GA 30301" -313604,USB-C Charging Cable,1,11.95,12/20/19 13:49,"6 River St, San Francisco, CA 94016" -313605,27in 4K Gaming Monitor,1,389.99,12/26/19 20:02,"129 Lake St, Atlanta, GA 30301" -313606,iPhone,1,700,12/16/19 10:23,"546 Adams St, New York City, NY 10001" -313607,27in FHD Monitor,1,149.99,12/03/19 21:26,"106 Lincoln St, Boston, MA 02215" -313608,27in FHD Monitor,1,149.99,12/28/19 16:00,"799 Spruce St, Dallas, TX 75001" -313609,Wired Headphones,1,11.99,12/06/19 20:43,"356 Johnson St, Portland, OR 97035" -313610,USB-C Charging Cable,1,11.95,12/28/19 10:46,"923 Lincoln St, Los Angeles, CA 90001" -313611,USB-C Charging Cable,1,11.95,12/19/19 21:21,"95 Jackson St, Seattle, WA 98101" -313612,Google Phone,1,600,12/22/19 16:40,"161 1st St, Atlanta, GA 30301" -313612,Bose SoundSport Headphones,1,99.99,12/22/19 16:40,"161 1st St, Atlanta, GA 30301" -313613,Apple Airpods Headphones,1,150,12/26/19 21:59,"444 Chestnut St, San Francisco, CA 94016" -313614,34in Ultrawide Monitor,1,379.99,12/20/19 12:25,"43 River St, Austin, TX 73301" -313615,34in Ultrawide Monitor,1,379.99,12/24/19 07:54,"563 Lincoln St, Portland, OR 97035" -313616,USB-C Charging Cable,2,11.95,12/30/19 07:06,"696 Park St, Los Angeles, CA 90001" -313617,AAA Batteries (4-pack),1,2.99,12/08/19 19:27,"195 Madison St, Los Angeles, CA 90001" -313618,27in 4K Gaming Monitor,1,389.99,12/13/19 13:20,"102 Cherry St, San Francisco, CA 94016" -313618,AA Batteries (4-pack),1,3.84,12/13/19 13:20,"102 Cherry St, San Francisco, CA 94016" -313619,Bose SoundSport Headphones,1,99.99,12/17/19 19:10,"229 Pine St, San Francisco, CA 94016" -313620,AA Batteries (4-pack),1,3.84,12/12/19 16:41,"646 South St, Portland, ME 04101" -313621,27in 4K Gaming Monitor,1,389.99,12/11/19 18:05,"274 Sunset St, Dallas, TX 75001" -313622,Apple Airpods Headphones,1,150,12/09/19 16:56,"500 Church St, Seattle, WA 98101" -313623,AA Batteries (4-pack),1,3.84,12/04/19 08:56,"998 5th St, Boston, MA 02215" -313624,AA Batteries (4-pack),3,3.84,12/14/19 12:40,"570 4th St, Atlanta, GA 30301" -313625,Macbook Pro Laptop,1,1700,12/23/19 00:24,"545 Lakeview St, Atlanta, GA 30301" -313626,Lightning Charging Cable,1,14.95,12/03/19 20:13,"141 10th St, San Francisco, CA 94016" -313627,AA Batteries (4-pack),2,3.84,12/05/19 16:27,"926 Park St, Atlanta, GA 30301" -313628,Apple Airpods Headphones,1,150,12/20/19 18:05,"176 1st St, New York City, NY 10001" -313629,Lightning Charging Cable,1,14.95,12/17/19 15:29,"823 Park St, San Francisco, CA 94016" -313630,Bose SoundSport Headphones,1,99.99,12/25/19 19:08,"877 11th St, San Francisco, CA 94016" -313631,Lightning Charging Cable,1,14.95,12/31/19 14:07,"18 Washington St, San Francisco, CA 94016" -313631,LG Washing Machine,1,600.0,12/31/19 14:07,"18 Washington St, San Francisco, CA 94016" -313632,Apple Airpods Headphones,1,150,12/11/19 16:11,"277 Washington St, Boston, MA 02215" -313633,Wired Headphones,1,11.99,12/13/19 14:09,"881 Adams St, San Francisco, CA 94016" -313634,USB-C Charging Cable,1,11.95,12/23/19 11:12,"714 5th St, San Francisco, CA 94016" -,,,,, -313635,Apple Airpods Headphones,1,150,12/22/19 15:03,"818 Cherry St, Austin, TX 73301" -313636,iPhone,1,700,12/30/19 17:40,"670 Elm St, Portland, OR 97035" -313636,Apple Airpods Headphones,1,150,12/30/19 17:40,"670 Elm St, Portland, OR 97035" -313636,Wired Headphones,1,11.99,12/30/19 17:40,"670 Elm St, Portland, OR 97035" -313637,Wired Headphones,1,11.99,12/26/19 01:13,"514 Hickory St, Portland, OR 97035" -313638,Bose SoundSport Headphones,1,99.99,12/03/19 08:15,"917 6th St, Atlanta, GA 30301" -313639,34in Ultrawide Monitor,1,379.99,12/08/19 18:48,"8 Center St, San Francisco, CA 94016" -313640,34in Ultrawide Monitor,1,379.99,12/09/19 09:16,"670 Cherry St, San Francisco, CA 94016" -313641,USB-C Charging Cable,1,11.95,12/24/19 11:08,"392 Willow St, Los Angeles, CA 90001" -313642,Lightning Charging Cable,1,14.95,12/19/19 15:24,"352 Dogwood St, Dallas, TX 75001" -313643,27in FHD Monitor,1,149.99,12/15/19 13:48,"27 Maple St, Los Angeles, CA 90001" -313644,Wired Headphones,1,11.99,12/15/19 18:29,"674 Jefferson St, Seattle, WA 98101" -313645,Flatscreen TV,1,300,12/16/19 20:44,"844 Jackson St, San Francisco, CA 94016" -313646,Apple Airpods Headphones,1,150,12/05/19 16:46,"430 West St, San Francisco, CA 94016" -313647,Flatscreen TV,1,300,12/14/19 16:11,"389 5th St, New York City, NY 10001" -313648,Apple Airpods Headphones,1,150,12/04/19 21:08,"608 River St, New York City, NY 10001" -313649,27in FHD Monitor,1,149.99,12/13/19 18:21,"938 8th St, San Francisco, CA 94016" -313650,Lightning Charging Cable,1,14.95,12/09/19 17:16,"416 West St, New York City, NY 10001" -313651,34in Ultrawide Monitor,1,379.99,12/06/19 16:14,"797 Cherry St, Portland, OR 97035" -313652,Lightning Charging Cable,1,14.95,12/20/19 19:39,"51 Jackson St, Portland, OR 97035" -313653,Bose SoundSport Headphones,1,99.99,12/13/19 16:30,"947 Church St, San Francisco, CA 94016" -313654,Apple Airpods Headphones,1,150,12/26/19 19:41,"444 West St, Los Angeles, CA 90001" -313655,Bose SoundSport Headphones,1,99.99,12/11/19 13:00,"225 Madison St, Austin, TX 73301" -313656,USB-C Charging Cable,2,11.95,12/01/19 11:57,"898 Lake St, Los Angeles, CA 90001" -313657,Wired Headphones,1,11.99,12/28/19 20:05,"410 Sunset St, San Francisco, CA 94016" -313658,Vareebadd Phone,1,400,12/03/19 21:57,"382 9th St, San Francisco, CA 94016" -313659,Lightning Charging Cable,1,14.95,12/05/19 09:05,"328 Highland St, New York City, NY 10001" -313660,AAA Batteries (4-pack),2,2.99,12/20/19 02:00,"759 Chestnut St, Seattle, WA 98101" -313661,Lightning Charging Cable,1,14.95,12/12/19 08:06,"349 South St, New York City, NY 10001" -313662,AAA Batteries (4-pack),1,2.99,12/18/19 12:47,"594 South St, Los Angeles, CA 90001" -313663,AA Batteries (4-pack),1,3.84,12/25/19 15:22,"548 River St, Dallas, TX 75001" -313664,Apple Airpods Headphones,1,150,12/21/19 20:37,"290 Cedar St, Portland, OR 97035" -313665,AA Batteries (4-pack),1,3.84,12/15/19 08:54,"226 5th St, Portland, OR 97035" -313666,iPhone,1,700,12/04/19 13:46,"313 Highland St, Los Angeles, CA 90001" -313667,27in FHD Monitor,1,149.99,12/02/19 11:46,"426 South St, New York City, NY 10001" -313668,Wired Headphones,1,11.99,12/01/19 20:39,"449 7th St, Seattle, WA 98101" -313669,27in FHD Monitor,1,149.99,12/05/19 20:37,"34 Center St, New York City, NY 10001" -313670,AAA Batteries (4-pack),2,2.99,12/27/19 07:52,"101 West St, San Francisco, CA 94016" -313671,USB-C Charging Cable,1,11.95,12/29/19 13:39,"158 River St, Los Angeles, CA 90001" -313672,AAA Batteries (4-pack),1,2.99,12/02/19 16:00,"636 South St, Austin, TX 73301" -313673,Apple Airpods Headphones,1,150,12/28/19 12:24,"206 10th St, Dallas, TX 75001" -313674,27in FHD Monitor,1,149.99,12/28/19 10:51,"727 9th St, San Francisco, CA 94016" -313675,Bose SoundSport Headphones,1,99.99,12/16/19 14:40,"577 South St, Dallas, TX 75001" -313676,USB-C Charging Cable,1,11.95,12/14/19 22:36,"8 5th St, New York City, NY 10001" -313677,Wired Headphones,1,11.99,12/27/19 19:32,"249 12th St, New York City, NY 10001" -313678,27in FHD Monitor,1,149.99,12/07/19 19:16,"686 Lakeview St, San Francisco, CA 94016" -313679,AAA Batteries (4-pack),1,2.99,12/08/19 12:22,"460 Maple St, Austin, TX 73301" -313680,20in Monitor,1,109.99,12/29/19 17:44,"440 10th St, Portland, ME 04101" -313681,Macbook Pro Laptop,1,1700,12/04/19 15:25,"160 Walnut St, Boston, MA 02215" -313682,AA Batteries (4-pack),2,3.84,12/17/19 18:45,"110 Jackson St, Dallas, TX 75001" -313683,Google Phone,1,600,12/15/19 13:17,"439 Madison St, Los Angeles, CA 90001" -313684,USB-C Charging Cable,1,11.95,12/03/19 23:45,"175 7th St, Los Angeles, CA 90001" -313685,Lightning Charging Cable,3,14.95,12/21/19 17:23,"908 Hill St, Boston, MA 02215" -313686,USB-C Charging Cable,1,11.95,12/14/19 13:49,"857 Elm St, San Francisco, CA 94016" -313687,27in FHD Monitor,1,149.99,12/12/19 15:26,"254 Lake St, New York City, NY 10001" -313688,27in 4K Gaming Monitor,1,389.99,12/23/19 10:27,"665 Wilson St, Dallas, TX 75001" -313689,Apple Airpods Headphones,1,150,12/27/19 20:02,"513 Park St, Portland, OR 97035" -313690,27in FHD Monitor,1,149.99,12/29/19 18:46,"377 5th St, Los Angeles, CA 90001" -313691,Wired Headphones,1,11.99,12/17/19 00:25,"467 Forest St, San Francisco, CA 94016" -313692,ThinkPad Laptop,1,999.99,12/17/19 11:36,"435 7th St, New York City, NY 10001" -313693,27in FHD Monitor,1,149.99,12/28/19 11:51,"807 Lakeview St, San Francisco, CA 94016" -313694,AA Batteries (4-pack),3,3.84,12/12/19 14:11,"695 13th St, Seattle, WA 98101" -313695,Flatscreen TV,1,300,12/24/19 12:30,"369 9th St, Portland, OR 97035" -313696,Macbook Pro Laptop,1,1700,12/05/19 19:26,"37 Jackson St, New York City, NY 10001" -313697,Wired Headphones,1,11.99,12/19/19 16:19,"257 Pine St, Los Angeles, CA 90001" -313698,AAA Batteries (4-pack),1,2.99,12/04/19 21:24,"284 Jefferson St, Atlanta, GA 30301" -313699,Macbook Pro Laptop,1,1700,12/29/19 20:12,"284 Johnson St, Dallas, TX 75001" -313700,27in 4K Gaming Monitor,1,389.99,12/17/19 11:39,"20 Jefferson St, Los Angeles, CA 90001" -313701,27in 4K Gaming Monitor,1,389.99,12/16/19 15:50,"255 North St, New York City, NY 10001" -313702,Wired Headphones,1,11.99,12/07/19 14:57,"965 12th St, San Francisco, CA 94016" -313703,USB-C Charging Cable,1,11.95,12/12/19 12:41,"739 Washington St, Los Angeles, CA 90001" -313704,AAA Batteries (4-pack),2,2.99,12/28/19 18:36,"980 Park St, New York City, NY 10001" -313705,Google Phone,1,600,12/21/19 15:24,"631 Lake St, Portland, OR 97035" -313706,AA Batteries (4-pack),2,3.84,12/11/19 19:50,"445 10th St, New York City, NY 10001" -313707,Lightning Charging Cable,1,14.95,12/15/19 14:57,"20 Lake St, Seattle, WA 98101" -313708,USB-C Charging Cable,1,11.95,12/19/19 13:52,"764 1st St, Portland, OR 97035" -313709,USB-C Charging Cable,1,11.95,12/20/19 20:46,"490 14th St, New York City, NY 10001" -313710,AA Batteries (4-pack),1,3.84,12/04/19 11:37,"343 West St, Los Angeles, CA 90001" -313711,Apple Airpods Headphones,1,150,12/29/19 14:48,"993 Adams St, Austin, TX 73301" -313712,iPhone,1,700,12/06/19 20:43,"736 Cherry St, San Francisco, CA 94016" -313713,34in Ultrawide Monitor,1,379.99,12/20/19 20:34,"35 Walnut St, Los Angeles, CA 90001" -313714,AAA Batteries (4-pack),1,2.99,12/06/19 00:36,"734 Ridge St, New York City, NY 10001" -313715,USB-C Charging Cable,1,11.95,12/29/19 08:41,"985 Jefferson St, Atlanta, GA 30301" -313716,Apple Airpods Headphones,1,150,12/20/19 20:56,"238 Adams St, Los Angeles, CA 90001" -313717,AA Batteries (4-pack),2,3.84,12/30/19 00:40,"950 Meadow St, New York City, NY 10001" -313718,Lightning Charging Cable,1,14.95,12/04/19 11:43,"343 Hill St, Dallas, TX 75001" -313719,34in Ultrawide Monitor,1,379.99,12/07/19 00:34,"613 Washington St, Austin, TX 73301" -313720,Lightning Charging Cable,1,14.95,12/03/19 14:23,"143 North St, Atlanta, GA 30301" -313721,USB-C Charging Cable,1,11.95,12/18/19 16:20,"34 Lake St, San Francisco, CA 94016" -313722,USB-C Charging Cable,1,11.95,12/07/19 16:12,"747 Willow St, Portland, OR 97035" -313723,AA Batteries (4-pack),1,3.84,12/25/19 07:53,"639 Meadow St, San Francisco, CA 94016" -313724,Wired Headphones,1,11.99,12/06/19 08:08,"1 2nd St, Atlanta, GA 30301" -313725,Wired Headphones,1,11.99,12/07/19 21:04,"643 Church St, New York City, NY 10001" -313726,27in 4K Gaming Monitor,1,389.99,12/29/19 23:51,"427 Pine St, New York City, NY 10001" -313727,Apple Airpods Headphones,1,150,12/27/19 14:36,"862 Elm St, San Francisco, CA 94016" -313728,Wired Headphones,1,11.99,12/28/19 14:40,"872 7th St, New York City, NY 10001" -313728,Wired Headphones,1,11.99,12/28/19 14:40,"872 7th St, New York City, NY 10001" -313729,AAA Batteries (4-pack),1,2.99,12/08/19 13:10,"30 Johnson St, Dallas, TX 75001" -313730,Wired Headphones,1,11.99,12/07/19 09:12,"681 11th St, San Francisco, CA 94016" -313731,Lightning Charging Cable,1,14.95,12/13/19 14:54,"929 9th St, Portland, OR 97035" -313732,Apple Airpods Headphones,1,150,12/05/19 15:21,"878 5th St, Boston, MA 02215" -313733,USB-C Charging Cable,1,11.95,12/10/19 11:29,"835 Walnut St, Los Angeles, CA 90001" -313734,AA Batteries (4-pack),1,3.84,12/04/19 17:40,"977 Hickory St, Portland, ME 04101" -313735,Flatscreen TV,1,300,12/08/19 07:08,"767 Johnson St, San Francisco, CA 94016" -313736,USB-C Charging Cable,1,11.95,12/13/19 14:34,"876 11th St, Atlanta, GA 30301" -313737,AA Batteries (4-pack),1,3.84,12/12/19 15:09,"273 Cherry St, Los Angeles, CA 90001" -313738,USB-C Charging Cable,2,11.95,12/31/19 16:32,"982 Adams St, New York City, NY 10001" -313739,Flatscreen TV,1,300,12/30/19 13:55,"149 Jefferson St, Los Angeles, CA 90001" -313740,Bose SoundSport Headphones,1,99.99,12/07/19 07:03,"857 Park St, Boston, MA 02215" -313741,AAA Batteries (4-pack),2,2.99,12/15/19 11:15,"675 Elm St, New York City, NY 10001" -313742,Lightning Charging Cable,1,14.95,12/16/19 16:41,"257 Madison St, Austin, TX 73301" -313743,Macbook Pro Laptop,1,1700,12/10/19 15:15,"934 6th St, Seattle, WA 98101" -313744,20in Monitor,1,109.99,12/21/19 18:52,"2 North St, San Francisco, CA 94016" -313745,Bose SoundSport Headphones,1,99.99,12/12/19 21:02,"669 10th St, San Francisco, CA 94016" -313746,Lightning Charging Cable,1,14.95,12/25/19 10:27,"996 13th St, San Francisco, CA 94016" -313747,27in FHD Monitor,1,149.99,12/04/19 10:14,"874 Cedar St, New York City, NY 10001" -313748,Flatscreen TV,1,300,12/24/19 18:27,"211 2nd St, Seattle, WA 98101" -313749,Bose SoundSport Headphones,1,99.99,12/05/19 19:37,"798 2nd St, Atlanta, GA 30301" -313750,iPhone,1,700,12/29/19 00:55,"758 14th St, Seattle, WA 98101" -313750,Lightning Charging Cable,1,14.95,12/29/19 00:55,"758 14th St, Seattle, WA 98101" -313751,Flatscreen TV,1,300,12/09/19 09:04,"132 South St, Boston, MA 02215" -313752,Bose SoundSport Headphones,1,99.99,12/11/19 11:30,"157 Chestnut St, San Francisco, CA 94016" -313753,Flatscreen TV,1,300,12/14/19 00:44,"278 Adams St, Seattle, WA 98101" -313754,20in Monitor,1,109.99,12/09/19 13:13,"963 1st St, Dallas, TX 75001" -313755,iPhone,1,700,12/27/19 23:27,"125 Jackson St, San Francisco, CA 94016" -313756,Bose SoundSport Headphones,1,99.99,12/13/19 16:41,"245 9th St, Portland, OR 97035" -313757,Bose SoundSport Headphones,1,99.99,12/30/19 12:13,"798 Church St, Portland, OR 97035" -313758,27in FHD Monitor,1,149.99,12/08/19 18:15,"559 6th St, San Francisco, CA 94016" -313759,ThinkPad Laptop,1,999.99,12/25/19 22:07,"70 4th St, Dallas, TX 75001" -313760,Wired Headphones,1,11.99,12/31/19 21:04,"517 Spruce St, Los Angeles, CA 90001" -313761,Bose SoundSport Headphones,1,99.99,12/15/19 22:51,"252 Wilson St, San Francisco, CA 94016" -313762,AA Batteries (4-pack),1,3.84,12/19/19 20:40,"327 2nd St, Los Angeles, CA 90001" -313763,Macbook Pro Laptop,1,1700,12/21/19 10:40,"271 Lake St, Los Angeles, CA 90001" -313764,AAA Batteries (4-pack),2,2.99,12/02/19 19:02,"246 Lake St, Los Angeles, CA 90001" -313765,USB-C Charging Cable,1,11.95,12/13/19 10:45,"226 Maple St, Dallas, TX 75001" -313766,Lightning Charging Cable,1,14.95,12/16/19 04:13,"567 West St, San Francisco, CA 94016" -313767,Google Phone,1,600,12/25/19 18:40,"426 6th St, Seattle, WA 98101" -313767,USB-C Charging Cable,1,11.95,12/25/19 18:40,"426 6th St, Seattle, WA 98101" -313767,Wired Headphones,1,11.99,12/25/19 18:40,"426 6th St, Seattle, WA 98101" -313768,27in 4K Gaming Monitor,1,389.99,12/04/19 07:27,"395 5th St, San Francisco, CA 94016" -313769,Bose SoundSport Headphones,1,99.99,12/01/19 14:55,"499 Jackson St, New York City, NY 10001" -313770,USB-C Charging Cable,1,11.95,12/06/19 23:14,"970 Park St, Portland, OR 97035" -313771,27in FHD Monitor,1,149.99,12/06/19 21:39,"47 Dogwood St, New York City, NY 10001" -313772,AAA Batteries (4-pack),2,2.99,12/19/19 09:49,"368 Elm St, Atlanta, GA 30301" -313773,USB-C Charging Cable,1,11.95,12/15/19 21:47,"266 4th St, Seattle, WA 98101" -313774,Wired Headphones,1,11.99,12/20/19 01:40,"142 Maple St, San Francisco, CA 94016" -313775,USB-C Charging Cable,1,11.95,12/07/19 20:02,"983 Meadow St, San Francisco, CA 94016" -313776,AAA Batteries (4-pack),1,2.99,12/29/19 14:12,"517 Pine St, San Francisco, CA 94016" -313777,Wired Headphones,1,11.99,12/27/19 19:42,"748 Hickory St, Los Angeles, CA 90001" -313778,iPhone,1,700,12/19/19 17:13,"211 South St, Portland, OR 97035" -313779,AAA Batteries (4-pack),1,2.99,12/25/19 20:05,"974 Washington St, Los Angeles, CA 90001" -313780,27in FHD Monitor,1,149.99,12/28/19 05:11,"580 Washington St, Austin, TX 73301" -313781,Macbook Pro Laptop,1,1700,12/17/19 19:46,"842 10th St, New York City, NY 10001" -313782,Apple Airpods Headphones,1,150,12/10/19 11:16,"575 10th St, Dallas, TX 75001" -313783,AAA Batteries (4-pack),1,2.99,12/17/19 09:10,"108 Park St, Austin, TX 73301" -313784,27in 4K Gaming Monitor,1,389.99,12/05/19 18:49,"392 Wilson St, Atlanta, GA 30301" -313785,USB-C Charging Cable,1,11.95,12/14/19 08:16,"8 6th St, Boston, MA 02215" -313786,Wired Headphones,1,11.99,12/04/19 17:48,"95 8th St, Los Angeles, CA 90001" -313787,Wired Headphones,1,11.99,12/08/19 07:15,"361 Center St, San Francisco, CA 94016" -313788,Google Phone,1,600,12/08/19 11:52,"827 13th St, Los Angeles, CA 90001" -313789,Bose SoundSport Headphones,1,99.99,12/05/19 21:52,"807 West St, San Francisco, CA 94016" -313790,34in Ultrawide Monitor,1,379.99,12/11/19 10:56,"135 Willow St, Los Angeles, CA 90001" -313791,Apple Airpods Headphones,1,150,12/14/19 21:07,"225 Spruce St, Seattle, WA 98101" -313792,Lightning Charging Cable,1,14.95,12/06/19 11:26,"760 Willow St, New York City, NY 10001" -313793,USB-C Charging Cable,1,11.95,12/19/19 14:16,"444 8th St, Austin, TX 73301" -313794,Lightning Charging Cable,1,14.95,12/27/19 00:16,"867 12th St, Portland, ME 04101" -313795,AAA Batteries (4-pack),1,2.99,12/08/19 00:01,"392 Ridge St, San Francisco, CA 94016" -313796,AA Batteries (4-pack),2,3.84,12/15/19 18:50,"674 14th St, Dallas, TX 75001" -313797,27in FHD Monitor,1,149.99,12/18/19 09:36,"419 Maple St, New York City, NY 10001" -313798,Wired Headphones,1,11.99,12/25/19 11:09,"446 12th St, Austin, TX 73301" -313799,Lightning Charging Cable,1,14.95,12/17/19 13:24,"116 Walnut St, Portland, OR 97035" -313800,AA Batteries (4-pack),2,3.84,12/08/19 10:58,"330 Cedar St, Boston, MA 02215" -313801,Flatscreen TV,1,300,12/18/19 18:46,"963 Jefferson St, Los Angeles, CA 90001" -313802,AAA Batteries (4-pack),1,2.99,12/28/19 22:05,"981 Adams St, Austin, TX 73301" -313803,Bose SoundSport Headphones,1,99.99,12/10/19 08:20,"776 Johnson St, Seattle, WA 98101" -313804,iPhone,1,700,12/11/19 16:37,"370 West St, Los Angeles, CA 90001" -313805,Lightning Charging Cable,1,14.95,12/20/19 17:06,"931 Washington St, Portland, OR 97035" -313806,USB-C Charging Cable,1,11.95,12/24/19 19:14,"982 Wilson St, Boston, MA 02215" -313807,34in Ultrawide Monitor,1,379.99,12/18/19 06:14,"924 Chestnut St, Los Angeles, CA 90001" -313808,USB-C Charging Cable,1,11.95,12/21/19 14:09,"80 11th St, Los Angeles, CA 90001" -313809,AAA Batteries (4-pack),3,2.99,12/17/19 10:38,"198 Wilson St, San Francisco, CA 94016" -313809,Macbook Pro Laptop,1,1700,12/17/19 10:38,"198 Wilson St, San Francisco, CA 94016" -313810,AA Batteries (4-pack),3,3.84,12/29/19 10:07,"750 Ridge St, San Francisco, CA 94016" -313811,Apple Airpods Headphones,1,150,12/10/19 09:17,"346 Cherry St, Austin, TX 73301" -313812,Vareebadd Phone,1,400,12/31/19 08:57,"254 Center St, San Francisco, CA 94016" -313813,Lightning Charging Cable,1,14.95,12/06/19 20:06,"982 River St, San Francisco, CA 94016" -313814,Lightning Charging Cable,1,14.95,12/11/19 17:42,"789 Elm St, San Francisco, CA 94016" -313815,Apple Airpods Headphones,1,150,12/19/19 16:42,"75 Highland St, Los Angeles, CA 90001" -313816,20in Monitor,1,109.99,12/17/19 10:29,"228 Cherry St, Seattle, WA 98101" -313817,Wired Headphones,1,11.99,12/21/19 18:11,"747 Chestnut St, New York City, NY 10001" -313818,USB-C Charging Cable,1,11.95,12/19/19 00:05,"682 Chestnut St, San Francisco, CA 94016" -313819,Google Phone,1,600,12/27/19 15:44,"966 Cedar St, Dallas, TX 75001" -313820,USB-C Charging Cable,1,11.95,12/07/19 16:15,"223 West St, New York City, NY 10001" -313821,Flatscreen TV,1,300,12/16/19 19:24,"223 North St, Los Angeles, CA 90001" -313822,Wired Headphones,1,11.99,12/18/19 10:56,"235 Jefferson St, Seattle, WA 98101" -313823,Wired Headphones,2,11.99,12/12/19 09:22,"343 South St, Austin, TX 73301" -313824,Lightning Charging Cable,1,14.95,12/29/19 16:22,"195 Adams St, Atlanta, GA 30301" -313825,Wired Headphones,1,11.99,12/14/19 23:37,"22 1st St, New York City, NY 10001" -313826,AA Batteries (4-pack),2,3.84,12/25/19 14:06,"813 River St, San Francisco, CA 94016" -313827,Lightning Charging Cable,1,14.95,12/30/19 19:16,"296 Maple St, Seattle, WA 98101" -313828,AA Batteries (4-pack),1,3.84,12/04/19 18:23,"966 Lake St, San Francisco, CA 94016" -313829,Apple Airpods Headphones,1,150,12/13/19 19:59,"367 Lake St, Los Angeles, CA 90001" -313830,34in Ultrawide Monitor,1,379.99,12/26/19 22:57,"182 Church St, San Francisco, CA 94016" -313831,Bose SoundSport Headphones,1,99.99,12/10/19 17:02,"719 Lincoln St, San Francisco, CA 94016" -313832,Lightning Charging Cable,1,14.95,12/12/19 06:12,"348 12th St, Austin, TX 73301" -313833,Flatscreen TV,1,300,12/13/19 11:08,"219 Wilson St, San Francisco, CA 94016" -313834,ThinkPad Laptop,1,999.99,12/23/19 22:48,"968 13th St, Atlanta, GA 30301" -313835,USB-C Charging Cable,1,11.95,12/10/19 16:49,"528 Hickory St, New York City, NY 10001" -313836,Flatscreen TV,1,300,12/04/19 15:11,"798 Washington St, Los Angeles, CA 90001" -313837,34in Ultrawide Monitor,1,379.99,12/12/19 12:29,"578 Madison St, Boston, MA 02215" -313838,AAA Batteries (4-pack),1,2.99,12/23/19 17:42,"240 Wilson St, New York City, NY 10001" -313839,AAA Batteries (4-pack),1,2.99,12/30/19 18:57,"952 Walnut St, Boston, MA 02215" -313840,27in 4K Gaming Monitor,1,389.99,12/24/19 14:31,"392 Meadow St, San Francisco, CA 94016" -313841,Bose SoundSport Headphones,1,99.99,12/23/19 16:52,"599 12th St, New York City, NY 10001" -313842,iPhone,1,700,12/14/19 08:47,"112 Walnut St, Los Angeles, CA 90001" -313842,Lightning Charging Cable,2,14.95,12/14/19 08:47,"112 Walnut St, Los Angeles, CA 90001" -313843,34in Ultrawide Monitor,1,379.99,12/23/19 15:35,"913 Park St, San Francisco, CA 94016" -313844,USB-C Charging Cable,1,11.95,12/02/19 17:37,"100 7th St, Dallas, TX 75001" -313845,USB-C Charging Cable,1,11.95,12/15/19 10:11,"949 Walnut St, New York City, NY 10001" -313846,Bose SoundSport Headphones,1,99.99,12/01/19 17:39,"926 Chestnut St, San Francisco, CA 94016" -313847,iPhone,1,700,12/04/19 10:55,"632 South St, Los Angeles, CA 90001" -313848,27in FHD Monitor,1,149.99,12/04/19 01:16,"176 Adams St, Seattle, WA 98101" -313849,USB-C Charging Cable,1,11.95,12/31/19 08:01,"674 Jackson St, Seattle, WA 98101" -313850,Apple Airpods Headphones,1,150,12/20/19 22:39,"940 Sunset St, San Francisco, CA 94016" -313851,27in FHD Monitor,1,149.99,12/23/19 19:57,"586 Hill St, Dallas, TX 75001" -313852,USB-C Charging Cable,1,11.95,12/30/19 13:30,"679 West St, San Francisco, CA 94016" -313853,USB-C Charging Cable,2,11.95,12/21/19 21:52,"96 14th St, Los Angeles, CA 90001" -313854,27in FHD Monitor,1,149.99,12/01/19 11:52,"893 Wilson St, Atlanta, GA 30301" -313855,AA Batteries (4-pack),1,3.84,12/12/19 05:49,"688 Center St, Dallas, TX 75001" -313856,LG Washing Machine,1,600.0,12/06/19 10:09,"482 Spruce St, Boston, MA 02215" -313857,AAA Batteries (4-pack),1,2.99,12/22/19 17:03,"340 River St, Dallas, TX 75001" -313858,AAA Batteries (4-pack),1,2.99,12/31/19 11:06,"240 Washington St, San Francisco, CA 94016" -313859,AA Batteries (4-pack),1,3.84,12/31/19 13:10,"657 9th St, Seattle, WA 98101" -313860,Flatscreen TV,1,300,12/30/19 00:02,"263 11th St, Los Angeles, CA 90001" -313861,Apple Airpods Headphones,1,150,12/23/19 19:47,"12 5th St, San Francisco, CA 94016" -313862,AAA Batteries (4-pack),3,2.99,12/04/19 14:11,"769 Wilson St, San Francisco, CA 94016" -313863,Bose SoundSport Headphones,1,99.99,12/27/19 13:05,"820 Pine St, New York City, NY 10001" -313864,AAA Batteries (4-pack),1,2.99,12/14/19 10:53,"164 South St, Seattle, WA 98101" -313865,27in FHD Monitor,1,149.99,12/02/19 02:48,"261 5th St, San Francisco, CA 94016" -313866,AAA Batteries (4-pack),1,2.99,12/12/19 13:15,"441 10th St, Los Angeles, CA 90001" -313867,Lightning Charging Cable,1,14.95,12/26/19 19:07,"505 Jackson St, Dallas, TX 75001" -313868,Wired Headphones,1,11.99,12/11/19 11:26,"292 14th St, Seattle, WA 98101" -313869,Lightning Charging Cable,1,14.95,12/08/19 23:30,"253 Willow St, New York City, NY 10001" -313870,AAA Batteries (4-pack),1,2.99,12/29/19 13:14,"288 Pine St, San Francisco, CA 94016" -313871,Wired Headphones,1,11.99,12/25/19 15:40,"449 Madison St, San Francisco, CA 94016" -313872,Bose SoundSport Headphones,1,99.99,12/06/19 11:03,"336 Lake St, Boston, MA 02215" -313873,Bose SoundSport Headphones,1,99.99,12/24/19 16:44,"976 Wilson St, Dallas, TX 75001" -313874,27in 4K Gaming Monitor,1,389.99,12/24/19 17:26,"97 River St, New York City, NY 10001" -313875,Macbook Pro Laptop,1,1700,12/02/19 11:19,"999 Walnut St, Portland, OR 97035" -313876,27in 4K Gaming Monitor,1,389.99,12/24/19 07:23,"822 Highland St, San Francisco, CA 94016" -313877,ThinkPad Laptop,1,999.99,12/10/19 21:39,"673 Chestnut St, Los Angeles, CA 90001" -313878,Macbook Pro Laptop,1,1700,12/21/19 18:48,"575 Sunset St, Los Angeles, CA 90001" -313879,34in Ultrawide Monitor,1,379.99,12/09/19 23:19,"456 Ridge St, Austin, TX 73301" -313880,AAA Batteries (4-pack),1,2.99,12/17/19 00:28,"600 Chestnut St, San Francisco, CA 94016" -313881,iPhone,1,700,12/19/19 15:33,"226 9th St, Dallas, TX 75001" -313882,Apple Airpods Headphones,2,150,12/14/19 13:18,"245 Willow St, Los Angeles, CA 90001" -313883,AA Batteries (4-pack),1,3.84,12/31/19 10:24,"299 North St, Atlanta, GA 30301" -313884,USB-C Charging Cable,1,11.95,12/16/19 12:26,"869 11th St, San Francisco, CA 94016" -313885,Lightning Charging Cable,1,14.95,12/06/19 11:06,"200 Spruce St, San Francisco, CA 94016" -313886,27in 4K Gaming Monitor,1,389.99,12/21/19 11:24,"379 Adams St, San Francisco, CA 94016" -313887,LG Washing Machine,1,600.0,12/05/19 19:37,"23 10th St, Seattle, WA 98101" -313888,Lightning Charging Cable,1,14.95,12/18/19 17:37,"588 11th St, Boston, MA 02215" -313889,AAA Batteries (4-pack),1,2.99,12/19/19 07:57,"824 Forest St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -313890,AAA Batteries (4-pack),3,2.99,12/23/19 21:39,"748 Lakeview St, Atlanta, GA 30301" -313891,AAA Batteries (4-pack),4,2.99,12/27/19 15:10,"104 South St, Boston, MA 02215" -313892,Wired Headphones,2,11.99,12/09/19 09:42,"417 2nd St, San Francisco, CA 94016" -313893,Wired Headphones,1,11.99,12/24/19 16:02,"115 14th St, Atlanta, GA 30301" -313894,Bose SoundSport Headphones,1,99.99,12/24/19 21:21,"61 Wilson St, Seattle, WA 98101" -313895,Bose SoundSport Headphones,1,99.99,12/29/19 00:16,"476 Adams St, Austin, TX 73301" -313896,27in FHD Monitor,1,149.99,12/31/19 18:06,"649 South St, Portland, OR 97035" -313897,27in 4K Gaming Monitor,1,389.99,12/17/19 12:28,"135 4th St, Boston, MA 02215" -313898,AA Batteries (4-pack),1,3.84,12/13/19 13:14,"948 12th St, New York City, NY 10001" -313899,Bose SoundSport Headphones,1,99.99,12/22/19 21:19,"881 Lincoln St, San Francisco, CA 94016" -313900,USB-C Charging Cable,1,11.95,12/19/19 10:26,"418 Spruce St, New York City, NY 10001" -313901,Google Phone,1,600,12/07/19 12:10,"812 Church St, Boston, MA 02215" -313901,USB-C Charging Cable,1,11.95,12/07/19 12:10,"812 Church St, Boston, MA 02215" -313902,AAA Batteries (4-pack),1,2.99,12/08/19 10:02,"455 Dogwood St, New York City, NY 10001" -313903,USB-C Charging Cable,1,11.95,12/30/19 19:15,"805 Lake St, Los Angeles, CA 90001" -313904,Bose SoundSport Headphones,1,99.99,12/25/19 11:39,"742 Chestnut St, New York City, NY 10001" -313905,Apple Airpods Headphones,1,150,12/02/19 20:16,"818 12th St, San Francisco, CA 94016" -313906,Wired Headphones,1,11.99,12/06/19 15:22,"291 Adams St, San Francisco, CA 94016" -313907,AA Batteries (4-pack),1,3.84,12/15/19 12:48,"320 4th St, Seattle, WA 98101" -313908,Lightning Charging Cable,1,14.95,12/06/19 23:16,"175 12th St, Los Angeles, CA 90001" -313909,Apple Airpods Headphones,1,150,12/10/19 10:55,"923 Ridge St, Austin, TX 73301" -313910,Wired Headphones,1,11.99,12/01/19 17:16,"347 Lakeview St, San Francisco, CA 94016" -313911,AAA Batteries (4-pack),1,2.99,12/10/19 11:51,"975 Chestnut St, Atlanta, GA 30301" -313912,Lightning Charging Cable,1,14.95,12/22/19 09:36,"825 South St, Dallas, TX 75001" -313913,34in Ultrawide Monitor,1,379.99,12/31/19 11:39,"251 10th St, Dallas, TX 75001" -313914,Apple Airpods Headphones,1,150,12/15/19 16:55,"76 Cedar St, Los Angeles, CA 90001" -313915,AAA Batteries (4-pack),1,2.99,12/24/19 18:55,"355 Cedar St, Portland, OR 97035" -313916,Wired Headphones,1,11.99,12/06/19 12:29,"412 Church St, Portland, OR 97035" -313917,Apple Airpods Headphones,1,150,12/23/19 13:59,"165 Cedar St, Boston, MA 02215" -313918,20in Monitor,1,109.99,12/10/19 07:02,"402 Hickory St, San Francisco, CA 94016" -313919,Lightning Charging Cable,1,14.95,12/03/19 15:18,"91 Adams St, Portland, OR 97035" -313920,AA Batteries (4-pack),2,3.84,12/28/19 21:54,"91 Lincoln St, Dallas, TX 75001" -313921,Apple Airpods Headphones,1,150,12/08/19 20:10,"135 Hill St, Los Angeles, CA 90001" -313922,Wired Headphones,1,11.99,12/16/19 21:44,"578 10th St, Boston, MA 02215" -313923,USB-C Charging Cable,1,11.95,12/16/19 20:16,"923 North St, Los Angeles, CA 90001" -313924,AAA Batteries (4-pack),2,2.99,12/30/19 22:21,"913 Spruce St, New York City, NY 10001" -313925,Bose SoundSport Headphones,1,99.99,12/05/19 16:54,"896 9th St, Boston, MA 02215" -313926,Wired Headphones,2,11.99,12/26/19 22:35,"803 Spruce St, San Francisco, CA 94016" -313927,Lightning Charging Cable,1,14.95,12/10/19 14:18,"673 Center St, San Francisco, CA 94016" -313928,AA Batteries (4-pack),1,3.84,12/22/19 15:06,"217 Pine St, Dallas, TX 75001" -313929,USB-C Charging Cable,1,11.95,12/25/19 07:21,"269 12th St, Boston, MA 02215" -313930,Macbook Pro Laptop,1,1700,12/05/19 07:12,"414 Spruce St, New York City, NY 10001" -313931,AAA Batteries (4-pack),2,2.99,12/07/19 19:36,"742 Highland St, Atlanta, GA 30301" -313932,27in 4K Gaming Monitor,1,389.99,12/19/19 18:16,"645 Meadow St, Seattle, WA 98101" -313933,AAA Batteries (4-pack),1,2.99,12/21/19 22:57,"628 Sunset St, San Francisco, CA 94016" -313934,Apple Airpods Headphones,1,150,12/01/19 21:32,"618 14th St, New York City, NY 10001" -313935,Lightning Charging Cable,1,14.95,12/20/19 09:34,"408 Chestnut St, Los Angeles, CA 90001" -313936,Wired Headphones,1,11.99,12/02/19 18:26,"726 Cedar St, Seattle, WA 98101" -313937,ThinkPad Laptop,1,999.99,12/31/19 06:57,"548 Lincoln St, Dallas, TX 75001" -313938,Lightning Charging Cable,1,14.95,12/30/19 09:46,"35 Hickory St, San Francisco, CA 94016" -313938,Wired Headphones,1,11.99,12/30/19 09:46,"35 Hickory St, San Francisco, CA 94016" -313939,iPhone,1,700,12/29/19 13:51,"67 River St, Seattle, WA 98101" -313940,USB-C Charging Cable,1,11.95,12/09/19 15:47,"438 North St, Atlanta, GA 30301" -313941,Bose SoundSport Headphones,1,99.99,12/23/19 12:44,"231 8th St, Boston, MA 02215" -313942,27in 4K Gaming Monitor,1,389.99,12/01/19 10:07,"329 Elm St, Boston, MA 02215" -313943,AA Batteries (4-pack),1,3.84,12/20/19 17:47,"347 Lake St, Los Angeles, CA 90001" -313944,20in Monitor,1,109.99,12/25/19 17:12,"507 Sunset St, Los Angeles, CA 90001" -313945,20in Monitor,1,109.99,12/15/19 16:04,"766 Jefferson St, Boston, MA 02215" -313946,AA Batteries (4-pack),1,3.84,12/13/19 15:39,"475 Hill St, Los Angeles, CA 90001" -313947,27in 4K Gaming Monitor,1,389.99,12/07/19 14:11,"564 5th St, Portland, ME 04101" -313948,USB-C Charging Cable,1,11.95,12/06/19 13:07,"157 Elm St, San Francisco, CA 94016" -313949,AAA Batteries (4-pack),2,2.99,12/21/19 03:54,"865 Chestnut St, Los Angeles, CA 90001" -313950,Lightning Charging Cable,2,14.95,12/15/19 15:57,"799 Church St, San Francisco, CA 94016" -313951,Lightning Charging Cable,1,14.95,12/22/19 10:03,"422 Walnut St, Boston, MA 02215" -313952,27in FHD Monitor,1,149.99,12/14/19 18:54,"100 Sunset St, San Francisco, CA 94016" -313953,Macbook Pro Laptop,1,1700,12/28/19 12:16,"370 Lincoln St, Boston, MA 02215" -313954,USB-C Charging Cable,1,11.95,12/17/19 08:19,"22 11th St, San Francisco, CA 94016" -313955,Lightning Charging Cable,1,14.95,12/20/19 17:35,"999 Chestnut St, Boston, MA 02215" -313956,Google Phone,1,600,12/11/19 09:48,"261 Hill St, Austin, TX 73301" -313956,Bose SoundSport Headphones,1,99.99,12/11/19 09:48,"261 Hill St, Austin, TX 73301" -313956,Wired Headphones,1,11.99,12/11/19 09:48,"261 Hill St, Austin, TX 73301" -,,,,, -313957,27in FHD Monitor,2,149.99,12/28/19 12:48,"425 Forest St, San Francisco, CA 94016" -313958,Google Phone,1,600,12/03/19 13:01,"659 1st St, San Francisco, CA 94016" -313959,Google Phone,1,600,12/27/19 21:06,"820 6th St, Los Angeles, CA 90001" -313960,USB-C Charging Cable,1,11.95,12/06/19 09:18,"232 Cherry St, Los Angeles, CA 90001" -313961,AA Batteries (4-pack),1,3.84,12/02/19 11:35,"190 Pine St, San Francisco, CA 94016" -313962,AA Batteries (4-pack),1,3.84,12/18/19 08:28,"59 Lincoln St, Seattle, WA 98101" -313963,LG Washing Machine,1,600.0,12/19/19 01:22,"60 9th St, San Francisco, CA 94016" -313964,USB-C Charging Cable,1,11.95,12/13/19 09:39,"523 Cherry St, Los Angeles, CA 90001" -313965,AAA Batteries (4-pack),1,2.99,12/24/19 12:04,"920 Forest St, Los Angeles, CA 90001" -313966,Lightning Charging Cable,1,14.95,12/18/19 10:50,"557 Sunset St, Seattle, WA 98101" -313967,Lightning Charging Cable,1,14.95,12/14/19 11:06,"124 Highland St, Boston, MA 02215" -313968,USB-C Charging Cable,1,11.95,12/01/19 17:20,"878 Cedar St, San Francisco, CA 94016" -313969,Apple Airpods Headphones,1,150,12/24/19 10:30,"520 6th St, Seattle, WA 98101" -313970,AA Batteries (4-pack),2,3.84,12/05/19 19:17,"914 West St, Austin, TX 73301" -313971,Wired Headphones,1,11.99,12/27/19 23:24,"16 Madison St, San Francisco, CA 94016" -313972,Apple Airpods Headphones,1,150,12/10/19 19:32,"530 Cedar St, Dallas, TX 75001" -313973,Lightning Charging Cable,1,14.95,12/01/19 20:52,"916 Park St, Seattle, WA 98101" -313974,AAA Batteries (4-pack),1,2.99,12/19/19 09:51,"555 Jefferson St, New York City, NY 10001" -313975,AA Batteries (4-pack),1,3.84,12/07/19 19:06,"907 Lake St, New York City, NY 10001" -313976,Wired Headphones,1,11.99,12/06/19 11:24,"352 Willow St, Boston, MA 02215" -313977,Wired Headphones,1,11.99,12/26/19 22:09,"544 Pine St, Atlanta, GA 30301" -313978,Lightning Charging Cable,1,14.95,12/24/19 10:46,"391 Meadow St, San Francisco, CA 94016" -313979,Wired Headphones,1,11.99,12/26/19 09:28,"864 4th St, Portland, ME 04101" -313980,Google Phone,1,600,12/18/19 14:31,"442 10th St, Austin, TX 73301" -313980,USB-C Charging Cable,1,11.95,12/18/19 14:31,"442 10th St, Austin, TX 73301" -313981,AAA Batteries (4-pack),3,2.99,12/31/19 14:36,"380 South St, Dallas, TX 75001" -313982,Lightning Charging Cable,1,14.95,12/11/19 13:36,"797 Hill St, Los Angeles, CA 90001" -313983,Lightning Charging Cable,1,14.95,12/28/19 10:35,"301 Pine St, Atlanta, GA 30301" -313984,20in Monitor,1,109.99,12/02/19 00:09,"470 Jefferson St, San Francisco, CA 94016" -313985,27in 4K Gaming Monitor,1,389.99,12/21/19 14:15,"391 Wilson St, Austin, TX 73301" -313986,34in Ultrawide Monitor,1,379.99,12/01/19 22:06,"809 5th St, San Francisco, CA 94016" -313987,AAA Batteries (4-pack),1,2.99,12/04/19 23:34,"79 Wilson St, Boston, MA 02215" -313988,Wired Headphones,1,11.99,12/20/19 12:56,"66 11th St, San Francisco, CA 94016" -313989,Bose SoundSport Headphones,1,99.99,12/30/19 11:32,"469 Jackson St, Boston, MA 02215" -313990,USB-C Charging Cable,1,11.95,12/25/19 16:20,"743 Spruce St, San Francisco, CA 94016" -313991,Bose SoundSport Headphones,1,99.99,12/29/19 23:15,"452 Elm St, Los Angeles, CA 90001" -313992,USB-C Charging Cable,1,11.95,12/17/19 13:07,"373 Sunset St, Atlanta, GA 30301" -313993,Wired Headphones,1,11.99,12/27/19 21:39,"973 13th St, San Francisco, CA 94016" -313994,Bose SoundSport Headphones,1,99.99,12/01/19 09:30,"99 Park St, New York City, NY 10001" -313995,Lightning Charging Cable,1,14.95,12/17/19 11:34,"391 Wilson St, Los Angeles, CA 90001" -313996,AAA Batteries (4-pack),4,2.99,12/17/19 13:25,"757 Chestnut St, San Francisco, CA 94016" -313997,AA Batteries (4-pack),1,3.84,12/18/19 14:18,"492 Highland St, Portland, OR 97035" -313998,AA Batteries (4-pack),2,3.84,12/01/19 16:35,"598 Willow St, Austin, TX 73301" -313999,AA Batteries (4-pack),1,3.84,12/11/19 19:17,"130 Main St, Atlanta, GA 30301" -314000,AAA Batteries (4-pack),1,2.99,12/01/19 17:38,"846 6th St, Los Angeles, CA 90001" -314001,Lightning Charging Cable,1,14.95,12/14/19 17:07,"166 Dogwood St, Dallas, TX 75001" -314002,USB-C Charging Cable,1,11.95,12/02/19 12:47,"167 Cedar St, Boston, MA 02215" -314003,Google Phone,1,600,12/12/19 04:22,"504 Lake St, San Francisco, CA 94016" -314004,USB-C Charging Cable,1,11.95,12/09/19 07:55,"341 1st St, Dallas, TX 75001" -314005,Vareebadd Phone,1,400,12/08/19 22:39,"146 South St, Atlanta, GA 30301" -314005,USB-C Charging Cable,1,11.95,12/08/19 22:39,"146 South St, Atlanta, GA 30301" -314006,Lightning Charging Cable,1,14.95,12/21/19 01:16,"235 River St, Los Angeles, CA 90001" -314007,Lightning Charging Cable,1,14.95,12/22/19 19:44,"86 Willow St, Portland, OR 97035" -314008,Wired Headphones,4,11.99,12/17/19 16:31,"999 1st St, Dallas, TX 75001" -314009,USB-C Charging Cable,1,11.95,12/14/19 19:14,"910 West St, New York City, NY 10001" -314010,Apple Airpods Headphones,1,150,12/31/19 05:16,"106 Chestnut St, Los Angeles, CA 90001" -314011,Lightning Charging Cable,1,14.95,12/25/19 13:30,"738 Wilson St, Austin, TX 73301" -314012,27in 4K Gaming Monitor,1,389.99,12/27/19 18:39,"456 14th St, Portland, OR 97035" -314013,USB-C Charging Cable,1,11.95,12/19/19 10:45,"33 Main St, Los Angeles, CA 90001" -314014,AA Batteries (4-pack),1,3.84,12/15/19 11:39,"110 2nd St, Los Angeles, CA 90001" -314014,Lightning Charging Cable,1,14.95,12/15/19 11:39,"110 2nd St, Los Angeles, CA 90001" -314015,AA Batteries (4-pack),1,3.84,12/23/19 07:29,"958 2nd St, Austin, TX 73301" -314016,27in FHD Monitor,1,149.99,12/14/19 13:35,"637 Pine St, San Francisco, CA 94016" -314017,USB-C Charging Cable,1,11.95,12/23/19 09:35,"263 Walnut St, San Francisco, CA 94016" -314018,AA Batteries (4-pack),2,3.84,12/29/19 01:04,"761 11th St, Atlanta, GA 30301" -314019,Apple Airpods Headphones,1,150,12/23/19 21:08,"727 Washington St, Los Angeles, CA 90001" -314020,AA Batteries (4-pack),2,3.84,12/21/19 14:31,"827 Lincoln St, Los Angeles, CA 90001" -314021,AAA Batteries (4-pack),1,2.99,12/09/19 23:16,"298 North St, Los Angeles, CA 90001" -314022,AAA Batteries (4-pack),5,2.99,12/27/19 14:32,"326 Jefferson St, San Francisco, CA 94016" -314023,Lightning Charging Cable,1,14.95,12/15/19 04:22,"898 Jefferson St, San Francisco, CA 94016" -314024,AA Batteries (4-pack),1,3.84,12/31/19 21:56,"730 Church St, San Francisco, CA 94016" -314025,AAA Batteries (4-pack),1,2.99,12/15/19 17:59,"538 6th St, San Francisco, CA 94016" -314026,AA Batteries (4-pack),1,3.84,12/27/19 09:28,"308 South St, Dallas, TX 75001" -314027,20in Monitor,1,109.99,12/31/19 02:51,"15 Chestnut St, Boston, MA 02215" -314028,Apple Airpods Headphones,1,150,12/03/19 07:03,"614 North St, Boston, MA 02215" -314029,Bose SoundSport Headphones,1,99.99,12/09/19 21:57,"819 West St, New York City, NY 10001" -314030,Wired Headphones,2,11.99,12/18/19 01:09,"693 River St, Dallas, TX 75001" -314031,iPhone,1,700,12/26/19 17:47,"6 Wilson St, New York City, NY 10001" -314032,USB-C Charging Cable,1,11.95,12/06/19 19:42,"448 Church St, San Francisco, CA 94016" -314033,USB-C Charging Cable,1,11.95,12/06/19 16:34,"753 Wilson St, Los Angeles, CA 90001" -314034,Lightning Charging Cable,1,14.95,12/21/19 14:14,"190 Walnut St, Seattle, WA 98101" -314035,34in Ultrawide Monitor,1,379.99,12/27/19 14:59,"996 Johnson St, Seattle, WA 98101" -314036,Wired Headphones,1,11.99,12/01/19 22:44,"526 10th St, Los Angeles, CA 90001" -314037,27in 4K Gaming Monitor,1,389.99,12/19/19 19:55,"110 Park St, New York City, NY 10001" -314038,iPhone,1,700,12/26/19 20:25,"116 Sunset St, Portland, OR 97035" -314039,AAA Batteries (4-pack),2,2.99,12/24/19 18:47,"862 Lake St, San Francisco, CA 94016" -314040,Apple Airpods Headphones,1,150,12/28/19 21:18,"350 Madison St, Atlanta, GA 30301" -314041,Lightning Charging Cable,1,14.95,12/19/19 01:12,"551 Church St, Los Angeles, CA 90001" -314042,USB-C Charging Cable,1,11.95,12/20/19 14:53,"801 11th St, San Francisco, CA 94016" -314043,AA Batteries (4-pack),1,3.84,12/27/19 09:02,"708 Adams St, Los Angeles, CA 90001" -314044,Macbook Pro Laptop,1,1700,12/17/19 18:14,"697 Church St, Los Angeles, CA 90001" -314045,Macbook Pro Laptop,1,1700,12/05/19 21:51,"457 4th St, San Francisco, CA 94016" -314046,AA Batteries (4-pack),1,3.84,12/04/19 22:44,"461 Maple St, Portland, OR 97035" -314047,Wired Headphones,1,11.99,12/09/19 11:03,"458 Madison St, Atlanta, GA 30301" -314048,Apple Airpods Headphones,1,150,12/06/19 12:18,"976 Johnson St, Seattle, WA 98101" -314049,USB-C Charging Cable,1,11.95,12/01/19 16:25,"455 Pine St, New York City, NY 10001" -314050,USB-C Charging Cable,1,11.95,12/05/19 12:24,"299 Maple St, San Francisco, CA 94016" -314051,Flatscreen TV,1,300,12/16/19 11:35,"301 Main St, Dallas, TX 75001" -314052,Wired Headphones,1,11.99,12/29/19 13:06,"563 Willow St, Los Angeles, CA 90001" -314053,27in 4K Gaming Monitor,1,389.99,12/15/19 19:37,"209 Washington St, Portland, OR 97035" -314054,iPhone,1,700,12/11/19 08:16,"595 Cedar St, Los Angeles, CA 90001" -314055,Lightning Charging Cable,1,14.95,12/15/19 13:13,"475 12th St, Los Angeles, CA 90001" -314056,iPhone,1,700,12/06/19 11:04,"55 West St, Dallas, TX 75001" -314057,Macbook Pro Laptop,1,1700,12/13/19 14:29,"529 8th St, Dallas, TX 75001" -314058,Apple Airpods Headphones,1,150,12/22/19 16:57,"26 Highland St, San Francisco, CA 94016" -314059,Apple Airpods Headphones,1,150,12/05/19 18:34,"811 4th St, Atlanta, GA 30301" -314060,Wired Headphones,1,11.99,12/05/19 10:25,"871 Dogwood St, San Francisco, CA 94016" -314061,Wired Headphones,1,11.99,12/24/19 18:48,"471 Lake St, San Francisco, CA 94016" -314062,Lightning Charging Cable,1,14.95,12/31/19 12:37,"321 8th St, Boston, MA 02215" -314063,AAA Batteries (4-pack),3,2.99,12/21/19 23:46,"592 Main St, Austin, TX 73301" -314064,Apple Airpods Headphones,1,150,12/28/19 09:06,"129 14th St, Los Angeles, CA 90001" -314065,AAA Batteries (4-pack),1,2.99,12/15/19 00:44,"35 2nd St, Boston, MA 02215" -314066,USB-C Charging Cable,1,11.95,01/01/20 01:52,"922 8th St, New York City, NY 10001" -314067,Apple Airpods Headphones,1,150,12/15/19 16:49,"301 Pine St, Atlanta, GA 30301" -314068,AAA Batteries (4-pack),2,2.99,12/16/19 10:54,"26 Center St, Los Angeles, CA 90001" -314069,Apple Airpods Headphones,1,150,12/23/19 10:03,"229 South St, Los Angeles, CA 90001" -314070,Apple Airpods Headphones,1,150,12/08/19 11:08,"22 Sunset St, Los Angeles, CA 90001" -314071,AAA Batteries (4-pack),2,2.99,12/10/19 19:21,"655 Adams St, Boston, MA 02215" -314072,Apple Airpods Headphones,1,150,12/25/19 10:04,"143 Jefferson St, San Francisco, CA 94016" -314073,USB-C Charging Cable,1,11.95,12/08/19 17:34,"702 Chestnut St, Portland, OR 97035" -314074,Lightning Charging Cable,1,14.95,12/24/19 08:54,"768 Church St, Boston, MA 02215" -314075,27in 4K Gaming Monitor,1,389.99,12/08/19 23:38,"120 Wilson St, Los Angeles, CA 90001" -314076,Bose SoundSport Headphones,1,99.99,12/31/19 11:13,"768 Chestnut St, New York City, NY 10001" -314077,AAA Batteries (4-pack),1,2.99,12/09/19 19:03,"21 5th St, Dallas, TX 75001" -314078,USB-C Charging Cable,1,11.95,12/24/19 22:56,"341 Park St, Seattle, WA 98101" -314079,Lightning Charging Cable,1,14.95,12/13/19 21:37,"219 Jefferson St, San Francisco, CA 94016" -314080,Lightning Charging Cable,1,14.95,12/16/19 12:44,"557 11th St, Boston, MA 02215" -314081,AAA Batteries (4-pack),3,2.99,12/08/19 15:13,"554 6th St, Boston, MA 02215" -314081,27in 4K Gaming Monitor,1,389.99,12/08/19 15:13,"554 6th St, Boston, MA 02215" -314082,ThinkPad Laptop,1,999.99,12/31/19 14:56,"941 Ridge St, Boston, MA 02215" -314083,Bose SoundSport Headphones,1,99.99,12/04/19 23:09,"747 Chestnut St, San Francisco, CA 94016" -314084,USB-C Charging Cable,1,11.95,12/06/19 12:07,"70 Johnson St, San Francisco, CA 94016" -314085,Wired Headphones,1,11.99,12/19/19 09:14,"448 West St, Seattle, WA 98101" -314086,AA Batteries (4-pack),1,3.84,12/14/19 10:13,"314 9th St, Austin, TX 73301" -314086,ThinkPad Laptop,1,999.99,12/14/19 10:13,"314 9th St, Austin, TX 73301" -314087,Wired Headphones,1,11.99,12/03/19 14:14,"656 13th St, New York City, NY 10001" -314088,Bose SoundSport Headphones,1,99.99,12/07/19 10:16,"732 Lake St, Los Angeles, CA 90001" -314089,Wired Headphones,1,11.99,12/13/19 12:20,"602 Park St, New York City, NY 10001" -314090,27in FHD Monitor,1,149.99,12/17/19 20:04,"28 1st St, San Francisco, CA 94016" -314091,Macbook Pro Laptop,1,1700,12/18/19 17:40,"190 4th St, New York City, NY 10001" -314092,AA Batteries (4-pack),1,3.84,12/25/19 15:22,"23 Ridge St, Atlanta, GA 30301" -314093,AAA Batteries (4-pack),1,2.99,12/11/19 07:51,"377 Dogwood St, Seattle, WA 98101" -314094,Flatscreen TV,1,300,12/29/19 10:07,"512 Walnut St, San Francisco, CA 94016" -314095,Flatscreen TV,1,300,12/26/19 18:00,"66 Church St, Los Angeles, CA 90001" -314096,Wired Headphones,1,11.99,12/05/19 13:28,"91 5th St, Los Angeles, CA 90001" -314097,Apple Airpods Headphones,1,150,12/15/19 17:22,"5 7th St, Portland, OR 97035" -314098,Lightning Charging Cable,1,14.95,12/16/19 15:43,"239 14th St, Portland, OR 97035" -314099,AAA Batteries (4-pack),2,2.99,12/14/19 22:31,"19 Adams St, Seattle, WA 98101" -314100,Bose SoundSport Headphones,1,99.99,12/16/19 18:47,"457 Johnson St, Seattle, WA 98101" -314101,Google Phone,1,600,12/22/19 20:10,"164 6th St, Los Angeles, CA 90001" -314102,Bose SoundSport Headphones,1,99.99,12/24/19 11:29,"73 Washington St, Dallas, TX 75001" -314103,20in Monitor,1,109.99,12/06/19 16:49,"243 4th St, New York City, NY 10001" -314104,Lightning Charging Cable,1,14.95,12/23/19 16:54,"37 Sunset St, Boston, MA 02215" -314105,Bose SoundSport Headphones,1,99.99,12/10/19 15:44,"68 9th St, Austin, TX 73301" -314106,AA Batteries (4-pack),2,3.84,12/04/19 22:56,"821 Madison St, Seattle, WA 98101" -314107,Google Phone,1,600,12/27/19 21:53,"417 Main St, Dallas, TX 75001" -314108,27in FHD Monitor,1,149.99,12/13/19 02:34,"950 Hickory St, Atlanta, GA 30301" -314109,Macbook Pro Laptop,1,1700,12/17/19 14:34,"468 Hill St, San Francisco, CA 94016" -314110,USB-C Charging Cable,1,11.95,12/05/19 23:22,"42 River St, San Francisco, CA 94016" -314111,27in 4K Gaming Monitor,1,389.99,12/05/19 13:16,"698 Madison St, Boston, MA 02215" -314112,34in Ultrawide Monitor,1,379.99,12/01/19 12:51,"833 Main St, San Francisco, CA 94016" -314113,ThinkPad Laptop,1,999.99,12/23/19 00:22,"977 Hill St, Dallas, TX 75001" -314114,AAA Batteries (4-pack),1,2.99,12/21/19 14:46,"14 11th St, New York City, NY 10001" -314115,AAA Batteries (4-pack),1,2.99,12/03/19 15:14,"774 Hickory St, Portland, ME 04101" -314116,USB-C Charging Cable,1,11.95,12/04/19 10:17,"377 Forest St, Atlanta, GA 30301" -314117,Wired Headphones,1,11.99,12/16/19 00:23,"100 6th St, Boston, MA 02215" -314118,USB-C Charging Cable,1,11.95,12/19/19 19:03,"97 11th St, Portland, OR 97035" -314119,34in Ultrawide Monitor,1,379.99,12/22/19 10:09,"602 Jackson St, Dallas, TX 75001" -314120,27in 4K Gaming Monitor,1,389.99,12/16/19 10:05,"433 West St, Los Angeles, CA 90001" -314121,AA Batteries (4-pack),1,3.84,12/14/19 14:34,"656 Meadow St, Atlanta, GA 30301" -314122,Lightning Charging Cable,1,14.95,12/05/19 06:18,"275 Walnut St, New York City, NY 10001" -314123,AAA Batteries (4-pack),1,2.99,12/10/19 12:17,"956 North St, Dallas, TX 75001" -314124,AA Batteries (4-pack),1,3.84,12/02/19 14:50,"740 Park St, Los Angeles, CA 90001" -314125,USB-C Charging Cable,2,11.95,12/04/19 16:00,"890 1st St, Seattle, WA 98101" -314126,AA Batteries (4-pack),2,3.84,12/06/19 12:08,"301 4th St, Dallas, TX 75001" -314127,USB-C Charging Cable,2,11.95,12/31/19 12:13,"86 Elm St, Austin, TX 73301" -314128,USB-C Charging Cable,1,11.95,12/27/19 21:11,"130 10th St, Atlanta, GA 30301" -314129,Lightning Charging Cable,1,14.95,12/10/19 14:13,"946 Willow St, Boston, MA 02215" -314130,27in 4K Gaming Monitor,1,389.99,12/12/19 11:44,"717 12th St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -314131,20in Monitor,1,109.99,12/04/19 18:50,"497 9th St, San Francisco, CA 94016" -314132,USB-C Charging Cable,1,11.95,12/28/19 08:21,"239 4th St, Los Angeles, CA 90001" -314133,USB-C Charging Cable,1,11.95,12/16/19 11:48,"313 Hill St, Los Angeles, CA 90001" -314134,AA Batteries (4-pack),2,3.84,12/02/19 10:31,"342 River St, Los Angeles, CA 90001" -314135,Lightning Charging Cable,1,14.95,12/08/19 14:16,"581 Hickory St, Austin, TX 73301" -314136,USB-C Charging Cable,1,11.95,12/13/19 17:42,"333 Adams St, San Francisco, CA 94016" -314137,Lightning Charging Cable,1,14.95,12/26/19 20:33,"268 12th St, Austin, TX 73301" -314138,Bose SoundSport Headphones,1,99.99,12/26/19 16:17,"189 Ridge St, Atlanta, GA 30301" -314139,Flatscreen TV,1,300,12/28/19 16:00,"108 9th St, Los Angeles, CA 90001" -314140,AAA Batteries (4-pack),1,2.99,12/08/19 20:44,"346 9th St, San Francisco, CA 94016" -314141,AAA Batteries (4-pack),1,2.99,12/20/19 09:41,"330 Walnut St, Boston, MA 02215" -314142,USB-C Charging Cable,1,11.95,12/21/19 14:45,"655 Sunset St, San Francisco, CA 94016" -314143,AAA Batteries (4-pack),1,2.99,12/10/19 14:35,"205 5th St, San Francisco, CA 94016" -314144,Lightning Charging Cable,1,14.95,12/27/19 18:28,"475 13th St, Dallas, TX 75001" -314145,20in Monitor,1,109.99,12/23/19 19:12,"857 Lincoln St, San Francisco, CA 94016" -314146,Apple Airpods Headphones,1,150,12/12/19 10:51,"659 5th St, New York City, NY 10001" -314147,Apple Airpods Headphones,1,150,12/17/19 21:43,"733 River St, Austin, TX 73301" -314148,iPhone,1,700,12/27/19 15:15,"493 Hill St, Los Angeles, CA 90001" -314149,Flatscreen TV,1,300,12/01/19 11:52,"117 14th St, Dallas, TX 75001" -314150,34in Ultrawide Monitor,1,379.99,12/16/19 19:31,"905 Lincoln St, New York City, NY 10001" -314151,Apple Airpods Headphones,1,150,12/28/19 18:23,"768 Main St, San Francisco, CA 94016" -314152,Bose SoundSport Headphones,1,99.99,12/24/19 17:16,"847 River St, Boston, MA 02215" -314153,20in Monitor,1,109.99,12/05/19 13:23,"25 Meadow St, Seattle, WA 98101" -314154,Bose SoundSport Headphones,1,99.99,12/08/19 18:58,"789 Johnson St, Seattle, WA 98101" -314155,USB-C Charging Cable,1,11.95,12/16/19 12:42,"256 Washington St, Los Angeles, CA 90001" -314156,Wired Headphones,1,11.99,12/11/19 23:09,"294 Elm St, Los Angeles, CA 90001" -314157,Wired Headphones,1,11.99,12/23/19 09:28,"157 Lakeview St, Seattle, WA 98101" -314158,AAA Batteries (4-pack),1,2.99,12/15/19 22:30,"865 1st St, Boston, MA 02215" -314159,USB-C Charging Cable,1,11.95,12/12/19 11:38,"902 Washington St, New York City, NY 10001" -314160,Apple Airpods Headphones,1,150,12/20/19 14:49,"505 10th St, Portland, OR 97035" -314161,USB-C Charging Cable,1,11.95,12/17/19 10:59,"392 6th St, Los Angeles, CA 90001" -314162,Lightning Charging Cable,1,14.95,12/26/19 21:25,"483 Park St, Dallas, TX 75001" -314163,USB-C Charging Cable,1,11.95,12/22/19 12:00,"393 Johnson St, Boston, MA 02215" -314164,Lightning Charging Cable,1,14.95,12/02/19 11:46,"692 Cherry St, Los Angeles, CA 90001" -314165,AA Batteries (4-pack),1,3.84,12/12/19 15:35,"140 Sunset St, San Francisco, CA 94016" -314166,Wired Headphones,1,11.99,12/05/19 18:17,"705 9th St, Atlanta, GA 30301" -314167,Wired Headphones,1,11.99,12/29/19 21:14,"363 Forest St, Boston, MA 02215" -314168,ThinkPad Laptop,1,999.99,12/02/19 21:42,"724 7th St, San Francisco, CA 94016" -314169,LG Washing Machine,1,600.0,12/02/19 16:58,"64 Meadow St, Atlanta, GA 30301" -314170,27in FHD Monitor,1,149.99,12/15/19 15:23,"519 Forest St, New York City, NY 10001" -314171,Wired Headphones,1,11.99,12/22/19 22:56,"757 Forest St, Portland, OR 97035" -314172,AAA Batteries (4-pack),1,2.99,12/09/19 17:57,"636 11th St, San Francisco, CA 94016" -314173,Bose SoundSport Headphones,1,99.99,12/26/19 21:50,"648 Spruce St, San Francisco, CA 94016" -314174,AAA Batteries (4-pack),4,2.99,12/15/19 23:13,"222 South St, New York City, NY 10001" -314175,AA Batteries (4-pack),1,3.84,12/23/19 18:00,"21 8th St, Los Angeles, CA 90001" -314176,Wired Headphones,1,11.99,12/24/19 14:01,"827 Maple St, Seattle, WA 98101" -314177,AA Batteries (4-pack),1,3.84,12/07/19 06:58,"269 Elm St, Boston, MA 02215" -314178,USB-C Charging Cable,1,11.95,12/15/19 07:49,"647 14th St, New York City, NY 10001" -314179,USB-C Charging Cable,1,11.95,12/31/19 22:46,"371 Hickory St, New York City, NY 10001" -314180,AAA Batteries (4-pack),1,2.99,12/02/19 20:19,"909 South St, New York City, NY 10001" -314181,USB-C Charging Cable,1,11.95,12/21/19 22:50,"338 Hickory St, Los Angeles, CA 90001" -314182,Bose SoundSport Headphones,1,99.99,12/26/19 09:12,"629 Lincoln St, San Francisco, CA 94016" -314183,iPhone,1,700,12/05/19 12:31,"663 Lake St, New York City, NY 10001" -314184,Lightning Charging Cable,1,14.95,12/13/19 15:37,"414 Spruce St, Portland, OR 97035" -314185,iPhone,1,700,12/21/19 13:31,"534 7th St, Boston, MA 02215" -314186,AAA Batteries (4-pack),1,2.99,12/21/19 18:11,"386 Johnson St, New York City, NY 10001" -314187,27in FHD Monitor,1,149.99,12/18/19 14:18,"860 Church St, Boston, MA 02215" -314188,Lightning Charging Cable,1,14.95,12/13/19 19:52,"806 5th St, Los Angeles, CA 90001" -314189,Lightning Charging Cable,1,14.95,12/06/19 20:06,"969 Center St, San Francisco, CA 94016" -314190,Wired Headphones,1,11.99,12/25/19 20:43,"620 River St, San Francisco, CA 94016" -314191,USB-C Charging Cable,1,11.95,12/03/19 15:22,"584 Church St, Dallas, TX 75001" -314192,USB-C Charging Cable,1,11.95,12/10/19 13:00,"670 Johnson St, Portland, OR 97035" -314193,AAA Batteries (4-pack),1,2.99,12/31/19 13:42,"992 Pine St, San Francisco, CA 94016" -314194,Flatscreen TV,1,300,12/28/19 08:23,"31 Adams St, San Francisco, CA 94016" -314195,Bose SoundSport Headphones,1,99.99,12/12/19 18:36,"346 Ridge St, Atlanta, GA 30301" -314196,iPhone,1,700,12/23/19 10:25,"541 Lakeview St, Austin, TX 73301" -314197,Bose SoundSport Headphones,1,99.99,12/14/19 10:54,"487 Maple St, Boston, MA 02215" -314197,AA Batteries (4-pack),2,3.84,12/14/19 10:54,"487 Maple St, Boston, MA 02215" -314198,Flatscreen TV,1,300,12/02/19 12:33,"155 1st St, Los Angeles, CA 90001" -314199,Lightning Charging Cable,1,14.95,12/10/19 15:16,"612 Adams St, Los Angeles, CA 90001" -314200,USB-C Charging Cable,1,11.95,12/10/19 12:54,"285 Jackson St, Boston, MA 02215" -314201,Wired Headphones,1,11.99,12/20/19 10:59,"691 Park St, San Francisco, CA 94016" -314202,Bose SoundSport Headphones,1,99.99,12/12/19 17:59,"212 Jackson St, New York City, NY 10001" -314203,27in FHD Monitor,1,149.99,12/04/19 17:02,"447 Cherry St, Boston, MA 02215" -314204,AA Batteries (4-pack),1,3.84,12/04/19 19:42,"143 12th St, Los Angeles, CA 90001" -314205,AAA Batteries (4-pack),1,2.99,12/13/19 10:33,"301 Jefferson St, Los Angeles, CA 90001" -314206,Lightning Charging Cable,1,14.95,12/16/19 06:11,"360 Cherry St, New York City, NY 10001" -314207,USB-C Charging Cable,1,11.95,12/16/19 11:17,"707 Lincoln St, Seattle, WA 98101" -314208,ThinkPad Laptop,1,999.99,12/15/19 12:13,"664 14th St, Dallas, TX 75001" -314209,27in FHD Monitor,1,149.99,12/10/19 16:40,"107 Elm St, San Francisco, CA 94016" -314210,Apple Airpods Headphones,1,150,12/18/19 21:23,"795 4th St, Los Angeles, CA 90001" -314211,USB-C Charging Cable,1,11.95,12/16/19 22:03,"836 Sunset St, Los Angeles, CA 90001" -314212,Wired Headphones,1,11.99,12/07/19 18:36,"779 8th St, Seattle, WA 98101" -314213,AA Batteries (4-pack),1,3.84,12/18/19 21:45,"973 12th St, Los Angeles, CA 90001" -314214,USB-C Charging Cable,1,11.95,12/13/19 11:14,"276 10th St, Seattle, WA 98101" -314215,Apple Airpods Headphones,1,150,12/25/19 22:22,"736 Ridge St, Dallas, TX 75001" -314216,Lightning Charging Cable,1,14.95,12/01/19 10:40,"81 Sunset St, Boston, MA 02215" -314217,34in Ultrawide Monitor,1,379.99,12/05/19 22:44,"223 1st St, San Francisco, CA 94016" -314218,27in FHD Monitor,1,149.99,12/07/19 10:24,"29 4th St, San Francisco, CA 94016" -314219,Lightning Charging Cable,1,14.95,12/04/19 06:59,"484 12th St, Atlanta, GA 30301" -314220,AAA Batteries (4-pack),2,2.99,12/05/19 19:17,"594 Forest St, Los Angeles, CA 90001" -314221,AAA Batteries (4-pack),1,2.99,12/07/19 16:26,"623 9th St, New York City, NY 10001" -314222,Bose SoundSport Headphones,1,99.99,12/11/19 18:50,"753 Forest St, Portland, OR 97035" -314223,Apple Airpods Headphones,1,150,12/26/19 19:15,"29 Wilson St, Atlanta, GA 30301" -314224,Macbook Pro Laptop,1,1700,12/05/19 16:49,"119 12th St, Dallas, TX 75001" -,,,,, -314225,34in Ultrawide Monitor,1,379.99,12/20/19 00:14,"402 West St, Los Angeles, CA 90001" -314226,Macbook Pro Laptop,1,1700,12/09/19 22:22,"591 Jefferson St, Dallas, TX 75001" -314227,Apple Airpods Headphones,1,150,12/05/19 22:24,"796 Chestnut St, San Francisco, CA 94016" -314228,AA Batteries (4-pack),1,3.84,12/07/19 17:17,"695 14th St, Boston, MA 02215" -314229,USB-C Charging Cable,1,11.95,12/14/19 22:18,"68 13th St, New York City, NY 10001" -314230,AAA Batteries (4-pack),2,2.99,12/30/19 15:51,"846 13th St, San Francisco, CA 94016" -314231,Lightning Charging Cable,1,14.95,12/08/19 02:07,"615 1st St, Atlanta, GA 30301" -314232,USB-C Charging Cable,2,11.95,12/04/19 14:00,"346 Cherry St, San Francisco, CA 94016" -314233,27in 4K Gaming Monitor,1,389.99,12/23/19 10:24,"78 Meadow St, Dallas, TX 75001" -314234,AA Batteries (4-pack),1,3.84,12/08/19 23:45,"314 River St, Boston, MA 02215" -314235,Wired Headphones,1,11.99,12/04/19 23:29,"326 11th St, San Francisco, CA 94016" -314236,27in 4K Gaming Monitor,1,389.99,12/21/19 21:32,"669 8th St, San Francisco, CA 94016" -314237,AA Batteries (4-pack),2,3.84,12/29/19 22:56,"387 Cedar St, Atlanta, GA 30301" -314238,USB-C Charging Cable,1,11.95,12/05/19 16:40,"503 River St, Seattle, WA 98101" -314239,27in FHD Monitor,1,149.99,12/29/19 13:17,"857 Jackson St, Dallas, TX 75001" -314240,USB-C Charging Cable,1,11.95,12/09/19 19:34,"685 Lincoln St, New York City, NY 10001" -314241,34in Ultrawide Monitor,1,379.99,12/30/19 09:33,"401 Church St, Austin, TX 73301" -314242,AA Batteries (4-pack),3,3.84,12/01/19 07:11,"260 Forest St, Dallas, TX 75001" -314243,ThinkPad Laptop,1,999.99,12/22/19 19:32,"776 10th St, San Francisco, CA 94016" -314244,USB-C Charging Cable,1,11.95,12/19/19 12:44,"325 Lincoln St, Boston, MA 02215" -314245,Wired Headphones,2,11.99,12/13/19 11:40,"370 Walnut St, Dallas, TX 75001" -314246,Bose SoundSport Headphones,1,99.99,12/24/19 12:47,"998 Washington St, Los Angeles, CA 90001" -314247,Wired Headphones,2,11.99,12/18/19 22:35,"369 6th St, San Francisco, CA 94016" -314248,Apple Airpods Headphones,1,150,12/05/19 14:27,"700 13th St, Dallas, TX 75001" -314249,USB-C Charging Cable,1,11.95,12/20/19 13:03,"679 6th St, San Francisco, CA 94016" -314250,Bose SoundSport Headphones,1,99.99,12/04/19 14:18,"827 Elm St, Dallas, TX 75001" -314251,ThinkPad Laptop,1,999.99,12/10/19 16:48,"66 Hill St, New York City, NY 10001" -314252,Lightning Charging Cable,1,14.95,12/01/19 19:24,"371 Center St, Portland, ME 04101" -314253,AAA Batteries (4-pack),2,2.99,12/31/19 19:04,"753 Washington St, San Francisco, CA 94016" -314254,Apple Airpods Headphones,1,150,12/30/19 09:42,"205 Hill St, Seattle, WA 98101" -314255,USB-C Charging Cable,1,11.95,12/21/19 09:59,"737 Pine St, New York City, NY 10001" -314256,Bose SoundSport Headphones,1,99.99,12/17/19 11:15,"854 South St, San Francisco, CA 94016" -314257,USB-C Charging Cable,1,11.95,12/19/19 08:40,"432 Cedar St, San Francisco, CA 94016" -314258,Apple Airpods Headphones,1,150,12/29/19 15:04,"955 Ridge St, Portland, ME 04101" -314259,Apple Airpods Headphones,1,150,12/04/19 13:41,"899 4th St, Dallas, TX 75001" -314260,Bose SoundSport Headphones,1,99.99,12/17/19 18:36,"757 River St, New York City, NY 10001" -314261,Lightning Charging Cable,1,14.95,12/23/19 12:32,"177 4th St, San Francisco, CA 94016" -314262,Apple Airpods Headphones,1,150,12/06/19 20:13,"818 Chestnut St, Seattle, WA 98101" -314263,iPhone,1,700,12/04/19 20:49,"941 River St, Portland, OR 97035" -314264,AAA Batteries (4-pack),2,2.99,12/20/19 01:55,"530 Johnson St, Seattle, WA 98101" -314265,USB-C Charging Cable,1,11.95,12/20/19 19:16,"618 Pine St, Portland, OR 97035" -314266,Lightning Charging Cable,1,14.95,12/22/19 19:51,"675 Lincoln St, Los Angeles, CA 90001" -314267,Apple Airpods Headphones,1,150,12/18/19 23:19,"2 Dogwood St, Dallas, TX 75001" -314268,AAA Batteries (4-pack),1,2.99,12/02/19 14:22,"747 Cherry St, New York City, NY 10001" -314269,AA Batteries (4-pack),1,3.84,12/29/19 11:11,"627 Jefferson St, New York City, NY 10001" -314270,Apple Airpods Headphones,1,150,12/23/19 12:22,"141 Meadow St, San Francisco, CA 94016" -314271,iPhone,1,700,12/19/19 14:34,"543 Cherry St, New York City, NY 10001" -314272,AAA Batteries (4-pack),1,2.99,12/03/19 21:45,"461 Sunset St, Los Angeles, CA 90001" -314273,27in 4K Gaming Monitor,1,389.99,12/20/19 18:04,"734 Adams St, Atlanta, GA 30301" -314274,Bose SoundSport Headphones,1,99.99,12/26/19 15:48,"814 Maple St, San Francisco, CA 94016" -314275,Flatscreen TV,1,300,12/24/19 10:27,"627 Dogwood St, Portland, ME 04101" -314276,USB-C Charging Cable,1,11.95,12/06/19 12:40,"826 5th St, Austin, TX 73301" -314277,USB-C Charging Cable,2,11.95,12/06/19 14:08,"977 Washington St, Los Angeles, CA 90001" -314278,AA Batteries (4-pack),1,3.84,12/25/19 09:39,"180 Pine St, New York City, NY 10001" -314279,AA Batteries (4-pack),1,3.84,12/17/19 07:24,"782 Jefferson St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -314280,Wired Headphones,1,11.99,12/06/19 22:02,"628 Meadow St, Austin, TX 73301" -314281,Apple Airpods Headphones,1,150,12/11/19 20:17,"3 Johnson St, New York City, NY 10001" -314282,27in 4K Gaming Monitor,1,389.99,12/13/19 14:28,"434 Madison St, New York City, NY 10001" -314283,27in FHD Monitor,1,149.99,12/16/19 07:43,"932 West St, Atlanta, GA 30301" -314284,Bose SoundSport Headphones,1,99.99,12/14/19 13:58,"866 Forest St, San Francisco, CA 94016" -314285,Bose SoundSport Headphones,1,99.99,12/05/19 08:48,"161 Hickory St, Seattle, WA 98101" -314286,Wired Headphones,1,11.99,12/09/19 14:17,"746 West St, New York City, NY 10001" -314287,ThinkPad Laptop,1,999.99,12/01/19 19:01,"861 8th St, San Francisco, CA 94016" -314288,Lightning Charging Cable,1,14.95,12/09/19 23:44,"400 West St, Austin, TX 73301" -314289,Google Phone,1,600,12/04/19 15:54,"730 Park St, Boston, MA 02215" -314290,AAA Batteries (4-pack),1,2.99,12/24/19 11:29,"439 Elm St, New York City, NY 10001" -314291,AAA Batteries (4-pack),1,2.99,12/23/19 22:41,"984 Church St, New York City, NY 10001" -314292,USB-C Charging Cable,1,11.95,12/12/19 23:18,"765 6th St, New York City, NY 10001" -314293,iPhone,1,700,12/25/19 16:38,"318 Cherry St, San Francisco, CA 94016" -314294,USB-C Charging Cable,1,11.95,12/19/19 09:06,"768 Johnson St, Los Angeles, CA 90001" -314295,AAA Batteries (4-pack),2,2.99,12/30/19 21:21,"693 Highland St, Los Angeles, CA 90001" -314296,AA Batteries (4-pack),1,3.84,12/11/19 14:31,"619 West St, New York City, NY 10001" -314297,27in 4K Gaming Monitor,1,389.99,12/20/19 13:38,"6 South St, Boston, MA 02215" -314298,iPhone,1,700,12/26/19 20:54,"98 5th St, Seattle, WA 98101" -314299,34in Ultrawide Monitor,1,379.99,12/12/19 13:34,"391 North St, New York City, NY 10001" -314300,iPhone,1,700,12/31/19 11:54,"525 Madison St, Dallas, TX 75001" -314301,AA Batteries (4-pack),1,3.84,12/04/19 18:01,"427 Ridge St, New York City, NY 10001" -314302,AA Batteries (4-pack),3,3.84,12/01/19 22:25,"120 Highland St, Atlanta, GA 30301" -314303,Wired Headphones,1,11.99,12/25/19 21:03,"424 Lake St, San Francisco, CA 94016" -314304,USB-C Charging Cable,1,11.95,12/12/19 17:25,"196 Highland St, Boston, MA 02215" -314305,Bose SoundSport Headphones,1,99.99,12/02/19 22:42,"142 Johnson St, San Francisco, CA 94016" -314306,Apple Airpods Headphones,1,150,12/23/19 09:51,"547 Cherry St, Atlanta, GA 30301" -314307,Lightning Charging Cable,1,14.95,12/25/19 21:56,"19 Jackson St, Portland, OR 97035" -314308,Wired Headphones,1,11.99,12/18/19 12:43,"568 Forest St, Portland, OR 97035" -314309,Bose SoundSport Headphones,1,99.99,12/21/19 03:27,"333 Jefferson St, San Francisco, CA 94016" -314310,Bose SoundSport Headphones,1,99.99,12/06/19 16:06,"79 2nd St, Boston, MA 02215" -314311,Wired Headphones,1,11.99,12/29/19 23:15,"981 South St, San Francisco, CA 94016" -314312,Lightning Charging Cable,1,14.95,12/01/19 18:52,"546 Dogwood St, Los Angeles, CA 90001" -314313,Apple Airpods Headphones,1,150,12/11/19 12:09,"923 10th St, Los Angeles, CA 90001" -314314,34in Ultrawide Monitor,1,379.99,12/15/19 23:13,"724 Main St, Seattle, WA 98101" -314315,Wired Headphones,1,11.99,12/16/19 10:45,"417 12th St, Seattle, WA 98101" -314316,AA Batteries (4-pack),2,3.84,12/16/19 19:00,"347 Park St, New York City, NY 10001" -314317,Apple Airpods Headphones,1,150,12/26/19 17:05,"795 6th St, Atlanta, GA 30301" -314318,Flatscreen TV,1,300,12/25/19 20:49,"409 Lake St, San Francisco, CA 94016" -314319,Wired Headphones,2,11.99,12/22/19 16:21,"643 8th St, Portland, OR 97035" -314320,LG Dryer,1,600.0,12/06/19 12:18,"793 4th St, Atlanta, GA 30301" -314321,AA Batteries (4-pack),1,3.84,12/01/19 20:14,"3 Adams St, Boston, MA 02215" -314322,Macbook Pro Laptop,1,1700,12/11/19 12:53,"968 Washington St, New York City, NY 10001" -314323,34in Ultrawide Monitor,1,379.99,12/08/19 17:51,"781 Cherry St, Dallas, TX 75001" -314324,AA Batteries (4-pack),1,3.84,12/31/19 10:39,"923 12th St, Seattle, WA 98101" -314325,Bose SoundSport Headphones,1,99.99,12/24/19 11:32,"304 Maple St, Boston, MA 02215" -314326,Lightning Charging Cable,1,14.95,12/15/19 21:49,"496 14th St, Los Angeles, CA 90001" -314326,USB-C Charging Cable,1,11.95,12/15/19 21:49,"496 14th St, Los Angeles, CA 90001" -314327,AAA Batteries (4-pack),2,2.99,12/30/19 15:18,"413 Jackson St, San Francisco, CA 94016" -314328,Wired Headphones,1,11.99,12/28/19 18:09,"23 Ridge St, Dallas, TX 75001" -314329,AA Batteries (4-pack),2,3.84,12/26/19 09:31,"300 Cedar St, Portland, OR 97035" -314330,Bose SoundSport Headphones,1,99.99,12/20/19 20:58,"232 2nd St, San Francisco, CA 94016" -314331,USB-C Charging Cable,1,11.95,12/25/19 22:51,"778 Hickory St, Los Angeles, CA 90001" -314332,Google Phone,1,600,12/30/19 21:49,"50 Sunset St, Seattle, WA 98101" -314333,Wired Headphones,1,11.99,12/09/19 11:43,"602 12th St, Dallas, TX 75001" -314334,USB-C Charging Cable,1,11.95,12/12/19 11:12,"432 Lake St, San Francisco, CA 94016" -314335,AA Batteries (4-pack),1,3.84,12/19/19 15:19,"661 Park St, San Francisco, CA 94016" -314336,27in FHD Monitor,1,149.99,12/06/19 08:23,"719 Pine St, San Francisco, CA 94016" -314337,iPhone,1,700,12/04/19 20:13,"622 Spruce St, Austin, TX 73301" -314338,Lightning Charging Cable,2,14.95,12/29/19 12:39,"992 Jackson St, San Francisco, CA 94016" -314339,27in FHD Monitor,1,149.99,12/06/19 07:31,"692 West St, San Francisco, CA 94016" -314340,Bose SoundSport Headphones,1,99.99,12/10/19 13:41,"532 13th St, San Francisco, CA 94016" -314341,iPhone,1,700,12/09/19 16:35,"167 Hickory St, Seattle, WA 98101" -314342,Apple Airpods Headphones,1,150,12/31/19 18:02,"170 Dogwood St, Portland, OR 97035" -314343,USB-C Charging Cable,1,11.95,12/24/19 22:10,"796 River St, Portland, ME 04101" -314344,AAA Batteries (4-pack),1,2.99,12/30/19 14:29,"210 Meadow St, Boston, MA 02215" -314345,Vareebadd Phone,1,400,12/15/19 15:38,"864 Lakeview St, New York City, NY 10001" -314345,Bose SoundSport Headphones,1,99.99,12/15/19 15:38,"864 Lakeview St, New York City, NY 10001" -314346,Bose SoundSport Headphones,1,99.99,12/28/19 17:43,"180 River St, Atlanta, GA 30301" -314347,iPhone,1,700,12/09/19 19:22,"80 6th St, San Francisco, CA 94016" -314347,Apple Airpods Headphones,1,150,12/09/19 19:22,"80 6th St, San Francisco, CA 94016" -314348,AAA Batteries (4-pack),3,2.99,12/28/19 12:34,"429 Highland St, Los Angeles, CA 90001" -314349,USB-C Charging Cable,1,11.95,12/31/19 13:11,"959 Walnut St, Los Angeles, CA 90001" -314350,USB-C Charging Cable,1,11.95,12/21/19 16:01,"974 12th St, Los Angeles, CA 90001" -314351,AAA Batteries (4-pack),1,2.99,12/20/19 23:14,"248 2nd St, Dallas, TX 75001" -314352,AAA Batteries (4-pack),1,2.99,12/19/19 08:09,"400 Elm St, Seattle, WA 98101" -314353,USB-C Charging Cable,1,11.95,12/06/19 15:33,"106 River St, Los Angeles, CA 90001" -314354,AA Batteries (4-pack),1,3.84,12/21/19 17:26,"355 Ridge St, Boston, MA 02215" -314355,AA Batteries (4-pack),1,3.84,12/12/19 18:59,"429 10th St, Los Angeles, CA 90001" -314356,USB-C Charging Cable,2,11.95,12/09/19 19:10,"741 14th St, New York City, NY 10001" -314357,AAA Batteries (4-pack),1,2.99,12/31/19 20:49,"261 Cherry St, Seattle, WA 98101" -314358,34in Ultrawide Monitor,1,379.99,12/11/19 21:50,"963 10th St, San Francisco, CA 94016" -314359,Wired Headphones,2,11.99,12/05/19 14:18,"991 4th St, Los Angeles, CA 90001" -314360,AAA Batteries (4-pack),2,2.99,12/25/19 07:42,"845 Hickory St, Austin, TX 73301" -314361,Vareebadd Phone,1,400,12/12/19 00:16,"277 Walnut St, Dallas, TX 75001" -314361,USB-C Charging Cable,1,11.95,12/12/19 00:16,"277 Walnut St, Dallas, TX 75001" -314362,27in FHD Monitor,1,149.99,12/24/19 18:40,"156 Hickory St, San Francisco, CA 94016" -314363,Bose SoundSport Headphones,1,99.99,12/10/19 07:31,"143 Cherry St, Dallas, TX 75001" -314364,20in Monitor,1,109.99,12/21/19 20:39,"298 South St, Los Angeles, CA 90001" -314365,AAA Batteries (4-pack),2,2.99,12/03/19 18:33,"859 Lake St, San Francisco, CA 94016" -314366,iPhone,1,700,12/03/19 21:57,"312 9th St, Seattle, WA 98101" -314366,Lightning Charging Cable,2,14.95,12/03/19 21:57,"312 9th St, Seattle, WA 98101" -314367,AA Batteries (4-pack),1,3.84,12/05/19 23:30,"537 Lakeview St, Dallas, TX 75001" -314368,LG Washing Machine,1,600.0,12/07/19 11:32,"356 Wilson St, Atlanta, GA 30301" -314369,USB-C Charging Cable,1,11.95,12/27/19 21:18,"286 Spruce St, Atlanta, GA 30301" -314370,USB-C Charging Cable,1,11.95,12/14/19 13:26,"787 Meadow St, San Francisco, CA 94016" -314371,Lightning Charging Cable,1,14.95,12/20/19 09:14,"633 Church St, San Francisco, CA 94016" -314372,AA Batteries (4-pack),1,3.84,12/21/19 18:21,"382 13th St, New York City, NY 10001" -314373,Bose SoundSport Headphones,1,99.99,12/07/19 14:41,"870 Lake St, San Francisco, CA 94016" -314374,Wired Headphones,2,11.99,12/15/19 08:34,"892 Maple St, Los Angeles, CA 90001" -314375,Wired Headphones,1,11.99,12/10/19 13:12,"61 8th St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -314376,Wired Headphones,1,11.99,12/09/19 21:29,"332 Willow St, Boston, MA 02215" -314377,Lightning Charging Cable,1,14.95,12/02/19 14:32,"142 Jackson St, Atlanta, GA 30301" -314378,AAA Batteries (4-pack),1,2.99,12/09/19 20:33,"396 Willow St, Portland, OR 97035" -314379,AAA Batteries (4-pack),1,2.99,12/05/19 21:43,"840 Hill St, Los Angeles, CA 90001" -314380,AA Batteries (4-pack),3,3.84,12/07/19 23:19,"723 Johnson St, San Francisco, CA 94016" -314381,Wired Headphones,1,11.99,12/09/19 21:43,"919 Ridge St, Los Angeles, CA 90001" -314382,27in FHD Monitor,1,149.99,12/10/19 13:57,"271 Jefferson St, San Francisco, CA 94016" -314383,USB-C Charging Cable,2,11.95,12/05/19 10:52,"213 Sunset St, San Francisco, CA 94016" -314384,34in Ultrawide Monitor,1,379.99,12/21/19 15:22,"171 8th St, Los Angeles, CA 90001" -314385,USB-C Charging Cable,1,11.95,12/26/19 11:32,"586 Elm St, Atlanta, GA 30301" -314386,iPhone,1,700,12/08/19 19:19,"970 Sunset St, New York City, NY 10001" -314387,Macbook Pro Laptop,1,1700,12/30/19 19:07,"519 10th St, Boston, MA 02215" -314388,AA Batteries (4-pack),1,3.84,12/26/19 09:23,"983 Pine St, Seattle, WA 98101" -314389,Apple Airpods Headphones,1,150,12/13/19 10:06,"946 Washington St, Atlanta, GA 30301" -314390,Bose SoundSport Headphones,1,99.99,12/28/19 12:14,"268 14th St, Portland, OR 97035" -314391,34in Ultrawide Monitor,1,379.99,12/30/19 23:08,"70 9th St, Dallas, TX 75001" -314392,AAA Batteries (4-pack),1,2.99,12/11/19 14:54,"982 Church St, San Francisco, CA 94016" -314392,Wired Headphones,1,11.99,12/11/19 14:54,"982 Church St, San Francisco, CA 94016" -314393,Wired Headphones,1,11.99,12/01/19 12:16,"747 Washington St, San Francisco, CA 94016" -314394,AA Batteries (4-pack),1,3.84,12/10/19 20:07,"140 Main St, Los Angeles, CA 90001" -314395,27in 4K Gaming Monitor,1,389.99,12/23/19 18:48,"733 Johnson St, San Francisco, CA 94016" -314396,Lightning Charging Cable,1,14.95,12/01/19 11:22,"546 Willow St, San Francisco, CA 94016" -314397,Macbook Pro Laptop,1,1700,12/21/19 20:32,"521 River St, San Francisco, CA 94016" -314398,USB-C Charging Cable,1,11.95,12/18/19 10:25,"954 Pine St, Portland, OR 97035" -314399,AAA Batteries (4-pack),1,2.99,12/15/19 22:41,"213 Washington St, San Francisco, CA 94016" -314400,AAA Batteries (4-pack),1,2.99,12/11/19 19:02,"419 Hill St, Atlanta, GA 30301" -314401,Apple Airpods Headphones,1,150,12/03/19 19:05,"560 11th St, Los Angeles, CA 90001" -314402,USB-C Charging Cable,1,11.95,12/03/19 12:37,"129 Hickory St, San Francisco, CA 94016" -314403,34in Ultrawide Monitor,1,379.99,12/25/19 18:34,"760 Willow St, San Francisco, CA 94016" -314404,Bose SoundSport Headphones,1,99.99,12/07/19 12:19,"487 Meadow St, Seattle, WA 98101" -314405,ThinkPad Laptop,1,999.99,12/16/19 15:44,"363 Walnut St, Boston, MA 02215" -314406,AAA Batteries (4-pack),2,2.99,12/25/19 20:57,"350 Sunset St, San Francisco, CA 94016" -314407,27in FHD Monitor,1,149.99,12/17/19 20:09,"259 South St, Los Angeles, CA 90001" -314407,ThinkPad Laptop,1,999.99,12/17/19 20:09,"259 South St, Los Angeles, CA 90001" -314408,Lightning Charging Cable,1,14.95,12/20/19 10:25,"982 Adams St, San Francisco, CA 94016" -314409,20in Monitor,1,109.99,12/29/19 01:48,"598 Adams St, San Francisco, CA 94016" -314410,USB-C Charging Cable,1,11.95,12/05/19 10:08,"871 Jefferson St, New York City, NY 10001" -314411,USB-C Charging Cable,1,11.95,12/12/19 12:19,"246 Highland St, Atlanta, GA 30301" -314412,USB-C Charging Cable,1,11.95,12/18/19 11:54,"463 9th St, Atlanta, GA 30301" -314413,AA Batteries (4-pack),1,3.84,12/06/19 11:43,"431 Forest St, San Francisco, CA 94016" -314414,Google Phone,1,600,12/10/19 18:30,"757 Washington St, Los Angeles, CA 90001" -314414,USB-C Charging Cable,1,11.95,12/10/19 18:30,"757 Washington St, Los Angeles, CA 90001" -314415,Macbook Pro Laptop,1,1700,12/11/19 23:10,"430 Lakeview St, Dallas, TX 75001" -314416,Wired Headphones,1,11.99,12/09/19 14:54,"670 Lakeview St, Dallas, TX 75001" -314417,USB-C Charging Cable,1,11.95,12/19/19 07:59,"256 Forest St, Atlanta, GA 30301" -314418,Macbook Pro Laptop,1,1700,12/17/19 17:00,"198 Lincoln St, San Francisco, CA 94016" -314419,AA Batteries (4-pack),1,3.84,12/12/19 18:54,"841 4th St, Atlanta, GA 30301" -314420,Vareebadd Phone,1,400,12/23/19 22:03,"77 Hickory St, Portland, OR 97035" -314421,Lightning Charging Cable,1,14.95,12/23/19 13:02,"84 11th St, Boston, MA 02215" -314422,Wired Headphones,1,11.99,12/13/19 13:14,"556 Hickory St, Los Angeles, CA 90001" -314423,Bose SoundSport Headphones,1,99.99,12/19/19 12:02,"325 Jefferson St, New York City, NY 10001" -314424,Lightning Charging Cable,1,14.95,12/23/19 16:59,"190 Center St, Portland, OR 97035" -314425,Wired Headphones,1,11.99,12/31/19 12:07,"502 River St, New York City, NY 10001" -314426,Apple Airpods Headphones,1,150,12/03/19 12:32,"490 13th St, New York City, NY 10001" -314427,AA Batteries (4-pack),1,3.84,12/17/19 17:01,"998 5th St, Portland, OR 97035" -314428,AA Batteries (4-pack),1,3.84,12/10/19 12:53,"443 13th St, Portland, OR 97035" -314429,iPhone,1,700,12/29/19 14:39,"782 Forest St, San Francisco, CA 94016" -314430,27in FHD Monitor,1,149.99,12/30/19 11:32,"887 Pine St, San Francisco, CA 94016" -314431,Lightning Charging Cable,1,14.95,12/29/19 19:05,"933 Elm St, San Francisco, CA 94016" -314432,Lightning Charging Cable,1,14.95,12/09/19 13:18,"590 Willow St, Atlanta, GA 30301" -314433,Macbook Pro Laptop,1,1700,12/27/19 14:10,"690 Hickory St, Boston, MA 02215" -314434,Macbook Pro Laptop,1,1700,12/02/19 14:20,"122 Adams St, Portland, OR 97035" -314435,AAA Batteries (4-pack),1,2.99,12/10/19 21:13,"624 1st St, New York City, NY 10001" -314436,iPhone,1,700,12/04/19 13:59,"790 10th St, Seattle, WA 98101" -314436,Lightning Charging Cable,1,14.95,12/04/19 13:59,"790 10th St, Seattle, WA 98101" -314437,AAA Batteries (4-pack),1,2.99,12/13/19 21:26,"842 Cedar St, San Francisco, CA 94016" -314438,Bose SoundSport Headphones,1,99.99,12/22/19 21:24,"134 Walnut St, Portland, OR 97035" -314439,Bose SoundSport Headphones,1,99.99,12/07/19 08:10,"184 Spruce St, San Francisco, CA 94016" -314440,AA Batteries (4-pack),1,3.84,12/07/19 18:27,"216 Forest St, San Francisco, CA 94016" -314441,Bose SoundSport Headphones,1,99.99,12/15/19 13:05,"798 Johnson St, Boston, MA 02215" -314442,Apple Airpods Headphones,1,150,12/30/19 21:04,"131 North St, San Francisco, CA 94016" -314443,USB-C Charging Cable,1,11.95,12/15/19 13:31,"116 Park St, Boston, MA 02215" -314444,34in Ultrawide Monitor,1,379.99,12/26/19 17:22,"67 Washington St, San Francisco, CA 94016" -314445,USB-C Charging Cable,1,11.95,12/15/19 10:45,"88 Washington St, Dallas, TX 75001" -314446,Flatscreen TV,1,300,12/27/19 13:25,"889 Main St, Portland, OR 97035" -314447,AAA Batteries (4-pack),1,2.99,12/14/19 15:55,"508 1st St, Los Angeles, CA 90001" -314448,AAA Batteries (4-pack),1,2.99,12/13/19 11:05,"411 Meadow St, Atlanta, GA 30301" -314449,20in Monitor,1,109.99,12/13/19 11:08,"490 Madison St, Portland, OR 97035" -314450,Macbook Pro Laptop,1,1700,12/13/19 11:50,"664 14th St, New York City, NY 10001" -314451,ThinkPad Laptop,1,999.99,12/21/19 09:54,"86 South St, San Francisco, CA 94016" -314452,Google Phone,1,600,12/08/19 01:27,"678 West St, San Francisco, CA 94016" -314453,Wired Headphones,2,11.99,12/16/19 11:29,"319 Adams St, Boston, MA 02215" -314454,USB-C Charging Cable,1,11.95,12/29/19 11:27,"565 Pine St, San Francisco, CA 94016" -314455,27in FHD Monitor,1,149.99,12/13/19 11:14,"190 Elm St, New York City, NY 10001" -314456,27in FHD Monitor,1,149.99,12/02/19 12:48,"382 10th St, Los Angeles, CA 90001" -314457,iPhone,1,700,12/30/19 15:37,"963 Walnut St, Boston, MA 02215" -314458,34in Ultrawide Monitor,1,379.99,12/09/19 16:32,"207 West St, Portland, OR 97035" -314459,USB-C Charging Cable,1,11.95,12/22/19 08:39,"364 Jefferson St, Atlanta, GA 30301" -314460,Lightning Charging Cable,1,14.95,12/13/19 16:31,"691 10th St, Boston, MA 02215" -314461,AAA Batteries (4-pack),3,2.99,12/21/19 14:44,"927 Forest St, Portland, OR 97035" -314462,Lightning Charging Cable,1,14.95,12/23/19 11:57,"162 Elm St, Los Angeles, CA 90001" -314462,Wired Headphones,1,11.99,12/23/19 11:57,"162 Elm St, Los Angeles, CA 90001" -314463,Wired Headphones,1,11.99,12/09/19 00:26,"116 Willow St, San Francisco, CA 94016" -314464,AAA Batteries (4-pack),1,2.99,12/11/19 19:47,"656 2nd St, New York City, NY 10001" -314465,Bose SoundSport Headphones,1,99.99,12/08/19 12:48,"44 Cherry St, Los Angeles, CA 90001" -314466,Flatscreen TV,1,300,12/29/19 20:00,"751 Sunset St, Boston, MA 02215" -314467,Google Phone,1,600,12/20/19 19:11,"552 Highland St, New York City, NY 10001" -314468,iPhone,1,700,12/12/19 09:46,"294 2nd St, Portland, OR 97035" -314469,AA Batteries (4-pack),1,3.84,12/16/19 22:15,"861 Church St, Los Angeles, CA 90001" -314470,iPhone,1,700,12/02/19 13:43,"715 Madison St, Boston, MA 02215" -314471,AAA Batteries (4-pack),1,2.99,12/15/19 18:14,"337 Washington St, Boston, MA 02215" -314472,Bose SoundSport Headphones,1,99.99,12/23/19 16:36,"329 Johnson St, Atlanta, GA 30301" -314473,27in FHD Monitor,1,149.99,12/13/19 12:14,"215 8th St, Seattle, WA 98101" -314474,USB-C Charging Cable,1,11.95,12/04/19 07:33,"203 Cedar St, Atlanta, GA 30301" -314475,Lightning Charging Cable,1,14.95,12/11/19 07:50,"942 Cedar St, Boston, MA 02215" -314476,AAA Batteries (4-pack),1,2.99,12/29/19 21:38,"973 1st St, Portland, OR 97035" -314477,AAA Batteries (4-pack),2,2.99,12/06/19 15:48,"207 7th St, Boston, MA 02215" -314478,Bose SoundSport Headphones,1,99.99,12/27/19 12:43,"190 Meadow St, New York City, NY 10001" -314479,34in Ultrawide Monitor,1,379.99,12/11/19 15:19,"469 River St, New York City, NY 10001" -314480,Wired Headphones,1,11.99,12/05/19 22:55,"833 8th St, Boston, MA 02215" -314481,USB-C Charging Cable,1,11.95,12/29/19 15:23,"408 Pine St, New York City, NY 10001" -314482,Flatscreen TV,1,300,12/30/19 18:07,"378 2nd St, San Francisco, CA 94016" -314483,Lightning Charging Cable,1,14.95,12/06/19 05:57,"885 Walnut St, Seattle, WA 98101" -314484,Lightning Charging Cable,1,14.95,12/29/19 12:15,"544 11th St, Boston, MA 02215" -314485,USB-C Charging Cable,2,11.95,12/12/19 06:31,"543 Wilson St, Los Angeles, CA 90001" -314486,Flatscreen TV,1,300,12/05/19 20:40,"945 Jefferson St, San Francisco, CA 94016" -314487,34in Ultrawide Monitor,1,379.99,12/31/19 13:45,"833 Chestnut St, Los Angeles, CA 90001" -314488,AA Batteries (4-pack),1,3.84,12/06/19 18:05,"552 Dogwood St, Los Angeles, CA 90001" -314489,USB-C Charging Cable,1,11.95,12/07/19 22:33,"603 River St, New York City, NY 10001" -314490,Lightning Charging Cable,1,14.95,12/13/19 15:49,"381 12th St, San Francisco, CA 94016" -314491,27in FHD Monitor,1,149.99,12/27/19 09:37,"768 Wilson St, San Francisco, CA 94016" -314492,AA Batteries (4-pack),1,3.84,12/07/19 10:23,"223 6th St, San Francisco, CA 94016" -314493,Macbook Pro Laptop,1,1700,12/04/19 14:54,"80 Cherry St, New York City, NY 10001" -314494,Wired Headphones,2,11.99,12/08/19 16:16,"385 Park St, Boston, MA 02215" -314495,AAA Batteries (4-pack),1,2.99,12/31/19 10:44,"863 Main St, Los Angeles, CA 90001" -314496,USB-C Charging Cable,1,11.95,12/27/19 16:45,"956 Jackson St, San Francisco, CA 94016" -314497,AAA Batteries (4-pack),1,2.99,12/15/19 07:14,"266 Ridge St, Boston, MA 02215" -314498,27in 4K Gaming Monitor,1,389.99,12/22/19 12:07,"807 Madison St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -314499,AAA Batteries (4-pack),2,2.99,12/18/19 01:48,"160 9th St, San Francisco, CA 94016" -314500,AAA Batteries (4-pack),1,2.99,12/21/19 15:38,"297 12th St, New York City, NY 10001" -314501,27in 4K Gaming Monitor,1,389.99,12/26/19 12:07,"862 Ridge St, San Francisco, CA 94016" -314502,Vareebadd Phone,1,400,12/23/19 12:28,"270 Lake St, San Francisco, CA 94016" -314502,USB-C Charging Cable,1,11.95,12/23/19 12:28,"270 Lake St, San Francisco, CA 94016" -314503,Bose SoundSport Headphones,1,99.99,12/31/19 21:23,"705 14th St, Dallas, TX 75001" -314504,Vareebadd Phone,1,400,12/26/19 14:42,"736 Meadow St, Austin, TX 73301" -314505,AA Batteries (4-pack),2,3.84,12/05/19 14:39,"49 8th St, Dallas, TX 75001" -314506,Bose SoundSport Headphones,1,99.99,12/12/19 20:02,"95 Willow St, Los Angeles, CA 90001" -314507,AA Batteries (4-pack),1,3.84,12/16/19 11:34,"443 2nd St, Atlanta, GA 30301" -314508,USB-C Charging Cable,1,11.95,12/06/19 16:59,"64 Center St, Atlanta, GA 30301" -314509,Lightning Charging Cable,1,14.95,12/19/19 22:14,"373 5th St, San Francisco, CA 94016" -314510,Wired Headphones,2,11.99,12/24/19 08:33,"691 Adams St, Dallas, TX 75001" -314511,USB-C Charging Cable,1,11.95,12/11/19 15:10,"575 Dogwood St, Atlanta, GA 30301" -314512,AAA Batteries (4-pack),1,2.99,12/09/19 13:25,"255 Adams St, New York City, NY 10001" -314513,27in 4K Gaming Monitor,1,389.99,12/04/19 22:04,"140 8th St, Boston, MA 02215" -314514,AAA Batteries (4-pack),1,2.99,12/21/19 17:46,"670 Jefferson St, Seattle, WA 98101" -314515,34in Ultrawide Monitor,1,379.99,12/31/19 10:02,"421 Elm St, San Francisco, CA 94016" -314516,Lightning Charging Cable,1,14.95,12/27/19 18:13,"602 13th St, San Francisco, CA 94016" -314517,AAA Batteries (4-pack),6,2.99,12/30/19 22:43,"318 Maple St, San Francisco, CA 94016" -314518,Apple Airpods Headphones,1,150,12/28/19 21:31,"625 Adams St, New York City, NY 10001" -314519,Google Phone,1,600,12/22/19 13:38,"85 Church St, Los Angeles, CA 90001" -314520,USB-C Charging Cable,1,11.95,12/18/19 21:04,"996 Wilson St, Portland, ME 04101" -314521,ThinkPad Laptop,1,999.99,12/19/19 09:30,"257 Chestnut St, Boston, MA 02215" -314522,ThinkPad Laptop,1,999.99,12/23/19 08:36,"867 Main St, San Francisco, CA 94016" -314523,Vareebadd Phone,1,400,12/25/19 13:44,"813 13th St, Seattle, WA 98101" -314524,Lightning Charging Cable,1,14.95,12/28/19 09:50,"364 Johnson St, Dallas, TX 75001" -314525,Flatscreen TV,1,300,12/18/19 20:44,"76 13th St, Dallas, TX 75001" -314526,Wired Headphones,1,11.99,12/18/19 21:02,"538 14th St, San Francisco, CA 94016" -314527,Apple Airpods Headphones,1,150,12/29/19 22:46,"424 9th St, San Francisco, CA 94016" -314528,Apple Airpods Headphones,1,150,12/30/19 01:25,"775 River St, New York City, NY 10001" -314529,Flatscreen TV,1,300,12/26/19 11:28,"204 South St, San Francisco, CA 94016" -314530,Lightning Charging Cable,1,14.95,12/10/19 19:08,"843 5th St, Los Angeles, CA 90001" -314531,Bose SoundSport Headphones,1,99.99,12/09/19 01:08,"212 Center St, San Francisco, CA 94016" -314532,Lightning Charging Cable,1,14.95,12/05/19 13:03,"404 River St, New York City, NY 10001" -314533,27in 4K Gaming Monitor,1,389.99,12/03/19 12:31,"454 Highland St, San Francisco, CA 94016" -314534,27in 4K Gaming Monitor,1,389.99,12/10/19 10:54,"716 Madison St, New York City, NY 10001" -314535,USB-C Charging Cable,1,11.95,12/25/19 19:11,"782 Walnut St, Atlanta, GA 30301" -314536,27in FHD Monitor,1,149.99,12/14/19 17:38,"468 Madison St, San Francisco, CA 94016" -314537,ThinkPad Laptop,1,999.99,12/13/19 19:06,"448 South St, Boston, MA 02215" -314538,Apple Airpods Headphones,1,150,12/29/19 06:16,"548 7th St, Boston, MA 02215" -314539,Bose SoundSport Headphones,1,99.99,12/07/19 18:40,"407 4th St, New York City, NY 10001" -314540,Apple Airpods Headphones,1,150,12/05/19 14:27,"625 Forest St, Boston, MA 02215" -314541,iPhone,1,700,12/31/19 17:56,"901 Highland St, Los Angeles, CA 90001" -314542,Apple Airpods Headphones,1,150,12/03/19 04:03,"334 Ridge St, Portland, OR 97035" -314543,20in Monitor,1,109.99,12/01/19 13:24,"998 Hickory St, San Francisco, CA 94016" -314544,Apple Airpods Headphones,1,150,12/27/19 19:10,"777 14th St, Austin, TX 73301" -314545,AA Batteries (4-pack),1,3.84,12/20/19 20:02,"466 Washington St, Austin, TX 73301" -314546,Lightning Charging Cable,1,14.95,12/30/19 22:41,"166 10th St, New York City, NY 10001" -314547,USB-C Charging Cable,1,11.95,12/07/19 11:42,"460 13th St, New York City, NY 10001" -314548,Wired Headphones,1,11.99,12/25/19 18:38,"131 Church St, New York City, NY 10001" -314549,AA Batteries (4-pack),1,3.84,12/01/19 16:09,"229 Lake St, Boston, MA 02215" -314550,Vareebadd Phone,1,400,12/14/19 21:10,"40 Highland St, Boston, MA 02215" -314551,Lightning Charging Cable,1,14.95,12/25/19 18:05,"19 Ridge St, Atlanta, GA 30301" -314552,AAA Batteries (4-pack),1,2.99,01/01/20 01:47,"541 4th St, San Francisco, CA 94016" -314553,AA Batteries (4-pack),1,3.84,12/28/19 23:09,"570 5th St, New York City, NY 10001" -314554,iPhone,1,700,12/19/19 22:16,"937 2nd St, Austin, TX 73301" -314555,USB-C Charging Cable,1,11.95,12/21/19 15:46,"581 Church St, New York City, NY 10001" -314556,Macbook Pro Laptop,1,1700,12/02/19 08:16,"709 1st St, Portland, ME 04101" -314557,USB-C Charging Cable,1,11.95,12/26/19 16:19,"648 Meadow St, San Francisco, CA 94016" -314558,AAA Batteries (4-pack),1,2.99,12/02/19 19:03,"734 Wilson St, Portland, OR 97035" -314559,AA Batteries (4-pack),1,3.84,12/17/19 14:12,"14 Elm St, Seattle, WA 98101" -314560,27in FHD Monitor,1,149.99,12/09/19 20:41,"132 Pine St, New York City, NY 10001" -314561,27in FHD Monitor,1,149.99,12/24/19 09:19,"749 Sunset St, San Francisco, CA 94016" -314562,AA Batteries (4-pack),1,3.84,12/20/19 18:22,"761 Church St, Portland, ME 04101" -314563,Lightning Charging Cable,1,14.95,12/11/19 16:06,"762 Pine St, New York City, NY 10001" -314564,Lightning Charging Cable,1,14.95,12/03/19 19:07,"241 Hill St, New York City, NY 10001" -314565,34in Ultrawide Monitor,1,379.99,12/18/19 23:13,"874 Spruce St, Seattle, WA 98101" -314566,Google Phone,1,600,12/30/19 22:15,"465 Lakeview St, San Francisco, CA 94016" -314567,Wired Headphones,1,11.99,12/07/19 18:55,"641 1st St, Seattle, WA 98101" -314568,iPhone,1,700,12/05/19 12:36,"803 North St, San Francisco, CA 94016" -314569,Bose SoundSport Headphones,1,99.99,12/27/19 09:06,"450 Forest St, Los Angeles, CA 90001" -314570,Lightning Charging Cable,1,14.95,12/23/19 15:15,"861 Chestnut St, Boston, MA 02215" -314571,iPhone,1,700,12/03/19 09:47,"893 Dogwood St, Atlanta, GA 30301" -314572,iPhone,1,700,12/17/19 09:32,"166 7th St, San Francisco, CA 94016" -314573,AAA Batteries (4-pack),1,2.99,12/31/19 17:42,"712 Church St, Los Angeles, CA 90001" -314574,Flatscreen TV,1,300,12/13/19 18:50,"904 12th St, Dallas, TX 75001" -314575,Wired Headphones,1,11.99,12/12/19 21:02,"961 2nd St, New York City, NY 10001" -314575,Apple Airpods Headphones,1,150,12/12/19 21:02,"961 2nd St, New York City, NY 10001" -314576,Wired Headphones,1,11.99,12/27/19 17:04,"441 Church St, San Francisco, CA 94016" -314577,27in 4K Gaming Monitor,1,389.99,12/04/19 14:24,"631 Center St, Boston, MA 02215" -314578,Lightning Charging Cable,1,14.95,12/02/19 19:23,"983 River St, Portland, OR 97035" -314579,20in Monitor,1,109.99,12/13/19 11:13,"183 8th St, San Francisco, CA 94016" -314580,Bose SoundSport Headphones,1,99.99,12/22/19 15:13,"981 Johnson St, San Francisco, CA 94016" -314581,USB-C Charging Cable,1,11.95,12/06/19 22:25,"515 Maple St, Atlanta, GA 30301" -314582,34in Ultrawide Monitor,1,379.99,12/02/19 17:40,"79 Chestnut St, Los Angeles, CA 90001" -314583,iPhone,1,700,12/30/19 17:49,"539 14th St, San Francisco, CA 94016" -314584,ThinkPad Laptop,1,999.99,12/21/19 12:13,"34 Hickory St, San Francisco, CA 94016" -314585,Lightning Charging Cable,1,14.95,12/19/19 00:07,"338 Washington St, New York City, NY 10001" -314586,Lightning Charging Cable,1,14.95,12/28/19 18:06,"985 Spruce St, New York City, NY 10001" -314587,34in Ultrawide Monitor,1,379.99,12/01/19 04:06,"746 North St, Dallas, TX 75001" -314588,Apple Airpods Headphones,1,150,12/19/19 20:34,"245 Sunset St, Los Angeles, CA 90001" -314589,Apple Airpods Headphones,1,150,12/16/19 17:39,"61 10th St, Atlanta, GA 30301" -314590,27in FHD Monitor,1,149.99,12/25/19 00:27,"866 Wilson St, New York City, NY 10001" -314591,AA Batteries (4-pack),1,3.84,12/28/19 00:30,"162 Lincoln St, Boston, MA 02215" -314592,20in Monitor,1,109.99,12/27/19 22:01,"636 12th St, Boston, MA 02215" -314593,20in Monitor,1,109.99,12/29/19 23:07,"224 6th St, San Francisco, CA 94016" -314594,Bose SoundSport Headphones,1,99.99,12/15/19 19:31,"919 Forest St, San Francisco, CA 94016" -314595,Macbook Pro Laptop,1,1700,12/12/19 23:35,"430 Center St, Austin, TX 73301" -314596,Google Phone,1,600,12/10/19 08:28,"336 Jackson St, Dallas, TX 75001" -314597,AAA Batteries (4-pack),3,2.99,12/30/19 21:52,"747 Elm St, Los Angeles, CA 90001" -314598,USB-C Charging Cable,1,11.95,12/23/19 11:35,"335 Lakeview St, San Francisco, CA 94016" -314599,Google Phone,1,600,12/03/19 17:48,"30 4th St, New York City, NY 10001" -314600,Bose SoundSport Headphones,1,99.99,12/04/19 22:29,"210 Sunset St, Boston, MA 02215" -314600,Lightning Charging Cable,1,14.95,12/04/19 22:29,"210 Sunset St, Boston, MA 02215" -314601,Wired Headphones,1,11.99,12/04/19 22:39,"602 Jackson St, Los Angeles, CA 90001" -314602,Wired Headphones,1,11.99,12/18/19 03:02,"638 1st St, Seattle, WA 98101" -314603,Lightning Charging Cable,1,14.95,12/27/19 12:46,"127 Maple St, Boston, MA 02215" -314604,USB-C Charging Cable,1,11.95,12/28/19 21:02,"101 10th St, San Francisco, CA 94016" -314605,Bose SoundSport Headphones,1,99.99,12/22/19 16:23,"553 4th St, New York City, NY 10001" -314606,Lightning Charging Cable,1,14.95,12/13/19 22:31,"503 Maple St, Atlanta, GA 30301" -314607,AAA Batteries (4-pack),1,2.99,12/04/19 13:03,"762 Maple St, San Francisco, CA 94016" -314608,Google Phone,1,600,12/05/19 17:48,"672 Main St, New York City, NY 10001" -314608,Wired Headphones,2,11.99,12/05/19 17:48,"672 Main St, New York City, NY 10001" -314609,Apple Airpods Headphones,1,150,12/25/19 15:01,"787 10th St, Boston, MA 02215" -314610,Wired Headphones,1,11.99,12/01/19 15:09,"152 West St, San Francisco, CA 94016" -314611,Google Phone,1,600,12/01/19 16:52,"252 Washington St, Seattle, WA 98101" -314611,USB-C Charging Cable,1,11.95,12/01/19 16:52,"252 Washington St, Seattle, WA 98101" -314612,Lightning Charging Cable,1,14.95,12/29/19 18:50,"62 5th St, New York City, NY 10001" -314613,USB-C Charging Cable,1,11.95,12/13/19 08:13,"331 Meadow St, New York City, NY 10001" -314614,AA Batteries (4-pack),1,3.84,12/02/19 14:47,"20 Lake St, San Francisco, CA 94016" -314614,AA Batteries (4-pack),1,3.84,12/02/19 14:47,"20 Lake St, San Francisco, CA 94016" -314615,AAA Batteries (4-pack),1,2.99,12/26/19 21:43,"620 2nd St, Austin, TX 73301" -314616,Wired Headphones,1,11.99,12/30/19 15:07,"894 Sunset St, Dallas, TX 75001" -314617,USB-C Charging Cable,1,11.95,12/31/19 19:43,"818 Park St, Dallas, TX 75001" -314618,ThinkPad Laptop,1,999.99,12/04/19 09:37,"161 Elm St, Portland, OR 97035" -314619,Google Phone,1,600,12/13/19 14:25,"695 Pine St, Dallas, TX 75001" -314620,Google Phone,1,600,12/11/19 15:03,"849 12th St, Dallas, TX 75001" -314621,USB-C Charging Cable,1,11.95,12/01/19 20:26,"425 Lakeview St, Seattle, WA 98101" -314622,Lightning Charging Cable,1,14.95,12/09/19 13:45,"531 Willow St, Seattle, WA 98101" -314623,Vareebadd Phone,1,400,12/10/19 12:16,"473 Elm St, Dallas, TX 75001" -314624,Bose SoundSport Headphones,1,99.99,12/21/19 11:22,"644 Jackson St, Seattle, WA 98101" -314625,Apple Airpods Headphones,1,150,12/06/19 13:28,"479 7th St, Atlanta, GA 30301" -314626,Apple Airpods Headphones,1,150,12/23/19 13:25,"557 Hickory St, Atlanta, GA 30301" -314627,iPhone,1,700,12/16/19 23:50,"852 Wilson St, San Francisco, CA 94016" -314628,20in Monitor,1,109.99,12/12/19 14:26,"825 North St, Portland, OR 97035" -314629,Lightning Charging Cable,1,14.95,12/20/19 15:24,"51 Lincoln St, San Francisco, CA 94016" -314630,Apple Airpods Headphones,2,150,12/07/19 20:28,"39 Washington St, San Francisco, CA 94016" -314631,27in FHD Monitor,1,149.99,12/04/19 21:19,"539 Elm St, San Francisco, CA 94016" -314632,AA Batteries (4-pack),1,3.84,12/25/19 19:23,"474 13th St, Austin, TX 73301" -314633,AA Batteries (4-pack),1,3.84,12/24/19 13:09,"16 Center St, Austin, TX 73301" -314634,AA Batteries (4-pack),1,3.84,12/11/19 20:27,"201 West St, San Francisco, CA 94016" -314635,AAA Batteries (4-pack),1,2.99,12/02/19 13:30,"260 5th St, Seattle, WA 98101" -314636,USB-C Charging Cable,2,11.95,12/27/19 13:57,"405 Park St, San Francisco, CA 94016" -314637,Flatscreen TV,1,300,12/14/19 16:31,"550 Johnson St, Boston, MA 02215" -314637,AA Batteries (4-pack),3,3.84,12/14/19 16:31,"550 Johnson St, Boston, MA 02215" -314638,Apple Airpods Headphones,1,150,12/18/19 09:55,"468 Ridge St, Boston, MA 02215" -314639,Lightning Charging Cable,1,14.95,12/21/19 17:59,"728 11th St, Boston, MA 02215" -314640,Apple Airpods Headphones,2,150,12/02/19 19:21,"337 Cedar St, Dallas, TX 75001" -314641,Google Phone,1,600,12/09/19 16:48,"71 Main St, Los Angeles, CA 90001" -314642,Bose SoundSport Headphones,1,99.99,12/30/19 11:17,"215 Cherry St, New York City, NY 10001" -314643,AAA Batteries (4-pack),1,2.99,12/05/19 20:27,"568 Lake St, Austin, TX 73301" -314644,USB-C Charging Cable,1,11.95,12/29/19 19:30,"403 Highland St, Atlanta, GA 30301" -314645,Lightning Charging Cable,1,14.95,12/27/19 07:32,"323 Church St, San Francisco, CA 94016" -314646,AA Batteries (4-pack),1,3.84,12/06/19 23:22,"683 11th St, Los Angeles, CA 90001" -314647,34in Ultrawide Monitor,1,379.99,12/01/19 12:23,"991 Sunset St, New York City, NY 10001" -314648,34in Ultrawide Monitor,1,379.99,12/08/19 18:30,"115 Maple St, Dallas, TX 75001" -314649,Wired Headphones,1,11.99,12/01/19 21:51,"743 Spruce St, San Francisco, CA 94016" -314650,Apple Airpods Headphones,1,150,12/20/19 18:05,"166 Main St, Dallas, TX 75001" -314651,34in Ultrawide Monitor,1,379.99,12/15/19 17:21,"514 Sunset St, San Francisco, CA 94016" -314652,AA Batteries (4-pack),1,3.84,12/16/19 23:07,"332 Washington St, Atlanta, GA 30301" -314653,AAA Batteries (4-pack),5,2.99,12/30/19 19:52,"294 Wilson St, San Francisco, CA 94016" -314654,Bose SoundSport Headphones,1,99.99,12/27/19 23:51,"730 Cedar St, New York City, NY 10001" -314655,Lightning Charging Cable,1,14.95,12/27/19 08:59,"264 Church St, Dallas, TX 75001" -314656,Bose SoundSport Headphones,1,99.99,12/26/19 20:55,"991 Park St, San Francisco, CA 94016" -314657,iPhone,1,700,12/10/19 12:54,"946 Meadow St, Los Angeles, CA 90001" -314658,Flatscreen TV,1,300,12/31/19 17:55,"134 Church St, Portland, OR 97035" -314659,AA Batteries (4-pack),1,3.84,12/10/19 18:21,"168 Hill St, Boston, MA 02215" -314660,ThinkPad Laptop,1,999.99,12/17/19 07:16,"126 Meadow St, San Francisco, CA 94016" -314661,iPhone,1,700,12/14/19 18:39,"832 8th St, Atlanta, GA 30301" -314662,27in 4K Gaming Monitor,1,389.99,12/08/19 15:39,"193 Maple St, Atlanta, GA 30301" -314663,AA Batteries (4-pack),2,3.84,12/02/19 07:04,"619 South St, Boston, MA 02215" -314664,Lightning Charging Cable,1,14.95,12/12/19 18:03,"81 14th St, Atlanta, GA 30301" -314665,USB-C Charging Cable,1,11.95,12/06/19 20:30,"590 Elm St, New York City, NY 10001" -314666,20in Monitor,1,109.99,12/14/19 11:56,"816 Cedar St, Los Angeles, CA 90001" -314667,Lightning Charging Cable,1,14.95,12/15/19 00:30,"585 14th St, Los Angeles, CA 90001" -314668,27in FHD Monitor,1,149.99,12/19/19 13:32,"989 11th St, Los Angeles, CA 90001" -314669,AAA Batteries (4-pack),3,2.99,12/27/19 19:01,"61 Washington St, Seattle, WA 98101" -314670,AAA Batteries (4-pack),1,2.99,12/11/19 20:31,"615 Washington St, San Francisco, CA 94016" -314671,AA Batteries (4-pack),1,3.84,12/04/19 00:03,"176 7th St, San Francisco, CA 94016" -314672,Lightning Charging Cable,1,14.95,12/18/19 19:42,"385 Lincoln St, Los Angeles, CA 90001" -314673,Wired Headphones,1,11.99,12/31/19 21:45,"888 Spruce St, Portland, ME 04101" -314674,Bose SoundSport Headphones,1,99.99,12/26/19 12:11,"816 West St, Seattle, WA 98101" -314675,AA Batteries (4-pack),1,3.84,12/26/19 09:01,"927 13th St, San Francisco, CA 94016" -314675,AA Batteries (4-pack),1,3.84,12/26/19 09:01,"927 13th St, San Francisco, CA 94016" -314676,AAA Batteries (4-pack),1,2.99,12/05/19 12:56,"572 12th St, Austin, TX 73301" -,,,,, -314677,Macbook Pro Laptop,1,1700,12/24/19 09:48,"44 Forest St, San Francisco, CA 94016" -,,,,, -314678,AA Batteries (4-pack),1,3.84,12/02/19 22:48,"869 West St, Austin, TX 73301" -314679,27in FHD Monitor,1,149.99,12/10/19 12:10,"190 Park St, Boston, MA 02215" -314680,AAA Batteries (4-pack),1,2.99,12/01/19 15:10,"265 2nd St, Los Angeles, CA 90001" -314681,USB-C Charging Cable,1,11.95,12/22/19 13:25,"698 Wilson St, New York City, NY 10001" -314682,Google Phone,1,600,12/17/19 20:55,"267 13th St, San Francisco, CA 94016" -314682,Wired Headphones,2,11.99,12/17/19 20:55,"267 13th St, San Francisco, CA 94016" -314683,Wired Headphones,1,11.99,12/29/19 09:15,"113 Willow St, Atlanta, GA 30301" -314684,Apple Airpods Headphones,1,150,12/18/19 15:40,"207 Pine St, Seattle, WA 98101" -314685,AAA Batteries (4-pack),1,2.99,12/19/19 19:50,"148 Madison St, Seattle, WA 98101" -314686,Lightning Charging Cable,1,14.95,12/20/19 16:13,"668 Hickory St, Boston, MA 02215" -314687,Bose SoundSport Headphones,1,99.99,12/12/19 22:02,"290 Adams St, Los Angeles, CA 90001" -314688,AAA Batteries (4-pack),1,2.99,12/02/19 22:05,"312 Forest St, Los Angeles, CA 90001" -314689,USB-C Charging Cable,1,11.95,12/06/19 11:55,"354 Wilson St, Portland, OR 97035" -314690,USB-C Charging Cable,1,11.95,12/30/19 16:33,"545 Walnut St, Austin, TX 73301" -314691,Google Phone,1,600,12/06/19 15:32,"390 Cherry St, Seattle, WA 98101" -314692,34in Ultrawide Monitor,1,379.99,12/23/19 14:46,"950 5th St, San Francisco, CA 94016" -314693,ThinkPad Laptop,1,999.99,12/31/19 10:07,"700 Highland St, Portland, OR 97035" -314694,USB-C Charging Cable,1,11.95,12/07/19 13:56,"883 4th St, Los Angeles, CA 90001" -314695,27in 4K Gaming Monitor,1,389.99,12/06/19 05:59,"677 4th St, New York City, NY 10001" -314696,Wired Headphones,1,11.99,12/23/19 07:53,"853 North St, New York City, NY 10001" -314697,Lightning Charging Cable,1,14.95,12/24/19 13:37,"46 Lakeview St, San Francisco, CA 94016" -314698,Flatscreen TV,1,300,12/11/19 20:12,"256 Willow St, New York City, NY 10001" -314699,27in 4K Gaming Monitor,1,389.99,12/22/19 12:40,"384 Adams St, San Francisco, CA 94016" -314700,Bose SoundSport Headphones,1,99.99,12/07/19 16:53,"815 Madison St, San Francisco, CA 94016" -314701,Bose SoundSport Headphones,1,99.99,12/10/19 14:26,"979 Dogwood St, Portland, OR 97035" -314702,Lightning Charging Cable,1,14.95,12/20/19 15:10,"161 Center St, Los Angeles, CA 90001" -314703,AAA Batteries (4-pack),1,2.99,12/05/19 18:58,"43 South St, Portland, OR 97035" -314704,Lightning Charging Cable,1,14.95,12/03/19 10:56,"271 Maple St, Los Angeles, CA 90001" -314705,AAA Batteries (4-pack),1,2.99,12/25/19 16:28,"521 Main St, Boston, MA 02215" -314706,Apple Airpods Headphones,1,150,12/25/19 14:24,"990 Wilson St, Boston, MA 02215" -314707,34in Ultrawide Monitor,1,379.99,12/25/19 09:01,"573 Maple St, New York City, NY 10001" -314708,Apple Airpods Headphones,1,150,12/06/19 18:25,"159 8th St, Dallas, TX 75001" -314709,Apple Airpods Headphones,1,150,12/17/19 18:28,"214 2nd St, Portland, OR 97035" -314710,Bose SoundSport Headphones,1,99.99,12/10/19 09:46,"739 14th St, Los Angeles, CA 90001" -314710,AA Batteries (4-pack),2,3.84,12/10/19 09:46,"739 14th St, Los Angeles, CA 90001" -314711,Vareebadd Phone,1,400,12/26/19 13:22,"824 Lake St, San Francisco, CA 94016" -314712,Apple Airpods Headphones,1,150,12/28/19 14:43,"524 Wilson St, Seattle, WA 98101" -314713,Wired Headphones,1,11.99,12/08/19 14:30,"377 7th St, New York City, NY 10001" -314714,Bose SoundSport Headphones,1,99.99,12/02/19 14:24,"432 9th St, Los Angeles, CA 90001" -314715,Wired Headphones,1,11.99,12/11/19 21:12,"684 7th St, Atlanta, GA 30301" -314715,Google Phone,1,600,12/11/19 21:12,"684 7th St, Atlanta, GA 30301" -314716,AA Batteries (4-pack),1,3.84,12/21/19 13:00,"714 1st St, San Francisco, CA 94016" -314717,AA Batteries (4-pack),1,3.84,12/10/19 05:30,"78 7th St, San Francisco, CA 94016" -314718,USB-C Charging Cable,1,11.95,12/02/19 16:10,"781 Willow St, San Francisco, CA 94016" -314719,Apple Airpods Headphones,1,150,12/10/19 12:33,"875 Willow St, Portland, OR 97035" -314720,Lightning Charging Cable,1,14.95,12/18/19 21:04,"206 Maple St, Atlanta, GA 30301" -314721,USB-C Charging Cable,1,11.95,12/08/19 21:10,"941 River St, Atlanta, GA 30301" -314722,Lightning Charging Cable,1,14.95,12/31/19 16:58,"800 Main St, New York City, NY 10001" -314723,AAA Batteries (4-pack),2,2.99,12/09/19 16:02,"36 Spruce St, Austin, TX 73301" -314724,Flatscreen TV,2,300,12/25/19 09:50,"482 Dogwood St, San Francisco, CA 94016" -314725,USB-C Charging Cable,1,11.95,12/26/19 11:09,"407 Lincoln St, Los Angeles, CA 90001" -314726,iPhone,1,700,12/23/19 21:08,"174 Madison St, Austin, TX 73301" -314727,Apple Airpods Headphones,1,150,12/18/19 21:54,"683 Walnut St, New York City, NY 10001" -314728,USB-C Charging Cable,1,11.95,12/01/19 12:11,"269 Madison St, Seattle, WA 98101" -314729,Wired Headphones,1,11.99,12/31/19 18:36,"581 Elm St, Los Angeles, CA 90001" -314730,Vareebadd Phone,1,400,12/30/19 19:09,"476 Washington St, Dallas, TX 75001" -314731,Bose SoundSport Headphones,1,99.99,12/10/19 20:45,"698 Adams St, Dallas, TX 75001" -314732,USB-C Charging Cable,1,11.95,12/17/19 01:16,"743 11th St, Dallas, TX 75001" -314733,AAA Batteries (4-pack),1,2.99,12/09/19 23:43,"344 Meadow St, New York City, NY 10001" -314734,AAA Batteries (4-pack),6,2.99,12/30/19 13:50,"597 Maple St, Los Angeles, CA 90001" -314735,Bose SoundSport Headphones,1,99.99,12/14/19 11:13,"576 5th St, San Francisco, CA 94016" -314736,Google Phone,1,600,12/03/19 17:27,"615 9th St, New York City, NY 10001" -314737,Wired Headphones,1,11.99,12/19/19 20:29,"148 Forest St, San Francisco, CA 94016" -314738,Lightning Charging Cable,1,14.95,12/09/19 21:19,"450 Maple St, San Francisco, CA 94016" -314739,Flatscreen TV,1,300,12/19/19 17:32,"524 Sunset St, San Francisco, CA 94016" -314740,USB-C Charging Cable,1,11.95,12/21/19 15:27,"448 Washington St, Los Angeles, CA 90001" -314741,34in Ultrawide Monitor,1,379.99,12/10/19 21:15,"961 2nd St, Portland, OR 97035" -314742,27in 4K Gaming Monitor,1,389.99,12/05/19 07:27,"420 Madison St, Dallas, TX 75001" -314743,Wired Headphones,1,11.99,12/04/19 11:05,"345 6th St, Dallas, TX 75001" -314744,27in FHD Monitor,1,149.99,12/26/19 16:42,"891 Meadow St, Atlanta, GA 30301" -314745,AA Batteries (4-pack),1,3.84,12/22/19 17:36,"990 Highland St, Boston, MA 02215" -314746,20in Monitor,1,109.99,12/20/19 01:03,"24 13th St, San Francisco, CA 94016" -314747,Lightning Charging Cable,1,14.95,12/27/19 13:56,"65 6th St, Los Angeles, CA 90001" -314747,AA Batteries (4-pack),1,3.84,12/27/19 13:56,"65 6th St, Los Angeles, CA 90001" -314748,AAA Batteries (4-pack),1,2.99,12/18/19 15:07,"374 8th St, San Francisco, CA 94016" -314749,AA Batteries (4-pack),2,3.84,12/15/19 22:03,"286 Church St, Los Angeles, CA 90001" -314750,Wired Headphones,2,11.99,12/15/19 18:24,"506 Cherry St, Los Angeles, CA 90001" -314751,Apple Airpods Headphones,1,150,12/17/19 06:51,"800 8th St, San Francisco, CA 94016" -314752,Apple Airpods Headphones,1,150,12/18/19 12:27,"535 5th St, Austin, TX 73301" -314753,Bose SoundSport Headphones,1,99.99,12/09/19 10:41,"946 Lincoln St, New York City, NY 10001" -314754,LG Dryer,1,600.0,12/10/19 12:50,"605 Lake St, Los Angeles, CA 90001" -314755,AAA Batteries (4-pack),2,2.99,12/15/19 11:46,"262 River St, San Francisco, CA 94016" -314756,USB-C Charging Cable,1,11.95,12/08/19 01:12,"793 9th St, San Francisco, CA 94016" -314757,Apple Airpods Headphones,1,150,12/13/19 22:14,"107 Lakeview St, Los Angeles, CA 90001" -314757,USB-C Charging Cable,1,11.95,12/13/19 22:14,"107 Lakeview St, Los Angeles, CA 90001" -314758,27in 4K Gaming Monitor,1,389.99,12/02/19 14:31,"512 13th St, Los Angeles, CA 90001" -314759,Bose SoundSport Headphones,1,99.99,12/18/19 21:47,"383 Jackson St, San Francisco, CA 94016" -314760,Wired Headphones,1,11.99,12/26/19 12:25,"379 Willow St, San Francisco, CA 94016" -314761,AAA Batteries (4-pack),1,2.99,12/13/19 13:30,"990 13th St, Austin, TX 73301" -314762,USB-C Charging Cable,1,11.95,12/18/19 15:00,"325 Jefferson St, San Francisco, CA 94016" -314763,USB-C Charging Cable,1,11.95,12/13/19 07:13,"353 1st St, Los Angeles, CA 90001" -314764,Lightning Charging Cable,1,14.95,12/15/19 21:25,"993 Washington St, San Francisco, CA 94016" -314765,Bose SoundSport Headphones,1,99.99,12/10/19 21:11,"695 Wilson St, Los Angeles, CA 90001" -314766,Lightning Charging Cable,1,14.95,12/26/19 19:01,"44 14th St, New York City, NY 10001" -314767,Wired Headphones,1,11.99,12/22/19 13:08,"414 West St, New York City, NY 10001" -314768,Flatscreen TV,1,300,12/16/19 11:19,"986 Dogwood St, San Francisco, CA 94016" -314769,iPhone,1,700,12/08/19 22:02,"939 8th St, Seattle, WA 98101" -314770,iPhone,1,700,12/09/19 22:58,"984 Chestnut St, Los Angeles, CA 90001" -314771,USB-C Charging Cable,2,11.95,12/14/19 11:46,"423 Forest St, Seattle, WA 98101" -314772,Bose SoundSport Headphones,1,99.99,12/06/19 22:41,"447 Adams St, Los Angeles, CA 90001" -314773,27in FHD Monitor,1,149.99,12/09/19 12:10,"207 Center St, Los Angeles, CA 90001" -314774,Apple Airpods Headphones,1,150,12/30/19 22:52,"251 Madison St, San Francisco, CA 94016" -314775,Vareebadd Phone,1,400,12/10/19 17:10,"770 4th St, Los Angeles, CA 90001" -314776,Macbook Pro Laptop,1,1700,12/06/19 17:44,"248 8th St, Seattle, WA 98101" -314777,Lightning Charging Cable,1,14.95,12/12/19 21:39,"30 Park St, Los Angeles, CA 90001" -314778,iPhone,1,700,12/18/19 10:58,"268 Chestnut St, Portland, OR 97035" -314778,Apple Airpods Headphones,1,150,12/18/19 10:58,"268 Chestnut St, Portland, OR 97035" -314779,Google Phone,1,600,12/29/19 12:12,"287 9th St, Portland, OR 97035" -314780,USB-C Charging Cable,2,11.95,12/31/19 18:10,"862 Sunset St, New York City, NY 10001" -314781,Macbook Pro Laptop,1,1700,12/21/19 14:11,"685 1st St, Boston, MA 02215" -314782,27in 4K Gaming Monitor,1,389.99,12/19/19 11:04,"919 Maple St, Seattle, WA 98101" -314783,USB-C Charging Cable,1,11.95,12/25/19 22:21,"5 12th St, Portland, ME 04101" -314784,27in FHD Monitor,1,149.99,12/31/19 12:22,"253 7th St, San Francisco, CA 94016" -314785,AA Batteries (4-pack),1,3.84,12/31/19 14:37,"213 10th St, Dallas, TX 75001" -314786,27in 4K Gaming Monitor,1,389.99,12/17/19 09:37,"198 6th St, Boston, MA 02215" -314787,AA Batteries (4-pack),1,3.84,12/31/19 07:03,"739 West St, Los Angeles, CA 90001" -314788,Macbook Pro Laptop,1,1700,12/07/19 09:32,"490 12th St, New York City, NY 10001" -314789,USB-C Charging Cable,1,11.95,12/03/19 09:38,"602 Chestnut St, Los Angeles, CA 90001" -314790,Apple Airpods Headphones,1,150,12/02/19 15:39,"896 1st St, San Francisco, CA 94016" -314791,Google Phone,1,600,12/28/19 11:51,"787 2nd St, San Francisco, CA 94016" -314792,AA Batteries (4-pack),1,3.84,12/05/19 21:54,"615 11th St, Portland, OR 97035" -314793,27in 4K Gaming Monitor,1,389.99,12/08/19 12:11,"424 Hickory St, Los Angeles, CA 90001" -314794,Lightning Charging Cable,1,14.95,12/28/19 15:40,"408 Wilson St, Boston, MA 02215" -314795,USB-C Charging Cable,1,11.95,12/01/19 08:56,"105 9th St, Atlanta, GA 30301" -314796,Bose SoundSport Headphones,1,99.99,12/07/19 13:14,"612 Center St, New York City, NY 10001" -314797,Apple Airpods Headphones,1,150,12/01/19 17:28,"608 Dogwood St, San Francisco, CA 94016" -314798,AAA Batteries (4-pack),1,2.99,12/10/19 19:28,"125 Church St, Boston, MA 02215" -314799,Lightning Charging Cable,1,14.95,12/20/19 19:26,"619 Washington St, San Francisco, CA 94016" -314800,USB-C Charging Cable,1,11.95,12/15/19 17:40,"200 Lake St, San Francisco, CA 94016" -314801,Apple Airpods Headphones,1,150,12/23/19 14:49,"792 Washington St, Atlanta, GA 30301" -314802,Wired Headphones,2,11.99,12/15/19 07:29,"526 5th St, Portland, OR 97035" -314803,AAA Batteries (4-pack),3,2.99,12/28/19 19:00,"253 14th St, Seattle, WA 98101" -314804,Wired Headphones,1,11.99,12/12/19 10:58,"29 Jefferson St, Austin, TX 73301" -314805,27in FHD Monitor,1,149.99,12/22/19 12:53,"526 7th St, Los Angeles, CA 90001" -314806,Bose SoundSport Headphones,1,99.99,12/19/19 15:20,"855 8th St, Portland, OR 97035" -314807,USB-C Charging Cable,1,11.95,12/01/19 12:11,"350 Johnson St, San Francisco, CA 94016" -314808,ThinkPad Laptop,1,999.99,12/08/19 11:19,"110 7th St, Dallas, TX 75001" -314809,Lightning Charging Cable,1,14.95,12/03/19 16:46,"381 Lake St, Dallas, TX 75001" -314809,AA Batteries (4-pack),1,3.84,12/03/19 16:46,"381 Lake St, Dallas, TX 75001" -314810,Lightning Charging Cable,1,14.95,12/10/19 17:14,"676 2nd St, Boston, MA 02215" -314811,34in Ultrawide Monitor,1,379.99,12/04/19 07:30,"591 7th St, Los Angeles, CA 90001" -314812,Wired Headphones,1,11.99,12/11/19 14:50,"825 Sunset St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -314813,Apple Airpods Headphones,1,150,12/20/19 18:55,"621 2nd St, Dallas, TX 75001" -314814,Macbook Pro Laptop,1,1700,12/26/19 08:47,"196 Elm St, New York City, NY 10001" -314815,USB-C Charging Cable,1,11.95,12/20/19 13:02,"141 Church St, Los Angeles, CA 90001" -314816,Wired Headphones,1,11.99,12/14/19 12:43,"902 Center St, New York City, NY 10001" -314817,AA Batteries (4-pack),1,3.84,12/13/19 15:06,"620 Washington St, New York City, NY 10001" -314818,Lightning Charging Cable,1,14.95,12/03/19 00:44,"909 12th St, Portland, OR 97035" -314819,Apple Airpods Headphones,1,150,12/26/19 11:31,"827 6th St, New York City, NY 10001" -314820,Lightning Charging Cable,1,14.95,12/13/19 10:40,"535 Lincoln St, New York City, NY 10001" -314821,Lightning Charging Cable,1,14.95,12/11/19 14:47,"891 Maple St, New York City, NY 10001" -314822,AAA Batteries (4-pack),1,2.99,12/07/19 15:48,"495 12th St, Austin, TX 73301" -314823,USB-C Charging Cable,1,11.95,12/11/19 17:54,"450 Spruce St, San Francisco, CA 94016" -314824,Google Phone,1,600,12/28/19 16:01,"525 Elm St, New York City, NY 10001" -314825,34in Ultrawide Monitor,1,379.99,12/11/19 11:45,"335 13th St, Dallas, TX 75001" -314826,Wired Headphones,1,11.99,12/23/19 12:08,"472 Adams St, San Francisco, CA 94016" -314827,Bose SoundSport Headphones,1,99.99,12/22/19 14:10,"389 13th St, New York City, NY 10001" -314828,Macbook Pro Laptop,1,1700,12/15/19 23:11,"498 Main St, Portland, OR 97035" -314829,Wired Headphones,1,11.99,12/10/19 16:08,"579 Chestnut St, Seattle, WA 98101" -314830,AAA Batteries (4-pack),1,2.99,12/28/19 22:20,"506 Hickory St, Los Angeles, CA 90001" -314831,Flatscreen TV,1,300,12/23/19 12:36,"782 Center St, Boston, MA 02215" -314832,AA Batteries (4-pack),1,3.84,12/12/19 18:58,"794 Jefferson St, Seattle, WA 98101" -314833,Google Phone,1,600,12/16/19 20:06,"865 Church St, Seattle, WA 98101" -314834,AAA Batteries (4-pack),1,2.99,12/13/19 16:56,"564 South St, San Francisco, CA 94016" -314835,USB-C Charging Cable,1,11.95,12/29/19 14:17,"802 Lake St, Atlanta, GA 30301" -314836,Wired Headphones,2,11.99,12/17/19 09:03,"347 Walnut St, Dallas, TX 75001" -314837,Macbook Pro Laptop,1,1700,12/30/19 20:29,"928 Center St, Los Angeles, CA 90001" -314838,Apple Airpods Headphones,1,150,12/14/19 02:20,"595 Washington St, Los Angeles, CA 90001" -314839,Lightning Charging Cable,1,14.95,12/16/19 21:48,"965 Walnut St, Dallas, TX 75001" -314840,Wired Headphones,1,11.99,12/16/19 21:19,"97 North St, San Francisco, CA 94016" -314841,Bose SoundSport Headphones,1,99.99,12/02/19 11:15,"42 9th St, Portland, OR 97035" -314842,Bose SoundSport Headphones,1,99.99,12/18/19 18:49,"459 1st St, Los Angeles, CA 90001" -314843,ThinkPad Laptop,1,999.99,12/05/19 16:59,"114 River St, New York City, NY 10001" -314844,Lightning Charging Cable,1,14.95,12/21/19 10:05,"239 Johnson St, New York City, NY 10001" -314845,iPhone,1,700,12/10/19 16:05,"155 Johnson St, Boston, MA 02215" -314846,AAA Batteries (4-pack),1,2.99,12/17/19 20:56,"548 Adams St, New York City, NY 10001" -314847,AA Batteries (4-pack),2,3.84,12/10/19 18:46,"191 2nd St, Seattle, WA 98101" -314848,ThinkPad Laptop,1,999.99,12/25/19 14:33,"679 Lincoln St, Austin, TX 73301" -314849,Lightning Charging Cable,1,14.95,12/20/19 15:08,"345 12th St, Austin, TX 73301" -314850,Apple Airpods Headphones,1,150,12/28/19 14:07,"910 5th St, Austin, TX 73301" -314851,AA Batteries (4-pack),1,3.84,12/14/19 19:52,"559 Wilson St, Portland, OR 97035" -314852,27in FHD Monitor,1,149.99,12/03/19 19:03,"943 Center St, Los Angeles, CA 90001" -314853,AA Batteries (4-pack),1,3.84,12/22/19 10:44,"489 Center St, Austin, TX 73301" -314854,Lightning Charging Cable,1,14.95,12/12/19 22:26,"163 Wilson St, New York City, NY 10001" -314855,USB-C Charging Cable,1,11.95,12/26/19 14:31,"488 Adams St, Seattle, WA 98101" -314856,Bose SoundSport Headphones,1,99.99,12/11/19 08:25,"996 Walnut St, Los Angeles, CA 90001" -314857,Wired Headphones,1,11.99,12/10/19 20:40,"53 Ridge St, San Francisco, CA 94016" -314858,Apple Airpods Headphones,1,150,12/31/19 10:44,"822 Elm St, New York City, NY 10001" -314859,AA Batteries (4-pack),4,3.84,12/20/19 11:16,"760 Park St, New York City, NY 10001" -314860,Lightning Charging Cable,1,14.95,12/21/19 14:51,"412 Pine St, Seattle, WA 98101" -314861,27in FHD Monitor,1,149.99,12/11/19 23:08,"767 Chestnut St, Austin, TX 73301" -314862,Lightning Charging Cable,1,14.95,12/11/19 14:04,"496 Washington St, Atlanta, GA 30301" -314863,Flatscreen TV,1,300,12/12/19 14:43,"255 Lakeview St, Austin, TX 73301" -314864,Bose SoundSport Headphones,1,99.99,12/19/19 06:42,"101 Dogwood St, Austin, TX 73301" -314865,27in FHD Monitor,1,149.99,12/05/19 15:07,"991 Sunset St, New York City, NY 10001" -314866,AAA Batteries (4-pack),1,2.99,12/28/19 18:16,"748 4th St, New York City, NY 10001" -314867,Bose SoundSport Headphones,1,99.99,12/30/19 12:46,"551 5th St, Los Angeles, CA 90001" -314868,Bose SoundSport Headphones,1,99.99,12/14/19 08:28,"925 14th St, New York City, NY 10001" -314869,Lightning Charging Cable,1,14.95,12/17/19 20:00,"3 Hill St, Austin, TX 73301" -314870,Bose SoundSport Headphones,1,99.99,12/28/19 11:06,"339 13th St, Atlanta, GA 30301" -314871,Macbook Pro Laptop,1,1700,12/25/19 15:46,"184 Madison St, San Francisco, CA 94016" -314872,USB-C Charging Cable,1,11.95,12/30/19 08:02,"876 Adams St, San Francisco, CA 94016" -314873,AAA Batteries (4-pack),3,2.99,12/07/19 18:12,"84 Washington St, San Francisco, CA 94016" -314874,AA Batteries (4-pack),1,3.84,12/19/19 18:55,"270 North St, Dallas, TX 75001" -314875,Lightning Charging Cable,1,14.95,12/13/19 14:41,"87 Washington St, Dallas, TX 75001" -314876,Wired Headphones,2,11.99,12/13/19 10:10,"426 8th St, San Francisco, CA 94016" -314877,20in Monitor,1,109.99,12/04/19 08:29,"983 Wilson St, San Francisco, CA 94016" -314878,Wired Headphones,1,11.99,12/15/19 13:21,"103 Lincoln St, Dallas, TX 75001" -314879,Apple Airpods Headphones,1,150,12/29/19 11:51,"359 Lake St, Atlanta, GA 30301" -314880,34in Ultrawide Monitor,1,379.99,12/16/19 10:02,"504 Lakeview St, New York City, NY 10001" -314881,34in Ultrawide Monitor,1,379.99,12/19/19 05:58,"398 8th St, Austin, TX 73301" -314882,Bose SoundSport Headphones,1,99.99,12/30/19 00:17,"729 5th St, New York City, NY 10001" -314883,Wired Headphones,1,11.99,12/18/19 22:11,"988 Lakeview St, San Francisco, CA 94016" -314884,USB-C Charging Cable,1,11.95,12/18/19 07:19,"550 5th St, Dallas, TX 75001" -314885,Google Phone,1,600,12/19/19 10:11,"783 13th St, San Francisco, CA 94016" -314885,USB-C Charging Cable,1,11.95,12/19/19 10:11,"783 13th St, San Francisco, CA 94016" -314886,AA Batteries (4-pack),2,3.84,12/22/19 23:34,"964 Maple St, Boston, MA 02215" -314887,Google Phone,1,600,12/16/19 02:54,"341 Jefferson St, Seattle, WA 98101" -314888,Apple Airpods Headphones,1,150,12/26/19 22:50,"570 Maple St, Atlanta, GA 30301" -314889,AA Batteries (4-pack),1,3.84,12/16/19 15:29,"699 Dogwood St, Atlanta, GA 30301" -314890,Lightning Charging Cable,1,14.95,12/17/19 11:34,"765 Meadow St, New York City, NY 10001" -314891,USB-C Charging Cable,2,11.95,12/03/19 23:35,"419 1st St, Dallas, TX 75001" -314892,27in 4K Gaming Monitor,1,389.99,12/29/19 08:58,"267 9th St, San Francisco, CA 94016" -314893,USB-C Charging Cable,1,11.95,12/03/19 10:17,"654 Hill St, Atlanta, GA 30301" -314894,USB-C Charging Cable,1,11.95,12/08/19 21:15,"880 River St, Los Angeles, CA 90001" -314895,Lightning Charging Cable,1,14.95,12/21/19 18:41,"68 Church St, Dallas, TX 75001" -314896,Lightning Charging Cable,1,14.95,12/03/19 12:14,"362 Elm St, Boston, MA 02215" -314897,34in Ultrawide Monitor,1,379.99,12/01/19 09:31,"750 Main St, Atlanta, GA 30301" -314898,ThinkPad Laptop,1,999.99,12/07/19 20:06,"948 Meadow St, New York City, NY 10001" -314899,Wired Headphones,1,11.99,12/13/19 15:15,"697 Spruce St, New York City, NY 10001" -314900,Apple Airpods Headphones,1,150,12/20/19 00:17,"859 Cherry St, San Francisco, CA 94016" -314901,Lightning Charging Cable,1,14.95,12/10/19 08:01,"993 8th St, Portland, OR 97035" -314902,27in 4K Gaming Monitor,1,389.99,12/19/19 19:50,"703 5th St, Boston, MA 02215" -314903,AA Batteries (4-pack),1,3.84,12/26/19 21:56,"808 Meadow St, Los Angeles, CA 90001" -,,,,, -314904,Macbook Pro Laptop,1,1700,12/01/19 15:00,"881 Lincoln St, New York City, NY 10001" -314905,Vareebadd Phone,1,400,12/23/19 10:43,"916 Sunset St, San Francisco, CA 94016" -314906,AAA Batteries (4-pack),2,2.99,12/10/19 15:25,"852 Lakeview St, New York City, NY 10001" -314907,Bose SoundSport Headphones,1,99.99,12/05/19 22:06,"249 5th St, San Francisco, CA 94016" -314907,34in Ultrawide Monitor,1,379.99,12/05/19 22:06,"249 5th St, San Francisco, CA 94016" -314908,USB-C Charging Cable,1,11.95,12/16/19 05:40,"272 Spruce St, Los Angeles, CA 90001" -314909,USB-C Charging Cable,1,11.95,12/19/19 19:28,"226 Jefferson St, New York City, NY 10001" -314910,Wired Headphones,1,11.99,12/23/19 12:11,"34 8th St, Dallas, TX 75001" -314911,USB-C Charging Cable,2,11.95,12/12/19 17:27,"354 River St, Atlanta, GA 30301" -314912,AAA Batteries (4-pack),1,2.99,12/02/19 09:53,"629 14th St, Dallas, TX 75001" -314913,20in Monitor,1,109.99,12/15/19 20:30,"380 Center St, Boston, MA 02215" -314914,USB-C Charging Cable,1,11.95,12/31/19 20:41,"700 14th St, San Francisco, CA 94016" -314915,Lightning Charging Cable,2,14.95,12/30/19 13:34,"598 Meadow St, Atlanta, GA 30301" -314916,Apple Airpods Headphones,1,150,12/29/19 22:37,"651 Johnson St, Boston, MA 02215" -314917,Google Phone,1,600,12/06/19 13:01,"882 Lake St, San Francisco, CA 94016" -314918,USB-C Charging Cable,1,11.95,12/22/19 06:34,"348 Main St, San Francisco, CA 94016" -314919,USB-C Charging Cable,2,11.95,12/20/19 19:55,"95 Willow St, New York City, NY 10001" -314920,USB-C Charging Cable,1,11.95,12/25/19 15:14,"434 Highland St, San Francisco, CA 94016" -314921,Lightning Charging Cable,1,14.95,12/25/19 18:18,"277 Madison St, San Francisco, CA 94016" -314922,USB-C Charging Cable,1,11.95,12/29/19 08:53,"890 4th St, Seattle, WA 98101" -314923,USB-C Charging Cable,1,11.95,12/16/19 22:41,"183 Cherry St, Los Angeles, CA 90001" -314924,Wired Headphones,1,11.99,12/04/19 11:26,"735 Walnut St, Dallas, TX 75001" -314925,AAA Batteries (4-pack),1,2.99,12/19/19 00:31,"188 West St, Boston, MA 02215" -314926,34in Ultrawide Monitor,1,379.99,12/20/19 12:29,"105 Highland St, San Francisco, CA 94016" -314927,Wired Headphones,1,11.99,12/03/19 19:43,"917 4th St, Portland, OR 97035" -314928,USB-C Charging Cable,1,11.95,12/01/19 16:35,"989 Hickory St, San Francisco, CA 94016" -314929,Bose SoundSport Headphones,1,99.99,12/02/19 12:18,"96 6th St, Boston, MA 02215" -314930,AA Batteries (4-pack),2,3.84,12/07/19 00:04,"526 Elm St, Dallas, TX 75001" -314931,AAA Batteries (4-pack),1,2.99,12/08/19 16:03,"158 Forest St, San Francisco, CA 94016" -314932,Apple Airpods Headphones,1,150,12/25/19 06:41,"501 Willow St, Boston, MA 02215" -314933,Apple Airpods Headphones,1,150,12/19/19 15:57,"488 Lincoln St, Atlanta, GA 30301" -314934,AA Batteries (4-pack),1,3.84,12/17/19 20:42,"832 Pine St, Austin, TX 73301" -314935,Wired Headphones,1,11.99,12/31/19 13:28,"922 Forest St, Los Angeles, CA 90001" -314936,Wired Headphones,1,11.99,12/16/19 16:00,"206 14th St, Boston, MA 02215" -314937,USB-C Charging Cable,1,11.95,12/31/19 10:30,"558 Meadow St, Los Angeles, CA 90001" -314938,USB-C Charging Cable,1,11.95,12/17/19 22:59,"185 Lake St, New York City, NY 10001" -314939,AAA Batteries (4-pack),1,2.99,12/11/19 17:23,"881 Jackson St, Boston, MA 02215" -,,,,, -314940,iPhone,1,700,12/23/19 06:52,"38 6th St, Los Angeles, CA 90001" -314940,Apple Airpods Headphones,1,150,12/23/19 06:52,"38 6th St, Los Angeles, CA 90001" -314941,LG Washing Machine,1,600.0,12/19/19 16:49,"596 10th St, Boston, MA 02215" -314942,20in Monitor,1,109.99,12/13/19 08:11,"699 Walnut St, San Francisco, CA 94016" -314943,Apple Airpods Headphones,1,150,12/04/19 21:06,"246 Forest St, Dallas, TX 75001" -314944,Bose SoundSport Headphones,1,99.99,12/03/19 00:48,"480 River St, Austin, TX 73301" -314945,iPhone,1,700,12/22/19 07:52,"852 Willow St, San Francisco, CA 94016" -314946,34in Ultrawide Monitor,1,379.99,12/08/19 20:21,"136 South St, Los Angeles, CA 90001" -314947,AAA Batteries (4-pack),2,2.99,12/21/19 12:05,"474 Elm St, Los Angeles, CA 90001" -314948,AA Batteries (4-pack),1,3.84,12/17/19 18:34,"937 Lincoln St, San Francisco, CA 94016" -314949,Apple Airpods Headphones,2,150,12/11/19 22:41,"516 4th St, San Francisco, CA 94016" -314950,Apple Airpods Headphones,1,150,12/21/19 15:28,"165 11th St, New York City, NY 10001" -314951,Wired Headphones,1,11.99,12/03/19 19:30,"574 Johnson St, Boston, MA 02215" -314952,Google Phone,1,600,12/26/19 13:13,"463 Sunset St, Boston, MA 02215" -314953,AAA Batteries (4-pack),1,2.99,12/11/19 18:18,"315 Center St, Seattle, WA 98101" -314954,AAA Batteries (4-pack),2,2.99,12/05/19 20:19,"316 Wilson St, San Francisco, CA 94016" -314955,AAA Batteries (4-pack),1,2.99,12/15/19 21:16,"21 Johnson St, New York City, NY 10001" -314956,Bose SoundSport Headphones,1,99.99,12/30/19 10:39,"951 Hickory St, New York City, NY 10001" -314957,Wired Headphones,1,11.99,12/04/19 22:42,"452 Center St, Atlanta, GA 30301" -314958,AA Batteries (4-pack),2,3.84,12/10/19 23:14,"383 Ridge St, San Francisco, CA 94016" -314959,USB-C Charging Cable,1,11.95,12/02/19 09:36,"164 Jackson St, San Francisco, CA 94016" -314960,Lightning Charging Cable,1,14.95,12/29/19 09:02,"228 9th St, Los Angeles, CA 90001" -314961,USB-C Charging Cable,1,11.95,12/28/19 23:50,"647 Jackson St, San Francisco, CA 94016" -314962,20in Monitor,1,109.99,12/12/19 15:40,"830 Ridge St, San Francisco, CA 94016" -314963,AA Batteries (4-pack),1,3.84,12/22/19 17:02,"241 12th St, San Francisco, CA 94016" -314964,AA Batteries (4-pack),1,3.84,12/19/19 19:35,"561 Dogwood St, Los Angeles, CA 90001" -314965,Lightning Charging Cable,1,14.95,12/27/19 15:24,"91 Washington St, Los Angeles, CA 90001" -314966,Google Phone,1,600,12/14/19 15:37,"321 Highland St, Los Angeles, CA 90001" -314967,27in 4K Gaming Monitor,1,389.99,12/13/19 01:33,"764 Hill St, Boston, MA 02215" -314968,USB-C Charging Cable,1,11.95,12/30/19 13:57,"301 1st St, San Francisco, CA 94016" -314969,AAA Batteries (4-pack),1,2.99,12/09/19 23:22,"67 Wilson St, San Francisco, CA 94016" -314970,Wired Headphones,1,11.99,12/26/19 13:01,"359 Main St, Portland, ME 04101" -314971,AA Batteries (4-pack),1,3.84,12/22/19 16:10,"224 Ridge St, Los Angeles, CA 90001" -314972,AA Batteries (4-pack),3,3.84,12/15/19 10:45,"116 Maple St, Austin, TX 73301" -314973,34in Ultrawide Monitor,1,379.99,12/16/19 20:54,"905 Wilson St, San Francisco, CA 94016" -314974,AAA Batteries (4-pack),2,2.99,12/05/19 19:21,"568 Spruce St, San Francisco, CA 94016" -314975,ThinkPad Laptop,1,999.99,12/06/19 10:26,"746 11th St, Atlanta, GA 30301" -314976,Wired Headphones,2,11.99,12/10/19 13:59,"772 Wilson St, Austin, TX 73301" -314977,AAA Batteries (4-pack),1,2.99,12/08/19 21:22,"372 Meadow St, San Francisco, CA 94016" -314978,AAA Batteries (4-pack),4,2.99,12/15/19 20:52,"619 9th St, Portland, OR 97035" -314979,Lightning Charging Cable,1,14.95,12/17/19 09:08,"266 Lincoln St, Portland, OR 97035" -314980,Bose SoundSport Headphones,1,99.99,12/01/19 16:38,"808 Ridge St, Atlanta, GA 30301" -314981,27in FHD Monitor,1,149.99,12/31/19 20:09,"199 Forest St, Dallas, TX 75001" -314982,AA Batteries (4-pack),2,3.84,12/31/19 17:53,"938 Walnut St, New York City, NY 10001" -314983,Wired Headphones,1,11.99,12/06/19 13:47,"849 Madison St, Boston, MA 02215" -314984,Bose SoundSport Headphones,1,99.99,12/18/19 18:41,"447 4th St, Los Angeles, CA 90001" -314985,Wired Headphones,1,11.99,12/29/19 15:35,"678 13th St, Los Angeles, CA 90001" -314986,27in 4K Gaming Monitor,1,389.99,12/14/19 09:37,"527 Pine St, Dallas, TX 75001" -314987,34in Ultrawide Monitor,1,379.99,12/18/19 22:29,"559 Main St, San Francisco, CA 94016" -314988,iPhone,1,700,12/05/19 12:32,"461 13th St, Boston, MA 02215" -314989,Bose SoundSport Headphones,1,99.99,12/26/19 04:36,"384 1st St, San Francisco, CA 94016" -314990,AAA Batteries (4-pack),1,2.99,12/25/19 13:09,"961 Elm St, Los Angeles, CA 90001" -314991,Apple Airpods Headphones,1,150,12/22/19 16:28,"178 North St, New York City, NY 10001" -314992,USB-C Charging Cable,1,11.95,12/23/19 17:07,"5 Hickory St, Atlanta, GA 30301" -314993,Apple Airpods Headphones,1,150,12/03/19 20:26,"452 1st St, Dallas, TX 75001" -314994,AA Batteries (4-pack),1,3.84,12/19/19 12:37,"222 Park St, Boston, MA 02215" -314995,USB-C Charging Cable,1,11.95,12/13/19 02:00,"187 2nd St, San Francisco, CA 94016" -314996,Lightning Charging Cable,1,14.95,12/16/19 21:55,"133 Spruce St, Dallas, TX 75001" -314997,ThinkPad Laptop,1,999.99,12/15/19 09:07,"224 4th St, New York City, NY 10001" -314998,Bose SoundSport Headphones,1,99.99,12/22/19 11:25,"419 Jefferson St, Los Angeles, CA 90001" -314999,27in 4K Gaming Monitor,1,389.99,12/01/19 13:46,"457 11th St, San Francisco, CA 94016" -315000,Lightning Charging Cable,1,14.95,12/08/19 21:28,"732 1st St, Dallas, TX 75001" -315001,AA Batteries (4-pack),2,3.84,12/15/19 12:30,"215 Ridge St, Seattle, WA 98101" -315002,USB-C Charging Cable,1,11.95,12/09/19 21:36,"68 Hill St, Los Angeles, CA 90001" -315003,Wired Headphones,1,11.99,12/31/19 16:37,"243 10th St, Atlanta, GA 30301" -315004,Lightning Charging Cable,1,14.95,12/17/19 12:10,"440 Wilson St, Austin, TX 73301" -315005,USB-C Charging Cable,1,11.95,12/09/19 20:30,"388 Cherry St, Austin, TX 73301" -315006,USB-C Charging Cable,1,11.95,12/21/19 16:16,"518 Park St, San Francisco, CA 94016" -315007,34in Ultrawide Monitor,1,379.99,12/04/19 09:22,"629 6th St, San Francisco, CA 94016" -315008,iPhone,1,700,12/27/19 21:28,"133 River St, Austin, TX 73301" -315009,AAA Batteries (4-pack),4,2.99,12/31/19 19:57,"525 Adams St, Atlanta, GA 30301" -315010,Wired Headphones,1,11.99,12/06/19 04:45,"413 Ridge St, San Francisco, CA 94016" -315011,AAA Batteries (4-pack),1,2.99,12/04/19 16:05,"815 7th St, San Francisco, CA 94016" -315012,AA Batteries (4-pack),2,3.84,12/02/19 18:36,"450 14th St, Los Angeles, CA 90001" -315013,AA Batteries (4-pack),1,3.84,12/18/19 16:27,"510 Maple St, Portland, OR 97035" -315014,AAA Batteries (4-pack),1,2.99,12/04/19 08:57,"488 10th St, San Francisco, CA 94016" -315015,Lightning Charging Cable,1,14.95,12/07/19 15:35,"900 Lakeview St, New York City, NY 10001" -315016,AAA Batteries (4-pack),1,2.99,12/12/19 17:39,"948 Wilson St, Los Angeles, CA 90001" -315017,iPhone,1,700,12/09/19 14:42,"431 4th St, Los Angeles, CA 90001" -315018,Apple Airpods Headphones,1,150,12/26/19 14:19,"804 10th St, Dallas, TX 75001" -315019,Macbook Pro Laptop,1,1700,12/04/19 19:19,"399 8th St, San Francisco, CA 94016" -315020,Lightning Charging Cable,1,14.95,12/06/19 18:35,"715 Walnut St, Austin, TX 73301" -315021,20in Monitor,1,109.99,12/15/19 14:01,"39 4th St, Boston, MA 02215" -315022,Flatscreen TV,1,300,12/22/19 15:20,"250 5th St, Dallas, TX 75001" -315023,27in FHD Monitor,1,149.99,12/17/19 15:16,"798 8th St, San Francisco, CA 94016" -315024,Lightning Charging Cable,1,14.95,12/04/19 13:15,"198 Sunset St, Boston, MA 02215" -315025,Wired Headphones,2,11.99,12/29/19 12:43,"938 Hill St, Dallas, TX 75001" -315026,ThinkPad Laptop,1,999.99,12/04/19 13:21,"376 Sunset St, San Francisco, CA 94016" -315027,USB-C Charging Cable,1,11.95,12/21/19 14:58,"774 Sunset St, San Francisco, CA 94016" -315028,AA Batteries (4-pack),1,3.84,12/03/19 02:11,"866 13th St, San Francisco, CA 94016" -315029,USB-C Charging Cable,1,11.95,12/21/19 18:06,"858 4th St, San Francisco, CA 94016" -315030,USB-C Charging Cable,1,11.95,12/20/19 21:17,"768 Wilson St, Austin, TX 73301" -315031,Apple Airpods Headphones,1,150,12/31/19 18:11,"122 North St, San Francisco, CA 94016" -315032,AA Batteries (4-pack),3,3.84,12/01/19 07:23,"625 Chestnut St, Austin, TX 73301" -315033,Macbook Pro Laptop,1,1700,12/04/19 12:46,"713 9th St, Atlanta, GA 30301" -315034,AA Batteries (4-pack),1,3.84,12/09/19 18:24,"194 West St, Atlanta, GA 30301" -315035,USB-C Charging Cable,1,11.95,12/19/19 13:29,"680 10th St, San Francisco, CA 94016" -315036,AAA Batteries (4-pack),1,2.99,12/17/19 14:36,"787 Center St, Portland, OR 97035" -315036,Lightning Charging Cable,1,14.95,12/17/19 14:36,"787 Center St, Portland, OR 97035" -315037,34in Ultrawide Monitor,1,379.99,12/10/19 21:05,"465 Willow St, Seattle, WA 98101" -315038,Apple Airpods Headphones,1,150,12/22/19 12:41,"43 Cherry St, Portland, OR 97035" -315039,34in Ultrawide Monitor,1,379.99,12/10/19 10:54,"330 4th St, New York City, NY 10001" -315040,USB-C Charging Cable,1,11.95,12/31/19 09:06,"145 West St, New York City, NY 10001" -315041,Google Phone,1,600,12/04/19 18:57,"507 North St, Austin, TX 73301" -315041,Wired Headphones,1,11.99,12/04/19 18:57,"507 North St, Austin, TX 73301" -315042,AA Batteries (4-pack),1,3.84,12/13/19 14:03,"626 4th St, Los Angeles, CA 90001" -315043,USB-C Charging Cable,1,11.95,12/18/19 19:57,"891 1st St, Portland, OR 97035" -315044,Lightning Charging Cable,1,14.95,12/18/19 15:59,"720 Sunset St, Austin, TX 73301" -315045,Apple Airpods Headphones,1,150,12/08/19 22:33,"713 2nd St, San Francisco, CA 94016" -315046,USB-C Charging Cable,1,11.95,12/26/19 13:57,"940 Hickory St, Boston, MA 02215" -315047,iPhone,1,700,12/14/19 07:38,"41 Main St, Los Angeles, CA 90001" -315047,Lightning Charging Cable,1,14.95,12/14/19 07:38,"41 Main St, Los Angeles, CA 90001" -315048,AA Batteries (4-pack),1,3.84,12/21/19 21:20,"293 Elm St, Los Angeles, CA 90001" -315049,AAA Batteries (4-pack),2,2.99,12/09/19 22:10,"863 5th St, Los Angeles, CA 90001" -315050,AA Batteries (4-pack),1,3.84,12/22/19 21:02,"45 Cedar St, San Francisco, CA 94016" -315051,AAA Batteries (4-pack),1,2.99,12/08/19 22:04,"509 Forest St, Los Angeles, CA 90001" -315052,USB-C Charging Cable,1,11.95,12/04/19 22:07,"343 Walnut St, Seattle, WA 98101" -315053,AA Batteries (4-pack),1,3.84,12/31/19 23:12,"459 Park St, Dallas, TX 75001" -315054,USB-C Charging Cable,1,11.95,12/10/19 10:21,"921 8th St, Los Angeles, CA 90001" -315055,USB-C Charging Cable,1,11.95,12/01/19 18:24,"566 Jackson St, Atlanta, GA 30301" -315056,AA Batteries (4-pack),1,3.84,12/02/19 21:25,"288 Pine St, Seattle, WA 98101" -315057,Macbook Pro Laptop,1,1700,12/11/19 14:43,"542 Cedar St, San Francisco, CA 94016" -315058,Apple Airpods Headphones,1,150,12/30/19 10:03,"148 Cherry St, Austin, TX 73301" -315058,AAA Batteries (4-pack),1,2.99,12/30/19 10:03,"148 Cherry St, Austin, TX 73301" -315059,Lightning Charging Cable,1,14.95,12/11/19 18:07,"170 9th St, Austin, TX 73301" -315059,Vareebadd Phone,1,400,12/11/19 18:07,"170 9th St, Austin, TX 73301" -315060,AAA Batteries (4-pack),1,2.99,12/17/19 14:55,"446 Wilson St, Dallas, TX 75001" -315061,Lightning Charging Cable,1,14.95,12/08/19 13:57,"442 Lake St, Atlanta, GA 30301" -315062,34in Ultrawide Monitor,1,379.99,12/21/19 17:17,"182 Cherry St, Los Angeles, CA 90001" -315063,AAA Batteries (4-pack),1,2.99,12/02/19 08:31,"262 4th St, Los Angeles, CA 90001" -315064,iPhone,1,700,12/25/19 23:03,"572 Center St, Austin, TX 73301" -315065,Google Phone,1,600,12/23/19 19:27,"700 Lakeview St, Atlanta, GA 30301" -315066,Lightning Charging Cable,1,14.95,12/04/19 13:36,"494 Ridge St, San Francisco, CA 94016" -315067,Apple Airpods Headphones,1,150,12/24/19 21:33,"986 Park St, Boston, MA 02215" -315068,Bose SoundSport Headphones,1,99.99,12/14/19 11:14,"841 Forest St, New York City, NY 10001" -315069,USB-C Charging Cable,1,11.95,12/12/19 09:20,"273 Forest St, Atlanta, GA 30301" -315070,USB-C Charging Cable,1,11.95,12/13/19 18:03,"316 Jefferson St, Boston, MA 02215" -315071,iPhone,1,700,12/01/19 11:16,"85 13th St, Los Angeles, CA 90001" -315072,27in 4K Gaming Monitor,1,389.99,12/17/19 16:23,"547 5th St, Atlanta, GA 30301" -315073,Apple Airpods Headphones,1,150,12/20/19 12:35,"204 Elm St, New York City, NY 10001" -315074,Wired Headphones,1,11.99,12/18/19 08:38,"628 Spruce St, San Francisco, CA 94016" -315075,AA Batteries (4-pack),1,3.84,12/13/19 20:28,"421 Sunset St, San Francisco, CA 94016" -315076,ThinkPad Laptop,1,999.99,12/22/19 10:18,"270 Highland St, San Francisco, CA 94016" -315077,Lightning Charging Cable,1,14.95,12/07/19 22:16,"450 South St, San Francisco, CA 94016" -315078,20in Monitor,1,109.99,12/17/19 22:20,"237 Main St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -315079,AA Batteries (4-pack),1,3.84,12/15/19 19:05,"344 2nd St, New York City, NY 10001" -315080,AAA Batteries (4-pack),1,2.99,12/08/19 14:13,"128 Wilson St, New York City, NY 10001" -315081,Google Phone,1,600,12/24/19 11:22,"154 Hickory St, Atlanta, GA 30301" -315082,20in Monitor,1,109.99,12/05/19 13:21,"532 Elm St, San Francisco, CA 94016" -315083,Wired Headphones,1,11.99,12/22/19 23:41,"46 Washington St, New York City, NY 10001" -315084,Vareebadd Phone,1,400,12/17/19 20:42,"267 Meadow St, San Francisco, CA 94016" -315085,ThinkPad Laptop,1,999.99,12/29/19 15:24,"127 Forest St, Seattle, WA 98101" -315086,34in Ultrawide Monitor,1,379.99,12/26/19 17:26,"748 Elm St, San Francisco, CA 94016" -315087,USB-C Charging Cable,1,11.95,12/22/19 12:38,"549 Park St, San Francisco, CA 94016" -315088,Macbook Pro Laptop,1,1700,12/18/19 20:17,"379 Maple St, San Francisco, CA 94016" -315089,Lightning Charging Cable,1,14.95,12/19/19 19:06,"211 8th St, Boston, MA 02215" -315090,27in FHD Monitor,1,149.99,12/28/19 14:40,"565 South St, San Francisco, CA 94016" -315091,Wired Headphones,1,11.99,12/14/19 17:31,"224 Highland St, San Francisco, CA 94016" -315092,27in FHD Monitor,1,149.99,12/07/19 15:29,"790 8th St, New York City, NY 10001" -315093,AAA Batteries (4-pack),2,2.99,12/15/19 20:36,"71 Jackson St, Los Angeles, CA 90001" -315094,AAA Batteries (4-pack),2,2.99,12/29/19 19:49,"349 Cherry St, Los Angeles, CA 90001" -315095,LG Washing Machine,1,600.0,12/11/19 08:39,"522 12th St, Portland, OR 97035" -315096,AAA Batteries (4-pack),1,2.99,12/23/19 19:21,"883 Center St, New York City, NY 10001" -315097,Wired Headphones,1,11.99,12/09/19 12:06,"449 6th St, Dallas, TX 75001" -315098,Wired Headphones,1,11.99,12/03/19 19:22,"534 Adams St, Seattle, WA 98101" -315099,Bose SoundSport Headphones,1,99.99,12/23/19 13:48,"865 Jackson St, Los Angeles, CA 90001" -315100,Lightning Charging Cable,1,14.95,12/04/19 11:33,"119 Madison St, Boston, MA 02215" -315100,Flatscreen TV,1,300,12/04/19 11:33,"119 Madison St, Boston, MA 02215" -315101,ThinkPad Laptop,1,999.99,12/22/19 08:58,"956 Lake St, San Francisco, CA 94016" -315102,Lightning Charging Cable,1,14.95,12/11/19 23:04,"388 Highland St, Los Angeles, CA 90001" -315103,Wired Headphones,1,11.99,12/23/19 17:56,"340 11th St, Dallas, TX 75001" -315104,Apple Airpods Headphones,1,150,12/07/19 09:32,"212 Willow St, Los Angeles, CA 90001" -315105,Google Phone,1,600,12/14/19 12:24,"41 Highland St, Atlanta, GA 30301" -315106,Apple Airpods Headphones,1,150,12/20/19 10:48,"25 12th St, Austin, TX 73301" -315107,USB-C Charging Cable,2,11.95,12/10/19 08:32,"846 Hickory St, Los Angeles, CA 90001" -315108,USB-C Charging Cable,1,11.95,12/23/19 20:45,"351 Cherry St, New York City, NY 10001" -315109,USB-C Charging Cable,2,11.95,12/31/19 23:16,"601 South St, New York City, NY 10001" -315110,AA Batteries (4-pack),1,3.84,12/09/19 16:43,"624 13th St, Portland, OR 97035" -315111,Macbook Pro Laptop,1,1700,12/30/19 17:37,"84 Washington St, Seattle, WA 98101" -315112,27in FHD Monitor,1,149.99,12/27/19 18:37,"414 6th St, Boston, MA 02215" -315113,Wired Headphones,1,11.99,12/09/19 18:25,"628 Spruce St, Seattle, WA 98101" -315114,Lightning Charging Cable,1,14.95,12/20/19 21:44,"822 River St, Atlanta, GA 30301" -315115,Bose SoundSport Headphones,1,99.99,12/10/19 12:38,"543 12th St, Los Angeles, CA 90001" -315116,Wired Headphones,3,11.99,12/20/19 11:56,"78 Johnson St, Los Angeles, CA 90001" -315117,AAA Batteries (4-pack),1,2.99,12/31/19 00:13,"424 Cedar St, San Francisco, CA 94016" -315118,Flatscreen TV,1,300,12/31/19 19:49,"273 River St, Dallas, TX 75001" -315119,Google Phone,1,600,12/17/19 23:52,"179 2nd St, Boston, MA 02215" -315119,Bose SoundSport Headphones,1,99.99,12/17/19 23:52,"179 2nd St, Boston, MA 02215" -315120,AA Batteries (4-pack),1,3.84,12/19/19 19:37,"674 11th St, Seattle, WA 98101" -315121,Flatscreen TV,1,300,12/10/19 04:49,"387 Hill St, Seattle, WA 98101" -315122,AA Batteries (4-pack),1,3.84,12/06/19 12:09,"807 Sunset St, Los Angeles, CA 90001" -315123,Apple Airpods Headphones,1,150,12/17/19 17:21,"960 Spruce St, Atlanta, GA 30301" -315124,AAA Batteries (4-pack),3,2.99,12/20/19 21:03,"326 Walnut St, Dallas, TX 75001" -315125,Lightning Charging Cable,1,14.95,12/08/19 20:44,"302 Maple St, Seattle, WA 98101" -315126,USB-C Charging Cable,1,11.95,12/07/19 12:15,"507 6th St, Los Angeles, CA 90001" -315127,34in Ultrawide Monitor,1,379.99,12/07/19 18:53,"865 Pine St, Atlanta, GA 30301" -315128,Wired Headphones,1,11.99,12/02/19 20:10,"110 6th St, Los Angeles, CA 90001" -315129,34in Ultrawide Monitor,1,379.99,12/31/19 21:42,"675 Dogwood St, San Francisco, CA 94016" -315130,ThinkPad Laptop,1,999.99,12/31/19 22:57,"948 Madison St, Atlanta, GA 30301" -315131,Lightning Charging Cable,1,14.95,12/15/19 22:30,"509 Washington St, Seattle, WA 98101" -315132,AA Batteries (4-pack),3,3.84,12/25/19 21:18,"569 7th St, New York City, NY 10001" -315133,iPhone,1,700,12/11/19 11:51,"805 Lake St, Atlanta, GA 30301" -315134,AAA Batteries (4-pack),1,2.99,12/12/19 11:33,"761 River St, San Francisco, CA 94016" -315135,Wired Headphones,1,11.99,12/12/19 16:22,"245 Sunset St, Los Angeles, CA 90001" -315136,Macbook Pro Laptop,1,1700,12/13/19 12:55,"457 Highland St, Boston, MA 02215" -315137,Macbook Pro Laptop,1,1700,12/29/19 20:35,"131 11th St, New York City, NY 10001" -315138,AAA Batteries (4-pack),3,2.99,01/01/20 00:51,"257 Adams St, New York City, NY 10001" -315139,Lightning Charging Cable,1,14.95,12/02/19 13:45,"335 Park St, Atlanta, GA 30301" -315140,Macbook Pro Laptop,1,1700,12/03/19 22:00,"340 Jackson St, Atlanta, GA 30301" -315141,Wired Headphones,1,11.99,12/13/19 19:41,"421 7th St, Boston, MA 02215" -315142,AAA Batteries (4-pack),1,2.99,12/11/19 17:46,"599 Jefferson St, San Francisco, CA 94016" -315143,34in Ultrawide Monitor,1,379.99,12/17/19 21:59,"305 Washington St, San Francisco, CA 94016" -315144,Lightning Charging Cable,1,14.95,12/25/19 07:42,"236 Forest St, Seattle, WA 98101" -315145,USB-C Charging Cable,1,11.95,12/18/19 13:25,"388 14th St, San Francisco, CA 94016" -315146,27in 4K Gaming Monitor,1,389.99,12/16/19 22:38,"936 Chestnut St, San Francisco, CA 94016" -315147,Lightning Charging Cable,1,14.95,12/06/19 23:14,"820 Hill St, Seattle, WA 98101" -315148,AA Batteries (4-pack),1,3.84,12/30/19 20:06,"431 Meadow St, Seattle, WA 98101" -315149,Lightning Charging Cable,1,14.95,12/19/19 17:43,"800 Washington St, New York City, NY 10001" -315150,Lightning Charging Cable,1,14.95,12/20/19 23:36,"760 Washington St, Austin, TX 73301" -315151,34in Ultrawide Monitor,1,379.99,12/11/19 14:18,"971 Washington St, San Francisco, CA 94016" -315152,Lightning Charging Cable,1,14.95,12/16/19 19:57,"127 6th St, Los Angeles, CA 90001" -315153,Apple Airpods Headphones,1,150,12/11/19 18:31,"639 4th St, Boston, MA 02215" -315154,20in Monitor,1,109.99,12/09/19 12:42,"372 8th St, San Francisco, CA 94016" -315155,Flatscreen TV,1,300,12/01/19 19:55,"403 Ridge St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -315156,Flatscreen TV,1,300,12/12/19 06:58,"262 Dogwood St, San Francisco, CA 94016" -315157,Wired Headphones,1,11.99,12/04/19 20:00,"350 4th St, Los Angeles, CA 90001" -315158,Bose SoundSport Headphones,1,99.99,12/18/19 16:00,"374 Willow St, Portland, OR 97035" -315159,iPhone,1,700,12/03/19 18:02,"215 Jackson St, Los Angeles, CA 90001" -315160,USB-C Charging Cable,1,11.95,12/09/19 07:06,"654 13th St, New York City, NY 10001" -315161,AAA Batteries (4-pack),1,2.99,12/13/19 10:45,"769 Walnut St, New York City, NY 10001" -315162,Apple Airpods Headphones,1,150,12/15/19 19:02,"207 South St, San Francisco, CA 94016" -315163,AAA Batteries (4-pack),1,2.99,12/01/19 23:32,"172 Lakeview St, Dallas, TX 75001" -315164,Vareebadd Phone,1,400,12/20/19 14:28,"567 12th St, Portland, OR 97035" -315165,Bose SoundSport Headphones,1,99.99,12/03/19 09:15,"288 Elm St, Los Angeles, CA 90001" -315166,AAA Batteries (4-pack),2,2.99,12/13/19 16:43,"882 11th St, San Francisco, CA 94016" -315167,Google Phone,1,600,12/15/19 20:16,"926 Adams St, Boston, MA 02215" -315167,Wired Headphones,1,11.99,12/15/19 20:16,"926 Adams St, Boston, MA 02215" -315168,USB-C Charging Cable,1,11.95,12/10/19 08:21,"332 Lincoln St, Portland, OR 97035" -315169,Apple Airpods Headphones,1,150,12/29/19 16:28,"726 Walnut St, Boston, MA 02215" -315170,Apple Airpods Headphones,1,150,12/02/19 13:25,"374 10th St, Boston, MA 02215" -315171,Macbook Pro Laptop,1,1700,12/24/19 17:31,"309 Main St, Austin, TX 73301" -315172,USB-C Charging Cable,1,11.95,12/30/19 15:17,"210 Ridge St, Los Angeles, CA 90001" -315173,Wired Headphones,1,11.99,12/17/19 10:32,"360 Sunset St, San Francisco, CA 94016" -315174,27in FHD Monitor,1,149.99,12/22/19 19:27,"941 Park St, Dallas, TX 75001" -315175,USB-C Charging Cable,1,11.95,12/12/19 21:36,"534 12th St, Los Angeles, CA 90001" -315176,iPhone,1,700,12/12/19 15:45,"450 2nd St, Austin, TX 73301" -315176,Lightning Charging Cable,1,14.95,12/12/19 15:45,"450 2nd St, Austin, TX 73301" -315177,AAA Batteries (4-pack),1,2.99,12/14/19 23:19,"339 Hickory St, Dallas, TX 75001" -315178,Macbook Pro Laptop,1,1700,12/05/19 21:45,"529 Ridge St, San Francisco, CA 94016" -315179,34in Ultrawide Monitor,1,379.99,12/12/19 22:13,"344 Main St, New York City, NY 10001" -315180,Apple Airpods Headphones,1,150,12/16/19 21:02,"371 Dogwood St, Atlanta, GA 30301" -315181,Wired Headphones,1,11.99,12/20/19 20:16,"305 Jackson St, Austin, TX 73301" -315182,20in Monitor,1,109.99,12/01/19 13:33,"291 Pine St, San Francisco, CA 94016" -315183,USB-C Charging Cable,1,11.95,12/12/19 21:35,"179 Cedar St, Atlanta, GA 30301" -315184,LG Dryer,1,600.0,12/18/19 00:07,"184 Lincoln St, Seattle, WA 98101" -315185,20in Monitor,1,109.99,12/26/19 09:04,"258 Dogwood St, Atlanta, GA 30301" -315186,USB-C Charging Cable,1,11.95,12/05/19 21:52,"593 Adams St, Austin, TX 73301" -315187,iPhone,1,700,12/12/19 14:40,"727 Elm St, San Francisco, CA 94016" -315188,USB-C Charging Cable,1,11.95,12/13/19 18:45,"551 West St, Los Angeles, CA 90001" -315189,USB-C Charging Cable,1,11.95,12/21/19 20:11,"541 South St, Austin, TX 73301" -315190,iPhone,1,700,12/13/19 23:05,"972 Pine St, Portland, OR 97035" -315190,Apple Airpods Headphones,1,150,12/13/19 23:05,"972 Pine St, Portland, OR 97035" -315191,AAA Batteries (4-pack),3,2.99,12/17/19 00:41,"486 North St, San Francisco, CA 94016" -315192,AA Batteries (4-pack),1,3.84,12/12/19 23:14,"23 Walnut St, Los Angeles, CA 90001" -315192,27in 4K Gaming Monitor,1,389.99,12/12/19 23:14,"23 Walnut St, Los Angeles, CA 90001" -315193,Bose SoundSport Headphones,1,99.99,12/01/19 21:40,"535 West St, Austin, TX 73301" -315194,Lightning Charging Cable,1,14.95,12/21/19 10:47,"549 Park St, Boston, MA 02215" -315195,Bose SoundSport Headphones,1,99.99,12/27/19 17:19,"345 Sunset St, San Francisco, CA 94016" -315196,Wired Headphones,1,11.99,12/06/19 14:24,"213 10th St, Portland, OR 97035" -315197,Lightning Charging Cable,1,14.95,12/30/19 21:55,"715 14th St, Los Angeles, CA 90001" -315198,27in FHD Monitor,1,149.99,12/10/19 11:36,"969 South St, Portland, OR 97035" -315199,Wired Headphones,1,11.99,12/16/19 10:50,"987 5th St, Dallas, TX 75001" -315200,USB-C Charging Cable,1,11.95,12/30/19 09:34,"326 Adams St, Atlanta, GA 30301" -315201,Flatscreen TV,1,300,12/04/19 13:42,"309 Washington St, Boston, MA 02215" -315202,Google Phone,1,600,12/15/19 16:19,"93 6th St, Dallas, TX 75001" -315203,iPhone,1,700,12/30/19 13:40,"390 Main St, New York City, NY 10001" -315204,Wired Headphones,1,11.99,12/12/19 12:41,"680 6th St, San Francisco, CA 94016" -315204,Wired Headphones,1,11.99,12/12/19 12:41,"680 6th St, San Francisco, CA 94016" -315205,AAA Batteries (4-pack),1,2.99,12/20/19 20:14,"604 Lake St, New York City, NY 10001" -315206,USB-C Charging Cable,1,11.95,12/27/19 09:34,"367 Ridge St, Seattle, WA 98101" -315207,USB-C Charging Cable,1,11.95,12/20/19 14:34,"508 Meadow St, Los Angeles, CA 90001" -315208,Lightning Charging Cable,1,14.95,12/24/19 16:40,"970 Hickory St, San Francisco, CA 94016" -315209,27in 4K Gaming Monitor,1,389.99,12/06/19 19:37,"970 Dogwood St, San Francisco, CA 94016" -315210,Lightning Charging Cable,1,14.95,12/02/19 15:19,"14 West St, New York City, NY 10001" -315211,AAA Batteries (4-pack),1,2.99,12/29/19 10:59,"484 Johnson St, San Francisco, CA 94016" -315212,AAA Batteries (4-pack),1,2.99,12/31/19 18:20,"336 Dogwood St, Dallas, TX 75001" -315213,Lightning Charging Cable,1,14.95,12/29/19 15:27,"777 Center St, Austin, TX 73301" -315214,ThinkPad Laptop,1,999.99,12/01/19 21:41,"921 14th St, Atlanta, GA 30301" -315215,20in Monitor,1,109.99,12/28/19 22:34,"891 Walnut St, San Francisco, CA 94016" -315216,Apple Airpods Headphones,1,150,12/06/19 15:10,"627 6th St, New York City, NY 10001" -315217,Bose SoundSport Headphones,1,99.99,12/09/19 09:13,"232 Adams St, San Francisco, CA 94016" -315218,Bose SoundSport Headphones,1,99.99,12/20/19 11:57,"553 10th St, Seattle, WA 98101" -315219,AAA Batteries (4-pack),1,2.99,12/20/19 08:52,"126 Dogwood St, Los Angeles, CA 90001" -315220,20in Monitor,1,109.99,12/20/19 00:10,"289 Chestnut St, Atlanta, GA 30301" -315221,AAA Batteries (4-pack),1,2.99,12/15/19 01:04,"363 8th St, Atlanta, GA 30301" -315222,iPhone,1,700,12/14/19 10:01,"902 5th St, Portland, OR 97035" -315223,Lightning Charging Cable,1,14.95,12/05/19 11:10,"444 7th St, San Francisco, CA 94016" -315224,27in FHD Monitor,1,149.99,12/04/19 13:23,"381 7th St, San Francisco, CA 94016" -315225,Bose SoundSport Headphones,1,99.99,12/13/19 14:39,"299 Adams St, Dallas, TX 75001" -315226,USB-C Charging Cable,1,11.95,12/27/19 10:25,"203 Hill St, Austin, TX 73301" -315227,Wired Headphones,1,11.99,12/30/19 12:19,"892 1st St, San Francisco, CA 94016" -315228,AAA Batteries (4-pack),1,2.99,12/05/19 11:22,"553 Cherry St, New York City, NY 10001" -315229,AA Batteries (4-pack),1,3.84,12/03/19 14:25,"688 8th St, Boston, MA 02215" -315230,AA Batteries (4-pack),1,3.84,12/26/19 07:08,"872 Cedar St, Los Angeles, CA 90001" -315231,AAA Batteries (4-pack),1,2.99,12/20/19 21:37,"275 Elm St, Boston, MA 02215" -315232,AA Batteries (4-pack),2,3.84,12/12/19 20:09,"825 4th St, Los Angeles, CA 90001" -315233,AAA Batteries (4-pack),2,2.99,12/04/19 08:48,"469 Hill St, Austin, TX 73301" -315234,Lightning Charging Cable,1,14.95,12/08/19 09:08,"93 Chestnut St, Atlanta, GA 30301" -315235,Bose SoundSport Headphones,1,99.99,12/19/19 16:28,"171 Lakeview St, New York City, NY 10001" -315236,AAA Batteries (4-pack),1,2.99,12/21/19 17:40,"292 Ridge St, Boston, MA 02215" -315237,Macbook Pro Laptop,1,1700,12/21/19 09:32,"803 4th St, San Francisco, CA 94016" -315238,27in 4K Gaming Monitor,1,389.99,12/28/19 18:09,"695 Washington St, Los Angeles, CA 90001" -315239,27in FHD Monitor,1,149.99,12/07/19 12:11,"293 River St, San Francisco, CA 94016" -315240,Bose SoundSport Headphones,1,99.99,12/22/19 19:28,"70 Dogwood St, Boston, MA 02215" -315241,27in FHD Monitor,1,149.99,12/24/19 18:20,"128 Dogwood St, San Francisco, CA 94016" -315242,Wired Headphones,1,11.99,12/29/19 18:20,"907 5th St, New York City, NY 10001" -315243,34in Ultrawide Monitor,1,379.99,12/22/19 06:59,"615 Center St, New York City, NY 10001" -315244,iPhone,1,700,12/19/19 16:08,"443 South St, New York City, NY 10001" -315245,Apple Airpods Headphones,1,150,12/01/19 21:09,"513 13th St, Seattle, WA 98101" -315246,Apple Airpods Headphones,1,150,12/24/19 10:57,"521 Ridge St, Boston, MA 02215" -315247,USB-C Charging Cable,1,11.95,12/13/19 14:35,"178 Willow St, Atlanta, GA 30301" -315248,27in FHD Monitor,1,149.99,12/28/19 22:42,"564 13th St, San Francisco, CA 94016" -315249,Wired Headphones,1,11.99,12/27/19 13:12,"943 Adams St, San Francisco, CA 94016" -315250,AAA Batteries (4-pack),1,2.99,12/21/19 05:35,"254 Johnson St, Portland, OR 97035" -315251,Wired Headphones,1,11.99,12/27/19 19:51,"357 Cedar St, Los Angeles, CA 90001" -315252,Apple Airpods Headphones,1,150,12/14/19 00:02,"269 Meadow St, San Francisco, CA 94016" -315253,Lightning Charging Cable,1,14.95,12/27/19 17:53,"859 Sunset St, Los Angeles, CA 90001" -315254,iPhone,1,700,12/25/19 18:02,"707 8th St, Portland, OR 97035" -315255,USB-C Charging Cable,1,11.95,12/24/19 01:41,"501 Dogwood St, Los Angeles, CA 90001" -315256,Google Phone,1,600,12/23/19 14:50,"159 5th St, Los Angeles, CA 90001" -315257,AA Batteries (4-pack),1,3.84,12/23/19 08:01,"381 Willow St, Portland, OR 97035" -315258,Wired Headphones,1,11.99,12/09/19 10:11,"916 7th St, Los Angeles, CA 90001" -315259,Apple Airpods Headphones,1,150,12/15/19 17:45,"727 Spruce St, Dallas, TX 75001" -315260,USB-C Charging Cable,2,11.95,12/06/19 17:08,"880 Washington St, San Francisco, CA 94016" -315261,AA Batteries (4-pack),2,3.84,12/18/19 10:51,"272 Hickory St, New York City, NY 10001" -315262,LG Dryer,1,600.0,12/29/19 14:34,"267 10th St, Atlanta, GA 30301" -315263,AA Batteries (4-pack),1,3.84,12/02/19 21:55,"286 Sunset St, New York City, NY 10001" -315264,27in FHD Monitor,1,149.99,12/26/19 18:57,"228 North St, San Francisco, CA 94016" -315265,ThinkPad Laptop,1,999.99,12/02/19 13:24,"92 Ridge St, Portland, OR 97035" -315266,Macbook Pro Laptop,1,1700,12/03/19 09:49,"806 Washington St, Portland, OR 97035" -315267,27in FHD Monitor,1,149.99,12/05/19 17:32,"886 Willow St, New York City, NY 10001" -315268,Lightning Charging Cable,1,14.95,12/28/19 23:12,"430 Dogwood St, Portland, OR 97035" -315268,Google Phone,1,600,12/28/19 23:12,"430 Dogwood St, Portland, OR 97035" -315269,USB-C Charging Cable,1,11.95,12/04/19 21:42,"36 Lake St, Dallas, TX 75001" -315270,27in FHD Monitor,1,149.99,12/17/19 18:25,"579 Highland St, San Francisco, CA 94016" -315271,Lightning Charging Cable,2,14.95,12/20/19 00:37,"217 Highland St, Portland, OR 97035" -315272,27in 4K Gaming Monitor,1,389.99,12/23/19 13:19,"511 Madison St, San Francisco, CA 94016" -315273,Bose SoundSport Headphones,1,99.99,12/16/19 12:41,"861 Cherry St, San Francisco, CA 94016" -315274,Flatscreen TV,1,300,12/20/19 14:34,"945 14th St, Atlanta, GA 30301" -315275,Wired Headphones,1,11.99,12/24/19 10:31,"112 5th St, San Francisco, CA 94016" -315276,AAA Batteries (4-pack),1,2.99,12/08/19 11:45,"364 Elm St, San Francisco, CA 94016" -315277,Apple Airpods Headphones,1,150,12/11/19 18:54,"34 Maple St, San Francisco, CA 94016" -315278,Google Phone,1,600,12/24/19 14:26,"960 Hickory St, Los Angeles, CA 90001" -315279,Lightning Charging Cable,1,14.95,12/17/19 21:14,"384 Lincoln St, Dallas, TX 75001" -315280,Wired Headphones,1,11.99,12/01/19 10:29,"13 Ridge St, Los Angeles, CA 90001" -315281,Wired Headphones,2,11.99,12/15/19 20:46,"350 10th St, Boston, MA 02215" -315282,Wired Headphones,1,11.99,12/13/19 21:33,"954 2nd St, New York City, NY 10001" -315283,Bose SoundSport Headphones,1,99.99,12/21/19 10:30,"838 8th St, San Francisco, CA 94016" -315284,Lightning Charging Cable,1,14.95,12/26/19 13:54,"220 River St, Los Angeles, CA 90001" -315285,Apple Airpods Headphones,1,150,12/27/19 09:18,"395 Cedar St, New York City, NY 10001" -315286,Lightning Charging Cable,1,14.95,12/22/19 07:46,"909 Highland St, Seattle, WA 98101" -315287,USB-C Charging Cable,1,11.95,12/16/19 09:32,"250 North St, New York City, NY 10001" -315288,Wired Headphones,1,11.99,12/06/19 20:39,"232 Forest St, San Francisco, CA 94016" -315289,Apple Airpods Headphones,1,150,12/26/19 11:15,"67 Walnut St, Los Angeles, CA 90001" -315290,34in Ultrawide Monitor,1,379.99,12/01/19 07:59,"353 West St, Boston, MA 02215" -315291,27in 4K Gaming Monitor,1,389.99,12/19/19 12:36,"454 Ridge St, Atlanta, GA 30301" -315292,Apple Airpods Headphones,1,150,12/29/19 20:35,"990 Chestnut St, New York City, NY 10001" -315293,Lightning Charging Cable,1,14.95,12/09/19 19:38,"806 Lincoln St, San Francisco, CA 94016" -315294,ThinkPad Laptop,1,999.99,12/19/19 12:00,"108 Park St, Los Angeles, CA 90001" -315295,Apple Airpods Headphones,1,150,12/23/19 11:05,"78 South St, Los Angeles, CA 90001" -315296,AAA Batteries (4-pack),2,2.99,12/17/19 18:24,"526 Forest St, Dallas, TX 75001" -315297,Lightning Charging Cable,1,14.95,12/22/19 08:57,"291 Cedar St, Seattle, WA 98101" -315298,iPhone,1,700,12/23/19 10:40,"712 13th St, Austin, TX 73301" -315299,USB-C Charging Cable,1,11.95,12/26/19 09:14,"171 Adams St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -315300,34in Ultrawide Monitor,1,379.99,12/25/19 10:14,"423 Willow St, Seattle, WA 98101" -315301,ThinkPad Laptop,1,999.99,12/21/19 16:57,"582 Adams St, Los Angeles, CA 90001" -315302,Wired Headphones,1,11.99,12/10/19 08:43,"826 Spruce St, Austin, TX 73301" -315303,Lightning Charging Cable,1,14.95,12/08/19 20:03,"384 1st St, Dallas, TX 75001" -315304,Bose SoundSport Headphones,1,99.99,12/29/19 12:20,"158 Madison St, Portland, OR 97035" -315305,iPhone,1,700,12/13/19 14:16,"366 1st St, Los Angeles, CA 90001" -315306,USB-C Charging Cable,1,11.95,12/21/19 16:51,"315 Jefferson St, Dallas, TX 75001" -315307,Apple Airpods Headphones,1,150,12/06/19 20:03,"691 Washington St, Atlanta, GA 30301" -315308,AA Batteries (4-pack),1,3.84,12/21/19 01:52,"170 4th St, Boston, MA 02215" -315309,Bose SoundSport Headphones,1,99.99,12/11/19 21:08,"845 5th St, San Francisco, CA 94016" -315310,AAA Batteries (4-pack),2,2.99,12/17/19 21:59,"993 11th St, Portland, ME 04101" -315311,20in Monitor,1,109.99,12/10/19 19:53,"334 Lake St, New York City, NY 10001" -315312,Wired Headphones,1,11.99,12/18/19 12:55,"958 Willow St, Austin, TX 73301" -315313,AAA Batteries (4-pack),1,2.99,12/07/19 18:21,"804 Lakeview St, Los Angeles, CA 90001" -315314,USB-C Charging Cable,1,11.95,12/12/19 00:58,"930 Ridge St, Los Angeles, CA 90001" -315315,27in 4K Gaming Monitor,1,389.99,01/01/20 01:22,"552 North St, Austin, TX 73301" -315316,20in Monitor,1,109.99,12/05/19 12:08,"364 6th St, Dallas, TX 75001" -315317,AAA Batteries (4-pack),2,2.99,12/03/19 10:12,"19 South St, Dallas, TX 75001" -315318,27in FHD Monitor,1,149.99,12/07/19 10:05,"444 13th St, New York City, NY 10001" -315319,Apple Airpods Headphones,1,150,12/07/19 23:02,"560 North St, Austin, TX 73301" -315320,34in Ultrawide Monitor,1,379.99,12/30/19 10:06,"76 Jefferson St, Los Angeles, CA 90001" -315321,AAA Batteries (4-pack),2,2.99,12/22/19 20:34,"170 12th St, Atlanta, GA 30301" -315322,Google Phone,1,600,12/23/19 08:46,"741 Wilson St, San Francisco, CA 94016" -315322,USB-C Charging Cable,2,11.95,12/23/19 08:46,"741 Wilson St, San Francisco, CA 94016" -315323,AA Batteries (4-pack),1,3.84,12/03/19 07:25,"568 9th St, Boston, MA 02215" -315324,34in Ultrawide Monitor,1,379.99,12/22/19 13:00,"998 Dogwood St, Austin, TX 73301" -315325,AAA Batteries (4-pack),2,2.99,12/30/19 22:22,"70 Highland St, Los Angeles, CA 90001" -315326,AAA Batteries (4-pack),2,2.99,12/03/19 12:07,"213 Wilson St, Los Angeles, CA 90001" -315327,USB-C Charging Cable,1,11.95,12/22/19 06:45,"641 Chestnut St, San Francisco, CA 94016" -315328,Bose SoundSport Headphones,1,99.99,12/22/19 09:13,"217 Walnut St, Seattle, WA 98101" -315329,AAA Batteries (4-pack),2,2.99,12/07/19 22:08,"474 Hickory St, Dallas, TX 75001" -315330,AAA Batteries (4-pack),1,2.99,12/27/19 18:36,"823 Jackson St, Atlanta, GA 30301" -315331,Vareebadd Phone,1,400,12/30/19 22:27,"567 Jackson St, Seattle, WA 98101" -315332,Google Phone,1,600,12/29/19 19:16,"639 Pine St, Dallas, TX 75001" -315332,Wired Headphones,1,11.99,12/29/19 19:16,"639 Pine St, Dallas, TX 75001" -315333,Vareebadd Phone,1,400,12/25/19 17:12,"980 Maple St, Portland, ME 04101" -315334,Macbook Pro Laptop,1,1700,12/06/19 07:10,"295 North St, Seattle, WA 98101" -315335,Apple Airpods Headphones,1,150,12/05/19 10:10,"607 6th St, Portland, OR 97035" -315336,Lightning Charging Cable,1,14.95,12/04/19 11:33,"456 14th St, New York City, NY 10001" -315337,20in Monitor,1,109.99,12/11/19 13:29,"37 Jefferson St, San Francisco, CA 94016" -315338,27in 4K Gaming Monitor,1,389.99,12/08/19 22:39,"346 Jefferson St, San Francisco, CA 94016" -315339,AAA Batteries (4-pack),1,2.99,12/23/19 17:29,"952 Cherry St, San Francisco, CA 94016" -315340,AAA Batteries (4-pack),1,2.99,12/14/19 21:23,"229 Lincoln St, Boston, MA 02215" -315341,20in Monitor,1,109.99,12/16/19 15:22,"567 8th St, Portland, ME 04101" -315342,Lightning Charging Cable,1,14.95,12/14/19 16:41,"13 River St, San Francisco, CA 94016" -315343,Bose SoundSport Headphones,1,99.99,12/21/19 21:10,"257 Pine St, Dallas, TX 75001" -315344,USB-C Charging Cable,1,11.95,12/20/19 00:38,"742 7th St, Boston, MA 02215" -315345,Bose SoundSport Headphones,1,99.99,12/26/19 08:00,"921 12th St, Seattle, WA 98101" -315346,Lightning Charging Cable,1,14.95,12/12/19 16:44,"826 5th St, Portland, OR 97035" -315347,Google Phone,1,600,12/19/19 12:37,"445 10th St, San Francisco, CA 94016" -315348,Apple Airpods Headphones,1,150,12/06/19 14:25,"945 11th St, Atlanta, GA 30301" -315349,Lightning Charging Cable,1,14.95,12/10/19 22:30,"524 Meadow St, Atlanta, GA 30301" -315350,Lightning Charging Cable,1,14.95,12/16/19 21:58,"853 Lakeview St, Boston, MA 02215" -315351,LG Washing Machine,1,600.0,12/24/19 18:25,"729 5th St, Boston, MA 02215" -315352,Lightning Charging Cable,1,14.95,12/23/19 11:23,"545 Spruce St, San Francisco, CA 94016" -315353,27in 4K Gaming Monitor,1,389.99,12/18/19 17:16,"35 Main St, Seattle, WA 98101" -315354,Lightning Charging Cable,1,14.95,12/11/19 19:28,"311 Cherry St, Boston, MA 02215" -315354,AA Batteries (4-pack),1,3.84,12/11/19 19:28,"311 Cherry St, Boston, MA 02215" -315355,AAA Batteries (4-pack),2,2.99,12/13/19 19:00,"888 Elm St, New York City, NY 10001" -315356,AA Batteries (4-pack),3,3.84,12/25/19 20:35,"268 Meadow St, San Francisco, CA 94016" -315357,iPhone,1,700,12/24/19 08:02,"162 Chestnut St, Portland, OR 97035" -315358,Wired Headphones,1,11.99,12/12/19 21:16,"535 Johnson St, Seattle, WA 98101" -315358,Bose SoundSport Headphones,1,99.99,12/12/19 21:16,"535 Johnson St, Seattle, WA 98101" -315359,AA Batteries (4-pack),1,3.84,12/26/19 13:28,"396 Walnut St, New York City, NY 10001" -315360,AAA Batteries (4-pack),2,2.99,12/28/19 16:45,"370 Adams St, San Francisco, CA 94016" -315361,Lightning Charging Cable,2,14.95,12/16/19 16:15,"316 Hickory St, New York City, NY 10001" -315362,AAA Batteries (4-pack),1,2.99,12/02/19 11:07,"247 Maple St, New York City, NY 10001" -315363,AAA Batteries (4-pack),1,2.99,12/20/19 10:45,"456 Adams St, San Francisco, CA 94016" -315364,AA Batteries (4-pack),2,3.84,12/04/19 15:34,"328 Wilson St, Dallas, TX 75001" -315365,Flatscreen TV,1,300,12/11/19 19:25,"765 Dogwood St, San Francisco, CA 94016" -315366,Apple Airpods Headphones,1,150,12/02/19 22:29,"243 Madison St, San Francisco, CA 94016" -315367,USB-C Charging Cable,1,11.95,12/21/19 14:42,"398 Dogwood St, Los Angeles, CA 90001" -315368,34in Ultrawide Monitor,1,379.99,12/22/19 14:38,"409 Johnson St, Dallas, TX 75001" -315369,AAA Batteries (4-pack),3,2.99,12/13/19 21:19,"564 Hill St, New York City, NY 10001" -315370,AAA Batteries (4-pack),2,2.99,12/20/19 23:47,"789 9th St, Boston, MA 02215" -315371,Vareebadd Phone,1,400,12/27/19 10:17,"715 Center St, Los Angeles, CA 90001" -315372,Bose SoundSport Headphones,1,99.99,12/20/19 19:40,"658 Johnson St, Dallas, TX 75001" -315373,AAA Batteries (4-pack),1,2.99,12/20/19 18:42,"485 11th St, San Francisco, CA 94016" -315374,Wired Headphones,1,11.99,12/08/19 17:19,"265 South St, Austin, TX 73301" -315375,Lightning Charging Cable,1,14.95,12/25/19 07:59,"814 Hill St, San Francisco, CA 94016" -315376,AA Batteries (4-pack),2,3.84,12/17/19 09:35,"898 West St, Portland, OR 97035" -315377,Wired Headphones,1,11.99,12/15/19 22:09,"398 13th St, Atlanta, GA 30301" -315378,AA Batteries (4-pack),1,3.84,12/19/19 07:34,"549 Elm St, Austin, TX 73301" -315379,Wired Headphones,1,11.99,12/06/19 16:12,"168 2nd St, San Francisco, CA 94016" -315380,27in FHD Monitor,1,149.99,12/29/19 18:57,"943 Sunset St, Atlanta, GA 30301" -315381,Apple Airpods Headphones,1,150,12/28/19 20:30,"447 Lake St, New York City, NY 10001" -315382,USB-C Charging Cable,1,11.95,12/19/19 19:13,"378 Dogwood St, Dallas, TX 75001" -315383,Flatscreen TV,1,300,12/31/19 17:57,"44 Walnut St, Atlanta, GA 30301" -315384,AAA Batteries (4-pack),1,2.99,12/10/19 18:49,"132 6th St, Dallas, TX 75001" -315385,20in Monitor,1,109.99,12/11/19 11:00,"290 Jackson St, New York City, NY 10001" -315386,Macbook Pro Laptop,1,1700,12/30/19 20:36,"81 Jefferson St, San Francisco, CA 94016" -315386,Apple Airpods Headphones,1,150,12/30/19 20:36,"81 Jefferson St, San Francisco, CA 94016" -315387,Wired Headphones,1,11.99,12/16/19 12:24,"114 4th St, Seattle, WA 98101" -315388,USB-C Charging Cable,1,11.95,12/14/19 06:59,"159 Ridge St, Boston, MA 02215" -315389,Apple Airpods Headphones,1,150,12/03/19 08:21,"607 Washington St, Portland, OR 97035" -315390,Google Phone,1,600,12/08/19 23:05,"780 7th St, New York City, NY 10001" -315390,Bose SoundSport Headphones,1,99.99,12/08/19 23:05,"780 7th St, New York City, NY 10001" -315390,Wired Headphones,1,11.99,12/08/19 23:05,"780 7th St, New York City, NY 10001" -315391,Apple Airpods Headphones,1,150,12/01/19 18:43,"558 7th St, Dallas, TX 75001" -315392,Apple Airpods Headphones,1,150,12/22/19 21:56,"838 9th St, Portland, OR 97035" -315393,ThinkPad Laptop,1,999.99,12/27/19 12:26,"895 6th St, Boston, MA 02215" -315394,Wired Headphones,1,11.99,12/21/19 16:34,"68 7th St, San Francisco, CA 94016" -315395,27in 4K Gaming Monitor,1,389.99,12/22/19 12:26,"105 North St, Los Angeles, CA 90001" -315396,Bose SoundSport Headphones,1,99.99,12/28/19 11:50,"284 Johnson St, Boston, MA 02215" -315397,Flatscreen TV,1,300,12/29/19 19:37,"902 12th St, New York City, NY 10001" -315398,Apple Airpods Headphones,1,150,12/06/19 12:27,"977 Church St, Atlanta, GA 30301" -315399,Bose SoundSport Headphones,1,99.99,12/21/19 10:35,"102 Madison St, San Francisco, CA 94016" -315400,AA Batteries (4-pack),2,3.84,12/31/19 08:09,"660 Walnut St, Austin, TX 73301" -315401,Bose SoundSport Headphones,1,99.99,12/31/19 13:48,"995 7th St, New York City, NY 10001" -315402,27in 4K Gaming Monitor,1,389.99,12/15/19 11:05,"790 Dogwood St, New York City, NY 10001" -315403,AAA Batteries (4-pack),2,2.99,12/15/19 06:37,"393 Meadow St, Boston, MA 02215" -315404,iPhone,1,700,12/08/19 19:22,"200 Elm St, New York City, NY 10001" -315405,Vareebadd Phone,1,400,12/30/19 21:54,"865 13th St, Los Angeles, CA 90001" -315405,USB-C Charging Cable,1,11.95,12/30/19 21:54,"865 13th St, Los Angeles, CA 90001" -315406,USB-C Charging Cable,1,11.95,12/14/19 13:46,"329 Wilson St, Los Angeles, CA 90001" -315407,Bose SoundSport Headphones,1,99.99,12/01/19 05:36,"637 Church St, New York City, NY 10001" -315408,AA Batteries (4-pack),2,3.84,12/20/19 11:43,"56 14th St, Seattle, WA 98101" -315409,Lightning Charging Cable,1,14.95,12/30/19 13:21,"550 7th St, Austin, TX 73301" -315410,USB-C Charging Cable,1,11.95,12/26/19 17:52,"445 10th St, Boston, MA 02215" -315411,USB-C Charging Cable,1,11.95,12/05/19 17:28,"227 Adams St, Atlanta, GA 30301" -315412,AA Batteries (4-pack),1,3.84,12/13/19 12:36,"415 North St, Boston, MA 02215" -315413,AAA Batteries (4-pack),2,2.99,12/30/19 09:21,"569 12th St, Seattle, WA 98101" -315414,Vareebadd Phone,1,400,12/09/19 23:48,"141 1st St, Seattle, WA 98101" -315415,Flatscreen TV,1,300,12/03/19 12:35,"409 North St, Los Angeles, CA 90001" -315416,USB-C Charging Cable,1,11.95,12/29/19 19:21,"276 Forest St, New York City, NY 10001" -315417,AA Batteries (4-pack),1,3.84,12/23/19 20:45,"121 2nd St, Dallas, TX 75001" -315418,Bose SoundSport Headphones,1,99.99,12/20/19 17:38,"204 9th St, San Francisco, CA 94016" -315419,Google Phone,1,600,12/30/19 09:21,"371 South St, Los Angeles, CA 90001" -315419,USB-C Charging Cable,1,11.95,12/30/19 09:21,"371 South St, Los Angeles, CA 90001" -315420,AAA Batteries (4-pack),1,2.99,12/03/19 20:36,"558 Wilson St, New York City, NY 10001" -315421,iPhone,1,700,12/08/19 16:47,"305 Jackson St, Los Angeles, CA 90001" -315422,Wired Headphones,1,11.99,12/17/19 10:20,"954 Highland St, Dallas, TX 75001" -315423,USB-C Charging Cable,1,11.95,12/26/19 19:01,"3 Wilson St, San Francisco, CA 94016" -315424,Flatscreen TV,1,300,12/20/19 15:21,"696 Jackson St, New York City, NY 10001" -315425,Lightning Charging Cable,1,14.95,12/02/19 23:24,"995 River St, Los Angeles, CA 90001" -315426,USB-C Charging Cable,1,11.95,12/09/19 13:02,"745 Chestnut St, San Francisco, CA 94016" -315427,Lightning Charging Cable,1,14.95,12/21/19 19:58,"162 Willow St, San Francisco, CA 94016" -315428,Lightning Charging Cable,1,14.95,12/16/19 15:42,"485 14th St, Dallas, TX 75001" -315429,Lightning Charging Cable,1,14.95,12/30/19 11:23,"230 Cedar St, Dallas, TX 75001" -315430,Apple Airpods Headphones,1,150,12/03/19 11:11,"195 10th St, Austin, TX 73301" -315431,27in 4K Gaming Monitor,1,389.99,12/18/19 22:47,"950 7th St, Boston, MA 02215" -315432,27in FHD Monitor,1,149.99,12/19/19 15:47,"915 Maple St, Portland, OR 97035" -315433,27in FHD Monitor,1,149.99,12/28/19 21:52,"721 Pine St, Boston, MA 02215" -315434,Google Phone,1,600,12/20/19 19:05,"526 10th St, Atlanta, GA 30301" -315435,Macbook Pro Laptop,1,1700,12/05/19 20:09,"703 13th St, Seattle, WA 98101" -315436,27in FHD Monitor,1,149.99,12/19/19 20:57,"449 Washington St, Portland, OR 97035" -315437,USB-C Charging Cable,1,11.95,12/17/19 20:26,"119 Lake St, Atlanta, GA 30301" -315438,20in Monitor,1,109.99,12/02/19 13:56,"394 13th St, New York City, NY 10001" -315439,AAA Batteries (4-pack),3,2.99,12/06/19 07:52,"436 Highland St, San Francisco, CA 94016" -315440,AA Batteries (4-pack),1,3.84,12/05/19 13:14,"811 Wilson St, Seattle, WA 98101" -315441,Google Phone,1,600,12/05/19 12:22,"305 Lakeview St, Portland, OR 97035" -315442,20in Monitor,1,109.99,12/26/19 10:50,"711 Park St, San Francisco, CA 94016" -315443,USB-C Charging Cable,1,11.95,12/15/19 15:41,"198 Chestnut St, Los Angeles, CA 90001" -315444,20in Monitor,1,109.99,12/24/19 10:09,"311 Ridge St, San Francisco, CA 94016" -315445,Lightning Charging Cable,1,14.95,12/22/19 11:12,"562 10th St, San Francisco, CA 94016" -315446,20in Monitor,1,109.99,12/25/19 18:53,"855 Ridge St, Austin, TX 73301" -315447,Lightning Charging Cable,2,14.95,12/03/19 15:16,"583 1st St, Dallas, TX 75001" -315448,27in FHD Monitor,1,149.99,12/08/19 07:12,"17 Dogwood St, Portland, OR 97035" -315449,Lightning Charging Cable,1,14.95,12/31/19 14:47,"832 Willow St, San Francisco, CA 94016" -315450,ThinkPad Laptop,1,999.99,12/10/19 19:30,"468 Lakeview St, Boston, MA 02215" -315451,Apple Airpods Headphones,1,150,12/11/19 22:52,"721 Center St, New York City, NY 10001" -315452,Lightning Charging Cable,1,14.95,12/21/19 18:57,"529 Meadow St, Boston, MA 02215" -315453,USB-C Charging Cable,1,11.95,12/25/19 10:45,"874 9th St, Boston, MA 02215" -315454,20in Monitor,1,109.99,12/27/19 09:53,"120 Lakeview St, New York City, NY 10001" -315455,20in Monitor,1,109.99,12/22/19 14:15,"469 10th St, San Francisco, CA 94016" -315456,AA Batteries (4-pack),1,3.84,12/10/19 21:03,"528 Chestnut St, Boston, MA 02215" -315457,Wired Headphones,1,11.99,12/01/19 12:21,"65 River St, San Francisco, CA 94016" -315458,Google Phone,1,600,12/25/19 12:53,"592 Wilson St, Atlanta, GA 30301" -315458,USB-C Charging Cable,1,11.95,12/25/19 12:53,"592 Wilson St, Atlanta, GA 30301" -315459,34in Ultrawide Monitor,1,379.99,12/15/19 06:46,"22 Meadow St, San Francisco, CA 94016" -315460,Vareebadd Phone,1,400,12/16/19 17:19,"696 North St, Los Angeles, CA 90001" -315460,USB-C Charging Cable,1,11.95,12/16/19 17:19,"696 North St, Los Angeles, CA 90001" -315461,Vareebadd Phone,1,400,12/24/19 15:07,"147 Cedar St, New York City, NY 10001" -315462,Flatscreen TV,1,300,12/03/19 16:47,"514 Church St, Austin, TX 73301" -315463,AAA Batteries (4-pack),1,2.99,12/20/19 12:25,"13 Madison St, San Francisco, CA 94016" -315464,27in FHD Monitor,1,149.99,12/07/19 00:11,"670 13th St, Atlanta, GA 30301" -315465,Vareebadd Phone,1,400,12/22/19 10:45,"294 Cedar St, San Francisco, CA 94016" -315466,USB-C Charging Cable,1,11.95,12/02/19 17:13,"562 Church St, Los Angeles, CA 90001" -315467,AAA Batteries (4-pack),1,2.99,12/01/19 18:15,"697 6th St, Seattle, WA 98101" -315468,AA Batteries (4-pack),2,3.84,12/02/19 18:33,"347 14th St, San Francisco, CA 94016" -315469,ThinkPad Laptop,1,999.99,12/10/19 22:17,"244 Lincoln St, New York City, NY 10001" -315470,Bose SoundSport Headphones,1,99.99,12/06/19 09:15,"419 Chestnut St, Dallas, TX 75001" -315471,USB-C Charging Cable,1,11.95,12/04/19 13:55,"751 Cherry St, New York City, NY 10001" -315472,Wired Headphones,1,11.99,12/17/19 13:21,"724 Walnut St, San Francisco, CA 94016" -315473,27in 4K Gaming Monitor,1,389.99,12/21/19 08:21,"243 Wilson St, Austin, TX 73301" -315474,USB-C Charging Cable,1,11.95,12/29/19 12:34,"845 Sunset St, Seattle, WA 98101" -315475,AA Batteries (4-pack),2,3.84,12/11/19 13:24,"564 River St, Boston, MA 02215" -315476,Flatscreen TV,1,300,12/19/19 11:25,"663 4th St, San Francisco, CA 94016" -315477,Google Phone,1,600,12/26/19 14:14,"705 Maple St, Seattle, WA 98101" -315477,Bose SoundSport Headphones,1,99.99,12/26/19 14:14,"705 Maple St, Seattle, WA 98101" -315478,Apple Airpods Headphones,1,150,12/22/19 21:26,"477 2nd St, Seattle, WA 98101" -315479,AAA Batteries (4-pack),1,2.99,12/17/19 20:48,"100 Dogwood St, San Francisco, CA 94016" -315480,AA Batteries (4-pack),1,3.84,12/28/19 10:48,"36 Jefferson St, Atlanta, GA 30301" -315481,Lightning Charging Cable,1,14.95,12/05/19 10:13,"724 Forest St, Los Angeles, CA 90001" -315482,Wired Headphones,1,11.99,12/02/19 18:46,"693 Chestnut St, San Francisco, CA 94016" -315483,Vareebadd Phone,1,400,12/29/19 20:00,"631 12th St, San Francisco, CA 94016" -315484,Bose SoundSport Headphones,1,99.99,12/24/19 22:02,"896 Elm St, Los Angeles, CA 90001" -315484,Lightning Charging Cable,1,14.95,12/24/19 22:02,"896 Elm St, Los Angeles, CA 90001" -315485,AA Batteries (4-pack),1,3.84,12/18/19 15:24,"783 Willow St, San Francisco, CA 94016" -315485,Lightning Charging Cable,1,14.95,12/18/19 15:24,"783 Willow St, San Francisco, CA 94016" -315486,AAA Batteries (4-pack),1,2.99,12/20/19 10:17,"780 South St, New York City, NY 10001" -315487,AA Batteries (4-pack),1,3.84,12/07/19 11:01,"599 Lakeview St, New York City, NY 10001" -315488,AA Batteries (4-pack),1,3.84,12/30/19 19:38,"891 Willow St, Seattle, WA 98101" -315489,Apple Airpods Headphones,1,150,12/19/19 15:21,"91 Highland St, Los Angeles, CA 90001" -315490,Macbook Pro Laptop,1,1700,12/16/19 12:42,"425 Cedar St, San Francisco, CA 94016" -315491,34in Ultrawide Monitor,1,379.99,12/10/19 12:33,"664 Lincoln St, San Francisco, CA 94016" -315492,34in Ultrawide Monitor,1,379.99,12/08/19 23:03,"990 Jackson St, New York City, NY 10001" -315493,Lightning Charging Cable,1,14.95,12/05/19 18:52,"156 Hill St, New York City, NY 10001" -315494,USB-C Charging Cable,1,11.95,12/25/19 01:04,"70 Hill St, Portland, OR 97035" -315495,Bose SoundSport Headphones,1,99.99,12/05/19 22:10,"799 South St, San Francisco, CA 94016" -315496,Wired Headphones,1,11.99,12/23/19 09:38,"636 Park St, Dallas, TX 75001" -315497,Wired Headphones,1,11.99,12/02/19 14:55,"145 Johnson St, San Francisco, CA 94016" -315498,27in 4K Gaming Monitor,1,389.99,12/21/19 01:55,"106 Madison St, San Francisco, CA 94016" -315499,Lightning Charging Cable,1,14.95,12/21/19 11:06,"285 1st St, Seattle, WA 98101" -315500,Wired Headphones,1,11.99,12/23/19 17:45,"5 North St, Seattle, WA 98101" -315501,Wired Headphones,1,11.99,12/01/19 04:10,"588 Lincoln St, Boston, MA 02215" -315502,Lightning Charging Cable,1,14.95,12/09/19 12:18,"57 Meadow St, Los Angeles, CA 90001" -315503,Bose SoundSport Headphones,1,99.99,12/23/19 14:43,"621 Lincoln St, Boston, MA 02215" -315504,USB-C Charging Cable,1,11.95,12/27/19 18:35,"431 Wilson St, Los Angeles, CA 90001" -,,,,, -315505,Lightning Charging Cable,1,14.95,12/23/19 16:59,"579 Center St, San Francisco, CA 94016" -315506,Flatscreen TV,1,300,12/28/19 12:48,"62 11th St, San Francisco, CA 94016" -315507,20in Monitor,1,109.99,12/05/19 15:10,"213 Lake St, Dallas, TX 75001" -315508,34in Ultrawide Monitor,1,379.99,12/19/19 18:23,"977 1st St, New York City, NY 10001" -315509,iPhone,1,700,12/02/19 08:47,"941 12th St, New York City, NY 10001" -315510,USB-C Charging Cable,1,11.95,12/05/19 12:17,"368 Cedar St, New York City, NY 10001" -315511,20in Monitor,1,109.99,12/17/19 14:07,"560 Jefferson St, New York City, NY 10001" -315512,27in 4K Gaming Monitor,1,389.99,12/20/19 09:17,"290 Walnut St, Dallas, TX 75001" -315513,AAA Batteries (4-pack),1,2.99,12/25/19 12:45,"129 1st St, Seattle, WA 98101" -315514,USB-C Charging Cable,1,11.95,12/20/19 20:22,"17 West St, Los Angeles, CA 90001" -315515,Apple Airpods Headphones,1,150,12/23/19 16:05,"637 11th St, New York City, NY 10001" -315516,Lightning Charging Cable,2,14.95,12/12/19 10:04,"84 Cedar St, Boston, MA 02215" -315517,Apple Airpods Headphones,1,150,12/07/19 14:29,"300 Johnson St, Seattle, WA 98101" -315518,Lightning Charging Cable,1,14.95,12/19/19 09:02,"314 Dogwood St, San Francisco, CA 94016" -315519,Wired Headphones,1,11.99,12/13/19 22:39,"436 Forest St, San Francisco, CA 94016" -315520,LG Dryer,1,600.0,12/31/19 09:06,"705 2nd St, Austin, TX 73301" -315521,Bose SoundSport Headphones,1,99.99,12/13/19 07:06,"967 9th St, Austin, TX 73301" -315522,AA Batteries (4-pack),2,3.84,12/27/19 10:28,"918 Walnut St, Los Angeles, CA 90001" -315523,AA Batteries (4-pack),1,3.84,12/06/19 13:41,"573 West St, San Francisco, CA 94016" -315524,Flatscreen TV,1,300,12/03/19 09:57,"489 Madison St, Seattle, WA 98101" -315525,USB-C Charging Cable,1,11.95,12/25/19 10:56,"796 Washington St, Atlanta, GA 30301" -315526,AA Batteries (4-pack),2,3.84,12/15/19 21:04,"845 Jackson St, Austin, TX 73301" -315527,27in FHD Monitor,1,149.99,12/02/19 11:26,"451 South St, Portland, OR 97035" -315528,USB-C Charging Cable,1,11.95,12/19/19 20:32,"9 Willow St, Atlanta, GA 30301" -315529,Google Phone,1,600,12/04/19 09:09,"396 West St, San Francisco, CA 94016" -315529,USB-C Charging Cable,1,11.95,12/04/19 09:09,"396 West St, San Francisco, CA 94016" -315530,USB-C Charging Cable,1,11.95,12/28/19 23:16,"980 5th St, Atlanta, GA 30301" -315531,27in FHD Monitor,1,149.99,12/14/19 22:29,"440 12th St, Boston, MA 02215" -315532,Lightning Charging Cable,1,14.95,12/20/19 08:50,"786 10th St, Los Angeles, CA 90001" -315533,AA Batteries (4-pack),1,3.84,12/15/19 19:22,"640 Madison St, San Francisco, CA 94016" -315534,AAA Batteries (4-pack),3,2.99,12/25/19 20:12,"327 7th St, Los Angeles, CA 90001" -315535,34in Ultrawide Monitor,1,379.99,12/07/19 14:48,"141 Cedar St, Dallas, TX 75001" -315536,Bose SoundSport Headphones,1,99.99,12/05/19 18:11,"330 Main St, Portland, OR 97035" -315537,Lightning Charging Cable,1,14.95,12/10/19 18:40,"576 6th St, San Francisco, CA 94016" -315538,Macbook Pro Laptop,1,1700,12/18/19 23:56,"633 North St, Dallas, TX 75001" -315539,AAA Batteries (4-pack),2,2.99,12/11/19 09:10,"826 Willow St, San Francisco, CA 94016" -315540,AA Batteries (4-pack),5,3.84,12/14/19 18:35,"35 Lake St, San Francisco, CA 94016" -315541,USB-C Charging Cable,1,11.95,12/08/19 22:35,"610 14th St, New York City, NY 10001" -315542,Google Phone,1,600,12/31/19 11:17,"910 West St, Boston, MA 02215" -315543,AAA Batteries (4-pack),1,2.99,12/01/19 20:04,"655 River St, Atlanta, GA 30301" -315544,USB-C Charging Cable,2,11.95,12/16/19 13:43,"104 12th St, Los Angeles, CA 90001" -,,,,, -315545,Bose SoundSport Headphones,1,99.99,12/27/19 18:17,"553 14th St, New York City, NY 10001" -315546,Wired Headphones,1,11.99,12/11/19 01:13,"615 West St, New York City, NY 10001" -,,,,, -315547,27in 4K Gaming Monitor,1,389.99,12/25/19 23:54,"113 Cedar St, San Francisco, CA 94016" -315548,USB-C Charging Cable,1,11.95,12/22/19 10:20,"558 Lake St, Austin, TX 73301" -315549,Bose SoundSport Headphones,1,99.99,12/24/19 19:03,"294 Chestnut St, Seattle, WA 98101" -315550,Apple Airpods Headphones,1,150,12/26/19 12:37,"707 Lakeview St, Los Angeles, CA 90001" -315551,Bose SoundSport Headphones,1,99.99,12/23/19 09:39,"515 Cedar St, Boston, MA 02215" -315552,USB-C Charging Cable,1,11.95,12/10/19 08:56,"375 6th St, Dallas, TX 75001" -315553,27in FHD Monitor,1,149.99,12/01/19 10:36,"411 Church St, Los Angeles, CA 90001" -315554,ThinkPad Laptop,1,999.99,12/31/19 10:17,"905 Center St, Los Angeles, CA 90001" -315555,34in Ultrawide Monitor,1,379.99,12/09/19 16:00,"679 Park St, Los Angeles, CA 90001" -315556,Macbook Pro Laptop,1,1700,12/21/19 17:57,"145 11th St, New York City, NY 10001" -315557,ThinkPad Laptop,1,999.99,12/18/19 19:17,"689 7th St, Los Angeles, CA 90001" -315558,AA Batteries (4-pack),1,3.84,12/07/19 13:04,"819 Willow St, San Francisco, CA 94016" -315559,USB-C Charging Cable,1,11.95,12/10/19 00:07,"572 South St, New York City, NY 10001" -315560,Apple Airpods Headphones,1,150,12/29/19 22:18,"416 Madison St, New York City, NY 10001" -315561,AA Batteries (4-pack),1,3.84,12/21/19 18:21,"90 Park St, San Francisco, CA 94016" -315562,AAA Batteries (4-pack),2,2.99,12/02/19 19:02,"104 10th St, Austin, TX 73301" -315563,Flatscreen TV,1,300,12/01/19 13:44,"880 Cedar St, Atlanta, GA 30301" -315564,AA Batteries (4-pack),1,3.84,12/03/19 17:47,"945 Spruce St, Boston, MA 02215" -315565,AAA Batteries (4-pack),2,2.99,12/06/19 21:29,"744 13th St, San Francisco, CA 94016" -315566,AAA Batteries (4-pack),1,2.99,12/12/19 17:12,"532 10th St, San Francisco, CA 94016" -315567,AAA Batteries (4-pack),1,2.99,12/02/19 14:06,"304 2nd St, Los Angeles, CA 90001" -315568,34in Ultrawide Monitor,1,379.99,12/30/19 21:11,"100 5th St, Boston, MA 02215" -315569,USB-C Charging Cable,1,11.95,12/21/19 21:49,"482 4th St, Boston, MA 02215" -315570,Wired Headphones,1,11.99,12/25/19 15:23,"340 Cherry St, Boston, MA 02215" -315571,Apple Airpods Headphones,1,150,12/04/19 22:49,"74 8th St, Portland, OR 97035" -315572,Wired Headphones,1,11.99,12/19/19 18:40,"135 Chestnut St, Los Angeles, CA 90001" -315573,Apple Airpods Headphones,1,150,12/29/19 19:56,"496 8th St, Seattle, WA 98101" -315574,Lightning Charging Cable,1,14.95,12/20/19 05:47,"187 Spruce St, San Francisco, CA 94016" -315575,Lightning Charging Cable,1,14.95,12/28/19 18:28,"763 Forest St, Atlanta, GA 30301" -315576,Wired Headphones,1,11.99,12/13/19 18:06,"619 Main St, Boston, MA 02215" -315577,Bose SoundSport Headphones,1,99.99,12/09/19 19:50,"602 Ridge St, New York City, NY 10001" -315578,27in FHD Monitor,1,149.99,12/26/19 11:06,"352 6th St, Los Angeles, CA 90001" -315579,Lightning Charging Cable,1,14.95,12/24/19 11:31,"367 11th St, San Francisco, CA 94016" -315580,iPhone,1,700,12/27/19 17:46,"432 Willow St, Los Angeles, CA 90001" -315581,AA Batteries (4-pack),1,3.84,12/13/19 15:27,"118 Walnut St, Boston, MA 02215" -315582,Lightning Charging Cable,1,14.95,12/28/19 10:12,"397 Cedar St, Austin, TX 73301" -315583,20in Monitor,1,109.99,12/20/19 12:37,"885 12th St, Los Angeles, CA 90001" -315584,AA Batteries (4-pack),1,3.84,12/26/19 16:50,"181 Pine St, New York City, NY 10001" -315585,AAA Batteries (4-pack),1,2.99,12/13/19 18:42,"646 1st St, San Francisco, CA 94016" -315586,Wired Headphones,1,11.99,12/09/19 13:52,"947 Jefferson St, Los Angeles, CA 90001" -315587,USB-C Charging Cable,3,11.95,12/13/19 15:45,"662 Spruce St, Atlanta, GA 30301" -315588,Apple Airpods Headphones,1,150,12/19/19 13:23,"326 Hickory St, Dallas, TX 75001" -315589,Lightning Charging Cable,1,14.95,12/09/19 22:34,"334 Church St, Atlanta, GA 30301" -315590,AAA Batteries (4-pack),2,2.99,12/09/19 04:24,"443 Hill St, San Francisco, CA 94016" -315591,Wired Headphones,1,11.99,12/30/19 10:25,"456 6th St, Los Angeles, CA 90001" -315592,AAA Batteries (4-pack),1,2.99,12/08/19 00:09,"245 Walnut St, San Francisco, CA 94016" -315593,Flatscreen TV,1,300,12/12/19 21:10,"447 Cedar St, San Francisco, CA 94016" -315594,Bose SoundSport Headphones,1,99.99,12/16/19 16:57,"829 River St, Boston, MA 02215" -315595,Apple Airpods Headphones,1,150,12/26/19 22:46,"564 South St, San Francisco, CA 94016" -315596,Google Phone,1,600,12/14/19 13:42,"82 13th St, Dallas, TX 75001" -315597,Apple Airpods Headphones,1,150,12/05/19 20:11,"703 10th St, Boston, MA 02215" -315598,27in FHD Monitor,1,149.99,12/26/19 06:45,"609 1st St, San Francisco, CA 94016" -315599,AA Batteries (4-pack),1,3.84,12/11/19 16:08,"837 11th St, Austin, TX 73301" -315600,Lightning Charging Cable,1,14.95,12/28/19 17:22,"163 Sunset St, Los Angeles, CA 90001" -315601,Lightning Charging Cable,1,14.95,12/23/19 17:22,"179 Hill St, Austin, TX 73301" -315602,Lightning Charging Cable,1,14.95,12/29/19 12:44,"835 1st St, Los Angeles, CA 90001" -315603,Lightning Charging Cable,1,14.95,12/30/19 19:05,"781 8th St, Austin, TX 73301" -315604,Macbook Pro Laptop,1,1700,12/23/19 22:26,"12 4th St, Los Angeles, CA 90001" -315605,Lightning Charging Cable,1,14.95,12/11/19 22:33,"664 West St, Boston, MA 02215" -315606,iPhone,1,700,12/17/19 22:14,"796 10th St, San Francisco, CA 94016" -315607,ThinkPad Laptop,1,999.99,12/17/19 14:18,"472 Elm St, New York City, NY 10001" -315608,Wired Headphones,1,11.99,12/12/19 19:54,"65 North St, San Francisco, CA 94016" -315609,AA Batteries (4-pack),1,3.84,12/07/19 13:53,"540 Lincoln St, San Francisco, CA 94016" -315610,Macbook Pro Laptop,1,1700,12/18/19 20:36,"178 Adams St, Seattle, WA 98101" -315611,USB-C Charging Cable,1,11.95,12/21/19 21:03,"924 North St, Austin, TX 73301" -315612,Lightning Charging Cable,1,14.95,12/29/19 07:30,"541 Elm St, New York City, NY 10001" -315613,ThinkPad Laptop,1,999.99,12/06/19 12:54,"454 7th St, Portland, OR 97035" -315614,Bose SoundSport Headphones,1,99.99,12/14/19 02:39,"726 Lincoln St, San Francisco, CA 94016" -315615,AAA Batteries (4-pack),2,2.99,12/06/19 15:36,"920 Ridge St, Seattle, WA 98101" -315616,Apple Airpods Headphones,1,150,12/07/19 22:30,"78 8th St, Los Angeles, CA 90001" -315617,Apple Airpods Headphones,1,150,12/20/19 12:13,"486 Adams St, Boston, MA 02215" -315618,Apple Airpods Headphones,1,150,12/05/19 13:59,"390 Elm St, Los Angeles, CA 90001" -315619,USB-C Charging Cable,2,11.95,12/07/19 15:40,"404 4th St, New York City, NY 10001" -315620,AA Batteries (4-pack),1,3.84,12/31/19 15:29,"483 Hickory St, San Francisco, CA 94016" -315621,AA Batteries (4-pack),1,3.84,12/19/19 02:16,"164 14th St, San Francisco, CA 94016" -315622,USB-C Charging Cable,1,11.95,12/02/19 22:40,"210 Hill St, Los Angeles, CA 90001" -315623,AA Batteries (4-pack),1,3.84,12/12/19 14:10,"910 Park St, Portland, OR 97035" -315624,AAA Batteries (4-pack),1,2.99,12/05/19 17:02,"72 West St, Los Angeles, CA 90001" -315625,AA Batteries (4-pack),1,3.84,12/22/19 16:54,"935 10th St, Portland, OR 97035" -315626,27in 4K Gaming Monitor,1,389.99,12/04/19 23:27,"885 Ridge St, San Francisco, CA 94016" -315627,AAA Batteries (4-pack),4,2.99,12/02/19 23:40,"29 8th St, Los Angeles, CA 90001" -315628,Apple Airpods Headphones,1,150,12/11/19 08:00,"705 Meadow St, Boston, MA 02215" -315629,Bose SoundSport Headphones,1,99.99,12/28/19 13:35,"46 Ridge St, Los Angeles, CA 90001" -315630,AAA Batteries (4-pack),1,2.99,12/12/19 22:43,"604 Jefferson St, Seattle, WA 98101" -315631,iPhone,1,700,12/12/19 12:19,"46 Maple St, Austin, TX 73301" -315632,Lightning Charging Cable,1,14.95,12/05/19 20:19,"796 Ridge St, Dallas, TX 75001" -315633,USB-C Charging Cable,1,11.95,12/22/19 13:10,"184 Center St, Seattle, WA 98101" -315634,Bose SoundSport Headphones,1,99.99,12/12/19 22:23,"625 River St, Seattle, WA 98101" -315635,27in 4K Gaming Monitor,1,389.99,12/27/19 17:00,"435 Cherry St, New York City, NY 10001" -315636,Apple Airpods Headphones,1,150,12/25/19 15:44,"718 2nd St, San Francisco, CA 94016" -315637,Flatscreen TV,1,300,12/08/19 22:30,"19 5th St, San Francisco, CA 94016" -315638,20in Monitor,1,109.99,12/25/19 00:53,"235 Chestnut St, Portland, OR 97035" -315639,27in 4K Gaming Monitor,1,389.99,12/21/19 14:11,"849 Meadow St, New York City, NY 10001" -315639,Lightning Charging Cable,1,14.95,12/21/19 14:11,"849 Meadow St, New York City, NY 10001" -315640,Bose SoundSport Headphones,1,99.99,12/21/19 12:35,"158 Forest St, Seattle, WA 98101" -315641,Wired Headphones,1,11.99,12/05/19 18:35,"177 Adams St, San Francisco, CA 94016" -315642,AA Batteries (4-pack),2,3.84,12/10/19 14:08,"48 Jefferson St, San Francisco, CA 94016" -315643,iPhone,1,700,12/21/19 23:51,"611 Lakeview St, Dallas, TX 75001" -315644,AAA Batteries (4-pack),2,2.99,12/04/19 05:04,"79 Madison St, San Francisco, CA 94016" -315645,USB-C Charging Cable,1,11.95,12/23/19 10:25,"211 4th St, San Francisco, CA 94016" -315646,AA Batteries (4-pack),1,3.84,12/20/19 21:01,"720 North St, Seattle, WA 98101" -315647,20in Monitor,1,109.99,12/16/19 19:40,"714 Johnson St, San Francisco, CA 94016" -315648,Lightning Charging Cable,1,14.95,12/12/19 18:08,"404 12th St, Portland, OR 97035" -315649,AA Batteries (4-pack),1,3.84,12/04/19 21:12,"651 Spruce St, San Francisco, CA 94016" -315650,Lightning Charging Cable,1,14.95,12/22/19 12:36,"131 Center St, San Francisco, CA 94016" -315651,Lightning Charging Cable,1,14.95,12/13/19 07:09,"508 Chestnut St, Atlanta, GA 30301" -315652,Flatscreen TV,1,300,12/26/19 12:49,"880 Church St, Austin, TX 73301" -315653,27in FHD Monitor,1,149.99,12/10/19 19:25,"521 Main St, Portland, ME 04101" -315654,Apple Airpods Headphones,1,150,12/25/19 21:40,"995 8th St, Portland, OR 97035" -315655,20in Monitor,1,109.99,12/04/19 17:29,"444 Johnson St, New York City, NY 10001" -315656,Lightning Charging Cable,1,14.95,12/09/19 18:23,"822 Adams St, Boston, MA 02215" -315657,27in FHD Monitor,1,149.99,12/01/19 17:53,"890 Jefferson St, San Francisco, CA 94016" -315658,Apple Airpods Headphones,1,150,12/22/19 22:07,"825 14th St, New York City, NY 10001" -315659,Apple Airpods Headphones,1,150,12/16/19 11:04,"825 11th St, Dallas, TX 75001" -315660,AA Batteries (4-pack),2,3.84,12/09/19 19:31,"926 South St, Seattle, WA 98101" -315661,Apple Airpods Headphones,1,150,12/25/19 22:33,"805 Hickory St, San Francisco, CA 94016" -315662,AAA Batteries (4-pack),1,2.99,12/01/19 12:44,"832 West St, New York City, NY 10001" -315663,27in FHD Monitor,1,149.99,12/27/19 16:59,"455 7th St, San Francisco, CA 94016" -315664,Flatscreen TV,1,300,12/31/19 22:44,"837 Meadow St, Seattle, WA 98101" -315665,USB-C Charging Cable,1,11.95,12/08/19 11:23,"552 Forest St, Los Angeles, CA 90001" -315666,Lightning Charging Cable,1,14.95,12/22/19 18:02,"506 Sunset St, San Francisco, CA 94016" -315667,USB-C Charging Cable,1,11.95,12/20/19 09:59,"238 Center St, Boston, MA 02215" -315668,AAA Batteries (4-pack),1,2.99,12/09/19 15:40,"345 12th St, New York City, NY 10001" -315669,Bose SoundSport Headphones,1,99.99,12/11/19 13:07,"777 Dogwood St, Seattle, WA 98101" -315670,ThinkPad Laptop,1,999.99,12/08/19 21:38,"599 Chestnut St, Boston, MA 02215" -315671,iPhone,1,700,12/05/19 16:56,"480 Main St, Portland, OR 97035" -315672,Bose SoundSport Headphones,1,99.99,12/17/19 16:34,"652 11th St, Los Angeles, CA 90001" -315673,Apple Airpods Headphones,1,150,12/29/19 20:53,"186 Spruce St, Boston, MA 02215" -315674,AA Batteries (4-pack),2,3.84,12/24/19 18:38,"495 Main St, Los Angeles, CA 90001" -315675,Bose SoundSport Headphones,1,99.99,12/02/19 17:47,"95 9th St, New York City, NY 10001" -315676,Google Phone,1,600,12/24/19 16:17,"986 Lakeview St, Dallas, TX 75001" -315677,AAA Batteries (4-pack),2,2.99,12/14/19 15:13,"549 Sunset St, San Francisco, CA 94016" -315678,Wired Headphones,1,11.99,12/21/19 18:54,"427 2nd St, Dallas, TX 75001" -315679,34in Ultrawide Monitor,1,379.99,12/22/19 20:22,"245 6th St, Los Angeles, CA 90001" -315680,Macbook Pro Laptop,1,1700,12/28/19 14:11,"13 Lakeview St, San Francisco, CA 94016" -315681,AAA Batteries (4-pack),1,2.99,12/12/19 18:38,"981 West St, San Francisco, CA 94016" -315682,Wired Headphones,2,11.99,12/26/19 22:39,"710 10th St, New York City, NY 10001" -315683,ThinkPad Laptop,1,999.99,12/02/19 13:16,"890 4th St, Boston, MA 02215" -315684,Google Phone,1,600,12/15/19 17:25,"236 Willow St, San Francisco, CA 94016" -315685,AAA Batteries (4-pack),1,2.99,12/19/19 22:50,"86 Lake St, Boston, MA 02215" -315686,Wired Headphones,2,11.99,12/03/19 14:51,"868 Adams St, San Francisco, CA 94016" -315687,Wired Headphones,1,11.99,12/12/19 18:08,"990 Meadow St, Boston, MA 02215" -315688,iPhone,1,700,12/05/19 19:59,"126 Cedar St, Dallas, TX 75001" -315689,Bose SoundSport Headphones,1,99.99,12/19/19 15:48,"870 14th St, San Francisco, CA 94016" -315690,Google Phone,1,600,12/07/19 20:41,"923 River St, New York City, NY 10001" -315691,Wired Headphones,1,11.99,12/13/19 16:22,"115 Meadow St, San Francisco, CA 94016" -315692,AAA Batteries (4-pack),1,2.99,12/23/19 19:55,"806 Lake St, Atlanta, GA 30301" -315693,Apple Airpods Headphones,1,150,12/15/19 10:35,"171 South St, Los Angeles, CA 90001" -315694,Bose SoundSport Headphones,1,99.99,12/03/19 14:07,"391 Highland St, San Francisco, CA 94016" -315695,Bose SoundSport Headphones,1,99.99,12/06/19 10:09,"654 West St, Seattle, WA 98101" -315696,27in FHD Monitor,1,149.99,12/16/19 20:22,"732 Highland St, San Francisco, CA 94016" -315697,iPhone,1,700,12/01/19 10:09,"521 Forest St, San Francisco, CA 94016" -315698,Apple Airpods Headphones,1,150,12/16/19 17:54,"392 Highland St, New York City, NY 10001" -315699,AAA Batteries (4-pack),1,2.99,12/28/19 07:19,"874 South St, Atlanta, GA 30301" -315700,27in 4K Gaming Monitor,1,389.99,12/16/19 18:06,"756 Highland St, San Francisco, CA 94016" -315701,20in Monitor,1,109.99,12/16/19 23:47,"902 9th St, San Francisco, CA 94016" -315702,Vareebadd Phone,1,400,12/09/19 14:11,"728 Park St, Los Angeles, CA 90001" -315703,20in Monitor,1,109.99,12/28/19 13:20,"934 Lake St, Boston, MA 02215" -315704,AA Batteries (4-pack),1,3.84,12/27/19 12:36,"370 Elm St, Los Angeles, CA 90001" -315705,USB-C Charging Cable,1,11.95,12/08/19 17:11,"609 North St, Atlanta, GA 30301" -315706,USB-C Charging Cable,1,11.95,12/09/19 13:08,"33 Elm St, Portland, OR 97035" -315707,AA Batteries (4-pack),2,3.84,12/15/19 17:35,"288 Meadow St, San Francisco, CA 94016" -315708,Lightning Charging Cable,2,14.95,12/28/19 12:57,"617 5th St, New York City, NY 10001" -315709,AA Batteries (4-pack),1,3.84,12/18/19 18:31,"138 11th St, San Francisco, CA 94016" -315710,AA Batteries (4-pack),1,3.84,12/21/19 20:34,"165 4th St, San Francisco, CA 94016" -315711,Lightning Charging Cable,1,14.95,12/13/19 14:44,"382 Ridge St, Los Angeles, CA 90001" -315712,27in 4K Gaming Monitor,1,389.99,12/26/19 22:03,"942 Lakeview St, Atlanta, GA 30301" -315713,Wired Headphones,1,11.99,12/09/19 14:02,"556 11th St, Atlanta, GA 30301" -315714,USB-C Charging Cable,1,11.95,12/03/19 08:30,"342 Hill St, Atlanta, GA 30301" -315715,Wired Headphones,1,11.99,12/10/19 14:51,"719 Ridge St, New York City, NY 10001" -315716,AAA Batteries (4-pack),1,2.99,12/14/19 06:17,"152 1st St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -315717,Lightning Charging Cable,1,14.95,12/04/19 17:26,"726 Jackson St, New York City, NY 10001" -315718,34in Ultrawide Monitor,1,379.99,12/13/19 19:35,"571 9th St, Dallas, TX 75001" -315719,Apple Airpods Headphones,1,150,12/13/19 08:58,"142 Spruce St, Atlanta, GA 30301" -315720,Apple Airpods Headphones,1,150,12/26/19 11:39,"397 Madison St, Seattle, WA 98101" -315721,USB-C Charging Cable,2,11.95,12/28/19 11:49,"284 South St, Dallas, TX 75001" -315722,27in FHD Monitor,1,149.99,12/05/19 21:41,"720 Pine St, Boston, MA 02215" -315723,Wired Headphones,1,11.99,12/26/19 12:59,"927 Maple St, Portland, OR 97035" -315724,USB-C Charging Cable,1,11.95,12/06/19 15:16,"553 Pine St, New York City, NY 10001" -315725,Lightning Charging Cable,1,14.95,12/12/19 10:24,"380 West St, Portland, OR 97035" -315726,Lightning Charging Cable,1,14.95,12/08/19 09:33,"294 West St, Portland, OR 97035" -315727,Bose SoundSport Headphones,1,99.99,12/09/19 14:47,"33 Willow St, Los Angeles, CA 90001" -315728,Lightning Charging Cable,2,14.95,12/16/19 17:26,"826 Maple St, Portland, OR 97035" -315729,Wired Headphones,1,11.99,12/17/19 19:14,"271 12th St, Portland, OR 97035" -315730,Bose SoundSport Headphones,1,99.99,12/09/19 23:11,"615 Lincoln St, San Francisco, CA 94016" -315731,iPhone,1,700,12/24/19 19:49,"93 Church St, Los Angeles, CA 90001" -315732,USB-C Charging Cable,1,11.95,12/09/19 11:11,"225 Park St, San Francisco, CA 94016" -315733,Wired Headphones,1,11.99,12/16/19 20:05,"166 West St, San Francisco, CA 94016" -315734,Lightning Charging Cable,1,14.95,12/28/19 21:36,"731 Hickory St, New York City, NY 10001" -315735,Bose SoundSport Headphones,1,99.99,12/08/19 10:41,"417 Madison St, Boston, MA 02215" -315736,AA Batteries (4-pack),2,3.84,12/05/19 11:23,"359 8th St, San Francisco, CA 94016" -315737,USB-C Charging Cable,1,11.95,12/09/19 14:13,"198 11th St, Los Angeles, CA 90001" -315738,AAA Batteries (4-pack),1,2.99,12/28/19 17:17,"526 North St, New York City, NY 10001" -315739,USB-C Charging Cable,1,11.95,12/11/19 16:35,"790 7th St, Boston, MA 02215" -315740,Bose SoundSport Headphones,1,99.99,12/15/19 23:15,"487 Park St, Los Angeles, CA 90001" -315741,20in Monitor,1,109.99,12/23/19 17:46,"149 Sunset St, Atlanta, GA 30301" -315742,USB-C Charging Cable,1,11.95,12/01/19 22:06,"312 Ridge St, Austin, TX 73301" -315743,Bose SoundSport Headphones,1,99.99,12/16/19 02:35,"577 Sunset St, Boston, MA 02215" -315744,Macbook Pro Laptop,1,1700,12/22/19 17:40,"738 Dogwood St, Boston, MA 02215" -315745,USB-C Charging Cable,1,11.95,12/20/19 07:07,"491 Sunset St, San Francisco, CA 94016" -315746,AA Batteries (4-pack),2,3.84,12/15/19 20:15,"709 5th St, Boston, MA 02215" -315747,USB-C Charging Cable,1,11.95,12/23/19 11:48,"529 Cedar St, Los Angeles, CA 90001" -315748,AA Batteries (4-pack),2,3.84,12/24/19 13:38,"314 2nd St, Portland, OR 97035" -315749,AAA Batteries (4-pack),1,2.99,12/07/19 13:38,"777 Jackson St, New York City, NY 10001" -315750,USB-C Charging Cable,1,11.95,12/02/19 09:04,"623 Madison St, Boston, MA 02215" -315751,AA Batteries (4-pack),1,3.84,12/18/19 07:45,"99 Maple St, Dallas, TX 75001" -315752,USB-C Charging Cable,1,11.95,12/22/19 23:49,"691 Dogwood St, San Francisco, CA 94016" -315753,AAA Batteries (4-pack),1,2.99,12/05/19 13:35,"138 Chestnut St, Austin, TX 73301" -315754,AAA Batteries (4-pack),1,2.99,12/09/19 16:25,"556 South St, San Francisco, CA 94016" -315755,AA Batteries (4-pack),3,3.84,12/30/19 17:17,"267 Highland St, San Francisco, CA 94016" -315756,27in 4K Gaming Monitor,1,389.99,12/19/19 15:24,"564 Johnson St, New York City, NY 10001" -315757,Wired Headphones,1,11.99,12/30/19 11:28,"373 Lincoln St, Los Angeles, CA 90001" -315758,20in Monitor,1,109.99,12/19/19 12:43,"916 5th St, San Francisco, CA 94016" -315759,Wired Headphones,1,11.99,12/21/19 10:14,"492 North St, Los Angeles, CA 90001" -315760,34in Ultrawide Monitor,1,379.99,12/21/19 11:56,"22 Jackson St, Dallas, TX 75001" -315761,Lightning Charging Cable,1,14.95,12/11/19 08:01,"13 Forest St, New York City, NY 10001" -315762,USB-C Charging Cable,1,11.95,12/27/19 06:51,"116 Ridge St, Portland, OR 97035" -315763,27in FHD Monitor,1,149.99,12/24/19 19:12,"970 Jefferson St, Atlanta, GA 30301" -315764,Wired Headphones,1,11.99,12/31/19 14:01,"523 Walnut St, Seattle, WA 98101" -315765,34in Ultrawide Monitor,1,379.99,12/25/19 11:06,"648 12th St, Los Angeles, CA 90001" -315766,Vareebadd Phone,1,400,12/21/19 18:13,"431 Hill St, Boston, MA 02215" -315766,USB-C Charging Cable,1,11.95,12/21/19 18:13,"431 Hill St, Boston, MA 02215" -315767,27in FHD Monitor,1,149.99,12/17/19 21:54,"781 1st St, Austin, TX 73301" -315768,ThinkPad Laptop,1,999.99,12/20/19 21:28,"879 4th St, New York City, NY 10001" -315769,Wired Headphones,1,11.99,12/09/19 12:21,"638 Hickory St, San Francisco, CA 94016" -315770,Wired Headphones,1,11.99,12/14/19 22:52,"809 Jefferson St, San Francisco, CA 94016" -315771,Lightning Charging Cable,1,14.95,12/21/19 18:13,"246 Ridge St, San Francisco, CA 94016" -315772,Bose SoundSport Headphones,1,99.99,12/19/19 12:22,"778 Dogwood St, Portland, OR 97035" -315773,AA Batteries (4-pack),1,3.84,12/07/19 11:52,"492 10th St, San Francisco, CA 94016" -315774,USB-C Charging Cable,2,11.95,12/19/19 23:38,"134 Ridge St, San Francisco, CA 94016" -315775,AA Batteries (4-pack),1,3.84,12/23/19 13:58,"252 Willow St, San Francisco, CA 94016" -315776,Apple Airpods Headphones,1,150,12/07/19 18:49,"86 Willow St, Austin, TX 73301" -315777,Lightning Charging Cable,1,14.95,12/17/19 02:12,"742 Center St, Seattle, WA 98101" -315778,USB-C Charging Cable,1,11.95,12/18/19 05:09,"847 5th St, Portland, OR 97035" -315779,Wired Headphones,1,11.99,12/23/19 10:58,"70 Cedar St, Boston, MA 02215" -315780,AA Batteries (4-pack),2,3.84,12/30/19 10:33,"585 Elm St, New York City, NY 10001" -315781,Lightning Charging Cable,2,14.95,12/08/19 17:57,"642 14th St, Seattle, WA 98101" -315782,Apple Airpods Headphones,1,150,12/21/19 20:00,"148 Ridge St, San Francisco, CA 94016" -315783,Bose SoundSport Headphones,1,99.99,12/29/19 21:15,"801 Cherry St, New York City, NY 10001" -315784,Lightning Charging Cable,1,14.95,12/25/19 13:31,"650 1st St, Austin, TX 73301" -315785,Lightning Charging Cable,1,14.95,12/13/19 15:38,"701 Adams St, San Francisco, CA 94016" -315786,Lightning Charging Cable,1,14.95,12/24/19 15:53,"93 Main St, Austin, TX 73301" -315787,AA Batteries (4-pack),2,3.84,12/28/19 11:06,"598 North St, San Francisco, CA 94016" -315788,Apple Airpods Headphones,1,150,12/03/19 09:42,"472 West St, San Francisco, CA 94016" -315789,20in Monitor,1,109.99,12/07/19 08:08,"125 Lakeview St, Boston, MA 02215" -315790,Google Phone,1,600,12/21/19 01:18,"789 Madison St, San Francisco, CA 94016" -315791,AAA Batteries (4-pack),1,2.99,12/10/19 09:14,"99 Walnut St, San Francisco, CA 94016" -315792,Apple Airpods Headphones,1,150,12/23/19 22:30,"752 Madison St, Dallas, TX 75001" -315793,AA Batteries (4-pack),1,3.84,12/30/19 08:51,"480 11th St, Seattle, WA 98101" -,,,,, -315794,USB-C Charging Cable,1,11.95,12/20/19 21:25,"230 Pine St, Boston, MA 02215" -315795,Lightning Charging Cable,1,14.95,12/10/19 00:38,"472 Chestnut St, New York City, NY 10001" -315796,Wired Headphones,1,11.99,12/17/19 19:20,"287 Dogwood St, San Francisco, CA 94016" -315797,USB-C Charging Cable,1,11.95,12/17/19 23:15,"173 5th St, Seattle, WA 98101" -315798,Lightning Charging Cable,1,14.95,12/26/19 12:25,"405 Lake St, Atlanta, GA 30301" -315799,Lightning Charging Cable,1,14.95,12/08/19 17:17,"287 Jackson St, San Francisco, CA 94016" -315800,Bose SoundSport Headphones,1,99.99,12/08/19 12:44,"349 West St, Austin, TX 73301" -315801,Vareebadd Phone,1,400,12/29/19 16:51,"878 10th St, San Francisco, CA 94016" -315801,USB-C Charging Cable,1,11.95,12/29/19 16:51,"878 10th St, San Francisco, CA 94016" -315801,Wired Headphones,1,11.99,12/29/19 16:51,"878 10th St, San Francisco, CA 94016" -315802,Wired Headphones,1,11.99,12/20/19 08:53,"16 Church St, Los Angeles, CA 90001" -315803,Lightning Charging Cable,2,14.95,12/01/19 16:47,"520 Church St, Los Angeles, CA 90001" -315804,Macbook Pro Laptop,1,1700,12/01/19 21:07,"954 Wilson St, Dallas, TX 75001" -315805,34in Ultrawide Monitor,1,379.99,12/07/19 00:18,"646 North St, Los Angeles, CA 90001" -315806,27in FHD Monitor,1,149.99,12/28/19 14:36,"848 12th St, Boston, MA 02215" -315807,Lightning Charging Cable,1,14.95,12/02/19 16:56,"889 Jefferson St, Los Angeles, CA 90001" -315808,Wired Headphones,1,11.99,12/28/19 14:56,"212 Washington St, Seattle, WA 98101" -315809,Bose SoundSport Headphones,1,99.99,12/22/19 09:38,"189 North St, San Francisco, CA 94016" -315810,USB-C Charging Cable,2,11.95,12/01/19 10:40,"570 Dogwood St, New York City, NY 10001" -315811,Bose SoundSport Headphones,1,99.99,12/25/19 12:44,"956 Wilson St, Atlanta, GA 30301" -315812,Flatscreen TV,1,300,12/11/19 11:46,"714 West St, Los Angeles, CA 90001" -315812,USB-C Charging Cable,1,11.95,12/11/19 11:46,"714 West St, Los Angeles, CA 90001" -315813,LG Washing Machine,1,600.0,12/01/19 17:38,"947 Lincoln St, Dallas, TX 75001" -315814,AAA Batteries (4-pack),1,2.99,12/25/19 15:56,"5 2nd St, San Francisco, CA 94016" -315815,Lightning Charging Cable,1,14.95,12/14/19 21:40,"326 Spruce St, Seattle, WA 98101" -315816,Bose SoundSport Headphones,1,99.99,12/09/19 13:51,"135 Jackson St, San Francisco, CA 94016" -315817,Google Phone,1,600,12/07/19 13:47,"507 Hill St, New York City, NY 10001" -315818,Lightning Charging Cable,1,14.95,12/19/19 08:47,"528 Washington St, Boston, MA 02215" -315819,Apple Airpods Headphones,1,150,12/03/19 14:21,"444 11th St, Atlanta, GA 30301" -315820,Lightning Charging Cable,1,14.95,12/21/19 12:24,"784 Lincoln St, New York City, NY 10001" -315821,Lightning Charging Cable,1,14.95,12/03/19 08:17,"963 Lincoln St, Austin, TX 73301" -315822,27in FHD Monitor,1,149.99,12/25/19 22:52,"662 13th St, San Francisco, CA 94016" -315823,Bose SoundSport Headphones,1,99.99,12/30/19 00:17,"686 Wilson St, New York City, NY 10001" -315824,Apple Airpods Headphones,1,150,12/29/19 22:49,"859 Hickory St, San Francisco, CA 94016" -315825,AAA Batteries (4-pack),1,2.99,12/26/19 16:26,"126 Elm St, New York City, NY 10001" -315826,Google Phone,1,600,12/25/19 13:36,"513 4th St, Dallas, TX 75001" -315827,Apple Airpods Headphones,1,150,12/30/19 12:59,"435 Forest St, San Francisco, CA 94016" -315828,Apple Airpods Headphones,1,150,12/07/19 09:54,"58 River St, New York City, NY 10001" -315829,iPhone,1,700,12/18/19 15:12,"904 Lincoln St, Seattle, WA 98101" -315829,Lightning Charging Cable,1,14.95,12/18/19 15:12,"904 Lincoln St, Seattle, WA 98101" -315830,Google Phone,1,600,12/04/19 17:48,"360 Highland St, Dallas, TX 75001" -315831,Google Phone,1,600,12/24/19 20:24,"848 Maple St, Los Angeles, CA 90001" -315832,27in 4K Gaming Monitor,1,389.99,12/11/19 19:30,"495 Dogwood St, San Francisco, CA 94016" -315833,27in 4K Gaming Monitor,1,389.99,12/06/19 20:48,"599 5th St, Atlanta, GA 30301" -315834,AA Batteries (4-pack),1,3.84,12/07/19 14:29,"464 Wilson St, Dallas, TX 75001" -315835,Wired Headphones,1,11.99,12/26/19 15:40,"92 Jefferson St, New York City, NY 10001" -315836,AA Batteries (4-pack),2,3.84,12/09/19 18:14,"410 Cherry St, San Francisco, CA 94016" -315837,Wired Headphones,1,11.99,12/19/19 08:25,"739 Center St, San Francisco, CA 94016" -315838,AAA Batteries (4-pack),3,2.99,12/11/19 06:39,"121 7th St, Seattle, WA 98101" -315839,Wired Headphones,1,11.99,12/29/19 14:13,"721 Church St, New York City, NY 10001" -315840,AA Batteries (4-pack),1,3.84,12/26/19 10:39,"303 8th St, San Francisco, CA 94016" -315841,iPhone,1,700,12/31/19 07:05,"719 Lake St, Dallas, TX 75001" -315841,Apple Airpods Headphones,1,150,12/31/19 07:05,"719 Lake St, Dallas, TX 75001" -315841,Wired Headphones,1,11.99,12/31/19 07:05,"719 Lake St, Dallas, TX 75001" -315842,iPhone,1,700,12/07/19 22:01,"212 Forest St, Los Angeles, CA 90001" -315843,Lightning Charging Cable,1,14.95,12/30/19 13:06,"335 South St, Los Angeles, CA 90001" -315844,iPhone,1,700,12/18/19 11:40,"287 9th St, Dallas, TX 75001" -315845,Lightning Charging Cable,1,14.95,12/24/19 12:45,"155 Spruce St, New York City, NY 10001" -315846,20in Monitor,1,109.99,12/11/19 00:06,"755 9th St, Boston, MA 02215" -315847,Wired Headphones,1,11.99,12/03/19 18:50,"763 Hill St, Boston, MA 02215" -315848,27in FHD Monitor,1,149.99,12/01/19 21:04,"764 9th St, New York City, NY 10001" -315849,34in Ultrawide Monitor,1,379.99,12/14/19 14:43,"872 12th St, New York City, NY 10001" -315850,AA Batteries (4-pack),2,3.84,12/09/19 12:33,"452 4th St, Los Angeles, CA 90001" -315851,Lightning Charging Cable,1,14.95,12/15/19 06:43,"978 Church St, San Francisco, CA 94016" -315852,Wired Headphones,1,11.99,12/27/19 19:42,"659 South St, New York City, NY 10001" -315853,USB-C Charging Cable,1,11.95,12/11/19 14:54,"999 Dogwood St, San Francisco, CA 94016" -315854,Wired Headphones,1,11.99,12/27/19 00:27,"912 Park St, San Francisco, CA 94016" -315855,27in 4K Gaming Monitor,1,389.99,12/05/19 13:05,"59 Jackson St, New York City, NY 10001" -315856,Macbook Pro Laptop,1,1700,12/27/19 12:40,"992 Wilson St, San Francisco, CA 94016" -315857,iPhone,1,700,12/29/19 16:25,"221 7th St, San Francisco, CA 94016" -315858,34in Ultrawide Monitor,1,379.99,12/05/19 11:53,"687 Jefferson St, Atlanta, GA 30301" -315859,Lightning Charging Cable,1,14.95,12/14/19 22:38,"365 Chestnut St, Seattle, WA 98101" -315860,Macbook Pro Laptop,1,1700,12/15/19 17:45,"792 Lakeview St, New York City, NY 10001" -315861,USB-C Charging Cable,1,11.95,12/29/19 17:48,"704 Lincoln St, Atlanta, GA 30301" -315862,USB-C Charging Cable,1,11.95,12/21/19 22:56,"209 River St, Boston, MA 02215" -315863,Macbook Pro Laptop,1,1700,12/09/19 23:34,"900 14th St, Seattle, WA 98101" -315864,iPhone,1,700,12/09/19 20:30,"573 Chestnut St, New York City, NY 10001" -315865,iPhone,1,700,12/01/19 13:11,"843 Walnut St, Los Angeles, CA 90001" -315866,Lightning Charging Cable,1,14.95,12/19/19 11:47,"623 7th St, Los Angeles, CA 90001" -315867,27in FHD Monitor,1,149.99,12/06/19 23:16,"560 Ridge St, New York City, NY 10001" -315868,Lightning Charging Cable,1,14.95,12/23/19 18:30,"295 Center St, Atlanta, GA 30301" -315868,USB-C Charging Cable,1,11.95,12/23/19 18:30,"295 Center St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -315869,Macbook Pro Laptop,1,1700,12/22/19 15:32,"474 Main St, Los Angeles, CA 90001" -315870,Bose SoundSport Headphones,1,99.99,12/12/19 19:31,"848 Maple St, Boston, MA 02215" -315871,Apple Airpods Headphones,1,150,12/17/19 14:34,"332 Lakeview St, Portland, OR 97035" -315872,27in 4K Gaming Monitor,1,389.99,12/24/19 12:22,"666 Lake St, San Francisco, CA 94016" -315873,AA Batteries (4-pack),1,3.84,12/28/19 11:24,"941 Park St, New York City, NY 10001" -315874,Wired Headphones,2,11.99,12/31/19 20:37,"686 Meadow St, San Francisco, CA 94016" -315875,27in FHD Monitor,1,149.99,12/01/19 17:07,"777 14th St, Atlanta, GA 30301" -315876,Apple Airpods Headphones,1,150,12/09/19 12:17,"525 Cherry St, New York City, NY 10001" -315877,USB-C Charging Cable,1,11.95,12/19/19 09:04,"83 Lake St, Atlanta, GA 30301" -315878,Wired Headphones,1,11.99,12/20/19 22:10,"305 Lincoln St, San Francisco, CA 94016" -315879,34in Ultrawide Monitor,1,379.99,12/01/19 18:03,"650 2nd St, Los Angeles, CA 90001" -315880,Bose SoundSport Headphones,1,99.99,12/17/19 21:50,"217 West St, Boston, MA 02215" -315881,USB-C Charging Cable,1,11.95,12/25/19 14:31,"302 Pine St, Boston, MA 02215" -315882,Bose SoundSport Headphones,1,99.99,12/21/19 01:16,"922 9th St, Los Angeles, CA 90001" -315883,USB-C Charging Cable,1,11.95,12/06/19 16:42,"215 Wilson St, New York City, NY 10001" -315884,USB-C Charging Cable,1,11.95,12/16/19 16:22,"216 Willow St, Seattle, WA 98101" -315885,Lightning Charging Cable,1,14.95,12/06/19 22:26,"548 11th St, San Francisco, CA 94016" -315886,AA Batteries (4-pack),1,3.84,12/11/19 17:20,"605 Center St, Boston, MA 02215" -315887,Lightning Charging Cable,2,14.95,12/05/19 16:16,"650 Dogwood St, Dallas, TX 75001" -315887,USB-C Charging Cable,1,11.95,12/05/19 16:16,"650 Dogwood St, Dallas, TX 75001" -315888,20in Monitor,1,109.99,12/21/19 14:30,"425 Lakeview St, Boston, MA 02215" -315889,Wired Headphones,1,11.99,12/26/19 18:12,"864 Sunset St, San Francisco, CA 94016" -315890,AAA Batteries (4-pack),2,2.99,12/24/19 17:58,"22 River St, Boston, MA 02215" -315891,34in Ultrawide Monitor,1,379.99,12/07/19 18:47,"953 Sunset St, San Francisco, CA 94016" -315892,20in Monitor,1,109.99,12/23/19 17:15,"897 Pine St, New York City, NY 10001" -315893,AA Batteries (4-pack),5,3.84,12/25/19 11:34,"154 Forest St, Los Angeles, CA 90001" -315894,Wired Headphones,1,11.99,12/01/19 19:04,"160 Walnut St, Dallas, TX 75001" -315895,Wired Headphones,1,11.99,12/09/19 13:48,"562 Pine St, Austin, TX 73301" -315896,Apple Airpods Headphones,1,150,12/10/19 20:33,"760 Madison St, Atlanta, GA 30301" -315897,Bose SoundSport Headphones,1,99.99,12/09/19 20:21,"487 South St, Los Angeles, CA 90001" -315898,20in Monitor,1,109.99,12/17/19 10:28,"103 Sunset St, Dallas, TX 75001" -315899,ThinkPad Laptop,1,999.99,12/21/19 15:21,"561 South St, Austin, TX 73301" -315900,iPhone,1,700,12/27/19 20:01,"13 Madison St, San Francisco, CA 94016" -315901,Lightning Charging Cable,1,14.95,12/10/19 12:56,"278 Meadow St, Austin, TX 73301" -315902,USB-C Charging Cable,1,11.95,12/11/19 11:16,"36 Pine St, San Francisco, CA 94016" -315903,AA Batteries (4-pack),1,3.84,12/08/19 18:59,"171 Wilson St, Austin, TX 73301" -315903,Bose SoundSport Headphones,1,99.99,12/08/19 18:59,"171 Wilson St, Austin, TX 73301" -315904,27in FHD Monitor,1,149.99,12/13/19 18:39,"405 Church St, Seattle, WA 98101" -315905,USB-C Charging Cable,1,11.95,12/13/19 22:45,"972 Lake St, Los Angeles, CA 90001" -315906,AA Batteries (4-pack),1,3.84,12/16/19 14:58,"669 North St, Los Angeles, CA 90001" -315907,AA Batteries (4-pack),2,3.84,12/21/19 13:44,"696 Spruce St, San Francisco, CA 94016" -315908,20in Monitor,1,109.99,12/23/19 18:07,"921 Jefferson St, Atlanta, GA 30301" -315909,Lightning Charging Cable,1,14.95,12/18/19 01:05,"917 South St, San Francisco, CA 94016" -315910,USB-C Charging Cable,1,11.95,12/21/19 19:07,"853 6th St, San Francisco, CA 94016" -315911,Vareebadd Phone,1,400,12/21/19 20:30,"465 Highland St, Boston, MA 02215" -315912,Bose SoundSport Headphones,1,99.99,12/23/19 18:31,"924 Meadow St, New York City, NY 10001" -315913,Apple Airpods Headphones,1,150,12/13/19 17:35,"502 Maple St, Los Angeles, CA 90001" -315914,Lightning Charging Cable,1,14.95,12/08/19 22:27,"557 Walnut St, Seattle, WA 98101" -315915,iPhone,1,700,12/17/19 20:16,"222 4th St, Dallas, TX 75001" -315916,Bose SoundSport Headphones,1,99.99,12/20/19 09:50,"583 6th St, San Francisco, CA 94016" -315917,Bose SoundSport Headphones,1,99.99,12/17/19 15:33,"137 12th St, Los Angeles, CA 90001" -315918,AAA Batteries (4-pack),1,2.99,12/22/19 13:17,"292 10th St, Los Angeles, CA 90001" -315919,Apple Airpods Headphones,1,150,12/10/19 22:24,"574 2nd St, San Francisco, CA 94016" -315920,27in FHD Monitor,1,149.99,12/04/19 01:06,"676 Jackson St, Austin, TX 73301" -315921,Apple Airpods Headphones,1,150,12/03/19 09:49,"474 Highland St, Los Angeles, CA 90001" -315922,AA Batteries (4-pack),1,3.84,12/29/19 01:23,"453 Johnson St, San Francisco, CA 94016" -315923,AAA Batteries (4-pack),2,2.99,12/17/19 12:43,"239 Sunset St, Portland, OR 97035" -315924,iPhone,1,700,12/23/19 21:33,"830 2nd St, Los Angeles, CA 90001" -315925,Apple Airpods Headphones,1,150,12/30/19 21:38,"252 Cedar St, Seattle, WA 98101" -315926,Apple Airpods Headphones,2,150,12/12/19 18:18,"623 North St, New York City, NY 10001" -315927,AAA Batteries (4-pack),2,2.99,12/12/19 14:01,"539 4th St, Portland, OR 97035" -315928,Bose SoundSport Headphones,1,99.99,12/11/19 23:10,"829 1st St, Dallas, TX 75001" -315929,Macbook Pro Laptop,1,1700,12/15/19 18:12,"756 Highland St, Seattle, WA 98101" -315930,Bose SoundSport Headphones,1,99.99,12/27/19 16:20,"487 Spruce St, Austin, TX 73301" -315930,AAA Batteries (4-pack),1,2.99,12/27/19 16:20,"487 Spruce St, Austin, TX 73301" -315931,AA Batteries (4-pack),1,3.84,12/02/19 02:57,"370 Walnut St, Dallas, TX 75001" -315932,USB-C Charging Cable,1,11.95,12/30/19 21:13,"863 Center St, Austin, TX 73301" -315933,27in FHD Monitor,1,149.99,12/15/19 16:57,"435 6th St, Dallas, TX 75001" -315934,AA Batteries (4-pack),2,3.84,12/02/19 16:35,"556 6th St, New York City, NY 10001" -315935,27in FHD Monitor,1,149.99,12/24/19 11:15,"709 South St, Seattle, WA 98101" -315936,AAA Batteries (4-pack),1,2.99,12/06/19 23:52,"733 Park St, Atlanta, GA 30301" -315937,Flatscreen TV,2,300,12/23/19 16:31,"47 1st St, Los Angeles, CA 90001" -315938,AAA Batteries (4-pack),1,2.99,12/08/19 14:46,"912 Chestnut St, Seattle, WA 98101" -315939,34in Ultrawide Monitor,1,379.99,12/05/19 20:58,"314 11th St, Boston, MA 02215" -315940,iPhone,1,700,12/28/19 10:04,"364 Elm St, Los Angeles, CA 90001" -315941,Lightning Charging Cable,1,14.95,12/19/19 16:22,"186 Center St, Los Angeles, CA 90001" -315942,AA Batteries (4-pack),1,3.84,12/09/19 15:52,"381 1st St, Boston, MA 02215" -315943,Lightning Charging Cable,1,14.95,12/18/19 19:59,"956 Dogwood St, Dallas, TX 75001" -315944,AA Batteries (4-pack),2,3.84,12/06/19 23:51,"948 Hickory St, San Francisco, CA 94016" -315945,Wired Headphones,1,11.99,12/25/19 18:06,"131 Wilson St, Los Angeles, CA 90001" -315946,Apple Airpods Headphones,1,150,12/12/19 15:54,"428 Main St, Los Angeles, CA 90001" -315947,Bose SoundSport Headphones,1,99.99,12/25/19 16:27,"528 Johnson St, Boston, MA 02215" -315948,Lightning Charging Cable,1,14.95,12/20/19 23:20,"900 Washington St, Boston, MA 02215" -315949,Apple Airpods Headphones,1,150,12/10/19 18:18,"122 6th St, Boston, MA 02215" -315950,iPhone,1,700,12/24/19 13:02,"542 Adams St, Atlanta, GA 30301" -315950,Wired Headphones,1,11.99,12/24/19 13:02,"542 Adams St, Atlanta, GA 30301" -315951,AAA Batteries (4-pack),1,2.99,12/20/19 11:52,"598 Wilson St, San Francisco, CA 94016" -315952,Vareebadd Phone,1,400,12/12/19 05:30,"743 Maple St, Dallas, TX 75001" -315953,Apple Airpods Headphones,1,150,12/25/19 11:54,"976 6th St, Los Angeles, CA 90001" -315954,ThinkPad Laptop,1,999.99,12/19/19 18:04,"646 Walnut St, Boston, MA 02215" -315955,ThinkPad Laptop,1,999.99,12/26/19 17:28,"588 Chestnut St, Seattle, WA 98101" -315955,ThinkPad Laptop,1,999.99,12/26/19 17:28,"588 Chestnut St, Seattle, WA 98101" -315956,iPhone,1,700,12/04/19 19:54,"799 Wilson St, Los Angeles, CA 90001" -315957,AA Batteries (4-pack),1,3.84,12/06/19 20:20,"496 5th St, New York City, NY 10001" -315958,Bose SoundSport Headphones,1,99.99,12/22/19 15:39,"428 Center St, San Francisco, CA 94016" -315959,34in Ultrawide Monitor,1,379.99,12/28/19 10:24,"623 Dogwood St, New York City, NY 10001" -315960,Lightning Charging Cable,1,14.95,12/18/19 15:07,"28 Forest St, San Francisco, CA 94016" -315961,27in FHD Monitor,1,149.99,12/16/19 13:14,"512 Adams St, Los Angeles, CA 90001" -315962,Wired Headphones,1,11.99,12/08/19 10:01,"293 Church St, Seattle, WA 98101" -315962,27in FHD Monitor,1,149.99,12/08/19 10:01,"293 Church St, Seattle, WA 98101" -315963,Bose SoundSport Headphones,1,99.99,12/03/19 08:22,"253 Church St, Seattle, WA 98101" -315964,Bose SoundSport Headphones,1,99.99,12/11/19 12:32,"242 14th St, Los Angeles, CA 90001" -315965,AA Batteries (4-pack),1,3.84,12/20/19 14:12,"578 13th St, San Francisco, CA 94016" -315966,Lightning Charging Cable,1,14.95,12/21/19 12:05,"437 4th St, San Francisco, CA 94016" -315967,Vareebadd Phone,1,400,12/15/19 18:07,"417 Maple St, Los Angeles, CA 90001" -315968,AA Batteries (4-pack),3,3.84,12/31/19 11:46,"887 Dogwood St, San Francisco, CA 94016" -315969,AA Batteries (4-pack),2,3.84,12/26/19 22:10,"879 Lakeview St, San Francisco, CA 94016" -315970,Lightning Charging Cable,1,14.95,12/25/19 12:05,"549 Madison St, San Francisco, CA 94016" -315971,AAA Batteries (4-pack),2,2.99,12/01/19 10:31,"387 2nd St, Los Angeles, CA 90001" -315972,Wired Headphones,1,11.99,12/26/19 18:33,"561 Madison St, Dallas, TX 75001" -315973,AA Batteries (4-pack),2,3.84,12/26/19 20:06,"175 Lake St, Boston, MA 02215" -315974,Flatscreen TV,1,300,12/02/19 11:30,"459 Johnson St, San Francisco, CA 94016" -315975,Google Phone,1,600,12/21/19 12:16,"371 Chestnut St, New York City, NY 10001" -315975,USB-C Charging Cable,1,11.95,12/21/19 12:16,"371 Chestnut St, New York City, NY 10001" -315976,27in FHD Monitor,1,149.99,12/06/19 16:37,"313 6th St, Los Angeles, CA 90001" -315977,27in FHD Monitor,1,149.99,12/31/19 14:48,"291 12th St, Atlanta, GA 30301" -315978,20in Monitor,1,109.99,12/10/19 17:41,"198 2nd St, Atlanta, GA 30301" -315979,34in Ultrawide Monitor,1,379.99,12/21/19 14:17,"623 Ridge St, Boston, MA 02215" -315980,Lightning Charging Cable,1,14.95,12/06/19 18:04,"294 5th St, Seattle, WA 98101" -315981,USB-C Charging Cable,1,11.95,12/06/19 17:35,"591 Hickory St, Austin, TX 73301" -315982,Lightning Charging Cable,1,14.95,12/07/19 12:05,"697 Johnson St, Boston, MA 02215" -315983,Wired Headphones,4,11.99,12/12/19 12:59,"520 Wilson St, San Francisco, CA 94016" -315984,Wired Headphones,1,11.99,12/18/19 15:09,"708 Sunset St, Los Angeles, CA 90001" -315985,20in Monitor,1,109.99,12/06/19 10:08,"904 Pine St, Atlanta, GA 30301" -315986,20in Monitor,1,109.99,12/22/19 15:44,"17 2nd St, Los Angeles, CA 90001" -315987,USB-C Charging Cable,1,11.95,12/15/19 19:09,"668 Spruce St, New York City, NY 10001" -315988,27in 4K Gaming Monitor,1,389.99,12/03/19 10:15,"52 Chestnut St, Atlanta, GA 30301" -315989,34in Ultrawide Monitor,1,379.99,12/17/19 11:42,"818 South St, Atlanta, GA 30301" -315990,Apple Airpods Headphones,1,150,12/14/19 16:18,"794 Jefferson St, Austin, TX 73301" -315991,USB-C Charging Cable,1,11.95,12/24/19 14:37,"939 River St, Seattle, WA 98101" -315992,AA Batteries (4-pack),1,3.84,12/11/19 14:14,"16 Madison St, Boston, MA 02215" -315993,Apple Airpods Headphones,1,150,12/28/19 00:41,"684 Lake St, Boston, MA 02215" -315994,Apple Airpods Headphones,1,150,12/28/19 18:49,"860 Cedar St, Seattle, WA 98101" -315995,AAA Batteries (4-pack),2,2.99,12/31/19 20:05,"283 13th St, New York City, NY 10001" -315996,AAA Batteries (4-pack),1,2.99,12/06/19 17:46,"785 Dogwood St, New York City, NY 10001" -315997,Flatscreen TV,1,300,12/04/19 21:34,"981 1st St, Seattle, WA 98101" -315998,Wired Headphones,1,11.99,12/15/19 22:31,"885 Elm St, New York City, NY 10001" -315999,USB-C Charging Cable,1,11.95,12/05/19 10:09,"593 Walnut St, San Francisco, CA 94016" -316000,Flatscreen TV,1,300,12/05/19 14:12,"323 8th St, New York City, NY 10001" -316001,Bose SoundSport Headphones,1,99.99,12/16/19 23:04,"838 Park St, Seattle, WA 98101" -316002,Apple Airpods Headphones,1,150,12/18/19 19:50,"617 Cedar St, Boston, MA 02215" -316003,AAA Batteries (4-pack),1,2.99,12/06/19 12:22,"731 9th St, Los Angeles, CA 90001" -316004,Macbook Pro Laptop,1,1700,12/15/19 15:39,"269 13th St, San Francisco, CA 94016" -316005,AAA Batteries (4-pack),1,2.99,12/23/19 10:12,"948 Highland St, Los Angeles, CA 90001" -316006,AA Batteries (4-pack),1,3.84,12/29/19 19:43,"680 Forest St, Boston, MA 02215" -316007,AA Batteries (4-pack),1,3.84,12/15/19 18:49,"304 Johnson St, Los Angeles, CA 90001" -316008,Lightning Charging Cable,1,14.95,12/06/19 00:39,"865 11th St, Boston, MA 02215" -316009,AA Batteries (4-pack),1,3.84,12/04/19 21:27,"916 Hill St, San Francisco, CA 94016" -316010,Wired Headphones,1,11.99,12/31/19 12:33,"102 Walnut St, San Francisco, CA 94016" -316011,Apple Airpods Headphones,1,150,12/14/19 10:27,"199 Church St, San Francisco, CA 94016" -316012,Wired Headphones,1,11.99,12/16/19 00:13,"471 Dogwood St, Boston, MA 02215" -316012,34in Ultrawide Monitor,1,379.99,12/16/19 00:13,"471 Dogwood St, Boston, MA 02215" -316013,27in FHD Monitor,1,149.99,12/16/19 21:36,"332 Washington St, Boston, MA 02215" -316014,Lightning Charging Cable,1,14.95,12/25/19 07:34,"391 Dogwood St, Boston, MA 02215" -316015,34in Ultrawide Monitor,1,379.99,12/15/19 21:23,"945 Center St, Dallas, TX 75001" -316016,Flatscreen TV,1,300,12/26/19 11:08,"29 River St, New York City, NY 10001" -316017,AAA Batteries (4-pack),1,2.99,12/23/19 19:30,"288 Cedar St, Los Angeles, CA 90001" -316017,27in FHD Monitor,1,149.99,12/23/19 19:30,"288 Cedar St, Los Angeles, CA 90001" -316018,Apple Airpods Headphones,1,150,12/23/19 11:51,"404 11th St, San Francisco, CA 94016" -316019,Wired Headphones,1,11.99,12/04/19 19:28,"889 Elm St, Atlanta, GA 30301" -316020,Lightning Charging Cable,1,14.95,12/27/19 17:00,"166 Lincoln St, San Francisco, CA 94016" -316021,27in FHD Monitor,1,149.99,12/25/19 21:00,"195 5th St, New York City, NY 10001" -316022,AAA Batteries (4-pack),1,2.99,12/04/19 03:38,"849 River St, Atlanta, GA 30301" -316023,ThinkPad Laptop,1,999.99,12/08/19 12:17,"838 Lincoln St, Boston, MA 02215" -316024,Wired Headphones,1,11.99,12/08/19 09:26,"376 Center St, San Francisco, CA 94016" -316025,USB-C Charging Cable,1,11.95,12/20/19 21:11,"792 Jefferson St, San Francisco, CA 94016" -316026,Wired Headphones,1,11.99,12/26/19 10:47,"144 Forest St, Boston, MA 02215" -316027,27in 4K Gaming Monitor,1,389.99,12/14/19 10:51,"803 Jackson St, Los Angeles, CA 90001" -316028,34in Ultrawide Monitor,1,379.99,12/15/19 17:59,"127 9th St, Boston, MA 02215" -316029,USB-C Charging Cable,1,11.95,12/01/19 14:59,"240 Church St, San Francisco, CA 94016" -316030,34in Ultrawide Monitor,1,379.99,12/10/19 19:46,"695 Jefferson St, San Francisco, CA 94016" -316031,AA Batteries (4-pack),1,3.84,12/18/19 11:57,"758 Maple St, Atlanta, GA 30301" -316032,USB-C Charging Cable,1,11.95,12/13/19 12:54,"574 Adams St, Los Angeles, CA 90001" -316033,Flatscreen TV,1,300,12/29/19 21:34,"430 West St, Boston, MA 02215" -316034,Lightning Charging Cable,1,14.95,12/09/19 16:39,"765 Sunset St, Boston, MA 02215" -316035,Lightning Charging Cable,1,14.95,12/14/19 21:24,"724 Lakeview St, San Francisco, CA 94016" -316036,20in Monitor,1,109.99,12/25/19 20:00,"114 Johnson St, Portland, OR 97035" -316037,Lightning Charging Cable,1,14.95,12/17/19 11:12,"624 14th St, New York City, NY 10001" -316038,ThinkPad Laptop,1,999.99,12/18/19 14:09,"744 Dogwood St, Atlanta, GA 30301" -316039,AA Batteries (4-pack),1,3.84,12/02/19 17:20,"567 Cedar St, Los Angeles, CA 90001" -316040,Lightning Charging Cable,1,14.95,12/29/19 10:35,"566 7th St, Los Angeles, CA 90001" -316041,Bose SoundSport Headphones,1,99.99,12/16/19 23:43,"206 5th St, San Francisco, CA 94016" -316042,iPhone,1,700,12/26/19 22:57,"135 Elm St, Seattle, WA 98101" -316043,Bose SoundSport Headphones,1,99.99,12/15/19 17:47,"261 Church St, Portland, OR 97035" -316044,AA Batteries (4-pack),1,3.84,12/02/19 10:48,"389 Walnut St, San Francisco, CA 94016" -316045,Vareebadd Phone,1,400,12/28/19 20:07,"810 Highland St, Los Angeles, CA 90001" -316046,AAA Batteries (4-pack),1,2.99,12/14/19 13:43,"718 Madison St, Portland, OR 97035" -316047,AAA Batteries (4-pack),1,2.99,12/24/19 21:27,"197 Park St, Portland, OR 97035" -316048,27in 4K Gaming Monitor,1,389.99,12/05/19 01:40,"44 Center St, Atlanta, GA 30301" -316049,ThinkPad Laptop,1,999.99,12/31/19 06:28,"213 Madison St, San Francisco, CA 94016" -316050,Vareebadd Phone,1,400,12/30/19 22:38,"760 6th St, Atlanta, GA 30301" -316051,ThinkPad Laptop,1,999.99,12/04/19 08:15,"995 Lakeview St, Los Angeles, CA 90001" -316052,AA Batteries (4-pack),1,3.84,12/10/19 19:12,"880 Washington St, San Francisco, CA 94016" -316053,34in Ultrawide Monitor,1,379.99,12/10/19 00:17,"758 11th St, Atlanta, GA 30301" -316054,Apple Airpods Headphones,1,150,12/14/19 11:25,"99 Johnson St, Los Angeles, CA 90001" -316055,Wired Headphones,1,11.99,12/10/19 20:53,"365 Madison St, Dallas, TX 75001" -316056,Apple Airpods Headphones,1,150,12/10/19 09:57,"370 Hill St, Seattle, WA 98101" -316057,Apple Airpods Headphones,1,150,12/22/19 22:48,"108 9th St, New York City, NY 10001" -316058,Wired Headphones,1,11.99,12/22/19 23:47,"221 Spruce St, San Francisco, CA 94016" -316059,ThinkPad Laptop,1,999.99,12/20/19 19:21,"934 1st St, New York City, NY 10001" -316060,Lightning Charging Cable,1,14.95,12/01/19 11:59,"5 Meadow St, Austin, TX 73301" -316061,Lightning Charging Cable,1,14.95,12/09/19 18:17,"150 Sunset St, Seattle, WA 98101" -316062,Macbook Pro Laptop,1,1700,12/09/19 16:53,"573 North St, San Francisco, CA 94016" -316063,20in Monitor,1,109.99,12/22/19 01:25,"203 Spruce St, Portland, OR 97035" -316064,USB-C Charging Cable,2,11.95,12/12/19 14:12,"211 8th St, Los Angeles, CA 90001" -316065,Macbook Pro Laptop,1,1700,12/09/19 22:28,"984 Lincoln St, San Francisco, CA 94016" -316066,Lightning Charging Cable,1,14.95,12/14/19 19:53,"606 Hickory St, San Francisco, CA 94016" -316067,AA Batteries (4-pack),1,3.84,12/26/19 20:34,"662 11th St, Boston, MA 02215" -316068,USB-C Charging Cable,1,11.95,12/14/19 12:37,"600 Ridge St, Los Angeles, CA 90001" -316069,Apple Airpods Headphones,1,150,12/08/19 10:57,"182 West St, San Francisco, CA 94016" -316070,Bose SoundSport Headphones,1,99.99,12/20/19 19:02,"890 Johnson St, Seattle, WA 98101" -316071,Bose SoundSport Headphones,1,99.99,12/24/19 16:01,"638 8th St, San Francisco, CA 94016" -316072,AA Batteries (4-pack),1,3.84,12/11/19 06:22,"779 Elm St, New York City, NY 10001" -316073,AA Batteries (4-pack),3,3.84,12/08/19 11:57,"776 Forest St, Atlanta, GA 30301" -316073,USB-C Charging Cable,1,11.95,12/08/19 11:57,"776 Forest St, Atlanta, GA 30301" -316074,Wired Headphones,1,11.99,12/20/19 20:06,"314 Spruce St, Atlanta, GA 30301" -316075,USB-C Charging Cable,1,11.95,12/15/19 01:00,"102 Johnson St, Atlanta, GA 30301" -316076,AA Batteries (4-pack),1,3.84,12/03/19 14:12,"630 Lakeview St, Seattle, WA 98101" -316077,Google Phone,1,600,12/08/19 00:41,"562 North St, San Francisco, CA 94016" -316077,USB-C Charging Cable,1,11.95,12/08/19 00:41,"562 North St, San Francisco, CA 94016" -316078,USB-C Charging Cable,1,11.95,12/12/19 15:01,"944 Park St, Los Angeles, CA 90001" -316079,AAA Batteries (4-pack),1,2.99,12/31/19 20:51,"901 Walnut St, Seattle, WA 98101" -316080,Apple Airpods Headphones,1,150,12/06/19 18:33,"24 South St, Los Angeles, CA 90001" -316081,Lightning Charging Cable,1,14.95,12/14/19 21:36,"345 1st St, Austin, TX 73301" -316082,27in FHD Monitor,1,149.99,12/15/19 19:01,"936 Maple St, San Francisco, CA 94016" -316083,Apple Airpods Headphones,1,150,12/13/19 18:24,"122 Spruce St, San Francisco, CA 94016" -316084,Lightning Charging Cable,1,14.95,12/09/19 19:18,"967 Walnut St, San Francisco, CA 94016" -316085,34in Ultrawide Monitor,1,379.99,12/07/19 06:57,"738 Forest St, Austin, TX 73301" -316086,AA Batteries (4-pack),4,3.84,12/18/19 20:13,"8 12th St, Seattle, WA 98101" -316087,Flatscreen TV,1,300,12/15/19 21:28,"108 West St, San Francisco, CA 94016" -316088,Wired Headphones,1,11.99,12/23/19 23:43,"675 Hill St, San Francisco, CA 94016" -316089,AAA Batteries (4-pack),3,2.99,12/03/19 17:33,"339 1st St, Boston, MA 02215" -316090,Lightning Charging Cable,1,14.95,12/20/19 15:18,"616 5th St, Seattle, WA 98101" -316091,ThinkPad Laptop,1,999.99,12/23/19 15:07,"873 Sunset St, San Francisco, CA 94016" -316092,Bose SoundSport Headphones,1,99.99,12/30/19 05:18,"734 Jackson St, Atlanta, GA 30301" -316093,Lightning Charging Cable,1,14.95,12/09/19 15:19,"921 Forest St, Los Angeles, CA 90001" -316094,USB-C Charging Cable,1,11.95,12/25/19 23:05,"944 South St, Seattle, WA 98101" -316095,Lightning Charging Cable,1,14.95,12/21/19 18:07,"170 Pine St, New York City, NY 10001" -316096,Lightning Charging Cable,1,14.95,12/23/19 08:29,"135 River St, Dallas, TX 75001" -316097,USB-C Charging Cable,1,11.95,12/30/19 23:24,"657 10th St, Los Angeles, CA 90001" -316098,ThinkPad Laptop,1,999.99,12/25/19 23:38,"790 Dogwood St, New York City, NY 10001" -316099,Wired Headphones,1,11.99,12/17/19 15:01,"389 Forest St, Los Angeles, CA 90001" -316100,34in Ultrawide Monitor,1,379.99,12/11/19 16:11,"72 West St, New York City, NY 10001" -316101,AA Batteries (4-pack),1,3.84,12/25/19 18:40,"279 12th St, Los Angeles, CA 90001" -316102,Lightning Charging Cable,1,14.95,12/23/19 11:11,"357 9th St, Los Angeles, CA 90001" -316103,USB-C Charging Cable,1,11.95,12/10/19 09:06,"600 South St, Los Angeles, CA 90001" -316104,Flatscreen TV,1,300,12/05/19 17:44,"777 2nd St, New York City, NY 10001" -316105,USB-C Charging Cable,1,11.95,12/07/19 13:50,"432 Sunset St, New York City, NY 10001" -316106,Wired Headphones,1,11.99,12/19/19 21:02,"438 8th St, New York City, NY 10001" -316106,Apple Airpods Headphones,1,150,12/19/19 21:02,"438 8th St, New York City, NY 10001" -316107,AAA Batteries (4-pack),1,2.99,12/12/19 13:44,"234 Highland St, Seattle, WA 98101" -316108,AA Batteries (4-pack),1,3.84,12/28/19 08:42,"848 Adams St, New York City, NY 10001" -316109,USB-C Charging Cable,1,11.95,12/22/19 18:45,"811 2nd St, New York City, NY 10001" -316110,AA Batteries (4-pack),1,3.84,12/09/19 14:38,"811 Meadow St, Portland, OR 97035" -316111,USB-C Charging Cable,2,11.95,12/07/19 20:30,"677 Lake St, Seattle, WA 98101" -316112,Vareebadd Phone,1,400,12/15/19 14:21,"192 9th St, New York City, NY 10001" -316113,iPhone,1,700,12/13/19 18:26,"518 Madison St, San Francisco, CA 94016" -316114,Bose SoundSport Headphones,1,99.99,12/05/19 08:20,"589 Jackson St, Seattle, WA 98101" -316115,Apple Airpods Headphones,1,150,12/05/19 12:31,"38 Elm St, Boston, MA 02215" -316116,USB-C Charging Cable,1,11.95,12/30/19 01:11,"327 Elm St, Austin, TX 73301" -316117,Wired Headphones,1,11.99,12/23/19 18:35,"304 Madison St, Atlanta, GA 30301" -316118,Flatscreen TV,1,300,12/24/19 10:04,"223 Highland St, Austin, TX 73301" -316119,34in Ultrawide Monitor,1,379.99,12/01/19 07:05,"121 Cedar St, Dallas, TX 75001" -316120,AA Batteries (4-pack),2,3.84,12/09/19 18:03,"618 Madison St, Boston, MA 02215" -316121,AAA Batteries (4-pack),4,2.99,12/16/19 14:25,"371 Jackson St, Boston, MA 02215" -316122,AAA Batteries (4-pack),1,2.99,12/03/19 13:35,"470 Sunset St, Los Angeles, CA 90001" -316123,Wired Headphones,1,11.99,12/29/19 23:30,"884 Lincoln St, Atlanta, GA 30301" -316124,AA Batteries (4-pack),1,3.84,12/19/19 13:38,"122 Lakeview St, Boston, MA 02215" -316125,iPhone,1,700,12/12/19 10:00,"445 6th St, Seattle, WA 98101" -316126,USB-C Charging Cable,1,11.95,12/31/19 03:18,"49 2nd St, San Francisco, CA 94016" -316127,Google Phone,1,600,12/26/19 09:50,"839 South St, San Francisco, CA 94016" -316128,Google Phone,1,600,12/06/19 12:13,"8 Church St, Portland, OR 97035" -316129,AAA Batteries (4-pack),2,2.99,12/16/19 10:06,"284 Wilson St, New York City, NY 10001" -316130,Lightning Charging Cable,1,14.95,12/09/19 16:57,"492 Jefferson St, Portland, ME 04101" -316131,AAA Batteries (4-pack),2,2.99,12/15/19 15:15,"819 Forest St, Atlanta, GA 30301" -316132,USB-C Charging Cable,1,11.95,12/13/19 12:52,"269 Dogwood St, Atlanta, GA 30301" -316133,27in 4K Gaming Monitor,1,389.99,12/25/19 19:43,"7 6th St, Portland, OR 97035" -316133,ThinkPad Laptop,1,999.99,12/25/19 19:43,"7 6th St, Portland, OR 97035" -316134,Flatscreen TV,1,300,12/06/19 14:37,"768 Lincoln St, San Francisco, CA 94016" -316135,Wired Headphones,1,11.99,12/09/19 11:19,"646 South St, San Francisco, CA 94016" -316136,Lightning Charging Cable,1,14.95,12/01/19 22:47,"485 12th St, Boston, MA 02215" -316137,27in 4K Gaming Monitor,1,389.99,12/20/19 22:14,"819 Hickory St, Boston, MA 02215" -316138,USB-C Charging Cable,2,11.95,12/13/19 19:38,"726 Pine St, Dallas, TX 75001" -316139,Apple Airpods Headphones,1,150,12/28/19 22:46,"896 Cherry St, Boston, MA 02215" -316140,Lightning Charging Cable,1,14.95,12/02/19 09:41,"51 West St, Atlanta, GA 30301" -316141,USB-C Charging Cable,1,11.95,12/25/19 11:40,"455 Hickory St, San Francisco, CA 94016" -316142,Bose SoundSport Headphones,1,99.99,12/17/19 19:02,"824 Dogwood St, Portland, OR 97035" -316143,Wired Headphones,1,11.99,12/30/19 22:33,"157 Washington St, San Francisco, CA 94016" -316144,AA Batteries (4-pack),1,3.84,12/31/19 20:52,"311 5th St, New York City, NY 10001" -316145,Google Phone,1,600,12/01/19 07:14,"945 North St, San Francisco, CA 94016" -316146,iPhone,1,700,12/24/19 01:09,"702 Sunset St, Dallas, TX 75001" -316147,Wired Headphones,1,11.99,12/14/19 16:23,"102 Spruce St, Austin, TX 73301" -316148,ThinkPad Laptop,1,999.99,12/04/19 21:29,"223 Church St, Austin, TX 73301" -316149,AA Batteries (4-pack),1,3.84,12/27/19 00:25,"307 Main St, New York City, NY 10001" -316150,Apple Airpods Headphones,1,150,12/19/19 08:56,"73 Meadow St, San Francisco, CA 94016" -316151,Macbook Pro Laptop,1,1700,12/03/19 20:46,"302 Chestnut St, Dallas, TX 75001" -316152,AA Batteries (4-pack),1,3.84,12/30/19 13:23,"605 Willow St, New York City, NY 10001" -316153,Wired Headphones,2,11.99,12/02/19 12:41,"689 River St, Atlanta, GA 30301" -316154,AAA Batteries (4-pack),1,2.99,12/29/19 11:40,"109 Wilson St, New York City, NY 10001" -316155,ThinkPad Laptop,1,999.99,12/19/19 22:55,"247 14th St, Los Angeles, CA 90001" -316156,AA Batteries (4-pack),1,3.84,12/11/19 13:38,"151 Hill St, San Francisco, CA 94016" -316157,20in Monitor,1,109.99,12/30/19 16:11,"886 9th St, Los Angeles, CA 90001" -316158,USB-C Charging Cable,1,11.95,12/23/19 18:55,"509 South St, Dallas, TX 75001" -316159,USB-C Charging Cable,1,11.95,12/17/19 13:01,"728 7th St, San Francisco, CA 94016" -316160,AA Batteries (4-pack),2,3.84,12/25/19 18:37,"70 Adams St, San Francisco, CA 94016" -316161,27in 4K Gaming Monitor,1,389.99,12/13/19 21:39,"451 Walnut St, Portland, OR 97035" -316162,AA Batteries (4-pack),2,3.84,12/14/19 19:27,"598 Chestnut St, New York City, NY 10001" -316163,Bose SoundSport Headphones,1,99.99,12/27/19 21:48,"182 12th St, Los Angeles, CA 90001" -316164,AAA Batteries (4-pack),2,2.99,12/05/19 16:55,"825 12th St, San Francisco, CA 94016" -316165,Vareebadd Phone,1,400,12/20/19 10:17,"210 Chestnut St, Portland, OR 97035" -316166,AA Batteries (4-pack),1,3.84,12/08/19 12:45,"190 Spruce St, New York City, NY 10001" -316167,Lightning Charging Cable,1,14.95,12/12/19 22:39,"612 Center St, New York City, NY 10001" -316168,Macbook Pro Laptop,1,1700,12/20/19 19:09,"266 North St, San Francisco, CA 94016" -316169,AAA Batteries (4-pack),2,2.99,12/21/19 11:10,"657 7th St, Atlanta, GA 30301" -316170,USB-C Charging Cable,1,11.95,12/27/19 11:23,"886 Washington St, San Francisco, CA 94016" -316171,Wired Headphones,1,11.99,12/27/19 13:38,"199 4th St, New York City, NY 10001" -316172,27in 4K Gaming Monitor,1,389.99,12/19/19 17:08,"593 Maple St, Atlanta, GA 30301" -316173,AAA Batteries (4-pack),1,2.99,12/22/19 22:44,"907 Sunset St, Portland, OR 97035" -316173,AAA Batteries (4-pack),1,2.99,12/22/19 22:44,"907 Sunset St, Portland, OR 97035" -316174,Bose SoundSport Headphones,1,99.99,12/20/19 12:01,"364 Hickory St, Los Angeles, CA 90001" -316175,Lightning Charging Cable,1,14.95,12/21/19 17:40,"43 Meadow St, New York City, NY 10001" -316176,AAA Batteries (4-pack),2,2.99,12/24/19 12:45,"410 8th St, Los Angeles, CA 90001" -316177,Bose SoundSport Headphones,1,99.99,12/07/19 13:45,"143 Sunset St, New York City, NY 10001" -316178,Bose SoundSport Headphones,1,99.99,12/08/19 11:22,"18 9th St, Dallas, TX 75001" -316179,USB-C Charging Cable,1,11.95,12/13/19 21:12,"392 North St, Austin, TX 73301" -316180,AA Batteries (4-pack),1,3.84,12/14/19 10:22,"694 Dogwood St, Portland, OR 97035" -316181,USB-C Charging Cable,1,11.95,12/06/19 16:46,"373 9th St, Los Angeles, CA 90001" -316182,Bose SoundSport Headphones,1,99.99,12/04/19 18:43,"42 Adams St, San Francisco, CA 94016" -316183,27in FHD Monitor,1,149.99,12/08/19 08:52,"773 Center St, Los Angeles, CA 90001" -316184,AA Batteries (4-pack),2,3.84,12/22/19 17:01,"863 2nd St, San Francisco, CA 94016" -316185,Lightning Charging Cable,1,14.95,12/14/19 07:44,"104 11th St, New York City, NY 10001" -316186,27in 4K Gaming Monitor,1,389.99,12/29/19 16:48,"785 4th St, Atlanta, GA 30301" -316187,Wired Headphones,1,11.99,12/24/19 20:32,"901 Maple St, Dallas, TX 75001" -316188,Lightning Charging Cable,1,14.95,12/25/19 09:25,"229 Jefferson St, Boston, MA 02215" -316189,AAA Batteries (4-pack),1,2.99,12/16/19 14:12,"295 Lake St, Austin, TX 73301" -316190,27in 4K Gaming Monitor,1,389.99,12/07/19 21:14,"317 Park St, San Francisco, CA 94016" -316191,Wired Headphones,1,11.99,12/26/19 17:53,"824 Madison St, Portland, OR 97035" -316192,Wired Headphones,1,11.99,12/27/19 19:54,"355 Sunset St, San Francisco, CA 94016" -316193,USB-C Charging Cable,1,11.95,12/30/19 15:36,"982 Lakeview St, New York City, NY 10001" -316194,27in 4K Gaming Monitor,1,389.99,12/17/19 10:55,"577 12th St, Portland, OR 97035" -316195,Bose SoundSport Headphones,1,99.99,12/31/19 12:45,"631 Highland St, New York City, NY 10001" -316196,Google Phone,1,600,12/18/19 22:52,"685 Lake St, San Francisco, CA 94016" -316197,AAA Batteries (4-pack),1,2.99,12/06/19 13:15,"408 Dogwood St, Seattle, WA 98101" -316198,Lightning Charging Cable,1,14.95,12/05/19 10:11,"442 West St, Seattle, WA 98101" -316199,34in Ultrawide Monitor,1,379.99,12/13/19 11:24,"27 Forest St, New York City, NY 10001" -316200,iPhone,1,700,12/23/19 19:24,"934 Maple St, San Francisco, CA 94016" -316200,Apple Airpods Headphones,1,150,12/23/19 19:24,"934 Maple St, San Francisco, CA 94016" -316201,Macbook Pro Laptop,1,1700,12/07/19 14:10,"126 Adams St, Dallas, TX 75001" -316202,USB-C Charging Cable,1,11.95,12/02/19 19:45,"544 Dogwood St, Dallas, TX 75001" -316203,Wired Headphones,1,11.99,12/21/19 21:41,"525 Washington St, San Francisco, CA 94016" -316204,USB-C Charging Cable,1,11.95,12/05/19 21:18,"633 Forest St, San Francisco, CA 94016" -316205,iPhone,1,700,12/18/19 21:29,"253 Center St, Boston, MA 02215" -316205,Wired Headphones,1,11.99,12/18/19 21:29,"253 Center St, Boston, MA 02215" -316206,27in FHD Monitor,1,149.99,12/22/19 09:43,"363 11th St, San Francisco, CA 94016" -316207,AA Batteries (4-pack),1,3.84,12/01/19 19:56,"666 9th St, Portland, OR 97035" -316208,Macbook Pro Laptop,1,1700,12/02/19 22:03,"617 Park St, Boston, MA 02215" -316209,Bose SoundSport Headphones,1,99.99,12/18/19 13:04,"282 Washington St, Austin, TX 73301" -316210,Lightning Charging Cable,1,14.95,12/27/19 01:56,"634 5th St, San Francisco, CA 94016" -316211,Bose SoundSport Headphones,1,99.99,12/31/19 14:56,"17 Meadow St, Dallas, TX 75001" -316212,Macbook Pro Laptop,1,1700,12/24/19 14:42,"992 South St, Boston, MA 02215" -316213,AAA Batteries (4-pack),3,2.99,12/06/19 13:07,"586 Main St, Austin, TX 73301" -316214,Flatscreen TV,1,300,12/09/19 15:40,"452 13th St, Dallas, TX 75001" -316215,Bose SoundSport Headphones,1,99.99,12/27/19 03:58,"292 Sunset St, San Francisco, CA 94016" -316216,AAA Batteries (4-pack),1,2.99,12/15/19 21:36,"132 Highland St, San Francisco, CA 94016" -316217,AAA Batteries (4-pack),1,2.99,12/11/19 14:51,"500 Hill St, Atlanta, GA 30301" -316218,AAA Batteries (4-pack),2,2.99,12/23/19 11:24,"464 Johnson St, Boston, MA 02215" -316219,AA Batteries (4-pack),1,3.84,12/25/19 11:22,"757 Spruce St, San Francisco, CA 94016" -316220,AAA Batteries (4-pack),1,2.99,12/31/19 07:39,"935 6th St, Boston, MA 02215" -316221,iPhone,1,700,12/19/19 15:23,"361 North St, San Francisco, CA 94016" -316221,Apple Airpods Headphones,1,150,12/19/19 15:23,"361 North St, San Francisco, CA 94016" -316221,Wired Headphones,1,11.99,12/19/19 15:23,"361 North St, San Francisco, CA 94016" -316222,AAA Batteries (4-pack),1,2.99,12/18/19 09:23,"124 Willow St, Seattle, WA 98101" -316223,AA Batteries (4-pack),1,3.84,12/27/19 09:45,"248 Hickory St, San Francisco, CA 94016" -316224,AA Batteries (4-pack),1,3.84,12/22/19 10:31,"304 Hill St, New York City, NY 10001" -316225,Lightning Charging Cable,1,14.95,12/04/19 19:38,"129 8th St, New York City, NY 10001" -316226,27in FHD Monitor,1,149.99,12/30/19 12:23,"87 Hill St, Seattle, WA 98101" -316227,27in FHD Monitor,1,149.99,12/18/19 11:18,"657 Elm St, Seattle, WA 98101" -316228,AA Batteries (4-pack),1,3.84,12/17/19 17:41,"321 6th St, New York City, NY 10001" -316229,Bose SoundSport Headphones,1,99.99,12/25/19 06:39,"266 2nd St, Boston, MA 02215" -316230,Macbook Pro Laptop,1,1700,12/17/19 00:36,"452 6th St, San Francisco, CA 94016" -316231,Lightning Charging Cable,1,14.95,12/31/19 09:18,"598 North St, Boston, MA 02215" -316232,Wired Headphones,1,11.99,12/07/19 20:00,"518 North St, Boston, MA 02215" -316233,Wired Headphones,1,11.99,12/12/19 15:59,"344 North St, Portland, OR 97035" -316234,27in 4K Gaming Monitor,1,389.99,12/04/19 10:39,"520 12th St, Los Angeles, CA 90001" -316235,20in Monitor,1,109.99,12/27/19 17:52,"339 Jackson St, San Francisco, CA 94016" -316236,AAA Batteries (4-pack),2,2.99,12/14/19 20:52,"439 Johnson St, Atlanta, GA 30301" -316237,USB-C Charging Cable,1,11.95,12/12/19 12:50,"249 12th St, San Francisco, CA 94016" -316238,USB-C Charging Cable,1,11.95,12/05/19 19:54,"772 River St, Dallas, TX 75001" -316239,Wired Headphones,1,11.99,12/22/19 09:30,"394 Lake St, New York City, NY 10001" -316240,AA Batteries (4-pack),1,3.84,12/22/19 13:15,"355 Adams St, New York City, NY 10001" -316241,27in FHD Monitor,1,149.99,12/11/19 20:04,"595 1st St, San Francisco, CA 94016" -316242,AAA Batteries (4-pack),2,2.99,12/07/19 10:55,"146 Lakeview St, Dallas, TX 75001" -316243,Wired Headphones,1,11.99,12/18/19 14:13,"814 12th St, Boston, MA 02215" -316244,34in Ultrawide Monitor,1,379.99,12/27/19 09:53,"904 Center St, San Francisco, CA 94016" -316245,Apple Airpods Headphones,1,150,12/17/19 22:26,"557 Hickory St, Portland, OR 97035" -316246,iPhone,1,700,12/20/19 12:59,"213 Hill St, New York City, NY 10001" -316247,Lightning Charging Cable,2,14.95,12/22/19 15:15,"782 5th St, San Francisco, CA 94016" -316248,AA Batteries (4-pack),1,3.84,12/06/19 19:55,"980 Chestnut St, Los Angeles, CA 90001" -316249,Lightning Charging Cable,1,14.95,12/02/19 19:26,"291 11th St, Dallas, TX 75001" -316250,Wired Headphones,1,11.99,12/21/19 23:50,"714 Maple St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -316251,iPhone,1,700,12/06/19 08:41,"639 Cedar St, New York City, NY 10001" -316252,AA Batteries (4-pack),1,3.84,12/29/19 13:01,"195 Meadow St, Atlanta, GA 30301" -316253,27in FHD Monitor,1,149.99,12/28/19 17:11,"811 Cherry St, Dallas, TX 75001" -316254,LG Washing Machine,1,600.0,12/24/19 23:41,"614 Johnson St, Boston, MA 02215" -316255,Lightning Charging Cable,1,14.95,12/05/19 18:35,"372 Church St, Los Angeles, CA 90001" -316256,27in FHD Monitor,1,149.99,12/25/19 15:28,"647 Pine St, San Francisco, CA 94016" -316257,USB-C Charging Cable,1,11.95,12/24/19 11:49,"2 Dogwood St, Boston, MA 02215" -316258,Google Phone,1,600,12/04/19 09:51,"496 River St, New York City, NY 10001" -316259,Wired Headphones,1,11.99,12/22/19 12:17,"370 Jackson St, San Francisco, CA 94016" -316260,AA Batteries (4-pack),1,3.84,12/08/19 12:57,"53 Madison St, Boston, MA 02215" -316261,27in FHD Monitor,1,149.99,12/22/19 21:37,"769 2nd St, San Francisco, CA 94016" -316262,AA Batteries (4-pack),2,3.84,12/02/19 19:46,"168 Johnson St, Dallas, TX 75001" -316263,USB-C Charging Cable,1,11.95,12/18/19 21:01,"725 Washington St, Los Angeles, CA 90001" -316264,USB-C Charging Cable,1,11.95,12/24/19 09:13,"13 Lakeview St, Los Angeles, CA 90001" -316265,AAA Batteries (4-pack),1,2.99,12/13/19 22:16,"504 Willow St, Boston, MA 02215" -316266,ThinkPad Laptop,1,999.99,12/04/19 07:09,"233 10th St, San Francisco, CA 94016" -316267,Wired Headphones,1,11.99,12/18/19 08:20,"908 Ridge St, Los Angeles, CA 90001" -316268,USB-C Charging Cable,1,11.95,12/03/19 13:47,"722 Meadow St, San Francisco, CA 94016" -316269,Google Phone,1,600,12/15/19 20:06,"538 5th St, Austin, TX 73301" -316270,34in Ultrawide Monitor,1,379.99,12/07/19 19:34,"830 Lincoln St, Los Angeles, CA 90001" -316271,USB-C Charging Cable,1,11.95,12/25/19 17:18,"944 Johnson St, Atlanta, GA 30301" -316272,AAA Batteries (4-pack),1,2.99,12/22/19 19:50,"382 Lakeview St, Los Angeles, CA 90001" -316273,Lightning Charging Cable,1,14.95,12/06/19 18:42,"901 Cedar St, Los Angeles, CA 90001" -316274,Bose SoundSport Headphones,1,99.99,12/22/19 02:44,"752 Lake St, Portland, OR 97035" -316275,iPhone,1,700,12/12/19 04:45,"900 Ridge St, Boston, MA 02215" -316276,27in FHD Monitor,1,149.99,12/03/19 23:40,"679 Highland St, Los Angeles, CA 90001" -316277,34in Ultrawide Monitor,1,379.99,12/28/19 13:23,"256 6th St, New York City, NY 10001" -316278,27in 4K Gaming Monitor,1,389.99,12/07/19 23:42,"758 Cherry St, New York City, NY 10001" -316279,AAA Batteries (4-pack),3,2.99,12/27/19 08:57,"325 Meadow St, New York City, NY 10001" -316280,Bose SoundSport Headphones,1,99.99,12/11/19 10:30,"208 Chestnut St, New York City, NY 10001" -316281,AA Batteries (4-pack),1,3.84,12/18/19 00:19,"561 Chestnut St, Los Angeles, CA 90001" -316282,20in Monitor,1,109.99,12/22/19 21:02,"498 Lake St, Dallas, TX 75001" -316283,Flatscreen TV,1,300,12/11/19 21:23,"227 Willow St, New York City, NY 10001" -316284,Flatscreen TV,1,300,12/29/19 15:24,"895 Willow St, New York City, NY 10001" -316285,USB-C Charging Cable,1,11.95,12/05/19 18:28,"797 Ridge St, New York City, NY 10001" -316286,20in Monitor,1,109.99,12/21/19 08:36,"712 West St, Los Angeles, CA 90001" -316287,27in FHD Monitor,1,149.99,12/08/19 20:24,"903 9th St, San Francisco, CA 94016" -316288,AAA Batteries (4-pack),2,2.99,12/06/19 01:29,"216 Cherry St, Seattle, WA 98101" -316289,Wired Headphones,1,11.99,12/05/19 00:03,"963 Jackson St, San Francisco, CA 94016" -316290,Bose SoundSport Headphones,1,99.99,12/04/19 20:54,"519 Jefferson St, Boston, MA 02215" -316291,Flatscreen TV,1,300,12/21/19 22:19,"338 Chestnut St, New York City, NY 10001" -316292,20in Monitor,1,109.99,12/10/19 16:22,"898 13th St, San Francisco, CA 94016" -316293,Vareebadd Phone,1,400,12/15/19 20:20,"268 Ridge St, Los Angeles, CA 90001" -316294,AA Batteries (4-pack),1,3.84,12/08/19 14:34,"799 Church St, New York City, NY 10001" -316295,AAA Batteries (4-pack),1,2.99,12/23/19 03:06,"40 Park St, New York City, NY 10001" -316296,AAA Batteries (4-pack),1,2.99,12/14/19 13:17,"316 Church St, San Francisco, CA 94016" -316297,AAA Batteries (4-pack),1,2.99,12/16/19 13:36,"430 9th St, Boston, MA 02215" -316298,Wired Headphones,1,11.99,12/28/19 15:56,"17 Washington St, San Francisco, CA 94016" -316298,AA Batteries (4-pack),1,3.84,12/28/19 15:56,"17 Washington St, San Francisco, CA 94016" -316299,AA Batteries (4-pack),1,3.84,12/09/19 05:45,"6 Washington St, Los Angeles, CA 90001" -316300,USB-C Charging Cable,1,11.95,12/04/19 14:23,"771 12th St, New York City, NY 10001" -316301,Vareebadd Phone,1,400,12/30/19 19:13,"585 9th St, San Francisco, CA 94016" -316301,USB-C Charging Cable,1,11.95,12/30/19 19:13,"585 9th St, San Francisco, CA 94016" -316302,AA Batteries (4-pack),1,3.84,12/30/19 16:24,"755 Wilson St, San Francisco, CA 94016" -316303,Wired Headphones,1,11.99,12/27/19 19:31,"313 9th St, New York City, NY 10001" -316304,USB-C Charging Cable,2,11.95,12/14/19 20:28,"18 Main St, Los Angeles, CA 90001" -316305,Macbook Pro Laptop,1,1700,12/17/19 17:39,"240 Wilson St, Dallas, TX 75001" -316306,USB-C Charging Cable,1,11.95,12/10/19 17:05,"312 Adams St, Seattle, WA 98101" -316307,AAA Batteries (4-pack),1,2.99,12/09/19 02:25,"438 Cherry St, Atlanta, GA 30301" -316308,Bose SoundSport Headphones,1,99.99,12/16/19 17:05,"720 12th St, Los Angeles, CA 90001" -316309,Apple Airpods Headphones,1,150,12/17/19 13:26,"315 Jackson St, Los Angeles, CA 90001" -316310,Wired Headphones,1,11.99,12/18/19 11:47,"237 North St, Portland, OR 97035" -316311,LG Washing Machine,1,600.0,12/16/19 12:44,"477 Cedar St, New York City, NY 10001" -316312,Bose SoundSport Headphones,1,99.99,12/01/19 20:03,"85 Ridge St, San Francisco, CA 94016" -316313,USB-C Charging Cable,1,11.95,12/15/19 13:23,"499 Church St, Portland, ME 04101" -316314,AA Batteries (4-pack),3,3.84,12/23/19 11:04,"980 Cedar St, Los Angeles, CA 90001" -316315,Lightning Charging Cable,1,14.95,12/19/19 20:21,"549 Johnson St, New York City, NY 10001" -316316,Apple Airpods Headphones,1,150,12/07/19 18:38,"452 North St, San Francisco, CA 94016" -316317,Apple Airpods Headphones,1,150,12/25/19 18:05,"369 Maple St, San Francisco, CA 94016" -316318,Wired Headphones,1,11.99,12/06/19 12:45,"100 South St, Los Angeles, CA 90001" -316319,Wired Headphones,1,11.99,12/28/19 10:14,"79 River St, Los Angeles, CA 90001" -316320,Bose SoundSport Headphones,1,99.99,12/06/19 14:19,"613 10th St, Los Angeles, CA 90001" -316321,Apple Airpods Headphones,1,150,12/18/19 22:35,"81 Lakeview St, Boston, MA 02215" -316322,27in 4K Gaming Monitor,1,389.99,12/09/19 15:50,"188 Cherry St, Portland, OR 97035" -316323,Bose SoundSport Headphones,1,99.99,12/20/19 17:29,"474 Johnson St, New York City, NY 10001" -316324,AAA Batteries (4-pack),2,2.99,12/22/19 01:25,"62 6th St, Seattle, WA 98101" -316325,27in FHD Monitor,1,149.99,12/07/19 10:15,"855 Willow St, Seattle, WA 98101" -316326,Bose SoundSport Headphones,1,99.99,12/20/19 19:18,"812 Church St, Seattle, WA 98101" -316327,Apple Airpods Headphones,1,150,12/16/19 02:00,"640 Jefferson St, Portland, OR 97035" -316328,USB-C Charging Cable,1,11.95,12/27/19 20:25,"900 Willow St, Seattle, WA 98101" -316329,Wired Headphones,1,11.99,12/28/19 15:13,"723 Hickory St, San Francisco, CA 94016" -316330,Bose SoundSport Headphones,1,99.99,12/11/19 14:50,"352 Washington St, New York City, NY 10001" -316331,AAA Batteries (4-pack),1,2.99,12/21/19 20:57,"377 4th St, San Francisco, CA 94016" -316332,AA Batteries (4-pack),1,3.84,12/02/19 13:46,"577 Cherry St, Los Angeles, CA 90001" -316333,iPhone,1,700,12/16/19 04:20,"604 Sunset St, San Francisco, CA 94016" -316334,Wired Headphones,1,11.99,12/04/19 23:42,"621 Cherry St, New York City, NY 10001" -316334,Apple Airpods Headphones,1,150,12/04/19 23:42,"621 Cherry St, New York City, NY 10001" -316335,Macbook Pro Laptop,1,1700,12/04/19 20:13,"534 Jackson St, New York City, NY 10001" -316336,USB-C Charging Cable,1,11.95,12/31/19 12:42,"644 Willow St, San Francisco, CA 94016" -316337,27in 4K Gaming Monitor,1,389.99,12/01/19 17:21,"394 9th St, New York City, NY 10001" -316338,USB-C Charging Cable,1,11.95,12/19/19 20:50,"772 Hickory St, San Francisco, CA 94016" -316339,Lightning Charging Cable,1,14.95,12/07/19 17:44,"59 13th St, Portland, OR 97035" -316340,ThinkPad Laptop,1,999.99,12/24/19 19:53,"664 Meadow St, Dallas, TX 75001" -316341,AAA Batteries (4-pack),1,2.99,12/22/19 09:35,"603 Johnson St, Dallas, TX 75001" -316342,Macbook Pro Laptop,1,1700,12/29/19 19:21,"690 Jefferson St, Dallas, TX 75001" -316343,20in Monitor,1,109.99,12/07/19 23:35,"401 South St, San Francisco, CA 94016" -316344,Wired Headphones,1,11.99,12/09/19 23:23,"295 Wilson St, San Francisco, CA 94016" -316345,Lightning Charging Cable,1,14.95,12/15/19 12:15,"597 14th St, Los Angeles, CA 90001" -316346,34in Ultrawide Monitor,1,379.99,12/02/19 11:01,"319 Adams St, Portland, OR 97035" -316347,Lightning Charging Cable,1,14.95,12/24/19 13:52,"28 10th St, New York City, NY 10001" -316348,Lightning Charging Cable,1,14.95,12/25/19 09:24,"285 10th St, San Francisco, CA 94016" -316349,Lightning Charging Cable,1,14.95,12/07/19 13:02,"177 2nd St, Portland, OR 97035" -316350,Wired Headphones,1,11.99,12/02/19 22:32,"280 Sunset St, Dallas, TX 75001" -316351,Wired Headphones,1,11.99,12/14/19 14:18,"142 Cedar St, New York City, NY 10001" -316352,34in Ultrawide Monitor,1,379.99,12/30/19 10:05,"907 Center St, Dallas, TX 75001" -316353,Flatscreen TV,1,300,12/08/19 07:37,"665 Washington St, San Francisco, CA 94016" -316354,Macbook Pro Laptop,1,1700,12/14/19 08:44,"999 Main St, Seattle, WA 98101" -316355,AA Batteries (4-pack),1,3.84,12/12/19 23:36,"895 Lake St, San Francisco, CA 94016" -316356,AA Batteries (4-pack),1,3.84,12/02/19 08:13,"554 West St, New York City, NY 10001" -316357,Wired Headphones,1,11.99,12/25/19 20:42,"49 Highland St, San Francisco, CA 94016" -316358,USB-C Charging Cable,1,11.95,12/04/19 15:43,"276 12th St, San Francisco, CA 94016" -316359,AA Batteries (4-pack),3,3.84,12/09/19 13:15,"870 Lakeview St, Los Angeles, CA 90001" -316360,AA Batteries (4-pack),1,3.84,12/04/19 11:48,"51 Maple St, Austin, TX 73301" -316361,Apple Airpods Headphones,1,150,12/21/19 09:58,"578 Madison St, Austin, TX 73301" -316362,AA Batteries (4-pack),1,3.84,12/17/19 01:32,"483 Hill St, Austin, TX 73301" -316363,AA Batteries (4-pack),1,3.84,12/15/19 23:08,"264 7th St, Dallas, TX 75001" -316364,Flatscreen TV,1,300,12/01/19 18:40,"614 Hickory St, Atlanta, GA 30301" -316365,USB-C Charging Cable,1,11.95,12/26/19 22:00,"959 Cedar St, Austin, TX 73301" -316366,USB-C Charging Cable,1,11.95,12/06/19 16:47,"757 Park St, Dallas, TX 75001" -316367,AAA Batteries (4-pack),1,2.99,12/10/19 01:11,"307 Madison St, Los Angeles, CA 90001" -316368,iPhone,1,700,12/05/19 13:53,"81 Jackson St, San Francisco, CA 94016" -316369,AAA Batteries (4-pack),3,2.99,12/14/19 21:41,"263 Ridge St, San Francisco, CA 94016" -316370,27in 4K Gaming Monitor,1,389.99,12/24/19 17:47,"575 Park St, San Francisco, CA 94016" -316371,Lightning Charging Cable,1,14.95,12/26/19 11:04,"147 12th St, Seattle, WA 98101" -316372,AAA Batteries (4-pack),1,2.99,12/15/19 23:08,"39 6th St, Boston, MA 02215" -316373,Flatscreen TV,1,300,12/08/19 12:10,"477 Hickory St, Los Angeles, CA 90001" -316374,Apple Airpods Headphones,1,150,12/17/19 19:34,"329 Dogwood St, Portland, ME 04101" -316375,USB-C Charging Cable,1,11.95,12/19/19 23:28,"463 Hickory St, Portland, OR 97035" -316376,27in 4K Gaming Monitor,1,389.99,12/22/19 09:38,"349 Maple St, Atlanta, GA 30301" -316377,AAA Batteries (4-pack),1,2.99,12/20/19 13:37,"858 Hill St, Los Angeles, CA 90001" -316378,Macbook Pro Laptop,1,1700,12/28/19 20:06,"572 10th St, Dallas, TX 75001" -316379,Apple Airpods Headphones,1,150,12/18/19 19:04,"839 Lakeview St, New York City, NY 10001" -316380,AAA Batteries (4-pack),1,2.99,12/11/19 20:22,"324 Meadow St, Los Angeles, CA 90001" -316381,AA Batteries (4-pack),1,3.84,12/28/19 16:31,"236 Washington St, Seattle, WA 98101" -316382,Bose SoundSport Headphones,1,99.99,12/01/19 11:19,"243 Walnut St, Los Angeles, CA 90001" -316383,Macbook Pro Laptop,1,1700,12/04/19 09:59,"422 Park St, San Francisco, CA 94016" -316384,Lightning Charging Cable,1,14.95,12/21/19 23:43,"431 Walnut St, Atlanta, GA 30301" -316385,iPhone,1,700,12/24/19 05:58,"353 2nd St, Austin, TX 73301" -316386,USB-C Charging Cable,1,11.95,12/31/19 11:00,"108 Wilson St, Los Angeles, CA 90001" -316387,AAA Batteries (4-pack),1,2.99,12/31/19 01:14,"762 Dogwood St, San Francisco, CA 94016" -316388,AA Batteries (4-pack),2,3.84,12/28/19 12:15,"397 Elm St, San Francisco, CA 94016" -316389,Apple Airpods Headphones,1,150,12/11/19 14:17,"189 Adams St, San Francisco, CA 94016" -316390,Apple Airpods Headphones,1,150,12/27/19 08:26,"171 Maple St, San Francisco, CA 94016" -316391,Bose SoundSport Headphones,1,99.99,12/03/19 22:05,"744 Chestnut St, Seattle, WA 98101" -316392,Apple Airpods Headphones,1,150,12/27/19 22:28,"547 Madison St, Los Angeles, CA 90001" -316393,Wired Headphones,1,11.99,12/02/19 15:12,"518 Sunset St, San Francisco, CA 94016" -316394,USB-C Charging Cable,1,11.95,12/08/19 18:47,"384 11th St, Atlanta, GA 30301" -316395,AA Batteries (4-pack),1,3.84,12/22/19 21:30,"567 6th St, Portland, OR 97035" -316396,Wired Headphones,1,11.99,12/02/19 22:25,"165 North St, Dallas, TX 75001" -316397,Apple Airpods Headphones,1,150,12/30/19 12:48,"48 Hill St, Boston, MA 02215" -316398,USB-C Charging Cable,1,11.95,12/28/19 14:44,"819 Lake St, New York City, NY 10001" -316399,Bose SoundSport Headphones,1,99.99,12/28/19 12:02,"645 Lincoln St, Los Angeles, CA 90001" -316400,AAA Batteries (4-pack),1,2.99,12/01/19 19:57,"411 Adams St, San Francisco, CA 94016" -316401,USB-C Charging Cable,1,11.95,12/27/19 17:29,"785 West St, Dallas, TX 75001" -316402,Flatscreen TV,1,300,12/28/19 23:04,"417 10th St, Dallas, TX 75001" -316403,AAA Batteries (4-pack),2,2.99,12/23/19 21:32,"807 Elm St, Dallas, TX 75001" -316404,Lightning Charging Cable,1,14.95,12/23/19 13:00,"395 Hill St, Los Angeles, CA 90001" -316405,AAA Batteries (4-pack),1,2.99,12/25/19 16:15,"680 West St, San Francisco, CA 94016" -316406,AAA Batteries (4-pack),3,2.99,12/17/19 01:38,"113 14th St, San Francisco, CA 94016" -316407,AAA Batteries (4-pack),2,2.99,12/02/19 19:29,"153 River St, San Francisco, CA 94016" -316408,USB-C Charging Cable,1,11.95,12/22/19 11:40,"358 14th St, San Francisco, CA 94016" -316409,Bose SoundSport Headphones,1,99.99,12/05/19 16:24,"635 5th St, San Francisco, CA 94016" -316410,AA Batteries (4-pack),1,3.84,12/28/19 12:58,"287 Chestnut St, Portland, OR 97035" -316411,Lightning Charging Cable,1,14.95,12/15/19 15:19,"182 11th St, New York City, NY 10001" -316411,27in FHD Monitor,1,149.99,12/15/19 15:19,"182 11th St, New York City, NY 10001" -316412,iPhone,1,700,12/06/19 12:12,"140 River St, Los Angeles, CA 90001" -316412,Lightning Charging Cable,1,14.95,12/06/19 12:12,"140 River St, Los Angeles, CA 90001" -316412,Apple Airpods Headphones,1,150,12/06/19 12:12,"140 River St, Los Angeles, CA 90001" -316413,AA Batteries (4-pack),2,3.84,12/27/19 15:19,"806 5th St, Los Angeles, CA 90001" -316414,Lightning Charging Cable,1,14.95,12/06/19 12:56,"892 Main St, Los Angeles, CA 90001" -316415,Google Phone,1,600,12/06/19 13:44,"684 5th St, Boston, MA 02215" -316416,AA Batteries (4-pack),1,3.84,12/07/19 16:47,"177 North St, San Francisco, CA 94016" -316416,Lightning Charging Cable,2,14.95,12/07/19 16:47,"177 North St, San Francisco, CA 94016" -316417,Macbook Pro Laptop,1,1700,12/05/19 16:36,"785 Elm St, Portland, OR 97035" -316418,Lightning Charging Cable,1,14.95,12/14/19 12:56,"204 14th St, Dallas, TX 75001" -316419,USB-C Charging Cable,1,11.95,12/04/19 05:44,"524 Spruce St, San Francisco, CA 94016" -316419,AA Batteries (4-pack),1,3.84,12/04/19 05:44,"524 Spruce St, San Francisco, CA 94016" -316420,Macbook Pro Laptop,1,1700,12/30/19 19:24,"866 Hill St, Atlanta, GA 30301" -316421,Lightning Charging Cable,1,14.95,12/06/19 17:06,"693 Lincoln St, New York City, NY 10001" -316422,AAA Batteries (4-pack),2,2.99,12/24/19 11:16,"3 10th St, San Francisco, CA 94016" -316423,iPhone,1,700,12/30/19 23:22,"965 Lake St, New York City, NY 10001" -316423,AAA Batteries (4-pack),1,2.99,12/30/19 23:22,"965 Lake St, New York City, NY 10001" -316424,Lightning Charging Cable,1,14.95,12/03/19 19:06,"916 Lincoln St, Boston, MA 02215" -316425,USB-C Charging Cable,2,11.95,12/04/19 14:27,"113 13th St, Seattle, WA 98101" -316426,AA Batteries (4-pack),1,3.84,12/18/19 16:13,"734 10th St, Seattle, WA 98101" -316427,Apple Airpods Headphones,1,150,12/23/19 18:23,"190 10th St, Dallas, TX 75001" -316428,USB-C Charging Cable,1,11.95,12/12/19 19:38,"439 Lakeview St, Austin, TX 73301" -316429,AA Batteries (4-pack),1,3.84,12/22/19 17:28,"4 West St, New York City, NY 10001" -316430,AAA Batteries (4-pack),2,2.99,12/12/19 16:58,"516 Adams St, Portland, OR 97035" -316431,Vareebadd Phone,1,400,12/18/19 11:36,"674 Ridge St, Portland, ME 04101" -316431,USB-C Charging Cable,1,11.95,12/18/19 11:36,"674 Ridge St, Portland, ME 04101" -316432,Flatscreen TV,1,300,12/19/19 17:53,"571 Center St, Dallas, TX 75001" -316433,27in FHD Monitor,1,149.99,12/08/19 15:21,"121 12th St, Portland, OR 97035" -316434,AA Batteries (4-pack),1,3.84,12/05/19 11:26,"759 Highland St, San Francisco, CA 94016" -316435,Apple Airpods Headphones,1,150,12/07/19 14:44,"73 Cedar St, San Francisco, CA 94016" -316436,AA Batteries (4-pack),1,3.84,12/03/19 05:20,"781 Jefferson St, Dallas, TX 75001" -316437,AA Batteries (4-pack),1,3.84,12/09/19 14:04,"700 Dogwood St, San Francisco, CA 94016" -316438,AA Batteries (4-pack),1,3.84,12/22/19 10:09,"763 Lake St, New York City, NY 10001" -316439,Bose SoundSport Headphones,1,99.99,12/24/19 14:20,"876 14th St, Los Angeles, CA 90001" -316440,USB-C Charging Cable,1,11.95,12/28/19 16:42,"430 Pine St, San Francisco, CA 94016" -316441,Bose SoundSport Headphones,1,99.99,12/27/19 15:58,"342 Lakeview St, Boston, MA 02215" -316442,Wired Headphones,1,11.99,12/28/19 09:55,"76 Washington St, Los Angeles, CA 90001" -316443,27in FHD Monitor,1,149.99,12/09/19 22:13,"864 Lakeview St, Los Angeles, CA 90001" -316444,Wired Headphones,1,11.99,12/17/19 22:06,"784 Church St, New York City, NY 10001" -316445,iPhone,1,700,12/29/19 13:58,"252 Hill St, San Francisco, CA 94016" -316445,Lightning Charging Cable,1,14.95,12/29/19 13:58,"252 Hill St, San Francisco, CA 94016" -316446,AAA Batteries (4-pack),1,2.99,12/05/19 11:26,"903 11th St, Los Angeles, CA 90001" -316447,34in Ultrawide Monitor,1,379.99,12/01/19 09:17,"797 2nd St, San Francisco, CA 94016" -316448,Macbook Pro Laptop,1,1700,12/05/19 10:32,"882 13th St, Atlanta, GA 30301" -316449,Lightning Charging Cable,1,14.95,12/15/19 21:22,"895 8th St, Los Angeles, CA 90001" -316450,AAA Batteries (4-pack),1,2.99,12/28/19 01:54,"387 Elm St, Austin, TX 73301" -316451,USB-C Charging Cable,1,11.95,12/13/19 21:06,"231 Adams St, Atlanta, GA 30301" -316452,Lightning Charging Cable,1,14.95,12/12/19 17:16,"120 Johnson St, San Francisco, CA 94016" -316453,27in FHD Monitor,1,149.99,12/04/19 13:19,"243 Elm St, Dallas, TX 75001" -316454,Lightning Charging Cable,1,14.95,12/22/19 01:26,"631 13th St, Seattle, WA 98101" -316455,Bose SoundSport Headphones,1,99.99,12/03/19 17:09,"716 12th St, Boston, MA 02215" -316456,27in 4K Gaming Monitor,1,389.99,12/10/19 17:29,"667 Cherry St, San Francisco, CA 94016" -316457,USB-C Charging Cable,1,11.95,12/14/19 18:19,"779 Highland St, Los Angeles, CA 90001" -316458,27in FHD Monitor,1,149.99,12/30/19 12:49,"187 Dogwood St, San Francisco, CA 94016" -316459,Google Phone,1,600,12/06/19 09:48,"393 Cedar St, Boston, MA 02215" -316460,Google Phone,1,600,12/29/19 18:55,"589 Johnson St, New York City, NY 10001" -316461,27in FHD Monitor,1,149.99,12/06/19 12:15,"570 Meadow St, Austin, TX 73301" -316462,AA Batteries (4-pack),2,3.84,12/19/19 20:23,"255 4th St, Portland, ME 04101" -316463,Flatscreen TV,1,300,12/14/19 19:23,"756 Adams St, Portland, OR 97035" -316464,AA Batteries (4-pack),1,3.84,12/14/19 10:01,"118 Walnut St, Los Angeles, CA 90001" -316465,Vareebadd Phone,1,400,12/28/19 15:28,"18 2nd St, Dallas, TX 75001" -316466,Lightning Charging Cable,1,14.95,12/06/19 07:25,"850 Hickory St, Portland, OR 97035" -316467,27in FHD Monitor,1,149.99,12/04/19 16:23,"322 6th St, New York City, NY 10001" -316468,Lightning Charging Cable,1,14.95,12/18/19 13:04,"514 10th St, San Francisco, CA 94016" -316469,Google Phone,1,600,12/04/19 15:09,"954 South St, San Francisco, CA 94016" -316470,USB-C Charging Cable,1,11.95,12/14/19 10:03,"883 Forest St, Los Angeles, CA 90001" -316471,USB-C Charging Cable,1,11.95,12/24/19 23:37,"93 Cherry St, Boston, MA 02215" -316472,AA Batteries (4-pack),2,3.84,12/29/19 19:59,"425 Wilson St, Los Angeles, CA 90001" -316473,USB-C Charging Cable,1,11.95,12/09/19 15:19,"232 Jackson St, Atlanta, GA 30301" -316474,27in FHD Monitor,1,149.99,12/21/19 19:48,"362 Chestnut St, Los Angeles, CA 90001" -316475,AAA Batteries (4-pack),2,2.99,12/19/19 20:30,"399 River St, New York City, NY 10001" -316476,iPhone,1,700,12/21/19 11:17,"316 Walnut St, Portland, OR 97035" -316476,Lightning Charging Cable,1,14.95,12/21/19 11:17,"316 Walnut St, Portland, OR 97035" -316477,iPhone,1,700,12/20/19 10:01,"616 Walnut St, Austin, TX 73301" -316477,Lightning Charging Cable,1,14.95,12/20/19 10:01,"616 Walnut St, Austin, TX 73301" -316478,34in Ultrawide Monitor,1,379.99,12/27/19 21:33,"924 South St, Los Angeles, CA 90001" -316479,AA Batteries (4-pack),1,3.84,12/06/19 16:19,"970 Cedar St, Seattle, WA 98101" -316480,27in FHD Monitor,1,149.99,12/07/19 19:57,"761 Lakeview St, San Francisco, CA 94016" -316481,Wired Headphones,1,11.99,12/26/19 00:26,"26 2nd St, Dallas, TX 75001" -316482,AA Batteries (4-pack),1,3.84,12/13/19 17:11,"701 Madison St, Boston, MA 02215" -316483,Bose SoundSport Headphones,1,99.99,12/28/19 14:37,"211 Lincoln St, Boston, MA 02215" -316484,34in Ultrawide Monitor,1,379.99,12/13/19 18:02,"581 Forest St, San Francisco, CA 94016" -316485,AA Batteries (4-pack),1,3.84,12/30/19 15:49,"46 Elm St, Portland, OR 97035" -316486,USB-C Charging Cable,1,11.95,12/23/19 12:44,"210 Ridge St, Dallas, TX 75001" -316487,Lightning Charging Cable,1,14.95,12/13/19 19:16,"402 13th St, Los Angeles, CA 90001" -316488,Lightning Charging Cable,1,14.95,12/10/19 19:15,"933 Spruce St, Seattle, WA 98101" -316489,Lightning Charging Cable,1,14.95,12/03/19 17:16,"948 Washington St, New York City, NY 10001" -316490,Lightning Charging Cable,2,14.95,12/27/19 15:36,"831 Dogwood St, New York City, NY 10001" -316491,Wired Headphones,1,11.99,12/03/19 02:23,"202 Cedar St, Boston, MA 02215" -316492,AAA Batteries (4-pack),1,2.99,12/17/19 19:11,"527 Elm St, Seattle, WA 98101" -316493,27in FHD Monitor,1,149.99,12/19/19 22:52,"624 Washington St, New York City, NY 10001" -316494,AAA Batteries (4-pack),1,2.99,12/21/19 12:34,"899 Hickory St, San Francisco, CA 94016" -316495,Wired Headphones,1,11.99,12/27/19 22:08,"676 North St, San Francisco, CA 94016" -316496,USB-C Charging Cable,1,11.95,12/10/19 12:08,"877 Maple St, Los Angeles, CA 90001" -316497,AA Batteries (4-pack),1,3.84,12/14/19 13:25,"54 Center St, Atlanta, GA 30301" -316498,AA Batteries (4-pack),1,3.84,12/31/19 17:19,"319 Jackson St, New York City, NY 10001" -316499,Bose SoundSport Headphones,1,99.99,12/08/19 10:47,"248 Johnson St, New York City, NY 10001" -316500,27in FHD Monitor,1,149.99,12/04/19 13:08,"272 Lake St, Los Angeles, CA 90001" -316501,Bose SoundSport Headphones,1,99.99,12/21/19 13:43,"7 Ridge St, Seattle, WA 98101" -316502,Wired Headphones,1,11.99,12/11/19 19:02,"77 Forest St, San Francisco, CA 94016" -316503,USB-C Charging Cable,1,11.95,12/08/19 09:06,"775 Pine St, Los Angeles, CA 90001" -316504,AA Batteries (4-pack),3,3.84,12/10/19 22:12,"591 Meadow St, New York City, NY 10001" -316505,Lightning Charging Cable,1,14.95,12/07/19 20:35,"610 Church St, Portland, OR 97035" -316506,Macbook Pro Laptop,1,1700,12/22/19 19:25,"747 6th St, Portland, OR 97035" -316507,34in Ultrawide Monitor,1,379.99,12/03/19 12:46,"751 7th St, Boston, MA 02215" -316508,AA Batteries (4-pack),2,3.84,12/23/19 13:11,"348 Center St, San Francisco, CA 94016" -316509,AAA Batteries (4-pack),1,2.99,12/05/19 10:05,"91 Sunset St, New York City, NY 10001" -316510,27in 4K Gaming Monitor,1,389.99,12/31/19 08:24,"943 Madison St, New York City, NY 10001" -316511,iPhone,1,700,12/06/19 14:24,"56 Hickory St, Dallas, TX 75001" -316512,iPhone,1,700,12/15/19 23:32,"510 Center St, Austin, TX 73301" -316513,AA Batteries (4-pack),1,3.84,12/01/19 12:27,"529 6th St, Los Angeles, CA 90001" -316514,AAA Batteries (4-pack),2,2.99,12/13/19 11:29,"959 12th St, New York City, NY 10001" -316515,AA Batteries (4-pack),1,3.84,12/28/19 20:37,"460 Washington St, New York City, NY 10001" -316516,AAA Batteries (4-pack),1,2.99,12/14/19 14:33,"524 Madison St, Dallas, TX 75001" -316517,Google Phone,1,600,12/16/19 17:51,"484 Spruce St, San Francisco, CA 94016" -316518,AAA Batteries (4-pack),1,2.99,12/23/19 13:04,"277 Adams St, San Francisco, CA 94016" -316519,AAA Batteries (4-pack),1,2.99,12/13/19 15:42,"12 Forest St, Los Angeles, CA 90001" -316520,ThinkPad Laptop,1,999.99,12/12/19 20:21,"60 West St, San Francisco, CA 94016" -316521,Wired Headphones,1,11.99,12/04/19 17:22,"13 13th St, Los Angeles, CA 90001" -316522,Wired Headphones,1,11.99,12/08/19 00:30,"206 10th St, Portland, OR 97035" -316523,AA Batteries (4-pack),1,3.84,12/12/19 08:42,"264 Madison St, Los Angeles, CA 90001" -316524,AA Batteries (4-pack),1,3.84,12/29/19 18:32,"742 2nd St, San Francisco, CA 94016" -316525,AA Batteries (4-pack),2,3.84,12/22/19 11:06,"271 Meadow St, New York City, NY 10001" -316526,Bose SoundSport Headphones,1,99.99,12/16/19 12:51,"159 Pine St, Portland, OR 97035" -316527,ThinkPad Laptop,1,999.99,12/12/19 21:47,"31 Park St, San Francisco, CA 94016" -316528,Apple Airpods Headphones,2,150,12/05/19 09:39,"585 Center St, Austin, TX 73301" -316529,ThinkPad Laptop,1,999.99,12/17/19 15:32,"451 Cedar St, New York City, NY 10001" -316530,Wired Headphones,1,11.99,12/28/19 03:17,"234 Hill St, Atlanta, GA 30301" -316531,Bose SoundSport Headphones,1,99.99,12/22/19 14:04,"403 Johnson St, Los Angeles, CA 90001" -316532,USB-C Charging Cable,1,11.95,12/24/19 17:36,"812 Cedar St, San Francisco, CA 94016" -316533,Bose SoundSport Headphones,1,99.99,12/04/19 16:11,"962 11th St, Atlanta, GA 30301" -316534,Lightning Charging Cable,1,14.95,12/17/19 17:04,"890 1st St, Dallas, TX 75001" -316535,ThinkPad Laptop,1,999.99,12/19/19 13:22,"954 South St, San Francisco, CA 94016" -316536,27in FHD Monitor,1,149.99,12/29/19 15:36,"89 Chestnut St, San Francisco, CA 94016" -316536,AAA Batteries (4-pack),1,2.99,12/29/19 15:36,"89 Chestnut St, San Francisco, CA 94016" -316537,Flatscreen TV,1,300,12/22/19 02:48,"375 12th St, San Francisco, CA 94016" -316538,Lightning Charging Cable,1,14.95,12/01/19 11:15,"182 12th St, Los Angeles, CA 90001" -316539,Apple Airpods Headphones,1,150,12/22/19 16:31,"744 11th St, Dallas, TX 75001" -316540,USB-C Charging Cable,1,11.95,12/12/19 02:25,"915 2nd St, Los Angeles, CA 90001" -316541,USB-C Charging Cable,1,11.95,12/02/19 15:14,"915 Lincoln St, Seattle, WA 98101" -316542,Lightning Charging Cable,1,14.95,12/29/19 11:00,"107 8th St, Austin, TX 73301" -316543,Bose SoundSport Headphones,1,99.99,12/15/19 21:52,"278 Meadow St, Seattle, WA 98101" -316544,AAA Batteries (4-pack),1,2.99,12/12/19 10:56,"541 Willow St, New York City, NY 10001" -316545,AAA Batteries (4-pack),1,2.99,12/08/19 10:47,"578 Highland St, Dallas, TX 75001" -316546,iPhone,1,700,12/22/19 14:41,"843 Lake St, San Francisco, CA 94016" -316547,Vareebadd Phone,1,400,12/26/19 13:26,"586 Madison St, Austin, TX 73301" -316548,Apple Airpods Headphones,1,150,12/21/19 14:25,"389 9th St, Boston, MA 02215" -316549,Bose SoundSport Headphones,1,99.99,12/30/19 19:53,"261 Highland St, Boston, MA 02215" -316550,Google Phone,1,600,12/04/19 22:08,"293 Park St, Boston, MA 02215" -316550,USB-C Charging Cable,1,11.95,12/04/19 22:08,"293 Park St, Boston, MA 02215" -316551,Lightning Charging Cable,1,14.95,12/16/19 03:53,"921 South St, Seattle, WA 98101" -316552,AA Batteries (4-pack),1,3.84,12/19/19 13:25,"290 Lakeview St, New York City, NY 10001" -316553,iPhone,1,700,12/04/19 21:08,"572 Dogwood St, Portland, OR 97035" -316554,Apple Airpods Headphones,1,150,12/07/19 21:01,"479 Church St, San Francisco, CA 94016" -316555,Wired Headphones,1,11.99,12/26/19 22:31,"128 Church St, San Francisco, CA 94016" -316556,Bose SoundSport Headphones,1,99.99,12/02/19 22:29,"211 Main St, San Francisco, CA 94016" -316557,USB-C Charging Cable,1,11.95,12/08/19 15:24,"630 5th St, Dallas, TX 75001" -316558,Apple Airpods Headphones,1,150,12/22/19 10:29,"867 13th St, San Francisco, CA 94016" -316559,27in 4K Gaming Monitor,1,389.99,12/11/19 19:21,"390 Washington St, Boston, MA 02215" -316560,AAA Batteries (4-pack),2,2.99,12/17/19 10:53,"488 Hill St, Dallas, TX 75001" -316561,AAA Batteries (4-pack),1,2.99,12/14/19 17:53,"254 Wilson St, Austin, TX 73301" -316562,AA Batteries (4-pack),2,3.84,12/13/19 08:34,"383 Ridge St, New York City, NY 10001" -316563,USB-C Charging Cable,1,11.95,12/24/19 19:17,"556 Cherry St, Los Angeles, CA 90001" -316564,AAA Batteries (4-pack),1,2.99,12/24/19 06:55,"934 Wilson St, San Francisco, CA 94016" -316565,Wired Headphones,1,11.99,12/08/19 23:28,"731 Cherry St, New York City, NY 10001" -316566,AAA Batteries (4-pack),1,2.99,12/17/19 21:01,"6 Highland St, Atlanta, GA 30301" -316567,AA Batteries (4-pack),2,3.84,12/22/19 10:43,"600 Hickory St, San Francisco, CA 94016" -316568,USB-C Charging Cable,1,11.95,12/26/19 22:14,"522 4th St, Los Angeles, CA 90001" -316569,27in 4K Gaming Monitor,1,389.99,12/14/19 19:02,"153 Lakeview St, Seattle, WA 98101" -316570,Wired Headphones,1,11.99,12/10/19 16:41,"932 Main St, New York City, NY 10001" -316571,Apple Airpods Headphones,1,150,12/15/19 14:15,"595 2nd St, Los Angeles, CA 90001" -316572,iPhone,1,700,12/27/19 16:12,"147 12th St, New York City, NY 10001" -316573,AAA Batteries (4-pack),1,2.99,12/20/19 13:57,"89 Chestnut St, New York City, NY 10001" -316574,AAA Batteries (4-pack),2,2.99,12/17/19 21:49,"155 Spruce St, San Francisco, CA 94016" -316575,Wired Headphones,1,11.99,12/18/19 11:26,"521 6th St, Dallas, TX 75001" -316576,Lightning Charging Cable,1,14.95,12/26/19 19:25,"81 Maple St, San Francisco, CA 94016" -316577,AAA Batteries (4-pack),1,2.99,12/07/19 11:03,"373 10th St, Atlanta, GA 30301" -316578,27in 4K Gaming Monitor,1,389.99,12/01/19 18:14,"340 Hickory St, Los Angeles, CA 90001" -316579,USB-C Charging Cable,1,11.95,12/28/19 13:04,"452 Willow St, San Francisco, CA 94016" -316580,USB-C Charging Cable,1,11.95,12/22/19 12:36,"398 10th St, Los Angeles, CA 90001" -316581,Google Phone,1,600,12/14/19 14:49,"849 Forest St, Seattle, WA 98101" -316582,AAA Batteries (4-pack),1,2.99,12/25/19 00:09,"473 Ridge St, Los Angeles, CA 90001" -316583,Lightning Charging Cable,1,14.95,12/16/19 16:20,"998 10th St, New York City, NY 10001" -316584,Google Phone,1,600,12/17/19 21:45,"512 11th St, New York City, NY 10001" -316584,Wired Headphones,1,11.99,12/17/19 21:45,"512 11th St, New York City, NY 10001" -316585,AA Batteries (4-pack),1,3.84,12/03/19 23:14,"753 Cherry St, Portland, OR 97035" -316586,Bose SoundSport Headphones,1,99.99,12/09/19 20:51,"836 West St, Seattle, WA 98101" -316587,Lightning Charging Cable,1,14.95,12/11/19 09:34,"165 Walnut St, San Francisco, CA 94016" -316588,Wired Headphones,1,11.99,12/18/19 22:46,"288 Jackson St, New York City, NY 10001" -316589,Lightning Charging Cable,1,14.95,12/26/19 16:27,"451 Lakeview St, Dallas, TX 75001" -316590,Lightning Charging Cable,1,14.95,12/14/19 21:54,"533 Park St, San Francisco, CA 94016" -316591,Bose SoundSport Headphones,1,99.99,12/05/19 15:55,"45 Washington St, San Francisco, CA 94016" -316592,ThinkPad Laptop,1,999.99,12/08/19 20:17,"597 13th St, Portland, OR 97035" -316593,20in Monitor,1,109.99,12/06/19 15:42,"683 8th St, San Francisco, CA 94016" -316594,27in FHD Monitor,1,149.99,12/27/19 06:44,"740 Lake St, New York City, NY 10001" -316595,Apple Airpods Headphones,1,150,12/26/19 11:07,"209 River St, San Francisco, CA 94016" -316596,27in 4K Gaming Monitor,1,389.99,12/01/19 09:58,"255 Washington St, San Francisco, CA 94016" -316597,Lightning Charging Cable,1,14.95,12/23/19 09:16,"131 Sunset St, San Francisco, CA 94016" -316598,Wired Headphones,1,11.99,12/27/19 20:47,"751 Spruce St, Austin, TX 73301" -316599,20in Monitor,1,109.99,12/15/19 22:02,"345 7th St, San Francisco, CA 94016" -316600,AAA Batteries (4-pack),2,2.99,12/02/19 19:36,"170 Jackson St, San Francisco, CA 94016" -316601,AA Batteries (4-pack),2,3.84,12/05/19 11:34,"332 Maple St, Portland, OR 97035" -316602,Bose SoundSport Headphones,1,99.99,12/25/19 17:11,"454 Chestnut St, Boston, MA 02215" -316603,Wired Headphones,1,11.99,12/13/19 15:54,"944 Forest St, San Francisco, CA 94016" -316604,Wired Headphones,1,11.99,12/13/19 23:40,"527 Meadow St, Austin, TX 73301" -316605,Bose SoundSport Headphones,1,99.99,12/08/19 18:45,"926 Sunset St, Seattle, WA 98101" -316606,34in Ultrawide Monitor,1,379.99,12/19/19 16:46,"590 12th St, Atlanta, GA 30301" -316607,AA Batteries (4-pack),1,3.84,12/23/19 20:10,"486 North St, Seattle, WA 98101" -316608,ThinkPad Laptop,1,999.99,12/03/19 12:35,"683 Elm St, San Francisco, CA 94016" -316609,34in Ultrawide Monitor,1,379.99,12/10/19 19:34,"656 Park St, New York City, NY 10001" -316610,Vareebadd Phone,1,400,12/06/19 18:12,"642 2nd St, Los Angeles, CA 90001" -316610,USB-C Charging Cable,1,11.95,12/06/19 18:12,"642 2nd St, Los Angeles, CA 90001" -316610,Wired Headphones,1,11.99,12/06/19 18:12,"642 2nd St, Los Angeles, CA 90001" -316611,AAA Batteries (4-pack),2,2.99,12/13/19 17:31,"551 5th St, San Francisco, CA 94016" -316612,Wired Headphones,1,11.99,12/20/19 09:49,"326 Cherry St, Los Angeles, CA 90001" -316613,ThinkPad Laptop,1,999.99,12/26/19 00:37,"334 Jackson St, San Francisco, CA 94016" -316614,Wired Headphones,1,11.99,12/02/19 17:43,"589 Jefferson St, New York City, NY 10001" -316615,Google Phone,1,600,12/04/19 00:09,"690 6th St, Atlanta, GA 30301" -316615,USB-C Charging Cable,1,11.95,12/04/19 00:09,"690 6th St, Atlanta, GA 30301" -316616,iPhone,1,700,12/21/19 08:55,"379 Lake St, San Francisco, CA 94016" -316616,Apple Airpods Headphones,1,150,12/21/19 08:55,"379 Lake St, San Francisco, CA 94016" -316617,AA Batteries (4-pack),2,3.84,12/02/19 13:16,"102 Maple St, Seattle, WA 98101" -316618,27in FHD Monitor,1,149.99,12/14/19 10:24,"990 Johnson St, New York City, NY 10001" -316619,Lightning Charging Cable,1,14.95,12/15/19 11:02,"768 14th St, Los Angeles, CA 90001" -316620,Macbook Pro Laptop,1,1700,12/01/19 18:05,"745 Center St, Austin, TX 73301" -316621,27in 4K Gaming Monitor,1,389.99,12/24/19 19:35,"681 Cedar St, Seattle, WA 98101" -316622,USB-C Charging Cable,1,11.95,12/22/19 15:26,"43 Cherry St, Portland, OR 97035" -316623,27in FHD Monitor,1,149.99,12/23/19 00:09,"547 5th St, New York City, NY 10001" -316624,Lightning Charging Cable,2,14.95,12/29/19 15:18,"550 13th St, San Francisco, CA 94016" -316625,USB-C Charging Cable,1,11.95,12/18/19 09:11,"772 Lincoln St, New York City, NY 10001" -316626,Google Phone,1,600,12/21/19 10:03,"400 Forest St, Los Angeles, CA 90001" -316627,USB-C Charging Cable,2,11.95,12/01/19 11:03,"246 10th St, Dallas, TX 75001" -316628,USB-C Charging Cable,1,11.95,12/08/19 17:32,"850 7th St, New York City, NY 10001" -316629,Apple Airpods Headphones,1,150,12/06/19 11:43,"906 Johnson St, Boston, MA 02215" -316630,USB-C Charging Cable,1,11.95,12/04/19 13:01,"225 Cedar St, New York City, NY 10001" -316631,Apple Airpods Headphones,1,150,12/25/19 11:37,"229 South St, Atlanta, GA 30301" -316632,Lightning Charging Cable,1,14.95,12/11/19 15:35,"966 Sunset St, San Francisco, CA 94016" -316633,Flatscreen TV,1,300,12/25/19 06:39,"368 Lake St, Portland, ME 04101" -316634,USB-C Charging Cable,1,11.95,12/22/19 18:34,"397 Spruce St, Los Angeles, CA 90001" -316635,Bose SoundSport Headphones,1,99.99,12/04/19 13:17,"210 Walnut St, San Francisco, CA 94016" -316636,Wired Headphones,1,11.99,12/18/19 15:22,"666 Center St, Los Angeles, CA 90001" -316637,iPhone,1,700,12/17/19 13:14,"746 7th St, San Francisco, CA 94016" -316638,27in FHD Monitor,1,149.99,12/20/19 15:06,"620 9th St, San Francisco, CA 94016" -316639,AAA Batteries (4-pack),1,2.99,12/21/19 12:40,"668 West St, Boston, MA 02215" -316640,Lightning Charging Cable,1,14.95,12/11/19 18:04,"264 Spruce St, New York City, NY 10001" -316641,Wired Headphones,1,11.99,12/09/19 02:46,"935 11th St, Los Angeles, CA 90001" -316642,AA Batteries (4-pack),1,3.84,12/12/19 16:27,"160 Hill St, Seattle, WA 98101" -316643,USB-C Charging Cable,1,11.95,12/28/19 19:44,"841 6th St, Dallas, TX 75001" -316644,USB-C Charging Cable,1,11.95,12/13/19 09:39,"10 Cedar St, Portland, OR 97035" -316645,Lightning Charging Cable,1,14.95,12/14/19 11:56,"801 Center St, Los Angeles, CA 90001" -316646,27in 4K Gaming Monitor,1,389.99,12/16/19 21:52,"240 River St, Los Angeles, CA 90001" -316647,AAA Batteries (4-pack),1,2.99,12/11/19 21:06,"120 9th St, San Francisco, CA 94016" -316648,Apple Airpods Headphones,1,150,12/07/19 10:11,"682 Forest St, Boston, MA 02215" -316649,Lightning Charging Cable,1,14.95,12/17/19 17:19,"81 Maple St, Seattle, WA 98101" -316650,AA Batteries (4-pack),3,3.84,12/10/19 22:26,"855 5th St, New York City, NY 10001" -316651,USB-C Charging Cable,1,11.95,12/10/19 09:30,"475 Main St, Boston, MA 02215" -316652,AA Batteries (4-pack),1,3.84,12/24/19 09:12,"849 Meadow St, San Francisco, CA 94016" -316653,Lightning Charging Cable,1,14.95,12/15/19 17:56,"808 Sunset St, Boston, MA 02215" -316654,Wired Headphones,2,11.99,12/24/19 11:39,"490 Highland St, Los Angeles, CA 90001" -316655,USB-C Charging Cable,1,11.95,12/01/19 19:43,"951 River St, New York City, NY 10001" -316656,Apple Airpods Headphones,1,150,12/08/19 10:12,"564 5th St, San Francisco, CA 94016" -316657,AAA Batteries (4-pack),1,2.99,12/15/19 12:22,"865 2nd St, Atlanta, GA 30301" -316658,Bose SoundSport Headphones,1,99.99,12/08/19 22:09,"405 2nd St, New York City, NY 10001" -316659,Wired Headphones,1,11.99,12/28/19 19:22,"859 Johnson St, San Francisco, CA 94016" -316660,LG Washing Machine,1,600.0,12/11/19 12:41,"797 6th St, Portland, OR 97035" -316661,AA Batteries (4-pack),2,3.84,12/06/19 21:36,"768 Hickory St, New York City, NY 10001" -316662,USB-C Charging Cable,1,11.95,12/14/19 15:44,"40 Church St, San Francisco, CA 94016" -316663,Bose SoundSport Headphones,1,99.99,12/20/19 21:18,"243 7th St, Portland, OR 97035" -316664,Lightning Charging Cable,1,14.95,12/27/19 12:58,"674 Johnson St, San Francisco, CA 94016" -316665,Wired Headphones,1,11.99,12/07/19 18:09,"58 Sunset St, San Francisco, CA 94016" -316666,34in Ultrawide Monitor,1,379.99,12/17/19 14:07,"977 River St, San Francisco, CA 94016" -316667,Lightning Charging Cable,1,14.95,12/15/19 20:48,"95 Spruce St, Austin, TX 73301" -316668,AAA Batteries (4-pack),3,2.99,12/06/19 22:26,"745 14th St, Dallas, TX 75001" -316669,Lightning Charging Cable,1,14.95,12/30/19 21:37,"236 9th St, Atlanta, GA 30301" -316670,27in FHD Monitor,1,149.99,12/12/19 10:08,"783 Pine St, Seattle, WA 98101" -316671,20in Monitor,1,109.99,12/12/19 09:58,"872 Spruce St, Los Angeles, CA 90001" -316672,Bose SoundSport Headphones,1,99.99,12/10/19 17:29,"6 Sunset St, San Francisco, CA 94016" -316673,Lightning Charging Cable,1,14.95,12/24/19 18:33,"734 South St, Portland, OR 97035" -316674,AA Batteries (4-pack),1,3.84,12/01/19 16:45,"870 North St, Los Angeles, CA 90001" -316675,Wired Headphones,1,11.99,12/26/19 18:56,"708 Jefferson St, Dallas, TX 75001" -316676,Lightning Charging Cable,1,14.95,12/22/19 02:20,"918 1st St, San Francisco, CA 94016" -316677,Apple Airpods Headphones,1,150,12/18/19 09:42,"202 South St, Austin, TX 73301" -316678,Bose SoundSport Headphones,1,99.99,12/26/19 12:17,"212 Elm St, Austin, TX 73301" -316679,USB-C Charging Cable,1,11.95,12/25/19 18:09,"192 Cedar St, Seattle, WA 98101" -316680,27in FHD Monitor,1,149.99,12/29/19 07:30,"473 13th St, Los Angeles, CA 90001" -316681,Macbook Pro Laptop,1,1700,12/17/19 12:15,"926 Jefferson St, San Francisco, CA 94016" -316682,USB-C Charging Cable,1,11.95,12/25/19 18:02,"505 5th St, Atlanta, GA 30301" -316682,Google Phone,1,600,12/25/19 18:02,"505 5th St, Atlanta, GA 30301" -316683,AA Batteries (4-pack),1,3.84,12/29/19 15:21,"214 South St, San Francisco, CA 94016" -316684,AAA Batteries (4-pack),1,2.99,12/18/19 07:10,"804 Lakeview St, New York City, NY 10001" -316685,Flatscreen TV,1,300,12/16/19 01:54,"941 12th St, Los Angeles, CA 90001" -316686,Bose SoundSport Headphones,1,99.99,12/30/19 19:02,"187 Jackson St, Los Angeles, CA 90001" -316687,Bose SoundSport Headphones,1,99.99,12/25/19 21:07,"543 Center St, Los Angeles, CA 90001" -316688,AA Batteries (4-pack),2,3.84,12/19/19 08:53,"198 6th St, New York City, NY 10001" -316689,AAA Batteries (4-pack),1,2.99,12/26/19 23:35,"911 Elm St, Atlanta, GA 30301" -316690,Macbook Pro Laptop,1,1700,12/13/19 20:36,"364 Jackson St, San Francisco, CA 94016" -316691,Apple Airpods Headphones,1,150,12/27/19 00:07,"467 Sunset St, Boston, MA 02215" -316692,Bose SoundSport Headphones,1,99.99,12/05/19 19:07,"49 Main St, Los Angeles, CA 90001" -316693,Macbook Pro Laptop,1,1700,12/14/19 15:21,"136 8th St, New York City, NY 10001" -316694,AAA Batteries (4-pack),1,2.99,12/01/19 10:25,"827 7th St, Atlanta, GA 30301" -316695,AA Batteries (4-pack),1,3.84,12/05/19 10:51,"823 Lake St, Austin, TX 73301" -316696,Lightning Charging Cable,1,14.95,12/13/19 21:03,"671 Highland St, Dallas, TX 75001" -316697,USB-C Charging Cable,1,11.95,12/29/19 23:09,"32 River St, Atlanta, GA 30301" -316698,USB-C Charging Cable,1,11.95,12/26/19 17:56,"611 1st St, Dallas, TX 75001" -316699,USB-C Charging Cable,1,11.95,12/09/19 11:06,"192 Lake St, Austin, TX 73301" -316700,iPhone,1,700,12/13/19 13:33,"796 North St, Austin, TX 73301" -316701,USB-C Charging Cable,1,11.95,12/25/19 20:36,"137 North St, Portland, OR 97035" -316702,iPhone,1,700,12/23/19 14:20,"178 Center St, San Francisco, CA 94016" -316703,27in FHD Monitor,1,149.99,12/07/19 09:14,"386 Spruce St, San Francisco, CA 94016" -316704,USB-C Charging Cable,1,11.95,12/13/19 17:49,"789 Hill St, San Francisco, CA 94016" -316705,Macbook Pro Laptop,1,1700,12/06/19 12:00,"945 7th St, San Francisco, CA 94016" -316706,AA Batteries (4-pack),1,3.84,12/05/19 20:32,"851 Jefferson St, Boston, MA 02215" -316706,Flatscreen TV,1,300,12/05/19 20:32,"851 Jefferson St, Boston, MA 02215" -316707,Apple Airpods Headphones,1,150,12/16/19 07:25,"75 12th St, Austin, TX 73301" -316708,Macbook Pro Laptop,1,1700,12/31/19 13:15,"779 River St, Los Angeles, CA 90001" -316709,AAA Batteries (4-pack),1,2.99,12/08/19 11:33,"460 13th St, Los Angeles, CA 90001" -316710,Apple Airpods Headphones,1,150,12/27/19 08:52,"411 Adams St, Los Angeles, CA 90001" -316711,AA Batteries (4-pack),1,3.84,12/19/19 07:43,"164 Chestnut St, Los Angeles, CA 90001" -316712,Apple Airpods Headphones,1,150,12/18/19 13:50,"916 2nd St, Boston, MA 02215" -316713,iPhone,1,700,12/30/19 18:32,"587 Chestnut St, Seattle, WA 98101" -316714,34in Ultrawide Monitor,1,379.99,12/19/19 20:14,"507 West St, Los Angeles, CA 90001" -316715,Lightning Charging Cable,1,14.95,12/29/19 21:18,"329 Main St, San Francisco, CA 94016" -316716,Apple Airpods Headphones,1,150,12/14/19 20:19,"819 12th St, Atlanta, GA 30301" -316717,AA Batteries (4-pack),1,3.84,12/07/19 21:38,"868 Jackson St, Los Angeles, CA 90001" -316718,Apple Airpods Headphones,1,150,12/17/19 13:27,"900 Washington St, Boston, MA 02215" -316719,27in FHD Monitor,1,149.99,12/11/19 14:30,"85 Church St, Portland, ME 04101" -316720,20in Monitor,1,109.99,12/15/19 23:01,"402 Center St, Dallas, TX 75001" -316721,Lightning Charging Cable,1,14.95,12/14/19 20:36,"329 Dogwood St, New York City, NY 10001" -316722,AA Batteries (4-pack),1,3.84,12/10/19 13:34,"982 West St, Portland, OR 97035" -316723,iPhone,1,700,12/25/19 12:16,"120 Lakeview St, Boston, MA 02215" -316724,Apple Airpods Headphones,1,150,12/03/19 20:51,"74 7th St, San Francisco, CA 94016" -316725,AA Batteries (4-pack),1,3.84,12/16/19 18:00,"674 South St, New York City, NY 10001" -316726,Lightning Charging Cable,1,14.95,12/23/19 19:07,"635 1st St, Boston, MA 02215" -316727,AAA Batteries (4-pack),2,2.99,12/17/19 11:56,"468 Walnut St, Boston, MA 02215" -316728,AAA Batteries (4-pack),1,2.99,12/09/19 12:07,"957 Jefferson St, Dallas, TX 75001" -316729,27in 4K Gaming Monitor,1,389.99,12/24/19 17:43,"254 Sunset St, San Francisco, CA 94016" -316730,Wired Headphones,1,11.99,12/07/19 09:49,"377 Madison St, Los Angeles, CA 90001" -316731,Bose SoundSport Headphones,1,99.99,12/27/19 02:27,"980 12th St, Los Angeles, CA 90001" -316732,Apple Airpods Headphones,1,150,12/23/19 18:21,"248 Willow St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -316733,Wired Headphones,1,11.99,12/14/19 13:41,"284 Adams St, San Francisco, CA 94016" -316734,Lightning Charging Cable,1,14.95,12/22/19 16:43,"599 Lake St, Boston, MA 02215" -316735,Lightning Charging Cable,1,14.95,12/11/19 19:27,"217 4th St, Los Angeles, CA 90001" -316736,Bose SoundSport Headphones,1,99.99,12/28/19 18:09,"703 Walnut St, San Francisco, CA 94016" -316737,Apple Airpods Headphones,1,150,12/10/19 14:56,"350 8th St, San Francisco, CA 94016" -316738,Wired Headphones,1,11.99,12/03/19 11:52,"450 Jefferson St, Los Angeles, CA 90001" -316739,34in Ultrawide Monitor,1,379.99,12/20/19 13:28,"846 Park St, Dallas, TX 75001" -316740,27in 4K Gaming Monitor,1,389.99,12/12/19 15:08,"57 Maple St, Dallas, TX 75001" -316741,Google Phone,1,600,12/14/19 20:51,"572 Jefferson St, Atlanta, GA 30301" -316742,20in Monitor,1,109.99,12/20/19 10:35,"79 6th St, Austin, TX 73301" -316743,Apple Airpods Headphones,1,150,12/27/19 08:19,"251 Adams St, San Francisco, CA 94016" -316744,iPhone,1,700,12/10/19 18:18,"477 Hill St, Seattle, WA 98101" -316745,AA Batteries (4-pack),1,3.84,12/07/19 07:22,"403 Lake St, San Francisco, CA 94016" -316746,27in FHD Monitor,1,149.99,12/02/19 16:22,"180 Dogwood St, San Francisco, CA 94016" -316747,AA Batteries (4-pack),1,3.84,12/31/19 19:33,"964 7th St, San Francisco, CA 94016" -316748,AA Batteries (4-pack),1,3.84,12/08/19 10:49,"909 Cedar St, Austin, TX 73301" -316749,USB-C Charging Cable,1,11.95,12/16/19 18:04,"919 Chestnut St, San Francisco, CA 94016" -316750,Vareebadd Phone,1,400,12/05/19 17:39,"582 12th St, Dallas, TX 75001" -316751,Macbook Pro Laptop,1,1700,12/20/19 01:58,"731 Highland St, Atlanta, GA 30301" -316752,Flatscreen TV,1,300,12/06/19 19:23,"667 Cedar St, Los Angeles, CA 90001" -316753,Wired Headphones,1,11.99,12/16/19 08:31,"533 Jackson St, Atlanta, GA 30301" -316754,USB-C Charging Cable,1,11.95,12/23/19 10:54,"54 Cedar St, New York City, NY 10001" -316755,Wired Headphones,1,11.99,12/25/19 20:35,"892 Ridge St, San Francisco, CA 94016" -316755,27in 4K Gaming Monitor,1,389.99,12/25/19 20:35,"892 Ridge St, San Francisco, CA 94016" -316756,AAA Batteries (4-pack),1,2.99,12/09/19 11:47,"949 10th St, Dallas, TX 75001" -316757,AAA Batteries (4-pack),4,2.99,12/03/19 07:11,"644 North St, Dallas, TX 75001" -316758,Bose SoundSport Headphones,1,99.99,12/30/19 21:22,"840 Lakeview St, Los Angeles, CA 90001" -316759,27in FHD Monitor,1,149.99,12/08/19 06:48,"854 Wilson St, Boston, MA 02215" -316760,AA Batteries (4-pack),1,3.84,12/16/19 13:43,"624 10th St, Dallas, TX 75001" -316761,27in 4K Gaming Monitor,1,389.99,12/06/19 11:22,"994 Cedar St, Los Angeles, CA 90001" -316762,USB-C Charging Cable,1,11.95,12/06/19 22:15,"663 4th St, San Francisco, CA 94016" -316763,Bose SoundSport Headphones,1,99.99,12/12/19 13:18,"782 4th St, New York City, NY 10001" -316764,Lightning Charging Cable,1,14.95,12/23/19 20:50,"656 Sunset St, San Francisco, CA 94016" -316765,Lightning Charging Cable,1,14.95,12/16/19 17:06,"549 10th St, New York City, NY 10001" -316766,Apple Airpods Headphones,1,150,12/06/19 15:01,"306 Main St, Boston, MA 02215" -316767,USB-C Charging Cable,1,11.95,12/24/19 12:19,"547 Church St, San Francisco, CA 94016" -316768,27in 4K Gaming Monitor,1,389.99,12/03/19 02:37,"792 Meadow St, New York City, NY 10001" -316769,iPhone,1,700,12/18/19 09:35,"786 South St, New York City, NY 10001" -316770,Flatscreen TV,1,300,12/11/19 07:46,"331 14th St, Los Angeles, CA 90001" -316771,Lightning Charging Cable,1,14.95,12/09/19 18:13,"841 Meadow St, Atlanta, GA 30301" -316772,Apple Airpods Headphones,1,150,12/15/19 06:23,"681 Johnson St, San Francisco, CA 94016" -316773,Vareebadd Phone,1,400,12/30/19 12:51,"695 4th St, Los Angeles, CA 90001" -316774,iPhone,1,700,12/26/19 16:07,"931 West St, Los Angeles, CA 90001" -316774,Lightning Charging Cable,1,14.95,12/26/19 16:07,"931 West St, Los Angeles, CA 90001" -316775,iPhone,1,700,12/20/19 11:38,"397 Meadow St, Boston, MA 02215" -316776,Lightning Charging Cable,1,14.95,12/01/19 12:44,"768 9th St, Los Angeles, CA 90001" -316777,Lightning Charging Cable,1,14.95,12/03/19 16:50,"848 Willow St, Seattle, WA 98101" -316778,27in FHD Monitor,1,149.99,12/15/19 11:36,"938 11th St, Portland, OR 97035" -316779,AA Batteries (4-pack),3,3.84,12/28/19 00:24,"207 Meadow St, Boston, MA 02215" -316780,AA Batteries (4-pack),1,3.84,12/01/19 18:22,"927 Hill St, Los Angeles, CA 90001" -316781,USB-C Charging Cable,1,11.95,12/19/19 15:30,"806 7th St, Boston, MA 02215" -316782,AAA Batteries (4-pack),1,2.99,12/13/19 21:12,"266 Hill St, Boston, MA 02215" -316783,AAA Batteries (4-pack),4,2.99,12/05/19 00:50,"376 Center St, Dallas, TX 75001" -316783,USB-C Charging Cable,1,11.95,12/05/19 00:50,"376 Center St, Dallas, TX 75001" -316784,Lightning Charging Cable,1,14.95,12/14/19 18:30,"672 Chestnut St, San Francisco, CA 94016" -316785,Bose SoundSport Headphones,1,99.99,12/19/19 12:50,"280 Forest St, San Francisco, CA 94016" -316785,iPhone,1,700,12/19/19 12:50,"280 Forest St, San Francisco, CA 94016" -316786,AAA Batteries (4-pack),1,2.99,12/06/19 01:51,"202 Adams St, Los Angeles, CA 90001" -316787,20in Monitor,1,109.99,12/18/19 08:07,"957 2nd St, San Francisco, CA 94016" -316788,Wired Headphones,1,11.99,12/19/19 20:47,"32 Ridge St, San Francisco, CA 94016" -316789,AA Batteries (4-pack),1,3.84,12/20/19 18:19,"33 Forest St, Austin, TX 73301" -316790,Apple Airpods Headphones,1,150,12/23/19 09:58,"369 7th St, Los Angeles, CA 90001" -316791,ThinkPad Laptop,1,999.99,12/12/19 15:18,"638 Highland St, San Francisco, CA 94016" -316792,ThinkPad Laptop,1,999.99,12/14/19 19:52,"750 Dogwood St, Dallas, TX 75001" -316793,USB-C Charging Cable,1,11.95,12/05/19 14:51,"282 10th St, Dallas, TX 75001" -316794,Wired Headphones,1,11.99,12/08/19 10:46,"887 Madison St, New York City, NY 10001" -316795,20in Monitor,1,109.99,12/23/19 13:36,"850 Maple St, Portland, OR 97035" -316796,AAA Batteries (4-pack),1,2.99,12/21/19 10:02,"509 11th St, Los Angeles, CA 90001" -316797,Lightning Charging Cable,1,14.95,12/17/19 16:16,"469 Willow St, Los Angeles, CA 90001" -316798,Flatscreen TV,1,300,12/08/19 10:28,"231 Center St, Seattle, WA 98101" -316799,iPhone,1,700,12/20/19 11:52,"430 Main St, San Francisco, CA 94016" -316800,AA Batteries (4-pack),1,3.84,12/26/19 15:23,"264 Jefferson St, Los Angeles, CA 90001" -316801,Apple Airpods Headphones,1,150,12/26/19 23:56,"156 Cedar St, Austin, TX 73301" -316802,Flatscreen TV,1,300,12/09/19 12:02,"382 Adams St, Austin, TX 73301" -316803,AA Batteries (4-pack),1,3.84,12/19/19 15:58,"551 North St, Austin, TX 73301" -316804,Apple Airpods Headphones,1,150,12/11/19 20:54,"635 Ridge St, San Francisco, CA 94016" -316805,Bose SoundSport Headphones,1,99.99,12/06/19 16:06,"712 Chestnut St, Los Angeles, CA 90001" -316806,34in Ultrawide Monitor,1,379.99,12/11/19 12:25,"534 Wilson St, Seattle, WA 98101" -316807,USB-C Charging Cable,1,11.95,12/12/19 19:26,"882 Jefferson St, Atlanta, GA 30301" -316808,AAA Batteries (4-pack),1,2.99,12/18/19 20:26,"34 North St, San Francisco, CA 94016" -316809,AAA Batteries (4-pack),1,2.99,12/28/19 09:35,"319 14th St, Atlanta, GA 30301" -316810,USB-C Charging Cable,1,11.95,12/07/19 13:43,"947 10th St, Boston, MA 02215" -316811,Lightning Charging Cable,1,14.95,12/20/19 09:09,"168 West St, Dallas, TX 75001" -316812,USB-C Charging Cable,1,11.95,12/13/19 18:57,"819 Cherry St, San Francisco, CA 94016" -316813,AAA Batteries (4-pack),1,2.99,12/24/19 09:46,"973 Chestnut St, Atlanta, GA 30301" -316814,Google Phone,1,600,12/03/19 11:49,"684 Adams St, San Francisco, CA 94016" -316815,34in Ultrawide Monitor,1,379.99,12/14/19 00:29,"782 1st St, San Francisco, CA 94016" -316816,Lightning Charging Cable,1,14.95,12/28/19 15:49,"657 6th St, Portland, OR 97035" -316817,USB-C Charging Cable,1,11.95,12/06/19 16:10,"341 6th St, Dallas, TX 75001" -316818,Lightning Charging Cable,1,14.95,12/18/19 17:31,"594 Wilson St, Seattle, WA 98101" -316819,USB-C Charging Cable,1,11.95,12/16/19 21:39,"414 Elm St, Portland, OR 97035" -316820,AA Batteries (4-pack),2,3.84,12/29/19 13:12,"223 10th St, San Francisco, CA 94016" -316821,Lightning Charging Cable,1,14.95,12/11/19 14:36,"586 Pine St, Atlanta, GA 30301" -316821,ThinkPad Laptop,1,999.99,12/11/19 14:36,"586 Pine St, Atlanta, GA 30301" -316822,27in FHD Monitor,1,149.99,12/11/19 21:10,"182 Cherry St, San Francisco, CA 94016" -316823,USB-C Charging Cable,1,11.95,12/14/19 19:29,"58 Meadow St, New York City, NY 10001" -316824,AA Batteries (4-pack),2,3.84,12/02/19 14:52,"895 Walnut St, San Francisco, CA 94016" -316825,Macbook Pro Laptop,1,1700,12/06/19 12:03,"984 14th St, San Francisco, CA 94016" -316826,Bose SoundSport Headphones,1,99.99,12/25/19 20:05,"956 Highland St, Los Angeles, CA 90001" -316827,27in FHD Monitor,1,149.99,12/25/19 15:19,"866 Cedar St, New York City, NY 10001" -316828,Lightning Charging Cable,1,14.95,12/29/19 22:52,"154 2nd St, Boston, MA 02215" -316829,Bose SoundSport Headphones,1,99.99,12/26/19 18:18,"136 Dogwood St, New York City, NY 10001" -316830,AAA Batteries (4-pack),2,2.99,12/09/19 17:45,"993 Spruce St, Los Angeles, CA 90001" -316831,27in FHD Monitor,1,149.99,12/01/19 18:10,"655 Cedar St, Seattle, WA 98101" -316832,27in FHD Monitor,1,149.99,12/30/19 15:47,"625 10th St, Boston, MA 02215" -316833,Vareebadd Phone,1,400,01/01/20 02:58,"378 Elm St, New York City, NY 10001" -316834,27in 4K Gaming Monitor,1,389.99,12/08/19 12:09,"272 Wilson St, Dallas, TX 75001" -316835,Lightning Charging Cable,1,14.95,12/30/19 15:43,"645 Maple St, Portland, OR 97035" -316836,27in 4K Gaming Monitor,1,389.99,12/30/19 21:11,"941 2nd St, Boston, MA 02215" -316837,Apple Airpods Headphones,1,150,12/14/19 00:55,"518 Meadow St, New York City, NY 10001" -316838,Apple Airpods Headphones,1,150,12/29/19 18:41,"812 Maple St, Los Angeles, CA 90001" -316839,Lightning Charging Cable,1,14.95,12/24/19 19:27,"957 Hill St, San Francisco, CA 94016" -316840,Lightning Charging Cable,1,14.95,12/23/19 10:13,"252 Jefferson St, Dallas, TX 75001" -316841,AAA Batteries (4-pack),1,2.99,12/08/19 13:06,"875 9th St, San Francisco, CA 94016" -316842,20in Monitor,1,109.99,12/23/19 10:21,"321 Johnson St, San Francisco, CA 94016" -316843,USB-C Charging Cable,1,11.95,12/18/19 12:20,"132 Park St, New York City, NY 10001" -316844,USB-C Charging Cable,1,11.95,12/27/19 17:02,"369 Chestnut St, Seattle, WA 98101" -316845,20in Monitor,1,109.99,12/28/19 19:07,"643 Madison St, Dallas, TX 75001" -316846,Wired Headphones,1,11.99,12/06/19 17:38,"568 7th St, Seattle, WA 98101" -316847,ThinkPad Laptop,1,999.99,12/26/19 16:21,"939 Hill St, San Francisco, CA 94016" -316848,34in Ultrawide Monitor,1,379.99,12/02/19 19:03,"871 Madison St, Austin, TX 73301" -316849,Bose SoundSport Headphones,1,99.99,12/04/19 22:13,"778 Maple St, Seattle, WA 98101" -316850,Apple Airpods Headphones,1,150,12/18/19 13:24,"639 Maple St, San Francisco, CA 94016" -316851,AA Batteries (4-pack),1,3.84,12/06/19 18:58,"973 South St, San Francisco, CA 94016" -316852,USB-C Charging Cable,1,11.95,12/02/19 21:00,"965 10th St, New York City, NY 10001" -316853,AA Batteries (4-pack),1,3.84,12/19/19 08:04,"582 Cherry St, Los Angeles, CA 90001" -316854,AAA Batteries (4-pack),2,2.99,12/30/19 11:58,"606 11th St, Atlanta, GA 30301" -316855,Lightning Charging Cable,1,14.95,12/20/19 11:08,"894 11th St, Los Angeles, CA 90001" -316856,Lightning Charging Cable,1,14.95,12/13/19 23:12,"866 Pine St, Seattle, WA 98101" -316857,Apple Airpods Headphones,1,150,12/18/19 12:07,"46 Washington St, Boston, MA 02215" -316858,AA Batteries (4-pack),1,3.84,12/02/19 20:20,"418 12th St, Portland, OR 97035" -316859,Google Phone,1,600,12/29/19 10:05,"751 6th St, Los Angeles, CA 90001" -316860,Wired Headphones,1,11.99,12/17/19 11:31,"188 14th St, Boston, MA 02215" -316861,iPhone,1,700,12/04/19 21:33,"638 Highland St, San Francisco, CA 94016" -316861,Apple Airpods Headphones,1,150,12/04/19 21:33,"638 Highland St, San Francisco, CA 94016" -316862,USB-C Charging Cable,1,11.95,12/14/19 16:59,"241 Adams St, Seattle, WA 98101" -316863,Flatscreen TV,1,300,12/13/19 10:42,"329 Lakeview St, New York City, NY 10001" -316864,USB-C Charging Cable,1,11.95,12/01/19 10:58,"502 Main St, Boston, MA 02215" -316865,iPhone,1,700,12/03/19 15:01,"520 Cedar St, Boston, MA 02215" -316866,Lightning Charging Cable,1,14.95,12/07/19 18:23,"794 North St, San Francisco, CA 94016" -316867,27in FHD Monitor,1,149.99,01/01/20 01:05,"137 Madison St, Seattle, WA 98101" -316868,USB-C Charging Cable,1,11.95,12/15/19 17:56,"881 North St, Boston, MA 02215" -316869,Apple Airpods Headphones,1,150,12/02/19 13:41,"78 Cherry St, Boston, MA 02215" -316870,Lightning Charging Cable,1,14.95,12/03/19 22:06,"922 Highland St, Los Angeles, CA 90001" -316871,AA Batteries (4-pack),1,3.84,12/07/19 23:15,"523 Church St, Los Angeles, CA 90001" -316872,Lightning Charging Cable,1,14.95,12/04/19 23:45,"325 Cedar St, Boston, MA 02215" -316873,34in Ultrawide Monitor,1,379.99,12/19/19 08:13,"213 6th St, Los Angeles, CA 90001" -316874,Vareebadd Phone,1,400,12/29/19 00:02,"613 Walnut St, Portland, OR 97035" -316874,Wired Headphones,1,11.99,12/29/19 00:02,"613 Walnut St, Portland, OR 97035" -316875,USB-C Charging Cable,1,11.95,12/10/19 22:51,"940 Hickory St, Boston, MA 02215" -316876,AA Batteries (4-pack),2,3.84,12/31/19 23:11,"144 Washington St, Los Angeles, CA 90001" -316877,Vareebadd Phone,1,400,12/09/19 14:58,"231 4th St, Atlanta, GA 30301" -316878,Google Phone,1,600,12/03/19 12:51,"378 Madison St, Dallas, TX 75001" -316878,USB-C Charging Cable,1,11.95,12/03/19 12:51,"378 Madison St, Dallas, TX 75001" -316879,AA Batteries (4-pack),2,3.84,12/07/19 23:30,"813 Elm St, Los Angeles, CA 90001" -316880,USB-C Charging Cable,1,11.95,12/04/19 21:37,"941 Jackson St, Los Angeles, CA 90001" -316881,USB-C Charging Cable,1,11.95,12/10/19 20:09,"117 Adams St, San Francisco, CA 94016" -316882,iPhone,1,700,12/04/19 12:45,"555 14th St, New York City, NY 10001" -316883,AAA Batteries (4-pack),1,2.99,12/13/19 18:38,"180 Main St, New York City, NY 10001" -316884,USB-C Charging Cable,1,11.95,12/06/19 20:57,"753 Johnson St, Atlanta, GA 30301" -316885,Apple Airpods Headphones,1,150,12/27/19 22:08,"109 Dogwood St, Seattle, WA 98101" -316886,Google Phone,1,600,12/22/19 19:38,"785 South St, San Francisco, CA 94016" -316886,USB-C Charging Cable,1,11.95,12/22/19 19:38,"785 South St, San Francisco, CA 94016" -316887,Bose SoundSport Headphones,1,99.99,12/12/19 10:53,"981 6th St, San Francisco, CA 94016" -316888,Lightning Charging Cable,1,14.95,12/17/19 12:35,"813 Hill St, San Francisco, CA 94016" -316889,AAA Batteries (4-pack),1,2.99,12/18/19 18:02,"344 Lakeview St, Dallas, TX 75001" -316890,27in FHD Monitor,1,149.99,12/04/19 22:52,"14 Lakeview St, Los Angeles, CA 90001" -316891,Wired Headphones,1,11.99,12/20/19 21:37,"500 Jefferson St, Seattle, WA 98101" -316892,Vareebadd Phone,1,400,12/26/19 01:58,"340 Washington St, San Francisco, CA 94016" -316893,AA Batteries (4-pack),1,3.84,12/28/19 17:19,"697 Lake St, San Francisco, CA 94016" -316894,27in 4K Gaming Monitor,1,389.99,12/16/19 13:56,"310 9th St, Los Angeles, CA 90001" -316895,34in Ultrawide Monitor,1,379.99,12/19/19 23:43,"707 Adams St, Boston, MA 02215" -316896,AAA Batteries (4-pack),1,2.99,12/10/19 07:12,"491 Sunset St, Austin, TX 73301" -316897,Bose SoundSport Headphones,1,99.99,12/14/19 19:31,"971 4th St, Atlanta, GA 30301" -316898,AA Batteries (4-pack),1,3.84,12/17/19 01:33,"23 Hill St, New York City, NY 10001" -316899,Bose SoundSport Headphones,1,99.99,12/08/19 19:57,"708 Willow St, San Francisco, CA 94016" -316899,27in 4K Gaming Monitor,1,389.99,12/08/19 19:57,"708 Willow St, San Francisco, CA 94016" -316900,Bose SoundSport Headphones,1,99.99,12/15/19 15:43,"833 1st St, Boston, MA 02215" -316901,iPhone,1,700,12/05/19 15:47,"321 4th St, San Francisco, CA 94016" -316902,Vareebadd Phone,1,400,12/18/19 11:39,"645 Ridge St, San Francisco, CA 94016" -316903,20in Monitor,1,109.99,12/10/19 23:09,"966 Johnson St, Portland, OR 97035" -316904,Lightning Charging Cable,1,14.95,12/14/19 19:11,"939 Pine St, New York City, NY 10001" -316905,ThinkPad Laptop,1,999.99,12/13/19 09:49,"324 Chestnut St, New York City, NY 10001" -316906,Macbook Pro Laptop,1,1700,12/02/19 13:07,"535 5th St, New York City, NY 10001" -316907,AA Batteries (4-pack),1,3.84,12/24/19 08:16,"662 West St, New York City, NY 10001" -316908,Apple Airpods Headphones,1,150,12/16/19 12:29,"265 Main St, New York City, NY 10001" -316909,Lightning Charging Cable,1,14.95,12/16/19 23:06,"304 Ridge St, San Francisco, CA 94016" -316910,Google Phone,1,600,12/24/19 18:15,"162 Elm St, Atlanta, GA 30301" -316911,27in 4K Gaming Monitor,1,389.99,12/17/19 21:56,"890 11th St, Atlanta, GA 30301" -316912,Wired Headphones,1,11.99,12/17/19 12:05,"975 Chestnut St, San Francisco, CA 94016" -316913,Macbook Pro Laptop,1,1700,12/08/19 23:58,"594 6th St, San Francisco, CA 94016" -316914,AA Batteries (4-pack),1,3.84,12/10/19 19:17,"801 6th St, New York City, NY 10001" -316915,Wired Headphones,1,11.99,12/31/19 19:25,"66 Washington St, San Francisco, CA 94016" -316916,Apple Airpods Headphones,1,150,12/10/19 21:56,"768 8th St, New York City, NY 10001" -316917,AAA Batteries (4-pack),1,2.99,12/09/19 20:12,"3 Elm St, San Francisco, CA 94016" -316918,Google Phone,1,600,12/07/19 21:47,"949 4th St, San Francisco, CA 94016" -316919,USB-C Charging Cable,1,11.95,12/01/19 15:52,"275 Lake St, San Francisco, CA 94016" -316920,27in 4K Gaming Monitor,1,389.99,12/07/19 12:46,"402 13th St, Los Angeles, CA 90001" -316921,Google Phone,1,600,12/12/19 13:04,"671 Lake St, Seattle, WA 98101" -316922,Macbook Pro Laptop,1,1700,12/16/19 14:59,"441 10th St, Los Angeles, CA 90001" -316923,Lightning Charging Cable,3,14.95,12/29/19 15:01,"419 13th St, San Francisco, CA 94016" -316924,AA Batteries (4-pack),1,3.84,12/24/19 18:40,"748 5th St, Los Angeles, CA 90001" -316925,Flatscreen TV,1,300,12/17/19 09:01,"51 Adams St, Seattle, WA 98101" -316926,AA Batteries (4-pack),1,3.84,12/10/19 16:00,"547 Jefferson St, Los Angeles, CA 90001" -316927,USB-C Charging Cable,1,11.95,12/19/19 13:27,"860 Madison St, Boston, MA 02215" -316928,Flatscreen TV,1,300,12/21/19 12:07,"722 Jefferson St, San Francisco, CA 94016" -316929,USB-C Charging Cable,1,11.95,12/23/19 08:52,"607 1st St, San Francisco, CA 94016" -316930,Bose SoundSport Headphones,1,99.99,12/20/19 00:10,"794 North St, Austin, TX 73301" -316931,Flatscreen TV,1,300,12/05/19 08:37,"494 8th St, New York City, NY 10001" -316932,34in Ultrawide Monitor,1,379.99,12/13/19 20:16,"72 7th St, San Francisco, CA 94016" -316933,AAA Batteries (4-pack),1,2.99,12/11/19 17:31,"26 Cedar St, San Francisco, CA 94016" -316934,27in 4K Gaming Monitor,1,389.99,12/17/19 07:58,"517 Main St, Seattle, WA 98101" -316935,Google Phone,1,600,12/27/19 11:42,"550 Washington St, San Francisco, CA 94016" -316935,USB-C Charging Cable,2,11.95,12/27/19 11:42,"550 Washington St, San Francisco, CA 94016" -316936,Lightning Charging Cable,1,14.95,12/17/19 18:23,"921 2nd St, Seattle, WA 98101" -316937,ThinkPad Laptop,1,999.99,12/17/19 00:47,"368 Madison St, Atlanta, GA 30301" -316938,Apple Airpods Headphones,1,150,12/09/19 11:17,"711 Adams St, New York City, NY 10001" -316939,Vareebadd Phone,1,400,12/20/19 17:53,"875 Maple St, San Francisco, CA 94016" -316940,USB-C Charging Cable,1,11.95,12/08/19 12:30,"467 Lincoln St, San Francisco, CA 94016" -316941,USB-C Charging Cable,1,11.95,12/11/19 19:46,"272 14th St, New York City, NY 10001" -316942,Lightning Charging Cable,1,14.95,12/22/19 20:08,"594 Jefferson St, New York City, NY 10001" -316943,Bose SoundSport Headphones,1,99.99,12/12/19 15:24,"905 Meadow St, Seattle, WA 98101" -316944,AA Batteries (4-pack),1,3.84,12/11/19 14:59,"709 2nd St, San Francisco, CA 94016" -316945,ThinkPad Laptop,1,999.99,12/29/19 15:43,"528 Washington St, New York City, NY 10001" -316946,USB-C Charging Cable,1,11.95,12/24/19 18:54,"476 River St, Los Angeles, CA 90001" -316947,Lightning Charging Cable,1,14.95,12/02/19 22:51,"111 Walnut St, San Francisco, CA 94016" -316948,AA Batteries (4-pack),1,3.84,12/01/19 08:19,"764 Hickory St, Atlanta, GA 30301" -316949,AA Batteries (4-pack),3,3.84,12/11/19 13:21,"198 2nd St, Dallas, TX 75001" -316950,Bose SoundSport Headphones,1,99.99,12/10/19 22:52,"264 10th St, Los Angeles, CA 90001" -316951,27in FHD Monitor,1,149.99,12/06/19 19:11,"87 Willow St, Austin, TX 73301" -316952,Flatscreen TV,1,300,12/28/19 21:32,"459 1st St, Boston, MA 02215" -316953,Wired Headphones,1,11.99,12/27/19 17:46,"251 14th St, Boston, MA 02215" -316954,USB-C Charging Cable,1,11.95,12/13/19 08:38,"192 Sunset St, San Francisco, CA 94016" -316955,AA Batteries (4-pack),1,3.84,12/14/19 21:32,"913 Hickory St, Seattle, WA 98101" -316956,ThinkPad Laptop,1,999.99,12/11/19 15:03,"266 West St, Seattle, WA 98101" -316957,Lightning Charging Cable,2,14.95,12/02/19 23:46,"448 Sunset St, Seattle, WA 98101" -316958,Flatscreen TV,1,300,12/25/19 09:31,"777 Dogwood St, New York City, NY 10001" -316959,Bose SoundSport Headphones,1,99.99,12/19/19 20:17,"729 4th St, San Francisco, CA 94016" -316960,Flatscreen TV,1,300,12/04/19 20:22,"68 Pine St, Seattle, WA 98101" -316961,ThinkPad Laptop,1,999.99,12/08/19 17:05,"875 West St, Dallas, TX 75001" -,,,,, -316962,Apple Airpods Headphones,1,150,12/04/19 22:52,"323 Johnson St, Portland, OR 97035" -316963,AAA Batteries (4-pack),2,2.99,12/10/19 08:26,"292 Cherry St, Portland, OR 97035" -316964,20in Monitor,1,109.99,12/23/19 19:17,"190 Jackson St, Portland, OR 97035" -316965,34in Ultrawide Monitor,1,379.99,12/27/19 12:41,"93 Church St, San Francisco, CA 94016" -,,,,, -316966,USB-C Charging Cable,2,11.95,12/31/19 11:37,"480 Willow St, Los Angeles, CA 90001" -316967,Wired Headphones,2,11.99,12/03/19 12:03,"179 Walnut St, Portland, OR 97035" -316968,Bose SoundSport Headphones,1,99.99,12/22/19 12:56,"445 Adams St, Los Angeles, CA 90001" -316969,AA Batteries (4-pack),1,3.84,12/23/19 19:23,"184 River St, San Francisco, CA 94016" -316970,Apple Airpods Headphones,1,150,12/16/19 10:42,"214 Lake St, Los Angeles, CA 90001" -316971,Apple Airpods Headphones,1,150,12/10/19 20:32,"815 Park St, Portland, ME 04101" -316972,Wired Headphones,1,11.99,12/15/19 11:19,"823 11th St, Boston, MA 02215" -316973,Wired Headphones,1,11.99,12/22/19 23:09,"86 South St, Atlanta, GA 30301" -316974,34in Ultrawide Monitor,1,379.99,12/06/19 20:10,"633 Elm St, Atlanta, GA 30301" -316975,Apple Airpods Headphones,1,150,12/30/19 14:43,"693 West St, Atlanta, GA 30301" -316976,LG Washing Machine,1,600.0,12/09/19 14:45,"687 1st St, Boston, MA 02215" -316977,ThinkPad Laptop,1,999.99,12/15/19 09:10,"210 4th St, Los Angeles, CA 90001" -316978,USB-C Charging Cable,1,11.95,12/31/19 21:46,"727 Washington St, Seattle, WA 98101" -316979,AAA Batteries (4-pack),1,2.99,12/19/19 19:55,"542 9th St, Los Angeles, CA 90001" -316980,Flatscreen TV,1,300,12/31/19 11:20,"107 10th St, Los Angeles, CA 90001" -316981,AAA Batteries (4-pack),1,2.99,12/04/19 15:51,"360 Willow St, Dallas, TX 75001" -316982,Macbook Pro Laptop,1,1700,12/11/19 16:25,"152 Hill St, Los Angeles, CA 90001" -316983,Wired Headphones,1,11.99,12/18/19 22:19,"553 Park St, New York City, NY 10001" -316984,LG Dryer,1,600.0,12/06/19 21:01,"127 Highland St, Atlanta, GA 30301" -316985,AA Batteries (4-pack),1,3.84,12/06/19 16:51,"367 Highland St, Boston, MA 02215" -316986,Lightning Charging Cable,1,14.95,12/19/19 18:51,"9 South St, Portland, OR 97035" -316987,Wired Headphones,1,11.99,12/08/19 23:15,"747 Center St, Los Angeles, CA 90001" -316988,34in Ultrawide Monitor,1,379.99,12/22/19 20:07,"407 Lincoln St, New York City, NY 10001" -316989,USB-C Charging Cable,1,11.95,12/26/19 14:33,"929 Cedar St, Seattle, WA 98101" -316990,AAA Batteries (4-pack),1,2.99,12/11/19 21:32,"381 Highland St, Dallas, TX 75001" -316991,AAA Batteries (4-pack),3,2.99,12/31/19 04:18,"1 4th St, Dallas, TX 75001" -316992,Google Phone,1,600,12/16/19 07:44,"206 River St, Seattle, WA 98101" -316992,AA Batteries (4-pack),1,3.84,12/16/19 07:44,"206 River St, Seattle, WA 98101" -316993,Lightning Charging Cable,1,14.95,12/13/19 08:16,"821 Johnson St, Dallas, TX 75001" -316994,Google Phone,1,600,12/07/19 07:59,"561 Lakeview St, San Francisco, CA 94016" -316995,USB-C Charging Cable,1,11.95,12/12/19 14:19,"761 Walnut St, Boston, MA 02215" -316996,Apple Airpods Headphones,1,150,12/10/19 22:17,"585 West St, Portland, ME 04101" -316997,AA Batteries (4-pack),1,3.84,12/16/19 22:28,"779 10th St, Dallas, TX 75001" -316998,Wired Headphones,1,11.99,12/02/19 02:42,"231 Elm St, Los Angeles, CA 90001" -316999,Bose SoundSport Headphones,1,99.99,12/16/19 17:36,"435 8th St, San Francisco, CA 94016" -317000,27in FHD Monitor,1,149.99,12/30/19 08:23,"953 Cherry St, Dallas, TX 75001" -317001,34in Ultrawide Monitor,1,379.99,12/16/19 21:11,"675 Walnut St, Atlanta, GA 30301" -317002,AAA Batteries (4-pack),4,2.99,12/31/19 16:15,"480 Spruce St, Portland, OR 97035" -317003,Lightning Charging Cable,1,14.95,12/30/19 12:01,"310 4th St, Boston, MA 02215" -317004,iPhone,1,700,12/16/19 18:14,"748 Chestnut St, Dallas, TX 75001" -317004,Lightning Charging Cable,1,14.95,12/16/19 18:14,"748 Chestnut St, Dallas, TX 75001" -317005,Apple Airpods Headphones,1,150,12/14/19 22:08,"367 Meadow St, New York City, NY 10001" -317006,AA Batteries (4-pack),2,3.84,12/11/19 15:48,"843 Cedar St, Portland, OR 97035" -317007,27in FHD Monitor,1,149.99,12/01/19 23:15,"568 Lake St, San Francisco, CA 94016" -317008,27in 4K Gaming Monitor,1,389.99,12/17/19 10:49,"951 7th St, Seattle, WA 98101" -317009,27in FHD Monitor,1,149.99,12/20/19 00:01,"612 Jackson St, San Francisco, CA 94016" -317010,AAA Batteries (4-pack),1,2.99,12/30/19 09:32,"505 South St, Atlanta, GA 30301" -317011,Flatscreen TV,1,300,12/10/19 11:55,"491 Meadow St, San Francisco, CA 94016" -317012,USB-C Charging Cable,1,11.95,12/03/19 12:20,"401 Church St, New York City, NY 10001" -317013,20in Monitor,1,109.99,12/08/19 13:16,"837 Hill St, Dallas, TX 75001" -317014,Bose SoundSport Headphones,1,99.99,12/27/19 13:41,"346 Washington St, Austin, TX 73301" -317015,Wired Headphones,1,11.99,12/31/19 09:08,"879 8th St, Dallas, TX 75001" -317016,USB-C Charging Cable,1,11.95,12/23/19 21:23,"553 Forest St, San Francisco, CA 94016" -317017,Macbook Pro Laptop,1,1700,12/30/19 04:04,"759 Spruce St, Dallas, TX 75001" -317018,Flatscreen TV,1,300,12/22/19 11:13,"43 Sunset St, Austin, TX 73301" -317019,Lightning Charging Cable,1,14.95,12/24/19 14:17,"544 Center St, Atlanta, GA 30301" -317020,Bose SoundSport Headphones,1,99.99,12/23/19 18:34,"77 Madison St, San Francisco, CA 94016" -317021,Bose SoundSport Headphones,1,99.99,12/05/19 07:38,"854 Maple St, Austin, TX 73301" -317022,Apple Airpods Headphones,1,150,12/02/19 11:16,"992 Elm St, San Francisco, CA 94016" -317023,USB-C Charging Cable,1,11.95,12/19/19 14:33,"231 West St, Seattle, WA 98101" -317024,Wired Headphones,1,11.99,12/16/19 11:02,"673 6th St, Atlanta, GA 30301" -317025,Apple Airpods Headphones,1,150,12/14/19 05:25,"601 Wilson St, Boston, MA 02215" -317025,Wired Headphones,1,11.99,12/14/19 05:25,"601 Wilson St, Boston, MA 02215" -317026,AA Batteries (4-pack),1,3.84,12/01/19 13:48,"294 Maple St, Los Angeles, CA 90001" -317027,AAA Batteries (4-pack),3,2.99,12/29/19 17:32,"11 West St, Boston, MA 02215" -317028,AA Batteries (4-pack),2,3.84,12/16/19 01:00,"728 Cherry St, Austin, TX 73301" -317029,USB-C Charging Cable,1,11.95,12/08/19 22:18,"538 Ridge St, Boston, MA 02215" -317030,Lightning Charging Cable,1,14.95,12/06/19 16:58,"673 Adams St, Portland, ME 04101" -317031,Wired Headphones,1,11.99,12/04/19 11:41,"976 West St, San Francisco, CA 94016" -317032,AAA Batteries (4-pack),1,2.99,12/27/19 11:14,"130 9th St, New York City, NY 10001" -317033,AA Batteries (4-pack),2,3.84,12/30/19 11:50,"86 11th St, San Francisco, CA 94016" -317034,Bose SoundSport Headphones,1,99.99,12/13/19 04:05,"693 8th St, San Francisco, CA 94016" -317035,USB-C Charging Cable,1,11.95,12/21/19 22:38,"345 Madison St, New York City, NY 10001" -317036,Lightning Charging Cable,1,14.95,12/16/19 15:48,"192 Ridge St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -317037,34in Ultrawide Monitor,1,379.99,12/02/19 20:16,"729 2nd St, New York City, NY 10001" -317038,USB-C Charging Cable,1,11.95,12/23/19 17:07,"906 Church St, Portland, OR 97035" -317039,AA Batteries (4-pack),2,3.84,12/08/19 10:48,"525 Hickory St, Portland, ME 04101" -317040,Wired Headphones,1,11.99,12/17/19 18:22,"6 8th St, Los Angeles, CA 90001" -317041,ThinkPad Laptop,1,999.99,12/22/19 15:42,"873 Washington St, Atlanta, GA 30301" -317042,Apple Airpods Headphones,1,150,12/03/19 12:16,"711 Adams St, Los Angeles, CA 90001" -317043,Bose SoundSport Headphones,1,99.99,12/21/19 10:20,"231 Main St, Boston, MA 02215" -317044,Apple Airpods Headphones,1,150,12/07/19 16:50,"466 Johnson St, Los Angeles, CA 90001" -317045,Bose SoundSport Headphones,1,99.99,12/11/19 12:23,"154 11th St, New York City, NY 10001" -317046,Apple Airpods Headphones,1,150,12/22/19 10:22,"342 Pine St, Atlanta, GA 30301" -317047,AAA Batteries (4-pack),1,2.99,12/19/19 22:30,"421 Spruce St, Los Angeles, CA 90001" -317048,AAA Batteries (4-pack),2,2.99,12/31/19 23:45,"743 Adams St, San Francisco, CA 94016" -317049,AA Batteries (4-pack),1,3.84,12/19/19 08:56,"621 Hill St, Atlanta, GA 30301" -317050,AA Batteries (4-pack),1,3.84,12/13/19 19:19,"415 Church St, Seattle, WA 98101" -317051,ThinkPad Laptop,1,999.99,12/02/19 13:35,"517 Meadow St, Portland, ME 04101" -317052,Apple Airpods Headphones,1,150,12/07/19 13:46,"760 11th St, San Francisco, CA 94016" -317053,Bose SoundSport Headphones,1,99.99,12/11/19 19:24,"840 Elm St, Austin, TX 73301" -317054,Macbook Pro Laptop,1,1700,12/21/19 11:13,"214 West St, Los Angeles, CA 90001" -317055,27in FHD Monitor,1,149.99,12/25/19 08:29,"496 4th St, Dallas, TX 75001" -317056,Google Phone,1,600,12/19/19 18:40,"536 4th St, San Francisco, CA 94016" -317057,Lightning Charging Cable,1,14.95,12/05/19 20:08,"301 Lincoln St, San Francisco, CA 94016" -317058,Wired Headphones,1,11.99,12/11/19 18:54,"191 Ridge St, Seattle, WA 98101" -317059,AAA Batteries (4-pack),1,2.99,12/30/19 16:55,"148 Walnut St, Portland, OR 97035" -317059,Wired Headphones,1,11.99,12/30/19 16:55,"148 Walnut St, Portland, OR 97035" -317060,34in Ultrawide Monitor,1,379.99,12/09/19 12:12,"624 Dogwood St, Dallas, TX 75001" -317061,ThinkPad Laptop,1,999.99,12/30/19 14:16,"959 Lakeview St, Boston, MA 02215" -317062,AAA Batteries (4-pack),4,2.99,12/22/19 10:48,"10 10th St, Dallas, TX 75001" -317063,34in Ultrawide Monitor,1,379.99,12/05/19 21:02,"509 14th St, Los Angeles, CA 90001" -317064,Lightning Charging Cable,1,14.95,12/29/19 21:57,"849 Cedar St, Los Angeles, CA 90001" -317065,27in 4K Gaming Monitor,1,389.99,12/14/19 10:50,"689 Maple St, Los Angeles, CA 90001" -317066,Bose SoundSport Headphones,1,99.99,12/29/19 09:37,"745 5th St, San Francisco, CA 94016" -317067,iPhone,1,700,12/23/19 20:00,"909 Madison St, Boston, MA 02215" -317068,Vareebadd Phone,1,400,12/20/19 23:09,"388 Lake St, New York City, NY 10001" -317069,Lightning Charging Cable,1,14.95,12/06/19 18:09,"136 8th St, Boston, MA 02215" -317070,Lightning Charging Cable,2,14.95,12/15/19 10:36,"222 Washington St, Dallas, TX 75001" -317071,Apple Airpods Headphones,1,150,12/24/19 11:04,"663 Church St, Atlanta, GA 30301" -317072,Bose SoundSport Headphones,1,99.99,12/18/19 10:19,"97 2nd St, San Francisco, CA 94016" -317073,iPhone,1,700,12/11/19 15:04,"456 Adams St, San Francisco, CA 94016" -317074,AA Batteries (4-pack),1,3.84,12/02/19 10:57,"796 9th St, Los Angeles, CA 90001" -317075,USB-C Charging Cable,1,11.95,12/07/19 17:00,"891 Maple St, Boston, MA 02215" -317076,AA Batteries (4-pack),1,3.84,12/09/19 10:12,"936 Jackson St, Seattle, WA 98101" -317076,Apple Airpods Headphones,1,150,12/09/19 10:12,"936 Jackson St, Seattle, WA 98101" -317077,34in Ultrawide Monitor,1,379.99,12/12/19 07:17,"383 Hickory St, Los Angeles, CA 90001" -317077,USB-C Charging Cable,1,11.95,12/12/19 07:17,"383 Hickory St, Los Angeles, CA 90001" -317078,AAA Batteries (4-pack),2,2.99,12/12/19 18:43,"628 2nd St, Boston, MA 02215" -317079,AA Batteries (4-pack),1,3.84,12/29/19 09:08,"852 Lake St, Portland, OR 97035" -317080,Lightning Charging Cable,1,14.95,12/19/19 19:06,"684 13th St, Los Angeles, CA 90001" -317081,34in Ultrawide Monitor,1,379.99,12/22/19 16:22,"902 South St, San Francisco, CA 94016" -317082,USB-C Charging Cable,1,11.95,12/19/19 14:59,"629 6th St, Seattle, WA 98101" -317083,27in FHD Monitor,1,149.99,12/15/19 14:12,"566 11th St, San Francisco, CA 94016" -317084,Flatscreen TV,1,300,12/13/19 11:51,"819 North St, Dallas, TX 75001" -317085,20in Monitor,1,109.99,12/07/19 11:11,"622 Maple St, New York City, NY 10001" -317086,USB-C Charging Cable,1,11.95,12/07/19 12:35,"213 12th St, New York City, NY 10001" -317087,AA Batteries (4-pack),1,3.84,12/17/19 16:45,"227 Church St, Los Angeles, CA 90001" -317088,USB-C Charging Cable,1,11.95,12/03/19 15:11,"962 Dogwood St, Boston, MA 02215" -317089,27in FHD Monitor,1,149.99,12/05/19 13:39,"498 Park St, Los Angeles, CA 90001" -317090,20in Monitor,1,109.99,12/17/19 16:19,"41 Johnson St, San Francisco, CA 94016" -317091,AA Batteries (4-pack),2,3.84,12/25/19 10:34,"9 Walnut St, New York City, NY 10001" -317092,Wired Headphones,1,11.99,12/13/19 10:32,"638 North St, New York City, NY 10001" -317093,AA Batteries (4-pack),2,3.84,12/31/19 01:33,"357 Jefferson St, Boston, MA 02215" -317094,Bose SoundSport Headphones,1,99.99,12/17/19 23:17,"429 Lincoln St, Seattle, WA 98101" -317095,AAA Batteries (4-pack),5,2.99,12/22/19 20:12,"4 Adams St, Boston, MA 02215" -317096,AA Batteries (4-pack),2,3.84,12/01/19 22:52,"72 Chestnut St, Los Angeles, CA 90001" -317097,AAA Batteries (4-pack),1,2.99,12/25/19 08:41,"648 14th St, San Francisco, CA 94016" -317098,USB-C Charging Cable,1,11.95,12/05/19 01:23,"316 Elm St, San Francisco, CA 94016" -317099,Apple Airpods Headphones,1,150,12/06/19 19:28,"866 Jefferson St, Portland, OR 97035" -317100,27in FHD Monitor,1,149.99,12/19/19 10:13,"533 Ridge St, San Francisco, CA 94016" -317101,AA Batteries (4-pack),3,3.84,12/09/19 22:16,"355 14th St, Los Angeles, CA 90001" -317102,AAA Batteries (4-pack),1,2.99,12/18/19 19:34,"71 West St, Portland, OR 97035" -317103,USB-C Charging Cable,1,11.95,12/07/19 12:26,"730 4th St, San Francisco, CA 94016" -317104,20in Monitor,1,109.99,12/31/19 22:15,"172 2nd St, San Francisco, CA 94016" -317105,Bose SoundSport Headphones,1,99.99,12/07/19 11:09,"91 2nd St, San Francisco, CA 94016" -317106,34in Ultrawide Monitor,1,379.99,12/24/19 10:22,"639 Park St, Boston, MA 02215" -317107,ThinkPad Laptop,1,999.99,12/18/19 05:04,"466 Hill St, Atlanta, GA 30301" -317108,AAA Batteries (4-pack),1,2.99,12/06/19 23:54,"493 Maple St, Los Angeles, CA 90001" -317109,Apple Airpods Headphones,1,150,12/05/19 01:29,"175 Hill St, Austin, TX 73301" -317110,AA Batteries (4-pack),2,3.84,12/04/19 16:25,"988 9th St, Dallas, TX 75001" -317111,AAA Batteries (4-pack),2,2.99,12/30/19 10:36,"401 Adams St, Los Angeles, CA 90001" -317112,AAA Batteries (4-pack),1,2.99,12/07/19 21:12,"499 14th St, Boston, MA 02215" -317113,Bose SoundSport Headphones,2,99.99,12/05/19 17:43,"497 8th St, New York City, NY 10001" -317114,AAA Batteries (4-pack),2,2.99,12/17/19 21:23,"457 Pine St, New York City, NY 10001" -317115,Google Phone,1,600,12/30/19 22:04,"247 Meadow St, Dallas, TX 75001" -317116,27in 4K Gaming Monitor,1,389.99,12/21/19 21:20,"781 10th St, San Francisco, CA 94016" -317117,Lightning Charging Cable,1,14.95,12/04/19 12:43,"793 1st St, Seattle, WA 98101" -317118,AA Batteries (4-pack),1,3.84,12/30/19 19:39,"371 Maple St, San Francisco, CA 94016" -317119,AA Batteries (4-pack),4,3.84,12/24/19 17:46,"526 Cedar St, Los Angeles, CA 90001" -317120,AAA Batteries (4-pack),1,2.99,12/15/19 17:16,"796 13th St, Boston, MA 02215" -317121,USB-C Charging Cable,1,11.95,12/12/19 18:26,"531 West St, San Francisco, CA 94016" -317122,Lightning Charging Cable,1,14.95,12/26/19 22:41,"122 Sunset St, New York City, NY 10001" -317123,AA Batteries (4-pack),2,3.84,12/06/19 16:38,"758 Pine St, Atlanta, GA 30301" -317124,AAA Batteries (4-pack),1,2.99,12/22/19 11:05,"772 Center St, Dallas, TX 75001" -317125,USB-C Charging Cable,1,11.95,12/12/19 22:44,"501 8th St, Dallas, TX 75001" -317126,27in 4K Gaming Monitor,1,389.99,12/19/19 11:12,"234 Forest St, Seattle, WA 98101" -317127,Bose SoundSport Headphones,1,99.99,12/21/19 08:44,"585 Dogwood St, Boston, MA 02215" -317128,Wired Headphones,1,11.99,12/15/19 17:01,"735 Dogwood St, Seattle, WA 98101" -317129,Lightning Charging Cable,1,14.95,12/04/19 03:38,"535 Maple St, Los Angeles, CA 90001" -317130,Wired Headphones,1,11.99,12/16/19 13:44,"633 Spruce St, Dallas, TX 75001" -317131,Google Phone,1,600,12/12/19 19:30,"682 Main St, San Francisco, CA 94016" -317132,Bose SoundSport Headphones,1,99.99,12/30/19 20:20,"991 Chestnut St, San Francisco, CA 94016" -317133,Apple Airpods Headphones,1,150,12/25/19 09:29,"554 8th St, Atlanta, GA 30301" -317134,LG Dryer,1,600.0,12/26/19 10:56,"275 9th St, Atlanta, GA 30301" -317135,Lightning Charging Cable,1,14.95,12/21/19 10:03,"594 Madison St, Los Angeles, CA 90001" -317136,AAA Batteries (4-pack),2,2.99,12/04/19 21:09,"797 Lake St, Los Angeles, CA 90001" -317137,USB-C Charging Cable,1,11.95,12/26/19 19:12,"374 Cherry St, San Francisco, CA 94016" -317138,Google Phone,1,600,12/03/19 19:45,"494 Pine St, San Francisco, CA 94016" -317139,Apple Airpods Headphones,1,150,12/27/19 10:29,"599 Maple St, New York City, NY 10001" -317140,Bose SoundSport Headphones,1,99.99,12/16/19 23:01,"225 Meadow St, Portland, OR 97035" -317141,AAA Batteries (4-pack),1,2.99,12/03/19 05:46,"604 Chestnut St, San Francisco, CA 94016" -317142,Vareebadd Phone,1,400,12/07/19 18:53,"708 Cherry St, Dallas, TX 75001" -317143,Lightning Charging Cable,1,14.95,12/13/19 11:15,"899 Jackson St, San Francisco, CA 94016" -317144,AAA Batteries (4-pack),1,2.99,12/14/19 21:42,"261 Center St, Portland, OR 97035" -317145,LG Washing Machine,1,600.0,12/31/19 20:02,"22 Lincoln St, San Francisco, CA 94016" -317146,iPhone,1,700,12/25/19 17:59,"261 West St, Portland, OR 97035" -317147,Macbook Pro Laptop,1,1700,12/27/19 07:02,"571 Washington St, Boston, MA 02215" -317148,Macbook Pro Laptop,1,1700,12/28/19 21:59,"57 Meadow St, San Francisco, CA 94016" -317149,AAA Batteries (4-pack),1,2.99,12/14/19 20:26,"952 Elm St, Boston, MA 02215" -317150,Macbook Pro Laptop,1,1700,12/14/19 11:48,"777 Jackson St, Boston, MA 02215" -317151,AA Batteries (4-pack),3,3.84,12/31/19 20:04,"475 Center St, Los Angeles, CA 90001" -317152,AAA Batteries (4-pack),5,2.99,12/14/19 16:45,"11 1st St, Atlanta, GA 30301" -317153,Apple Airpods Headphones,1,150,12/29/19 16:38,"624 Lincoln St, New York City, NY 10001" -317154,Google Phone,1,600,12/07/19 14:11,"223 10th St, Dallas, TX 75001" -317155,AAA Batteries (4-pack),1,2.99,12/19/19 22:18,"143 Lincoln St, Los Angeles, CA 90001" -317156,Lightning Charging Cable,1,14.95,12/01/19 09:13,"141 North St, Atlanta, GA 30301" -317157,Bose SoundSport Headphones,1,99.99,12/09/19 17:14,"949 Spruce St, Dallas, TX 75001" -317158,Wired Headphones,1,11.99,12/08/19 11:50,"66 Washington St, San Francisco, CA 94016" -317159,USB-C Charging Cable,1,11.95,12/24/19 10:37,"63 North St, Austin, TX 73301" -317160,AA Batteries (4-pack),4,3.84,12/12/19 20:03,"669 Johnson St, Atlanta, GA 30301" -317161,Apple Airpods Headphones,1,150,12/18/19 11:21,"714 North St, San Francisco, CA 94016" -317162,Lightning Charging Cable,1,14.95,12/12/19 15:06,"424 Church St, Seattle, WA 98101" -317163,USB-C Charging Cable,1,11.95,12/23/19 08:56,"568 Spruce St, Atlanta, GA 30301" -317164,AAA Batteries (4-pack),2,2.99,12/18/19 00:33,"739 Johnson St, Dallas, TX 75001" -317165,20in Monitor,1,109.99,12/10/19 11:44,"899 Center St, Seattle, WA 98101" -317166,AA Batteries (4-pack),2,3.84,12/02/19 16:11,"58 Washington St, New York City, NY 10001" -317167,AAA Batteries (4-pack),1,2.99,12/09/19 12:27,"176 North St, Boston, MA 02215" -317168,Apple Airpods Headphones,1,150,12/16/19 20:31,"792 Elm St, Los Angeles, CA 90001" -317169,Lightning Charging Cable,1,14.95,12/02/19 17:10,"339 Hill St, San Francisco, CA 94016" -317170,Google Phone,1,600,12/01/19 12:04,"944 7th St, San Francisco, CA 94016" -317170,USB-C Charging Cable,1,11.95,12/01/19 12:04,"944 7th St, San Francisco, CA 94016" -317171,Apple Airpods Headphones,1,150,12/20/19 13:04,"8 Pine St, Atlanta, GA 30301" -317172,Lightning Charging Cable,1,14.95,12/07/19 11:37,"104 West St, San Francisco, CA 94016" -317173,Bose SoundSport Headphones,1,99.99,12/28/19 15:05,"486 Lincoln St, Los Angeles, CA 90001" -317174,Apple Airpods Headphones,1,150,12/09/19 07:19,"706 Main St, Seattle, WA 98101" -317175,USB-C Charging Cable,1,11.95,12/10/19 20:28,"343 8th St, San Francisco, CA 94016" -317176,Bose SoundSport Headphones,1,99.99,12/11/19 22:12,"45 River St, Dallas, TX 75001" -317177,Wired Headphones,1,11.99,12/02/19 18:20,"939 Center St, San Francisco, CA 94016" -317178,Bose SoundSport Headphones,1,99.99,12/25/19 18:50,"943 Highland St, New York City, NY 10001" -317179,Wired Headphones,1,11.99,12/29/19 08:15,"773 Maple St, San Francisco, CA 94016" -317179,Macbook Pro Laptop,1,1700,12/29/19 08:15,"773 Maple St, San Francisco, CA 94016" -317180,Lightning Charging Cable,1,14.95,12/08/19 09:08,"9 9th St, Dallas, TX 75001" -317181,Apple Airpods Headphones,1,150,12/10/19 20:28,"398 West St, San Francisco, CA 94016" -317182,LG Dryer,1,600.0,12/07/19 20:09,"709 Highland St, Los Angeles, CA 90001" -317183,AAA Batteries (4-pack),1,2.99,12/12/19 14:20,"703 1st St, Dallas, TX 75001" -317184,AAA Batteries (4-pack),2,2.99,12/06/19 07:00,"67 Lakeview St, Seattle, WA 98101" -317185,Macbook Pro Laptop,1,1700,12/23/19 21:43,"420 Church St, San Francisco, CA 94016" -317186,USB-C Charging Cable,1,11.95,12/02/19 10:07,"684 South St, Dallas, TX 75001" -317187,Apple Airpods Headphones,1,150,12/04/19 17:34,"243 South St, San Francisco, CA 94016" -317188,27in FHD Monitor,1,149.99,12/06/19 11:55,"164 Wilson St, Dallas, TX 75001" -317189,USB-C Charging Cable,1,11.95,12/23/19 13:38,"617 1st St, New York City, NY 10001" -317190,Apple Airpods Headphones,1,150,12/25/19 22:16,"847 Chestnut St, San Francisco, CA 94016" -317191,Macbook Pro Laptop,1,1700,12/01/19 21:42,"110 Lake St, Atlanta, GA 30301" -317191,Lightning Charging Cable,1,14.95,12/01/19 21:42,"110 Lake St, Atlanta, GA 30301" -317192,Wired Headphones,1,11.99,12/10/19 19:01,"693 Spruce St, San Francisco, CA 94016" -317193,Wired Headphones,1,11.99,12/04/19 06:24,"161 6th St, Atlanta, GA 30301" -317194,Wired Headphones,1,11.99,12/19/19 18:43,"261 Washington St, Atlanta, GA 30301" -317195,Bose SoundSport Headphones,1,99.99,12/26/19 06:06,"391 Johnson St, San Francisco, CA 94016" -317196,AA Batteries (4-pack),1,3.84,12/10/19 09:25,"417 Lincoln St, New York City, NY 10001" -317197,USB-C Charging Cable,1,11.95,12/05/19 12:54,"992 10th St, New York City, NY 10001" -317198,Google Phone,1,600,12/23/19 23:43,"977 Sunset St, San Francisco, CA 94016" -317199,AAA Batteries (4-pack),3,2.99,12/30/19 20:12,"616 Lake St, Seattle, WA 98101" -317200,iPhone,1,700,12/16/19 23:39,"66 Main St, Dallas, TX 75001" -317201,Wired Headphones,1,11.99,12/09/19 20:23,"429 8th St, Boston, MA 02215" -317202,AA Batteries (4-pack),1,3.84,12/06/19 11:44,"921 Center St, San Francisco, CA 94016" -317203,AA Batteries (4-pack),1,3.84,12/13/19 20:47,"437 Chestnut St, Seattle, WA 98101" -317204,USB-C Charging Cable,1,11.95,12/13/19 10:12,"775 Walnut St, San Francisco, CA 94016" -317205,AA Batteries (4-pack),1,3.84,12/26/19 16:41,"195 Johnson St, Atlanta, GA 30301" -317206,34in Ultrawide Monitor,1,379.99,12/03/19 14:13,"947 Park St, San Francisco, CA 94016" -317207,AA Batteries (4-pack),1,3.84,12/31/19 19:40,"800 Willow St, Portland, OR 97035" -317208,Apple Airpods Headphones,1,150,12/05/19 18:23,"727 Lake St, Seattle, WA 98101" -317209,Bose SoundSport Headphones,1,99.99,12/01/19 12:46,"875 6th St, San Francisco, CA 94016" -317210,USB-C Charging Cable,1,11.95,12/20/19 22:01,"499 Cedar St, Austin, TX 73301" -317211,USB-C Charging Cable,1,11.95,12/13/19 21:34,"807 Walnut St, San Francisco, CA 94016" -317212,Apple Airpods Headphones,1,150,12/18/19 16:41,"30 Church St, Los Angeles, CA 90001" -317213,Bose SoundSport Headphones,1,99.99,12/09/19 18:58,"841 Highland St, New York City, NY 10001" -317214,USB-C Charging Cable,1,11.95,12/24/19 04:14,"231 9th St, San Francisco, CA 94016" -317215,USB-C Charging Cable,1,11.95,12/15/19 21:40,"677 Hill St, Portland, OR 97035" -317216,Lightning Charging Cable,1,14.95,12/18/19 10:50,"533 Meadow St, San Francisco, CA 94016" -317217,Vareebadd Phone,1,400,12/19/19 20:39,"225 Spruce St, San Francisco, CA 94016" -317218,USB-C Charging Cable,1,11.95,12/06/19 06:42,"684 Meadow St, Portland, ME 04101" -317219,USB-C Charging Cable,1,11.95,12/30/19 17:36,"318 2nd St, San Francisco, CA 94016" -317220,27in 4K Gaming Monitor,1,389.99,12/23/19 12:04,"935 Chestnut St, Austin, TX 73301" -317221,Wired Headphones,1,11.99,12/18/19 10:25,"497 Park St, Seattle, WA 98101" -317222,Lightning Charging Cable,1,14.95,12/07/19 17:53,"689 Forest St, Dallas, TX 75001" -317223,AA Batteries (4-pack),2,3.84,12/28/19 00:26,"577 Jackson St, San Francisco, CA 94016" -317224,USB-C Charging Cable,1,11.95,12/16/19 21:51,"586 2nd St, New York City, NY 10001" -317225,Apple Airpods Headphones,1,150,12/07/19 06:44,"336 Highland St, Boston, MA 02215" -317226,Wired Headphones,1,11.99,12/09/19 13:59,"482 Pine St, Los Angeles, CA 90001" -317227,AA Batteries (4-pack),2,3.84,12/21/19 15:33,"750 Maple St, Los Angeles, CA 90001" -317228,USB-C Charging Cable,1,11.95,12/16/19 20:31,"91 Willow St, Seattle, WA 98101" -317229,AAA Batteries (4-pack),3,2.99,12/10/19 15:43,"995 14th St, San Francisco, CA 94016" -317230,Wired Headphones,1,11.99,12/11/19 16:55,"698 South St, San Francisco, CA 94016" -317231,27in FHD Monitor,1,149.99,12/21/19 10:25,"490 Lincoln St, San Francisco, CA 94016" -317232,AA Batteries (4-pack),4,3.84,12/19/19 18:42,"331 Cherry St, Portland, OR 97035" -317233,USB-C Charging Cable,1,11.95,12/20/19 22:04,"602 Ridge St, Los Angeles, CA 90001" -317234,Google Phone,1,600,12/22/19 22:24,"21 Park St, San Francisco, CA 94016" -317234,Bose SoundSport Headphones,1,99.99,12/22/19 22:24,"21 Park St, San Francisco, CA 94016" -317235,USB-C Charging Cable,1,11.95,12/27/19 11:46,"12 Jefferson St, Los Angeles, CA 90001" -317236,Flatscreen TV,1,300,12/02/19 21:19,"515 6th St, Seattle, WA 98101" -317237,AAA Batteries (4-pack),1,2.99,12/31/19 12:45,"885 Forest St, Boston, MA 02215" -317238,AA Batteries (4-pack),1,3.84,12/19/19 14:44,"36 14th St, Boston, MA 02215" -317239,34in Ultrawide Monitor,1,379.99,12/09/19 09:15,"204 Johnson St, Boston, MA 02215" -317240,AA Batteries (4-pack),4,3.84,12/10/19 07:28,"80 Meadow St, Dallas, TX 75001" -317241,Wired Headphones,1,11.99,12/12/19 01:14,"399 8th St, Los Angeles, CA 90001" -317242,27in FHD Monitor,1,149.99,12/11/19 14:15,"508 Johnson St, New York City, NY 10001" -317243,Apple Airpods Headphones,1,150,12/13/19 13:56,"267 12th St, Portland, OR 97035" -317244,Lightning Charging Cable,2,14.95,12/29/19 23:51,"123 Madison St, New York City, NY 10001" -317245,iPhone,1,700,12/08/19 17:56,"909 Church St, San Francisco, CA 94016" -317246,iPhone,1,700,12/07/19 09:33,"663 Maple St, Dallas, TX 75001" -317247,Lightning Charging Cable,1,14.95,12/29/19 13:28,"631 Church St, Austin, TX 73301" -317248,Google Phone,1,600,12/18/19 08:30,"751 12th St, San Francisco, CA 94016" -317248,Bose SoundSport Headphones,1,99.99,12/18/19 08:30,"751 12th St, San Francisco, CA 94016" -317249,34in Ultrawide Monitor,1,379.99,12/20/19 17:35,"894 8th St, New York City, NY 10001" -317250,AAA Batteries (4-pack),1,2.99,12/18/19 02:48,"729 4th St, Portland, OR 97035" -317251,AAA Batteries (4-pack),1,2.99,12/22/19 08:52,"269 North St, Portland, ME 04101" -317252,27in FHD Monitor,1,149.99,12/28/19 14:48,"356 Highland St, Seattle, WA 98101" -317253,Wired Headphones,1,11.99,12/17/19 22:49,"902 1st St, Portland, OR 97035" -317254,ThinkPad Laptop,1,999.99,12/28/19 23:09,"208 Cherry St, Los Angeles, CA 90001" -317255,AA Batteries (4-pack),1,3.84,12/04/19 17:43,"186 Lake St, Los Angeles, CA 90001" -317256,iPhone,1,700,12/13/19 15:11,"900 Pine St, San Francisco, CA 94016" -317257,34in Ultrawide Monitor,1,379.99,12/04/19 13:12,"463 6th St, Austin, TX 73301" -317258,iPhone,1,700,12/11/19 16:10,"573 Madison St, New York City, NY 10001" -317258,Apple Airpods Headphones,1,150,12/11/19 16:10,"573 Madison St, New York City, NY 10001" -317259,Apple Airpods Headphones,1,150,12/28/19 15:19,"667 Lake St, San Francisco, CA 94016" -317260,Lightning Charging Cable,1,14.95,12/19/19 16:07,"778 Cherry St, Dallas, TX 75001" -317261,Apple Airpods Headphones,1,150,12/25/19 20:42,"414 Park St, Seattle, WA 98101" -317262,AAA Batteries (4-pack),3,2.99,12/23/19 11:28,"960 5th St, New York City, NY 10001" -317263,USB-C Charging Cable,1,11.95,12/25/19 10:51,"77 Jefferson St, New York City, NY 10001" -317264,27in FHD Monitor,1,149.99,12/08/19 06:52,"514 12th St, Portland, OR 97035" -317265,AA Batteries (4-pack),1,3.84,12/26/19 19:06,"24 Church St, San Francisco, CA 94016" -317266,Lightning Charging Cable,1,14.95,12/04/19 18:25,"682 1st St, Boston, MA 02215" -317267,Apple Airpods Headphones,1,150,12/05/19 23:58,"836 10th St, Austin, TX 73301" -317268,AAA Batteries (4-pack),1,2.99,12/08/19 23:07,"946 10th St, San Francisco, CA 94016" -317269,Bose SoundSport Headphones,1,99.99,12/15/19 13:06,"825 Ridge St, New York City, NY 10001" -317270,AAA Batteries (4-pack),2,2.99,12/29/19 18:24,"19 Maple St, Los Angeles, CA 90001" -317271,Apple Airpods Headphones,1,150,12/25/19 00:27,"65 Willow St, Los Angeles, CA 90001" -317272,USB-C Charging Cable,1,11.95,12/28/19 12:39,"487 Cherry St, Boston, MA 02215" -317273,iPhone,1,700,12/06/19 19:52,"33 Johnson St, Portland, OR 97035" -317274,34in Ultrawide Monitor,1,379.99,12/26/19 01:26,"487 Walnut St, New York City, NY 10001" -317275,Apple Airpods Headphones,1,150,12/03/19 09:29,"304 Elm St, Los Angeles, CA 90001" -317276,AAA Batteries (4-pack),1,2.99,12/09/19 22:24,"738 River St, Los Angeles, CA 90001" -317277,AA Batteries (4-pack),1,3.84,12/05/19 22:15,"868 7th St, Seattle, WA 98101" -317278,Wired Headphones,1,11.99,12/29/19 18:40,"957 11th St, San Francisco, CA 94016" -317279,USB-C Charging Cable,1,11.95,12/27/19 18:44,"487 Lincoln St, Boston, MA 02215" -317280,AAA Batteries (4-pack),2,2.99,12/17/19 19:10,"56 Highland St, San Francisco, CA 94016" -317280,USB-C Charging Cable,1,11.95,12/17/19 19:10,"56 Highland St, San Francisco, CA 94016" -317281,Vareebadd Phone,1,400,12/19/19 18:20,"880 11th St, New York City, NY 10001" -317282,Lightning Charging Cable,1,14.95,12/03/19 09:01,"139 South St, Seattle, WA 98101" -317283,Google Phone,1,600,12/16/19 18:57,"708 Park St, San Francisco, CA 94016" -317284,Lightning Charging Cable,1,14.95,12/28/19 16:12,"169 Center St, Los Angeles, CA 90001" -317285,AAA Batteries (4-pack),1,2.99,12/05/19 21:59,"313 Adams St, San Francisco, CA 94016" -317286,Lightning Charging Cable,1,14.95,12/11/19 21:56,"40 Main St, Los Angeles, CA 90001" -317287,AA Batteries (4-pack),2,3.84,12/27/19 11:24,"192 7th St, New York City, NY 10001" -317288,Lightning Charging Cable,1,14.95,12/06/19 14:42,"193 Hill St, San Francisco, CA 94016" -317289,27in FHD Monitor,1,149.99,12/16/19 17:21,"788 9th St, San Francisco, CA 94016" -317290,34in Ultrawide Monitor,1,379.99,12/03/19 13:52,"743 Sunset St, San Francisco, CA 94016" -317291,AAA Batteries (4-pack),1,2.99,12/02/19 14:57,"442 Center St, New York City, NY 10001" -317292,Apple Airpods Headphones,1,150,12/27/19 11:10,"551 Wilson St, New York City, NY 10001" -317293,34in Ultrawide Monitor,1,379.99,12/22/19 22:05,"421 Madison St, San Francisco, CA 94016" -317294,USB-C Charging Cable,1,11.95,12/04/19 16:26,"113 Forest St, Portland, OR 97035" -317295,AAA Batteries (4-pack),1,2.99,12/12/19 12:47,"695 7th St, Atlanta, GA 30301" -317296,AA Batteries (4-pack),1,3.84,12/23/19 19:10,"27 Hill St, Los Angeles, CA 90001" -317297,27in 4K Gaming Monitor,1,389.99,12/05/19 08:26,"517 Cherry St, San Francisco, CA 94016" -317298,Apple Airpods Headphones,1,150,12/10/19 10:50,"682 Wilson St, Seattle, WA 98101" -317299,Lightning Charging Cable,1,14.95,12/06/19 13:54,"597 North St, Portland, OR 97035" -317300,AAA Batteries (4-pack),2,2.99,12/19/19 11:22,"814 12th St, Austin, TX 73301" -317301,USB-C Charging Cable,1,11.95,12/01/19 21:17,"340 11th St, Seattle, WA 98101" -317302,Google Phone,1,600,12/23/19 19:12,"713 Park St, Austin, TX 73301" -317302,USB-C Charging Cable,2,11.95,12/23/19 19:12,"713 Park St, Austin, TX 73301" -317303,USB-C Charging Cable,2,11.95,12/04/19 21:17,"395 Maple St, Boston, MA 02215" -317304,AA Batteries (4-pack),1,3.84,12/30/19 21:09,"568 Meadow St, Atlanta, GA 30301" -317305,Bose SoundSport Headphones,1,99.99,12/31/19 22:50,"775 1st St, Seattle, WA 98101" -317306,USB-C Charging Cable,1,11.95,12/20/19 22:11,"921 1st St, San Francisco, CA 94016" -317307,USB-C Charging Cable,1,11.95,12/30/19 22:26,"803 Center St, Portland, OR 97035" -317308,Wired Headphones,1,11.99,12/09/19 10:29,"360 Forest St, San Francisco, CA 94016" -317309,Macbook Pro Laptop,1,1700,12/11/19 05:51,"451 Spruce St, Austin, TX 73301" -317310,AAA Batteries (4-pack),1,2.99,12/19/19 22:02,"677 Jefferson St, Atlanta, GA 30301" -317311,AAA Batteries (4-pack),1,2.99,12/05/19 16:52,"151 Madison St, New York City, NY 10001" -317312,USB-C Charging Cable,1,11.95,12/17/19 01:34,"891 Spruce St, San Francisco, CA 94016" -317313,Macbook Pro Laptop,1,1700,12/21/19 02:21,"809 Pine St, Seattle, WA 98101" -317314,Lightning Charging Cable,1,14.95,12/01/19 17:56,"848 Spruce St, San Francisco, CA 94016" -317315,Apple Airpods Headphones,1,150,12/12/19 18:23,"758 8th St, Boston, MA 02215" -317316,Wired Headphones,1,11.99,12/09/19 16:51,"840 West St, San Francisco, CA 94016" -317317,Lightning Charging Cable,1,14.95,12/16/19 17:00,"668 Cedar St, Seattle, WA 98101" -317318,Apple Airpods Headphones,1,150,12/14/19 20:35,"600 Hickory St, San Francisco, CA 94016" -317319,20in Monitor,1,109.99,12/25/19 12:28,"575 Jackson St, Seattle, WA 98101" -317320,iPhone,1,700,12/06/19 21:02,"495 Lincoln St, Los Angeles, CA 90001" -317320,Wired Headphones,1,11.99,12/06/19 21:02,"495 Lincoln St, Los Angeles, CA 90001" -317321,Lightning Charging Cable,1,14.95,12/02/19 12:44,"699 Park St, Portland, OR 97035" -317322,Lightning Charging Cable,1,14.95,12/31/19 01:12,"39 Ridge St, San Francisco, CA 94016" -317323,Google Phone,1,600,12/10/19 14:31,"41 Madison St, Portland, OR 97035" -317324,Bose SoundSport Headphones,1,99.99,12/02/19 22:44,"87 Meadow St, San Francisco, CA 94016" -317325,34in Ultrawide Monitor,1,379.99,12/24/19 11:54,"880 Lakeview St, Atlanta, GA 30301" -317326,Bose SoundSport Headphones,1,99.99,12/17/19 12:24,"787 Main St, New York City, NY 10001" -317327,USB-C Charging Cable,1,11.95,12/17/19 17:28,"699 Spruce St, San Francisco, CA 94016" -317328,Vareebadd Phone,1,400,12/03/19 15:43,"559 River St, San Francisco, CA 94016" -317328,USB-C Charging Cable,1,11.95,12/03/19 15:43,"559 River St, San Francisco, CA 94016" -317329,Apple Airpods Headphones,1,150,12/12/19 19:22,"997 6th St, Seattle, WA 98101" -317330,AA Batteries (4-pack),1,3.84,12/16/19 19:12,"347 Madison St, Boston, MA 02215" -317331,20in Monitor,1,109.99,12/25/19 16:35,"578 Hill St, Dallas, TX 75001" -317332,AA Batteries (4-pack),1,3.84,12/03/19 18:17,"80 Pine St, Dallas, TX 75001" -317333,Lightning Charging Cable,1,14.95,12/04/19 19:01,"686 Elm St, New York City, NY 10001" -317334,USB-C Charging Cable,1,11.95,12/16/19 00:49,"305 Center St, San Francisco, CA 94016" -317335,27in 4K Gaming Monitor,1,389.99,12/31/19 22:26,"715 Spruce St, Seattle, WA 98101" -317336,USB-C Charging Cable,1,11.95,12/06/19 17:56,"540 8th St, Dallas, TX 75001" -317337,AAA Batteries (4-pack),1,2.99,12/31/19 19:49,"271 Pine St, San Francisco, CA 94016" -317338,Wired Headphones,1,11.99,12/01/19 12:02,"92 North St, New York City, NY 10001" -317339,Google Phone,1,600,12/12/19 19:20,"192 Hill St, Atlanta, GA 30301" -317340,20in Monitor,1,109.99,12/05/19 09:24,"752 2nd St, Los Angeles, CA 90001" -317341,Bose SoundSport Headphones,1,99.99,12/11/19 01:43,"919 9th St, San Francisco, CA 94016" -317342,USB-C Charging Cable,1,11.95,12/11/19 07:40,"950 North St, San Francisco, CA 94016" -317343,USB-C Charging Cable,1,11.95,12/08/19 09:18,"273 West St, New York City, NY 10001" -317344,Lightning Charging Cable,1,14.95,12/04/19 22:50,"840 River St, Boston, MA 02215" -317345,LG Dryer,1,600.0,12/07/19 00:58,"829 River St, Boston, MA 02215" -317346,Vareebadd Phone,1,400,12/02/19 12:06,"457 Chestnut St, San Francisco, CA 94016" -317347,AAA Batteries (4-pack),2,2.99,12/26/19 19:21,"649 West St, New York City, NY 10001" -317348,Google Phone,1,600,12/17/19 15:54,"779 Cherry St, Los Angeles, CA 90001" -317349,AAA Batteries (4-pack),1,2.99,12/24/19 09:53,"448 Dogwood St, San Francisco, CA 94016" -317350,Google Phone,1,600,12/22/19 22:29,"396 Dogwood St, Boston, MA 02215" -317350,USB-C Charging Cable,1,11.95,12/22/19 22:29,"396 Dogwood St, Boston, MA 02215" -317351,Lightning Charging Cable,1,14.95,12/28/19 16:34,"293 Lake St, Los Angeles, CA 90001" -317352,Macbook Pro Laptop,1,1700,12/10/19 21:44,"731 Church St, San Francisco, CA 94016" -317353,AA Batteries (4-pack),1,3.84,12/13/19 15:36,"786 5th St, San Francisco, CA 94016" -317354,Lightning Charging Cable,2,14.95,12/11/19 09:42,"186 Lakeview St, New York City, NY 10001" -317355,Lightning Charging Cable,1,14.95,12/05/19 11:04,"516 Cherry St, Atlanta, GA 30301" -317356,iPhone,1,700,12/08/19 18:54,"336 Church St, Dallas, TX 75001" -317357,27in FHD Monitor,1,149.99,12/25/19 08:39,"70 Dogwood St, Seattle, WA 98101" -317358,Google Phone,1,600,12/24/19 13:05,"533 Johnson St, Boston, MA 02215" -317359,Bose SoundSport Headphones,1,99.99,12/16/19 02:34,"705 Hill St, San Francisco, CA 94016" -317360,AA Batteries (4-pack),1,3.84,12/07/19 11:18,"674 Jackson St, Atlanta, GA 30301" -317361,Wired Headphones,1,11.99,12/31/19 11:56,"879 7th St, San Francisco, CA 94016" -317362,Google Phone,1,600,12/17/19 08:09,"603 Meadow St, San Francisco, CA 94016" -317363,AAA Batteries (4-pack),1,2.99,12/23/19 18:19,"839 West St, Seattle, WA 98101" -317364,USB-C Charging Cable,1,11.95,12/09/19 15:18,"580 Pine St, Portland, ME 04101" -317365,AA Batteries (4-pack),1,3.84,12/25/19 13:18,"712 13th St, New York City, NY 10001" -317366,Bose SoundSport Headphones,1,99.99,12/24/19 14:51,"636 12th St, Los Angeles, CA 90001" -317367,Apple Airpods Headphones,1,150,12/09/19 12:25,"933 7th St, New York City, NY 10001" -317368,27in 4K Gaming Monitor,1,389.99,12/06/19 19:44,"583 9th St, Los Angeles, CA 90001" -317369,AA Batteries (4-pack),1,3.84,12/11/19 11:06,"753 13th St, Los Angeles, CA 90001" -317370,Lightning Charging Cable,1,14.95,12/03/19 19:52,"292 Hill St, San Francisco, CA 94016" -317371,AAA Batteries (4-pack),1,2.99,12/15/19 18:48,"675 6th St, San Francisco, CA 94016" -317372,USB-C Charging Cable,1,11.95,12/15/19 15:53,"131 Chestnut St, Boston, MA 02215" -317373,iPhone,1,700,12/13/19 21:48,"639 Spruce St, Los Angeles, CA 90001" -317374,AA Batteries (4-pack),1,3.84,12/20/19 18:50,"976 Johnson St, New York City, NY 10001" -317375,Lightning Charging Cable,1,14.95,12/06/19 00:19,"324 Spruce St, San Francisco, CA 94016" -317376,ThinkPad Laptop,1,999.99,12/22/19 08:01,"305 6th St, Atlanta, GA 30301" -317377,Macbook Pro Laptop,1,1700,12/29/19 21:49,"584 West St, Los Angeles, CA 90001" -317378,Lightning Charging Cable,1,14.95,12/18/19 13:40,"694 Maple St, Los Angeles, CA 90001" -317379,27in 4K Gaming Monitor,1,389.99,12/03/19 16:47,"676 Madison St, San Francisco, CA 94016" -317380,USB-C Charging Cable,1,11.95,12/25/19 06:21,"787 Ridge St, Austin, TX 73301" -317381,Apple Airpods Headphones,1,150,12/29/19 18:42,"855 Hickory St, San Francisco, CA 94016" -317382,Wired Headphones,1,11.99,12/13/19 11:24,"837 10th St, San Francisco, CA 94016" -317383,AA Batteries (4-pack),2,3.84,12/23/19 14:51,"568 Willow St, Los Angeles, CA 90001" -317384,AA Batteries (4-pack),1,3.84,12/22/19 13:28,"391 River St, Dallas, TX 75001" -317385,AAA Batteries (4-pack),1,2.99,12/28/19 16:58,"270 1st St, Boston, MA 02215" -317386,Macbook Pro Laptop,1,1700,12/29/19 11:10,"776 5th St, Austin, TX 73301" -317387,Wired Headphones,1,11.99,12/20/19 19:40,"351 Lincoln St, Los Angeles, CA 90001" -317388,Flatscreen TV,1,300,12/30/19 12:09,"55 Meadow St, San Francisco, CA 94016" -317389,AAA Batteries (4-pack),3,2.99,12/08/19 13:08,"698 Willow St, Seattle, WA 98101" -317390,iPhone,1,700,12/20/19 18:41,"668 Spruce St, Portland, OR 97035" -317390,Wired Headphones,1,11.99,12/20/19 18:41,"668 Spruce St, Portland, OR 97035" -317391,AAA Batteries (4-pack),3,2.99,12/18/19 23:24,"149 Cedar St, Boston, MA 02215" -317392,Wired Headphones,1,11.99,12/15/19 18:49,"361 14th St, Dallas, TX 75001" -317393,27in FHD Monitor,1,149.99,12/19/19 17:28,"490 Hill St, Los Angeles, CA 90001" -317394,Bose SoundSport Headphones,1,99.99,12/27/19 10:58,"812 Cedar St, San Francisco, CA 94016" -317395,Wired Headphones,1,11.99,12/28/19 19:44,"162 West St, Los Angeles, CA 90001" -317396,USB-C Charging Cable,1,11.95,12/13/19 21:37,"950 11th St, San Francisco, CA 94016" -317397,AAA Batteries (4-pack),2,2.99,12/29/19 13:39,"245 1st St, Portland, OR 97035" -317398,AAA Batteries (4-pack),1,2.99,12/05/19 19:17,"825 Walnut St, New York City, NY 10001" -317399,20in Monitor,1,109.99,12/29/19 16:48,"215 Ridge St, Portland, OR 97035" -317400,Wired Headphones,2,11.99,12/17/19 08:05,"714 Willow St, Los Angeles, CA 90001" -317401,iPhone,1,700,12/01/19 15:19,"912 5th St, Seattle, WA 98101" -317402,34in Ultrawide Monitor,1,379.99,12/26/19 01:17,"384 Main St, Los Angeles, CA 90001" -317403,Google Phone,1,600,12/10/19 21:55,"103 5th St, Austin, TX 73301" -317404,Apple Airpods Headphones,1,150,12/26/19 07:15,"747 Spruce St, Seattle, WA 98101" -317405,USB-C Charging Cable,1,11.95,12/10/19 21:48,"304 Meadow St, Boston, MA 02215" -317406,AAA Batteries (4-pack),1,2.99,12/18/19 15:50,"522 Hickory St, Boston, MA 02215" -317407,Apple Airpods Headphones,1,150,12/11/19 13:00,"795 Park St, San Francisco, CA 94016" -317408,Bose SoundSport Headphones,1,99.99,12/24/19 19:06,"154 Highland St, Boston, MA 02215" -317409,AA Batteries (4-pack),1,3.84,12/11/19 09:19,"721 2nd St, Atlanta, GA 30301" -317410,Macbook Pro Laptop,1,1700,12/08/19 20:58,"41 Spruce St, Los Angeles, CA 90001" -317411,AA Batteries (4-pack),1,3.84,12/15/19 11:44,"764 Cherry St, Boston, MA 02215" -317412,27in FHD Monitor,1,149.99,12/08/19 18:46,"257 Meadow St, Boston, MA 02215" -317413,Flatscreen TV,1,300,12/07/19 18:00,"601 Madison St, Dallas, TX 75001" -317414,27in FHD Monitor,1,149.99,12/25/19 17:49,"233 Jefferson St, Portland, OR 97035" -317415,Wired Headphones,1,11.99,12/09/19 13:30,"817 8th St, San Francisco, CA 94016" -317416,20in Monitor,1,109.99,12/19/19 18:40,"385 Adams St, Dallas, TX 75001" -317417,27in FHD Monitor,1,149.99,12/12/19 12:11,"657 14th St, Seattle, WA 98101" -317418,USB-C Charging Cable,1,11.95,12/16/19 06:48,"974 Lincoln St, New York City, NY 10001" -317419,27in 4K Gaming Monitor,1,389.99,12/25/19 13:21,"141 Adams St, Dallas, TX 75001" -317420,Apple Airpods Headphones,1,150,12/11/19 19:57,"414 Highland St, San Francisco, CA 94016" -317421,AAA Batteries (4-pack),1,2.99,12/11/19 09:33,"28 Church St, Atlanta, GA 30301" -317422,Wired Headphones,1,11.99,12/26/19 19:23,"176 2nd St, Dallas, TX 75001" -317423,Wired Headphones,1,11.99,12/19/19 13:51,"579 Center St, Los Angeles, CA 90001" -317424,Lightning Charging Cable,1,14.95,12/10/19 11:10,"4 Ridge St, Atlanta, GA 30301" -317425,27in FHD Monitor,1,149.99,12/01/19 22:03,"498 6th St, Boston, MA 02215" -317426,Flatscreen TV,1,300,12/19/19 18:35,"949 7th St, Dallas, TX 75001" -317427,iPhone,1,700,12/12/19 21:07,"435 Willow St, San Francisco, CA 94016" -317427,Apple Airpods Headphones,1,150,12/12/19 21:07,"435 Willow St, San Francisco, CA 94016" -317428,Bose SoundSport Headphones,1,99.99,12/25/19 11:35,"435 Elm St, New York City, NY 10001" -317429,Lightning Charging Cable,1,14.95,12/25/19 03:59,"487 Jackson St, San Francisco, CA 94016" -317430,Bose SoundSport Headphones,1,99.99,12/02/19 12:00,"127 Lake St, San Francisco, CA 94016" -317431,AAA Batteries (4-pack),1,2.99,12/14/19 18:39,"785 Church St, San Francisco, CA 94016" -317432,Flatscreen TV,1,300,12/05/19 17:59,"983 Lake St, Los Angeles, CA 90001" -317433,Apple Airpods Headphones,1,150,12/25/19 17:16,"874 Main St, New York City, NY 10001" -317434,27in FHD Monitor,1,149.99,12/28/19 19:04,"424 Highland St, New York City, NY 10001" -317435,AAA Batteries (4-pack),1,2.99,12/13/19 17:38,"356 Jefferson St, San Francisco, CA 94016" -317436,Wired Headphones,1,11.99,12/05/19 23:21,"181 North St, Los Angeles, CA 90001" -317437,27in FHD Monitor,1,149.99,12/01/19 20:18,"31 Cedar St, San Francisco, CA 94016" -317438,AAA Batteries (4-pack),1,2.99,12/02/19 17:29,"598 Maple St, Los Angeles, CA 90001" -317439,Vareebadd Phone,1,400,12/30/19 17:42,"739 7th St, Boston, MA 02215" -317440,Wired Headphones,1,11.99,12/08/19 08:23,"96 Hill St, New York City, NY 10001" -317441,Vareebadd Phone,1,400,12/03/19 10:42,"513 Elm St, Boston, MA 02215" -317441,USB-C Charging Cable,1,11.95,12/03/19 10:42,"513 Elm St, Boston, MA 02215" -317441,Wired Headphones,1,11.99,12/03/19 10:42,"513 Elm St, Boston, MA 02215" -317442,USB-C Charging Cable,1,11.95,12/04/19 15:53,"419 6th St, San Francisco, CA 94016" -317443,27in 4K Gaming Monitor,1,389.99,12/16/19 17:34,"278 11th St, Atlanta, GA 30301" -317444,Lightning Charging Cable,1,14.95,12/01/19 20:53,"969 14th St, Los Angeles, CA 90001" -317445,Bose SoundSport Headphones,1,99.99,12/13/19 23:43,"171 Highland St, Dallas, TX 75001" -317446,34in Ultrawide Monitor,1,379.99,12/06/19 11:32,"773 Madison St, Dallas, TX 75001" -317447,AA Batteries (4-pack),2,3.84,12/13/19 17:59,"515 2nd St, Los Angeles, CA 90001" -317448,20in Monitor,1,109.99,12/28/19 23:56,"144 Adams St, San Francisco, CA 94016" -317449,Apple Airpods Headphones,1,150,12/20/19 06:02,"958 Jefferson St, Los Angeles, CA 90001" -317450,Lightning Charging Cable,1,14.95,12/22/19 12:59,"48 West St, San Francisco, CA 94016" -317451,Google Phone,1,600,12/14/19 13:51,"500 Lake St, New York City, NY 10001" -317452,Apple Airpods Headphones,1,150,12/11/19 08:02,"945 Center St, San Francisco, CA 94016" -317453,Lightning Charging Cable,1,14.95,12/18/19 15:04,"442 Jefferson St, Los Angeles, CA 90001" -317454,iPhone,1,700,12/28/19 05:26,"564 Dogwood St, Austin, TX 73301" -317454,Lightning Charging Cable,1,14.95,12/28/19 05:26,"564 Dogwood St, Austin, TX 73301" -317455,20in Monitor,1,109.99,12/13/19 06:26,"971 Sunset St, New York City, NY 10001" -317456,USB-C Charging Cable,1,11.95,12/10/19 15:38,"77 12th St, San Francisco, CA 94016" -317457,USB-C Charging Cable,1,11.95,12/15/19 16:44,"872 Chestnut St, Boston, MA 02215" -317458,ThinkPad Laptop,1,999.99,12/09/19 11:08,"93 Elm St, Boston, MA 02215" -317459,Bose SoundSport Headphones,1,99.99,12/26/19 22:52,"616 12th St, San Francisco, CA 94016" -317460,Flatscreen TV,1,300,12/18/19 01:14,"701 Willow St, New York City, NY 10001" -317461,USB-C Charging Cable,1,11.95,12/22/19 18:00,"631 Church St, San Francisco, CA 94016" -317462,USB-C Charging Cable,1,11.95,12/27/19 14:55,"260 River St, Dallas, TX 75001" -317463,Vareebadd Phone,1,400,12/16/19 16:38,"8 Main St, Los Angeles, CA 90001" -317464,AA Batteries (4-pack),2,3.84,12/04/19 12:30,"136 Pine St, Portland, OR 97035" -317465,iPhone,1,700,12/09/19 19:56,"709 Park St, Boston, MA 02215" -317466,Apple Airpods Headphones,1,150,12/21/19 17:35,"270 Maple St, San Francisco, CA 94016" -317467,27in FHD Monitor,1,149.99,12/26/19 22:10,"446 5th St, Boston, MA 02215" -317468,34in Ultrawide Monitor,1,379.99,12/14/19 19:15,"481 Cherry St, Dallas, TX 75001" -317469,iPhone,1,700,12/20/19 17:48,"421 Wilson St, San Francisco, CA 94016" -317470,34in Ultrawide Monitor,1,379.99,12/26/19 10:26,"894 Lake St, San Francisco, CA 94016" -317471,AA Batteries (4-pack),1,3.84,12/23/19 00:18,"998 Jefferson St, Los Angeles, CA 90001" -317472,USB-C Charging Cable,1,11.95,12/28/19 22:54,"428 13th St, Boston, MA 02215" -317473,AAA Batteries (4-pack),1,2.99,12/24/19 16:44,"870 2nd St, San Francisco, CA 94016" -317474,20in Monitor,1,109.99,12/27/19 15:29,"231 2nd St, Boston, MA 02215" -317475,Apple Airpods Headphones,1,150,12/06/19 20:38,"245 Chestnut St, Atlanta, GA 30301" -317476,Google Phone,1,600,12/30/19 17:26,"974 Park St, San Francisco, CA 94016" -317477,Wired Headphones,1,11.99,12/15/19 16:19,"268 11th St, Boston, MA 02215" -317478,Wired Headphones,2,11.99,12/23/19 18:51,"879 Walnut St, Los Angeles, CA 90001" -317479,34in Ultrawide Monitor,1,379.99,12/26/19 08:20,"66 South St, Boston, MA 02215" -317480,AAA Batteries (4-pack),1,2.99,12/09/19 19:58,"798 Hill St, New York City, NY 10001" -317481,Lightning Charging Cable,1,14.95,12/22/19 19:24,"336 West St, Los Angeles, CA 90001" -317482,Wired Headphones,1,11.99,12/02/19 23:00,"491 Washington St, New York City, NY 10001" -317483,AA Batteries (4-pack),1,3.84,12/15/19 07:47,"514 Madison St, Los Angeles, CA 90001" -317484,Macbook Pro Laptop,1,1700,12/05/19 17:58,"875 Church St, Dallas, TX 75001" -317485,AAA Batteries (4-pack),1,2.99,12/30/19 12:19,"890 13th St, San Francisco, CA 94016" -317486,LG Washing Machine,1,600.0,12/31/19 21:06,"127 14th St, Seattle, WA 98101" -317487,Lightning Charging Cable,1,14.95,12/01/19 14:49,"446 4th St, San Francisco, CA 94016" -317488,Wired Headphones,1,11.99,12/14/19 10:19,"667 9th St, New York City, NY 10001" -317489,Macbook Pro Laptop,1,1700,12/28/19 13:59,"936 Hill St, San Francisco, CA 94016" -317490,AAA Batteries (4-pack),1,2.99,12/25/19 15:39,"497 Hickory St, Dallas, TX 75001" -317491,Bose SoundSport Headphones,1,99.99,12/09/19 00:24,"20 Hill St, New York City, NY 10001" -317492,USB-C Charging Cable,1,11.95,12/18/19 12:16,"250 Lincoln St, San Francisco, CA 94016" -317493,AA Batteries (4-pack),1,3.84,12/02/19 00:13,"794 Hickory St, Atlanta, GA 30301" -317494,AA Batteries (4-pack),2,3.84,12/26/19 10:54,"441 Park St, Atlanta, GA 30301" -317495,USB-C Charging Cable,1,11.95,12/02/19 18:13,"465 Main St, Atlanta, GA 30301" -317496,Apple Airpods Headphones,1,150,12/31/19 09:48,"750 Washington St, New York City, NY 10001" -317497,AA Batteries (4-pack),1,3.84,12/20/19 18:06,"332 Elm St, San Francisco, CA 94016" -317498,Lightning Charging Cable,1,14.95,12/22/19 20:42,"803 Meadow St, New York City, NY 10001" -317499,27in FHD Monitor,1,149.99,12/21/19 12:02,"435 Wilson St, New York City, NY 10001" -317500,AAA Batteries (4-pack),2,2.99,12/31/19 00:52,"491 Wilson St, New York City, NY 10001" -317501,LG Washing Machine,1,600.0,12/28/19 18:15,"844 Church St, Austin, TX 73301" -317502,Apple Airpods Headphones,1,150,12/23/19 13:56,"271 West St, Dallas, TX 75001" -317503,Wired Headphones,1,11.99,12/22/19 18:17,"860 Spruce St, San Francisco, CA 94016" -317504,Apple Airpods Headphones,1,150,12/15/19 13:56,"19 Lake St, Austin, TX 73301" -317505,Vareebadd Phone,1,400,12/28/19 19:03,"329 Hill St, Boston, MA 02215" -317505,USB-C Charging Cable,1,11.95,12/28/19 19:03,"329 Hill St, Boston, MA 02215" -317506,Apple Airpods Headphones,1,150,12/03/19 12:40,"194 Lake St, San Francisco, CA 94016" -317507,Wired Headphones,2,11.99,12/21/19 23:08,"117 Lakeview St, Boston, MA 02215" -317508,Lightning Charging Cable,1,14.95,12/28/19 18:55,"948 Elm St, Boston, MA 02215" -317509,Lightning Charging Cable,1,14.95,12/30/19 16:06,"149 Elm St, Portland, OR 97035" -317510,AAA Batteries (4-pack),1,2.99,12/24/19 01:20,"483 Pine St, Dallas, TX 75001" -317511,USB-C Charging Cable,1,11.95,12/17/19 01:38,"127 Jackson St, Los Angeles, CA 90001" -317512,AAA Batteries (4-pack),3,2.99,12/09/19 15:50,"207 Dogwood St, New York City, NY 10001" -317513,AAA Batteries (4-pack),2,2.99,12/04/19 23:25,"28 North St, Boston, MA 02215" -317514,AA Batteries (4-pack),2,3.84,12/03/19 18:13,"91 Cedar St, New York City, NY 10001" -317515,iPhone,1,700,12/05/19 18:46,"252 Ridge St, Los Angeles, CA 90001" -317515,Wired Headphones,1,11.99,12/05/19 18:46,"252 Ridge St, Los Angeles, CA 90001" -317516,Lightning Charging Cable,1,14.95,12/23/19 19:41,"937 Cedar St, New York City, NY 10001" -317517,Flatscreen TV,1,300,12/31/19 17:49,"270 Lincoln St, Los Angeles, CA 90001" -317518,ThinkPad Laptop,1,999.99,12/16/19 11:29,"223 Elm St, Dallas, TX 75001" -317519,iPhone,1,700,12/10/19 14:08,"261 10th St, Atlanta, GA 30301" -317520,ThinkPad Laptop,1,999.99,12/19/19 13:05,"513 Lake St, San Francisco, CA 94016" -317521,Apple Airpods Headphones,1,150,12/03/19 14:43,"582 Highland St, Austin, TX 73301" -317522,27in 4K Gaming Monitor,1,389.99,12/23/19 00:34,"986 Wilson St, Los Angeles, CA 90001" -317523,Flatscreen TV,1,300,12/02/19 17:32,"354 Madison St, Atlanta, GA 30301" -317524,Wired Headphones,1,11.99,12/20/19 18:59,"67 7th St, Los Angeles, CA 90001" -317525,Apple Airpods Headphones,1,150,12/15/19 14:59,"863 12th St, Seattle, WA 98101" -317526,Macbook Pro Laptop,1,1700,12/07/19 06:47,"855 Meadow St, New York City, NY 10001" -317527,USB-C Charging Cable,1,11.95,12/16/19 17:47,"374 1st St, Austin, TX 73301" -317528,AA Batteries (4-pack),1,3.84,12/12/19 20:15,"1 Hill St, San Francisco, CA 94016" -317529,Bose SoundSport Headphones,1,99.99,12/22/19 15:11,"160 11th St, New York City, NY 10001" -317530,iPhone,1,700,12/13/19 11:57,"731 Walnut St, San Francisco, CA 94016" -317530,Wired Headphones,1,11.99,12/13/19 11:57,"731 Walnut St, San Francisco, CA 94016" -317531,Macbook Pro Laptop,1,1700,12/16/19 14:44,"918 11th St, Los Angeles, CA 90001" -317532,Apple Airpods Headphones,1,150,12/23/19 17:40,"112 12th St, Los Angeles, CA 90001" -317533,Apple Airpods Headphones,1,150,12/07/19 07:21,"653 9th St, Boston, MA 02215" -317534,Wired Headphones,1,11.99,12/08/19 18:34,"921 Meadow St, Seattle, WA 98101" -317535,USB-C Charging Cable,1,11.95,12/28/19 06:01,"866 Park St, Portland, OR 97035" -317536,USB-C Charging Cable,1,11.95,12/30/19 11:28,"366 4th St, Boston, MA 02215" -317537,Bose SoundSport Headphones,1,99.99,12/22/19 11:23,"313 2nd St, Boston, MA 02215" -317538,Lightning Charging Cable,1,14.95,12/15/19 11:02,"622 13th St, Los Angeles, CA 90001" -317539,Lightning Charging Cable,1,14.95,12/16/19 12:44,"925 Adams St, Portland, OR 97035" -317540,Lightning Charging Cable,1,14.95,12/02/19 08:26,"178 Forest St, San Francisco, CA 94016" -317541,Lightning Charging Cable,1,14.95,12/19/19 16:46,"776 Cedar St, Seattle, WA 98101" -317542,Apple Airpods Headphones,1,150,12/11/19 18:18,"76 13th St, Los Angeles, CA 90001" -317543,ThinkPad Laptop,1,999.99,12/08/19 22:29,"986 8th St, Los Angeles, CA 90001" -317544,Apple Airpods Headphones,1,150,12/30/19 13:29,"919 11th St, Atlanta, GA 30301" -,,,,, -317545,27in FHD Monitor,1,149.99,12/25/19 12:01,"511 Lakeview St, Atlanta, GA 30301" -317546,Apple Airpods Headphones,1,150,12/16/19 10:19,"618 Church St, Dallas, TX 75001" -317547,AAA Batteries (4-pack),1,2.99,12/07/19 17:08,"462 Lake St, Atlanta, GA 30301" -317548,Wired Headphones,1,11.99,12/29/19 13:30,"988 Dogwood St, Boston, MA 02215" -317549,Bose SoundSport Headphones,1,99.99,12/25/19 15:01,"716 10th St, San Francisco, CA 94016" -317550,ThinkPad Laptop,1,999.99,12/27/19 19:50,"740 5th St, New York City, NY 10001" -317551,LG Dryer,1,600.0,12/31/19 19:50,"252 Highland St, Portland, OR 97035" -317552,Lightning Charging Cable,1,14.95,12/27/19 00:44,"747 Adams St, Atlanta, GA 30301" -317553,AAA Batteries (4-pack),1,2.99,12/14/19 02:52,"285 Hickory St, New York City, NY 10001" -317554,Google Phone,1,600,12/16/19 15:15,"136 Main St, Austin, TX 73301" -317554,Bose SoundSport Headphones,1,99.99,12/16/19 15:15,"136 Main St, Austin, TX 73301" -317555,USB-C Charging Cable,1,11.95,12/29/19 12:26,"914 8th St, Los Angeles, CA 90001" -317556,Wired Headphones,1,11.99,12/19/19 20:30,"900 Wilson St, San Francisco, CA 94016" -317557,AA Batteries (4-pack),1,3.84,12/30/19 10:23,"99 Madison St, New York City, NY 10001" -317558,AAA Batteries (4-pack),1,2.99,12/22/19 15:50,"882 Park St, Los Angeles, CA 90001" -317559,27in FHD Monitor,1,149.99,12/20/19 09:16,"301 9th St, New York City, NY 10001" -317560,Apple Airpods Headphones,1,150,12/29/19 10:28,"1 Willow St, Dallas, TX 75001" -317561,AAA Batteries (4-pack),1,2.99,12/02/19 16:26,"686 10th St, Boston, MA 02215" -317562,27in FHD Monitor,1,149.99,12/16/19 10:21,"458 Dogwood St, Atlanta, GA 30301" -317563,AAA Batteries (4-pack),1,2.99,12/31/19 13:39,"24 Washington St, San Francisco, CA 94016" -317564,20in Monitor,1,109.99,12/13/19 19:05,"755 Forest St, Portland, OR 97035" -317565,27in FHD Monitor,1,149.99,12/15/19 22:31,"616 Chestnut St, Los Angeles, CA 90001" -317566,Lightning Charging Cable,1,14.95,12/15/19 14:36,"582 10th St, San Francisco, CA 94016" -317567,Lightning Charging Cable,1,14.95,12/01/19 08:34,"423 Maple St, Seattle, WA 98101" -317568,20in Monitor,1,109.99,12/24/19 19:53,"211 Johnson St, Boston, MA 02215" -317569,Flatscreen TV,1,300,12/17/19 10:34,"731 North St, Seattle, WA 98101" -317570,Flatscreen TV,1,300,12/15/19 10:21,"730 South St, San Francisco, CA 94016" -317571,AA Batteries (4-pack),1,3.84,12/20/19 00:47,"110 Pine St, Boston, MA 02215" -317572,Apple Airpods Headphones,1,150,12/27/19 07:53,"950 7th St, New York City, NY 10001" -317573,AAA Batteries (4-pack),1,2.99,12/06/19 16:17,"542 Johnson St, Los Angeles, CA 90001" -317574,Apple Airpods Headphones,1,150,12/26/19 05:31,"138 Hickory St, New York City, NY 10001" -317575,USB-C Charging Cable,1,11.95,12/21/19 15:29,"652 Cherry St, Los Angeles, CA 90001" -317576,20in Monitor,1,109.99,12/21/19 21:45,"640 Lake St, Los Angeles, CA 90001" -317577,AAA Batteries (4-pack),1,2.99,12/14/19 10:22,"56 Lakeview St, San Francisco, CA 94016" -317578,Bose SoundSport Headphones,1,99.99,12/07/19 10:25,"669 13th St, Austin, TX 73301" -317579,Vareebadd Phone,1,400,12/01/19 21:23,"751 Highland St, Dallas, TX 75001" -317580,Macbook Pro Laptop,1,1700,12/04/19 14:21,"675 Lincoln St, New York City, NY 10001" -317581,34in Ultrawide Monitor,1,379.99,12/23/19 19:59,"604 Cedar St, New York City, NY 10001" -,,,,, -317582,Bose SoundSport Headphones,1,99.99,12/21/19 12:02,"728 Willow St, Seattle, WA 98101" -317583,Wired Headphones,1,11.99,12/16/19 00:04,"557 Spruce St, Portland, OR 97035" -317584,USB-C Charging Cable,1,11.95,12/19/19 09:14,"887 Washington St, Los Angeles, CA 90001" -317585,Lightning Charging Cable,1,14.95,12/29/19 14:46,"110 10th St, Los Angeles, CA 90001" -317586,AA Batteries (4-pack),1,3.84,12/07/19 19:10,"121 Cedar St, Dallas, TX 75001" -317587,Apple Airpods Headphones,1,150,12/10/19 22:15,"277 Elm St, New York City, NY 10001" -317588,Bose SoundSport Headphones,1,99.99,12/11/19 15:48,"316 13th St, Portland, OR 97035" -317589,AAA Batteries (4-pack),1,2.99,12/18/19 18:44,"773 Highland St, San Francisco, CA 94016" -317590,27in 4K Gaming Monitor,1,389.99,12/10/19 21:20,"583 14th St, San Francisco, CA 94016" -317591,Apple Airpods Headphones,1,150,12/14/19 22:22,"403 Hill St, Atlanta, GA 30301" -317592,USB-C Charging Cable,1,11.95,12/15/19 21:14,"570 Maple St, Austin, TX 73301" -317593,Wired Headphones,1,11.99,12/25/19 17:25,"673 8th St, Atlanta, GA 30301" -317594,USB-C Charging Cable,1,11.95,12/02/19 19:50,"662 4th St, Seattle, WA 98101" -317595,AA Batteries (4-pack),1,3.84,12/03/19 21:31,"875 Cherry St, Boston, MA 02215" -317596,Apple Airpods Headphones,1,150,12/20/19 13:41,"220 4th St, New York City, NY 10001" -317597,27in FHD Monitor,1,149.99,12/17/19 18:55,"180 Elm St, Boston, MA 02215" -,,,,, -317598,Lightning Charging Cable,2,14.95,12/17/19 23:14,"963 5th St, Los Angeles, CA 90001" -317599,Bose SoundSport Headphones,1,99.99,12/04/19 09:56,"162 Cedar St, Atlanta, GA 30301" -317600,Google Phone,1,600,12/11/19 10:34,"991 7th St, San Francisco, CA 94016" -317601,Wired Headphones,1,11.99,12/04/19 22:13,"855 Madison St, Portland, ME 04101" -317602,AAA Batteries (4-pack),1,2.99,12/14/19 09:09,"676 7th St, Dallas, TX 75001" -317603,AAA Batteries (4-pack),1,2.99,12/28/19 13:36,"258 10th St, New York City, NY 10001" -317604,Flatscreen TV,1,300,12/18/19 08:41,"262 Highland St, Los Angeles, CA 90001" -317605,AAA Batteries (4-pack),2,2.99,12/21/19 17:08,"40 4th St, San Francisco, CA 94016" -317606,Vareebadd Phone,1,400,12/01/19 07:32,"909 Walnut St, Atlanta, GA 30301" -317607,Bose SoundSport Headphones,1,99.99,12/17/19 18:38,"391 Lakeview St, Boston, MA 02215" -317608,27in FHD Monitor,1,149.99,12/19/19 10:30,"210 9th St, Los Angeles, CA 90001" -317609,Bose SoundSport Headphones,1,99.99,12/03/19 01:24,"551 Madison St, Seattle, WA 98101" -317610,Lightning Charging Cable,1,14.95,12/03/19 17:32,"488 6th St, Seattle, WA 98101" -317611,USB-C Charging Cable,1,11.95,12/05/19 11:32,"696 9th St, San Francisco, CA 94016" -317612,Lightning Charging Cable,1,14.95,12/10/19 12:40,"734 Main St, Los Angeles, CA 90001" -317613,Lightning Charging Cable,1,14.95,12/28/19 06:57,"308 Park St, Los Angeles, CA 90001" -317614,Bose SoundSport Headphones,1,99.99,12/15/19 15:26,"483 Johnson St, Los Angeles, CA 90001" -317615,Bose SoundSport Headphones,1,99.99,12/05/19 09:15,"823 Lincoln St, San Francisco, CA 94016" -317616,Bose SoundSport Headphones,1,99.99,12/11/19 20:42,"13 5th St, San Francisco, CA 94016" -317617,Lightning Charging Cable,1,14.95,12/23/19 09:39,"574 13th St, San Francisco, CA 94016" -317618,Apple Airpods Headphones,1,150,12/13/19 17:33,"8 Washington St, Los Angeles, CA 90001" -317619,USB-C Charging Cable,1,11.95,12/04/19 10:52,"150 Wilson St, San Francisco, CA 94016" -317620,Wired Headphones,1,11.99,12/13/19 13:47,"721 Jackson St, Atlanta, GA 30301" -317621,Lightning Charging Cable,1,14.95,12/20/19 11:30,"506 6th St, Boston, MA 02215" -317622,27in FHD Monitor,1,149.99,12/22/19 22:26,"183 13th St, San Francisco, CA 94016" -317623,27in 4K Gaming Monitor,1,389.99,12/17/19 12:55,"873 Lincoln St, New York City, NY 10001" -317624,Flatscreen TV,1,300,12/24/19 09:55,"275 Dogwood St, Austin, TX 73301" -317625,iPhone,1,700,12/13/19 10:00,"488 Madison St, Seattle, WA 98101" -317626,USB-C Charging Cable,1,11.95,12/27/19 15:24,"302 8th St, San Francisco, CA 94016" -317627,AAA Batteries (4-pack),1,2.99,12/22/19 09:37,"202 Wilson St, Boston, MA 02215" -317628,AA Batteries (4-pack),1,3.84,12/27/19 19:36,"904 West St, Los Angeles, CA 90001" -317629,AAA Batteries (4-pack),1,2.99,12/18/19 15:39,"969 8th St, Los Angeles, CA 90001" -317630,USB-C Charging Cable,1,11.95,12/22/19 12:47,"117 Walnut St, Seattle, WA 98101" -317631,USB-C Charging Cable,1,11.95,12/03/19 13:42,"690 Chestnut St, San Francisco, CA 94016" -317632,USB-C Charging Cable,1,11.95,12/01/19 14:12,"855 Jefferson St, San Francisco, CA 94016" -317633,AA Batteries (4-pack),1,3.84,12/11/19 22:37,"922 Madison St, Seattle, WA 98101" -317634,Bose SoundSport Headphones,1,99.99,12/26/19 22:08,"218 Jefferson St, Seattle, WA 98101" -317635,AA Batteries (4-pack),1,3.84,12/10/19 16:02,"864 Main St, San Francisco, CA 94016" -317636,Apple Airpods Headphones,1,150,12/22/19 11:40,"190 6th St, San Francisco, CA 94016" -317637,Vareebadd Phone,1,400,12/30/19 23:50,"777 6th St, Atlanta, GA 30301" -317638,Wired Headphones,1,11.99,12/18/19 15:48,"752 Highland St, Los Angeles, CA 90001" -317639,Wired Headphones,1,11.99,12/26/19 11:32,"290 8th St, Austin, TX 73301" -317640,USB-C Charging Cable,1,11.95,12/01/19 13:37,"462 Willow St, San Francisco, CA 94016" -317641,Bose SoundSport Headphones,1,99.99,12/31/19 15:48,"131 5th St, Austin, TX 73301" -317642,Wired Headphones,1,11.99,12/24/19 00:19,"628 7th St, San Francisco, CA 94016" -317643,Wired Headphones,1,11.99,12/19/19 04:48,"351 Pine St, Los Angeles, CA 90001" -317644,AA Batteries (4-pack),1,3.84,12/28/19 07:15,"467 Lincoln St, Boston, MA 02215" -317645,Bose SoundSport Headphones,1,99.99,12/13/19 15:57,"740 Walnut St, New York City, NY 10001" -317646,AA Batteries (4-pack),1,3.84,12/13/19 10:56,"94 7th St, San Francisco, CA 94016" -317647,27in FHD Monitor,1,149.99,12/30/19 13:11,"448 Cherry St, Dallas, TX 75001" -317648,27in FHD Monitor,1,149.99,12/01/19 20:28,"472 Lakeview St, San Francisco, CA 94016" -317649,34in Ultrawide Monitor,1,379.99,12/03/19 11:33,"326 Ridge St, Los Angeles, CA 90001" -317650,Wired Headphones,1,11.99,12/18/19 21:20,"791 2nd St, Portland, OR 97035" -317651,ThinkPad Laptop,1,999.99,12/15/19 01:07,"41 Washington St, Atlanta, GA 30301" -317652,Vareebadd Phone,1,400,12/20/19 08:19,"196 Forest St, New York City, NY 10001" -317653,Apple Airpods Headphones,1,150,12/19/19 20:53,"129 Spruce St, New York City, NY 10001" -317654,ThinkPad Laptop,1,999.99,12/17/19 00:18,"404 Walnut St, New York City, NY 10001" -317655,AA Batteries (4-pack),1,3.84,12/30/19 13:10,"468 Dogwood St, San Francisco, CA 94016" -317656,Bose SoundSport Headphones,1,99.99,12/18/19 20:34,"449 Madison St, New York City, NY 10001" -317657,27in 4K Gaming Monitor,1,389.99,12/08/19 08:15,"363 Center St, Seattle, WA 98101" -317658,Lightning Charging Cable,1,14.95,12/26/19 10:16,"678 14th St, Los Angeles, CA 90001" -317659,USB-C Charging Cable,1,11.95,12/21/19 21:10,"808 Park St, Los Angeles, CA 90001" -317660,Apple Airpods Headphones,1,150,12/18/19 23:16,"447 7th St, New York City, NY 10001" -317661,34in Ultrawide Monitor,1,379.99,12/31/19 16:44,"403 Chestnut St, Boston, MA 02215" -317662,USB-C Charging Cable,1,11.95,12/05/19 19:56,"302 12th St, Austin, TX 73301" -317663,USB-C Charging Cable,1,11.95,12/28/19 10:37,"485 South St, Los Angeles, CA 90001" -317664,Apple Airpods Headphones,1,150,12/22/19 18:45,"535 Walnut St, San Francisco, CA 94016" -317665,USB-C Charging Cable,1,11.95,12/05/19 14:17,"826 Maple St, San Francisco, CA 94016" -317666,Lightning Charging Cable,1,14.95,12/21/19 15:04,"590 South St, Portland, OR 97035" -317667,Vareebadd Phone,1,400,12/13/19 22:45,"274 Spruce St, New York City, NY 10001" -317667,Wired Headphones,1,11.99,12/13/19 22:45,"274 Spruce St, New York City, NY 10001" -317668,ThinkPad Laptop,1,999.99,12/19/19 20:40,"302 South St, Seattle, WA 98101" -317669,USB-C Charging Cable,1,11.95,12/23/19 14:43,"169 Washington St, San Francisco, CA 94016" -317670,USB-C Charging Cable,2,11.95,12/22/19 10:35,"130 Jefferson St, Dallas, TX 75001" -317671,USB-C Charging Cable,1,11.95,12/31/19 17:16,"14 Wilson St, Seattle, WA 98101" -317672,AA Batteries (4-pack),1,3.84,12/25/19 16:57,"954 Lincoln St, San Francisco, CA 94016" -317673,USB-C Charging Cable,2,11.95,12/13/19 18:48,"12 Jefferson St, Atlanta, GA 30301" -317674,AAA Batteries (4-pack),1,2.99,12/12/19 11:34,"91 Adams St, Portland, OR 97035" -317675,Apple Airpods Headphones,1,150,12/11/19 20:22,"837 West St, San Francisco, CA 94016" -317676,Wired Headphones,1,11.99,12/30/19 10:37,"622 Hill St, Portland, OR 97035" -317677,AAA Batteries (4-pack),1,2.99,12/22/19 07:46,"337 Lakeview St, Los Angeles, CA 90001" -317678,Google Phone,1,600,12/01/19 14:32,"494 Lakeview St, New York City, NY 10001" -317678,USB-C Charging Cable,1,11.95,12/01/19 14:32,"494 Lakeview St, New York City, NY 10001" -317679,iPhone,1,700,12/23/19 11:21,"676 Cedar St, Dallas, TX 75001" -317679,Wired Headphones,1,11.99,12/23/19 11:21,"676 Cedar St, Dallas, TX 75001" -317680,Bose SoundSport Headphones,1,99.99,12/07/19 15:25,"809 5th St, Los Angeles, CA 90001" -317681,Bose SoundSport Headphones,1,99.99,12/13/19 10:14,"204 Main St, Portland, OR 97035" -317682,AA Batteries (4-pack),1,3.84,12/14/19 22:02,"968 Church St, Los Angeles, CA 90001" -317683,USB-C Charging Cable,1,11.95,12/26/19 17:45,"207 Madison St, New York City, NY 10001" -317684,USB-C Charging Cable,1,11.95,12/18/19 06:25,"713 Adams St, San Francisco, CA 94016" -317685,Bose SoundSport Headphones,1,99.99,12/20/19 11:08,"390 Ridge St, Austin, TX 73301" -317686,AAA Batteries (4-pack),1,2.99,12/29/19 20:20,"115 7th St, Austin, TX 73301" -317687,27in FHD Monitor,1,149.99,12/25/19 22:04,"285 Spruce St, New York City, NY 10001" -317688,27in FHD Monitor,1,149.99,12/26/19 02:55,"918 Meadow St, New York City, NY 10001" -317689,Vareebadd Phone,1,400,12/20/19 04:57,"564 Madison St, New York City, NY 10001" -317690,Lightning Charging Cable,1,14.95,12/19/19 16:13,"349 West St, Los Angeles, CA 90001" -317691,27in 4K Gaming Monitor,1,389.99,12/25/19 20:34,"592 River St, Los Angeles, CA 90001" -317692,AAA Batteries (4-pack),2,2.99,12/29/19 09:34,"814 Cherry St, Seattle, WA 98101" -317693,Flatscreen TV,1,300,12/29/19 17:50,"243 Lincoln St, Boston, MA 02215" -317694,USB-C Charging Cable,1,11.95,12/29/19 18:42,"751 Adams St, Seattle, WA 98101" -317694,AAA Batteries (4-pack),1,2.99,12/29/19 18:42,"751 Adams St, Seattle, WA 98101" -317695,Apple Airpods Headphones,1,150,12/29/19 16:30,"283 Johnson St, San Francisco, CA 94016" -317696,Bose SoundSport Headphones,1,99.99,12/20/19 18:57,"931 6th St, Seattle, WA 98101" -317697,Apple Airpods Headphones,1,150,12/18/19 18:57,"238 13th St, Los Angeles, CA 90001" -317698,Lightning Charging Cable,1,14.95,12/29/19 22:50,"563 6th St, Los Angeles, CA 90001" -317699,AAA Batteries (4-pack),1,2.99,12/26/19 10:32,"515 South St, San Francisco, CA 94016" -317700,Wired Headphones,1,11.99,12/24/19 13:55,"821 Cherry St, Dallas, TX 75001" -317701,iPhone,1,700,12/16/19 19:07,"428 North St, Austin, TX 73301" -317702,AAA Batteries (4-pack),1,2.99,12/25/19 20:13,"225 South St, Boston, MA 02215" -317703,AA Batteries (4-pack),2,3.84,12/26/19 19:10,"724 Hickory St, Boston, MA 02215" -317704,USB-C Charging Cable,1,11.95,12/18/19 17:18,"500 4th St, Los Angeles, CA 90001" -317705,27in FHD Monitor,1,149.99,12/10/19 09:17,"216 Elm St, New York City, NY 10001" -317705,Apple Airpods Headphones,1,150,12/10/19 09:17,"216 Elm St, New York City, NY 10001" -317706,Flatscreen TV,1,300,12/17/19 19:40,"301 Chestnut St, Los Angeles, CA 90001" -317707,Wired Headphones,1,11.99,12/14/19 20:19,"473 14th St, San Francisco, CA 94016" -317708,Flatscreen TV,1,300,12/31/19 21:31,"762 Jefferson St, Austin, TX 73301" -317709,iPhone,1,700,12/18/19 16:06,"642 13th St, Seattle, WA 98101" -317710,Bose SoundSport Headphones,1,99.99,12/21/19 20:07,"395 12th St, New York City, NY 10001" -317711,34in Ultrawide Monitor,1,379.99,12/12/19 17:49,"151 South St, Los Angeles, CA 90001" -317712,Apple Airpods Headphones,1,150,12/29/19 19:07,"301 Madison St, Atlanta, GA 30301" -317713,Lightning Charging Cable,1,14.95,12/17/19 11:20,"763 Jefferson St, Austin, TX 73301" -317714,Lightning Charging Cable,1,14.95,12/17/19 18:06,"173 Cherry St, Dallas, TX 75001" -317715,Vareebadd Phone,1,400,12/13/19 16:20,"270 Lake St, Austin, TX 73301" -317716,Google Phone,1,600,12/02/19 19:28,"80 Lake St, San Francisco, CA 94016" -317716,Bose SoundSport Headphones,1,99.99,12/02/19 19:28,"80 Lake St, San Francisco, CA 94016" -317717,AA Batteries (4-pack),1,3.84,12/20/19 19:42,"596 Hill St, Atlanta, GA 30301" -317718,AAA Batteries (4-pack),1,2.99,12/28/19 18:39,"983 1st St, New York City, NY 10001" -317719,AA Batteries (4-pack),1,3.84,12/23/19 22:41,"637 Center St, San Francisco, CA 94016" -317720,iPhone,1,700,12/17/19 08:04,"251 South St, Seattle, WA 98101" -317721,USB-C Charging Cable,1,11.95,12/11/19 08:32,"395 Lakeview St, Dallas, TX 75001" -317722,Lightning Charging Cable,1,14.95,12/22/19 11:11,"833 7th St, Austin, TX 73301" -317723,AA Batteries (4-pack),1,3.84,12/28/19 09:35,"150 14th St, Austin, TX 73301" -317724,Lightning Charging Cable,1,14.95,12/22/19 09:30,"508 Elm St, San Francisco, CA 94016" -317725,Google Phone,1,600,12/28/19 21:13,"228 Johnson St, Seattle, WA 98101" -317726,Apple Airpods Headphones,1,150,12/05/19 08:45,"986 5th St, Los Angeles, CA 90001" -317727,USB-C Charging Cable,1,11.95,12/03/19 12:53,"533 8th St, Atlanta, GA 30301" -317728,AAA Batteries (4-pack),1,2.99,12/13/19 21:29,"467 Madison St, Los Angeles, CA 90001" -317729,AAA Batteries (4-pack),1,2.99,12/09/19 08:27,"374 Dogwood St, New York City, NY 10001" -317730,AA Batteries (4-pack),2,3.84,12/28/19 17:42,"830 Church St, Seattle, WA 98101" -317731,Lightning Charging Cable,1,14.95,12/02/19 21:26,"971 Washington St, Seattle, WA 98101" -317732,Lightning Charging Cable,1,14.95,12/12/19 15:20,"712 Hickory St, Atlanta, GA 30301" -317733,Flatscreen TV,1,300,12/11/19 14:39,"7 Walnut St, Los Angeles, CA 90001" -317734,Apple Airpods Headphones,1,150,12/22/19 10:13,"883 Jackson St, New York City, NY 10001" -317735,Wired Headphones,1,11.99,12/13/19 05:22,"823 Cherry St, Boston, MA 02215" -317736,USB-C Charging Cable,1,11.95,12/07/19 15:15,"427 14th St, Boston, MA 02215" -317737,20in Monitor,1,109.99,12/30/19 16:18,"488 13th St, Portland, OR 97035" -317738,27in FHD Monitor,1,149.99,12/11/19 20:16,"877 Sunset St, Atlanta, GA 30301" -317739,AAA Batteries (4-pack),1,2.99,12/27/19 11:45,"966 Park St, Boston, MA 02215" -317740,USB-C Charging Cable,1,11.95,12/10/19 20:17,"292 Elm St, Portland, ME 04101" -317741,Flatscreen TV,1,300,12/20/19 22:39,"19 Wilson St, San Francisco, CA 94016" -317742,Lightning Charging Cable,1,14.95,12/14/19 17:43,"912 Ridge St, Dallas, TX 75001" -317743,USB-C Charging Cable,1,11.95,12/25/19 10:57,"270 Center St, New York City, NY 10001" -317744,AAA Batteries (4-pack),2,2.99,12/11/19 18:39,"111 5th St, New York City, NY 10001" -317745,ThinkPad Laptop,1,999.99,12/01/19 11:28,"747 Jefferson St, Seattle, WA 98101" -317746,iPhone,1,700,12/28/19 13:27,"522 12th St, Los Angeles, CA 90001" -317746,Apple Airpods Headphones,1,150,12/28/19 13:27,"522 12th St, Los Angeles, CA 90001" -317747,Apple Airpods Headphones,1,150,12/19/19 16:49,"126 5th St, San Francisco, CA 94016" -317748,USB-C Charging Cable,1,11.95,12/12/19 15:01,"773 13th St, Los Angeles, CA 90001" -317749,Macbook Pro Laptop,1,1700,12/16/19 08:32,"320 North St, Seattle, WA 98101" -317750,Lightning Charging Cable,1,14.95,12/28/19 14:39,"423 Forest St, New York City, NY 10001" -317751,Wired Headphones,1,11.99,12/11/19 15:50,"157 Dogwood St, San Francisco, CA 94016" -317752,AA Batteries (4-pack),1,3.84,12/19/19 18:14,"902 Cherry St, Austin, TX 73301" -317753,AA Batteries (4-pack),1,3.84,12/20/19 10:04,"477 North St, New York City, NY 10001" -317754,Bose SoundSport Headphones,1,99.99,12/25/19 10:14,"537 Park St, New York City, NY 10001" -317755,Wired Headphones,1,11.99,12/18/19 18:16,"768 Cedar St, Los Angeles, CA 90001" -317756,Lightning Charging Cable,1,14.95,12/08/19 14:55,"283 Adams St, Austin, TX 73301" -317757,iPhone,1,700,12/28/19 13:32,"163 Chestnut St, San Francisco, CA 94016" -317757,Wired Headphones,1,11.99,12/28/19 13:32,"163 Chestnut St, San Francisco, CA 94016" -317758,34in Ultrawide Monitor,1,379.99,12/24/19 14:47,"977 12th St, Atlanta, GA 30301" -317759,AAA Batteries (4-pack),2,2.99,12/31/19 22:40,"412 Ridge St, Los Angeles, CA 90001" -317760,AA Batteries (4-pack),1,3.84,12/16/19 13:33,"516 Meadow St, Los Angeles, CA 90001" -317761,20in Monitor,1,109.99,12/18/19 14:13,"341 Hill St, San Francisco, CA 94016" -317762,20in Monitor,1,109.99,12/15/19 10:05,"80 Park St, San Francisco, CA 94016" -317763,Macbook Pro Laptop,1,1700,12/05/19 17:20,"264 Chestnut St, New York City, NY 10001" -317764,AA Batteries (4-pack),2,3.84,12/19/19 22:10,"826 Church St, New York City, NY 10001" -317765,Bose SoundSport Headphones,1,99.99,12/19/19 22:55,"812 Pine St, Dallas, TX 75001" -317766,AA Batteries (4-pack),1,3.84,12/16/19 18:31,"974 12th St, Los Angeles, CA 90001" -317767,Apple Airpods Headphones,1,150,12/28/19 21:16,"886 2nd St, San Francisco, CA 94016" -317768,Lightning Charging Cable,1,14.95,12/17/19 12:18,"989 Park St, Seattle, WA 98101" -317769,iPhone,1,700,12/18/19 12:05,"721 Hickory St, Seattle, WA 98101" -317770,Apple Airpods Headphones,1,150,12/29/19 15:55,"429 Jackson St, Los Angeles, CA 90001" -317771,Bose SoundSport Headphones,1,99.99,12/14/19 10:13,"174 Wilson St, Dallas, TX 75001" -317772,Bose SoundSport Headphones,1,99.99,12/24/19 01:10,"316 4th St, Portland, OR 97035" -317773,Lightning Charging Cable,3,14.95,12/26/19 21:11,"270 Johnson St, Dallas, TX 75001" -317774,27in 4K Gaming Monitor,1,389.99,12/07/19 15:55,"47 12th St, Boston, MA 02215" -317775,AA Batteries (4-pack),1,3.84,12/17/19 22:18,"465 Spruce St, San Francisco, CA 94016" -317776,Bose SoundSport Headphones,1,99.99,12/03/19 19:30,"118 Highland St, Los Angeles, CA 90001" -317777,27in 4K Gaming Monitor,1,389.99,12/02/19 10:55,"743 5th St, Dallas, TX 75001" -317778,AA Batteries (4-pack),1,3.84,12/01/19 08:32,"685 River St, Los Angeles, CA 90001" -317779,Flatscreen TV,1,300,12/11/19 22:35,"454 Jefferson St, Seattle, WA 98101" -317780,AAA Batteries (4-pack),5,2.99,12/25/19 21:28,"205 Willow St, Portland, OR 97035" -317781,AAA Batteries (4-pack),1,2.99,12/15/19 15:43,"745 Jackson St, Seattle, WA 98101" -317782,USB-C Charging Cable,1,11.95,12/26/19 09:42,"454 Church St, Los Angeles, CA 90001" -317783,Wired Headphones,1,11.99,12/06/19 19:23,"222 8th St, San Francisco, CA 94016" -317784,AAA Batteries (4-pack),1,2.99,12/23/19 19:05,"168 Forest St, New York City, NY 10001" -317785,Bose SoundSport Headphones,1,99.99,12/27/19 20:21,"133 Willow St, Dallas, TX 75001" -317786,AAA Batteries (4-pack),3,2.99,12/28/19 20:42,"128 Elm St, New York City, NY 10001" -317787,Wired Headphones,1,11.99,12/07/19 16:09,"113 Jackson St, San Francisco, CA 94016" -317788,Lightning Charging Cable,1,14.95,12/30/19 09:12,"152 River St, San Francisco, CA 94016" -317789,iPhone,1,700,12/22/19 12:33,"343 5th St, New York City, NY 10001" -317789,Lightning Charging Cable,1,14.95,12/22/19 12:33,"343 5th St, New York City, NY 10001" -317790,Apple Airpods Headphones,1,150,12/26/19 15:58,"385 Pine St, Boston, MA 02215" -317791,34in Ultrawide Monitor,1,379.99,12/06/19 22:51,"428 Chestnut St, San Francisco, CA 94016" -317792,ThinkPad Laptop,1,999.99,12/11/19 23:56,"532 13th St, San Francisco, CA 94016" -317793,27in FHD Monitor,1,149.99,12/09/19 18:13,"357 11th St, Los Angeles, CA 90001" -317794,Bose SoundSport Headphones,1,99.99,12/20/19 20:04,"514 8th St, San Francisco, CA 94016" -317795,Flatscreen TV,1,300,12/14/19 11:17,"537 Park St, San Francisco, CA 94016" -317796,AAA Batteries (4-pack),1,2.99,12/02/19 17:16,"482 Lake St, San Francisco, CA 94016" -317797,Flatscreen TV,1,300,12/21/19 10:11,"444 River St, San Francisco, CA 94016" -317798,Lightning Charging Cable,1,14.95,12/21/19 12:54,"63 Cedar St, Dallas, TX 75001" -317799,Vareebadd Phone,1,400,12/18/19 09:33,"282 Forest St, Seattle, WA 98101" -317800,Wired Headphones,1,11.99,12/27/19 07:58,"286 Chestnut St, San Francisco, CA 94016" -317801,Apple Airpods Headphones,1,150,12/21/19 19:39,"133 7th St, Los Angeles, CA 90001" -317802,USB-C Charging Cable,1,11.95,12/26/19 09:40,"383 1st St, San Francisco, CA 94016" -317803,Bose SoundSport Headphones,1,99.99,12/16/19 14:31,"640 Highland St, San Francisco, CA 94016" -317804,Bose SoundSport Headphones,1,99.99,12/18/19 15:43,"136 1st St, Atlanta, GA 30301" -317805,27in 4K Gaming Monitor,1,389.99,12/25/19 20:31,"95 Maple St, New York City, NY 10001" -317806,Bose SoundSport Headphones,1,99.99,12/14/19 19:30,"447 Lincoln St, Los Angeles, CA 90001" -317807,AAA Batteries (4-pack),1,2.99,12/21/19 12:34,"624 West St, Portland, OR 97035" -317808,AAA Batteries (4-pack),1,2.99,12/28/19 12:12,"296 Hickory St, New York City, NY 10001" -317809,AA Batteries (4-pack),3,3.84,12/13/19 20:35,"416 Willow St, Dallas, TX 75001" -317810,AA Batteries (4-pack),2,3.84,12/07/19 19:56,"180 Washington St, Portland, OR 97035" -317811,Lightning Charging Cable,1,14.95,12/02/19 11:29,"649 Dogwood St, Atlanta, GA 30301" -317812,27in FHD Monitor,1,149.99,12/29/19 18:42,"329 River St, San Francisco, CA 94016" -317813,AAA Batteries (4-pack),2,2.99,12/07/19 15:15,"259 Highland St, New York City, NY 10001" -317814,USB-C Charging Cable,2,11.95,12/26/19 21:57,"748 Dogwood St, Dallas, TX 75001" -317814,27in 4K Gaming Monitor,1,389.99,12/26/19 21:57,"748 Dogwood St, Dallas, TX 75001" -317815,34in Ultrawide Monitor,1,379.99,12/04/19 10:15,"490 Park St, Atlanta, GA 30301" -317816,Flatscreen TV,1,300,12/06/19 15:30,"132 Church St, New York City, NY 10001" -317817,Apple Airpods Headphones,1,150,12/24/19 19:14,"10 7th St, Portland, OR 97035" -317818,AAA Batteries (4-pack),2,2.99,12/13/19 08:27,"75 Hickory St, San Francisco, CA 94016" -317819,Lightning Charging Cable,1,14.95,12/09/19 13:32,"166 West St, Los Angeles, CA 90001" -317820,34in Ultrawide Monitor,1,379.99,12/30/19 17:25,"120 14th St, Los Angeles, CA 90001" -317821,Lightning Charging Cable,1,14.95,12/19/19 17:54,"940 Lake St, Austin, TX 73301" -317822,USB-C Charging Cable,2,11.95,12/29/19 10:33,"710 Jackson St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -317823,Wired Headphones,1,11.99,12/18/19 15:49,"817 Maple St, Dallas, TX 75001" -317824,20in Monitor,1,109.99,12/08/19 14:58,"43 Church St, San Francisco, CA 94016" -317825,Wired Headphones,1,11.99,12/27/19 17:55,"866 Jefferson St, Boston, MA 02215" -317826,27in 4K Gaming Monitor,1,389.99,12/11/19 13:52,"591 10th St, Los Angeles, CA 90001" -317827,Bose SoundSport Headphones,1,99.99,12/04/19 20:10,"949 Highland St, Dallas, TX 75001" -317828,Google Phone,1,600,12/14/19 15:43,"867 Maple St, San Francisco, CA 94016" -317829,AAA Batteries (4-pack),2,2.99,12/08/19 17:57,"207 7th St, Austin, TX 73301" -317830,ThinkPad Laptop,1,999.99,12/03/19 16:52,"198 14th St, Portland, OR 97035" -317831,Bose SoundSport Headphones,1,99.99,12/15/19 15:34,"517 Cherry St, Atlanta, GA 30301" -317832,27in 4K Gaming Monitor,1,389.99,12/31/19 16:01,"63 Hickory St, Los Angeles, CA 90001" -317833,iPhone,1,700,12/22/19 22:41,"866 Center St, Los Angeles, CA 90001" -317834,Lightning Charging Cable,1,14.95,12/09/19 16:04,"393 Main St, New York City, NY 10001" -317835,Lightning Charging Cable,1,14.95,12/17/19 20:38,"876 Willow St, San Francisco, CA 94016" -317836,AAA Batteries (4-pack),2,2.99,12/27/19 11:35,"372 Maple St, Boston, MA 02215" -317837,Wired Headphones,1,11.99,12/23/19 16:41,"217 North St, Dallas, TX 75001" -317838,AAA Batteries (4-pack),1,2.99,12/03/19 06:59,"853 1st St, San Francisco, CA 94016" -317839,Lightning Charging Cable,1,14.95,12/05/19 08:25,"162 Hill St, Boston, MA 02215" -317840,Wired Headphones,1,11.99,12/06/19 17:36,"618 Ridge St, Los Angeles, CA 90001" -317841,AAA Batteries (4-pack),1,2.99,12/29/19 18:29,"466 8th St, San Francisco, CA 94016" -317842,Google Phone,1,600,12/08/19 08:19,"348 Main St, Seattle, WA 98101" -317843,Apple Airpods Headphones,1,150,12/19/19 08:22,"735 Center St, New York City, NY 10001" -317844,USB-C Charging Cable,1,11.95,12/09/19 19:34,"760 1st St, Los Angeles, CA 90001" -317845,Wired Headphones,1,11.99,12/03/19 20:47,"706 Jefferson St, New York City, NY 10001" -317846,AA Batteries (4-pack),1,3.84,12/26/19 18:57,"178 West St, Los Angeles, CA 90001" -317847,20in Monitor,1,109.99,12/07/19 17:08,"995 Lake St, Boston, MA 02215" -317848,AAA Batteries (4-pack),1,2.99,12/05/19 10:13,"920 West St, New York City, NY 10001" -317849,Lightning Charging Cable,1,14.95,12/22/19 21:11,"573 Jefferson St, San Francisco, CA 94016" -317850,USB-C Charging Cable,1,11.95,12/13/19 11:46,"600 8th St, Los Angeles, CA 90001" -317851,USB-C Charging Cable,1,11.95,12/02/19 14:30,"40 6th St, Los Angeles, CA 90001" -317852,AA Batteries (4-pack),1,3.84,12/06/19 22:05,"656 Church St, Atlanta, GA 30301" -317853,Bose SoundSport Headphones,1,99.99,12/29/19 21:28,"380 Washington St, Los Angeles, CA 90001" -317854,Apple Airpods Headphones,1,150,12/11/19 06:07,"110 Meadow St, San Francisco, CA 94016" -317855,USB-C Charging Cable,1,11.95,12/27/19 13:33,"775 7th St, Seattle, WA 98101" -317856,27in FHD Monitor,1,149.99,12/11/19 00:48,"188 River St, San Francisco, CA 94016" -317857,Google Phone,1,600,12/29/19 13:17,"676 Lakeview St, Boston, MA 02215" -317858,AAA Batteries (4-pack),1,2.99,12/14/19 14:36,"662 Adams St, New York City, NY 10001" -317859,Wired Headphones,1,11.99,12/29/19 11:45,"215 Adams St, Dallas, TX 75001" -317860,Lightning Charging Cable,1,14.95,12/23/19 09:06,"533 6th St, Dallas, TX 75001" -317861,AAA Batteries (4-pack),1,2.99,12/25/19 08:11,"839 Johnson St, Los Angeles, CA 90001" -317862,27in 4K Gaming Monitor,1,389.99,12/15/19 07:25,"789 Washington St, Dallas, TX 75001" -317863,AA Batteries (4-pack),1,3.84,12/20/19 19:17,"290 9th St, Los Angeles, CA 90001" -317864,Wired Headphones,1,11.99,12/21/19 21:17,"931 South St, San Francisco, CA 94016" -317865,Vareebadd Phone,1,400,12/08/19 21:02,"236 Cherry St, New York City, NY 10001" -317866,ThinkPad Laptop,1,999.99,12/14/19 20:13,"566 Lake St, San Francisco, CA 94016" -317867,AA Batteries (4-pack),1,3.84,12/07/19 15:00,"27 11th St, Los Angeles, CA 90001" -317868,AA Batteries (4-pack),1,3.84,12/28/19 21:23,"463 Madison St, New York City, NY 10001" -317869,USB-C Charging Cable,1,11.95,12/04/19 00:26,"871 Highland St, Boston, MA 02215" -317870,LG Dryer,1,600.0,12/14/19 18:10,"857 14th St, San Francisco, CA 94016" -317871,AA Batteries (4-pack),1,3.84,12/27/19 14:20,"830 14th St, New York City, NY 10001" -317872,Wired Headphones,1,11.99,12/12/19 07:05,"636 South St, Boston, MA 02215" -317873,34in Ultrawide Monitor,1,379.99,12/16/19 20:34,"289 River St, Boston, MA 02215" -317874,27in FHD Monitor,1,149.99,12/08/19 19:21,"878 Jefferson St, New York City, NY 10001" -317875,Wired Headphones,1,11.99,12/10/19 00:13,"235 Lakeview St, Boston, MA 02215" -317876,Lightning Charging Cable,1,14.95,12/09/19 17:23,"172 Meadow St, Austin, TX 73301" -317877,AAA Batteries (4-pack),1,2.99,12/04/19 20:37,"329 9th St, San Francisco, CA 94016" -317878,USB-C Charging Cable,1,11.95,12/16/19 13:12,"147 Forest St, Seattle, WA 98101" -317879,Bose SoundSport Headphones,1,99.99,12/22/19 18:15,"505 Lincoln St, Austin, TX 73301" -317880,ThinkPad Laptop,1,999.99,12/29/19 15:14,"953 Dogwood St, Seattle, WA 98101" -317881,AA Batteries (4-pack),2,3.84,12/01/19 17:01,"417 Sunset St, San Francisco, CA 94016" -317882,Google Phone,1,600,12/11/19 11:05,"57 Ridge St, San Francisco, CA 94016" -317883,AAA Batteries (4-pack),2,2.99,12/29/19 18:54,"185 Forest St, San Francisco, CA 94016" -317884,USB-C Charging Cable,1,11.95,12/07/19 06:53,"73 11th St, Atlanta, GA 30301" -317885,34in Ultrawide Monitor,1,379.99,12/11/19 22:56,"813 7th St, Atlanta, GA 30301" -317886,USB-C Charging Cable,1,11.95,12/23/19 12:59,"571 Jefferson St, New York City, NY 10001" -317887,USB-C Charging Cable,1,11.95,12/15/19 08:15,"623 North St, Seattle, WA 98101" -317888,Apple Airpods Headphones,1,150,12/31/19 20:23,"897 Cherry St, Los Angeles, CA 90001" -317889,AA Batteries (4-pack),1,3.84,12/14/19 19:49,"916 Hickory St, Atlanta, GA 30301" -317890,ThinkPad Laptop,1,999.99,12/04/19 13:28,"948 Chestnut St, Dallas, TX 75001" -317891,Bose SoundSport Headphones,1,99.99,12/23/19 09:45,"127 Main St, New York City, NY 10001" -317892,AAA Batteries (4-pack),2,2.99,12/01/19 13:04,"18 2nd St, San Francisco, CA 94016" -317893,Lightning Charging Cable,1,14.95,12/09/19 16:19,"834 Wilson St, San Francisco, CA 94016" -317894,AA Batteries (4-pack),2,3.84,12/20/19 18:37,"941 West St, Los Angeles, CA 90001" -317895,AAA Batteries (4-pack),1,2.99,12/14/19 08:41,"76 Pine St, Atlanta, GA 30301" -317896,Lightning Charging Cable,1,14.95,12/13/19 16:51,"242 Elm St, Los Angeles, CA 90001" -317897,Wired Headphones,1,11.99,12/12/19 22:51,"740 Center St, Los Angeles, CA 90001" -317898,Apple Airpods Headphones,1,150,12/01/19 16:50,"392 Hill St, Los Angeles, CA 90001" -317899,Flatscreen TV,1,300,12/09/19 22:57,"612 Madison St, Dallas, TX 75001" -317900,Lightning Charging Cable,2,14.95,12/23/19 17:23,"475 13th St, Dallas, TX 75001" -317901,USB-C Charging Cable,2,11.95,12/30/19 22:13,"851 11th St, Seattle, WA 98101" -317902,Bose SoundSport Headphones,1,99.99,12/31/19 12:45,"347 Dogwood St, San Francisco, CA 94016" -317903,AAA Batteries (4-pack),1,2.99,12/15/19 10:29,"541 Wilson St, Dallas, TX 75001" -317904,Wired Headphones,1,11.99,12/02/19 23:29,"441 Jackson St, Los Angeles, CA 90001" -317905,USB-C Charging Cable,1,11.95,12/15/19 11:07,"973 12th St, San Francisco, CA 94016" -317906,Wired Headphones,1,11.99,12/02/19 12:43,"593 North St, San Francisco, CA 94016" -317907,27in 4K Gaming Monitor,1,389.99,12/13/19 19:19,"664 5th St, Atlanta, GA 30301" -317908,AAA Batteries (4-pack),1,2.99,12/08/19 13:00,"29 Jackson St, Atlanta, GA 30301" -317909,Bose SoundSport Headphones,1,99.99,12/01/19 14:27,"433 Meadow St, Seattle, WA 98101" -317910,USB-C Charging Cable,1,11.95,12/12/19 11:37,"513 Church St, San Francisco, CA 94016" -317911,ThinkPad Laptop,1,999.99,12/21/19 13:46,"836 Chestnut St, Portland, OR 97035" -317912,AA Batteries (4-pack),1,3.84,12/10/19 12:54,"489 Madison St, Boston, MA 02215" -317913,Lightning Charging Cable,1,14.95,12/30/19 13:32,"239 11th St, San Francisco, CA 94016" -317914,Wired Headphones,2,11.99,12/15/19 20:39,"239 Walnut St, Portland, OR 97035" -317915,Wired Headphones,1,11.99,12/04/19 19:22,"601 Johnson St, Boston, MA 02215" -317916,Wired Headphones,1,11.99,12/02/19 06:43,"769 Washington St, Atlanta, GA 30301" -317917,Wired Headphones,1,11.99,12/01/19 23:10,"732 Jackson St, Portland, ME 04101" -317918,iPhone,1,700,12/24/19 15:30,"409 Madison St, Los Angeles, CA 90001" -317918,Lightning Charging Cable,1,14.95,12/24/19 15:30,"409 Madison St, Los Angeles, CA 90001" -317919,AA Batteries (4-pack),1,3.84,12/02/19 14:29,"272 7th St, Los Angeles, CA 90001" -317920,Flatscreen TV,1,300,12/05/19 13:16,"893 Hickory St, San Francisco, CA 94016" -317921,20in Monitor,1,109.99,12/21/19 05:03,"309 Center St, New York City, NY 10001" -317922,Apple Airpods Headphones,1,150,12/28/19 10:42,"47 Meadow St, Dallas, TX 75001" -317923,Vareebadd Phone,1,400,12/29/19 20:05,"662 Maple St, Portland, OR 97035" -317924,20in Monitor,1,109.99,12/20/19 18:29,"173 9th St, Dallas, TX 75001" -317925,Lightning Charging Cable,1,14.95,12/29/19 07:37,"564 South St, Atlanta, GA 30301" -317926,AAA Batteries (4-pack),1,2.99,12/30/19 07:37,"565 West St, Los Angeles, CA 90001" -317927,Macbook Pro Laptop,1,1700,12/13/19 12:05,"17 Lakeview St, Dallas, TX 75001" -317928,Wired Headphones,1,11.99,12/25/19 13:25,"813 Hill St, San Francisco, CA 94016" -317929,34in Ultrawide Monitor,1,379.99,12/08/19 00:49,"120 Ridge St, Los Angeles, CA 90001" -317930,Wired Headphones,1,11.99,12/31/19 08:49,"619 10th St, San Francisco, CA 94016" -317931,Lightning Charging Cable,1,14.95,12/31/19 12:05,"567 Main St, Boston, MA 02215" -,,,,, -317932,iPhone,1,700,12/02/19 08:42,"944 Walnut St, Austin, TX 73301" -317933,Apple Airpods Headphones,1,150,12/17/19 06:22,"654 Dogwood St, New York City, NY 10001" -317934,ThinkPad Laptop,1,999.99,12/24/19 06:52,"317 Dogwood St, Atlanta, GA 30301" -317934,AA Batteries (4-pack),1,3.84,12/24/19 06:52,"317 Dogwood St, Atlanta, GA 30301" -317935,Apple Airpods Headphones,1,150,12/04/19 19:57,"201 Park St, Dallas, TX 75001" -317936,USB-C Charging Cable,1,11.95,12/09/19 12:22,"937 Johnson St, Dallas, TX 75001" -317937,Wired Headphones,1,11.99,12/15/19 12:18,"491 Elm St, Atlanta, GA 30301" -317938,20in Monitor,1,109.99,12/06/19 14:21,"483 Hickory St, Portland, OR 97035" -317939,20in Monitor,1,109.99,12/29/19 02:30,"538 8th St, San Francisco, CA 94016" -317940,Google Phone,1,600,12/23/19 16:48,"446 Spruce St, Boston, MA 02215" -317941,Bose SoundSport Headphones,1,99.99,12/01/19 11:02,"142 Lake St, San Francisco, CA 94016" -317942,Apple Airpods Headphones,1,150,12/07/19 14:15,"476 2nd St, San Francisco, CA 94016" -317943,iPhone,1,700,12/12/19 17:44,"207 11th St, New York City, NY 10001" -317944,AA Batteries (4-pack),1,3.84,12/13/19 14:20,"195 2nd St, Dallas, TX 75001" -317945,Wired Headphones,1,11.99,12/21/19 01:49,"234 Lake St, San Francisco, CA 94016" -317946,AA Batteries (4-pack),1,3.84,12/06/19 23:51,"896 9th St, San Francisco, CA 94016" -317947,AA Batteries (4-pack),2,3.84,12/29/19 22:11,"574 West St, Seattle, WA 98101" -317948,Wired Headphones,1,11.99,12/07/19 14:43,"587 Lincoln St, Boston, MA 02215" -317949,27in FHD Monitor,1,149.99,12/26/19 17:36,"252 Maple St, Seattle, WA 98101" -317950,34in Ultrawide Monitor,1,379.99,12/28/19 18:59,"849 14th St, San Francisco, CA 94016" -317951,Apple Airpods Headphones,1,150,12/19/19 12:21,"864 9th St, New York City, NY 10001" -317952,Vareebadd Phone,1,400,12/18/19 20:17,"993 Park St, Dallas, TX 75001" -317953,Lightning Charging Cable,1,14.95,12/28/19 11:20,"581 8th St, San Francisco, CA 94016" -317954,Apple Airpods Headphones,1,150,12/16/19 08:11,"598 11th St, San Francisco, CA 94016" -317955,AAA Batteries (4-pack),2,2.99,12/02/19 13:10,"886 8th St, New York City, NY 10001" -317956,USB-C Charging Cable,1,11.95,12/29/19 16:28,"280 Cherry St, Dallas, TX 75001" -317957,AA Batteries (4-pack),1,3.84,12/21/19 16:28,"104 13th St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -317958,Bose SoundSport Headphones,1,99.99,12/09/19 15:26,"505 Sunset St, San Francisco, CA 94016" -317959,USB-C Charging Cable,1,11.95,12/23/19 17:47,"333 Dogwood St, Los Angeles, CA 90001" -317960,27in FHD Monitor,1,149.99,12/06/19 22:45,"893 Church St, San Francisco, CA 94016" -317961,AA Batteries (4-pack),3,3.84,12/18/19 13:54,"974 Dogwood St, Boston, MA 02215" -317962,AA Batteries (4-pack),1,3.84,12/11/19 17:33,"839 5th St, Boston, MA 02215" -317963,AA Batteries (4-pack),1,3.84,12/20/19 01:23,"25 Walnut St, New York City, NY 10001" -317964,Lightning Charging Cable,1,14.95,12/21/19 16:29,"803 Johnson St, Seattle, WA 98101" -317965,Apple Airpods Headphones,1,150,12/15/19 20:00,"383 Cedar St, Los Angeles, CA 90001" -317966,USB-C Charging Cable,1,11.95,12/09/19 11:09,"60 1st St, Seattle, WA 98101" -317967,Lightning Charging Cable,1,14.95,12/22/19 10:08,"815 Wilson St, New York City, NY 10001" -317968,Wired Headphones,1,11.99,12/26/19 02:27,"177 West St, Atlanta, GA 30301" -317969,AAA Batteries (4-pack),2,2.99,12/26/19 10:40,"125 Park St, San Francisco, CA 94016" -317970,Apple Airpods Headphones,1,150,12/02/19 14:22,"570 6th St, San Francisco, CA 94016" -317971,AA Batteries (4-pack),1,3.84,12/17/19 18:39,"250 Chestnut St, San Francisco, CA 94016" -317971,AA Batteries (4-pack),1,3.84,12/17/19 18:39,"250 Chestnut St, San Francisco, CA 94016" -317972,27in 4K Gaming Monitor,1,389.99,12/23/19 09:00,"478 1st St, Los Angeles, CA 90001" -317973,USB-C Charging Cable,1,11.95,12/22/19 13:28,"958 Lake St, Los Angeles, CA 90001" -317974,Apple Airpods Headphones,1,150,12/08/19 12:11,"562 North St, New York City, NY 10001" -317975,Lightning Charging Cable,1,14.95,12/14/19 20:05,"438 Spruce St, Los Angeles, CA 90001" -317976,iPhone,1,700,12/05/19 14:23,"697 2nd St, Austin, TX 73301" -317977,AAA Batteries (4-pack),1,2.99,12/26/19 18:37,"694 South St, Los Angeles, CA 90001" -317978,Lightning Charging Cable,1,14.95,12/01/19 19:31,"80 9th St, Dallas, TX 75001" -317979,Lightning Charging Cable,1,14.95,12/21/19 11:00,"416 Willow St, San Francisco, CA 94016" -317980,Google Phone,1,600,12/22/19 17:17,"287 12th St, San Francisco, CA 94016" -317981,Apple Airpods Headphones,1,150,12/04/19 09:57,"185 Chestnut St, New York City, NY 10001" -317982,USB-C Charging Cable,1,11.95,12/12/19 19:06,"229 Sunset St, San Francisco, CA 94016" -317983,USB-C Charging Cable,1,11.95,12/15/19 11:34,"584 6th St, San Francisco, CA 94016" -317984,27in FHD Monitor,1,149.99,12/31/19 17:27,"755 Madison St, Boston, MA 02215" -317985,USB-C Charging Cable,1,11.95,12/02/19 14:42,"13 Ridge St, New York City, NY 10001" -317986,20in Monitor,1,109.99,12/03/19 13:48,"920 7th St, Portland, ME 04101" -317987,USB-C Charging Cable,1,11.95,12/25/19 11:29,"208 4th St, New York City, NY 10001" -317988,Lightning Charging Cable,2,14.95,12/23/19 21:26,"856 Adams St, New York City, NY 10001" -317989,AAA Batteries (4-pack),3,2.99,12/29/19 18:26,"398 Center St, Los Angeles, CA 90001" -317990,Wired Headphones,1,11.99,12/20/19 19:04,"738 2nd St, Atlanta, GA 30301" -317991,Lightning Charging Cable,1,14.95,12/23/19 21:03,"309 Walnut St, Los Angeles, CA 90001" -317992,AA Batteries (4-pack),1,3.84,12/31/19 12:09,"474 Main St, Austin, TX 73301" -317993,Wired Headphones,1,11.99,12/09/19 21:14,"10 13th St, New York City, NY 10001" -317994,AA Batteries (4-pack),1,3.84,12/09/19 13:14,"522 Chestnut St, Atlanta, GA 30301" -317995,Lightning Charging Cable,1,14.95,12/25/19 00:08,"363 Jackson St, Seattle, WA 98101" -317996,Macbook Pro Laptop,1,1700,12/23/19 02:10,"560 Lake St, Seattle, WA 98101" -317997,Lightning Charging Cable,1,14.95,12/05/19 23:42,"222 5th St, Atlanta, GA 30301" -317998,34in Ultrawide Monitor,1,379.99,12/03/19 17:41,"138 12th St, San Francisco, CA 94016" -317999,27in 4K Gaming Monitor,1,389.99,12/10/19 13:09,"245 Ridge St, Austin, TX 73301" -318000,Lightning Charging Cable,2,14.95,12/15/19 09:34,"297 2nd St, San Francisco, CA 94016" -318001,Flatscreen TV,1,300,12/30/19 11:04,"434 13th St, Dallas, TX 75001" -318002,USB-C Charging Cable,1,11.95,12/18/19 14:28,"670 Ridge St, San Francisco, CA 94016" -318003,34in Ultrawide Monitor,1,379.99,12/27/19 23:53,"881 Forest St, Los Angeles, CA 90001" -318004,Bose SoundSport Headphones,1,99.99,12/15/19 21:38,"205 Cherry St, San Francisco, CA 94016" -318005,Wired Headphones,1,11.99,12/19/19 20:50,"394 South St, Boston, MA 02215" -318006,AA Batteries (4-pack),3,3.84,12/10/19 14:29,"402 2nd St, Seattle, WA 98101" -318007,USB-C Charging Cable,1,11.95,12/18/19 11:32,"55 Forest St, Los Angeles, CA 90001" -318008,27in FHD Monitor,1,149.99,12/16/19 09:50,"50 12th St, San Francisco, CA 94016" -318009,Lightning Charging Cable,1,14.95,12/31/19 21:24,"648 Meadow St, San Francisco, CA 94016" -318010,Macbook Pro Laptop,1,1700,12/12/19 09:50,"468 Ridge St, Seattle, WA 98101" -318011,Wired Headphones,1,11.99,12/06/19 08:01,"855 River St, New York City, NY 10001" -318012,Flatscreen TV,1,300,12/10/19 14:42,"116 Forest St, Dallas, TX 75001" -318013,AA Batteries (4-pack),2,3.84,12/27/19 13:16,"675 Jackson St, Seattle, WA 98101" -318014,Wired Headphones,1,11.99,12/12/19 13:42,"374 Meadow St, Atlanta, GA 30301" -318015,AAA Batteries (4-pack),2,2.99,12/14/19 20:53,"872 North St, Atlanta, GA 30301" -318016,20in Monitor,1,109.99,12/16/19 16:24,"20 Wilson St, Dallas, TX 75001" -318017,34in Ultrawide Monitor,1,379.99,12/04/19 15:16,"45 4th St, Boston, MA 02215" -318018,AA Batteries (4-pack),2,3.84,12/14/19 14:28,"157 Johnson St, Atlanta, GA 30301" -318019,Flatscreen TV,1,300,12/21/19 21:08,"639 Wilson St, Los Angeles, CA 90001" -318020,Macbook Pro Laptop,1,1700,12/06/19 11:29,"248 Highland St, Portland, OR 97035" -318021,Lightning Charging Cable,1,14.95,12/18/19 20:37,"90 Hickory St, Los Angeles, CA 90001" -318022,34in Ultrawide Monitor,1,379.99,12/22/19 12:00,"567 Main St, San Francisco, CA 94016" -318023,USB-C Charging Cable,1,11.95,12/31/19 20:57,"620 6th St, San Francisco, CA 94016" -318024,Bose SoundSport Headphones,1,99.99,12/29/19 22:45,"429 1st St, Seattle, WA 98101" -318025,AAA Batteries (4-pack),3,2.99,12/18/19 22:47,"744 6th St, Los Angeles, CA 90001" -318026,iPhone,1,700,12/29/19 22:04,"698 Wilson St, Atlanta, GA 30301" -318027,AA Batteries (4-pack),1,3.84,12/05/19 09:06,"764 Maple St, Atlanta, GA 30301" -318028,Google Phone,1,600,12/18/19 05:06,"462 2nd St, San Francisco, CA 94016" -318029,iPhone,1,700,12/29/19 21:27,"835 6th St, Los Angeles, CA 90001" -318030,USB-C Charging Cable,1,11.95,12/14/19 21:28,"252 13th St, Dallas, TX 75001" -318031,Bose SoundSport Headphones,1,99.99,12/03/19 18:04,"721 Park St, San Francisco, CA 94016" -318032,34in Ultrawide Monitor,1,379.99,12/21/19 20:38,"682 4th St, New York City, NY 10001" -318033,20in Monitor,1,109.99,12/31/19 13:27,"890 Willow St, San Francisco, CA 94016" -318034,27in FHD Monitor,1,149.99,12/18/19 19:53,"811 North St, San Francisco, CA 94016" -318035,Lightning Charging Cable,1,14.95,12/17/19 13:27,"508 Wilson St, New York City, NY 10001" -318036,USB-C Charging Cable,1,11.95,12/20/19 09:11,"160 Chestnut St, New York City, NY 10001" -318037,Flatscreen TV,1,300,12/31/19 02:28,"204 Meadow St, Dallas, TX 75001" -318038,AAA Batteries (4-pack),4,2.99,12/19/19 19:23,"286 Washington St, San Francisco, CA 94016" -318039,AAA Batteries (4-pack),1,2.99,12/11/19 18:56,"820 10th St, New York City, NY 10001" -318040,USB-C Charging Cable,1,11.95,12/30/19 15:55,"717 2nd St, Seattle, WA 98101" -318041,AA Batteries (4-pack),1,3.84,12/14/19 13:16,"132 1st St, Boston, MA 02215" -318042,Lightning Charging Cable,1,14.95,12/25/19 14:03,"806 1st St, New York City, NY 10001" -318043,Macbook Pro Laptop,1,1700,12/20/19 23:14,"751 Elm St, San Francisco, CA 94016" -318044,34in Ultrawide Monitor,1,379.99,12/26/19 22:58,"641 Center St, New York City, NY 10001" -318045,AA Batteries (4-pack),1,3.84,12/06/19 17:12,"374 Lake St, San Francisco, CA 94016" -318046,USB-C Charging Cable,1,11.95,12/17/19 15:47,"294 11th St, Seattle, WA 98101" -318047,AAA Batteries (4-pack),1,2.99,12/11/19 01:15,"620 Meadow St, Seattle, WA 98101" -318048,iPhone,1,700,12/17/19 20:54,"361 Lincoln St, New York City, NY 10001" -318049,Flatscreen TV,1,300,12/02/19 23:17,"52 Washington St, Boston, MA 02215" -318050,Bose SoundSport Headphones,1,99.99,12/09/19 10:10,"111 Cedar St, Seattle, WA 98101" -318051,AA Batteries (4-pack),2,3.84,12/29/19 14:38,"702 5th St, San Francisco, CA 94016" -318052,Apple Airpods Headphones,1,150,12/30/19 19:18,"313 Johnson St, San Francisco, CA 94016" -318053,AAA Batteries (4-pack),2,2.99,12/15/19 18:46,"989 Madison St, Atlanta, GA 30301" -318054,34in Ultrawide Monitor,1,379.99,12/24/19 19:40,"411 Hill St, Atlanta, GA 30301" -318055,AAA Batteries (4-pack),1,2.99,12/29/19 15:52,"174 7th St, Seattle, WA 98101" -318056,Apple Airpods Headphones,1,150,12/03/19 13:43,"442 8th St, New York City, NY 10001" -318057,Bose SoundSport Headphones,1,99.99,12/28/19 14:29,"418 8th St, New York City, NY 10001" -318058,Lightning Charging Cable,1,14.95,12/05/19 18:24,"700 Forest St, Dallas, TX 75001" -318059,Wired Headphones,1,11.99,12/20/19 17:41,"57 Willow St, Austin, TX 73301" -318060,27in FHD Monitor,1,149.99,12/31/19 01:09,"690 4th St, Los Angeles, CA 90001" -318061,Lightning Charging Cable,1,14.95,12/25/19 12:25,"491 River St, Los Angeles, CA 90001" -318062,USB-C Charging Cable,1,11.95,12/14/19 10:42,"15 9th St, Los Angeles, CA 90001" -318063,USB-C Charging Cable,1,11.95,12/13/19 13:56,"2 Hickory St, Seattle, WA 98101" -318064,USB-C Charging Cable,1,11.95,12/27/19 19:55,"160 12th St, Boston, MA 02215" -318065,Apple Airpods Headphones,1,150,12/02/19 19:20,"367 2nd St, San Francisco, CA 94016" -318066,Flatscreen TV,1,300,12/02/19 09:31,"799 Pine St, New York City, NY 10001" -318067,Flatscreen TV,1,300,12/05/19 21:19,"743 Pine St, Dallas, TX 75001" -318068,AAA Batteries (4-pack),1,2.99,12/17/19 07:04,"590 13th St, Dallas, TX 75001" -318069,USB-C Charging Cable,1,11.95,12/08/19 11:37,"131 Maple St, Los Angeles, CA 90001" -318070,AA Batteries (4-pack),1,3.84,12/15/19 19:10,"6 6th St, New York City, NY 10001" -318071,27in 4K Gaming Monitor,1,389.99,12/15/19 09:18,"237 Pine St, New York City, NY 10001" -318072,AA Batteries (4-pack),1,3.84,12/05/19 10:07,"717 11th St, Boston, MA 02215" -318073,Apple Airpods Headphones,1,150,12/26/19 19:39,"101 6th St, Boston, MA 02215" -318074,LG Washing Machine,1,600.0,12/05/19 03:10,"823 Hill St, San Francisco, CA 94016" -318075,AAA Batteries (4-pack),2,2.99,12/27/19 21:40,"690 Jackson St, Portland, OR 97035" -318075,ThinkPad Laptop,1,999.99,12/27/19 21:40,"690 Jackson St, Portland, OR 97035" -318076,Apple Airpods Headphones,1,150,12/17/19 08:23,"316 Elm St, Dallas, TX 75001" -318077,AAA Batteries (4-pack),1,2.99,12/04/19 18:07,"382 14th St, Boston, MA 02215" -318078,Lightning Charging Cable,1,14.95,12/09/19 17:06,"568 Madison St, New York City, NY 10001" -318079,Lightning Charging Cable,1,14.95,12/20/19 17:00,"599 River St, Atlanta, GA 30301" -318080,Wired Headphones,1,11.99,12/11/19 11:52,"706 2nd St, New York City, NY 10001" -318081,AA Batteries (4-pack),2,3.84,12/17/19 19:52,"258 Willow St, Boston, MA 02215" -318082,USB-C Charging Cable,1,11.95,12/23/19 12:46,"66 Park St, Atlanta, GA 30301" -318083,USB-C Charging Cable,2,11.95,12/02/19 15:20,"131 Cherry St, Los Angeles, CA 90001" -318084,34in Ultrawide Monitor,1,379.99,12/27/19 20:23,"909 13th St, Dallas, TX 75001" -318085,USB-C Charging Cable,1,11.95,12/07/19 19:04,"759 12th St, New York City, NY 10001" -318086,27in 4K Gaming Monitor,1,389.99,12/06/19 11:10,"187 Washington St, Los Angeles, CA 90001" -318087,Wired Headphones,1,11.99,12/12/19 04:44,"377 West St, Los Angeles, CA 90001" -318088,Macbook Pro Laptop,1,1700,12/16/19 11:34,"129 Cedar St, San Francisco, CA 94016" -318089,Flatscreen TV,1,300,12/01/19 11:52,"512 11th St, Dallas, TX 75001" -318090,AA Batteries (4-pack),1,3.84,12/30/19 12:25,"477 South St, San Francisco, CA 94016" -318091,USB-C Charging Cable,1,11.95,12/20/19 02:13,"766 Hill St, Boston, MA 02215" -318092,Macbook Pro Laptop,1,1700,12/25/19 17:41,"79 Forest St, Boston, MA 02215" -318093,Bose SoundSport Headphones,1,99.99,12/27/19 22:07,"509 Sunset St, Seattle, WA 98101" -318094,USB-C Charging Cable,1,11.95,12/23/19 00:54,"945 5th St, San Francisco, CA 94016" -318095,AAA Batteries (4-pack),2,2.99,12/30/19 14:48,"504 Main St, Portland, ME 04101" -318096,Apple Airpods Headphones,1,150,12/14/19 16:46,"756 Cedar St, San Francisco, CA 94016" -318097,Bose SoundSport Headphones,1,99.99,12/22/19 18:26,"501 Hickory St, Dallas, TX 75001" -318098,Apple Airpods Headphones,1,150,12/27/19 19:35,"874 Madison St, New York City, NY 10001" -318099,iPhone,1,700,12/19/19 09:39,"766 Lakeview St, Austin, TX 73301" -318099,Lightning Charging Cable,1,14.95,12/19/19 09:39,"766 Lakeview St, Austin, TX 73301" -318100,Wired Headphones,1,11.99,12/22/19 12:29,"966 5th St, San Francisco, CA 94016" -318101,27in FHD Monitor,1,149.99,12/25/19 20:37,"291 2nd St, Los Angeles, CA 90001" -318102,Lightning Charging Cable,1,14.95,12/31/19 14:32,"503 Madison St, Los Angeles, CA 90001" -318103,AAA Batteries (4-pack),2,2.99,12/16/19 17:55,"549 Cedar St, Los Angeles, CA 90001" -318104,AA Batteries (4-pack),1,3.84,12/01/19 11:05,"969 Hill St, Los Angeles, CA 90001" -318105,Lightning Charging Cable,1,14.95,12/02/19 15:56,"76 Park St, San Francisco, CA 94016" -318106,USB-C Charging Cable,1,11.95,12/15/19 14:15,"486 Elm St, Austin, TX 73301" -318107,USB-C Charging Cable,1,11.95,12/11/19 16:56,"229 Adams St, Los Angeles, CA 90001" -318108,USB-C Charging Cable,1,11.95,12/12/19 16:49,"459 Washington St, San Francisco, CA 94016" -318109,20in Monitor,1,109.99,12/31/19 19:51,"698 Forest St, Dallas, TX 75001" -318110,AA Batteries (4-pack),2,3.84,12/02/19 10:43,"130 South St, Portland, OR 97035" -318111,Flatscreen TV,1,300,12/20/19 04:45,"354 Park St, San Francisco, CA 94016" -318112,Apple Airpods Headphones,1,150,12/04/19 12:14,"447 Forest St, Portland, ME 04101" -318113,Bose SoundSport Headphones,1,99.99,12/06/19 15:44,"378 Cedar St, New York City, NY 10001" -318114,Bose SoundSport Headphones,1,99.99,12/18/19 12:52,"421 2nd St, Los Angeles, CA 90001" -318115,AAA Batteries (4-pack),1,2.99,12/17/19 14:19,"72 Jackson St, San Francisco, CA 94016" -318116,AAA Batteries (4-pack),1,2.99,12/31/19 19:00,"119 Maple St, New York City, NY 10001" -318117,27in FHD Monitor,1,149.99,12/19/19 13:37,"716 Lincoln St, New York City, NY 10001" -318118,Lightning Charging Cable,1,14.95,12/11/19 07:02,"610 Forest St, San Francisco, CA 94016" -318119,AA Batteries (4-pack),1,3.84,12/24/19 18:09,"258 9th St, Atlanta, GA 30301" -318120,AAA Batteries (4-pack),1,2.99,12/12/19 20:48,"563 Dogwood St, New York City, NY 10001" -318121,Flatscreen TV,1,300,12/29/19 14:36,"120 Sunset St, Atlanta, GA 30301" -318122,Apple Airpods Headphones,1,150,12/11/19 18:54,"59 Park St, Dallas, TX 75001" -318123,Lightning Charging Cable,1,14.95,12/22/19 19:34,"420 Church St, Dallas, TX 75001" -318124,Flatscreen TV,1,300,12/05/19 17:35,"608 Pine St, Portland, ME 04101" -318125,AA Batteries (4-pack),1,3.84,12/02/19 17:23,"848 14th St, New York City, NY 10001" -318126,Lightning Charging Cable,1,14.95,12/12/19 18:32,"405 Sunset St, Boston, MA 02215" -318127,AAA Batteries (4-pack),2,2.99,12/28/19 12:38,"127 11th St, Portland, OR 97035" -318128,Wired Headphones,1,11.99,12/30/19 11:03,"158 Willow St, New York City, NY 10001" -318129,USB-C Charging Cable,1,11.95,12/23/19 12:56,"871 Highland St, Los Angeles, CA 90001" -318130,Bose SoundSport Headphones,1,99.99,12/25/19 14:31,"150 Madison St, Boston, MA 02215" -318131,Bose SoundSport Headphones,1,99.99,12/30/19 22:48,"998 Hickory St, Dallas, TX 75001" -318132,Lightning Charging Cable,1,14.95,12/26/19 15:14,"243 Elm St, Boston, MA 02215" -318133,Wired Headphones,1,11.99,12/04/19 16:24,"750 Dogwood St, Los Angeles, CA 90001" -318134,Wired Headphones,1,11.99,12/30/19 21:42,"607 River St, Portland, OR 97035" -318135,27in FHD Monitor,1,149.99,12/28/19 15:24,"351 Forest St, Austin, TX 73301" -318136,Bose SoundSport Headphones,1,99.99,12/17/19 22:42,"164 Lincoln St, Los Angeles, CA 90001" -318137,USB-C Charging Cable,1,11.95,12/17/19 15:26,"511 Willow St, Seattle, WA 98101" -318138,Lightning Charging Cable,1,14.95,12/16/19 10:57,"508 12th St, Dallas, TX 75001" -318139,Google Phone,1,600,12/02/19 23:53,"343 Ridge St, Austin, TX 73301" -318140,USB-C Charging Cable,1,11.95,12/27/19 08:53,"855 Lakeview St, San Francisco, CA 94016" -318141,27in FHD Monitor,1,149.99,12/19/19 12:11,"205 Hill St, New York City, NY 10001" -318142,AAA Batteries (4-pack),2,2.99,12/01/19 14:29,"851 8th St, San Francisco, CA 94016" -318143,AAA Batteries (4-pack),1,2.99,12/06/19 02:28,"10 8th St, Los Angeles, CA 90001" -318144,Google Phone,1,600,12/11/19 17:21,"31 7th St, Los Angeles, CA 90001" -318144,USB-C Charging Cable,1,11.95,12/11/19 17:21,"31 7th St, Los Angeles, CA 90001" -318145,Wired Headphones,1,11.99,12/16/19 22:13,"309 Main St, Boston, MA 02215" -318146,Bose SoundSport Headphones,1,99.99,12/18/19 13:20,"963 Walnut St, San Francisco, CA 94016" -318147,20in Monitor,1,109.99,12/12/19 10:17,"271 Elm St, San Francisco, CA 94016" -318148,Wired Headphones,1,11.99,12/23/19 16:41,"20 Sunset St, San Francisco, CA 94016" -318149,AAA Batteries (4-pack),1,2.99,12/15/19 20:19,"290 Sunset St, Austin, TX 73301" -318150,AAA Batteries (4-pack),1,2.99,12/29/19 22:21,"165 Willow St, Boston, MA 02215" -318151,AA Batteries (4-pack),1,3.84,12/06/19 19:18,"677 4th St, Dallas, TX 75001" -318152,Apple Airpods Headphones,1,150,12/28/19 21:12,"378 Spruce St, Portland, OR 97035" -318153,iPhone,1,700,12/30/19 10:05,"539 Johnson St, Los Angeles, CA 90001" -318153,Apple Airpods Headphones,1,150,12/30/19 10:05,"539 Johnson St, Los Angeles, CA 90001" -318154,Macbook Pro Laptop,1,1700,12/06/19 16:10,"993 Johnson St, Los Angeles, CA 90001" -318155,Flatscreen TV,1,300,12/05/19 16:23,"299 Ridge St, Atlanta, GA 30301" -318156,Flatscreen TV,1,300,12/21/19 13:52,"175 12th St, New York City, NY 10001" -318157,Wired Headphones,1,11.99,12/12/19 11:43,"506 Spruce St, New York City, NY 10001" -318158,AAA Batteries (4-pack),1,2.99,12/30/19 22:03,"671 13th St, San Francisco, CA 94016" -318159,USB-C Charging Cable,1,11.95,12/27/19 14:57,"843 Dogwood St, San Francisco, CA 94016" -318160,Wired Headphones,1,11.99,12/15/19 11:07,"4 13th St, Los Angeles, CA 90001" -318161,AA Batteries (4-pack),2,3.84,12/15/19 20:27,"407 Cedar St, San Francisco, CA 94016" -318162,Macbook Pro Laptop,1,1700,12/23/19 18:48,"595 8th St, Seattle, WA 98101" -318163,Wired Headphones,1,11.99,12/20/19 21:38,"75 Cherry St, Austin, TX 73301" -318164,AA Batteries (4-pack),3,3.84,12/25/19 12:48,"368 Park St, Portland, OR 97035" -318165,iPhone,1,700,12/25/19 21:53,"359 Lakeview St, New York City, NY 10001" -318166,Wired Headphones,1,11.99,12/01/19 11:22,"979 Center St, Boston, MA 02215" -318167,AA Batteries (4-pack),1,3.84,12/26/19 16:49,"748 Lincoln St, San Francisco, CA 94016" -318168,USB-C Charging Cable,1,11.95,12/02/19 14:50,"983 Hickory St, Portland, OR 97035" -318169,iPhone,1,700,12/30/19 19:10,"246 Ridge St, San Francisco, CA 94016" -318170,AA Batteries (4-pack),1,3.84,12/31/19 19:24,"672 Washington St, San Francisco, CA 94016" -318171,AA Batteries (4-pack),3,3.84,12/26/19 13:35,"813 14th St, San Francisco, CA 94016" -318172,34in Ultrawide Monitor,1,379.99,12/25/19 16:12,"81 6th St, Austin, TX 73301" -318173,Apple Airpods Headphones,1,150,12/29/19 12:38,"634 Chestnut St, Boston, MA 02215" -318174,Apple Airpods Headphones,1,150,12/15/19 21:54,"311 Hill St, Austin, TX 73301" -318175,AA Batteries (4-pack),2,3.84,12/14/19 18:19,"960 Maple St, San Francisco, CA 94016" -318176,Bose SoundSport Headphones,1,99.99,12/06/19 12:39,"470 6th St, Austin, TX 73301" -318177,USB-C Charging Cable,1,11.95,12/02/19 21:02,"46 North St, Los Angeles, CA 90001" -318178,Wired Headphones,2,11.99,12/30/19 11:25,"325 7th St, San Francisco, CA 94016" -318179,USB-C Charging Cable,1,11.95,12/31/19 17:52,"98 13th St, Boston, MA 02215" -318180,Bose SoundSport Headphones,1,99.99,12/19/19 17:37,"683 11th St, New York City, NY 10001" -318181,Flatscreen TV,1,300,12/04/19 21:01,"428 1st St, San Francisco, CA 94016" -318182,Wired Headphones,1,11.99,12/29/19 15:24,"820 Adams St, Boston, MA 02215" -318183,AA Batteries (4-pack),1,3.84,12/22/19 21:07,"782 South St, Seattle, WA 98101" -318184,AA Batteries (4-pack),1,3.84,12/16/19 20:46,"761 Walnut St, Seattle, WA 98101" -318185,Lightning Charging Cable,1,14.95,12/27/19 17:53,"28 Hickory St, San Francisco, CA 94016" -318186,Wired Headphones,1,11.99,12/11/19 12:35,"233 Hickory St, Boston, MA 02215" -318187,Bose SoundSport Headphones,1,99.99,12/25/19 19:53,"169 4th St, Boston, MA 02215" -318188,Lightning Charging Cable,1,14.95,12/03/19 16:37,"991 Adams St, San Francisco, CA 94016" -318189,Wired Headphones,1,11.99,12/04/19 11:16,"143 Walnut St, Portland, OR 97035" -318190,Wired Headphones,1,11.99,12/23/19 09:03,"692 11th St, Portland, ME 04101" -318191,Wired Headphones,2,11.99,12/22/19 15:46,"482 Forest St, San Francisco, CA 94016" -318192,AAA Batteries (4-pack),1,2.99,12/19/19 15:55,"491 Hickory St, Los Angeles, CA 90001" -318193,Google Phone,1,600,12/05/19 11:33,"360 South St, San Francisco, CA 94016" -318194,Wired Headphones,2,11.99,12/23/19 08:13,"185 12th St, Portland, ME 04101" -318195,ThinkPad Laptop,1,999.99,12/16/19 13:41,"909 Lincoln St, Seattle, WA 98101" -318196,Apple Airpods Headphones,1,150,12/31/19 18:56,"675 Johnson St, Atlanta, GA 30301" -318197,AA Batteries (4-pack),1,3.84,12/15/19 21:50,"28 Adams St, Portland, ME 04101" -318198,AAA Batteries (4-pack),2,2.99,12/15/19 08:18,"8 Madison St, Boston, MA 02215" -318199,AAA Batteries (4-pack),1,2.99,12/05/19 16:50,"576 Dogwood St, Los Angeles, CA 90001" -318200,Apple Airpods Headphones,1,150,12/07/19 06:18,"648 Church St, Los Angeles, CA 90001" -318201,Apple Airpods Headphones,1,150,12/18/19 16:54,"411 Madison St, San Francisco, CA 94016" -318202,AAA Batteries (4-pack),2,2.99,12/31/19 16:35,"896 Washington St, New York City, NY 10001" -318203,iPhone,1,700,12/05/19 17:59,"488 Center St, San Francisco, CA 94016" -318204,Lightning Charging Cable,1,14.95,12/01/19 12:13,"558 Church St, San Francisco, CA 94016" -318205,Wired Headphones,1,11.99,12/06/19 14:16,"524 5th St, Los Angeles, CA 90001" -318206,Google Phone,1,600,12/04/19 21:38,"974 Johnson St, Los Angeles, CA 90001" -318206,Wired Headphones,1,11.99,12/04/19 21:38,"974 Johnson St, Los Angeles, CA 90001" -318207,Wired Headphones,2,11.99,12/08/19 23:49,"810 7th St, San Francisco, CA 94016" -318208,LG Washing Machine,1,600.0,12/05/19 12:43,"399 Wilson St, San Francisco, CA 94016" -318209,AAA Batteries (4-pack),2,2.99,12/26/19 11:32,"191 2nd St, Los Angeles, CA 90001" -318210,34in Ultrawide Monitor,1,379.99,12/04/19 07:06,"202 Church St, Los Angeles, CA 90001" -318211,27in 4K Gaming Monitor,1,389.99,12/23/19 11:49,"5 5th St, Boston, MA 02215" -318212,USB-C Charging Cable,1,11.95,12/23/19 09:03,"351 Highland St, Dallas, TX 75001" -318213,Lightning Charging Cable,1,14.95,12/29/19 20:52,"948 Spruce St, Atlanta, GA 30301" -318214,AA Batteries (4-pack),1,3.84,12/31/19 13:19,"862 Spruce St, Dallas, TX 75001" -318215,Lightning Charging Cable,1,14.95,12/12/19 13:55,"3 Adams St, New York City, NY 10001" -318216,iPhone,1,700,12/12/19 12:56,"545 Jefferson St, San Francisco, CA 94016" -318216,Lightning Charging Cable,1,14.95,12/12/19 12:56,"545 Jefferson St, San Francisco, CA 94016" -318217,Lightning Charging Cable,1,14.95,12/27/19 23:24,"307 Sunset St, Los Angeles, CA 90001" -318218,Flatscreen TV,1,300,12/14/19 18:00,"735 Lake St, Dallas, TX 75001" -318219,Bose SoundSport Headphones,1,99.99,12/18/19 19:49,"332 Dogwood St, New York City, NY 10001" -318219,Flatscreen TV,1,300,12/18/19 19:49,"332 Dogwood St, New York City, NY 10001" -318220,Apple Airpods Headphones,1,150,12/23/19 10:31,"920 Adams St, Austin, TX 73301" -318221,20in Monitor,1,109.99,12/05/19 18:33,"981 Elm St, Los Angeles, CA 90001" -318222,AAA Batteries (4-pack),1,2.99,12/03/19 14:00,"143 Elm St, Atlanta, GA 30301" -318223,AA Batteries (4-pack),1,3.84,12/10/19 22:58,"916 2nd St, San Francisco, CA 94016" -318224,Apple Airpods Headphones,1,150,12/25/19 12:36,"239 Meadow St, Los Angeles, CA 90001" -318225,iPhone,1,700,12/24/19 08:21,"987 12th St, Atlanta, GA 30301" -318226,AA Batteries (4-pack),1,3.84,12/28/19 12:54,"921 Main St, Dallas, TX 75001" -318227,USB-C Charging Cable,2,11.95,12/17/19 05:55,"106 Center St, San Francisco, CA 94016" -318228,USB-C Charging Cable,1,11.95,12/10/19 13:58,"642 Lincoln St, Austin, TX 73301" -318229,iPhone,1,700,12/13/19 06:39,"529 Hickory St, Dallas, TX 75001" -318229,Lightning Charging Cable,1,14.95,12/13/19 06:39,"529 Hickory St, Dallas, TX 75001" -318230,Wired Headphones,1,11.99,12/18/19 13:02,"842 Sunset St, Los Angeles, CA 90001" -318231,Apple Airpods Headphones,1,150,12/29/19 18:15,"673 West St, Los Angeles, CA 90001" -318232,Bose SoundSport Headphones,1,99.99,12/21/19 20:42,"113 Lakeview St, Boston, MA 02215" -318233,Wired Headphones,2,11.99,12/03/19 21:48,"835 South St, Los Angeles, CA 90001" -318234,Lightning Charging Cable,1,14.95,12/31/19 18:51,"433 Hill St, Seattle, WA 98101" -318235,USB-C Charging Cable,2,11.95,12/10/19 15:22,"663 Johnson St, New York City, NY 10001" -318236,34in Ultrawide Monitor,1,379.99,12/17/19 18:56,"212 Hill St, Boston, MA 02215" -318237,34in Ultrawide Monitor,1,379.99,12/26/19 18:36,"864 9th St, San Francisco, CA 94016" -318238,34in Ultrawide Monitor,1,379.99,12/26/19 11:41,"219 Church St, Los Angeles, CA 90001" -318238,iPhone,1,700,12/26/19 11:41,"219 Church St, Los Angeles, CA 90001" -318239,ThinkPad Laptop,1,999.99,12/20/19 18:57,"327 11th St, Boston, MA 02215" -318240,Wired Headphones,1,11.99,12/01/19 22:39,"596 5th St, Los Angeles, CA 90001" -318241,USB-C Charging Cable,1,11.95,12/06/19 08:16,"145 Lakeview St, New York City, NY 10001" -318242,Google Phone,1,600,12/14/19 14:06,"331 West St, New York City, NY 10001" -318242,USB-C Charging Cable,1,11.95,12/14/19 14:06,"331 West St, New York City, NY 10001" -318243,Flatscreen TV,1,300,12/04/19 14:31,"427 Hill St, Los Angeles, CA 90001" -318244,34in Ultrawide Monitor,1,379.99,12/25/19 23:37,"273 Johnson St, Los Angeles, CA 90001" -318245,AAA Batteries (4-pack),1,2.99,12/06/19 14:25,"760 Spruce St, New York City, NY 10001" -318246,AAA Batteries (4-pack),1,2.99,12/20/19 18:15,"625 Lake St, Portland, OR 97035" -318247,34in Ultrawide Monitor,1,379.99,12/22/19 21:17,"388 1st St, Atlanta, GA 30301" -318248,LG Washing Machine,1,600.0,12/26/19 13:51,"721 Hickory St, Atlanta, GA 30301" -318249,Bose SoundSport Headphones,1,99.99,12/18/19 13:56,"28 Cedar St, Seattle, WA 98101" -318250,USB-C Charging Cable,1,11.95,12/28/19 17:18,"226 4th St, Los Angeles, CA 90001" -318251,Lightning Charging Cable,1,14.95,12/30/19 23:12,"474 1st St, Portland, OR 97035" -318252,USB-C Charging Cable,1,11.95,12/02/19 09:53,"966 Highland St, Portland, OR 97035" -318253,USB-C Charging Cable,1,11.95,12/12/19 21:50,"800 Lake St, Atlanta, GA 30301" -318254,AAA Batteries (4-pack),1,2.99,12/28/19 08:39,"840 Maple St, San Francisco, CA 94016" -318255,Wired Headphones,1,11.99,12/13/19 20:31,"37 Washington St, San Francisco, CA 94016" -318256,Wired Headphones,1,11.99,12/07/19 13:02,"384 Sunset St, Atlanta, GA 30301" -318257,27in 4K Gaming Monitor,1,389.99,12/12/19 14:30,"812 Madison St, San Francisco, CA 94016" -318258,ThinkPad Laptop,1,999.99,12/30/19 21:49,"666 Jefferson St, New York City, NY 10001" -318259,Vareebadd Phone,1,400,12/22/19 21:20,"156 9th St, San Francisco, CA 94016" -318259,Wired Headphones,1,11.99,12/22/19 21:20,"156 9th St, San Francisco, CA 94016" -318260,Flatscreen TV,1,300,12/25/19 13:04,"281 Cedar St, Los Angeles, CA 90001" -318261,USB-C Charging Cable,1,11.95,12/25/19 20:12,"712 Forest St, Portland, OR 97035" -318262,AA Batteries (4-pack),1,3.84,12/23/19 11:56,"303 Church St, San Francisco, CA 94016" -318263,27in FHD Monitor,1,149.99,12/03/19 13:08,"606 Hill St, Portland, ME 04101" -318264,USB-C Charging Cable,1,11.95,12/11/19 12:49,"692 5th St, Seattle, WA 98101" -318265,AAA Batteries (4-pack),3,2.99,12/06/19 18:02,"248 Dogwood St, San Francisco, CA 94016" -318266,Flatscreen TV,1,300,12/07/19 23:23,"510 Wilson St, Dallas, TX 75001" -318267,AAA Batteries (4-pack),4,2.99,12/20/19 12:50,"72 Washington St, Los Angeles, CA 90001" -318268,USB-C Charging Cable,1,11.95,12/16/19 17:23,"398 4th St, San Francisco, CA 94016" -318269,AAA Batteries (4-pack),1,2.99,12/02/19 11:51,"860 North St, San Francisco, CA 94016" -318270,Bose SoundSport Headphones,1,99.99,12/27/19 22:15,"321 Jackson St, Seattle, WA 98101" -318271,AA Batteries (4-pack),1,3.84,12/28/19 11:19,"995 6th St, Portland, OR 97035" -318272,27in FHD Monitor,1,149.99,12/13/19 13:15,"131 Lakeview St, Dallas, TX 75001" -318273,Wired Headphones,1,11.99,12/25/19 11:07,"496 11th St, Portland, ME 04101" -318274,Bose SoundSport Headphones,1,99.99,12/24/19 16:40,"342 Forest St, San Francisco, CA 94016" -318275,27in 4K Gaming Monitor,1,389.99,12/02/19 11:36,"267 12th St, Los Angeles, CA 90001" -318276,USB-C Charging Cable,2,11.95,12/26/19 16:32,"975 Wilson St, Los Angeles, CA 90001" -318277,Apple Airpods Headphones,1,150,12/12/19 13:24,"586 6th St, New York City, NY 10001" -318278,USB-C Charging Cable,1,11.95,12/26/19 00:29,"565 Willow St, San Francisco, CA 94016" -318279,AAA Batteries (4-pack),1,2.99,12/09/19 09:49,"160 Center St, San Francisco, CA 94016" -318280,AA Batteries (4-pack),1,3.84,12/11/19 15:59,"591 10th St, San Francisco, CA 94016" -318281,AAA Batteries (4-pack),1,2.99,12/18/19 21:56,"668 7th St, Los Angeles, CA 90001" -318282,Wired Headphones,1,11.99,12/12/19 20:10,"923 Highland St, Boston, MA 02215" -318283,ThinkPad Laptop,1,999.99,12/09/19 13:03,"595 North St, San Francisco, CA 94016" -318284,USB-C Charging Cable,1,11.95,12/17/19 13:54,"916 Hickory St, Portland, OR 97035" -318285,Lightning Charging Cable,1,14.95,12/28/19 11:08,"527 9th St, Seattle, WA 98101" -318286,Flatscreen TV,1,300,12/27/19 18:35,"965 Walnut St, Los Angeles, CA 90001" -318287,Bose SoundSport Headphones,1,99.99,12/24/19 07:47,"902 Walnut St, Atlanta, GA 30301" -318288,AAA Batteries (4-pack),1,2.99,12/22/19 17:43,"533 Hill St, San Francisco, CA 94016" -318289,USB-C Charging Cable,1,11.95,12/13/19 18:17,"702 Willow St, Seattle, WA 98101" -318290,AA Batteries (4-pack),1,3.84,12/16/19 18:34,"224 Highland St, Atlanta, GA 30301" -318291,Wired Headphones,1,11.99,12/28/19 19:59,"967 River St, New York City, NY 10001" -318292,Wired Headphones,1,11.99,12/23/19 18:53,"718 Jefferson St, Boston, MA 02215" -318293,Google Phone,1,600,12/18/19 08:43,"192 Lakeview St, New York City, NY 10001" -318294,Apple Airpods Headphones,1,150,12/28/19 22:57,"932 12th St, San Francisco, CA 94016" -318295,LG Washing Machine,1,600.0,12/24/19 19:11,"226 Johnson St, Los Angeles, CA 90001" -318296,Wired Headphones,1,11.99,12/22/19 08:32,"641 7th St, Dallas, TX 75001" -318296,AAA Batteries (4-pack),2,2.99,12/22/19 08:32,"641 7th St, Dallas, TX 75001" -318297,Lightning Charging Cable,1,14.95,12/02/19 14:30,"116 Cedar St, San Francisco, CA 94016" -318298,20in Monitor,1,109.99,12/11/19 07:25,"947 Willow St, San Francisco, CA 94016" -318299,Wired Headphones,1,11.99,12/09/19 09:01,"527 2nd St, Austin, TX 73301" -318300,USB-C Charging Cable,1,11.95,12/16/19 23:10,"101 Wilson St, Dallas, TX 75001" -318301,USB-C Charging Cable,1,11.95,12/06/19 07:56,"564 4th St, San Francisco, CA 94016" -318302,Bose SoundSport Headphones,1,99.99,12/14/19 10:53,"248 Johnson St, Los Angeles, CA 90001" -318303,AAA Batteries (4-pack),1,2.99,12/22/19 19:43,"63 Forest St, Boston, MA 02215" -318304,27in 4K Gaming Monitor,1,389.99,12/01/19 20:18,"960 Jefferson St, Seattle, WA 98101" -318305,Wired Headphones,1,11.99,12/05/19 11:06,"970 Madison St, Dallas, TX 75001" -318306,AA Batteries (4-pack),1,3.84,12/30/19 19:23,"249 9th St, San Francisco, CA 94016" -318307,Flatscreen TV,1,300,12/24/19 07:40,"15 Jackson St, San Francisco, CA 94016" -318308,Apple Airpods Headphones,1,150,12/28/19 21:13,"591 Johnson St, Los Angeles, CA 90001" -318309,AA Batteries (4-pack),2,3.84,12/05/19 16:58,"813 11th St, San Francisco, CA 94016" -318310,AA Batteries (4-pack),1,3.84,12/30/19 21:02,"391 Highland St, Los Angeles, CA 90001" -318311,Wired Headphones,1,11.99,12/06/19 20:30,"251 5th St, Dallas, TX 75001" -318312,USB-C Charging Cable,1,11.95,12/07/19 12:25,"473 North St, San Francisco, CA 94016" -318313,AAA Batteries (4-pack),1,2.99,12/27/19 15:46,"29 West St, Boston, MA 02215" -318314,34in Ultrawide Monitor,1,379.99,12/12/19 22:53,"753 Willow St, Los Angeles, CA 90001" -318315,20in Monitor,1,109.99,12/03/19 13:32,"759 6th St, New York City, NY 10001" -318316,Flatscreen TV,1,300,12/29/19 16:54,"455 1st St, Dallas, TX 75001" -318317,ThinkPad Laptop,1,999.99,12/26/19 18:52,"835 Park St, New York City, NY 10001" -318318,Wired Headphones,1,11.99,12/10/19 07:23,"997 Cherry St, New York City, NY 10001" -318319,AA Batteries (4-pack),1,3.84,12/23/19 18:10,"748 Chestnut St, New York City, NY 10001" -318320,Wired Headphones,1,11.99,12/30/19 15:26,"225 Highland St, Los Angeles, CA 90001" -318321,USB-C Charging Cable,1,11.95,12/19/19 22:53,"130 1st St, Los Angeles, CA 90001" -318322,AA Batteries (4-pack),2,3.84,12/06/19 16:15,"767 Madison St, Portland, OR 97035" -318323,Apple Airpods Headphones,1,150,12/11/19 11:35,"631 4th St, Boston, MA 02215" -318324,AA Batteries (4-pack),2,3.84,12/26/19 15:25,"774 Adams St, San Francisco, CA 94016" -318325,USB-C Charging Cable,1,11.95,12/20/19 14:14,"502 Meadow St, Atlanta, GA 30301" -318326,34in Ultrawide Monitor,1,379.99,12/02/19 23:30,"787 Spruce St, Portland, ME 04101" -318327,USB-C Charging Cable,1,11.95,12/22/19 13:27,"447 Wilson St, San Francisco, CA 94016" -318328,USB-C Charging Cable,2,11.95,12/19/19 18:10,"435 11th St, San Francisco, CA 94016" -318329,AA Batteries (4-pack),1,3.84,12/04/19 00:30,"817 Lincoln St, San Francisco, CA 94016" -318330,Lightning Charging Cable,1,14.95,12/08/19 19:01,"230 Meadow St, Seattle, WA 98101" -318331,USB-C Charging Cable,1,11.95,12/02/19 13:41,"338 Pine St, Atlanta, GA 30301" -318332,LG Washing Machine,1,600.0,12/20/19 14:52,"807 14th St, San Francisco, CA 94016" -318333,AA Batteries (4-pack),1,3.84,12/20/19 16:21,"984 Center St, Los Angeles, CA 90001" -318334,AA Batteries (4-pack),1,3.84,12/02/19 16:24,"787 Lakeview St, Dallas, TX 75001" -318335,USB-C Charging Cable,1,11.95,12/26/19 19:00,"54 Jefferson St, Los Angeles, CA 90001" -318336,Lightning Charging Cable,1,14.95,12/26/19 15:10,"115 9th St, San Francisco, CA 94016" -318337,Macbook Pro Laptop,1,1700,12/27/19 10:50,"211 1st St, Dallas, TX 75001" -318338,Wired Headphones,1,11.99,12/18/19 09:56,"422 Adams St, San Francisco, CA 94016" -318339,Vareebadd Phone,1,400,12/23/19 18:49,"751 Center St, Los Angeles, CA 90001" -318340,27in 4K Gaming Monitor,1,389.99,12/19/19 19:44,"554 Jefferson St, San Francisco, CA 94016" -318341,ThinkPad Laptop,1,999.99,12/20/19 16:48,"359 11th St, Los Angeles, CA 90001" -318342,Lightning Charging Cable,1,14.95,12/23/19 23:47,"73 Pine St, Seattle, WA 98101" -318343,ThinkPad Laptop,1,999.99,12/20/19 07:55,"168 Jackson St, Portland, OR 97035" -318344,27in 4K Gaming Monitor,1,389.99,12/08/19 13:25,"439 9th St, San Francisco, CA 94016" -318345,27in 4K Gaming Monitor,1,389.99,12/16/19 23:01,"512 5th St, Boston, MA 02215" -318346,AA Batteries (4-pack),2,3.84,12/25/19 01:58,"49 Walnut St, San Francisco, CA 94016" -318347,Wired Headphones,1,11.99,12/09/19 10:47,"669 Madison St, San Francisco, CA 94016" -318348,AA Batteries (4-pack),1,3.84,12/27/19 13:13,"801 Main St, San Francisco, CA 94016" -318349,Apple Airpods Headphones,1,150,12/13/19 21:44,"935 Pine St, Austin, TX 73301" -318350,Wired Headphones,1,11.99,12/26/19 05:47,"682 2nd St, San Francisco, CA 94016" -318351,Apple Airpods Headphones,1,150,12/25/19 17:33,"437 Church St, New York City, NY 10001" -318352,Lightning Charging Cable,1,14.95,12/07/19 17:55,"443 South St, Atlanta, GA 30301" -318353,AA Batteries (4-pack),1,3.84,12/16/19 12:24,"884 Jackson St, Portland, OR 97035" -318354,Apple Airpods Headphones,1,150,12/26/19 07:32,"958 Spruce St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -318355,AA Batteries (4-pack),3,3.84,12/26/19 10:59,"938 Willow St, Seattle, WA 98101" -318356,AA Batteries (4-pack),4,3.84,12/20/19 12:05,"775 Elm St, San Francisco, CA 94016" -318357,Wired Headphones,1,11.99,12/10/19 22:19,"352 Lakeview St, San Francisco, CA 94016" -318358,Bose SoundSport Headphones,1,99.99,12/25/19 16:47,"970 Willow St, Dallas, TX 75001" -318359,Wired Headphones,1,11.99,12/17/19 11:32,"716 2nd St, Atlanta, GA 30301" -318360,27in 4K Gaming Monitor,1,389.99,12/13/19 23:15,"456 14th St, San Francisco, CA 94016" -318361,Apple Airpods Headphones,1,150,12/27/19 16:22,"747 Meadow St, New York City, NY 10001" -318362,USB-C Charging Cable,1,11.95,12/24/19 06:23,"529 Center St, San Francisco, CA 94016" -318363,AA Batteries (4-pack),1,3.84,12/18/19 12:30,"170 Center St, New York City, NY 10001" -318364,Lightning Charging Cable,1,14.95,12/09/19 20:32,"950 Jefferson St, Los Angeles, CA 90001" -318365,AA Batteries (4-pack),1,3.84,12/06/19 21:13,"160 Johnson St, Los Angeles, CA 90001" -318366,Wired Headphones,1,11.99,12/03/19 14:57,"565 Lincoln St, Los Angeles, CA 90001" -318367,AAA Batteries (4-pack),1,2.99,12/04/19 14:19,"994 9th St, Seattle, WA 98101" -318368,USB-C Charging Cable,1,11.95,12/05/19 15:49,"591 Center St, San Francisco, CA 94016" -318369,Wired Headphones,1,11.99,12/28/19 08:25,"130 Madison St, San Francisco, CA 94016" -318370,USB-C Charging Cable,1,11.95,12/24/19 18:11,"577 7th St, Los Angeles, CA 90001" -318371,USB-C Charging Cable,1,11.95,12/28/19 10:07,"396 7th St, Los Angeles, CA 90001" -318372,Wired Headphones,1,11.99,12/23/19 23:45,"964 Cherry St, Los Angeles, CA 90001" -318373,AA Batteries (4-pack),1,3.84,12/08/19 07:43,"747 Willow St, Seattle, WA 98101" -318374,Wired Headphones,1,11.99,12/28/19 22:00,"574 Lakeview St, Boston, MA 02215" -318375,USB-C Charging Cable,1,11.95,12/20/19 20:08,"896 Adams St, Boston, MA 02215" -318376,ThinkPad Laptop,1,999.99,12/13/19 19:34,"37 Highland St, Portland, OR 97035" -318377,27in FHD Monitor,1,149.99,12/19/19 11:34,"81 2nd St, San Francisco, CA 94016" -318378,34in Ultrawide Monitor,1,379.99,12/09/19 13:33,"118 Forest St, Boston, MA 02215" -318379,AAA Batteries (4-pack),1,2.99,12/25/19 13:56,"149 Cherry St, Boston, MA 02215" -318380,AA Batteries (4-pack),1,3.84,12/19/19 20:34,"653 Elm St, New York City, NY 10001" -318381,34in Ultrawide Monitor,1,379.99,12/30/19 13:38,"235 North St, Los Angeles, CA 90001" -318382,AA Batteries (4-pack),1,3.84,12/30/19 00:54,"721 Spruce St, San Francisco, CA 94016" -318383,ThinkPad Laptop,1,999.99,12/14/19 20:06,"696 Church St, Portland, OR 97035" -318384,Wired Headphones,1,11.99,12/29/19 16:49,"187 13th St, San Francisco, CA 94016" -318385,Lightning Charging Cable,1,14.95,12/01/19 14:19,"847 Meadow St, Dallas, TX 75001" -318386,Bose SoundSport Headphones,1,99.99,12/13/19 14:09,"965 Jackson St, Portland, OR 97035" -318387,ThinkPad Laptop,1,999.99,12/07/19 14:01,"535 Center St, Los Angeles, CA 90001" -318388,Apple Airpods Headphones,1,150,12/23/19 11:24,"517 4th St, New York City, NY 10001" -318389,Apple Airpods Headphones,1,150,12/06/19 17:10,"525 Chestnut St, Los Angeles, CA 90001" -318390,USB-C Charging Cable,2,11.95,12/20/19 15:29,"655 13th St, Los Angeles, CA 90001" -318391,AAA Batteries (4-pack),1,2.99,12/22/19 13:40,"600 4th St, New York City, NY 10001" -318392,Apple Airpods Headphones,1,150,12/16/19 16:10,"567 Maple St, San Francisco, CA 94016" -318393,Apple Airpods Headphones,1,150,12/05/19 19:01,"401 2nd St, Boston, MA 02215" -318394,Apple Airpods Headphones,1,150,12/07/19 12:03,"199 1st St, Boston, MA 02215" -318395,Apple Airpods Headphones,1,150,12/21/19 18:21,"614 Cherry St, New York City, NY 10001" -318396,Lightning Charging Cable,1,14.95,12/09/19 15:12,"928 2nd St, San Francisco, CA 94016" -318397,Wired Headphones,1,11.99,12/16/19 11:31,"771 Center St, Los Angeles, CA 90001" -318398,Wired Headphones,1,11.99,12/28/19 08:01,"430 14th St, New York City, NY 10001" -318399,Lightning Charging Cable,1,14.95,12/17/19 20:53,"387 11th St, San Francisco, CA 94016" -318400,Lightning Charging Cable,1,14.95,12/16/19 09:56,"576 8th St, Boston, MA 02215" -318401,LG Dryer,1,600.0,12/02/19 11:23,"31 Dogwood St, Atlanta, GA 30301" -318402,Wired Headphones,1,11.99,12/13/19 20:21,"237 Main St, San Francisco, CA 94016" -318403,USB-C Charging Cable,1,11.95,12/02/19 10:12,"450 South St, Boston, MA 02215" -318404,AAA Batteries (4-pack),1,2.99,12/27/19 19:11,"959 Wilson St, New York City, NY 10001" -318405,20in Monitor,1,109.99,12/21/19 19:25,"662 Ridge St, Atlanta, GA 30301" -318406,27in 4K Gaming Monitor,1,389.99,12/12/19 07:51,"926 Johnson St, Atlanta, GA 30301" -318407,Lightning Charging Cable,1,14.95,12/17/19 07:09,"240 Johnson St, San Francisco, CA 94016" -318408,Vareebadd Phone,1,400,12/24/19 12:40,"305 1st St, Boston, MA 02215" -318408,USB-C Charging Cable,1,11.95,12/24/19 12:40,"305 1st St, Boston, MA 02215" -318409,Bose SoundSport Headphones,2,99.99,12/17/19 14:36,"856 Church St, San Francisco, CA 94016" -318410,AAA Batteries (4-pack),2,2.99,12/18/19 14:03,"736 11th St, Dallas, TX 75001" -318411,Bose SoundSport Headphones,1,99.99,12/19/19 13:13,"799 Park St, San Francisco, CA 94016" -318412,AA Batteries (4-pack),2,3.84,12/28/19 13:47,"127 4th St, Atlanta, GA 30301" -318413,AA Batteries (4-pack),3,3.84,12/04/19 12:18,"125 Maple St, Austin, TX 73301" -318414,iPhone,1,700,12/24/19 18:47,"464 Lincoln St, Los Angeles, CA 90001" -318415,Apple Airpods Headphones,1,150,12/20/19 16:53,"689 10th St, Los Angeles, CA 90001" -318416,AA Batteries (4-pack),1,3.84,12/19/19 22:28,"313 Center St, New York City, NY 10001" -318417,34in Ultrawide Monitor,1,379.99,12/29/19 20:22,"894 Forest St, San Francisco, CA 94016" -318418,ThinkPad Laptop,1,999.99,12/10/19 21:44,"913 12th St, Los Angeles, CA 90001" -318419,USB-C Charging Cable,2,11.95,12/01/19 22:50,"274 Main St, Los Angeles, CA 90001" -318420,AA Batteries (4-pack),1,3.84,12/19/19 11:21,"463 River St, Dallas, TX 75001" -318421,USB-C Charging Cable,1,11.95,12/23/19 20:58,"126 8th St, New York City, NY 10001" -318421,Macbook Pro Laptop,1,1700,12/23/19 20:58,"126 8th St, New York City, NY 10001" -318422,USB-C Charging Cable,1,11.95,12/16/19 16:20,"690 Hickory St, Austin, TX 73301" -318423,AA Batteries (4-pack),1,3.84,12/24/19 12:16,"927 Pine St, Dallas, TX 75001" -318424,Lightning Charging Cable,1,14.95,12/12/19 16:02,"418 6th St, Atlanta, GA 30301" -318425,34in Ultrawide Monitor,1,379.99,12/30/19 12:16,"389 4th St, New York City, NY 10001" -318426,Bose SoundSport Headphones,1,99.99,12/04/19 13:57,"942 North St, San Francisco, CA 94016" -318427,Lightning Charging Cable,1,14.95,12/24/19 18:54,"949 Spruce St, Los Angeles, CA 90001" -318428,USB-C Charging Cable,1,11.95,12/18/19 12:08,"463 Dogwood St, Los Angeles, CA 90001" -318429,AAA Batteries (4-pack),1,2.99,12/06/19 11:14,"645 Johnson St, New York City, NY 10001" -318430,AA Batteries (4-pack),1,3.84,12/18/19 10:59,"747 13th St, Portland, OR 97035" -318431,27in FHD Monitor,1,149.99,12/12/19 09:01,"159 10th St, Los Angeles, CA 90001" -318432,Lightning Charging Cable,1,14.95,12/11/19 13:08,"847 Pine St, Austin, TX 73301" -318433,AA Batteries (4-pack),2,3.84,12/31/19 09:53,"485 Ridge St, Los Angeles, CA 90001" -318434,Lightning Charging Cable,2,14.95,12/17/19 21:14,"506 10th St, Los Angeles, CA 90001" -318435,AAA Batteries (4-pack),1,2.99,12/23/19 19:44,"305 North St, San Francisco, CA 94016" -318436,AA Batteries (4-pack),1,3.84,12/22/19 12:12,"252 Madison St, Boston, MA 02215" -318437,AAA Batteries (4-pack),1,2.99,12/09/19 23:29,"958 Washington St, Seattle, WA 98101" -318438,Wired Headphones,1,11.99,12/07/19 12:40,"452 9th St, Dallas, TX 75001" -318438,USB-C Charging Cable,1,11.95,12/07/19 12:40,"452 9th St, Dallas, TX 75001" -318439,27in 4K Gaming Monitor,1,389.99,12/03/19 20:50,"183 Washington St, Austin, TX 73301" -318440,20in Monitor,1,109.99,12/27/19 13:13,"363 North St, Boston, MA 02215" -318441,27in FHD Monitor,1,149.99,12/08/19 16:21,"209 10th St, Boston, MA 02215" -318442,Lightning Charging Cable,1,14.95,12/02/19 21:54,"599 Adams St, Boston, MA 02215" -318443,Google Phone,1,600,12/11/19 07:34,"607 Chestnut St, San Francisco, CA 94016" -318443,USB-C Charging Cable,1,11.95,12/11/19 07:34,"607 Chestnut St, San Francisco, CA 94016" -318444,34in Ultrawide Monitor,1,379.99,12/24/19 11:50,"49 Dogwood St, San Francisco, CA 94016" -318445,Google Phone,1,600,12/22/19 10:52,"780 Ridge St, Boston, MA 02215" -318445,AA Batteries (4-pack),1,3.84,12/22/19 10:52,"780 Ridge St, Boston, MA 02215" -318446,Bose SoundSport Headphones,1,99.99,12/30/19 14:24,"10 Jackson St, San Francisco, CA 94016" -318447,AA Batteries (4-pack),1,3.84,12/10/19 21:58,"709 Ridge St, Dallas, TX 75001" -318448,20in Monitor,1,109.99,12/24/19 23:59,"632 Park St, Portland, OR 97035" -318449,AA Batteries (4-pack),1,3.84,12/27/19 22:58,"24 9th St, Dallas, TX 75001" -318450,Wired Headphones,1,11.99,12/21/19 12:58,"477 Walnut St, New York City, NY 10001" -318451,Bose SoundSport Headphones,1,99.99,12/10/19 08:08,"939 Elm St, Los Angeles, CA 90001" -318452,34in Ultrawide Monitor,1,379.99,12/06/19 22:10,"524 River St, New York City, NY 10001" -318453,iPhone,1,700,12/18/19 12:07,"462 Wilson St, Austin, TX 73301" -318453,Lightning Charging Cable,1,14.95,12/18/19 12:07,"462 Wilson St, Austin, TX 73301" -318454,Apple Airpods Headphones,1,150,12/18/19 11:32,"151 Spruce St, New York City, NY 10001" -318455,Apple Airpods Headphones,1,150,12/31/19 21:06,"158 Pine St, Austin, TX 73301" -318456,USB-C Charging Cable,1,11.95,12/29/19 19:40,"825 6th St, San Francisco, CA 94016" -318457,USB-C Charging Cable,2,11.95,12/26/19 21:08,"650 14th St, Boston, MA 02215" -318458,iPhone,1,700,12/31/19 20:33,"693 4th St, New York City, NY 10001" -318458,Apple Airpods Headphones,1,150,12/31/19 20:33,"693 4th St, New York City, NY 10001" -318459,USB-C Charging Cable,1,11.95,12/05/19 08:48,"506 7th St, New York City, NY 10001" -318460,27in 4K Gaming Monitor,1,389.99,12/30/19 08:07,"754 13th St, San Francisco, CA 94016" -318461,USB-C Charging Cable,1,11.95,12/23/19 14:43,"250 Maple St, Boston, MA 02215" -318462,27in FHD Monitor,1,149.99,12/23/19 23:27,"692 Church St, Los Angeles, CA 90001" -318463,AA Batteries (4-pack),1,3.84,12/28/19 10:29,"795 Lincoln St, Los Angeles, CA 90001" -318464,AAA Batteries (4-pack),1,2.99,12/24/19 21:22,"177 Cherry St, Atlanta, GA 30301" -318465,AA Batteries (4-pack),1,3.84,12/08/19 17:47,"972 Cherry St, Seattle, WA 98101" -318466,USB-C Charging Cable,1,11.95,12/19/19 12:21,"581 Cherry St, San Francisco, CA 94016" -318467,Wired Headphones,1,11.99,12/10/19 16:52,"808 14th St, Boston, MA 02215" -318468,Lightning Charging Cable,1,14.95,12/03/19 20:11,"606 Washington St, San Francisco, CA 94016" -318469,Wired Headphones,1,11.99,12/13/19 16:22,"448 Hickory St, San Francisco, CA 94016" -318470,AA Batteries (4-pack),1,3.84,12/18/19 20:07,"516 1st St, Los Angeles, CA 90001" -318471,AAA Batteries (4-pack),1,2.99,12/07/19 14:52,"128 Highland St, Atlanta, GA 30301" -318472,USB-C Charging Cable,1,11.95,12/29/19 11:15,"58 Lincoln St, New York City, NY 10001" -318473,Wired Headphones,1,11.99,12/04/19 11:36,"823 1st St, Austin, TX 73301" -318474,Apple Airpods Headphones,1,150,12/11/19 14:50,"639 Cherry St, New York City, NY 10001" -318475,Wired Headphones,1,11.99,12/27/19 20:47,"569 8th St, Portland, OR 97035" -318476,USB-C Charging Cable,1,11.95,12/11/19 22:28,"172 Center St, Portland, OR 97035" -318477,AA Batteries (4-pack),1,3.84,12/09/19 21:51,"374 Adams St, San Francisco, CA 94016" -318478,Lightning Charging Cable,2,14.95,12/01/19 14:08,"40 Maple St, New York City, NY 10001" -318479,Lightning Charging Cable,1,14.95,12/14/19 14:18,"516 Lake St, Portland, OR 97035" -318480,Flatscreen TV,1,300,12/31/19 13:12,"335 2nd St, San Francisco, CA 94016" -318481,Bose SoundSport Headphones,1,99.99,12/08/19 15:58,"562 Adams St, Boston, MA 02215" -318482,AA Batteries (4-pack),1,3.84,12/10/19 20:14,"536 6th St, New York City, NY 10001" -318483,Lightning Charging Cable,1,14.95,12/03/19 13:17,"644 Adams St, Boston, MA 02215" -318484,Vareebadd Phone,1,400,12/06/19 17:28,"635 Madison St, Los Angeles, CA 90001" -318485,Apple Airpods Headphones,1,150,12/01/19 13:22,"81 Ridge St, San Francisco, CA 94016" -318486,Bose SoundSport Headphones,1,99.99,12/18/19 19:17,"65 7th St, San Francisco, CA 94016" -318487,iPhone,1,700,12/25/19 21:51,"196 Ridge St, San Francisco, CA 94016" -318488,AAA Batteries (4-pack),1,2.99,12/20/19 11:03,"519 Hickory St, Austin, TX 73301" -318489,USB-C Charging Cable,1,11.95,12/12/19 22:14,"406 West St, San Francisco, CA 94016" -318490,Bose SoundSport Headphones,1,99.99,12/28/19 01:21,"773 Main St, Atlanta, GA 30301" -318491,AAA Batteries (4-pack),1,2.99,12/13/19 20:31,"72 Maple St, Atlanta, GA 30301" -318492,Bose SoundSport Headphones,1,99.99,12/07/19 15:15,"84 12th St, San Francisco, CA 94016" -318493,USB-C Charging Cable,2,11.95,12/04/19 17:01,"935 Lake St, Dallas, TX 75001" -318494,Macbook Pro Laptop,1,1700,12/19/19 11:46,"873 1st St, New York City, NY 10001" -318495,Wired Headphones,1,11.99,12/21/19 11:24,"38 Wilson St, Los Angeles, CA 90001" -318496,USB-C Charging Cable,1,11.95,12/07/19 17:08,"348 Church St, Seattle, WA 98101" -318497,Bose SoundSport Headphones,1,99.99,12/16/19 00:31,"518 13th St, Boston, MA 02215" -318498,AA Batteries (4-pack),1,3.84,12/29/19 11:39,"709 Church St, San Francisco, CA 94016" -318499,27in FHD Monitor,1,149.99,12/26/19 17:30,"386 Ridge St, San Francisco, CA 94016" -318500,AAA Batteries (4-pack),1,2.99,12/25/19 18:25,"794 14th St, New York City, NY 10001" -318501,AAA Batteries (4-pack),1,2.99,12/21/19 22:27,"770 Dogwood St, Dallas, TX 75001" -318502,Wired Headphones,1,11.99,12/08/19 12:34,"140 Dogwood St, Portland, OR 97035" -318503,AAA Batteries (4-pack),2,2.99,12/05/19 13:11,"134 8th St, Dallas, TX 75001" -318504,Apple Airpods Headphones,1,150,12/27/19 00:31,"837 Spruce St, Seattle, WA 98101" -318505,Wired Headphones,1,11.99,12/22/19 11:51,"547 Adams St, San Francisco, CA 94016" -318506,AA Batteries (4-pack),2,3.84,12/08/19 10:48,"553 7th St, Los Angeles, CA 90001" -318507,27in FHD Monitor,1,149.99,12/19/19 08:20,"224 Forest St, Los Angeles, CA 90001" -318508,20in Monitor,1,109.99,12/09/19 11:31,"886 7th St, Boston, MA 02215" -318509,27in 4K Gaming Monitor,1,389.99,12/09/19 02:42,"169 Cedar St, Los Angeles, CA 90001" -318510,Macbook Pro Laptop,1,1700,12/27/19 15:27,"911 Lake St, San Francisco, CA 94016" -318511,Bose SoundSport Headphones,1,99.99,12/29/19 21:10,"558 Elm St, San Francisco, CA 94016" -318512,AAA Batteries (4-pack),1,2.99,12/14/19 20:08,"732 Maple St, Los Angeles, CA 90001" -318512,AA Batteries (4-pack),1,3.84,12/14/19 20:08,"732 Maple St, Los Angeles, CA 90001" -318513,Wired Headphones,1,11.99,12/03/19 13:01,"392 Johnson St, Los Angeles, CA 90001" -318514,Wired Headphones,1,11.99,12/02/19 17:03,"165 4th St, Atlanta, GA 30301" -318515,Wired Headphones,1,11.99,12/30/19 09:42,"937 Madison St, Seattle, WA 98101" -318516,ThinkPad Laptop,1,999.99,12/02/19 14:36,"819 Meadow St, San Francisco, CA 94016" -318517,USB-C Charging Cable,1,11.95,12/05/19 06:26,"730 Jackson St, San Francisco, CA 94016" -318518,Wired Headphones,1,11.99,12/16/19 06:08,"859 Forest St, Boston, MA 02215" -318519,Flatscreen TV,1,300,12/14/19 10:53,"141 Dogwood St, New York City, NY 10001" -318520,AA Batteries (4-pack),3,3.84,12/15/19 15:00,"227 West St, Austin, TX 73301" -318521,AAA Batteries (4-pack),1,2.99,12/28/19 20:14,"585 Sunset St, Austin, TX 73301" -318522,Lightning Charging Cable,1,14.95,12/25/19 19:00,"859 Hickory St, San Francisco, CA 94016" -318523,AAA Batteries (4-pack),1,2.99,12/09/19 19:51,"928 Johnson St, Dallas, TX 75001" -318524,Wired Headphones,1,11.99,12/20/19 21:20,"86 14th St, San Francisco, CA 94016" -318525,27in FHD Monitor,1,149.99,12/30/19 22:01,"206 Washington St, San Francisco, CA 94016" -318526,Google Phone,1,600,12/11/19 10:35,"358 14th St, New York City, NY 10001" -318527,Lightning Charging Cable,1,14.95,12/25/19 09:34,"358 9th St, Austin, TX 73301" -318528,AAA Batteries (4-pack),1,2.99,12/01/19 12:25,"89 4th St, Atlanta, GA 30301" -318529,Apple Airpods Headphones,1,150,12/13/19 15:35,"946 12th St, Portland, ME 04101" -318530,Wired Headphones,1,11.99,12/25/19 06:42,"578 Johnson St, San Francisco, CA 94016" -318531,Apple Airpods Headphones,1,150,12/21/19 01:04,"579 Elm St, Los Angeles, CA 90001" -318532,Apple Airpods Headphones,1,150,12/27/19 18:48,"873 Highland St, Los Angeles, CA 90001" -318533,Lightning Charging Cable,1,14.95,12/30/19 14:46,"98 River St, Boston, MA 02215" -318534,Macbook Pro Laptop,1,1700,12/29/19 17:16,"971 7th St, San Francisco, CA 94016" -318535,AAA Batteries (4-pack),1,2.99,12/16/19 13:40,"288 Spruce St, San Francisco, CA 94016" -318536,AAA Batteries (4-pack),2,2.99,12/15/19 11:43,"638 South St, Boston, MA 02215" -318537,USB-C Charging Cable,1,11.95,12/15/19 09:12,"32 Spruce St, San Francisco, CA 94016" -318538,AA Batteries (4-pack),1,3.84,12/10/19 18:41,"116 Spruce St, San Francisco, CA 94016" -318539,27in FHD Monitor,1,149.99,12/09/19 15:09,"768 Lake St, San Francisco, CA 94016" -318540,Wired Headphones,1,11.99,12/26/19 11:34,"650 6th St, New York City, NY 10001" -318541,Bose SoundSport Headphones,1,99.99,12/08/19 21:19,"206 7th St, San Francisco, CA 94016" -318542,iPhone,1,700,12/10/19 13:31,"937 Lake St, Atlanta, GA 30301" -318542,Wired Headphones,1,11.99,12/10/19 13:31,"937 Lake St, Atlanta, GA 30301" -318543,AAA Batteries (4-pack),1,2.99,12/06/19 19:30,"544 7th St, San Francisco, CA 94016" -318544,AAA Batteries (4-pack),1,2.99,12/02/19 20:46,"258 1st St, San Francisco, CA 94016" -318545,Apple Airpods Headphones,1,150,12/29/19 09:12,"197 11th St, Austin, TX 73301" -318546,Flatscreen TV,1,300,12/15/19 16:29,"232 Washington St, Los Angeles, CA 90001" -318547,AA Batteries (4-pack),1,3.84,12/29/19 19:43,"877 Sunset St, Austin, TX 73301" -318548,Wired Headphones,1,11.99,12/15/19 18:49,"653 Madison St, Boston, MA 02215" -318549,27in 4K Gaming Monitor,1,389.99,12/10/19 11:27,"22 14th St, Boston, MA 02215" -318550,Google Phone,1,600,12/04/19 19:47,"572 Washington St, Portland, OR 97035" -318551,Macbook Pro Laptop,1,1700,12/02/19 15:35,"898 Spruce St, Portland, ME 04101" -318552,Apple Airpods Headphones,1,150,12/16/19 11:51,"541 Jefferson St, New York City, NY 10001" -318553,AA Batteries (4-pack),1,3.84,12/13/19 17:04,"842 Cedar St, Atlanta, GA 30301" -318554,Lightning Charging Cable,1,14.95,12/16/19 19:51,"806 North St, San Francisco, CA 94016" -318555,Apple Airpods Headphones,1,150,12/29/19 23:57,"160 Madison St, Dallas, TX 75001" -318556,Lightning Charging Cable,1,14.95,12/23/19 21:50,"293 North St, Boston, MA 02215" -318557,Apple Airpods Headphones,1,150,12/28/19 19:07,"455 6th St, Portland, OR 97035" -318558,AA Batteries (4-pack),1,3.84,12/30/19 09:04,"11 4th St, Atlanta, GA 30301" -318559,AAA Batteries (4-pack),1,2.99,12/24/19 21:49,"393 Willow St, San Francisco, CA 94016" -318560,AA Batteries (4-pack),1,3.84,12/07/19 15:49,"761 West St, Portland, OR 97035" -318561,AAA Batteries (4-pack),1,2.99,12/13/19 21:02,"491 9th St, New York City, NY 10001" -318562,USB-C Charging Cable,1,11.95,12/18/19 20:55,"280 Lake St, New York City, NY 10001" -318563,Flatscreen TV,1,300,12/28/19 15:36,"547 Sunset St, Los Angeles, CA 90001" -318564,Vareebadd Phone,1,400,12/04/19 18:13,"754 Cherry St, Atlanta, GA 30301" -318564,Bose SoundSport Headphones,1,99.99,12/04/19 18:13,"754 Cherry St, Atlanta, GA 30301" -318565,AA Batteries (4-pack),1,3.84,12/27/19 18:13,"358 Hill St, San Francisco, CA 94016" -318566,Lightning Charging Cable,1,14.95,12/08/19 10:35,"245 Hill St, Los Angeles, CA 90001" -318567,Google Phone,1,600,12/05/19 01:32,"564 Adams St, Los Angeles, CA 90001" -318568,AA Batteries (4-pack),4,3.84,12/22/19 22:58,"742 Hickory St, Austin, TX 73301" -318569,Vareebadd Phone,1,400,12/19/19 12:24,"144 Chestnut St, Seattle, WA 98101" -318570,Apple Airpods Headphones,1,150,12/03/19 12:44,"637 River St, New York City, NY 10001" -318571,AAA Batteries (4-pack),6,2.99,12/15/19 13:37,"309 Highland St, Portland, OR 97035" -318572,AAA Batteries (4-pack),2,2.99,12/25/19 16:18,"928 5th St, San Francisco, CA 94016" -318573,Lightning Charging Cable,1,14.95,12/23/19 16:34,"449 Pine St, New York City, NY 10001" -318574,Bose SoundSport Headphones,1,99.99,12/30/19 13:22,"616 Hickory St, Dallas, TX 75001" -318575,USB-C Charging Cable,1,11.95,12/23/19 12:18,"867 Maple St, Portland, ME 04101" -318576,AA Batteries (4-pack),3,3.84,12/10/19 07:48,"134 Ridge St, Austin, TX 73301" -318577,Lightning Charging Cable,1,14.95,12/30/19 11:22,"661 Cherry St, Boston, MA 02215" -318578,AAA Batteries (4-pack),1,2.99,12/27/19 13:26,"639 Spruce St, New York City, NY 10001" -318579,Bose SoundSport Headphones,1,99.99,12/16/19 18:57,"146 4th St, Austin, TX 73301" -318580,AA Batteries (4-pack),1,3.84,12/21/19 15:30,"672 10th St, Boston, MA 02215" -318581,iPhone,1,700,12/16/19 10:36,"959 Lakeview St, San Francisco, CA 94016" -318582,Bose SoundSport Headphones,1,99.99,12/10/19 08:33,"635 River St, Portland, ME 04101" -318583,Apple Airpods Headphones,1,150,12/04/19 11:06,"769 River St, Atlanta, GA 30301" -318584,AA Batteries (4-pack),1,3.84,12/05/19 20:54,"770 6th St, Austin, TX 73301" -318584,iPhone,1,700,12/05/19 20:54,"770 6th St, Austin, TX 73301" -318585,ThinkPad Laptop,1,999.99,12/03/19 23:31,"515 Wilson St, Seattle, WA 98101" -318586,27in 4K Gaming Monitor,1,389.99,12/03/19 15:50,"7 Jefferson St, Boston, MA 02215" -318587,Lightning Charging Cable,1,14.95,12/03/19 20:27,"686 Lincoln St, Seattle, WA 98101" -318588,AAA Batteries (4-pack),1,2.99,12/23/19 20:01,"357 8th St, Los Angeles, CA 90001" -318589,Lightning Charging Cable,1,14.95,12/22/19 16:02,"574 Cedar St, New York City, NY 10001" -318590,USB-C Charging Cable,1,11.95,12/01/19 07:03,"12 Wilson St, New York City, NY 10001" -,,,,, -318591,27in 4K Gaming Monitor,1,389.99,12/22/19 07:45,"597 North St, New York City, NY 10001" -318592,Wired Headphones,1,11.99,12/04/19 17:00,"890 11th St, San Francisco, CA 94016" -318593,Wired Headphones,1,11.99,12/12/19 21:06,"63 Lake St, San Francisco, CA 94016" -318594,AA Batteries (4-pack),1,3.84,12/28/19 22:01,"187 Cherry St, Los Angeles, CA 90001" -318595,Lightning Charging Cable,1,14.95,12/26/19 14:01,"815 Sunset St, New York City, NY 10001" -318596,Apple Airpods Headphones,1,150,12/05/19 09:00,"593 1st St, New York City, NY 10001" -318597,27in FHD Monitor,1,149.99,12/31/19 16:00,"314 Chestnut St, Seattle, WA 98101" -318598,27in 4K Gaming Monitor,1,389.99,12/02/19 18:43,"323 Johnson St, San Francisco, CA 94016" -318599,ThinkPad Laptop,1,999.99,12/28/19 20:45,"823 Hickory St, Los Angeles, CA 90001" -318600,Bose SoundSport Headphones,1,99.99,12/11/19 11:47,"389 Hickory St, New York City, NY 10001" -318601,Lightning Charging Cable,1,14.95,12/24/19 16:32,"579 Chestnut St, Seattle, WA 98101" -318602,Lightning Charging Cable,1,14.95,12/08/19 05:55,"881 Meadow St, Dallas, TX 75001" -318603,Wired Headphones,1,11.99,12/02/19 22:48,"843 1st St, Los Angeles, CA 90001" -318604,USB-C Charging Cable,1,11.95,12/13/19 19:25,"377 Washington St, Seattle, WA 98101" -318605,Flatscreen TV,1,300,12/25/19 12:11,"943 Maple St, Atlanta, GA 30301" -318606,AAA Batteries (4-pack),1,2.99,12/11/19 12:29,"426 5th St, Boston, MA 02215" -318607,AAA Batteries (4-pack),3,2.99,12/13/19 11:45,"142 Washington St, Portland, OR 97035" -318608,Macbook Pro Laptop,1,1700,12/05/19 20:33,"208 Cherry St, Atlanta, GA 30301" -318609,Lightning Charging Cable,1,14.95,12/04/19 21:43,"782 11th St, Austin, TX 73301" -318610,34in Ultrawide Monitor,1,379.99,12/12/19 17:57,"134 6th St, San Francisco, CA 94016" -318611,Wired Headphones,1,11.99,12/17/19 14:13,"220 Pine St, San Francisco, CA 94016" -318612,Lightning Charging Cable,1,14.95,12/23/19 11:09,"704 Spruce St, San Francisco, CA 94016" -318613,USB-C Charging Cable,1,11.95,12/22/19 08:11,"703 Church St, Los Angeles, CA 90001" -318614,Wired Headphones,1,11.99,12/31/19 14:05,"838 Forest St, New York City, NY 10001" -318615,Apple Airpods Headphones,1,150,12/24/19 20:53,"381 Johnson St, Boston, MA 02215" -318616,Lightning Charging Cable,1,14.95,12/25/19 11:46,"412 Washington St, New York City, NY 10001" -318617,iPhone,1,700,12/26/19 00:04,"763 11th St, San Francisco, CA 94016" -318618,27in FHD Monitor,1,149.99,12/19/19 13:09,"810 Hill St, New York City, NY 10001" -318619,AAA Batteries (4-pack),1,2.99,12/21/19 15:21,"30 Pine St, Boston, MA 02215" -318620,Flatscreen TV,1,300,12/13/19 13:12,"916 Adams St, Dallas, TX 75001" -318621,Bose SoundSport Headphones,1,99.99,12/19/19 21:51,"123 4th St, San Francisco, CA 94016" -318622,AA Batteries (4-pack),1,3.84,12/28/19 12:27,"796 Main St, Seattle, WA 98101" -318623,AA Batteries (4-pack),1,3.84,12/23/19 21:39,"427 Hill St, San Francisco, CA 94016" -318624,Lightning Charging Cable,1,14.95,12/13/19 19:03,"568 5th St, Dallas, TX 75001" -318625,Google Phone,1,600,12/11/19 13:10,"632 13th St, Atlanta, GA 30301" -318626,Bose SoundSport Headphones,1,99.99,12/20/19 10:49,"622 7th St, Seattle, WA 98101" -318627,27in FHD Monitor,1,149.99,12/06/19 08:21,"949 Chestnut St, Boston, MA 02215" -318628,Lightning Charging Cable,1,14.95,12/02/19 19:08,"870 7th St, San Francisco, CA 94016" -318629,34in Ultrawide Monitor,1,379.99,12/16/19 13:33,"398 Chestnut St, Boston, MA 02215" -318630,27in FHD Monitor,1,149.99,12/25/19 17:50,"999 Cedar St, San Francisco, CA 94016" -318631,Bose SoundSport Headphones,1,99.99,12/27/19 13:16,"271 River St, San Francisco, CA 94016" -318632,20in Monitor,1,109.99,12/30/19 21:14,"651 North St, Los Angeles, CA 90001" -318633,USB-C Charging Cable,1,11.95,12/29/19 06:46,"332 North St, Atlanta, GA 30301" -318634,Macbook Pro Laptop,1,1700,12/25/19 19:24,"603 Spruce St, New York City, NY 10001" -318635,USB-C Charging Cable,1,11.95,12/07/19 21:20,"966 14th St, Seattle, WA 98101" -318636,AAA Batteries (4-pack),1,2.99,12/24/19 11:56,"156 Madison St, Los Angeles, CA 90001" -318636,Google Phone,1,600,12/24/19 11:56,"156 Madison St, Los Angeles, CA 90001" -318637,Wired Headphones,1,11.99,12/19/19 11:10,"350 Spruce St, Austin, TX 73301" -318638,AA Batteries (4-pack),1,3.84,12/19/19 14:32,"446 Center St, Dallas, TX 75001" -318639,Lightning Charging Cable,1,14.95,12/13/19 21:13,"227 12th St, Los Angeles, CA 90001" -318640,AAA Batteries (4-pack),2,2.99,12/06/19 16:38,"143 Lake St, San Francisco, CA 94016" -318641,Bose SoundSport Headphones,1,99.99,12/10/19 01:03,"513 Elm St, Seattle, WA 98101" -318642,Apple Airpods Headphones,1,150,12/25/19 14:31,"529 Adams St, San Francisco, CA 94016" -318643,Apple Airpods Headphones,1,150,12/13/19 09:39,"394 1st St, San Francisco, CA 94016" -318644,AAA Batteries (4-pack),1,2.99,12/17/19 18:43,"558 South St, Boston, MA 02215" -318645,Google Phone,1,600,12/10/19 11:19,"111 Lincoln St, Seattle, WA 98101" -318646,AAA Batteries (4-pack),1,2.99,12/26/19 20:07,"180 Adams St, Los Angeles, CA 90001" -318647,Apple Airpods Headphones,1,150,12/02/19 11:19,"199 Madison St, Los Angeles, CA 90001" -318648,27in 4K Gaming Monitor,1,389.99,12/20/19 14:52,"133 5th St, Portland, OR 97035" -318649,AAA Batteries (4-pack),2,2.99,12/02/19 11:15,"855 Lincoln St, San Francisco, CA 94016" -318650,27in FHD Monitor,1,149.99,12/01/19 12:32,"620 2nd St, San Francisco, CA 94016" -318651,Lightning Charging Cable,1,14.95,12/28/19 17:03,"931 Park St, New York City, NY 10001" -318652,Bose SoundSport Headphones,1,99.99,12/29/19 18:45,"862 Elm St, Boston, MA 02215" -318653,AA Batteries (4-pack),2,3.84,12/08/19 12:10,"309 Church St, San Francisco, CA 94016" -318654,Apple Airpods Headphones,1,150,12/02/19 14:21,"895 Walnut St, San Francisco, CA 94016" -318655,Wired Headphones,1,11.99,12/28/19 15:43,"234 12th St, San Francisco, CA 94016" -318655,ThinkPad Laptop,1,999.99,12/28/19 15:43,"234 12th St, San Francisco, CA 94016" -318656,Bose SoundSport Headphones,1,99.99,12/21/19 23:20,"296 2nd St, Seattle, WA 98101" -318657,Apple Airpods Headphones,1,150,12/19/19 16:36,"304 11th St, Los Angeles, CA 90001" -318658,Google Phone,1,600,12/09/19 11:47,"464 Lincoln St, San Francisco, CA 94016" -318659,Macbook Pro Laptop,1,1700,12/20/19 08:01,"492 Meadow St, Dallas, TX 75001" -318660,AAA Batteries (4-pack),2,2.99,12/22/19 21:43,"812 Hill St, Atlanta, GA 30301" -318661,AA Batteries (4-pack),1,3.84,12/08/19 13:20,"396 South St, Los Angeles, CA 90001" -318662,Wired Headphones,1,11.99,12/01/19 20:42,"902 Lake St, San Francisco, CA 94016" -318663,Flatscreen TV,1,300,12/06/19 05:09,"111 Hill St, San Francisco, CA 94016" -318664,Lightning Charging Cable,1,14.95,12/22/19 10:46,"575 10th St, San Francisco, CA 94016" -318665,iPhone,1,700,12/10/19 18:04,"864 Johnson St, San Francisco, CA 94016" -318666,AAA Batteries (4-pack),1,2.99,12/11/19 16:00,"12 Forest St, New York City, NY 10001" -318667,27in FHD Monitor,1,149.99,12/26/19 11:34,"158 10th St, Boston, MA 02215" -318668,Macbook Pro Laptop,1,1700,12/07/19 19:23,"925 Center St, Atlanta, GA 30301" -318669,34in Ultrawide Monitor,1,379.99,12/17/19 17:16,"797 Walnut St, Portland, OR 97035" -318670,Lightning Charging Cable,1,14.95,12/19/19 00:40,"324 Johnson St, Los Angeles, CA 90001" -318671,AAA Batteries (4-pack),1,2.99,12/16/19 13:25,"523 2nd St, Boston, MA 02215" -318672,Wired Headphones,1,11.99,12/02/19 13:03,"953 Washington St, San Francisco, CA 94016" -318673,Apple Airpods Headphones,1,150,12/11/19 16:26,"19 14th St, Dallas, TX 75001" -318674,AAA Batteries (4-pack),1,2.99,12/21/19 19:50,"29 Forest St, Dallas, TX 75001" -318674,AA Batteries (4-pack),1,3.84,12/21/19 19:50,"29 Forest St, Dallas, TX 75001" -318675,AA Batteries (4-pack),1,3.84,12/07/19 06:11,"675 Highland St, Seattle, WA 98101" -318676,AA Batteries (4-pack),3,3.84,12/06/19 05:47,"516 Forest St, San Francisco, CA 94016" -318677,Apple Airpods Headphones,1,150,12/15/19 19:34,"58 Ridge St, Seattle, WA 98101" -318678,AA Batteries (4-pack),1,3.84,12/23/19 13:17,"394 West St, San Francisco, CA 94016" -318679,AAA Batteries (4-pack),2,2.99,12/10/19 03:39,"352 14th St, Atlanta, GA 30301" -318680,Lightning Charging Cable,1,14.95,12/30/19 09:32,"440 Jefferson St, Atlanta, GA 30301" -318681,Apple Airpods Headphones,1,150,12/13/19 14:55,"155 9th St, San Francisco, CA 94016" -318682,Vareebadd Phone,1,400,12/18/19 17:23,"266 Cedar St, Los Angeles, CA 90001" -318682,Bose SoundSport Headphones,2,99.99,12/18/19 17:23,"266 Cedar St, Los Angeles, CA 90001" -318683,iPhone,1,700,12/23/19 15:48,"611 4th St, Seattle, WA 98101" -318684,AAA Batteries (4-pack),1,2.99,12/21/19 19:10,"95 Hill St, Los Angeles, CA 90001" -318685,AAA Batteries (4-pack),2,2.99,12/23/19 04:41,"561 Spruce St, Austin, TX 73301" -318685,Wired Headphones,1,11.99,12/23/19 04:41,"561 Spruce St, Austin, TX 73301" -318686,Macbook Pro Laptop,1,1700,12/05/19 15:33,"54 7th St, New York City, NY 10001" -318687,Apple Airpods Headphones,1,150,12/25/19 16:33,"582 12th St, San Francisco, CA 94016" -318688,27in 4K Gaming Monitor,1,389.99,12/13/19 17:10,"834 Jackson St, Boston, MA 02215" -318689,AA Batteries (4-pack),1,3.84,12/21/19 12:43,"234 Center St, Boston, MA 02215" -318690,20in Monitor,1,109.99,12/20/19 19:43,"899 Meadow St, San Francisco, CA 94016" -318691,27in 4K Gaming Monitor,1,389.99,12/26/19 20:17,"978 4th St, Portland, ME 04101" -318692,USB-C Charging Cable,3,11.95,12/21/19 10:11,"384 8th St, New York City, NY 10001" -318693,AAA Batteries (4-pack),1,2.99,12/20/19 20:06,"674 12th St, Los Angeles, CA 90001" -318694,Lightning Charging Cable,1,14.95,12/13/19 18:45,"652 6th St, Portland, OR 97035" -318695,27in FHD Monitor,1,149.99,12/25/19 22:21,"171 Main St, Los Angeles, CA 90001" -318696,iPhone,1,700,12/21/19 12:16,"482 Hickory St, San Francisco, CA 94016" -318697,Macbook Pro Laptop,1,1700,12/22/19 19:37,"930 Cherry St, Los Angeles, CA 90001" -318698,iPhone,1,700,12/04/19 14:06,"240 South St, Dallas, TX 75001" -318699,Bose SoundSport Headphones,1,99.99,12/11/19 09:46,"626 2nd St, Portland, OR 97035" -318700,Apple Airpods Headphones,1,150,12/13/19 05:49,"148 8th St, New York City, NY 10001" -318701,AA Batteries (4-pack),1,3.84,12/30/19 14:47,"30 Lake St, Boston, MA 02215" -318702,27in FHD Monitor,1,149.99,12/12/19 12:53,"222 Wilson St, Dallas, TX 75001" -318703,Lightning Charging Cable,1,14.95,12/08/19 15:02,"990 11th St, Atlanta, GA 30301" -318704,iPhone,1,700,12/16/19 20:41,"96 1st St, San Francisco, CA 94016" -318704,Lightning Charging Cable,1,14.95,12/16/19 20:41,"96 1st St, San Francisco, CA 94016" -318705,AAA Batteries (4-pack),1,2.99,12/02/19 11:24,"27 10th St, Boston, MA 02215" -318706,USB-C Charging Cable,1,11.95,12/18/19 23:02,"859 Center St, San Francisco, CA 94016" -318707,Vareebadd Phone,1,400,12/17/19 16:26,"380 Center St, Seattle, WA 98101" -318708,Apple Airpods Headphones,1,150,12/10/19 11:40,"533 Lake St, Austin, TX 73301" -318709,ThinkPad Laptop,1,999.99,12/29/19 01:44,"494 North St, Seattle, WA 98101" -318710,AA Batteries (4-pack),1,3.84,12/11/19 10:49,"100 2nd St, Dallas, TX 75001" -318711,ThinkPad Laptop,1,999.99,12/19/19 13:43,"444 Main St, Atlanta, GA 30301" -318712,Flatscreen TV,1,300,12/11/19 08:38,"583 Dogwood St, San Francisco, CA 94016" -318713,AA Batteries (4-pack),1,3.84,12/27/19 23:00,"663 4th St, New York City, NY 10001" -318714,27in 4K Gaming Monitor,1,389.99,12/26/19 10:55,"829 6th St, Los Angeles, CA 90001" -318715,AA Batteries (4-pack),2,3.84,12/09/19 02:13,"200 Highland St, Dallas, TX 75001" -318716,Macbook Pro Laptop,1,1700,12/06/19 19:06,"920 Sunset St, San Francisco, CA 94016" -318717,USB-C Charging Cable,1,11.95,12/01/19 15:16,"954 Maple St, Dallas, TX 75001" -318718,Lightning Charging Cable,1,14.95,12/11/19 22:43,"776 Chestnut St, San Francisco, CA 94016" -318719,AA Batteries (4-pack),1,3.84,12/21/19 11:37,"992 10th St, San Francisco, CA 94016" -318720,Apple Airpods Headphones,1,150,12/04/19 16:05,"189 Pine St, San Francisco, CA 94016" -318721,AA Batteries (4-pack),1,3.84,12/01/19 10:27,"315 Lake St, Atlanta, GA 30301" -318722,Flatscreen TV,1,300,12/14/19 11:33,"512 Jackson St, Dallas, TX 75001" -318723,AAA Batteries (4-pack),1,2.99,12/22/19 11:27,"983 Maple St, Boston, MA 02215" -318724,USB-C Charging Cable,1,11.95,12/22/19 11:46,"832 Dogwood St, Boston, MA 02215" -318725,USB-C Charging Cable,1,11.95,12/13/19 15:43,"334 Maple St, New York City, NY 10001" -318726,Wired Headphones,1,11.99,12/27/19 17:28,"793 9th St, New York City, NY 10001" -318727,Lightning Charging Cable,1,14.95,12/07/19 09:26,"6 River St, San Francisco, CA 94016" -318728,Flatscreen TV,1,300,12/31/19 23:11,"894 Adams St, Atlanta, GA 30301" -318729,Lightning Charging Cable,1,14.95,12/23/19 12:34,"176 7th St, Seattle, WA 98101" -318730,iPhone,1,700,12/26/19 17:31,"308 Johnson St, Seattle, WA 98101" -318731,Macbook Pro Laptop,1,1700,12/21/19 17:55,"539 5th St, Dallas, TX 75001" -318732,AA Batteries (4-pack),1,3.84,12/30/19 19:37,"323 Elm St, New York City, NY 10001" -318733,Wired Headphones,1,11.99,12/30/19 10:45,"634 Wilson St, Los Angeles, CA 90001" -318734,27in 4K Gaming Monitor,1,389.99,12/21/19 18:07,"458 7th St, Atlanta, GA 30301" -318735,USB-C Charging Cable,2,11.95,12/16/19 12:47,"822 West St, San Francisco, CA 94016" -318736,Apple Airpods Headphones,1,150,12/04/19 12:25,"992 Elm St, Portland, OR 97035" -318737,USB-C Charging Cable,1,11.95,12/08/19 15:14,"468 10th St, Los Angeles, CA 90001" -318738,AA Batteries (4-pack),1,3.84,12/27/19 15:06,"766 Adams St, Los Angeles, CA 90001" -318739,Bose SoundSport Headphones,1,99.99,12/13/19 14:12,"220 South St, Boston, MA 02215" -318740,USB-C Charging Cable,1,11.95,12/16/19 21:54,"148 10th St, Los Angeles, CA 90001" -318741,Flatscreen TV,1,300,12/21/19 12:18,"640 4th St, Los Angeles, CA 90001" -318742,USB-C Charging Cable,1,11.95,12/03/19 02:02,"645 Cherry St, Los Angeles, CA 90001" -318743,Lightning Charging Cable,1,14.95,12/07/19 08:57,"5 4th St, San Francisco, CA 94016" -318744,AA Batteries (4-pack),2,3.84,12/06/19 10:32,"813 Maple St, Dallas, TX 75001" -318745,USB-C Charging Cable,1,11.95,12/06/19 21:06,"628 South St, Atlanta, GA 30301" -318746,Apple Airpods Headphones,1,150,12/09/19 15:37,"898 Lake St, New York City, NY 10001" -318747,USB-C Charging Cable,1,11.95,12/27/19 10:29,"219 Church St, Los Angeles, CA 90001" -318748,Bose SoundSport Headphones,1,99.99,12/20/19 17:07,"320 Adams St, New York City, NY 10001" -318749,Lightning Charging Cable,1,14.95,12/30/19 17:22,"372 1st St, Austin, TX 73301" -318750,Google Phone,1,600,12/24/19 23:17,"49 Wilson St, Austin, TX 73301" -318751,AAA Batteries (4-pack),1,2.99,12/09/19 13:32,"704 6th St, Seattle, WA 98101" -318751,ThinkPad Laptop,1,999.99,12/09/19 13:32,"704 6th St, Seattle, WA 98101" -318752,Apple Airpods Headphones,1,150,12/12/19 17:13,"931 7th St, Austin, TX 73301" -318753,Lightning Charging Cable,1,14.95,12/19/19 05:58,"153 Lincoln St, Los Angeles, CA 90001" -318754,Apple Airpods Headphones,1,150,12/23/19 20:09,"117 13th St, Portland, OR 97035" -318755,Flatscreen TV,1,300,12/07/19 14:37,"917 Church St, New York City, NY 10001" -318756,20in Monitor,1,109.99,12/21/19 10:59,"450 Adams St, Los Angeles, CA 90001" -318757,20in Monitor,1,109.99,12/30/19 21:13,"230 Maple St, Los Angeles, CA 90001" -318758,Flatscreen TV,1,300,12/23/19 10:05,"323 Jefferson St, Boston, MA 02215" -318759,USB-C Charging Cable,1,11.95,12/30/19 20:51,"895 10th St, Portland, ME 04101" -318760,Apple Airpods Headphones,1,150,12/14/19 17:02,"579 9th St, Atlanta, GA 30301" -318761,AA Batteries (4-pack),1,3.84,12/17/19 09:43,"847 Washington St, Boston, MA 02215" -318762,AA Batteries (4-pack),1,3.84,12/15/19 22:48,"760 Highland St, Atlanta, GA 30301" -318763,Wired Headphones,2,11.99,12/25/19 12:58,"818 Hickory St, San Francisco, CA 94016" -318764,Wired Headphones,1,11.99,12/14/19 18:47,"315 8th St, Los Angeles, CA 90001" -318765,27in 4K Gaming Monitor,1,389.99,12/07/19 09:26,"918 South St, San Francisco, CA 94016" -318766,Macbook Pro Laptop,1,1700,12/12/19 14:55,"128 Dogwood St, Dallas, TX 75001" -318767,USB-C Charging Cable,1,11.95,12/20/19 15:38,"178 12th St, Atlanta, GA 30301" -318768,Google Phone,1,600,12/24/19 21:34,"284 River St, New York City, NY 10001" -318769,Google Phone,1,600,12/25/19 13:01,"689 Ridge St, San Francisco, CA 94016" -318770,Apple Airpods Headphones,1,150,12/30/19 23:41,"29 Church St, San Francisco, CA 94016" -318771,Google Phone,1,600,12/30/19 09:17,"937 Park St, San Francisco, CA 94016" -318772,27in 4K Gaming Monitor,1,389.99,12/29/19 09:17,"393 4th St, New York City, NY 10001" -318773,34in Ultrawide Monitor,1,379.99,12/23/19 21:11,"106 2nd St, New York City, NY 10001" -318774,Macbook Pro Laptop,1,1700,12/11/19 20:03,"483 Ridge St, Dallas, TX 75001" -318775,Wired Headphones,1,11.99,12/03/19 15:59,"676 West St, Los Angeles, CA 90001" -318776,Lightning Charging Cable,1,14.95,12/24/19 21:58,"23 Sunset St, Portland, ME 04101" -318777,34in Ultrawide Monitor,1,379.99,12/08/19 13:09,"347 Hill St, New York City, NY 10001" -318778,Lightning Charging Cable,1,14.95,12/15/19 20:13,"946 Meadow St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -318779,27in FHD Monitor,1,149.99,12/25/19 09:21,"312 Johnson St, New York City, NY 10001" -318780,Wired Headphones,1,11.99,12/26/19 11:04,"362 6th St, Atlanta, GA 30301" -318781,Bose SoundSport Headphones,1,99.99,12/27/19 10:52,"181 Church St, Boston, MA 02215" -318782,Apple Airpods Headphones,1,150,12/17/19 18:28,"127 Elm St, Los Angeles, CA 90001" -318783,Lightning Charging Cable,1,14.95,12/07/19 15:30,"241 12th St, San Francisco, CA 94016" -318784,Apple Airpods Headphones,1,150,12/13/19 13:22,"124 Dogwood St, Dallas, TX 75001" -318785,USB-C Charging Cable,1,11.95,12/27/19 06:14,"339 Hickory St, San Francisco, CA 94016" -318786,AAA Batteries (4-pack),1,2.99,12/28/19 23:22,"597 8th St, Los Angeles, CA 90001" -318787,AAA Batteries (4-pack),2,2.99,12/10/19 17:57,"213 14th St, Boston, MA 02215" -318788,Flatscreen TV,1,300,12/05/19 14:42,"572 9th St, Austin, TX 73301" -318789,Bose SoundSport Headphones,1,99.99,12/07/19 14:52,"186 5th St, Dallas, TX 75001" -318790,Apple Airpods Headphones,1,150,12/19/19 11:23,"407 Cherry St, Portland, OR 97035" -318790,Bose SoundSport Headphones,1,99.99,12/19/19 11:23,"407 Cherry St, Portland, OR 97035" -318791,Apple Airpods Headphones,1,150,12/13/19 23:38,"727 Cedar St, New York City, NY 10001" -318792,AA Batteries (4-pack),2,3.84,12/10/19 06:29,"708 Willow St, New York City, NY 10001" -318793,USB-C Charging Cable,1,11.95,12/07/19 11:16,"351 Spruce St, New York City, NY 10001" -318794,Bose SoundSport Headphones,1,99.99,12/13/19 09:46,"146 12th St, San Francisco, CA 94016" -318794,AA Batteries (4-pack),1,3.84,12/13/19 09:46,"146 12th St, San Francisco, CA 94016" -318795,Apple Airpods Headphones,1,150,12/15/19 15:43,"985 Hill St, San Francisco, CA 94016" -318796,Wired Headphones,1,11.99,12/23/19 13:19,"67 Ridge St, San Francisco, CA 94016" -318797,Apple Airpods Headphones,1,150,12/18/19 13:17,"846 Highland St, Los Angeles, CA 90001" -318798,Bose SoundSport Headphones,1,99.99,12/11/19 20:38,"261 South St, Boston, MA 02215" -318799,ThinkPad Laptop,1,999.99,12/27/19 21:51,"310 Elm St, Los Angeles, CA 90001" -318800,27in 4K Gaming Monitor,1,389.99,12/03/19 14:11,"953 10th St, Dallas, TX 75001" -318801,Flatscreen TV,1,300,12/28/19 19:46,"880 Elm St, New York City, NY 10001" -318802,iPhone,1,700,12/20/19 01:49,"600 Sunset St, San Francisco, CA 94016" -318803,Macbook Pro Laptop,1,1700,12/21/19 09:08,"739 Dogwood St, Seattle, WA 98101" -318804,Wired Headphones,1,11.99,12/27/19 19:46,"61 Cherry St, Dallas, TX 75001" -318805,ThinkPad Laptop,1,999.99,12/05/19 14:28,"819 14th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -318806,AAA Batteries (4-pack),1,2.99,12/09/19 12:37,"243 Sunset St, San Francisco, CA 94016" -318807,AAA Batteries (4-pack),1,2.99,12/26/19 19:37,"513 Walnut St, Los Angeles, CA 90001" -318808,Wired Headphones,1,11.99,12/08/19 15:28,"266 Lakeview St, San Francisco, CA 94016" -318809,iPhone,1,700,12/29/19 14:23,"25 Cherry St, Dallas, TX 75001" -318810,AAA Batteries (4-pack),1,2.99,12/21/19 13:01,"881 Church St, New York City, NY 10001" -318811,Apple Airpods Headphones,1,150,12/23/19 16:24,"415 13th St, Austin, TX 73301" -318812,USB-C Charging Cable,2,11.95,12/17/19 18:15,"699 12th St, Los Angeles, CA 90001" -318813,27in 4K Gaming Monitor,1,389.99,12/07/19 21:26,"162 Pine St, New York City, NY 10001" -318814,Vareebadd Phone,1,400,12/06/19 17:31,"934 Sunset St, Atlanta, GA 30301" -318815,USB-C Charging Cable,1,11.95,12/01/19 19:22,"366 Meadow St, San Francisco, CA 94016" -318816,27in FHD Monitor,1,149.99,12/05/19 08:24,"533 Elm St, Portland, OR 97035" -318817,Bose SoundSport Headphones,1,99.99,12/02/19 18:52,"487 Johnson St, Dallas, TX 75001" -318818,USB-C Charging Cable,1,11.95,12/02/19 14:54,"900 South St, San Francisco, CA 94016" -318819,Bose SoundSport Headphones,1,99.99,12/03/19 12:56,"829 10th St, Portland, OR 97035" -318820,AA Batteries (4-pack),1,3.84,12/26/19 19:12,"830 North St, Boston, MA 02215" -318821,27in 4K Gaming Monitor,1,389.99,12/07/19 11:43,"591 9th St, San Francisco, CA 94016" -318822,Wired Headphones,1,11.99,12/08/19 21:35,"930 10th St, Austin, TX 73301" -318823,USB-C Charging Cable,2,11.95,12/30/19 12:24,"374 1st St, New York City, NY 10001" -318824,Bose SoundSport Headphones,1,99.99,12/29/19 16:53,"378 Park St, San Francisco, CA 94016" -318825,Apple Airpods Headphones,1,150,12/08/19 07:32,"407 Park St, Atlanta, GA 30301" -318826,AA Batteries (4-pack),2,3.84,12/23/19 14:20,"848 2nd St, San Francisco, CA 94016" -318827,34in Ultrawide Monitor,1,379.99,12/05/19 18:38,"345 Spruce St, Seattle, WA 98101" -318828,Wired Headphones,1,11.99,12/15/19 09:53,"446 Sunset St, Atlanta, GA 30301" -318829,USB-C Charging Cable,1,11.95,12/07/19 17:09,"702 Hickory St, Los Angeles, CA 90001" -318830,USB-C Charging Cable,2,11.95,12/22/19 15:19,"90 Willow St, Portland, ME 04101" -318831,AAA Batteries (4-pack),1,2.99,12/21/19 19:36,"640 North St, Seattle, WA 98101" -318832,AAA Batteries (4-pack),3,2.99,12/21/19 11:17,"791 Hickory St, Atlanta, GA 30301" -318833,34in Ultrawide Monitor,1,379.99,12/13/19 22:03,"796 1st St, New York City, NY 10001" -318834,Apple Airpods Headphones,1,150,12/05/19 18:29,"967 Chestnut St, San Francisco, CA 94016" -318835,Flatscreen TV,1,300,12/30/19 19:53,"644 West St, San Francisco, CA 94016" -318836,27in 4K Gaming Monitor,1,389.99,12/22/19 10:51,"344 Washington St, Los Angeles, CA 90001" -318837,Macbook Pro Laptop,1,1700,12/30/19 01:31,"294 Highland St, San Francisco, CA 94016" -318838,USB-C Charging Cable,1,11.95,12/29/19 16:16,"700 6th St, San Francisco, CA 94016" -318839,Lightning Charging Cable,1,14.95,12/26/19 06:35,"173 9th St, Boston, MA 02215" -318840,34in Ultrawide Monitor,1,379.99,12/18/19 18:29,"448 Adams St, Los Angeles, CA 90001" -318841,Lightning Charging Cable,1,14.95,12/15/19 17:16,"602 Main St, New York City, NY 10001" -318842,Apple Airpods Headphones,1,150,12/12/19 13:52,"959 13th St, Portland, OR 97035" -318843,27in 4K Gaming Monitor,1,389.99,12/24/19 23:27,"80 Ridge St, Atlanta, GA 30301" -318844,27in FHD Monitor,1,149.99,12/11/19 13:21,"829 7th St, San Francisco, CA 94016" -318845,Apple Airpods Headphones,1,150,12/31/19 19:27,"205 Cedar St, New York City, NY 10001" -318846,AA Batteries (4-pack),1,3.84,12/14/19 11:34,"41 Maple St, Austin, TX 73301" -318847,USB-C Charging Cable,1,11.95,12/25/19 09:20,"501 Forest St, San Francisco, CA 94016" -318848,27in 4K Gaming Monitor,1,389.99,12/31/19 18:46,"258 Hickory St, Los Angeles, CA 90001" -318849,AAA Batteries (4-pack),3,2.99,12/07/19 18:23,"445 Lake St, Los Angeles, CA 90001" -318850,Wired Headphones,1,11.99,12/02/19 20:16,"49 Wilson St, Los Angeles, CA 90001" -318851,Google Phone,1,600,12/02/19 20:02,"929 5th St, Boston, MA 02215" -318852,Flatscreen TV,1,300,12/09/19 14:41,"777 Spruce St, San Francisco, CA 94016" -318853,iPhone,1,700,12/09/19 20:00,"349 Chestnut St, Austin, TX 73301" -318854,Lightning Charging Cable,2,14.95,12/08/19 14:07,"744 Willow St, Los Angeles, CA 90001" -318854,AA Batteries (4-pack),1,3.84,12/08/19 14:07,"744 Willow St, Los Angeles, CA 90001" -318855,Wired Headphones,1,11.99,12/27/19 23:41,"458 Hill St, New York City, NY 10001" -318856,ThinkPad Laptop,1,999.99,12/25/19 10:40,"904 Lakeview St, New York City, NY 10001" -318857,Apple Airpods Headphones,1,150,12/01/19 17:01,"454 Lake St, Boston, MA 02215" -318858,Apple Airpods Headphones,1,150,12/24/19 16:35,"816 11th St, Austin, TX 73301" -318859,Wired Headphones,1,11.99,12/02/19 06:45,"122 13th St, Boston, MA 02215" -318860,AA Batteries (4-pack),1,3.84,12/08/19 14:49,"43 Chestnut St, Seattle, WA 98101" -318861,Wired Headphones,1,11.99,12/11/19 21:39,"39 Wilson St, San Francisco, CA 94016" -318862,Apple Airpods Headphones,1,150,12/09/19 13:59,"598 10th St, Los Angeles, CA 90001" -318863,AA Batteries (4-pack),1,3.84,12/21/19 10:20,"368 Johnson St, Atlanta, GA 30301" -318864,USB-C Charging Cable,1,11.95,12/17/19 07:43,"425 8th St, New York City, NY 10001" -318865,AA Batteries (4-pack),1,3.84,12/07/19 12:34,"812 Madison St, San Francisco, CA 94016" -318866,Apple Airpods Headphones,1,150,12/01/19 19:09,"172 North St, Los Angeles, CA 90001" -318867,ThinkPad Laptop,1,999.99,12/09/19 13:17,"551 4th St, Los Angeles, CA 90001" -318868,USB-C Charging Cable,1,11.95,12/22/19 06:33,"58 7th St, Boston, MA 02215" -318869,USB-C Charging Cable,1,11.95,12/31/19 18:00,"172 10th St, Atlanta, GA 30301" -318870,27in 4K Gaming Monitor,1,389.99,12/08/19 08:29,"420 West St, San Francisco, CA 94016" -318871,USB-C Charging Cable,1,11.95,12/08/19 17:24,"855 Chestnut St, San Francisco, CA 94016" -318872,AA Batteries (4-pack),1,3.84,12/28/19 00:14,"22 Ridge St, Boston, MA 02215" -318872,iPhone,1,700,12/28/19 00:14,"22 Ridge St, Boston, MA 02215" -318873,Apple Airpods Headphones,1,150,12/14/19 22:16,"565 Wilson St, San Francisco, CA 94016" -318874,Google Phone,1,600,12/21/19 06:00,"67 River St, Atlanta, GA 30301" -318875,AAA Batteries (4-pack),1,2.99,12/20/19 20:08,"632 Hickory St, Seattle, WA 98101" -318876,iPhone,1,700,12/11/19 20:24,"150 Elm St, San Francisco, CA 94016" -318877,Macbook Pro Laptop,1,1700,12/21/19 07:29,"850 Maple St, Austin, TX 73301" -318878,Lightning Charging Cable,1,14.95,12/10/19 12:48,"782 Washington St, San Francisco, CA 94016" -318879,AA Batteries (4-pack),1,3.84,12/26/19 14:04,"127 Hill St, Portland, OR 97035" -318880,27in FHD Monitor,1,149.99,12/13/19 21:18,"397 Madison St, New York City, NY 10001" -318881,iPhone,1,700,12/05/19 11:14,"400 13th St, Los Angeles, CA 90001" -318882,AAA Batteries (4-pack),1,2.99,12/12/19 19:54,"404 Sunset St, Los Angeles, CA 90001" -318883,AAA Batteries (4-pack),4,2.99,12/14/19 07:40,"93 Jackson St, Los Angeles, CA 90001" -318884,Wired Headphones,1,11.99,12/28/19 12:08,"971 River St, New York City, NY 10001" -318885,Wired Headphones,1,11.99,12/06/19 00:08,"545 North St, Dallas, TX 75001" -318886,USB-C Charging Cable,1,11.95,12/13/19 05:46,"802 Meadow St, Dallas, TX 75001" -318887,Google Phone,1,600,12/11/19 13:16,"850 Jackson St, New York City, NY 10001" -318888,USB-C Charging Cable,1,11.95,12/22/19 18:10,"573 Park St, San Francisco, CA 94016" -318889,AAA Batteries (4-pack),1,2.99,12/08/19 22:16,"931 Lincoln St, Atlanta, GA 30301" -318890,Wired Headphones,1,11.99,12/17/19 15:00,"928 Highland St, Portland, ME 04101" -318891,AA Batteries (4-pack),1,3.84,12/19/19 19:41,"996 Jackson St, San Francisco, CA 94016" -318892,AAA Batteries (4-pack),1,2.99,12/12/19 19:49,"57 6th St, Austin, TX 73301" -318893,Bose SoundSport Headphones,1,99.99,12/13/19 20:02,"646 Highland St, Atlanta, GA 30301" -318894,USB-C Charging Cable,1,11.95,12/16/19 10:45,"867 Ridge St, Austin, TX 73301" -318895,AA Batteries (4-pack),1,3.84,12/13/19 16:11,"808 Chestnut St, Los Angeles, CA 90001" -318896,USB-C Charging Cable,1,11.95,12/24/19 11:28,"547 West St, Portland, ME 04101" -318897,Bose SoundSport Headphones,1,99.99,12/24/19 18:14,"182 Maple St, Seattle, WA 98101" -318898,AA Batteries (4-pack),1,3.84,12/14/19 16:52,"758 Highland St, New York City, NY 10001" -318899,Flatscreen TV,1,300,12/17/19 15:09,"134 7th St, Boston, MA 02215" -318900,Wired Headphones,1,11.99,12/31/19 10:51,"649 Madison St, Dallas, TX 75001" -318901,Lightning Charging Cable,1,14.95,12/01/19 08:11,"447 Madison St, Dallas, TX 75001" -318902,Google Phone,1,600,12/14/19 12:16,"837 5th St, San Francisco, CA 94016" -318902,Wired Headphones,1,11.99,12/14/19 12:16,"837 5th St, San Francisco, CA 94016" -318903,AAA Batteries (4-pack),1,2.99,12/12/19 19:37,"779 10th St, Austin, TX 73301" -318904,Flatscreen TV,1,300,12/09/19 15:07,"604 Park St, San Francisco, CA 94016" -318905,Lightning Charging Cable,1,14.95,12/20/19 10:21,"46 Jackson St, Austin, TX 73301" -318906,AA Batteries (4-pack),1,3.84,12/14/19 12:34,"406 Chestnut St, San Francisco, CA 94016" -318907,AAA Batteries (4-pack),1,2.99,12/21/19 18:12,"11 Jackson St, Austin, TX 73301" -318908,AAA Batteries (4-pack),1,2.99,12/15/19 08:40,"40 Pine St, Austin, TX 73301" -318909,Lightning Charging Cable,1,14.95,12/19/19 12:07,"408 Lakeview St, Portland, OR 97035" -318910,Wired Headphones,1,11.99,12/16/19 16:44,"360 Sunset St, New York City, NY 10001" -318911,Bose SoundSport Headphones,1,99.99,12/01/19 10:00,"208 9th St, Dallas, TX 75001" -318912,Lightning Charging Cable,1,14.95,12/11/19 12:00,"998 8th St, Portland, OR 97035" -318913,27in 4K Gaming Monitor,1,389.99,12/24/19 22:33,"699 Maple St, Seattle, WA 98101" -318914,Lightning Charging Cable,1,14.95,12/15/19 13:24,"417 Adams St, Boston, MA 02215" -318915,Apple Airpods Headphones,1,150,12/11/19 14:25,"659 4th St, Los Angeles, CA 90001" -318916,Bose SoundSport Headphones,1,99.99,12/02/19 20:51,"831 Lake St, New York City, NY 10001" -318917,AAA Batteries (4-pack),1,2.99,12/22/19 08:18,"152 2nd St, Dallas, TX 75001" -318918,34in Ultrawide Monitor,1,379.99,12/10/19 16:03,"351 South St, San Francisco, CA 94016" -318919,Macbook Pro Laptop,1,1700,12/27/19 15:36,"629 Adams St, Portland, OR 97035" -318919,27in 4K Gaming Monitor,1,389.99,12/27/19 15:36,"629 Adams St, Portland, OR 97035" -318920,AAA Batteries (4-pack),1,2.99,12/17/19 17:19,"356 Walnut St, Dallas, TX 75001" -318921,27in FHD Monitor,1,149.99,12/17/19 00:26,"534 Jackson St, Dallas, TX 75001" -318922,AAA Batteries (4-pack),1,2.99,12/04/19 13:44,"416 Jefferson St, Los Angeles, CA 90001" -318923,USB-C Charging Cable,1,11.95,12/07/19 21:39,"463 8th St, San Francisco, CA 94016" -318924,Apple Airpods Headphones,1,150,12/12/19 19:31,"542 Spruce St, Los Angeles, CA 90001" -318925,Wired Headphones,1,11.99,12/24/19 11:33,"502 11th St, Seattle, WA 98101" -318926,AA Batteries (4-pack),1,3.84,12/15/19 06:36,"124 Ridge St, New York City, NY 10001" -318927,Vareebadd Phone,1,400,12/14/19 17:33,"232 1st St, San Francisco, CA 94016" -318928,20in Monitor,1,109.99,12/09/19 12:50,"398 Willow St, Boston, MA 02215" -318929,Bose SoundSport Headphones,1,99.99,12/08/19 12:01,"148 13th St, Los Angeles, CA 90001" -318930,27in 4K Gaming Monitor,1,389.99,12/24/19 16:39,"447 Chestnut St, Los Angeles, CA 90001" -318931,USB-C Charging Cable,1,11.95,12/26/19 20:40,"987 8th St, Boston, MA 02215" -318932,USB-C Charging Cable,1,11.95,12/26/19 15:24,"297 Chestnut St, Boston, MA 02215" -318933,iPhone,1,700,12/19/19 20:55,"325 5th St, Seattle, WA 98101" -318934,AAA Batteries (4-pack),3,2.99,12/29/19 16:36,"361 Lincoln St, Seattle, WA 98101" -318935,Apple Airpods Headphones,1,150,12/04/19 09:28,"213 Jackson St, Boston, MA 02215" -318936,20in Monitor,1,109.99,12/19/19 10:31,"774 Spruce St, Portland, ME 04101" -318937,20in Monitor,1,109.99,12/04/19 20:59,"907 Wilson St, Seattle, WA 98101" -318938,Google Phone,1,600,12/13/19 08:42,"2 Cherry St, San Francisco, CA 94016" -318939,AAA Batteries (4-pack),2,2.99,12/02/19 07:39,"583 Forest St, San Francisco, CA 94016" -318940,Lightning Charging Cable,1,14.95,12/24/19 20:54,"325 West St, Seattle, WA 98101" -318941,27in FHD Monitor,1,149.99,12/16/19 13:02,"723 Highland St, New York City, NY 10001" -318942,Bose SoundSport Headphones,1,99.99,12/05/19 09:28,"579 Johnson St, Atlanta, GA 30301" -318943,Wired Headphones,1,11.99,12/28/19 08:50,"186 6th St, San Francisco, CA 94016" -318944,Flatscreen TV,1,300,12/20/19 15:09,"611 2nd St, San Francisco, CA 94016" -318945,Lightning Charging Cable,1,14.95,12/09/19 12:06,"354 4th St, San Francisco, CA 94016" -318946,Wired Headphones,1,11.99,12/08/19 12:51,"58 Park St, New York City, NY 10001" -318947,USB-C Charging Cable,1,11.95,12/30/19 17:50,"767 South St, Boston, MA 02215" -318948,Flatscreen TV,1,300,12/28/19 22:13,"643 12th St, Los Angeles, CA 90001" -318949,Bose SoundSport Headphones,1,99.99,12/31/19 00:20,"329 Hill St, Atlanta, GA 30301" -318950,AAA Batteries (4-pack),2,2.99,12/12/19 14:25,"372 Lincoln St, San Francisco, CA 94016" -318951,AAA Batteries (4-pack),1,2.99,12/15/19 14:52,"618 Hickory St, Seattle, WA 98101" -318952,AAA Batteries (4-pack),1,2.99,12/05/19 11:32,"118 North St, Portland, OR 97035" -318953,USB-C Charging Cable,1,11.95,12/20/19 18:54,"702 Cedar St, San Francisco, CA 94016" -318954,AAA Batteries (4-pack),2,2.99,12/04/19 12:28,"780 South St, Seattle, WA 98101" -318955,27in FHD Monitor,1,149.99,12/26/19 10:59,"966 South St, San Francisco, CA 94016" -318956,Flatscreen TV,1,300,12/19/19 13:27,"468 Cedar St, Boston, MA 02215" -318957,USB-C Charging Cable,1,11.95,12/15/19 09:41,"709 Hickory St, San Francisco, CA 94016" -318958,27in 4K Gaming Monitor,1,389.99,12/21/19 02:06,"969 Jackson St, New York City, NY 10001" -318959,Wired Headphones,1,11.99,12/28/19 00:17,"380 Pine St, Boston, MA 02215" -318960,USB-C Charging Cable,1,11.95,12/17/19 18:24,"399 Center St, San Francisco, CA 94016" -318961,USB-C Charging Cable,1,11.95,12/27/19 09:37,"489 7th St, Atlanta, GA 30301" -318962,Wired Headphones,1,11.99,12/25/19 23:05,"115 South St, New York City, NY 10001" -318963,Lightning Charging Cable,1,14.95,12/26/19 22:34,"927 North St, San Francisco, CA 94016" -318964,Bose SoundSport Headphones,1,99.99,12/09/19 08:38,"933 Washington St, Portland, ME 04101" -318964,USB-C Charging Cable,1,11.95,12/09/19 08:38,"933 Washington St, Portland, ME 04101" -318965,iPhone,1,700,12/27/19 21:29,"734 5th St, Boston, MA 02215" -318965,Lightning Charging Cable,1,14.95,12/27/19 21:29,"734 5th St, Boston, MA 02215" -318966,Apple Airpods Headphones,1,150,12/06/19 04:01,"742 Ridge St, San Francisco, CA 94016" -318967,Wired Headphones,1,11.99,12/22/19 16:54,"594 6th St, Los Angeles, CA 90001" -318968,AA Batteries (4-pack),1,3.84,12/16/19 07:34,"932 5th St, Los Angeles, CA 90001" -318969,Wired Headphones,1,11.99,12/24/19 09:50,"99 Pine St, New York City, NY 10001" -318970,iPhone,1,700,12/16/19 22:54,"599 Walnut St, New York City, NY 10001" -318971,AA Batteries (4-pack),1,3.84,12/26/19 23:12,"851 Chestnut St, New York City, NY 10001" -318972,ThinkPad Laptop,1,999.99,12/27/19 18:10,"865 Lake St, New York City, NY 10001" -318973,iPhone,1,700,12/01/19 18:35,"526 Chestnut St, Portland, OR 97035" -318974,USB-C Charging Cable,1,11.95,12/22/19 22:07,"25 Forest St, San Francisco, CA 94016" -318975,Bose SoundSport Headphones,1,99.99,12/14/19 17:53,"473 South St, San Francisco, CA 94016" -318976,27in FHD Monitor,1,149.99,12/19/19 13:26,"159 10th St, Seattle, WA 98101" -318977,Wired Headphones,1,11.99,12/29/19 07:39,"426 6th St, New York City, NY 10001" -318978,Bose SoundSport Headphones,1,99.99,12/30/19 20:12,"87 Chestnut St, San Francisco, CA 94016" -318979,Apple Airpods Headphones,1,150,12/30/19 10:21,"246 Meadow St, San Francisco, CA 94016" -318980,Vareebadd Phone,1,400,12/07/19 20:16,"554 8th St, Los Angeles, CA 90001" -318981,AA Batteries (4-pack),1,3.84,12/28/19 06:47,"386 Lakeview St, Seattle, WA 98101" -318982,Apple Airpods Headphones,1,150,12/24/19 18:22,"737 Church St, Seattle, WA 98101" -318983,Macbook Pro Laptop,1,1700,12/05/19 20:58,"637 11th St, Los Angeles, CA 90001" -318984,AA Batteries (4-pack),1,3.84,12/01/19 20:24,"875 West St, Seattle, WA 98101" -318985,AA Batteries (4-pack),1,3.84,12/08/19 09:51,"165 Dogwood St, San Francisco, CA 94016" -318986,27in FHD Monitor,1,149.99,12/05/19 09:39,"886 7th St, New York City, NY 10001" -318987,AAA Batteries (4-pack),2,2.99,12/19/19 20:27,"634 Walnut St, New York City, NY 10001" -318988,Flatscreen TV,1,300,12/20/19 08:55,"379 West St, Boston, MA 02215" -318989,AA Batteries (4-pack),1,3.84,12/23/19 14:48,"36 4th St, Seattle, WA 98101" -318990,LG Washing Machine,1,600.0,12/19/19 19:20,"671 10th St, Austin, TX 73301" -318991,Google Phone,1,600,12/23/19 07:17,"505 10th St, San Francisco, CA 94016" -318992,AAA Batteries (4-pack),1,2.99,12/30/19 20:56,"699 Center St, Boston, MA 02215" -318993,AA Batteries (4-pack),2,3.84,12/07/19 17:05,"529 Johnson St, San Francisco, CA 94016" -318994,iPhone,1,700,12/03/19 15:59,"808 Park St, Boston, MA 02215" -318995,20in Monitor,1,109.99,12/12/19 17:23,"590 Meadow St, Los Angeles, CA 90001" -318996,Lightning Charging Cable,1,14.95,12/17/19 06:45,"555 Forest St, San Francisco, CA 94016" -318997,Wired Headphones,1,11.99,12/08/19 14:33,"245 Dogwood St, San Francisco, CA 94016" -318998,Wired Headphones,1,11.99,12/31/19 13:18,"378 Washington St, San Francisco, CA 94016" -318999,Flatscreen TV,1,300,12/11/19 18:06,"80 10th St, San Francisco, CA 94016" -319000,AA Batteries (4-pack),2,3.84,12/11/19 21:38,"402 Maple St, San Francisco, CA 94016" -319001,Lightning Charging Cable,1,14.95,12/20/19 08:56,"882 11th St, Dallas, TX 75001" -319002,ThinkPad Laptop,1,999.99,12/30/19 15:31,"850 River St, San Francisco, CA 94016" -319003,Vareebadd Phone,1,400,12/20/19 09:14,"228 Elm St, Portland, OR 97035" -319004,AA Batteries (4-pack),1,3.84,12/13/19 10:42,"210 Cedar St, Los Angeles, CA 90001" -319005,AAA Batteries (4-pack),2,2.99,12/23/19 16:49,"796 Lake St, Portland, OR 97035" -319006,Vareebadd Phone,1,400,12/12/19 19:46,"32 Chestnut St, New York City, NY 10001" -319007,Bose SoundSport Headphones,1,99.99,12/14/19 17:30,"474 Center St, New York City, NY 10001" -319008,Apple Airpods Headphones,1,150,12/23/19 13:15,"406 10th St, San Francisco, CA 94016" -319009,Lightning Charging Cable,1,14.95,12/16/19 20:02,"151 Adams St, San Francisco, CA 94016" -319010,USB-C Charging Cable,1,11.95,12/18/19 11:32,"290 7th St, Los Angeles, CA 90001" -319011,Lightning Charging Cable,1,14.95,12/05/19 18:05,"821 North St, Austin, TX 73301" -319012,Bose SoundSport Headphones,1,99.99,12/17/19 10:37,"532 North St, Boston, MA 02215" -319013,27in FHD Monitor,1,149.99,12/16/19 12:17,"392 Cherry St, Atlanta, GA 30301" -319014,Macbook Pro Laptop,1,1700,12/08/19 14:12,"209 Jefferson St, Boston, MA 02215" -319015,ThinkPad Laptop,1,999.99,12/19/19 10:43,"493 Elm St, Atlanta, GA 30301" -319016,Flatscreen TV,1,300,12/03/19 12:47,"564 13th St, Portland, OR 97035" -319017,34in Ultrawide Monitor,1,379.99,12/06/19 12:11,"659 1st St, San Francisco, CA 94016" -319018,Apple Airpods Headphones,1,150,12/04/19 20:18,"944 Jackson St, Boston, MA 02215" -319019,Flatscreen TV,1,300,12/03/19 13:45,"745 1st St, Dallas, TX 75001" -319020,Lightning Charging Cable,2,14.95,12/23/19 13:20,"834 Park St, Portland, OR 97035" -319021,Lightning Charging Cable,1,14.95,12/17/19 20:24,"43 North St, San Francisco, CA 94016" -319022,Bose SoundSport Headphones,1,99.99,12/22/19 16:09,"790 Madison St, Dallas, TX 75001" -319023,LG Dryer,1,600.0,12/24/19 17:38,"671 Walnut St, San Francisco, CA 94016" -319024,Lightning Charging Cable,1,14.95,12/25/19 11:06,"224 Pine St, Austin, TX 73301" -319025,Bose SoundSport Headphones,1,99.99,12/15/19 11:04,"432 2nd St, Boston, MA 02215" -319026,AA Batteries (4-pack),1,3.84,12/22/19 09:11,"970 Meadow St, Portland, OR 97035" -319027,USB-C Charging Cable,1,11.95,12/27/19 14:07,"976 6th St, Dallas, TX 75001" -319028,AAA Batteries (4-pack),3,2.99,12/02/19 01:56,"855 10th St, San Francisco, CA 94016" -319029,AAA Batteries (4-pack),1,2.99,12/27/19 08:47,"297 4th St, Atlanta, GA 30301" -319030,Bose SoundSport Headphones,2,99.99,12/17/19 19:41,"837 Spruce St, Dallas, TX 75001" -319031,Bose SoundSport Headphones,1,99.99,12/09/19 21:39,"223 Maple St, San Francisco, CA 94016" -319032,iPhone,1,700,12/05/19 18:19,"751 Meadow St, Dallas, TX 75001" -319032,Wired Headphones,1,11.99,12/05/19 18:19,"751 Meadow St, Dallas, TX 75001" -319033,iPhone,1,700,12/31/19 21:07,"523 Pine St, Boston, MA 02215" -319034,ThinkPad Laptop,1,999.99,12/24/19 13:40,"271 Walnut St, New York City, NY 10001" -319035,LG Dryer,1,600.0,12/17/19 23:55,"540 Madison St, Portland, OR 97035" -319036,AA Batteries (4-pack),1,3.84,12/29/19 09:17,"529 10th St, San Francisco, CA 94016" -319037,Lightning Charging Cable,1,14.95,12/29/19 14:04,"299 7th St, Dallas, TX 75001" -319038,Lightning Charging Cable,1,14.95,12/19/19 14:56,"617 Jackson St, San Francisco, CA 94016" -319039,AA Batteries (4-pack),1,3.84,12/05/19 13:48,"555 4th St, Los Angeles, CA 90001" -319040,Macbook Pro Laptop,1,1700,12/08/19 09:52,"972 Park St, San Francisco, CA 94016" -319041,27in 4K Gaming Monitor,1,389.99,12/07/19 13:19,"95 River St, Los Angeles, CA 90001" -319042,Wired Headphones,1,11.99,12/12/19 07:50,"137 Lincoln St, San Francisco, CA 94016" -319043,AA Batteries (4-pack),1,3.84,12/07/19 16:21,"250 9th St, New York City, NY 10001" -319044,27in FHD Monitor,1,149.99,12/06/19 06:29,"683 Jefferson St, Los Angeles, CA 90001" -319045,Flatscreen TV,1,300,12/22/19 21:52,"317 Park St, San Francisco, CA 94016" -319045,AAA Batteries (4-pack),1,2.99,12/22/19 21:52,"317 Park St, San Francisco, CA 94016" -319046,AA Batteries (4-pack),1,3.84,12/13/19 18:15,"294 9th St, Boston, MA 02215" -319047,AA Batteries (4-pack),1,3.84,12/06/19 09:01,"676 Main St, Boston, MA 02215" -319048,Wired Headphones,1,11.99,12/01/19 14:56,"709 Washington St, Boston, MA 02215" -319049,Macbook Pro Laptop,1,1700,12/23/19 18:23,"239 Adams St, San Francisco, CA 94016" -319050,USB-C Charging Cable,1,11.95,12/06/19 16:24,"190 8th St, San Francisco, CA 94016" -319051,Lightning Charging Cable,1,14.95,12/20/19 22:41,"217 Willow St, Dallas, TX 75001" -319052,AA Batteries (4-pack),1,3.84,12/12/19 13:40,"860 1st St, Atlanta, GA 30301" -319053,USB-C Charging Cable,1,11.95,12/27/19 20:55,"575 9th St, San Francisco, CA 94016" -319054,USB-C Charging Cable,1,11.95,12/18/19 20:34,"875 Maple St, Portland, ME 04101" -319055,AA Batteries (4-pack),2,3.84,12/27/19 10:51,"463 Spruce St, New York City, NY 10001" -319056,Flatscreen TV,1,300,12/07/19 12:31,"599 10th St, San Francisco, CA 94016" -319057,27in FHD Monitor,1,149.99,12/24/19 22:29,"395 North St, Los Angeles, CA 90001" -319058,iPhone,1,700,12/10/19 10:02,"556 Spruce St, San Francisco, CA 94016" -319059,Bose SoundSport Headphones,1,99.99,12/13/19 20:22,"812 Spruce St, Dallas, TX 75001" -319060,USB-C Charging Cable,1,11.95,12/25/19 17:26,"873 Hickory St, New York City, NY 10001" -319061,Bose SoundSport Headphones,1,99.99,12/13/19 06:00,"63 6th St, New York City, NY 10001" -319062,AA Batteries (4-pack),2,3.84,12/25/19 14:20,"541 11th St, New York City, NY 10001" -319063,USB-C Charging Cable,1,11.95,12/16/19 10:51,"308 Center St, San Francisco, CA 94016" -319064,AAA Batteries (4-pack),1,2.99,12/09/19 12:56,"305 Ridge St, Boston, MA 02215" -319065,Google Phone,1,600,12/08/19 22:10,"160 Hill St, New York City, NY 10001" -319066,AAA Batteries (4-pack),2,2.99,12/29/19 18:52,"307 Lake St, Boston, MA 02215" -319067,USB-C Charging Cable,1,11.95,12/02/19 09:44,"994 10th St, New York City, NY 10001" -319068,ThinkPad Laptop,1,999.99,12/02/19 13:54,"144 Main St, San Francisco, CA 94016" -319069,AA Batteries (4-pack),1,3.84,12/24/19 21:03,"620 14th St, New York City, NY 10001" -319070,USB-C Charging Cable,1,11.95,12/26/19 11:12,"104 Lake St, New York City, NY 10001" -319071,Lightning Charging Cable,1,14.95,12/29/19 21:23,"980 West St, Seattle, WA 98101" -319072,Lightning Charging Cable,1,14.95,12/28/19 21:25,"410 13th St, San Francisco, CA 94016" -319073,Google Phone,1,600,12/10/19 13:59,"121 Hill St, Seattle, WA 98101" -319074,AAA Batteries (4-pack),1,2.99,12/07/19 10:07,"676 Dogwood St, Los Angeles, CA 90001" -319075,USB-C Charging Cable,1,11.95,12/15/19 09:47,"422 Chestnut St, New York City, NY 10001" -319076,Apple Airpods Headphones,1,150,12/29/19 21:00,"67 1st St, Boston, MA 02215" -319077,USB-C Charging Cable,2,11.95,12/30/19 07:30,"190 Highland St, New York City, NY 10001" -319078,iPhone,1,700,12/09/19 21:45,"265 11th St, Portland, OR 97035" -319079,Macbook Pro Laptop,1,1700,12/14/19 22:05,"70 Hickory St, Portland, OR 97035" -319080,Lightning Charging Cable,1,14.95,12/23/19 16:57,"439 Spruce St, New York City, NY 10001" -319081,Wired Headphones,1,11.99,12/27/19 15:25,"43 North St, Austin, TX 73301" -319082,AAA Batteries (4-pack),2,2.99,12/03/19 17:45,"444 Maple St, Portland, OR 97035" -319083,Wired Headphones,1,11.99,12/30/19 19:56,"450 Park St, New York City, NY 10001" -319084,Wired Headphones,1,11.99,12/23/19 14:47,"76 12th St, Seattle, WA 98101" -319085,Flatscreen TV,1,300,12/10/19 13:19,"870 Sunset St, San Francisco, CA 94016" -319086,Lightning Charging Cable,2,14.95,12/23/19 03:01,"139 7th St, San Francisco, CA 94016" -319087,Wired Headphones,1,11.99,12/15/19 18:20,"326 Spruce St, Austin, TX 73301" -319088,Flatscreen TV,1,300,12/20/19 11:09,"289 Walnut St, Dallas, TX 75001" -319089,USB-C Charging Cable,1,11.95,12/17/19 19:44,"494 Cherry St, Atlanta, GA 30301" -319090,27in 4K Gaming Monitor,1,389.99,12/14/19 09:36,"68 9th St, New York City, NY 10001" -319091,Google Phone,1,600,12/29/19 14:59,"754 Pine St, Portland, OR 97035" -319092,20in Monitor,1,109.99,12/20/19 22:47,"853 South St, Atlanta, GA 30301" -319093,Bose SoundSport Headphones,1,99.99,12/26/19 11:35,"678 Wilson St, Seattle, WA 98101" -319094,iPhone,1,700,12/15/19 12:10,"612 4th St, New York City, NY 10001" -319095,Google Phone,1,600,12/20/19 14:07,"116 Adams St, Atlanta, GA 30301" -319095,USB-C Charging Cable,1,11.95,12/20/19 14:07,"116 Adams St, Atlanta, GA 30301" -319096,Wired Headphones,1,11.99,12/27/19 05:35,"830 Spruce St, New York City, NY 10001" -319097,Lightning Charging Cable,1,14.95,12/12/19 07:46,"265 Forest St, Boston, MA 02215" -319098,Lightning Charging Cable,1,14.95,12/19/19 12:12,"691 10th St, Boston, MA 02215" -319099,USB-C Charging Cable,1,11.95,12/29/19 19:16,"374 8th St, Atlanta, GA 30301" -319100,Lightning Charging Cable,1,14.95,12/28/19 08:56,"138 2nd St, Atlanta, GA 30301" -319101,Bose SoundSport Headphones,1,99.99,12/30/19 13:31,"549 Main St, New York City, NY 10001" -319102,Macbook Pro Laptop,1,1700,12/30/19 08:58,"78 Lakeview St, Seattle, WA 98101" -319103,Lightning Charging Cable,1,14.95,12/26/19 21:07,"313 Forest St, Atlanta, GA 30301" -319104,AAA Batteries (4-pack),1,2.99,12/05/19 18:34,"512 Lake St, Los Angeles, CA 90001" -319105,AAA Batteries (4-pack),2,2.99,12/05/19 17:16,"34 10th St, New York City, NY 10001" -319106,AAA Batteries (4-pack),2,2.99,12/14/19 10:18,"67 Jefferson St, Portland, OR 97035" -319107,AA Batteries (4-pack),1,3.84,12/16/19 11:03,"220 Park St, Los Angeles, CA 90001" -319108,27in 4K Gaming Monitor,1,389.99,12/14/19 21:33,"962 2nd St, San Francisco, CA 94016" -319109,ThinkPad Laptop,1,999.99,12/12/19 08:03,"928 Sunset St, Dallas, TX 75001" -319110,Flatscreen TV,1,300,12/22/19 21:09,"162 Chestnut St, Los Angeles, CA 90001" -319111,Lightning Charging Cable,1,14.95,12/30/19 13:56,"334 8th St, Dallas, TX 75001" -319112,Bose SoundSport Headphones,1,99.99,12/08/19 20:30,"164 Walnut St, San Francisco, CA 94016" -319113,Apple Airpods Headphones,1,150,12/24/19 08:51,"283 Church St, San Francisco, CA 94016" -319114,USB-C Charging Cable,1,11.95,12/15/19 15:29,"566 Forest St, Boston, MA 02215" -319115,Wired Headphones,1,11.99,12/24/19 16:43,"26 Adams St, San Francisco, CA 94016" -319116,AA Batteries (4-pack),2,3.84,12/31/19 16:08,"270 North St, Boston, MA 02215" -319117,AAA Batteries (4-pack),4,2.99,12/05/19 20:30,"322 Hill St, Los Angeles, CA 90001" -319118,ThinkPad Laptop,1,999.99,12/31/19 14:10,"499 Meadow St, Boston, MA 02215" -319119,AAA Batteries (4-pack),1,2.99,12/18/19 15:19,"969 Washington St, New York City, NY 10001" -319120,Apple Airpods Headphones,1,150,12/03/19 06:39,"728 Ridge St, Seattle, WA 98101" -319121,iPhone,1,700,12/28/19 22:19,"174 North St, New York City, NY 10001" -319122,Macbook Pro Laptop,1,1700,12/03/19 15:42,"773 Ridge St, Boston, MA 02215" -319123,USB-C Charging Cable,1,11.95,12/17/19 19:55,"830 1st St, San Francisco, CA 94016" -319124,Macbook Pro Laptop,1,1700,12/20/19 17:46,"641 Main St, Portland, OR 97035" -319125,Apple Airpods Headphones,1,150,12/26/19 12:34,"20 Highland St, Portland, ME 04101" -319126,34in Ultrawide Monitor,1,379.99,12/14/19 14:48,"950 Adams St, Austin, TX 73301" -319127,Lightning Charging Cable,1,14.95,12/04/19 19:08,"203 7th St, San Francisco, CA 94016" -319128,27in 4K Gaming Monitor,1,389.99,12/14/19 19:10,"889 West St, Portland, OR 97035" -319129,Lightning Charging Cable,1,14.95,12/29/19 17:26,"686 13th St, San Francisco, CA 94016" -319130,Lightning Charging Cable,1,14.95,12/29/19 12:59,"19 Washington St, Dallas, TX 75001" -319131,AAA Batteries (4-pack),2,2.99,12/17/19 18:36,"988 Spruce St, Seattle, WA 98101" -319132,Macbook Pro Laptop,1,1700,12/06/19 21:10,"301 2nd St, San Francisco, CA 94016" -319133,Apple Airpods Headphones,1,150,12/24/19 20:09,"939 7th St, Los Angeles, CA 90001" -319134,AA Batteries (4-pack),1,3.84,12/06/19 12:17,"320 7th St, San Francisco, CA 94016" -319135,Wired Headphones,1,11.99,12/13/19 07:41,"965 Meadow St, New York City, NY 10001" -319136,Bose SoundSport Headphones,1,99.99,12/16/19 12:13,"558 11th St, Los Angeles, CA 90001" -319137,Apple Airpods Headphones,1,150,12/15/19 14:35,"630 5th St, Dallas, TX 75001" -319138,Wired Headphones,1,11.99,12/26/19 12:21,"762 Jefferson St, Portland, OR 97035" -319139,27in FHD Monitor,1,149.99,12/13/19 23:24,"300 Hickory St, San Francisco, CA 94016" -319140,Wired Headphones,1,11.99,12/20/19 09:56,"529 4th St, New York City, NY 10001" -319141,iPhone,1,700,12/26/19 18:18,"905 Lakeview St, San Francisco, CA 94016" -319142,Google Phone,1,600,12/19/19 00:49,"531 Church St, Austin, TX 73301" -319143,USB-C Charging Cable,1,11.95,12/26/19 15:09,"706 5th St, Austin, TX 73301" -319144,Vareebadd Phone,1,400,12/16/19 18:49,"131 Main St, New York City, NY 10001" -319145,AAA Batteries (4-pack),1,2.99,12/25/19 12:22,"356 Johnson St, Los Angeles, CA 90001" -319146,Bose SoundSport Headphones,1,99.99,12/30/19 14:33,"633 Pine St, San Francisco, CA 94016" -319147,AAA Batteries (4-pack),1,2.99,12/09/19 17:12,"601 West St, Dallas, TX 75001" -319148,Wired Headphones,1,11.99,12/14/19 14:30,"677 North St, New York City, NY 10001" -319149,USB-C Charging Cable,1,11.95,12/02/19 12:46,"990 North St, Atlanta, GA 30301" -319150,34in Ultrawide Monitor,1,379.99,12/08/19 21:18,"654 Adams St, Boston, MA 02215" -319151,Bose SoundSport Headphones,1,99.99,12/30/19 11:48,"557 Cedar St, New York City, NY 10001" -319152,Wired Headphones,1,11.99,12/15/19 16:48,"93 Jefferson St, New York City, NY 10001" -319153,USB-C Charging Cable,1,11.95,12/15/19 11:39,"217 Jefferson St, Dallas, TX 75001" -319154,Bose SoundSport Headphones,1,99.99,12/24/19 18:49,"204 12th St, Dallas, TX 75001" -319155,Wired Headphones,1,11.99,12/21/19 16:37,"561 Hickory St, San Francisco, CA 94016" -319156,Wired Headphones,1,11.99,12/01/19 21:27,"130 West St, Atlanta, GA 30301" -319157,Wired Headphones,1,11.99,12/08/19 11:37,"873 1st St, Boston, MA 02215" -319158,Wired Headphones,1,11.99,12/09/19 08:10,"744 14th St, San Francisco, CA 94016" -319159,Lightning Charging Cable,1,14.95,12/18/19 19:48,"783 Washington St, Seattle, WA 98101" -319160,Wired Headphones,1,11.99,12/17/19 22:01,"237 Washington St, New York City, NY 10001" -319161,USB-C Charging Cable,1,11.95,12/04/19 17:26,"838 Hickory St, Los Angeles, CA 90001" -319162,iPhone,1,700,12/29/19 13:06,"914 West St, Seattle, WA 98101" -319163,AAA Batteries (4-pack),2,2.99,12/22/19 15:11,"410 13th St, Atlanta, GA 30301" -319164,Lightning Charging Cable,1,14.95,12/19/19 12:16,"666 Lakeview St, New York City, NY 10001" -319165,AAA Batteries (4-pack),2,2.99,12/16/19 19:11,"330 Pine St, Dallas, TX 75001" -319166,20in Monitor,1,109.99,12/27/19 07:29,"448 Spruce St, New York City, NY 10001" -319167,Wired Headphones,1,11.99,12/02/19 15:58,"480 West St, Los Angeles, CA 90001" -319168,20in Monitor,1,109.99,12/18/19 15:25,"472 Lincoln St, Los Angeles, CA 90001" -319169,Bose SoundSport Headphones,1,99.99,12/08/19 01:32,"112 Main St, Dallas, TX 75001" -319170,AAA Batteries (4-pack),2,2.99,12/07/19 17:47,"671 Wilson St, San Francisco, CA 94016" -319171,USB-C Charging Cable,1,11.95,12/20/19 21:52,"870 Jackson St, New York City, NY 10001" -319172,Macbook Pro Laptop,1,1700,12/02/19 16:52,"854 Hill St, Los Angeles, CA 90001" -319173,AAA Batteries (4-pack),2,2.99,12/15/19 00:36,"511 Elm St, Los Angeles, CA 90001" -319174,Wired Headphones,1,11.99,12/27/19 19:30,"310 Park St, Atlanta, GA 30301" -319175,AA Batteries (4-pack),1,3.84,12/04/19 19:17,"370 Cedar St, San Francisco, CA 94016" -319176,Lightning Charging Cable,1,14.95,12/15/19 22:02,"675 South St, Portland, OR 97035" -319177,Wired Headphones,1,11.99,12/20/19 15:49,"827 13th St, Boston, MA 02215" -319178,ThinkPad Laptop,1,999.99,12/13/19 16:59,"264 Cherry St, New York City, NY 10001" -319179,AAA Batteries (4-pack),1,2.99,12/25/19 12:27,"241 Chestnut St, Portland, ME 04101" -319180,Wired Headphones,1,11.99,12/12/19 21:51,"515 Highland St, Los Angeles, CA 90001" -319181,Apple Airpods Headphones,1,150,12/09/19 14:27,"292 10th St, Los Angeles, CA 90001" -319182,Wired Headphones,1,11.99,12/24/19 19:09,"518 Chestnut St, New York City, NY 10001" -319183,Macbook Pro Laptop,1,1700,12/01/19 12:34,"405 North St, New York City, NY 10001" -319184,Lightning Charging Cable,1,14.95,12/04/19 18:54,"113 8th St, New York City, NY 10001" -319185,Wired Headphones,1,11.99,12/08/19 08:21,"796 North St, Boston, MA 02215" -319186,27in 4K Gaming Monitor,1,389.99,12/23/19 22:41,"751 Johnson St, Seattle, WA 98101" -319187,AAA Batteries (4-pack),2,2.99,12/04/19 20:14,"830 Ridge St, New York City, NY 10001" -319188,20in Monitor,1,109.99,12/08/19 13:16,"884 Cherry St, San Francisco, CA 94016" -319189,Macbook Pro Laptop,1,1700,12/24/19 12:04,"417 Pine St, San Francisco, CA 94016" -319190,AA Batteries (4-pack),1,3.84,12/31/19 21:29,"480 Chestnut St, San Francisco, CA 94016" -319191,Macbook Pro Laptop,1,1700,12/02/19 15:39,"917 Lincoln St, San Francisco, CA 94016" -319192,Lightning Charging Cable,1,14.95,12/30/19 21:57,"402 Forest St, San Francisco, CA 94016" -319193,Wired Headphones,1,11.99,12/14/19 12:23,"796 Elm St, Los Angeles, CA 90001" -319194,USB-C Charging Cable,1,11.95,12/24/19 17:10,"664 Chestnut St, San Francisco, CA 94016" -319195,USB-C Charging Cable,1,11.95,12/02/19 18:20,"712 Hickory St, Seattle, WA 98101" -319196,USB-C Charging Cable,1,11.95,12/26/19 18:48,"427 14th St, New York City, NY 10001" -319197,Lightning Charging Cable,1,14.95,12/14/19 18:48,"160 Sunset St, San Francisco, CA 94016" -319198,AA Batteries (4-pack),1,3.84,12/10/19 08:55,"361 River St, Los Angeles, CA 90001" -319199,AAA Batteries (4-pack),1,2.99,12/26/19 11:52,"765 Washington St, Dallas, TX 75001" -319200,USB-C Charging Cable,1,11.95,12/24/19 12:21,"447 Lakeview St, Boston, MA 02215" -319201,Bose SoundSport Headphones,1,99.99,12/26/19 19:57,"134 9th St, Dallas, TX 75001" -319202,Lightning Charging Cable,1,14.95,12/18/19 17:39,"197 Jefferson St, San Francisco, CA 94016" -319203,Lightning Charging Cable,1,14.95,12/04/19 09:04,"760 7th St, Austin, TX 73301" -319204,27in FHD Monitor,1,149.99,12/29/19 20:00,"641 Willow St, San Francisco, CA 94016" -319205,USB-C Charging Cable,1,11.95,12/09/19 21:02,"797 Center St, Los Angeles, CA 90001" -319206,USB-C Charging Cable,1,11.95,12/21/19 11:52,"235 Jefferson St, San Francisco, CA 94016" -319207,Lightning Charging Cable,1,14.95,12/07/19 10:36,"202 14th St, Boston, MA 02215" -319208,AA Batteries (4-pack),1,3.84,12/03/19 13:53,"281 Adams St, Los Angeles, CA 90001" -319209,Wired Headphones,1,11.99,12/28/19 18:34,"468 14th St, Portland, OR 97035" -319210,20in Monitor,1,109.99,12/28/19 12:35,"767 2nd St, New York City, NY 10001" -319211,Flatscreen TV,1,300,12/17/19 19:51,"784 Elm St, Boston, MA 02215" -319212,Macbook Pro Laptop,1,1700,12/12/19 15:51,"531 14th St, Los Angeles, CA 90001" -319213,Lightning Charging Cable,1,14.95,12/17/19 17:56,"120 13th St, Seattle, WA 98101" -319214,AAA Batteries (4-pack),1,2.99,12/19/19 19:13,"220 Adams St, Seattle, WA 98101" -319215,Bose SoundSport Headphones,1,99.99,12/31/19 05:35,"26 Church St, Seattle, WA 98101" -319216,Lightning Charging Cable,1,14.95,12/26/19 12:39,"738 11th St, San Francisco, CA 94016" -319217,ThinkPad Laptop,1,999.99,12/30/19 23:42,"180 2nd St, Atlanta, GA 30301" -319218,Apple Airpods Headphones,1,150,12/16/19 19:31,"592 Elm St, Austin, TX 73301" -319219,AAA Batteries (4-pack),1,2.99,12/10/19 07:49,"963 Cedar St, Boston, MA 02215" -319220,Lightning Charging Cable,1,14.95,12/11/19 19:01,"896 Washington St, Portland, OR 97035" -319221,Wired Headphones,1,11.99,12/22/19 11:35,"270 12th St, New York City, NY 10001" -319222,27in FHD Monitor,1,149.99,12/08/19 17:01,"133 Dogwood St, Portland, OR 97035" -319223,Lightning Charging Cable,1,14.95,12/29/19 13:11,"993 Highland St, Portland, OR 97035" -319224,27in FHD Monitor,1,149.99,12/08/19 15:23,"787 Forest St, New York City, NY 10001" -319225,AAA Batteries (4-pack),3,2.99,12/16/19 14:42,"367 Chestnut St, San Francisco, CA 94016" -319226,Vareebadd Phone,1,400,12/08/19 18:57,"337 Wilson St, Dallas, TX 75001" -319227,Wired Headphones,1,11.99,12/16/19 20:40,"372 Wilson St, Dallas, TX 75001" -319228,AA Batteries (4-pack),2,3.84,12/25/19 17:48,"292 Meadow St, Portland, ME 04101" -319229,USB-C Charging Cable,1,11.95,12/08/19 12:21,"106 South St, New York City, NY 10001" -319230,Google Phone,1,600,12/02/19 16:38,"421 10th St, San Francisco, CA 94016" -319231,Wired Headphones,1,11.99,12/09/19 19:50,"264 2nd St, New York City, NY 10001" -319232,AA Batteries (4-pack),1,3.84,12/17/19 13:32,"563 Main St, Austin, TX 73301" -319233,AAA Batteries (4-pack),1,2.99,12/15/19 23:23,"184 Cedar St, Los Angeles, CA 90001" -319234,AA Batteries (4-pack),1,3.84,12/10/19 15:25,"58 Jefferson St, Atlanta, GA 30301" -319235,Lightning Charging Cable,1,14.95,12/09/19 12:19,"720 14th St, San Francisco, CA 94016" -319236,iPhone,1,700,12/10/19 08:51,"597 Madison St, New York City, NY 10001" -319237,27in 4K Gaming Monitor,1,389.99,12/18/19 14:00,"126 Hickory St, New York City, NY 10001" -319238,Wired Headphones,1,11.99,12/23/19 14:47,"979 Maple St, Dallas, TX 75001" -319239,iPhone,1,700,12/23/19 13:59,"42 Hill St, Los Angeles, CA 90001" -319239,Wired Headphones,1,11.99,12/23/19 13:59,"42 Hill St, Los Angeles, CA 90001" -319240,27in 4K Gaming Monitor,1,389.99,12/18/19 23:07,"130 Lakeview St, Atlanta, GA 30301" -319241,Apple Airpods Headphones,1,150,12/21/19 10:46,"595 Walnut St, New York City, NY 10001" -319242,iPhone,1,700,12/06/19 15:22,"453 1st St, San Francisco, CA 94016" -319243,USB-C Charging Cable,1,11.95,12/05/19 21:39,"534 Johnson St, Dallas, TX 75001" -319244,27in 4K Gaming Monitor,1,389.99,12/25/19 07:43,"439 South St, New York City, NY 10001" -319245,AA Batteries (4-pack),2,3.84,12/05/19 15:09,"325 Sunset St, Los Angeles, CA 90001" -319246,AAA Batteries (4-pack),2,2.99,12/01/19 22:35,"202 Center St, Seattle, WA 98101" -319247,27in FHD Monitor,1,149.99,12/02/19 20:37,"992 12th St, San Francisco, CA 94016" -319248,USB-C Charging Cable,2,11.95,12/08/19 14:32,"71 Meadow St, Los Angeles, CA 90001" -319249,USB-C Charging Cable,1,11.95,12/31/19 19:06,"546 Hickory St, Dallas, TX 75001" -319250,27in FHD Monitor,1,149.99,12/17/19 13:21,"437 Johnson St, Los Angeles, CA 90001" -319251,AA Batteries (4-pack),1,3.84,12/27/19 23:40,"623 Jefferson St, Boston, MA 02215" -319252,ThinkPad Laptop,1,999.99,12/02/19 16:28,"303 2nd St, Los Angeles, CA 90001" -319253,27in 4K Gaming Monitor,1,389.99,12/26/19 17:06,"619 Lincoln St, New York City, NY 10001" -319254,27in 4K Gaming Monitor,1,389.99,12/17/19 19:23,"17 11th St, Seattle, WA 98101" -319255,AAA Batteries (4-pack),1,2.99,12/17/19 15:33,"282 Forest St, New York City, NY 10001" -319256,20in Monitor,1,109.99,12/30/19 17:17,"97 Willow St, Portland, ME 04101" -319257,Lightning Charging Cable,1,14.95,12/24/19 12:12,"100 Washington St, Portland, ME 04101" -319258,AAA Batteries (4-pack),1,2.99,12/05/19 13:05,"126 Highland St, San Francisco, CA 94016" -319259,AA Batteries (4-pack),1,3.84,12/18/19 10:45,"755 2nd St, Atlanta, GA 30301" -319260,Wired Headphones,1,11.99,12/01/19 16:29,"547 Lincoln St, San Francisco, CA 94016" -319261,Google Phone,1,600,12/31/19 08:48,"845 Lincoln St, Los Angeles, CA 90001" -319261,Bose SoundSport Headphones,1,99.99,12/31/19 08:48,"845 Lincoln St, Los Angeles, CA 90001" -319262,Wired Headphones,1,11.99,12/20/19 07:30,"234 Spruce St, San Francisco, CA 94016" -319263,Lightning Charging Cable,1,14.95,12/15/19 15:43,"916 Willow St, Dallas, TX 75001" -319264,Lightning Charging Cable,1,14.95,12/07/19 12:38,"273 6th St, Dallas, TX 75001" -319265,Lightning Charging Cable,1,14.95,12/11/19 20:35,"624 Wilson St, San Francisco, CA 94016" -319266,iPhone,1,700,12/04/19 15:36,"661 Meadow St, Seattle, WA 98101" -319266,Lightning Charging Cable,1,14.95,12/04/19 15:36,"661 Meadow St, Seattle, WA 98101" -319267,Wired Headphones,1,11.99,12/10/19 13:01,"182 Cedar St, Austin, TX 73301" -319268,Apple Airpods Headphones,1,150,12/18/19 22:31,"416 North St, Austin, TX 73301" -319269,Wired Headphones,1,11.99,12/23/19 08:54,"348 7th St, Dallas, TX 75001" -319270,Flatscreen TV,1,300,12/10/19 17:59,"269 Lincoln St, New York City, NY 10001" -319271,27in FHD Monitor,1,149.99,12/22/19 14:30,"859 Ridge St, Austin, TX 73301" -319272,Wired Headphones,1,11.99,12/27/19 12:53,"885 River St, New York City, NY 10001" -319273,Wired Headphones,1,11.99,12/14/19 21:25,"52 West St, Portland, ME 04101" -319274,ThinkPad Laptop,1,999.99,12/21/19 12:39,"980 Hill St, San Francisco, CA 94016" -319275,USB-C Charging Cable,1,11.95,12/13/19 17:15,"750 Lake St, Austin, TX 73301" -319276,USB-C Charging Cable,1,11.95,12/12/19 07:13,"385 West St, Atlanta, GA 30301" -319276,Bose SoundSport Headphones,1,99.99,12/12/19 07:13,"385 West St, Atlanta, GA 30301" -319277,USB-C Charging Cable,1,11.95,12/29/19 16:24,"646 Forest St, Los Angeles, CA 90001" -319277,Lightning Charging Cable,1,14.95,12/29/19 16:24,"646 Forest St, Los Angeles, CA 90001" -319278,Lightning Charging Cable,1,14.95,12/25/19 19:17,"37 Johnson St, New York City, NY 10001" -319279,Apple Airpods Headphones,1,150,12/16/19 09:46,"171 11th St, New York City, NY 10001" -319280,Bose SoundSport Headphones,1,99.99,12/08/19 15:21,"75 12th St, Boston, MA 02215" -319281,USB-C Charging Cable,1,11.95,12/06/19 08:07,"899 Madison St, Boston, MA 02215" -319282,27in 4K Gaming Monitor,1,389.99,12/05/19 13:59,"767 Jackson St, Portland, ME 04101" -319282,Bose SoundSport Headphones,1,99.99,12/05/19 13:59,"767 Jackson St, Portland, ME 04101" -319283,AAA Batteries (4-pack),2,2.99,12/02/19 14:18,"942 South St, Boston, MA 02215" -319284,27in FHD Monitor,1,149.99,12/11/19 12:04,"817 Madison St, Dallas, TX 75001" -319285,Lightning Charging Cable,1,14.95,12/10/19 15:51,"697 1st St, New York City, NY 10001" -319286,Bose SoundSport Headphones,1,99.99,12/23/19 16:14,"655 12th St, San Francisco, CA 94016" -319287,AA Batteries (4-pack),3,3.84,12/29/19 07:30,"608 Ridge St, Dallas, TX 75001" -319288,AA Batteries (4-pack),1,3.84,12/09/19 12:21,"693 Madison St, Atlanta, GA 30301" -319289,AAA Batteries (4-pack),2,2.99,12/05/19 05:51,"411 River St, San Francisco, CA 94016" -319290,AA Batteries (4-pack),1,3.84,12/20/19 10:43,"996 Elm St, Los Angeles, CA 90001" -319291,AA Batteries (4-pack),1,3.84,12/05/19 05:49,"280 Chestnut St, Boston, MA 02215" -319292,Lightning Charging Cable,1,14.95,12/11/19 21:08,"702 5th St, Dallas, TX 75001" -319293,27in FHD Monitor,1,149.99,12/29/19 21:19,"726 8th St, San Francisco, CA 94016" -319294,Google Phone,1,600,12/17/19 17:15,"550 Jefferson St, Portland, ME 04101" -319295,Bose SoundSport Headphones,1,99.99,12/20/19 19:58,"125 West St, San Francisco, CA 94016" -319296,Lightning Charging Cable,1,14.95,12/05/19 12:49,"144 Main St, Boston, MA 02215" -319297,34in Ultrawide Monitor,1,379.99,12/27/19 16:06,"366 Center St, Dallas, TX 75001" -,,,,, -319298,Lightning Charging Cable,1,14.95,12/16/19 18:53,"865 Pine St, Atlanta, GA 30301" -319299,AA Batteries (4-pack),3,3.84,12/02/19 11:51,"523 Cherry St, San Francisco, CA 94016" -319300,Lightning Charging Cable,1,14.95,12/31/19 10:26,"773 Spruce St, San Francisco, CA 94016" -319301,Vareebadd Phone,1,400,12/12/19 09:48,"129 South St, Boston, MA 02215" -319301,USB-C Charging Cable,1,11.95,12/12/19 09:48,"129 South St, Boston, MA 02215" -319302,AA Batteries (4-pack),1,3.84,12/19/19 17:02,"592 10th St, Austin, TX 73301" -319303,Bose SoundSport Headphones,1,99.99,12/08/19 12:54,"303 Walnut St, Seattle, WA 98101" -319304,AAA Batteries (4-pack),2,2.99,12/25/19 17:26,"114 Washington St, Los Angeles, CA 90001" -319305,27in FHD Monitor,1,149.99,12/01/19 12:14,"871 Lakeview St, Seattle, WA 98101" -319306,27in 4K Gaming Monitor,1,389.99,12/04/19 19:51,"777 Madison St, San Francisco, CA 94016" -319307,Vareebadd Phone,1,400,12/18/19 11:32,"658 9th St, Los Angeles, CA 90001" -319308,USB-C Charging Cable,1,11.95,01/01/20 03:13,"135 8th St, Boston, MA 02215" -319309,AAA Batteries (4-pack),2,2.99,12/22/19 14:43,"800 South St, San Francisco, CA 94016" -319310,AAA Batteries (4-pack),2,2.99,12/19/19 23:10,"822 Madison St, Los Angeles, CA 90001" -319311,AA Batteries (4-pack),2,3.84,12/21/19 07:33,"431 Meadow St, San Francisco, CA 94016" -319312,AA Batteries (4-pack),1,3.84,12/27/19 09:54,"908 Cedar St, San Francisco, CA 94016" -319313,Google Phone,1,600,12/01/19 19:46,"683 Spruce St, Portland, ME 04101" -319313,USB-C Charging Cable,1,11.95,12/01/19 19:46,"683 Spruce St, Portland, ME 04101" -319314,27in FHD Monitor,1,149.99,12/01/19 10:08,"201 Johnson St, Los Angeles, CA 90001" -319315,Bose SoundSport Headphones,1,99.99,12/18/19 14:18,"737 Adams St, New York City, NY 10001" -319316,Apple Airpods Headphones,1,150,12/25/19 16:53,"535 Madison St, Dallas, TX 75001" -319316,AAA Batteries (4-pack),1,2.99,12/25/19 16:53,"535 Madison St, Dallas, TX 75001" -319317,Apple Airpods Headphones,1,150,12/12/19 00:13,"685 Elm St, Los Angeles, CA 90001" -319318,AAA Batteries (4-pack),2,2.99,12/01/19 12:24,"268 12th St, Seattle, WA 98101" -319319,Lightning Charging Cable,1,14.95,12/05/19 09:30,"698 5th St, San Francisco, CA 94016" -319320,Lightning Charging Cable,1,14.95,12/06/19 10:27,"824 Washington St, Boston, MA 02215" -319321,AAA Batteries (4-pack),1,2.99,12/20/19 20:02,"866 2nd St, Dallas, TX 75001" -319322,AA Batteries (4-pack),1,3.84,12/12/19 16:08,"403 Wilson St, Los Angeles, CA 90001" -319323,Google Phone,1,600,12/03/19 00:30,"601 Cedar St, Los Angeles, CA 90001" -319324,USB-C Charging Cable,1,11.95,12/27/19 01:32,"274 10th St, Los Angeles, CA 90001" -319325,USB-C Charging Cable,1,11.95,12/17/19 20:15,"711 Highland St, New York City, NY 10001" -319326,USB-C Charging Cable,1,11.95,12/09/19 10:56,"484 Madison St, San Francisco, CA 94016" -319327,AA Batteries (4-pack),2,3.84,12/23/19 17:25,"253 Dogwood St, San Francisco, CA 94016" -319328,Bose SoundSport Headphones,1,99.99,12/14/19 19:24,"914 Sunset St, Seattle, WA 98101" -319329,AAA Batteries (4-pack),2,2.99,12/05/19 18:43,"496 Jackson St, San Francisco, CA 94016" -319330,AA Batteries (4-pack),1,3.84,12/13/19 08:48,"443 Park St, Boston, MA 02215" -319331,AA Batteries (4-pack),1,3.84,12/16/19 21:13,"567 7th St, San Francisco, CA 94016" -319332,Wired Headphones,1,11.99,12/07/19 18:17,"574 Church St, Seattle, WA 98101" -319333,Lightning Charging Cable,1,14.95,12/20/19 16:31,"657 Johnson St, Boston, MA 02215" -319334,USB-C Charging Cable,1,11.95,12/23/19 15:22,"686 13th St, Dallas, TX 75001" -319335,Lightning Charging Cable,1,14.95,12/21/19 17:29,"209 Maple St, Austin, TX 73301" -319336,Apple Airpods Headphones,1,150,12/26/19 17:53,"95 Cherry St, Austin, TX 73301" -319337,Vareebadd Phone,1,400,12/29/19 15:12,"835 Main St, San Francisco, CA 94016" -319337,USB-C Charging Cable,1,11.95,12/29/19 15:12,"835 Main St, San Francisco, CA 94016" -319338,Wired Headphones,1,11.99,12/05/19 16:57,"51 Lincoln St, Los Angeles, CA 90001" -319339,Lightning Charging Cable,1,14.95,12/05/19 14:09,"983 Willow St, Los Angeles, CA 90001" -319340,Wired Headphones,1,11.99,12/24/19 09:15,"767 7th St, Atlanta, GA 30301" -319341,USB-C Charging Cable,1,11.95,12/07/19 10:31,"178 Meadow St, New York City, NY 10001" -319342,20in Monitor,1,109.99,12/24/19 16:36,"419 River St, Dallas, TX 75001" -319343,USB-C Charging Cable,1,11.95,12/11/19 22:57,"837 14th St, San Francisco, CA 94016" -319344,AA Batteries (4-pack),2,3.84,12/09/19 07:25,"664 Hill St, San Francisco, CA 94016" -319345,34in Ultrawide Monitor,1,379.99,12/08/19 18:35,"265 Dogwood St, San Francisco, CA 94016" -319346,Flatscreen TV,1,300,12/20/19 19:50,"264 Hickory St, San Francisco, CA 94016" -319347,34in Ultrawide Monitor,1,379.99,12/28/19 20:02,"81 Lake St, Atlanta, GA 30301" -319348,Bose SoundSport Headphones,1,99.99,12/08/19 15:28,"601 Dogwood St, Austin, TX 73301" -319349,AA Batteries (4-pack),2,3.84,12/18/19 18:13,"708 Willow St, San Francisco, CA 94016" -319350,USB-C Charging Cable,1,11.95,12/14/19 12:05,"805 West St, New York City, NY 10001" -319351,Lightning Charging Cable,1,14.95,12/15/19 21:51,"498 Highland St, New York City, NY 10001" -319352,Apple Airpods Headphones,1,150,12/23/19 12:38,"778 Jackson St, Los Angeles, CA 90001" -319353,USB-C Charging Cable,1,11.95,12/17/19 10:23,"177 9th St, San Francisco, CA 94016" -319354,Apple Airpods Headphones,1,150,12/29/19 13:26,"249 1st St, Los Angeles, CA 90001" -319355,USB-C Charging Cable,1,11.95,12/20/19 07:40,"249 Church St, Boston, MA 02215" -319356,Bose SoundSport Headphones,1,99.99,12/24/19 14:08,"182 Spruce St, Austin, TX 73301" -319357,AAA Batteries (4-pack),1,2.99,12/30/19 19:54,"62 8th St, Boston, MA 02215" -319358,USB-C Charging Cable,1,11.95,12/26/19 22:20,"540 Sunset St, San Francisco, CA 94016" -319359,Google Phone,1,600,12/08/19 11:48,"988 14th St, Los Angeles, CA 90001" -319359,Wired Headphones,1,11.99,12/08/19 11:48,"988 14th St, Los Angeles, CA 90001" -319360,Lightning Charging Cable,1,14.95,12/07/19 22:02,"22 Cherry St, Atlanta, GA 30301" -319361,Apple Airpods Headphones,1,150,12/25/19 18:45,"95 North St, New York City, NY 10001" -319362,Wired Headphones,1,11.99,12/08/19 10:40,"517 Jefferson St, Boston, MA 02215" -319363,Lightning Charging Cable,1,14.95,12/23/19 18:36,"158 Cherry St, Seattle, WA 98101" -319364,LG Washing Machine,1,600.0,12/03/19 19:35,"695 Pine St, Seattle, WA 98101" -319365,USB-C Charging Cable,1,11.95,12/15/19 01:41,"783 Washington St, San Francisco, CA 94016" -319366,20in Monitor,2,109.99,01/01/20 00:45,"746 South St, San Francisco, CA 94016" -319367,20in Monitor,1,109.99,12/09/19 21:38,"995 North St, Austin, TX 73301" -319368,AA Batteries (4-pack),1,3.84,12/22/19 17:14,"699 Highland St, San Francisco, CA 94016" -319369,Wired Headphones,1,11.99,12/07/19 17:58,"997 Wilson St, Boston, MA 02215" -319370,ThinkPad Laptop,1,999.99,12/24/19 12:16,"763 11th St, New York City, NY 10001" -319371,Apple Airpods Headphones,1,150,12/28/19 20:16,"858 North St, Portland, OR 97035" -319372,Wired Headphones,1,11.99,12/15/19 19:50,"346 Adams St, Seattle, WA 98101" -319373,Bose SoundSport Headphones,1,99.99,12/11/19 13:09,"492 Johnson St, Atlanta, GA 30301" -319374,27in FHD Monitor,1,149.99,12/12/19 12:29,"775 7th St, Seattle, WA 98101" -319375,Lightning Charging Cable,1,14.95,12/08/19 19:35,"184 Lake St, Portland, OR 97035" -319376,AAA Batteries (4-pack),4,2.99,12/06/19 21:39,"890 Church St, Dallas, TX 75001" -319377,AAA Batteries (4-pack),1,2.99,12/05/19 21:46,"495 Center St, Los Angeles, CA 90001" -319378,AA Batteries (4-pack),1,3.84,12/02/19 20:45,"132 Park St, Boston, MA 02215" -319379,Apple Airpods Headphones,1,150,12/07/19 19:21,"459 13th St, New York City, NY 10001" -319380,Apple Airpods Headphones,1,150,12/30/19 11:28,"364 13th St, Los Angeles, CA 90001" -319381,Lightning Charging Cable,1,14.95,12/26/19 17:49,"18 Lincoln St, Seattle, WA 98101" -319382,AAA Batteries (4-pack),4,2.99,12/30/19 06:51,"406 Walnut St, Los Angeles, CA 90001" -319383,Lightning Charging Cable,1,14.95,12/18/19 10:04,"527 10th St, San Francisco, CA 94016" -319384,20in Monitor,1,109.99,12/26/19 15:06,"349 12th St, San Francisco, CA 94016" -319385,27in FHD Monitor,1,149.99,12/02/19 23:06,"283 Center St, Los Angeles, CA 90001" -319386,34in Ultrawide Monitor,1,379.99,12/28/19 09:48,"110 Washington St, Seattle, WA 98101" -319387,27in FHD Monitor,1,149.99,12/13/19 09:26,"484 6th St, Los Angeles, CA 90001" -319388,34in Ultrawide Monitor,1,379.99,12/13/19 17:55,"329 Chestnut St, Los Angeles, CA 90001" -319389,USB-C Charging Cable,1,11.95,12/22/19 09:52,"280 Maple St, San Francisco, CA 94016" -319390,USB-C Charging Cable,1,11.95,12/19/19 11:30,"721 Hill St, San Francisco, CA 94016" -319391,Google Phone,1,600,12/08/19 12:44,"931 Jackson St, Boston, MA 02215" -319392,Apple Airpods Headphones,1,150,12/24/19 21:13,"826 Sunset St, Portland, OR 97035" -319393,20in Monitor,1,109.99,12/02/19 19:03,"832 Main St, Los Angeles, CA 90001" -319394,Wired Headphones,1,11.99,12/27/19 18:06,"335 Chestnut St, San Francisco, CA 94016" -319395,Flatscreen TV,1,300,12/14/19 10:36,"181 Pine St, Boston, MA 02215" -319396,Wired Headphones,1,11.99,12/19/19 07:48,"379 Walnut St, Atlanta, GA 30301" -319397,Lightning Charging Cable,1,14.95,12/15/19 14:50,"200 Ridge St, San Francisco, CA 94016" -319398,AA Batteries (4-pack),1,3.84,12/22/19 08:26,"216 1st St, Dallas, TX 75001" -319399,USB-C Charging Cable,1,11.95,12/24/19 19:23,"648 Jefferson St, Boston, MA 02215" -319400,Lightning Charging Cable,1,14.95,12/18/19 23:08,"518 Maple St, San Francisco, CA 94016" -319401,AAA Batteries (4-pack),3,2.99,12/19/19 00:18,"540 6th St, San Francisco, CA 94016" -319402,AAA Batteries (4-pack),2,2.99,12/05/19 14:13,"467 Elm St, Los Angeles, CA 90001" -319403,Flatscreen TV,1,300,12/09/19 17:04,"831 11th St, San Francisco, CA 94016" -319404,AAA Batteries (4-pack),3,2.99,12/02/19 20:03,"821 Meadow St, Los Angeles, CA 90001" -319405,USB-C Charging Cable,1,11.95,12/25/19 13:48,"78 6th St, Los Angeles, CA 90001" -319406,Google Phone,1,600,12/17/19 05:49,"380 Lake St, New York City, NY 10001" -319407,USB-C Charging Cable,1,11.95,12/06/19 14:22,"260 Elm St, Dallas, TX 75001" -319408,Bose SoundSport Headphones,1,99.99,12/05/19 15:18,"780 Jackson St, Los Angeles, CA 90001" -319409,Lightning Charging Cable,1,14.95,12/28/19 17:39,"611 4th St, Los Angeles, CA 90001" -319410,AA Batteries (4-pack),1,3.84,12/13/19 09:57,"956 14th St, Los Angeles, CA 90001" -319411,Wired Headphones,1,11.99,12/25/19 18:05,"732 Maple St, San Francisco, CA 94016" -319412,Bose SoundSport Headphones,1,99.99,12/06/19 09:18,"827 1st St, San Francisco, CA 94016" -319413,AA Batteries (4-pack),1,3.84,12/18/19 15:36,"976 Forest St, Dallas, TX 75001" -319414,20in Monitor,1,109.99,12/12/19 20:17,"285 Lake St, Los Angeles, CA 90001" -319415,Wired Headphones,1,11.99,12/06/19 19:05,"124 Adams St, San Francisco, CA 94016" -319416,Lightning Charging Cable,1,14.95,12/01/19 16:54,"61 Hill St, New York City, NY 10001" -319417,iPhone,1,700,12/14/19 09:40,"708 Hickory St, New York City, NY 10001" -319418,Apple Airpods Headphones,1,150,12/21/19 15:58,"341 2nd St, Portland, OR 97035" -319419,Wired Headphones,1,11.99,12/08/19 16:35,"399 Hickory St, Dallas, TX 75001" -319420,Apple Airpods Headphones,1,150,12/24/19 09:26,"455 14th St, Portland, OR 97035" -319421,Lightning Charging Cable,1,14.95,12/06/19 16:34,"61 5th St, Los Angeles, CA 90001" -319422,Bose SoundSport Headphones,1,99.99,12/04/19 17:33,"900 North St, San Francisco, CA 94016" -319423,Flatscreen TV,1,300,12/30/19 17:55,"971 Wilson St, Seattle, WA 98101" -319424,AA Batteries (4-pack),1,3.84,12/24/19 18:05,"316 Meadow St, Austin, TX 73301" -319425,AAA Batteries (4-pack),1,2.99,12/08/19 21:46,"710 Dogwood St, San Francisco, CA 94016" -319426,Wired Headphones,2,11.99,12/05/19 15:02,"444 Center St, Boston, MA 02215" -319427,Google Phone,1,600,12/08/19 10:48,"57 Sunset St, Dallas, TX 75001" -319428,20in Monitor,1,109.99,12/05/19 02:03,"373 Hill St, Los Angeles, CA 90001" -319429,20in Monitor,1,109.99,12/29/19 13:42,"271 Forest St, Seattle, WA 98101" -319430,Wired Headphones,1,11.99,12/01/19 17:45,"37 Forest St, Atlanta, GA 30301" -319431,Lightning Charging Cable,1,14.95,12/16/19 10:37,"725 Park St, New York City, NY 10001" -319432,34in Ultrawide Monitor,1,379.99,12/12/19 22:17,"493 Lakeview St, Seattle, WA 98101" -319433,27in 4K Gaming Monitor,1,389.99,12/26/19 22:38,"946 Maple St, Portland, OR 97035" -319434,Apple Airpods Headphones,1,150,12/02/19 20:08,"702 Cedar St, San Francisco, CA 94016" -319435,Bose SoundSport Headphones,1,99.99,12/11/19 15:48,"646 13th St, Seattle, WA 98101" -319436,Bose SoundSport Headphones,1,99.99,12/25/19 20:08,"522 14th St, San Francisco, CA 94016" -319437,Lightning Charging Cable,1,14.95,12/28/19 17:33,"297 Main St, Los Angeles, CA 90001" -319438,27in 4K Gaming Monitor,1,389.99,12/20/19 11:46,"139 Lakeview St, Austin, TX 73301" -319439,Lightning Charging Cable,1,14.95,12/07/19 15:17,"217 11th St, San Francisco, CA 94016" -319440,20in Monitor,1,109.99,12/20/19 10:53,"417 Lakeview St, San Francisco, CA 94016" -319441,27in FHD Monitor,1,149.99,12/17/19 13:33,"187 11th St, Atlanta, GA 30301" -319442,USB-C Charging Cable,1,11.95,12/24/19 10:20,"510 River St, New York City, NY 10001" -319443,AAA Batteries (4-pack),1,2.99,12/07/19 20:45,"557 Lincoln St, Dallas, TX 75001" -319444,USB-C Charging Cable,1,11.95,12/31/19 21:27,"603 Meadow St, New York City, NY 10001" -319445,Vareebadd Phone,1,400,12/08/19 21:03,"183 North St, Atlanta, GA 30301" -319446,iPhone,1,700,12/06/19 17:44,"258 Elm St, Seattle, WA 98101" -319447,Google Phone,1,600,12/29/19 20:18,"114 Lincoln St, San Francisco, CA 94016" -319447,Wired Headphones,1,11.99,12/29/19 20:18,"114 Lincoln St, San Francisco, CA 94016" -319448,Lightning Charging Cable,1,14.95,12/28/19 20:19,"478 Madison St, Portland, OR 97035" -319449,Wired Headphones,1,11.99,12/03/19 08:53,"728 12th St, Portland, ME 04101" -319450,Wired Headphones,1,11.99,12/12/19 17:56,"319 Hill St, Seattle, WA 98101" -319451,USB-C Charging Cable,1,11.95,12/08/19 07:48,"679 Meadow St, Atlanta, GA 30301" -319452,AA Batteries (4-pack),1,3.84,12/17/19 18:55,"441 Pine St, Seattle, WA 98101" -319453,Lightning Charging Cable,1,14.95,12/27/19 12:53,"561 Johnson St, San Francisco, CA 94016" -319454,Bose SoundSport Headphones,1,99.99,12/15/19 17:32,"248 Meadow St, Dallas, TX 75001" -319455,USB-C Charging Cable,1,11.95,12/28/19 21:39,"911 Church St, Atlanta, GA 30301" -319456,Lightning Charging Cable,1,14.95,12/03/19 20:14,"58 2nd St, Austin, TX 73301" -319457,AAA Batteries (4-pack),1,2.99,12/10/19 10:25,"401 Jefferson St, San Francisco, CA 94016" -319458,Lightning Charging Cable,1,14.95,12/09/19 21:54,"993 Johnson St, San Francisco, CA 94016" -319459,AA Batteries (4-pack),1,3.84,12/06/19 08:44,"39 Dogwood St, San Francisco, CA 94016" -319460,Bose SoundSport Headphones,1,99.99,12/19/19 19:31,"50 Lake St, Boston, MA 02215" -319461,Lightning Charging Cable,1,14.95,12/28/19 09:21,"441 Sunset St, New York City, NY 10001" -319462,AAA Batteries (4-pack),1,2.99,12/20/19 20:45,"716 Lake St, New York City, NY 10001" -319463,ThinkPad Laptop,1,999.99,12/30/19 20:38,"513 Spruce St, New York City, NY 10001" -319464,AA Batteries (4-pack),1,3.84,12/27/19 15:22,"563 Wilson St, Atlanta, GA 30301" -319465,USB-C Charging Cable,1,11.95,12/03/19 15:26,"833 Adams St, Los Angeles, CA 90001" -319466,Bose SoundSport Headphones,1,99.99,12/12/19 07:32,"833 Johnson St, New York City, NY 10001" -319467,20in Monitor,1,109.99,12/16/19 13:23,"904 Ridge St, New York City, NY 10001" -319468,Wired Headphones,1,11.99,12/19/19 10:35,"245 Wilson St, Los Angeles, CA 90001" -319469,USB-C Charging Cable,1,11.95,12/09/19 18:31,"113 Elm St, San Francisco, CA 94016" -319470,27in 4K Gaming Monitor,1,389.99,12/10/19 11:23,"698 Madison St, New York City, NY 10001" -319471,AAA Batteries (4-pack),1,2.99,12/08/19 21:20,"237 Main St, Atlanta, GA 30301" -319472,iPhone,1,700,12/29/19 20:24,"779 10th St, Atlanta, GA 30301" -319473,Lightning Charging Cable,1,14.95,12/20/19 10:03,"556 4th St, Boston, MA 02215" -319474,Lightning Charging Cable,1,14.95,12/05/19 12:30,"403 Hill St, Seattle, WA 98101" -319475,Vareebadd Phone,1,400,12/16/19 23:01,"910 Spruce St, Seattle, WA 98101" -319476,Flatscreen TV,1,300,12/08/19 15:34,"683 Johnson St, New York City, NY 10001" -319477,USB-C Charging Cable,1,11.95,12/14/19 19:38,"266 Madison St, New York City, NY 10001" -319478,Apple Airpods Headphones,1,150,12/29/19 00:33,"376 Dogwood St, Seattle, WA 98101" -319479,AAA Batteries (4-pack),1,2.99,12/09/19 12:48,"130 Lakeview St, Dallas, TX 75001" -319480,20in Monitor,1,109.99,12/13/19 19:05,"965 7th St, Austin, TX 73301" -319481,Bose SoundSport Headphones,1,99.99,12/28/19 22:25,"424 Lakeview St, Austin, TX 73301" -319482,Flatscreen TV,1,300,12/27/19 13:28,"838 Highland St, Dallas, TX 75001" -319483,34in Ultrawide Monitor,1,379.99,12/12/19 14:51,"793 Wilson St, Los Angeles, CA 90001" -319484,AA Batteries (4-pack),1,3.84,12/27/19 08:54,"861 Ridge St, Los Angeles, CA 90001" -319485,iPhone,1,700,12/10/19 15:08,"794 11th St, Dallas, TX 75001" -319486,AA Batteries (4-pack),1,3.84,12/11/19 03:15,"606 Johnson St, Los Angeles, CA 90001" -319487,AA Batteries (4-pack),2,3.84,12/16/19 23:12,"682 Meadow St, Atlanta, GA 30301" -319488,34in Ultrawide Monitor,1,379.99,12/12/19 19:18,"798 Forest St, Austin, TX 73301" -319489,USB-C Charging Cable,1,11.95,12/25/19 22:11,"660 Hickory St, Portland, OR 97035" -319490,AA Batteries (4-pack),1,3.84,12/15/19 12:08,"41 Jackson St, Portland, OR 97035" -319491,Wired Headphones,1,11.99,12/29/19 22:43,"306 Ridge St, New York City, NY 10001" -319492,Bose SoundSport Headphones,1,99.99,12/26/19 20:07,"217 7th St, San Francisco, CA 94016" -319493,27in 4K Gaming Monitor,1,389.99,12/20/19 21:07,"300 Lincoln St, Los Angeles, CA 90001" -319494,Apple Airpods Headphones,1,150,12/12/19 19:01,"230 Chestnut St, Dallas, TX 75001" -319495,Wired Headphones,1,11.99,12/01/19 11:10,"995 13th St, Dallas, TX 75001" -319496,Wired Headphones,1,11.99,12/11/19 11:57,"133 Hickory St, San Francisco, CA 94016" -319497,Bose SoundSport Headphones,1,99.99,12/28/19 22:10,"9 Hill St, Los Angeles, CA 90001" -319498,Lightning Charging Cable,2,14.95,12/27/19 08:19,"388 8th St, San Francisco, CA 94016" -319499,AAA Batteries (4-pack),1,2.99,12/07/19 17:28,"860 Cherry St, New York City, NY 10001" -319500,USB-C Charging Cable,1,11.95,12/09/19 09:30,"841 Madison St, Los Angeles, CA 90001" -319501,USB-C Charging Cable,2,11.95,12/24/19 08:49,"79 South St, Los Angeles, CA 90001" -319502,Wired Headphones,1,11.99,12/04/19 16:02,"866 5th St, Dallas, TX 75001" -319503,ThinkPad Laptop,1,999.99,12/28/19 00:49,"148 Pine St, San Francisco, CA 94016" -319504,AAA Batteries (4-pack),2,2.99,12/13/19 06:40,"81 Meadow St, San Francisco, CA 94016" -319505,AA Batteries (4-pack),3,3.84,12/29/19 20:32,"649 Elm St, Boston, MA 02215" -319506,USB-C Charging Cable,1,11.95,12/14/19 13:30,"21 Walnut St, San Francisco, CA 94016" -319507,USB-C Charging Cable,1,11.95,12/22/19 13:35,"613 1st St, New York City, NY 10001" -319508,Lightning Charging Cable,1,14.95,12/15/19 09:29,"75 Lake St, Austin, TX 73301" -319509,AAA Batteries (4-pack),1,2.99,12/10/19 20:43,"141 Ridge St, New York City, NY 10001" -319510,Wired Headphones,1,11.99,12/04/19 14:09,"123 Adams St, San Francisco, CA 94016" -319511,Lightning Charging Cable,1,14.95,12/01/19 19:11,"291 11th St, Los Angeles, CA 90001" -319512,AAA Batteries (4-pack),1,2.99,12/11/19 09:36,"370 Main St, Boston, MA 02215" -319513,20in Monitor,1,109.99,12/29/19 21:16,"305 Ridge St, Atlanta, GA 30301" -319514,AAA Batteries (4-pack),1,2.99,12/22/19 16:22,"588 Spruce St, Atlanta, GA 30301" -319514,Wired Headphones,1,11.99,12/22/19 16:22,"588 Spruce St, Atlanta, GA 30301" -319515,Bose SoundSport Headphones,1,99.99,12/16/19 12:08,"621 Lincoln St, Austin, TX 73301" -319516,USB-C Charging Cable,1,11.95,12/24/19 20:35,"621 Elm St, Atlanta, GA 30301" -319517,AA Batteries (4-pack),5,3.84,12/28/19 13:05,"361 Meadow St, Atlanta, GA 30301" -319518,USB-C Charging Cable,1,11.95,12/15/19 09:27,"468 Johnson St, Boston, MA 02215" -319519,27in FHD Monitor,1,149.99,12/08/19 00:13,"657 8th St, San Francisco, CA 94016" -319520,Apple Airpods Headphones,1,150,12/09/19 16:47,"744 South St, Boston, MA 02215" -319521,Wired Headphones,1,11.99,12/17/19 10:24,"753 Cedar St, San Francisco, CA 94016" -319522,Apple Airpods Headphones,1,150,12/01/19 06:41,"873 Spruce St, Portland, OR 97035" -319523,Bose SoundSport Headphones,1,99.99,12/27/19 19:37,"616 2nd St, Atlanta, GA 30301" -319524,Lightning Charging Cable,1,14.95,12/10/19 10:23,"665 Jefferson St, Atlanta, GA 30301" -319525,Lightning Charging Cable,1,14.95,12/24/19 17:16,"567 Main St, New York City, NY 10001" -319526,AA Batteries (4-pack),1,3.84,12/02/19 08:36,"807 Dogwood St, Seattle, WA 98101" -319527,Wired Headphones,2,11.99,12/22/19 00:10,"894 Park St, New York City, NY 10001" -319528,AAA Batteries (4-pack),4,2.99,12/27/19 08:44,"78 Dogwood St, Atlanta, GA 30301" -319529,iPhone,1,700,12/17/19 23:35,"553 Jefferson St, Seattle, WA 98101" -319530,27in FHD Monitor,1,149.99,12/15/19 13:14,"301 Willow St, New York City, NY 10001" -319531,Macbook Pro Laptop,1,1700,12/30/19 21:15,"721 Ridge St, San Francisco, CA 94016" -319532,AAA Batteries (4-pack),1,2.99,12/05/19 20:16,"604 11th St, Atlanta, GA 30301" -319533,27in FHD Monitor,1,149.99,12/20/19 22:46,"851 5th St, Seattle, WA 98101" -319533,AAA Batteries (4-pack),3,2.99,12/20/19 22:46,"851 5th St, Seattle, WA 98101" -319534,Lightning Charging Cable,1,14.95,12/25/19 16:59,"775 1st St, Portland, OR 97035" -319535,Lightning Charging Cable,1,14.95,12/12/19 21:27,"294 Spruce St, San Francisco, CA 94016" -319536,Macbook Pro Laptop,1,1700,12/16/19 09:59,"346 Elm St, Seattle, WA 98101" -319536,Wired Headphones,1,11.99,12/16/19 09:59,"346 Elm St, Seattle, WA 98101" -319537,Bose SoundSport Headphones,1,99.99,12/27/19 14:10,"674 12th St, San Francisco, CA 94016" -319538,Lightning Charging Cable,1,14.95,12/17/19 14:42,"757 Lakeview St, New York City, NY 10001" -319539,27in FHD Monitor,1,149.99,12/30/19 18:51,"220 Hill St, New York City, NY 10001" -319540,USB-C Charging Cable,1,11.95,12/11/19 17:49,"535 Park St, Boston, MA 02215" -319541,AA Batteries (4-pack),1,3.84,12/22/19 18:08,"3 Adams St, San Francisco, CA 94016" -319542,AA Batteries (4-pack),3,3.84,12/14/19 20:49,"217 Spruce St, Austin, TX 73301" -319543,AAA Batteries (4-pack),2,2.99,12/06/19 12:31,"871 5th St, Los Angeles, CA 90001" -319544,AAA Batteries (4-pack),1,2.99,12/05/19 11:05,"851 Main St, Austin, TX 73301" -319545,Lightning Charging Cable,1,14.95,12/25/19 18:23,"133 Spruce St, Seattle, WA 98101" -319546,Wired Headphones,1,11.99,12/24/19 08:26,"887 7th St, Los Angeles, CA 90001" -319547,AA Batteries (4-pack),2,3.84,12/24/19 11:46,"13 13th St, Los Angeles, CA 90001" -319548,20in Monitor,1,109.99,12/21/19 22:21,"476 Park St, San Francisco, CA 94016" -319549,Wired Headphones,1,11.99,12/12/19 01:37,"520 Lake St, Austin, TX 73301" -319550,Lightning Charging Cable,1,14.95,12/23/19 15:37,"387 11th St, Atlanta, GA 30301" -319551,27in FHD Monitor,1,149.99,12/01/19 08:07,"5 Lake St, Austin, TX 73301" -319552,USB-C Charging Cable,1,11.95,12/13/19 10:24,"626 Maple St, Boston, MA 02215" -319553,USB-C Charging Cable,1,11.95,12/08/19 01:12,"478 Lake St, Seattle, WA 98101" -319554,27in 4K Gaming Monitor,1,389.99,12/06/19 10:55,"146 Jefferson St, New York City, NY 10001" -319555,Wired Headphones,1,11.99,12/13/19 21:34,"10 Highland St, San Francisco, CA 94016" -319556,Google Phone,1,600,12/22/19 08:23,"848 7th St, Austin, TX 73301" -319556,Wired Headphones,1,11.99,12/22/19 08:23,"848 7th St, Austin, TX 73301" -319557,27in FHD Monitor,1,149.99,12/11/19 21:17,"827 River St, New York City, NY 10001" -319558,Wired Headphones,1,11.99,12/20/19 14:42,"207 Adams St, Atlanta, GA 30301" -319559,AA Batteries (4-pack),1,3.84,12/11/19 13:21,"804 1st St, Austin, TX 73301" -319560,AA Batteries (4-pack),1,3.84,12/18/19 11:02,"267 11th St, Seattle, WA 98101" -319561,Wired Headphones,1,11.99,12/01/19 11:32,"189 Pine St, New York City, NY 10001" -319562,Apple Airpods Headphones,1,150,12/11/19 11:54,"684 Willow St, San Francisco, CA 94016" -319563,27in FHD Monitor,1,149.99,12/27/19 19:46,"620 Wilson St, Dallas, TX 75001" -319564,Bose SoundSport Headphones,1,99.99,12/23/19 14:32,"955 13th St, San Francisco, CA 94016" -319565,AA Batteries (4-pack),1,3.84,12/15/19 09:56,"81 Sunset St, Los Angeles, CA 90001" -319566,iPhone,1,700,12/28/19 00:41,"260 West St, Dallas, TX 75001" -319567,Bose SoundSport Headphones,1,99.99,12/10/19 09:39,"726 Main St, San Francisco, CA 94016" -319568,20in Monitor,1,109.99,12/29/19 18:25,"128 Pine St, Atlanta, GA 30301" -319569,Bose SoundSport Headphones,1,99.99,12/15/19 12:13,"521 Ridge St, New York City, NY 10001" -319570,Macbook Pro Laptop,1,1700,12/09/19 17:40,"57 13th St, Boston, MA 02215" -319571,Lightning Charging Cable,1,14.95,12/12/19 23:48,"171 Main St, San Francisco, CA 94016" -319572,Bose SoundSport Headphones,1,99.99,12/18/19 10:20,"10 Jefferson St, Los Angeles, CA 90001" -319573,Wired Headphones,1,11.99,12/13/19 09:40,"212 Walnut St, San Francisco, CA 94016" -319574,USB-C Charging Cable,1,11.95,12/26/19 00:18,"259 7th St, Los Angeles, CA 90001" -319575,AA Batteries (4-pack),1,3.84,12/16/19 18:44,"412 River St, New York City, NY 10001" -319576,Apple Airpods Headphones,1,150,12/04/19 20:39,"733 Walnut St, Los Angeles, CA 90001" -319577,AA Batteries (4-pack),1,3.84,12/02/19 21:55,"656 Lake St, San Francisco, CA 94016" -319578,34in Ultrawide Monitor,1,379.99,12/13/19 11:39,"458 Center St, Austin, TX 73301" -319579,Lightning Charging Cable,1,14.95,12/19/19 19:28,"285 4th St, Los Angeles, CA 90001" -319580,Lightning Charging Cable,1,14.95,12/03/19 18:58,"133 Johnson St, Boston, MA 02215" -319581,27in 4K Gaming Monitor,1,389.99,12/04/19 19:36,"17 Hill St, Boston, MA 02215" -319582,Bose SoundSport Headphones,1,99.99,12/06/19 21:01,"509 Dogwood St, San Francisco, CA 94016" -319583,AAA Batteries (4-pack),1,2.99,12/30/19 14:46,"261 4th St, Boston, MA 02215" -319584,iPhone,1,700,12/11/19 00:30,"537 Sunset St, Portland, OR 97035" -319584,Wired Headphones,1,11.99,12/11/19 00:30,"537 Sunset St, Portland, OR 97035" -319585,27in 4K Gaming Monitor,1,389.99,12/27/19 14:01,"987 11th St, Atlanta, GA 30301" -319586,AAA Batteries (4-pack),2,2.99,12/23/19 01:11,"920 Center St, Austin, TX 73301" -319587,27in 4K Gaming Monitor,1,389.99,12/03/19 18:24,"622 Center St, San Francisco, CA 94016" -319588,LG Dryer,1,600.0,12/21/19 12:49,"205 Hickory St, New York City, NY 10001" -319589,USB-C Charging Cable,1,11.95,12/01/19 12:09,"387 5th St, New York City, NY 10001" -319590,AA Batteries (4-pack),1,3.84,12/14/19 15:37,"607 Lake St, San Francisco, CA 94016" -319591,27in 4K Gaming Monitor,1,389.99,12/28/19 00:09,"900 6th St, Los Angeles, CA 90001" -319592,AAA Batteries (4-pack),1,2.99,12/03/19 14:29,"803 North St, San Francisco, CA 94016" -319593,Lightning Charging Cable,1,14.95,12/06/19 12:35,"451 2nd St, Dallas, TX 75001" -319594,AA Batteries (4-pack),1,3.84,12/09/19 19:38,"48 Main St, Los Angeles, CA 90001" -319595,ThinkPad Laptop,1,999.99,12/31/19 22:38,"788 6th St, San Francisco, CA 94016" -319596,iPhone,1,700,12/01/19 08:44,"436 14th St, New York City, NY 10001" -319596,Lightning Charging Cable,1,14.95,12/01/19 08:44,"436 14th St, New York City, NY 10001" -319597,USB-C Charging Cable,1,11.95,12/30/19 20:01,"380 Church St, Portland, OR 97035" -319598,Bose SoundSport Headphones,1,99.99,12/07/19 12:51,"337 Center St, Los Angeles, CA 90001" -319599,Lightning Charging Cable,2,14.95,12/16/19 13:20,"448 Lincoln St, Austin, TX 73301" -319600,Lightning Charging Cable,1,14.95,12/05/19 14:19,"846 13th St, Boston, MA 02215" -319601,Wired Headphones,1,11.99,12/12/19 19:11,"127 Pine St, Seattle, WA 98101" -319602,AAA Batteries (4-pack),3,2.99,12/05/19 23:12,"580 11th St, San Francisco, CA 94016" -319603,iPhone,1,700,12/26/19 19:06,"102 9th St, Boston, MA 02215" -319604,ThinkPad Laptop,1,999.99,12/13/19 01:30,"474 12th St, San Francisco, CA 94016" -319605,Lightning Charging Cable,1,14.95,12/30/19 01:17,"355 Jackson St, Austin, TX 73301" -319606,Wired Headphones,1,11.99,12/24/19 15:03,"806 11th St, Seattle, WA 98101" -319607,Macbook Pro Laptop,1,1700,12/25/19 20:07,"620 Church St, Atlanta, GA 30301" -319608,Bose SoundSport Headphones,2,99.99,12/13/19 11:32,"28 Pine St, San Francisco, CA 94016" -319609,AAA Batteries (4-pack),2,2.99,12/31/19 22:56,"513 Pine St, New York City, NY 10001" -319610,AA Batteries (4-pack),1,3.84,12/30/19 18:10,"525 8th St, Portland, OR 97035" -319611,AAA Batteries (4-pack),1,2.99,12/17/19 10:37,"99 10th St, Seattle, WA 98101" -319612,AA Batteries (4-pack),1,3.84,12/15/19 13:13,"841 Lake St, Los Angeles, CA 90001" -319613,AA Batteries (4-pack),2,3.84,12/22/19 11:59,"527 Pine St, San Francisco, CA 94016" -319614,Flatscreen TV,1,300,12/14/19 20:57,"177 River St, Dallas, TX 75001" -319615,Wired Headphones,1,11.99,12/21/19 07:15,"348 Cedar St, San Francisco, CA 94016" -319616,Apple Airpods Headphones,1,150,12/22/19 15:44,"723 8th St, Seattle, WA 98101" -319617,AAA Batteries (4-pack),2,2.99,12/16/19 05:15,"89 Johnson St, New York City, NY 10001" -319618,Wired Headphones,1,11.99,12/16/19 15:18,"773 5th St, Boston, MA 02215" -319619,AAA Batteries (4-pack),1,2.99,12/19/19 21:09,"908 2nd St, Los Angeles, CA 90001" -319620,AA Batteries (4-pack),1,3.84,12/03/19 21:56,"941 Jefferson St, San Francisco, CA 94016" -319621,Bose SoundSport Headphones,1,99.99,12/08/19 12:54,"852 7th St, Atlanta, GA 30301" -319622,Macbook Pro Laptop,1,1700,12/15/19 07:11,"180 Ridge St, Boston, MA 02215" -319623,Wired Headphones,1,11.99,12/11/19 19:11,"164 Meadow St, Los Angeles, CA 90001" -319624,AA Batteries (4-pack),2,3.84,12/30/19 12:15,"837 Jefferson St, Atlanta, GA 30301" -319625,AA Batteries (4-pack),1,3.84,12/01/19 13:40,"325 Forest St, Portland, OR 97035" -319626,27in 4K Gaming Monitor,1,389.99,12/06/19 17:21,"763 West St, San Francisco, CA 94016" -319627,Lightning Charging Cable,1,14.95,12/29/19 12:29,"752 11th St, Boston, MA 02215" -319628,Apple Airpods Headphones,1,150,12/26/19 13:46,"421 Maple St, Boston, MA 02215" -319629,iPhone,1,700,12/18/19 15:41,"941 Willow St, Dallas, TX 75001" -319630,27in 4K Gaming Monitor,1,389.99,12/16/19 12:18,"375 13th St, San Francisco, CA 94016" -319631,34in Ultrawide Monitor,1,379.99,12/17/19 22:35,"363 Highland St, Austin, TX 73301" -319631,Lightning Charging Cable,1,14.95,12/17/19 22:35,"363 Highland St, Austin, TX 73301" -319632,Google Phone,1,600,12/29/19 17:25,"59 Cherry St, Boston, MA 02215" -319633,USB-C Charging Cable,1,11.95,12/07/19 07:12,"568 Walnut St, Atlanta, GA 30301" -319634,iPhone,1,700,12/11/19 16:29,"817 Center St, Boston, MA 02215" -319635,Bose SoundSport Headphones,1,99.99,12/30/19 18:25,"515 North St, New York City, NY 10001" -319636,34in Ultrawide Monitor,1,379.99,12/19/19 18:21,"829 6th St, Boston, MA 02215" -319637,Wired Headphones,1,11.99,12/31/19 22:14,"641 Adams St, Portland, OR 97035" -319638,USB-C Charging Cable,1,11.95,12/22/19 19:08,"235 Spruce St, Portland, OR 97035" -319639,Macbook Pro Laptop,1,1700,12/20/19 10:56,"616 Highland St, Seattle, WA 98101" -319640,Apple Airpods Headphones,1,150,12/10/19 08:51,"116 Hickory St, Los Angeles, CA 90001" -319641,Macbook Pro Laptop,1,1700,12/04/19 23:11,"232 Meadow St, Portland, OR 97035" -319642,Lightning Charging Cable,1,14.95,12/22/19 19:23,"928 Chestnut St, Austin, TX 73301" -319643,AA Batteries (4-pack),2,3.84,12/25/19 12:38,"811 Hill St, San Francisco, CA 94016" -319644,AA Batteries (4-pack),1,3.84,12/30/19 18:09,"420 Madison St, New York City, NY 10001" -319645,Vareebadd Phone,1,400,12/06/19 23:20,"149 Cedar St, Dallas, TX 75001" -319646,34in Ultrawide Monitor,1,379.99,12/20/19 09:38,"52 Dogwood St, Atlanta, GA 30301" -319647,AA Batteries (4-pack),2,3.84,12/28/19 17:43,"119 Spruce St, San Francisco, CA 94016" -319648,20in Monitor,1,109.99,12/25/19 11:31,"839 Chestnut St, San Francisco, CA 94016" -319649,Google Phone,1,600,12/23/19 18:46,"24 Wilson St, San Francisco, CA 94016" -319650,Apple Airpods Headphones,1,150,12/18/19 08:29,"574 Wilson St, New York City, NY 10001" -319651,Lightning Charging Cable,1,14.95,12/14/19 22:36,"763 Washington St, Boston, MA 02215" -319652,AAA Batteries (4-pack),1,2.99,12/14/19 23:30,"151 Hickory St, Los Angeles, CA 90001" -319653,AAA Batteries (4-pack),1,2.99,12/03/19 05:50,"542 Elm St, New York City, NY 10001" -319654,AA Batteries (4-pack),1,3.84,12/23/19 14:08,"245 Dogwood St, Atlanta, GA 30301" -319655,Wired Headphones,1,11.99,12/28/19 19:38,"614 Cherry St, Austin, TX 73301" -319656,Apple Airpods Headphones,1,150,12/26/19 23:17,"700 5th St, Dallas, TX 75001" -319657,LG Dryer,1,600.0,12/05/19 13:22,"159 Lake St, Portland, OR 97035" -319658,AAA Batteries (4-pack),2,2.99,12/24/19 20:46,"574 Dogwood St, San Francisco, CA 94016" -319659,Lightning Charging Cable,1,14.95,12/13/19 07:25,"764 1st St, San Francisco, CA 94016" -319660,Apple Airpods Headphones,1,150,12/16/19 17:41,"247 5th St, Los Angeles, CA 90001" -319661,AAA Batteries (4-pack),1,2.99,12/11/19 21:24,"691 West St, Portland, ME 04101" -319662,Bose SoundSport Headphones,1,99.99,12/31/19 19:07,"939 8th St, San Francisco, CA 94016" -319663,Flatscreen TV,1,300,12/07/19 08:25,"334 12th St, Atlanta, GA 30301" -319664,ThinkPad Laptop,1,999.99,12/30/19 01:06,"767 2nd St, San Francisco, CA 94016" -319665,iPhone,1,700,12/15/19 11:13,"377 1st St, Atlanta, GA 30301" -319666,Lightning Charging Cable,1,14.95,12/11/19 20:58,"14 Madison St, San Francisco, CA 94016" -319667,AA Batteries (4-pack),2,3.84,12/01/19 12:01,"549 Willow St, Los Angeles, CA 90001" -319668,Vareebadd Phone,1,400,12/09/19 06:43,"273 Wilson St, Seattle, WA 98101" -319669,Wired Headphones,1,11.99,12/03/19 10:39,"778 River St, Dallas, TX 75001" -319670,Bose SoundSport Headphones,1,99.99,12/21/19 21:45,"747 Chestnut St, Los Angeles, CA 90001" -150502,iPhone,1,700,02/18/19 01:35,"866 Spruce St, Portland, ME 04101" -150503,AA Batteries (4-pack),1,3.84,02/13/19 07:24,"18 13th St, San Francisco, CA 94016" -150504,27in 4K Gaming Monitor,1,389.99,02/18/19 09:46,"52 6th St, New York City, NY 10001" -150505,Lightning Charging Cable,1,14.95,02/02/19 16:47,"129 Cherry St, Atlanta, GA 30301" -150506,AA Batteries (4-pack),2,3.84,02/28/19 20:32,"548 Lincoln St, Seattle, WA 98101" -150507,Lightning Charging Cable,1,14.95,02/24/19 18:50,"387 12th St, Austin, TX 73301" -150508,AA Batteries (4-pack),1,3.84,02/21/19 19:26,"622 Center St, San Francisco, CA 94016" -150509,Apple Airpods Headphones,1,150,02/26/19 19:53,"921 6th St, Seattle, WA 98101" -150510,USB-C Charging Cable,1,11.95,02/17/19 21:48,"451 2nd St, Los Angeles, CA 90001" -150511,USB-C Charging Cable,1,11.95,02/22/19 07:36,"689 River St, San Francisco, CA 94016" -150512,Bose SoundSport Headphones,1,99.99,02/17/19 18:29,"198 Center St, Los Angeles, CA 90001" -150513,Bose SoundSport Headphones,1,99.99,02/25/19 20:49,"777 Spruce St, Los Angeles, CA 90001" -150514,27in FHD Monitor,1,149.99,02/03/19 00:21,"723 Wilson St, Los Angeles, CA 90001" -150515,Apple Airpods Headphones,1,150,02/18/19 14:53,"101 13th St, New York City, NY 10001" -150516,Lightning Charging Cable,1,14.95,02/20/19 12:29,"303 Sunset St, Atlanta, GA 30301" -150517,Wired Headphones,1,11.99,02/08/19 12:57,"471 13th St, San Francisco, CA 94016" -150518,Macbook Pro Laptop,1,1700,02/26/19 12:38,"847 10th St, San Francisco, CA 94016" -150518,iPhone,1,700,02/26/19 12:38,"847 10th St, San Francisco, CA 94016" -150519,Wired Headphones,1,11.99,02/23/19 13:25,"111 Hill St, Dallas, TX 75001" -150520,AA Batteries (4-pack),2,3.84,02/27/19 14:39,"512 Church St, Dallas, TX 75001" -150521,Flatscreen TV,1,300,02/27/19 20:07,"588 1st St, Los Angeles, CA 90001" -150522,20in Monitor,1,109.99,02/12/19 00:00,"633 Cherry St, Boston, MA 02215" -150523,LG Dryer,1,600.0,02/27/19 20:24,"452 8th St, San Francisco, CA 94016" -150524,Wired Headphones,1,11.99,02/28/19 13:47,"311 8th St, Austin, TX 73301" -150525,20in Monitor,1,109.99,02/25/19 09:38,"874 Jefferson St, San Francisco, CA 94016" -150526,AAA Batteries (4-pack),1,2.99,02/15/19 11:31,"85 Park St, Boston, MA 02215" -150527,USB-C Charging Cable,1,11.95,02/07/19 14:33,"165 Jefferson St, Los Angeles, CA 90001" -150528,AAA Batteries (4-pack),2,2.99,02/26/19 23:17,"426 Lake St, Los Angeles, CA 90001" -150529,AA Batteries (4-pack),4,3.84,02/11/19 13:10,"116 Elm St, Seattle, WA 98101" -150530,ThinkPad Laptop,1,999.99,02/05/19 14:19,"752 Park St, Los Angeles, CA 90001" -150531,USB-C Charging Cable,1,11.95,02/28/19 18:16,"457 Maple St, Los Angeles, CA 90001" -150532,USB-C Charging Cable,1,11.95,02/04/19 22:57,"645 Walnut St, San Francisco, CA 94016" -150533,AAA Batteries (4-pack),1,2.99,03/01/19 03:06,"270 Dogwood St, San Francisco, CA 94016" -150534,AAA Batteries (4-pack),2,2.99,02/12/19 22:02,"246 9th St, Los Angeles, CA 90001" -150535,AAA Batteries (4-pack),1,2.99,02/21/19 11:46,"961 2nd St, San Francisco, CA 94016" -150536,Wired Headphones,1,11.99,02/13/19 22:43,"134 8th St, Los Angeles, CA 90001" -150537,Wired Headphones,1,11.99,02/23/19 13:31,"437 12th St, San Francisco, CA 94016" -150538,Apple Airpods Headphones,1,150,02/22/19 17:28,"553 12th St, Atlanta, GA 30301" -150539,AA Batteries (4-pack),2,3.84,02/18/19 16:46,"103 14th St, San Francisco, CA 94016" -150540,Apple Airpods Headphones,1,150,02/18/19 15:23,"218 Ridge St, Atlanta, GA 30301" -150541,AAA Batteries (4-pack),1,2.99,03/01/19 01:03,"683 Adams St, Portland, OR 97035" -150542,AA Batteries (4-pack),1,3.84,02/02/19 19:46,"517 10th St, Austin, TX 73301" -150543,Wired Headphones,1,11.99,02/08/19 09:21,"268 Sunset St, Boston, MA 02215" -150544,Lightning Charging Cable,1,14.95,02/10/19 17:19,"723 Elm St, Los Angeles, CA 90001" -150545,Macbook Pro Laptop,1,1700,02/25/19 20:35,"905 Meadow St, Atlanta, GA 30301" -150546,AAA Batteries (4-pack),1,2.99,02/07/19 14:01,"43 1st St, Atlanta, GA 30301" -150547,AAA Batteries (4-pack),1,2.99,02/06/19 17:51,"511 Washington St, San Francisco, CA 94016" -150548,Macbook Pro Laptop,1,1700,02/18/19 22:56,"750 Forest St, Boston, MA 02215" -150549,iPhone,1,700,02/05/19 20:33,"522 West St, Boston, MA 02215" -150550,ThinkPad Laptop,1,999.99,02/17/19 14:45,"261 Washington St, Los Angeles, CA 90001" -150551,27in 4K Gaming Monitor,1,389.99,02/02/19 08:25,"726 West St, Seattle, WA 98101" -150552,Wired Headphones,1,11.99,02/21/19 19:06,"954 13th St, Boston, MA 02215" -150553,34in Ultrawide Monitor,1,379.99,02/20/19 21:42,"700 1st St, Dallas, TX 75001" -150554,AA Batteries (4-pack),1,3.84,02/12/19 06:49,"33 Johnson St, New York City, NY 10001" -150555,27in FHD Monitor,1,149.99,02/18/19 11:27,"714 Adams St, Portland, OR 97035" -150556,Lightning Charging Cable,1,14.95,02/10/19 13:25,"419 Hill St, Los Angeles, CA 90001" -150557,AA Batteries (4-pack),2,3.84,02/22/19 21:41,"372 5th St, Seattle, WA 98101" -150558,Wired Headphones,1,11.99,02/04/19 16:09,"864 Hickory St, Boston, MA 02215" -150559,Apple Airpods Headphones,1,150,02/07/19 23:41,"506 Willow St, Boston, MA 02215" -150560,Apple Airpods Headphones,1,150,02/05/19 14:29,"178 14th St, San Francisco, CA 94016" -150561,Wired Headphones,1,11.99,02/22/19 17:55,"888 Jefferson St, New York City, NY 10001" -150562,27in 4K Gaming Monitor,1,389.99,02/16/19 20:07,"663 1st St, Atlanta, GA 30301" -150563,iPhone,1,700,02/20/19 02:09,"631 Pine St, San Francisco, CA 94016" -150564,USB-C Charging Cable,1,11.95,02/28/19 13:55,"579 9th St, Atlanta, GA 30301" -150565,Wired Headphones,1,11.99,02/24/19 19:08,"406 Lincoln St, Seattle, WA 98101" -150566,27in FHD Monitor,1,149.99,02/21/19 18:30,"230 Pine St, Los Angeles, CA 90001" -150567,Apple Airpods Headphones,1,150,02/26/19 16:12,"466 South St, Dallas, TX 75001" -150568,Wired Headphones,1,11.99,02/15/19 22:49,"651 Johnson St, New York City, NY 10001" -150569,AA Batteries (4-pack),3,3.84,02/04/19 13:11,"981 Lake St, Seattle, WA 98101" -150570,Wired Headphones,1,11.99,02/18/19 18:12,"786 Meadow St, San Francisco, CA 94016" -150571,Lightning Charging Cable,1,14.95,02/23/19 22:41,"571 Hickory St, San Francisco, CA 94016" -150572,27in FHD Monitor,1,149.99,02/06/19 07:38,"523 Spruce St, Atlanta, GA 30301" -150573,Apple Airpods Headphones,1,150,02/25/19 11:32,"455 Highland St, Los Angeles, CA 90001" -150574,Lightning Charging Cable,1,14.95,02/17/19 19:51,"25 7th St, Portland, OR 97035" -150575,AA Batteries (4-pack),1,3.84,02/10/19 11:44,"776 Elm St, Los Angeles, CA 90001" -,,,,, -150576,Bose SoundSport Headphones,1,99.99,02/02/19 01:33,"43 South St, San Francisco, CA 94016" -150577,AA Batteries (4-pack),1,3.84,02/25/19 13:27,"122 Spruce St, Seattle, WA 98101" -150578,USB-C Charging Cable,1,11.95,02/06/19 19:05,"193 Pine St, San Francisco, CA 94016" -150579,USB-C Charging Cable,1,11.95,02/27/19 20:11,"320 North St, Los Angeles, CA 90001" -150580,AA Batteries (4-pack),1,3.84,02/11/19 22:06,"399 5th St, New York City, NY 10001" -150581,AA Batteries (4-pack),1,3.84,02/21/19 19:51,"144 Washington St, Seattle, WA 98101" -150582,iPhone,1,700,02/16/19 23:38,"678 Maple St, Seattle, WA 98101" -150582,Lightning Charging Cable,1,14.95,02/16/19 23:38,"678 Maple St, Seattle, WA 98101" -150583,27in FHD Monitor,1,149.99,02/01/19 20:56,"159 Maple St, Seattle, WA 98101" -150584,AAA Batteries (4-pack),1,2.99,02/24/19 21:41,"971 Park St, Boston, MA 02215" -150585,USB-C Charging Cable,1,11.95,02/16/19 14:04,"55 Walnut St, Seattle, WA 98101" -150586,Apple Airpods Headphones,1,150,02/12/19 19:25,"671 12th St, San Francisco, CA 94016" -150587,Lightning Charging Cable,1,14.95,02/11/19 17:43,"290 Meadow St, Seattle, WA 98101" -150588,AAA Batteries (4-pack),2,2.99,02/09/19 09:33,"823 Cedar St, Los Angeles, CA 90001" -150589,Flatscreen TV,1,300,02/24/19 12:02,"123 Washington St, San Francisco, CA 94016" -150590,Apple Airpods Headphones,1,150,02/08/19 09:35,"196 River St, San Francisco, CA 94016" -150590,AAA Batteries (4-pack),1,2.99,02/08/19 09:35,"196 River St, San Francisco, CA 94016" -150591,AAA Batteries (4-pack),1,2.99,02/12/19 15:29,"362 Main St, Portland, OR 97035" -150592,USB-C Charging Cable,1,11.95,02/02/19 09:27,"756 6th St, Los Angeles, CA 90001" -150593,Bose SoundSport Headphones,1,99.99,02/15/19 16:58,"441 Park St, New York City, NY 10001" -150594,USB-C Charging Cable,1,11.95,02/19/19 18:54,"286 8th St, San Francisco, CA 94016" -150595,USB-C Charging Cable,1,11.95,02/12/19 06:12,"734 Cherry St, San Francisco, CA 94016" -150596,AAA Batteries (4-pack),1,2.99,02/07/19 14:38,"724 Ridge St, Dallas, TX 75001" -150597,USB-C Charging Cable,1,11.95,02/18/19 16:08,"758 Lincoln St, Boston, MA 02215" -150598,Wired Headphones,1,11.99,02/21/19 15:25,"841 12th St, Boston, MA 02215" -150599,20in Monitor,1,109.99,02/19/19 12:08,"677 South St, Atlanta, GA 30301" -150600,AA Batteries (4-pack),1,3.84,02/11/19 00:57,"353 11th St, San Francisco, CA 94016" -150601,AAA Batteries (4-pack),2,2.99,02/16/19 13:24,"24 Highland St, Atlanta, GA 30301" -150602,Apple Airpods Headphones,1,150,02/11/19 09:44,"207 Wilson St, Los Angeles, CA 90001" -150603,USB-C Charging Cable,1,11.95,02/18/19 14:44,"772 Johnson St, Seattle, WA 98101" -150604,AA Batteries (4-pack),1,3.84,02/26/19 17:09,"125 Hickory St, Atlanta, GA 30301" -150605,USB-C Charging Cable,1,11.95,02/06/19 14:27,"443 Park St, San Francisco, CA 94016" -150606,AA Batteries (4-pack),1,3.84,02/28/19 10:17,"810 Madison St, Atlanta, GA 30301" -150607,Lightning Charging Cable,1,14.95,02/27/19 19:36,"469 Church St, San Francisco, CA 94016" -150608,ThinkPad Laptop,1,999.99,02/20/19 11:53,"383 10th St, San Francisco, CA 94016" -150609,USB-C Charging Cable,1,11.95,02/09/19 20:23,"403 North St, New York City, NY 10001" -150610,27in FHD Monitor,1,149.99,02/19/19 10:42,"409 Church St, Boston, MA 02215" -150611,AAA Batteries (4-pack),1,2.99,02/04/19 16:49,"961 5th St, Portland, OR 97035" -150612,USB-C Charging Cable,1,11.95,02/28/19 20:14,"321 7th St, Los Angeles, CA 90001" -150613,AA Batteries (4-pack),1,3.84,02/08/19 13:05,"198 Walnut St, Los Angeles, CA 90001" -150614,AA Batteries (4-pack),2,3.84,02/05/19 17:18,"709 Cedar St, Boston, MA 02215" -150615,27in FHD Monitor,1,149.99,02/27/19 13:34,"814 Highland St, New York City, NY 10001" -150616,27in 4K Gaming Monitor,1,389.99,02/05/19 20:35,"985 Jackson St, Portland, OR 97035" -150617,Google Phone,1,600,02/25/19 00:02,"551 Sunset St, New York City, NY 10001" -150617,USB-C Charging Cable,1,11.95,02/25/19 00:02,"551 Sunset St, New York City, NY 10001" -150618,USB-C Charging Cable,1,11.95,02/24/19 12:20,"659 8th St, Portland, OR 97035" -150619,USB-C Charging Cable,1,11.95,02/17/19 17:23,"529 Madison St, Los Angeles, CA 90001" -150620,Apple Airpods Headphones,1,150,02/07/19 15:12,"808 1st St, Los Angeles, CA 90001" -150621,AA Batteries (4-pack),1,3.84,02/05/19 13:01,"173 Dogwood St, Boston, MA 02215" -150622,34in Ultrawide Monitor,1,379.99,02/12/19 16:05,"230 Washington St, Boston, MA 02215" -150623,iPhone,1,700,02/05/19 22:46,"96 7th St, Seattle, WA 98101" -150624,34in Ultrawide Monitor,1,379.99,02/16/19 09:59,"582 Wilson St, Los Angeles, CA 90001" -150625,AAA Batteries (4-pack),1,2.99,02/21/19 14:54,"19 5th St, New York City, NY 10001" -150626,AA Batteries (4-pack),2,3.84,02/26/19 23:55,"464 Center St, Dallas, TX 75001" -150627,USB-C Charging Cable,1,11.95,02/17/19 07:01,"106 10th St, Portland, OR 97035" -150628,Lightning Charging Cable,2,14.95,02/25/19 17:22,"206 Spruce St, San Francisco, CA 94016" -150629,AA Batteries (4-pack),1,3.84,02/28/19 18:17,"686 2nd St, Los Angeles, CA 90001" -150630,Apple Airpods Headphones,1,150,02/14/19 09:15,"274 Sunset St, Dallas, TX 75001" -150631,20in Monitor,1,109.99,02/26/19 14:12,"483 14th St, Atlanta, GA 30301" -150632,Wired Headphones,1,11.99,02/18/19 21:48,"108 Adams St, New York City, NY 10001" -150633,Wired Headphones,1,11.99,02/09/19 14:21,"566 Lake St, Los Angeles, CA 90001" -150634,USB-C Charging Cable,1,11.95,02/11/19 17:17,"463 Hickory St, New York City, NY 10001" -150635,iPhone,1,700,02/10/19 17:43,"129 Center St, Seattle, WA 98101" -150636,USB-C Charging Cable,1,11.95,02/15/19 11:59,"589 Walnut St, Portland, OR 97035" -150637,Apple Airpods Headphones,1,150,02/02/19 17:37,"23 Church St, Austin, TX 73301" -150638,AA Batteries (4-pack),1,3.84,02/19/19 11:04,"466 Lakeview St, New York City, NY 10001" -150639,Lightning Charging Cable,2,14.95,02/19/19 14:28,"408 Park St, Atlanta, GA 30301" -150640,Vareebadd Phone,1,400,02/26/19 00:07,"769 Willow St, New York City, NY 10001" -150641,AAA Batteries (4-pack),1,2.99,02/10/19 14:57,"72 12th St, Portland, OR 97035" -150642,Lightning Charging Cable,1,14.95,02/27/19 20:18,"938 Pine St, New York City, NY 10001" -150643,Apple Airpods Headphones,1,150,02/23/19 22:12,"304 North St, Seattle, WA 98101" -150644,Bose SoundSport Headphones,1,99.99,02/17/19 18:07,"879 Sunset St, Dallas, TX 75001" -150645,27in 4K Gaming Monitor,1,389.99,02/02/19 07:06,"153 South St, Seattle, WA 98101" -150646,27in FHD Monitor,1,149.99,02/10/19 11:22,"312 Spruce St, San Francisco, CA 94016" -150647,20in Monitor,1,109.99,02/20/19 16:34,"102 Dogwood St, New York City, NY 10001" -150648,27in 4K Gaming Monitor,1,389.99,02/07/19 10:52,"217 11th St, Los Angeles, CA 90001" -150649,27in FHD Monitor,1,149.99,02/15/19 20:14,"834 Main St, San Francisco, CA 94016" -150650,Bose SoundSport Headphones,1,99.99,02/21/19 16:43,"982 11th St, San Francisco, CA 94016" -150651,Google Phone,1,600,02/02/19 11:49,"525 10th St, New York City, NY 10001" -150651,USB-C Charging Cable,1,11.95,02/02/19 11:49,"525 10th St, New York City, NY 10001" -150652,AAA Batteries (4-pack),1,2.99,02/12/19 10:28,"933 Jackson St, Boston, MA 02215" -150653,27in FHD Monitor,1,149.99,02/04/19 11:42,"955 Jackson St, Los Angeles, CA 90001" -150654,Wired Headphones,1,11.99,02/14/19 19:10,"263 Cherry St, Los Angeles, CA 90001" -150655,AAA Batteries (4-pack),1,2.99,02/12/19 16:15,"154 Main St, Los Angeles, CA 90001" -150656,27in FHD Monitor,1,149.99,02/13/19 11:59,"643 Jackson St, Atlanta, GA 30301" -150657,AAA Batteries (4-pack),1,2.99,02/10/19 16:25,"406 Maple St, Los Angeles, CA 90001" -150658,USB-C Charging Cable,1,11.95,02/25/19 05:30,"82 Park St, Austin, TX 73301" -150659,27in 4K Gaming Monitor,1,389.99,02/11/19 10:57,"117 Johnson St, San Francisco, CA 94016" -150660,27in FHD Monitor,1,149.99,02/03/19 22:41,"719 11th St, New York City, NY 10001" -150661,Wired Headphones,1,11.99,02/21/19 16:48,"835 Spruce St, Atlanta, GA 30301" -150662,Wired Headphones,1,11.99,02/01/19 15:57,"403 North St, Dallas, TX 75001" -150663,AAA Batteries (4-pack),1,2.99,02/14/19 03:13,"205 Spruce St, Los Angeles, CA 90001" -150664,ThinkPad Laptop,1,999.99,02/06/19 15:58,"928 14th St, Dallas, TX 75001" -,,,,, -150665,AAA Batteries (4-pack),2,2.99,02/10/19 09:12,"964 7th St, San Francisco, CA 94016" -150666,Wired Headphones,1,11.99,02/05/19 11:39,"188 Spruce St, San Francisco, CA 94016" -,,,,, -150667,USB-C Charging Cable,1,11.95,02/27/19 23:58,"662 Chestnut St, Dallas, TX 75001" -150668,Wired Headphones,1,11.99,02/14/19 18:09,"419 7th St, Atlanta, GA 30301" -150669,iPhone,1,700,02/10/19 03:20,"585 6th St, Atlanta, GA 30301" -150670,AA Batteries (4-pack),1,3.84,02/28/19 16:17,"368 Hickory St, Portland, ME 04101" -150671,Bose SoundSport Headphones,1,99.99,02/09/19 07:58,"690 14th St, Boston, MA 02215" -150672,USB-C Charging Cable,1,11.95,02/24/19 14:03,"869 Spruce St, Dallas, TX 75001" -150673,Bose SoundSport Headphones,1,99.99,02/02/19 13:50,"688 Spruce St, San Francisco, CA 94016" -150674,Google Phone,1,600,02/21/19 11:44,"690 Park St, San Francisco, CA 94016" -150674,USB-C Charging Cable,1,11.95,02/21/19 11:44,"690 Park St, San Francisco, CA 94016" -150674,Wired Headphones,1,11.99,02/21/19 11:44,"690 Park St, San Francisco, CA 94016" -150675,Lightning Charging Cable,1,14.95,02/24/19 12:57,"395 Spruce St, San Francisco, CA 94016" -150676,27in FHD Monitor,1,149.99,02/17/19 20:37,"401 Cedar St, Dallas, TX 75001" -150677,ThinkPad Laptop,1,999.99,02/08/19 18:26,"221 Elm St, New York City, NY 10001" -150678,AA Batteries (4-pack),1,3.84,02/17/19 13:00,"399 Center St, Los Angeles, CA 90001" -150679,Bose SoundSport Headphones,1,99.99,02/17/19 14:38,"885 Elm St, Seattle, WA 98101" -150680,iPhone,1,700,02/03/19 12:49,"29 Lakeview St, Austin, TX 73301" -150681,USB-C Charging Cable,2,11.95,02/17/19 22:20,"348 9th St, Seattle, WA 98101" -150682,Apple Airpods Headphones,1,150,02/15/19 21:55,"833 Lake St, San Francisco, CA 94016" -150683,27in FHD Monitor,1,149.99,02/23/19 22:28,"632 Ridge St, San Francisco, CA 94016" -150684,34in Ultrawide Monitor,1,379.99,02/23/19 18:41,"615 Jefferson St, San Francisco, CA 94016" -150685,Lightning Charging Cable,2,14.95,02/05/19 13:36,"658 Forest St, Portland, OR 97035" -150686,iPhone,1,700,02/28/19 17:39,"389 Pine St, Los Angeles, CA 90001" -150687,Wired Headphones,1,11.99,02/27/19 15:36,"292 Highland St, Los Angeles, CA 90001" -150688,Google Phone,1,600,02/07/19 09:30,"719 Maple St, New York City, NY 10001" -150688,Wired Headphones,1,11.99,02/07/19 09:30,"719 Maple St, New York City, NY 10001" -150689,AAA Batteries (4-pack),1,2.99,02/24/19 18:42,"623 10th St, Los Angeles, CA 90001" -150690,AA Batteries (4-pack),1,3.84,02/28/19 22:41,"167 Highland St, Atlanta, GA 30301" -150691,20in Monitor,1,109.99,02/26/19 00:43,"902 Adams St, New York City, NY 10001" -150692,Bose SoundSport Headphones,1,99.99,02/23/19 19:59,"868 11th St, Boston, MA 02215" -150693,Wired Headphones,1,11.99,02/23/19 13:45,"403 West St, Boston, MA 02215" -150694,Apple Airpods Headphones,1,150,02/26/19 20:58,"813 Church St, Los Angeles, CA 90001" -150695,AA Batteries (4-pack),1,3.84,02/07/19 20:34,"272 4th St, Atlanta, GA 30301" -150696,AA Batteries (4-pack),1,3.84,02/02/19 13:55,"417 Dogwood St, Boston, MA 02215" -150697,Bose SoundSport Headphones,1,99.99,02/19/19 09:30,"966 7th St, Seattle, WA 98101" -150698,34in Ultrawide Monitor,1,379.99,02/08/19 13:19,"375 Maple St, Los Angeles, CA 90001" -150699,USB-C Charging Cable,1,11.95,02/06/19 15:39,"253 Cherry St, San Francisco, CA 94016" -150700,USB-C Charging Cable,1,11.95,02/03/19 02:10,"551 2nd St, New York City, NY 10001" -150701,ThinkPad Laptop,1,999.99,02/07/19 20:21,"822 Highland St, Dallas, TX 75001" -150702,34in Ultrawide Monitor,1,379.99,02/23/19 20:58,"27 Wilson St, Los Angeles, CA 90001" -150703,27in 4K Gaming Monitor,1,389.99,02/03/19 11:37,"998 Jefferson St, Boston, MA 02215" -150704,27in 4K Gaming Monitor,1,389.99,02/11/19 17:50,"508 Walnut St, Austin, TX 73301" -150705,Bose SoundSport Headphones,1,99.99,02/15/19 19:37,"189 Elm St, New York City, NY 10001" -150706,Lightning Charging Cable,1,14.95,02/19/19 12:11,"815 Willow St, San Francisco, CA 94016" -150707,Lightning Charging Cable,1,14.95,02/15/19 20:50,"128 Elm St, San Francisco, CA 94016" -150708,Bose SoundSport Headphones,1,99.99,02/05/19 14:25,"36 Ridge St, Dallas, TX 75001" -150709,USB-C Charging Cable,1,11.95,02/16/19 18:54,"507 Washington St, Boston, MA 02215" -150710,27in 4K Gaming Monitor,1,389.99,02/01/19 10:27,"581 Jackson St, San Francisco, CA 94016" -150711,Flatscreen TV,1,300,02/16/19 19:16,"320 11th St, San Francisco, CA 94016" -150712,AA Batteries (4-pack),3,3.84,02/19/19 14:49,"109 Willow St, New York City, NY 10001" -150713,AAA Batteries (4-pack),2,2.99,02/01/19 09:54,"362 10th St, Dallas, TX 75001" -150714,Bose SoundSport Headphones,1,99.99,02/14/19 20:46,"539 5th St, Los Angeles, CA 90001" -150715,Apple Airpods Headphones,1,150,02/28/19 16:23,"626 Lakeview St, San Francisco, CA 94016" -150716,Bose SoundSport Headphones,1,99.99,02/05/19 12:53,"396 Elm St, Dallas, TX 75001" -150717,USB-C Charging Cable,1,11.95,02/03/19 19:43,"202 Maple St, Austin, TX 73301" -150718,AA Batteries (4-pack),1,3.84,02/20/19 00:06,"211 Willow St, Atlanta, GA 30301" -150719,AAA Batteries (4-pack),1,2.99,02/01/19 14:44,"281 Lake St, Portland, OR 97035" -150720,27in FHD Monitor,1,149.99,02/10/19 20:23,"326 10th St, San Francisco, CA 94016" -150721,Apple Airpods Headphones,1,150,02/14/19 23:24,"115 Cedar St, San Francisco, CA 94016" -150722,AA Batteries (4-pack),2,3.84,02/09/19 17:56,"859 Cedar St, Seattle, WA 98101" -150723,Lightning Charging Cable,1,14.95,02/20/19 20:08,"793 Forest St, Los Angeles, CA 90001" -150724,34in Ultrawide Monitor,1,379.99,02/14/19 18:37,"168 Forest St, Seattle, WA 98101" -150725,AA Batteries (4-pack),2,3.84,02/27/19 09:19,"148 Park St, San Francisco, CA 94016" -150726,USB-C Charging Cable,1,11.95,02/09/19 15:27,"984 Hickory St, San Francisco, CA 94016" -150727,Apple Airpods Headphones,1,150,02/21/19 13:23,"406 4th St, San Francisco, CA 94016" -150728,Wired Headphones,1,11.99,02/03/19 12:04,"7 Highland St, New York City, NY 10001" -150729,Google Phone,1,600,02/08/19 11:53,"705 7th St, Boston, MA 02215" -150730,USB-C Charging Cable,2,11.95,02/16/19 11:39,"357 Lakeview St, San Francisco, CA 94016" -150731,Lightning Charging Cable,1,14.95,02/24/19 04:22,"907 South St, Seattle, WA 98101" -150732,AA Batteries (4-pack),1,3.84,02/11/19 13:04,"417 Ridge St, San Francisco, CA 94016" -150733,27in 4K Gaming Monitor,1,389.99,02/15/19 00:53,"982 Washington St, Los Angeles, CA 90001" -150734,Google Phone,1,600,02/13/19 09:47,"119 Madison St, New York City, NY 10001" -150734,USB-C Charging Cable,1,11.95,02/13/19 09:47,"119 Madison St, New York City, NY 10001" -150735,AA Batteries (4-pack),1,3.84,02/13/19 11:49,"450 6th St, Boston, MA 02215" -150736,Wired Headphones,1,11.99,02/21/19 19:14,"785 Lakeview St, Los Angeles, CA 90001" -150737,AAA Batteries (4-pack),1,2.99,02/14/19 13:41,"727 Pine St, Los Angeles, CA 90001" -150738,Bose SoundSport Headphones,1,99.99,02/08/19 21:06,"374 Main St, Atlanta, GA 30301" -150739,Lightning Charging Cable,1,14.95,02/15/19 12:08,"21 11th St, Atlanta, GA 30301" -150740,34in Ultrawide Monitor,1,379.99,02/08/19 19:30,"838 11th St, Portland, OR 97035" -150741,Bose SoundSport Headphones,1,99.99,02/11/19 08:16,"755 Maple St, New York City, NY 10001" -150742,Wired Headphones,1,11.99,02/09/19 23:19,"589 Maple St, San Francisco, CA 94016" -150743,AAA Batteries (4-pack),1,2.99,02/17/19 05:23,"203 Main St, Los Angeles, CA 90001" -150744,34in Ultrawide Monitor,1,379.99,02/07/19 13:45,"682 5th St, Atlanta, GA 30301" -150745,AA Batteries (4-pack),3,3.84,02/26/19 10:42,"489 Center St, San Francisco, CA 94016" -150746,AAA Batteries (4-pack),1,2.99,02/01/19 12:15,"195 North St, Los Angeles, CA 90001" -150747,USB-C Charging Cable,1,11.95,02/03/19 11:18,"275 2nd St, San Francisco, CA 94016" -150748,AAA Batteries (4-pack),1,2.99,02/27/19 12:39,"931 11th St, New York City, NY 10001" -150749,Vareebadd Phone,1,400,02/19/19 09:25,"55 6th St, San Francisco, CA 94016" -150750,iPhone,1,700,02/05/19 17:18,"753 Washington St, New York City, NY 10001" -150751,USB-C Charging Cable,2,11.95,02/11/19 18:06,"153 Washington St, Los Angeles, CA 90001" -150752,Wired Headphones,1,11.99,02/08/19 00:08,"23 4th St, Portland, OR 97035" -150753,Lightning Charging Cable,1,14.95,02/28/19 11:30,"599 7th St, New York City, NY 10001" -150754,AAA Batteries (4-pack),1,2.99,02/27/19 13:34,"423 Park St, Austin, TX 73301" -150755,AA Batteries (4-pack),1,3.84,02/20/19 10:25,"355 Lake St, Austin, TX 73301" -150756,Bose SoundSport Headphones,1,99.99,02/03/19 08:16,"114 West St, Seattle, WA 98101" -150757,USB-C Charging Cable,1,11.95,02/18/19 18:55,"141 Highland St, San Francisco, CA 94016" -150758,iPhone,1,700,02/19/19 09:38,"360 Madison St, Austin, TX 73301" -150758,Wired Headphones,1,11.99,02/19/19 09:38,"360 Madison St, Austin, TX 73301" -150759,Lightning Charging Cable,1,14.95,02/03/19 05:10,"999 9th St, Boston, MA 02215" -150760,AA Batteries (4-pack),2,3.84,02/17/19 20:04,"638 4th St, Los Angeles, CA 90001" -150761,AAA Batteries (4-pack),1,2.99,02/19/19 21:47,"358 Maple St, Austin, TX 73301" -150762,USB-C Charging Cable,1,11.95,02/15/19 23:07,"927 Lake St, San Francisco, CA 94016" -150763,AA Batteries (4-pack),3,3.84,02/11/19 22:09,"276 2nd St, New York City, NY 10001" -150764,AAA Batteries (4-pack),1,2.99,02/26/19 11:27,"671 10th St, New York City, NY 10001" -150765,AA Batteries (4-pack),1,3.84,02/13/19 20:53,"750 Madison St, Seattle, WA 98101" -150766,Bose SoundSport Headphones,1,99.99,02/25/19 12:50,"969 10th St, San Francisco, CA 94016" -150767,Bose SoundSport Headphones,1,99.99,02/01/19 17:13,"38 Wilson St, San Francisco, CA 94016" -150768,Lightning Charging Cable,1,14.95,02/26/19 17:05,"482 Madison St, Los Angeles, CA 90001" -150769,Apple Airpods Headphones,1,150,02/03/19 12:41,"470 Madison St, Los Angeles, CA 90001" -150770,34in Ultrawide Monitor,1,379.99,02/06/19 10:02,"721 Dogwood St, Seattle, WA 98101" -150771,AA Batteries (4-pack),1,3.84,02/26/19 11:16,"619 9th St, New York City, NY 10001" -150772,Bose SoundSport Headphones,1,99.99,02/25/19 13:19,"238 8th St, Los Angeles, CA 90001" -150773,AA Batteries (4-pack),1,3.84,02/08/19 11:25,"632 Highland St, New York City, NY 10001" -150774,AA Batteries (4-pack),1,3.84,02/21/19 18:25,"579 Adams St, San Francisco, CA 94016" -150775,Lightning Charging Cable,1,14.95,02/16/19 21:07,"596 9th St, Seattle, WA 98101" -150776,Bose SoundSport Headphones,1,99.99,02/04/19 16:57,"480 1st St, Seattle, WA 98101" -150777,Lightning Charging Cable,2,14.95,02/14/19 18:05,"879 Pine St, Los Angeles, CA 90001" -150778,Apple Airpods Headphones,1,150,02/04/19 12:18,"49 Hill St, San Francisco, CA 94016" -150779,27in FHD Monitor,1,149.99,02/28/19 15:40,"819 Adams St, San Francisco, CA 94016" -150780,Google Phone,1,600,02/15/19 20:54,"123 Maple St, Austin, TX 73301" -150781,Bose SoundSport Headphones,1,99.99,02/08/19 20:23,"219 1st St, Atlanta, GA 30301" -150782,Lightning Charging Cable,1,14.95,02/18/19 12:26,"12 Highland St, San Francisco, CA 94016" -150783,AAA Batteries (4-pack),1,2.99,02/27/19 23:25,"13 Hill St, San Francisco, CA 94016" -150784,AA Batteries (4-pack),1,3.84,02/22/19 09:55,"73 Sunset St, New York City, NY 10001" -150785,Apple Airpods Headphones,1,150,02/21/19 18:26,"474 Pine St, Los Angeles, CA 90001" -150786,AA Batteries (4-pack),2,3.84,02/06/19 21:28,"856 Highland St, Atlanta, GA 30301" -150787,USB-C Charging Cable,1,11.95,02/19/19 18:20,"110 Washington St, New York City, NY 10001" -150788,Wired Headphones,1,11.99,02/14/19 16:41,"65 Pine St, New York City, NY 10001" -150789,Lightning Charging Cable,1,14.95,02/22/19 03:03,"156 West St, New York City, NY 10001" -150790,USB-C Charging Cable,1,11.95,02/11/19 13:38,"869 Lincoln St, Seattle, WA 98101" -150791,Apple Airpods Headphones,1,150,02/19/19 02:12,"663 Madison St, San Francisco, CA 94016" -150792,Wired Headphones,1,11.99,02/19/19 20:45,"343 13th St, Boston, MA 02215" -150793,ThinkPad Laptop,1,999.99,02/01/19 13:15,"210 1st St, Boston, MA 02215" -150794,AAA Batteries (4-pack),1,2.99,02/27/19 18:34,"195 Jackson St, Boston, MA 02215" -150795,27in 4K Gaming Monitor,1,389.99,02/26/19 20:05,"959 4th St, Seattle, WA 98101" -150796,AAA Batteries (4-pack),2,2.99,02/23/19 18:25,"129 Washington St, Atlanta, GA 30301" -150797,USB-C Charging Cable,3,11.95,02/18/19 12:55,"995 Ridge St, Atlanta, GA 30301" -150798,Macbook Pro Laptop,1,1700,02/08/19 11:56,"931 Dogwood St, New York City, NY 10001" -150799,Bose SoundSport Headphones,1,99.99,02/21/19 09:55,"445 14th St, Dallas, TX 75001" -150800,USB-C Charging Cable,1,11.95,02/23/19 20:11,"37 North St, Boston, MA 02215" -150801,AAA Batteries (4-pack),1,2.99,02/10/19 12:32,"212 Center St, Seattle, WA 98101" -150802,Google Phone,1,600,02/01/19 11:11,"817 Willow St, Dallas, TX 75001" -150803,Bose SoundSport Headphones,1,99.99,02/14/19 17:22,"532 Hill St, San Francisco, CA 94016" -150804,AAA Batteries (4-pack),1,2.99,02/21/19 14:47,"849 Jackson St, New York City, NY 10001" -150805,AA Batteries (4-pack),1,3.84,02/27/19 16:07,"820 Washington St, New York City, NY 10001" -150806,USB-C Charging Cable,1,11.95,02/28/19 10:45,"995 6th St, Los Angeles, CA 90001" -150807,27in 4K Gaming Monitor,1,389.99,02/18/19 10:42,"278 Dogwood St, Boston, MA 02215" -150808,AA Batteries (4-pack),1,3.84,02/08/19 09:37,"566 West St, San Francisco, CA 94016" -150809,USB-C Charging Cable,1,11.95,02/24/19 09:53,"605 Hill St, Los Angeles, CA 90001" -150810,USB-C Charging Cable,1,11.95,02/10/19 13:04,"275 2nd St, Los Angeles, CA 90001" -150811,Google Phone,1,600,02/14/19 14:23,"969 Pine St, Seattle, WA 98101" -150812,Wired Headphones,1,11.99,03/01/19 02:18,"915 Maple St, San Francisco, CA 94016" -150813,Apple Airpods Headphones,1,150,02/19/19 20:40,"575 Cherry St, San Francisco, CA 94016" -150814,USB-C Charging Cable,1,11.95,02/18/19 20:53,"922 7th St, Seattle, WA 98101" -150815,Wired Headphones,1,11.99,02/12/19 21:37,"770 6th St, Atlanta, GA 30301" -150816,Flatscreen TV,1,300,02/15/19 09:51,"769 Johnson St, San Francisco, CA 94016" -150817,AA Batteries (4-pack),1,3.84,02/26/19 14:44,"377 Church St, New York City, NY 10001" -150818,AA Batteries (4-pack),1,3.84,02/26/19 18:01,"919 Adams St, Seattle, WA 98101" -150819,27in FHD Monitor,1,149.99,02/14/19 11:05,"547 Willow St, Los Angeles, CA 90001" -150820,AA Batteries (4-pack),1,3.84,02/05/19 21:20,"920 11th St, Portland, OR 97035" -150821,Bose SoundSport Headphones,1,99.99,02/25/19 20:48,"316 Center St, Los Angeles, CA 90001" -150822,AA Batteries (4-pack),1,3.84,02/23/19 20:02,"932 Forest St, San Francisco, CA 94016" -150823,USB-C Charging Cable,1,11.95,02/24/19 10:12,"848 Cedar St, San Francisco, CA 94016" -150824,Wired Headphones,1,11.99,02/04/19 20:24,"513 Wilson St, Boston, MA 02215" -150825,27in FHD Monitor,1,149.99,02/22/19 19:16,"289 Hickory St, New York City, NY 10001" -150826,Bose SoundSport Headphones,1,99.99,02/16/19 11:13,"543 6th St, Seattle, WA 98101" -150827,USB-C Charging Cable,1,11.95,02/08/19 10:29,"529 West St, New York City, NY 10001" -150828,Macbook Pro Laptop,1,1700,02/18/19 21:13,"380 13th St, Dallas, TX 75001" -150829,27in 4K Gaming Monitor,1,389.99,02/08/19 02:33,"606 Highland St, Los Angeles, CA 90001" -150830,USB-C Charging Cable,2,11.95,02/28/19 20:49,"121 Cedar St, Seattle, WA 98101" -150831,AAA Batteries (4-pack),1,2.99,02/15/19 16:13,"346 Center St, New York City, NY 10001" -150832,USB-C Charging Cable,1,11.95,02/16/19 06:56,"107 4th St, San Francisco, CA 94016" -150833,USB-C Charging Cable,1,11.95,02/15/19 11:18,"365 Center St, New York City, NY 10001" -150834,Bose SoundSport Headphones,1,99.99,02/22/19 19:14,"795 Jefferson St, Dallas, TX 75001" -150835,Apple Airpods Headphones,1,150,02/12/19 13:15,"279 10th St, New York City, NY 10001" -150836,Wired Headphones,1,11.99,02/06/19 12:42,"820 Walnut St, Dallas, TX 75001" -150837,Lightning Charging Cable,1,14.95,02/14/19 12:18,"725 Adams St, Atlanta, GA 30301" -150838,USB-C Charging Cable,1,11.95,02/25/19 03:46,"478 Adams St, New York City, NY 10001" -150839,Google Phone,1,600,02/24/19 14:02,"625 Washington St, New York City, NY 10001" -150840,AAA Batteries (4-pack),1,2.99,02/18/19 11:25,"14 6th St, Austin, TX 73301" -150841,AA Batteries (4-pack),1,3.84,02/06/19 19:56,"738 Meadow St, San Francisco, CA 94016" -150842,Lightning Charging Cable,1,14.95,02/09/19 08:11,"130 Spruce St, Los Angeles, CA 90001" -150843,Lightning Charging Cable,1,14.95,02/18/19 18:40,"409 4th St, Dallas, TX 75001" -150844,Macbook Pro Laptop,1,1700,02/06/19 22:01,"680 Church St, San Francisco, CA 94016" -150845,USB-C Charging Cable,1,11.95,02/17/19 10:47,"663 Lake St, Portland, OR 97035" -150846,AAA Batteries (4-pack),3,2.99,02/09/19 10:44,"223 South St, Dallas, TX 75001" -150847,Google Phone,1,600,02/10/19 14:08,"138 Chestnut St, New York City, NY 10001" -150848,27in 4K Gaming Monitor,1,389.99,02/07/19 10:41,"358 Willow St, Seattle, WA 98101" -150849,AAA Batteries (4-pack),1,2.99,02/08/19 02:31,"14 Meadow St, Austin, TX 73301" -150850,AAA Batteries (4-pack),1,2.99,02/14/19 15:23,"331 West St, Seattle, WA 98101" -150851,AA Batteries (4-pack),1,3.84,02/13/19 19:55,"490 South St, Portland, OR 97035" -150852,AAA Batteries (4-pack),1,2.99,02/26/19 06:52,"361 Park St, Portland, OR 97035" -150853,AAA Batteries (4-pack),1,2.99,02/27/19 16:10,"953 Jefferson St, New York City, NY 10001" -150853,27in 4K Gaming Monitor,1,389.99,02/27/19 16:10,"953 Jefferson St, New York City, NY 10001" -150854,27in 4K Gaming Monitor,1,389.99,02/14/19 06:38,"937 Cedar St, New York City, NY 10001" -150855,34in Ultrawide Monitor,1,379.99,02/11/19 14:38,"418 North St, Dallas, TX 75001" -150856,Flatscreen TV,1,300,02/07/19 13:42,"571 Meadow St, San Francisco, CA 94016" -150857,USB-C Charging Cable,1,11.95,02/05/19 12:55,"540 6th St, San Francisco, CA 94016" -150858,USB-C Charging Cable,1,11.95,02/13/19 19:54,"376 Sunset St, Austin, TX 73301" -150859,Lightning Charging Cable,1,14.95,02/24/19 12:42,"817 Lake St, Los Angeles, CA 90001" -150860,AAA Batteries (4-pack),3,2.99,02/21/19 18:45,"90 Sunset St, New York City, NY 10001" -150861,34in Ultrawide Monitor,1,379.99,02/23/19 14:42,"794 Washington St, Los Angeles, CA 90001" -150862,20in Monitor,1,109.99,02/05/19 07:56,"196 5th St, San Francisco, CA 94016" -150863,USB-C Charging Cable,1,11.95,02/16/19 15:08,"570 West St, San Francisco, CA 94016" -150864,AA Batteries (4-pack),1,3.84,02/24/19 11:28,"17 Park St, San Francisco, CA 94016" -150865,Bose SoundSport Headphones,1,99.99,02/12/19 00:14,"107 Lakeview St, Los Angeles, CA 90001" -150866,27in FHD Monitor,1,149.99,02/05/19 18:42,"248 Adams St, San Francisco, CA 94016" -150867,USB-C Charging Cable,1,11.95,02/21/19 10:35,"907 West St, Los Angeles, CA 90001" -150868,Lightning Charging Cable,1,14.95,02/10/19 22:36,"447 Park St, Atlanta, GA 30301" -150869,AA Batteries (4-pack),1,3.84,02/23/19 14:05,"35 6th St, San Francisco, CA 94016" -150870,Wired Headphones,1,11.99,02/13/19 15:03,"805 1st St, Dallas, TX 75001" -150871,AAA Batteries (4-pack),5,2.99,02/03/19 18:24,"659 Highland St, San Francisco, CA 94016" -150872,Lightning Charging Cable,1,14.95,02/28/19 17:33,"436 6th St, Seattle, WA 98101" -150873,Lightning Charging Cable,1,14.95,02/08/19 18:28,"65 10th St, Atlanta, GA 30301" -150874,Lightning Charging Cable,2,14.95,02/25/19 16:02,"851 Forest St, Portland, OR 97035" -150875,Lightning Charging Cable,1,14.95,02/17/19 16:42,"383 Wilson St, San Francisco, CA 94016" -150876,LG Dryer,1,600.0,02/03/19 18:48,"367 Meadow St, San Francisco, CA 94016" -150877,USB-C Charging Cable,1,11.95,02/12/19 20:34,"665 Ridge St, Austin, TX 73301" -150878,Apple Airpods Headphones,1,150,02/24/19 15:30,"441 Washington St, Portland, OR 97035" -150879,USB-C Charging Cable,1,11.95,02/22/19 21:16,"899 14th St, San Francisco, CA 94016" -150880,34in Ultrawide Monitor,1,379.99,02/03/19 19:18,"548 Pine St, San Francisco, CA 94016" -150881,Wired Headphones,1,11.99,02/18/19 10:43,"34 2nd St, Los Angeles, CA 90001" -150882,Wired Headphones,1,11.99,02/14/19 00:25,"402 10th St, Boston, MA 02215" -150883,Wired Headphones,1,11.99,02/04/19 23:50,"457 Willow St, San Francisco, CA 94016" -150884,Wired Headphones,1,11.99,02/17/19 23:57,"632 Center St, San Francisco, CA 94016" -150885,ThinkPad Laptop,1,999.99,02/20/19 10:04,"88 Main St, San Francisco, CA 94016" -150886,Wired Headphones,1,11.99,02/13/19 18:38,"432 1st St, Boston, MA 02215" -150887,34in Ultrawide Monitor,1,379.99,02/08/19 08:05,"186 Elm St, Seattle, WA 98101" -150888,Wired Headphones,1,11.99,02/23/19 10:38,"92 Willow St, Boston, MA 02215" -150889,USB-C Charging Cable,1,11.95,02/09/19 11:46,"800 5th St, Atlanta, GA 30301" -150890,Apple Airpods Headphones,1,150,02/11/19 16:21,"449 9th St, Dallas, TX 75001" -150891,Lightning Charging Cable,1,14.95,02/27/19 20:13,"241 Dogwood St, San Francisco, CA 94016" -150892,Wired Headphones,1,11.99,02/18/19 14:15,"248 Johnson St, San Francisco, CA 94016" -150892,Apple Airpods Headphones,1,150,02/18/19 14:15,"248 Johnson St, San Francisco, CA 94016" -150893,ThinkPad Laptop,1,999.99,02/10/19 07:33,"774 5th St, Portland, OR 97035" -150894,Google Phone,1,600,02/19/19 16:42,"580 South St, San Francisco, CA 94016" -150895,LG Washing Machine,1,600.0,02/18/19 21:37,"405 11th St, Dallas, TX 75001" -150896,Lightning Charging Cable,1,14.95,02/05/19 20:13,"472 13th St, New York City, NY 10001" -150897,USB-C Charging Cable,1,11.95,02/15/19 11:07,"127 Chestnut St, Boston, MA 02215" -150898,AA Batteries (4-pack),1,3.84,02/15/19 10:39,"2 14th St, Seattle, WA 98101" -150899,USB-C Charging Cable,1,11.95,02/20/19 23:40,"23 Park St, Portland, ME 04101" -150900,AAA Batteries (4-pack),2,2.99,02/18/19 16:50,"767 4th St, San Francisco, CA 94016" -150901,AAA Batteries (4-pack),1,2.99,02/21/19 17:31,"79 Sunset St, Dallas, TX 75001" -150902,LG Washing Machine,1,600.0,02/22/19 14:15,"863 Hickory St, San Francisco, CA 94016" -150903,AA Batteries (4-pack),1,3.84,02/11/19 21:07,"480 River St, Seattle, WA 98101" -150904,34in Ultrawide Monitor,1,379.99,02/08/19 08:17,"593 13th St, Seattle, WA 98101" -150905,USB-C Charging Cable,1,11.95,02/12/19 12:09,"536 Forest St, Los Angeles, CA 90001" -150906,AAA Batteries (4-pack),1,2.99,02/05/19 21:59,"884 Ridge St, Los Angeles, CA 90001" -150907,Apple Airpods Headphones,1,150,02/25/19 17:38,"491 River St, Dallas, TX 75001" -150907,Wired Headphones,1,11.99,02/25/19 17:38,"491 River St, Dallas, TX 75001" -150908,Lightning Charging Cable,1,14.95,02/18/19 21:58,"280 11th St, Austin, TX 73301" -150909,27in FHD Monitor,1,149.99,02/13/19 20:02,"195 9th St, San Francisco, CA 94016" -150910,AAA Batteries (4-pack),1,2.99,02/13/19 19:14,"275 11th St, Los Angeles, CA 90001" -150911,Apple Airpods Headphones,1,150,02/17/19 12:29,"73 Chestnut St, Portland, OR 97035" -150912,AA Batteries (4-pack),1,3.84,02/28/19 12:54,"318 Highland St, Dallas, TX 75001" -150913,27in 4K Gaming Monitor,1,389.99,02/21/19 20:52,"566 Spruce St, New York City, NY 10001" -150914,AAA Batteries (4-pack),1,2.99,02/08/19 10:15,"344 Dogwood St, Boston, MA 02215" -150915,AAA Batteries (4-pack),1,2.99,02/13/19 20:18,"225 Washington St, Austin, TX 73301" -150916,34in Ultrawide Monitor,1,379.99,02/08/19 22:15,"844 5th St, Dallas, TX 75001" -150917,Lightning Charging Cable,1,14.95,02/06/19 16:07,"111 10th St, Austin, TX 73301" -150917,Lightning Charging Cable,1,14.95,02/06/19 16:07,"111 10th St, Austin, TX 73301" -150918,Lightning Charging Cable,1,14.95,02/28/19 12:11,"419 12th St, San Francisco, CA 94016" -150919,27in FHD Monitor,1,149.99,02/22/19 05:21,"9 Hickory St, Portland, OR 97035" -150920,Macbook Pro Laptop,1,1700,02/26/19 17:19,"511 12th St, Austin, TX 73301" -150921,Lightning Charging Cable,1,14.95,02/08/19 22:06,"701 12th St, San Francisco, CA 94016" -150922,Bose SoundSport Headphones,1,99.99,02/06/19 16:42,"562 Hill St, Boston, MA 02215" -150923,AAA Batteries (4-pack),2,2.99,02/16/19 17:26,"410 Lakeview St, Los Angeles, CA 90001" -150924,ThinkPad Laptop,1,999.99,02/21/19 09:35,"228 5th St, Austin, TX 73301" -150925,iPhone,1,700,02/07/19 17:43,"784 Elm St, Boston, MA 02215" -150925,Lightning Charging Cable,1,14.95,02/07/19 17:43,"784 Elm St, Boston, MA 02215" -150925,iPhone,1,700,02/07/19 17:43,"784 Elm St, Boston, MA 02215" -150926,Wired Headphones,2,11.99,02/16/19 06:31,"80 14th St, New York City, NY 10001" -150927,USB-C Charging Cable,2,11.95,02/26/19 18:10,"701 Spruce St, New York City, NY 10001" -150928,Apple Airpods Headphones,1,150,02/14/19 14:31,"837 6th St, San Francisco, CA 94016" -150929,AA Batteries (4-pack),1,3.84,02/10/19 08:26,"373 13th St, Los Angeles, CA 90001" -150930,20in Monitor,1,109.99,02/11/19 22:42,"916 2nd St, Los Angeles, CA 90001" -150931,Macbook Pro Laptop,1,1700,02/15/19 11:17,"825 Adams St, Portland, ME 04101" -150932,AA Batteries (4-pack),1,3.84,02/10/19 11:08,"925 North St, Los Angeles, CA 90001" -150933,Bose SoundSport Headphones,1,99.99,02/24/19 10:28,"588 Lincoln St, Seattle, WA 98101" -150934,Lightning Charging Cable,1,14.95,02/11/19 17:08,"841 6th St, New York City, NY 10001" -150935,Bose SoundSport Headphones,1,99.99,02/22/19 10:31,"402 1st St, San Francisco, CA 94016" -150936,Lightning Charging Cable,1,14.95,02/09/19 03:54,"507 River St, Dallas, TX 75001" -150937,LG Washing Machine,1,600.0,02/25/19 19:21,"245 Chestnut St, San Francisco, CA 94016" -150938,Bose SoundSport Headphones,1,99.99,02/25/19 01:35,"464 Elm St, New York City, NY 10001" -150939,ThinkPad Laptop,1,999.99,02/01/19 20:20,"89 Jackson St, New York City, NY 10001" -150940,Lightning Charging Cable,1,14.95,02/14/19 15:51,"623 6th St, Los Angeles, CA 90001" -150941,Bose SoundSport Headphones,2,99.99,02/16/19 16:08,"114 14th St, Los Angeles, CA 90001" -150942,Apple Airpods Headphones,1,150,02/21/19 00:52,"286 Lakeview St, Dallas, TX 75001" -150943,USB-C Charging Cable,1,11.95,02/06/19 19:13,"759 1st St, Austin, TX 73301" -150943,USB-C Charging Cable,1,11.95,02/06/19 19:13,"759 1st St, Austin, TX 73301" -150944,Bose SoundSport Headphones,1,99.99,02/14/19 15:26,"479 Lake St, Portland, OR 97035" -150945,iPhone,1,700,02/06/19 22:23,"877 Dogwood St, San Francisco, CA 94016" -150945,Wired Headphones,1,11.99,02/06/19 22:23,"877 Dogwood St, San Francisco, CA 94016" -150946,USB-C Charging Cable,1,11.95,02/12/19 18:21,"732 2nd St, Dallas, TX 75001" -150947,Lightning Charging Cable,1,14.95,02/02/19 17:53,"914 Church St, Seattle, WA 98101" -150948,USB-C Charging Cable,1,11.95,02/11/19 18:15,"872 Dogwood St, Dallas, TX 75001" -150949,Lightning Charging Cable,1,14.95,02/05/19 10:57,"303 Pine St, Dallas, TX 75001" -150950,LG Dryer,1,600.0,02/27/19 13:13,"52 Cedar St, New York City, NY 10001" -150951,iPhone,1,700,02/04/19 10:24,"40 8th St, New York City, NY 10001" -150951,Lightning Charging Cable,1,14.95,02/04/19 10:24,"40 8th St, New York City, NY 10001" -150951,Apple Airpods Headphones,1,150,02/04/19 10:24,"40 8th St, New York City, NY 10001" -150952,USB-C Charging Cable,1,11.95,02/13/19 16:39,"465 Cedar St, San Francisco, CA 94016" -150953,AA Batteries (4-pack),1,3.84,02/28/19 22:26,"412 Wilson St, Seattle, WA 98101" -150954,Wired Headphones,1,11.99,02/19/19 23:33,"522 Center St, Boston, MA 02215" -150955,Wired Headphones,1,11.99,02/13/19 11:34,"65 Wilson St, Los Angeles, CA 90001" -150956,Macbook Pro Laptop,1,1700,02/12/19 01:32,"915 Meadow St, Portland, OR 97035" -150957,Apple Airpods Headphones,1,150,02/18/19 09:14,"480 Walnut St, New York City, NY 10001" -150958,iPhone,1,700,02/26/19 11:44,"58 Hickory St, San Francisco, CA 94016" -150959,Apple Airpods Headphones,1,150,02/23/19 09:32,"364 Ridge St, Atlanta, GA 30301" -150960,AA Batteries (4-pack),2,3.84,02/08/19 11:11,"849 Elm St, Seattle, WA 98101" -150961,Vareebadd Phone,1,400,02/18/19 21:52,"251 West St, New York City, NY 10001" -150961,Wired Headphones,1,11.99,02/18/19 21:52,"251 West St, New York City, NY 10001" -150962,27in FHD Monitor,1,149.99,02/07/19 17:51,"232 4th St, Boston, MA 02215" -150963,Google Phone,1,600,02/08/19 20:48,"184 Meadow St, Boston, MA 02215" -150964,Wired Headphones,1,11.99,02/18/19 00:57,"735 Hickory St, New York City, NY 10001" -150965,Lightning Charging Cable,1,14.95,02/03/19 21:29,"650 Chestnut St, San Francisco, CA 94016" -150966,Bose SoundSport Headphones,1,99.99,02/27/19 07:57,"540 Forest St, San Francisco, CA 94016" -150967,AA Batteries (4-pack),3,3.84,02/20/19 22:17,"717 Willow St, New York City, NY 10001" -150968,AA Batteries (4-pack),2,3.84,02/12/19 11:20,"60 13th St, San Francisco, CA 94016" -150969,Wired Headphones,1,11.99,02/05/19 16:32,"591 10th St, Seattle, WA 98101" -150970,AAA Batteries (4-pack),3,2.99,02/12/19 13:30,"943 Lake St, Seattle, WA 98101" -150971,AAA Batteries (4-pack),2,2.99,02/02/19 03:53,"670 11th St, Dallas, TX 75001" -150972,Google Phone,1,600,02/11/19 12:14,"138 Wilson St, Los Angeles, CA 90001" -150972,USB-C Charging Cable,1,11.95,02/11/19 12:14,"138 Wilson St, Los Angeles, CA 90001" -150973,Google Phone,1,600,02/05/19 11:04,"401 5th St, San Francisco, CA 94016" -150974,Bose SoundSport Headphones,1,99.99,02/27/19 16:01,"179 14th St, Boston, MA 02215" -150975,Bose SoundSport Headphones,1,99.99,02/17/19 18:39,"530 11th St, Seattle, WA 98101" -150976,Lightning Charging Cable,1,14.95,02/02/19 01:21,"352 9th St, New York City, NY 10001" -150977,Bose SoundSport Headphones,1,99.99,02/07/19 20:09,"304 West St, Boston, MA 02215" -150978,AA Batteries (4-pack),1,3.84,02/20/19 19:07,"341 Cherry St, New York City, NY 10001" -150979,Lightning Charging Cable,1,14.95,02/03/19 18:41,"254 Forest St, San Francisco, CA 94016" -150980,20in Monitor,1,109.99,02/13/19 20:21,"704 West St, Seattle, WA 98101" -150981,Bose SoundSport Headphones,1,99.99,02/24/19 17:52,"188 Washington St, Los Angeles, CA 90001" -150982,Lightning Charging Cable,1,14.95,02/22/19 17:18,"301 West St, Atlanta, GA 30301" -150983,Flatscreen TV,1,300,02/13/19 15:43,"502 4th St, Boston, MA 02215" -150984,Wired Headphones,1,11.99,02/03/19 15:24,"922 Elm St, Austin, TX 73301" -150985,Flatscreen TV,1,300,02/20/19 12:27,"221 Hickory St, Los Angeles, CA 90001" -150986,AAA Batteries (4-pack),1,2.99,02/19/19 19:37,"188 7th St, Atlanta, GA 30301" -150987,AAA Batteries (4-pack),2,2.99,02/10/19 20:28,"179 1st St, Boston, MA 02215" -150988,AAA Batteries (4-pack),1,2.99,02/04/19 12:08,"363 Johnson St, San Francisco, CA 94016" -150989,AA Batteries (4-pack),2,3.84,02/05/19 20:31,"912 Church St, Portland, OR 97035" -150990,34in Ultrawide Monitor,1,379.99,02/16/19 18:05,"420 9th St, Dallas, TX 75001" -150991,Flatscreen TV,1,300,02/21/19 15:00,"780 Spruce St, San Francisco, CA 94016" -150992,Wired Headphones,1,11.99,02/19/19 14:15,"525 Cedar St, Dallas, TX 75001" -150993,AA Batteries (4-pack),1,3.84,02/02/19 19:36,"719 Lake St, Dallas, TX 75001" -150994,34in Ultrawide Monitor,1,379.99,02/22/19 16:02,"892 Ridge St, Austin, TX 73301" -150995,USB-C Charging Cable,1,11.95,02/16/19 14:54,"8 12th St, Seattle, WA 98101" -150996,AAA Batteries (4-pack),1,2.99,02/19/19 14:21,"179 Pine St, New York City, NY 10001" -150997,Apple Airpods Headphones,1,150,02/01/19 15:04,"584 7th St, Dallas, TX 75001" -150998,Lightning Charging Cable,1,14.95,02/22/19 09:50,"645 Church St, San Francisco, CA 94016" -150999,AA Batteries (4-pack),1,3.84,02/04/19 11:32,"358 Dogwood St, Boston, MA 02215" -151000,AA Batteries (4-pack),1,3.84,02/17/19 08:25,"12 Dogwood St, Austin, TX 73301" -151001,34in Ultrawide Monitor,1,379.99,02/08/19 13:15,"46 Elm St, New York City, NY 10001" -151002,AAA Batteries (4-pack),1,2.99,02/01/19 09:26,"194 North St, Boston, MA 02215" -151003,AA Batteries (4-pack),2,3.84,02/20/19 03:19,"500 13th St, Seattle, WA 98101" -151004,USB-C Charging Cable,1,11.95,02/23/19 09:25,"501 Adams St, Austin, TX 73301" -151005,USB-C Charging Cable,1,11.95,02/08/19 09:37,"280 Chestnut St, Boston, MA 02215" -151006,Lightning Charging Cable,1,14.95,02/05/19 20:59,"502 Elm St, San Francisco, CA 94016" -151007,USB-C Charging Cable,2,11.95,02/11/19 19:48,"119 Lakeview St, Boston, MA 02215" -151008,AA Batteries (4-pack),2,3.84,02/11/19 11:33,"206 8th St, New York City, NY 10001" -151009,USB-C Charging Cable,1,11.95,02/13/19 01:55,"961 14th St, San Francisco, CA 94016" -151010,Apple Airpods Headphones,1,150,02/09/19 10:28,"653 5th St, San Francisco, CA 94016" -151011,iPhone,1,700,02/06/19 10:05,"74 14th St, San Francisco, CA 94016" -151012,USB-C Charging Cable,1,11.95,02/16/19 14:38,"397 Church St, Portland, OR 97035" -151013,27in FHD Monitor,1,149.99,02/11/19 10:43,"468 West St, Dallas, TX 75001" -151014,ThinkPad Laptop,1,999.99,02/21/19 17:24,"693 4th St, Atlanta, GA 30301" -151015,Bose SoundSport Headphones,1,99.99,02/27/19 18:59,"813 Adams St, Los Angeles, CA 90001" -151016,Bose SoundSport Headphones,1,99.99,02/21/19 10:12,"756 Pine St, Dallas, TX 75001" -151017,USB-C Charging Cable,1,11.95,02/27/19 08:26,"888 8th St, Seattle, WA 98101" -151018,34in Ultrawide Monitor,1,379.99,02/05/19 09:18,"896 Chestnut St, Los Angeles, CA 90001" -151019,Lightning Charging Cable,1,14.95,02/04/19 17:11,"398 Church St, Boston, MA 02215" -151020,Wired Headphones,1,11.99,02/05/19 20:18,"437 Lincoln St, Boston, MA 02215" -151021,AAA Batteries (4-pack),3,2.99,02/02/19 09:49,"92 13th St, San Francisco, CA 94016" -151022,AAA Batteries (4-pack),1,2.99,02/24/19 17:34,"11 Wilson St, Los Angeles, CA 90001" -151023,Wired Headphones,1,11.99,02/25/19 11:47,"407 Spruce St, Dallas, TX 75001" -151024,Wired Headphones,1,11.99,02/19/19 08:39,"35 Pine St, Portland, OR 97035" -151024,Wired Headphones,1,11.99,02/19/19 08:39,"35 Pine St, Portland, OR 97035" -151025,AA Batteries (4-pack),2,3.84,02/21/19 20:44,"994 Church St, San Francisco, CA 94016" -151026,Flatscreen TV,1,300,02/12/19 18:25,"730 Cedar St, Portland, OR 97035" -151027,34in Ultrawide Monitor,1,379.99,02/24/19 16:26,"151 Hill St, San Francisco, CA 94016" -151028,AAA Batteries (4-pack),1,2.99,02/07/19 16:13,"216 Lakeview St, Boston, MA 02215" -151029,USB-C Charging Cable,2,11.95,02/17/19 17:38,"84 Highland St, Dallas, TX 75001" -151030,Bose SoundSport Headphones,1,99.99,02/16/19 00:22,"951 10th St, San Francisco, CA 94016" -151031,AAA Batteries (4-pack),1,2.99,02/07/19 12:37,"671 5th St, Los Angeles, CA 90001" -151032,34in Ultrawide Monitor,1,379.99,02/09/19 22:49,"799 Park St, Dallas, TX 75001" -151033,Wired Headphones,1,11.99,02/18/19 19:47,"193 Walnut St, Seattle, WA 98101" -151034,Lightning Charging Cable,1,14.95,02/15/19 18:20,"780 Hickory St, Portland, OR 97035" -151035,27in FHD Monitor,1,149.99,02/26/19 01:05,"826 Elm St, Boston, MA 02215" -151036,Wired Headphones,1,11.99,02/28/19 06:24,"138 Ridge St, New York City, NY 10001" -151037,Apple Airpods Headphones,1,150,02/12/19 21:13,"53 Lakeview St, New York City, NY 10001" -151038,Bose SoundSport Headphones,1,99.99,02/07/19 11:42,"403 North St, San Francisco, CA 94016" -151039,Wired Headphones,1,11.99,02/09/19 15:59,"921 6th St, Dallas, TX 75001" -151040,AAA Batteries (4-pack),1,2.99,02/05/19 23:17,"233 North St, Boston, MA 02215" -151041,Lightning Charging Cable,1,14.95,02/06/19 12:37,"588 14th St, Atlanta, GA 30301" -151042,Wired Headphones,1,11.99,02/06/19 10:44,"657 Washington St, Los Angeles, CA 90001" -151043,AAA Batteries (4-pack),1,2.99,02/16/19 21:05,"120 Highland St, San Francisco, CA 94016" -151044,Lightning Charging Cable,1,14.95,02/19/19 18:04,"183 Meadow St, Los Angeles, CA 90001" -151045,Macbook Pro Laptop,1,1700,02/26/19 15:55,"393 Maple St, Dallas, TX 75001" -151046,AA Batteries (4-pack),2,3.84,02/19/19 07:35,"567 4th St, New York City, NY 10001" -151047,iPhone,1,700,02/03/19 21:13,"593 Forest St, New York City, NY 10001" -151047,Lightning Charging Cable,1,14.95,02/03/19 21:13,"593 Forest St, New York City, NY 10001" -151048,Lightning Charging Cable,1,14.95,02/11/19 16:31,"467 Sunset St, Los Angeles, CA 90001" -151049,AAA Batteries (4-pack),1,2.99,02/27/19 16:41,"296 5th St, Atlanta, GA 30301" -151050,AA Batteries (4-pack),2,3.84,02/02/19 10:32,"341 Lake St, Austin, TX 73301" -151051,iPhone,1,700,02/06/19 17:01,"374 Park St, Austin, TX 73301" -151052,AAA Batteries (4-pack),1,2.99,02/10/19 03:38,"19 Ridge St, New York City, NY 10001" -151053,iPhone,1,700,02/14/19 21:13,"964 Maple St, Dallas, TX 75001" -151053,Wired Headphones,1,11.99,02/14/19 21:13,"964 Maple St, Dallas, TX 75001" -151054,AA Batteries (4-pack),3,3.84,02/11/19 00:21,"758 Lake St, New York City, NY 10001" -151055,Wired Headphones,1,11.99,02/02/19 18:42,"630 2nd St, Austin, TX 73301" -151056,USB-C Charging Cable,1,11.95,02/18/19 17:12,"993 Spruce St, San Francisco, CA 94016" -151057,AA Batteries (4-pack),1,3.84,02/01/19 19:21,"975 Spruce St, San Francisco, CA 94016" -151058,AA Batteries (4-pack),1,3.84,02/08/19 13:23,"584 12th St, Los Angeles, CA 90001" -151059,Macbook Pro Laptop,1,1700,02/21/19 10:29,"203 6th St, San Francisco, CA 94016" -151060,Lightning Charging Cable,1,14.95,02/15/19 21:49,"15 Adams St, San Francisco, CA 94016" -151061,27in 4K Gaming Monitor,1,389.99,02/01/19 23:05,"57 Adams St, Atlanta, GA 30301" -151062,USB-C Charging Cable,1,11.95,02/07/19 03:34,"155 Madison St, Los Angeles, CA 90001" -151063,Wired Headphones,1,11.99,02/16/19 12:59,"340 Adams St, Portland, OR 97035" -151064,27in 4K Gaming Monitor,1,389.99,02/26/19 07:47,"315 Ridge St, Portland, OR 97035" -151065,AAA Batteries (4-pack),2,2.99,02/12/19 11:59,"471 Highland St, San Francisco, CA 94016" -151066,AA Batteries (4-pack),2,3.84,02/05/19 20:46,"650 2nd St, New York City, NY 10001" -151067,Google Phone,1,600,02/28/19 19:20,"429 Lake St, San Francisco, CA 94016" -151068,Wired Headphones,1,11.99,02/17/19 16:36,"598 Hill St, Atlanta, GA 30301" -151069,Apple Airpods Headphones,1,150,02/06/19 10:11,"265 Lake St, Los Angeles, CA 90001" -151070,Lightning Charging Cable,1,14.95,02/26/19 07:23,"64 Madison St, New York City, NY 10001" -151071,27in FHD Monitor,1,149.99,02/14/19 12:37,"461 13th St, Los Angeles, CA 90001" -151072,27in FHD Monitor,1,149.99,02/09/19 15:16,"475 Maple St, Atlanta, GA 30301" -151073,Lightning Charging Cable,1,14.95,02/01/19 10:53,"119 Washington St, Boston, MA 02215" -151074,USB-C Charging Cable,1,11.95,02/24/19 19:13,"718 River St, Portland, OR 97035" -151075,AA Batteries (4-pack),1,3.84,02/19/19 16:20,"296 5th St, Boston, MA 02215" -151076,Bose SoundSport Headphones,1,99.99,02/18/19 13:10,"76 9th St, Los Angeles, CA 90001" -151077,27in 4K Gaming Monitor,1,389.99,02/24/19 11:10,"792 Washington St, Los Angeles, CA 90001" -151078,USB-C Charging Cable,1,11.95,02/11/19 16:14,"205 North St, San Francisco, CA 94016" -151079,Flatscreen TV,1,300,02/12/19 22:18,"910 11th St, Seattle, WA 98101" -151080,iPhone,1,700,02/17/19 20:17,"369 Adams St, San Francisco, CA 94016" -151081,AAA Batteries (4-pack),1,2.99,02/07/19 12:22,"532 Willow St, Los Angeles, CA 90001" -151082,ThinkPad Laptop,1,999.99,02/19/19 19:17,"617 Highland St, New York City, NY 10001" -151083,34in Ultrawide Monitor,1,379.99,02/15/19 21:03,"401 Spruce St, Boston, MA 02215" -151084,USB-C Charging Cable,1,11.95,02/19/19 17:15,"705 Main St, Portland, OR 97035" -151085,Apple Airpods Headphones,1,150,02/05/19 17:20,"201 Meadow St, Seattle, WA 98101" -151086,AA Batteries (4-pack),1,3.84,02/24/19 15:16,"807 8th St, Austin, TX 73301" -151087,USB-C Charging Cable,1,11.95,02/08/19 14:16,"514 9th St, Atlanta, GA 30301" -151088,AAA Batteries (4-pack),3,2.99,02/03/19 20:02,"846 Elm St, Los Angeles, CA 90001" -151089,USB-C Charging Cable,2,11.95,02/24/19 09:09,"575 Jefferson St, Atlanta, GA 30301" -151090,LG Dryer,1,600.0,02/08/19 09:57,"884 Lincoln St, Boston, MA 02215" -151091,Lightning Charging Cable,1,14.95,02/25/19 15:29,"482 8th St, Austin, TX 73301" -151092,AA Batteries (4-pack),1,3.84,02/07/19 19:51,"419 Ridge St, Seattle, WA 98101" -151093,Flatscreen TV,1,300,02/09/19 22:20,"744 River St, Portland, OR 97035" -151094,Lightning Charging Cable,1,14.95,02/09/19 13:26,"821 West St, Austin, TX 73301" -151095,Wired Headphones,2,11.99,02/02/19 08:41,"607 Washington St, Boston, MA 02215" -151096,Wired Headphones,1,11.99,02/16/19 19:04,"33 6th St, Los Angeles, CA 90001" -151097,Apple Airpods Headphones,1,150,02/09/19 11:02,"636 South St, Portland, OR 97035" -151098,AA Batteries (4-pack),1,3.84,02/11/19 13:13,"718 Washington St, Boston, MA 02215" -151099,AAA Batteries (4-pack),3,2.99,02/13/19 19:05,"819 10th St, New York City, NY 10001" -151100,AAA Batteries (4-pack),2,2.99,02/07/19 19:34,"124 Elm St, Boston, MA 02215" -151101,Macbook Pro Laptop,1,1700,02/25/19 21:46,"580 11th St, Seattle, WA 98101" -151102,USB-C Charging Cable,1,11.95,02/17/19 16:34,"690 4th St, Dallas, TX 75001" -151103,Bose SoundSport Headphones,1,99.99,02/18/19 21:24,"216 Johnson St, San Francisco, CA 94016" -151104,Wired Headphones,1,11.99,02/28/19 13:29,"203 Main St, Atlanta, GA 30301" -151105,Apple Airpods Headphones,1,150,02/10/19 09:51,"218 9th St, San Francisco, CA 94016" -151106,AA Batteries (4-pack),1,3.84,02/15/19 11:02,"204 Elm St, Atlanta, GA 30301" -151107,Lightning Charging Cable,1,14.95,02/12/19 09:29,"382 5th St, San Francisco, CA 94016" -151108,27in 4K Gaming Monitor,1,389.99,02/05/19 16:05,"513 11th St, Los Angeles, CA 90001" -151109,iPhone,1,700,02/14/19 18:56,"933 Dogwood St, Atlanta, GA 30301" -151110,AAA Batteries (4-pack),1,2.99,02/28/19 16:13,"402 South St, San Francisco, CA 94016" -151110,Lightning Charging Cable,1,14.95,02/28/19 16:13,"402 South St, San Francisco, CA 94016" -151111,AA Batteries (4-pack),1,3.84,02/23/19 18:42,"681 12th St, San Francisco, CA 94016" -151112,Wired Headphones,1,11.99,02/24/19 14:15,"133 4th St, Boston, MA 02215" -151113,AAA Batteries (4-pack),2,2.99,02/14/19 23:02,"557 Jackson St, Los Angeles, CA 90001" -151114,USB-C Charging Cable,1,11.95,02/01/19 15:18,"530 Meadow St, Dallas, TX 75001" -151115,Apple Airpods Headphones,1,150,02/13/19 17:55,"91 North St, Boston, MA 02215" -151116,Bose SoundSport Headphones,1,99.99,02/07/19 14:26,"56 Lincoln St, San Francisco, CA 94016" -151117,AA Batteries (4-pack),4,3.84,02/07/19 18:39,"218 West St, Seattle, WA 98101" -151118,Apple Airpods Headphones,1,150,02/08/19 14:19,"710 Elm St, San Francisco, CA 94016" -151119,USB-C Charging Cable,1,11.95,02/03/19 19:44,"842 Park St, Boston, MA 02215" -151120,USB-C Charging Cable,1,11.95,02/09/19 19:37,"52 South St, San Francisco, CA 94016" -151121,LG Dryer,1,600.0,02/28/19 20:14,"550 North St, New York City, NY 10001" -151122,AAA Batteries (4-pack),1,2.99,02/12/19 17:51,"357 Wilson St, Atlanta, GA 30301" -151123,27in FHD Monitor,1,149.99,02/24/19 23:32,"103 Forest St, Los Angeles, CA 90001" -151124,Lightning Charging Cable,1,14.95,02/14/19 16:51,"102 1st St, San Francisco, CA 94016" -151125,AA Batteries (4-pack),1,3.84,02/12/19 12:32,"12 11th St, Atlanta, GA 30301" -151126,Wired Headphones,1,11.99,02/22/19 12:12,"760 River St, Atlanta, GA 30301" -151127,AAA Batteries (4-pack),1,2.99,02/27/19 21:26,"594 Jackson St, Seattle, WA 98101" -151128,Apple Airpods Headphones,1,150,02/09/19 22:39,"985 8th St, Portland, OR 97035" -151129,ThinkPad Laptop,1,999.99,02/26/19 20:12,"476 Lakeview St, Portland, OR 97035" -151130,Wired Headphones,1,11.99,02/23/19 11:35,"950 Chestnut St, Boston, MA 02215" -151131,Bose SoundSport Headphones,1,99.99,02/10/19 20:09,"496 Lakeview St, Atlanta, GA 30301" -151132,27in 4K Gaming Monitor,1,389.99,02/26/19 15:00,"111 North St, New York City, NY 10001" -151133,Lightning Charging Cable,1,14.95,02/26/19 09:49,"214 Ridge St, Atlanta, GA 30301" -151134,Wired Headphones,1,11.99,02/16/19 14:11,"413 Washington St, Dallas, TX 75001" -151135,USB-C Charging Cable,1,11.95,02/18/19 10:22,"866 Maple St, Los Angeles, CA 90001" -151136,AAA Batteries (4-pack),1,2.99,02/07/19 22:11,"198 Church St, Boston, MA 02215" -151137,27in 4K Gaming Monitor,1,389.99,02/16/19 12:51,"135 Wilson St, Boston, MA 02215" -151138,27in FHD Monitor,2,149.99,02/13/19 17:14,"579 Maple St, Dallas, TX 75001" -151139,Apple Airpods Headphones,1,150,02/16/19 23:21,"552 Washington St, Atlanta, GA 30301" -151140,USB-C Charging Cable,1,11.95,02/22/19 14:45,"679 Jefferson St, Los Angeles, CA 90001" -151141,USB-C Charging Cable,1,11.95,02/16/19 15:35,"745 Hill St, Seattle, WA 98101" -151142,iPhone,1,700,02/02/19 10:11,"116 Wilson St, Los Angeles, CA 90001" -151143,27in FHD Monitor,1,149.99,02/06/19 10:54,"120 Walnut St, San Francisco, CA 94016" -151144,USB-C Charging Cable,3,11.95,02/25/19 13:29,"565 South St, New York City, NY 10001" -151145,Google Phone,1,600,02/28/19 10:55,"296 Adams St, New York City, NY 10001" -151145,Wired Headphones,1,11.99,02/28/19 10:55,"296 Adams St, New York City, NY 10001" -151146,Wired Headphones,1,11.99,02/28/19 20:40,"45 River St, New York City, NY 10001" -151147,Vareebadd Phone,1,400,02/01/19 11:04,"141 Maple St, Los Angeles, CA 90001" -151148,Wired Headphones,1,11.99,02/07/19 19:53,"882 5th St, Dallas, TX 75001" -151149,Bose SoundSport Headphones,1,99.99,02/15/19 19:46,"261 Washington St, Boston, MA 02215" -151150,34in Ultrawide Monitor,1,379.99,02/17/19 20:29,"566 4th St, San Francisco, CA 94016" -151151,AAA Batteries (4-pack),1,2.99,02/09/19 13:26,"490 Cedar St, Seattle, WA 98101" -151152,20in Monitor,1,109.99,02/07/19 22:41,"278 Johnson St, Boston, MA 02215" -151153,AAA Batteries (4-pack),1,2.99,02/14/19 16:09,"803 Walnut St, Atlanta, GA 30301" -151154,Apple Airpods Headphones,1,150,02/17/19 18:25,"64 Dogwood St, Dallas, TX 75001" -151155,Bose SoundSport Headphones,1,99.99,02/03/19 16:53,"778 Washington St, New York City, NY 10001" -151156,Lightning Charging Cable,1,14.95,02/04/19 15:14,"600 Jackson St, San Francisco, CA 94016" -151157,Flatscreen TV,1,300,02/16/19 11:44,"769 13th St, Los Angeles, CA 90001" -151158,Wired Headphones,1,11.99,02/26/19 11:33,"454 Center St, Portland, OR 97035" -151159,USB-C Charging Cable,1,11.95,02/08/19 12:26,"599 South St, New York City, NY 10001" -151160,AA Batteries (4-pack),1,3.84,02/12/19 22:40,"187 Park St, Austin, TX 73301" -151161,Lightning Charging Cable,1,14.95,02/09/19 22:27,"950 14th St, San Francisco, CA 94016" -151162,Macbook Pro Laptop,1,1700,02/12/19 20:36,"365 14th St, New York City, NY 10001" -151163,AAA Batteries (4-pack),1,2.99,02/20/19 01:15,"424 Chestnut St, Portland, OR 97035" -151164,34in Ultrawide Monitor,1,379.99,02/21/19 12:14,"310 Cedar St, Boston, MA 02215" -151165,iPhone,1,700,02/08/19 15:32,"103 Park St, Atlanta, GA 30301" -151166,Wired Headphones,1,11.99,02/02/19 17:02,"775 Center St, Dallas, TX 75001" -151167,Lightning Charging Cable,2,14.95,02/06/19 17:14,"647 2nd St, Los Angeles, CA 90001" -151168,AAA Batteries (4-pack),1,2.99,02/24/19 15:36,"111 8th St, Seattle, WA 98101" -151169,AAA Batteries (4-pack),1,2.99,02/18/19 23:46,"106 Cedar St, San Francisco, CA 94016" -151170,34in Ultrawide Monitor,1,379.99,02/01/19 17:29,"625 Park St, Boston, MA 02215" -151171,AA Batteries (4-pack),2,3.84,02/03/19 06:19,"332 North St, Dallas, TX 75001" -151172,iPhone,1,700,02/25/19 12:07,"618 Walnut St, Austin, TX 73301" -151172,Wired Headphones,1,11.99,02/25/19 12:07,"618 Walnut St, Austin, TX 73301" -151173,AA Batteries (4-pack),2,3.84,02/27/19 23:39,"97 Wilson St, Portland, OR 97035" -151174,20in Monitor,1,109.99,02/20/19 13:29,"784 13th St, Seattle, WA 98101" -151175,Vareebadd Phone,1,400,02/15/19 16:53,"530 Cherry St, Austin, TX 73301" -151176,AAA Batteries (4-pack),1,2.99,02/12/19 12:02,"259 Spruce St, San Francisco, CA 94016" -151177,AAA Batteries (4-pack),2,2.99,02/20/19 23:45,"590 Walnut St, San Francisco, CA 94016" -151178,Google Phone,1,600,02/15/19 21:02,"540 Adams St, Dallas, TX 75001" -151179,Lightning Charging Cable,1,14.95,02/02/19 15:47,"152 Chestnut St, Atlanta, GA 30301" -151180,34in Ultrawide Monitor,1,379.99,02/09/19 23:01,"157 7th St, San Francisco, CA 94016" -151181,USB-C Charging Cable,1,11.95,02/17/19 07:53,"903 14th St, Los Angeles, CA 90001" -151182,Lightning Charging Cable,1,14.95,02/27/19 23:29,"800 8th St, Atlanta, GA 30301" -151182,34in Ultrawide Monitor,1,379.99,02/27/19 23:29,"800 8th St, Atlanta, GA 30301" -151183,Macbook Pro Laptop,1,1700,02/02/19 14:15,"729 Elm St, Dallas, TX 75001" -151184,AAA Batteries (4-pack),1,2.99,02/17/19 18:23,"34 7th St, Los Angeles, CA 90001" -151185,AAA Batteries (4-pack),1,2.99,02/04/19 22:22,"994 Meadow St, San Francisco, CA 94016" -151186,Wired Headphones,1,11.99,02/14/19 00:22,"644 Willow St, Los Angeles, CA 90001" -151187,AAA Batteries (4-pack),2,2.99,02/25/19 11:50,"126 Sunset St, Dallas, TX 75001" -151188,Lightning Charging Cable,1,14.95,02/02/19 22:20,"49 Washington St, New York City, NY 10001" -151189,USB-C Charging Cable,1,11.95,02/17/19 11:23,"30 7th St, San Francisco, CA 94016" -151190,Flatscreen TV,1,300,02/16/19 18:43,"640 West St, Boston, MA 02215" -151191,Lightning Charging Cable,1,14.95,02/26/19 19:38,"811 Meadow St, Austin, TX 73301" -151192,iPhone,1,700,02/07/19 11:41,"554 Jackson St, New York City, NY 10001" -151193,Lightning Charging Cable,1,14.95,02/17/19 21:55,"609 West St, New York City, NY 10001" -151194,iPhone,1,700,02/27/19 13:21,"627 Chestnut St, Los Angeles, CA 90001" -151195,USB-C Charging Cable,1,11.95,02/02/19 16:28,"977 Main St, San Francisco, CA 94016" -151196,USB-C Charging Cable,1,11.95,02/17/19 12:20,"756 Hickory St, San Francisco, CA 94016" -151197,Vareebadd Phone,1,400,02/04/19 10:33,"492 Dogwood St, Dallas, TX 75001" -151198,27in 4K Gaming Monitor,1,389.99,02/20/19 10:49,"511 Johnson St, Seattle, WA 98101" -151199,Google Phone,1,600,02/10/19 19:35,"740 Center St, Boston, MA 02215" -151200,Google Phone,1,600,02/18/19 17:50,"696 Maple St, San Francisco, CA 94016" -151201,AAA Batteries (4-pack),2,2.99,02/24/19 01:19,"135 Jackson St, Portland, OR 97035" -151202,Apple Airpods Headphones,1,150,02/03/19 13:37,"908 Sunset St, San Francisco, CA 94016" -151203,27in 4K Gaming Monitor,1,389.99,02/12/19 18:18,"542 Ridge St, Boston, MA 02215" -151204,Bose SoundSport Headphones,1,99.99,02/07/19 21:01,"263 West St, New York City, NY 10001" -151205,AA Batteries (4-pack),1,3.84,02/19/19 16:40,"267 Wilson St, Los Angeles, CA 90001" -151206,Apple Airpods Headphones,1,150,02/23/19 12:19,"536 5th St, San Francisco, CA 94016" -151207,USB-C Charging Cable,1,11.95,02/03/19 16:37,"364 South St, Los Angeles, CA 90001" -151208,Apple Airpods Headphones,1,150,02/13/19 06:06,"347 Washington St, Atlanta, GA 30301" -151209,USB-C Charging Cable,1,11.95,02/17/19 15:37,"983 Church St, Seattle, WA 98101" -151210,Macbook Pro Laptop,1,1700,02/11/19 11:58,"974 River St, Dallas, TX 75001" -151211,Wired Headphones,1,11.99,02/09/19 10:31,"405 1st St, Los Angeles, CA 90001" -151212,AA Batteries (4-pack),1,3.84,02/24/19 07:08,"783 11th St, Dallas, TX 75001" -151213,Lightning Charging Cable,1,14.95,02/22/19 13:21,"653 10th St, New York City, NY 10001" -151214,USB-C Charging Cable,1,11.95,02/03/19 09:33,"940 Chestnut St, San Francisco, CA 94016" -151215,AA Batteries (4-pack),2,3.84,02/24/19 16:40,"712 Forest St, Portland, OR 97035" -151216,iPhone,1,700,02/08/19 10:09,"179 Dogwood St, Dallas, TX 75001" -151216,Lightning Charging Cable,2,14.95,02/08/19 10:09,"179 Dogwood St, Dallas, TX 75001" -151217,34in Ultrawide Monitor,1,379.99,02/13/19 18:43,"960 Walnut St, Los Angeles, CA 90001" -151218,USB-C Charging Cable,1,11.95,02/28/19 22:27,"512 Madison St, Portland, OR 97035" -151219,Lightning Charging Cable,1,14.95,02/14/19 19:38,"348 Washington St, Portland, OR 97035" -151220,AA Batteries (4-pack),2,3.84,02/01/19 17:36,"100 Park St, New York City, NY 10001" -151221,Lightning Charging Cable,1,14.95,02/26/19 17:08,"912 5th St, Los Angeles, CA 90001" -151222,iPhone,1,700,02/07/19 21:48,"339 4th St, Portland, OR 97035" -151222,Apple Airpods Headphones,1,150,02/07/19 21:48,"339 4th St, Portland, OR 97035" -151223,Apple Airpods Headphones,1,150,02/05/19 16:22,"263 Meadow St, Austin, TX 73301" -151224,27in 4K Gaming Monitor,1,389.99,02/26/19 11:01,"703 1st St, Austin, TX 73301" -151225,Lightning Charging Cable,1,14.95,02/01/19 16:10,"915 River St, Dallas, TX 75001" -151226,Macbook Pro Laptop,1,1700,02/18/19 12:37,"698 7th St, Los Angeles, CA 90001" -151227,Lightning Charging Cable,1,14.95,02/13/19 18:11,"538 Meadow St, Austin, TX 73301" -151228,Wired Headphones,1,11.99,02/25/19 15:02,"305 Spruce St, Los Angeles, CA 90001" -151229,ThinkPad Laptop,1,999.99,02/09/19 08:47,"166 Maple St, Boston, MA 02215" -151230,Google Phone,1,600,02/11/19 22:07,"386 Willow St, New York City, NY 10001" -151231,Flatscreen TV,1,300,02/15/19 14:52,"432 Jefferson St, Dallas, TX 75001" -151232,USB-C Charging Cable,1,11.95,02/02/19 18:53,"810 Willow St, New York City, NY 10001" -151233,Apple Airpods Headphones,1,150,02/12/19 08:46,"773 Spruce St, San Francisco, CA 94016" -151234,AA Batteries (4-pack),1,3.84,02/17/19 12:11,"223 Meadow St, Atlanta, GA 30301" -151235,Apple Airpods Headphones,1,150,02/25/19 14:43,"585 2nd St, San Francisco, CA 94016" -151236,Macbook Pro Laptop,1,1700,02/02/19 10:04,"433 Dogwood St, Portland, OR 97035" -151237,Apple Airpods Headphones,1,150,02/06/19 18:49,"681 Adams St, San Francisco, CA 94016" -151238,Wired Headphones,1,11.99,02/09/19 22:44,"443 Maple St, San Francisco, CA 94016" -151239,AAA Batteries (4-pack),1,2.99,02/25/19 17:40,"894 1st St, Atlanta, GA 30301" -151240,Apple Airpods Headphones,1,150,02/20/19 12:17,"821 Lake St, New York City, NY 10001" -151241,iPhone,1,700,02/08/19 12:10,"626 Washington St, San Francisco, CA 94016" -151242,USB-C Charging Cable,1,11.95,02/04/19 09:05,"852 Forest St, New York City, NY 10001" -151243,USB-C Charging Cable,1,11.95,02/25/19 07:20,"610 Cherry St, Los Angeles, CA 90001" -151244,USB-C Charging Cable,1,11.95,02/20/19 12:19,"129 Lake St, Los Angeles, CA 90001" -151245,USB-C Charging Cable,1,11.95,02/03/19 16:57,"3 Main St, New York City, NY 10001" -151246,Wired Headphones,1,11.99,02/05/19 16:00,"436 8th St, New York City, NY 10001" -151247,Bose SoundSport Headphones,1,99.99,02/22/19 18:35,"730 Jefferson St, Dallas, TX 75001" -151248,Wired Headphones,1,11.99,02/18/19 14:30,"108 Jefferson St, Boston, MA 02215" -151249,AA Batteries (4-pack),1,3.84,02/12/19 15:04,"604 Ridge St, Dallas, TX 75001" -151250,Lightning Charging Cable,1,14.95,02/10/19 21:17,"912 Church St, Austin, TX 73301" -151251,Wired Headphones,1,11.99,02/14/19 15:14,"118 Adams St, San Francisco, CA 94016" -151252,USB-C Charging Cable,1,11.95,02/12/19 21:45,"867 Willow St, Los Angeles, CA 90001" -151253,Google Phone,1,600,02/03/19 13:30,"42 Highland St, Los Angeles, CA 90001" -151254,Apple Airpods Headphones,1,150,02/05/19 21:38,"649 Lake St, Dallas, TX 75001" -151255,34in Ultrawide Monitor,1,379.99,02/14/19 23:30,"72 Lake St, New York City, NY 10001" -151256,27in 4K Gaming Monitor,1,389.99,02/04/19 11:53,"93 Walnut St, New York City, NY 10001" -151257,27in FHD Monitor,1,149.99,02/23/19 10:19,"933 Lincoln St, San Francisco, CA 94016" -151258,Vareebadd Phone,1,400,02/06/19 21:15,"736 Jefferson St, New York City, NY 10001" -151258,USB-C Charging Cable,1,11.95,02/06/19 21:15,"736 Jefferson St, New York City, NY 10001" -151259,AAA Batteries (4-pack),1,2.99,02/04/19 18:22,"479 South St, Seattle, WA 98101" -151260,AAA Batteries (4-pack),1,2.99,02/09/19 00:49,"957 Meadow St, Los Angeles, CA 90001" -151261,USB-C Charging Cable,1,11.95,02/26/19 14:15,"946 14th St, Austin, TX 73301" -151262,iPhone,1,700,02/10/19 10:07,"840 Wilson St, Seattle, WA 98101" -151262,Lightning Charging Cable,2,14.95,02/10/19 10:07,"840 Wilson St, Seattle, WA 98101" -151263,AAA Batteries (4-pack),2,2.99,02/02/19 21:02,"39 13th St, Los Angeles, CA 90001" -151264,Bose SoundSport Headphones,1,99.99,02/25/19 11:24,"960 Madison St, Boston, MA 02215" -151265,Bose SoundSport Headphones,1,99.99,02/27/19 04:34,"979 Elm St, Atlanta, GA 30301" -151266,AAA Batteries (4-pack),1,2.99,02/27/19 01:30,"371 Cherry St, Los Angeles, CA 90001" -151267,Lightning Charging Cable,1,14.95,02/28/19 13:52,"861 4th St, Los Angeles, CA 90001" -151268,Flatscreen TV,1,300,02/15/19 08:18,"454 West St, Portland, OR 97035" -151269,Apple Airpods Headphones,1,150,02/21/19 16:18,"999 2nd St, Seattle, WA 98101" -151270,LG Washing Machine,1,600.0,02/20/19 15:29,"634 Walnut St, Dallas, TX 75001" -151270,Google Phone,1,600,02/20/19 15:29,"634 Walnut St, Dallas, TX 75001" -151271,AAA Batteries (4-pack),1,2.99,02/25/19 18:53,"577 13th St, San Francisco, CA 94016" -151272,Wired Headphones,1,11.99,02/01/19 15:32,"34 Dogwood St, San Francisco, CA 94016" -151273,AAA Batteries (4-pack),1,2.99,02/10/19 16:27,"715 5th St, San Francisco, CA 94016" -151274,Bose SoundSport Headphones,1,99.99,02/05/19 00:58,"83 Highland St, New York City, NY 10001" -151275,Apple Airpods Headphones,1,150,02/15/19 11:44,"542 Ridge St, Atlanta, GA 30301" -151276,USB-C Charging Cable,1,11.95,02/05/19 19:56,"446 13th St, Dallas, TX 75001" -151277,iPhone,1,700,02/02/19 19:27,"921 Pine St, San Francisco, CA 94016" -151277,Wired Headphones,1,11.99,02/02/19 19:27,"921 Pine St, San Francisco, CA 94016" -151278,Apple Airpods Headphones,1,150,02/05/19 17:03,"515 1st St, Boston, MA 02215" -151279,AA Batteries (4-pack),2,3.84,02/21/19 10:10,"218 Madison St, Dallas, TX 75001" -151280,27in 4K Gaming Monitor,1,389.99,02/27/19 11:05,"880 Lakeview St, Dallas, TX 75001" -151281,USB-C Charging Cable,1,11.95,02/10/19 22:18,"58 Jefferson St, Los Angeles, CA 90001" -151282,USB-C Charging Cable,1,11.95,02/20/19 20:05,"907 Lakeview St, San Francisco, CA 94016" -151283,Google Phone,1,600,02/02/19 17:57,"718 Elm St, Los Angeles, CA 90001" -151283,USB-C Charging Cable,1,11.95,02/02/19 17:57,"718 Elm St, Los Angeles, CA 90001" -151284,ThinkPad Laptop,1,999.99,02/17/19 22:12,"167 Lake St, San Francisco, CA 94016" -151285,27in 4K Gaming Monitor,1,389.99,02/18/19 11:01,"299 Madison St, New York City, NY 10001" -151286,Flatscreen TV,1,300,02/03/19 15:08,"590 South St, Atlanta, GA 30301" -151287,iPhone,1,700,02/26/19 22:48,"108 10th St, Dallas, TX 75001" -151287,USB-C Charging Cable,1,11.95,02/26/19 22:48,"108 10th St, Dallas, TX 75001" -151288,USB-C Charging Cable,1,11.95,02/23/19 09:50,"319 Spruce St, Boston, MA 02215" -151289,AA Batteries (4-pack),2,3.84,02/24/19 14:45,"671 Sunset St, Los Angeles, CA 90001" -151290,Lightning Charging Cable,1,14.95,02/01/19 09:18,"485 River St, San Francisco, CA 94016" -151291,Lightning Charging Cable,1,14.95,02/25/19 14:37,"178 Sunset St, Los Angeles, CA 90001" -151292,iPhone,1,700,02/05/19 20:29,"592 7th St, San Francisco, CA 94016" -151293,Lightning Charging Cable,1,14.95,02/01/19 15:09,"72 Lincoln St, Los Angeles, CA 90001" -151294,27in FHD Monitor,1,149.99,02/21/19 17:36,"533 Walnut St, San Francisco, CA 94016" -151295,iPhone,1,700,02/22/19 16:39,"212 Dogwood St, San Francisco, CA 94016" -151296,Apple Airpods Headphones,1,150,02/27/19 19:02,"165 Highland St, Dallas, TX 75001" -151297,AAA Batteries (4-pack),1,2.99,02/20/19 19:57,"458 Ridge St, Boston, MA 02215" -151298,Google Phone,1,600,02/18/19 10:43,"638 Maple St, San Francisco, CA 94016" -151299,LG Washing Machine,1,600.0,02/21/19 16:24,"532 Park St, Los Angeles, CA 90001" -151299,Wired Headphones,2,11.99,02/21/19 16:24,"532 Park St, Los Angeles, CA 90001" -151300,Bose SoundSport Headphones,1,99.99,02/27/19 09:05,"862 Hill St, Los Angeles, CA 90001" -151301,27in 4K Gaming Monitor,1,389.99,02/06/19 12:53,"147 Spruce St, Los Angeles, CA 90001" -151302,27in FHD Monitor,1,149.99,02/19/19 14:09,"589 Spruce St, Portland, OR 97035" -151303,iPhone,1,700,02/01/19 08:30,"48 Ridge St, Los Angeles, CA 90001" -151304,Apple Airpods Headphones,1,150,02/20/19 13:49,"869 South St, San Francisco, CA 94016" -151305,USB-C Charging Cable,1,11.95,02/25/19 16:34,"867 Church St, San Francisco, CA 94016" -151306,Bose SoundSport Headphones,1,99.99,02/26/19 17:10,"15 Walnut St, Boston, MA 02215" -151307,20in Monitor,1,109.99,02/01/19 22:27,"957 Johnson St, San Francisco, CA 94016" -151308,iPhone,1,700,02/08/19 13:26,"408 Madison St, Los Angeles, CA 90001" -151308,Wired Headphones,1,11.99,02/08/19 13:26,"408 Madison St, Los Angeles, CA 90001" -151309,USB-C Charging Cable,1,11.95,02/10/19 07:12,"9 Lincoln St, Portland, OR 97035" -151310,Bose SoundSport Headphones,1,99.99,02/03/19 20:55,"414 Adams St, New York City, NY 10001" -151311,AAA Batteries (4-pack),1,2.99,02/06/19 20:06,"348 Pine St, Austin, TX 73301" -151312,AA Batteries (4-pack),1,3.84,02/27/19 19:10,"213 Willow St, Los Angeles, CA 90001" -151313,AAA Batteries (4-pack),1,2.99,02/10/19 20:39,"21 1st St, New York City, NY 10001" -151313,USB-C Charging Cable,1,11.95,02/10/19 20:39,"21 1st St, New York City, NY 10001" -151314,27in 4K Gaming Monitor,1,389.99,02/11/19 10:37,"574 West St, Boston, MA 02215" -151315,Wired Headphones,1,11.99,02/06/19 15:21,"631 Madison St, San Francisco, CA 94016" -151316,USB-C Charging Cable,1,11.95,02/21/19 12:42,"628 14th St, San Francisco, CA 94016" -151317,Lightning Charging Cable,1,14.95,02/01/19 08:25,"240 Highland St, San Francisco, CA 94016" -151318,Apple Airpods Headphones,1,150,02/24/19 21:36,"609 Main St, San Francisco, CA 94016" -151319,Lightning Charging Cable,1,14.95,02/22/19 13:23,"372 10th St, San Francisco, CA 94016" -151320,20in Monitor,1,109.99,02/09/19 15:27,"449 Wilson St, Dallas, TX 75001" -151321,USB-C Charging Cable,1,11.95,02/20/19 11:12,"336 11th St, Boston, MA 02215" -151322,20in Monitor,1,109.99,02/24/19 11:22,"232 Sunset St, New York City, NY 10001" -151323,Bose SoundSport Headphones,1,99.99,02/01/19 17:39,"948 13th St, Portland, OR 97035" -151324,Lightning Charging Cable,1,14.95,02/21/19 00:04,"668 Lincoln St, Seattle, WA 98101" -151325,34in Ultrawide Monitor,1,379.99,02/23/19 09:23,"217 West St, San Francisco, CA 94016" -151326,27in FHD Monitor,1,149.99,02/04/19 18:54,"837 Meadow St, Atlanta, GA 30301" -151327,34in Ultrawide Monitor,1,379.99,02/09/19 16:20,"214 4th St, Austin, TX 73301" -151328,27in 4K Gaming Monitor,1,389.99,02/23/19 23:29,"454 Forest St, Seattle, WA 98101" -151329,USB-C Charging Cable,1,11.95,02/10/19 11:34,"314 Elm St, San Francisco, CA 94016" -151330,USB-C Charging Cable,1,11.95,02/21/19 08:17,"648 Chestnut St, Austin, TX 73301" -151331,AAA Batteries (4-pack),1,2.99,02/10/19 11:13,"668 Pine St, Los Angeles, CA 90001" -151332,27in 4K Gaming Monitor,1,389.99,02/20/19 14:11,"230 Willow St, Austin, TX 73301" -151333,Apple Airpods Headphones,1,150,02/20/19 14:14,"684 Highland St, Los Angeles, CA 90001" -151334,Wired Headphones,1,11.99,02/13/19 19:34,"691 Walnut St, Austin, TX 73301" -151335,Wired Headphones,1,11.99,02/11/19 22:25,"260 Pine St, Los Angeles, CA 90001" -151336,Bose SoundSport Headphones,1,99.99,02/08/19 08:07,"860 Highland St, New York City, NY 10001" -151337,Lightning Charging Cable,1,14.95,02/19/19 12:33,"859 Lake St, Los Angeles, CA 90001" -151338,ThinkPad Laptop,1,999.99,02/22/19 09:50,"318 Sunset St, Seattle, WA 98101" -151339,USB-C Charging Cable,1,11.95,02/01/19 21:17,"87 Washington St, New York City, NY 10001" -151340,Wired Headphones,1,11.99,02/07/19 21:58,"226 Washington St, Los Angeles, CA 90001" -151341,Lightning Charging Cable,1,14.95,02/09/19 15:20,"97 4th St, New York City, NY 10001" -151342,Apple Airpods Headphones,1,150,02/23/19 09:28,"625 Madison St, Los Angeles, CA 90001" -151343,27in 4K Gaming Monitor,1,389.99,02/28/19 10:39,"938 Walnut St, San Francisco, CA 94016" -151344,Macbook Pro Laptop,1,1700,02/27/19 12:29,"512 Adams St, Seattle, WA 98101" -151345,Macbook Pro Laptop,1,1700,02/23/19 16:21,"958 8th St, Austin, TX 73301" -151346,27in FHD Monitor,1,149.99,02/04/19 13:07,"430 Ridge St, Boston, MA 02215" -151347,Lightning Charging Cable,2,14.95,02/28/19 06:44,"367 Spruce St, Boston, MA 02215" -151348,27in FHD Monitor,1,149.99,02/14/19 21:49,"761 Cedar St, Los Angeles, CA 90001" -151349,Wired Headphones,1,11.99,02/04/19 10:09,"829 West St, Austin, TX 73301" -151350,Apple Airpods Headphones,1,150,02/02/19 22:03,"427 7th St, Seattle, WA 98101" -151351,USB-C Charging Cable,1,11.95,02/07/19 12:16,"1 Sunset St, New York City, NY 10001" -151352,Google Phone,1,600,02/13/19 18:23,"430 Cherry St, San Francisco, CA 94016" -151353,Wired Headphones,2,11.99,02/23/19 08:45,"429 12th St, San Francisco, CA 94016" -151354,Bose SoundSport Headphones,1,99.99,02/20/19 15:53,"13 Johnson St, Los Angeles, CA 90001" -151355,AA Batteries (4-pack),1,3.84,02/05/19 11:36,"988 Willow St, San Francisco, CA 94016" -151356,Lightning Charging Cable,1,14.95,02/12/19 00:37,"676 7th St, Los Angeles, CA 90001" -151357,AA Batteries (4-pack),1,3.84,02/04/19 21:52,"122 13th St, San Francisco, CA 94016" -151358,AA Batteries (4-pack),1,3.84,02/19/19 10:14,"334 Lincoln St, San Francisco, CA 94016" -151359,Google Phone,1,600,02/10/19 09:06,"386 Main St, New York City, NY 10001" -151360,27in FHD Monitor,1,149.99,02/02/19 23:17,"120 14th St, San Francisco, CA 94016" -151361,34in Ultrawide Monitor,1,379.99,02/14/19 14:52,"53 6th St, Boston, MA 02215" -151362,Apple Airpods Headphones,1,150,02/25/19 12:58,"692 1st St, San Francisco, CA 94016" -151363,AA Batteries (4-pack),2,3.84,02/08/19 13:48,"86 Sunset St, New York City, NY 10001" -151364,Apple Airpods Headphones,1,150,02/10/19 13:43,"52 1st St, Los Angeles, CA 90001" -151365,Wired Headphones,1,11.99,02/26/19 18:50,"108 Jackson St, San Francisco, CA 94016" -151366,ThinkPad Laptop,1,999.99,02/19/19 14:51,"144 North St, Seattle, WA 98101" -151367,ThinkPad Laptop,1,999.99,02/13/19 22:38,"557 Cherry St, Boston, MA 02215" -151368,iPhone,1,700,02/07/19 20:39,"994 Jackson St, Los Angeles, CA 90001" -151369,Apple Airpods Headphones,1,150,02/17/19 19:51,"878 Meadow St, New York City, NY 10001" -151370,ThinkPad Laptop,1,999.99,02/05/19 13:45,"353 Hickory St, New York City, NY 10001" -151371,USB-C Charging Cable,1,11.95,02/28/19 20:01,"514 14th St, New York City, NY 10001" -151372,USB-C Charging Cable,1,11.95,02/21/19 13:37,"194 South St, San Francisco, CA 94016" -151373,27in 4K Gaming Monitor,1,389.99,02/06/19 20:20,"658 River St, Los Angeles, CA 90001" -151374,AA Batteries (4-pack),1,3.84,02/18/19 09:13,"998 Dogwood St, San Francisco, CA 94016" -151375,ThinkPad Laptop,1,999.99,02/25/19 11:01,"398 Washington St, New York City, NY 10001" -151376,20in Monitor,1,109.99,02/18/19 08:43,"265 Lakeview St, Dallas, TX 75001" -151377,Wired Headphones,1,11.99,02/20/19 19:43,"35 North St, New York City, NY 10001" -151378,AA Batteries (4-pack),1,3.84,02/04/19 08:29,"160 Jefferson St, Los Angeles, CA 90001" -151379,AA Batteries (4-pack),2,3.84,02/10/19 16:29,"669 Adams St, Portland, OR 97035" -151380,Wired Headphones,1,11.99,02/18/19 01:03,"678 12th St, Los Angeles, CA 90001" -151381,20in Monitor,1,109.99,02/20/19 15:26,"122 Johnson St, Los Angeles, CA 90001" -151382,Wired Headphones,1,11.99,02/21/19 09:31,"135 Maple St, San Francisco, CA 94016" -151383,AA Batteries (4-pack),1,3.84,02/26/19 12:10,"262 Jackson St, San Francisco, CA 94016" -151384,Wired Headphones,1,11.99,02/06/19 13:38,"596 Elm St, Austin, TX 73301" -151385,Wired Headphones,2,11.99,02/01/19 21:39,"126 14th St, San Francisco, CA 94016" -151386,34in Ultrawide Monitor,1,379.99,02/18/19 15:25,"78 4th St, Seattle, WA 98101" -151387,USB-C Charging Cable,1,11.95,02/19/19 10:34,"725 North St, Seattle, WA 98101" -151388,Wired Headphones,1,11.99,02/03/19 20:09,"288 Meadow St, San Francisco, CA 94016" -151389,AA Batteries (4-pack),1,3.84,02/06/19 12:19,"483 Cherry St, Portland, OR 97035" -151390,Bose SoundSport Headphones,1,99.99,02/17/19 12:09,"211 11th St, Boston, MA 02215" -151391,34in Ultrawide Monitor,1,379.99,02/23/19 10:30,"448 12th St, Seattle, WA 98101" -151392,USB-C Charging Cable,1,11.95,02/16/19 06:47,"26 West St, New York City, NY 10001" -151393,Lightning Charging Cable,1,14.95,02/08/19 19:06,"192 Walnut St, Los Angeles, CA 90001" -151394,Lightning Charging Cable,1,14.95,02/16/19 10:25,"498 Adams St, Seattle, WA 98101" -151395,AA Batteries (4-pack),1,3.84,02/19/19 15:15,"5 Cherry St, San Francisco, CA 94016" -151396,Wired Headphones,2,11.99,02/26/19 13:11,"992 Lake St, San Francisco, CA 94016" -151397,Macbook Pro Laptop,1,1700,02/21/19 18:22,"802 Chestnut St, Atlanta, GA 30301" -151397,27in FHD Monitor,1,149.99,02/21/19 18:22,"802 Chestnut St, Atlanta, GA 30301" -151398,AAA Batteries (4-pack),1,2.99,02/26/19 23:17,"150 Center St, Boston, MA 02215" -151399,27in 4K Gaming Monitor,1,389.99,02/02/19 07:08,"978 Walnut St, San Francisco, CA 94016" -151400,27in FHD Monitor,1,149.99,02/07/19 21:08,"452 Main St, San Francisco, CA 94016" -151401,Wired Headphones,1,11.99,02/07/19 14:43,"857 West St, San Francisco, CA 94016" -151402,Lightning Charging Cable,1,14.95,02/25/19 08:50,"557 11th St, Los Angeles, CA 90001" -151403,Google Phone,1,600,02/04/19 09:48,"638 9th St, Dallas, TX 75001" -151403,USB-C Charging Cable,1,11.95,02/04/19 09:48,"638 9th St, Dallas, TX 75001" -151404,Bose SoundSport Headphones,1,99.99,02/12/19 21:45,"132 River St, Los Angeles, CA 90001" -151405,AAA Batteries (4-pack),1,2.99,02/22/19 17:15,"723 Ridge St, Portland, OR 97035" -151406,AA Batteries (4-pack),4,3.84,02/24/19 14:32,"537 Lake St, Seattle, WA 98101" -151407,AAA Batteries (4-pack),3,2.99,02/13/19 12:56,"940 Adams St, San Francisco, CA 94016" -151408,USB-C Charging Cable,1,11.95,02/12/19 23:24,"813 9th St, San Francisco, CA 94016" -151409,Bose SoundSport Headphones,1,99.99,02/25/19 08:52,"121 Walnut St, Austin, TX 73301" -151410,Wired Headphones,1,11.99,02/26/19 09:02,"79 Church St, Boston, MA 02215" -151411,Apple Airpods Headphones,1,150,02/11/19 18:29,"918 1st St, San Francisco, CA 94016" -151412,iPhone,1,700,02/16/19 10:20,"225 5th St, New York City, NY 10001" -151413,USB-C Charging Cable,1,11.95,02/04/19 11:44,"517 2nd St, Portland, OR 97035" -151414,Lightning Charging Cable,1,14.95,02/17/19 19:03,"242 13th St, New York City, NY 10001" -151414,34in Ultrawide Monitor,1,379.99,02/17/19 19:03,"242 13th St, New York City, NY 10001" -151415,Bose SoundSport Headphones,1,99.99,02/25/19 15:11,"454 12th St, New York City, NY 10001" -151416,Bose SoundSport Headphones,1,99.99,02/11/19 11:04,"329 Meadow St, Seattle, WA 98101" -151417,Wired Headphones,1,11.99,02/24/19 22:50,"571 Spruce St, San Francisco, CA 94016" -151418,AAA Batteries (4-pack),1,2.99,02/18/19 16:43,"264 Sunset St, Atlanta, GA 30301" -151419,Wired Headphones,1,11.99,02/19/19 15:42,"535 9th St, New York City, NY 10001" -151420,Bose SoundSport Headphones,1,99.99,02/06/19 00:29,"303 Sunset St, New York City, NY 10001" -151421,Apple Airpods Headphones,1,150,02/21/19 20:18,"164 8th St, Boston, MA 02215" -151422,iPhone,1,700,02/21/19 21:19,"865 4th St, San Francisco, CA 94016" -151423,27in FHD Monitor,1,149.99,02/14/19 16:54,"286 Maple St, San Francisco, CA 94016" -151424,20in Monitor,1,109.99,02/13/19 14:10,"850 Meadow St, Dallas, TX 75001" -151425,Google Phone,1,600,02/18/19 10:08,"559 Meadow St, San Francisco, CA 94016" -151426,Flatscreen TV,1,300,02/19/19 19:21,"851 River St, Los Angeles, CA 90001" -151427,Apple Airpods Headphones,1,150,02/03/19 13:42,"86 South St, Portland, OR 97035" -151428,AA Batteries (4-pack),1,3.84,02/17/19 07:18,"851 Park St, Los Angeles, CA 90001" -151429,Wired Headphones,1,11.99,02/27/19 21:15,"902 Washington St, San Francisco, CA 94016" -151430,USB-C Charging Cable,1,11.95,02/14/19 11:04,"14 2nd St, Los Angeles, CA 90001" -151431,Flatscreen TV,1,300,02/01/19 11:57,"693 11th St, San Francisco, CA 94016" -151432,AA Batteries (4-pack),2,3.84,02/15/19 19:38,"183 5th St, Boston, MA 02215" -151433,AAA Batteries (4-pack),1,2.99,02/12/19 02:35,"593 Pine St, San Francisco, CA 94016" -151434,Apple Airpods Headphones,1,150,02/21/19 12:39,"588 8th St, Seattle, WA 98101" -151435,USB-C Charging Cable,1,11.95,02/11/19 19:09,"731 Hickory St, San Francisco, CA 94016" -151436,Lightning Charging Cable,1,14.95,02/20/19 10:11,"991 Madison St, Los Angeles, CA 90001" -151436,Apple Airpods Headphones,1,150,02/20/19 10:11,"991 Madison St, Los Angeles, CA 90001" -151437,iPhone,1,700,02/03/19 14:09,"126 11th St, Boston, MA 02215" -151438,27in FHD Monitor,1,149.99,02/11/19 18:59,"417 Adams St, Dallas, TX 75001" -151439,Wired Headphones,1,11.99,02/17/19 13:20,"838 13th St, Austin, TX 73301" -151440,Lightning Charging Cable,1,14.95,02/23/19 18:22,"361 Madison St, Los Angeles, CA 90001" -151441,AA Batteries (4-pack),3,3.84,02/17/19 20:55,"699 6th St, New York City, NY 10001" -151442,27in FHD Monitor,1,149.99,02/14/19 03:30,"174 Church St, Dallas, TX 75001" -151443,AAA Batteries (4-pack),2,2.99,02/01/19 20:27,"9 Ridge St, Portland, OR 97035" -151444,Wired Headphones,2,11.99,02/25/19 14:04,"519 Cedar St, San Francisco, CA 94016" -151445,AAA Batteries (4-pack),1,2.99,02/24/19 12:46,"723 12th St, Atlanta, GA 30301" -151446,34in Ultrawide Monitor,1,379.99,02/13/19 12:28,"654 South St, Los Angeles, CA 90001" -151447,USB-C Charging Cable,1,11.95,02/07/19 09:52,"75 Lincoln St, Boston, MA 02215" -151448,Lightning Charging Cable,1,14.95,02/22/19 22:16,"161 Lake St, San Francisco, CA 94016" -151449,Bose SoundSport Headphones,1,99.99,02/10/19 10:30,"570 Spruce St, Los Angeles, CA 90001" -151450,34in Ultrawide Monitor,1,379.99,02/19/19 18:28,"390 Hickory St, San Francisco, CA 94016" -151451,Apple Airpods Headphones,1,150,02/02/19 21:21,"327 6th St, Los Angeles, CA 90001" -151452,iPhone,1,700,02/05/19 21:20,"826 River St, Atlanta, GA 30301" -151453,Lightning Charging Cable,1,14.95,02/05/19 20:21,"182 Pine St, Dallas, TX 75001" -151454,Google Phone,1,600,02/15/19 22:02,"799 13th St, Los Angeles, CA 90001" -151455,Apple Airpods Headphones,1,150,02/22/19 21:00,"155 Spruce St, Atlanta, GA 30301" -151456,AAA Batteries (4-pack),1,2.99,02/19/19 07:02,"879 Forest St, San Francisco, CA 94016" -151457,AAA Batteries (4-pack),2,2.99,02/08/19 11:30,"424 11th St, Portland, ME 04101" -151458,USB-C Charging Cable,1,11.95,02/03/19 14:46,"217 Forest St, New York City, NY 10001" -151459,Bose SoundSport Headphones,1,99.99,02/12/19 09:11,"96 West St, Seattle, WA 98101" -151460,Lightning Charging Cable,1,14.95,02/21/19 12:27,"104 Park St, Atlanta, GA 30301" -151461,Wired Headphones,2,11.99,02/10/19 20:57,"926 Lincoln St, New York City, NY 10001" -151462,AA Batteries (4-pack),3,3.84,02/13/19 20:06,"915 Johnson St, San Francisco, CA 94016" -151463,Lightning Charging Cable,1,14.95,02/27/19 12:04,"924 Wilson St, Dallas, TX 75001" -151464,AA Batteries (4-pack),1,3.84,02/11/19 14:11,"338 8th St, Los Angeles, CA 90001" -151465,20in Monitor,1,109.99,02/21/19 21:38,"288 8th St, San Francisco, CA 94016" -151466,20in Monitor,1,109.99,02/18/19 22:40,"132 Wilson St, Austin, TX 73301" -151467,Google Phone,1,600,02/17/19 13:20,"43 Highland St, Atlanta, GA 30301" -151468,Google Phone,1,600,02/13/19 11:33,"988 Washington St, San Francisco, CA 94016" -151469,Google Phone,1,600,02/16/19 13:51,"632 11th St, San Francisco, CA 94016" -151470,27in FHD Monitor,1,149.99,02/18/19 14:17,"188 14th St, Boston, MA 02215" -151471,Flatscreen TV,1,300,02/09/19 13:34,"602 13th St, Atlanta, GA 30301" -151472,Lightning Charging Cable,1,14.95,02/27/19 19:25,"968 5th St, New York City, NY 10001" -151473,AAA Batteries (4-pack),1,2.99,02/07/19 11:48,"108 Elm St, San Francisco, CA 94016" -151474,Bose SoundSport Headphones,1,99.99,02/23/19 17:55,"954 Johnson St, Dallas, TX 75001" -151475,AA Batteries (4-pack),2,3.84,02/11/19 23:13,"983 Johnson St, San Francisco, CA 94016" -151476,AAA Batteries (4-pack),1,2.99,02/18/19 12:09,"519 1st St, Los Angeles, CA 90001" -151477,Macbook Pro Laptop,1,1700,02/16/19 20:59,"190 Pine St, New York City, NY 10001" -151478,AAA Batteries (4-pack),1,2.99,02/01/19 18:18,"405 Ridge St, Boston, MA 02215" -151479,ThinkPad Laptop,1,999.99,02/06/19 13:40,"956 Meadow St, Dallas, TX 75001" -151480,34in Ultrawide Monitor,1,379.99,02/03/19 19:00,"583 Center St, Boston, MA 02215" -151481,Wired Headphones,1,11.99,02/18/19 23:29,"881 12th St, Seattle, WA 98101" -151482,34in Ultrawide Monitor,1,379.99,02/08/19 15:57,"397 Park St, Dallas, TX 75001" -151483,USB-C Charging Cable,1,11.95,02/19/19 08:47,"16 Lincoln St, Los Angeles, CA 90001" -151484,AA Batteries (4-pack),1,3.84,02/26/19 23:08,"10 West St, Portland, OR 97035" -151485,Apple Airpods Headphones,1,150,02/19/19 21:16,"921 Washington St, Los Angeles, CA 90001" -151486,Wired Headphones,1,11.99,02/04/19 08:03,"515 North St, Dallas, TX 75001" -151487,AA Batteries (4-pack),1,3.84,02/27/19 12:10,"499 Jackson St, Los Angeles, CA 90001" -151488,Apple Airpods Headphones,1,150,02/26/19 16:55,"801 Lake St, Atlanta, GA 30301" -151489,AAA Batteries (4-pack),1,2.99,02/07/19 10:53,"160 Washington St, New York City, NY 10001" -151490,27in FHD Monitor,1,149.99,02/13/19 15:10,"668 Willow St, New York City, NY 10001" -151491,Apple Airpods Headphones,1,150,02/10/19 21:20,"767 Church St, Dallas, TX 75001" -151492,USB-C Charging Cable,1,11.95,02/12/19 15:43,"484 Park St, Los Angeles, CA 90001" -151493,AA Batteries (4-pack),1,3.84,02/27/19 14:27,"273 Adams St, Portland, ME 04101" -151494,Apple Airpods Headphones,1,150,02/21/19 21:06,"758 12th St, San Francisco, CA 94016" -151495,USB-C Charging Cable,1,11.95,02/14/19 22:53,"268 Center St, San Francisco, CA 94016" -151496,Apple Airpods Headphones,1,150,02/11/19 16:56,"344 Highland St, San Francisco, CA 94016" -151497,Apple Airpods Headphones,1,150,02/15/19 17:53,"363 13th St, Dallas, TX 75001" -151498,Bose SoundSport Headphones,1,99.99,02/24/19 14:27,"201 5th St, Boston, MA 02215" -151499,Google Phone,1,600,02/27/19 17:01,"645 Lincoln St, San Francisco, CA 94016" -151500,Google Phone,1,600,02/08/19 12:26,"693 North St, San Francisco, CA 94016" -151501,AAA Batteries (4-pack),1,2.99,02/04/19 18:20,"853 Lakeview St, San Francisco, CA 94016" -151502,34in Ultrawide Monitor,1,379.99,02/20/19 23:25,"216 12th St, Los Angeles, CA 90001" -151503,Wired Headphones,1,11.99,02/01/19 13:06,"542 14th St, San Francisco, CA 94016" -151504,AAA Batteries (4-pack),1,2.99,02/13/19 06:44,"916 7th St, New York City, NY 10001" -151505,Macbook Pro Laptop,1,1700,02/22/19 12:48,"923 Maple St, Atlanta, GA 30301" -151506,27in FHD Monitor,1,149.99,02/12/19 11:48,"386 Meadow St, Boston, MA 02215" -151507,AAA Batteries (4-pack),4,2.99,02/16/19 19:23,"843 Hill St, Los Angeles, CA 90001" -151508,AA Batteries (4-pack),1,3.84,02/17/19 11:22,"453 Lakeview St, Seattle, WA 98101" -151509,Apple Airpods Headphones,1,150,02/25/19 21:48,"512 2nd St, San Francisco, CA 94016" -151510,Bose SoundSport Headphones,1,99.99,02/13/19 13:13,"369 14th St, San Francisco, CA 94016" -151511,Lightning Charging Cable,1,14.95,02/02/19 22:13,"849 Chestnut St, Dallas, TX 75001" -151512,iPhone,1,700,02/06/19 10:23,"279 Sunset St, San Francisco, CA 94016" -151513,Wired Headphones,1,11.99,02/13/19 19:07,"458 Walnut St, Dallas, TX 75001" -151514,Wired Headphones,1,11.99,02/02/19 13:02,"814 Madison St, San Francisco, CA 94016" -151515,Apple Airpods Headphones,1,150,02/23/19 19:27,"467 9th St, Dallas, TX 75001" -151516,iPhone,1,700,02/03/19 07:43,"351 13th St, Los Angeles, CA 90001" -151517,Apple Airpods Headphones,1,150,02/05/19 09:44,"154 Walnut St, Los Angeles, CA 90001" -151518,Lightning Charging Cable,1,14.95,02/01/19 13:12,"254 Highland St, Dallas, TX 75001" -151519,AA Batteries (4-pack),1,3.84,02/21/19 19:54,"731 Hickory St, San Francisco, CA 94016" -151520,USB-C Charging Cable,1,11.95,02/06/19 08:34,"507 Cherry St, Boston, MA 02215" -151521,Lightning Charging Cable,1,14.95,02/26/19 17:11,"667 Cherry St, Dallas, TX 75001" -151522,AAA Batteries (4-pack),1,2.99,02/13/19 14:53,"736 Lincoln St, San Francisco, CA 94016" -151523,AAA Batteries (4-pack),1,2.99,02/26/19 15:28,"444 Hill St, Atlanta, GA 30301" -151524,34in Ultrawide Monitor,1,379.99,02/21/19 15:28,"688 South St, Los Angeles, CA 90001" -151525,34in Ultrawide Monitor,1,379.99,02/10/19 16:26,"964 Ridge St, New York City, NY 10001" -151526,34in Ultrawide Monitor,1,379.99,02/09/19 08:20,"17 Dogwood St, Atlanta, GA 30301" -151527,Wired Headphones,1,11.99,02/26/19 16:23,"988 2nd St, Los Angeles, CA 90001" -151528,AAA Batteries (4-pack),1,2.99,02/11/19 16:05,"813 8th St, Austin, TX 73301" -151529,Lightning Charging Cable,1,14.95,02/21/19 21:51,"672 West St, Seattle, WA 98101" -151530,Lightning Charging Cable,1,14.95,02/17/19 13:15,"453 Hickory St, Atlanta, GA 30301" -151531,Apple Airpods Headphones,1,150,02/08/19 18:56,"40 Center St, Atlanta, GA 30301" -151532,USB-C Charging Cable,1,11.95,02/22/19 10:58,"147 Highland St, Seattle, WA 98101" -151533,Lightning Charging Cable,2,14.95,02/23/19 17:04,"274 Chestnut St, Los Angeles, CA 90001" -151534,Lightning Charging Cable,1,14.95,02/03/19 12:49,"303 Spruce St, San Francisco, CA 94016" -151535,AAA Batteries (4-pack),1,2.99,02/09/19 23:20,"349 Meadow St, San Francisco, CA 94016" -151536,Flatscreen TV,1,300,02/22/19 10:11,"222 Lincoln St, Boston, MA 02215" -151537,USB-C Charging Cable,1,11.95,02/19/19 16:33,"325 Maple St, San Francisco, CA 94016" -151538,AA Batteries (4-pack),1,3.84,02/28/19 13:20,"434 Church St, Dallas, TX 75001" -151539,USB-C Charging Cable,1,11.95,02/06/19 13:22,"165 Washington St, Dallas, TX 75001" -151540,Lightning Charging Cable,1,14.95,02/16/19 09:57,"659 Lincoln St, San Francisco, CA 94016" -151541,AA Batteries (4-pack),2,3.84,02/06/19 22:02,"917 Ridge St, San Francisco, CA 94016" -151542,USB-C Charging Cable,1,11.95,02/09/19 21:08,"852 Walnut St, New York City, NY 10001" -151543,Apple Airpods Headphones,1,150,02/16/19 13:58,"408 Sunset St, Seattle, WA 98101" -151544,Lightning Charging Cable,1,14.95,02/13/19 16:37,"794 Johnson St, Los Angeles, CA 90001" -151545,Lightning Charging Cable,1,14.95,02/09/19 16:10,"620 Madison St, Dallas, TX 75001" -151546,USB-C Charging Cable,2,11.95,02/26/19 22:20,"767 Elm St, Los Angeles, CA 90001" -151547,Lightning Charging Cable,1,14.95,02/23/19 21:25,"358 Jackson St, San Francisco, CA 94016" -151548,20in Monitor,1,109.99,02/12/19 13:57,"990 Willow St, Seattle, WA 98101" -151549,27in 4K Gaming Monitor,1,389.99,02/16/19 16:40,"364 1st St, San Francisco, CA 94016" -151550,Wired Headphones,1,11.99,02/17/19 21:12,"807 North St, New York City, NY 10001" -151551,iPhone,1,700,02/17/19 10:11,"318 River St, New York City, NY 10001" -151552,ThinkPad Laptop,1,999.99,02/21/19 14:52,"808 Dogwood St, Atlanta, GA 30301" -151553,AA Batteries (4-pack),2,3.84,02/11/19 14:02,"938 2nd St, San Francisco, CA 94016" -151554,Lightning Charging Cable,1,14.95,02/03/19 22:56,"476 7th St, San Francisco, CA 94016" -151555,Macbook Pro Laptop,1,1700,02/05/19 00:50,"323 4th St, New York City, NY 10001" -151556,iPhone,1,700,02/07/19 10:15,"240 Lake St, Portland, OR 97035" -151557,Lightning Charging Cable,1,14.95,02/11/19 12:45,"296 Lincoln St, San Francisco, CA 94016" -151558,Google Phone,1,600,02/11/19 00:17,"789 Walnut St, Boston, MA 02215" -151559,Lightning Charging Cable,1,14.95,02/16/19 00:50,"387 Lake St, Dallas, TX 75001" -151560,AAA Batteries (4-pack),1,2.99,02/21/19 15:26,"119 Cedar St, Portland, OR 97035" -151561,Apple Airpods Headphones,1,150,02/28/19 22:33,"443 1st St, Boston, MA 02215" -151562,20in Monitor,1,109.99,02/28/19 15:29,"576 6th St, Seattle, WA 98101" -151563,AA Batteries (4-pack),2,3.84,02/19/19 12:34,"635 9th St, Portland, OR 97035" -151564,AAA Batteries (4-pack),1,2.99,02/13/19 22:58,"879 Main St, San Francisco, CA 94016" -151565,AAA Batteries (4-pack),1,2.99,02/09/19 21:16,"843 1st St, San Francisco, CA 94016" -151566,Lightning Charging Cable,1,14.95,02/14/19 12:27,"323 Forest St, Austin, TX 73301" -151567,AA Batteries (4-pack),1,3.84,02/21/19 13:19,"110 Cherry St, Atlanta, GA 30301" -151568,Google Phone,2,600,02/17/19 15:41,"463 Highland St, Los Angeles, CA 90001" -151568,Wired Headphones,2,11.99,02/17/19 15:41,"463 Highland St, Los Angeles, CA 90001" -151568,USB-C Charging Cable,1,11.95,02/17/19 15:41,"463 Highland St, Los Angeles, CA 90001" -151569,AAA Batteries (4-pack),1,2.99,02/25/19 10:15,"380 Maple St, San Francisco, CA 94016" -151570,Wired Headphones,1,11.99,02/07/19 06:49,"966 Ridge St, Seattle, WA 98101" -151571,20in Monitor,1,109.99,02/26/19 21:12,"322 Wilson St, Portland, OR 97035" -151572,AAA Batteries (4-pack),1,2.99,02/10/19 11:17,"465 Walnut St, Boston, MA 02215" -151573,Lightning Charging Cable,1,14.95,02/01/19 21:08,"807 South St, San Francisco, CA 94016" -151574,AA Batteries (4-pack),1,3.84,02/02/19 16:24,"471 Dogwood St, New York City, NY 10001" -151575,Wired Headphones,1,11.99,02/18/19 09:27,"819 Pine St, Dallas, TX 75001" -151576,AA Batteries (4-pack),1,3.84,02/27/19 09:19,"578 Main St, San Francisco, CA 94016" -151577,LG Washing Machine,1,600.0,02/27/19 12:23,"731 Jackson St, Dallas, TX 75001" -151578,AA Batteries (4-pack),1,3.84,02/28/19 10:30,"523 Jefferson St, San Francisco, CA 94016" -151579,AA Batteries (4-pack),1,3.84,02/09/19 14:19,"752 South St, Boston, MA 02215" -151580,Wired Headphones,1,11.99,02/05/19 03:46,"932 10th St, Los Angeles, CA 90001" -151581,AAA Batteries (4-pack),2,2.99,02/20/19 01:10,"218 Dogwood St, Dallas, TX 75001" -151582,AA Batteries (4-pack),1,3.84,02/26/19 20:23,"348 Highland St, San Francisco, CA 94016" -151583,Macbook Pro Laptop,1,1700,02/09/19 22:50,"510 Maple St, San Francisco, CA 94016" -151584,Macbook Pro Laptop,1,1700,02/28/19 17:21,"254 5th St, Austin, TX 73301" -151585,AA Batteries (4-pack),1,3.84,02/07/19 18:23,"660 Washington St, New York City, NY 10001" -151586,Macbook Pro Laptop,1,1700,02/26/19 19:45,"10 13th St, San Francisco, CA 94016" -151587,AAA Batteries (4-pack),2,2.99,02/11/19 20:40,"290 Hickory St, New York City, NY 10001" -151588,iPhone,1,700,02/21/19 20:07,"425 1st St, Boston, MA 02215" -151589,USB-C Charging Cable,1,11.95,02/27/19 14:16,"276 Elm St, San Francisco, CA 94016" -151590,AA Batteries (4-pack),1,3.84,02/14/19 17:57,"675 Cherry St, Los Angeles, CA 90001" -151591,Lightning Charging Cable,1,14.95,02/14/19 09:10,"209 Cherry St, Portland, ME 04101" -151592,Lightning Charging Cable,2,14.95,02/20/19 16:45,"13 11th St, Atlanta, GA 30301" -151593,Google Phone,1,600,02/20/19 09:38,"99 Park St, Los Angeles, CA 90001" -151594,20in Monitor,1,109.99,02/02/19 22:07,"612 Meadow St, Portland, OR 97035" -151595,Vareebadd Phone,1,400,02/26/19 12:50,"384 North St, Seattle, WA 98101" -151596,34in Ultrawide Monitor,1,379.99,02/27/19 19:44,"683 Meadow St, Boston, MA 02215" -151597,Macbook Pro Laptop,1,1700,02/19/19 19:40,"530 Dogwood St, Boston, MA 02215" -151598,AA Batteries (4-pack),1,3.84,02/04/19 13:18,"908 West St, New York City, NY 10001" -151599,ThinkPad Laptop,1,999.99,02/15/19 22:12,"29 9th St, Dallas, TX 75001" -151600,AA Batteries (4-pack),1,3.84,02/07/19 11:21,"729 Maple St, Dallas, TX 75001" -151601,Flatscreen TV,1,300,02/24/19 15:38,"464 Cherry St, Atlanta, GA 30301" -151602,Macbook Pro Laptop,1,1700,02/04/19 17:48,"592 4th St, Seattle, WA 98101" -151603,27in FHD Monitor,1,149.99,02/23/19 21:27,"106 Jackson St, Los Angeles, CA 90001" -151604,Lightning Charging Cable,1,14.95,02/14/19 17:14,"425 Washington St, San Francisco, CA 94016" -151605,iPhone,1,700,02/01/19 19:19,"500 Adams St, San Francisco, CA 94016" -151606,Macbook Pro Laptop,1,1700,02/22/19 00:18,"856 13th St, Dallas, TX 75001" -151607,Google Phone,1,600,02/02/19 18:48,"136 14th St, San Francisco, CA 94016" -151608,ThinkPad Laptop,1,999.99,02/18/19 16:38,"776 Meadow St, Dallas, TX 75001" -151609,USB-C Charging Cable,1,11.95,02/21/19 19:56,"885 12th St, Los Angeles, CA 90001" -151610,Bose SoundSport Headphones,1,99.99,02/14/19 18:49,"504 9th St, San Francisco, CA 94016" -151611,ThinkPad Laptop,1,999.99,02/26/19 16:10,"129 1st St, Boston, MA 02215" -151612,AA Batteries (4-pack),1,3.84,02/13/19 19:35,"820 River St, Austin, TX 73301" -151613,AA Batteries (4-pack),1,3.84,02/13/19 20:28,"413 Jefferson St, Portland, OR 97035" -151614,USB-C Charging Cable,1,11.95,02/26/19 19:56,"907 Highland St, Dallas, TX 75001" -151615,Apple Airpods Headphones,1,150,02/26/19 09:22,"721 Main St, San Francisco, CA 94016" -151616,USB-C Charging Cable,1,11.95,02/25/19 19:29,"666 Meadow St, Boston, MA 02215" -151616,USB-C Charging Cable,1,11.95,02/25/19 19:29,"666 Meadow St, Boston, MA 02215" -151617,iPhone,1,700,02/12/19 12:02,"285 Meadow St, Portland, ME 04101" -151618,Lightning Charging Cable,1,14.95,02/27/19 10:44,"278 6th St, Boston, MA 02215" -151619,AAA Batteries (4-pack),1,2.99,02/19/19 13:39,"25 12th St, Boston, MA 02215" -151620,27in 4K Gaming Monitor,1,389.99,02/24/19 00:50,"665 11th St, San Francisco, CA 94016" -151621,USB-C Charging Cable,1,11.95,02/11/19 15:36,"654 Main St, San Francisco, CA 94016" -151622,USB-C Charging Cable,1,11.95,02/25/19 19:27,"409 Jackson St, Atlanta, GA 30301" -151623,Wired Headphones,1,11.99,02/07/19 22:31,"494 Pine St, Seattle, WA 98101" -151624,Wired Headphones,1,11.99,02/12/19 00:13,"378 Hickory St, Seattle, WA 98101" -151625,Lightning Charging Cable,1,14.95,02/27/19 12:47,"118 Hickory St, Boston, MA 02215" -151626,AAA Batteries (4-pack),2,2.99,02/05/19 19:40,"245 Center St, Portland, OR 97035" -151627,USB-C Charging Cable,2,11.95,02/09/19 20:00,"907 Dogwood St, Seattle, WA 98101" -151628,AA Batteries (4-pack),1,3.84,02/28/19 12:41,"347 12th St, Los Angeles, CA 90001" -151629,Macbook Pro Laptop,1,1700,02/26/19 17:12,"613 West St, Los Angeles, CA 90001" -151630,Vareebadd Phone,1,400,02/23/19 09:29,"695 Maple St, Dallas, TX 75001" -151631,27in FHD Monitor,1,149.99,02/23/19 21:02,"552 Meadow St, Atlanta, GA 30301" -151632,Macbook Pro Laptop,1,1700,02/14/19 09:13,"703 7th St, New York City, NY 10001" -151633,Apple Airpods Headphones,1,150,02/24/19 11:41,"158 4th St, Austin, TX 73301" -151634,Macbook Pro Laptop,1,1700,02/12/19 19:58,"798 6th St, San Francisco, CA 94016" -151635,Flatscreen TV,1,300,02/24/19 09:13,"793 Hill St, Atlanta, GA 30301" -151636,AAA Batteries (4-pack),1,2.99,02/14/19 16:06,"360 West St, Dallas, TX 75001" -151637,AA Batteries (4-pack),1,3.84,02/17/19 01:17,"761 Johnson St, New York City, NY 10001" -151638,27in 4K Gaming Monitor,1,389.99,02/07/19 14:28,"912 Sunset St, San Francisco, CA 94016" -151639,iPhone,1,700,02/24/19 16:22,"170 Park St, Boston, MA 02215" -151639,Lightning Charging Cable,1,14.95,02/24/19 16:22,"170 Park St, Boston, MA 02215" -151640,Google Phone,1,600,02/21/19 03:43,"16 9th St, Los Angeles, CA 90001" -151641,Lightning Charging Cable,1,14.95,02/23/19 11:22,"409 Elm St, Dallas, TX 75001" -151642,AAA Batteries (4-pack),2,2.99,02/10/19 15:52,"965 10th St, San Francisco, CA 94016" -151643,iPhone,1,700,02/08/19 15:26,"795 Forest St, Atlanta, GA 30301" -151644,27in 4K Gaming Monitor,1,389.99,02/09/19 22:43,"79 Lake St, San Francisco, CA 94016" -151645,Wired Headphones,1,11.99,02/20/19 20:38,"836 River St, Los Angeles, CA 90001" -151646,USB-C Charging Cable,1,11.95,02/18/19 13:46,"425 Lake St, Dallas, TX 75001" -151647,20in Monitor,1,109.99,02/08/19 00:34,"743 Main St, Los Angeles, CA 90001" -151648,Apple Airpods Headphones,1,150,02/24/19 19:16,"773 Jefferson St, Portland, ME 04101" -151649,AA Batteries (4-pack),1,3.84,02/15/19 20:04,"977 Chestnut St, Dallas, TX 75001" -151650,USB-C Charging Cable,1,11.95,02/18/19 09:27,"604 Park St, Austin, TX 73301" -151651,iPhone,1,700,02/09/19 13:17,"147 Jackson St, Portland, OR 97035" -151652,Apple Airpods Headphones,1,150,02/02/19 09:52,"800 6th St, Los Angeles, CA 90001" -151653,USB-C Charging Cable,1,11.95,02/18/19 11:42,"248 Lincoln St, Seattle, WA 98101" -151654,AAA Batteries (4-pack),1,2.99,02/04/19 14:27,"446 Sunset St, New York City, NY 10001" -151655,Lightning Charging Cable,1,14.95,02/18/19 14:34,"924 Maple St, Atlanta, GA 30301" -151656,Google Phone,1,600,02/02/19 20:58,"820 Walnut St, Los Angeles, CA 90001" -151657,34in Ultrawide Monitor,1,379.99,02/10/19 09:36,"431 Johnson St, Dallas, TX 75001" -151658,34in Ultrawide Monitor,2,379.99,02/22/19 09:22,"473 Walnut St, Boston, MA 02215" -151659,Wired Headphones,2,11.99,02/27/19 12:43,"540 Cedar St, New York City, NY 10001" -151660,AAA Batteries (4-pack),1,2.99,02/09/19 12:50,"614 Washington St, New York City, NY 10001" -151661,AA Batteries (4-pack),2,3.84,02/24/19 17:36,"209 Adams St, San Francisco, CA 94016" -151662,Lightning Charging Cable,1,14.95,02/24/19 20:20,"433 Willow St, Seattle, WA 98101" -151663,Lightning Charging Cable,1,14.95,02/24/19 18:22,"510 Pine St, San Francisco, CA 94016" -151664,Macbook Pro Laptop,1,1700,02/09/19 23:37,"651 Main St, San Francisco, CA 94016" -151665,LG Washing Machine,1,600.0,02/10/19 09:04,"240 13th St, Portland, OR 97035" -151666,Bose SoundSport Headphones,1,99.99,02/08/19 20:31,"203 1st St, Dallas, TX 75001" -151667,Apple Airpods Headphones,1,150,02/02/19 07:48,"321 7th St, Austin, TX 73301" -151667,Bose SoundSport Headphones,1,99.99,02/02/19 07:48,"321 7th St, Austin, TX 73301" -151668,Apple Airpods Headphones,1,150,02/02/19 14:50,"823 Johnson St, Los Angeles, CA 90001" -151669,Lightning Charging Cable,1,14.95,02/12/19 11:50,"135 Lake St, Dallas, TX 75001" -151670,Apple Airpods Headphones,1,150,02/10/19 20:28,"156 5th St, San Francisco, CA 94016" -151671,USB-C Charging Cable,1,11.95,02/24/19 22:32,"398 Dogwood St, New York City, NY 10001" -151672,Flatscreen TV,1,300,02/03/19 22:35,"71 Madison St, New York City, NY 10001" -151673,Wired Headphones,1,11.99,02/10/19 21:52,"504 Center St, Dallas, TX 75001" -151673,Wired Headphones,1,11.99,02/10/19 21:52,"504 Center St, Dallas, TX 75001" -151674,AAA Batteries (4-pack),7,2.99,02/08/19 01:02,"273 Main St, Austin, TX 73301" -151675,Google Phone,1,600,02/19/19 19:52,"493 4th St, Los Angeles, CA 90001" -151675,USB-C Charging Cable,1,11.95,02/19/19 19:52,"493 4th St, Los Angeles, CA 90001" -151676,27in FHD Monitor,1,149.99,02/16/19 10:11,"176 Park St, San Francisco, CA 94016" -151677,USB-C Charging Cable,1,11.95,02/07/19 16:19,"627 7th St, Los Angeles, CA 90001" -151678,AAA Batteries (4-pack),1,2.99,02/28/19 12:49,"488 Willow St, Atlanta, GA 30301" -151679,Apple Airpods Headphones,1,150,02/21/19 10:49,"6 Willow St, Dallas, TX 75001" -151680,20in Monitor,1,109.99,02/08/19 17:45,"183 1st St, Atlanta, GA 30301" -151681,Bose SoundSport Headphones,1,99.99,02/27/19 01:05,"572 13th St, Boston, MA 02215" -151682,AAA Batteries (4-pack),1,2.99,02/21/19 16:10,"707 Spruce St, San Francisco, CA 94016" -151683,Lightning Charging Cable,1,14.95,02/21/19 12:20,"217 Hill St, Los Angeles, CA 90001" -151684,Flatscreen TV,1,300,02/22/19 21:58,"112 Ridge St, Los Angeles, CA 90001" -151685,27in FHD Monitor,1,149.99,02/15/19 17:20,"652 Elm St, San Francisco, CA 94016" -151686,AA Batteries (4-pack),2,3.84,02/03/19 14:49,"536 Elm St, San Francisco, CA 94016" -151687,AAA Batteries (4-pack),1,2.99,02/24/19 21:50,"841 Center St, Los Angeles, CA 90001" -151688,AA Batteries (4-pack),2,3.84,02/02/19 08:38,"992 Jackson St, San Francisco, CA 94016" -151689,AA Batteries (4-pack),1,3.84,02/23/19 13:12,"421 Madison St, Los Angeles, CA 90001" -151690,Macbook Pro Laptop,1,1700,02/03/19 16:19,"723 Spruce St, Atlanta, GA 30301" -151690,Bose SoundSport Headphones,1,99.99,02/03/19 16:19,"723 Spruce St, Atlanta, GA 30301" -151691,iPhone,1,700,02/26/19 15:26,"275 Washington St, Los Angeles, CA 90001" -151692,AAA Batteries (4-pack),3,2.99,02/27/19 16:35,"57 4th St, San Francisco, CA 94016" -151693,AAA Batteries (4-pack),1,2.99,02/13/19 08:41,"241 Walnut St, San Francisco, CA 94016" -151694,Lightning Charging Cable,1,14.95,02/10/19 10:23,"578 Hickory St, Boston, MA 02215" -151695,AAA Batteries (4-pack),1,2.99,02/27/19 07:34,"16 11th St, Los Angeles, CA 90001" -151696,AAA Batteries (4-pack),2,2.99,02/20/19 22:48,"999 Cherry St, San Francisco, CA 94016" -151697,Wired Headphones,1,11.99,02/09/19 16:53,"460 Hickory St, Dallas, TX 75001" -151698,AAA Batteries (4-pack),1,2.99,02/10/19 12:56,"991 Dogwood St, Los Angeles, CA 90001" -151699,Lightning Charging Cable,1,14.95,02/15/19 10:34,"402 7th St, San Francisco, CA 94016" -151700,Wired Headphones,1,11.99,02/15/19 01:20,"401 Johnson St, Boston, MA 02215" -151700,USB-C Charging Cable,1,11.95,02/15/19 01:20,"401 Johnson St, Boston, MA 02215" -151701,AA Batteries (4-pack),1,3.84,02/19/19 20:51,"116 Chestnut St, Boston, MA 02215" -151702,USB-C Charging Cable,1,11.95,02/15/19 08:15,"803 Meadow St, Dallas, TX 75001" -151703,Apple Airpods Headphones,1,150,02/19/19 22:04,"532 Meadow St, Boston, MA 02215" -151704,27in 4K Gaming Monitor,1,389.99,02/07/19 20:16,"308 9th St, Seattle, WA 98101" -151705,ThinkPad Laptop,1,999.99,02/13/19 18:39,"992 North St, San Francisco, CA 94016" -151706,USB-C Charging Cable,1,11.95,02/18/19 20:58,"775 1st St, San Francisco, CA 94016" -151707,Wired Headphones,1,11.99,02/14/19 01:43,"430 Lakeview St, San Francisco, CA 94016" -151708,USB-C Charging Cable,1,11.95,02/11/19 10:59,"698 6th St, Portland, OR 97035" -151709,Bose SoundSport Headphones,1,99.99,02/07/19 20:00,"970 Cherry St, San Francisco, CA 94016" -151710,AA Batteries (4-pack),2,3.84,02/17/19 22:59,"349 Wilson St, San Francisco, CA 94016" -151711,iPhone,1,700,02/04/19 20:19,"743 Maple St, Los Angeles, CA 90001" -151712,Lightning Charging Cable,1,14.95,02/09/19 01:00,"6 Forest St, Los Angeles, CA 90001" -151712,AA Batteries (4-pack),1,3.84,02/09/19 01:00,"6 Forest St, Los Angeles, CA 90001" -151713,Wired Headphones,1,11.99,02/09/19 09:42,"120 Johnson St, Los Angeles, CA 90001" -151714,Vareebadd Phone,1,400,02/28/19 10:36,"626 Lakeview St, Boston, MA 02215" -151715,Lightning Charging Cable,1,14.95,02/14/19 12:44,"957 14th St, Atlanta, GA 30301" -151716,Bose SoundSport Headphones,1,99.99,02/26/19 18:54,"988 West St, Los Angeles, CA 90001" -151717,USB-C Charging Cable,1,11.95,02/13/19 14:33,"142 Jefferson St, San Francisco, CA 94016" -151718,Macbook Pro Laptop,1,1700,02/13/19 22:01,"360 Forest St, New York City, NY 10001" -151719,USB-C Charging Cable,1,11.95,02/23/19 00:31,"464 12th St, Portland, OR 97035" -151720,USB-C Charging Cable,1,11.95,02/02/19 17:36,"921 2nd St, Atlanta, GA 30301" -151721,USB-C Charging Cable,1,11.95,02/10/19 11:08,"37 Maple St, Austin, TX 73301" -151722,USB-C Charging Cable,1,11.95,02/22/19 14:23,"903 5th St, Los Angeles, CA 90001" -151723,27in 4K Gaming Monitor,1,389.99,02/08/19 08:33,"938 Forest St, Portland, ME 04101" -151724,Apple Airpods Headphones,1,150,02/04/19 23:51,"385 Church St, San Francisco, CA 94016" -151725,Vareebadd Phone,1,400,02/04/19 13:42,"802 Maple St, Seattle, WA 98101" -151726,AAA Batteries (4-pack),1,2.99,02/19/19 09:08,"13 Hill St, Atlanta, GA 30301" -151727,iPhone,1,700,02/27/19 18:02,"264 Cherry St, Boston, MA 02215" -151728,Apple Airpods Headphones,1,150,02/27/19 00:14,"260 4th St, Boston, MA 02215" -151729,Macbook Pro Laptop,1,1700,02/23/19 19:32,"669 12th St, Los Angeles, CA 90001" -151730,Lightning Charging Cable,1,14.95,02/05/19 08:34,"683 Cherry St, San Francisco, CA 94016" -151731,USB-C Charging Cable,1,11.95,02/13/19 10:30,"913 Hill St, Portland, OR 97035" -151732,34in Ultrawide Monitor,1,379.99,02/17/19 19:24,"814 Meadow St, San Francisco, CA 94016" -151733,Lightning Charging Cable,2,14.95,02/23/19 09:54,"521 Walnut St, New York City, NY 10001" -151734,Wired Headphones,1,11.99,02/28/19 10:19,"49 Cherry St, Dallas, TX 75001" -151734,iPhone,1,700,02/28/19 10:19,"49 Cherry St, Dallas, TX 75001" -151735,Lightning Charging Cable,1,14.95,02/01/19 18:16,"415 North St, New York City, NY 10001" -151736,Macbook Pro Laptop,1,1700,02/22/19 14:58,"692 Johnson St, San Francisco, CA 94016" -151737,27in FHD Monitor,1,149.99,02/20/19 07:34,"669 Lincoln St, Boston, MA 02215" -151738,Apple Airpods Headphones,1,150,02/15/19 18:55,"692 Main St, San Francisco, CA 94016" -151739,AA Batteries (4-pack),1,3.84,02/25/19 13:14,"349 Ridge St, Los Angeles, CA 90001" -151740,Bose SoundSport Headphones,1,99.99,02/28/19 21:12,"393 Johnson St, Boston, MA 02215" -151741,AAA Batteries (4-pack),2,2.99,02/08/19 11:19,"832 Lincoln St, Atlanta, GA 30301" -151742,iPhone,1,700,02/23/19 02:44,"718 North St, New York City, NY 10001" -151743,Apple Airpods Headphones,1,150,02/05/19 17:14,"798 6th St, Seattle, WA 98101" -151744,USB-C Charging Cable,1,11.95,02/17/19 11:19,"209 Pine St, New York City, NY 10001" -151745,Lightning Charging Cable,1,14.95,02/04/19 05:41,"398 Park St, Los Angeles, CA 90001" -151746,Lightning Charging Cable,3,14.95,02/12/19 02:54,"103 13th St, Seattle, WA 98101" -151747,Lightning Charging Cable,1,14.95,02/25/19 13:56,"866 Meadow St, San Francisco, CA 94016" -151748,iPhone,1,700,02/09/19 09:17,"259 Highland St, San Francisco, CA 94016" -151748,Apple Airpods Headphones,1,150,02/09/19 09:17,"259 Highland St, San Francisco, CA 94016" -151749,Bose SoundSport Headphones,1,99.99,03/01/19 01:54,"993 Washington St, San Francisco, CA 94016" -151750,Flatscreen TV,1,300,02/16/19 12:42,"218 8th St, Atlanta, GA 30301" -151751,20in Monitor,1,109.99,02/01/19 18:39,"467 Chestnut St, Portland, OR 97035" -151752,27in 4K Gaming Monitor,1,389.99,02/06/19 12:57,"632 Elm St, San Francisco, CA 94016" -151753,Wired Headphones,1,11.99,02/17/19 16:36,"782 Park St, Los Angeles, CA 90001" -151754,AA Batteries (4-pack),4,3.84,02/22/19 21:35,"656 Church St, San Francisco, CA 94016" -151755,27in FHD Monitor,1,149.99,02/21/19 17:59,"909 Madison St, Austin, TX 73301" -151756,Wired Headphones,1,11.99,02/16/19 17:44,"706 7th St, Portland, OR 97035" -151757,Apple Airpods Headphones,1,150,02/18/19 21:47,"459 North St, San Francisco, CA 94016" -151758,Lightning Charging Cable,1,14.95,02/16/19 16:13,"592 Meadow St, San Francisco, CA 94016" -151759,iPhone,1,700,02/06/19 23:22,"602 Wilson St, Dallas, TX 75001" -151760,AAA Batteries (4-pack),1,2.99,02/17/19 11:20,"25 11th St, New York City, NY 10001" -151761,AA Batteries (4-pack),2,3.84,02/18/19 20:29,"135 Willow St, Atlanta, GA 30301" -151762,iPhone,1,700,02/18/19 00:33,"575 2nd St, Boston, MA 02215" -151763,27in FHD Monitor,1,149.99,02/04/19 11:18,"714 Pine St, San Francisco, CA 94016" -151764,Vareebadd Phone,1,400,02/02/19 19:20,"820 River St, New York City, NY 10001" -151765,AAA Batteries (4-pack),1,2.99,02/23/19 13:42,"401 Lakeview St, San Francisco, CA 94016" -151766,USB-C Charging Cable,1,11.95,02/22/19 13:24,"723 Hickory St, Atlanta, GA 30301" -151767,iPhone,1,700,02/28/19 01:03,"487 Main St, San Francisco, CA 94016" -151768,AAA Batteries (4-pack),1,2.99,02/07/19 12:38,"764 Center St, San Francisco, CA 94016" -151769,34in Ultrawide Monitor,1,379.99,02/13/19 22:03,"27 Washington St, Portland, OR 97035" -151770,34in Ultrawide Monitor,1,379.99,02/06/19 16:40,"489 2nd St, Seattle, WA 98101" -151771,Bose SoundSport Headphones,1,99.99,02/22/19 15:30,"220 Sunset St, Dallas, TX 75001" -151772,Lightning Charging Cable,1,14.95,02/19/19 11:39,"521 11th St, San Francisco, CA 94016" -151773,AAA Batteries (4-pack),2,2.99,02/04/19 07:37,"592 Lincoln St, Seattle, WA 98101" -151774,Lightning Charging Cable,1,14.95,02/12/19 22:34,"942 11th St, Portland, OR 97035" -151775,Apple Airpods Headphones,1,150,02/20/19 21:35,"618 Church St, San Francisco, CA 94016" -151776,USB-C Charging Cable,1,11.95,02/04/19 21:24,"517 Main St, New York City, NY 10001" -151776,20in Monitor,1,109.99,02/04/19 21:24,"517 Main St, New York City, NY 10001" -151777,iPhone,1,700,02/26/19 13:06,"314 Wilson St, San Francisco, CA 94016" -151778,Bose SoundSport Headphones,1,99.99,02/07/19 19:34,"16 Highland St, Boston, MA 02215" -151779,AA Batteries (4-pack),1,3.84,02/17/19 21:07,"954 Willow St, Atlanta, GA 30301" -151780,USB-C Charging Cable,1,11.95,02/25/19 10:22,"158 Washington St, Portland, ME 04101" -151781,34in Ultrawide Monitor,1,379.99,02/21/19 12:39,"202 Pine St, Boston, MA 02215" -151782,Apple Airpods Headphones,1,150,02/27/19 21:54,"808 4th St, Atlanta, GA 30301" -151783,AA Batteries (4-pack),1,3.84,02/26/19 10:03,"193 West St, San Francisco, CA 94016" -151784,Lightning Charging Cable,1,14.95,02/16/19 07:28,"83 Willow St, San Francisco, CA 94016" -151785,AAA Batteries (4-pack),3,2.99,02/25/19 14:58,"708 6th St, Los Angeles, CA 90001" -151786,Lightning Charging Cable,1,14.95,02/09/19 15:18,"257 Jackson St, Boston, MA 02215" -151787,AA Batteries (4-pack),1,3.84,02/09/19 12:14,"88 Jefferson St, San Francisco, CA 94016" -151788,AAA Batteries (4-pack),3,2.99,02/18/19 20:24,"871 2nd St, New York City, NY 10001" -151789,Flatscreen TV,1,300,02/25/19 14:30,"552 Lake St, Seattle, WA 98101" -151790,27in 4K Gaming Monitor,1,389.99,02/27/19 10:17,"272 Center St, Portland, ME 04101" -151791,AAA Batteries (4-pack),2,2.99,02/21/19 10:57,"73 10th St, Los Angeles, CA 90001" -151792,Wired Headphones,1,11.99,02/20/19 14:57,"962 4th St, San Francisco, CA 94016" -151793,ThinkPad Laptop,1,999.99,02/10/19 12:23,"28 Jackson St, Los Angeles, CA 90001" -151794,AA Batteries (4-pack),1,3.84,02/09/19 11:45,"545 14th St, New York City, NY 10001" -151795,USB-C Charging Cable,1,11.95,02/20/19 19:59,"795 Hill St, Austin, TX 73301" -151796,AAA Batteries (4-pack),1,2.99,02/25/19 18:35,"582 11th St, San Francisco, CA 94016" -151797,AAA Batteries (4-pack),3,2.99,02/21/19 22:38,"341 Lincoln St, New York City, NY 10001" -151798,AAA Batteries (4-pack),1,2.99,02/16/19 13:14,"797 4th St, Los Angeles, CA 90001" -151799,USB-C Charging Cable,2,11.95,02/13/19 11:21,"2 Lakeview St, New York City, NY 10001" -151800,USB-C Charging Cable,1,11.95,02/21/19 09:31,"675 Johnson St, San Francisco, CA 94016" -151801,Lightning Charging Cable,1,14.95,02/06/19 00:16,"238 6th St, New York City, NY 10001" -151802,27in FHD Monitor,1,149.99,02/06/19 04:35,"510 Jefferson St, San Francisco, CA 94016" -151803,AA Batteries (4-pack),3,3.84,02/03/19 21:22,"115 7th St, San Francisco, CA 94016" -151804,AAA Batteries (4-pack),2,2.99,02/07/19 23:51,"81 Elm St, Seattle, WA 98101" -151805,AAA Batteries (4-pack),1,2.99,02/03/19 21:18,"618 River St, Boston, MA 02215" -151806,USB-C Charging Cable,1,11.95,02/14/19 11:37,"278 Johnson St, New York City, NY 10001" -151807,Apple Airpods Headphones,1,150,02/07/19 03:46,"161 1st St, Portland, OR 97035" -151808,USB-C Charging Cable,1,11.95,02/20/19 15:17,"897 1st St, San Francisco, CA 94016" -151809,USB-C Charging Cable,1,11.95,02/26/19 18:00,"804 Washington St, Portland, ME 04101" -151810,AA Batteries (4-pack),1,3.84,02/24/19 16:47,"416 Lake St, Portland, OR 97035" -151811,USB-C Charging Cable,1,11.95,02/06/19 18:46,"663 6th St, San Francisco, CA 94016" -151812,Lightning Charging Cable,1,14.95,02/28/19 17:02,"189 2nd St, Dallas, TX 75001" -151813,Google Phone,1,600,02/19/19 22:36,"802 Sunset St, Dallas, TX 75001" -151814,AAA Batteries (4-pack),1,2.99,02/16/19 23:10,"833 River St, Boston, MA 02215" -151815,Lightning Charging Cable,1,14.95,02/07/19 00:44,"624 Park St, New York City, NY 10001" -151816,AA Batteries (4-pack),2,3.84,02/18/19 08:27,"809 Park St, Austin, TX 73301" -151817,USB-C Charging Cable,2,11.95,02/28/19 09:30,"780 Highland St, Portland, ME 04101" -151818,27in FHD Monitor,1,149.99,02/23/19 20:31,"72 Chestnut St, New York City, NY 10001" -151819,AA Batteries (4-pack),1,3.84,02/02/19 13:17,"421 Willow St, San Francisco, CA 94016" -151820,Apple Airpods Headphones,1,150,02/15/19 13:15,"648 Wilson St, San Francisco, CA 94016" -151821,Lightning Charging Cable,1,14.95,02/09/19 06:40,"200 Meadow St, Portland, OR 97035" -151822,AAA Batteries (4-pack),1,2.99,02/14/19 09:42,"496 Spruce St, Dallas, TX 75001" -151823,AA Batteries (4-pack),3,3.84,02/09/19 22:49,"303 Maple St, New York City, NY 10001" -151824,34in Ultrawide Monitor,1,379.99,02/13/19 13:21,"883 14th St, San Francisco, CA 94016" -151825,USB-C Charging Cable,1,11.95,02/04/19 16:47,"384 Lincoln St, San Francisco, CA 94016" -151826,27in 4K Gaming Monitor,1,389.99,02/17/19 12:11,"906 Cherry St, Portland, OR 97035" -151827,Lightning Charging Cable,1,14.95,02/17/19 23:13,"906 6th St, San Francisco, CA 94016" -151828,AA Batteries (4-pack),1,3.84,02/17/19 10:19,"138 Lincoln St, San Francisco, CA 94016" -151829,AAA Batteries (4-pack),2,2.99,02/03/19 10:09,"843 Spruce St, New York City, NY 10001" -151830,27in FHD Monitor,1,149.99,02/28/19 09:09,"124 13th St, San Francisco, CA 94016" -151831,AA Batteries (4-pack),1,3.84,02/18/19 23:09,"95 11th St, San Francisco, CA 94016" -151832,AAA Batteries (4-pack),2,2.99,02/10/19 21:58,"124 Lake St, New York City, NY 10001" -151833,Lightning Charging Cable,1,14.95,02/28/19 22:29,"452 North St, Boston, MA 02215" -151834,iPhone,1,700,02/04/19 18:17,"10 Ridge St, New York City, NY 10001" -151835,USB-C Charging Cable,1,11.95,02/21/19 20:12,"23 Jackson St, San Francisco, CA 94016" -151836,AA Batteries (4-pack),1,3.84,02/11/19 21:29,"270 Sunset St, Los Angeles, CA 90001" -151837,USB-C Charging Cable,3,11.95,02/09/19 19:02,"297 4th St, San Francisco, CA 94016" -151838,Lightning Charging Cable,1,14.95,02/17/19 10:25,"195 Lincoln St, Los Angeles, CA 90001" -151839,USB-C Charging Cable,1,11.95,02/02/19 22:19,"385 9th St, Atlanta, GA 30301" -151840,34in Ultrawide Monitor,1,379.99,02/14/19 11:29,"544 11th St, Los Angeles, CA 90001" -151841,LG Dryer,1,600.0,02/24/19 04:31,"76 South St, Seattle, WA 98101" -151842,27in 4K Gaming Monitor,1,389.99,02/21/19 11:01,"479 North St, San Francisco, CA 94016" -151843,Vareebadd Phone,1,400,02/15/19 17:56,"887 Sunset St, Atlanta, GA 30301" -151843,Bose SoundSport Headphones,1,99.99,02/15/19 17:56,"887 Sunset St, Atlanta, GA 30301" -151844,iPhone,1,700,02/18/19 16:29,"997 12th St, Los Angeles, CA 90001" -151845,Apple Airpods Headphones,1,150,02/26/19 12:58,"500 North St, New York City, NY 10001" -151846,AAA Batteries (4-pack),2,2.99,02/13/19 07:16,"224 Lincoln St, Atlanta, GA 30301" -151847,iPhone,1,700,02/20/19 15:37,"214 7th St, New York City, NY 10001" -151848,20in Monitor,1,109.99,02/14/19 14:20,"974 West St, New York City, NY 10001" -151849,Lightning Charging Cable,1,14.95,02/04/19 14:52,"838 11th St, Boston, MA 02215" -151850,Bose SoundSport Headphones,2,99.99,02/08/19 15:18,"598 Pine St, San Francisco, CA 94016" -151851,Google Phone,1,600,02/23/19 19:52,"874 9th St, Dallas, TX 75001" -151851,Bose SoundSport Headphones,1,99.99,02/23/19 19:52,"874 9th St, Dallas, TX 75001" -151852,Lightning Charging Cable,1,14.95,02/12/19 13:25,"346 Park St, Los Angeles, CA 90001" -151853,Flatscreen TV,1,300,02/27/19 05:16,"520 Hill St, Atlanta, GA 30301" -151854,Bose SoundSport Headphones,1,99.99,02/08/19 13:04,"344 Spruce St, San Francisco, CA 94016" -151855,Bose SoundSport Headphones,1,99.99,02/02/19 13:29,"947 Jefferson St, San Francisco, CA 94016" -151856,USB-C Charging Cable,1,11.95,02/06/19 12:11,"475 Jackson St, San Francisco, CA 94016" -151856,USB-C Charging Cable,1,11.95,02/06/19 12:11,"475 Jackson St, San Francisco, CA 94016" -151857,Google Phone,1,600,02/01/19 19:49,"959 Spruce St, Boston, MA 02215" -151858,Google Phone,1,600,02/01/19 22:43,"605 Wilson St, Seattle, WA 98101" -151858,USB-C Charging Cable,1,11.95,02/01/19 22:43,"605 Wilson St, Seattle, WA 98101" -151859,ThinkPad Laptop,1,999.99,02/06/19 17:39,"528 Meadow St, New York City, NY 10001" -151860,Bose SoundSport Headphones,1,99.99,02/27/19 02:13,"656 North St, Atlanta, GA 30301" -151861,Wired Headphones,1,11.99,02/03/19 14:32,"18 Johnson St, Portland, OR 97035" -151862,Bose SoundSport Headphones,1,99.99,02/28/19 11:28,"853 Walnut St, Portland, ME 04101" -151863,Flatscreen TV,1,300,02/16/19 08:20,"760 11th St, Atlanta, GA 30301" -151864,Bose SoundSport Headphones,1,99.99,02/11/19 20:07,"945 North St, New York City, NY 10001" -151865,27in FHD Monitor,1,149.99,02/25/19 19:13,"111 11th St, San Francisco, CA 94016" -151866,Macbook Pro Laptop,1,1700,02/12/19 08:18,"76 5th St, Atlanta, GA 30301" -151867,Lightning Charging Cable,1,14.95,02/03/19 23:39,"541 Willow St, Los Angeles, CA 90001" -151868,AAA Batteries (4-pack),1,2.99,02/07/19 18:31,"500 Center St, Boston, MA 02215" -151869,Apple Airpods Headphones,1,150,02/24/19 19:53,"402 Madison St, San Francisco, CA 94016" -151870,AAA Batteries (4-pack),3,2.99,02/02/19 22:48,"539 Johnson St, San Francisco, CA 94016" -151871,AA Batteries (4-pack),2,3.84,02/22/19 20:46,"836 8th St, Seattle, WA 98101" -151872,Lightning Charging Cable,1,14.95,02/02/19 19:58,"909 Maple St, New York City, NY 10001" -151873,Macbook Pro Laptop,1,1700,02/18/19 10:01,"967 Meadow St, San Francisco, CA 94016" -151874,AA Batteries (4-pack),1,3.84,02/25/19 10:21,"867 Willow St, Atlanta, GA 30301" -151875,AAA Batteries (4-pack),1,2.99,02/14/19 17:42,"545 Jackson St, Boston, MA 02215" -151876,AAA Batteries (4-pack),1,2.99,02/13/19 12:33,"491 5th St, New York City, NY 10001" -151877,AA Batteries (4-pack),1,3.84,02/18/19 13:52,"774 13th St, Portland, OR 97035" -151878,Wired Headphones,1,11.99,02/17/19 11:21,"644 Hickory St, Boston, MA 02215" -151879,Google Phone,1,600,02/07/19 01:21,"869 Cherry St, Boston, MA 02215" -151880,USB-C Charging Cable,1,11.95,02/09/19 16:22,"767 Center St, Los Angeles, CA 90001" -151881,Bose SoundSport Headphones,1,99.99,02/01/19 18:29,"676 North St, Los Angeles, CA 90001" -151882,Wired Headphones,1,11.99,02/19/19 08:56,"665 Cedar St, Seattle, WA 98101" -151883,27in 4K Gaming Monitor,1,389.99,02/09/19 20:40,"196 River St, Portland, ME 04101" -151884,Macbook Pro Laptop,1,1700,02/07/19 22:01,"975 Forest St, San Francisco, CA 94016" -151885,27in FHD Monitor,1,149.99,02/16/19 22:43,"981 Lake St, Seattle, WA 98101" -151886,Apple Airpods Headphones,1,150,02/13/19 18:59,"3 Lincoln St, Boston, MA 02215" -151887,iPhone,1,700,02/13/19 21:43,"262 River St, Dallas, TX 75001" -151888,Apple Airpods Headphones,1,150,02/18/19 01:36,"870 River St, San Francisco, CA 94016" -151889,27in 4K Gaming Monitor,1,389.99,02/05/19 18:53,"675 Walnut St, San Francisco, CA 94016" -151890,Lightning Charging Cable,1,14.95,02/10/19 14:06,"42 Spruce St, Boston, MA 02215" -151891,AAA Batteries (4-pack),2,2.99,02/08/19 19:29,"285 Pine St, San Francisco, CA 94016" -151892,27in 4K Gaming Monitor,1,389.99,02/08/19 22:34,"300 Spruce St, San Francisco, CA 94016" -151893,iPhone,1,700,02/26/19 22:30,"146 Hickory St, San Francisco, CA 94016" -151894,Wired Headphones,1,11.99,02/20/19 18:51,"261 Jefferson St, San Francisco, CA 94016" -151895,27in FHD Monitor,1,149.99,02/18/19 18:04,"41 Adams St, San Francisco, CA 94016" -151896,Apple Airpods Headphones,1,150,02/04/19 14:41,"980 Ridge St, San Francisco, CA 94016" -151897,Flatscreen TV,1,300,02/28/19 17:02,"56 Lake St, New York City, NY 10001" -151898,Wired Headphones,1,11.99,02/06/19 08:05,"811 Chestnut St, Seattle, WA 98101" -151899,USB-C Charging Cable,1,11.95,02/06/19 17:47,"867 1st St, New York City, NY 10001" -151900,34in Ultrawide Monitor,1,379.99,02/10/19 06:51,"100 Ridge St, Austin, TX 73301" -151901,Bose SoundSport Headphones,1,99.99,02/27/19 14:32,"356 Church St, Seattle, WA 98101" -151902,Google Phone,1,600,02/05/19 19:30,"937 Ridge St, Seattle, WA 98101" -151902,iPhone,1,700,02/05/19 19:30,"937 Ridge St, Seattle, WA 98101" -151903,iPhone,1,700,02/23/19 15:37,"843 South St, San Francisco, CA 94016" -151904,AAA Batteries (4-pack),1,2.99,02/25/19 14:18,"440 Willow St, San Francisco, CA 94016" -151905,Wired Headphones,1,11.99,02/13/19 18:32,"187 Church St, Portland, OR 97035" -151906,USB-C Charging Cable,1,11.95,02/22/19 16:57,"516 9th St, New York City, NY 10001" -151907,AAA Batteries (4-pack),1,2.99,02/20/19 12:54,"302 Cherry St, San Francisco, CA 94016" -151908,Flatscreen TV,1,300,02/27/19 13:04,"52 10th St, Portland, ME 04101" -151909,USB-C Charging Cable,1,11.95,02/22/19 19:46,"409 Main St, Los Angeles, CA 90001" -151910,Bose SoundSport Headphones,1,99.99,02/25/19 08:46,"54 Jackson St, New York City, NY 10001" -151911,Wired Headphones,1,11.99,02/12/19 18:39,"374 Johnson St, Austin, TX 73301" -151912,USB-C Charging Cable,1,11.95,02/22/19 18:58,"285 6th St, San Francisco, CA 94016" -151913,Wired Headphones,1,11.99,02/12/19 22:13,"333 Spruce St, San Francisco, CA 94016" -151914,AAA Batteries (4-pack),1,2.99,02/22/19 17:57,"413 North St, New York City, NY 10001" -151915,Google Phone,1,600,02/06/19 17:14,"566 Lincoln St, San Francisco, CA 94016" -151916,Wired Headphones,1,11.99,02/27/19 13:04,"195 Lincoln St, Atlanta, GA 30301" -151917,AAA Batteries (4-pack),4,2.99,02/15/19 09:56,"469 Meadow St, Seattle, WA 98101" -151918,iPhone,1,700,02/12/19 13:17,"495 Cedar St, Dallas, TX 75001" -151919,27in 4K Gaming Monitor,1,389.99,02/21/19 11:11,"670 Lakeview St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -151920,Wired Headphones,1,11.99,02/24/19 14:50,"656 Elm St, San Francisco, CA 94016" -151921,ThinkPad Laptop,1,999.99,02/06/19 15:07,"109 Jefferson St, Boston, MA 02215" -151922,Apple Airpods Headphones,1,150,02/07/19 10:29,"143 Johnson St, Los Angeles, CA 90001" -151923,Wired Headphones,1,11.99,02/14/19 13:15,"190 2nd St, San Francisco, CA 94016" -,,,,, -151924,Apple Airpods Headphones,1,150,02/05/19 13:58,"144 12th St, San Francisco, CA 94016" -151925,USB-C Charging Cable,1,11.95,02/07/19 22:51,"28 Jefferson St, Boston, MA 02215" -151926,AAA Batteries (4-pack),2,2.99,02/06/19 03:57,"486 Main St, San Francisco, CA 94016" -151927,Bose SoundSport Headphones,1,99.99,02/19/19 17:16,"791 2nd St, San Francisco, CA 94016" -151928,USB-C Charging Cable,1,11.95,02/10/19 20:28,"692 Willow St, Boston, MA 02215" -151929,Apple Airpods Headphones,1,150,02/25/19 11:21,"922 13th St, San Francisco, CA 94016" -151930,AA Batteries (4-pack),2,3.84,02/22/19 12:15,"702 Lincoln St, Los Angeles, CA 90001" -151931,Bose SoundSport Headphones,1,99.99,02/19/19 06:53,"501 Sunset St, San Francisco, CA 94016" -151932,AA Batteries (4-pack),1,3.84,02/26/19 12:07,"563 6th St, San Francisco, CA 94016" -151933,AA Batteries (4-pack),1,3.84,02/06/19 14:43,"639 Main St, San Francisco, CA 94016" -151934,AAA Batteries (4-pack),1,2.99,02/10/19 23:54,"366 Park St, Atlanta, GA 30301" -151935,Bose SoundSport Headphones,1,99.99,02/14/19 02:51,"552 Wilson St, San Francisco, CA 94016" -151936,27in FHD Monitor,1,149.99,02/23/19 12:27,"406 Lakeview St, Dallas, TX 75001" -151937,Bose SoundSport Headphones,1,99.99,02/16/19 20:22,"68 12th St, Boston, MA 02215" -151938,USB-C Charging Cable,1,11.95,02/23/19 23:41,"614 Lake St, New York City, NY 10001" -151939,Wired Headphones,1,11.99,02/26/19 18:32,"318 Johnson St, Boston, MA 02215" -151940,27in 4K Gaming Monitor,1,389.99,02/12/19 21:31,"136 Chestnut St, Seattle, WA 98101" -151941,Wired Headphones,1,11.99,02/14/19 19:27,"947 Dogwood St, New York City, NY 10001" -151942,Apple Airpods Headphones,1,150,02/03/19 07:50,"228 West St, Los Angeles, CA 90001" -151943,AAA Batteries (4-pack),1,2.99,02/07/19 14:07,"102 Lake St, Seattle, WA 98101" -151944,Bose SoundSport Headphones,1,99.99,02/16/19 12:56,"757 West St, New York City, NY 10001" -151945,Flatscreen TV,1,300,02/28/19 12:28,"400 South St, Boston, MA 02215" -151946,AAA Batteries (4-pack),1,2.99,02/16/19 06:50,"782 Madison St, Seattle, WA 98101" -151947,AAA Batteries (4-pack),1,2.99,02/01/19 19:25,"903 5th St, Portland, OR 97035" -151948,AA Batteries (4-pack),1,3.84,02/16/19 00:13,"758 11th St, Los Angeles, CA 90001" -151949,Lightning Charging Cable,1,14.95,02/05/19 17:25,"524 10th St, Dallas, TX 75001" -151950,27in 4K Gaming Monitor,1,389.99,02/17/19 19:35,"859 14th St, Austin, TX 73301" -151951,AA Batteries (4-pack),2,3.84,02/28/19 14:58,"222 Hickory St, Los Angeles, CA 90001" -,,,,, -151952,USB-C Charging Cable,1,11.95,02/28/19 21:10,"773 Hickory St, Boston, MA 02215" -151953,27in FHD Monitor,1,149.99,02/07/19 17:59,"191 Spruce St, New York City, NY 10001" -151954,ThinkPad Laptop,1,999.99,02/04/19 17:13,"284 Church St, San Francisco, CA 94016" -151955,Bose SoundSport Headphones,1,99.99,02/13/19 11:32,"65 2nd St, Boston, MA 02215" -151956,Wired Headphones,1,11.99,02/12/19 18:56,"763 Dogwood St, New York City, NY 10001" -151957,USB-C Charging Cable,1,11.95,02/19/19 12:15,"700 Cedar St, New York City, NY 10001" -151958,Google Phone,1,600,02/25/19 20:04,"37 Highland St, San Francisco, CA 94016" -151958,Wired Headphones,1,11.99,02/25/19 20:04,"37 Highland St, San Francisco, CA 94016" -151959,Google Phone,1,600,02/11/19 12:31,"126 Johnson St, San Francisco, CA 94016" -151959,USB-C Charging Cable,1,11.95,02/11/19 12:31,"126 Johnson St, San Francisco, CA 94016" -151960,Apple Airpods Headphones,1,150,02/14/19 10:32,"146 Forest St, Dallas, TX 75001" -151961,Vareebadd Phone,1,400,02/14/19 11:35,"256 6th St, Boston, MA 02215" -151961,USB-C Charging Cable,1,11.95,02/14/19 11:35,"256 6th St, Boston, MA 02215" -151961,Bose SoundSport Headphones,1,99.99,02/14/19 11:35,"256 6th St, Boston, MA 02215" -151962,AAA Batteries (4-pack),2,2.99,02/11/19 17:54,"433 Elm St, Los Angeles, CA 90001" -151963,27in FHD Monitor,1,149.99,02/17/19 17:39,"95 Pine St, Portland, OR 97035" -151964,USB-C Charging Cable,1,11.95,02/09/19 18:07,"70 Highland St, Los Angeles, CA 90001" -151965,AA Batteries (4-pack),1,3.84,02/12/19 20:02,"266 Center St, New York City, NY 10001" -151966,Lightning Charging Cable,1,14.95,02/26/19 18:35,"939 South St, Dallas, TX 75001" -151967,Macbook Pro Laptop,1,1700,02/09/19 17:33,"497 Forest St, New York City, NY 10001" -151968,Lightning Charging Cable,1,14.95,02/24/19 16:18,"526 Park St, Seattle, WA 98101" -151969,iPhone,1,700,02/22/19 19:58,"900 13th St, Los Angeles, CA 90001" -151970,34in Ultrawide Monitor,1,379.99,02/01/19 10:06,"966 Jefferson St, New York City, NY 10001" -151971,Apple Airpods Headphones,1,150,02/02/19 09:50,"383 Lincoln St, San Francisco, CA 94016" -151972,Bose SoundSport Headphones,1,99.99,02/27/19 12:40,"469 Hill St, Seattle, WA 98101" -151973,Bose SoundSport Headphones,1,99.99,02/03/19 21:25,"744 Hickory St, Atlanta, GA 30301" -151974,AA Batteries (4-pack),1,3.84,02/07/19 16:51,"297 Forest St, Portland, OR 97035" -151975,AA Batteries (4-pack),1,3.84,02/24/19 08:46,"654 12th St, New York City, NY 10001" -151976,AAA Batteries (4-pack),1,2.99,02/20/19 21:13,"750 Sunset St, Los Angeles, CA 90001" -151976,Bose SoundSport Headphones,1,99.99,02/20/19 21:13,"750 Sunset St, Los Angeles, CA 90001" -151977,AAA Batteries (4-pack),2,2.99,02/02/19 09:12,"272 Hickory St, San Francisco, CA 94016" -151978,USB-C Charging Cable,1,11.95,02/05/19 15:43,"148 Main St, San Francisco, CA 94016" -151979,AAA Batteries (4-pack),1,2.99,02/17/19 10:51,"329 Lincoln St, Los Angeles, CA 90001" -151980,AA Batteries (4-pack),2,3.84,02/11/19 21:34,"326 Washington St, Los Angeles, CA 90001" -151981,Bose SoundSport Headphones,1,99.99,02/16/19 22:45,"473 Johnson St, Atlanta, GA 30301" -151982,USB-C Charging Cable,2,11.95,02/07/19 00:08,"259 Wilson St, Los Angeles, CA 90001" -151983,27in 4K Gaming Monitor,1,389.99,02/05/19 11:16,"289 11th St, New York City, NY 10001" -151984,USB-C Charging Cable,1,11.95,02/02/19 18:44,"598 Pine St, San Francisco, CA 94016" -151985,AAA Batteries (4-pack),1,2.99,02/12/19 09:14,"802 Johnson St, San Francisco, CA 94016" -151986,27in 4K Gaming Monitor,1,389.99,02/16/19 16:01,"553 7th St, San Francisco, CA 94016" -151987,Bose SoundSport Headphones,1,99.99,02/28/19 21:46,"798 Highland St, Dallas, TX 75001" -151988,27in FHD Monitor,1,149.99,02/05/19 22:53,"833 Highland St, Atlanta, GA 30301" -151989,AA Batteries (4-pack),2,3.84,02/25/19 00:53,"55 Ridge St, San Francisco, CA 94016" -151990,Google Phone,1,600,02/14/19 16:18,"173 Lakeview St, San Francisco, CA 94016" -151991,Bose SoundSport Headphones,1,99.99,02/20/19 03:38,"545 Adams St, Portland, OR 97035" -151992,USB-C Charging Cable,2,11.95,02/26/19 23:49,"631 Johnson St, New York City, NY 10001" -151992,Apple Airpods Headphones,1,150,02/26/19 23:49,"631 Johnson St, New York City, NY 10001" -151993,27in 4K Gaming Monitor,1,389.99,02/02/19 11:35,"187 Cedar St, Boston, MA 02215" -151994,Apple Airpods Headphones,1,150,02/06/19 18:09,"267 9th St, Portland, OR 97035" -151995,Apple Airpods Headphones,1,150,02/09/19 20:53,"802 South St, New York City, NY 10001" -151996,Lightning Charging Cable,1,14.95,02/05/19 17:21,"846 4th St, Dallas, TX 75001" -151997,USB-C Charging Cable,1,11.95,02/16/19 08:37,"151 Walnut St, Atlanta, GA 30301" -151998,Lightning Charging Cable,2,14.95,02/06/19 13:10,"835 Maple St, San Francisco, CA 94016" -151999,Macbook Pro Laptop,1,1700,02/03/19 11:17,"157 Forest St, San Francisco, CA 94016" -152000,Wired Headphones,1,11.99,02/28/19 17:04,"666 Forest St, Los Angeles, CA 90001" -152001,AA Batteries (4-pack),2,3.84,02/22/19 02:09,"115 Jackson St, San Francisco, CA 94016" -152002,34in Ultrawide Monitor,1,379.99,02/14/19 12:11,"992 Adams St, Atlanta, GA 30301" -152002,AAA Batteries (4-pack),2,2.99,02/14/19 12:11,"992 Adams St, Atlanta, GA 30301" -152003,USB-C Charging Cable,1,11.95,02/25/19 21:39,"21 Madison St, New York City, NY 10001" -152004,Lightning Charging Cable,1,14.95,02/10/19 19:43,"878 Jefferson St, New York City, NY 10001" -152005,Lightning Charging Cable,1,14.95,02/02/19 20:45,"970 North St, San Francisco, CA 94016" -152006,USB-C Charging Cable,1,11.95,02/03/19 11:17,"314 Elm St, Portland, OR 97035" -152007,Bose SoundSport Headphones,1,99.99,02/18/19 15:06,"143 Washington St, Boston, MA 02215" -152008,AA Batteries (4-pack),1,3.84,02/21/19 18:29,"161 Washington St, Portland, OR 97035" -152009,Bose SoundSport Headphones,1,99.99,02/13/19 17:12,"716 Forest St, San Francisco, CA 94016" -152010,Wired Headphones,1,11.99,02/04/19 09:28,"190 Adams St, San Francisco, CA 94016" -152011,USB-C Charging Cable,1,11.95,02/09/19 11:25,"970 13th St, Austin, TX 73301" -152012,USB-C Charging Cable,1,11.95,02/13/19 18:58,"533 Lakeview St, San Francisco, CA 94016" -152013,USB-C Charging Cable,1,11.95,02/15/19 17:45,"640 6th St, Portland, OR 97035" -152014,AAA Batteries (4-pack),1,2.99,02/23/19 20:03,"510 12th St, New York City, NY 10001" -152015,Lightning Charging Cable,1,14.95,02/19/19 17:10,"393 1st St, New York City, NY 10001" -152016,ThinkPad Laptop,1,999.99,02/24/19 08:20,"233 8th St, Portland, OR 97035" -152017,AAA Batteries (4-pack),1,2.99,02/06/19 16:49,"784 Dogwood St, Dallas, TX 75001" -152018,Google Phone,1,600,02/12/19 08:56,"897 8th St, Portland, OR 97035" -152019,34in Ultrawide Monitor,1,379.99,02/15/19 08:27,"459 Sunset St, Boston, MA 02215" -152020,Wired Headphones,1,11.99,02/11/19 15:20,"604 13th St, New York City, NY 10001" -152021,34in Ultrawide Monitor,1,379.99,02/10/19 20:59,"879 Hickory St, New York City, NY 10001" -152022,USB-C Charging Cable,1,11.95,02/06/19 22:08,"359 Park St, Dallas, TX 75001" -152023,Wired Headphones,1,11.99,02/25/19 22:57,"657 West St, Atlanta, GA 30301" -152024,iPhone,1,700,02/04/19 20:40,"938 Highland St, Dallas, TX 75001" -152025,iPhone,1,700,02/27/19 12:21,"910 5th St, San Francisco, CA 94016" -152026,Wired Headphones,1,11.99,02/12/19 20:07,"106 Maple St, Portland, ME 04101" -152027,iPhone,1,700,02/27/19 23:36,"972 9th St, Portland, OR 97035" -152028,USB-C Charging Cable,1,11.95,02/17/19 10:07,"95 9th St, Atlanta, GA 30301" -152029,USB-C Charging Cable,1,11.95,02/18/19 12:14,"873 Elm St, Atlanta, GA 30301" -152030,27in FHD Monitor,1,149.99,02/01/19 13:43,"846 8th St, Dallas, TX 75001" -152031,AA Batteries (4-pack),1,3.84,02/02/19 21:36,"774 14th St, San Francisco, CA 94016" -152032,USB-C Charging Cable,1,11.95,02/23/19 10:40,"807 Chestnut St, Portland, ME 04101" -152033,Lightning Charging Cable,1,14.95,02/14/19 12:30,"653 Park St, Los Angeles, CA 90001" -152034,27in FHD Monitor,2,149.99,02/18/19 09:30,"910 Chestnut St, New York City, NY 10001" -152035,USB-C Charging Cable,1,11.95,02/27/19 18:43,"387 Maple St, Seattle, WA 98101" -152036,ThinkPad Laptop,1,999.99,03/01/19 05:56,"477 Washington St, San Francisco, CA 94016" -152037,Lightning Charging Cable,1,14.95,02/24/19 00:04,"223 South St, Dallas, TX 75001" -152038,34in Ultrawide Monitor,1,379.99,02/02/19 15:53,"642 Jackson St, Los Angeles, CA 90001" -152039,Lightning Charging Cable,1,14.95,02/02/19 18:49,"862 Dogwood St, Boston, MA 02215" -152040,USB-C Charging Cable,1,11.95,02/05/19 19:36,"750 Ridge St, San Francisco, CA 94016" -152041,ThinkPad Laptop,1,999.99,02/28/19 10:47,"59 Pine St, New York City, NY 10001" -152042,AAA Batteries (4-pack),1,2.99,02/11/19 13:26,"236 South St, New York City, NY 10001" -152043,Apple Airpods Headphones,1,150,02/12/19 12:46,"15 Adams St, Los Angeles, CA 90001" -152043,AAA Batteries (4-pack),3,2.99,02/12/19 12:46,"15 Adams St, Los Angeles, CA 90001" -152044,AAA Batteries (4-pack),1,2.99,02/12/19 08:17,"989 Madison St, Austin, TX 73301" -152045,AA Batteries (4-pack),1,3.84,02/18/19 03:03,"351 Spruce St, Boston, MA 02215" -152046,Wired Headphones,1,11.99,02/21/19 08:19,"76 Park St, Boston, MA 02215" -152047,USB-C Charging Cable,1,11.95,02/16/19 10:07,"696 Washington St, San Francisco, CA 94016" -152048,USB-C Charging Cable,1,11.95,02/23/19 13:19,"349 Dogwood St, Austin, TX 73301" -152049,USB-C Charging Cable,2,11.95,02/25/19 20:11,"668 Maple St, Portland, OR 97035" -152050,USB-C Charging Cable,1,11.95,02/20/19 23:05,"469 Park St, Dallas, TX 75001" -152051,Wired Headphones,1,11.99,02/07/19 03:28,"281 West St, Seattle, WA 98101" -152052,Lightning Charging Cable,1,14.95,02/08/19 16:53,"663 Elm St, New York City, NY 10001" -152053,iPhone,1,700,02/17/19 13:38,"16 South St, Seattle, WA 98101" -152054,Wired Headphones,1,11.99,02/02/19 13:35,"633 Forest St, Boston, MA 02215" -152055,USB-C Charging Cable,1,11.95,02/25/19 12:39,"971 Adams St, Austin, TX 73301" -152056,AA Batteries (4-pack),1,3.84,02/03/19 09:58,"539 1st St, New York City, NY 10001" -152057,Vareebadd Phone,1,400,02/22/19 16:32,"836 Spruce St, Los Angeles, CA 90001" -152058,USB-C Charging Cable,1,11.95,02/27/19 11:06,"253 Madison St, Los Angeles, CA 90001" -152059,Macbook Pro Laptop,1,1700,02/09/19 09:29,"544 Lincoln St, Austin, TX 73301" -152060,AAA Batteries (4-pack),1,2.99,02/08/19 11:59,"137 Spruce St, Boston, MA 02215" -152061,AA Batteries (4-pack),1,3.84,02/22/19 17:57,"160 Willow St, San Francisco, CA 94016" -152062,27in 4K Gaming Monitor,1,389.99,02/02/19 20:20,"660 Center St, Atlanta, GA 30301" -152063,USB-C Charging Cable,1,11.95,02/17/19 20:15,"93 Jefferson St, Dallas, TX 75001" -152064,ThinkPad Laptop,1,999.99,02/22/19 19:41,"289 Highland St, Portland, OR 97035" -152064,AAA Batteries (4-pack),4,2.99,02/22/19 19:41,"289 Highland St, Portland, OR 97035" -152065,AA Batteries (4-pack),1,3.84,02/16/19 10:14,"128 Willow St, Los Angeles, CA 90001" -152066,ThinkPad Laptop,1,999.99,02/13/19 23:07,"241 8th St, New York City, NY 10001" -152067,AA Batteries (4-pack),2,3.84,02/18/19 21:39,"860 Lakeview St, Atlanta, GA 30301" -152068,AA Batteries (4-pack),2,3.84,02/11/19 18:59,"775 Maple St, New York City, NY 10001" -152069,Bose SoundSport Headphones,1,99.99,02/04/19 02:18,"545 Hickory St, Portland, OR 97035" -152070,iPhone,1,700,02/07/19 20:46,"346 8th St, Atlanta, GA 30301" -152071,20in Monitor,1,109.99,02/11/19 22:33,"611 Meadow St, San Francisco, CA 94016" -152072,iPhone,1,700,02/19/19 16:01,"978 Willow St, Los Angeles, CA 90001" -152072,Apple Airpods Headphones,1,150,02/19/19 16:01,"978 Willow St, Los Angeles, CA 90001" -152073,AA Batteries (4-pack),1,3.84,02/28/19 20:18,"528 Main St, New York City, NY 10001" -152074,AAA Batteries (4-pack),1,2.99,02/07/19 08:36,"787 West St, Seattle, WA 98101" -152075,Lightning Charging Cable,1,14.95,02/25/19 15:50,"68 Spruce St, Boston, MA 02215" -152076,Lightning Charging Cable,1,14.95,02/03/19 11:53,"294 Highland St, New York City, NY 10001" -152077,Vareebadd Phone,1,400,02/18/19 16:14,"192 Highland St, Los Angeles, CA 90001" -152078,27in FHD Monitor,1,149.99,02/21/19 17:32,"304 Maple St, San Francisco, CA 94016" -152079,AA Batteries (4-pack),1,3.84,02/18/19 22:30,"913 Willow St, Los Angeles, CA 90001" -152080,27in 4K Gaming Monitor,1,389.99,02/11/19 13:38,"682 9th St, Portland, OR 97035" -152081,iPhone,1,700,02/18/19 20:59,"916 Dogwood St, Portland, OR 97035" -152081,Lightning Charging Cable,1,14.95,02/18/19 20:59,"916 Dogwood St, Portland, OR 97035" -152082,AAA Batteries (4-pack),1,2.99,02/27/19 19:10,"831 6th St, Atlanta, GA 30301" -152083,AA Batteries (4-pack),1,3.84,02/22/19 13:29,"559 Dogwood St, Seattle, WA 98101" -152084,Apple Airpods Headphones,1,150,02/02/19 14:28,"917 Lake St, New York City, NY 10001" -152085,Wired Headphones,1,11.99,02/20/19 02:44,"994 Spruce St, Boston, MA 02215" -152086,27in FHD Monitor,1,149.99,02/02/19 19:25,"882 River St, Los Angeles, CA 90001" -152087,Macbook Pro Laptop,1,1700,02/10/19 15:38,"542 Church St, Seattle, WA 98101" -152088,Lightning Charging Cable,1,14.95,02/13/19 13:39,"224 North St, San Francisco, CA 94016" -152089,Vareebadd Phone,1,400,02/13/19 19:15,"638 Spruce St, San Francisco, CA 94016" -152090,iPhone,1,700,02/16/19 15:35,"62 Lincoln St, San Francisco, CA 94016" -152091,Flatscreen TV,1,300,02/11/19 19:44,"338 Park St, Dallas, TX 75001" -152092,AA Batteries (4-pack),1,3.84,02/08/19 21:41,"700 Walnut St, Los Angeles, CA 90001" -152093,AAA Batteries (4-pack),1,2.99,02/02/19 20:19,"5 Johnson St, San Francisco, CA 94016" -152094,AA Batteries (4-pack),1,3.84,02/28/19 21:56,"394 2nd St, Los Angeles, CA 90001" -152095,Vareebadd Phone,1,400,02/27/19 13:29,"907 Jefferson St, New York City, NY 10001" -152096,ThinkPad Laptop,1,999.99,02/27/19 12:18,"659 Jefferson St, New York City, NY 10001" -152097,27in FHD Monitor,1,149.99,02/26/19 22:03,"923 1st St, San Francisco, CA 94016" -152098,AA Batteries (4-pack),1,3.84,02/28/19 23:45,"588 Adams St, San Francisco, CA 94016" -152099,Bose SoundSport Headphones,1,99.99,02/08/19 00:35,"837 Dogwood St, Los Angeles, CA 90001" -152100,iPhone,1,700,02/09/19 10:26,"445 Walnut St, Dallas, TX 75001" -152101,AAA Batteries (4-pack),2,2.99,02/21/19 10:28,"668 Hickory St, Atlanta, GA 30301" -152102,Apple Airpods Headphones,1,150,02/24/19 18:58,"681 6th St, San Francisco, CA 94016" -152103,Flatscreen TV,1,300,02/17/19 12:03,"1 Hill St, Boston, MA 02215" -152104,AA Batteries (4-pack),2,3.84,02/19/19 22:40,"170 Center St, New York City, NY 10001" -152105,Lightning Charging Cable,1,14.95,02/01/19 14:15,"604 Hill St, Austin, TX 73301" -152106,20in Monitor,1,109.99,02/15/19 13:00,"483 Lake St, Los Angeles, CA 90001" -152107,USB-C Charging Cable,1,11.95,02/24/19 12:25,"461 Sunset St, Seattle, WA 98101" -152108,Bose SoundSport Headphones,1,99.99,02/15/19 17:24,"702 1st St, New York City, NY 10001" -152109,Bose SoundSport Headphones,1,99.99,02/19/19 10:35,"2 Dogwood St, Atlanta, GA 30301" -152110,Bose SoundSport Headphones,1,99.99,02/25/19 17:52,"244 Lakeview St, Los Angeles, CA 90001" -152111,Wired Headphones,1,11.99,02/19/19 22:35,"950 Wilson St, Los Angeles, CA 90001" -152112,Apple Airpods Headphones,1,150,02/02/19 13:25,"779 Meadow St, San Francisco, CA 94016" -152113,Apple Airpods Headphones,1,150,02/10/19 22:07,"365 Elm St, New York City, NY 10001" -152114,USB-C Charging Cable,1,11.95,02/18/19 12:31,"378 Center St, San Francisco, CA 94016" -152115,Flatscreen TV,1,300,02/06/19 14:44,"161 11th St, New York City, NY 10001" -152116,Bose SoundSport Headphones,1,99.99,02/17/19 11:01,"243 13th St, Los Angeles, CA 90001" -152117,AAA Batteries (4-pack),3,2.99,02/20/19 11:59,"260 Lake St, Los Angeles, CA 90001" -152118,Google Phone,1,600,02/25/19 08:03,"189 Hickory St, Los Angeles, CA 90001" -152119,Apple Airpods Headphones,1,150,02/17/19 19:46,"702 River St, New York City, NY 10001" -152120,Wired Headphones,1,11.99,02/06/19 22:13,"926 4th St, San Francisco, CA 94016" -152121,Wired Headphones,2,11.99,02/19/19 12:53,"667 Walnut St, Dallas, TX 75001" -152122,Flatscreen TV,1,300,02/07/19 17:17,"860 Jefferson St, San Francisco, CA 94016" -152123,Bose SoundSport Headphones,1,99.99,02/10/19 02:44,"164 Sunset St, Atlanta, GA 30301" -152124,Google Phone,1,600,02/26/19 20:55,"30 Walnut St, San Francisco, CA 94016" -152124,USB-C Charging Cable,1,11.95,02/26/19 20:55,"30 Walnut St, San Francisco, CA 94016" -152125,Apple Airpods Headphones,1,150,02/12/19 23:46,"511 1st St, Portland, OR 97035" -152126,Lightning Charging Cable,1,14.95,02/13/19 16:29,"96 Hickory St, Austin, TX 73301" -152127,AA Batteries (4-pack),1,3.84,02/02/19 20:40,"212 Lakeview St, Boston, MA 02215" -152128,27in FHD Monitor,1,149.99,02/23/19 15:15,"855 1st St, New York City, NY 10001" -152129,34in Ultrawide Monitor,1,379.99,02/25/19 10:20,"830 Lake St, San Francisco, CA 94016" -152130,Lightning Charging Cable,1,14.95,02/21/19 07:42,"32 2nd St, San Francisco, CA 94016" -152131,34in Ultrawide Monitor,1,379.99,02/12/19 23:33,"975 Sunset St, New York City, NY 10001" -152132,USB-C Charging Cable,1,11.95,02/08/19 20:36,"274 Park St, Dallas, TX 75001" -152133,34in Ultrawide Monitor,1,379.99,02/09/19 09:53,"148 Spruce St, San Francisco, CA 94016" -152134,Macbook Pro Laptop,1,1700,02/15/19 12:16,"191 Highland St, New York City, NY 10001" -152135,iPhone,1,700,02/16/19 21:16,"946 14th St, Austin, TX 73301" -152135,Wired Headphones,1,11.99,02/16/19 21:16,"946 14th St, Austin, TX 73301" -152136,Lightning Charging Cable,1,14.95,02/27/19 17:20,"847 Hill St, Dallas, TX 75001" -152137,AAA Batteries (4-pack),1,2.99,02/09/19 10:25,"552 Church St, Austin, TX 73301" -152138,Wired Headphones,1,11.99,02/09/19 19:44,"841 4th St, San Francisco, CA 94016" -152139,Wired Headphones,1,11.99,02/15/19 13:23,"110 Chestnut St, Dallas, TX 75001" -152140,27in FHD Monitor,1,149.99,02/27/19 18:15,"708 Elm St, Boston, MA 02215" -152141,AA Batteries (4-pack),1,3.84,02/23/19 16:06,"655 10th St, Portland, OR 97035" -152142,AA Batteries (4-pack),1,3.84,02/14/19 17:34,"177 Jefferson St, San Francisco, CA 94016" -152143,AA Batteries (4-pack),1,3.84,02/07/19 16:22,"508 Elm St, Los Angeles, CA 90001" -152144,Lightning Charging Cable,1,14.95,02/15/19 14:30,"944 Ridge St, Austin, TX 73301" -152145,AAA Batteries (4-pack),3,2.99,02/13/19 16:27,"992 Meadow St, New York City, NY 10001" -152146,USB-C Charging Cable,1,11.95,02/18/19 13:43,"272 1st St, Los Angeles, CA 90001" -152147,LG Dryer,1,600.0,02/24/19 07:59,"952 8th St, Atlanta, GA 30301" -152148,Wired Headphones,1,11.99,02/12/19 18:42,"528 Dogwood St, Los Angeles, CA 90001" -152149,Wired Headphones,1,11.99,02/20/19 16:53,"125 5th St, Dallas, TX 75001" -152150,Bose SoundSport Headphones,1,99.99,02/21/19 11:03,"514 South St, Los Angeles, CA 90001" -152151,27in FHD Monitor,1,149.99,02/09/19 12:07,"494 Forest St, Boston, MA 02215" -152152,AAA Batteries (4-pack),1,2.99,02/06/19 11:24,"615 14th St, Los Angeles, CA 90001" -152153,27in FHD Monitor,1,149.99,02/03/19 19:30,"202 Cherry St, Los Angeles, CA 90001" -152154,Flatscreen TV,1,300,02/09/19 20:37,"580 11th St, New York City, NY 10001" -152155,27in FHD Monitor,1,149.99,02/22/19 13:01,"778 Hickory St, Atlanta, GA 30301" -152156,Flatscreen TV,1,300,02/05/19 10:36,"999 Adams St, Dallas, TX 75001" -152157,AAA Batteries (4-pack),1,2.99,02/21/19 21:40,"485 Lincoln St, Dallas, TX 75001" -152158,27in 4K Gaming Monitor,1,389.99,02/23/19 18:47,"839 6th St, Seattle, WA 98101" -152159,ThinkPad Laptop,1,999.99,02/10/19 17:01,"573 Adams St, Seattle, WA 98101" -152160,Apple Airpods Headphones,1,150,02/20/19 11:35,"822 Jefferson St, Dallas, TX 75001" -152161,Wired Headphones,1,11.99,02/06/19 18:04,"246 Sunset St, San Francisco, CA 94016" -152162,Lightning Charging Cable,1,14.95,02/04/19 22:25,"25 Wilson St, Atlanta, GA 30301" -152163,Wired Headphones,1,11.99,02/17/19 10:18,"672 5th St, San Francisco, CA 94016" -152164,Flatscreen TV,1,300,02/15/19 13:46,"264 Cedar St, San Francisco, CA 94016" -152165,AA Batteries (4-pack),3,3.84,02/10/19 18:49,"362 Chestnut St, Boston, MA 02215" -152166,Wired Headphones,1,11.99,02/23/19 15:10,"198 Meadow St, Austin, TX 73301" -152167,34in Ultrawide Monitor,1,379.99,02/20/19 19:31,"593 West St, San Francisco, CA 94016" -152168,Lightning Charging Cable,1,14.95,02/04/19 12:42,"741 Center St, Atlanta, GA 30301" -152169,20in Monitor,1,109.99,02/16/19 17:39,"480 Chestnut St, New York City, NY 10001" -152170,USB-C Charging Cable,1,11.95,02/10/19 13:04,"559 Main St, Boston, MA 02215" -152171,27in FHD Monitor,1,149.99,02/24/19 20:22,"707 Hill St, Austin, TX 73301" -152172,Macbook Pro Laptop,1,1700,02/28/19 19:07,"988 South St, Austin, TX 73301" -152173,AAA Batteries (4-pack),1,2.99,02/25/19 10:55,"962 7th St, Atlanta, GA 30301" -152174,34in Ultrawide Monitor,1,379.99,02/06/19 12:05,"493 Sunset St, Austin, TX 73301" -152175,AAA Batteries (4-pack),1,2.99,02/11/19 15:42,"642 8th St, New York City, NY 10001" -152176,ThinkPad Laptop,1,999.99,02/15/19 08:32,"654 Center St, Los Angeles, CA 90001" -152177,34in Ultrawide Monitor,1,379.99,02/03/19 13:50,"613 11th St, New York City, NY 10001" -152178,AA Batteries (4-pack),1,3.84,02/26/19 20:19,"896 Cedar St, Los Angeles, CA 90001" -152179,Lightning Charging Cable,1,14.95,02/04/19 11:42,"780 Willow St, Los Angeles, CA 90001" -152180,AA Batteries (4-pack),2,3.84,02/04/19 10:53,"295 8th St, Los Angeles, CA 90001" -152181,AAA Batteries (4-pack),1,2.99,02/10/19 09:57,"636 Center St, New York City, NY 10001" -152182,Apple Airpods Headphones,1,150,02/01/19 19:54,"868 6th St, Los Angeles, CA 90001" -152183,34in Ultrawide Monitor,1,379.99,02/17/19 10:06,"194 Center St, San Francisco, CA 94016" -152184,AAA Batteries (4-pack),4,2.99,02/03/19 17:04,"172 4th St, Seattle, WA 98101" -152185,Google Phone,1,600,02/27/19 11:32,"577 Elm St, Los Angeles, CA 90001" -152186,Wired Headphones,1,11.99,02/04/19 19:30,"573 Cedar St, New York City, NY 10001" -152187,Macbook Pro Laptop,1,1700,02/19/19 13:43,"415 Hickory St, New York City, NY 10001" -152188,Bose SoundSport Headphones,1,99.99,02/03/19 17:50,"164 12th St, Boston, MA 02215" -152189,USB-C Charging Cable,1,11.95,02/13/19 07:17,"784 South St, New York City, NY 10001" -152190,Apple Airpods Headphones,1,150,02/05/19 20:15,"443 14th St, New York City, NY 10001" -152191,Lightning Charging Cable,1,14.95,02/20/19 21:04,"319 Madison St, San Francisco, CA 94016" -152192,Lightning Charging Cable,2,14.95,02/26/19 20:34,"519 10th St, San Francisco, CA 94016" -152193,Lightning Charging Cable,1,14.95,02/28/19 09:34,"692 Maple St, Seattle, WA 98101" -152194,Wired Headphones,1,11.99,02/06/19 11:02,"994 Hickory St, New York City, NY 10001" -,,,,, -152195,Lightning Charging Cable,1,14.95,02/24/19 16:27,"454 South St, San Francisco, CA 94016" -152196,USB-C Charging Cable,1,11.95,02/17/19 17:18,"530 Jackson St, Los Angeles, CA 90001" -152196,Apple Airpods Headphones,1,150,02/17/19 17:18,"530 Jackson St, Los Angeles, CA 90001" -152197,Wired Headphones,1,11.99,02/25/19 12:55,"70 Park St, Los Angeles, CA 90001" -152198,AAA Batteries (4-pack),1,2.99,02/28/19 19:07,"740 Forest St, New York City, NY 10001" -152199,20in Monitor,1,109.99,02/04/19 09:47,"613 Hickory St, Atlanta, GA 30301" -152200,Flatscreen TV,1,300,02/15/19 19:10,"290 Wilson St, Atlanta, GA 30301" -152201,Google Phone,1,600,02/24/19 15:05,"551 Lake St, San Francisco, CA 94016" -152202,USB-C Charging Cable,1,11.95,02/10/19 14:15,"864 7th St, Los Angeles, CA 90001" -152203,USB-C Charging Cable,1,11.95,02/17/19 02:19,"98 River St, Los Angeles, CA 90001" -152204,27in FHD Monitor,1,149.99,02/18/19 19:20,"787 Center St, Los Angeles, CA 90001" -152205,Lightning Charging Cable,1,14.95,02/12/19 22:14,"46 Ridge St, Austin, TX 73301" -152206,Apple Airpods Headphones,1,150,02/11/19 10:42,"240 1st St, San Francisco, CA 94016" -152206,AAA Batteries (4-pack),1,2.99,02/11/19 10:42,"240 1st St, San Francisco, CA 94016" -152207,AAA Batteries (4-pack),1,2.99,02/21/19 18:57,"20 Johnson St, Atlanta, GA 30301" -152208,34in Ultrawide Monitor,1,379.99,02/09/19 22:57,"672 Lincoln St, Dallas, TX 75001" -152209,AA Batteries (4-pack),1,3.84,02/05/19 11:59,"118 Cherry St, Los Angeles, CA 90001" -152210,Google Phone,1,600,02/27/19 19:22,"784 4th St, San Francisco, CA 94016" -152211,USB-C Charging Cable,1,11.95,02/22/19 22:25,"802 Center St, New York City, NY 10001" -152212,AA Batteries (4-pack),2,3.84,02/23/19 11:27,"668 10th St, San Francisco, CA 94016" -152213,LG Washing Machine,1,600.0,02/20/19 18:15,"286 Cedar St, New York City, NY 10001" -152214,Bose SoundSport Headphones,1,99.99,02/06/19 17:53,"847 River St, Boston, MA 02215" -152215,USB-C Charging Cable,1,11.95,02/09/19 22:46,"974 6th St, Seattle, WA 98101" -152216,Wired Headphones,1,11.99,02/24/19 12:34,"534 9th St, Austin, TX 73301" -152217,AAA Batteries (4-pack),1,2.99,02/14/19 19:57,"778 Lincoln St, Los Angeles, CA 90001" -152218,AA Batteries (4-pack),1,3.84,02/27/19 15:54,"378 Chestnut St, Seattle, WA 98101" -152219,USB-C Charging Cable,2,11.95,02/24/19 13:37,"446 Center St, Boston, MA 02215" -152220,Lightning Charging Cable,1,14.95,02/08/19 09:08,"243 Church St, New York City, NY 10001" -152221,AAA Batteries (4-pack),1,2.99,02/26/19 23:02,"905 12th St, San Francisco, CA 94016" -152222,34in Ultrawide Monitor,1,379.99,02/18/19 11:00,"677 Lake St, Los Angeles, CA 90001" -152223,AA Batteries (4-pack),1,3.84,02/05/19 23:53,"594 Cherry St, San Francisco, CA 94016" -152224,ThinkPad Laptop,1,999.99,02/01/19 15:34,"837 1st St, Los Angeles, CA 90001" -152225,AAA Batteries (4-pack),1,2.99,02/15/19 17:19,"910 7th St, Seattle, WA 98101" -152225,27in 4K Gaming Monitor,1,389.99,02/15/19 17:19,"910 7th St, Seattle, WA 98101" -152226,27in FHD Monitor,1,149.99,02/24/19 11:54,"781 Main St, Los Angeles, CA 90001" -152227,Bose SoundSport Headphones,1,99.99,02/14/19 22:58,"147 Hill St, San Francisco, CA 94016" -152228,34in Ultrawide Monitor,1,379.99,02/10/19 13:22,"785 Center St, Los Angeles, CA 90001" -152229,AA Batteries (4-pack),1,3.84,02/21/19 15:07,"201 Lake St, New York City, NY 10001" -152230,USB-C Charging Cable,1,11.95,02/21/19 17:46,"341 Maple St, Seattle, WA 98101" -152231,AAA Batteries (4-pack),1,2.99,02/25/19 06:36,"560 11th St, Atlanta, GA 30301" -152232,Bose SoundSport Headphones,1,99.99,02/26/19 14:48,"37 7th St, Los Angeles, CA 90001" -152233,USB-C Charging Cable,1,11.95,02/25/19 23:07,"229 Church St, Atlanta, GA 30301" -152234,Apple Airpods Headphones,1,150,02/28/19 12:54,"193 Walnut St, Atlanta, GA 30301" -152235,Wired Headphones,1,11.99,02/01/19 14:38,"587 Jackson St, San Francisco, CA 94016" -152236,Bose SoundSport Headphones,2,99.99,02/24/19 09:38,"999 Spruce St, Austin, TX 73301" -152237,USB-C Charging Cable,1,11.95,02/07/19 16:12,"243 1st St, New York City, NY 10001" -152238,USB-C Charging Cable,1,11.95,02/19/19 19:23,"304 Madison St, San Francisco, CA 94016" -152239,ThinkPad Laptop,1,999.99,02/14/19 21:49,"741 11th St, New York City, NY 10001" -152240,Lightning Charging Cable,1,14.95,02/02/19 13:27,"16 Elm St, San Francisco, CA 94016" -152241,AA Batteries (4-pack),1,3.84,02/16/19 13:03,"291 Cherry St, Austin, TX 73301" -152242,AAA Batteries (4-pack),1,2.99,02/22/19 19:15,"720 Walnut St, Seattle, WA 98101" -152242,Lightning Charging Cable,1,14.95,02/22/19 19:15,"720 Walnut St, Seattle, WA 98101" -152243,Apple Airpods Headphones,1,150,02/19/19 08:42,"403 Main St, Boston, MA 02215" -152244,Flatscreen TV,1,300,02/02/19 09:26,"191 Spruce St, San Francisco, CA 94016" -152245,LG Washing Machine,1,600.0,02/05/19 09:42,"790 Adams St, Portland, ME 04101" -152246,Flatscreen TV,1,300,02/14/19 19:07,"28 Hill St, Dallas, TX 75001" -152247,27in 4K Gaming Monitor,1,389.99,02/08/19 10:34,"586 Park St, Portland, OR 97035" -152248,Lightning Charging Cable,1,14.95,02/26/19 11:14,"362 1st St, Boston, MA 02215" -152249,34in Ultrawide Monitor,1,379.99,02/11/19 12:01,"324 Main St, Los Angeles, CA 90001" -152250,Flatscreen TV,1,300,02/25/19 10:33,"584 1st St, San Francisco, CA 94016" -152251,AAA Batteries (4-pack),2,2.99,02/24/19 23:37,"682 North St, Los Angeles, CA 90001" -152252,Google Phone,1,600,02/08/19 10:56,"895 13th St, San Francisco, CA 94016" -152253,Wired Headphones,1,11.99,02/24/19 16:08,"678 10th St, New York City, NY 10001" -152254,AA Batteries (4-pack),2,3.84,02/04/19 12:09,"885 10th St, Atlanta, GA 30301" -152255,AAA Batteries (4-pack),2,2.99,02/14/19 21:23,"840 Jefferson St, Boston, MA 02215" -152256,Apple Airpods Headphones,1,150,02/26/19 21:19,"501 Forest St, San Francisco, CA 94016" -152257,AAA Batteries (4-pack),1,2.99,02/15/19 22:26,"268 Jefferson St, Austin, TX 73301" -152258,Wired Headphones,1,11.99,02/21/19 09:56,"494 Highland St, New York City, NY 10001" -152259,USB-C Charging Cable,1,11.95,02/26/19 20:39,"171 2nd St, San Francisco, CA 94016" -152260,AAA Batteries (4-pack),2,2.99,02/16/19 11:45,"503 Willow St, New York City, NY 10001" -152261,AAA Batteries (4-pack),3,2.99,02/02/19 13:12,"31 Walnut St, Los Angeles, CA 90001" -152262,Flatscreen TV,1,300,02/01/19 10:06,"113 13th St, Austin, TX 73301" -152263,AA Batteries (4-pack),1,3.84,02/05/19 15:32,"885 Church St, Austin, TX 73301" -152264,27in FHD Monitor,1,149.99,02/03/19 08:25,"15 Meadow St, Los Angeles, CA 90001" -152265,Wired Headphones,1,11.99,02/03/19 18:28,"307 Dogwood St, Los Angeles, CA 90001" -152266,AA Batteries (4-pack),1,3.84,02/17/19 19:06,"152 Church St, New York City, NY 10001" -152267,AAA Batteries (4-pack),1,2.99,02/23/19 14:55,"123 Lincoln St, Los Angeles, CA 90001" -152268,34in Ultrawide Monitor,1,379.99,02/25/19 19:29,"83 14th St, Los Angeles, CA 90001" -152269,Flatscreen TV,1,300,02/26/19 22:40,"75 North St, San Francisco, CA 94016" -152270,USB-C Charging Cable,1,11.95,02/14/19 10:39,"810 Maple St, Seattle, WA 98101" -152271,iPhone,1,700,02/04/19 06:28,"217 Lakeview St, Atlanta, GA 30301" -152272,Bose SoundSport Headphones,1,99.99,02/06/19 18:30,"892 Adams St, San Francisco, CA 94016" -152273,ThinkPad Laptop,1,999.99,02/08/19 09:44,"716 Cedar St, San Francisco, CA 94016" -152274,Apple Airpods Headphones,1,150,02/20/19 14:32,"253 Willow St, Atlanta, GA 30301" -152275,Lightning Charging Cable,1,14.95,02/21/19 16:13,"985 Hickory St, Portland, OR 97035" -152276,USB-C Charging Cable,1,11.95,02/05/19 20:56,"430 Maple St, Seattle, WA 98101" -152277,27in FHD Monitor,1,149.99,02/23/19 00:55,"804 5th St, San Francisco, CA 94016" -152278,34in Ultrawide Monitor,1,379.99,02/12/19 15:31,"2 Pine St, Boston, MA 02215" -152279,Apple Airpods Headphones,1,150,02/18/19 13:37,"953 Chestnut St, Boston, MA 02215" -152280,Wired Headphones,1,11.99,02/06/19 20:23,"851 River St, Los Angeles, CA 90001" -152281,Wired Headphones,1,11.99,02/07/19 23:10,"631 13th St, New York City, NY 10001" -152282,Wired Headphones,1,11.99,02/17/19 20:36,"131 Meadow St, Boston, MA 02215" -152283,Wired Headphones,1,11.99,02/23/19 09:14,"367 Willow St, Boston, MA 02215" -152284,USB-C Charging Cable,1,11.95,02/19/19 22:21,"894 Cedar St, New York City, NY 10001" -152285,AA Batteries (4-pack),1,3.84,02/02/19 23:36,"208 14th St, Los Angeles, CA 90001" -152286,AAA Batteries (4-pack),1,2.99,02/27/19 19:44,"731 West St, Portland, ME 04101" -152287,iPhone,1,700,02/24/19 16:42,"845 Lake St, Dallas, TX 75001" -152288,AA Batteries (4-pack),1,3.84,02/15/19 16:22,"660 Willow St, Atlanta, GA 30301" -152289,AAA Batteries (4-pack),1,2.99,02/17/19 23:06,"984 4th St, San Francisco, CA 94016" -152290,20in Monitor,1,109.99,02/18/19 11:57,"824 Hickory St, San Francisco, CA 94016" -152291,Apple Airpods Headphones,1,150,02/09/19 15:56,"923 Adams St, Portland, OR 97035" -152292,Lightning Charging Cable,1,14.95,02/23/19 13:50,"466 1st St, Dallas, TX 75001" -152293,iPhone,1,700,02/01/19 14:34,"596 West St, San Francisco, CA 94016" -152293,Lightning Charging Cable,1,14.95,02/01/19 14:34,"596 West St, San Francisco, CA 94016" -152293,Apple Airpods Headphones,1,150,02/01/19 14:34,"596 West St, San Francisco, CA 94016" -152294,Lightning Charging Cable,1,14.95,02/01/19 20:28,"342 Walnut St, San Francisco, CA 94016" -152295,Bose SoundSport Headphones,1,99.99,02/01/19 10:23,"305 14th St, San Francisco, CA 94016" -152296,AA Batteries (4-pack),1,3.84,02/27/19 15:44,"890 Chestnut St, Portland, OR 97035" -152297,Flatscreen TV,1,300,02/15/19 10:36,"619 Lincoln St, Los Angeles, CA 90001" -152298,20in Monitor,1,109.99,02/06/19 12:30,"79 2nd St, Portland, ME 04101" -152299,AA Batteries (4-pack),1,3.84,02/02/19 13:15,"454 6th St, New York City, NY 10001" -152300,Wired Headphones,1,11.99,02/08/19 13:18,"3 11th St, San Francisco, CA 94016" -152301,Macbook Pro Laptop,1,1700,02/12/19 10:01,"705 Spruce St, Los Angeles, CA 90001" -152302,27in FHD Monitor,1,149.99,02/09/19 10:28,"40 Cherry St, Boston, MA 02215" -152303,USB-C Charging Cable,1,11.95,02/03/19 18:48,"684 2nd St, New York City, NY 10001" -152304,AA Batteries (4-pack),1,3.84,02/13/19 22:28,"579 Cherry St, Boston, MA 02215" -152305,Lightning Charging Cable,1,14.95,02/10/19 00:26,"671 Wilson St, Portland, OR 97035" -152306,27in FHD Monitor,1,149.99,02/11/19 20:57,"140 8th St, Los Angeles, CA 90001" -152307,Flatscreen TV,1,300,02/03/19 11:14,"595 9th St, Boston, MA 02215" -152308,34in Ultrawide Monitor,1,379.99,02/20/19 12:30,"641 Jackson St, Los Angeles, CA 90001" -152309,Lightning Charging Cable,1,14.95,02/18/19 14:47,"134 Adams St, Los Angeles, CA 90001" -152310,AA Batteries (4-pack),1,3.84,02/21/19 22:35,"688 9th St, New York City, NY 10001" -152311,Bose SoundSport Headphones,1,99.99,02/01/19 23:26,"265 4th St, Dallas, TX 75001" -152312,Wired Headphones,2,11.99,02/24/19 07:23,"280 Cedar St, San Francisco, CA 94016" -152313,USB-C Charging Cable,1,11.95,02/10/19 11:51,"400 West St, Los Angeles, CA 90001" -152314,27in FHD Monitor,1,149.99,02/25/19 14:20,"200 North St, San Francisco, CA 94016" -152315,AA Batteries (4-pack),1,3.84,02/08/19 15:15,"935 Forest St, Atlanta, GA 30301" -152316,27in 4K Gaming Monitor,1,389.99,02/13/19 09:06,"412 Chestnut St, Atlanta, GA 30301" -152317,USB-C Charging Cable,1,11.95,02/26/19 10:22,"164 Hickory St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -152318,AA Batteries (4-pack),1,3.84,02/04/19 13:50,"701 5th St, Los Angeles, CA 90001" -152319,Bose SoundSport Headphones,1,99.99,02/17/19 16:06,"707 Church St, Los Angeles, CA 90001" -152320,Wired Headphones,1,11.99,02/22/19 16:35,"272 Ridge St, Portland, OR 97035" -152321,AA Batteries (4-pack),2,3.84,02/05/19 18:25,"385 Adams St, San Francisco, CA 94016" -152322,Bose SoundSport Headphones,1,99.99,02/02/19 15:35,"499 11th St, Portland, OR 97035" -152323,Google Phone,1,600,02/24/19 08:09,"927 Ridge St, Dallas, TX 75001" -152324,Lightning Charging Cable,1,14.95,02/02/19 08:08,"452 Walnut St, Los Angeles, CA 90001" -152325,Lightning Charging Cable,1,14.95,02/07/19 01:02,"613 5th St, Los Angeles, CA 90001" -152326,USB-C Charging Cable,1,11.95,02/22/19 11:51,"136 South St, San Francisco, CA 94016" -152327,Lightning Charging Cable,1,14.95,02/03/19 19:58,"523 Johnson St, Portland, OR 97035" -152328,Macbook Pro Laptop,1,1700,02/10/19 11:26,"579 Sunset St, San Francisco, CA 94016" -152329,Lightning Charging Cable,1,14.95,02/12/19 07:44,"731 Spruce St, Atlanta, GA 30301" -152330,Bose SoundSport Headphones,1,99.99,02/25/19 18:53,"827 Dogwood St, Los Angeles, CA 90001" -152330,Bose SoundSport Headphones,1,99.99,02/25/19 18:53,"827 Dogwood St, Los Angeles, CA 90001" -152331,AAA Batteries (4-pack),1,2.99,02/07/19 18:22,"370 Sunset St, Boston, MA 02215" -152332,AAA Batteries (4-pack),2,2.99,02/07/19 07:25,"178 Adams St, Boston, MA 02215" -152333,Wired Headphones,1,11.99,02/20/19 11:06,"936 6th St, San Francisco, CA 94016" -152334,Bose SoundSport Headphones,1,99.99,02/17/19 18:42,"451 River St, New York City, NY 10001" -152335,AA Batteries (4-pack),1,3.84,02/24/19 21:57,"122 8th St, Dallas, TX 75001" -152336,Lightning Charging Cable,1,14.95,02/13/19 20:01,"245 Main St, Los Angeles, CA 90001" -152337,Apple Airpods Headphones,1,150,02/22/19 07:55,"483 Lincoln St, New York City, NY 10001" -152338,AA Batteries (4-pack),1,3.84,02/27/19 11:00,"111 Jackson St, San Francisco, CA 94016" -152339,AA Batteries (4-pack),1,3.84,02/10/19 09:29,"852 Pine St, Seattle, WA 98101" -152340,Apple Airpods Headphones,1,150,02/23/19 01:09,"370 8th St, Boston, MA 02215" -152341,Bose SoundSport Headphones,1,99.99,02/20/19 06:58,"795 Washington St, Portland, ME 04101" -152342,Lightning Charging Cable,1,14.95,02/20/19 14:40,"299 Adams St, Los Angeles, CA 90001" -152343,AAA Batteries (4-pack),1,2.99,02/05/19 14:51,"224 Spruce St, New York City, NY 10001" -152344,AAA Batteries (4-pack),1,2.99,02/06/19 01:58,"152 Cedar St, San Francisco, CA 94016" -152345,AAA Batteries (4-pack),1,2.99,02/27/19 12:29,"138 11th St, Boston, MA 02215" -152346,Wired Headphones,1,11.99,02/13/19 19:02,"497 Main St, San Francisco, CA 94016" -152347,Wired Headphones,1,11.99,02/05/19 14:35,"899 9th St, Portland, OR 97035" -152348,AAA Batteries (4-pack),1,2.99,02/13/19 17:51,"770 Walnut St, San Francisco, CA 94016" -152349,AA Batteries (4-pack),1,3.84,02/13/19 23:23,"997 Cherry St, Los Angeles, CA 90001" -152350,27in 4K Gaming Monitor,1,389.99,02/02/19 11:34,"378 Church St, Austin, TX 73301" -152351,AAA Batteries (4-pack),1,2.99,02/02/19 17:17,"338 Park St, Seattle, WA 98101" -152352,iPhone,1,700,02/20/19 10:00,"825 13th St, New York City, NY 10001" -152353,AAA Batteries (4-pack),2,2.99,02/18/19 20:44,"712 Church St, San Francisco, CA 94016" -152354,AAA Batteries (4-pack),2,2.99,02/16/19 08:56,"321 Lincoln St, Atlanta, GA 30301" -152355,Apple Airpods Headphones,1,150,02/14/19 20:26,"546 Cherry St, Seattle, WA 98101" -152356,Lightning Charging Cable,1,14.95,02/06/19 06:42,"178 Jackson St, Portland, ME 04101" -152357,27in 4K Gaming Monitor,1,389.99,02/20/19 15:39,"213 Johnson St, San Francisco, CA 94016" -152358,Lightning Charging Cable,1,14.95,02/05/19 09:37,"864 Lake St, Portland, OR 97035" -152358,Apple Airpods Headphones,1,150,02/05/19 09:37,"864 Lake St, Portland, OR 97035" -152359,27in FHD Monitor,1,149.99,02/16/19 14:58,"616 Sunset St, Austin, TX 73301" -152360,Macbook Pro Laptop,1,1700,02/14/19 13:35,"634 6th St, Los Angeles, CA 90001" -152361,Flatscreen TV,1,300,02/13/19 15:37,"994 12th St, Austin, TX 73301" -152362,ThinkPad Laptop,1,999.99,02/03/19 22:04,"48 South St, New York City, NY 10001" -152363,Macbook Pro Laptop,1,1700,02/27/19 09:46,"307 Lake St, Seattle, WA 98101" -152364,iPhone,1,700,02/05/19 11:24,"669 West St, Austin, TX 73301" -152365,27in 4K Gaming Monitor,1,389.99,02/06/19 11:07,"339 7th St, Los Angeles, CA 90001" -152366,AAA Batteries (4-pack),1,2.99,02/07/19 10:20,"70 Church St, Dallas, TX 75001" -152367,Wired Headphones,1,11.99,02/06/19 11:53,"961 10th St, Los Angeles, CA 90001" -152368,Wired Headphones,2,11.99,02/26/19 12:54,"89 Forest St, New York City, NY 10001" -152369,USB-C Charging Cable,1,11.95,02/25/19 07:15,"966 Dogwood St, San Francisco, CA 94016" -152370,Apple Airpods Headphones,1,150,02/27/19 18:00,"648 10th St, Los Angeles, CA 90001" -152371,Macbook Pro Laptop,1,1700,02/10/19 21:42,"24 Highland St, Portland, OR 97035" -152372,USB-C Charging Cable,2,11.95,02/26/19 11:09,"594 7th St, San Francisco, CA 94016" -152373,Lightning Charging Cable,1,14.95,02/03/19 10:46,"66 South St, Seattle, WA 98101" -152374,Wired Headphones,1,11.99,02/06/19 16:11,"45 Elm St, Dallas, TX 75001" -152375,USB-C Charging Cable,1,11.95,02/23/19 21:31,"846 Church St, New York City, NY 10001" -152376,27in FHD Monitor,1,149.99,02/17/19 15:47,"907 4th St, New York City, NY 10001" -152377,Bose SoundSport Headphones,1,99.99,02/13/19 10:42,"358 Sunset St, San Francisco, CA 94016" -152378,AA Batteries (4-pack),4,3.84,02/05/19 09:21,"847 Center St, Portland, OR 97035" -152379,Lightning Charging Cable,1,14.95,02/12/19 22:38,"564 Jackson St, San Francisco, CA 94016" -152380,USB-C Charging Cable,1,11.95,02/07/19 00:34,"296 8th St, Portland, OR 97035" -152381,AAA Batteries (4-pack),1,2.99,02/25/19 20:04,"257 14th St, Los Angeles, CA 90001" -152382,AA Batteries (4-pack),2,3.84,02/16/19 11:20,"6 Park St, New York City, NY 10001" -152383,Apple Airpods Headphones,1,150,02/11/19 09:37,"552 Center St, New York City, NY 10001" -,,,,, -152384,Bose SoundSport Headphones,1,99.99,02/18/19 08:03,"390 1st St, Atlanta, GA 30301" -152385,AAA Batteries (4-pack),3,2.99,02/17/19 08:03,"690 Lincoln St, Seattle, WA 98101" -152386,27in 4K Gaming Monitor,1,389.99,02/26/19 21:09,"107 Lake St, New York City, NY 10001" -152387,AA Batteries (4-pack),1,3.84,02/06/19 08:33,"863 6th St, Austin, TX 73301" -152388,Flatscreen TV,1,300,02/18/19 20:07,"763 6th St, Boston, MA 02215" -152389,USB-C Charging Cable,2,11.95,02/04/19 21:26,"327 9th St, Portland, ME 04101" -152390,USB-C Charging Cable,1,11.95,02/20/19 11:59,"221 Sunset St, San Francisco, CA 94016" -152391,AA Batteries (4-pack),1,3.84,02/13/19 15:41,"973 South St, San Francisco, CA 94016" -152392,ThinkPad Laptop,1,999.99,02/08/19 21:17,"530 9th St, San Francisco, CA 94016" -152393,Wired Headphones,1,11.99,02/10/19 01:53,"579 7th St, Seattle, WA 98101" -152394,USB-C Charging Cable,1,11.95,02/12/19 08:45,"503 Willow St, Seattle, WA 98101" -152395,USB-C Charging Cable,1,11.95,02/17/19 23:53,"38 8th St, Austin, TX 73301" -152396,USB-C Charging Cable,1,11.95,02/07/19 11:22,"668 6th St, Dallas, TX 75001" -152397,USB-C Charging Cable,1,11.95,02/17/19 14:48,"328 Meadow St, San Francisco, CA 94016" -152398,Lightning Charging Cable,2,14.95,02/11/19 01:20,"244 Madison St, San Francisco, CA 94016" -152399,USB-C Charging Cable,1,11.95,02/16/19 15:09,"370 Hill St, Boston, MA 02215" -152400,Macbook Pro Laptop,1,1700,02/10/19 15:17,"971 Wilson St, Los Angeles, CA 90001" -152401,Google Phone,1,600,02/08/19 20:39,"203 Highland St, Austin, TX 73301" -152402,AA Batteries (4-pack),1,3.84,02/19/19 09:58,"201 10th St, Atlanta, GA 30301" -152403,AAA Batteries (4-pack),1,2.99,02/26/19 22:16,"662 Hill St, Los Angeles, CA 90001" -152404,27in FHD Monitor,1,149.99,02/19/19 17:58,"150 Highland St, New York City, NY 10001" -152405,Bose SoundSport Headphones,1,99.99,02/09/19 13:03,"85 Meadow St, Boston, MA 02215" -152406,USB-C Charging Cable,1,11.95,02/06/19 13:12,"835 Center St, San Francisco, CA 94016" -152407,USB-C Charging Cable,1,11.95,02/03/19 21:47,"582 Chestnut St, New York City, NY 10001" -152408,AAA Batteries (4-pack),1,2.99,02/24/19 12:28,"32 Ridge St, Los Angeles, CA 90001" -152409,AAA Batteries (4-pack),2,2.99,02/15/19 17:48,"962 Ridge St, San Francisco, CA 94016" -152410,27in 4K Gaming Monitor,1,389.99,02/06/19 23:36,"345 Meadow St, Seattle, WA 98101" -152411,AAA Batteries (4-pack),2,2.99,02/20/19 19:05,"970 Spruce St, New York City, NY 10001" -152412,Bose SoundSport Headphones,1,99.99,02/22/19 16:29,"286 6th St, Dallas, TX 75001" -152413,Wired Headphones,1,11.99,02/26/19 02:54,"524 Cedar St, San Francisco, CA 94016" -152414,AAA Batteries (4-pack),1,2.99,02/12/19 06:26,"408 River St, Dallas, TX 75001" -152415,AA Batteries (4-pack),1,3.84,02/04/19 11:08,"294 Cherry St, Dallas, TX 75001" -152416,AA Batteries (4-pack),1,3.84,02/10/19 19:51,"643 Main St, New York City, NY 10001" -152417,Wired Headphones,1,11.99,02/05/19 08:45,"661 Sunset St, Los Angeles, CA 90001" -152418,34in Ultrawide Monitor,1,379.99,02/01/19 10:24,"835 Johnson St, San Francisco, CA 94016" -152419,27in FHD Monitor,1,149.99,02/20/19 13:17,"66 Washington St, San Francisco, CA 94016" -152420,Flatscreen TV,1,300,02/09/19 14:01,"237 Sunset St, Seattle, WA 98101" -152421,AAA Batteries (4-pack),2,2.99,02/06/19 13:15,"700 Sunset St, Boston, MA 02215" -152422,USB-C Charging Cable,1,11.95,02/02/19 19:23,"725 1st St, Seattle, WA 98101" -152423,Wired Headphones,1,11.99,02/17/19 11:59,"367 9th St, Los Angeles, CA 90001" -152424,Apple Airpods Headphones,1,150,02/08/19 08:35,"892 Chestnut St, Boston, MA 02215" -152424,AA Batteries (4-pack),1,3.84,02/08/19 08:35,"892 Chestnut St, Boston, MA 02215" -152425,20in Monitor,1,109.99,02/26/19 20:40,"222 Hickory St, San Francisco, CA 94016" -152426,AAA Batteries (4-pack),4,2.99,02/16/19 08:15,"83 11th St, Atlanta, GA 30301" -152427,USB-C Charging Cable,1,11.95,02/26/19 20:29,"284 Park St, New York City, NY 10001" -152428,Google Phone,1,600,02/09/19 08:49,"998 Forest St, Atlanta, GA 30301" -152429,AA Batteries (4-pack),3,3.84,02/22/19 14:41,"494 Cherry St, Seattle, WA 98101" -152430,Flatscreen TV,1,300,02/08/19 04:12,"518 Spruce St, New York City, NY 10001" -152431,Apple Airpods Headphones,1,150,02/18/19 19:35,"669 Pine St, San Francisco, CA 94016" -152432,Wired Headphones,1,11.99,02/16/19 02:24,"563 Chestnut St, Boston, MA 02215" -152433,20in Monitor,1,109.99,02/16/19 12:13,"71 Maple St, Los Angeles, CA 90001" -152434,AA Batteries (4-pack),2,3.84,02/01/19 17:31,"501 Park St, Seattle, WA 98101" -152435,27in FHD Monitor,1,149.99,02/18/19 09:39,"387 Hill St, Seattle, WA 98101" -,,,,, -152436,USB-C Charging Cable,1,11.95,02/15/19 16:12,"18 West St, San Francisco, CA 94016" -152437,ThinkPad Laptop,1,999.99,02/18/19 01:48,"444 Park St, Dallas, TX 75001" -152438,Wired Headphones,1,11.99,02/12/19 18:52,"647 Cherry St, New York City, NY 10001" -152439,Lightning Charging Cable,1,14.95,02/26/19 10:00,"509 Dogwood St, San Francisco, CA 94016" -152440,USB-C Charging Cable,1,11.95,02/14/19 10:24,"608 Main St, New York City, NY 10001" -152441,AA Batteries (4-pack),2,3.84,02/17/19 15:01,"180 Meadow St, San Francisco, CA 94016" -152442,34in Ultrawide Monitor,1,379.99,02/19/19 17:57,"881 Pine St, Los Angeles, CA 90001" -152443,AAA Batteries (4-pack),1,2.99,02/13/19 18:02,"341 7th St, New York City, NY 10001" -152444,34in Ultrawide Monitor,1,379.99,02/17/19 15:18,"639 Wilson St, Seattle, WA 98101" -152445,AA Batteries (4-pack),2,3.84,02/04/19 20:54,"595 South St, Los Angeles, CA 90001" -152446,AAA Batteries (4-pack),1,2.99,02/17/19 20:38,"519 13th St, Boston, MA 02215" -152447,Apple Airpods Headphones,1,150,02/12/19 13:47,"895 4th St, Atlanta, GA 30301" -152448,Wired Headphones,1,11.99,02/25/19 12:53,"24 1st St, Los Angeles, CA 90001" -152449,AA Batteries (4-pack),1,3.84,02/25/19 15:33,"78 Elm St, San Francisco, CA 94016" -152450,Lightning Charging Cable,2,14.95,02/10/19 03:41,"406 9th St, New York City, NY 10001" -152451,AAA Batteries (4-pack),1,2.99,02/26/19 14:17,"704 1st St, Dallas, TX 75001" -152452,USB-C Charging Cable,1,11.95,02/14/19 10:01,"711 Hill St, San Francisco, CA 94016" -152453,AA Batteries (4-pack),1,3.84,02/01/19 21:43,"180 Hickory St, Boston, MA 02215" -152454,Bose SoundSport Headphones,1,99.99,02/05/19 13:42,"497 Maple St, Atlanta, GA 30301" -152455,AAA Batteries (4-pack),2,2.99,02/28/19 16:32,"530 Lakeview St, San Francisco, CA 94016" -152456,Bose SoundSport Headphones,1,99.99,02/21/19 22:51,"357 Wilson St, Portland, OR 97035" -152457,Apple Airpods Headphones,1,150,02/12/19 14:49,"594 Hickory St, Portland, ME 04101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -152458,Flatscreen TV,1,300,02/17/19 20:33,"233 Elm St, Los Angeles, CA 90001" -152459,Lightning Charging Cable,1,14.95,02/15/19 10:22,"768 Walnut St, Boston, MA 02215" -152460,Vareebadd Phone,1,400,02/04/19 21:54,"363 Madison St, Atlanta, GA 30301" -152460,USB-C Charging Cable,1,11.95,02/04/19 21:54,"363 Madison St, Atlanta, GA 30301" -152461,Macbook Pro Laptop,1,1700,02/09/19 15:14,"313 Hickory St, Portland, OR 97035" -152462,20in Monitor,1,109.99,02/25/19 12:27,"562 Jackson St, San Francisco, CA 94016" -152463,Apple Airpods Headphones,1,150,02/13/19 21:14,"190 Lincoln St, Portland, OR 97035" -152464,AA Batteries (4-pack),1,3.84,02/25/19 16:54,"254 13th St, San Francisco, CA 94016" -152465,USB-C Charging Cable,1,11.95,02/26/19 21:34,"409 Lakeview St, San Francisco, CA 94016" -152466,AAA Batteries (4-pack),3,2.99,02/07/19 10:28,"936 Hickory St, Dallas, TX 75001" -152467,Apple Airpods Headphones,1,150,02/26/19 17:18,"669 13th St, Boston, MA 02215" -152468,USB-C Charging Cable,1,11.95,02/23/19 21:03,"987 Adams St, Atlanta, GA 30301" -152469,Apple Airpods Headphones,1,150,02/27/19 15:01,"934 Park St, Portland, OR 97035" -152470,AA Batteries (4-pack),1,3.84,02/05/19 13:06,"687 Sunset St, San Francisco, CA 94016" -152471,Flatscreen TV,1,300,02/08/19 00:59,"923 Chestnut St, Los Angeles, CA 90001" -152472,Wired Headphones,1,11.99,02/26/19 18:38,"891 13th St, Atlanta, GA 30301" -152472,AA Batteries (4-pack),1,3.84,02/26/19 18:38,"891 13th St, Atlanta, GA 30301" -152473,AA Batteries (4-pack),1,3.84,02/20/19 11:59,"118 Walnut St, Atlanta, GA 30301" -152474,Wired Headphones,2,11.99,02/11/19 21:02,"304 2nd St, San Francisco, CA 94016" -152475,USB-C Charging Cable,1,11.95,02/11/19 07:09,"957 Madison St, San Francisco, CA 94016" -152476,USB-C Charging Cable,1,11.95,02/10/19 18:55,"183 Hill St, Dallas, TX 75001" -152477,AAA Batteries (4-pack),1,2.99,02/25/19 10:14,"390 Forest St, San Francisco, CA 94016" -152478,Wired Headphones,1,11.99,02/10/19 09:39,"165 Ridge St, Boston, MA 02215" -152479,AA Batteries (4-pack),2,3.84,02/15/19 13:45,"83 12th St, Austin, TX 73301" -152480,27in FHD Monitor,1,149.99,02/05/19 17:34,"90 Lincoln St, Los Angeles, CA 90001" -152481,Apple Airpods Headphones,1,150,02/16/19 01:56,"411 9th St, Dallas, TX 75001" -152482,AA Batteries (4-pack),1,3.84,02/04/19 23:19,"585 Lincoln St, Seattle, WA 98101" -152483,AAA Batteries (4-pack),2,2.99,02/05/19 09:04,"387 13th St, San Francisco, CA 94016" -152484,AA Batteries (4-pack),1,3.84,02/28/19 12:31,"909 Lincoln St, Los Angeles, CA 90001" -152485,Lightning Charging Cable,1,14.95,02/17/19 18:28,"438 13th St, Austin, TX 73301" -152486,Apple Airpods Headphones,1,150,02/22/19 19:51,"118 Park St, Portland, OR 97035" -152487,Wired Headphones,1,11.99,02/20/19 13:32,"876 14th St, Boston, MA 02215" -152488,USB-C Charging Cable,1,11.95,02/15/19 06:31,"286 Meadow St, San Francisco, CA 94016" -152489,Bose SoundSport Headphones,1,99.99,02/15/19 23:12,"655 11th St, Dallas, TX 75001" -152490,Bose SoundSport Headphones,1,99.99,02/25/19 08:05,"701 South St, New York City, NY 10001" -152491,Macbook Pro Laptop,1,1700,02/01/19 19:15,"328 Park St, Seattle, WA 98101" -152492,AA Batteries (4-pack),1,3.84,02/08/19 09:45,"854 11th St, San Francisco, CA 94016" -152493,Apple Airpods Headphones,1,150,02/25/19 00:04,"818 7th St, Los Angeles, CA 90001" -152494,AA Batteries (4-pack),3,3.84,02/20/19 21:31,"223 West St, San Francisco, CA 94016" -152495,Vareebadd Phone,1,400,02/26/19 14:41,"302 Hickory St, San Francisco, CA 94016" -152496,Flatscreen TV,1,300,02/25/19 09:40,"151 West St, Boston, MA 02215" -152497,27in 4K Gaming Monitor,1,389.99,02/22/19 12:03,"123 1st St, San Francisco, CA 94016" -152498,USB-C Charging Cable,1,11.95,02/07/19 20:40,"780 12th St, San Francisco, CA 94016" -152499,AAA Batteries (4-pack),1,2.99,02/10/19 01:45,"243 6th St, San Francisco, CA 94016" -152500,ThinkPad Laptop,1,999.99,02/09/19 13:11,"668 Forest St, San Francisco, CA 94016" -152501,Vareebadd Phone,1,400,02/20/19 06:41,"260 Pine St, Atlanta, GA 30301" -152502,Google Phone,1,600,02/12/19 21:51,"690 Jackson St, Boston, MA 02215" -152503,Flatscreen TV,1,300,02/14/19 16:08,"310 Meadow St, Seattle, WA 98101" -152504,Apple Airpods Headphones,1,150,02/22/19 08:49,"570 Madison St, New York City, NY 10001" -152505,20in Monitor,1,109.99,02/07/19 23:24,"508 8th St, Seattle, WA 98101" -152506,20in Monitor,1,109.99,02/22/19 15:08,"247 9th St, Los Angeles, CA 90001" -152507,USB-C Charging Cable,1,11.95,02/09/19 08:57,"718 Hickory St, San Francisco, CA 94016" -152508,Lightning Charging Cable,1,14.95,02/12/19 14:17,"513 Wilson St, Los Angeles, CA 90001" -152509,Flatscreen TV,1,300,02/19/19 14:17,"295 Jackson St, Atlanta, GA 30301" -152510,Bose SoundSport Headphones,1,99.99,02/20/19 21:39,"913 Wilson St, New York City, NY 10001" -152511,USB-C Charging Cable,1,11.95,02/25/19 16:46,"132 5th St, New York City, NY 10001" -152512,Apple Airpods Headphones,1,150,02/04/19 21:05,"746 Forest St, Boston, MA 02215" -152513,34in Ultrawide Monitor,1,379.99,02/18/19 19:40,"40 Sunset St, Austin, TX 73301" -152514,USB-C Charging Cable,1,11.95,02/09/19 16:12,"247 Meadow St, Los Angeles, CA 90001" -152515,AAA Batteries (4-pack),1,2.99,02/06/19 20:54,"641 5th St, Boston, MA 02215" -152516,27in FHD Monitor,1,149.99,02/23/19 12:28,"146 Lakeview St, New York City, NY 10001" -152517,Macbook Pro Laptop,1,1700,02/14/19 16:53,"6 6th St, New York City, NY 10001" -152518,iPhone,1,700,02/19/19 15:32,"441 Walnut St, Seattle, WA 98101" -152519,AAA Batteries (4-pack),2,2.99,02/07/19 16:04,"679 1st St, San Francisco, CA 94016" -152520,Lightning Charging Cable,1,14.95,02/10/19 18:25,"579 Sunset St, Atlanta, GA 30301" -152521,Apple Airpods Headphones,1,150,02/21/19 12:21,"608 Forest St, San Francisco, CA 94016" -152522,Bose SoundSport Headphones,1,99.99,02/17/19 09:08,"598 Hill St, Austin, TX 73301" -152523,Lightning Charging Cable,1,14.95,02/09/19 18:59,"662 Highland St, San Francisco, CA 94016" -152524,Wired Headphones,1,11.99,02/22/19 09:57,"576 12th St, New York City, NY 10001" -152525,Lightning Charging Cable,1,14.95,02/23/19 23:08,"679 Willow St, San Francisco, CA 94016" -152526,USB-C Charging Cable,1,11.95,02/17/19 13:44,"402 Chestnut St, Boston, MA 02215" -152527,ThinkPad Laptop,1,999.99,02/06/19 19:17,"716 Hill St, San Francisco, CA 94016" -152528,Lightning Charging Cable,1,14.95,02/14/19 05:28,"722 Cherry St, Austin, TX 73301" -152529,Wired Headphones,1,11.99,02/27/19 23:32,"960 Spruce St, San Francisco, CA 94016" -152530,27in FHD Monitor,1,149.99,02/04/19 13:55,"952 North St, San Francisco, CA 94016" -152531,20in Monitor,1,109.99,02/01/19 20:37,"665 13th St, Los Angeles, CA 90001" -152532,USB-C Charging Cable,1,11.95,02/17/19 13:03,"783 Walnut St, San Francisco, CA 94016" -152533,AA Batteries (4-pack),4,3.84,02/05/19 09:23,"631 12th St, New York City, NY 10001" -152534,AA Batteries (4-pack),1,3.84,02/28/19 09:11,"758 Chestnut St, Dallas, TX 75001" -152535,Wired Headphones,1,11.99,02/13/19 01:48,"461 Hill St, New York City, NY 10001" -152536,Google Phone,1,600,02/02/19 11:50,"972 Spruce St, Boston, MA 02215" -152537,AA Batteries (4-pack),1,3.84,02/21/19 21:13,"80 Wilson St, Dallas, TX 75001" -152538,Lightning Charging Cable,1,14.95,02/08/19 20:45,"672 Elm St, San Francisco, CA 94016" -152539,Wired Headphones,1,11.99,02/22/19 16:43,"450 Main St, New York City, NY 10001" -152540,AA Batteries (4-pack),1,3.84,02/10/19 17:18,"763 2nd St, Los Angeles, CA 90001" -152541,34in Ultrawide Monitor,1,379.99,02/06/19 13:31,"40 North St, San Francisco, CA 94016" -152542,Wired Headphones,1,11.99,02/23/19 11:10,"228 10th St, Los Angeles, CA 90001" -152543,Wired Headphones,1,11.99,02/14/19 17:52,"831 Lakeview St, New York City, NY 10001" -152544,Wired Headphones,1,11.99,02/04/19 19:35,"727 North St, Atlanta, GA 30301" -152545,AA Batteries (4-pack),2,3.84,02/19/19 17:00,"685 Hill St, Austin, TX 73301" -152546,Lightning Charging Cable,1,14.95,02/13/19 21:09,"584 Maple St, Atlanta, GA 30301" -152547,Wired Headphones,1,11.99,02/16/19 18:57,"76 4th St, Boston, MA 02215" -152548,Apple Airpods Headphones,1,150,02/22/19 16:36,"432 Meadow St, Los Angeles, CA 90001" -152549,Apple Airpods Headphones,1,150,02/13/19 13:08,"636 Hickory St, San Francisco, CA 94016" -152550,AA Batteries (4-pack),1,3.84,02/02/19 23:30,"285 River St, Seattle, WA 98101" -152551,AA Batteries (4-pack),1,3.84,02/14/19 21:56,"256 Wilson St, New York City, NY 10001" -152552,USB-C Charging Cable,1,11.95,02/07/19 14:48,"999 13th St, San Francisco, CA 94016" -152553,Wired Headphones,1,11.99,02/19/19 13:41,"180 Elm St, San Francisco, CA 94016" -152554,Flatscreen TV,1,300,02/25/19 18:06,"885 Cedar St, San Francisco, CA 94016" -152555,Lightning Charging Cable,2,14.95,02/08/19 14:21,"50 Center St, San Francisco, CA 94016" -152556,USB-C Charging Cable,1,11.95,02/18/19 01:00,"90 Lincoln St, New York City, NY 10001" -152557,LG Dryer,1,600.0,02/13/19 15:40,"303 Lake St, Los Angeles, CA 90001" -152558,20in Monitor,1,109.99,02/02/19 12:19,"594 Johnson St, Los Angeles, CA 90001" -152559,AAA Batteries (4-pack),1,2.99,02/08/19 11:54,"934 9th St, San Francisco, CA 94016" -152560,AA Batteries (4-pack),2,3.84,02/04/19 16:31,"254 Highland St, San Francisco, CA 94016" -152561,27in FHD Monitor,1,149.99,02/18/19 21:21,"681 Hill St, Los Angeles, CA 90001" -152562,27in 4K Gaming Monitor,1,389.99,02/15/19 13:28,"67 12th St, San Francisco, CA 94016" -152563,USB-C Charging Cable,1,11.95,02/11/19 06:39,"43 7th St, Boston, MA 02215" -152564,20in Monitor,1,109.99,02/13/19 22:43,"959 7th St, Austin, TX 73301" -152565,Bose SoundSport Headphones,1,99.99,02/19/19 09:03,"721 Chestnut St, Los Angeles, CA 90001" -152566,Google Phone,1,600,02/08/19 22:17,"816 13th St, Dallas, TX 75001" -152567,Apple Airpods Headphones,1,150,02/18/19 19:23,"282 Lakeview St, Boston, MA 02215" -152568,ThinkPad Laptop,1,999.99,02/15/19 12:18,"413 Ridge St, New York City, NY 10001" -152569,Lightning Charging Cable,1,14.95,02/09/19 12:29,"134 Pine St, Los Angeles, CA 90001" -152570,Wired Headphones,1,11.99,02/06/19 11:32,"963 River St, San Francisco, CA 94016" -152571,Flatscreen TV,1,300,02/11/19 16:32,"314 Cherry St, New York City, NY 10001" -152572,AAA Batteries (4-pack),1,2.99,02/08/19 16:15,"954 Church St, Boston, MA 02215" -152573,Wired Headphones,1,11.99,02/01/19 21:36,"739 Jefferson St, Atlanta, GA 30301" -152574,USB-C Charging Cable,1,11.95,02/28/19 14:04,"12 West St, Portland, OR 97035" -152575,AA Batteries (4-pack),1,3.84,02/16/19 20:15,"132 Highland St, New York City, NY 10001" -152576,Lightning Charging Cable,1,14.95,02/03/19 09:33,"40 1st St, San Francisco, CA 94016" -152577,34in Ultrawide Monitor,1,379.99,02/15/19 10:36,"884 Walnut St, New York City, NY 10001" -152578,34in Ultrawide Monitor,1,379.99,02/22/19 15:06,"397 Lincoln St, Boston, MA 02215" -152579,Lightning Charging Cable,1,14.95,02/09/19 18:07,"51 Lake St, Dallas, TX 75001" -152580,AA Batteries (4-pack),1,3.84,02/16/19 00:32,"959 South St, Boston, MA 02215" -152581,Bose SoundSport Headphones,1,99.99,02/08/19 09:18,"218 4th St, Boston, MA 02215" -152582,Lightning Charging Cable,1,14.95,02/07/19 13:48,"356 Center St, Boston, MA 02215" -152583,ThinkPad Laptop,1,999.99,02/19/19 15:38,"707 West St, Los Angeles, CA 90001" -152584,Apple Airpods Headphones,1,150,02/01/19 21:47,"85 6th St, San Francisco, CA 94016" -152585,AA Batteries (4-pack),1,3.84,02/18/19 01:23,"770 South St, New York City, NY 10001" -152586,Google Phone,1,600,02/18/19 08:32,"531 Church St, Los Angeles, CA 90001" -152587,Google Phone,1,600,02/09/19 19:04,"115 14th St, Portland, OR 97035" -152588,Apple Airpods Headphones,1,150,02/14/19 03:50,"982 South St, Dallas, TX 75001" -152589,iPhone,1,700,02/26/19 14:28,"222 West St, San Francisco, CA 94016" -152590,Apple Airpods Headphones,1,150,02/08/19 23:06,"428 Willow St, San Francisco, CA 94016" -152591,27in FHD Monitor,1,149.99,02/23/19 16:37,"589 South St, Seattle, WA 98101" -152592,AA Batteries (4-pack),1,3.84,02/02/19 19:05,"625 6th St, Boston, MA 02215" -152593,AAA Batteries (4-pack),1,2.99,02/16/19 21:46,"862 Washington St, Boston, MA 02215" -152593,iPhone,1,700,02/16/19 21:46,"862 Washington St, Boston, MA 02215" -152594,Macbook Pro Laptop,1,1700,02/25/19 09:49,"26 Madison St, Portland, OR 97035" -152595,Lightning Charging Cable,1,14.95,02/18/19 23:00,"998 Washington St, San Francisco, CA 94016" -152596,Lightning Charging Cable,1,14.95,02/02/19 16:19,"842 Meadow St, San Francisco, CA 94016" -152597,Wired Headphones,1,11.99,02/01/19 17:08,"478 Church St, San Francisco, CA 94016" -152598,27in 4K Gaming Monitor,1,389.99,02/11/19 09:43,"921 9th St, Boston, MA 02215" -152599,AAA Batteries (4-pack),1,2.99,02/08/19 22:26,"283 West St, Portland, OR 97035" -152600,USB-C Charging Cable,1,11.95,02/26/19 14:14,"275 1st St, San Francisco, CA 94016" -152601,Bose SoundSport Headphones,1,99.99,02/04/19 16:57,"574 Sunset St, New York City, NY 10001" -152602,Lightning Charging Cable,1,14.95,02/12/19 17:23,"243 13th St, San Francisco, CA 94016" -152603,USB-C Charging Cable,1,11.95,02/06/19 11:25,"942 Lake St, Los Angeles, CA 90001" -152604,USB-C Charging Cable,1,11.95,02/09/19 09:50,"857 Chestnut St, Dallas, TX 75001" -152605,AA Batteries (4-pack),1,3.84,02/27/19 19:58,"536 5th St, Portland, OR 97035" -152606,AAA Batteries (4-pack),1,2.99,02/24/19 20:38,"44 Adams St, San Francisco, CA 94016" -152607,Flatscreen TV,1,300,02/14/19 14:16,"475 Highland St, Boston, MA 02215" -152608,34in Ultrawide Monitor,1,379.99,02/15/19 18:05,"264 Chestnut St, Austin, TX 73301" -152609,iPhone,1,700,02/24/19 19:57,"274 Forest St, Seattle, WA 98101" -152610,Google Phone,1,600,02/24/19 12:37,"559 Cherry St, San Francisco, CA 94016" -152611,AAA Batteries (4-pack),5,2.99,02/25/19 05:54,"15 Chestnut St, Boston, MA 02215" -152612,Apple Airpods Headphones,1,150,02/11/19 00:08,"449 West St, Seattle, WA 98101" -152613,Google Phone,1,600,02/13/19 14:50,"283 Hickory St, Portland, OR 97035" -152613,Bose SoundSport Headphones,1,99.99,02/13/19 14:50,"283 Hickory St, Portland, OR 97035" -152614,27in 4K Gaming Monitor,1,389.99,02/08/19 12:01,"642 Pine St, Portland, OR 97035" -152615,20in Monitor,1,109.99,02/02/19 15:26,"184 Center St, Dallas, TX 75001" -152616,Wired Headphones,1,11.99,02/20/19 09:28,"604 Maple St, San Francisco, CA 94016" -152617,Apple Airpods Headphones,1,150,02/23/19 02:49,"636 Pine St, San Francisco, CA 94016" -152618,Apple Airpods Headphones,1,150,02/19/19 15:14,"544 Lincoln St, Los Angeles, CA 90001" -152619,Lightning Charging Cable,1,14.95,02/26/19 12:16,"597 8th St, Portland, OR 97035" -152620,Apple Airpods Headphones,1,150,02/22/19 22:42,"240 Center St, Dallas, TX 75001" -152621,AA Batteries (4-pack),1,3.84,02/12/19 08:51,"342 10th St, Portland, OR 97035" -152622,34in Ultrawide Monitor,1,379.99,02/10/19 21:41,"920 Cherry St, Portland, OR 97035" -152623,USB-C Charging Cable,1,11.95,02/01/19 07:47,"425 Park St, Los Angeles, CA 90001" -152624,AAA Batteries (4-pack),1,2.99,02/03/19 20:23,"281 Willow St, San Francisco, CA 94016" -152625,AAA Batteries (4-pack),1,2.99,02/18/19 19:57,"693 Maple St, Los Angeles, CA 90001" -152626,USB-C Charging Cable,1,11.95,02/12/19 20:08,"411 Cedar St, San Francisco, CA 94016" -152627,Apple Airpods Headphones,1,150,02/26/19 20:29,"914 Johnson St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -152628,AAA Batteries (4-pack),2,2.99,02/02/19 12:22,"847 Church St, Dallas, TX 75001" -152629,Apple Airpods Headphones,1,150,02/02/19 16:42,"582 1st St, New York City, NY 10001" -152630,iPhone,1,700,02/04/19 09:45,"816 Center St, Atlanta, GA 30301" -152630,Apple Airpods Headphones,1,150,02/04/19 09:45,"816 Center St, Atlanta, GA 30301" -152631,Apple Airpods Headphones,1,150,02/20/19 09:21,"289 Hickory St, Boston, MA 02215" -152632,Wired Headphones,1,11.99,02/22/19 22:42,"934 Dogwood St, Los Angeles, CA 90001" -152633,20in Monitor,1,109.99,02/24/19 18:58,"479 11th St, Atlanta, GA 30301" -152634,Google Phone,1,600,02/01/19 08:57,"317 4th St, Boston, MA 02215" -152635,USB-C Charging Cable,1,11.95,02/01/19 16:49,"14 Elm St, New York City, NY 10001" -152636,Google Phone,1,600,02/25/19 12:08,"784 Spruce St, Portland, OR 97035" -152637,Flatscreen TV,1,300,02/03/19 20:00,"317 Elm St, Los Angeles, CA 90001" -152638,Vareebadd Phone,1,400,02/14/19 13:58,"647 Highland St, Boston, MA 02215" -152639,Flatscreen TV,1,300,02/13/19 14:05,"874 2nd St, San Francisco, CA 94016" -152640,AA Batteries (4-pack),1,3.84,02/26/19 16:31,"157 Main St, Los Angeles, CA 90001" -152641,Bose SoundSport Headphones,1,99.99,02/13/19 21:34,"255 Johnson St, Dallas, TX 75001" -152642,Wired Headphones,1,11.99,02/24/19 11:32,"672 North St, Seattle, WA 98101" -152643,Bose SoundSport Headphones,1,99.99,02/01/19 16:37,"896 North St, San Francisco, CA 94016" -152644,Bose SoundSport Headphones,1,99.99,02/14/19 21:16,"751 South St, San Francisco, CA 94016" -152644,27in FHD Monitor,1,149.99,02/14/19 21:16,"751 South St, San Francisco, CA 94016" -152645,AAA Batteries (4-pack),2,2.99,02/22/19 09:53,"479 Madison St, Austin, TX 73301" -152646,Wired Headphones,1,11.99,02/21/19 18:42,"881 Willow St, San Francisco, CA 94016" -152647,27in FHD Monitor,1,149.99,02/17/19 23:04,"994 13th St, Dallas, TX 75001" -152648,Wired Headphones,1,11.99,02/20/19 18:26,"923 2nd St, Seattle, WA 98101" -152649,AA Batteries (4-pack),1,3.84,02/24/19 20:05,"121 Park St, Boston, MA 02215" -152650,AA Batteries (4-pack),1,3.84,02/22/19 07:06,"45 Forest St, New York City, NY 10001" -152651,AAA Batteries (4-pack),1,2.99,02/25/19 09:12,"678 Willow St, San Francisco, CA 94016" -152652,20in Monitor,1,109.99,02/04/19 00:52,"526 14th St, New York City, NY 10001" -152653,AAA Batteries (4-pack),2,2.99,02/02/19 12:08,"394 Chestnut St, Portland, OR 97035" -152654,Apple Airpods Headphones,1,150,02/03/19 13:45,"897 Jefferson St, Los Angeles, CA 90001" -152655,Bose SoundSport Headphones,1,99.99,02/06/19 11:34,"413 11th St, San Francisco, CA 94016" -152656,AA Batteries (4-pack),1,3.84,02/23/19 13:13,"431 8th St, San Francisco, CA 94016" -152657,Bose SoundSport Headphones,1,99.99,02/08/19 10:54,"278 Dogwood St, San Francisco, CA 94016" -152658,Apple Airpods Headphones,1,150,02/10/19 18:53,"105 Pine St, Portland, ME 04101" -152659,27in FHD Monitor,1,149.99,02/28/19 11:29,"397 Maple St, Los Angeles, CA 90001" -152660,Lightning Charging Cable,1,14.95,02/24/19 16:33,"264 Maple St, Los Angeles, CA 90001" -152661,Bose SoundSport Headphones,1,99.99,02/02/19 08:11,"802 Hill St, Los Angeles, CA 90001" -152662,27in FHD Monitor,1,149.99,02/16/19 12:29,"967 Forest St, Atlanta, GA 30301" -152663,AAA Batteries (4-pack),1,2.99,02/17/19 09:54,"839 Cedar St, Los Angeles, CA 90001" -152664,Apple Airpods Headphones,1,150,02/02/19 17:15,"477 9th St, New York City, NY 10001" -152665,ThinkPad Laptop,1,999.99,02/27/19 12:10,"833 Washington St, Portland, OR 97035" -152666,Google Phone,2,600,02/18/19 17:11,"662 10th St, San Francisco, CA 94016" -152666,Bose SoundSport Headphones,1,99.99,02/18/19 17:11,"662 10th St, San Francisco, CA 94016" -152667,34in Ultrawide Monitor,1,379.99,02/20/19 15:55,"573 9th St, Atlanta, GA 30301" -152668,Lightning Charging Cable,1,14.95,02/13/19 16:45,"329 Madison St, Los Angeles, CA 90001" -152669,USB-C Charging Cable,1,11.95,02/22/19 23:12,"488 11th St, New York City, NY 10001" -152670,ThinkPad Laptop,1,999.99,02/01/19 12:29,"283 13th St, Los Angeles, CA 90001" -152671,Macbook Pro Laptop,1,1700,02/15/19 22:37,"676 Hill St, Austin, TX 73301" -152672,Lightning Charging Cable,1,14.95,02/13/19 19:37,"899 12th St, San Francisco, CA 94016" -152673,20in Monitor,1,109.99,02/22/19 16:17,"522 Cedar St, New York City, NY 10001" -152674,USB-C Charging Cable,1,11.95,02/16/19 21:08,"218 Maple St, Portland, OR 97035" -152675,Wired Headphones,2,11.99,02/12/19 15:24,"170 Dogwood St, San Francisco, CA 94016" -152676,AAA Batteries (4-pack),1,2.99,02/04/19 11:09,"499 Cedar St, San Francisco, CA 94016" -152677,AAA Batteries (4-pack),1,2.99,02/22/19 11:05,"134 11th St, Boston, MA 02215" -152678,Bose SoundSport Headphones,1,99.99,02/06/19 20:02,"834 10th St, New York City, NY 10001" -152679,USB-C Charging Cable,1,11.95,02/07/19 14:29,"883 12th St, Los Angeles, CA 90001" -152680,USB-C Charging Cable,1,11.95,02/19/19 02:02,"981 Lake St, Dallas, TX 75001" -152681,Bose SoundSport Headphones,1,99.99,02/14/19 12:39,"223 Walnut St, San Francisco, CA 94016" -152682,Bose SoundSport Headphones,1,99.99,02/27/19 12:12,"865 South St, Los Angeles, CA 90001" -152683,Google Phone,1,600,02/04/19 18:36,"544 Jefferson St, San Francisco, CA 94016" -152684,Wired Headphones,1,11.99,02/03/19 12:48,"817 Pine St, San Francisco, CA 94016" -152685,AA Batteries (4-pack),1,3.84,02/14/19 19:19,"591 Highland St, Dallas, TX 75001" -152686,USB-C Charging Cable,1,11.95,02/14/19 18:59,"225 Main St, Los Angeles, CA 90001" -152687,USB-C Charging Cable,1,11.95,02/13/19 11:40,"206 Willow St, San Francisco, CA 94016" -152688,Lightning Charging Cable,1,14.95,02/11/19 18:28,"229 Wilson St, San Francisco, CA 94016" -152689,27in FHD Monitor,1,149.99,02/06/19 13:01,"132 Park St, Los Angeles, CA 90001" -152690,Wired Headphones,1,11.99,02/01/19 21:40,"604 5th St, New York City, NY 10001" -152691,AA Batteries (4-pack),1,3.84,02/25/19 15:04,"647 Elm St, Los Angeles, CA 90001" -152692,AA Batteries (4-pack),1,3.84,02/25/19 09:15,"102 Forest St, Los Angeles, CA 90001" -152693,Wired Headphones,1,11.99,02/02/19 08:04,"551 Sunset St, Atlanta, GA 30301" -152694,Wired Headphones,2,11.99,02/01/19 22:21,"621 Chestnut St, Los Angeles, CA 90001" -152695,AA Batteries (4-pack),1,3.84,02/06/19 15:23,"781 Washington St, Boston, MA 02215" -152696,AAA Batteries (4-pack),1,2.99,02/16/19 19:28,"558 Elm St, Dallas, TX 75001" -152697,AAA Batteries (4-pack),1,2.99,02/15/19 20:34,"576 Church St, San Francisco, CA 94016" -152698,Wired Headphones,2,11.99,02/27/19 22:57,"392 Park St, Atlanta, GA 30301" -152699,ThinkPad Laptop,1,999.99,02/06/19 09:45,"910 Elm St, Dallas, TX 75001" -152700,27in 4K Gaming Monitor,1,389.99,02/16/19 20:22,"453 South St, Boston, MA 02215" -152701,34in Ultrawide Monitor,1,379.99,02/10/19 16:34,"774 Maple St, Boston, MA 02215" -152702,Flatscreen TV,1,300,02/06/19 20:21,"111 13th St, New York City, NY 10001" -152703,Lightning Charging Cable,1,14.95,02/19/19 05:47,"944 Elm St, Dallas, TX 75001" -152704,Lightning Charging Cable,1,14.95,02/04/19 20:06,"948 Hickory St, Boston, MA 02215" -152705,AA Batteries (4-pack),1,3.84,02/15/19 15:58,"851 Johnson St, New York City, NY 10001" -152706,AAA Batteries (4-pack),1,2.99,02/14/19 19:42,"213 Lincoln St, Atlanta, GA 30301" -152707,Macbook Pro Laptop,1,1700,02/03/19 12:24,"540 Washington St, Los Angeles, CA 90001" -152708,34in Ultrawide Monitor,1,379.99,02/20/19 14:45,"274 Highland St, Atlanta, GA 30301" -152709,Apple Airpods Headphones,1,150,02/21/19 06:09,"656 Park St, Los Angeles, CA 90001" -152710,USB-C Charging Cable,1,11.95,02/12/19 10:54,"439 13th St, Dallas, TX 75001" -152711,USB-C Charging Cable,1,11.95,02/26/19 17:15,"695 River St, Los Angeles, CA 90001" -152712,27in FHD Monitor,1,149.99,02/14/19 21:43,"725 10th St, Dallas, TX 75001" -152713,USB-C Charging Cable,1,11.95,02/05/19 10:54,"264 Park St, Seattle, WA 98101" -152714,Wired Headphones,1,11.99,02/17/19 14:03,"103 12th St, Dallas, TX 75001" -152715,27in FHD Monitor,1,149.99,02/13/19 13:18,"549 River St, Boston, MA 02215" -152716,Google Phone,1,600,02/22/19 22:37,"559 Pine St, Boston, MA 02215" -152717,34in Ultrawide Monitor,1,379.99,02/20/19 11:47,"473 Adams St, Portland, OR 97035" -152718,Wired Headphones,1,11.99,02/16/19 17:14,"82 Spruce St, Los Angeles, CA 90001" -152719,USB-C Charging Cable,1,11.95,02/17/19 16:49,"798 Spruce St, San Francisco, CA 94016" -152720,Apple Airpods Headphones,1,150,02/02/19 21:59,"705 Chestnut St, San Francisco, CA 94016" -152721,AA Batteries (4-pack),1,3.84,02/08/19 17:45,"311 Cedar St, New York City, NY 10001" -152722,ThinkPad Laptop,1,999.99,02/01/19 20:39,"856 Maple St, San Francisco, CA 94016" -152723,AAA Batteries (4-pack),2,2.99,02/05/19 15:57,"797 Cedar St, San Francisco, CA 94016" -152724,iPhone,1,700,02/12/19 16:53,"80 6th St, Los Angeles, CA 90001" -152725,Apple Airpods Headphones,1,150,02/26/19 15:18,"734 6th St, New York City, NY 10001" -152726,AAA Batteries (4-pack),2,2.99,02/23/19 15:15,"89 5th St, San Francisco, CA 94016" -152727,AAA Batteries (4-pack),1,2.99,02/13/19 18:59,"92 Park St, Atlanta, GA 30301" -152727,Macbook Pro Laptop,1,1700,02/13/19 18:59,"92 Park St, Atlanta, GA 30301" -152728,34in Ultrawide Monitor,1,379.99,02/07/19 01:28,"216 Washington St, Austin, TX 73301" -152729,USB-C Charging Cable,1,11.95,02/08/19 20:57,"612 Center St, Atlanta, GA 30301" -152730,Macbook Pro Laptop,1,1700,02/28/19 13:59,"429 Elm St, Los Angeles, CA 90001" -152731,Flatscreen TV,1,300,02/07/19 11:51,"674 7th St, Atlanta, GA 30301" -152731,Bose SoundSport Headphones,1,99.99,02/07/19 11:51,"674 7th St, Atlanta, GA 30301" -152732,Apple Airpods Headphones,1,150,02/27/19 12:51,"880 Elm St, New York City, NY 10001" -152733,AA Batteries (4-pack),1,3.84,02/10/19 13:41,"65 7th St, New York City, NY 10001" -152734,34in Ultrawide Monitor,1,379.99,02/08/19 14:19,"412 Maple St, San Francisco, CA 94016" -152735,Lightning Charging Cable,2,14.95,02/24/19 19:12,"6 Hill St, San Francisco, CA 94016" -152736,Bose SoundSport Headphones,1,99.99,02/26/19 17:42,"489 Lincoln St, Los Angeles, CA 90001" -152737,Wired Headphones,1,11.99,02/21/19 22:38,"291 Wilson St, Los Angeles, CA 90001" -152738,20in Monitor,1,109.99,02/27/19 20:15,"975 1st St, Boston, MA 02215" -152739,34in Ultrawide Monitor,1,379.99,02/20/19 13:29,"51 Spruce St, Boston, MA 02215" -152740,USB-C Charging Cable,1,11.95,02/20/19 18:11,"43 Adams St, Portland, OR 97035" -152741,AAA Batteries (4-pack),1,2.99,02/22/19 14:54,"630 South St, San Francisco, CA 94016" -152742,ThinkPad Laptop,1,999.99,02/13/19 08:00,"641 13th St, Atlanta, GA 30301" -152743,AA Batteries (4-pack),1,3.84,02/01/19 19:00,"645 North St, Boston, MA 02215" -152744,Wired Headphones,1,11.99,02/21/19 08:53,"989 Elm St, Austin, TX 73301" -152745,Bose SoundSport Headphones,1,99.99,02/20/19 19:16,"745 Maple St, San Francisco, CA 94016" -152746,Macbook Pro Laptop,1,1700,02/16/19 13:00,"349 4th St, Atlanta, GA 30301" -152747,27in FHD Monitor,1,149.99,02/28/19 15:28,"617 Sunset St, Atlanta, GA 30301" -152748,iPhone,1,700,02/05/19 17:04,"641 Lakeview St, Dallas, TX 75001" -152748,Wired Headphones,1,11.99,02/05/19 17:04,"641 Lakeview St, Dallas, TX 75001" -152749,AAA Batteries (4-pack),1,2.99,02/15/19 19:46,"333 South St, New York City, NY 10001" -152750,AA Batteries (4-pack),1,3.84,02/05/19 19:54,"733 Spruce St, San Francisco, CA 94016" -152751,27in 4K Gaming Monitor,1,389.99,02/11/19 19:00,"894 Cedar St, Austin, TX 73301" -152752,Lightning Charging Cable,1,14.95,02/13/19 17:26,"498 10th St, Dallas, TX 75001" -152753,Bose SoundSport Headphones,1,99.99,02/11/19 18:23,"648 South St, Los Angeles, CA 90001" -152754,Bose SoundSport Headphones,1,99.99,02/13/19 21:10,"199 Pine St, Seattle, WA 98101" -152755,Lightning Charging Cable,1,14.95,02/11/19 12:50,"610 Elm St, New York City, NY 10001" -152756,ThinkPad Laptop,1,999.99,02/21/19 06:29,"496 Adams St, Boston, MA 02215" -152757,Apple Airpods Headphones,1,150,02/10/19 20:17,"997 Highland St, New York City, NY 10001" -152758,AA Batteries (4-pack),1,3.84,02/15/19 14:48,"912 Cedar St, Dallas, TX 75001" -152759,Wired Headphones,1,11.99,02/06/19 07:45,"484 Chestnut St, New York City, NY 10001" -152760,Wired Headphones,1,11.99,02/22/19 12:34,"708 Elm St, New York City, NY 10001" -152761,AAA Batteries (4-pack),1,2.99,02/21/19 14:53,"414 Elm St, Los Angeles, CA 90001" -152762,AA Batteries (4-pack),1,3.84,02/02/19 15:10,"670 Cedar St, Boston, MA 02215" -152762,27in 4K Gaming Monitor,1,389.99,02/02/19 15:10,"670 Cedar St, Boston, MA 02215" -152763,Wired Headphones,1,11.99,02/14/19 19:19,"361 2nd St, Boston, MA 02215" -152764,AA Batteries (4-pack),1,3.84,02/25/19 00:54,"404 10th St, Los Angeles, CA 90001" -152765,AAA Batteries (4-pack),1,2.99,02/21/19 14:38,"555 Lincoln St, Portland, OR 97035" -152766,Wired Headphones,1,11.99,02/24/19 15:14,"62 Main St, Los Angeles, CA 90001" -152767,Lightning Charging Cable,1,14.95,02/20/19 10:47,"735 Jefferson St, Atlanta, GA 30301" -152768,AA Batteries (4-pack),2,3.84,02/27/19 22:48,"640 Hickory St, Dallas, TX 75001" -152769,ThinkPad Laptop,1,999.99,02/09/19 17:31,"376 Meadow St, Austin, TX 73301" -152770,AAA Batteries (4-pack),4,2.99,02/24/19 23:58,"833 Meadow St, San Francisco, CA 94016" -152771,AA Batteries (4-pack),1,3.84,02/20/19 10:17,"897 Elm St, Los Angeles, CA 90001" -152772,Wired Headphones,1,11.99,02/02/19 22:37,"637 Hickory St, Portland, OR 97035" -152773,AAA Batteries (4-pack),1,2.99,02/14/19 13:43,"511 Walnut St, San Francisco, CA 94016" -152774,AAA Batteries (4-pack),1,2.99,02/19/19 19:10,"663 13th St, Seattle, WA 98101" -152775,AAA Batteries (4-pack),1,2.99,02/13/19 11:40,"933 Lake St, San Francisco, CA 94016" -152776,27in 4K Gaming Monitor,1,389.99,02/06/19 08:12,"80 Lakeview St, San Francisco, CA 94016" -152777,34in Ultrawide Monitor,1,379.99,02/11/19 17:01,"396 14th St, Portland, OR 97035" -152778,iPhone,1,700,02/19/19 20:13,"415 Willow St, San Francisco, CA 94016" -152779,AAA Batteries (4-pack),1,2.99,02/17/19 16:55,"254 South St, Portland, ME 04101" -152780,iPhone,1,700,02/17/19 15:04,"879 Lincoln St, Boston, MA 02215" -152781,Apple Airpods Headphones,1,150,02/16/19 06:35,"656 Elm St, Seattle, WA 98101" -152782,Lightning Charging Cable,1,14.95,02/04/19 08:35,"526 Madison St, Portland, ME 04101" -152783,Lightning Charging Cable,1,14.95,02/09/19 15:12,"481 Washington St, Atlanta, GA 30301" -152784,AAA Batteries (4-pack),3,2.99,02/13/19 08:39,"203 Hill St, Dallas, TX 75001" -152785,27in 4K Gaming Monitor,1,389.99,02/16/19 22:40,"685 Chestnut St, Seattle, WA 98101" -152786,iPhone,1,700,02/21/19 11:27,"79 Highland St, Austin, TX 73301" -152786,Lightning Charging Cable,1,14.95,02/21/19 11:27,"79 Highland St, Austin, TX 73301" -152787,Wired Headphones,1,11.99,02/04/19 14:30,"60 Wilson St, Dallas, TX 75001" -152788,Apple Airpods Headphones,1,150,02/08/19 09:08,"194 13th St, Dallas, TX 75001" -152789,Lightning Charging Cable,1,14.95,02/12/19 12:34,"955 5th St, San Francisco, CA 94016" -152790,Lightning Charging Cable,1,14.95,02/21/19 23:41,"56 North St, Dallas, TX 75001" -152791,Wired Headphones,1,11.99,02/27/19 22:09,"11 13th St, New York City, NY 10001" -152792,34in Ultrawide Monitor,1,379.99,02/21/19 09:13,"134 Chestnut St, Seattle, WA 98101" -152793,AA Batteries (4-pack),2,3.84,02/12/19 12:25,"435 Meadow St, San Francisco, CA 94016" -152794,Macbook Pro Laptop,1,1700,02/10/19 09:58,"638 Lake St, Atlanta, GA 30301" -152794,27in 4K Gaming Monitor,1,389.99,02/10/19 09:58,"638 Lake St, Atlanta, GA 30301" -152795,AAA Batteries (4-pack),3,2.99,02/20/19 19:09,"396 Hickory St, Atlanta, GA 30301" -152796,Apple Airpods Headphones,1,150,02/24/19 19:26,"359 Walnut St, New York City, NY 10001" -152797,AA Batteries (4-pack),2,3.84,02/04/19 18:15,"461 Highland St, Seattle, WA 98101" -152798,AA Batteries (4-pack),1,3.84,02/01/19 17:27,"673 Ridge St, San Francisco, CA 94016" -152799,Apple Airpods Headphones,1,150,02/21/19 14:46,"827 5th St, San Francisco, CA 94016" -152800,34in Ultrawide Monitor,1,379.99,02/01/19 10:33,"789 West St, Atlanta, GA 30301" -152801,Apple Airpods Headphones,1,150,02/05/19 17:47,"294 Main St, San Francisco, CA 94016" -152801,27in FHD Monitor,1,149.99,02/05/19 17:47,"294 Main St, San Francisco, CA 94016" -152802,Flatscreen TV,1,300,02/15/19 04:27,"568 9th St, Boston, MA 02215" -152803,Google Phone,1,600,02/27/19 22:21,"407 2nd St, Los Angeles, CA 90001" -,,,,, -152804,Apple Airpods Headphones,1,150,02/28/19 10:42,"348 Cedar St, Los Angeles, CA 90001" -152805,USB-C Charging Cable,1,11.95,02/20/19 14:07,"196 River St, San Francisco, CA 94016" -152806,Apple Airpods Headphones,1,150,02/10/19 06:10,"707 Walnut St, Dallas, TX 75001" -152807,AA Batteries (4-pack),1,3.84,02/08/19 17:00,"803 5th St, San Francisco, CA 94016" -152808,AA Batteries (4-pack),2,3.84,02/28/19 22:12,"857 Chestnut St, Seattle, WA 98101" -152809,Lightning Charging Cable,1,14.95,02/05/19 20:31,"325 Walnut St, Dallas, TX 75001" -152810,Wired Headphones,1,11.99,02/05/19 15:02,"440 Elm St, Los Angeles, CA 90001" -152811,USB-C Charging Cable,1,11.95,02/10/19 18:55,"554 North St, San Francisco, CA 94016" -152812,AA Batteries (4-pack),1,3.84,02/09/19 10:56,"277 River St, San Francisco, CA 94016" -152813,Apple Airpods Headphones,1,150,02/15/19 21:02,"786 Lakeview St, New York City, NY 10001" -152814,USB-C Charging Cable,1,11.95,02/27/19 20:17,"512 Willow St, Portland, OR 97035" -152815,Vareebadd Phone,1,400,02/07/19 17:43,"221 5th St, Dallas, TX 75001" -152816,AAA Batteries (4-pack),1,2.99,02/27/19 18:11,"956 South St, San Francisco, CA 94016" -152817,USB-C Charging Cable,1,11.95,02/28/19 19:21,"531 1st St, San Francisco, CA 94016" -152818,USB-C Charging Cable,1,11.95,02/27/19 09:46,"318 Lake St, Los Angeles, CA 90001" -152819,20in Monitor,1,109.99,02/15/19 13:14,"215 11th St, San Francisco, CA 94016" -152820,AA Batteries (4-pack),1,3.84,02/27/19 10:00,"41 Washington St, San Francisco, CA 94016" -152821,20in Monitor,1,109.99,02/24/19 18:55,"295 Cherry St, Boston, MA 02215" -152822,Lightning Charging Cable,1,14.95,02/18/19 19:42,"50 14th St, Portland, OR 97035" -152823,AAA Batteries (4-pack),1,2.99,02/13/19 12:37,"769 Ridge St, Austin, TX 73301" -152824,USB-C Charging Cable,1,11.95,02/06/19 13:02,"411 West St, New York City, NY 10001" -152825,AA Batteries (4-pack),1,3.84,02/07/19 17:18,"371 Meadow St, Seattle, WA 98101" -152826,USB-C Charging Cable,2,11.95,02/04/19 12:08,"268 Elm St, Los Angeles, CA 90001" -152827,AAA Batteries (4-pack),1,2.99,02/09/19 20:11,"620 Jefferson St, San Francisco, CA 94016" -152828,Wired Headphones,1,11.99,02/27/19 11:17,"59 Jefferson St, Los Angeles, CA 90001" -152829,Apple Airpods Headphones,1,150,02/15/19 10:53,"645 Lakeview St, Boston, MA 02215" -152830,AAA Batteries (4-pack),1,2.99,02/13/19 00:13,"657 14th St, New York City, NY 10001" -152831,Lightning Charging Cable,2,14.95,02/17/19 15:26,"769 Pine St, Los Angeles, CA 90001" -152832,AAA Batteries (4-pack),3,2.99,02/20/19 13:51,"383 1st St, San Francisco, CA 94016" -152833,Apple Airpods Headphones,1,150,02/16/19 11:56,"662 4th St, New York City, NY 10001" -152834,AA Batteries (4-pack),2,3.84,02/20/19 13:59,"369 Adams St, San Francisco, CA 94016" -152835,AAA Batteries (4-pack),3,2.99,02/19/19 19:18,"710 Hill St, New York City, NY 10001" -152836,AA Batteries (4-pack),1,3.84,02/26/19 18:03,"203 West St, San Francisco, CA 94016" -152837,Lightning Charging Cable,1,14.95,02/09/19 06:38,"302 Lake St, New York City, NY 10001" -152838,Apple Airpods Headphones,1,150,02/04/19 16:21,"901 Madison St, Los Angeles, CA 90001" -152839,27in 4K Gaming Monitor,1,389.99,02/20/19 20:46,"793 6th St, New York City, NY 10001" -152840,iPhone,1,700,02/26/19 23:47,"683 Pine St, Atlanta, GA 30301" -152840,Lightning Charging Cable,1,14.95,02/26/19 23:47,"683 Pine St, Atlanta, GA 30301" -152841,ThinkPad Laptop,1,999.99,02/06/19 10:00,"762 14th St, San Francisco, CA 94016" -152842,USB-C Charging Cable,1,11.95,02/23/19 18:51,"256 Lincoln St, San Francisco, CA 94016" -152843,Wired Headphones,1,11.99,02/12/19 15:34,"802 Walnut St, Portland, OR 97035" -152844,AA Batteries (4-pack),1,3.84,02/27/19 16:54,"515 Lakeview St, San Francisco, CA 94016" -152845,AA Batteries (4-pack),1,3.84,02/23/19 16:51,"679 Walnut St, Portland, OR 97035" -152846,AAA Batteries (4-pack),1,2.99,02/22/19 17:35,"669 Dogwood St, San Francisco, CA 94016" -152847,Wired Headphones,1,11.99,02/28/19 11:34,"430 West St, San Francisco, CA 94016" -152848,AAA Batteries (4-pack),1,2.99,02/01/19 09:01,"606 Willow St, New York City, NY 10001" -152849,AAA Batteries (4-pack),1,2.99,02/24/19 13:24,"570 Ridge St, Dallas, TX 75001" -152850,iPhone,1,700,02/18/19 21:01,"983 West St, Atlanta, GA 30301" -152851,Lightning Charging Cable,1,14.95,02/01/19 09:47,"45 Willow St, San Francisco, CA 94016" -152852,iPhone,1,700,02/28/19 08:47,"748 8th St, Seattle, WA 98101" -152853,ThinkPad Laptop,1,999.99,02/21/19 00:13,"494 Walnut St, Dallas, TX 75001" -152854,Wired Headphones,1,11.99,02/20/19 18:45,"143 Wilson St, Boston, MA 02215" -152855,AA Batteries (4-pack),1,3.84,02/24/19 19:10,"749 Hill St, New York City, NY 10001" -152856,Lightning Charging Cable,1,14.95,02/18/19 16:00,"764 Highland St, San Francisco, CA 94016" -152857,Bose SoundSport Headphones,1,99.99,02/05/19 15:32,"616 Cedar St, San Francisco, CA 94016" -152858,Bose SoundSport Headphones,1,99.99,02/27/19 15:29,"766 Hickory St, Los Angeles, CA 90001" -152859,27in FHD Monitor,1,149.99,02/24/19 12:28,"745 11th St, New York City, NY 10001" -152860,Google Phone,1,600,02/26/19 17:07,"145 2nd St, Austin, TX 73301" -152861,AAA Batteries (4-pack),2,2.99,02/17/19 10:51,"211 Elm St, Seattle, WA 98101" -152862,Bose SoundSport Headphones,1,99.99,02/13/19 10:31,"680 River St, Seattle, WA 98101" -152863,AAA Batteries (4-pack),1,2.99,02/17/19 14:47,"433 Meadow St, San Francisco, CA 94016" -152864,27in FHD Monitor,1,149.99,02/11/19 12:48,"483 Dogwood St, Boston, MA 02215" -152865,AAA Batteries (4-pack),1,2.99,02/10/19 19:08,"571 4th St, Boston, MA 02215" -152866,Apple Airpods Headphones,1,150,02/28/19 11:46,"947 Willow St, San Francisco, CA 94016" -152867,iPhone,1,700,02/14/19 17:48,"998 Cedar St, San Francisco, CA 94016" -152867,Apple Airpods Headphones,1,150,02/14/19 17:48,"998 Cedar St, San Francisco, CA 94016" -152868,AAA Batteries (4-pack),1,2.99,02/18/19 14:26,"182 5th St, Los Angeles, CA 90001" -152869,Lightning Charging Cable,2,14.95,02/09/19 10:50,"147 Lincoln St, Seattle, WA 98101" -152870,ThinkPad Laptop,1,999.99,02/01/19 08:37,"841 14th St, Dallas, TX 75001" -152871,Bose SoundSport Headphones,1,99.99,02/26/19 13:45,"116 Pine St, San Francisco, CA 94016" -152872,Flatscreen TV,1,300,02/28/19 14:58,"185 Ridge St, Los Angeles, CA 90001" -152873,AAA Batteries (4-pack),1,2.99,02/16/19 15:24,"733 Wilson St, New York City, NY 10001" -152874,USB-C Charging Cable,1,11.95,02/20/19 10:13,"297 Dogwood St, San Francisco, CA 94016" -152875,Lightning Charging Cable,1,14.95,02/28/19 21:11,"353 Spruce St, San Francisco, CA 94016" -152875,34in Ultrawide Monitor,1,379.99,02/28/19 21:11,"353 Spruce St, San Francisco, CA 94016" -152876,AAA Batteries (4-pack),1,2.99,02/13/19 11:13,"951 Main St, Atlanta, GA 30301" -152877,USB-C Charging Cable,1,11.95,02/02/19 09:35,"619 Chestnut St, Seattle, WA 98101" -152878,USB-C Charging Cable,2,11.95,02/27/19 06:38,"436 Forest St, Seattle, WA 98101" -152879,AA Batteries (4-pack),1,3.84,02/06/19 19:46,"849 Madison St, San Francisco, CA 94016" -152880,USB-C Charging Cable,1,11.95,02/08/19 17:22,"153 Washington St, San Francisco, CA 94016" -152881,Vareebadd Phone,1,400,02/01/19 16:32,"400 Cedar St, New York City, NY 10001" -152882,iPhone,1,700,02/25/19 07:55,"785 Hickory St, Dallas, TX 75001" -152882,Wired Headphones,1,11.99,02/25/19 07:55,"785 Hickory St, Dallas, TX 75001" -152883,27in FHD Monitor,1,149.99,02/09/19 13:48,"151 14th St, Atlanta, GA 30301" -152884,34in Ultrawide Monitor,1,379.99,02/24/19 22:46,"893 Spruce St, San Francisco, CA 94016" -152885,AAA Batteries (4-pack),1,2.99,02/17/19 20:53,"192 Jefferson St, Atlanta, GA 30301" -152886,Apple Airpods Headphones,1,150,02/26/19 09:16,"797 Elm St, San Francisco, CA 94016" -152887,Apple Airpods Headphones,1,150,02/18/19 15:08,"119 14th St, San Francisco, CA 94016" -152888,AA Batteries (4-pack),1,3.84,02/21/19 16:42,"712 Hill St, Los Angeles, CA 90001" -152889,27in FHD Monitor,1,149.99,02/16/19 09:00,"448 12th St, Los Angeles, CA 90001" -152890,AAA Batteries (4-pack),1,2.99,02/22/19 16:41,"568 13th St, San Francisco, CA 94016" -152891,Bose SoundSport Headphones,1,99.99,02/07/19 11:36,"578 Dogwood St, Los Angeles, CA 90001" -152892,USB-C Charging Cable,1,11.95,02/26/19 16:39,"60 Lincoln St, Boston, MA 02215" -152893,AAA Batteries (4-pack),1,2.99,02/04/19 16:42,"861 Lincoln St, Seattle, WA 98101" -152894,Apple Airpods Headphones,1,150,02/18/19 15:03,"176 1st St, San Francisco, CA 94016" -152895,AA Batteries (4-pack),1,3.84,02/10/19 18:09,"788 Willow St, Atlanta, GA 30301" -152896,Vareebadd Phone,1,400,02/13/19 16:04,"37 Hickory St, New York City, NY 10001" -152896,Google Phone,1,600,02/13/19 16:04,"37 Hickory St, New York City, NY 10001" -152897,Bose SoundSport Headphones,1,99.99,02/06/19 12:37,"327 11th St, San Francisco, CA 94016" -152898,AAA Batteries (4-pack),3,2.99,02/01/19 12:32,"609 1st St, Los Angeles, CA 90001" -152899,AAA Batteries (4-pack),1,2.99,02/01/19 19:40,"210 Jefferson St, San Francisco, CA 94016" -152900,USB-C Charging Cable,1,11.95,02/20/19 18:25,"163 4th St, New York City, NY 10001" -152901,27in FHD Monitor,1,149.99,02/11/19 11:17,"114 Madison St, San Francisco, CA 94016" -152902,USB-C Charging Cable,1,11.95,02/06/19 19:17,"465 Pine St, Atlanta, GA 30301" -152903,USB-C Charging Cable,1,11.95,02/18/19 09:10,"989 Highland St, New York City, NY 10001" -152904,Flatscreen TV,1,300,02/15/19 21:58,"480 Maple St, Atlanta, GA 30301" -152905,27in 4K Gaming Monitor,1,389.99,02/04/19 14:06,"481 1st St, Boston, MA 02215" -152906,AA Batteries (4-pack),1,3.84,02/16/19 01:32,"561 Elm St, Boston, MA 02215" -152907,AAA Batteries (4-pack),1,2.99,02/14/19 13:24,"518 Hill St, Boston, MA 02215" -152908,AA Batteries (4-pack),1,3.84,02/07/19 16:53,"996 River St, Austin, TX 73301" -152909,Lightning Charging Cable,1,14.95,02/17/19 20:03,"224 7th St, Los Angeles, CA 90001" -152910,27in 4K Gaming Monitor,1,389.99,02/22/19 19:00,"930 6th St, San Francisco, CA 94016" -152911,AA Batteries (4-pack),1,3.84,02/17/19 22:36,"378 Jefferson St, Seattle, WA 98101" -152912,AA Batteries (4-pack),1,3.84,02/15/19 13:59,"215 South St, New York City, NY 10001" -152913,ThinkPad Laptop,1,999.99,02/04/19 22:04,"404 Jackson St, Boston, MA 02215" -152914,27in FHD Monitor,1,149.99,02/19/19 18:19,"841 Adams St, Boston, MA 02215" -152915,iPhone,1,700,02/20/19 13:24,"847 Johnson St, Portland, OR 97035" -152915,Wired Headphones,1,11.99,02/20/19 13:24,"847 Johnson St, Portland, OR 97035" -152916,USB-C Charging Cable,1,11.95,02/23/19 12:46,"854 Jackson St, Dallas, TX 75001" -,,,,, -152917,AA Batteries (4-pack),1,3.84,02/26/19 22:09,"64 Spruce St, Seattle, WA 98101" -152918,AA Batteries (4-pack),1,3.84,02/09/19 17:45,"939 8th St, Boston, MA 02215" -152919,USB-C Charging Cable,1,11.95,02/28/19 00:45,"595 Walnut St, Los Angeles, CA 90001" -152920,Wired Headphones,1,11.99,02/19/19 18:46,"784 Cedar St, Austin, TX 73301" -152921,AA Batteries (4-pack),1,3.84,02/12/19 18:06,"726 Elm St, New York City, NY 10001" -152922,AAA Batteries (4-pack),1,2.99,02/09/19 21:02,"507 Ridge St, Seattle, WA 98101" -152923,USB-C Charging Cable,1,11.95,02/13/19 09:12,"646 Jackson St, Los Angeles, CA 90001" -152924,Wired Headphones,1,11.99,02/01/19 13:29,"517 4th St, Seattle, WA 98101" -152925,Lightning Charging Cable,1,14.95,02/10/19 03:50,"241 7th St, San Francisco, CA 94016" -152925,Google Phone,1,600,02/10/19 03:50,"241 7th St, San Francisco, CA 94016" -152926,Apple Airpods Headphones,1,150,02/18/19 07:38,"305 West St, Dallas, TX 75001" -152927,USB-C Charging Cable,1,11.95,02/11/19 16:15,"400 Highland St, Los Angeles, CA 90001" -152928,AAA Batteries (4-pack),1,2.99,02/19/19 18:20,"802 11th St, Seattle, WA 98101" -152929,USB-C Charging Cable,1,11.95,02/22/19 19:11,"849 Johnson St, Boston, MA 02215" -152930,27in 4K Gaming Monitor,1,389.99,02/13/19 01:04,"411 Maple St, Los Angeles, CA 90001" -152931,Apple Airpods Headphones,1,150,02/22/19 20:02,"826 14th St, New York City, NY 10001" -152932,34in Ultrawide Monitor,1,379.99,02/15/19 13:59,"726 14th St, Seattle, WA 98101" -152933,Macbook Pro Laptop,1,1700,02/08/19 21:37,"701 5th St, New York City, NY 10001" -152934,AA Batteries (4-pack),1,3.84,02/15/19 11:19,"72 4th St, San Francisco, CA 94016" -152935,AA Batteries (4-pack),1,3.84,02/09/19 15:18,"736 Jackson St, Los Angeles, CA 90001" -152936,Google Phone,1,600,02/19/19 14:26,"689 13th St, New York City, NY 10001" -152936,USB-C Charging Cable,1,11.95,02/19/19 14:26,"689 13th St, New York City, NY 10001" -152937,Wired Headphones,1,11.99,02/20/19 22:55,"980 7th St, Dallas, TX 75001" -152938,AAA Batteries (4-pack),1,2.99,02/18/19 18:21,"318 Hickory St, Austin, TX 73301" -152939,AAA Batteries (4-pack),4,2.99,02/16/19 13:19,"129 West St, Dallas, TX 75001" -152940,27in FHD Monitor,1,149.99,02/09/19 15:04,"11 10th St, Portland, OR 97035" -152941,34in Ultrawide Monitor,1,379.99,02/13/19 13:08,"975 Main St, Boston, MA 02215" -152942,Apple Airpods Headphones,1,150,02/02/19 22:01,"521 12th St, San Francisco, CA 94016" -152943,27in FHD Monitor,1,149.99,02/14/19 16:12,"839 4th St, Los Angeles, CA 90001" -152944,Google Phone,1,600,02/09/19 06:46,"211 Jefferson St, San Francisco, CA 94016" -152945,27in FHD Monitor,1,149.99,02/11/19 23:19,"833 5th St, San Francisco, CA 94016" -152946,Wired Headphones,1,11.99,02/14/19 13:04,"651 Willow St, Boston, MA 02215" -152947,Apple Airpods Headphones,1,150,02/18/19 10:53,"57 Park St, Los Angeles, CA 90001" -152948,Lightning Charging Cable,1,14.95,02/04/19 12:14,"233 Sunset St, New York City, NY 10001" -152949,AA Batteries (4-pack),1,3.84,02/02/19 19:11,"786 Jefferson St, Portland, OR 97035" -152950,34in Ultrawide Monitor,1,379.99,02/21/19 20:43,"28 Cedar St, New York City, NY 10001" -152951,ThinkPad Laptop,1,999.99,02/06/19 21:21,"426 Washington St, San Francisco, CA 94016" -152952,USB-C Charging Cable,1,11.95,02/02/19 23:24,"236 Church St, Austin, TX 73301" -152952,Bose SoundSport Headphones,1,99.99,02/02/19 23:24,"236 Church St, Austin, TX 73301" -152953,ThinkPad Laptop,1,999.99,02/02/19 16:54,"903 Adams St, Austin, TX 73301" -152954,Lightning Charging Cable,1,14.95,02/26/19 08:32,"228 South St, New York City, NY 10001" -152955,27in FHD Monitor,1,149.99,02/18/19 10:39,"834 West St, Los Angeles, CA 90001" -152956,AA Batteries (4-pack),2,3.84,02/20/19 12:39,"836 14th St, Boston, MA 02215" -152957,34in Ultrawide Monitor,1,379.99,02/22/19 16:02,"863 2nd St, New York City, NY 10001" -152958,27in 4K Gaming Monitor,1,389.99,02/08/19 22:07,"102 Ridge St, San Francisco, CA 94016" -152959,Lightning Charging Cable,1,14.95,02/18/19 01:19,"609 Highland St, San Francisco, CA 94016" -152960,Wired Headphones,1,11.99,02/02/19 11:35,"512 Park St, Dallas, TX 75001" -152961,iPhone,1,700,02/07/19 09:48,"979 Adams St, Austin, TX 73301" -152962,AAA Batteries (4-pack),1,2.99,02/11/19 16:53,"74 Walnut St, New York City, NY 10001" -152963,Wired Headphones,2,11.99,02/03/19 19:06,"547 4th St, Portland, OR 97035" -152964,Bose SoundSport Headphones,1,99.99,02/16/19 14:57,"77 Main St, Portland, ME 04101" -152965,Lightning Charging Cable,1,14.95,02/11/19 19:56,"326 Church St, San Francisco, CA 94016" -152966,Wired Headphones,1,11.99,02/11/19 10:05,"358 Ridge St, San Francisco, CA 94016" -152967,34in Ultrawide Monitor,1,379.99,02/13/19 21:46,"85 Ridge St, Boston, MA 02215" -152968,ThinkPad Laptop,1,999.99,02/01/19 22:30,"651 Johnson St, San Francisco, CA 94016" -152969,Bose SoundSport Headphones,1,99.99,02/27/19 20:22,"383 14th St, Seattle, WA 98101" -152970,USB-C Charging Cable,1,11.95,02/15/19 19:27,"898 Center St, San Francisco, CA 94016" -152971,USB-C Charging Cable,1,11.95,02/01/19 14:13,"184 Hickory St, Portland, OR 97035" -152972,Lightning Charging Cable,1,14.95,02/20/19 22:24,"972 10th St, Atlanta, GA 30301" -152973,Wired Headphones,1,11.99,02/13/19 19:49,"262 Lakeview St, Los Angeles, CA 90001" -152974,Lightning Charging Cable,1,14.95,02/25/19 19:42,"438 Willow St, San Francisco, CA 94016" -152975,Apple Airpods Headphones,1,150,02/23/19 06:52,"584 8th St, San Francisco, CA 94016" -152976,Bose SoundSport Headphones,1,99.99,02/20/19 01:50,"848 Walnut St, Los Angeles, CA 90001" -152977,Wired Headphones,1,11.99,02/26/19 12:07,"505 1st St, Seattle, WA 98101" -152978,Macbook Pro Laptop,1,1700,02/07/19 12:53,"813 9th St, Los Angeles, CA 90001" -152979,Wired Headphones,1,11.99,02/16/19 17:01,"149 Ridge St, Seattle, WA 98101" -152980,USB-C Charging Cable,1,11.95,02/26/19 19:48,"196 2nd St, Los Angeles, CA 90001" -152981,Bose SoundSport Headphones,1,99.99,02/01/19 16:27,"889 Lakeview St, Portland, OR 97035" -152982,Bose SoundSport Headphones,1,99.99,02/05/19 17:01,"187 West St, San Francisco, CA 94016" -152983,AAA Batteries (4-pack),1,2.99,02/09/19 10:12,"474 Dogwood St, Boston, MA 02215" -152984,USB-C Charging Cable,1,11.95,02/22/19 18:41,"847 Center St, San Francisco, CA 94016" -152985,USB-C Charging Cable,1,11.95,02/26/19 10:15,"266 Church St, Dallas, TX 75001" -152986,USB-C Charging Cable,1,11.95,02/10/19 08:48,"455 Maple St, New York City, NY 10001" -152987,Flatscreen TV,1,300,02/05/19 17:20,"623 Lake St, Atlanta, GA 30301" -152988,iPhone,1,700,02/08/19 13:35,"896 8th St, New York City, NY 10001" -152989,Apple Airpods Headphones,1,150,02/18/19 18:53,"258 Johnson St, Seattle, WA 98101" -152990,Flatscreen TV,1,300,02/07/19 12:18,"121 11th St, San Francisco, CA 94016" -152991,Google Phone,1,600,02/13/19 12:59,"956 West St, Seattle, WA 98101" -152991,Wired Headphones,1,11.99,02/13/19 12:59,"956 West St, Seattle, WA 98101" -152992,20in Monitor,1,109.99,02/02/19 14:13,"46 7th St, Seattle, WA 98101" -152993,AAA Batteries (4-pack),1,2.99,02/12/19 01:41,"609 Lakeview St, Austin, TX 73301" -152994,27in 4K Gaming Monitor,1,389.99,02/20/19 09:04,"762 Willow St, Austin, TX 73301" -152995,ThinkPad Laptop,1,999.99,02/04/19 20:43,"31 Cherry St, San Francisco, CA 94016" -152996,ThinkPad Laptop,1,999.99,02/02/19 21:05,"471 5th St, New York City, NY 10001" -152997,Wired Headphones,1,11.99,02/24/19 15:09,"409 Meadow St, San Francisco, CA 94016" -152998,USB-C Charging Cable,1,11.95,02/25/19 15:47,"494 Chestnut St, San Francisco, CA 94016" -152999,AAA Batteries (4-pack),1,2.99,02/13/19 19:39,"729 Lincoln St, Los Angeles, CA 90001" -153000,AAA Batteries (4-pack),1,2.99,02/20/19 10:24,"192 Wilson St, Los Angeles, CA 90001" -153001,AA Batteries (4-pack),1,3.84,02/16/19 19:34,"770 Pine St, Dallas, TX 75001" -153002,Vareebadd Phone,1,400,02/06/19 15:23,"9 Walnut St, Dallas, TX 75001" -153003,Apple Airpods Headphones,1,150,02/04/19 14:11,"625 Chestnut St, New York City, NY 10001" -153004,Lightning Charging Cable,1,14.95,02/24/19 18:40,"215 Church St, Seattle, WA 98101" -153005,AAA Batteries (4-pack),1,2.99,02/09/19 08:02,"927 1st St, New York City, NY 10001" -153006,AA Batteries (4-pack),1,3.84,02/04/19 19:14,"390 Forest St, Los Angeles, CA 90001" -153007,USB-C Charging Cable,1,11.95,02/11/19 15:29,"51 Walnut St, New York City, NY 10001" -153008,Lightning Charging Cable,1,14.95,02/22/19 17:34,"908 Hill St, San Francisco, CA 94016" -153009,AA Batteries (4-pack),1,3.84,02/15/19 17:08,"198 Lincoln St, Dallas, TX 75001" -153010,Lightning Charging Cable,1,14.95,02/07/19 13:57,"803 13th St, New York City, NY 10001" -153011,AA Batteries (4-pack),3,3.84,02/25/19 20:13,"237 Chestnut St, Atlanta, GA 30301" -153012,Bose SoundSport Headphones,1,99.99,02/11/19 09:07,"577 Johnson St, Boston, MA 02215" -153013,20in Monitor,1,109.99,02/25/19 20:48,"222 Meadow St, Dallas, TX 75001" -153014,Bose SoundSport Headphones,1,99.99,02/06/19 19:39,"949 9th St, Seattle, WA 98101" -153014,ThinkPad Laptop,1,999.99,02/06/19 19:39,"949 9th St, Seattle, WA 98101" -153015,USB-C Charging Cable,2,11.95,02/08/19 21:21,"969 Walnut St, Dallas, TX 75001" -153016,Lightning Charging Cable,1,14.95,02/18/19 17:50,"60 South St, San Francisco, CA 94016" -153017,Google Phone,1,600,02/19/19 15:15,"692 Jefferson St, New York City, NY 10001" -153018,27in FHD Monitor,1,149.99,02/16/19 15:36,"970 Jackson St, Los Angeles, CA 90001" -153019,Apple Airpods Headphones,1,150,02/18/19 20:41,"211 Main St, San Francisco, CA 94016" -153020,Apple Airpods Headphones,1,150,02/26/19 16:10,"312 4th St, Portland, OR 97035" -153021,Apple Airpods Headphones,1,150,02/03/19 22:16,"322 5th St, New York City, NY 10001" -153022,Apple Airpods Headphones,1,150,02/15/19 17:01,"697 North St, San Francisco, CA 94016" -153023,AAA Batteries (4-pack),2,2.99,02/13/19 22:04,"422 Sunset St, San Francisco, CA 94016" -153024,AAA Batteries (4-pack),1,2.99,02/14/19 18:49,"912 14th St, Dallas, TX 75001" -153025,Lightning Charging Cable,1,14.95,02/22/19 10:00,"757 Spruce St, Seattle, WA 98101" -153026,27in FHD Monitor,1,149.99,02/16/19 18:38,"435 Meadow St, Dallas, TX 75001" -153027,Lightning Charging Cable,1,14.95,02/07/19 19:43,"930 Cedar St, San Francisco, CA 94016" -153028,AAA Batteries (4-pack),1,2.99,02/18/19 11:19,"296 Elm St, Portland, OR 97035" -153029,34in Ultrawide Monitor,1,379.99,02/28/19 20:11,"779 Main St, Los Angeles, CA 90001" -153030,Wired Headphones,1,11.99,02/23/19 20:21,"122 Jackson St, Los Angeles, CA 90001" -153031,AAA Batteries (4-pack),1,2.99,02/22/19 19:23,"842 Lakeview St, Portland, OR 97035" -153032,Wired Headphones,1,11.99,02/21/19 22:19,"2 11th St, San Francisco, CA 94016" -153033,Google Phone,1,600,02/21/19 11:16,"448 Lincoln St, San Francisco, CA 94016" -153033,Wired Headphones,1,11.99,02/21/19 11:16,"448 Lincoln St, San Francisco, CA 94016" -153034,34in Ultrawide Monitor,1,379.99,02/26/19 17:05,"814 River St, Los Angeles, CA 90001" -153035,Lightning Charging Cable,1,14.95,02/23/19 16:41,"437 Cedar St, Portland, ME 04101" -153036,27in FHD Monitor,1,149.99,02/22/19 20:22,"60 Jackson St, Los Angeles, CA 90001" -153037,Wired Headphones,1,11.99,02/18/19 09:52,"86 River St, New York City, NY 10001" -153038,Wired Headphones,1,11.99,02/11/19 21:44,"334 Church St, San Francisco, CA 94016" -153039,AA Batteries (4-pack),2,3.84,02/17/19 19:56,"456 Pine St, Los Angeles, CA 90001" -153040,Bose SoundSport Headphones,1,99.99,02/06/19 15:23,"79 Walnut St, Los Angeles, CA 90001" -153041,27in FHD Monitor,1,149.99,02/02/19 16:29,"951 Adams St, Dallas, TX 75001" -153042,Wired Headphones,1,11.99,02/11/19 12:26,"239 Lincoln St, New York City, NY 10001" -153043,20in Monitor,1,109.99,02/14/19 19:21,"72 Hickory St, Los Angeles, CA 90001" -153044,Lightning Charging Cable,1,14.95,02/15/19 20:02,"518 Adams St, San Francisco, CA 94016" -153045,USB-C Charging Cable,1,11.95,02/15/19 10:44,"576 Cedar St, Los Angeles, CA 90001" -153046,AAA Batteries (4-pack),1,2.99,02/26/19 11:49,"345 Hickory St, Los Angeles, CA 90001" -153047,AA Batteries (4-pack),1,3.84,02/11/19 10:50,"443 Maple St, Atlanta, GA 30301" -153048,USB-C Charging Cable,1,11.95,02/17/19 12:14,"695 Cherry St, Atlanta, GA 30301" -153049,Lightning Charging Cable,1,14.95,02/18/19 23:46,"739 North St, Seattle, WA 98101" -153050,Flatscreen TV,1,300,02/13/19 16:25,"579 14th St, San Francisco, CA 94016" -153051,Flatscreen TV,1,300,02/10/19 18:25,"474 Church St, New York City, NY 10001" -153052,27in FHD Monitor,1,149.99,02/10/19 19:33,"345 8th St, Seattle, WA 98101" -153053,27in 4K Gaming Monitor,1,389.99,02/10/19 13:49,"194 Forest St, Seattle, WA 98101" -153054,Apple Airpods Headphones,1,150,02/02/19 02:00,"419 Spruce St, Los Angeles, CA 90001" -153055,Lightning Charging Cable,1,14.95,02/04/19 12:35,"375 Hickory St, Portland, OR 97035" -153056,20in Monitor,1,109.99,02/13/19 16:31,"97 Madison St, Atlanta, GA 30301" -153057,AAA Batteries (4-pack),2,2.99,02/22/19 21:13,"757 Spruce St, Seattle, WA 98101" -153058,Wired Headphones,1,11.99,02/17/19 22:00,"719 Elm St, Dallas, TX 75001" -153059,iPhone,1,700,02/12/19 18:38,"644 Willow St, Dallas, TX 75001" -153060,Apple Airpods Headphones,1,150,02/19/19 01:28,"800 Maple St, San Francisco, CA 94016" -153061,Lightning Charging Cable,1,14.95,02/24/19 16:53,"465 9th St, San Francisco, CA 94016" -153062,Lightning Charging Cable,1,14.95,02/26/19 19:04,"121 Madison St, Los Angeles, CA 90001" -153063,Lightning Charging Cable,1,14.95,02/16/19 08:15,"740 12th St, Boston, MA 02215" -153064,Lightning Charging Cable,1,14.95,02/18/19 19:04,"935 Jefferson St, San Francisco, CA 94016" -153065,AAA Batteries (4-pack),1,2.99,02/16/19 14:38,"395 Spruce St, Dallas, TX 75001" -153066,Wired Headphones,1,11.99,02/27/19 12:23,"589 Jackson St, Dallas, TX 75001" -153067,Wired Headphones,1,11.99,02/14/19 12:50,"313 Forest St, Boston, MA 02215" -153068,27in FHD Monitor,1,149.99,02/21/19 11:10,"693 Chestnut St, San Francisco, CA 94016" -153069,Flatscreen TV,2,300,02/17/19 20:41,"320 Lake St, New York City, NY 10001" -153070,Lightning Charging Cable,1,14.95,02/12/19 12:06,"352 West St, Los Angeles, CA 90001" -153071,AA Batteries (4-pack),1,3.84,02/20/19 16:10,"958 Hickory St, Seattle, WA 98101" -153072,Wired Headphones,1,11.99,02/27/19 08:40,"38 Pine St, San Francisco, CA 94016" -153073,ThinkPad Laptop,1,999.99,02/08/19 15:13,"102 Cherry St, Austin, TX 73301" -153074,Apple Airpods Headphones,1,150,02/10/19 00:31,"587 West St, San Francisco, CA 94016" -153075,Lightning Charging Cable,1,14.95,02/05/19 21:21,"315 14th St, Seattle, WA 98101" -153076,iPhone,1,700,02/07/19 11:16,"498 Washington St, San Francisco, CA 94016" -153077,USB-C Charging Cable,1,11.95,02/22/19 16:45,"432 1st St, Austin, TX 73301" -153078,Flatscreen TV,1,300,02/03/19 12:37,"905 Forest St, New York City, NY 10001" -153079,AAA Batteries (4-pack),1,2.99,02/13/19 18:52,"985 9th St, Seattle, WA 98101" -153080,Google Phone,1,600,02/18/19 08:52,"353 Johnson St, Atlanta, GA 30301" -153081,Google Phone,1,600,02/20/19 19:41,"50 Pine St, Los Angeles, CA 90001" -153082,Flatscreen TV,1,300,02/16/19 02:03,"736 Park St, San Francisco, CA 94016" -153083,AAA Batteries (4-pack),4,2.99,02/13/19 17:53,"144 Sunset St, New York City, NY 10001" -153084,USB-C Charging Cable,1,11.95,02/27/19 22:59,"860 Wilson St, Los Angeles, CA 90001" -153085,AA Batteries (4-pack),1,3.84,02/15/19 17:20,"873 Main St, Los Angeles, CA 90001" -153086,34in Ultrawide Monitor,1,379.99,02/16/19 15:41,"591 7th St, Austin, TX 73301" -153087,Bose SoundSport Headphones,1,99.99,02/24/19 06:07,"37 6th St, Atlanta, GA 30301" -153088,USB-C Charging Cable,1,11.95,02/19/19 16:01,"210 River St, New York City, NY 10001" -153089,34in Ultrawide Monitor,1,379.99,02/15/19 19:11,"75 Maple St, Boston, MA 02215" -153090,AAA Batteries (4-pack),2,2.99,02/22/19 07:01,"317 Sunset St, Atlanta, GA 30301" -153091,Google Phone,1,600,02/03/19 19:06,"531 Sunset St, Los Angeles, CA 90001" -153091,USB-C Charging Cable,1,11.95,02/03/19 19:06,"531 Sunset St, Los Angeles, CA 90001" -153092,Bose SoundSport Headphones,1,99.99,02/11/19 07:11,"862 Madison St, San Francisco, CA 94016" -153093,AAA Batteries (4-pack),2,2.99,02/25/19 18:09,"357 Johnson St, San Francisco, CA 94016" -153094,AA Batteries (4-pack),1,3.84,02/20/19 15:58,"301 Dogwood St, San Francisco, CA 94016" -153095,AAA Batteries (4-pack),2,2.99,02/12/19 17:05,"394 14th St, Portland, ME 04101" -153096,AAA Batteries (4-pack),1,2.99,02/13/19 06:18,"972 Johnson St, Dallas, TX 75001" -153097,Lightning Charging Cable,2,14.95,02/18/19 12:30,"212 Cherry St, Boston, MA 02215" -153098,AA Batteries (4-pack),1,3.84,02/03/19 20:41,"469 Jackson St, New York City, NY 10001" -153099,USB-C Charging Cable,1,11.95,02/04/19 10:54,"521 5th St, Seattle, WA 98101" -153100,Macbook Pro Laptop,1,1700,02/27/19 18:52,"959 Jefferson St, Dallas, TX 75001" -153101,Lightning Charging Cable,1,14.95,02/10/19 20:36,"225 Church St, Los Angeles, CA 90001" -153102,Wired Headphones,1,11.99,02/01/19 20:04,"412 Main St, New York City, NY 10001" -153103,LG Washing Machine,1,600.0,02/08/19 13:11,"937 Wilson St, Los Angeles, CA 90001" -153104,Lightning Charging Cable,1,14.95,02/27/19 06:53,"535 Chestnut St, Portland, OR 97035" -153105,Apple Airpods Headphones,1,150,02/28/19 15:40,"272 Madison St, Seattle, WA 98101" -153106,Bose SoundSport Headphones,1,99.99,02/04/19 11:35,"861 6th St, Boston, MA 02215" -153107,USB-C Charging Cable,1,11.95,02/19/19 16:34,"305 11th St, Boston, MA 02215" -153108,Wired Headphones,1,11.99,02/26/19 23:33,"773 Hill St, Portland, OR 97035" -153109,Wired Headphones,1,11.99,02/14/19 21:23,"494 Dogwood St, San Francisco, CA 94016" -153110,Google Phone,1,600,02/23/19 15:41,"477 Jefferson St, San Francisco, CA 94016" -153111,Wired Headphones,1,11.99,02/19/19 12:49,"394 Highland St, Los Angeles, CA 90001" -153112,Apple Airpods Headphones,1,150,02/14/19 17:50,"375 Center St, Austin, TX 73301" -153113,Bose SoundSport Headphones,1,99.99,02/12/19 09:20,"361 Lake St, New York City, NY 10001" -153114,Wired Headphones,1,11.99,02/14/19 18:05,"971 12th St, Boston, MA 02215" -153115,AA Batteries (4-pack),1,3.84,02/17/19 13:09,"585 River St, Atlanta, GA 30301" -153116,AA Batteries (4-pack),1,3.84,02/10/19 09:10,"21 Chestnut St, San Francisco, CA 94016" -153117,Google Phone,1,600,02/06/19 16:31,"116 River St, Seattle, WA 98101" -153118,AAA Batteries (4-pack),2,2.99,02/01/19 11:36,"239 Spruce St, Austin, TX 73301" -153119,Apple Airpods Headphones,1,150,02/22/19 13:06,"738 West St, San Francisco, CA 94016" -153120,AAA Batteries (4-pack),2,2.99,02/20/19 10:51,"457 Center St, Los Angeles, CA 90001" -153121,Macbook Pro Laptop,1,1700,02/22/19 23:49,"344 Highland St, Los Angeles, CA 90001" -153122,ThinkPad Laptop,1,999.99,02/28/19 13:41,"250 River St, New York City, NY 10001" -153123,AAA Batteries (4-pack),3,2.99,02/18/19 19:41,"241 Hickory St, Atlanta, GA 30301" -153124,Google Phone,1,600,02/27/19 08:25,"918 10th St, Los Angeles, CA 90001" -,,,,, -153125,Vareebadd Phone,1,400,02/20/19 16:49,"804 Lincoln St, New York City, NY 10001" -153126,Flatscreen TV,1,300,02/13/19 07:58,"468 Sunset St, Dallas, TX 75001" -153127,USB-C Charging Cable,2,11.95,02/15/19 13:29,"524 Lakeview St, Los Angeles, CA 90001" -153128,AAA Batteries (4-pack),1,2.99,02/23/19 11:55,"689 Dogwood St, San Francisco, CA 94016" -153129,Bose SoundSport Headphones,1,99.99,02/22/19 18:27,"749 Elm St, Atlanta, GA 30301" -153130,USB-C Charging Cable,1,11.95,02/09/19 09:08,"847 Maple St, New York City, NY 10001" -153131,AAA Batteries (4-pack),1,2.99,02/11/19 15:46,"104 6th St, San Francisco, CA 94016" -153132,27in FHD Monitor,1,149.99,02/07/19 12:54,"116 Dogwood St, Dallas, TX 75001" -153133,AAA Batteries (4-pack),2,2.99,02/18/19 12:05,"604 14th St, Los Angeles, CA 90001" -153134,AA Batteries (4-pack),1,3.84,02/12/19 19:34,"500 North St, New York City, NY 10001" -153135,Google Phone,1,600,02/22/19 12:48,"626 12th St, Seattle, WA 98101" -153135,USB-C Charging Cable,1,11.95,02/22/19 12:48,"626 12th St, Seattle, WA 98101" -153135,Bose SoundSport Headphones,1,99.99,02/22/19 12:48,"626 12th St, Seattle, WA 98101" -153136,Wired Headphones,1,11.99,02/19/19 18:19,"394 Lake St, Los Angeles, CA 90001" -153137,USB-C Charging Cable,1,11.95,02/21/19 12:45,"453 Dogwood St, Atlanta, GA 30301" -153138,Bose SoundSport Headphones,1,99.99,02/18/19 01:01,"445 14th St, Austin, TX 73301" -153139,Apple Airpods Headphones,1,150,02/25/19 23:14,"79 Cedar St, San Francisco, CA 94016" -153140,AAA Batteries (4-pack),2,2.99,02/16/19 10:55,"291 Elm St, New York City, NY 10001" -153141,AA Batteries (4-pack),1,3.84,02/24/19 08:44,"717 Hickory St, Austin, TX 73301" -153142,USB-C Charging Cable,1,11.95,02/21/19 14:59,"563 6th St, Seattle, WA 98101" -153143,Apple Airpods Headphones,1,150,02/03/19 12:29,"764 Cedar St, Los Angeles, CA 90001" -153144,Wired Headphones,1,11.99,02/19/19 11:41,"821 Jackson St, San Francisco, CA 94016" -153145,Lightning Charging Cable,1,14.95,02/10/19 23:10,"630 Cedar St, New York City, NY 10001" -153146,Vareebadd Phone,1,400,02/25/19 09:38,"929 West St, Seattle, WA 98101" -153147,Lightning Charging Cable,1,14.95,02/26/19 14:19,"644 Forest St, Atlanta, GA 30301" -153148,USB-C Charging Cable,1,11.95,02/05/19 18:45,"571 Lakeview St, Austin, TX 73301" -153149,Lightning Charging Cable,3,14.95,02/24/19 15:44,"97 1st St, Seattle, WA 98101" -153150,27in FHD Monitor,1,149.99,02/20/19 10:07,"107 5th St, Austin, TX 73301" -153151,USB-C Charging Cable,1,11.95,02/28/19 10:31,"200 North St, Atlanta, GA 30301" -153152,AA Batteries (4-pack),1,3.84,02/26/19 12:18,"576 14th St, Dallas, TX 75001" -153153,27in FHD Monitor,1,149.99,02/02/19 01:09,"746 13th St, San Francisco, CA 94016" -153154,Macbook Pro Laptop,1,1700,02/27/19 23:12,"986 1st St, New York City, NY 10001" -153155,Flatscreen TV,1,300,02/20/19 21:45,"273 Adams St, San Francisco, CA 94016" -153156,USB-C Charging Cable,1,11.95,02/14/19 21:24,"187 Cherry St, San Francisco, CA 94016" -153157,USB-C Charging Cable,1,11.95,02/19/19 16:26,"898 Jackson St, Dallas, TX 75001" -153158,34in Ultrawide Monitor,1,379.99,02/14/19 08:24,"130 Jefferson St, Dallas, TX 75001" -153158,Apple Airpods Headphones,1,150,02/14/19 08:24,"130 Jefferson St, Dallas, TX 75001" -153159,Lightning Charging Cable,1,14.95,02/22/19 11:45,"376 Johnson St, Los Angeles, CA 90001" -153160,34in Ultrawide Monitor,1,379.99,02/01/19 15:46,"256 Forest St, Seattle, WA 98101" -153161,Apple Airpods Headphones,1,150,02/20/19 13:58,"431 14th St, Atlanta, GA 30301" -153162,Bose SoundSport Headphones,1,99.99,02/12/19 08:29,"369 2nd St, New York City, NY 10001" -153163,Apple Airpods Headphones,1,150,02/23/19 14:31,"881 Ridge St, San Francisco, CA 94016" -153164,Apple Airpods Headphones,1,150,02/15/19 16:42,"29 7th St, Boston, MA 02215" -153165,Apple Airpods Headphones,1,150,02/13/19 17:55,"963 Spruce St, Los Angeles, CA 90001" -153166,USB-C Charging Cable,1,11.95,02/11/19 17:28,"254 North St, San Francisco, CA 94016" -153167,Bose SoundSport Headphones,1,99.99,02/10/19 16:31,"880 5th St, Atlanta, GA 30301" -153168,USB-C Charging Cable,1,11.95,02/27/19 13:16,"919 13th St, San Francisco, CA 94016" -153169,Lightning Charging Cable,1,14.95,02/17/19 11:16,"736 Lincoln St, Portland, OR 97035" -153170,Lightning Charging Cable,1,14.95,02/20/19 20:21,"600 Elm St, Los Angeles, CA 90001" -153171,Wired Headphones,1,11.99,02/03/19 21:39,"542 11th St, San Francisco, CA 94016" -153172,AA Batteries (4-pack),1,3.84,02/10/19 22:23,"325 Hickory St, San Francisco, CA 94016" -153173,AAA Batteries (4-pack),1,2.99,02/01/19 15:40,"202 1st St, Los Angeles, CA 90001" -153174,Flatscreen TV,1,300,02/05/19 10:01,"968 10th St, Austin, TX 73301" -153175,AAA Batteries (4-pack),1,2.99,02/26/19 18:07,"225 14th St, Atlanta, GA 30301" -153176,AAA Batteries (4-pack),2,2.99,02/02/19 11:06,"831 Hill St, Los Angeles, CA 90001" -153177,Lightning Charging Cable,1,14.95,02/12/19 21:11,"708 Park St, Atlanta, GA 30301" -153178,USB-C Charging Cable,1,11.95,02/24/19 17:01,"423 Spruce St, New York City, NY 10001" -153179,Apple Airpods Headphones,1,150,02/14/19 08:00,"767 Main St, San Francisco, CA 94016" -153180,USB-C Charging Cable,1,11.95,02/21/19 18:26,"735 7th St, San Francisco, CA 94016" -153181,AA Batteries (4-pack),1,3.84,02/20/19 10:22,"827 Jackson St, Los Angeles, CA 90001" -153182,AA Batteries (4-pack),3,3.84,02/12/19 09:04,"442 Dogwood St, Boston, MA 02215" -153183,AA Batteries (4-pack),1,3.84,02/03/19 21:32,"514 Madison St, Atlanta, GA 30301" -153184,AA Batteries (4-pack),1,3.84,02/13/19 14:17,"270 Lake St, Dallas, TX 75001" -153185,Flatscreen TV,1,300,02/04/19 10:58,"673 Church St, Boston, MA 02215" -153186,Bose SoundSport Headphones,1,99.99,02/28/19 10:30,"347 Adams St, Dallas, TX 75001" -153187,Lightning Charging Cable,1,14.95,02/13/19 10:42,"153 10th St, Dallas, TX 75001" -153188,USB-C Charging Cable,1,11.95,02/08/19 10:27,"117 Maple St, Atlanta, GA 30301" -153189,AA Batteries (4-pack),2,3.84,02/04/19 06:28,"894 Forest St, Los Angeles, CA 90001" -153190,27in FHD Monitor,1,149.99,02/11/19 17:14,"272 Dogwood St, Boston, MA 02215" -153191,Apple Airpods Headphones,1,150,02/20/19 10:36,"354 Lake St, Boston, MA 02215" -153192,USB-C Charging Cable,1,11.95,02/08/19 15:58,"578 Chestnut St, Los Angeles, CA 90001" -153193,Macbook Pro Laptop,1,1700,02/04/19 19:06,"724 9th St, Los Angeles, CA 90001" -153194,27in 4K Gaming Monitor,1,389.99,02/21/19 22:15,"534 Willow St, Seattle, WA 98101" -153195,iPhone,1,700,02/08/19 14:35,"495 14th St, Seattle, WA 98101" -153196,Bose SoundSport Headphones,1,99.99,02/26/19 19:54,"611 North St, Dallas, TX 75001" -153197,AAA Batteries (4-pack),1,2.99,02/18/19 13:14,"781 Cherry St, Seattle, WA 98101" -153198,Lightning Charging Cable,1,14.95,02/20/19 21:40,"116 Cherry St, San Francisco, CA 94016" -153199,Bose SoundSport Headphones,1,99.99,02/15/19 23:05,"422 Dogwood St, New York City, NY 10001" -153200,Lightning Charging Cable,1,14.95,02/18/19 14:56,"342 7th St, Los Angeles, CA 90001" -153201,Bose SoundSport Headphones,1,99.99,02/23/19 14:04,"447 1st St, San Francisco, CA 94016" -153202,Apple Airpods Headphones,1,150,02/03/19 18:40,"435 8th St, Los Angeles, CA 90001" -153203,Apple Airpods Headphones,1,150,02/01/19 15:59,"83 Lincoln St, Boston, MA 02215" -153204,Vareebadd Phone,1,400,02/24/19 17:09,"339 Lincoln St, Boston, MA 02215" -153205,AA Batteries (4-pack),1,3.84,02/01/19 17:48,"878 4th St, Seattle, WA 98101" -153206,ThinkPad Laptop,1,999.99,02/28/19 11:14,"960 Meadow St, Los Angeles, CA 90001" -153207,AA Batteries (4-pack),2,3.84,02/14/19 16:17,"736 Hill St, San Francisco, CA 94016" -153208,Apple Airpods Headphones,1,150,02/11/19 13:27,"112 Center St, Boston, MA 02215" -153209,Lightning Charging Cable,1,14.95,02/13/19 18:35,"3 1st St, San Francisco, CA 94016" -153210,Lightning Charging Cable,1,14.95,02/21/19 16:12,"827 Elm St, Los Angeles, CA 90001" -153211,Lightning Charging Cable,1,14.95,02/19/19 15:14,"363 Dogwood St, Boston, MA 02215" -153212,AAA Batteries (4-pack),1,2.99,02/13/19 21:37,"959 12th St, Boston, MA 02215" -153213,iPhone,1,700,02/05/19 10:13,"389 Chestnut St, San Francisco, CA 94016" -153214,LG Dryer,1,600.0,02/12/19 18:26,"132 Adams St, Dallas, TX 75001" -153215,USB-C Charging Cable,1,11.95,02/23/19 11:28,"156 Jefferson St, San Francisco, CA 94016" -153216,Wired Headphones,1,11.99,02/24/19 03:12,"132 Spruce St, Boston, MA 02215" -153217,27in FHD Monitor,1,149.99,02/24/19 11:48,"67 Church St, San Francisco, CA 94016" -153218,Lightning Charging Cable,1,14.95,02/21/19 07:34,"564 North St, San Francisco, CA 94016" -153219,Lightning Charging Cable,1,14.95,02/19/19 21:39,"164 Cedar St, Los Angeles, CA 90001" -153220,Apple Airpods Headphones,1,150,02/06/19 04:01,"173 Willow St, Los Angeles, CA 90001" -153221,Lightning Charging Cable,1,14.95,02/21/19 11:31,"187 Highland St, New York City, NY 10001" -153222,AA Batteries (4-pack),1,3.84,02/15/19 19:59,"651 Meadow St, San Francisco, CA 94016" -153223,Bose SoundSport Headphones,1,99.99,02/07/19 13:28,"51 Forest St, Dallas, TX 75001" -153224,Lightning Charging Cable,1,14.95,02/27/19 17:18,"381 Park St, New York City, NY 10001" -153225,20in Monitor,1,109.99,02/19/19 07:24,"321 North St, San Francisco, CA 94016" -153226,Flatscreen TV,1,300,02/21/19 19:13,"268 Jackson St, San Francisco, CA 94016" -153227,AAA Batteries (4-pack),1,2.99,02/05/19 16:46,"112 Cedar St, San Francisco, CA 94016" -153228,iPhone,1,700,02/07/19 19:48,"753 2nd St, Portland, OR 97035" -153229,AA Batteries (4-pack),1,3.84,02/14/19 19:20,"120 Pine St, Los Angeles, CA 90001" -153229,Vareebadd Phone,1,400,02/14/19 19:20,"120 Pine St, Los Angeles, CA 90001" -153230,Macbook Pro Laptop,1,1700,02/28/19 20:05,"658 Hill St, Dallas, TX 75001" -153231,Wired Headphones,1,11.99,02/23/19 21:16,"942 6th St, Austin, TX 73301" -153232,Apple Airpods Headphones,1,150,02/10/19 17:14,"768 Chestnut St, Boston, MA 02215" -153233,AAA Batteries (4-pack),1,2.99,02/08/19 11:48,"149 Jefferson St, Los Angeles, CA 90001" -153234,20in Monitor,1,109.99,02/01/19 11:31,"80 2nd St, Los Angeles, CA 90001" -153235,Wired Headphones,1,11.99,02/06/19 09:42,"411 Church St, Boston, MA 02215" -153236,USB-C Charging Cable,2,11.95,02/02/19 11:55,"500 12th St, San Francisco, CA 94016" -153237,iPhone,1,700,02/02/19 13:35,"56 Jefferson St, San Francisco, CA 94016" -153238,Apple Airpods Headphones,1,150,02/11/19 13:05,"971 Ridge St, Atlanta, GA 30301" -153239,27in FHD Monitor,1,149.99,02/07/19 11:30,"738 Main St, Seattle, WA 98101" -153240,27in FHD Monitor,1,149.99,02/09/19 20:20,"173 Elm St, Boston, MA 02215" -153241,Lightning Charging Cable,1,14.95,02/07/19 14:51,"959 Hickory St, Portland, OR 97035" -153242,USB-C Charging Cable,1,11.95,02/10/19 09:18,"900 Cherry St, Los Angeles, CA 90001" -153243,Lightning Charging Cable,1,14.95,02/11/19 21:59,"401 Madison St, Boston, MA 02215" -153244,AA Batteries (4-pack),2,3.84,02/15/19 22:55,"484 Main St, Dallas, TX 75001" -153245,Wired Headphones,1,11.99,02/16/19 22:36,"937 4th St, New York City, NY 10001" -153246,Apple Airpods Headphones,1,150,02/25/19 17:59,"9 11th St, Seattle, WA 98101" -153247,USB-C Charging Cable,1,11.95,02/13/19 14:53,"750 South St, San Francisco, CA 94016" -153248,Lightning Charging Cable,1,14.95,02/06/19 12:25,"406 11th St, New York City, NY 10001" -153249,Lightning Charging Cable,1,14.95,02/25/19 14:07,"828 Pine St, Austin, TX 73301" -153250,Apple Airpods Headphones,1,150,02/05/19 11:43,"145 Jackson St, San Francisco, CA 94016" -153251,USB-C Charging Cable,1,11.95,02/23/19 06:05,"424 10th St, New York City, NY 10001" -153252,AA Batteries (4-pack),1,3.84,02/28/19 13:51,"739 4th St, New York City, NY 10001" -153253,Bose SoundSport Headphones,1,99.99,02/05/19 15:00,"486 Adams St, Boston, MA 02215" -153254,Bose SoundSport Headphones,1,99.99,02/24/19 21:21,"167 Elm St, San Francisco, CA 94016" -153254,Lightning Charging Cable,1,14.95,02/24/19 21:21,"167 Elm St, San Francisco, CA 94016" -153255,USB-C Charging Cable,1,11.95,02/17/19 22:24,"411 Dogwood St, Portland, OR 97035" -153256,USB-C Charging Cable,1,11.95,02/11/19 23:57,"889 Park St, Los Angeles, CA 90001" -153257,Lightning Charging Cable,1,14.95,02/19/19 13:43,"869 Lincoln St, Atlanta, GA 30301" -153258,AA Batteries (4-pack),2,3.84,02/11/19 22:00,"714 Lincoln St, San Francisco, CA 94016" -153259,AA Batteries (4-pack),1,3.84,02/16/19 05:24,"305 Lakeview St, New York City, NY 10001" -153260,Lightning Charging Cable,1,14.95,02/14/19 09:06,"236 Walnut St, Boston, MA 02215" -153261,Apple Airpods Headphones,1,150,02/10/19 16:59,"63 11th St, San Francisco, CA 94016" -153262,20in Monitor,1,109.99,02/15/19 16:01,"746 5th St, Dallas, TX 75001" -153263,iPhone,1,700,02/07/19 22:51,"271 Park St, Los Angeles, CA 90001" -153263,Lightning Charging Cable,1,14.95,02/07/19 22:51,"271 Park St, Los Angeles, CA 90001" -153263,Apple Airpods Headphones,1,150,02/07/19 22:51,"271 Park St, Los Angeles, CA 90001" -153264,Bose SoundSport Headphones,1,99.99,02/25/19 08:47,"240 Adams St, New York City, NY 10001" -153265,Lightning Charging Cable,1,14.95,02/03/19 15:52,"917 Park St, Los Angeles, CA 90001" -153266,USB-C Charging Cable,2,11.95,02/18/19 19:49,"998 Spruce St, Dallas, TX 75001" -153267,AAA Batteries (4-pack),1,2.99,02/27/19 22:01,"267 2nd St, Atlanta, GA 30301" -153268,USB-C Charging Cable,1,11.95,02/08/19 09:35,"580 North St, Los Angeles, CA 90001" -153269,AA Batteries (4-pack),1,3.84,02/03/19 15:48,"236 Lincoln St, New York City, NY 10001" -153270,Apple Airpods Headphones,1,150,02/07/19 22:42,"467 Lakeview St, San Francisco, CA 94016" -153271,AA Batteries (4-pack),2,3.84,02/13/19 18:04,"94 4th St, San Francisco, CA 94016" -153272,AAA Batteries (4-pack),1,2.99,02/26/19 09:34,"408 2nd St, San Francisco, CA 94016" -153273,Flatscreen TV,1,300,02/18/19 20:34,"807 Lake St, San Francisco, CA 94016" -153274,USB-C Charging Cable,1,11.95,02/07/19 10:41,"166 Lake St, Los Angeles, CA 90001" -153275,USB-C Charging Cable,1,11.95,02/15/19 19:26,"146 Lincoln St, New York City, NY 10001" -153276,Vareebadd Phone,1,400,02/28/19 10:38,"262 South St, Austin, TX 73301" -153277,AA Batteries (4-pack),2,3.84,02/12/19 11:55,"610 Ridge St, Los Angeles, CA 90001" -153278,USB-C Charging Cable,1,11.95,02/08/19 11:23,"594 12th St, Los Angeles, CA 90001" -153279,Bose SoundSport Headphones,1,99.99,02/13/19 03:03,"461 14th St, Atlanta, GA 30301" -153280,27in 4K Gaming Monitor,1,389.99,02/08/19 05:25,"968 River St, Los Angeles, CA 90001" -153281,Wired Headphones,1,11.99,02/24/19 22:00,"542 Elm St, San Francisco, CA 94016" -153282,Lightning Charging Cable,1,14.95,02/17/19 10:34,"2 Lake St, Atlanta, GA 30301" -153283,AAA Batteries (4-pack),1,2.99,02/02/19 10:21,"919 Walnut St, Dallas, TX 75001" -153284,Wired Headphones,1,11.99,03/01/19 03:47,"38 Church St, Los Angeles, CA 90001" -153285,Lightning Charging Cable,2,14.95,02/17/19 21:46,"404 Walnut St, Dallas, TX 75001" -153286,Lightning Charging Cable,1,14.95,02/15/19 22:53,"221 Lincoln St, San Francisco, CA 94016" -153287,USB-C Charging Cable,2,11.95,02/20/19 22:33,"624 Hill St, Los Angeles, CA 90001" -153288,USB-C Charging Cable,1,11.95,02/09/19 15:33,"2 10th St, San Francisco, CA 94016" -153289,Bose SoundSport Headphones,1,99.99,02/19/19 16:19,"629 Main St, Boston, MA 02215" -153290,AAA Batteries (4-pack),2,2.99,02/09/19 08:32,"173 2nd St, Portland, OR 97035" -153291,USB-C Charging Cable,1,11.95,02/24/19 11:28,"861 2nd St, Dallas, TX 75001" -153292,Lightning Charging Cable,1,14.95,02/07/19 08:10,"213 Highland St, Boston, MA 02215" -153293,AA Batteries (4-pack),2,3.84,02/17/19 19:08,"157 12th St, New York City, NY 10001" -153294,Wired Headphones,1,11.99,02/23/19 12:28,"899 Washington St, Los Angeles, CA 90001" -153294,Macbook Pro Laptop,1,1700,02/23/19 12:28,"899 Washington St, Los Angeles, CA 90001" -153295,Wired Headphones,1,11.99,02/28/19 01:13,"62 Madison St, New York City, NY 10001" -153296,Wired Headphones,1,11.99,02/21/19 15:36,"677 Center St, Portland, OR 97035" -153297,Bose SoundSport Headphones,1,99.99,02/23/19 15:04,"828 Sunset St, San Francisco, CA 94016" -153298,AA Batteries (4-pack),2,3.84,02/10/19 11:57,"204 Maple St, Seattle, WA 98101" -153299,Flatscreen TV,1,300,02/18/19 12:33,"249 Walnut St, Los Angeles, CA 90001" -153300,Lightning Charging Cable,1,14.95,02/08/19 09:34,"648 10th St, Portland, OR 97035" -153301,Apple Airpods Headphones,1,150,02/23/19 16:03,"343 9th St, San Francisco, CA 94016" -153302,Google Phone,1,600,02/06/19 15:03,"895 4th St, San Francisco, CA 94016" -153303,Wired Headphones,1,11.99,02/24/19 18:30,"888 14th St, San Francisco, CA 94016" -153304,Wired Headphones,1,11.99,02/12/19 20:08,"74 Meadow St, Austin, TX 73301" -153304,Wired Headphones,1,11.99,02/12/19 20:08,"74 Meadow St, Austin, TX 73301" -153305,Google Phone,1,600,02/19/19 02:15,"181 Willow St, Los Angeles, CA 90001" -153306,Lightning Charging Cable,1,14.95,02/19/19 18:33,"691 13th St, New York City, NY 10001" -153307,Lightning Charging Cable,1,14.95,02/05/19 13:51,"858 8th St, Los Angeles, CA 90001" -153308,AAA Batteries (4-pack),1,2.99,02/09/19 18:05,"763 6th St, Dallas, TX 75001" -153309,Apple Airpods Headphones,1,150,02/12/19 19:53,"632 Hickory St, Atlanta, GA 30301" -153310,AA Batteries (4-pack),1,3.84,02/26/19 20:40,"876 Highland St, Seattle, WA 98101" -153311,USB-C Charging Cable,1,11.95,02/01/19 22:42,"44 7th St, Atlanta, GA 30301" -153312,USB-C Charging Cable,1,11.95,02/09/19 21:17,"86 14th St, New York City, NY 10001" -153313,USB-C Charging Cable,1,11.95,02/09/19 23:55,"926 Chestnut St, Portland, OR 97035" -153314,Wired Headphones,2,11.99,02/25/19 12:00,"756 Willow St, Dallas, TX 75001" -153315,Wired Headphones,1,11.99,02/13/19 14:47,"953 Jefferson St, Atlanta, GA 30301" -153315,Wired Headphones,1,11.99,02/13/19 14:47,"953 Jefferson St, Atlanta, GA 30301" -153316,ThinkPad Laptop,1,999.99,02/06/19 16:46,"553 Lakeview St, Dallas, TX 75001" -153317,27in 4K Gaming Monitor,1,389.99,02/27/19 18:50,"116 7th St, Los Angeles, CA 90001" -153318,Apple Airpods Headphones,1,150,02/10/19 17:19,"924 13th St, Los Angeles, CA 90001" -153319,27in 4K Gaming Monitor,1,389.99,02/09/19 20:02,"491 6th St, Los Angeles, CA 90001" -153320,27in 4K Gaming Monitor,1,389.99,02/20/19 09:59,"295 Spruce St, Austin, TX 73301" -153321,Bose SoundSport Headphones,1,99.99,02/01/19 20:15,"438 Church St, Austin, TX 73301" -153322,Lightning Charging Cable,2,14.95,02/10/19 21:58,"804 Dogwood St, Los Angeles, CA 90001" -153323,Google Phone,1,600,02/21/19 08:14,"343 Wilson St, Dallas, TX 75001" -153323,Bose SoundSport Headphones,1,99.99,02/21/19 08:14,"343 Wilson St, Dallas, TX 75001" -153324,USB-C Charging Cable,1,11.95,02/26/19 12:04,"431 14th St, New York City, NY 10001" -153325,Macbook Pro Laptop,1,1700,02/27/19 13:58,"73 Ridge St, Boston, MA 02215" -153326,USB-C Charging Cable,2,11.95,02/27/19 20:38,"799 Chestnut St, Seattle, WA 98101" -153327,27in FHD Monitor,1,149.99,02/12/19 20:21,"210 Lincoln St, Seattle, WA 98101" -153328,AAA Batteries (4-pack),1,2.99,02/18/19 12:21,"201 5th St, Boston, MA 02215" -153329,Bose SoundSport Headphones,1,99.99,02/06/19 16:30,"113 Pine St, Los Angeles, CA 90001" -153330,Lightning Charging Cable,1,14.95,02/24/19 13:25,"991 Pine St, Dallas, TX 75001" -153331,Apple Airpods Headphones,1,150,02/08/19 15:03,"25 Highland St, Los Angeles, CA 90001" -153332,USB-C Charging Cable,1,11.95,02/28/19 09:27,"62 Cherry St, Austin, TX 73301" -153333,AAA Batteries (4-pack),2,2.99,02/22/19 17:42,"97 Elm St, New York City, NY 10001" -153334,Wired Headphones,1,11.99,02/05/19 20:19,"174 Chestnut St, Los Angeles, CA 90001" -153335,Bose SoundSport Headphones,1,99.99,02/15/19 20:46,"803 Pine St, Los Angeles, CA 90001" -153336,Lightning Charging Cable,1,14.95,02/19/19 10:19,"581 Meadow St, Boston, MA 02215" -153337,ThinkPad Laptop,1,999.99,02/15/19 20:19,"439 Hill St, Dallas, TX 75001" -153338,Lightning Charging Cable,1,14.95,02/26/19 13:05,"299 South St, Dallas, TX 75001" -153339,Wired Headphones,1,11.99,02/27/19 23:24,"91 Highland St, Los Angeles, CA 90001" -153340,AAA Batteries (4-pack),1,2.99,02/07/19 10:17,"140 Lincoln St, New York City, NY 10001" -153341,Flatscreen TV,1,300,02/15/19 13:21,"116 Willow St, Austin, TX 73301" -153341,Apple Airpods Headphones,1,150,02/15/19 13:21,"116 Willow St, Austin, TX 73301" -153342,Apple Airpods Headphones,1,150,02/03/19 11:32,"563 West St, New York City, NY 10001" -153343,Wired Headphones,1,11.99,02/15/19 19:59,"906 Johnson St, San Francisco, CA 94016" -153344,Bose SoundSport Headphones,1,99.99,02/01/19 13:50,"445 4th St, Austin, TX 73301" -153345,27in 4K Gaming Monitor,1,389.99,02/13/19 19:12,"221 Chestnut St, Seattle, WA 98101" -153346,USB-C Charging Cable,1,11.95,02/03/19 13:28,"868 Maple St, Los Angeles, CA 90001" -153347,Apple Airpods Headphones,1,150,02/04/19 14:56,"827 Main St, Boston, MA 02215" -153348,USB-C Charging Cable,2,11.95,02/19/19 08:48,"483 12th St, New York City, NY 10001" -153349,AAA Batteries (4-pack),3,2.99,02/17/19 15:34,"195 South St, San Francisco, CA 94016" -153350,Wired Headphones,1,11.99,02/05/19 21:39,"252 Willow St, New York City, NY 10001" -153351,Lightning Charging Cable,1,14.95,02/16/19 21:55,"69 Hickory St, New York City, NY 10001" -153352,AAA Batteries (4-pack),1,2.99,02/05/19 10:51,"584 Meadow St, Los Angeles, CA 90001" -153353,USB-C Charging Cable,2,11.95,02/16/19 18:26,"829 Lakeview St, Seattle, WA 98101" -153354,Wired Headphones,1,11.99,02/11/19 13:34,"461 Walnut St, Dallas, TX 75001" -153355,Bose SoundSport Headphones,1,99.99,02/03/19 23:15,"418 7th St, Seattle, WA 98101" -153356,Macbook Pro Laptop,1,1700,02/22/19 21:06,"914 Spruce St, Atlanta, GA 30301" -153357,USB-C Charging Cable,1,11.95,02/24/19 02:28,"512 1st St, New York City, NY 10001" -153358,Apple Airpods Headphones,1,150,02/27/19 21:22,"358 Hill St, San Francisco, CA 94016" -153359,USB-C Charging Cable,3,11.95,02/08/19 19:05,"248 Hill St, Seattle, WA 98101" -153360,AAA Batteries (4-pack),1,2.99,02/10/19 09:30,"960 River St, New York City, NY 10001" -153361,USB-C Charging Cable,1,11.95,02/12/19 12:22,"185 Maple St, San Francisco, CA 94016" -153362,Bose SoundSport Headphones,1,99.99,02/11/19 22:52,"209 Forest St, Dallas, TX 75001" -153363,USB-C Charging Cable,1,11.95,02/15/19 09:48,"813 West St, Los Angeles, CA 90001" -153364,Wired Headphones,1,11.99,02/11/19 20:42,"146 Cedar St, Seattle, WA 98101" -153365,Vareebadd Phone,1,400,02/25/19 20:51,"554 Main St, Boston, MA 02215" -153366,AAA Batteries (4-pack),1,2.99,02/06/19 14:16,"866 Jackson St, Seattle, WA 98101" -153366,Wired Headphones,1,11.99,02/06/19 14:16,"866 Jackson St, Seattle, WA 98101" -153367,Wired Headphones,1,11.99,02/06/19 13:43,"94 Lake St, Los Angeles, CA 90001" -153368,27in 4K Gaming Monitor,1,389.99,02/22/19 06:22,"635 8th St, Boston, MA 02215" -153369,20in Monitor,1,109.99,02/12/19 09:21,"724 Jackson St, San Francisco, CA 94016" -153370,USB-C Charging Cable,3,11.95,02/04/19 23:15,"194 Elm St, Dallas, TX 75001" -153371,AA Batteries (4-pack),2,3.84,02/11/19 12:22,"158 Lakeview St, San Francisco, CA 94016" -153372,iPhone,1,700,02/26/19 20:42,"351 Willow St, Austin, TX 73301" -153373,Apple Airpods Headphones,1,150,02/11/19 08:58,"601 12th St, New York City, NY 10001" -153374,Lightning Charging Cable,1,14.95,02/27/19 11:23,"366 Jefferson St, Los Angeles, CA 90001" -153375,Apple Airpods Headphones,1,150,02/10/19 19:42,"563 Pine St, San Francisco, CA 94016" -153376,Wired Headphones,1,11.99,02/19/19 09:00,"317 Spruce St, Portland, OR 97035" -153377,Lightning Charging Cable,1,14.95,02/16/19 12:39,"155 Wilson St, San Francisco, CA 94016" -153378,USB-C Charging Cable,1,11.95,02/09/19 19:31,"527 Sunset St, Los Angeles, CA 90001" -153379,AA Batteries (4-pack),2,3.84,02/25/19 21:10,"853 6th St, San Francisco, CA 94016" -153380,Apple Airpods Headphones,1,150,02/24/19 12:37,"790 Jefferson St, Austin, TX 73301" -153381,USB-C Charging Cable,1,11.95,02/15/19 11:26,"470 Madison St, New York City, NY 10001" -153382,AAA Batteries (4-pack),3,2.99,02/11/19 20:31,"939 Adams St, New York City, NY 10001" -153383,Google Phone,1,600,02/17/19 14:54,"826 Church St, Los Angeles, CA 90001" -153384,ThinkPad Laptop,1,999.99,02/23/19 17:57,"187 Ridge St, San Francisco, CA 94016" -153385,Lightning Charging Cable,1,14.95,02/18/19 07:54,"860 Pine St, Boston, MA 02215" -153386,Flatscreen TV,1,300,02/22/19 16:22,"340 2nd St, San Francisco, CA 94016" -153387,AAA Batteries (4-pack),1,2.99,02/01/19 18:25,"762 Lake St, Portland, OR 97035" -153388,Wired Headphones,1,11.99,02/01/19 16:15,"718 Church St, Seattle, WA 98101" -153389,AAA Batteries (4-pack),1,2.99,02/28/19 23:48,"615 Elm St, Los Angeles, CA 90001" -153390,Lightning Charging Cable,1,14.95,02/13/19 10:20,"195 South St, Los Angeles, CA 90001" -153391,27in 4K Gaming Monitor,1,389.99,02/27/19 12:07,"119 Willow St, Boston, MA 02215" -153392,Bose SoundSport Headphones,1,99.99,02/10/19 10:55,"51 Washington St, Los Angeles, CA 90001" -153393,27in FHD Monitor,1,149.99,02/13/19 17:59,"564 Maple St, Dallas, TX 75001" -153394,AAA Batteries (4-pack),2,2.99,02/25/19 01:14,"593 North St, San Francisco, CA 94016" -153395,27in 4K Gaming Monitor,1,389.99,02/16/19 12:22,"835 Chestnut St, Dallas, TX 75001" -153396,AA Batteries (4-pack),2,3.84,02/12/19 12:35,"932 Main St, Portland, ME 04101" -153397,USB-C Charging Cable,2,11.95,02/17/19 11:42,"639 Hickory St, Los Angeles, CA 90001" -153398,AA Batteries (4-pack),1,3.84,02/17/19 16:47,"485 12th St, Boston, MA 02215" -153399,iPhone,1,700,02/16/19 06:36,"723 4th St, New York City, NY 10001" -153399,Lightning Charging Cable,1,14.95,02/16/19 06:36,"723 4th St, New York City, NY 10001" -153400,AAA Batteries (4-pack),2,2.99,02/06/19 17:06,"848 Walnut St, Austin, TX 73301" -153401,Lightning Charging Cable,1,14.95,02/07/19 17:15,"78 Pine St, Portland, OR 97035" -153402,USB-C Charging Cable,1,11.95,02/18/19 17:17,"436 Willow St, San Francisco, CA 94016" -153403,Bose SoundSport Headphones,1,99.99,02/09/19 16:12,"844 Johnson St, Seattle, WA 98101" -153404,Lightning Charging Cable,1,14.95,02/18/19 19:57,"691 Madison St, Dallas, TX 75001" -153405,USB-C Charging Cable,1,11.95,02/03/19 11:26,"527 Madison St, New York City, NY 10001" -153406,ThinkPad Laptop,1,999.99,02/14/19 10:53,"432 14th St, San Francisco, CA 94016" -153407,27in FHD Monitor,1,149.99,02/25/19 16:59,"592 Jackson St, Portland, OR 97035" -153408,Bose SoundSport Headphones,1,99.99,02/01/19 18:29,"84 Lakeview St, San Francisco, CA 94016" -153409,USB-C Charging Cable,1,11.95,02/28/19 13:09,"968 10th St, San Francisco, CA 94016" -153410,Wired Headphones,1,11.99,02/15/19 20:27,"779 Spruce St, San Francisco, CA 94016" -153411,AAA Batteries (4-pack),5,2.99,02/23/19 09:21,"246 7th St, Boston, MA 02215" -153412,USB-C Charging Cable,1,11.95,02/21/19 19:20,"835 Jackson St, Los Angeles, CA 90001" -153413,AA Batteries (4-pack),2,3.84,02/22/19 22:23,"676 Church St, Los Angeles, CA 90001" -153414,AAA Batteries (4-pack),2,2.99,02/06/19 10:40,"879 Highland St, San Francisco, CA 94016" -153415,Wired Headphones,1,11.99,02/04/19 07:20,"59 7th St, Los Angeles, CA 90001" -153416,AA Batteries (4-pack),3,3.84,02/21/19 10:06,"98 12th St, Los Angeles, CA 90001" -153417,34in Ultrawide Monitor,1,379.99,02/11/19 03:44,"803 Maple St, New York City, NY 10001" -153418,Wired Headphones,1,11.99,02/01/19 09:34,"514 2nd St, Atlanta, GA 30301" -153419,Lightning Charging Cable,1,14.95,02/25/19 23:56,"336 South St, Dallas, TX 75001" -153420,USB-C Charging Cable,1,11.95,02/10/19 13:53,"217 Cherry St, Atlanta, GA 30301" -153421,Bose SoundSport Headphones,1,99.99,02/06/19 18:54,"27 Maple St, Los Angeles, CA 90001" -153422,AAA Batteries (4-pack),1,2.99,02/14/19 22:59,"841 6th St, Portland, OR 97035" -153423,AA Batteries (4-pack),2,3.84,02/10/19 17:05,"246 Johnson St, Dallas, TX 75001" -153424,AAA Batteries (4-pack),2,2.99,02/22/19 22:16,"424 Elm St, New York City, NY 10001" -153425,Lightning Charging Cable,1,14.95,02/02/19 07:04,"279 Highland St, San Francisco, CA 94016" -153426,iPhone,1,700,02/10/19 18:28,"577 Lakeview St, Austin, TX 73301" -153426,Lightning Charging Cable,1,14.95,02/10/19 18:28,"577 Lakeview St, Austin, TX 73301" -153427,USB-C Charging Cable,1,11.95,02/18/19 22:04,"385 12th St, Boston, MA 02215" -153428,27in 4K Gaming Monitor,1,389.99,02/28/19 17:24,"85 13th St, Portland, OR 97035" -153429,USB-C Charging Cable,1,11.95,02/13/19 14:46,"39 9th St, New York City, NY 10001" -153430,iPhone,1,700,02/11/19 11:57,"492 Maple St, Dallas, TX 75001" -153431,27in 4K Gaming Monitor,1,389.99,02/13/19 12:24,"35 7th St, Seattle, WA 98101" -153432,iPhone,1,700,02/15/19 18:29,"116 7th St, Portland, OR 97035" -153432,Wired Headphones,2,11.99,02/15/19 18:29,"116 7th St, Portland, OR 97035" -153433,Lightning Charging Cable,1,14.95,02/06/19 09:44,"999 River St, Los Angeles, CA 90001" -153434,Lightning Charging Cable,1,14.95,02/06/19 16:24,"320 10th St, New York City, NY 10001" -153435,34in Ultrawide Monitor,1,379.99,02/10/19 12:22,"25 North St, Los Angeles, CA 90001" -153436,Bose SoundSport Headphones,1,99.99,02/21/19 19:52,"228 Maple St, Los Angeles, CA 90001" -153437,USB-C Charging Cable,1,11.95,02/26/19 11:49,"329 Main St, San Francisco, CA 94016" -153438,AAA Batteries (4-pack),1,2.99,02/19/19 09:00,"461 Cherry St, New York City, NY 10001" -153439,USB-C Charging Cable,1,11.95,02/08/19 19:14,"952 10th St, Portland, OR 97035" -153440,Apple Airpods Headphones,1,150,02/27/19 12:58,"446 Hill St, Los Angeles, CA 90001" -153441,34in Ultrawide Monitor,1,379.99,02/17/19 18:30,"954 Cedar St, Los Angeles, CA 90001" -153442,20in Monitor,1,109.99,02/26/19 14:47,"625 Lincoln St, Los Angeles, CA 90001" -153443,AA Batteries (4-pack),1,3.84,02/17/19 10:15,"882 Main St, Los Angeles, CA 90001" -153444,34in Ultrawide Monitor,1,379.99,02/05/19 20:48,"724 Lakeview St, New York City, NY 10001" -153445,Bose SoundSport Headphones,1,99.99,02/20/19 18:43,"315 West St, Boston, MA 02215" -153446,AA Batteries (4-pack),1,3.84,02/23/19 11:39,"735 14th St, Los Angeles, CA 90001" -153447,Lightning Charging Cable,1,14.95,02/06/19 12:48,"532 Park St, Austin, TX 73301" -153448,Bose SoundSport Headphones,1,99.99,02/18/19 18:17,"161 Cedar St, Portland, ME 04101" -153449,27in FHD Monitor,1,149.99,02/05/19 12:12,"216 Spruce St, Boston, MA 02215" -153450,AAA Batteries (4-pack),1,2.99,02/12/19 11:21,"286 Forest St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -153451,27in 4K Gaming Monitor,1,389.99,02/11/19 19:21,"168 Johnson St, Los Angeles, CA 90001" -153452,Bose SoundSport Headphones,1,99.99,02/14/19 17:01,"84 North St, Boston, MA 02215" -153453,AAA Batteries (4-pack),2,2.99,02/14/19 09:22,"271 Maple St, Atlanta, GA 30301" -153454,27in FHD Monitor,1,149.99,02/14/19 22:06,"824 6th St, San Francisco, CA 94016" -153455,ThinkPad Laptop,1,999.99,02/22/19 23:15,"780 Elm St, New York City, NY 10001" -153456,AAA Batteries (4-pack),1,2.99,02/17/19 13:35,"518 Park St, Seattle, WA 98101" -153457,AAA Batteries (4-pack),1,2.99,02/07/19 20:46,"719 8th St, Seattle, WA 98101" -153458,USB-C Charging Cable,1,11.95,02/16/19 10:13,"174 Willow St, Los Angeles, CA 90001" -153459,Bose SoundSport Headphones,1,99.99,02/24/19 22:38,"196 Adams St, Boston, MA 02215" -153460,AA Batteries (4-pack),1,3.84,02/08/19 19:30,"622 Washington St, Seattle, WA 98101" -153461,AAA Batteries (4-pack),1,2.99,02/22/19 18:14,"841 Elm St, Los Angeles, CA 90001" -153462,Wired Headphones,1,11.99,02/25/19 06:44,"239 Lake St, San Francisco, CA 94016" -153463,34in Ultrawide Monitor,1,379.99,02/19/19 15:31,"783 1st St, Los Angeles, CA 90001" -153464,USB-C Charging Cable,1,11.95,02/01/19 21:40,"254 Dogwood St, Boston, MA 02215" -153465,34in Ultrawide Monitor,1,379.99,02/13/19 13:24,"16 Center St, San Francisco, CA 94016" -153466,USB-C Charging Cable,1,11.95,02/23/19 18:09,"970 Willow St, Austin, TX 73301" -153467,AA Batteries (4-pack),1,3.84,02/07/19 08:48,"729 2nd St, Seattle, WA 98101" -153468,AAA Batteries (4-pack),3,2.99,02/02/19 17:22,"230 Elm St, Seattle, WA 98101" -153469,AAA Batteries (4-pack),2,2.99,02/16/19 15:53,"613 Jackson St, New York City, NY 10001" -153470,Macbook Pro Laptop,1,1700,02/12/19 18:25,"812 9th St, San Francisco, CA 94016" -153471,USB-C Charging Cable,1,11.95,02/02/19 12:43,"317 River St, Atlanta, GA 30301" -153472,Lightning Charging Cable,1,14.95,02/05/19 01:17,"11 West St, Portland, OR 97035" -153473,Google Phone,1,600,02/12/19 09:10,"322 Willow St, New York City, NY 10001" -153473,USB-C Charging Cable,1,11.95,02/12/19 09:10,"322 Willow St, New York City, NY 10001" -153474,USB-C Charging Cable,1,11.95,02/26/19 15:53,"2 Willow St, San Francisco, CA 94016" -153475,Apple Airpods Headphones,1,150,02/01/19 12:31,"547 Cedar St, Austin, TX 73301" -,,,,, -153476,Wired Headphones,1,11.99,02/19/19 17:59,"369 Lake St, Los Angeles, CA 90001" -153477,USB-C Charging Cable,1,11.95,02/01/19 13:53,"302 Elm St, Portland, ME 04101" -153478,Google Phone,1,600,02/09/19 10:11,"472 Center St, Portland, OR 97035" -153479,AAA Batteries (4-pack),1,2.99,02/20/19 13:28,"920 14th St, Atlanta, GA 30301" -153480,AA Batteries (4-pack),1,3.84,02/13/19 11:48,"326 Cherry St, San Francisco, CA 94016" -153481,Lightning Charging Cable,1,14.95,02/23/19 21:01,"480 8th St, Dallas, TX 75001" -153482,AA Batteries (4-pack),1,3.84,02/23/19 19:50,"186 Lakeview St, Dallas, TX 75001" -153483,AA Batteries (4-pack),2,3.84,02/25/19 15:20,"548 Willow St, New York City, NY 10001" -153484,27in 4K Gaming Monitor,1,389.99,02/17/19 10:47,"359 Washington St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -153485,USB-C Charging Cable,2,11.95,02/27/19 18:24,"45 Walnut St, San Francisco, CA 94016" -153486,USB-C Charging Cable,1,11.95,02/13/19 20:48,"237 Sunset St, New York City, NY 10001" -153487,iPhone,1,700,02/05/19 15:15,"721 Jackson St, San Francisco, CA 94016" -153487,Lightning Charging Cable,1,14.95,02/05/19 15:15,"721 Jackson St, San Francisco, CA 94016" -153488,Apple Airpods Headphones,1,150,02/16/19 17:26,"699 1st St, Atlanta, GA 30301" -153489,Macbook Pro Laptop,1,1700,02/16/19 08:35,"237 Madison St, New York City, NY 10001" -153490,Wired Headphones,1,11.99,02/09/19 17:39,"631 Lincoln St, Los Angeles, CA 90001" -153491,27in FHD Monitor,1,149.99,02/09/19 15:49,"353 River St, San Francisco, CA 94016" -153492,USB-C Charging Cable,1,11.95,02/01/19 08:13,"779 Lakeview St, Los Angeles, CA 90001" -153493,Vareebadd Phone,1,400,02/13/19 21:19,"479 Sunset St, Dallas, TX 75001" -153494,AA Batteries (4-pack),1,3.84,02/07/19 14:29,"350 Willow St, San Francisco, CA 94016" -153495,Lightning Charging Cable,1,14.95,02/25/19 08:53,"767 Cherry St, San Francisco, CA 94016" -153496,Apple Airpods Headphones,1,150,02/02/19 09:01,"849 Park St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -153497,AAA Batteries (4-pack),1,2.99,02/07/19 21:30,"657 Lincoln St, Los Angeles, CA 90001" -153498,Lightning Charging Cable,1,14.95,02/17/19 14:34,"680 Cedar St, Boston, MA 02215" -153499,AA Batteries (4-pack),1,3.84,02/13/19 08:16,"870 6th St, Dallas, TX 75001" -153500,iPhone,1,700,02/18/19 16:03,"932 Main St, San Francisco, CA 94016" -153501,AA Batteries (4-pack),1,3.84,02/02/19 18:15,"7 10th St, Atlanta, GA 30301" -153502,27in FHD Monitor,1,149.99,02/05/19 14:30,"397 4th St, Los Angeles, CA 90001" -153503,AAA Batteries (4-pack),1,2.99,02/20/19 11:39,"39 8th St, Atlanta, GA 30301" -153504,Google Phone,1,600,02/26/19 20:34,"673 Meadow St, San Francisco, CA 94016" -153504,USB-C Charging Cable,1,11.95,02/26/19 20:34,"673 Meadow St, San Francisco, CA 94016" -153505,AA Batteries (4-pack),6,3.84,02/04/19 11:22,"710 Ridge St, Los Angeles, CA 90001" -153506,27in 4K Gaming Monitor,1,389.99,02/18/19 13:14,"664 Elm St, New York City, NY 10001" -153507,AAA Batteries (4-pack),1,2.99,02/03/19 08:09,"833 Spruce St, Atlanta, GA 30301" -153508,AA Batteries (4-pack),1,3.84,02/06/19 15:56,"139 Highland St, Los Angeles, CA 90001" -153509,Lightning Charging Cable,1,14.95,02/13/19 21:34,"928 Lakeview St, San Francisco, CA 94016" -153510,34in Ultrawide Monitor,1,379.99,02/09/19 17:28,"250 Lake St, Boston, MA 02215" -153511,27in FHD Monitor,1,149.99,02/15/19 03:11,"431 Elm St, San Francisco, CA 94016" -153512,AAA Batteries (4-pack),2,2.99,02/28/19 10:40,"483 Maple St, Boston, MA 02215" -153513,Apple Airpods Headphones,1,150,02/16/19 14:22,"85 Cherry St, San Francisco, CA 94016" -153514,34in Ultrawide Monitor,1,379.99,02/17/19 19:28,"389 North St, Los Angeles, CA 90001" -153515,AA Batteries (4-pack),1,3.84,02/13/19 21:40,"930 North St, Boston, MA 02215" -153516,Lightning Charging Cable,1,14.95,02/25/19 10:10,"800 Church St, San Francisco, CA 94016" -153517,USB-C Charging Cable,1,11.95,02/09/19 20:24,"763 9th St, Boston, MA 02215" -153518,Wired Headphones,1,11.99,02/27/19 17:09,"654 River St, New York City, NY 10001" -153519,Google Phone,1,600,02/24/19 13:30,"721 Hickory St, San Francisco, CA 94016" -153519,USB-C Charging Cable,1,11.95,02/24/19 13:30,"721 Hickory St, San Francisco, CA 94016" -153520,Flatscreen TV,1,300,02/17/19 22:05,"487 South St, San Francisco, CA 94016" -153521,Apple Airpods Headphones,1,150,02/15/19 01:29,"633 Sunset St, Atlanta, GA 30301" -153522,ThinkPad Laptop,1,999.99,02/16/19 10:33,"932 Dogwood St, Boston, MA 02215" -153523,iPhone,1,700,02/20/19 13:48,"571 Lakeview St, San Francisco, CA 94016" -153524,Bose SoundSport Headphones,1,99.99,02/08/19 10:50,"533 12th St, Los Angeles, CA 90001" -153525,ThinkPad Laptop,1,999.99,02/14/19 11:58,"751 Forest St, San Francisco, CA 94016" -153526,iPhone,1,700,02/08/19 22:00,"13 Cedar St, Portland, OR 97035" -153527,20in Monitor,1,109.99,02/21/19 17:24,"463 Meadow St, Boston, MA 02215" -153528,Bose SoundSport Headphones,1,99.99,02/10/19 09:25,"90 Washington St, Dallas, TX 75001" -153529,Lightning Charging Cable,1,14.95,02/03/19 20:48,"192 River St, New York City, NY 10001" -153530,Wired Headphones,1,11.99,02/23/19 04:24,"753 Lakeview St, Boston, MA 02215" -153531,34in Ultrawide Monitor,1,379.99,02/15/19 08:28,"678 2nd St, Los Angeles, CA 90001" -153532,USB-C Charging Cable,2,11.95,02/06/19 09:22,"457 4th St, Seattle, WA 98101" -153533,Lightning Charging Cable,1,14.95,02/21/19 20:44,"110 Hickory St, Boston, MA 02215" -153534,Lightning Charging Cable,1,14.95,02/06/19 11:55,"853 Lakeview St, San Francisco, CA 94016" -153535,Bose SoundSport Headphones,1,99.99,02/14/19 08:59,"597 Cedar St, San Francisco, CA 94016" -153536,AA Batteries (4-pack),1,3.84,02/24/19 00:29,"369 Sunset St, Austin, TX 73301" -153537,27in FHD Monitor,1,149.99,02/01/19 08:54,"800 Sunset St, Boston, MA 02215" -153538,27in FHD Monitor,1,149.99,02/22/19 16:53,"398 14th St, Los Angeles, CA 90001" -153539,Wired Headphones,1,11.99,02/26/19 14:46,"337 Adams St, Los Angeles, CA 90001" -153540,27in FHD Monitor,1,149.99,02/23/19 00:47,"278 Cedar St, Boston, MA 02215" -153541,27in 4K Gaming Monitor,1,389.99,02/28/19 13:03,"771 Highland St, San Francisco, CA 94016" -153542,iPhone,1,700,02/19/19 17:42,"317 Madison St, Los Angeles, CA 90001" -153543,Wired Headphones,1,11.99,02/15/19 19:22,"839 4th St, New York City, NY 10001" -153544,Bose SoundSport Headphones,1,99.99,03/01/19 02:03,"92 Spruce St, Los Angeles, CA 90001" -153545,Macbook Pro Laptop,1,1700,02/23/19 22:53,"515 1st St, Los Angeles, CA 90001" -153546,20in Monitor,1,109.99,02/05/19 16:04,"230 Meadow St, Los Angeles, CA 90001" -153547,27in 4K Gaming Monitor,1,389.99,02/18/19 01:46,"494 13th St, Portland, ME 04101" -153548,AAA Batteries (4-pack),1,2.99,02/11/19 13:25,"612 13th St, Portland, OR 97035" -153549,USB-C Charging Cable,1,11.95,02/16/19 15:35,"923 10th St, Boston, MA 02215" -153550,AA Batteries (4-pack),2,3.84,02/10/19 19:54,"767 Dogwood St, San Francisco, CA 94016" -153551,Bose SoundSport Headphones,1,99.99,02/07/19 19:47,"641 Wilson St, Austin, TX 73301" -153552,AAA Batteries (4-pack),1,2.99,02/14/19 22:13,"907 Center St, Austin, TX 73301" -153553,Apple Airpods Headphones,1,150,02/05/19 16:40,"195 Lake St, New York City, NY 10001" -153554,27in FHD Monitor,1,149.99,02/19/19 22:50,"323 10th St, San Francisco, CA 94016" -153555,Flatscreen TV,1,300,02/17/19 02:17,"987 Wilson St, Seattle, WA 98101" -153556,AA Batteries (4-pack),1,3.84,02/21/19 13:13,"316 Hickory St, Seattle, WA 98101" -153557,Flatscreen TV,1,300,02/12/19 08:46,"897 Madison St, Austin, TX 73301" -153558,Apple Airpods Headphones,1,150,02/01/19 19:30,"291 Hickory St, New York City, NY 10001" -153559,Wired Headphones,1,11.99,02/16/19 12:16,"176 11th St, San Francisco, CA 94016" -153560,USB-C Charging Cable,1,11.95,02/14/19 23:39,"376 13th St, New York City, NY 10001" -153561,Apple Airpods Headphones,1,150,02/18/19 21:49,"806 Meadow St, Atlanta, GA 30301" -153562,AAA Batteries (4-pack),1,2.99,02/25/19 12:45,"212 5th St, Dallas, TX 75001" -153563,AAA Batteries (4-pack),1,2.99,02/16/19 19:25,"223 Main St, Boston, MA 02215" -153564,27in 4K Gaming Monitor,1,389.99,02/23/19 10:20,"9 South St, San Francisco, CA 94016" -153565,27in 4K Gaming Monitor,1,389.99,02/12/19 22:07,"542 Forest St, Austin, TX 73301" -153565,Lightning Charging Cable,1,14.95,02/12/19 22:07,"542 Forest St, Austin, TX 73301" -153566,34in Ultrawide Monitor,1,379.99,02/27/19 08:37,"140 7th St, Boston, MA 02215" -153567,AA Batteries (4-pack),1,3.84,02/09/19 15:17,"157 Chestnut St, Seattle, WA 98101" -153568,27in 4K Gaming Monitor,1,389.99,02/20/19 21:56,"717 9th St, Atlanta, GA 30301" -153569,AAA Batteries (4-pack),1,2.99,02/01/19 21:05,"524 Park St, Los Angeles, CA 90001" -153570,USB-C Charging Cable,1,11.95,02/04/19 08:36,"642 4th St, Portland, ME 04101" -153571,Apple Airpods Headphones,1,150,02/11/19 14:36,"194 7th St, San Francisco, CA 94016" -153572,Wired Headphones,1,11.99,02/03/19 11:37,"652 Ridge St, San Francisco, CA 94016" -153573,AAA Batteries (4-pack),2,2.99,02/10/19 17:10,"446 Meadow St, Seattle, WA 98101" -153574,AAA Batteries (4-pack),1,2.99,02/27/19 17:56,"833 Walnut St, San Francisco, CA 94016" -153575,Macbook Pro Laptop,1,1700,02/13/19 21:47,"74 Willow St, Austin, TX 73301" -153576,Lightning Charging Cable,2,14.95,02/21/19 10:40,"706 5th St, Portland, OR 97035" -153577,34in Ultrawide Monitor,1,379.99,02/21/19 10:51,"425 Spruce St, Dallas, TX 75001" -153578,Lightning Charging Cable,1,14.95,02/06/19 13:53,"555 North St, Boston, MA 02215" -153579,AAA Batteries (4-pack),1,2.99,02/12/19 10:10,"310 Willow St, Boston, MA 02215" -153580,USB-C Charging Cable,1,11.95,02/03/19 16:53,"149 Forest St, Atlanta, GA 30301" -153581,AAA Batteries (4-pack),1,2.99,02/19/19 10:53,"882 Lakeview St, Los Angeles, CA 90001" -153582,27in FHD Monitor,1,149.99,02/07/19 12:14,"156 2nd St, Austin, TX 73301" -153582,Wired Headphones,2,11.99,02/07/19 12:14,"156 2nd St, Austin, TX 73301" -153583,Apple Airpods Headphones,1,150,02/24/19 21:46,"800 Dogwood St, San Francisco, CA 94016" -153584,Bose SoundSport Headphones,1,99.99,02/09/19 14:20,"45 Sunset St, Portland, OR 97035" -153585,Lightning Charging Cable,1,14.95,02/06/19 15:24,"970 River St, Los Angeles, CA 90001" -153586,AA Batteries (4-pack),1,3.84,02/16/19 19:14,"305 Pine St, Los Angeles, CA 90001" -153587,USB-C Charging Cable,1,11.95,02/17/19 03:22,"472 North St, Portland, OR 97035" -153588,Bose SoundSport Headphones,1,99.99,02/04/19 17:57,"341 Church St, Los Angeles, CA 90001" -153589,Apple Airpods Headphones,1,150,02/09/19 19:41,"695 Jackson St, Seattle, WA 98101" -153590,AA Batteries (4-pack),2,3.84,02/08/19 19:30,"805 Ridge St, Boston, MA 02215" -153591,Bose SoundSport Headphones,1,99.99,02/01/19 09:37,"714 Adams St, New York City, NY 10001" -153592,USB-C Charging Cable,1,11.95,02/15/19 13:29,"655 Church St, New York City, NY 10001" -153593,AAA Batteries (4-pack),1,2.99,02/06/19 10:16,"979 Hickory St, Atlanta, GA 30301" -153594,Lightning Charging Cable,1,14.95,02/02/19 11:29,"31 Hickory St, San Francisco, CA 94016" -153595,iPhone,1,700,02/13/19 19:36,"318 Lakeview St, Atlanta, GA 30301" -153596,Lightning Charging Cable,1,14.95,02/02/19 17:53,"519 Johnson St, San Francisco, CA 94016" -153597,Apple Airpods Headphones,1,150,02/07/19 22:01,"134 2nd St, Seattle, WA 98101" -153598,AA Batteries (4-pack),3,3.84,02/02/19 23:12,"600 Dogwood St, New York City, NY 10001" -153599,Macbook Pro Laptop,1,1700,02/04/19 09:03,"25 West St, Portland, OR 97035" -153600,27in FHD Monitor,1,149.99,02/02/19 10:36,"730 5th St, Boston, MA 02215" -153601,Bose SoundSport Headphones,2,99.99,02/04/19 20:55,"868 North St, New York City, NY 10001" -153602,Flatscreen TV,1,300,02/13/19 07:29,"975 9th St, New York City, NY 10001" -153603,USB-C Charging Cable,1,11.95,02/10/19 18:34,"861 11th St, Los Angeles, CA 90001" -153604,Lightning Charging Cable,1,14.95,02/26/19 10:28,"168 Wilson St, Austin, TX 73301" -153605,iPhone,1,700,02/09/19 20:27,"195 8th St, Boston, MA 02215" -153606,iPhone,1,700,02/12/19 16:42,"861 11th St, San Francisco, CA 94016" -153607,ThinkPad Laptop,1,999.99,02/07/19 23:07,"881 Adams St, San Francisco, CA 94016" -153608,Macbook Pro Laptop,1,1700,02/25/19 11:25,"396 12th St, Seattle, WA 98101" -153609,AA Batteries (4-pack),1,3.84,02/05/19 23:25,"845 14th St, San Francisco, CA 94016" -153610,AAA Batteries (4-pack),1,2.99,02/19/19 20:18,"754 10th St, Dallas, TX 75001" -153611,Lightning Charging Cable,1,14.95,02/04/19 11:49,"389 Wilson St, San Francisco, CA 94016" -153612,AAA Batteries (4-pack),1,2.99,02/12/19 23:12,"963 Lincoln St, Portland, OR 97035" -153613,Google Phone,1,600,02/20/19 17:31,"29 Forest St, Los Angeles, CA 90001" -153613,USB-C Charging Cable,1,11.95,02/20/19 17:31,"29 Forest St, Los Angeles, CA 90001" -153614,AAA Batteries (4-pack),1,2.99,02/10/19 19:42,"315 9th St, New York City, NY 10001" -153615,Lightning Charging Cable,1,14.95,02/12/19 18:27,"251 Main St, San Francisco, CA 94016" -153616,20in Monitor,1,109.99,02/09/19 19:36,"801 Madison St, Seattle, WA 98101" -153617,USB-C Charging Cable,1,11.95,02/21/19 09:26,"541 Ridge St, New York City, NY 10001" -153618,Bose SoundSport Headphones,1,99.99,02/24/19 13:10,"578 Hill St, San Francisco, CA 94016" -153619,USB-C Charging Cable,1,11.95,02/05/19 21:26,"454 Spruce St, New York City, NY 10001" -153620,Wired Headphones,1,11.99,02/17/19 17:23,"498 1st St, Austin, TX 73301" -153621,Lightning Charging Cable,1,14.95,02/24/19 11:26,"248 10th St, New York City, NY 10001" -153622,AA Batteries (4-pack),1,3.84,02/24/19 14:39,"526 Lake St, Portland, OR 97035" -153623,Apple Airpods Headphones,1,150,02/25/19 13:44,"677 Center St, Dallas, TX 75001" -153624,Flatscreen TV,1,300,02/13/19 13:22,"346 Lincoln St, Dallas, TX 75001" -153625,AA Batteries (4-pack),1,3.84,02/26/19 16:13,"987 Meadow St, San Francisco, CA 94016" -153626,Wired Headphones,1,11.99,02/01/19 14:52,"567 Pine St, Seattle, WA 98101" -153627,Bose SoundSport Headphones,1,99.99,02/09/19 14:16,"955 Willow St, Los Angeles, CA 90001" -153628,USB-C Charging Cable,2,11.95,02/13/19 14:02,"431 Wilson St, Seattle, WA 98101" -153629,Apple Airpods Headphones,1,150,02/03/19 08:40,"856 Ridge St, Seattle, WA 98101" -153630,USB-C Charging Cable,2,11.95,02/03/19 13:48,"434 Highland St, Boston, MA 02215" -153631,AAA Batteries (4-pack),3,2.99,02/17/19 23:17,"520 Ridge St, San Francisco, CA 94016" -153632,iPhone,1,700,02/17/19 18:42,"170 Cedar St, Atlanta, GA 30301" -153633,Google Phone,1,600,02/16/19 02:18,"750 Center St, Boston, MA 02215" -153634,34in Ultrawide Monitor,1,379.99,02/13/19 08:40,"250 Jackson St, Seattle, WA 98101" -153635,Wired Headphones,1,11.99,02/26/19 20:01,"930 8th St, San Francisco, CA 94016" -153636,USB-C Charging Cable,1,11.95,02/07/19 13:44,"330 Meadow St, New York City, NY 10001" -153637,27in 4K Gaming Monitor,1,389.99,02/11/19 11:50,"263 Elm St, Seattle, WA 98101" -153638,Lightning Charging Cable,1,14.95,02/03/19 22:36,"393 Hill St, Los Angeles, CA 90001" -153639,AA Batteries (4-pack),1,3.84,02/13/19 20:51,"882 2nd St, Atlanta, GA 30301" -153640,AAA Batteries (4-pack),3,2.99,02/26/19 08:53,"673 Johnson St, Dallas, TX 75001" -153641,Google Phone,1,600,02/05/19 08:35,"282 Jefferson St, San Francisco, CA 94016" -153642,Lightning Charging Cable,1,14.95,02/07/19 12:12,"878 Pine St, Boston, MA 02215" -153643,Apple Airpods Headphones,1,150,02/20/19 20:09,"244 Cherry St, Los Angeles, CA 90001" -153643,Wired Headphones,1,11.99,02/20/19 20:09,"244 Cherry St, Los Angeles, CA 90001" -153644,Lightning Charging Cable,1,14.95,02/03/19 17:46,"636 Walnut St, Atlanta, GA 30301" -153645,27in FHD Monitor,1,149.99,02/26/19 00:07,"730 Walnut St, Los Angeles, CA 90001" -153646,USB-C Charging Cable,1,11.95,02/10/19 12:50,"921 Highland St, Boston, MA 02215" -153647,USB-C Charging Cable,1,11.95,02/06/19 15:20,"432 Willow St, Dallas, TX 75001" -153648,USB-C Charging Cable,1,11.95,02/09/19 16:03,"805 Jackson St, San Francisco, CA 94016" -153649,Apple Airpods Headphones,1,150,02/01/19 12:48,"108 12th St, Los Angeles, CA 90001" -153650,Google Phone,1,600,02/06/19 13:06,"969 Washington St, Seattle, WA 98101" -153650,USB-C Charging Cable,1,11.95,02/06/19 13:06,"969 Washington St, Seattle, WA 98101" -153651,27in FHD Monitor,1,149.99,02/22/19 18:11,"740 Lake St, Portland, OR 97035" -153652,LG Dryer,1,600.0,02/15/19 19:53,"362 Elm St, New York City, NY 10001" -153653,Lightning Charging Cable,1,14.95,02/27/19 11:22,"298 North St, Boston, MA 02215" -153654,Wired Headphones,1,11.99,02/17/19 14:57,"181 1st St, Los Angeles, CA 90001" -153655,USB-C Charging Cable,1,11.95,02/08/19 11:58,"788 9th St, Los Angeles, CA 90001" -153656,USB-C Charging Cable,1,11.95,02/12/19 20:54,"68 Elm St, New York City, NY 10001" -153657,ThinkPad Laptop,1,999.99,02/11/19 19:41,"451 Elm St, San Francisco, CA 94016" -153658,34in Ultrawide Monitor,1,379.99,02/03/19 18:30,"610 Highland St, New York City, NY 10001" -153659,34in Ultrawide Monitor,1,379.99,02/19/19 15:18,"284 4th St, Los Angeles, CA 90001" -153660,Bose SoundSport Headphones,1,99.99,02/21/19 22:24,"948 Hickory St, Dallas, TX 75001" -153661,20in Monitor,1,109.99,02/17/19 23:56,"34 Hickory St, Los Angeles, CA 90001" -153662,Lightning Charging Cable,1,14.95,02/05/19 22:00,"387 Church St, Boston, MA 02215" -153663,AA Batteries (4-pack),1,3.84,02/25/19 16:01,"186 Cedar St, Los Angeles, CA 90001" -153664,Flatscreen TV,1,300,02/28/19 22:07,"114 4th St, San Francisco, CA 94016" -153665,Bose SoundSport Headphones,1,99.99,02/08/19 21:31,"560 14th St, New York City, NY 10001" -153666,AAA Batteries (4-pack),1,2.99,02/16/19 21:03,"588 Church St, Portland, OR 97035" -153667,Macbook Pro Laptop,1,1700,02/11/19 20:44,"677 Spruce St, Austin, TX 73301" -153668,Lightning Charging Cable,1,14.95,02/27/19 07:59,"262 13th St, Boston, MA 02215" -153669,Wired Headphones,1,11.99,02/27/19 14:22,"731 13th St, San Francisco, CA 94016" -153670,AA Batteries (4-pack),2,3.84,02/12/19 22:25,"939 Lakeview St, San Francisco, CA 94016" -153671,AAA Batteries (4-pack),1,2.99,02/05/19 05:31,"437 Meadow St, San Francisco, CA 94016" -153672,AA Batteries (4-pack),1,3.84,02/09/19 20:15,"132 8th St, Los Angeles, CA 90001" -153673,AAA Batteries (4-pack),1,2.99,02/09/19 20:52,"874 7th St, Seattle, WA 98101" -153674,USB-C Charging Cable,1,11.95,02/08/19 12:42,"83 13th St, Atlanta, GA 30301" -153675,AA Batteries (4-pack),1,3.84,02/20/19 20:03,"706 Highland St, Portland, OR 97035" -153676,Apple Airpods Headphones,1,150,02/03/19 22:00,"882 Maple St, Los Angeles, CA 90001" -153677,34in Ultrawide Monitor,1,379.99,02/21/19 09:00,"962 Elm St, Los Angeles, CA 90001" -153678,AA Batteries (4-pack),1,3.84,02/02/19 15:09,"442 Washington St, San Francisco, CA 94016" -153679,Lightning Charging Cable,2,14.95,02/27/19 14:06,"420 Johnson St, Austin, TX 73301" -153680,Wired Headphones,1,11.99,02/13/19 20:03,"374 Cherry St, Boston, MA 02215" -153681,Lightning Charging Cable,1,14.95,02/19/19 13:04,"204 Lake St, Dallas, TX 75001" -153682,27in FHD Monitor,1,149.99,02/28/19 08:10,"471 Meadow St, Dallas, TX 75001" -153683,Apple Airpods Headphones,1,150,02/12/19 20:55,"582 11th St, Portland, OR 97035" -153684,AA Batteries (4-pack),2,3.84,02/07/19 22:52,"788 Willow St, Los Angeles, CA 90001" -153685,AA Batteries (4-pack),1,3.84,02/10/19 00:12,"148 7th St, Los Angeles, CA 90001" -153686,AA Batteries (4-pack),1,3.84,02/10/19 05:26,"78 Walnut St, Los Angeles, CA 90001" -153687,Bose SoundSport Headphones,1,99.99,02/27/19 22:50,"756 1st St, Seattle, WA 98101" -153688,Apple Airpods Headphones,1,150,02/13/19 14:29,"356 Meadow St, Portland, OR 97035" -153689,Lightning Charging Cable,1,14.95,02/05/19 21:34,"745 Maple St, San Francisco, CA 94016" -153690,Bose SoundSport Headphones,1,99.99,02/06/19 13:25,"862 Park St, San Francisco, CA 94016" -153691,USB-C Charging Cable,1,11.95,02/06/19 22:25,"211 11th St, San Francisco, CA 94016" -153692,iPhone,1,700,02/17/19 19:00,"708 Highland St, Dallas, TX 75001" -153692,Apple Airpods Headphones,1,150,02/17/19 19:00,"708 Highland St, Dallas, TX 75001" -153693,AAA Batteries (4-pack),1,2.99,02/11/19 21:45,"940 14th St, Los Angeles, CA 90001" -153694,USB-C Charging Cable,1,11.95,02/14/19 09:26,"231 10th St, Atlanta, GA 30301" -153695,Apple Airpods Headphones,1,150,02/23/19 14:09,"622 Chestnut St, Dallas, TX 75001" -153696,20in Monitor,1,109.99,02/09/19 20:42,"524 Forest St, Portland, OR 97035" -153697,AAA Batteries (4-pack),1,2.99,02/04/19 16:02,"622 Jackson St, Portland, OR 97035" -153698,Flatscreen TV,1,300,02/10/19 17:52,"69 Cedar St, Seattle, WA 98101" -153699,ThinkPad Laptop,1,999.99,02/17/19 20:34,"672 Sunset St, San Francisco, CA 94016" -153700,34in Ultrawide Monitor,1,379.99,02/04/19 10:37,"490 Hickory St, San Francisco, CA 94016" -153701,USB-C Charging Cable,1,11.95,02/13/19 20:15,"269 River St, New York City, NY 10001" -153702,ThinkPad Laptop,1,999.99,02/23/19 09:22,"133 Washington St, Atlanta, GA 30301" -153703,Lightning Charging Cable,1,14.95,02/20/19 11:58,"717 Walnut St, Portland, ME 04101" -153704,20in Monitor,1,109.99,02/24/19 17:37,"747 2nd St, San Francisco, CA 94016" -153705,AAA Batteries (4-pack),1,2.99,02/17/19 17:31,"512 Chestnut St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -153706,Bose SoundSport Headphones,1,99.99,02/10/19 18:30,"857 Johnson St, Austin, TX 73301" -153707,AA Batteries (4-pack),1,3.84,02/15/19 09:49,"568 Madison St, Los Angeles, CA 90001" -153708,iPhone,1,700,02/26/19 17:23,"440 13th St, Atlanta, GA 30301" -153709,Lightning Charging Cable,1,14.95,02/05/19 19:19,"172 Madison St, Seattle, WA 98101" -153710,AA Batteries (4-pack),2,3.84,02/13/19 15:10,"979 Johnson St, Dallas, TX 75001" -153711,USB-C Charging Cable,1,11.95,02/03/19 08:58,"910 10th St, Atlanta, GA 30301" -153712,Apple Airpods Headphones,1,150,02/28/19 17:48,"895 Cherry St, San Francisco, CA 94016" -153713,Flatscreen TV,1,300,02/24/19 23:31,"463 Cherry St, Dallas, TX 75001" -153714,USB-C Charging Cable,1,11.95,02/26/19 23:04,"550 2nd St, San Francisco, CA 94016" -153715,34in Ultrawide Monitor,1,379.99,02/24/19 12:12,"285 Maple St, New York City, NY 10001" -153716,AA Batteries (4-pack),1,3.84,02/22/19 15:54,"477 Pine St, Los Angeles, CA 90001" -153717,Lightning Charging Cable,1,14.95,02/19/19 13:36,"360 Spruce St, Austin, TX 73301" -153718,Google Phone,1,600,02/11/19 21:32,"195 12th St, Dallas, TX 75001" -153719,34in Ultrawide Monitor,1,379.99,02/07/19 01:11,"640 Pine St, San Francisco, CA 94016" -153720,Apple Airpods Headphones,1,150,02/23/19 19:16,"937 Pine St, Los Angeles, CA 90001" -153721,Bose SoundSport Headphones,1,99.99,02/10/19 20:32,"675 10th St, Portland, OR 97035" -153722,AAA Batteries (4-pack),1,2.99,02/07/19 18:55,"641 Willow St, San Francisco, CA 94016" -153723,AAA Batteries (4-pack),1,2.99,02/09/19 08:06,"242 North St, San Francisco, CA 94016" -153724,Lightning Charging Cable,1,14.95,02/26/19 10:49,"658 8th St, Dallas, TX 75001" -,,,,, -153725,27in 4K Gaming Monitor,1,389.99,02/17/19 15:21,"376 1st St, Atlanta, GA 30301" -153726,Bose SoundSport Headphones,1,99.99,02/03/19 13:45,"759 North St, Austin, TX 73301" -153727,Wired Headphones,1,11.99,02/05/19 16:42,"110 Ridge St, Austin, TX 73301" -153728,Lightning Charging Cable,1,14.95,02/20/19 19:10,"828 Forest St, Los Angeles, CA 90001" -153729,USB-C Charging Cable,2,11.95,02/16/19 11:58,"633 11th St, San Francisco, CA 94016" -153730,Wired Headphones,1,11.99,02/23/19 16:27,"642 Ridge St, Atlanta, GA 30301" -153731,Apple Airpods Headphones,1,150,02/18/19 11:20,"975 Church St, Los Angeles, CA 90001" -153732,Wired Headphones,1,11.99,02/14/19 11:21,"356 8th St, San Francisco, CA 94016" -153733,Apple Airpods Headphones,1,150,02/11/19 16:01,"378 7th St, Portland, OR 97035" -153734,Macbook Pro Laptop,1,1700,02/08/19 19:36,"755 6th St, Portland, OR 97035" -153735,USB-C Charging Cable,1,11.95,02/11/19 05:00,"349 Dogwood St, Los Angeles, CA 90001" -153736,27in 4K Gaming Monitor,1,389.99,02/07/19 17:42,"846 Church St, Los Angeles, CA 90001" -153737,Apple Airpods Headphones,1,150,02/20/19 16:28,"951 Washington St, San Francisco, CA 94016" -153738,USB-C Charging Cable,1,11.95,02/01/19 09:44,"891 Wilson St, Los Angeles, CA 90001" -153739,AA Batteries (4-pack),1,3.84,02/03/19 14:37,"276 Hickory St, Seattle, WA 98101" -153740,USB-C Charging Cable,1,11.95,02/13/19 22:57,"782 9th St, Dallas, TX 75001" -153741,USB-C Charging Cable,1,11.95,02/19/19 13:22,"616 Park St, Los Angeles, CA 90001" -153742,iPhone,1,700,02/02/19 20:10,"964 Forest St, Atlanta, GA 30301" -153743,Wired Headphones,1,11.99,02/22/19 09:37,"709 Main St, Atlanta, GA 30301" -153744,Apple Airpods Headphones,1,150,02/16/19 21:16,"495 Hill St, Austin, TX 73301" -153745,Wired Headphones,1,11.99,02/16/19 12:04,"436 Jackson St, Austin, TX 73301" -153746,AA Batteries (4-pack),2,3.84,02/12/19 13:16,"936 9th St, San Francisco, CA 94016" -153747,AAA Batteries (4-pack),1,2.99,02/06/19 05:53,"8 11th St, Atlanta, GA 30301" -153748,Bose SoundSport Headphones,1,99.99,02/15/19 06:44,"684 Pine St, Austin, TX 73301" -153748,USB-C Charging Cable,1,11.95,02/15/19 06:44,"684 Pine St, Austin, TX 73301" -153749,AA Batteries (4-pack),4,3.84,02/03/19 17:48,"222 Hill St, San Francisco, CA 94016" -153750,USB-C Charging Cable,1,11.95,02/24/19 19:21,"841 5th St, Atlanta, GA 30301" -153751,AAA Batteries (4-pack),2,2.99,02/20/19 13:29,"662 Lincoln St, Dallas, TX 75001" -153752,AA Batteries (4-pack),1,3.84,02/08/19 16:12,"20 1st St, Los Angeles, CA 90001" -153753,AAA Batteries (4-pack),2,2.99,02/20/19 18:16,"789 Church St, Portland, OR 97035" -153754,AA Batteries (4-pack),1,3.84,02/26/19 23:03,"346 Center St, Portland, ME 04101" -153755,AAA Batteries (4-pack),1,2.99,02/20/19 09:41,"51 11th St, Boston, MA 02215" -153756,27in FHD Monitor,1,149.99,02/20/19 13:11,"25 13th St, San Francisco, CA 94016" -153757,27in 4K Gaming Monitor,1,389.99,02/06/19 01:34,"433 1st St, San Francisco, CA 94016" -153758,AA Batteries (4-pack),1,3.84,02/08/19 21:45,"792 Johnson St, San Francisco, CA 94016" -153759,Flatscreen TV,1,300,02/08/19 23:43,"893 11th St, New York City, NY 10001" -153760,iPhone,1,700,02/28/19 03:03,"958 River St, Dallas, TX 75001" -153760,Wired Headphones,1,11.99,02/28/19 03:03,"958 River St, Dallas, TX 75001" -153761,34in Ultrawide Monitor,1,379.99,02/09/19 02:13,"492 West St, Atlanta, GA 30301" -153762,AA Batteries (4-pack),1,3.84,02/25/19 15:29,"556 Willow St, San Francisco, CA 94016" -153763,Wired Headphones,1,11.99,02/20/19 18:59,"403 River St, Boston, MA 02215" -153764,Lightning Charging Cable,1,14.95,02/09/19 11:03,"215 9th St, San Francisco, CA 94016" -153765,27in FHD Monitor,1,149.99,02/13/19 12:13,"78 1st St, Los Angeles, CA 90001" -153766,Google Phone,1,600,02/13/19 23:05,"681 13th St, San Francisco, CA 94016" -153767,USB-C Charging Cable,1,11.95,02/09/19 17:31,"157 9th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -153768,AA Batteries (4-pack),1,3.84,02/24/19 21:22,"682 Maple St, Atlanta, GA 30301" -153769,27in 4K Gaming Monitor,1,389.99,02/15/19 21:40,"748 8th St, New York City, NY 10001" -153770,AAA Batteries (4-pack),1,2.99,02/19/19 08:32,"438 Hill St, San Francisco, CA 94016" -153771,Apple Airpods Headphones,1,150,02/25/19 18:24,"831 Spruce St, Boston, MA 02215" -153772,Macbook Pro Laptop,1,1700,02/06/19 00:03,"104 Meadow St, San Francisco, CA 94016" -153773,27in 4K Gaming Monitor,1,389.99,02/28/19 10:09,"568 11th St, San Francisco, CA 94016" -153774,Lightning Charging Cable,1,14.95,02/09/19 11:08,"976 1st St, Los Angeles, CA 90001" -153775,AA Batteries (4-pack),1,3.84,02/13/19 03:35,"30 Adams St, San Francisco, CA 94016" -153776,Vareebadd Phone,1,400,02/08/19 22:58,"102 South St, Los Angeles, CA 90001" -153777,Lightning Charging Cable,1,14.95,02/19/19 12:21,"167 Hill St, Los Angeles, CA 90001" -153778,Apple Airpods Headphones,1,150,02/03/19 15:05,"752 Elm St, San Francisco, CA 94016" -153779,Apple Airpods Headphones,1,150,02/06/19 21:41,"4 Church St, Los Angeles, CA 90001" -153780,ThinkPad Laptop,1,999.99,02/13/19 14:50,"600 Highland St, San Francisco, CA 94016" -153781,Wired Headphones,2,11.99,02/12/19 09:41,"576 Adams St, San Francisco, CA 94016" -153782,Wired Headphones,1,11.99,02/20/19 20:51,"392 Center St, Los Angeles, CA 90001" -153783,Vareebadd Phone,1,400,02/01/19 20:53,"929 Wilson St, San Francisco, CA 94016" -153784,USB-C Charging Cable,1,11.95,02/01/19 12:13,"367 Jackson St, New York City, NY 10001" -153785,20in Monitor,1,109.99,02/13/19 18:37,"271 Lake St, Portland, ME 04101" -153786,AA Batteries (4-pack),1,3.84,02/02/19 13:47,"658 North St, San Francisco, CA 94016" -153787,USB-C Charging Cable,1,11.95,02/23/19 19:49,"160 Lakeview St, Los Angeles, CA 90001" -153788,Lightning Charging Cable,1,14.95,02/08/19 21:16,"558 2nd St, Portland, OR 97035" -153789,Lightning Charging Cable,2,14.95,02/27/19 13:38,"303 Lakeview St, Dallas, TX 75001" -153790,27in 4K Gaming Monitor,1,389.99,02/21/19 15:52,"157 Jefferson St, San Francisco, CA 94016" -153791,AAA Batteries (4-pack),1,2.99,02/12/19 20:19,"163 Ridge St, San Francisco, CA 94016" -153792,Bose SoundSport Headphones,1,99.99,02/11/19 22:22,"493 9th St, San Francisco, CA 94016" -153793,USB-C Charging Cable,1,11.95,02/06/19 07:43,"417 Lake St, New York City, NY 10001" -153794,AAA Batteries (4-pack),3,2.99,02/25/19 02:58,"677 Highland St, San Francisco, CA 94016" -153795,Lightning Charging Cable,1,14.95,02/20/19 21:52,"628 Pine St, Atlanta, GA 30301" -153796,ThinkPad Laptop,1,999.99,02/12/19 15:10,"140 Meadow St, Portland, OR 97035" -153797,AAA Batteries (4-pack),1,2.99,02/22/19 15:33,"217 Hill St, Atlanta, GA 30301" -153798,Macbook Pro Laptop,1,1700,02/28/19 08:55,"256 8th St, San Francisco, CA 94016" -153799,USB-C Charging Cable,1,11.95,02/12/19 20:46,"589 Park St, Austin, TX 73301" -153800,AA Batteries (4-pack),1,3.84,02/23/19 19:04,"947 Sunset St, Los Angeles, CA 90001" -153801,AAA Batteries (4-pack),1,2.99,02/27/19 16:16,"766 Meadow St, Boston, MA 02215" -153802,Lightning Charging Cable,1,14.95,02/08/19 18:07,"748 Lakeview St, New York City, NY 10001" -153803,34in Ultrawide Monitor,1,379.99,02/21/19 21:47,"195 12th St, Dallas, TX 75001" -153804,34in Ultrawide Monitor,1,379.99,02/25/19 23:13,"268 Hill St, San Francisco, CA 94016" -153805,34in Ultrawide Monitor,1,379.99,02/26/19 14:24,"943 Washington St, Seattle, WA 98101" -153806,AA Batteries (4-pack),1,3.84,02/20/19 11:33,"199 5th St, Atlanta, GA 30301" -153807,27in 4K Gaming Monitor,1,389.99,02/21/19 20:45,"729 14th St, San Francisco, CA 94016" -153808,Bose SoundSport Headphones,1,99.99,02/17/19 15:59,"280 12th St, Austin, TX 73301" -153809,Lightning Charging Cable,1,14.95,02/14/19 15:15,"678 13th St, Boston, MA 02215" -153810,Apple Airpods Headphones,1,150,02/06/19 20:06,"475 Walnut St, Boston, MA 02215" -153811,USB-C Charging Cable,1,11.95,02/24/19 17:39,"524 Cedar St, Atlanta, GA 30301" -153812,ThinkPad Laptop,1,999.99,02/08/19 19:11,"653 Johnson St, San Francisco, CA 94016" -153813,USB-C Charging Cable,1,11.95,02/11/19 18:43,"534 Walnut St, San Francisco, CA 94016" -153814,Apple Airpods Headphones,1,150,02/04/19 00:15,"242 Cedar St, New York City, NY 10001" -153814,AAA Batteries (4-pack),1,2.99,02/04/19 00:15,"242 Cedar St, New York City, NY 10001" -153815,Apple Airpods Headphones,1,150,02/14/19 20:05,"662 14th St, Boston, MA 02215" -153816,AA Batteries (4-pack),1,3.84,02/12/19 13:47,"961 Dogwood St, New York City, NY 10001" -153817,AA Batteries (4-pack),1,3.84,02/12/19 16:41,"872 Chestnut St, San Francisco, CA 94016" -153818,Wired Headphones,1,11.99,02/11/19 14:46,"38 South St, San Francisco, CA 94016" -153819,AAA Batteries (4-pack),1,2.99,02/15/19 13:26,"601 West St, San Francisco, CA 94016" -153820,AA Batteries (4-pack),2,3.84,02/08/19 10:34,"759 Lincoln St, Dallas, TX 75001" -153821,Lightning Charging Cable,1,14.95,02/18/19 11:53,"449 Spruce St, New York City, NY 10001" -153822,AA Batteries (4-pack),1,3.84,02/10/19 14:09,"348 Forest St, San Francisco, CA 94016" -153823,AA Batteries (4-pack),2,3.84,02/16/19 15:33,"289 4th St, New York City, NY 10001" -153824,Lightning Charging Cable,1,14.95,02/21/19 15:44,"306 Maple St, Austin, TX 73301" -153825,20in Monitor,1,109.99,02/12/19 14:41,"405 Adams St, New York City, NY 10001" -153826,Apple Airpods Headphones,1,150,02/09/19 10:52,"917 Dogwood St, Los Angeles, CA 90001" -153827,USB-C Charging Cable,1,11.95,02/02/19 12:56,"23 10th St, New York City, NY 10001" -153828,AA Batteries (4-pack),1,3.84,02/22/19 07:54,"693 Highland St, New York City, NY 10001" -153829,Bose SoundSport Headphones,1,99.99,02/26/19 11:30,"463 Adams St, Los Angeles, CA 90001" -153830,iPhone,1,700,02/08/19 20:21,"713 6th St, San Francisco, CA 94016" -153831,Lightning Charging Cable,1,14.95,02/19/19 09:39,"819 11th St, Los Angeles, CA 90001" -153832,iPhone,1,700,02/03/19 13:19,"229 Pine St, Boston, MA 02215" -153833,27in FHD Monitor,1,149.99,02/23/19 19:34,"296 Main St, Boston, MA 02215" -153834,Lightning Charging Cable,1,14.95,02/08/19 05:36,"366 Forest St, San Francisco, CA 94016" -153835,AA Batteries (4-pack),1,3.84,02/20/19 20:23,"1 West St, Portland, OR 97035" -153836,AA Batteries (4-pack),2,3.84,02/25/19 17:38,"166 Center St, San Francisco, CA 94016" -153837,AA Batteries (4-pack),1,3.84,02/15/19 13:17,"59 Dogwood St, Los Angeles, CA 90001" -153838,27in FHD Monitor,1,149.99,02/18/19 17:00,"550 Sunset St, New York City, NY 10001" -153839,USB-C Charging Cable,1,11.95,02/19/19 18:44,"882 10th St, Seattle, WA 98101" -153840,20in Monitor,1,109.99,02/21/19 07:40,"535 12th St, New York City, NY 10001" -153841,Bose SoundSport Headphones,1,99.99,02/22/19 13:09,"99 Willow St, Portland, OR 97035" -153842,AAA Batteries (4-pack),1,2.99,02/05/19 22:29,"339 Hill St, New York City, NY 10001" -153843,Lightning Charging Cable,1,14.95,02/15/19 19:41,"805 Center St, Atlanta, GA 30301" -153844,AAA Batteries (4-pack),1,2.99,02/18/19 19:03,"329 Adams St, Dallas, TX 75001" -153845,27in 4K Gaming Monitor,1,389.99,02/23/19 12:52,"933 6th St, New York City, NY 10001" -153846,Wired Headphones,1,11.99,02/02/19 21:23,"444 Johnson St, Los Angeles, CA 90001" -153846,Lightning Charging Cable,1,14.95,02/02/19 21:23,"444 Johnson St, Los Angeles, CA 90001" -153847,Lightning Charging Cable,1,14.95,02/20/19 21:26,"860 Sunset St, Dallas, TX 75001" -153848,AA Batteries (4-pack),1,3.84,02/16/19 19:20,"693 Park St, Atlanta, GA 30301" -153849,Apple Airpods Headphones,1,150,02/22/19 11:05,"823 1st St, San Francisco, CA 94016" -153850,Apple Airpods Headphones,1,150,02/10/19 13:22,"403 11th St, Los Angeles, CA 90001" -153850,Lightning Charging Cable,1,14.95,02/10/19 13:22,"403 11th St, Los Angeles, CA 90001" -153851,Lightning Charging Cable,1,14.95,02/03/19 12:30,"680 Lincoln St, San Francisco, CA 94016" -153852,27in FHD Monitor,1,149.99,02/07/19 19:01,"177 Jackson St, New York City, NY 10001" -153853,27in 4K Gaming Monitor,1,389.99,02/03/19 21:47,"840 Main St, Atlanta, GA 30301" -153854,USB-C Charging Cable,1,11.95,02/24/19 19:54,"739 Lake St, Boston, MA 02215" -153855,34in Ultrawide Monitor,1,379.99,02/12/19 17:12,"852 Dogwood St, Boston, MA 02215" -153856,27in FHD Monitor,1,149.99,02/18/19 10:58,"192 Park St, New York City, NY 10001" -153857,Bose SoundSport Headphones,1,99.99,02/21/19 12:30,"523 14th St, Los Angeles, CA 90001" -153858,Lightning Charging Cable,1,14.95,02/04/19 23:07,"417 9th St, Dallas, TX 75001" -153859,27in FHD Monitor,1,149.99,02/13/19 17:32,"785 5th St, Portland, OR 97035" -153860,Bose SoundSport Headphones,1,99.99,02/27/19 22:56,"632 South St, Austin, TX 73301" -153861,iPhone,1,700,02/13/19 22:09,"342 Elm St, Boston, MA 02215" -153862,AAA Batteries (4-pack),2,2.99,02/16/19 22:12,"416 Lakeview St, Austin, TX 73301" -153863,AA Batteries (4-pack),1,3.84,02/11/19 16:55,"685 Park St, Seattle, WA 98101" -153864,Lightning Charging Cable,1,14.95,02/06/19 22:03,"321 Willow St, Atlanta, GA 30301" -153865,AAA Batteries (4-pack),2,2.99,02/22/19 20:23,"724 Hickory St, Los Angeles, CA 90001" -153866,Bose SoundSport Headphones,1,99.99,02/28/19 21:31,"379 Johnson St, New York City, NY 10001" -153867,AAA Batteries (4-pack),1,2.99,02/25/19 12:20,"262 North St, Seattle, WA 98101" -153868,Flatscreen TV,1,300,02/07/19 21:21,"73 Highland St, Boston, MA 02215" -153869,ThinkPad Laptop,1,999.99,03/01/19 01:28,"901 Johnson St, Boston, MA 02215" -153870,iPhone,1,700,02/01/19 06:56,"713 Sunset St, San Francisco, CA 94016" -153871,AAA Batteries (4-pack),2,2.99,02/17/19 06:56,"606 Cherry St, Los Angeles, CA 90001" -153872,Wired Headphones,1,11.99,02/24/19 13:48,"60 South St, New York City, NY 10001" -153873,USB-C Charging Cable,1,11.95,02/21/19 15:53,"295 Johnson St, Seattle, WA 98101" -153874,Lightning Charging Cable,1,14.95,02/19/19 18:59,"872 Church St, San Francisco, CA 94016" -153875,USB-C Charging Cable,1,11.95,02/10/19 18:25,"922 1st St, Atlanta, GA 30301" -153876,Apple Airpods Headphones,1,150,02/11/19 12:37,"610 6th St, Los Angeles, CA 90001" -153877,Apple Airpods Headphones,1,150,02/08/19 21:37,"301 Hill St, San Francisco, CA 94016" -153878,Bose SoundSport Headphones,1,99.99,02/08/19 12:22,"581 Lakeview St, Portland, ME 04101" -153879,27in 4K Gaming Monitor,1,389.99,02/26/19 15:44,"282 Chestnut St, San Francisco, CA 94016" -153880,Lightning Charging Cable,1,14.95,02/25/19 19:21,"334 North St, San Francisco, CA 94016" -153881,AA Batteries (4-pack),1,3.84,02/16/19 23:39,"422 5th St, Boston, MA 02215" -153882,Wired Headphones,1,11.99,02/08/19 02:08,"953 Hill St, San Francisco, CA 94016" -153883,Apple Airpods Headphones,1,150,02/13/19 11:46,"571 Hill St, Atlanta, GA 30301" -153884,27in 4K Gaming Monitor,1,389.99,02/11/19 14:09,"973 1st St, Atlanta, GA 30301" -153885,AAA Batteries (4-pack),1,2.99,02/03/19 17:41,"170 Adams St, San Francisco, CA 94016" -153886,AA Batteries (4-pack),1,3.84,02/01/19 21:11,"267 Madison St, Boston, MA 02215" -153887,AAA Batteries (4-pack),1,2.99,02/23/19 21:57,"767 1st St, Dallas, TX 75001" -153888,ThinkPad Laptop,1,999.99,02/09/19 18:12,"216 Park St, San Francisco, CA 94016" -153889,20in Monitor,1,109.99,02/05/19 14:48,"152 Jackson St, New York City, NY 10001" -153890,AAA Batteries (4-pack),2,2.99,02/09/19 11:53,"863 Lakeview St, Seattle, WA 98101" -153891,iPhone,1,700,02/02/19 12:21,"934 6th St, San Francisco, CA 94016" -153892,AA Batteries (4-pack),1,3.84,02/26/19 18:48,"61 9th St, Dallas, TX 75001" -153893,Wired Headphones,1,11.99,02/16/19 22:26,"359 Willow St, Los Angeles, CA 90001" -153894,USB-C Charging Cable,1,11.95,02/07/19 14:51,"107 Center St, San Francisco, CA 94016" -153895,AAA Batteries (4-pack),1,2.99,02/15/19 11:26,"307 Cherry St, Los Angeles, CA 90001" -153896,Lightning Charging Cable,1,14.95,02/05/19 15:44,"267 Forest St, Seattle, WA 98101" -153897,Bose SoundSport Headphones,1,99.99,02/16/19 07:48,"869 Sunset St, Boston, MA 02215" -153898,Flatscreen TV,1,300,02/12/19 09:39,"609 Hickory St, San Francisco, CA 94016" -153899,AA Batteries (4-pack),1,3.84,02/01/19 10:00,"768 South St, Boston, MA 02215" -153900,iPhone,1,700,02/21/19 20:36,"388 2nd St, San Francisco, CA 94016" -153901,AA Batteries (4-pack),1,3.84,02/14/19 14:02,"179 Park St, Portland, OR 97035" -153902,USB-C Charging Cable,2,11.95,02/14/19 17:30,"288 Meadow St, San Francisco, CA 94016" -153903,Wired Headphones,1,11.99,02/28/19 01:04,"487 Lincoln St, New York City, NY 10001" -153904,AA Batteries (4-pack),2,3.84,02/10/19 17:10,"649 Highland St, New York City, NY 10001" -153905,Lightning Charging Cable,1,14.95,02/25/19 01:01,"475 Hickory St, Boston, MA 02215" -153906,AAA Batteries (4-pack),1,2.99,02/03/19 13:43,"877 Wilson St, Boston, MA 02215" -153907,Lightning Charging Cable,1,14.95,02/15/19 18:50,"529 Jefferson St, San Francisco, CA 94016" -153908,AAA Batteries (4-pack),1,2.99,02/22/19 20:07,"915 11th St, Austin, TX 73301" -153909,USB-C Charging Cable,1,11.95,02/27/19 14:28,"775 Hill St, Portland, OR 97035" -153910,Apple Airpods Headphones,1,150,02/23/19 18:35,"405 7th St, Atlanta, GA 30301" -153911,Lightning Charging Cable,1,14.95,02/28/19 10:39,"498 2nd St, Boston, MA 02215" -153912,34in Ultrawide Monitor,1,379.99,02/09/19 20:45,"531 2nd St, Dallas, TX 75001" -153913,Apple Airpods Headphones,1,150,02/20/19 08:17,"416 Adams St, Dallas, TX 75001" -153914,AA Batteries (4-pack),1,3.84,02/07/19 19:17,"359 Elm St, Portland, OR 97035" -153915,27in FHD Monitor,1,149.99,02/01/19 22:03,"124 Jefferson St, New York City, NY 10001" -153916,AA Batteries (4-pack),1,3.84,02/03/19 12:28,"191 12th St, San Francisco, CA 94016" -153917,AAA Batteries (4-pack),1,2.99,02/07/19 13:47,"259 Lakeview St, San Francisco, CA 94016" -153918,USB-C Charging Cable,1,11.95,02/21/19 06:56,"19 Spruce St, San Francisco, CA 94016" -153919,27in FHD Monitor,1,149.99,02/28/19 21:25,"126 6th St, Seattle, WA 98101" -153920,USB-C Charging Cable,1,11.95,02/08/19 11:42,"194 Adams St, Austin, TX 73301" -153921,Apple Airpods Headphones,1,150,02/08/19 23:07,"670 North St, Los Angeles, CA 90001" -153922,Lightning Charging Cable,1,14.95,02/26/19 12:41,"831 Forest St, Atlanta, GA 30301" -153923,Bose SoundSport Headphones,1,99.99,02/10/19 21:43,"862 Adams St, San Francisco, CA 94016" -153924,USB-C Charging Cable,1,11.95,02/09/19 07:01,"879 Walnut St, San Francisco, CA 94016" -153925,AAA Batteries (4-pack),1,2.99,02/09/19 10:28,"848 4th St, Atlanta, GA 30301" -153926,34in Ultrawide Monitor,1,379.99,02/06/19 18:13,"587 13th St, Dallas, TX 75001" -153927,Google Phone,1,600,02/10/19 09:02,"309 Jefferson St, Portland, ME 04101" -153928,27in 4K Gaming Monitor,1,389.99,02/22/19 18:48,"70 Washington St, New York City, NY 10001" -153929,AAA Batteries (4-pack),1,2.99,02/26/19 21:49,"951 Willow St, Los Angeles, CA 90001" -153930,Apple Airpods Headphones,1,150,02/24/19 21:25,"582 Pine St, Boston, MA 02215" -153931,USB-C Charging Cable,1,11.95,02/28/19 13:25,"334 Lakeview St, Portland, OR 97035" -153932,Vareebadd Phone,1,400,02/01/19 12:35,"839 13th St, Boston, MA 02215" -153933,27in 4K Gaming Monitor,1,389.99,02/09/19 07:27,"388 Forest St, Portland, OR 97035" -153934,Wired Headphones,1,11.99,02/11/19 16:49,"497 7th St, San Francisco, CA 94016" -153935,AAA Batteries (4-pack),4,2.99,02/09/19 06:39,"152 Lincoln St, Los Angeles, CA 90001" -153936,Google Phone,1,600,02/14/19 16:35,"765 Cherry St, San Francisco, CA 94016" -153936,USB-C Charging Cable,1,11.95,02/14/19 16:35,"765 Cherry St, San Francisco, CA 94016" -153937,Vareebadd Phone,1,400,02/11/19 08:04,"12 Sunset St, San Francisco, CA 94016" -153938,Wired Headphones,1,11.99,02/16/19 19:21,"371 Cedar St, Los Angeles, CA 90001" -153939,Wired Headphones,1,11.99,02/05/19 19:05,"881 West St, New York City, NY 10001" -153940,USB-C Charging Cable,1,11.95,02/04/19 00:24,"423 South St, New York City, NY 10001" -153941,AA Batteries (4-pack),2,3.84,02/01/19 16:56,"951 Lakeview St, Dallas, TX 75001" -153942,USB-C Charging Cable,1,11.95,02/28/19 10:07,"290 9th St, Portland, OR 97035" -153943,Macbook Pro Laptop,1,1700,02/07/19 06:50,"84 Wilson St, Los Angeles, CA 90001" -153944,Flatscreen TV,1,300,02/13/19 02:06,"621 Main St, Los Angeles, CA 90001" -153945,AA Batteries (4-pack),1,3.84,02/05/19 17:27,"691 6th St, Los Angeles, CA 90001" -153946,Apple Airpods Headphones,1,150,02/02/19 12:54,"803 Lakeview St, Los Angeles, CA 90001" -153947,27in 4K Gaming Monitor,1,389.99,02/20/19 22:46,"836 Chestnut St, Portland, OR 97035" -153948,27in FHD Monitor,1,149.99,02/28/19 10:22,"87 Highland St, Portland, OR 97035" -153949,Macbook Pro Laptop,1,1700,02/14/19 01:09,"588 8th St, New York City, NY 10001" -153950,iPhone,1,700,02/17/19 11:54,"857 11th St, Dallas, TX 75001" -153951,Bose SoundSport Headphones,2,99.99,02/02/19 19:26,"419 Wilson St, Los Angeles, CA 90001" -153952,AAA Batteries (4-pack),3,2.99,02/13/19 11:06,"534 Willow St, New York City, NY 10001" -153953,Apple Airpods Headphones,1,150,02/23/19 20:47,"230 12th St, Austin, TX 73301" -153954,27in FHD Monitor,1,149.99,02/13/19 10:18,"738 Chestnut St, Dallas, TX 75001" -153955,Lightning Charging Cable,1,14.95,02/23/19 05:01,"730 7th St, Boston, MA 02215" -153956,Google Phone,1,600,02/23/19 08:11,"916 Lakeview St, Boston, MA 02215" -153956,USB-C Charging Cable,1,11.95,02/23/19 08:11,"916 Lakeview St, Boston, MA 02215" -153956,Wired Headphones,1,11.99,02/23/19 08:11,"916 Lakeview St, Boston, MA 02215" -153957,Lightning Charging Cable,2,14.95,02/19/19 16:28,"556 Park St, San Francisco, CA 94016" -153958,Wired Headphones,1,11.99,02/16/19 09:53,"641 Willow St, Boston, MA 02215" -153959,Lightning Charging Cable,1,14.95,02/26/19 15:29,"750 Jackson St, San Francisco, CA 94016" -153960,AAA Batteries (4-pack),1,2.99,02/16/19 04:15,"609 Madison St, San Francisco, CA 94016" -153961,Lightning Charging Cable,1,14.95,02/07/19 02:53,"128 River St, Dallas, TX 75001" -153962,USB-C Charging Cable,2,11.95,02/14/19 22:25,"524 Johnson St, Atlanta, GA 30301" -153963,Bose SoundSport Headphones,1,99.99,02/15/19 23:32,"713 Adams St, Boston, MA 02215" -153964,Lightning Charging Cable,1,14.95,02/19/19 17:35,"814 14th St, San Francisco, CA 94016" -153965,Apple Airpods Headphones,1,150,02/10/19 19:33,"963 Highland St, Austin, TX 73301" -153966,iPhone,1,700,02/14/19 01:24,"826 9th St, San Francisco, CA 94016" -153966,Wired Headphones,1,11.99,02/14/19 01:24,"826 9th St, San Francisco, CA 94016" -153967,iPhone,1,700,02/05/19 21:59,"148 11th St, Boston, MA 02215" -153968,AAA Batteries (4-pack),1,2.99,02/11/19 13:41,"926 5th St, Seattle, WA 98101" -153969,Lightning Charging Cable,1,14.95,02/24/19 09:53,"646 Johnson St, Los Angeles, CA 90001" -153970,AAA Batteries (4-pack),1,2.99,02/16/19 07:40,"443 Pine St, San Francisco, CA 94016" -153971,USB-C Charging Cable,1,11.95,02/14/19 11:09,"386 Maple St, New York City, NY 10001" -153972,Vareebadd Phone,1,400,02/18/19 16:47,"866 Main St, Boston, MA 02215" -153973,Apple Airpods Headphones,1,150,02/18/19 20:14,"176 7th St, Boston, MA 02215" -153974,Wired Headphones,1,11.99,02/12/19 20:54,"21 Willow St, San Francisco, CA 94016" -153975,AAA Batteries (4-pack),1,2.99,02/20/19 12:21,"215 Meadow St, Los Angeles, CA 90001" -153976,Macbook Pro Laptop,1,1700,02/15/19 14:29,"592 Hill St, Los Angeles, CA 90001" -153977,Apple Airpods Headphones,1,150,02/17/19 08:08,"149 River St, Seattle, WA 98101" -153978,AAA Batteries (4-pack),1,2.99,02/11/19 16:56,"615 Wilson St, New York City, NY 10001" -153979,AA Batteries (4-pack),2,3.84,02/11/19 08:54,"634 Washington St, Dallas, TX 75001" -153980,27in 4K Gaming Monitor,1,389.99,02/28/19 09:13,"797 Highland St, New York City, NY 10001" -153981,Bose SoundSport Headphones,1,99.99,02/09/19 14:38,"991 Lincoln St, Austin, TX 73301" -153982,iPhone,1,700,02/23/19 14:46,"837 Church St, Boston, MA 02215" -153983,AA Batteries (4-pack),1,3.84,02/20/19 01:07,"614 9th St, Boston, MA 02215" -153984,AA Batteries (4-pack),1,3.84,02/20/19 08:04,"864 Center St, New York City, NY 10001" -153985,Google Phone,1,600,02/22/19 20:11,"840 13th St, Los Angeles, CA 90001" -153986,USB-C Charging Cable,1,11.95,02/11/19 19:27,"432 Lincoln St, Portland, ME 04101" -153987,Apple Airpods Headphones,1,150,02/04/19 16:51,"178 Adams St, Seattle, WA 98101" -153988,Lightning Charging Cable,1,14.95,02/08/19 12:57,"434 Willow St, Portland, OR 97035" -153989,AA Batteries (4-pack),3,3.84,02/23/19 23:09,"213 Maple St, Boston, MA 02215" -153990,27in 4K Gaming Monitor,1,389.99,02/20/19 22:41,"471 Hickory St, Boston, MA 02215" -153991,Macbook Pro Laptop,1,1700,02/09/19 16:36,"127 Adams St, San Francisco, CA 94016" -153992,Bose SoundSport Headphones,1,99.99,02/12/19 23:33,"854 Wilson St, Boston, MA 02215" -153993,20in Monitor,1,109.99,02/01/19 13:39,"649 2nd St, San Francisco, CA 94016" -153994,Lightning Charging Cable,1,14.95,02/03/19 16:12,"536 Meadow St, New York City, NY 10001" -153995,USB-C Charging Cable,1,11.95,02/12/19 11:18,"453 Hickory St, Boston, MA 02215" -153996,Apple Airpods Headphones,1,150,02/13/19 00:14,"737 13th St, Los Angeles, CA 90001" -153997,Apple Airpods Headphones,1,150,02/17/19 18:18,"53 North St, New York City, NY 10001" -153998,27in FHD Monitor,1,149.99,02/18/19 18:47,"840 Meadow St, San Francisco, CA 94016" -153999,AA Batteries (4-pack),1,3.84,02/24/19 18:59,"783 Adams St, San Francisco, CA 94016" -154000,34in Ultrawide Monitor,1,379.99,02/24/19 10:15,"143 13th St, Dallas, TX 75001" -154001,USB-C Charging Cable,1,11.95,02/06/19 13:19,"418 South St, San Francisco, CA 94016" -154002,USB-C Charging Cable,1,11.95,02/18/19 20:10,"202 Elm St, Seattle, WA 98101" -154003,AA Batteries (4-pack),1,3.84,02/25/19 17:02,"514 4th St, Austin, TX 73301" -154004,34in Ultrawide Monitor,1,379.99,02/05/19 04:19,"182 Adams St, Boston, MA 02215" -154005,34in Ultrawide Monitor,1,379.99,02/21/19 15:14,"13 12th St, San Francisco, CA 94016" -154006,Apple Airpods Headphones,1,150,02/12/19 12:02,"793 Jefferson St, New York City, NY 10001" -154007,Lightning Charging Cable,1,14.95,02/23/19 11:52,"116 Cherry St, Boston, MA 02215" -154007,Google Phone,1,600,02/23/19 11:52,"116 Cherry St, Boston, MA 02215" -154008,LG Dryer,1,600.0,02/04/19 14:46,"635 Madison St, San Francisco, CA 94016" -154009,Wired Headphones,1,11.99,02/15/19 07:28,"666 South St, San Francisco, CA 94016" -154010,Apple Airpods Headphones,1,150,02/14/19 17:08,"642 Sunset St, Seattle, WA 98101" -154011,Vareebadd Phone,1,400,02/18/19 16:53,"426 West St, Boston, MA 02215" -154012,27in 4K Gaming Monitor,1,389.99,02/28/19 09:36,"172 Johnson St, Dallas, TX 75001" -154012,Google Phone,1,600,02/28/19 09:36,"172 Johnson St, Dallas, TX 75001" -154013,USB-C Charging Cable,1,11.95,02/22/19 05:51,"699 13th St, San Francisco, CA 94016" -154014,AA Batteries (4-pack),2,3.84,02/07/19 18:30,"721 14th St, Los Angeles, CA 90001" -154015,AA Batteries (4-pack),1,3.84,02/27/19 11:52,"122 5th St, Atlanta, GA 30301" -154016,ThinkPad Laptop,1,999.99,02/21/19 17:24,"475 Cedar St, Atlanta, GA 30301" -154017,27in 4K Gaming Monitor,1,389.99,02/05/19 18:46,"213 7th St, San Francisco, CA 94016" -154018,Apple Airpods Headphones,1,150,02/21/19 17:54,"768 Willow St, Austin, TX 73301" -154019,Google Phone,1,600,02/02/19 18:10,"675 1st St, Austin, TX 73301" -154019,USB-C Charging Cable,1,11.95,02/02/19 18:10,"675 1st St, Austin, TX 73301" -154019,Wired Headphones,1,11.99,02/02/19 18:10,"675 1st St, Austin, TX 73301" -154020,AA Batteries (4-pack),1,3.84,02/08/19 00:36,"448 9th St, Dallas, TX 75001" -154021,27in 4K Gaming Monitor,1,389.99,02/15/19 12:31,"330 6th St, Los Angeles, CA 90001" -154022,iPhone,1,700,02/20/19 23:11,"918 11th St, Seattle, WA 98101" -154022,Lightning Charging Cable,1,14.95,02/20/19 23:11,"918 11th St, Seattle, WA 98101" -154023,Apple Airpods Headphones,1,150,02/16/19 10:55,"674 Jackson St, Portland, ME 04101" -154024,AAA Batteries (4-pack),2,2.99,02/25/19 08:49,"215 12th St, Austin, TX 73301" -154025,27in 4K Gaming Monitor,1,389.99,02/02/19 05:36,"204 4th St, San Francisco, CA 94016" -154026,USB-C Charging Cable,1,11.95,02/15/19 07:29,"788 Lincoln St, San Francisco, CA 94016" -154027,Bose SoundSport Headphones,1,99.99,02/19/19 16:15,"320 Dogwood St, Boston, MA 02215" -154028,27in 4K Gaming Monitor,1,389.99,02/11/19 18:11,"227 1st St, San Francisco, CA 94016" -154028,Macbook Pro Laptop,1,1700,02/11/19 18:11,"227 1st St, San Francisco, CA 94016" -154029,AA Batteries (4-pack),1,3.84,02/01/19 21:54,"44 Hickory St, San Francisco, CA 94016" -154030,USB-C Charging Cable,1,11.95,02/13/19 16:56,"220 Lakeview St, Boston, MA 02215" -,,,,, -154031,27in 4K Gaming Monitor,1,389.99,02/04/19 13:48,"692 Ridge St, Portland, OR 97035" -154032,20in Monitor,1,109.99,02/18/19 19:17,"532 Park St, New York City, NY 10001" -154033,27in FHD Monitor,1,149.99,02/05/19 12:58,"945 12th St, San Francisco, CA 94016" -154034,Lightning Charging Cable,1,14.95,02/20/19 21:06,"131 Pine St, New York City, NY 10001" -154035,AAA Batteries (4-pack),1,2.99,02/20/19 22:46,"112 8th St, Boston, MA 02215" -154036,Lightning Charging Cable,1,14.95,02/23/19 17:51,"359 Pine St, San Francisco, CA 94016" -154037,Macbook Pro Laptop,1,1700,02/25/19 12:39,"975 Adams St, Los Angeles, CA 90001" -154038,USB-C Charging Cable,1,11.95,02/07/19 11:18,"267 8th St, San Francisco, CA 94016" -154039,AA Batteries (4-pack),2,3.84,02/22/19 16:16,"357 Sunset St, Austin, TX 73301" -154040,AAA Batteries (4-pack),1,2.99,02/12/19 19:16,"967 Walnut St, San Francisco, CA 94016" -154041,Apple Airpods Headphones,1,150,02/22/19 01:01,"68 South St, Portland, OR 97035" -154042,AA Batteries (4-pack),1,3.84,02/13/19 08:25,"567 Washington St, San Francisco, CA 94016" -154043,Lightning Charging Cable,2,14.95,02/04/19 16:12,"29 Sunset St, Atlanta, GA 30301" -154044,Apple Airpods Headphones,1,150,02/21/19 20:06,"835 10th St, Austin, TX 73301" -154045,27in 4K Gaming Monitor,1,389.99,02/15/19 09:37,"138 Hill St, Dallas, TX 75001" -154046,USB-C Charging Cable,1,11.95,02/18/19 06:18,"965 Elm St, Austin, TX 73301" -154047,Apple Airpods Headphones,1,150,02/14/19 22:39,"756 12th St, San Francisco, CA 94016" -154048,Apple Airpods Headphones,1,150,02/19/19 15:36,"2 Church St, Boston, MA 02215" -154049,Wired Headphones,1,11.99,02/23/19 05:15,"398 Madison St, Dallas, TX 75001" -154050,Macbook Pro Laptop,1,1700,02/17/19 18:21,"616 11th St, Dallas, TX 75001" -154051,AAA Batteries (4-pack),3,2.99,02/05/19 18:49,"160 Walnut St, Austin, TX 73301" -154052,AA Batteries (4-pack),1,3.84,02/04/19 12:27,"127 Center St, Dallas, TX 75001" -154053,USB-C Charging Cable,1,11.95,02/03/19 20:19,"401 7th St, Boston, MA 02215" -154054,ThinkPad Laptop,1,999.99,02/16/19 21:04,"384 North St, Los Angeles, CA 90001" -154055,Apple Airpods Headphones,1,150,02/02/19 13:21,"823 14th St, Dallas, TX 75001" -154056,Lightning Charging Cable,1,14.95,02/28/19 19:11,"7 Hill St, Boston, MA 02215" -154057,Lightning Charging Cable,1,14.95,02/13/19 12:17,"609 5th St, Dallas, TX 75001" -154058,USB-C Charging Cable,1,11.95,02/05/19 22:18,"732 7th St, Portland, OR 97035" -154059,Lightning Charging Cable,1,14.95,02/16/19 17:07,"546 6th St, Portland, OR 97035" -154060,Lightning Charging Cable,1,14.95,02/12/19 18:32,"750 Meadow St, Boston, MA 02215" -154061,AA Batteries (4-pack),1,3.84,02/07/19 12:50,"758 Meadow St, Portland, OR 97035" -154062,Google Phone,1,600,02/06/19 17:24,"793 7th St, Dallas, TX 75001" -154062,USB-C Charging Cable,1,11.95,02/06/19 17:24,"793 7th St, Dallas, TX 75001" -154063,27in FHD Monitor,1,149.99,02/11/19 08:51,"360 1st St, Boston, MA 02215" -154063,Lightning Charging Cable,1,14.95,02/11/19 08:51,"360 1st St, Boston, MA 02215" -154064,Apple Airpods Headphones,1,150,02/10/19 22:04,"282 Jefferson St, Dallas, TX 75001" -154065,USB-C Charging Cable,1,11.95,02/15/19 15:03,"632 5th St, Los Angeles, CA 90001" -154066,Lightning Charging Cable,1,14.95,02/27/19 22:50,"779 River St, Los Angeles, CA 90001" -154067,AA Batteries (4-pack),1,3.84,02/22/19 18:12,"505 4th St, Dallas, TX 75001" -154068,AA Batteries (4-pack),1,3.84,02/08/19 13:25,"189 West St, Boston, MA 02215" -154069,Wired Headphones,1,11.99,02/20/19 11:11,"6 Lincoln St, Los Angeles, CA 90001" -154070,USB-C Charging Cable,1,11.95,02/08/19 11:19,"137 Dogwood St, San Francisco, CA 94016" -154071,27in FHD Monitor,1,149.99,02/15/19 12:01,"892 Ridge St, Portland, OR 97035" -154072,Bose SoundSport Headphones,1,99.99,02/15/19 13:46,"934 Cherry St, Portland, OR 97035" -154073,20in Monitor,1,109.99,02/09/19 09:53,"521 Chestnut St, Atlanta, GA 30301" -154074,AAA Batteries (4-pack),2,2.99,02/21/19 21:31,"818 9th St, Los Angeles, CA 90001" -154075,Flatscreen TV,1,300,02/28/19 03:54,"523 Jackson St, Austin, TX 73301" -154076,AA Batteries (4-pack),1,3.84,02/03/19 18:04,"193 North St, Dallas, TX 75001" -154077,Wired Headphones,1,11.99,02/22/19 18:18,"786 6th St, New York City, NY 10001" -154078,Wired Headphones,1,11.99,02/28/19 06:46,"559 Walnut St, Los Angeles, CA 90001" -154079,Google Phone,1,600,02/11/19 19:34,"378 Lake St, San Francisco, CA 94016" -154079,USB-C Charging Cable,1,11.95,02/11/19 19:34,"378 Lake St, San Francisco, CA 94016" -154080,AAA Batteries (4-pack),1,2.99,02/18/19 23:03,"681 7th St, Los Angeles, CA 90001" -154081,AAA Batteries (4-pack),2,2.99,02/03/19 21:21,"534 7th St, San Francisco, CA 94016" -154082,27in 4K Gaming Monitor,1,389.99,02/18/19 14:00,"344 Cherry St, Austin, TX 73301" -154083,Flatscreen TV,1,300,02/16/19 18:40,"194 Dogwood St, Seattle, WA 98101" -154084,Apple Airpods Headphones,1,150,02/01/19 08:42,"389 Adams St, Dallas, TX 75001" -154085,AAA Batteries (4-pack),1,2.99,02/05/19 11:19,"426 Pine St, San Francisco, CA 94016" -154086,LG Dryer,1,600.0,02/04/19 09:57,"855 Chestnut St, Seattle, WA 98101" -154087,Apple Airpods Headphones,1,150,02/07/19 13:33,"682 10th St, Austin, TX 73301" -154088,27in 4K Gaming Monitor,1,389.99,02/25/19 19:11,"97 Highland St, San Francisco, CA 94016" -154089,iPhone,1,700,02/02/19 22:06,"863 Jefferson St, New York City, NY 10001" -154089,Lightning Charging Cable,1,14.95,02/02/19 22:06,"863 Jefferson St, New York City, NY 10001" -154090,Vareebadd Phone,1,400,02/27/19 13:55,"926 South St, Atlanta, GA 30301" -154091,27in FHD Monitor,1,149.99,02/10/19 14:23,"145 Washington St, Atlanta, GA 30301" -154092,27in 4K Gaming Monitor,1,389.99,02/11/19 20:02,"175 Lincoln St, Seattle, WA 98101" -154093,Lightning Charging Cable,1,14.95,02/05/19 18:39,"398 Lakeview St, Seattle, WA 98101" -154094,Google Phone,1,600,02/28/19 21:59,"851 Maple St, New York City, NY 10001" -154095,Flatscreen TV,1,300,02/23/19 11:01,"81 1st St, Boston, MA 02215" -154096,AA Batteries (4-pack),1,3.84,02/27/19 06:33,"287 Meadow St, Portland, OR 97035" -154097,20in Monitor,1,109.99,02/17/19 15:29,"277 Chestnut St, Dallas, TX 75001" -154098,Lightning Charging Cable,1,14.95,02/26/19 14:54,"809 Park St, Portland, ME 04101" -154099,USB-C Charging Cable,1,11.95,02/04/19 22:55,"907 Park St, San Francisco, CA 94016" -154100,AA Batteries (4-pack),1,3.84,02/18/19 21:41,"825 Wilson St, San Francisco, CA 94016" -154101,iPhone,1,700,02/11/19 21:06,"250 Madison St, San Francisco, CA 94016" -154101,Lightning Charging Cable,1,14.95,02/11/19 21:06,"250 Madison St, San Francisco, CA 94016" -154102,AA Batteries (4-pack),2,3.84,02/10/19 17:14,"37 Lincoln St, Atlanta, GA 30301" -154103,Wired Headphones,2,11.99,02/09/19 17:42,"551 Jefferson St, San Francisco, CA 94016" -154104,AA Batteries (4-pack),1,3.84,02/18/19 20:49,"935 Ridge St, Austin, TX 73301" -154105,USB-C Charging Cable,1,11.95,02/11/19 12:22,"793 Willow St, San Francisco, CA 94016" -154106,Lightning Charging Cable,1,14.95,02/16/19 15:43,"496 Walnut St, San Francisco, CA 94016" -154107,Flatscreen TV,1,300,02/01/19 08:44,"4 Madison St, Dallas, TX 75001" -154108,AAA Batteries (4-pack),1,2.99,02/24/19 23:05,"626 9th St, Seattle, WA 98101" -154109,Wired Headphones,2,11.99,02/15/19 13:51,"937 Meadow St, New York City, NY 10001" -154110,USB-C Charging Cable,1,11.95,02/08/19 15:13,"348 South St, Austin, TX 73301" -154111,iPhone,1,700,02/06/19 16:29,"551 West St, San Francisco, CA 94016" -154112,USB-C Charging Cable,1,11.95,02/18/19 03:34,"968 Cherry St, Boston, MA 02215" -154113,Google Phone,1,600,02/03/19 10:31,"64 Wilson St, Dallas, TX 75001" -154114,USB-C Charging Cable,1,11.95,02/10/19 12:44,"142 Sunset St, San Francisco, CA 94016" -154115,Bose SoundSport Headphones,1,99.99,02/26/19 11:46,"490 12th St, Los Angeles, CA 90001" -154116,USB-C Charging Cable,1,11.95,02/16/19 16:46,"710 Park St, San Francisco, CA 94016" -154117,Wired Headphones,1,11.99,02/28/19 16:47,"456 14th St, San Francisco, CA 94016" -154118,AAA Batteries (4-pack),2,2.99,02/02/19 08:57,"288 Meadow St, Portland, OR 97035" -154119,Lightning Charging Cable,1,14.95,02/17/19 12:46,"674 Highland St, San Francisco, CA 94016" -154120,AAA Batteries (4-pack),2,2.99,02/05/19 07:36,"283 Wilson St, Dallas, TX 75001" -154121,Bose SoundSport Headphones,1,99.99,02/26/19 21:51,"927 Park St, Seattle, WA 98101" -154122,Lightning Charging Cable,1,14.95,02/10/19 18:44,"381 Highland St, San Francisco, CA 94016" -154123,Bose SoundSport Headphones,1,99.99,02/24/19 22:38,"700 5th St, Dallas, TX 75001" -154124,Lightning Charging Cable,1,14.95,02/20/19 15:55,"608 Park St, Portland, OR 97035" -154125,ThinkPad Laptop,1,999.99,02/15/19 23:19,"228 Sunset St, Seattle, WA 98101" -154126,iPhone,1,700,02/17/19 15:05,"84 Ridge St, Boston, MA 02215" -154126,Lightning Charging Cable,1,14.95,02/17/19 15:05,"84 Ridge St, Boston, MA 02215" -154127,AAA Batteries (4-pack),3,2.99,02/23/19 15:08,"981 Maple St, San Francisco, CA 94016" -154128,Wired Headphones,1,11.99,02/01/19 12:55,"233 4th St, New York City, NY 10001" -154129,34in Ultrawide Monitor,1,379.99,02/18/19 16:51,"969 Highland St, Atlanta, GA 30301" -154130,Flatscreen TV,1,300,02/23/19 13:14,"16 Adams St, Boston, MA 02215" -154131,AAA Batteries (4-pack),3,2.99,02/11/19 22:02,"632 12th St, San Francisco, CA 94016" -154132,AAA Batteries (4-pack),1,2.99,02/07/19 22:14,"340 Sunset St, Los Angeles, CA 90001" -154133,AAA Batteries (4-pack),1,2.99,02/17/19 18:16,"253 Sunset St, Austin, TX 73301" -154134,Google Phone,1,600,02/14/19 16:15,"244 8th St, New York City, NY 10001" -154134,Wired Headphones,1,11.99,02/14/19 16:15,"244 8th St, New York City, NY 10001" -154135,Bose SoundSport Headphones,1,99.99,02/17/19 22:52,"162 Cedar St, San Francisco, CA 94016" -154136,AA Batteries (4-pack),2,3.84,02/17/19 18:20,"693 Washington St, Atlanta, GA 30301" -154137,Lightning Charging Cable,1,14.95,02/18/19 09:12,"436 South St, Portland, OR 97035" -154138,AAA Batteries (4-pack),1,2.99,02/16/19 08:55,"571 Johnson St, Portland, OR 97035" -154139,iPhone,1,700,02/06/19 18:26,"52 North St, Seattle, WA 98101" -154140,AAA Batteries (4-pack),1,2.99,02/24/19 09:37,"403 Hickory St, San Francisco, CA 94016" -154141,Lightning Charging Cable,1,14.95,02/09/19 22:59,"185 Pine St, New York City, NY 10001" -154142,USB-C Charging Cable,1,11.95,02/22/19 20:21,"254 Lake St, Dallas, TX 75001" -154143,iPhone,1,700,02/07/19 05:35,"21 River St, Seattle, WA 98101" -154144,AA Batteries (4-pack),1,3.84,02/12/19 22:21,"942 9th St, San Francisco, CA 94016" -154145,Wired Headphones,1,11.99,02/21/19 21:51,"934 8th St, San Francisco, CA 94016" -154146,AAA Batteries (4-pack),1,2.99,02/27/19 19:24,"469 Johnson St, Portland, ME 04101" -154147,Apple Airpods Headphones,1,150,02/11/19 08:50,"985 Lake St, Seattle, WA 98101" -154148,27in FHD Monitor,1,149.99,02/28/19 18:21,"229 4th St, San Francisco, CA 94016" -154149,Lightning Charging Cable,1,14.95,02/08/19 15:15,"39 Dogwood St, San Francisco, CA 94016" -154150,Bose SoundSport Headphones,1,99.99,02/07/19 16:52,"110 2nd St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -154151,Bose SoundSport Headphones,1,99.99,02/22/19 06:05,"343 1st St, New York City, NY 10001" -154152,USB-C Charging Cable,1,11.95,02/07/19 12:05,"782 5th St, San Francisco, CA 94016" -154153,Lightning Charging Cable,1,14.95,02/26/19 19:53,"226 Lincoln St, San Francisco, CA 94016" -154154,AAA Batteries (4-pack),2,2.99,02/23/19 19:23,"297 9th St, Boston, MA 02215" -154155,USB-C Charging Cable,1,11.95,02/27/19 12:14,"456 Lakeview St, Los Angeles, CA 90001" -154156,27in FHD Monitor,1,149.99,02/16/19 12:13,"595 Lincoln St, San Francisco, CA 94016" -154157,Lightning Charging Cable,1,14.95,02/09/19 15:06,"185 14th St, Los Angeles, CA 90001" -154158,Bose SoundSport Headphones,1,99.99,02/16/19 11:53,"105 Cherry St, Los Angeles, CA 90001" -154159,Lightning Charging Cable,1,14.95,02/01/19 22:07,"274 Cedar St, Dallas, TX 75001" -154160,Lightning Charging Cable,1,14.95,02/18/19 11:19,"507 South St, New York City, NY 10001" -154161,AAA Batteries (4-pack),1,2.99,02/06/19 17:28,"410 13th St, Dallas, TX 75001" -154162,USB-C Charging Cable,1,11.95,02/23/19 18:37,"903 Chestnut St, Dallas, TX 75001" -154163,27in FHD Monitor,1,149.99,02/14/19 09:38,"937 Ridge St, Los Angeles, CA 90001" -154164,27in FHD Monitor,1,149.99,02/24/19 17:23,"958 Adams St, San Francisco, CA 94016" -154165,20in Monitor,1,109.99,02/19/19 03:31,"960 Maple St, New York City, NY 10001" -154166,USB-C Charging Cable,1,11.95,02/04/19 12:43,"373 Johnson St, Dallas, TX 75001" -154167,Lightning Charging Cable,1,14.95,02/11/19 13:26,"714 Maple St, Atlanta, GA 30301" -154168,Lightning Charging Cable,2,14.95,02/24/19 15:00,"265 Jefferson St, New York City, NY 10001" -154169,AAA Batteries (4-pack),2,2.99,02/21/19 09:23,"472 West St, Portland, ME 04101" -154170,ThinkPad Laptop,1,999.99,02/03/19 18:30,"294 1st St, New York City, NY 10001" -154171,Lightning Charging Cable,1,14.95,02/18/19 10:17,"562 Adams St, Austin, TX 73301" -154172,AA Batteries (4-pack),1,3.84,02/21/19 19:28,"734 Sunset St, Austin, TX 73301" -154173,20in Monitor,1,109.99,02/12/19 21:43,"427 Meadow St, San Francisco, CA 94016" -154174,USB-C Charging Cable,1,11.95,02/01/19 16:05,"992 Church St, Los Angeles, CA 90001" -154175,Lightning Charging Cable,1,14.95,02/17/19 06:08,"376 Jefferson St, New York City, NY 10001" -154176,Wired Headphones,2,11.99,02/27/19 08:51,"825 Ridge St, San Francisco, CA 94016" -154177,Wired Headphones,1,11.99,02/07/19 20:43,"972 River St, Los Angeles, CA 90001" -154178,Lightning Charging Cable,1,14.95,02/10/19 00:28,"430 Willow St, Los Angeles, CA 90001" -154179,27in FHD Monitor,1,149.99,02/18/19 08:02,"147 10th St, New York City, NY 10001" -154180,Wired Headphones,1,11.99,02/06/19 10:34,"647 Madison St, Boston, MA 02215" -154181,Wired Headphones,2,11.99,02/22/19 07:39,"484 7th St, Seattle, WA 98101" -154181,Bose SoundSport Headphones,1,99.99,02/22/19 07:39,"484 7th St, Seattle, WA 98101" -154182,AA Batteries (4-pack),1,3.84,02/28/19 13:52,"708 Highland St, Atlanta, GA 30301" -154183,AA Batteries (4-pack),1,3.84,02/09/19 21:45,"26 Center St, Seattle, WA 98101" -154184,Lightning Charging Cable,1,14.95,02/10/19 13:12,"390 Church St, Los Angeles, CA 90001" -154185,Flatscreen TV,1,300,02/13/19 05:10,"953 Meadow St, San Francisco, CA 94016" -154186,iPhone,1,700,02/09/19 17:33,"647 South St, New York City, NY 10001" -154187,34in Ultrawide Monitor,1,379.99,02/21/19 08:22,"428 2nd St, Seattle, WA 98101" -154188,20in Monitor,1,109.99,02/21/19 20:08,"111 Spruce St, Los Angeles, CA 90001" -154189,Google Phone,1,600,02/01/19 12:31,"679 Sunset St, San Francisco, CA 94016" -154190,Vareebadd Phone,1,400,02/12/19 10:02,"232 Jackson St, Seattle, WA 98101" -154191,20in Monitor,1,109.99,02/21/19 11:04,"12 Lakeview St, Dallas, TX 75001" -154192,iPhone,1,700,02/21/19 17:02,"387 River St, San Francisco, CA 94016" -154193,Wired Headphones,1,11.99,02/06/19 12:08,"747 North St, Los Angeles, CA 90001" -154194,Apple Airpods Headphones,1,150,02/03/19 20:10,"410 5th St, Portland, OR 97035" -154195,Bose SoundSport Headphones,1,99.99,02/13/19 14:13,"331 Walnut St, San Francisco, CA 94016" -154196,AAA Batteries (4-pack),1,2.99,02/10/19 09:54,"905 South St, New York City, NY 10001" -154197,34in Ultrawide Monitor,1,379.99,02/07/19 09:10,"375 Willow St, San Francisco, CA 94016" -154198,AAA Batteries (4-pack),1,2.99,02/27/19 13:40,"727 Madison St, Los Angeles, CA 90001" -154199,AA Batteries (4-pack),1,3.84,02/28/19 02:09,"306 Forest St, San Francisco, CA 94016" -154200,Apple Airpods Headphones,1,150,02/22/19 18:06,"119 10th St, Atlanta, GA 30301" -154201,AA Batteries (4-pack),2,3.84,02/02/19 09:30,"826 Willow St, San Francisco, CA 94016" -154202,AA Batteries (4-pack),1,3.84,02/20/19 22:12,"952 11th St, Boston, MA 02215" -154203,AA Batteries (4-pack),3,3.84,02/01/19 20:10,"319 8th St, Dallas, TX 75001" -154204,Apple Airpods Headphones,1,150,02/01/19 15:07,"736 Meadow St, Boston, MA 02215" -154205,Apple Airpods Headphones,1,150,02/18/19 13:51,"59 Johnson St, Los Angeles, CA 90001" -154206,Wired Headphones,1,11.99,02/23/19 08:19,"554 Hill St, San Francisco, CA 94016" -154207,USB-C Charging Cable,1,11.95,02/28/19 12:13,"188 Forest St, San Francisco, CA 94016" -154208,Apple Airpods Headphones,1,150,02/07/19 21:33,"996 South St, New York City, NY 10001" -154209,Flatscreen TV,1,300,02/18/19 20:49,"76 North St, Atlanta, GA 30301" -154210,Flatscreen TV,1,300,02/25/19 22:08,"252 Madison St, Atlanta, GA 30301" -154211,Bose SoundSport Headphones,1,99.99,02/04/19 19:23,"704 South St, San Francisco, CA 94016" -154212,LG Dryer,1,600.0,02/11/19 20:16,"642 Lake St, San Francisco, CA 94016" -154213,27in 4K Gaming Monitor,1,389.99,02/22/19 17:44,"839 1st St, Boston, MA 02215" -154214,AAA Batteries (4-pack),1,2.99,02/06/19 18:59,"78 Elm St, New York City, NY 10001" -154215,AAA Batteries (4-pack),3,2.99,02/15/19 14:55,"600 South St, San Francisco, CA 94016" -154215,AAA Batteries (4-pack),1,2.99,02/15/19 14:55,"600 South St, San Francisco, CA 94016" -154216,AA Batteries (4-pack),3,3.84,02/11/19 12:37,"902 North St, Boston, MA 02215" -154217,ThinkPad Laptop,1,999.99,02/26/19 19:24,"203 Madison St, Boston, MA 02215" -154218,Wired Headphones,1,11.99,02/06/19 10:34,"997 Cedar St, Atlanta, GA 30301" -154219,Wired Headphones,1,11.99,02/16/19 00:22,"338 14th St, Boston, MA 02215" -154220,ThinkPad Laptop,1,999.99,02/05/19 13:16,"574 Washington St, San Francisco, CA 94016" -154221,34in Ultrawide Monitor,1,379.99,02/08/19 12:12,"910 Highland St, Atlanta, GA 30301" -154222,Wired Headphones,1,11.99,02/24/19 17:07,"376 5th St, Seattle, WA 98101" -154223,AA Batteries (4-pack),1,3.84,02/07/19 19:50,"761 12th St, Los Angeles, CA 90001" -154224,Google Phone,1,600,02/13/19 20:59,"726 11th St, San Francisco, CA 94016" -154225,27in FHD Monitor,1,149.99,02/13/19 17:12,"753 Madison St, Dallas, TX 75001" -154226,Wired Headphones,1,11.99,02/17/19 03:50,"499 Cedar St, Los Angeles, CA 90001" -154227,AA Batteries (4-pack),1,3.84,02/03/19 10:43,"893 Jefferson St, Los Angeles, CA 90001" -154228,Apple Airpods Headphones,1,150,02/03/19 11:13,"567 Park St, Atlanta, GA 30301" -154229,AAA Batteries (4-pack),2,2.99,02/22/19 00:35,"744 Cherry St, Atlanta, GA 30301" -154230,34in Ultrawide Monitor,1,379.99,02/21/19 22:41,"939 Church St, Boston, MA 02215" -154231,Wired Headphones,1,11.99,02/04/19 17:13,"672 South St, San Francisco, CA 94016" -154232,Macbook Pro Laptop,1,1700,02/25/19 22:39,"994 5th St, Boston, MA 02215" -154233,Wired Headphones,1,11.99,02/27/19 16:38,"349 Center St, Boston, MA 02215" -154234,USB-C Charging Cable,1,11.95,02/15/19 13:39,"541 6th St, San Francisco, CA 94016" -154235,AA Batteries (4-pack),1,3.84,02/07/19 18:16,"761 Elm St, Boston, MA 02215" -154236,20in Monitor,1,109.99,02/15/19 09:58,"772 South St, San Francisco, CA 94016" -154237,AA Batteries (4-pack),1,3.84,02/26/19 00:41,"415 Pine St, Austin, TX 73301" -154238,AAA Batteries (4-pack),1,2.99,02/15/19 12:33,"516 14th St, San Francisco, CA 94016" -154239,iPhone,1,700,02/20/19 08:30,"314 Elm St, San Francisco, CA 94016" -154240,34in Ultrawide Monitor,1,379.99,02/13/19 09:02,"441 Hickory St, Los Angeles, CA 90001" -154241,Wired Headphones,1,11.99,02/13/19 14:02,"596 14th St, Seattle, WA 98101" -154242,USB-C Charging Cable,2,11.95,02/13/19 00:19,"330 Highland St, Los Angeles, CA 90001" -154243,Flatscreen TV,1,300,02/20/19 12:24,"75 2nd St, Boston, MA 02215" -154244,USB-C Charging Cable,1,11.95,02/04/19 22:21,"635 Lincoln St, New York City, NY 10001" -154245,USB-C Charging Cable,1,11.95,02/21/19 11:16,"954 6th St, Portland, ME 04101" -154246,Bose SoundSport Headphones,1,99.99,02/10/19 13:37,"471 Highland St, Los Angeles, CA 90001" -154247,Wired Headphones,1,11.99,02/24/19 10:17,"676 Elm St, Los Angeles, CA 90001" -154248,ThinkPad Laptop,1,999.99,02/05/19 20:57,"788 Church St, Atlanta, GA 30301" -154249,AAA Batteries (4-pack),3,2.99,02/17/19 16:24,"815 South St, Boston, MA 02215" -154250,Lightning Charging Cable,1,14.95,02/02/19 16:14,"671 11th St, Portland, ME 04101" -154251,AAA Batteries (4-pack),2,2.99,02/26/19 15:36,"704 Jefferson St, Dallas, TX 75001" -154252,USB-C Charging Cable,1,11.95,02/08/19 16:20,"335 Elm St, Los Angeles, CA 90001" -154253,AA Batteries (4-pack),2,3.84,02/04/19 23:11,"572 Johnson St, Los Angeles, CA 90001" -154254,Apple Airpods Headphones,1,150,02/17/19 19:47,"2 Wilson St, Boston, MA 02215" -154255,USB-C Charging Cable,1,11.95,02/17/19 19:07,"495 Main St, Dallas, TX 75001" -154256,Wired Headphones,1,11.99,02/28/19 12:17,"951 Walnut St, Los Angeles, CA 90001" -154257,USB-C Charging Cable,1,11.95,02/03/19 10:49,"755 5th St, Los Angeles, CA 90001" -154258,Lightning Charging Cable,1,14.95,02/01/19 13:29,"777 Hill St, San Francisco, CA 94016" -154259,Wired Headphones,1,11.99,02/18/19 12:53,"557 Lake St, Dallas, TX 75001" -154260,USB-C Charging Cable,1,11.95,02/04/19 17:38,"433 13th St, Seattle, WA 98101" -154261,Wired Headphones,1,11.99,02/07/19 13:07,"49 Highland St, Seattle, WA 98101" -154262,AAA Batteries (4-pack),2,2.99,02/18/19 15:09,"674 West St, Atlanta, GA 30301" -154263,Apple Airpods Headphones,1,150,02/03/19 19:20,"153 Park St, Los Angeles, CA 90001" -154264,AAA Batteries (4-pack),2,2.99,02/24/19 16:47,"978 North St, San Francisco, CA 94016" -154265,AA Batteries (4-pack),1,3.84,02/15/19 18:27,"790 Madison St, Portland, OR 97035" -154266,ThinkPad Laptop,1,999.99,02/11/19 10:23,"279 8th St, Atlanta, GA 30301" -154267,Bose SoundSport Headphones,1,99.99,02/05/19 12:21,"244 Main St, New York City, NY 10001" -154268,Lightning Charging Cable,1,14.95,02/25/19 15:54,"242 Madison St, Seattle, WA 98101" -154269,ThinkPad Laptop,1,999.99,02/19/19 19:30,"883 Ridge St, San Francisco, CA 94016" -154270,27in FHD Monitor,1,149.99,02/06/19 12:20,"867 6th St, New York City, NY 10001" -154271,20in Monitor,1,109.99,02/26/19 12:26,"557 Church St, New York City, NY 10001" -154272,Apple Airpods Headphones,1,150,02/15/19 16:42,"915 Lakeview St, Portland, OR 97035" -154273,USB-C Charging Cable,1,11.95,02/22/19 21:59,"664 Highland St, San Francisco, CA 94016" -154274,Wired Headphones,1,11.99,02/24/19 18:35,"136 Hickory St, Boston, MA 02215" -154275,USB-C Charging Cable,1,11.95,02/12/19 20:50,"632 River St, San Francisco, CA 94016" -154276,USB-C Charging Cable,1,11.95,02/02/19 21:41,"278 Walnut St, Los Angeles, CA 90001" -154277,USB-C Charging Cable,1,11.95,02/07/19 10:07,"406 9th St, Boston, MA 02215" -154278,USB-C Charging Cable,1,11.95,02/28/19 21:55,"834 Forest St, Boston, MA 02215" -154279,34in Ultrawide Monitor,1,379.99,02/19/19 01:44,"514 10th St, Los Angeles, CA 90001" -154280,27in 4K Gaming Monitor,1,389.99,02/08/19 19:30,"411 Lincoln St, Los Angeles, CA 90001" -154281,27in FHD Monitor,1,149.99,02/09/19 16:05,"314 Center St, San Francisco, CA 94016" -154282,Wired Headphones,1,11.99,02/02/19 00:19,"668 13th St, Los Angeles, CA 90001" -154283,Macbook Pro Laptop,1,1700,02/21/19 18:55,"753 8th St, San Francisco, CA 94016" -154284,Bose SoundSport Headphones,1,99.99,02/02/19 20:04,"142 Washington St, San Francisco, CA 94016" -154284,Apple Airpods Headphones,1,150,02/02/19 20:04,"142 Washington St, San Francisco, CA 94016" -154285,Flatscreen TV,1,300,02/16/19 17:50,"773 Washington St, San Francisco, CA 94016" -154286,AAA Batteries (4-pack),1,2.99,02/22/19 12:39,"916 9th St, Austin, TX 73301" -154287,Vareebadd Phone,1,400,02/04/19 11:00,"671 Park St, New York City, NY 10001" -154288,Bose SoundSport Headphones,1,99.99,02/14/19 08:29,"804 Adams St, Los Angeles, CA 90001" -154289,USB-C Charging Cable,1,11.95,02/13/19 20:33,"524 5th St, New York City, NY 10001" -154290,AAA Batteries (4-pack),1,2.99,02/12/19 20:04,"869 Lake St, Los Angeles, CA 90001" -154291,27in FHD Monitor,1,149.99,02/14/19 21:50,"521 Spruce St, Boston, MA 02215" -154292,Lightning Charging Cable,1,14.95,02/12/19 09:43,"674 10th St, San Francisco, CA 94016" -154293,Bose SoundSport Headphones,1,99.99,02/22/19 10:25,"49 Elm St, Los Angeles, CA 90001" -154293,ThinkPad Laptop,1,999.99,02/22/19 10:25,"49 Elm St, Los Angeles, CA 90001" -154294,AAA Batteries (4-pack),3,2.99,02/04/19 13:02,"691 Madison St, San Francisco, CA 94016" -154295,34in Ultrawide Monitor,1,379.99,02/28/19 05:18,"244 Madison St, Los Angeles, CA 90001" -154296,Flatscreen TV,1,300,02/26/19 16:01,"481 Jefferson St, San Francisco, CA 94016" -154297,34in Ultrawide Monitor,1,379.99,02/28/19 13:57,"670 Cherry St, Portland, OR 97035" -154298,27in 4K Gaming Monitor,1,389.99,02/05/19 07:54,"495 Hickory St, Austin, TX 73301" -154299,Bose SoundSport Headphones,1,99.99,02/13/19 11:05,"776 Hickory St, Atlanta, GA 30301" -154300,AA Batteries (4-pack),1,3.84,02/13/19 13:12,"751 Highland St, Portland, OR 97035" -154301,34in Ultrawide Monitor,1,379.99,02/20/19 13:26,"799 North St, Los Angeles, CA 90001" -154302,34in Ultrawide Monitor,1,379.99,02/10/19 15:59,"421 Dogwood St, Los Angeles, CA 90001" -154303,Google Phone,1,600,02/19/19 13:05,"38 Forest St, Dallas, TX 75001" -154303,Wired Headphones,1,11.99,02/19/19 13:05,"38 Forest St, Dallas, TX 75001" -154304,Google Phone,1,600,02/02/19 11:28,"141 5th St, Boston, MA 02215" -154305,USB-C Charging Cable,1,11.95,02/21/19 12:00,"477 Main St, Los Angeles, CA 90001" -154306,USB-C Charging Cable,1,11.95,02/18/19 08:38,"904 Pine St, San Francisco, CA 94016" -154307,Bose SoundSport Headphones,1,99.99,02/25/19 19:46,"583 8th St, Austin, TX 73301" -154308,ThinkPad Laptop,1,999.99,02/11/19 12:56,"255 1st St, Atlanta, GA 30301" -154309,Apple Airpods Headphones,1,150,02/25/19 19:20,"71 River St, Boston, MA 02215" -154310,Lightning Charging Cable,1,14.95,02/12/19 20:14,"610 Pine St, Los Angeles, CA 90001" -154311,AAA Batteries (4-pack),1,2.99,02/13/19 00:22,"370 11th St, Seattle, WA 98101" -154312,Lightning Charging Cable,1,14.95,02/02/19 17:44,"375 2nd St, San Francisco, CA 94016" -154313,Google Phone,1,600,02/08/19 00:08,"536 Hickory St, San Francisco, CA 94016" -154314,Apple Airpods Headphones,1,150,02/16/19 10:01,"581 Cherry St, New York City, NY 10001" -154315,Bose SoundSport Headphones,1,99.99,02/18/19 19:26,"173 Willow St, San Francisco, CA 94016" -154316,27in 4K Gaming Monitor,1,389.99,02/05/19 13:11,"939 Hill St, Atlanta, GA 30301" -154317,AA Batteries (4-pack),3,3.84,02/14/19 12:02,"974 Johnson St, San Francisco, CA 94016" -154318,USB-C Charging Cable,1,11.95,02/09/19 08:59,"350 11th St, San Francisco, CA 94016" -154319,Lightning Charging Cable,1,14.95,02/28/19 15:15,"855 Johnson St, New York City, NY 10001" -154320,USB-C Charging Cable,1,11.95,02/16/19 09:52,"93 Johnson St, Los Angeles, CA 90001" -154321,USB-C Charging Cable,2,11.95,02/22/19 12:45,"426 4th St, New York City, NY 10001" -154322,Apple Airpods Headphones,1,150,02/16/19 14:05,"401 9th St, Atlanta, GA 30301" -154323,Lightning Charging Cable,1,14.95,02/07/19 21:56,"502 11th St, Boston, MA 02215" -154324,Wired Headphones,2,11.99,02/13/19 13:20,"573 4th St, San Francisco, CA 94016" -154325,Wired Headphones,1,11.99,02/18/19 16:48,"712 Dogwood St, Austin, TX 73301" -154326,Wired Headphones,1,11.99,02/28/19 14:50,"108 10th St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -154327,Macbook Pro Laptop,1,1700,02/08/19 13:39,"555 Wilson St, New York City, NY 10001" -154328,Wired Headphones,1,11.99,02/20/19 22:33,"812 2nd St, Los Angeles, CA 90001" -154329,Lightning Charging Cable,1,14.95,02/27/19 09:19,"943 Dogwood St, San Francisco, CA 94016" -154330,Lightning Charging Cable,1,14.95,02/24/19 00:11,"601 Willow St, New York City, NY 10001" -154331,USB-C Charging Cable,1,11.95,02/28/19 15:50,"722 9th St, Boston, MA 02215" -154332,34in Ultrawide Monitor,1,379.99,02/27/19 11:15,"642 10th St, Los Angeles, CA 90001" -154333,USB-C Charging Cable,1,11.95,02/08/19 14:29,"338 West St, Atlanta, GA 30301" -154334,AAA Batteries (4-pack),2,2.99,02/12/19 21:19,"369 West St, Atlanta, GA 30301" -154335,Flatscreen TV,1,300,02/22/19 18:54,"78 Lakeview St, San Francisco, CA 94016" -154336,iPhone,1,700,02/03/19 22:57,"238 West St, Atlanta, GA 30301" -154336,Lightning Charging Cable,1,14.95,02/03/19 22:57,"238 West St, Atlanta, GA 30301" -154337,AA Batteries (4-pack),1,3.84,02/21/19 00:06,"135 Jefferson St, Boston, MA 02215" -154338,USB-C Charging Cable,1,11.95,02/03/19 07:38,"5 Cedar St, Portland, ME 04101" -154339,iPhone,1,700,02/12/19 15:04,"604 Johnson St, Portland, OR 97035" -154340,27in 4K Gaming Monitor,1,389.99,02/25/19 21:17,"243 Lincoln St, San Francisco, CA 94016" -154341,AA Batteries (4-pack),1,3.84,02/05/19 20:59,"162 Sunset St, New York City, NY 10001" -154342,USB-C Charging Cable,1,11.95,02/03/19 12:20,"282 8th St, San Francisco, CA 94016" -154343,USB-C Charging Cable,1,11.95,02/10/19 07:47,"946 Sunset St, Dallas, TX 75001" -154344,34in Ultrawide Monitor,1,379.99,02/13/19 11:38,"968 Lakeview St, San Francisco, CA 94016" -154345,ThinkPad Laptop,1,999.99,02/21/19 23:28,"731 12th St, Los Angeles, CA 90001" -154346,Apple Airpods Headphones,1,150,02/01/19 22:10,"573 Hill St, Austin, TX 73301" -154347,Bose SoundSport Headphones,1,99.99,02/15/19 13:17,"961 Spruce St, Dallas, TX 75001" -154348,Wired Headphones,1,11.99,02/24/19 23:43,"578 Cedar St, Dallas, TX 75001" -154349,34in Ultrawide Monitor,1,379.99,02/04/19 21:14,"627 13th St, Los Angeles, CA 90001" -154350,Lightning Charging Cable,1,14.95,02/03/19 13:30,"255 North St, New York City, NY 10001" -154351,Wired Headphones,1,11.99,02/10/19 12:47,"326 Wilson St, Austin, TX 73301" -154352,27in 4K Gaming Monitor,1,389.99,02/24/19 10:10,"550 Meadow St, Seattle, WA 98101" -154353,Lightning Charging Cable,1,14.95,02/19/19 08:37,"58 Madison St, Los Angeles, CA 90001" -154354,AAA Batteries (4-pack),1,2.99,02/17/19 14:09,"361 Meadow St, San Francisco, CA 94016" -154355,Wired Headphones,1,11.99,02/20/19 09:01,"187 10th St, Seattle, WA 98101" -154356,Bose SoundSport Headphones,1,99.99,02/02/19 14:32,"541 Madison St, San Francisco, CA 94016" -154357,AAA Batteries (4-pack),1,2.99,02/25/19 22:29,"538 7th St, Los Angeles, CA 90001" -154358,Bose SoundSport Headphones,1,99.99,02/28/19 19:42,"219 Maple St, San Francisco, CA 94016" -154359,Lightning Charging Cable,1,14.95,02/20/19 15:05,"280 Walnut St, Austin, TX 73301" -154360,USB-C Charging Cable,1,11.95,02/06/19 19:41,"243 Church St, San Francisco, CA 94016" -154361,27in FHD Monitor,1,149.99,02/07/19 17:40,"322 Pine St, San Francisco, CA 94016" -154362,iPhone,1,700,02/06/19 20:22,"617 Center St, Los Angeles, CA 90001" -154363,Apple Airpods Headphones,1,150,02/26/19 22:44,"308 Lincoln St, San Francisco, CA 94016" -154364,27in 4K Gaming Monitor,1,389.99,02/09/19 00:33,"354 Hickory St, New York City, NY 10001" -154365,AAA Batteries (4-pack),1,2.99,02/07/19 09:53,"914 Johnson St, Dallas, TX 75001" -154366,USB-C Charging Cable,1,11.95,02/08/19 21:29,"180 14th St, Portland, OR 97035" -154367,Macbook Pro Laptop,1,1700,02/12/19 10:04,"74 Highland St, San Francisco, CA 94016" -154368,34in Ultrawide Monitor,1,379.99,02/19/19 21:51,"791 Chestnut St, New York City, NY 10001" -154369,ThinkPad Laptop,1,999.99,02/07/19 13:57,"447 8th St, Boston, MA 02215" -154370,AA Batteries (4-pack),1,3.84,02/14/19 19:17,"357 South St, Los Angeles, CA 90001" -154371,Lightning Charging Cable,1,14.95,02/12/19 18:17,"749 Maple St, San Francisco, CA 94016" -154372,AAA Batteries (4-pack),1,2.99,02/18/19 14:30,"448 6th St, Portland, OR 97035" -154373,Google Phone,1,600,02/16/19 20:07,"809 Sunset St, Atlanta, GA 30301" -154374,iPhone,1,700,02/11/19 23:57,"816 North St, Portland, OR 97035" -154374,Wired Headphones,1,11.99,02/11/19 23:57,"816 North St, Portland, OR 97035" -154375,iPhone,1,700,02/22/19 22:30,"733 Willow St, San Francisco, CA 94016" -154375,Apple Airpods Headphones,1,150,02/22/19 22:30,"733 Willow St, San Francisco, CA 94016" -154376,Wired Headphones,1,11.99,02/11/19 00:09,"139 Lake St, Boston, MA 02215" -154377,Google Phone,1,600,02/05/19 14:43,"433 North St, New York City, NY 10001" -154378,AA Batteries (4-pack),2,3.84,02/03/19 15:05,"270 Hickory St, Atlanta, GA 30301" -154379,27in FHD Monitor,1,149.99,02/06/19 10:11,"392 Elm St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -154380,Bose SoundSport Headphones,1,99.99,02/06/19 19:25,"570 5th St, Boston, MA 02215" -154381,USB-C Charging Cable,1,11.95,02/16/19 10:31,"802 Jefferson St, San Francisco, CA 94016" -154382,Apple Airpods Headphones,1,150,02/22/19 15:58,"594 12th St, Boston, MA 02215" -154383,Lightning Charging Cable,1,14.95,02/08/19 15:40,"868 Washington St, Boston, MA 02215" -154384,AA Batteries (4-pack),1,3.84,02/14/19 12:01,"180 Wilson St, San Francisco, CA 94016" -154385,Apple Airpods Headphones,1,150,02/18/19 15:45,"422 Lakeview St, Portland, OR 97035" -154386,USB-C Charging Cable,1,11.95,02/28/19 17:00,"535 Walnut St, Atlanta, GA 30301" -154387,USB-C Charging Cable,1,11.95,02/09/19 16:33,"541 West St, San Francisco, CA 94016" -154388,Lightning Charging Cable,1,14.95,02/24/19 22:38,"197 Hickory St, New York City, NY 10001" -154389,Lightning Charging Cable,2,14.95,02/28/19 11:45,"190 8th St, Los Angeles, CA 90001" -154390,AAA Batteries (4-pack),1,2.99,02/24/19 10:11,"381 Highland St, New York City, NY 10001" -154391,Flatscreen TV,1,300,02/12/19 12:40,"718 Johnson St, New York City, NY 10001" -154392,Wired Headphones,1,11.99,02/11/19 14:16,"756 Dogwood St, Los Angeles, CA 90001" -154393,Macbook Pro Laptop,1,1700,02/17/19 16:00,"643 Sunset St, San Francisco, CA 94016" -154394,USB-C Charging Cable,1,11.95,02/09/19 18:38,"175 13th St, Portland, OR 97035" -154395,Apple Airpods Headphones,1,150,02/27/19 22:36,"30 Forest St, Boston, MA 02215" -154396,Apple Airpods Headphones,1,150,02/09/19 02:26,"353 North St, San Francisco, CA 94016" -154397,Apple Airpods Headphones,1,150,02/24/19 18:44,"260 Chestnut St, New York City, NY 10001" -154398,27in FHD Monitor,1,149.99,02/25/19 12:24,"784 Adams St, Atlanta, GA 30301" -154399,AA Batteries (4-pack),1,3.84,02/19/19 12:11,"805 7th St, Atlanta, GA 30301" -154400,Lightning Charging Cable,1,14.95,02/17/19 04:02,"12 West St, Los Angeles, CA 90001" -154401,Apple Airpods Headphones,1,150,02/26/19 18:44,"211 Lakeview St, Dallas, TX 75001" -154402,Apple Airpods Headphones,1,150,02/03/19 11:54,"50 Lake St, Dallas, TX 75001" -154403,Apple Airpods Headphones,1,150,02/24/19 11:56,"791 Chestnut St, San Francisco, CA 94016" -154404,Wired Headphones,1,11.99,02/28/19 22:19,"559 Wilson St, Austin, TX 73301" -154405,Wired Headphones,1,11.99,02/16/19 11:52,"541 Cedar St, New York City, NY 10001" -154406,USB-C Charging Cable,1,11.95,02/12/19 06:28,"964 Willow St, Austin, TX 73301" -154407,AA Batteries (4-pack),1,3.84,02/24/19 13:20,"485 Willow St, San Francisco, CA 94016" -154408,Lightning Charging Cable,1,14.95,02/14/19 18:30,"4 Wilson St, Boston, MA 02215" -154409,Lightning Charging Cable,1,14.95,02/21/19 10:20,"475 Forest St, San Francisco, CA 94016" -154410,Google Phone,1,600,02/28/19 23:06,"73 12th St, Atlanta, GA 30301" -154411,AA Batteries (4-pack),1,3.84,02/19/19 11:36,"642 South St, New York City, NY 10001" -154412,USB-C Charging Cable,1,11.95,02/03/19 20:47,"287 9th St, Portland, ME 04101" -154413,Flatscreen TV,1,300,02/16/19 19:29,"905 Lincoln St, Los Angeles, CA 90001" -154414,AAA Batteries (4-pack),2,2.99,02/10/19 17:02,"670 5th St, Los Angeles, CA 90001" -154415,20in Monitor,1,109.99,02/05/19 07:54,"323 North St, San Francisco, CA 94016" -154416,Google Phone,1,600,02/06/19 12:05,"111 Jackson St, New York City, NY 10001" -154417,iPhone,1,700,02/08/19 17:32,"640 Main St, New York City, NY 10001" -154417,Lightning Charging Cable,1,14.95,02/08/19 17:32,"640 Main St, New York City, NY 10001" -154418,Google Phone,1,600,02/02/19 05:48,"237 Cherry St, San Francisco, CA 94016" -154419,USB-C Charging Cable,1,11.95,02/27/19 18:11,"849 Spruce St, Boston, MA 02215" -154420,AA Batteries (4-pack),2,3.84,02/27/19 21:25,"554 11th St, Los Angeles, CA 90001" -154421,ThinkPad Laptop,1,999.99,02/11/19 21:15,"922 11th St, New York City, NY 10001" -154422,Apple Airpods Headphones,1,150,02/05/19 18:20,"726 West St, Los Angeles, CA 90001" -154423,USB-C Charging Cable,1,11.95,02/13/19 18:01,"691 Jefferson St, Los Angeles, CA 90001" -154424,AA Batteries (4-pack),2,3.84,02/01/19 20:39,"398 Park St, Seattle, WA 98101" -154425,Apple Airpods Headphones,1,150,02/10/19 11:45,"575 West St, San Francisco, CA 94016" -154426,AAA Batteries (4-pack),2,2.99,02/08/19 02:12,"603 13th St, Boston, MA 02215" -154427,Lightning Charging Cable,1,14.95,02/07/19 14:28,"836 Willow St, New York City, NY 10001" -154428,Bose SoundSport Headphones,1,99.99,02/15/19 22:23,"304 Lincoln St, Seattle, WA 98101" -154429,AAA Batteries (4-pack),1,2.99,02/28/19 22:02,"596 6th St, Boston, MA 02215" -154430,AAA Batteries (4-pack),3,2.99,02/15/19 15:42,"562 8th St, Los Angeles, CA 90001" -154431,AA Batteries (4-pack),1,3.84,02/05/19 13:27,"660 River St, Dallas, TX 75001" -154432,27in FHD Monitor,1,149.99,02/10/19 00:32,"653 Johnson St, San Francisco, CA 94016" -154433,AAA Batteries (4-pack),1,2.99,02/28/19 14:21,"113 Adams St, Dallas, TX 75001" -154434,AA Batteries (4-pack),1,3.84,02/26/19 19:24,"269 11th St, Dallas, TX 75001" -154435,20in Monitor,1,109.99,02/11/19 09:53,"769 Meadow St, New York City, NY 10001" -154436,Bose SoundSport Headphones,1,99.99,02/16/19 10:36,"567 North St, San Francisco, CA 94016" -,,,,, -154437,Lightning Charging Cable,1,14.95,02/15/19 13:17,"493 Dogwood St, Dallas, TX 75001" -154438,USB-C Charging Cable,1,11.95,02/14/19 19:15,"159 Chestnut St, Seattle, WA 98101" -154439,Wired Headphones,1,11.99,02/10/19 19:56,"112 Jackson St, Boston, MA 02215" -154440,AAA Batteries (4-pack),1,2.99,02/18/19 20:29,"467 Cherry St, Boston, MA 02215" -154441,Wired Headphones,1,11.99,02/25/19 19:06,"409 River St, San Francisco, CA 94016" -154442,USB-C Charging Cable,1,11.95,02/04/19 13:56,"89 Church St, San Francisco, CA 94016" -154443,Bose SoundSport Headphones,1,99.99,02/12/19 19:03,"364 Johnson St, Seattle, WA 98101" -154444,Wired Headphones,1,11.99,02/09/19 09:43,"95 Lakeview St, San Francisco, CA 94016" -154445,27in 4K Gaming Monitor,1,389.99,02/16/19 19:45,"688 Madison St, Los Angeles, CA 90001" -154446,Apple Airpods Headphones,1,150,02/09/19 15:04,"725 Hickory St, Atlanta, GA 30301" -154447,Apple Airpods Headphones,1,150,02/22/19 19:40,"30 Washington St, Seattle, WA 98101" -154448,AAA Batteries (4-pack),1,2.99,02/12/19 21:56,"902 Spruce St, Atlanta, GA 30301" -154449,Lightning Charging Cable,1,14.95,02/01/19 20:30,"2 Maple St, Los Angeles, CA 90001" -154450,AAA Batteries (4-pack),1,2.99,02/07/19 19:10,"69 Cherry St, Boston, MA 02215" -154451,Bose SoundSport Headphones,1,99.99,02/03/19 15:11,"337 Lakeview St, New York City, NY 10001" -154452,Google Phone,1,600,02/11/19 11:01,"624 4th St, New York City, NY 10001" -154453,Lightning Charging Cable,1,14.95,02/12/19 18:13,"214 2nd St, Seattle, WA 98101" -154454,AAA Batteries (4-pack),1,2.99,02/05/19 07:49,"127 5th St, San Francisco, CA 94016" -154455,AA Batteries (4-pack),2,3.84,02/18/19 12:14,"524 7th St, New York City, NY 10001" -154456,Wired Headphones,1,11.99,02/08/19 09:43,"34 10th St, New York City, NY 10001" -154457,AAA Batteries (4-pack),2,2.99,02/20/19 21:37,"585 South St, San Francisco, CA 94016" -154458,Apple Airpods Headphones,1,150,02/27/19 16:03,"880 Wilson St, Atlanta, GA 30301" -154459,Flatscreen TV,1,300,02/16/19 23:54,"872 8th St, Seattle, WA 98101" -154460,Wired Headphones,1,11.99,02/26/19 09:57,"83 Lincoln St, Dallas, TX 75001" -154461,AAA Batteries (4-pack),1,2.99,02/14/19 12:38,"102 Lincoln St, Boston, MA 02215" -154462,Macbook Pro Laptop,1,1700,02/20/19 09:01,"876 Hickory St, Atlanta, GA 30301" -154463,USB-C Charging Cable,1,11.95,02/06/19 07:53,"114 Ridge St, New York City, NY 10001" -154464,AA Batteries (4-pack),1,3.84,02/06/19 12:34,"775 River St, Atlanta, GA 30301" -154465,AA Batteries (4-pack),1,3.84,02/04/19 23:01,"438 Elm St, Los Angeles, CA 90001" -154466,Lightning Charging Cable,1,14.95,02/23/19 10:14,"849 Jackson St, San Francisco, CA 94016" -154467,AAA Batteries (4-pack),1,2.99,02/03/19 00:17,"316 Johnson St, New York City, NY 10001" -154468,Apple Airpods Headphones,1,150,02/26/19 17:17,"656 Adams St, San Francisco, CA 94016" -154469,AA Batteries (4-pack),1,3.84,02/26/19 08:52,"974 14th St, San Francisco, CA 94016" -154470,27in FHD Monitor,1,149.99,02/25/19 16:32,"706 Jefferson St, Atlanta, GA 30301" -154471,Google Phone,1,600,02/10/19 14:59,"906 6th St, Los Angeles, CA 90001" -154471,Wired Headphones,1,11.99,02/10/19 14:59,"906 6th St, Los Angeles, CA 90001" -154472,27in FHD Monitor,1,149.99,02/22/19 15:51,"461 11th St, Atlanta, GA 30301" -154473,Wired Headphones,1,11.99,02/17/19 11:49,"59 Johnson St, San Francisco, CA 94016" -154474,Wired Headphones,1,11.99,02/23/19 10:18,"557 Johnson St, Boston, MA 02215" -154475,20in Monitor,1,109.99,02/22/19 12:49,"347 4th St, San Francisco, CA 94016" -154476,34in Ultrawide Monitor,1,379.99,02/01/19 10:39,"598 North St, Los Angeles, CA 90001" -154477,Apple Airpods Headphones,1,150,02/08/19 12:29,"486 Willow St, Portland, ME 04101" -154478,27in 4K Gaming Monitor,1,389.99,02/16/19 14:11,"443 Highland St, Boston, MA 02215" -154479,Lightning Charging Cable,1,14.95,02/14/19 11:48,"901 Center St, Atlanta, GA 30301" -154480,Bose SoundSport Headphones,1,99.99,02/07/19 11:53,"506 Lakeview St, Atlanta, GA 30301" -154481,Lightning Charging Cable,1,14.95,02/15/19 20:04,"482 Lincoln St, Boston, MA 02215" -154482,Wired Headphones,1,11.99,02/28/19 09:50,"972 7th St, New York City, NY 10001" -154483,Macbook Pro Laptop,1,1700,02/01/19 12:44,"334 Adams St, New York City, NY 10001" -154484,Lightning Charging Cable,1,14.95,02/23/19 16:57,"285 Main St, Atlanta, GA 30301" -154485,USB-C Charging Cable,1,11.95,02/20/19 09:29,"534 West St, Los Angeles, CA 90001" -154486,27in 4K Gaming Monitor,1,389.99,02/07/19 15:42,"375 Church St, New York City, NY 10001" -154487,LG Washing Machine,1,600.0,02/02/19 15:33,"781 4th St, Los Angeles, CA 90001" -154488,Wired Headphones,1,11.99,02/07/19 08:44,"606 Jefferson St, Boston, MA 02215" -154489,USB-C Charging Cable,1,11.95,02/15/19 14:18,"608 Chestnut St, San Francisco, CA 94016" -154490,Wired Headphones,1,11.99,02/17/19 17:02,"509 River St, Los Angeles, CA 90001" -154491,Wired Headphones,1,11.99,02/17/19 20:24,"498 Ridge St, Los Angeles, CA 90001" -154492,Apple Airpods Headphones,1,150,02/18/19 13:40,"670 Pine St, Los Angeles, CA 90001" -154493,ThinkPad Laptop,1,999.99,02/09/19 18:24,"469 8th St, Los Angeles, CA 90001" -154494,AAA Batteries (4-pack),1,2.99,02/18/19 16:47,"793 Church St, San Francisco, CA 94016" -154495,USB-C Charging Cable,1,11.95,02/07/19 09:48,"163 Washington St, San Francisco, CA 94016" -154496,AAA Batteries (4-pack),3,2.99,02/03/19 15:43,"81 Church St, Seattle, WA 98101" -154497,LG Dryer,1,600.0,02/23/19 16:03,"307 10th St, Seattle, WA 98101" -154498,Wired Headphones,1,11.99,02/09/19 11:05,"434 6th St, Austin, TX 73301" -154499,Wired Headphones,1,11.99,02/23/19 06:27,"791 Wilson St, San Francisco, CA 94016" -154500,USB-C Charging Cable,1,11.95,02/20/19 21:56,"579 Dogwood St, Los Angeles, CA 90001" -154501,Wired Headphones,1,11.99,02/20/19 06:24,"866 Jefferson St, Portland, OR 97035" -154502,Lightning Charging Cable,1,14.95,02/22/19 10:50,"677 Center St, Dallas, TX 75001" -154503,Lightning Charging Cable,1,14.95,02/10/19 19:20,"303 Pine St, Los Angeles, CA 90001" -154504,Bose SoundSport Headphones,1,99.99,02/19/19 07:02,"984 Chestnut St, New York City, NY 10001" -154505,AAA Batteries (4-pack),1,2.99,02/03/19 22:54,"53 Lakeview St, San Francisco, CA 94016" -154506,Bose SoundSport Headphones,1,99.99,02/26/19 10:59,"878 7th St, Portland, OR 97035" -154507,Wired Headphones,1,11.99,02/25/19 14:17,"861 Madison St, Los Angeles, CA 90001" -154508,AAA Batteries (4-pack),1,2.99,02/09/19 20:36,"778 14th St, Portland, OR 97035" -154509,iPhone,1,700,02/02/19 14:49,"885 14th St, Los Angeles, CA 90001" -154510,Lightning Charging Cable,1,14.95,02/16/19 16:18,"296 Cherry St, Portland, OR 97035" -154511,Bose SoundSport Headphones,1,99.99,02/17/19 23:52,"85 Walnut St, New York City, NY 10001" -154511,27in FHD Monitor,1,149.99,02/17/19 23:52,"85 Walnut St, New York City, NY 10001" -154512,Macbook Pro Laptop,1,1700,02/02/19 23:21,"90 Park St, San Francisco, CA 94016" -154513,Google Phone,1,600,02/02/19 20:35,"636 1st St, Dallas, TX 75001" -154514,Google Phone,1,600,02/17/19 18:47,"172 Meadow St, San Francisco, CA 94016" -154515,20in Monitor,1,109.99,02/05/19 10:54,"524 Lakeview St, Atlanta, GA 30301" -154516,USB-C Charging Cable,1,11.95,02/17/19 21:23,"3 12th St, Dallas, TX 75001" -154517,AA Batteries (4-pack),1,3.84,02/15/19 18:27,"129 Ridge St, New York City, NY 10001" -154518,Google Phone,1,600,02/20/19 14:53,"499 Highland St, Boston, MA 02215" -154519,AA Batteries (4-pack),1,3.84,02/14/19 06:13,"879 Jackson St, Austin, TX 73301" -154520,AA Batteries (4-pack),2,3.84,02/16/19 15:22,"476 Elm St, Seattle, WA 98101" -154521,USB-C Charging Cable,1,11.95,02/02/19 22:09,"132 Dogwood St, Boston, MA 02215" -154522,Bose SoundSport Headphones,1,99.99,02/20/19 21:07,"447 Meadow St, Los Angeles, CA 90001" -154523,Lightning Charging Cable,1,14.95,02/21/19 12:30,"666 5th St, San Francisco, CA 94016" -154524,iPhone,1,700,02/14/19 15:40,"796 Lake St, Seattle, WA 98101" -154524,Apple Airpods Headphones,1,150,02/14/19 15:40,"796 Lake St, Seattle, WA 98101" -154525,34in Ultrawide Monitor,1,379.99,02/19/19 14:25,"972 Lakeview St, Atlanta, GA 30301" -154526,Google Phone,1,600,02/23/19 17:11,"952 7th St, Dallas, TX 75001" -154527,Lightning Charging Cable,1,14.95,02/18/19 18:24,"614 Cedar St, Boston, MA 02215" -154528,AA Batteries (4-pack),3,3.84,02/03/19 19:30,"8 9th St, Boston, MA 02215" -154529,Lightning Charging Cable,1,14.95,02/21/19 16:12,"843 Lincoln St, Los Angeles, CA 90001" -154530,20in Monitor,1,109.99,02/21/19 16:04,"503 Spruce St, Dallas, TX 75001" -154531,Bose SoundSport Headphones,1,99.99,02/15/19 21:22,"969 Chestnut St, Portland, OR 97035" -154532,Apple Airpods Headphones,1,150,02/08/19 23:26,"543 2nd St, Boston, MA 02215" -154533,Wired Headphones,1,11.99,02/11/19 11:01,"955 Highland St, Portland, ME 04101" -154534,27in FHD Monitor,1,149.99,02/28/19 11:01,"792 12th St, Boston, MA 02215" -154535,Apple Airpods Headphones,1,150,02/03/19 13:06,"253 Wilson St, New York City, NY 10001" -154536,Bose SoundSport Headphones,1,99.99,02/03/19 09:28,"777 Spruce St, San Francisco, CA 94016" -154537,Bose SoundSport Headphones,1,99.99,02/23/19 14:45,"712 Hill St, San Francisco, CA 94016" -154538,ThinkPad Laptop,1,999.99,02/16/19 13:58,"525 Adams St, Los Angeles, CA 90001" -154539,Wired Headphones,1,11.99,02/06/19 20:31,"972 5th St, New York City, NY 10001" -154540,AAA Batteries (4-pack),1,2.99,02/14/19 14:35,"548 Park St, San Francisco, CA 94016" -154541,AAA Batteries (4-pack),2,2.99,02/18/19 20:31,"513 Willow St, Los Angeles, CA 90001" -154542,AAA Batteries (4-pack),1,2.99,02/17/19 11:02,"720 4th St, Atlanta, GA 30301" -154543,USB-C Charging Cable,1,11.95,02/05/19 12:58,"601 14th St, Boston, MA 02215" -154544,Wired Headphones,2,11.99,02/07/19 12:57,"70 2nd St, Dallas, TX 75001" -154545,Bose SoundSport Headphones,1,99.99,02/08/19 19:25,"729 South St, Boston, MA 02215" -154546,Apple Airpods Headphones,1,150,02/22/19 00:17,"737 Meadow St, Austin, TX 73301" -154547,Flatscreen TV,1,300,02/12/19 18:57,"635 Jackson St, New York City, NY 10001" -154548,USB-C Charging Cable,1,11.95,02/05/19 10:13,"956 River St, Seattle, WA 98101" -154549,iPhone,1,700,02/24/19 13:04,"16 Madison St, Los Angeles, CA 90001" -154550,USB-C Charging Cable,1,11.95,02/11/19 19:26,"324 7th St, New York City, NY 10001" -154551,iPhone,1,700,02/05/19 11:19,"185 11th St, Los Angeles, CA 90001" -154552,USB-C Charging Cable,1,11.95,02/05/19 16:54,"363 Forest St, Seattle, WA 98101" -154553,34in Ultrawide Monitor,1,379.99,02/27/19 19:16,"340 Highland St, Dallas, TX 75001" -154554,AAA Batteries (4-pack),2,2.99,02/18/19 08:34,"889 Madison St, San Francisco, CA 94016" -154555,27in FHD Monitor,1,149.99,02/27/19 13:19,"412 West St, Atlanta, GA 30301" -154556,Wired Headphones,1,11.99,02/22/19 04:17,"534 Sunset St, Atlanta, GA 30301" -154557,Wired Headphones,1,11.99,02/22/19 16:36,"19 Park St, San Francisco, CA 94016" -154558,Flatscreen TV,1,300,02/14/19 13:31,"391 North St, Atlanta, GA 30301" -154559,AAA Batteries (4-pack),1,2.99,02/01/19 20:35,"929 8th St, Seattle, WA 98101" -154560,Lightning Charging Cable,1,14.95,02/17/19 13:51,"41 North St, San Francisco, CA 94016" -154561,Bose SoundSport Headphones,1,99.99,02/22/19 11:58,"154 Maple St, Dallas, TX 75001" -154562,AAA Batteries (4-pack),1,2.99,02/23/19 10:03,"139 Lincoln St, San Francisco, CA 94016" -154563,Apple Airpods Headphones,1,150,02/07/19 20:13,"88 Chestnut St, New York City, NY 10001" -154564,Google Phone,1,600,02/28/19 18:36,"948 Dogwood St, New York City, NY 10001" -154565,Wired Headphones,2,11.99,02/05/19 10:05,"884 Wilson St, San Francisco, CA 94016" -154566,Bose SoundSport Headphones,1,99.99,02/24/19 12:03,"970 Main St, Los Angeles, CA 90001" -154567,Apple Airpods Headphones,1,150,02/15/19 07:42,"600 Forest St, San Francisco, CA 94016" -154568,USB-C Charging Cable,1,11.95,02/02/19 15:56,"674 Hill St, Seattle, WA 98101" -154569,AA Batteries (4-pack),2,3.84,02/25/19 18:19,"732 Cedar St, Boston, MA 02215" -154570,Lightning Charging Cable,2,14.95,02/10/19 09:26,"127 5th St, Austin, TX 73301" -154571,USB-C Charging Cable,1,11.95,02/26/19 13:57,"111 10th St, New York City, NY 10001" -154572,Apple Airpods Headphones,1,150,02/16/19 09:56,"104 Lincoln St, Boston, MA 02215" -154573,AAA Batteries (4-pack),1,2.99,02/21/19 14:56,"332 6th St, San Francisco, CA 94016" -154574,AAA Batteries (4-pack),2,2.99,02/08/19 13:11,"257 Hill St, San Francisco, CA 94016" -154575,Google Phone,1,600,02/22/19 17:39,"321 Spruce St, Seattle, WA 98101" -154576,Google Phone,1,600,02/22/19 10:40,"331 Madison St, San Francisco, CA 94016" -154576,USB-C Charging Cable,1,11.95,02/22/19 10:40,"331 Madison St, San Francisco, CA 94016" -154577,AA Batteries (4-pack),3,3.84,02/20/19 17:03,"531 Park St, New York City, NY 10001" -154578,AAA Batteries (4-pack),2,2.99,02/04/19 20:14,"155 Forest St, Dallas, TX 75001" -154579,AA Batteries (4-pack),1,3.84,02/13/19 19:09,"771 Center St, Seattle, WA 98101" -154580,Google Phone,1,600,02/09/19 17:59,"849 Church St, Boston, MA 02215" -154580,USB-C Charging Cable,1,11.95,02/09/19 17:59,"849 Church St, Boston, MA 02215" -154581,27in 4K Gaming Monitor,1,389.99,02/13/19 17:31,"294 11th St, Atlanta, GA 30301" -154582,Bose SoundSport Headphones,1,99.99,02/07/19 14:05,"503 Elm St, New York City, NY 10001" -154583,27in FHD Monitor,1,149.99,02/17/19 19:37,"364 Park St, Portland, OR 97035" -154584,Apple Airpods Headphones,1,150,02/19/19 15:44,"959 Highland St, San Francisco, CA 94016" -154585,Wired Headphones,1,11.99,02/03/19 15:48,"772 4th St, Atlanta, GA 30301" -154586,Bose SoundSport Headphones,1,99.99,02/21/19 10:32,"963 Maple St, Los Angeles, CA 90001" -154587,27in 4K Gaming Monitor,1,389.99,02/11/19 16:14,"743 1st St, San Francisco, CA 94016" -154588,34in Ultrawide Monitor,1,379.99,02/12/19 09:53,"315 Washington St, San Francisco, CA 94016" -154589,Apple Airpods Headphones,1,150,02/08/19 16:08,"265 Park St, Los Angeles, CA 90001" -154590,AAA Batteries (4-pack),1,2.99,02/01/19 17:12,"109 Meadow St, Portland, ME 04101" -154591,Apple Airpods Headphones,1,150,02/08/19 14:55,"198 1st St, Atlanta, GA 30301" -154592,AAA Batteries (4-pack),1,2.99,02/05/19 09:39,"60 Lakeview St, Los Angeles, CA 90001" -154593,USB-C Charging Cable,1,11.95,02/08/19 21:28,"84 Lake St, San Francisco, CA 94016" -154594,Apple Airpods Headphones,1,150,02/15/19 15:57,"344 Elm St, San Francisco, CA 94016" -154595,Bose SoundSport Headphones,1,99.99,02/21/19 11:31,"629 Walnut St, Boston, MA 02215" -154596,Apple Airpods Headphones,1,150,02/27/19 21:29,"17 Maple St, Los Angeles, CA 90001" -154597,USB-C Charging Cable,1,11.95,02/18/19 21:28,"638 Johnson St, San Francisco, CA 94016" -154598,Bose SoundSport Headphones,1,99.99,02/12/19 18:02,"551 2nd St, Portland, ME 04101" -154599,AAA Batteries (4-pack),1,2.99,02/17/19 08:42,"490 12th St, Boston, MA 02215" -154600,AA Batteries (4-pack),2,3.84,02/12/19 18:23,"566 9th St, Austin, TX 73301" -154601,27in FHD Monitor,1,149.99,02/21/19 12:46,"923 Cherry St, Dallas, TX 75001" -154602,Apple Airpods Headphones,1,150,02/12/19 04:18,"109 Center St, Boston, MA 02215" -154603,AAA Batteries (4-pack),1,2.99,02/03/19 21:41,"217 Ridge St, Austin, TX 73301" -154604,Apple Airpods Headphones,1,150,02/10/19 09:05,"386 West St, Portland, OR 97035" -154605,iPhone,1,700,02/02/19 12:42,"844 Wilson St, Austin, TX 73301" -154606,27in 4K Gaming Monitor,1,389.99,02/06/19 14:33,"450 Pine St, Dallas, TX 75001" -154607,Lightning Charging Cable,1,14.95,02/15/19 10:44,"876 Adams St, Boston, MA 02215" -154608,Vareebadd Phone,1,400,02/11/19 16:59,"285 Washington St, San Francisco, CA 94016" -154609,AAA Batteries (4-pack),1,2.99,02/04/19 11:26,"999 12th St, Dallas, TX 75001" -154610,Wired Headphones,1,11.99,02/11/19 16:20,"30 4th St, San Francisco, CA 94016" -154611,Wired Headphones,1,11.99,02/04/19 08:57,"975 Wilson St, Los Angeles, CA 90001" -154611,27in 4K Gaming Monitor,1,389.99,02/04/19 08:57,"975 Wilson St, Los Angeles, CA 90001" -154612,USB-C Charging Cable,1,11.95,02/13/19 02:03,"817 12th St, New York City, NY 10001" -154613,Apple Airpods Headphones,1,150,02/17/19 09:29,"770 Jackson St, San Francisco, CA 94016" -154614,Bose SoundSport Headphones,1,99.99,02/10/19 09:56,"18 Ridge St, San Francisco, CA 94016" -154615,27in FHD Monitor,1,149.99,02/09/19 11:31,"990 5th St, Seattle, WA 98101" -154616,Wired Headphones,3,11.99,02/24/19 23:02,"906 6th St, San Francisco, CA 94016" -154617,Wired Headphones,1,11.99,02/19/19 14:33,"96 Elm St, Boston, MA 02215" -154618,ThinkPad Laptop,1,999.99,02/13/19 20:19,"313 4th St, New York City, NY 10001" -154619,20in Monitor,1,109.99,02/21/19 19:00,"415 Cherry St, Los Angeles, CA 90001" -154620,ThinkPad Laptop,1,999.99,02/04/19 17:21,"950 7th St, Seattle, WA 98101" -154621,USB-C Charging Cable,1,11.95,02/14/19 14:54,"58 Sunset St, Austin, TX 73301" -154622,AA Batteries (4-pack),1,3.84,02/23/19 06:36,"911 2nd St, Portland, ME 04101" -154623,27in 4K Gaming Monitor,1,389.99,02/08/19 13:22,"355 Chestnut St, Los Angeles, CA 90001" -154624,Bose SoundSport Headphones,1,99.99,02/27/19 22:10,"498 Sunset St, Austin, TX 73301" -154625,Apple Airpods Headphones,1,150,02/02/19 16:22,"851 Park St, Atlanta, GA 30301" -154626,AAA Batteries (4-pack),1,2.99,02/26/19 00:42,"145 Center St, Los Angeles, CA 90001" -154627,Apple Airpods Headphones,1,150,02/21/19 08:54,"437 7th St, Seattle, WA 98101" -154628,Google Phone,1,600,02/06/19 11:14,"330 Maple St, Atlanta, GA 30301" -154628,USB-C Charging Cable,1,11.95,02/06/19 11:14,"330 Maple St, Atlanta, GA 30301" -154629,Lightning Charging Cable,1,14.95,02/01/19 14:05,"904 Pine St, Dallas, TX 75001" -154630,USB-C Charging Cable,1,11.95,02/02/19 23:47,"542 Cherry St, Atlanta, GA 30301" -154631,Apple Airpods Headphones,1,150,02/16/19 12:30,"898 Lake St, San Francisco, CA 94016" -154632,AA Batteries (4-pack),1,3.84,02/20/19 12:13,"445 5th St, New York City, NY 10001" -154633,Flatscreen TV,1,300,02/08/19 17:51,"405 Jefferson St, Atlanta, GA 30301" -154634,Apple Airpods Headphones,1,150,02/17/19 21:43,"1 Pine St, New York City, NY 10001" -154635,Wired Headphones,1,11.99,02/13/19 14:04,"826 5th St, Austin, TX 73301" -154636,Wired Headphones,1,11.99,02/19/19 12:59,"866 Jefferson St, Los Angeles, CA 90001" -154637,Apple Airpods Headphones,1,150,02/08/19 02:07,"169 Main St, Dallas, TX 75001" -154638,27in FHD Monitor,1,149.99,02/24/19 20:23,"69 9th St, Seattle, WA 98101" -154639,27in FHD Monitor,1,149.99,02/01/19 21:17,"311 Forest St, New York City, NY 10001" -154640,USB-C Charging Cable,1,11.95,02/25/19 01:36,"457 Willow St, Los Angeles, CA 90001" -154641,AAA Batteries (4-pack),1,2.99,02/14/19 18:30,"399 Johnson St, New York City, NY 10001" -154642,Lightning Charging Cable,1,14.95,02/17/19 12:16,"708 Maple St, Los Angeles, CA 90001" -154643,AAA Batteries (4-pack),1,2.99,02/15/19 09:32,"666 14th St, New York City, NY 10001" -154644,Apple Airpods Headphones,1,150,02/12/19 08:08,"807 12th St, New York City, NY 10001" -154644,Lightning Charging Cable,1,14.95,02/12/19 08:08,"807 12th St, New York City, NY 10001" -154645,Wired Headphones,1,11.99,02/02/19 18:25,"477 Forest St, Los Angeles, CA 90001" -154646,Flatscreen TV,1,300,02/06/19 19:08,"470 Elm St, Austin, TX 73301" -154647,USB-C Charging Cable,1,11.95,02/03/19 18:19,"701 Sunset St, Atlanta, GA 30301" -154648,USB-C Charging Cable,1,11.95,02/09/19 18:31,"868 Adams St, San Francisco, CA 94016" -154649,USB-C Charging Cable,1,11.95,02/18/19 17:36,"385 Chestnut St, Boston, MA 02215" -154650,iPhone,1,700,02/13/19 20:14,"753 11th St, Boston, MA 02215" -154651,Wired Headphones,2,11.99,02/05/19 10:26,"77 Cherry St, Atlanta, GA 30301" -154652,AAA Batteries (4-pack),2,2.99,02/08/19 13:50,"105 Church St, San Francisco, CA 94016" -154653,AAA Batteries (4-pack),1,2.99,02/28/19 22:48,"143 North St, San Francisco, CA 94016" -154654,AAA Batteries (4-pack),1,2.99,02/10/19 17:09,"237 Willow St, Dallas, TX 75001" -154655,Google Phone,1,600,02/08/19 06:39,"644 10th St, Atlanta, GA 30301" -154655,USB-C Charging Cable,1,11.95,02/08/19 06:39,"644 10th St, Atlanta, GA 30301" -154656,ThinkPad Laptop,1,999.99,02/13/19 18:51,"896 13th St, Dallas, TX 75001" -154657,USB-C Charging Cable,1,11.95,02/19/19 15:10,"215 Walnut St, Dallas, TX 75001" -154658,Google Phone,1,600,02/07/19 14:27,"280 Wilson St, Dallas, TX 75001" -154658,USB-C Charging Cable,1,11.95,02/07/19 14:27,"280 Wilson St, Dallas, TX 75001" -154659,Lightning Charging Cable,1,14.95,02/09/19 07:29,"735 Cedar St, New York City, NY 10001" -154660,Bose SoundSport Headphones,1,99.99,02/03/19 15:32,"179 Park St, Portland, ME 04101" -154661,34in Ultrawide Monitor,1,379.99,02/13/19 19:38,"155 Church St, New York City, NY 10001" -154662,27in 4K Gaming Monitor,1,389.99,02/25/19 08:45,"557 Jackson St, Los Angeles, CA 90001" -154663,AA Batteries (4-pack),1,3.84,02/14/19 13:03,"586 Cedar St, San Francisco, CA 94016" -154664,AAA Batteries (4-pack),2,2.99,02/11/19 10:20,"636 Adams St, Portland, ME 04101" -154665,AA Batteries (4-pack),1,3.84,02/22/19 07:47,"914 Willow St, San Francisco, CA 94016" -154666,AAA Batteries (4-pack),1,2.99,02/09/19 10:51,"971 River St, Boston, MA 02215" -154667,Apple Airpods Headphones,1,150,02/03/19 14:31,"501 8th St, Dallas, TX 75001" -154668,AA Batteries (4-pack),4,3.84,02/13/19 22:16,"305 14th St, San Francisco, CA 94016" -154669,Wired Headphones,1,11.99,02/08/19 18:54,"986 Madison St, San Francisco, CA 94016" -154670,Lightning Charging Cable,1,14.95,02/23/19 12:53,"585 Adams St, San Francisco, CA 94016" -154671,AAA Batteries (4-pack),2,2.99,02/09/19 20:47,"940 Dogwood St, Los Angeles, CA 90001" -154672,34in Ultrawide Monitor,1,379.99,02/20/19 19:54,"123 Johnson St, San Francisco, CA 94016" -154673,AA Batteries (4-pack),1,3.84,02/14/19 20:45,"997 Chestnut St, Dallas, TX 75001" -154674,Wired Headphones,1,11.99,02/11/19 15:31,"880 Church St, New York City, NY 10001" -154675,AA Batteries (4-pack),1,3.84,02/19/19 16:33,"386 8th St, New York City, NY 10001" -154676,Flatscreen TV,1,300,02/10/19 21:31,"498 Dogwood St, San Francisco, CA 94016" -154677,Bose SoundSport Headphones,1,99.99,02/23/19 17:32,"581 Wilson St, Los Angeles, CA 90001" -154678,Google Phone,1,600,02/09/19 14:19,"147 Chestnut St, Boston, MA 02215" -154679,AAA Batteries (4-pack),1,2.99,02/13/19 07:23,"351 Madison St, San Francisco, CA 94016" -154679,34in Ultrawide Monitor,1,379.99,02/13/19 07:23,"351 Madison St, San Francisco, CA 94016" -154680,Apple Airpods Headphones,1,150,02/24/19 09:01,"104 Jefferson St, Atlanta, GA 30301" -154681,Wired Headphones,1,11.99,02/07/19 13:57,"84 Meadow St, Atlanta, GA 30301" -154682,AA Batteries (4-pack),1,3.84,02/05/19 21:59,"616 Maple St, San Francisco, CA 94016" -154683,Wired Headphones,1,11.99,02/25/19 20:55,"335 8th St, Seattle, WA 98101" -154684,Apple Airpods Headphones,1,150,02/23/19 05:23,"447 7th St, Atlanta, GA 30301" -154685,27in 4K Gaming Monitor,1,389.99,02/17/19 07:42,"34 Maple St, Los Angeles, CA 90001" -154686,34in Ultrawide Monitor,1,379.99,02/08/19 15:52,"281 1st St, San Francisco, CA 94016" -154687,Macbook Pro Laptop,1,1700,02/08/19 11:34,"362 Walnut St, Portland, ME 04101" -154688,Apple Airpods Headphones,1,150,02/08/19 21:33,"707 Lake St, Austin, TX 73301" -154689,27in FHD Monitor,1,149.99,02/16/19 00:44,"517 12th St, New York City, NY 10001" -154690,Apple Airpods Headphones,1,150,02/24/19 12:51,"119 Chestnut St, Dallas, TX 75001" -154691,Wired Headphones,1,11.99,02/24/19 14:20,"757 2nd St, Portland, ME 04101" -154692,Bose SoundSport Headphones,1,99.99,02/15/19 14:11,"84 Wilson St, Boston, MA 02215" -154693,Wired Headphones,1,11.99,02/26/19 20:45,"250 Wilson St, New York City, NY 10001" -154694,Bose SoundSport Headphones,1,99.99,02/02/19 20:24,"305 1st St, Atlanta, GA 30301" -154694,Lightning Charging Cable,1,14.95,02/02/19 20:24,"305 1st St, Atlanta, GA 30301" -154695,Lightning Charging Cable,1,14.95,02/21/19 11:33,"149 River St, Los Angeles, CA 90001" -154696,Lightning Charging Cable,1,14.95,02/03/19 10:24,"499 West St, Boston, MA 02215" -154697,AA Batteries (4-pack),1,3.84,02/23/19 19:19,"266 Main St, Los Angeles, CA 90001" -,,,,, -154698,Lightning Charging Cable,1,14.95,02/01/19 15:05,"269 Spruce St, San Francisco, CA 94016" -154699,Macbook Pro Laptop,1,1700,02/13/19 10:52,"412 Forest St, San Francisco, CA 94016" -154700,USB-C Charging Cable,1,11.95,02/04/19 15:22,"988 Madison St, Portland, ME 04101" -154701,AA Batteries (4-pack),1,3.84,02/25/19 16:50,"555 6th St, New York City, NY 10001" -154702,Macbook Pro Laptop,1,1700,02/27/19 15:53,"690 6th St, San Francisco, CA 94016" -154703,AA Batteries (4-pack),3,3.84,02/11/19 16:53,"251 Madison St, New York City, NY 10001" -154704,AA Batteries (4-pack),1,3.84,02/09/19 13:26,"262 River St, Portland, OR 97035" -154705,Wired Headphones,1,11.99,02/22/19 13:17,"246 7th St, San Francisco, CA 94016" -154706,20in Monitor,1,109.99,02/19/19 02:48,"140 Church St, Austin, TX 73301" -154707,Google Phone,1,600,02/20/19 12:58,"673 Main St, Atlanta, GA 30301" -154707,USB-C Charging Cable,1,11.95,02/20/19 12:58,"673 Main St, Atlanta, GA 30301" -154707,Wired Headphones,1,11.99,02/20/19 12:58,"673 Main St, Atlanta, GA 30301" -154708,AA Batteries (4-pack),3,3.84,02/20/19 18:22,"353 Lakeview St, San Francisco, CA 94016" -154709,Lightning Charging Cable,1,14.95,02/28/19 19:05,"370 Lakeview St, Atlanta, GA 30301" -154710,Apple Airpods Headphones,1,150,02/07/19 11:25,"601 5th St, Boston, MA 02215" -154711,Bose SoundSport Headphones,1,99.99,02/18/19 10:52,"855 1st St, Seattle, WA 98101" -154712,AA Batteries (4-pack),1,3.84,02/04/19 23:37,"826 Meadow St, San Francisco, CA 94016" -154713,Wired Headphones,2,11.99,02/20/19 18:18,"137 Wilson St, Boston, MA 02215" -154714,Lightning Charging Cable,2,14.95,02/14/19 14:56,"867 Lincoln St, Dallas, TX 75001" -154715,Apple Airpods Headphones,1,150,02/21/19 19:22,"217 Elm St, Austin, TX 73301" -154716,AA Batteries (4-pack),2,3.84,02/22/19 23:08,"320 Pine St, San Francisco, CA 94016" -154717,AA Batteries (4-pack),2,3.84,02/20/19 11:56,"883 Cherry St, Boston, MA 02215" -154718,Google Phone,1,600,02/04/19 18:58,"325 12th St, Seattle, WA 98101" -154719,Bose SoundSport Headphones,1,99.99,02/18/19 18:51,"819 Meadow St, Austin, TX 73301" -154720,USB-C Charging Cable,1,11.95,02/12/19 15:04,"66 Willow St, Los Angeles, CA 90001" -154721,AA Batteries (4-pack),1,3.84,02/01/19 10:29,"739 Willow St, Seattle, WA 98101" -154722,34in Ultrawide Monitor,1,379.99,02/07/19 11:45,"579 Walnut St, Los Angeles, CA 90001" -154723,AA Batteries (4-pack),1,3.84,02/20/19 12:54,"664 11th St, San Francisco, CA 94016" -154724,34in Ultrawide Monitor,1,379.99,02/20/19 14:03,"525 Cedar St, New York City, NY 10001" -154725,Wired Headphones,2,11.99,02/17/19 12:41,"408 9th St, Los Angeles, CA 90001" -154726,USB-C Charging Cable,1,11.95,02/07/19 16:01,"536 Highland St, San Francisco, CA 94016" -154727,AA Batteries (4-pack),5,3.84,02/23/19 09:07,"627 Walnut St, New York City, NY 10001" -154728,Wired Headphones,1,11.99,02/09/19 23:15,"355 Highland St, San Francisco, CA 94016" -154729,34in Ultrawide Monitor,1,379.99,02/27/19 08:52,"728 Hickory St, San Francisco, CA 94016" -154730,USB-C Charging Cable,1,11.95,02/27/19 16:32,"489 Ridge St, New York City, NY 10001" -154731,AA Batteries (4-pack),1,3.84,02/20/19 13:48,"699 12th St, Seattle, WA 98101" -154732,AAA Batteries (4-pack),1,2.99,02/24/19 21:36,"407 9th St, Atlanta, GA 30301" -154733,USB-C Charging Cable,1,11.95,02/04/19 11:23,"461 Spruce St, Austin, TX 73301" -154734,AAA Batteries (4-pack),2,2.99,02/18/19 13:27,"482 Cherry St, Los Angeles, CA 90001" -154735,Apple Airpods Headphones,1,150,02/11/19 00:33,"922 11th St, San Francisco, CA 94016" -154736,27in FHD Monitor,1,149.99,02/07/19 12:22,"787 Lake St, Dallas, TX 75001" -154737,Lightning Charging Cable,1,14.95,02/01/19 17:59,"513 10th St, San Francisco, CA 94016" -154737,Lightning Charging Cable,1,14.95,02/01/19 17:59,"513 10th St, San Francisco, CA 94016" -154738,Lightning Charging Cable,1,14.95,02/27/19 07:51,"845 2nd St, New York City, NY 10001" -154739,34in Ultrawide Monitor,1,379.99,02/09/19 21:38,"460 Dogwood St, San Francisco, CA 94016" -154740,USB-C Charging Cable,1,11.95,02/08/19 14:31,"667 Main St, Seattle, WA 98101" -154741,27in 4K Gaming Monitor,1,389.99,02/13/19 00:55,"831 Willow St, San Francisco, CA 94016" -154742,Lightning Charging Cable,1,14.95,02/18/19 08:58,"661 Maple St, Boston, MA 02215" -154743,Lightning Charging Cable,1,14.95,02/05/19 14:09,"986 4th St, Atlanta, GA 30301" -154744,USB-C Charging Cable,1,11.95,02/24/19 11:10,"218 Willow St, Portland, OR 97035" -154745,Apple Airpods Headphones,1,150,02/24/19 08:29,"374 Adams St, San Francisco, CA 94016" -154746,AAA Batteries (4-pack),1,2.99,02/02/19 21:13,"558 Sunset St, Dallas, TX 75001" -154747,27in 4K Gaming Monitor,1,389.99,02/01/19 22:46,"367 Cedar St, Austin, TX 73301" -154747,27in 4K Gaming Monitor,1,389.99,02/01/19 22:46,"367 Cedar St, Austin, TX 73301" -154748,AA Batteries (4-pack),1,3.84,02/24/19 10:31,"454 Park St, Los Angeles, CA 90001" -154749,Wired Headphones,1,11.99,02/16/19 16:35,"76 Dogwood St, New York City, NY 10001" -154750,iPhone,1,700,02/26/19 20:14,"842 10th St, Austin, TX 73301" -154751,AA Batteries (4-pack),1,3.84,02/09/19 18:13,"422 West St, New York City, NY 10001" -154752,Apple Airpods Headphones,1,150,02/23/19 12:59,"994 Johnson St, Los Angeles, CA 90001" -154753,Lightning Charging Cable,1,14.95,02/15/19 14:08,"897 Hill St, San Francisco, CA 94016" -154754,Lightning Charging Cable,1,14.95,02/08/19 15:01,"219 10th St, Atlanta, GA 30301" -154755,USB-C Charging Cable,1,11.95,02/03/19 17:54,"348 River St, Portland, OR 97035" -154756,Lightning Charging Cable,1,14.95,02/12/19 11:36,"857 10th St, San Francisco, CA 94016" -154757,Wired Headphones,1,11.99,02/07/19 09:42,"561 Center St, Los Angeles, CA 90001" -154758,AA Batteries (4-pack),1,3.84,02/03/19 12:09,"799 4th St, Atlanta, GA 30301" -154759,Flatscreen TV,1,300,02/16/19 11:53,"778 14th St, San Francisco, CA 94016" -154760,27in FHD Monitor,1,149.99,02/13/19 08:27,"813 Pine St, Seattle, WA 98101" -154761,AA Batteries (4-pack),1,3.84,02/11/19 09:28,"733 River St, Los Angeles, CA 90001" -154762,Apple Airpods Headphones,1,150,02/08/19 16:59,"66 Lincoln St, Los Angeles, CA 90001" -154763,USB-C Charging Cable,1,11.95,02/06/19 08:57,"815 9th St, New York City, NY 10001" -154764,Wired Headphones,1,11.99,02/05/19 19:48,"394 Lincoln St, Austin, TX 73301" -154765,ThinkPad Laptop,1,999.99,02/27/19 22:22,"732 Jackson St, Austin, TX 73301" -154766,USB-C Charging Cable,1,11.95,02/09/19 09:11,"891 Spruce St, San Francisco, CA 94016" -154767,AAA Batteries (4-pack),2,2.99,02/22/19 12:21,"996 Forest St, Boston, MA 02215" -154768,AA Batteries (4-pack),1,3.84,02/11/19 16:02,"908 Hill St, Boston, MA 02215" -154769,Wired Headphones,2,11.99,02/02/19 18:12,"839 Main St, New York City, NY 10001" -154770,USB-C Charging Cable,1,11.95,02/02/19 16:05,"875 Sunset St, San Francisco, CA 94016" -154771,iPhone,1,700,02/12/19 07:32,"575 Cherry St, San Francisco, CA 94016" -154772,AAA Batteries (4-pack),1,2.99,02/18/19 22:35,"326 Wilson St, San Francisco, CA 94016" -154773,USB-C Charging Cable,1,11.95,02/03/19 16:03,"839 Lincoln St, Boston, MA 02215" -154774,Macbook Pro Laptop,1,1700,02/24/19 07:44,"583 Chestnut St, Los Angeles, CA 90001" -154775,iPhone,1,700,02/27/19 00:10,"856 Center St, Boston, MA 02215" -154776,AA Batteries (4-pack),1,3.84,02/25/19 23:54,"265 Lake St, Los Angeles, CA 90001" -154777,Apple Airpods Headphones,1,150,02/27/19 20:17,"184 4th St, Portland, ME 04101" -154778,Bose SoundSport Headphones,1,99.99,02/18/19 17:40,"798 Pine St, Los Angeles, CA 90001" -154779,Bose SoundSport Headphones,1,99.99,02/20/19 15:17,"226 Elm St, Portland, ME 04101" -154780,Bose SoundSport Headphones,1,99.99,02/16/19 20:45,"183 13th St, Portland, OR 97035" -154781,Bose SoundSport Headphones,1,99.99,02/13/19 10:13,"156 West St, Atlanta, GA 30301" -154782,27in FHD Monitor,1,149.99,02/04/19 09:30,"950 West St, New York City, NY 10001" -154783,Apple Airpods Headphones,1,150,02/17/19 06:46,"969 Walnut St, Los Angeles, CA 90001" -154784,27in 4K Gaming Monitor,1,389.99,02/12/19 20:45,"69 Ridge St, New York City, NY 10001" -154785,USB-C Charging Cable,1,11.95,02/09/19 11:09,"997 11th St, Dallas, TX 75001" -154786,Wired Headphones,1,11.99,02/11/19 20:39,"107 Walnut St, San Francisco, CA 94016" -154787,USB-C Charging Cable,1,11.95,02/22/19 14:41,"567 Park St, New York City, NY 10001" -154788,27in 4K Gaming Monitor,1,389.99,02/21/19 18:09,"77 7th St, Seattle, WA 98101" -154789,27in FHD Monitor,1,149.99,02/28/19 23:04,"201 Park St, San Francisco, CA 94016" -154790,AA Batteries (4-pack),1,3.84,02/03/19 16:51,"484 Park St, Seattle, WA 98101" -154791,Lightning Charging Cable,1,14.95,02/18/19 09:30,"183 9th St, Seattle, WA 98101" -154792,Wired Headphones,1,11.99,02/25/19 20:31,"701 Hickory St, San Francisco, CA 94016" -154793,AAA Batteries (4-pack),1,2.99,02/14/19 15:24,"710 5th St, New York City, NY 10001" -154794,20in Monitor,1,109.99,02/07/19 17:26,"93 4th St, New York City, NY 10001" -154795,Apple Airpods Headphones,1,150,02/24/19 23:55,"459 Sunset St, San Francisco, CA 94016" -154796,20in Monitor,1,109.99,02/05/19 19:19,"839 Washington St, Los Angeles, CA 90001" -154797,AAA Batteries (4-pack),1,2.99,02/22/19 10:10,"388 Dogwood St, Los Angeles, CA 90001" -154798,Wired Headphones,1,11.99,02/22/19 14:04,"156 Maple St, San Francisco, CA 94016" -154799,ThinkPad Laptop,1,999.99,02/16/19 21:45,"429 West St, Portland, OR 97035" -154800,Wired Headphones,1,11.99,02/28/19 18:57,"720 Johnson St, Boston, MA 02215" -154801,USB-C Charging Cable,1,11.95,02/18/19 20:22,"185 Wilson St, Atlanta, GA 30301" -154802,Bose SoundSport Headphones,1,99.99,02/24/19 14:37,"181 Adams St, Portland, OR 97035" -154803,AA Batteries (4-pack),1,3.84,02/04/19 19:04,"141 River St, New York City, NY 10001" -154804,USB-C Charging Cable,1,11.95,02/21/19 18:41,"513 Johnson St, Los Angeles, CA 90001" -154805,Apple Airpods Headphones,1,150,02/04/19 13:30,"567 11th St, Austin, TX 73301" -154806,Apple Airpods Headphones,1,150,02/17/19 06:22,"773 Highland St, Atlanta, GA 30301" -154807,AA Batteries (4-pack),2,3.84,02/24/19 19:35,"337 Hickory St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -154808,Bose SoundSport Headphones,1,99.99,02/02/19 20:01,"475 Church St, Dallas, TX 75001" -154809,USB-C Charging Cable,2,11.95,02/07/19 11:07,"749 Cedar St, San Francisco, CA 94016" -154810,AAA Batteries (4-pack),1,2.99,02/22/19 19:51,"876 6th St, San Francisco, CA 94016" -154811,Wired Headphones,1,11.99,02/25/19 22:10,"637 Jefferson St, Seattle, WA 98101" -154812,Macbook Pro Laptop,1,1700,02/14/19 14:49,"443 9th St, Los Angeles, CA 90001" -154813,Wired Headphones,1,11.99,02/08/19 20:27,"297 Center St, San Francisco, CA 94016" -154814,AAA Batteries (4-pack),1,2.99,02/02/19 10:09,"80 Hickory St, Los Angeles, CA 90001" -154815,27in 4K Gaming Monitor,1,389.99,02/02/19 23:14,"725 Spruce St, New York City, NY 10001" -154816,Lightning Charging Cable,1,14.95,02/24/19 10:06,"663 Park St, New York City, NY 10001" -154817,USB-C Charging Cable,2,11.95,02/12/19 08:31,"720 6th St, San Francisco, CA 94016" -154818,Lightning Charging Cable,1,14.95,02/04/19 23:39,"521 Sunset St, Atlanta, GA 30301" -154819,USB-C Charging Cable,1,11.95,02/27/19 23:43,"436 Dogwood St, Los Angeles, CA 90001" -154820,Apple Airpods Headphones,1,150,02/18/19 21:06,"955 1st St, Dallas, TX 75001" -154821,Lightning Charging Cable,1,14.95,02/18/19 10:56,"662 Main St, New York City, NY 10001" -154822,USB-C Charging Cable,1,11.95,02/02/19 12:34,"32 Sunset St, Seattle, WA 98101" -154823,Macbook Pro Laptop,1,1700,02/05/19 23:56,"914 Dogwood St, Los Angeles, CA 90001" -154824,Apple Airpods Headphones,1,150,02/14/19 16:31,"501 River St, Boston, MA 02215" -154825,Bose SoundSport Headphones,1,99.99,02/06/19 13:14,"800 Adams St, Portland, OR 97035" -154826,iPhone,1,700,02/11/19 11:57,"799 Madison St, Atlanta, GA 30301" -154827,AA Batteries (4-pack),1,3.84,02/14/19 14:27,"121 11th St, Dallas, TX 75001" -154827,Apple Airpods Headphones,1,150,02/14/19 14:27,"121 11th St, Dallas, TX 75001" -154828,AA Batteries (4-pack),2,3.84,02/04/19 06:01,"841 Willow St, San Francisco, CA 94016" -154829,Google Phone,1,600,02/27/19 15:26,"955 5th St, Portland, ME 04101" -154830,AA Batteries (4-pack),1,3.84,02/03/19 13:44,"101 14th St, San Francisco, CA 94016" -154831,34in Ultrawide Monitor,1,379.99,02/13/19 15:08,"981 Elm St, San Francisco, CA 94016" -154832,Apple Airpods Headphones,1,150,02/09/19 14:14,"729 Hill St, New York City, NY 10001" -154833,AA Batteries (4-pack),1,3.84,02/06/19 11:12,"36 Spruce St, Boston, MA 02215" -154834,ThinkPad Laptop,1,999.99,02/15/19 13:50,"607 Hickory St, San Francisco, CA 94016" -154835,AAA Batteries (4-pack),2,2.99,02/17/19 07:53,"808 Meadow St, Los Angeles, CA 90001" -154836,Lightning Charging Cable,1,14.95,02/01/19 18:37,"191 11th St, Los Angeles, CA 90001" -154837,27in 4K Gaming Monitor,1,389.99,02/12/19 23:23,"777 Chestnut St, New York City, NY 10001" -154838,Google Phone,1,600,02/20/19 12:34,"972 North St, New York City, NY 10001" -154838,Bose SoundSport Headphones,1,99.99,02/20/19 12:34,"972 North St, New York City, NY 10001" -154839,AA Batteries (4-pack),1,3.84,02/11/19 17:49,"835 Ridge St, Portland, OR 97035" -154840,AAA Batteries (4-pack),1,2.99,02/10/19 18:58,"543 8th St, Seattle, WA 98101" -154841,Macbook Pro Laptop,1,1700,02/28/19 21:16,"538 6th St, New York City, NY 10001" -154842,USB-C Charging Cable,1,11.95,02/10/19 10:34,"245 11th St, San Francisco, CA 94016" -154843,Bose SoundSport Headphones,1,99.99,02/10/19 13:34,"22 8th St, New York City, NY 10001" -154844,Wired Headphones,1,11.99,02/16/19 21:42,"518 Park St, Atlanta, GA 30301" -154845,Lightning Charging Cable,1,14.95,02/09/19 10:00,"486 Highland St, Boston, MA 02215" -154846,34in Ultrawide Monitor,1,379.99,02/24/19 00:51,"254 Meadow St, Boston, MA 02215" -154847,AA Batteries (4-pack),1,3.84,02/03/19 13:24,"200 Main St, Dallas, TX 75001" -154848,Wired Headphones,2,11.99,02/16/19 12:05,"576 Hickory St, New York City, NY 10001" -154849,Wired Headphones,1,11.99,02/10/19 17:39,"743 Maple St, San Francisco, CA 94016" -154850,Lightning Charging Cable,1,14.95,02/22/19 15:17,"553 River St, San Francisco, CA 94016" -154851,AAA Batteries (4-pack),1,2.99,02/13/19 08:55,"370 4th St, Dallas, TX 75001" -154852,Lightning Charging Cable,1,14.95,02/16/19 17:48,"86 Highland St, Los Angeles, CA 90001" -154853,Bose SoundSport Headphones,1,99.99,02/20/19 16:24,"171 Jackson St, San Francisco, CA 94016" -154854,AAA Batteries (4-pack),2,2.99,02/23/19 10:13,"97 4th St, New York City, NY 10001" -154855,Wired Headphones,1,11.99,02/05/19 14:30,"473 Pine St, Dallas, TX 75001" -154856,USB-C Charging Cable,1,11.95,02/17/19 20:54,"196 Forest St, Los Angeles, CA 90001" -154857,AAA Batteries (4-pack),1,2.99,02/24/19 10:22,"414 Jackson St, Seattle, WA 98101" -154858,Lightning Charging Cable,1,14.95,02/13/19 14:49,"193 Maple St, San Francisco, CA 94016" -154859,AAA Batteries (4-pack),1,2.99,02/19/19 15:09,"326 Washington St, Seattle, WA 98101" -154860,27in FHD Monitor,1,149.99,02/21/19 05:31,"764 Ridge St, Portland, OR 97035" -154861,Wired Headphones,1,11.99,02/28/19 21:21,"225 4th St, Austin, TX 73301" -154862,Google Phone,1,600,02/06/19 20:00,"16 9th St, New York City, NY 10001" -154862,USB-C Charging Cable,1,11.95,02/06/19 20:00,"16 9th St, New York City, NY 10001" -154863,ThinkPad Laptop,1,999.99,02/15/19 17:55,"594 Cherry St, San Francisco, CA 94016" -154864,Wired Headphones,1,11.99,02/01/19 19:07,"158 West St, Boston, MA 02215" -154865,34in Ultrawide Monitor,1,379.99,02/19/19 16:20,"678 Lake St, Seattle, WA 98101" -154866,Wired Headphones,1,11.99,02/03/19 20:11,"13 South St, Atlanta, GA 30301" -154867,AA Batteries (4-pack),1,3.84,02/17/19 07:03,"950 South St, San Francisco, CA 94016" -154868,AAA Batteries (4-pack),1,2.99,02/15/19 21:45,"162 Pine St, Boston, MA 02215" -154869,AA Batteries (4-pack),1,3.84,02/04/19 16:38,"193 4th St, Boston, MA 02215" -154870,Lightning Charging Cable,1,14.95,02/04/19 19:06,"723 Church St, New York City, NY 10001" -154871,AA Batteries (4-pack),1,3.84,02/01/19 15:43,"927 14th St, Austin, TX 73301" -154872,Wired Headphones,1,11.99,02/04/19 20:46,"231 2nd St, Los Angeles, CA 90001" -154873,Bose SoundSport Headphones,1,99.99,02/28/19 23:23,"908 Highland St, Seattle, WA 98101" -154874,Lightning Charging Cable,1,14.95,02/08/19 19:09,"938 Cedar St, San Francisco, CA 94016" -154875,AAA Batteries (4-pack),1,2.99,02/25/19 00:01,"28 10th St, Atlanta, GA 30301" -154876,iPhone,1,700,02/24/19 15:03,"290 Cedar St, San Francisco, CA 94016" -154877,Wired Headphones,1,11.99,02/18/19 12:48,"602 12th St, Portland, OR 97035" -154878,Wired Headphones,1,11.99,02/26/19 21:15,"600 Johnson St, San Francisco, CA 94016" -154879,USB-C Charging Cable,2,11.95,02/18/19 12:20,"217 Lake St, Seattle, WA 98101" -154880,20in Monitor,1,109.99,02/22/19 17:13,"727 Willow St, Los Angeles, CA 90001" -154881,USB-C Charging Cable,1,11.95,02/20/19 18:23,"879 8th St, Atlanta, GA 30301" -154882,Flatscreen TV,1,300,02/02/19 17:42,"571 Adams St, Atlanta, GA 30301" -154883,Lightning Charging Cable,1,14.95,02/12/19 08:59,"439 Washington St, Dallas, TX 75001" -154884,AA Batteries (4-pack),1,3.84,02/21/19 08:15,"293 Chestnut St, San Francisco, CA 94016" -154885,Macbook Pro Laptop,1,1700,02/20/19 20:49,"57 Jackson St, Boston, MA 02215" -154886,ThinkPad Laptop,1,999.99,02/20/19 18:05,"413 Main St, San Francisco, CA 94016" -154887,AA Batteries (4-pack),1,3.84,02/08/19 09:32,"954 Spruce St, San Francisco, CA 94016" -154888,27in 4K Gaming Monitor,1,389.99,02/16/19 18:52,"156 Main St, Boston, MA 02215" -154889,Vareebadd Phone,1,400,02/13/19 14:44,"238 River St, Dallas, TX 75001" -154890,27in FHD Monitor,1,149.99,02/13/19 12:35,"259 Adams St, New York City, NY 10001" -154891,Lightning Charging Cable,1,14.95,02/24/19 16:24,"113 4th St, Boston, MA 02215" -154892,Wired Headphones,1,11.99,02/18/19 13:22,"169 5th St, Austin, TX 73301" -154893,Lightning Charging Cable,1,14.95,02/28/19 13:59,"756 Adams St, Boston, MA 02215" -154894,Apple Airpods Headphones,1,150,02/16/19 09:30,"931 2nd St, San Francisco, CA 94016" -154895,Flatscreen TV,1,300,02/14/19 10:16,"520 Lincoln St, Boston, MA 02215" -154896,27in 4K Gaming Monitor,1,389.99,02/27/19 16:58,"629 South St, Los Angeles, CA 90001" -154897,34in Ultrawide Monitor,1,379.99,02/07/19 16:48,"904 Pine St, Austin, TX 73301" -154898,Bose SoundSport Headphones,1,99.99,02/14/19 21:50,"855 Jackson St, Atlanta, GA 30301" -154899,AA Batteries (4-pack),2,3.84,02/06/19 17:52,"277 12th St, Dallas, TX 75001" -154900,Bose SoundSport Headphones,1,99.99,02/14/19 20:15,"380 Lincoln St, Atlanta, GA 30301" -154901,Apple Airpods Headphones,1,150,02/19/19 10:45,"42 Spruce St, Atlanta, GA 30301" -154902,Apple Airpods Headphones,1,150,02/28/19 22:52,"289 West St, Atlanta, GA 30301" -154903,USB-C Charging Cable,1,11.95,02/27/19 18:44,"640 10th St, Dallas, TX 75001" -154904,Apple Airpods Headphones,1,150,02/05/19 19:23,"939 Dogwood St, Portland, OR 97035" -154905,34in Ultrawide Monitor,1,379.99,02/25/19 13:14,"113 10th St, Boston, MA 02215" -154906,iPhone,1,700,02/14/19 14:01,"220 Hickory St, New York City, NY 10001" -154907,Wired Headphones,1,11.99,02/13/19 15:25,"373 Maple St, New York City, NY 10001" -154908,27in FHD Monitor,1,149.99,02/24/19 21:59,"639 Hill St, New York City, NY 10001" -154909,Lightning Charging Cable,1,14.95,02/24/19 02:54,"821 2nd St, Portland, OR 97035" -154910,USB-C Charging Cable,2,11.95,02/17/19 12:50,"595 9th St, Atlanta, GA 30301" -154911,Bose SoundSport Headphones,1,99.99,02/24/19 01:27,"230 Lake St, Los Angeles, CA 90001" -154912,Wired Headphones,1,11.99,02/02/19 13:44,"843 Cedar St, San Francisco, CA 94016" -154913,AA Batteries (4-pack),1,3.84,02/01/19 10:16,"582 Maple St, San Francisco, CA 94016" -154914,20in Monitor,1,109.99,02/08/19 12:27,"902 Center St, Los Angeles, CA 90001" -,,,,, -154915,AA Batteries (4-pack),2,3.84,02/25/19 21:33,"945 Washington St, Atlanta, GA 30301" -154916,AAA Batteries (4-pack),2,2.99,02/07/19 08:20,"948 West St, San Francisco, CA 94016" -154917,Lightning Charging Cable,1,14.95,02/16/19 18:26,"484 Dogwood St, Los Angeles, CA 90001" -154918,Apple Airpods Headphones,1,150,02/21/19 20:45,"106 River St, San Francisco, CA 94016" -154919,LG Washing Machine,1,600.0,02/01/19 21:26,"588 Lincoln St, New York City, NY 10001" -154920,USB-C Charging Cable,1,11.95,02/04/19 11:25,"648 North St, New York City, NY 10001" -154921,Wired Headphones,1,11.99,02/20/19 06:44,"87 West St, Dallas, TX 75001" -154922,AAA Batteries (4-pack),1,2.99,02/25/19 22:52,"672 Cherry St, Boston, MA 02215" -154923,USB-C Charging Cable,1,11.95,02/08/19 14:51,"694 Spruce St, New York City, NY 10001" -154924,USB-C Charging Cable,1,11.95,02/16/19 10:57,"33 Jackson St, Portland, OR 97035" -154925,iPhone,1,700,02/07/19 21:29,"695 Jackson St, Los Angeles, CA 90001" -154925,Wired Headphones,1,11.99,02/07/19 21:29,"695 Jackson St, Los Angeles, CA 90001" -154926,Apple Airpods Headphones,1,150,02/10/19 14:24,"737 Sunset St, Los Angeles, CA 90001" -154927,Apple Airpods Headphones,1,150,02/16/19 07:57,"549 North St, San Francisco, CA 94016" -154928,Lightning Charging Cable,2,14.95,02/05/19 10:00,"405 Johnson St, Seattle, WA 98101" -154929,Flatscreen TV,1,300,02/10/19 16:51,"722 South St, San Francisco, CA 94016" -154930,27in FHD Monitor,1,149.99,02/10/19 14:44,"708 13th St, Seattle, WA 98101" -154931,AAA Batteries (4-pack),1,2.99,02/07/19 10:28,"301 Center St, Portland, OR 97035" -154932,Bose SoundSport Headphones,1,99.99,02/18/19 16:36,"449 Park St, Portland, OR 97035" -154933,Bose SoundSport Headphones,1,99.99,02/06/19 21:09,"850 Park St, San Francisco, CA 94016" -154934,Wired Headphones,1,11.99,02/01/19 11:49,"166 14th St, San Francisco, CA 94016" -154935,Bose SoundSport Headphones,1,99.99,02/11/19 21:28,"731 Johnson St, Portland, OR 97035" -154936,Flatscreen TV,1,300,02/28/19 22:58,"446 Center St, Boston, MA 02215" -154937,USB-C Charging Cable,1,11.95,02/11/19 07:42,"603 6th St, Boston, MA 02215" -154938,Bose SoundSport Headphones,1,99.99,02/25/19 19:50,"875 Spruce St, New York City, NY 10001" -154939,20in Monitor,1,109.99,02/15/19 13:07,"470 Adams St, Los Angeles, CA 90001" -154940,Lightning Charging Cable,1,14.95,02/10/19 19:17,"590 Walnut St, Dallas, TX 75001" -154941,Wired Headphones,1,11.99,02/03/19 12:45,"284 11th St, San Francisco, CA 94016" -154942,USB-C Charging Cable,1,11.95,02/17/19 15:47,"767 12th St, San Francisco, CA 94016" -154943,AA Batteries (4-pack),1,3.84,02/08/19 17:22,"306 Church St, Dallas, TX 75001" -154943,34in Ultrawide Monitor,1,379.99,02/08/19 17:22,"306 Church St, Dallas, TX 75001" -154944,Wired Headphones,1,11.99,02/17/19 09:30,"837 Forest St, New York City, NY 10001" -154945,Bose SoundSport Headphones,1,99.99,02/28/19 10:04,"920 Jackson St, Boston, MA 02215" -154946,34in Ultrawide Monitor,1,379.99,02/08/19 15:10,"930 Washington St, Austin, TX 73301" -154947,34in Ultrawide Monitor,1,379.99,02/05/19 17:51,"757 4th St, San Francisco, CA 94016" -154948,Apple Airpods Headphones,1,150,02/04/19 15:46,"229 Sunset St, Seattle, WA 98101" -154949,LG Dryer,1,600.0,02/15/19 23:03,"508 9th St, New York City, NY 10001" -154950,AA Batteries (4-pack),1,3.84,02/20/19 17:07,"9 Forest St, Dallas, TX 75001" -154951,Wired Headphones,1,11.99,02/26/19 22:15,"859 Maple St, Austin, TX 73301" -154952,AAA Batteries (4-pack),1,2.99,02/23/19 10:33,"102 Johnson St, Portland, OR 97035" -154953,USB-C Charging Cable,1,11.95,02/19/19 02:14,"772 6th St, Boston, MA 02215" -154954,Lightning Charging Cable,1,14.95,02/15/19 20:30,"818 Elm St, Los Angeles, CA 90001" -154955,Lightning Charging Cable,1,14.95,02/04/19 11:31,"664 5th St, Los Angeles, CA 90001" -154956,Google Phone,1,600,02/02/19 17:34,"412 1st St, Atlanta, GA 30301" -154957,AAA Batteries (4-pack),1,2.99,02/06/19 10:49,"850 South St, Atlanta, GA 30301" -154958,Wired Headphones,1,11.99,02/07/19 19:31,"594 1st St, Boston, MA 02215" -154959,Apple Airpods Headphones,1,150,02/19/19 12:08,"141 Highland St, Atlanta, GA 30301" -154960,iPhone,1,700,02/26/19 14:50,"223 Church St, Austin, TX 73301" -154961,20in Monitor,1,109.99,02/17/19 21:55,"665 Willow St, San Francisco, CA 94016" -154962,27in 4K Gaming Monitor,1,389.99,02/03/19 19:54,"520 8th St, San Francisco, CA 94016" -154963,Wired Headphones,1,11.99,02/10/19 22:47,"821 Spruce St, Atlanta, GA 30301" -154964,AA Batteries (4-pack),1,3.84,02/25/19 20:59,"463 14th St, Boston, MA 02215" -154965,AA Batteries (4-pack),1,3.84,02/01/19 19:03,"656 Sunset St, Atlanta, GA 30301" -154966,34in Ultrawide Monitor,1,379.99,02/05/19 09:52,"395 Sunset St, Dallas, TX 75001" -154967,Bose SoundSport Headphones,1,99.99,02/03/19 23:49,"644 Main St, Los Angeles, CA 90001" -154968,Wired Headphones,1,11.99,02/03/19 11:51,"350 Ridge St, Austin, TX 73301" -154969,27in 4K Gaming Monitor,1,389.99,02/11/19 19:38,"983 13th St, Boston, MA 02215" -154970,USB-C Charging Cable,1,11.95,02/09/19 13:05,"906 Johnson St, Portland, OR 97035" -154971,Bose SoundSport Headphones,1,99.99,02/22/19 20:26,"435 Johnson St, Los Angeles, CA 90001" -154972,Google Phone,1,600,02/18/19 20:16,"178 Cedar St, Austin, TX 73301" -154973,AAA Batteries (4-pack),1,2.99,02/20/19 15:05,"736 Adams St, Atlanta, GA 30301" -154974,27in 4K Gaming Monitor,1,389.99,02/08/19 10:07,"767 Walnut St, San Francisco, CA 94016" -154975,Lightning Charging Cable,1,14.95,02/23/19 03:55,"887 Jefferson St, Dallas, TX 75001" -154976,Apple Airpods Headphones,1,150,02/28/19 07:54,"473 Johnson St, Atlanta, GA 30301" -154977,USB-C Charging Cable,1,11.95,02/25/19 13:20,"658 6th St, Seattle, WA 98101" -154978,Apple Airpods Headphones,1,150,02/23/19 20:07,"383 Johnson St, Austin, TX 73301" -154979,Lightning Charging Cable,1,14.95,02/19/19 09:31,"224 Wilson St, San Francisco, CA 94016" -154980,Lightning Charging Cable,1,14.95,02/13/19 16:21,"12 10th St, Atlanta, GA 30301" -154981,27in 4K Gaming Monitor,1,389.99,02/16/19 13:38,"421 6th St, Seattle, WA 98101" -154982,Wired Headphones,1,11.99,02/04/19 21:39,"202 Church St, Boston, MA 02215" -154983,Macbook Pro Laptop,1,1700,02/27/19 21:14,"634 11th St, New York City, NY 10001" -154984,iPhone,1,700,02/05/19 16:45,"573 Lake St, Seattle, WA 98101" -154985,Apple Airpods Headphones,1,150,02/10/19 19:04,"267 Pine St, Los Angeles, CA 90001" -154986,Lightning Charging Cable,1,14.95,02/17/19 15:05,"492 Pine St, New York City, NY 10001" -154987,AAA Batteries (4-pack),1,2.99,02/24/19 20:30,"270 Main St, Portland, OR 97035" -154988,USB-C Charging Cable,1,11.95,02/03/19 19:38,"300 Hill St, Seattle, WA 98101" -154989,Google Phone,1,600,02/09/19 14:24,"961 Jefferson St, San Francisco, CA 94016" -154989,USB-C Charging Cable,1,11.95,02/09/19 14:24,"961 Jefferson St, San Francisco, CA 94016" -154989,Bose SoundSport Headphones,1,99.99,02/09/19 14:24,"961 Jefferson St, San Francisco, CA 94016" -154990,Lightning Charging Cable,1,14.95,02/24/19 15:25,"769 Pine St, San Francisco, CA 94016" -154991,iPhone,1,700,02/01/19 15:36,"160 Center St, Los Angeles, CA 90001" -154992,AA Batteries (4-pack),2,3.84,02/02/19 21:38,"238 Lincoln St, Portland, OR 97035" -154993,AAA Batteries (4-pack),4,2.99,02/06/19 19:52,"104 Pine St, Boston, MA 02215" -154994,Bose SoundSport Headphones,1,99.99,02/20/19 17:53,"500 Jackson St, Los Angeles, CA 90001" -154995,Macbook Pro Laptop,1,1700,02/22/19 17:58,"285 4th St, San Francisco, CA 94016" -154996,Apple Airpods Headphones,1,150,02/17/19 09:00,"271 7th St, San Francisco, CA 94016" -154997,USB-C Charging Cable,1,11.95,02/27/19 06:17,"527 Hill St, Boston, MA 02215" -154998,AA Batteries (4-pack),1,3.84,02/06/19 01:05,"121 10th St, Los Angeles, CA 90001" -154999,Lightning Charging Cable,1,14.95,02/10/19 19:37,"574 Maple St, Atlanta, GA 30301" -155000,27in FHD Monitor,1,149.99,02/03/19 09:12,"747 1st St, Boston, MA 02215" -155001,AAA Batteries (4-pack),1,2.99,02/04/19 20:06,"704 Park St, San Francisco, CA 94016" -155002,AAA Batteries (4-pack),1,2.99,02/14/19 17:39,"779 Pine St, Dallas, TX 75001" -155003,ThinkPad Laptop,1,999.99,02/25/19 13:26,"753 Meadow St, New York City, NY 10001" -155004,Flatscreen TV,1,300,02/06/19 13:54,"244 Madison St, Boston, MA 02215" -155005,Apple Airpods Headphones,1,150,02/25/19 12:27,"118 Walnut St, San Francisco, CA 94016" -155006,Apple Airpods Headphones,1,150,02/25/19 18:21,"792 5th St, New York City, NY 10001" -155007,Wired Headphones,1,11.99,02/02/19 08:48,"157 Lake St, Boston, MA 02215" -155008,Lightning Charging Cable,2,14.95,02/17/19 11:08,"209 14th St, Atlanta, GA 30301" -155009,34in Ultrawide Monitor,1,379.99,02/04/19 21:34,"780 4th St, Seattle, WA 98101" -155010,AAA Batteries (4-pack),1,2.99,02/08/19 09:05,"561 10th St, San Francisco, CA 94016" -155011,Wired Headphones,2,11.99,02/22/19 11:39,"458 Adams St, Portland, OR 97035" -155012,34in Ultrawide Monitor,1,379.99,02/01/19 20:11,"697 Church St, Dallas, TX 75001" -155013,AAA Batteries (4-pack),2,2.99,02/02/19 13:29,"884 Hill St, New York City, NY 10001" -155014,iPhone,1,700,02/03/19 12:13,"755 9th St, Los Angeles, CA 90001" -155015,Lightning Charging Cable,2,14.95,02/13/19 10:55,"868 Maple St, San Francisco, CA 94016" -155016,Bose SoundSport Headphones,1,99.99,02/02/19 14:09,"444 North St, New York City, NY 10001" -155017,Wired Headphones,1,11.99,02/21/19 13:01,"768 Meadow St, San Francisco, CA 94016" -155018,AAA Batteries (4-pack),2,2.99,02/28/19 07:02,"393 7th St, San Francisco, CA 94016" -155019,Apple Airpods Headphones,1,150,02/03/19 09:57,"530 Maple St, Los Angeles, CA 90001" -155020,Wired Headphones,1,11.99,02/24/19 16:29,"731 Adams St, Austin, TX 73301" -155021,Bose SoundSport Headphones,1,99.99,02/08/19 16:04,"707 Willow St, Dallas, TX 75001" -155022,Bose SoundSport Headphones,1,99.99,02/14/19 21:39,"614 14th St, New York City, NY 10001" -155023,Lightning Charging Cable,1,14.95,02/24/19 22:31,"327 14th St, San Francisco, CA 94016" -155024,Lightning Charging Cable,1,14.95,02/03/19 14:29,"68 West St, Austin, TX 73301" -155025,Wired Headphones,1,11.99,02/27/19 14:38,"624 Lincoln St, Boston, MA 02215" -155026,AAA Batteries (4-pack),3,2.99,02/23/19 12:02,"436 Jefferson St, San Francisco, CA 94016" -155027,AAA Batteries (4-pack),1,2.99,02/25/19 21:26,"280 Lake St, Boston, MA 02215" -155028,Lightning Charging Cable,1,14.95,02/16/19 21:46,"814 2nd St, Dallas, TX 75001" -155029,27in 4K Gaming Monitor,1,389.99,02/11/19 20:47,"591 Madison St, New York City, NY 10001" -155030,AAA Batteries (4-pack),1,2.99,02/24/19 19:21,"194 6th St, New York City, NY 10001" -155031,Lightning Charging Cable,1,14.95,02/15/19 06:52,"805 Ridge St, Austin, TX 73301" -155031,Lightning Charging Cable,2,14.95,02/15/19 06:52,"805 Ridge St, Austin, TX 73301" -155032,34in Ultrawide Monitor,1,379.99,02/18/19 18:31,"355 Main St, Los Angeles, CA 90001" -155033,Macbook Pro Laptop,1,1700,02/23/19 11:57,"765 Forest St, Austin, TX 73301" -155034,USB-C Charging Cable,2,11.95,02/18/19 16:48,"979 Main St, Boston, MA 02215" -155035,Wired Headphones,1,11.99,02/20/19 15:29,"407 Sunset St, Seattle, WA 98101" -155036,iPhone,1,700,02/14/19 21:35,"180 North St, Los Angeles, CA 90001" -155037,Wired Headphones,1,11.99,02/02/19 22:09,"798 6th St, San Francisco, CA 94016" -155038,Macbook Pro Laptop,1,1700,02/04/19 14:11,"701 Sunset St, Seattle, WA 98101" -155039,Flatscreen TV,1,300,02/09/19 21:26,"84 Adams St, Dallas, TX 75001" -155040,Wired Headphones,1,11.99,02/02/19 21:32,"612 Chestnut St, Portland, OR 97035" -155041,Google Phone,1,600,02/28/19 04:49,"844 Jefferson St, Seattle, WA 98101" -155041,Bose SoundSport Headphones,1,99.99,02/28/19 04:49,"844 Jefferson St, Seattle, WA 98101" -155042,Flatscreen TV,1,300,02/25/19 20:28,"452 Meadow St, San Francisco, CA 94016" -155043,USB-C Charging Cable,1,11.95,02/09/19 15:53,"49 Cherry St, Dallas, TX 75001" -155044,USB-C Charging Cable,1,11.95,02/06/19 14:55,"858 Ridge St, San Francisco, CA 94016" -155045,AA Batteries (4-pack),1,3.84,02/06/19 19:09,"825 Adams St, Portland, OR 97035" -155046,Macbook Pro Laptop,1,1700,02/06/19 21:28,"417 14th St, Seattle, WA 98101" -155047,AAA Batteries (4-pack),1,2.99,02/15/19 19:31,"291 1st St, Los Angeles, CA 90001" -155048,34in Ultrawide Monitor,1,379.99,02/09/19 12:12,"257 Sunset St, Boston, MA 02215" -155049,Apple Airpods Headphones,1,150,02/21/19 09:42,"803 Jackson St, Los Angeles, CA 90001" -155050,27in 4K Gaming Monitor,1,389.99,02/14/19 11:42,"400 10th St, New York City, NY 10001" -155051,Bose SoundSport Headphones,1,99.99,02/28/19 14:22,"271 13th St, Portland, ME 04101" -155052,Flatscreen TV,1,300,02/24/19 09:52,"997 Elm St, Boston, MA 02215" -155053,Google Phone,1,600,02/16/19 08:12,"105 Spruce St, New York City, NY 10001" -155053,Bose SoundSport Headphones,1,99.99,02/16/19 08:12,"105 Spruce St, New York City, NY 10001" -155053,Wired Headphones,1,11.99,02/16/19 08:12,"105 Spruce St, New York City, NY 10001" -155054,USB-C Charging Cable,1,11.95,02/05/19 13:44,"485 7th St, Dallas, TX 75001" -155055,Bose SoundSport Headphones,1,99.99,02/20/19 21:29,"17 Maple St, New York City, NY 10001" -155056,Lightning Charging Cable,1,14.95,02/01/19 18:03,"522 Wilson St, Boston, MA 02215" -155057,Vareebadd Phone,1,400,02/12/19 20:58,"88 Lake St, New York City, NY 10001" -155057,USB-C Charging Cable,1,11.95,02/12/19 20:58,"88 Lake St, New York City, NY 10001" -155058,AA Batteries (4-pack),1,3.84,02/26/19 13:59,"125 West St, New York City, NY 10001" -155059,Lightning Charging Cable,1,14.95,02/25/19 16:19,"654 Sunset St, Atlanta, GA 30301" -155060,AAA Batteries (4-pack),1,2.99,02/25/19 14:02,"575 Johnson St, San Francisco, CA 94016" -155061,Flatscreen TV,1,300,02/14/19 12:25,"49 13th St, San Francisco, CA 94016" -155062,Lightning Charging Cable,1,14.95,02/13/19 14:17,"260 9th St, Portland, OR 97035" -155063,Apple Airpods Headphones,1,150,02/24/19 14:44,"922 Wilson St, New York City, NY 10001" -155064,AAA Batteries (4-pack),3,2.99,02/12/19 20:24,"681 Willow St, Boston, MA 02215" -155065,Google Phone,1,600,02/09/19 21:18,"875 11th St, Seattle, WA 98101" -155066,AAA Batteries (4-pack),2,2.99,02/22/19 18:52,"715 Jackson St, Los Angeles, CA 90001" -155067,34in Ultrawide Monitor,1,379.99,02/22/19 11:14,"764 Willow St, San Francisco, CA 94016" -155068,AA Batteries (4-pack),1,3.84,02/18/19 11:19,"40 Hickory St, New York City, NY 10001" -155069,27in 4K Gaming Monitor,1,389.99,02/19/19 21:24,"259 South St, Boston, MA 02215" -155070,ThinkPad Laptop,1,999.99,02/23/19 10:06,"732 Lincoln St, Seattle, WA 98101" -155071,Vareebadd Phone,1,400,02/10/19 17:05,"842 Adams St, San Francisco, CA 94016" -155071,USB-C Charging Cable,1,11.95,02/10/19 17:05,"842 Adams St, San Francisco, CA 94016" -155072,Apple Airpods Headphones,1,150,02/18/19 13:22,"866 5th St, New York City, NY 10001" -155073,34in Ultrawide Monitor,1,379.99,02/04/19 12:34,"450 Cherry St, New York City, NY 10001" -155074,Lightning Charging Cable,1,14.95,02/07/19 20:30,"405 6th St, Austin, TX 73301" -155075,Apple Airpods Headphones,1,150,02/16/19 14:43,"598 Jefferson St, Boston, MA 02215" -155076,Wired Headphones,1,11.99,02/22/19 22:39,"609 Park St, Dallas, TX 75001" -155077,Lightning Charging Cable,1,14.95,02/19/19 07:10,"79 Jefferson St, New York City, NY 10001" -155078,27in 4K Gaming Monitor,1,389.99,02/11/19 23:03,"78 Jefferson St, Boston, MA 02215" -155079,Macbook Pro Laptop,1,1700,02/16/19 22:05,"648 North St, Atlanta, GA 30301" -155080,Wired Headphones,1,11.99,02/07/19 10:40,"19 7th St, Los Angeles, CA 90001" -155081,Lightning Charging Cable,1,14.95,02/02/19 19:41,"141 Madison St, Austin, TX 73301" -155082,Lightning Charging Cable,1,14.95,02/09/19 17:59,"853 6th St, New York City, NY 10001" -155083,34in Ultrawide Monitor,1,379.99,02/07/19 00:06,"849 Sunset St, San Francisco, CA 94016" -155084,ThinkPad Laptop,1,999.99,02/13/19 19:29,"729 Ridge St, New York City, NY 10001" -155085,AAA Batteries (4-pack),1,2.99,02/13/19 14:47,"671 Madison St, Austin, TX 73301" -155086,34in Ultrawide Monitor,1,379.99,02/04/19 11:37,"594 Cherry St, Boston, MA 02215" -155087,AAA Batteries (4-pack),1,2.99,02/11/19 00:22,"124 13th St, Los Angeles, CA 90001" -155088,Wired Headphones,1,11.99,02/09/19 08:06,"638 Cedar St, Dallas, TX 75001" -155089,34in Ultrawide Monitor,1,379.99,02/23/19 20:23,"856 Sunset St, Dallas, TX 75001" -155090,AA Batteries (4-pack),2,3.84,02/08/19 07:09,"213 5th St, Seattle, WA 98101" -155091,AA Batteries (4-pack),1,3.84,02/11/19 08:25,"686 Lake St, Los Angeles, CA 90001" -155092,Wired Headphones,1,11.99,02/04/19 10:20,"180 Cherry St, New York City, NY 10001" -155093,Bose SoundSport Headphones,1,99.99,02/26/19 18:46,"779 9th St, Austin, TX 73301" -155094,AAA Batteries (4-pack),2,2.99,02/17/19 12:05,"290 Park St, San Francisco, CA 94016" -155095,Bose SoundSport Headphones,1,99.99,02/28/19 06:59,"694 North St, New York City, NY 10001" -155096,Wired Headphones,1,11.99,02/28/19 21:28,"753 Church St, Seattle, WA 98101" -155097,20in Monitor,1,109.99,02/07/19 10:32,"943 Wilson St, Portland, OR 97035" -155098,AAA Batteries (4-pack),1,2.99,02/13/19 11:27,"747 Lincoln St, Los Angeles, CA 90001" -155099,AA Batteries (4-pack),3,3.84,02/21/19 09:51,"156 Cedar St, Los Angeles, CA 90001" -155100,AA Batteries (4-pack),1,3.84,02/08/19 23:28,"894 11th St, San Francisco, CA 94016" -155101,USB-C Charging Cable,1,11.95,02/16/19 22:11,"521 5th St, Austin, TX 73301" -155102,Macbook Pro Laptop,1,1700,02/05/19 06:08,"880 Jackson St, San Francisco, CA 94016" -155103,AAA Batteries (4-pack),2,2.99,02/18/19 12:11,"619 Church St, San Francisco, CA 94016" -155104,Lightning Charging Cable,2,14.95,02/21/19 18:53,"422 7th St, New York City, NY 10001" -155105,USB-C Charging Cable,1,11.95,02/18/19 20:13,"768 Cherry St, Seattle, WA 98101" -155106,Bose SoundSport Headphones,1,99.99,02/18/19 17:58,"761 12th St, San Francisco, CA 94016" -155107,27in FHD Monitor,1,149.99,02/07/19 21:47,"824 Adams St, Los Angeles, CA 90001" -155108,ThinkPad Laptop,1,999.99,02/22/19 17:22,"145 Hill St, Seattle, WA 98101" -155109,27in 4K Gaming Monitor,1,389.99,02/17/19 10:26,"734 Ridge St, Seattle, WA 98101" -155110,ThinkPad Laptop,1,999.99,02/15/19 12:05,"520 Adams St, New York City, NY 10001" -155111,Apple Airpods Headphones,1,150,02/07/19 12:07,"447 Hill St, San Francisco, CA 94016" -155112,AAA Batteries (4-pack),4,2.99,02/08/19 12:18,"525 14th St, New York City, NY 10001" -155113,Wired Headphones,1,11.99,02/09/19 11:57,"478 6th St, San Francisco, CA 94016" -155114,Wired Headphones,1,11.99,02/08/19 16:27,"606 2nd St, Boston, MA 02215" -155115,34in Ultrawide Monitor,1,379.99,02/05/19 12:53,"625 Lake St, Los Angeles, CA 90001" -155116,34in Ultrawide Monitor,1,379.99,02/20/19 21:29,"658 Cedar St, Austin, TX 73301" -155117,Wired Headphones,1,11.99,02/20/19 10:49,"773 Washington St, San Francisco, CA 94016" -155117,Lightning Charging Cable,1,14.95,02/20/19 10:49,"773 Washington St, San Francisco, CA 94016" -155118,Flatscreen TV,1,300,02/02/19 15:05,"816 Chestnut St, Los Angeles, CA 90001" -155119,AAA Batteries (4-pack),1,2.99,02/27/19 11:44,"92 Adams St, Boston, MA 02215" -155120,ThinkPad Laptop,1,999.99,02/04/19 14:03,"833 Madison St, Los Angeles, CA 90001" -155121,Flatscreen TV,1,300,02/21/19 16:49,"450 Forest St, Boston, MA 02215" -155122,USB-C Charging Cable,1,11.95,02/12/19 14:03,"639 5th St, Portland, OR 97035" -155123,AA Batteries (4-pack),1,3.84,02/11/19 17:49,"742 Lakeview St, San Francisco, CA 94016" -155124,AA Batteries (4-pack),1,3.84,02/10/19 09:51,"947 West St, Seattle, WA 98101" -155125,27in FHD Monitor,1,149.99,02/14/19 22:31,"239 South St, New York City, NY 10001" -155126,Vareebadd Phone,1,400,02/15/19 19:39,"522 Walnut St, Portland, OR 97035" -155127,ThinkPad Laptop,1,999.99,02/13/19 17:21,"505 1st St, Boston, MA 02215" -155128,iPhone,1,700,02/04/19 15:15,"274 Chestnut St, Los Angeles, CA 90001" -155129,ThinkPad Laptop,1,999.99,02/18/19 23:28,"911 Sunset St, San Francisco, CA 94016" -155130,AAA Batteries (4-pack),3,2.99,02/21/19 19:49,"246 Maple St, New York City, NY 10001" -155130,AA Batteries (4-pack),1,3.84,02/21/19 19:49,"246 Maple St, New York City, NY 10001" -155131,Wired Headphones,1,11.99,02/27/19 15:22,"132 River St, Austin, TX 73301" -155132,AAA Batteries (4-pack),1,2.99,02/04/19 10:41,"760 Willow St, Los Angeles, CA 90001" -155133,Google Phone,1,600,02/06/19 12:47,"213 Spruce St, Dallas, TX 75001" -155134,27in FHD Monitor,1,149.99,02/27/19 16:37,"683 West St, San Francisco, CA 94016" -155135,Bose SoundSport Headphones,1,99.99,02/12/19 00:25,"473 River St, Austin, TX 73301" -155136,Wired Headphones,1,11.99,02/02/19 19:40,"619 Sunset St, Dallas, TX 75001" -155137,Lightning Charging Cable,1,14.95,02/25/19 23:32,"136 Sunset St, Boston, MA 02215" -155138,Apple Airpods Headphones,1,150,02/07/19 07:21,"418 Cherry St, Boston, MA 02215" -155139,AA Batteries (4-pack),1,3.84,02/06/19 10:03,"334 12th St, San Francisco, CA 94016" -155140,Apple Airpods Headphones,1,150,02/05/19 05:18,"471 Forest St, New York City, NY 10001" -155141,Wired Headphones,1,11.99,02/17/19 22:10,"758 Maple St, Atlanta, GA 30301" -155142,AA Batteries (4-pack),3,3.84,02/28/19 15:42,"789 Sunset St, Dallas, TX 75001" -155143,Wired Headphones,1,11.99,02/22/19 08:16,"60 North St, Los Angeles, CA 90001" -155144,AAA Batteries (4-pack),2,2.99,02/27/19 18:38,"681 North St, New York City, NY 10001" -155145,AAA Batteries (4-pack),3,2.99,02/08/19 19:39,"413 1st St, Austin, TX 73301" -155146,27in 4K Gaming Monitor,1,389.99,02/24/19 21:38,"898 Johnson St, Dallas, TX 75001" -155147,Flatscreen TV,1,300,02/27/19 10:44,"651 Forest St, San Francisco, CA 94016" -155148,Apple Airpods Headphones,1,150,02/06/19 06:33,"692 2nd St, Boston, MA 02215" -155149,Apple Airpods Headphones,1,150,02/09/19 20:01,"471 11th St, San Francisco, CA 94016" -155150,Apple Airpods Headphones,1,150,02/01/19 07:57,"738 Walnut St, San Francisco, CA 94016" -155151,34in Ultrawide Monitor,1,379.99,02/12/19 13:32,"22 Lakeview St, Austin, TX 73301" -155152,34in Ultrawide Monitor,1,379.99,02/24/19 04:51,"684 Lincoln St, Atlanta, GA 30301" -155153,USB-C Charging Cable,1,11.95,02/20/19 00:33,"997 Wilson St, New York City, NY 10001" -155154,AA Batteries (4-pack),1,3.84,02/04/19 13:17,"930 Walnut St, Boston, MA 02215" -155155,Lightning Charging Cable,1,14.95,02/19/19 10:08,"729 Washington St, Austin, TX 73301" -155156,Lightning Charging Cable,1,14.95,02/24/19 07:50,"721 2nd St, Los Angeles, CA 90001" -155157,Flatscreen TV,1,300,02/22/19 21:32,"902 8th St, Seattle, WA 98101" -155158,ThinkPad Laptop,1,999.99,02/20/19 16:19,"27 Lincoln St, Boston, MA 02215" -155159,USB-C Charging Cable,1,11.95,02/06/19 22:10,"34 Hill St, San Francisco, CA 94016" -155160,34in Ultrawide Monitor,1,379.99,02/11/19 00:59,"191 Walnut St, Dallas, TX 75001" -155161,27in 4K Gaming Monitor,1,389.99,02/17/19 14:58,"477 Adams St, San Francisco, CA 94016" -155162,34in Ultrawide Monitor,1,379.99,02/24/19 13:53,"418 Highland St, Los Angeles, CA 90001" -155163,Google Phone,1,600,02/26/19 14:32,"361 13th St, New York City, NY 10001" -155164,Vareebadd Phone,1,400,02/06/19 17:27,"828 11th St, Los Angeles, CA 90001" -155165,AAA Batteries (4-pack),1,2.99,02/16/19 14:09,"668 Pine St, San Francisco, CA 94016" -155166,Flatscreen TV,1,300,02/14/19 20:33,"110 Church St, Atlanta, GA 30301" -155167,27in 4K Gaming Monitor,1,389.99,02/09/19 13:30,"861 1st St, Atlanta, GA 30301" -155168,AA Batteries (4-pack),1,3.84,02/21/19 17:01,"642 Hickory St, New York City, NY 10001" -155169,Apple Airpods Headphones,1,150,02/10/19 13:38,"508 2nd St, Los Angeles, CA 90001" -155170,USB-C Charging Cable,1,11.95,02/01/19 22:50,"317 Cedar St, San Francisco, CA 94016" -155171,iPhone,1,700,02/21/19 19:12,"798 4th St, Dallas, TX 75001" -155172,AAA Batteries (4-pack),1,2.99,02/12/19 19:58,"53 Spruce St, Portland, OR 97035" -155173,AA Batteries (4-pack),2,3.84,02/07/19 10:16,"283 Spruce St, New York City, NY 10001" -155174,34in Ultrawide Monitor,1,379.99,02/27/19 09:30,"63 Jefferson St, San Francisco, CA 94016" -155175,Apple Airpods Headphones,1,150,02/13/19 16:28,"733 Hickory St, New York City, NY 10001" -155176,34in Ultrawide Monitor,1,379.99,02/28/19 01:03,"858 8th St, San Francisco, CA 94016" -155177,34in Ultrawide Monitor,1,379.99,02/26/19 18:18,"851 2nd St, Seattle, WA 98101" -155178,Flatscreen TV,1,300,02/08/19 20:21,"541 South St, Los Angeles, CA 90001" -155179,Apple Airpods Headphones,1,150,02/02/19 22:39,"337 14th St, New York City, NY 10001" -155180,LG Washing Machine,1,600.0,02/24/19 15:48,"3 6th St, New York City, NY 10001" -155181,Lightning Charging Cable,1,14.95,02/06/19 18:30,"80 Jackson St, Dallas, TX 75001" -155182,34in Ultrawide Monitor,1,379.99,02/06/19 23:40,"701 Walnut St, Los Angeles, CA 90001" -155183,USB-C Charging Cable,1,11.95,02/27/19 10:23,"738 Center St, New York City, NY 10001" -155184,USB-C Charging Cable,1,11.95,02/17/19 16:51,"303 6th St, Boston, MA 02215" -155185,27in FHD Monitor,1,149.99,02/20/19 22:21,"779 Church St, San Francisco, CA 94016" -155185,Macbook Pro Laptop,1,1700,02/20/19 22:21,"779 Church St, San Francisco, CA 94016" -155186,Flatscreen TV,1,300,02/07/19 17:42,"778 10th St, San Francisco, CA 94016" -155187,Apple Airpods Headphones,1,150,02/08/19 17:28,"337 Maple St, New York City, NY 10001" -155188,Macbook Pro Laptop,1,1700,02/25/19 11:26,"566 Dogwood St, Los Angeles, CA 90001" -155189,ThinkPad Laptop,1,999.99,02/20/19 22:15,"295 Elm St, New York City, NY 10001" -155190,Lightning Charging Cable,1,14.95,02/07/19 11:20,"500 13th St, San Francisco, CA 94016" -155191,Google Phone,1,600,02/09/19 11:33,"462 River St, Dallas, TX 75001" -155192,Macbook Pro Laptop,1,1700,02/16/19 16:06,"473 Sunset St, Dallas, TX 75001" -155193,AAA Batteries (4-pack),1,2.99,02/27/19 13:25,"550 8th St, Dallas, TX 75001" -155194,Wired Headphones,1,11.99,02/12/19 14:08,"585 8th St, San Francisco, CA 94016" -155195,AA Batteries (4-pack),1,3.84,02/11/19 18:58,"581 Adams St, San Francisco, CA 94016" -155196,AAA Batteries (4-pack),1,2.99,02/02/19 10:17,"194 Lincoln St, Austin, TX 73301" -155197,Apple Airpods Headphones,1,150,02/09/19 11:26,"469 Center St, Seattle, WA 98101" -155198,AAA Batteries (4-pack),1,2.99,02/26/19 07:17,"170 13th St, San Francisco, CA 94016" -155199,Apple Airpods Headphones,1,150,02/21/19 06:43,"638 West St, San Francisco, CA 94016" -155200,Lightning Charging Cable,1,14.95,02/23/19 21:18,"24 14th St, Los Angeles, CA 90001" -155201,34in Ultrawide Monitor,1,379.99,02/07/19 20:47,"375 Johnson St, Los Angeles, CA 90001" -155202,AA Batteries (4-pack),1,3.84,02/01/19 20:33,"405 Spruce St, New York City, NY 10001" -155203,Lightning Charging Cable,1,14.95,02/09/19 23:59,"351 Ridge St, Los Angeles, CA 90001" -155204,Lightning Charging Cable,1,14.95,02/11/19 06:37,"495 Adams St, San Francisco, CA 94016" -155205,iPhone,1,700,02/25/19 09:03,"693 Hill St, New York City, NY 10001" -155205,Lightning Charging Cable,1,14.95,02/25/19 09:03,"693 Hill St, New York City, NY 10001" -155206,Lightning Charging Cable,1,14.95,02/25/19 18:51,"755 8th St, Portland, OR 97035" -155207,34in Ultrawide Monitor,1,379.99,02/27/19 13:35,"769 10th St, San Francisco, CA 94016" -155208,USB-C Charging Cable,1,11.95,02/25/19 17:04,"826 2nd St, New York City, NY 10001" -155209,27in 4K Gaming Monitor,1,389.99,02/18/19 21:52,"288 River St, Boston, MA 02215" -155209,USB-C Charging Cable,2,11.95,02/18/19 21:52,"288 River St, Boston, MA 02215" -155210,Apple Airpods Headphones,1,150,02/08/19 09:11,"506 River St, Boston, MA 02215" -155211,Lightning Charging Cable,1,14.95,02/24/19 19:56,"715 7th St, San Francisco, CA 94016" -155212,Wired Headphones,1,11.99,02/28/19 05:40,"220 Jackson St, Portland, OR 97035" -155213,AA Batteries (4-pack),1,3.84,02/12/19 12:22,"890 14th St, San Francisco, CA 94016" -155214,34in Ultrawide Monitor,1,379.99,02/05/19 14:29,"966 Spruce St, Austin, TX 73301" -155215,USB-C Charging Cable,1,11.95,02/19/19 19:23,"992 Cedar St, San Francisco, CA 94016" -155216,USB-C Charging Cable,3,11.95,02/24/19 12:53,"967 Main St, Los Angeles, CA 90001" -155217,AAA Batteries (4-pack),1,2.99,02/20/19 09:46,"148 Johnson St, Los Angeles, CA 90001" -155218,Wired Headphones,1,11.99,02/01/19 11:00,"459 Johnson St, Seattle, WA 98101" -155219,Apple Airpods Headphones,1,150,02/07/19 17:54,"377 2nd St, Atlanta, GA 30301" -155220,Bose SoundSport Headphones,1,99.99,02/24/19 19:33,"633 Walnut St, New York City, NY 10001" -155221,USB-C Charging Cable,1,11.95,02/02/19 02:17,"634 Spruce St, Los Angeles, CA 90001" -155222,Lightning Charging Cable,1,14.95,02/16/19 10:19,"199 Spruce St, San Francisco, CA 94016" -155223,AA Batteries (4-pack),2,3.84,02/07/19 20:26,"772 Lake St, Atlanta, GA 30301" -155224,AA Batteries (4-pack),2,3.84,02/21/19 23:52,"104 6th St, San Francisco, CA 94016" -155225,Lightning Charging Cable,1,14.95,02/18/19 18:18,"569 Lakeview St, New York City, NY 10001" -155226,27in FHD Monitor,1,149.99,02/11/19 19:41,"620 Forest St, San Francisco, CA 94016" -155227,Vareebadd Phone,1,400,02/28/19 17:40,"887 Washington St, Dallas, TX 75001" -155228,Google Phone,1,600,02/28/19 12:11,"575 Johnson St, Los Angeles, CA 90001" -155229,Flatscreen TV,1,300,02/17/19 15:00,"902 Sunset St, Boston, MA 02215" -155230,Lightning Charging Cable,1,14.95,02/28/19 20:13,"918 11th St, Portland, OR 97035" -155231,AAA Batteries (4-pack),2,2.99,02/14/19 12:53,"236 5th St, Boston, MA 02215" -155232,Apple Airpods Headphones,1,150,02/09/19 09:52,"475 Spruce St, Atlanta, GA 30301" -155233,AA Batteries (4-pack),1,3.84,02/10/19 16:53,"13 5th St, Los Angeles, CA 90001" -155234,USB-C Charging Cable,1,11.95,02/09/19 05:50,"127 12th St, New York City, NY 10001" -155235,Wired Headphones,1,11.99,02/21/19 10:10,"202 Lakeview St, New York City, NY 10001" -155236,AA Batteries (4-pack),1,3.84,02/12/19 21:04,"417 Lincoln St, New York City, NY 10001" -155237,iPhone,1,700,02/04/19 22:15,"337 10th St, San Francisco, CA 94016" -155237,Wired Headphones,1,11.99,02/04/19 22:15,"337 10th St, San Francisco, CA 94016" -155238,AA Batteries (4-pack),1,3.84,02/19/19 15:55,"79 Adams St, New York City, NY 10001" -155239,Google Phone,1,600,02/08/19 18:19,"33 Center St, San Francisco, CA 94016" -155239,USB-C Charging Cable,1,11.95,02/08/19 18:19,"33 Center St, San Francisco, CA 94016" -155240,Macbook Pro Laptop,1,1700,02/08/19 11:58,"405 Sunset St, San Francisco, CA 94016" -155241,27in FHD Monitor,1,149.99,02/20/19 10:25,"271 Washington St, Boston, MA 02215" -155242,iPhone,1,700,02/20/19 13:28,"603 Spruce St, Boston, MA 02215" -155242,Lightning Charging Cable,1,14.95,02/20/19 13:28,"603 Spruce St, Boston, MA 02215" -155243,AAA Batteries (4-pack),1,2.99,02/21/19 21:34,"693 Ridge St, San Francisco, CA 94016" -155244,USB-C Charging Cable,1,11.95,02/25/19 12:44,"47 Elm St, New York City, NY 10001" -155245,AAA Batteries (4-pack),2,2.99,02/22/19 19:04,"375 Dogwood St, Seattle, WA 98101" -155246,AA Batteries (4-pack),1,3.84,02/17/19 10:47,"394 9th St, Boston, MA 02215" -155247,Wired Headphones,1,11.99,02/02/19 19:09,"46 Forest St, Dallas, TX 75001" -155248,Lightning Charging Cable,1,14.95,02/24/19 12:05,"538 Johnson St, San Francisco, CA 94016" -155249,ThinkPad Laptop,1,999.99,02/27/19 11:58,"321 2nd St, New York City, NY 10001" -155250,AAA Batteries (4-pack),1,2.99,02/10/19 06:34,"182 Park St, San Francisco, CA 94016" -155251,Lightning Charging Cable,1,14.95,02/05/19 08:31,"875 Dogwood St, New York City, NY 10001" -155252,Google Phone,1,600,02/17/19 00:19,"210 Chestnut St, San Francisco, CA 94016" -155253,AAA Batteries (4-pack),1,2.99,02/13/19 14:31,"456 Chestnut St, Portland, OR 97035" -155254,USB-C Charging Cable,1,11.95,02/27/19 18:28,"183 Meadow St, San Francisco, CA 94016" -155255,Apple Airpods Headphones,1,150,02/22/19 17:24,"240 14th St, San Francisco, CA 94016" -155256,Lightning Charging Cable,1,14.95,02/24/19 21:29,"201 Cherry St, San Francisco, CA 94016" -155257,Apple Airpods Headphones,1,150,02/02/19 12:31,"423 South St, San Francisco, CA 94016" -155258,USB-C Charging Cable,1,11.95,02/09/19 08:42,"598 14th St, San Francisco, CA 94016" -155259,AAA Batteries (4-pack),1,2.99,02/27/19 12:47,"850 14th St, San Francisco, CA 94016" -155260,27in 4K Gaming Monitor,1,389.99,02/26/19 09:15,"196 14th St, New York City, NY 10001" -155261,AAA Batteries (4-pack),2,2.99,02/11/19 08:14,"45 1st St, Portland, OR 97035" -155262,AA Batteries (4-pack),1,3.84,02/26/19 01:09,"98 Hickory St, Los Angeles, CA 90001" -155263,USB-C Charging Cable,2,11.95,02/22/19 12:23,"287 12th St, Boston, MA 02215" -155264,USB-C Charging Cable,1,11.95,02/07/19 14:52,"74 5th St, San Francisco, CA 94016" -155265,USB-C Charging Cable,1,11.95,02/26/19 07:10,"756 River St, Boston, MA 02215" -155266,20in Monitor,1,109.99,02/18/19 12:28,"24 South St, Atlanta, GA 30301" -155267,Lightning Charging Cable,2,14.95,02/21/19 16:26,"249 West St, Los Angeles, CA 90001" -155268,Apple Airpods Headphones,1,150,02/10/19 08:16,"365 5th St, Austin, TX 73301" -155269,USB-C Charging Cable,1,11.95,02/11/19 08:07,"548 Main St, Portland, OR 97035" -155270,Apple Airpods Headphones,1,150,02/01/19 14:57,"37 Hill St, San Francisco, CA 94016" -155271,AA Batteries (4-pack),3,3.84,02/26/19 18:23,"207 Adams St, Boston, MA 02215" -155272,Macbook Pro Laptop,1,1700,02/11/19 20:08,"582 2nd St, Dallas, TX 75001" -155273,AA Batteries (4-pack),1,3.84,02/28/19 10:26,"587 12th St, Boston, MA 02215" -155274,AAA Batteries (4-pack),1,2.99,02/04/19 20:25,"61 Center St, Seattle, WA 98101" -155275,AA Batteries (4-pack),1,3.84,02/02/19 13:13,"537 South St, Portland, OR 97035" -155275,Wired Headphones,1,11.99,02/02/19 13:13,"537 South St, Portland, OR 97035" -155276,AAA Batteries (4-pack),3,2.99,02/23/19 08:48,"98 Church St, San Francisco, CA 94016" -155277,27in FHD Monitor,1,149.99,02/18/19 21:11,"853 Hickory St, Los Angeles, CA 90001" -155278,Google Phone,1,600,02/20/19 20:26,"31 Jefferson St, Seattle, WA 98101" -155279,Wired Headphones,1,11.99,02/22/19 01:51,"131 Park St, Portland, OR 97035" -155280,Wired Headphones,1,11.99,02/14/19 20:22,"829 Lake St, San Francisco, CA 94016" -155281,Macbook Pro Laptop,1,1700,02/08/19 16:08,"265 Dogwood St, San Francisco, CA 94016" -155282,Bose SoundSport Headphones,1,99.99,02/27/19 22:02,"817 South St, Los Angeles, CA 90001" -155283,Bose SoundSport Headphones,1,99.99,02/03/19 21:39,"661 9th St, New York City, NY 10001" -155284,USB-C Charging Cable,1,11.95,02/28/19 22:59,"24 Highland St, New York City, NY 10001" -155285,AA Batteries (4-pack),1,3.84,02/11/19 19:24,"231 7th St, Boston, MA 02215" -155286,27in FHD Monitor,1,149.99,02/12/19 20:32,"234 Sunset St, Los Angeles, CA 90001" -155287,USB-C Charging Cable,1,11.95,02/19/19 23:46,"280 1st St, Los Angeles, CA 90001" -155288,Google Phone,1,600,02/25/19 10:39,"637 7th St, Seattle, WA 98101" -155289,Macbook Pro Laptop,1,1700,02/06/19 15:24,"221 Jefferson St, New York City, NY 10001" -155290,Bose SoundSport Headphones,1,99.99,02/19/19 20:37,"218 Jackson St, San Francisco, CA 94016" -155291,Lightning Charging Cable,1,14.95,02/14/19 01:02,"542 Dogwood St, Seattle, WA 98101" -155292,Apple Airpods Headphones,1,150,02/14/19 09:01,"993 12th St, Portland, OR 97035" -155293,Google Phone,1,600,02/13/19 12:57,"242 Madison St, New York City, NY 10001" -155294,Apple Airpods Headphones,1,150,02/13/19 12:23,"820 6th St, Los Angeles, CA 90001" -155295,Wired Headphones,2,11.99,02/26/19 15:19,"337 Dogwood St, Los Angeles, CA 90001" -155296,AAA Batteries (4-pack),3,2.99,02/18/19 23:34,"141 4th St, Los Angeles, CA 90001" -155297,AA Batteries (4-pack),1,3.84,02/03/19 23:36,"855 Walnut St, San Francisco, CA 94016" -155298,Apple Airpods Headphones,1,150,02/24/19 21:03,"423 Sunset St, San Francisco, CA 94016" -155299,Flatscreen TV,1,300,02/08/19 21:04,"6 Dogwood St, Dallas, TX 75001" -155300,Apple Airpods Headphones,1,150,02/21/19 13:53,"878 11th St, Boston, MA 02215" -155301,iPhone,1,700,02/19/19 09:34,"654 5th St, Boston, MA 02215" -155302,AA Batteries (4-pack),1,3.84,02/19/19 12:28,"720 Jackson St, San Francisco, CA 94016" -155303,Google Phone,1,600,02/04/19 18:48,"295 Cherry St, Portland, ME 04101" -155303,Bose SoundSport Headphones,1,99.99,02/04/19 18:48,"295 Cherry St, Portland, ME 04101" -155304,Lightning Charging Cable,1,14.95,02/27/19 15:23,"375 Wilson St, Seattle, WA 98101" -155305,34in Ultrawide Monitor,1,379.99,02/01/19 21:22,"826 14th St, San Francisco, CA 94016" -155306,AA Batteries (4-pack),3,3.84,02/15/19 19:11,"711 Jefferson St, Boston, MA 02215" -155307,20in Monitor,1,109.99,02/01/19 20:08,"774 6th St, Los Angeles, CA 90001" -155308,Bose SoundSport Headphones,1,99.99,02/17/19 16:00,"59 13th St, Atlanta, GA 30301" -155309,USB-C Charging Cable,1,11.95,02/03/19 14:22,"662 Highland St, Los Angeles, CA 90001" -155310,USB-C Charging Cable,1,11.95,02/27/19 15:55,"93 Lake St, New York City, NY 10001" -155311,Wired Headphones,1,11.99,02/13/19 23:59,"9 Madison St, San Francisco, CA 94016" -155312,AAA Batteries (4-pack),1,2.99,02/23/19 19:48,"994 Washington St, San Francisco, CA 94016" -155313,34in Ultrawide Monitor,1,379.99,02/13/19 15:57,"591 Hill St, Seattle, WA 98101" -155314,USB-C Charging Cable,1,11.95,02/21/19 10:24,"209 Walnut St, San Francisco, CA 94016" -155315,AAA Batteries (4-pack),3,2.99,02/17/19 12:18,"458 Wilson St, Atlanta, GA 30301" -155315,Google Phone,1,600,02/17/19 12:18,"458 Wilson St, Atlanta, GA 30301" -155316,AAA Batteries (4-pack),1,2.99,02/06/19 17:55,"312 Cherry St, Los Angeles, CA 90001" -155317,34in Ultrawide Monitor,1,379.99,02/22/19 01:16,"826 Center St, Atlanta, GA 30301" -155318,AAA Batteries (4-pack),1,2.99,02/14/19 20:20,"810 Madison St, Portland, OR 97035" -155319,Lightning Charging Cable,1,14.95,02/02/19 11:18,"551 Hill St, San Francisco, CA 94016" -155320,27in 4K Gaming Monitor,1,389.99,02/01/19 07:57,"444 Lincoln St, New York City, NY 10001" -155321,20in Monitor,1,109.99,02/01/19 14:35,"852 Jefferson St, San Francisco, CA 94016" -155322,USB-C Charging Cable,1,11.95,02/17/19 12:07,"792 2nd St, Portland, OR 97035" -155323,Wired Headphones,1,11.99,02/12/19 11:25,"951 Madison St, San Francisco, CA 94016" -155324,AAA Batteries (4-pack),1,2.99,02/18/19 16:29,"482 2nd St, Los Angeles, CA 90001" -155325,Bose SoundSport Headphones,1,99.99,02/09/19 13:04,"706 Hickory St, Boston, MA 02215" -155326,Lightning Charging Cable,1,14.95,02/08/19 16:31,"644 4th St, New York City, NY 10001" -155327,iPhone,1,700,02/14/19 20:13,"112 Dogwood St, San Francisco, CA 94016" -155328,AAA Batteries (4-pack),1,2.99,02/17/19 09:30,"903 Johnson St, San Francisco, CA 94016" -155329,Wired Headphones,1,11.99,02/04/19 11:41,"844 Ridge St, San Francisco, CA 94016" -155330,USB-C Charging Cable,1,11.95,02/12/19 12:46,"692 Maple St, San Francisco, CA 94016" -155331,USB-C Charging Cable,1,11.95,02/25/19 08:25,"920 5th St, Dallas, TX 75001" -155332,Lightning Charging Cable,1,14.95,02/09/19 14:32,"955 Willow St, Atlanta, GA 30301" -155333,Flatscreen TV,1,300,02/25/19 00:55,"638 10th St, San Francisco, CA 94016" -155334,Lightning Charging Cable,1,14.95,02/27/19 08:18,"621 12th St, Los Angeles, CA 90001" -155335,27in FHD Monitor,1,149.99,02/23/19 18:50,"205 Walnut St, Dallas, TX 75001" -155336,27in FHD Monitor,1,149.99,02/27/19 19:06,"979 Hickory St, Los Angeles, CA 90001" -155337,LG Dryer,1,600.0,02/19/19 12:34,"607 2nd St, San Francisco, CA 94016" -155338,USB-C Charging Cable,1,11.95,02/01/19 08:42,"716 Church St, Austin, TX 73301" -155339,27in 4K Gaming Monitor,1,389.99,02/07/19 07:39,"65 Lake St, Dallas, TX 75001" -155340,USB-C Charging Cable,1,11.95,02/26/19 15:32,"631 Chestnut St, New York City, NY 10001" -155341,USB-C Charging Cable,2,11.95,02/15/19 16:04,"526 Maple St, San Francisco, CA 94016" -155342,Lightning Charging Cable,1,14.95,02/16/19 09:25,"8 2nd St, Dallas, TX 75001" -155343,AA Batteries (4-pack),2,3.84,02/28/19 14:45,"53 Church St, New York City, NY 10001" -155344,Bose SoundSport Headphones,1,99.99,02/15/19 17:40,"679 Hill St, New York City, NY 10001" -155345,AA Batteries (4-pack),2,3.84,02/26/19 17:42,"745 Lakeview St, Portland, OR 97035" -155346,AA Batteries (4-pack),2,3.84,02/09/19 07:36,"16 1st St, San Francisco, CA 94016" -155347,AAA Batteries (4-pack),1,2.99,02/23/19 23:01,"142 Jefferson St, Boston, MA 02215" -155348,iPhone,1,700,02/23/19 17:38,"868 Wilson St, Los Angeles, CA 90001" -155349,Bose SoundSport Headphones,1,99.99,02/20/19 16:27,"833 Church St, San Francisco, CA 94016" -155350,Apple Airpods Headphones,1,150,02/01/19 19:37,"823 Cedar St, Boston, MA 02215" -155351,Apple Airpods Headphones,1,150,02/23/19 10:25,"582 Meadow St, Seattle, WA 98101" -155352,Lightning Charging Cable,2,14.95,02/13/19 23:23,"586 13th St, San Francisco, CA 94016" -155353,Lightning Charging Cable,1,14.95,02/07/19 10:12,"581 West St, New York City, NY 10001" -155354,Wired Headphones,1,11.99,02/28/19 10:59,"571 West St, Atlanta, GA 30301" -155355,Bose SoundSport Headphones,1,99.99,02/14/19 20:12,"916 Cedar St, New York City, NY 10001" -155356,20in Monitor,1,109.99,02/07/19 16:59,"66 Forest St, San Francisco, CA 94016" -155357,AAA Batteries (4-pack),1,2.99,02/25/19 07:09,"297 Ridge St, San Francisco, CA 94016" -155358,USB-C Charging Cable,1,11.95,02/04/19 13:49,"958 Jackson St, Boston, MA 02215" -155359,Bose SoundSport Headphones,1,99.99,02/27/19 10:00,"39 11th St, Atlanta, GA 30301" -155360,AA Batteries (4-pack),2,3.84,02/02/19 13:11,"723 Chestnut St, Atlanta, GA 30301" -155361,AAA Batteries (4-pack),1,2.99,02/13/19 00:17,"215 Cherry St, San Francisco, CA 94016" -155362,USB-C Charging Cable,1,11.95,02/16/19 20:41,"749 Lakeview St, Boston, MA 02215" -155363,AA Batteries (4-pack),1,3.84,02/07/19 20:28,"760 Willow St, Dallas, TX 75001" -155364,ThinkPad Laptop,1,999.99,02/07/19 15:13,"940 Adams St, Los Angeles, CA 90001" -155365,iPhone,1,700,02/25/19 11:30,"751 Lincoln St, Seattle, WA 98101" -155366,USB-C Charging Cable,1,11.95,02/05/19 00:07,"46 Jackson St, Atlanta, GA 30301" -155367,Bose SoundSport Headphones,1,99.99,02/11/19 11:20,"967 Willow St, Seattle, WA 98101" -155368,Lightning Charging Cable,1,14.95,02/19/19 23:56,"445 13th St, Seattle, WA 98101" -155369,20in Monitor,1,109.99,02/21/19 11:28,"406 Walnut St, New York City, NY 10001" -155370,Apple Airpods Headphones,1,150,02/19/19 10:40,"394 Jefferson St, San Francisco, CA 94016" -155371,USB-C Charging Cable,1,11.95,02/23/19 18:16,"439 14th St, Los Angeles, CA 90001" -155372,Apple Airpods Headphones,1,150,02/17/19 08:27,"933 14th St, Dallas, TX 75001" -155373,27in 4K Gaming Monitor,1,389.99,02/27/19 17:19,"549 River St, New York City, NY 10001" -155374,AA Batteries (4-pack),1,3.84,02/03/19 21:57,"577 Wilson St, San Francisco, CA 94016" -155375,Wired Headphones,1,11.99,02/17/19 09:41,"437 8th St, New York City, NY 10001" -155376,AA Batteries (4-pack),1,3.84,02/04/19 19:50,"968 Pine St, Los Angeles, CA 90001" -155377,AAA Batteries (4-pack),1,2.99,02/25/19 07:57,"222 12th St, New York City, NY 10001" -155378,AAA Batteries (4-pack),1,2.99,02/16/19 21:53,"569 Lincoln St, Los Angeles, CA 90001" -155379,Apple Airpods Headphones,1,150,02/06/19 13:35,"699 Madison St, Los Angeles, CA 90001" -155380,Google Phone,1,600,02/18/19 06:34,"966 Main St, Portland, ME 04101" -155381,Lightning Charging Cable,1,14.95,02/24/19 03:10,"15 2nd St, Boston, MA 02215" -155382,Bose SoundSport Headphones,1,99.99,02/20/19 22:52,"328 Washington St, San Francisco, CA 94016" -155383,Lightning Charging Cable,1,14.95,02/18/19 15:59,"273 4th St, Dallas, TX 75001" -155384,Lightning Charging Cable,1,14.95,02/12/19 13:16,"541 Lincoln St, Los Angeles, CA 90001" -155385,AAA Batteries (4-pack),1,2.99,02/11/19 18:25,"544 8th St, Boston, MA 02215" -155385,27in 4K Gaming Monitor,1,389.99,02/11/19 18:25,"544 8th St, Boston, MA 02215" -155386,Apple Airpods Headphones,1,150,02/24/19 21:56,"326 9th St, San Francisco, CA 94016" -155387,USB-C Charging Cable,1,11.95,02/04/19 14:42,"949 Chestnut St, Seattle, WA 98101" -155388,Apple Airpods Headphones,1,150,02/02/19 20:04,"269 6th St, Los Angeles, CA 90001" -155389,AAA Batteries (4-pack),2,2.99,02/02/19 16:33,"806 Hickory St, Austin, TX 73301" -155390,AA Batteries (4-pack),1,3.84,02/24/19 16:52,"372 Highland St, Seattle, WA 98101" -155391,Wired Headphones,2,11.99,02/11/19 15:29,"151 Highland St, San Francisco, CA 94016" -155392,Bose SoundSport Headphones,1,99.99,02/15/19 23:47,"185 Forest St, Boston, MA 02215" -155393,USB-C Charging Cable,1,11.95,02/14/19 14:41,"792 Lincoln St, New York City, NY 10001" -155394,USB-C Charging Cable,1,11.95,02/24/19 22:49,"609 9th St, New York City, NY 10001" -155395,Lightning Charging Cable,1,14.95,02/06/19 19:16,"873 7th St, San Francisco, CA 94016" -155396,Wired Headphones,1,11.99,02/16/19 18:23,"911 Cherry St, New York City, NY 10001" -155397,27in 4K Gaming Monitor,1,389.99,02/08/19 20:06,"489 West St, San Francisco, CA 94016" -155398,Lightning Charging Cable,1,14.95,02/28/19 10:03,"509 Hill St, Los Angeles, CA 90001" -155399,Apple Airpods Headphones,1,150,02/10/19 21:54,"954 14th St, Austin, TX 73301" -155400,AAA Batteries (4-pack),1,2.99,02/23/19 20:40,"605 Hill St, Boston, MA 02215" -155401,Bose SoundSport Headphones,1,99.99,02/10/19 10:44,"982 Main St, Portland, ME 04101" -155402,USB-C Charging Cable,1,11.95,02/24/19 00:35,"510 Meadow St, Portland, OR 97035" -155403,Macbook Pro Laptop,1,1700,02/15/19 23:11,"74 Park St, Los Angeles, CA 90001" -155404,20in Monitor,1,109.99,02/14/19 00:30,"744 Walnut St, Boston, MA 02215" -155405,Lightning Charging Cable,1,14.95,02/14/19 21:06,"169 Cedar St, San Francisco, CA 94016" -155406,Lightning Charging Cable,1,14.95,02/22/19 09:54,"89 6th St, Austin, TX 73301" -155407,Bose SoundSport Headphones,1,99.99,02/15/19 12:06,"694 Dogwood St, New York City, NY 10001" -155408,AAA Batteries (4-pack),2,2.99,02/10/19 19:08,"623 2nd St, Austin, TX 73301" -155409,AA Batteries (4-pack),1,3.84,02/26/19 19:39,"326 Lincoln St, Dallas, TX 75001" -155410,Bose SoundSport Headphones,1,99.99,02/26/19 19:26,"875 Walnut St, San Francisco, CA 94016" -155411,27in 4K Gaming Monitor,1,389.99,02/21/19 18:01,"839 2nd St, New York City, NY 10001" -155412,27in FHD Monitor,1,149.99,02/27/19 23:38,"979 11th St, San Francisco, CA 94016" -155413,Wired Headphones,1,11.99,02/15/19 10:48,"721 12th St, Los Angeles, CA 90001" -155414,Wired Headphones,1,11.99,02/15/19 17:49,"539 Maple St, San Francisco, CA 94016" -155415,Google Phone,1,600,02/06/19 12:31,"940 13th St, San Francisco, CA 94016" -155415,USB-C Charging Cable,1,11.95,02/06/19 12:31,"940 13th St, San Francisco, CA 94016" -155415,Bose SoundSport Headphones,1,99.99,02/06/19 12:31,"940 13th St, San Francisco, CA 94016" -155416,USB-C Charging Cable,1,11.95,02/01/19 18:41,"155 Meadow St, San Francisco, CA 94016" -155417,AA Batteries (4-pack),1,3.84,02/01/19 16:41,"474 Dogwood St, Seattle, WA 98101" -155418,USB-C Charging Cable,1,11.95,02/14/19 13:17,"125 Highland St, Boston, MA 02215" -155419,Wired Headphones,1,11.99,02/17/19 18:47,"494 Washington St, Austin, TX 73301" -155420,AAA Batteries (4-pack),2,2.99,02/11/19 17:41,"292 Elm St, San Francisco, CA 94016" -155421,AA Batteries (4-pack),1,3.84,02/07/19 16:05,"995 Washington St, Dallas, TX 75001" -155422,Wired Headphones,1,11.99,02/10/19 11:27,"726 Madison St, Atlanta, GA 30301" -155423,USB-C Charging Cable,1,11.95,02/18/19 11:38,"90 9th St, Atlanta, GA 30301" -155424,Apple Airpods Headphones,1,150,02/27/19 12:22,"827 Lincoln St, San Francisco, CA 94016" -155425,AA Batteries (4-pack),2,3.84,02/10/19 16:57,"261 Meadow St, Dallas, TX 75001" -155426,AAA Batteries (4-pack),1,2.99,02/08/19 16:17,"242 Madison St, New York City, NY 10001" -155427,27in 4K Gaming Monitor,1,389.99,02/25/19 21:02,"65 Cedar St, Seattle, WA 98101" -155428,iPhone,1,700,02/05/19 13:53,"498 Jackson St, Portland, OR 97035" -155428,Lightning Charging Cable,1,14.95,02/05/19 13:53,"498 Jackson St, Portland, OR 97035" -155429,AA Batteries (4-pack),1,3.84,02/03/19 14:52,"491 Wilson St, San Francisco, CA 94016" -155430,Apple Airpods Headphones,1,150,02/18/19 16:55,"569 8th St, Seattle, WA 98101" -155431,Apple Airpods Headphones,1,150,02/08/19 17:05,"700 Forest St, New York City, NY 10001" -155432,Bose SoundSport Headphones,1,99.99,02/10/19 21:38,"866 Spruce St, New York City, NY 10001" -155433,Wired Headphones,2,11.99,02/02/19 08:43,"304 12th St, San Francisco, CA 94016" -155434,AAA Batteries (4-pack),1,2.99,02/25/19 22:41,"378 Jackson St, San Francisco, CA 94016" -155435,USB-C Charging Cable,1,11.95,02/25/19 07:10,"367 River St, San Francisco, CA 94016" -155436,AA Batteries (4-pack),2,3.84,02/13/19 13:12,"367 Pine St, Atlanta, GA 30301" -155437,Wired Headphones,1,11.99,02/05/19 10:45,"980 River St, San Francisco, CA 94016" -155438,Vareebadd Phone,1,400,02/26/19 19:43,"901 12th St, Los Angeles, CA 90001" -155438,Wired Headphones,1,11.99,02/26/19 19:43,"901 12th St, Los Angeles, CA 90001" -155439,Wired Headphones,1,11.99,02/08/19 10:12,"438 6th St, New York City, NY 10001" -155440,Apple Airpods Headphones,1,150,02/15/19 13:12,"839 North St, Portland, OR 97035" -155441,20in Monitor,1,109.99,02/06/19 12:46,"545 6th St, Seattle, WA 98101" -155442,USB-C Charging Cable,1,11.95,02/16/19 19:25,"10 River St, New York City, NY 10001" -155443,27in FHD Monitor,1,149.99,02/19/19 08:09,"63 Jefferson St, Seattle, WA 98101" -155444,USB-C Charging Cable,1,11.95,02/18/19 17:04,"870 Willow St, Boston, MA 02215" -155445,Wired Headphones,1,11.99,02/19/19 20:22,"965 Jefferson St, Portland, OR 97035" -155446,Lightning Charging Cable,1,14.95,02/09/19 13:07,"924 Maple St, Seattle, WA 98101" -155447,AA Batteries (4-pack),2,3.84,02/07/19 21:10,"882 Ridge St, New York City, NY 10001" -155448,Google Phone,1,600,02/21/19 10:54,"386 Church St, San Francisco, CA 94016" -155448,Wired Headphones,1,11.99,02/21/19 10:54,"386 Church St, San Francisco, CA 94016" -155449,USB-C Charging Cable,1,11.95,02/25/19 20:25,"792 Wilson St, New York City, NY 10001" -155450,USB-C Charging Cable,1,11.95,02/10/19 11:18,"950 Chestnut St, Los Angeles, CA 90001" -155451,Bose SoundSport Headphones,1,99.99,02/10/19 12:48,"615 Park St, Austin, TX 73301" -155452,Lightning Charging Cable,1,14.95,02/06/19 08:42,"68 10th St, New York City, NY 10001" -155453,Lightning Charging Cable,1,14.95,02/16/19 14:34,"41 9th St, Atlanta, GA 30301" -155454,AAA Batteries (4-pack),2,2.99,02/20/19 04:25,"440 Elm St, San Francisco, CA 94016" -155455,AAA Batteries (4-pack),1,2.99,02/12/19 22:11,"687 Lakeview St, New York City, NY 10001" -155456,Wired Headphones,1,11.99,02/14/19 21:24,"639 Hickory St, San Francisco, CA 94016" -155457,USB-C Charging Cable,2,11.95,02/27/19 13:12,"223 Church St, San Francisco, CA 94016" -155458,ThinkPad Laptop,1,999.99,02/08/19 12:16,"53 14th St, Seattle, WA 98101" -155459,Lightning Charging Cable,1,14.95,02/17/19 15:19,"341 Chestnut St, Portland, OR 97035" -155460,AA Batteries (4-pack),1,3.84,02/18/19 21:26,"95 Hill St, New York City, NY 10001" -155461,Google Phone,1,600,02/17/19 05:56,"292 Adams St, San Francisco, CA 94016" -155461,Wired Headphones,1,11.99,02/17/19 05:56,"292 Adams St, San Francisco, CA 94016" -155462,AA Batteries (4-pack),2,3.84,02/24/19 01:50,"246 Walnut St, Los Angeles, CA 90001" -155463,Wired Headphones,1,11.99,02/15/19 18:28,"645 Ridge St, San Francisco, CA 94016" -155464,iPhone,1,700,02/09/19 18:30,"221 Church St, San Francisco, CA 94016" -155465,AAA Batteries (4-pack),2,2.99,02/20/19 18:06,"316 Jefferson St, San Francisco, CA 94016" -155466,Bose SoundSport Headphones,1,99.99,02/22/19 11:32,"636 South St, San Francisco, CA 94016" -155467,LG Dryer,1,600.0,02/08/19 14:20,"766 Adams St, New York City, NY 10001" -155468,Lightning Charging Cable,2,14.95,02/24/19 10:12,"856 Jefferson St, Seattle, WA 98101" -155469,AAA Batteries (4-pack),1,2.99,02/13/19 21:00,"457 Madison St, San Francisco, CA 94016" -155470,USB-C Charging Cable,1,11.95,02/28/19 11:32,"36 Lakeview St, Seattle, WA 98101" -155471,Apple Airpods Headphones,1,150,02/27/19 17:53,"200 South St, San Francisco, CA 94016" -155472,Lightning Charging Cable,1,14.95,02/19/19 10:31,"981 Meadow St, San Francisco, CA 94016" -155473,Flatscreen TV,1,300,02/14/19 02:52,"37 8th St, Los Angeles, CA 90001" -155474,ThinkPad Laptop,1,999.99,02/13/19 14:54,"347 7th St, Los Angeles, CA 90001" -155474,Wired Headphones,1,11.99,02/13/19 14:54,"347 7th St, Los Angeles, CA 90001" -155475,AA Batteries (4-pack),1,3.84,02/01/19 23:38,"186 Hickory St, Atlanta, GA 30301" -155476,Apple Airpods Headphones,1,150,02/20/19 20:55,"315 7th St, San Francisco, CA 94016" -155477,Bose SoundSport Headphones,1,99.99,02/28/19 12:59,"838 7th St, Boston, MA 02215" -155478,USB-C Charging Cable,1,11.95,02/06/19 20:22,"422 Elm St, San Francisco, CA 94016" -155479,AA Batteries (4-pack),1,3.84,02/04/19 19:37,"37 4th St, Atlanta, GA 30301" -155480,AA Batteries (4-pack),1,3.84,02/07/19 10:37,"512 Cherry St, San Francisco, CA 94016" -155481,AAA Batteries (4-pack),2,2.99,02/06/19 10:28,"504 Madison St, New York City, NY 10001" -155482,Bose SoundSport Headphones,1,99.99,02/14/19 12:31,"213 Spruce St, San Francisco, CA 94016" -155483,AA Batteries (4-pack),1,3.84,02/04/19 09:43,"821 Walnut St, Austin, TX 73301" -155484,Bose SoundSport Headphones,1,99.99,02/04/19 11:49,"716 Lakeview St, New York City, NY 10001" -155485,Apple Airpods Headphones,1,150,02/19/19 17:30,"53 Ridge St, Dallas, TX 75001" -155486,AAA Batteries (4-pack),1,2.99,02/18/19 19:24,"549 7th St, New York City, NY 10001" -155487,Wired Headphones,2,11.99,02/12/19 14:00,"410 Meadow St, Dallas, TX 75001" -155488,iPhone,1,700,02/03/19 07:43,"456 Willow St, San Francisco, CA 94016" -155489,27in 4K Gaming Monitor,1,389.99,02/11/19 20:07,"797 Forest St, Los Angeles, CA 90001" -155490,Google Phone,1,600,02/17/19 21:04,"392 Lake St, Los Angeles, CA 90001" -155491,USB-C Charging Cable,1,11.95,02/01/19 21:34,"30 Chestnut St, New York City, NY 10001" -155492,Bose SoundSport Headphones,1,99.99,02/28/19 13:51,"336 Cherry St, Los Angeles, CA 90001" -155493,Lightning Charging Cable,1,14.95,02/02/19 02:17,"977 Dogwood St, Portland, ME 04101" -155494,USB-C Charging Cable,1,11.95,02/21/19 14:19,"648 11th St, Seattle, WA 98101" -155495,USB-C Charging Cable,1,11.95,02/03/19 10:46,"498 Dogwood St, Los Angeles, CA 90001" -155496,USB-C Charging Cable,1,11.95,02/26/19 17:23,"573 Willow St, Atlanta, GA 30301" -155497,AA Batteries (4-pack),1,3.84,02/11/19 10:13,"119 Jefferson St, San Francisco, CA 94016" -155498,Wired Headphones,1,11.99,02/03/19 22:00,"727 Center St, Seattle, WA 98101" -155499,27in FHD Monitor,1,149.99,02/16/19 20:57,"189 North St, Boston, MA 02215" -155500,Lightning Charging Cable,1,14.95,02/08/19 20:09,"180 Park St, New York City, NY 10001" -155501,Wired Headphones,1,11.99,02/14/19 17:13,"25 Willow St, Boston, MA 02215" -155502,Wired Headphones,1,11.99,02/06/19 10:05,"694 Adams St, Los Angeles, CA 90001" -155503,Apple Airpods Headphones,1,150,02/15/19 02:42,"73 Lakeview St, New York City, NY 10001" -155504,AAA Batteries (4-pack),1,2.99,02/26/19 18:24,"617 Cedar St, Los Angeles, CA 90001" -155505,Wired Headphones,1,11.99,02/01/19 09:55,"400 13th St, Dallas, TX 75001" -155506,27in 4K Gaming Monitor,1,389.99,02/03/19 18:46,"495 Dogwood St, Los Angeles, CA 90001" -155507,AA Batteries (4-pack),1,3.84,02/25/19 17:53,"471 Lincoln St, New York City, NY 10001" -155508,Google Phone,1,600,02/24/19 22:00,"966 Ridge St, Seattle, WA 98101" -155509,27in 4K Gaming Monitor,1,389.99,02/07/19 14:26,"17 Cedar St, New York City, NY 10001" -155510,Wired Headphones,1,11.99,02/20/19 14:13,"535 10th St, New York City, NY 10001" -155511,AA Batteries (4-pack),1,3.84,02/17/19 15:32,"855 8th St, Atlanta, GA 30301" -155512,AA Batteries (4-pack),1,3.84,02/20/19 23:59,"710 Lakeview St, San Francisco, CA 94016" -155513,Wired Headphones,1,11.99,02/15/19 22:22,"852 Meadow St, Los Angeles, CA 90001" -155514,34in Ultrawide Monitor,1,379.99,02/12/19 08:55,"305 Highland St, New York City, NY 10001" -155515,USB-C Charging Cable,2,11.95,02/06/19 16:19,"99 Willow St, Los Angeles, CA 90001" -155516,AA Batteries (4-pack),1,3.84,02/17/19 09:32,"500 Dogwood St, New York City, NY 10001" -155517,Apple Airpods Headphones,1,150,02/23/19 23:22,"148 4th St, Austin, TX 73301" -155518,Apple Airpods Headphones,1,150,02/13/19 19:56,"366 Wilson St, San Francisco, CA 94016" -155519,USB-C Charging Cable,1,11.95,02/15/19 20:24,"457 Highland St, Los Angeles, CA 90001" -155520,Wired Headphones,2,11.99,02/07/19 08:51,"121 Jefferson St, Dallas, TX 75001" -155521,AA Batteries (4-pack),1,3.84,02/08/19 14:10,"336 1st St, Austin, TX 73301" -155522,Lightning Charging Cable,1,14.95,02/08/19 11:12,"138 Elm St, New York City, NY 10001" -155523,AAA Batteries (4-pack),1,2.99,02/24/19 17:31,"920 Highland St, New York City, NY 10001" -155524,USB-C Charging Cable,2,11.95,02/13/19 13:12,"135 Jackson St, Portland, OR 97035" -155525,USB-C Charging Cable,1,11.95,02/08/19 19:07,"752 Lakeview St, Boston, MA 02215" -155526,Lightning Charging Cable,1,14.95,02/22/19 14:20,"109 South St, Boston, MA 02215" -155527,Bose SoundSport Headphones,1,99.99,02/26/19 17:16,"443 West St, Dallas, TX 75001" -155528,USB-C Charging Cable,1,11.95,02/18/19 18:17,"15 5th St, New York City, NY 10001" -155529,AA Batteries (4-pack),3,3.84,02/22/19 21:13,"706 11th St, San Francisco, CA 94016" -155530,USB-C Charging Cable,1,11.95,02/07/19 13:08,"786 Ridge St, Atlanta, GA 30301" -155531,ThinkPad Laptop,1,999.99,02/26/19 21:12,"629 Jefferson St, San Francisco, CA 94016" -155532,Bose SoundSport Headphones,1,99.99,02/24/19 08:43,"521 12th St, Los Angeles, CA 90001" -155533,AA Batteries (4-pack),1,3.84,02/22/19 11:10,"895 Cedar St, Dallas, TX 75001" -155534,AA Batteries (4-pack),2,3.84,02/23/19 14:32,"228 Adams St, Boston, MA 02215" -155535,Lightning Charging Cable,1,14.95,02/16/19 07:05,"815 12th St, Dallas, TX 75001" -155536,iPhone,1,700,02/26/19 23:06,"223 North St, Portland, OR 97035" -155537,Lightning Charging Cable,1,14.95,02/02/19 08:58,"875 Cedar St, Dallas, TX 75001" -155538,AAA Batteries (4-pack),3,2.99,02/09/19 18:21,"676 Walnut St, New York City, NY 10001" -155539,AA Batteries (4-pack),1,3.84,02/14/19 14:21,"152 Church St, Boston, MA 02215" -155540,iPhone,1,700,02/27/19 12:56,"52 Jefferson St, Portland, OR 97035" -155541,AA Batteries (4-pack),1,3.84,02/27/19 17:11,"944 4th St, Dallas, TX 75001" -155542,USB-C Charging Cable,1,11.95,02/04/19 01:48,"933 Spruce St, Boston, MA 02215" -155543,AA Batteries (4-pack),2,3.84,02/18/19 19:52,"761 Willow St, Austin, TX 73301" -155544,AAA Batteries (4-pack),2,2.99,02/19/19 11:56,"531 Lincoln St, Dallas, TX 75001" -155545,Apple Airpods Headphones,1,150,02/02/19 23:10,"48 Meadow St, Los Angeles, CA 90001" -155546,Wired Headphones,1,11.99,02/10/19 09:35,"450 West St, Los Angeles, CA 90001" -155547,Lightning Charging Cable,1,14.95,02/05/19 20:40,"601 12th St, Atlanta, GA 30301" -155548,ThinkPad Laptop,1,999.99,02/26/19 19:28,"27 South St, Dallas, TX 75001" -155549,Apple Airpods Headphones,1,150,02/17/19 10:59,"245 Church St, Austin, TX 73301" -155550,Google Phone,1,600,02/19/19 21:04,"784 River St, San Francisco, CA 94016" -155550,AA Batteries (4-pack),2,3.84,02/19/19 21:04,"784 River St, San Francisco, CA 94016" -155551,Lightning Charging Cable,1,14.95,02/05/19 17:14,"322 6th St, New York City, NY 10001" -155552,AAA Batteries (4-pack),1,2.99,02/15/19 12:13,"188 Jefferson St, Dallas, TX 75001" -155553,iPhone,1,700,02/22/19 11:04,"126 Sunset St, Boston, MA 02215" -155554,USB-C Charging Cable,1,11.95,02/01/19 16:34,"783 6th St, Portland, OR 97035" -155555,27in 4K Gaming Monitor,1,389.99,02/05/19 13:07,"589 Johnson St, Atlanta, GA 30301" -155556,AAA Batteries (4-pack),1,2.99,02/09/19 10:05,"798 Washington St, San Francisco, CA 94016" -155557,USB-C Charging Cable,1,11.95,02/19/19 09:08,"712 North St, Boston, MA 02215" -155558,Lightning Charging Cable,1,14.95,02/08/19 11:38,"181 Sunset St, Los Angeles, CA 90001" -155559,27in FHD Monitor,1,149.99,02/15/19 18:34,"705 South St, New York City, NY 10001" -155560,iPhone,1,700,02/03/19 08:56,"989 8th St, Los Angeles, CA 90001" -155561,USB-C Charging Cable,1,11.95,02/25/19 23:59,"338 Jefferson St, New York City, NY 10001" -155562,Lightning Charging Cable,1,14.95,02/12/19 11:28,"499 10th St, New York City, NY 10001" -155563,Apple Airpods Headphones,1,150,02/18/19 10:37,"401 Adams St, Atlanta, GA 30301" -155564,Bose SoundSport Headphones,1,99.99,02/24/19 21:41,"706 Elm St, Atlanta, GA 30301" -155565,Wired Headphones,1,11.99,02/04/19 21:04,"780 West St, San Francisco, CA 94016" -155566,ThinkPad Laptop,1,999.99,02/10/19 13:22,"64 8th St, New York City, NY 10001" -155566,Lightning Charging Cable,1,14.95,02/10/19 13:22,"64 8th St, New York City, NY 10001" -155567,Vareebadd Phone,1,400,02/12/19 19:32,"180 2nd St, Dallas, TX 75001" -155567,USB-C Charging Cable,2,11.95,02/12/19 19:32,"180 2nd St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -155568,Flatscreen TV,1,300,02/27/19 14:14,"28 South St, Seattle, WA 98101" -155569,Bose SoundSport Headphones,1,99.99,02/05/19 20:35,"74 Dogwood St, Dallas, TX 75001" -155570,iPhone,1,700,02/21/19 14:23,"801 1st St, Los Angeles, CA 90001" -155571,Lightning Charging Cable,1,14.95,02/25/19 08:34,"257 Lincoln St, Boston, MA 02215" -155572,Macbook Pro Laptop,1,1700,02/22/19 09:42,"433 Sunset St, Los Angeles, CA 90001" -155573,AA Batteries (4-pack),1,3.84,02/14/19 16:16,"455 Pine St, Dallas, TX 75001" -155574,Wired Headphones,3,11.99,02/16/19 23:26,"227 Lincoln St, Atlanta, GA 30301" -155575,ThinkPad Laptop,1,999.99,02/16/19 15:24,"968 4th St, Dallas, TX 75001" -155576,Wired Headphones,1,11.99,02/12/19 16:14,"482 Main St, New York City, NY 10001" -155577,Bose SoundSport Headphones,1,99.99,02/13/19 11:11,"15 Jefferson St, Los Angeles, CA 90001" -155578,Lightning Charging Cable,1,14.95,02/17/19 10:26,"879 Forest St, San Francisco, CA 94016" -155579,AAA Batteries (4-pack),1,2.99,02/20/19 15:12,"64 12th St, Seattle, WA 98101" -155580,AAA Batteries (4-pack),4,2.99,02/12/19 18:59,"115 Lincoln St, San Francisco, CA 94016" -155581,Apple Airpods Headphones,1,150,02/05/19 16:44,"978 Wilson St, New York City, NY 10001" -155582,AA Batteries (4-pack),3,3.84,02/15/19 14:11,"681 Elm St, Los Angeles, CA 90001" -155583,Apple Airpods Headphones,1,150,02/27/19 10:11,"439 5th St, Austin, TX 73301" -155584,USB-C Charging Cable,1,11.95,02/19/19 11:23,"242 Ridge St, New York City, NY 10001" -155585,Bose SoundSport Headphones,1,99.99,02/22/19 14:28,"643 Johnson St, Atlanta, GA 30301" -155586,Wired Headphones,1,11.99,02/25/19 21:29,"807 Jefferson St, New York City, NY 10001" -155587,Flatscreen TV,1,300,02/26/19 22:49,"172 West St, Atlanta, GA 30301" -155588,Lightning Charging Cable,1,14.95,02/11/19 00:40,"896 Lakeview St, New York City, NY 10001" -155589,USB-C Charging Cable,1,11.95,02/15/19 13:07,"173 9th St, San Francisco, CA 94016" -155590,Bose SoundSport Headphones,1,99.99,02/15/19 13:02,"695 Park St, Boston, MA 02215" -155591,Wired Headphones,1,11.99,02/25/19 19:51,"150 Hill St, San Francisco, CA 94016" -155592,USB-C Charging Cable,1,11.95,02/02/19 19:44,"275 4th St, Seattle, WA 98101" -155593,Lightning Charging Cable,1,14.95,02/25/19 20:50,"626 Cedar St, Los Angeles, CA 90001" -155594,AA Batteries (4-pack),3,3.84,02/23/19 22:18,"437 West St, Atlanta, GA 30301" -155595,AAA Batteries (4-pack),1,2.99,02/27/19 09:44,"660 13th St, Dallas, TX 75001" -155596,Apple Airpods Headphones,1,150,02/23/19 22:58,"344 Washington St, San Francisco, CA 94016" -155597,Lightning Charging Cable,1,14.95,02/02/19 20:26,"574 Center St, Dallas, TX 75001" -155598,27in FHD Monitor,1,149.99,02/10/19 11:59,"22 Center St, New York City, NY 10001" -155599,AAA Batteries (4-pack),1,2.99,02/02/19 13:53,"437 Maple St, Los Angeles, CA 90001" -155600,Lightning Charging Cable,1,14.95,02/23/19 23:24,"734 Meadow St, Los Angeles, CA 90001" -155601,27in FHD Monitor,1,149.99,02/21/19 12:41,"394 Meadow St, Dallas, TX 75001" -155602,Bose SoundSport Headphones,1,99.99,02/26/19 10:01,"186 Cedar St, New York City, NY 10001" -155603,Wired Headphones,1,11.99,02/09/19 08:45,"45 8th St, Los Angeles, CA 90001" -155604,AAA Batteries (4-pack),2,2.99,02/13/19 23:18,"470 River St, New York City, NY 10001" -155605,Apple Airpods Headphones,1,150,02/16/19 07:34,"791 Ridge St, Atlanta, GA 30301" -155606,Lightning Charging Cable,1,14.95,02/28/19 15:30,"229 6th St, San Francisco, CA 94016" -155607,Wired Headphones,1,11.99,02/12/19 09:58,"913 7th St, San Francisco, CA 94016" -155608,USB-C Charging Cable,2,11.95,02/08/19 21:53,"207 Washington St, Boston, MA 02215" -155609,Wired Headphones,1,11.99,02/20/19 13:09,"885 Church St, New York City, NY 10001" -155610,Lightning Charging Cable,1,14.95,02/18/19 20:34,"829 Chestnut St, New York City, NY 10001" -155611,AA Batteries (4-pack),1,3.84,02/23/19 19:39,"444 Spruce St, Dallas, TX 75001" -155612,USB-C Charging Cable,1,11.95,02/06/19 11:08,"329 Wilson St, Los Angeles, CA 90001" -155613,Macbook Pro Laptop,1,1700,02/20/19 16:08,"912 14th St, Los Angeles, CA 90001" -155614,34in Ultrawide Monitor,1,379.99,02/17/19 20:17,"378 1st St, San Francisco, CA 94016" -155615,iPhone,1,700,02/10/19 21:30,"802 Hickory St, San Francisco, CA 94016" -155616,Wired Headphones,1,11.99,02/23/19 15:58,"819 Cherry St, Boston, MA 02215" -155617,Flatscreen TV,1,300,02/26/19 17:46,"674 8th St, Austin, TX 73301" -155618,iPhone,1,700,02/13/19 18:06,"363 Wilson St, Seattle, WA 98101" -155618,Lightning Charging Cable,1,14.95,02/13/19 18:06,"363 Wilson St, Seattle, WA 98101" -155619,Bose SoundSport Headphones,1,99.99,02/11/19 23:17,"508 Main St, San Francisco, CA 94016" -155620,AAA Batteries (4-pack),2,2.99,02/28/19 20:06,"661 Jefferson St, San Francisco, CA 94016" -155621,27in 4K Gaming Monitor,1,389.99,02/23/19 14:14,"143 West St, San Francisco, CA 94016" -155622,USB-C Charging Cable,1,11.95,02/23/19 09:17,"603 Highland St, New York City, NY 10001" -155623,LG Dryer,1,600.0,02/13/19 15:00,"929 Washington St, San Francisco, CA 94016" -155624,Apple Airpods Headphones,1,150,02/05/19 23:44,"854 West St, San Francisco, CA 94016" -155625,Apple Airpods Headphones,1,150,02/24/19 15:11,"360 10th St, Portland, OR 97035" -155626,iPhone,1,700,02/24/19 01:02,"288 12th St, Seattle, WA 98101" -155627,Flatscreen TV,1,300,02/08/19 18:31,"608 1st St, Boston, MA 02215" -155628,iPhone,1,700,02/10/19 18:52,"160 River St, San Francisco, CA 94016" -155628,Lightning Charging Cable,1,14.95,02/10/19 18:52,"160 River St, San Francisco, CA 94016" -155629,USB-C Charging Cable,1,11.95,02/22/19 07:22,"123 14th St, San Francisco, CA 94016" -155630,LG Washing Machine,1,600.0,02/05/19 20:58,"827 Center St, San Francisco, CA 94016" -155631,Lightning Charging Cable,1,14.95,02/03/19 10:05,"592 Elm St, New York City, NY 10001" -155632,Google Phone,1,600,02/25/19 15:33,"628 Hickory St, Atlanta, GA 30301" -155633,20in Monitor,1,109.99,02/18/19 23:30,"698 Cherry St, Los Angeles, CA 90001" -155634,Flatscreen TV,1,300,02/24/19 09:31,"952 South St, Boston, MA 02215" -155635,Lightning Charging Cable,1,14.95,02/11/19 15:27,"280 5th St, San Francisco, CA 94016" -155636,ThinkPad Laptop,1,999.99,02/21/19 14:39,"438 Church St, Los Angeles, CA 90001" -155637,Apple Airpods Headphones,1,150,02/07/19 18:21,"284 Forest St, Seattle, WA 98101" -155638,USB-C Charging Cable,2,11.95,02/09/19 22:53,"608 Madison St, San Francisco, CA 94016" -155639,34in Ultrawide Monitor,1,379.99,02/05/19 08:03,"995 Main St, Atlanta, GA 30301" -155640,Apple Airpods Headphones,1,150,02/12/19 11:42,"543 Meadow St, Atlanta, GA 30301" -155641,USB-C Charging Cable,1,11.95,02/14/19 21:01,"371 13th St, Los Angeles, CA 90001" -155642,USB-C Charging Cable,1,11.95,02/14/19 23:25,"687 12th St, Atlanta, GA 30301" -155643,Google Phone,1,600,02/18/19 22:47,"336 Jackson St, San Francisco, CA 94016" -155644,USB-C Charging Cable,1,11.95,02/18/19 11:00,"405 Wilson St, Atlanta, GA 30301" -155645,20in Monitor,1,109.99,02/02/19 05:47,"233 Lakeview St, Seattle, WA 98101" -155646,USB-C Charging Cable,1,11.95,02/21/19 10:19,"690 Pine St, Los Angeles, CA 90001" -155647,Apple Airpods Headphones,1,150,02/13/19 19:24,"11 Willow St, Boston, MA 02215" -155648,20in Monitor,1,109.99,02/22/19 20:50,"725 10th St, Los Angeles, CA 90001" -155649,27in FHD Monitor,1,149.99,02/24/19 12:18,"449 Forest St, Los Angeles, CA 90001" -155650,AAA Batteries (4-pack),1,2.99,02/19/19 10:28,"763 10th St, Austin, TX 73301" -155651,Apple Airpods Headphones,1,150,02/10/19 02:12,"766 Hickory St, Atlanta, GA 30301" -155652,Macbook Pro Laptop,1,1700,02/18/19 16:52,"999 Highland St, San Francisco, CA 94016" -155653,Lightning Charging Cable,1,14.95,02/15/19 04:06,"260 6th St, San Francisco, CA 94016" -155654,AA Batteries (4-pack),1,3.84,02/24/19 16:52,"457 Elm St, Portland, OR 97035" -155655,USB-C Charging Cable,1,11.95,02/15/19 18:40,"701 Sunset St, Atlanta, GA 30301" -155656,AAA Batteries (4-pack),1,2.99,02/10/19 00:47,"403 7th St, San Francisco, CA 94016" -155657,AAA Batteries (4-pack),1,2.99,02/13/19 20:43,"708 Hill St, New York City, NY 10001" -155658,AAA Batteries (4-pack),2,2.99,02/08/19 08:26,"819 Pine St, Portland, OR 97035" -155659,Macbook Pro Laptop,1,1700,02/05/19 17:10,"368 Pine St, Portland, OR 97035" -155660,Bose SoundSport Headphones,1,99.99,02/23/19 16:41,"133 Ridge St, Boston, MA 02215" -155661,AA Batteries (4-pack),1,3.84,02/27/19 18:32,"514 North St, San Francisco, CA 94016" -155662,34in Ultrawide Monitor,1,379.99,02/07/19 20:36,"90 Park St, New York City, NY 10001" -155663,Flatscreen TV,1,300,02/20/19 17:48,"982 1st St, Dallas, TX 75001" -155664,Bose SoundSport Headphones,1,99.99,02/13/19 16:03,"267 1st St, San Francisco, CA 94016" -155664,27in 4K Gaming Monitor,1,389.99,02/13/19 16:03,"267 1st St, San Francisco, CA 94016" -155665,Lightning Charging Cable,1,14.95,02/12/19 16:24,"166 Lakeview St, Dallas, TX 75001" -155666,USB-C Charging Cable,1,11.95,02/19/19 09:32,"298 Jackson St, New York City, NY 10001" -155667,Wired Headphones,1,11.99,02/19/19 10:21,"656 Pine St, San Francisco, CA 94016" -155668,34in Ultrawide Monitor,1,379.99,02/16/19 08:15,"570 Sunset St, San Francisco, CA 94016" -155669,Bose SoundSport Headphones,1,99.99,02/21/19 10:52,"712 7th St, San Francisco, CA 94016" -155670,USB-C Charging Cable,1,11.95,02/22/19 20:31,"150 Cedar St, Seattle, WA 98101" -155671,27in FHD Monitor,1,149.99,02/14/19 20:29,"975 Highland St, Dallas, TX 75001" -155672,Bose SoundSport Headphones,1,99.99,02/21/19 08:44,"976 Chestnut St, Austin, TX 73301" -155673,27in FHD Monitor,1,149.99,02/09/19 17:41,"687 5th St, Seattle, WA 98101" -155674,27in FHD Monitor,1,149.99,02/19/19 19:56,"312 Spruce St, Boston, MA 02215" -155674,AAA Batteries (4-pack),1,2.99,02/19/19 19:56,"312 Spruce St, Boston, MA 02215" -155675,AAA Batteries (4-pack),1,2.99,02/23/19 19:59,"492 Dogwood St, Portland, OR 97035" -155676,Wired Headphones,1,11.99,02/06/19 18:05,"805 12th St, Austin, TX 73301" -155677,Lightning Charging Cable,1,14.95,02/24/19 22:43,"898 Chestnut St, Seattle, WA 98101" -155678,Bose SoundSport Headphones,1,99.99,02/24/19 18:35,"156 River St, Seattle, WA 98101" -155679,27in FHD Monitor,1,149.99,02/07/19 00:16,"443 North St, Atlanta, GA 30301" -155680,20in Monitor,1,109.99,02/18/19 23:22,"582 Meadow St, New York City, NY 10001" -155681,Apple Airpods Headphones,1,150,02/02/19 19:01,"27 South St, San Francisco, CA 94016" -155682,USB-C Charging Cable,1,11.95,02/08/19 20:44,"914 Highland St, New York City, NY 10001" -155683,Bose SoundSport Headphones,1,99.99,02/19/19 21:07,"859 Jefferson St, San Francisco, CA 94016" -155684,AAA Batteries (4-pack),1,2.99,02/05/19 06:58,"275 Cedar St, Atlanta, GA 30301" -155685,AA Batteries (4-pack),3,3.84,02/22/19 12:04,"420 Sunset St, San Francisco, CA 94016" -155686,Wired Headphones,1,11.99,02/02/19 14:11,"838 Johnson St, Atlanta, GA 30301" -155687,Wired Headphones,1,11.99,02/10/19 18:56,"152 South St, Los Angeles, CA 90001" -155688,AA Batteries (4-pack),1,3.84,02/21/19 23:14,"993 Hill St, Austin, TX 73301" -155689,Apple Airpods Headphones,1,150,02/12/19 12:20,"802 River St, San Francisco, CA 94016" -155690,AA Batteries (4-pack),1,3.84,02/10/19 11:27,"982 Church St, San Francisco, CA 94016" -155691,Macbook Pro Laptop,1,1700,02/24/19 01:30,"666 Jefferson St, New York City, NY 10001" -155692,AAA Batteries (4-pack),2,2.99,02/19/19 21:17,"114 7th St, Portland, ME 04101" -155693,Apple Airpods Headphones,1,150,02/11/19 12:55,"163 Cedar St, San Francisco, CA 94016" -155694,27in FHD Monitor,1,149.99,02/03/19 18:34,"449 Madison St, New York City, NY 10001" -155695,ThinkPad Laptop,1,999.99,02/10/19 21:23,"432 West St, Atlanta, GA 30301" -155696,iPhone,1,700,02/28/19 11:48,"340 1st St, Seattle, WA 98101" -155697,AA Batteries (4-pack),1,3.84,02/13/19 15:17,"961 Spruce St, Boston, MA 02215" -155697,AA Batteries (4-pack),1,3.84,02/13/19 15:17,"961 Spruce St, Boston, MA 02215" -155698,iPhone,1,700,02/15/19 07:12,"683 Adams St, Los Angeles, CA 90001" -155699,27in 4K Gaming Monitor,1,389.99,02/28/19 00:39,"880 Cherry St, Boston, MA 02215" -155700,USB-C Charging Cable,2,11.95,02/01/19 15:43,"696 Sunset St, San Francisco, CA 94016" -155701,27in 4K Gaming Monitor,1,389.99,02/22/19 11:38,"304 Sunset St, New York City, NY 10001" -155702,Wired Headphones,1,11.99,02/13/19 14:45,"946 12th St, Dallas, TX 75001" -155703,Macbook Pro Laptop,1,1700,02/17/19 16:05,"381 2nd St, Atlanta, GA 30301" -155704,Wired Headphones,1,11.99,02/17/19 12:46,"422 Adams St, San Francisco, CA 94016" -155705,27in 4K Gaming Monitor,1,389.99,02/17/19 22:27,"838 7th St, San Francisco, CA 94016" -155706,iPhone,1,700,02/13/19 10:40,"953 River St, New York City, NY 10001" -155706,Wired Headphones,1,11.99,02/13/19 10:40,"953 River St, New York City, NY 10001" -155707,AA Batteries (4-pack),1,3.84,02/15/19 23:00,"717 Adams St, New York City, NY 10001" -155708,iPhone,1,700,02/11/19 18:51,"157 1st St, San Francisco, CA 94016" -155709,Apple Airpods Headphones,1,150,02/21/19 22:20,"768 Willow St, Seattle, WA 98101" -155710,AA Batteries (4-pack),1,3.84,02/18/19 09:00,"45 Jefferson St, San Francisco, CA 94016" -155711,Vareebadd Phone,1,400,02/11/19 18:33,"372 Willow St, Los Angeles, CA 90001" -155711,USB-C Charging Cable,1,11.95,02/11/19 18:33,"372 Willow St, Los Angeles, CA 90001" -155712,27in 4K Gaming Monitor,1,389.99,02/04/19 21:09,"467 Jackson St, Portland, OR 97035" -155713,iPhone,1,700,02/18/19 08:14,"826 Wilson St, San Francisco, CA 94016" -155714,Wired Headphones,1,11.99,02/17/19 06:10,"106 14th St, San Francisco, CA 94016" -155715,Lightning Charging Cable,1,14.95,02/15/19 10:34,"163 Sunset St, New York City, NY 10001" -155716,Lightning Charging Cable,1,14.95,02/17/19 00:02,"628 Hickory St, Seattle, WA 98101" -155717,AA Batteries (4-pack),2,3.84,02/28/19 00:21,"134 North St, San Francisco, CA 94016" -155718,AAA Batteries (4-pack),1,2.99,02/04/19 14:06,"836 Hickory St, Seattle, WA 98101" -155719,34in Ultrawide Monitor,1,379.99,02/19/19 17:09,"338 5th St, New York City, NY 10001" -155720,Apple Airpods Headphones,1,150,02/22/19 16:57,"678 Johnson St, Atlanta, GA 30301" -155721,Google Phone,1,600,02/13/19 23:45,"820 Adams St, San Francisco, CA 94016" -155722,Apple Airpods Headphones,1,150,02/25/19 09:00,"520 Wilson St, San Francisco, CA 94016" -155723,Lightning Charging Cable,1,14.95,02/03/19 18:09,"585 6th St, Boston, MA 02215" -155724,AAA Batteries (4-pack),2,2.99,02/14/19 14:55,"34 Lincoln St, Portland, OR 97035" -155725,Apple Airpods Headphones,1,150,02/18/19 10:05,"982 Hickory St, San Francisco, CA 94016" -155726,Apple Airpods Headphones,1,150,02/18/19 20:24,"621 1st St, New York City, NY 10001" -155727,AA Batteries (4-pack),1,3.84,02/11/19 14:16,"776 10th St, New York City, NY 10001" -155728,iPhone,1,700,02/13/19 15:17,"206 Adams St, New York City, NY 10001" -155729,ThinkPad Laptop,1,999.99,02/16/19 20:13,"629 Adams St, New York City, NY 10001" -155730,Apple Airpods Headphones,1,150,02/17/19 14:16,"348 Pine St, Boston, MA 02215" -155731,AAA Batteries (4-pack),2,2.99,02/16/19 13:29,"992 13th St, New York City, NY 10001" -155732,USB-C Charging Cable,1,11.95,02/06/19 11:58,"145 7th St, Seattle, WA 98101" -155733,27in FHD Monitor,1,149.99,02/23/19 15:29,"2 Hill St, San Francisco, CA 94016" -155734,Macbook Pro Laptop,1,1700,02/16/19 19:25,"400 Hill St, Dallas, TX 75001" -155735,AA Batteries (4-pack),2,3.84,02/28/19 13:04,"969 9th St, Los Angeles, CA 90001" -155736,Lightning Charging Cable,1,14.95,02/10/19 06:28,"475 5th St, San Francisco, CA 94016" -155737,Apple Airpods Headphones,1,150,02/03/19 18:15,"555 Park St, San Francisco, CA 94016" -155738,AAA Batteries (4-pack),1,2.99,02/05/19 18:40,"320 14th St, Portland, OR 97035" -155739,Wired Headphones,1,11.99,02/09/19 11:18,"888 Madison St, Boston, MA 02215" -155740,27in 4K Gaming Monitor,1,389.99,02/15/19 22:17,"189 Walnut St, Portland, OR 97035" -155741,AA Batteries (4-pack),2,3.84,02/05/19 11:19,"218 12th St, Los Angeles, CA 90001" -155742,Macbook Pro Laptop,1,1700,02/27/19 08:16,"687 Highland St, Seattle, WA 98101" -155743,Lightning Charging Cable,1,14.95,02/16/19 21:09,"40 Johnson St, Austin, TX 73301" -155744,Wired Headphones,1,11.99,02/24/19 09:27,"316 Hickory St, Los Angeles, CA 90001" -155745,Flatscreen TV,1,300,02/23/19 20:58,"738 Dogwood St, San Francisco, CA 94016" -155746,USB-C Charging Cable,1,11.95,02/27/19 20:27,"999 Willow St, Los Angeles, CA 90001" -155747,ThinkPad Laptop,1,999.99,02/27/19 16:09,"198 West St, Los Angeles, CA 90001" -155748,AA Batteries (4-pack),1,3.84,02/16/19 14:52,"832 Adams St, Los Angeles, CA 90001" -155749,AA Batteries (4-pack),1,3.84,02/05/19 12:09,"970 Washington St, Portland, OR 97035" -155750,Wired Headphones,1,11.99,02/28/19 15:35,"714 Washington St, San Francisco, CA 94016" -155751,Wired Headphones,1,11.99,02/06/19 13:47,"887 North St, San Francisco, CA 94016" -155752,Lightning Charging Cable,1,14.95,02/02/19 15:15,"682 Ridge St, Portland, OR 97035" -155753,AAA Batteries (4-pack),3,2.99,02/09/19 19:34,"908 9th St, Seattle, WA 98101" -155754,Lightning Charging Cable,1,14.95,02/20/19 14:36,"29 1st St, Portland, OR 97035" -155755,Apple Airpods Headphones,1,150,02/20/19 10:44,"417 Dogwood St, Los Angeles, CA 90001" -155756,Apple Airpods Headphones,1,150,02/24/19 16:57,"500 Walnut St, Boston, MA 02215" -155757,USB-C Charging Cable,1,11.95,02/17/19 18:59,"474 11th St, New York City, NY 10001" -155758,Lightning Charging Cable,1,14.95,02/15/19 12:53,"560 Lakeview St, San Francisco, CA 94016" -155759,AA Batteries (4-pack),1,3.84,02/16/19 23:10,"939 1st St, Los Angeles, CA 90001" -155760,Lightning Charging Cable,1,14.95,02/06/19 11:17,"903 Main St, San Francisco, CA 94016" -155761,Wired Headphones,1,11.99,02/13/19 18:40,"746 13th St, New York City, NY 10001" -155762,Vareebadd Phone,1,400,02/04/19 18:55,"121 Ridge St, New York City, NY 10001" -155762,USB-C Charging Cable,1,11.95,02/04/19 18:55,"121 Ridge St, New York City, NY 10001" -155763,27in 4K Gaming Monitor,1,389.99,02/17/19 00:44,"881 Walnut St, Los Angeles, CA 90001" -155764,USB-C Charging Cable,1,11.95,02/07/19 14:40,"587 Washington St, New York City, NY 10001" -155765,USB-C Charging Cable,1,11.95,02/18/19 09:50,"546 Lakeview St, New York City, NY 10001" -155766,Vareebadd Phone,1,400,02/24/19 19:38,"512 Cherry St, Boston, MA 02215" -155766,Wired Headphones,1,11.99,02/24/19 19:38,"512 Cherry St, Boston, MA 02215" -155767,Bose SoundSport Headphones,1,99.99,02/27/19 23:57,"800 West St, Seattle, WA 98101" -155767,27in 4K Gaming Monitor,1,389.99,02/27/19 23:57,"800 West St, Seattle, WA 98101" -155768,Apple Airpods Headphones,1,150,02/28/19 14:00,"701 8th St, Atlanta, GA 30301" -155769,AA Batteries (4-pack),1,3.84,02/13/19 23:19,"822 8th St, San Francisco, CA 94016" -155770,iPhone,1,700,02/14/19 20:02,"621 Pine St, San Francisco, CA 94016" -155771,USB-C Charging Cable,1,11.95,02/06/19 20:00,"698 Willow St, Los Angeles, CA 90001" -155772,Wired Headphones,1,11.99,02/14/19 20:24,"974 South St, Seattle, WA 98101" -155773,AA Batteries (4-pack),1,3.84,02/25/19 21:21,"296 5th St, Portland, OR 97035" -155774,USB-C Charging Cable,1,11.95,02/04/19 16:57,"367 6th St, Austin, TX 73301" -155775,AA Batteries (4-pack),1,3.84,02/18/19 11:35,"596 Park St, Los Angeles, CA 90001" -155776,Wired Headphones,1,11.99,02/15/19 18:59,"807 12th St, San Francisco, CA 94016" -155777,27in 4K Gaming Monitor,1,389.99,02/20/19 21:14,"495 Dogwood St, Portland, OR 97035" -155778,AA Batteries (4-pack),1,3.84,02/24/19 15:21,"98 Walnut St, San Francisco, CA 94016" -155779,27in 4K Gaming Monitor,1,389.99,02/28/19 21:49,"937 Park St, Los Angeles, CA 90001" -155780,Vareebadd Phone,1,400,02/04/19 12:37,"326 Cherry St, Los Angeles, CA 90001" -155781,Apple Airpods Headphones,1,150,02/03/19 01:08,"123 Cherry St, Dallas, TX 75001" -155782,Wired Headphones,1,11.99,02/12/19 08:58,"205 Maple St, Dallas, TX 75001" -155783,Lightning Charging Cable,1,14.95,02/05/19 21:33,"131 Jackson St, San Francisco, CA 94016" -155784,Bose SoundSport Headphones,1,99.99,02/28/19 18:41,"293 8th St, Los Angeles, CA 90001" -155785,AA Batteries (4-pack),1,3.84,02/14/19 11:03,"633 6th St, New York City, NY 10001" -155786,USB-C Charging Cable,1,11.95,02/27/19 10:18,"166 Maple St, Dallas, TX 75001" -155787,Lightning Charging Cable,1,14.95,02/02/19 04:18,"771 Cherry St, Portland, OR 97035" -155788,Macbook Pro Laptop,1,1700,02/22/19 21:06,"714 10th St, San Francisco, CA 94016" -155789,AA Batteries (4-pack),2,3.84,02/14/19 10:02,"464 2nd St, Los Angeles, CA 90001" -155790,Macbook Pro Laptop,1,1700,02/15/19 17:17,"9 Jefferson St, Boston, MA 02215" -155791,27in 4K Gaming Monitor,1,389.99,02/08/19 06:50,"630 Lakeview St, Dallas, TX 75001" -155792,AAA Batteries (4-pack),1,2.99,02/26/19 11:29,"587 Cedar St, Los Angeles, CA 90001" -155793,AA Batteries (4-pack),1,3.84,02/05/19 09:56,"89 Madison St, Boston, MA 02215" -155794,AAA Batteries (4-pack),1,2.99,02/04/19 15:10,"545 Lakeview St, New York City, NY 10001" -155795,Wired Headphones,1,11.99,02/27/19 06:45,"519 Highland St, San Francisco, CA 94016" -155796,Google Phone,1,600,02/18/19 13:53,"394 10th St, San Francisco, CA 94016" -155797,20in Monitor,1,109.99,02/09/19 14:42,"756 Spruce St, Atlanta, GA 30301" -155798,AA Batteries (4-pack),1,3.84,02/13/19 12:53,"101 Lincoln St, Los Angeles, CA 90001" -155799,AAA Batteries (4-pack),1,2.99,02/05/19 21:24,"608 Church St, San Francisco, CA 94016" -155800,Lightning Charging Cable,1,14.95,02/10/19 17:33,"444 Ridge St, Los Angeles, CA 90001" -155801,34in Ultrawide Monitor,1,379.99,02/23/19 16:43,"318 6th St, San Francisco, CA 94016" -155802,Apple Airpods Headphones,1,150,02/27/19 01:26,"538 River St, Los Angeles, CA 90001" -155803,AA Batteries (4-pack),1,3.84,02/21/19 18:57,"76 Pine St, Atlanta, GA 30301" -155804,AA Batteries (4-pack),1,3.84,02/25/19 22:40,"894 Hill St, Seattle, WA 98101" -155805,Google Phone,1,600,02/01/19 21:52,"729 Johnson St, New York City, NY 10001" -155805,USB-C Charging Cable,1,11.95,02/01/19 21:52,"729 Johnson St, New York City, NY 10001" -155806,Bose SoundSport Headphones,1,99.99,02/21/19 22:49,"538 4th St, Boston, MA 02215" -155807,Lightning Charging Cable,1,14.95,02/10/19 04:41,"994 6th St, Atlanta, GA 30301" -155808,20in Monitor,1,109.99,02/28/19 12:56,"920 Cedar St, Portland, OR 97035" -155809,USB-C Charging Cable,1,11.95,02/05/19 21:20,"968 Jefferson St, San Francisco, CA 94016" -155810,34in Ultrawide Monitor,1,379.99,02/19/19 11:04,"491 Lakeview St, Seattle, WA 98101" -155811,Flatscreen TV,1,300,02/15/19 18:24,"503 Pine St, New York City, NY 10001" -155812,Flatscreen TV,1,300,02/06/19 07:49,"824 Meadow St, San Francisco, CA 94016" -155813,Wired Headphones,1,11.99,02/14/19 18:59,"742 Washington St, San Francisco, CA 94016" -155814,Lightning Charging Cable,1,14.95,02/03/19 22:31,"383 Madison St, San Francisco, CA 94016" -155815,ThinkPad Laptop,1,999.99,02/28/19 16:53,"468 North St, San Francisco, CA 94016" -155816,27in FHD Monitor,1,149.99,02/06/19 17:37,"747 Dogwood St, Austin, TX 73301" -155817,USB-C Charging Cable,1,11.95,02/08/19 16:54,"917 Elm St, San Francisco, CA 94016" -155818,AA Batteries (4-pack),1,3.84,02/18/19 23:09,"955 6th St, Portland, ME 04101" -155819,Flatscreen TV,1,300,02/20/19 05:01,"339 Walnut St, San Francisco, CA 94016" -155820,AAA Batteries (4-pack),4,2.99,02/13/19 06:47,"536 Sunset St, San Francisco, CA 94016" -155821,Bose SoundSport Headphones,1,99.99,02/03/19 17:47,"524 Hickory St, Boston, MA 02215" -155822,Lightning Charging Cable,1,14.95,02/12/19 09:14,"286 Lincoln St, Los Angeles, CA 90001" -155823,USB-C Charging Cable,1,11.95,02/13/19 12:08,"440 Park St, Los Angeles, CA 90001" -155824,27in 4K Gaming Monitor,1,389.99,02/13/19 13:13,"933 Park St, San Francisco, CA 94016" -155825,AAA Batteries (4-pack),1,2.99,02/17/19 15:50,"633 7th St, New York City, NY 10001" -155826,USB-C Charging Cable,1,11.95,02/07/19 11:50,"506 9th St, New York City, NY 10001" -155827,AA Batteries (4-pack),1,3.84,02/22/19 17:23,"786 Chestnut St, Dallas, TX 75001" -155828,Google Phone,1,600,02/15/19 13:03,"662 Cherry St, New York City, NY 10001" -155828,Wired Headphones,1,11.99,02/15/19 13:03,"662 Cherry St, New York City, NY 10001" -155829,AAA Batteries (4-pack),1,2.99,02/10/19 07:06,"622 Spruce St, Los Angeles, CA 90001" -155830,Apple Airpods Headphones,1,150,02/26/19 11:33,"455 Jefferson St, New York City, NY 10001" -155831,Apple Airpods Headphones,1,150,02/18/19 14:05,"60 Hickory St, San Francisco, CA 94016" -155832,Apple Airpods Headphones,1,150,02/08/19 11:35,"700 Walnut St, Los Angeles, CA 90001" -155833,AAA Batteries (4-pack),2,2.99,02/06/19 07:34,"211 5th St, San Francisco, CA 94016" -155834,Apple Airpods Headphones,1,150,02/09/19 21:17,"981 Ridge St, San Francisco, CA 94016" -155835,Lightning Charging Cable,1,14.95,02/04/19 12:16,"780 14th St, New York City, NY 10001" -155836,Lightning Charging Cable,1,14.95,02/26/19 18:16,"943 Madison St, Dallas, TX 75001" -155837,AA Batteries (4-pack),1,3.84,02/06/19 19:19,"655 Johnson St, Dallas, TX 75001" -155838,USB-C Charging Cable,1,11.95,02/15/19 16:17,"97 Park St, Portland, OR 97035" -155839,AAA Batteries (4-pack),1,2.99,02/05/19 14:58,"629 1st St, New York City, NY 10001" -155840,AAA Batteries (4-pack),1,2.99,02/23/19 19:53,"791 10th St, San Francisco, CA 94016" -155841,Lightning Charging Cable,1,14.95,02/23/19 10:44,"240 13th St, Atlanta, GA 30301" -155842,27in FHD Monitor,1,149.99,02/25/19 14:57,"729 Hickory St, Portland, OR 97035" -155843,USB-C Charging Cable,2,11.95,02/26/19 07:24,"667 Dogwood St, Dallas, TX 75001" -155844,Apple Airpods Headphones,1,150,02/05/19 18:47,"262 12th St, Atlanta, GA 30301" -155845,USB-C Charging Cable,1,11.95,02/24/19 19:06,"646 5th St, Seattle, WA 98101" -155846,Wired Headphones,1,11.99,02/05/19 05:47,"509 Jackson St, Seattle, WA 98101" -155847,AAA Batteries (4-pack),1,2.99,02/14/19 19:40,"440 9th St, Austin, TX 73301" -155848,Google Phone,1,600,02/12/19 17:14,"466 1st St, New York City, NY 10001" -155849,27in 4K Gaming Monitor,1,389.99,02/17/19 19:36,"166 Madison St, San Francisco, CA 94016" -155850,AA Batteries (4-pack),1,3.84,02/27/19 16:40,"240 Forest St, Seattle, WA 98101" -155851,AAA Batteries (4-pack),1,2.99,02/09/19 09:37,"67 5th St, Portland, OR 97035" -155852,Flatscreen TV,1,300,02/22/19 12:30,"475 Highland St, Atlanta, GA 30301" -155853,AA Batteries (4-pack),1,3.84,02/07/19 21:37,"70 2nd St, Boston, MA 02215" -155854,27in FHD Monitor,1,149.99,02/02/19 20:13,"551 Maple St, New York City, NY 10001" -155855,AAA Batteries (4-pack),2,2.99,02/01/19 16:23,"554 Lincoln St, Los Angeles, CA 90001" -155856,Apple Airpods Headphones,1,150,02/12/19 12:26,"588 9th St, Boston, MA 02215" -155857,USB-C Charging Cable,2,11.95,02/28/19 16:32,"563 Lakeview St, New York City, NY 10001" -155858,AAA Batteries (4-pack),1,2.99,02/23/19 13:14,"854 South St, Boston, MA 02215" -155859,USB-C Charging Cable,1,11.95,02/06/19 11:55,"512 4th St, Los Angeles, CA 90001" -155860,27in 4K Gaming Monitor,1,389.99,02/24/19 14:32,"832 South St, San Francisco, CA 94016" -155861,Flatscreen TV,1,300,02/04/19 07:54,"266 Sunset St, Seattle, WA 98101" -155862,Lightning Charging Cable,1,14.95,02/09/19 12:11,"5 Highland St, New York City, NY 10001" -155863,Apple Airpods Headphones,1,150,02/25/19 15:29,"823 2nd St, San Francisco, CA 94016" -155864,27in FHD Monitor,1,149.99,02/11/19 18:17,"860 Church St, Boston, MA 02215" -155865,Bose SoundSport Headphones,1,99.99,02/14/19 20:27,"905 Jefferson St, San Francisco, CA 94016" -155866,USB-C Charging Cable,1,11.95,02/12/19 22:01,"48 Park St, Austin, TX 73301" -155867,Wired Headphones,2,11.99,02/23/19 14:50,"759 Jackson St, Portland, OR 97035" -155868,USB-C Charging Cable,1,11.95,02/17/19 19:56,"363 Park St, New York City, NY 10001" -155869,27in FHD Monitor,1,149.99,02/17/19 14:14,"590 Lincoln St, Boston, MA 02215" -155870,ThinkPad Laptop,1,999.99,02/11/19 08:09,"21 8th St, Portland, ME 04101" -155871,AA Batteries (4-pack),2,3.84,02/09/19 22:46,"989 Maple St, Atlanta, GA 30301" -155872,Lightning Charging Cable,1,14.95,02/02/19 11:00,"31 7th St, San Francisco, CA 94016" -155873,27in FHD Monitor,1,149.99,02/10/19 20:33,"268 Dogwood St, Portland, ME 04101" -155874,20in Monitor,1,109.99,02/09/19 14:55,"337 West St, Austin, TX 73301" -155875,AA Batteries (4-pack),1,3.84,02/24/19 18:20,"958 Park St, Portland, OR 97035" -155876,AAA Batteries (4-pack),1,2.99,02/21/19 16:41,"337 13th St, San Francisco, CA 94016" -155877,AA Batteries (4-pack),1,3.84,02/11/19 16:28,"953 Dogwood St, Los Angeles, CA 90001" -155878,Apple Airpods Headphones,1,150,02/04/19 01:21,"204 7th St, San Francisco, CA 94016" -155879,27in FHD Monitor,1,149.99,02/20/19 16:25,"810 Jackson St, Boston, MA 02215" -155880,AAA Batteries (4-pack),2,2.99,02/04/19 17:26,"643 South St, Seattle, WA 98101" -155881,Bose SoundSport Headphones,1,99.99,02/02/19 21:53,"714 South St, New York City, NY 10001" -155882,ThinkPad Laptop,1,999.99,02/18/19 16:47,"740 Sunset St, Atlanta, GA 30301" -155883,AA Batteries (4-pack),2,3.84,02/07/19 10:48,"152 13th St, Boston, MA 02215" -155884,Lightning Charging Cable,1,14.95,02/05/19 19:58,"759 Lincoln St, Seattle, WA 98101" -155885,AAA Batteries (4-pack),1,2.99,02/05/19 08:34,"626 Elm St, New York City, NY 10001" -155886,AAA Batteries (4-pack),1,2.99,02/23/19 13:15,"23 Chestnut St, San Francisco, CA 94016" -155887,27in FHD Monitor,1,149.99,02/11/19 16:16,"787 6th St, Austin, TX 73301" -155888,AA Batteries (4-pack),1,3.84,02/16/19 18:02,"512 Meadow St, San Francisco, CA 94016" -155889,AAA Batteries (4-pack),1,2.99,02/13/19 12:08,"372 Adams St, Boston, MA 02215" -155890,Lightning Charging Cable,1,14.95,02/12/19 16:38,"711 Lakeview St, Atlanta, GA 30301" -155891,20in Monitor,2,109.99,02/21/19 23:24,"471 West St, Portland, OR 97035" -155892,Apple Airpods Headphones,1,150,02/24/19 15:31,"968 12th St, Portland, ME 04101" -155893,Apple Airpods Headphones,1,150,02/25/19 19:36,"659 Highland St, San Francisco, CA 94016" -155894,AA Batteries (4-pack),1,3.84,02/22/19 11:11,"686 12th St, San Francisco, CA 94016" -155895,iPhone,1,700,02/01/19 21:33,"566 Cherry St, Portland, OR 97035" -155896,Macbook Pro Laptop,1,1700,02/11/19 23:33,"389 Maple St, Portland, OR 97035" -155897,Apple Airpods Headphones,1,150,02/07/19 19:32,"957 9th St, Boston, MA 02215" -155898,AA Batteries (4-pack),1,3.84,02/06/19 22:49,"565 8th St, New York City, NY 10001" -155899,Wired Headphones,2,11.99,02/08/19 10:09,"875 Ridge St, Dallas, TX 75001" -155900,Lightning Charging Cable,2,14.95,02/10/19 20:43,"658 Lincoln St, Seattle, WA 98101" -155901,AA Batteries (4-pack),1,3.84,02/23/19 20:26,"659 8th St, New York City, NY 10001" -155902,34in Ultrawide Monitor,1,379.99,02/01/19 12:56,"233 Walnut St, New York City, NY 10001" -155903,27in FHD Monitor,1,149.99,02/15/19 19:19,"335 Church St, Seattle, WA 98101" -155904,USB-C Charging Cable,1,11.95,02/23/19 14:00,"377 6th St, San Francisco, CA 94016" -155905,Apple Airpods Headphones,1,150,02/05/19 18:58,"572 Dogwood St, Seattle, WA 98101" -155906,Bose SoundSport Headphones,1,99.99,02/12/19 10:37,"273 1st St, San Francisco, CA 94016" -155907,USB-C Charging Cable,1,11.95,02/16/19 10:51,"944 Spruce St, San Francisco, CA 94016" -155908,20in Monitor,1,109.99,02/25/19 16:16,"205 4th St, Portland, ME 04101" -155909,Lightning Charging Cable,1,14.95,02/19/19 01:52,"390 River St, Austin, TX 73301" -155910,iPhone,1,700,02/08/19 19:23,"663 Hickory St, San Francisco, CA 94016" -155910,Apple Airpods Headphones,1,150,02/08/19 19:23,"663 Hickory St, San Francisco, CA 94016" -155911,Flatscreen TV,1,300,02/10/19 13:09,"81 Highland St, San Francisco, CA 94016" -155912,Macbook Pro Laptop,1,1700,02/09/19 23:10,"111 12th St, San Francisco, CA 94016" -155913,Wired Headphones,1,11.99,02/25/19 07:36,"322 14th St, San Francisco, CA 94016" -155914,ThinkPad Laptop,1,999.99,02/04/19 13:07,"600 Ridge St, Atlanta, GA 30301" -155915,iPhone,1,700,02/12/19 08:40,"991 Center St, Atlanta, GA 30301" -155915,Lightning Charging Cable,1,14.95,02/12/19 08:40,"991 Center St, Atlanta, GA 30301" -155916,Wired Headphones,1,11.99,02/22/19 06:27,"642 Lincoln St, San Francisco, CA 94016" -155917,Lightning Charging Cable,1,14.95,02/20/19 13:46,"834 10th St, New York City, NY 10001" -155918,Bose SoundSport Headphones,1,99.99,02/09/19 09:26,"161 Lakeview St, New York City, NY 10001" -155919,ThinkPad Laptop,1,999.99,02/21/19 00:35,"573 Highland St, Atlanta, GA 30301" -155920,Wired Headphones,1,11.99,02/19/19 01:07,"908 Walnut St, Los Angeles, CA 90001" -155921,Lightning Charging Cable,1,14.95,02/19/19 13:30,"845 Hickory St, Atlanta, GA 30301" -155922,Bose SoundSport Headphones,1,99.99,02/09/19 05:30,"968 Dogwood St, Portland, OR 97035" -155923,Lightning Charging Cable,1,14.95,02/16/19 09:19,"4 Sunset St, San Francisco, CA 94016" -155924,Lightning Charging Cable,1,14.95,02/12/19 18:44,"635 11th St, Atlanta, GA 30301" -155925,AAA Batteries (4-pack),1,2.99,02/06/19 11:35,"733 14th St, San Francisco, CA 94016" -155926,iPhone,1,700,02/20/19 23:01,"763 Adams St, San Francisco, CA 94016" -155927,Lightning Charging Cable,1,14.95,02/11/19 20:36,"916 Highland St, Seattle, WA 98101" -155928,AA Batteries (4-pack),1,3.84,02/28/19 15:37,"96 River St, Dallas, TX 75001" -155929,USB-C Charging Cable,1,11.95,02/25/19 16:47,"939 Walnut St, New York City, NY 10001" -155930,AAA Batteries (4-pack),1,2.99,02/13/19 03:17,"527 Elm St, Seattle, WA 98101" -155931,USB-C Charging Cable,1,11.95,02/11/19 13:31,"805 Jefferson St, Los Angeles, CA 90001" -155932,Wired Headphones,1,11.99,02/22/19 14:55,"776 Cherry St, San Francisco, CA 94016" -155933,Wired Headphones,1,11.99,02/02/19 12:25,"63 Lincoln St, Austin, TX 73301" -155934,USB-C Charging Cable,1,11.95,02/27/19 16:21,"36 11th St, Atlanta, GA 30301" -155935,Google Phone,1,600,02/05/19 14:49,"37 Hill St, Portland, OR 97035" -155935,USB-C Charging Cable,2,11.95,02/05/19 14:49,"37 Hill St, Portland, OR 97035" -155936,iPhone,1,700,02/08/19 00:29,"435 Meadow St, Portland, OR 97035" -155937,Bose SoundSport Headphones,1,99.99,02/18/19 04:38,"746 Sunset St, Los Angeles, CA 90001" -155938,AA Batteries (4-pack),1,3.84,02/09/19 11:52,"223 14th St, San Francisco, CA 94016" -155939,Lightning Charging Cable,1,14.95,02/09/19 09:42,"633 1st St, San Francisco, CA 94016" -155940,34in Ultrawide Monitor,1,379.99,02/11/19 18:30,"778 Hill St, Portland, ME 04101" -155941,USB-C Charging Cable,2,11.95,02/03/19 22:26,"190 River St, Boston, MA 02215" -155942,Apple Airpods Headphones,1,150,02/18/19 16:26,"107 Main St, Boston, MA 02215" -155943,Wired Headphones,1,11.99,02/27/19 12:42,"598 Wilson St, New York City, NY 10001" -155944,iPhone,1,700,02/18/19 10:32,"92 Madison St, San Francisco, CA 94016" -155945,Lightning Charging Cable,1,14.95,02/10/19 04:12,"272 Chestnut St, Seattle, WA 98101" -155946,Wired Headphones,1,11.99,02/20/19 22:48,"906 10th St, San Francisco, CA 94016" -155947,20in Monitor,1,109.99,02/04/19 21:24,"615 Lake St, San Francisco, CA 94016" -155948,AA Batteries (4-pack),2,3.84,02/23/19 11:41,"823 11th St, Portland, OR 97035" -155949,Lightning Charging Cable,1,14.95,02/15/19 08:55,"327 Cherry St, Austin, TX 73301" -155950,ThinkPad Laptop,1,999.99,02/03/19 10:57,"220 4th St, Los Angeles, CA 90001" -155951,Lightning Charging Cable,1,14.95,02/17/19 18:42,"829 Johnson St, San Francisco, CA 94016" -155952,AA Batteries (4-pack),2,3.84,02/19/19 07:53,"355 Park St, Seattle, WA 98101" -155953,iPhone,1,700,02/28/19 10:31,"829 Elm St, Los Angeles, CA 90001" -155954,Flatscreen TV,1,300,02/11/19 15:41,"528 Washington St, Portland, OR 97035" -155955,Lightning Charging Cable,1,14.95,02/16/19 01:23,"701 Forest St, San Francisco, CA 94016" -155956,Wired Headphones,1,11.99,02/02/19 23:49,"619 Church St, New York City, NY 10001" -155957,27in FHD Monitor,1,149.99,02/11/19 09:11,"452 Cedar St, Los Angeles, CA 90001" -155958,Apple Airpods Headphones,1,150,02/02/19 13:01,"617 Spruce St, Boston, MA 02215" -155959,ThinkPad Laptop,1,999.99,02/19/19 16:42,"288 Willow St, Seattle, WA 98101" -155960,USB-C Charging Cable,1,11.95,02/10/19 04:55,"311 River St, San Francisco, CA 94016" -,,,,, -155961,34in Ultrawide Monitor,1,379.99,02/28/19 10:44,"832 12th St, Portland, OR 97035" -155962,Apple Airpods Headphones,1,150,02/06/19 21:00,"491 Park St, Boston, MA 02215" -155963,Macbook Pro Laptop,1,1700,02/23/19 07:18,"512 Park St, Los Angeles, CA 90001" -155964,Wired Headphones,1,11.99,02/13/19 20:15,"461 8th St, San Francisco, CA 94016" -155965,Wired Headphones,1,11.99,02/24/19 10:51,"751 Madison St, San Francisco, CA 94016" -155966,USB-C Charging Cable,1,11.95,02/19/19 15:04,"505 Hill St, San Francisco, CA 94016" -155967,AAA Batteries (4-pack),1,2.99,02/13/19 09:19,"598 9th St, New York City, NY 10001" -155968,Vareebadd Phone,1,400,02/16/19 17:35,"145 13th St, Boston, MA 02215" -155969,27in FHD Monitor,1,149.99,02/22/19 09:12,"833 Johnson St, Boston, MA 02215" -155970,USB-C Charging Cable,1,11.95,02/21/19 20:58,"520 Washington St, Los Angeles, CA 90001" -155971,Lightning Charging Cable,1,14.95,02/11/19 14:19,"853 Sunset St, Los Angeles, CA 90001" -155972,Bose SoundSport Headphones,1,99.99,02/20/19 18:54,"869 Park St, Portland, OR 97035" -155973,USB-C Charging Cable,1,11.95,02/18/19 23:17,"306 6th St, San Francisco, CA 94016" -155974,Wired Headphones,1,11.99,02/11/19 13:48,"659 Cherry St, San Francisco, CA 94016" -155975,20in Monitor,1,109.99,02/27/19 17:12,"499 8th St, Seattle, WA 98101" -155976,Wired Headphones,1,11.99,02/09/19 09:53,"849 Walnut St, Los Angeles, CA 90001" -155977,20in Monitor,1,109.99,02/28/19 21:29,"642 Meadow St, Boston, MA 02215" -155978,Lightning Charging Cable,1,14.95,02/18/19 11:46,"900 Madison St, Seattle, WA 98101" -155979,Bose SoundSport Headphones,1,99.99,02/11/19 20:42,"748 9th St, San Francisco, CA 94016" -155980,Wired Headphones,1,11.99,02/05/19 20:11,"580 Pine St, San Francisco, CA 94016" -155981,Flatscreen TV,1,300,02/26/19 19:27,"782 Lincoln St, Los Angeles, CA 90001" -,,,,, -155982,ThinkPad Laptop,1,999.99,02/25/19 09:33,"228 Ridge St, Atlanta, GA 30301" -155983,Apple Airpods Headphones,1,150,02/25/19 10:36,"876 5th St, San Francisco, CA 94016" -155984,iPhone,1,700,02/22/19 20:13,"570 Center St, San Francisco, CA 94016" -155985,20in Monitor,1,109.99,02/27/19 15:40,"955 Wilson St, San Francisco, CA 94016" -155986,iPhone,1,700,02/07/19 13:56,"706 2nd St, Boston, MA 02215" -155987,AA Batteries (4-pack),1,3.84,02/25/19 12:22,"840 8th St, San Francisco, CA 94016" -155988,AAA Batteries (4-pack),1,2.99,02/15/19 12:31,"7 Highland St, Los Angeles, CA 90001" -155989,Google Phone,1,600,02/26/19 16:11,"747 Center St, San Francisco, CA 94016" -155990,Wired Headphones,1,11.99,02/03/19 08:56,"188 1st St, San Francisco, CA 94016" -155991,Bose SoundSport Headphones,1,99.99,02/13/19 13:12,"444 10th St, San Francisco, CA 94016" -155992,USB-C Charging Cable,1,11.95,02/12/19 17:46,"744 Park St, San Francisco, CA 94016" -155992,Macbook Pro Laptop,1,1700,02/12/19 17:46,"744 Park St, San Francisco, CA 94016" -155993,27in FHD Monitor,1,149.99,02/14/19 10:39,"200 4th St, Boston, MA 02215" -155994,Macbook Pro Laptop,1,1700,02/28/19 21:08,"419 Johnson St, Boston, MA 02215" -155995,iPhone,1,700,02/26/19 15:09,"641 Center St, Los Angeles, CA 90001" -155996,Apple Airpods Headphones,1,150,02/01/19 18:06,"528 Meadow St, Portland, ME 04101" -155997,ThinkPad Laptop,1,999.99,02/24/19 09:26,"16 Church St, Atlanta, GA 30301" -155998,Lightning Charging Cable,1,14.95,02/05/19 21:14,"80 Ridge St, Dallas, TX 75001" -155999,AAA Batteries (4-pack),1,2.99,02/10/19 12:43,"24 Meadow St, Austin, TX 73301" -156000,Apple Airpods Headphones,1,150,02/27/19 17:03,"944 Johnson St, Atlanta, GA 30301" -156001,Lightning Charging Cable,1,14.95,02/28/19 19:15,"427 Dogwood St, Austin, TX 73301" -156002,iPhone,1,700,02/16/19 16:16,"393 Lakeview St, Seattle, WA 98101" -156003,Flatscreen TV,1,300,02/26/19 13:50,"716 Lake St, New York City, NY 10001" -156004,USB-C Charging Cable,1,11.95,02/13/19 13:02,"737 Spruce St, Boston, MA 02215" -156005,AAA Batteries (4-pack),1,2.99,02/03/19 09:08,"493 Johnson St, Atlanta, GA 30301" -156006,27in FHD Monitor,1,149.99,02/22/19 13:09,"128 Johnson St, San Francisco, CA 94016" -156007,AA Batteries (4-pack),1,3.84,02/11/19 13:35,"84 14th St, San Francisco, CA 94016" -156008,USB-C Charging Cable,1,11.95,02/10/19 10:27,"647 Church St, Austin, TX 73301" -156009,Wired Headphones,1,11.99,02/16/19 09:25,"593 Jefferson St, Atlanta, GA 30301" -156010,AAA Batteries (4-pack),1,2.99,02/11/19 22:21,"201 Johnson St, Boston, MA 02215" -156011,Lightning Charging Cable,1,14.95,02/27/19 12:59,"862 6th St, Atlanta, GA 30301" -156012,Wired Headphones,1,11.99,02/25/19 12:03,"823 Maple St, New York City, NY 10001" -156013,iPhone,1,700,02/17/19 18:08,"893 Madison St, Austin, TX 73301" -156014,Lightning Charging Cable,1,14.95,02/07/19 09:58,"815 1st St, San Francisco, CA 94016" -156015,AAA Batteries (4-pack),1,2.99,02/03/19 08:48,"240 Ridge St, Dallas, TX 75001" -156016,AA Batteries (4-pack),1,3.84,02/22/19 14:41,"648 West St, Los Angeles, CA 90001" -156017,USB-C Charging Cable,1,11.95,02/03/19 12:08,"392 Main St, Boston, MA 02215" -156018,USB-C Charging Cable,1,11.95,02/16/19 19:02,"859 Hickory St, New York City, NY 10001" -156019,iPhone,1,700,02/01/19 11:48,"782 13th St, Atlanta, GA 30301" -156020,Wired Headphones,1,11.99,02/28/19 18:55,"969 Maple St, New York City, NY 10001" -156021,Wired Headphones,1,11.99,02/02/19 15:24,"381 Adams St, Seattle, WA 98101" -156022,Apple Airpods Headphones,1,150,02/10/19 18:56,"621 North St, Los Angeles, CA 90001" -156023,AAA Batteries (4-pack),1,2.99,02/23/19 09:29,"928 1st St, Seattle, WA 98101" -156024,AAA Batteries (4-pack),1,2.99,02/23/19 19:50,"397 Elm St, San Francisco, CA 94016" -156025,AA Batteries (4-pack),2,3.84,02/26/19 22:26,"519 Church St, Los Angeles, CA 90001" -156026,Bose SoundSport Headphones,1,99.99,02/21/19 12:05,"748 Adams St, Atlanta, GA 30301" -156027,AA Batteries (4-pack),1,3.84,02/14/19 09:44,"807 4th St, Seattle, WA 98101" -156028,Lightning Charging Cable,1,14.95,02/12/19 17:07,"409 Washington St, San Francisco, CA 94016" -156029,AAA Batteries (4-pack),2,2.99,02/18/19 11:04,"965 14th St, Dallas, TX 75001" -156030,34in Ultrawide Monitor,1,379.99,02/16/19 20:54,"241 West St, Los Angeles, CA 90001" -156031,Wired Headphones,1,11.99,02/17/19 06:15,"853 10th St, New York City, NY 10001" -156032,ThinkPad Laptop,1,999.99,02/06/19 01:48,"141 Jefferson St, Dallas, TX 75001" -156033,Macbook Pro Laptop,1,1700,02/07/19 17:37,"217 Highland St, Los Angeles, CA 90001" -156034,Apple Airpods Headphones,1,150,02/08/19 03:48,"426 Elm St, San Francisco, CA 94016" -156035,Wired Headphones,1,11.99,02/10/19 11:04,"614 9th St, San Francisco, CA 94016" -156036,Lightning Charging Cable,1,14.95,02/08/19 23:48,"585 9th St, Boston, MA 02215" -156037,iPhone,1,700,02/24/19 21:28,"897 5th St, Atlanta, GA 30301" -156038,USB-C Charging Cable,1,11.95,02/25/19 10:38,"606 Dogwood St, Atlanta, GA 30301" -156039,AA Batteries (4-pack),1,3.84,02/02/19 17:29,"185 Elm St, San Francisco, CA 94016" -156040,34in Ultrawide Monitor,1,379.99,02/05/19 17:21,"614 South St, Los Angeles, CA 90001" -156040,Apple Airpods Headphones,1,150,02/05/19 17:21,"614 South St, Los Angeles, CA 90001" -156041,AAA Batteries (4-pack),1,2.99,02/23/19 19:14,"603 Main St, New York City, NY 10001" -156042,Bose SoundSport Headphones,1,99.99,02/04/19 15:21,"79 Lake St, New York City, NY 10001" -156043,Apple Airpods Headphones,1,150,02/03/19 19:52,"292 Willow St, Boston, MA 02215" -156044,AA Batteries (4-pack),1,3.84,02/19/19 14:03,"465 West St, Boston, MA 02215" -156045,Lightning Charging Cable,1,14.95,02/02/19 10:28,"269 Cedar St, Boston, MA 02215" -156046,AAA Batteries (4-pack),1,2.99,02/13/19 10:47,"449 8th St, Boston, MA 02215" -156047,Lightning Charging Cable,1,14.95,02/05/19 20:30,"807 Elm St, Los Angeles, CA 90001" -156048,AAA Batteries (4-pack),2,2.99,02/23/19 11:05,"558 1st St, Dallas, TX 75001" -156049,AA Batteries (4-pack),1,3.84,02/15/19 09:53,"485 Dogwood St, San Francisco, CA 94016" -156050,AAA Batteries (4-pack),1,2.99,02/22/19 17:29,"256 Hickory St, Dallas, TX 75001" -156051,27in FHD Monitor,1,149.99,02/22/19 13:58,"63 11th St, Dallas, TX 75001" -156052,USB-C Charging Cable,1,11.95,02/08/19 19:43,"547 5th St, Seattle, WA 98101" -156053,Lightning Charging Cable,1,14.95,02/14/19 10:05,"128 Maple St, San Francisco, CA 94016" -156054,USB-C Charging Cable,1,11.95,02/09/19 15:13,"997 Church St, San Francisco, CA 94016" -156055,ThinkPad Laptop,1,999.99,02/21/19 12:57,"144 Park St, San Francisco, CA 94016" -156056,Wired Headphones,1,11.99,02/02/19 13:29,"78 Meadow St, New York City, NY 10001" -156056,AA Batteries (4-pack),3,3.84,02/02/19 13:29,"78 Meadow St, New York City, NY 10001" -156057,ThinkPad Laptop,1,999.99,02/10/19 09:06,"225 Lakeview St, San Francisco, CA 94016" -156058,Vareebadd Phone,1,400,02/19/19 09:15,"148 1st St, Dallas, TX 75001" -156058,USB-C Charging Cable,1,11.95,02/19/19 09:15,"148 1st St, Dallas, TX 75001" -156059,Lightning Charging Cable,1,14.95,02/23/19 19:06,"930 Park St, Los Angeles, CA 90001" -156060,AAA Batteries (4-pack),3,2.99,02/25/19 10:03,"465 Wilson St, San Francisco, CA 94016" -156061,USB-C Charging Cable,1,11.95,02/19/19 00:31,"927 Lake St, Seattle, WA 98101" -156062,Wired Headphones,1,11.99,02/01/19 15:27,"614 Cedar St, San Francisco, CA 94016" -156063,34in Ultrawide Monitor,1,379.99,02/06/19 13:45,"585 1st St, New York City, NY 10001" -156064,20in Monitor,1,109.99,02/18/19 21:14,"517 11th St, Los Angeles, CA 90001" -156065,iPhone,1,700,02/06/19 15:14,"208 Main St, Los Angeles, CA 90001" -156066,Bose SoundSport Headphones,1,99.99,02/12/19 18:12,"597 Hickory St, Atlanta, GA 30301" -156067,AA Batteries (4-pack),2,3.84,02/25/19 17:17,"392 Dogwood St, Boston, MA 02215" -156068,27in 4K Gaming Monitor,1,389.99,02/14/19 08:04,"452 Meadow St, Austin, TX 73301" -156069,AAA Batteries (4-pack),1,2.99,02/12/19 13:01,"507 2nd St, Los Angeles, CA 90001" -156070,AAA Batteries (4-pack),1,2.99,02/06/19 10:34,"233 Cedar St, Seattle, WA 98101" -156071,Bose SoundSport Headphones,1,99.99,02/18/19 09:36,"778 Ridge St, Portland, OR 97035" -156072,AA Batteries (4-pack),1,3.84,02/25/19 17:41,"679 Johnson St, Boston, MA 02215" -156073,Lightning Charging Cable,1,14.95,02/27/19 21:22,"136 Hill St, Los Angeles, CA 90001" -156074,AA Batteries (4-pack),2,3.84,02/24/19 22:19,"844 Lake St, New York City, NY 10001" -156075,Wired Headphones,1,11.99,02/24/19 11:23,"188 Meadow St, San Francisco, CA 94016" -156076,iPhone,1,700,02/11/19 19:33,"889 Cherry St, Boston, MA 02215" -156077,AA Batteries (4-pack),1,3.84,02/13/19 20:55,"742 13th St, Seattle, WA 98101" -156078,Bose SoundSport Headphones,1,99.99,02/06/19 08:50,"818 2nd St, San Francisco, CA 94016" -156079,Wired Headphones,1,11.99,02/21/19 15:44,"345 Center St, San Francisco, CA 94016" -156080,USB-C Charging Cable,1,11.95,02/07/19 19:43,"329 5th St, Los Angeles, CA 90001" -156081,Wired Headphones,1,11.99,02/03/19 13:53,"976 Lincoln St, Los Angeles, CA 90001" -156082,Wired Headphones,1,11.99,02/19/19 10:34,"306 Chestnut St, Los Angeles, CA 90001" -156083,LG Dryer,1,600.0,02/06/19 20:47,"667 12th St, Boston, MA 02215" -156084,AA Batteries (4-pack),4,3.84,02/07/19 06:54,"933 Wilson St, Seattle, WA 98101" -156085,Flatscreen TV,1,300,02/15/19 20:05,"95 7th St, New York City, NY 10001" -156086,Bose SoundSport Headphones,1,99.99,02/16/19 21:47,"837 Center St, Seattle, WA 98101" -156087,27in FHD Monitor,1,149.99,02/23/19 10:43,"5 Sunset St, Atlanta, GA 30301" -156088,iPhone,1,700,02/22/19 13:35,"585 Walnut St, New York City, NY 10001" -156089,AAA Batteries (4-pack),1,2.99,02/17/19 18:37,"741 North St, San Francisco, CA 94016" -156090,AA Batteries (4-pack),1,3.84,02/10/19 13:36,"963 Washington St, Atlanta, GA 30301" -156091,USB-C Charging Cable,3,11.95,02/23/19 21:07,"953 Cedar St, Los Angeles, CA 90001" -156092,Bose SoundSport Headphones,1,99.99,02/27/19 19:17,"695 Spruce St, Boston, MA 02215" -156093,Wired Headphones,1,11.99,02/13/19 17:13,"671 Cedar St, Portland, OR 97035" -156094,AAA Batteries (4-pack),1,2.99,02/05/19 19:18,"371 Main St, San Francisco, CA 94016" -156095,27in 4K Gaming Monitor,1,389.99,02/15/19 18:37,"326 Chestnut St, Seattle, WA 98101" -156095,AA Batteries (4-pack),1,3.84,02/15/19 18:37,"326 Chestnut St, Seattle, WA 98101" -156096,Google Phone,1,600,02/22/19 08:19,"643 Highland St, Seattle, WA 98101" -156097,27in 4K Gaming Monitor,1,389.99,02/06/19 22:23,"697 Jackson St, Dallas, TX 75001" -156098,AAA Batteries (4-pack),4,2.99,02/26/19 19:03,"61 Ridge St, Portland, ME 04101" -156099,AAA Batteries (4-pack),3,2.99,02/07/19 12:08,"787 Pine St, New York City, NY 10001" -156100,Vareebadd Phone,1,400,02/16/19 11:18,"25 9th St, San Francisco, CA 94016" -156101,Wired Headphones,1,11.99,02/24/19 05:53,"11 Forest St, Dallas, TX 75001" -156102,AAA Batteries (4-pack),1,2.99,02/15/19 11:45,"62 Adams St, Los Angeles, CA 90001" -156103,Lightning Charging Cable,1,14.95,02/07/19 00:10,"763 Sunset St, San Francisco, CA 94016" -156104,Wired Headphones,1,11.99,02/06/19 18:39,"497 Walnut St, New York City, NY 10001" -156105,USB-C Charging Cable,1,11.95,02/07/19 15:16,"892 Johnson St, San Francisco, CA 94016" -156106,Google Phone,1,600,02/12/19 23:18,"881 Church St, New York City, NY 10001" -156107,AAA Batteries (4-pack),2,2.99,02/03/19 13:58,"337 6th St, San Francisco, CA 94016" -156108,Bose SoundSport Headphones,1,99.99,02/06/19 18:48,"364 Willow St, San Francisco, CA 94016" -156109,Bose SoundSport Headphones,1,99.99,02/18/19 09:18,"450 Jackson St, Boston, MA 02215" -156109,Bose SoundSport Headphones,1,99.99,02/18/19 09:18,"450 Jackson St, Boston, MA 02215" -156110,Bose SoundSport Headphones,1,99.99,02/17/19 16:09,"807 12th St, Boston, MA 02215" -156111,Lightning Charging Cable,1,14.95,02/12/19 17:30,"584 4th St, Los Angeles, CA 90001" -156112,Lightning Charging Cable,1,14.95,02/28/19 17:14,"634 West St, Portland, OR 97035" -156113,AA Batteries (4-pack),1,3.84,02/20/19 15:54,"924 Sunset St, Seattle, WA 98101" -156114,Bose SoundSport Headphones,1,99.99,02/08/19 20:11,"629 Center St, Seattle, WA 98101" -156115,Lightning Charging Cable,4,14.95,02/05/19 15:26,"498 Elm St, Austin, TX 73301" -156116,Apple Airpods Headphones,1,150,02/24/19 18:50,"755 Cherry St, Los Angeles, CA 90001" -156117,Bose SoundSport Headphones,1,99.99,02/12/19 23:31,"123 Elm St, New York City, NY 10001" -156118,USB-C Charging Cable,1,11.95,02/22/19 21:00,"420 Johnson St, Los Angeles, CA 90001" -156119,34in Ultrawide Monitor,1,379.99,02/27/19 17:05,"602 Pine St, Seattle, WA 98101" -156120,Apple Airpods Headphones,1,150,02/27/19 00:26,"115 Forest St, Atlanta, GA 30301" -156121,Wired Headphones,1,11.99,02/20/19 15:40,"244 Hill St, San Francisco, CA 94016" -156122,AA Batteries (4-pack),1,3.84,02/25/19 11:02,"689 11th St, Los Angeles, CA 90001" -156123,27in 4K Gaming Monitor,1,389.99,02/23/19 20:01,"646 Spruce St, Boston, MA 02215" -156124,Lightning Charging Cable,1,14.95,02/18/19 12:33,"225 Forest St, San Francisco, CA 94016" -156125,34in Ultrawide Monitor,1,379.99,02/03/19 13:42,"23 Adams St, Austin, TX 73301" -156126,AA Batteries (4-pack),1,3.84,02/02/19 14:10,"350 North St, San Francisco, CA 94016" -156127,USB-C Charging Cable,1,11.95,02/18/19 03:30,"148 6th St, Boston, MA 02215" -156128,AA Batteries (4-pack),1,3.84,02/09/19 16:34,"436 10th St, Seattle, WA 98101" -156129,AAA Batteries (4-pack),1,2.99,02/17/19 17:31,"700 Jefferson St, New York City, NY 10001" -156130,Flatscreen TV,1,300,02/08/19 19:57,"269 Chestnut St, San Francisco, CA 94016" -156131,Apple Airpods Headphones,1,150,02/11/19 22:56,"720 Maple St, San Francisco, CA 94016" -156132,AA Batteries (4-pack),1,3.84,02/12/19 09:28,"341 4th St, Atlanta, GA 30301" -156133,Apple Airpods Headphones,1,150,02/25/19 20:33,"864 Meadow St, Seattle, WA 98101" -156134,Lightning Charging Cable,1,14.95,02/14/19 17:30,"656 Jefferson St, New York City, NY 10001" -156135,Google Phone,1,600,02/04/19 15:29,"96 Elm St, San Francisco, CA 94016" -156135,Wired Headphones,1,11.99,02/04/19 15:29,"96 Elm St, San Francisco, CA 94016" -156136,Apple Airpods Headphones,1,150,02/21/19 14:00,"103 Lake St, Boston, MA 02215" -156137,Wired Headphones,1,11.99,02/10/19 21:52,"219 Jefferson St, San Francisco, CA 94016" -156138,USB-C Charging Cable,1,11.95,02/18/19 11:25,"285 Maple St, Portland, OR 97035" -156139,Google Phone,1,600,02/13/19 16:39,"79 Maple St, Los Angeles, CA 90001" -156140,Wired Headphones,1,11.99,02/14/19 08:26,"699 8th St, San Francisco, CA 94016" -156141,AA Batteries (4-pack),1,3.84,02/11/19 20:25,"923 Cedar St, New York City, NY 10001" -156142,Wired Headphones,1,11.99,02/15/19 14:56,"953 Pine St, New York City, NY 10001" -156143,AA Batteries (4-pack),1,3.84,02/10/19 12:18,"83 Cedar St, Los Angeles, CA 90001" -156144,Google Phone,1,600,02/25/19 14:43,"469 Park St, San Francisco, CA 94016" -156145,27in 4K Gaming Monitor,1,389.99,02/27/19 09:07,"766 River St, Los Angeles, CA 90001" -156146,Wired Headphones,1,11.99,02/26/19 19:27,"770 7th St, Portland, OR 97035" -156147,Google Phone,1,600,02/07/19 16:53,"72 5th St, Los Angeles, CA 90001" -156148,Bose SoundSport Headphones,1,99.99,02/07/19 19:26,"375 Lake St, Dallas, TX 75001" -156149,AA Batteries (4-pack),1,3.84,02/14/19 11:40,"935 Main St, Boston, MA 02215" -156150,Google Phone,1,600,02/02/19 14:18,"627 Maple St, Portland, OR 97035" -156151,AA Batteries (4-pack),1,3.84,02/03/19 13:17,"311 6th St, Portland, OR 97035" -156152,Macbook Pro Laptop,1,1700,02/26/19 17:12,"980 Ridge St, San Francisco, CA 94016" -156153,20in Monitor,1,109.99,02/14/19 19:53,"97 10th St, Boston, MA 02215" -156154,Flatscreen TV,1,300,02/25/19 14:22,"160 8th St, Los Angeles, CA 90001" -156155,Wired Headphones,1,11.99,02/07/19 10:54,"43 2nd St, San Francisco, CA 94016" -156156,Bose SoundSport Headphones,1,99.99,02/01/19 15:33,"545 6th St, Los Angeles, CA 90001" -156157,Lightning Charging Cable,1,14.95,02/16/19 21:26,"247 8th St, Los Angeles, CA 90001" -156158,USB-C Charging Cable,1,11.95,02/22/19 15:26,"880 Chestnut St, San Francisco, CA 94016" -156159,AA Batteries (4-pack),1,3.84,02/19/19 17:55,"53 8th St, Atlanta, GA 30301" -156160,Lightning Charging Cable,1,14.95,02/14/19 11:18,"383 Johnson St, Los Angeles, CA 90001" -156161,Macbook Pro Laptop,1,1700,02/13/19 21:31,"494 4th St, Los Angeles, CA 90001" -156162,Apple Airpods Headphones,1,150,02/27/19 02:28,"648 North St, Atlanta, GA 30301" -156163,Lightning Charging Cable,1,14.95,02/03/19 20:51,"922 Lincoln St, San Francisco, CA 94016" -156164,Wired Headphones,1,11.99,02/10/19 20:25,"946 Pine St, Los Angeles, CA 90001" -156165,Bose SoundSport Headphones,1,99.99,02/22/19 09:08,"310 Adams St, San Francisco, CA 94016" -156166,Wired Headphones,2,11.99,02/11/19 09:59,"223 10th St, Los Angeles, CA 90001" -156167,Lightning Charging Cable,1,14.95,02/12/19 20:08,"168 6th St, Austin, TX 73301" -156168,Bose SoundSport Headphones,1,99.99,02/26/19 02:27,"229 Walnut St, San Francisco, CA 94016" -156169,Apple Airpods Headphones,1,150,02/23/19 23:17,"71 Maple St, Atlanta, GA 30301" -156170,Macbook Pro Laptop,1,1700,02/05/19 13:51,"206 Wilson St, Los Angeles, CA 90001" -156171,ThinkPad Laptop,1,999.99,02/23/19 18:56,"446 Pine St, Seattle, WA 98101" -156172,Wired Headphones,1,11.99,02/12/19 13:29,"569 Walnut St, San Francisco, CA 94016" -156173,Flatscreen TV,1,300,02/28/19 09:55,"102 11th St, San Francisco, CA 94016" -156174,AA Batteries (4-pack),1,3.84,02/08/19 09:06,"185 Hickory St, Atlanta, GA 30301" -156175,AAA Batteries (4-pack),3,2.99,02/17/19 09:18,"656 9th St, Boston, MA 02215" -156176,27in 4K Gaming Monitor,1,389.99,02/20/19 10:44,"176 Adams St, Los Angeles, CA 90001" -156177,27in FHD Monitor,1,149.99,02/19/19 22:42,"636 Madison St, Los Angeles, CA 90001" -156178,ThinkPad Laptop,1,999.99,02/27/19 19:32,"902 Main St, Dallas, TX 75001" -156179,Flatscreen TV,1,300,02/26/19 18:34,"894 Highland St, San Francisco, CA 94016" -156180,Macbook Pro Laptop,1,1700,02/17/19 21:21,"49 1st St, Boston, MA 02215" -156181,USB-C Charging Cable,2,11.95,02/23/19 22:46,"559 Wilson St, Los Angeles, CA 90001" -156182,AA Batteries (4-pack),1,3.84,02/16/19 18:53,"306 Highland St, Boston, MA 02215" -156183,Lightning Charging Cable,1,14.95,02/03/19 12:59,"843 Adams St, Seattle, WA 98101" -156184,Lightning Charging Cable,4,14.95,02/06/19 21:49,"262 2nd St, Los Angeles, CA 90001" -156185,AA Batteries (4-pack),1,3.84,02/17/19 23:28,"974 Hill St, Boston, MA 02215" -156186,Lightning Charging Cable,1,14.95,02/01/19 13:04,"81 Center St, Los Angeles, CA 90001" -156187,Lightning Charging Cable,1,14.95,02/11/19 10:01,"140 Maple St, San Francisco, CA 94016" -156188,Bose SoundSport Headphones,1,99.99,02/23/19 07:06,"341 12th St, Seattle, WA 98101" -156188,Lightning Charging Cable,2,14.95,02/23/19 07:06,"341 12th St, Seattle, WA 98101" -156189,AAA Batteries (4-pack),2,2.99,02/03/19 11:47,"322 Dogwood St, Los Angeles, CA 90001" -156190,Lightning Charging Cable,1,14.95,02/16/19 10:58,"322 Adams St, Dallas, TX 75001" -156191,USB-C Charging Cable,1,11.95,02/09/19 16:18,"576 Main St, Portland, OR 97035" -156192,Lightning Charging Cable,1,14.95,02/21/19 21:18,"418 Lake St, Los Angeles, CA 90001" -156193,Lightning Charging Cable,1,14.95,02/16/19 19:58,"276 Hickory St, Boston, MA 02215" -156194,Lightning Charging Cable,1,14.95,02/25/19 20:13,"366 Forest St, Seattle, WA 98101" -156195,20in Monitor,1,109.99,02/05/19 10:43,"339 9th St, New York City, NY 10001" -156196,Macbook Pro Laptop,1,1700,02/02/19 22:25,"579 Lakeview St, San Francisco, CA 94016" -156197,USB-C Charging Cable,1,11.95,02/28/19 16:45,"596 Jackson St, Atlanta, GA 30301" -156198,Bose SoundSport Headphones,1,99.99,02/24/19 10:52,"254 Jackson St, Dallas, TX 75001" -156199,27in 4K Gaming Monitor,1,389.99,02/27/19 13:15,"636 2nd St, Boston, MA 02215" -156200,27in FHD Monitor,1,149.99,02/23/19 16:18,"397 South St, San Francisco, CA 94016" -156201,Lightning Charging Cable,1,14.95,02/08/19 11:49,"810 10th St, San Francisco, CA 94016" -156202,iPhone,1,700,02/20/19 15:33,"296 5th St, New York City, NY 10001" -156202,Wired Headphones,1,11.99,02/20/19 15:33,"296 5th St, New York City, NY 10001" -156203,AA Batteries (4-pack),1,3.84,02/02/19 20:14,"86 Jefferson St, Dallas, TX 75001" -156204,Bose SoundSport Headphones,1,99.99,02/19/19 18:36,"854 Walnut St, Boston, MA 02215" -156205,iPhone,1,700,02/22/19 09:03,"928 8th St, Portland, ME 04101" -156206,Wired Headphones,1,11.99,02/16/19 15:35,"861 8th St, Portland, OR 97035" -156207,Lightning Charging Cable,1,14.95,02/25/19 13:04,"36 11th St, Los Angeles, CA 90001" -156208,27in FHD Monitor,1,149.99,02/08/19 20:18,"371 Sunset St, San Francisco, CA 94016" -156209,Apple Airpods Headphones,1,150,02/13/19 18:05,"158 5th St, Los Angeles, CA 90001" -156210,AA Batteries (4-pack),2,3.84,02/12/19 02:09,"613 West St, Los Angeles, CA 90001" -156211,Flatscreen TV,1,300,02/19/19 11:58,"350 Johnson St, San Francisco, CA 94016" -156212,AAA Batteries (4-pack),2,2.99,02/19/19 16:05,"982 Park St, Atlanta, GA 30301" -156213,USB-C Charging Cable,1,11.95,02/20/19 13:58,"729 Sunset St, Los Angeles, CA 90001" -156213,AA Batteries (4-pack),1,3.84,02/20/19 13:58,"729 Sunset St, Los Angeles, CA 90001" -156214,Vareebadd Phone,1,400,02/23/19 18:08,"451 Spruce St, Seattle, WA 98101" -156215,AA Batteries (4-pack),1,3.84,02/23/19 12:01,"911 8th St, Los Angeles, CA 90001" -156216,Wired Headphones,1,11.99,02/13/19 21:14,"119 7th St, Los Angeles, CA 90001" -156217,Vareebadd Phone,1,400,02/09/19 16:42,"642 Lakeview St, Portland, OR 97035" -156217,Bose SoundSport Headphones,1,99.99,02/09/19 16:42,"642 Lakeview St, Portland, OR 97035" -156218,27in 4K Gaming Monitor,1,389.99,02/06/19 17:23,"986 Main St, New York City, NY 10001" -156219,ThinkPad Laptop,1,999.99,02/03/19 02:10,"994 Elm St, Portland, OR 97035" -156220,Apple Airpods Headphones,1,150,02/13/19 12:20,"828 Dogwood St, Los Angeles, CA 90001" -156221,AAA Batteries (4-pack),1,2.99,02/22/19 12:41,"502 Chestnut St, Portland, ME 04101" -156222,AAA Batteries (4-pack),1,2.99,02/26/19 10:19,"9 Washington St, San Francisco, CA 94016" -156223,Bose SoundSport Headphones,1,99.99,02/27/19 07:21,"816 West St, San Francisco, CA 94016" -156224,Lightning Charging Cable,1,14.95,02/14/19 10:40,"288 Jackson St, San Francisco, CA 94016" -156225,Bose SoundSport Headphones,1,99.99,02/06/19 17:01,"626 Lake St, Boston, MA 02215" -156226,USB-C Charging Cable,1,11.95,02/14/19 21:41,"438 Church St, Atlanta, GA 30301" -156227,Apple Airpods Headphones,1,150,02/22/19 15:17,"703 Lakeview St, Boston, MA 02215" -156228,USB-C Charging Cable,1,11.95,02/09/19 11:03,"797 13th St, Portland, ME 04101" -156229,Lightning Charging Cable,1,14.95,02/08/19 14:55,"439 South St, Los Angeles, CA 90001" -156230,34in Ultrawide Monitor,1,379.99,02/18/19 22:21,"811 Johnson St, Atlanta, GA 30301" -156231,USB-C Charging Cable,2,11.95,02/01/19 21:31,"684 14th St, Los Angeles, CA 90001" -156232,Apple Airpods Headphones,1,150,02/12/19 20:02,"544 4th St, Seattle, WA 98101" -156233,27in 4K Gaming Monitor,1,389.99,02/17/19 22:05,"856 6th St, New York City, NY 10001" -156234,USB-C Charging Cable,1,11.95,02/03/19 19:31,"752 Lakeview St, New York City, NY 10001" -156235,ThinkPad Laptop,1,999.99,02/09/19 04:32,"651 6th St, Atlanta, GA 30301" -156236,AAA Batteries (4-pack),2,2.99,02/04/19 22:50,"682 6th St, Los Angeles, CA 90001" -156237,AAA Batteries (4-pack),1,2.99,02/23/19 23:15,"210 Jefferson St, Dallas, TX 75001" -156238,Vareebadd Phone,1,400,02/02/19 00:20,"743 Lake St, Boston, MA 02215" -156239,Vareebadd Phone,1,400,02/19/19 15:46,"385 8th St, Los Angeles, CA 90001" -156239,USB-C Charging Cable,2,11.95,02/19/19 15:46,"385 8th St, Los Angeles, CA 90001" -156240,27in 4K Gaming Monitor,1,389.99,02/22/19 17:06,"482 Spruce St, Los Angeles, CA 90001" -156241,34in Ultrawide Monitor,1,379.99,02/15/19 09:23,"619 6th St, Boston, MA 02215" -156242,Lightning Charging Cable,1,14.95,02/18/19 11:24,"269 West St, Los Angeles, CA 90001" -156243,AAA Batteries (4-pack),1,2.99,02/21/19 20:57,"422 Jefferson St, San Francisco, CA 94016" -156244,27in 4K Gaming Monitor,1,389.99,02/06/19 09:41,"138 10th St, Los Angeles, CA 90001" -156245,Lightning Charging Cable,1,14.95,02/16/19 00:10,"967 Hill St, San Francisco, CA 94016" -156246,27in 4K Gaming Monitor,1,389.99,02/04/19 02:48,"326 West St, Los Angeles, CA 90001" -156247,AAA Batteries (4-pack),1,2.99,02/09/19 07:29,"511 Dogwood St, Los Angeles, CA 90001" -156247,AAA Batteries (4-pack),1,2.99,02/09/19 07:29,"511 Dogwood St, Los Angeles, CA 90001" -156248,34in Ultrawide Monitor,1,379.99,02/03/19 16:18,"959 Main St, Atlanta, GA 30301" -156249,Lightning Charging Cable,1,14.95,02/03/19 09:09,"691 Walnut St, Atlanta, GA 30301" -156250,AA Batteries (4-pack),1,3.84,02/28/19 09:59,"515 Jackson St, San Francisco, CA 94016" -156251,Wired Headphones,1,11.99,02/24/19 17:39,"383 Meadow St, San Francisco, CA 94016" -156252,Wired Headphones,1,11.99,02/09/19 21:37,"121 Lakeview St, New York City, NY 10001" -156253,Google Phone,1,600,02/19/19 19:35,"575 Highland St, San Francisco, CA 94016" -156254,Bose SoundSport Headphones,1,99.99,02/21/19 14:51,"256 9th St, Boston, MA 02215" -156255,Bose SoundSport Headphones,1,99.99,02/14/19 17:36,"758 Hickory St, Austin, TX 73301" -156255,AAA Batteries (4-pack),1,2.99,02/14/19 17:36,"758 Hickory St, Austin, TX 73301" -156256,Lightning Charging Cable,1,14.95,02/18/19 20:17,"476 Cedar St, San Francisco, CA 94016" -,,,,, -156257,iPhone,1,700,02/17/19 11:07,"301 Dogwood St, Seattle, WA 98101" -156258,34in Ultrawide Monitor,1,379.99,02/03/19 18:20,"340 Sunset St, New York City, NY 10001" -156259,AA Batteries (4-pack),1,3.84,02/17/19 12:08,"463 Dogwood St, San Francisco, CA 94016" -156260,AAA Batteries (4-pack),1,2.99,02/25/19 02:01,"878 5th St, San Francisco, CA 94016" -156261,Google Phone,1,600,02/20/19 19:09,"478 Chestnut St, Seattle, WA 98101" -156261,Wired Headphones,1,11.99,02/20/19 19:09,"478 Chestnut St, Seattle, WA 98101" -156262,USB-C Charging Cable,1,11.95,02/04/19 18:07,"251 5th St, New York City, NY 10001" -156263,Apple Airpods Headphones,1,150,02/21/19 19:45,"916 North St, San Francisco, CA 94016" -156264,Lightning Charging Cable,1,14.95,02/28/19 14:02,"532 14th St, Los Angeles, CA 90001" -156265,USB-C Charging Cable,1,11.95,02/07/19 21:10,"529 Washington St, Portland, ME 04101" -156266,Lightning Charging Cable,1,14.95,02/22/19 01:51,"726 Spruce St, Seattle, WA 98101" -156267,Bose SoundSport Headphones,1,99.99,02/10/19 20:03,"70 Madison St, Los Angeles, CA 90001" -156268,AAA Batteries (4-pack),1,2.99,02/12/19 18:47,"705 Jefferson St, San Francisco, CA 94016" -156269,Wired Headphones,1,11.99,02/08/19 11:40,"436 Hickory St, Los Angeles, CA 90001" -156270,Lightning Charging Cable,1,14.95,02/14/19 16:02,"861 Pine St, Boston, MA 02215" -156271,Apple Airpods Headphones,1,150,02/13/19 20:12,"247 Adams St, Portland, ME 04101" -156271,Bose SoundSport Headphones,1,99.99,02/13/19 20:12,"247 Adams St, Portland, ME 04101" -156272,ThinkPad Laptop,1,999.99,02/01/19 18:33,"77 Lincoln St, Boston, MA 02215" -156273,AA Batteries (4-pack),2,3.84,02/07/19 13:55,"804 1st St, San Francisco, CA 94016" -156274,Lightning Charging Cable,1,14.95,02/27/19 10:24,"437 Highland St, New York City, NY 10001" -156275,Google Phone,1,600,02/22/19 11:30,"717 Lake St, Los Angeles, CA 90001" -156275,Bose SoundSport Headphones,1,99.99,02/22/19 11:30,"717 Lake St, Los Angeles, CA 90001" -156276,AA Batteries (4-pack),1,3.84,02/05/19 20:56,"496 Jackson St, New York City, NY 10001" -156277,Apple Airpods Headphones,1,150,02/15/19 19:25,"586 River St, Los Angeles, CA 90001" -156278,iPhone,1,700,02/01/19 22:28,"767 10th St, Boston, MA 02215" -156279,AAA Batteries (4-pack),1,2.99,02/01/19 07:21,"553 Lincoln St, Boston, MA 02215" -156280,Bose SoundSport Headphones,1,99.99,02/11/19 14:40,"671 Lakeview St, Seattle, WA 98101" -156281,USB-C Charging Cable,1,11.95,02/24/19 00:50,"833 Center St, Los Angeles, CA 90001" -156282,Bose SoundSport Headphones,1,99.99,02/01/19 20:52,"895 14th St, Seattle, WA 98101" -156282,AA Batteries (4-pack),1,3.84,02/01/19 20:52,"895 14th St, Seattle, WA 98101" -156283,USB-C Charging Cable,1,11.95,02/26/19 10:20,"237 6th St, Portland, OR 97035" -156284,Lightning Charging Cable,1,14.95,02/01/19 18:04,"756 Hill St, Dallas, TX 75001" -156285,Bose SoundSport Headphones,1,99.99,02/14/19 11:54,"928 Maple St, San Francisco, CA 94016" -156286,Macbook Pro Laptop,1,1700,02/21/19 11:47,"592 Main St, New York City, NY 10001" -156287,USB-C Charging Cable,1,11.95,02/16/19 06:28,"174 14th St, New York City, NY 10001" -156288,AAA Batteries (4-pack),1,2.99,02/11/19 11:04,"804 Highland St, Boston, MA 02215" -156289,Bose SoundSport Headphones,1,99.99,02/09/19 21:33,"947 Highland St, New York City, NY 10001" -156290,Bose SoundSport Headphones,1,99.99,02/28/19 12:02,"224 Center St, San Francisco, CA 94016" -156291,Wired Headphones,1,11.99,02/16/19 08:19,"697 Park St, San Francisco, CA 94016" -156292,Macbook Pro Laptop,1,1700,02/27/19 23:40,"109 Church St, Atlanta, GA 30301" -156293,AAA Batteries (4-pack),2,2.99,02/18/19 10:20,"229 4th St, Dallas, TX 75001" -156294,USB-C Charging Cable,2,11.95,02/22/19 18:49,"597 Chestnut St, Los Angeles, CA 90001" -156295,Vareebadd Phone,1,400,02/02/19 08:51,"351 7th St, New York City, NY 10001" -156296,AA Batteries (4-pack),1,3.84,02/08/19 21:17,"202 9th St, Boston, MA 02215" -156297,Apple Airpods Headphones,1,150,02/11/19 09:50,"666 North St, Boston, MA 02215" -156298,Macbook Pro Laptop,1,1700,02/19/19 15:40,"761 Highland St, San Francisco, CA 94016" -156299,Bose SoundSport Headphones,1,99.99,02/05/19 22:36,"586 2nd St, Boston, MA 02215" -156300,iPhone,1,700,02/23/19 16:09,"435 14th St, Dallas, TX 75001" -156301,iPhone,1,700,02/06/19 18:13,"967 Lakeview St, Atlanta, GA 30301" -156301,Flatscreen TV,1,300,02/06/19 18:13,"967 Lakeview St, Atlanta, GA 30301" -156302,iPhone,1,700,02/08/19 14:27,"707 Chestnut St, San Francisco, CA 94016" -156303,Lightning Charging Cable,1,14.95,02/23/19 09:49,"256 5th St, Dallas, TX 75001" -156304,AA Batteries (4-pack),2,3.84,02/23/19 20:59,"33 Washington St, Los Angeles, CA 90001" -156305,Apple Airpods Headphones,1,150,02/19/19 11:59,"759 Madison St, San Francisco, CA 94016" -156306,Wired Headphones,2,11.99,02/17/19 20:24,"688 Cherry St, Portland, ME 04101" -156307,USB-C Charging Cable,1,11.95,02/24/19 20:17,"778 13th St, Austin, TX 73301" -156308,USB-C Charging Cable,1,11.95,02/28/19 17:10,"178 Highland St, New York City, NY 10001" -156309,AA Batteries (4-pack),2,3.84,02/27/19 18:48,"738 2nd St, New York City, NY 10001" -156310,iPhone,1,700,02/21/19 11:22,"227 Park St, New York City, NY 10001" -156311,Bose SoundSport Headphones,1,99.99,02/07/19 16:50,"411 West St, San Francisco, CA 94016" -156312,Apple Airpods Headphones,1,150,02/15/19 07:52,"322 Dogwood St, Los Angeles, CA 90001" -156313,iPhone,1,700,02/06/19 11:09,"460 Madison St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -156314,27in FHD Monitor,1,149.99,02/21/19 10:13,"979 Washington St, Seattle, WA 98101" -156315,Wired Headphones,1,11.99,02/06/19 06:39,"764 14th St, Portland, OR 97035" -156316,20in Monitor,1,109.99,02/01/19 11:46,"420 Washington St, Boston, MA 02215" -156317,AAA Batteries (4-pack),1,2.99,02/12/19 20:21,"219 12th St, Boston, MA 02215" -156318,27in 4K Gaming Monitor,1,389.99,02/23/19 19:06,"745 Wilson St, San Francisco, CA 94016" -156319,34in Ultrawide Monitor,1,379.99,02/23/19 06:55,"826 Adams St, New York City, NY 10001" -156320,Flatscreen TV,1,300,02/11/19 22:21,"116 Lakeview St, Seattle, WA 98101" -156321,Flatscreen TV,1,300,02/02/19 19:09,"843 Park St, San Francisco, CA 94016" -156322,AAA Batteries (4-pack),2,2.99,02/28/19 17:53,"811 7th St, Los Angeles, CA 90001" -156323,Lightning Charging Cable,1,14.95,02/26/19 10:29,"942 4th St, San Francisco, CA 94016" -156324,iPhone,1,700,02/25/19 10:53,"893 Center St, San Francisco, CA 94016" -156325,Bose SoundSport Headphones,1,99.99,02/10/19 02:12,"895 Hickory St, Boston, MA 02215" -156326,USB-C Charging Cable,1,11.95,02/25/19 10:06,"396 Johnson St, San Francisco, CA 94016" -156327,Apple Airpods Headphones,1,150,02/22/19 21:00,"551 10th St, Boston, MA 02215" -156328,27in 4K Gaming Monitor,1,389.99,02/12/19 21:43,"402 West St, San Francisco, CA 94016" -156329,AAA Batteries (4-pack),1,2.99,02/19/19 19:18,"901 Wilson St, San Francisco, CA 94016" -156330,Wired Headphones,1,11.99,02/27/19 22:41,"423 Church St, Atlanta, GA 30301" -156331,Lightning Charging Cable,1,14.95,02/21/19 12:13,"337 Main St, New York City, NY 10001" -156332,AA Batteries (4-pack),1,3.84,02/20/19 15:33,"122 Pine St, Boston, MA 02215" -156333,Lightning Charging Cable,1,14.95,02/20/19 16:56,"32 Washington St, Portland, OR 97035" -156334,AA Batteries (4-pack),1,3.84,02/21/19 10:43,"551 Spruce St, San Francisco, CA 94016" -156335,Lightning Charging Cable,1,14.95,02/12/19 09:45,"64 Sunset St, New York City, NY 10001" -156336,Flatscreen TV,1,300,02/15/19 04:14,"551 2nd St, New York City, NY 10001" -156337,USB-C Charging Cable,1,11.95,02/18/19 09:33,"436 West St, Atlanta, GA 30301" -156338,Wired Headphones,1,11.99,02/27/19 08:08,"687 Lakeview St, Los Angeles, CA 90001" -156339,34in Ultrawide Monitor,1,379.99,02/27/19 19:09,"603 Walnut St, San Francisco, CA 94016" -156340,AAA Batteries (4-pack),1,2.99,02/10/19 18:22,"16 Johnson St, New York City, NY 10001" -156341,Google Phone,1,600,02/10/19 18:46,"895 12th St, San Francisco, CA 94016" -156342,USB-C Charging Cable,1,11.95,02/01/19 05:39,"556 Cherry St, San Francisco, CA 94016" -156343,iPhone,1,700,02/02/19 06:43,"480 Walnut St, New York City, NY 10001" -156343,Lightning Charging Cable,1,14.95,02/02/19 06:43,"480 Walnut St, New York City, NY 10001" -156344,ThinkPad Laptop,1,999.99,02/03/19 13:03,"375 Hill St, Atlanta, GA 30301" -156345,27in 4K Gaming Monitor,1,389.99,02/05/19 15:12,"139 1st St, San Francisco, CA 94016" -156346,USB-C Charging Cable,1,11.95,02/04/19 20:01,"158 Center St, Los Angeles, CA 90001" -156347,20in Monitor,1,109.99,02/25/19 16:15,"405 Pine St, Los Angeles, CA 90001" -156348,iPhone,1,700,02/24/19 01:17,"284 14th St, San Francisco, CA 94016" -156349,Apple Airpods Headphones,1,150,02/05/19 18:31,"636 Hill St, Los Angeles, CA 90001" -156350,AAA Batteries (4-pack),1,2.99,02/09/19 18:48,"982 Church St, Seattle, WA 98101" -156351,ThinkPad Laptop,1,999.99,02/12/19 11:56,"767 12th St, Boston, MA 02215" -156352,AA Batteries (4-pack),1,3.84,02/19/19 21:30,"451 Cherry St, New York City, NY 10001" -156352,27in FHD Monitor,1,149.99,02/19/19 21:30,"451 Cherry St, New York City, NY 10001" -156353,Bose SoundSport Headphones,1,99.99,02/16/19 19:35,"381 West St, New York City, NY 10001" -156354,34in Ultrawide Monitor,1,379.99,02/27/19 22:22,"762 Adams St, New York City, NY 10001" -156355,USB-C Charging Cable,1,11.95,02/16/19 21:12,"121 Lakeview St, Seattle, WA 98101" -156356,Bose SoundSport Headphones,1,99.99,02/05/19 19:03,"113 Cherry St, San Francisco, CA 94016" -156357,20in Monitor,1,109.99,02/07/19 12:39,"959 Lakeview St, New York City, NY 10001" -156358,Bose SoundSport Headphones,1,99.99,02/12/19 22:55,"873 6th St, Portland, OR 97035" -156359,AA Batteries (4-pack),2,3.84,02/05/19 21:15,"967 Wilson St, Dallas, TX 75001" -156360,34in Ultrawide Monitor,1,379.99,02/01/19 06:51,"215 Cedar St, New York City, NY 10001" -156361,Wired Headphones,1,11.99,02/21/19 04:42,"591 River St, New York City, NY 10001" -156362,27in 4K Gaming Monitor,1,389.99,02/17/19 06:57,"90 8th St, New York City, NY 10001" -156363,iPhone,1,700,02/02/19 20:58,"570 Highland St, Los Angeles, CA 90001" -156364,Lightning Charging Cable,1,14.95,02/11/19 01:44,"589 Willow St, Los Angeles, CA 90001" -156365,Vareebadd Phone,1,400,02/09/19 20:30,"730 Elm St, Portland, OR 97035" -156365,Wired Headphones,1,11.99,02/09/19 20:30,"730 Elm St, Portland, OR 97035" -156365,iPhone,1,700,02/09/19 20:30,"730 Elm St, Portland, OR 97035" -156366,Bose SoundSport Headphones,1,99.99,02/22/19 16:52,"546 Cherry St, Los Angeles, CA 90001" -156367,AAA Batteries (4-pack),2,2.99,02/12/19 05:15,"694 Lake St, San Francisco, CA 94016" -156368,AA Batteries (4-pack),2,3.84,02/13/19 13:48,"673 Lakeview St, New York City, NY 10001" -156369,Google Phone,1,600,02/14/19 18:47,"452 Sunset St, Dallas, TX 75001" -156370,AA Batteries (4-pack),1,3.84,02/21/19 12:56,"471 Sunset St, Atlanta, GA 30301" -156371,USB-C Charging Cable,1,11.95,02/27/19 11:19,"185 West St, Atlanta, GA 30301" -156372,AA Batteries (4-pack),3,3.84,02/26/19 08:54,"604 Hill St, Los Angeles, CA 90001" -156372,Apple Airpods Headphones,1,150,02/26/19 08:54,"604 Hill St, Los Angeles, CA 90001" -156373,AAA Batteries (4-pack),1,2.99,02/04/19 21:04,"957 Park St, San Francisco, CA 94016" -156374,USB-C Charging Cable,1,11.95,02/07/19 17:07,"577 South St, Seattle, WA 98101" -156375,Apple Airpods Headphones,1,150,02/23/19 05:13,"875 14th St, Boston, MA 02215" -156376,USB-C Charging Cable,2,11.95,02/23/19 11:38,"783 Cedar St, Los Angeles, CA 90001" -156377,Lightning Charging Cable,1,14.95,02/16/19 16:39,"791 Park St, San Francisco, CA 94016" -156378,Wired Headphones,1,11.99,02/09/19 19:28,"133 Pine St, Boston, MA 02215" -156379,AAA Batteries (4-pack),1,2.99,02/20/19 08:23,"994 Willow St, Atlanta, GA 30301" -156380,iPhone,1,700,02/23/19 13:40,"5 Lake St, Boston, MA 02215" -156381,USB-C Charging Cable,1,11.95,02/17/19 21:14,"400 Lakeview St, Dallas, TX 75001" -156382,AAA Batteries (4-pack),1,2.99,02/21/19 20:00,"944 Jackson St, Los Angeles, CA 90001" -156383,Lightning Charging Cable,1,14.95,02/23/19 09:34,"869 Chestnut St, Boston, MA 02215" -156384,Apple Airpods Headphones,1,150,02/02/19 10:41,"701 Maple St, Boston, MA 02215" -156385,AAA Batteries (4-pack),1,2.99,02/02/19 22:33,"961 6th St, Los Angeles, CA 90001" -156386,20in Monitor,1,109.99,02/07/19 07:24,"200 Madison St, New York City, NY 10001" -156387,AAA Batteries (4-pack),1,2.99,02/16/19 16:17,"950 Pine St, Dallas, TX 75001" -156388,Apple Airpods Headphones,1,150,02/04/19 14:24,"579 South St, Boston, MA 02215" -156389,Lightning Charging Cable,1,14.95,02/01/19 09:02,"80 Pine St, New York City, NY 10001" -156390,AA Batteries (4-pack),2,3.84,02/15/19 23:52,"592 Dogwood St, San Francisco, CA 94016" -156391,ThinkPad Laptop,1,999.99,02/08/19 21:37,"275 13th St, San Francisco, CA 94016" -156392,Wired Headphones,1,11.99,02/08/19 02:06,"313 13th St, San Francisco, CA 94016" -156393,USB-C Charging Cable,1,11.95,02/26/19 16:46,"18 Madison St, Portland, OR 97035" -156394,Lightning Charging Cable,1,14.95,02/10/19 00:31,"550 13th St, Dallas, TX 75001" -156395,AA Batteries (4-pack),2,3.84,02/17/19 19:36,"904 Jackson St, Boston, MA 02215" -156396,Lightning Charging Cable,1,14.95,02/12/19 15:36,"750 5th St, San Francisco, CA 94016" -156397,34in Ultrawide Monitor,1,379.99,02/25/19 19:29,"879 Cherry St, San Francisco, CA 94016" -156398,Wired Headphones,1,11.99,02/22/19 10:02,"568 4th St, Los Angeles, CA 90001" -156399,AAA Batteries (4-pack),1,2.99,02/01/19 11:11,"251 Wilson St, Portland, OR 97035" -156399,Lightning Charging Cable,1,14.95,02/01/19 11:11,"251 Wilson St, Portland, OR 97035" -156400,AAA Batteries (4-pack),1,2.99,02/25/19 13:18,"902 Elm St, Dallas, TX 75001" -156401,AA Batteries (4-pack),3,3.84,02/03/19 23:35,"250 12th St, New York City, NY 10001" -156402,Bose SoundSport Headphones,1,99.99,02/02/19 15:57,"218 Wilson St, Austin, TX 73301" -156403,AAA Batteries (4-pack),1,2.99,02/24/19 18:52,"743 6th St, San Francisco, CA 94016" -156404,USB-C Charging Cable,1,11.95,02/03/19 13:44,"151 14th St, New York City, NY 10001" -156405,AA Batteries (4-pack),1,3.84,02/09/19 23:22,"60 7th St, Boston, MA 02215" -156406,AAA Batteries (4-pack),2,2.99,02/13/19 12:39,"931 6th St, Atlanta, GA 30301" -156407,Wired Headphones,1,11.99,02/04/19 20:54,"277 Willow St, Dallas, TX 75001" -156408,Apple Airpods Headphones,1,150,02/18/19 23:06,"423 Hill St, San Francisco, CA 94016" -156409,Lightning Charging Cable,1,14.95,02/21/19 21:22,"293 Walnut St, San Francisco, CA 94016" -156410,USB-C Charging Cable,1,11.95,02/10/19 16:52,"208 Ridge St, San Francisco, CA 94016" -156411,iPhone,1,700,02/07/19 15:30,"626 Lincoln St, Dallas, TX 75001" -156412,Lightning Charging Cable,2,14.95,02/08/19 18:32,"967 Meadow St, Austin, TX 73301" -156413,34in Ultrawide Monitor,1,379.99,02/01/19 17:25,"578 Hickory St, Atlanta, GA 30301" -156414,iPhone,1,700,02/25/19 10:49,"779 Spruce St, Los Angeles, CA 90001" -156415,Bose SoundSport Headphones,1,99.99,02/24/19 12:21,"121 Jackson St, New York City, NY 10001" -156416,USB-C Charging Cable,1,11.95,02/13/19 18:33,"4 Center St, Seattle, WA 98101" -156417,iPhone,1,700,02/11/19 15:32,"604 Lakeview St, New York City, NY 10001" -156418,27in 4K Gaming Monitor,1,389.99,02/25/19 19:03,"361 4th St, San Francisco, CA 94016" -156419,27in 4K Gaming Monitor,1,389.99,02/18/19 13:31,"827 8th St, New York City, NY 10001" -156420,Macbook Pro Laptop,1,1700,02/16/19 09:24,"488 Lake St, San Francisco, CA 94016" -156421,AAA Batteries (4-pack),1,2.99,02/18/19 22:01,"174 8th St, Atlanta, GA 30301" -156422,iPhone,1,700,02/02/19 14:28,"746 South St, Austin, TX 73301" -156423,AAA Batteries (4-pack),1,2.99,02/20/19 21:24,"702 Madison St, Portland, OR 97035" -156424,Apple Airpods Headphones,1,150,02/12/19 15:26,"904 14th St, San Francisco, CA 94016" -156425,iPhone,1,700,02/11/19 21:02,"813 Spruce St, Boston, MA 02215" -156426,AAA Batteries (4-pack),1,2.99,02/03/19 17:41,"763 Hickory St, Boston, MA 02215" -156427,Wired Headphones,1,11.99,02/01/19 12:55,"69 Spruce St, Seattle, WA 98101" -156428,Vareebadd Phone,1,400,02/20/19 02:45,"624 Spruce St, Portland, ME 04101" -156429,USB-C Charging Cable,1,11.95,03/01/19 02:29,"171 Elm St, New York City, NY 10001" -156430,AAA Batteries (4-pack),1,2.99,02/19/19 04:34,"217 Adams St, New York City, NY 10001" -156431,27in 4K Gaming Monitor,1,389.99,02/22/19 15:51,"842 Walnut St, Los Angeles, CA 90001" -156432,Lightning Charging Cable,1,14.95,02/17/19 13:39,"804 Hickory St, Los Angeles, CA 90001" -156433,Bose SoundSport Headphones,1,99.99,02/09/19 09:48,"721 12th St, Austin, TX 73301" -156434,AA Batteries (4-pack),1,3.84,02/07/19 18:42,"102 Wilson St, Los Angeles, CA 90001" -156435,AAA Batteries (4-pack),1,2.99,02/11/19 21:50,"38 River St, Atlanta, GA 30301" -156436,Google Phone,1,600,02/04/19 13:35,"892 Hickory St, Los Angeles, CA 90001" -156437,AAA Batteries (4-pack),4,2.99,02/04/19 10:15,"762 South St, Los Angeles, CA 90001" -156438,Lightning Charging Cable,1,14.95,02/12/19 16:20,"360 West St, Boston, MA 02215" -156439,USB-C Charging Cable,1,11.95,02/14/19 10:38,"261 Jefferson St, Portland, ME 04101" -156440,Vareebadd Phone,1,400,02/02/19 14:04,"662 Lakeview St, Boston, MA 02215" -156440,USB-C Charging Cable,1,11.95,02/02/19 14:04,"662 Lakeview St, Boston, MA 02215" -156441,Lightning Charging Cable,1,14.95,02/20/19 14:59,"803 Spruce St, San Francisco, CA 94016" -156442,USB-C Charging Cable,1,11.95,02/18/19 19:37,"541 Cherry St, Seattle, WA 98101" -156443,Vareebadd Phone,1,400,02/12/19 11:56,"504 Sunset St, Boston, MA 02215" -156444,AAA Batteries (4-pack),2,2.99,02/21/19 15:58,"941 1st St, Los Angeles, CA 90001" -156445,Lightning Charging Cable,1,14.95,02/15/19 10:01,"285 Jackson St, Atlanta, GA 30301" -156446,20in Monitor,1,109.99,02/17/19 18:25,"874 Jefferson St, Dallas, TX 75001" -156447,27in 4K Gaming Monitor,1,389.99,02/09/19 17:40,"695 Pine St, New York City, NY 10001" -156448,AAA Batteries (4-pack),1,2.99,02/23/19 15:48,"666 Jefferson St, New York City, NY 10001" -156449,iPhone,1,700,02/13/19 14:08,"142 Elm St, Seattle, WA 98101" -156449,Lightning Charging Cable,1,14.95,02/13/19 14:08,"142 Elm St, Seattle, WA 98101" -156450,Google Phone,1,600,02/28/19 17:41,"253 West St, Dallas, TX 75001" -156451,Apple Airpods Headphones,1,150,02/20/19 22:08,"84 Wilson St, San Francisco, CA 94016" -156452,20in Monitor,1,109.99,02/19/19 10:15,"533 Chestnut St, Seattle, WA 98101" -156453,Lightning Charging Cable,1,14.95,02/16/19 14:21,"386 6th St, Seattle, WA 98101" -156454,Lightning Charging Cable,1,14.95,02/06/19 20:37,"517 Meadow St, Austin, TX 73301" -156455,AAA Batteries (4-pack),4,2.99,02/23/19 11:55,"127 Wilson St, San Francisco, CA 94016" -156456,Google Phone,1,600,02/22/19 08:44,"825 Main St, Austin, TX 73301" -156457,Lightning Charging Cable,1,14.95,02/03/19 10:17,"658 Maple St, San Francisco, CA 94016" -156458,Lightning Charging Cable,1,14.95,02/02/19 21:07,"42 10th St, Dallas, TX 75001" -156459,LG Washing Machine,1,600.0,02/27/19 09:56,"875 Spruce St, San Francisco, CA 94016" -156460,AAA Batteries (4-pack),2,2.99,02/14/19 17:52,"566 Willow St, San Francisco, CA 94016" -156461,Wired Headphones,1,11.99,02/11/19 10:44,"73 Washington St, Austin, TX 73301" -156462,34in Ultrawide Monitor,1,379.99,02/19/19 05:28,"645 12th St, Boston, MA 02215" -156463,AA Batteries (4-pack),1,3.84,02/11/19 22:33,"331 7th St, Dallas, TX 75001" -156463,27in 4K Gaming Monitor,1,389.99,02/11/19 22:33,"331 7th St, Dallas, TX 75001" -156464,34in Ultrawide Monitor,1,379.99,02/19/19 13:13,"699 Madison St, New York City, NY 10001" -156465,Apple Airpods Headphones,1,150,02/08/19 10:04,"729 Center St, Los Angeles, CA 90001" -156466,Macbook Pro Laptop,1,1700,02/16/19 20:29,"877 Elm St, Austin, TX 73301" -156467,Wired Headphones,1,11.99,02/18/19 10:01,"78 Lincoln St, New York City, NY 10001" -156468,AAA Batteries (4-pack),6,2.99,02/14/19 12:28,"227 10th St, San Francisco, CA 94016" -156469,Bose SoundSport Headphones,1,99.99,02/27/19 21:17,"431 Forest St, Atlanta, GA 30301" -156470,USB-C Charging Cable,1,11.95,02/07/19 21:18,"531 6th St, Los Angeles, CA 90001" -156471,Wired Headphones,1,11.99,02/02/19 14:11,"823 Johnson St, Portland, OR 97035" -156472,USB-C Charging Cable,2,11.95,02/26/19 19:13,"473 River St, Los Angeles, CA 90001" -156473,AAA Batteries (4-pack),2,2.99,02/10/19 15:15,"675 Dogwood St, San Francisco, CA 94016" -156474,27in FHD Monitor,1,149.99,02/09/19 15:08,"962 Lincoln St, San Francisco, CA 94016" -156475,Google Phone,1,600,02/06/19 01:40,"759 12th St, San Francisco, CA 94016" -156476,Wired Headphones,1,11.99,02/22/19 11:30,"475 14th St, Portland, OR 97035" -156477,Apple Airpods Headphones,1,150,02/07/19 12:31,"205 14th St, San Francisco, CA 94016" -156478,AA Batteries (4-pack),1,3.84,02/10/19 18:37,"369 14th St, San Francisco, CA 94016" -156479,Bose SoundSport Headphones,1,99.99,02/12/19 15:32,"328 5th St, Boston, MA 02215" -156480,USB-C Charging Cable,1,11.95,02/04/19 10:40,"810 Jefferson St, Los Angeles, CA 90001" -156481,Wired Headphones,1,11.99,02/09/19 10:00,"236 Chestnut St, Portland, OR 97035" -156482,20in Monitor,1,109.99,02/15/19 09:31,"955 South St, Los Angeles, CA 90001" -156483,Lightning Charging Cable,1,14.95,02/19/19 21:05,"293 Willow St, Portland, ME 04101" -156484,Apple Airpods Headphones,1,150,02/23/19 21:41,"837 9th St, Austin, TX 73301" -156485,27in 4K Gaming Monitor,1,389.99,02/06/19 12:15,"836 Cedar St, Los Angeles, CA 90001" -156486,Bose SoundSport Headphones,1,99.99,02/13/19 12:16,"312 Jackson St, Atlanta, GA 30301" -156487,USB-C Charging Cable,1,11.95,02/08/19 10:50,"84 Elm St, Los Angeles, CA 90001" -156488,Apple Airpods Headphones,1,150,02/03/19 12:22,"669 8th St, New York City, NY 10001" -156489,AAA Batteries (4-pack),1,2.99,02/05/19 20:01,"507 5th St, Portland, OR 97035" -156490,USB-C Charging Cable,1,11.95,02/16/19 18:41,"242 12th St, Portland, OR 97035" -156491,Wired Headphones,1,11.99,02/18/19 16:34,"428 Wilson St, Los Angeles, CA 90001" -156492,Macbook Pro Laptop,1,1700,02/17/19 16:32,"952 Johnson St, San Francisco, CA 94016" -156493,27in FHD Monitor,1,149.99,02/23/19 20:05,"194 South St, New York City, NY 10001" -156494,20in Monitor,1,109.99,02/04/19 19:56,"335 Forest St, Boston, MA 02215" -156495,Google Phone,1,600,02/04/19 11:44,"465 Madison St, New York City, NY 10001" -156496,Wired Headphones,2,11.99,02/02/19 17:28,"523 Jackson St, San Francisco, CA 94016" -156497,USB-C Charging Cable,1,11.95,02/06/19 20:13,"736 6th St, Dallas, TX 75001" -156498,Apple Airpods Headphones,1,150,02/12/19 13:12,"736 2nd St, New York City, NY 10001" -156499,Lightning Charging Cable,1,14.95,02/18/19 09:37,"376 Pine St, New York City, NY 10001" -156500,USB-C Charging Cable,1,11.95,02/23/19 12:32,"935 Hill St, Seattle, WA 98101" -156501,AA Batteries (4-pack),1,3.84,02/09/19 08:49,"393 Forest St, Portland, OR 97035" -156502,Wired Headphones,1,11.99,02/17/19 16:15,"436 6th St, Dallas, TX 75001" -156503,USB-C Charging Cable,1,11.95,02/10/19 01:15,"792 Sunset St, San Francisco, CA 94016" -156504,Macbook Pro Laptop,1,1700,02/12/19 21:28,"869 Dogwood St, Atlanta, GA 30301" -156505,Bose SoundSport Headphones,1,99.99,02/24/19 15:03,"657 Dogwood St, Austin, TX 73301" -156506,USB-C Charging Cable,1,11.95,02/23/19 15:13,"157 Spruce St, Boston, MA 02215" -156507,27in FHD Monitor,1,149.99,02/27/19 18:03,"982 4th St, Portland, OR 97035" -156508,Lightning Charging Cable,1,14.95,02/13/19 10:40,"635 Cherry St, Los Angeles, CA 90001" -156509,AAA Batteries (4-pack),1,2.99,02/28/19 23:01,"442 7th St, Los Angeles, CA 90001" -156510,Flatscreen TV,1,300,02/21/19 16:47,"337 Adams St, Seattle, WA 98101" -156511,AAA Batteries (4-pack),4,2.99,02/08/19 17:45,"848 Maple St, Los Angeles, CA 90001" -156512,USB-C Charging Cable,1,11.95,02/04/19 21:39,"667 Johnson St, Dallas, TX 75001" -156513,34in Ultrawide Monitor,1,379.99,02/19/19 17:36,"296 Cherry St, Portland, OR 97035" -156514,Wired Headphones,1,11.99,02/02/19 16:32,"526 Cherry St, Austin, TX 73301" -156515,AAA Batteries (4-pack),2,2.99,02/09/19 07:45,"912 4th St, San Francisco, CA 94016" -156516,Lightning Charging Cable,1,14.95,02/02/19 22:04,"929 Meadow St, San Francisco, CA 94016" -156517,Apple Airpods Headphones,1,150,02/15/19 20:49,"688 14th St, San Francisco, CA 94016" -156518,Google Phone,1,600,02/07/19 21:35,"792 9th St, Seattle, WA 98101" -156519,34in Ultrawide Monitor,1,379.99,02/21/19 14:46,"822 Highland St, Dallas, TX 75001" -156520,27in FHD Monitor,1,149.99,02/03/19 13:47,"323 Main St, Los Angeles, CA 90001" -156521,AA Batteries (4-pack),1,3.84,02/17/19 07:30,"517 Madison St, Portland, ME 04101" -156522,AA Batteries (4-pack),1,3.84,02/26/19 15:12,"920 Willow St, San Francisco, CA 94016" -156523,Flatscreen TV,1,300,02/26/19 21:58,"223 Highland St, New York City, NY 10001" -156524,Google Phone,1,600,02/26/19 20:29,"212 13th St, Boston, MA 02215" -156524,USB-C Charging Cable,1,11.95,02/26/19 20:29,"212 13th St, Boston, MA 02215" -156525,iPhone,1,700,02/21/19 18:44,"387 Walnut St, Los Angeles, CA 90001" -156526,Google Phone,1,600,02/28/19 20:39,"304 4th St, Boston, MA 02215" -156527,AAA Batteries (4-pack),1,2.99,02/03/19 14:09,"791 West St, San Francisco, CA 94016" -156528,USB-C Charging Cable,2,11.95,02/22/19 12:15,"727 Dogwood St, San Francisco, CA 94016" -,,,,, -156529,Lightning Charging Cable,1,14.95,02/19/19 11:48,"181 Forest St, Austin, TX 73301" -156530,AAA Batteries (4-pack),1,2.99,02/11/19 18:00,"233 Maple St, Los Angeles, CA 90001" -156531,Apple Airpods Headphones,1,150,02/12/19 12:06,"121 Willow St, New York City, NY 10001" -156532,Apple Airpods Headphones,1,150,02/10/19 12:18,"556 Washington St, Boston, MA 02215" -156533,ThinkPad Laptop,1,999.99,02/02/19 10:58,"657 11th St, Atlanta, GA 30301" -156534,34in Ultrawide Monitor,1,379.99,02/12/19 21:54,"291 5th St, San Francisco, CA 94016" -156535,AAA Batteries (4-pack),1,2.99,02/01/19 14:09,"291 Cherry St, Atlanta, GA 30301" -156536,Wired Headphones,2,11.99,02/28/19 21:32,"211 12th St, Los Angeles, CA 90001" -156537,Wired Headphones,1,11.99,02/14/19 11:26,"820 Adams St, Atlanta, GA 30301" -156538,AA Batteries (4-pack),1,3.84,02/25/19 17:37,"318 Main St, Austin, TX 73301" -156539,AA Batteries (4-pack),1,3.84,02/18/19 13:46,"577 Walnut St, San Francisco, CA 94016" -156540,27in 4K Gaming Monitor,1,389.99,02/24/19 21:47,"33 Jackson St, Atlanta, GA 30301" -156541,Vareebadd Phone,1,400,02/12/19 18:52,"104 Hickory St, Seattle, WA 98101" -156542,Lightning Charging Cable,1,14.95,02/09/19 15:43,"135 Pine St, Portland, OR 97035" -156543,Apple Airpods Headphones,1,150,02/13/19 07:05,"621 Johnson St, Los Angeles, CA 90001" -156544,Bose SoundSport Headphones,1,99.99,02/18/19 07:49,"561 North St, San Francisco, CA 94016" -156545,27in FHD Monitor,1,149.99,02/14/19 11:16,"686 Forest St, New York City, NY 10001" -156546,Apple Airpods Headphones,1,150,02/04/19 14:02,"822 Main St, Los Angeles, CA 90001" -156547,Wired Headphones,1,11.99,02/02/19 18:28,"113 Spruce St, Portland, OR 97035" -156548,USB-C Charging Cable,1,11.95,02/22/19 10:13,"581 Lakeview St, Boston, MA 02215" -156549,AA Batteries (4-pack),1,3.84,02/05/19 18:27,"256 Dogwood St, San Francisco, CA 94016" -156550,Flatscreen TV,1,300,02/25/19 16:54,"715 4th St, Los Angeles, CA 90001" -156551,Wired Headphones,1,11.99,02/01/19 23:42,"966 River St, Dallas, TX 75001" -156552,Lightning Charging Cable,1,14.95,02/12/19 12:16,"885 South St, San Francisco, CA 94016" -156553,AA Batteries (4-pack),1,3.84,02/21/19 16:41,"291 7th St, Los Angeles, CA 90001" -156554,34in Ultrawide Monitor,1,379.99,02/16/19 18:56,"380 Cedar St, San Francisco, CA 94016" -156555,ThinkPad Laptop,1,999.99,02/11/19 19:36,"892 Willow St, San Francisco, CA 94016" -156556,Bose SoundSport Headphones,1,99.99,02/12/19 00:56,"719 Highland St, Los Angeles, CA 90001" -156557,Wired Headphones,1,11.99,02/23/19 14:34,"167 Lincoln St, Atlanta, GA 30301" -156558,AAA Batteries (4-pack),2,2.99,02/19/19 10:41,"671 Pine St, Los Angeles, CA 90001" -156559,Lightning Charging Cable,1,14.95,02/13/19 15:32,"660 Dogwood St, Seattle, WA 98101" -156560,Apple Airpods Headphones,1,150,02/18/19 13:52,"831 Spruce St, Atlanta, GA 30301" -156561,USB-C Charging Cable,2,11.95,02/08/19 17:37,"622 Chestnut St, New York City, NY 10001" -156562,ThinkPad Laptop,1,999.99,02/27/19 17:18,"111 Dogwood St, Atlanta, GA 30301" -156563,Flatscreen TV,1,300,02/22/19 12:53,"788 Chestnut St, New York City, NY 10001" -156564,27in FHD Monitor,1,149.99,02/12/19 10:49,"103 Walnut St, Atlanta, GA 30301" -156565,Wired Headphones,1,11.99,02/20/19 09:23,"976 Wilson St, San Francisco, CA 94016" -156566,Wired Headphones,1,11.99,02/26/19 15:40,"201 Dogwood St, New York City, NY 10001" -156567,USB-C Charging Cable,1,11.95,02/14/19 12:24,"870 Ridge St, San Francisco, CA 94016" -156568,Google Phone,1,600,02/07/19 23:08,"856 Center St, Seattle, WA 98101" -156569,AA Batteries (4-pack),1,3.84,02/21/19 15:55,"422 Lake St, Dallas, TX 75001" -156570,Google Phone,1,600,02/03/19 19:59,"614 Lake St, Los Angeles, CA 90001" -156571,USB-C Charging Cable,2,11.95,02/02/19 12:35,"588 Cedar St, Atlanta, GA 30301" -156572,Bose SoundSport Headphones,1,99.99,02/07/19 21:54,"953 Meadow St, New York City, NY 10001" -156573,AA Batteries (4-pack),1,3.84,02/17/19 12:46,"237 2nd St, Boston, MA 02215" -156574,USB-C Charging Cable,1,11.95,02/26/19 18:54,"887 Adams St, Los Angeles, CA 90001" -156575,USB-C Charging Cable,1,11.95,02/12/19 16:12,"20 West St, Portland, OR 97035" -156576,Lightning Charging Cable,2,14.95,02/04/19 13:47,"309 Chestnut St, New York City, NY 10001" -156577,AAA Batteries (4-pack),1,2.99,02/01/19 16:30,"911 Hickory St, Dallas, TX 75001" -156578,Apple Airpods Headphones,1,150,02/07/19 17:00,"12 Chestnut St, Boston, MA 02215" -156579,Lightning Charging Cable,1,14.95,02/16/19 06:56,"412 River St, Los Angeles, CA 90001" -156580,AA Batteries (4-pack),1,3.84,02/07/19 14:04,"473 South St, Dallas, TX 75001" -156581,USB-C Charging Cable,1,11.95,02/09/19 12:47,"828 1st St, Boston, MA 02215" -156582,Bose SoundSport Headphones,1,99.99,02/08/19 16:49,"689 Ridge St, San Francisco, CA 94016" -156583,USB-C Charging Cable,1,11.95,02/07/19 20:28,"951 1st St, Boston, MA 02215" -156584,AAA Batteries (4-pack),4,2.99,02/18/19 10:13,"205 Lakeview St, Dallas, TX 75001" -156585,Wired Headphones,1,11.99,02/12/19 23:43,"645 Hickory St, Los Angeles, CA 90001" -156586,AAA Batteries (4-pack),1,2.99,02/22/19 00:53,"99 Lake St, Atlanta, GA 30301" -156587,Flatscreen TV,1,300,02/24/19 11:41,"972 Jackson St, Dallas, TX 75001" -156588,AA Batteries (4-pack),1,3.84,02/27/19 11:09,"611 10th St, Dallas, TX 75001" -156589,AA Batteries (4-pack),2,3.84,02/28/19 10:59,"69 Lake St, San Francisco, CA 94016" -156590,AA Batteries (4-pack),1,3.84,02/21/19 10:24,"644 Jefferson St, Boston, MA 02215" -156591,Bose SoundSport Headphones,1,99.99,02/01/19 11:13,"721 7th St, San Francisco, CA 94016" -156592,USB-C Charging Cable,1,11.95,02/02/19 10:37,"758 Elm St, Los Angeles, CA 90001" -156593,USB-C Charging Cable,1,11.95,02/28/19 20:36,"697 9th St, Boston, MA 02215" -156594,Apple Airpods Headphones,1,150,02/21/19 13:14,"177 North St, Dallas, TX 75001" -156595,Lightning Charging Cable,1,14.95,02/06/19 11:56,"415 West St, Boston, MA 02215" -156596,Apple Airpods Headphones,1,150,02/20/19 16:26,"968 Elm St, New York City, NY 10001" -156597,USB-C Charging Cable,1,11.95,02/23/19 09:43,"939 Willow St, San Francisco, CA 94016" -156598,ThinkPad Laptop,1,999.99,02/12/19 09:15,"71 10th St, Los Angeles, CA 90001" -156599,20in Monitor,1,109.99,02/25/19 22:14,"223 1st St, Seattle, WA 98101" -156600,ThinkPad Laptop,1,999.99,02/27/19 22:53,"969 Cedar St, Austin, TX 73301" -156601,Google Phone,1,600,02/23/19 20:36,"133 Cedar St, Boston, MA 02215" -156602,Wired Headphones,1,11.99,02/05/19 18:00,"199 River St, New York City, NY 10001" -156603,AA Batteries (4-pack),1,3.84,02/28/19 13:06,"159 Jackson St, Los Angeles, CA 90001" -156604,27in 4K Gaming Monitor,1,389.99,02/02/19 01:00,"457 Main St, San Francisco, CA 94016" -156605,34in Ultrawide Monitor,1,379.99,02/11/19 10:44,"974 10th St, Los Angeles, CA 90001" -156606,AA Batteries (4-pack),3,3.84,02/14/19 02:30,"740 Main St, Seattle, WA 98101" -156607,AA Batteries (4-pack),1,3.84,02/04/19 11:38,"274 Jefferson St, Los Angeles, CA 90001" -156608,27in 4K Gaming Monitor,1,389.99,02/24/19 08:40,"907 14th St, Seattle, WA 98101" -156609,Apple Airpods Headphones,1,150,02/06/19 23:42,"42 River St, Boston, MA 02215" -156610,USB-C Charging Cable,1,11.95,02/26/19 13:08,"836 South St, Austin, TX 73301" -156611,Lightning Charging Cable,1,14.95,02/19/19 01:27,"639 5th St, San Francisco, CA 94016" -156612,USB-C Charging Cable,1,11.95,02/10/19 22:14,"783 South St, Dallas, TX 75001" -156613,Wired Headphones,1,11.99,02/27/19 17:42,"296 Forest St, Portland, OR 97035" -156614,Bose SoundSport Headphones,1,99.99,02/28/19 00:17,"151 Jefferson St, Atlanta, GA 30301" -156615,Wired Headphones,1,11.99,02/26/19 13:38,"292 Hill St, San Francisco, CA 94016" -156616,iPhone,1,700,02/04/19 20:53,"650 12th St, Atlanta, GA 30301" -156617,Lightning Charging Cable,1,14.95,02/09/19 17:08,"639 Hickory St, Seattle, WA 98101" -156618,iPhone,1,700,02/19/19 13:59,"131 Main St, Atlanta, GA 30301" -156619,Google Phone,1,600,02/08/19 14:32,"568 Walnut St, Seattle, WA 98101" -156620,Wired Headphones,1,11.99,02/24/19 01:32,"716 Lakeview St, San Francisco, CA 94016" -156621,Google Phone,1,600,02/10/19 18:35,"508 Walnut St, Dallas, TX 75001" -156621,USB-C Charging Cable,1,11.95,02/10/19 18:35,"508 Walnut St, Dallas, TX 75001" -156622,Apple Airpods Headphones,1,150,02/17/19 12:56,"110 8th St, Los Angeles, CA 90001" -156623,Lightning Charging Cable,1,14.95,02/07/19 12:41,"15 North St, Portland, OR 97035" -156624,34in Ultrawide Monitor,1,379.99,02/06/19 22:03,"179 13th St, New York City, NY 10001" -156625,Lightning Charging Cable,1,14.95,02/15/19 16:40,"625 Walnut St, Boston, MA 02215" -156626,Bose SoundSport Headphones,1,99.99,02/04/19 23:39,"334 Hickory St, Seattle, WA 98101" -156627,Google Phone,1,600,02/04/19 10:29,"29 1st St, Portland, OR 97035" -156628,Lightning Charging Cable,1,14.95,02/22/19 07:54,"435 Elm St, New York City, NY 10001" -156629,AAA Batteries (4-pack),1,2.99,02/25/19 00:13,"475 12th St, San Francisco, CA 94016" -156630,Google Phone,1,600,02/15/19 10:32,"859 Pine St, San Francisco, CA 94016" -156631,34in Ultrawide Monitor,1,379.99,02/21/19 20:49,"21 Center St, Los Angeles, CA 90001" -156632,USB-C Charging Cable,1,11.95,02/13/19 19:17,"570 South St, Boston, MA 02215" -156633,34in Ultrawide Monitor,1,379.99,02/12/19 01:42,"558 Jackson St, Dallas, TX 75001" -156634,USB-C Charging Cable,1,11.95,02/27/19 19:42,"832 11th St, New York City, NY 10001" -156635,Wired Headphones,1,11.99,02/15/19 15:17,"709 Main St, San Francisco, CA 94016" -156636,34in Ultrawide Monitor,1,379.99,02/10/19 12:45,"545 Main St, Dallas, TX 75001" -156637,Lightning Charging Cable,1,14.95,02/24/19 19:52,"383 Madison St, New York City, NY 10001" -156638,AA Batteries (4-pack),5,3.84,02/22/19 09:30,"168 14th St, Los Angeles, CA 90001" -156638,Flatscreen TV,1,300,02/22/19 09:30,"168 14th St, Los Angeles, CA 90001" -156639,Lightning Charging Cable,1,14.95,02/22/19 00:37,"257 Dogwood St, San Francisco, CA 94016" -156640,Lightning Charging Cable,1,14.95,02/11/19 10:32,"818 1st St, San Francisco, CA 94016" -156641,Lightning Charging Cable,1,14.95,02/27/19 14:09,"83 13th St, San Francisco, CA 94016" -156642,Google Phone,1,600,02/13/19 15:28,"574 Ridge St, Dallas, TX 75001" -156643,Apple Airpods Headphones,1,150,02/28/19 00:00,"520 Maple St, New York City, NY 10001" -156644,USB-C Charging Cable,1,11.95,02/19/19 13:26,"647 14th St, Los Angeles, CA 90001" -156645,iPhone,1,700,02/27/19 14:24,"679 Madison St, Dallas, TX 75001" -156646,Bose SoundSport Headphones,1,99.99,02/22/19 21:34,"282 6th St, San Francisco, CA 94016" -156647,USB-C Charging Cable,1,11.95,02/19/19 11:47,"670 Maple St, San Francisco, CA 94016" -156648,USB-C Charging Cable,1,11.95,02/09/19 11:55,"604 Madison St, San Francisco, CA 94016" -156649,Lightning Charging Cable,1,14.95,02/20/19 00:13,"795 Lake St, San Francisco, CA 94016" -156650,Apple Airpods Headphones,1,150,02/03/19 21:55,"125 Johnson St, Austin, TX 73301" -156651,27in 4K Gaming Monitor,1,389.99,02/02/19 16:32,"846 Hill St, Atlanta, GA 30301" -156652,AA Batteries (4-pack),1,3.84,02/10/19 09:55,"519 Hickory St, Atlanta, GA 30301" -156653,Wired Headphones,1,11.99,02/11/19 15:07,"466 Sunset St, Boston, MA 02215" -156654,ThinkPad Laptop,1,999.99,02/12/19 08:19,"603 Wilson St, San Francisco, CA 94016" -156655,USB-C Charging Cable,1,11.95,02/06/19 19:48,"684 Sunset St, New York City, NY 10001" -156656,AAA Batteries (4-pack),1,2.99,02/16/19 18:25,"256 Dogwood St, San Francisco, CA 94016" -156657,34in Ultrawide Monitor,1,379.99,02/20/19 22:31,"230 Chestnut St, New York City, NY 10001" -156658,USB-C Charging Cable,1,11.95,02/09/19 00:18,"629 Forest St, Portland, OR 97035" -156659,AA Batteries (4-pack),1,3.84,02/12/19 08:36,"44 Spruce St, San Francisco, CA 94016" -156660,AA Batteries (4-pack),1,3.84,02/12/19 13:15,"439 Ridge St, Los Angeles, CA 90001" -156661,Lightning Charging Cable,1,14.95,02/19/19 11:29,"436 Hickory St, San Francisco, CA 94016" -156662,Lightning Charging Cable,1,14.95,02/09/19 14:21,"524 Adams St, Dallas, TX 75001" -156663,Lightning Charging Cable,1,14.95,02/11/19 21:09,"290 Highland St, San Francisco, CA 94016" -156664,USB-C Charging Cable,1,11.95,02/06/19 14:59,"665 River St, Austin, TX 73301" -156665,34in Ultrawide Monitor,1,379.99,02/09/19 22:53,"315 5th St, Portland, OR 97035" -156666,Bose SoundSport Headphones,1,99.99,02/14/19 09:40,"571 13th St, Atlanta, GA 30301" -156667,Apple Airpods Headphones,1,150,02/28/19 10:12,"619 14th St, Dallas, TX 75001" -156668,AAA Batteries (4-pack),2,2.99,02/14/19 17:44,"888 10th St, San Francisco, CA 94016" -156669,Apple Airpods Headphones,1,150,02/16/19 20:54,"355 12th St, Atlanta, GA 30301" -156670,USB-C Charging Cable,1,11.95,02/19/19 12:37,"750 Pine St, Portland, OR 97035" -156671,AAA Batteries (4-pack),2,2.99,02/28/19 12:17,"588 River St, San Francisco, CA 94016" -156672,34in Ultrawide Monitor,1,379.99,02/16/19 19:34,"983 Madison St, San Francisco, CA 94016" -156673,Flatscreen TV,1,300,02/07/19 14:23,"414 Lakeview St, New York City, NY 10001" -156674,Lightning Charging Cable,1,14.95,02/25/19 15:26,"586 Lincoln St, Austin, TX 73301" -156675,Lightning Charging Cable,1,14.95,02/06/19 12:36,"720 Highland St, Boston, MA 02215" -156676,Wired Headphones,1,11.99,02/22/19 22:53,"106 Jefferson St, Atlanta, GA 30301" -156677,ThinkPad Laptop,1,999.99,02/10/19 17:44,"253 11th St, Los Angeles, CA 90001" -156678,Bose SoundSport Headphones,1,99.99,02/12/19 17:36,"602 Chestnut St, Seattle, WA 98101" -156679,AAA Batteries (4-pack),1,2.99,02/28/19 22:42,"622 Maple St, Atlanta, GA 30301" -156680,Bose SoundSport Headphones,1,99.99,02/05/19 09:37,"598 Walnut St, Boston, MA 02215" -156681,Vareebadd Phone,1,400,02/22/19 18:54,"302 Main St, Seattle, WA 98101" -156682,iPhone,1,700,02/16/19 10:07,"938 Forest St, Boston, MA 02215" -156682,Wired Headphones,1,11.99,02/16/19 10:07,"938 Forest St, Boston, MA 02215" -156683,Lightning Charging Cable,1,14.95,02/02/19 13:03,"774 Pine St, Boston, MA 02215" -156684,USB-C Charging Cable,1,11.95,02/15/19 19:25,"204 4th St, Los Angeles, CA 90001" -156685,Lightning Charging Cable,1,14.95,02/24/19 17:53,"529 Wilson St, Boston, MA 02215" -156686,AAA Batteries (4-pack),1,2.99,02/07/19 11:47,"487 Lakeview St, New York City, NY 10001" -156687,AAA Batteries (4-pack),2,2.99,02/10/19 12:27,"889 Johnson St, Austin, TX 73301" -156688,27in 4K Gaming Monitor,1,389.99,02/21/19 11:44,"212 Maple St, New York City, NY 10001" -156689,Wired Headphones,1,11.99,02/18/19 13:03,"915 Jefferson St, Portland, OR 97035" -156690,Wired Headphones,1,11.99,02/02/19 20:57,"456 Maple St, Boston, MA 02215" -156691,AA Batteries (4-pack),1,3.84,02/26/19 22:04,"260 5th St, Atlanta, GA 30301" -156692,AAA Batteries (4-pack),1,2.99,02/11/19 18:57,"155 Washington St, Los Angeles, CA 90001" -156693,Google Phone,1,600,02/26/19 19:31,"642 Center St, Seattle, WA 98101" -156694,27in 4K Gaming Monitor,1,389.99,02/28/19 19:46,"670 14th St, Atlanta, GA 30301" -156695,Vareebadd Phone,1,400,02/02/19 10:06,"340 4th St, San Francisco, CA 94016" -156696,Wired Headphones,1,11.99,02/28/19 17:36,"855 1st St, Seattle, WA 98101" -156697,Lightning Charging Cable,1,14.95,02/19/19 00:44,"343 Lakeview St, Los Angeles, CA 90001" -156698,ThinkPad Laptop,1,999.99,02/23/19 13:01,"817 Elm St, Los Angeles, CA 90001" -156699,AA Batteries (4-pack),1,3.84,02/07/19 21:51,"45 Madison St, Atlanta, GA 30301" -156700,27in FHD Monitor,1,149.99,02/09/19 21:26,"912 6th St, San Francisco, CA 94016" -156701,Macbook Pro Laptop,1,1700,02/27/19 10:29,"751 Willow St, Dallas, TX 75001" -156702,27in FHD Monitor,1,149.99,02/11/19 07:37,"982 Center St, Los Angeles, CA 90001" -156703,USB-C Charging Cable,1,11.95,02/06/19 07:49,"972 Adams St, Los Angeles, CA 90001" -156704,Apple Airpods Headphones,1,150,02/16/19 12:19,"899 Sunset St, San Francisco, CA 94016" -156705,AAA Batteries (4-pack),1,2.99,02/13/19 18:36,"386 Pine St, Portland, OR 97035" -156706,27in 4K Gaming Monitor,1,389.99,02/13/19 21:12,"540 Chestnut St, Portland, OR 97035" -156707,Lightning Charging Cable,1,14.95,02/18/19 11:35,"168 Sunset St, Portland, OR 97035" -156708,AAA Batteries (4-pack),2,2.99,02/01/19 23:52,"436 West St, Portland, OR 97035" -156709,Wired Headphones,2,11.99,02/14/19 09:03,"248 Sunset St, Austin, TX 73301" -156710,iPhone,1,700,02/13/19 10:16,"156 Jackson St, Dallas, TX 75001" -156711,ThinkPad Laptop,1,999.99,02/04/19 19:29,"159 10th St, Atlanta, GA 30301" -156712,USB-C Charging Cable,1,11.95,02/08/19 12:21,"992 Elm St, Los Angeles, CA 90001" -156713,USB-C Charging Cable,1,11.95,02/27/19 15:23,"590 Sunset St, Boston, MA 02215" -156714,iPhone,1,700,02/20/19 22:17,"420 Adams St, Seattle, WA 98101" -156715,Bose SoundSport Headphones,1,99.99,02/01/19 21:32,"620 Dogwood St, San Francisco, CA 94016" -156716,USB-C Charging Cable,1,11.95,02/04/19 11:33,"845 Hickory St, Los Angeles, CA 90001" -156717,AA Batteries (4-pack),1,3.84,02/11/19 20:10,"237 2nd St, Boston, MA 02215" -156718,Lightning Charging Cable,1,14.95,02/17/19 05:56,"426 Madison St, Los Angeles, CA 90001" -156719,Flatscreen TV,1,300,02/28/19 18:25,"498 8th St, San Francisco, CA 94016" -156720,Bose SoundSport Headphones,1,99.99,02/23/19 23:27,"989 Forest St, Seattle, WA 98101" -156721,AA Batteries (4-pack),2,3.84,02/27/19 10:50,"961 Forest St, Portland, OR 97035" -156722,27in FHD Monitor,1,149.99,02/06/19 11:52,"948 Lakeview St, Portland, OR 97035" -156722,Lightning Charging Cable,1,14.95,02/06/19 11:52,"948 Lakeview St, Portland, OR 97035" -156723,Wired Headphones,1,11.99,02/01/19 16:40,"829 Willow St, Boston, MA 02215" -156724,Lightning Charging Cable,1,14.95,02/24/19 07:26,"840 6th St, San Francisco, CA 94016" -156725,ThinkPad Laptop,1,999.99,02/08/19 22:52,"533 2nd St, Dallas, TX 75001" -156726,AAA Batteries (4-pack),2,2.99,02/15/19 12:50,"349 Cherry St, Portland, OR 97035" -156727,Wired Headphones,1,11.99,02/17/19 22:35,"182 Sunset St, San Francisco, CA 94016" -156728,Macbook Pro Laptop,1,1700,02/24/19 20:40,"73 Walnut St, Los Angeles, CA 90001" -156729,AAA Batteries (4-pack),2,2.99,02/15/19 20:18,"901 North St, Los Angeles, CA 90001" -156730,Lightning Charging Cable,1,14.95,02/01/19 16:22,"174 5th St, Portland, OR 97035" -156731,Lightning Charging Cable,1,14.95,02/23/19 13:26,"1 Spruce St, Los Angeles, CA 90001" -156732,AA Batteries (4-pack),1,3.84,02/09/19 13:50,"969 Church St, Dallas, TX 75001" -156733,AAA Batteries (4-pack),1,2.99,02/17/19 15:29,"557 Dogwood St, San Francisco, CA 94016" -156734,AA Batteries (4-pack),1,3.84,02/12/19 13:18,"217 Lincoln St, Los Angeles, CA 90001" -156735,Wired Headphones,1,11.99,02/03/19 07:12,"749 Lincoln St, Los Angeles, CA 90001" -156736,Wired Headphones,1,11.99,02/21/19 20:12,"920 12th St, San Francisco, CA 94016" -156737,Apple Airpods Headphones,1,150,02/07/19 06:17,"386 9th St, Dallas, TX 75001" -156738,27in FHD Monitor,1,149.99,02/09/19 22:01,"686 Jefferson St, Portland, OR 97035" -156739,USB-C Charging Cable,1,11.95,02/12/19 22:10,"372 Center St, Boston, MA 02215" -156740,Apple Airpods Headphones,1,150,02/16/19 12:09,"285 Chestnut St, Dallas, TX 75001" -156741,USB-C Charging Cable,1,11.95,02/27/19 03:52,"508 Jackson St, Austin, TX 73301" -156742,Apple Airpods Headphones,1,150,02/19/19 13:05,"113 North St, Portland, OR 97035" -156743,iPhone,1,700,02/18/19 01:42,"76 Highland St, New York City, NY 10001" -156744,USB-C Charging Cable,1,11.95,02/18/19 17:38,"928 Jackson St, New York City, NY 10001" -156745,ThinkPad Laptop,1,999.99,02/18/19 13:32,"509 8th St, Los Angeles, CA 90001" -156746,AA Batteries (4-pack),1,3.84,02/12/19 21:27,"313 Hill St, Seattle, WA 98101" -156747,Lightning Charging Cable,1,14.95,02/27/19 01:09,"505 Lake St, New York City, NY 10001" -156748,Bose SoundSport Headphones,1,99.99,02/26/19 18:39,"847 Highland St, Los Angeles, CA 90001" -156749,34in Ultrawide Monitor,1,379.99,02/07/19 09:25,"38 North St, New York City, NY 10001" -156750,Google Phone,1,600,02/25/19 13:31,"139 Elm St, Seattle, WA 98101" -156751,Apple Airpods Headphones,1,150,02/26/19 23:35,"745 Church St, San Francisco, CA 94016" -156752,USB-C Charging Cable,2,11.95,02/14/19 11:53,"155 Main St, New York City, NY 10001" -156753,Lightning Charging Cable,1,14.95,02/11/19 12:12,"978 Center St, Atlanta, GA 30301" -156754,AAA Batteries (4-pack),2,2.99,02/24/19 09:54,"337 12th St, Seattle, WA 98101" -156755,Macbook Pro Laptop,1,1700,02/02/19 19:43,"554 4th St, Seattle, WA 98101" -156756,USB-C Charging Cable,2,11.95,02/02/19 13:00,"498 2nd St, Los Angeles, CA 90001" -156757,USB-C Charging Cable,1,11.95,02/21/19 16:53,"25 Lakeview St, Dallas, TX 75001" -156758,27in FHD Monitor,1,149.99,02/15/19 12:39,"382 Lakeview St, Atlanta, GA 30301" -156759,Wired Headphones,2,11.99,02/04/19 12:45,"902 Jefferson St, Boston, MA 02215" -156760,Apple Airpods Headphones,1,150,02/14/19 10:09,"526 Maple St, San Francisco, CA 94016" -156761,iPhone,1,700,02/24/19 11:58,"430 Center St, Atlanta, GA 30301" -156762,Lightning Charging Cable,1,14.95,02/01/19 16:29,"350 Lakeview St, Seattle, WA 98101" -156763,Lightning Charging Cable,1,14.95,02/18/19 19:05,"599 Hill St, Los Angeles, CA 90001" -156764,USB-C Charging Cable,1,11.95,02/08/19 12:33,"819 Cherry St, Austin, TX 73301" -156765,LG Washing Machine,1,600.0,02/11/19 20:49,"626 Pine St, New York City, NY 10001" -156766,ThinkPad Laptop,1,999.99,02/09/19 20:14,"983 Willow St, Portland, OR 97035" -156767,27in FHD Monitor,1,149.99,02/23/19 15:41,"19 1st St, San Francisco, CA 94016" -156768,Lightning Charging Cable,1,14.95,02/23/19 10:01,"316 Hill St, Los Angeles, CA 90001" -156769,Lightning Charging Cable,1,14.95,02/10/19 15:01,"350 Hickory St, New York City, NY 10001" -156770,Wired Headphones,1,11.99,02/20/19 11:32,"962 Cherry St, San Francisco, CA 94016" -156771,Apple Airpods Headphones,1,150,02/09/19 20:32,"869 Highland St, San Francisco, CA 94016" -156772,27in 4K Gaming Monitor,1,389.99,02/28/19 09:43,"31 Cedar St, Los Angeles, CA 90001" -156773,Flatscreen TV,1,300,02/26/19 20:43,"291 Chestnut St, New York City, NY 10001" -156774,AAA Batteries (4-pack),1,2.99,02/26/19 00:32,"560 Ridge St, San Francisco, CA 94016" -156775,iPhone,1,700,02/04/19 11:53,"278 Main St, Atlanta, GA 30301" -156776,Wired Headphones,1,11.99,02/04/19 16:01,"72 Chestnut St, Seattle, WA 98101" -156777,AAA Batteries (4-pack),1,2.99,02/04/19 14:11,"252 South St, Seattle, WA 98101" -156778,AA Batteries (4-pack),2,3.84,02/22/19 15:00,"785 10th St, New York City, NY 10001" -156779,USB-C Charging Cable,1,11.95,02/06/19 18:27,"127 Hill St, Seattle, WA 98101" -156780,20in Monitor,1,109.99,02/04/19 12:33,"553 Jackson St, San Francisco, CA 94016" -156781,Apple Airpods Headphones,1,150,02/14/19 07:41,"98 Willow St, Seattle, WA 98101" -156782,27in FHD Monitor,1,149.99,02/23/19 15:55,"833 Lincoln St, San Francisco, CA 94016" -156783,AA Batteries (4-pack),1,3.84,02/23/19 13:36,"669 5th St, Seattle, WA 98101" -156784,27in 4K Gaming Monitor,1,389.99,02/17/19 20:56,"349 4th St, Boston, MA 02215" -156785,AA Batteries (4-pack),1,3.84,02/15/19 11:27,"78 Hickory St, Seattle, WA 98101" -156786,AAA Batteries (4-pack),2,2.99,02/02/19 21:40,"387 Hickory St, Austin, TX 73301" -156787,Wired Headphones,1,11.99,02/24/19 09:31,"343 Park St, Portland, OR 97035" -156788,AA Batteries (4-pack),3,3.84,02/19/19 13:15,"672 North St, Dallas, TX 75001" -156789,iPhone,1,700,02/26/19 19:50,"857 4th St, San Francisco, CA 94016" -156790,Bose SoundSport Headphones,1,99.99,02/07/19 20:50,"645 Cedar St, New York City, NY 10001" -156791,Wired Headphones,1,11.99,02/27/19 13:57,"234 Highland St, San Francisco, CA 94016" -156792,Wired Headphones,1,11.99,02/23/19 19:31,"368 North St, New York City, NY 10001" -156793,34in Ultrawide Monitor,1,379.99,02/11/19 19:01,"676 14th St, Seattle, WA 98101" -156794,27in FHD Monitor,1,149.99,02/17/19 10:05,"494 Lake St, New York City, NY 10001" -156795,Lightning Charging Cable,1,14.95,02/16/19 21:53,"102 Spruce St, San Francisco, CA 94016" -156796,AA Batteries (4-pack),1,3.84,02/26/19 19:22,"277 Madison St, San Francisco, CA 94016" -156797,27in 4K Gaming Monitor,1,389.99,02/19/19 11:02,"691 Hill St, San Francisco, CA 94016" -156798,Apple Airpods Headphones,1,150,02/24/19 18:50,"647 Forest St, Dallas, TX 75001" -156799,AAA Batteries (4-pack),2,2.99,02/16/19 03:08,"900 River St, New York City, NY 10001" -156800,AA Batteries (4-pack),2,3.84,02/16/19 21:28,"249 Jackson St, Atlanta, GA 30301" -156801,34in Ultrawide Monitor,1,379.99,02/10/19 18:20,"361 Johnson St, Los Angeles, CA 90001" -156802,AA Batteries (4-pack),1,3.84,02/01/19 22:20,"648 2nd St, New York City, NY 10001" -156803,34in Ultrawide Monitor,1,379.99,02/01/19 20:15,"989 10th St, San Francisco, CA 94016" -156804,Google Phone,1,600,02/28/19 11:47,"341 Church St, New York City, NY 10001" -156805,Wired Headphones,1,11.99,02/22/19 06:39,"559 Meadow St, San Francisco, CA 94016" -156806,USB-C Charging Cable,1,11.95,02/13/19 17:11,"810 Hickory St, Atlanta, GA 30301" -156807,Apple Airpods Headphones,1,150,02/03/19 12:35,"557 Walnut St, San Francisco, CA 94016" -156808,ThinkPad Laptop,1,999.99,02/06/19 09:44,"482 Dogwood St, San Francisco, CA 94016" -156809,Lightning Charging Cable,1,14.95,02/14/19 09:29,"96 2nd St, San Francisco, CA 94016" -156810,USB-C Charging Cable,1,11.95,02/03/19 13:17,"197 South St, San Francisco, CA 94016" -156811,Bose SoundSport Headphones,1,99.99,02/19/19 19:36,"898 Main St, San Francisco, CA 94016" -156812,LG Washing Machine,1,600.0,02/13/19 20:59,"709 Cherry St, Atlanta, GA 30301" -156813,USB-C Charging Cable,1,11.95,02/21/19 08:08,"404 Ridge St, San Francisco, CA 94016" -156814,27in FHD Monitor,1,149.99,02/08/19 09:54,"350 Washington St, New York City, NY 10001" -156815,AA Batteries (4-pack),1,3.84,02/01/19 14:46,"222 Pine St, New York City, NY 10001" -156816,Bose SoundSport Headphones,1,99.99,02/24/19 09:14,"382 Lincoln St, Los Angeles, CA 90001" -156817,Apple Airpods Headphones,1,150,02/25/19 20:48,"874 Chestnut St, Los Angeles, CA 90001" -156818,Lightning Charging Cable,1,14.95,02/24/19 21:15,"286 Cedar St, Boston, MA 02215" -156819,Bose SoundSport Headphones,1,99.99,02/14/19 17:25,"616 West St, San Francisco, CA 94016" -156820,Wired Headphones,1,11.99,02/15/19 13:11,"461 Adams St, San Francisco, CA 94016" -156821,Wired Headphones,1,11.99,02/13/19 22:47,"661 River St, San Francisco, CA 94016" -156822,ThinkPad Laptop,1,999.99,02/24/19 08:29,"617 11th St, Portland, OR 97035" -156823,Apple Airpods Headphones,1,150,02/15/19 10:30,"872 Meadow St, Portland, OR 97035" -156824,Apple Airpods Headphones,1,150,02/22/19 16:11,"903 Ridge St, Portland, ME 04101" -156825,AA Batteries (4-pack),1,3.84,02/15/19 09:01,"98 Lake St, Boston, MA 02215" -156826,27in FHD Monitor,1,149.99,02/14/19 20:14,"837 Main St, Los Angeles, CA 90001" -156827,27in 4K Gaming Monitor,1,389.99,02/03/19 08:21,"347 Wilson St, San Francisco, CA 94016" -156828,AA Batteries (4-pack),1,3.84,02/22/19 08:11,"515 Ridge St, Los Angeles, CA 90001" -156829,AAA Batteries (4-pack),2,2.99,02/28/19 11:53,"252 Maple St, Atlanta, GA 30301" -156830,ThinkPad Laptop,1,999.99,02/06/19 12:56,"808 Sunset St, Boston, MA 02215" -156831,Bose SoundSport Headphones,1,99.99,02/11/19 13:45,"785 Sunset St, Atlanta, GA 30301" -156832,Wired Headphones,1,11.99,02/09/19 07:32,"131 11th St, Dallas, TX 75001" -156833,Apple Airpods Headphones,1,150,02/01/19 07:59,"918 North St, San Francisco, CA 94016" -156834,27in FHD Monitor,1,149.99,02/01/19 07:40,"399 Park St, San Francisco, CA 94016" -156835,27in 4K Gaming Monitor,1,389.99,02/19/19 16:28,"410 Elm St, New York City, NY 10001" -156836,AAA Batteries (4-pack),1,2.99,02/14/19 23:15,"18 4th St, Seattle, WA 98101" -156837,AA Batteries (4-pack),1,3.84,02/10/19 16:27,"927 Hickory St, San Francisco, CA 94016" -156838,USB-C Charging Cable,1,11.95,02/06/19 12:50,"368 Lincoln St, Los Angeles, CA 90001" -156839,AAA Batteries (4-pack),1,2.99,02/13/19 00:40,"161 Lake St, Los Angeles, CA 90001" -156840,Wired Headphones,1,11.99,02/14/19 18:09,"667 Johnson St, Boston, MA 02215" -156841,Wired Headphones,1,11.99,02/18/19 12:11,"878 Lakeview St, Los Angeles, CA 90001" -156842,Apple Airpods Headphones,1,150,02/14/19 16:54,"348 Hickory St, New York City, NY 10001" -156843,USB-C Charging Cable,1,11.95,02/01/19 12:05,"784 Cedar St, Boston, MA 02215" -156844,Bose SoundSport Headphones,1,99.99,02/27/19 05:34,"360 Wilson St, New York City, NY 10001" -156845,AAA Batteries (4-pack),1,2.99,02/18/19 21:17,"192 8th St, Atlanta, GA 30301" -156846,Lightning Charging Cable,1,14.95,02/11/19 07:20,"558 Lake St, Los Angeles, CA 90001" -156847,27in 4K Gaming Monitor,1,389.99,02/21/19 06:38,"986 Cedar St, Los Angeles, CA 90001" -156848,Apple Airpods Headphones,1,150,02/01/19 21:56,"760 Sunset St, Los Angeles, CA 90001" -156849,Bose SoundSport Headphones,1,99.99,02/01/19 16:19,"217 Forest St, San Francisco, CA 94016" -156850,ThinkPad Laptop,1,999.99,02/05/19 18:17,"497 Madison St, New York City, NY 10001" -156851,Lightning Charging Cable,1,14.95,02/21/19 20:25,"851 Main St, Los Angeles, CA 90001" -156852,AA Batteries (4-pack),2,3.84,02/14/19 13:37,"96 Elm St, San Francisco, CA 94016" -156853,34in Ultrawide Monitor,1,379.99,02/14/19 22:06,"953 Forest St, Atlanta, GA 30301" -156854,34in Ultrawide Monitor,1,379.99,02/03/19 15:45,"177 6th St, Portland, OR 97035" -156855,AAA Batteries (4-pack),2,2.99,02/23/19 14:02,"248 5th St, Dallas, TX 75001" -156856,AAA Batteries (4-pack),2,2.99,02/25/19 12:03,"242 2nd St, Los Angeles, CA 90001" -156857,AAA Batteries (4-pack),2,2.99,02/26/19 01:33,"161 Jefferson St, San Francisco, CA 94016" -156858,Lightning Charging Cable,1,14.95,02/17/19 09:54,"442 5th St, New York City, NY 10001" -156859,USB-C Charging Cable,1,11.95,02/11/19 13:43,"499 South St, Austin, TX 73301" -156860,ThinkPad Laptop,1,999.99,02/08/19 01:50,"662 Elm St, Dallas, TX 75001" -156861,AA Batteries (4-pack),1,3.84,02/04/19 19:03,"852 13th St, San Francisco, CA 94016" -156862,AAA Batteries (4-pack),1,2.99,02/20/19 16:04,"96 Jackson St, San Francisco, CA 94016" -156863,Vareebadd Phone,1,400,02/14/19 00:41,"350 1st St, Los Angeles, CA 90001" -156863,Wired Headphones,1,11.99,02/14/19 00:41,"350 1st St, Los Angeles, CA 90001" -156864,AA Batteries (4-pack),1,3.84,02/27/19 13:02,"670 10th St, San Francisco, CA 94016" -156865,AA Batteries (4-pack),1,3.84,02/02/19 19:49,"657 River St, San Francisco, CA 94016" -156866,Apple Airpods Headphones,1,150,02/21/19 22:58,"700 14th St, Austin, TX 73301" -156867,Lightning Charging Cable,1,14.95,02/22/19 10:04,"906 Lakeview St, New York City, NY 10001" -156868,AA Batteries (4-pack),3,3.84,02/25/19 20:02,"923 Hickory St, San Francisco, CA 94016" -156869,Apple Airpods Headphones,1,150,02/19/19 20:58,"599 Willow St, Seattle, WA 98101" -156870,Apple Airpods Headphones,1,150,02/09/19 13:16,"526 2nd St, Boston, MA 02215" -156871,USB-C Charging Cable,1,11.95,02/16/19 13:38,"844 Park St, New York City, NY 10001" -156872,Apple Airpods Headphones,1,150,02/15/19 00:04,"828 Main St, San Francisco, CA 94016" -156873,USB-C Charging Cable,1,11.95,02/23/19 19:34,"540 1st St, Boston, MA 02215" -156874,Bose SoundSport Headphones,1,99.99,02/24/19 17:01,"459 4th St, Dallas, TX 75001" -156875,AA Batteries (4-pack),2,3.84,02/06/19 13:58,"41 Maple St, Atlanta, GA 30301" -156876,27in FHD Monitor,1,149.99,02/23/19 18:04,"742 Willow St, San Francisco, CA 94016" -156877,AA Batteries (4-pack),3,3.84,02/10/19 16:27,"136 6th St, Seattle, WA 98101" -156878,34in Ultrawide Monitor,1,379.99,02/23/19 20:29,"506 Ridge St, Atlanta, GA 30301" -156879,USB-C Charging Cable,1,11.95,02/24/19 21:06,"146 2nd St, Austin, TX 73301" -156880,Bose SoundSport Headphones,1,99.99,02/18/19 19:17,"920 Dogwood St, Boston, MA 02215" -156881,iPhone,1,700,02/10/19 23:38,"98 Ridge St, Austin, TX 73301" -156881,Lightning Charging Cable,1,14.95,02/10/19 23:38,"98 Ridge St, Austin, TX 73301" -156882,Lightning Charging Cable,1,14.95,02/14/19 09:38,"612 Main St, Portland, OR 97035" -156883,Lightning Charging Cable,1,14.95,02/03/19 07:52,"949 11th St, Atlanta, GA 30301" -156884,Lightning Charging Cable,1,14.95,02/12/19 07:13,"314 Lakeview St, San Francisco, CA 94016" -156885,USB-C Charging Cable,1,11.95,02/07/19 17:48,"277 Elm St, New York City, NY 10001" -156886,LG Washing Machine,1,600.0,02/02/19 16:36,"599 Lakeview St, Dallas, TX 75001" -156887,Lightning Charging Cable,1,14.95,02/06/19 10:46,"372 Willow St, Atlanta, GA 30301" -156888,USB-C Charging Cable,1,11.95,02/13/19 08:55,"117 Jefferson St, New York City, NY 10001" -156889,USB-C Charging Cable,1,11.95,02/01/19 04:25,"703 9th St, Los Angeles, CA 90001" -156890,Apple Airpods Headphones,1,150,02/08/19 09:52,"229 Lake St, Portland, OR 97035" -156891,USB-C Charging Cable,1,11.95,02/07/19 08:16,"182 Hill St, Atlanta, GA 30301" -156892,34in Ultrawide Monitor,1,379.99,02/20/19 18:09,"405 Wilson St, Los Angeles, CA 90001" -156893,Apple Airpods Headphones,1,150,02/21/19 21:12,"97 Johnson St, Boston, MA 02215" -156894,Apple Airpods Headphones,1,150,02/26/19 14:19,"749 Main St, New York City, NY 10001" -156895,Wired Headphones,1,11.99,02/12/19 14:59,"108 Sunset St, San Francisco, CA 94016" -156896,Bose SoundSport Headphones,1,99.99,02/16/19 17:05,"127 Pine St, Boston, MA 02215" -156897,AAA Batteries (4-pack),1,2.99,02/07/19 09:21,"389 Jackson St, Boston, MA 02215" -156897,Lightning Charging Cable,1,14.95,02/07/19 09:21,"389 Jackson St, Boston, MA 02215" -156898,Wired Headphones,1,11.99,02/14/19 15:39,"290 Wilson St, Dallas, TX 75001" -156898,Lightning Charging Cable,1,14.95,02/14/19 15:39,"290 Wilson St, Dallas, TX 75001" -156899,Flatscreen TV,1,300,02/23/19 22:54,"939 5th St, San Francisco, CA 94016" -156900,Wired Headphones,1,11.99,02/28/19 22:06,"926 Cherry St, San Francisco, CA 94016" -156901,20in Monitor,1,109.99,02/02/19 16:34,"270 Adams St, New York City, NY 10001" -156902,AA Batteries (4-pack),1,3.84,02/28/19 14:35,"601 West St, New York City, NY 10001" -156903,USB-C Charging Cable,1,11.95,02/10/19 10:59,"462 Madison St, Atlanta, GA 30301" -156904,iPhone,1,700,02/13/19 20:43,"264 Park St, Boston, MA 02215" -156904,Apple Airpods Headphones,1,150,02/13/19 20:43,"264 Park St, Boston, MA 02215" -156905,Wired Headphones,1,11.99,02/05/19 11:18,"622 Cedar St, San Francisco, CA 94016" -156906,Wired Headphones,1,11.99,02/04/19 09:08,"577 Cherry St, San Francisco, CA 94016" -156907,ThinkPad Laptop,1,999.99,02/22/19 22:48,"398 Chestnut St, Atlanta, GA 30301" -156908,34in Ultrawide Monitor,1,379.99,02/28/19 10:41,"418 Meadow St, Los Angeles, CA 90001" -156909,AAA Batteries (4-pack),1,2.99,02/10/19 13:24,"464 Wilson St, Los Angeles, CA 90001" -156909,Wired Headphones,1,11.99,02/10/19 13:24,"464 Wilson St, Los Angeles, CA 90001" -156910,34in Ultrawide Monitor,1,379.99,02/10/19 14:45,"249 11th St, Portland, OR 97035" -156911,Apple Airpods Headphones,1,150,02/19/19 09:06,"60 5th St, Portland, OR 97035" -156912,27in FHD Monitor,1,149.99,02/09/19 00:01,"495 5th St, Seattle, WA 98101" -156913,34in Ultrawide Monitor,1,379.99,02/27/19 16:54,"333 Maple St, Portland, OR 97035" -156914,AA Batteries (4-pack),1,3.84,02/21/19 20:29,"224 Jackson St, San Francisco, CA 94016" -156914,USB-C Charging Cable,1,11.95,02/21/19 20:29,"224 Jackson St, San Francisco, CA 94016" -156915,ThinkPad Laptop,1,999.99,02/21/19 17:29,"734 Church St, San Francisco, CA 94016" -156916,Lightning Charging Cable,1,14.95,02/08/19 12:14,"145 Madison St, San Francisco, CA 94016" -156917,27in FHD Monitor,1,149.99,02/11/19 21:16,"197 Wilson St, San Francisco, CA 94016" -156918,Wired Headphones,1,11.99,02/11/19 19:00,"882 Elm St, Portland, OR 97035" -156919,AAA Batteries (4-pack),1,2.99,02/19/19 17:03,"924 Willow St, New York City, NY 10001" -156920,USB-C Charging Cable,1,11.95,02/26/19 16:37,"632 West St, Los Angeles, CA 90001" -156921,Lightning Charging Cable,1,14.95,02/22/19 13:12,"410 2nd St, Austin, TX 73301" -156922,USB-C Charging Cable,1,11.95,02/14/19 20:36,"450 Highland St, New York City, NY 10001" -156923,Wired Headphones,1,11.99,02/11/19 10:11,"408 Hill St, Dallas, TX 75001" -156924,Apple Airpods Headphones,1,150,02/04/19 01:37,"473 Elm St, San Francisco, CA 94016" -156925,Wired Headphones,1,11.99,02/25/19 17:18,"119 9th St, Los Angeles, CA 90001" -156926,AA Batteries (4-pack),1,3.84,02/13/19 10:11,"448 6th St, San Francisco, CA 94016" -156927,AAA Batteries (4-pack),2,2.99,02/06/19 12:23,"934 Hickory St, Dallas, TX 75001" -156928,Lightning Charging Cable,1,14.95,02/21/19 10:19,"760 2nd St, Austin, TX 73301" -156929,Apple Airpods Headphones,1,150,02/20/19 21:55,"343 9th St, Boston, MA 02215" -156930,USB-C Charging Cable,1,11.95,02/13/19 09:10,"14 10th St, Dallas, TX 75001" -156931,AAA Batteries (4-pack),1,2.99,02/10/19 14:28,"873 12th St, Los Angeles, CA 90001" -156932,Google Phone,1,600,02/26/19 05:45,"143 Park St, San Francisco, CA 94016" -156932,USB-C Charging Cable,1,11.95,02/26/19 05:45,"143 Park St, San Francisco, CA 94016" -156933,iPhone,1,700,02/26/19 20:56,"2 12th St, Austin, TX 73301" -156934,Wired Headphones,1,11.99,02/21/19 20:32,"636 14th St, Los Angeles, CA 90001" -156935,AA Batteries (4-pack),1,3.84,02/04/19 19:48,"593 6th St, San Francisco, CA 94016" -156936,USB-C Charging Cable,1,11.95,02/12/19 19:12,"990 Hill St, San Francisco, CA 94016" -156937,AA Batteries (4-pack),1,3.84,02/25/19 16:18,"597 Jackson St, Los Angeles, CA 90001" -156938,Google Phone,1,600,02/05/19 16:59,"880 Dogwood St, San Francisco, CA 94016" -156939,Bose SoundSport Headphones,1,99.99,02/13/19 16:48,"898 Church St, Seattle, WA 98101" -156940,20in Monitor,1,109.99,02/09/19 21:03,"617 11th St, New York City, NY 10001" -156941,USB-C Charging Cable,1,11.95,02/06/19 11:12,"258 1st St, Seattle, WA 98101" -156942,AA Batteries (4-pack),1,3.84,02/21/19 08:03,"869 Ridge St, Los Angeles, CA 90001" -156943,Wired Headphones,1,11.99,02/16/19 20:54,"446 Main St, Seattle, WA 98101" -156944,AAA Batteries (4-pack),3,2.99,02/10/19 14:53,"182 Church St, Boston, MA 02215" -156945,Apple Airpods Headphones,1,150,02/22/19 12:19,"349 14th St, Portland, OR 97035" -156946,Google Phone,1,600,02/11/19 17:15,"183 Jefferson St, New York City, NY 10001" -156947,Lightning Charging Cable,1,14.95,02/28/19 13:22,"845 14th St, Portland, OR 97035" -156948,Apple Airpods Headphones,1,150,02/03/19 15:45,"217 South St, Los Angeles, CA 90001" -156949,Wired Headphones,1,11.99,02/06/19 10:41,"580 Pine St, Atlanta, GA 30301" -156950,Google Phone,1,600,02/04/19 08:33,"549 Main St, San Francisco, CA 94016" -156950,Wired Headphones,1,11.99,02/04/19 08:33,"549 Main St, San Francisco, CA 94016" -156951,USB-C Charging Cable,2,11.95,02/15/19 18:58,"748 Main St, Boston, MA 02215" -156952,Wired Headphones,1,11.99,02/14/19 16:27,"542 2nd St, San Francisco, CA 94016" -156953,iPhone,1,700,02/15/19 02:36,"409 Maple St, San Francisco, CA 94016" -156954,AAA Batteries (4-pack),1,2.99,02/13/19 13:13,"719 Main St, New York City, NY 10001" -156955,AAA Batteries (4-pack),1,2.99,02/25/19 21:30,"554 11th St, Atlanta, GA 30301" -156956,iPhone,1,700,02/12/19 09:52,"155 Lakeview St, San Francisco, CA 94016" -156956,Apple Airpods Headphones,1,150,02/12/19 09:52,"155 Lakeview St, San Francisco, CA 94016" -156957,Lightning Charging Cable,1,14.95,02/11/19 17:07,"804 Cedar St, San Francisco, CA 94016" -156958,Google Phone,1,600,02/19/19 18:56,"472 Walnut St, Portland, OR 97035" -156959,USB-C Charging Cable,1,11.95,02/27/19 17:49,"755 12th St, Dallas, TX 75001" -156960,Macbook Pro Laptop,1,1700,02/02/19 08:19,"527 Lincoln St, New York City, NY 10001" -156961,Lightning Charging Cable,1,14.95,02/15/19 11:12,"951 8th St, San Francisco, CA 94016" -156962,AA Batteries (4-pack),1,3.84,02/04/19 11:29,"190 Wilson St, Portland, OR 97035" -156963,iPhone,1,700,02/01/19 14:32,"57 Cherry St, Portland, OR 97035" -156964,Wired Headphones,1,11.99,02/07/19 00:46,"213 Main St, Los Angeles, CA 90001" -156965,Bose SoundSport Headphones,1,99.99,02/24/19 21:09,"967 6th St, New York City, NY 10001" -156966,iPhone,1,700,02/16/19 22:47,"562 10th St, Boston, MA 02215" -156967,Lightning Charging Cable,1,14.95,02/24/19 22:46,"947 Cedar St, New York City, NY 10001" -156968,USB-C Charging Cable,1,11.95,02/08/19 17:38,"385 Dogwood St, San Francisco, CA 94016" -156969,Bose SoundSport Headphones,1,99.99,02/04/19 18:42,"565 Adams St, San Francisco, CA 94016" -156970,AAA Batteries (4-pack),1,2.99,02/27/19 18:49,"839 North St, Boston, MA 02215" -156971,AA Batteries (4-pack),1,3.84,02/11/19 16:46,"157 Meadow St, Dallas, TX 75001" -156972,Lightning Charging Cable,1,14.95,02/01/19 20:04,"769 Spruce St, San Francisco, CA 94016" -156973,LG Dryer,1,600.0,02/25/19 14:18,"538 Jackson St, San Francisco, CA 94016" -156974,AAA Batteries (4-pack),1,2.99,02/28/19 19:26,"52 Dogwood St, Los Angeles, CA 90001" -156975,27in 4K Gaming Monitor,1,389.99,02/18/19 16:14,"315 Lincoln St, Los Angeles, CA 90001" -156976,AA Batteries (4-pack),1,3.84,02/08/19 00:52,"551 Wilson St, San Francisco, CA 94016" -156977,AA Batteries (4-pack),2,3.84,02/14/19 16:50,"902 Hickory St, Portland, ME 04101" -156978,USB-C Charging Cable,1,11.95,02/11/19 16:15,"988 South St, Los Angeles, CA 90001" -156979,Apple Airpods Headphones,1,150,02/07/19 19:10,"547 Chestnut St, New York City, NY 10001" -156980,Apple Airpods Headphones,1,150,02/15/19 17:31,"76 Walnut St, San Francisco, CA 94016" -156981,iPhone,1,700,02/19/19 12:07,"430 Cherry St, New York City, NY 10001" -156981,Lightning Charging Cable,1,14.95,02/19/19 12:07,"430 Cherry St, New York City, NY 10001" -156982,Apple Airpods Headphones,1,150,02/11/19 14:33,"838 4th St, New York City, NY 10001" -156983,USB-C Charging Cable,1,11.95,02/13/19 19:35,"667 Johnson St, New York City, NY 10001" -156984,Wired Headphones,1,11.99,02/25/19 04:38,"397 9th St, San Francisco, CA 94016" -156985,USB-C Charging Cable,2,11.95,02/10/19 17:51,"523 Maple St, New York City, NY 10001" -156986,Wired Headphones,1,11.99,02/24/19 18:49,"479 Jackson St, San Francisco, CA 94016" -156987,Google Phone,1,600,02/11/19 19:05,"626 4th St, Atlanta, GA 30301" -156988,AA Batteries (4-pack),1,3.84,02/17/19 20:28,"902 Ridge St, New York City, NY 10001" -156989,AAA Batteries (4-pack),2,2.99,02/25/19 18:03,"330 South St, Atlanta, GA 30301" -156990,Wired Headphones,1,11.99,02/08/19 15:31,"154 Madison St, Austin, TX 73301" -156991,Lightning Charging Cable,1,14.95,02/12/19 22:55,"274 Hill St, New York City, NY 10001" -156992,Google Phone,1,600,02/27/19 13:01,"257 West St, San Francisco, CA 94016" -156992,Bose SoundSport Headphones,1,99.99,02/27/19 13:01,"257 West St, San Francisco, CA 94016" -156993,Apple Airpods Headphones,1,150,02/16/19 13:35,"147 Adams St, New York City, NY 10001" -156994,Lightning Charging Cable,2,14.95,02/21/19 20:39,"954 Meadow St, San Francisco, CA 94016" -156995,LG Washing Machine,1,600.0,02/20/19 19:47,"553 Willow St, Austin, TX 73301" -156996,27in FHD Monitor,1,149.99,02/21/19 10:10,"266 Pine St, San Francisco, CA 94016" -156997,Apple Airpods Headphones,1,150,02/21/19 10:32,"283 Meadow St, Boston, MA 02215" -156998,Google Phone,1,600,02/12/19 15:23,"225 8th St, Los Angeles, CA 90001" -156998,Wired Headphones,1,11.99,02/12/19 15:23,"225 8th St, Los Angeles, CA 90001" -156999,USB-C Charging Cable,1,11.95,02/22/19 20:18,"203 South St, Los Angeles, CA 90001" -157000,ThinkPad Laptop,1,999.99,02/21/19 12:35,"269 Forest St, Dallas, TX 75001" -157001,AAA Batteries (4-pack),1,2.99,02/04/19 08:16,"534 5th St, San Francisco, CA 94016" -157002,Bose SoundSport Headphones,1,99.99,02/08/19 19:08,"508 Jefferson St, Atlanta, GA 30301" -157002,USB-C Charging Cable,1,11.95,02/08/19 19:08,"508 Jefferson St, Atlanta, GA 30301" -157003,34in Ultrawide Monitor,1,379.99,02/22/19 17:49,"239 Main St, Boston, MA 02215" -157004,AAA Batteries (4-pack),1,2.99,02/14/19 20:26,"517 4th St, Austin, TX 73301" -157005,Lightning Charging Cable,1,14.95,02/12/19 19:39,"146 Jackson St, New York City, NY 10001" -157006,iPhone,1,700,02/03/19 00:10,"953 12th St, New York City, NY 10001" -157007,Bose SoundSport Headphones,1,99.99,02/03/19 16:51,"826 Washington St, San Francisco, CA 94016" -157008,iPhone,1,700,02/19/19 11:19,"79 Church St, San Francisco, CA 94016" -157008,USB-C Charging Cable,1,11.95,02/19/19 11:19,"79 Church St, San Francisco, CA 94016" -157009,AA Batteries (4-pack),2,3.84,02/07/19 16:48,"652 Jackson St, Los Angeles, CA 90001" -157010,AA Batteries (4-pack),1,3.84,02/08/19 22:21,"862 8th St, San Francisco, CA 94016" -157011,Vareebadd Phone,1,400,02/18/19 11:32,"290 6th St, Portland, ME 04101" -157012,USB-C Charging Cable,1,11.95,02/22/19 18:09,"59 Cedar St, San Francisco, CA 94016" -157013,USB-C Charging Cable,1,11.95,02/13/19 12:07,"243 West St, Boston, MA 02215" -157014,Flatscreen TV,1,300,02/05/19 19:08,"435 Chestnut St, New York City, NY 10001" -157015,AAA Batteries (4-pack),1,2.99,02/05/19 09:51,"437 Highland St, New York City, NY 10001" -157016,Bose SoundSport Headphones,1,99.99,02/15/19 12:09,"939 Lincoln St, Boston, MA 02215" -157017,Bose SoundSport Headphones,1,99.99,02/09/19 07:51,"768 Spruce St, Los Angeles, CA 90001" -157018,Lightning Charging Cable,1,14.95,02/22/19 03:31,"278 10th St, Portland, OR 97035" -157019,USB-C Charging Cable,1,11.95,02/07/19 20:38,"263 4th St, Portland, ME 04101" -157020,AAA Batteries (4-pack),3,2.99,02/19/19 09:26,"179 Main St, Dallas, TX 75001" -157021,Google Phone,1,600,02/14/19 15:52,"483 11th St, New York City, NY 10001" -157022,USB-C Charging Cable,1,11.95,02/20/19 17:05,"718 Jackson St, Los Angeles, CA 90001" -157023,27in FHD Monitor,1,149.99,02/17/19 19:39,"960 Ridge St, New York City, NY 10001" -157024,Lightning Charging Cable,1,14.95,02/07/19 19:50,"116 7th St, New York City, NY 10001" -157025,AA Batteries (4-pack),2,3.84,02/23/19 19:51,"73 11th St, San Francisco, CA 94016" -,,,,, -157026,Bose SoundSport Headphones,1,99.99,02/05/19 08:58,"781 11th St, Seattle, WA 98101" -157027,AAA Batteries (4-pack),1,2.99,02/22/19 11:01,"576 Park St, Dallas, TX 75001" -157028,AAA Batteries (4-pack),1,2.99,02/05/19 19:43,"862 7th St, Los Angeles, CA 90001" -157029,Wired Headphones,2,11.99,02/20/19 22:40,"459 Sunset St, Los Angeles, CA 90001" -157030,Bose SoundSport Headphones,1,99.99,02/10/19 08:16,"50 Pine St, Boston, MA 02215" -157031,Wired Headphones,1,11.99,02/10/19 10:40,"648 Jackson St, Los Angeles, CA 90001" -157032,Bose SoundSport Headphones,1,99.99,02/03/19 17:49,"652 11th St, Los Angeles, CA 90001" -157033,LG Washing Machine,1,600.0,02/17/19 14:08,"620 North St, Austin, TX 73301" -157034,Bose SoundSport Headphones,1,99.99,02/24/19 05:27,"683 Jefferson St, Atlanta, GA 30301" -157035,27in FHD Monitor,1,149.99,02/22/19 13:56,"647 7th St, Portland, OR 97035" -157036,34in Ultrawide Monitor,1,379.99,02/17/19 20:07,"767 Willow St, Atlanta, GA 30301" -157037,AAA Batteries (4-pack),1,2.99,02/28/19 18:27,"73 8th St, Boston, MA 02215" -157038,USB-C Charging Cable,1,11.95,02/02/19 19:29,"975 13th St, Boston, MA 02215" -157039,27in 4K Gaming Monitor,1,389.99,02/07/19 17:23,"313 4th St, Los Angeles, CA 90001" -157040,USB-C Charging Cable,1,11.95,02/19/19 13:10,"241 11th St, Dallas, TX 75001" -157041,27in FHD Monitor,1,149.99,02/16/19 09:07,"99 Sunset St, Dallas, TX 75001" -157042,Lightning Charging Cable,1,14.95,02/01/19 12:40,"762 Lakeview St, Seattle, WA 98101" -157043,USB-C Charging Cable,1,11.95,02/23/19 19:26,"474 Adams St, New York City, NY 10001" -157044,Bose SoundSport Headphones,1,99.99,02/21/19 18:43,"986 Adams St, Boston, MA 02215" -157045,27in FHD Monitor,1,149.99,02/27/19 14:37,"392 Willow St, Dallas, TX 75001" -157046,27in FHD Monitor,1,149.99,02/26/19 23:30,"643 13th St, New York City, NY 10001" -157047,Lightning Charging Cable,1,14.95,02/15/19 04:11,"265 Pine St, Los Angeles, CA 90001" -157048,Wired Headphones,1,11.99,02/02/19 20:15,"425 Highland St, San Francisco, CA 94016" -157049,Bose SoundSport Headphones,1,99.99,02/21/19 04:26,"47 Hickory St, Los Angeles, CA 90001" -157050,Bose SoundSport Headphones,1,99.99,02/13/19 17:19,"405 11th St, New York City, NY 10001" -157051,Apple Airpods Headphones,1,150,02/09/19 16:08,"549 10th St, Los Angeles, CA 90001" -157052,Lightning Charging Cable,1,14.95,02/18/19 06:47,"797 Center St, New York City, NY 10001" -157053,AAA Batteries (4-pack),2,2.99,02/05/19 15:42,"937 Center St, Atlanta, GA 30301" -157054,AA Batteries (4-pack),2,3.84,02/18/19 10:17,"851 North St, Boston, MA 02215" -157055,27in FHD Monitor,1,149.99,02/28/19 13:03,"517 9th St, Seattle, WA 98101" -157056,Lightning Charging Cable,1,14.95,02/17/19 11:05,"943 10th St, Boston, MA 02215" -157057,AAA Batteries (4-pack),1,2.99,02/19/19 07:26,"120 Dogwood St, Boston, MA 02215" -157058,Macbook Pro Laptop,1,1700,02/18/19 10:44,"921 6th St, San Francisco, CA 94016" -157059,Bose SoundSport Headphones,1,99.99,02/24/19 05:35,"652 7th St, San Francisco, CA 94016" -157060,AAA Batteries (4-pack),2,2.99,02/28/19 13:25,"509 6th St, San Francisco, CA 94016" -157061,AAA Batteries (4-pack),1,2.99,02/14/19 08:12,"42 Forest St, Los Angeles, CA 90001" -157062,USB-C Charging Cable,1,11.95,02/23/19 18:47,"770 North St, Portland, OR 97035" -157063,Macbook Pro Laptop,1,1700,02/15/19 17:21,"964 Elm St, Seattle, WA 98101" -157064,Bose SoundSport Headphones,1,99.99,02/08/19 17:44,"646 Washington St, Los Angeles, CA 90001" -157065,AA Batteries (4-pack),1,3.84,02/20/19 12:41,"119 2nd St, San Francisco, CA 94016" -157066,27in FHD Monitor,1,149.99,02/01/19 09:43,"535 Adams St, San Francisco, CA 94016" -157067,Flatscreen TV,1,300,02/01/19 17:19,"938 8th St, Portland, ME 04101" -157068,Lightning Charging Cable,1,14.95,02/18/19 12:27,"518 West St, Austin, TX 73301" -157069,USB-C Charging Cable,1,11.95,02/11/19 08:16,"428 Maple St, Atlanta, GA 30301" -157070,20in Monitor,1,109.99,02/17/19 11:35,"105 Lakeview St, Seattle, WA 98101" -157071,20in Monitor,1,109.99,02/27/19 11:09,"527 10th St, San Francisco, CA 94016" -157072,Vareebadd Phone,1,400,02/07/19 14:54,"542 Hill St, San Francisco, CA 94016" -157072,USB-C Charging Cable,1,11.95,02/07/19 14:54,"542 Hill St, San Francisco, CA 94016" -157072,Wired Headphones,1,11.99,02/07/19 14:54,"542 Hill St, San Francisco, CA 94016" -157073,Bose SoundSport Headphones,1,99.99,02/07/19 22:12,"130 Jefferson St, Dallas, TX 75001" -157074,Wired Headphones,1,11.99,02/13/19 16:33,"375 Spruce St, Austin, TX 73301" -157075,Flatscreen TV,1,300,02/17/19 11:05,"862 Park St, Atlanta, GA 30301" -157076,Apple Airpods Headphones,1,150,02/17/19 14:00,"328 Meadow St, New York City, NY 10001" -157077,20in Monitor,1,109.99,02/11/19 07:33,"268 River St, Boston, MA 02215" -157078,iPhone,1,700,02/21/19 05:33,"452 Pine St, Los Angeles, CA 90001" -157079,AAA Batteries (4-pack),4,2.99,02/11/19 13:21,"689 7th St, New York City, NY 10001" -157080,Bose SoundSport Headphones,1,99.99,02/13/19 18:12,"154 Adams St, Seattle, WA 98101" -157081,27in FHD Monitor,1,149.99,02/19/19 22:34,"408 Wilson St, San Francisco, CA 94016" -157082,USB-C Charging Cable,1,11.95,02/27/19 21:12,"148 Hickory St, Atlanta, GA 30301" -157083,iPhone,1,700,02/25/19 18:24,"824 Jefferson St, Portland, ME 04101" -157084,AAA Batteries (4-pack),3,2.99,02/25/19 13:30,"124 Chestnut St, Seattle, WA 98101" -157085,Apple Airpods Headphones,1,150,02/27/19 12:43,"292 Hickory St, Austin, TX 73301" -157086,Apple Airpods Headphones,1,150,02/23/19 05:49,"513 Main St, Seattle, WA 98101" -157087,Wired Headphones,1,11.99,02/26/19 16:06,"285 Lake St, Portland, OR 97035" -,,,,, -157088,USB-C Charging Cable,2,11.95,02/20/19 01:40,"521 Walnut St, San Francisco, CA 94016" -157089,27in FHD Monitor,1,149.99,02/26/19 18:29,"522 Ridge St, Los Angeles, CA 90001" -157090,AAA Batteries (4-pack),2,2.99,02/20/19 18:35,"552 Maple St, San Francisco, CA 94016" -157091,Apple Airpods Headphones,1,150,02/27/19 07:22,"226 Dogwood St, San Francisco, CA 94016" -157092,Apple Airpods Headphones,1,150,02/26/19 20:59,"505 Washington St, Portland, OR 97035" -157093,27in FHD Monitor,1,149.99,02/16/19 22:47,"268 Lincoln St, New York City, NY 10001" -157094,Lightning Charging Cable,1,14.95,02/05/19 16:38,"117 Johnson St, New York City, NY 10001" -157095,Lightning Charging Cable,1,14.95,02/02/19 18:06,"227 2nd St, Boston, MA 02215" -157096,USB-C Charging Cable,1,11.95,02/12/19 21:50,"416 11th St, San Francisco, CA 94016" -157097,Lightning Charging Cable,1,14.95,02/17/19 10:30,"441 Cherry St, Boston, MA 02215" -157098,Macbook Pro Laptop,1,1700,02/02/19 23:20,"514 Cherry St, Austin, TX 73301" -157099,Google Phone,1,600,02/01/19 16:27,"605 1st St, New York City, NY 10001" -157099,USB-C Charging Cable,1,11.95,02/01/19 16:27,"605 1st St, New York City, NY 10001" -157100,Macbook Pro Laptop,1,1700,02/06/19 21:37,"230 Adams St, San Francisco, CA 94016" -157101,27in FHD Monitor,1,149.99,02/03/19 15:48,"542 2nd St, San Francisco, CA 94016" -157102,Google Phone,1,600,02/12/19 23:14,"258 Dogwood St, Dallas, TX 75001" -157102,USB-C Charging Cable,1,11.95,02/12/19 23:14,"258 Dogwood St, Dallas, TX 75001" -157103,AAA Batteries (4-pack),1,2.99,02/18/19 07:28,"600 9th St, New York City, NY 10001" -157104,ThinkPad Laptop,1,999.99,02/09/19 22:06,"160 10th St, San Francisco, CA 94016" -157105,Lightning Charging Cable,1,14.95,02/23/19 14:12,"527 River St, Atlanta, GA 30301" -157106,Wired Headphones,1,11.99,02/16/19 17:13,"943 Johnson St, Portland, OR 97035" -157107,USB-C Charging Cable,1,11.95,02/14/19 08:46,"677 Walnut St, New York City, NY 10001" -157108,Wired Headphones,2,11.99,02/02/19 09:32,"787 Jackson St, Atlanta, GA 30301" -157109,Wired Headphones,1,11.99,02/06/19 12:20,"53 River St, San Francisco, CA 94016" -157110,Lightning Charging Cable,1,14.95,02/02/19 13:37,"334 West St, Los Angeles, CA 90001" -157111,Apple Airpods Headphones,1,150,02/06/19 16:30,"237 Jackson St, Boston, MA 02215" -157112,Bose SoundSport Headphones,1,99.99,02/17/19 17:23,"631 Jefferson St, Boston, MA 02215" -157113,AA Batteries (4-pack),1,3.84,02/14/19 21:24,"325 Park St, Los Angeles, CA 90001" -157114,Lightning Charging Cable,1,14.95,02/27/19 18:27,"851 Jefferson St, Boston, MA 02215" -157115,iPhone,1,700,02/14/19 18:46,"148 Jackson St, San Francisco, CA 94016" -157115,Lightning Charging Cable,1,14.95,02/14/19 18:46,"148 Jackson St, San Francisco, CA 94016" -157115,Apple Airpods Headphones,1,150,02/14/19 18:46,"148 Jackson St, San Francisco, CA 94016" -157116,AA Batteries (4-pack),3,3.84,02/22/19 14:16,"246 Wilson St, San Francisco, CA 94016" -157117,Apple Airpods Headphones,1,150,02/22/19 21:55,"116 Johnson St, Boston, MA 02215" -157118,AAA Batteries (4-pack),1,2.99,02/18/19 13:52,"613 Johnson St, Dallas, TX 75001" -157119,Bose SoundSport Headphones,1,99.99,02/02/19 11:06,"938 14th St, Boston, MA 02215" -157120,Bose SoundSport Headphones,1,99.99,02/09/19 16:03,"16 13th St, Seattle, WA 98101" -157121,AAA Batteries (4-pack),1,2.99,02/06/19 19:52,"15 Cherry St, Los Angeles, CA 90001" -157122,Bose SoundSport Headphones,2,99.99,02/18/19 19:28,"826 Elm St, New York City, NY 10001" -157123,Wired Headphones,1,11.99,02/08/19 13:53,"856 Hickory St, Boston, MA 02215" -157124,AAA Batteries (4-pack),2,2.99,02/10/19 13:04,"966 Hickory St, Los Angeles, CA 90001" -157125,Lightning Charging Cable,1,14.95,02/02/19 19:43,"452 14th St, Portland, OR 97035" -157126,Lightning Charging Cable,1,14.95,02/17/19 21:39,"488 Wilson St, Seattle, WA 98101" -157127,Flatscreen TV,1,300,02/01/19 11:35,"326 North St, Los Angeles, CA 90001" -157128,iPhone,1,700,02/15/19 07:25,"758 Meadow St, New York City, NY 10001" -157129,Wired Headphones,1,11.99,02/03/19 08:04,"49 Center St, Boston, MA 02215" -157130,AA Batteries (4-pack),1,3.84,02/27/19 17:55,"710 Hickory St, Boston, MA 02215" -157131,AA Batteries (4-pack),4,3.84,02/09/19 12:32,"493 Church St, Dallas, TX 75001" -157132,Lightning Charging Cable,1,14.95,02/14/19 14:29,"243 Jackson St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -157133,USB-C Charging Cable,1,11.95,02/27/19 15:31,"237 6th St, Atlanta, GA 30301" -157134,Lightning Charging Cable,1,14.95,02/10/19 23:06,"235 Lakeview St, San Francisco, CA 94016" -157135,AAA Batteries (4-pack),1,2.99,02/12/19 09:38,"171 1st St, Los Angeles, CA 90001" -157136,AAA Batteries (4-pack),2,2.99,02/27/19 14:51,"334 Center St, San Francisco, CA 94016" -157137,USB-C Charging Cable,1,11.95,02/25/19 15:20,"910 4th St, San Francisco, CA 94016" -157138,Apple Airpods Headphones,2,150,02/18/19 11:53,"206 Wilson St, San Francisco, CA 94016" -157139,Vareebadd Phone,1,400,02/20/19 13:18,"756 Center St, Seattle, WA 98101" -157140,Wired Headphones,1,11.99,02/16/19 20:16,"382 West St, New York City, NY 10001" -157141,AAA Batteries (4-pack),1,2.99,02/13/19 16:30,"544 Pine St, Los Angeles, CA 90001" -157142,20in Monitor,1,109.99,02/22/19 14:26,"447 Johnson St, Atlanta, GA 30301" -157143,27in 4K Gaming Monitor,1,389.99,02/12/19 09:27,"824 Pine St, New York City, NY 10001" -157144,ThinkPad Laptop,1,999.99,02/27/19 13:39,"847 Lakeview St, Atlanta, GA 30301" -157145,AAA Batteries (4-pack),2,2.99,02/08/19 11:11,"94 West St, San Francisco, CA 94016" -157146,AA Batteries (4-pack),1,3.84,02/03/19 13:04,"576 Cherry St, Los Angeles, CA 90001" -157147,Bose SoundSport Headphones,1,99.99,02/21/19 16:11,"637 Jefferson St, San Francisco, CA 94016" -157148,AAA Batteries (4-pack),1,2.99,02/10/19 10:01,"641 Adams St, New York City, NY 10001" -157149,iPhone,1,700,02/26/19 18:41,"537 Jefferson St, Los Angeles, CA 90001" -157150,Apple Airpods Headphones,1,150,02/20/19 13:48,"800 13th St, Atlanta, GA 30301" -157151,AAA Batteries (4-pack),1,2.99,02/10/19 13:08,"298 Hill St, New York City, NY 10001" -157152,USB-C Charging Cable,1,11.95,02/28/19 15:30,"73 Jackson St, Los Angeles, CA 90001" -157153,ThinkPad Laptop,1,999.99,02/27/19 12:46,"571 Johnson St, Portland, OR 97035" -157154,27in 4K Gaming Monitor,1,389.99,02/25/19 11:53,"131 Jackson St, San Francisco, CA 94016" -157155,AA Batteries (4-pack),3,3.84,02/23/19 11:53,"745 9th St, Dallas, TX 75001" -157156,Lightning Charging Cable,1,14.95,02/12/19 17:53,"201 Main St, Atlanta, GA 30301" -157157,Flatscreen TV,1,300,02/15/19 22:03,"296 Johnson St, New York City, NY 10001" -157158,Wired Headphones,1,11.99,02/09/19 12:21,"577 2nd St, New York City, NY 10001" -157159,AA Batteries (4-pack),1,3.84,02/10/19 12:40,"177 10th St, San Francisco, CA 94016" -157160,Macbook Pro Laptop,1,1700,02/22/19 11:42,"663 River St, New York City, NY 10001" -157161,AA Batteries (4-pack),1,3.84,02/24/19 20:07,"986 Jackson St, Atlanta, GA 30301" -157162,AA Batteries (4-pack),1,3.84,02/05/19 12:47,"516 North St, Dallas, TX 75001" -157163,AAA Batteries (4-pack),1,2.99,02/07/19 19:23,"161 Highland St, Los Angeles, CA 90001" -157164,Wired Headphones,1,11.99,02/09/19 11:00,"401 South St, San Francisco, CA 94016" -157165,Wired Headphones,1,11.99,02/05/19 11:21,"696 2nd St, Los Angeles, CA 90001" -157166,AA Batteries (4-pack),3,3.84,02/19/19 09:48,"151 11th St, Los Angeles, CA 90001" -157167,Lightning Charging Cable,1,14.95,02/06/19 12:29,"501 Elm St, Los Angeles, CA 90001" -157168,AAA Batteries (4-pack),3,2.99,02/14/19 00:34,"54 Sunset St, Atlanta, GA 30301" -157169,27in 4K Gaming Monitor,1,389.99,02/18/19 04:48,"893 Washington St, Los Angeles, CA 90001" -157170,AAA Batteries (4-pack),1,2.99,02/02/19 13:09,"847 Cedar St, Atlanta, GA 30301" -157171,AA Batteries (4-pack),1,3.84,02/05/19 11:20,"909 Cedar St, San Francisco, CA 94016" -157172,Lightning Charging Cable,1,14.95,02/24/19 20:18,"174 West St, Seattle, WA 98101" -157173,Google Phone,1,600,02/12/19 19:20,"105 7th St, San Francisco, CA 94016" -157174,Wired Headphones,1,11.99,02/19/19 17:05,"319 Dogwood St, San Francisco, CA 94016" -157175,AA Batteries (4-pack),1,3.84,02/24/19 13:12,"643 4th St, Seattle, WA 98101" -157176,AAA Batteries (4-pack),1,2.99,02/11/19 16:30,"238 Chestnut St, San Francisco, CA 94016" -157177,LG Dryer,1,600.0,02/12/19 11:06,"274 Lake St, Boston, MA 02215" -157178,Bose SoundSport Headphones,1,99.99,02/15/19 12:48,"526 Washington St, Austin, TX 73301" -157179,Apple Airpods Headphones,1,150,02/10/19 08:57,"681 7th St, San Francisco, CA 94016" -157180,iPhone,1,700,02/23/19 18:54,"770 Spruce St, Los Angeles, CA 90001" -157181,27in 4K Gaming Monitor,1,389.99,02/04/19 21:09,"724 Chestnut St, Austin, TX 73301" -157182,27in 4K Gaming Monitor,1,389.99,02/24/19 10:40,"362 Pine St, Boston, MA 02215" -157183,Lightning Charging Cable,1,14.95,02/16/19 19:31,"106 Willow St, New York City, NY 10001" -157184,AA Batteries (4-pack),1,3.84,02/09/19 15:57,"591 Meadow St, San Francisco, CA 94016" -157185,AAA Batteries (4-pack),1,2.99,02/28/19 17:55,"311 Cherry St, San Francisco, CA 94016" -157186,Wired Headphones,1,11.99,02/24/19 20:35,"489 Elm St, San Francisco, CA 94016" -157187,AA Batteries (4-pack),1,3.84,02/24/19 15:11,"666 Spruce St, Seattle, WA 98101" -157188,USB-C Charging Cable,1,11.95,02/01/19 12:35,"357 Lake St, Boston, MA 02215" -157189,Flatscreen TV,1,300,02/23/19 18:44,"299 11th St, New York City, NY 10001" -157190,Wired Headphones,1,11.99,02/05/19 13:31,"492 Church St, Atlanta, GA 30301" -157190,27in 4K Gaming Monitor,1,389.99,02/05/19 13:31,"492 Church St, Atlanta, GA 30301" -157191,AAA Batteries (4-pack),1,2.99,02/01/19 10:28,"389 Lakeview St, Portland, OR 97035" -157192,20in Monitor,1,109.99,02/02/19 08:02,"892 Cedar St, Portland, OR 97035" -157193,AAA Batteries (4-pack),4,2.99,02/02/19 20:37,"49 Hickory St, New York City, NY 10001" -157194,Bose SoundSport Headphones,1,99.99,02/18/19 18:00,"968 11th St, San Francisco, CA 94016" -157195,20in Monitor,1,109.99,02/25/19 12:46,"682 Church St, Portland, OR 97035" -157196,Wired Headphones,1,11.99,02/17/19 07:03,"251 Hickory St, Austin, TX 73301" -157197,Apple Airpods Headphones,1,150,02/08/19 10:23,"752 14th St, San Francisco, CA 94016" -157198,Apple Airpods Headphones,1,150,02/14/19 18:44,"584 Adams St, San Francisco, CA 94016" -157199,AA Batteries (4-pack),1,3.84,02/12/19 17:16,"350 Washington St, San Francisco, CA 94016" -157200,Lightning Charging Cable,1,14.95,02/23/19 20:12,"775 Washington St, Atlanta, GA 30301" -157201,Vareebadd Phone,1,400,02/20/19 11:36,"51 River St, Dallas, TX 75001" -157202,AAA Batteries (4-pack),3,2.99,02/19/19 20:27,"418 8th St, Seattle, WA 98101" -157203,AAA Batteries (4-pack),2,2.99,02/22/19 17:29,"422 Cedar St, Los Angeles, CA 90001" -157204,AAA Batteries (4-pack),2,2.99,02/21/19 13:19,"213 9th St, San Francisco, CA 94016" -157204,Macbook Pro Laptop,1,1700,02/21/19 13:19,"213 9th St, San Francisco, CA 94016" -157205,Wired Headphones,1,11.99,02/28/19 21:48,"170 Pine St, Austin, TX 73301" -157206,AA Batteries (4-pack),1,3.84,02/19/19 11:34,"27 4th St, Los Angeles, CA 90001" -157207,Macbook Pro Laptop,1,1700,02/17/19 19:01,"822 Hill St, New York City, NY 10001" -157208,iPhone,1,700,02/15/19 19:52,"723 Cedar St, Dallas, TX 75001" -157208,Wired Headphones,1,11.99,02/15/19 19:52,"723 Cedar St, Dallas, TX 75001" -157209,Lightning Charging Cable,1,14.95,02/23/19 10:14,"513 River St, Portland, ME 04101" -157210,20in Monitor,1,109.99,02/23/19 17:04,"565 Meadow St, Dallas, TX 75001" -157211,Bose SoundSport Headphones,1,99.99,02/22/19 11:40,"931 1st St, New York City, NY 10001" -157212,Flatscreen TV,1,300,02/28/19 21:42,"988 River St, San Francisco, CA 94016" -157213,27in 4K Gaming Monitor,1,389.99,02/12/19 23:42,"404 Willow St, Boston, MA 02215" -157214,USB-C Charging Cable,1,11.95,02/28/19 20:13,"217 Johnson St, New York City, NY 10001" -157215,34in Ultrawide Monitor,1,379.99,02/03/19 21:55,"456 8th St, San Francisco, CA 94016" -157216,AA Batteries (4-pack),1,3.84,02/17/19 18:27,"654 South St, Seattle, WA 98101" -157217,Lightning Charging Cable,1,14.95,02/23/19 22:17,"934 Jefferson St, Boston, MA 02215" -157218,34in Ultrawide Monitor,1,379.99,02/07/19 13:42,"102 Center St, Atlanta, GA 30301" -157219,AAA Batteries (4-pack),1,2.99,02/07/19 12:32,"530 6th St, Portland, OR 97035" -157220,27in 4K Gaming Monitor,1,389.99,02/06/19 12:37,"915 Highland St, Dallas, TX 75001" -157221,AA Batteries (4-pack),1,3.84,02/14/19 10:18,"625 Willow St, San Francisco, CA 94016" -157222,Google Phone,1,600,02/09/19 18:41,"286 13th St, San Francisco, CA 94016" -157223,USB-C Charging Cable,1,11.95,02/08/19 13:24,"488 Jefferson St, Portland, OR 97035" -157224,USB-C Charging Cable,1,11.95,02/19/19 20:50,"654 Church St, San Francisco, CA 94016" -157225,USB-C Charging Cable,1,11.95,02/15/19 14:20,"819 12th St, Portland, OR 97035" -157226,Bose SoundSport Headphones,1,99.99,02/17/19 11:15,"867 Main St, Boston, MA 02215" -157227,Macbook Pro Laptop,1,1700,02/25/19 15:34,"815 North St, Austin, TX 73301" -157228,Lightning Charging Cable,1,14.95,02/05/19 11:24,"689 6th St, Portland, OR 97035" -157229,27in 4K Gaming Monitor,1,389.99,02/07/19 20:38,"911 Hickory St, Seattle, WA 98101" -157230,Bose SoundSport Headphones,1,99.99,02/19/19 20:56,"929 Adams St, Los Angeles, CA 90001" -157231,iPhone,1,700,02/18/19 11:50,"207 Lakeview St, San Francisco, CA 94016" -157232,Apple Airpods Headphones,1,150,02/12/19 08:18,"287 Wilson St, Los Angeles, CA 90001" -157233,USB-C Charging Cable,1,11.95,02/28/19 11:25,"677 Meadow St, San Francisco, CA 94016" -157234,AAA Batteries (4-pack),1,2.99,02/19/19 16:16,"494 North St, San Francisco, CA 94016" -157235,Bose SoundSport Headphones,1,99.99,02/20/19 16:27,"807 Lake St, New York City, NY 10001" -157236,27in 4K Gaming Monitor,1,389.99,02/19/19 12:18,"716 Willow St, San Francisco, CA 94016" -157237,AA Batteries (4-pack),1,3.84,02/07/19 16:29,"752 Lakeview St, Austin, TX 73301" -157238,Macbook Pro Laptop,1,1700,02/10/19 19:59,"730 Cedar St, Los Angeles, CA 90001" -157238,Wired Headphones,1,11.99,02/10/19 19:59,"730 Cedar St, Los Angeles, CA 90001" -157239,AA Batteries (4-pack),1,3.84,02/05/19 18:54,"364 Sunset St, San Francisco, CA 94016" -157240,Wired Headphones,1,11.99,02/16/19 10:42,"87 1st St, San Francisco, CA 94016" -157241,AAA Batteries (4-pack),1,2.99,02/18/19 19:50,"706 Church St, Los Angeles, CA 90001" -157242,AAA Batteries (4-pack),2,2.99,02/04/19 14:19,"185 Elm St, Los Angeles, CA 90001" -157243,34in Ultrawide Monitor,1,379.99,02/26/19 23:42,"802 North St, Atlanta, GA 30301" -157244,20in Monitor,1,109.99,02/07/19 21:09,"341 Chestnut St, Atlanta, GA 30301" -157245,Flatscreen TV,1,300,02/18/19 13:50,"560 Adams St, New York City, NY 10001" -157246,Bose SoundSport Headphones,1,99.99,02/10/19 16:46,"579 2nd St, Atlanta, GA 30301" -157247,AA Batteries (4-pack),1,3.84,02/14/19 09:06,"197 Pine St, Dallas, TX 75001" -157248,Bose SoundSport Headphones,1,99.99,02/01/19 17:23,"978 Lakeview St, Los Angeles, CA 90001" -157249,USB-C Charging Cable,2,11.95,02/16/19 06:19,"13 North St, Atlanta, GA 30301" -157250,Apple Airpods Headphones,1,150,02/17/19 14:12,"115 Cedar St, Seattle, WA 98101" -157251,Vareebadd Phone,1,400,02/14/19 14:20,"139 9th St, Dallas, TX 75001" -157251,Wired Headphones,1,11.99,02/14/19 14:20,"139 9th St, Dallas, TX 75001" -157252,Lightning Charging Cable,1,14.95,02/09/19 19:36,"604 9th St, Austin, TX 73301" -157253,AAA Batteries (4-pack),2,2.99,02/15/19 11:51,"718 Ridge St, Austin, TX 73301" -157254,ThinkPad Laptop,1,999.99,02/15/19 17:11,"265 Hickory St, Los Angeles, CA 90001" -157255,Lightning Charging Cable,1,14.95,02/28/19 13:22,"119 Main St, Boston, MA 02215" -157255,USB-C Charging Cable,1,11.95,02/28/19 13:22,"119 Main St, Boston, MA 02215" -157256,AAA Batteries (4-pack),1,2.99,02/15/19 07:44,"541 1st St, Seattle, WA 98101" -157257,AA Batteries (4-pack),1,3.84,02/07/19 21:56,"44 Lakeview St, San Francisco, CA 94016" -157258,Wired Headphones,1,11.99,02/16/19 16:50,"407 North St, San Francisco, CA 94016" -157259,Lightning Charging Cable,1,14.95,02/02/19 17:05,"140 Walnut St, New York City, NY 10001" -157260,Lightning Charging Cable,1,14.95,02/08/19 13:25,"841 Dogwood St, Los Angeles, CA 90001" -157261,Apple Airpods Headphones,1,150,02/27/19 17:00,"689 2nd St, New York City, NY 10001" -157262,Google Phone,1,600,02/20/19 20:08,"55 Madison St, San Francisco, CA 94016" -157263,Flatscreen TV,1,300,02/20/19 18:11,"927 Main St, Los Angeles, CA 90001" -157264,AAA Batteries (4-pack),2,2.99,02/19/19 17:15,"520 2nd St, Boston, MA 02215" -157265,AA Batteries (4-pack),1,3.84,02/05/19 18:23,"126 14th St, San Francisco, CA 94016" -157266,Wired Headphones,1,11.99,02/07/19 14:16,"522 Ridge St, San Francisco, CA 94016" -157267,Flatscreen TV,1,300,02/06/19 00:17,"401 Pine St, Seattle, WA 98101" -157268,USB-C Charging Cable,1,11.95,02/08/19 14:52,"546 14th St, Atlanta, GA 30301" -157269,Lightning Charging Cable,1,14.95,02/02/19 10:13,"437 Cherry St, New York City, NY 10001" -157270,Bose SoundSport Headphones,1,99.99,02/04/19 10:43,"740 10th St, Boston, MA 02215" -157271,34in Ultrawide Monitor,1,379.99,02/01/19 14:08,"183 Highland St, Portland, OR 97035" -157272,iPhone,1,700,02/22/19 14:38,"398 2nd St, San Francisco, CA 94016" -157273,Lightning Charging Cable,1,14.95,02/18/19 18:35,"572 Wilson St, New York City, NY 10001" -157274,Apple Airpods Headphones,1,150,02/13/19 08:34,"778 Walnut St, Portland, OR 97035" -157275,34in Ultrawide Monitor,1,379.99,02/27/19 19:00,"430 Lake St, New York City, NY 10001" -157276,ThinkPad Laptop,1,999.99,02/21/19 06:31,"322 Cherry St, New York City, NY 10001" -157277,Wired Headphones,1,11.99,02/04/19 14:10,"287 Church St, San Francisco, CA 94016" -157278,Lightning Charging Cable,1,14.95,02/14/19 21:43,"588 West St, San Francisco, CA 94016" -157279,AA Batteries (4-pack),2,3.84,02/09/19 19:29,"330 Washington St, Boston, MA 02215" -157280,Lightning Charging Cable,1,14.95,02/04/19 10:11,"6 West St, San Francisco, CA 94016" -157281,Google Phone,1,600,02/12/19 18:59,"60 Jefferson St, Portland, ME 04101" -157281,USB-C Charging Cable,1,11.95,02/12/19 18:59,"60 Jefferson St, Portland, ME 04101" -157282,27in FHD Monitor,1,149.99,02/03/19 16:11,"791 Lake St, San Francisco, CA 94016" -157283,iPhone,1,700,02/24/19 00:52,"851 Chestnut St, San Francisco, CA 94016" -157284,Apple Airpods Headphones,1,150,02/12/19 20:26,"291 Lake St, San Francisco, CA 94016" -157285,Wired Headphones,1,11.99,02/12/19 13:34,"701 Jackson St, New York City, NY 10001" -157286,iPhone,1,700,02/11/19 15:10,"263 Adams St, New York City, NY 10001" -157286,Apple Airpods Headphones,1,150,02/11/19 15:10,"263 Adams St, New York City, NY 10001" -157287,Wired Headphones,1,11.99,02/15/19 13:33,"893 Elm St, Los Angeles, CA 90001" -157288,Wired Headphones,1,11.99,02/05/19 21:25,"996 Meadow St, San Francisco, CA 94016" -157289,27in FHD Monitor,1,149.99,02/19/19 13:14,"382 Church St, San Francisco, CA 94016" -157290,27in FHD Monitor,1,149.99,02/16/19 21:37,"50 Elm St, New York City, NY 10001" -157291,Wired Headphones,2,11.99,02/17/19 08:53,"917 Lincoln St, New York City, NY 10001" -157292,USB-C Charging Cable,1,11.95,02/16/19 15:04,"96 Sunset St, New York City, NY 10001" -157293,Wired Headphones,1,11.99,02/16/19 00:49,"136 9th St, Seattle, WA 98101" -157294,Google Phone,1,600,02/28/19 13:01,"606 Washington St, Los Angeles, CA 90001" -157295,AA Batteries (4-pack),3,3.84,02/08/19 16:27,"584 Johnson St, Los Angeles, CA 90001" -157296,USB-C Charging Cable,1,11.95,02/23/19 22:46,"558 Hill St, New York City, NY 10001" -157297,Flatscreen TV,1,300,02/23/19 15:33,"15 Jackson St, Portland, OR 97035" -157298,27in 4K Gaming Monitor,1,389.99,02/20/19 14:18,"167 Forest St, Los Angeles, CA 90001" -157299,Wired Headphones,1,11.99,02/24/19 22:41,"185 Lincoln St, Dallas, TX 75001" -157300,34in Ultrawide Monitor,1,379.99,02/19/19 18:45,"969 Madison St, New York City, NY 10001" -157300,Lightning Charging Cable,1,14.95,02/19/19 18:45,"969 Madison St, New York City, NY 10001" -157301,USB-C Charging Cable,1,11.95,02/09/19 21:49,"729 Jefferson St, Los Angeles, CA 90001" -157302,Flatscreen TV,1,300,02/05/19 22:12,"297 Jefferson St, Portland, OR 97035" -157303,AAA Batteries (4-pack),1,2.99,02/19/19 20:45,"346 Walnut St, New York City, NY 10001" -157304,Lightning Charging Cable,1,14.95,02/10/19 21:44,"60 Willow St, San Francisco, CA 94016" -157305,AA Batteries (4-pack),1,3.84,02/17/19 18:50,"264 Lakeview St, Los Angeles, CA 90001" -157306,Lightning Charging Cable,1,14.95,02/16/19 22:34,"114 South St, San Francisco, CA 94016" -157307,USB-C Charging Cable,1,11.95,02/25/19 21:21,"966 Cedar St, San Francisco, CA 94016" -157308,AAA Batteries (4-pack),2,2.99,02/20/19 18:48,"814 Cedar St, Portland, OR 97035" -157309,AA Batteries (4-pack),1,3.84,02/01/19 17:57,"373 Pine St, San Francisco, CA 94016" -157310,USB-C Charging Cable,1,11.95,02/22/19 19:25,"604 River St, Los Angeles, CA 90001" -157311,34in Ultrawide Monitor,1,379.99,02/13/19 10:20,"130 Lakeview St, Seattle, WA 98101" -157312,Google Phone,1,600,02/21/19 21:42,"255 4th St, New York City, NY 10001" -157313,iPhone,1,700,02/21/19 17:41,"806 13th St, Austin, TX 73301" -157314,USB-C Charging Cable,1,11.95,02/09/19 19:43,"669 Spruce St, San Francisco, CA 94016" -157315,AAA Batteries (4-pack),3,2.99,02/03/19 23:41,"976 Center St, Los Angeles, CA 90001" -157316,Google Phone,1,600,02/26/19 17:45,"711 9th St, Atlanta, GA 30301" -157316,USB-C Charging Cable,1,11.95,02/26/19 17:45,"711 9th St, Atlanta, GA 30301" -157317,iPhone,1,700,02/16/19 18:57,"298 Meadow St, Boston, MA 02215" -157318,AA Batteries (4-pack),1,3.84,02/04/19 18:04,"13 13th St, Seattle, WA 98101" -157319,AA Batteries (4-pack),1,3.84,02/11/19 22:55,"990 14th St, San Francisco, CA 94016" -157320,34in Ultrawide Monitor,1,379.99,02/12/19 18:18,"92 Elm St, Los Angeles, CA 90001" -157321,27in FHD Monitor,1,149.99,02/12/19 16:18,"285 12th St, New York City, NY 10001" -157322,Bose SoundSport Headphones,1,99.99,02/22/19 10:51,"983 Wilson St, San Francisco, CA 94016" -157323,Vareebadd Phone,1,400,02/08/19 17:59,"232 Washington St, Atlanta, GA 30301" -157324,Lightning Charging Cable,1,14.95,02/24/19 09:38,"27 Forest St, San Francisco, CA 94016" -157325,USB-C Charging Cable,1,11.95,02/09/19 20:28,"393 Cherry St, San Francisco, CA 94016" -157326,AAA Batteries (4-pack),2,2.99,02/13/19 20:10,"988 Adams St, San Francisco, CA 94016" -157327,USB-C Charging Cable,1,11.95,02/02/19 15:48,"477 Main St, Boston, MA 02215" -157328,Google Phone,1,600,02/25/19 19:01,"174 9th St, Dallas, TX 75001" -157329,AA Batteries (4-pack),1,3.84,02/20/19 14:12,"9 Johnson St, Atlanta, GA 30301" -157330,Bose SoundSport Headphones,1,99.99,02/26/19 18:56,"738 Pine St, Portland, OR 97035" -157331,AA Batteries (4-pack),1,3.84,02/11/19 14:26,"214 11th St, New York City, NY 10001" -157332,Lightning Charging Cable,1,14.95,02/23/19 00:51,"701 14th St, Los Angeles, CA 90001" -157333,AAA Batteries (4-pack),2,2.99,02/28/19 15:07,"13 2nd St, Boston, MA 02215" -157334,Google Phone,1,600,02/27/19 12:52,"773 Dogwood St, San Francisco, CA 94016" -157334,Wired Headphones,1,11.99,02/27/19 12:52,"773 Dogwood St, San Francisco, CA 94016" -157335,AAA Batteries (4-pack),3,2.99,02/04/19 16:38,"266 2nd St, Seattle, WA 98101" -157336,27in FHD Monitor,1,149.99,02/13/19 15:11,"584 Spruce St, Portland, OR 97035" -157337,USB-C Charging Cable,2,11.95,02/23/19 08:01,"238 Ridge St, New York City, NY 10001" -157338,ThinkPad Laptop,1,999.99,02/08/19 10:29,"815 6th St, New York City, NY 10001" -157339,Apple Airpods Headphones,1,150,02/10/19 20:02,"818 13th St, Los Angeles, CA 90001" -157340,Wired Headphones,3,11.99,02/28/19 16:52,"118 Adams St, New York City, NY 10001" -157341,Lightning Charging Cable,2,14.95,02/24/19 11:05,"178 Highland St, Boston, MA 02215" -157342,Vareebadd Phone,1,400,02/18/19 19:43,"595 Lincoln St, Portland, ME 04101" -157342,USB-C Charging Cable,1,11.95,02/18/19 19:43,"595 Lincoln St, Portland, ME 04101" -157343,AAA Batteries (4-pack),1,2.99,02/27/19 16:53,"902 Lake St, Boston, MA 02215" -157344,Vareebadd Phone,1,400,02/20/19 17:14,"867 Chestnut St, New York City, NY 10001" -157344,USB-C Charging Cable,1,11.95,02/20/19 17:14,"867 Chestnut St, New York City, NY 10001" -157344,Wired Headphones,1,11.99,02/20/19 17:14,"867 Chestnut St, New York City, NY 10001" -157345,Google Phone,1,600,02/08/19 17:38,"937 North St, Boston, MA 02215" -157346,Bose SoundSport Headphones,1,99.99,02/07/19 16:43,"531 Dogwood St, New York City, NY 10001" -157347,27in FHD Monitor,1,149.99,02/18/19 12:43,"82 Jefferson St, Austin, TX 73301" -157348,Apple Airpods Headphones,1,150,02/25/19 20:06,"32 2nd St, San Francisco, CA 94016" -157349,AA Batteries (4-pack),1,3.84,02/19/19 14:19,"1 South St, New York City, NY 10001" -157350,27in 4K Gaming Monitor,1,389.99,02/03/19 09:08,"667 Walnut St, San Francisco, CA 94016" -157351,AA Batteries (4-pack),1,3.84,02/06/19 15:35,"958 Willow St, San Francisco, CA 94016" -157352,AA Batteries (4-pack),1,3.84,02/22/19 21:36,"559 Pine St, Seattle, WA 98101" -157353,Bose SoundSport Headphones,1,99.99,02/12/19 14:02,"907 Cherry St, Los Angeles, CA 90001" -157354,AA Batteries (4-pack),1,3.84,02/06/19 14:52,"561 River St, Los Angeles, CA 90001" -157355,iPhone,1,700,02/25/19 10:20,"128 Highland St, Los Angeles, CA 90001" -157356,USB-C Charging Cable,1,11.95,02/21/19 19:49,"417 Hill St, New York City, NY 10001" -157357,AA Batteries (4-pack),1,3.84,02/01/19 10:12,"533 2nd St, Dallas, TX 75001" -157358,USB-C Charging Cable,1,11.95,02/10/19 17:04,"724 Walnut St, Seattle, WA 98101" -157359,27in FHD Monitor,1,149.99,02/23/19 22:38,"741 Willow St, San Francisco, CA 94016" -157360,20in Monitor,1,109.99,02/14/19 12:34,"273 10th St, Austin, TX 73301" -157361,Bose SoundSport Headphones,1,99.99,02/19/19 16:27,"79 South St, New York City, NY 10001" -157362,Apple Airpods Headphones,1,150,02/06/19 17:32,"55 14th St, Boston, MA 02215" -157363,27in FHD Monitor,1,149.99,02/24/19 06:55,"413 1st St, Los Angeles, CA 90001" -157364,Apple Airpods Headphones,1,150,02/03/19 17:25,"809 Meadow St, San Francisco, CA 94016" -157365,LG Dryer,1,600.0,02/08/19 19:27,"863 Main St, Austin, TX 73301" -157366,27in FHD Monitor,1,149.99,02/15/19 16:45,"344 Highland St, Los Angeles, CA 90001" -157367,USB-C Charging Cable,1,11.95,02/01/19 21:58,"773 Hill St, Atlanta, GA 30301" -157368,Lightning Charging Cable,1,14.95,02/27/19 21:57,"503 Johnson St, Los Angeles, CA 90001" -157368,USB-C Charging Cable,1,11.95,02/27/19 21:57,"503 Johnson St, Los Angeles, CA 90001" -157369,USB-C Charging Cable,1,11.95,02/03/19 20:15,"483 Center St, San Francisco, CA 94016" -157370,Lightning Charging Cable,2,14.95,02/17/19 13:32,"503 7th St, Boston, MA 02215" -157370,Wired Headphones,1,11.99,02/17/19 13:32,"503 7th St, Boston, MA 02215" -157371,27in 4K Gaming Monitor,1,389.99,02/11/19 18:49,"376 Main St, New York City, NY 10001" -157372,AAA Batteries (4-pack),1,2.99,02/12/19 18:58,"942 Highland St, New York City, NY 10001" -157373,27in FHD Monitor,1,149.99,02/04/19 20:39,"548 Chestnut St, New York City, NY 10001" -157374,Google Phone,1,600,02/10/19 14:17,"635 Lakeview St, Boston, MA 02215" -157375,USB-C Charging Cable,1,11.95,02/07/19 21:36,"809 13th St, San Francisco, CA 94016" -157376,Bose SoundSport Headphones,1,99.99,02/03/19 18:59,"871 Jefferson St, Dallas, TX 75001" -157377,Bose SoundSport Headphones,1,99.99,02/09/19 21:28,"734 Dogwood St, Atlanta, GA 30301" -157378,AAA Batteries (4-pack),1,2.99,02/04/19 16:44,"609 Center St, New York City, NY 10001" -157379,Wired Headphones,1,11.99,02/11/19 16:46,"451 Jefferson St, San Francisco, CA 94016" -157380,Bose SoundSport Headphones,1,99.99,02/05/19 09:55,"876 Pine St, Portland, OR 97035" -157381,USB-C Charging Cable,1,11.95,02/05/19 21:24,"897 Lake St, Boston, MA 02215" -157382,AAA Batteries (4-pack),1,2.99,02/02/19 20:19,"316 Center St, Los Angeles, CA 90001" -157383,Wired Headphones,2,11.99,02/26/19 20:02,"225 Pine St, Portland, ME 04101" -157384,34in Ultrawide Monitor,1,379.99,02/20/19 19:13,"903 Adams St, Boston, MA 02215" -157385,Lightning Charging Cable,1,14.95,02/13/19 14:00,"727 Cedar St, San Francisco, CA 94016" -157386,Macbook Pro Laptop,1,1700,02/08/19 19:15,"170 Jackson St, San Francisco, CA 94016" -157387,AAA Batteries (4-pack),1,2.99,02/24/19 22:29,"567 Forest St, Atlanta, GA 30301" -157388,USB-C Charging Cable,1,11.95,02/10/19 23:55,"664 Sunset St, Boston, MA 02215" -157389,Flatscreen TV,1,300,02/01/19 16:32,"30 4th St, Austin, TX 73301" -157390,Wired Headphones,2,11.99,02/26/19 19:20,"729 Wilson St, Boston, MA 02215" -157391,iPhone,1,700,02/17/19 06:10,"560 8th St, Portland, OR 97035" -157392,LG Washing Machine,1,600.0,02/28/19 18:14,"113 Maple St, Atlanta, GA 30301" -157393,Wired Headphones,1,11.99,02/16/19 22:50,"680 9th St, San Francisco, CA 94016" -157394,27in 4K Gaming Monitor,1,389.99,02/13/19 12:27,"746 8th St, Los Angeles, CA 90001" -157395,AA Batteries (4-pack),1,3.84,02/19/19 15:06,"544 Main St, Portland, OR 97035" -157396,Google Phone,1,600,02/17/19 16:33,"792 Washington St, New York City, NY 10001" -157396,USB-C Charging Cable,1,11.95,02/17/19 16:33,"792 Washington St, New York City, NY 10001" -157397,iPhone,1,700,02/16/19 10:59,"789 Hill St, New York City, NY 10001" -157398,AAA Batteries (4-pack),2,2.99,02/24/19 15:29,"168 9th St, Los Angeles, CA 90001" -157399,iPhone,1,700,02/12/19 09:58,"585 Walnut St, Seattle, WA 98101" -157399,Wired Headphones,2,11.99,02/12/19 09:58,"585 Walnut St, Seattle, WA 98101" -157400,Apple Airpods Headphones,1,150,02/02/19 16:02,"636 Pine St, Dallas, TX 75001" -157401,Wired Headphones,1,11.99,02/01/19 10:17,"184 Park St, Los Angeles, CA 90001" -157402,Lightning Charging Cable,1,14.95,02/02/19 11:55,"332 Jackson St, Los Angeles, CA 90001" -157403,AAA Batteries (4-pack),1,2.99,02/25/19 19:29,"278 14th St, Boston, MA 02215" -157404,AAA Batteries (4-pack),4,2.99,02/24/19 11:35,"706 Madison St, Atlanta, GA 30301" -157405,iPhone,1,700,02/02/19 10:21,"270 Elm St, Los Angeles, CA 90001" -157406,Lightning Charging Cable,1,14.95,02/08/19 12:43,"652 Adams St, Portland, OR 97035" -157407,Wired Headphones,1,11.99,02/06/19 09:52,"353 West St, Austin, TX 73301" -157408,34in Ultrawide Monitor,1,379.99,02/02/19 12:48,"904 2nd St, Los Angeles, CA 90001" -157409,AAA Batteries (4-pack),1,2.99,02/10/19 16:06,"462 12th St, Boston, MA 02215" -157410,AAA Batteries (4-pack),4,2.99,02/07/19 20:32,"355 Pine St, Boston, MA 02215" -157411,AA Batteries (4-pack),1,3.84,02/19/19 18:47,"654 5th St, Los Angeles, CA 90001" -157412,AAA Batteries (4-pack),1,2.99,02/03/19 13:25,"327 9th St, Boston, MA 02215" -157413,AAA Batteries (4-pack),3,2.99,02/27/19 10:16,"147 9th St, San Francisco, CA 94016" -157414,USB-C Charging Cable,1,11.95,02/05/19 20:52,"477 4th St, San Francisco, CA 94016" -157415,Apple Airpods Headphones,1,150,02/19/19 20:10,"732 11th St, San Francisco, CA 94016" -157416,USB-C Charging Cable,1,11.95,02/04/19 19:54,"286 Adams St, Atlanta, GA 30301" -157417,AAA Batteries (4-pack),5,2.99,02/13/19 12:34,"746 Lake St, San Francisco, CA 94016" -157418,AA Batteries (4-pack),1,3.84,02/05/19 16:58,"101 8th St, New York City, NY 10001" -157418,Apple Airpods Headphones,1,150,02/05/19 16:58,"101 8th St, New York City, NY 10001" -157419,iPhone,1,700,02/22/19 17:43,"288 4th St, Portland, OR 97035" -157420,Lightning Charging Cable,1,14.95,02/20/19 21:25,"515 14th St, Dallas, TX 75001" -157421,Lightning Charging Cable,2,14.95,02/07/19 19:36,"909 14th St, San Francisco, CA 94016" -157422,Lightning Charging Cable,1,14.95,02/09/19 14:39,"91 5th St, New York City, NY 10001" -157423,Flatscreen TV,1,300,02/22/19 14:30,"777 8th St, Los Angeles, CA 90001" -157424,Lightning Charging Cable,2,14.95,02/11/19 14:15,"716 Lincoln St, Portland, OR 97035" -157425,iPhone,1,700,02/05/19 13:25,"562 Johnson St, New York City, NY 10001" -157425,Wired Headphones,1,11.99,02/05/19 13:25,"562 Johnson St, New York City, NY 10001" -157426,20in Monitor,1,109.99,02/27/19 12:19,"999 Willow St, Seattle, WA 98101" -157427,iPhone,1,700,02/13/19 12:28,"463 1st St, Portland, OR 97035" -157427,Wired Headphones,1,11.99,02/13/19 12:28,"463 1st St, Portland, OR 97035" -157428,Lightning Charging Cable,1,14.95,02/10/19 23:40,"996 Highland St, Atlanta, GA 30301" -157429,Lightning Charging Cable,1,14.95,02/12/19 15:43,"8 10th St, San Francisco, CA 94016" -157430,Bose SoundSport Headphones,1,99.99,02/11/19 18:15,"499 Johnson St, Dallas, TX 75001" -157431,27in FHD Monitor,1,149.99,02/12/19 08:41,"578 Washington St, Boston, MA 02215" -157432,USB-C Charging Cable,1,11.95,02/16/19 15:10,"197 5th St, Boston, MA 02215" -157433,AAA Batteries (4-pack),1,2.99,02/10/19 18:27,"219 Forest St, San Francisco, CA 94016" -157433,Apple Airpods Headphones,1,150,02/10/19 18:27,"219 Forest St, San Francisco, CA 94016" -157434,AA Batteries (4-pack),1,3.84,02/04/19 19:35,"770 Jefferson St, Dallas, TX 75001" -157435,27in 4K Gaming Monitor,1,389.99,02/03/19 12:16,"172 Hickory St, New York City, NY 10001" -157436,AA Batteries (4-pack),2,3.84,02/26/19 21:44,"713 1st St, Boston, MA 02215" -157437,ThinkPad Laptop,1,999.99,02/23/19 14:39,"381 9th St, Dallas, TX 75001" -157438,Apple Airpods Headphones,1,150,02/03/19 14:30,"715 Pine St, Atlanta, GA 30301" -157439,USB-C Charging Cable,1,11.95,02/04/19 11:38,"108 Chestnut St, Los Angeles, CA 90001" -157440,Google Phone,1,600,02/27/19 17:13,"729 Walnut St, Dallas, TX 75001" -157440,USB-C Charging Cable,1,11.95,02/27/19 17:13,"729 Walnut St, Dallas, TX 75001" -157441,iPhone,1,700,02/16/19 13:38,"971 Meadow St, Boston, MA 02215" -157441,Apple Airpods Headphones,1,150,02/16/19 13:38,"971 Meadow St, Boston, MA 02215" -157442,Lightning Charging Cable,1,14.95,02/25/19 13:34,"380 Spruce St, Boston, MA 02215" -157443,Bose SoundSport Headphones,1,99.99,02/19/19 00:15,"659 7th St, Los Angeles, CA 90001" -157444,27in FHD Monitor,1,149.99,02/04/19 03:15,"979 Highland St, San Francisco, CA 94016" -157445,AA Batteries (4-pack),1,3.84,02/23/19 16:04,"598 14th St, San Francisco, CA 94016" -157446,Wired Headphones,2,11.99,02/25/19 10:18,"460 Walnut St, Seattle, WA 98101" -157447,Wired Headphones,1,11.99,02/02/19 23:03,"778 11th St, New York City, NY 10001" -157448,Wired Headphones,1,11.99,02/18/19 20:12,"394 Ridge St, Los Angeles, CA 90001" -157449,34in Ultrawide Monitor,1,379.99,02/04/19 19:18,"761 Lakeview St, San Francisco, CA 94016" -157450,Google Phone,1,600,02/09/19 18:42,"964 Church St, San Francisco, CA 94016" -157450,USB-C Charging Cable,1,11.95,02/09/19 18:42,"964 Church St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -157451,27in 4K Gaming Monitor,1,389.99,02/14/19 12:39,"897 Lake St, San Francisco, CA 94016" -157452,Lightning Charging Cable,1,14.95,02/12/19 21:12,"359 Spruce St, San Francisco, CA 94016" -157453,Wired Headphones,1,11.99,02/26/19 17:18,"538 6th St, San Francisco, CA 94016" -157454,Lightning Charging Cable,1,14.95,02/05/19 16:43,"325 Madison St, Los Angeles, CA 90001" -157455,27in 4K Gaming Monitor,1,389.99,02/10/19 15:41,"766 Lakeview St, Portland, ME 04101" -157455,USB-C Charging Cable,1,11.95,02/10/19 15:41,"766 Lakeview St, Portland, ME 04101" -157456,Lightning Charging Cable,1,14.95,02/22/19 00:10,"82 Forest St, San Francisco, CA 94016" -157457,27in 4K Gaming Monitor,1,389.99,02/08/19 19:49,"222 Main St, New York City, NY 10001" -157458,AAA Batteries (4-pack),2,2.99,02/10/19 18:04,"527 Hickory St, Atlanta, GA 30301" -157459,AA Batteries (4-pack),1,3.84,02/05/19 17:47,"449 Willow St, San Francisco, CA 94016" -157460,AA Batteries (4-pack),1,3.84,02/02/19 22:47,"542 11th St, Dallas, TX 75001" -157461,Wired Headphones,1,11.99,02/05/19 16:19,"58 14th St, New York City, NY 10001" -157462,20in Monitor,1,109.99,02/07/19 18:55,"20 River St, Los Angeles, CA 90001" -157463,27in 4K Gaming Monitor,1,389.99,02/04/19 11:35,"437 Lincoln St, Boston, MA 02215" -157464,27in FHD Monitor,1,149.99,02/17/19 17:44,"836 Walnut St, Los Angeles, CA 90001" -157465,Lightning Charging Cable,1,14.95,02/19/19 17:10,"601 Forest St, New York City, NY 10001" -157466,USB-C Charging Cable,1,11.95,02/17/19 19:39,"594 North St, New York City, NY 10001" -157467,Apple Airpods Headphones,1,150,02/20/19 20:52,"59 2nd St, Los Angeles, CA 90001" -157468,Lightning Charging Cable,1,14.95,02/08/19 18:44,"694 Spruce St, Boston, MA 02215" -157469,iPhone,1,700,02/11/19 10:27,"570 South St, Atlanta, GA 30301" -157470,34in Ultrawide Monitor,1,379.99,02/13/19 14:22,"329 Dogwood St, New York City, NY 10001" -157471,AAA Batteries (4-pack),1,2.99,02/04/19 15:39,"456 Church St, Los Angeles, CA 90001" -157472,Lightning Charging Cable,1,14.95,02/04/19 11:23,"985 West St, Dallas, TX 75001" -157473,34in Ultrawide Monitor,1,379.99,02/12/19 21:16,"899 Cherry St, Dallas, TX 75001" -157474,Apple Airpods Headphones,1,150,02/12/19 16:32,"384 Dogwood St, San Francisco, CA 94016" -157475,Apple Airpods Headphones,1,150,02/14/19 06:03,"5 Park St, San Francisco, CA 94016" -157476,Lightning Charging Cable,1,14.95,02/20/19 21:58,"173 8th St, New York City, NY 10001" -157477,USB-C Charging Cable,1,11.95,02/20/19 13:10,"626 Dogwood St, Portland, ME 04101" -157478,USB-C Charging Cable,1,11.95,02/23/19 17:56,"796 Willow St, New York City, NY 10001" -157479,Apple Airpods Headphones,1,150,02/11/19 19:37,"331 2nd St, Austin, TX 73301" -157480,AAA Batteries (4-pack),1,2.99,02/20/19 13:30,"768 Chestnut St, Los Angeles, CA 90001" -157481,Lightning Charging Cable,1,14.95,02/07/19 12:07,"35 Sunset St, New York City, NY 10001" -,,,,, -157482,iPhone,1,700,02/02/19 14:31,"469 Johnson St, Seattle, WA 98101" -157483,27in FHD Monitor,1,149.99,02/25/19 13:35,"171 Highland St, San Francisco, CA 94016" -157484,Wired Headphones,1,11.99,02/19/19 09:10,"369 Lincoln St, Atlanta, GA 30301" -157485,Lightning Charging Cable,3,14.95,02/10/19 21:02,"292 12th St, Austin, TX 73301" -157486,Flatscreen TV,1,300,02/10/19 13:06,"545 Adams St, Dallas, TX 75001" -157487,Flatscreen TV,1,300,02/21/19 22:44,"405 North St, Boston, MA 02215" -157488,Wired Headphones,1,11.99,02/28/19 19:18,"607 Willow St, Boston, MA 02215" -157489,Wired Headphones,1,11.99,02/23/19 21:31,"28 Wilson St, Portland, OR 97035" -157490,Wired Headphones,1,11.99,02/26/19 06:32,"354 1st St, Los Angeles, CA 90001" -157491,Wired Headphones,1,11.99,02/16/19 15:34,"571 Walnut St, Los Angeles, CA 90001" -157492,AAA Batteries (4-pack),1,2.99,02/21/19 09:23,"36 Pine St, Los Angeles, CA 90001" -157493,Flatscreen TV,1,300,02/13/19 14:57,"286 Johnson St, Dallas, TX 75001" -157494,AA Batteries (4-pack),1,3.84,02/25/19 19:30,"728 Walnut St, Los Angeles, CA 90001" -157495,AAA Batteries (4-pack),1,2.99,02/12/19 23:06,"635 Madison St, New York City, NY 10001" -157496,ThinkPad Laptop,1,999.99,02/08/19 09:51,"580 Main St, New York City, NY 10001" -157497,AAA Batteries (4-pack),1,2.99,02/17/19 19:58,"444 Cherry St, Boston, MA 02215" -157498,Lightning Charging Cable,1,14.95,02/26/19 10:56,"799 River St, Seattle, WA 98101" -157499,Wired Headphones,1,11.99,02/15/19 09:16,"857 13th St, San Francisco, CA 94016" -157500,20in Monitor,1,109.99,02/10/19 18:17,"898 Johnson St, Austin, TX 73301" -157501,Flatscreen TV,1,300,02/23/19 23:52,"201 North St, Atlanta, GA 30301" -157502,27in 4K Gaming Monitor,1,389.99,02/23/19 09:33,"36 Walnut St, Atlanta, GA 30301" -157503,Bose SoundSport Headphones,1,99.99,02/04/19 21:42,"285 14th St, San Francisco, CA 94016" -157504,AAA Batteries (4-pack),1,2.99,02/10/19 11:03,"318 Jefferson St, New York City, NY 10001" -157505,AA Batteries (4-pack),1,3.84,02/25/19 01:23,"384 2nd St, San Francisco, CA 94016" -157506,Lightning Charging Cable,1,14.95,02/20/19 14:49,"694 Maple St, Los Angeles, CA 90001" -157507,AA Batteries (4-pack),1,3.84,02/10/19 12:33,"34 Park St, Atlanta, GA 30301" -157508,USB-C Charging Cable,1,11.95,02/21/19 06:30,"389 West St, San Francisco, CA 94016" -157509,iPhone,1,700,02/18/19 13:08,"462 Lincoln St, Los Angeles, CA 90001" -157510,USB-C Charging Cable,1,11.95,02/28/19 15:16,"747 River St, San Francisco, CA 94016" -157511,AA Batteries (4-pack),1,3.84,02/11/19 20:01,"402 4th St, San Francisco, CA 94016" -157512,Wired Headphones,1,11.99,02/03/19 00:33,"348 Sunset St, Atlanta, GA 30301" -157513,Apple Airpods Headphones,1,150,02/18/19 10:10,"109 Lincoln St, Portland, OR 97035" -157514,Google Phone,1,600,02/16/19 15:25,"383 Meadow St, Dallas, TX 75001" -157515,AA Batteries (4-pack),1,3.84,02/24/19 14:36,"888 13th St, New York City, NY 10001" -157516,Bose SoundSport Headphones,1,99.99,02/02/19 15:58,"420 Cedar St, Boston, MA 02215" -157517,27in FHD Monitor,1,149.99,02/10/19 01:54,"885 14th St, Austin, TX 73301" -157518,AA Batteries (4-pack),1,3.84,02/16/19 19:57,"812 Park St, Boston, MA 02215" -157519,Apple Airpods Headphones,1,150,02/21/19 14:03,"55 Hill St, Austin, TX 73301" -157520,Apple Airpods Headphones,1,150,02/06/19 09:21,"312 Johnson St, San Francisco, CA 94016" -157521,Apple Airpods Headphones,1,150,02/05/19 11:10,"132 6th St, Los Angeles, CA 90001" -157522,Macbook Pro Laptop,1,1700,02/24/19 19:01,"825 7th St, Boston, MA 02215" -157523,Bose SoundSport Headphones,1,99.99,02/10/19 15:24,"507 Lakeview St, Dallas, TX 75001" -157524,ThinkPad Laptop,1,999.99,02/15/19 19:19,"776 Washington St, Austin, TX 73301" -157525,34in Ultrawide Monitor,1,379.99,02/11/19 15:43,"444 Highland St, San Francisco, CA 94016" -157526,AA Batteries (4-pack),2,3.84,02/10/19 12:06,"985 Dogwood St, San Francisco, CA 94016" -157527,Flatscreen TV,1,300,02/27/19 10:36,"964 Madison St, Dallas, TX 75001" -157528,Wired Headphones,1,11.99,02/14/19 16:31,"892 Sunset St, Portland, OR 97035" -157529,Google Phone,1,600,02/10/19 12:39,"116 Dogwood St, Portland, OR 97035" -157529,USB-C Charging Cable,1,11.95,02/10/19 12:39,"116 Dogwood St, Portland, OR 97035" -157530,AAA Batteries (4-pack),3,2.99,02/25/19 12:47,"298 8th St, Los Angeles, CA 90001" -157531,AA Batteries (4-pack),1,3.84,02/16/19 18:46,"505 Ridge St, Los Angeles, CA 90001" -157532,Bose SoundSport Headphones,1,99.99,02/25/19 13:12,"34 Center St, Atlanta, GA 30301" -157533,AAA Batteries (4-pack),1,2.99,02/04/19 16:11,"722 Center St, San Francisco, CA 94016" -157534,Apple Airpods Headphones,1,150,02/26/19 16:24,"874 6th St, Seattle, WA 98101" -157535,USB-C Charging Cable,1,11.95,02/04/19 12:48,"58 5th St, Portland, OR 97035" -157536,34in Ultrawide Monitor,1,379.99,02/26/19 18:42,"306 6th St, San Francisco, CA 94016" -157537,AA Batteries (4-pack),3,3.84,02/05/19 11:23,"952 Spruce St, Dallas, TX 75001" -157538,iPhone,1,700,02/03/19 08:29,"251 Forest St, San Francisco, CA 94016" -157539,USB-C Charging Cable,1,11.95,02/13/19 17:55,"211 Lake St, San Francisco, CA 94016" -157540,34in Ultrawide Monitor,1,379.99,02/12/19 08:14,"748 6th St, Dallas, TX 75001" -157541,Bose SoundSport Headphones,1,99.99,02/07/19 11:28,"152 2nd St, Los Angeles, CA 90001" -157542,USB-C Charging Cable,1,11.95,02/25/19 17:24,"628 Highland St, Los Angeles, CA 90001" -157543,ThinkPad Laptop,1,999.99,02/28/19 21:28,"224 Adams St, Atlanta, GA 30301" -157544,AAA Batteries (4-pack),1,2.99,02/21/19 13:13,"149 Ridge St, San Francisco, CA 94016" -157545,AAA Batteries (4-pack),1,2.99,02/23/19 15:27,"137 12th St, New York City, NY 10001" -157546,USB-C Charging Cable,1,11.95,02/12/19 09:46,"663 Cherry St, San Francisco, CA 94016" -157547,20in Monitor,1,109.99,02/27/19 12:30,"867 Cherry St, San Francisco, CA 94016" -157548,Apple Airpods Headphones,1,150,02/26/19 17:18,"503 Main St, Atlanta, GA 30301" -157549,Bose SoundSport Headphones,1,99.99,02/27/19 09:58,"845 11th St, San Francisco, CA 94016" -157550,AAA Batteries (4-pack),1,2.99,02/14/19 19:03,"638 14th St, New York City, NY 10001" -157551,Lightning Charging Cable,1,14.95,02/14/19 01:40,"87 Chestnut St, New York City, NY 10001" -157552,USB-C Charging Cable,1,11.95,02/05/19 17:05,"496 12th St, Seattle, WA 98101" -157553,Wired Headphones,1,11.99,02/03/19 21:39,"317 Dogwood St, Dallas, TX 75001" -157554,AA Batteries (4-pack),1,3.84,02/14/19 16:37,"341 Church St, Dallas, TX 75001" -157555,iPhone,1,700,02/17/19 20:17,"350 Lakeview St, New York City, NY 10001" -157556,27in FHD Monitor,1,149.99,02/09/19 09:33,"667 Lakeview St, New York City, NY 10001" -157557,Wired Headphones,1,11.99,02/14/19 15:09,"967 Spruce St, Boston, MA 02215" -157558,USB-C Charging Cable,1,11.95,02/02/19 10:07,"898 Lakeview St, New York City, NY 10001" -157559,ThinkPad Laptop,1,999.99,02/15/19 12:59,"247 Maple St, Dallas, TX 75001" -157560,AAA Batteries (4-pack),1,2.99,02/19/19 13:31,"550 Lakeview St, Portland, ME 04101" -157561,Apple Airpods Headphones,1,150,02/25/19 19:15,"554 Madison St, Los Angeles, CA 90001" -157562,Bose SoundSport Headphones,1,99.99,02/16/19 00:05,"280 North St, Dallas, TX 75001" -157563,iPhone,1,700,02/22/19 12:01,"512 7th St, San Francisco, CA 94016" -157564,27in FHD Monitor,1,149.99,02/07/19 11:28,"885 Lake St, Dallas, TX 75001" -157565,34in Ultrawide Monitor,1,379.99,02/18/19 21:11,"501 4th St, New York City, NY 10001" -157566,USB-C Charging Cable,1,11.95,02/20/19 18:32,"554 5th St, San Francisco, CA 94016" -157567,USB-C Charging Cable,2,11.95,02/09/19 16:54,"163 Johnson St, San Francisco, CA 94016" -157568,USB-C Charging Cable,1,11.95,02/12/19 23:59,"556 2nd St, Atlanta, GA 30301" -157569,Lightning Charging Cable,2,14.95,02/19/19 22:03,"547 South St, Los Angeles, CA 90001" -157570,Apple Airpods Headphones,1,150,02/17/19 20:06,"827 Chestnut St, San Francisco, CA 94016" -157571,Apple Airpods Headphones,1,150,02/21/19 20:19,"11 North St, San Francisco, CA 94016" -157572,AAA Batteries (4-pack),1,2.99,02/23/19 05:33,"50 Elm St, San Francisco, CA 94016" -157573,Wired Headphones,1,11.99,02/07/19 13:47,"364 Cherry St, Dallas, TX 75001" -157574,AAA Batteries (4-pack),1,2.99,02/20/19 22:16,"941 Willow St, San Francisco, CA 94016" -157575,USB-C Charging Cable,1,11.95,02/24/19 05:38,"679 Lake St, Boston, MA 02215" -157576,Lightning Charging Cable,1,14.95,02/06/19 18:17,"523 Jefferson St, Los Angeles, CA 90001" -157577,AAA Batteries (4-pack),1,2.99,02/11/19 10:48,"620 10th St, Atlanta, GA 30301" -157578,Flatscreen TV,1,300,02/27/19 19:24,"580 Cedar St, Los Angeles, CA 90001" -157579,27in FHD Monitor,1,149.99,02/07/19 21:52,"156 8th St, Seattle, WA 98101" -157580,USB-C Charging Cable,1,11.95,02/15/19 15:37,"906 Cherry St, San Francisco, CA 94016" -157581,Bose SoundSport Headphones,1,99.99,02/12/19 14:07,"238 Dogwood St, Atlanta, GA 30301" -157582,AAA Batteries (4-pack),1,2.99,02/12/19 18:32,"51 12th St, Austin, TX 73301" -157583,20in Monitor,1,109.99,02/10/19 15:53,"153 Park St, Dallas, TX 75001" -157584,USB-C Charging Cable,1,11.95,02/07/19 12:10,"636 Spruce St, San Francisco, CA 94016" -157585,AAA Batteries (4-pack),1,2.99,02/09/19 17:26,"239 Meadow St, New York City, NY 10001" -157586,AAA Batteries (4-pack),3,2.99,02/16/19 17:59,"610 Dogwood St, San Francisco, CA 94016" -157587,27in FHD Monitor,1,149.99,02/08/19 17:54,"298 Maple St, New York City, NY 10001" -157588,Wired Headphones,1,11.99,02/28/19 12:24,"848 9th St, San Francisco, CA 94016" -157589,Apple Airpods Headphones,1,150,02/20/19 23:30,"429 Johnson St, San Francisco, CA 94016" -157590,AAA Batteries (4-pack),1,2.99,02/08/19 02:39,"232 West St, San Francisco, CA 94016" -157591,USB-C Charging Cable,1,11.95,02/03/19 11:24,"860 13th St, San Francisco, CA 94016" -157592,Flatscreen TV,1,300,02/04/19 19:58,"647 Pine St, Portland, ME 04101" -157593,USB-C Charging Cable,1,11.95,02/03/19 23:47,"911 Church St, San Francisco, CA 94016" -157594,AAA Batteries (4-pack),1,2.99,02/24/19 20:49,"2 Church St, Los Angeles, CA 90001" -157595,USB-C Charging Cable,1,11.95,02/14/19 10:46,"556 Jefferson St, Los Angeles, CA 90001" -157596,USB-C Charging Cable,1,11.95,02/15/19 04:01,"838 Washington St, Seattle, WA 98101" -157597,Google Phone,1,600,02/12/19 10:08,"582 Pine St, Boston, MA 02215" -157598,Wired Headphones,1,11.99,02/20/19 14:48,"912 8th St, New York City, NY 10001" -157599,Lightning Charging Cable,1,14.95,02/21/19 11:23,"491 Jefferson St, San Francisco, CA 94016" -157600,Apple Airpods Headphones,1,150,02/28/19 14:40,"421 Park St, Boston, MA 02215" -157601,USB-C Charging Cable,1,11.95,02/06/19 19:12,"633 Main St, Seattle, WA 98101" -157602,Vareebadd Phone,1,400,02/25/19 13:33,"557 Meadow St, San Francisco, CA 94016" -157603,Bose SoundSport Headphones,2,99.99,02/22/19 20:43,"957 Highland St, San Francisco, CA 94016" -157604,AAA Batteries (4-pack),2,2.99,02/20/19 12:49,"998 Chestnut St, New York City, NY 10001" -157605,USB-C Charging Cable,2,11.95,02/13/19 00:29,"253 South St, San Francisco, CA 94016" -157606,Lightning Charging Cable,1,14.95,02/22/19 16:17,"909 Main St, Los Angeles, CA 90001" -157607,27in FHD Monitor,1,149.99,02/22/19 16:43,"631 Park St, Los Angeles, CA 90001" -157608,Apple Airpods Headphones,1,150,02/11/19 17:59,"82 Forest St, Austin, TX 73301" -157609,Bose SoundSport Headphones,1,99.99,02/18/19 15:58,"117 Church St, Atlanta, GA 30301" -157610,Lightning Charging Cable,1,14.95,02/18/19 15:25,"31 Center St, San Francisco, CA 94016" -157611,Bose SoundSport Headphones,1,99.99,02/22/19 17:45,"8 11th St, Dallas, TX 75001" -157612,Bose SoundSport Headphones,1,99.99,02/28/19 11:30,"159 Ridge St, Atlanta, GA 30301" -157613,AAA Batteries (4-pack),1,2.99,02/26/19 09:59,"76 6th St, Boston, MA 02215" -157614,AAA Batteries (4-pack),1,2.99,02/06/19 16:32,"232 Washington St, Dallas, TX 75001" -157615,ThinkPad Laptop,1,999.99,02/19/19 16:29,"413 Meadow St, Boston, MA 02215" -157616,AAA Batteries (4-pack),1,2.99,02/07/19 01:31,"622 Forest St, San Francisco, CA 94016" -157617,Google Phone,1,600,02/24/19 19:57,"144 Maple St, Los Angeles, CA 90001" -157618,20in Monitor,1,109.99,02/03/19 05:56,"137 Highland St, Austin, TX 73301" -157619,AAA Batteries (4-pack),2,2.99,02/01/19 18:43,"462 Cherry St, New York City, NY 10001" -157620,iPhone,1,700,02/05/19 17:12,"332 1st St, Atlanta, GA 30301" -157620,AA Batteries (4-pack),1,3.84,02/05/19 17:12,"332 1st St, Atlanta, GA 30301" -157621,Bose SoundSport Headphones,1,99.99,02/22/19 22:57,"264 Chestnut St, Austin, TX 73301" -157622,Bose SoundSport Headphones,1,99.99,02/10/19 21:38,"537 South St, Dallas, TX 75001" -157623,Apple Airpods Headphones,1,150,02/18/19 19:33,"746 14th St, Boston, MA 02215" -157624,USB-C Charging Cable,1,11.95,02/19/19 07:33,"287 West St, Los Angeles, CA 90001" -157625,Bose SoundSport Headphones,1,99.99,02/21/19 19:44,"76 Jefferson St, Los Angeles, CA 90001" -157626,Apple Airpods Headphones,1,150,02/11/19 12:08,"429 Johnson St, San Francisco, CA 94016" -157627,iPhone,1,700,02/07/19 19:12,"758 Maple St, Austin, TX 73301" -157628,Wired Headphones,1,11.99,02/18/19 10:27,"111 2nd St, San Francisco, CA 94016" -157629,Flatscreen TV,1,300,02/03/19 06:32,"204 Cedar St, New York City, NY 10001" -157630,Apple Airpods Headphones,1,150,02/18/19 14:15,"883 13th St, Los Angeles, CA 90001" -157631,34in Ultrawide Monitor,1,379.99,02/21/19 12:25,"459 Walnut St, Los Angeles, CA 90001" -157632,Bose SoundSport Headphones,1,99.99,02/26/19 19:45,"110 Chestnut St, Portland, OR 97035" -157633,AAA Batteries (4-pack),1,2.99,02/24/19 09:36,"822 Meadow St, Los Angeles, CA 90001" -157634,Macbook Pro Laptop,1,1700,02/19/19 19:12,"424 Highland St, New York City, NY 10001" -157635,AA Batteries (4-pack),2,3.84,02/28/19 17:25,"971 Pine St, Los Angeles, CA 90001" -157636,iPhone,1,700,02/08/19 18:14,"461 Washington St, Atlanta, GA 30301" -157637,Lightning Charging Cable,1,14.95,02/28/19 19:59,"453 Wilson St, Seattle, WA 98101" -157638,iPhone,1,700,02/17/19 09:35,"684 Maple St, Los Angeles, CA 90001" -157639,USB-C Charging Cable,1,11.95,02/08/19 17:45,"516 13th St, San Francisco, CA 94016" -157640,Lightning Charging Cable,1,14.95,02/23/19 06:31,"308 Lincoln St, Dallas, TX 75001" -157641,AAA Batteries (4-pack),2,2.99,02/14/19 11:51,"620 Hickory St, San Francisco, CA 94016" -157642,27in FHD Monitor,1,149.99,02/04/19 16:45,"992 Cedar St, New York City, NY 10001" -157643,27in 4K Gaming Monitor,1,389.99,02/18/19 14:48,"857 Hill St, San Francisco, CA 94016" -157644,27in 4K Gaming Monitor,1,389.99,02/03/19 18:50,"703 Forest St, Los Angeles, CA 90001" -157645,27in FHD Monitor,1,149.99,02/24/19 20:29,"753 13th St, San Francisco, CA 94016" -157646,Apple Airpods Headphones,1,150,02/23/19 00:35,"147 South St, Atlanta, GA 30301" -157647,USB-C Charging Cable,1,11.95,02/28/19 07:56,"1 Lakeview St, San Francisco, CA 94016" -157648,AA Batteries (4-pack),1,3.84,02/25/19 12:24,"369 Dogwood St, Atlanta, GA 30301" -157649,Apple Airpods Headphones,1,150,02/07/19 21:32,"515 Adams St, San Francisco, CA 94016" -157650,Bose SoundSport Headphones,1,99.99,02/10/19 11:30,"756 Johnson St, Los Angeles, CA 90001" -157651,Apple Airpods Headphones,1,150,02/13/19 09:10,"46 North St, San Francisco, CA 94016" -157652,Wired Headphones,1,11.99,02/26/19 11:52,"178 11th St, Atlanta, GA 30301" -157653,Bose SoundSport Headphones,1,99.99,02/03/19 19:44,"326 Ridge St, New York City, NY 10001" -157654,AA Batteries (4-pack),1,3.84,02/12/19 22:35,"639 Elm St, San Francisco, CA 94016" -157655,AAA Batteries (4-pack),2,2.99,02/14/19 22:22,"185 Main St, Boston, MA 02215" -157656,AA Batteries (4-pack),2,3.84,02/25/19 11:10,"694 Chestnut St, Austin, TX 73301" -157657,Bose SoundSport Headphones,1,99.99,02/11/19 08:19,"303 Ridge St, San Francisco, CA 94016" -157658,Apple Airpods Headphones,1,150,02/01/19 22:52,"365 Forest St, Boston, MA 02215" -157659,Wired Headphones,1,11.99,02/20/19 11:33,"739 Madison St, Boston, MA 02215" -157660,Wired Headphones,1,11.99,02/13/19 12:42,"185 5th St, San Francisco, CA 94016" -157661,27in 4K Gaming Monitor,1,389.99,02/28/19 19:55,"158 Elm St, San Francisco, CA 94016" -157662,AA Batteries (4-pack),3,3.84,02/09/19 00:24,"791 Jackson St, Austin, TX 73301" -157663,Apple Airpods Headphones,1,150,02/09/19 16:59,"679 Main St, Boston, MA 02215" -157664,Bose SoundSport Headphones,1,99.99,02/24/19 11:53,"457 7th St, Los Angeles, CA 90001" -157665,USB-C Charging Cable,1,11.95,02/28/19 13:38,"946 Pine St, Los Angeles, CA 90001" -157666,AAA Batteries (4-pack),2,2.99,02/17/19 17:29,"196 Walnut St, Boston, MA 02215" -157667,USB-C Charging Cable,1,11.95,02/17/19 10:24,"723 Washington St, Los Angeles, CA 90001" -157667,AAA Batteries (4-pack),1,2.99,02/17/19 10:24,"723 Washington St, Los Angeles, CA 90001" -157668,Flatscreen TV,1,300,02/26/19 09:47,"294 Lakeview St, New York City, NY 10001" -157669,Macbook Pro Laptop,1,1700,02/19/19 09:42,"83 12th St, Seattle, WA 98101" -157670,Bose SoundSport Headphones,1,99.99,02/12/19 20:33,"196 Ridge St, New York City, NY 10001" -157671,iPhone,1,700,02/22/19 19:55,"282 Jefferson St, New York City, NY 10001" -157672,Apple Airpods Headphones,1,150,02/26/19 20:45,"834 Hickory St, San Francisco, CA 94016" -157673,iPhone,1,700,02/03/19 22:19,"807 Center St, Los Angeles, CA 90001" -157674,AAA Batteries (4-pack),2,2.99,02/14/19 16:50,"471 2nd St, Seattle, WA 98101" -157675,Lightning Charging Cable,1,14.95,02/17/19 13:00,"725 North St, San Francisco, CA 94016" -157676,Lightning Charging Cable,1,14.95,02/24/19 16:44,"865 North St, Atlanta, GA 30301" -157677,AAA Batteries (4-pack),1,2.99,02/03/19 21:19,"998 Madison St, Boston, MA 02215" -157678,Lightning Charging Cable,1,14.95,02/05/19 19:15,"343 Center St, New York City, NY 10001" -157679,Wired Headphones,1,11.99,02/26/19 19:52,"300 Dogwood St, Portland, OR 97035" -157680,Lightning Charging Cable,2,14.95,02/06/19 17:39,"617 Cedar St, San Francisco, CA 94016" -157681,Lightning Charging Cable,1,14.95,02/23/19 16:26,"486 Forest St, Los Angeles, CA 90001" -157682,27in 4K Gaming Monitor,1,389.99,02/16/19 20:41,"177 Center St, Los Angeles, CA 90001" -157683,Wired Headphones,1,11.99,02/26/19 13:31,"249 Forest St, Dallas, TX 75001" -157684,Wired Headphones,1,11.99,02/02/19 13:19,"317 Jackson St, Seattle, WA 98101" -157685,USB-C Charging Cable,1,11.95,02/28/19 13:28,"5 Forest St, San Francisco, CA 94016" -157686,Bose SoundSport Headphones,1,99.99,02/26/19 14:56,"741 10th St, Austin, TX 73301" -157687,AA Batteries (4-pack),3,3.84,02/24/19 20:50,"759 Spruce St, San Francisco, CA 94016" -157688,iPhone,1,700,02/04/19 12:29,"269 Willow St, Seattle, WA 98101" -157688,Apple Airpods Headphones,1,150,02/04/19 12:29,"269 Willow St, Seattle, WA 98101" -157689,20in Monitor,1,109.99,02/24/19 11:41,"106 Meadow St, San Francisco, CA 94016" -157690,Lightning Charging Cable,1,14.95,02/27/19 15:19,"586 Wilson St, Atlanta, GA 30301" -157691,27in 4K Gaming Monitor,1,389.99,02/15/19 13:48,"966 Maple St, San Francisco, CA 94016" -157692,AA Batteries (4-pack),3,3.84,02/12/19 20:41,"440 Washington St, Boston, MA 02215" -157693,Vareebadd Phone,1,400,02/05/19 10:12,"90 North St, Atlanta, GA 30301" -157694,AAA Batteries (4-pack),3,2.99,02/21/19 17:29,"288 River St, Los Angeles, CA 90001" -157695,Wired Headphones,1,11.99,02/17/19 21:02,"711 Pine St, Atlanta, GA 30301" -157696,Apple Airpods Headphones,1,150,02/21/19 20:39,"507 Park St, Austin, TX 73301" -157697,AA Batteries (4-pack),1,3.84,02/05/19 12:38,"806 8th St, Los Angeles, CA 90001" -157698,AA Batteries (4-pack),1,3.84,02/01/19 17:56,"694 Madison St, Portland, OR 97035" -157699,Lightning Charging Cable,1,14.95,02/14/19 02:43,"610 Wilson St, Los Angeles, CA 90001" -157700,USB-C Charging Cable,1,11.95,02/02/19 01:15,"42 Spruce St, Los Angeles, CA 90001" -157701,27in FHD Monitor,1,149.99,02/08/19 18:25,"483 West St, Portland, OR 97035" -157702,AA Batteries (4-pack),1,3.84,02/15/19 21:11,"508 Jefferson St, New York City, NY 10001" -157703,Apple Airpods Headphones,1,150,02/25/19 21:34,"475 7th St, Boston, MA 02215" -157704,Apple Airpods Headphones,1,150,02/06/19 21:37,"943 Sunset St, San Francisco, CA 94016" -157705,Lightning Charging Cable,1,14.95,02/16/19 06:02,"778 Center St, San Francisco, CA 94016" -157706,AAA Batteries (4-pack),1,2.99,02/25/19 18:06,"555 7th St, Boston, MA 02215" -157707,Flatscreen TV,1,300,02/16/19 11:38,"925 Forest St, Atlanta, GA 30301" -157708,Bose SoundSport Headphones,1,99.99,02/09/19 17:25,"146 Washington St, Boston, MA 02215" -157709,Bose SoundSport Headphones,1,99.99,02/06/19 06:50,"540 Maple St, Austin, TX 73301" -157710,Wired Headphones,1,11.99,02/11/19 13:05,"397 4th St, Portland, ME 04101" -157711,Google Phone,1,600,02/06/19 05:15,"94 Cherry St, San Francisco, CA 94016" -157712,Apple Airpods Headphones,1,150,02/14/19 06:12,"332 8th St, New York City, NY 10001" -157713,Wired Headphones,1,11.99,02/27/19 05:55,"426 Cherry St, San Francisco, CA 94016" -157714,USB-C Charging Cable,1,11.95,02/16/19 14:07,"567 Highland St, Atlanta, GA 30301" -157715,AA Batteries (4-pack),1,3.84,02/19/19 13:41,"901 7th St, Boston, MA 02215" -157716,Wired Headphones,1,11.99,02/15/19 04:24,"13 Forest St, Seattle, WA 98101" -157717,Google Phone,1,600,02/18/19 14:01,"15 8th St, Boston, MA 02215" -157718,Wired Headphones,1,11.99,02/09/19 14:04,"526 Ridge St, New York City, NY 10001" -157719,Apple Airpods Headphones,1,150,02/21/19 13:46,"580 Hickory St, New York City, NY 10001" -157720,Wired Headphones,1,11.99,02/08/19 21:28,"348 Forest St, San Francisco, CA 94016" -157721,Macbook Pro Laptop,1,1700,02/27/19 18:29,"113 Dogwood St, San Francisco, CA 94016" -157722,Macbook Pro Laptop,1,1700,02/19/19 15:14,"549 North St, San Francisco, CA 94016" -157723,AA Batteries (4-pack),1,3.84,02/04/19 21:13,"346 11th St, San Francisco, CA 94016" -157724,iPhone,1,700,02/12/19 10:48,"483 Hill St, Los Angeles, CA 90001" -157724,Lightning Charging Cable,1,14.95,02/12/19 10:48,"483 Hill St, Los Angeles, CA 90001" -157725,Macbook Pro Laptop,1,1700,02/19/19 14:45,"125 West St, San Francisco, CA 94016" -157726,Wired Headphones,1,11.99,02/14/19 15:29,"806 Spruce St, New York City, NY 10001" -157727,AA Batteries (4-pack),1,3.84,02/27/19 20:04,"347 Jackson St, Los Angeles, CA 90001" -157728,Lightning Charging Cable,1,14.95,02/12/19 02:25,"52 Church St, Austin, TX 73301" -157729,USB-C Charging Cable,1,11.95,02/03/19 22:59,"77 Sunset St, New York City, NY 10001" -157730,USB-C Charging Cable,1,11.95,02/12/19 13:47,"553 11th St, Boston, MA 02215" -157731,20in Monitor,1,109.99,02/16/19 09:55,"116 6th St, Austin, TX 73301" -157732,27in FHD Monitor,1,149.99,02/28/19 15:04,"127 Hickory St, New York City, NY 10001" -157733,AAA Batteries (4-pack),1,2.99,02/20/19 09:23,"614 North St, Portland, OR 97035" -157734,AAA Batteries (4-pack),2,2.99,02/15/19 19:50,"572 8th St, Boston, MA 02215" -157735,USB-C Charging Cable,1,11.95,02/26/19 21:11,"618 Lincoln St, Portland, OR 97035" -157735,Apple Airpods Headphones,1,150,02/26/19 21:11,"618 Lincoln St, Portland, OR 97035" -157736,USB-C Charging Cable,1,11.95,02/15/19 20:06,"679 Hickory St, Los Angeles, CA 90001" -157737,Apple Airpods Headphones,1,150,02/06/19 12:57,"192 Park St, Los Angeles, CA 90001" -157738,34in Ultrawide Monitor,1,379.99,02/22/19 14:46,"156 14th St, Boston, MA 02215" -157739,Wired Headphones,1,11.99,02/17/19 19:37,"599 8th St, San Francisco, CA 94016" -157740,Bose SoundSport Headphones,1,99.99,02/18/19 22:28,"588 Meadow St, San Francisco, CA 94016" -157741,iPhone,1,700,02/26/19 00:05,"150 South St, San Francisco, CA 94016" -157742,USB-C Charging Cable,1,11.95,02/14/19 18:56,"815 14th St, San Francisco, CA 94016" -157743,Lightning Charging Cable,1,14.95,02/26/19 12:35,"787 Highland St, New York City, NY 10001" -157744,USB-C Charging Cable,2,11.95,02/04/19 17:06,"690 9th St, Austin, TX 73301" -157745,Lightning Charging Cable,1,14.95,02/06/19 10:08,"639 12th St, Portland, ME 04101" -157746,AA Batteries (4-pack),1,3.84,02/03/19 11:10,"257 11th St, New York City, NY 10001" -157747,Flatscreen TV,1,300,02/28/19 22:16,"885 Jackson St, Dallas, TX 75001" -157748,Macbook Pro Laptop,1,1700,02/17/19 21:19,"995 9th St, Seattle, WA 98101" -157749,AAA Batteries (4-pack),3,2.99,02/10/19 18:42,"794 Walnut St, San Francisco, CA 94016" -157750,27in FHD Monitor,1,149.99,02/12/19 18:44,"341 Sunset St, New York City, NY 10001" -157751,USB-C Charging Cable,1,11.95,02/02/19 06:57,"558 2nd St, San Francisco, CA 94016" -157752,Apple Airpods Headphones,1,150,02/16/19 10:37,"18 Dogwood St, San Francisco, CA 94016" -157753,USB-C Charging Cable,1,11.95,02/18/19 22:29,"865 14th St, Los Angeles, CA 90001" -157754,27in 4K Gaming Monitor,1,389.99,02/10/19 12:14,"837 Center St, Los Angeles, CA 90001" -157755,Lightning Charging Cable,1,14.95,02/22/19 15:17,"616 Lakeview St, New York City, NY 10001" -157756,Bose SoundSport Headphones,1,99.99,02/23/19 11:59,"432 9th St, Los Angeles, CA 90001" -157757,Wired Headphones,2,11.99,02/25/19 23:05,"957 Main St, Dallas, TX 75001" -157758,Flatscreen TV,1,300,02/15/19 09:18,"411 Sunset St, San Francisco, CA 94016" -157759,27in FHD Monitor,1,149.99,02/02/19 21:51,"426 Sunset St, Portland, OR 97035" -157760,27in FHD Monitor,1,149.99,02/02/19 14:12,"143 Willow St, New York City, NY 10001" -157761,USB-C Charging Cable,1,11.95,02/22/19 11:21,"406 North St, Boston, MA 02215" -157762,AAA Batteries (4-pack),1,2.99,02/01/19 11:39,"189 Lincoln St, Boston, MA 02215" -157763,Wired Headphones,1,11.99,02/27/19 17:41,"693 Ridge St, New York City, NY 10001" -157764,20in Monitor,1,109.99,02/05/19 01:49,"332 Elm St, San Francisco, CA 94016" -157765,Apple Airpods Headphones,1,150,02/12/19 18:59,"421 Sunset St, Boston, MA 02215" -157766,USB-C Charging Cable,1,11.95,02/07/19 17:12,"726 Maple St, Austin, TX 73301" -157767,Wired Headphones,1,11.99,02/08/19 12:56,"401 13th St, Boston, MA 02215" -157768,AA Batteries (4-pack),1,3.84,02/03/19 14:19,"419 Cedar St, San Francisco, CA 94016" -157769,AAA Batteries (4-pack),2,2.99,02/10/19 09:38,"518 9th St, Seattle, WA 98101" -157770,AAA Batteries (4-pack),4,2.99,02/02/19 17:01,"929 Dogwood St, Seattle, WA 98101" -157771,27in 4K Gaming Monitor,1,389.99,02/06/19 17:46,"790 Jefferson St, New York City, NY 10001" -157772,AA Batteries (4-pack),1,3.84,02/22/19 13:18,"805 11th St, New York City, NY 10001" -157773,Wired Headphones,1,11.99,02/16/19 19:34,"772 Maple St, San Francisco, CA 94016" -157774,Wired Headphones,1,11.99,02/12/19 15:17,"649 Meadow St, San Francisco, CA 94016" -157775,AA Batteries (4-pack),2,3.84,02/14/19 15:18,"634 River St, San Francisco, CA 94016" -157776,AA Batteries (4-pack),2,3.84,02/25/19 21:11,"155 Main St, Seattle, WA 98101" -157777,34in Ultrawide Monitor,1,379.99,02/17/19 16:15,"704 Hickory St, San Francisco, CA 94016" -157778,Wired Headphones,1,11.99,02/15/19 07:29,"856 Chestnut St, Boston, MA 02215" -157779,Bose SoundSport Headphones,1,99.99,02/17/19 18:09,"18 9th St, Dallas, TX 75001" -157780,Google Phone,1,600,02/14/19 09:12,"161 12th St, San Francisco, CA 94016" -157781,Bose SoundSport Headphones,1,99.99,02/03/19 20:36,"620 Ridge St, San Francisco, CA 94016" -157782,Apple Airpods Headphones,1,150,02/19/19 12:55,"248 11th St, San Francisco, CA 94016" -157783,USB-C Charging Cable,1,11.95,02/04/19 17:09,"475 Elm St, Boston, MA 02215" -157784,Apple Airpods Headphones,1,150,02/17/19 08:03,"575 Park St, Seattle, WA 98101" -157785,AA Batteries (4-pack),1,3.84,02/07/19 10:35,"358 6th St, Los Angeles, CA 90001" -157786,Apple Airpods Headphones,1,150,02/13/19 00:30,"65 14th St, Boston, MA 02215" -157787,Lightning Charging Cable,1,14.95,02/22/19 15:58,"227 Sunset St, Portland, OR 97035" -157788,AA Batteries (4-pack),2,3.84,02/13/19 21:02,"261 North St, Portland, OR 97035" -157789,iPhone,1,700,02/17/19 20:08,"984 Forest St, San Francisco, CA 94016" -157790,AAA Batteries (4-pack),2,2.99,02/19/19 10:34,"497 Park St, Boston, MA 02215" -157791,Apple Airpods Headphones,1,150,02/07/19 17:38,"75 7th St, Boston, MA 02215" -157792,Vareebadd Phone,1,400,02/09/19 19:31,"291 10th St, Los Angeles, CA 90001" -157793,Wired Headphones,1,11.99,02/13/19 22:49,"718 Center St, Seattle, WA 98101" -157794,Lightning Charging Cable,1,14.95,02/25/19 12:04,"287 Highland St, San Francisco, CA 94016" -157794,ThinkPad Laptop,1,999.99,02/25/19 12:04,"287 Highland St, San Francisco, CA 94016" -157795,Lightning Charging Cable,1,14.95,02/02/19 22:09,"33 8th St, Atlanta, GA 30301" -157796,Lightning Charging Cable,1,14.95,02/27/19 23:00,"308 13th St, San Francisco, CA 94016" -157797,27in FHD Monitor,1,149.99,02/12/19 07:53,"617 North St, San Francisco, CA 94016" -157798,AAA Batteries (4-pack),2,2.99,02/10/19 14:24,"392 Washington St, Los Angeles, CA 90001" -157799,AAA Batteries (4-pack),1,2.99,02/21/19 14:51,"318 Walnut St, Dallas, TX 75001" -157800,iPhone,1,700,02/13/19 01:17,"536 Washington St, Seattle, WA 98101" -157801,AAA Batteries (4-pack),2,2.99,02/12/19 11:37,"656 Sunset St, San Francisco, CA 94016" -157802,Flatscreen TV,1,300,02/12/19 07:48,"546 1st St, Dallas, TX 75001" -157803,Lightning Charging Cable,1,14.95,02/12/19 17:32,"315 Adams St, San Francisco, CA 94016" -157804,USB-C Charging Cable,1,11.95,02/20/19 01:09,"318 Madison St, Boston, MA 02215" -157805,AA Batteries (4-pack),1,3.84,02/03/19 16:04,"566 South St, Boston, MA 02215" -157806,Macbook Pro Laptop,1,1700,02/05/19 06:04,"484 Pine St, Dallas, TX 75001" -157807,AAA Batteries (4-pack),3,2.99,02/06/19 15:19,"602 Sunset St, San Francisco, CA 94016" -157808,Bose SoundSport Headphones,1,99.99,02/16/19 00:45,"701 Hill St, Dallas, TX 75001" -157809,Apple Airpods Headphones,1,150,02/25/19 14:35,"999 Wilson St, New York City, NY 10001" -157810,Bose SoundSport Headphones,1,99.99,02/27/19 04:06,"236 9th St, San Francisco, CA 94016" -157811,USB-C Charging Cable,1,11.95,02/15/19 12:27,"815 4th St, Atlanta, GA 30301" -157812,Lightning Charging Cable,1,14.95,02/23/19 14:50,"822 Center St, San Francisco, CA 94016" -157813,Bose SoundSport Headphones,1,99.99,02/05/19 19:20,"737 Maple St, San Francisco, CA 94016" -157814,AA Batteries (4-pack),2,3.84,02/07/19 15:55,"417 Main St, Los Angeles, CA 90001" -157815,USB-C Charging Cable,1,11.95,02/13/19 14:47,"564 Dogwood St, New York City, NY 10001" -157816,27in FHD Monitor,1,149.99,02/10/19 20:28,"742 Sunset St, Los Angeles, CA 90001" -157817,AAA Batteries (4-pack),1,2.99,02/01/19 23:55,"520 Center St, Austin, TX 73301" -157818,Macbook Pro Laptop,1,1700,02/16/19 13:17,"442 West St, Atlanta, GA 30301" -157819,27in FHD Monitor,1,149.99,02/26/19 08:27,"521 13th St, Seattle, WA 98101" -157820,27in 4K Gaming Monitor,1,389.99,02/21/19 15:10,"503 Meadow St, Los Angeles, CA 90001" -157821,Apple Airpods Headphones,1,150,02/26/19 16:19,"882 2nd St, Atlanta, GA 30301" -157822,20in Monitor,1,109.99,02/12/19 14:04,"215 North St, Boston, MA 02215" -157823,Apple Airpods Headphones,1,150,02/26/19 13:46,"727 Main St, New York City, NY 10001" -157824,AAA Batteries (4-pack),1,2.99,02/10/19 21:56,"381 9th St, Los Angeles, CA 90001" -157825,Wired Headphones,1,11.99,02/13/19 13:33,"481 2nd St, New York City, NY 10001" -157826,AAA Batteries (4-pack),2,2.99,02/01/19 21:11,"455 Dogwood St, Austin, TX 73301" -157827,27in FHD Monitor,1,149.99,02/09/19 23:05,"545 Washington St, New York City, NY 10001" -157827,LG Dryer,1,600.0,02/09/19 23:05,"545 Washington St, New York City, NY 10001" -157828,Google Phone,1,600,02/09/19 19:57,"676 11th St, San Francisco, CA 94016" -157829,Apple Airpods Headphones,1,150,02/27/19 23:57,"251 Lincoln St, San Francisco, CA 94016" -157830,iPhone,1,700,02/12/19 10:32,"770 Johnson St, Los Angeles, CA 90001" -157831,Bose SoundSport Headphones,1,99.99,02/18/19 16:17,"389 Pine St, Portland, OR 97035" -157832,Wired Headphones,1,11.99,02/08/19 19:40,"922 11th St, Seattle, WA 98101" -157833,Wired Headphones,1,11.99,02/01/19 17:12,"786 8th St, Atlanta, GA 30301" -157834,AAA Batteries (4-pack),2,2.99,02/24/19 18:16,"762 Maple St, Boston, MA 02215" -157835,27in 4K Gaming Monitor,1,389.99,02/23/19 21:39,"471 12th St, Los Angeles, CA 90001" -157836,AAA Batteries (4-pack),2,2.99,02/16/19 12:20,"422 Cedar St, New York City, NY 10001" -157837,27in FHD Monitor,1,149.99,02/14/19 20:07,"820 Willow St, New York City, NY 10001" -157838,USB-C Charging Cable,2,11.95,02/03/19 12:32,"15 10th St, San Francisco, CA 94016" -157839,AA Batteries (4-pack),1,3.84,02/01/19 13:35,"143 Sunset St, Boston, MA 02215" -157840,iPhone,1,700,02/17/19 18:31,"858 9th St, San Francisco, CA 94016" -157841,USB-C Charging Cable,1,11.95,02/23/19 18:15,"461 Ridge St, San Francisco, CA 94016" -157842,AA Batteries (4-pack),1,3.84,02/26/19 12:11,"85 Sunset St, San Francisco, CA 94016" -157843,Lightning Charging Cable,1,14.95,02/02/19 18:57,"119 11th St, New York City, NY 10001" -157844,AAA Batteries (4-pack),1,2.99,02/05/19 11:56,"754 4th St, Boston, MA 02215" -157845,iPhone,1,700,02/01/19 06:28,"708 Highland St, Boston, MA 02215" -157845,Lightning Charging Cable,1,14.95,02/01/19 06:28,"708 Highland St, Boston, MA 02215" -157846,Apple Airpods Headphones,1,150,02/19/19 15:46,"140 Spruce St, Atlanta, GA 30301" -157847,Google Phone,1,600,02/25/19 18:56,"42 Highland St, San Francisco, CA 94016" -157848,AAA Batteries (4-pack),1,2.99,02/04/19 22:22,"893 Meadow St, Dallas, TX 75001" -157849,AAA Batteries (4-pack),1,2.99,02/10/19 20:04,"441 Elm St, Los Angeles, CA 90001" -157850,AAA Batteries (4-pack),5,2.99,02/21/19 13:51,"568 4th St, Dallas, TX 75001" -157851,USB-C Charging Cable,1,11.95,02/25/19 20:46,"278 8th St, Atlanta, GA 30301" -157852,Flatscreen TV,1,300,02/17/19 23:38,"988 Sunset St, Dallas, TX 75001" -157853,Lightning Charging Cable,1,14.95,02/03/19 18:32,"349 11th St, Dallas, TX 75001" -157854,AAA Batteries (4-pack),1,2.99,02/24/19 12:27,"7 Chestnut St, Boston, MA 02215" -157855,Apple Airpods Headphones,1,150,02/05/19 00:40,"496 Main St, San Francisco, CA 94016" -157856,Bose SoundSport Headphones,1,99.99,02/04/19 18:08,"210 Center St, Los Angeles, CA 90001" -157857,Wired Headphones,1,11.99,02/19/19 10:41,"611 West St, Portland, OR 97035" -157858,USB-C Charging Cable,2,11.95,02/04/19 22:11,"423 9th St, Dallas, TX 75001" -157859,Wired Headphones,1,11.99,02/11/19 10:46,"713 8th St, Boston, MA 02215" -157860,Apple Airpods Headphones,1,150,02/08/19 12:36,"363 Cherry St, Boston, MA 02215" -157861,27in FHD Monitor,1,149.99,02/11/19 19:29,"151 6th St, Atlanta, GA 30301" -157862,Apple Airpods Headphones,1,150,02/11/19 22:57,"287 Main St, Boston, MA 02215" -157863,Wired Headphones,1,11.99,02/07/19 18:21,"917 River St, Boston, MA 02215" -,,,,, -157864,Lightning Charging Cable,1,14.95,02/13/19 13:24,"348 Jefferson St, Boston, MA 02215" -157865,Apple Airpods Headphones,1,150,02/27/19 18:00,"975 Cedar St, Boston, MA 02215" -157866,USB-C Charging Cable,1,11.95,02/04/19 12:34,"868 6th St, Dallas, TX 75001" -157867,AA Batteries (4-pack),4,3.84,02/24/19 15:00,"601 North St, San Francisco, CA 94016" -157868,Flatscreen TV,1,300,02/05/19 20:42,"464 Church St, Portland, OR 97035" -157869,Wired Headphones,1,11.99,02/01/19 17:20,"474 2nd St, Atlanta, GA 30301" -157870,AA Batteries (4-pack),1,3.84,02/24/19 22:29,"117 Adams St, New York City, NY 10001" -157871,USB-C Charging Cable,2,11.95,02/20/19 17:12,"780 Lake St, New York City, NY 10001" -157872,iPhone,1,700,02/12/19 13:04,"814 Pine St, Seattle, WA 98101" -157873,USB-C Charging Cable,1,11.95,02/12/19 20:38,"7 Pine St, San Francisco, CA 94016" -157874,USB-C Charging Cable,1,11.95,02/28/19 14:14,"968 Dogwood St, New York City, NY 10001" -157875,Apple Airpods Headphones,1,150,02/10/19 15:10,"174 Washington St, Austin, TX 73301" -157876,Apple Airpods Headphones,1,150,02/20/19 14:46,"253 Jackson St, San Francisco, CA 94016" -157877,27in FHD Monitor,1,149.99,02/17/19 17:52,"196 Adams St, Portland, ME 04101" -157878,Lightning Charging Cable,1,14.95,02/16/19 15:10,"762 Pine St, Austin, TX 73301" -157879,Wired Headphones,1,11.99,02/01/19 23:58,"80 Pine St, Dallas, TX 75001" -157880,Bose SoundSport Headphones,1,99.99,02/05/19 15:58,"405 Elm St, Atlanta, GA 30301" -157881,Bose SoundSport Headphones,1,99.99,02/01/19 13:56,"339 Adams St, Portland, OR 97035" -157882,Wired Headphones,1,11.99,02/26/19 22:41,"896 Dogwood St, Seattle, WA 98101" -157883,Apple Airpods Headphones,1,150,02/06/19 00:02,"229 Madison St, Dallas, TX 75001" -157884,27in 4K Gaming Monitor,1,389.99,02/14/19 15:47,"274 Cherry St, Boston, MA 02215" -157885,Wired Headphones,1,11.99,02/16/19 09:18,"982 Johnson St, San Francisco, CA 94016" -157886,USB-C Charging Cable,1,11.95,02/26/19 07:20,"713 13th St, San Francisco, CA 94016" -157887,AA Batteries (4-pack),1,3.84,02/11/19 11:53,"245 4th St, Atlanta, GA 30301" -157888,20in Monitor,1,109.99,02/17/19 13:19,"506 Main St, Atlanta, GA 30301" -157889,Flatscreen TV,1,300,02/20/19 17:31,"433 Adams St, San Francisco, CA 94016" -157890,USB-C Charging Cable,1,11.95,02/28/19 11:58,"923 Walnut St, Los Angeles, CA 90001" -157891,Apple Airpods Headphones,1,150,02/04/19 10:16,"364 7th St, San Francisco, CA 94016" -157892,USB-C Charging Cable,1,11.95,02/24/19 10:44,"599 West St, San Francisco, CA 94016" -157893,27in FHD Monitor,1,149.99,02/13/19 20:40,"470 12th St, Boston, MA 02215" -157894,Flatscreen TV,1,300,02/02/19 15:21,"380 Hickory St, New York City, NY 10001" -157895,Google Phone,1,600,02/20/19 12:07,"689 Willow St, Atlanta, GA 30301" -157896,Wired Headphones,2,11.99,02/18/19 14:47,"583 14th St, San Francisco, CA 94016" -157897,Wired Headphones,1,11.99,02/15/19 13:52,"590 Elm St, Portland, OR 97035" -157898,ThinkPad Laptop,1,999.99,02/26/19 22:44,"724 8th St, Los Angeles, CA 90001" -157899,Flatscreen TV,1,300,03/01/19 01:41,"506 North St, San Francisco, CA 94016" -157900,Apple Airpods Headphones,1,150,02/15/19 16:32,"563 Walnut St, Boston, MA 02215" -157901,AA Batteries (4-pack),1,3.84,02/14/19 18:24,"51 12th St, Dallas, TX 75001" -157902,Bose SoundSport Headphones,1,99.99,02/19/19 06:50,"919 Jackson St, New York City, NY 10001" -157903,Wired Headphones,1,11.99,02/09/19 06:26,"323 West St, Portland, OR 97035" -157904,ThinkPad Laptop,1,999.99,02/08/19 22:11,"391 4th St, Dallas, TX 75001" -157905,AAA Batteries (4-pack),1,2.99,02/28/19 17:28,"850 5th St, San Francisco, CA 94016" -157906,27in FHD Monitor,1,149.99,02/25/19 13:25,"888 Jefferson St, Austin, TX 73301" -157907,Lightning Charging Cable,1,14.95,02/24/19 12:52,"172 Jackson St, Atlanta, GA 30301" -157908,Lightning Charging Cable,1,14.95,02/06/19 19:22,"508 Forest St, Los Angeles, CA 90001" -157909,27in FHD Monitor,1,149.99,02/12/19 12:40,"684 Dogwood St, San Francisco, CA 94016" -157909,20in Monitor,1,109.99,02/12/19 12:40,"684 Dogwood St, San Francisco, CA 94016" -157910,AA Batteries (4-pack),1,3.84,02/24/19 11:57,"983 South St, Portland, ME 04101" -157911,Apple Airpods Headphones,1,150,02/17/19 09:06,"175 Pine St, Boston, MA 02215" -157912,Flatscreen TV,1,300,02/17/19 21:15,"522 Pine St, Los Angeles, CA 90001" -157913,34in Ultrawide Monitor,1,379.99,02/12/19 22:24,"229 Church St, Los Angeles, CA 90001" -157914,USB-C Charging Cable,1,11.95,02/10/19 21:00,"852 Forest St, Boston, MA 02215" -157915,Apple Airpods Headphones,1,150,02/27/19 19:42,"463 River St, Dallas, TX 75001" -157916,Bose SoundSport Headphones,1,99.99,02/21/19 18:13,"757 4th St, Los Angeles, CA 90001" -157917,iPhone,1,700,02/04/19 23:46,"637 Chestnut St, San Francisco, CA 94016" -157918,34in Ultrawide Monitor,1,379.99,02/25/19 09:35,"644 5th St, San Francisco, CA 94016" -157919,Apple Airpods Headphones,1,150,02/28/19 18:28,"315 Hickory St, San Francisco, CA 94016" -157920,USB-C Charging Cable,1,11.95,02/18/19 13:09,"843 Highland St, San Francisco, CA 94016" -157921,Apple Airpods Headphones,1,150,02/04/19 07:13,"330 West St, Boston, MA 02215" -157922,iPhone,1,700,02/17/19 19:01,"72 Adams St, Dallas, TX 75001" -157923,Google Phone,1,600,02/24/19 07:20,"445 8th St, Boston, MA 02215" -157924,AAA Batteries (4-pack),1,2.99,02/15/19 17:54,"587 11th St, Los Angeles, CA 90001" -157925,Google Phone,1,600,02/11/19 05:25,"63 Highland St, Los Angeles, CA 90001" -157926,Vareebadd Phone,1,400,02/06/19 20:35,"491 Cherry St, Los Angeles, CA 90001" -157927,Bose SoundSport Headphones,1,99.99,02/03/19 09:47,"25 North St, San Francisco, CA 94016" -157928,AA Batteries (4-pack),1,3.84,02/12/19 20:05,"137 6th St, Los Angeles, CA 90001" -157929,Flatscreen TV,1,300,02/26/19 13:35,"256 Center St, Seattle, WA 98101" -157930,USB-C Charging Cable,1,11.95,02/08/19 17:42,"672 Chestnut St, Atlanta, GA 30301" -157931,Wired Headphones,1,11.99,02/09/19 10:19,"372 Adams St, Austin, TX 73301" -157932,AA Batteries (4-pack),1,3.84,02/03/19 18:44,"128 Meadow St, Atlanta, GA 30301" -157933,USB-C Charging Cable,1,11.95,02/20/19 15:41,"645 Pine St, New York City, NY 10001" -157934,34in Ultrawide Monitor,1,379.99,02/26/19 19:04,"292 Park St, Dallas, TX 75001" -157935,Wired Headphones,1,11.99,02/13/19 14:32,"149 Cedar St, Austin, TX 73301" -157936,AAA Batteries (4-pack),1,2.99,02/24/19 15:04,"749 12th St, San Francisco, CA 94016" -157937,USB-C Charging Cable,1,11.95,02/04/19 18:35,"737 Cherry St, San Francisco, CA 94016" -157938,27in FHD Monitor,1,149.99,02/06/19 10:29,"102 Sunset St, Dallas, TX 75001" -157939,iPhone,1,700,02/23/19 20:39,"617 Ridge St, Austin, TX 73301" -157940,Wired Headphones,1,11.99,02/18/19 11:46,"27 South St, San Francisco, CA 94016" -157941,AAA Batteries (4-pack),2,2.99,02/01/19 19:04,"372 Church St, Portland, OR 97035" -157942,Lightning Charging Cable,2,14.95,02/27/19 08:33,"977 Johnson St, San Francisco, CA 94016" -157943,27in FHD Monitor,1,149.99,02/18/19 18:53,"731 Washington St, Seattle, WA 98101" -157944,USB-C Charging Cable,1,11.95,02/17/19 08:36,"821 River St, New York City, NY 10001" -157945,Lightning Charging Cable,1,14.95,02/23/19 12:11,"630 4th St, Austin, TX 73301" -157946,Lightning Charging Cable,1,14.95,02/23/19 12:09,"519 Jefferson St, Boston, MA 02215" -157947,20in Monitor,1,109.99,02/19/19 15:57,"960 10th St, Los Angeles, CA 90001" -157948,Lightning Charging Cable,1,14.95,02/12/19 14:44,"793 Lakeview St, San Francisco, CA 94016" -157949,USB-C Charging Cable,1,11.95,02/27/19 13:52,"938 South St, Atlanta, GA 30301" -157950,Apple Airpods Headphones,1,150,02/27/19 21:30,"777 Elm St, Boston, MA 02215" -157951,27in 4K Gaming Monitor,1,389.99,02/21/19 14:50,"165 Ridge St, Los Angeles, CA 90001" -157952,AAA Batteries (4-pack),2,2.99,02/21/19 10:48,"785 Ridge St, Dallas, TX 75001" -157953,34in Ultrawide Monitor,1,379.99,02/22/19 08:11,"867 1st St, San Francisco, CA 94016" -157954,Flatscreen TV,1,300,02/28/19 21:49,"42 Willow St, New York City, NY 10001" -157955,USB-C Charging Cable,1,11.95,02/06/19 23:05,"192 10th St, San Francisco, CA 94016" -157956,Wired Headphones,1,11.99,02/02/19 22:01,"429 Hickory St, New York City, NY 10001" -157957,ThinkPad Laptop,1,999.99,02/07/19 08:37,"61 5th St, Boston, MA 02215" -157958,AAA Batteries (4-pack),1,2.99,02/16/19 21:39,"426 Adams St, Boston, MA 02215" -157959,AAA Batteries (4-pack),2,2.99,02/22/19 15:06,"184 8th St, Boston, MA 02215" -157960,Lightning Charging Cable,1,14.95,02/22/19 22:49,"125 Hill St, San Francisco, CA 94016" -157960,Google Phone,1,600,02/22/19 22:49,"125 Hill St, San Francisco, CA 94016" -157961,AAA Batteries (4-pack),1,2.99,02/14/19 08:30,"848 Park St, Seattle, WA 98101" -157962,Apple Airpods Headphones,1,150,02/19/19 09:32,"590 Wilson St, Boston, MA 02215" -157963,27in 4K Gaming Monitor,1,389.99,02/18/19 19:26,"591 Hickory St, Austin, TX 73301" -157964,Lightning Charging Cable,1,14.95,02/27/19 17:09,"627 11th St, Boston, MA 02215" -157965,iPhone,1,700,02/15/19 21:58,"739 10th St, Boston, MA 02215" -157966,AA Batteries (4-pack),1,3.84,02/24/19 14:17,"935 12th St, Boston, MA 02215" -157967,USB-C Charging Cable,1,11.95,02/17/19 13:54,"444 Ridge St, Atlanta, GA 30301" -157968,AAA Batteries (4-pack),3,2.99,02/07/19 15:41,"625 Ridge St, Seattle, WA 98101" -157969,Bose SoundSport Headphones,1,99.99,02/08/19 18:07,"644 Wilson St, San Francisco, CA 94016" -157970,Bose SoundSport Headphones,1,99.99,02/26/19 21:27,"504 4th St, Boston, MA 02215" -157971,iPhone,1,700,02/10/19 17:11,"349 Hill St, New York City, NY 10001" -157972,Lightning Charging Cable,1,14.95,02/06/19 10:08,"234 North St, San Francisco, CA 94016" -157973,Lightning Charging Cable,1,14.95,02/16/19 18:37,"459 Park St, Los Angeles, CA 90001" -157974,Bose SoundSport Headphones,1,99.99,02/06/19 10:09,"317 Willow St, Dallas, TX 75001" -157975,ThinkPad Laptop,1,999.99,02/16/19 05:29,"61 Lakeview St, Los Angeles, CA 90001" -157976,Lightning Charging Cable,1,14.95,02/04/19 10:20,"416 North St, Boston, MA 02215" -157977,AA Batteries (4-pack),2,3.84,02/02/19 23:48,"293 Jefferson St, Seattle, WA 98101" -157978,USB-C Charging Cable,1,11.95,02/04/19 22:52,"80 11th St, Los Angeles, CA 90001" -157979,Wired Headphones,1,11.99,02/09/19 17:58,"393 Sunset St, San Francisco, CA 94016" -157980,Apple Airpods Headphones,1,150,02/11/19 18:38,"916 North St, Dallas, TX 75001" -157981,Wired Headphones,1,11.99,02/05/19 14:29,"661 Maple St, Boston, MA 02215" -157982,Macbook Pro Laptop,1,1700,02/24/19 18:09,"123 Lakeview St, San Francisco, CA 94016" -157983,20in Monitor,1,109.99,02/27/19 08:22,"358 Highland St, Dallas, TX 75001" -157984,USB-C Charging Cable,1,11.95,02/03/19 00:33,"295 10th St, Dallas, TX 75001" -157985,USB-C Charging Cable,1,11.95,02/13/19 13:21,"950 10th St, San Francisco, CA 94016" -157986,USB-C Charging Cable,1,11.95,02/10/19 11:10,"226 Sunset St, Boston, MA 02215" -157987,Lightning Charging Cable,1,14.95,02/22/19 18:57,"839 Center St, Boston, MA 02215" -157988,Lightning Charging Cable,2,14.95,02/14/19 11:55,"421 Church St, Los Angeles, CA 90001" -157989,Apple Airpods Headphones,1,150,02/26/19 00:27,"165 Washington St, Dallas, TX 75001" -157990,Lightning Charging Cable,1,14.95,02/28/19 17:48,"412 Maple St, Boston, MA 02215" -157991,Apple Airpods Headphones,1,150,02/28/19 09:40,"712 Hickory St, Los Angeles, CA 90001" -157992,USB-C Charging Cable,1,11.95,02/08/19 00:22,"130 Cedar St, Atlanta, GA 30301" -157993,AA Batteries (4-pack),1,3.84,02/16/19 11:07,"300 Jefferson St, San Francisco, CA 94016" -157994,Flatscreen TV,1,300,02/11/19 20:35,"173 Adams St, San Francisco, CA 94016" -157995,AAA Batteries (4-pack),1,2.99,02/19/19 12:17,"682 North St, Dallas, TX 75001" -157996,ThinkPad Laptop,1,999.99,02/13/19 19:15,"69 Sunset St, Los Angeles, CA 90001" -157997,iPhone,1,700,02/09/19 20:12,"432 Cherry St, Portland, ME 04101" -157998,iPhone,1,700,02/04/19 17:34,"569 Maple St, San Francisco, CA 94016" -157999,20in Monitor,1,109.99,02/14/19 20:59,"690 Johnson St, Los Angeles, CA 90001" -158000,Lightning Charging Cable,1,14.95,02/13/19 21:58,"301 Hickory St, San Francisco, CA 94016" -158001,Bose SoundSport Headphones,1,99.99,02/09/19 18:02,"396 Dogwood St, San Francisco, CA 94016" -158002,AAA Batteries (4-pack),1,2.99,02/16/19 22:15,"860 Maple St, New York City, NY 10001" -158003,AAA Batteries (4-pack),3,2.99,02/12/19 07:06,"464 Lake St, Austin, TX 73301" -158004,Vareebadd Phone,1,400,02/04/19 17:47,"62 2nd St, Los Angeles, CA 90001" -158005,Bose SoundSport Headphones,1,99.99,02/28/19 00:12,"64 2nd St, San Francisco, CA 94016" -158006,Macbook Pro Laptop,1,1700,02/06/19 13:44,"326 Spruce St, Seattle, WA 98101" -158007,Wired Headphones,1,11.99,02/28/19 20:06,"696 6th St, Los Angeles, CA 90001" -158008,34in Ultrawide Monitor,1,379.99,02/05/19 11:33,"501 Sunset St, New York City, NY 10001" -158009,Wired Headphones,1,11.99,02/09/19 00:04,"424 Willow St, Atlanta, GA 30301" -158010,AAA Batteries (4-pack),1,2.99,02/01/19 13:46,"977 2nd St, Los Angeles, CA 90001" -158011,Bose SoundSport Headphones,1,99.99,02/13/19 08:56,"717 Chestnut St, Atlanta, GA 30301" -158012,USB-C Charging Cable,1,11.95,02/01/19 19:30,"591 Wilson St, Atlanta, GA 30301" -158013,AA Batteries (4-pack),1,3.84,02/01/19 14:06,"10 Spruce St, Los Angeles, CA 90001" -158014,USB-C Charging Cable,1,11.95,02/23/19 15:14,"223 Park St, San Francisco, CA 94016" -158015,AAA Batteries (4-pack),2,2.99,02/22/19 18:56,"148 Madison St, Los Angeles, CA 90001" -158016,USB-C Charging Cable,1,11.95,02/09/19 18:00,"124 6th St, San Francisco, CA 94016" -158017,USB-C Charging Cable,1,11.95,02/01/19 12:10,"382 Spruce St, New York City, NY 10001" -158018,Apple Airpods Headphones,1,150,02/12/19 18:11,"237 Elm St, San Francisco, CA 94016" -158019,AA Batteries (4-pack),2,3.84,02/10/19 17:53,"842 Madison St, San Francisco, CA 94016" -158020,Wired Headphones,1,11.99,02/16/19 09:01,"668 Maple St, Seattle, WA 98101" -158021,AA Batteries (4-pack),1,3.84,02/20/19 11:25,"862 Main St, Boston, MA 02215" -158022,Lightning Charging Cable,1,14.95,02/09/19 00:20,"4 North St, Boston, MA 02215" -158022,Wired Headphones,2,11.99,02/09/19 00:20,"4 North St, Boston, MA 02215" -158023,ThinkPad Laptop,1,999.99,02/09/19 07:43,"604 West St, Los Angeles, CA 90001" -158024,AA Batteries (4-pack),1,3.84,02/05/19 07:26,"860 10th St, Los Angeles, CA 90001" -158025,Google Phone,1,600,02/04/19 01:22,"304 West St, Atlanta, GA 30301" -158026,AAA Batteries (4-pack),2,2.99,02/18/19 16:45,"201 Walnut St, Seattle, WA 98101" -158027,Lightning Charging Cable,1,14.95,02/06/19 21:08,"547 Main St, San Francisco, CA 94016" -158028,Apple Airpods Headphones,1,150,02/06/19 21:19,"636 Main St, San Francisco, CA 94016" -158029,USB-C Charging Cable,1,11.95,02/08/19 19:39,"896 Hill St, Austin, TX 73301" -158030,27in FHD Monitor,1,149.99,02/27/19 08:43,"873 Jefferson St, Austin, TX 73301" -158031,27in FHD Monitor,1,149.99,02/15/19 10:38,"326 13th St, San Francisco, CA 94016" -158032,Apple Airpods Headphones,1,150,02/23/19 22:14,"792 Jackson St, San Francisco, CA 94016" -158033,USB-C Charging Cable,1,11.95,02/12/19 15:58,"421 Lakeview St, Los Angeles, CA 90001" -158034,AAA Batteries (4-pack),1,2.99,02/06/19 19:31,"790 Wilson St, San Francisco, CA 94016" -158035,Lightning Charging Cable,1,14.95,02/14/19 20:05,"948 Highland St, Los Angeles, CA 90001" -158036,Lightning Charging Cable,2,14.95,02/22/19 14:12,"35 Walnut St, Seattle, WA 98101" -158037,Lightning Charging Cable,1,14.95,02/24/19 17:14,"262 River St, Los Angeles, CA 90001" -158038,USB-C Charging Cable,1,11.95,02/20/19 18:05,"697 South St, San Francisco, CA 94016" -158039,AAA Batteries (4-pack),1,2.99,02/10/19 13:43,"943 Willow St, San Francisco, CA 94016" -158040,Lightning Charging Cable,1,14.95,02/10/19 19:41,"426 5th St, Seattle, WA 98101" -158041,Lightning Charging Cable,1,14.95,02/04/19 11:03,"421 West St, Los Angeles, CA 90001" -158042,Lightning Charging Cable,1,14.95,02/23/19 16:50,"206 Sunset St, Portland, OR 97035" -158043,Bose SoundSport Headphones,1,99.99,02/04/19 12:50,"591 North St, San Francisco, CA 94016" -158044,Bose SoundSport Headphones,1,99.99,02/25/19 21:06,"780 Meadow St, Los Angeles, CA 90001" -158045,USB-C Charging Cable,1,11.95,02/04/19 01:40,"750 Wilson St, Atlanta, GA 30301" -158046,Vareebadd Phone,1,400,02/13/19 15:34,"27 Walnut St, Los Angeles, CA 90001" -158047,Apple Airpods Headphones,1,150,02/14/19 19:51,"969 Wilson St, Seattle, WA 98101" -158048,AAA Batteries (4-pack),1,2.99,02/05/19 18:04,"988 12th St, New York City, NY 10001" -158049,Google Phone,1,600,02/16/19 08:07,"392 13th St, San Francisco, CA 94016" -158050,34in Ultrawide Monitor,1,379.99,02/15/19 17:34,"328 Main St, San Francisco, CA 94016" -158051,Lightning Charging Cable,1,14.95,02/01/19 14:12,"735 7th St, San Francisco, CA 94016" -158052,Wired Headphones,1,11.99,02/23/19 13:06,"239 Johnson St, Seattle, WA 98101" -158053,Apple Airpods Headphones,1,150,02/03/19 11:15,"399 5th St, San Francisco, CA 94016" -158054,34in Ultrawide Monitor,1,379.99,02/10/19 20:39,"176 12th St, Boston, MA 02215" -158055,AAA Batteries (4-pack),1,2.99,02/15/19 16:53,"921 6th St, Austin, TX 73301" -158056,27in 4K Gaming Monitor,1,389.99,02/06/19 14:32,"473 Johnson St, Atlanta, GA 30301" -158057,Lightning Charging Cable,2,14.95,02/09/19 01:18,"637 8th St, Atlanta, GA 30301" -158058,Lightning Charging Cable,1,14.95,02/24/19 07:24,"601 Jefferson St, New York City, NY 10001" -158059,USB-C Charging Cable,1,11.95,02/03/19 13:25,"283 Walnut St, New York City, NY 10001" -158060,34in Ultrawide Monitor,1,379.99,02/10/19 13:25,"118 1st St, San Francisco, CA 94016" -158061,27in 4K Gaming Monitor,1,389.99,02/28/19 23:55,"554 North St, Boston, MA 02215" -158062,Lightning Charging Cable,1,14.95,02/10/19 12:45,"113 Meadow St, Boston, MA 02215" -158063,AA Batteries (4-pack),2,3.84,02/18/19 19:59,"766 Center St, Austin, TX 73301" -158064,Wired Headphones,1,11.99,02/09/19 17:00,"91 Sunset St, Atlanta, GA 30301" -158065,27in FHD Monitor,1,149.99,02/04/19 10:52,"812 Hickory St, San Francisco, CA 94016" -158066,ThinkPad Laptop,1,999.99,02/17/19 09:44,"349 Maple St, Boston, MA 02215" -158067,Vareebadd Phone,1,400,02/02/19 20:18,"202 8th St, Boston, MA 02215" -158068,Lightning Charging Cable,1,14.95,02/09/19 16:46,"482 Dogwood St, San Francisco, CA 94016" -158069,Wired Headphones,1,11.99,02/14/19 21:06,"665 Hill St, New York City, NY 10001" -158070,AA Batteries (4-pack),2,3.84,02/27/19 19:56,"58 Adams St, New York City, NY 10001" -158071,20in Monitor,1,109.99,02/10/19 11:45,"729 Lake St, New York City, NY 10001" -158072,USB-C Charging Cable,1,11.95,02/24/19 13:36,"341 Dogwood St, New York City, NY 10001" -158073,20in Monitor,1,109.99,02/28/19 21:31,"815 Center St, Boston, MA 02215" -158074,AA Batteries (4-pack),1,3.84,02/23/19 02:34,"315 Washington St, San Francisco, CA 94016" -158075,27in FHD Monitor,1,149.99,02/26/19 08:10,"302 Washington St, San Francisco, CA 94016" -158076,27in FHD Monitor,1,149.99,02/04/19 12:37,"418 Ridge St, Atlanta, GA 30301" -158077,Bose SoundSport Headphones,1,99.99,02/13/19 14:48,"760 Washington St, Austin, TX 73301" -158078,AA Batteries (4-pack),1,3.84,02/20/19 18:05,"422 Chestnut St, Los Angeles, CA 90001" -158079,Wired Headphones,1,11.99,02/27/19 19:41,"973 Jefferson St, Boston, MA 02215" -158080,Lightning Charging Cable,2,14.95,02/18/19 10:09,"35 Hickory St, Austin, TX 73301" -158081,Lightning Charging Cable,1,14.95,02/13/19 16:52,"375 Madison St, New York City, NY 10001" -158082,AA Batteries (4-pack),1,3.84,02/03/19 16:42,"733 7th St, Boston, MA 02215" -158083,Wired Headphones,1,11.99,02/16/19 13:55,"386 North St, Seattle, WA 98101" -158084,Wired Headphones,1,11.99,02/12/19 11:36,"364 13th St, Boston, MA 02215" -158085,Macbook Pro Laptop,1,1700,02/05/19 16:50,"773 Chestnut St, Los Angeles, CA 90001" -158086,AAA Batteries (4-pack),1,2.99,02/12/19 13:59,"796 12th St, Atlanta, GA 30301" -158086,Wired Headphones,1,11.99,02/12/19 13:59,"796 12th St, Atlanta, GA 30301" -158087,AA Batteries (4-pack),1,3.84,02/22/19 16:32,"735 13th St, Los Angeles, CA 90001" -158088,AA Batteries (4-pack),2,3.84,02/22/19 21:08,"204 2nd St, San Francisco, CA 94016" -158089,Wired Headphones,1,11.99,02/18/19 18:15,"889 9th St, Boston, MA 02215" -158090,Flatscreen TV,1,300,02/16/19 01:59,"492 Jefferson St, Boston, MA 02215" -158091,Lightning Charging Cable,1,14.95,02/27/19 22:41,"479 11th St, San Francisco, CA 94016" -158092,Wired Headphones,2,11.99,02/05/19 11:31,"843 Madison St, Los Angeles, CA 90001" -158093,34in Ultrawide Monitor,1,379.99,02/13/19 19:20,"612 Church St, Dallas, TX 75001" -158094,Lightning Charging Cable,1,14.95,02/26/19 22:11,"490 River St, New York City, NY 10001" -158095,iPhone,1,700,02/08/19 23:53,"142 Hickory St, Dallas, TX 75001" -158096,Lightning Charging Cable,1,14.95,02/28/19 09:51,"493 5th St, Austin, TX 73301" -158097,Vareebadd Phone,1,400,02/21/19 12:13,"554 8th St, Atlanta, GA 30301" -158098,Macbook Pro Laptop,1,1700,02/17/19 14:50,"592 South St, Seattle, WA 98101" -158099,Google Phone,1,600,02/11/19 16:46,"450 Center St, New York City, NY 10001" -158100,Apple Airpods Headphones,1,150,02/09/19 10:14,"704 Main St, Los Angeles, CA 90001" -158101,AA Batteries (4-pack),1,3.84,02/28/19 21:27,"334 South St, Boston, MA 02215" -158102,20in Monitor,1,109.99,02/07/19 23:37,"338 7th St, New York City, NY 10001" -158102,AA Batteries (4-pack),1,3.84,02/07/19 23:37,"338 7th St, New York City, NY 10001" -158103,Lightning Charging Cable,2,14.95,02/22/19 00:26,"235 5th St, Portland, OR 97035" -158104,27in 4K Gaming Monitor,1,389.99,02/21/19 22:08,"239 Forest St, San Francisco, CA 94016" -158105,Bose SoundSport Headphones,1,99.99,02/07/19 13:31,"304 Willow St, Boston, MA 02215" -158106,USB-C Charging Cable,1,11.95,02/12/19 18:19,"243 Willow St, Austin, TX 73301" -158107,Google Phone,1,600,02/07/19 18:12,"336 4th St, Los Angeles, CA 90001" -158107,USB-C Charging Cable,1,11.95,02/07/19 18:12,"336 4th St, Los Angeles, CA 90001" -158107,Bose SoundSport Headphones,1,99.99,02/07/19 18:12,"336 4th St, Los Angeles, CA 90001" -158108,27in 4K Gaming Monitor,1,389.99,02/03/19 19:07,"636 2nd St, San Francisco, CA 94016" -158109,27in FHD Monitor,1,149.99,02/08/19 23:19,"995 Lake St, Dallas, TX 75001" -158110,Lightning Charging Cable,1,14.95,02/22/19 01:51,"702 Cherry St, San Francisco, CA 94016" -158111,ThinkPad Laptop,1,999.99,02/14/19 08:01,"756 10th St, San Francisco, CA 94016" -158112,Bose SoundSport Headphones,1,99.99,02/02/19 17:46,"273 Pine St, New York City, NY 10001" -158113,Lightning Charging Cable,1,14.95,02/24/19 18:32,"495 Dogwood St, San Francisco, CA 94016" -158114,AA Batteries (4-pack),1,3.84,02/11/19 13:19,"256 Ridge St, Boston, MA 02215" -158115,27in FHD Monitor,1,149.99,02/03/19 18:17,"324 Washington St, Portland, OR 97035" -158116,34in Ultrawide Monitor,1,379.99,02/13/19 17:07,"496 Cedar St, Dallas, TX 75001" -158117,Wired Headphones,1,11.99,02/04/19 11:16,"627 8th St, Atlanta, GA 30301" -158118,Bose SoundSport Headphones,1,99.99,02/15/19 10:30,"42 Walnut St, San Francisco, CA 94016" -158119,Wired Headphones,1,11.99,02/20/19 10:58,"128 4th St, San Francisco, CA 94016" -158120,34in Ultrawide Monitor,1,379.99,02/20/19 23:29,"422 2nd St, San Francisco, CA 94016" -158121,Wired Headphones,1,11.99,02/06/19 06:37,"623 Lakeview St, Los Angeles, CA 90001" -158122,27in 4K Gaming Monitor,1,389.99,02/25/19 11:01,"2 8th St, San Francisco, CA 94016" -158123,AAA Batteries (4-pack),3,2.99,02/23/19 12:10,"450 Spruce St, New York City, NY 10001" -158124,USB-C Charging Cable,1,11.95,02/08/19 17:32,"639 2nd St, New York City, NY 10001" -158125,27in FHD Monitor,1,149.99,02/02/19 11:24,"308 Pine St, New York City, NY 10001" -158126,USB-C Charging Cable,1,11.95,02/28/19 11:06,"332 Lakeview St, Dallas, TX 75001" -158127,USB-C Charging Cable,1,11.95,02/01/19 15:37,"290 Washington St, Atlanta, GA 30301" -158128,AAA Batteries (4-pack),1,2.99,02/15/19 10:16,"590 Lakeview St, Seattle, WA 98101" -158129,Flatscreen TV,1,300,02/12/19 06:12,"730 Chestnut St, Boston, MA 02215" -158130,27in 4K Gaming Monitor,1,389.99,02/19/19 18:46,"110 Main St, Portland, OR 97035" -158131,ThinkPad Laptop,1,999.99,02/17/19 17:01,"199 13th St, Dallas, TX 75001" -158132,Macbook Pro Laptop,1,1700,02/03/19 19:04,"729 Center St, New York City, NY 10001" -158133,27in 4K Gaming Monitor,1,389.99,02/10/19 23:24,"592 Jackson St, San Francisco, CA 94016" -158134,USB-C Charging Cable,1,11.95,02/10/19 15:14,"913 Sunset St, Austin, TX 73301" -158135,27in FHD Monitor,1,149.99,02/17/19 15:19,"263 Park St, New York City, NY 10001" -158136,USB-C Charging Cable,1,11.95,02/18/19 16:16,"789 Meadow St, Seattle, WA 98101" -158137,Wired Headphones,1,11.99,02/18/19 12:15,"202 Washington St, San Francisco, CA 94016" -158138,AA Batteries (4-pack),1,3.84,02/04/19 12:36,"922 Lakeview St, Atlanta, GA 30301" -158139,27in FHD Monitor,1,149.99,02/08/19 14:52,"613 Lakeview St, Los Angeles, CA 90001" -158140,USB-C Charging Cable,1,11.95,02/20/19 14:55,"57 Lincoln St, Dallas, TX 75001" -158141,Apple Airpods Headphones,1,150,02/17/19 07:38,"75 6th St, Portland, OR 97035" -158142,iPhone,1,700,02/03/19 09:51,"179 Hickory St, San Francisco, CA 94016" -158142,Apple Airpods Headphones,1,150,02/03/19 09:51,"179 Hickory St, San Francisco, CA 94016" -158143,20in Monitor,1,109.99,02/06/19 13:51,"426 Wilson St, Dallas, TX 75001" -158144,Bose SoundSport Headphones,1,99.99,02/07/19 10:35,"203 8th St, Los Angeles, CA 90001" -158145,Bose SoundSport Headphones,1,99.99,02/03/19 15:41,"672 5th St, San Francisco, CA 94016" -158146,AA Batteries (4-pack),1,3.84,02/17/19 12:34,"601 9th St, Los Angeles, CA 90001" -158147,USB-C Charging Cable,1,11.95,02/10/19 09:08,"605 Spruce St, New York City, NY 10001" -158148,iPhone,1,700,02/26/19 14:07,"833 Sunset St, Dallas, TX 75001" -158149,Wired Headphones,1,11.99,02/27/19 19:19,"855 Walnut St, New York City, NY 10001" -158150,USB-C Charging Cable,1,11.95,02/02/19 14:49,"44 Elm St, New York City, NY 10001" -158151,Apple Airpods Headphones,1,150,02/07/19 00:16,"299 10th St, San Francisco, CA 94016" -158152,AAA Batteries (4-pack),2,2.99,02/25/19 17:37,"37 2nd St, Atlanta, GA 30301" -158153,AA Batteries (4-pack),2,3.84,02/09/19 18:40,"64 Hill St, Los Angeles, CA 90001" -158154,20in Monitor,1,109.99,02/06/19 15:14,"428 12th St, Portland, OR 97035" -158155,Apple Airpods Headphones,1,150,02/10/19 12:41,"817 1st St, New York City, NY 10001" -158156,Lightning Charging Cable,1,14.95,02/13/19 18:27,"854 14th St, Los Angeles, CA 90001" -158157,Lightning Charging Cable,2,14.95,02/12/19 08:40,"909 Jefferson St, San Francisco, CA 94016" -158158,Bose SoundSport Headphones,1,99.99,02/22/19 13:01,"146 8th St, Dallas, TX 75001" -158159,AAA Batteries (4-pack),2,2.99,02/10/19 11:16,"851 Spruce St, Portland, OR 97035" -158160,AAA Batteries (4-pack),2,2.99,02/04/19 11:05,"690 2nd St, Los Angeles, CA 90001" -158161,Bose SoundSport Headphones,1,99.99,02/27/19 15:28,"958 Park St, San Francisco, CA 94016" -158162,AAA Batteries (4-pack),1,2.99,02/19/19 20:12,"514 Washington St, Boston, MA 02215" -158163,Wired Headphones,1,11.99,02/07/19 01:14,"530 Highland St, Los Angeles, CA 90001" -158164,Apple Airpods Headphones,1,150,02/11/19 16:12,"464 Jefferson St, New York City, NY 10001" -158165,AAA Batteries (4-pack),1,2.99,02/16/19 11:26,"310 Meadow St, Los Angeles, CA 90001" -158166,USB-C Charging Cable,1,11.95,02/19/19 10:14,"468 8th St, San Francisco, CA 94016" -158167,AAA Batteries (4-pack),2,2.99,02/04/19 20:57,"599 Hickory St, Dallas, TX 75001" -158168,Wired Headphones,1,11.99,02/01/19 07:32,"209 Jackson St, San Francisco, CA 94016" -158169,AAA Batteries (4-pack),1,2.99,02/04/19 20:33,"962 13th St, San Francisco, CA 94016" -158170,AAA Batteries (4-pack),1,2.99,02/26/19 08:40,"286 Willow St, New York City, NY 10001" -158171,USB-C Charging Cable,1,11.95,02/12/19 20:46,"163 7th St, San Francisco, CA 94016" -158172,Bose SoundSport Headphones,1,99.99,02/09/19 22:38,"800 7th St, New York City, NY 10001" -158173,USB-C Charging Cable,1,11.95,02/06/19 11:00,"90 6th St, San Francisco, CA 94016" -158174,AAA Batteries (4-pack),2,2.99,02/20/19 19:06,"343 Hickory St, Boston, MA 02215" -158175,AA Batteries (4-pack),1,3.84,02/12/19 22:47,"826 Spruce St, San Francisco, CA 94016" -158176,USB-C Charging Cable,1,11.95,02/18/19 18:49,"821 Spruce St, Austin, TX 73301" -158177,Google Phone,1,600,02/06/19 18:50,"510 Madison St, San Francisco, CA 94016" -158178,Lightning Charging Cable,1,14.95,02/11/19 14:21,"798 Forest St, New York City, NY 10001" -158179,27in FHD Monitor,1,149.99,02/19/19 17:00,"167 Madison St, Los Angeles, CA 90001" -158180,AAA Batteries (4-pack),1,2.99,02/22/19 08:38,"744 9th St, San Francisco, CA 94016" -158181,AAA Batteries (4-pack),1,2.99,02/02/19 21:43,"832 Cedar St, Los Angeles, CA 90001" -158182,LG Dryer,1,600.0,02/17/19 10:24,"878 Jefferson St, Austin, TX 73301" -158182,AA Batteries (4-pack),1,3.84,02/17/19 10:24,"878 Jefferson St, Austin, TX 73301" -158183,AAA Batteries (4-pack),1,2.99,02/23/19 19:56,"62 Johnson St, Dallas, TX 75001" -158184,AA Batteries (4-pack),1,3.84,02/05/19 16:42,"294 8th St, San Francisco, CA 94016" -158185,AA Batteries (4-pack),1,3.84,02/22/19 10:09,"671 13th St, Seattle, WA 98101" -158186,AAA Batteries (4-pack),1,2.99,02/19/19 16:59,"641 Highland St, San Francisco, CA 94016" -158187,AA Batteries (4-pack),2,3.84,02/15/19 06:55,"541 Ridge St, Seattle, WA 98101" -158188,Apple Airpods Headphones,1,150,02/14/19 11:35,"511 Maple St, New York City, NY 10001" -158189,AA Batteries (4-pack),2,3.84,02/28/19 10:59,"921 Lake St, New York City, NY 10001" -158190,Wired Headphones,1,11.99,02/08/19 14:42,"848 11th St, Boston, MA 02215" -158191,AAA Batteries (4-pack),1,2.99,02/04/19 22:48,"613 13th St, Seattle, WA 98101" -158192,iPhone,1,700,02/09/19 14:46,"585 13th St, San Francisco, CA 94016" -158193,Apple Airpods Headphones,1,150,02/27/19 19:40,"294 River St, San Francisco, CA 94016" -158194,34in Ultrawide Monitor,1,379.99,02/14/19 06:13,"786 10th St, San Francisco, CA 94016" -158195,Bose SoundSport Headphones,1,99.99,02/19/19 07:58,"438 Highland St, Boston, MA 02215" -158196,Bose SoundSport Headphones,1,99.99,02/19/19 18:29,"973 8th St, Dallas, TX 75001" -158197,Wired Headphones,1,11.99,02/25/19 17:17,"585 10th St, San Francisco, CA 94016" -158198,27in 4K Gaming Monitor,1,389.99,02/27/19 10:38,"893 9th St, Los Angeles, CA 90001" -158199,AA Batteries (4-pack),1,3.84,02/15/19 21:31,"856 10th St, Portland, ME 04101" -158200,Google Phone,1,600,02/06/19 20:43,"205 10th St, New York City, NY 10001" -158201,Macbook Pro Laptop,1,1700,02/21/19 08:10,"130 9th St, Dallas, TX 75001" -158202,ThinkPad Laptop,1,999.99,02/10/19 15:04,"248 Jefferson St, Los Angeles, CA 90001" -158203,27in 4K Gaming Monitor,1,389.99,02/09/19 09:59,"674 13th St, San Francisco, CA 94016" -158204,USB-C Charging Cable,1,11.95,02/07/19 20:30,"383 Willow St, Los Angeles, CA 90001" -158205,Google Phone,1,600,02/08/19 22:18,"732 Elm St, Austin, TX 73301" -158205,USB-C Charging Cable,1,11.95,02/08/19 22:18,"732 Elm St, Austin, TX 73301" -158206,AAA Batteries (4-pack),1,2.99,02/05/19 23:08,"506 Chestnut St, Dallas, TX 75001" -158207,ThinkPad Laptop,1,999.99,02/16/19 17:00,"906 Maple St, Boston, MA 02215" -158208,Wired Headphones,1,11.99,02/20/19 07:13,"619 1st St, Dallas, TX 75001" -158209,AA Batteries (4-pack),3,3.84,02/12/19 22:46,"500 1st St, Atlanta, GA 30301" -158210,iPhone,1,700,02/15/19 16:05,"23 Lake St, Atlanta, GA 30301" -158210,Lightning Charging Cable,1,14.95,02/15/19 16:05,"23 Lake St, Atlanta, GA 30301" -158211,Lightning Charging Cable,1,14.95,02/11/19 15:08,"210 Highland St, Los Angeles, CA 90001" -158212,Lightning Charging Cable,1,14.95,02/21/19 11:00,"661 Park St, Los Angeles, CA 90001" -158213,Lightning Charging Cable,1,14.95,02/24/19 16:05,"222 Cedar St, Austin, TX 73301" -158214,Apple Airpods Headphones,1,150,02/06/19 12:52,"683 River St, Seattle, WA 98101" -158215,AA Batteries (4-pack),1,3.84,02/05/19 00:18,"251 Chestnut St, Portland, OR 97035" -158216,Lightning Charging Cable,1,14.95,02/04/19 12:25,"8 Meadow St, New York City, NY 10001" -158217,Apple Airpods Headphones,1,150,02/27/19 17:45,"27 Lakeview St, Los Angeles, CA 90001" -158218,Wired Headphones,2,11.99,02/28/19 16:01,"819 Meadow St, Boston, MA 02215" -158219,USB-C Charging Cable,2,11.95,02/06/19 00:14,"213 11th St, Atlanta, GA 30301" -158220,Wired Headphones,1,11.99,02/05/19 12:16,"267 6th St, San Francisco, CA 94016" -158221,AAA Batteries (4-pack),1,2.99,02/22/19 13:14,"211 Main St, New York City, NY 10001" -158222,Lightning Charging Cable,2,14.95,02/17/19 16:49,"29 Center St, Atlanta, GA 30301" -158223,AAA Batteries (4-pack),1,2.99,02/22/19 11:25,"476 Church St, San Francisco, CA 94016" -158224,27in FHD Monitor,1,149.99,02/13/19 20:35,"465 Willow St, Los Angeles, CA 90001" -158225,Bose SoundSport Headphones,1,99.99,02/05/19 16:57,"55 8th St, New York City, NY 10001" -158226,Macbook Pro Laptop,1,1700,02/03/19 14:52,"685 Forest St, Los Angeles, CA 90001" -158227,34in Ultrawide Monitor,1,379.99,02/11/19 10:02,"730 Hill St, San Francisco, CA 94016" -158228,Bose SoundSport Headphones,1,99.99,02/03/19 12:40,"714 Hickory St, New York City, NY 10001" -158229,USB-C Charging Cable,1,11.95,02/12/19 13:58,"987 Cedar St, Los Angeles, CA 90001" -158230,Lightning Charging Cable,1,14.95,02/11/19 18:22,"156 Forest St, San Francisco, CA 94016" -158231,USB-C Charging Cable,1,11.95,02/09/19 19:42,"933 1st St, Dallas, TX 75001" -158232,AA Batteries (4-pack),1,3.84,02/13/19 22:45,"866 Jackson St, San Francisco, CA 94016" -158233,AA Batteries (4-pack),1,3.84,02/20/19 10:33,"828 Chestnut St, New York City, NY 10001" -158234,Flatscreen TV,1,300,02/12/19 11:52,"59 Willow St, Dallas, TX 75001" -158235,USB-C Charging Cable,1,11.95,02/18/19 06:26,"886 Maple St, Dallas, TX 75001" -158236,AA Batteries (4-pack),1,3.84,02/19/19 09:49,"319 West St, San Francisco, CA 94016" -158236,AA Batteries (4-pack),1,3.84,02/19/19 09:49,"319 West St, San Francisco, CA 94016" -158237,27in 4K Gaming Monitor,1,389.99,02/01/19 10:44,"152 Pine St, New York City, NY 10001" -158238,AAA Batteries (4-pack),1,2.99,02/02/19 14:50,"84 Cedar St, San Francisco, CA 94016" -158239,Wired Headphones,1,11.99,02/20/19 20:04,"611 River St, New York City, NY 10001" -158240,Lightning Charging Cable,1,14.95,02/08/19 12:12,"361 Cherry St, San Francisco, CA 94016" -158241,LG Dryer,1,600.0,02/15/19 16:08,"547 5th St, San Francisco, CA 94016" -158242,ThinkPad Laptop,1,999.99,02/14/19 15:04,"547 11th St, Boston, MA 02215" -158243,Bose SoundSport Headphones,1,99.99,02/21/19 14:20,"591 14th St, Boston, MA 02215" -158244,Lightning Charging Cable,1,14.95,02/23/19 18:11,"937 Elm St, Seattle, WA 98101" -158245,Google Phone,1,600,02/01/19 17:28,"725 11th St, Los Angeles, CA 90001" -158246,AAA Batteries (4-pack),1,2.99,02/14/19 17:58,"469 Willow St, San Francisco, CA 94016" -158247,34in Ultrawide Monitor,1,379.99,02/07/19 17:14,"347 Forest St, Boston, MA 02215" -158248,AAA Batteries (4-pack),2,2.99,02/02/19 15:24,"483 2nd St, Portland, OR 97035" -158249,Apple Airpods Headphones,1,150,02/26/19 14:16,"45 West St, New York City, NY 10001" -158250,AA Batteries (4-pack),2,3.84,02/01/19 20:08,"197 Sunset St, Dallas, TX 75001" -158251,Apple Airpods Headphones,1,150,02/27/19 12:59,"125 Maple St, San Francisco, CA 94016" -158252,Wired Headphones,2,11.99,02/20/19 14:44,"296 South St, New York City, NY 10001" -158253,Lightning Charging Cable,1,14.95,02/27/19 17:53,"234 Spruce St, San Francisco, CA 94016" -158254,Lightning Charging Cable,1,14.95,02/17/19 15:39,"266 1st St, San Francisco, CA 94016" -158255,USB-C Charging Cable,1,11.95,02/25/19 00:50,"271 14th St, Dallas, TX 75001" -158256,Apple Airpods Headphones,1,150,02/04/19 10:12,"994 6th St, San Francisco, CA 94016" -158257,Bose SoundSport Headphones,1,99.99,02/04/19 13:39,"285 Dogwood St, Seattle, WA 98101" -158258,AAA Batteries (4-pack),1,2.99,02/23/19 14:01,"726 Park St, Dallas, TX 75001" -158259,USB-C Charging Cable,1,11.95,02/03/19 19:14,"674 4th St, Los Angeles, CA 90001" -158260,Lightning Charging Cable,1,14.95,02/09/19 11:33,"983 Walnut St, Los Angeles, CA 90001" -158261,AAA Batteries (4-pack),2,2.99,02/19/19 01:08,"780 Spruce St, New York City, NY 10001" -158262,Wired Headphones,1,11.99,03/01/19 03:49,"902 Adams St, New York City, NY 10001" -158263,34in Ultrawide Monitor,2,379.99,02/20/19 13:24,"820 Hill St, Dallas, TX 75001" -158264,Macbook Pro Laptop,1,1700,02/13/19 18:52,"231 North St, San Francisco, CA 94016" -158265,Lightning Charging Cable,1,14.95,02/09/19 16:48,"424 Sunset St, San Francisco, CA 94016" -158266,Bose SoundSport Headphones,1,99.99,02/17/19 17:54,"509 South St, Los Angeles, CA 90001" -158267,20in Monitor,1,109.99,02/25/19 23:51,"866 Sunset St, Austin, TX 73301" -158268,USB-C Charging Cable,1,11.95,02/10/19 09:41,"363 Lake St, San Francisco, CA 94016" -158269,Bose SoundSport Headphones,1,99.99,02/05/19 12:35,"341 6th St, San Francisco, CA 94016" -158270,iPhone,1,700,02/05/19 13:08,"807 South St, Austin, TX 73301" -158271,27in FHD Monitor,1,149.99,02/20/19 11:35,"821 Hickory St, New York City, NY 10001" -158272,Lightning Charging Cable,1,14.95,02/11/19 17:54,"541 West St, Dallas, TX 75001" -158273,20in Monitor,1,109.99,02/11/19 23:56,"401 Forest St, Atlanta, GA 30301" -158274,Apple Airpods Headphones,1,150,02/20/19 12:54,"473 Jackson St, Boston, MA 02215" -158275,34in Ultrawide Monitor,1,379.99,02/07/19 16:13,"505 Adams St, Portland, OR 97035" -158276,Apple Airpods Headphones,1,150,02/26/19 17:01,"514 10th St, Dallas, TX 75001" -158277,AA Batteries (4-pack),1,3.84,02/27/19 23:31,"63 Wilson St, New York City, NY 10001" -158278,USB-C Charging Cable,1,11.95,02/03/19 13:27,"9 Walnut St, Boston, MA 02215" -158279,USB-C Charging Cable,1,11.95,02/10/19 14:29,"305 Sunset St, Los Angeles, CA 90001" -158280,Wired Headphones,1,11.99,02/02/19 10:42,"238 6th St, San Francisco, CA 94016" -158281,AA Batteries (4-pack),1,3.84,02/20/19 22:22,"703 Meadow St, New York City, NY 10001" -158282,Wired Headphones,1,11.99,02/18/19 12:42,"37 Jackson St, Seattle, WA 98101" -158283,USB-C Charging Cable,2,11.95,02/08/19 19:41,"850 Hill St, New York City, NY 10001" -158284,USB-C Charging Cable,1,11.95,02/09/19 10:37,"645 Cedar St, San Francisco, CA 94016" -158285,Wired Headphones,1,11.99,02/14/19 13:10,"777 Johnson St, New York City, NY 10001" -158286,Apple Airpods Headphones,1,150,02/04/19 16:47,"248 12th St, Portland, OR 97035" -158287,Apple Airpods Headphones,1,150,02/25/19 17:47,"877 Park St, Austin, TX 73301" -158288,Lightning Charging Cable,1,14.95,02/04/19 02:05,"888 Adams St, Los Angeles, CA 90001" -158289,AAA Batteries (4-pack),1,2.99,02/15/19 19:20,"254 Lakeview St, Los Angeles, CA 90001" -158290,Apple Airpods Headphones,1,150,02/06/19 00:35,"533 10th St, Seattle, WA 98101" -158291,20in Monitor,1,109.99,02/12/19 22:03,"743 Lake St, Boston, MA 02215" -158292,AA Batteries (4-pack),1,3.84,02/26/19 23:13,"966 Elm St, San Francisco, CA 94016" -158293,Lightning Charging Cable,1,14.95,02/08/19 16:53,"843 Dogwood St, Dallas, TX 75001" -158294,Apple Airpods Headphones,1,150,02/23/19 23:21,"222 Adams St, New York City, NY 10001" -158295,Wired Headphones,1,11.99,02/26/19 23:06,"286 Forest St, New York City, NY 10001" -158296,iPhone,1,700,02/10/19 10:35,"501 12th St, Los Angeles, CA 90001" -158297,Lightning Charging Cable,1,14.95,02/13/19 19:23,"759 Cherry St, San Francisco, CA 94016" -158298,iPhone,1,700,02/08/19 07:50,"131 Lincoln St, Boston, MA 02215" -158299,Macbook Pro Laptop,1,1700,02/24/19 16:02,"512 Ridge St, San Francisco, CA 94016" -158300,AAA Batteries (4-pack),1,2.99,02/23/19 13:38,"896 13th St, Boston, MA 02215" -158301,AA Batteries (4-pack),2,3.84,02/06/19 22:26,"22 7th St, Portland, OR 97035" -158302,20in Monitor,1,109.99,02/27/19 22:31,"110 Madison St, New York City, NY 10001" -158303,USB-C Charging Cable,1,11.95,02/26/19 18:37,"395 9th St, Dallas, TX 75001" -158304,Macbook Pro Laptop,1,1700,02/19/19 13:18,"532 Lake St, Dallas, TX 75001" -158305,Google Phone,1,600,02/27/19 14:13,"5 Dogwood St, Los Angeles, CA 90001" -158306,Wired Headphones,1,11.99,02/13/19 11:38,"220 14th St, Austin, TX 73301" -158307,ThinkPad Laptop,1,999.99,02/19/19 19:20,"316 Maple St, Atlanta, GA 30301" -158308,AAA Batteries (4-pack),1,2.99,02/22/19 11:07,"465 Walnut St, Atlanta, GA 30301" -158309,AA Batteries (4-pack),1,3.84,02/14/19 22:41,"919 2nd St, Boston, MA 02215" -158310,Lightning Charging Cable,1,14.95,02/19/19 07:59,"451 Madison St, New York City, NY 10001" -158310,USB-C Charging Cable,1,11.95,02/19/19 07:59,"451 Madison St, New York City, NY 10001" -158311,Lightning Charging Cable,1,14.95,02/13/19 08:58,"942 West St, Seattle, WA 98101" -158312,AAA Batteries (4-pack),1,2.99,02/14/19 11:28,"683 9th St, Los Angeles, CA 90001" -158313,27in 4K Gaming Monitor,1,389.99,02/14/19 18:27,"559 Center St, San Francisco, CA 94016" -158314,Bose SoundSport Headphones,1,99.99,02/11/19 13:30,"774 Maple St, Portland, OR 97035" -158315,USB-C Charging Cable,1,11.95,02/23/19 16:16,"70 Main St, New York City, NY 10001" -158316,Lightning Charging Cable,1,14.95,02/17/19 18:12,"244 Lakeview St, San Francisco, CA 94016" -158317,Wired Headphones,1,11.99,02/18/19 19:35,"725 4th St, Portland, ME 04101" -158318,USB-C Charging Cable,1,11.95,02/10/19 14:47,"851 Jackson St, Seattle, WA 98101" -158319,AAA Batteries (4-pack),1,2.99,02/22/19 00:54,"444 Highland St, New York City, NY 10001" -158320,Wired Headphones,1,11.99,02/02/19 15:32,"786 8th St, Boston, MA 02215" -158321,Wired Headphones,1,11.99,02/17/19 00:19,"717 River St, Los Angeles, CA 90001" -158322,AAA Batteries (4-pack),2,2.99,02/24/19 22:26,"676 9th St, Los Angeles, CA 90001" -158323,27in 4K Gaming Monitor,1,389.99,02/26/19 20:57,"190 Hill St, Atlanta, GA 30301" -158324,AAA Batteries (4-pack),1,2.99,02/08/19 10:25,"346 Washington St, Los Angeles, CA 90001" -158325,Apple Airpods Headphones,1,150,02/07/19 19:19,"430 Center St, Austin, TX 73301" -158326,AAA Batteries (4-pack),1,2.99,02/24/19 12:36,"752 11th St, Dallas, TX 75001" -158327,iPhone,1,700,02/23/19 12:03,"685 2nd St, Portland, OR 97035" -158328,Lightning Charging Cable,1,14.95,02/08/19 12:09,"977 Pine St, Austin, TX 73301" -158329,Flatscreen TV,1,300,02/25/19 11:18,"398 Adams St, New York City, NY 10001" -158330,Google Phone,1,600,02/18/19 23:19,"568 Ridge St, Los Angeles, CA 90001" -158331,Lightning Charging Cable,1,14.95,02/12/19 17:04,"564 South St, Seattle, WA 98101" -158332,Apple Airpods Headphones,1,150,02/14/19 16:48,"852 Sunset St, Portland, OR 97035" -158332,20in Monitor,1,109.99,02/14/19 16:48,"852 Sunset St, Portland, OR 97035" -158333,Apple Airpods Headphones,1,150,02/18/19 19:35,"308 1st St, Boston, MA 02215" -158334,AA Batteries (4-pack),2,3.84,02/26/19 11:18,"266 Church St, Boston, MA 02215" -158335,27in 4K Gaming Monitor,1,389.99,03/01/19 02:01,"9 Hill St, Portland, OR 97035" -158336,Apple Airpods Headphones,1,150,02/26/19 12:34,"160 11th St, San Francisco, CA 94016" -158337,Vareebadd Phone,1,400,02/12/19 19:22,"23 Jackson St, Los Angeles, CA 90001" -158337,USB-C Charging Cable,2,11.95,02/12/19 19:22,"23 Jackson St, Los Angeles, CA 90001" -158338,34in Ultrawide Monitor,1,379.99,02/05/19 21:05,"513 1st St, Los Angeles, CA 90001" -158339,Wired Headphones,1,11.99,02/05/19 11:45,"647 7th St, San Francisco, CA 94016" -158340,ThinkPad Laptop,1,999.99,02/13/19 19:46,"127 Adams St, New York City, NY 10001" -158341,Macbook Pro Laptop,1,1700,02/15/19 22:30,"265 7th St, Boston, MA 02215" -158342,Google Phone,1,600,02/03/19 22:20,"807 Church St, San Francisco, CA 94016" -158342,USB-C Charging Cable,1,11.95,02/03/19 22:20,"807 Church St, San Francisco, CA 94016" -158343,Bose SoundSport Headphones,1,99.99,02/10/19 12:42,"399 Willow St, Austin, TX 73301" -158344,LG Dryer,1,600.0,02/17/19 10:21,"421 Lincoln St, San Francisco, CA 94016" -158345,USB-C Charging Cable,1,11.95,02/01/19 13:08,"712 12th St, Dallas, TX 75001" -158346,USB-C Charging Cable,1,11.95,02/26/19 20:35,"345 Cherry St, Dallas, TX 75001" -158347,Macbook Pro Laptop,1,1700,02/23/19 16:20,"667 Jackson St, San Francisco, CA 94016" -158348,USB-C Charging Cable,1,11.95,02/23/19 21:03,"469 Pine St, Seattle, WA 98101" -158348,27in FHD Monitor,1,149.99,02/23/19 21:03,"469 Pine St, Seattle, WA 98101" -158349,Flatscreen TV,1,300,02/25/19 19:12,"918 Jefferson St, New York City, NY 10001" -158350,AAA Batteries (4-pack),1,2.99,02/22/19 14:47,"600 14th St, New York City, NY 10001" -158351,Wired Headphones,1,11.99,02/03/19 15:19,"982 Willow St, New York City, NY 10001" -158352,USB-C Charging Cable,1,11.95,02/20/19 08:58,"286 Maple St, Los Angeles, CA 90001" -158353,27in 4K Gaming Monitor,1,389.99,02/09/19 16:11,"849 Dogwood St, Atlanta, GA 30301" -158354,AAA Batteries (4-pack),3,2.99,02/12/19 22:55,"539 Maple St, San Francisco, CA 94016" -158355,Bose SoundSport Headphones,1,99.99,02/16/19 21:39,"808 1st St, New York City, NY 10001" -158356,AA Batteries (4-pack),1,3.84,02/17/19 22:22,"270 Jackson St, Los Angeles, CA 90001" -158357,Apple Airpods Headphones,1,150,02/20/19 15:30,"638 Adams St, Austin, TX 73301" -158357,USB-C Charging Cable,1,11.95,02/20/19 15:30,"638 Adams St, Austin, TX 73301" -158358,Bose SoundSport Headphones,1,99.99,02/28/19 08:43,"614 4th St, New York City, NY 10001" -158359,AAA Batteries (4-pack),1,2.99,02/06/19 09:25,"523 Sunset St, Austin, TX 73301" -158360,Lightning Charging Cable,1,14.95,02/28/19 12:27,"853 Maple St, Dallas, TX 75001" -158361,USB-C Charging Cable,1,11.95,02/10/19 21:46,"340 River St, Los Angeles, CA 90001" -158362,Wired Headphones,1,11.99,02/03/19 15:53,"586 Wilson St, Boston, MA 02215" -158363,AAA Batteries (4-pack),1,2.99,02/23/19 18:20,"990 Willow St, Los Angeles, CA 90001" -158364,Bose SoundSport Headphones,1,99.99,02/19/19 10:37,"40 Highland St, Atlanta, GA 30301" -158365,AAA Batteries (4-pack),3,2.99,02/01/19 07:32,"530 Jackson St, Dallas, TX 75001" -158366,Apple Airpods Headphones,1,150,02/15/19 21:28,"90 Cedar St, Portland, ME 04101" -158367,AA Batteries (4-pack),1,3.84,02/18/19 22:22,"482 Park St, Dallas, TX 75001" -158368,USB-C Charging Cable,1,11.95,02/28/19 19:27,"974 Willow St, Atlanta, GA 30301" -158369,Lightning Charging Cable,1,14.95,02/10/19 14:10,"780 10th St, Dallas, TX 75001" -158370,AA Batteries (4-pack),2,3.84,02/02/19 17:15,"684 Cedar St, Boston, MA 02215" -158371,AA Batteries (4-pack),1,3.84,02/27/19 13:29,"612 Forest St, San Francisco, CA 94016" -158372,Bose SoundSport Headphones,1,99.99,02/23/19 11:34,"146 10th St, Los Angeles, CA 90001" -158373,Apple Airpods Headphones,1,150,02/02/19 06:30,"181 Lincoln St, San Francisco, CA 94016" -158374,AAA Batteries (4-pack),1,2.99,02/28/19 04:47,"352 Elm St, Atlanta, GA 30301" -158375,Apple Airpods Headphones,1,150,02/12/19 11:12,"267 Lakeview St, Dallas, TX 75001" -158376,AA Batteries (4-pack),1,3.84,02/05/19 14:01,"277 4th St, San Francisco, CA 94016" -158377,AA Batteries (4-pack),1,3.84,02/23/19 22:33,"986 5th St, Boston, MA 02215" -158378,AA Batteries (4-pack),1,3.84,02/20/19 12:55,"528 Willow St, Los Angeles, CA 90001" -158379,USB-C Charging Cable,1,11.95,02/05/19 20:23,"966 Ridge St, San Francisco, CA 94016" -158380,34in Ultrawide Monitor,1,379.99,02/11/19 09:24,"906 Johnson St, Portland, ME 04101" -158381,Lightning Charging Cable,1,14.95,02/13/19 13:30,"87 Maple St, New York City, NY 10001" -158382,Wired Headphones,1,11.99,02/04/19 15:49,"898 Chestnut St, San Francisco, CA 94016" -158383,USB-C Charging Cable,1,11.95,02/08/19 22:16,"958 14th St, Seattle, WA 98101" -158384,Apple Airpods Headphones,1,150,02/27/19 16:23,"839 12th St, New York City, NY 10001" -158385,Google Phone,1,600,02/26/19 18:43,"278 Main St, Boston, MA 02215" -158385,USB-C Charging Cable,1,11.95,02/26/19 18:43,"278 Main St, Boston, MA 02215" -158386,USB-C Charging Cable,1,11.95,02/19/19 12:00,"235 Adams St, New York City, NY 10001" -158387,34in Ultrawide Monitor,1,379.99,02/24/19 20:37,"918 Spruce St, Atlanta, GA 30301" -158388,USB-C Charging Cable,1,11.95,02/19/19 18:44,"943 Pine St, New York City, NY 10001" -158389,AAA Batteries (4-pack),1,2.99,02/12/19 19:25,"652 13th St, Boston, MA 02215" -158390,27in FHD Monitor,1,149.99,02/10/19 10:34,"404 13th St, Seattle, WA 98101" -158391,Apple Airpods Headphones,1,150,02/08/19 11:12,"405 13th St, Dallas, TX 75001" -158391,iPhone,1,700,02/08/19 11:12,"405 13th St, Dallas, TX 75001" -158392,34in Ultrawide Monitor,1,379.99,02/11/19 17:46,"495 Hickory St, Atlanta, GA 30301" -158393,USB-C Charging Cable,1,11.95,02/03/19 07:59,"475 Pine St, Los Angeles, CA 90001" -158394,AA Batteries (4-pack),2,3.84,02/23/19 12:11,"919 2nd St, New York City, NY 10001" -158395,27in 4K Gaming Monitor,1,389.99,02/05/19 17:01,"961 Adams St, New York City, NY 10001" -158396,Bose SoundSport Headphones,1,99.99,02/19/19 12:44,"409 Lincoln St, Portland, OR 97035" -158397,AAA Batteries (4-pack),1,2.99,02/04/19 16:01,"544 Sunset St, San Francisco, CA 94016" -158398,iPhone,1,700,02/24/19 12:28,"788 Lakeview St, Los Angeles, CA 90001" -158399,AA Batteries (4-pack),1,3.84,02/01/19 16:27,"531 Jefferson St, San Francisco, CA 94016" -158400,AA Batteries (4-pack),1,3.84,02/13/19 21:46,"896 Lincoln St, Los Angeles, CA 90001" -158401,AAA Batteries (4-pack),2,2.99,02/16/19 14:49,"206 Sunset St, Atlanta, GA 30301" -158402,AA Batteries (4-pack),1,3.84,02/26/19 09:36,"923 Wilson St, San Francisco, CA 94016" -158403,Apple Airpods Headphones,1,150,02/04/19 13:34,"442 Forest St, San Francisco, CA 94016" -158404,Wired Headphones,1,11.99,02/16/19 13:14,"241 Lake St, Boston, MA 02215" -158405,Apple Airpods Headphones,1,150,02/28/19 23:51,"209 Hickory St, Boston, MA 02215" -158406,Wired Headphones,1,11.99,02/19/19 21:02,"799 Willow St, Dallas, TX 75001" -158407,AA Batteries (4-pack),1,3.84,02/11/19 22:44,"682 2nd St, Dallas, TX 75001" -158408,Wired Headphones,2,11.99,02/24/19 15:43,"681 11th St, Boston, MA 02215" -158408,27in 4K Gaming Monitor,1,389.99,02/24/19 15:43,"681 11th St, Boston, MA 02215" -158409,Lightning Charging Cable,1,14.95,02/12/19 07:53,"660 Jackson St, New York City, NY 10001" -158410,AAA Batteries (4-pack),1,2.99,02/03/19 13:23,"402 Meadow St, New York City, NY 10001" -158411,USB-C Charging Cable,1,11.95,02/11/19 19:44,"245 Willow St, Boston, MA 02215" -158412,Wired Headphones,1,11.99,02/21/19 13:55,"470 Maple St, Portland, OR 97035" -158413,Lightning Charging Cable,1,14.95,02/06/19 20:42,"117 7th St, Los Angeles, CA 90001" -158414,AAA Batteries (4-pack),3,2.99,02/27/19 00:35,"345 Wilson St, New York City, NY 10001" -158415,Macbook Pro Laptop,1,1700,02/10/19 23:41,"903 Lincoln St, San Francisco, CA 94016" -158416,USB-C Charging Cable,1,11.95,02/20/19 10:04,"904 Park St, Dallas, TX 75001" -158417,Macbook Pro Laptop,1,1700,02/26/19 00:55,"696 9th St, Portland, OR 97035" -158418,27in FHD Monitor,1,149.99,02/19/19 08:32,"356 14th St, Los Angeles, CA 90001" -158419,AAA Batteries (4-pack),1,2.99,02/08/19 23:17,"4 Johnson St, San Francisco, CA 94016" -158420,USB-C Charging Cable,1,11.95,02/06/19 23:53,"564 North St, San Francisco, CA 94016" -158421,Bose SoundSport Headphones,1,99.99,02/03/19 08:47,"255 Cedar St, New York City, NY 10001" -158422,Google Phone,1,600,02/09/19 16:45,"403 Hickory St, San Francisco, CA 94016" -158423,27in 4K Gaming Monitor,1,389.99,02/07/19 14:04,"155 Wilson St, Atlanta, GA 30301" -158424,ThinkPad Laptop,1,999.99,02/18/19 19:33,"462 5th St, Portland, OR 97035" -158425,AAA Batteries (4-pack),1,2.99,02/10/19 22:18,"698 10th St, San Francisco, CA 94016" -158426,AAA Batteries (4-pack),1,2.99,02/14/19 21:38,"791 Willow St, San Francisco, CA 94016" -158427,AA Batteries (4-pack),1,3.84,02/18/19 07:30,"154 9th St, San Francisco, CA 94016" -158428,Apple Airpods Headphones,1,150,02/26/19 14:52,"868 Johnson St, New York City, NY 10001" -158429,AA Batteries (4-pack),1,3.84,02/28/19 18:13,"506 Adams St, Boston, MA 02215" -158430,Wired Headphones,1,11.99,02/09/19 14:42,"68 6th St, San Francisco, CA 94016" -158431,34in Ultrawide Monitor,1,379.99,02/25/19 12:42,"915 Forest St, Seattle, WA 98101" -158432,USB-C Charging Cable,1,11.95,02/27/19 09:41,"133 Cedar St, San Francisco, CA 94016" -158433,AAA Batteries (4-pack),1,2.99,02/15/19 20:08,"242 12th St, Dallas, TX 75001" -158434,Apple Airpods Headphones,1,150,02/17/19 19:32,"336 10th St, Portland, OR 97035" -158435,Apple Airpods Headphones,1,150,02/18/19 11:23,"204 Sunset St, Dallas, TX 75001" -158436,AA Batteries (4-pack),2,3.84,02/08/19 15:24,"858 8th St, New York City, NY 10001" -158437,AAA Batteries (4-pack),1,2.99,02/05/19 17:31,"218 14th St, Portland, ME 04101" -158438,AA Batteries (4-pack),1,3.84,02/11/19 22:55,"636 Jackson St, Austin, TX 73301" -158439,USB-C Charging Cable,1,11.95,02/25/19 12:04,"41 Madison St, Boston, MA 02215" -158440,Wired Headphones,1,11.99,02/09/19 09:57,"92 Maple St, Boston, MA 02215" -158441,USB-C Charging Cable,1,11.95,02/16/19 09:02,"376 Main St, Austin, TX 73301" -158442,34in Ultrawide Monitor,1,379.99,02/14/19 03:33,"925 5th St, San Francisco, CA 94016" -158443,27in FHD Monitor,1,149.99,02/22/19 17:48,"380 West St, San Francisco, CA 94016" -158444,Flatscreen TV,1,300,02/24/19 13:18,"277 Willow St, Seattle, WA 98101" -158445,USB-C Charging Cable,1,11.95,02/08/19 19:10,"769 9th St, Dallas, TX 75001" -158446,27in 4K Gaming Monitor,1,389.99,02/06/19 11:54,"695 Lakeview St, Seattle, WA 98101" -158447,USB-C Charging Cable,1,11.95,02/09/19 14:01,"710 Maple St, San Francisco, CA 94016" -158448,Wired Headphones,1,11.99,02/23/19 15:39,"260 North St, Los Angeles, CA 90001" -158449,Lightning Charging Cable,1,14.95,02/01/19 12:33,"129 Willow St, Seattle, WA 98101" -158450,ThinkPad Laptop,1,999.99,02/18/19 14:59,"87 Highland St, Los Angeles, CA 90001" -158451,Wired Headphones,1,11.99,02/01/19 19:49,"924 5th St, Los Angeles, CA 90001" -158452,USB-C Charging Cable,1,11.95,02/15/19 20:50,"234 10th St, San Francisco, CA 94016" -158453,20in Monitor,1,109.99,02/24/19 05:58,"767 2nd St, Boston, MA 02215" -158454,AAA Batteries (4-pack),2,2.99,02/22/19 22:14,"486 River St, Boston, MA 02215" -158455,Wired Headphones,2,11.99,02/06/19 18:11,"395 Lake St, Portland, OR 97035" -158456,AA Batteries (4-pack),1,3.84,02/05/19 19:12,"59 Walnut St, New York City, NY 10001" -158457,AA Batteries (4-pack),1,3.84,02/18/19 22:03,"526 Jackson St, Austin, TX 73301" -158458,AAA Batteries (4-pack),1,2.99,02/06/19 13:21,"731 Lincoln St, Seattle, WA 98101" -158459,Apple Airpods Headphones,1,150,02/22/19 00:41,"646 Adams St, Boston, MA 02215" -158460,AAA Batteries (4-pack),1,2.99,02/04/19 09:10,"268 10th St, Los Angeles, CA 90001" -158461,USB-C Charging Cable,1,11.95,02/07/19 22:31,"156 Hill St, San Francisco, CA 94016" -158462,Bose SoundSport Headphones,1,99.99,02/16/19 15:49,"579 Lakeview St, Boston, MA 02215" -158463,AAA Batteries (4-pack),1,2.99,02/19/19 17:23,"221 7th St, New York City, NY 10001" -158464,ThinkPad Laptop,1,999.99,02/10/19 09:22,"266 North St, San Francisco, CA 94016" -158465,Flatscreen TV,1,300,02/16/19 10:36,"216 Center St, San Francisco, CA 94016" -158466,Bose SoundSport Headphones,1,99.99,02/08/19 11:39,"694 Center St, Atlanta, GA 30301" -158467,Apple Airpods Headphones,1,150,02/06/19 14:53,"676 Pine St, Los Angeles, CA 90001" -158468,Lightning Charging Cable,1,14.95,02/20/19 18:08,"729 7th St, Portland, OR 97035" -158469,Flatscreen TV,1,300,02/22/19 14:54,"805 8th St, Los Angeles, CA 90001" -158470,Macbook Pro Laptop,1,1700,02/04/19 21:11,"51 Highland St, San Francisco, CA 94016" -158471,Bose SoundSport Headphones,1,99.99,02/16/19 18:27,"663 Pine St, Los Angeles, CA 90001" -158472,Google Phone,1,600,02/23/19 21:00,"905 Ridge St, Atlanta, GA 30301" -158473,AAA Batteries (4-pack),3,2.99,02/20/19 13:27,"508 Lakeview St, Portland, ME 04101" -158474,iPhone,1,700,02/19/19 22:57,"98 Walnut St, Atlanta, GA 30301" -158475,USB-C Charging Cable,1,11.95,02/12/19 23:57,"803 11th St, Austin, TX 73301" -158476,27in FHD Monitor,1,149.99,02/03/19 22:52,"976 Highland St, Los Angeles, CA 90001" -158477,27in 4K Gaming Monitor,1,389.99,02/08/19 13:11,"653 Hickory St, Dallas, TX 75001" -158478,Wired Headphones,1,11.99,02/26/19 10:57,"138 Cherry St, Portland, OR 97035" -158479,34in Ultrawide Monitor,1,379.99,02/12/19 00:03,"498 Maple St, Portland, OR 97035" -158480,AA Batteries (4-pack),1,3.84,02/27/19 00:13,"25 Jefferson St, Dallas, TX 75001" -158481,AA Batteries (4-pack),1,3.84,02/17/19 12:35,"334 14th St, Los Angeles, CA 90001" -158482,AA Batteries (4-pack),1,3.84,02/11/19 17:08,"982 2nd St, Seattle, WA 98101" -158483,Apple Airpods Headphones,1,150,02/14/19 13:26,"704 11th St, Boston, MA 02215" -158484,AAA Batteries (4-pack),1,2.99,02/13/19 07:37,"64 Lake St, Seattle, WA 98101" -158485,iPhone,1,700,02/17/19 11:01,"891 9th St, San Francisco, CA 94016" -158485,Apple Airpods Headphones,1,150,02/17/19 11:01,"891 9th St, San Francisco, CA 94016" -158486,Wired Headphones,1,11.99,02/25/19 13:46,"417 2nd St, New York City, NY 10001" -158487,Lightning Charging Cable,2,14.95,02/27/19 11:30,"517 Center St, San Francisco, CA 94016" -158488,Bose SoundSport Headphones,1,99.99,02/10/19 21:18,"862 Walnut St, Los Angeles, CA 90001" -158489,AA Batteries (4-pack),1,3.84,02/25/19 18:00,"941 Forest St, San Francisco, CA 94016" -158490,20in Monitor,1,109.99,02/15/19 15:07,"775 Wilson St, Los Angeles, CA 90001" -158491,Wired Headphones,1,11.99,02/28/19 08:43,"135 Johnson St, Dallas, TX 75001" -158492,USB-C Charging Cable,1,11.95,02/26/19 16:21,"839 4th St, New York City, NY 10001" -158493,Bose SoundSport Headphones,1,99.99,02/07/19 21:47,"686 1st St, Dallas, TX 75001" -158494,Bose SoundSport Headphones,1,99.99,02/10/19 18:58,"902 Cherry St, San Francisco, CA 94016" -158495,34in Ultrawide Monitor,1,379.99,02/02/19 15:21,"334 Maple St, New York City, NY 10001" -158496,AA Batteries (4-pack),2,3.84,02/18/19 16:43,"408 Adams St, Los Angeles, CA 90001" -158497,Wired Headphones,1,11.99,02/13/19 23:25,"547 Walnut St, Boston, MA 02215" -158498,Apple Airpods Headphones,1,150,02/16/19 19:51,"199 Main St, San Francisco, CA 94016" -158499,Wired Headphones,1,11.99,02/16/19 23:03,"324 Cherry St, Seattle, WA 98101" -158500,AAA Batteries (4-pack),1,2.99,02/12/19 17:21,"399 Highland St, San Francisco, CA 94016" -158501,27in FHD Monitor,1,149.99,02/09/19 15:31,"27 13th St, Boston, MA 02215" -158502,Wired Headphones,1,11.99,02/10/19 22:59,"422 Jackson St, Los Angeles, CA 90001" -158503,Apple Airpods Headphones,1,150,02/27/19 18:23,"254 1st St, Los Angeles, CA 90001" -158504,USB-C Charging Cable,1,11.95,02/06/19 08:35,"328 12th St, Atlanta, GA 30301" -158505,Apple Airpods Headphones,1,150,02/16/19 23:40,"333 River St, Austin, TX 73301" -158506,USB-C Charging Cable,1,11.95,02/20/19 09:58,"544 Maple St, San Francisco, CA 94016" -158507,AAA Batteries (4-pack),4,2.99,02/24/19 08:49,"657 Walnut St, Dallas, TX 75001" -158508,Lightning Charging Cable,1,14.95,02/20/19 03:21,"911 Center St, Boston, MA 02215" -158509,Apple Airpods Headphones,1,150,02/24/19 16:57,"664 West St, Dallas, TX 75001" -158510,AA Batteries (4-pack),1,3.84,02/02/19 14:24,"65 Cherry St, New York City, NY 10001" -158511,AA Batteries (4-pack),1,3.84,02/04/19 22:52,"203 Johnson St, Dallas, TX 75001" -158512,Lightning Charging Cable,1,14.95,02/28/19 20:35,"431 Ridge St, San Francisco, CA 94016" -158512,AAA Batteries (4-pack),1,2.99,02/28/19 20:35,"431 Ridge St, San Francisco, CA 94016" -158513,AAA Batteries (4-pack),3,2.99,02/20/19 09:11,"125 Lakeview St, San Francisco, CA 94016" -158514,Wired Headphones,1,11.99,02/27/19 17:04,"848 Madison St, Boston, MA 02215" -158515,34in Ultrawide Monitor,1,379.99,02/25/19 11:35,"430 Hill St, New York City, NY 10001" -158516,USB-C Charging Cable,1,11.95,02/20/19 10:51,"719 Spruce St, San Francisco, CA 94016" -158517,Wired Headphones,1,11.99,02/09/19 13:04,"253 Willow St, Atlanta, GA 30301" -158518,34in Ultrawide Monitor,1,379.99,02/15/19 09:59,"497 Highland St, Austin, TX 73301" -158519,USB-C Charging Cable,1,11.95,02/10/19 16:00,"298 Sunset St, Boston, MA 02215" -158520,USB-C Charging Cable,1,11.95,02/01/19 12:19,"897 12th St, San Francisco, CA 94016" -158521,Wired Headphones,1,11.99,02/10/19 15:46,"85 Forest St, Austin, TX 73301" -158522,Macbook Pro Laptop,1,1700,02/06/19 21:48,"847 Jefferson St, Seattle, WA 98101" -158523,Apple Airpods Headphones,1,150,02/21/19 15:25,"662 Spruce St, San Francisco, CA 94016" -158524,AAA Batteries (4-pack),1,2.99,02/25/19 13:17,"803 Wilson St, New York City, NY 10001" -158525,Bose SoundSport Headphones,1,99.99,02/05/19 12:21,"44 Forest St, Boston, MA 02215" -158526,Lightning Charging Cable,1,14.95,02/12/19 05:10,"109 Lakeview St, San Francisco, CA 94016" -158527,AAA Batteries (4-pack),1,2.99,02/01/19 10:21,"742 West St, Seattle, WA 98101" -158528,Lightning Charging Cable,1,14.95,02/11/19 08:29,"749 Hickory St, San Francisco, CA 94016" -158529,iPhone,1,700,02/25/19 21:15,"191 Highland St, Atlanta, GA 30301" -158530,Bose SoundSport Headphones,1,99.99,02/09/19 07:01,"76 South St, Boston, MA 02215" -158531,USB-C Charging Cable,1,11.95,02/04/19 18:52,"363 Washington St, Atlanta, GA 30301" -158532,Google Phone,1,600,02/13/19 08:36,"650 Maple St, New York City, NY 10001" -158533,20in Monitor,1,109.99,02/16/19 19:54,"29 Adams St, San Francisco, CA 94016" -158534,USB-C Charging Cable,1,11.95,02/19/19 04:53,"500 4th St, Portland, OR 97035" -158535,Apple Airpods Headphones,1,150,02/10/19 17:48,"5 Maple St, San Francisco, CA 94016" -158536,USB-C Charging Cable,1,11.95,02/20/19 01:04,"506 Lincoln St, San Francisco, CA 94016" -158537,Bose SoundSport Headphones,1,99.99,02/18/19 19:15,"774 Forest St, San Francisco, CA 94016" -158538,Lightning Charging Cable,1,14.95,02/01/19 12:59,"458 Adams St, Dallas, TX 75001" -158539,Macbook Pro Laptop,1,1700,02/16/19 17:12,"838 Chestnut St, Dallas, TX 75001" -158540,Google Phone,1,600,02/26/19 09:22,"377 Adams St, San Francisco, CA 94016" -158541,27in 4K Gaming Monitor,1,389.99,02/08/19 15:07,"563 8th St, San Francisco, CA 94016" -158542,AAA Batteries (4-pack),1,2.99,02/04/19 21:30,"144 Washington St, New York City, NY 10001" -158543,Lightning Charging Cable,1,14.95,02/07/19 10:28,"750 Main St, Seattle, WA 98101" -158544,34in Ultrawide Monitor,1,379.99,02/19/19 00:06,"290 7th St, Boston, MA 02215" -158545,Wired Headphones,1,11.99,02/07/19 15:28,"412 Hickory St, Austin, TX 73301" -158546,USB-C Charging Cable,1,11.95,02/21/19 09:24,"664 Hickory St, Los Angeles, CA 90001" -158547,AAA Batteries (4-pack),1,2.99,02/03/19 18:05,"107 Wilson St, Boston, MA 02215" -158548,Lightning Charging Cable,1,14.95,02/25/19 23:22,"691 Park St, San Francisco, CA 94016" -158549,Wired Headphones,1,11.99,02/16/19 10:11,"457 Elm St, Seattle, WA 98101" -158550,27in FHD Monitor,1,149.99,02/18/19 08:32,"392 11th St, Dallas, TX 75001" -158551,LG Dryer,1,600.0,02/07/19 23:50,"244 Church St, Boston, MA 02215" -158552,Apple Airpods Headphones,1,150,02/07/19 13:48,"959 8th St, Portland, OR 97035" -158553,Bose SoundSport Headphones,1,99.99,02/20/19 11:34,"904 6th St, Seattle, WA 98101" -158554,AA Batteries (4-pack),1,3.84,02/24/19 14:46,"847 Jefferson St, Boston, MA 02215" -158555,Bose SoundSport Headphones,1,99.99,02/11/19 21:27,"844 North St, Portland, OR 97035" -158556,Macbook Pro Laptop,1,1700,02/19/19 18:19,"454 9th St, Dallas, TX 75001" -158557,34in Ultrawide Monitor,1,379.99,02/16/19 14:24,"762 6th St, San Francisco, CA 94016" -158558,Wired Headphones,1,11.99,02/13/19 11:12,"532 South St, San Francisco, CA 94016" -158559,Wired Headphones,1,11.99,02/09/19 22:05,"626 Center St, New York City, NY 10001" -158560,Lightning Charging Cable,1,14.95,02/14/19 13:12,"12 Chestnut St, New York City, NY 10001" -158561,Bose SoundSport Headphones,1,99.99,02/09/19 17:27,"420 Center St, San Francisco, CA 94016" -158562,27in 4K Gaming Monitor,1,389.99,02/27/19 18:11,"517 Willow St, San Francisco, CA 94016" -158563,USB-C Charging Cable,1,11.95,02/01/19 23:45,"17 Meadow St, Los Angeles, CA 90001" -158564,Lightning Charging Cable,1,14.95,02/20/19 18:46,"660 Sunset St, Los Angeles, CA 90001" -158565,Lightning Charging Cable,1,14.95,02/01/19 16:03,"881 5th St, Dallas, TX 75001" -158566,Lightning Charging Cable,1,14.95,02/17/19 13:43,"24 Chestnut St, Boston, MA 02215" -158567,Google Phone,1,600,02/15/19 22:11,"885 Lake St, Boston, MA 02215" -158568,Macbook Pro Laptop,1,1700,02/24/19 21:55,"440 Willow St, Boston, MA 02215" -158569,USB-C Charging Cable,1,11.95,02/19/19 01:27,"316 14th St, Atlanta, GA 30301" -158570,Flatscreen TV,1,300,02/17/19 13:01,"238 Forest St, San Francisco, CA 94016" -158571,Bose SoundSport Headphones,1,99.99,02/05/19 14:55,"579 Church St, Los Angeles, CA 90001" -158572,Apple Airpods Headphones,1,150,02/18/19 00:11,"303 Park St, Seattle, WA 98101" -158573,iPhone,1,700,02/20/19 11:41,"73 9th St, Los Angeles, CA 90001" -158574,Wired Headphones,1,11.99,02/24/19 10:58,"736 Ridge St, New York City, NY 10001" -158574,Flatscreen TV,1,300,02/24/19 10:58,"736 Ridge St, New York City, NY 10001" -158575,27in 4K Gaming Monitor,1,389.99,02/23/19 15:11,"907 Elm St, Portland, OR 97035" -158576,LG Washing Machine,1,600.0,02/16/19 16:42,"208 4th St, Atlanta, GA 30301" -158577,Wired Headphones,1,11.99,02/13/19 21:40,"136 Sunset St, San Francisco, CA 94016" -158578,Wired Headphones,1,11.99,02/02/19 10:43,"799 Walnut St, San Francisco, CA 94016" -158579,AA Batteries (4-pack),1,3.84,02/28/19 19:52,"349 Washington St, San Francisco, CA 94016" -158580,AA Batteries (4-pack),1,3.84,02/09/19 18:21,"206 Cedar St, San Francisco, CA 94016" -158581,ThinkPad Laptop,1,999.99,02/17/19 18:13,"770 Park St, New York City, NY 10001" -158582,AA Batteries (4-pack),1,3.84,02/16/19 19:55,"908 Adams St, San Francisco, CA 94016" -158583,Apple Airpods Headphones,1,150,02/17/19 13:31,"475 Forest St, Los Angeles, CA 90001" -158584,Vareebadd Phone,1,400,02/25/19 10:50,"985 4th St, Los Angeles, CA 90001" -158585,Apple Airpods Headphones,1,150,02/22/19 01:34,"817 Cedar St, San Francisco, CA 94016" -158586,ThinkPad Laptop,1,999.99,02/09/19 20:07,"847 Jefferson St, Atlanta, GA 30301" -158587,Lightning Charging Cable,1,14.95,02/18/19 00:33,"731 Church St, Los Angeles, CA 90001" -158588,AAA Batteries (4-pack),1,2.99,02/24/19 19:34,"245 5th St, Boston, MA 02215" -158589,Vareebadd Phone,1,400,02/27/19 18:34,"223 Chestnut St, New York City, NY 10001" -158589,USB-C Charging Cable,3,11.95,02/27/19 18:34,"223 Chestnut St, New York City, NY 10001" -158590,Lightning Charging Cable,1,14.95,02/04/19 12:28,"578 Walnut St, Los Angeles, CA 90001" -158591,27in FHD Monitor,1,149.99,02/06/19 07:55,"209 Hickory St, San Francisco, CA 94016" -158592,20in Monitor,1,109.99,02/02/19 18:31,"374 6th St, New York City, NY 10001" -158593,AA Batteries (4-pack),1,3.84,02/18/19 19:25,"943 North St, San Francisco, CA 94016" -158594,AAA Batteries (4-pack),1,2.99,02/26/19 08:42,"303 1st St, San Francisco, CA 94016" -158595,Google Phone,1,600,02/19/19 06:30,"345 North St, San Francisco, CA 94016" -158596,Vareebadd Phone,1,400,02/06/19 13:00,"548 Park St, Dallas, TX 75001" -158596,Apple Airpods Headphones,1,150,02/06/19 13:00,"548 Park St, Dallas, TX 75001" -158597,Lightning Charging Cable,1,14.95,02/05/19 11:45,"175 Cherry St, Boston, MA 02215" -158598,Bose SoundSport Headphones,1,99.99,02/02/19 12:28,"337 Lake St, New York City, NY 10001" -158599,iPhone,1,700,02/09/19 11:19,"918 Sunset St, Boston, MA 02215" -158600,USB-C Charging Cable,1,11.95,02/28/19 12:23,"815 Main St, Seattle, WA 98101" -158601,Bose SoundSport Headphones,1,99.99,02/02/19 07:20,"485 Meadow St, Atlanta, GA 30301" -158602,Apple Airpods Headphones,1,150,02/27/19 00:04,"894 Forest St, San Francisco, CA 94016" -158603,USB-C Charging Cable,1,11.95,02/23/19 20:33,"16 Park St, Atlanta, GA 30301" -158604,Apple Airpods Headphones,1,150,02/17/19 22:55,"802 14th St, San Francisco, CA 94016" -158605,AAA Batteries (4-pack),3,2.99,02/19/19 13:00,"650 5th St, New York City, NY 10001" -158606,Apple Airpods Headphones,1,150,02/17/19 11:58,"998 6th St, San Francisco, CA 94016" -158607,Apple Airpods Headphones,1,150,02/08/19 04:24,"794 2nd St, Dallas, TX 75001" -158608,LG Washing Machine,1,600.0,02/11/19 09:29,"131 Highland St, Boston, MA 02215" -158609,Bose SoundSport Headphones,1,99.99,02/25/19 23:34,"276 Cedar St, Boston, MA 02215" -158610,AA Batteries (4-pack),1,3.84,02/15/19 12:38,"524 Center St, Boston, MA 02215" -158611,AA Batteries (4-pack),1,3.84,02/10/19 11:46,"850 2nd St, Austin, TX 73301" -158612,Wired Headphones,1,11.99,02/24/19 18:30,"366 1st St, San Francisco, CA 94016" -158613,27in 4K Gaming Monitor,1,389.99,02/27/19 11:03,"430 Wilson St, Boston, MA 02215" -158614,USB-C Charging Cable,1,11.95,02/07/19 06:20,"232 Maple St, San Francisco, CA 94016" -158615,Lightning Charging Cable,1,14.95,02/26/19 22:04,"134 Lincoln St, Los Angeles, CA 90001" -158616,27in FHD Monitor,1,149.99,02/09/19 11:16,"942 Jefferson St, New York City, NY 10001" -158617,USB-C Charging Cable,1,11.95,02/08/19 12:48,"835 Lake St, Austin, TX 73301" -158618,34in Ultrawide Monitor,1,379.99,02/09/19 13:52,"415 12th St, New York City, NY 10001" -158619,AAA Batteries (4-pack),1,2.99,02/11/19 23:59,"963 Chestnut St, Dallas, TX 75001" -158620,Apple Airpods Headphones,1,150,02/27/19 00:00,"712 Ridge St, Atlanta, GA 30301" -158621,AA Batteries (4-pack),2,3.84,02/03/19 10:14,"265 Sunset St, Portland, OR 97035" -158622,Lightning Charging Cable,1,14.95,02/16/19 09:08,"598 12th St, Los Angeles, CA 90001" -158623,Flatscreen TV,1,300,02/14/19 21:00,"392 10th St, Portland, OR 97035" -158624,Wired Headphones,1,11.99,02/01/19 15:29,"127 Johnson St, San Francisco, CA 94016" -158625,Wired Headphones,1,11.99,02/07/19 15:13,"130 Madison St, Dallas, TX 75001" -158626,Lightning Charging Cable,2,14.95,02/09/19 13:32,"54 Lake St, Los Angeles, CA 90001" -158627,AAA Batteries (4-pack),1,2.99,02/10/19 18:32,"821 Chestnut St, Dallas, TX 75001" -158628,USB-C Charging Cable,1,11.95,02/06/19 17:12,"522 Forest St, Los Angeles, CA 90001" -158629,Bose SoundSport Headphones,1,99.99,02/12/19 10:56,"282 River St, Austin, TX 73301" -158630,ThinkPad Laptop,1,999.99,02/19/19 15:50,"874 Main St, Austin, TX 73301" -158631,Wired Headphones,1,11.99,02/08/19 22:26,"451 Highland St, San Francisco, CA 94016" -158631,Bose SoundSport Headphones,1,99.99,02/08/19 22:26,"451 Highland St, San Francisco, CA 94016" -158632,AA Batteries (4-pack),1,3.84,02/09/19 12:58,"989 Elm St, Atlanta, GA 30301" -158633,AAA Batteries (4-pack),5,2.99,02/04/19 18:45,"16 Washington St, Atlanta, GA 30301" -158634,AA Batteries (4-pack),1,3.84,02/17/19 23:22,"623 7th St, Seattle, WA 98101" -158635,Lightning Charging Cable,1,14.95,02/22/19 18:48,"157 11th St, San Francisco, CA 94016" -158636,27in FHD Monitor,1,149.99,02/20/19 19:38,"490 South St, Boston, MA 02215" -158637,Lightning Charging Cable,1,14.95,02/27/19 12:41,"619 9th St, Atlanta, GA 30301" -158638,27in 4K Gaming Monitor,1,389.99,02/26/19 16:02,"417 1st St, Boston, MA 02215" -158639,27in 4K Gaming Monitor,1,389.99,02/12/19 18:38,"41 7th St, Seattle, WA 98101" -158640,Macbook Pro Laptop,1,1700,02/18/19 13:30,"519 River St, San Francisco, CA 94016" -158641,Flatscreen TV,1,300,02/21/19 17:01,"9 Lakeview St, Seattle, WA 98101" -158642,Vareebadd Phone,1,400,02/08/19 00:00,"356 Ridge St, Dallas, TX 75001" -158642,USB-C Charging Cable,1,11.95,02/08/19 00:00,"356 Ridge St, Dallas, TX 75001" -158643,AA Batteries (4-pack),1,3.84,02/23/19 16:34,"64 8th St, San Francisco, CA 94016" -158644,Lightning Charging Cable,1,14.95,02/18/19 14:53,"768 Wilson St, Atlanta, GA 30301" -158645,AA Batteries (4-pack),2,3.84,02/22/19 17:42,"63 9th St, Seattle, WA 98101" -158646,Lightning Charging Cable,1,14.95,02/23/19 03:12,"206 Elm St, Portland, OR 97035" -158647,AA Batteries (4-pack),2,3.84,02/12/19 19:52,"317 12th St, Atlanta, GA 30301" -158648,27in FHD Monitor,1,149.99,02/05/19 12:12,"822 1st St, New York City, NY 10001" -158649,USB-C Charging Cable,1,11.95,02/02/19 20:26,"307 7th St, San Francisco, CA 94016" -158650,AA Batteries (4-pack),2,3.84,02/15/19 17:42,"752 Willow St, San Francisco, CA 94016" -158651,Apple Airpods Headphones,1,150,02/27/19 22:59,"406 Maple St, New York City, NY 10001" -158652,Flatscreen TV,1,300,02/15/19 14:56,"54 Spruce St, Los Angeles, CA 90001" -158653,34in Ultrawide Monitor,1,379.99,02/07/19 21:50,"516 1st St, Atlanta, GA 30301" -158654,USB-C Charging Cable,1,11.95,02/27/19 12:07,"235 Madison St, San Francisco, CA 94016" -158655,27in 4K Gaming Monitor,1,389.99,02/09/19 20:56,"20 14th St, Boston, MA 02215" -158656,27in 4K Gaming Monitor,1,389.99,02/21/19 13:24,"475 Jackson St, Boston, MA 02215" -158657,Apple Airpods Headphones,1,150,02/07/19 12:11,"223 Church St, San Francisco, CA 94016" -158658,Bose SoundSport Headphones,1,99.99,02/06/19 13:12,"984 Sunset St, Los Angeles, CA 90001" -158659,AAA Batteries (4-pack),1,2.99,02/20/19 11:27,"476 Highland St, Boston, MA 02215" -158660,27in FHD Monitor,1,149.99,02/21/19 09:48,"411 2nd St, Seattle, WA 98101" -158661,AAA Batteries (4-pack),2,2.99,02/13/19 17:29,"896 14th St, New York City, NY 10001" -158662,AA Batteries (4-pack),1,3.84,02/10/19 12:30,"443 Park St, Boston, MA 02215" -158663,AA Batteries (4-pack),1,3.84,02/05/19 18:02,"757 Main St, New York City, NY 10001" -158664,AAA Batteries (4-pack),2,2.99,02/20/19 10:15,"421 Lake St, Portland, OR 97035" -158665,Apple Airpods Headphones,1,150,02/19/19 13:56,"598 Ridge St, New York City, NY 10001" -158666,AAA Batteries (4-pack),1,2.99,02/13/19 19:06,"223 North St, Portland, OR 97035" -158667,USB-C Charging Cable,1,11.95,02/13/19 15:48,"265 Jefferson St, Los Angeles, CA 90001" -158668,Bose SoundSport Headphones,1,99.99,02/14/19 06:56,"26 7th St, Portland, OR 97035" -158669,USB-C Charging Cable,1,11.95,02/04/19 10:36,"549 Park St, New York City, NY 10001" -158670,AA Batteries (4-pack),1,3.84,02/05/19 20:40,"376 Chestnut St, Atlanta, GA 30301" -158671,Flatscreen TV,1,300,02/17/19 17:19,"221 Walnut St, Atlanta, GA 30301" -158672,LG Washing Machine,1,600.0,02/18/19 18:03,"362 Washington St, Los Angeles, CA 90001" -158673,Flatscreen TV,1,300,02/01/19 13:06,"391 Lake St, San Francisco, CA 94016" -158674,AAA Batteries (4-pack),2,2.99,02/16/19 14:22,"208 Johnson St, Los Angeles, CA 90001" -158675,AAA Batteries (4-pack),1,2.99,02/21/19 14:11,"954 Main St, Los Angeles, CA 90001" -158676,34in Ultrawide Monitor,1,379.99,02/02/19 21:23,"150 5th St, Seattle, WA 98101" -158677,AAA Batteries (4-pack),2,2.99,02/24/19 12:42,"77 1st St, San Francisco, CA 94016" -158678,AAA Batteries (4-pack),1,2.99,02/01/19 12:28,"128 Spruce St, Atlanta, GA 30301" -158679,USB-C Charging Cable,1,11.95,02/07/19 20:49,"106 13th St, San Francisco, CA 94016" -158680,27in FHD Monitor,1,149.99,02/24/19 22:07,"889 Chestnut St, Seattle, WA 98101" -158681,AAA Batteries (4-pack),2,2.99,02/11/19 18:54,"252 Chestnut St, Los Angeles, CA 90001" -158682,ThinkPad Laptop,1,999.99,02/16/19 11:26,"430 11th St, Seattle, WA 98101" -158683,Wired Headphones,2,11.99,02/27/19 16:43,"749 Main St, New York City, NY 10001" -158684,Bose SoundSport Headphones,1,99.99,02/07/19 18:20,"451 Cedar St, Atlanta, GA 30301" -158685,AA Batteries (4-pack),1,3.84,02/05/19 12:53,"959 Forest St, Boston, MA 02215" -158686,20in Monitor,1,109.99,02/25/19 14:11,"533 4th St, Los Angeles, CA 90001" -158687,Macbook Pro Laptop,1,1700,02/10/19 13:46,"298 South St, Atlanta, GA 30301" -158688,AA Batteries (4-pack),1,3.84,02/13/19 11:53,"353 River St, Boston, MA 02215" -158689,AA Batteries (4-pack),1,3.84,02/21/19 22:18,"560 Sunset St, Boston, MA 02215" -158690,27in 4K Gaming Monitor,1,389.99,02/17/19 09:03,"572 Chestnut St, San Francisco, CA 94016" -158691,Wired Headphones,2,11.99,02/17/19 16:38,"231 14th St, Atlanta, GA 30301" -158692,27in FHD Monitor,1,149.99,02/14/19 06:33,"211 5th St, New York City, NY 10001" -158693,USB-C Charging Cable,1,11.95,02/09/19 09:48,"810 North St, Dallas, TX 75001" -158694,AAA Batteries (4-pack),3,2.99,02/23/19 20:35,"70 10th St, Boston, MA 02215" -158695,Apple Airpods Headphones,1,150,02/18/19 17:05,"535 Hickory St, Dallas, TX 75001" -158695,Lightning Charging Cable,1,14.95,02/18/19 17:05,"535 Hickory St, Dallas, TX 75001" -158696,Google Phone,1,600,02/23/19 08:29,"276 Sunset St, San Francisco, CA 94016" -158697,AA Batteries (4-pack),3,3.84,02/26/19 09:30,"436 Sunset St, Boston, MA 02215" -158698,27in 4K Gaming Monitor,1,389.99,02/04/19 19:33,"791 Dogwood St, San Francisco, CA 94016" -158699,USB-C Charging Cable,1,11.95,02/11/19 12:11,"765 12th St, Austin, TX 73301" -158700,Lightning Charging Cable,2,14.95,02/27/19 09:41,"768 Church St, Atlanta, GA 30301" -158701,AA Batteries (4-pack),1,3.84,02/07/19 10:42,"798 Pine St, Los Angeles, CA 90001" -158702,27in 4K Gaming Monitor,1,389.99,02/11/19 12:23,"699 2nd St, San Francisco, CA 94016" -158703,LG Washing Machine,1,600.0,02/01/19 06:50,"937 Adams St, Boston, MA 02215" -158704,Flatscreen TV,1,300,02/07/19 14:57,"81 2nd St, New York City, NY 10001" -158705,AAA Batteries (4-pack),1,2.99,02/14/19 19:50,"839 Elm St, Seattle, WA 98101" -158706,USB-C Charging Cable,1,11.95,02/07/19 09:09,"712 Willow St, Los Angeles, CA 90001" -158707,Bose SoundSport Headphones,1,99.99,02/19/19 13:35,"948 Pine St, San Francisco, CA 94016" -158708,Lightning Charging Cable,1,14.95,02/27/19 16:03,"766 7th St, New York City, NY 10001" -158709,Wired Headphones,3,11.99,02/05/19 11:49,"651 13th St, Austin, TX 73301" -158710,Lightning Charging Cable,1,14.95,02/16/19 21:59,"708 Meadow St, Atlanta, GA 30301" -158711,Wired Headphones,1,11.99,02/06/19 01:13,"969 Adams St, Austin, TX 73301" -158712,AAA Batteries (4-pack),1,2.99,02/15/19 12:01,"205 Hill St, Boston, MA 02215" -158713,Lightning Charging Cable,1,14.95,02/14/19 10:34,"899 6th St, Seattle, WA 98101" -158714,Lightning Charging Cable,1,14.95,02/22/19 10:49,"201 Lincoln St, Portland, ME 04101" -158715,USB-C Charging Cable,1,11.95,02/22/19 15:38,"226 Ridge St, Los Angeles, CA 90001" -158716,USB-C Charging Cable,1,11.95,02/06/19 13:22,"315 North St, Seattle, WA 98101" -158717,Flatscreen TV,1,300,02/01/19 17:18,"403 Willow St, Los Angeles, CA 90001" -158718,Bose SoundSport Headphones,1,99.99,02/06/19 21:36,"57 Cherry St, Los Angeles, CA 90001" -158719,Bose SoundSport Headphones,1,99.99,02/09/19 12:31,"63 Cedar St, Los Angeles, CA 90001" -158720,Lightning Charging Cable,1,14.95,02/12/19 21:54,"802 Walnut St, Seattle, WA 98101" -158721,Wired Headphones,1,11.99,02/27/19 11:32,"579 9th St, Seattle, WA 98101" -158722,USB-C Charging Cable,1,11.95,02/23/19 10:03,"970 Church St, Dallas, TX 75001" -158723,Lightning Charging Cable,1,14.95,02/14/19 08:10,"932 Madison St, Atlanta, GA 30301" -158724,Wired Headphones,1,11.99,02/26/19 22:22,"527 Church St, Seattle, WA 98101" -158725,Bose SoundSport Headphones,1,99.99,02/28/19 20:00,"431 8th St, Portland, ME 04101" -158726,Vareebadd Phone,1,400,02/06/19 10:53,"873 4th St, Boston, MA 02215" -158727,Lightning Charging Cable,1,14.95,02/04/19 19:17,"891 Chestnut St, New York City, NY 10001" -158728,USB-C Charging Cable,1,11.95,02/15/19 10:58,"568 2nd St, New York City, NY 10001" -158729,USB-C Charging Cable,1,11.95,02/27/19 22:27,"87 Madison St, San Francisco, CA 94016" -158730,Wired Headphones,1,11.99,02/02/19 09:48,"489 Spruce St, Los Angeles, CA 90001" -158731,Lightning Charging Cable,1,14.95,02/18/19 09:10,"610 9th St, Dallas, TX 75001" -158732,AAA Batteries (4-pack),1,2.99,02/17/19 17:02,"502 Forest St, San Francisco, CA 94016" -158733,27in 4K Gaming Monitor,1,389.99,02/27/19 20:25,"458 Lakeview St, Austin, TX 73301" -158734,Macbook Pro Laptop,1,1700,02/27/19 21:36,"314 2nd St, New York City, NY 10001" -158735,Wired Headphones,1,11.99,02/23/19 17:34,"68 Park St, New York City, NY 10001" -158736,Lightning Charging Cable,1,14.95,02/16/19 21:40,"488 Adams St, Los Angeles, CA 90001" -158737,USB-C Charging Cable,1,11.95,02/13/19 21:32,"196 Adams St, Atlanta, GA 30301" -158738,USB-C Charging Cable,1,11.95,02/23/19 13:10,"792 Meadow St, San Francisco, CA 94016" -158739,AAA Batteries (4-pack),1,2.99,02/05/19 20:34,"418 Main St, Dallas, TX 75001" -158740,AAA Batteries (4-pack),1,2.99,02/04/19 17:30,"110 13th St, Seattle, WA 98101" -158741,USB-C Charging Cable,1,11.95,02/24/19 14:23,"93 1st St, Boston, MA 02215" -158742,ThinkPad Laptop,1,999.99,02/28/19 23:04,"529 Jefferson St, San Francisco, CA 94016" -158743,Apple Airpods Headphones,1,150,02/03/19 11:34,"204 Center St, San Francisco, CA 94016" -158744,27in 4K Gaming Monitor,1,389.99,02/27/19 15:19,"769 Church St, Boston, MA 02215" -158745,Apple Airpods Headphones,1,150,02/03/19 19:26,"492 Church St, New York City, NY 10001" -158746,USB-C Charging Cable,1,11.95,02/28/19 00:32,"788 Lake St, Los Angeles, CA 90001" -158747,USB-C Charging Cable,1,11.95,02/07/19 19:45,"241 Cherry St, San Francisco, CA 94016" -158748,Vareebadd Phone,1,400,02/02/19 17:11,"610 Jackson St, Boston, MA 02215" -158749,Macbook Pro Laptop,1,1700,02/14/19 21:54,"150 Wilson St, Los Angeles, CA 90001" -158750,27in FHD Monitor,1,149.99,02/09/19 10:35,"194 Meadow St, Los Angeles, CA 90001" -158751,Flatscreen TV,1,300,02/21/19 23:22,"374 Lincoln St, New York City, NY 10001" -158752,Google Phone,1,600,02/17/19 16:11,"538 Pine St, Los Angeles, CA 90001" -158753,Lightning Charging Cable,1,14.95,02/11/19 10:58,"998 Lake St, New York City, NY 10001" -158754,20in Monitor,1,109.99,02/18/19 08:25,"662 Willow St, San Francisco, CA 94016" -158755,Apple Airpods Headphones,1,150,02/10/19 14:18,"686 Chestnut St, New York City, NY 10001" -158756,Flatscreen TV,1,300,02/01/19 23:27,"234 4th St, Los Angeles, CA 90001" -158757,Lightning Charging Cable,1,14.95,02/25/19 22:41,"307 Center St, Atlanta, GA 30301" -158758,Wired Headphones,1,11.99,02/26/19 22:01,"58 Madison St, New York City, NY 10001" -158759,AAA Batteries (4-pack),2,2.99,02/10/19 09:39,"915 Ridge St, Portland, OR 97035" -158760,Apple Airpods Headphones,1,150,02/07/19 19:39,"508 Jackson St, San Francisco, CA 94016" -158761,Bose SoundSport Headphones,1,99.99,02/26/19 09:12,"709 Cherry St, Dallas, TX 75001" -158762,ThinkPad Laptop,1,999.99,02/20/19 00:27,"711 5th St, Atlanta, GA 30301" -158763,AAA Batteries (4-pack),2,2.99,02/21/19 19:47,"578 8th St, San Francisco, CA 94016" -158764,Wired Headphones,1,11.99,02/15/19 18:38,"251 6th St, San Francisco, CA 94016" -158765,AAA Batteries (4-pack),1,2.99,02/02/19 17:55,"873 South St, New York City, NY 10001" -158766,AA Batteries (4-pack),1,3.84,02/05/19 21:52,"855 9th St, New York City, NY 10001" -158767,Lightning Charging Cable,1,14.95,02/07/19 18:20,"653 Hickory St, Los Angeles, CA 90001" -158768,USB-C Charging Cable,1,11.95,02/03/19 08:15,"592 14th St, New York City, NY 10001" -158769,USB-C Charging Cable,1,11.95,02/07/19 14:19,"651 13th St, Los Angeles, CA 90001" -158770,Lightning Charging Cable,1,14.95,02/15/19 14:30,"857 Park St, Portland, ME 04101" -158771,Lightning Charging Cable,1,14.95,02/20/19 17:46,"279 Lincoln St, San Francisco, CA 94016" -158772,iPhone,1,700,02/17/19 22:42,"973 Madison St, San Francisco, CA 94016" -158773,20in Monitor,1,109.99,02/11/19 19:05,"578 Forest St, New York City, NY 10001" -158774,Wired Headphones,1,11.99,02/25/19 11:13,"739 Lincoln St, Portland, OR 97035" -158775,27in FHD Monitor,1,149.99,02/22/19 09:09,"169 Meadow St, Los Angeles, CA 90001" -158776,Google Phone,1,600,02/22/19 20:10,"521 10th St, San Francisco, CA 94016" -158777,USB-C Charging Cable,1,11.95,02/17/19 23:19,"827 Willow St, Seattle, WA 98101" -158778,AAA Batteries (4-pack),1,2.99,02/13/19 15:57,"24 Walnut St, Los Angeles, CA 90001" -158779,Apple Airpods Headphones,1,150,02/15/19 11:35,"601 8th St, New York City, NY 10001" -158780,Wired Headphones,1,11.99,02/11/19 21:45,"977 6th St, New York City, NY 10001" -158781,Lightning Charging Cable,1,14.95,02/28/19 07:30,"241 14th St, Seattle, WA 98101" -158782,Google Phone,1,600,02/16/19 12:27,"37 6th St, Boston, MA 02215" -158783,AAA Batteries (4-pack),2,2.99,02/18/19 14:53,"989 Lake St, Portland, ME 04101" -158784,USB-C Charging Cable,1,11.95,02/01/19 18:35,"5 4th St, Los Angeles, CA 90001" -158785,AAA Batteries (4-pack),1,2.99,02/23/19 18:28,"101 Jefferson St, Dallas, TX 75001" -158786,USB-C Charging Cable,1,11.95,02/24/19 19:26,"680 4th St, New York City, NY 10001" -158787,USB-C Charging Cable,1,11.95,02/02/19 16:23,"991 North St, Austin, TX 73301" -158788,AA Batteries (4-pack),1,3.84,02/08/19 20:01,"965 Dogwood St, Los Angeles, CA 90001" -158789,AA Batteries (4-pack),1,3.84,02/23/19 09:54,"529 Lincoln St, San Francisco, CA 94016" -158790,27in FHD Monitor,1,149.99,02/13/19 19:37,"850 Pine St, San Francisco, CA 94016" -158791,Lightning Charging Cable,1,14.95,02/09/19 09:11,"945 1st St, Boston, MA 02215" -158792,LG Dryer,1,600.0,02/01/19 20:12,"998 Wilson St, Los Angeles, CA 90001" -158793,AA Batteries (4-pack),1,3.84,02/22/19 16:58,"468 Willow St, New York City, NY 10001" -158794,USB-C Charging Cable,1,11.95,02/01/19 12:55,"942 10th St, New York City, NY 10001" -158795,AAA Batteries (4-pack),1,2.99,02/26/19 07:48,"803 Highland St, San Francisco, CA 94016" -158796,USB-C Charging Cable,1,11.95,02/23/19 19:11,"968 11th St, San Francisco, CA 94016" -158797,Lightning Charging Cable,1,14.95,02/24/19 21:19,"45 Lakeview St, Los Angeles, CA 90001" -158798,iPhone,1,700,02/23/19 03:11,"301 Ridge St, Dallas, TX 75001" -158799,Wired Headphones,1,11.99,02/19/19 15:17,"628 Center St, San Francisco, CA 94016" -158800,Apple Airpods Headphones,1,150,02/21/19 12:39,"968 Jackson St, Los Angeles, CA 90001" -158801,Wired Headphones,1,11.99,02/27/19 19:50,"445 Willow St, New York City, NY 10001" -158802,27in FHD Monitor,1,149.99,02/18/19 13:47,"728 Cherry St, Boston, MA 02215" -158803,USB-C Charging Cable,2,11.95,02/05/19 20:20,"425 Church St, Los Angeles, CA 90001" -158804,AAA Batteries (4-pack),1,2.99,02/22/19 15:32,"857 Jefferson St, Boston, MA 02215" -158805,34in Ultrawide Monitor,1,379.99,02/16/19 10:44,"345 Lakeview St, Los Angeles, CA 90001" -158806,ThinkPad Laptop,1,999.99,02/21/19 09:55,"350 Pine St, New York City, NY 10001" -158807,Bose SoundSport Headphones,1,99.99,02/07/19 21:13,"46 Walnut St, Boston, MA 02215" -158808,20in Monitor,1,109.99,02/27/19 22:53,"413 Ridge St, Los Angeles, CA 90001" -158809,USB-C Charging Cable,1,11.95,02/28/19 18:01,"380 4th St, Portland, ME 04101" -158810,AA Batteries (4-pack),1,3.84,02/19/19 09:10,"407 Spruce St, Seattle, WA 98101" -158811,Apple Airpods Headphones,1,150,02/06/19 15:33,"764 Hill St, New York City, NY 10001" -158812,Wired Headphones,1,11.99,02/19/19 06:50,"302 West St, New York City, NY 10001" -158813,Bose SoundSport Headphones,1,99.99,02/13/19 17:08,"152 Hill St, Boston, MA 02215" -158814,USB-C Charging Cable,1,11.95,02/16/19 12:12,"73 Madison St, San Francisco, CA 94016" -158815,Vareebadd Phone,1,400,02/14/19 22:13,"436 Chestnut St, Los Angeles, CA 90001" -158816,USB-C Charging Cable,1,11.95,02/14/19 20:35,"316 Maple St, Austin, TX 73301" -158817,27in 4K Gaming Monitor,2,389.99,02/08/19 10:56,"732 Park St, New York City, NY 10001" -158818,Flatscreen TV,1,300,02/19/19 13:25,"356 10th St, Seattle, WA 98101" -158819,27in 4K Gaming Monitor,1,389.99,02/21/19 23:17,"420 Maple St, Boston, MA 02215" -158820,Lightning Charging Cable,1,14.95,02/09/19 07:29,"721 5th St, San Francisco, CA 94016" -158821,Vareebadd Phone,1,400,02/07/19 02:23,"837 Church St, San Francisco, CA 94016" -158822,USB-C Charging Cable,1,11.95,02/24/19 15:23,"53 Church St, New York City, NY 10001" -158823,ThinkPad Laptop,1,999.99,02/18/19 15:44,"609 4th St, San Francisco, CA 94016" -158824,Lightning Charging Cable,1,14.95,02/22/19 00:07,"517 Church St, Boston, MA 02215" -158825,AAA Batteries (4-pack),1,2.99,02/11/19 21:52,"251 7th St, San Francisco, CA 94016" -158826,AA Batteries (4-pack),1,3.84,02/20/19 16:49,"554 Ridge St, New York City, NY 10001" -158827,34in Ultrawide Monitor,1,379.99,02/07/19 17:57,"632 Madison St, New York City, NY 10001" -158828,Apple Airpods Headphones,1,150,02/09/19 15:25,"554 13th St, Los Angeles, CA 90001" -158829,USB-C Charging Cable,1,11.95,02/27/19 19:12,"68 4th St, Austin, TX 73301" -158830,Lightning Charging Cable,1,14.95,02/19/19 14:17,"660 14th St, New York City, NY 10001" -158831,Macbook Pro Laptop,1,1700,02/10/19 13:18,"39 Washington St, Portland, ME 04101" -158832,Apple Airpods Headphones,1,150,02/14/19 00:35,"940 River St, San Francisco, CA 94016" -158833,AAA Batteries (4-pack),4,2.99,02/23/19 10:22,"992 14th St, Dallas, TX 75001" -158834,27in 4K Gaming Monitor,1,389.99,02/12/19 19:29,"178 Chestnut St, Portland, OR 97035" -158835,Google Phone,1,600,02/21/19 17:25,"389 Main St, San Francisco, CA 94016" -158836,AAA Batteries (4-pack),1,2.99,02/15/19 00:26,"508 6th St, Atlanta, GA 30301" -158837,Macbook Pro Laptop,1,1700,02/19/19 13:16,"545 4th St, Los Angeles, CA 90001" -158838,Wired Headphones,1,11.99,02/14/19 20:06,"134 Pine St, Los Angeles, CA 90001" -158839,AAA Batteries (4-pack),1,2.99,02/23/19 09:51,"836 6th St, New York City, NY 10001" -158840,Lightning Charging Cable,1,14.95,02/20/19 21:32,"91 Chestnut St, New York City, NY 10001" -158841,34in Ultrawide Monitor,1,379.99,02/01/19 23:16,"786 Willow St, Boston, MA 02215" -158841,34in Ultrawide Monitor,1,379.99,02/01/19 23:16,"786 Willow St, Boston, MA 02215" -158842,USB-C Charging Cable,1,11.95,02/08/19 13:29,"58 Church St, San Francisco, CA 94016" -158843,34in Ultrawide Monitor,1,379.99,02/11/19 22:29,"462 6th St, Seattle, WA 98101" -158844,Lightning Charging Cable,1,14.95,02/08/19 10:05,"342 13th St, New York City, NY 10001" -158845,Wired Headphones,1,11.99,02/07/19 15:33,"156 Walnut St, San Francisco, CA 94016" -158846,USB-C Charging Cable,1,11.95,02/05/19 15:43,"111 Jackson St, San Francisco, CA 94016" -158847,27in FHD Monitor,1,149.99,02/15/19 18:13,"501 Church St, New York City, NY 10001" -158848,iPhone,1,700,02/08/19 12:41,"902 Willow St, Los Angeles, CA 90001" -158849,Lightning Charging Cable,1,14.95,02/13/19 16:55,"497 Chestnut St, Los Angeles, CA 90001" -158850,Google Phone,1,600,02/15/19 22:37,"529 1st St, Los Angeles, CA 90001" -158850,USB-C Charging Cable,1,11.95,02/15/19 22:37,"529 1st St, Los Angeles, CA 90001" -158851,Lightning Charging Cable,1,14.95,02/07/19 19:04,"843 Washington St, Austin, TX 73301" -158852,Vareebadd Phone,1,400,02/12/19 17:53,"798 Main St, San Francisco, CA 94016" -158852,Wired Headphones,1,11.99,02/12/19 17:53,"798 Main St, San Francisco, CA 94016" -158853,AA Batteries (4-pack),1,3.84,02/12/19 20:35,"955 Chestnut St, San Francisco, CA 94016" -158854,AAA Batteries (4-pack),1,2.99,02/23/19 10:39,"308 Hickory St, Atlanta, GA 30301" -158855,Lightning Charging Cable,1,14.95,02/03/19 20:21,"671 Johnson St, Dallas, TX 75001" -158856,AA Batteries (4-pack),1,3.84,02/12/19 09:05,"130 Hickory St, Portland, OR 97035" -158857,ThinkPad Laptop,1,999.99,02/03/19 12:22,"973 14th St, New York City, NY 10001" -158858,USB-C Charging Cable,1,11.95,02/26/19 19:29,"769 12th St, Austin, TX 73301" -158859,AAA Batteries (4-pack),2,2.99,02/08/19 21:55,"219 6th St, San Francisco, CA 94016" -158860,Apple Airpods Headphones,1,150,02/08/19 07:38,"91 Center St, Los Angeles, CA 90001" -158861,Vareebadd Phone,1,400,02/24/19 15:39,"764 Park St, Austin, TX 73301" -158862,Lightning Charging Cable,2,14.95,02/26/19 16:18,"60 Elm St, Atlanta, GA 30301" -158863,ThinkPad Laptop,1,999.99,02/21/19 15:01,"282 River St, Boston, MA 02215" -158864,Lightning Charging Cable,1,14.95,02/12/19 22:14,"467 Meadow St, New York City, NY 10001" -158865,ThinkPad Laptop,1,999.99,02/27/19 17:32,"829 Lake St, Los Angeles, CA 90001" -158866,Google Phone,1,600,02/13/19 16:20,"960 Sunset St, San Francisco, CA 94016" -158866,USB-C Charging Cable,1,11.95,02/13/19 16:20,"960 Sunset St, San Francisco, CA 94016" -158867,Lightning Charging Cable,1,14.95,02/20/19 08:47,"768 Walnut St, New York City, NY 10001" -158868,Bose SoundSport Headphones,1,99.99,02/24/19 19:46,"33 Adams St, Portland, OR 97035" -158869,27in FHD Monitor,1,149.99,02/12/19 17:49,"301 Elm St, Atlanta, GA 30301" -158870,AA Batteries (4-pack),2,3.84,02/21/19 15:17,"784 Ridge St, Los Angeles, CA 90001" -158871,27in FHD Monitor,1,149.99,02/24/19 22:27,"11 Lincoln St, San Francisco, CA 94016" -158872,Lightning Charging Cable,1,14.95,02/25/19 00:38,"947 8th St, Boston, MA 02215" -158873,Lightning Charging Cable,1,14.95,02/24/19 01:53,"995 6th St, San Francisco, CA 94016" -158874,27in FHD Monitor,1,149.99,02/25/19 11:53,"516 Spruce St, New York City, NY 10001" -158875,AA Batteries (4-pack),1,3.84,02/08/19 19:26,"353 Jackson St, Los Angeles, CA 90001" -158876,AA Batteries (4-pack),1,3.84,02/14/19 12:55,"284 Jackson St, Seattle, WA 98101" -158877,27in FHD Monitor,1,149.99,02/06/19 13:42,"667 Johnson St, Austin, TX 73301" -158878,27in 4K Gaming Monitor,1,389.99,02/01/19 07:54,"802 South St, San Francisco, CA 94016" -158879,USB-C Charging Cable,1,11.95,02/25/19 05:41,"178 Elm St, New York City, NY 10001" -158880,Wired Headphones,1,11.99,02/20/19 22:06,"192 Pine St, Atlanta, GA 30301" -158881,AA Batteries (4-pack),1,3.84,02/17/19 17:01,"130 Willow St, Los Angeles, CA 90001" -158882,AA Batteries (4-pack),2,3.84,02/22/19 20:22,"837 Lincoln St, Dallas, TX 75001" -158883,Bose SoundSport Headphones,1,99.99,02/27/19 14:29,"584 11th St, San Francisco, CA 94016" -158884,Google Phone,1,600,02/23/19 22:47,"96 Church St, Portland, ME 04101" -158884,USB-C Charging Cable,1,11.95,02/23/19 22:47,"96 Church St, Portland, ME 04101" -158885,AAA Batteries (4-pack),1,2.99,02/18/19 14:13,"643 10th St, Boston, MA 02215" -158886,Google Phone,1,600,02/24/19 17:46,"902 Elm St, Atlanta, GA 30301" -158887,20in Monitor,1,109.99,02/15/19 13:59,"477 Park St, San Francisco, CA 94016" -158888,ThinkPad Laptop,1,999.99,02/24/19 12:09,"86 West St, New York City, NY 10001" -158889,Google Phone,1,600,02/10/19 09:23,"561 Lake St, Portland, OR 97035" -158890,Apple Airpods Headphones,1,150,02/07/19 13:10,"118 North St, Seattle, WA 98101" -158891,Lightning Charging Cable,1,14.95,02/05/19 07:19,"113 North St, San Francisco, CA 94016" -158892,Apple Airpods Headphones,1,150,02/10/19 17:32,"748 Madison St, Los Angeles, CA 90001" -158893,USB-C Charging Cable,1,11.95,02/08/19 15:32,"522 Hickory St, Dallas, TX 75001" -158894,Apple Airpods Headphones,1,150,02/05/19 17:10,"722 Dogwood St, Portland, ME 04101" -158895,AA Batteries (4-pack),2,3.84,02/17/19 08:39,"152 South St, New York City, NY 10001" -158896,Lightning Charging Cable,1,14.95,02/13/19 13:29,"456 South St, Los Angeles, CA 90001" -158897,Wired Headphones,1,11.99,02/13/19 22:59,"326 West St, San Francisco, CA 94016" -158898,AAA Batteries (4-pack),1,2.99,02/13/19 17:55,"330 Walnut St, Atlanta, GA 30301" -158899,USB-C Charging Cable,1,11.95,02/11/19 15:24,"884 Lincoln St, Austin, TX 73301" -158899,34in Ultrawide Monitor,1,379.99,02/11/19 15:24,"884 Lincoln St, Austin, TX 73301" -158900,USB-C Charging Cable,1,11.95,02/02/19 20:52,"556 Church St, New York City, NY 10001" -158901,27in 4K Gaming Monitor,1,389.99,02/08/19 21:53,"518 Cedar St, San Francisco, CA 94016" -158902,Vareebadd Phone,1,400,02/16/19 08:05,"701 Meadow St, Boston, MA 02215" -158903,Wired Headphones,1,11.99,02/17/19 18:10,"353 Hill St, Seattle, WA 98101" -158904,iPhone,1,700,02/01/19 16:47,"990 Main St, Atlanta, GA 30301" -158905,27in FHD Monitor,1,149.99,02/09/19 20:13,"515 Hickory St, Austin, TX 73301" -158906,Lightning Charging Cable,1,14.95,02/05/19 02:11,"110 Washington St, Los Angeles, CA 90001" -158907,Lightning Charging Cable,1,14.95,02/13/19 10:42,"180 Adams St, San Francisco, CA 94016" -158908,Lightning Charging Cable,1,14.95,02/06/19 16:41,"122 Elm St, New York City, NY 10001" -158909,Lightning Charging Cable,1,14.95,02/02/19 18:39,"981 Cherry St, San Francisco, CA 94016" -158910,USB-C Charging Cable,1,11.95,02/16/19 21:13,"691 10th St, San Francisco, CA 94016" -158911,Wired Headphones,1,11.99,02/02/19 22:35,"776 River St, San Francisco, CA 94016" -158912,Wired Headphones,1,11.99,02/26/19 23:07,"213 Jefferson St, Boston, MA 02215" -158913,Apple Airpods Headphones,1,150,02/19/19 21:10,"180 Johnson St, Austin, TX 73301" -158914,Google Phone,1,600,02/22/19 08:06,"637 Forest St, San Francisco, CA 94016" -158915,27in 4K Gaming Monitor,1,389.99,02/12/19 17:04,"408 Jefferson St, Los Angeles, CA 90001" -158916,20in Monitor,1,109.99,02/03/19 01:25,"733 1st St, San Francisco, CA 94016" -158917,USB-C Charging Cable,1,11.95,02/09/19 21:01,"464 Madison St, San Francisco, CA 94016" -158918,AAA Batteries (4-pack),3,2.99,02/08/19 22:03,"290 Meadow St, New York City, NY 10001" -158919,AAA Batteries (4-pack),2,2.99,02/01/19 13:59,"831 10th St, San Francisco, CA 94016" -158920,Apple Airpods Headphones,1,150,02/09/19 12:23,"102 Lakeview St, San Francisco, CA 94016" -158921,20in Monitor,1,109.99,02/09/19 20:02,"2 11th St, New York City, NY 10001" -158922,Wired Headphones,1,11.99,02/06/19 18:56,"790 Jackson St, Atlanta, GA 30301" -158923,Bose SoundSport Headphones,1,99.99,02/05/19 10:39,"429 Cherry St, Austin, TX 73301" -158924,34in Ultrawide Monitor,1,379.99,02/20/19 06:35,"849 1st St, Portland, OR 97035" -158925,Bose SoundSport Headphones,1,99.99,02/04/19 16:29,"422 9th St, New York City, NY 10001" -158926,iPhone,1,700,02/15/19 12:58,"227 Park St, Portland, OR 97035" -158927,Wired Headphones,1,11.99,02/26/19 13:21,"542 Jackson St, New York City, NY 10001" -158928,AAA Batteries (4-pack),1,2.99,02/24/19 14:52,"208 Hill St, New York City, NY 10001" -158929,AAA Batteries (4-pack),1,2.99,02/02/19 08:18,"983 14th St, New York City, NY 10001" -158930,Lightning Charging Cable,1,14.95,02/07/19 20:06,"859 10th St, Los Angeles, CA 90001" -158931,Bose SoundSport Headphones,1,99.99,02/10/19 09:42,"246 13th St, Portland, OR 97035" -158932,AAA Batteries (4-pack),1,2.99,02/26/19 16:35,"200 Forest St, Boston, MA 02215" -158933,AA Batteries (4-pack),1,3.84,02/12/19 23:01,"58 South St, Los Angeles, CA 90001" -158934,AAA Batteries (4-pack),1,2.99,02/16/19 16:24,"481 Dogwood St, Los Angeles, CA 90001" -158935,USB-C Charging Cable,1,11.95,02/12/19 14:26,"527 Church St, Los Angeles, CA 90001" -158936,Macbook Pro Laptop,1,1700,02/02/19 17:39,"206 12th St, New York City, NY 10001" -158937,20in Monitor,1,109.99,02/11/19 12:39,"385 West St, San Francisco, CA 94016" -158938,LG Washing Machine,1,600.0,02/04/19 00:23,"481 Adams St, Los Angeles, CA 90001" -158939,Lightning Charging Cable,1,14.95,02/02/19 20:20,"400 Chestnut St, San Francisco, CA 94016" -158940,Lightning Charging Cable,1,14.95,02/19/19 17:06,"70 Pine St, Portland, ME 04101" -158941,AA Batteries (4-pack),1,3.84,02/13/19 15:20,"460 8th St, Seattle, WA 98101" -158942,Bose SoundSport Headphones,1,99.99,02/18/19 08:55,"210 Pine St, Portland, OR 97035" -158943,20in Monitor,1,109.99,02/25/19 11:57,"6 Lakeview St, Portland, OR 97035" -158944,iPhone,1,700,02/20/19 16:12,"703 Pine St, Dallas, TX 75001" -158945,AA Batteries (4-pack),2,3.84,02/21/19 21:57,"993 7th St, Boston, MA 02215" -158946,Apple Airpods Headphones,1,150,02/05/19 18:04,"103 13th St, Boston, MA 02215" -158947,ThinkPad Laptop,1,999.99,02/13/19 07:25,"844 Main St, Austin, TX 73301" -158948,USB-C Charging Cable,1,11.95,02/26/19 15:28,"702 12th St, Seattle, WA 98101" -158949,AA Batteries (4-pack),1,3.84,02/20/19 18:49,"908 Dogwood St, Austin, TX 73301" -158950,Bose SoundSport Headphones,1,99.99,02/02/19 16:09,"376 Spruce St, Los Angeles, CA 90001" -158951,27in FHD Monitor,1,149.99,02/09/19 23:33,"307 Adams St, Seattle, WA 98101" -158952,Wired Headphones,1,11.99,02/22/19 17:46,"84 South St, San Francisco, CA 94016" -158953,AA Batteries (4-pack),1,3.84,02/17/19 15:50,"256 River St, Los Angeles, CA 90001" -158954,Apple Airpods Headphones,1,150,02/16/19 16:36,"287 River St, Boston, MA 02215" -158955,Vareebadd Phone,1,400,02/19/19 02:26,"930 Walnut St, San Francisco, CA 94016" -158955,USB-C Charging Cable,1,11.95,02/19/19 02:26,"930 Walnut St, San Francisco, CA 94016" -158956,Wired Headphones,1,11.99,02/09/19 09:56,"177 14th St, San Francisco, CA 94016" -158957,Lightning Charging Cable,1,14.95,02/18/19 16:37,"89 Church St, Seattle, WA 98101" -158958,AA Batteries (4-pack),1,3.84,02/26/19 09:22,"422 Cherry St, Austin, TX 73301" -158959,USB-C Charging Cable,1,11.95,02/22/19 18:31,"99 Johnson St, San Francisco, CA 94016" -158960,ThinkPad Laptop,1,999.99,02/01/19 14:19,"386 6th St, New York City, NY 10001" -158961,Bose SoundSport Headphones,1,99.99,02/22/19 17:33,"311 Jackson St, San Francisco, CA 94016" -158962,AAA Batteries (4-pack),2,2.99,02/12/19 11:29,"664 Willow St, Boston, MA 02215" -158963,Bose SoundSport Headphones,1,99.99,02/14/19 18:26,"589 14th St, Los Angeles, CA 90001" -158964,AAA Batteries (4-pack),1,2.99,02/24/19 10:12,"679 2nd St, Portland, ME 04101" -158965,Wired Headphones,1,11.99,02/06/19 17:36,"621 Park St, Seattle, WA 98101" -158966,AA Batteries (4-pack),2,3.84,02/03/19 19:22,"406 Wilson St, Austin, TX 73301" -158967,Google Phone,1,600,02/04/19 19:41,"12 Maple St, Boston, MA 02215" -158968,Apple Airpods Headphones,1,150,02/13/19 18:05,"516 7th St, Atlanta, GA 30301" -158969,Apple Airpods Headphones,1,150,02/18/19 23:41,"440 West St, Seattle, WA 98101" -158970,LG Washing Machine,1,600.0,02/03/19 13:16,"510 Forest St, San Francisco, CA 94016" -158971,AAA Batteries (4-pack),1,2.99,02/10/19 12:32,"466 Jefferson St, San Francisco, CA 94016" -158972,AA Batteries (4-pack),1,3.84,02/20/19 21:16,"405 Meadow St, Seattle, WA 98101" -158973,34in Ultrawide Monitor,1,379.99,02/10/19 20:19,"602 Cherry St, San Francisco, CA 94016" -158973,AA Batteries (4-pack),3,3.84,02/10/19 20:19,"602 Cherry St, San Francisco, CA 94016" -158974,LG Washing Machine,1,600.0,02/05/19 11:52,"864 Jackson St, New York City, NY 10001" -158975,Lightning Charging Cable,1,14.95,02/14/19 23:49,"775 Wilson St, San Francisco, CA 94016" -158976,20in Monitor,1,109.99,02/27/19 20:54,"267 4th St, San Francisco, CA 94016" -158977,AAA Batteries (4-pack),1,2.99,02/10/19 15:26,"357 Pine St, New York City, NY 10001" -158978,Apple Airpods Headphones,1,150,02/12/19 14:57,"678 Hickory St, Los Angeles, CA 90001" -158979,Wired Headphones,1,11.99,02/10/19 14:45,"439 Main St, Los Angeles, CA 90001" -158980,Google Phone,1,600,02/26/19 22:31,"785 Park St, San Francisco, CA 94016" -158981,Google Phone,1,600,02/22/19 11:44,"954 2nd St, San Francisco, CA 94016" -158982,27in FHD Monitor,1,149.99,02/05/19 21:18,"279 7th St, Portland, OR 97035" -158983,Apple Airpods Headphones,1,150,02/26/19 13:40,"547 1st St, Austin, TX 73301" -158984,USB-C Charging Cable,1,11.95,02/25/19 21:07,"440 Spruce St, San Francisco, CA 94016" -158985,AA Batteries (4-pack),3,3.84,02/24/19 16:58,"205 5th St, Boston, MA 02215" -158986,AA Batteries (4-pack),3,3.84,02/16/19 20:33,"331 Walnut St, Los Angeles, CA 90001" -158987,USB-C Charging Cable,1,11.95,02/19/19 21:40,"95 Sunset St, Boston, MA 02215" -158988,Wired Headphones,1,11.99,02/24/19 22:56,"480 Elm St, Los Angeles, CA 90001" -158989,AAA Batteries (4-pack),1,2.99,02/26/19 16:43,"485 13th St, San Francisco, CA 94016" -158990,Google Phone,1,600,02/09/19 08:23,"842 Maple St, Boston, MA 02215" -158991,27in 4K Gaming Monitor,1,389.99,02/26/19 21:37,"110 South St, Atlanta, GA 30301" -158992,27in FHD Monitor,1,149.99,02/06/19 14:10,"254 Willow St, San Francisco, CA 94016" -158993,AAA Batteries (4-pack),1,2.99,02/13/19 10:04,"907 West St, Boston, MA 02215" -158994,AAA Batteries (4-pack),2,2.99,02/20/19 13:01,"589 14th St, Austin, TX 73301" -158995,Lightning Charging Cable,1,14.95,02/12/19 23:06,"740 5th St, Atlanta, GA 30301" -158996,Bose SoundSport Headphones,1,99.99,02/05/19 12:02,"951 10th St, San Francisco, CA 94016" -158997,USB-C Charging Cable,1,11.95,02/14/19 23:35,"455 Cedar St, Seattle, WA 98101" -158998,27in FHD Monitor,1,149.99,02/04/19 17:33,"814 7th St, San Francisco, CA 94016" -158999,AAA Batteries (4-pack),3,2.99,02/21/19 12:28,"684 Maple St, Seattle, WA 98101" -159000,iPhone,1,700,02/04/19 10:40,"238 Pine St, New York City, NY 10001" -159000,Lightning Charging Cable,1,14.95,02/04/19 10:40,"238 Pine St, New York City, NY 10001" -159000,Wired Headphones,1,11.99,02/04/19 10:40,"238 Pine St, New York City, NY 10001" -159001,USB-C Charging Cable,1,11.95,02/15/19 09:41,"27 5th St, San Francisco, CA 94016" -159002,Wired Headphones,1,11.99,02/03/19 15:05,"776 5th St, Boston, MA 02215" -159003,AAA Batteries (4-pack),2,2.99,02/07/19 11:03,"204 9th St, Los Angeles, CA 90001" -159004,Bose SoundSport Headphones,1,99.99,02/23/19 18:54,"436 5th St, Atlanta, GA 30301" -159005,Lightning Charging Cable,1,14.95,02/02/19 17:29,"840 Chestnut St, New York City, NY 10001" -159006,Lightning Charging Cable,1,14.95,02/04/19 11:45,"74 South St, Atlanta, GA 30301" -159007,Lightning Charging Cable,1,14.95,02/09/19 20:50,"812 Maple St, San Francisco, CA 94016" -159008,34in Ultrawide Monitor,1,379.99,02/04/19 07:19,"442 Church St, Seattle, WA 98101" -159009,AAA Batteries (4-pack),1,2.99,02/16/19 12:05,"233 Maple St, San Francisco, CA 94016" -159010,iPhone,1,700,02/27/19 17:23,"459 Lakeview St, Austin, TX 73301" -159011,AAA Batteries (4-pack),2,2.99,02/28/19 18:50,"471 11th St, New York City, NY 10001" -159012,AA Batteries (4-pack),2,3.84,02/15/19 20:27,"311 5th St, San Francisco, CA 94016" -159013,AAA Batteries (4-pack),1,2.99,02/15/19 13:07,"747 Lincoln St, Los Angeles, CA 90001" -159014,USB-C Charging Cable,1,11.95,02/11/19 19:12,"310 Ridge St, Seattle, WA 98101" -159015,Macbook Pro Laptop,1,1700,02/21/19 18:21,"845 8th St, Atlanta, GA 30301" -159016,27in 4K Gaming Monitor,1,389.99,02/24/19 17:25,"891 Willow St, Seattle, WA 98101" -159017,Bose SoundSport Headphones,1,99.99,02/19/19 22:01,"559 Church St, San Francisco, CA 94016" -159018,Lightning Charging Cable,1,14.95,02/09/19 21:32,"565 6th St, Los Angeles, CA 90001" -159019,Wired Headphones,1,11.99,02/12/19 10:49,"892 Forest St, San Francisco, CA 94016" -159020,Apple Airpods Headphones,1,150,02/26/19 13:19,"327 Johnson St, Portland, OR 97035" -159021,AAA Batteries (4-pack),1,2.99,02/17/19 16:26,"700 West St, Los Angeles, CA 90001" -159022,34in Ultrawide Monitor,1,379.99,02/15/19 14:22,"15 11th St, Dallas, TX 75001" -159023,USB-C Charging Cable,1,11.95,02/27/19 14:56,"983 8th St, San Francisco, CA 94016" -159024,ThinkPad Laptop,1,999.99,02/13/19 19:11,"728 Ridge St, San Francisco, CA 94016" -159025,AAA Batteries (4-pack),1,2.99,02/24/19 15:11,"76 Walnut St, Boston, MA 02215" -159026,iPhone,1,700,02/01/19 17:02,"494 13th St, Boston, MA 02215" -159026,Wired Headphones,2,11.99,02/01/19 17:02,"494 13th St, Boston, MA 02215" -159027,Wired Headphones,1,11.99,02/10/19 11:56,"738 Forest St, Atlanta, GA 30301" -159028,Macbook Pro Laptop,1,1700,02/17/19 14:04,"191 Wilson St, Austin, TX 73301" -159029,Google Phone,1,600,02/17/19 22:29,"866 7th St, Atlanta, GA 30301" -159030,USB-C Charging Cable,1,11.95,02/10/19 17:18,"560 1st St, Portland, OR 97035" -159031,USB-C Charging Cable,1,11.95,02/22/19 11:03,"303 West St, Atlanta, GA 30301" -159032,Lightning Charging Cable,1,14.95,02/19/19 14:21,"110 Elm St, Portland, OR 97035" -159033,Wired Headphones,2,11.99,02/17/19 18:39,"227 River St, Atlanta, GA 30301" -159034,ThinkPad Laptop,1,999.99,02/15/19 15:19,"722 1st St, Portland, OR 97035" -159035,USB-C Charging Cable,1,11.95,02/05/19 09:38,"620 8th St, San Francisco, CA 94016" -159036,AAA Batteries (4-pack),1,2.99,02/06/19 18:57,"853 Cedar St, Dallas, TX 75001" -159037,20in Monitor,1,109.99,02/08/19 10:44,"189 Church St, San Francisco, CA 94016" -159038,Lightning Charging Cable,1,14.95,02/03/19 18:24,"109 North St, Los Angeles, CA 90001" -159039,27in 4K Gaming Monitor,1,389.99,02/26/19 15:11,"609 River St, San Francisco, CA 94016" -159040,34in Ultrawide Monitor,1,379.99,02/14/19 12:06,"528 Madison St, San Francisco, CA 94016" -159041,Bose SoundSport Headphones,1,99.99,02/22/19 19:36,"22 Church St, Boston, MA 02215" -159041,USB-C Charging Cable,1,11.95,02/22/19 19:36,"22 Church St, Boston, MA 02215" -159042,Bose SoundSport Headphones,1,99.99,02/26/19 22:15,"483 7th St, San Francisco, CA 94016" -159043,Lightning Charging Cable,1,14.95,02/09/19 20:58,"577 6th St, Portland, OR 97035" -159044,Bose SoundSport Headphones,1,99.99,02/07/19 10:12,"944 5th St, Boston, MA 02215" -159045,Google Phone,1,600,02/25/19 10:19,"709 Maple St, Los Angeles, CA 90001" -159045,Lightning Charging Cable,1,14.95,02/25/19 10:19,"709 Maple St, Los Angeles, CA 90001" -159046,USB-C Charging Cable,2,11.95,02/13/19 23:39,"509 Hill St, Dallas, TX 75001" -159047,AA Batteries (4-pack),1,3.84,02/18/19 08:17,"893 10th St, Seattle, WA 98101" -159048,USB-C Charging Cable,1,11.95,02/23/19 10:31,"225 Hill St, Los Angeles, CA 90001" -159049,AAA Batteries (4-pack),1,2.99,02/04/19 13:10,"936 14th St, Seattle, WA 98101" -159050,iPhone,1,700,02/09/19 21:30,"993 South St, Atlanta, GA 30301" -159051,AA Batteries (4-pack),1,3.84,02/09/19 17:05,"593 2nd St, Los Angeles, CA 90001" -159052,USB-C Charging Cable,2,11.95,02/01/19 14:46,"438 14th St, San Francisco, CA 94016" -159053,Lightning Charging Cable,2,14.95,02/16/19 18:31,"31 South St, New York City, NY 10001" -159054,AAA Batteries (4-pack),1,2.99,02/13/19 18:51,"945 8th St, Dallas, TX 75001" -159055,AA Batteries (4-pack),1,3.84,02/01/19 14:38,"33 10th St, New York City, NY 10001" -159056,27in FHD Monitor,1,149.99,02/26/19 19:21,"889 Chestnut St, Boston, MA 02215" -159057,Lightning Charging Cable,1,14.95,02/10/19 14:03,"837 13th St, Austin, TX 73301" -159058,20in Monitor,1,109.99,02/02/19 19:47,"282 North St, Boston, MA 02215" -159059,Macbook Pro Laptop,1,1700,02/08/19 17:24,"235 Cedar St, Portland, OR 97035" -159060,Bose SoundSport Headphones,1,99.99,02/24/19 15:42,"94 Willow St, San Francisco, CA 94016" -159061,USB-C Charging Cable,1,11.95,02/15/19 22:09,"46 Madison St, Austin, TX 73301" -159062,Wired Headphones,1,11.99,02/12/19 14:07,"325 Forest St, San Francisco, CA 94016" -159063,Flatscreen TV,1,300,02/07/19 20:24,"518 4th St, San Francisco, CA 94016" -159064,AAA Batteries (4-pack),1,2.99,02/19/19 17:09,"522 Elm St, Los Angeles, CA 90001" -159065,Macbook Pro Laptop,1,1700,02/12/19 22:53,"515 Lakeview St, Boston, MA 02215" -159066,AA Batteries (4-pack),1,3.84,02/09/19 11:20,"516 Pine St, New York City, NY 10001" -159067,27in 4K Gaming Monitor,1,389.99,02/20/19 17:21,"625 Washington St, Los Angeles, CA 90001" -159068,Lightning Charging Cable,2,14.95,02/21/19 10:10,"163 Hill St, Portland, OR 97035" -159069,Wired Headphones,2,11.99,02/26/19 18:52,"351 Washington St, San Francisco, CA 94016" -159070,Lightning Charging Cable,1,14.95,02/26/19 21:24,"815 Willow St, Atlanta, GA 30301" -159071,Apple Airpods Headphones,1,150,02/27/19 13:51,"901 Meadow St, Atlanta, GA 30301" -159072,Apple Airpods Headphones,1,150,02/06/19 19:18,"790 7th St, Atlanta, GA 30301" -159073,USB-C Charging Cable,1,11.95,02/27/19 16:57,"392 Washington St, New York City, NY 10001" -159073,Flatscreen TV,1,300,02/27/19 16:57,"392 Washington St, New York City, NY 10001" -159074,27in 4K Gaming Monitor,1,389.99,02/23/19 14:16,"683 Washington St, Los Angeles, CA 90001" -159075,Bose SoundSport Headphones,1,99.99,02/01/19 22:04,"123 14th St, Seattle, WA 98101" -159076,Bose SoundSport Headphones,1,99.99,02/23/19 16:19,"796 6th St, Dallas, TX 75001" -159077,34in Ultrawide Monitor,1,379.99,02/17/19 08:32,"291 Maple St, Seattle, WA 98101" -159078,Lightning Charging Cable,1,14.95,02/26/19 22:49,"390 Maple St, Boston, MA 02215" -159079,20in Monitor,1,109.99,02/11/19 15:53,"834 Hickory St, San Francisco, CA 94016" -159080,Wired Headphones,1,11.99,02/20/19 21:00,"254 10th St, San Francisco, CA 94016" -159081,AAA Batteries (4-pack),1,2.99,02/16/19 10:23,"913 Dogwood St, New York City, NY 10001" -159082,Apple Airpods Headphones,1,150,02/21/19 11:47,"547 West St, Los Angeles, CA 90001" -159083,USB-C Charging Cable,1,11.95,02/23/19 12:38,"528 Dogwood St, San Francisco, CA 94016" -159084,Google Phone,1,600,02/24/19 20:43,"641 Main St, Atlanta, GA 30301" -159084,USB-C Charging Cable,1,11.95,02/24/19 20:43,"641 Main St, Atlanta, GA 30301" -159085,iPhone,1,700,02/02/19 18:56,"950 10th St, San Francisco, CA 94016" -159086,AA Batteries (4-pack),1,3.84,02/03/19 17:19,"599 Lakeview St, Portland, OR 97035" -159087,Wired Headphones,1,11.99,02/20/19 15:52,"852 Hill St, Boston, MA 02215" -159088,Vareebadd Phone,1,400,02/14/19 07:18,"106 Elm St, San Francisco, CA 94016" -159089,27in FHD Monitor,1,149.99,02/16/19 13:37,"185 Center St, Portland, ME 04101" -159090,Flatscreen TV,1,300,02/07/19 06:27,"505 4th St, Seattle, WA 98101" -159091,USB-C Charging Cable,1,11.95,02/07/19 16:34,"823 Lincoln St, Los Angeles, CA 90001" -159092,34in Ultrawide Monitor,1,379.99,02/28/19 09:48,"381 7th St, Atlanta, GA 30301" -159093,Vareebadd Phone,1,400,02/28/19 19:20,"239 Hill St, New York City, NY 10001" -159094,Flatscreen TV,1,300,02/09/19 20:34,"55 Chestnut St, Austin, TX 73301" -159095,AAA Batteries (4-pack),1,2.99,02/07/19 10:24,"241 Madison St, San Francisco, CA 94016" -159096,ThinkPad Laptop,1,999.99,02/02/19 09:03,"305 Sunset St, New York City, NY 10001" -159097,USB-C Charging Cable,1,11.95,02/02/19 21:19,"349 Hickory St, San Francisco, CA 94016" -159098,USB-C Charging Cable,1,11.95,02/08/19 13:09,"453 Center St, Portland, ME 04101" -159099,Wired Headphones,1,11.99,02/17/19 18:26,"41 Church St, Dallas, TX 75001" -159100,AA Batteries (4-pack),1,3.84,02/14/19 18:04,"284 Maple St, San Francisco, CA 94016" -159101,USB-C Charging Cable,1,11.95,02/17/19 13:22,"457 Dogwood St, New York City, NY 10001" -159102,USB-C Charging Cable,1,11.95,02/21/19 06:53,"618 Willow St, San Francisco, CA 94016" -159103,27in FHD Monitor,1,149.99,02/03/19 22:16,"371 Meadow St, Dallas, TX 75001" -159104,USB-C Charging Cable,1,11.95,02/27/19 20:47,"629 Lake St, Portland, OR 97035" -159105,Bose SoundSport Headphones,1,99.99,02/13/19 06:50,"401 5th St, Portland, OR 97035" -159106,Apple Airpods Headphones,1,150,02/21/19 00:20,"410 Sunset St, New York City, NY 10001" -159107,Apple Airpods Headphones,1,150,02/26/19 14:53,"627 Washington St, Seattle, WA 98101" -159108,Macbook Pro Laptop,1,1700,02/02/19 00:17,"642 Elm St, San Francisco, CA 94016" -159109,Bose SoundSport Headphones,1,99.99,02/13/19 17:15,"963 Pine St, San Francisco, CA 94016" -159110,27in 4K Gaming Monitor,1,389.99,02/16/19 08:46,"714 Walnut St, New York City, NY 10001" -159111,USB-C Charging Cable,2,11.95,02/18/19 10:16,"878 Forest St, San Francisco, CA 94016" -159112,Lightning Charging Cable,1,14.95,02/05/19 20:17,"82 Walnut St, New York City, NY 10001" -159113,Lightning Charging Cable,1,14.95,02/27/19 06:34,"516 Willow St, Atlanta, GA 30301" -159114,USB-C Charging Cable,1,11.95,02/18/19 19:30,"98 North St, Dallas, TX 75001" -159115,Wired Headphones,1,11.99,02/10/19 18:27,"615 10th St, Austin, TX 73301" -159116,USB-C Charging Cable,1,11.95,02/13/19 16:37,"508 10th St, Boston, MA 02215" -159117,Lightning Charging Cable,1,14.95,02/13/19 22:46,"323 Lincoln St, San Francisco, CA 94016" -159118,27in 4K Gaming Monitor,1,389.99,02/07/19 01:44,"321 Willow St, Portland, OR 97035" -159119,Apple Airpods Headphones,1,150,02/10/19 21:56,"151 6th St, San Francisco, CA 94016" -159120,USB-C Charging Cable,1,11.95,02/03/19 14:14,"15 River St, Atlanta, GA 30301" -159121,AA Batteries (4-pack),1,3.84,02/12/19 15:25,"232 Dogwood St, New York City, NY 10001" -159122,AA Batteries (4-pack),1,3.84,02/25/19 10:25,"982 Lakeview St, San Francisco, CA 94016" -159123,Bose SoundSport Headphones,1,99.99,02/12/19 09:47,"833 1st St, New York City, NY 10001" -159124,AAA Batteries (4-pack),1,2.99,02/09/19 17:49,"456 North St, Seattle, WA 98101" -159125,20in Monitor,1,109.99,02/23/19 09:13,"161 Lake St, San Francisco, CA 94016" -159126,27in FHD Monitor,1,149.99,02/14/19 05:52,"951 Forest St, Atlanta, GA 30301" -159127,Apple Airpods Headphones,1,150,02/03/19 14:15,"56 Jefferson St, Atlanta, GA 30301" -159128,AA Batteries (4-pack),1,3.84,02/20/19 13:12,"166 Lakeview St, Atlanta, GA 30301" -159129,AA Batteries (4-pack),2,3.84,02/27/19 22:17,"949 Hill St, Dallas, TX 75001" -159130,iPhone,1,700,02/07/19 13:17,"38 Lakeview St, Dallas, TX 75001" -159131,27in FHD Monitor,1,149.99,02/14/19 14:25,"993 North St, New York City, NY 10001" -159132,27in FHD Monitor,1,149.99,02/26/19 13:40,"32 7th St, Portland, OR 97035" -159133,Lightning Charging Cable,1,14.95,02/22/19 20:21,"616 Spruce St, Seattle, WA 98101" -159134,34in Ultrawide Monitor,1,379.99,02/11/19 09:52,"2 Lake St, Boston, MA 02215" -159135,AAA Batteries (4-pack),1,2.99,02/25/19 21:16,"89 Spruce St, San Francisco, CA 94016" -159136,AAA Batteries (4-pack),2,2.99,02/01/19 21:03,"922 Madison St, Boston, MA 02215" -159137,27in 4K Gaming Monitor,1,389.99,02/25/19 19:31,"600 Willow St, Dallas, TX 75001" -159138,34in Ultrawide Monitor,1,379.99,02/02/19 12:15,"57 8th St, Los Angeles, CA 90001" -159139,USB-C Charging Cable,1,11.95,02/07/19 14:00,"404 Jefferson St, Los Angeles, CA 90001" -159140,Google Phone,1,600,02/23/19 17:00,"717 Spruce St, Portland, OR 97035" -159140,USB-C Charging Cable,1,11.95,02/23/19 17:00,"717 Spruce St, Portland, OR 97035" -159141,Wired Headphones,1,11.99,02/22/19 10:21,"363 Church St, San Francisco, CA 94016" -159142,USB-C Charging Cable,1,11.95,02/01/19 21:17,"718 Pine St, San Francisco, CA 94016" -159143,USB-C Charging Cable,1,11.95,02/25/19 00:29,"931 West St, Los Angeles, CA 90001" -159144,27in FHD Monitor,1,149.99,02/17/19 15:21,"770 Hickory St, Los Angeles, CA 90001" -159145,Lightning Charging Cable,1,14.95,02/08/19 19:05,"435 Lakeview St, Los Angeles, CA 90001" -159146,27in FHD Monitor,1,149.99,02/08/19 20:20,"501 Ridge St, Boston, MA 02215" -159147,AA Batteries (4-pack),3,3.84,02/18/19 23:30,"437 Highland St, New York City, NY 10001" -159148,USB-C Charging Cable,1,11.95,02/01/19 11:47,"374 2nd St, Boston, MA 02215" -159149,AA Batteries (4-pack),1,3.84,02/26/19 15:55,"714 Chestnut St, New York City, NY 10001" -159150,27in 4K Gaming Monitor,1,389.99,02/17/19 10:59,"917 4th St, Seattle, WA 98101" -159151,Wired Headphones,1,11.99,02/02/19 15:13,"631 South St, Boston, MA 02215" -159152,USB-C Charging Cable,1,11.95,02/13/19 14:56,"302 Adams St, New York City, NY 10001" -159153,AA Batteries (4-pack),1,3.84,02/24/19 07:41,"242 12th St, Dallas, TX 75001" -159154,USB-C Charging Cable,1,11.95,02/08/19 07:49,"624 Ridge St, Dallas, TX 75001" -159155,USB-C Charging Cable,1,11.95,02/17/19 17:36,"501 Main St, Atlanta, GA 30301" -159156,Apple Airpods Headphones,1,150,02/16/19 00:09,"368 11th St, Los Angeles, CA 90001" -159157,Lightning Charging Cable,1,14.95,02/24/19 12:34,"585 Lakeview St, Seattle, WA 98101" -159158,Bose SoundSport Headphones,1,99.99,02/01/19 07:00,"570 Madison St, Atlanta, GA 30301" -159159,Bose SoundSport Headphones,1,99.99,02/07/19 10:25,"959 6th St, Los Angeles, CA 90001" -159160,USB-C Charging Cable,1,11.95,02/02/19 05:31,"603 Main St, New York City, NY 10001" -159161,Bose SoundSport Headphones,1,99.99,02/03/19 22:31,"772 5th St, Los Angeles, CA 90001" -159162,AAA Batteries (4-pack),1,2.99,02/24/19 17:59,"40 Lake St, Austin, TX 73301" -159163,AAA Batteries (4-pack),2,2.99,02/05/19 15:39,"192 1st St, Austin, TX 73301" -159164,LG Washing Machine,1,600.0,02/27/19 18:01,"692 Meadow St, New York City, NY 10001" -159165,27in 4K Gaming Monitor,1,389.99,02/01/19 19:34,"638 Church St, Boston, MA 02215" -,,,,, -159166,20in Monitor,1,109.99,02/26/19 10:02,"189 Main St, Seattle, WA 98101" -159167,Apple Airpods Headphones,1,150,02/10/19 14:04,"562 Jackson St, Boston, MA 02215" -159168,AA Batteries (4-pack),1,3.84,02/25/19 19:46,"827 Adams St, Atlanta, GA 30301" -159169,Bose SoundSport Headphones,1,99.99,02/03/19 17:23,"345 Main St, Los Angeles, CA 90001" -159170,AAA Batteries (4-pack),2,2.99,02/16/19 21:34,"560 Walnut St, San Francisco, CA 94016" -159171,Google Phone,1,600,02/15/19 22:24,"319 Wilson St, Portland, OR 97035" -159172,AAA Batteries (4-pack),1,2.99,02/17/19 02:55,"891 Forest St, Los Angeles, CA 90001" -159173,Macbook Pro Laptop,1,1700,02/23/19 09:02,"43 11th St, San Francisco, CA 94016" -159174,AA Batteries (4-pack),1,3.84,02/01/19 20:25,"282 Sunset St, Los Angeles, CA 90001" -159175,34in Ultrawide Monitor,1,379.99,02/28/19 18:01,"231 Pine St, New York City, NY 10001" -159176,Bose SoundSport Headphones,1,99.99,02/09/19 09:49,"440 Forest St, San Francisco, CA 94016" -159177,Lightning Charging Cable,1,14.95,02/07/19 22:20,"684 Main St, Boston, MA 02215" -159178,AAA Batteries (4-pack),1,2.99,02/24/19 12:13,"41 Adams St, San Francisco, CA 94016" -159179,iPhone,1,700,02/03/19 15:50,"977 8th St, Los Angeles, CA 90001" -159180,Bose SoundSport Headphones,1,99.99,02/26/19 18:57,"48 Forest St, Boston, MA 02215" -159181,iPhone,1,700,02/19/19 07:16,"984 Highland St, Austin, TX 73301" -159182,Bose SoundSport Headphones,1,99.99,02/20/19 16:20,"741 7th St, Seattle, WA 98101" -159183,Wired Headphones,1,11.99,02/10/19 10:43,"960 West St, Austin, TX 73301" -159183,AAA Batteries (4-pack),1,2.99,02/10/19 10:43,"960 West St, Austin, TX 73301" -159184,Apple Airpods Headphones,1,150,02/28/19 14:30,"359 10th St, Atlanta, GA 30301" -159185,Lightning Charging Cable,1,14.95,02/20/19 17:10,"508 Cedar St, Austin, TX 73301" -159186,Google Phone,1,600,02/02/19 09:21,"114 West St, San Francisco, CA 94016" -159187,Lightning Charging Cable,1,14.95,02/14/19 22:11,"843 South St, Atlanta, GA 30301" -159188,AAA Batteries (4-pack),2,2.99,02/03/19 20:42,"53 Dogwood St, Dallas, TX 75001" -159189,AAA Batteries (4-pack),1,2.99,02/20/19 22:39,"660 8th St, Dallas, TX 75001" -159190,Bose SoundSport Headphones,1,99.99,02/27/19 17:56,"665 9th St, San Francisco, CA 94016" -159191,27in FHD Monitor,1,149.99,02/22/19 18:08,"145 Highland St, Dallas, TX 75001" -159192,Lightning Charging Cable,1,14.95,02/12/19 17:03,"273 Willow St, Dallas, TX 75001" -159193,USB-C Charging Cable,1,11.95,02/01/19 05:50,"937 Jackson St, Dallas, TX 75001" -159194,Flatscreen TV,1,300,02/09/19 17:36,"204 5th St, Dallas, TX 75001" -159195,iPhone,1,700,02/25/19 19:04,"193 Walnut St, Los Angeles, CA 90001" -159196,Apple Airpods Headphones,1,150,02/22/19 11:42,"424 Madison St, Atlanta, GA 30301" -159197,Vareebadd Phone,1,400,02/06/19 11:14,"594 6th St, Austin, TX 73301" -159197,Wired Headphones,1,11.99,02/06/19 11:14,"594 6th St, Austin, TX 73301" -159197,Apple Airpods Headphones,1,150,02/06/19 11:14,"594 6th St, Austin, TX 73301" -159198,AA Batteries (4-pack),1,3.84,02/24/19 21:17,"272 Jefferson St, Dallas, TX 75001" -159199,USB-C Charging Cable,1,11.95,02/21/19 11:06,"352 Washington St, Seattle, WA 98101" -159200,USB-C Charging Cable,1,11.95,02/14/19 08:02,"323 Lakeview St, San Francisco, CA 94016" -159201,27in 4K Gaming Monitor,1,389.99,02/25/19 08:24,"168 Washington St, Austin, TX 73301" -159202,Wired Headphones,1,11.99,02/26/19 16:26,"691 Ridge St, San Francisco, CA 94016" -159203,AA Batteries (4-pack),1,3.84,02/03/19 21:18,"510 Jackson St, Los Angeles, CA 90001" -159204,Google Phone,1,600,02/13/19 21:52,"187 Elm St, Los Angeles, CA 90001" -159204,Wired Headphones,2,11.99,02/13/19 21:52,"187 Elm St, Los Angeles, CA 90001" -159205,USB-C Charging Cable,1,11.95,02/11/19 20:44,"502 Lake St, Seattle, WA 98101" -159206,Lightning Charging Cable,1,14.95,02/23/19 22:10,"50 Lincoln St, Los Angeles, CA 90001" -159207,Vareebadd Phone,1,400,02/28/19 18:14,"492 Lakeview St, Los Angeles, CA 90001" -159208,Bose SoundSport Headphones,1,99.99,02/16/19 19:40,"688 Washington St, New York City, NY 10001" -159209,Bose SoundSport Headphones,1,99.99,02/04/19 15:20,"75 Maple St, Boston, MA 02215" -159210,Lightning Charging Cable,1,14.95,02/21/19 07:52,"774 Cedar St, Boston, MA 02215" -159211,Wired Headphones,2,11.99,02/27/19 13:59,"360 Madison St, Seattle, WA 98101" -159212,Wired Headphones,1,11.99,02/19/19 16:01,"99 Main St, San Francisco, CA 94016" -159213,Google Phone,1,600,02/12/19 14:12,"105 River St, San Francisco, CA 94016" -159214,AA Batteries (4-pack),2,3.84,02/01/19 20:32,"150 Ridge St, Los Angeles, CA 90001" -159215,34in Ultrawide Monitor,1,379.99,02/05/19 13:02,"538 4th St, Atlanta, GA 30301" -159216,Bose SoundSport Headphones,1,99.99,02/27/19 23:53,"287 West St, Los Angeles, CA 90001" -159217,AA Batteries (4-pack),1,3.84,02/08/19 15:06,"491 Adams St, San Francisco, CA 94016" -159218,Macbook Pro Laptop,1,1700,02/11/19 13:59,"358 9th St, Los Angeles, CA 90001" -159219,Google Phone,1,600,02/04/19 22:33,"265 9th St, Portland, ME 04101" -159219,USB-C Charging Cable,1,11.95,02/04/19 22:33,"265 9th St, Portland, ME 04101" -159219,Wired Headphones,1,11.99,02/04/19 22:33,"265 9th St, Portland, ME 04101" -159220,Bose SoundSport Headphones,1,99.99,02/05/19 20:26,"369 Meadow St, San Francisco, CA 94016" -159221,AA Batteries (4-pack),4,3.84,02/08/19 17:58,"636 Park St, Boston, MA 02215" -159222,Apple Airpods Headphones,1,150,02/27/19 13:39,"769 13th St, San Francisco, CA 94016" -159223,Lightning Charging Cable,1,14.95,02/13/19 18:22,"312 1st St, Austin, TX 73301" -159224,Lightning Charging Cable,1,14.95,02/08/19 15:38,"85 4th St, New York City, NY 10001" -159225,AAA Batteries (4-pack),1,2.99,02/10/19 18:48,"793 5th St, Boston, MA 02215" -159226,ThinkPad Laptop,1,999.99,02/04/19 23:46,"571 Lakeview St, Los Angeles, CA 90001" -159227,AAA Batteries (4-pack),2,2.99,02/14/19 17:39,"91 Maple St, San Francisco, CA 94016" -159228,34in Ultrawide Monitor,1,379.99,02/18/19 13:29,"534 Park St, Seattle, WA 98101" -159229,Bose SoundSport Headphones,1,99.99,02/17/19 12:55,"195 Highland St, New York City, NY 10001" -159230,AAA Batteries (4-pack),1,2.99,02/24/19 09:18,"859 Hickory St, Boston, MA 02215" -159231,USB-C Charging Cable,1,11.95,02/17/19 10:49,"335 12th St, San Francisco, CA 94016" -159232,Apple Airpods Headphones,1,150,02/09/19 14:16,"522 8th St, Portland, OR 97035" -159233,Bose SoundSport Headphones,1,99.99,02/04/19 16:04,"289 Lake St, Dallas, TX 75001" -159234,iPhone,1,700,02/07/19 12:33,"943 Hill St, Boston, MA 02215" -159235,Bose SoundSport Headphones,1,99.99,02/22/19 10:01,"196 North St, Atlanta, GA 30301" -159236,AA Batteries (4-pack),1,3.84,02/03/19 19:44,"865 Park St, Los Angeles, CA 90001" -159237,34in Ultrawide Monitor,1,379.99,02/06/19 16:32,"25 Center St, San Francisco, CA 94016" -159238,AA Batteries (4-pack),2,3.84,02/09/19 10:24,"215 North St, Los Angeles, CA 90001" -159239,USB-C Charging Cable,1,11.95,02/10/19 21:35,"820 River St, Boston, MA 02215" -159240,Flatscreen TV,1,300,02/12/19 19:38,"29 Elm St, Boston, MA 02215" -159240,Apple Airpods Headphones,1,150,02/12/19 19:38,"29 Elm St, Boston, MA 02215" -159241,USB-C Charging Cable,1,11.95,02/20/19 00:05,"997 4th St, Atlanta, GA 30301" -159242,AA Batteries (4-pack),1,3.84,02/11/19 19:41,"315 North St, San Francisco, CA 94016" -159243,Lightning Charging Cable,1,14.95,02/17/19 17:54,"60 12th St, San Francisco, CA 94016" -159244,Macbook Pro Laptop,1,1700,02/08/19 11:28,"216 Hill St, San Francisco, CA 94016" -159245,Lightning Charging Cable,1,14.95,02/24/19 17:53,"738 Lincoln St, Los Angeles, CA 90001" -159246,Lightning Charging Cable,1,14.95,02/28/19 11:47,"577 Ridge St, Boston, MA 02215" -159247,USB-C Charging Cable,1,11.95,02/19/19 22:29,"685 Center St, Dallas, TX 75001" -159248,AAA Batteries (4-pack),2,2.99,02/28/19 01:38,"762 1st St, San Francisco, CA 94016" -159249,Google Phone,1,600,02/28/19 18:45,"983 11th St, New York City, NY 10001" -159249,USB-C Charging Cable,1,11.95,02/28/19 18:45,"983 11th St, New York City, NY 10001" -159250,Apple Airpods Headphones,1,150,02/17/19 11:18,"287 7th St, Seattle, WA 98101" -159251,Apple Airpods Headphones,1,150,02/02/19 10:27,"733 Elm St, San Francisco, CA 94016" -159252,AA Batteries (4-pack),1,3.84,02/03/19 15:21,"616 Center St, San Francisco, CA 94016" -159253,27in 4K Gaming Monitor,1,389.99,02/05/19 14:30,"28 Jackson St, San Francisco, CA 94016" -159254,USB-C Charging Cable,1,11.95,02/15/19 13:27,"364 1st St, Portland, ME 04101" -159255,Lightning Charging Cable,1,14.95,02/11/19 16:39,"961 Washington St, New York City, NY 10001" -159256,27in FHD Monitor,1,149.99,02/22/19 16:22,"941 South St, San Francisco, CA 94016" -159257,USB-C Charging Cable,1,11.95,02/26/19 14:33,"75 Lakeview St, New York City, NY 10001" -159258,27in FHD Monitor,1,149.99,02/22/19 22:55,"882 South St, Boston, MA 02215" -159259,AAA Batteries (4-pack),2,2.99,02/16/19 13:15,"730 Cedar St, Los Angeles, CA 90001" -159260,Lightning Charging Cable,1,14.95,02/01/19 19:54,"693 Johnson St, San Francisco, CA 94016" -159261,AA Batteries (4-pack),1,3.84,02/01/19 19:28,"969 2nd St, San Francisco, CA 94016" -159262,Vareebadd Phone,1,400,02/25/19 00:32,"631 Cedar St, Portland, OR 97035" -159262,USB-C Charging Cable,1,11.95,02/25/19 00:32,"631 Cedar St, Portland, OR 97035" -159263,Vareebadd Phone,1,400,02/16/19 17:43,"168 2nd St, Los Angeles, CA 90001" -159264,AA Batteries (4-pack),1,3.84,02/04/19 23:21,"737 Church St, Austin, TX 73301" -159265,Apple Airpods Headphones,1,150,02/05/19 16:00,"590 Lakeview St, Los Angeles, CA 90001" -159266,AAA Batteries (4-pack),1,2.99,02/08/19 16:19,"662 Lincoln St, Atlanta, GA 30301" -159267,AA Batteries (4-pack),1,3.84,02/14/19 11:14,"493 4th St, Portland, OR 97035" -159268,Lightning Charging Cable,1,14.95,02/10/19 13:22,"826 14th St, San Francisco, CA 94016" -159269,iPhone,1,700,02/08/19 18:05,"446 Lake St, San Francisco, CA 94016" -159270,AAA Batteries (4-pack),1,2.99,02/17/19 21:20,"967 14th St, Los Angeles, CA 90001" -159271,Wired Headphones,2,11.99,02/26/19 16:38,"608 Johnson St, Seattle, WA 98101" -159272,Lightning Charging Cable,2,14.95,02/28/19 00:30,"556 Hickory St, Boston, MA 02215" -159273,AA Batteries (4-pack),2,3.84,02/02/19 16:48,"630 12th St, San Francisco, CA 94016" -159274,AAA Batteries (4-pack),1,2.99,02/28/19 12:43,"555 8th St, Austin, TX 73301" -159275,27in FHD Monitor,1,149.99,02/18/19 18:50,"175 14th St, Los Angeles, CA 90001" -159276,USB-C Charging Cable,1,11.95,02/03/19 10:17,"109 River St, New York City, NY 10001" -159277,27in 4K Gaming Monitor,1,389.99,02/23/19 22:25,"395 12th St, Dallas, TX 75001" -159278,Lightning Charging Cable,1,14.95,02/08/19 19:51,"768 Sunset St, Seattle, WA 98101" -159279,Macbook Pro Laptop,1,1700,02/24/19 20:18,"122 Lincoln St, Boston, MA 02215" -159280,Apple Airpods Headphones,1,150,02/16/19 12:55,"561 West St, Dallas, TX 75001" -159281,AA Batteries (4-pack),1,3.84,02/22/19 18:30,"780 Johnson St, Los Angeles, CA 90001" -159282,USB-C Charging Cable,1,11.95,02/26/19 16:59,"819 2nd St, San Francisco, CA 94016" -159283,AAA Batteries (4-pack),2,2.99,02/28/19 16:00,"687 Jackson St, Los Angeles, CA 90001" -159284,Lightning Charging Cable,1,14.95,02/25/19 14:45,"57 Lakeview St, Boston, MA 02215" -159285,AAA Batteries (4-pack),2,2.99,02/28/19 09:22,"893 Walnut St, Los Angeles, CA 90001" -159286,Bose SoundSport Headphones,1,99.99,02/22/19 16:29,"281 Lake St, Boston, MA 02215" -159287,AAA Batteries (4-pack),1,2.99,02/07/19 10:32,"552 Dogwood St, Boston, MA 02215" -159288,Macbook Pro Laptop,1,1700,02/05/19 06:37,"862 River St, Los Angeles, CA 90001" -159289,Bose SoundSport Headphones,1,99.99,02/20/19 19:27,"51 9th St, Austin, TX 73301" -159290,27in FHD Monitor,1,149.99,02/17/19 15:08,"332 12th St, Los Angeles, CA 90001" -159291,Macbook Pro Laptop,1,1700,02/28/19 18:17,"23 Park St, San Francisco, CA 94016" -159292,20in Monitor,1,109.99,02/04/19 00:38,"112 Walnut St, Boston, MA 02215" -159293,AAA Batteries (4-pack),1,2.99,02/08/19 17:28,"42 Church St, Boston, MA 02215" -159294,USB-C Charging Cable,1,11.95,02/24/19 10:23,"924 Lakeview St, New York City, NY 10001" -159295,USB-C Charging Cable,1,11.95,02/02/19 17:03,"689 Cherry St, San Francisco, CA 94016" -159296,Macbook Pro Laptop,1,1700,02/07/19 16:18,"614 1st St, Atlanta, GA 30301" -159297,Bose SoundSport Headphones,1,99.99,02/18/19 18:42,"389 2nd St, San Francisco, CA 94016" -159298,34in Ultrawide Monitor,1,379.99,02/04/19 11:22,"942 10th St, San Francisco, CA 94016" -159299,Bose SoundSport Headphones,1,99.99,02/02/19 18:35,"302 Pine St, Austin, TX 73301" -159300,Bose SoundSport Headphones,1,99.99,02/15/19 08:02,"338 2nd St, San Francisco, CA 94016" -159301,Apple Airpods Headphones,1,150,02/24/19 15:59,"412 Center St, San Francisco, CA 94016" -159302,34in Ultrawide Monitor,1,379.99,02/10/19 11:43,"929 10th St, San Francisco, CA 94016" -159303,Apple Airpods Headphones,1,150,02/20/19 14:31,"630 North St, Portland, OR 97035" -159304,AA Batteries (4-pack),3,3.84,02/26/19 20:58,"30 Madison St, Atlanta, GA 30301" -159305,Lightning Charging Cable,1,14.95,02/20/19 20:19,"309 Chestnut St, Seattle, WA 98101" -159306,27in 4K Gaming Monitor,1,389.99,02/09/19 12:55,"545 Meadow St, Los Angeles, CA 90001" -,,,,, -159307,AAA Batteries (4-pack),1,2.99,02/14/19 10:33,"599 Lincoln St, Atlanta, GA 30301" -159308,Apple Airpods Headphones,1,150,02/25/19 06:53,"174 2nd St, Los Angeles, CA 90001" -159309,iPhone,1,700,02/02/19 16:50,"942 Lakeview St, Portland, OR 97035" -159310,Bose SoundSport Headphones,1,99.99,02/08/19 22:31,"722 Elm St, Austin, TX 73301" -159311,AA Batteries (4-pack),2,3.84,02/22/19 20:35,"858 11th St, Atlanta, GA 30301" -159312,AAA Batteries (4-pack),1,2.99,02/27/19 07:43,"857 Wilson St, Los Angeles, CA 90001" -159313,Apple Airpods Headphones,1,150,02/16/19 16:35,"852 Main St, New York City, NY 10001" -159314,Wired Headphones,1,11.99,02/21/19 16:39,"510 Dogwood St, Austin, TX 73301" -159315,Apple Airpods Headphones,1,150,02/09/19 21:06,"367 10th St, Austin, TX 73301" -159316,Lightning Charging Cable,1,14.95,02/12/19 11:47,"131 8th St, San Francisco, CA 94016" -159317,Google Phone,1,600,02/19/19 01:35,"188 Wilson St, New York City, NY 10001" -159317,USB-C Charging Cable,1,11.95,02/19/19 01:35,"188 Wilson St, New York City, NY 10001" -159318,Apple Airpods Headphones,1,150,02/04/19 11:30,"272 Hickory St, New York City, NY 10001" -159319,AA Batteries (4-pack),2,3.84,02/10/19 13:01,"215 Hickory St, New York City, NY 10001" -159320,34in Ultrawide Monitor,1,379.99,02/27/19 11:58,"601 Spruce St, Dallas, TX 75001" -159321,Wired Headphones,1,11.99,02/20/19 23:51,"921 Lakeview St, San Francisco, CA 94016" -159322,20in Monitor,1,109.99,02/15/19 10:28,"899 Jackson St, Seattle, WA 98101" -159322,Macbook Pro Laptop,1,1700,02/15/19 10:28,"899 Jackson St, Seattle, WA 98101" -159323,ThinkPad Laptop,1,999.99,02/05/19 19:46,"914 South St, Austin, TX 73301" -159324,Apple Airpods Headphones,1,150,02/02/19 17:24,"184 1st St, San Francisco, CA 94016" -159325,Lightning Charging Cable,1,14.95,02/03/19 09:40,"45 Lake St, Dallas, TX 75001" -159326,Wired Headphones,1,11.99,02/25/19 11:40,"652 2nd St, Boston, MA 02215" -159327,AAA Batteries (4-pack),1,2.99,02/01/19 06:14,"733 Chestnut St, Austin, TX 73301" -159328,Apple Airpods Headphones,1,150,02/02/19 23:21,"183 South St, New York City, NY 10001" -159329,Lightning Charging Cable,2,14.95,02/03/19 16:37,"998 Elm St, Dallas, TX 75001" -159330,Wired Headphones,1,11.99,02/09/19 10:10,"728 Dogwood St, Dallas, TX 75001" -159331,Wired Headphones,1,11.99,02/13/19 20:02,"50 Meadow St, San Francisco, CA 94016" -159332,Bose SoundSport Headphones,1,99.99,02/24/19 15:52,"906 12th St, San Francisco, CA 94016" -159333,AAA Batteries (4-pack),2,2.99,02/21/19 21:08,"68 6th St, Los Angeles, CA 90001" -159334,Bose SoundSport Headphones,1,99.99,02/16/19 09:59,"215 Johnson St, San Francisco, CA 94016" -159335,Lightning Charging Cable,1,14.95,02/10/19 22:27,"224 Johnson St, Boston, MA 02215" -159336,34in Ultrawide Monitor,1,379.99,02/18/19 00:35,"195 Pine St, San Francisco, CA 94016" -159337,AAA Batteries (4-pack),1,2.99,02/22/19 19:23,"681 Hickory St, Atlanta, GA 30301" -159338,Apple Airpods Headphones,1,150,02/04/19 13:29,"778 West St, Atlanta, GA 30301" -159339,AAA Batteries (4-pack),2,2.99,02/06/19 10:19,"457 Highland St, Los Angeles, CA 90001" -159340,AAA Batteries (4-pack),1,2.99,02/08/19 14:28,"98 7th St, New York City, NY 10001" -159341,27in 4K Gaming Monitor,1,389.99,02/18/19 11:20,"402 6th St, San Francisco, CA 94016" -159342,Lightning Charging Cable,1,14.95,02/16/19 14:29,"88 Highland St, Los Angeles, CA 90001" -159343,Apple Airpods Headphones,1,150,02/01/19 16:31,"704 Meadow St, San Francisco, CA 94016" -159344,AAA Batteries (4-pack),3,2.99,02/17/19 19:54,"161 11th St, Los Angeles, CA 90001" -159345,Bose SoundSport Headphones,1,99.99,02/20/19 11:57,"277 Chestnut St, Austin, TX 73301" -159346,AAA Batteries (4-pack),1,2.99,02/18/19 10:14,"118 10th St, Austin, TX 73301" -159347,AAA Batteries (4-pack),1,2.99,03/01/19 03:10,"297 8th St, Austin, TX 73301" -159348,Apple Airpods Headphones,1,150,02/09/19 09:58,"346 8th St, Los Angeles, CA 90001" -159349,34in Ultrawide Monitor,1,379.99,02/15/19 11:45,"838 Lake St, New York City, NY 10001" -159350,AA Batteries (4-pack),1,3.84,02/04/19 17:02,"331 11th St, San Francisco, CA 94016" -159351,27in FHD Monitor,1,149.99,02/14/19 23:28,"886 Wilson St, Los Angeles, CA 90001" -159352,AA Batteries (4-pack),1,3.84,02/10/19 11:54,"335 Forest St, Dallas, TX 75001" -159353,AA Batteries (4-pack),1,3.84,02/03/19 15:14,"968 Madison St, San Francisco, CA 94016" -159354,Bose SoundSport Headphones,1,99.99,02/27/19 18:29,"922 Lake St, New York City, NY 10001" -159355,20in Monitor,1,109.99,02/07/19 20:41,"810 10th St, San Francisco, CA 94016" -159356,AAA Batteries (4-pack),1,2.99,02/06/19 13:54,"472 Highland St, New York City, NY 10001" -159357,AAA Batteries (4-pack),2,2.99,02/22/19 17:06,"479 Walnut St, Boston, MA 02215" -159358,Google Phone,1,600,02/19/19 08:03,"646 Walnut St, San Francisco, CA 94016" -159359,Macbook Pro Laptop,1,1700,02/13/19 22:21,"67 Forest St, Los Angeles, CA 90001" -159360,Wired Headphones,2,11.99,02/24/19 18:23,"349 Lakeview St, Seattle, WA 98101" -159361,iPhone,1,700,02/09/19 13:00,"66 Spruce St, Dallas, TX 75001" -159362,Lightning Charging Cable,1,14.95,02/01/19 17:19,"794 Main St, San Francisco, CA 94016" -159363,Apple Airpods Headphones,1,150,02/15/19 11:42,"329 Adams St, San Francisco, CA 94016" -159364,USB-C Charging Cable,1,11.95,02/14/19 10:51,"100 Lincoln St, Dallas, TX 75001" -159365,Apple Airpods Headphones,1,150,02/08/19 14:32,"663 13th St, Seattle, WA 98101" -159366,AA Batteries (4-pack),2,3.84,02/06/19 16:48,"17 Lakeview St, Los Angeles, CA 90001" -159367,Apple Airpods Headphones,1,150,02/02/19 15:43,"632 Chestnut St, New York City, NY 10001" -159368,USB-C Charging Cable,1,11.95,02/11/19 22:52,"843 2nd St, New York City, NY 10001" -159369,27in 4K Gaming Monitor,1,389.99,02/18/19 11:38,"930 Highland St, Boston, MA 02215" -159370,USB-C Charging Cable,1,11.95,02/04/19 23:42,"319 11th St, New York City, NY 10001" -159371,iPhone,1,700,02/26/19 13:18,"623 Wilson St, Los Angeles, CA 90001" -159372,AAA Batteries (4-pack),1,2.99,02/08/19 18:49,"801 Madison St, Portland, OR 97035" -159373,ThinkPad Laptop,1,999.99,02/13/19 18:00,"506 9th St, San Francisco, CA 94016" -159374,USB-C Charging Cable,1,11.95,02/11/19 10:39,"602 Church St, San Francisco, CA 94016" -159375,USB-C Charging Cable,1,11.95,02/06/19 05:06,"857 6th St, San Francisco, CA 94016" -159376,Wired Headphones,1,11.99,02/09/19 06:11,"420 Sunset St, San Francisco, CA 94016" -159377,USB-C Charging Cable,1,11.95,02/26/19 21:27,"565 Dogwood St, San Francisco, CA 94016" -159378,Flatscreen TV,1,300,02/09/19 21:26,"256 Madison St, San Francisco, CA 94016" -159379,Google Phone,1,600,02/24/19 17:52,"148 Jefferson St, San Francisco, CA 94016" -159379,Wired Headphones,1,11.99,02/24/19 17:52,"148 Jefferson St, San Francisco, CA 94016" -159380,27in 4K Gaming Monitor,1,389.99,02/24/19 17:09,"501 Lincoln St, Portland, OR 97035" -159381,Wired Headphones,1,11.99,02/28/19 21:29,"828 Cedar St, Los Angeles, CA 90001" -159382,USB-C Charging Cable,1,11.95,02/23/19 12:46,"767 River St, Los Angeles, CA 90001" -159383,Lightning Charging Cable,1,14.95,02/27/19 19:40,"58 Madison St, Boston, MA 02215" -159384,USB-C Charging Cable,1,11.95,02/25/19 19:19,"278 13th St, San Francisco, CA 94016" -159385,Bose SoundSport Headphones,1,99.99,02/15/19 16:41,"700 Main St, Dallas, TX 75001" -159386,Lightning Charging Cable,1,14.95,02/16/19 11:45,"766 12th St, Austin, TX 73301" -159387,USB-C Charging Cable,1,11.95,02/16/19 17:15,"382 Center St, Los Angeles, CA 90001" -159388,USB-C Charging Cable,1,11.95,02/24/19 10:52,"137 1st St, San Francisco, CA 94016" -159389,ThinkPad Laptop,1,999.99,02/07/19 23:46,"136 South St, Austin, TX 73301" -159390,Lightning Charging Cable,1,14.95,02/26/19 11:38,"246 4th St, Austin, TX 73301" -159391,Lightning Charging Cable,1,14.95,02/28/19 11:28,"647 Ridge St, San Francisco, CA 94016" -159392,34in Ultrawide Monitor,1,379.99,02/28/19 11:39,"527 Jefferson St, San Francisco, CA 94016" -159393,AAA Batteries (4-pack),1,2.99,02/11/19 07:10,"488 11th St, Los Angeles, CA 90001" -159394,Apple Airpods Headphones,1,150,02/02/19 19:38,"661 9th St, Atlanta, GA 30301" -159395,Wired Headphones,1,11.99,02/08/19 20:54,"242 West St, New York City, NY 10001" -159396,Google Phone,1,600,02/27/19 14:40,"180 Center St, San Francisco, CA 94016" -159396,USB-C Charging Cable,1,11.95,02/27/19 14:40,"180 Center St, San Francisco, CA 94016" -159397,AA Batteries (4-pack),1,3.84,02/23/19 16:16,"912 Johnson St, Los Angeles, CA 90001" -159398,Lightning Charging Cable,1,14.95,02/26/19 17:21,"91 5th St, Austin, TX 73301" -159399,AAA Batteries (4-pack),1,2.99,02/28/19 18:57,"473 Jackson St, Atlanta, GA 30301" -159400,27in 4K Gaming Monitor,1,389.99,02/11/19 13:38,"657 Dogwood St, Atlanta, GA 30301" -159401,AAA Batteries (4-pack),1,2.99,02/10/19 16:55,"123 8th St, Portland, OR 97035" -159402,Flatscreen TV,1,300,02/21/19 19:23,"597 Meadow St, Dallas, TX 75001" -159403,USB-C Charging Cable,1,11.95,02/03/19 11:18,"51 4th St, New York City, NY 10001" -159404,USB-C Charging Cable,1,11.95,02/23/19 08:41,"838 Lakeview St, Dallas, TX 75001" -159405,Wired Headphones,1,11.99,02/27/19 18:40,"717 Hickory St, Los Angeles, CA 90001" -159406,Google Phone,1,600,02/09/19 18:48,"810 Lincoln St, Atlanta, GA 30301" -159407,AA Batteries (4-pack),1,3.84,02/01/19 22:02,"531 West St, Seattle, WA 98101" -159408,Wired Headphones,1,11.99,02/08/19 20:28,"731 Madison St, Austin, TX 73301" -159409,iPhone,1,700,02/13/19 16:36,"756 Lake St, San Francisco, CA 94016" -159410,Lightning Charging Cable,1,14.95,02/20/19 08:27,"489 Hill St, Los Angeles, CA 90001" -159411,AAA Batteries (4-pack),1,2.99,02/20/19 10:45,"125 Hill St, San Francisco, CA 94016" -159412,AA Batteries (4-pack),1,3.84,02/10/19 22:48,"205 South St, Boston, MA 02215" -159413,Lightning Charging Cable,1,14.95,02/28/19 17:10,"222 Forest St, Seattle, WA 98101" -159414,iPhone,1,700,02/23/19 09:02,"791 4th St, San Francisco, CA 94016" -159415,27in FHD Monitor,1,149.99,02/09/19 22:03,"380 13th St, San Francisco, CA 94016" -159416,AA Batteries (4-pack),1,3.84,02/08/19 18:51,"765 Hill St, Portland, OR 97035" -159417,Lightning Charging Cable,1,14.95,02/04/19 17:20,"624 North St, Los Angeles, CA 90001" -159418,27in FHD Monitor,1,149.99,02/03/19 22:00,"631 5th St, Boston, MA 02215" -159419,Flatscreen TV,1,300,02/08/19 11:45,"670 Adams St, San Francisco, CA 94016" -159420,AAA Batteries (4-pack),2,2.99,02/10/19 08:43,"897 Center St, New York City, NY 10001" -159421,USB-C Charging Cable,1,11.95,02/25/19 14:15,"564 Spruce St, Atlanta, GA 30301" -159422,USB-C Charging Cable,1,11.95,02/16/19 11:41,"293 1st St, Boston, MA 02215" -159423,27in FHD Monitor,1,149.99,02/28/19 15:34,"864 Washington St, New York City, NY 10001" -159424,iPhone,1,700,02/07/19 20:17,"485 Lakeview St, Los Angeles, CA 90001" -159425,Lightning Charging Cable,1,14.95,02/26/19 22:26,"150 Highland St, Dallas, TX 75001" -159426,Apple Airpods Headphones,1,150,02/21/19 12:15,"624 Meadow St, San Francisco, CA 94016" -159427,27in FHD Monitor,1,149.99,02/28/19 17:59,"278 Center St, Los Angeles, CA 90001" -159428,Apple Airpods Headphones,1,150,02/24/19 18:23,"223 Elm St, Dallas, TX 75001" -159429,AA Batteries (4-pack),2,3.84,02/04/19 15:55,"723 Jefferson St, Boston, MA 02215" -159430,Wired Headphones,1,11.99,02/01/19 16:51,"671 Willow St, San Francisco, CA 94016" -159431,Lightning Charging Cable,1,14.95,02/03/19 19:51,"926 Lake St, Boston, MA 02215" -159432,Wired Headphones,1,11.99,02/06/19 08:32,"851 Main St, Boston, MA 02215" -159433,27in 4K Gaming Monitor,1,389.99,02/11/19 17:17,"882 5th St, San Francisco, CA 94016" -159434,Macbook Pro Laptop,1,1700,02/21/19 17:49,"824 River St, Los Angeles, CA 90001" -159435,Lightning Charging Cable,1,14.95,02/04/19 20:12,"997 Lake St, Austin, TX 73301" -159436,Bose SoundSport Headphones,1,99.99,02/08/19 08:43,"727 Washington St, Los Angeles, CA 90001" -159437,USB-C Charging Cable,1,11.95,02/25/19 06:22,"220 Pine St, San Francisco, CA 94016" -159438,Wired Headphones,1,11.99,02/27/19 21:05,"117 Jefferson St, Los Angeles, CA 90001" -159439,Bose SoundSport Headphones,1,99.99,02/28/19 23:59,"40 4th St, New York City, NY 10001" -159440,USB-C Charging Cable,1,11.95,02/15/19 00:12,"603 4th St, Portland, ME 04101" -159441,AA Batteries (4-pack),1,3.84,02/08/19 23:58,"123 1st St, Dallas, TX 75001" -159442,Macbook Pro Laptop,1,1700,02/17/19 20:45,"390 Lincoln St, New York City, NY 10001" -159443,USB-C Charging Cable,1,11.95,02/18/19 20:55,"312 Meadow St, Los Angeles, CA 90001" -159444,Bose SoundSport Headphones,1,99.99,02/04/19 19:45,"311 14th St, Los Angeles, CA 90001" -159445,AAA Batteries (4-pack),1,2.99,02/24/19 12:59,"73 6th St, Dallas, TX 75001" -159446,AAA Batteries (4-pack),1,2.99,02/14/19 01:02,"497 Adams St, Atlanta, GA 30301" -159447,27in 4K Gaming Monitor,1,389.99,02/23/19 20:13,"532 North St, San Francisco, CA 94016" -159448,Apple Airpods Headphones,1,150,02/12/19 11:55,"277 Maple St, Atlanta, GA 30301" -159449,Bose SoundSport Headphones,1,99.99,02/16/19 02:02,"304 Washington St, Boston, MA 02215" -159450,Apple Airpods Headphones,1,150,02/08/19 09:02,"345 Meadow St, San Francisco, CA 94016" -159451,Apple Airpods Headphones,1,150,02/20/19 01:56,"146 Center St, San Francisco, CA 94016" -159452,34in Ultrawide Monitor,1,379.99,02/01/19 08:32,"107 Walnut St, Atlanta, GA 30301" -159453,AA Batteries (4-pack),3,3.84,02/13/19 13:35,"453 1st St, Seattle, WA 98101" -159454,Wired Headphones,1,11.99,02/12/19 04:55,"128 Lake St, Portland, ME 04101" -159455,27in FHD Monitor,1,149.99,02/22/19 12:40,"628 Sunset St, San Francisco, CA 94016" -159456,Wired Headphones,1,11.99,02/01/19 19:54,"746 Cherry St, Boston, MA 02215" -159457,USB-C Charging Cable,1,11.95,02/19/19 20:13,"36 12th St, Portland, OR 97035" -159458,Wired Headphones,1,11.99,02/23/19 13:59,"669 Maple St, Portland, ME 04101" -159459,USB-C Charging Cable,1,11.95,02/17/19 08:11,"46 7th St, Austin, TX 73301" -159460,USB-C Charging Cable,1,11.95,02/27/19 19:36,"651 14th St, Los Angeles, CA 90001" -159461,34in Ultrawide Monitor,1,379.99,02/16/19 22:25,"839 11th St, New York City, NY 10001" -159462,Apple Airpods Headphones,1,150,02/01/19 16:43,"582 Jefferson St, San Francisco, CA 94016" -159463,AAA Batteries (4-pack),1,2.99,02/23/19 22:51,"781 Hill St, Dallas, TX 75001" -159464,AAA Batteries (4-pack),1,2.99,02/07/19 23:29,"732 14th St, San Francisco, CA 94016" -159465,Flatscreen TV,1,300,02/16/19 02:32,"723 Willow St, Dallas, TX 75001" -159466,USB-C Charging Cable,1,11.95,02/19/19 21:22,"981 North St, New York City, NY 10001" -159466,27in FHD Monitor,1,149.99,02/19/19 21:22,"981 North St, New York City, NY 10001" -159467,27in 4K Gaming Monitor,1,389.99,02/10/19 18:36,"26 Meadow St, Austin, TX 73301" -159468,USB-C Charging Cable,1,11.95,02/02/19 23:38,"28 Lake St, New York City, NY 10001" -159469,Apple Airpods Headphones,1,150,02/13/19 19:50,"168 Wilson St, Dallas, TX 75001" -159470,Macbook Pro Laptop,1,1700,02/13/19 16:51,"475 Madison St, San Francisco, CA 94016" -159471,Apple Airpods Headphones,1,150,02/06/19 18:11,"721 7th St, San Francisco, CA 94016" -159472,USB-C Charging Cable,1,11.95,02/24/19 20:46,"388 Park St, San Francisco, CA 94016" -159473,AA Batteries (4-pack),1,3.84,02/06/19 00:35,"321 Johnson St, New York City, NY 10001" -159474,iPhone,1,700,02/13/19 20:30,"221 9th St, Los Angeles, CA 90001" -159475,34in Ultrawide Monitor,1,379.99,02/24/19 16:15,"837 10th St, Atlanta, GA 30301" -159476,Apple Airpods Headphones,1,150,02/18/19 19:23,"372 11th St, Seattle, WA 98101" -159477,Google Phone,1,600,02/01/19 15:04,"734 Cedar St, New York City, NY 10001" -159478,34in Ultrawide Monitor,1,379.99,02/12/19 22:16,"863 Cherry St, San Francisco, CA 94016" -159479,AA Batteries (4-pack),1,3.84,02/25/19 16:58,"99 11th St, New York City, NY 10001" -159480,Lightning Charging Cable,1,14.95,02/25/19 12:13,"979 Cherry St, Dallas, TX 75001" -159481,AAA Batteries (4-pack),2,2.99,02/15/19 21:16,"989 Jackson St, San Francisco, CA 94016" -159482,27in 4K Gaming Monitor,1,389.99,02/14/19 19:12,"974 8th St, San Francisco, CA 94016" -159483,Apple Airpods Headphones,1,150,02/21/19 23:09,"9 8th St, Dallas, TX 75001" -159484,AA Batteries (4-pack),1,3.84,02/11/19 23:37,"983 Johnson St, Los Angeles, CA 90001" -159485,USB-C Charging Cable,1,11.95,02/24/19 19:51,"694 Sunset St, New York City, NY 10001" -159486,Wired Headphones,1,11.99,02/06/19 06:15,"400 5th St, Austin, TX 73301" -159487,Lightning Charging Cable,1,14.95,02/21/19 11:20,"568 Madison St, New York City, NY 10001" -159488,Wired Headphones,1,11.99,02/02/19 18:50,"174 7th St, Atlanta, GA 30301" -159489,Google Phone,1,600,02/10/19 21:26,"588 Elm St, Seattle, WA 98101" -159490,AAA Batteries (4-pack),2,2.99,02/07/19 16:51,"806 Sunset St, Los Angeles, CA 90001" -159491,Lightning Charging Cable,1,14.95,02/26/19 06:40,"829 Church St, Seattle, WA 98101" -159492,Bose SoundSport Headphones,1,99.99,02/26/19 07:45,"270 Madison St, San Francisco, CA 94016" -159493,20in Monitor,1,109.99,02/19/19 22:50,"380 Meadow St, Dallas, TX 75001" -159494,Flatscreen TV,1,300,02/20/19 11:30,"598 11th St, Portland, OR 97035" -159495,27in FHD Monitor,1,149.99,02/10/19 12:55,"400 6th St, San Francisco, CA 94016" -159496,USB-C Charging Cable,1,11.95,02/03/19 16:21,"295 6th St, Los Angeles, CA 90001" -159497,AA Batteries (4-pack),1,3.84,02/06/19 10:03,"754 Washington St, Boston, MA 02215" -159498,AAA Batteries (4-pack),1,2.99,02/20/19 13:31,"641 Chestnut St, Atlanta, GA 30301" -159499,Wired Headphones,1,11.99,02/25/19 15:58,"907 North St, San Francisco, CA 94016" -159500,Apple Airpods Headphones,1,150,02/23/19 07:17,"351 Jefferson St, Atlanta, GA 30301" -159501,AA Batteries (4-pack),2,3.84,02/07/19 15:35,"132 Center St, New York City, NY 10001" -159502,Apple Airpods Headphones,1,150,02/14/19 15:28,"289 12th St, New York City, NY 10001" -159503,Macbook Pro Laptop,1,1700,02/09/19 14:32,"844 12th St, Seattle, WA 98101" -159504,AAA Batteries (4-pack),2,2.99,02/10/19 21:28,"818 Lake St, Portland, OR 97035" -159505,Bose SoundSport Headphones,1,99.99,02/04/19 13:28,"64 10th St, San Francisco, CA 94016" -159506,Macbook Pro Laptop,1,1700,02/03/19 23:23,"87 1st St, San Francisco, CA 94016" -159507,USB-C Charging Cable,1,11.95,02/17/19 12:49,"404 Dogwood St, Los Angeles, CA 90001" -159508,AA Batteries (4-pack),1,3.84,02/18/19 14:50,"50 11th St, San Francisco, CA 94016" -159509,Lightning Charging Cable,1,14.95,02/05/19 18:07,"135 9th St, Dallas, TX 75001" -159510,Apple Airpods Headphones,1,150,02/01/19 21:36,"742 10th St, New York City, NY 10001" -159511,USB-C Charging Cable,1,11.95,02/19/19 17:17,"576 Ridge St, Los Angeles, CA 90001" -159512,USB-C Charging Cable,2,11.95,02/08/19 14:48,"198 2nd St, Seattle, WA 98101" -159513,Bose SoundSport Headphones,1,99.99,02/13/19 14:12,"915 Meadow St, New York City, NY 10001" -159514,27in 4K Gaming Monitor,1,389.99,02/05/19 17:26,"818 Cherry St, San Francisco, CA 94016" -159515,Bose SoundSport Headphones,1,99.99,02/13/19 13:02,"619 Lincoln St, Portland, OR 97035" -159516,Flatscreen TV,1,300,02/10/19 20:39,"925 8th St, San Francisco, CA 94016" -159517,iPhone,1,700,02/28/19 09:59,"231 11th St, Portland, OR 97035" -159517,Apple Airpods Headphones,1,150,02/28/19 09:59,"231 11th St, Portland, OR 97035" -159518,Lightning Charging Cable,1,14.95,02/02/19 13:09,"68 2nd St, Dallas, TX 75001" -159519,USB-C Charging Cable,1,11.95,02/06/19 06:58,"846 North St, Austin, TX 73301" -159520,AAA Batteries (4-pack),1,2.99,02/05/19 00:44,"452 Hill St, Los Angeles, CA 90001" -159521,Apple Airpods Headphones,1,150,02/01/19 08:35,"932 West St, Seattle, WA 98101" -159522,USB-C Charging Cable,1,11.95,02/07/19 15:28,"284 Church St, Atlanta, GA 30301" -159523,Apple Airpods Headphones,1,150,02/21/19 12:41,"763 Madison St, Los Angeles, CA 90001" -159524,Wired Headphones,1,11.99,02/13/19 14:51,"916 1st St, Boston, MA 02215" -159525,Lightning Charging Cable,1,14.95,02/08/19 17:08,"877 Forest St, San Francisco, CA 94016" -159526,AA Batteries (4-pack),1,3.84,02/17/19 08:56,"672 Spruce St, Austin, TX 73301" -159527,AA Batteries (4-pack),2,3.84,02/27/19 18:02,"242 Wilson St, San Francisco, CA 94016" -159528,iPhone,1,700,02/27/19 15:05,"20 Cherry St, Dallas, TX 75001" -159529,AA Batteries (4-pack),1,3.84,02/08/19 22:41,"814 Main St, Boston, MA 02215" -159530,Lightning Charging Cable,1,14.95,02/27/19 06:30,"368 Washington St, Boston, MA 02215" -159531,Bose SoundSport Headphones,1,99.99,02/19/19 15:30,"881 River St, New York City, NY 10001" -159532,LG Dryer,1,600.0,02/12/19 10:14,"53 Elm St, New York City, NY 10001" -159533,Apple Airpods Headphones,1,150,02/02/19 08:06,"439 Walnut St, Austin, TX 73301" -159534,Macbook Pro Laptop,1,1700,02/01/19 15:20,"358 7th St, Austin, TX 73301" -159535,Lightning Charging Cable,1,14.95,02/05/19 17:48,"571 Jefferson St, Dallas, TX 75001" -159536,USB-C Charging Cable,1,11.95,02/02/19 17:15,"892 Main St, San Francisco, CA 94016" -159537,20in Monitor,1,109.99,02/28/19 00:53,"151 Lincoln St, Dallas, TX 75001" -159538,27in 4K Gaming Monitor,1,389.99,02/09/19 19:16,"238 Lincoln St, Portland, OR 97035" -159539,27in FHD Monitor,1,149.99,02/13/19 11:00,"697 Dogwood St, Los Angeles, CA 90001" -159540,USB-C Charging Cable,1,11.95,02/21/19 13:27,"798 Park St, Dallas, TX 75001" -159541,27in FHD Monitor,1,149.99,02/23/19 10:03,"885 Washington St, Los Angeles, CA 90001" -159542,AAA Batteries (4-pack),4,2.99,02/13/19 23:52,"752 Spruce St, Dallas, TX 75001" -159543,USB-C Charging Cable,1,11.95,02/19/19 17:25,"720 1st St, New York City, NY 10001" -159543,Lightning Charging Cable,3,14.95,02/19/19 17:25,"720 1st St, New York City, NY 10001" -159544,Lightning Charging Cable,2,14.95,02/16/19 12:54,"646 West St, San Francisco, CA 94016" -159545,USB-C Charging Cable,1,11.95,02/14/19 13:02,"305 Ridge St, Los Angeles, CA 90001" -159546,27in FHD Monitor,1,149.99,02/21/19 16:23,"550 7th St, Portland, OR 97035" -159547,AAA Batteries (4-pack),1,2.99,02/15/19 09:58,"734 Wilson St, New York City, NY 10001" -159548,Bose SoundSport Headphones,1,99.99,02/23/19 20:47,"509 Main St, Seattle, WA 98101" -159549,Apple Airpods Headphones,1,150,02/20/19 13:51,"362 Spruce St, Austin, TX 73301" -159550,AA Batteries (4-pack),2,3.84,02/15/19 09:05,"561 Lakeview St, San Francisco, CA 94016" -159551,Apple Airpods Headphones,1,150,02/26/19 13:37,"449 Washington St, Austin, TX 73301" -159552,USB-C Charging Cable,1,11.95,02/04/19 16:52,"336 Lake St, New York City, NY 10001" -159553,Macbook Pro Laptop,1,1700,02/25/19 23:56,"939 Pine St, Los Angeles, CA 90001" -159554,Wired Headphones,1,11.99,02/10/19 17:00,"65 11th St, New York City, NY 10001" -159555,27in FHD Monitor,1,149.99,02/08/19 13:41,"235 Church St, San Francisco, CA 94016" -159556,Wired Headphones,1,11.99,02/04/19 07:41,"504 Jackson St, Seattle, WA 98101" -159557,USB-C Charging Cable,1,11.95,02/09/19 11:47,"916 Washington St, San Francisco, CA 94016" -159558,27in 4K Gaming Monitor,1,389.99,02/10/19 14:54,"66 12th St, San Francisco, CA 94016" -159559,27in 4K Gaming Monitor,1,389.99,02/19/19 18:53,"867 Park St, San Francisco, CA 94016" -159560,Flatscreen TV,1,300,02/21/19 12:25,"439 14th St, San Francisco, CA 94016" -159561,Apple Airpods Headphones,1,150,02/23/19 23:00,"891 North St, Seattle, WA 98101" -159562,Bose SoundSport Headphones,1,99.99,02/24/19 14:06,"416 10th St, Austin, TX 73301" -159563,Wired Headphones,2,11.99,02/24/19 09:26,"45 Walnut St, Dallas, TX 75001" -159564,Wired Headphones,1,11.99,02/07/19 18:20,"974 Forest St, San Francisco, CA 94016" -159565,USB-C Charging Cable,1,11.95,02/24/19 18:41,"895 Johnson St, Los Angeles, CA 90001" -159566,Wired Headphones,1,11.99,02/06/19 19:15,"891 11th St, San Francisco, CA 94016" -159567,Apple Airpods Headphones,1,150,02/06/19 18:02,"434 7th St, Atlanta, GA 30301" -159568,Google Phone,1,600,02/27/19 18:53,"86 Pine St, Los Angeles, CA 90001" -159568,USB-C Charging Cable,1,11.95,02/27/19 18:53,"86 Pine St, Los Angeles, CA 90001" -159569,USB-C Charging Cable,2,11.95,02/21/19 17:49,"603 Washington St, Los Angeles, CA 90001" -159570,27in FHD Monitor,1,149.99,02/23/19 13:59,"309 6th St, Los Angeles, CA 90001" -159571,AAA Batteries (4-pack),1,2.99,02/01/19 18:19,"539 9th St, Seattle, WA 98101" -159572,iPhone,1,700,02/27/19 00:44,"62 North St, New York City, NY 10001" -159573,Google Phone,1,600,02/18/19 22:05,"439 6th St, Seattle, WA 98101" -159574,AA Batteries (4-pack),1,3.84,02/23/19 00:58,"926 14th St, Los Angeles, CA 90001" -159575,Apple Airpods Headphones,1,150,02/19/19 15:46,"956 Chestnut St, Los Angeles, CA 90001" -159576,Apple Airpods Headphones,1,150,02/23/19 16:00,"668 Wilson St, San Francisco, CA 94016" -159577,27in 4K Gaming Monitor,2,389.99,02/01/19 15:22,"511 Johnson St, Seattle, WA 98101" -159578,AAA Batteries (4-pack),4,2.99,02/02/19 17:08,"598 Madison St, New York City, NY 10001" -159579,LG Dryer,1,600.0,02/02/19 12:55,"825 12th St, Los Angeles, CA 90001" -159580,Wired Headphones,1,11.99,02/10/19 17:44,"553 9th St, New York City, NY 10001" -159581,USB-C Charging Cable,1,11.95,02/18/19 21:19,"519 14th St, Los Angeles, CA 90001" -159582,AA Batteries (4-pack),3,3.84,02/13/19 21:37,"767 11th St, New York City, NY 10001" -159583,Flatscreen TV,1,300,02/19/19 21:38,"194 Hickory St, Dallas, TX 75001" -159584,27in 4K Gaming Monitor,1,389.99,02/11/19 12:12,"799 Center St, Los Angeles, CA 90001" -159585,Lightning Charging Cable,1,14.95,02/04/19 08:08,"490 Johnson St, Portland, ME 04101" -159586,AA Batteries (4-pack),2,3.84,02/07/19 22:54,"199 Maple St, Dallas, TX 75001" -159587,AAA Batteries (4-pack),1,2.99,02/24/19 06:08,"340 Jefferson St, Boston, MA 02215" -159588,AA Batteries (4-pack),1,3.84,02/17/19 10:57,"983 Cedar St, New York City, NY 10001" -159589,AAA Batteries (4-pack),2,2.99,02/05/19 18:25,"728 12th St, Los Angeles, CA 90001" -159590,34in Ultrawide Monitor,1,379.99,02/04/19 21:39,"836 Pine St, Atlanta, GA 30301" -159591,Bose SoundSport Headphones,1,99.99,02/09/19 18:38,"400 Church St, Austin, TX 73301" -159592,USB-C Charging Cable,1,11.95,02/07/19 19:07,"724 Lake St, New York City, NY 10001" -159593,ThinkPad Laptop,1,999.99,02/27/19 23:03,"660 Main St, San Francisco, CA 94016" -159594,Wired Headphones,1,11.99,02/16/19 11:08,"994 West St, San Francisco, CA 94016" -159595,USB-C Charging Cable,1,11.95,02/17/19 16:29,"229 Dogwood St, San Francisco, CA 94016" -159596,Flatscreen TV,1,300,02/07/19 13:48,"955 1st St, Dallas, TX 75001" -159597,Apple Airpods Headphones,1,150,02/22/19 14:31,"63 Church St, Atlanta, GA 30301" -159598,Lightning Charging Cable,1,14.95,02/16/19 19:52,"928 Highland St, San Francisco, CA 94016" -159599,AA Batteries (4-pack),1,3.84,02/21/19 17:45,"713 Cedar St, Seattle, WA 98101" -159600,Flatscreen TV,1,300,02/10/19 17:51,"387 Dogwood St, Boston, MA 02215" -159601,AAA Batteries (4-pack),1,2.99,02/11/19 19:34,"438 Cedar St, Boston, MA 02215" -159602,AAA Batteries (4-pack),1,2.99,02/12/19 08:44,"924 1st St, Seattle, WA 98101" -159603,Lightning Charging Cable,1,14.95,02/09/19 09:34,"852 14th St, Seattle, WA 98101" -159604,Lightning Charging Cable,1,14.95,02/16/19 12:48,"860 Jackson St, San Francisco, CA 94016" -159605,USB-C Charging Cable,1,11.95,02/25/19 21:06,"699 Spruce St, Atlanta, GA 30301" -159606,Wired Headphones,1,11.99,02/04/19 19:37,"350 Ridge St, Portland, OR 97035" -159607,Apple Airpods Headphones,1,150,02/22/19 21:40,"258 10th St, Los Angeles, CA 90001" -159608,Wired Headphones,1,11.99,02/04/19 12:41,"380 10th St, New York City, NY 10001" -159609,Lightning Charging Cable,1,14.95,02/21/19 21:40,"521 Forest St, Portland, OR 97035" -159610,Bose SoundSport Headphones,1,99.99,02/22/19 19:48,"334 South St, Atlanta, GA 30301" -159611,Lightning Charging Cable,1,14.95,02/06/19 08:03,"640 Chestnut St, Boston, MA 02215" -159611,Macbook Pro Laptop,1,1700,02/06/19 08:03,"640 Chestnut St, Boston, MA 02215" -159612,AA Batteries (4-pack),1,3.84,02/04/19 12:29,"453 Church St, Boston, MA 02215" -159613,20in Monitor,1,109.99,02/28/19 06:28,"403 Main St, New York City, NY 10001" -159614,ThinkPad Laptop,1,999.99,02/03/19 14:53,"471 Chestnut St, Boston, MA 02215" -159615,Bose SoundSport Headphones,1,99.99,02/06/19 19:27,"590 Elm St, San Francisco, CA 94016" -159616,Wired Headphones,1,11.99,02/23/19 13:01,"442 Walnut St, Seattle, WA 98101" -159617,Google Phone,1,600,02/02/19 10:56,"230 Wilson St, San Francisco, CA 94016" -159618,Bose SoundSport Headphones,1,99.99,02/19/19 11:47,"390 5th St, New York City, NY 10001" -159619,AA Batteries (4-pack),1,3.84,02/28/19 11:07,"542 12th St, Atlanta, GA 30301" -159620,Macbook Pro Laptop,1,1700,02/06/19 04:55,"786 Washington St, Atlanta, GA 30301" -159621,LG Washing Machine,1,600.0,02/25/19 13:05,"371 Chestnut St, San Francisco, CA 94016" -159622,Wired Headphones,2,11.99,02/23/19 08:04,"38 Lincoln St, Boston, MA 02215" -159623,Bose SoundSport Headphones,1,99.99,02/18/19 11:37,"763 7th St, San Francisco, CA 94016" -159624,Apple Airpods Headphones,1,150,02/06/19 17:18,"423 Forest St, Los Angeles, CA 90001" -159625,Google Phone,1,600,02/27/19 12:36,"686 Hickory St, Dallas, TX 75001" -159626,Apple Airpods Headphones,1,150,02/12/19 17:27,"117 Sunset St, San Francisco, CA 94016" -159627,Bose SoundSport Headphones,1,99.99,02/19/19 00:11,"377 River St, San Francisco, CA 94016" -159628,Wired Headphones,1,11.99,02/01/19 14:15,"914 Pine St, Seattle, WA 98101" -159629,Google Phone,1,600,02/07/19 14:15,"653 River St, San Francisco, CA 94016" -159630,USB-C Charging Cable,2,11.95,02/01/19 10:04,"339 Madison St, San Francisco, CA 94016" -159631,34in Ultrawide Monitor,1,379.99,02/16/19 18:46,"235 7th St, San Francisco, CA 94016" -159632,AAA Batteries (4-pack),2,2.99,02/17/19 08:00,"741 Main St, New York City, NY 10001" -159633,AAA Batteries (4-pack),2,2.99,02/10/19 23:54,"738 13th St, San Francisco, CA 94016" -159634,Lightning Charging Cable,1,14.95,02/24/19 11:00,"214 River St, Dallas, TX 75001" -159635,Flatscreen TV,1,300,02/28/19 05:51,"292 14th St, New York City, NY 10001" -159636,Bose SoundSport Headphones,1,99.99,02/04/19 12:39,"555 River St, San Francisco, CA 94016" -159637,Bose SoundSport Headphones,1,99.99,02/02/19 09:54,"80 Meadow St, Austin, TX 73301" -159638,AAA Batteries (4-pack),1,2.99,02/17/19 08:48,"883 Main St, Boston, MA 02215" -159639,Apple Airpods Headphones,1,150,02/21/19 20:07,"775 Park St, Dallas, TX 75001" -159640,20in Monitor,1,109.99,02/19/19 13:59,"501 Chestnut St, Portland, OR 97035" -159641,USB-C Charging Cable,1,11.95,02/21/19 13:48,"179 Highland St, Atlanta, GA 30301" -159642,Bose SoundSport Headphones,1,99.99,02/23/19 22:50,"259 14th St, Seattle, WA 98101" -159643,Wired Headphones,1,11.99,02/16/19 21:47,"806 Center St, Portland, ME 04101" -159644,Wired Headphones,1,11.99,02/28/19 12:08,"12 Meadow St, Boston, MA 02215" -159645,USB-C Charging Cable,1,11.95,02/12/19 18:27,"537 Highland St, San Francisco, CA 94016" -159646,AA Batteries (4-pack),1,3.84,02/14/19 09:09,"436 Washington St, Seattle, WA 98101" -159647,Apple Airpods Headphones,1,150,02/25/19 20:13,"343 Madison St, New York City, NY 10001" -159648,Google Phone,1,600,02/16/19 10:40,"375 Church St, New York City, NY 10001" -159649,27in 4K Gaming Monitor,1,389.99,02/04/19 21:09,"443 Maple St, New York City, NY 10001" -159650,27in FHD Monitor,1,149.99,02/27/19 23:45,"208 Cherry St, San Francisco, CA 94016" -159651,USB-C Charging Cable,1,11.95,02/04/19 09:05,"942 Willow St, Boston, MA 02215" -159652,34in Ultrawide Monitor,1,379.99,02/20/19 12:30,"561 5th St, Portland, OR 97035" -159653,27in 4K Gaming Monitor,1,389.99,02/11/19 23:49,"603 Ridge St, San Francisco, CA 94016" -159654,USB-C Charging Cable,1,11.95,02/23/19 20:51,"766 River St, Atlanta, GA 30301" -159655,Apple Airpods Headphones,1,150,02/22/19 19:13,"499 Maple St, Seattle, WA 98101" -159656,AAA Batteries (4-pack),1,2.99,02/25/19 15:56,"451 12th St, Los Angeles, CA 90001" -159657,Lightning Charging Cable,1,14.95,02/20/19 16:29,"831 13th St, San Francisco, CA 94016" -159658,Bose SoundSport Headphones,1,99.99,02/13/19 13:50,"991 Center St, Boston, MA 02215" -159659,27in 4K Gaming Monitor,1,389.99,02/27/19 21:45,"479 Maple St, San Francisco, CA 94016" -159660,Lightning Charging Cable,1,14.95,02/24/19 20:38,"844 Wilson St, Boston, MA 02215" -159661,20in Monitor,1,109.99,02/19/19 10:27,"531 Hill St, New York City, NY 10001" -159662,27in FHD Monitor,1,149.99,02/11/19 13:50,"866 9th St, Los Angeles, CA 90001" -159663,34in Ultrawide Monitor,1,379.99,02/13/19 13:41,"71 7th St, Los Angeles, CA 90001" -159664,Lightning Charging Cable,1,14.95,02/19/19 19:35,"698 6th St, Portland, OR 97035" -159665,34in Ultrawide Monitor,1,379.99,02/15/19 17:09,"415 Lake St, New York City, NY 10001" -159666,USB-C Charging Cable,1,11.95,02/25/19 14:33,"858 River St, Los Angeles, CA 90001" -159667,AA Batteries (4-pack),1,3.84,02/27/19 16:21,"287 Cherry St, Dallas, TX 75001" -159668,Wired Headphones,1,11.99,02/20/19 23:13,"322 14th St, San Francisco, CA 94016" -159669,Apple Airpods Headphones,1,150,02/08/19 20:20,"558 Washington St, Seattle, WA 98101" -159670,Apple Airpods Headphones,1,150,02/05/19 10:16,"149 Forest St, Seattle, WA 98101" -159671,USB-C Charging Cable,1,11.95,02/06/19 09:20,"951 Spruce St, San Francisco, CA 94016" -159671,AA Batteries (4-pack),1,3.84,02/06/19 09:20,"951 Spruce St, San Francisco, CA 94016" -159672,Apple Airpods Headphones,1,150,02/21/19 19:39,"491 Johnson St, San Francisco, CA 94016" -159673,USB-C Charging Cable,1,11.95,02/22/19 22:13,"476 5th St, Los Angeles, CA 90001" -159674,AAA Batteries (4-pack),1,2.99,02/13/19 15:53,"676 Church St, San Francisco, CA 94016" -159675,Wired Headphones,2,11.99,02/27/19 13:21,"272 Cherry St, San Francisco, CA 94016" -159676,AAA Batteries (4-pack),2,2.99,02/22/19 19:38,"263 13th St, Seattle, WA 98101" -159677,27in 4K Gaming Monitor,1,389.99,02/25/19 18:50,"706 Dogwood St, Austin, TX 73301" -159678,Lightning Charging Cable,1,14.95,02/10/19 08:36,"583 11th St, Los Angeles, CA 90001" -159679,Lightning Charging Cable,1,14.95,02/25/19 01:53,"869 13th St, Boston, MA 02215" -159680,iPhone,1,700,02/08/19 11:34,"38 Cedar St, Atlanta, GA 30301" -159680,Lightning Charging Cable,1,14.95,02/08/19 11:34,"38 Cedar St, Atlanta, GA 30301" -159681,AAA Batteries (4-pack),1,2.99,02/25/19 08:38,"418 13th St, San Francisco, CA 94016" -159682,AA Batteries (4-pack),1,3.84,02/20/19 20:47,"236 Lake St, Los Angeles, CA 90001" -159683,Wired Headphones,1,11.99,02/03/19 21:10,"590 South St, Los Angeles, CA 90001" -159684,USB-C Charging Cable,1,11.95,02/17/19 11:42,"913 Jackson St, Seattle, WA 98101" -159685,Wired Headphones,1,11.99,02/04/19 17:15,"10 North St, Portland, OR 97035" -159686,AAA Batteries (4-pack),1,2.99,02/26/19 16:25,"691 River St, San Francisco, CA 94016" -159687,Bose SoundSport Headphones,1,99.99,02/05/19 10:19,"77 Main St, Portland, ME 04101" -159688,34in Ultrawide Monitor,1,379.99,02/05/19 22:33,"388 Chestnut St, Austin, TX 73301" -159689,USB-C Charging Cable,1,11.95,02/08/19 07:58,"152 South St, New York City, NY 10001" -159690,AA Batteries (4-pack),2,3.84,02/05/19 17:35,"22 5th St, Los Angeles, CA 90001" -159691,Lightning Charging Cable,1,14.95,02/17/19 14:18,"111 Wilson St, San Francisco, CA 94016" -159692,Apple Airpods Headphones,1,150,02/16/19 13:58,"925 Park St, San Francisco, CA 94016" -159693,Wired Headphones,1,11.99,02/06/19 12:18,"433 Hill St, Seattle, WA 98101" -159694,Wired Headphones,1,11.99,02/24/19 22:01,"719 13th St, Boston, MA 02215" -159695,iPhone,1,700,02/18/19 00:50,"698 Forest St, Portland, OR 97035" -159695,Lightning Charging Cable,1,14.95,02/18/19 00:50,"698 Forest St, Portland, OR 97035" -159696,Apple Airpods Headphones,1,150,02/13/19 09:34,"606 11th St, San Francisco, CA 94016" -159697,Lightning Charging Cable,1,14.95,02/02/19 23:21,"408 Wilson St, New York City, NY 10001" -159698,AAA Batteries (4-pack),1,2.99,02/17/19 17:08,"207 13th St, Austin, TX 73301" -159699,Bose SoundSport Headphones,1,99.99,02/21/19 18:50,"713 West St, San Francisco, CA 94016" -159700,AAA Batteries (4-pack),1,2.99,02/20/19 10:52,"465 Pine St, Atlanta, GA 30301" -159701,Wired Headphones,2,11.99,02/08/19 18:41,"778 Spruce St, Los Angeles, CA 90001" -159702,Google Phone,1,600,02/02/19 20:48,"443 Pine St, Los Angeles, CA 90001" -159703,Wired Headphones,1,11.99,02/19/19 10:50,"599 2nd St, Seattle, WA 98101" -159704,Lightning Charging Cable,1,14.95,02/22/19 01:02,"561 4th St, Los Angeles, CA 90001" -159705,USB-C Charging Cable,1,11.95,02/15/19 14:18,"637 14th St, San Francisco, CA 94016" -159706,Bose SoundSport Headphones,1,99.99,02/20/19 21:29,"335 Jefferson St, Portland, ME 04101" -159707,34in Ultrawide Monitor,1,379.99,02/15/19 15:13,"990 Ridge St, Seattle, WA 98101" -159708,Lightning Charging Cable,2,14.95,02/18/19 18:24,"836 Maple St, Dallas, TX 75001" -159709,AA Batteries (4-pack),1,3.84,02/26/19 16:42,"787 Spruce St, Los Angeles, CA 90001" -159710,Lightning Charging Cable,1,14.95,02/16/19 09:14,"180 Ridge St, New York City, NY 10001" -159710,Apple Airpods Headphones,1,150,02/16/19 09:14,"180 Ridge St, New York City, NY 10001" -159711,ThinkPad Laptop,1,999.99,02/14/19 00:27,"526 Maple St, New York City, NY 10001" -159712,27in FHD Monitor,1,149.99,02/27/19 03:28,"293 Jefferson St, San Francisco, CA 94016" -159713,AAA Batteries (4-pack),1,2.99,02/08/19 12:33,"367 Lake St, Dallas, TX 75001" -159714,Lightning Charging Cable,1,14.95,02/26/19 17:02,"759 4th St, Seattle, WA 98101" -159715,Wired Headphones,1,11.99,02/27/19 21:04,"361 Wilson St, Boston, MA 02215" -159716,iPhone,1,700,02/22/19 13:00,"477 Ridge St, San Francisco, CA 94016" -159717,Bose SoundSport Headphones,1,99.99,02/22/19 15:27,"973 Washington St, Seattle, WA 98101" -159718,Lightning Charging Cable,2,14.95,02/01/19 11:47,"310 4th St, Dallas, TX 75001" -159719,iPhone,1,700,02/08/19 15:03,"958 Cherry St, Los Angeles, CA 90001" -159719,Lightning Charging Cable,1,14.95,02/08/19 15:03,"958 Cherry St, Los Angeles, CA 90001" -159720,Wired Headphones,1,11.99,02/10/19 18:18,"891 7th St, Los Angeles, CA 90001" -159721,USB-C Charging Cable,3,11.95,02/27/19 19:04,"405 4th St, New York City, NY 10001" -159722,Wired Headphones,1,11.99,02/12/19 12:57,"256 2nd St, New York City, NY 10001" -159723,AAA Batteries (4-pack),1,2.99,02/03/19 15:45,"287 Chestnut St, Atlanta, GA 30301" -159724,Wired Headphones,1,11.99,02/27/19 17:31,"331 Highland St, Los Angeles, CA 90001" -159725,Lightning Charging Cable,1,14.95,02/19/19 10:15,"476 South St, Dallas, TX 75001" -159726,Macbook Pro Laptop,1,1700,02/13/19 09:54,"238 Willow St, San Francisco, CA 94016" -159727,Macbook Pro Laptop,1,1700,02/17/19 12:55,"379 Willow St, New York City, NY 10001" -159728,AA Batteries (4-pack),1,3.84,02/13/19 16:16,"351 8th St, San Francisco, CA 94016" -159729,20in Monitor,1,109.99,02/14/19 12:28,"162 Pine St, San Francisco, CA 94016" -159730,AA Batteries (4-pack),1,3.84,02/23/19 22:42,"287 Willow St, Seattle, WA 98101" -159731,Apple Airpods Headphones,1,150,02/06/19 12:21,"492 Cedar St, Seattle, WA 98101" -159732,27in 4K Gaming Monitor,1,389.99,02/02/19 08:38,"900 Willow St, New York City, NY 10001" -159733,USB-C Charging Cable,1,11.95,02/08/19 22:05,"77 Walnut St, San Francisco, CA 94016" -159734,ThinkPad Laptop,1,999.99,02/07/19 16:12,"771 Elm St, Seattle, WA 98101" -159735,USB-C Charging Cable,2,11.95,02/11/19 10:41,"816 Elm St, Atlanta, GA 30301" -159736,Google Phone,1,600,02/07/19 11:02,"151 Cherry St, Dallas, TX 75001" -159737,Lightning Charging Cable,1,14.95,02/22/19 10:31,"494 5th St, Austin, TX 73301" -159738,Flatscreen TV,1,300,02/14/19 14:21,"113 14th St, Dallas, TX 75001" -159739,Bose SoundSport Headphones,1,99.99,02/16/19 11:25,"724 Jefferson St, New York City, NY 10001" -159740,Google Phone,1,600,02/03/19 16:38,"708 Lakeview St, Dallas, TX 75001" -159741,Bose SoundSport Headphones,1,99.99,02/03/19 21:23,"654 River St, San Francisco, CA 94016" -159742,AA Batteries (4-pack),3,3.84,02/15/19 20:09,"726 Chestnut St, Boston, MA 02215" -159743,AA Batteries (4-pack),1,3.84,02/13/19 08:08,"483 Lake St, San Francisco, CA 94016" -159744,Google Phone,1,600,02/10/19 00:13,"791 South St, San Francisco, CA 94016" -159745,Apple Airpods Headphones,1,150,02/25/19 13:34,"420 Adams St, Austin, TX 73301" -159746,AA Batteries (4-pack),1,3.84,02/19/19 17:06,"328 Pine St, San Francisco, CA 94016" -159747,Flatscreen TV,1,300,02/18/19 13:15,"23 North St, New York City, NY 10001" -159748,Wired Headphones,1,11.99,02/20/19 14:18,"866 Johnson St, New York City, NY 10001" -159749,Lightning Charging Cable,1,14.95,02/09/19 21:30,"784 13th St, Boston, MA 02215" -159750,20in Monitor,1,109.99,02/03/19 17:11,"154 11th St, Portland, OR 97035" -159751,AAA Batteries (4-pack),1,2.99,02/11/19 15:13,"627 Meadow St, San Francisco, CA 94016" -159752,USB-C Charging Cable,2,11.95,02/20/19 01:28,"952 Adams St, San Francisco, CA 94016" -159753,Flatscreen TV,1,300,02/17/19 11:42,"491 Elm St, Dallas, TX 75001" -159754,Lightning Charging Cable,1,14.95,02/04/19 18:42,"871 1st St, San Francisco, CA 94016" -159755,34in Ultrawide Monitor,1,379.99,02/01/19 09:37,"760 14th St, Dallas, TX 75001" -159756,iPhone,1,700,02/05/19 18:04,"100 Maple St, Portland, OR 97035" -159757,AA Batteries (4-pack),1,3.84,02/28/19 22:55,"552 14th St, Los Angeles, CA 90001" -159758,27in FHD Monitor,2,149.99,02/07/19 12:52,"792 5th St, Portland, OR 97035" -159759,AAA Batteries (4-pack),1,2.99,02/23/19 21:36,"195 4th St, Los Angeles, CA 90001" -159760,Lightning Charging Cable,1,14.95,02/17/19 10:38,"105 Dogwood St, Seattle, WA 98101" -159761,Wired Headphones,1,11.99,02/09/19 12:56,"391 5th St, Austin, TX 73301" -159762,iPhone,1,700,02/13/19 09:16,"419 4th St, Los Angeles, CA 90001" -159763,USB-C Charging Cable,1,11.95,02/03/19 20:36,"769 Highland St, Boston, MA 02215" -159764,Wired Headphones,1,11.99,02/25/19 11:22,"67 Jefferson St, New York City, NY 10001" -159765,Lightning Charging Cable,1,14.95,02/26/19 14:25,"421 Pine St, Seattle, WA 98101" -159766,34in Ultrawide Monitor,1,379.99,02/23/19 18:01,"782 12th St, New York City, NY 10001" -159767,Wired Headphones,1,11.99,02/22/19 15:53,"480 Adams St, San Francisco, CA 94016" -159768,Google Phone,1,600,02/24/19 18:05,"400 Hill St, Portland, ME 04101" -159769,AA Batteries (4-pack),1,3.84,02/26/19 13:08,"794 Willow St, New York City, NY 10001" -159770,Apple Airpods Headphones,1,150,02/25/19 17:33,"786 Chestnut St, Austin, TX 73301" -159771,27in FHD Monitor,1,149.99,02/05/19 23:30,"311 Johnson St, Los Angeles, CA 90001" -159772,Macbook Pro Laptop,1,1700,02/14/19 12:41,"40 Ridge St, Atlanta, GA 30301" -159773,Google Phone,1,600,02/24/19 15:54,"496 Chestnut St, San Francisco, CA 94016" -159774,Vareebadd Phone,1,400,02/26/19 13:52,"217 Jackson St, San Francisco, CA 94016" -159774,Wired Headphones,1,11.99,02/26/19 13:52,"217 Jackson St, San Francisco, CA 94016" -159775,AA Batteries (4-pack),1,3.84,02/02/19 17:05,"695 Lakeview St, Atlanta, GA 30301" -159776,AA Batteries (4-pack),1,3.84,02/10/19 22:15,"222 4th St, Atlanta, GA 30301" -159777,ThinkPad Laptop,1,999.99,02/21/19 23:21,"903 4th St, Los Angeles, CA 90001" -159778,Lightning Charging Cable,1,14.95,02/28/19 21:22,"554 Walnut St, Los Angeles, CA 90001" -159779,Wired Headphones,1,11.99,02/17/19 09:52,"905 Lincoln St, Dallas, TX 75001" -159780,Lightning Charging Cable,1,14.95,02/11/19 10:34,"274 Park St, Los Angeles, CA 90001" -159781,27in FHD Monitor,1,149.99,02/26/19 15:22,"628 Adams St, Austin, TX 73301" -159782,AAA Batteries (4-pack),4,2.99,02/18/19 16:10,"22 Ridge St, San Francisco, CA 94016" -159783,USB-C Charging Cable,1,11.95,02/22/19 21:55,"252 Cherry St, San Francisco, CA 94016" -159784,AA Batteries (4-pack),2,3.84,02/09/19 07:40,"946 River St, Los Angeles, CA 90001" -159785,AA Batteries (4-pack),1,3.84,02/14/19 11:38,"917 West St, Austin, TX 73301" -159786,AAA Batteries (4-pack),1,2.99,02/02/19 10:35,"579 12th St, Seattle, WA 98101" -159787,AAA Batteries (4-pack),1,2.99,02/11/19 15:38,"580 Spruce St, Portland, OR 97035" -159788,USB-C Charging Cable,1,11.95,02/10/19 21:13,"673 12th St, Austin, TX 73301" -159789,AAA Batteries (4-pack),3,2.99,02/17/19 19:06,"964 Pine St, Los Angeles, CA 90001" -159790,Apple Airpods Headphones,1,150,02/06/19 18:40,"331 Sunset St, Austin, TX 73301" -159791,27in 4K Gaming Monitor,1,389.99,02/22/19 14:23,"267 Center St, Seattle, WA 98101" -159792,Bose SoundSport Headphones,1,99.99,02/11/19 19:06,"560 Cedar St, New York City, NY 10001" -159793,27in FHD Monitor,1,149.99,02/05/19 20:28,"519 1st St, Atlanta, GA 30301" -159794,34in Ultrawide Monitor,1,379.99,02/21/19 22:23,"212 Chestnut St, Los Angeles, CA 90001" -159795,Lightning Charging Cable,1,14.95,02/07/19 12:35,"524 Maple St, Atlanta, GA 30301" -159796,34in Ultrawide Monitor,1,379.99,02/10/19 13:14,"270 Church St, Dallas, TX 75001" -159797,27in FHD Monitor,1,149.99,02/10/19 18:46,"812 River St, Seattle, WA 98101" -159798,USB-C Charging Cable,1,11.95,02/17/19 20:59,"498 Adams St, Atlanta, GA 30301" -159799,ThinkPad Laptop,1,999.99,02/06/19 09:25,"690 14th St, Atlanta, GA 30301" -159800,Macbook Pro Laptop,1,1700,02/26/19 16:09,"895 9th St, San Francisco, CA 94016" -159801,AAA Batteries (4-pack),1,2.99,02/25/19 22:06,"332 South St, Dallas, TX 75001" -159802,Flatscreen TV,1,300,02/18/19 11:18,"222 Center St, Boston, MA 02215" -159803,Wired Headphones,1,11.99,02/14/19 07:23,"884 8th St, San Francisco, CA 94016" -159804,Lightning Charging Cable,1,14.95,02/20/19 21:09,"674 14th St, New York City, NY 10001" -159804,Lightning Charging Cable,2,14.95,02/20/19 21:09,"674 14th St, New York City, NY 10001" -159805,AAA Batteries (4-pack),1,2.99,02/23/19 22:59,"832 Forest St, New York City, NY 10001" -159806,Lightning Charging Cable,1,14.95,02/16/19 13:44,"205 10th St, San Francisco, CA 94016" -159807,Lightning Charging Cable,1,14.95,02/19/19 18:48,"641 Sunset St, Boston, MA 02215" -159808,AAA Batteries (4-pack),1,2.99,02/25/19 07:27,"983 2nd St, San Francisco, CA 94016" -159809,Bose SoundSport Headphones,1,99.99,02/11/19 01:00,"630 Sunset St, San Francisco, CA 94016" -159810,27in 4K Gaming Monitor,1,389.99,02/13/19 21:28,"367 Cherry St, San Francisco, CA 94016" -159811,AA Batteries (4-pack),1,3.84,02/22/19 13:23,"215 River St, Boston, MA 02215" -159812,AA Batteries (4-pack),3,3.84,02/24/19 21:07,"543 2nd St, Boston, MA 02215" -159812,AAA Batteries (4-pack),1,2.99,02/24/19 21:07,"543 2nd St, Boston, MA 02215" -159813,Vareebadd Phone,1,400,02/08/19 00:15,"540 4th St, Los Angeles, CA 90001" -159814,Lightning Charging Cable,1,14.95,02/07/19 20:49,"660 6th St, Los Angeles, CA 90001" -159815,AA Batteries (4-pack),1,3.84,02/07/19 19:28,"788 Dogwood St, Dallas, TX 75001" -159816,Macbook Pro Laptop,1,1700,02/23/19 05:20,"560 Lincoln St, New York City, NY 10001" -159817,27in FHD Monitor,1,149.99,02/20/19 11:51,"983 7th St, San Francisco, CA 94016" -159818,Macbook Pro Laptop,1,1700,02/25/19 08:56,"747 Washington St, New York City, NY 10001" -159819,Apple Airpods Headphones,1,150,02/23/19 14:16,"634 Cherry St, Dallas, TX 75001" -159820,AA Batteries (4-pack),2,3.84,02/10/19 22:25,"397 5th St, Portland, OR 97035" -159821,AAA Batteries (4-pack),2,2.99,02/27/19 22:21,"715 6th St, San Francisco, CA 94016" -159822,20in Monitor,1,109.99,02/06/19 12:09,"368 6th St, Los Angeles, CA 90001" -159823,Lightning Charging Cable,1,14.95,02/07/19 13:02,"59 Sunset St, Los Angeles, CA 90001" -159824,ThinkPad Laptop,1,999.99,02/01/19 20:28,"578 9th St, Seattle, WA 98101" -159825,Bose SoundSport Headphones,1,99.99,02/20/19 21:31,"911 5th St, New York City, NY 10001" -159826,AA Batteries (4-pack),2,3.84,02/16/19 09:30,"959 Johnson St, Dallas, TX 75001" -159827,Apple Airpods Headphones,1,150,02/16/19 15:19,"988 Walnut St, Los Angeles, CA 90001" -159828,USB-C Charging Cable,1,11.95,02/27/19 12:05,"81 Maple St, San Francisco, CA 94016" -159829,Wired Headphones,1,11.99,02/22/19 20:17,"68 2nd St, New York City, NY 10001" -159830,LG Dryer,1,600.0,02/25/19 13:28,"824 Church St, New York City, NY 10001" -159831,USB-C Charging Cable,1,11.95,02/16/19 18:50,"752 Walnut St, Portland, OR 97035" -159832,Bose SoundSport Headphones,1,99.99,02/28/19 09:47,"202 12th St, Seattle, WA 98101" -159833,USB-C Charging Cable,1,11.95,02/25/19 12:34,"436 5th St, San Francisco, CA 94016" -159834,Vareebadd Phone,1,400,02/24/19 13:01,"794 Madison St, Los Angeles, CA 90001" -159835,USB-C Charging Cable,1,11.95,02/22/19 20:41,"688 13th St, Dallas, TX 75001" -159835,AA Batteries (4-pack),1,3.84,02/22/19 20:41,"688 13th St, Dallas, TX 75001" -159836,Lightning Charging Cable,1,14.95,02/01/19 20:13,"98 Ridge St, Los Angeles, CA 90001" -159837,Macbook Pro Laptop,1,1700,02/13/19 16:26,"207 Jefferson St, Los Angeles, CA 90001" -159838,Wired Headphones,1,11.99,02/18/19 05:21,"688 Wilson St, San Francisco, CA 94016" -159839,27in 4K Gaming Monitor,1,389.99,02/06/19 08:52,"584 Highland St, San Francisco, CA 94016" -159840,USB-C Charging Cable,1,11.95,02/26/19 13:49,"223 Forest St, New York City, NY 10001" -159841,Lightning Charging Cable,1,14.95,02/14/19 14:30,"64 Cherry St, New York City, NY 10001" -159842,Bose SoundSport Headphones,1,99.99,02/03/19 21:23,"757 Washington St, Atlanta, GA 30301" -159843,Lightning Charging Cable,1,14.95,02/18/19 10:59,"246 Elm St, Atlanta, GA 30301" -159844,Macbook Pro Laptop,1,1700,02/22/19 13:25,"244 Adams St, San Francisco, CA 94016" -159845,AA Batteries (4-pack),1,3.84,02/24/19 18:40,"4 Lincoln St, San Francisco, CA 94016" -159846,27in FHD Monitor,1,149.99,02/23/19 20:31,"979 5th St, Seattle, WA 98101" -159847,Bose SoundSport Headphones,1,99.99,02/21/19 09:59,"392 Cherry St, San Francisco, CA 94016" -159848,ThinkPad Laptop,1,999.99,02/11/19 20:01,"671 Lakeview St, Los Angeles, CA 90001" -159849,USB-C Charging Cable,1,11.95,02/26/19 11:15,"634 North St, Portland, OR 97035" -159850,Google Phone,1,600,02/17/19 12:53,"910 1st St, San Francisco, CA 94016" -159850,USB-C Charging Cable,1,11.95,02/17/19 12:53,"910 1st St, San Francisco, CA 94016" -159851,AAA Batteries (4-pack),1,2.99,02/18/19 15:10,"448 Willow St, Los Angeles, CA 90001" -159852,AA Batteries (4-pack),1,3.84,02/14/19 17:29,"890 7th St, New York City, NY 10001" -159853,AA Batteries (4-pack),1,3.84,02/14/19 21:07,"463 Jefferson St, San Francisco, CA 94016" -159854,ThinkPad Laptop,1,999.99,02/06/19 15:27,"267 Johnson St, Seattle, WA 98101" -159855,LG Dryer,1,600.0,02/04/19 12:44,"229 Lakeview St, Boston, MA 02215" -159856,Wired Headphones,1,11.99,02/16/19 01:27,"910 4th St, Atlanta, GA 30301" -159857,Bose SoundSport Headphones,1,99.99,02/01/19 13:16,"627 12th St, San Francisco, CA 94016" -159858,Vareebadd Phone,1,400,02/27/19 12:33,"248 Church St, Boston, MA 02215" -159859,AA Batteries (4-pack),1,3.84,02/01/19 17:52,"908 Meadow St, San Francisco, CA 94016" -159860,Apple Airpods Headphones,1,150,02/09/19 17:21,"458 Main St, New York City, NY 10001" -159861,Apple Airpods Headphones,1,150,02/11/19 04:39,"768 Hickory St, Los Angeles, CA 90001" -159862,Vareebadd Phone,1,400,02/14/19 14:55,"34 Maple St, Portland, OR 97035" -159863,AA Batteries (4-pack),1,3.84,02/28/19 14:28,"294 Madison St, Boston, MA 02215" -159864,Wired Headphones,1,11.99,02/16/19 20:48,"410 North St, Los Angeles, CA 90001" -159865,27in FHD Monitor,1,149.99,02/04/19 09:31,"720 9th St, San Francisco, CA 94016" -159866,27in FHD Monitor,1,149.99,02/15/19 11:17,"337 Forest St, Atlanta, GA 30301" -159867,Bose SoundSport Headphones,1,99.99,02/04/19 14:17,"454 Center St, Dallas, TX 75001" -159868,Wired Headphones,1,11.99,02/10/19 13:50,"710 Maple St, Austin, TX 73301" -159869,Bose SoundSport Headphones,1,99.99,02/13/19 21:47,"154 13th St, Seattle, WA 98101" -159870,AAA Batteries (4-pack),1,2.99,02/21/19 15:15,"625 Johnson St, Los Angeles, CA 90001" -159871,Apple Airpods Headphones,1,150,02/04/19 10:14,"980 West St, Los Angeles, CA 90001" -159872,USB-C Charging Cable,1,11.95,02/23/19 19:57,"537 Walnut St, San Francisco, CA 94016" -159873,Apple Airpods Headphones,1,150,02/18/19 01:02,"992 12th St, New York City, NY 10001" -159874,AAA Batteries (4-pack),1,2.99,02/24/19 10:42,"935 Johnson St, Los Angeles, CA 90001" -159875,Macbook Pro Laptop,1,1700,02/22/19 18:33,"637 Lake St, New York City, NY 10001" -159876,AA Batteries (4-pack),1,3.84,02/05/19 19:43,"681 Pine St, New York City, NY 10001" -159877,27in 4K Gaming Monitor,1,389.99,02/26/19 08:40,"870 Chestnut St, New York City, NY 10001" -159878,Apple Airpods Headphones,1,150,02/20/19 23:26,"158 Highland St, San Francisco, CA 94016" -159879,34in Ultrawide Monitor,1,379.99,02/09/19 11:14,"185 Washington St, New York City, NY 10001" -159880,Wired Headphones,1,11.99,02/10/19 22:19,"44 Hickory St, Austin, TX 73301" -159881,Wired Headphones,1,11.99,02/06/19 11:46,"270 North St, Los Angeles, CA 90001" -159882,AA Batteries (4-pack),1,3.84,02/25/19 02:01,"683 Meadow St, Boston, MA 02215" -159883,Google Phone,1,600,02/10/19 13:12,"657 Sunset St, Los Angeles, CA 90001" -159884,AAA Batteries (4-pack),1,2.99,02/26/19 20:34,"525 7th St, Atlanta, GA 30301" -159885,27in 4K Gaming Monitor,1,389.99,02/18/19 16:22,"507 Jackson St, Portland, OR 97035" -159886,AAA Batteries (4-pack),5,2.99,02/27/19 19:00,"441 Jackson St, Los Angeles, CA 90001" -159887,20in Monitor,1,109.99,02/17/19 21:36,"880 North St, Portland, OR 97035" -159888,LG Washing Machine,1,600.0,02/16/19 18:39,"614 Sunset St, San Francisco, CA 94016" -159889,AAA Batteries (4-pack),3,2.99,02/02/19 21:33,"147 Lake St, Portland, OR 97035" -159890,Lightning Charging Cable,1,14.95,02/23/19 09:24,"228 Elm St, San Francisco, CA 94016" -159891,34in Ultrawide Monitor,1,379.99,02/18/19 13:40,"689 10th St, New York City, NY 10001" -159892,27in FHD Monitor,1,149.99,02/02/19 19:59,"433 Hickory St, Dallas, TX 75001" -159893,Bose SoundSport Headphones,1,99.99,02/25/19 22:24,"590 Jefferson St, New York City, NY 10001" -159894,USB-C Charging Cable,1,11.95,02/03/19 17:28,"270 Highland St, San Francisco, CA 94016" -159895,Bose SoundSport Headphones,1,99.99,02/26/19 09:39,"979 11th St, Seattle, WA 98101" -159896,USB-C Charging Cable,2,11.95,02/27/19 04:48,"317 Center St, New York City, NY 10001" -159897,34in Ultrawide Monitor,1,379.99,02/09/19 13:25,"704 Sunset St, Austin, TX 73301" -159898,Google Phone,1,600,02/25/19 11:04,"952 Highland St, Los Angeles, CA 90001" -159899,Lightning Charging Cable,1,14.95,02/16/19 22:40,"711 5th St, Seattle, WA 98101" -159900,Bose SoundSport Headphones,1,99.99,02/02/19 14:49,"380 11th St, Austin, TX 73301" -159901,27in 4K Gaming Monitor,1,389.99,02/03/19 11:30,"22 Johnson St, Dallas, TX 75001" -159902,20in Monitor,1,109.99,02/15/19 13:44,"196 Lakeview St, Portland, OR 97035" -159903,USB-C Charging Cable,1,11.95,02/03/19 22:43,"301 Cedar St, San Francisco, CA 94016" -159904,Bose SoundSport Headphones,1,99.99,02/19/19 12:33,"385 Pine St, Seattle, WA 98101" -159905,AA Batteries (4-pack),3,3.84,02/28/19 16:10,"148 Lakeview St, San Francisco, CA 94016" -159906,Lightning Charging Cable,1,14.95,02/01/19 19:01,"838 Cedar St, San Francisco, CA 94016" -159907,Macbook Pro Laptop,1,1700,02/05/19 10:54,"761 Jefferson St, Dallas, TX 75001" -159908,Apple Airpods Headphones,1,150,02/17/19 11:31,"431 Hickory St, Los Angeles, CA 90001" -159909,Apple Airpods Headphones,1,150,02/24/19 18:05,"202 Forest St, Atlanta, GA 30301" -159910,AA Batteries (4-pack),1,3.84,02/16/19 00:17,"916 Madison St, Los Angeles, CA 90001" -159911,Lightning Charging Cable,1,14.95,02/01/19 22:20,"620 10th St, San Francisco, CA 94016" -159912,27in FHD Monitor,1,149.99,02/07/19 01:24,"210 Lakeview St, San Francisco, CA 94016" -159913,Flatscreen TV,1,300,02/03/19 17:03,"156 14th St, Los Angeles, CA 90001" -159914,iPhone,1,700,02/01/19 20:09,"440 Maple St, Atlanta, GA 30301" -159915,20in Monitor,1,109.99,02/11/19 19:30,"459 Washington St, San Francisco, CA 94016" -159916,USB-C Charging Cable,1,11.95,02/22/19 10:57,"898 Madison St, Atlanta, GA 30301" -159917,Google Phone,1,600,02/19/19 19:23,"531 Forest St, Seattle, WA 98101" -159918,Lightning Charging Cable,1,14.95,02/10/19 17:36,"25 Main St, Los Angeles, CA 90001" -159919,USB-C Charging Cable,1,11.95,02/14/19 14:22,"680 Hill St, Portland, ME 04101" -159920,Apple Airpods Headphones,1,150,02/20/19 10:20,"589 6th St, New York City, NY 10001" -159921,ThinkPad Laptop,1,999.99,02/03/19 03:01,"794 Lake St, Los Angeles, CA 90001" -159922,Apple Airpods Headphones,1,150,02/10/19 18:20,"253 Forest St, Austin, TX 73301" -159923,AA Batteries (4-pack),1,3.84,02/20/19 18:48,"421 Chestnut St, San Francisco, CA 94016" -159924,AAA Batteries (4-pack),1,2.99,02/24/19 09:46,"779 Spruce St, Los Angeles, CA 90001" -159925,Bose SoundSport Headphones,1,99.99,02/01/19 16:13,"968 14th St, Atlanta, GA 30301" -159926,27in FHD Monitor,1,149.99,02/04/19 09:49,"311 Ridge St, Seattle, WA 98101" -159927,USB-C Charging Cable,1,11.95,02/27/19 21:40,"244 Meadow St, San Francisco, CA 94016" -159928,Lightning Charging Cable,1,14.95,02/09/19 06:42,"376 Church St, Los Angeles, CA 90001" -159929,AAA Batteries (4-pack),1,2.99,02/13/19 20:08,"320 Highland St, Portland, OR 97035" -159930,AA Batteries (4-pack),4,3.84,02/13/19 20:43,"72 Jackson St, Boston, MA 02215" -159931,Macbook Pro Laptop,1,1700,02/20/19 09:35,"346 Lake St, Dallas, TX 75001" -159932,Macbook Pro Laptop,1,1700,02/03/19 15:50,"375 Lincoln St, Portland, OR 97035" -159933,20in Monitor,1,109.99,02/14/19 17:57,"975 Chestnut St, Seattle, WA 98101" -159934,ThinkPad Laptop,1,999.99,02/19/19 23:13,"860 Hill St, San Francisco, CA 94016" -159935,AA Batteries (4-pack),1,3.84,02/25/19 22:31,"328 Cherry St, Los Angeles, CA 90001" -159936,Apple Airpods Headphones,1,150,02/07/19 16:12,"724 Main St, San Francisco, CA 94016" -159937,ThinkPad Laptop,1,999.99,02/03/19 17:59,"209 Cherry St, Los Angeles, CA 90001" -159938,AAA Batteries (4-pack),1,2.99,02/16/19 18:26,"839 Lakeview St, San Francisco, CA 94016" -159939,Wired Headphones,1,11.99,02/02/19 08:00,"568 Wilson St, San Francisco, CA 94016" -159940,Wired Headphones,1,11.99,02/18/19 13:51,"554 Willow St, San Francisco, CA 94016" -159941,AA Batteries (4-pack),1,3.84,02/20/19 10:11,"828 River St, Dallas, TX 75001" -159942,Apple Airpods Headphones,1,150,02/17/19 13:00,"90 5th St, Dallas, TX 75001" -159943,Apple Airpods Headphones,1,150,02/09/19 06:40,"497 Lakeview St, San Francisco, CA 94016" -159944,Lightning Charging Cable,1,14.95,02/26/19 23:40,"395 West St, San Francisco, CA 94016" -159945,AAA Batteries (4-pack),4,2.99,02/08/19 14:14,"535 Main St, New York City, NY 10001" -159946,Lightning Charging Cable,3,14.95,02/02/19 10:06,"585 Lincoln St, Los Angeles, CA 90001" -159947,AAA Batteries (4-pack),2,2.99,02/20/19 09:13,"99 8th St, Seattle, WA 98101" -159948,AAA Batteries (4-pack),2,2.99,02/04/19 20:48,"217 8th St, Boston, MA 02215" -159949,Google Phone,1,600,02/24/19 12:21,"851 West St, Atlanta, GA 30301" -159950,Lightning Charging Cable,1,14.95,02/28/19 19:11,"414 Meadow St, Seattle, WA 98101" -159951,Lightning Charging Cable,1,14.95,02/15/19 13:09,"715 Dogwood St, Atlanta, GA 30301" -159952,Google Phone,1,600,02/02/19 14:11,"18 10th St, San Francisco, CA 94016" -159952,USB-C Charging Cable,2,11.95,02/02/19 14:11,"18 10th St, San Francisco, CA 94016" -159953,USB-C Charging Cable,1,11.95,02/17/19 08:33,"245 6th St, Dallas, TX 75001" -159954,ThinkPad Laptop,1,999.99,02/04/19 13:46,"614 Lake St, Seattle, WA 98101" -159955,27in 4K Gaming Monitor,1,389.99,02/12/19 06:48,"777 Lake St, Los Angeles, CA 90001" -159956,AA Batteries (4-pack),1,3.84,02/16/19 20:29,"246 Lakeview St, Seattle, WA 98101" -159957,Apple Airpods Headphones,1,150,02/27/19 10:25,"868 Forest St, Dallas, TX 75001" -159958,Apple Airpods Headphones,1,150,02/05/19 23:30,"352 Meadow St, San Francisco, CA 94016" -159959,Lightning Charging Cable,1,14.95,02/02/19 12:50,"441 Jackson St, Austin, TX 73301" -159960,Vareebadd Phone,1,400,02/11/19 12:42,"783 4th St, San Francisco, CA 94016" -159961,34in Ultrawide Monitor,1,379.99,02/25/19 23:44,"555 Highland St, San Francisco, CA 94016" -159962,AA Batteries (4-pack),1,3.84,02/02/19 21:45,"974 Sunset St, San Francisco, CA 94016" -159963,AA Batteries (4-pack),1,3.84,02/20/19 11:34,"915 Lincoln St, San Francisco, CA 94016" -159964,20in Monitor,1,109.99,02/21/19 21:31,"265 Lakeview St, Austin, TX 73301" -159965,USB-C Charging Cable,2,11.95,02/16/19 08:06,"542 2nd St, Los Angeles, CA 90001" -159966,Wired Headphones,1,11.99,02/10/19 11:17,"191 Adams St, Los Angeles, CA 90001" -159967,34in Ultrawide Monitor,1,379.99,02/22/19 19:32,"942 Cherry St, Seattle, WA 98101" -159968,AA Batteries (4-pack),5,3.84,02/24/19 21:34,"666 12th St, San Francisco, CA 94016" -159969,Bose SoundSport Headphones,1,99.99,02/28/19 09:33,"137 Elm St, New York City, NY 10001" -159970,ThinkPad Laptop,1,999.99,02/07/19 18:40,"485 Washington St, Los Angeles, CA 90001" -159971,27in 4K Gaming Monitor,1,389.99,02/11/19 22:47,"520 Lake St, New York City, NY 10001" -159972,20in Monitor,1,109.99,02/17/19 12:24,"827 Ridge St, Los Angeles, CA 90001" -159973,AA Batteries (4-pack),1,3.84,02/27/19 02:12,"310 Lake St, Los Angeles, CA 90001" -159974,LG Dryer,1,600.0,02/16/19 17:34,"713 Center St, Portland, ME 04101" -159975,27in FHD Monitor,1,149.99,02/09/19 23:53,"59 5th St, San Francisco, CA 94016" -159976,27in 4K Gaming Monitor,1,389.99,02/10/19 19:03,"921 Elm St, San Francisco, CA 94016" -159977,Wired Headphones,1,11.99,02/04/19 14:21,"600 6th St, Seattle, WA 98101" -159978,Lightning Charging Cable,1,14.95,02/07/19 12:08,"374 Washington St, Austin, TX 73301" -159979,AAA Batteries (4-pack),1,2.99,02/12/19 12:32,"309 5th St, New York City, NY 10001" -159979,AA Batteries (4-pack),1,3.84,02/12/19 12:32,"309 5th St, New York City, NY 10001" -159980,Apple Airpods Headphones,1,150,02/07/19 12:18,"491 12th St, San Francisco, CA 94016" -159981,Lightning Charging Cable,1,14.95,02/02/19 19:41,"703 Lincoln St, Atlanta, GA 30301" -159982,Lightning Charging Cable,1,14.95,02/27/19 10:59,"831 Madison St, Los Angeles, CA 90001" -159983,Apple Airpods Headphones,1,150,02/09/19 20:55,"813 Jefferson St, San Francisco, CA 94016" -159984,Apple Airpods Headphones,1,150,02/06/19 13:13,"670 11th St, Portland, OR 97035" -159985,USB-C Charging Cable,1,11.95,02/12/19 10:36,"59 Walnut St, New York City, NY 10001" -159986,27in FHD Monitor,1,149.99,02/21/19 17:15,"398 Meadow St, Los Angeles, CA 90001" -159987,USB-C Charging Cable,1,11.95,02/20/19 15:11,"224 1st St, Portland, OR 97035" -159988,AAA Batteries (4-pack),1,2.99,02/20/19 19:25,"811 Madison St, Austin, TX 73301" -159989,Flatscreen TV,1,300,02/10/19 09:47,"239 Adams St, Boston, MA 02215" -159990,Lightning Charging Cable,1,14.95,02/16/19 05:23,"111 Elm St, Atlanta, GA 30301" -159991,AAA Batteries (4-pack),1,2.99,02/06/19 20:04,"298 10th St, Los Angeles, CA 90001" -159992,Apple Airpods Headphones,1,150,02/18/19 04:49,"814 Wilson St, New York City, NY 10001" -159993,AAA Batteries (4-pack),1,2.99,02/23/19 23:24,"903 Forest St, Seattle, WA 98101" -159994,iPhone,1,700,02/06/19 21:27,"624 Lake St, Austin, TX 73301" -159995,Bose SoundSport Headphones,1,99.99,02/11/19 18:17,"195 Jefferson St, Los Angeles, CA 90001" -159996,Wired Headphones,1,11.99,02/10/19 15:47,"315 2nd St, Los Angeles, CA 90001" -159997,Bose SoundSport Headphones,1,99.99,02/11/19 21:51,"941 Jefferson St, Seattle, WA 98101" -159998,Lightning Charging Cable,1,14.95,02/08/19 08:05,"757 Maple St, Portland, OR 97035" -159999,27in FHD Monitor,1,149.99,02/28/19 11:27,"377 Maple St, New York City, NY 10001" -160000,Wired Headphones,1,11.99,02/03/19 23:13,"870 6th St, Los Angeles, CA 90001" -160001,AAA Batteries (4-pack),1,2.99,02/03/19 07:27,"967 Hill St, Los Angeles, CA 90001" -160002,AAA Batteries (4-pack),1,2.99,02/16/19 07:11,"291 Maple St, Atlanta, GA 30301" -160003,AAA Batteries (4-pack),1,2.99,02/28/19 22:55,"352 7th St, Portland, OR 97035" -160004,Bose SoundSport Headphones,1,99.99,02/27/19 22:52,"543 Sunset St, San Francisco, CA 94016" -160005,Lightning Charging Cable,1,14.95,02/03/19 12:23,"985 West St, Austin, TX 73301" -160006,34in Ultrawide Monitor,1,379.99,02/05/19 20:54,"974 Lakeview St, Los Angeles, CA 90001" -160007,AA Batteries (4-pack),1,3.84,02/20/19 13:42,"635 Highland St, Atlanta, GA 30301" -160008,USB-C Charging Cable,2,11.95,02/10/19 00:09,"70 Center St, Atlanta, GA 30301" -160009,USB-C Charging Cable,1,11.95,02/05/19 09:51,"507 Washington St, Portland, ME 04101" -160010,AA Batteries (4-pack),1,3.84,02/15/19 10:23,"358 Dogwood St, San Francisco, CA 94016" -160011,USB-C Charging Cable,2,11.95,02/12/19 22:02,"578 6th St, Los Angeles, CA 90001" -160012,Lightning Charging Cable,1,14.95,02/07/19 15:50,"975 Johnson St, Dallas, TX 75001" -160013,27in 4K Gaming Monitor,1,389.99,02/13/19 14:41,"914 Walnut St, Los Angeles, CA 90001" -160014,USB-C Charging Cable,1,11.95,02/11/19 09:27,"953 1st St, Boston, MA 02215" -160015,Flatscreen TV,1,300,02/11/19 20:24,"47 7th St, Atlanta, GA 30301" -160016,34in Ultrawide Monitor,1,379.99,02/06/19 16:16,"925 4th St, Dallas, TX 75001" -160017,34in Ultrawide Monitor,1,379.99,02/25/19 15:43,"356 Spruce St, Boston, MA 02215" -160018,AAA Batteries (4-pack),2,2.99,02/22/19 01:23,"516 9th St, San Francisco, CA 94016" -160019,ThinkPad Laptop,1,999.99,02/11/19 11:24,"117 Chestnut St, Portland, OR 97035" -160020,AAA Batteries (4-pack),2,2.99,02/25/19 02:03,"604 Center St, New York City, NY 10001" -160021,iPhone,1,700,02/19/19 18:36,"722 Center St, Seattle, WA 98101" -160021,Wired Headphones,1,11.99,02/19/19 18:36,"722 Center St, Seattle, WA 98101" -160022,AAA Batteries (4-pack),2,2.99,02/06/19 18:03,"994 Madison St, Los Angeles, CA 90001" -160023,AAA Batteries (4-pack),1,2.99,02/15/19 12:01,"163 Main St, Los Angeles, CA 90001" -160024,USB-C Charging Cable,1,11.95,02/15/19 22:44,"124 10th St, Atlanta, GA 30301" -160025,Lightning Charging Cable,1,14.95,02/10/19 08:00,"596 Elm St, New York City, NY 10001" -160026,Apple Airpods Headphones,1,150,02/16/19 12:13,"786 Adams St, New York City, NY 10001" -160027,LG Dryer,1,600.0,02/22/19 13:32,"885 North St, Dallas, TX 75001" -160028,Wired Headphones,1,11.99,02/24/19 21:49,"511 10th St, Seattle, WA 98101" -160029,Google Phone,1,600,02/02/19 12:36,"60 Washington St, New York City, NY 10001" -160030,27in FHD Monitor,1,149.99,02/19/19 19:36,"38 Madison St, Dallas, TX 75001" -160031,20in Monitor,1,109.99,02/17/19 11:58,"994 Willow St, Atlanta, GA 30301" -160032,Apple Airpods Headphones,1,150,02/02/19 11:50,"8 6th St, Austin, TX 73301" -160033,Flatscreen TV,1,300,02/09/19 14:57,"332 6th St, San Francisco, CA 94016" -160034,Wired Headphones,1,11.99,02/23/19 15:34,"584 Maple St, New York City, NY 10001" -160035,USB-C Charging Cable,1,11.95,02/26/19 15:33,"478 Center St, San Francisco, CA 94016" -160036,Flatscreen TV,1,300,02/06/19 17:25,"960 Jackson St, Los Angeles, CA 90001" -160037,AAA Batteries (4-pack),1,2.99,02/01/19 10:26,"360 Jackson St, Dallas, TX 75001" -160038,Wired Headphones,1,11.99,02/09/19 08:40,"732 Highland St, San Francisco, CA 94016" -160039,Lightning Charging Cable,1,14.95,02/21/19 03:00,"930 9th St, Atlanta, GA 30301" -160040,Vareebadd Phone,1,400,02/10/19 11:39,"893 Ridge St, Los Angeles, CA 90001" -160041,USB-C Charging Cable,2,11.95,02/21/19 22:58,"616 Hill St, San Francisco, CA 94016" -160042,Google Phone,1,600,02/20/19 10:38,"704 Lakeview St, Boston, MA 02215" -160043,34in Ultrawide Monitor,1,379.99,02/13/19 19:26,"102 14th St, Boston, MA 02215" -160044,27in FHD Monitor,1,149.99,02/07/19 15:03,"894 4th St, San Francisco, CA 94016" -160045,Wired Headphones,1,11.99,02/28/19 08:16,"776 Adams St, San Francisco, CA 94016" -160046,27in 4K Gaming Monitor,1,389.99,02/17/19 09:36,"210 South St, San Francisco, CA 94016" -160047,USB-C Charging Cable,1,11.95,02/03/19 11:26,"460 9th St, New York City, NY 10001" -160048,Bose SoundSport Headphones,1,99.99,02/08/19 17:40,"895 Maple St, Austin, TX 73301" -160049,AAA Batteries (4-pack),1,2.99,02/25/19 16:33,"60 South St, San Francisco, CA 94016" -160050,Flatscreen TV,1,300,02/22/19 14:43,"700 Wilson St, San Francisco, CA 94016" -160051,27in FHD Monitor,1,149.99,02/05/19 15:55,"536 South St, San Francisco, CA 94016" -160052,AA Batteries (4-pack),1,3.84,02/02/19 08:31,"114 6th St, Austin, TX 73301" -160053,Bose SoundSport Headphones,1,99.99,02/22/19 20:37,"785 1st St, Los Angeles, CA 90001" -160054,34in Ultrawide Monitor,1,379.99,02/04/19 13:18,"825 Meadow St, Portland, OR 97035" -160055,Google Phone,1,600,02/08/19 16:27,"93 11th St, San Francisco, CA 94016" -160055,USB-C Charging Cable,1,11.95,02/08/19 16:27,"93 11th St, San Francisco, CA 94016" -160055,Wired Headphones,1,11.99,02/08/19 16:27,"93 11th St, San Francisco, CA 94016" -160056,USB-C Charging Cable,1,11.95,02/28/19 15:55,"743 Hickory St, Seattle, WA 98101" -160057,AA Batteries (4-pack),3,3.84,02/13/19 20:24,"430 12th St, San Francisco, CA 94016" -160058,AAA Batteries (4-pack),1,2.99,02/19/19 14:56,"301 Walnut St, Austin, TX 73301" -160059,Wired Headphones,1,11.99,02/07/19 16:10,"593 Cherry St, Los Angeles, CA 90001" -160060,Apple Airpods Headphones,1,150,02/06/19 17:11,"99 North St, San Francisco, CA 94016" -160061,AA Batteries (4-pack),1,3.84,02/02/19 11:44,"143 Hickory St, San Francisco, CA 94016" -160062,Lightning Charging Cable,1,14.95,02/01/19 13:26,"488 Main St, Boston, MA 02215" -160063,Apple Airpods Headphones,1,150,02/12/19 09:12,"233 Church St, San Francisco, CA 94016" -160064,Lightning Charging Cable,1,14.95,02/02/19 23:35,"989 Wilson St, Seattle, WA 98101" -160065,Wired Headphones,1,11.99,02/19/19 14:21,"466 Hill St, Los Angeles, CA 90001" -160066,Lightning Charging Cable,1,14.95,02/28/19 10:05,"750 Spruce St, Los Angeles, CA 90001" -160067,AAA Batteries (4-pack),2,2.99,02/22/19 02:01,"477 14th St, Los Angeles, CA 90001" -160068,AAA Batteries (4-pack),1,2.99,02/06/19 19:58,"592 Lake St, San Francisco, CA 94016" -160069,AA Batteries (4-pack),1,3.84,02/05/19 09:19,"713 Walnut St, Austin, TX 73301" -160070,27in FHD Monitor,2,149.99,02/05/19 23:02,"941 Dogwood St, Los Angeles, CA 90001" -160071,Wired Headphones,1,11.99,02/20/19 20:25,"358 Chestnut St, San Francisco, CA 94016" -160072,27in 4K Gaming Monitor,1,389.99,02/15/19 14:19,"687 Lakeview St, Los Angeles, CA 90001" -160073,34in Ultrawide Monitor,1,379.99,02/08/19 22:21,"486 Dogwood St, New York City, NY 10001" -160074,Bose SoundSport Headphones,1,99.99,02/27/19 16:08,"588 Adams St, Los Angeles, CA 90001" -160075,Bose SoundSport Headphones,1,99.99,02/09/19 00:50,"922 8th St, San Francisco, CA 94016" -160076,Apple Airpods Headphones,1,150,02/12/19 01:10,"534 Wilson St, Atlanta, GA 30301" -160077,AA Batteries (4-pack),1,3.84,02/11/19 16:46,"469 Lake St, San Francisco, CA 94016" -160078,USB-C Charging Cable,1,11.95,02/21/19 19:36,"51 13th St, Atlanta, GA 30301" -160079,Lightning Charging Cable,1,14.95,02/15/19 22:18,"411 Dogwood St, Los Angeles, CA 90001" -160080,Bose SoundSport Headphones,1,99.99,02/02/19 15:55,"209 7th St, San Francisco, CA 94016" -160081,USB-C Charging Cable,1,11.95,02/18/19 12:47,"600 13th St, San Francisco, CA 94016" -160082,Wired Headphones,1,11.99,02/16/19 11:15,"328 Dogwood St, Atlanta, GA 30301" -160083,27in FHD Monitor,1,149.99,02/14/19 12:30,"850 Cedar St, Los Angeles, CA 90001" -160084,Flatscreen TV,1,300,02/09/19 16:41,"374 Cherry St, Boston, MA 02215" -160085,AAA Batteries (4-pack),2,2.99,02/22/19 18:29,"889 12th St, Los Angeles, CA 90001" -160086,Wired Headphones,1,11.99,02/03/19 18:09,"694 West St, Boston, MA 02215" -160087,Wired Headphones,1,11.99,02/12/19 21:34,"403 Sunset St, Austin, TX 73301" -160088,USB-C Charging Cable,1,11.95,02/18/19 14:43,"506 Hill St, Dallas, TX 75001" -160089,Apple Airpods Headphones,1,150,02/03/19 22:38,"595 9th St, Dallas, TX 75001" -160090,USB-C Charging Cable,1,11.95,02/02/19 07:28,"982 Pine St, San Francisco, CA 94016" -160091,USB-C Charging Cable,2,11.95,02/15/19 14:53,"629 Sunset St, Boston, MA 02215" -160092,USB-C Charging Cable,1,11.95,02/14/19 18:22,"678 Lincoln St, San Francisco, CA 94016" -160093,iPhone,1,700,02/01/19 16:51,"563 Lincoln St, Los Angeles, CA 90001" -160094,27in 4K Gaming Monitor,1,389.99,02/12/19 14:50,"626 Madison St, Dallas, TX 75001" -160095,Lightning Charging Cable,1,14.95,02/15/19 09:49,"103 Spruce St, Boston, MA 02215" -160096,Apple Airpods Headphones,1,150,02/12/19 11:44,"825 13th St, Los Angeles, CA 90001" -160097,20in Monitor,1,109.99,02/09/19 11:05,"964 Lakeview St, Los Angeles, CA 90001" -160098,AAA Batteries (4-pack),1,2.99,02/01/19 17:42,"284 Sunset St, San Francisco, CA 94016" -160099,USB-C Charging Cable,1,11.95,02/18/19 21:34,"163 12th St, Portland, ME 04101" -160100,Lightning Charging Cable,1,14.95,02/11/19 09:14,"94 Church St, Austin, TX 73301" -160101,AA Batteries (4-pack),1,3.84,02/17/19 21:20,"743 Lakeview St, Dallas, TX 75001" -160102,Flatscreen TV,1,300,02/02/19 10:16,"948 5th St, New York City, NY 10001" -160103,Apple Airpods Headphones,1,150,02/10/19 14:54,"839 9th St, San Francisco, CA 94016" -160104,Wired Headphones,1,11.99,02/03/19 17:36,"870 North St, New York City, NY 10001" -160105,Apple Airpods Headphones,1,150,02/20/19 13:22,"281 Lake St, Seattle, WA 98101" -160106,Bose SoundSport Headphones,1,99.99,02/11/19 18:48,"217 10th St, San Francisco, CA 94016" -160107,34in Ultrawide Monitor,1,379.99,02/06/19 11:12,"860 Chestnut St, San Francisco, CA 94016" -160108,27in FHD Monitor,1,149.99,02/01/19 18:25,"786 Adams St, Seattle, WA 98101" -160109,Macbook Pro Laptop,1,1700,02/16/19 13:31,"151 Hill St, New York City, NY 10001" -160110,Flatscreen TV,1,300,02/03/19 15:41,"531 Jackson St, Boston, MA 02215" -160111,USB-C Charging Cable,1,11.95,02/08/19 19:46,"138 11th St, Portland, OR 97035" -160112,AA Batteries (4-pack),2,3.84,02/24/19 23:08,"621 Cedar St, Los Angeles, CA 90001" -160113,Apple Airpods Headphones,1,150,02/18/19 16:56,"643 4th St, Dallas, TX 75001" -160114,USB-C Charging Cable,1,11.95,02/17/19 15:13,"867 2nd St, Portland, OR 97035" -160115,Lightning Charging Cable,1,14.95,02/24/19 11:08,"199 Wilson St, Los Angeles, CA 90001" -160116,AA Batteries (4-pack),1,3.84,02/25/19 17:38,"653 6th St, Portland, OR 97035" -160117,Wired Headphones,1,11.99,02/23/19 14:11,"993 Pine St, Los Angeles, CA 90001" -160118,Lightning Charging Cable,1,14.95,02/10/19 08:49,"541 Hickory St, Seattle, WA 98101" -160119,27in 4K Gaming Monitor,1,389.99,02/09/19 17:43,"566 Sunset St, Boston, MA 02215" -160120,Bose SoundSport Headphones,1,99.99,02/05/19 11:50,"871 10th St, San Francisco, CA 94016" -160121,Wired Headphones,1,11.99,02/13/19 07:14,"815 Chestnut St, San Francisco, CA 94016" -160122,Lightning Charging Cable,1,14.95,02/21/19 10:59,"42 4th St, San Francisco, CA 94016" -160123,Wired Headphones,1,11.99,02/01/19 13:50,"901 Walnut St, New York City, NY 10001" -160124,AAA Batteries (4-pack),1,2.99,02/11/19 18:25,"716 Willow St, San Francisco, CA 94016" -160125,Lightning Charging Cable,1,14.95,02/04/19 19:24,"168 13th St, Los Angeles, CA 90001" -160126,AA Batteries (4-pack),1,3.84,02/28/19 10:12,"256 Highland St, Austin, TX 73301" -160127,27in FHD Monitor,1,149.99,02/17/19 22:30,"112 Church St, Atlanta, GA 30301" -160128,iPhone,1,700,02/24/19 12:14,"33 Willow St, Boston, MA 02215" -160129,34in Ultrawide Monitor,1,379.99,02/15/19 13:03,"47 11th St, Seattle, WA 98101" -160130,AAA Batteries (4-pack),1,2.99,02/28/19 17:13,"654 14th St, Los Angeles, CA 90001" -160131,Lightning Charging Cable,1,14.95,02/27/19 22:28,"498 Wilson St, New York City, NY 10001" -160132,Macbook Pro Laptop,1,1700,02/11/19 09:35,"289 7th St, San Francisco, CA 94016" -160133,Lightning Charging Cable,1,14.95,02/08/19 20:54,"917 Lincoln St, Los Angeles, CA 90001" -160134,Bose SoundSport Headphones,1,99.99,02/02/19 08:25,"6 12th St, New York City, NY 10001" -160135,AA Batteries (4-pack),1,3.84,02/13/19 08:53,"633 4th St, Atlanta, GA 30301" -160136,Wired Headphones,1,11.99,02/24/19 14:28,"212 Highland St, Seattle, WA 98101" -160137,Bose SoundSport Headphones,1,99.99,02/16/19 21:29,"840 Hickory St, San Francisco, CA 94016" -160138,AA Batteries (4-pack),1,3.84,02/24/19 09:27,"333 Lincoln St, New York City, NY 10001" -160139,AA Batteries (4-pack),1,3.84,02/22/19 16:46,"36 2nd St, Seattle, WA 98101" -160140,27in 4K Gaming Monitor,1,389.99,02/08/19 09:25,"60 Walnut St, Seattle, WA 98101" -160141,Flatscreen TV,1,300,02/17/19 20:05,"373 1st St, San Francisco, CA 94016" -160142,USB-C Charging Cable,2,11.95,02/26/19 18:40,"447 12th St, Boston, MA 02215" -160143,Apple Airpods Headphones,1,150,02/24/19 18:52,"885 Walnut St, New York City, NY 10001" -160144,34in Ultrawide Monitor,1,379.99,02/24/19 18:16,"150 4th St, Dallas, TX 75001" -160145,AAA Batteries (4-pack),1,2.99,02/09/19 18:20,"497 8th St, New York City, NY 10001" -160146,AA Batteries (4-pack),1,3.84,02/28/19 08:34,"875 Dogwood St, Los Angeles, CA 90001" -160147,Lightning Charging Cable,1,14.95,02/15/19 17:39,"467 11th St, Portland, ME 04101" -160148,27in 4K Gaming Monitor,1,389.99,02/04/19 01:09,"356 Spruce St, Austin, TX 73301" -160149,USB-C Charging Cable,3,11.95,02/01/19 22:02,"319 14th St, San Francisco, CA 94016" -160150,AA Batteries (4-pack),1,3.84,02/05/19 13:33,"857 Hill St, Atlanta, GA 30301" -160151,AAA Batteries (4-pack),1,2.99,02/22/19 14:09,"569 Center St, Seattle, WA 98101" -160152,AAA Batteries (4-pack),1,2.99,02/20/19 21:12,"917 Chestnut St, San Francisco, CA 94016" -160153,Wired Headphones,1,11.99,02/03/19 09:38,"72 2nd St, San Francisco, CA 94016" -160154,iPhone,1,700,02/05/19 20:45,"970 10th St, Los Angeles, CA 90001" -160155,USB-C Charging Cable,1,11.95,02/15/19 17:55,"882 10th St, Los Angeles, CA 90001" -160156,AAA Batteries (4-pack),2,2.99,02/14/19 21:40,"296 Cedar St, San Francisco, CA 94016" -160157,Bose SoundSport Headphones,1,99.99,02/21/19 21:15,"832 12th St, Seattle, WA 98101" -160158,Apple Airpods Headphones,1,150,02/07/19 20:40,"278 8th St, New York City, NY 10001" -160159,Apple Airpods Headphones,1,150,02/11/19 17:37,"285 4th St, Austin, TX 73301" -160160,27in 4K Gaming Monitor,1,389.99,02/01/19 21:17,"809 Park St, Los Angeles, CA 90001" -160161,AAA Batteries (4-pack),1,2.99,02/06/19 13:27,"108 4th St, Los Angeles, CA 90001" -160162,AA Batteries (4-pack),2,3.84,02/10/19 16:55,"814 7th St, Portland, OR 97035" -160163,ThinkPad Laptop,1,999.99,02/12/19 14:35,"273 Cedar St, San Francisco, CA 94016" -160164,27in 4K Gaming Monitor,1,389.99,02/04/19 07:12,"192 Madison St, Seattle, WA 98101" -160165,USB-C Charging Cable,1,11.95,02/17/19 15:38,"213 Church St, Los Angeles, CA 90001" -160166,USB-C Charging Cable,1,11.95,02/16/19 07:44,"534 1st St, New York City, NY 10001" -160167,AA Batteries (4-pack),1,3.84,02/06/19 12:18,"807 9th St, San Francisco, CA 94016" -160168,Wired Headphones,1,11.99,02/23/19 14:55,"109 Johnson St, Boston, MA 02215" -160169,Lightning Charging Cable,1,14.95,02/21/19 17:58,"291 West St, New York City, NY 10001" -160170,AA Batteries (4-pack),1,3.84,02/25/19 20:42,"915 Lake St, Atlanta, GA 30301" -160171,AAA Batteries (4-pack),2,2.99,02/13/19 16:55,"186 Cherry St, Boston, MA 02215" -160172,Bose SoundSport Headphones,1,99.99,02/03/19 09:46,"966 Lake St, Los Angeles, CA 90001" -160173,27in FHD Monitor,1,149.99,02/14/19 12:52,"443 10th St, Boston, MA 02215" -160174,Wired Headphones,1,11.99,02/08/19 21:15,"998 13th St, Portland, OR 97035" -160175,Bose SoundSport Headphones,1,99.99,02/16/19 19:13,"81 1st St, Atlanta, GA 30301" -160176,27in FHD Monitor,1,149.99,02/04/19 00:25,"481 4th St, San Francisco, CA 94016" -160177,27in 4K Gaming Monitor,1,389.99,02/28/19 21:10,"912 Sunset St, Austin, TX 73301" -160178,20in Monitor,1,109.99,02/17/19 19:43,"773 Jefferson St, Los Angeles, CA 90001" -160179,Google Phone,1,600,02/26/19 08:44,"156 11th St, Boston, MA 02215" -160179,USB-C Charging Cable,1,11.95,02/26/19 08:44,"156 11th St, Boston, MA 02215" -160180,Wired Headphones,1,11.99,02/15/19 15:36,"670 Lincoln St, San Francisco, CA 94016" -160181,Flatscreen TV,1,300,02/23/19 20:07,"36 Jefferson St, Seattle, WA 98101" -160182,USB-C Charging Cable,1,11.95,02/08/19 18:08,"532 2nd St, Austin, TX 73301" -160183,Wired Headphones,1,11.99,02/01/19 19:50,"875 Adams St, Los Angeles, CA 90001" -160184,iPhone,1,700,02/08/19 20:36,"20 Lincoln St, Atlanta, GA 30301" -160185,Bose SoundSport Headphones,1,99.99,02/25/19 17:53,"383 7th St, New York City, NY 10001" -160186,AA Batteries (4-pack),1,3.84,02/10/19 15:26,"414 10th St, Seattle, WA 98101" -160187,AAA Batteries (4-pack),1,2.99,02/13/19 09:11,"261 Main St, Portland, OR 97035" -160188,Bose SoundSport Headphones,1,99.99,02/13/19 00:49,"395 9th St, Los Angeles, CA 90001" -160189,Lightning Charging Cable,1,14.95,02/05/19 22:29,"572 Maple St, Dallas, TX 75001" -160190,USB-C Charging Cable,1,11.95,02/25/19 21:42,"478 River St, San Francisco, CA 94016" -160191,Lightning Charging Cable,1,14.95,02/01/19 10:36,"123 Dogwood St, Portland, OR 97035" -160192,Apple Airpods Headphones,1,150,02/18/19 21:26,"19 7th St, Dallas, TX 75001" -160193,20in Monitor,1,109.99,02/27/19 19:01,"259 North St, San Francisco, CA 94016" -160194,Bose SoundSport Headphones,1,99.99,02/20/19 10:54,"617 Dogwood St, San Francisco, CA 94016" -160195,Google Phone,1,600,02/09/19 18:28,"109 1st St, Portland, OR 97035" -160196,USB-C Charging Cable,1,11.95,02/18/19 21:52,"57 Center St, San Francisco, CA 94016" -160197,27in 4K Gaming Monitor,1,389.99,02/26/19 18:12,"297 Cherry St, San Francisco, CA 94016" -160198,Apple Airpods Headphones,1,150,03/01/19 00:29,"894 Cedar St, San Francisco, CA 94016" -160199,34in Ultrawide Monitor,1,379.99,02/20/19 10:07,"813 4th St, New York City, NY 10001" -160200,Bose SoundSport Headphones,1,99.99,02/28/19 13:11,"862 Church St, New York City, NY 10001" -160201,AA Batteries (4-pack),1,3.84,02/07/19 21:18,"422 Main St, San Francisco, CA 94016" -160202,Wired Headphones,1,11.99,02/09/19 18:34,"832 1st St, Boston, MA 02215" -160203,AAA Batteries (4-pack),4,2.99,02/11/19 09:15,"436 West St, Seattle, WA 98101" -160204,Bose SoundSport Headphones,1,99.99,03/01/19 01:04,"889 2nd St, Atlanta, GA 30301" -160205,AA Batteries (4-pack),1,3.84,02/02/19 20:39,"178 Ridge St, Los Angeles, CA 90001" -160206,34in Ultrawide Monitor,1,379.99,02/13/19 11:04,"62 Elm St, New York City, NY 10001" -160207,AAA Batteries (4-pack),1,2.99,02/27/19 10:40,"382 Meadow St, San Francisco, CA 94016" -160208,Lightning Charging Cable,1,14.95,02/28/19 07:18,"845 Hill St, San Francisco, CA 94016" -160209,USB-C Charging Cable,1,11.95,02/10/19 14:16,"791 Park St, Boston, MA 02215" -160210,Apple Airpods Headphones,1,150,02/14/19 19:02,"266 Cherry St, Los Angeles, CA 90001" -160211,Apple Airpods Headphones,1,150,02/05/19 18:41,"678 Ridge St, New York City, NY 10001" -160212,Lightning Charging Cable,1,14.95,02/15/19 22:57,"757 Walnut St, New York City, NY 10001" -160213,iPhone,1,700,02/24/19 20:50,"857 2nd St, Dallas, TX 75001" -160214,20in Monitor,1,109.99,02/22/19 17:31,"615 4th St, San Francisco, CA 94016" -160215,USB-C Charging Cable,1,11.95,02/02/19 21:29,"106 River St, San Francisco, CA 94016" -160216,27in FHD Monitor,1,149.99,02/20/19 01:33,"524 1st St, Seattle, WA 98101" -160217,Apple Airpods Headphones,1,150,02/10/19 14:30,"614 Ridge St, New York City, NY 10001" -160218,Apple Airpods Headphones,1,150,02/15/19 21:11,"757 Chestnut St, Dallas, TX 75001" -,,,,, -160219,Lightning Charging Cable,1,14.95,02/24/19 19:24,"739 Lake St, Austin, TX 73301" -160220,Wired Headphones,1,11.99,02/28/19 19:54,"535 West St, Atlanta, GA 30301" -160221,Google Phone,1,600,02/12/19 21:51,"758 River St, New York City, NY 10001" -160222,Lightning Charging Cable,1,14.95,02/04/19 22:20,"844 Johnson St, Dallas, TX 75001" -160223,27in FHD Monitor,1,149.99,02/02/19 14:09,"894 Cedar St, San Francisco, CA 94016" -160224,Google Phone,1,600,02/21/19 13:11,"168 Walnut St, Dallas, TX 75001" -160225,iPhone,1,700,02/09/19 21:00,"716 7th St, Boston, MA 02215" -160226,ThinkPad Laptop,1,999.99,02/02/19 13:30,"700 River St, San Francisco, CA 94016" -160227,USB-C Charging Cable,1,11.95,02/19/19 15:25,"326 4th St, Los Angeles, CA 90001" -160228,USB-C Charging Cable,1,11.95,02/04/19 16:06,"854 Lake St, San Francisco, CA 94016" -160229,Lightning Charging Cable,1,14.95,02/27/19 21:04,"260 14th St, Los Angeles, CA 90001" -160230,Bose SoundSport Headphones,1,99.99,02/04/19 17:43,"708 Lake St, San Francisco, CA 94016" -160231,ThinkPad Laptop,1,999.99,02/24/19 11:16,"679 6th St, San Francisco, CA 94016" -160232,20in Monitor,1,109.99,02/04/19 13:41,"786 Church St, San Francisco, CA 94016" -160233,Apple Airpods Headphones,1,150,02/28/19 00:30,"300 13th St, Los Angeles, CA 90001" -160234,27in FHD Monitor,1,149.99,02/26/19 17:36,"861 Spruce St, New York City, NY 10001" -160235,Lightning Charging Cable,1,14.95,02/13/19 17:26,"142 Washington St, San Francisco, CA 94016" -160236,AA Batteries (4-pack),1,3.84,02/14/19 14:52,"838 Meadow St, New York City, NY 10001" -160237,Google Phone,1,600,02/10/19 09:23,"610 Washington St, Los Angeles, CA 90001" -160238,AAA Batteries (4-pack),1,2.99,03/01/19 02:08,"147 Main St, Boston, MA 02215" -160239,Wired Headphones,1,11.99,02/20/19 12:33,"518 Adams St, Atlanta, GA 30301" -160240,34in Ultrawide Monitor,1,379.99,02/16/19 10:36,"414 River St, San Francisco, CA 94016" -160241,AAA Batteries (4-pack),1,2.99,02/13/19 15:44,"781 Washington St, San Francisco, CA 94016" -160242,Wired Headphones,1,11.99,02/25/19 15:47,"264 Willow St, Boston, MA 02215" -160243,AA Batteries (4-pack),1,3.84,02/07/19 12:20,"747 Chestnut St, Dallas, TX 75001" -160244,Lightning Charging Cable,1,14.95,02/14/19 17:41,"403 Jackson St, Seattle, WA 98101" -160245,Apple Airpods Headphones,1,150,02/13/19 22:07,"827 North St, Boston, MA 02215" -160246,Lightning Charging Cable,1,14.95,02/22/19 11:01,"374 River St, Dallas, TX 75001" -160247,ThinkPad Laptop,1,999.99,02/26/19 16:03,"610 North St, Dallas, TX 75001" -160248,20in Monitor,1,109.99,02/05/19 11:32,"954 Walnut St, New York City, NY 10001" -160249,Google Phone,1,600,02/20/19 14:05,"371 Lakeview St, Boston, MA 02215" -160250,Google Phone,1,600,02/01/19 14:40,"556 9th St, Seattle, WA 98101" -160251,Bose SoundSport Headphones,1,99.99,02/22/19 21:23,"728 Washington St, San Francisco, CA 94016" -160252,Bose SoundSport Headphones,1,99.99,02/09/19 22:39,"861 Park St, Los Angeles, CA 90001" -160253,USB-C Charging Cable,2,11.95,02/26/19 09:32,"99 Walnut St, Los Angeles, CA 90001" -160254,Bose SoundSport Headphones,1,99.99,02/28/19 19:50,"342 10th St, New York City, NY 10001" -160255,Apple Airpods Headphones,1,150,02/11/19 16:01,"176 9th St, Austin, TX 73301" -160256,27in FHD Monitor,1,149.99,02/01/19 22:51,"779 14th St, San Francisco, CA 94016" -160257,27in 4K Gaming Monitor,1,389.99,02/16/19 23:59,"639 Walnut St, Los Angeles, CA 90001" -160258,Flatscreen TV,1,300,02/28/19 09:45,"857 Meadow St, New York City, NY 10001" -160259,Wired Headphones,1,11.99,02/28/19 18:43,"846 Hill St, Seattle, WA 98101" -160260,Google Phone,1,600,02/13/19 18:58,"738 Jefferson St, Los Angeles, CA 90001" -160261,Flatscreen TV,1,300,02/10/19 17:09,"333 Hill St, Boston, MA 02215" -160262,USB-C Charging Cable,1,11.95,02/23/19 13:06,"808 Church St, San Francisco, CA 94016" -160263,20in Monitor,1,109.99,02/07/19 13:00,"154 Johnson St, Boston, MA 02215" -160264,Vareebadd Phone,1,400,02/26/19 17:09,"675 14th St, Austin, TX 73301" -160264,USB-C Charging Cable,1,11.95,02/26/19 17:09,"675 14th St, Austin, TX 73301" -160265,USB-C Charging Cable,1,11.95,02/27/19 21:09,"454 Hill St, San Francisco, CA 94016" -160266,Wired Headphones,1,11.99,02/01/19 18:58,"363 Center St, Los Angeles, CA 90001" -160267,USB-C Charging Cable,1,11.95,02/17/19 14:32,"123 Church St, Los Angeles, CA 90001" -160268,Bose SoundSport Headphones,1,99.99,02/11/19 10:21,"751 Cherry St, New York City, NY 10001" -160269,AAA Batteries (4-pack),2,2.99,02/25/19 11:16,"391 Walnut St, Portland, OR 97035" -160270,iPhone,1,700,02/12/19 00:04,"420 4th St, Los Angeles, CA 90001" -160271,AA Batteries (4-pack),1,3.84,02/21/19 09:17,"585 Spruce St, Atlanta, GA 30301" -160272,27in 4K Gaming Monitor,1,389.99,02/10/19 15:50,"662 Adams St, Los Angeles, CA 90001" -160273,AA Batteries (4-pack),1,3.84,02/06/19 14:52,"335 Sunset St, Seattle, WA 98101" -160274,Bose SoundSport Headphones,1,99.99,02/22/19 08:59,"409 Maple St, New York City, NY 10001" -160275,Flatscreen TV,1,300,02/07/19 22:33,"459 Spruce St, Dallas, TX 75001" -160276,20in Monitor,1,109.99,02/27/19 15:02,"227 Jefferson St, Portland, OR 97035" -160277,27in FHD Monitor,1,149.99,02/16/19 12:34,"790 Johnson St, San Francisco, CA 94016" -160278,Apple Airpods Headphones,1,150,02/03/19 17:03,"300 Willow St, Boston, MA 02215" -160279,AA Batteries (4-pack),1,3.84,02/26/19 14:43,"122 Jackson St, San Francisco, CA 94016" -160280,Lightning Charging Cable,2,14.95,02/26/19 13:20,"150 Meadow St, Boston, MA 02215" -160281,Apple Airpods Headphones,1,150,02/05/19 07:23,"371 Cherry St, Boston, MA 02215" -160282,Lightning Charging Cable,1,14.95,02/12/19 00:56,"863 6th St, San Francisco, CA 94016" -160283,USB-C Charging Cable,1,11.95,02/13/19 16:15,"527 Lincoln St, San Francisco, CA 94016" -160284,Lightning Charging Cable,1,14.95,02/28/19 10:49,"875 12th St, Atlanta, GA 30301" -160285,Wired Headphones,1,11.99,02/19/19 15:48,"868 Forest St, Dallas, TX 75001" -160286,Lightning Charging Cable,1,14.95,02/18/19 10:57,"989 Cherry St, Dallas, TX 75001" -160287,AAA Batteries (4-pack),1,2.99,02/08/19 20:43,"371 Johnson St, San Francisco, CA 94016" -160288,USB-C Charging Cable,1,11.95,02/06/19 20:34,"234 River St, Boston, MA 02215" -160289,AA Batteries (4-pack),2,3.84,02/23/19 17:54,"830 5th St, Los Angeles, CA 90001" -160290,iPhone,1,700,02/01/19 11:36,"710 Jackson St, San Francisco, CA 94016" -160291,Lightning Charging Cable,1,14.95,02/11/19 10:05,"19 Dogwood St, Boston, MA 02215" -160292,Flatscreen TV,1,300,02/19/19 11:23,"866 Highland St, Atlanta, GA 30301" -160293,ThinkPad Laptop,1,999.99,02/08/19 23:25,"202 River St, San Francisco, CA 94016" -160294,AAA Batteries (4-pack),3,2.99,02/13/19 12:43,"145 14th St, San Francisco, CA 94016" -160295,AAA Batteries (4-pack),1,2.99,02/08/19 21:16,"257 Church St, Dallas, TX 75001" -160296,Lightning Charging Cable,1,14.95,02/12/19 18:50,"521 Spruce St, Los Angeles, CA 90001" -160297,AA Batteries (4-pack),1,3.84,02/08/19 19:29,"722 River St, Boston, MA 02215" -160298,USB-C Charging Cable,1,11.95,02/04/19 18:01,"63 1st St, New York City, NY 10001" -160298,Apple Airpods Headphones,1,150,02/04/19 18:01,"63 1st St, New York City, NY 10001" -160299,AAA Batteries (4-pack),1,2.99,02/03/19 07:58,"547 Cedar St, Los Angeles, CA 90001" -160300,Wired Headphones,2,11.99,02/22/19 21:02,"323 7th St, Boston, MA 02215" -160301,27in FHD Monitor,1,149.99,02/02/19 14:59,"359 2nd St, Austin, TX 73301" -160302,USB-C Charging Cable,1,11.95,02/21/19 16:09,"249 Church St, Dallas, TX 75001" -160303,34in Ultrawide Monitor,1,379.99,02/17/19 21:30,"61 13th St, San Francisco, CA 94016" -160304,Apple Airpods Headphones,1,150,02/01/19 12:49,"837 Cedar St, Portland, ME 04101" -160305,AAA Batteries (4-pack),2,2.99,02/16/19 07:40,"744 Park St, Seattle, WA 98101" -160306,USB-C Charging Cable,1,11.95,02/14/19 21:58,"86 Ridge St, Los Angeles, CA 90001" -160307,Bose SoundSport Headphones,1,99.99,02/19/19 19:09,"758 Hickory St, New York City, NY 10001" -160308,Apple Airpods Headphones,1,150,02/24/19 14:46,"529 8th St, Portland, OR 97035" -160309,Bose SoundSport Headphones,1,99.99,02/23/19 23:43,"315 Lake St, San Francisco, CA 94016" -160310,27in FHD Monitor,1,149.99,02/24/19 17:31,"395 Hill St, Dallas, TX 75001" -160311,AAA Batteries (4-pack),3,2.99,02/06/19 13:44,"92 4th St, Atlanta, GA 30301" -160312,27in 4K Gaming Monitor,1,389.99,02/09/19 09:14,"308 Hickory St, New York City, NY 10001" -160313,USB-C Charging Cable,1,11.95,02/21/19 12:50,"234 Park St, Atlanta, GA 30301" -160314,Lightning Charging Cable,1,14.95,02/28/19 13:17,"285 Madison St, Seattle, WA 98101" -160315,Apple Airpods Headphones,1,150,02/21/19 08:45,"688 2nd St, Austin, TX 73301" -160316,USB-C Charging Cable,1,11.95,02/08/19 21:15,"661 11th St, Boston, MA 02215" -160317,AAA Batteries (4-pack),1,2.99,02/28/19 22:35,"84 Lincoln St, Dallas, TX 75001" -160318,USB-C Charging Cable,1,11.95,02/15/19 09:26,"171 River St, San Francisco, CA 94016" -160319,Flatscreen TV,1,300,02/10/19 08:19,"468 4th St, Boston, MA 02215" -160320,AA Batteries (4-pack),1,3.84,02/23/19 08:59,"497 Park St, Atlanta, GA 30301" -160321,AAA Batteries (4-pack),2,2.99,02/15/19 08:49,"623 North St, Boston, MA 02215" -160322,AA Batteries (4-pack),1,3.84,02/25/19 18:07,"233 South St, Los Angeles, CA 90001" -160323,Bose SoundSport Headphones,1,99.99,02/15/19 09:19,"2 Park St, Los Angeles, CA 90001" -160324,AAA Batteries (4-pack),2,2.99,02/11/19 21:27,"241 14th St, Atlanta, GA 30301" -160325,AAA Batteries (4-pack),1,2.99,02/08/19 22:21,"832 10th St, San Francisco, CA 94016" -160326,27in 4K Gaming Monitor,1,389.99,02/14/19 11:42,"772 8th St, San Francisco, CA 94016" -160327,AAA Batteries (4-pack),1,2.99,02/27/19 11:30,"313 11th St, Portland, OR 97035" -160328,Wired Headphones,1,11.99,02/10/19 09:45,"497 Hickory St, Boston, MA 02215" -160329,AAA Batteries (4-pack),3,2.99,02/28/19 10:12,"166 Hill St, Seattle, WA 98101" -160329,AAA Batteries (4-pack),1,2.99,02/28/19 10:12,"166 Hill St, Seattle, WA 98101" -160330,34in Ultrawide Monitor,1,379.99,02/25/19 13:33,"999 Lakeview St, Boston, MA 02215" -160331,34in Ultrawide Monitor,1,379.99,02/07/19 19:42,"428 Washington St, Dallas, TX 75001" -160332,Apple Airpods Headphones,1,150,02/03/19 13:48,"310 10th St, San Francisco, CA 94016" -160333,iPhone,1,700,02/06/19 22:28,"527 Jackson St, Portland, ME 04101" -160333,Lightning Charging Cable,1,14.95,02/06/19 22:28,"527 Jackson St, Portland, ME 04101" -160334,Wired Headphones,1,11.99,02/06/19 09:56,"741 6th St, New York City, NY 10001" -160335,Lightning Charging Cable,1,14.95,02/09/19 18:25,"259 Hickory St, Los Angeles, CA 90001" -160336,Apple Airpods Headphones,1,150,02/03/19 17:07,"662 Main St, San Francisco, CA 94016" -160337,Flatscreen TV,1,300,02/21/19 23:23,"790 Ridge St, San Francisco, CA 94016" -160338,Wired Headphones,1,11.99,02/12/19 16:57,"435 Hill St, New York City, NY 10001" -160339,Wired Headphones,1,11.99,02/21/19 22:57,"907 Lake St, San Francisco, CA 94016" -160340,iPhone,1,700,02/07/19 17:47,"187 Jackson St, Boston, MA 02215" -160341,34in Ultrawide Monitor,1,379.99,02/17/19 18:13,"371 11th St, Los Angeles, CA 90001" -160342,AA Batteries (4-pack),1,3.84,02/15/19 15:28,"32 Lake St, New York City, NY 10001" -160343,AA Batteries (4-pack),2,3.84,02/12/19 10:05,"239 Washington St, Los Angeles, CA 90001" -160344,AA Batteries (4-pack),1,3.84,02/17/19 20:47,"371 Ridge St, Los Angeles, CA 90001" -160345,AAA Batteries (4-pack),2,2.99,02/11/19 18:59,"428 Church St, San Francisco, CA 94016" -160346,Bose SoundSport Headphones,1,99.99,02/05/19 12:16,"224 Maple St, Dallas, TX 75001" -160347,Wired Headphones,2,11.99,02/15/19 00:31,"528 2nd St, Dallas, TX 75001" -160348,Wired Headphones,1,11.99,02/20/19 14:01,"119 Main St, Dallas, TX 75001" -160349,Flatscreen TV,1,300,02/14/19 10:46,"477 Madison St, Atlanta, GA 30301" -160350,AA Batteries (4-pack),1,3.84,02/21/19 19:17,"792 Jackson St, Los Angeles, CA 90001" -160351,Lightning Charging Cable,1,14.95,02/16/19 20:36,"193 Hickory St, Dallas, TX 75001" -160352,Lightning Charging Cable,1,14.95,02/26/19 18:36,"840 Chestnut St, New York City, NY 10001" -160353,Flatscreen TV,1,300,02/14/19 10:11,"539 6th St, New York City, NY 10001" -160354,Lightning Charging Cable,1,14.95,02/25/19 15:28,"57 South St, Los Angeles, CA 90001" -160355,AA Batteries (4-pack),1,3.84,02/24/19 19:11,"650 Madison St, Dallas, TX 75001" -160356,27in 4K Gaming Monitor,1,389.99,02/26/19 11:07,"991 Park St, San Francisco, CA 94016" -160357,AA Batteries (4-pack),1,3.84,02/14/19 11:22,"979 River St, Los Angeles, CA 90001" -160358,USB-C Charging Cable,1,11.95,02/22/19 09:51,"756 Lakeview St, San Francisco, CA 94016" -160359,27in FHD Monitor,1,149.99,02/27/19 14:39,"609 Church St, Dallas, TX 75001" -160360,Lightning Charging Cable,1,14.95,02/09/19 21:32,"462 11th St, Austin, TX 73301" -160361,AAA Batteries (4-pack),2,2.99,02/24/19 20:13,"929 Wilson St, San Francisco, CA 94016" -160362,Wired Headphones,1,11.99,02/17/19 10:34,"318 Adams St, Atlanta, GA 30301" -160363,AA Batteries (4-pack),1,3.84,02/03/19 16:09,"88 7th St, Portland, OR 97035" -160364,AA Batteries (4-pack),1,3.84,02/13/19 13:23,"415 10th St, Dallas, TX 75001" -160365,Bose SoundSport Headphones,1,99.99,02/28/19 02:23,"774 Washington St, Boston, MA 02215" -160366,AAA Batteries (4-pack),1,2.99,02/24/19 09:32,"17 Washington St, Boston, MA 02215" -160367,Macbook Pro Laptop,1,1700,02/08/19 15:05,"927 Lincoln St, Dallas, TX 75001" -160368,AAA Batteries (4-pack),1,2.99,02/11/19 16:11,"644 Forest St, San Francisco, CA 94016" -160369,USB-C Charging Cable,2,11.95,02/18/19 12:32,"665 Pine St, Los Angeles, CA 90001" -160370,Apple Airpods Headphones,1,150,02/25/19 01:05,"851 North St, San Francisco, CA 94016" -160371,Google Phone,1,600,02/13/19 11:31,"636 6th St, Dallas, TX 75001" -160371,USB-C Charging Cable,1,11.95,02/13/19 11:31,"636 6th St, Dallas, TX 75001" -160372,Lightning Charging Cable,1,14.95,02/17/19 02:44,"654 5th St, Boston, MA 02215" -160373,Bose SoundSport Headphones,1,99.99,02/04/19 11:19,"946 Forest St, Boston, MA 02215" -160374,34in Ultrawide Monitor,1,379.99,02/01/19 18:35,"979 West St, Los Angeles, CA 90001" -160375,Wired Headphones,1,11.99,02/22/19 11:17,"32 North St, New York City, NY 10001" -160376,Wired Headphones,1,11.99,02/19/19 04:39,"821 5th St, San Francisco, CA 94016" -160377,AA Batteries (4-pack),1,3.84,02/11/19 08:52,"840 1st St, Portland, OR 97035" -160378,USB-C Charging Cable,1,11.95,02/16/19 23:07,"529 14th St, Boston, MA 02215" -160379,Lightning Charging Cable,1,14.95,02/22/19 01:07,"591 Lake St, New York City, NY 10001" -160380,Bose SoundSport Headphones,1,99.99,02/16/19 12:00,"267 Walnut St, San Francisco, CA 94016" -160381,Flatscreen TV,1,300,02/14/19 21:46,"997 5th St, San Francisco, CA 94016" -160382,USB-C Charging Cable,1,11.95,02/25/19 10:07,"661 South St, San Francisco, CA 94016" -160383,USB-C Charging Cable,1,11.95,02/26/19 10:24,"876 Chestnut St, Portland, ME 04101" -160384,ThinkPad Laptop,1,999.99,02/10/19 11:55,"853 Meadow St, San Francisco, CA 94016" -160385,ThinkPad Laptop,1,999.99,02/16/19 01:52,"346 Lincoln St, San Francisco, CA 94016" -160386,Wired Headphones,1,11.99,02/16/19 21:06,"86 Forest St, Boston, MA 02215" -160387,34in Ultrawide Monitor,1,379.99,02/23/19 20:34,"437 6th St, Dallas, TX 75001" -160388,USB-C Charging Cable,1,11.95,02/24/19 11:54,"510 Cedar St, Atlanta, GA 30301" -160389,Apple Airpods Headphones,1,150,02/10/19 09:45,"720 14th St, Seattle, WA 98101" -160390,34in Ultrawide Monitor,1,379.99,02/14/19 10:44,"525 Wilson St, San Francisco, CA 94016" -160391,20in Monitor,1,109.99,02/01/19 09:32,"606 Pine St, San Francisco, CA 94016" -160392,Wired Headphones,1,11.99,02/06/19 11:52,"245 13th St, San Francisco, CA 94016" -160393,AA Batteries (4-pack),1,3.84,02/06/19 21:25,"122 Spruce St, Seattle, WA 98101" -160394,USB-C Charging Cable,1,11.95,02/21/19 13:00,"121 Pine St, New York City, NY 10001" -160395,Apple Airpods Headphones,1,150,02/07/19 13:10,"169 Washington St, Dallas, TX 75001" -160396,20in Monitor,1,109.99,02/16/19 10:23,"665 Madison St, New York City, NY 10001" -160397,AAA Batteries (4-pack),1,2.99,02/07/19 20:38,"217 Jefferson St, San Francisco, CA 94016" -160398,Lightning Charging Cable,1,14.95,02/03/19 16:04,"233 Highland St, Seattle, WA 98101" -160399,Lightning Charging Cable,1,14.95,02/09/19 06:49,"820 2nd St, Los Angeles, CA 90001" -160400,LG Washing Machine,1,600.0,02/03/19 10:21,"609 Church St, Boston, MA 02215" -160401,Apple Airpods Headphones,1,150,02/02/19 10:45,"571 Cherry St, Boston, MA 02215" -160402,Bose SoundSport Headphones,1,99.99,02/04/19 11:15,"847 Main St, San Francisco, CA 94016" -160403,AAA Batteries (4-pack),1,2.99,02/10/19 12:50,"919 Forest St, Boston, MA 02215" -160404,Google Phone,1,600,02/01/19 09:03,"450 South St, Portland, OR 97035" -160405,Lightning Charging Cable,1,14.95,02/04/19 10:58,"936 11th St, San Francisco, CA 94016" -160406,Apple Airpods Headphones,1,150,02/20/19 22:10,"66 10th St, San Francisco, CA 94016" -160407,AA Batteries (4-pack),1,3.84,02/13/19 15:33,"629 Lakeview St, San Francisco, CA 94016" -160408,Wired Headphones,2,11.99,02/05/19 17:01,"742 Ridge St, Atlanta, GA 30301" -160409,iPhone,1,700,02/28/19 16:54,"997 Cedar St, Austin, TX 73301" -160410,ThinkPad Laptop,1,999.99,02/19/19 08:31,"980 Center St, San Francisco, CA 94016" -160411,Wired Headphones,1,11.99,02/08/19 09:21,"733 Ridge St, Dallas, TX 75001" -160412,AAA Batteries (4-pack),2,2.99,02/28/19 03:44,"336 Cherry St, Portland, OR 97035" -160413,USB-C Charging Cable,1,11.95,02/12/19 15:32,"37 River St, San Francisco, CA 94016" -160414,USB-C Charging Cable,1,11.95,02/07/19 19:31,"580 6th St, Seattle, WA 98101" -160415,Wired Headphones,1,11.99,02/07/19 17:30,"880 Elm St, Seattle, WA 98101" -160416,Google Phone,1,600,02/07/19 22:23,"566 Church St, Boston, MA 02215" -160417,Bose SoundSport Headphones,1,99.99,02/18/19 15:14,"9 12th St, San Francisco, CA 94016" -160418,Wired Headphones,1,11.99,02/11/19 06:48,"193 Cedar St, Seattle, WA 98101" -160419,USB-C Charging Cable,1,11.95,02/03/19 09:52,"334 Forest St, Seattle, WA 98101" -160420,Wired Headphones,1,11.99,02/19/19 09:04,"850 Forest St, Boston, MA 02215" -160421,Apple Airpods Headphones,1,150,02/25/19 20:40,"654 West St, New York City, NY 10001" -160422,AA Batteries (4-pack),2,3.84,02/22/19 00:38,"848 Park St, Boston, MA 02215" -160423,ThinkPad Laptop,1,999.99,02/12/19 12:51,"354 10th St, San Francisco, CA 94016" -160424,iPhone,1,700,02/04/19 04:42,"402 4th St, Boston, MA 02215" -160425,AA Batteries (4-pack),1,3.84,02/12/19 19:04,"823 Walnut St, San Francisco, CA 94016" -160426,ThinkPad Laptop,1,999.99,02/04/19 16:49,"339 Hickory St, Atlanta, GA 30301" -160427,Wired Headphones,1,11.99,02/16/19 12:04,"344 Madison St, Dallas, TX 75001" -160428,27in 4K Gaming Monitor,1,389.99,02/21/19 20:40,"249 6th St, Boston, MA 02215" -160429,27in FHD Monitor,1,149.99,02/04/19 00:17,"571 Hill St, San Francisco, CA 94016" -160430,AA Batteries (4-pack),1,3.84,02/08/19 14:02,"391 Lake St, San Francisco, CA 94016" -160431,AAA Batteries (4-pack),1,2.99,02/24/19 16:17,"58 14th St, Los Angeles, CA 90001" -160432,Lightning Charging Cable,1,14.95,02/18/19 14:48,"644 Hill St, Dallas, TX 75001" -160433,Wired Headphones,1,11.99,02/01/19 13:07,"833 13th St, Dallas, TX 75001" -160434,Wired Headphones,1,11.99,02/18/19 18:27,"13 Madison St, Los Angeles, CA 90001" -160435,ThinkPad Laptop,1,999.99,02/21/19 16:54,"990 Willow St, Seattle, WA 98101" -160436,Lightning Charging Cable,1,14.95,02/24/19 10:38,"682 North St, San Francisco, CA 94016" -160437,27in FHD Monitor,1,149.99,02/24/19 16:09,"788 Willow St, Boston, MA 02215" -160438,27in 4K Gaming Monitor,1,389.99,02/13/19 16:42,"956 Highland St, Boston, MA 02215" -160439,AAA Batteries (4-pack),1,2.99,02/01/19 17:17,"97 7th St, Atlanta, GA 30301" -160440,AA Batteries (4-pack),1,3.84,02/11/19 11:39,"417 Wilson St, Boston, MA 02215" -160441,Bose SoundSport Headphones,1,99.99,02/14/19 13:02,"111 Elm St, Los Angeles, CA 90001" -160442,Flatscreen TV,1,300,02/12/19 15:16,"135 South St, Atlanta, GA 30301" -160443,AA Batteries (4-pack),3,3.84,02/25/19 22:30,"498 Spruce St, Portland, OR 97035" -160444,Vareebadd Phone,1,400,02/23/19 21:04,"269 Cherry St, Los Angeles, CA 90001" -160445,20in Monitor,1,109.99,02/14/19 19:23,"762 Walnut St, Boston, MA 02215" -160446,USB-C Charging Cable,1,11.95,02/02/19 20:54,"300 Main St, San Francisco, CA 94016" -160447,27in 4K Gaming Monitor,1,389.99,02/01/19 12:08,"482 Hill St, Portland, OR 97035" -160448,AAA Batteries (4-pack),1,2.99,02/04/19 16:21,"130 Jackson St, San Francisco, CA 94016" -160449,USB-C Charging Cable,1,11.95,02/23/19 01:07,"385 8th St, Atlanta, GA 30301" -160450,AAA Batteries (4-pack),3,2.99,02/27/19 16:24,"441 14th St, Boston, MA 02215" -160451,iPhone,1,700,02/12/19 21:19,"369 Jefferson St, Los Angeles, CA 90001" -160452,Wired Headphones,1,11.99,02/08/19 10:45,"870 Willow St, New York City, NY 10001" -160453,Wired Headphones,1,11.99,02/01/19 19:18,"856 Highland St, San Francisco, CA 94016" -160454,USB-C Charging Cable,1,11.95,02/20/19 00:46,"14 5th St, San Francisco, CA 94016" -160455,Wired Headphones,1,11.99,02/24/19 00:15,"721 Hill St, Atlanta, GA 30301" -160456,iPhone,1,700,02/07/19 17:02,"306 North St, Los Angeles, CA 90001" -160457,AAA Batteries (4-pack),1,2.99,02/15/19 11:07,"201 Maple St, Boston, MA 02215" -160458,Google Phone,1,600,02/16/19 17:19,"521 14th St, New York City, NY 10001" -160459,27in FHD Monitor,1,149.99,02/17/19 21:09,"978 11th St, New York City, NY 10001" -160460,AAA Batteries (4-pack),2,2.99,02/22/19 17:31,"812 Highland St, Dallas, TX 75001" -160461,Wired Headphones,1,11.99,02/03/19 10:54,"313 Dogwood St, San Francisco, CA 94016" -160462,34in Ultrawide Monitor,1,379.99,02/17/19 19:47,"331 Church St, Austin, TX 73301" -160463,27in 4K Gaming Monitor,1,389.99,02/13/19 15:41,"660 9th St, San Francisco, CA 94016" -160464,Bose SoundSport Headphones,1,99.99,02/22/19 13:17,"514 12th St, Portland, OR 97035" -160465,AAA Batteries (4-pack),4,2.99,02/21/19 19:48,"160 Washington St, Portland, ME 04101" -160466,Bose SoundSport Headphones,1,99.99,02/25/19 12:42,"174 Hill St, Seattle, WA 98101" -160467,Google Phone,1,600,02/21/19 18:06,"71 Dogwood St, San Francisco, CA 94016" -160468,USB-C Charging Cable,2,11.95,02/01/19 09:42,"138 5th St, San Francisco, CA 94016" -160469,iPhone,1,700,02/25/19 20:41,"985 Center St, Boston, MA 02215" -160470,34in Ultrawide Monitor,1,379.99,02/05/19 17:33,"175 Lake St, Seattle, WA 98101" -160471,Apple Airpods Headphones,1,150,02/09/19 15:29,"526 Jefferson St, San Francisco, CA 94016" -160472,Macbook Pro Laptop,1,1700,02/18/19 19:02,"931 Adams St, Los Angeles, CA 90001" -160473,AAA Batteries (4-pack),1,2.99,02/20/19 08:11,"377 South St, Dallas, TX 75001" -160474,27in FHD Monitor,1,149.99,02/06/19 21:19,"892 Park St, Los Angeles, CA 90001" -160475,Apple Airpods Headphones,1,150,02/02/19 16:45,"679 Wilson St, Dallas, TX 75001" -160476,USB-C Charging Cable,1,11.95,02/01/19 13:26,"864 Adams St, Los Angeles, CA 90001" -160477,Bose SoundSport Headphones,1,99.99,02/12/19 18:14,"229 Johnson St, Seattle, WA 98101" -160478,Lightning Charging Cable,1,14.95,02/21/19 11:01,"143 1st St, Atlanta, GA 30301" -160479,AA Batteries (4-pack),1,3.84,02/27/19 19:38,"390 Church St, Los Angeles, CA 90001" -160480,Bose SoundSport Headphones,1,99.99,02/10/19 13:13,"371 Park St, Boston, MA 02215" -160481,27in 4K Gaming Monitor,1,389.99,02/12/19 08:06,"795 Jackson St, Los Angeles, CA 90001" -160481,AA Batteries (4-pack),2,3.84,02/12/19 08:06,"795 Jackson St, Los Angeles, CA 90001" -160482,AAA Batteries (4-pack),1,2.99,02/10/19 07:50,"699 7th St, Boston, MA 02215" -160483,Bose SoundSport Headphones,1,99.99,02/11/19 11:05,"680 Sunset St, San Francisco, CA 94016" -160484,AAA Batteries (4-pack),1,2.99,02/25/19 12:53,"870 Jackson St, San Francisco, CA 94016" -160485,USB-C Charging Cable,1,11.95,02/18/19 13:56,"998 Hill St, Boston, MA 02215" -160486,Wired Headphones,1,11.99,02/19/19 16:48,"873 5th St, Los Angeles, CA 90001" -160487,27in FHD Monitor,1,149.99,02/09/19 17:44,"161 8th St, New York City, NY 10001" -160488,Apple Airpods Headphones,1,150,02/16/19 08:32,"214 Walnut St, Portland, OR 97035" -160489,Lightning Charging Cable,1,14.95,02/07/19 11:08,"268 9th St, Austin, TX 73301" -160490,USB-C Charging Cable,1,11.95,02/19/19 04:39,"282 Jefferson St, New York City, NY 10001" -160491,Wired Headphones,2,11.99,02/21/19 16:11,"724 Hill St, New York City, NY 10001" -160492,Lightning Charging Cable,1,14.95,02/24/19 10:41,"356 10th St, San Francisco, CA 94016" -160493,Bose SoundSport Headphones,1,99.99,02/08/19 00:18,"987 10th St, San Francisco, CA 94016" -160494,Google Phone,1,600,02/15/19 17:09,"220 Church St, New York City, NY 10001" -160495,Lightning Charging Cable,1,14.95,02/10/19 13:30,"593 Dogwood St, San Francisco, CA 94016" -160496,Lightning Charging Cable,1,14.95,02/19/19 16:52,"642 2nd St, Portland, ME 04101" -160497,Apple Airpods Headphones,1,150,02/07/19 15:20,"608 10th St, Austin, TX 73301" -160498,Wired Headphones,1,11.99,02/05/19 23:44,"46 Sunset St, Seattle, WA 98101" -160499,Lightning Charging Cable,1,14.95,02/26/19 22:57,"800 5th St, Atlanta, GA 30301" -160500,Bose SoundSport Headphones,1,99.99,02/28/19 16:49,"105 Willow St, New York City, NY 10001" -160501,Wired Headphones,1,11.99,02/07/19 13:17,"282 Johnson St, Los Angeles, CA 90001" -160502,AAA Batteries (4-pack),2,2.99,02/20/19 10:45,"931 10th St, Los Angeles, CA 90001" -160503,Bose SoundSport Headphones,1,99.99,02/11/19 12:57,"695 South St, Seattle, WA 98101" -160504,USB-C Charging Cable,1,11.95,02/08/19 16:03,"933 Elm St, San Francisco, CA 94016" -160505,Bose SoundSport Headphones,1,99.99,02/10/19 22:05,"844 Center St, Boston, MA 02215" -160506,Bose SoundSport Headphones,1,99.99,02/14/19 21:18,"262 12th St, Austin, TX 73301" -160507,AAA Batteries (4-pack),1,2.99,02/25/19 19:38,"698 Lake St, Austin, TX 73301" -160508,iPhone,1,700,02/01/19 09:59,"489 Church St, Seattle, WA 98101" -160509,AAA Batteries (4-pack),2,2.99,02/01/19 01:51,"597 Chestnut St, Austin, TX 73301" -160510,Google Phone,1,600,02/06/19 11:04,"92 Lake St, Dallas, TX 75001" -160511,Apple Airpods Headphones,1,150,02/04/19 10:07,"54 Washington St, Seattle, WA 98101" -160512,USB-C Charging Cable,2,11.95,02/11/19 12:53,"643 Elm St, San Francisco, CA 94016" -160513,USB-C Charging Cable,1,11.95,02/23/19 12:05,"87 11th St, Portland, OR 97035" -160514,Lightning Charging Cable,1,14.95,02/23/19 12:04,"811 South St, New York City, NY 10001" -160515,Bose SoundSport Headphones,1,99.99,02/26/19 13:09,"361 8th St, Los Angeles, CA 90001" -160516,20in Monitor,1,109.99,02/21/19 17:14,"921 Cherry St, Los Angeles, CA 90001" -160517,AA Batteries (4-pack),1,3.84,02/10/19 17:01,"713 Church St, New York City, NY 10001" -160518,USB-C Charging Cable,1,11.95,02/07/19 06:58,"166 9th St, Dallas, TX 75001" -160519,Wired Headphones,1,11.99,02/15/19 21:06,"802 Dogwood St, Atlanta, GA 30301" -160520,USB-C Charging Cable,1,11.95,02/05/19 20:57,"893 Wilson St, New York City, NY 10001" -160521,USB-C Charging Cable,1,11.95,02/19/19 20:27,"38 Cherry St, Austin, TX 73301" -160522,Lightning Charging Cable,1,14.95,02/25/19 19:16,"744 1st St, San Francisco, CA 94016" -160523,AA Batteries (4-pack),1,3.84,02/21/19 15:27,"866 Park St, Atlanta, GA 30301" -160524,Flatscreen TV,1,300,02/05/19 13:43,"262 Walnut St, Boston, MA 02215" -160525,USB-C Charging Cable,1,11.95,02/11/19 13:41,"329 West St, San Francisco, CA 94016" -160526,Lightning Charging Cable,1,14.95,02/18/19 16:36,"559 9th St, Boston, MA 02215" -160527,AA Batteries (4-pack),2,3.84,02/25/19 19:10,"389 12th St, New York City, NY 10001" -160528,Macbook Pro Laptop,1,1700,02/07/19 06:21,"661 Madison St, Seattle, WA 98101" -160529,34in Ultrawide Monitor,1,379.99,02/11/19 11:05,"156 Lakeview St, Seattle, WA 98101" -160530,AA Batteries (4-pack),1,3.84,02/04/19 20:12,"524 Adams St, Atlanta, GA 30301" -160531,Macbook Pro Laptop,1,1700,02/01/19 17:46,"630 11th St, San Francisco, CA 94016" -160532,Wired Headphones,1,11.99,02/27/19 21:50,"860 Lincoln St, Seattle, WA 98101" -160533,20in Monitor,1,109.99,02/27/19 21:12,"839 Lakeview St, San Francisco, CA 94016" -160534,Apple Airpods Headphones,1,150,02/14/19 18:07,"674 Dogwood St, Austin, TX 73301" -160535,AAA Batteries (4-pack),1,2.99,02/09/19 22:38,"297 Cherry St, Dallas, TX 75001" -160536,iPhone,1,700,02/24/19 17:07,"91 Pine St, Portland, OR 97035" -160537,AA Batteries (4-pack),5,3.84,02/13/19 10:45,"766 Main St, Seattle, WA 98101" -160538,ThinkPad Laptop,1,999.99,02/27/19 12:50,"950 Adams St, San Francisco, CA 94016" -160538,AA Batteries (4-pack),3,3.84,02/27/19 12:50,"950 Adams St, San Francisco, CA 94016" -160539,AA Batteries (4-pack),1,3.84,02/11/19 21:57,"365 Dogwood St, San Francisco, CA 94016" -160540,AA Batteries (4-pack),1,3.84,02/14/19 11:40,"403 Cedar St, Los Angeles, CA 90001" -160541,AA Batteries (4-pack),4,3.84,02/24/19 21:05,"472 West St, Boston, MA 02215" -160542,Flatscreen TV,1,300,02/25/19 15:57,"126 12th St, San Francisco, CA 94016" -160543,Lightning Charging Cable,1,14.95,02/21/19 14:24,"682 Sunset St, Austin, TX 73301" -160544,Macbook Pro Laptop,1,1700,02/09/19 10:45,"741 Sunset St, San Francisco, CA 94016" -160545,27in FHD Monitor,1,149.99,02/21/19 10:39,"273 Dogwood St, New York City, NY 10001" -160546,Vareebadd Phone,1,400,02/17/19 22:19,"11 Cedar St, New York City, NY 10001" -160547,Lightning Charging Cable,1,14.95,02/28/19 15:11,"466 Lake St, Seattle, WA 98101" -160548,AA Batteries (4-pack),1,3.84,02/17/19 21:33,"128 South St, San Francisco, CA 94016" -160549,27in 4K Gaming Monitor,1,389.99,02/01/19 21:26,"399 12th St, Los Angeles, CA 90001" -160550,Lightning Charging Cable,1,14.95,02/02/19 09:58,"852 Madison St, Seattle, WA 98101" -160551,USB-C Charging Cable,1,11.95,02/24/19 09:00,"541 1st St, San Francisco, CA 94016" -160552,Wired Headphones,1,11.99,02/06/19 14:20,"558 Madison St, San Francisco, CA 94016" -160553,Apple Airpods Headphones,1,150,02/24/19 11:24,"915 13th St, New York City, NY 10001" -160554,Wired Headphones,1,11.99,02/18/19 16:45,"740 Center St, Dallas, TX 75001" -160555,USB-C Charging Cable,1,11.95,02/27/19 20:47,"391 River St, Atlanta, GA 30301" -160556,Apple Airpods Headphones,1,150,02/26/19 21:31,"70 Walnut St, Boston, MA 02215" -160557,Apple Airpods Headphones,1,150,02/13/19 20:31,"411 Madison St, San Francisco, CA 94016" -160558,27in 4K Gaming Monitor,1,389.99,02/05/19 14:08,"843 Cherry St, Portland, OR 97035" -160559,27in FHD Monitor,1,149.99,02/02/19 14:35,"445 8th St, Boston, MA 02215" -160560,AA Batteries (4-pack),2,3.84,02/19/19 19:24,"319 1st St, Portland, OR 97035" -160561,Apple Airpods Headphones,1,150,02/15/19 21:19,"839 Chestnut St, New York City, NY 10001" -160562,AAA Batteries (4-pack),2,2.99,02/23/19 21:25,"462 Jackson St, San Francisco, CA 94016" -160563,USB-C Charging Cable,2,11.95,02/09/19 09:58,"667 River St, San Francisco, CA 94016" -160564,AA Batteries (4-pack),1,3.84,02/25/19 11:26,"958 7th St, Los Angeles, CA 90001" -160565,Lightning Charging Cable,1,14.95,02/01/19 14:40,"629 Hickory St, Dallas, TX 75001" -160566,USB-C Charging Cable,1,11.95,02/25/19 12:50,"573 Cedar St, San Francisco, CA 94016" -160567,Apple Airpods Headphones,1,150,02/17/19 08:12,"885 Chestnut St, Seattle, WA 98101" -160568,Apple Airpods Headphones,1,150,02/18/19 20:49,"412 12th St, New York City, NY 10001" -160569,Google Phone,1,600,02/08/19 20:36,"998 2nd St, Seattle, WA 98101" -160570,AAA Batteries (4-pack),1,2.99,02/06/19 19:06,"733 Church St, San Francisco, CA 94016" -160571,Lightning Charging Cable,1,14.95,02/11/19 16:14,"281 Dogwood St, Los Angeles, CA 90001" -160572,27in 4K Gaming Monitor,1,389.99,02/20/19 15:12,"637 Johnson St, Los Angeles, CA 90001" -160573,Google Phone,1,600,02/16/19 08:55,"389 Cherry St, New York City, NY 10001" -160574,27in FHD Monitor,1,149.99,02/25/19 14:51,"282 2nd St, Los Angeles, CA 90001" -160575,Lightning Charging Cable,1,14.95,02/12/19 22:58,"897 1st St, Los Angeles, CA 90001" -160576,AA Batteries (4-pack),1,3.84,02/06/19 20:01,"74 Jackson St, Seattle, WA 98101" -160577,27in FHD Monitor,1,149.99,02/26/19 11:18,"427 Pine St, San Francisco, CA 94016" -160578,AA Batteries (4-pack),1,3.84,02/05/19 19:21,"322 8th St, Seattle, WA 98101" -160579,USB-C Charging Cable,1,11.95,02/01/19 15:26,"966 Elm St, Seattle, WA 98101" -160580,Apple Airpods Headphones,1,150,02/06/19 09:47,"284 Main St, San Francisco, CA 94016" -160581,AA Batteries (4-pack),1,3.84,02/24/19 19:46,"924 Cedar St, San Francisco, CA 94016" -160582,Wired Headphones,1,11.99,02/23/19 18:07,"42 Main St, Los Angeles, CA 90001" -160583,Apple Airpods Headphones,1,150,02/21/19 15:08,"312 Main St, San Francisco, CA 94016" -160584,AA Batteries (4-pack),1,3.84,02/21/19 20:43,"4 West St, Atlanta, GA 30301" -160585,Lightning Charging Cable,1,14.95,02/18/19 09:42,"6 Dogwood St, Dallas, TX 75001" -160586,USB-C Charging Cable,1,11.95,02/14/19 11:07,"525 Forest St, Austin, TX 73301" -160587,USB-C Charging Cable,1,11.95,02/11/19 10:54,"294 West St, Los Angeles, CA 90001" -160588,Lightning Charging Cable,2,14.95,02/14/19 17:44,"813 Forest St, San Francisco, CA 94016" -160589,Bose SoundSport Headphones,1,99.99,02/16/19 12:00,"816 7th St, Portland, ME 04101" -160590,AA Batteries (4-pack),2,3.84,02/22/19 09:18,"505 Church St, Portland, ME 04101" -160591,27in 4K Gaming Monitor,1,389.99,02/16/19 09:20,"130 4th St, San Francisco, CA 94016" -160592,iPhone,1,700,02/18/19 16:12,"557 River St, Seattle, WA 98101" -160593,Google Phone,1,600,02/05/19 20:46,"61 Maple St, Seattle, WA 98101" -160593,USB-C Charging Cable,1,11.95,02/05/19 20:46,"61 Maple St, Seattle, WA 98101" -160594,Bose SoundSport Headphones,1,99.99,02/24/19 07:36,"774 Sunset St, Los Angeles, CA 90001" -160595,USB-C Charging Cable,1,11.95,02/21/19 20:03,"399 West St, San Francisco, CA 94016" -160596,AA Batteries (4-pack),1,3.84,02/10/19 19:47,"986 Wilson St, Seattle, WA 98101" -160597,USB-C Charging Cable,1,11.95,02/04/19 21:35,"382 6th St, San Francisco, CA 94016" -160598,AAA Batteries (4-pack),1,2.99,02/13/19 18:28,"685 West St, New York City, NY 10001" -160599,Wired Headphones,1,11.99,02/11/19 10:52,"687 Dogwood St, New York City, NY 10001" -160600,Flatscreen TV,1,300,02/22/19 20:21,"694 Center St, New York City, NY 10001" -160601,Flatscreen TV,1,300,02/02/19 09:24,"909 Center St, Los Angeles, CA 90001" -160602,AAA Batteries (4-pack),1,2.99,02/11/19 11:50,"959 River St, Los Angeles, CA 90001" -160603,Wired Headphones,1,11.99,02/02/19 11:22,"682 4th St, Seattle, WA 98101" -160604,AAA Batteries (4-pack),4,2.99,02/02/19 18:19,"424 Johnson St, Los Angeles, CA 90001" -160605,USB-C Charging Cable,1,11.95,02/07/19 22:08,"680 Walnut St, Los Angeles, CA 90001" -160606,Lightning Charging Cable,1,14.95,02/10/19 19:36,"541 Meadow St, New York City, NY 10001" -160607,Wired Headphones,1,11.99,02/09/19 16:40,"773 1st St, New York City, NY 10001" -160608,Apple Airpods Headphones,1,150,02/04/19 06:41,"216 Hill St, New York City, NY 10001" -160609,USB-C Charging Cable,1,11.95,02/13/19 20:52,"261 West St, San Francisco, CA 94016" -160610,Lightning Charging Cable,1,14.95,02/11/19 15:01,"903 Washington St, Atlanta, GA 30301" -160611,Apple Airpods Headphones,1,150,02/03/19 06:29,"957 1st St, New York City, NY 10001" -160612,AA Batteries (4-pack),1,3.84,02/05/19 22:07,"85 Hill St, Dallas, TX 75001" -160613,AAA Batteries (4-pack),2,2.99,02/01/19 22:55,"979 Cherry St, Atlanta, GA 30301" -160614,Lightning Charging Cable,1,14.95,02/11/19 22:00,"717 Walnut St, Los Angeles, CA 90001" -160615,Bose SoundSport Headphones,1,99.99,02/11/19 19:40,"995 Ridge St, Seattle, WA 98101" -160616,iPhone,1,700,02/13/19 12:12,"712 Lakeview St, San Francisco, CA 94016" -160617,Lightning Charging Cable,1,14.95,02/12/19 11:40,"929 Meadow St, Austin, TX 73301" -160618,20in Monitor,1,109.99,02/17/19 11:49,"980 8th St, New York City, NY 10001" -160619,Lightning Charging Cable,1,14.95,02/15/19 15:26,"578 Jackson St, New York City, NY 10001" -160620,AAA Batteries (4-pack),1,2.99,02/24/19 17:11,"675 Church St, San Francisco, CA 94016" -160621,Bose SoundSport Headphones,1,99.99,02/21/19 18:57,"350 Willow St, Seattle, WA 98101" -160622,Bose SoundSport Headphones,1,99.99,02/10/19 21:46,"497 North St, Dallas, TX 75001" -160623,Apple Airpods Headphones,1,150,02/26/19 15:28,"899 Main St, Boston, MA 02215" -160624,20in Monitor,1,109.99,02/14/19 22:04,"458 Chestnut St, New York City, NY 10001" -160625,Lightning Charging Cable,1,14.95,02/18/19 16:01,"85 Willow St, Seattle, WA 98101" -160626,Lightning Charging Cable,1,14.95,02/08/19 11:04,"135 Hickory St, Portland, OR 97035" -160627,AA Batteries (4-pack),1,3.84,02/03/19 18:14,"651 River St, San Francisco, CA 94016" -160627,27in 4K Gaming Monitor,1,389.99,02/03/19 18:14,"651 River St, San Francisco, CA 94016" -160628,Lightning Charging Cable,1,14.95,02/22/19 08:38,"279 12th St, Atlanta, GA 30301" -160629,USB-C Charging Cable,1,11.95,02/24/19 11:51,"279 Washington St, Portland, OR 97035" -160630,Lightning Charging Cable,1,14.95,02/24/19 17:43,"586 Lakeview St, Portland, ME 04101" -160631,AA Batteries (4-pack),1,3.84,02/28/19 09:01,"694 Forest St, San Francisco, CA 94016" -160632,iPhone,1,700,02/18/19 17:55,"592 10th St, Seattle, WA 98101" -160633,Lightning Charging Cable,1,14.95,02/26/19 13:31,"373 10th St, New York City, NY 10001" -160634,Flatscreen TV,1,300,02/21/19 04:29,"687 Walnut St, San Francisco, CA 94016" -160635,34in Ultrawide Monitor,1,379.99,02/15/19 16:25,"585 Jefferson St, Boston, MA 02215" -160636,USB-C Charging Cable,1,11.95,02/22/19 12:38,"233 Lakeview St, Los Angeles, CA 90001" -160637,Wired Headphones,1,11.99,02/02/19 08:41,"499 7th St, New York City, NY 10001" -160638,Lightning Charging Cable,1,14.95,02/14/19 21:46,"849 Main St, Austin, TX 73301" -160639,USB-C Charging Cable,1,11.95,02/11/19 10:48,"209 Ridge St, Los Angeles, CA 90001" -160640,AA Batteries (4-pack),1,3.84,02/09/19 16:03,"681 10th St, San Francisco, CA 94016" -160641,Bose SoundSport Headphones,1,99.99,02/10/19 16:18,"680 6th St, Portland, OR 97035" -160642,USB-C Charging Cable,1,11.95,02/26/19 22:19,"377 Lake St, Seattle, WA 98101" -160643,34in Ultrawide Monitor,1,379.99,02/03/19 06:57,"993 9th St, Seattle, WA 98101" -160644,27in FHD Monitor,1,149.99,02/22/19 07:46,"465 10th St, Seattle, WA 98101" -160645,Apple Airpods Headphones,1,150,02/20/19 19:24,"450 14th St, Portland, ME 04101" -160646,Bose SoundSport Headphones,1,99.99,02/01/19 23:12,"583 Wilson St, New York City, NY 10001" -160647,Wired Headphones,1,11.99,02/06/19 09:36,"290 2nd St, New York City, NY 10001" -160648,AAA Batteries (4-pack),1,2.99,02/10/19 11:01,"236 Dogwood St, Atlanta, GA 30301" -160649,Bose SoundSport Headphones,1,99.99,02/17/19 00:03,"59 West St, Boston, MA 02215" -160650,iPhone,1,700,02/11/19 13:13,"337 14th St, San Francisco, CA 94016" -160651,AAA Batteries (4-pack),1,2.99,02/20/19 12:24,"423 Willow St, Boston, MA 02215" -160652,USB-C Charging Cable,1,11.95,02/03/19 11:59,"721 Sunset St, San Francisco, CA 94016" -160653,AAA Batteries (4-pack),1,2.99,02/04/19 08:06,"443 Washington St, Portland, OR 97035" -160654,USB-C Charging Cable,1,11.95,02/01/19 13:04,"190 Madison St, Boston, MA 02215" -160655,AA Batteries (4-pack),1,3.84,02/28/19 14:21,"986 Madison St, Dallas, TX 75001" -160656,Bose SoundSport Headphones,1,99.99,02/14/19 07:34,"526 Lincoln St, New York City, NY 10001" -160656,AA Batteries (4-pack),2,3.84,02/14/19 07:34,"526 Lincoln St, New York City, NY 10001" -160657,Lightning Charging Cable,1,14.95,02/11/19 21:09,"808 Hickory St, New York City, NY 10001" -160658,AA Batteries (4-pack),3,3.84,02/02/19 07:55,"652 Madison St, Dallas, TX 75001" -160659,20in Monitor,1,109.99,02/05/19 07:34,"48 Spruce St, Los Angeles, CA 90001" -160660,Lightning Charging Cable,1,14.95,02/27/19 17:02,"977 West St, Boston, MA 02215" -160661,Macbook Pro Laptop,1,1700,02/05/19 21:14,"562 Meadow St, Atlanta, GA 30301" -160662,Apple Airpods Headphones,1,150,02/14/19 17:23,"576 Elm St, Atlanta, GA 30301" -160663,USB-C Charging Cable,1,11.95,02/25/19 10:43,"478 Walnut St, Seattle, WA 98101" -160664,34in Ultrawide Monitor,1,379.99,02/22/19 21:13,"163 Hill St, New York City, NY 10001" -160665,USB-C Charging Cable,1,11.95,02/22/19 18:18,"622 14th St, Dallas, TX 75001" -160666,USB-C Charging Cable,1,11.95,02/06/19 13:58,"505 Adams St, Atlanta, GA 30301" -160667,20in Monitor,1,109.99,02/24/19 18:41,"122 Lake St, Atlanta, GA 30301" -160668,Wired Headphones,1,11.99,02/06/19 10:18,"356 8th St, Austin, TX 73301" -160669,AA Batteries (4-pack),1,3.84,02/26/19 12:08,"264 11th St, Boston, MA 02215" -160670,Flatscreen TV,1,300,02/03/19 15:18,"652 Spruce St, Portland, OR 97035" -160671,Apple Airpods Headphones,1,150,02/02/19 12:45,"699 Cedar St, New York City, NY 10001" -160672,Lightning Charging Cable,1,14.95,02/05/19 11:42,"980 11th St, Los Angeles, CA 90001" -160673,LG Dryer,1,600.0,02/22/19 18:31,"144 Madison St, Los Angeles, CA 90001" -160674,Bose SoundSport Headphones,1,99.99,02/17/19 08:24,"743 14th St, San Francisco, CA 94016" -160675,Wired Headphones,1,11.99,02/05/19 16:25,"987 Adams St, San Francisco, CA 94016" -160676,Wired Headphones,1,11.99,02/18/19 19:14,"874 6th St, Los Angeles, CA 90001" -160677,AAA Batteries (4-pack),1,2.99,02/02/19 15:40,"333 2nd St, Austin, TX 73301" -160678,Bose SoundSport Headphones,1,99.99,02/15/19 15:51,"874 Chestnut St, San Francisco, CA 94016" -160679,Apple Airpods Headphones,1,150,02/26/19 08:29,"191 Washington St, San Francisco, CA 94016" -160680,Bose SoundSport Headphones,1,99.99,02/20/19 08:54,"390 Dogwood St, San Francisco, CA 94016" -160681,Wired Headphones,1,11.99,02/12/19 02:27,"498 Madison St, New York City, NY 10001" -160682,Google Phone,1,600,02/22/19 13:35,"205 Cedar St, Los Angeles, CA 90001" -160683,USB-C Charging Cable,1,11.95,02/04/19 18:51,"522 5th St, Austin, TX 73301" -160684,Apple Airpods Headphones,1,150,02/25/19 18:48,"424 Pine St, Boston, MA 02215" -160685,AA Batteries (4-pack),2,3.84,02/19/19 20:08,"213 Jackson St, Boston, MA 02215" -160686,USB-C Charging Cable,1,11.95,02/01/19 15:48,"421 8th St, Boston, MA 02215" -160687,Lightning Charging Cable,1,14.95,02/20/19 03:07,"822 7th St, San Francisco, CA 94016" -160688,Lightning Charging Cable,1,14.95,02/20/19 23:09,"490 North St, Atlanta, GA 30301" -160689,Lightning Charging Cable,1,14.95,02/08/19 21:19,"350 Madison St, San Francisco, CA 94016" -160690,AAA Batteries (4-pack),1,2.99,02/03/19 14:28,"298 6th St, Atlanta, GA 30301" -160691,ThinkPad Laptop,1,999.99,02/22/19 15:49,"564 Meadow St, San Francisco, CA 94016" -160692,Wired Headphones,1,11.99,02/11/19 09:07,"899 Sunset St, San Francisco, CA 94016" -160693,Lightning Charging Cable,1,14.95,02/18/19 10:53,"602 Dogwood St, Atlanta, GA 30301" -160694,Wired Headphones,1,11.99,02/08/19 08:01,"844 Lakeview St, Seattle, WA 98101" -160695,AAA Batteries (4-pack),1,2.99,02/12/19 15:57,"546 Cherry St, Dallas, TX 75001" -160696,34in Ultrawide Monitor,1,379.99,02/10/19 12:18,"804 Wilson St, San Francisco, CA 94016" -160697,Bose SoundSport Headphones,1,99.99,02/04/19 11:44,"806 Pine St, San Francisco, CA 94016" -160698,iPhone,1,700,02/28/19 10:38,"520 Willow St, San Francisco, CA 94016" -160698,Wired Headphones,1,11.99,02/28/19 10:38,"520 Willow St, San Francisco, CA 94016" -160699,USB-C Charging Cable,3,11.95,02/17/19 10:00,"44 Park St, Atlanta, GA 30301" -160700,20in Monitor,1,109.99,02/01/19 08:26,"703 9th St, Los Angeles, CA 90001" -160701,Google Phone,1,600,02/09/19 13:51,"687 Sunset St, Atlanta, GA 30301" -160702,Bose SoundSport Headphones,1,99.99,02/02/19 18:40,"664 6th St, Austin, TX 73301" -160703,USB-C Charging Cable,1,11.95,02/16/19 18:11,"980 Chestnut St, Dallas, TX 75001" -160704,Apple Airpods Headphones,1,150,02/13/19 09:56,"73 Highland St, San Francisco, CA 94016" -160705,Lightning Charging Cable,1,14.95,02/13/19 00:21,"847 9th St, Austin, TX 73301" -160706,USB-C Charging Cable,1,11.95,02/07/19 06:09,"378 Main St, Los Angeles, CA 90001" -160707,iPhone,1,700,02/08/19 19:19,"916 1st St, Austin, TX 73301" -160707,Wired Headphones,1,11.99,02/08/19 19:19,"916 1st St, Austin, TX 73301" -160708,Wired Headphones,1,11.99,02/24/19 01:17,"940 6th St, Seattle, WA 98101" -160709,iPhone,1,700,02/03/19 18:44,"19 Willow St, Los Angeles, CA 90001" -160710,Wired Headphones,1,11.99,02/02/19 10:07,"457 Main St, San Francisco, CA 94016" -160711,AA Batteries (4-pack),1,3.84,02/23/19 21:41,"405 Highland St, San Francisco, CA 94016" -160712,20in Monitor,1,109.99,02/12/19 12:08,"993 Lincoln St, San Francisco, CA 94016" -160713,USB-C Charging Cable,1,11.95,02/28/19 23:49,"436 Meadow St, Dallas, TX 75001" -160714,AAA Batteries (4-pack),1,2.99,02/22/19 11:53,"112 Willow St, Boston, MA 02215" -160715,Lightning Charging Cable,1,14.95,02/22/19 12:15,"802 7th St, Boston, MA 02215" -160716,Bose SoundSport Headphones,1,99.99,02/11/19 16:59,"800 11th St, Seattle, WA 98101" -160717,27in 4K Gaming Monitor,1,389.99,02/24/19 12:05,"928 Highland St, Los Angeles, CA 90001" -160718,AAA Batteries (4-pack),1,2.99,02/02/19 11:50,"501 Walnut St, Dallas, TX 75001" -160719,ThinkPad Laptop,1,999.99,02/27/19 16:55,"697 Ridge St, Boston, MA 02215" -160720,USB-C Charging Cable,1,11.95,02/17/19 02:07,"422 Hill St, New York City, NY 10001" -160721,Macbook Pro Laptop,1,1700,02/20/19 18:23,"97 Washington St, San Francisco, CA 94016" -160722,Wired Headphones,1,11.99,02/15/19 19:14,"778 4th St, New York City, NY 10001" -160723,Lightning Charging Cable,1,14.95,02/15/19 10:50,"873 Maple St, Los Angeles, CA 90001" -160724,iPhone,1,700,02/13/19 11:06,"665 River St, Seattle, WA 98101" -160725,Apple Airpods Headphones,1,150,02/21/19 08:04,"882 8th St, Boston, MA 02215" -160726,27in FHD Monitor,1,149.99,02/13/19 17:22,"908 12th St, San Francisco, CA 94016" -160727,Lightning Charging Cable,2,14.95,02/15/19 20:04,"780 Sunset St, Boston, MA 02215" -160728,AA Batteries (4-pack),2,3.84,02/23/19 11:48,"187 South St, Seattle, WA 98101" -160729,27in FHD Monitor,1,149.99,02/09/19 14:38,"723 9th St, San Francisco, CA 94016" -160730,ThinkPad Laptop,1,999.99,02/24/19 19:05,"962 Maple St, Los Angeles, CA 90001" -160731,Apple Airpods Headphones,1,150,02/12/19 15:25,"85 5th St, San Francisco, CA 94016" -160732,AAA Batteries (4-pack),3,2.99,02/27/19 19:44,"99 Wilson St, Dallas, TX 75001" -160733,Apple Airpods Headphones,1,150,02/27/19 16:49,"887 11th St, Los Angeles, CA 90001" -160734,27in 4K Gaming Monitor,1,389.99,02/07/19 15:41,"667 Highland St, San Francisco, CA 94016" -160735,20in Monitor,1,109.99,02/17/19 17:19,"447 6th St, San Francisco, CA 94016" -160736,AAA Batteries (4-pack),2,2.99,02/14/19 18:26,"65 Chestnut St, San Francisco, CA 94016" -160737,AAA Batteries (4-pack),2,2.99,02/04/19 15:39,"560 Adams St, Atlanta, GA 30301" -160738,Apple Airpods Headphones,1,150,02/15/19 21:05,"444 Sunset St, Portland, OR 97035" -160739,34in Ultrawide Monitor,1,379.99,02/12/19 23:23,"37 Ridge St, Los Angeles, CA 90001" -160740,AA Batteries (4-pack),3,3.84,02/24/19 20:05,"35 1st St, Dallas, TX 75001" -160741,Bose SoundSport Headphones,1,99.99,02/15/19 11:18,"550 Lincoln St, Portland, ME 04101" -160742,34in Ultrawide Monitor,1,379.99,02/16/19 08:50,"98 Park St, San Francisco, CA 94016" -160743,Flatscreen TV,1,300,02/11/19 19:45,"200 Hickory St, San Francisco, CA 94016" -160744,Bose SoundSport Headphones,1,99.99,02/27/19 19:05,"3 Wilson St, Los Angeles, CA 90001" -160745,AA Batteries (4-pack),1,3.84,02/20/19 12:30,"639 Johnson St, New York City, NY 10001" -160746,USB-C Charging Cable,1,11.95,02/13/19 22:24,"427 4th St, Boston, MA 02215" -160747,USB-C Charging Cable,1,11.95,02/21/19 05:10,"393 10th St, San Francisco, CA 94016" -160748,AAA Batteries (4-pack),1,2.99,02/03/19 15:53,"50 Park St, Los Angeles, CA 90001" -160749,Lightning Charging Cable,2,14.95,02/23/19 11:02,"205 River St, Dallas, TX 75001" -160750,Bose SoundSport Headphones,1,99.99,02/09/19 09:55,"235 Center St, Dallas, TX 75001" -160751,Lightning Charging Cable,1,14.95,02/23/19 16:31,"295 Meadow St, New York City, NY 10001" -160752,iPhone,1,700,02/22/19 20:00,"737 Cherry St, Atlanta, GA 30301" -160753,AA Batteries (4-pack),1,3.84,02/24/19 20:44,"160 5th St, Seattle, WA 98101" -160754,USB-C Charging Cable,1,11.95,02/20/19 13:03,"682 9th St, Atlanta, GA 30301" -160755,Lightning Charging Cable,1,14.95,02/21/19 00:34,"98 Church St, Atlanta, GA 30301" -160756,AA Batteries (4-pack),2,3.84,02/02/19 21:08,"894 Highland St, Dallas, TX 75001" -160757,34in Ultrawide Monitor,1,379.99,02/04/19 18:08,"310 Meadow St, Los Angeles, CA 90001" -160758,AAA Batteries (4-pack),1,2.99,02/01/19 14:19,"729 Cherry St, Atlanta, GA 30301" -160759,AAA Batteries (4-pack),2,2.99,02/18/19 13:50,"553 Walnut St, Seattle, WA 98101" -160760,AAA Batteries (4-pack),2,2.99,02/21/19 10:18,"92 11th St, Los Angeles, CA 90001" -160761,USB-C Charging Cable,1,11.95,02/02/19 09:50,"572 Chestnut St, Austin, TX 73301" -160762,27in FHD Monitor,1,149.99,02/25/19 06:24,"103 Main St, Portland, OR 97035" -160763,Macbook Pro Laptop,1,1700,02/24/19 18:32,"874 4th St, San Francisco, CA 94016" -160764,Lightning Charging Cable,1,14.95,02/20/19 14:50,"130 8th St, Austin, TX 73301" -160765,34in Ultrawide Monitor,1,379.99,02/23/19 09:42,"744 River St, Austin, TX 73301" -160766,USB-C Charging Cable,1,11.95,02/20/19 19:40,"397 Center St, Boston, MA 02215" -160767,Bose SoundSport Headphones,1,99.99,02/07/19 10:26,"121 Dogwood St, Seattle, WA 98101" -160768,Macbook Pro Laptop,1,1700,02/15/19 07:51,"639 Ridge St, New York City, NY 10001" -160769,Macbook Pro Laptop,1,1700,02/20/19 14:24,"957 Hickory St, Seattle, WA 98101" -160770,AAA Batteries (4-pack),2,2.99,02/02/19 08:32,"27 Chestnut St, Seattle, WA 98101" -160771,Lightning Charging Cable,1,14.95,02/24/19 21:06,"412 Jefferson St, Los Angeles, CA 90001" -160772,Lightning Charging Cable,1,14.95,02/05/19 19:37,"792 13th St, Dallas, TX 75001" -160773,Macbook Pro Laptop,1,1700,02/18/19 19:06,"808 Forest St, Boston, MA 02215" -160774,Macbook Pro Laptop,1,1700,02/17/19 18:11,"219 Jackson St, Los Angeles, CA 90001" -160775,iPhone,1,700,02/17/19 15:28,"67 1st St, San Francisco, CA 94016" -160775,Lightning Charging Cable,1,14.95,02/17/19 15:28,"67 1st St, San Francisco, CA 94016" -160776,20in Monitor,1,109.99,02/17/19 23:10,"303 Spruce St, Los Angeles, CA 90001" -160777,Apple Airpods Headphones,1,150,02/27/19 12:51,"761 Park St, Dallas, TX 75001" -160778,Flatscreen TV,1,300,02/21/19 11:14,"870 5th St, New York City, NY 10001" -160779,Apple Airpods Headphones,1,150,02/24/19 13:36,"907 River St, Los Angeles, CA 90001" -160780,Lightning Charging Cable,1,14.95,02/21/19 00:52,"307 8th St, Dallas, TX 75001" -160781,AA Batteries (4-pack),2,3.84,02/20/19 21:42,"696 13th St, Los Angeles, CA 90001" -160782,Lightning Charging Cable,1,14.95,02/08/19 11:52,"971 Dogwood St, New York City, NY 10001" -160783,27in FHD Monitor,1,149.99,02/08/19 20:32,"294 Park St, San Francisco, CA 94016" -160784,Wired Headphones,1,11.99,02/22/19 18:32,"582 Lake St, Atlanta, GA 30301" -160785,Bose SoundSport Headphones,1,99.99,02/01/19 13:32,"976 Cherry St, San Francisco, CA 94016" -160786,Lightning Charging Cable,2,14.95,02/24/19 08:03,"563 1st St, Los Angeles, CA 90001" -160787,Bose SoundSport Headphones,1,99.99,02/03/19 14:17,"384 11th St, San Francisco, CA 94016" -160787,USB-C Charging Cable,2,11.95,02/03/19 14:17,"384 11th St, San Francisco, CA 94016" -160788,Bose SoundSport Headphones,1,99.99,02/25/19 22:22,"173 West St, New York City, NY 10001" -160789,Bose SoundSport Headphones,1,99.99,02/08/19 18:29,"621 Cherry St, Atlanta, GA 30301" -160790,Wired Headphones,1,11.99,02/03/19 10:40,"391 Dogwood St, New York City, NY 10001" -160791,27in 4K Gaming Monitor,1,389.99,02/27/19 14:25,"589 Hickory St, San Francisco, CA 94016" -160792,Apple Airpods Headphones,1,150,02/02/19 09:56,"613 Willow St, Boston, MA 02215" -160793,Lightning Charging Cable,1,14.95,02/15/19 15:35,"503 Johnson St, Seattle, WA 98101" -160794,Lightning Charging Cable,2,14.95,02/17/19 07:16,"71 11th St, Portland, ME 04101" -160795,Apple Airpods Headphones,1,150,02/27/19 17:14,"808 Chestnut St, San Francisco, CA 94016" -160796,Lightning Charging Cable,1,14.95,02/01/19 15:10,"762 Adams St, Boston, MA 02215" -160797,USB-C Charging Cable,1,11.95,02/28/19 21:05,"235 Cedar St, Dallas, TX 75001" -160798,iPhone,1,700,02/08/19 21:49,"291 Jackson St, Portland, OR 97035" -160799,Macbook Pro Laptop,1,1700,02/22/19 21:51,"561 Center St, Atlanta, GA 30301" -160800,Lightning Charging Cable,1,14.95,02/08/19 12:25,"637 Lakeview St, San Francisco, CA 94016" -160801,Wired Headphones,1,11.99,02/12/19 00:21,"544 Center St, Atlanta, GA 30301" -160802,Lightning Charging Cable,1,14.95,02/26/19 12:23,"593 Madison St, Atlanta, GA 30301" -160803,Lightning Charging Cable,1,14.95,02/13/19 17:09,"185 Center St, Dallas, TX 75001" -160803,Bose SoundSport Headphones,1,99.99,02/13/19 17:09,"185 Center St, Dallas, TX 75001" -160804,Apple Airpods Headphones,1,150,02/26/19 13:51,"31 West St, Boston, MA 02215" -160805,27in 4K Gaming Monitor,1,389.99,02/18/19 14:23,"208 Park St, New York City, NY 10001" -160806,AA Batteries (4-pack),1,3.84,02/14/19 22:07,"30 7th St, New York City, NY 10001" -160807,Flatscreen TV,1,300,02/28/19 20:36,"178 Pine St, San Francisco, CA 94016" -160808,34in Ultrawide Monitor,1,379.99,02/06/19 21:03,"989 Lake St, San Francisco, CA 94016" -160809,ThinkPad Laptop,1,999.99,02/23/19 22:23,"170 Lincoln St, Los Angeles, CA 90001" -160810,USB-C Charging Cable,1,11.95,02/28/19 00:13,"734 Willow St, Boston, MA 02215" -160811,Bose SoundSport Headphones,1,99.99,02/18/19 08:45,"438 Main St, Seattle, WA 98101" -160812,Bose SoundSport Headphones,1,99.99,02/13/19 09:57,"802 Spruce St, Los Angeles, CA 90001" -160813,ThinkPad Laptop,1,999.99,02/03/19 19:37,"550 Main St, Portland, OR 97035" -160814,ThinkPad Laptop,1,999.99,02/26/19 12:48,"777 Wilson St, Boston, MA 02215" -160815,AA Batteries (4-pack),2,3.84,02/25/19 00:45,"215 Church St, San Francisco, CA 94016" -160816,Google Phone,1,600,02/05/19 12:15,"553 6th St, San Francisco, CA 94016" -160817,Wired Headphones,1,11.99,02/07/19 18:18,"684 Pine St, Dallas, TX 75001" -160818,Bose SoundSport Headphones,1,99.99,02/07/19 12:49,"369 Jefferson St, San Francisco, CA 94016" -160819,Lightning Charging Cable,1,14.95,02/05/19 17:41,"458 Lakeview St, New York City, NY 10001" -160820,AA Batteries (4-pack),1,3.84,02/18/19 12:24,"511 Cedar St, Atlanta, GA 30301" -160821,20in Monitor,1,109.99,02/26/19 11:59,"991 Ridge St, Los Angeles, CA 90001" -160822,Flatscreen TV,1,300,02/26/19 20:09,"315 7th St, Dallas, TX 75001" -160823,AAA Batteries (4-pack),1,2.99,02/21/19 12:56,"575 Cherry St, New York City, NY 10001" -160824,27in FHD Monitor,1,149.99,02/03/19 12:42,"187 Hickory St, Los Angeles, CA 90001" -160825,Bose SoundSport Headphones,1,99.99,02/27/19 10:55,"139 6th St, Los Angeles, CA 90001" -160826,Macbook Pro Laptop,1,1700,02/27/19 12:51,"632 West St, New York City, NY 10001" -160827,AAA Batteries (4-pack),1,2.99,02/26/19 17:20,"952 8th St, Portland, OR 97035" -160828,27in 4K Gaming Monitor,1,389.99,02/22/19 19:54,"205 10th St, Dallas, TX 75001" -160829,Apple Airpods Headphones,1,150,02/24/19 19:38,"612 Hickory St, Seattle, WA 98101" -160830,AA Batteries (4-pack),2,3.84,02/16/19 13:14,"286 Willow St, Dallas, TX 75001" -160831,AAA Batteries (4-pack),1,2.99,02/02/19 14:41,"875 Adams St, Boston, MA 02215" -160832,Macbook Pro Laptop,1,1700,02/09/19 13:36,"41 Chestnut St, Atlanta, GA 30301" -160833,Lightning Charging Cable,2,14.95,02/08/19 00:21,"820 River St, Boston, MA 02215" -160834,ThinkPad Laptop,1,999.99,02/02/19 15:16,"8 Dogwood St, Austin, TX 73301" -160835,AA Batteries (4-pack),2,3.84,02/22/19 22:25,"301 Walnut St, Dallas, TX 75001" -160836,34in Ultrawide Monitor,1,379.99,02/22/19 20:05,"910 North St, Dallas, TX 75001" -160837,Lightning Charging Cable,1,14.95,02/10/19 14:06,"636 Johnson St, Austin, TX 73301" -160838,Google Phone,1,600,02/05/19 08:15,"453 Dogwood St, Los Angeles, CA 90001" -160839,USB-C Charging Cable,1,11.95,02/05/19 08:23,"502 Lake St, Seattle, WA 98101" -160840,USB-C Charging Cable,1,11.95,02/01/19 12:11,"694 7th St, San Francisco, CA 94016" -160841,Lightning Charging Cable,1,14.95,02/11/19 13:04,"176 River St, New York City, NY 10001" -160842,iPhone,1,700,02/16/19 11:02,"620 Park St, Los Angeles, CA 90001" -160843,Wired Headphones,1,11.99,02/28/19 05:35,"126 Lakeview St, Boston, MA 02215" -160844,iPhone,1,700,02/03/19 11:43,"163 Sunset St, Boston, MA 02215" -160845,Lightning Charging Cable,1,14.95,02/14/19 09:01,"123 Church St, Portland, ME 04101" -160846,iPhone,1,700,02/09/19 12:30,"566 Forest St, Los Angeles, CA 90001" -160847,Lightning Charging Cable,1,14.95,02/02/19 08:58,"216 Meadow St, San Francisco, CA 94016" -160848,Apple Airpods Headphones,1,150,02/19/19 13:08,"344 Pine St, Portland, OR 97035" -160849,Lightning Charging Cable,1,14.95,02/28/19 19:07,"869 Cedar St, San Francisco, CA 94016" -160850,Wired Headphones,1,11.99,02/05/19 23:46,"222 7th St, Los Angeles, CA 90001" -160850,AA Batteries (4-pack),1,3.84,02/05/19 23:46,"222 7th St, Los Angeles, CA 90001" -160851,Lightning Charging Cable,1,14.95,02/07/19 18:02,"115 Lake St, Seattle, WA 98101" -160851,27in 4K Gaming Monitor,1,389.99,02/07/19 18:02,"115 Lake St, Seattle, WA 98101" -160852,AA Batteries (4-pack),1,3.84,02/04/19 13:54,"537 Johnson St, Los Angeles, CA 90001" -160853,Lightning Charging Cable,1,14.95,02/27/19 10:17,"99 Jefferson St, Los Angeles, CA 90001" -160854,Flatscreen TV,1,300,02/09/19 17:25,"471 12th St, Boston, MA 02215" -160855,AAA Batteries (4-pack),2,2.99,02/20/19 18:13,"858 11th St, New York City, NY 10001" -160856,20in Monitor,1,109.99,02/03/19 16:25,"767 12th St, San Francisco, CA 94016" -160857,USB-C Charging Cable,2,11.95,02/27/19 19:52,"898 Dogwood St, New York City, NY 10001" -160858,Google Phone,1,600,02/05/19 00:43,"702 Meadow St, New York City, NY 10001" -160859,34in Ultrawide Monitor,1,379.99,02/22/19 13:08,"533 7th St, San Francisco, CA 94016" -160860,AA Batteries (4-pack),2,3.84,02/16/19 17:19,"253 Chestnut St, Atlanta, GA 30301" -160861,27in FHD Monitor,1,149.99,02/15/19 05:40,"560 River St, San Francisco, CA 94016" -160862,USB-C Charging Cable,1,11.95,02/17/19 08:31,"606 West St, Atlanta, GA 30301" -160863,Google Phone,1,600,02/22/19 10:00,"199 Johnson St, Dallas, TX 75001" -160863,Wired Headphones,1,11.99,02/22/19 10:00,"199 Johnson St, Dallas, TX 75001" -160864,AA Batteries (4-pack),3,3.84,02/25/19 22:50,"159 5th St, Austin, TX 73301" -160865,USB-C Charging Cable,1,11.95,02/25/19 19:56,"468 Wilson St, Portland, OR 97035" -160866,USB-C Charging Cable,1,11.95,02/07/19 17:28,"320 Johnson St, New York City, NY 10001" -160867,Lightning Charging Cable,1,14.95,02/15/19 11:41,"16 Willow St, San Francisco, CA 94016" -160868,AAA Batteries (4-pack),3,2.99,02/15/19 19:51,"104 Lincoln St, Seattle, WA 98101" -160869,AA Batteries (4-pack),1,3.84,02/15/19 22:12,"882 4th St, Los Angeles, CA 90001" -160870,AA Batteries (4-pack),1,3.84,02/26/19 12:37,"691 Cedar St, Dallas, TX 75001" -160871,Wired Headphones,1,11.99,02/17/19 19:31,"271 Main St, New York City, NY 10001" -160872,ThinkPad Laptop,1,999.99,02/14/19 19:16,"191 Meadow St, Boston, MA 02215" -160873,iPhone,1,700,02/10/19 10:24,"702 River St, San Francisco, CA 94016" -160873,Lightning Charging Cable,1,14.95,02/10/19 10:24,"702 River St, San Francisco, CA 94016" -160873,Apple Airpods Headphones,1,150,02/10/19 10:24,"702 River St, San Francisco, CA 94016" -160873,Wired Headphones,1,11.99,02/10/19 10:24,"702 River St, San Francisco, CA 94016" -160873,Google Phone,1,600,02/10/19 10:24,"702 River St, San Francisco, CA 94016" -160874,27in 4K Gaming Monitor,1,389.99,02/01/19 21:56,"841 Maple St, Los Angeles, CA 90001" -160875,Flatscreen TV,1,300,02/04/19 14:00,"386 Maple St, Boston, MA 02215" -160876,Lightning Charging Cable,1,14.95,02/07/19 19:56,"932 13th St, Boston, MA 02215" -160877,AA Batteries (4-pack),3,3.84,02/06/19 17:56,"973 Jefferson St, Portland, ME 04101" -160878,AAA Batteries (4-pack),1,2.99,02/23/19 18:59,"281 West St, Boston, MA 02215" -160879,27in FHD Monitor,1,149.99,02/12/19 08:06,"812 Wilson St, Dallas, TX 75001" -160880,AA Batteries (4-pack),1,3.84,02/20/19 11:36,"157 Chestnut St, Los Angeles, CA 90001" -160881,AA Batteries (4-pack),1,3.84,02/26/19 21:16,"759 Wilson St, San Francisco, CA 94016" -160882,Apple Airpods Headphones,1,150,02/21/19 12:23,"144 Pine St, New York City, NY 10001" -160883,Google Phone,1,600,02/20/19 21:01,"398 11th St, San Francisco, CA 94016" -160883,USB-C Charging Cable,1,11.95,02/20/19 21:01,"398 11th St, San Francisco, CA 94016" -160884,USB-C Charging Cable,1,11.95,02/16/19 22:32,"451 9th St, Portland, OR 97035" -160885,iPhone,1,700,02/16/19 11:03,"934 Chestnut St, Los Angeles, CA 90001" -160885,Lightning Charging Cable,1,14.95,02/16/19 11:03,"934 Chestnut St, Los Angeles, CA 90001" -160886,Lightning Charging Cable,1,14.95,02/24/19 12:25,"560 Walnut St, Boston, MA 02215" -160887,AA Batteries (4-pack),1,3.84,02/10/19 13:00,"539 Center St, Dallas, TX 75001" -160888,AA Batteries (4-pack),1,3.84,02/10/19 11:13,"540 Dogwood St, Seattle, WA 98101" -160889,AA Batteries (4-pack),3,3.84,02/28/19 09:20,"242 Washington St, Los Angeles, CA 90001" -160890,AA Batteries (4-pack),1,3.84,02/16/19 09:25,"910 Sunset St, New York City, NY 10001" -160891,Wired Headphones,1,11.99,02/18/19 11:51,"39 14th St, Seattle, WA 98101" -160892,Wired Headphones,1,11.99,02/27/19 12:37,"514 12th St, Atlanta, GA 30301" -160893,AAA Batteries (4-pack),1,2.99,02/19/19 22:23,"540 11th St, New York City, NY 10001" -160894,AAA Batteries (4-pack),1,2.99,02/24/19 03:52,"634 West St, Portland, OR 97035" -160894,Apple Airpods Headphones,1,150,02/24/19 03:52,"634 West St, Portland, OR 97035" -160895,Apple Airpods Headphones,1,150,02/03/19 14:49,"30 Elm St, Austin, TX 73301" -160896,Lightning Charging Cable,1,14.95,02/26/19 17:15,"625 9th St, San Francisco, CA 94016" -160897,Lightning Charging Cable,1,14.95,02/09/19 00:20,"772 Washington St, Dallas, TX 75001" -160898,Wired Headphones,1,11.99,02/10/19 23:26,"638 North St, Atlanta, GA 30301" -160899,AA Batteries (4-pack),2,3.84,02/20/19 07:16,"665 Church St, Los Angeles, CA 90001" -160900,AA Batteries (4-pack),1,3.84,02/01/19 11:36,"162 Hill St, New York City, NY 10001" -160901,AAA Batteries (4-pack),1,2.99,02/02/19 18:36,"4 Hickory St, Seattle, WA 98101" -160902,Apple Airpods Headphones,1,150,02/28/19 09:29,"291 2nd St, San Francisco, CA 94016" -160903,USB-C Charging Cable,1,11.95,02/19/19 00:01,"706 7th St, New York City, NY 10001" -160904,27in FHD Monitor,1,149.99,02/21/19 08:04,"512 Pine St, Boston, MA 02215" -160905,Wired Headphones,1,11.99,02/28/19 08:26,"186 Cherry St, Dallas, TX 75001" -160906,AAA Batteries (4-pack),3,2.99,02/17/19 06:56,"474 Lincoln St, Dallas, TX 75001" -160906,iPhone,1,700,02/17/19 06:56,"474 Lincoln St, Dallas, TX 75001" -160907,USB-C Charging Cable,1,11.95,02/27/19 12:30,"974 13th St, San Francisco, CA 94016" -160908,AAA Batteries (4-pack),1,2.99,02/15/19 08:35,"299 12th St, San Francisco, CA 94016" -160909,AA Batteries (4-pack),1,3.84,02/21/19 09:28,"220 13th St, Dallas, TX 75001" -160910,AAA Batteries (4-pack),1,2.99,02/11/19 14:00,"727 Maple St, Portland, OR 97035" -160911,Bose SoundSport Headphones,1,99.99,02/06/19 07:44,"278 Hickory St, Portland, OR 97035" -160912,27in 4K Gaming Monitor,1,389.99,02/09/19 23:04,"439 River St, Portland, ME 04101" -160912,USB-C Charging Cable,1,11.95,02/09/19 23:04,"439 River St, Portland, ME 04101" -160913,Lightning Charging Cable,1,14.95,02/01/19 20:45,"989 South St, New York City, NY 10001" -160914,AA Batteries (4-pack),1,3.84,02/04/19 10:52,"456 12th St, Dallas, TX 75001" -160915,Apple Airpods Headphones,1,150,02/12/19 22:28,"43 Washington St, San Francisco, CA 94016" -160916,Lightning Charging Cable,1,14.95,02/28/19 19:37,"135 Hill St, Seattle, WA 98101" -160917,USB-C Charging Cable,1,11.95,02/25/19 11:54,"120 Willow St, San Francisco, CA 94016" -160918,Lightning Charging Cable,1,14.95,02/10/19 17:26,"191 Hickory St, San Francisco, CA 94016" -160919,Lightning Charging Cable,1,14.95,02/14/19 10:57,"181 Ridge St, Atlanta, GA 30301" -160920,USB-C Charging Cable,1,11.95,02/15/19 11:35,"408 1st St, Boston, MA 02215" -160921,AAA Batteries (4-pack),1,2.99,02/06/19 15:13,"387 Wilson St, Los Angeles, CA 90001" -160922,Lightning Charging Cable,1,14.95,02/03/19 20:59,"658 Wilson St, Atlanta, GA 30301" -160923,27in FHD Monitor,1,149.99,02/03/19 11:31,"574 Willow St, New York City, NY 10001" -160924,Flatscreen TV,1,300,02/04/19 12:21,"522 West St, Seattle, WA 98101" -160925,Lightning Charging Cable,1,14.95,02/14/19 15:24,"535 Johnson St, Dallas, TX 75001" -160926,Apple Airpods Headphones,1,150,02/23/19 14:09,"637 Washington St, Los Angeles, CA 90001" -160927,Lightning Charging Cable,1,14.95,02/07/19 23:02,"38 Adams St, Atlanta, GA 30301" -160928,Vareebadd Phone,1,400,02/13/19 15:59,"242 Walnut St, Los Angeles, CA 90001" -160928,Wired Headphones,1,11.99,02/13/19 15:59,"242 Walnut St, Los Angeles, CA 90001" -160928,27in 4K Gaming Monitor,1,389.99,02/13/19 15:59,"242 Walnut St, Los Angeles, CA 90001" -160929,34in Ultrawide Monitor,1,379.99,02/17/19 10:00,"276 River St, Dallas, TX 75001" -160930,AAA Batteries (4-pack),1,2.99,02/09/19 14:42,"658 Lakeview St, Atlanta, GA 30301" -160931,Bose SoundSport Headphones,1,99.99,02/14/19 03:37,"157 North St, Seattle, WA 98101" -160932,Bose SoundSport Headphones,1,99.99,02/02/19 17:48,"628 Ridge St, Los Angeles, CA 90001" -160933,USB-C Charging Cable,2,11.95,02/17/19 10:25,"434 8th St, Los Angeles, CA 90001" -160934,27in 4K Gaming Monitor,1,389.99,02/19/19 19:45,"757 North St, Seattle, WA 98101" -160935,AA Batteries (4-pack),2,3.84,02/03/19 09:00,"514 Sunset St, San Francisco, CA 94016" -160936,Lightning Charging Cable,1,14.95,02/17/19 07:51,"552 Adams St, Portland, OR 97035" -160937,Lightning Charging Cable,1,14.95,02/09/19 11:34,"791 River St, New York City, NY 10001" -160938,Lightning Charging Cable,1,14.95,02/03/19 14:11,"603 Wilson St, Dallas, TX 75001" -160939,20in Monitor,1,109.99,02/08/19 09:59,"493 Meadow St, Los Angeles, CA 90001" -160940,USB-C Charging Cable,1,11.95,02/06/19 11:11,"330 South St, Atlanta, GA 30301" -160941,Apple Airpods Headphones,1,150,02/20/19 19:41,"120 West St, Los Angeles, CA 90001" -160942,34in Ultrawide Monitor,1,379.99,02/18/19 18:23,"862 Jackson St, Dallas, TX 75001" -160943,27in FHD Monitor,1,149.99,02/03/19 22:23,"56 Pine St, Seattle, WA 98101" -160944,Lightning Charging Cable,1,14.95,02/03/19 14:09,"11 8th St, Boston, MA 02215" -160945,Apple Airpods Headphones,1,150,02/22/19 12:28,"389 2nd St, Atlanta, GA 30301" -160946,iPhone,1,700,02/16/19 11:43,"284 Willow St, Seattle, WA 98101" -160947,Wired Headphones,1,11.99,02/23/19 09:21,"383 Adams St, New York City, NY 10001" -160948,AA Batteries (4-pack),3,3.84,02/09/19 18:44,"507 Cherry St, Boston, MA 02215" -160949,34in Ultrawide Monitor,1,379.99,02/26/19 23:42,"163 Elm St, Atlanta, GA 30301" -160950,AAA Batteries (4-pack),2,2.99,02/27/19 15:15,"589 Meadow St, San Francisco, CA 94016" -160951,AAA Batteries (4-pack),2,2.99,02/25/19 13:47,"182 Lakeview St, Los Angeles, CA 90001" -160952,USB-C Charging Cable,1,11.95,02/28/19 18:10,"431 Lincoln St, San Francisco, CA 94016" -160953,USB-C Charging Cable,1,11.95,02/11/19 09:25,"497 Meadow St, Atlanta, GA 30301" -160954,20in Monitor,1,109.99,02/14/19 17:54,"536 13th St, Los Angeles, CA 90001" -160955,AAA Batteries (4-pack),2,2.99,02/02/19 04:34,"497 5th St, Seattle, WA 98101" -160956,Apple Airpods Headphones,1,150,02/14/19 21:21,"357 Sunset St, Austin, TX 73301" -160957,Wired Headphones,1,11.99,02/06/19 13:32,"677 South St, Dallas, TX 75001" -160958,Apple Airpods Headphones,1,150,02/21/19 01:33,"287 Lincoln St, San Francisco, CA 94016" -160959,20in Monitor,1,109.99,02/14/19 19:43,"121 Church St, Seattle, WA 98101" -160960,AA Batteries (4-pack),1,3.84,02/14/19 07:59,"406 Dogwood St, Los Angeles, CA 90001" -160961,Google Phone,1,600,02/01/19 19:22,"380 Park St, New York City, NY 10001" -160961,USB-C Charging Cable,1,11.95,02/01/19 19:22,"380 Park St, New York City, NY 10001" -160962,AAA Batteries (4-pack),4,2.99,02/03/19 10:53,"317 Cedar St, Portland, OR 97035" -160963,Bose SoundSport Headphones,1,99.99,02/07/19 15:05,"132 Pine St, San Francisco, CA 94016" -160964,AAA Batteries (4-pack),1,2.99,02/25/19 10:28,"54 Jefferson St, Los Angeles, CA 90001" -160965,AA Batteries (4-pack),2,3.84,03/01/19 01:25,"98 Johnson St, San Francisco, CA 94016" -160966,27in 4K Gaming Monitor,1,389.99,02/04/19 02:31,"707 West St, Atlanta, GA 30301" -160967,Lightning Charging Cable,1,14.95,02/10/19 22:25,"214 Adams St, Los Angeles, CA 90001" -160968,27in 4K Gaming Monitor,1,389.99,02/25/19 12:18,"642 Walnut St, Seattle, WA 98101" -160969,iPhone,1,700,02/19/19 15:17,"824 Jackson St, Boston, MA 02215" -160970,Macbook Pro Laptop,1,1700,02/04/19 08:14,"450 Lincoln St, New York City, NY 10001" -160970,27in 4K Gaming Monitor,1,389.99,02/04/19 08:14,"450 Lincoln St, New York City, NY 10001" -160971,Wired Headphones,1,11.99,02/25/19 18:52,"126 Adams St, San Francisco, CA 94016" -160972,Lightning Charging Cable,1,14.95,02/27/19 11:40,"209 Lincoln St, Los Angeles, CA 90001" -160973,Flatscreen TV,1,300,02/12/19 07:38,"939 12th St, Los Angeles, CA 90001" -160974,AAA Batteries (4-pack),3,2.99,02/13/19 21:21,"756 Church St, Los Angeles, CA 90001" -160975,Flatscreen TV,1,300,02/22/19 17:31,"909 West St, New York City, NY 10001" -160976,Apple Airpods Headphones,1,150,02/24/19 14:06,"829 Center St, Boston, MA 02215" -160977,27in 4K Gaming Monitor,1,389.99,02/14/19 16:59,"734 Jackson St, Dallas, TX 75001" -160978,Wired Headphones,1,11.99,02/09/19 21:47,"907 Walnut St, Portland, OR 97035" -160979,Wired Headphones,1,11.99,02/16/19 15:09,"945 9th St, Atlanta, GA 30301" -160980,Wired Headphones,1,11.99,02/25/19 18:39,"666 10th St, New York City, NY 10001" -160981,27in 4K Gaming Monitor,1,389.99,02/08/19 13:11,"313 Adams St, Dallas, TX 75001" -160982,AAA Batteries (4-pack),1,2.99,02/17/19 21:27,"562 Hill St, Los Angeles, CA 90001" -160983,Apple Airpods Headphones,1,150,02/04/19 13:58,"194 Washington St, Seattle, WA 98101" -160984,27in FHD Monitor,1,149.99,02/28/19 15:00,"245 Lincoln St, San Francisco, CA 94016" -160985,Bose SoundSport Headphones,1,99.99,02/03/19 10:47,"249 Highland St, San Francisco, CA 94016" -160986,Bose SoundSport Headphones,1,99.99,02/14/19 15:27,"403 Pine St, Atlanta, GA 30301" -160987,Apple Airpods Headphones,1,150,02/11/19 18:09,"348 10th St, San Francisco, CA 94016" -160988,Apple Airpods Headphones,1,150,02/11/19 12:46,"186 Johnson St, Portland, OR 97035" -160989,Flatscreen TV,1,300,02/28/19 11:07,"593 Main St, Atlanta, GA 30301" -160990,Wired Headphones,1,11.99,02/06/19 13:43,"577 13th St, Austin, TX 73301" -160991,USB-C Charging Cable,1,11.95,02/24/19 16:17,"519 Wilson St, San Francisco, CA 94016" -160992,USB-C Charging Cable,1,11.95,02/02/19 21:36,"676 Maple St, Los Angeles, CA 90001" -160993,AA Batteries (4-pack),2,3.84,02/27/19 19:27,"4 River St, New York City, NY 10001" -160994,Apple Airpods Headphones,2,150,02/08/19 00:32,"207 11th St, New York City, NY 10001" -160995,Lightning Charging Cable,1,14.95,02/11/19 10:49,"492 Center St, Los Angeles, CA 90001" -160996,AA Batteries (4-pack),1,3.84,02/06/19 02:37,"484 Chestnut St, Los Angeles, CA 90001" -160997,AA Batteries (4-pack),1,3.84,02/02/19 10:35,"369 4th St, San Francisco, CA 94016" -160998,Bose SoundSport Headphones,1,99.99,02/03/19 20:55,"680 Ridge St, Seattle, WA 98101" -160999,AAA Batteries (4-pack),2,2.99,02/11/19 13:55,"252 7th St, Los Angeles, CA 90001" -161000,AA Batteries (4-pack),2,3.84,02/11/19 17:00,"946 Cherry St, Seattle, WA 98101" -161001,Bose SoundSport Headphones,1,99.99,02/15/19 09:40,"339 13th St, San Francisco, CA 94016" -161002,AAA Batteries (4-pack),1,2.99,02/22/19 20:23,"575 Walnut St, San Francisco, CA 94016" -161003,Bose SoundSport Headphones,1,99.99,02/13/19 08:50,"196 Meadow St, Boston, MA 02215" -161004,Google Phone,1,600,02/10/19 16:13,"563 Forest St, San Francisco, CA 94016" -161005,Lightning Charging Cable,1,14.95,02/20/19 08:17,"813 Hill St, Seattle, WA 98101" -161006,Bose SoundSport Headphones,1,99.99,02/11/19 13:48,"832 Washington St, Austin, TX 73301" -161007,iPhone,1,700,02/11/19 10:27,"709 13th St, Dallas, TX 75001" -161008,34in Ultrawide Monitor,1,379.99,02/17/19 12:41,"252 Forest St, Boston, MA 02215" -161009,iPhone,1,700,02/06/19 18:32,"551 13th St, Los Angeles, CA 90001" -161010,AAA Batteries (4-pack),3,2.99,02/10/19 17:44,"989 Cherry St, Portland, OR 97035" -161011,AA Batteries (4-pack),1,3.84,02/24/19 13:26,"513 12th St, Los Angeles, CA 90001" -161012,Macbook Pro Laptop,1,1700,02/16/19 18:57,"99 South St, Los Angeles, CA 90001" -161013,Bose SoundSport Headphones,1,99.99,02/24/19 19:44,"682 7th St, Austin, TX 73301" -161014,AAA Batteries (4-pack),2,2.99,02/25/19 14:15,"107 Walnut St, Boston, MA 02215" -161015,Google Phone,1,600,02/04/19 22:51,"634 Cedar St, Boston, MA 02215" -161015,USB-C Charging Cable,1,11.95,02/04/19 22:51,"634 Cedar St, Boston, MA 02215" -161016,Vareebadd Phone,1,400,02/07/19 07:43,"226 12th St, New York City, NY 10001" -161017,Lightning Charging Cable,1,14.95,02/07/19 11:51,"42 10th St, San Francisco, CA 94016" -161018,Google Phone,1,600,02/18/19 17:41,"598 4th St, Seattle, WA 98101" -161019,Wired Headphones,1,11.99,02/20/19 21:47,"279 Hickory St, Dallas, TX 75001" -161020,34in Ultrawide Monitor,1,379.99,02/06/19 11:14,"385 8th St, San Francisco, CA 94016" -161021,Bose SoundSport Headphones,1,99.99,02/03/19 10:55,"477 Willow St, Seattle, WA 98101" -161022,USB-C Charging Cable,1,11.95,02/17/19 21:14,"818 Elm St, San Francisco, CA 94016" -161023,34in Ultrawide Monitor,1,379.99,02/27/19 11:53,"96 River St, Seattle, WA 98101" -161024,Wired Headphones,1,11.99,02/04/19 18:07,"245 Sunset St, Boston, MA 02215" -161025,Lightning Charging Cable,1,14.95,02/11/19 14:59,"577 6th St, San Francisco, CA 94016" -161026,Lightning Charging Cable,1,14.95,02/18/19 15:27,"863 Sunset St, Austin, TX 73301" -161027,34in Ultrawide Monitor,1,379.99,02/16/19 10:16,"375 Washington St, San Francisco, CA 94016" -161028,USB-C Charging Cable,1,11.95,02/07/19 13:13,"470 Johnson St, San Francisco, CA 94016" -161029,34in Ultrawide Monitor,1,379.99,02/11/19 22:41,"235 West St, Austin, TX 73301" -161030,Lightning Charging Cable,1,14.95,02/23/19 18:07,"133 Forest St, Dallas, TX 75001" -161031,iPhone,1,700,02/11/19 07:46,"604 Center St, Boston, MA 02215" -161032,27in 4K Gaming Monitor,1,389.99,02/11/19 09:01,"225 1st St, San Francisco, CA 94016" -161033,Apple Airpods Headphones,1,150,02/14/19 07:06,"904 Lake St, Atlanta, GA 30301" -161034,ThinkPad Laptop,1,999.99,02/26/19 14:38,"964 Walnut St, New York City, NY 10001" -161035,USB-C Charging Cable,1,11.95,02/26/19 20:59,"477 Walnut St, Seattle, WA 98101" -161036,27in FHD Monitor,1,149.99,02/28/19 21:50,"445 Main St, Portland, OR 97035" -161037,Wired Headphones,1,11.99,02/27/19 14:50,"689 Elm St, Los Angeles, CA 90001" -161038,AA Batteries (4-pack),1,3.84,02/15/19 09:21,"611 River St, Los Angeles, CA 90001" -161039,27in FHD Monitor,1,149.99,02/22/19 15:04,"427 7th St, Portland, OR 97035" -161040,AAA Batteries (4-pack),3,2.99,02/20/19 18:35,"580 Maple St, New York City, NY 10001" -161041,34in Ultrawide Monitor,1,379.99,02/22/19 10:29,"383 Hill St, San Francisco, CA 94016" -161042,20in Monitor,1,109.99,02/14/19 08:25,"697 Lake St, New York City, NY 10001" -161043,Lightning Charging Cable,1,14.95,02/15/19 10:51,"234 13th St, New York City, NY 10001" -161044,AA Batteries (4-pack),1,3.84,02/24/19 23:04,"527 Park St, San Francisco, CA 94016" -161045,ThinkPad Laptop,1,999.99,02/09/19 23:10,"555 Chestnut St, San Francisco, CA 94016" -161046,AA Batteries (4-pack),1,3.84,02/18/19 16:59,"871 Cherry St, San Francisco, CA 94016" -161047,Lightning Charging Cable,1,14.95,02/13/19 07:09,"492 Jackson St, San Francisco, CA 94016" -161048,Google Phone,1,600,02/12/19 16:35,"675 8th St, New York City, NY 10001" -161049,Wired Headphones,1,11.99,02/11/19 10:49,"172 Johnson St, San Francisco, CA 94016" -161050,AA Batteries (4-pack),1,3.84,02/21/19 08:34,"731 Hickory St, New York City, NY 10001" -161051,AA Batteries (4-pack),2,3.84,02/10/19 19:34,"463 Elm St, Los Angeles, CA 90001" -161052,Bose SoundSport Headphones,1,99.99,02/10/19 08:14,"441 Jefferson St, Los Angeles, CA 90001" -161053,27in 4K Gaming Monitor,1,389.99,02/09/19 20:50,"523 Meadow St, San Francisco, CA 94016" -161054,AAA Batteries (4-pack),3,2.99,02/11/19 14:45,"395 4th St, New York City, NY 10001" -161055,Macbook Pro Laptop,1,1700,02/05/19 15:42,"235 River St, San Francisco, CA 94016" -161056,Macbook Pro Laptop,1,1700,02/14/19 09:32,"251 Forest St, San Francisco, CA 94016" -161057,ThinkPad Laptop,1,999.99,02/12/19 05:03,"477 Jackson St, New York City, NY 10001" -161058,Google Phone,1,600,02/03/19 21:06,"2 Ridge St, San Francisco, CA 94016" -161059,USB-C Charging Cable,1,11.95,02/16/19 16:57,"298 9th St, Seattle, WA 98101" -161060,Lightning Charging Cable,1,14.95,02/13/19 14:19,"207 Jefferson St, Austin, TX 73301" -161061,Apple Airpods Headphones,1,150,02/17/19 21:50,"225 Maple St, Seattle, WA 98101" -161062,27in 4K Gaming Monitor,1,389.99,02/09/19 17:37,"725 Adams St, San Francisco, CA 94016" -161063,AA Batteries (4-pack),2,3.84,02/22/19 07:58,"212 Meadow St, San Francisco, CA 94016" -161064,Lightning Charging Cable,1,14.95,02/18/19 18:22,"607 Ridge St, San Francisco, CA 94016" -161065,Apple Airpods Headphones,1,150,02/28/19 01:47,"618 Cedar St, Los Angeles, CA 90001" -161066,Bose SoundSport Headphones,1,99.99,02/20/19 18:52,"140 Hickory St, New York City, NY 10001" -161067,Flatscreen TV,1,300,02/27/19 05:11,"655 Center St, Dallas, TX 75001" -161068,USB-C Charging Cable,1,11.95,02/26/19 17:34,"870 Ridge St, Seattle, WA 98101" -161069,Wired Headphones,1,11.99,02/09/19 19:12,"42 Center St, San Francisco, CA 94016" -161070,27in 4K Gaming Monitor,1,389.99,02/05/19 10:37,"392 Lincoln St, New York City, NY 10001" -161071,AA Batteries (4-pack),1,3.84,02/01/19 12:24,"945 6th St, Seattle, WA 98101" -161072,Wired Headphones,1,11.99,02/09/19 09:06,"79 13th St, Atlanta, GA 30301" -161073,AAA Batteries (4-pack),1,2.99,02/17/19 14:13,"278 Hill St, San Francisco, CA 94016" -161074,27in FHD Monitor,1,149.99,02/12/19 13:15,"991 River St, New York City, NY 10001" -161075,27in 4K Gaming Monitor,1,389.99,02/03/19 13:06,"995 Ridge St, San Francisco, CA 94016" -161076,ThinkPad Laptop,1,999.99,02/23/19 11:39,"629 Lincoln St, New York City, NY 10001" -161077,iPhone,1,700,02/06/19 18:08,"571 Lakeview St, New York City, NY 10001" -161078,Bose SoundSport Headphones,2,99.99,02/23/19 09:52,"514 Cherry St, New York City, NY 10001" -161079,Wired Headphones,1,11.99,02/20/19 14:31,"788 Meadow St, Los Angeles, CA 90001" -161080,Lightning Charging Cable,1,14.95,02/02/19 11:04,"83 Center St, Boston, MA 02215" -161081,USB-C Charging Cable,1,11.95,02/21/19 14:47,"714 Adams St, New York City, NY 10001" -161082,Wired Headphones,1,11.99,02/20/19 16:10,"802 Willow St, New York City, NY 10001" -161083,Lightning Charging Cable,1,14.95,02/14/19 14:56,"487 Jefferson St, Los Angeles, CA 90001" -161084,AA Batteries (4-pack),1,3.84,02/27/19 14:09,"920 Maple St, New York City, NY 10001" -161085,USB-C Charging Cable,1,11.95,02/18/19 13:21,"325 Johnson St, Dallas, TX 75001" -161086,AA Batteries (4-pack),1,3.84,02/05/19 19:50,"997 Walnut St, New York City, NY 10001" -161087,Wired Headphones,2,11.99,02/18/19 12:11,"581 5th St, Los Angeles, CA 90001" -161088,USB-C Charging Cable,1,11.95,02/24/19 15:23,"841 South St, Atlanta, GA 30301" -161089,Bose SoundSport Headphones,1,99.99,02/18/19 12:52,"330 Hickory St, Dallas, TX 75001" -161090,iPhone,1,700,02/01/19 13:21,"680 Maple St, San Francisco, CA 94016" -161090,Wired Headphones,1,11.99,02/01/19 13:21,"680 Maple St, San Francisco, CA 94016" -161091,USB-C Charging Cable,1,11.95,02/03/19 10:55,"111 Cedar St, New York City, NY 10001" -161092,USB-C Charging Cable,1,11.95,02/23/19 13:54,"935 12th St, Austin, TX 73301" -161093,27in 4K Gaming Monitor,1,389.99,02/23/19 09:42,"236 Washington St, San Francisco, CA 94016" -161094,Lightning Charging Cable,1,14.95,02/20/19 08:36,"180 Maple St, San Francisco, CA 94016" -161095,27in 4K Gaming Monitor,1,389.99,02/15/19 12:59,"513 9th St, New York City, NY 10001" -161096,34in Ultrawide Monitor,1,379.99,02/07/19 18:34,"459 Sunset St, Atlanta, GA 30301" -161097,Apple Airpods Headphones,1,150,02/27/19 21:16,"129 North St, New York City, NY 10001" -161098,27in 4K Gaming Monitor,1,389.99,02/14/19 13:31,"482 Johnson St, New York City, NY 10001" -161099,Apple Airpods Headphones,1,150,02/07/19 11:08,"927 West St, Portland, ME 04101" -161100,Google Phone,1,600,02/14/19 12:40,"248 6th St, San Francisco, CA 94016" -161100,Bose SoundSport Headphones,1,99.99,02/14/19 12:40,"248 6th St, San Francisco, CA 94016" -161101,27in 4K Gaming Monitor,1,389.99,02/02/19 08:23,"933 Center St, Los Angeles, CA 90001" -161102,Wired Headphones,1,11.99,02/26/19 19:13,"23 Lake St, San Francisco, CA 94016" -161103,Wired Headphones,1,11.99,02/22/19 15:52,"314 Cedar St, Boston, MA 02215" -161104,27in 4K Gaming Monitor,1,389.99,02/28/19 23:12,"441 6th St, Dallas, TX 75001" -161105,27in 4K Gaming Monitor,1,389.99,02/14/19 21:16,"360 Center St, Boston, MA 02215" -161106,Wired Headphones,1,11.99,02/02/19 15:01,"387 Lake St, Seattle, WA 98101" -161107,USB-C Charging Cable,1,11.95,02/02/19 08:57,"377 8th St, San Francisco, CA 94016" -161108,Apple Airpods Headphones,1,150,02/11/19 08:29,"831 Church St, Los Angeles, CA 90001" -161109,AAA Batteries (4-pack),3,2.99,02/24/19 17:11,"42 4th St, Seattle, WA 98101" -161110,27in FHD Monitor,1,149.99,02/20/19 21:19,"978 Washington St, Portland, OR 97035" -161111,27in FHD Monitor,1,149.99,02/10/19 18:47,"926 Lincoln St, Boston, MA 02215" -161111,34in Ultrawide Monitor,1,379.99,02/10/19 18:47,"926 Lincoln St, Boston, MA 02215" -161112,Vareebadd Phone,1,400,02/20/19 10:34,"953 2nd St, Dallas, TX 75001" -161113,Apple Airpods Headphones,1,150,02/01/19 17:46,"280 12th St, Boston, MA 02215" -161114,AA Batteries (4-pack),1,3.84,02/17/19 15:57,"783 9th St, San Francisco, CA 94016" -161115,Flatscreen TV,1,300,02/19/19 10:01,"586 Church St, Seattle, WA 98101" -161116,Lightning Charging Cable,1,14.95,02/19/19 19:12,"347 7th St, Boston, MA 02215" -161117,AA Batteries (4-pack),1,3.84,02/11/19 18:01,"313 Chestnut St, Los Angeles, CA 90001" -161118,27in 4K Gaming Monitor,1,389.99,02/04/19 17:56,"94 West St, Portland, OR 97035" -161119,USB-C Charging Cable,1,11.95,02/16/19 19:38,"142 Wilson St, Atlanta, GA 30301" -161120,Lightning Charging Cable,1,14.95,02/18/19 08:01,"198 7th St, San Francisco, CA 94016" -161121,AAA Batteries (4-pack),6,2.99,02/16/19 09:35,"225 11th St, Portland, ME 04101" -161122,27in 4K Gaming Monitor,1,389.99,02/09/19 12:18,"807 Sunset St, Los Angeles, CA 90001" -161123,Apple Airpods Headphones,1,150,02/08/19 20:34,"301 2nd St, Boston, MA 02215" -161124,Bose SoundSport Headphones,1,99.99,02/25/19 02:20,"498 Hickory St, Los Angeles, CA 90001" -161125,AA Batteries (4-pack),1,3.84,02/03/19 05:52,"711 Lake St, San Francisco, CA 94016" -161126,Wired Headphones,1,11.99,02/23/19 20:03,"787 Park St, Atlanta, GA 30301" -161127,AA Batteries (4-pack),1,3.84,02/09/19 17:31,"472 13th St, New York City, NY 10001" -161128,Lightning Charging Cable,1,14.95,02/13/19 20:22,"935 Lincoln St, San Francisco, CA 94016" -161129,AA Batteries (4-pack),1,3.84,02/22/19 18:16,"479 Elm St, Atlanta, GA 30301" -161130,Wired Headphones,1,11.99,02/20/19 15:17,"962 Jackson St, Boston, MA 02215" -161131,AAA Batteries (4-pack),1,2.99,02/16/19 15:23,"302 11th St, New York City, NY 10001" -161132,AA Batteries (4-pack),1,3.84,02/21/19 14:50,"379 Wilson St, Austin, TX 73301" -161133,USB-C Charging Cable,1,11.95,02/25/19 10:45,"44 Wilson St, Los Angeles, CA 90001" -161134,27in FHD Monitor,1,149.99,02/22/19 21:05,"41 Lakeview St, San Francisco, CA 94016" -161135,Apple Airpods Headphones,1,150,02/12/19 12:19,"774 West St, Austin, TX 73301" -161136,USB-C Charging Cable,1,11.95,02/12/19 09:04,"333 Main St, San Francisco, CA 94016" -161137,USB-C Charging Cable,1,11.95,02/28/19 23:39,"140 1st St, Austin, TX 73301" -161138,Apple Airpods Headphones,1,150,02/03/19 18:08,"853 Maple St, Los Angeles, CA 90001" -161139,AA Batteries (4-pack),2,3.84,02/01/19 22:24,"644 4th St, Seattle, WA 98101" -161140,AAA Batteries (4-pack),1,2.99,02/23/19 18:56,"381 Walnut St, Seattle, WA 98101" -161141,USB-C Charging Cable,1,11.95,02/07/19 19:54,"3 1st St, Los Angeles, CA 90001" -161142,Flatscreen TV,1,300,02/22/19 14:34,"222 5th St, Portland, OR 97035" -161143,iPhone,1,700,02/03/19 22:33,"326 Center St, San Francisco, CA 94016" -161144,AA Batteries (4-pack),1,3.84,02/19/19 17:20,"320 14th St, Los Angeles, CA 90001" -161145,Lightning Charging Cable,2,14.95,02/11/19 20:10,"81 7th St, Portland, OR 97035" -161146,27in 4K Gaming Monitor,1,389.99,02/15/19 13:09,"549 Johnson St, Portland, OR 97035" -161147,Wired Headphones,1,11.99,02/10/19 21:40,"230 Chestnut St, San Francisco, CA 94016" -161148,Bose SoundSport Headphones,1,99.99,02/02/19 09:46,"226 Hill St, Portland, OR 97035" -161149,iPhone,1,700,02/19/19 17:50,"228 Highland St, San Francisco, CA 94016" -161149,Lightning Charging Cable,1,14.95,02/19/19 17:50,"228 Highland St, San Francisco, CA 94016" -161150,USB-C Charging Cable,1,11.95,02/11/19 20:25,"329 Jefferson St, Los Angeles, CA 90001" -161151,AAA Batteries (4-pack),1,2.99,02/01/19 18:00,"206 1st St, Seattle, WA 98101" -161152,USB-C Charging Cable,2,11.95,02/20/19 10:10,"529 Spruce St, Seattle, WA 98101" -161153,34in Ultrawide Monitor,1,379.99,02/08/19 20:46,"904 Forest St, Atlanta, GA 30301" -161154,Apple Airpods Headphones,1,150,02/17/19 23:30,"63 8th St, Boston, MA 02215" -161155,AAA Batteries (4-pack),1,2.99,02/18/19 14:55,"452 Cedar St, Austin, TX 73301" -161156,AA Batteries (4-pack),1,3.84,02/21/19 21:45,"965 Ridge St, Austin, TX 73301" -161157,AA Batteries (4-pack),1,3.84,02/10/19 11:32,"204 Lakeview St, Atlanta, GA 30301" -161158,Wired Headphones,1,11.99,02/26/19 07:30,"269 Park St, Los Angeles, CA 90001" -161159,USB-C Charging Cable,2,11.95,02/21/19 01:43,"289 Chestnut St, Los Angeles, CA 90001" -161159,Bose SoundSport Headphones,1,99.99,02/21/19 01:43,"289 Chestnut St, Los Angeles, CA 90001" -161160,20in Monitor,1,109.99,02/18/19 09:24,"997 Adams St, Portland, OR 97035" -161161,AA Batteries (4-pack),1,3.84,02/23/19 18:57,"819 Spruce St, Seattle, WA 98101" -161162,iPhone,1,700,02/06/19 11:47,"640 Cedar St, San Francisco, CA 94016" -161163,iPhone,1,700,02/27/19 09:21,"410 10th St, Los Angeles, CA 90001" -161164,Lightning Charging Cable,1,14.95,02/28/19 12:30,"355 12th St, Atlanta, GA 30301" -161165,AA Batteries (4-pack),1,3.84,02/18/19 09:45,"231 South St, Boston, MA 02215" -161166,Bose SoundSport Headphones,1,99.99,02/14/19 14:49,"786 North St, San Francisco, CA 94016" -161167,AA Batteries (4-pack),2,3.84,02/03/19 17:17,"957 Ridge St, Atlanta, GA 30301" -161168,27in FHD Monitor,1,149.99,02/22/19 15:47,"460 Pine St, San Francisco, CA 94016" -161169,AAA Batteries (4-pack),3,2.99,02/04/19 10:16,"529 Dogwood St, San Francisco, CA 94016" -161170,AAA Batteries (4-pack),1,2.99,02/03/19 09:54,"32 Maple St, Austin, TX 73301" -161171,AAA Batteries (4-pack),1,2.99,02/22/19 11:09,"915 Walnut St, Los Angeles, CA 90001" -161172,iPhone,1,700,02/02/19 12:59,"379 13th St, New York City, NY 10001" -161172,Lightning Charging Cable,1,14.95,02/02/19 12:59,"379 13th St, New York City, NY 10001" -161173,Lightning Charging Cable,1,14.95,02/15/19 07:39,"184 2nd St, Atlanta, GA 30301" -161174,27in 4K Gaming Monitor,1,389.99,02/02/19 12:46,"866 Walnut St, Boston, MA 02215" -161175,Lightning Charging Cable,1,14.95,02/27/19 23:42,"625 7th St, Los Angeles, CA 90001" -161176,Flatscreen TV,1,300,02/26/19 07:13,"932 Park St, New York City, NY 10001" -161177,Bose SoundSport Headphones,2,99.99,02/01/19 17:45,"47 Cherry St, San Francisco, CA 94016" -161178,AA Batteries (4-pack),1,3.84,02/16/19 22:43,"262 Hickory St, New York City, NY 10001" -161179,Apple Airpods Headphones,1,150,02/25/19 09:52,"287 7th St, Seattle, WA 98101" -161180,27in 4K Gaming Monitor,1,389.99,02/12/19 07:07,"142 Madison St, Portland, ME 04101" -161181,AA Batteries (4-pack),1,3.84,02/25/19 18:21,"765 Elm St, San Francisco, CA 94016" -161182,Bose SoundSport Headphones,1,99.99,02/24/19 20:13,"44 Washington St, Atlanta, GA 30301" -161183,iPhone,1,700,02/14/19 15:08,"139 Dogwood St, San Francisco, CA 94016" -161183,ThinkPad Laptop,1,999.99,02/14/19 15:08,"139 Dogwood St, San Francisco, CA 94016" -161184,Bose SoundSport Headphones,1,99.99,02/04/19 15:09,"144 Adams St, San Francisco, CA 94016" -161185,Apple Airpods Headphones,1,150,02/12/19 17:57,"318 1st St, Boston, MA 02215" -161186,Google Phone,1,600,02/16/19 16:29,"94 Church St, San Francisco, CA 94016" -161187,AAA Batteries (4-pack),1,2.99,02/16/19 11:37,"586 Elm St, San Francisco, CA 94016" -,,,,, -161188,iPhone,1,700,02/14/19 20:30,"808 1st St, New York City, NY 10001" -161189,USB-C Charging Cable,1,11.95,02/27/19 16:30,"923 13th St, Los Angeles, CA 90001" -161190,USB-C Charging Cable,1,11.95,02/18/19 20:24,"688 Highland St, Boston, MA 02215" -161191,Wired Headphones,1,11.99,02/05/19 11:50,"807 Maple St, Atlanta, GA 30301" -161192,iPhone,1,700,02/22/19 21:45,"51 Adams St, Los Angeles, CA 90001" -161193,Wired Headphones,1,11.99,02/21/19 02:24,"703 6th St, San Francisco, CA 94016" -161194,Wired Headphones,1,11.99,02/12/19 19:44,"937 4th St, Atlanta, GA 30301" -161195,Apple Airpods Headphones,1,150,02/13/19 09:43,"946 Highland St, Seattle, WA 98101" -161196,AA Batteries (4-pack),1,3.84,02/07/19 15:31,"225 2nd St, Boston, MA 02215" -161197,AAA Batteries (4-pack),3,2.99,02/07/19 10:40,"104 Church St, San Francisco, CA 94016" -161198,Wired Headphones,1,11.99,02/08/19 10:11,"773 8th St, Los Angeles, CA 90001" -161199,Wired Headphones,1,11.99,02/15/19 11:04,"753 Church St, San Francisco, CA 94016" -161200,Bose SoundSport Headphones,1,99.99,02/28/19 18:24,"46 Cherry St, Atlanta, GA 30301" -161201,34in Ultrawide Monitor,1,379.99,02/04/19 19:28,"12 Madison St, San Francisco, CA 94016" -161202,Macbook Pro Laptop,1,1700,02/08/19 05:40,"464 Spruce St, New York City, NY 10001" -161203,Lightning Charging Cable,1,14.95,02/01/19 17:50,"41 Jackson St, San Francisco, CA 94016" -161204,USB-C Charging Cable,1,11.95,02/28/19 12:47,"775 10th St, Seattle, WA 98101" -161205,Apple Airpods Headphones,1,150,02/18/19 20:51,"542 River St, San Francisco, CA 94016" -161206,Apple Airpods Headphones,1,150,02/06/19 20:31,"756 6th St, Los Angeles, CA 90001" -161207,27in FHD Monitor,1,149.99,02/13/19 18:21,"209 13th St, Dallas, TX 75001" -161208,Lightning Charging Cable,1,14.95,02/25/19 16:43,"474 1st St, Dallas, TX 75001" -161209,USB-C Charging Cable,1,11.95,02/22/19 15:48,"388 Jefferson St, San Francisco, CA 94016" -161210,AA Batteries (4-pack),1,3.84,02/13/19 11:26,"210 Center St, Boston, MA 02215" -161211,iPhone,1,700,02/27/19 21:18,"703 Highland St, Dallas, TX 75001" -161212,iPhone,1,700,02/09/19 17:49,"60 Walnut St, Seattle, WA 98101" -161212,Lightning Charging Cable,1,14.95,02/09/19 17:49,"60 Walnut St, Seattle, WA 98101" -161213,Apple Airpods Headphones,1,150,02/10/19 15:39,"562 12th St, San Francisco, CA 94016" -161214,AAA Batteries (4-pack),1,2.99,02/06/19 13:50,"359 Meadow St, New York City, NY 10001" -161215,iPhone,1,700,02/02/19 19:13,"191 Wilson St, Atlanta, GA 30301" -161216,Macbook Pro Laptop,1,1700,02/28/19 20:02,"414 Sunset St, Los Angeles, CA 90001" -161217,Flatscreen TV,1,300,02/14/19 21:11,"665 Cedar St, San Francisco, CA 94016" -161218,Lightning Charging Cable,1,14.95,02/24/19 20:53,"181 Main St, Dallas, TX 75001" -161219,Flatscreen TV,1,300,02/17/19 18:15,"500 Center St, Boston, MA 02215" -161220,Google Phone,1,600,02/12/19 23:21,"560 1st St, Dallas, TX 75001" -161220,USB-C Charging Cable,1,11.95,02/12/19 23:21,"560 1st St, Dallas, TX 75001" -161221,AA Batteries (4-pack),2,3.84,02/26/19 09:38,"300 Washington St, Los Angeles, CA 90001" -161222,Bose SoundSport Headphones,1,99.99,02/20/19 12:55,"469 Elm St, Los Angeles, CA 90001" -161223,Apple Airpods Headphones,1,150,02/06/19 19:28,"225 Lake St, Boston, MA 02215" -161224,USB-C Charging Cable,3,11.95,02/22/19 12:15,"824 8th St, Los Angeles, CA 90001" -161225,Vareebadd Phone,1,400,02/16/19 21:13,"285 Lakeview St, San Francisco, CA 94016" -161226,Bose SoundSport Headphones,1,99.99,02/03/19 10:40,"571 Cedar St, Austin, TX 73301" -161227,Bose SoundSport Headphones,1,99.99,02/02/19 00:12,"731 Spruce St, Austin, TX 73301" -161228,AA Batteries (4-pack),1,3.84,02/28/19 19:27,"279 Forest St, New York City, NY 10001" -161229,Lightning Charging Cable,1,14.95,02/28/19 03:09,"623 Park St, San Francisco, CA 94016" -161230,Vareebadd Phone,1,400,02/11/19 22:08,"693 Adams St, New York City, NY 10001" -161231,Lightning Charging Cable,1,14.95,02/10/19 11:12,"3 Wilson St, San Francisco, CA 94016" -161232,USB-C Charging Cable,1,11.95,02/20/19 13:10,"110 Park St, Atlanta, GA 30301" -161233,Wired Headphones,1,11.99,02/12/19 15:53,"530 Jackson St, Atlanta, GA 30301" -161234,USB-C Charging Cable,1,11.95,02/04/19 00:02,"418 Spruce St, New York City, NY 10001" -161235,USB-C Charging Cable,1,11.95,02/15/19 05:01,"759 West St, Atlanta, GA 30301" -161236,Flatscreen TV,1,300,02/19/19 13:10,"492 12th St, Atlanta, GA 30301" -161237,Wired Headphones,1,11.99,02/01/19 14:09,"121 2nd St, Boston, MA 02215" -161238,USB-C Charging Cable,1,11.95,02/25/19 17:13,"420 Spruce St, Seattle, WA 98101" -161239,ThinkPad Laptop,1,999.99,02/03/19 15:32,"797 Washington St, San Francisco, CA 94016" -161240,Lightning Charging Cable,1,14.95,02/14/19 23:56,"173 7th St, New York City, NY 10001" -161241,Lightning Charging Cable,2,14.95,02/18/19 12:11,"409 Center St, Los Angeles, CA 90001" -161242,Wired Headphones,1,11.99,02/17/19 08:06,"56 12th St, New York City, NY 10001" -161243,USB-C Charging Cable,1,11.95,02/08/19 12:50,"79 Cedar St, Los Angeles, CA 90001" -161244,Bose SoundSport Headphones,1,99.99,02/13/19 12:43,"893 2nd St, New York City, NY 10001" -161244,USB-C Charging Cable,1,11.95,02/13/19 12:43,"893 2nd St, New York City, NY 10001" -161245,AAA Batteries (4-pack),1,2.99,02/06/19 09:01,"404 North St, San Francisco, CA 94016" -161246,Lightning Charging Cable,1,14.95,02/27/19 21:21,"610 West St, Portland, OR 97035" -161247,34in Ultrawide Monitor,1,379.99,02/18/19 09:43,"669 11th St, Boston, MA 02215" -161248,AA Batteries (4-pack),1,3.84,02/25/19 21:04,"380 8th St, Atlanta, GA 30301" -161249,Bose SoundSport Headphones,1,99.99,02/25/19 16:43,"525 Meadow St, Los Angeles, CA 90001" -161250,Lightning Charging Cable,1,14.95,02/28/19 13:04,"676 Highland St, San Francisco, CA 94016" -161251,LG Washing Machine,1,600.0,02/08/19 14:38,"282 Cedar St, San Francisco, CA 94016" -161252,USB-C Charging Cable,1,11.95,02/15/19 21:16,"813 1st St, Atlanta, GA 30301" -161253,AAA Batteries (4-pack),3,2.99,02/14/19 21:09,"409 Lincoln St, Los Angeles, CA 90001" -161254,Google Phone,1,600,02/25/19 18:56,"790 14th St, Seattle, WA 98101" -161255,USB-C Charging Cable,1,11.95,02/16/19 12:40,"85 Sunset St, Atlanta, GA 30301" -161256,Macbook Pro Laptop,1,1700,02/06/19 18:46,"516 Walnut St, Los Angeles, CA 90001" -161257,Lightning Charging Cable,1,14.95,02/21/19 12:45,"208 11th St, Dallas, TX 75001" -161258,AAA Batteries (4-pack),1,2.99,02/06/19 00:54,"640 Chestnut St, Austin, TX 73301" -161259,AA Batteries (4-pack),1,3.84,02/22/19 18:01,"365 Pine St, Portland, OR 97035" -161260,AAA Batteries (4-pack),1,2.99,02/15/19 19:48,"916 12th St, Atlanta, GA 30301" -161261,Macbook Pro Laptop,1,1700,02/25/19 14:24,"976 Lake St, Los Angeles, CA 90001" -161262,Google Phone,1,600,02/09/19 15:05,"471 7th St, Boston, MA 02215" -161263,Bose SoundSport Headphones,1,99.99,02/01/19 19:20,"819 Main St, Atlanta, GA 30301" -161263,AAA Batteries (4-pack),2,2.99,02/01/19 19:20,"819 Main St, Atlanta, GA 30301" -161264,USB-C Charging Cable,1,11.95,02/25/19 18:21,"395 Jefferson St, San Francisco, CA 94016" -161265,Apple Airpods Headphones,1,150,02/08/19 15:16,"629 10th St, Boston, MA 02215" -161266,Lightning Charging Cable,1,14.95,02/11/19 18:57,"411 Dogwood St, Los Angeles, CA 90001" -161267,34in Ultrawide Monitor,1,379.99,02/18/19 18:40,"155 Willow St, Dallas, TX 75001" -161268,Wired Headphones,1,11.99,02/05/19 20:02,"497 Pine St, New York City, NY 10001" -161269,Wired Headphones,2,11.99,02/27/19 12:43,"650 Hill St, San Francisco, CA 94016" -161270,Flatscreen TV,1,300,02/05/19 20:51,"590 9th St, Portland, OR 97035" -161271,Apple Airpods Headphones,1,150,02/16/19 06:06,"85 Walnut St, Atlanta, GA 30301" -161272,Wired Headphones,2,11.99,02/14/19 10:02,"579 Lakeview St, Seattle, WA 98101" -161273,AA Batteries (4-pack),1,3.84,02/24/19 23:14,"538 Johnson St, Seattle, WA 98101" -161274,AA Batteries (4-pack),1,3.84,02/27/19 22:57,"125 Forest St, San Francisco, CA 94016" -161275,Lightning Charging Cable,1,14.95,02/28/19 13:02,"784 River St, New York City, NY 10001" -161276,AAA Batteries (4-pack),2,2.99,02/04/19 17:20,"230 Johnson St, Los Angeles, CA 90001" -161277,USB-C Charging Cable,2,11.95,02/26/19 20:13,"374 Forest St, Los Angeles, CA 90001" -161278,LG Washing Machine,1,600.0,02/26/19 19:11,"950 2nd St, Los Angeles, CA 90001" -161279,Apple Airpods Headphones,1,150,02/19/19 17:00,"167 Ridge St, New York City, NY 10001" -161280,Lightning Charging Cable,1,14.95,02/22/19 11:58,"638 Cedar St, New York City, NY 10001" -161281,Lightning Charging Cable,2,14.95,02/22/19 19:36,"821 Walnut St, Los Angeles, CA 90001" -161282,iPhone,1,700,02/16/19 19:47,"811 Willow St, San Francisco, CA 94016" -161282,Wired Headphones,1,11.99,02/16/19 19:47,"811 Willow St, San Francisco, CA 94016" -161283,27in FHD Monitor,1,149.99,02/24/19 00:25,"404 Center St, Los Angeles, CA 90001" -161284,AAA Batteries (4-pack),1,2.99,02/18/19 12:05,"866 North St, San Francisco, CA 94016" -161285,Macbook Pro Laptop,1,1700,02/20/19 17:33,"110 Spruce St, San Francisco, CA 94016" -161286,27in 4K Gaming Monitor,1,389.99,02/01/19 15:42,"594 9th St, Dallas, TX 75001" -161287,AAA Batteries (4-pack),3,2.99,02/28/19 08:10,"11 10th St, Portland, OR 97035" -161288,Apple Airpods Headphones,1,150,02/18/19 20:05,"177 North St, Los Angeles, CA 90001" -161289,USB-C Charging Cable,1,11.95,02/08/19 22:19,"760 Jackson St, San Francisco, CA 94016" -161290,Lightning Charging Cable,1,14.95,02/27/19 02:50,"940 Cherry St, San Francisco, CA 94016" -161291,Bose SoundSport Headphones,1,99.99,02/04/19 16:56,"392 Sunset St, Dallas, TX 75001" -161292,Flatscreen TV,1,300,02/24/19 21:10,"149 4th St, New York City, NY 10001" -161293,Apple Airpods Headphones,1,150,02/27/19 14:01,"730 Lakeview St, San Francisco, CA 94016" -161294,AAA Batteries (4-pack),1,2.99,02/14/19 12:16,"225 2nd St, Boston, MA 02215" -161295,27in FHD Monitor,1,149.99,02/07/19 09:57,"482 Maple St, New York City, NY 10001" -161296,Lightning Charging Cable,1,14.95,02/11/19 15:48,"270 Highland St, Seattle, WA 98101" -161297,USB-C Charging Cable,1,11.95,02/26/19 01:57,"694 Cherry St, Seattle, WA 98101" -161298,AA Batteries (4-pack),2,3.84,02/05/19 07:07,"300 Cherry St, San Francisco, CA 94016" -161299,AA Batteries (4-pack),1,3.84,02/23/19 14:41,"256 Church St, San Francisco, CA 94016" -161300,AAA Batteries (4-pack),2,2.99,02/19/19 10:39,"887 Hill St, Los Angeles, CA 90001" -161301,Apple Airpods Headphones,1,150,02/01/19 13:36,"276 Forest St, San Francisco, CA 94016" -161302,USB-C Charging Cable,1,11.95,02/24/19 22:42,"581 Dogwood St, Los Angeles, CA 90001" -161303,AA Batteries (4-pack),1,3.84,02/12/19 13:57,"970 14th St, Dallas, TX 75001" -161304,Lightning Charging Cable,1,14.95,02/22/19 10:15,"556 Sunset St, Los Angeles, CA 90001" -161305,Apple Airpods Headphones,1,150,02/03/19 19:00,"589 9th St, San Francisco, CA 94016" -161306,USB-C Charging Cable,1,11.95,02/25/19 21:49,"592 Lakeview St, Portland, OR 97035" -161307,Lightning Charging Cable,1,14.95,02/15/19 08:38,"196 13th St, Los Angeles, CA 90001" -161308,USB-C Charging Cable,1,11.95,02/15/19 01:10,"666 Chestnut St, Dallas, TX 75001" -161309,Wired Headphones,1,11.99,02/25/19 10:49,"331 Jackson St, Portland, OR 97035" -161310,USB-C Charging Cable,1,11.95,02/15/19 18:47,"316 Elm St, New York City, NY 10001" -161311,27in 4K Gaming Monitor,1,389.99,02/14/19 15:44,"770 Maple St, Boston, MA 02215" -161312,AA Batteries (4-pack),1,3.84,02/28/19 13:17,"645 Highland St, Portland, OR 97035" -161313,AAA Batteries (4-pack),1,2.99,02/19/19 11:02,"145 Madison St, San Francisco, CA 94016" -161313,Apple Airpods Headphones,1,150,02/19/19 11:02,"145 Madison St, San Francisco, CA 94016" -161314,Wired Headphones,1,11.99,02/08/19 10:26,"794 8th St, Austin, TX 73301" -161314,Lightning Charging Cable,1,14.95,02/08/19 10:26,"794 8th St, Austin, TX 73301" -161315,iPhone,1,700,02/02/19 11:56,"614 9th St, Seattle, WA 98101" -161316,27in FHD Monitor,1,149.99,02/06/19 10:11,"990 14th St, New York City, NY 10001" -161317,Wired Headphones,1,11.99,02/23/19 13:32,"185 Highland St, Atlanta, GA 30301" -161318,USB-C Charging Cable,1,11.95,02/20/19 08:02,"819 Willow St, New York City, NY 10001" -161319,Macbook Pro Laptop,1,1700,02/22/19 11:48,"962 Ridge St, San Francisco, CA 94016" -161320,AA Batteries (4-pack),1,3.84,02/14/19 19:44,"424 Sunset St, Los Angeles, CA 90001" -161321,27in FHD Monitor,1,149.99,02/02/19 07:24,"812 Madison St, Los Angeles, CA 90001" -161322,Wired Headphones,2,11.99,02/03/19 09:48,"322 14th St, Dallas, TX 75001" -161323,AA Batteries (4-pack),1,3.84,02/21/19 17:20,"131 Adams St, Atlanta, GA 30301" -161324,27in FHD Monitor,1,149.99,02/26/19 16:16,"10 Chestnut St, Los Angeles, CA 90001" -161325,27in 4K Gaming Monitor,1,389.99,02/20/19 16:58,"456 Lincoln St, Boston, MA 02215" -161325,20in Monitor,1,109.99,02/20/19 16:58,"456 Lincoln St, Boston, MA 02215" -161326,Apple Airpods Headphones,1,150,02/05/19 16:36,"37 West St, Los Angeles, CA 90001" -161327,USB-C Charging Cable,1,11.95,02/11/19 11:04,"60 Cherry St, Dallas, TX 75001" -161328,iPhone,1,700,02/22/19 14:51,"775 8th St, San Francisco, CA 94016" -161329,AAA Batteries (4-pack),1,2.99,02/17/19 08:31,"309 Center St, Seattle, WA 98101" -161330,iPhone,1,700,02/18/19 18:37,"264 Ridge St, San Francisco, CA 94016" -161331,AA Batteries (4-pack),1,3.84,02/01/19 08:57,"358 Lakeview St, Dallas, TX 75001" -161332,Lightning Charging Cable,1,14.95,02/05/19 21:11,"123 Willow St, San Francisco, CA 94016" -161333,AAA Batteries (4-pack),1,2.99,02/11/19 17:12,"958 Dogwood St, San Francisco, CA 94016" -161334,ThinkPad Laptop,1,999.99,02/07/19 15:21,"670 Johnson St, Los Angeles, CA 90001" -161335,AAA Batteries (4-pack),1,2.99,02/19/19 14:40,"442 Lake St, Boston, MA 02215" -161336,Apple Airpods Headphones,1,150,02/02/19 11:05,"979 Cedar St, New York City, NY 10001" -161337,20in Monitor,1,109.99,02/27/19 22:33,"127 Johnson St, New York City, NY 10001" -161337,Lightning Charging Cable,1,14.95,02/27/19 22:33,"127 Johnson St, New York City, NY 10001" -161338,Apple Airpods Headphones,1,150,02/09/19 19:36,"946 10th St, Atlanta, GA 30301" -161339,Wired Headphones,1,11.99,02/15/19 16:19,"165 Forest St, Boston, MA 02215" -161340,AAA Batteries (4-pack),1,2.99,02/08/19 21:38,"367 9th St, Los Angeles, CA 90001" -161341,ThinkPad Laptop,1,999.99,02/21/19 00:04,"949 Washington St, Boston, MA 02215" -161342,Lightning Charging Cable,1,14.95,02/05/19 15:01,"632 Park St, Portland, OR 97035" -161343,AA Batteries (4-pack),2,3.84,02/22/19 22:59,"644 Adams St, San Francisco, CA 94016" -161344,27in FHD Monitor,1,149.99,02/20/19 13:14,"389 South St, Atlanta, GA 30301" -161345,USB-C Charging Cable,1,11.95,02/02/19 18:44,"689 Jefferson St, Dallas, TX 75001" -161346,AAA Batteries (4-pack),1,2.99,02/15/19 13:22,"610 Walnut St, Los Angeles, CA 90001" -161347,AAA Batteries (4-pack),2,2.99,02/10/19 09:38,"765 10th St, Seattle, WA 98101" -161348,AAA Batteries (4-pack),2,2.99,02/19/19 16:56,"448 Ridge St, San Francisco, CA 94016" -161349,AAA Batteries (4-pack),1,2.99,02/07/19 17:11,"952 Maple St, Austin, TX 73301" -161350,Apple Airpods Headphones,1,150,02/15/19 20:19,"405 Jackson St, Portland, OR 97035" -161351,Flatscreen TV,1,300,02/19/19 15:10,"103 Park St, Los Angeles, CA 90001" -161352,Apple Airpods Headphones,1,150,02/12/19 20:12,"217 Johnson St, Dallas, TX 75001" -161353,USB-C Charging Cable,2,11.95,02/07/19 11:12,"220 Hickory St, Austin, TX 73301" -161354,USB-C Charging Cable,1,11.95,02/28/19 10:21,"955 Meadow St, Seattle, WA 98101" -161355,20in Monitor,1,109.99,02/13/19 15:24,"195 Cherry St, San Francisco, CA 94016" -161356,Lightning Charging Cable,1,14.95,02/23/19 13:57,"351 Spruce St, Seattle, WA 98101" -161357,Google Phone,1,600,02/14/19 10:16,"819 Sunset St, Austin, TX 73301" -161358,Apple Airpods Headphones,1,150,02/21/19 07:59,"20 Hill St, Portland, OR 97035" -161359,USB-C Charging Cable,1,11.95,02/17/19 09:18,"7 Madison St, San Francisco, CA 94016" -161360,Bose SoundSport Headphones,1,99.99,02/05/19 19:16,"632 Hickory St, Boston, MA 02215" -161361,Wired Headphones,1,11.99,02/18/19 20:12,"756 11th St, Boston, MA 02215" -161362,iPhone,1,700,02/16/19 12:57,"235 River St, San Francisco, CA 94016" -161363,27in 4K Gaming Monitor,1,389.99,02/24/19 10:57,"357 River St, San Francisco, CA 94016" -161364,Wired Headphones,1,11.99,02/11/19 23:42,"182 Hickory St, Dallas, TX 75001" -161365,Lightning Charging Cable,1,14.95,02/18/19 13:00,"279 6th St, Atlanta, GA 30301" -161366,USB-C Charging Cable,1,11.95,02/20/19 23:04,"958 Pine St, San Francisco, CA 94016" -161367,Bose SoundSport Headphones,1,99.99,02/12/19 18:02,"238 Meadow St, Atlanta, GA 30301" -161368,Macbook Pro Laptop,1,1700,02/14/19 21:27,"443 Center St, Portland, OR 97035" -161369,USB-C Charging Cable,1,11.95,02/12/19 18:19,"226 Main St, Dallas, TX 75001" -161370,34in Ultrawide Monitor,1,379.99,02/26/19 11:11,"365 Adams St, San Francisco, CA 94016" -161371,Lightning Charging Cable,1,14.95,02/13/19 17:39,"841 Johnson St, San Francisco, CA 94016" -161372,USB-C Charging Cable,1,11.95,02/28/19 15:56,"944 Cedar St, New York City, NY 10001" -161373,USB-C Charging Cable,1,11.95,02/10/19 08:23,"236 Dogwood St, Boston, MA 02215" -161374,USB-C Charging Cable,1,11.95,02/23/19 08:58,"782 Walnut St, Seattle, WA 98101" -161375,ThinkPad Laptop,1,999.99,02/13/19 10:46,"925 Cedar St, San Francisco, CA 94016" -161376,27in 4K Gaming Monitor,1,389.99,02/08/19 16:44,"780 2nd St, Boston, MA 02215" -161377,Apple Airpods Headphones,1,150,02/09/19 08:49,"532 1st St, New York City, NY 10001" -161378,iPhone,1,700,02/01/19 13:09,"740 13th St, New York City, NY 10001" -161379,Bose SoundSport Headphones,1,99.99,02/03/19 17:56,"642 Hickory St, Austin, TX 73301" -161380,USB-C Charging Cable,1,11.95,02/11/19 23:37,"697 4th St, Austin, TX 73301" -161381,AA Batteries (4-pack),2,3.84,02/01/19 21:58,"141 1st St, Atlanta, GA 30301" -161382,AAA Batteries (4-pack),1,2.99,02/18/19 11:56,"421 Cedar St, San Francisco, CA 94016" -161383,AA Batteries (4-pack),2,3.84,02/24/19 12:49,"77 2nd St, Los Angeles, CA 90001" -161384,Bose SoundSport Headphones,1,99.99,02/05/19 18:52,"79 2nd St, Atlanta, GA 30301" -161385,Wired Headphones,1,11.99,02/11/19 14:32,"991 13th St, Los Angeles, CA 90001" -161386,USB-C Charging Cable,1,11.95,02/09/19 22:06,"930 7th St, Seattle, WA 98101" -161387,Wired Headphones,1,11.99,02/22/19 22:53,"363 Cherry St, San Francisco, CA 94016" -161388,Google Phone,1,600,02/05/19 11:37,"382 Chestnut St, Austin, TX 73301" -161389,Flatscreen TV,1,300,02/06/19 18:40,"765 14th St, Dallas, TX 75001" -161390,34in Ultrawide Monitor,1,379.99,02/08/19 22:04,"894 9th St, New York City, NY 10001" -161391,Lightning Charging Cable,1,14.95,02/01/19 18:21,"91 Sunset St, Austin, TX 73301" -161392,AA Batteries (4-pack),2,3.84,02/13/19 21:08,"448 9th St, Los Angeles, CA 90001" -161393,27in FHD Monitor,1,149.99,02/22/19 20:43,"339 Meadow St, New York City, NY 10001" -,,,,, -161394,LG Dryer,1,600.0,02/11/19 10:07,"238 Lakeview St, Los Angeles, CA 90001" -161395,27in FHD Monitor,1,149.99,02/22/19 15:47,"403 Forest St, New York City, NY 10001" -161396,34in Ultrawide Monitor,1,379.99,02/19/19 05:43,"828 Spruce St, Seattle, WA 98101" -161396,Wired Headphones,1,11.99,02/19/19 05:43,"828 Spruce St, Seattle, WA 98101" -161397,Lightning Charging Cable,1,14.95,02/24/19 10:30,"319 12th St, San Francisco, CA 94016" -161398,Wired Headphones,1,11.99,02/09/19 12:04,"963 Center St, New York City, NY 10001" -161399,27in FHD Monitor,1,149.99,02/18/19 11:33,"207 Jackson St, San Francisco, CA 94016" -161400,AAA Batteries (4-pack),2,2.99,02/17/19 13:51,"170 6th St, Boston, MA 02215" -161401,USB-C Charging Cable,1,11.95,02/09/19 15:13,"337 Cherry St, Boston, MA 02215" -161402,Macbook Pro Laptop,1,1700,02/21/19 03:38,"607 8th St, San Francisco, CA 94016" -161403,Lightning Charging Cable,1,14.95,02/12/19 10:18,"294 Madison St, Los Angeles, CA 90001" -161404,27in FHD Monitor,1,149.99,02/26/19 18:15,"846 5th St, Los Angeles, CA 90001" -161405,Vareebadd Phone,1,400,02/13/19 13:59,"994 Cherry St, Dallas, TX 75001" -161405,Bose SoundSport Headphones,1,99.99,02/13/19 13:59,"994 Cherry St, Dallas, TX 75001" -161406,27in FHD Monitor,1,149.99,02/09/19 14:35,"53 Johnson St, Los Angeles, CA 90001" -161407,AA Batteries (4-pack),1,3.84,02/14/19 21:57,"883 Elm St, San Francisco, CA 94016" -161408,AAA Batteries (4-pack),1,2.99,02/24/19 17:36,"930 Hickory St, Dallas, TX 75001" -161409,Wired Headphones,1,11.99,02/17/19 14:14,"943 Johnson St, San Francisco, CA 94016" -161410,USB-C Charging Cable,1,11.95,02/24/19 18:24,"691 Jackson St, Atlanta, GA 30301" -161411,20in Monitor,1,109.99,02/10/19 17:38,"452 Cherry St, Atlanta, GA 30301" -161412,Google Phone,1,600,02/01/19 16:52,"743 7th St, Dallas, TX 75001" -161412,USB-C Charging Cable,1,11.95,02/01/19 16:52,"743 7th St, Dallas, TX 75001" -161413,Wired Headphones,1,11.99,02/26/19 21:15,"748 Hill St, Seattle, WA 98101" -161414,Lightning Charging Cable,1,14.95,02/07/19 10:39,"972 Church St, San Francisco, CA 94016" -161415,Lightning Charging Cable,1,14.95,02/13/19 10:50,"812 Lakeview St, Dallas, TX 75001" -161416,AA Batteries (4-pack),1,3.84,02/04/19 21:43,"231 Ridge St, Boston, MA 02215" -161417,USB-C Charging Cable,1,11.95,02/24/19 22:51,"190 Center St, New York City, NY 10001" -161418,AA Batteries (4-pack),2,3.84,02/26/19 21:51,"751 Maple St, Boston, MA 02215" -161419,Flatscreen TV,1,300,02/07/19 21:53,"994 Chestnut St, Dallas, TX 75001" -161420,Flatscreen TV,1,300,02/26/19 19:04,"308 2nd St, Boston, MA 02215" -161421,AA Batteries (4-pack),1,3.84,02/09/19 08:47,"10 14th St, Seattle, WA 98101" -161422,Wired Headphones,1,11.99,02/26/19 13:08,"32 Main St, San Francisco, CA 94016" -161423,34in Ultrawide Monitor,1,379.99,02/22/19 11:04,"393 Johnson St, San Francisco, CA 94016" -161424,ThinkPad Laptop,1,999.99,02/26/19 22:27,"538 Highland St, Los Angeles, CA 90001" -161425,Flatscreen TV,1,300,02/06/19 15:01,"511 Jackson St, Austin, TX 73301" -161426,Wired Headphones,1,11.99,02/21/19 06:40,"389 Willow St, San Francisco, CA 94016" -161427,Lightning Charging Cable,1,14.95,02/23/19 19:53,"55 9th St, Seattle, WA 98101" -161428,Lightning Charging Cable,2,14.95,02/15/19 10:17,"884 Spruce St, Los Angeles, CA 90001" -161429,USB-C Charging Cable,1,11.95,02/15/19 10:40,"530 West St, Los Angeles, CA 90001" -161430,Wired Headphones,1,11.99,02/24/19 11:22,"103 Sunset St, Atlanta, GA 30301" -161431,AA Batteries (4-pack),2,3.84,02/28/19 08:28,"240 Walnut St, Los Angeles, CA 90001" -161432,Flatscreen TV,1,300,02/24/19 15:24,"130 Walnut St, San Francisco, CA 94016" -161433,AAA Batteries (4-pack),1,2.99,02/08/19 15:20,"914 Lake St, Austin, TX 73301" -161434,Wired Headphones,1,11.99,02/16/19 21:17,"42 Park St, Dallas, TX 75001" -161435,34in Ultrawide Monitor,1,379.99,02/01/19 18:42,"729 South St, Boston, MA 02215" -161436,Lightning Charging Cable,1,14.95,02/16/19 19:41,"563 Jackson St, Los Angeles, CA 90001" -161437,AA Batteries (4-pack),1,3.84,02/06/19 23:06,"741 Pine St, San Francisco, CA 94016" -161438,AAA Batteries (4-pack),1,2.99,02/25/19 18:01,"673 Dogwood St, Dallas, TX 75001" -161439,Lightning Charging Cable,1,14.95,02/02/19 17:19,"953 5th St, San Francisco, CA 94016" -161440,AAA Batteries (4-pack),1,2.99,02/12/19 16:25,"832 Highland St, Portland, OR 97035" -161441,Google Phone,1,600,02/17/19 15:42,"962 Hickory St, New York City, NY 10001" -161441,Wired Headphones,1,11.99,02/17/19 15:42,"962 Hickory St, New York City, NY 10001" -161442,27in FHD Monitor,1,149.99,02/26/19 15:14,"960 North St, San Francisco, CA 94016" -161443,34in Ultrawide Monitor,1,379.99,02/17/19 09:31,"409 Pine St, New York City, NY 10001" -161444,Macbook Pro Laptop,1,1700,02/16/19 17:23,"95 West St, New York City, NY 10001" -161445,AAA Batteries (4-pack),1,2.99,02/08/19 19:57,"677 Willow St, San Francisco, CA 94016" -161446,Lightning Charging Cable,1,14.95,02/06/19 14:58,"191 10th St, Dallas, TX 75001" -161447,Apple Airpods Headphones,1,150,02/28/19 19:27,"961 12th St, San Francisco, CA 94016" -161448,Bose SoundSport Headphones,1,99.99,02/02/19 10:36,"794 Sunset St, Portland, ME 04101" -161449,34in Ultrawide Monitor,1,379.99,02/18/19 17:36,"596 Lake St, Dallas, TX 75001" -161450,Flatscreen TV,1,300,02/28/19 15:54,"423 Church St, San Francisco, CA 94016" -161451,AA Batteries (4-pack),1,3.84,02/12/19 17:47,"750 4th St, Portland, OR 97035" -161452,Wired Headphones,1,11.99,02/10/19 09:42,"870 11th St, Dallas, TX 75001" -161453,Apple Airpods Headphones,1,150,02/26/19 20:26,"281 5th St, Boston, MA 02215" -161453,Wired Headphones,1,11.99,02/26/19 20:26,"281 5th St, Boston, MA 02215" -161454,USB-C Charging Cable,1,11.95,02/21/19 10:35,"796 West St, San Francisco, CA 94016" -161455,Wired Headphones,1,11.99,02/28/19 00:32,"562 1st St, San Francisco, CA 94016" -161456,AAA Batteries (4-pack),1,2.99,02/18/19 15:15,"7 Jefferson St, Seattle, WA 98101" -161457,Wired Headphones,1,11.99,02/19/19 10:52,"275 5th St, Boston, MA 02215" -161458,27in 4K Gaming Monitor,1,389.99,02/15/19 18:48,"805 Spruce St, New York City, NY 10001" -161459,USB-C Charging Cable,1,11.95,02/13/19 17:52,"968 River St, Dallas, TX 75001" -161460,Vareebadd Phone,1,400,02/28/19 00:06,"780 Jackson St, San Francisco, CA 94016" -161461,Wired Headphones,1,11.99,02/15/19 16:19,"243 Hickory St, San Francisco, CA 94016" -161462,USB-C Charging Cable,1,11.95,02/06/19 10:35,"950 Church St, Seattle, WA 98101" -161463,Wired Headphones,1,11.99,02/24/19 13:05,"390 River St, Los Angeles, CA 90001" -161464,Wired Headphones,1,11.99,02/06/19 11:04,"175 11th St, Portland, OR 97035" -161465,Lightning Charging Cable,1,14.95,02/21/19 08:05,"101 Park St, San Francisco, CA 94016" -161466,34in Ultrawide Monitor,1,379.99,02/16/19 11:55,"930 Chestnut St, Boston, MA 02215" -161467,Google Phone,1,600,02/06/19 14:31,"613 7th St, Portland, OR 97035" -,,,,, -161468,Apple Airpods Headphones,1,150,02/20/19 05:57,"521 Willow St, Seattle, WA 98101" -161469,AAA Batteries (4-pack),3,2.99,02/01/19 18:05,"356 Pine St, San Francisco, CA 94016" -161470,Google Phone,1,600,02/18/19 13:35,"568 Center St, San Francisco, CA 94016" -161471,LG Washing Machine,1,600.0,02/09/19 09:35,"592 Madison St, Dallas, TX 75001" -161472,AAA Batteries (4-pack),1,2.99,02/25/19 05:38,"750 Ridge St, Los Angeles, CA 90001" -161473,AA Batteries (4-pack),1,3.84,02/22/19 14:32,"394 Ridge St, Atlanta, GA 30301" -161474,Wired Headphones,1,11.99,02/27/19 15:00,"925 5th St, San Francisco, CA 94016" -161475,AAA Batteries (4-pack),2,2.99,02/17/19 00:07,"36 Wilson St, San Francisco, CA 94016" -161476,AA Batteries (4-pack),1,3.84,02/12/19 00:11,"389 Adams St, Portland, OR 97035" -161477,Wired Headphones,1,11.99,02/22/19 11:19,"50 Washington St, San Francisco, CA 94016" -161477,Lightning Charging Cable,1,14.95,02/22/19 11:19,"50 Washington St, San Francisco, CA 94016" -161478,AA Batteries (4-pack),1,3.84,02/15/19 09:12,"44 Main St, Dallas, TX 75001" -161479,Apple Airpods Headphones,1,150,02/17/19 17:59,"436 Hill St, San Francisco, CA 94016" -161480,iPhone,1,700,02/14/19 18:49,"426 Hickory St, Boston, MA 02215" -161480,Lightning Charging Cable,1,14.95,02/14/19 18:49,"426 Hickory St, Boston, MA 02215" -161481,AAA Batteries (4-pack),1,2.99,02/28/19 13:17,"787 Jefferson St, Los Angeles, CA 90001" -161482,Bose SoundSport Headphones,1,99.99,02/01/19 17:00,"987 Walnut St, Boston, MA 02215" -161483,iPhone,1,700,02/19/19 09:07,"283 1st St, Los Angeles, CA 90001" -161484,27in FHD Monitor,1,149.99,02/09/19 02:37,"827 Lakeview St, San Francisco, CA 94016" -161485,Bose SoundSport Headphones,1,99.99,02/21/19 14:33,"897 River St, New York City, NY 10001" -161486,AA Batteries (4-pack),1,3.84,02/03/19 21:16,"847 2nd St, Los Angeles, CA 90001" -161487,AAA Batteries (4-pack),1,2.99,02/07/19 22:24,"615 5th St, Dallas, TX 75001" -161488,AAA Batteries (4-pack),2,2.99,02/15/19 19:11,"754 5th St, Los Angeles, CA 90001" -161489,USB-C Charging Cable,1,11.95,02/18/19 23:29,"433 West St, Boston, MA 02215" -161490,Flatscreen TV,1,300,02/28/19 08:32,"184 Maple St, Atlanta, GA 30301" -161491,Wired Headphones,1,11.99,02/15/19 08:36,"640 Dogwood St, New York City, NY 10001" -161492,AAA Batteries (4-pack),1,2.99,02/07/19 05:50,"627 8th St, Austin, TX 73301" -161493,Lightning Charging Cable,1,14.95,02/09/19 08:48,"803 13th St, Seattle, WA 98101" -161494,Wired Headphones,1,11.99,02/07/19 12:37,"962 Pine St, New York City, NY 10001" -161495,27in FHD Monitor,1,149.99,02/21/19 10:45,"293 2nd St, Los Angeles, CA 90001" -161496,Lightning Charging Cable,1,14.95,02/19/19 16:43,"828 Hill St, Portland, OR 97035" -161497,Apple Airpods Headphones,1,150,02/26/19 19:51,"567 6th St, Los Angeles, CA 90001" -161498,USB-C Charging Cable,1,11.95,02/16/19 10:50,"748 6th St, Portland, OR 97035" -161499,USB-C Charging Cable,1,11.95,02/24/19 20:20,"157 8th St, San Francisco, CA 94016" -161500,Bose SoundSport Headphones,1,99.99,02/05/19 19:23,"375 11th St, Portland, OR 97035" -161501,AAA Batteries (4-pack),1,2.99,02/12/19 21:00,"530 4th St, Dallas, TX 75001" -161502,Google Phone,1,600,02/22/19 14:27,"679 Chestnut St, Dallas, TX 75001" -161503,Apple Airpods Headphones,1,150,02/11/19 23:39,"270 River St, Los Angeles, CA 90001" -161504,AAA Batteries (4-pack),3,2.99,02/02/19 19:57,"674 Hickory St, Portland, ME 04101" -161505,Google Phone,1,600,02/03/19 15:32,"791 Spruce St, Atlanta, GA 30301" -161505,Bose SoundSport Headphones,1,99.99,02/03/19 15:32,"791 Spruce St, Atlanta, GA 30301" -161506,Wired Headphones,1,11.99,02/06/19 12:47,"800 Cedar St, Los Angeles, CA 90001" -161507,Bose SoundSport Headphones,1,99.99,02/11/19 22:42,"5 2nd St, San Francisco, CA 94016" -161508,Lightning Charging Cable,1,14.95,02/06/19 10:24,"882 9th St, Atlanta, GA 30301" -161509,USB-C Charging Cable,1,11.95,02/28/19 14:49,"266 Johnson St, Austin, TX 73301" -161510,Apple Airpods Headphones,1,150,02/18/19 11:58,"986 Park St, San Francisco, CA 94016" -161511,Apple Airpods Headphones,1,150,02/24/19 15:49,"768 Main St, San Francisco, CA 94016" -161512,Macbook Pro Laptop,1,1700,02/20/19 20:24,"457 Church St, New York City, NY 10001" -161513,27in FHD Monitor,1,149.99,02/20/19 12:55,"251 Pine St, Atlanta, GA 30301" -161514,Wired Headphones,1,11.99,02/23/19 20:14,"928 11th St, San Francisco, CA 94016" -161515,USB-C Charging Cable,1,11.95,02/09/19 09:28,"564 11th St, San Francisco, CA 94016" -161516,Lightning Charging Cable,1,14.95,02/15/19 12:14,"497 10th St, Boston, MA 02215" -161517,AAA Batteries (4-pack),2,2.99,02/05/19 08:15,"874 Hickory St, Los Angeles, CA 90001" -161518,Lightning Charging Cable,1,14.95,02/28/19 13:13,"182 Lincoln St, Dallas, TX 75001" -161519,27in 4K Gaming Monitor,1,389.99,02/07/19 10:15,"773 Maple St, Portland, ME 04101" -161520,iPhone,1,700,02/27/19 16:56,"911 1st St, Los Angeles, CA 90001" -161521,USB-C Charging Cable,1,11.95,02/07/19 13:56,"426 Center St, New York City, NY 10001" -161522,Lightning Charging Cable,1,14.95,02/26/19 22:36,"441 9th St, Boston, MA 02215" -161523,Wired Headphones,1,11.99,02/12/19 20:31,"828 Lakeview St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -161524,AA Batteries (4-pack),1,3.84,02/22/19 08:17,"87 Jefferson St, New York City, NY 10001" -161525,20in Monitor,1,109.99,02/15/19 17:59,"986 9th St, Portland, OR 97035" -161526,USB-C Charging Cable,1,11.95,02/14/19 11:29,"577 Pine St, Austin, TX 73301" -161527,USB-C Charging Cable,1,11.95,02/13/19 20:15,"407 Hill St, Los Angeles, CA 90001" -161528,Wired Headphones,1,11.99,02/26/19 15:01,"962 Lincoln St, Boston, MA 02215" -161529,Lightning Charging Cable,1,14.95,02/24/19 19:41,"130 Hill St, Seattle, WA 98101" -161530,AA Batteries (4-pack),1,3.84,02/23/19 23:39,"637 Park St, Austin, TX 73301" -161531,AA Batteries (4-pack),1,3.84,02/16/19 13:48,"849 Jackson St, Los Angeles, CA 90001" -161532,USB-C Charging Cable,1,11.95,02/15/19 00:39,"49 Jefferson St, Austin, TX 73301" -161533,USB-C Charging Cable,1,11.95,02/14/19 10:36,"416 West St, San Francisco, CA 94016" -161534,AAA Batteries (4-pack),1,2.99,02/03/19 20:39,"906 Maple St, San Francisco, CA 94016" -161535,Wired Headphones,1,11.99,02/28/19 16:53,"379 Pine St, Los Angeles, CA 90001" -161536,Lightning Charging Cable,2,14.95,02/12/19 16:39,"916 Park St, San Francisco, CA 94016" -161537,Lightning Charging Cable,1,14.95,02/12/19 17:27,"720 South St, New York City, NY 10001" -161538,Lightning Charging Cable,1,14.95,02/20/19 19:11,"48 11th St, Atlanta, GA 30301" -161539,USB-C Charging Cable,2,11.95,02/28/19 19:34,"64 Pine St, Boston, MA 02215" -161540,20in Monitor,1,109.99,02/26/19 00:33,"465 Lake St, Portland, OR 97035" -161541,USB-C Charging Cable,1,11.95,02/14/19 12:04,"361 Cherry St, Boston, MA 02215" -161542,34in Ultrawide Monitor,1,379.99,02/19/19 18:05,"690 Church St, New York City, NY 10001" -161543,AA Batteries (4-pack),1,3.84,02/23/19 12:45,"929 6th St, New York City, NY 10001" -161544,Google Phone,1,600,02/12/19 15:35,"323 Cherry St, Austin, TX 73301" -161545,Apple Airpods Headphones,1,150,02/13/19 15:23,"114 Pine St, Boston, MA 02215" -161546,Lightning Charging Cable,1,14.95,02/16/19 05:52,"53 Madison St, New York City, NY 10001" -161547,USB-C Charging Cable,1,11.95,02/02/19 19:13,"25 13th St, Seattle, WA 98101" -161548,34in Ultrawide Monitor,1,379.99,02/22/19 21:41,"806 8th St, Seattle, WA 98101" -161549,Wired Headphones,2,11.99,02/18/19 14:41,"691 Elm St, San Francisco, CA 94016" -161550,34in Ultrawide Monitor,1,379.99,02/19/19 18:15,"718 14th St, San Francisco, CA 94016" -161551,20in Monitor,1,109.99,02/11/19 20:23,"912 Jackson St, Los Angeles, CA 90001" -161552,Bose SoundSport Headphones,1,99.99,02/13/19 13:46,"414 Lincoln St, Dallas, TX 75001" -161553,AA Batteries (4-pack),1,3.84,02/18/19 19:23,"386 5th St, Seattle, WA 98101" -161554,Wired Headphones,1,11.99,02/17/19 00:31,"761 12th St, Dallas, TX 75001" -161555,Google Phone,1,600,02/13/19 20:07,"745 9th St, New York City, NY 10001" -161556,27in 4K Gaming Monitor,1,389.99,02/26/19 19:42,"492 1st St, Portland, OR 97035" -161557,Wired Headphones,1,11.99,02/18/19 16:29,"851 1st St, Boston, MA 02215" -161558,Lightning Charging Cable,1,14.95,02/02/19 06:27,"362 Cherry St, Dallas, TX 75001" -161559,Lightning Charging Cable,1,14.95,02/17/19 15:39,"802 North St, San Francisco, CA 94016" -161560,USB-C Charging Cable,2,11.95,02/05/19 06:50,"976 Highland St, San Francisco, CA 94016" -161561,AA Batteries (4-pack),1,3.84,02/17/19 17:37,"181 Highland St, Seattle, WA 98101" -161562,USB-C Charging Cable,1,11.95,02/15/19 13:03,"785 Walnut St, Seattle, WA 98101" -161563,AA Batteries (4-pack),1,3.84,02/27/19 18:10,"67 11th St, Los Angeles, CA 90001" -161564,Google Phone,1,600,02/06/19 17:55,"778 4th St, New York City, NY 10001" -161565,Wired Headphones,1,11.99,02/09/19 16:35,"916 Highland St, San Francisco, CA 94016" -161565,Lightning Charging Cable,1,14.95,02/09/19 16:35,"916 Highland St, San Francisco, CA 94016" -161566,Bose SoundSport Headphones,1,99.99,02/18/19 13:18,"890 Adams St, Los Angeles, CA 90001" -161567,Apple Airpods Headphones,1,150,02/10/19 11:42,"413 Walnut St, San Francisco, CA 94016" -161567,Apple Airpods Headphones,1,150,02/10/19 11:42,"413 Walnut St, San Francisco, CA 94016" -161568,AA Batteries (4-pack),1,3.84,02/10/19 21:17,"638 Pine St, Seattle, WA 98101" -161569,AAA Batteries (4-pack),2,2.99,02/26/19 21:26,"76 Madison St, Dallas, TX 75001" -161570,27in 4K Gaming Monitor,1,389.99,02/12/19 11:12,"352 14th St, Seattle, WA 98101" -161571,USB-C Charging Cable,1,11.95,02/04/19 10:56,"289 South St, Seattle, WA 98101" -161572,27in FHD Monitor,1,149.99,02/23/19 16:04,"682 7th St, Los Angeles, CA 90001" -161573,AA Batteries (4-pack),1,3.84,02/08/19 19:07,"817 Johnson St, Los Angeles, CA 90001" -161574,AA Batteries (4-pack),1,3.84,02/03/19 20:06,"592 14th St, New York City, NY 10001" -161575,27in 4K Gaming Monitor,1,389.99,02/03/19 22:02,"897 Willow St, Los Angeles, CA 90001" -161576,AAA Batteries (4-pack),2,2.99,02/07/19 19:01,"427 Willow St, Los Angeles, CA 90001" -161577,27in FHD Monitor,1,149.99,02/27/19 19:45,"786 Center St, San Francisco, CA 94016" -161578,AAA Batteries (4-pack),1,2.99,02/21/19 07:24,"827 Church St, Seattle, WA 98101" -161579,Bose SoundSport Headphones,1,99.99,02/09/19 16:07,"68 Walnut St, Atlanta, GA 30301" -161580,27in FHD Monitor,1,149.99,02/12/19 07:45,"18 Park St, San Francisco, CA 94016" -161581,Apple Airpods Headphones,1,150,02/23/19 21:47,"942 Park St, New York City, NY 10001" -161582,iPhone,1,700,02/11/19 13:01,"491 11th St, San Francisco, CA 94016" -161583,Lightning Charging Cable,1,14.95,02/16/19 20:31,"699 Willow St, Portland, OR 97035" -161584,Wired Headphones,1,11.99,02/08/19 13:04,"286 Meadow St, San Francisco, CA 94016" -161585,Wired Headphones,1,11.99,02/12/19 09:23,"677 River St, Seattle, WA 98101" -161586,iPhone,1,700,02/01/19 13:48,"515 11th St, Austin, TX 73301" -161586,Lightning Charging Cable,1,14.95,02/01/19 13:48,"515 11th St, Austin, TX 73301" -161587,AAA Batteries (4-pack),2,2.99,02/19/19 10:09,"398 South St, Atlanta, GA 30301" -161588,Bose SoundSport Headphones,1,99.99,02/11/19 21:59,"673 Hickory St, Atlanta, GA 30301" -161589,Apple Airpods Headphones,1,150,02/28/19 10:48,"125 Main St, New York City, NY 10001" -161590,USB-C Charging Cable,1,11.95,02/18/19 10:36,"134 Maple St, Atlanta, GA 30301" -161591,ThinkPad Laptop,1,999.99,02/09/19 18:30,"417 Washington St, New York City, NY 10001" -161592,Lightning Charging Cable,1,14.95,02/12/19 19:36,"8 5th St, Dallas, TX 75001" -161593,USB-C Charging Cable,1,11.95,02/03/19 19:50,"416 6th St, Dallas, TX 75001" -161594,USB-C Charging Cable,1,11.95,02/24/19 18:28,"204 Hickory St, Dallas, TX 75001" -161595,27in 4K Gaming Monitor,1,389.99,02/03/19 17:10,"231 Church St, Atlanta, GA 30301" -161596,Flatscreen TV,1,300,02/20/19 15:10,"47 West St, San Francisco, CA 94016" -161597,AAA Batteries (4-pack),4,2.99,02/11/19 18:52,"458 Cedar St, San Francisco, CA 94016" -161598,iPhone,1,700,02/09/19 21:33,"89 12th St, Seattle, WA 98101" -161598,Wired Headphones,1,11.99,02/09/19 21:33,"89 12th St, Seattle, WA 98101" -161599,AA Batteries (4-pack),1,3.84,02/19/19 18:06,"193 Center St, San Francisco, CA 94016" -161600,AA Batteries (4-pack),3,3.84,02/13/19 19:46,"704 Washington St, Los Angeles, CA 90001" -161601,Lightning Charging Cable,2,14.95,02/20/19 16:31,"963 Main St, San Francisco, CA 94016" -161602,Wired Headphones,1,11.99,02/01/19 07:28,"631 River St, San Francisco, CA 94016" -161603,iPhone,1,700,02/24/19 21:40,"217 Spruce St, New York City, NY 10001" -161603,Lightning Charging Cable,2,14.95,02/24/19 21:40,"217 Spruce St, New York City, NY 10001" -161604,Lightning Charging Cable,1,14.95,02/22/19 01:18,"32 7th St, New York City, NY 10001" -161605,ThinkPad Laptop,1,999.99,02/20/19 14:47,"499 2nd St, San Francisco, CA 94016" -161605,Lightning Charging Cable,1,14.95,02/20/19 14:47,"499 2nd St, San Francisco, CA 94016" -161606,AA Batteries (4-pack),1,3.84,02/25/19 11:26,"651 Adams St, Los Angeles, CA 90001" -161607,34in Ultrawide Monitor,1,379.99,02/17/19 16:16,"612 Chestnut St, Atlanta, GA 30301" -161608,27in FHD Monitor,1,149.99,02/21/19 10:45,"907 Spruce St, New York City, NY 10001" -161609,Macbook Pro Laptop,1,1700,02/02/19 20:17,"760 South St, San Francisco, CA 94016" -161610,USB-C Charging Cable,1,11.95,02/20/19 20:15,"490 Adams St, San Francisco, CA 94016" -161611,20in Monitor,1,109.99,02/05/19 12:36,"11 Walnut St, Los Angeles, CA 90001" -161612,ThinkPad Laptop,1,999.99,02/17/19 19:32,"486 North St, Seattle, WA 98101" -161613,Lightning Charging Cable,1,14.95,02/15/19 21:51,"324 10th St, Portland, OR 97035" -161614,Google Phone,1,600,02/21/19 21:03,"598 5th St, Boston, MA 02215" -161614,Bose SoundSport Headphones,1,99.99,02/21/19 21:03,"598 5th St, Boston, MA 02215" -161615,AA Batteries (4-pack),2,3.84,02/18/19 20:22,"489 Adams St, Los Angeles, CA 90001" -161616,Wired Headphones,1,11.99,02/19/19 23:47,"915 Madison St, Los Angeles, CA 90001" -161617,Bose SoundSport Headphones,1,99.99,02/25/19 12:29,"907 7th St, Boston, MA 02215" -161618,20in Monitor,1,109.99,02/12/19 21:13,"277 Wilson St, San Francisco, CA 94016" -161619,AA Batteries (4-pack),1,3.84,02/12/19 04:06,"388 Church St, Portland, OR 97035" -161620,USB-C Charging Cable,1,11.95,02/11/19 15:12,"987 Wilson St, New York City, NY 10001" -161621,USB-C Charging Cable,1,11.95,02/11/19 13:20,"953 4th St, Los Angeles, CA 90001" -161622,Macbook Pro Laptop,1,1700,02/10/19 23:38,"646 Cedar St, New York City, NY 10001" -161623,27in 4K Gaming Monitor,1,389.99,02/10/19 18:31,"137 Ridge St, New York City, NY 10001" -161624,Apple Airpods Headphones,1,150,02/19/19 15:37,"634 6th St, San Francisco, CA 94016" -161625,20in Monitor,1,109.99,02/02/19 16:45,"881 Ridge St, New York City, NY 10001" -161626,Lightning Charging Cable,1,14.95,02/21/19 17:13,"825 11th St, Seattle, WA 98101" -161627,Flatscreen TV,1,300,02/16/19 14:55,"905 Lincoln St, San Francisco, CA 94016" -161628,Wired Headphones,1,11.99,02/16/19 07:33,"240 6th St, Los Angeles, CA 90001" -161629,34in Ultrawide Monitor,1,379.99,02/15/19 18:51,"19 Church St, San Francisco, CA 94016" -161630,iPhone,1,700,02/02/19 22:01,"973 Madison St, Los Angeles, CA 90001" -161630,Lightning Charging Cable,1,14.95,02/02/19 22:01,"973 Madison St, Los Angeles, CA 90001" -161631,USB-C Charging Cable,1,11.95,02/25/19 15:06,"73 Forest St, Boston, MA 02215" -161632,Lightning Charging Cable,1,14.95,02/26/19 14:40,"891 Jefferson St, Los Angeles, CA 90001" -161633,Lightning Charging Cable,1,14.95,02/09/19 15:13,"12 7th St, Boston, MA 02215" -161634,LG Dryer,1,600.0,02/04/19 18:22,"516 8th St, Seattle, WA 98101" -161635,Lightning Charging Cable,1,14.95,02/01/19 22:49,"381 Elm St, Seattle, WA 98101" -161636,Lightning Charging Cable,1,14.95,02/27/19 10:04,"247 5th St, San Francisco, CA 94016" -161637,AA Batteries (4-pack),2,3.84,02/01/19 16:12,"195 9th St, Atlanta, GA 30301" -161638,Wired Headphones,1,11.99,02/21/19 13:07,"382 13th St, Dallas, TX 75001" -161639,Wired Headphones,1,11.99,02/10/19 09:20,"426 Park St, Seattle, WA 98101" -161640,27in FHD Monitor,1,149.99,02/20/19 19:40,"694 South St, Seattle, WA 98101" -161641,Wired Headphones,2,11.99,02/15/19 14:55,"218 13th St, Boston, MA 02215" -161642,USB-C Charging Cable,1,11.95,02/12/19 19:52,"424 Jackson St, Dallas, TX 75001" -161643,20in Monitor,1,109.99,02/04/19 17:18,"467 12th St, New York City, NY 10001" -161644,27in FHD Monitor,1,149.99,02/13/19 23:18,"355 1st St, Los Angeles, CA 90001" -161645,Lightning Charging Cable,1,14.95,02/02/19 19:59,"173 Maple St, Atlanta, GA 30301" -161646,Lightning Charging Cable,1,14.95,02/08/19 09:48,"28 Spruce St, Boston, MA 02215" -161647,Wired Headphones,1,11.99,02/20/19 10:31,"740 Center St, Boston, MA 02215" -161648,AA Batteries (4-pack),2,3.84,02/17/19 08:36,"792 Lakeview St, Dallas, TX 75001" -161649,Apple Airpods Headphones,1,150,02/24/19 11:26,"691 Cedar St, Los Angeles, CA 90001" -161650,Wired Headphones,1,11.99,02/28/19 15:09,"983 Highland St, New York City, NY 10001" -161651,27in 4K Gaming Monitor,1,389.99,02/06/19 09:43,"714 Lincoln St, Seattle, WA 98101" -161652,USB-C Charging Cable,1,11.95,02/22/19 05:20,"944 Lincoln St, Los Angeles, CA 90001" -161653,AA Batteries (4-pack),1,3.84,02/03/19 20:11,"631 8th St, Austin, TX 73301" -161654,AA Batteries (4-pack),1,3.84,02/01/19 17:14,"615 5th St, Seattle, WA 98101" -161655,Bose SoundSport Headphones,1,99.99,02/12/19 19:09,"58 1st St, Austin, TX 73301" -161656,Lightning Charging Cable,1,14.95,02/26/19 19:17,"626 Lake St, New York City, NY 10001" -161657,USB-C Charging Cable,1,11.95,02/13/19 21:36,"907 10th St, Los Angeles, CA 90001" -161658,AAA Batteries (4-pack),1,2.99,02/05/19 02:24,"462 9th St, San Francisco, CA 94016" -161659,Bose SoundSport Headphones,1,99.99,02/25/19 06:59,"689 Spruce St, Los Angeles, CA 90001" -161660,Wired Headphones,1,11.99,02/05/19 00:58,"345 Jackson St, New York City, NY 10001" -161661,27in FHD Monitor,1,149.99,02/27/19 08:19,"475 8th St, Los Angeles, CA 90001" -161662,27in 4K Gaming Monitor,1,389.99,02/10/19 01:45,"150 Lakeview St, Los Angeles, CA 90001" -161663,Wired Headphones,1,11.99,02/04/19 14:18,"542 9th St, San Francisco, CA 94016" -161664,Bose SoundSport Headphones,1,99.99,02/15/19 12:13,"747 13th St, Dallas, TX 75001" -161665,AAA Batteries (4-pack),1,2.99,02/08/19 15:17,"278 Church St, Los Angeles, CA 90001" -161666,USB-C Charging Cable,1,11.95,02/01/19 16:38,"37 12th St, Seattle, WA 98101" -161667,USB-C Charging Cable,1,11.95,02/08/19 19:14,"862 2nd St, Los Angeles, CA 90001" -161668,Bose SoundSport Headphones,1,99.99,02/26/19 16:56,"314 Lincoln St, San Francisco, CA 94016" -161669,AA Batteries (4-pack),2,3.84,02/10/19 13:29,"943 6th St, San Francisco, CA 94016" -161670,Wired Headphones,2,11.99,02/21/19 13:51,"466 12th St, San Francisco, CA 94016" -161671,Macbook Pro Laptop,1,1700,02/15/19 20:47,"425 Hill St, Dallas, TX 75001" -161672,34in Ultrawide Monitor,1,379.99,02/07/19 16:18,"863 Meadow St, Los Angeles, CA 90001" -161673,AA Batteries (4-pack),1,3.84,02/03/19 11:39,"404 Ridge St, San Francisco, CA 94016" -161674,20in Monitor,1,109.99,02/06/19 10:20,"820 West St, Boston, MA 02215" -161675,27in FHD Monitor,1,149.99,02/28/19 22:56,"683 4th St, Portland, OR 97035" -161676,AAA Batteries (4-pack),1,2.99,02/14/19 09:05,"953 Cedar St, Dallas, TX 75001" -161677,AAA Batteries (4-pack),3,2.99,02/19/19 09:04,"627 Wilson St, Atlanta, GA 30301" -161678,34in Ultrawide Monitor,1,379.99,02/16/19 21:49,"235 Spruce St, Los Angeles, CA 90001" -161678,USB-C Charging Cable,1,11.95,02/16/19 21:49,"235 Spruce St, Los Angeles, CA 90001" -161679,20in Monitor,1,109.99,02/15/19 12:47,"780 Chestnut St, New York City, NY 10001" -161680,Lightning Charging Cable,1,14.95,02/18/19 11:57,"580 Jefferson St, Portland, ME 04101" -161681,USB-C Charging Cable,1,11.95,02/15/19 17:35,"207 1st St, Seattle, WA 98101" -161682,Flatscreen TV,1,300,02/13/19 08:15,"48 Sunset St, Austin, TX 73301" -161683,Bose SoundSport Headphones,1,99.99,02/07/19 23:40,"865 Church St, Portland, OR 97035" -161684,ThinkPad Laptop,1,999.99,02/25/19 12:40,"393 Lakeview St, Portland, OR 97035" -161684,Apple Airpods Headphones,1,150,02/25/19 12:40,"393 Lakeview St, Portland, OR 97035" -161685,AA Batteries (4-pack),1,3.84,02/13/19 13:41,"504 Meadow St, Los Angeles, CA 90001" -161686,Wired Headphones,1,11.99,02/22/19 08:44,"790 Willow St, Los Angeles, CA 90001" -161687,34in Ultrawide Monitor,1,379.99,02/26/19 20:47,"387 Hickory St, Dallas, TX 75001" -161688,AAA Batteries (4-pack),4,2.99,02/07/19 20:04,"820 11th St, Los Angeles, CA 90001" -161689,AAA Batteries (4-pack),1,2.99,02/24/19 14:51,"59 1st St, San Francisco, CA 94016" -161690,Wired Headphones,1,11.99,02/06/19 12:00,"137 Willow St, Los Angeles, CA 90001" -161691,Lightning Charging Cable,1,14.95,02/12/19 21:46,"120 Maple St, New York City, NY 10001" -161692,Flatscreen TV,1,300,02/09/19 20:03,"12 Adams St, Atlanta, GA 30301" -161693,27in FHD Monitor,1,149.99,02/17/19 14:17,"258 Lakeview St, San Francisco, CA 94016" -161694,USB-C Charging Cable,2,11.95,02/22/19 13:38,"542 10th St, Seattle, WA 98101" -161695,AAA Batteries (4-pack),1,2.99,02/05/19 18:08,"824 Madison St, Portland, ME 04101" -161696,Bose SoundSport Headphones,1,99.99,02/01/19 23:35,"918 Lakeview St, San Francisco, CA 94016" -161697,Apple Airpods Headphones,1,150,02/28/19 22:57,"595 2nd St, Los Angeles, CA 90001" -161698,AA Batteries (4-pack),1,3.84,02/15/19 17:12,"39 8th St, San Francisco, CA 94016" -161699,Apple Airpods Headphones,1,150,02/14/19 15:45,"436 Park St, Austin, TX 73301" -161700,Lightning Charging Cable,1,14.95,02/06/19 13:06,"729 Cherry St, New York City, NY 10001" -161701,USB-C Charging Cable,1,11.95,02/26/19 17:55,"679 Center St, Boston, MA 02215" -161702,27in 4K Gaming Monitor,1,389.99,02/22/19 22:52,"865 Park St, Boston, MA 02215" -161703,27in FHD Monitor,1,149.99,02/17/19 11:59,"964 10th St, New York City, NY 10001" -161704,AA Batteries (4-pack),2,3.84,02/27/19 20:51,"48 Elm St, San Francisco, CA 94016" -161705,AA Batteries (4-pack),1,3.84,02/07/19 18:42,"719 1st St, San Francisco, CA 94016" -161706,Bose SoundSport Headphones,1,99.99,02/16/19 22:47,"850 Elm St, Atlanta, GA 30301" -161707,Apple Airpods Headphones,1,150,02/03/19 13:27,"899 Adams St, San Francisco, CA 94016" -161708,Wired Headphones,1,11.99,02/03/19 16:47,"151 Chestnut St, Austin, TX 73301" -161709,ThinkPad Laptop,1,999.99,02/10/19 14:35,"390 Highland St, Seattle, WA 98101" -161710,AA Batteries (4-pack),1,3.84,02/02/19 11:56,"680 8th St, Portland, OR 97035" -161711,iPhone,1,700,02/27/19 07:08,"487 6th St, Austin, TX 73301" -161712,Lightning Charging Cable,1,14.95,02/10/19 09:58,"10 7th St, San Francisco, CA 94016" -161713,AAA Batteries (4-pack),1,2.99,02/03/19 12:38,"74 7th St, Seattle, WA 98101" -161714,Wired Headphones,1,11.99,02/16/19 14:19,"123 2nd St, San Francisco, CA 94016" -161715,USB-C Charging Cable,1,11.95,02/25/19 06:11,"553 Ridge St, Atlanta, GA 30301" -161716,AAA Batteries (4-pack),1,2.99,02/11/19 17:44,"788 Pine St, Boston, MA 02215" -161717,Lightning Charging Cable,1,14.95,02/15/19 15:23,"524 Wilson St, Austin, TX 73301" -161718,Bose SoundSport Headphones,1,99.99,02/01/19 19:43,"446 Madison St, New York City, NY 10001" -161719,Google Phone,1,600,02/12/19 12:41,"857 Chestnut St, Los Angeles, CA 90001" -161720,Apple Airpods Headphones,1,150,02/28/19 13:56,"525 Wilson St, Seattle, WA 98101" -161721,Lightning Charging Cable,1,14.95,02/12/19 13:33,"472 9th St, Seattle, WA 98101" -161722,Lightning Charging Cable,1,14.95,02/22/19 18:48,"435 Jefferson St, Seattle, WA 98101" -161723,AA Batteries (4-pack),1,3.84,02/04/19 15:30,"624 South St, San Francisco, CA 94016" -161724,Wired Headphones,1,11.99,02/06/19 22:09,"782 8th St, San Francisco, CA 94016" -161725,Lightning Charging Cable,1,14.95,02/08/19 11:59,"719 13th St, San Francisco, CA 94016" -161726,AA Batteries (4-pack),1,3.84,02/27/19 16:46,"32 River St, San Francisco, CA 94016" -161727,USB-C Charging Cable,1,11.95,02/25/19 14:15,"542 Park St, Los Angeles, CA 90001" -161728,27in 4K Gaming Monitor,1,389.99,02/18/19 17:59,"62 Hill St, Dallas, TX 75001" -161729,Bose SoundSport Headphones,1,99.99,02/21/19 06:51,"964 6th St, San Francisco, CA 94016" -161730,20in Monitor,1,109.99,02/04/19 19:22,"309 Cedar St, Dallas, TX 75001" -161731,Wired Headphones,1,11.99,02/07/19 09:36,"255 12th St, Dallas, TX 75001" -161732,Wired Headphones,1,11.99,02/11/19 17:11,"524 2nd St, Seattle, WA 98101" -161733,AAA Batteries (4-pack),1,2.99,02/20/19 21:13,"743 Johnson St, San Francisco, CA 94016" -161733,Lightning Charging Cable,1,14.95,02/20/19 21:13,"743 Johnson St, San Francisco, CA 94016" -161734,Flatscreen TV,1,300,02/10/19 10:58,"249 2nd St, San Francisco, CA 94016" -161735,AAA Batteries (4-pack),1,2.99,02/13/19 11:21,"810 Forest St, San Francisco, CA 94016" -161736,AAA Batteries (4-pack),1,2.99,02/11/19 20:09,"868 Willow St, Los Angeles, CA 90001" -161737,AA Batteries (4-pack),1,3.84,02/09/19 10:51,"430 Church St, San Francisco, CA 94016" -161738,Bose SoundSport Headphones,1,99.99,02/03/19 09:33,"743 Madison St, Los Angeles, CA 90001" -161739,Vareebadd Phone,1,400,02/02/19 14:26,"765 13th St, Boston, MA 02215" -161740,Wired Headphones,1,11.99,02/03/19 14:56,"28 11th St, Seattle, WA 98101" -161741,AA Batteries (4-pack),1,3.84,02/06/19 14:25,"961 Washington St, Seattle, WA 98101" -161742,iPhone,1,700,02/07/19 22:56,"983 6th St, San Francisco, CA 94016" -161743,AA Batteries (4-pack),2,3.84,02/27/19 01:19,"100 North St, Los Angeles, CA 90001" -161744,Bose SoundSport Headphones,1,99.99,02/26/19 11:16,"562 Jackson St, Portland, OR 97035" -161745,Apple Airpods Headphones,1,150,02/15/19 20:28,"722 Center St, Atlanta, GA 30301" -161746,Vareebadd Phone,1,400,02/22/19 12:13,"885 10th St, San Francisco, CA 94016" -161747,LG Washing Machine,1,600.0,02/22/19 22:59,"609 Madison St, San Francisco, CA 94016" -161748,27in 4K Gaming Monitor,1,389.99,02/05/19 23:06,"828 River St, Austin, TX 73301" -161749,Apple Airpods Headphones,1,150,02/13/19 17:38,"672 11th St, Austin, TX 73301" -161750,AA Batteries (4-pack),1,3.84,02/22/19 13:35,"814 13th St, Atlanta, GA 30301" -161751,AAA Batteries (4-pack),2,2.99,02/20/19 14:05,"107 6th St, San Francisco, CA 94016" -161752,20in Monitor,1,109.99,02/24/19 16:31,"255 Spruce St, San Francisco, CA 94016" -161753,Apple Airpods Headphones,1,150,02/08/19 00:13,"861 Jackson St, Portland, OR 97035" -161754,Apple Airpods Headphones,1,150,02/07/19 23:04,"788 Adams St, Dallas, TX 75001" -161755,Macbook Pro Laptop,1,1700,02/19/19 12:14,"752 6th St, Portland, OR 97035" -161756,Flatscreen TV,1,300,02/13/19 19:14,"891 4th St, San Francisco, CA 94016" -161757,Vareebadd Phone,1,400,02/02/19 19:03,"138 Walnut St, Boston, MA 02215" -161758,LG Washing Machine,1,600.0,02/06/19 17:02,"986 6th St, San Francisco, CA 94016" -161759,27in 4K Gaming Monitor,1,389.99,02/03/19 18:25,"258 Dogwood St, New York City, NY 10001" -161760,Lightning Charging Cable,1,14.95,02/16/19 16:14,"443 Main St, Boston, MA 02215" -161761,USB-C Charging Cable,1,11.95,02/20/19 13:27,"824 Walnut St, Los Angeles, CA 90001" -161762,Apple Airpods Headphones,1,150,02/28/19 08:14,"27 Hickory St, Los Angeles, CA 90001" -161763,USB-C Charging Cable,1,11.95,02/24/19 21:47,"513 Spruce St, San Francisco, CA 94016" -161764,Wired Headphones,1,11.99,02/27/19 14:21,"587 River St, San Francisco, CA 94016" -161765,USB-C Charging Cable,1,11.95,02/03/19 18:52,"35 14th St, Portland, OR 97035" -161766,USB-C Charging Cable,2,11.95,02/05/19 19:49,"786 13th St, Boston, MA 02215" -161767,Flatscreen TV,1,300,02/05/19 15:27,"317 8th St, New York City, NY 10001" -161768,Lightning Charging Cable,2,14.95,02/05/19 23:49,"77 7th St, Dallas, TX 75001" -161769,Google Phone,1,600,02/03/19 12:11,"807 Meadow St, New York City, NY 10001" -161770,Apple Airpods Headphones,1,150,02/13/19 22:32,"636 8th St, Austin, TX 73301" -161771,AA Batteries (4-pack),2,3.84,02/05/19 15:47,"383 Wilson St, Los Angeles, CA 90001" -161772,USB-C Charging Cable,1,11.95,02/01/19 11:17,"337 14th St, Atlanta, GA 30301" -161773,LG Washing Machine,1,600.0,02/14/19 16:56,"178 River St, San Francisco, CA 94016" -161774,27in FHD Monitor,1,149.99,02/08/19 00:36,"929 Cedar St, New York City, NY 10001" -161775,Bose SoundSport Headphones,1,99.99,02/13/19 17:39,"578 Adams St, New York City, NY 10001" -161776,27in FHD Monitor,1,149.99,02/08/19 21:25,"32 Forest St, Los Angeles, CA 90001" -161777,AAA Batteries (4-pack),3,2.99,02/02/19 20:56,"501 Highland St, Los Angeles, CA 90001" -161778,27in 4K Gaming Monitor,1,389.99,02/23/19 10:35,"214 Wilson St, Seattle, WA 98101" -161779,Wired Headphones,1,11.99,02/12/19 10:10,"531 1st St, Dallas, TX 75001" -161780,Bose SoundSport Headphones,1,99.99,02/21/19 08:51,"838 6th St, Boston, MA 02215" -161781,Bose SoundSport Headphones,1,99.99,02/27/19 22:18,"31 Meadow St, Boston, MA 02215" -161782,Wired Headphones,1,11.99,02/25/19 21:43,"271 Main St, Boston, MA 02215" -161783,AAA Batteries (4-pack),2,2.99,02/27/19 19:21,"427 Johnson St, Austin, TX 73301" -161784,AAA Batteries (4-pack),3,2.99,02/13/19 18:46,"920 Lincoln St, Austin, TX 73301" -161785,Wired Headphones,1,11.99,02/19/19 08:55,"615 Maple St, Los Angeles, CA 90001" -161786,Wired Headphones,1,11.99,02/04/19 11:54,"518 Forest St, Austin, TX 73301" -161787,Lightning Charging Cable,1,14.95,02/06/19 18:14,"91 North St, Seattle, WA 98101" -161788,Lightning Charging Cable,1,14.95,02/04/19 21:39,"84 Maple St, Dallas, TX 75001" -161789,27in 4K Gaming Monitor,1,389.99,02/28/19 20:51,"40 4th St, San Francisco, CA 94016" -161790,27in FHD Monitor,1,149.99,02/24/19 21:32,"210 7th St, Atlanta, GA 30301" -161791,AAA Batteries (4-pack),1,2.99,02/03/19 14:07,"599 13th St, Los Angeles, CA 90001" -161792,Wired Headphones,1,11.99,02/04/19 09:44,"702 8th St, Dallas, TX 75001" -161793,Wired Headphones,1,11.99,02/03/19 12:03,"612 Maple St, Los Angeles, CA 90001" -161794,Bose SoundSport Headphones,1,99.99,02/27/19 12:25,"719 Johnson St, San Francisco, CA 94016" -161795,Bose SoundSport Headphones,1,99.99,02/04/19 12:31,"42 Walnut St, Portland, ME 04101" -161796,Lightning Charging Cable,1,14.95,02/14/19 01:35,"522 Church St, Portland, OR 97035" -161797,Bose SoundSport Headphones,1,99.99,02/15/19 12:46,"670 Meadow St, San Francisco, CA 94016" -161798,Wired Headphones,1,11.99,02/09/19 22:02,"950 River St, Austin, TX 73301" -161799,Lightning Charging Cable,1,14.95,02/01/19 11:10,"828 Hickory St, Seattle, WA 98101" -161800,20in Monitor,1,109.99,02/28/19 09:21,"572 12th St, New York City, NY 10001" -161801,Lightning Charging Cable,1,14.95,02/25/19 15:10,"658 4th St, San Francisco, CA 94016" -161802,27in FHD Monitor,1,149.99,02/22/19 18:31,"39 Meadow St, Los Angeles, CA 90001" -161803,USB-C Charging Cable,1,11.95,02/28/19 12:26,"103 Ridge St, Los Angeles, CA 90001" -161804,Lightning Charging Cable,1,14.95,02/22/19 21:24,"533 Washington St, Atlanta, GA 30301" -161805,AA Batteries (4-pack),1,3.84,02/17/19 23:21,"311 Washington St, New York City, NY 10001" -161806,iPhone,1,700,02/16/19 07:55,"861 Ridge St, Seattle, WA 98101" -161806,Apple Airpods Headphones,1,150,02/16/19 07:55,"861 Ridge St, Seattle, WA 98101" -161807,Lightning Charging Cable,1,14.95,02/23/19 18:14,"805 Lakeview St, New York City, NY 10001" -161808,Lightning Charging Cable,1,14.95,02/13/19 19:25,"595 Wilson St, New York City, NY 10001" -161809,Google Phone,1,600,02/05/19 11:37,"596 Hill St, San Francisco, CA 94016" -161810,Apple Airpods Headphones,1,150,02/23/19 09:40,"524 9th St, Dallas, TX 75001" -161811,Wired Headphones,1,11.99,02/08/19 13:06,"293 Jackson St, San Francisco, CA 94016" -161812,Wired Headphones,1,11.99,02/13/19 11:18,"649 Main St, San Francisco, CA 94016" -161813,Google Phone,1,600,02/23/19 17:48,"581 10th St, Portland, OR 97035" -161814,27in 4K Gaming Monitor,1,389.99,02/20/19 16:22,"137 10th St, Boston, MA 02215" -161815,USB-C Charging Cable,1,11.95,02/20/19 16:24,"574 10th St, San Francisco, CA 94016" -161816,iPhone,1,700,02/18/19 16:04,"881 Pine St, Boston, MA 02215" -161817,Lightning Charging Cable,1,14.95,02/16/19 16:38,"534 10th St, New York City, NY 10001" -161818,Apple Airpods Headphones,1,150,02/25/19 21:44,"65 Johnson St, Boston, MA 02215" -161819,Apple Airpods Headphones,1,150,02/18/19 13:26,"95 12th St, Atlanta, GA 30301" -161820,Apple Airpods Headphones,1,150,02/17/19 14:14,"220 Jackson St, San Francisco, CA 94016" -161821,20in Monitor,1,109.99,02/24/19 00:39,"517 Highland St, Atlanta, GA 30301" -161822,AA Batteries (4-pack),1,3.84,02/19/19 11:07,"126 Elm St, Los Angeles, CA 90001" -161823,AA Batteries (4-pack),2,3.84,02/27/19 02:29,"651 Dogwood St, Seattle, WA 98101" -161824,AA Batteries (4-pack),3,3.84,02/21/19 07:24,"635 1st St, Boston, MA 02215" -161825,Lightning Charging Cable,1,14.95,02/25/19 12:05,"864 13th St, Seattle, WA 98101" -161826,LG Dryer,1,600.0,02/24/19 21:06,"411 2nd St, Dallas, TX 75001" -161827,Flatscreen TV,1,300,02/03/19 00:09,"4 2nd St, Boston, MA 02215" -161828,USB-C Charging Cable,1,11.95,02/23/19 14:33,"701 Dogwood St, New York City, NY 10001" -161829,USB-C Charging Cable,1,11.95,02/05/19 21:21,"661 1st St, San Francisco, CA 94016" -161830,AA Batteries (4-pack),1,3.84,02/08/19 11:07,"127 Chestnut St, Atlanta, GA 30301" -161831,Apple Airpods Headphones,1,150,02/26/19 20:19,"953 Elm St, Boston, MA 02215" -161832,AAA Batteries (4-pack),2,2.99,02/10/19 16:28,"734 North St, Seattle, WA 98101" -161833,ThinkPad Laptop,1,999.99,02/03/19 11:59,"342 Church St, San Francisco, CA 94016" -161834,AAA Batteries (4-pack),1,2.99,02/21/19 01:12,"300 Meadow St, San Francisco, CA 94016" -161835,Wired Headphones,1,11.99,02/21/19 07:39,"504 14th St, Los Angeles, CA 90001" -161836,27in FHD Monitor,1,149.99,02/22/19 10:49,"322 Willow St, Dallas, TX 75001" -161837,AA Batteries (4-pack),1,3.84,02/14/19 00:33,"429 Sunset St, San Francisco, CA 94016" -161838,USB-C Charging Cable,1,11.95,02/13/19 23:50,"434 6th St, San Francisco, CA 94016" -161839,AA Batteries (4-pack),1,3.84,02/27/19 18:17,"835 Ridge St, Los Angeles, CA 90001" -161840,Lightning Charging Cable,1,14.95,02/18/19 20:54,"208 South St, Portland, OR 97035" -161841,Wired Headphones,1,11.99,02/15/19 18:31,"950 West St, Dallas, TX 75001" -161842,iPhone,1,700,02/03/19 17:31,"727 Pine St, New York City, NY 10001" -161843,27in 4K Gaming Monitor,1,389.99,02/17/19 19:24,"426 Chestnut St, Los Angeles, CA 90001" -161844,Macbook Pro Laptop,1,1700,02/24/19 20:41,"432 14th St, New York City, NY 10001" -161845,Macbook Pro Laptop,1,1700,02/26/19 20:57,"674 Spruce St, Los Angeles, CA 90001" -161846,ThinkPad Laptop,1,999.99,02/08/19 12:59,"102 Sunset St, San Francisco, CA 94016" -161847,Lightning Charging Cable,1,14.95,02/28/19 13:30,"38 Elm St, San Francisco, CA 94016" -161848,Flatscreen TV,1,300,02/12/19 19:34,"229 West St, Los Angeles, CA 90001" -161849,Lightning Charging Cable,1,14.95,02/03/19 10:03,"194 6th St, San Francisco, CA 94016" -161850,AA Batteries (4-pack),1,3.84,02/17/19 20:38,"317 2nd St, Los Angeles, CA 90001" -161850,AAA Batteries (4-pack),1,2.99,02/17/19 20:38,"317 2nd St, Los Angeles, CA 90001" -161851,Flatscreen TV,1,300,02/19/19 22:57,"988 Forest St, Seattle, WA 98101" -161852,Lightning Charging Cable,1,14.95,02/26/19 22:53,"393 Washington St, Austin, TX 73301" -161853,Wired Headphones,1,11.99,02/01/19 18:05,"93 Spruce St, Dallas, TX 75001" -161854,Google Phone,1,600,02/08/19 12:02,"131 Center St, Los Angeles, CA 90001" -161855,Wired Headphones,1,11.99,02/27/19 12:51,"715 10th St, Boston, MA 02215" -161856,Flatscreen TV,1,300,02/14/19 17:00,"68 River St, Los Angeles, CA 90001" -161857,27in FHD Monitor,1,149.99,02/02/19 14:26,"508 Cherry St, San Francisco, CA 94016" -161858,USB-C Charging Cable,1,11.95,02/08/19 20:05,"991 6th St, Dallas, TX 75001" -161859,AA Batteries (4-pack),2,3.84,02/24/19 22:58,"286 West St, New York City, NY 10001" -161860,AAA Batteries (4-pack),1,2.99,02/13/19 19:13,"417 Church St, New York City, NY 10001" -161861,Lightning Charging Cable,1,14.95,02/17/19 08:29,"784 Hill St, Portland, OR 97035" -161861,Wired Headphones,1,11.99,02/17/19 08:29,"784 Hill St, Portland, OR 97035" -161862,Apple Airpods Headphones,1,150,02/09/19 22:14,"454 Cherry St, Atlanta, GA 30301" -161863,Google Phone,1,600,02/14/19 11:45,"941 Main St, San Francisco, CA 94016" -161864,Wired Headphones,1,11.99,02/07/19 21:02,"691 Park St, Portland, ME 04101" -161865,iPhone,1,700,02/11/19 18:49,"865 Spruce St, Portland, OR 97035" -161866,AAA Batteries (4-pack),1,2.99,02/08/19 10:24,"475 Lincoln St, New York City, NY 10001" -161867,ThinkPad Laptop,1,999.99,02/11/19 20:15,"791 Park St, Los Angeles, CA 90001" -161868,AA Batteries (4-pack),1,3.84,02/04/19 11:06,"860 Pine St, Los Angeles, CA 90001" -161869,USB-C Charging Cable,1,11.95,02/09/19 11:15,"79 Forest St, Los Angeles, CA 90001" -161870,AAA Batteries (4-pack),1,2.99,02/26/19 14:00,"583 Lakeview St, San Francisco, CA 94016" -161871,AA Batteries (4-pack),1,3.84,02/25/19 17:52,"53 5th St, Boston, MA 02215" -161872,Lightning Charging Cable,3,14.95,02/15/19 22:26,"833 Jefferson St, Los Angeles, CA 90001" -161873,Lightning Charging Cable,1,14.95,02/26/19 14:58,"216 Sunset St, San Francisco, CA 94016" -161874,27in FHD Monitor,1,149.99,02/03/19 12:25,"415 Lincoln St, Seattle, WA 98101" -161875,USB-C Charging Cable,1,11.95,02/25/19 15:08,"788 5th St, Boston, MA 02215" -161876,Wired Headphones,1,11.99,02/25/19 14:38,"242 6th St, Dallas, TX 75001" -161877,AAA Batteries (4-pack),4,2.99,02/16/19 19:17,"712 5th St, San Francisco, CA 94016" -161878,Google Phone,1,600,02/26/19 01:05,"877 North St, Los Angeles, CA 90001" -161879,AA Batteries (4-pack),2,3.84,02/14/19 19:52,"115 South St, New York City, NY 10001" -161880,USB-C Charging Cable,1,11.95,02/11/19 08:58,"492 Lake St, San Francisco, CA 94016" -161881,USB-C Charging Cable,1,11.95,02/01/19 08:22,"17 Park St, Austin, TX 73301" -161882,Apple Airpods Headphones,1,150,02/06/19 18:26,"86 Lakeview St, San Francisco, CA 94016" -161883,Bose SoundSport Headphones,1,99.99,02/08/19 10:26,"861 Lakeview St, Portland, OR 97035" -161884,USB-C Charging Cable,1,11.95,02/27/19 11:03,"328 8th St, San Francisco, CA 94016" -161885,Google Phone,1,600,02/25/19 13:30,"647 Wilson St, Portland, OR 97035" -161886,AAA Batteries (4-pack),1,2.99,02/21/19 13:09,"977 9th St, Portland, OR 97035" -161887,Apple Airpods Headphones,1,150,02/18/19 19:48,"770 Chestnut St, Dallas, TX 75001" -161888,20in Monitor,1,109.99,02/09/19 12:43,"545 North St, Atlanta, GA 30301" -161889,Vareebadd Phone,1,400,02/10/19 20:21,"264 Pine St, Atlanta, GA 30301" -161890,Wired Headphones,1,11.99,02/01/19 21:51,"126 Johnson St, Dallas, TX 75001" -161891,LG Washing Machine,1,600.0,02/03/19 14:16,"397 Jackson St, San Francisco, CA 94016" -161891,Lightning Charging Cable,1,14.95,02/03/19 14:16,"397 Jackson St, San Francisco, CA 94016" -161892,AAA Batteries (4-pack),4,2.99,02/22/19 11:52,"936 Center St, New York City, NY 10001" -161893,USB-C Charging Cable,1,11.95,02/09/19 21:06,"309 Sunset St, Dallas, TX 75001" -161894,AAA Batteries (4-pack),1,2.99,02/15/19 00:43,"416 Highland St, San Francisco, CA 94016" -161895,AAA Batteries (4-pack),1,2.99,02/08/19 05:12,"43 Madison St, San Francisco, CA 94016" -161896,ThinkPad Laptop,1,999.99,02/21/19 17:15,"580 Cedar St, Boston, MA 02215" -161897,AAA Batteries (4-pack),1,2.99,02/06/19 18:45,"359 Dogwood St, San Francisco, CA 94016" -161898,Wired Headphones,1,11.99,02/27/19 21:18,"252 Hill St, Austin, TX 73301" -161899,AA Batteries (4-pack),1,3.84,02/26/19 13:02,"620 Cedar St, San Francisco, CA 94016" -161900,iPhone,1,700,02/02/19 00:24,"768 Meadow St, Atlanta, GA 30301" -161901,USB-C Charging Cable,1,11.95,02/24/19 18:48,"759 Hickory St, Los Angeles, CA 90001" -161902,27in FHD Monitor,1,149.99,02/01/19 08:08,"951 Cedar St, Portland, ME 04101" -161903,USB-C Charging Cable,1,11.95,02/08/19 22:13,"286 Meadow St, Atlanta, GA 30301" -161904,27in FHD Monitor,1,149.99,02/01/19 11:29,"107 North St, San Francisco, CA 94016" -161905,Bose SoundSport Headphones,1,99.99,02/03/19 19:46,"390 Jackson St, Portland, OR 97035" -161906,AAA Batteries (4-pack),3,2.99,02/24/19 08:51,"733 Walnut St, Los Angeles, CA 90001" -161907,AAA Batteries (4-pack),2,2.99,02/05/19 14:59,"343 Meadow St, Los Angeles, CA 90001" -161908,Apple Airpods Headphones,1,150,02/21/19 14:30,"249 Willow St, San Francisco, CA 94016" -161909,Google Phone,1,600,02/02/19 15:31,"795 Hickory St, San Francisco, CA 94016" -161910,Lightning Charging Cable,1,14.95,02/02/19 20:55,"704 Dogwood St, Los Angeles, CA 90001" -161911,Lightning Charging Cable,1,14.95,02/22/19 21:54,"190 Chestnut St, Los Angeles, CA 90001" -161912,LG Washing Machine,1,600.0,02/04/19 19:21,"141 South St, Atlanta, GA 30301" -161913,USB-C Charging Cable,1,11.95,02/18/19 01:45,"668 Hill St, Boston, MA 02215" -161914,Bose SoundSport Headphones,2,99.99,02/01/19 17:50,"766 5th St, Portland, OR 97035" -161915,AA Batteries (4-pack),1,3.84,02/20/19 08:39,"114 Jefferson St, San Francisco, CA 94016" -161916,34in Ultrawide Monitor,1,379.99,02/05/19 22:02,"212 Cedar St, New York City, NY 10001" -161917,Wired Headphones,1,11.99,02/19/19 11:04,"434 Church St, Boston, MA 02215" -161918,Lightning Charging Cable,1,14.95,02/15/19 13:54,"980 Hill St, Boston, MA 02215" -161919,Lightning Charging Cable,1,14.95,02/25/19 21:36,"414 Church St, New York City, NY 10001" -161920,Google Phone,1,600,02/24/19 20:34,"284 Walnut St, San Francisco, CA 94016" -161920,USB-C Charging Cable,1,11.95,02/24/19 20:34,"284 Walnut St, San Francisco, CA 94016" -161920,AAA Batteries (4-pack),1,2.99,02/24/19 20:34,"284 Walnut St, San Francisco, CA 94016" -161921,Lightning Charging Cable,1,14.95,02/25/19 10:19,"601 10th St, Boston, MA 02215" -161922,34in Ultrawide Monitor,1,379.99,02/09/19 10:08,"783 Elm St, Portland, ME 04101" -161923,AAA Batteries (4-pack),2,2.99,02/11/19 17:56,"260 Washington St, San Francisco, CA 94016" -161924,AA Batteries (4-pack),1,3.84,02/26/19 18:38,"134 Forest St, Atlanta, GA 30301" -161925,Wired Headphones,1,11.99,02/04/19 15:00,"662 14th St, Los Angeles, CA 90001" -161926,Wired Headphones,1,11.99,02/06/19 11:08,"545 Meadow St, San Francisco, CA 94016" -161927,Apple Airpods Headphones,1,150,02/14/19 16:50,"809 Jefferson St, San Francisco, CA 94016" -161928,AA Batteries (4-pack),1,3.84,02/19/19 10:10,"70 6th St, Atlanta, GA 30301" -161929,Lightning Charging Cable,1,14.95,02/19/19 14:54,"722 South St, Dallas, TX 75001" -161930,AA Batteries (4-pack),1,3.84,02/02/19 15:54,"986 Johnson St, Seattle, WA 98101" -161931,iPhone,1,700,02/18/19 21:01,"588 12th St, Boston, MA 02215" -161932,USB-C Charging Cable,1,11.95,02/12/19 16:54,"439 Elm St, Portland, OR 97035" -161933,34in Ultrawide Monitor,1,379.99,02/20/19 16:51,"851 4th St, San Francisco, CA 94016" -161934,34in Ultrawide Monitor,1,379.99,02/09/19 01:51,"111 Walnut St, Portland, OR 97035" -161935,AAA Batteries (4-pack),1,2.99,02/15/19 12:58,"832 Jackson St, Boston, MA 02215" -161936,Flatscreen TV,1,300,02/21/19 01:41,"266 Jackson St, Seattle, WA 98101" -161937,Lightning Charging Cable,1,14.95,02/18/19 14:47,"487 Ridge St, Austin, TX 73301" -161938,USB-C Charging Cable,1,11.95,02/12/19 14:41,"210 1st St, Austin, TX 73301" -161939,34in Ultrawide Monitor,1,379.99,02/05/19 20:24,"109 Madison St, San Francisco, CA 94016" -161940,USB-C Charging Cable,1,11.95,02/22/19 10:52,"285 Highland St, Los Angeles, CA 90001" -161941,Lightning Charging Cable,1,14.95,02/05/19 20:38,"587 Madison St, San Francisco, CA 94016" -161942,Bose SoundSport Headphones,1,99.99,02/03/19 07:11,"143 Main St, Dallas, TX 75001" -161943,AAA Batteries (4-pack),1,2.99,02/16/19 17:43,"530 1st St, Seattle, WA 98101" -161944,Apple Airpods Headphones,1,150,02/24/19 09:34,"631 North St, New York City, NY 10001" -161945,USB-C Charging Cable,1,11.95,02/19/19 09:44,"814 Highland St, Dallas, TX 75001" -161945,34in Ultrawide Monitor,1,379.99,02/19/19 09:44,"814 Highland St, Dallas, TX 75001" -161946,Wired Headphones,2,11.99,02/15/19 16:51,"981 Cherry St, Dallas, TX 75001" -161947,Apple Airpods Headphones,1,150,02/11/19 18:39,"244 Jackson St, Dallas, TX 75001" -161948,iPhone,1,700,02/03/19 21:08,"207 Dogwood St, San Francisco, CA 94016" -161949,AAA Batteries (4-pack),1,2.99,02/19/19 11:08,"843 Chestnut St, Los Angeles, CA 90001" -,,,,, -161950,Bose SoundSport Headphones,1,99.99,02/27/19 18:26,"461 Church St, New York City, NY 10001" -161951,AA Batteries (4-pack),2,3.84,02/22/19 18:48,"634 Walnut St, San Francisco, CA 94016" -161952,27in FHD Monitor,1,149.99,02/13/19 01:52,"534 1st St, New York City, NY 10001" -161953,AAA Batteries (4-pack),1,2.99,02/14/19 09:52,"313 11th St, San Francisco, CA 94016" -161954,ThinkPad Laptop,1,999.99,02/06/19 13:32,"972 9th St, Portland, ME 04101" -161955,USB-C Charging Cable,1,11.95,02/08/19 11:16,"476 Walnut St, Austin, TX 73301" -161956,Lightning Charging Cable,1,14.95,02/12/19 18:57,"74 10th St, Los Angeles, CA 90001" -161957,Wired Headphones,1,11.99,02/25/19 07:28,"408 7th St, Boston, MA 02215" -161958,USB-C Charging Cable,1,11.95,02/20/19 18:28,"5 Lake St, San Francisco, CA 94016" -161959,Bose SoundSport Headphones,1,99.99,02/12/19 06:18,"396 Main St, New York City, NY 10001" -161960,Vareebadd Phone,1,400,02/01/19 11:32,"867 Cherry St, Boston, MA 02215" -161960,USB-C Charging Cable,2,11.95,02/01/19 11:32,"867 Cherry St, Boston, MA 02215" -161961,27in 4K Gaming Monitor,1,389.99,02/28/19 16:13,"200 Chestnut St, San Francisco, CA 94016" -161962,Macbook Pro Laptop,1,1700,02/12/19 17:28,"953 Maple St, San Francisco, CA 94016" -161963,USB-C Charging Cable,1,11.95,02/15/19 17:13,"277 2nd St, New York City, NY 10001" -161964,Vareebadd Phone,1,400,02/24/19 14:09,"82 Jefferson St, Dallas, TX 75001" -161965,Lightning Charging Cable,1,14.95,02/16/19 11:08,"702 2nd St, Seattle, WA 98101" -161966,Bose SoundSport Headphones,1,99.99,02/19/19 18:58,"540 Dogwood St, Atlanta, GA 30301" -161967,20in Monitor,1,109.99,02/20/19 12:27,"586 Ridge St, Austin, TX 73301" -161968,AA Batteries (4-pack),1,3.84,02/15/19 17:58,"180 2nd St, Seattle, WA 98101" -161969,Lightning Charging Cable,1,14.95,02/17/19 10:17,"593 Church St, San Francisco, CA 94016" -161970,Wired Headphones,1,11.99,02/09/19 13:23,"802 Washington St, San Francisco, CA 94016" -161971,Macbook Pro Laptop,1,1700,02/09/19 18:19,"367 13th St, San Francisco, CA 94016" -161972,Google Phone,1,600,02/02/19 21:01,"59 Lincoln St, Austin, TX 73301" -161972,USB-C Charging Cable,1,11.95,02/02/19 21:01,"59 Lincoln St, Austin, TX 73301" -161973,Lightning Charging Cable,1,14.95,02/09/19 17:11,"537 9th St, Los Angeles, CA 90001" -161974,34in Ultrawide Monitor,1,379.99,02/24/19 10:12,"812 Forest St, Boston, MA 02215" -161975,iPhone,1,700,02/27/19 21:31,"608 14th St, Los Angeles, CA 90001" -161976,27in FHD Monitor,1,149.99,02/23/19 17:49,"118 Hickory St, Los Angeles, CA 90001" -161977,USB-C Charging Cable,1,11.95,02/08/19 01:36,"541 Walnut St, San Francisco, CA 94016" -161978,AA Batteries (4-pack),4,3.84,02/09/19 08:25,"43 Church St, Atlanta, GA 30301" -161979,27in FHD Monitor,1,149.99,02/14/19 20:50,"251 Maple St, San Francisco, CA 94016" -161980,AA Batteries (4-pack),1,3.84,02/07/19 15:58,"940 6th St, Austin, TX 73301" -161981,34in Ultrawide Monitor,1,379.99,02/26/19 11:47,"901 12th St, Portland, OR 97035" -161982,AAA Batteries (4-pack),1,2.99,02/01/19 19:47,"805 1st St, San Francisco, CA 94016" -161983,Macbook Pro Laptop,1,1700,02/25/19 00:27,"502 Chestnut St, San Francisco, CA 94016" -161984,AAA Batteries (4-pack),1,2.99,02/04/19 10:49,"697 6th St, Los Angeles, CA 90001" -161985,Apple Airpods Headphones,1,150,02/26/19 14:39,"16 South St, Portland, OR 97035" -161986,Apple Airpods Headphones,1,150,02/12/19 08:21,"642 Pine St, San Francisco, CA 94016" -161987,Wired Headphones,1,11.99,02/15/19 20:18,"269 13th St, Los Angeles, CA 90001" -161988,Bose SoundSport Headphones,1,99.99,02/28/19 07:49,"970 5th St, San Francisco, CA 94016" -161989,USB-C Charging Cable,1,11.95,02/21/19 18:41,"68 West St, San Francisco, CA 94016" -161990,AA Batteries (4-pack),1,3.84,02/17/19 20:05,"309 4th St, Los Angeles, CA 90001" -161991,AAA Batteries (4-pack),1,2.99,02/01/19 19:24,"815 14th St, Dallas, TX 75001" -161992,34in Ultrawide Monitor,1,379.99,02/01/19 23:27,"101 Walnut St, Boston, MA 02215" -161993,AAA Batteries (4-pack),1,2.99,02/10/19 12:09,"848 9th St, Seattle, WA 98101" -161994,AA Batteries (4-pack),2,3.84,02/09/19 12:04,"396 Willow St, Dallas, TX 75001" -161995,Lightning Charging Cable,1,14.95,02/23/19 10:33,"761 14th St, Los Angeles, CA 90001" -161996,27in FHD Monitor,1,149.99,02/22/19 20:09,"979 Willow St, New York City, NY 10001" -161997,Google Phone,1,600,02/28/19 22:15,"845 8th St, San Francisco, CA 94016" -161997,USB-C Charging Cable,1,11.95,02/28/19 22:15,"845 8th St, San Francisco, CA 94016" -161998,Apple Airpods Headphones,1,150,02/09/19 18:31,"838 14th St, San Francisco, CA 94016" -161999,27in 4K Gaming Monitor,1,389.99,02/16/19 19:08,"169 Willow St, New York City, NY 10001" -162000,Macbook Pro Laptop,1,1700,02/16/19 16:44,"315 Lincoln St, San Francisco, CA 94016" -162001,USB-C Charging Cable,1,11.95,02/06/19 15:32,"380 Ridge St, San Francisco, CA 94016" -162002,USB-C Charging Cable,1,11.95,02/25/19 14:30,"859 West St, San Francisco, CA 94016" -162003,Macbook Pro Laptop,1,1700,02/15/19 18:31,"115 Spruce St, New York City, NY 10001" -162004,Apple Airpods Headphones,1,150,02/12/19 22:02,"227 Church St, San Francisco, CA 94016" -162005,AAA Batteries (4-pack),2,2.99,02/04/19 20:44,"417 Jefferson St, Los Angeles, CA 90001" -162006,USB-C Charging Cable,1,11.95,02/24/19 06:31,"498 8th St, Atlanta, GA 30301" -162007,USB-C Charging Cable,1,11.95,02/24/19 19:09,"715 7th St, Dallas, TX 75001" -162008,27in FHD Monitor,1,149.99,02/26/19 17:15,"677 West St, Los Angeles, CA 90001" -141234,iPhone,1,700,01/22/19 21:25,"944 Walnut St, Boston, MA 02215" -141235,Lightning Charging Cable,1,14.95,01/28/19 14:15,"185 Maple St, Portland, OR 97035" -141236,Wired Headphones,2,11.99,01/17/19 13:33,"538 Adams St, San Francisco, CA 94016" -141237,27in FHD Monitor,1,149.99,01/05/19 20:33,"738 10th St, Los Angeles, CA 90001" -141238,Wired Headphones,1,11.99,01/25/19 11:59,"387 10th St, Austin, TX 73301" -141239,AAA Batteries (4-pack),1,2.99,01/29/19 20:22,"775 Willow St, San Francisco, CA 94016" -141240,27in 4K Gaming Monitor,1,389.99,01/26/19 12:16,"979 Park St, Los Angeles, CA 90001" -141241,USB-C Charging Cable,1,11.95,01/05/19 12:04,"181 6th St, San Francisco, CA 94016" -141242,Bose SoundSport Headphones,1,99.99,01/01/19 10:30,"867 Willow St, Los Angeles, CA 90001" -141243,Apple Airpods Headphones,1,150,01/22/19 21:20,"657 Johnson St, San Francisco, CA 94016" -141244,Apple Airpods Headphones,1,150,01/07/19 11:29,"492 Walnut St, San Francisco, CA 94016" -141245,Macbook Pro Laptop,1,1700,01/31/19 10:12,"322 6th St, San Francisco, CA 94016" -141246,AAA Batteries (4-pack),3,2.99,01/09/19 18:57,"618 7th St, Los Angeles, CA 90001" -141247,27in FHD Monitor,1,149.99,01/25/19 19:19,"512 Wilson St, San Francisco, CA 94016" -141248,Flatscreen TV,1,300,01/03/19 21:54,"363 Spruce St, Austin, TX 73301" -141249,27in FHD Monitor,1,149.99,01/05/19 17:20,"440 Cedar St, Portland, OR 97035" -141250,Vareebadd Phone,1,400,01/10/19 11:20,"471 Center St, Los Angeles, CA 90001" -141251,Apple Airpods Headphones,1,150,01/24/19 08:13,"414 Walnut St, Boston, MA 02215" -141252,USB-C Charging Cable,1,11.95,01/30/19 09:28,"220 9th St, Los Angeles, CA 90001" -141253,AA Batteries (4-pack),1,3.84,01/17/19 00:09,"385 11th St, Atlanta, GA 30301" -141254,AAA Batteries (4-pack),1,2.99,01/08/19 11:51,"238 Sunset St, Seattle, WA 98101" -141255,USB-C Charging Cable,1,11.95,01/09/19 20:55,"764 11th St, Los Angeles, CA 90001" -141256,Google Phone,1,600,01/29/19 10:40,"675 Washington St, Portland, OR 97035" -141257,Apple Airpods Headphones,1,150,01/12/19 18:51,"338 Highland St, San Francisco, CA 94016" -141258,AA Batteries (4-pack),1,3.84,01/19/19 21:47,"820 1st St, San Francisco, CA 94016" -141259,AAA Batteries (4-pack),2,2.99,01/20/19 17:26,"920 Adams St, San Francisco, CA 94016" -141260,AAA Batteries (4-pack),1,2.99,01/01/19 22:00,"293 Hill St, San Francisco, CA 94016" -141261,USB-C Charging Cable,1,11.95,01/09/19 18:14,"840 Lincoln St, Atlanta, GA 30301" -141262,AAA Batteries (4-pack),1,2.99,01/16/19 12:35,"291 Lincoln St, San Francisco, CA 94016" -141263,Bose SoundSport Headphones,1,99.99,01/11/19 23:33,"640 Spruce St, Boston, MA 02215" -141264,Apple Airpods Headphones,1,150,01/03/19 09:46,"937 Highland St, New York City, NY 10001" -141265,Apple Airpods Headphones,1,150,01/01/19 16:52,"853 Ridge St, Boston, MA 02215" -141266,27in 4K Gaming Monitor,1,389.99,01/02/19 22:21,"834 4th St, Dallas, TX 75001" -141267,Apple Airpods Headphones,1,150,01/09/19 08:28,"649 Sunset St, Los Angeles, CA 90001" -141268,AA Batteries (4-pack),1,3.84,01/14/19 10:13,"611 Elm St, New York City, NY 10001" -141269,27in 4K Gaming Monitor,1,389.99,01/03/19 20:05,"812 Jefferson St, Los Angeles, CA 90001" -141270,Wired Headphones,1,11.99,01/27/19 23:10,"469 Hill St, San Francisco, CA 94016" -141271,USB-C Charging Cable,1,11.95,01/30/19 10:51,"90 13th St, Boston, MA 02215" -141272,AAA Batteries (4-pack),1,2.99,01/12/19 13:09,"818 Lincoln St, New York City, NY 10001" -141273,Wired Headphones,2,11.99,01/29/19 12:04,"994 13th St, Boston, MA 02215" -141274,USB-C Charging Cable,1,11.95,01/17/19 11:30,"8 Jackson St, Los Angeles, CA 90001" -141275,USB-C Charging Cable,1,11.95,01/07/19 16:06,"610 Walnut St, Austin, TX 73301" -141275,Wired Headphones,1,11.99,01/07/19 16:06,"610 Walnut St, Austin, TX 73301" -141276,Lightning Charging Cable,1,14.95,01/21/19 22:23,"63 Cherry St, Los Angeles, CA 90001" -141277,Bose SoundSport Headphones,1,99.99,01/13/19 19:07,"370 Lakeview St, Austin, TX 73301" -141278,Lightning Charging Cable,1,14.95,01/26/19 12:14,"100 Cherry St, New York City, NY 10001" -141279,Lightning Charging Cable,1,14.95,01/03/19 19:10,"938 14th St, Boston, MA 02215" -141280,AAA Batteries (4-pack),1,2.99,01/20/19 16:10,"530 7th St, Los Angeles, CA 90001" -141281,Lightning Charging Cable,1,14.95,01/05/19 16:51,"274 2nd St, Atlanta, GA 30301" -141282,Vareebadd Phone,1,400,01/11/19 18:10,"125 Center St, New York City, NY 10001" -141283,Flatscreen TV,1,300,01/02/19 16:16,"68 Hickory St, Seattle, WA 98101" -141284,Wired Headphones,1,11.99,01/29/19 18:30,"462 1st St, Los Angeles, CA 90001" -141285,AAA Batteries (4-pack),3,2.99,01/14/19 14:13,"447 Cedar St, Seattle, WA 98101" -141286,27in 4K Gaming Monitor,1,389.99,01/02/19 20:33,"505 Hickory St, Dallas, TX 75001" -141287,Bose SoundSport Headphones,1,99.99,01/31/19 08:38,"386 Elm St, San Francisco, CA 94016" -141288,Macbook Pro Laptop,1,1700,01/19/19 08:17,"789 Washington St, Los Angeles, CA 90001" -141289,20in Monitor,1,109.99,01/28/19 11:17,"534 Elm St, Atlanta, GA 30301" -141290,Apple Airpods Headphones,1,150,01/02/19 08:25,"4 1st St, Los Angeles, CA 90001" -141290,AA Batteries (4-pack),3,3.84,01/02/19 08:25,"4 1st St, Los Angeles, CA 90001" -141291,AA Batteries (4-pack),1,3.84,01/26/19 18:11,"632 13th St, Los Angeles, CA 90001" -141292,AAA Batteries (4-pack),1,2.99,01/21/19 08:46,"847 Ridge St, Los Angeles, CA 90001" -141293,USB-C Charging Cable,1,11.95,01/18/19 12:21,"880 Washington St, Boston, MA 02215" -141294,Bose SoundSport Headphones,1,99.99,01/25/19 08:12,"907 Highland St, San Francisco, CA 94016" -141295,AA Batteries (4-pack),1,3.84,01/06/19 20:06,"898 Lakeview St, Austin, TX 73301" -141296,USB-C Charging Cable,1,11.95,01/20/19 00:21,"889 Cedar St, Atlanta, GA 30301" -141297,Lightning Charging Cable,1,14.95,01/04/19 11:09,"566 Highland St, San Francisco, CA 94016" -141298,Lightning Charging Cable,1,14.95,01/21/19 13:24,"81 10th St, Dallas, TX 75001" -141299,AAA Batteries (4-pack),1,2.99,01/31/19 23:23,"836 Hill St, Dallas, TX 75001" -141300,Apple Airpods Headphones,1,150,01/23/19 10:21,"121 Cherry St, Boston, MA 02215" -141301,Apple Airpods Headphones,1,150,01/27/19 11:58,"867 Hill St, New York City, NY 10001" -141302,AAA Batteries (4-pack),2,2.99,01/18/19 20:12,"90 14th St, Portland, OR 97035" -141303,AA Batteries (4-pack),1,3.84,01/19/19 09:23,"313 14th St, Seattle, WA 98101" -141304,USB-C Charging Cable,1,11.95,01/28/19 13:10,"363 Willow St, Los Angeles, CA 90001" -141305,AAA Batteries (4-pack),3,2.99,01/27/19 16:51,"756 Wilson St, Austin, TX 73301" -141306,Wired Headphones,1,11.99,01/19/19 10:25,"458 Forest St, San Francisco, CA 94016" -141307,AAA Batteries (4-pack),1,2.99,01/11/19 11:18,"895 Johnson St, Boston, MA 02215" -141308,27in FHD Monitor,1,149.99,01/12/19 12:00,"926 Cedar St, Portland, OR 97035" -141309,AAA Batteries (4-pack),2,2.99,01/20/19 07:02,"423 Elm St, San Francisco, CA 94016" -141310,AAA Batteries (4-pack),1,2.99,01/07/19 13:32,"679 8th St, San Francisco, CA 94016" -141311,34in Ultrawide Monitor,1,379.99,01/28/19 12:45,"223 North St, Atlanta, GA 30301" -141312,Apple Airpods Headphones,1,150,01/08/19 23:20,"741 11th St, San Francisco, CA 94016" -141313,Lightning Charging Cable,1,14.95,01/09/19 15:03,"38 Johnson St, Los Angeles, CA 90001" -141314,Macbook Pro Laptop,1,1700,01/13/19 23:51,"700 Jefferson St, New York City, NY 10001" -141315,USB-C Charging Cable,1,11.95,01/10/19 01:32,"842 8th St, Seattle, WA 98101" -141316,AAA Batteries (4-pack),3,2.99,01/01/19 07:26,"235 South St, Seattle, WA 98101" -141317,27in FHD Monitor,1,149.99,01/21/19 11:18,"875 Meadow St, New York City, NY 10001" -141318,Bose SoundSport Headphones,1,99.99,01/09/19 15:21,"789 Lakeview St, Boston, MA 02215" -141319,Bose SoundSport Headphones,1,99.99,01/01/19 10:43,"548 Maple St, Boston, MA 02215" -141320,AA Batteries (4-pack),1,3.84,01/24/19 13:37,"326 12th St, Los Angeles, CA 90001" -141321,Bose SoundSport Headphones,1,99.99,01/10/19 09:07,"207 8th St, Los Angeles, CA 90001" -141322,AAA Batteries (4-pack),2,2.99,01/12/19 21:56,"816 Lake St, Boston, MA 02215" -141323,USB-C Charging Cable,1,11.95,01/17/19 21:54,"240 River St, New York City, NY 10001" -141324,USB-C Charging Cable,1,11.95,01/04/19 23:36,"851 Maple St, San Francisco, CA 94016" -141325,Bose SoundSport Headphones,1,99.99,01/23/19 15:17,"880 Lake St, Austin, TX 73301" -141326,Google Phone,1,600,01/05/19 13:49,"131 Center St, San Francisco, CA 94016" -141327,USB-C Charging Cable,1,11.95,01/31/19 01:38,"238 Washington St, Los Angeles, CA 90001" -141328,ThinkPad Laptop,1,999.99,01/06/19 23:18,"736 5th St, Seattle, WA 98101" -141329,USB-C Charging Cable,1,11.95,01/01/19 16:01,"122 5th St, Portland, ME 04101" -141330,Wired Headphones,1,11.99,01/21/19 13:04,"391 5th St, Portland, OR 97035" -141331,Flatscreen TV,1,300,01/09/19 18:32,"299 Park St, San Francisco, CA 94016" -141332,USB-C Charging Cable,1,11.95,01/19/19 18:52,"207 7th St, Los Angeles, CA 90001" -141333,27in FHD Monitor,1,149.99,01/01/19 13:58,"554 10th St, Los Angeles, CA 90001" -141334,USB-C Charging Cable,1,11.95,01/15/19 02:05,"459 4th St, San Francisco, CA 94016" -141335,AAA Batteries (4-pack),5,2.99,01/12/19 18:16,"174 4th St, Los Angeles, CA 90001" -141336,iPhone,1,700,01/09/19 18:23,"811 Hickory St, Portland, OR 97035" -141337,Bose SoundSport Headphones,1,99.99,01/09/19 09:22,"947 Church St, San Francisco, CA 94016" -141338,AAA Batteries (4-pack),1,2.99,01/29/19 16:19,"542 4th St, Dallas, TX 75001" -141339,AAA Batteries (4-pack),1,2.99,01/28/19 12:52,"539 Lakeview St, Dallas, TX 75001" -141340,Lightning Charging Cable,1,14.95,01/27/19 14:30,"710 Johnson St, Boston, MA 02215" -141341,LG Dryer,1,600.0,01/13/19 10:09,"844 Walnut St, Austin, TX 73301" -141342,Wired Headphones,1,11.99,01/26/19 21:13,"119 9th St, Seattle, WA 98101" -141343,Bose SoundSport Headphones,1,99.99,01/24/19 13:36,"157 1st St, New York City, NY 10001" -141344,Apple Airpods Headphones,1,150,01/20/19 12:38,"443 Washington St, Portland, OR 97035" -141345,USB-C Charging Cable,1,11.95,01/09/19 13:55,"398 5th St, San Francisco, CA 94016" -141346,Apple Airpods Headphones,1,150,01/14/19 13:59,"285 Cherry St, Boston, MA 02215" -141347,AA Batteries (4-pack),1,3.84,01/27/19 17:46,"885 Walnut St, Atlanta, GA 30301" -141348,USB-C Charging Cable,2,11.95,01/26/19 18:56,"493 5th St, Portland, OR 97035" -141349,Lightning Charging Cable,1,14.95,01/03/19 20:51,"886 10th St, New York City, NY 10001" -141350,Lightning Charging Cable,1,14.95,01/01/19 11:17,"804 River St, San Francisco, CA 94016" -141351,USB-C Charging Cable,2,11.95,01/24/19 17:02,"865 Church St, San Francisco, CA 94016" -141352,Lightning Charging Cable,1,14.95,01/11/19 19:07,"800 4th St, Los Angeles, CA 90001" -141353,USB-C Charging Cable,1,11.95,01/26/19 10:35,"870 Cherry St, New York City, NY 10001" -141354,Bose SoundSport Headphones,1,99.99,01/03/19 11:12,"869 Hill St, Atlanta, GA 30301" -141355,27in 4K Gaming Monitor,1,389.99,01/18/19 15:24,"674 Main St, Dallas, TX 75001" -141356,Lightning Charging Cable,1,14.95,01/09/19 17:32,"336 1st St, Boston, MA 02215" -141357,Lightning Charging Cable,1,14.95,01/23/19 05:30,"850 River St, Atlanta, GA 30301" -141358,Lightning Charging Cable,1,14.95,01/05/19 15:31,"911 Madison St, San Francisco, CA 94016" -141359,AAA Batteries (4-pack),2,2.99,01/09/19 22:21,"383 11th St, Seattle, WA 98101" -141360,Macbook Pro Laptop,1,1700,01/17/19 21:00,"263 Meadow St, Los Angeles, CA 90001" -141361,Apple Airpods Headphones,2,150,01/23/19 15:39,"181 Lakeview St, Portland, OR 97035" -141362,Lightning Charging Cable,1,14.95,01/02/19 22:17,"392 Cherry St, Atlanta, GA 30301" -141363,Wired Headphones,1,11.99,01/08/19 06:24,"921 Highland St, Dallas, TX 75001" -141364,AA Batteries (4-pack),1,3.84,01/01/19 07:46,"657 Lincoln St, Dallas, TX 75001" -141365,Vareebadd Phone,1,400,01/10/19 11:19,"20 Dogwood St, New York City, NY 10001" -141365,Wired Headphones,1,11.99,01/10/19 11:19,"20 Dogwood St, New York City, NY 10001" -141366,Flatscreen TV,1,300,01/17/19 22:34,"803 Church St, Seattle, WA 98101" -141367,27in 4K Gaming Monitor,1,389.99,01/09/19 10:06,"23 13th St, San Francisco, CA 94016" -141368,USB-C Charging Cable,1,11.95,01/10/19 21:39,"387 Hill St, Los Angeles, CA 90001" -141369,Lightning Charging Cable,1,14.95,01/21/19 21:03,"785 9th St, San Francisco, CA 94016" -141370,AAA Batteries (4-pack),2,2.99,01/24/19 20:53,"375 Center St, Seattle, WA 98101" -141371,Lightning Charging Cable,1,14.95,01/23/19 18:34,"685 West St, Atlanta, GA 30301" -141372,AAA Batteries (4-pack),1,2.99,01/26/19 10:07,"134 Hickory St, Portland, ME 04101" -141373,27in FHD Monitor,1,149.99,01/20/19 13:08,"82 Hickory St, San Francisco, CA 94016" -141374,Wired Headphones,1,11.99,01/14/19 10:12,"386 12th St, Boston, MA 02215" -141375,27in 4K Gaming Monitor,1,389.99,01/10/19 13:51,"49 Center St, Los Angeles, CA 90001" -141376,Wired Headphones,1,11.99,01/20/19 14:57,"32 West St, Los Angeles, CA 90001" -141377,Wired Headphones,1,11.99,01/20/19 15:12,"711 11th St, San Francisco, CA 94016" -141378,USB-C Charging Cable,1,11.95,01/22/19 10:25,"777 North St, Boston, MA 02215" -141379,AA Batteries (4-pack),1,3.84,01/25/19 18:00,"378 Center St, San Francisco, CA 94016" -141380,USB-C Charging Cable,1,11.95,01/17/19 18:45,"868 14th St, Los Angeles, CA 90001" -141381,Bose SoundSport Headphones,1,99.99,01/03/19 18:22,"336 Jackson St, Los Angeles, CA 90001" -141382,AAA Batteries (4-pack),1,2.99,01/16/19 13:50,"613 Ridge St, Dallas, TX 75001" -141383,AAA Batteries (4-pack),1,2.99,01/08/19 10:01,"418 11th St, Boston, MA 02215" -141384,Google Phone,1,600,01/03/19 00:14,"223 Jackson St, Boston, MA 02215" -141384,USB-C Charging Cable,1,11.95,01/03/19 00:14,"223 Jackson St, Boston, MA 02215" -141385,Macbook Pro Laptop,1,1700,01/10/19 12:59,"502 Walnut St, Atlanta, GA 30301" -141386,Lightning Charging Cable,1,14.95,01/08/19 19:27,"692 13th St, New York City, NY 10001" -141387,AAA Batteries (4-pack),1,2.99,01/17/19 11:12,"807 Jackson St, San Francisco, CA 94016" -141388,Lightning Charging Cable,1,14.95,01/22/19 10:53,"24 Park St, Dallas, TX 75001" -141389,AA Batteries (4-pack),1,3.84,01/26/19 11:07,"176 Church St, Los Angeles, CA 90001" -141390,Wired Headphones,1,11.99,01/26/19 11:22,"667 Park St, New York City, NY 10001" -141391,Bose SoundSport Headphones,1,99.99,01/31/19 10:02,"375 Johnson St, New York City, NY 10001" -141392,Apple Airpods Headphones,1,150,01/25/19 13:51,"755 Cherry St, Seattle, WA 98101" -141393,USB-C Charging Cable,1,11.95,01/18/19 17:57,"240 Meadow St, Boston, MA 02215" -141394,iPhone,1,700,01/06/19 16:54,"534 12th St, San Francisco, CA 94016" -141395,AAA Batteries (4-pack),1,2.99,01/29/19 16:20,"790 Hickory St, Portland, ME 04101" -141396,USB-C Charging Cable,1,11.95,01/26/19 14:10,"141 Elm St, San Francisco, CA 94016" -141397,Lightning Charging Cable,1,14.95,01/13/19 12:59,"940 8th St, New York City, NY 10001" -141398,AAA Batteries (4-pack),1,2.99,01/04/19 16:31,"33 Jackson St, Dallas, TX 75001" -141399,ThinkPad Laptop,1,999.99,01/17/19 09:57,"830 Walnut St, Atlanta, GA 30301" -141400,Lightning Charging Cable,1,14.95,01/18/19 18:09,"215 Park St, New York City, NY 10001" -141401,Apple Airpods Headphones,1,150,01/23/19 12:50,"34 Cedar St, Portland, OR 97035" -141402,AAA Batteries (4-pack),1,2.99,01/07/19 12:56,"939 Lakeview St, Atlanta, GA 30301" -141403,Lightning Charging Cable,1,14.95,01/26/19 16:41,"216 Meadow St, Boston, MA 02215" -141404,AA Batteries (4-pack),1,3.84,01/29/19 20:06,"200 14th St, San Francisco, CA 94016" -141405,Wired Headphones,1,11.99,01/29/19 11:00,"247 Forest St, Los Angeles, CA 90001" -141406,USB-C Charging Cable,1,11.95,01/28/19 12:02,"110 13th St, Seattle, WA 98101" -141407,Apple Airpods Headphones,1,150,01/01/19 16:06,"946 12th St, Portland, ME 04101" -141408,Apple Airpods Headphones,1,150,01/07/19 13:25,"103 14th St, San Francisco, CA 94016" -141409,Bose SoundSport Headphones,1,99.99,01/01/19 21:49,"36 Highland St, Portland, ME 04101" -141410,27in FHD Monitor,1,149.99,01/03/19 22:02,"890 6th St, Dallas, TX 75001" -141411,Wired Headphones,1,11.99,01/15/19 05:35,"350 Main St, New York City, NY 10001" -141412,AA Batteries (4-pack),2,3.84,01/14/19 17:16,"397 Dogwood St, Atlanta, GA 30301" -141413,AA Batteries (4-pack),1,3.84,01/24/19 17:54,"793 5th St, San Francisco, CA 94016" -141414,Google Phone,1,600,01/26/19 03:38,"609 14th St, New York City, NY 10001" -141415,Wired Headphones,1,11.99,01/12/19 19:02,"81 Madison St, San Francisco, CA 94016" -141416,AAA Batteries (4-pack),1,2.99,01/02/19 13:37,"209 North St, Atlanta, GA 30301" -141417,Bose SoundSport Headphones,1,99.99,01/03/19 08:21,"207 1st St, San Francisco, CA 94016" -141418,Apple Airpods Headphones,1,150,01/10/19 12:48,"145 Lakeview St, New York City, NY 10001" -141419,Wired Headphones,1,11.99,01/22/19 11:53,"910 Meadow St, San Francisco, CA 94016" -141420,Lightning Charging Cable,2,14.95,01/09/19 12:19,"74 7th St, San Francisco, CA 94016" -141421,Flatscreen TV,1,300,01/24/19 13:18,"154 7th St, Dallas, TX 75001" -141422,Apple Airpods Headphones,1,150,01/16/19 22:23,"970 Lakeview St, Boston, MA 02215" -141423,Lightning Charging Cable,2,14.95,01/06/19 13:41,"440 South St, New York City, NY 10001" -141424,Apple Airpods Headphones,1,150,01/13/19 19:49,"971 Walnut St, Atlanta, GA 30301" -141425,Wired Headphones,1,11.99,01/19/19 14:59,"347 Hill St, Atlanta, GA 30301" -141426,Google Phone,1,600,01/12/19 12:57,"824 Madison St, Dallas, TX 75001" -141427,USB-C Charging Cable,1,11.95,01/16/19 14:44,"355 13th St, Los Angeles, CA 90001" -141428,AA Batteries (4-pack),1,3.84,01/22/19 10:06,"295 West St, New York City, NY 10001" -141429,Apple Airpods Headphones,1,150,01/21/19 06:04,"273 Hill St, Atlanta, GA 30301" -141430,34in Ultrawide Monitor,1,379.99,01/23/19 21:37,"428 Cedar St, Los Angeles, CA 90001" -141431,USB-C Charging Cable,1,11.95,01/04/19 07:16,"728 Lakeview St, Los Angeles, CA 90001" -141432,USB-C Charging Cable,1,11.95,01/18/19 22:38,"574 Johnson St, San Francisco, CA 94016" -141433,Google Phone,1,600,01/15/19 20:08,"179 West St, San Francisco, CA 94016" -141434,27in 4K Gaming Monitor,1,389.99,01/13/19 19:03,"480 Lakeview St, San Francisco, CA 94016" -141435,USB-C Charging Cable,1,11.95,01/15/19 10:55,"445 4th St, Atlanta, GA 30301" -141436,Bose SoundSport Headphones,1,99.99,01/03/19 07:59,"792 Lakeview St, San Francisco, CA 94016" -141437,iPhone,1,700,01/10/19 15:40,"377 Meadow St, New York City, NY 10001" -141438,Wired Headphones,2,11.99,01/29/19 17:36,"331 Center St, Seattle, WA 98101" -141439,Flatscreen TV,1,300,01/09/19 20:49,"536 Walnut St, Boston, MA 02215" -141440,Google Phone,1,600,01/31/19 23:10,"222 Lakeview St, San Francisco, CA 94016" -141441,AA Batteries (4-pack),1,3.84,01/20/19 19:08,"631 Elm St, Los Angeles, CA 90001" -141442,Google Phone,1,600,01/06/19 10:27,"186 Meadow St, New York City, NY 10001" -141443,Lightning Charging Cable,1,14.95,01/15/19 19:22,"485 Elm St, Los Angeles, CA 90001" -141444,AAA Batteries (4-pack),1,2.99,01/22/19 22:56,"776 5th St, San Francisco, CA 94016" -141445,USB-C Charging Cable,1,11.95,01/23/19 21:37,"112 Madison St, Los Angeles, CA 90001" -141446,Bose SoundSport Headphones,1,99.99,01/16/19 20:03,"150 14th St, Seattle, WA 98101" -141447,AAA Batteries (4-pack),1,2.99,01/15/19 21:14,"51 10th St, Boston, MA 02215" -141448,Bose SoundSport Headphones,1,99.99,01/07/19 15:50,"895 Forest St, San Francisco, CA 94016" -141449,USB-C Charging Cable,1,11.95,01/25/19 15:41,"450 Dogwood St, Boston, MA 02215" -141450,Google Phone,1,600,01/12/19 11:16,"521 Park St, San Francisco, CA 94016" -141450,Bose SoundSport Headphones,1,99.99,01/12/19 11:16,"521 Park St, San Francisco, CA 94016" -141451,AA Batteries (4-pack),1,3.84,01/18/19 18:01,"678 Elm St, Portland, OR 97035" -141452,Bose SoundSport Headphones,1,99.99,01/16/19 13:37,"593 14th St, Austin, TX 73301" -141453,Macbook Pro Laptop,1,1700,01/06/19 13:09,"469 4th St, Atlanta, GA 30301" -141454,Bose SoundSport Headphones,1,99.99,01/12/19 21:43,"87 North St, New York City, NY 10001" -141455,Apple Airpods Headphones,1,150,01/06/19 09:26,"588 Main St, Los Angeles, CA 90001" -141456,AAA Batteries (4-pack),1,2.99,01/05/19 13:28,"676 Cedar St, Boston, MA 02215" -141457,iPhone,1,700,01/09/19 22:11,"820 Jackson St, Seattle, WA 98101" -141457,Apple Airpods Headphones,1,150,01/09/19 22:11,"820 Jackson St, Seattle, WA 98101" -141458,iPhone,1,700,01/29/19 01:12,"497 Park St, San Francisco, CA 94016" -141459,AAA Batteries (4-pack),1,2.99,01/07/19 13:20,"344 Lakeview St, New York City, NY 10001" -141460,iPhone,1,700,01/26/19 17:29,"855 2nd St, New York City, NY 10001" -141461,Lightning Charging Cable,1,14.95,01/02/19 10:34,"233 Cherry St, Dallas, TX 75001" -141462,Wired Headphones,1,11.99,01/30/19 23:34,"542 Wilson St, Atlanta, GA 30301" -141463,Apple Airpods Headphones,1,150,01/22/19 18:14,"147 Center St, Boston, MA 02215" -141464,AA Batteries (4-pack),2,3.84,01/31/19 01:03,"795 13th St, New York City, NY 10001" -141465,Lightning Charging Cable,1,14.95,01/30/19 11:24,"340 10th St, Atlanta, GA 30301" -141466,AAA Batteries (4-pack),2,2.99,01/24/19 16:09,"269 4th St, Seattle, WA 98101" -141467,Bose SoundSport Headphones,1,99.99,01/22/19 19:48,"154 Jackson St, Boston, MA 02215" -141468,Flatscreen TV,1,300,01/07/19 15:21,"268 8th St, Austin, TX 73301" -141469,Flatscreen TV,1,300,01/02/19 07:44,"163 8th St, San Francisco, CA 94016" -141470,AAA Batteries (4-pack),1,2.99,01/09/19 17:29,"571 Jefferson St, Boston, MA 02215" -141471,Apple Airpods Headphones,1,150,01/17/19 14:21,"81 11th St, Los Angeles, CA 90001" -141472,iPhone,1,700,01/27/19 07:05,"853 9th St, San Francisco, CA 94016" -141473,iPhone,1,700,01/11/19 16:48,"768 Maple St, San Francisco, CA 94016" -141474,Apple Airpods Headphones,1,150,01/17/19 22:58,"580 Johnson St, Boston, MA 02215" -141475,Lightning Charging Cable,1,14.95,01/07/19 08:41,"548 10th St, Boston, MA 02215" -141476,iPhone,1,700,01/06/19 15:38,"295 Hickory St, New York City, NY 10001" -141477,AA Batteries (4-pack),1,3.84,01/20/19 09:24,"371 South St, San Francisco, CA 94016" -141478,Google Phone,1,600,01/26/19 13:32,"303 North St, Atlanta, GA 30301" -141478,Apple Airpods Headphones,1,150,01/26/19 13:32,"303 North St, Atlanta, GA 30301" -141479,Bose SoundSport Headphones,1,99.99,01/12/19 19:24,"613 Main St, Atlanta, GA 30301" -141480,AA Batteries (4-pack),2,3.84,01/20/19 12:32,"451 River St, Portland, OR 97035" -141481,AA Batteries (4-pack),1,3.84,01/26/19 22:19,"118 Church St, New York City, NY 10001" -141482,USB-C Charging Cable,1,11.95,01/28/19 13:10,"333 7th St, Portland, OR 97035" -141483,Flatscreen TV,1,300,01/21/19 15:57,"216 Willow St, Austin, TX 73301" -141484,USB-C Charging Cable,1,11.95,01/29/19 21:06,"127 Madison St, Los Angeles, CA 90001" -141485,27in 4K Gaming Monitor,1,389.99,01/07/19 21:06,"566 Park St, New York City, NY 10001" -141486,USB-C Charging Cable,1,11.95,01/14/19 13:29,"940 West St, Los Angeles, CA 90001" -141487,Bose SoundSport Headphones,1,99.99,01/19/19 18:28,"831 Sunset St, San Francisco, CA 94016" -141488,Bose SoundSport Headphones,1,99.99,01/13/19 14:33,"133 1st St, Los Angeles, CA 90001" -141489,AAA Batteries (4-pack),2,2.99,01/04/19 11:21,"941 Lincoln St, Los Angeles, CA 90001" -141490,27in FHD Monitor,1,149.99,01/24/19 09:54,"201 Center St, New York City, NY 10001" -141491,Bose SoundSport Headphones,1,99.99,01/25/19 11:10,"529 Park St, Portland, OR 97035" -141492,20in Monitor,1,109.99,01/18/19 09:23,"331 Chestnut St, Dallas, TX 75001" -141493,34in Ultrawide Monitor,1,379.99,01/02/19 11:26,"922 2nd St, Los Angeles, CA 90001" -141494,AA Batteries (4-pack),2,3.84,01/07/19 00:40,"237 Forest St, Austin, TX 73301" -141495,Macbook Pro Laptop,1,1700,01/19/19 18:02,"442 South St, Dallas, TX 75001" -141496,Wired Headphones,1,11.99,01/31/19 16:21,"310 8th St, Los Angeles, CA 90001" -141497,Wired Headphones,1,11.99,01/29/19 18:07,"139 Church St, Atlanta, GA 30301" -141498,AA Batteries (4-pack),1,3.84,01/08/19 07:31,"337 North St, Austin, TX 73301" -141499,Google Phone,1,600,01/19/19 15:17,"90 1st St, San Francisco, CA 94016" -141500,Google Phone,1,600,01/12/19 11:56,"235 Walnut St, New York City, NY 10001" -141501,AA Batteries (4-pack),1,3.84,01/25/19 12:38,"738 Dogwood St, Los Angeles, CA 90001" -141502,AA Batteries (4-pack),2,3.84,01/08/19 20:07,"920 Center St, San Francisco, CA 94016" -141503,27in 4K Gaming Monitor,1,389.99,01/03/19 19:54,"304 Park St, Dallas, TX 75001" -141504,iPhone,1,700,01/13/19 13:37,"855 11th St, Seattle, WA 98101" -141505,27in 4K Gaming Monitor,1,389.99,01/05/19 06:59,"33 Dogwood St, New York City, NY 10001" -141506,Google Phone,1,600,01/24/19 19:03,"463 10th St, Atlanta, GA 30301" -141507,Apple Airpods Headphones,1,150,01/19/19 20:07,"961 1st St, Los Angeles, CA 90001" -141508,USB-C Charging Cable,1,11.95,01/18/19 19:11,"190 South St, Austin, TX 73301" -141509,Lightning Charging Cable,1,14.95,01/16/19 11:11,"195 Chestnut St, San Francisco, CA 94016" -141510,Wired Headphones,2,11.99,01/16/19 14:32,"610 South St, Los Angeles, CA 90001" -141511,27in 4K Gaming Monitor,1,389.99,01/14/19 16:57,"608 13th St, New York City, NY 10001" -141512,Lightning Charging Cable,1,14.95,01/08/19 20:12,"789 4th St, Los Angeles, CA 90001" -141513,Apple Airpods Headphones,1,150,01/18/19 22:22,"795 Hickory St, Atlanta, GA 30301" -141514,Google Phone,1,600,01/27/19 21:26,"947 10th St, Boston, MA 02215" -141515,34in Ultrawide Monitor,1,379.99,01/12/19 16:34,"179 Highland St, Seattle, WA 98101" -141516,LG Washing Machine,1,600.0,01/17/19 19:53,"382 Main St, Seattle, WA 98101" -141517,iPhone,1,700,01/13/19 14:14,"326 Maple St, Los Angeles, CA 90001" -141518,Lightning Charging Cable,1,14.95,01/01/19 11:41,"991 Adams St, Los Angeles, CA 90001" -141519,Lightning Charging Cable,1,14.95,01/18/19 17:16,"511 Maple St, San Francisco, CA 94016" -141520,iPhone,1,700,01/15/19 11:24,"23 Cherry St, Atlanta, GA 30301" -141521,Wired Headphones,1,11.99,01/06/19 11:19,"724 Hickory St, Los Angeles, CA 90001" -141522,27in FHD Monitor,1,149.99,01/02/19 23:35,"240 Maple St, Dallas, TX 75001" -141523,Google Phone,1,600,01/02/19 13:17,"17 Dogwood St, San Francisco, CA 94016" -141524,USB-C Charging Cable,1,11.95,01/11/19 13:18,"853 Walnut St, Boston, MA 02215" -141525,AAA Batteries (4-pack),2,2.99,01/07/19 04:31,"590 Jackson St, Los Angeles, CA 90001" -141526,AA Batteries (4-pack),2,3.84,01/21/19 22:12,"212 Lincoln St, New York City, NY 10001" -141527,Apple Airpods Headphones,1,150,01/25/19 18:52,"401 Chestnut St, Los Angeles, CA 90001" -141528,AAA Batteries (4-pack),3,2.99,01/11/19 02:13,"57 11th St, Austin, TX 73301" -141529,Bose SoundSport Headphones,1,99.99,01/13/19 12:55,"264 River St, Austin, TX 73301" -141530,AAA Batteries (4-pack),1,2.99,01/19/19 18:13,"324 7th St, Austin, TX 73301" -141531,Flatscreen TV,1,300,01/15/19 18:03,"252 Sunset St, New York City, NY 10001" -141532,Lightning Charging Cable,1,14.95,01/12/19 08:44,"718 Walnut St, San Francisco, CA 94016" -141533,34in Ultrawide Monitor,1,379.99,01/01/19 13:34,"400 Lakeview St, Seattle, WA 98101" -141534,Bose SoundSport Headphones,1,99.99,01/05/19 10:02,"439 Washington St, San Francisco, CA 94016" -141535,Wired Headphones,1,11.99,01/03/19 10:59,"139 Wilson St, Portland, OR 97035" -141536,AAA Batteries (4-pack),1,2.99,01/30/19 16:35,"127 6th St, Portland, OR 97035" -141537,Lightning Charging Cable,1,14.95,01/06/19 09:37,"654 West St, Portland, OR 97035" -141538,27in FHD Monitor,1,149.99,01/12/19 15:38,"765 River St, New York City, NY 10001" -141539,27in FHD Monitor,1,149.99,01/16/19 15:22,"167 West St, San Francisco, CA 94016" -141540,Apple Airpods Headphones,1,150,01/10/19 14:07,"703 Maple St, Los Angeles, CA 90001" -141541,AAA Batteries (4-pack),1,2.99,01/27/19 22:39,"296 Lakeview St, Boston, MA 02215" -141542,AA Batteries (4-pack),1,3.84,01/20/19 18:33,"431 Dogwood St, San Francisco, CA 94016" -141543,Lightning Charging Cable,1,14.95,01/25/19 10:48,"684 5th St, Atlanta, GA 30301" -141544,Lightning Charging Cable,1,14.95,01/03/19 18:32,"905 Ridge St, San Francisco, CA 94016" -141545,Google Phone,1,600,01/16/19 20:17,"988 Adams St, Dallas, TX 75001" -141546,20in Monitor,1,109.99,01/22/19 02:39,"390 Ridge St, Atlanta, GA 30301" -141547,USB-C Charging Cable,2,11.95,01/12/19 10:26,"164 Willow St, San Francisco, CA 94016" -141548,Lightning Charging Cable,1,14.95,01/11/19 23:00,"964 Forest St, Los Angeles, CA 90001" -141549,27in FHD Monitor,1,149.99,01/15/19 10:53,"240 Cherry St, Atlanta, GA 30301" -141550,iPhone,1,700,01/31/19 10:58,"399 Church St, Boston, MA 02215" -141550,Apple Airpods Headphones,2,150,01/31/19 10:58,"399 Church St, Boston, MA 02215" -141550,Wired Headphones,1,11.99,01/31/19 10:58,"399 Church St, Boston, MA 02215" -141551,Lightning Charging Cable,2,14.95,01/19/19 16:39,"88 7th St, Los Angeles, CA 90001" -141552,Bose SoundSport Headphones,1,99.99,01/10/19 10:40,"533 Jackson St, New York City, NY 10001" -141553,Bose SoundSport Headphones,1,99.99,01/27/19 00:07,"16 Forest St, San Francisco, CA 94016" -141554,USB-C Charging Cable,1,11.95,01/04/19 12:57,"498 Dogwood St, Austin, TX 73301" -141555,AAA Batteries (4-pack),3,2.99,01/15/19 10:18,"47 Pine St, Dallas, TX 75001" -141556,USB-C Charging Cable,1,11.95,01/29/19 10:07,"164 Lincoln St, New York City, NY 10001" -141557,Lightning Charging Cable,1,14.95,01/23/19 22:54,"406 8th St, San Francisco, CA 94016" -141558,27in 4K Gaming Monitor,1,389.99,01/01/19 12:14,"345 Chestnut St, Dallas, TX 75001" -141559,Wired Headphones,1,11.99,01/26/19 22:08,"932 River St, Boston, MA 02215" -141560,34in Ultrawide Monitor,1,379.99,01/09/19 13:34,"559 Adams St, Seattle, WA 98101" -141561,Wired Headphones,1,11.99,01/09/19 17:19,"897 River St, San Francisco, CA 94016" -141562,Bose SoundSport Headphones,1,99.99,01/29/19 12:47,"334 12th St, Los Angeles, CA 90001" -141563,USB-C Charging Cable,1,11.95,01/15/19 15:52,"98 13th St, San Francisco, CA 94016" -141564,Apple Airpods Headphones,1,150,01/29/19 11:03,"780 Walnut St, New York City, NY 10001" -141565,Wired Headphones,1,11.99,01/13/19 06:05,"884 11th St, San Francisco, CA 94016" -141566,27in FHD Monitor,1,149.99,01/13/19 18:41,"693 Wilson St, San Francisco, CA 94016" -141567,Lightning Charging Cable,1,14.95,01/09/19 20:37,"55 Highland St, Los Angeles, CA 90001" -141568,ThinkPad Laptop,1,999.99,01/26/19 20:30,"158 9th St, San Francisco, CA 94016" -141569,Macbook Pro Laptop,1,1700,01/11/19 11:15,"235 Ridge St, Los Angeles, CA 90001" -141570,USB-C Charging Cable,1,11.95,01/11/19 16:49,"112 13th St, Dallas, TX 75001" -141571,Lightning Charging Cable,1,14.95,01/21/19 23:01,"809 Dogwood St, San Francisco, CA 94016" -141572,AAA Batteries (4-pack),1,2.99,01/13/19 23:51,"187 Dogwood St, Austin, TX 73301" -141573,Lightning Charging Cable,1,14.95,01/04/19 17:39,"850 2nd St, Atlanta, GA 30301" -141574,Lightning Charging Cable,1,14.95,01/19/19 16:56,"989 Jefferson St, Los Angeles, CA 90001" -141575,USB-C Charging Cable,1,11.95,01/07/19 10:42,"787 Highland St, Seattle, WA 98101" -141576,Apple Airpods Headphones,1,150,01/05/19 20:21,"908 Lincoln St, Atlanta, GA 30301" -141577,Flatscreen TV,1,300,01/30/19 20:19,"662 Lincoln St, Seattle, WA 98101" -141578,Bose SoundSport Headphones,1,99.99,01/24/19 05:51,"61 Sunset St, Portland, OR 97035" -141579,Lightning Charging Cable,1,14.95,01/23/19 16:11,"871 Willow St, Los Angeles, CA 90001" -141580,AA Batteries (4-pack),1,3.84,01/28/19 11:02,"295 Chestnut St, Boston, MA 02215" -141581,Apple Airpods Headphones,1,150,01/28/19 20:50,"64 Elm St, San Francisco, CA 94016" -141582,iPhone,1,700,01/15/19 01:45,"416 9th St, San Francisco, CA 94016" -141583,USB-C Charging Cable,1,11.95,01/30/19 12:48,"717 Cedar St, Dallas, TX 75001" -141584,Macbook Pro Laptop,1,1700,01/14/19 16:51,"395 Lake St, New York City, NY 10001" -141585,AA Batteries (4-pack),2,3.84,01/11/19 10:04,"406 Highland St, San Francisco, CA 94016" -141586,Lightning Charging Cable,1,14.95,01/26/19 20:16,"411 Jackson St, San Francisco, CA 94016" -141587,USB-C Charging Cable,1,11.95,01/29/19 15:14,"504 14th St, Dallas, TX 75001" -141587,Apple Airpods Headphones,1,150,01/29/19 15:14,"504 14th St, Dallas, TX 75001" -141588,AA Batteries (4-pack),1,3.84,01/03/19 01:43,"582 Madison St, Dallas, TX 75001" -141589,Wired Headphones,1,11.99,01/10/19 13:56,"118 12th St, Seattle, WA 98101" -141590,Bose SoundSport Headphones,1,99.99,01/05/19 16:40,"350 5th St, Boston, MA 02215" -141591,ThinkPad Laptop,1,999.99,01/27/19 23:59,"503 Maple St, Seattle, WA 98101" -141592,AA Batteries (4-pack),2,3.84,01/05/19 11:30,"644 13th St, San Francisco, CA 94016" -141593,Bose SoundSport Headphones,1,99.99,01/09/19 14:26,"406 Washington St, Los Angeles, CA 90001" -141594,AAA Batteries (4-pack),1,2.99,01/30/19 12:09,"821 14th St, Atlanta, GA 30301" -141595,ThinkPad Laptop,1,999.99,01/27/19 14:36,"146 2nd St, Boston, MA 02215" -141596,Lightning Charging Cable,1,14.95,01/01/19 17:30,"582 Jackson St, Boston, MA 02215" -141597,AAA Batteries (4-pack),2,2.99,01/28/19 12:38,"919 Elm St, San Francisco, CA 94016" -141598,20in Monitor,1,109.99,01/12/19 13:28,"164 Pine St, Seattle, WA 98101" -141599,AAA Batteries (4-pack),1,2.99,01/17/19 11:59,"814 Sunset St, Portland, OR 97035" -141600,AAA Batteries (4-pack),2,2.99,01/27/19 09:08,"445 Lake St, San Francisco, CA 94016" -141601,Lightning Charging Cable,1,14.95,01/07/19 19:45,"745 2nd St, Atlanta, GA 30301" -141602,27in FHD Monitor,1,149.99,01/13/19 20:17,"170 6th St, Atlanta, GA 30301" -141603,Wired Headphones,1,11.99,01/24/19 10:54,"214 14th St, Seattle, WA 98101" -141604,27in FHD Monitor,1,149.99,01/01/19 23:58,"135 Washington St, San Francisco, CA 94016" -141605,Wired Headphones,1,11.99,01/10/19 19:52,"189 Maple St, San Francisco, CA 94016" -141606,Lightning Charging Cable,1,14.95,01/02/19 01:26,"449 Maple St, Austin, TX 73301" -141607,AA Batteries (4-pack),2,3.84,01/27/19 20:18,"861 Cedar St, Dallas, TX 75001" -141608,Lightning Charging Cable,1,14.95,01/14/19 17:47,"852 Cherry St, San Francisco, CA 94016" -141609,Apple Airpods Headphones,1,150,01/04/19 14:05,"287 Chestnut St, San Francisco, CA 94016" -141610,Lightning Charging Cable,1,14.95,01/29/19 16:55,"846 Cherry St, San Francisco, CA 94016" -141611,Apple Airpods Headphones,1,150,01/27/19 18:29,"877 Lincoln St, Atlanta, GA 30301" -141612,Apple Airpods Headphones,1,150,01/24/19 10:33,"892 12th St, Los Angeles, CA 90001" -141613,AAA Batteries (4-pack),1,2.99,01/01/19 10:21,"644 Pine St, Atlanta, GA 30301" -141614,AA Batteries (4-pack),1,3.84,01/09/19 13:03,"821 Spruce St, San Francisco, CA 94016" -141615,Wired Headphones,1,11.99,01/24/19 18:39,"944 Chestnut St, Los Angeles, CA 90001" -141616,AA Batteries (4-pack),1,3.84,01/24/19 00:56,"440 Elm St, Boston, MA 02215" -141617,Wired Headphones,1,11.99,01/26/19 02:00,"84 Hickory St, Los Angeles, CA 90001" -141618,Bose SoundSport Headphones,1,99.99,01/09/19 11:07,"573 Lake St, Dallas, TX 75001" -141619,27in FHD Monitor,1,149.99,01/12/19 20:15,"108 River St, San Francisco, CA 94016" -141620,AAA Batteries (4-pack),3,2.99,01/09/19 10:56,"211 Meadow St, New York City, NY 10001" -141621,AAA Batteries (4-pack),1,2.99,01/12/19 09:49,"917 Spruce St, Atlanta, GA 30301" -141622,USB-C Charging Cable,1,11.95,01/27/19 12:46,"171 Ridge St, Portland, OR 97035" -141623,Google Phone,1,600,01/06/19 14:21,"770 Center St, San Francisco, CA 94016" -141624,USB-C Charging Cable,1,11.95,01/18/19 21:07,"76 8th St, San Francisco, CA 94016" -141625,AAA Batteries (4-pack),4,2.99,01/29/19 08:48,"476 8th St, Boston, MA 02215" -141626,Apple Airpods Headphones,1,150,01/24/19 08:19,"97 Highland St, Los Angeles, CA 90001" -141627,Flatscreen TV,1,300,01/16/19 10:02,"374 Meadow St, Austin, TX 73301" -141628,AA Batteries (4-pack),1,3.84,01/20/19 13:03,"427 Lakeview St, Los Angeles, CA 90001" -141629,27in FHD Monitor,1,149.99,01/27/19 12:22,"434 Church St, San Francisco, CA 94016" -141630,USB-C Charging Cable,1,11.95,01/20/19 17:28,"147 5th St, Dallas, TX 75001" -141631,Lightning Charging Cable,1,14.95,01/15/19 07:54,"81 Main St, San Francisco, CA 94016" -141632,iPhone,1,700,01/21/19 05:00,"964 Hill St, Seattle, WA 98101" -141633,AA Batteries (4-pack),1,3.84,01/12/19 20:41,"880 Lakeview St, San Francisco, CA 94016" -141634,AAA Batteries (4-pack),1,2.99,01/20/19 18:23,"414 8th St, Los Angeles, CA 90001" -141635,Wired Headphones,1,11.99,01/13/19 07:20,"31 6th St, New York City, NY 10001" -141636,Apple Airpods Headphones,1,150,01/09/19 10:24,"790 Wilson St, Austin, TX 73301" -141637,AA Batteries (4-pack),2,3.84,01/04/19 17:48,"676 Willow St, New York City, NY 10001" -141638,AAA Batteries (4-pack),2,2.99,01/05/19 08:07,"625 Church St, Austin, TX 73301" -141639,ThinkPad Laptop,1,999.99,01/23/19 16:39,"284 12th St, San Francisco, CA 94016" -141640,Macbook Pro Laptop,1,1700,01/02/19 01:27,"768 Forest St, San Francisco, CA 94016" -141641,20in Monitor,1,109.99,01/30/19 11:12,"368 Forest St, San Francisco, CA 94016" -141642,AAA Batteries (4-pack),1,2.99,01/04/19 19:21,"719 Adams St, New York City, NY 10001" -141643,Bose SoundSport Headphones,1,99.99,01/29/19 21:41,"52 Hill St, Portland, OR 97035" -141644,AAA Batteries (4-pack),1,2.99,01/01/19 14:21,"454 Main St, Seattle, WA 98101" -141645,Lightning Charging Cable,1,14.95,01/30/19 15:30,"98 Forest St, New York City, NY 10001" -141645,Wired Headphones,1,11.99,01/30/19 15:30,"98 Forest St, New York City, NY 10001" -141646,Lightning Charging Cable,1,14.95,01/01/19 20:59,"678 Adams St, Dallas, TX 75001" -141647,20in Monitor,1,109.99,01/01/19 14:36,"434 Sunset St, Atlanta, GA 30301" -141648,Google Phone,1,600,01/03/19 16:55,"657 10th St, Austin, TX 73301" -141649,Lightning Charging Cable,1,14.95,01/30/19 15:16,"916 Maple St, Seattle, WA 98101" -141650,AAA Batteries (4-pack),2,2.99,01/22/19 12:28,"166 South St, San Francisco, CA 94016" -141651,AA Batteries (4-pack),1,3.84,01/24/19 08:33,"449 Main St, Los Angeles, CA 90001" -141652,Lightning Charging Cable,1,14.95,01/05/19 21:58,"576 Pine St, Boston, MA 02215" -141653,AA Batteries (4-pack),1,3.84,01/28/19 23:47,"63 Cherry St, Portland, ME 04101" -141654,AA Batteries (4-pack),1,3.84,01/23/19 14:48,"857 4th St, San Francisco, CA 94016" -141655,Wired Headphones,1,11.99,01/16/19 13:38,"592 Cedar St, Los Angeles, CA 90001" -141656,Apple Airpods Headphones,1,150,01/02/19 10:40,"476 Center St, Atlanta, GA 30301" -141657,AAA Batteries (4-pack),1,2.99,01/13/19 20:36,"990 Park St, Los Angeles, CA 90001" -141658,AA Batteries (4-pack),1,3.84,01/26/19 23:47,"26 Adams St, San Francisco, CA 94016" -141659,Macbook Pro Laptop,1,1700,01/28/19 15:52,"214 Jackson St, San Francisco, CA 94016" -141660,USB-C Charging Cable,1,11.95,01/11/19 13:57,"106 Sunset St, Boston, MA 02215" -141661,USB-C Charging Cable,1,11.95,01/05/19 01:25,"221 14th St, San Francisco, CA 94016" -141662,AAA Batteries (4-pack),1,2.99,01/16/19 13:06,"106 Jefferson St, Boston, MA 02215" -141663,iPhone,1,700,01/01/19 11:01,"738 8th St, San Francisco, CA 94016" -141664,Google Phone,1,600,01/08/19 16:40,"621 Dogwood St, San Francisco, CA 94016" -141665,27in 4K Gaming Monitor,1,389.99,01/23/19 18:55,"499 7th St, Boston, MA 02215" -141666,AA Batteries (4-pack),2,3.84,01/16/19 16:22,"956 Adams St, Boston, MA 02215" -141667,Lightning Charging Cable,3,14.95,01/23/19 15:14,"965 Johnson St, San Francisco, CA 94016" -141668,Lightning Charging Cable,1,14.95,01/15/19 14:18,"124 Jackson St, San Francisco, CA 94016" -141669,27in 4K Gaming Monitor,1,389.99,01/29/19 15:43,"813 Forest St, New York City, NY 10001" -141670,iPhone,1,700,01/31/19 12:52,"166 10th St, Atlanta, GA 30301" -141671,AAA Batteries (4-pack),2,2.99,01/29/19 12:25,"496 4th St, Boston, MA 02215" -141672,Wired Headphones,1,11.99,01/27/19 23:05,"608 North St, Dallas, TX 75001" -141673,USB-C Charging Cable,1,11.95,01/27/19 19:23,"152 1st St, Austin, TX 73301" -141674,AAA Batteries (4-pack),1,2.99,01/28/19 06:28,"477 Highland St, Los Angeles, CA 90001" -141675,USB-C Charging Cable,3,11.95,01/04/19 10:09,"964 Main St, Seattle, WA 98101" -141676,Vareebadd Phone,1,400,01/13/19 11:41,"35 13th St, Portland, OR 97035" -141677,27in FHD Monitor,1,149.99,01/03/19 18:50,"345 Hill St, New York City, NY 10001" -141678,Apple Airpods Headphones,1,150,01/08/19 20:27,"524 Ridge St, Boston, MA 02215" -141679,34in Ultrawide Monitor,1,379.99,01/03/19 19:55,"621 13th St, San Francisco, CA 94016" -141680,USB-C Charging Cable,2,11.95,01/14/19 14:03,"980 Washington St, Portland, OR 97035" -141681,AA Batteries (4-pack),1,3.84,01/03/19 21:53,"543 Forest St, Atlanta, GA 30301" -141682,34in Ultrawide Monitor,1,379.99,01/24/19 07:03,"672 Ridge St, Los Angeles, CA 90001" -141683,AAA Batteries (4-pack),1,2.99,01/27/19 16:18,"982 Cedar St, New York City, NY 10001" -141684,27in 4K Gaming Monitor,1,389.99,01/29/19 09:43,"666 Jefferson St, Seattle, WA 98101" -141685,Wired Headphones,1,11.99,01/14/19 00:38,"347 12th St, Austin, TX 73301" -141686,Apple Airpods Headphones,1,150,01/22/19 13:25,"788 6th St, San Francisco, CA 94016" -141687,AA Batteries (4-pack),1,3.84,01/17/19 19:12,"838 2nd St, New York City, NY 10001" -141688,AA Batteries (4-pack),1,3.84,01/20/19 11:32,"122 Jackson St, New York City, NY 10001" -141689,34in Ultrawide Monitor,1,379.99,01/09/19 13:56,"348 River St, San Francisco, CA 94016" -141690,Macbook Pro Laptop,1,1700,01/14/19 23:02,"27 Jefferson St, Boston, MA 02215" -141691,34in Ultrawide Monitor,1,379.99,01/18/19 18:34,"640 Lake St, New York City, NY 10001" -141692,Bose SoundSport Headphones,1,99.99,01/27/19 19:46,"798 Hill St, Portland, OR 97035" -141693,Wired Headphones,1,11.99,01/07/19 22:01,"733 Meadow St, New York City, NY 10001" -141694,Wired Headphones,1,11.99,01/12/19 15:43,"806 Maple St, Atlanta, GA 30301" -141695,AAA Batteries (4-pack),1,2.99,01/29/19 21:20,"893 Jefferson St, Boston, MA 02215" -141696,Vareebadd Phone,1,400,01/15/19 22:33,"709 North St, Seattle, WA 98101" -141697,Lightning Charging Cable,1,14.95,01/16/19 05:50,"1 Jefferson St, New York City, NY 10001" -141698,27in 4K Gaming Monitor,1,389.99,01/06/19 19:56,"156 Jackson St, Los Angeles, CA 90001" -141699,USB-C Charging Cable,1,11.95,01/28/19 08:13,"667 Spruce St, Atlanta, GA 30301" -141700,Apple Airpods Headphones,1,150,01/02/19 12:00,"220 Lakeview St, Dallas, TX 75001" -141701,Macbook Pro Laptop,1,1700,01/18/19 19:33,"174 Lincoln St, San Francisco, CA 94016" -141702,iPhone,1,700,01/27/19 18:33,"776 10th St, Boston, MA 02215" -141703,iPhone,1,700,01/29/19 11:04,"371 11th St, Portland, OR 97035" -141704,27in 4K Gaming Monitor,1,389.99,01/31/19 19:56,"823 Hill St, Seattle, WA 98101" -141705,Apple Airpods Headphones,1,150,01/01/19 14:15,"478 8th St, Boston, MA 02215" -141706,USB-C Charging Cable,1,11.95,01/19/19 13:38,"234 Cherry St, Austin, TX 73301" -141707,AA Batteries (4-pack),1,3.84,01/13/19 00:53,"593 Main St, Los Angeles, CA 90001" -141708,Wired Headphones,1,11.99,01/22/19 09:31,"492 Forest St, Seattle, WA 98101" -141709,Google Phone,1,600,01/24/19 23:45,"411 Ridge St, Dallas, TX 75001" -141710,USB-C Charging Cable,1,11.95,01/23/19 00:00,"57 Hill St, New York City, NY 10001" -141711,USB-C Charging Cable,1,11.95,01/18/19 13:11,"65 Pine St, New York City, NY 10001" -141712,AA Batteries (4-pack),1,3.84,01/07/19 12:12,"164 Walnut St, Los Angeles, CA 90001" -141713,USB-C Charging Cable,1,11.95,01/25/19 13:49,"169 Washington St, San Francisco, CA 94016" -141714,USB-C Charging Cable,1,11.95,01/27/19 20:27,"986 11th St, New York City, NY 10001" -141715,Bose SoundSport Headphones,1,99.99,01/22/19 00:30,"492 Lakeview St, Boston, MA 02215" -141716,Bose SoundSport Headphones,1,99.99,01/17/19 09:58,"169 Lakeview St, Seattle, WA 98101" -141717,AAA Batteries (4-pack),1,2.99,01/31/19 17:15,"463 5th St, New York City, NY 10001" -141718,Google Phone,1,600,01/16/19 15:02,"756 Lake St, Dallas, TX 75001" -141719,27in 4K Gaming Monitor,1,389.99,01/10/19 13:34,"152 Cherry St, Seattle, WA 98101" -141720,USB-C Charging Cable,1,11.95,01/25/19 19:58,"317 Center St, New York City, NY 10001" -141721,AA Batteries (4-pack),1,3.84,01/11/19 12:03,"416 Forest St, Atlanta, GA 30301" -141722,Macbook Pro Laptop,1,1700,01/06/19 14:06,"331 Pine St, Boston, MA 02215" -141723,Wired Headphones,1,11.99,01/14/19 22:05,"340 11th St, Boston, MA 02215" -141724,Lightning Charging Cable,1,14.95,01/06/19 18:43,"494 11th St, Austin, TX 73301" -141725,Wired Headphones,1,11.99,01/09/19 18:16,"370 7th St, Los Angeles, CA 90001" -141726,USB-C Charging Cable,1,11.95,01/20/19 07:13,"697 Center St, San Francisco, CA 94016" -141727,Lightning Charging Cable,2,14.95,01/31/19 13:38,"331 Meadow St, Atlanta, GA 30301" -141728,AAA Batteries (4-pack),1,2.99,01/14/19 00:00,"431 7th St, New York City, NY 10001" -141729,Wired Headphones,1,11.99,01/09/19 11:01,"426 Walnut St, Los Angeles, CA 90001" -141730,Lightning Charging Cable,1,14.95,01/23/19 16:23,"733 Lincoln St, Boston, MA 02215" -141731,Macbook Pro Laptop,1,1700,01/29/19 19:24,"916 Forest St, San Francisco, CA 94016" -141732,iPhone,1,700,01/01/19 06:13,"446 Pine St, Atlanta, GA 30301" -141733,27in 4K Gaming Monitor,1,389.99,01/24/19 12:38,"987 Maple St, Austin, TX 73301" -141734,Bose SoundSport Headphones,1,99.99,01/29/19 15:48,"485 North St, Los Angeles, CA 90001" -141735,34in Ultrawide Monitor,1,379.99,01/25/19 12:34,"997 Jefferson St, New York City, NY 10001" -141736,USB-C Charging Cable,1,11.95,01/18/19 12:47,"920 Meadow St, Seattle, WA 98101" -141737,ThinkPad Laptop,1,999.99,01/02/19 08:37,"903 Forest St, San Francisco, CA 94016" -141738,iPhone,1,700,01/14/19 20:53,"183 Cherry St, Atlanta, GA 30301" -141738,Lightning Charging Cable,1,14.95,01/14/19 20:53,"183 Cherry St, Atlanta, GA 30301" -141739,AA Batteries (4-pack),1,3.84,01/27/19 10:55,"383 Jackson St, Atlanta, GA 30301" -141740,AA Batteries (4-pack),1,3.84,01/12/19 22:42,"927 Forest St, Atlanta, GA 30301" -141741,Bose SoundSport Headphones,1,99.99,01/19/19 18:56,"93 Cherry St, Boston, MA 02215" -141742,USB-C Charging Cable,1,11.95,01/20/19 10:29,"156 Church St, San Francisco, CA 94016" -141743,USB-C Charging Cable,1,11.95,01/18/19 10:44,"607 6th St, San Francisco, CA 94016" -141744,Apple Airpods Headphones,1,150,01/10/19 15:55,"961 7th St, Portland, OR 97035" -141745,AAA Batteries (4-pack),2,2.99,01/19/19 00:24,"389 Hill St, Atlanta, GA 30301" -141746,Lightning Charging Cable,2,14.95,01/14/19 21:39,"218 8th St, Dallas, TX 75001" -141747,27in FHD Monitor,1,149.99,01/12/19 05:12,"160 Ridge St, Los Angeles, CA 90001" -141748,Apple Airpods Headphones,1,150,01/09/19 09:46,"60 Cedar St, Boston, MA 02215" -141749,Flatscreen TV,1,300,01/24/19 15:16,"974 10th St, Atlanta, GA 30301" -141750,27in FHD Monitor,1,149.99,01/23/19 16:46,"341 Elm St, Seattle, WA 98101" -141751,27in 4K Gaming Monitor,1,389.99,01/08/19 13:27,"396 River St, Los Angeles, CA 90001" -141752,Lightning Charging Cable,1,14.95,01/18/19 23:13,"100 Johnson St, Los Angeles, CA 90001" -141753,USB-C Charging Cable,2,11.95,01/15/19 19:30,"67 Center St, San Francisco, CA 94016" -141754,Apple Airpods Headphones,2,150,01/02/19 23:09,"999 Spruce St, Seattle, WA 98101" -141755,AA Batteries (4-pack),3,3.84,01/02/19 20:12,"884 Spruce St, Los Angeles, CA 90001" -141756,Bose SoundSport Headphones,1,99.99,01/19/19 21:53,"485 Highland St, Atlanta, GA 30301" -141757,27in FHD Monitor,1,149.99,01/13/19 14:47,"116 Walnut St, Portland, OR 97035" -141758,Wired Headphones,1,11.99,01/21/19 15:21,"610 Spruce St, Dallas, TX 75001" -141759,AAA Batteries (4-pack),1,2.99,01/02/19 19:18,"765 Lake St, Portland, OR 97035" -141760,Vareebadd Phone,1,400,01/21/19 11:09,"289 Walnut St, Atlanta, GA 30301" -141761,Lightning Charging Cable,1,14.95,01/11/19 19:02,"75 Ridge St, San Francisco, CA 94016" -141762,Bose SoundSport Headphones,1,99.99,01/28/19 17:52,"160 Hickory St, Austin, TX 73301" -141763,27in FHD Monitor,2,149.99,01/05/19 02:51,"351 Adams St, Austin, TX 73301" -141764,USB-C Charging Cable,1,11.95,01/04/19 17:43,"909 2nd St, Seattle, WA 98101" -141765,Lightning Charging Cable,1,14.95,01/24/19 12:23,"78 Sunset St, New York City, NY 10001" -141766,LG Washing Machine,1,600.0,01/16/19 21:08,"530 Jackson St, Dallas, TX 75001" -141767,20in Monitor,1,109.99,01/23/19 22:30,"752 Walnut St, Austin, TX 73301" -141768,USB-C Charging Cable,1,11.95,01/14/19 11:50,"780 Cherry St, Portland, ME 04101" -141769,AA Batteries (4-pack),2,3.84,01/21/19 10:53,"824 West St, Dallas, TX 75001" -141770,Wired Headphones,1,11.99,01/04/19 19:50,"50 Willow St, San Francisco, CA 94016" -141771,Lightning Charging Cable,1,14.95,01/11/19 19:00,"564 13th St, San Francisco, CA 94016" -141772,Apple Airpods Headphones,1,150,01/30/19 08:16,"409 Center St, San Francisco, CA 94016" -141773,USB-C Charging Cable,1,11.95,01/30/19 16:09,"693 Chestnut St, New York City, NY 10001" -141774,Bose SoundSport Headphones,1,99.99,01/02/19 22:11,"961 Chestnut St, Los Angeles, CA 90001" -141775,USB-C Charging Cable,1,11.95,01/07/19 17:15,"348 Pine St, Atlanta, GA 30301" -141776,Lightning Charging Cable,1,14.95,01/21/19 19:20,"443 Ridge St, Dallas, TX 75001" -141777,USB-C Charging Cable,1,11.95,01/14/19 19:43,"538 Wilson St, San Francisco, CA 94016" -141778,Lightning Charging Cable,1,14.95,01/27/19 05:25,"432 11th St, Dallas, TX 75001" -141779,Lightning Charging Cable,1,14.95,01/02/19 11:23,"929 Lake St, New York City, NY 10001" -141780,Wired Headphones,1,11.99,01/20/19 20:15,"443 11th St, San Francisco, CA 94016" -141781,Apple Airpods Headphones,1,150,01/20/19 07:07,"605 West St, Austin, TX 73301" -141782,27in FHD Monitor,1,149.99,01/11/19 21:13,"353 4th St, San Francisco, CA 94016" -141782,Bose SoundSport Headphones,1,99.99,01/11/19 21:13,"353 4th St, San Francisco, CA 94016" -141783,Bose SoundSport Headphones,1,99.99,01/27/19 17:48,"581 Willow St, Boston, MA 02215" -141784,27in 4K Gaming Monitor,1,389.99,01/07/19 11:54,"301 River St, New York City, NY 10001" -141785,Apple Airpods Headphones,1,150,01/20/19 18:27,"110 Main St, Portland, OR 97035" -141786,Macbook Pro Laptop,1,1700,01/27/19 12:58,"728 River St, Boston, MA 02215" -141787,Apple Airpods Headphones,1,150,01/15/19 21:11,"865 7th St, San Francisco, CA 94016" -141788,AA Batteries (4-pack),2,3.84,01/23/19 14:39,"921 Center St, Los Angeles, CA 90001" -141789,Google Phone,1,600,01/01/19 20:13,"903 Lake St, Seattle, WA 98101" -141789,USB-C Charging Cable,2,11.95,01/01/19 20:13,"903 Lake St, Seattle, WA 98101" -141790,AAA Batteries (4-pack),1,2.99,01/09/19 15:27,"135 Hickory St, Los Angeles, CA 90001" -141791,USB-C Charging Cable,1,11.95,01/16/19 10:36,"266 Forest St, Los Angeles, CA 90001" -141792,USB-C Charging Cable,1,11.95,01/08/19 22:13,"779 Ridge St, Dallas, TX 75001" -141793,AA Batteries (4-pack),1,3.84,01/19/19 11:01,"830 Dogwood St, Dallas, TX 75001" -141794,Bose SoundSport Headphones,1,99.99,01/24/19 10:49,"147 Maple St, Los Angeles, CA 90001" -141795,iPhone,1,700,01/19/19 20:31,"383 Jefferson St, San Francisco, CA 94016" -141795,Wired Headphones,1,11.99,01/19/19 20:31,"383 Jefferson St, San Francisco, CA 94016" -141796,AAA Batteries (4-pack),1,2.99,01/23/19 20:28,"594 West St, San Francisco, CA 94016" -141797,27in FHD Monitor,1,149.99,01/02/19 10:29,"393 Johnson St, San Francisco, CA 94016" -141798,20in Monitor,1,109.99,01/18/19 07:48,"482 Washington St, Boston, MA 02215" -141799,AA Batteries (4-pack),1,3.84,01/02/19 20:10,"270 2nd St, San Francisco, CA 94016" -141800,27in FHD Monitor,1,149.99,01/26/19 12:11,"775 West St, Seattle, WA 98101" -141801,USB-C Charging Cable,1,11.95,01/21/19 17:24,"173 Center St, Portland, OR 97035" -141802,Flatscreen TV,1,300,01/09/19 06:09,"978 7th St, San Francisco, CA 94016" -141803,27in 4K Gaming Monitor,1,389.99,01/02/19 09:53,"452 South St, San Francisco, CA 94016" -141804,Bose SoundSport Headphones,1,99.99,01/23/19 19:52,"350 West St, New York City, NY 10001" -141805,Bose SoundSport Headphones,1,99.99,01/18/19 08:36,"418 Washington St, New York City, NY 10001" -141806,27in 4K Gaming Monitor,1,389.99,01/26/19 23:02,"523 9th St, Austin, TX 73301" -141807,Vareebadd Phone,1,400,01/11/19 20:23,"402 Maple St, Los Angeles, CA 90001" -141808,Lightning Charging Cable,1,14.95,01/10/19 18:36,"373 Cedar St, Seattle, WA 98101" -141809,Google Phone,1,600,01/08/19 15:38,"457 Adams St, Los Angeles, CA 90001" -141809,USB-C Charging Cable,1,11.95,01/08/19 15:38,"457 Adams St, Los Angeles, CA 90001" -141810,Lightning Charging Cable,1,14.95,01/16/19 12:23,"449 14th St, Austin, TX 73301" -141811,AAA Batteries (4-pack),1,2.99,01/03/19 20:47,"77 Lakeview St, Seattle, WA 98101" -141812,AA Batteries (4-pack),1,3.84,01/19/19 22:03,"976 Main St, Atlanta, GA 30301" -141813,USB-C Charging Cable,1,11.95,01/10/19 10:03,"836 Jefferson St, Seattle, WA 98101" -141814,20in Monitor,1,109.99,01/08/19 15:32,"583 North St, Los Angeles, CA 90001" -141815,AAA Batteries (4-pack),2,2.99,01/22/19 10:50,"280 5th St, San Francisco, CA 94016" -141816,34in Ultrawide Monitor,1,379.99,01/09/19 09:22,"730 Adams St, Boston, MA 02215" -141817,LG Dryer,1,600.0,01/04/19 09:03,"404 Lakeview St, San Francisco, CA 94016" -141818,AA Batteries (4-pack),1,3.84,01/06/19 06:53,"91 Hill St, Atlanta, GA 30301" -141819,AAA Batteries (4-pack),2,2.99,01/26/19 22:06,"318 2nd St, New York City, NY 10001" -141820,Lightning Charging Cable,1,14.95,01/21/19 17:53,"215 Lincoln St, Austin, TX 73301" -141821,USB-C Charging Cable,1,11.95,01/21/19 12:24,"337 Wilson St, New York City, NY 10001" -141822,Lightning Charging Cable,1,14.95,01/09/19 18:53,"775 2nd St, Boston, MA 02215" -141823,USB-C Charging Cable,1,11.95,01/27/19 17:30,"952 4th St, Atlanta, GA 30301" -141824,Wired Headphones,1,11.99,01/14/19 12:34,"846 13th St, Atlanta, GA 30301" -141825,Lightning Charging Cable,1,14.95,01/16/19 13:02,"660 Park St, Atlanta, GA 30301" -141826,Lightning Charging Cable,1,14.95,01/25/19 21:34,"336 Center St, San Francisco, CA 94016" -141827,20in Monitor,1,109.99,01/18/19 21:33,"497 Washington St, San Francisco, CA 94016" -141828,AA Batteries (4-pack),1,3.84,01/13/19 11:05,"611 West St, Atlanta, GA 30301" -141829,Flatscreen TV,1,300,01/15/19 12:41,"214 9th St, San Francisco, CA 94016" -141830,USB-C Charging Cable,1,11.95,01/24/19 08:24,"873 Lakeview St, Seattle, WA 98101" -141831,Bose SoundSport Headphones,1,99.99,01/23/19 02:42,"153 Lakeview St, Dallas, TX 75001" -141832,34in Ultrawide Monitor,1,379.99,01/03/19 19:01,"254 Cedar St, New York City, NY 10001" -141833,34in Ultrawide Monitor,1,379.99,01/11/19 21:16,"689 6th St, San Francisco, CA 94016" -141834,27in FHD Monitor,1,149.99,01/05/19 12:07,"704 10th St, San Francisco, CA 94016" -141835,Flatscreen TV,1,300,01/23/19 20:33,"100 Spruce St, Los Angeles, CA 90001" -141836,AAA Batteries (4-pack),2,2.99,01/10/19 22:46,"906 West St, Seattle, WA 98101" -141837,Bose SoundSport Headphones,1,99.99,01/11/19 08:57,"858 Wilson St, Boston, MA 02215" -141838,Wired Headphones,1,11.99,01/15/19 15:07,"4 Main St, San Francisco, CA 94016" -141839,USB-C Charging Cable,1,11.95,01/05/19 10:47,"448 River St, Boston, MA 02215" -141840,USB-C Charging Cable,1,11.95,01/24/19 23:40,"739 11th St, Boston, MA 02215" -141841,Bose SoundSport Headphones,1,99.99,01/10/19 20:43,"309 11th St, San Francisco, CA 94016" -141842,Bose SoundSport Headphones,1,99.99,01/19/19 14:11,"471 Maple St, San Francisco, CA 94016" -141843,AA Batteries (4-pack),1,3.84,01/10/19 09:59,"400 9th St, San Francisco, CA 94016" -141843,AAA Batteries (4-pack),1,2.99,01/10/19 09:59,"400 9th St, San Francisco, CA 94016" -141844,Lightning Charging Cable,1,14.95,01/21/19 20:45,"368 11th St, Seattle, WA 98101" -141845,AAA Batteries (4-pack),1,2.99,01/24/19 23:20,"45 Lincoln St, Seattle, WA 98101" -141846,AA Batteries (4-pack),1,3.84,01/10/19 09:03,"826 Meadow St, Los Angeles, CA 90001" -141847,Bose SoundSport Headphones,1,99.99,01/08/19 15:52,"946 Lake St, Seattle, WA 98101" -141848,USB-C Charging Cable,1,11.95,01/12/19 16:47,"1 8th St, Atlanta, GA 30301" -141849,Bose SoundSport Headphones,1,99.99,01/15/19 06:28,"622 Lake St, Portland, ME 04101" -141850,AAA Batteries (4-pack),1,2.99,01/28/19 18:44,"676 1st St, Los Angeles, CA 90001" -141851,27in FHD Monitor,1,149.99,01/20/19 10:43,"325 Chestnut St, New York City, NY 10001" -141852,USB-C Charging Cable,1,11.95,01/09/19 20:04,"446 Maple St, Los Angeles, CA 90001" -141853,Apple Airpods Headphones,1,150,01/11/19 12:32,"364 Pine St, New York City, NY 10001" -141854,20in Monitor,1,109.99,01/03/19 12:55,"238 Forest St, Dallas, TX 75001" -141855,ThinkPad Laptop,1,999.99,01/01/19 15:01,"549 Lincoln St, San Francisco, CA 94016" -141856,Lightning Charging Cable,1,14.95,01/10/19 12:38,"165 Jefferson St, New York City, NY 10001" -141857,Bose SoundSport Headphones,1,99.99,01/10/19 00:35,"140 Main St, San Francisco, CA 94016" -141858,USB-C Charging Cable,1,11.95,01/10/19 19:57,"339 Cedar St, San Francisco, CA 94016" -141859,AA Batteries (4-pack),1,3.84,01/24/19 06:38,"348 Jackson St, Seattle, WA 98101" -141860,ThinkPad Laptop,1,999.99,01/08/19 15:17,"760 Jackson St, Los Angeles, CA 90001" -141861,27in FHD Monitor,1,149.99,01/15/19 20:15,"361 Main St, Los Angeles, CA 90001" -141862,Wired Headphones,1,11.99,01/12/19 11:02,"754 Pine St, San Francisco, CA 94016" -141863,AAA Batteries (4-pack),1,2.99,01/26/19 16:21,"373 Chestnut St, Seattle, WA 98101" -141864,27in 4K Gaming Monitor,1,389.99,01/18/19 22:08,"797 Forest St, Portland, OR 97035" -141865,Wired Headphones,2,11.99,01/25/19 22:16,"816 South St, San Francisco, CA 94016" -141866,Bose SoundSport Headphones,1,99.99,01/27/19 13:57,"32 Wilson St, Boston, MA 02215" -141867,Apple Airpods Headphones,1,150,01/29/19 13:58,"763 River St, Los Angeles, CA 90001" -141868,Wired Headphones,1,11.99,01/31/19 20:56,"166 Pine St, Los Angeles, CA 90001" -141869,20in Monitor,1,109.99,01/25/19 11:13,"528 Maple St, Los Angeles, CA 90001" -141870,AA Batteries (4-pack),2,3.84,01/25/19 22:23,"269 Main St, Dallas, TX 75001" -141871,Lightning Charging Cable,1,14.95,01/05/19 06:28,"782 Jefferson St, San Francisco, CA 94016" -141872,34in Ultrawide Monitor,1,379.99,01/19/19 12:46,"428 Madison St, Seattle, WA 98101" -141873,34in Ultrawide Monitor,1,379.99,01/19/19 19:12,"521 Ridge St, San Francisco, CA 94016" -141874,Lightning Charging Cable,1,14.95,01/29/19 20:04,"960 North St, San Francisco, CA 94016" -141875,AA Batteries (4-pack),1,3.84,01/26/19 14:00,"896 Dogwood St, San Francisco, CA 94016" -141876,Apple Airpods Headphones,1,150,01/13/19 11:16,"81 Maple St, San Francisco, CA 94016" -141877,USB-C Charging Cable,1,11.95,01/01/19 15:49,"441 South St, San Francisco, CA 94016" -141878,Apple Airpods Headphones,1,150,01/17/19 16:06,"652 Chestnut St, Atlanta, GA 30301" -141879,AA Batteries (4-pack),1,3.84,01/20/19 20:03,"595 South St, San Francisco, CA 94016" -141880,AAA Batteries (4-pack),2,2.99,01/31/19 01:21,"623 9th St, Dallas, TX 75001" -,,,,, -141881,AAA Batteries (4-pack),7,2.99,01/19/19 16:36,"563 Wilson St, Seattle, WA 98101" -141882,AA Batteries (4-pack),1,3.84,01/08/19 22:08,"55 Lakeview St, Los Angeles, CA 90001" -141883,AA Batteries (4-pack),1,3.84,01/15/19 21:42,"320 River St, Dallas, TX 75001" -141884,Google Phone,1,600,01/08/19 10:18,"74 1st St, Los Angeles, CA 90001" -141885,Wired Headphones,1,11.99,01/02/19 13:18,"544 West St, Portland, OR 97035" -141886,iPhone,1,700,01/10/19 06:37,"94 7th St, New York City, NY 10001" -141887,AAA Batteries (4-pack),2,2.99,01/13/19 13:41,"374 10th St, San Francisco, CA 94016" -141888,iPhone,1,700,01/09/19 11:01,"17 Spruce St, Los Angeles, CA 90001" -141889,34in Ultrawide Monitor,1,379.99,01/12/19 13:03,"12 Cedar St, Boston, MA 02215" -141890,Lightning Charging Cable,1,14.95,01/21/19 08:05,"962 Washington St, New York City, NY 10001" -141891,USB-C Charging Cable,1,11.95,01/31/19 22:14,"800 Lincoln St, Atlanta, GA 30301" -141892,AA Batteries (4-pack),2,3.84,01/06/19 10:07,"888 Walnut St, San Francisco, CA 94016" -141893,AA Batteries (4-pack),1,3.84,01/23/19 16:19,"527 Lakeview St, New York City, NY 10001" -,,,,, -141894,Apple Airpods Headphones,1,150,01/12/19 14:20,"40 Wilson St, New York City, NY 10001" -141895,AA Batteries (4-pack),3,3.84,01/18/19 17:37,"469 Lake St, Dallas, TX 75001" -141896,AA Batteries (4-pack),1,3.84,01/20/19 21:38,"455 14th St, San Francisco, CA 94016" -141897,Google Phone,1,600,01/06/19 20:16,"658 10th St, Dallas, TX 75001" -141898,Flatscreen TV,1,300,01/15/19 13:17,"986 South St, New York City, NY 10001" -141899,AAA Batteries (4-pack),2,2.99,01/12/19 22:33,"649 Pine St, Portland, OR 97035" -141900,Vareebadd Phone,1,400,01/18/19 09:53,"239 13th St, Seattle, WA 98101" -141900,USB-C Charging Cable,1,11.95,01/18/19 09:53,"239 13th St, Seattle, WA 98101" -141900,Wired Headphones,1,11.99,01/18/19 09:53,"239 13th St, Seattle, WA 98101" -141901,Google Phone,1,600,01/26/19 22:12,"942 Maple St, Boston, MA 02215" -141901,USB-C Charging Cable,1,11.95,01/26/19 22:12,"942 Maple St, Boston, MA 02215" -141902,Wired Headphones,1,11.99,01/06/19 13:43,"706 Johnson St, New York City, NY 10001" -141903,ThinkPad Laptop,1,999.99,01/30/19 20:01,"550 Willow St, San Francisco, CA 94016" -141904,Apple Airpods Headphones,1,150,01/09/19 18:03,"945 Chestnut St, New York City, NY 10001" -141905,USB-C Charging Cable,1,11.95,01/02/19 07:10,"140 Cherry St, Los Angeles, CA 90001" -141906,AAA Batteries (4-pack),2,2.99,01/26/19 14:27,"59 Adams St, Seattle, WA 98101" -141907,USB-C Charging Cable,1,11.95,01/13/19 17:46,"812 13th St, Seattle, WA 98101" -141908,Apple Airpods Headphones,1,150,01/27/19 23:33,"613 8th St, Portland, OR 97035" -141909,AA Batteries (4-pack),2,3.84,01/17/19 16:29,"314 Center St, Portland, OR 97035" -141910,Vareebadd Phone,1,400,01/19/19 10:52,"831 9th St, New York City, NY 10001" -141910,Wired Headphones,1,11.99,01/19/19 10:52,"831 9th St, New York City, NY 10001" -141911,Lightning Charging Cable,1,14.95,01/20/19 14:35,"902 Elm St, Boston, MA 02215" -141912,Apple Airpods Headphones,1,150,01/23/19 19:41,"742 Adams St, San Francisco, CA 94016" -141913,AAA Batteries (4-pack),1,2.99,01/27/19 11:35,"380 Pine St, San Francisco, CA 94016" -141914,Bose SoundSport Headphones,1,99.99,01/05/19 15:01,"420 5th St, San Francisco, CA 94016" -141915,AAA Batteries (4-pack),2,2.99,01/28/19 16:51,"576 Park St, Portland, OR 97035" -141916,Wired Headphones,1,11.99,01/26/19 14:03,"217 South St, Boston, MA 02215" -141917,AAA Batteries (4-pack),1,2.99,01/16/19 19:54,"415 1st St, Dallas, TX 75001" -141918,Bose SoundSport Headphones,1,99.99,01/21/19 17:04,"916 7th St, Atlanta, GA 30301" -141919,Wired Headphones,1,11.99,01/02/19 12:55,"197 Ridge St, Boston, MA 02215" -141920,Wired Headphones,1,11.99,01/23/19 18:39,"741 Lakeview St, Boston, MA 02215" -141921,Lightning Charging Cable,1,14.95,01/07/19 02:22,"164 Elm St, San Francisco, CA 94016" -141922,AA Batteries (4-pack),1,3.84,01/10/19 11:05,"985 Lakeview St, Atlanta, GA 30301" -141923,Lightning Charging Cable,1,14.95,01/20/19 21:26,"556 South St, Austin, TX 73301" -141924,USB-C Charging Cable,1,11.95,01/09/19 10:47,"497 4th St, Seattle, WA 98101" -141925,Lightning Charging Cable,1,14.95,01/17/19 10:24,"572 Hickory St, New York City, NY 10001" -141926,20in Monitor,2,109.99,01/23/19 22:09,"177 12th St, Los Angeles, CA 90001" -141927,27in FHD Monitor,1,149.99,01/31/19 21:37,"163 11th St, San Francisco, CA 94016" -141928,Apple Airpods Headphones,1,150,01/06/19 14:01,"294 South St, Dallas, TX 75001" -141929,AA Batteries (4-pack),2,3.84,01/02/19 14:42,"285 6th St, Boston, MA 02215" -141930,20in Monitor,1,109.99,01/18/19 14:21,"173 Church St, Los Angeles, CA 90001" -141931,USB-C Charging Cable,1,11.95,01/02/19 13:31,"834 Wilson St, Boston, MA 02215" -141932,Lightning Charging Cable,1,14.95,01/24/19 18:49,"943 4th St, Atlanta, GA 30301" -141933,Wired Headphones,1,11.99,01/17/19 16:31,"307 Walnut St, Los Angeles, CA 90001" -141934,Flatscreen TV,1,300,01/19/19 15:56,"546 Johnson St, Portland, OR 97035" -141935,34in Ultrawide Monitor,1,379.99,01/17/19 20:12,"365 Dogwood St, New York City, NY 10001" -141936,Lightning Charging Cable,1,14.95,01/27/19 17:04,"339 Washington St, San Francisco, CA 94016" -141937,USB-C Charging Cable,1,11.95,01/02/19 08:31,"131 South St, New York City, NY 10001" -141938,Macbook Pro Laptop,1,1700,01/16/19 16:34,"852 13th St, Los Angeles, CA 90001" -141939,34in Ultrawide Monitor,1,379.99,01/11/19 14:36,"119 Walnut St, Dallas, TX 75001" -141939,Lightning Charging Cable,1,14.95,01/11/19 14:36,"119 Walnut St, Dallas, TX 75001" -141940,Bose SoundSport Headphones,1,99.99,01/14/19 16:19,"548 River St, Los Angeles, CA 90001" -141941,20in Monitor,1,109.99,01/27/19 10:50,"469 Johnson St, Los Angeles, CA 90001" -141942,AAA Batteries (4-pack),1,2.99,01/06/19 12:24,"968 Cedar St, San Francisco, CA 94016" -141943,Lightning Charging Cable,1,14.95,01/10/19 23:06,"233 5th St, San Francisco, CA 94016" -141944,20in Monitor,1,109.99,01/31/19 18:04,"618 8th St, New York City, NY 10001" -141945,USB-C Charging Cable,1,11.95,01/26/19 14:12,"324 Wilson St, San Francisco, CA 94016" -141946,USB-C Charging Cable,1,11.95,01/11/19 17:24,"731 Lake St, San Francisco, CA 94016" -141946,Wired Headphones,1,11.99,01/11/19 17:24,"731 Lake St, San Francisco, CA 94016" -141947,Lightning Charging Cable,1,14.95,01/17/19 11:05,"770 5th St, San Francisco, CA 94016" -141947,Bose SoundSport Headphones,1,99.99,01/17/19 11:05,"770 5th St, San Francisco, CA 94016" -141948,27in FHD Monitor,1,149.99,01/24/19 14:04,"456 Meadow St, Los Angeles, CA 90001" -141949,USB-C Charging Cable,1,11.95,01/07/19 06:43,"11 14th St, New York City, NY 10001" -141950,AAA Batteries (4-pack),1,2.99,01/01/19 19:54,"374 8th St, Seattle, WA 98101" -141951,ThinkPad Laptop,1,999.99,01/16/19 06:54,"489 12th St, Boston, MA 02215" -141952,Lightning Charging Cable,1,14.95,01/04/19 21:13,"551 Ridge St, Portland, OR 97035" -141953,Macbook Pro Laptop,1,1700,01/11/19 10:03,"112 Maple St, Atlanta, GA 30301" -141954,Google Phone,1,600,01/28/19 17:05,"349 Wilson St, San Francisco, CA 94016" -141955,Lightning Charging Cable,1,14.95,01/26/19 15:04,"340 Washington St, Seattle, WA 98101" -141956,Flatscreen TV,1,300,01/18/19 17:55,"5 Jefferson St, Dallas, TX 75001" -141957,USB-C Charging Cable,2,11.95,01/25/19 20:06,"229 Hickory St, San Francisco, CA 94016" -141958,Lightning Charging Cable,1,14.95,01/16/19 15:23,"24 Lakeview St, Atlanta, GA 30301" -141959,Wired Headphones,1,11.99,01/26/19 20:31,"895 Cedar St, San Francisco, CA 94016" -141960,AA Batteries (4-pack),3,3.84,01/12/19 18:02,"548 9th St, Boston, MA 02215" -141961,iPhone,1,700,01/12/19 17:39,"512 Hickory St, Los Angeles, CA 90001" -141962,AA Batteries (4-pack),1,3.84,01/30/19 11:47,"915 Hill St, Boston, MA 02215" -141963,Bose SoundSport Headphones,1,99.99,01/24/19 11:13,"227 Wilson St, Dallas, TX 75001" -141964,AA Batteries (4-pack),1,3.84,01/21/19 12:36,"277 Washington St, Dallas, TX 75001" -141965,Google Phone,1,600,01/09/19 13:55,"303 10th St, Boston, MA 02215" -141965,Wired Headphones,1,11.99,01/09/19 13:55,"303 10th St, Boston, MA 02215" -141966,Lightning Charging Cable,1,14.95,01/15/19 17:43,"819 Jefferson St, Atlanta, GA 30301" -141967,iPhone,1,700,01/25/19 12:02,"397 Meadow St, Los Angeles, CA 90001" -141967,Wired Headphones,1,11.99,01/25/19 12:02,"397 Meadow St, Los Angeles, CA 90001" -141968,Flatscreen TV,1,300,01/15/19 19:50,"772 Madison St, Portland, ME 04101" -141969,27in FHD Monitor,1,149.99,01/15/19 22:50,"127 North St, Los Angeles, CA 90001" -141970,Apple Airpods Headphones,1,150,01/05/19 13:06,"136 11th St, Boston, MA 02215" -141970,Lightning Charging Cable,1,14.95,01/05/19 13:06,"136 11th St, Boston, MA 02215" -141971,34in Ultrawide Monitor,1,379.99,01/19/19 07:00,"219 Elm St, New York City, NY 10001" -141972,Google Phone,1,600,01/24/19 15:25,"52 Main St, San Francisco, CA 94016" -141972,iPhone,1,700,01/24/19 15:25,"52 Main St, San Francisco, CA 94016" -141973,AAA Batteries (4-pack),1,2.99,01/23/19 07:37,"612 Elm St, Atlanta, GA 30301" -141974,AAA Batteries (4-pack),1,2.99,01/23/19 20:54,"115 Main St, Los Angeles, CA 90001" -141975,AA Batteries (4-pack),1,3.84,01/18/19 21:53,"879 5th St, Boston, MA 02215" -141976,USB-C Charging Cable,1,11.95,01/15/19 09:41,"365 Forest St, San Francisco, CA 94016" -141977,27in FHD Monitor,1,149.99,01/09/19 04:01,"353 Sunset St, Los Angeles, CA 90001" -141978,Wired Headphones,1,11.99,01/26/19 13:02,"181 Park St, Seattle, WA 98101" -141979,Flatscreen TV,1,300,01/08/19 20:21,"761 South St, Portland, ME 04101" -141980,Bose SoundSport Headphones,1,99.99,01/05/19 21:57,"294 Walnut St, San Francisco, CA 94016" -141981,20in Monitor,1,109.99,01/02/19 22:10,"859 12th St, San Francisco, CA 94016" -141982,27in FHD Monitor,1,149.99,01/11/19 15:57,"624 Highland St, Atlanta, GA 30301" -141983,27in 4K Gaming Monitor,1,389.99,01/05/19 17:27,"350 South St, Portland, OR 97035" -141984,Vareebadd Phone,1,400,01/23/19 16:48,"451 11th St, Atlanta, GA 30301" -141985,Apple Airpods Headphones,1,150,01/26/19 19:48,"971 Center St, New York City, NY 10001" -141986,Lightning Charging Cable,1,14.95,01/31/19 14:21,"516 Pine St, San Francisco, CA 94016" -141987,Google Phone,1,600,01/29/19 16:56,"917 Adams St, San Francisco, CA 94016" -141988,Bose SoundSport Headphones,1,99.99,01/17/19 11:28,"833 11th St, Portland, OR 97035" -141989,Bose SoundSport Headphones,1,99.99,01/15/19 11:36,"756 Spruce St, New York City, NY 10001" -141990,USB-C Charging Cable,1,11.95,01/18/19 00:39,"581 14th St, Atlanta, GA 30301" -141991,AAA Batteries (4-pack),2,2.99,01/01/19 19:51,"614 Wilson St, Boston, MA 02215" -141992,Bose SoundSport Headphones,1,99.99,01/02/19 22:27,"882 Hickory St, Los Angeles, CA 90001" -141993,iPhone,1,700,01/06/19 09:19,"422 Jackson St, Seattle, WA 98101" -141993,Wired Headphones,1,11.99,01/06/19 09:19,"422 Jackson St, Seattle, WA 98101" -141994,Lightning Charging Cable,1,14.95,01/02/19 08:47,"665 Church St, Dallas, TX 75001" -141995,AA Batteries (4-pack),1,3.84,01/11/19 10:49,"152 South St, Austin, TX 73301" -141996,Lightning Charging Cable,1,14.95,01/20/19 20:53,"113 Center St, San Francisco, CA 94016" -141997,27in FHD Monitor,1,149.99,01/26/19 12:55,"191 Pine St, Portland, OR 97035" -141998,AAA Batteries (4-pack),3,2.99,01/26/19 19:19,"561 Madison St, San Francisco, CA 94016" -141999,27in FHD Monitor,1,149.99,01/24/19 08:21,"423 Church St, New York City, NY 10001" -,,,,, -142000,27in 4K Gaming Monitor,1,389.99,01/23/19 10:54,"957 Cherry St, Atlanta, GA 30301" -142001,AAA Batteries (4-pack),1,2.99,01/29/19 16:58,"566 Walnut St, Portland, ME 04101" -142002,27in FHD Monitor,1,149.99,01/20/19 21:45,"264 Pine St, San Francisco, CA 94016" -142003,Lightning Charging Cable,1,14.95,01/19/19 17:52,"334 9th St, San Francisco, CA 94016" -142004,Bose SoundSport Headphones,1,99.99,01/04/19 09:04,"473 Johnson St, San Francisco, CA 94016" -142005,USB-C Charging Cable,1,11.95,01/06/19 23:13,"713 Jackson St, Los Angeles, CA 90001" -142006,Bose SoundSport Headphones,1,99.99,01/23/19 13:46,"577 4th St, Boston, MA 02215" -142007,27in FHD Monitor,1,149.99,01/03/19 12:54,"419 North St, Seattle, WA 98101" -142008,Wired Headphones,1,11.99,01/21/19 15:57,"160 Church St, San Francisco, CA 94016" -142009,iPhone,1,700,01/15/19 13:59,"411 11th St, San Francisco, CA 94016" -142010,iPhone,1,700,01/04/19 06:28,"511 2nd St, Portland, OR 97035" -142010,Lightning Charging Cable,1,14.95,01/04/19 06:28,"511 2nd St, Portland, OR 97035" -142011,Apple Airpods Headphones,1,150,01/18/19 09:36,"345 Walnut St, San Francisco, CA 94016" -142012,AAA Batteries (4-pack),2,2.99,01/27/19 13:42,"707 Ridge St, San Francisco, CA 94016" -142013,Bose SoundSport Headphones,1,99.99,01/08/19 18:02,"662 10th St, Boston, MA 02215" -142014,Macbook Pro Laptop,1,1700,01/02/19 20:41,"332 River St, Boston, MA 02215" -142015,Apple Airpods Headphones,1,150,01/01/19 13:26,"205 1st St, Los Angeles, CA 90001" -142016,AAA Batteries (4-pack),2,2.99,01/13/19 21:47,"294 North St, San Francisco, CA 94016" -142017,27in 4K Gaming Monitor,1,389.99,01/22/19 14:17,"879 5th St, San Francisco, CA 94016" -142018,USB-C Charging Cable,1,11.95,01/09/19 16:38,"378 Jefferson St, New York City, NY 10001" -142019,Lightning Charging Cable,1,14.95,01/03/19 19:58,"811 2nd St, Dallas, TX 75001" -142020,USB-C Charging Cable,1,11.95,01/10/19 08:33,"194 River St, Atlanta, GA 30301" -142021,Lightning Charging Cable,1,14.95,01/07/19 09:39,"330 Lincoln St, San Francisco, CA 94016" -142022,AA Batteries (4-pack),1,3.84,01/27/19 09:14,"463 11th St, Atlanta, GA 30301" -142023,20in Monitor,1,109.99,01/29/19 20:02,"766 Maple St, San Francisco, CA 94016" -142023,Wired Headphones,1,11.99,01/29/19 20:02,"766 Maple St, San Francisco, CA 94016" -142024,AAA Batteries (4-pack),1,2.99,01/26/19 13:22,"779 Sunset St, San Francisco, CA 94016" -142025,Flatscreen TV,1,300,01/15/19 00:06,"688 9th St, Los Angeles, CA 90001" -142026,Google Phone,1,600,01/18/19 17:41,"470 Washington St, San Francisco, CA 94016" -142027,Wired Headphones,1,11.99,01/28/19 17:32,"941 Sunset St, Portland, ME 04101" -142028,AA Batteries (4-pack),1,3.84,01/09/19 12:44,"48 South St, Los Angeles, CA 90001" -142029,20in Monitor,1,109.99,01/08/19 12:39,"431 Cedar St, Los Angeles, CA 90001" -142030,AAA Batteries (4-pack),1,2.99,01/02/19 13:45,"827 Lincoln St, Los Angeles, CA 90001" -142031,AA Batteries (4-pack),1,3.84,01/09/19 23:38,"319 Hill St, Seattle, WA 98101" -142032,Flatscreen TV,1,300,01/14/19 09:14,"173 Jackson St, San Francisco, CA 94016" -142033,Apple Airpods Headphones,1,150,01/26/19 19:25,"758 Highland St, Los Angeles, CA 90001" -142034,Apple Airpods Headphones,1,150,01/16/19 10:27,"335 North St, San Francisco, CA 94016" -142035,iPhone,1,700,01/17/19 11:06,"890 North St, Atlanta, GA 30301" -142036,ThinkPad Laptop,1,999.99,01/26/19 19:20,"425 Willow St, Atlanta, GA 30301" -142037,iPhone,1,700,01/11/19 21:48,"230 North St, Austin, TX 73301" -142037,Apple Airpods Headphones,1,150,01/11/19 21:48,"230 North St, Austin, TX 73301" -142038,AAA Batteries (4-pack),3,2.99,01/07/19 08:07,"975 Church St, Atlanta, GA 30301" -142039,Google Phone,1,600,01/31/19 16:13,"549 Cherry St, New York City, NY 10001" -142039,USB-C Charging Cable,3,11.95,01/31/19 16:13,"549 Cherry St, New York City, NY 10001" -142040,Lightning Charging Cable,1,14.95,01/30/19 20:38,"874 Church St, San Francisco, CA 94016" -142041,Lightning Charging Cable,1,14.95,01/09/19 12:09,"166 5th St, Dallas, TX 75001" -142042,Lightning Charging Cable,2,14.95,01/07/19 21:48,"461 Hill St, Boston, MA 02215" -142043,Flatscreen TV,1,300,01/22/19 12:55,"22 Washington St, Seattle, WA 98101" -142044,USB-C Charging Cable,1,11.95,01/19/19 12:50,"510 Madison St, Los Angeles, CA 90001" -142045,ThinkPad Laptop,1,999.99,01/07/19 12:34,"902 Cherry St, San Francisco, CA 94016" -142046,Wired Headphones,2,11.99,01/20/19 19:40,"775 14th St, New York City, NY 10001" -142047,AA Batteries (4-pack),1,3.84,01/26/19 17:17,"896 Church St, San Francisco, CA 94016" -142048,Google Phone,1,600,01/04/19 15:30,"628 11th St, Portland, OR 97035" -142048,Wired Headphones,1,11.99,01/04/19 15:30,"628 11th St, Portland, OR 97035" -142049,AAA Batteries (4-pack),1,2.99,01/11/19 12:56,"184 Sunset St, Portland, OR 97035" -142050,27in FHD Monitor,1,149.99,01/22/19 17:00,"581 West St, Portland, OR 97035" -142051,USB-C Charging Cable,1,11.95,01/04/19 16:40,"269 Johnson St, Austin, TX 73301" -142052,Macbook Pro Laptop,1,1700,01/02/19 17:26,"731 10th St, San Francisco, CA 94016" -142053,Apple Airpods Headphones,1,150,01/30/19 10:53,"424 South St, Seattle, WA 98101" -142054,Bose SoundSport Headphones,1,99.99,01/11/19 19:29,"524 Spruce St, San Francisco, CA 94016" -142055,Bose SoundSport Headphones,1,99.99,01/05/19 02:03,"781 Lakeview St, Austin, TX 73301" -142056,USB-C Charging Cable,1,11.95,01/08/19 09:16,"342 Wilson St, Seattle, WA 98101" -142057,Google Phone,1,600,01/04/19 11:15,"42 Madison St, New York City, NY 10001" -142058,iPhone,1,700,01/24/19 21:33,"621 12th St, Los Angeles, CA 90001" -142059,Macbook Pro Laptop,1,1700,01/08/19 20:49,"486 South St, Los Angeles, CA 90001" -142060,Lightning Charging Cable,1,14.95,01/14/19 11:36,"754 13th St, New York City, NY 10001" -142061,AA Batteries (4-pack),1,3.84,01/18/19 19:56,"776 Center St, San Francisco, CA 94016" -142062,Wired Headphones,1,11.99,01/24/19 12:31,"930 Church St, San Francisco, CA 94016" -142063,AAA Batteries (4-pack),1,2.99,01/01/19 17:45,"153 Willow St, Dallas, TX 75001" -142064,AA Batteries (4-pack),2,3.84,01/08/19 19:52,"710 Cherry St, New York City, NY 10001" -142065,AAA Batteries (4-pack),2,2.99,01/24/19 01:17,"820 West St, San Francisco, CA 94016" -142066,27in 4K Gaming Monitor,1,389.99,01/01/19 22:02,"110 Dogwood St, Seattle, WA 98101" -142067,27in FHD Monitor,1,149.99,01/30/19 09:23,"149 Ridge St, Los Angeles, CA 90001" -142068,27in 4K Gaming Monitor,1,389.99,01/28/19 23:09,"469 Elm St, Los Angeles, CA 90001" -142069,AAA Batteries (4-pack),2,2.99,01/22/19 11:42,"541 Maple St, Los Angeles, CA 90001" -142070,USB-C Charging Cable,1,11.95,01/13/19 16:12,"356 14th St, Portland, ME 04101" -142071,AA Batteries (4-pack),1,3.84,01/17/19 23:02,"131 2nd St, Boston, MA 02215" -142071,AA Batteries (4-pack),1,3.84,01/17/19 23:02,"131 2nd St, Boston, MA 02215" -,,,,, -142072,ThinkPad Laptop,1,999.99,01/16/19 19:57,"961 Church St, Dallas, TX 75001" -142073,Wired Headphones,1,11.99,01/05/19 16:22,"237 Chestnut St, Portland, OR 97035" -142074,Bose SoundSport Headphones,1,99.99,01/25/19 20:51,"643 Elm St, Boston, MA 02215" -142075,Wired Headphones,1,11.99,01/19/19 16:20,"668 Maple St, San Francisco, CA 94016" -142076,Wired Headphones,1,11.99,01/29/19 16:11,"927 Johnson St, San Francisco, CA 94016" -142077,Apple Airpods Headphones,1,150,01/17/19 17:18,"912 9th St, Portland, OR 97035" -142078,AA Batteries (4-pack),1,3.84,01/09/19 12:03,"37 Meadow St, Dallas, TX 75001" -142079,AA Batteries (4-pack),1,3.84,01/02/19 17:17,"183 Park St, Dallas, TX 75001" -142080,USB-C Charging Cable,1,11.95,01/12/19 22:52,"541 13th St, Portland, OR 97035" -142081,AAA Batteries (4-pack),1,2.99,01/29/19 17:13,"758 Forest St, San Francisco, CA 94016" -142082,AAA Batteries (4-pack),1,2.99,01/16/19 22:04,"396 Hill St, New York City, NY 10001" -142083,Macbook Pro Laptop,1,1700,01/20/19 17:46,"977 Jackson St, Portland, OR 97035" -142084,USB-C Charging Cable,3,11.95,01/14/19 13:57,"442 Washington St, Seattle, WA 98101" -142085,iPhone,1,700,01/26/19 18:52,"577 13th St, Los Angeles, CA 90001" -142085,Lightning Charging Cable,1,14.95,01/26/19 18:52,"577 13th St, Los Angeles, CA 90001" -142086,Lightning Charging Cable,1,14.95,01/05/19 12:11,"440 Spruce St, Atlanta, GA 30301" -142087,27in 4K Gaming Monitor,1,389.99,01/24/19 14:52,"119 Dogwood St, San Francisco, CA 94016" -142088,Google Phone,1,600,01/12/19 12:11,"43 Sunset St, Seattle, WA 98101" -142089,USB-C Charging Cable,1,11.95,01/15/19 10:36,"529 13th St, Seattle, WA 98101" -142090,Wired Headphones,1,11.99,01/06/19 05:43,"940 Pine St, Portland, ME 04101" -142091,AAA Batteries (4-pack),1,2.99,01/21/19 10:13,"337 West St, San Francisco, CA 94016" -142092,Bose SoundSport Headphones,1,99.99,01/24/19 11:32,"473 Lincoln St, Los Angeles, CA 90001" -142093,Lightning Charging Cable,1,14.95,01/17/19 15:48,"342 Lake St, San Francisco, CA 94016" -142094,Wired Headphones,1,11.99,01/19/19 18:24,"396 South St, Boston, MA 02215" -142095,Apple Airpods Headphones,1,150,01/13/19 00:41,"528 Center St, Los Angeles, CA 90001" -142096,USB-C Charging Cable,1,11.95,01/22/19 18:00,"354 Hill St, Los Angeles, CA 90001" -142097,Lightning Charging Cable,1,14.95,01/17/19 20:58,"608 South St, Los Angeles, CA 90001" -142098,AA Batteries (4-pack),3,3.84,01/26/19 01:58,"295 Hickory St, Los Angeles, CA 90001" -142099,AA Batteries (4-pack),2,3.84,01/23/19 14:13,"389 South St, Dallas, TX 75001" -142100,Bose SoundSport Headphones,1,99.99,01/05/19 11:53,"791 2nd St, New York City, NY 10001" -142101,iPhone,1,700,01/22/19 21:24,"608 8th St, Atlanta, GA 30301" -142102,AAA Batteries (4-pack),1,2.99,01/25/19 12:15,"427 Chestnut St, New York City, NY 10001" -142103,iPhone,1,700,01/28/19 19:12,"600 Center St, Boston, MA 02215" -142104,Apple Airpods Headphones,1,150,01/19/19 20:50,"184 Madison St, San Francisco, CA 94016" -142105,ThinkPad Laptop,1,999.99,01/31/19 13:34,"306 14th St, Portland, OR 97035" -142106,27in 4K Gaming Monitor,1,389.99,01/04/19 18:51,"841 Walnut St, Dallas, TX 75001" -142107,Lightning Charging Cable,1,14.95,01/06/19 17:22,"653 Lincoln St, Portland, ME 04101" -142108,LG Dryer,1,600.0,01/31/19 16:01,"183 Elm St, New York City, NY 10001" -142109,Macbook Pro Laptop,1,1700,01/08/19 15:29,"551 13th St, Portland, ME 04101" -142110,USB-C Charging Cable,1,11.95,01/24/19 14:20,"277 Highland St, San Francisco, CA 94016" -142111,Lightning Charging Cable,1,14.95,01/23/19 22:49,"104 Cedar St, New York City, NY 10001" -142112,20in Monitor,1,109.99,01/01/19 13:51,"625 Elm St, Boston, MA 02215" -142112,Bose SoundSport Headphones,1,99.99,01/01/19 13:51,"625 Elm St, Boston, MA 02215" -142113,AAA Batteries (4-pack),3,2.99,01/10/19 10:12,"198 Lakeview St, San Francisco, CA 94016" -142114,Bose SoundSport Headphones,1,99.99,01/09/19 16:21,"838 Johnson St, San Francisco, CA 94016" -142115,Apple Airpods Headphones,1,150,01/11/19 19:26,"547 2nd St, Austin, TX 73301" -142116,AA Batteries (4-pack),1,3.84,01/09/19 18:54,"568 5th St, San Francisco, CA 94016" -142117,Macbook Pro Laptop,1,1700,01/08/19 10:58,"305 Jefferson St, Boston, MA 02215" -142118,Bose SoundSport Headphones,1,99.99,01/12/19 15:34,"818 West St, Seattle, WA 98101" -142119,USB-C Charging Cable,1,11.95,01/11/19 09:13,"37 7th St, Atlanta, GA 30301" -142120,27in 4K Gaming Monitor,1,389.99,01/04/19 04:20,"649 Spruce St, Atlanta, GA 30301" -142121,Wired Headphones,1,11.99,01/14/19 00:25,"37 South St, Atlanta, GA 30301" -142122,Apple Airpods Headphones,1,150,01/11/19 23:06,"331 7th St, Portland, OR 97035" -142123,Lightning Charging Cable,1,14.95,01/02/19 20:45,"253 14th St, San Francisco, CA 94016" -142124,AA Batteries (4-pack),2,3.84,01/28/19 13:11,"291 Lincoln St, San Francisco, CA 94016" -142125,Lightning Charging Cable,1,14.95,01/26/19 03:16,"841 7th St, Boston, MA 02215" -142126,AAA Batteries (4-pack),2,2.99,01/26/19 12:05,"41 7th St, San Francisco, CA 94016" -142127,Wired Headphones,1,11.99,01/14/19 09:20,"678 9th St, New York City, NY 10001" -142128,Google Phone,1,600,01/20/19 02:57,"752 2nd St, Austin, TX 73301" -142128,Bose SoundSport Headphones,1,99.99,01/20/19 02:57,"752 2nd St, Austin, TX 73301" -142128,Wired Headphones,2,11.99,01/20/19 02:57,"752 2nd St, Austin, TX 73301" -142129,Apple Airpods Headphones,1,150,01/31/19 18:09,"685 10th St, Atlanta, GA 30301" -142130,Google Phone,1,600,01/31/19 16:48,"640 11th St, Portland, OR 97035" -142131,AAA Batteries (4-pack),1,2.99,01/20/19 12:49,"250 12th St, Boston, MA 02215" -142132,USB-C Charging Cable,2,11.95,01/06/19 22:35,"664 Maple St, Boston, MA 02215" -142133,USB-C Charging Cable,1,11.95,01/30/19 20:04,"164 5th St, Boston, MA 02215" -142134,Google Phone,1,600,01/01/19 09:23,"734 River St, New York City, NY 10001" -142135,USB-C Charging Cable,1,11.95,01/06/19 10:29,"358 Hill St, San Francisco, CA 94016" -142136,AA Batteries (4-pack),1,3.84,01/07/19 09:58,"944 Ridge St, Seattle, WA 98101" -142137,AAA Batteries (4-pack),1,2.99,01/24/19 06:01,"789 13th St, Los Angeles, CA 90001" -142138,AA Batteries (4-pack),1,3.84,01/07/19 09:03,"531 West St, Boston, MA 02215" -142139,AA Batteries (4-pack),2,3.84,01/17/19 08:09,"846 11th St, San Francisco, CA 94016" -142140,Lightning Charging Cable,1,14.95,01/24/19 19:29,"293 Hill St, Austin, TX 73301" -142141,Wired Headphones,1,11.99,01/29/19 17:15,"799 Hickory St, Atlanta, GA 30301" -142142,Wired Headphones,1,11.99,01/22/19 13:00,"804 Willow St, Seattle, WA 98101" -142143,USB-C Charging Cable,1,11.95,01/03/19 11:44,"706 Elm St, San Francisco, CA 94016" -142144,Vareebadd Phone,1,400,01/04/19 04:31,"399 Lincoln St, New York City, NY 10001" -142144,USB-C Charging Cable,1,11.95,01/04/19 04:31,"399 Lincoln St, New York City, NY 10001" -142145,Apple Airpods Headphones,1,150,01/18/19 20:30,"899 6th St, San Francisco, CA 94016" -142145,USB-C Charging Cable,1,11.95,01/18/19 20:30,"899 6th St, San Francisco, CA 94016" -142146,AAA Batteries (4-pack),4,2.99,01/02/19 17:39,"628 North St, New York City, NY 10001" -142147,27in 4K Gaming Monitor,1,389.99,01/09/19 18:39,"799 Forest St, San Francisco, CA 94016" -142148,34in Ultrawide Monitor,1,379.99,01/24/19 02:46,"104 4th St, Los Angeles, CA 90001" -142149,AA Batteries (4-pack),3,3.84,01/15/19 11:45,"935 Main St, New York City, NY 10001" -142150,AA Batteries (4-pack),2,3.84,01/26/19 11:26,"728 Main St, Seattle, WA 98101" -142151,AA Batteries (4-pack),3,3.84,01/26/19 17:59,"384 4th St, San Francisco, CA 94016" -142152,Macbook Pro Laptop,1,1700,01/11/19 17:31,"231 Washington St, San Francisco, CA 94016" -142153,Wired Headphones,1,11.99,01/23/19 12:53,"831 Dogwood St, Los Angeles, CA 90001" -142154,USB-C Charging Cable,1,11.95,01/13/19 09:51,"579 4th St, Atlanta, GA 30301" -142155,Apple Airpods Headphones,1,150,01/31/19 15:55,"423 Main St, Atlanta, GA 30301" -142156,34in Ultrawide Monitor,1,379.99,01/01/19 08:16,"540 2nd St, San Francisco, CA 94016" -142157,Macbook Pro Laptop,1,1700,01/08/19 09:02,"638 5th St, Portland, OR 97035" -142158,Wired Headphones,1,11.99,01/15/19 17:32,"797 Lincoln St, Boston, MA 02215" -142159,Wired Headphones,1,11.99,01/26/19 02:11,"429 Lake St, Boston, MA 02215" -142160,Wired Headphones,1,11.99,01/01/19 11:57,"636 14th St, Los Angeles, CA 90001" -142161,Bose SoundSport Headphones,1,99.99,01/21/19 22:43,"330 Lake St, Dallas, TX 75001" -142162,27in FHD Monitor,1,149.99,01/06/19 10:04,"671 Highland St, San Francisco, CA 94016" -142163,Apple Airpods Headphones,1,150,01/04/19 21:54,"703 Walnut St, Dallas, TX 75001" -142164,USB-C Charging Cable,1,11.95,01/22/19 18:21,"509 11th St, Dallas, TX 75001" -142165,AA Batteries (4-pack),2,3.84,01/17/19 23:49,"749 Jackson St, Seattle, WA 98101" -142166,USB-C Charging Cable,1,11.95,01/24/19 15:27,"616 Johnson St, Boston, MA 02215" -142167,USB-C Charging Cable,1,11.95,01/24/19 20:06,"471 14th St, New York City, NY 10001" -142168,Lightning Charging Cable,1,14.95,01/21/19 11:49,"745 Jefferson St, Atlanta, GA 30301" -142169,AAA Batteries (4-pack),4,2.99,01/15/19 21:39,"398 Lakeview St, New York City, NY 10001" -142170,Wired Headphones,1,11.99,01/20/19 08:31,"663 12th St, Atlanta, GA 30301" -142171,Wired Headphones,1,11.99,01/16/19 10:11,"610 Sunset St, New York City, NY 10001" -142172,Apple Airpods Headphones,1,150,01/24/19 23:25,"491 Johnson St, Atlanta, GA 30301" -142173,iPhone,1,700,01/10/19 13:29,"674 Lake St, Los Angeles, CA 90001" -142174,Lightning Charging Cable,1,14.95,01/10/19 23:17,"338 Lake St, Boston, MA 02215" -142175,AAA Batteries (4-pack),1,2.99,01/12/19 19:45,"221 Lake St, San Francisco, CA 94016" -142176,Apple Airpods Headphones,1,150,01/12/19 13:08,"782 Highland St, San Francisco, CA 94016" -142177,Macbook Pro Laptop,1,1700,01/13/19 14:39,"754 1st St, Portland, ME 04101" -142178,AAA Batteries (4-pack),1,2.99,01/01/19 12:59,"877 10th St, Seattle, WA 98101" -142179,ThinkPad Laptop,1,999.99,01/19/19 01:41,"585 Meadow St, San Francisco, CA 94016" -142180,USB-C Charging Cable,1,11.95,01/30/19 19:11,"455 Sunset St, Austin, TX 73301" -142181,27in FHD Monitor,1,149.99,01/17/19 18:30,"419 8th St, Boston, MA 02215" -142182,Wired Headphones,1,11.99,01/05/19 15:56,"92 Highland St, New York City, NY 10001" -142183,34in Ultrawide Monitor,1,379.99,01/09/19 12:13,"406 Johnson St, Boston, MA 02215" -142184,AAA Batteries (4-pack),2,2.99,01/23/19 13:15,"342 13th St, Los Angeles, CA 90001" -142185,Bose SoundSport Headphones,1,99.99,01/16/19 14:02,"208 West St, Boston, MA 02215" -142186,34in Ultrawide Monitor,1,379.99,01/30/19 18:42,"505 Wilson St, Los Angeles, CA 90001" -142187,20in Monitor,1,109.99,01/30/19 20:39,"903 Maple St, Portland, OR 97035" -142188,USB-C Charging Cable,1,11.95,01/25/19 13:49,"347 11th St, Los Angeles, CA 90001" -142189,USB-C Charging Cable,1,11.95,01/08/19 11:46,"215 Jefferson St, Austin, TX 73301" -142190,34in Ultrawide Monitor,1,379.99,01/13/19 14:58,"356 Walnut St, San Francisco, CA 94016" -142191,20in Monitor,1,109.99,01/08/19 15:41,"246 Chestnut St, San Francisco, CA 94016" -142192,Google Phone,1,600,01/28/19 12:39,"68 11th St, Boston, MA 02215" -142192,USB-C Charging Cable,1,11.95,01/28/19 12:39,"68 11th St, Boston, MA 02215" -142193,27in FHD Monitor,1,149.99,01/01/19 09:08,"912 Cherry St, Boston, MA 02215" -142194,ThinkPad Laptop,1,999.99,01/26/19 17:21,"2 River St, Los Angeles, CA 90001" -142195,Apple Airpods Headphones,1,150,01/02/19 12:38,"468 Jefferson St, Boston, MA 02215" -142196,AA Batteries (4-pack),1,3.84,01/27/19 17:45,"692 8th St, Portland, ME 04101" -142197,AA Batteries (4-pack),1,3.84,01/16/19 14:59,"642 Center St, San Francisco, CA 94016" -142198,AA Batteries (4-pack),2,3.84,01/24/19 11:54,"833 Walnut St, San Francisco, CA 94016" -142199,20in Monitor,1,109.99,01/05/19 10:33,"568 Willow St, Dallas, TX 75001" -142200,Flatscreen TV,1,300,01/14/19 07:58,"381 Elm St, Seattle, WA 98101" -142201,AAA Batteries (4-pack),1,2.99,01/18/19 10:22,"996 Dogwood St, San Francisco, CA 94016" -142202,27in FHD Monitor,1,149.99,01/23/19 05:53,"581 Lakeview St, Dallas, TX 75001" -142203,Bose SoundSport Headphones,1,99.99,01/06/19 08:31,"272 Johnson St, Seattle, WA 98101" -142204,Bose SoundSport Headphones,1,99.99,01/06/19 11:29,"585 2nd St, Los Angeles, CA 90001" -142205,Bose SoundSport Headphones,1,99.99,01/14/19 13:13,"263 West St, New York City, NY 10001" -142206,Macbook Pro Laptop,1,1700,01/02/19 09:41,"673 13th St, San Francisco, CA 94016" -142207,Bose SoundSport Headphones,1,99.99,01/09/19 20:59,"358 Wilson St, Seattle, WA 98101" -142208,Bose SoundSport Headphones,1,99.99,01/13/19 08:49,"218 West St, New York City, NY 10001" -142209,34in Ultrawide Monitor,1,379.99,01/09/19 14:23,"536 River St, Austin, TX 73301" -142210,AA Batteries (4-pack),1,3.84,01/16/19 19:33,"322 13th St, San Francisco, CA 94016" -142211,Wired Headphones,1,11.99,01/03/19 16:01,"663 River St, New York City, NY 10001" -142212,AA Batteries (4-pack),3,3.84,01/18/19 15:22,"172 10th St, Los Angeles, CA 90001" -142213,Apple Airpods Headphones,1,150,01/29/19 23:04,"641 13th St, New York City, NY 10001" -142214,AAA Batteries (4-pack),3,2.99,01/23/19 07:54,"945 4th St, Los Angeles, CA 90001" -142215,Flatscreen TV,1,300,01/13/19 06:09,"555 Jefferson St, Dallas, TX 75001" -142216,AAA Batteries (4-pack),1,2.99,01/14/19 02:44,"63 2nd St, San Francisco, CA 94016" -142217,Bose SoundSport Headphones,1,99.99,01/19/19 14:18,"520 Madison St, Los Angeles, CA 90001" -142218,Wired Headphones,1,11.99,01/30/19 20:01,"246 Sunset St, San Francisco, CA 94016" -142219,27in FHD Monitor,1,149.99,01/04/19 20:31,"882 Pine St, Los Angeles, CA 90001" -142220,Flatscreen TV,1,300,01/03/19 16:03,"516 Lake St, Dallas, TX 75001" -142221,Flatscreen TV,1,300,01/12/19 02:33,"503 Adams St, Portland, OR 97035" -142222,AA Batteries (4-pack),1,3.84,01/19/19 19:18,"23 5th St, Los Angeles, CA 90001" -142223,Wired Headphones,1,11.99,01/28/19 16:49,"882 11th St, San Francisco, CA 94016" -142224,USB-C Charging Cable,1,11.95,01/11/19 20:56,"740 Washington St, Los Angeles, CA 90001" -142225,Lightning Charging Cable,1,14.95,01/19/19 09:47,"869 Madison St, New York City, NY 10001" -142226,AAA Batteries (4-pack),3,2.99,01/22/19 21:55,"103 Willow St, Austin, TX 73301" -142227,Wired Headphones,1,11.99,01/31/19 20:22,"954 North St, Austin, TX 73301" -142228,Macbook Pro Laptop,1,1700,01/22/19 11:37,"639 Lakeview St, San Francisco, CA 94016" -142229,27in FHD Monitor,1,149.99,01/04/19 10:29,"45 Lincoln St, Seattle, WA 98101" -142230,Google Phone,1,600,01/29/19 12:05,"867 Cedar St, San Francisco, CA 94016" -142230,USB-C Charging Cable,1,11.95,01/29/19 12:05,"867 Cedar St, San Francisco, CA 94016" -142231,Wired Headphones,2,11.99,01/18/19 05:53,"142 Sunset St, Portland, OR 97035" -142232,Wired Headphones,2,11.99,01/04/19 23:52,"776 12th St, Los Angeles, CA 90001" -142233,Lightning Charging Cable,1,14.95,01/14/19 13:41,"389 Highland St, Los Angeles, CA 90001" -142234,Lightning Charging Cable,1,14.95,01/13/19 10:37,"124 Church St, Los Angeles, CA 90001" -142235,AA Batteries (4-pack),1,3.84,01/15/19 21:15,"417 Washington St, Los Angeles, CA 90001" -142236,AAA Batteries (4-pack),1,2.99,01/14/19 10:48,"61 12th St, Los Angeles, CA 90001" -142237,AAA Batteries (4-pack),1,2.99,01/08/19 08:42,"419 10th St, Los Angeles, CA 90001" -142238,AA Batteries (4-pack),2,3.84,01/21/19 19:23,"82 Johnson St, Los Angeles, CA 90001" -142239,AA Batteries (4-pack),2,3.84,01/29/19 20:42,"344 12th St, Boston, MA 02215" -142240,34in Ultrawide Monitor,1,379.99,01/04/19 19:20,"966 Jefferson St, Dallas, TX 75001" -142241,USB-C Charging Cable,1,11.95,01/26/19 19:14,"303 Pine St, Dallas, TX 75001" -142242,USB-C Charging Cable,1,11.95,01/15/19 18:26,"503 Forest St, Portland, OR 97035" -142243,USB-C Charging Cable,1,11.95,01/04/19 09:47,"567 Church St, San Francisco, CA 94016" -142244,AA Batteries (4-pack),1,3.84,01/13/19 10:39,"944 Pine St, Austin, TX 73301" -142245,Macbook Pro Laptop,1,1700,01/15/19 18:07,"245 Sunset St, San Francisco, CA 94016" -142246,Lightning Charging Cable,1,14.95,01/29/19 10:10,"265 River St, Portland, OR 97035" -142247,Bose SoundSport Headphones,1,99.99,01/15/19 11:15,"229 14th St, Atlanta, GA 30301" -142248,Wired Headphones,1,11.99,01/02/19 09:32,"676 Forest St, New York City, NY 10001" -142249,Lightning Charging Cable,1,14.95,01/20/19 00:07,"819 6th St, Boston, MA 02215" -142250,Lightning Charging Cable,1,14.95,01/24/19 09:32,"996 North St, Austin, TX 73301" -142251,ThinkPad Laptop,1,999.99,01/11/19 18:42,"600 Johnson St, San Francisco, CA 94016" -142252,USB-C Charging Cable,1,11.95,01/16/19 06:49,"16 9th St, New York City, NY 10001" -142253,27in FHD Monitor,1,149.99,01/07/19 19:07,"295 Jefferson St, Los Angeles, CA 90001" -142254,Wired Headphones,1,11.99,01/05/19 14:35,"944 Dogwood St, Seattle, WA 98101" -142255,Flatscreen TV,1,300,01/29/19 19:57,"568 Walnut St, San Francisco, CA 94016" -142256,AAA Batteries (4-pack),1,2.99,01/25/19 13:37,"226 Jefferson St, San Francisco, CA 94016" -142257,iPhone,1,700,01/01/19 12:16,"774 2nd St, Atlanta, GA 30301" -142258,Lightning Charging Cable,1,14.95,01/05/19 23:40,"251 Lakeview St, Atlanta, GA 30301" -142259,LG Dryer,1,600.0,01/20/19 08:03,"413 Sunset St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -142260,AAA Batteries (4-pack),2,2.99,01/19/19 19:15,"653 Willow St, San Francisco, CA 94016" -142261,iPhone,1,700,01/23/19 08:47,"5 5th St, Dallas, TX 75001" -142261,Wired Headphones,1,11.99,01/23/19 08:47,"5 5th St, Dallas, TX 75001" -142262,USB-C Charging Cable,1,11.95,01/09/19 18:56,"892 14th St, New York City, NY 10001" -142263,Wired Headphones,1,11.99,01/06/19 23:07,"777 5th St, Seattle, WA 98101" -142264,LG Dryer,1,600.0,01/01/19 10:27,"338 Main St, Boston, MA 02215" -142265,Wired Headphones,2,11.99,01/22/19 22:17,"913 Adams St, Los Angeles, CA 90001" -142266,AA Batteries (4-pack),4,3.84,01/16/19 09:04,"677 West St, Atlanta, GA 30301" -142267,AA Batteries (4-pack),1,3.84,01/02/19 22:43,"96 Johnson St, Boston, MA 02215" -142268,AA Batteries (4-pack),1,3.84,01/14/19 12:13,"201 Lake St, Los Angeles, CA 90001" -142269,Wired Headphones,1,11.99,01/15/19 22:46,"121 Cherry St, Portland, OR 97035" -142270,34in Ultrawide Monitor,1,379.99,01/08/19 12:32,"36 Madison St, Dallas, TX 75001" -142271,Google Phone,1,600,01/05/19 12:40,"685 Lincoln St, Seattle, WA 98101" -142272,Google Phone,1,600,01/20/19 16:07,"756 Jefferson St, San Francisco, CA 94016" -142273,34in Ultrawide Monitor,1,379.99,01/20/19 12:08,"636 Elm St, Los Angeles, CA 90001" -142274,Flatscreen TV,1,300,01/30/19 10:39,"944 8th St, Los Angeles, CA 90001" -142275,Lightning Charging Cable,2,14.95,01/19/19 13:25,"964 Spruce St, Los Angeles, CA 90001" -142276,Bose SoundSport Headphones,1,99.99,01/10/19 16:46,"869 10th St, Seattle, WA 98101" -142277,AAA Batteries (4-pack),1,2.99,01/27/19 17:05,"542 12th St, San Francisco, CA 94016" -142278,USB-C Charging Cable,1,11.95,01/12/19 15:43,"655 Elm St, Los Angeles, CA 90001" -142279,AAA Batteries (4-pack),1,2.99,01/28/19 04:44,"605 12th St, Atlanta, GA 30301" -142280,Apple Airpods Headphones,1,150,01/28/19 18:22,"495 Cherry St, Boston, MA 02215" -142281,Google Phone,1,600,01/06/19 19:37,"67 Madison St, Los Angeles, CA 90001" -142282,AA Batteries (4-pack),1,3.84,01/06/19 10:50,"828 Chestnut St, Austin, TX 73301" -142283,Lightning Charging Cable,1,14.95,01/06/19 18:54,"528 Lakeview St, Los Angeles, CA 90001" -142284,AA Batteries (4-pack),1,3.84,01/07/19 13:52,"195 River St, New York City, NY 10001" -142285,Apple Airpods Headphones,1,150,01/26/19 13:42,"194 1st St, New York City, NY 10001" -142286,ThinkPad Laptop,1,999.99,01/05/19 16:01,"512 13th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -142287,Google Phone,1,600,01/24/19 19:41,"898 Spruce St, Dallas, TX 75001" -142287,USB-C Charging Cable,1,11.95,01/24/19 19:41,"898 Spruce St, Dallas, TX 75001" -142287,Wired Headphones,1,11.99,01/24/19 19:41,"898 Spruce St, Dallas, TX 75001" -142288,AAA Batteries (4-pack),1,2.99,01/14/19 14:50,"441 Main St, Los Angeles, CA 90001" -142289,27in FHD Monitor,1,149.99,01/31/19 19:21,"84 5th St, San Francisco, CA 94016" -142290,Apple Airpods Headphones,1,150,01/01/19 20:54,"392 Sunset St, Atlanta, GA 30301" -142291,27in 4K Gaming Monitor,1,389.99,01/03/19 12:21,"148 6th St, Boston, MA 02215" -142292,AA Batteries (4-pack),2,3.84,01/13/19 22:48,"768 Dogwood St, New York City, NY 10001" -142293,Wired Headphones,1,11.99,01/27/19 14:05,"108 Hickory St, San Francisco, CA 94016" -142294,34in Ultrawide Monitor,1,379.99,01/01/19 12:17,"116 Maple St, Seattle, WA 98101" -142295,27in 4K Gaming Monitor,1,389.99,01/28/19 18:29,"513 Cedar St, San Francisco, CA 94016" -142296,Apple Airpods Headphones,1,150,01/27/19 18:18,"915 River St, Atlanta, GA 30301" -142297,USB-C Charging Cable,1,11.95,01/25/19 12:58,"539 Willow St, Los Angeles, CA 90001" -142298,Lightning Charging Cable,1,14.95,01/08/19 18:42,"913 1st St, Boston, MA 02215" -142299,iPhone,1,700,01/11/19 12:21,"251 Ridge St, Austin, TX 73301" -142299,Wired Headphones,1,11.99,01/11/19 12:21,"251 Ridge St, Austin, TX 73301" -142300,USB-C Charging Cable,1,11.95,01/18/19 22:24,"521 River St, Atlanta, GA 30301" -142301,Bose SoundSport Headphones,1,99.99,01/23/19 22:19,"972 Spruce St, Los Angeles, CA 90001" -142302,Apple Airpods Headphones,1,150,01/06/19 12:54,"651 8th St, New York City, NY 10001" -142303,USB-C Charging Cable,1,11.95,01/01/19 16:23,"893 Main St, Portland, OR 97035" -142304,Lightning Charging Cable,1,14.95,01/30/19 17:10,"852 Jefferson St, Seattle, WA 98101" -142305,AAA Batteries (4-pack),2,2.99,01/23/19 19:39,"423 Sunset St, San Francisco, CA 94016" -142306,Lightning Charging Cable,1,14.95,01/27/19 17:38,"182 Elm St, Seattle, WA 98101" -142307,27in 4K Gaming Monitor,1,389.99,01/09/19 13:44,"904 7th St, New York City, NY 10001" -142308,Google Phone,1,600,01/13/19 14:41,"767 Sunset St, San Francisco, CA 94016" -142308,Wired Headphones,1,11.99,01/13/19 14:41,"767 Sunset St, San Francisco, CA 94016" -142309,Wired Headphones,1,11.99,01/31/19 10:36,"586 Maple St, San Francisco, CA 94016" -142310,AAA Batteries (4-pack),2,2.99,01/17/19 23:49,"198 10th St, Atlanta, GA 30301" -142311,Lightning Charging Cable,1,14.95,01/14/19 20:24,"178 Maple St, San Francisco, CA 94016" -142312,AAA Batteries (4-pack),1,2.99,01/18/19 09:11,"797 Highland St, San Francisco, CA 94016" -142313,Wired Headphones,1,11.99,01/15/19 12:31,"965 Lincoln St, Dallas, TX 75001" -142314,Macbook Pro Laptop,1,1700,01/20/19 12:29,"345 8th St, Dallas, TX 75001" -142315,Wired Headphones,1,11.99,01/21/19 19:04,"869 Main St, San Francisco, CA 94016" -142316,Lightning Charging Cable,1,14.95,01/17/19 08:55,"122 Maple St, New York City, NY 10001" -142317,Flatscreen TV,1,300,01/16/19 11:01,"885 9th St, Boston, MA 02215" -142318,AA Batteries (4-pack),2,3.84,01/19/19 11:13,"617 8th St, Boston, MA 02215" -142319,Bose SoundSport Headphones,1,99.99,01/31/19 10:40,"844 Ridge St, San Francisco, CA 94016" -142319,Google Phone,1,600,01/31/19 10:40,"844 Ridge St, San Francisco, CA 94016" -142320,Google Phone,1,600,01/11/19 22:44,"531 West St, New York City, NY 10001" -142320,iPhone,1,700,01/11/19 22:44,"531 West St, New York City, NY 10001" -142321,USB-C Charging Cable,1,11.95,01/01/19 23:08,"621 13th St, Austin, TX 73301" -142322,27in 4K Gaming Monitor,1,389.99,01/22/19 15:47,"512 7th St, Seattle, WA 98101" -142323,Bose SoundSport Headphones,1,99.99,01/15/19 10:13,"952 Jackson St, San Francisco, CA 94016" -142324,AAA Batteries (4-pack),1,2.99,01/19/19 18:11,"846 11th St, Boston, MA 02215" -142325,27in FHD Monitor,1,149.99,01/26/19 20:32,"210 1st St, Seattle, WA 98101" -142326,AA Batteries (4-pack),3,3.84,01/04/19 17:56,"349 Meadow St, Portland, ME 04101" -142327,AA Batteries (4-pack),1,3.84,01/03/19 16:48,"997 Dogwood St, San Francisco, CA 94016" -142328,Lightning Charging Cable,1,14.95,01/15/19 21:10,"159 7th St, Atlanta, GA 30301" -142329,AAA Batteries (4-pack),1,2.99,01/08/19 18:58,"685 1st St, Los Angeles, CA 90001" -142330,USB-C Charging Cable,3,11.95,01/17/19 06:12,"189 Meadow St, San Francisco, CA 94016" -142331,USB-C Charging Cable,1,11.95,01/13/19 18:13,"523 11th St, Austin, TX 73301" -142332,Google Phone,1,600,01/09/19 13:59,"715 Center St, San Francisco, CA 94016" -142333,AAA Batteries (4-pack),1,2.99,01/07/19 11:03,"778 1st St, Dallas, TX 75001" -142334,USB-C Charging Cable,1,11.95,01/27/19 19:46,"612 12th St, Dallas, TX 75001" -142335,Lightning Charging Cable,1,14.95,01/01/19 22:37,"755 14th St, New York City, NY 10001" -142336,20in Monitor,1,109.99,01/28/19 14:32,"571 Hill St, Portland, OR 97035" -142337,AA Batteries (4-pack),1,3.84,01/17/19 13:18,"892 13th St, Portland, ME 04101" -142338,20in Monitor,1,109.99,01/24/19 16:48,"115 Sunset St, Portland, OR 97035" -142339,Wired Headphones,2,11.99,01/10/19 17:12,"115 7th St, Portland, OR 97035" -142340,Wired Headphones,1,11.99,01/07/19 00:08,"99 4th St, Boston, MA 02215" -142341,Bose SoundSport Headphones,1,99.99,01/19/19 05:19,"346 7th St, San Francisco, CA 94016" -142342,27in 4K Gaming Monitor,1,389.99,01/12/19 10:44,"368 Cherry St, Los Angeles, CA 90001" -142343,AA Batteries (4-pack),1,3.84,01/16/19 21:05,"306 Hickory St, San Francisco, CA 94016" -142344,27in 4K Gaming Monitor,1,389.99,01/02/19 11:01,"336 2nd St, Los Angeles, CA 90001" -142345,AAA Batteries (4-pack),2,2.99,01/01/19 18:11,"983 North St, Los Angeles, CA 90001" -142346,Wired Headphones,1,11.99,01/26/19 20:17,"668 River St, San Francisco, CA 94016" -142347,Google Phone,1,600,01/10/19 20:06,"518 Lake St, San Francisco, CA 94016" -142348,Bose SoundSport Headphones,1,99.99,01/27/19 18:15,"597 9th St, Atlanta, GA 30301" -142349,AA Batteries (4-pack),1,3.84,01/02/19 16:18,"534 Dogwood St, San Francisco, CA 94016" -142350,iPhone,1,700,01/01/19 14:33,"956 Walnut St, Seattle, WA 98101" -142350,Wired Headphones,1,11.99,01/01/19 14:33,"956 Walnut St, Seattle, WA 98101" -142351,Bose SoundSport Headphones,1,99.99,01/03/19 22:16,"691 11th St, Boston, MA 02215" -142352,Wired Headphones,1,11.99,01/19/19 14:52,"408 Spruce St, San Francisco, CA 94016" -142353,iPhone,1,700,01/31/19 20:29,"317 Johnson St, Los Angeles, CA 90001" -142354,Macbook Pro Laptop,1,1700,01/27/19 11:09,"3 Chestnut St, San Francisco, CA 94016" -142355,iPhone,1,700,01/15/19 19:07,"478 11th St, Austin, TX 73301" -142356,Macbook Pro Laptop,1,1700,01/23/19 12:54,"763 Hill St, Dallas, TX 75001" -142357,iPhone,1,700,01/28/19 10:54,"495 Walnut St, Los Angeles, CA 90001" -142358,Apple Airpods Headphones,1,150,01/14/19 09:10,"14 Hill St, San Francisco, CA 94016" -142359,Wired Headphones,1,11.99,01/31/19 12:47,"786 Lincoln St, Atlanta, GA 30301" -142360,USB-C Charging Cable,1,11.95,01/07/19 00:31,"572 2nd St, Seattle, WA 98101" -142361,iPhone,1,700,01/26/19 18:14,"460 Sunset St, New York City, NY 10001" -142362,AAA Batteries (4-pack),1,2.99,01/31/19 20:08,"6 Adams St, Dallas, TX 75001" -142363,Apple Airpods Headphones,1,150,01/28/19 10:06,"167 Ridge St, Atlanta, GA 30301" -142364,iPhone,1,700,01/10/19 15:33,"856 11th St, Portland, OR 97035" -142365,Bose SoundSport Headphones,1,99.99,01/15/19 11:36,"596 13th St, San Francisco, CA 94016" -142366,20in Monitor,1,109.99,01/13/19 16:07,"92 West St, San Francisco, CA 94016" -142367,Google Phone,1,600,01/05/19 21:40,"639 Lake St, Dallas, TX 75001" -142368,AAA Batteries (4-pack),1,2.99,01/12/19 19:51,"94 Center St, Austin, TX 73301" -142369,27in FHD Monitor,1,149.99,01/10/19 19:22,"913 14th St, Los Angeles, CA 90001" -142370,Wired Headphones,1,11.99,01/28/19 14:06,"385 7th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -142371,USB-C Charging Cable,1,11.95,01/31/19 17:01,"39 Adams St, San Francisco, CA 94016" -142372,AAA Batteries (4-pack),1,2.99,01/03/19 08:01,"85 Maple St, San Francisco, CA 94016" -142373,Google Phone,1,600,01/22/19 17:45,"549 Main St, Los Angeles, CA 90001" -142374,AAA Batteries (4-pack),1,2.99,01/08/19 20:21,"606 Johnson St, Dallas, TX 75001" -142375,Flatscreen TV,1,300,01/24/19 11:27,"138 Madison St, Los Angeles, CA 90001" -142376,27in 4K Gaming Monitor,1,389.99,01/03/19 09:25,"30 Jackson St, Portland, OR 97035" -142377,USB-C Charging Cable,1,11.95,01/04/19 15:53,"997 Wilson St, Los Angeles, CA 90001" -142378,Lightning Charging Cable,1,14.95,01/10/19 15:34,"699 Maple St, San Francisco, CA 94016" -142379,Google Phone,1,600,01/30/19 21:02,"231 Hill St, Seattle, WA 98101" -142379,USB-C Charging Cable,1,11.95,01/30/19 21:02,"231 Hill St, Seattle, WA 98101" -142380,AA Batteries (4-pack),2,3.84,01/21/19 23:22,"832 Chestnut St, Boston, MA 02215" -142381,AAA Batteries (4-pack),2,2.99,01/14/19 22:33,"983 12th St, Los Angeles, CA 90001" -142382,27in FHD Monitor,1,149.99,01/07/19 17:40,"856 2nd St, Dallas, TX 75001" -142383,Bose SoundSport Headphones,1,99.99,01/18/19 11:06,"570 14th St, New York City, NY 10001" -142384,AAA Batteries (4-pack),1,2.99,01/30/19 19:22,"733 Pine St, Dallas, TX 75001" -142385,Lightning Charging Cable,1,14.95,01/17/19 20:14,"887 5th St, San Francisco, CA 94016" -142386,AAA Batteries (4-pack),1,2.99,01/18/19 07:48,"499 Maple St, Los Angeles, CA 90001" -142387,34in Ultrawide Monitor,1,379.99,01/25/19 23:50,"239 Lakeview St, Boston, MA 02215" -142388,27in FHD Monitor,1,149.99,01/26/19 23:41,"753 South St, San Francisco, CA 94016" -142389,iPhone,1,700,01/16/19 20:42,"956 Hill St, New York City, NY 10001" -142389,Lightning Charging Cable,1,14.95,01/16/19 20:42,"956 Hill St, New York City, NY 10001" -142390,USB-C Charging Cable,1,11.95,01/19/19 15:58,"634 14th St, Los Angeles, CA 90001" -142391,AA Batteries (4-pack),1,3.84,01/17/19 02:34,"759 North St, San Francisco, CA 94016" -142392,27in 4K Gaming Monitor,1,389.99,01/14/19 16:55,"345 Hickory St, Atlanta, GA 30301" -142393,Wired Headphones,1,11.99,01/21/19 16:31,"47 Willow St, San Francisco, CA 94016" -142394,AAA Batteries (4-pack),1,2.99,01/14/19 12:52,"453 13th St, San Francisco, CA 94016" -142395,Wired Headphones,1,11.99,01/27/19 09:27,"2 13th St, Atlanta, GA 30301" -142396,Vareebadd Phone,1,400,01/09/19 09:56,"343 Jackson St, San Francisco, CA 94016" -142396,USB-C Charging Cable,1,11.95,01/09/19 09:56,"343 Jackson St, San Francisco, CA 94016" -142397,AA Batteries (4-pack),1,3.84,01/07/19 09:43,"902 9th St, Portland, OR 97035" -142398,Wired Headphones,1,11.99,01/18/19 21:31,"181 Maple St, Boston, MA 02215" -142399,Bose SoundSport Headphones,1,99.99,01/11/19 06:38,"17 South St, Seattle, WA 98101" -142400,Vareebadd Phone,1,400,01/26/19 07:00,"61 2nd St, Seattle, WA 98101" -142401,USB-C Charging Cable,1,11.95,01/25/19 18:59,"435 Church St, San Francisco, CA 94016" -142402,AAA Batteries (4-pack),1,2.99,01/29/19 15:08,"948 Forest St, San Francisco, CA 94016" -142403,AA Batteries (4-pack),1,3.84,01/03/19 17:57,"552 14th St, San Francisco, CA 94016" -142404,Lightning Charging Cable,1,14.95,01/03/19 23:01,"973 Forest St, San Francisco, CA 94016" -142405,AA Batteries (4-pack),1,3.84,01/09/19 20:02,"466 West St, Boston, MA 02215" -142406,Google Phone,1,600,01/30/19 15:08,"407 Willow St, Los Angeles, CA 90001" -142407,USB-C Charging Cable,1,11.95,01/14/19 14:41,"323 7th St, Los Angeles, CA 90001" -142408,34in Ultrawide Monitor,1,379.99,01/17/19 14:21,"34 Park St, Seattle, WA 98101" -142409,Lightning Charging Cable,1,14.95,01/29/19 14:48,"1 4th St, Los Angeles, CA 90001" -142410,USB-C Charging Cable,1,11.95,01/19/19 19:12,"718 6th St, San Francisco, CA 94016" -142411,Google Phone,1,600,01/15/19 12:45,"495 2nd St, Los Angeles, CA 90001" -142412,20in Monitor,1,109.99,01/25/19 09:40,"503 Meadow St, Portland, OR 97035" -142413,27in 4K Gaming Monitor,1,389.99,01/30/19 23:01,"451 West St, Dallas, TX 75001" -142414,AA Batteries (4-pack),2,3.84,01/21/19 13:10,"835 5th St, Portland, OR 97035" -142415,Lightning Charging Cable,2,14.95,01/02/19 12:43,"395 Dogwood St, New York City, NY 10001" -142416,Apple Airpods Headphones,1,150,01/09/19 06:10,"427 Hill St, Austin, TX 73301" -142417,AA Batteries (4-pack),1,3.84,01/05/19 18:55,"907 River St, Atlanta, GA 30301" -142418,ThinkPad Laptop,1,999.99,01/24/19 18:07,"781 6th St, San Francisco, CA 94016" -142419,Google Phone,1,600,01/17/19 10:20,"947 2nd St, New York City, NY 10001" -142419,Wired Headphones,2,11.99,01/17/19 10:20,"947 2nd St, New York City, NY 10001" -142420,34in Ultrawide Monitor,1,379.99,01/30/19 15:43,"243 14th St, Los Angeles, CA 90001" -142421,iPhone,1,700,01/06/19 14:23,"242 5th St, San Francisco, CA 94016" -142422,AA Batteries (4-pack),2,3.84,01/15/19 11:56,"535 Church St, Dallas, TX 75001" -142423,USB-C Charging Cable,1,11.95,01/29/19 19:17,"497 Jackson St, San Francisco, CA 94016" -142424,Lightning Charging Cable,1,14.95,01/16/19 08:28,"12 10th St, Los Angeles, CA 90001" -142425,USB-C Charging Cable,1,11.95,01/13/19 03:29,"466 Forest St, New York City, NY 10001" -142426,AAA Batteries (4-pack),1,2.99,01/09/19 11:22,"710 Jefferson St, San Francisco, CA 94016" -142427,27in FHD Monitor,1,149.99,01/14/19 22:33,"542 South St, San Francisco, CA 94016" -142428,USB-C Charging Cable,1,11.95,01/24/19 16:41,"355 Main St, Austin, TX 73301" -142429,Apple Airpods Headphones,1,150,01/10/19 16:37,"199 11th St, Los Angeles, CA 90001" -142430,Macbook Pro Laptop,1,1700,01/11/19 16:52,"345 Hill St, Boston, MA 02215" -142431,Vareebadd Phone,1,400,01/10/19 06:30,"488 Park St, Atlanta, GA 30301" -142432,34in Ultrawide Monitor,1,379.99,01/05/19 23:33,"777 12th St, Portland, ME 04101" -142433,Wired Headphones,1,11.99,01/12/19 18:41,"287 Johnson St, Austin, TX 73301" -142434,Wired Headphones,1,11.99,01/11/19 16:06,"124 South St, Seattle, WA 98101" -142435,Macbook Pro Laptop,1,1700,01/05/19 20:59,"738 Lakeview St, Boston, MA 02215" -142436,AA Batteries (4-pack),1,3.84,01/09/19 13:51,"305 Lake St, Seattle, WA 98101" -142437,20in Monitor,1,109.99,01/21/19 20:39,"699 9th St, Portland, OR 97035" -142438,Lightning Charging Cable,1,14.95,01/27/19 20:33,"67 Cherry St, New York City, NY 10001" -142439,Flatscreen TV,1,300,01/01/19 09:58,"635 Adams St, New York City, NY 10001" -142440,iPhone,1,700,01/20/19 23:55,"143 Meadow St, Los Angeles, CA 90001" -142441,AAA Batteries (4-pack),1,2.99,01/17/19 19:56,"409 Washington St, Boston, MA 02215" -142442,34in Ultrawide Monitor,1,379.99,01/14/19 14:40,"307 10th St, New York City, NY 10001" -142443,Bose SoundSport Headphones,1,99.99,01/31/19 12:24,"726 Johnson St, San Francisco, CA 94016" -142444,Wired Headphones,1,11.99,01/07/19 12:19,"877 West St, San Francisco, CA 94016" -142445,34in Ultrawide Monitor,1,379.99,01/09/19 06:41,"753 Lincoln St, Atlanta, GA 30301" -142446,Apple Airpods Headphones,1,150,01/24/19 20:00,"174 Willow St, Atlanta, GA 30301" -142447,Wired Headphones,1,11.99,01/26/19 13:42,"518 Main St, Dallas, TX 75001" -142448,27in FHD Monitor,1,149.99,01/08/19 13:30,"621 West St, Austin, TX 73301" -142449,iPhone,1,700,01/26/19 14:27,"579 River St, Seattle, WA 98101" -142450,34in Ultrawide Monitor,1,379.99,01/12/19 18:55,"930 Wilson St, Dallas, TX 75001" -142451,AAA Batteries (4-pack),1,2.99,01/01/19 06:41,"232 12th St, Boston, MA 02215" -142452,AAA Batteries (4-pack),1,2.99,01/28/19 14:57,"463 Lakeview St, Portland, OR 97035" -142453,Vareebadd Phone,1,400,01/14/19 07:41,"869 Spruce St, Seattle, WA 98101" -142453,Bose SoundSport Headphones,1,99.99,01/14/19 07:41,"869 Spruce St, Seattle, WA 98101" -142454,AA Batteries (4-pack),1,3.84,01/23/19 12:17,"116 Center St, Boston, MA 02215" -142455,USB-C Charging Cable,1,11.95,01/05/19 17:22,"377 Cherry St, San Francisco, CA 94016" -142456,Flatscreen TV,1,300,01/28/19 21:00,"876 Maple St, San Francisco, CA 94016" -142457,Lightning Charging Cable,1,14.95,01/10/19 12:03,"902 Forest St, New York City, NY 10001" -142458,Apple Airpods Headphones,1,150,01/16/19 14:02,"14 Park St, San Francisco, CA 94016" -142459,USB-C Charging Cable,1,11.95,01/07/19 06:56,"638 Forest St, Austin, TX 73301" -142460,27in 4K Gaming Monitor,1,389.99,01/06/19 21:03,"861 Adams St, Boston, MA 02215" -142461,Bose SoundSport Headphones,1,99.99,01/18/19 13:29,"514 5th St, Los Angeles, CA 90001" -142462,Wired Headphones,1,11.99,01/29/19 06:01,"294 11th St, Austin, TX 73301" -142463,Lightning Charging Cable,1,14.95,01/06/19 02:23,"10 Spruce St, Boston, MA 02215" -142464,Macbook Pro Laptop,1,1700,01/11/19 20:59,"896 Madison St, New York City, NY 10001" -142465,Lightning Charging Cable,1,14.95,01/28/19 09:32,"358 Maple St, Los Angeles, CA 90001" -142466,Lightning Charging Cable,1,14.95,01/08/19 18:09,"279 4th St, Boston, MA 02215" -142467,AAA Batteries (4-pack),3,2.99,01/30/19 07:12,"214 Park St, Atlanta, GA 30301" -142468,Apple Airpods Headphones,1,150,01/25/19 07:35,"209 South St, Seattle, WA 98101" -142469,Wired Headphones,1,11.99,01/03/19 09:52,"428 Wilson St, Boston, MA 02215" -,,,,, -142470,34in Ultrawide Monitor,1,379.99,01/15/19 18:55,"835 12th St, Dallas, TX 75001" -142471,Bose SoundSport Headphones,1,99.99,01/19/19 19:07,"938 8th St, Dallas, TX 75001" -142472,AAA Batteries (4-pack),2,2.99,01/19/19 10:03,"410 6th St, Boston, MA 02215" -142473,AA Batteries (4-pack),3,3.84,01/29/19 12:11,"80 Highland St, Dallas, TX 75001" -142474,USB-C Charging Cable,1,11.95,01/02/19 10:18,"947 9th St, San Francisco, CA 94016" -142475,AA Batteries (4-pack),1,3.84,01/11/19 14:39,"533 Church St, Dallas, TX 75001" -142476,AA Batteries (4-pack),2,3.84,01/31/19 14:10,"694 Lake St, Dallas, TX 75001" -142477,AA Batteries (4-pack),1,3.84,01/29/19 16:30,"320 14th St, Seattle, WA 98101" -142478,Lightning Charging Cable,1,14.95,01/06/19 19:11,"392 Main St, New York City, NY 10001" -142479,ThinkPad Laptop,1,999.99,01/21/19 23:06,"192 2nd St, Los Angeles, CA 90001" -142480,AAA Batteries (4-pack),1,2.99,01/14/19 10:54,"708 Center St, Austin, TX 73301" -142481,27in 4K Gaming Monitor,1,389.99,01/20/19 16:11,"986 13th St, San Francisco, CA 94016" -142482,27in FHD Monitor,1,149.99,01/29/19 12:35,"451 Hill St, New York City, NY 10001" -142483,AA Batteries (4-pack),1,3.84,01/05/19 18:54,"826 South St, Boston, MA 02215" -142484,Wired Headphones,1,11.99,01/31/19 23:29,"604 2nd St, San Francisco, CA 94016" -142485,Bose SoundSport Headphones,1,99.99,01/06/19 06:43,"372 Ridge St, New York City, NY 10001" -142486,USB-C Charging Cable,1,11.95,01/03/19 11:59,"211 Adams St, Boston, MA 02215" -142487,Lightning Charging Cable,1,14.95,01/04/19 13:24,"999 North St, Los Angeles, CA 90001" -142488,ThinkPad Laptop,1,999.99,01/27/19 18:07,"62 7th St, Dallas, TX 75001" -142489,AA Batteries (4-pack),1,3.84,01/22/19 16:53,"333 Hickory St, San Francisco, CA 94016" -142490,Wired Headphones,1,11.99,01/02/19 14:24,"43 10th St, San Francisco, CA 94016" -142491,Lightning Charging Cable,1,14.95,01/09/19 18:23,"917 9th St, San Francisco, CA 94016" -142492,USB-C Charging Cable,1,11.95,01/16/19 17:55,"926 West St, San Francisco, CA 94016" -142493,Wired Headphones,1,11.99,01/12/19 10:42,"442 Willow St, San Francisco, CA 94016" -142494,Bose SoundSport Headphones,1,99.99,01/16/19 09:35,"721 Elm St, San Francisco, CA 94016" -142495,AAA Batteries (4-pack),1,2.99,01/17/19 14:10,"432 Main St, San Francisco, CA 94016" -142496,USB-C Charging Cable,1,11.95,01/04/19 19:01,"734 5th St, Portland, OR 97035" -142497,AA Batteries (4-pack),1,3.84,01/16/19 14:22,"94 14th St, Dallas, TX 75001" -142498,AA Batteries (4-pack),1,3.84,01/15/19 12:45,"623 7th St, Seattle, WA 98101" -142499,Lightning Charging Cable,1,14.95,01/29/19 10:21,"707 Madison St, San Francisco, CA 94016" -142500,AAA Batteries (4-pack),1,2.99,01/11/19 18:03,"305 Sunset St, Dallas, TX 75001" -142501,AA Batteries (4-pack),1,3.84,01/21/19 11:09,"44 9th St, Los Angeles, CA 90001" -142502,USB-C Charging Cable,1,11.95,01/28/19 11:14,"844 Chestnut St, San Francisco, CA 94016" -142503,Apple Airpods Headphones,1,150,01/22/19 15:25,"910 10th St, Portland, OR 97035" -142504,Google Phone,1,600,01/02/19 15:45,"570 Jackson St, Boston, MA 02215" -142504,USB-C Charging Cable,2,11.95,01/02/19 15:45,"570 Jackson St, Boston, MA 02215" -142505,USB-C Charging Cable,1,11.95,01/01/19 14:41,"196 Cedar St, New York City, NY 10001" -142506,Bose SoundSport Headphones,1,99.99,01/23/19 17:44,"2 Highland St, Boston, MA 02215" -142507,AAA Batteries (4-pack),1,2.99,01/11/19 09:01,"656 Hill St, New York City, NY 10001" -142508,Google Phone,1,600,01/10/19 20:25,"831 Madison St, Dallas, TX 75001" -142509,USB-C Charging Cable,1,11.95,01/11/19 20:49,"64 Park St, Seattle, WA 98101" -142510,27in 4K Gaming Monitor,1,389.99,01/03/19 11:19,"540 Hill St, Los Angeles, CA 90001" -142511,Bose SoundSport Headphones,1,99.99,01/04/19 15:09,"958 Willow St, Dallas, TX 75001" -142512,27in FHD Monitor,1,149.99,01/15/19 10:35,"760 Elm St, New York City, NY 10001" -142513,AAA Batteries (4-pack),1,2.99,01/19/19 18:17,"859 13th St, New York City, NY 10001" -142514,Macbook Pro Laptop,1,1700,01/20/19 21:55,"621 8th St, Portland, OR 97035" -142515,Flatscreen TV,1,300,01/03/19 02:56,"522 Elm St, San Francisco, CA 94016" -142516,34in Ultrawide Monitor,1,379.99,01/03/19 17:34,"640 Main St, Los Angeles, CA 90001" -142517,Lightning Charging Cable,1,14.95,01/20/19 23:36,"91 West St, Seattle, WA 98101" -142518,Apple Airpods Headphones,1,150,01/10/19 20:18,"968 7th St, Austin, TX 73301" -142519,AAA Batteries (4-pack),1,2.99,01/13/19 23:01,"429 14th St, Austin, TX 73301" -142520,AAA Batteries (4-pack),1,2.99,01/22/19 17:39,"444 13th St, San Francisco, CA 94016" -142521,20in Monitor,1,109.99,01/25/19 11:58,"153 Center St, Los Angeles, CA 90001" -142522,Wired Headphones,1,11.99,01/10/19 20:06,"722 13th St, San Francisco, CA 94016" -142523,USB-C Charging Cable,1,11.95,01/18/19 12:22,"765 Hickory St, Los Angeles, CA 90001" -142524,20in Monitor,1,109.99,01/12/19 20:05,"949 Main St, Boston, MA 02215" -142525,AAA Batteries (4-pack),2,2.99,01/01/19 19:47,"569 5th St, Seattle, WA 98101" -142526,Vareebadd Phone,1,400,01/26/19 11:11,"171 Lincoln St, Dallas, TX 75001" -142527,27in 4K Gaming Monitor,1,389.99,01/28/19 17:07,"967 Church St, Seattle, WA 98101" -142528,34in Ultrawide Monitor,1,379.99,01/25/19 19:33,"140 Johnson St, Los Angeles, CA 90001" -142529,27in 4K Gaming Monitor,1,389.99,01/06/19 19:22,"617 Wilson St, Dallas, TX 75001" -142530,ThinkPad Laptop,1,999.99,01/25/19 15:54,"745 Maple St, Boston, MA 02215" -142531,Wired Headphones,1,11.99,01/05/19 16:13,"970 9th St, Portland, OR 97035" -142532,Bose SoundSport Headphones,1,99.99,01/19/19 18:38,"807 Lakeview St, Seattle, WA 98101" -142533,AA Batteries (4-pack),1,3.84,01/15/19 13:45,"549 Washington St, Los Angeles, CA 90001" -142534,AA Batteries (4-pack),3,3.84,01/01/19 10:11,"306 Pine St, New York City, NY 10001" -142535,Wired Headphones,1,11.99,01/02/19 23:01,"251 Dogwood St, Austin, TX 73301" -142536,AA Batteries (4-pack),3,3.84,01/22/19 09:58,"181 13th St, Los Angeles, CA 90001" -142537,USB-C Charging Cable,1,11.95,01/28/19 12:13,"593 6th St, San Francisco, CA 94016" -142538,USB-C Charging Cable,2,11.95,01/04/19 10:48,"330 Cedar St, New York City, NY 10001" -142539,Apple Airpods Headphones,1,150,01/19/19 14:35,"766 Adams St, Dallas, TX 75001" -142540,AAA Batteries (4-pack),1,2.99,01/21/19 16:19,"758 Pine St, Los Angeles, CA 90001" -142541,20in Monitor,1,109.99,01/29/19 06:25,"681 Willow St, Los Angeles, CA 90001" -142542,Vareebadd Phone,1,400,01/16/19 13:02,"255 13th St, New York City, NY 10001" -142543,Wired Headphones,1,11.99,01/03/19 17:20,"841 13th St, Dallas, TX 75001" -142544,USB-C Charging Cable,1,11.95,01/03/19 20:55,"967 6th St, San Francisco, CA 94016" -142545,Bose SoundSport Headphones,1,99.99,01/04/19 10:19,"694 Washington St, San Francisco, CA 94016" -142546,27in FHD Monitor,1,149.99,01/15/19 12:25,"919 Cherry St, San Francisco, CA 94016" -142547,AA Batteries (4-pack),1,3.84,01/20/19 18:21,"640 Jackson St, Boston, MA 02215" -142548,AA Batteries (4-pack),2,3.84,01/03/19 18:45,"718 5th St, Dallas, TX 75001" -142549,Flatscreen TV,1,300,01/11/19 10:19,"267 West St, Austin, TX 73301" -142550,USB-C Charging Cable,1,11.95,01/13/19 23:09,"272 Ridge St, San Francisco, CA 94016" -142551,27in 4K Gaming Monitor,1,389.99,01/14/19 16:40,"312 Lincoln St, Austin, TX 73301" -142552,USB-C Charging Cable,1,11.95,01/12/19 19:42,"501 Lincoln St, Los Angeles, CA 90001" -142553,Wired Headphones,1,11.99,01/28/19 17:26,"613 Park St, Atlanta, GA 30301" -142554,iPhone,1,700,01/27/19 15:27,"42 Main St, Portland, OR 97035" -142555,USB-C Charging Cable,1,11.95,01/11/19 14:00,"894 Meadow St, Boston, MA 02215" -142556,Apple Airpods Headphones,1,150,01/06/19 00:52,"225 Willow St, Dallas, TX 75001" -142557,USB-C Charging Cable,1,11.95,01/02/19 19:33,"750 Madison St, Boston, MA 02215" -142558,Vareebadd Phone,1,400,01/25/19 18:00,"961 13th St, Portland, OR 97035" -142559,AAA Batteries (4-pack),3,2.99,01/14/19 08:55,"94 10th St, San Francisco, CA 94016" -142560,LG Washing Machine,1,600.0,01/26/19 12:27,"433 Main St, Dallas, TX 75001" -142561,34in Ultrawide Monitor,1,379.99,01/16/19 18:16,"679 Ridge St, New York City, NY 10001" -142562,Macbook Pro Laptop,1,1700,01/29/19 21:45,"448 11th St, New York City, NY 10001" -142563,Macbook Pro Laptop,1,1700,01/25/19 19:32,"360 Dogwood St, Seattle, WA 98101" -142564,AA Batteries (4-pack),1,3.84,01/18/19 19:56,"718 Cedar St, New York City, NY 10001" -142565,27in FHD Monitor,1,149.99,01/02/19 22:09,"496 Park St, Los Angeles, CA 90001" -142566,Wired Headphones,1,11.99,01/18/19 07:47,"67 2nd St, San Francisco, CA 94016" -142567,USB-C Charging Cable,1,11.95,01/21/19 22:38,"587 Highland St, San Francisco, CA 94016" -142568,27in FHD Monitor,1,149.99,01/25/19 18:32,"179 11th St, Boston, MA 02215" -142569,iPhone,1,700,01/18/19 19:58,"490 North St, Los Angeles, CA 90001" -142569,Lightning Charging Cable,1,14.95,01/18/19 19:58,"490 North St, Los Angeles, CA 90001" -142570,AAA Batteries (4-pack),2,2.99,01/10/19 18:43,"628 North St, Seattle, WA 98101" -142570,AA Batteries (4-pack),2,3.84,01/10/19 18:43,"628 North St, Seattle, WA 98101" -142571,Lightning Charging Cable,1,14.95,01/29/19 12:12,"620 10th St, New York City, NY 10001" -142572,AA Batteries (4-pack),1,3.84,01/02/19 16:19,"547 Spruce St, Atlanta, GA 30301" -142573,27in FHD Monitor,1,149.99,01/03/19 12:48,"206 Ridge St, Portland, OR 97035" -142574,USB-C Charging Cable,1,11.95,01/01/19 18:17,"983 Dogwood St, Los Angeles, CA 90001" -142575,Google Phone,1,600,01/07/19 22:25,"113 13th St, Dallas, TX 75001" -142576,AAA Batteries (4-pack),2,2.99,01/04/19 23:46,"676 Park St, San Francisco, CA 94016" -142577,USB-C Charging Cable,1,11.95,01/26/19 12:26,"398 4th St, New York City, NY 10001" -142578,Bose SoundSport Headphones,1,99.99,01/11/19 02:42,"745 6th St, San Francisco, CA 94016" -142579,Bose SoundSport Headphones,1,99.99,01/06/19 12:53,"373 Maple St, Portland, OR 97035" -142580,ThinkPad Laptop,1,999.99,01/14/19 19:57,"928 Willow St, New York City, NY 10001" -142581,USB-C Charging Cable,1,11.95,01/07/19 15:23,"779 14th St, Boston, MA 02215" -142582,Flatscreen TV,1,300,01/10/19 15:55,"287 Elm St, Atlanta, GA 30301" -142583,Lightning Charging Cable,2,14.95,01/03/19 01:24,"455 Wilson St, Dallas, TX 75001" -142584,20in Monitor,1,109.99,01/02/19 23:16,"775 River St, Boston, MA 02215" -142585,Lightning Charging Cable,1,14.95,01/13/19 17:34,"712 1st St, Dallas, TX 75001" -142586,Wired Headphones,1,11.99,01/09/19 11:52,"759 Johnson St, San Francisco, CA 94016" -142587,iPhone,1,700,01/25/19 18:59,"824 Park St, Boston, MA 02215" -142587,Lightning Charging Cable,1,14.95,01/25/19 18:59,"824 Park St, Boston, MA 02215" -142588,AA Batteries (4-pack),1,3.84,01/31/19 16:27,"916 5th St, San Francisco, CA 94016" -142589,Apple Airpods Headphones,1,150,01/20/19 18:40,"664 Church St, Los Angeles, CA 90001" -142590,Wired Headphones,1,11.99,01/25/19 15:14,"839 Elm St, Austin, TX 73301" -142591,USB-C Charging Cable,1,11.95,01/07/19 12:47,"214 Maple St, San Francisco, CA 94016" -142592,USB-C Charging Cable,3,11.95,01/04/19 19:22,"361 5th St, Seattle, WA 98101" -142593,AAA Batteries (4-pack),2,2.99,01/06/19 15:40,"139 West St, San Francisco, CA 94016" -142594,USB-C Charging Cable,1,11.95,01/25/19 17:25,"370 Park St, Atlanta, GA 30301" -142595,USB-C Charging Cable,1,11.95,01/22/19 17:48,"72 8th St, San Francisco, CA 94016" -142596,Google Phone,1,600,01/28/19 22:30,"993 Cherry St, Dallas, TX 75001" -142597,AA Batteries (4-pack),1,3.84,01/15/19 19:51,"21 Jackson St, Los Angeles, CA 90001" -142598,Flatscreen TV,1,300,01/15/19 19:55,"525 Cedar St, Austin, TX 73301" -142599,27in 4K Gaming Monitor,1,389.99,01/21/19 18:48,"267 1st St, San Francisco, CA 94016" -142600,iPhone,1,700,01/17/19 17:22,"901 13th St, Boston, MA 02215" -142601,Wired Headphones,1,11.99,01/07/19 10:15,"34 Jackson St, New York City, NY 10001" -142602,27in 4K Gaming Monitor,1,389.99,01/04/19 19:20,"363 River St, San Francisco, CA 94016" -142603,27in FHD Monitor,1,149.99,01/11/19 12:31,"321 Forest St, Boston, MA 02215" -142604,Apple Airpods Headphones,1,150,01/04/19 09:10,"163 Park St, Atlanta, GA 30301" -142604,AAA Batteries (4-pack),1,2.99,01/04/19 09:10,"163 Park St, Atlanta, GA 30301" -142605,AA Batteries (4-pack),1,3.84,01/17/19 15:59,"131 Cherry St, Dallas, TX 75001" -142606,Apple Airpods Headphones,1,150,01/24/19 17:38,"488 Ridge St, San Francisco, CA 94016" -142607,27in 4K Gaming Monitor,1,389.99,01/10/19 13:44,"704 Pine St, San Francisco, CA 94016" -142608,Apple Airpods Headphones,1,150,01/07/19 09:46,"724 11th St, San Francisco, CA 94016" -142609,Bose SoundSport Headphones,1,99.99,01/26/19 21:47,"181 Washington St, Dallas, TX 75001" -142610,Apple Airpods Headphones,1,150,01/26/19 19:48,"184 Hill St, Los Angeles, CA 90001" -142610,iPhone,1,700,01/26/19 19:48,"184 Hill St, Los Angeles, CA 90001" -142611,AAA Batteries (4-pack),1,2.99,01/27/19 19:16,"565 Highland St, Boston, MA 02215" -142612,Google Phone,1,600,01/13/19 09:55,"883 Washington St, San Francisco, CA 94016" -142613,AAA Batteries (4-pack),2,2.99,01/06/19 16:29,"711 Sunset St, Los Angeles, CA 90001" -142614,AAA Batteries (4-pack),1,2.99,01/02/19 07:53,"570 Lake St, Atlanta, GA 30301" -142615,iPhone,1,700,01/23/19 13:06,"489 Hill St, Boston, MA 02215" -142616,Macbook Pro Laptop,1,1700,01/20/19 00:15,"3 2nd St, New York City, NY 10001" -142617,Macbook Pro Laptop,1,1700,01/15/19 16:38,"706 River St, Los Angeles, CA 90001" -142618,USB-C Charging Cable,1,11.95,01/03/19 19:20,"907 Maple St, Seattle, WA 98101" -142619,34in Ultrawide Monitor,1,379.99,01/12/19 14:09,"389 Adams St, San Francisco, CA 94016" -142620,Lightning Charging Cable,1,14.95,01/26/19 14:13,"968 7th St, San Francisco, CA 94016" -142621,Bose SoundSport Headphones,1,99.99,01/03/19 11:48,"478 River St, San Francisco, CA 94016" -142622,Wired Headphones,1,11.99,01/27/19 16:49,"933 Dogwood St, San Francisco, CA 94016" -142623,Apple Airpods Headphones,1,150,01/20/19 00:24,"46 Adams St, San Francisco, CA 94016" -142624,AA Batteries (4-pack),1,3.84,01/08/19 18:10,"102 Park St, Atlanta, GA 30301" -142625,Lightning Charging Cable,1,14.95,01/26/19 20:05,"966 Hickory St, Atlanta, GA 30301" -142626,AAA Batteries (4-pack),1,2.99,01/22/19 13:22,"986 5th St, San Francisco, CA 94016" -142627,iPhone,1,700,01/18/19 17:57,"383 1st St, San Francisco, CA 94016" -142628,AAA Batteries (4-pack),2,2.99,01/25/19 14:56,"595 Jefferson St, Portland, ME 04101" -142629,Apple Airpods Headphones,1,150,01/15/19 15:28,"891 Lake St, San Francisco, CA 94016" -142630,Wired Headphones,1,11.99,01/14/19 20:50,"947 North St, San Francisco, CA 94016" -142631,Bose SoundSport Headphones,1,99.99,01/09/19 12:15,"620 Wilson St, Seattle, WA 98101" -142632,Lightning Charging Cable,1,14.95,01/21/19 00:07,"779 4th St, Los Angeles, CA 90001" -142633,AAA Batteries (4-pack),1,2.99,01/17/19 07:58,"222 9th St, Los Angeles, CA 90001" -142634,Google Phone,1,600,01/04/19 09:03,"745 Highland St, Dallas, TX 75001" -142634,USB-C Charging Cable,1,11.95,01/04/19 09:03,"745 Highland St, Dallas, TX 75001" -142635,ThinkPad Laptop,1,999.99,01/17/19 12:35,"799 Main St, New York City, NY 10001" -142636,Bose SoundSport Headphones,1,99.99,01/10/19 20:09,"95 Jackson St, Dallas, TX 75001" -142637,Wired Headphones,1,11.99,01/02/19 16:43,"207 13th St, Seattle, WA 98101" -142638,USB-C Charging Cable,1,11.95,01/29/19 18:23,"916 Maple St, Boston, MA 02215" -142639,AAA Batteries (4-pack),1,2.99,01/13/19 13:09,"345 South St, Seattle, WA 98101" -142639,27in 4K Gaming Monitor,1,389.99,01/13/19 13:09,"345 South St, Seattle, WA 98101" -142640,Lightning Charging Cable,1,14.95,01/23/19 08:05,"561 Center St, Seattle, WA 98101" -142641,27in FHD Monitor,1,149.99,01/24/19 16:33,"237 Park St, Atlanta, GA 30301" -142642,Wired Headphones,1,11.99,01/02/19 13:17,"320 2nd St, Austin, TX 73301" -142643,AA Batteries (4-pack),1,3.84,01/24/19 10:07,"939 Ridge St, Portland, OR 97035" -142644,Wired Headphones,1,11.99,01/12/19 15:06,"499 Hill St, San Francisco, CA 94016" -142645,Lightning Charging Cable,1,14.95,01/24/19 17:21,"745 Hickory St, San Francisco, CA 94016" -142646,Lightning Charging Cable,1,14.95,01/27/19 17:36,"908 Jackson St, Atlanta, GA 30301" -142647,AA Batteries (4-pack),1,3.84,01/29/19 16:21,"311 Main St, Portland, ME 04101" -142648,Bose SoundSport Headphones,1,99.99,01/18/19 13:53,"767 Wilson St, Atlanta, GA 30301" -142649,AA Batteries (4-pack),1,3.84,01/19/19 23:22,"631 Cedar St, San Francisco, CA 94016" -142650,34in Ultrawide Monitor,1,379.99,01/11/19 19:16,"642 Hickory St, Los Angeles, CA 90001" -142651,USB-C Charging Cable,1,11.95,01/11/19 22:12,"24 Park St, New York City, NY 10001" -142651,AA Batteries (4-pack),1,3.84,01/11/19 22:12,"24 Park St, New York City, NY 10001" -,,,,, -142652,USB-C Charging Cable,1,11.95,01/24/19 17:36,"50 4th St, San Francisco, CA 94016" -142652,Lightning Charging Cable,1,14.95,01/24/19 17:36,"50 4th St, San Francisco, CA 94016" -142653,Wired Headphones,1,11.99,01/28/19 00:04,"556 Main St, San Francisco, CA 94016" -142654,Wired Headphones,1,11.99,01/28/19 15:06,"501 14th St, Los Angeles, CA 90001" -142655,20in Monitor,1,109.99,01/16/19 20:09,"492 2nd St, New York City, NY 10001" -142656,USB-C Charging Cable,1,11.95,01/30/19 16:40,"448 Jackson St, Atlanta, GA 30301" -142657,Bose SoundSport Headphones,1,99.99,01/25/19 14:13,"538 North St, San Francisco, CA 94016" -142658,20in Monitor,1,109.99,01/26/19 23:09,"629 Lakeview St, Portland, OR 97035" -142659,Apple Airpods Headphones,1,150,01/11/19 22:39,"733 Adams St, Austin, TX 73301" -142660,27in 4K Gaming Monitor,1,389.99,01/30/19 18:01,"336 Pine St, San Francisco, CA 94016" -142661,USB-C Charging Cable,2,11.95,01/25/19 01:49,"956 Center St, New York City, NY 10001" -142662,Wired Headphones,1,11.99,01/24/19 18:55,"412 Chestnut St, Seattle, WA 98101" -142663,Lightning Charging Cable,1,14.95,01/13/19 17:50,"810 Hill St, New York City, NY 10001" -142664,Apple Airpods Headphones,1,150,01/07/19 11:08,"227 Jackson St, San Francisco, CA 94016" -142665,Bose SoundSport Headphones,1,99.99,01/25/19 19:58,"997 10th St, Los Angeles, CA 90001" -142666,Macbook Pro Laptop,1,1700,01/14/19 10:42,"650 Johnson St, Los Angeles, CA 90001" -142667,USB-C Charging Cable,1,11.95,01/03/19 12:30,"575 Maple St, Austin, TX 73301" -142668,AAA Batteries (4-pack),1,2.99,01/12/19 10:11,"415 Washington St, San Francisco, CA 94016" -142669,27in 4K Gaming Monitor,1,389.99,01/02/19 15:16,"793 11th St, San Francisco, CA 94016" -142670,27in FHD Monitor,1,149.99,01/11/19 12:20,"771 Lincoln St, Austin, TX 73301" -142671,27in FHD Monitor,1,149.99,01/18/19 17:08,"698 Meadow St, Boston, MA 02215" -142672,iPhone,1,700,01/13/19 13:49,"391 Hickory St, Los Angeles, CA 90001" -142673,Macbook Pro Laptop,1,1700,01/25/19 07:38,"985 Jefferson St, San Francisco, CA 94016" -142674,ThinkPad Laptop,1,999.99,01/09/19 09:21,"497 4th St, Los Angeles, CA 90001" -142675,Wired Headphones,1,11.99,01/25/19 20:37,"455 Forest St, Portland, OR 97035" -142676,AA Batteries (4-pack),1,3.84,01/25/19 08:24,"449 Main St, Portland, OR 97035" -142677,Google Phone,1,600,01/27/19 17:38,"240 4th St, Dallas, TX 75001" -142678,USB-C Charging Cable,1,11.95,01/29/19 00:15,"134 Adams St, Los Angeles, CA 90001" -142679,Macbook Pro Laptop,1,1700,01/14/19 01:07,"440 Church St, Los Angeles, CA 90001" -142680,Apple Airpods Headphones,1,150,01/26/19 09:46,"251 Center St, Dallas, TX 75001" -142681,Wired Headphones,1,11.99,01/20/19 18:56,"802 Meadow St, Portland, OR 97035" -142682,34in Ultrawide Monitor,1,379.99,01/22/19 20:16,"99 River St, Los Angeles, CA 90001" -142683,USB-C Charging Cable,1,11.95,01/09/19 08:46,"648 Sunset St, Atlanta, GA 30301" -142683,Wired Headphones,1,11.99,01/09/19 08:46,"648 Sunset St, Atlanta, GA 30301" -142684,AA Batteries (4-pack),1,3.84,01/10/19 11:31,"441 9th St, San Francisco, CA 94016" -142685,27in FHD Monitor,1,149.99,01/15/19 09:47,"296 Jefferson St, Austin, TX 73301" -142686,AAA Batteries (4-pack),2,2.99,01/26/19 21:48,"110 Lincoln St, New York City, NY 10001" -142687,USB-C Charging Cable,1,11.95,01/15/19 20:09,"734 Cherry St, San Francisco, CA 94016" -142688,USB-C Charging Cable,1,11.95,01/03/19 06:56,"202 Lake St, Seattle, WA 98101" -142689,USB-C Charging Cable,1,11.95,01/15/19 11:24,"506 Park St, Austin, TX 73301" -142690,AAA Batteries (4-pack),1,2.99,01/10/19 17:22,"64 Madison St, Atlanta, GA 30301" -142691,27in FHD Monitor,1,149.99,01/16/19 20:08,"915 River St, New York City, NY 10001" -142692,20in Monitor,1,109.99,01/11/19 01:49,"441 2nd St, New York City, NY 10001" -142693,Bose SoundSport Headphones,1,99.99,01/29/19 10:47,"975 2nd St, Los Angeles, CA 90001" -142694,Apple Airpods Headphones,1,150,01/02/19 09:05,"879 Center St, Portland, OR 97035" -142695,Lightning Charging Cable,1,14.95,01/24/19 15:45,"865 Cedar St, Austin, TX 73301" -142696,Apple Airpods Headphones,1,150,01/26/19 00:09,"445 Walnut St, San Francisco, CA 94016" -142697,AAA Batteries (4-pack),1,2.99,01/20/19 17:14,"517 Chestnut St, San Francisco, CA 94016" -142698,Wired Headphones,1,11.99,01/19/19 15:51,"24 South St, San Francisco, CA 94016" -142699,Wired Headphones,1,11.99,01/21/19 18:04,"703 Lincoln St, New York City, NY 10001" -142700,USB-C Charging Cable,1,11.95,01/20/19 07:52,"881 Spruce St, Boston, MA 02215" -142701,LG Dryer,1,600.0,01/02/19 21:32,"116 Main St, San Francisco, CA 94016" -142702,AA Batteries (4-pack),1,3.84,01/21/19 04:43,"356 Pine St, Austin, TX 73301" -142703,Lightning Charging Cable,1,14.95,01/31/19 23:10,"265 12th St, Austin, TX 73301" -142704,Lightning Charging Cable,1,14.95,01/07/19 09:15,"331 Wilson St, New York City, NY 10001" -142705,Lightning Charging Cable,1,14.95,01/25/19 19:24,"980 Johnson St, Dallas, TX 75001" -142706,27in FHD Monitor,1,149.99,01/28/19 15:25,"802 Ridge St, New York City, NY 10001" -142707,27in 4K Gaming Monitor,1,389.99,01/03/19 13:31,"822 Wilson St, San Francisco, CA 94016" -142708,Lightning Charging Cable,1,14.95,01/26/19 13:07,"62 Dogwood St, New York City, NY 10001" -142709,Macbook Pro Laptop,1,1700,01/20/19 03:37,"335 Cherry St, Dallas, TX 75001" -142710,Wired Headphones,1,11.99,01/11/19 15:00,"424 Pine St, Boston, MA 02215" -142711,Apple Airpods Headphones,1,150,01/25/19 22:55,"79 7th St, Boston, MA 02215" -142712,27in FHD Monitor,1,149.99,01/22/19 15:55,"705 Lakeview St, Boston, MA 02215" -142713,USB-C Charging Cable,1,11.95,01/06/19 06:59,"917 1st St, Atlanta, GA 30301" -142714,LG Washing Machine,1,600.0,01/01/19 13:15,"972 12th St, San Francisco, CA 94016" -142715,Wired Headphones,1,11.99,01/16/19 16:29,"685 Elm St, Los Angeles, CA 90001" -142716,34in Ultrawide Monitor,1,379.99,01/28/19 10:28,"228 Forest St, San Francisco, CA 94016" -142717,Vareebadd Phone,1,400,01/20/19 20:24,"822 9th St, Portland, ME 04101" -142718,Wired Headphones,1,11.99,01/27/19 09:44,"361 Forest St, Seattle, WA 98101" -142719,Bose SoundSport Headphones,1,99.99,01/27/19 23:21,"592 Hickory St, Los Angeles, CA 90001" -142720,Bose SoundSport Headphones,1,99.99,01/15/19 08:27,"175 Lakeview St, Atlanta, GA 30301" -142721,27in FHD Monitor,1,149.99,01/11/19 22:53,"123 Johnson St, San Francisco, CA 94016" -142722,AA Batteries (4-pack),1,3.84,01/08/19 16:06,"419 Center St, New York City, NY 10001" -142723,27in 4K Gaming Monitor,1,389.99,01/31/19 13:40,"264 Cedar St, San Francisco, CA 94016" -142724,Apple Airpods Headphones,1,150,01/19/19 22:54,"230 12th St, Seattle, WA 98101" -142725,Lightning Charging Cable,1,14.95,01/06/19 05:06,"962 Spruce St, Dallas, TX 75001" -142726,AA Batteries (4-pack),1,3.84,01/10/19 07:28,"122 Park St, San Francisco, CA 94016" -142727,Macbook Pro Laptop,1,1700,01/12/19 19:01,"194 Lake St, San Francisco, CA 94016" -142727,AA Batteries (4-pack),2,3.84,01/12/19 19:01,"194 Lake St, San Francisco, CA 94016" -142728,Lightning Charging Cable,1,14.95,01/23/19 08:44,"21 Church St, San Francisco, CA 94016" -142729,Wired Headphones,1,11.99,01/14/19 13:36,"119 Cedar St, Atlanta, GA 30301" -142730,Google Phone,1,600,01/11/19 06:16,"219 Chestnut St, New York City, NY 10001" -142730,USB-C Charging Cable,1,11.95,01/11/19 06:16,"219 Chestnut St, New York City, NY 10001" -142731,Lightning Charging Cable,1,14.95,01/05/19 14:50,"92 4th St, Dallas, TX 75001" -142732,AA Batteries (4-pack),1,3.84,01/21/19 17:17,"207 5th St, San Francisco, CA 94016" -142733,AAA Batteries (4-pack),3,2.99,01/24/19 00:44,"766 Pine St, New York City, NY 10001" -142734,AA Batteries (4-pack),1,3.84,01/10/19 22:38,"533 12th St, Austin, TX 73301" -142735,USB-C Charging Cable,1,11.95,01/02/19 14:35,"30 Jefferson St, Los Angeles, CA 90001" -142736,Bose SoundSport Headphones,1,99.99,01/02/19 13:11,"264 Adams St, Boston, MA 02215" -142737,USB-C Charging Cable,1,11.95,01/14/19 17:05,"603 2nd St, Los Angeles, CA 90001" -142738,Macbook Pro Laptop,1,1700,01/06/19 17:42,"171 Highland St, Seattle, WA 98101" -142739,AA Batteries (4-pack),1,3.84,01/16/19 23:16,"436 6th St, Seattle, WA 98101" -142740,Vareebadd Phone,1,400,01/26/19 13:09,"249 Main St, Austin, TX 73301" -142741,Lightning Charging Cable,1,14.95,01/11/19 09:44,"668 Lincoln St, Portland, OR 97035" -142742,USB-C Charging Cable,1,11.95,01/19/19 20:35,"729 13th St, San Francisco, CA 94016" -142743,Flatscreen TV,1,300,01/04/19 05:20,"842 North St, San Francisco, CA 94016" -142744,Flatscreen TV,1,300,01/30/19 08:46,"46 Jackson St, San Francisco, CA 94016" -142745,Bose SoundSport Headphones,1,99.99,01/16/19 16:43,"21 Walnut St, Atlanta, GA 30301" -142746,Lightning Charging Cable,2,14.95,01/07/19 05:49,"632 Elm St, Atlanta, GA 30301" -142747,AA Batteries (4-pack),2,3.84,01/07/19 13:15,"350 Spruce St, San Francisco, CA 94016" -142748,ThinkPad Laptop,1,999.99,01/04/19 12:39,"219 Spruce St, San Francisco, CA 94016" -142749,Wired Headphones,1,11.99,01/12/19 02:07,"299 Cherry St, Boston, MA 02215" -142750,AAA Batteries (4-pack),1,2.99,01/30/19 13:04,"438 Ridge St, Los Angeles, CA 90001" -142751,Wired Headphones,1,11.99,01/05/19 21:51,"860 Cedar St, Los Angeles, CA 90001" -142752,AA Batteries (4-pack),1,3.84,01/09/19 21:19,"163 4th St, Boston, MA 02215" -142753,Bose SoundSport Headphones,1,99.99,01/12/19 23:41,"83 Lakeview St, New York City, NY 10001" -142754,USB-C Charging Cable,1,11.95,01/07/19 10:24,"10 West St, Dallas, TX 75001" -142755,iPhone,1,700,01/21/19 14:28,"434 5th St, Atlanta, GA 30301" -142756,AA Batteries (4-pack),1,3.84,01/11/19 09:37,"786 2nd St, Dallas, TX 75001" -142757,34in Ultrawide Monitor,1,379.99,01/07/19 10:26,"614 Cedar St, Atlanta, GA 30301" -142758,27in 4K Gaming Monitor,1,389.99,01/24/19 18:56,"425 Walnut St, Los Angeles, CA 90001" -142759,Bose SoundSport Headphones,1,99.99,01/21/19 12:15,"832 Lincoln St, New York City, NY 10001" -142760,Wired Headphones,2,11.99,01/28/19 22:08,"630 Chestnut St, San Francisco, CA 94016" -142761,AA Batteries (4-pack),1,3.84,01/12/19 09:05,"325 10th St, Boston, MA 02215" -142762,iPhone,1,700,01/20/19 08:00,"613 Jackson St, Boston, MA 02215" -142763,AAA Batteries (4-pack),1,2.99,01/23/19 11:24,"74 Church St, New York City, NY 10001" -142764,AA Batteries (4-pack),3,3.84,01/20/19 20:31,"691 Center St, San Francisco, CA 94016" -142765,Wired Headphones,1,11.99,01/13/19 15:38,"786 Adams St, Boston, MA 02215" -142766,USB-C Charging Cable,1,11.95,01/30/19 22:33,"351 River St, San Francisco, CA 94016" -142767,34in Ultrawide Monitor,1,379.99,01/25/19 20:12,"128 Center St, Atlanta, GA 30301" -142768,Flatscreen TV,1,300,01/27/19 13:03,"60 Walnut St, Dallas, TX 75001" -142769,USB-C Charging Cable,1,11.95,01/28/19 13:32,"448 Park St, Portland, OR 97035" -142770,USB-C Charging Cable,1,11.95,01/29/19 01:11,"375 12th St, San Francisco, CA 94016" -142771,Google Phone,1,600,01/16/19 11:16,"714 13th St, Austin, TX 73301" -142772,Vareebadd Phone,1,400,01/13/19 16:37,"670 Chestnut St, New York City, NY 10001" -142773,AAA Batteries (4-pack),2,2.99,01/20/19 14:02,"783 14th St, San Francisco, CA 94016" -142774,iPhone,1,700,01/20/19 22:53,"175 Church St, San Francisco, CA 94016" -142775,27in FHD Monitor,1,149.99,01/07/19 07:00,"258 Lincoln St, Dallas, TX 75001" -142776,Wired Headphones,1,11.99,01/01/19 19:15,"538 Willow St, Seattle, WA 98101" -142777,Wired Headphones,1,11.99,01/31/19 09:22,"492 13th St, San Francisco, CA 94016" -142778,Macbook Pro Laptop,1,1700,01/04/19 11:15,"83 Forest St, Boston, MA 02215" -142779,AAA Batteries (4-pack),1,2.99,01/06/19 18:02,"19 Lakeview St, Los Angeles, CA 90001" -142780,Wired Headphones,1,11.99,01/22/19 10:29,"253 Cherry St, New York City, NY 10001" -142781,27in 4K Gaming Monitor,1,389.99,01/20/19 23:38,"295 1st St, Los Angeles, CA 90001" -142782,Lightning Charging Cable,1,14.95,01/11/19 17:31,"782 Church St, Boston, MA 02215" -142783,Flatscreen TV,1,300,01/11/19 16:12,"960 Ridge St, San Francisco, CA 94016" -142784,AAA Batteries (4-pack),4,2.99,01/25/19 11:27,"301 Park St, New York City, NY 10001" -142785,Bose SoundSport Headphones,1,99.99,01/05/19 14:03,"676 14th St, Portland, OR 97035" -142786,27in FHD Monitor,1,149.99,01/07/19 11:16,"756 7th St, Atlanta, GA 30301" -142787,Lightning Charging Cable,1,14.95,01/16/19 14:34,"701 12th St, New York City, NY 10001" -142788,Lightning Charging Cable,1,14.95,01/11/19 16:30,"488 Hill St, Seattle, WA 98101" -142789,AAA Batteries (4-pack),1,2.99,01/01/19 07:35,"336 Spruce St, Boston, MA 02215" -142790,Bose SoundSport Headphones,1,99.99,01/26/19 18:50,"225 7th St, Los Angeles, CA 90001" -142790,Macbook Pro Laptop,1,1700,01/26/19 18:50,"225 7th St, Los Angeles, CA 90001" -142791,Bose SoundSport Headphones,1,99.99,01/06/19 21:55,"913 Hill St, Los Angeles, CA 90001" -142792,34in Ultrawide Monitor,1,379.99,01/16/19 08:31,"387 Maple St, Boston, MA 02215" -142793,AAA Batteries (4-pack),2,2.99,01/26/19 18:11,"824 Jackson St, San Francisco, CA 94016" -142794,Wired Headphones,1,11.99,01/19/19 23:04,"882 7th St, San Francisco, CA 94016" -142795,Wired Headphones,1,11.99,01/02/19 22:06,"192 Maple St, San Francisco, CA 94016" -142796,Macbook Pro Laptop,1,1700,01/14/19 21:06,"39 Hill St, Boston, MA 02215" -142797,AAA Batteries (4-pack),1,2.99,01/06/19 16:19,"557 13th St, Seattle, WA 98101" -142798,Wired Headphones,1,11.99,01/08/19 07:27,"156 Elm St, San Francisco, CA 94016" -142799,AAA Batteries (4-pack),1,2.99,01/13/19 09:58,"273 North St, Austin, TX 73301" -142800,Wired Headphones,1,11.99,01/21/19 00:36,"668 Willow St, Dallas, TX 75001" -142801,AA Batteries (4-pack),1,3.84,01/08/19 23:01,"132 Jefferson St, San Francisco, CA 94016" -142802,Wired Headphones,1,11.99,01/29/19 15:33,"223 Highland St, Dallas, TX 75001" -142803,Wired Headphones,1,11.99,01/09/19 20:21,"904 Maple St, Boston, MA 02215" -142804,Vareebadd Phone,1,400,01/31/19 21:37,"950 Meadow St, Los Angeles, CA 90001" -142805,Bose SoundSport Headphones,1,99.99,01/30/19 11:49,"445 Church St, San Francisco, CA 94016" -142806,AA Batteries (4-pack),1,3.84,01/16/19 04:19,"367 7th St, Seattle, WA 98101" -142807,27in 4K Gaming Monitor,1,389.99,01/25/19 17:44,"485 Sunset St, Los Angeles, CA 90001" -142808,27in FHD Monitor,1,149.99,01/11/19 19:05,"38 Center St, Dallas, TX 75001" -142809,Flatscreen TV,1,300,01/04/19 13:41,"420 Chestnut St, Boston, MA 02215" -142810,AA Batteries (4-pack),1,3.84,01/24/19 17:38,"486 Adams St, Boston, MA 02215" -142811,Lightning Charging Cable,1,14.95,01/05/19 23:11,"149 Johnson St, Portland, OR 97035" -142812,iPhone,1,700,01/19/19 10:43,"373 Park St, San Francisco, CA 94016" -142812,Lightning Charging Cable,1,14.95,01/19/19 10:43,"373 Park St, San Francisco, CA 94016" -142813,AAA Batteries (4-pack),2,2.99,01/23/19 22:20,"733 West St, New York City, NY 10001" -142814,AA Batteries (4-pack),1,3.84,01/18/19 19:20,"764 2nd St, San Francisco, CA 94016" -142815,AA Batteries (4-pack),3,3.84,01/20/19 16:45,"506 13th St, New York City, NY 10001" -142816,ThinkPad Laptop,1,999.99,01/27/19 11:15,"827 Elm St, Dallas, TX 75001" -142817,ThinkPad Laptop,1,999.99,01/30/19 19:53,"355 Walnut St, Los Angeles, CA 90001" -142818,AAA Batteries (4-pack),2,2.99,01/13/19 17:16,"295 Church St, San Francisco, CA 94016" -142819,Wired Headphones,1,11.99,01/10/19 16:31,"992 7th St, Los Angeles, CA 90001" -142820,Apple Airpods Headphones,1,150,01/08/19 18:42,"302 5th St, Austin, TX 73301" -142821,USB-C Charging Cable,2,11.95,01/16/19 20:53,"37 West St, Boston, MA 02215" -142822,Lightning Charging Cable,1,14.95,01/01/19 13:51,"487 2nd St, New York City, NY 10001" -142823,Macbook Pro Laptop,1,1700,01/02/19 15:05,"487 14th St, New York City, NY 10001" -142824,Google Phone,1,600,01/06/19 08:45,"850 13th St, Seattle, WA 98101" -142824,Wired Headphones,1,11.99,01/06/19 08:45,"850 13th St, Seattle, WA 98101" -142825,AAA Batteries (4-pack),3,2.99,01/27/19 00:59,"232 Meadow St, New York City, NY 10001" -142826,Apple Airpods Headphones,1,150,01/28/19 18:55,"472 7th St, San Francisco, CA 94016" -142827,Apple Airpods Headphones,1,150,01/09/19 22:55,"461 2nd St, San Francisco, CA 94016" -142828,AA Batteries (4-pack),1,3.84,01/21/19 00:14,"853 Lincoln St, Atlanta, GA 30301" -142829,AA Batteries (4-pack),1,3.84,01/24/19 12:32,"106 Cherry St, San Francisco, CA 94016" -142830,ThinkPad Laptop,1,999.99,01/22/19 07:40,"896 13th St, Dallas, TX 75001" -142831,27in FHD Monitor,1,149.99,01/26/19 19:07,"270 Jackson St, New York City, NY 10001" -142832,AA Batteries (4-pack),1,3.84,01/21/19 09:01,"199 8th St, Boston, MA 02215" -142833,AAA Batteries (4-pack),1,2.99,01/19/19 19:40,"934 Park St, Dallas, TX 75001" -142834,Apple Airpods Headphones,1,150,01/07/19 23:48,"697 13th St, San Francisco, CA 94016" -142835,iPhone,1,700,01/11/19 09:00,"327 Spruce St, Dallas, TX 75001" -142835,Wired Headphones,1,11.99,01/11/19 09:00,"327 Spruce St, Dallas, TX 75001" -142836,Google Phone,1,600,01/30/19 09:10,"204 West St, Austin, TX 73301" -142837,iPhone,1,700,01/19/19 16:32,"260 9th St, Dallas, TX 75001" -142837,Wired Headphones,1,11.99,01/19/19 16:32,"260 9th St, Dallas, TX 75001" -142838,AAA Batteries (4-pack),2,2.99,01/02/19 12:28,"503 Washington St, New York City, NY 10001" -142839,27in FHD Monitor,1,149.99,01/18/19 09:38,"164 5th St, San Francisco, CA 94016" -142840,27in 4K Gaming Monitor,1,389.99,01/31/19 10:58,"263 13th St, Los Angeles, CA 90001" -142841,Lightning Charging Cable,1,14.95,01/29/19 09:18,"120 7th St, San Francisco, CA 94016" -142842,USB-C Charging Cable,1,11.95,01/19/19 19:56,"304 Willow St, Atlanta, GA 30301" -142843,Bose SoundSport Headphones,1,99.99,01/14/19 10:16,"937 9th St, Los Angeles, CA 90001" -142844,27in FHD Monitor,1,149.99,01/07/19 12:29,"78 Elm St, San Francisco, CA 94016" -142845,34in Ultrawide Monitor,1,379.99,01/03/19 17:53,"67 2nd St, Seattle, WA 98101" -142846,iPhone,1,700,01/19/19 21:30,"474 12th St, San Francisco, CA 94016" -142847,Apple Airpods Headphones,1,150,01/27/19 19:58,"822 Highland St, Boston, MA 02215" -142848,Lightning Charging Cable,1,14.95,01/08/19 12:05,"670 Adams St, Los Angeles, CA 90001" -142849,Apple Airpods Headphones,1,150,01/30/19 15:41,"828 Meadow St, Portland, ME 04101" -,,,,, -142850,Bose SoundSport Headphones,1,99.99,01/09/19 17:00,"295 Maple St, New York City, NY 10001" -142851,Vareebadd Phone,1,400,01/08/19 16:38,"258 Elm St, San Francisco, CA 94016" -142852,AAA Batteries (4-pack),1,2.99,01/13/19 21:19,"190 Washington St, Los Angeles, CA 90001" -142853,34in Ultrawide Monitor,1,379.99,01/20/19 11:47,"885 Elm St, Atlanta, GA 30301" -142854,USB-C Charging Cable,1,11.95,01/16/19 13:27,"328 Lakeview St, Boston, MA 02215" -142855,Wired Headphones,1,11.99,01/14/19 20:39,"414 Lincoln St, San Francisco, CA 94016" -142856,Vareebadd Phone,1,400,01/20/19 10:56,"777 Adams St, New York City, NY 10001" -142857,iPhone,1,700,01/31/19 10:39,"251 Washington St, Los Angeles, CA 90001" -142858,AAA Batteries (4-pack),1,2.99,01/19/19 09:21,"17 South St, Portland, OR 97035" -142859,AA Batteries (4-pack),1,3.84,01/09/19 22:25,"434 Madison St, San Francisco, CA 94016" -142860,AAA Batteries (4-pack),1,2.99,01/08/19 14:44,"75 5th St, Los Angeles, CA 90001" -142861,Wired Headphones,1,11.99,01/04/19 23:37,"828 Pine St, Austin, TX 73301" -142862,iPhone,1,700,01/30/19 09:51,"757 Church St, Austin, TX 73301" -142863,Lightning Charging Cable,1,14.95,01/31/19 21:12,"414 Johnson St, San Francisco, CA 94016" -142864,27in FHD Monitor,1,149.99,01/17/19 18:01,"392 Park St, Dallas, TX 75001" -142865,Apple Airpods Headphones,1,150,01/05/19 17:37,"370 Main St, Atlanta, GA 30301" -142866,USB-C Charging Cable,1,11.95,01/13/19 20:05,"210 1st St, Austin, TX 73301" -142867,Apple Airpods Headphones,1,150,01/27/19 16:07,"233 Cherry St, New York City, NY 10001" -142868,27in FHD Monitor,1,149.99,01/27/19 08:01,"8 River St, Austin, TX 73301" -142869,Macbook Pro Laptop,1,1700,01/19/19 15:40,"751 Willow St, New York City, NY 10001" -142870,Bose SoundSport Headphones,1,99.99,01/23/19 08:07,"70 Spruce St, New York City, NY 10001" -142871,Wired Headphones,2,11.99,01/26/19 15:44,"723 Washington St, Los Angeles, CA 90001" -142872,Wired Headphones,1,11.99,01/06/19 16:19,"986 Sunset St, Boston, MA 02215" -142873,34in Ultrawide Monitor,1,379.99,01/29/19 15:55,"936 River St, Dallas, TX 75001" -142873,Wired Headphones,1,11.99,01/29/19 15:55,"936 River St, Dallas, TX 75001" -142874,AAA Batteries (4-pack),2,2.99,01/14/19 11:37,"325 Church St, San Francisco, CA 94016" -142875,Apple Airpods Headphones,1,150,01/09/19 03:27,"610 Elm St, New York City, NY 10001" -142876,LG Dryer,1,600.0,01/26/19 17:11,"823 Jefferson St, Boston, MA 02215" -142877,ThinkPad Laptop,1,999.99,01/22/19 21:30,"758 Adams St, Atlanta, GA 30301" -142878,Apple Airpods Headphones,1,150,01/17/19 10:17,"654 Cedar St, Dallas, TX 75001" -142879,Lightning Charging Cable,1,14.95,01/07/19 12:16,"300 Dogwood St, New York City, NY 10001" -142880,Lightning Charging Cable,1,14.95,01/29/19 20:54,"896 2nd St, San Francisco, CA 94016" -142881,20in Monitor,1,109.99,01/24/19 06:20,"324 Park St, Boston, MA 02215" -142882,Bose SoundSport Headphones,1,99.99,01/09/19 11:03,"357 Lakeview St, New York City, NY 10001" -142883,27in 4K Gaming Monitor,1,389.99,01/05/19 12:22,"201 10th St, Boston, MA 02215" -142884,USB-C Charging Cable,3,11.95,01/04/19 22:52,"700 Jackson St, San Francisco, CA 94016" -142885,AA Batteries (4-pack),1,3.84,01/24/19 13:13,"582 Hickory St, Los Angeles, CA 90001" -142886,Google Phone,1,600,01/24/19 10:12,"755 6th St, Los Angeles, CA 90001" -142887,Wired Headphones,1,11.99,01/25/19 12:14,"507 Willow St, San Francisco, CA 94016" -142888,USB-C Charging Cable,2,11.95,01/31/19 15:45,"929 Pine St, Dallas, TX 75001" -142889,Apple Airpods Headphones,1,150,01/06/19 01:43,"601 South St, Atlanta, GA 30301" -142890,Lightning Charging Cable,1,14.95,01/19/19 15:33,"221 Park St, New York City, NY 10001" -142891,34in Ultrawide Monitor,1,379.99,01/30/19 14:58,"597 Lakeview St, Los Angeles, CA 90001" -142892,34in Ultrawide Monitor,1,379.99,01/10/19 10:22,"846 Lincoln St, Portland, OR 97035" -142893,Lightning Charging Cable,1,14.95,01/05/19 20:07,"41 Spruce St, San Francisco, CA 94016" -142894,Flatscreen TV,1,300,01/31/19 10:19,"744 8th St, Atlanta, GA 30301" -142895,Bose SoundSport Headphones,1,99.99,01/15/19 10:57,"710 Church St, Portland, OR 97035" -142896,Lightning Charging Cable,1,14.95,01/16/19 14:20,"142 Jackson St, San Francisco, CA 94016" -142897,USB-C Charging Cable,1,11.95,01/22/19 08:09,"633 2nd St, Portland, OR 97035" -142898,USB-C Charging Cable,1,11.95,01/16/19 23:52,"150 Forest St, New York City, NY 10001" -142899,AAA Batteries (4-pack),1,2.99,01/09/19 15:59,"597 Center St, Portland, OR 97035" -142900,AA Batteries (4-pack),2,3.84,01/15/19 23:43,"459 Pine St, San Francisco, CA 94016" -142901,Bose SoundSport Headphones,1,99.99,01/13/19 11:11,"535 7th St, Boston, MA 02215" -142902,ThinkPad Laptop,1,999.99,01/20/19 11:15,"362 Main St, Atlanta, GA 30301" -142903,AA Batteries (4-pack),1,3.84,01/22/19 04:34,"719 6th St, San Francisco, CA 94016" -142904,Wired Headphones,1,11.99,01/02/19 18:22,"8 Madison St, Dallas, TX 75001" -142905,USB-C Charging Cable,1,11.95,01/17/19 09:46,"674 Center St, Atlanta, GA 30301" -142906,Bose SoundSport Headphones,1,99.99,01/24/19 13:18,"78 Ridge St, San Francisco, CA 94016" -142907,27in 4K Gaming Monitor,1,389.99,01/28/19 14:06,"399 Maple St, San Francisco, CA 94016" -142908,Apple Airpods Headphones,1,150,01/08/19 12:08,"751 Jackson St, San Francisco, CA 94016" -142909,AAA Batteries (4-pack),1,2.99,01/13/19 11:21,"13 Adams St, Seattle, WA 98101" -142910,AAA Batteries (4-pack),1,2.99,01/01/19 19:00,"409 10th St, New York City, NY 10001" -142911,USB-C Charging Cable,1,11.95,01/22/19 16:58,"252 6th St, New York City, NY 10001" -142912,20in Monitor,1,109.99,01/30/19 21:27,"7 Meadow St, New York City, NY 10001" -142913,AA Batteries (4-pack),2,3.84,01/12/19 20:08,"657 Madison St, New York City, NY 10001" -142914,iPhone,1,700,01/01/19 12:35,"279 9th St, San Francisco, CA 94016" -142915,Bose SoundSport Headphones,1,99.99,01/31/19 17:42,"375 Jefferson St, San Francisco, CA 94016" -142916,Wired Headphones,2,11.99,01/25/19 15:32,"661 Main St, Seattle, WA 98101" -142917,Lightning Charging Cable,2,14.95,01/01/19 14:45,"225 West St, Los Angeles, CA 90001" -142918,Macbook Pro Laptop,1,1700,01/08/19 23:38,"405 Lakeview St, New York City, NY 10001" -142919,AA Batteries (4-pack),1,3.84,01/11/19 17:43,"57 2nd St, San Francisco, CA 94016" -142920,Lightning Charging Cable,1,14.95,01/20/19 16:04,"805 9th St, Dallas, TX 75001" -142921,AAA Batteries (4-pack),1,2.99,01/24/19 15:19,"295 North St, New York City, NY 10001" -142922,27in FHD Monitor,1,149.99,01/27/19 12:48,"641 Lincoln St, Dallas, TX 75001" -142923,Lightning Charging Cable,1,14.95,01/04/19 23:17,"949 2nd St, San Francisco, CA 94016" -142924,Macbook Pro Laptop,1,1700,01/31/19 11:14,"903 Lakeview St, Los Angeles, CA 90001" -142925,iPhone,1,700,01/26/19 13:06,"146 Washington St, New York City, NY 10001" -142925,Lightning Charging Cable,1,14.95,01/26/19 13:06,"146 Washington St, New York City, NY 10001" -142926,Apple Airpods Headphones,1,150,01/09/19 11:50,"809 Washington St, New York City, NY 10001" -142927,Apple Airpods Headphones,1,150,01/19/19 03:08,"863 12th St, San Francisco, CA 94016" -142928,Wired Headphones,1,11.99,01/31/19 14:35,"946 Adams St, San Francisco, CA 94016" -142929,Lightning Charging Cable,1,14.95,01/09/19 17:04,"644 Ridge St, San Francisco, CA 94016" -142930,Bose SoundSport Headphones,1,99.99,01/14/19 12:00,"258 Walnut St, Portland, ME 04101" -142931,USB-C Charging Cable,1,11.95,01/26/19 00:58,"129 Johnson St, Dallas, TX 75001" -142932,Vareebadd Phone,1,400,01/11/19 10:24,"97 Jefferson St, New York City, NY 10001" -142933,ThinkPad Laptop,1,999.99,01/30/19 17:54,"918 5th St, Dallas, TX 75001" -142934,Lightning Charging Cable,1,14.95,01/31/19 20:50,"253 South St, Boston, MA 02215" -142935,AAA Batteries (4-pack),2,2.99,01/14/19 12:57,"817 Hickory St, Boston, MA 02215" -142936,Bose SoundSport Headphones,1,99.99,01/10/19 18:14,"677 Sunset St, Seattle, WA 98101" -142937,USB-C Charging Cable,1,11.95,01/31/19 21:24,"494 Dogwood St, Portland, OR 97035" -142938,20in Monitor,1,109.99,01/31/19 11:44,"697 North St, Boston, MA 02215" -142939,LG Washing Machine,1,600.0,01/25/19 12:35,"5 Spruce St, San Francisco, CA 94016" -142940,20in Monitor,2,109.99,01/12/19 08:40,"315 Park St, Atlanta, GA 30301" -142941,AA Batteries (4-pack),1,3.84,01/08/19 22:00,"700 Highland St, Dallas, TX 75001" -142942,27in FHD Monitor,1,149.99,01/25/19 00:53,"584 Ridge St, Austin, TX 73301" -142943,Wired Headphones,1,11.99,01/16/19 11:01,"845 Elm St, New York City, NY 10001" -142944,Lightning Charging Cable,1,14.95,01/10/19 21:59,"329 12th St, San Francisco, CA 94016" -142945,Bose SoundSport Headphones,1,99.99,01/04/19 11:16,"441 Hickory St, Atlanta, GA 30301" -142946,AAA Batteries (4-pack),1,2.99,01/31/19 12:45,"474 Center St, Austin, TX 73301" -142947,AA Batteries (4-pack),1,3.84,01/01/19 13:31,"899 Main St, New York City, NY 10001" -142948,AAA Batteries (4-pack),1,2.99,01/31/19 15:43,"43 5th St, Dallas, TX 75001" -142949,27in FHD Monitor,1,149.99,01/04/19 14:25,"249 4th St, New York City, NY 10001" -142950,AA Batteries (4-pack),1,3.84,01/27/19 10:09,"589 Cedar St, Portland, ME 04101" -142951,Flatscreen TV,1,300,01/27/19 15:20,"751 Chestnut St, Dallas, TX 75001" -142952,27in 4K Gaming Monitor,1,389.99,01/04/19 12:20,"777 North St, Seattle, WA 98101" -142953,AAA Batteries (4-pack),1,2.99,01/04/19 14:08,"222 Lake St, Dallas, TX 75001" -142954,Apple Airpods Headphones,1,150,01/22/19 12:48,"741 6th St, Atlanta, GA 30301" -142955,AA Batteries (4-pack),2,3.84,01/06/19 21:32,"399 13th St, Austin, TX 73301" -142956,Apple Airpods Headphones,1,150,01/03/19 08:21,"189 Cedar St, Los Angeles, CA 90001" -142957,Apple Airpods Headphones,1,150,01/26/19 17:26,"126 Meadow St, San Francisco, CA 94016" -142958,27in 4K Gaming Monitor,1,389.99,01/05/19 23:46,"420 4th St, Seattle, WA 98101" -142959,Apple Airpods Headphones,1,150,01/17/19 07:47,"46 7th St, Portland, ME 04101" -142960,AAA Batteries (4-pack),1,2.99,01/20/19 09:52,"358 7th St, San Francisco, CA 94016" -142961,Apple Airpods Headphones,1,150,01/27/19 08:19,"325 South St, Los Angeles, CA 90001" -142962,USB-C Charging Cable,1,11.95,01/11/19 23:04,"795 Church St, Seattle, WA 98101" -142963,Wired Headphones,1,11.99,01/14/19 17:12,"70 12th St, New York City, NY 10001" -142964,20in Monitor,1,109.99,01/22/19 19:19,"28 Chestnut St, Portland, OR 97035" -142965,Google Phone,1,600,01/05/19 18:22,"878 Johnson St, Portland, OR 97035" -142965,USB-C Charging Cable,1,11.95,01/05/19 18:22,"878 Johnson St, Portland, OR 97035" -142966,Apple Airpods Headphones,1,150,01/06/19 12:57,"371 Ridge St, Dallas, TX 75001" -142967,27in 4K Gaming Monitor,1,389.99,01/20/19 19:16,"362 Sunset St, San Francisco, CA 94016" -142968,Flatscreen TV,1,300,01/11/19 19:10,"879 12th St, Portland, OR 97035" -142969,Apple Airpods Headphones,1,150,01/13/19 16:47,"769 Washington St, Portland, OR 97035" -142970,USB-C Charging Cable,1,11.95,01/20/19 08:20,"493 Dogwood St, Boston, MA 02215" -142971,Lightning Charging Cable,1,14.95,01/27/19 09:53,"32 Elm St, San Francisco, CA 94016" -142972,Google Phone,1,600,01/06/19 18:30,"521 Church St, Dallas, TX 75001" -142973,iPhone,1,700,01/04/19 15:21,"371 Church St, San Francisco, CA 94016" -142974,AA Batteries (4-pack),1,3.84,01/25/19 21:55,"920 Willow St, San Francisco, CA 94016" -142975,Lightning Charging Cable,2,14.95,01/16/19 22:39,"391 Pine St, Atlanta, GA 30301" -142976,Bose SoundSport Headphones,1,99.99,01/04/19 09:26,"921 Lake St, Austin, TX 73301" -142977,AAA Batteries (4-pack),1,2.99,01/13/19 09:36,"132 4th St, San Francisco, CA 94016" -142978,Wired Headphones,1,11.99,01/18/19 19:10,"726 Spruce St, San Francisco, CA 94016" -142979,Apple Airpods Headphones,1,150,01/23/19 14:24,"379 Center St, Boston, MA 02215" -142980,USB-C Charging Cable,1,11.95,01/07/19 12:07,"257 10th St, Austin, TX 73301" -142981,Apple Airpods Headphones,1,150,01/24/19 23:26,"39 Maple St, San Francisco, CA 94016" -142982,Lightning Charging Cable,1,14.95,01/30/19 16:23,"625 Meadow St, Seattle, WA 98101" -142983,Bose SoundSport Headphones,1,99.99,01/29/19 18:41,"955 Church St, Atlanta, GA 30301" -142984,AAA Batteries (4-pack),2,2.99,01/07/19 21:04,"590 Chestnut St, Atlanta, GA 30301" -142985,Wired Headphones,1,11.99,01/19/19 09:37,"220 North St, Seattle, WA 98101" -142986,AA Batteries (4-pack),2,3.84,01/28/19 20:17,"717 Lakeview St, Los Angeles, CA 90001" -142987,Lightning Charging Cable,1,14.95,01/12/19 17:05,"909 South St, Austin, TX 73301" -142988,Wired Headphones,1,11.99,01/20/19 16:03,"894 Jefferson St, New York City, NY 10001" -142989,Vareebadd Phone,1,400,01/10/19 00:21,"175 South St, Austin, TX 73301" -142989,USB-C Charging Cable,1,11.95,01/10/19 00:21,"175 South St, Austin, TX 73301" -142990,USB-C Charging Cable,1,11.95,01/30/19 05:27,"280 Walnut St, Dallas, TX 75001" -142991,AA Batteries (4-pack),2,3.84,01/14/19 15:05,"742 Jackson St, San Francisco, CA 94016" -142992,27in 4K Gaming Monitor,1,389.99,01/13/19 19:53,"808 Lakeview St, Los Angeles, CA 90001" -142993,USB-C Charging Cable,1,11.95,01/08/19 05:14,"372 6th St, San Francisco, CA 94016" -142994,Lightning Charging Cable,1,14.95,01/01/19 19:00,"971 8th St, San Francisco, CA 94016" -142995,Apple Airpods Headphones,1,150,01/20/19 19:16,"820 Cherry St, Boston, MA 02215" -142996,AAA Batteries (4-pack),1,2.99,01/01/19 21:01,"402 Chestnut St, Boston, MA 02215" -142997,iPhone,1,700,01/26/19 01:52,"22 Main St, New York City, NY 10001" -142997,Wired Headphones,1,11.99,01/26/19 01:52,"22 Main St, New York City, NY 10001" -142998,27in FHD Monitor,1,149.99,01/07/19 15:17,"386 Wilson St, San Francisco, CA 94016" -142999,AAA Batteries (4-pack),1,2.99,01/27/19 04:22,"685 Spruce St, San Francisco, CA 94016" -143000,USB-C Charging Cable,1,11.95,01/27/19 20:47,"97 Lake St, San Francisco, CA 94016" -143001,AAA Batteries (4-pack),5,2.99,01/30/19 10:26,"215 Walnut St, Los Angeles, CA 90001" -143002,Lightning Charging Cable,1,14.95,01/24/19 11:27,"292 Pine St, Portland, OR 97035" -143003,Lightning Charging Cable,1,14.95,01/17/19 10:58,"265 Lakeview St, Los Angeles, CA 90001" -143004,27in 4K Gaming Monitor,1,389.99,01/18/19 17:56,"294 Ridge St, Boston, MA 02215" -143005,27in 4K Gaming Monitor,1,389.99,01/27/19 17:24,"581 Spruce St, San Francisco, CA 94016" -143006,Google Phone,1,600,01/29/19 14:17,"785 Cedar St, Boston, MA 02215" -143006,Bose SoundSport Headphones,1,99.99,01/29/19 14:17,"785 Cedar St, Boston, MA 02215" -143006,Wired Headphones,1,11.99,01/29/19 14:17,"785 Cedar St, Boston, MA 02215" -143007,34in Ultrawide Monitor,1,379.99,01/03/19 20:20,"355 Pine St, Dallas, TX 75001" -143008,Bose SoundSport Headphones,1,99.99,01/13/19 08:27,"113 River St, Boston, MA 02215" -143009,Wired Headphones,1,11.99,01/10/19 21:34,"856 7th St, Dallas, TX 75001" -143010,Wired Headphones,1,11.99,01/13/19 10:41,"510 Maple St, Los Angeles, CA 90001" -143011,Bose SoundSport Headphones,1,99.99,01/13/19 09:09,"601 5th St, San Francisco, CA 94016" -143012,AAA Batteries (4-pack),1,2.99,01/30/19 18:38,"701 Highland St, New York City, NY 10001" -143013,Google Phone,1,600,01/17/19 22:18,"801 Lincoln St, Seattle, WA 98101" -143014,Bose SoundSport Headphones,1,99.99,01/13/19 20:52,"742 Meadow St, San Francisco, CA 94016" -143015,AA Batteries (4-pack),1,3.84,01/22/19 15:17,"150 7th St, New York City, NY 10001" -143016,AA Batteries (4-pack),1,3.84,01/11/19 07:55,"752 1st St, Seattle, WA 98101" -143017,AA Batteries (4-pack),1,3.84,01/20/19 02:53,"174 Maple St, Los Angeles, CA 90001" -143018,Lightning Charging Cable,1,14.95,01/03/19 10:02,"358 North St, Seattle, WA 98101" -143019,Macbook Pro Laptop,1,1700,01/18/19 12:41,"195 South St, Atlanta, GA 30301" -143020,ThinkPad Laptop,1,999.99,01/31/19 17:12,"628 Maple St, New York City, NY 10001" -143021,iPhone,1,700,01/26/19 09:32,"181 Wilson St, San Francisco, CA 94016" -143021,Lightning Charging Cable,1,14.95,01/26/19 09:32,"181 Wilson St, San Francisco, CA 94016" -143021,Apple Airpods Headphones,1,150,01/26/19 09:32,"181 Wilson St, San Francisco, CA 94016" -143022,Google Phone,1,600,01/27/19 19:02,"435 Hickory St, Dallas, TX 75001" -143023,USB-C Charging Cable,1,11.95,01/21/19 12:33,"75 Elm St, Atlanta, GA 30301" -143024,Macbook Pro Laptop,1,1700,01/27/19 12:48,"412 Cherry St, Portland, ME 04101" -143025,27in FHD Monitor,1,149.99,01/20/19 13:37,"47 Walnut St, San Francisco, CA 94016" -143026,USB-C Charging Cable,1,11.95,01/08/19 21:22,"125 Wilson St, New York City, NY 10001" -143027,27in FHD Monitor,1,149.99,01/24/19 20:27,"77 Sunset St, Atlanta, GA 30301" -143028,AAA Batteries (4-pack),2,2.99,01/08/19 14:35,"478 Lake St, Boston, MA 02215" -143029,Lightning Charging Cable,1,14.95,01/21/19 19:37,"933 8th St, Atlanta, GA 30301" -143030,Lightning Charging Cable,1,14.95,01/09/19 15:23,"877 Chestnut St, Boston, MA 02215" -143031,Wired Headphones,1,11.99,01/18/19 16:23,"640 Wilson St, Los Angeles, CA 90001" -143032,Bose SoundSport Headphones,1,99.99,01/08/19 20:25,"398 9th St, Austin, TX 73301" -143033,AAA Batteries (4-pack),1,2.99,01/14/19 16:50,"464 Lincoln St, Austin, TX 73301" -143034,LG Dryer,1,600.0,01/31/19 09:26,"714 Washington St, San Francisco, CA 94016" -143035,Apple Airpods Headphones,1,150,01/08/19 14:47,"560 Washington St, San Francisco, CA 94016" -143036,20in Monitor,1,109.99,01/29/19 09:20,"752 Adams St, San Francisco, CA 94016" -143037,AAA Batteries (4-pack),1,2.99,01/18/19 22:40,"626 Maple St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -143038,Wired Headphones,1,11.99,01/04/19 12:53,"992 Lake St, Seattle, WA 98101" -143039,USB-C Charging Cable,1,11.95,01/28/19 07:11,"920 11th St, Austin, TX 73301" -143040,iPhone,1,700,01/24/19 21:05,"381 Maple St, New York City, NY 10001" -143040,Lightning Charging Cable,1,14.95,01/24/19 21:05,"381 Maple St, New York City, NY 10001" -143041,Wired Headphones,1,11.99,01/22/19 14:48,"937 4th St, San Francisco, CA 94016" -143042,20in Monitor,1,109.99,01/07/19 07:42,"612 10th St, New York City, NY 10001" -143043,AAA Batteries (4-pack),1,2.99,01/26/19 15:07,"550 1st St, New York City, NY 10001" -143044,USB-C Charging Cable,1,11.95,01/03/19 19:19,"654 Meadow St, San Francisco, CA 94016" -143045,Lightning Charging Cable,1,14.95,01/15/19 09:25,"4 Main St, San Francisco, CA 94016" -143046,USB-C Charging Cable,1,11.95,01/14/19 14:42,"808 South St, Los Angeles, CA 90001" -143047,Wired Headphones,2,11.99,01/23/19 08:08,"223 Cedar St, Los Angeles, CA 90001" -143048,AAA Batteries (4-pack),1,2.99,01/17/19 16:36,"679 Spruce St, San Francisco, CA 94016" -143049,Apple Airpods Headphones,1,150,01/22/19 17:39,"837 10th St, Dallas, TX 75001" -143050,AAA Batteries (4-pack),1,2.99,01/03/19 16:49,"8 14th St, Seattle, WA 98101" -143051,iPhone,1,700,01/25/19 19:53,"500 Dogwood St, Boston, MA 02215" -143052,34in Ultrawide Monitor,1,379.99,01/19/19 18:53,"421 5th St, New York City, NY 10001" -143053,AAA Batteries (4-pack),2,2.99,01/18/19 13:24,"926 11th St, Seattle, WA 98101" -143054,Bose SoundSport Headphones,1,99.99,01/27/19 14:53,"701 14th St, Atlanta, GA 30301" -143055,Apple Airpods Headphones,1,150,01/31/19 21:53,"303 Chestnut St, Boston, MA 02215" -143056,27in FHD Monitor,1,149.99,01/29/19 22:15,"335 1st St, Boston, MA 02215" -143057,Flatscreen TV,1,300,01/21/19 12:35,"330 Willow St, San Francisco, CA 94016" -143058,Google Phone,1,600,01/17/19 11:01,"130 Walnut St, Boston, MA 02215" -143059,USB-C Charging Cable,1,11.95,01/15/19 08:48,"726 Johnson St, Los Angeles, CA 90001" -143060,Wired Headphones,1,11.99,01/21/19 16:20,"994 12th St, Boston, MA 02215" -143060,AA Batteries (4-pack),3,3.84,01/21/19 16:20,"994 12th St, Boston, MA 02215" -143061,iPhone,1,700,01/13/19 20:25,"265 Ridge St, Los Angeles, CA 90001" -143062,20in Monitor,1,109.99,01/26/19 14:14,"615 Main St, Los Angeles, CA 90001" -143062,USB-C Charging Cable,2,11.95,01/26/19 14:14,"615 Main St, Los Angeles, CA 90001" -143063,USB-C Charging Cable,1,11.95,01/17/19 14:27,"603 West St, San Francisco, CA 94016" -143064,USB-C Charging Cable,1,11.95,01/15/19 14:26,"137 14th St, New York City, NY 10001" -143065,Lightning Charging Cable,1,14.95,01/19/19 10:16,"322 6th St, San Francisco, CA 94016" -143065,Apple Airpods Headphones,1,150,01/19/19 10:16,"322 6th St, San Francisco, CA 94016" -143066,USB-C Charging Cable,1,11.95,01/16/19 23:13,"855 2nd St, Boston, MA 02215" -143067,iPhone,1,700,01/20/19 09:23,"785 6th St, San Francisco, CA 94016" -143067,Wired Headphones,1,11.99,01/20/19 09:23,"785 6th St, San Francisco, CA 94016" -143068,Bose SoundSport Headphones,1,99.99,01/25/19 11:49,"587 North St, San Francisco, CA 94016" -143068,Apple Airpods Headphones,1,150,01/25/19 11:49,"587 North St, San Francisco, CA 94016" -143069,Wired Headphones,1,11.99,01/26/19 21:00,"256 7th St, Los Angeles, CA 90001" -143070,27in FHD Monitor,1,149.99,01/22/19 17:11,"151 Pine St, Dallas, TX 75001" -143071,AAA Batteries (4-pack),1,2.99,01/20/19 15:41,"518 Adams St, San Francisco, CA 94016" -143072,Lightning Charging Cable,1,14.95,01/10/19 19:15,"8 Jackson St, Los Angeles, CA 90001" -143073,AAA Batteries (4-pack),1,2.99,01/20/19 14:10,"489 Ridge St, San Francisco, CA 94016" -143074,Google Phone,1,600,01/22/19 13:49,"855 Walnut St, Los Angeles, CA 90001" -143074,USB-C Charging Cable,1,11.95,01/22/19 13:49,"855 Walnut St, Los Angeles, CA 90001" -143075,27in 4K Gaming Monitor,1,389.99,01/14/19 10:25,"301 Church St, Portland, OR 97035" -143076,27in 4K Gaming Monitor,1,389.99,01/04/19 14:04,"892 Cedar St, San Francisco, CA 94016" -143077,Wired Headphones,1,11.99,01/27/19 00:40,"552 Hickory St, San Francisco, CA 94016" -143078,Lightning Charging Cable,1,14.95,01/22/19 15:49,"163 Wilson St, San Francisco, CA 94016" -143079,20in Monitor,1,109.99,01/11/19 12:54,"641 Lincoln St, Atlanta, GA 30301" -143080,Apple Airpods Headphones,1,150,01/24/19 23:06,"389 Cherry St, Dallas, TX 75001" -143081,Wired Headphones,1,11.99,01/19/19 15:42,"997 12th St, Atlanta, GA 30301" -143082,Lightning Charging Cable,1,14.95,01/14/19 13:04,"885 Church St, Austin, TX 73301" -143083,Lightning Charging Cable,1,14.95,01/31/19 11:26,"525 5th St, Boston, MA 02215" -143084,USB-C Charging Cable,1,11.95,01/04/19 08:07,"408 Jefferson St, San Francisco, CA 94016" -143085,Flatscreen TV,1,300,01/24/19 18:38,"364 13th St, Los Angeles, CA 90001" -143086,AAA Batteries (4-pack),1,2.99,01/22/19 13:08,"112 Cherry St, Boston, MA 02215" -143087,ThinkPad Laptop,1,999.99,01/08/19 00:04,"930 Cedar St, Seattle, WA 98101" -143088,20in Monitor,1,109.99,01/26/19 08:50,"367 1st St, Los Angeles, CA 90001" -143089,Lightning Charging Cable,1,14.95,01/09/19 11:14,"646 4th St, San Francisco, CA 94016" -143090,Wired Headphones,1,11.99,01/22/19 01:39,"696 Hill St, San Francisco, CA 94016" -143091,Apple Airpods Headphones,1,150,01/27/19 11:40,"55 Walnut St, Portland, OR 97035" -143092,34in Ultrawide Monitor,1,379.99,01/02/19 09:03,"43 14th St, San Francisco, CA 94016" -143093,LG Dryer,1,600.0,01/10/19 13:50,"606 5th St, Austin, TX 73301" -143094,27in FHD Monitor,1,149.99,01/20/19 10:04,"514 Main St, Austin, TX 73301" -143095,Lightning Charging Cable,1,14.95,01/22/19 12:09,"848 Cedar St, Los Angeles, CA 90001" -143095,Apple Airpods Headphones,1,150,01/22/19 12:09,"848 Cedar St, Los Angeles, CA 90001" -143096,LG Washing Machine,1,600.0,01/19/19 18:33,"89 Center St, Seattle, WA 98101" -143097,Wired Headphones,2,11.99,01/03/19 08:16,"102 11th St, San Francisco, CA 94016" -143098,AA Batteries (4-pack),2,3.84,01/04/19 17:29,"305 Center St, New York City, NY 10001" -143099,Wired Headphones,1,11.99,01/01/19 18:34,"51 Main St, Los Angeles, CA 90001" -143100,Apple Airpods Headphones,1,150,01/13/19 06:30,"139 10th St, San Francisco, CA 94016" -143101,USB-C Charging Cable,1,11.95,01/22/19 15:49,"808 Wilson St, Austin, TX 73301" -143102,27in FHD Monitor,1,149.99,01/30/19 12:10,"798 5th St, Los Angeles, CA 90001" -143103,AA Batteries (4-pack),1,3.84,01/07/19 12:14,"808 North St, Dallas, TX 75001" -143104,Lightning Charging Cable,1,14.95,01/23/19 18:31,"794 Walnut St, Los Angeles, CA 90001" -143105,Google Phone,1,600,01/17/19 13:01,"990 Adams St, Seattle, WA 98101" -143106,Bose SoundSport Headphones,1,99.99,01/16/19 23:07,"731 Willow St, San Francisco, CA 94016" -143107,Wired Headphones,1,11.99,01/16/19 23:55,"500 6th St, Portland, OR 97035" -143108,20in Monitor,1,109.99,01/04/19 11:37,"64 Maple St, Portland, OR 97035" -143109,iPhone,1,700,01/10/19 16:46,"118 Adams St, New York City, NY 10001" -143110,AAA Batteries (4-pack),2,2.99,01/20/19 09:49,"771 South St, San Francisco, CA 94016" -143111,iPhone,1,700,01/21/19 20:44,"641 Washington St, Seattle, WA 98101" -143111,Lightning Charging Cable,1,14.95,01/21/19 20:44,"641 Washington St, Seattle, WA 98101" -143111,Wired Headphones,1,11.99,01/21/19 20:44,"641 Washington St, Seattle, WA 98101" -143112,AAA Batteries (4-pack),1,2.99,01/10/19 00:04,"472 Willow St, Los Angeles, CA 90001" -143113,Vareebadd Phone,1,400,01/30/19 16:46,"941 Lincoln St, Boston, MA 02215" -143114,Bose SoundSport Headphones,1,99.99,01/22/19 17:23,"926 14th St, Portland, OR 97035" -143115,USB-C Charging Cable,1,11.95,01/02/19 00:24,"200 8th St, Boston, MA 02215" -143116,Lightning Charging Cable,1,14.95,01/09/19 21:33,"843 River St, Boston, MA 02215" -143117,USB-C Charging Cable,1,11.95,01/15/19 10:09,"135 Jefferson St, Los Angeles, CA 90001" -143118,Bose SoundSport Headphones,1,99.99,01/21/19 08:33,"415 Church St, San Francisco, CA 94016" -143119,AAA Batteries (4-pack),2,2.99,01/23/19 18:37,"133 Hickory St, Austin, TX 73301" -143120,AAA Batteries (4-pack),1,2.99,01/16/19 12:20,"365 West St, San Francisco, CA 94016" -143121,Wired Headphones,1,11.99,01/04/19 20:04,"171 Willow St, San Francisco, CA 94016" -143122,34in Ultrawide Monitor,1,379.99,01/17/19 16:43,"845 4th St, Portland, OR 97035" -143123,Flatscreen TV,1,300,01/16/19 08:03,"323 North St, Austin, TX 73301" -143124,Wired Headphones,1,11.99,01/09/19 08:08,"601 Forest St, San Francisco, CA 94016" -143125,AAA Batteries (4-pack),1,2.99,01/15/19 21:42,"184 4th St, Atlanta, GA 30301" -143126,AAA Batteries (4-pack),1,2.99,01/04/19 15:11,"133 Main St, Dallas, TX 75001" -143127,LG Dryer,1,600.0,01/06/19 23:06,"748 Walnut St, San Francisco, CA 94016" -143128,Bose SoundSport Headphones,1,99.99,01/29/19 15:58,"149 River St, Atlanta, GA 30301" -143129,27in FHD Monitor,1,149.99,01/14/19 18:54,"311 6th St, San Francisco, CA 94016" -143130,27in FHD Monitor,1,149.99,01/01/19 14:24,"140 8th St, Seattle, WA 98101" -143131,Apple Airpods Headphones,1,150,01/01/19 18:07,"997 Jefferson St, Portland, OR 97035" -143132,27in FHD Monitor,1,149.99,01/02/19 22:23,"107 Pine St, New York City, NY 10001" -143133,AA Batteries (4-pack),1,3.84,01/23/19 08:00,"871 Jackson St, Boston, MA 02215" -143134,USB-C Charging Cable,1,11.95,01/08/19 09:59,"22 Madison St, Los Angeles, CA 90001" -143135,Wired Headphones,1,11.99,01/22/19 01:21,"203 Hickory St, Boston, MA 02215" -143136,27in 4K Gaming Monitor,1,389.99,01/11/19 16:00,"546 Maple St, Seattle, WA 98101" -143137,Lightning Charging Cable,1,14.95,01/17/19 19:57,"252 14th St, Atlanta, GA 30301" -143138,AA Batteries (4-pack),1,3.84,01/29/19 14:07,"358 Cedar St, Los Angeles, CA 90001" -143139,AAA Batteries (4-pack),1,2.99,01/05/19 23:13,"871 Center St, San Francisco, CA 94016" -143140,iPhone,1,700,01/23/19 05:46,"227 Hill St, Atlanta, GA 30301" -143141,Apple Airpods Headphones,1,150,01/27/19 13:35,"178 Sunset St, Los Angeles, CA 90001" -143142,Wired Headphones,1,11.99,01/13/19 10:27,"436 Lincoln St, Dallas, TX 75001" -143142,ThinkPad Laptop,1,999.99,01/13/19 10:27,"436 Lincoln St, Dallas, TX 75001" -143143,LG Dryer,1,600.0,01/19/19 13:44,"501 Center St, New York City, NY 10001" -143143,Flatscreen TV,1,300,01/19/19 13:44,"501 Center St, New York City, NY 10001" -143144,27in 4K Gaming Monitor,1,389.99,01/04/19 17:10,"337 Madison St, New York City, NY 10001" -143145,AA Batteries (4-pack),1,3.84,01/11/19 23:17,"223 Wilson St, Dallas, TX 75001" -143146,Google Phone,1,600,01/09/19 17:01,"385 Meadow St, New York City, NY 10001" -143146,USB-C Charging Cable,1,11.95,01/09/19 17:01,"385 Meadow St, New York City, NY 10001" -143147,ThinkPad Laptop,1,999.99,01/01/19 21:28,"331 Sunset St, Los Angeles, CA 90001" -143148,27in FHD Monitor,1,149.99,01/28/19 16:59,"277 Jackson St, San Francisco, CA 94016" -143149,27in FHD Monitor,1,149.99,01/25/19 18:27,"207 13th St, Atlanta, GA 30301" -143150,Apple Airpods Headphones,1,150,01/20/19 12:39,"533 Main St, Seattle, WA 98101" -143151,AAA Batteries (4-pack),1,2.99,01/25/19 05:31,"405 Cherry St, Los Angeles, CA 90001" -143152,27in FHD Monitor,1,149.99,01/30/19 00:32,"13 Spruce St, Los Angeles, CA 90001" -143153,AA Batteries (4-pack),1,3.84,01/28/19 18:56,"69 Dogwood St, Dallas, TX 75001" -143154,Lightning Charging Cable,1,14.95,01/19/19 22:10,"362 Sunset St, New York City, NY 10001" -143155,27in FHD Monitor,1,149.99,01/11/19 19:31,"855 Maple St, San Francisco, CA 94016" -143156,27in FHD Monitor,1,149.99,01/27/19 22:52,"92 4th St, Los Angeles, CA 90001" -143157,27in FHD Monitor,1,149.99,01/29/19 15:15,"725 Cedar St, New York City, NY 10001" -143158,USB-C Charging Cable,1,11.95,01/20/19 03:28,"453 Ridge St, Boston, MA 02215" -143159,AAA Batteries (4-pack),3,2.99,01/20/19 19:15,"409 13th St, New York City, NY 10001" -143160,ThinkPad Laptop,1,999.99,01/28/19 09:07,"887 Pine St, Boston, MA 02215" -143161,AA Batteries (4-pack),1,3.84,01/02/19 08:47,"938 11th St, San Francisco, CA 94016" -143162,Bose SoundSport Headphones,1,99.99,01/24/19 20:33,"807 Meadow St, San Francisco, CA 94016" -143163,Bose SoundSport Headphones,1,99.99,01/27/19 14:13,"798 Main St, Boston, MA 02215" -143164,Lightning Charging Cable,1,14.95,01/11/19 00:28,"462 Highland St, New York City, NY 10001" -143165,Lightning Charging Cable,1,14.95,01/29/19 17:12,"327 Cherry St, Austin, TX 73301" -143166,34in Ultrawide Monitor,1,379.99,01/08/19 14:32,"939 10th St, Los Angeles, CA 90001" -143167,34in Ultrawide Monitor,1,379.99,01/27/19 22:19,"640 Dogwood St, San Francisco, CA 94016" -143168,AAA Batteries (4-pack),1,2.99,01/08/19 18:22,"141 Jackson St, Boston, MA 02215" -143169,20in Monitor,1,109.99,01/28/19 16:41,"980 13th St, Los Angeles, CA 90001" -143170,Apple Airpods Headphones,1,150,01/19/19 17:27,"425 River St, San Francisco, CA 94016" -143171,34in Ultrawide Monitor,1,379.99,01/16/19 19:37,"109 Forest St, Portland, OR 97035" -143172,USB-C Charging Cable,1,11.95,01/02/19 23:32,"544 Cherry St, San Francisco, CA 94016" -143173,27in FHD Monitor,1,149.99,01/30/19 18:51,"432 Madison St, Dallas, TX 75001" -143174,USB-C Charging Cable,1,11.95,01/05/19 13:15,"400 Willow St, New York City, NY 10001" -143175,ThinkPad Laptop,1,999.99,01/30/19 12:38,"741 Sunset St, Los Angeles, CA 90001" -143176,Wired Headphones,1,11.99,01/17/19 08:52,"885 10th St, Los Angeles, CA 90001" -143177,Wired Headphones,1,11.99,01/12/19 22:01,"983 12th St, San Francisco, CA 94016" -143178,Wired Headphones,1,11.99,01/10/19 13:13,"662 8th St, Los Angeles, CA 90001" -143179,Wired Headphones,1,11.99,01/02/19 10:25,"919 12th St, San Francisco, CA 94016" -143180,USB-C Charging Cable,1,11.95,01/25/19 06:26,"866 Chestnut St, San Francisco, CA 94016" -143181,27in FHD Monitor,1,149.99,01/02/19 23:06,"600 Cherry St, Boston, MA 02215" -143182,27in FHD Monitor,1,149.99,01/03/19 20:21,"548 Johnson St, Seattle, WA 98101" -143183,Lightning Charging Cable,2,14.95,01/03/19 13:10,"484 West St, New York City, NY 10001" -143184,Lightning Charging Cable,1,14.95,01/03/19 11:07,"296 Ridge St, Los Angeles, CA 90001" -143185,Apple Airpods Headphones,1,150,01/05/19 18:58,"791 Pine St, Boston, MA 02215" -143186,27in 4K Gaming Monitor,1,389.99,01/07/19 00:15,"432 Highland St, Dallas, TX 75001" -143187,Google Phone,1,600,01/24/19 10:44,"304 Hickory St, San Francisco, CA 94016" -143188,27in 4K Gaming Monitor,1,389.99,01/19/19 21:41,"964 9th St, New York City, NY 10001" -143189,27in FHD Monitor,1,149.99,01/15/19 16:18,"210 Jackson St, Austin, TX 73301" -143190,Wired Headphones,1,11.99,01/09/19 21:11,"37 Meadow St, San Francisco, CA 94016" -143191,AAA Batteries (4-pack),2,2.99,01/17/19 12:01,"396 14th St, Dallas, TX 75001" -143192,AAA Batteries (4-pack),1,2.99,01/16/19 12:37,"257 12th St, San Francisco, CA 94016" -143193,20in Monitor,1,109.99,01/24/19 07:33,"737 Lincoln St, San Francisco, CA 94016" -143194,Lightning Charging Cable,1,14.95,01/21/19 21:11,"556 Park St, New York City, NY 10001" -143195,AAA Batteries (4-pack),1,2.99,01/19/19 10:03,"147 River St, San Francisco, CA 94016" -143196,Vareebadd Phone,1,400,01/20/19 18:45,"670 Wilson St, New York City, NY 10001" -143197,Bose SoundSport Headphones,1,99.99,01/07/19 10:07,"15 4th St, Boston, MA 02215" -143198,AA Batteries (4-pack),1,3.84,01/05/19 16:40,"820 Walnut St, Atlanta, GA 30301" -143199,Bose SoundSport Headphones,1,99.99,01/30/19 07:49,"321 5th St, San Francisco, CA 94016" -143200,Macbook Pro Laptop,1,1700,01/24/19 18:55,"170 5th St, Dallas, TX 75001" -143201,Google Phone,1,600,01/09/19 13:22,"166 7th St, Portland, OR 97035" -143202,ThinkPad Laptop,1,999.99,01/01/19 18:39,"129 Walnut St, Los Angeles, CA 90001" -143203,Wired Headphones,1,11.99,01/19/19 16:51,"148 2nd St, Dallas, TX 75001" -143204,AA Batteries (4-pack),2,3.84,01/15/19 15:16,"465 River St, San Francisco, CA 94016" -143205,AAA Batteries (4-pack),4,2.99,01/24/19 21:40,"111 Main St, Atlanta, GA 30301" -143206,AA Batteries (4-pack),1,3.84,01/05/19 07:57,"525 11th St, New York City, NY 10001" -143207,AA Batteries (4-pack),1,3.84,01/15/19 23:54,"254 Chestnut St, Dallas, TX 75001" -143208,Wired Headphones,1,11.99,01/28/19 12:10,"987 Spruce St, Los Angeles, CA 90001" -143209,20in Monitor,1,109.99,01/25/19 22:21,"373 Chestnut St, San Francisco, CA 94016" -143210,Wired Headphones,1,11.99,01/04/19 10:42,"245 Washington St, Los Angeles, CA 90001" -143211,AAA Batteries (4-pack),1,2.99,01/05/19 11:08,"608 Church St, Atlanta, GA 30301" -143211,Apple Airpods Headphones,1,150,01/05/19 11:08,"608 Church St, Atlanta, GA 30301" -143212,Lightning Charging Cable,1,14.95,01/22/19 19:40,"889 Pine St, Boston, MA 02215" -143213,Lightning Charging Cable,1,14.95,01/29/19 05:33,"345 Lincoln St, Boston, MA 02215" -143214,AAA Batteries (4-pack),2,2.99,01/03/19 20:52,"776 Forest St, Boston, MA 02215" -143215,AAA Batteries (4-pack),1,2.99,01/26/19 15:32,"280 Lakeview St, Seattle, WA 98101" -143216,AAA Batteries (4-pack),1,2.99,01/13/19 07:00,"166 River St, Seattle, WA 98101" -143217,27in 4K Gaming Monitor,1,389.99,01/06/19 17:05,"331 North St, Atlanta, GA 30301" -143218,Lightning Charging Cable,1,14.95,01/07/19 12:15,"192 Hickory St, Atlanta, GA 30301" -143219,Apple Airpods Headphones,1,150,01/26/19 17:31,"693 Dogwood St, Los Angeles, CA 90001" -143220,Bose SoundSport Headphones,1,99.99,01/24/19 22:40,"387 Church St, San Francisco, CA 94016" -143221,AAA Batteries (4-pack),1,2.99,01/25/19 17:32,"106 Sunset St, New York City, NY 10001" -143222,AA Batteries (4-pack),1,3.84,01/22/19 09:16,"975 Elm St, San Francisco, CA 94016" -143223,Bose SoundSport Headphones,1,99.99,01/16/19 10:05,"757 Elm St, Dallas, TX 75001" -143224,AA Batteries (4-pack),1,3.84,01/08/19 17:04,"731 Lake St, Portland, OR 97035" -143225,AAA Batteries (4-pack),2,2.99,01/27/19 11:28,"229 North St, New York City, NY 10001" -143226,iPhone,1,700,01/05/19 22:46,"612 5th St, Los Angeles, CA 90001" -143227,USB-C Charging Cable,1,11.95,01/08/19 10:53,"326 Maple St, San Francisco, CA 94016" -143228,USB-C Charging Cable,1,11.95,01/04/19 09:08,"389 Hickory St, San Francisco, CA 94016" -143229,USB-C Charging Cable,2,11.95,01/19/19 12:16,"147 1st St, Seattle, WA 98101" -143230,USB-C Charging Cable,1,11.95,01/28/19 06:38,"288 10th St, Los Angeles, CA 90001" -143231,USB-C Charging Cable,1,11.95,01/19/19 00:26,"372 4th St, Los Angeles, CA 90001" -143232,USB-C Charging Cable,1,11.95,01/23/19 20:53,"910 6th St, Seattle, WA 98101" -143233,27in FHD Monitor,1,149.99,01/17/19 17:16,"692 Main St, Los Angeles, CA 90001" -143234,AAA Batteries (4-pack),1,2.99,01/25/19 13:50,"135 Church St, Austin, TX 73301" -143235,Wired Headphones,1,11.99,01/06/19 04:24,"647 4th St, San Francisco, CA 94016" -143236,Apple Airpods Headphones,1,150,01/22/19 11:13,"787 5th St, San Francisco, CA 94016" -143237,27in FHD Monitor,1,149.99,01/12/19 13:23,"261 Wilson St, New York City, NY 10001" -143238,AA Batteries (4-pack),1,3.84,01/21/19 08:56,"630 Madison St, Atlanta, GA 30301" -143239,USB-C Charging Cable,1,11.95,01/03/19 13:02,"263 Elm St, Dallas, TX 75001" -143240,iPhone,1,700,01/08/19 21:04,"131 River St, Dallas, TX 75001" -143241,Wired Headphones,1,11.99,01/11/19 11:39,"234 Church St, Austin, TX 73301" -143242,Bose SoundSport Headphones,1,99.99,01/18/19 10:00,"449 South St, San Francisco, CA 94016" -143243,iPhone,1,700,01/10/19 19:02,"550 Cherry St, San Francisco, CA 94016" -143243,Lightning Charging Cable,1,14.95,01/10/19 19:02,"550 Cherry St, San Francisco, CA 94016" -143243,Wired Headphones,1,11.99,01/10/19 19:02,"550 Cherry St, San Francisco, CA 94016" -143244,27in 4K Gaming Monitor,1,389.99,01/16/19 11:48,"137 Dogwood St, New York City, NY 10001" -143245,Bose SoundSport Headphones,1,99.99,01/30/19 18:11,"559 North St, Los Angeles, CA 90001" -143246,Bose SoundSport Headphones,1,99.99,01/15/19 08:48,"932 Maple St, Portland, OR 97035" -143247,Bose SoundSport Headphones,1,99.99,01/23/19 18:50,"391 Adams St, New York City, NY 10001" -143248,Bose SoundSport Headphones,1,99.99,01/20/19 13:20,"90 Highland St, New York City, NY 10001" -143249,ThinkPad Laptop,1,999.99,01/28/19 22:04,"839 Ridge St, San Francisco, CA 94016" -143250,AAA Batteries (4-pack),1,2.99,01/05/19 14:29,"725 12th St, Los Angeles, CA 90001" -143251,Bose SoundSport Headphones,1,99.99,01/08/19 19:34,"531 9th St, Seattle, WA 98101" -143252,Lightning Charging Cable,1,14.95,01/03/19 17:27,"811 Forest St, San Francisco, CA 94016" -143253,USB-C Charging Cable,1,11.95,01/26/19 13:19,"378 Willow St, Dallas, TX 75001" -143254,Bose SoundSport Headphones,1,99.99,01/05/19 06:04,"598 4th St, Boston, MA 02215" -143255,USB-C Charging Cable,1,11.95,01/28/19 23:04,"133 2nd St, Portland, OR 97035" -143256,Bose SoundSport Headphones,1,99.99,01/04/19 12:23,"722 10th St, San Francisco, CA 94016" -143257,Apple Airpods Headphones,1,150,01/16/19 11:29,"292 Maple St, Los Angeles, CA 90001" -143258,USB-C Charging Cable,1,11.95,01/29/19 21:20,"636 7th St, Boston, MA 02215" -143259,Google Phone,1,600,01/19/19 13:39,"704 Jackson St, Seattle, WA 98101" -143259,USB-C Charging Cable,1,11.95,01/19/19 13:39,"704 Jackson St, Seattle, WA 98101" -143260,Bose SoundSport Headphones,1,99.99,01/24/19 18:00,"635 Madison St, Seattle, WA 98101" -143261,27in FHD Monitor,1,149.99,01/19/19 11:39,"62 Sunset St, San Francisco, CA 94016" -143262,Bose SoundSport Headphones,1,99.99,01/07/19 19:53,"780 13th St, New York City, NY 10001" -143263,Wired Headphones,2,11.99,01/06/19 18:19,"672 Lakeview St, San Francisco, CA 94016" -143264,AAA Batteries (4-pack),1,2.99,01/20/19 17:34,"381 Wilson St, San Francisco, CA 94016" -143265,Lightning Charging Cable,1,14.95,01/12/19 16:57,"820 River St, Boston, MA 02215" -143266,Lightning Charging Cable,1,14.95,01/09/19 09:08,"806 West St, New York City, NY 10001" -143267,27in 4K Gaming Monitor,1,389.99,01/17/19 17:41,"660 6th St, Boston, MA 02215" -143268,27in 4K Gaming Monitor,1,389.99,01/07/19 10:28,"744 10th St, Atlanta, GA 30301" -143269,20in Monitor,1,109.99,01/21/19 10:35,"108 Adams St, Boston, MA 02215" -143270,AAA Batteries (4-pack),2,2.99,01/29/19 11:18,"815 7th St, Dallas, TX 75001" -143271,Google Phone,1,600,01/20/19 19:00,"832 Willow St, San Francisco, CA 94016" -143271,Wired Headphones,1,11.99,01/20/19 19:00,"832 Willow St, San Francisco, CA 94016" -143272,Macbook Pro Laptop,1,1700,01/14/19 12:58,"526 Spruce St, San Francisco, CA 94016" -143273,USB-C Charging Cable,1,11.95,01/03/19 16:36,"303 9th St, Seattle, WA 98101" -143274,iPhone,1,700,01/21/19 19:08,"667 Forest St, San Francisco, CA 94016" -143275,Google Phone,1,600,01/17/19 00:39,"985 Elm St, New York City, NY 10001" -143275,USB-C Charging Cable,2,11.95,01/17/19 00:39,"985 Elm St, New York City, NY 10001" -143276,USB-C Charging Cable,1,11.95,01/15/19 23:17,"898 4th St, Atlanta, GA 30301" -143277,AA Batteries (4-pack),3,3.84,01/30/19 08:33,"990 Johnson St, Seattle, WA 98101" -143278,Wired Headphones,1,11.99,01/20/19 15:08,"228 Meadow St, Portland, ME 04101" -143279,iPhone,1,700,01/06/19 05:37,"488 Ridge St, Atlanta, GA 30301" -143280,Lightning Charging Cable,1,14.95,01/12/19 09:48,"20 Madison St, Seattle, WA 98101" -143281,ThinkPad Laptop,1,999.99,01/21/19 20:15,"262 2nd St, New York City, NY 10001" -143282,Apple Airpods Headphones,1,150,01/26/19 12:07,"121 Jefferson St, New York City, NY 10001" -143283,AAA Batteries (4-pack),1,2.99,01/22/19 22:58,"757 Lincoln St, Austin, TX 73301" -143284,AAA Batteries (4-pack),1,2.99,01/08/19 15:30,"579 Ridge St, Dallas, TX 75001" -143285,AAA Batteries (4-pack),1,2.99,01/11/19 10:57,"515 Dogwood St, San Francisco, CA 94016" -143286,Apple Airpods Headphones,1,150,01/11/19 01:00,"283 Main St, Austin, TX 73301" -143287,AAA Batteries (4-pack),1,2.99,01/12/19 17:20,"378 14th St, San Francisco, CA 94016" -143288,Vareebadd Phone,1,400,01/16/19 19:06,"587 Main St, San Francisco, CA 94016" -143289,AA Batteries (4-pack),2,3.84,01/03/19 19:24,"992 Main St, Los Angeles, CA 90001" -143290,Wired Headphones,1,11.99,01/11/19 09:57,"94 12th St, Los Angeles, CA 90001" -143291,Lightning Charging Cable,1,14.95,01/27/19 17:28,"559 Elm St, Los Angeles, CA 90001" -143292,Apple Airpods Headphones,1,150,01/06/19 23:39,"673 Wilson St, Los Angeles, CA 90001" -143293,Apple Airpods Headphones,1,150,01/26/19 13:47,"981 South St, Boston, MA 02215" -143294,Wired Headphones,1,11.99,01/24/19 10:16,"616 North St, San Francisco, CA 94016" -143295,Google Phone,1,600,01/12/19 18:07,"382 Hickory St, San Francisco, CA 94016" -143295,USB-C Charging Cable,1,11.95,01/12/19 18:07,"382 Hickory St, San Francisco, CA 94016" -143296,Bose SoundSport Headphones,1,99.99,01/19/19 21:40,"401 Cedar St, Dallas, TX 75001" -143297,Flatscreen TV,1,300,01/27/19 13:51,"260 South St, Los Angeles, CA 90001" -143298,USB-C Charging Cable,1,11.95,01/05/19 11:46,"5 Chestnut St, Portland, OR 97035" -143299,27in 4K Gaming Monitor,1,389.99,01/08/19 11:46,"297 Willow St, New York City, NY 10001" -143300,Wired Headphones,1,11.99,01/22/19 13:49,"950 Main St, Atlanta, GA 30301" -143301,USB-C Charging Cable,1,11.95,01/16/19 13:47,"645 Highland St, New York City, NY 10001" -143302,AA Batteries (4-pack),2,3.84,01/27/19 13:08,"934 Wilson St, San Francisco, CA 94016" -143303,AA Batteries (4-pack),1,3.84,01/19/19 06:33,"377 Washington St, San Francisco, CA 94016" -143304,USB-C Charging Cable,1,11.95,01/19/19 00:39,"231 Cedar St, Los Angeles, CA 90001" -143305,34in Ultrawide Monitor,1,379.99,01/22/19 15:14,"127 Lake St, Los Angeles, CA 90001" -143306,Bose SoundSport Headphones,1,99.99,01/18/19 14:24,"470 Willow St, Los Angeles, CA 90001" -143307,AA Batteries (4-pack),1,3.84,01/31/19 23:18,"509 Jackson St, San Francisco, CA 94016" -143308,USB-C Charging Cable,1,11.95,01/05/19 05:54,"567 West St, Los Angeles, CA 90001" -143309,Bose SoundSport Headphones,2,99.99,01/08/19 19:13,"703 14th St, New York City, NY 10001" -143310,USB-C Charging Cable,1,11.95,01/13/19 22:22,"295 Forest St, Seattle, WA 98101" -143311,USB-C Charging Cable,1,11.95,01/18/19 09:27,"969 Dogwood St, Boston, MA 02215" -143312,AA Batteries (4-pack),1,3.84,01/09/19 21:28,"579 10th St, San Francisco, CA 94016" -143313,Apple Airpods Headphones,1,150,01/09/19 00:39,"215 Forest St, Austin, TX 73301" -143314,USB-C Charging Cable,1,11.95,01/18/19 10:13,"201 Cherry St, San Francisco, CA 94016" -143315,USB-C Charging Cable,1,11.95,01/31/19 18:30,"399 Ridge St, Dallas, TX 75001" -143316,27in 4K Gaming Monitor,1,389.99,01/30/19 00:34,"351 Adams St, Seattle, WA 98101" -143317,USB-C Charging Cable,1,11.95,01/06/19 14:11,"850 5th St, Boston, MA 02215" -143318,20in Monitor,1,109.99,01/16/19 13:29,"887 Main St, San Francisco, CA 94016" -143319,AA Batteries (4-pack),1,3.84,01/14/19 08:23,"694 Lake St, San Francisco, CA 94016" -143320,Wired Headphones,1,11.99,01/28/19 18:51,"150 Church St, New York City, NY 10001" -143321,Apple Airpods Headphones,1,150,01/12/19 14:39,"94 Jefferson St, Portland, OR 97035" -143322,Flatscreen TV,1,300,01/20/19 22:18,"80 6th St, San Francisco, CA 94016" -143323,AAA Batteries (4-pack),1,2.99,01/23/19 09:48,"609 Church St, San Francisco, CA 94016" -143324,AAA Batteries (4-pack),1,2.99,01/18/19 16:09,"211 North St, Seattle, WA 98101" -143325,Apple Airpods Headphones,1,150,01/26/19 23:26,"463 Lakeview St, San Francisco, CA 94016" -143326,Vareebadd Phone,1,400,01/23/19 19:37,"258 Madison St, Los Angeles, CA 90001" -143326,USB-C Charging Cable,1,11.95,01/23/19 19:37,"258 Madison St, Los Angeles, CA 90001" -143327,Lightning Charging Cable,1,14.95,01/10/19 20:29,"379 Center St, Los Angeles, CA 90001" -143328,Wired Headphones,1,11.99,01/20/19 15:12,"370 Madison St, Seattle, WA 98101" -143329,Google Phone,1,600,01/16/19 19:50,"220 Meadow St, Los Angeles, CA 90001" -143330,Lightning Charging Cable,1,14.95,01/24/19 19:35,"557 Chestnut St, Boston, MA 02215" -143331,Wired Headphones,1,11.99,01/25/19 10:47,"966 West St, Seattle, WA 98101" -143332,Wired Headphones,1,11.99,01/19/19 01:21,"287 South St, Los Angeles, CA 90001" -143333,USB-C Charging Cable,1,11.95,01/21/19 10:15,"170 Center St, San Francisco, CA 94016" -143334,USB-C Charging Cable,1,11.95,01/23/19 20:11,"217 Chestnut St, Atlanta, GA 30301" -143335,Apple Airpods Headphones,1,150,01/15/19 09:20,"477 Meadow St, New York City, NY 10001" -143336,Wired Headphones,1,11.99,01/29/19 09:45,"540 Walnut St, San Francisco, CA 94016" -143337,AA Batteries (4-pack),1,3.84,01/06/19 17:25,"408 Washington St, Austin, TX 73301" -143338,27in FHD Monitor,1,149.99,01/29/19 11:16,"721 Dogwood St, Portland, OR 97035" -143339,AA Batteries (4-pack),1,3.84,01/25/19 09:15,"385 10th St, San Francisco, CA 94016" -143340,Lightning Charging Cable,1,14.95,01/01/19 16:46,"886 Cherry St, San Francisco, CA 94016" -143341,ThinkPad Laptop,1,999.99,01/16/19 10:35,"635 Hickory St, Los Angeles, CA 90001" -143342,USB-C Charging Cable,1,11.95,01/01/19 10:06,"524 Meadow St, Portland, OR 97035" -143343,AAA Batteries (4-pack),1,2.99,01/15/19 12:06,"419 Church St, San Francisco, CA 94016" -143344,AAA Batteries (4-pack),1,2.99,01/17/19 09:59,"470 Center St, Seattle, WA 98101" -143345,Macbook Pro Laptop,1,1700,01/21/19 00:36,"214 Willow St, San Francisco, CA 94016" -143346,27in FHD Monitor,1,149.99,01/03/19 20:11,"523 9th St, San Francisco, CA 94016" -143347,Apple Airpods Headphones,1,150,01/15/19 12:04,"637 7th St, Atlanta, GA 30301" -143348,Bose SoundSport Headphones,1,99.99,01/24/19 10:02,"871 14th St, Boston, MA 02215" -143349,AAA Batteries (4-pack),1,2.99,01/18/19 17:53,"688 1st St, Portland, OR 97035" -143350,Lightning Charging Cable,1,14.95,01/04/19 10:14,"795 Elm St, Austin, TX 73301" -143351,AA Batteries (4-pack),1,3.84,01/17/19 19:05,"892 Washington St, Seattle, WA 98101" -143352,27in FHD Monitor,1,149.99,01/18/19 13:14,"769 Chestnut St, Seattle, WA 98101" -143353,Wired Headphones,1,11.99,01/09/19 11:36,"867 Forest St, Dallas, TX 75001" -143354,Lightning Charging Cable,1,14.95,01/17/19 11:07,"319 Lakeview St, New York City, NY 10001" -143355,27in 4K Gaming Monitor,1,389.99,01/25/19 17:02,"195 4th St, Los Angeles, CA 90001" -143356,ThinkPad Laptop,1,999.99,01/04/19 22:38,"245 Center St, Dallas, TX 75001" -143357,AAA Batteries (4-pack),1,2.99,01/15/19 15:52,"538 9th St, Atlanta, GA 30301" -143357,27in 4K Gaming Monitor,1,389.99,01/15/19 15:52,"538 9th St, Atlanta, GA 30301" -143358,Apple Airpods Headphones,1,150,01/15/19 21:27,"640 Lake St, Los Angeles, CA 90001" -143359,AA Batteries (4-pack),1,3.84,01/22/19 21:12,"394 Johnson St, Austin, TX 73301" -143360,Bose SoundSport Headphones,1,99.99,01/31/19 22:36,"889 Park St, Los Angeles, CA 90001" -143361,AA Batteries (4-pack),2,3.84,01/26/19 20:10,"781 4th St, Boston, MA 02215" -143362,Bose SoundSport Headphones,1,99.99,01/13/19 10:48,"540 Hickory St, Boston, MA 02215" -143363,34in Ultrawide Monitor,1,379.99,01/22/19 11:13,"16 Washington St, Boston, MA 02215" -143364,USB-C Charging Cable,1,11.95,01/07/19 19:30,"935 1st St, San Francisco, CA 94016" -143365,Wired Headphones,1,11.99,01/02/19 11:47,"912 6th St, Portland, OR 97035" -143366,Flatscreen TV,1,300,01/02/19 19:10,"515 Park St, Seattle, WA 98101" -143367,Wired Headphones,1,11.99,01/23/19 09:49,"975 Washington St, San Francisco, CA 94016" -143368,Apple Airpods Headphones,1,150,01/11/19 22:01,"921 Meadow St, Austin, TX 73301" -143369,20in Monitor,1,109.99,01/20/19 20:18,"226 Chestnut St, New York City, NY 10001" -143370,ThinkPad Laptop,1,999.99,01/15/19 23:39,"341 Main St, New York City, NY 10001" -143371,20in Monitor,1,109.99,01/05/19 12:20,"607 7th St, Seattle, WA 98101" -143372,Apple Airpods Headphones,1,150,01/18/19 12:10,"865 Main St, San Francisco, CA 94016" -143373,iPhone,1,700,01/14/19 12:12,"6 Ridge St, San Francisco, CA 94016" -143374,AA Batteries (4-pack),1,3.84,01/19/19 21:26,"61 Main St, Boston, MA 02215" -143375,Flatscreen TV,1,300,01/21/19 15:21,"892 Highland St, Boston, MA 02215" -143376,Bose SoundSport Headphones,1,99.99,01/02/19 18:33,"619 Cedar St, San Francisco, CA 94016" -143377,AAA Batteries (4-pack),1,2.99,01/23/19 19:15,"840 1st St, Dallas, TX 75001" -143378,Bose SoundSport Headphones,1,99.99,01/02/19 14:04,"639 9th St, Boston, MA 02215" -143378,AA Batteries (4-pack),1,3.84,01/02/19 14:04,"639 9th St, Boston, MA 02215" -143379,34in Ultrawide Monitor,1,379.99,01/12/19 19:01,"651 Lake St, San Francisco, CA 94016" -143379,Lightning Charging Cable,1,14.95,01/12/19 19:01,"651 Lake St, San Francisco, CA 94016" -143380,Lightning Charging Cable,1,14.95,01/05/19 08:36,"824 4th St, San Francisco, CA 94016" -143381,Lightning Charging Cable,1,14.95,01/09/19 03:38,"458 Spruce St, Los Angeles, CA 90001" -143382,Lightning Charging Cable,1,14.95,01/22/19 13:37,"414 4th St, Austin, TX 73301" -143383,iPhone,1,700,01/27/19 21:23,"767 Johnson St, Dallas, TX 75001" -143384,Lightning Charging Cable,1,14.95,01/01/19 17:13,"4 13th St, Dallas, TX 75001" -143385,Wired Headphones,1,11.99,01/12/19 13:43,"817 Hill St, Boston, MA 02215" -143386,AAA Batteries (4-pack),2,2.99,01/05/19 17:49,"741 River St, Atlanta, GA 30301" -143387,Wired Headphones,1,11.99,01/08/19 20:55,"420 Jackson St, San Francisco, CA 94016" -143388,Wired Headphones,1,11.99,01/14/19 10:53,"90 2nd St, New York City, NY 10001" -143389,Apple Airpods Headphones,1,150,01/04/19 11:04,"616 Cedar St, Dallas, TX 75001" -143390,Lightning Charging Cable,2,14.95,01/02/19 15:58,"656 Madison St, San Francisco, CA 94016" -143391,Flatscreen TV,1,300,01/31/19 13:34,"240 Lakeview St, Portland, OR 97035" -143392,USB-C Charging Cable,1,11.95,01/16/19 22:57,"507 Cedar St, Austin, TX 73301" -143393,Apple Airpods Headphones,1,150,01/14/19 03:24,"197 Cedar St, Seattle, WA 98101" -143393,USB-C Charging Cable,1,11.95,01/14/19 03:24,"197 Cedar St, Seattle, WA 98101" -143394,Wired Headphones,1,11.99,01/01/19 14:32,"758 Elm St, Portland, OR 97035" -143395,27in FHD Monitor,1,149.99,01/19/19 14:28,"909 13th St, Atlanta, GA 30301" -143396,USB-C Charging Cable,1,11.95,01/03/19 11:54,"177 West St, Atlanta, GA 30301" -143397,USB-C Charging Cable,1,11.95,01/06/19 12:47,"580 Forest St, Boston, MA 02215" -143398,USB-C Charging Cable,1,11.95,01/12/19 11:30,"668 Walnut St, Portland, OR 97035" -143399,Vareebadd Phone,1,400,01/21/19 13:01,"924 Dogwood St, Los Angeles, CA 90001" -143400,AAA Batteries (4-pack),1,2.99,01/16/19 12:05,"841 Spruce St, San Francisco, CA 94016" -143401,USB-C Charging Cable,1,11.95,01/06/19 10:25,"389 Jefferson St, San Francisco, CA 94016" -143402,USB-C Charging Cable,1,11.95,01/08/19 10:58,"996 Spruce St, Los Angeles, CA 90001" -143403,LG Washing Machine,1,600.0,01/18/19 14:10,"133 12th St, Seattle, WA 98101" -143404,Apple Airpods Headphones,1,150,01/21/19 12:15,"869 South St, Dallas, TX 75001" -143405,Lightning Charging Cable,2,14.95,01/02/19 13:50,"359 Cherry St, Boston, MA 02215" -143406,Lightning Charging Cable,1,14.95,01/11/19 18:01,"725 Hill St, Portland, ME 04101" -143407,Apple Airpods Headphones,1,150,01/09/19 20:50,"945 8th St, Los Angeles, CA 90001" -143408,Wired Headphones,1,11.99,01/02/19 14:19,"788 12th St, Los Angeles, CA 90001" -143409,Lightning Charging Cable,1,14.95,01/15/19 22:10,"665 Center St, Los Angeles, CA 90001" -143410,iPhone,1,700,01/02/19 11:13,"245 8th St, Portland, OR 97035" -143411,iPhone,1,700,01/23/19 16:15,"889 Maple St, New York City, NY 10001" -143412,USB-C Charging Cable,1,11.95,01/01/19 16:23,"662 4th St, New York City, NY 10001" -143413,Lightning Charging Cable,1,14.95,01/03/19 18:34,"997 Forest St, Portland, ME 04101" -143414,Lightning Charging Cable,1,14.95,01/04/19 06:45,"283 Johnson St, San Francisco, CA 94016" -143415,AAA Batteries (4-pack),1,2.99,01/01/19 20:28,"907 2nd St, Portland, OR 97035" -143416,AAA Batteries (4-pack),7,2.99,01/24/19 19:58,"927 Jefferson St, New York City, NY 10001" -143417,AAA Batteries (4-pack),2,2.99,01/31/19 15:54,"340 Wilson St, Austin, TX 73301" -143418,Bose SoundSport Headphones,1,99.99,01/17/19 11:24,"480 West St, Dallas, TX 75001" -143419,Lightning Charging Cable,1,14.95,01/07/19 08:56,"29 Hickory St, Los Angeles, CA 90001" -143420,27in 4K Gaming Monitor,1,389.99,01/09/19 03:54,"797 Maple St, Boston, MA 02215" -143421,iPhone,1,700,01/26/19 08:37,"815 Forest St, Austin, TX 73301" -143422,Wired Headphones,1,11.99,01/05/19 21:52,"782 Dogwood St, Atlanta, GA 30301" -143423,Apple Airpods Headphones,1,150,01/19/19 20:36,"946 Washington St, Boston, MA 02215" -143424,Lightning Charging Cable,1,14.95,01/19/19 20:03,"947 12th St, Austin, TX 73301" -143425,Vareebadd Phone,1,400,01/22/19 20:10,"204 Adams St, Seattle, WA 98101" -143426,USB-C Charging Cable,2,11.95,01/25/19 19:04,"610 2nd St, New York City, NY 10001" -143427,Apple Airpods Headphones,1,150,01/14/19 16:06,"460 Wilson St, Atlanta, GA 30301" -143427,ThinkPad Laptop,1,999.99,01/14/19 16:06,"460 Wilson St, Atlanta, GA 30301" -143428,AA Batteries (4-pack),3,3.84,01/27/19 14:32,"536 10th St, Boston, MA 02215" -143429,27in FHD Monitor,1,149.99,01/12/19 16:46,"489 Ridge St, Portland, OR 97035" -143430,34in Ultrawide Monitor,1,379.99,01/16/19 14:24,"756 1st St, Dallas, TX 75001" -143431,AA Batteries (4-pack),1,3.84,01/25/19 21:32,"815 13th St, San Francisco, CA 94016" -143432,iPhone,1,700,01/06/19 00:44,"794 South St, New York City, NY 10001" -143433,Bose SoundSport Headphones,1,99.99,01/05/19 14:40,"750 8th St, Boston, MA 02215" -143434,iPhone,1,700,01/17/19 21:00,"118 11th St, Seattle, WA 98101" -143435,27in 4K Gaming Monitor,1,389.99,01/18/19 02:05,"971 Lake St, Seattle, WA 98101" -143436,Google Phone,1,600,01/21/19 14:34,"405 Spruce St, New York City, NY 10001" -143436,USB-C Charging Cable,2,11.95,01/21/19 14:34,"405 Spruce St, New York City, NY 10001" -143437,27in FHD Monitor,1,149.99,01/16/19 06:43,"525 5th St, Atlanta, GA 30301" -143438,Apple Airpods Headphones,1,150,01/21/19 22:17,"794 8th St, Boston, MA 02215" -143439,Google Phone,1,600,01/18/19 13:55,"173 Dogwood St, San Francisco, CA 94016" -143439,Wired Headphones,1,11.99,01/18/19 13:55,"173 Dogwood St, San Francisco, CA 94016" -143440,Wired Headphones,1,11.99,01/20/19 17:24,"226 1st St, Los Angeles, CA 90001" -143441,34in Ultrawide Monitor,1,379.99,01/08/19 15:39,"462 Washington St, Portland, OR 97035" -143442,Flatscreen TV,1,300,01/05/19 13:26,"145 2nd St, Portland, OR 97035" -143443,AAA Batteries (4-pack),1,2.99,01/29/19 22:04,"492 2nd St, Los Angeles, CA 90001" -143444,Lightning Charging Cable,1,14.95,01/11/19 19:11,"512 2nd St, Boston, MA 02215" -143445,AA Batteries (4-pack),1,3.84,01/02/19 17:58,"112 Washington St, Dallas, TX 75001" -143446,Lightning Charging Cable,1,14.95,01/28/19 08:06,"868 Walnut St, Los Angeles, CA 90001" -143447,USB-C Charging Cable,1,11.95,01/06/19 21:04,"77 Maple St, New York City, NY 10001" -143448,20in Monitor,1,109.99,01/09/19 13:32,"802 Main St, San Francisco, CA 94016" -143449,ThinkPad Laptop,1,999.99,01/27/19 11:55,"117 West St, Seattle, WA 98101" -143450,Bose SoundSport Headphones,1,99.99,01/31/19 16:16,"424 Walnut St, San Francisco, CA 94016" -143451,ThinkPad Laptop,1,999.99,01/08/19 16:27,"1 Center St, San Francisco, CA 94016" -143452,Lightning Charging Cable,1,14.95,01/03/19 18:27,"676 Spruce St, San Francisco, CA 94016" -143453,USB-C Charging Cable,1,11.95,01/22/19 05:54,"473 Willow St, New York City, NY 10001" -143454,27in 4K Gaming Monitor,1,389.99,01/12/19 14:24,"454 5th St, Boston, MA 02215" -143455,AAA Batteries (4-pack),1,2.99,01/22/19 21:07,"823 14th St, San Francisco, CA 94016" -143455,Flatscreen TV,1,300,01/22/19 21:07,"823 14th St, San Francisco, CA 94016" -143456,USB-C Charging Cable,1,11.95,01/16/19 11:15,"54 Washington St, Portland, OR 97035" -143457,USB-C Charging Cable,1,11.95,01/20/19 21:31,"185 Church St, Los Angeles, CA 90001" -143458,Wired Headphones,1,11.99,01/05/19 09:27,"359 Highland St, Dallas, TX 75001" -143459,20in Monitor,1,109.99,01/06/19 21:48,"209 Lakeview St, Dallas, TX 75001" -143460,20in Monitor,1,109.99,01/21/19 00:14,"493 6th St, Portland, OR 97035" -143461,ThinkPad Laptop,1,999.99,01/20/19 23:02,"311 Jackson St, Los Angeles, CA 90001" -143462,Lightning Charging Cable,1,14.95,01/19/19 23:54,"341 Jefferson St, Los Angeles, CA 90001" -143463,USB-C Charging Cable,1,11.95,01/13/19 14:58,"79 13th St, Dallas, TX 75001" -143464,USB-C Charging Cable,1,11.95,01/07/19 14:41,"521 Spruce St, Seattle, WA 98101" -143465,AA Batteries (4-pack),1,3.84,01/14/19 19:42,"194 6th St, San Francisco, CA 94016" -143466,ThinkPad Laptop,1,999.99,01/12/19 20:27,"140 Chestnut St, San Francisco, CA 94016" -143467,27in FHD Monitor,1,149.99,01/11/19 18:41,"916 North St, Seattle, WA 98101" -143468,27in FHD Monitor,1,149.99,01/10/19 21:26,"434 Main St, New York City, NY 10001" -143469,Wired Headphones,1,11.99,01/05/19 08:57,"552 Walnut St, New York City, NY 10001" -143470,Wired Headphones,1,11.99,01/25/19 19:01,"119 Sunset St, Los Angeles, CA 90001" -143471,AA Batteries (4-pack),1,3.84,01/11/19 21:52,"179 Spruce St, San Francisco, CA 94016" -143472,27in FHD Monitor,1,149.99,01/02/19 10:15,"759 Walnut St, Los Angeles, CA 90001" -143473,Wired Headphones,1,11.99,01/12/19 05:38,"388 Meadow St, Seattle, WA 98101" -143474,27in 4K Gaming Monitor,1,389.99,01/26/19 08:33,"801 Jefferson St, Atlanta, GA 30301" -143475,iPhone,1,700,01/17/19 14:39,"501 Center St, Portland, ME 04101" -143476,Apple Airpods Headphones,1,150,01/19/19 19:23,"145 11th St, Los Angeles, CA 90001" -143477,27in 4K Gaming Monitor,1,389.99,01/04/19 11:55,"187 1st St, Los Angeles, CA 90001" -143478,AAA Batteries (4-pack),2,2.99,01/13/19 14:05,"91 Maple St, Dallas, TX 75001" -143479,27in FHD Monitor,1,149.99,01/07/19 17:42,"800 Madison St, New York City, NY 10001" -143480,Macbook Pro Laptop,1,1700,01/07/19 11:25,"252 Adams St, Boston, MA 02215" -143481,AA Batteries (4-pack),1,3.84,01/27/19 22:34,"104 Madison St, Los Angeles, CA 90001" -143482,USB-C Charging Cable,1,11.95,01/24/19 08:07,"238 Cedar St, New York City, NY 10001" -143483,Vareebadd Phone,1,400,01/23/19 17:32,"727 11th St, San Francisco, CA 94016" -143484,Lightning Charging Cable,1,14.95,01/01/19 23:07,"630 Adams St, New York City, NY 10001" -143485,USB-C Charging Cable,1,11.95,01/27/19 20:26,"611 11th St, San Francisco, CA 94016" -143486,Lightning Charging Cable,1,14.95,01/22/19 18:39,"476 Madison St, New York City, NY 10001" -143487,Wired Headphones,1,11.99,01/16/19 18:03,"632 Main St, Seattle, WA 98101" -143488,Google Phone,1,600,01/10/19 18:34,"32 Johnson St, San Francisco, CA 94016" -143489,Wired Headphones,1,11.99,01/24/19 19:12,"622 Forest St, San Francisco, CA 94016" -143490,Flatscreen TV,1,300,01/04/19 08:04,"509 River St, Boston, MA 02215" -143491,AA Batteries (4-pack),1,3.84,01/10/19 21:48,"80 River St, Dallas, TX 75001" -143492,Apple Airpods Headphones,1,150,01/07/19 09:00,"588 1st St, San Francisco, CA 94016" -143493,USB-C Charging Cable,1,11.95,01/30/19 06:47,"978 Sunset St, Seattle, WA 98101" -143494,AAA Batteries (4-pack),2,2.99,01/18/19 23:24,"372 9th St, Dallas, TX 75001" -143495,Apple Airpods Headphones,1,150,01/14/19 17:10,"166 Walnut St, San Francisco, CA 94016" -143496,Wired Headphones,2,11.99,01/03/19 19:19,"895 Park St, Seattle, WA 98101" -143497,Bose SoundSport Headphones,1,99.99,01/01/19 15:39,"661 Jefferson St, Austin, TX 73301" -143498,AA Batteries (4-pack),3,3.84,01/01/19 07:26,"428 Highland St, New York City, NY 10001" -143499,AAA Batteries (4-pack),2,2.99,01/15/19 13:30,"115 6th St, Los Angeles, CA 90001" -143500,34in Ultrawide Monitor,1,379.99,01/10/19 17:58,"158 Jefferson St, Boston, MA 02215" -143501,AA Batteries (4-pack),2,3.84,01/10/19 21:16,"654 West St, New York City, NY 10001" -143502,Apple Airpods Headphones,1,150,01/06/19 11:14,"266 11th St, Los Angeles, CA 90001" -143503,27in 4K Gaming Monitor,1,389.99,01/15/19 10:56,"496 Sunset St, Los Angeles, CA 90001" -143504,USB-C Charging Cable,1,11.95,01/10/19 16:06,"73 Church St, Seattle, WA 98101" -143505,AAA Batteries (4-pack),3,2.99,01/16/19 16:45,"153 Cedar St, New York City, NY 10001" -143506,AA Batteries (4-pack),1,3.84,01/01/19 16:50,"417 Park St, Los Angeles, CA 90001" -143507,Wired Headphones,1,11.99,01/02/19 01:06,"770 Walnut St, Atlanta, GA 30301" -143508,USB-C Charging Cable,2,11.95,01/02/19 20:17,"591 7th St, San Francisco, CA 94016" -143509,USB-C Charging Cable,1,11.95,01/11/19 19:39,"383 Johnson St, San Francisco, CA 94016" -143510,Wired Headphones,1,11.99,01/24/19 15:34,"176 Dogwood St, Dallas, TX 75001" -143511,USB-C Charging Cable,2,11.95,01/02/19 13:25,"789 Washington St, San Francisco, CA 94016" -143512,27in FHD Monitor,1,149.99,01/29/19 13:05,"90 Chestnut St, Seattle, WA 98101" -143513,Wired Headphones,1,11.99,01/09/19 23:02,"152 River St, Los Angeles, CA 90001" -143514,Flatscreen TV,1,300,01/11/19 01:51,"586 Forest St, Boston, MA 02215" -143515,AA Batteries (4-pack),1,3.84,01/28/19 15:42,"796 4th St, Portland, OR 97035" -143516,Bose SoundSport Headphones,1,99.99,01/11/19 21:03,"678 Main St, Atlanta, GA 30301" -143517,AA Batteries (4-pack),2,3.84,01/12/19 18:59,"69 Jefferson St, Portland, OR 97035" -143518,27in FHD Monitor,1,149.99,01/15/19 09:51,"780 5th St, Los Angeles, CA 90001" -143519,AAA Batteries (4-pack),1,2.99,01/25/19 12:27,"821 West St, Los Angeles, CA 90001" -143520,AAA Batteries (4-pack),1,2.99,01/03/19 18:35,"858 13th St, New York City, NY 10001" -143521,ThinkPad Laptop,1,999.99,01/17/19 19:16,"162 2nd St, Los Angeles, CA 90001" -143522,Bose SoundSport Headphones,1,99.99,01/04/19 12:03,"331 7th St, Atlanta, GA 30301" -143523,AA Batteries (4-pack),1,3.84,01/14/19 05:43,"561 Elm St, Los Angeles, CA 90001" -143524,USB-C Charging Cable,1,11.95,01/04/19 07:31,"914 Jefferson St, Atlanta, GA 30301" -143525,AA Batteries (4-pack),3,3.84,01/25/19 16:22,"822 12th St, San Francisco, CA 94016" -143526,iPhone,1,700,01/22/19 14:04,"395 1st St, Austin, TX 73301" -143526,Wired Headphones,1,11.99,01/22/19 14:04,"395 1st St, Austin, TX 73301" -143527,USB-C Charging Cable,1,11.95,01/19/19 11:47,"267 Elm St, New York City, NY 10001" -143528,Lightning Charging Cable,1,14.95,01/18/19 22:12,"935 West St, Los Angeles, CA 90001" -143529,AA Batteries (4-pack),1,3.84,01/17/19 11:27,"384 Park St, Boston, MA 02215" -143530,USB-C Charging Cable,1,11.95,01/17/19 14:01,"45 5th St, Los Angeles, CA 90001" -143531,Bose SoundSport Headphones,1,99.99,01/22/19 21:09,"677 7th St, New York City, NY 10001" -143532,USB-C Charging Cable,1,11.95,01/07/19 13:16,"607 Walnut St, Atlanta, GA 30301" -143533,USB-C Charging Cable,1,11.95,01/04/19 18:15,"117 4th St, Dallas, TX 75001" -143534,Apple Airpods Headphones,1,150,01/21/19 16:22,"486 Lakeview St, New York City, NY 10001" -143535,Lightning Charging Cable,1,14.95,01/12/19 18:32,"810 Highland St, Boston, MA 02215" -143536,27in 4K Gaming Monitor,1,389.99,01/13/19 16:15,"521 Hill St, Dallas, TX 75001" -143537,Bose SoundSport Headphones,1,99.99,01/03/19 11:19,"469 13th St, Dallas, TX 75001" -143538,Apple Airpods Headphones,1,150,01/30/19 19:19,"597 5th St, Los Angeles, CA 90001" -143539,Google Phone,1,600,01/08/19 00:26,"486 Park St, New York City, NY 10001" -143540,Apple Airpods Headphones,1,150,01/01/19 10:49,"463 Main St, Los Angeles, CA 90001" -143541,AA Batteries (4-pack),1,3.84,01/19/19 19:25,"365 Willow St, Boston, MA 02215" -143542,AAA Batteries (4-pack),1,2.99,01/09/19 18:44,"451 Dogwood St, Atlanta, GA 30301" -143543,USB-C Charging Cable,1,11.95,01/03/19 11:57,"341 Ridge St, Atlanta, GA 30301" -143544,Bose SoundSport Headphones,1,99.99,01/17/19 14:52,"171 Hickory St, Los Angeles, CA 90001" -143545,Vareebadd Phone,1,400,01/24/19 20:36,"597 2nd St, Los Angeles, CA 90001" -143545,Wired Headphones,1,11.99,01/24/19 20:36,"597 2nd St, Los Angeles, CA 90001" -143546,AAA Batteries (4-pack),1,2.99,01/26/19 10:19,"789 1st St, Los Angeles, CA 90001" -143547,iPhone,1,700,01/01/19 13:36,"817 Lincoln St, Seattle, WA 98101" -143548,AA Batteries (4-pack),2,3.84,01/09/19 13:06,"348 Wilson St, Boston, MA 02215" -143549,AA Batteries (4-pack),1,3.84,01/29/19 20:09,"563 Pine St, Seattle, WA 98101" -143550,USB-C Charging Cable,1,11.95,01/19/19 17:20,"751 Hickory St, Atlanta, GA 30301" -143551,AAA Batteries (4-pack),2,2.99,01/16/19 16:04,"810 Hickory St, Los Angeles, CA 90001" -143552,34in Ultrawide Monitor,1,379.99,01/05/19 19:14,"656 Lakeview St, New York City, NY 10001" -143553,27in 4K Gaming Monitor,1,389.99,01/11/19 20:33,"210 South St, San Francisco, CA 94016" -143554,USB-C Charging Cable,1,11.95,01/18/19 22:31,"700 10th St, Boston, MA 02215" -143555,Lightning Charging Cable,1,14.95,01/29/19 19:58,"531 Sunset St, New York City, NY 10001" -143556,Vareebadd Phone,1,400,01/19/19 14:30,"847 Meadow St, Dallas, TX 75001" -143557,AA Batteries (4-pack),1,3.84,01/15/19 20:33,"83 Chestnut St, Los Angeles, CA 90001" -143558,20in Monitor,1,109.99,01/30/19 20:00,"787 Walnut St, Dallas, TX 75001" -143559,AA Batteries (4-pack),1,3.84,01/08/19 23:52,"741 9th St, Los Angeles, CA 90001" -143560,AA Batteries (4-pack),1,3.84,01/24/19 17:29,"150 Lakeview St, Los Angeles, CA 90001" -143561,Wired Headphones,1,11.99,01/13/19 11:51,"607 Highland St, San Francisco, CA 94016" -143562,AAA Batteries (4-pack),2,2.99,01/05/19 12:21,"695 Spruce St, San Francisco, CA 94016" -143563,Lightning Charging Cable,1,14.95,01/10/19 13:06,"12 Maple St, San Francisco, CA 94016" -143564,Apple Airpods Headphones,1,150,01/04/19 19:57,"142 Dogwood St, San Francisco, CA 94016" -143565,Lightning Charging Cable,1,14.95,01/24/19 09:05,"122 9th St, Los Angeles, CA 90001" -143566,34in Ultrawide Monitor,1,379.99,01/26/19 09:08,"508 7th St, Boston, MA 02215" -143567,27in 4K Gaming Monitor,1,389.99,01/30/19 09:22,"371 Jackson St, San Francisco, CA 94016" -143568,Apple Airpods Headphones,1,150,01/27/19 06:37,"727 Elm St, Dallas, TX 75001" -143569,Google Phone,1,600,01/23/19 00:48,"64 Washington St, San Francisco, CA 94016" -143570,AA Batteries (4-pack),1,3.84,01/16/19 23:46,"9 South St, Austin, TX 73301" -143571,Google Phone,1,600,01/12/19 09:31,"975 Meadow St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -143572,AAA Batteries (4-pack),4,2.99,01/05/19 08:52,"151 10th St, Austin, TX 73301" -143572,USB-C Charging Cable,1,11.95,01/05/19 08:52,"151 10th St, Austin, TX 73301" -143573,Bose SoundSport Headphones,1,99.99,01/12/19 15:08,"845 Church St, Austin, TX 73301" -143574,AAA Batteries (4-pack),1,2.99,01/13/19 02:14,"766 4th St, Atlanta, GA 30301" -143575,USB-C Charging Cable,1,11.95,01/29/19 02:15,"961 14th St, San Francisco, CA 94016" -143576,Lightning Charging Cable,1,14.95,01/09/19 17:06,"814 Cherry St, San Francisco, CA 94016" -143577,Lightning Charging Cable,1,14.95,01/03/19 16:04,"546 Cherry St, San Francisco, CA 94016" -143578,Bose SoundSport Headphones,1,99.99,01/18/19 16:59,"776 5th St, San Francisco, CA 94016" -143579,Apple Airpods Headphones,1,150,01/15/19 13:30,"492 Willow St, San Francisco, CA 94016" -143580,27in 4K Gaming Monitor,1,389.99,01/15/19 15:34,"406 Chestnut St, Los Angeles, CA 90001" -143581,Wired Headphones,1,11.99,01/09/19 17:10,"854 South St, New York City, NY 10001" -143582,34in Ultrawide Monitor,1,379.99,01/30/19 12:22,"8 South St, Los Angeles, CA 90001" -143583,Wired Headphones,1,11.99,01/25/19 15:28,"487 6th St, San Francisco, CA 94016" -143584,Wired Headphones,1,11.99,01/24/19 11:54,"162 Meadow St, Atlanta, GA 30301" -143585,Wired Headphones,1,11.99,01/08/19 23:41,"398 Park St, Atlanta, GA 30301" -143586,27in FHD Monitor,1,149.99,01/31/19 15:21,"169 Lincoln St, Seattle, WA 98101" -143587,iPhone,1,700,01/15/19 17:48,"21 West St, Seattle, WA 98101" -143588,Lightning Charging Cable,1,14.95,01/26/19 19:24,"359 Highland St, Dallas, TX 75001" -143589,USB-C Charging Cable,1,11.95,01/01/19 20:13,"610 6th St, San Francisco, CA 94016" -143590,iPhone,1,700,01/09/19 15:18,"123 Cherry St, Dallas, TX 75001" -143590,Lightning Charging Cable,1,14.95,01/09/19 15:18,"123 Cherry St, Dallas, TX 75001" -143591,Wired Headphones,1,11.99,01/26/19 23:06,"383 Elm St, New York City, NY 10001" -143592,Flatscreen TV,1,300,01/02/19 16:06,"411 Madison St, Los Angeles, CA 90001" -143593,AAA Batteries (4-pack),1,2.99,01/01/19 16:52,"488 11th St, New York City, NY 10001" -143594,LG Washing Machine,1,600.0,01/08/19 21:25,"113 West St, Boston, MA 02215" -143595,Bose SoundSport Headphones,1,99.99,01/14/19 09:25,"889 Pine St, Boston, MA 02215" -143596,Apple Airpods Headphones,1,150,01/15/19 06:18,"47 North St, San Francisco, CA 94016" -143597,Apple Airpods Headphones,1,150,01/02/19 12:10,"935 Spruce St, San Francisco, CA 94016" -143598,Lightning Charging Cable,1,14.95,01/19/19 12:01,"11 Johnson St, Los Angeles, CA 90001" -143599,27in 4K Gaming Monitor,1,389.99,01/26/19 10:38,"441 Hill St, Austin, TX 73301" -143600,iPhone,1,700,01/01/19 14:38,"171 Madison St, Los Angeles, CA 90001" -143601,iPhone,1,700,01/29/19 19:59,"689 Dogwood St, Los Angeles, CA 90001" -143602,Bose SoundSport Headphones,1,99.99,01/16/19 18:30,"356 Willow St, Los Angeles, CA 90001" -143603,Macbook Pro Laptop,1,1700,01/17/19 12:20,"580 5th St, Austin, TX 73301" -143604,USB-C Charging Cable,1,11.95,01/20/19 17:09,"485 Lincoln St, Seattle, WA 98101" -143605,LG Washing Machine,1,600.0,01/22/19 14:37,"48 Lake St, Los Angeles, CA 90001" -143606,AAA Batteries (4-pack),1,2.99,01/09/19 14:48,"357 7th St, San Francisco, CA 94016" -143607,AAA Batteries (4-pack),2,2.99,01/03/19 08:34,"962 River St, San Francisco, CA 94016" -143608,34in Ultrawide Monitor,1,379.99,01/06/19 22:14,"846 Johnson St, Los Angeles, CA 90001" -143609,Apple Airpods Headphones,1,150,01/25/19 23:34,"827 4th St, New York City, NY 10001" -143610,27in FHD Monitor,1,149.99,01/01/19 13:58,"3 South St, Portland, OR 97035" -143611,Macbook Pro Laptop,1,1700,01/20/19 12:54,"624 Johnson St, Boston, MA 02215" -143612,LG Washing Machine,1,600.0,01/07/19 17:53,"35 Elm St, Austin, TX 73301" -143613,Google Phone,1,600,01/06/19 14:47,"530 Forest St, Austin, TX 73301" -143614,27in FHD Monitor,1,149.99,01/14/19 19:51,"335 7th St, Dallas, TX 75001" -143615,Google Phone,1,600,01/12/19 16:25,"221 1st St, Los Angeles, CA 90001" -143616,Flatscreen TV,1,300,01/14/19 09:39,"214 Jefferson St, Atlanta, GA 30301" -143617,Lightning Charging Cable,1,14.95,01/08/19 23:17,"679 12th St, Los Angeles, CA 90001" -143618,AA Batteries (4-pack),1,3.84,01/13/19 12:20,"936 Church St, San Francisco, CA 94016" -143619,USB-C Charging Cable,2,11.95,01/16/19 12:58,"791 Park St, New York City, NY 10001" -143620,Google Phone,1,600,01/03/19 18:55,"79 14th St, Dallas, TX 75001" -143621,USB-C Charging Cable,1,11.95,01/10/19 09:39,"878 Center St, Los Angeles, CA 90001" -143622,AA Batteries (4-pack),1,3.84,01/25/19 19:05,"686 9th St, Dallas, TX 75001" -143623,USB-C Charging Cable,1,11.95,01/19/19 21:19,"751 Lakeview St, San Francisco, CA 94016" -143623,27in FHD Monitor,1,149.99,01/19/19 21:19,"751 Lakeview St, San Francisco, CA 94016" -143624,USB-C Charging Cable,1,11.95,01/04/19 06:17,"285 Pine St, Boston, MA 02215" -143625,USB-C Charging Cable,1,11.95,01/31/19 11:34,"828 Cedar St, Los Angeles, CA 90001" -143626,Apple Airpods Headphones,1,150,01/10/19 12:27,"60 West St, Los Angeles, CA 90001" -143627,AAA Batteries (4-pack),2,2.99,01/21/19 20:48,"113 River St, Atlanta, GA 30301" -143628,AA Batteries (4-pack),1,3.84,01/20/19 02:07,"944 West St, Los Angeles, CA 90001" -143628,27in 4K Gaming Monitor,1,389.99,01/20/19 02:07,"944 West St, Los Angeles, CA 90001" -143629,Apple Airpods Headphones,1,150,01/05/19 18:44,"263 1st St, Atlanta, GA 30301" -143630,iPhone,1,700,01/25/19 22:00,"890 Sunset St, San Francisco, CA 94016" -143630,Wired Headphones,1,11.99,01/25/19 22:00,"890 Sunset St, San Francisco, CA 94016" -143631,20in Monitor,1,109.99,01/22/19 14:57,"416 Dogwood St, Los Angeles, CA 90001" -143632,Google Phone,1,600,01/08/19 08:26,"759 Elm St, Los Angeles, CA 90001" -143632,USB-C Charging Cable,1,11.95,01/08/19 08:26,"759 Elm St, Los Angeles, CA 90001" -143632,Wired Headphones,1,11.99,01/08/19 08:26,"759 Elm St, Los Angeles, CA 90001" -143633,Wired Headphones,1,11.99,01/16/19 15:28,"697 Hickory St, Portland, OR 97035" -143634,USB-C Charging Cable,1,11.95,01/11/19 00:31,"370 Forest St, Austin, TX 73301" -143635,Wired Headphones,1,11.99,01/29/19 11:21,"747 Jackson St, Boston, MA 02215" -143636,Macbook Pro Laptop,1,1700,01/17/19 23:30,"509 Washington St, New York City, NY 10001" -143637,USB-C Charging Cable,1,11.95,01/31/19 08:57,"551 Maple St, Boston, MA 02215" -143638,ThinkPad Laptop,1,999.99,01/04/19 23:51,"305 Ridge St, New York City, NY 10001" -143639,USB-C Charging Cable,1,11.95,01/23/19 12:39,"114 Hill St, Los Angeles, CA 90001" -143640,AA Batteries (4-pack),1,3.84,01/31/19 09:29,"914 Willow St, San Francisco, CA 94016" -143641,USB-C Charging Cable,1,11.95,01/18/19 00:01,"485 Lake St, San Francisco, CA 94016" -143641,20in Monitor,1,109.99,01/18/19 00:01,"485 Lake St, San Francisco, CA 94016" -143642,Wired Headphones,1,11.99,01/22/19 21:48,"999 10th St, Los Angeles, CA 90001" -143643,Lightning Charging Cable,1,14.95,01/12/19 22:44,"663 5th St, Dallas, TX 75001" -143644,Bose SoundSport Headphones,1,99.99,01/13/19 11:16,"390 Lake St, Austin, TX 73301" -143645,Wired Headphones,1,11.99,01/25/19 18:31,"715 Jefferson St, San Francisco, CA 94016" -143646,AAA Batteries (4-pack),1,2.99,01/06/19 09:11,"873 6th St, Boston, MA 02215" -143647,Wired Headphones,1,11.99,01/23/19 12:53,"464 Jackson St, Portland, OR 97035" -143648,AA Batteries (4-pack),1,3.84,01/22/19 19:45,"316 Meadow St, Dallas, TX 75001" -143649,27in FHD Monitor,1,149.99,01/04/19 21:14,"773 Jackson St, Los Angeles, CA 90001" -143650,Lightning Charging Cable,1,14.95,01/31/19 22:06,"859 Highland St, Dallas, TX 75001" -143651,ThinkPad Laptop,1,999.99,01/07/19 16:15,"631 8th St, Atlanta, GA 30301" -143652,AAA Batteries (4-pack),1,2.99,01/17/19 06:22,"891 5th St, San Francisco, CA 94016" -143653,USB-C Charging Cable,1,11.95,01/24/19 18:39,"116 5th St, Seattle, WA 98101" -143654,AA Batteries (4-pack),1,3.84,01/25/19 17:36,"762 8th St, Los Angeles, CA 90001" -143655,20in Monitor,1,109.99,01/22/19 16:39,"102 2nd St, New York City, NY 10001" -143656,Lightning Charging Cable,1,14.95,01/22/19 11:39,"865 11th St, Boston, MA 02215" -143657,27in FHD Monitor,1,149.99,01/05/19 14:40,"693 7th St, San Francisco, CA 94016" -143658,Google Phone,1,600,01/05/19 13:46,"411 Walnut St, Seattle, WA 98101" -143658,USB-C Charging Cable,1,11.95,01/05/19 13:46,"411 Walnut St, Seattle, WA 98101" -143659,27in FHD Monitor,1,149.99,01/10/19 18:22,"63 Wilson St, Los Angeles, CA 90001" -143660,Wired Headphones,2,11.99,01/28/19 20:07,"454 Spruce St, Atlanta, GA 30301" -143661,Bose SoundSport Headphones,1,99.99,01/04/19 16:52,"775 Jackson St, Boston, MA 02215" -143662,Bose SoundSport Headphones,1,99.99,01/31/19 22:55,"776 Meadow St, Dallas, TX 75001" -143663,Bose SoundSport Headphones,1,99.99,01/28/19 10:40,"461 Dogwood St, San Francisco, CA 94016" -143664,ThinkPad Laptop,1,999.99,01/19/19 15:44,"927 4th St, Portland, OR 97035" -143665,27in 4K Gaming Monitor,1,389.99,01/15/19 00:28,"585 Forest St, Los Angeles, CA 90001" -143666,Apple Airpods Headphones,1,150,01/20/19 09:22,"689 9th St, Atlanta, GA 30301" -143666,iPhone,1,700,01/20/19 09:22,"689 9th St, Atlanta, GA 30301" -143667,Bose SoundSport Headphones,1,99.99,01/23/19 12:00,"538 Chestnut St, Los Angeles, CA 90001" -143668,Macbook Pro Laptop,1,1700,01/07/19 09:50,"150 Church St, San Francisco, CA 94016" -143669,AA Batteries (4-pack),1,3.84,01/24/19 21:32,"409 Elm St, Portland, ME 04101" -143670,Wired Headphones,1,11.99,01/19/19 08:01,"908 Chestnut St, San Francisco, CA 94016" -143671,AAA Batteries (4-pack),1,2.99,01/04/19 13:01,"233 Ridge St, New York City, NY 10001" -143672,Wired Headphones,1,11.99,01/30/19 16:13,"608 Main St, Boston, MA 02215" -143673,27in FHD Monitor,1,149.99,01/21/19 10:14,"785 Adams St, Austin, TX 73301" -143674,Wired Headphones,2,11.99,01/01/19 12:06,"300 Adams St, Portland, OR 97035" -143675,Flatscreen TV,1,300,01/04/19 01:32,"708 Hickory St, Los Angeles, CA 90001" -143676,AA Batteries (4-pack),1,3.84,01/24/19 03:31,"739 Church St, Dallas, TX 75001" -143677,Wired Headphones,1,11.99,01/14/19 19:02,"959 13th St, Los Angeles, CA 90001" -143678,Lightning Charging Cable,1,14.95,01/28/19 01:06,"498 1st St, Boston, MA 02215" -143679,iPhone,1,700,01/10/19 19:46,"292 Church St, Los Angeles, CA 90001" -143680,34in Ultrawide Monitor,2,379.99,01/10/19 12:35,"337 Highland St, Seattle, WA 98101" -143681,AA Batteries (4-pack),3,3.84,01/03/19 14:54,"663 River St, San Francisco, CA 94016" -143682,AAA Batteries (4-pack),1,2.99,01/17/19 10:40,"249 Center St, Los Angeles, CA 90001" -143683,Vareebadd Phone,1,400,01/11/19 12:02,"410 Wilson St, Portland, OR 97035" -143684,USB-C Charging Cable,1,11.95,01/23/19 05:29,"893 Pine St, Portland, OR 97035" -143685,34in Ultrawide Monitor,1,379.99,01/04/19 16:55,"206 North St, Los Angeles, CA 90001" -143686,Lightning Charging Cable,1,14.95,01/23/19 00:05,"410 Highland St, Portland, OR 97035" -143687,Wired Headphones,1,11.99,01/07/19 23:51,"842 Washington St, Atlanta, GA 30301" -143688,USB-C Charging Cable,1,11.95,01/18/19 10:39,"969 Sunset St, New York City, NY 10001" -143689,Apple Airpods Headphones,1,150,01/06/19 15:28,"858 2nd St, Portland, OR 97035" -143690,iPhone,1,700,01/16/19 12:44,"993 Madison St, Los Angeles, CA 90001" -143691,LG Washing Machine,1,600.0,01/29/19 09:30,"24 Lakeview St, Los Angeles, CA 90001" -143692,AAA Batteries (4-pack),1,2.99,01/15/19 10:50,"867 Dogwood St, New York City, NY 10001" -143693,AAA Batteries (4-pack),5,2.99,01/07/19 13:20,"304 2nd St, New York City, NY 10001" -143694,iPhone,1,700,01/03/19 19:20,"265 6th St, New York City, NY 10001" -143694,Lightning Charging Cable,1,14.95,01/03/19 19:20,"265 6th St, New York City, NY 10001" -143695,Google Phone,1,600,01/19/19 23:29,"633 Maple St, San Francisco, CA 94016" -143696,iPhone,1,700,01/21/19 21:46,"499 Maple St, New York City, NY 10001" -143696,Lightning Charging Cable,1,14.95,01/21/19 21:46,"499 Maple St, New York City, NY 10001" -143697,AA Batteries (4-pack),1,3.84,01/16/19 10:12,"220 8th St, San Francisco, CA 94016" -143698,AAA Batteries (4-pack),2,2.99,01/06/19 21:20,"565 Walnut St, Atlanta, GA 30301" -143699,27in 4K Gaming Monitor,1,389.99,01/01/19 10:08,"409 Center St, San Francisco, CA 94016" -143700,AAA Batteries (4-pack),1,2.99,01/27/19 17:38,"864 14th St, New York City, NY 10001" -143701,27in FHD Monitor,1,149.99,01/03/19 22:54,"670 Washington St, Los Angeles, CA 90001" -143702,Wired Headphones,1,11.99,01/19/19 18:18,"909 Lakeview St, Austin, TX 73301" -143703,AAA Batteries (4-pack),2,2.99,01/03/19 19:01,"335 Center St, Boston, MA 02215" -143704,Apple Airpods Headphones,1,150,01/14/19 19:30,"247 North St, Los Angeles, CA 90001" -143705,AA Batteries (4-pack),2,3.84,01/25/19 16:06,"954 10th St, Atlanta, GA 30301" -143706,Vareebadd Phone,1,400,01/24/19 13:00,"925 Walnut St, San Francisco, CA 94016" -143707,Flatscreen TV,1,300,01/31/19 17:48,"750 Main St, Seattle, WA 98101" -143708,Bose SoundSport Headphones,1,99.99,01/05/19 15:24,"987 Willow St, San Francisco, CA 94016" -143709,Lightning Charging Cable,1,14.95,01/06/19 07:39,"187 5th St, Dallas, TX 75001" -143710,AA Batteries (4-pack),1,3.84,01/30/19 19:50,"801 11th St, Seattle, WA 98101" -143710,Wired Headphones,1,11.99,01/30/19 19:50,"801 11th St, Seattle, WA 98101" -143711,USB-C Charging Cable,1,11.95,01/13/19 10:40,"903 Hill St, Boston, MA 02215" -143712,Apple Airpods Headphones,1,150,01/11/19 19:59,"934 Maple St, New York City, NY 10001" -143713,27in FHD Monitor,1,149.99,01/12/19 12:06,"548 Meadow St, San Francisco, CA 94016" -143714,Bose SoundSport Headphones,1,99.99,01/16/19 20:32,"693 4th St, Los Angeles, CA 90001" -143715,USB-C Charging Cable,1,11.95,01/01/19 11:16,"959 2nd St, Atlanta, GA 30301" -143716,27in 4K Gaming Monitor,1,389.99,01/16/19 17:07,"203 Chestnut St, Atlanta, GA 30301" -143717,Wired Headphones,1,11.99,01/20/19 13:53,"248 Pine St, Los Angeles, CA 90001" -143718,27in FHD Monitor,1,149.99,01/26/19 13:59,"740 Lake St, Los Angeles, CA 90001" -143719,AAA Batteries (4-pack),1,2.99,01/24/19 21:54,"50 Johnson St, Los Angeles, CA 90001" -143720,ThinkPad Laptop,1,999.99,01/23/19 14:57,"779 2nd St, New York City, NY 10001" -143721,27in 4K Gaming Monitor,1,389.99,01/28/19 17:21,"73 Maple St, San Francisco, CA 94016" -143722,Lightning Charging Cable,1,14.95,01/28/19 05:07,"504 Madison St, Portland, OR 97035" -143723,Lightning Charging Cable,1,14.95,01/10/19 13:09,"987 Forest St, Atlanta, GA 30301" -143724,USB-C Charging Cable,1,11.95,01/05/19 19:10,"998 5th St, San Francisco, CA 94016" -143725,Apple Airpods Headphones,1,150,01/12/19 16:49,"618 Lakeview St, San Francisco, CA 94016" -143726,AAA Batteries (4-pack),3,2.99,01/08/19 20:44,"186 11th St, San Francisco, CA 94016" -143727,27in FHD Monitor,1,149.99,01/27/19 11:38,"804 5th St, Atlanta, GA 30301" -143728,AAA Batteries (4-pack),1,2.99,01/17/19 19:23,"987 Walnut St, New York City, NY 10001" -143729,AAA Batteries (4-pack),1,2.99,01/24/19 01:26,"385 Hill St, New York City, NY 10001" -143730,27in 4K Gaming Monitor,1,389.99,01/12/19 22:01,"453 Willow St, Portland, OR 97035" -143731,Apple Airpods Headphones,1,150,01/22/19 15:56,"390 Maple St, Dallas, TX 75001" -143732,Macbook Pro Laptop,1,1700,01/01/19 20:04,"362 Maple St, Boston, MA 02215" -143733,AA Batteries (4-pack),1,3.84,01/11/19 16:35,"52 13th St, Austin, TX 73301" -143734,AAA Batteries (4-pack),2,2.99,01/08/19 17:51,"764 14th St, Los Angeles, CA 90001" -143735,Wired Headphones,1,11.99,01/02/19 18:25,"57 Cedar St, Los Angeles, CA 90001" -143736,USB-C Charging Cable,1,11.95,01/10/19 17:56,"638 Willow St, Los Angeles, CA 90001" -143737,Wired Headphones,1,11.99,01/20/19 15:10,"139 2nd St, Los Angeles, CA 90001" -143738,iPhone,1,700,01/01/19 13:29,"462 Cedar St, Boston, MA 02215" -143738,Lightning Charging Cable,1,14.95,01/01/19 13:29,"462 Cedar St, Boston, MA 02215" -143739,20in Monitor,1,109.99,01/21/19 09:19,"401 11th St, Los Angeles, CA 90001" -143740,34in Ultrawide Monitor,1,379.99,01/11/19 23:47,"703 Main St, Los Angeles, CA 90001" -143741,Flatscreen TV,1,300,01/18/19 19:56,"488 Cherry St, Los Angeles, CA 90001" -143742,Wired Headphones,2,11.99,01/21/19 20:00,"167 Lake St, Atlanta, GA 30301" -143743,Lightning Charging Cable,1,14.95,01/14/19 20:18,"377 Hickory St, Atlanta, GA 30301" -143744,USB-C Charging Cable,2,11.95,01/16/19 11:38,"1 South St, Boston, MA 02215" -143745,Wired Headphones,1,11.99,01/19/19 21:28,"672 10th St, Los Angeles, CA 90001" -143746,27in 4K Gaming Monitor,1,389.99,01/27/19 18:41,"486 Maple St, New York City, NY 10001" -143747,Lightning Charging Cable,1,14.95,01/30/19 17:35,"927 Dogwood St, Boston, MA 02215" -143748,Bose SoundSport Headphones,1,99.99,01/20/19 21:05,"32 6th St, San Francisco, CA 94016" -143749,Bose SoundSport Headphones,1,99.99,01/29/19 19:51,"62 13th St, Los Angeles, CA 90001" -143750,Wired Headphones,1,11.99,01/03/19 21:00,"103 Spruce St, San Francisco, CA 94016" -143751,AAA Batteries (4-pack),1,2.99,01/21/19 09:39,"371 Johnson St, Dallas, TX 75001" -143752,iPhone,1,700,01/30/19 12:18,"438 10th St, San Francisco, CA 94016" -143752,Wired Headphones,1,11.99,01/30/19 12:18,"438 10th St, San Francisco, CA 94016" -143753,Macbook Pro Laptop,1,1700,01/16/19 23:13,"192 Church St, New York City, NY 10001" -143754,Apple Airpods Headphones,1,150,01/10/19 13:20,"955 Center St, Austin, TX 73301" -143755,Wired Headphones,1,11.99,01/01/19 21:59,"150 Lincoln St, Los Angeles, CA 90001" -143756,Wired Headphones,1,11.99,01/28/19 13:59,"86 Lakeview St, San Francisco, CA 94016" -143757,USB-C Charging Cable,1,11.95,01/10/19 17:02,"709 Church St, New York City, NY 10001" -143758,Lightning Charging Cable,1,14.95,01/04/19 04:28,"103 5th St, Atlanta, GA 30301" -143759,ThinkPad Laptop,1,999.99,01/12/19 14:41,"119 Jefferson St, Seattle, WA 98101" -143760,USB-C Charging Cable,1,11.95,01/19/19 20:14,"665 12th St, New York City, NY 10001" -143761,USB-C Charging Cable,1,11.95,01/26/19 11:07,"173 Wilson St, Atlanta, GA 30301" -143762,LG Washing Machine,1,600.0,01/05/19 23:04,"331 14th St, San Francisco, CA 94016" -143763,Apple Airpods Headphones,1,150,01/01/19 08:44,"142 Lakeview St, Atlanta, GA 30301" -143764,Bose SoundSport Headphones,1,99.99,01/18/19 13:07,"348 Hickory St, San Francisco, CA 94016" -143765,USB-C Charging Cable,1,11.95,01/07/19 14:24,"938 13th St, San Francisco, CA 94016" -143766,AA Batteries (4-pack),1,3.84,01/04/19 19:02,"869 Walnut St, San Francisco, CA 94016" -143767,20in Monitor,1,109.99,01/09/19 20:55,"593 14th St, Los Angeles, CA 90001" -143768,Lightning Charging Cable,1,14.95,01/14/19 10:15,"790 Pine St, Los Angeles, CA 90001" -143769,27in FHD Monitor,1,149.99,01/15/19 13:29,"598 Meadow St, Los Angeles, CA 90001" -143770,AAA Batteries (4-pack),3,2.99,01/20/19 22:24,"256 Spruce St, Atlanta, GA 30301" -143771,Bose SoundSport Headphones,1,99.99,01/15/19 12:00,"360 Hickory St, Austin, TX 73301" -143772,AA Batteries (4-pack),1,3.84,01/10/19 23:10,"578 West St, Austin, TX 73301" -143773,Lightning Charging Cable,1,14.95,01/04/19 06:20,"23 South St, San Francisco, CA 94016" -143774,AAA Batteries (4-pack),1,2.99,01/19/19 16:03,"998 Main St, New York City, NY 10001" -143775,27in FHD Monitor,1,149.99,01/20/19 12:10,"72 5th St, San Francisco, CA 94016" -143776,Macbook Pro Laptop,1,1700,01/08/19 09:24,"224 Park St, Dallas, TX 75001" -143777,ThinkPad Laptop,1,999.99,01/13/19 20:55,"716 Walnut St, San Francisco, CA 94016" -143778,Apple Airpods Headphones,1,150,01/07/19 13:42,"695 Park St, Los Angeles, CA 90001" -143779,Wired Headphones,1,11.99,01/24/19 10:46,"207 6th St, San Francisco, CA 94016" -143780,Flatscreen TV,1,300,01/05/19 15:24,"742 North St, Atlanta, GA 30301" -143781,iPhone,1,700,01/02/19 01:13,"792 Jefferson St, Portland, OR 97035" -143782,Wired Headphones,1,11.99,01/23/19 15:27,"802 Main St, Seattle, WA 98101" -143783,Apple Airpods Headphones,1,150,01/31/19 17:36,"667 Spruce St, Austin, TX 73301" -143784,AA Batteries (4-pack),1,3.84,01/04/19 16:32,"169 Johnson St, Portland, OR 97035" -143785,iPhone,1,700,01/09/19 21:14,"732 Center St, Dallas, TX 75001" -143786,Apple Airpods Headphones,1,150,01/20/19 16:31,"917 6th St, Boston, MA 02215" -143787,Wired Headphones,1,11.99,01/27/19 11:18,"159 Highland St, Boston, MA 02215" -143788,USB-C Charging Cable,1,11.95,01/21/19 09:49,"591 11th St, Dallas, TX 75001" -143789,AAA Batteries (4-pack),1,2.99,01/27/19 10:45,"211 Madison St, Atlanta, GA 30301" -143790,Macbook Pro Laptop,1,1700,01/08/19 23:16,"823 13th St, Dallas, TX 75001" -143791,AA Batteries (4-pack),2,3.84,01/11/19 09:37,"600 6th St, Dallas, TX 75001" -143792,Lightning Charging Cable,1,14.95,01/18/19 19:47,"24 4th St, New York City, NY 10001" -143793,27in FHD Monitor,1,149.99,01/28/19 11:33,"740 Meadow St, Dallas, TX 75001" -143794,Apple Airpods Headphones,1,150,01/18/19 09:09,"882 Dogwood St, Portland, OR 97035" -143795,AAA Batteries (4-pack),2,2.99,01/08/19 17:47,"119 Jackson St, Los Angeles, CA 90001" -143796,Apple Airpods Headphones,1,150,01/03/19 12:48,"693 10th St, New York City, NY 10001" -143797,Wired Headphones,1,11.99,01/10/19 21:05,"42 Highland St, San Francisco, CA 94016" -143798,Lightning Charging Cable,1,14.95,01/08/19 23:57,"941 Adams St, San Francisco, CA 94016" -143799,USB-C Charging Cable,1,11.95,01/04/19 11:35,"186 Maple St, Dallas, TX 75001" -143800,Bose SoundSport Headphones,1,99.99,01/02/19 11:00,"540 7th St, Boston, MA 02215" -143801,Lightning Charging Cable,1,14.95,01/05/19 22:14,"163 Meadow St, Los Angeles, CA 90001" -143802,27in 4K Gaming Monitor,1,389.99,01/08/19 12:43,"304 Lakeview St, San Francisco, CA 94016" -143802,iPhone,1,700,01/08/19 12:43,"304 Lakeview St, San Francisco, CA 94016" -143803,Bose SoundSport Headphones,1,99.99,01/02/19 09:04,"807 Cedar St, San Francisco, CA 94016" -143804,AAA Batteries (4-pack),1,2.99,01/20/19 22:23,"636 Dogwood St, Austin, TX 73301" -143805,Flatscreen TV,1,300,01/30/19 06:56,"891 Elm St, Los Angeles, CA 90001" -143806,34in Ultrawide Monitor,1,379.99,01/14/19 12:58,"114 South St, Boston, MA 02215" -143807,27in 4K Gaming Monitor,1,389.99,01/15/19 00:30,"609 Forest St, Dallas, TX 75001" -143808,AA Batteries (4-pack),3,3.84,01/08/19 15:13,"561 Wilson St, San Francisco, CA 94016" -143809,Apple Airpods Headphones,1,150,01/27/19 00:57,"659 Maple St, Austin, TX 73301" -143810,AA Batteries (4-pack),2,3.84,01/07/19 18:48,"93 Cedar St, Seattle, WA 98101" -143811,27in 4K Gaming Monitor,1,389.99,01/08/19 16:29,"39 1st St, San Francisco, CA 94016" -143812,Bose SoundSport Headphones,1,99.99,01/25/19 08:14,"194 Cedar St, Boston, MA 02215" -143813,AAA Batteries (4-pack),1,2.99,01/25/19 22:36,"274 Spruce St, Los Angeles, CA 90001" -143814,Apple Airpods Headphones,1,150,01/08/19 15:53,"785 8th St, Portland, OR 97035" -143815,Macbook Pro Laptop,1,1700,01/29/19 15:08,"391 10th St, Seattle, WA 98101" -143816,Bose SoundSport Headphones,1,99.99,01/16/19 11:12,"578 Cedar St, Austin, TX 73301" -143817,USB-C Charging Cable,1,11.95,01/09/19 11:03,"295 2nd St, Los Angeles, CA 90001" -143818,USB-C Charging Cable,1,11.95,01/24/19 18:04,"616 12th St, New York City, NY 10001" -143819,USB-C Charging Cable,1,11.95,01/22/19 00:26,"317 Madison St, Los Angeles, CA 90001" -143820,Flatscreen TV,1,300,01/30/19 10:34,"720 Forest St, Los Angeles, CA 90001" -143821,Lightning Charging Cable,1,14.95,01/24/19 07:48,"310 11th St, Boston, MA 02215" -143822,Apple Airpods Headphones,1,150,01/19/19 11:17,"409 Park St, Portland, OR 97035" -143823,27in 4K Gaming Monitor,1,389.99,01/25/19 13:23,"891 8th St, Atlanta, GA 30301" -143824,20in Monitor,1,109.99,01/20/19 18:39,"20 Hill St, Los Angeles, CA 90001" -143825,USB-C Charging Cable,1,11.95,01/25/19 18:11,"803 13th St, San Francisco, CA 94016" -143826,AAA Batteries (4-pack),1,2.99,01/09/19 10:15,"180 Pine St, San Francisco, CA 94016" -143827,ThinkPad Laptop,1,999.99,01/20/19 16:43,"268 2nd St, San Francisco, CA 94016" -143828,Wired Headphones,1,11.99,01/19/19 22:08,"778 Pine St, Austin, TX 73301" -143829,27in 4K Gaming Monitor,1,389.99,01/18/19 13:53,"230 Spruce St, New York City, NY 10001" -143830,Flatscreen TV,1,300,01/25/19 14:41,"125 Washington St, Seattle, WA 98101" -143831,Wired Headphones,1,11.99,01/22/19 12:36,"351 Maple St, San Francisco, CA 94016" -143831,Bose SoundSport Headphones,1,99.99,01/22/19 12:36,"351 Maple St, San Francisco, CA 94016" -143832,ThinkPad Laptop,1,999.99,01/11/19 20:09,"621 Elm St, Los Angeles, CA 90001" -143833,USB-C Charging Cable,1,11.95,01/25/19 13:48,"951 1st St, San Francisco, CA 94016" -143834,Bose SoundSport Headphones,1,99.99,01/14/19 20:01,"457 Cherry St, Dallas, TX 75001" -143835,Lightning Charging Cable,1,14.95,01/05/19 19:13,"659 Meadow St, Seattle, WA 98101" -143836,AAA Batteries (4-pack),1,2.99,01/02/19 10:09,"355 Highland St, Portland, OR 97035" -143837,Flatscreen TV,1,300,01/26/19 23:14,"735 Chestnut St, New York City, NY 10001" -143838,Bose SoundSport Headphones,1,99.99,01/24/19 20:09,"68 Pine St, Los Angeles, CA 90001" -143839,AA Batteries (4-pack),1,3.84,01/08/19 14:24,"127 4th St, Boston, MA 02215" -143840,AA Batteries (4-pack),1,3.84,01/10/19 19:59,"528 West St, Seattle, WA 98101" -143841,27in 4K Gaming Monitor,1,389.99,01/18/19 20:16,"685 11th St, Seattle, WA 98101" -143842,AAA Batteries (4-pack),1,2.99,01/17/19 09:05,"711 Church St, Los Angeles, CA 90001" -143843,iPhone,1,700,01/10/19 11:04,"777 Willow St, New York City, NY 10001" -143844,Bose SoundSport Headphones,1,99.99,01/05/19 14:13,"758 Maple St, Los Angeles, CA 90001" -143845,Bose SoundSport Headphones,1,99.99,01/14/19 12:42,"27 Willow St, Austin, TX 73301" -143846,Lightning Charging Cable,1,14.95,01/29/19 11:44,"786 Park St, San Francisco, CA 94016" -143847,ThinkPad Laptop,1,999.99,01/17/19 12:23,"994 Adams St, Los Angeles, CA 90001" -143848,Lightning Charging Cable,1,14.95,01/16/19 17:01,"990 10th St, Austin, TX 73301" -143849,iPhone,1,700,01/08/19 09:50,"752 Dogwood St, New York City, NY 10001" -143850,AAA Batteries (4-pack),1,2.99,01/17/19 08:31,"360 14th St, Los Angeles, CA 90001" -143851,AA Batteries (4-pack),1,3.84,01/09/19 01:01,"78 Lakeview St, Dallas, TX 75001" -143852,AA Batteries (4-pack),1,3.84,01/26/19 16:48,"477 Walnut St, Boston, MA 02215" -143853,AAA Batteries (4-pack),1,2.99,01/15/19 08:35,"44 5th St, Los Angeles, CA 90001" -143854,USB-C Charging Cable,1,11.95,01/27/19 19:51,"786 Cherry St, San Francisco, CA 94016" -143855,ThinkPad Laptop,1,999.99,01/05/19 00:05,"222 Church St, San Francisco, CA 94016" -143856,27in FHD Monitor,1,149.99,01/26/19 19:14,"781 7th St, New York City, NY 10001" -143857,Lightning Charging Cable,1,14.95,01/20/19 21:11,"144 4th St, New York City, NY 10001" -143857,AAA Batteries (4-pack),1,2.99,01/20/19 21:11,"144 4th St, New York City, NY 10001" -143858,AA Batteries (4-pack),1,3.84,01/09/19 10:20,"110 Park St, Seattle, WA 98101" -143859,Apple Airpods Headphones,1,150,01/03/19 23:25,"837 2nd St, Los Angeles, CA 90001" -143860,Lightning Charging Cable,1,14.95,01/14/19 13:46,"533 Jackson St, Boston, MA 02215" -143861,Vareebadd Phone,1,400,01/12/19 09:18,"902 Jefferson St, Austin, TX 73301" -143862,Apple Airpods Headphones,1,150,01/05/19 19:12,"752 Walnut St, New York City, NY 10001" -143863,Lightning Charging Cable,1,14.95,01/01/19 21:08,"884 Cherry St, Los Angeles, CA 90001" -143864,Lightning Charging Cable,1,14.95,01/06/19 11:06,"671 Madison St, Los Angeles, CA 90001" -143865,iPhone,1,700,01/26/19 20:53,"620 Johnson St, Seattle, WA 98101" -143865,Wired Headphones,1,11.99,01/26/19 20:53,"620 Johnson St, Seattle, WA 98101" -143866,27in 4K Gaming Monitor,1,389.99,01/08/19 12:33,"371 Church St, Portland, OR 97035" -143867,USB-C Charging Cable,1,11.95,01/07/19 14:04,"713 4th St, New York City, NY 10001" -143868,Apple Airpods Headphones,1,150,01/14/19 12:27,"206 Church St, Portland, OR 97035" -143869,iPhone,1,700,01/11/19 16:17,"481 Center St, San Francisco, CA 94016" -143869,Wired Headphones,1,11.99,01/11/19 16:17,"481 Center St, San Francisco, CA 94016" -143870,27in FHD Monitor,1,149.99,01/22/19 07:12,"473 Park St, New York City, NY 10001" -143871,AAA Batteries (4-pack),1,2.99,01/21/19 14:36,"88 South St, New York City, NY 10001" -143872,Lightning Charging Cable,2,14.95,01/10/19 06:47,"558 River St, San Francisco, CA 94016" -143873,Flatscreen TV,1,300,01/23/19 06:40,"14 Sunset St, Los Angeles, CA 90001" -143874,Lightning Charging Cable,1,14.95,01/30/19 12:14,"392 Chestnut St, San Francisco, CA 94016" -143875,USB-C Charging Cable,3,11.95,01/22/19 10:00,"907 Cherry St, Los Angeles, CA 90001" -143876,Apple Airpods Headphones,1,150,01/28/19 22:09,"265 Ridge St, San Francisco, CA 94016" -143877,ThinkPad Laptop,1,999.99,01/04/19 20:16,"792 6th St, Boston, MA 02215" -143878,AAA Batteries (4-pack),1,2.99,01/08/19 20:38,"108 South St, Seattle, WA 98101" -143879,USB-C Charging Cable,1,11.95,01/28/19 12:11,"665 Adams St, San Francisco, CA 94016" -143880,ThinkPad Laptop,1,999.99,01/02/19 15:45,"973 Willow St, Atlanta, GA 30301" -143881,Wired Headphones,1,11.99,01/25/19 14:47,"399 Johnson St, Los Angeles, CA 90001" -143882,27in FHD Monitor,1,149.99,01/17/19 10:26,"176 13th St, Dallas, TX 75001" -143883,AA Batteries (4-pack),1,3.84,01/07/19 15:41,"482 1st St, Los Angeles, CA 90001" -143884,AAA Batteries (4-pack),2,2.99,01/13/19 17:27,"297 Ridge St, Los Angeles, CA 90001" -143885,Bose SoundSport Headphones,1,99.99,01/23/19 20:54,"341 Lincoln St, San Francisco, CA 94016" -143886,USB-C Charging Cable,1,11.95,01/09/19 17:53,"900 South St, Austin, TX 73301" -143887,AA Batteries (4-pack),1,3.84,01/19/19 19:58,"728 4th St, San Francisco, CA 94016" -143888,Macbook Pro Laptop,1,1700,01/17/19 00:31,"368 Jackson St, Seattle, WA 98101" -143889,27in 4K Gaming Monitor,1,389.99,01/25/19 20:43,"637 Adams St, Seattle, WA 98101" -143890,USB-C Charging Cable,1,11.95,01/28/19 05:46,"232 Elm St, Atlanta, GA 30301" -143891,Bose SoundSport Headphones,1,99.99,01/22/19 10:27,"517 Wilson St, Los Angeles, CA 90001" -143892,Wired Headphones,1,11.99,01/19/19 00:55,"340 5th St, Los Angeles, CA 90001" -143893,34in Ultrawide Monitor,1,379.99,01/15/19 05:49,"163 9th St, San Francisco, CA 94016" -143894,ThinkPad Laptop,1,999.99,01/26/19 18:51,"264 Hill St, Los Angeles, CA 90001" -143895,ThinkPad Laptop,1,999.99,01/22/19 12:17,"51 Meadow St, Los Angeles, CA 90001" -143896,Google Phone,1,600,01/13/19 23:00,"753 River St, Austin, TX 73301" -143897,Google Phone,1,600,01/01/19 13:15,"979 9th St, Portland, OR 97035" -143898,34in Ultrawide Monitor,1,379.99,01/18/19 07:51,"11 4th St, New York City, NY 10001" -143899,Lightning Charging Cable,1,14.95,01/14/19 10:52,"159 7th St, Boston, MA 02215" -143900,Apple Airpods Headphones,1,150,01/22/19 15:23,"178 Willow St, San Francisco, CA 94016" -143901,Flatscreen TV,1,300,01/08/19 17:36,"436 Elm St, New York City, NY 10001" -143902,AA Batteries (4-pack),1,3.84,01/11/19 20:54,"357 Church St, New York City, NY 10001" -143903,USB-C Charging Cable,1,11.95,01/26/19 19:37,"817 Hickory St, Los Angeles, CA 90001" -143904,Macbook Pro Laptop,1,1700,01/14/19 12:42,"507 Cherry St, Dallas, TX 75001" -143905,Bose SoundSport Headphones,1,99.99,01/02/19 13:46,"237 8th St, Los Angeles, CA 90001" -143906,Google Phone,1,600,01/30/19 18:41,"602 Dogwood St, Dallas, TX 75001" -143907,AA Batteries (4-pack),1,3.84,01/05/19 14:36,"885 12th St, San Francisco, CA 94016" -143908,Lightning Charging Cable,1,14.95,01/04/19 00:41,"859 11th St, New York City, NY 10001" -143909,Wired Headphones,1,11.99,01/25/19 11:30,"189 5th St, Dallas, TX 75001" -143910,AA Batteries (4-pack),1,3.84,01/04/19 18:21,"21 8th St, New York City, NY 10001" -143911,Apple Airpods Headphones,1,150,01/29/19 18:57,"868 Wilson St, Dallas, TX 75001" -143912,AA Batteries (4-pack),2,3.84,01/02/19 16:17,"209 Center St, Boston, MA 02215" -143913,27in 4K Gaming Monitor,1,389.99,01/17/19 11:39,"240 Willow St, Los Angeles, CA 90001" -143914,USB-C Charging Cable,1,11.95,01/18/19 00:35,"766 Center St, San Francisco, CA 94016" -143915,Wired Headphones,1,11.99,01/05/19 11:09,"43 Jackson St, Austin, TX 73301" -143916,27in FHD Monitor,1,149.99,01/15/19 13:01,"822 Cherry St, Los Angeles, CA 90001" -143917,Lightning Charging Cable,1,14.95,01/17/19 11:53,"537 10th St, San Francisco, CA 94016" -143918,AAA Batteries (4-pack),1,2.99,01/16/19 10:49,"950 Main St, San Francisco, CA 94016" -143919,Wired Headphones,2,11.99,01/02/19 12:50,"195 Forest St, Seattle, WA 98101" -143920,Flatscreen TV,1,300,01/11/19 19:05,"679 Maple St, Los Angeles, CA 90001" -143921,Macbook Pro Laptop,1,1700,01/04/19 13:43,"241 Maple St, San Francisco, CA 94016" -143922,Lightning Charging Cable,1,14.95,01/04/19 13:24,"95 Madison St, Atlanta, GA 30301" -143923,Wired Headphones,1,11.99,01/08/19 22:28,"79 Elm St, Portland, OR 97035" -143924,Wired Headphones,1,11.99,01/12/19 00:32,"847 River St, Los Angeles, CA 90001" -143925,27in FHD Monitor,1,149.99,01/07/19 21:19,"564 2nd St, Los Angeles, CA 90001" -143926,Wired Headphones,1,11.99,01/24/19 14:46,"657 6th St, Atlanta, GA 30301" -143927,Apple Airpods Headphones,1,150,01/09/19 17:51,"542 5th St, San Francisco, CA 94016" -143928,27in FHD Monitor,1,149.99,01/28/19 21:03,"125 Spruce St, Portland, OR 97035" -143929,34in Ultrawide Monitor,1,379.99,01/29/19 23:20,"765 Sunset St, Los Angeles, CA 90001" -143930,AAA Batteries (4-pack),1,2.99,01/18/19 18:24,"216 Lake St, Seattle, WA 98101" -143931,USB-C Charging Cable,1,11.95,01/21/19 12:02,"317 West St, San Francisco, CA 94016" -143932,USB-C Charging Cable,1,11.95,01/16/19 20:54,"741 8th St, San Francisco, CA 94016" -143933,Bose SoundSport Headphones,1,99.99,01/06/19 10:06,"341 4th St, Atlanta, GA 30301" -143934,iPhone,1,700,01/12/19 08:26,"100 2nd St, Seattle, WA 98101" -143935,Lightning Charging Cable,1,14.95,01/07/19 12:06,"910 Wilson St, Portland, ME 04101" -143936,Bose SoundSport Headphones,1,99.99,01/20/19 09:28,"805 Pine St, Dallas, TX 75001" -143937,27in 4K Gaming Monitor,1,389.99,01/09/19 14:52,"872 7th St, Los Angeles, CA 90001" -143938,20in Monitor,1,109.99,01/04/19 22:05,"302 8th St, Seattle, WA 98101" -143939,Lightning Charging Cable,1,14.95,01/28/19 13:07,"361 Lincoln St, Los Angeles, CA 90001" -143940,ThinkPad Laptop,1,999.99,01/14/19 18:43,"553 12th St, Austin, TX 73301" -143941,Wired Headphones,1,11.99,01/20/19 20:24,"487 9th St, Dallas, TX 75001" -143942,AA Batteries (4-pack),1,3.84,01/30/19 09:42,"552 Hickory St, Boston, MA 02215" -143943,20in Monitor,1,109.99,01/16/19 18:41,"43 Pine St, New York City, NY 10001" -143944,Lightning Charging Cable,1,14.95,01/06/19 18:05,"958 2nd St, San Francisco, CA 94016" -143945,AA Batteries (4-pack),1,3.84,01/10/19 09:26,"221 6th St, New York City, NY 10001" -143946,Wired Headphones,2,11.99,01/18/19 18:15,"420 Cedar St, Dallas, TX 75001" -143947,Flatscreen TV,1,300,01/17/19 13:14,"899 Lakeview St, Dallas, TX 75001" -143948,Wired Headphones,1,11.99,01/06/19 14:27,"615 1st St, San Francisco, CA 94016" -143949,USB-C Charging Cable,1,11.95,01/18/19 22:02,"564 4th St, Dallas, TX 75001" -143950,AA Batteries (4-pack),1,3.84,01/20/19 12:44,"544 South St, Austin, TX 73301" -143951,Apple Airpods Headphones,1,150,01/15/19 21:45,"685 14th St, Los Angeles, CA 90001" -143952,Wired Headphones,1,11.99,01/13/19 14:11,"840 Adams St, San Francisco, CA 94016" -143953,AA Batteries (4-pack),1,3.84,01/26/19 11:24,"205 Walnut St, Atlanta, GA 30301" -143954,Wired Headphones,1,11.99,01/05/19 15:44,"615 Jackson St, Seattle, WA 98101" -143955,AA Batteries (4-pack),1,3.84,01/18/19 10:20,"855 River St, Atlanta, GA 30301" -143956,27in 4K Gaming Monitor,1,389.99,01/12/19 12:10,"510 North St, New York City, NY 10001" -143957,27in FHD Monitor,1,149.99,01/14/19 10:35,"321 Washington St, Atlanta, GA 30301" -143958,AAA Batteries (4-pack),4,2.99,01/21/19 11:56,"275 Maple St, Los Angeles, CA 90001" -143959,Google Phone,1,600,01/19/19 18:49,"468 Elm St, Atlanta, GA 30301" -143959,USB-C Charging Cable,1,11.95,01/19/19 18:49,"468 Elm St, Atlanta, GA 30301" -143960,AA Batteries (4-pack),1,3.84,01/14/19 00:34,"379 Park St, San Francisco, CA 94016" -143961,Bose SoundSport Headphones,1,99.99,01/17/19 12:43,"153 Hickory St, Atlanta, GA 30301" -143962,27in 4K Gaming Monitor,1,389.99,01/19/19 10:24,"712 Hickory St, Los Angeles, CA 90001" -143963,34in Ultrawide Monitor,1,379.99,01/28/19 01:06,"915 6th St, Austin, TX 73301" -143964,USB-C Charging Cable,1,11.95,01/06/19 23:33,"565 South St, New York City, NY 10001" -143965,Apple Airpods Headphones,1,150,01/21/19 20:43,"160 11th St, New York City, NY 10001" -143966,iPhone,1,700,01/18/19 22:26,"653 Main St, Seattle, WA 98101" -143967,USB-C Charging Cable,1,11.95,01/11/19 10:57,"554 Wilson St, Los Angeles, CA 90001" -143968,iPhone,1,700,01/29/19 11:21,"481 Adams St, New York City, NY 10001" -143969,27in FHD Monitor,1,149.99,01/27/19 12:23,"807 Maple St, San Francisco, CA 94016" -143970,Apple Airpods Headphones,1,150,01/07/19 11:00,"180 North St, San Francisco, CA 94016" -143971,Lightning Charging Cable,1,14.95,01/10/19 23:03,"972 Hill St, Boston, MA 02215" -143972,USB-C Charging Cable,1,11.95,01/31/19 07:41,"819 12th St, New York City, NY 10001" -143973,AAA Batteries (4-pack),2,2.99,01/23/19 20:21,"414 Cedar St, Los Angeles, CA 90001" -143974,Lightning Charging Cable,1,14.95,01/05/19 16:46,"82 10th St, Atlanta, GA 30301" -143975,Google Phone,1,600,01/21/19 22:53,"227 Lincoln St, Los Angeles, CA 90001" -143976,Bose SoundSport Headphones,1,99.99,01/03/19 22:53,"899 Lake St, Los Angeles, CA 90001" -143977,34in Ultrawide Monitor,1,379.99,01/13/19 14:27,"934 Maple St, Dallas, TX 75001" -143978,Wired Headphones,1,11.99,01/21/19 23:08,"302 Lakeview St, Los Angeles, CA 90001" -143979,Lightning Charging Cable,2,14.95,01/12/19 12:10,"683 Chestnut St, San Francisco, CA 94016" -143980,Lightning Charging Cable,1,14.95,01/15/19 22:04,"595 Sunset St, New York City, NY 10001" -143981,Lightning Charging Cable,1,14.95,01/17/19 19:56,"436 Walnut St, San Francisco, CA 94016" -143982,Apple Airpods Headphones,1,150,01/06/19 20:01,"417 Madison St, San Francisco, CA 94016" -143983,Bose SoundSport Headphones,1,99.99,01/27/19 22:47,"474 Highland St, Seattle, WA 98101" -143984,Wired Headphones,1,11.99,01/22/19 14:54,"459 Hickory St, Boston, MA 02215" -143985,Lightning Charging Cable,1,14.95,01/08/19 16:35,"417 West St, Dallas, TX 75001" -143986,Google Phone,1,600,01/29/19 22:06,"595 2nd St, San Francisco, CA 94016" -143986,USB-C Charging Cable,1,11.95,01/29/19 22:06,"595 2nd St, San Francisco, CA 94016" -143987,27in FHD Monitor,1,149.99,01/23/19 20:04,"915 11th St, New York City, NY 10001" -143988,27in 4K Gaming Monitor,1,389.99,01/13/19 19:24,"806 4th St, Atlanta, GA 30301" -143989,34in Ultrawide Monitor,1,379.99,01/13/19 07:44,"217 9th St, Los Angeles, CA 90001" -143990,Apple Airpods Headphones,1,150,01/23/19 20:11,"752 10th St, Dallas, TX 75001" -143991,USB-C Charging Cable,1,11.95,01/17/19 21:55,"646 Cedar St, Dallas, TX 75001" -143992,AAA Batteries (4-pack),1,2.99,01/13/19 12:58,"117 River St, San Francisco, CA 94016" -143993,27in 4K Gaming Monitor,1,389.99,01/25/19 12:04,"46 Spruce St, San Francisco, CA 94016" -143994,ThinkPad Laptop,1,999.99,01/19/19 09:37,"95 Lakeview St, Dallas, TX 75001" -143995,USB-C Charging Cable,1,11.95,01/16/19 17:51,"949 14th St, Austin, TX 73301" -143996,Flatscreen TV,1,300,01/19/19 15:53,"451 Meadow St, Boston, MA 02215" -143997,AAA Batteries (4-pack),2,2.99,01/08/19 20:39,"119 Main St, New York City, NY 10001" -143998,iPhone,1,700,01/24/19 11:12,"232 Cherry St, Atlanta, GA 30301" -143998,Wired Headphones,1,11.99,01/24/19 11:12,"232 Cherry St, Atlanta, GA 30301" -143999,AAA Batteries (4-pack),1,2.99,01/19/19 14:19,"251 Johnson St, Dallas, TX 75001" -144000,ThinkPad Laptop,1,999.99,01/07/19 22:08,"155 9th St, San Francisco, CA 94016" -144001,20in Monitor,1,109.99,01/11/19 11:35,"646 Johnson St, Los Angeles, CA 90001" -144002,Flatscreen TV,1,300,01/11/19 10:24,"644 Lakeview St, Boston, MA 02215" -144003,AAA Batteries (4-pack),1,2.99,01/22/19 06:33,"140 Ridge St, Los Angeles, CA 90001" -144004,20in Monitor,1,109.99,01/19/19 21:37,"736 Cedar St, Portland, OR 97035" -144005,AAA Batteries (4-pack),1,2.99,01/10/19 11:02,"195 Lincoln St, San Francisco, CA 94016" -144006,AA Batteries (4-pack),3,3.84,01/17/19 20:04,"21 Dogwood St, Los Angeles, CA 90001" -144007,Wired Headphones,1,11.99,01/22/19 16:45,"922 Forest St, San Francisco, CA 94016" -144008,AAA Batteries (4-pack),3,2.99,01/12/19 15:58,"692 Pine St, Boston, MA 02215" -144009,Apple Airpods Headphones,1,150,01/27/19 20:56,"12 Adams St, New York City, NY 10001" -144010,27in FHD Monitor,1,149.99,01/24/19 15:31,"86 1st St, Seattle, WA 98101" -144011,34in Ultrawide Monitor,1,379.99,01/04/19 09:05,"438 North St, Los Angeles, CA 90001" -144012,Flatscreen TV,1,300,01/31/19 14:59,"299 13th St, New York City, NY 10001" -144013,USB-C Charging Cable,1,11.95,01/13/19 23:05,"815 Ridge St, New York City, NY 10001" -144014,AA Batteries (4-pack),2,3.84,01/11/19 23:53,"116 Pine St, Austin, TX 73301" -144015,27in 4K Gaming Monitor,1,389.99,01/03/19 09:55,"165 Hill St, Boston, MA 02215" -144016,AAA Batteries (4-pack),2,2.99,01/01/19 23:12,"42 1st St, San Francisco, CA 94016" -144017,Lightning Charging Cable,1,14.95,01/14/19 11:28,"583 South St, New York City, NY 10001" -144018,Apple Airpods Headphones,1,150,01/09/19 09:58,"53 11th St, Seattle, WA 98101" -144019,20in Monitor,1,109.99,01/29/19 12:26,"889 Maple St, Boston, MA 02215" -144020,iPhone,1,700,01/10/19 22:35,"893 South St, New York City, NY 10001" -144021,AAA Batteries (4-pack),1,2.99,01/06/19 06:05,"290 Maple St, Atlanta, GA 30301" -144022,Google Phone,1,600,01/28/19 08:33,"799 Jackson St, Boston, MA 02215" -144023,Wired Headphones,1,11.99,01/29/19 12:10,"610 Highland St, Seattle, WA 98101" -144024,USB-C Charging Cable,1,11.95,01/21/19 10:52,"601 Madison St, San Francisco, CA 94016" -144025,AA Batteries (4-pack),1,3.84,01/21/19 13:57,"727 10th St, Los Angeles, CA 90001" -144026,AA Batteries (4-pack),1,3.84,01/18/19 18:35,"686 Jackson St, San Francisco, CA 94016" -144027,AA Batteries (4-pack),1,3.84,01/16/19 10:20,"321 Walnut St, Austin, TX 73301" -144028,AA Batteries (4-pack),1,3.84,01/18/19 15:41,"537 Chestnut St, Boston, MA 02215" -144029,Wired Headphones,1,11.99,01/15/19 08:23,"582 Maple St, Seattle, WA 98101" -144030,iPhone,1,700,01/17/19 11:40,"492 Johnson St, New York City, NY 10001" -144031,Lightning Charging Cable,1,14.95,01/03/19 11:00,"938 Church St, Portland, OR 97035" -144032,Wired Headphones,1,11.99,01/17/19 20:03,"920 Wilson St, New York City, NY 10001" -144033,AA Batteries (4-pack),1,3.84,01/07/19 19:09,"562 7th St, Los Angeles, CA 90001" -144034,AAA Batteries (4-pack),2,2.99,01/12/19 11:58,"771 11th St, Los Angeles, CA 90001" -144035,Apple Airpods Headphones,1,150,01/07/19 23:17,"681 Jackson St, San Francisco, CA 94016" -144036,Vareebadd Phone,1,400,01/24/19 20:08,"569 Jackson St, San Francisco, CA 94016" -144036,USB-C Charging Cable,1,11.95,01/24/19 20:08,"569 Jackson St, San Francisco, CA 94016" -144037,iPhone,1,700,01/03/19 15:50,"745 12th St, San Francisco, CA 94016" -144038,iPhone,1,700,01/23/19 18:55,"751 Wilson St, Austin, TX 73301" -144039,AAA Batteries (4-pack),2,2.99,01/11/19 19:41,"547 Center St, Atlanta, GA 30301" -144040,Macbook Pro Laptop,1,1700,01/23/19 00:11,"714 4th St, Boston, MA 02215" -144041,AA Batteries (4-pack),1,3.84,01/28/19 05:10,"577 Highland St, New York City, NY 10001" -144042,AA Batteries (4-pack),1,3.84,01/12/19 12:16,"43 8th St, Seattle, WA 98101" -144043,AAA Batteries (4-pack),1,2.99,01/15/19 12:14,"760 Walnut St, Los Angeles, CA 90001" -144044,iPhone,1,700,01/30/19 21:04,"760 South St, Los Angeles, CA 90001" -144045,Wired Headphones,1,11.99,01/19/19 07:33,"505 2nd St, Seattle, WA 98101" -144046,USB-C Charging Cable,1,11.95,01/12/19 10:15,"532 1st St, San Francisco, CA 94016" -144047,Google Phone,1,600,01/18/19 15:21,"417 4th St, San Francisco, CA 94016" -144047,Bose SoundSport Headphones,1,99.99,01/18/19 15:21,"417 4th St, San Francisco, CA 94016" -144048,Apple Airpods Headphones,1,150,01/29/19 15:03,"899 Wilson St, New York City, NY 10001" -144049,AA Batteries (4-pack),1,3.84,01/20/19 14:11,"947 Madison St, San Francisco, CA 94016" -144050,Lightning Charging Cable,1,14.95,01/10/19 23:46,"647 4th St, Portland, OR 97035" -144051,Apple Airpods Headphones,1,150,01/28/19 23:45,"802 Pine St, Boston, MA 02215" -144052,LG Washing Machine,1,600.0,01/23/19 16:08,"748 North St, San Francisco, CA 94016" -144053,USB-C Charging Cable,1,11.95,01/30/19 10:30,"914 Sunset St, Austin, TX 73301" -144054,iPhone,1,700,01/27/19 21:27,"541 Adams St, Los Angeles, CA 90001" -144055,Lightning Charging Cable,1,14.95,01/28/19 20:17,"302 Dogwood St, San Francisco, CA 94016" -144055,USB-C Charging Cable,1,11.95,01/28/19 20:17,"302 Dogwood St, San Francisco, CA 94016" -144056,Lightning Charging Cable,1,14.95,01/12/19 09:57,"39 Meadow St, Boston, MA 02215" -144057,Apple Airpods Headphones,1,150,01/20/19 23:21,"123 Lincoln St, Boston, MA 02215" -144058,27in FHD Monitor,1,149.99,01/07/19 22:33,"845 11th St, New York City, NY 10001" -144058,Lightning Charging Cable,1,14.95,01/07/19 22:33,"845 11th St, New York City, NY 10001" -144059,Lightning Charging Cable,1,14.95,01/10/19 21:58,"231 Adams St, New York City, NY 10001" -144060,Wired Headphones,1,11.99,01/23/19 19:05,"974 Elm St, San Francisco, CA 94016" -144061,27in 4K Gaming Monitor,1,389.99,01/07/19 15:41,"839 Adams St, San Francisco, CA 94016" -144062,Apple Airpods Headphones,1,150,01/02/19 09:40,"79 Lincoln St, New York City, NY 10001" -144063,iPhone,1,700,01/02/19 13:53,"755 Forest St, Dallas, TX 75001" -144063,Apple Airpods Headphones,1,150,01/02/19 13:53,"755 Forest St, Dallas, TX 75001" -144064,Bose SoundSport Headphones,1,99.99,01/17/19 17:56,"376 Chestnut St, Atlanta, GA 30301" -144065,Apple Airpods Headphones,1,150,01/23/19 09:22,"227 Spruce St, New York City, NY 10001" -144066,Flatscreen TV,1,300,01/06/19 10:36,"341 1st St, Atlanta, GA 30301" -144066,USB-C Charging Cable,1,11.95,01/06/19 10:36,"341 1st St, Atlanta, GA 30301" -144067,Lightning Charging Cable,1,14.95,01/21/19 10:26,"323 Cedar St, Dallas, TX 75001" -144068,USB-C Charging Cable,1,11.95,01/30/19 04:39,"767 Madison St, Seattle, WA 98101" -144069,LG Washing Machine,1,600.0,01/24/19 20:23,"992 North St, New York City, NY 10001" -144069,Bose SoundSport Headphones,1,99.99,01/24/19 20:23,"992 North St, New York City, NY 10001" -144070,Wired Headphones,1,11.99,01/04/19 19:43,"274 Chestnut St, Portland, OR 97035" -144071,ThinkPad Laptop,1,999.99,01/25/19 19:17,"312 Washington St, San Francisco, CA 94016" -144072,ThinkPad Laptop,1,999.99,01/25/19 23:43,"769 Lakeview St, Seattle, WA 98101" -144073,AA Batteries (4-pack),1,3.84,01/17/19 12:15,"490 12th St, Boston, MA 02215" -144074,Wired Headphones,1,11.99,01/20/19 12:34,"969 Main St, Dallas, TX 75001" -144075,AA Batteries (4-pack),2,3.84,01/28/19 18:19,"208 8th St, Atlanta, GA 30301" -144076,27in 4K Gaming Monitor,1,389.99,01/31/19 19:38,"97 Chestnut St, Portland, OR 97035" -144077,Google Phone,1,600,01/05/19 18:11,"732 Highland St, New York City, NY 10001" -144078,USB-C Charging Cable,1,11.95,01/21/19 09:46,"235 11th St, Los Angeles, CA 90001" -144079,Lightning Charging Cable,1,14.95,01/31/19 22:33,"750 West St, Boston, MA 02215" -144080,USB-C Charging Cable,1,11.95,01/30/19 20:45,"740 Willow St, Los Angeles, CA 90001" -144081,USB-C Charging Cable,1,11.95,01/21/19 19:22,"371 Highland St, Portland, OR 97035" -144082,AA Batteries (4-pack),1,3.84,01/15/19 20:33,"921 Church St, New York City, NY 10001" -144083,Wired Headphones,1,11.99,01/08/19 20:23,"81 5th St, Austin, TX 73301" -144084,AAA Batteries (4-pack),1,2.99,01/22/19 16:13,"92 11th St, Los Angeles, CA 90001" -144085,AAA Batteries (4-pack),2,2.99,01/28/19 08:39,"109 5th St, Los Angeles, CA 90001" -144086,AAA Batteries (4-pack),1,2.99,01/12/19 19:07,"670 Main St, Los Angeles, CA 90001" -144087,USB-C Charging Cable,1,11.95,01/27/19 12:09,"676 Cherry St, New York City, NY 10001" -144088,USB-C Charging Cable,1,11.95,01/15/19 12:26,"911 Madison St, Seattle, WA 98101" -144089,27in FHD Monitor,1,149.99,01/31/19 18:51,"504 Park St, Los Angeles, CA 90001" -144090,Bose SoundSport Headphones,1,99.99,01/21/19 13:05,"989 4th St, San Francisco, CA 94016" -144091,AA Batteries (4-pack),1,3.84,01/18/19 13:29,"951 7th St, San Francisco, CA 94016" -144092,iPhone,1,700,01/19/19 21:07,"627 Meadow St, Atlanta, GA 30301" -144093,AAA Batteries (4-pack),1,2.99,01/03/19 16:25,"782 Lincoln St, New York City, NY 10001" -144094,AA Batteries (4-pack),1,3.84,01/26/19 13:24,"280 Madison St, New York City, NY 10001" -144095,Flatscreen TV,1,300,01/25/19 17:43,"779 Walnut St, Boston, MA 02215" -144096,Bose SoundSport Headphones,1,99.99,01/29/19 10:16,"588 Johnson St, Seattle, WA 98101" -144097,AA Batteries (4-pack),3,3.84,01/14/19 12:09,"29 2nd St, San Francisco, CA 94016" -144098,Lightning Charging Cable,1,14.95,01/11/19 20:32,"642 9th St, Dallas, TX 75001" -144099,27in FHD Monitor,1,149.99,01/05/19 21:20,"799 12th St, Dallas, TX 75001" -144100,34in Ultrawide Monitor,1,379.99,01/31/19 15:40,"780 Center St, Dallas, TX 75001" -144101,USB-C Charging Cable,1,11.95,01/26/19 17:56,"432 2nd St, Dallas, TX 75001" -144102,34in Ultrawide Monitor,1,379.99,01/16/19 23:03,"794 Church St, Austin, TX 73301" -144103,LG Washing Machine,1,600.0,01/30/19 16:15,"766 Dogwood St, Atlanta, GA 30301" -144104,AAA Batteries (4-pack),1,2.99,01/21/19 19:33,"731 Willow St, New York City, NY 10001" -144105,AA Batteries (4-pack),1,3.84,01/13/19 13:00,"845 14th St, Seattle, WA 98101" -144106,AA Batteries (4-pack),1,3.84,01/05/19 19:36,"229 Walnut St, San Francisco, CA 94016" -144107,34in Ultrawide Monitor,1,379.99,01/30/19 01:46,"9 Chestnut St, San Francisco, CA 94016" -144108,USB-C Charging Cable,2,11.95,01/15/19 10:30,"749 Maple St, New York City, NY 10001" -144109,AAA Batteries (4-pack),1,2.99,01/13/19 15:53,"509 Hill St, Dallas, TX 75001" -144110,Vareebadd Phone,1,400,01/25/19 22:48,"929 Jefferson St, Seattle, WA 98101" -144111,27in FHD Monitor,1,149.99,01/23/19 22:38,"725 Sunset St, Los Angeles, CA 90001" -144112,Apple Airpods Headphones,1,150,01/25/19 21:28,"245 River St, Portland, OR 97035" -144113,Flatscreen TV,1,300,01/07/19 06:30,"996 Pine St, Los Angeles, CA 90001" -144114,iPhone,1,700,01/02/19 19:19,"426 14th St, San Francisco, CA 94016" -144115,Wired Headphones,1,11.99,01/18/19 09:40,"332 13th St, Atlanta, GA 30301" -144116,Lightning Charging Cable,1,14.95,01/18/19 23:53,"514 Willow St, New York City, NY 10001" -144117,Lightning Charging Cable,1,14.95,01/13/19 10:31,"189 Washington St, San Francisco, CA 94016" -144118,27in FHD Monitor,1,149.99,01/27/19 16:14,"816 River St, San Francisco, CA 94016" -144119,AA Batteries (4-pack),1,3.84,01/02/19 12:48,"932 7th St, San Francisco, CA 94016" -144120,AA Batteries (4-pack),2,3.84,01/02/19 08:29,"794 8th St, San Francisco, CA 94016" -144121,USB-C Charging Cable,1,11.95,01/03/19 10:46,"320 Sunset St, Los Angeles, CA 90001" -144122,Apple Airpods Headphones,1,150,01/31/19 17:14,"862 9th St, New York City, NY 10001" -144123,27in FHD Monitor,1,149.99,01/12/19 15:56,"581 14th St, Los Angeles, CA 90001" -144124,USB-C Charging Cable,2,11.95,01/07/19 09:25,"106 River St, New York City, NY 10001" -,,,,, -144125,Lightning Charging Cable,1,14.95,01/04/19 12:44,"305 Walnut St, New York City, NY 10001" -144126,Wired Headphones,1,11.99,01/19/19 19:04,"766 12th St, Boston, MA 02215" -144127,Google Phone,1,600,01/02/19 22:08,"101 1st St, San Francisco, CA 94016" -144128,AA Batteries (4-pack),1,3.84,01/27/19 13:21,"388 Cedar St, Dallas, TX 75001" -144129,Lightning Charging Cable,1,14.95,01/16/19 21:15,"350 Church St, New York City, NY 10001" -144130,Bose SoundSport Headphones,1,99.99,01/27/19 16:44,"14 Meadow St, Atlanta, GA 30301" -144131,AAA Batteries (4-pack),1,2.99,01/08/19 08:51,"787 11th St, Boston, MA 02215" -144132,Wired Headphones,1,11.99,01/13/19 07:22,"321 Church St, Los Angeles, CA 90001" -144133,Lightning Charging Cable,1,14.95,01/18/19 10:09,"181 12th St, Boston, MA 02215" -144134,AA Batteries (4-pack),2,3.84,01/27/19 16:15,"301 9th St, Los Angeles, CA 90001" -144135,27in FHD Monitor,1,149.99,01/29/19 06:22,"827 Main St, San Francisco, CA 94016" -144136,AA Batteries (4-pack),2,3.84,01/26/19 22:27,"454 Ridge St, San Francisco, CA 94016" -144137,Wired Headphones,1,11.99,01/05/19 11:30,"495 Ridge St, San Francisco, CA 94016" -144138,Bose SoundSport Headphones,1,99.99,01/17/19 09:57,"568 Main St, Los Angeles, CA 90001" -144139,Flatscreen TV,1,300,01/20/19 22:02,"346 8th St, Los Angeles, CA 90001" -144140,Lightning Charging Cable,1,14.95,01/20/19 05:20,"773 Johnson St, San Francisco, CA 94016" -144141,Lightning Charging Cable,1,14.95,01/15/19 13:14,"13 Jackson St, Dallas, TX 75001" -144142,Wired Headphones,1,11.99,01/23/19 12:23,"634 Elm St, Dallas, TX 75001" -144143,Lightning Charging Cable,1,14.95,01/01/19 16:16,"975 Dogwood St, San Francisco, CA 94016" -144144,Lightning Charging Cable,1,14.95,01/12/19 23:28,"468 Hill St, Boston, MA 02215" -144145,AA Batteries (4-pack),1,3.84,01/12/19 21:43,"485 Church St, Austin, TX 73301" -144146,AA Batteries (4-pack),2,3.84,01/21/19 13:14,"4 6th St, San Francisco, CA 94016" -144147,AAA Batteries (4-pack),1,2.99,01/24/19 13:20,"853 Wilson St, New York City, NY 10001" -144148,27in FHD Monitor,1,149.99,01/24/19 11:06,"982 Jefferson St, San Francisco, CA 94016" -144149,Wired Headphones,1,11.99,01/02/19 21:14,"981 4th St, San Francisco, CA 94016" -144150,Apple Airpods Headphones,1,150,01/17/19 16:56,"398 Church St, Boston, MA 02215" -144151,LG Dryer,1,600.0,01/15/19 14:15,"773 Church St, New York City, NY 10001" -144152,AA Batteries (4-pack),1,3.84,01/27/19 11:52,"459 14th St, Boston, MA 02215" -144153,Apple Airpods Headphones,1,150,01/03/19 15:29,"230 Madison St, Los Angeles, CA 90001" -144154,Wired Headphones,1,11.99,01/16/19 02:36,"366 Maple St, San Francisco, CA 94016" -144155,AAA Batteries (4-pack),6,2.99,01/08/19 11:26,"42 Lakeview St, Atlanta, GA 30301" -144156,Lightning Charging Cable,1,14.95,01/28/19 09:18,"148 Dogwood St, Los Angeles, CA 90001" -144157,Apple Airpods Headphones,1,150,01/27/19 15:07,"746 Jackson St, New York City, NY 10001" -144158,Vareebadd Phone,1,400,01/01/19 18:04,"661 Cedar St, San Francisco, CA 94016" -,,,,, -144159,AA Batteries (4-pack),1,3.84,01/01/19 21:46,"269 Main St, Atlanta, GA 30301" -144160,AA Batteries (4-pack),3,3.84,01/04/19 22:24,"565 5th St, San Francisco, CA 94016" -144161,Wired Headphones,1,11.99,01/12/19 09:31,"652 5th St, New York City, NY 10001" -144162,Flatscreen TV,1,300,01/02/19 12:05,"14 South St, Boston, MA 02215" -144163,Lightning Charging Cable,1,14.95,01/06/19 19:02,"878 Lake St, Seattle, WA 98101" -144164,Bose SoundSport Headphones,1,99.99,01/22/19 11:46,"632 Wilson St, San Francisco, CA 94016" -144165,USB-C Charging Cable,1,11.95,01/18/19 08:30,"519 Hill St, New York City, NY 10001" -144166,AAA Batteries (4-pack),1,2.99,01/09/19 11:50,"186 Pine St, Atlanta, GA 30301" -144167,USB-C Charging Cable,1,11.95,01/14/19 15:51,"524 Washington St, Seattle, WA 98101" -144168,Bose SoundSport Headphones,1,99.99,01/07/19 15:27,"569 12th St, Atlanta, GA 30301" -144169,Lightning Charging Cable,1,14.95,01/24/19 15:48,"517 River St, San Francisco, CA 94016" -144170,ThinkPad Laptop,1,999.99,01/24/19 21:33,"524 South St, Boston, MA 02215" -144171,Lightning Charging Cable,1,14.95,01/22/19 19:52,"702 Forest St, Austin, TX 73301" -144172,Lightning Charging Cable,1,14.95,01/28/19 17:40,"67 Sunset St, New York City, NY 10001" -144173,Wired Headphones,1,11.99,01/14/19 07:33,"237 Spruce St, Los Angeles, CA 90001" -144174,27in 4K Gaming Monitor,1,389.99,01/25/19 19:12,"447 Main St, Boston, MA 02215" -144175,LG Dryer,1,600.0,01/10/19 09:23,"252 Forest St, New York City, NY 10001" -144176,AAA Batteries (4-pack),1,2.99,01/14/19 13:20,"748 10th St, San Francisco, CA 94016" -144177,27in FHD Monitor,1,149.99,01/17/19 20:20,"769 West St, San Francisco, CA 94016" -144178,Apple Airpods Headphones,1,150,01/16/19 12:09,"572 Church St, San Francisco, CA 94016" -144179,34in Ultrawide Monitor,1,379.99,01/21/19 22:12,"408 Cedar St, Los Angeles, CA 90001" -144180,Apple Airpods Headphones,1,150,01/21/19 20:32,"898 Hill St, Los Angeles, CA 90001" -144181,USB-C Charging Cable,1,11.95,01/22/19 07:06,"200 12th St, Atlanta, GA 30301" -144182,AA Batteries (4-pack),1,3.84,01/18/19 19:09,"856 Jefferson St, Austin, TX 73301" -144183,Bose SoundSport Headphones,1,99.99,01/16/19 17:33,"288 Jefferson St, New York City, NY 10001" -144184,Wired Headphones,1,11.99,01/12/19 12:25,"739 Cherry St, New York City, NY 10001" -144185,AA Batteries (4-pack),1,3.84,01/14/19 22:33,"961 Main St, San Francisco, CA 94016" -144186,Bose SoundSport Headphones,1,99.99,01/25/19 11:36,"688 North St, Los Angeles, CA 90001" -144187,Bose SoundSport Headphones,1,99.99,01/27/19 10:36,"296 Johnson St, Austin, TX 73301" -144188,Bose SoundSport Headphones,1,99.99,01/15/19 01:18,"676 Park St, Los Angeles, CA 90001" -144189,Wired Headphones,1,11.99,01/13/19 19:05,"686 7th St, San Francisco, CA 94016" -144190,USB-C Charging Cable,1,11.95,01/29/19 18:50,"275 Center St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -144191,Bose SoundSport Headphones,1,99.99,01/31/19 11:33,"805 River St, San Francisco, CA 94016" -144192,USB-C Charging Cable,1,11.95,01/28/19 12:40,"759 Main St, San Francisco, CA 94016" -144193,Lightning Charging Cable,1,14.95,01/15/19 11:18,"200 Lake St, New York City, NY 10001" -144194,USB-C Charging Cable,1,11.95,01/02/19 20:36,"315 12th St, New York City, NY 10001" -144195,Bose SoundSport Headphones,1,99.99,01/15/19 15:14,"613 Cedar St, Boston, MA 02215" -144196,27in FHD Monitor,1,149.99,01/03/19 10:50,"785 Church St, New York City, NY 10001" -144197,34in Ultrawide Monitor,1,379.99,01/01/19 18:22,"332 Wilson St, Boston, MA 02215" -144198,Wired Headphones,2,11.99,01/13/19 20:17,"178 14th St, Austin, TX 73301" -144199,USB-C Charging Cable,1,11.95,01/15/19 11:09,"495 10th St, Los Angeles, CA 90001" -144200,AA Batteries (4-pack),3,3.84,01/28/19 17:17,"792 Highland St, Boston, MA 02215" -144201,Wired Headphones,2,11.99,01/13/19 09:53,"361 Main St, Atlanta, GA 30301" -144202,Lightning Charging Cable,1,14.95,01/24/19 18:22,"575 Jackson St, Los Angeles, CA 90001" -144203,AA Batteries (4-pack),1,3.84,01/23/19 18:46,"55 Jackson St, Boston, MA 02215" -144204,Apple Airpods Headphones,1,150,01/06/19 11:55,"352 Chestnut St, San Francisco, CA 94016" -144205,AA Batteries (4-pack),1,3.84,01/24/19 14:32,"213 10th St, Los Angeles, CA 90001" -144206,USB-C Charging Cable,1,11.95,01/04/19 02:43,"173 Walnut St, Seattle, WA 98101" -144207,AA Batteries (4-pack),1,3.84,01/14/19 18:54,"358 6th St, Los Angeles, CA 90001" -144208,AA Batteries (4-pack),1,3.84,01/09/19 20:19,"661 Spruce St, Atlanta, GA 30301" -144209,AA Batteries (4-pack),1,3.84,01/13/19 03:04,"18 Chestnut St, Dallas, TX 75001" -144210,USB-C Charging Cable,1,11.95,01/22/19 13:30,"929 1st St, New York City, NY 10001" -144211,34in Ultrawide Monitor,1,379.99,01/09/19 21:29,"943 13th St, Austin, TX 73301" -144212,Google Phone,2,600,01/15/19 19:48,"545 Washington St, Los Angeles, CA 90001" -144213,Wired Headphones,1,11.99,01/19/19 12:22,"83 7th St, Boston, MA 02215" -144214,AAA Batteries (4-pack),2,2.99,01/02/19 13:02,"928 Dogwood St, Boston, MA 02215" -144215,Lightning Charging Cable,1,14.95,01/04/19 22:03,"517 South St, Austin, TX 73301" -144216,USB-C Charging Cable,1,11.95,01/13/19 17:06,"143 River St, Portland, OR 97035" -144217,AA Batteries (4-pack),1,3.84,01/31/19 13:50,"766 Hill St, San Francisco, CA 94016" -144218,AA Batteries (4-pack),2,3.84,01/18/19 23:17,"605 Sunset St, Los Angeles, CA 90001" -144219,27in 4K Gaming Monitor,1,389.99,01/26/19 22:53,"923 5th St, San Francisco, CA 94016" -144220,34in Ultrawide Monitor,1,379.99,01/07/19 21:20,"354 1st St, Austin, TX 73301" -144221,Apple Airpods Headphones,1,150,01/08/19 23:24,"444 13th St, New York City, NY 10001" -144222,Apple Airpods Headphones,1,150,01/24/19 23:04,"102 Pine St, San Francisco, CA 94016" -144223,Bose SoundSport Headphones,1,99.99,01/07/19 15:56,"837 Chestnut St, Austin, TX 73301" -144224,USB-C Charging Cable,1,11.95,01/15/19 11:18,"397 West St, Seattle, WA 98101" -144225,Flatscreen TV,1,300,01/27/19 07:55,"562 Jackson St, Dallas, TX 75001" -144226,AA Batteries (4-pack),1,3.84,01/06/19 00:19,"176 Maple St, Portland, OR 97035" -144227,Macbook Pro Laptop,1,1700,01/01/19 21:42,"774 Main St, San Francisco, CA 94016" -144228,AA Batteries (4-pack),1,3.84,01/05/19 22:05,"822 Dogwood St, San Francisco, CA 94016" -144229,LG Washing Machine,1,600.0,01/28/19 18:32,"505 8th St, Atlanta, GA 30301" -144230,USB-C Charging Cable,1,11.95,01/29/19 00:29,"106 Dogwood St, Dallas, TX 75001" -144231,Wired Headphones,1,11.99,01/01/19 11:48,"493 Main St, Los Angeles, CA 90001" -144232,Macbook Pro Laptop,1,1700,01/09/19 14:34,"439 Forest St, San Francisco, CA 94016" -144233,27in 4K Gaming Monitor,1,389.99,01/30/19 10:31,"23 Highland St, Portland, OR 97035" -144234,27in FHD Monitor,1,149.99,01/23/19 21:04,"569 Chestnut St, San Francisco, CA 94016" -144235,Bose SoundSport Headphones,1,99.99,01/26/19 09:29,"387 Pine St, San Francisco, CA 94016" -144236,27in FHD Monitor,1,149.99,01/15/19 21:27,"748 Hickory St, Portland, OR 97035" -144237,Wired Headphones,1,11.99,01/20/19 05:19,"289 Maple St, San Francisco, CA 94016" -144238,34in Ultrawide Monitor,1,379.99,01/26/19 07:45,"460 Church St, Portland, OR 97035" -144239,34in Ultrawide Monitor,1,379.99,01/08/19 19:38,"601 Johnson St, San Francisco, CA 94016" -144240,Apple Airpods Headphones,1,150,01/02/19 06:10,"707 Ridge St, Atlanta, GA 30301" -144241,Lightning Charging Cable,1,14.95,01/09/19 13:20,"321 Lakeview St, Atlanta, GA 30301" -144242,AA Batteries (4-pack),1,3.84,01/24/19 23:35,"221 Madison St, San Francisco, CA 94016" -144243,Wired Headphones,1,11.99,01/05/19 07:22,"943 10th St, San Francisco, CA 94016" -144244,27in FHD Monitor,1,149.99,01/16/19 16:58,"165 Walnut St, Los Angeles, CA 90001" -144245,34in Ultrawide Monitor,1,379.99,01/12/19 21:46,"42 Main St, San Francisco, CA 94016" -144246,AA Batteries (4-pack),1,3.84,01/06/19 10:00,"907 2nd St, New York City, NY 10001" -144247,iPhone,1,700,01/21/19 14:03,"359 12th St, Los Angeles, CA 90001" -144248,AA Batteries (4-pack),2,3.84,01/30/19 05:09,"29 Adams St, Atlanta, GA 30301" -144249,AA Batteries (4-pack),1,3.84,01/14/19 09:41,"565 Center St, Los Angeles, CA 90001" -144250,Wired Headphones,1,11.99,01/27/19 21:19,"522 6th St, New York City, NY 10001" -144251,20in Monitor,1,109.99,01/11/19 16:10,"837 Highland St, Dallas, TX 75001" -144252,Wired Headphones,1,11.99,01/01/19 17:56,"164 Park St, Atlanta, GA 30301" -144253,AAA Batteries (4-pack),1,2.99,01/25/19 00:06,"207 Walnut St, Seattle, WA 98101" -144254,Wired Headphones,1,11.99,01/30/19 12:24,"479 7th St, San Francisco, CA 94016" -144255,Bose SoundSport Headphones,1,99.99,01/22/19 22:02,"970 Spruce St, Boston, MA 02215" -144256,AAA Batteries (4-pack),1,2.99,01/11/19 17:33,"752 2nd St, Atlanta, GA 30301" -144257,Lightning Charging Cable,1,14.95,01/26/19 10:46,"380 12th St, Austin, TX 73301" -144258,Macbook Pro Laptop,1,1700,01/25/19 21:36,"650 13th St, New York City, NY 10001" -144259,USB-C Charging Cable,1,11.95,01/11/19 18:37,"132 Center St, Dallas, TX 75001" -144260,Google Phone,1,600,01/15/19 20:20,"418 Park St, Atlanta, GA 30301" -144261,20in Monitor,1,109.99,01/30/19 16:17,"130 Walnut St, Austin, TX 73301" -144262,ThinkPad Laptop,1,999.99,01/10/19 15:23,"563 Lake St, New York City, NY 10001" -144263,Lightning Charging Cable,1,14.95,01/09/19 20:49,"878 Sunset St, Boston, MA 02215" -144264,34in Ultrawide Monitor,1,379.99,01/16/19 10:52,"416 South St, New York City, NY 10001" -144265,20in Monitor,1,109.99,01/23/19 09:55,"980 2nd St, Seattle, WA 98101" -144266,ThinkPad Laptop,1,999.99,01/25/19 21:39,"279 Wilson St, Boston, MA 02215" -144267,USB-C Charging Cable,1,11.95,01/27/19 11:33,"998 11th St, Boston, MA 02215" -144268,AAA Batteries (4-pack),1,2.99,01/17/19 09:51,"191 South St, Los Angeles, CA 90001" -144269,Apple Airpods Headphones,1,150,01/04/19 10:42,"661 Chestnut St, Portland, OR 97035" -144270,AA Batteries (4-pack),1,3.84,01/20/19 22:41,"292 2nd St, Dallas, TX 75001" -144271,iPhone,1,700,01/28/19 23:02,"2 Cherry St, San Francisco, CA 94016" -144271,Lightning Charging Cable,1,14.95,01/28/19 23:02,"2 Cherry St, San Francisco, CA 94016" -144272,AAA Batteries (4-pack),1,2.99,01/21/19 21:42,"413 Jefferson St, Los Angeles, CA 90001" -144273,Lightning Charging Cable,1,14.95,01/22/19 10:01,"300 Ridge St, Atlanta, GA 30301" -144274,USB-C Charging Cable,1,11.95,01/22/19 11:04,"642 Hill St, New York City, NY 10001" -144275,AAA Batteries (4-pack),3,2.99,01/09/19 00:09,"384 Lakeview St, Boston, MA 02215" -144276,AAA Batteries (4-pack),1,2.99,01/06/19 00:17,"826 Maple St, Atlanta, GA 30301" -144277,27in FHD Monitor,1,149.99,01/02/19 20:50,"241 West St, New York City, NY 10001" -144278,AAA Batteries (4-pack),3,2.99,01/13/19 20:28,"699 1st St, San Francisco, CA 94016" -144279,20in Monitor,1,109.99,01/07/19 19:13,"423 2nd St, Portland, OR 97035" -144280,20in Monitor,1,109.99,01/09/19 10:10,"509 Adams St, Los Angeles, CA 90001" -144281,Flatscreen TV,1,300,01/28/19 14:50,"664 Willow St, Seattle, WA 98101" -144282,Macbook Pro Laptop,1,1700,01/31/19 16:59,"721 Spruce St, Atlanta, GA 30301" -144283,Bose SoundSport Headphones,1,99.99,01/10/19 16:20,"833 Spruce St, Atlanta, GA 30301" -144284,AAA Batteries (4-pack),2,2.99,01/01/19 11:09,"126 13th St, Seattle, WA 98101" -144285,Wired Headphones,1,11.99,01/12/19 23:06,"447 Madison St, Boston, MA 02215" -144286,Lightning Charging Cable,1,14.95,01/24/19 07:09,"606 10th St, New York City, NY 10001" -144287,Wired Headphones,1,11.99,01/16/19 09:45,"951 Adams St, Boston, MA 02215" -144288,AAA Batteries (4-pack),2,2.99,01/26/19 21:57,"987 South St, Los Angeles, CA 90001" -144289,34in Ultrawide Monitor,1,379.99,01/21/19 22:49,"449 Pine St, Boston, MA 02215" -144290,34in Ultrawide Monitor,1,379.99,01/08/19 08:59,"631 13th St, Seattle, WA 98101" -144291,Apple Airpods Headphones,1,150,01/04/19 18:00,"738 4th St, Dallas, TX 75001" -144292,Wired Headphones,1,11.99,01/11/19 21:44,"313 13th St, Los Angeles, CA 90001" -144293,AAA Batteries (4-pack),2,2.99,01/16/19 11:41,"698 Jackson St, Austin, TX 73301" -144294,Google Phone,1,600,01/13/19 09:56,"306 14th St, Los Angeles, CA 90001" -144295,USB-C Charging Cable,1,11.95,01/15/19 14:39,"340 Madison St, San Francisco, CA 94016" -144296,Lightning Charging Cable,1,14.95,01/16/19 12:03,"946 Maple St, New York City, NY 10001" -144297,Flatscreen TV,1,300,01/21/19 14:37,"437 Madison St, Atlanta, GA 30301" -144298,Lightning Charging Cable,1,14.95,01/13/19 12:00,"709 North St, Los Angeles, CA 90001" -144299,27in 4K Gaming Monitor,1,389.99,01/31/19 19:57,"942 North St, San Francisco, CA 94016" -144300,Apple Airpods Headphones,1,150,01/11/19 14:22,"532 River St, San Francisco, CA 94016" -144301,Flatscreen TV,1,300,01/01/19 15:27,"75 Lake St, Los Angeles, CA 90001" -144302,USB-C Charging Cable,1,11.95,01/13/19 11:43,"82 2nd St, San Francisco, CA 94016" -144303,iPhone,1,700,01/26/19 09:03,"419 Meadow St, San Francisco, CA 94016" -144304,USB-C Charging Cable,1,11.95,01/22/19 16:53,"451 Elm St, Atlanta, GA 30301" -144305,USB-C Charging Cable,1,11.95,01/01/19 20:13,"664 Wilson St, Los Angeles, CA 90001" -144306,Lightning Charging Cable,1,14.95,01/15/19 13:02,"829 Lakeview St, Los Angeles, CA 90001" -144307,USB-C Charging Cable,1,11.95,01/09/19 18:50,"459 Center St, Austin, TX 73301" -144308,Wired Headphones,1,11.99,01/28/19 21:14,"439 West St, Los Angeles, CA 90001" -144309,27in FHD Monitor,1,149.99,01/21/19 00:56,"999 Adams St, Austin, TX 73301" -144310,Wired Headphones,1,11.99,01/17/19 13:53,"984 Lincoln St, New York City, NY 10001" -144311,USB-C Charging Cable,1,11.95,01/26/19 07:40,"500 South St, Dallas, TX 75001" -144312,27in FHD Monitor,1,149.99,01/03/19 20:43,"563 Wilson St, Los Angeles, CA 90001" -144313,27in 4K Gaming Monitor,1,389.99,01/11/19 08:11,"918 Madison St, San Francisco, CA 94016" -144314,Lightning Charging Cable,1,14.95,01/20/19 11:39,"88 Ridge St, Seattle, WA 98101" -144315,Flatscreen TV,1,300,01/28/19 18:33,"9 Johnson St, Atlanta, GA 30301" -144316,Lightning Charging Cable,1,14.95,01/29/19 16:05,"909 Cedar St, San Francisco, CA 94016" -144317,Wired Headphones,1,11.99,01/18/19 17:08,"335 6th St, San Francisco, CA 94016" -144318,USB-C Charging Cable,1,11.95,01/20/19 16:46,"490 Chestnut St, Atlanta, GA 30301" -144319,Wired Headphones,1,11.99,01/18/19 12:40,"517 Wilson St, Dallas, TX 75001" -144320,34in Ultrawide Monitor,1,379.99,01/21/19 14:49,"118 South St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -144321,Apple Airpods Headphones,1,150,01/19/19 22:49,"552 North St, New York City, NY 10001" -144322,Wired Headphones,2,11.99,01/23/19 19:09,"578 Highland St, Boston, MA 02215" -144323,Flatscreen TV,1,300,01/31/19 12:09,"929 Park St, Portland, ME 04101" -144324,Bose SoundSport Headphones,1,99.99,01/14/19 12:02,"864 7th St, Los Angeles, CA 90001" -144325,AA Batteries (4-pack),1,3.84,01/10/19 18:47,"777 10th St, Los Angeles, CA 90001" -144326,USB-C Charging Cable,1,11.95,01/25/19 12:22,"63 Center St, New York City, NY 10001" -144327,20in Monitor,1,109.99,01/15/19 20:42,"85 Elm St, Los Angeles, CA 90001" -144328,Wired Headphones,1,11.99,01/23/19 12:47,"332 River St, New York City, NY 10001" -144329,27in FHD Monitor,1,149.99,01/03/19 12:07,"760 West St, San Francisco, CA 94016" -144330,AA Batteries (4-pack),1,3.84,01/11/19 14:37,"112 13th St, San Francisco, CA 94016" -144331,Apple Airpods Headphones,1,150,01/26/19 14:08,"389 Hill St, Los Angeles, CA 90001" -144332,iPhone,1,700,01/28/19 18:17,"880 11th St, New York City, NY 10001" -144333,Apple Airpods Headphones,1,150,01/11/19 16:39,"939 7th St, San Francisco, CA 94016" -144334,Lightning Charging Cable,1,14.95,01/29/19 19:09,"11 North St, New York City, NY 10001" -144335,Apple Airpods Headphones,1,150,01/10/19 09:43,"339 Elm St, Austin, TX 73301" -144336,Lightning Charging Cable,1,14.95,01/20/19 17:11,"538 Main St, San Francisco, CA 94016" -144337,Wired Headphones,1,11.99,01/03/19 20:37,"49 8th St, Boston, MA 02215" -144338,Lightning Charging Cable,1,14.95,01/20/19 12:37,"725 Center St, Los Angeles, CA 90001" -144339,iPhone,1,700,01/21/19 14:33,"953 Hickory St, Los Angeles, CA 90001" -144339,Wired Headphones,1,11.99,01/21/19 14:33,"953 Hickory St, Los Angeles, CA 90001" -144340,Apple Airpods Headphones,1,150,01/30/19 21:22,"397 Wilson St, New York City, NY 10001" -144341,USB-C Charging Cable,1,11.95,01/17/19 09:21,"161 Main St, New York City, NY 10001" -144342,Bose SoundSport Headphones,1,99.99,01/27/19 13:43,"66 Washington St, Los Angeles, CA 90001" -144343,Bose SoundSport Headphones,1,99.99,01/03/19 02:29,"285 5th St, New York City, NY 10001" -144344,Google Phone,1,600,01/25/19 22:26,"188 14th St, Boston, MA 02215" -144344,USB-C Charging Cable,1,11.95,01/25/19 22:26,"188 14th St, Boston, MA 02215" -144345,Bose SoundSport Headphones,1,99.99,01/22/19 14:50,"740 4th St, Atlanta, GA 30301" -144346,AA Batteries (4-pack),1,3.84,01/01/19 19:56,"162 Jefferson St, Los Angeles, CA 90001" -144347,Apple Airpods Headphones,1,150,01/21/19 12:11,"594 6th St, Portland, OR 97035" -144348,AA Batteries (4-pack),1,3.84,01/08/19 14:54,"655 Forest St, New York City, NY 10001" -144349,iPhone,1,700,01/05/19 23:48,"398 Adams St, Atlanta, GA 30301" -144350,USB-C Charging Cable,2,11.95,01/31/19 12:15,"364 Center St, Los Angeles, CA 90001" -144351,Apple Airpods Headphones,1,150,01/19/19 17:23,"448 Johnson St, Atlanta, GA 30301" -144352,AA Batteries (4-pack),1,3.84,01/23/19 17:26,"161 Forest St, Boston, MA 02215" -144353,iPhone,1,700,01/05/19 04:52,"151 Main St, Dallas, TX 75001" -144354,Wired Headphones,1,11.99,01/08/19 13:09,"96 Meadow St, Seattle, WA 98101" -144355,USB-C Charging Cable,1,11.95,01/19/19 06:35,"368 Church St, New York City, NY 10001" -144356,Bose SoundSport Headphones,1,99.99,01/19/19 17:28,"938 4th St, Dallas, TX 75001" -144357,27in FHD Monitor,1,149.99,01/04/19 12:55,"858 14th St, Los Angeles, CA 90001" -144358,AAA Batteries (4-pack),1,2.99,01/11/19 11:41,"212 Park St, Dallas, TX 75001" -144359,AAA Batteries (4-pack),1,2.99,01/19/19 18:18,"489 Adams St, San Francisco, CA 94016" -144360,27in FHD Monitor,1,149.99,01/20/19 16:58,"380 Meadow St, Boston, MA 02215" -144361,Bose SoundSport Headphones,1,99.99,01/04/19 06:40,"249 River St, Austin, TX 73301" -144362,Lightning Charging Cable,1,14.95,01/23/19 00:38,"195 Johnson St, San Francisco, CA 94016" -144363,ThinkPad Laptop,1,999.99,01/26/19 12:51,"881 Adams St, New York City, NY 10001" -144364,Macbook Pro Laptop,1,1700,01/20/19 08:31,"190 10th St, San Francisco, CA 94016" -144365,20in Monitor,1,109.99,01/18/19 10:34,"146 Lake St, San Francisco, CA 94016" -144366,AA Batteries (4-pack),1,3.84,01/25/19 11:25,"932 8th St, Boston, MA 02215" -144367,Wired Headphones,1,11.99,01/09/19 08:15,"105 South St, New York City, NY 10001" -144368,Apple Airpods Headphones,1,150,01/01/19 17:17,"249 8th St, San Francisco, CA 94016" -144369,Apple Airpods Headphones,1,150,01/30/19 11:39,"10 Sunset St, San Francisco, CA 94016" -144370,Lightning Charging Cable,2,14.95,01/19/19 19:26,"910 5th St, New York City, NY 10001" -144371,AAA Batteries (4-pack),1,2.99,01/12/19 19:37,"217 Chestnut St, Dallas, TX 75001" -144372,USB-C Charging Cable,1,11.95,01/13/19 20:27,"787 Washington St, Dallas, TX 75001" -144373,AA Batteries (4-pack),1,3.84,01/21/19 12:48,"13 Hickory St, Dallas, TX 75001" -144374,Wired Headphones,1,11.99,01/03/19 08:43,"407 Washington St, Los Angeles, CA 90001" -144375,USB-C Charging Cable,1,11.95,01/18/19 01:04,"517 River St, New York City, NY 10001" -144376,Lightning Charging Cable,1,14.95,01/03/19 13:40,"915 Willow St, San Francisco, CA 94016" -144377,34in Ultrawide Monitor,1,379.99,01/30/19 14:33,"877 1st St, Atlanta, GA 30301" -144378,Wired Headphones,1,11.99,01/29/19 10:34,"927 Church St, Los Angeles, CA 90001" -144379,Bose SoundSport Headphones,1,99.99,01/22/19 07:05,"357 9th St, San Francisco, CA 94016" -144380,Bose SoundSport Headphones,1,99.99,01/27/19 20:16,"696 14th St, San Francisco, CA 94016" -144381,AAA Batteries (4-pack),1,2.99,01/04/19 19:39,"754 Hickory St, Portland, ME 04101" -144382,27in 4K Gaming Monitor,1,389.99,01/19/19 21:58,"501 Park St, Seattle, WA 98101" -144383,AA Batteries (4-pack),1,3.84,01/03/19 07:53,"434 Johnson St, San Francisco, CA 94016" -144384,Macbook Pro Laptop,1,1700,01/27/19 09:25,"765 4th St, Boston, MA 02215" -144385,AA Batteries (4-pack),1,3.84,01/14/19 13:11,"197 Wilson St, San Francisco, CA 94016" -144386,Wired Headphones,1,11.99,01/30/19 14:56,"117 Lake St, San Francisco, CA 94016" -144387,Macbook Pro Laptop,1,1700,01/31/19 19:37,"430 Park St, San Francisco, CA 94016" -144388,27in FHD Monitor,1,149.99,01/24/19 13:19,"338 2nd St, Seattle, WA 98101" -144389,AAA Batteries (4-pack),1,2.99,01/19/19 14:39,"256 North St, Los Angeles, CA 90001" -144390,Wired Headphones,1,11.99,01/28/19 14:51,"525 Spruce St, Los Angeles, CA 90001" -144391,20in Monitor,1,109.99,01/17/19 07:10,"378 Washington St, Portland, ME 04101" -144392,20in Monitor,1,109.99,01/23/19 15:57,"353 Lake St, San Francisco, CA 94016" -144393,Macbook Pro Laptop,1,1700,01/09/19 22:50,"38 Lakeview St, San Francisco, CA 94016" -144394,Google Phone,1,600,01/04/19 08:49,"621 Church St, Atlanta, GA 30301" -144394,Wired Headphones,1,11.99,01/04/19 08:49,"621 Church St, Atlanta, GA 30301" -144395,AA Batteries (4-pack),1,3.84,01/09/19 20:20,"609 11th St, San Francisco, CA 94016" -144396,AA Batteries (4-pack),1,3.84,01/07/19 22:36,"406 West St, San Francisco, CA 94016" -144397,Bose SoundSport Headphones,1,99.99,01/20/19 13:31,"653 Ridge St, Austin, TX 73301" -144398,34in Ultrawide Monitor,1,379.99,01/16/19 08:32,"824 Forest St, Boston, MA 02215" -144399,USB-C Charging Cable,1,11.95,01/30/19 15:46,"912 Elm St, New York City, NY 10001" -144400,Apple Airpods Headphones,1,150,01/24/19 09:17,"176 13th St, Los Angeles, CA 90001" -144401,AAA Batteries (4-pack),1,2.99,01/20/19 19:09,"493 12th St, New York City, NY 10001" -144402,Wired Headphones,1,11.99,01/08/19 10:56,"733 4th St, San Francisco, CA 94016" -144403,Lightning Charging Cable,1,14.95,01/06/19 19:56,"604 Walnut St, Los Angeles, CA 90001" -144404,27in FHD Monitor,1,149.99,01/26/19 19:47,"324 13th St, Portland, OR 97035" -144405,AAA Batteries (4-pack),1,2.99,01/28/19 14:30,"595 Walnut St, Portland, OR 97035" -144406,Bose SoundSport Headphones,1,99.99,01/20/19 12:04,"218 Madison St, Dallas, TX 75001" -144407,Wired Headphones,1,11.99,01/11/19 16:05,"932 Lake St, Boston, MA 02215" -144408,Lightning Charging Cable,1,14.95,01/24/19 21:03,"728 Lake St, New York City, NY 10001" -144409,AA Batteries (4-pack),2,3.84,01/07/19 10:32,"271 Washington St, Austin, TX 73301" -144410,Apple Airpods Headphones,1,150,01/15/19 08:06,"364 Center St, San Francisco, CA 94016" -144411,iPhone,1,700,01/28/19 08:53,"425 1st St, Boston, MA 02215" -144412,AA Batteries (4-pack),1,3.84,01/22/19 09:12,"229 Center St, Dallas, TX 75001" -144413,Vareebadd Phone,1,400,01/22/19 15:41,"417 8th St, Los Angeles, CA 90001" -144414,iPhone,1,700,01/26/19 22:22,"174 5th St, San Francisco, CA 94016" -144414,Lightning Charging Cable,1,14.95,01/26/19 22:22,"174 5th St, San Francisco, CA 94016" -144415,USB-C Charging Cable,1,11.95,01/23/19 13:30,"346 8th St, Los Angeles, CA 90001" -144416,LG Dryer,1,600.0,01/21/19 22:53,"68 Lincoln St, New York City, NY 10001" -144417,Lightning Charging Cable,1,14.95,01/31/19 20:45,"2 Hickory St, San Francisco, CA 94016" -144418,iPhone,1,700,01/10/19 23:14,"471 Hickory St, San Francisco, CA 94016" -144419,USB-C Charging Cable,1,11.95,01/19/19 19:18,"77 River St, San Francisco, CA 94016" -144420,AAA Batteries (4-pack),2,2.99,01/06/19 13:12,"888 14th St, Los Angeles, CA 90001" -144421,LG Dryer,1,600.0,01/06/19 16:45,"262 Chestnut St, San Francisco, CA 94016" -144422,Apple Airpods Headphones,1,150,01/20/19 07:02,"366 Lincoln St, Los Angeles, CA 90001" -144423,USB-C Charging Cable,1,11.95,01/11/19 10:28,"876 Spruce St, Dallas, TX 75001" -144424,Lightning Charging Cable,1,14.95,01/23/19 14:19,"864 South St, Atlanta, GA 30301" -144425,Lightning Charging Cable,1,14.95,01/24/19 13:20,"308 6th St, Atlanta, GA 30301" -144426,Bose SoundSport Headphones,1,99.99,01/27/19 20:04,"894 Cherry St, Atlanta, GA 30301" -144427,Bose SoundSport Headphones,1,99.99,01/08/19 17:17,"778 14th St, Atlanta, GA 30301" -144428,Macbook Pro Laptop,1,1700,01/13/19 02:00,"938 8th St, Dallas, TX 75001" -144429,Wired Headphones,1,11.99,01/15/19 11:08,"136 Dogwood St, San Francisco, CA 94016" -144430,AA Batteries (4-pack),1,3.84,01/27/19 21:08,"241 Madison St, New York City, NY 10001" -144431,Google Phone,1,600,01/17/19 18:07,"798 4th St, Los Angeles, CA 90001" -144431,Wired Headphones,1,11.99,01/17/19 18:07,"798 4th St, Los Angeles, CA 90001" -144432,Bose SoundSport Headphones,1,99.99,01/16/19 19:47,"469 Ridge St, San Francisco, CA 94016" -144433,USB-C Charging Cable,2,11.95,01/19/19 11:19,"713 1st St, New York City, NY 10001" -144434,AA Batteries (4-pack),1,3.84,01/08/19 02:03,"311 14th St, Portland, ME 04101" -144435,Apple Airpods Headphones,1,150,01/31/19 11:35,"342 Lakeview St, Seattle, WA 98101" -144436,20in Monitor,1,109.99,01/10/19 17:16,"788 Dogwood St, Seattle, WA 98101" -144437,Lightning Charging Cable,1,14.95,01/21/19 14:20,"86 Johnson St, Boston, MA 02215" -144438,Wired Headphones,1,11.99,01/02/19 18:55,"110 Adams St, Seattle, WA 98101" -144439,AA Batteries (4-pack),2,3.84,01/22/19 10:06,"973 Madison St, Seattle, WA 98101" -144440,ThinkPad Laptop,1,999.99,01/12/19 23:06,"770 Willow St, Los Angeles, CA 90001" -144441,20in Monitor,1,109.99,01/23/19 17:16,"430 5th St, Los Angeles, CA 90001" -144442,Bose SoundSport Headphones,1,99.99,01/31/19 18:02,"467 Walnut St, San Francisco, CA 94016" -144443,USB-C Charging Cable,1,11.95,01/14/19 13:39,"168 10th St, Los Angeles, CA 90001" -144444,Apple Airpods Headphones,1,150,01/02/19 19:45,"441 Willow St, San Francisco, CA 94016" -144445,Bose SoundSport Headphones,1,99.99,01/09/19 21:25,"703 Maple St, Boston, MA 02215" -144446,Apple Airpods Headphones,1,150,01/01/19 15:33,"403 North St, San Francisco, CA 94016" -144447,Lightning Charging Cable,1,14.95,01/07/19 00:04,"4 14th St, San Francisco, CA 94016" -144448,AA Batteries (4-pack),2,3.84,01/18/19 17:59,"277 South St, San Francisco, CA 94016" -144449,AA Batteries (4-pack),1,3.84,01/28/19 22:37,"99 Hill St, San Francisco, CA 94016" -144450,Lightning Charging Cable,1,14.95,01/18/19 10:03,"105 13th St, Los Angeles, CA 90001" -144450,Macbook Pro Laptop,1,1700,01/18/19 10:03,"105 13th St, Los Angeles, CA 90001" -144451,Macbook Pro Laptop,1,1700,01/15/19 11:59,"608 Hickory St, New York City, NY 10001" -144452,34in Ultrawide Monitor,1,379.99,01/13/19 12:05,"413 North St, Boston, MA 02215" -144453,Vareebadd Phone,1,400,01/19/19 13:09,"800 Cherry St, Seattle, WA 98101" -144454,Apple Airpods Headphones,1,150,01/31/19 11:45,"762 13th St, Seattle, WA 98101" -144455,AAA Batteries (4-pack),1,2.99,01/14/19 15:25,"216 Cedar St, Atlanta, GA 30301" -144456,Bose SoundSport Headphones,1,99.99,01/29/19 12:56,"373 Adams St, Austin, TX 73301" -144457,Apple Airpods Headphones,1,150,01/10/19 11:48,"160 Lincoln St, Boston, MA 02215" -144458,Lightning Charging Cable,1,14.95,01/19/19 22:41,"602 5th St, New York City, NY 10001" -144459,Wired Headphones,1,11.99,01/11/19 18:30,"3 10th St, Los Angeles, CA 90001" -144460,Apple Airpods Headphones,1,150,01/01/19 13:08,"624 5th St, Los Angeles, CA 90001" -144461,Apple Airpods Headphones,1,150,01/02/19 13:30,"35 Dogwood St, New York City, NY 10001" -144462,Wired Headphones,1,11.99,01/09/19 09:11,"167 Highland St, Atlanta, GA 30301" -144463,Apple Airpods Headphones,1,150,01/10/19 21:33,"249 Jefferson St, New York City, NY 10001" -144464,AAA Batteries (4-pack),1,2.99,01/05/19 01:51,"851 Hickory St, San Francisco, CA 94016" -144465,Apple Airpods Headphones,1,150,01/15/19 12:49,"551 2nd St, San Francisco, CA 94016" -144466,AAA Batteries (4-pack),2,2.99,01/16/19 23:28,"956 Dogwood St, Dallas, TX 75001" -144467,Lightning Charging Cable,1,14.95,01/31/19 12:09,"327 North St, San Francisco, CA 94016" -144468,Lightning Charging Cable,1,14.95,01/28/19 00:39,"855 5th St, Austin, TX 73301" -144469,USB-C Charging Cable,1,11.95,01/22/19 18:27,"373 7th St, New York City, NY 10001" -144470,Lightning Charging Cable,1,14.95,01/14/19 22:00,"574 Sunset St, Boston, MA 02215" -144470,USB-C Charging Cable,1,11.95,01/14/19 22:00,"574 Sunset St, Boston, MA 02215" -144471,USB-C Charging Cable,1,11.95,01/10/19 14:40,"393 Center St, New York City, NY 10001" -144472,AAA Batteries (4-pack),2,2.99,01/20/19 21:13,"787 Washington St, Los Angeles, CA 90001" -144473,Lightning Charging Cable,2,14.95,01/16/19 19:04,"166 Washington St, San Francisco, CA 94016" -144474,Apple Airpods Headphones,1,150,01/03/19 11:11,"837 South St, Seattle, WA 98101" -144475,USB-C Charging Cable,1,11.95,01/09/19 18:44,"15 9th St, Boston, MA 02215" -144476,AA Batteries (4-pack),1,3.84,01/25/19 08:02,"239 Hickory St, Los Angeles, CA 90001" -144477,27in 4K Gaming Monitor,1,389.99,01/05/19 18:40,"494 North St, Boston, MA 02215" -144478,AA Batteries (4-pack),2,3.84,01/18/19 13:41,"672 Sunset St, New York City, NY 10001" -144479,Wired Headphones,1,11.99,01/30/19 20:29,"434 Willow St, Boston, MA 02215" -144480,AAA Batteries (4-pack),1,2.99,01/02/19 17:09,"433 Pine St, Dallas, TX 75001" -144481,34in Ultrawide Monitor,1,379.99,01/16/19 08:48,"180 West St, San Francisco, CA 94016" -144482,Apple Airpods Headphones,1,150,01/25/19 20:40,"76 11th St, Los Angeles, CA 90001" -144483,Lightning Charging Cable,1,14.95,01/23/19 20:11,"845 Highland St, Austin, TX 73301" -144484,27in FHD Monitor,1,149.99,01/28/19 09:43,"538 Elm St, Dallas, TX 75001" -144485,AA Batteries (4-pack),1,3.84,01/31/19 16:30,"765 Johnson St, San Francisco, CA 94016" -144486,Bose SoundSport Headphones,1,99.99,01/10/19 07:15,"58 Lake St, Boston, MA 02215" -144487,Google Phone,1,600,01/25/19 17:46,"314 Lakeview St, Atlanta, GA 30301" -144488,AAA Batteries (4-pack),1,2.99,01/17/19 18:51,"439 Lakeview St, Los Angeles, CA 90001" -144489,Wired Headphones,1,11.99,01/30/19 09:07,"109 8th St, Boston, MA 02215" -144490,Google Phone,1,600,01/17/19 10:42,"719 Lincoln St, Atlanta, GA 30301" -144490,USB-C Charging Cable,1,11.95,01/17/19 10:42,"719 Lincoln St, Atlanta, GA 30301" -144491,AA Batteries (4-pack),1,3.84,01/09/19 15:02,"987 Lakeview St, Atlanta, GA 30301" -144492,20in Monitor,1,109.99,01/13/19 00:37,"11 Cherry St, Seattle, WA 98101" -144493,27in 4K Gaming Monitor,1,389.99,01/06/19 20:32,"776 Hickory St, New York City, NY 10001" -144494,Wired Headphones,1,11.99,01/04/19 21:39,"165 Dogwood St, Los Angeles, CA 90001" -144495,Lightning Charging Cable,1,14.95,01/18/19 01:44,"932 Ridge St, New York City, NY 10001" -144496,Apple Airpods Headphones,1,150,01/12/19 18:51,"824 Johnson St, San Francisco, CA 94016" -144497,USB-C Charging Cable,1,11.95,01/20/19 15:09,"415 2nd St, San Francisco, CA 94016" -144498,Wired Headphones,1,11.99,01/25/19 17:58,"289 Church St, Dallas, TX 75001" -144499,Google Phone,1,600,01/25/19 11:25,"888 River St, New York City, NY 10001" -144500,Wired Headphones,1,11.99,01/21/19 11:09,"640 West St, New York City, NY 10001" -144501,AAA Batteries (4-pack),3,2.99,01/09/19 10:42,"909 Center St, Boston, MA 02215" -144502,Lightning Charging Cable,1,14.95,01/09/19 19:34,"659 Madison St, San Francisco, CA 94016" -144503,iPhone,1,700,01/15/19 22:54,"830 10th St, Portland, OR 97035" -144503,Apple Airpods Headphones,1,150,01/15/19 22:54,"830 10th St, Portland, OR 97035" -144504,LG Dryer,1,600.0,01/23/19 09:07,"741 13th St, Atlanta, GA 30301" -144505,Apple Airpods Headphones,1,150,01/01/19 10:31,"89 Center St, Seattle, WA 98101" -144506,AAA Batteries (4-pack),1,2.99,01/12/19 12:47,"769 10th St, Atlanta, GA 30301" -144507,27in 4K Gaming Monitor,1,389.99,01/08/19 18:42,"884 Hickory St, Seattle, WA 98101" -144508,Flatscreen TV,1,300,01/06/19 11:59,"202 Highland St, Austin, TX 73301" -144509,Wired Headphones,1,11.99,01/15/19 11:02,"130 14th St, Dallas, TX 75001" -144510,USB-C Charging Cable,1,11.95,01/12/19 18:24,"517 River St, San Francisco, CA 94016" -144511,AA Batteries (4-pack),1,3.84,01/16/19 20:02,"331 Chestnut St, Boston, MA 02215" -144512,Wired Headphones,1,11.99,01/14/19 18:28,"877 Main St, Seattle, WA 98101" -144513,Bose SoundSport Headphones,1,99.99,01/07/19 17:02,"417 Forest St, Boston, MA 02215" -144514,LG Dryer,1,600.0,01/08/19 08:30,"744 Park St, Boston, MA 02215" -144515,Lightning Charging Cable,2,14.95,01/11/19 09:22,"357 Hill St, New York City, NY 10001" -144516,Lightning Charging Cable,1,14.95,01/07/19 23:11,"550 Pine St, Portland, ME 04101" -144517,AA Batteries (4-pack),2,3.84,01/20/19 22:26,"612 Church St, Los Angeles, CA 90001" -144518,Google Phone,1,600,01/03/19 17:41,"471 Hickory St, Seattle, WA 98101" -144518,USB-C Charging Cable,1,11.95,01/03/19 17:41,"471 Hickory St, Seattle, WA 98101" -144519,27in FHD Monitor,1,149.99,01/05/19 22:39,"569 Hill St, San Francisco, CA 94016" -144520,AAA Batteries (4-pack),1,2.99,01/16/19 18:53,"423 Park St, Portland, OR 97035" -144521,Flatscreen TV,1,300,01/03/19 18:07,"370 Maple St, San Francisco, CA 94016" -144522,Lightning Charging Cable,1,14.95,01/07/19 22:16,"313 Dogwood St, Atlanta, GA 30301" -144523,34in Ultrawide Monitor,1,379.99,01/22/19 12:37,"186 Meadow St, New York City, NY 10001" -144524,AA Batteries (4-pack),1,3.84,01/19/19 13:14,"943 Hill St, Los Angeles, CA 90001" -144525,Lightning Charging Cable,1,14.95,01/27/19 14:55,"756 Washington St, Los Angeles, CA 90001" -144526,AA Batteries (4-pack),2,3.84,01/30/19 13:13,"846 10th St, Dallas, TX 75001" -144527,Lightning Charging Cable,1,14.95,01/18/19 00:02,"89 11th St, New York City, NY 10001" -144528,AA Batteries (4-pack),1,3.84,01/28/19 10:54,"15 Madison St, San Francisco, CA 94016" -144529,Lightning Charging Cable,1,14.95,01/25/19 22:40,"122 Washington St, Dallas, TX 75001" -144530,iPhone,1,700,01/07/19 11:19,"247 Main St, San Francisco, CA 94016" -144531,27in 4K Gaming Monitor,1,389.99,01/09/19 21:45,"572 Walnut St, San Francisco, CA 94016" -144532,AAA Batteries (4-pack),1,2.99,01/09/19 22:04,"520 7th St, Seattle, WA 98101" -144533,USB-C Charging Cable,1,11.95,01/20/19 23:25,"490 Spruce St, New York City, NY 10001" -144534,27in 4K Gaming Monitor,1,389.99,01/31/19 14:12,"126 Cedar St, San Francisco, CA 94016" -144535,Apple Airpods Headphones,1,150,01/09/19 10:21,"936 Elm St, San Francisco, CA 94016" -144536,Flatscreen TV,1,300,01/19/19 16:22,"137 Lakeview St, Los Angeles, CA 90001" -144537,Bose SoundSport Headphones,1,99.99,01/01/19 09:12,"164 West St, Boston, MA 02215" -144538,iPhone,1,700,01/16/19 18:05,"283 Cedar St, Atlanta, GA 30301" -144539,AA Batteries (4-pack),2,3.84,01/21/19 15:43,"418 Pine St, Los Angeles, CA 90001" -144540,USB-C Charging Cable,2,11.95,01/06/19 22:04,"868 Elm St, Los Angeles, CA 90001" -144541,Wired Headphones,1,11.99,01/11/19 16:28,"779 Washington St, Austin, TX 73301" -144541,Bose SoundSport Headphones,1,99.99,01/11/19 16:28,"779 Washington St, Austin, TX 73301" -144542,Lightning Charging Cable,1,14.95,01/22/19 17:00,"126 8th St, Atlanta, GA 30301" -144543,Lightning Charging Cable,1,14.95,01/03/19 10:57,"593 Elm St, San Francisco, CA 94016" -144544,Vareebadd Phone,1,400,01/15/19 11:38,"178 6th St, Seattle, WA 98101" -144544,USB-C Charging Cable,1,11.95,01/15/19 11:38,"178 6th St, Seattle, WA 98101" -144545,AAA Batteries (4-pack),2,2.99,01/12/19 21:00,"374 10th St, Dallas, TX 75001" -144545,AA Batteries (4-pack),1,3.84,01/12/19 21:00,"374 10th St, Dallas, TX 75001" -144546,USB-C Charging Cable,2,11.95,01/08/19 14:56,"203 Hill St, San Francisco, CA 94016" -144547,27in FHD Monitor,1,149.99,01/13/19 22:47,"83 Elm St, New York City, NY 10001" -144548,iPhone,1,700,01/28/19 11:25,"450 9th St, Dallas, TX 75001" -144549,34in Ultrawide Monitor,1,379.99,01/26/19 14:12,"364 Lincoln St, San Francisco, CA 94016" -144550,Apple Airpods Headphones,1,150,01/26/19 14:10,"801 5th St, Boston, MA 02215" -144551,iPhone,1,700,01/23/19 06:53,"135 Willow St, Boston, MA 02215" -144551,Lightning Charging Cable,2,14.95,01/23/19 06:53,"135 Willow St, Boston, MA 02215" -144552,Wired Headphones,1,11.99,01/24/19 17:26,"560 South St, Boston, MA 02215" -144553,ThinkPad Laptop,1,999.99,01/24/19 13:32,"177 Sunset St, Los Angeles, CA 90001" -144554,USB-C Charging Cable,1,11.95,01/15/19 13:11,"266 Cedar St, Austin, TX 73301" -144555,USB-C Charging Cable,2,11.95,01/19/19 09:18,"35 1st St, New York City, NY 10001" -144556,AAA Batteries (4-pack),2,2.99,01/19/19 13:34,"836 4th St, San Francisco, CA 94016" -144557,USB-C Charging Cable,1,11.95,01/12/19 12:09,"859 Chestnut St, Dallas, TX 75001" -144558,Lightning Charging Cable,1,14.95,01/28/19 19:14,"512 11th St, Los Angeles, CA 90001" -144559,AAA Batteries (4-pack),1,2.99,01/13/19 18:35,"319 Elm St, New York City, NY 10001" -144560,Macbook Pro Laptop,1,1700,01/09/19 20:34,"589 Maple St, New York City, NY 10001" -144561,Lightning Charging Cable,1,14.95,01/21/19 15:57,"889 South St, San Francisco, CA 94016" -144562,AAA Batteries (4-pack),2,2.99,01/13/19 18:08,"984 12th St, San Francisco, CA 94016" -144563,Wired Headphones,1,11.99,01/19/19 17:22,"366 Madison St, Portland, OR 97035" -144564,Wired Headphones,1,11.99,01/10/19 18:34,"541 Lakeview St, San Francisco, CA 94016" -144565,AAA Batteries (4-pack),1,2.99,01/10/19 16:45,"392 7th St, Boston, MA 02215" -144566,Apple Airpods Headphones,1,150,01/04/19 09:58,"625 11th St, Los Angeles, CA 90001" -144567,USB-C Charging Cable,1,11.95,01/27/19 17:47,"646 Cedar St, Austin, TX 73301" -144568,AAA Batteries (4-pack),1,2.99,01/30/19 14:14,"279 Hill St, Dallas, TX 75001" -144569,AA Batteries (4-pack),1,3.84,01/31/19 14:36,"188 South St, San Francisco, CA 94016" -144570,Wired Headphones,1,11.99,01/11/19 19:21,"930 1st St, Los Angeles, CA 90001" -144571,AAA Batteries (4-pack),1,2.99,01/30/19 14:15,"936 14th St, San Francisco, CA 94016" -144572,Wired Headphones,1,11.99,01/13/19 14:08,"967 Jackson St, San Francisco, CA 94016" -144573,AA Batteries (4-pack),2,3.84,01/11/19 10:45,"287 Madison St, Boston, MA 02215" -144574,Lightning Charging Cable,1,14.95,01/05/19 21:05,"18 Meadow St, San Francisco, CA 94016" -144575,Lightning Charging Cable,1,14.95,01/09/19 09:28,"361 Dogwood St, Los Angeles, CA 90001" -144576,Lightning Charging Cable,1,14.95,01/08/19 00:23,"766 Lakeview St, Dallas, TX 75001" -144577,Bose SoundSport Headphones,1,99.99,01/08/19 05:04,"885 River St, Los Angeles, CA 90001" -144578,Apple Airpods Headphones,1,150,01/04/19 23:42,"229 Highland St, Dallas, TX 75001" -144579,USB-C Charging Cable,1,11.95,01/11/19 09:45,"815 13th St, San Francisco, CA 94016" -144580,Bose SoundSport Headphones,1,99.99,01/16/19 15:52,"398 Chestnut St, San Francisco, CA 94016" -144581,AA Batteries (4-pack),1,3.84,01/01/19 19:20,"369 Center St, Los Angeles, CA 90001" -144582,AA Batteries (4-pack),1,3.84,01/02/19 14:08,"143 Willow St, Los Angeles, CA 90001" -144583,AA Batteries (4-pack),1,3.84,01/24/19 19:43,"993 West St, San Francisco, CA 94016" -144584,Google Phone,1,600,01/14/19 11:04,"174 Jefferson St, Dallas, TX 75001" -144584,USB-C Charging Cable,1,11.95,01/14/19 11:04,"174 Jefferson St, Dallas, TX 75001" -144585,Lightning Charging Cable,1,14.95,01/18/19 10:37,"890 West St, Atlanta, GA 30301" -144586,Vareebadd Phone,1,400,01/27/19 19:17,"396 Park St, Seattle, WA 98101" -144587,Lightning Charging Cable,1,14.95,01/01/19 18:44,"583 7th St, New York City, NY 10001" -144588,AA Batteries (4-pack),1,3.84,01/23/19 02:18,"666 Cedar St, New York City, NY 10001" -144589,USB-C Charging Cable,1,11.95,01/28/19 06:59,"402 Lake St, San Francisco, CA 94016" -144590,AAA Batteries (4-pack),2,2.99,01/08/19 17:16,"818 River St, Los Angeles, CA 90001" -144591,Apple Airpods Headphones,1,150,01/17/19 21:26,"935 Sunset St, Dallas, TX 75001" -144592,iPhone,1,700,01/22/19 04:53,"351 Ridge St, Austin, TX 73301" -144592,Lightning Charging Cable,1,14.95,01/22/19 04:53,"351 Ridge St, Austin, TX 73301" -144593,Bose SoundSport Headphones,1,99.99,01/17/19 12:00,"985 Center St, San Francisco, CA 94016" -144594,Bose SoundSport Headphones,1,99.99,01/12/19 00:27,"818 12th St, Los Angeles, CA 90001" -144595,27in 4K Gaming Monitor,1,389.99,01/26/19 23:14,"394 Center St, Los Angeles, CA 90001" -144596,34in Ultrawide Monitor,1,379.99,01/01/19 16:05,"47 Hill St, Seattle, WA 98101" -144597,Flatscreen TV,1,300,01/04/19 17:05,"86 Cherry St, New York City, NY 10001" -144598,Vareebadd Phone,1,400,01/17/19 10:54,"685 South St, Austin, TX 73301" -144599,Apple Airpods Headphones,1,150,01/12/19 11:33,"228 River St, San Francisco, CA 94016" -144600,iPhone,1,700,01/03/19 19:42,"435 5th St, Boston, MA 02215" -144600,Lightning Charging Cable,1,14.95,01/03/19 19:42,"435 5th St, Boston, MA 02215" -144601,AA Batteries (4-pack),2,3.84,01/14/19 21:17,"347 Cherry St, New York City, NY 10001" -144602,Google Phone,1,600,01/27/19 14:54,"220 Cedar St, Los Angeles, CA 90001" -144602,Wired Headphones,1,11.99,01/27/19 14:54,"220 Cedar St, Los Angeles, CA 90001" -144603,Google Phone,1,600,01/29/19 22:47,"419 Main St, New York City, NY 10001" -144603,USB-C Charging Cable,1,11.95,01/29/19 22:47,"419 Main St, New York City, NY 10001" -144604,AA Batteries (4-pack),2,3.84,01/04/19 15:09,"679 Washington St, San Francisco, CA 94016" -144605,Google Phone,1,600,01/16/19 12:37,"233 Lakeview St, New York City, NY 10001" -144606,20in Monitor,1,109.99,01/26/19 20:12,"320 Jackson St, San Francisco, CA 94016" -144607,USB-C Charging Cable,1,11.95,01/25/19 18:57,"73 Madison St, New York City, NY 10001" -144607,iPhone,1,700,01/25/19 18:57,"73 Madison St, New York City, NY 10001" -144608,Lightning Charging Cable,1,14.95,01/17/19 10:51,"558 Wilson St, Los Angeles, CA 90001" -144609,USB-C Charging Cable,1,11.95,01/16/19 23:12,"307 Lakeview St, Los Angeles, CA 90001" -144610,Wired Headphones,1,11.99,01/15/19 17:00,"306 Johnson St, Boston, MA 02215" -144611,ThinkPad Laptop,1,999.99,01/23/19 00:05,"715 Chestnut St, San Francisco, CA 94016" -144612,AAA Batteries (4-pack),1,2.99,01/27/19 15:05,"542 Jackson St, New York City, NY 10001" -144613,Lightning Charging Cable,1,14.95,01/08/19 04:10,"53 Jefferson St, New York City, NY 10001" -144614,27in FHD Monitor,1,149.99,01/04/19 14:52,"727 Hickory St, Dallas, TX 75001" -144615,AAA Batteries (4-pack),1,2.99,01/27/19 20:01,"732 6th St, Los Angeles, CA 90001" -144616,Macbook Pro Laptop,1,1700,01/19/19 12:08,"232 9th St, Atlanta, GA 30301" -144617,Apple Airpods Headphones,1,150,01/23/19 23:39,"853 Elm St, San Francisco, CA 94016" -144618,27in 4K Gaming Monitor,1,389.99,01/15/19 17:27,"137 Walnut St, San Francisco, CA 94016" -144619,Bose SoundSport Headphones,1,99.99,01/02/19 15:02,"197 Walnut St, Atlanta, GA 30301" -144620,Wired Headphones,1,11.99,01/07/19 10:04,"735 Forest St, San Francisco, CA 94016" -144621,AA Batteries (4-pack),3,3.84,01/17/19 10:36,"558 Elm St, Seattle, WA 98101" -144622,AA Batteries (4-pack),1,3.84,01/05/19 10:18,"857 Adams St, Portland, ME 04101" -144623,USB-C Charging Cable,1,11.95,01/16/19 17:01,"168 Dogwood St, Boston, MA 02215" -144624,AAA Batteries (4-pack),1,2.99,01/15/19 12:37,"503 Lakeview St, Los Angeles, CA 90001" -144625,Wired Headphones,1,11.99,01/28/19 22:43,"163 12th St, San Francisco, CA 94016" -144626,Wired Headphones,1,11.99,01/10/19 11:18,"697 Jackson St, New York City, NY 10001" -144627,Lightning Charging Cable,1,14.95,01/30/19 12:34,"634 Jefferson St, San Francisco, CA 94016" -144628,Bose SoundSport Headphones,1,99.99,01/19/19 02:42,"252 North St, Seattle, WA 98101" -144629,Macbook Pro Laptop,1,1700,01/02/19 13:18,"407 6th St, Seattle, WA 98101" -144630,AAA Batteries (4-pack),1,2.99,01/21/19 11:06,"642 Forest St, Portland, ME 04101" -144631,Lightning Charging Cable,1,14.95,01/15/19 11:58,"374 Jackson St, New York City, NY 10001" -144632,AA Batteries (4-pack),1,3.84,01/05/19 13:22,"830 2nd St, San Francisco, CA 94016" -144633,AA Batteries (4-pack),1,3.84,01/03/19 12:38,"352 River St, Boston, MA 02215" -144634,Lightning Charging Cable,1,14.95,01/29/19 08:09,"891 Lakeview St, Austin, TX 73301" -144635,Macbook Pro Laptop,1,1700,01/21/19 17:17,"933 Madison St, Austin, TX 73301" -144636,Wired Headphones,1,11.99,01/22/19 20:05,"803 Sunset St, Atlanta, GA 30301" -,,,,, -144637,iPhone,1,700,01/30/19 10:07,"941 Meadow St, New York City, NY 10001" -144638,34in Ultrawide Monitor,1,379.99,01/04/19 13:12,"299 9th St, San Francisco, CA 94016" -144639,USB-C Charging Cable,1,11.95,01/10/19 10:04,"389 6th St, Austin, TX 73301" -144640,Vareebadd Phone,1,400,01/27/19 18:23,"948 Elm St, San Francisco, CA 94016" -144641,Lightning Charging Cable,2,14.95,01/01/19 14:06,"847 10th St, Boston, MA 02215" -144642,Wired Headphones,1,11.99,01/05/19 19:06,"198 Hill St, New York City, NY 10001" -144643,ThinkPad Laptop,1,999.99,01/11/19 12:26,"664 11th St, Dallas, TX 75001" -144644,Wired Headphones,1,11.99,01/07/19 08:48,"470 Meadow St, San Francisco, CA 94016" -144645,AA Batteries (4-pack),2,3.84,01/17/19 12:42,"927 Main St, Seattle, WA 98101" -144646,Bose SoundSport Headphones,1,99.99,01/25/19 13:08,"485 Jackson St, Dallas, TX 75001" -144647,27in 4K Gaming Monitor,1,389.99,01/07/19 09:41,"104 Center St, Los Angeles, CA 90001" -144648,Apple Airpods Headphones,1,150,01/12/19 19:52,"298 5th St, Portland, OR 97035" -144649,USB-C Charging Cable,1,11.95,01/04/19 16:27,"848 6th St, Portland, ME 04101" -144650,AA Batteries (4-pack),2,3.84,01/08/19 10:30,"301 13th St, Boston, MA 02215" -144651,AA Batteries (4-pack),1,3.84,01/29/19 17:44,"251 Meadow St, Seattle, WA 98101" -144652,USB-C Charging Cable,1,11.95,01/14/19 16:40,"59 Jackson St, Portland, ME 04101" -144653,Apple Airpods Headphones,1,150,01/20/19 15:32,"258 8th St, New York City, NY 10001" -144654,iPhone,1,700,01/22/19 12:41,"434 Center St, San Francisco, CA 94016" -144655,Google Phone,1,600,01/11/19 08:36,"836 Cedar St, Atlanta, GA 30301" -144656,Apple Airpods Headphones,1,150,01/24/19 21:28,"690 Chestnut St, Los Angeles, CA 90001" -144657,AAA Batteries (4-pack),1,2.99,01/06/19 11:12,"726 Main St, San Francisco, CA 94016" -144658,Lightning Charging Cable,1,14.95,01/07/19 12:26,"434 Jackson St, Boston, MA 02215" -144659,USB-C Charging Cable,1,11.95,01/19/19 22:44,"589 Dogwood St, San Francisco, CA 94016" -144660,USB-C Charging Cable,1,11.95,01/01/19 16:36,"992 12th St, Portland, OR 97035" -144661,AAA Batteries (4-pack),2,2.99,01/11/19 00:35,"618 River St, San Francisco, CA 94016" -144662,USB-C Charging Cable,1,11.95,01/04/19 22:02,"460 Church St, Boston, MA 02215" -144663,27in FHD Monitor,1,149.99,01/07/19 19:51,"245 Lakeview St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -144664,Bose SoundSport Headphones,1,99.99,01/30/19 21:28,"591 South St, Boston, MA 02215" -144665,USB-C Charging Cable,1,11.95,01/12/19 11:52,"18 4th St, Los Angeles, CA 90001" -144666,Bose SoundSport Headphones,1,99.99,01/08/19 17:51,"616 Forest St, Atlanta, GA 30301" -144667,Apple Airpods Headphones,1,150,01/16/19 20:17,"185 Park St, Atlanta, GA 30301" -144668,Wired Headphones,1,11.99,01/08/19 13:12,"902 River St, San Francisco, CA 94016" -144669,Apple Airpods Headphones,1,150,01/02/19 21:06,"581 Cedar St, Los Angeles, CA 90001" -144670,Lightning Charging Cable,1,14.95,01/09/19 10:23,"99 Park St, Seattle, WA 98101" -144671,Flatscreen TV,1,300,01/18/19 21:32,"560 Dogwood St, New York City, NY 10001" -144672,Google Phone,1,600,01/25/19 17:49,"532 5th St, San Francisco, CA 94016" -144673,Apple Airpods Headphones,1,150,01/31/19 16:00,"706 Adams St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -144674,34in Ultrawide Monitor,1,379.99,01/16/19 11:37,"440 5th St, Seattle, WA 98101" -144675,AA Batteries (4-pack),1,3.84,01/03/19 07:15,"766 Willow St, San Francisco, CA 94016" -144676,iPhone,1,700,01/16/19 10:51,"707 4th St, New York City, NY 10001" -144677,27in 4K Gaming Monitor,1,389.99,01/30/19 12:51,"469 10th St, San Francisco, CA 94016" -144678,20in Monitor,1,109.99,01/07/19 17:52,"223 Ridge St, San Francisco, CA 94016" -144679,Google Phone,1,600,01/01/19 12:51,"984 Lakeview St, San Francisco, CA 94016" -144679,USB-C Charging Cable,1,11.95,01/01/19 12:51,"984 Lakeview St, San Francisco, CA 94016" -144680,AAA Batteries (4-pack),1,2.99,01/15/19 21:21,"710 Center St, Dallas, TX 75001" -144681,20in Monitor,1,109.99,01/13/19 12:14,"865 Dogwood St, Boston, MA 02215" -144682,Lightning Charging Cable,1,14.95,01/07/19 14:15,"50 Walnut St, San Francisco, CA 94016" -144683,AA Batteries (4-pack),2,3.84,01/29/19 12:10,"742 Madison St, Seattle, WA 98101" -144684,Wired Headphones,1,11.99,01/30/19 21:05,"17 Elm St, Los Angeles, CA 90001" -144685,AA Batteries (4-pack),1,3.84,01/23/19 17:14,"824 Lincoln St, San Francisco, CA 94016" -144686,27in 4K Gaming Monitor,1,389.99,01/20/19 21:31,"387 Church St, Portland, OR 97035" -144687,AAA Batteries (4-pack),1,2.99,01/16/19 18:37,"437 7th St, Los Angeles, CA 90001" -144688,Flatscreen TV,1,300,01/17/19 06:43,"938 Adams St, Boston, MA 02215" -144689,AA Batteries (4-pack),5,3.84,01/05/19 10:21,"200 Hill St, San Francisco, CA 94016" -144690,AAA Batteries (4-pack),1,2.99,01/11/19 19:30,"107 8th St, Seattle, WA 98101" -144691,USB-C Charging Cable,1,11.95,01/28/19 10:23,"704 Highland St, San Francisco, CA 94016" -144692,Vareebadd Phone,1,400,01/12/19 11:13,"897 Willow St, Los Angeles, CA 90001" -144692,USB-C Charging Cable,1,11.95,01/12/19 11:13,"897 Willow St, Los Angeles, CA 90001" -144693,Bose SoundSport Headphones,1,99.99,01/20/19 23:27,"432 Maple St, San Francisco, CA 94016" -144694,Bose SoundSport Headphones,1,99.99,01/02/19 07:32,"721 Elm St, Seattle, WA 98101" -144695,27in 4K Gaming Monitor,1,389.99,01/19/19 12:09,"720 11th St, San Francisco, CA 94016" -144696,AAA Batteries (4-pack),1,2.99,01/10/19 20:22,"383 Forest St, San Francisco, CA 94016" -144697,27in FHD Monitor,1,149.99,01/23/19 09:10,"76 Madison St, Los Angeles, CA 90001" -144698,USB-C Charging Cable,1,11.95,01/05/19 00:45,"771 Cedar St, San Francisco, CA 94016" -144699,Lightning Charging Cable,1,14.95,01/10/19 13:26,"270 Jefferson St, San Francisco, CA 94016" -144700,USB-C Charging Cable,1,11.95,01/03/19 18:43,"704 Chestnut St, Austin, TX 73301" -144701,34in Ultrawide Monitor,1,379.99,01/24/19 15:00,"646 Ridge St, Los Angeles, CA 90001" -144702,27in FHD Monitor,1,149.99,01/18/19 21:04,"587 6th St, San Francisco, CA 94016" -144703,ThinkPad Laptop,1,999.99,01/23/19 16:27,"117 West St, Portland, OR 97035" -144704,iPhone,1,700,01/26/19 11:23,"846 13th St, Boston, MA 02215" -144704,Wired Headphones,1,11.99,01/26/19 11:23,"846 13th St, Boston, MA 02215" -144705,34in Ultrawide Monitor,1,379.99,01/16/19 11:47,"811 Highland St, Atlanta, GA 30301" -,,,,, -144706,AAA Batteries (4-pack),1,2.99,01/22/19 14:11,"404 West St, Seattle, WA 98101" -144707,Wired Headphones,1,11.99,01/10/19 21:32,"427 13th St, San Francisco, CA 94016" -144708,Bose SoundSport Headphones,1,99.99,01/28/19 10:34,"675 Lakeview St, San Francisco, CA 94016" -144709,Wired Headphones,2,11.99,01/13/19 13:38,"937 River St, Portland, OR 97035" -144710,Lightning Charging Cable,1,14.95,01/06/19 07:49,"688 Elm St, Dallas, TX 75001" -144711,Wired Headphones,1,11.99,01/28/19 19:51,"304 Hill St, Los Angeles, CA 90001" -144712,USB-C Charging Cable,1,11.95,01/07/19 02:49,"888 Lakeview St, New York City, NY 10001" -144713,Apple Airpods Headphones,1,150,01/16/19 11:30,"722 Madison St, Los Angeles, CA 90001" -144714,AA Batteries (4-pack),1,3.84,01/25/19 15:03,"321 6th St, Atlanta, GA 30301" -144715,20in Monitor,1,109.99,01/27/19 20:03,"761 Washington St, New York City, NY 10001" -144716,Bose SoundSport Headphones,1,99.99,01/17/19 11:50,"412 Forest St, Los Angeles, CA 90001" -144717,AAA Batteries (4-pack),5,2.99,01/29/19 13:39,"900 Cherry St, Los Angeles, CA 90001" -144718,AA Batteries (4-pack),4,3.84,01/12/19 10:06,"686 Hill St, Dallas, TX 75001" -144719,Bose SoundSport Headphones,1,99.99,01/19/19 22:36,"581 Maple St, Boston, MA 02215" -144720,AA Batteries (4-pack),2,3.84,01/07/19 12:44,"992 Jefferson St, San Francisco, CA 94016" -144721,USB-C Charging Cable,1,11.95,01/17/19 19:24,"473 Park St, Los Angeles, CA 90001" -144722,34in Ultrawide Monitor,1,379.99,01/16/19 22:50,"337 Church St, San Francisco, CA 94016" -144723,Bose SoundSport Headphones,1,99.99,01/05/19 10:29,"633 Hill St, Boston, MA 02215" -144724,Lightning Charging Cable,1,14.95,01/24/19 20:27,"378 Walnut St, New York City, NY 10001" -144725,34in Ultrawide Monitor,1,379.99,01/11/19 10:38,"129 North St, Boston, MA 02215" -144726,27in FHD Monitor,1,149.99,01/17/19 11:12,"91 Church St, Los Angeles, CA 90001" -144727,Wired Headphones,1,11.99,01/28/19 15:41,"289 13th St, New York City, NY 10001" -144728,Lightning Charging Cable,1,14.95,01/03/19 09:58,"386 Johnson St, Boston, MA 02215" -144729,Apple Airpods Headphones,1,150,01/27/19 19:31,"55 Elm St, Boston, MA 02215" -144730,27in 4K Gaming Monitor,1,389.99,01/09/19 23:43,"571 Highland St, Los Angeles, CA 90001" -144731,AA Batteries (4-pack),1,3.84,01/27/19 08:59,"614 Adams St, San Francisco, CA 94016" -144732,USB-C Charging Cable,2,11.95,01/03/19 18:27,"201 Jackson St, Boston, MA 02215" -144733,AA Batteries (4-pack),1,3.84,01/26/19 11:28,"117 Church St, San Francisco, CA 94016" -144734,AAA Batteries (4-pack),1,2.99,01/21/19 05:53,"72 Willow St, New York City, NY 10001" -144735,Macbook Pro Laptop,1,1700,01/05/19 16:15,"266 4th St, Los Angeles, CA 90001" -144736,USB-C Charging Cable,1,11.95,01/12/19 19:17,"321 Jefferson St, San Francisco, CA 94016" -144737,AA Batteries (4-pack),1,3.84,01/21/19 21:58,"394 Pine St, San Francisco, CA 94016" -144738,20in Monitor,1,109.99,01/09/19 12:38,"240 12th St, San Francisco, CA 94016" -144739,iPhone,1,700,01/10/19 10:08,"533 Maple St, Seattle, WA 98101" -144739,Lightning Charging Cable,1,14.95,01/10/19 10:08,"533 Maple St, Seattle, WA 98101" -144740,Macbook Pro Laptop,1,1700,01/30/19 21:14,"875 2nd St, Dallas, TX 75001" -144741,ThinkPad Laptop,1,999.99,01/28/19 14:08,"475 Lake St, San Francisco, CA 94016" -144742,AA Batteries (4-pack),3,3.84,01/03/19 11:20,"773 Jefferson St, Portland, ME 04101" -144743,Vareebadd Phone,1,400,01/09/19 23:26,"2 Jackson St, Los Angeles, CA 90001" -144744,Lightning Charging Cable,1,14.95,01/10/19 12:01,"193 Lincoln St, Los Angeles, CA 90001" -144745,USB-C Charging Cable,1,11.95,01/03/19 15:54,"36 8th St, Portland, ME 04101" -144746,Wired Headphones,1,11.99,01/07/19 03:32,"308 Madison St, Portland, OR 97035" -144747,Wired Headphones,1,11.99,01/03/19 18:33,"191 11th St, Atlanta, GA 30301" -144748,AA Batteries (4-pack),1,3.84,01/11/19 11:54,"675 Dogwood St, San Francisco, CA 94016" -144749,Bose SoundSport Headphones,1,99.99,01/27/19 20:26,"73 Walnut St, Portland, OR 97035" -144750,Wired Headphones,1,11.99,01/19/19 11:01,"536 Maple St, Boston, MA 02215" -144751,USB-C Charging Cable,1,11.95,01/24/19 10:46,"353 Hickory St, San Francisco, CA 94016" -144752,27in 4K Gaming Monitor,1,389.99,01/01/19 11:34,"708 1st St, San Francisco, CA 94016" -144753,AAA Batteries (4-pack),1,2.99,01/21/19 09:28,"667 Lincoln St, San Francisco, CA 94016" -144754,LG Washing Machine,1,600.0,01/25/19 18:18,"388 11th St, Boston, MA 02215" -144755,Bose SoundSport Headphones,1,99.99,01/28/19 11:51,"398 5th St, Seattle, WA 98101" -144756,AA Batteries (4-pack),1,3.84,01/11/19 19:20,"306 Forest St, Los Angeles, CA 90001" -144757,iPhone,1,700,01/12/19 11:45,"712 Cherry St, New York City, NY 10001" -144758,Apple Airpods Headphones,1,150,01/07/19 23:58,"913 Jackson St, Los Angeles, CA 90001" -144759,AAA Batteries (4-pack),1,2.99,01/26/19 11:48,"397 Sunset St, Atlanta, GA 30301" -144760,Bose SoundSport Headphones,1,99.99,01/10/19 12:41,"713 Lake St, Boston, MA 02215" -144760,Wired Headphones,1,11.99,01/10/19 12:41,"713 Lake St, Boston, MA 02215" -144761,AA Batteries (4-pack),2,3.84,01/29/19 12:08,"335 North St, San Francisco, CA 94016" -144762,iPhone,1,700,01/12/19 19:28,"3 Park St, Boston, MA 02215" -144763,Lightning Charging Cable,2,14.95,01/17/19 21:03,"250 Highland St, Portland, ME 04101" -144764,Google Phone,1,600,01/04/19 11:09,"181 Johnson St, Seattle, WA 98101" -144764,USB-C Charging Cable,1,11.95,01/04/19 11:09,"181 Johnson St, Seattle, WA 98101" -144765,Vareebadd Phone,1,400,01/04/19 17:06,"556 Lakeview St, Los Angeles, CA 90001" -144766,AA Batteries (4-pack),1,3.84,01/13/19 19:11,"250 Cherry St, Dallas, TX 75001" -144767,USB-C Charging Cable,1,11.95,01/08/19 11:27,"571 Lakeview St, Boston, MA 02215" -144768,USB-C Charging Cable,1,11.95,01/08/19 23:10,"290 8th St, Boston, MA 02215" -144769,AAA Batteries (4-pack),2,2.99,01/18/19 20:29,"946 Sunset St, San Francisco, CA 94016" -144770,AAA Batteries (4-pack),2,2.99,01/22/19 10:37,"703 10th St, Los Angeles, CA 90001" -144771,Wired Headphones,1,11.99,01/11/19 15:24,"630 Lake St, San Francisco, CA 94016" -144772,27in FHD Monitor,1,149.99,01/18/19 14:05,"675 Wilson St, Atlanta, GA 30301" -144773,27in 4K Gaming Monitor,1,389.99,01/27/19 11:20,"349 Lakeview St, Boston, MA 02215" -144774,AAA Batteries (4-pack),1,2.99,01/15/19 06:18,"907 Lincoln St, Seattle, WA 98101" -144775,Lightning Charging Cable,1,14.95,01/15/19 22:50,"856 12th St, New York City, NY 10001" -144776,AA Batteries (4-pack),1,3.84,01/31/19 16:01,"442 1st St, San Francisco, CA 94016" -144777,Apple Airpods Headphones,1,150,01/12/19 13:52,"846 Spruce St, New York City, NY 10001" -144778,AAA Batteries (4-pack),2,2.99,01/26/19 13:12,"561 Walnut St, New York City, NY 10001" -144779,Bose SoundSport Headphones,1,99.99,01/16/19 13:26,"339 1st St, Boston, MA 02215" -144780,AA Batteries (4-pack),3,3.84,01/24/19 10:07,"382 Main St, Atlanta, GA 30301" -144781,AA Batteries (4-pack),1,3.84,01/05/19 23:13,"666 10th St, New York City, NY 10001" -144782,iPhone,1,700,01/12/19 07:34,"232 6th St, Atlanta, GA 30301" -144783,Wired Headphones,1,11.99,01/28/19 22:01,"965 Jackson St, San Francisco, CA 94016" -144784,iPhone,1,700,01/19/19 15:46,"449 10th St, Dallas, TX 75001" -144784,Wired Headphones,1,11.99,01/19/19 15:46,"449 10th St, Dallas, TX 75001" -144785,Google Phone,1,600,01/27/19 23:07,"505 Pine St, Dallas, TX 75001" -144785,USB-C Charging Cable,1,11.95,01/27/19 23:07,"505 Pine St, Dallas, TX 75001" -144786,Wired Headphones,1,11.99,01/25/19 17:49,"633 8th St, Los Angeles, CA 90001" -144787,AAA Batteries (4-pack),1,2.99,01/25/19 23:12,"705 North St, Los Angeles, CA 90001" -144788,Apple Airpods Headphones,1,150,01/22/19 20:01,"666 South St, Atlanta, GA 30301" -144789,20in Monitor,1,109.99,01/06/19 20:12,"617 Cedar St, Portland, OR 97035" -144790,Wired Headphones,1,11.99,01/19/19 20:15,"387 Ridge St, Portland, ME 04101" -144791,USB-C Charging Cable,1,11.95,01/27/19 06:37,"476 Lincoln St, Seattle, WA 98101" -144792,AA Batteries (4-pack),1,3.84,01/14/19 21:14,"476 Church St, Atlanta, GA 30301" -144793,Lightning Charging Cable,2,14.95,01/16/19 16:24,"821 Madison St, Los Angeles, CA 90001" -144794,AA Batteries (4-pack),2,3.84,01/05/19 16:39,"205 North St, San Francisco, CA 94016" -144795,AA Batteries (4-pack),2,3.84,01/29/19 09:59,"888 Wilson St, Atlanta, GA 30301" -144796,Lightning Charging Cable,1,14.95,01/22/19 18:33,"142 Forest St, Dallas, TX 75001" -144797,Apple Airpods Headphones,1,150,01/29/19 10:36,"375 Hickory St, Austin, TX 73301" -144798,Vareebadd Phone,1,400,01/27/19 19:37,"463 12th St, Seattle, WA 98101" -144799,AAA Batteries (4-pack),1,2.99,01/28/19 11:36,"993 10th St, Los Angeles, CA 90001" -144800,Wired Headphones,1,11.99,01/08/19 12:04,"132 River St, Portland, OR 97035" -144801,Wired Headphones,1,11.99,01/15/19 10:31,"417 Maple St, New York City, NY 10001" -144802,27in FHD Monitor,1,149.99,01/16/19 12:18,"333 Hill St, Boston, MA 02215" -144803,Lightning Charging Cable,1,14.95,01/08/19 22:42,"847 Dogwood St, Austin, TX 73301" -144804,iPhone,1,700,01/01/19 07:29,"628 Lake St, New York City, NY 10001" -144804,Wired Headphones,1,11.99,01/01/19 07:29,"628 Lake St, New York City, NY 10001" -144805,27in 4K Gaming Monitor,1,389.99,01/02/19 17:22,"187 6th St, Portland, OR 97035" -144806,AAA Batteries (4-pack),1,2.99,01/02/19 15:35,"974 Highland St, Austin, TX 73301" -144807,AAA Batteries (4-pack),1,2.99,01/05/19 20:29,"15 Wilson St, Boston, MA 02215" -144808,34in Ultrawide Monitor,1,379.99,01/13/19 13:18,"100 Walnut St, San Francisco, CA 94016" -144809,AAA Batteries (4-pack),1,2.99,01/03/19 20:00,"629 Wilson St, Los Angeles, CA 90001" -144810,Google Phone,1,600,01/05/19 11:22,"153 Meadow St, Los Angeles, CA 90001" -144811,Vareebadd Phone,1,400,01/09/19 15:29,"744 Main St, San Francisco, CA 94016" -144812,USB-C Charging Cable,1,11.95,01/29/19 07:38,"833 10th St, Los Angeles, CA 90001" -144813,AAA Batteries (4-pack),1,2.99,01/26/19 19:58,"442 River St, Los Angeles, CA 90001" -144814,USB-C Charging Cable,1,11.95,01/08/19 00:54,"355 10th St, Austin, TX 73301" -144815,Wired Headphones,1,11.99,01/24/19 14:08,"56 Madison St, Los Angeles, CA 90001" -144816,Apple Airpods Headphones,1,150,01/06/19 16:41,"537 Willow St, Seattle, WA 98101" -144817,AAA Batteries (4-pack),2,2.99,01/29/19 12:22,"721 South St, San Francisco, CA 94016" -144818,AAA Batteries (4-pack),2,2.99,01/05/19 21:16,"384 12th St, Austin, TX 73301" -144819,iPhone,1,700,01/18/19 16:28,"916 Pine St, New York City, NY 10001" -144819,Lightning Charging Cable,1,14.95,01/18/19 16:28,"916 Pine St, New York City, NY 10001" -144819,Wired Headphones,1,11.99,01/18/19 16:28,"916 Pine St, New York City, NY 10001" -144820,AA Batteries (4-pack),1,3.84,01/24/19 08:00,"499 Lake St, Los Angeles, CA 90001" -144821,Google Phone,1,600,01/26/19 22:04,"184 Hill St, Boston, MA 02215" -144821,USB-C Charging Cable,1,11.95,01/26/19 22:04,"184 Hill St, Boston, MA 02215" -144822,USB-C Charging Cable,1,11.95,01/15/19 12:04,"674 Forest St, Atlanta, GA 30301" -144823,AA Batteries (4-pack),3,3.84,01/23/19 15:35,"219 7th St, San Francisco, CA 94016" -144824,20in Monitor,1,109.99,01/25/19 16:52,"886 Forest St, San Francisco, CA 94016" -144825,Apple Airpods Headphones,1,150,01/06/19 15:14,"102 Hill St, New York City, NY 10001" -144826,Google Phone,1,600,01/23/19 15:44,"979 Chestnut St, Los Angeles, CA 90001" -144827,Wired Headphones,1,11.99,01/02/19 14:26,"501 1st St, Portland, ME 04101" -144828,AA Batteries (4-pack),3,3.84,01/30/19 10:27,"168 Ridge St, New York City, NY 10001" -144829,Apple Airpods Headphones,1,150,01/02/19 10:36,"625 Walnut St, Atlanta, GA 30301" -144830,27in 4K Gaming Monitor,1,389.99,01/10/19 16:54,"975 12th St, Portland, OR 97035" -144831,iPhone,1,700,01/09/19 09:10,"979 Forest St, Boston, MA 02215" -144832,Lightning Charging Cable,1,14.95,01/30/19 08:04,"35 Madison St, Los Angeles, CA 90001" -144833,Google Phone,1,600,01/28/19 11:34,"53 10th St, Los Angeles, CA 90001" -144834,AAA Batteries (4-pack),1,2.99,01/28/19 07:07,"29 Spruce St, San Francisco, CA 94016" -144835,AAA Batteries (4-pack),2,2.99,01/28/19 19:33,"936 13th St, Los Angeles, CA 90001" -144836,20in Monitor,1,109.99,01/02/19 15:25,"449 Maple St, Los Angeles, CA 90001" -144837,Lightning Charging Cable,1,14.95,01/16/19 12:23,"298 Park St, Atlanta, GA 30301" -144838,Wired Headphones,1,11.99,01/06/19 22:21,"512 Church St, Seattle, WA 98101" -144839,Google Phone,1,600,01/13/19 21:22,"742 Cedar St, New York City, NY 10001" -144840,AA Batteries (4-pack),2,3.84,01/26/19 16:01,"264 North St, San Francisco, CA 94016" -144841,Macbook Pro Laptop,1,1700,01/26/19 18:06,"447 Meadow St, Los Angeles, CA 90001" -144842,ThinkPad Laptop,1,999.99,01/27/19 17:23,"926 South St, Dallas, TX 75001" -144843,Lightning Charging Cable,2,14.95,01/06/19 18:30,"109 South St, Dallas, TX 75001" -144844,AA Batteries (4-pack),1,3.84,01/16/19 11:59,"251 Jackson St, New York City, NY 10001" -144845,Apple Airpods Headphones,1,150,01/09/19 01:06,"200 13th St, Los Angeles, CA 90001" -144846,Flatscreen TV,1,300,01/27/19 18:01,"944 Church St, Dallas, TX 75001" -144847,Apple Airpods Headphones,1,150,01/13/19 19:50,"18 14th St, San Francisco, CA 94016" -144848,AAA Batteries (4-pack),2,2.99,01/29/19 18:45,"502 North St, Atlanta, GA 30301" -144849,Apple Airpods Headphones,1,150,01/20/19 21:23,"781 Park St, Dallas, TX 75001" -144850,Google Phone,1,600,01/02/19 21:10,"781 Park St, Boston, MA 02215" -144850,USB-C Charging Cable,1,11.95,01/02/19 21:10,"781 Park St, Boston, MA 02215" -144851,Apple Airpods Headphones,2,150,01/26/19 06:48,"238 North St, New York City, NY 10001" -144851,USB-C Charging Cable,1,11.95,01/26/19 06:48,"238 North St, New York City, NY 10001" -144852,AAA Batteries (4-pack),1,2.99,01/27/19 09:04,"694 West St, Portland, OR 97035" -144853,Lightning Charging Cable,1,14.95,01/06/19 12:47,"727 12th St, New York City, NY 10001" -144854,Bose SoundSport Headphones,1,99.99,01/03/19 21:00,"63 North St, Austin, TX 73301" -144855,USB-C Charging Cable,1,11.95,01/16/19 16:23,"968 Jackson St, Boston, MA 02215" -144856,27in 4K Gaming Monitor,1,389.99,01/01/19 18:53,"468 Chestnut St, Dallas, TX 75001" -144857,20in Monitor,1,109.99,01/01/19 14:29,"654 6th St, Atlanta, GA 30301" -144858,34in Ultrawide Monitor,1,379.99,01/01/19 14:29,"907 9th St, San Francisco, CA 94016" -144859,AA Batteries (4-pack),1,3.84,01/30/19 21:14,"932 River St, Los Angeles, CA 90001" -144860,USB-C Charging Cable,1,11.95,01/12/19 15:42,"188 Hill St, Boston, MA 02215" -144861,AA Batteries (4-pack),1,3.84,01/25/19 15:32,"480 Willow St, Boston, MA 02215" -144861,Lightning Charging Cable,1,14.95,01/25/19 15:32,"480 Willow St, Boston, MA 02215" -144862,LG Dryer,1,600.0,01/18/19 20:13,"25 Church St, San Francisco, CA 94016" -144863,Wired Headphones,1,11.99,01/27/19 19:24,"936 Dogwood St, Dallas, TX 75001" -144864,Apple Airpods Headphones,1,150,01/01/19 17:05,"67 2nd St, Dallas, TX 75001" -144865,Lightning Charging Cable,1,14.95,01/28/19 09:23,"486 Sunset St, New York City, NY 10001" -144866,iPhone,1,700,01/02/19 17:58,"166 Willow St, Dallas, TX 75001" -144866,Lightning Charging Cable,1,14.95,01/02/19 17:58,"166 Willow St, Dallas, TX 75001" -144867,Flatscreen TV,1,300,01/16/19 13:45,"867 Hill St, Portland, OR 97035" -144868,AA Batteries (4-pack),1,3.84,01/01/19 18:03,"565 Hill St, Boston, MA 02215" -144869,iPhone,1,700,01/25/19 15:16,"718 Cherry St, New York City, NY 10001" -144870,Google Phone,1,600,01/26/19 15:10,"346 1st St, Portland, OR 97035" -144871,Flatscreen TV,1,300,01/13/19 12:07,"440 Park St, Los Angeles, CA 90001" -144872,Lightning Charging Cable,1,14.95,01/27/19 18:03,"207 7th St, Los Angeles, CA 90001" -144873,USB-C Charging Cable,1,11.95,01/15/19 16:03,"775 Lincoln St, Los Angeles, CA 90001" -144874,USB-C Charging Cable,1,11.95,01/26/19 14:29,"463 Maple St, Boston, MA 02215" -144875,USB-C Charging Cable,1,11.95,01/28/19 14:51,"197 Pine St, Dallas, TX 75001" -144876,Bose SoundSport Headphones,1,99.99,01/09/19 10:31,"825 Lakeview St, Austin, TX 73301" -144877,iPhone,1,700,01/24/19 09:35,"588 Meadow St, Seattle, WA 98101" -144878,AAA Batteries (4-pack),2,2.99,01/08/19 17:29,"698 Johnson St, Boston, MA 02215" -144879,USB-C Charging Cable,1,11.95,01/18/19 12:51,"249 River St, New York City, NY 10001" -144880,AA Batteries (4-pack),1,3.84,01/15/19 19:59,"779 Johnson St, Boston, MA 02215" -144881,AA Batteries (4-pack),1,3.84,01/21/19 07:04,"131 14th St, Portland, OR 97035" -144882,AA Batteries (4-pack),1,3.84,01/08/19 18:20,"568 2nd St, San Francisco, CA 94016" -144883,AA Batteries (4-pack),2,3.84,01/20/19 22:35,"298 Jackson St, New York City, NY 10001" -144884,20in Monitor,1,109.99,01/22/19 19:05,"263 Hickory St, Austin, TX 73301" -144884,Wired Headphones,1,11.99,01/22/19 19:05,"263 Hickory St, Austin, TX 73301" -144885,Lightning Charging Cable,1,14.95,01/06/19 18:16,"139 Meadow St, San Francisco, CA 94016" -144886,Lightning Charging Cable,2,14.95,01/18/19 14:54,"154 Lake St, San Francisco, CA 94016" -144887,AAA Batteries (4-pack),1,2.99,01/05/19 08:09,"115 12th St, Los Angeles, CA 90001" -144888,USB-C Charging Cable,1,11.95,01/14/19 22:49,"485 Lincoln St, Dallas, TX 75001" -144889,AA Batteries (4-pack),4,3.84,01/14/19 18:19,"919 Highland St, Boston, MA 02215" -144890,27in FHD Monitor,1,149.99,01/07/19 21:03,"102 Cedar St, San Francisco, CA 94016" -144891,Bose SoundSport Headphones,1,99.99,01/07/19 14:11,"779 8th St, Seattle, WA 98101" -144892,AAA Batteries (4-pack),3,2.99,01/07/19 00:01,"157 Willow St, New York City, NY 10001" -144893,Bose SoundSport Headphones,1,99.99,01/21/19 14:20,"463 Chestnut St, San Francisco, CA 94016" -144894,Wired Headphones,1,11.99,01/27/19 11:12,"419 1st St, Dallas, TX 75001" -144895,Macbook Pro Laptop,1,1700,01/11/19 17:35,"412 Madison St, Seattle, WA 98101" -144896,Lightning Charging Cable,1,14.95,01/22/19 22:48,"483 Jefferson St, San Francisco, CA 94016" -144897,AAA Batteries (4-pack),1,2.99,01/12/19 03:01,"765 13th St, Atlanta, GA 30301" -144898,27in 4K Gaming Monitor,1,389.99,01/18/19 08:36,"82 Church St, Boston, MA 02215" -144899,Wired Headphones,1,11.99,01/11/19 17:54,"370 Lincoln St, Dallas, TX 75001" -144900,AA Batteries (4-pack),1,3.84,01/03/19 05:12,"287 Maple St, New York City, NY 10001" -144900,27in 4K Gaming Monitor,1,389.99,01/03/19 05:12,"287 Maple St, New York City, NY 10001" -144901,Flatscreen TV,1,300,01/20/19 21:22,"531 Lincoln St, San Francisco, CA 94016" -144902,27in 4K Gaming Monitor,1,389.99,01/01/19 10:23,"169 Ridge St, Seattle, WA 98101" -144903,AAA Batteries (4-pack),2,2.99,01/17/19 08:29,"366 13th St, New York City, NY 10001" -144904,Apple Airpods Headphones,1,150,01/30/19 23:58,"859 11th St, Seattle, WA 98101" -144905,Google Phone,1,600,01/20/19 23:43,"363 Walnut St, San Francisco, CA 94016" -144906,Apple Airpods Headphones,1,150,01/31/19 11:44,"512 Ridge St, Dallas, TX 75001" -144907,USB-C Charging Cable,2,11.95,01/15/19 13:10,"675 6th St, Atlanta, GA 30301" -144908,Lightning Charging Cable,1,14.95,01/17/19 15:25,"17 West St, New York City, NY 10001" -144909,USB-C Charging Cable,1,11.95,01/06/19 10:32,"442 2nd St, Los Angeles, CA 90001" -144910,AAA Batteries (4-pack),2,2.99,01/12/19 19:28,"580 14th St, New York City, NY 10001" -144911,USB-C Charging Cable,1,11.95,01/29/19 19:41,"767 Washington St, San Francisco, CA 94016" -144912,27in 4K Gaming Monitor,1,389.99,01/11/19 23:28,"959 Walnut St, New York City, NY 10001" -144913,Google Phone,1,600,01/13/19 20:14,"3 Adams St, San Francisco, CA 94016" -144914,AAA Batteries (4-pack),5,2.99,01/31/19 15:03,"791 Ridge St, San Francisco, CA 94016" -144915,Lightning Charging Cable,1,14.95,01/29/19 20:22,"547 Wilson St, Boston, MA 02215" -144916,USB-C Charging Cable,2,11.95,01/11/19 20:37,"369 Ridge St, Atlanta, GA 30301" -144917,Wired Headphones,1,11.99,01/11/19 15:14,"74 Chestnut St, Atlanta, GA 30301" -144918,USB-C Charging Cable,1,11.95,01/17/19 01:25,"64 Elm St, San Francisco, CA 94016" -144919,Bose SoundSport Headphones,1,99.99,01/12/19 21:02,"128 Hickory St, Atlanta, GA 30301" -144920,27in FHD Monitor,1,149.99,01/04/19 19:53,"344 Pine St, Los Angeles, CA 90001" -144921,Lightning Charging Cable,1,14.95,01/28/19 11:53,"961 7th St, Seattle, WA 98101" -144922,AA Batteries (4-pack),1,3.84,01/16/19 21:14,"348 Highland St, Seattle, WA 98101" -144923,Wired Headphones,1,11.99,01/10/19 21:38,"20 Johnson St, Dallas, TX 75001" -144924,Apple Airpods Headphones,1,150,01/19/19 21:05,"942 Sunset St, San Francisco, CA 94016" -144925,Bose SoundSport Headphones,1,99.99,01/27/19 15:14,"52 Sunset St, Boston, MA 02215" -144926,AAA Batteries (4-pack),1,2.99,01/28/19 10:16,"49 Hickory St, Los Angeles, CA 90001" -144927,Lightning Charging Cable,1,14.95,01/15/19 10:06,"651 Maple St, San Francisco, CA 94016" -144928,USB-C Charging Cable,1,11.95,01/28/19 19:05,"817 Jefferson St, New York City, NY 10001" -144929,Bose SoundSport Headphones,1,99.99,01/17/19 13:51,"221 Hickory St, Seattle, WA 98101" -144930,iPhone,1,700,01/06/19 14:46,"176 Walnut St, San Francisco, CA 94016" -144930,Wired Headphones,2,11.99,01/06/19 14:46,"176 Walnut St, San Francisco, CA 94016" -144931,27in FHD Monitor,1,149.99,01/24/19 19:51,"568 12th St, Los Angeles, CA 90001" -144932,AA Batteries (4-pack),3,3.84,01/20/19 20:49,"863 River St, New York City, NY 10001" -144933,Vareebadd Phone,1,400,01/15/19 09:44,"275 1st St, San Francisco, CA 94016" -144934,USB-C Charging Cable,1,11.95,01/06/19 00:48,"540 Elm St, Los Angeles, CA 90001" -144935,34in Ultrawide Monitor,1,379.99,01/25/19 22:27,"217 Adams St, San Francisco, CA 94016" -144936,Lightning Charging Cable,2,14.95,01/12/19 12:39,"347 Lakeview St, Boston, MA 02215" -144937,Lightning Charging Cable,1,14.95,01/28/19 05:09,"272 Lincoln St, San Francisco, CA 94016" -144938,Wired Headphones,1,11.99,01/16/19 17:46,"905 Jefferson St, San Francisco, CA 94016" -144939,AAA Batteries (4-pack),1,2.99,01/28/19 17:00,"274 Forest St, San Francisco, CA 94016" -144940,AA Batteries (4-pack),1,3.84,01/19/19 07:10,"652 Forest St, New York City, NY 10001" -144941,Flatscreen TV,1,300,01/09/19 20:43,"639 7th St, New York City, NY 10001" -144942,Vareebadd Phone,1,400,01/24/19 15:52,"225 River St, Boston, MA 02215" -144942,Bose SoundSport Headphones,1,99.99,01/24/19 15:52,"225 River St, Boston, MA 02215" -144943,Wired Headphones,1,11.99,01/18/19 20:38,"575 Washington St, Boston, MA 02215" -144944,Wired Headphones,1,11.99,01/25/19 01:10,"826 Elm St, San Francisco, CA 94016" -144945,Wired Headphones,1,11.99,01/10/19 13:14,"430 Hill St, San Francisco, CA 94016" -144946,ThinkPad Laptop,1,999.99,01/25/19 12:17,"335 Spruce St, San Francisco, CA 94016" -144947,AAA Batteries (4-pack),1,2.99,01/12/19 12:57,"165 Adams St, Los Angeles, CA 90001" -144948,AAA Batteries (4-pack),1,2.99,01/27/19 08:07,"45 Willow St, Los Angeles, CA 90001" -144949,USB-C Charging Cable,1,11.95,01/30/19 19:27,"620 Washington St, Los Angeles, CA 90001" -144950,AAA Batteries (4-pack),1,2.99,01/15/19 17:16,"854 Adams St, New York City, NY 10001" -144951,AA Batteries (4-pack),1,3.84,01/11/19 16:16,"476 South St, San Francisco, CA 94016" -144952,Bose SoundSport Headphones,1,99.99,01/12/19 18:18,"57 13th St, New York City, NY 10001" -144953,Apple Airpods Headphones,1,150,01/17/19 17:39,"403 Wilson St, Dallas, TX 75001" -144954,34in Ultrawide Monitor,1,379.99,01/03/19 08:11,"977 2nd St, San Francisco, CA 94016" -144955,iPhone,1,700,01/23/19 21:17,"570 Pine St, Los Angeles, CA 90001" -144956,Lightning Charging Cable,1,14.95,01/04/19 23:13,"20 Walnut St, Portland, OR 97035" -144957,LG Washing Machine,1,600.0,01/04/19 22:50,"144 Church St, San Francisco, CA 94016" -144958,Lightning Charging Cable,1,14.95,01/13/19 06:43,"857 Wilson St, Boston, MA 02215" -144959,27in FHD Monitor,1,149.99,01/06/19 20:33,"601 Sunset St, Boston, MA 02215" -144960,USB-C Charging Cable,1,11.95,01/08/19 06:16,"461 5th St, San Francisco, CA 94016" -144961,AAA Batteries (4-pack),2,2.99,01/23/19 17:15,"155 Lake St, Boston, MA 02215" -144962,AA Batteries (4-pack),1,3.84,01/31/19 10:51,"540 14th St, San Francisco, CA 94016" -144963,Apple Airpods Headphones,1,150,01/17/19 17:18,"294 Lincoln St, San Francisco, CA 94016" -144964,AA Batteries (4-pack),1,3.84,01/02/19 22:25,"563 Church St, Seattle, WA 98101" -144965,AAA Batteries (4-pack),1,2.99,01/12/19 11:00,"840 Lake St, New York City, NY 10001" -144966,Bose SoundSport Headphones,1,99.99,01/06/19 08:35,"681 Center St, Portland, OR 97035" -144967,Macbook Pro Laptop,1,1700,01/08/19 21:10,"353 12th St, Portland, OR 97035" -144968,Apple Airpods Headphones,1,150,01/11/19 21:51,"523 Hill St, New York City, NY 10001" -144969,Wired Headphones,1,11.99,01/31/19 23:24,"432 Church St, Portland, OR 97035" -144970,Bose SoundSport Headphones,1,99.99,01/22/19 09:31,"478 12th St, Atlanta, GA 30301" -144971,27in FHD Monitor,1,149.99,01/02/19 20:15,"411 7th St, Seattle, WA 98101" -144972,USB-C Charging Cable,1,11.95,01/05/19 19:28,"233 Chestnut St, Los Angeles, CA 90001" -144973,Wired Headphones,2,11.99,01/03/19 23:19,"205 Cedar St, Boston, MA 02215" -144974,Bose SoundSport Headphones,1,99.99,01/17/19 20:11,"635 Jackson St, Seattle, WA 98101" -144975,AAA Batteries (4-pack),1,2.99,01/06/19 12:33,"87 Hickory St, Austin, TX 73301" -144976,AAA Batteries (4-pack),1,2.99,01/08/19 15:20,"444 Hill St, San Francisco, CA 94016" -144977,USB-C Charging Cable,1,11.95,01/24/19 09:05,"504 Wilson St, San Francisco, CA 94016" -144978,USB-C Charging Cable,1,11.95,01/03/19 04:57,"319 12th St, Portland, OR 97035" -144979,AAA Batteries (4-pack),1,2.99,01/14/19 13:06,"43 Maple St, Austin, TX 73301" -144980,Lightning Charging Cable,2,14.95,01/25/19 10:17,"533 Wilson St, Austin, TX 73301" -144981,Flatscreen TV,1,300,01/02/19 14:20,"415 Main St, Los Angeles, CA 90001" -144982,Apple Airpods Headphones,1,150,01/11/19 08:52,"645 Pine St, Portland, OR 97035" -144983,Wired Headphones,1,11.99,01/15/19 00:53,"38 2nd St, Los Angeles, CA 90001" -144984,USB-C Charging Cable,1,11.95,01/28/19 12:52,"421 Willow St, San Francisco, CA 94016" -144985,Apple Airpods Headphones,1,150,01/27/19 18:45,"450 Ridge St, San Francisco, CA 94016" -144986,Apple Airpods Headphones,1,150,01/28/19 14:17,"956 Meadow St, Boston, MA 02215" -144987,AA Batteries (4-pack),1,3.84,01/07/19 14:52,"472 Jefferson St, Boston, MA 02215" -144988,Wired Headphones,1,11.99,01/14/19 19:13,"469 West St, Boston, MA 02215" -144989,AAA Batteries (4-pack),1,2.99,01/31/19 23:29,"32 9th St, New York City, NY 10001" -144990,34in Ultrawide Monitor,1,379.99,01/18/19 16:50,"782 Forest St, Los Angeles, CA 90001" -144991,AAA Batteries (4-pack),2,2.99,01/28/19 05:46,"386 Center St, Dallas, TX 75001" -144992,USB-C Charging Cable,1,11.95,01/21/19 19:37,"584 1st St, San Francisco, CA 94016" -144993,AAA Batteries (4-pack),1,2.99,01/20/19 14:31,"470 Wilson St, Seattle, WA 98101" -144994,ThinkPad Laptop,1,999.99,01/01/19 08:13,"903 Willow St, Los Angeles, CA 90001" -144995,34in Ultrawide Monitor,1,379.99,01/12/19 15:32,"314 Lincoln St, Atlanta, GA 30301" -144996,Wired Headphones,1,11.99,01/05/19 20:44,"222 13th St, Los Angeles, CA 90001" -144997,Wired Headphones,1,11.99,01/13/19 12:32,"595 Pine St, San Francisco, CA 94016" -144998,ThinkPad Laptop,1,999.99,01/30/19 13:20,"527 Jackson St, Boston, MA 02215" -144999,Google Phone,1,600,01/18/19 19:11,"492 Ridge St, San Francisco, CA 94016" -145000,AA Batteries (4-pack),2,3.84,01/22/19 14:53,"855 Highland St, San Francisco, CA 94016" -145001,AAA Batteries (4-pack),1,2.99,01/22/19 10:46,"871 Lakeview St, Atlanta, GA 30301" -145002,Lightning Charging Cable,1,14.95,01/11/19 18:28,"214 Lincoln St, San Francisco, CA 94016" -145003,USB-C Charging Cable,1,11.95,01/29/19 23:44,"814 Hickory St, Boston, MA 02215" -145004,Bose SoundSport Headphones,1,99.99,01/07/19 13:06,"309 Willow St, Dallas, TX 75001" -145005,USB-C Charging Cable,2,11.95,01/12/19 02:52,"890 Center St, San Francisco, CA 94016" -145006,AA Batteries (4-pack),1,3.84,01/03/19 07:38,"607 Park St, San Francisco, CA 94016" -145007,AA Batteries (4-pack),1,3.84,01/12/19 10:25,"321 8th St, New York City, NY 10001" -145008,AAA Batteries (4-pack),1,2.99,01/31/19 06:57,"126 Park St, New York City, NY 10001" -145009,AA Batteries (4-pack),1,3.84,01/21/19 20:49,"354 13th St, Boston, MA 02215" -145010,Wired Headphones,1,11.99,01/11/19 13:44,"697 4th St, New York City, NY 10001" -145011,Bose SoundSport Headphones,1,99.99,01/22/19 10:06,"122 4th St, Boston, MA 02215" -145012,Macbook Pro Laptop,1,1700,01/25/19 23:42,"204 River St, Boston, MA 02215" -145013,Apple Airpods Headphones,1,150,01/12/19 19:15,"32 6th St, Austin, TX 73301" -145014,AAA Batteries (4-pack),2,2.99,01/01/19 13:18,"131 7th St, Atlanta, GA 30301" -145015,USB-C Charging Cable,1,11.95,01/14/19 13:10,"678 Wilson St, Dallas, TX 75001" -145016,iPhone,1,700,01/03/19 16:10,"789 Lincoln St, Los Angeles, CA 90001" -145017,Google Phone,1,600,01/18/19 06:02,"299 Lake St, New York City, NY 10001" -145018,AAA Batteries (4-pack),1,2.99,01/13/19 17:10,"676 South St, New York City, NY 10001" -145019,Google Phone,1,600,01/21/19 09:08,"985 10th St, San Francisco, CA 94016" -145019,USB-C Charging Cable,1,11.95,01/21/19 09:08,"985 10th St, San Francisco, CA 94016" -145019,Wired Headphones,1,11.99,01/21/19 09:08,"985 10th St, San Francisco, CA 94016" -145020,AA Batteries (4-pack),3,3.84,01/26/19 22:02,"418 11th St, Austin, TX 73301" -145021,27in FHD Monitor,1,149.99,01/26/19 14:56,"791 Lincoln St, New York City, NY 10001" -145022,ThinkPad Laptop,1,999.99,01/01/19 21:11,"464 Lincoln St, Seattle, WA 98101" -145023,Google Phone,1,600,01/28/19 15:38,"181 Adams St, Portland, OR 97035" -145024,Wired Headphones,1,11.99,01/28/19 17:10,"496 Sunset St, Atlanta, GA 30301" -145025,AAA Batteries (4-pack),1,2.99,01/19/19 16:35,"842 South St, Seattle, WA 98101" -145026,20in Monitor,1,109.99,01/26/19 06:44,"464 13th St, New York City, NY 10001" -145026,Wired Headphones,1,11.99,01/26/19 06:44,"464 13th St, New York City, NY 10001" -145027,Wired Headphones,1,11.99,01/15/19 22:00,"919 Elm St, New York City, NY 10001" -145028,Apple Airpods Headphones,1,150,01/17/19 23:09,"530 Church St, New York City, NY 10001" -145029,20in Monitor,1,109.99,01/09/19 15:51,"108 Spruce St, Seattle, WA 98101" -145030,Wired Headphones,2,11.99,01/02/19 18:24,"151 Cherry St, New York City, NY 10001" -145031,Flatscreen TV,1,300,01/02/19 09:40,"156 5th St, Los Angeles, CA 90001" -145032,USB-C Charging Cable,1,11.95,01/22/19 15:38,"515 Lincoln St, New York City, NY 10001" -145033,USB-C Charging Cable,1,11.95,01/02/19 22:12,"599 Adams St, Los Angeles, CA 90001" -145034,27in FHD Monitor,1,149.99,01/29/19 10:30,"42 River St, Atlanta, GA 30301" -145035,Apple Airpods Headphones,1,150,01/17/19 12:00,"362 6th St, Los Angeles, CA 90001" -145036,AAA Batteries (4-pack),3,2.99,01/04/19 15:24,"565 Cedar St, Boston, MA 02215" -145037,Macbook Pro Laptop,1,1700,01/02/19 18:15,"177 4th St, New York City, NY 10001" -145038,USB-C Charging Cable,1,11.95,01/19/19 00:52,"357 13th St, Boston, MA 02215" -145039,Google Phone,1,600,01/02/19 20:33,"86 Hill St, Seattle, WA 98101" -145040,27in FHD Monitor,1,149.99,01/11/19 20:25,"849 West St, Portland, OR 97035" -145041,iPhone,1,700,01/13/19 20:05,"250 West St, San Francisco, CA 94016" -145041,Lightning Charging Cable,1,14.95,01/13/19 20:05,"250 West St, San Francisco, CA 94016" -145042,Apple Airpods Headphones,1,150,01/31/19 20:13,"644 North St, Portland, OR 97035" -145043,Bose SoundSport Headphones,1,99.99,01/03/19 09:49,"66 Ridge St, Los Angeles, CA 90001" -145044,Lightning Charging Cable,1,14.95,01/03/19 18:59,"71 Wilson St, San Francisco, CA 94016" -145045,Wired Headphones,1,11.99,01/05/19 15:06,"645 Center St, New York City, NY 10001" -145046,Lightning Charging Cable,1,14.95,01/14/19 10:02,"609 Johnson St, Austin, TX 73301" -145047,Lightning Charging Cable,1,14.95,01/02/19 19:49,"823 Ridge St, Austin, TX 73301" -145048,Flatscreen TV,1,300,01/15/19 02:40,"584 14th St, Portland, OR 97035" -145049,AA Batteries (4-pack),2,3.84,01/10/19 15:53,"95 9th St, New York City, NY 10001" -145050,Bose SoundSport Headphones,1,99.99,01/28/19 18:59,"602 Lake St, Atlanta, GA 30301" -145051,27in FHD Monitor,1,149.99,01/23/19 14:36,"68 Wilson St, Dallas, TX 75001" -145052,USB-C Charging Cable,1,11.95,01/14/19 21:19,"4 Elm St, Dallas, TX 75001" -145053,Bose SoundSport Headphones,1,99.99,01/05/19 19:17,"961 Lakeview St, San Francisco, CA 94016" -145054,AAA Batteries (4-pack),2,2.99,01/12/19 15:29,"59 Lincoln St, San Francisco, CA 94016" -145055,Wired Headphones,1,11.99,01/07/19 13:42,"507 5th St, Seattle, WA 98101" -145056,27in 4K Gaming Monitor,1,389.99,01/31/19 16:55,"308 Madison St, Austin, TX 73301" -145057,Bose SoundSport Headphones,1,99.99,01/17/19 00:07,"789 Walnut St, San Francisco, CA 94016" -145058,Wired Headphones,2,11.99,01/30/19 22:08,"33 Johnson St, Austin, TX 73301" -145059,iPhone,1,700,01/24/19 18:44,"63 Chestnut St, San Francisco, CA 94016" -145059,Lightning Charging Cable,1,14.95,01/24/19 18:44,"63 Chestnut St, San Francisco, CA 94016" -145059,Wired Headphones,1,11.99,01/24/19 18:44,"63 Chestnut St, San Francisco, CA 94016" -145060,Bose SoundSport Headphones,1,99.99,01/30/19 22:44,"145 North St, Los Angeles, CA 90001" -145061,Wired Headphones,2,11.99,01/09/19 20:18,"213 9th St, Boston, MA 02215" -145062,AA Batteries (4-pack),2,3.84,01/30/19 13:48,"787 Pine St, San Francisco, CA 94016" -145063,AA Batteries (4-pack),2,3.84,01/19/19 14:24,"348 Lincoln St, San Francisco, CA 94016" -145064,Lightning Charging Cable,1,14.95,01/07/19 07:18,"648 11th St, Seattle, WA 98101" -145065,Lightning Charging Cable,1,14.95,01/14/19 21:26,"160 Dogwood St, San Francisco, CA 94016" -145066,Bose SoundSport Headphones,1,99.99,01/25/19 20:13,"86 Main St, Dallas, TX 75001" -145067,Macbook Pro Laptop,1,1700,01/29/19 21:04,"863 Meadow St, Dallas, TX 75001" -145068,27in FHD Monitor,1,149.99,01/13/19 03:05,"723 8th St, San Francisco, CA 94016" -145069,20in Monitor,1,109.99,01/04/19 22:46,"720 River St, Boston, MA 02215" -145070,USB-C Charging Cable,1,11.95,01/10/19 23:09,"562 Park St, New York City, NY 10001" -145071,USB-C Charging Cable,1,11.95,01/08/19 23:50,"962 14th St, Seattle, WA 98101" -145071,AA Batteries (4-pack),1,3.84,01/08/19 23:50,"962 14th St, Seattle, WA 98101" -145072,AAA Batteries (4-pack),1,2.99,01/30/19 22:55,"801 South St, Dallas, TX 75001" -145073,Apple Airpods Headphones,1,150,01/09/19 19:35,"37 Elm St, San Francisco, CA 94016" -145074,USB-C Charging Cable,1,11.95,01/17/19 19:24,"829 Hickory St, San Francisco, CA 94016" -145075,iPhone,1,700,01/28/19 05:52,"65 4th St, Seattle, WA 98101" -145076,USB-C Charging Cable,1,11.95,01/26/19 23:26,"715 Washington St, Dallas, TX 75001" -145077,Wired Headphones,1,11.99,01/12/19 23:03,"896 Church St, Boston, MA 02215" -145078,AA Batteries (4-pack),2,3.84,01/14/19 06:29,"579 Highland St, Austin, TX 73301" -145079,AA Batteries (4-pack),2,3.84,01/17/19 19:28,"648 Washington St, Dallas, TX 75001" -145080,AA Batteries (4-pack),1,3.84,01/28/19 11:39,"345 9th St, New York City, NY 10001" -145081,AA Batteries (4-pack),1,3.84,01/21/19 20:30,"514 7th St, Los Angeles, CA 90001" -145082,AAA Batteries (4-pack),3,2.99,01/01/19 08:48,"133 West St, San Francisco, CA 94016" -145083,34in Ultrawide Monitor,1,379.99,01/02/19 21:50,"410 Hill St, Portland, OR 97035" -145084,Bose SoundSport Headphones,1,99.99,01/03/19 16:49,"227 1st St, Atlanta, GA 30301" -145085,iPhone,1,700,01/16/19 10:27,"16 Johnson St, Atlanta, GA 30301" -145086,Macbook Pro Laptop,1,1700,01/15/19 11:20,"828 Wilson St, Portland, ME 04101" -145087,Wired Headphones,1,11.99,01/02/19 11:33,"463 Hill St, Atlanta, GA 30301" -145088,34in Ultrawide Monitor,1,379.99,01/20/19 08:03,"21 Ridge St, San Francisco, CA 94016" -145089,AA Batteries (4-pack),1,3.84,01/15/19 17:06,"468 Elm St, New York City, NY 10001" -145090,AAA Batteries (4-pack),2,2.99,01/04/19 20:46,"362 12th St, San Francisco, CA 94016" -145091,ThinkPad Laptop,1,999.99,01/10/19 07:43,"175 Lake St, San Francisco, CA 94016" -145092,Google Phone,1,600,01/15/19 18:14,"282 2nd St, New York City, NY 10001" -145093,Wired Headphones,1,11.99,01/29/19 20:27,"41 West St, Seattle, WA 98101" -145094,27in FHD Monitor,1,149.99,01/30/19 16:59,"307 Chestnut St, San Francisco, CA 94016" -145095,USB-C Charging Cable,1,11.95,01/30/19 07:21,"674 Park St, New York City, NY 10001" -145096,USB-C Charging Cable,1,11.95,01/05/19 08:11,"131 14th St, San Francisco, CA 94016" -145097,Lightning Charging Cable,1,14.95,01/28/19 06:32,"911 6th St, Dallas, TX 75001" -145098,34in Ultrawide Monitor,1,379.99,01/10/19 19:47,"774 Ridge St, Seattle, WA 98101" -145099,Apple Airpods Headphones,1,150,01/11/19 21:15,"52 Main St, San Francisco, CA 94016" -145100,USB-C Charging Cable,1,11.95,01/04/19 01:52,"141 1st St, Portland, OR 97035" -145101,Wired Headphones,1,11.99,01/30/19 19:24,"398 Center St, Dallas, TX 75001" -145102,Flatscreen TV,1,300,01/29/19 14:55,"546 Main St, Seattle, WA 98101" -145103,Google Phone,1,600,01/02/19 12:59,"906 6th St, Los Angeles, CA 90001" -145104,Macbook Pro Laptop,1,1700,01/11/19 09:12,"841 8th St, New York City, NY 10001" -145105,Wired Headphones,1,11.99,01/30/19 10:52,"251 Main St, Los Angeles, CA 90001" -145106,20in Monitor,1,109.99,01/13/19 17:04,"300 Jefferson St, Atlanta, GA 30301" -145107,AA Batteries (4-pack),1,3.84,01/22/19 09:27,"841 Chestnut St, Los Angeles, CA 90001" -145107,LG Dryer,1,600.0,01/22/19 09:27,"841 Chestnut St, Los Angeles, CA 90001" -145108,Wired Headphones,1,11.99,01/29/19 21:22,"12 Sunset St, Atlanta, GA 30301" -145109,27in FHD Monitor,1,149.99,01/14/19 10:37,"71 Chestnut St, Atlanta, GA 30301" -145110,Google Phone,1,600,01/18/19 15:14,"763 Dogwood St, San Francisco, CA 94016" -145111,ThinkPad Laptop,1,999.99,01/22/19 11:54,"330 West St, Atlanta, GA 30301" -145112,34in Ultrawide Monitor,1,379.99,01/01/19 16:44,"787 Wilson St, Atlanta, GA 30301" -145113,AA Batteries (4-pack),1,3.84,01/02/19 12:52,"235 12th St, Austin, TX 73301" -145114,USB-C Charging Cable,1,11.95,01/22/19 15:36,"131 14th St, San Francisco, CA 94016" -145115,Lightning Charging Cable,1,14.95,01/22/19 18:51,"429 Washington St, Atlanta, GA 30301" -145116,Lightning Charging Cable,1,14.95,01/10/19 23:50,"965 6th St, Los Angeles, CA 90001" -145117,27in FHD Monitor,1,149.99,01/23/19 16:38,"118 Pine St, San Francisco, CA 94016" -145118,USB-C Charging Cable,1,11.95,01/06/19 22:39,"291 Wilson St, New York City, NY 10001" -145118,Bose SoundSport Headphones,1,99.99,01/06/19 22:39,"291 Wilson St, New York City, NY 10001" -145119,USB-C Charging Cable,1,11.95,01/24/19 16:06,"172 Hill St, New York City, NY 10001" -145120,AAA Batteries (4-pack),1,2.99,01/09/19 21:42,"997 Adams St, Boston, MA 02215" -145121,USB-C Charging Cable,1,11.95,01/25/19 01:10,"812 5th St, New York City, NY 10001" -145122,ThinkPad Laptop,1,999.99,01/01/19 16:26,"501 Adams St, Los Angeles, CA 90001" -145123,34in Ultrawide Monitor,1,379.99,01/03/19 20:16,"706 Center St, Los Angeles, CA 90001" -145124,Vareebadd Phone,1,400,01/04/19 09:15,"560 Johnson St, Los Angeles, CA 90001" -145125,Google Phone,1,600,01/19/19 17:59,"763 Lincoln St, Los Angeles, CA 90001" -145125,USB-C Charging Cable,1,11.95,01/19/19 17:59,"763 Lincoln St, Los Angeles, CA 90001" -145126,LG Washing Machine,1,600.0,01/03/19 00:06,"946 Walnut St, San Francisco, CA 94016" -145127,Wired Headphones,1,11.99,01/15/19 18:59,"824 Sunset St, Atlanta, GA 30301" -145128,AA Batteries (4-pack),1,3.84,01/27/19 11:58,"85 Jefferson St, Los Angeles, CA 90001" -145129,27in 4K Gaming Monitor,1,389.99,01/05/19 18:28,"91 Hickory St, Dallas, TX 75001" -145130,34in Ultrawide Monitor,1,379.99,01/09/19 15:42,"69 Hickory St, San Francisco, CA 94016" -145131,Lightning Charging Cable,1,14.95,01/30/19 18:39,"413 Adams St, Boston, MA 02215" -145132,34in Ultrawide Monitor,1,379.99,01/10/19 15:10,"396 North St, San Francisco, CA 94016" -145133,AAA Batteries (4-pack),1,2.99,01/21/19 09:19,"541 6th St, Boston, MA 02215" -145134,27in FHD Monitor,1,149.99,01/17/19 14:41,"725 Jackson St, Los Angeles, CA 90001" -145135,Bose SoundSport Headphones,1,99.99,01/31/19 23:06,"542 Adams St, Seattle, WA 98101" -145136,AAA Batteries (4-pack),3,2.99,01/15/19 12:59,"728 Johnson St, New York City, NY 10001" -145137,AAA Batteries (4-pack),1,2.99,01/31/19 19:39,"463 West St, Portland, OR 97035" -145138,Wired Headphones,1,11.99,01/08/19 19:36,"933 Center St, New York City, NY 10001" -145139,USB-C Charging Cable,1,11.95,01/14/19 15:34,"979 12th St, Austin, TX 73301" -145140,Vareebadd Phone,1,400,01/08/19 12:53,"974 5th St, Portland, OR 97035" -145141,Apple Airpods Headphones,1,150,01/10/19 21:53,"275 Pine St, Boston, MA 02215" -145141,AAA Batteries (4-pack),1,2.99,01/10/19 21:53,"275 Pine St, Boston, MA 02215" -145142,Bose SoundSport Headphones,1,99.99,01/10/19 14:14,"270 Lake St, Atlanta, GA 30301" -145143,Lightning Charging Cable,1,14.95,01/06/19 03:01,"182 Jefferson St, San Francisco, CA 94016" -145143,Lightning Charging Cable,1,14.95,01/06/19 03:01,"182 Jefferson St, San Francisco, CA 94016" -145144,AAA Batteries (4-pack),2,2.99,01/22/19 23:18,"904 Lake St, Los Angeles, CA 90001" -145145,Google Phone,1,600,01/10/19 22:33,"771 9th St, San Francisco, CA 94016" -145145,Wired Headphones,1,11.99,01/10/19 22:33,"771 9th St, San Francisco, CA 94016" -145146,iPhone,1,700,01/09/19 20:56,"411 Wilson St, San Francisco, CA 94016" -145147,Lightning Charging Cable,1,14.95,01/28/19 19:26,"567 12th St, San Francisco, CA 94016" -145148,34in Ultrawide Monitor,1,379.99,01/05/19 20:33,"253 Madison St, Los Angeles, CA 90001" -145149,Lightning Charging Cable,1,14.95,01/06/19 11:06,"676 Washington St, Boston, MA 02215" -145150,USB-C Charging Cable,1,11.95,01/03/19 11:42,"376 River St, Los Angeles, CA 90001" -145151,AA Batteries (4-pack),1,3.84,01/21/19 16:41,"499 Jefferson St, Los Angeles, CA 90001" -145152,27in FHD Monitor,1,149.99,01/09/19 21:03,"781 Lake St, San Francisco, CA 94016" -145153,Wired Headphones,1,11.99,01/03/19 15:57,"241 Lakeview St, Los Angeles, CA 90001" -145154,AA Batteries (4-pack),2,3.84,01/26/19 19:46,"881 Church St, San Francisco, CA 94016" -145155,Lightning Charging Cable,3,14.95,01/09/19 11:22,"321 Lake St, San Francisco, CA 94016" -145156,AAA Batteries (4-pack),1,2.99,01/28/19 11:55,"341 9th St, San Francisco, CA 94016" -145157,Apple Airpods Headphones,1,150,01/19/19 21:13,"912 Elm St, Los Angeles, CA 90001" -145158,LG Washing Machine,1,600.0,01/03/19 21:05,"317 Highland St, Seattle, WA 98101" -145159,USB-C Charging Cable,1,11.95,01/11/19 08:56,"487 Maple St, Los Angeles, CA 90001" -145160,USB-C Charging Cable,1,11.95,01/28/19 18:24,"859 11th St, Atlanta, GA 30301" -145161,Bose SoundSport Headphones,1,99.99,01/13/19 12:32,"327 4th St, Dallas, TX 75001" -145162,AA Batteries (4-pack),2,3.84,01/30/19 15:55,"861 Hickory St, San Francisco, CA 94016" -145163,iPhone,1,700,01/04/19 10:00,"37 8th St, San Francisco, CA 94016" -145164,Lightning Charging Cable,1,14.95,01/09/19 19:23,"309 Lakeview St, San Francisco, CA 94016" -145165,27in FHD Monitor,1,149.99,01/01/19 09:58,"237 4th St, Boston, MA 02215" -145166,Vareebadd Phone,1,400,01/17/19 11:04,"177 Spruce St, San Francisco, CA 94016" -145166,AAA Batteries (4-pack),1,2.99,01/17/19 11:04,"177 Spruce St, San Francisco, CA 94016" -145167,20in Monitor,1,109.99,01/15/19 12:04,"192 South St, Portland, ME 04101" -145168,Lightning Charging Cable,1,14.95,01/09/19 05:48,"525 Willow St, New York City, NY 10001" -145169,iPhone,1,700,01/07/19 22:22,"425 Main St, San Francisco, CA 94016" -145169,Lightning Charging Cable,2,14.95,01/07/19 22:22,"425 Main St, San Francisco, CA 94016" -145170,Google Phone,1,600,01/21/19 13:50,"18 Pine St, New York City, NY 10001" -145171,Apple Airpods Headphones,1,150,01/24/19 00:14,"877 Jefferson St, Los Angeles, CA 90001" -145172,AAA Batteries (4-pack),1,2.99,01/24/19 10:28,"834 Cherry St, New York City, NY 10001" -145173,Google Phone,1,600,01/21/19 08:28,"726 West St, Portland, ME 04101" -145174,AA Batteries (4-pack),1,3.84,01/16/19 23:28,"697 Sunset St, San Francisco, CA 94016" -145175,Bose SoundSport Headphones,1,99.99,01/07/19 11:16,"266 7th St, Boston, MA 02215" -145176,iPhone,1,700,01/30/19 11:03,"331 Hickory St, Boston, MA 02215" -145177,Lightning Charging Cable,1,14.95,01/25/19 14:04,"718 Pine St, Dallas, TX 75001" -145178,27in 4K Gaming Monitor,1,389.99,01/19/19 15:55,"103 Lake St, Los Angeles, CA 90001" -145179,AAA Batteries (4-pack),1,2.99,01/13/19 00:12,"439 Johnson St, San Francisco, CA 94016" -145180,Apple Airpods Headphones,1,150,01/02/19 23:04,"58 14th St, San Francisco, CA 94016" -145181,USB-C Charging Cable,2,11.95,01/21/19 20:11,"761 Pine St, Seattle, WA 98101" -145182,Bose SoundSport Headphones,1,99.99,01/02/19 10:06,"217 Madison St, Dallas, TX 75001" -145183,AA Batteries (4-pack),2,3.84,01/03/19 19:59,"168 Elm St, Austin, TX 73301" -145184,Apple Airpods Headphones,1,150,01/18/19 09:38,"527 Park St, Dallas, TX 75001" -145185,Wired Headphones,1,11.99,01/13/19 15:35,"950 Forest St, San Francisco, CA 94016" -145186,AA Batteries (4-pack),1,3.84,01/25/19 23:38,"644 Chestnut St, Austin, TX 73301" -145187,27in FHD Monitor,1,149.99,01/26/19 16:43,"532 Willow St, San Francisco, CA 94016" -145188,iPhone,1,700,01/30/19 17:42,"438 Cherry St, New York City, NY 10001" -145189,USB-C Charging Cable,1,11.95,01/01/19 21:34,"199 13th St, Atlanta, GA 30301" -145190,Google Phone,1,600,01/12/19 08:31,"250 Washington St, Austin, TX 73301" -145191,AAA Batteries (4-pack),3,2.99,01/28/19 14:35,"113 Dogwood St, San Francisco, CA 94016" -145192,Wired Headphones,1,11.99,01/24/19 12:10,"93 Pine St, New York City, NY 10001" -145193,AA Batteries (4-pack),1,3.84,01/06/19 01:14,"514 River St, Austin, TX 73301" -145194,Bose SoundSport Headphones,1,99.99,01/08/19 18:50,"785 Center St, San Francisco, CA 94016" -145195,LG Dryer,1,600.0,01/18/19 12:23,"177 Madison St, Boston, MA 02215" -145196,Wired Headphones,1,11.99,01/28/19 02:22,"19 Jackson St, Boston, MA 02215" -145197,Wired Headphones,1,11.99,01/13/19 21:14,"959 River St, Los Angeles, CA 90001" -145198,Lightning Charging Cable,1,14.95,01/02/19 22:55,"610 7th St, New York City, NY 10001" -145199,34in Ultrawide Monitor,1,379.99,01/15/19 08:09,"238 Spruce St, Portland, OR 97035" -145200,AAA Batteries (4-pack),1,2.99,01/12/19 12:37,"638 Cherry St, Los Angeles, CA 90001" -145201,Google Phone,1,600,01/20/19 20:10,"362 Meadow St, San Francisco, CA 94016" -145201,Wired Headphones,1,11.99,01/20/19 20:10,"362 Meadow St, San Francisco, CA 94016" -145202,Flatscreen TV,1,300,01/21/19 16:30,"935 Adams St, Dallas, TX 75001" -145203,AA Batteries (4-pack),3,3.84,01/06/19 18:23,"85 Meadow St, Boston, MA 02215" -145204,Bose SoundSport Headphones,1,99.99,01/17/19 00:32,"694 2nd St, Los Angeles, CA 90001" -145205,Vareebadd Phone,1,400,01/18/19 09:32,"171 Jackson St, New York City, NY 10001" -145206,Flatscreen TV,1,300,01/31/19 13:43,"49 9th St, New York City, NY 10001" -145207,Lightning Charging Cable,1,14.95,01/18/19 22:44,"482 Pine St, Seattle, WA 98101" -145208,USB-C Charging Cable,2,11.95,01/22/19 11:36,"816 Maple St, New York City, NY 10001" -145209,Macbook Pro Laptop,1,1700,01/10/19 21:46,"693 Washington St, Atlanta, GA 30301" -145210,AAA Batteries (4-pack),1,2.99,01/06/19 13:12,"235 7th St, San Francisco, CA 94016" -145211,AAA Batteries (4-pack),4,2.99,01/16/19 09:13,"761 West St, Boston, MA 02215" -145212,Lightning Charging Cable,1,14.95,02/01/19 00:36,"484 6th St, Dallas, TX 75001" -145213,27in FHD Monitor,1,149.99,01/17/19 21:46,"449 Chestnut St, Los Angeles, CA 90001" -145214,USB-C Charging Cable,1,11.95,01/27/19 12:31,"638 6th St, Boston, MA 02215" -145215,AAA Batteries (4-pack),3,2.99,01/14/19 23:50,"754 Willow St, Los Angeles, CA 90001" -145216,AA Batteries (4-pack),1,3.84,01/30/19 12:45,"368 9th St, New York City, NY 10001" -145217,34in Ultrawide Monitor,1,379.99,01/07/19 09:17,"19 Park St, Atlanta, GA 30301" -145218,AA Batteries (4-pack),2,3.84,01/27/19 12:42,"555 6th St, Los Angeles, CA 90001" -145219,ThinkPad Laptop,1,999.99,01/17/19 12:22,"342 Lake St, Atlanta, GA 30301" -145220,Apple Airpods Headphones,1,150,01/18/19 19:29,"103 Church St, San Francisco, CA 94016" -145221,Flatscreen TV,1,300,01/16/19 13:57,"982 1st St, Portland, OR 97035" -145221,Apple Airpods Headphones,1,150,01/16/19 13:57,"982 1st St, Portland, OR 97035" -145222,Bose SoundSport Headphones,1,99.99,01/07/19 17:26,"605 Jackson St, Seattle, WA 98101" -145223,AAA Batteries (4-pack),2,2.99,01/27/19 09:33,"901 Madison St, Seattle, WA 98101" -145224,27in 4K Gaming Monitor,1,389.99,01/16/19 16:49,"451 Spruce St, Dallas, TX 75001" -145225,20in Monitor,1,109.99,01/28/19 22:56,"707 6th St, Los Angeles, CA 90001" -145226,AAA Batteries (4-pack),1,2.99,01/11/19 19:32,"699 South St, San Francisco, CA 94016" -145227,ThinkPad Laptop,1,999.99,01/17/19 12:54,"405 13th St, Dallas, TX 75001" -145228,LG Dryer,1,600.0,01/30/19 13:02,"866 11th St, San Francisco, CA 94016" -145229,Apple Airpods Headphones,1,150,01/18/19 21:58,"389 Lake St, Boston, MA 02215" -145230,Wired Headphones,1,11.99,01/24/19 12:15,"655 Hill St, Los Angeles, CA 90001" -145231,Vareebadd Phone,1,400,01/20/19 21:35,"949 Forest St, Boston, MA 02215" -145232,Wired Headphones,1,11.99,01/08/19 18:48,"621 Hickory St, Boston, MA 02215" -145233,LG Washing Machine,1,600.0,01/24/19 09:14,"403 4th St, Los Angeles, CA 90001" -145234,Lightning Charging Cable,1,14.95,01/03/19 02:00,"728 12th St, San Francisco, CA 94016" -145235,LG Washing Machine,1,600.0,01/09/19 13:59,"341 13th St, New York City, NY 10001" -145236,27in FHD Monitor,1,149.99,01/20/19 17:48,"197 5th St, San Francisco, CA 94016" -145237,27in FHD Monitor,1,149.99,01/10/19 12:48,"970 Meadow St, Los Angeles, CA 90001" -145238,AAA Batteries (4-pack),1,2.99,01/07/19 14:08,"104 Madison St, Boston, MA 02215" -145239,Bose SoundSport Headphones,1,99.99,01/01/19 21:56,"985 10th St, Los Angeles, CA 90001" -145240,Apple Airpods Headphones,1,150,01/31/19 12:32,"951 Hill St, Austin, TX 73301" -145241,27in 4K Gaming Monitor,1,389.99,01/09/19 22:49,"860 Spruce St, San Francisco, CA 94016" -145242,Wired Headphones,1,11.99,01/31/19 22:22,"957 Cedar St, New York City, NY 10001" -145243,Wired Headphones,1,11.99,01/26/19 18:50,"330 Elm St, Los Angeles, CA 90001" -145244,Bose SoundSport Headphones,1,99.99,01/05/19 23:27,"77 Jefferson St, Atlanta, GA 30301" -145245,Wired Headphones,1,11.99,01/23/19 21:57,"308 Walnut St, New York City, NY 10001" -145246,Apple Airpods Headphones,1,150,01/13/19 22:16,"609 Center St, San Francisco, CA 94016" -145247,AAA Batteries (4-pack),1,2.99,01/22/19 15:36,"972 1st St, New York City, NY 10001" -145248,ThinkPad Laptop,1,999.99,01/09/19 20:11,"27 Sunset St, Atlanta, GA 30301" -145249,Apple Airpods Headphones,1,150,01/16/19 19:48,"566 Lake St, Portland, OR 97035" -145250,AAA Batteries (4-pack),1,2.99,01/24/19 21:31,"726 Lincoln St, Portland, ME 04101" -145251,Flatscreen TV,1,300,01/24/19 00:21,"794 Lake St, Boston, MA 02215" -145252,Apple Airpods Headphones,1,150,01/05/19 16:44,"692 13th St, Dallas, TX 75001" -145253,Lightning Charging Cable,1,14.95,01/26/19 11:33,"55 Madison St, Portland, OR 97035" -145254,AAA Batteries (4-pack),1,2.99,01/06/19 18:12,"909 5th St, New York City, NY 10001" -145255,Lightning Charging Cable,1,14.95,01/04/19 06:13,"469 Center St, Boston, MA 02215" -145256,iPhone,1,700,01/02/19 13:21,"907 11th St, Los Angeles, CA 90001" -145256,Lightning Charging Cable,1,14.95,01/02/19 13:21,"907 11th St, Los Angeles, CA 90001" -145257,Wired Headphones,1,11.99,01/05/19 19:22,"495 Forest St, San Francisco, CA 94016" -145258,AA Batteries (4-pack),1,3.84,01/25/19 01:13,"27 7th St, New York City, NY 10001" -145259,AA Batteries (4-pack),1,3.84,01/18/19 10:09,"692 Cedar St, Dallas, TX 75001" -145260,iPhone,1,700,01/19/19 13:38,"303 4th St, Seattle, WA 98101" -145261,AA Batteries (4-pack),1,3.84,01/07/19 10:10,"967 9th St, San Francisco, CA 94016" -145262,AAA Batteries (4-pack),1,2.99,01/26/19 14:04,"102 8th St, Portland, OR 97035" -145263,iPhone,1,700,01/18/19 14:02,"270 Madison St, Portland, OR 97035" -145264,USB-C Charging Cable,1,11.95,01/13/19 15:29,"593 Elm St, Boston, MA 02215" -145265,Lightning Charging Cable,1,14.95,01/05/19 19:53,"624 Willow St, San Francisco, CA 94016" -145266,Lightning Charging Cable,1,14.95,01/09/19 05:58,"839 Johnson St, San Francisco, CA 94016" -145267,AA Batteries (4-pack),1,3.84,01/22/19 18:54,"887 Lincoln St, Los Angeles, CA 90001" -145268,Google Phone,1,600,01/07/19 10:22,"329 River St, Boston, MA 02215" -145269,Bose SoundSport Headphones,1,99.99,01/28/19 02:01,"889 Cherry St, Los Angeles, CA 90001" -145270,Google Phone,1,600,01/01/19 07:33,"392 4th St, Dallas, TX 75001" -145271,34in Ultrawide Monitor,1,379.99,01/23/19 21:00,"391 10th St, Los Angeles, CA 90001" -145272,Macbook Pro Laptop,1,1700,01/14/19 23:20,"369 North St, Los Angeles, CA 90001" -145273,Wired Headphones,1,11.99,01/18/19 22:36,"381 9th St, Boston, MA 02215" -145274,Bose SoundSport Headphones,1,99.99,01/06/19 17:48,"599 12th St, San Francisco, CA 94016" -145275,Lightning Charging Cable,1,14.95,01/13/19 12:13,"805 Wilson St, New York City, NY 10001" -145276,27in FHD Monitor,1,149.99,01/13/19 23:50,"328 11th St, Boston, MA 02215" -145277,Bose SoundSport Headphones,1,99.99,01/21/19 00:53,"86 1st St, Boston, MA 02215" -145278,AAA Batteries (4-pack),4,2.99,01/05/19 12:58,"883 Adams St, San Francisco, CA 94016" -145279,Wired Headphones,1,11.99,01/16/19 22:41,"353 North St, Los Angeles, CA 90001" -145280,Lightning Charging Cable,1,14.95,01/16/19 13:26,"698 11th St, Seattle, WA 98101" -145281,USB-C Charging Cable,1,11.95,01/08/19 18:10,"700 7th St, New York City, NY 10001" -145282,Wired Headphones,1,11.99,01/16/19 13:49,"801 9th St, San Francisco, CA 94016" -145283,Flatscreen TV,1,300,01/14/19 10:38,"155 Walnut St, Los Angeles, CA 90001" -145284,20in Monitor,1,109.99,01/05/19 07:37,"567 Cedar St, San Francisco, CA 94016" -145285,USB-C Charging Cable,1,11.95,01/22/19 14:11,"192 4th St, Dallas, TX 75001" -145286,27in FHD Monitor,1,149.99,01/21/19 18:48,"587 Madison St, Los Angeles, CA 90001" -145287,AA Batteries (4-pack),1,3.84,01/16/19 20:39,"186 Lincoln St, New York City, NY 10001" -145288,Apple Airpods Headphones,1,150,01/29/19 12:38,"663 8th St, Seattle, WA 98101" -145289,USB-C Charging Cable,1,11.95,01/28/19 18:43,"479 5th St, Los Angeles, CA 90001" -145290,USB-C Charging Cable,1,11.95,01/09/19 01:25,"956 North St, San Francisco, CA 94016" -145291,AA Batteries (4-pack),1,3.84,01/26/19 10:08,"942 Dogwood St, Austin, TX 73301" -145292,Wired Headphones,1,11.99,01/09/19 09:18,"202 River St, Atlanta, GA 30301" -145293,USB-C Charging Cable,1,11.95,01/08/19 18:13,"618 Dogwood St, Los Angeles, CA 90001" -145294,AA Batteries (4-pack),1,3.84,01/15/19 20:57,"573 North St, Portland, OR 97035" -145295,Macbook Pro Laptop,1,1700,01/04/19 14:08,"291 West St, Atlanta, GA 30301" -145296,34in Ultrawide Monitor,1,379.99,01/03/19 22:17,"235 Spruce St, Los Angeles, CA 90001" -145297,AA Batteries (4-pack),1,3.84,01/25/19 19:06,"961 Meadow St, Atlanta, GA 30301" -145298,27in FHD Monitor,1,149.99,01/29/19 21:42,"193 Jackson St, New York City, NY 10001" -145299,Apple Airpods Headphones,1,150,01/12/19 20:25,"760 Sunset St, Los Angeles, CA 90001" -145300,Wired Headphones,1,11.99,01/20/19 07:07,"82 Walnut St, Seattle, WA 98101" -145300,AAA Batteries (4-pack),2,2.99,01/20/19 07:07,"82 Walnut St, Seattle, WA 98101" -145301,Wired Headphones,1,11.99,01/27/19 18:19,"360 12th St, Dallas, TX 75001" -145302,Bose SoundSport Headphones,1,99.99,01/07/19 14:14,"91 Madison St, New York City, NY 10001" -145303,USB-C Charging Cable,1,11.95,01/24/19 08:50,"110 Sunset St, San Francisco, CA 94016" -145304,Bose SoundSport Headphones,1,99.99,01/18/19 10:08,"271 Park St, Seattle, WA 98101" -145305,AAA Batteries (4-pack),3,2.99,01/05/19 19:21,"353 Elm St, Boston, MA 02215" -145306,Apple Airpods Headphones,1,150,01/16/19 05:13,"532 2nd St, New York City, NY 10001" -145307,ThinkPad Laptop,1,999.99,01/12/19 10:38,"311 2nd St, Boston, MA 02215" -145308,Apple Airpods Headphones,1,150,01/19/19 21:44,"984 14th St, San Francisco, CA 94016" -145309,USB-C Charging Cable,2,11.95,01/03/19 01:02,"965 1st St, Los Angeles, CA 90001" -145310,AAA Batteries (4-pack),1,2.99,01/22/19 21:01,"245 2nd St, Dallas, TX 75001" -145311,27in 4K Gaming Monitor,1,389.99,01/13/19 10:17,"420 Pine St, San Francisco, CA 94016" -145312,Bose SoundSport Headphones,1,99.99,01/14/19 20:09,"469 7th St, Los Angeles, CA 90001" -145313,20in Monitor,1,109.99,01/26/19 08:50,"681 1st St, Boston, MA 02215" -145314,Apple Airpods Headphones,1,150,01/27/19 10:01,"332 Pine St, San Francisco, CA 94016" -145315,AA Batteries (4-pack),1,3.84,01/07/19 15:47,"553 Jefferson St, Dallas, TX 75001" -145316,AAA Batteries (4-pack),2,2.99,01/12/19 11:42,"935 14th St, Boston, MA 02215" -145317,AAA Batteries (4-pack),1,2.99,01/16/19 23:56,"181 Washington St, Dallas, TX 75001" -145318,AAA Batteries (4-pack),3,2.99,01/28/19 01:31,"607 Lakeview St, New York City, NY 10001" -145319,Apple Airpods Headphones,1,150,01/01/19 13:05,"905 River St, San Francisco, CA 94016" -145320,USB-C Charging Cable,1,11.95,01/28/19 17:36,"940 Jefferson St, New York City, NY 10001" -145321,Apple Airpods Headphones,1,150,01/30/19 14:42,"596 Dogwood St, Los Angeles, CA 90001" -145322,Lightning Charging Cable,1,14.95,01/05/19 13:27,"242 11th St, New York City, NY 10001" -145323,AAA Batteries (4-pack),1,2.99,01/20/19 19:17,"493 Center St, Dallas, TX 75001" -145324,Vareebadd Phone,1,400,01/08/19 12:22,"455 Hill St, Austin, TX 73301" -145325,AA Batteries (4-pack),1,3.84,01/02/19 06:41,"466 North St, Atlanta, GA 30301" -145326,34in Ultrawide Monitor,1,379.99,01/02/19 23:43,"126 Park St, Los Angeles, CA 90001" -145327,27in FHD Monitor,1,149.99,01/07/19 19:15,"247 5th St, New York City, NY 10001" -145328,27in FHD Monitor,1,149.99,01/06/19 17:49,"861 Pine St, San Francisco, CA 94016" -145329,AA Batteries (4-pack),1,3.84,01/17/19 11:35,"410 Washington St, Dallas, TX 75001" -145330,Google Phone,1,600,01/08/19 14:03,"380 Center St, New York City, NY 10001" -145331,Lightning Charging Cable,1,14.95,01/18/19 19:19,"487 Meadow St, San Francisco, CA 94016" -145332,USB-C Charging Cable,1,11.95,01/24/19 11:44,"78 West St, San Francisco, CA 94016" -145333,Wired Headphones,1,11.99,01/16/19 13:50,"338 Hickory St, Dallas, TX 75001" -145334,Google Phone,1,600,01/25/19 08:26,"338 11th St, Atlanta, GA 30301" -145335,Macbook Pro Laptop,1,1700,01/11/19 22:35,"735 Forest St, New York City, NY 10001" -145336,Apple Airpods Headphones,1,150,01/28/19 11:11,"80 5th St, New York City, NY 10001" -145337,Apple Airpods Headphones,1,150,01/20/19 14:24,"824 Cherry St, New York City, NY 10001" -145338,ThinkPad Laptop,1,999.99,01/17/19 16:56,"356 10th St, Austin, TX 73301" -145339,iPhone,1,700,01/28/19 09:06,"210 12th St, Seattle, WA 98101" -145340,AA Batteries (4-pack),3,3.84,01/02/19 17:19,"114 Ridge St, San Francisco, CA 94016" -145341,iPhone,1,700,01/09/19 12:45,"729 10th St, Seattle, WA 98101" -145342,AA Batteries (4-pack),2,3.84,01/23/19 10:32,"269 13th St, Portland, OR 97035" -145343,ThinkPad Laptop,1,999.99,01/02/19 09:40,"643 Elm St, San Francisco, CA 94016" -145344,AAA Batteries (4-pack),3,2.99,01/16/19 21:07,"580 Church St, Atlanta, GA 30301" -145345,Bose SoundSport Headphones,1,99.99,01/03/19 00:14,"87 1st St, Seattle, WA 98101" -145346,AA Batteries (4-pack),4,3.84,01/23/19 18:31,"504 Pine St, Dallas, TX 75001" -145347,AA Batteries (4-pack),1,3.84,01/06/19 15:35,"577 Highland St, San Francisco, CA 94016" -145348,34in Ultrawide Monitor,1,379.99,01/08/19 23:47,"112 River St, Seattle, WA 98101" -145349,AA Batteries (4-pack),1,3.84,01/23/19 17:52,"828 Lakeview St, Los Angeles, CA 90001" -145350,27in FHD Monitor,1,149.99,01/14/19 13:09,"941 14th St, Atlanta, GA 30301" -145351,AAA Batteries (4-pack),2,2.99,01/18/19 20:18,"971 7th St, Seattle, WA 98101" -145352,Wired Headphones,1,11.99,01/29/19 18:56,"189 Center St, San Francisco, CA 94016" -145353,27in FHD Monitor,1,149.99,01/10/19 00:15,"896 5th St, San Francisco, CA 94016" -145354,USB-C Charging Cable,2,11.95,01/06/19 14:56,"150 12th St, Los Angeles, CA 90001" -145355,USB-C Charging Cable,1,11.95,01/16/19 18:08,"486 North St, San Francisco, CA 94016" -145356,Wired Headphones,1,11.99,01/17/19 10:32,"151 Center St, Austin, TX 73301" -145357,Wired Headphones,1,11.99,01/14/19 13:10,"688 Walnut St, Atlanta, GA 30301" -145358,AA Batteries (4-pack),1,3.84,01/09/19 15:29,"952 Chestnut St, Atlanta, GA 30301" -145359,Wired Headphones,1,11.99,01/18/19 08:55,"312 Highland St, Los Angeles, CA 90001" -145360,Wired Headphones,1,11.99,01/20/19 12:00,"256 6th St, Dallas, TX 75001" -145361,AA Batteries (4-pack),2,3.84,01/03/19 12:37,"999 Dogwood St, Boston, MA 02215" -145362,Lightning Charging Cable,1,14.95,01/15/19 21:32,"653 Dogwood St, New York City, NY 10001" -145363,Wired Headphones,1,11.99,01/10/19 20:03,"506 8th St, Los Angeles, CA 90001" -145364,AAA Batteries (4-pack),3,2.99,01/22/19 09:18,"984 North St, Los Angeles, CA 90001" -145364,Bose SoundSport Headphones,1,99.99,01/22/19 09:18,"984 North St, Los Angeles, CA 90001" -145365,Lightning Charging Cable,2,14.95,01/24/19 18:21,"219 Main St, Atlanta, GA 30301" -145366,27in 4K Gaming Monitor,1,389.99,01/26/19 17:28,"900 Lakeview St, Boston, MA 02215" -145367,Lightning Charging Cable,1,14.95,01/26/19 10:27,"277 Lincoln St, Los Angeles, CA 90001" -145368,27in FHD Monitor,1,149.99,01/24/19 20:45,"567 7th St, Seattle, WA 98101" -145369,AAA Batteries (4-pack),1,2.99,01/02/19 16:55,"70 7th St, Dallas, TX 75001" -145369,Flatscreen TV,1,300,01/02/19 16:55,"70 7th St, Dallas, TX 75001" -145370,AA Batteries (4-pack),1,3.84,01/04/19 19:54,"768 North St, San Francisco, CA 94016" -145371,AAA Batteries (4-pack),1,2.99,01/03/19 16:39,"196 11th St, Boston, MA 02215" -145372,AAA Batteries (4-pack),1,2.99,02/01/19 04:02,"459 West St, Dallas, TX 75001" -145373,Lightning Charging Cable,1,14.95,01/23/19 16:18,"40 Jackson St, New York City, NY 10001" -145374,AAA Batteries (4-pack),6,2.99,01/23/19 02:25,"275 Highland St, Los Angeles, CA 90001" -145375,34in Ultrawide Monitor,1,379.99,01/15/19 18:05,"934 Main St, Seattle, WA 98101" -145376,34in Ultrawide Monitor,1,379.99,01/22/19 08:41,"867 Jefferson St, Boston, MA 02215" -145377,AAA Batteries (4-pack),1,2.99,01/30/19 16:53,"362 6th St, Atlanta, GA 30301" -145378,USB-C Charging Cable,1,11.95,01/23/19 19:08,"802 River St, San Francisco, CA 94016" -145379,Lightning Charging Cable,1,14.95,01/20/19 13:58,"675 10th St, San Francisco, CA 94016" -145380,AAA Batteries (4-pack),1,2.99,01/21/19 16:21,"304 Hill St, Dallas, TX 75001" -145381,AAA Batteries (4-pack),1,2.99,01/02/19 16:56,"241 Lakeview St, Dallas, TX 75001" -145382,Lightning Charging Cable,1,14.95,01/16/19 11:10,"979 12th St, Atlanta, GA 30301" -145383,Macbook Pro Laptop,1,1700,01/09/19 17:35,"377 Willow St, Boston, MA 02215" -145384,Lightning Charging Cable,1,14.95,01/04/19 02:16,"593 Church St, Portland, ME 04101" -145385,USB-C Charging Cable,1,11.95,01/02/19 23:27,"975 13th St, San Francisco, CA 94016" -145386,34in Ultrawide Monitor,1,379.99,01/02/19 16:29,"441 Cedar St, Boston, MA 02215" -145387,Wired Headphones,1,11.99,01/25/19 21:52,"608 Dogwood St, Austin, TX 73301" -145388,Google Phone,1,600,01/14/19 16:08,"579 Sunset St, Boston, MA 02215" -145388,USB-C Charging Cable,1,11.95,01/14/19 16:08,"579 Sunset St, Boston, MA 02215" -145389,AA Batteries (4-pack),1,3.84,01/12/19 13:03,"916 Meadow St, San Francisco, CA 94016" -145390,Lightning Charging Cable,1,14.95,01/13/19 11:21,"552 4th St, Atlanta, GA 30301" -145391,Wired Headphones,1,11.99,01/23/19 19:15,"927 8th St, New York City, NY 10001" -145392,Wired Headphones,1,11.99,01/26/19 17:33,"147 Adams St, Boston, MA 02215" -145393,20in Monitor,1,109.99,01/06/19 13:26,"369 8th St, Boston, MA 02215" -145394,AA Batteries (4-pack),1,3.84,01/21/19 17:45,"994 South St, Los Angeles, CA 90001" -145395,AA Batteries (4-pack),1,3.84,01/03/19 18:36,"157 2nd St, Atlanta, GA 30301" -145396,AAA Batteries (4-pack),1,2.99,01/25/19 11:39,"171 South St, Atlanta, GA 30301" -145397,Google Phone,1,600,01/22/19 15:29,"374 Pine St, Boston, MA 02215" -145398,Vareebadd Phone,1,400,01/04/19 14:15,"537 Wilson St, New York City, NY 10001" -145399,27in FHD Monitor,1,149.99,01/20/19 21:55,"273 Main St, San Francisco, CA 94016" -145400,iPhone,1,700,01/14/19 10:44,"702 Spruce St, San Francisco, CA 94016" -145401,Bose SoundSport Headphones,1,99.99,01/13/19 21:47,"953 Sunset St, Los Angeles, CA 90001" -145402,Vareebadd Phone,1,400,01/11/19 14:36,"140 Hill St, Los Angeles, CA 90001" -145403,USB-C Charging Cable,1,11.95,01/27/19 11:28,"239 Madison St, San Francisco, CA 94016" -145404,USB-C Charging Cable,1,11.95,01/30/19 23:39,"54 Center St, Boston, MA 02215" -145405,Lightning Charging Cable,1,14.95,01/21/19 08:21,"262 14th St, Portland, OR 97035" -145406,Lightning Charging Cable,1,14.95,01/08/19 10:14,"298 Jefferson St, Dallas, TX 75001" -145407,USB-C Charging Cable,1,11.95,01/15/19 19:32,"961 Jefferson St, New York City, NY 10001" -145408,Lightning Charging Cable,1,14.95,01/15/19 14:18,"639 North St, San Francisco, CA 94016" -145409,Lightning Charging Cable,1,14.95,01/12/19 16:36,"940 Pine St, Atlanta, GA 30301" -145410,Lightning Charging Cable,1,14.95,01/24/19 15:09,"584 Meadow St, Los Angeles, CA 90001" -145411,USB-C Charging Cable,1,11.95,01/24/19 17:51,"188 Madison St, Dallas, TX 75001" -145412,Wired Headphones,1,11.99,01/06/19 10:10,"147 North St, San Francisco, CA 94016" -145413,AAA Batteries (4-pack),3,2.99,01/23/19 13:31,"996 Center St, Los Angeles, CA 90001" -145414,USB-C Charging Cable,1,11.95,01/21/19 13:56,"47 8th St, Boston, MA 02215" -145415,20in Monitor,1,109.99,01/26/19 15:07,"342 Willow St, Boston, MA 02215" -145416,Lightning Charging Cable,1,14.95,01/01/19 16:59,"385 Willow St, Atlanta, GA 30301" -145417,iPhone,1,700,01/26/19 04:45,"20 Ridge St, San Francisco, CA 94016" -145418,Wired Headphones,1,11.99,01/18/19 10:24,"41 4th St, San Francisco, CA 94016" -145419,Apple Airpods Headphones,1,150,01/18/19 15:48,"524 4th St, New York City, NY 10001" -145420,ThinkPad Laptop,1,999.99,01/02/19 23:34,"483 Hickory St, New York City, NY 10001" -145421,27in FHD Monitor,1,149.99,01/14/19 20:09,"472 Washington St, Portland, OR 97035" -145422,Apple Airpods Headphones,1,150,01/02/19 14:02,"390 Adams St, Atlanta, GA 30301" -145423,AA Batteries (4-pack),1,3.84,01/08/19 14:47,"239 5th St, Atlanta, GA 30301" -145424,Apple Airpods Headphones,1,150,01/10/19 21:14,"868 8th St, Boston, MA 02215" -145425,27in FHD Monitor,1,149.99,01/31/19 12:16,"92 Highland St, Austin, TX 73301" -145426,Bose SoundSport Headphones,1,99.99,01/30/19 14:15,"549 Highland St, Boston, MA 02215" -145427,USB-C Charging Cable,1,11.95,01/19/19 12:12,"78 9th St, Los Angeles, CA 90001" -145428,USB-C Charging Cable,1,11.95,01/23/19 11:04,"369 Adams St, Seattle, WA 98101" -145429,27in FHD Monitor,1,149.99,01/11/19 09:52,"463 Madison St, Atlanta, GA 30301" -145430,Vareebadd Phone,1,400,01/16/19 21:40,"282 Lincoln St, Dallas, TX 75001" -145431,27in FHD Monitor,1,149.99,01/22/19 14:19,"30 2nd St, Los Angeles, CA 90001" -145432,AA Batteries (4-pack),2,3.84,01/06/19 17:28,"291 Chestnut St, Los Angeles, CA 90001" -145433,Wired Headphones,1,11.99,01/29/19 16:07,"395 Sunset St, Seattle, WA 98101" -145434,Apple Airpods Headphones,1,150,01/15/19 12:44,"446 4th St, San Francisco, CA 94016" -145435,AA Batteries (4-pack),1,3.84,01/18/19 20:57,"35 Main St, San Francisco, CA 94016" -145436,Wired Headphones,1,11.99,01/21/19 07:50,"509 West St, San Francisco, CA 94016" -145437,LG Washing Machine,1,600.0,01/29/19 09:50,"717 6th St, San Francisco, CA 94016" -145438,27in 4K Gaming Monitor,1,389.99,01/17/19 11:33,"874 Sunset St, San Francisco, CA 94016" -145439,Google Phone,1,600,01/12/19 11:06,"179 Washington St, Seattle, WA 98101" -145440,AA Batteries (4-pack),1,3.84,01/26/19 14:03,"571 10th St, Boston, MA 02215" -145441,iPhone,1,700,01/11/19 08:42,"807 8th St, San Francisco, CA 94016" -145442,AAA Batteries (4-pack),1,2.99,01/29/19 16:56,"814 Hill St, San Francisco, CA 94016" -145443,Apple Airpods Headphones,1,150,01/09/19 15:24,"539 Spruce St, Seattle, WA 98101" -145444,Lightning Charging Cable,2,14.95,01/25/19 11:06,"379 Park St, San Francisco, CA 94016" -145445,Bose SoundSport Headphones,1,99.99,01/26/19 23:08,"109 Spruce St, Atlanta, GA 30301" -145445,20in Monitor,1,109.99,01/26/19 23:08,"109 Spruce St, Atlanta, GA 30301" -145446,Lightning Charging Cable,1,14.95,01/08/19 20:49,"427 Jefferson St, San Francisco, CA 94016" -145447,AA Batteries (4-pack),2,3.84,01/15/19 19:06,"848 7th St, Los Angeles, CA 90001" -145448,AA Batteries (4-pack),1,3.84,01/02/19 12:18,"961 Elm St, San Francisco, CA 94016" -145449,iPhone,1,700,01/28/19 22:33,"774 Lincoln St, San Francisco, CA 94016" -145450,AAA Batteries (4-pack),1,2.99,01/24/19 11:10,"15 Willow St, Los Angeles, CA 90001" -145451,20in Monitor,1,109.99,01/10/19 22:59,"998 14th St, Austin, TX 73301" -145452,Lightning Charging Cable,1,14.95,01/06/19 09:47,"517 Jefferson St, New York City, NY 10001" -145453,Apple Airpods Headphones,1,150,01/28/19 13:31,"212 Jefferson St, Seattle, WA 98101" -145454,34in Ultrawide Monitor,1,379.99,01/04/19 11:15,"807 Lincoln St, Atlanta, GA 30301" -145455,Wired Headphones,1,11.99,01/15/19 15:28,"597 Pine St, Atlanta, GA 30301" -145456,iPhone,1,700,01/11/19 11:17,"300 Lake St, Los Angeles, CA 90001" -145457,AAA Batteries (4-pack),1,2.99,01/31/19 23:35,"714 12th St, Boston, MA 02215" -145458,USB-C Charging Cable,1,11.95,01/08/19 22:17,"115 8th St, Portland, OR 97035" -145459,Apple Airpods Headphones,1,150,01/21/19 10:56,"729 8th St, San Francisco, CA 94016" -145460,Flatscreen TV,1,300,01/17/19 07:24,"738 River St, San Francisco, CA 94016" -145461,ThinkPad Laptop,1,999.99,01/28/19 19:19,"922 Hill St, New York City, NY 10001" -145462,AA Batteries (4-pack),3,3.84,01/09/19 20:11,"116 Washington St, Seattle, WA 98101" -145463,AA Batteries (4-pack),1,3.84,01/26/19 20:45,"92 Pine St, San Francisco, CA 94016" -145464,Apple Airpods Headphones,1,150,01/21/19 19:13,"14 6th St, Los Angeles, CA 90001" -145465,AAA Batteries (4-pack),1,2.99,01/04/19 13:13,"647 Willow St, San Francisco, CA 94016" -145466,USB-C Charging Cable,1,11.95,01/04/19 09:17,"505 Wilson St, Boston, MA 02215" -145467,Bose SoundSport Headphones,1,99.99,01/11/19 22:06,"717 Church St, Atlanta, GA 30301" -145468,20in Monitor,1,109.99,01/23/19 18:30,"810 Ridge St, San Francisco, CA 94016" -145469,Macbook Pro Laptop,1,1700,01/29/19 18:59,"828 Forest St, San Francisco, CA 94016" -145470,Apple Airpods Headphones,1,150,01/12/19 12:41,"468 North St, Boston, MA 02215" -145471,Lightning Charging Cable,1,14.95,01/30/19 13:35,"147 West St, San Francisco, CA 94016" -145472,Bose SoundSport Headphones,1,99.99,01/13/19 14:40,"947 Cedar St, Los Angeles, CA 90001" -145473,AA Batteries (4-pack),2,3.84,01/30/19 19:34,"562 13th St, Los Angeles, CA 90001" -145474,27in FHD Monitor,1,149.99,01/20/19 14:07,"430 Cedar St, Atlanta, GA 30301" -145475,Wired Headphones,1,11.99,01/01/19 14:45,"736 Spruce St, San Francisco, CA 94016" -145476,AAA Batteries (4-pack),1,2.99,01/12/19 13:22,"750 North St, San Francisco, CA 94016" -145477,AAA Batteries (4-pack),2,2.99,01/15/19 20:15,"253 Cedar St, San Francisco, CA 94016" -145478,Apple Airpods Headphones,1,150,01/27/19 12:30,"812 Lakeview St, San Francisco, CA 94016" -145479,Bose SoundSport Headphones,1,99.99,01/05/19 11:18,"33 4th St, Los Angeles, CA 90001" -145480,Lightning Charging Cable,1,14.95,01/31/19 16:52,"448 Lincoln St, Los Angeles, CA 90001" -145481,ThinkPad Laptop,1,999.99,01/02/19 17:41,"218 7th St, Portland, OR 97035" -145482,Google Phone,1,600,01/13/19 11:14,"238 Spruce St, Atlanta, GA 30301" -145483,USB-C Charging Cable,1,11.95,01/26/19 10:07,"121 Center St, Dallas, TX 75001" -145484,USB-C Charging Cable,1,11.95,01/18/19 14:27,"974 10th St, San Francisco, CA 94016" -145485,Apple Airpods Headphones,1,150,01/02/19 12:15,"746 North St, Los Angeles, CA 90001" -145486,Google Phone,1,600,01/21/19 12:40,"317 Highland St, Atlanta, GA 30301" -145487,AAA Batteries (4-pack),2,2.99,01/02/19 10:03,"803 Lake St, Portland, OR 97035" -145488,Bose SoundSport Headphones,2,99.99,01/21/19 00:10,"184 Lake St, Dallas, TX 75001" -145489,iPhone,1,700,01/15/19 20:09,"281 Lakeview St, San Francisco, CA 94016" -145490,USB-C Charging Cable,1,11.95,01/20/19 21:29,"649 Lake St, San Francisco, CA 94016" -145491,Google Phone,1,600,01/11/19 16:44,"286 Maple St, New York City, NY 10001" -145492,AA Batteries (4-pack),2,3.84,01/03/19 18:17,"895 Spruce St, San Francisco, CA 94016" -145493,Lightning Charging Cable,1,14.95,01/10/19 17:52,"780 Lake St, Boston, MA 02215" -145494,20in Monitor,1,109.99,01/23/19 14:03,"882 Lakeview St, San Francisco, CA 94016" -145495,AAA Batteries (4-pack),1,2.99,01/11/19 22:39,"372 2nd St, San Francisco, CA 94016" -145496,Bose SoundSport Headphones,1,99.99,01/11/19 15:54,"875 Cherry St, Seattle, WA 98101" -145497,Apple Airpods Headphones,1,150,01/16/19 17:53,"676 Wilson St, Los Angeles, CA 90001" -145498,AA Batteries (4-pack),1,3.84,01/11/19 14:05,"358 11th St, San Francisco, CA 94016" -145499,USB-C Charging Cable,1,11.95,01/21/19 20:02,"243 Madison St, Los Angeles, CA 90001" -145500,Bose SoundSport Headphones,1,99.99,01/10/19 17:04,"312 North St, Dallas, TX 75001" -145501,Lightning Charging Cable,1,14.95,01/22/19 20:03,"896 2nd St, Dallas, TX 75001" -145502,ThinkPad Laptop,1,999.99,01/12/19 12:46,"265 4th St, Atlanta, GA 30301" -145503,Lightning Charging Cable,1,14.95,01/18/19 18:06,"984 Chestnut St, New York City, NY 10001" -145504,20in Monitor,1,109.99,01/02/19 20:31,"731 Elm St, Atlanta, GA 30301" -145505,USB-C Charging Cable,1,11.95,01/04/19 22:29,"354 5th St, San Francisco, CA 94016" -145506,AAA Batteries (4-pack),1,2.99,01/04/19 12:24,"366 Sunset St, New York City, NY 10001" -145507,USB-C Charging Cable,1,11.95,01/09/19 01:21,"109 Spruce St, Los Angeles, CA 90001" -145508,AAA Batteries (4-pack),1,2.99,01/18/19 22:30,"71 Park St, San Francisco, CA 94016" -145509,USB-C Charging Cable,1,11.95,01/18/19 09:24,"682 Church St, San Francisco, CA 94016" -145510,USB-C Charging Cable,1,11.95,01/19/19 12:25,"521 Cedar St, San Francisco, CA 94016" -145511,AA Batteries (4-pack),1,3.84,01/20/19 13:11,"932 Center St, Dallas, TX 75001" -145512,USB-C Charging Cable,1,11.95,01/06/19 19:14,"407 Elm St, San Francisco, CA 94016" -145513,AA Batteries (4-pack),1,3.84,01/06/19 01:30,"482 Pine St, Los Angeles, CA 90001" -145514,USB-C Charging Cable,1,11.95,01/04/19 08:59,"203 River St, Seattle, WA 98101" -145515,Wired Headphones,1,11.99,01/24/19 23:13,"847 Hill St, Atlanta, GA 30301" -145516,AA Batteries (4-pack),1,3.84,01/10/19 22:12,"286 Madison St, Boston, MA 02215" -145517,Apple Airpods Headphones,1,150,01/30/19 21:59,"268 12th St, Austin, TX 73301" -145518,USB-C Charging Cable,1,11.95,01/02/19 08:46,"191 Johnson St, San Francisco, CA 94016" -145519,34in Ultrawide Monitor,1,379.99,01/01/19 18:57,"36 5th St, Los Angeles, CA 90001" -145520,Macbook Pro Laptop,1,1700,01/17/19 16:12,"15 Pine St, Seattle, WA 98101" -145521,iPhone,1,700,01/31/19 13:22,"73 Meadow St, Los Angeles, CA 90001" -145522,34in Ultrawide Monitor,1,379.99,01/02/19 13:54,"775 2nd St, San Francisco, CA 94016" -145523,Wired Headphones,1,11.99,01/08/19 19:00,"982 Elm St, Portland, OR 97035" -145524,Flatscreen TV,1,300,01/11/19 10:56,"676 Madison St, Los Angeles, CA 90001" -145525,Bose SoundSport Headphones,1,99.99,01/17/19 23:19,"463 Main St, Dallas, TX 75001" -145526,ThinkPad Laptop,1,999.99,01/01/19 10:16,"192 Ridge St, San Francisco, CA 94016" -145527,USB-C Charging Cable,1,11.95,01/26/19 18:51,"504 Walnut St, New York City, NY 10001" -145528,20in Monitor,1,109.99,01/25/19 11:01,"710 River St, Seattle, WA 98101" -145529,Wired Headphones,1,11.99,01/29/19 09:07,"679 12th St, Portland, OR 97035" -145530,27in FHD Monitor,1,149.99,01/31/19 14:39,"112 Ridge St, Dallas, TX 75001" -145531,AA Batteries (4-pack),1,3.84,01/12/19 16:16,"520 Jefferson St, Seattle, WA 98101" -145532,27in FHD Monitor,1,149.99,01/11/19 12:27,"29 Jackson St, Seattle, WA 98101" -145533,AAA Batteries (4-pack),3,2.99,01/16/19 18:54,"752 Maple St, Seattle, WA 98101" -145534,Lightning Charging Cable,1,14.95,01/25/19 19:57,"124 Forest St, Portland, OR 97035" -145535,Wired Headphones,1,11.99,01/10/19 09:01,"120 Hickory St, San Francisco, CA 94016" -145536,27in 4K Gaming Monitor,1,389.99,01/05/19 15:51,"211 14th St, Seattle, WA 98101" -145537,Lightning Charging Cable,2,14.95,01/23/19 07:36,"139 12th St, Dallas, TX 75001" -145538,Lightning Charging Cable,1,14.95,01/31/19 22:25,"208 Ridge St, Atlanta, GA 30301" -145539,34in Ultrawide Monitor,1,379.99,01/13/19 15:43,"955 Lincoln St, Boston, MA 02215" -145540,Lightning Charging Cable,2,14.95,01/07/19 18:36,"252 Chestnut St, Boston, MA 02215" -145541,Wired Headphones,1,11.99,01/16/19 19:00,"152 6th St, Seattle, WA 98101" -145542,AA Batteries (4-pack),2,3.84,01/15/19 15:37,"917 14th St, New York City, NY 10001" -145543,USB-C Charging Cable,1,11.95,01/16/19 10:34,"589 Maple St, Seattle, WA 98101" -145544,USB-C Charging Cable,1,11.95,01/13/19 20:15,"229 7th St, San Francisco, CA 94016" -145545,USB-C Charging Cable,1,11.95,01/23/19 18:56,"678 2nd St, Portland, OR 97035" -145546,20in Monitor,1,109.99,01/27/19 10:57,"459 Jefferson St, San Francisco, CA 94016" -145547,AAA Batteries (4-pack),1,2.99,01/26/19 23:31,"446 Madison St, Los Angeles, CA 90001" -145548,iPhone,1,700,01/04/19 08:21,"695 2nd St, Austin, TX 73301" -145549,Apple Airpods Headphones,1,150,01/02/19 09:45,"644 1st St, San Francisco, CA 94016" -145550,Apple Airpods Headphones,1,150,01/30/19 18:53,"505 North St, Seattle, WA 98101" -145551,Bose SoundSport Headphones,1,99.99,01/29/19 21:31,"604 South St, New York City, NY 10001" -145552,Macbook Pro Laptop,1,1700,01/30/19 22:01,"288 Adams St, New York City, NY 10001" -145553,Lightning Charging Cable,1,14.95,01/19/19 16:32,"570 Pine St, Seattle, WA 98101" -145554,ThinkPad Laptop,1,999.99,01/21/19 11:58,"467 2nd St, Boston, MA 02215" -145555,AA Batteries (4-pack),1,3.84,01/09/19 21:40,"635 Lincoln St, Los Angeles, CA 90001" -145556,20in Monitor,1,109.99,01/18/19 18:59,"36 Cherry St, Los Angeles, CA 90001" -145557,Lightning Charging Cable,1,14.95,01/27/19 19:58,"915 Lakeview St, San Francisco, CA 94016" -145558,AAA Batteries (4-pack),1,2.99,01/12/19 15:18,"125 West St, Atlanta, GA 30301" -145559,20in Monitor,1,109.99,01/23/19 10:00,"602 10th St, Austin, TX 73301" -145560,AAA Batteries (4-pack),1,2.99,01/04/19 22:17,"356 10th St, Portland, OR 97035" -145561,Lightning Charging Cable,1,14.95,01/07/19 19:37,"459 Dogwood St, New York City, NY 10001" -145562,Bose SoundSport Headphones,1,99.99,01/28/19 00:23,"976 Lake St, Los Angeles, CA 90001" -145563,AAA Batteries (4-pack),1,2.99,01/15/19 18:20,"48 South St, New York City, NY 10001" -145564,Bose SoundSport Headphones,1,99.99,01/07/19 21:49,"945 Hickory St, Austin, TX 73301" -145565,27in FHD Monitor,1,149.99,01/11/19 13:28,"344 South St, Boston, MA 02215" -145566,Apple Airpods Headphones,1,150,01/11/19 23:45,"103 Sunset St, New York City, NY 10001" -145567,USB-C Charging Cable,1,11.95,01/30/19 14:21,"992 10th St, New York City, NY 10001" -145568,Bose SoundSport Headphones,1,99.99,01/21/19 14:00,"977 5th St, San Francisco, CA 94016" -145569,AAA Batteries (4-pack),3,2.99,01/04/19 16:19,"458 9th St, San Francisco, CA 94016" -145570,AAA Batteries (4-pack),1,2.99,01/25/19 21:22,"778 4th St, Seattle, WA 98101" -145571,AA Batteries (4-pack),1,3.84,01/23/19 11:21,"678 North St, Los Angeles, CA 90001" -145572,Lightning Charging Cable,1,14.95,01/02/19 20:33,"411 West St, Los Angeles, CA 90001" -145573,Google Phone,1,600,01/28/19 14:57,"985 Church St, Boston, MA 02215" -145574,LG Dryer,1,600.0,01/19/19 08:33,"732 1st St, Boston, MA 02215" -145575,AAA Batteries (4-pack),1,2.99,01/31/19 19:33,"854 South St, San Francisco, CA 94016" -145576,USB-C Charging Cable,1,11.95,01/31/19 13:14,"734 Highland St, Austin, TX 73301" -145577,Apple Airpods Headphones,1,150,01/06/19 21:15,"491 11th St, San Francisco, CA 94016" -145578,Bose SoundSport Headphones,1,99.99,01/16/19 15:01,"5 Spruce St, Boston, MA 02215" -145579,AAA Batteries (4-pack),2,2.99,01/11/19 12:14,"255 Center St, New York City, NY 10001" -145579,Lightning Charging Cable,1,14.95,01/11/19 12:14,"255 Center St, New York City, NY 10001" -145580,Apple Airpods Headphones,1,150,01/03/19 22:41,"304 8th St, Los Angeles, CA 90001" -145581,Vareebadd Phone,1,400,01/25/19 16:39,"661 Maple St, San Francisco, CA 94016" -145582,Wired Headphones,1,11.99,01/21/19 14:11,"161 13th St, Atlanta, GA 30301" -145583,Lightning Charging Cable,1,14.95,01/10/19 18:00,"70 Ridge St, Dallas, TX 75001" -145584,27in FHD Monitor,1,149.99,01/18/19 13:33,"487 6th St, Seattle, WA 98101" -145585,Lightning Charging Cable,1,14.95,01/15/19 20:30,"687 Ridge St, New York City, NY 10001" -145586,USB-C Charging Cable,4,11.95,01/25/19 18:17,"202 Cherry St, San Francisco, CA 94016" -145587,USB-C Charging Cable,1,11.95,01/09/19 16:48,"978 12th St, San Francisco, CA 94016" -145588,Google Phone,1,600,01/13/19 07:22,"197 11th St, Boston, MA 02215" -145588,USB-C Charging Cable,1,11.95,01/13/19 07:22,"197 11th St, Boston, MA 02215" -145589,Bose SoundSport Headphones,1,99.99,01/14/19 07:48,"281 Adams St, Los Angeles, CA 90001" -145590,Lightning Charging Cable,1,14.95,01/18/19 14:31,"876 9th St, Los Angeles, CA 90001" -145591,Bose SoundSport Headphones,1,99.99,01/09/19 08:24,"120 Spruce St, Boston, MA 02215" -145592,USB-C Charging Cable,2,11.95,01/14/19 13:03,"243 Hickory St, Austin, TX 73301" -145593,Apple Airpods Headphones,1,150,01/16/19 16:49,"980 Elm St, San Francisco, CA 94016" -145594,AA Batteries (4-pack),1,3.84,01/11/19 20:25,"260 Center St, New York City, NY 10001" -145595,Vareebadd Phone,1,400,01/04/19 14:13,"992 Adams St, Los Angeles, CA 90001" -145596,iPhone,1,700,01/03/19 10:11,"925 River St, Boston, MA 02215" -145597,Apple Airpods Headphones,1,150,01/29/19 23:26,"478 Willow St, Boston, MA 02215" -145598,27in FHD Monitor,1,149.99,01/09/19 21:05,"673 Lincoln St, Boston, MA 02215" -145599,Lightning Charging Cable,1,14.95,01/15/19 15:00,"953 Spruce St, San Francisco, CA 94016" -145600,Lightning Charging Cable,1,14.95,01/11/19 21:05,"842 Highland St, Portland, OR 97035" -145601,AAA Batteries (4-pack),1,2.99,01/14/19 02:54,"621 Lincoln St, Boston, MA 02215" -145602,iPhone,1,700,01/06/19 21:25,"489 Forest St, New York City, NY 10001" -145602,Lightning Charging Cable,1,14.95,01/06/19 21:25,"489 Forest St, New York City, NY 10001" -145603,AAA Batteries (4-pack),1,2.99,01/06/19 18:25,"708 West St, New York City, NY 10001" -145604,Google Phone,1,600,01/01/19 16:16,"498 14th St, Dallas, TX 75001" -145605,USB-C Charging Cable,1,11.95,01/29/19 15:18,"323 13th St, San Francisco, CA 94016" -145606,AA Batteries (4-pack),1,3.84,01/16/19 21:29,"778 Hickory St, San Francisco, CA 94016" -145607,Lightning Charging Cable,1,14.95,01/21/19 06:33,"900 Hill St, San Francisco, CA 94016" -145608,Macbook Pro Laptop,1,1700,01/21/19 18:21,"805 12th St, Boston, MA 02215" -145609,AA Batteries (4-pack),1,3.84,01/13/19 20:01,"9 Forest St, New York City, NY 10001" -145610,Wired Headphones,1,11.99,01/21/19 21:42,"54 2nd St, New York City, NY 10001" -145611,Lightning Charging Cable,1,14.95,01/31/19 11:08,"768 Church St, New York City, NY 10001" -145612,Wired Headphones,1,11.99,01/07/19 17:56,"856 Park St, Seattle, WA 98101" -145613,27in FHD Monitor,1,149.99,01/05/19 20:53,"660 West St, San Francisco, CA 94016" -145614,Lightning Charging Cable,1,14.95,01/08/19 18:52,"767 Church St, Seattle, WA 98101" -145615,Google Phone,1,600,01/07/19 20:30,"720 Cherry St, Austin, TX 73301" -145616,Google Phone,1,600,01/25/19 23:10,"39 13th St, San Francisco, CA 94016" -145617,iPhone,1,700,01/26/19 12:28,"832 Walnut St, Atlanta, GA 30301" -145618,Lightning Charging Cable,1,14.95,01/16/19 18:41,"981 Church St, Los Angeles, CA 90001" -145619,Bose SoundSport Headphones,1,99.99,01/16/19 21:26,"501 4th St, Los Angeles, CA 90001" -145620,AA Batteries (4-pack),1,3.84,01/03/19 09:49,"691 Church St, Los Angeles, CA 90001" -145621,USB-C Charging Cable,1,11.95,01/10/19 00:35,"636 Main St, Dallas, TX 75001" -145622,34in Ultrawide Monitor,1,379.99,01/02/19 12:54,"351 2nd St, Dallas, TX 75001" -145623,AA Batteries (4-pack),1,3.84,01/28/19 13:35,"725 Spruce St, Portland, ME 04101" -145624,Lightning Charging Cable,1,14.95,01/16/19 21:22,"56 Willow St, San Francisco, CA 94016" -145625,Flatscreen TV,1,300,01/17/19 13:02,"704 2nd St, Atlanta, GA 30301" -145626,Flatscreen TV,1,300,01/19/19 14:19,"104 Johnson St, Los Angeles, CA 90001" -145627,Wired Headphones,1,11.99,01/12/19 10:30,"224 Church St, Los Angeles, CA 90001" -145628,AAA Batteries (4-pack),1,2.99,01/05/19 21:13,"97 Church St, Boston, MA 02215" -145629,ThinkPad Laptop,1,999.99,01/05/19 09:57,"883 Main St, Los Angeles, CA 90001" -145630,Bose SoundSport Headphones,1,99.99,01/06/19 09:46,"423 6th St, Dallas, TX 75001" -145631,AAA Batteries (4-pack),1,2.99,01/30/19 16:47,"461 1st St, New York City, NY 10001" -145632,27in 4K Gaming Monitor,1,389.99,01/16/19 19:51,"704 West St, Portland, ME 04101" -145633,iPhone,1,700,01/26/19 16:10,"701 North St, Boston, MA 02215" -145634,Wired Headphones,1,11.99,01/31/19 11:33,"130 1st St, Los Angeles, CA 90001" -145635,Lightning Charging Cable,1,14.95,01/10/19 14:43,"151 Willow St, San Francisco, CA 94016" -145636,27in 4K Gaming Monitor,1,389.99,01/06/19 14:55,"235 Washington St, Portland, OR 97035" -145637,Wired Headphones,1,11.99,01/14/19 11:48,"318 Willow St, Dallas, TX 75001" -145638,USB-C Charging Cable,1,11.95,01/24/19 18:43,"470 Walnut St, Dallas, TX 75001" -145639,Bose SoundSport Headphones,1,99.99,01/28/19 20:37,"914 9th St, Boston, MA 02215" -145640,AAA Batteries (4-pack),1,2.99,01/27/19 13:04,"491 6th St, Seattle, WA 98101" -145641,Lightning Charging Cable,1,14.95,01/21/19 22:22,"220 8th St, Dallas, TX 75001" -145642,AAA Batteries (4-pack),1,2.99,01/23/19 23:08,"990 West St, Portland, OR 97035" -145643,ThinkPad Laptop,1,999.99,01/15/19 15:53,"586 West St, Seattle, WA 98101" -145644,Wired Headphones,1,11.99,01/20/19 10:25,"821 Lake St, San Francisco, CA 94016" -145645,Apple Airpods Headphones,1,150,01/27/19 14:58,"581 River St, Atlanta, GA 30301" -145646,Apple Airpods Headphones,1,150,01/29/19 08:51,"707 North St, Dallas, TX 75001" -145647,USB-C Charging Cable,1,11.95,01/28/19 15:50,"765 Lake St, San Francisco, CA 94016" -145648,iPhone,1,700,01/08/19 14:47,"162 13th St, San Francisco, CA 94016" -145649,Apple Airpods Headphones,1,150,01/10/19 13:03,"511 Lake St, New York City, NY 10001" -145650,Apple Airpods Headphones,1,150,01/07/19 20:32,"654 North St, Boston, MA 02215" -145650,USB-C Charging Cable,1,11.95,01/07/19 20:32,"654 North St, Boston, MA 02215" -145651,27in FHD Monitor,1,149.99,01/31/19 11:41,"79 Maple St, Dallas, TX 75001" -145652,Google Phone,1,600,01/03/19 13:56,"732 Pine St, Atlanta, GA 30301" -145653,Lightning Charging Cable,1,14.95,01/20/19 14:15,"216 Adams St, Atlanta, GA 30301" -145654,Lightning Charging Cable,1,14.95,01/09/19 12:57,"760 Spruce St, Portland, OR 97035" -145655,USB-C Charging Cable,1,11.95,01/31/19 21:10,"312 8th St, San Francisco, CA 94016" -145656,ThinkPad Laptop,1,999.99,01/07/19 12:21,"492 West St, Los Angeles, CA 90001" -145657,Bose SoundSport Headphones,1,99.99,01/06/19 23:07,"663 14th St, Dallas, TX 75001" -145658,Wired Headphones,1,11.99,01/22/19 12:09,"769 6th St, Los Angeles, CA 90001" -145659,34in Ultrawide Monitor,1,379.99,01/28/19 18:14,"382 Wilson St, San Francisco, CA 94016" -145660,Google Phone,1,600,01/20/19 12:19,"31 Jefferson St, Atlanta, GA 30301" -145660,USB-C Charging Cable,1,11.95,01/20/19 12:19,"31 Jefferson St, Atlanta, GA 30301" -145660,Bose SoundSport Headphones,1,99.99,01/20/19 12:19,"31 Jefferson St, Atlanta, GA 30301" -145661,Lightning Charging Cable,1,14.95,01/04/19 21:42,"150 Johnson St, San Francisco, CA 94016" -145662,Bose SoundSport Headphones,1,99.99,01/10/19 14:40,"395 Maple St, San Francisco, CA 94016" -145663,AA Batteries (4-pack),1,3.84,01/29/19 19:40,"503 Forest St, San Francisco, CA 94016" -145664,Wired Headphones,1,11.99,01/20/19 11:37,"92 Lake St, San Francisco, CA 94016" -145664,AAA Batteries (4-pack),1,2.99,01/20/19 11:37,"92 Lake St, San Francisco, CA 94016" -145665,AAA Batteries (4-pack),1,2.99,01/27/19 20:32,"584 13th St, New York City, NY 10001" -145666,Apple Airpods Headphones,1,150,01/05/19 08:01,"855 Lake St, New York City, NY 10001" -145667,iPhone,1,700,01/09/19 10:48,"645 Ridge St, Boston, MA 02215" -145668,27in 4K Gaming Monitor,1,389.99,01/28/19 19:02,"863 Cedar St, Austin, TX 73301" -145669,Apple Airpods Headphones,1,150,01/21/19 10:08,"649 Walnut St, Los Angeles, CA 90001" -145670,Bose SoundSport Headphones,1,99.99,01/11/19 21:29,"429 Johnson St, Seattle, WA 98101" -145671,AAA Batteries (4-pack),1,2.99,01/03/19 22:04,"595 10th St, San Francisco, CA 94016" -145672,iPhone,1,700,01/18/19 18:19,"465 12th St, San Francisco, CA 94016" -145672,Lightning Charging Cable,1,14.95,01/18/19 18:19,"465 12th St, San Francisco, CA 94016" -145673,AA Batteries (4-pack),1,3.84,01/26/19 19:37,"974 1st St, Los Angeles, CA 90001" -145674,AAA Batteries (4-pack),1,2.99,01/22/19 11:00,"481 8th St, Boston, MA 02215" -145675,34in Ultrawide Monitor,1,379.99,01/17/19 18:54,"621 Dogwood St, Atlanta, GA 30301" -145676,27in FHD Monitor,1,149.99,01/17/19 09:18,"835 Cherry St, San Francisco, CA 94016" -145677,USB-C Charging Cable,1,11.95,01/21/19 18:49,"775 Elm St, Los Angeles, CA 90001" -145678,AAA Batteries (4-pack),1,2.99,01/03/19 12:20,"210 11th St, Dallas, TX 75001" -145679,USB-C Charging Cable,1,11.95,01/17/19 22:50,"55 Pine St, Atlanta, GA 30301" -145680,AAA Batteries (4-pack),1,2.99,01/09/19 14:41,"276 14th St, Austin, TX 73301" -145681,Lightning Charging Cable,1,14.95,01/28/19 18:09,"292 Lake St, New York City, NY 10001" -145682,Google Phone,1,600,01/22/19 16:29,"503 Cedar St, San Francisco, CA 94016" -145683,Lightning Charging Cable,1,14.95,01/26/19 07:38,"686 Washington St, Seattle, WA 98101" -145684,AA Batteries (4-pack),2,3.84,01/17/19 23:24,"949 Willow St, Dallas, TX 75001" -145685,27in FHD Monitor,1,149.99,01/28/19 15:19,"713 Willow St, Atlanta, GA 30301" -145686,ThinkPad Laptop,1,999.99,01/15/19 17:55,"933 Maple St, Portland, OR 97035" -,,,,, -145687,iPhone,1,700,01/18/19 20:26,"125 1st St, Los Angeles, CA 90001" -145688,Google Phone,1,600,01/29/19 21:37,"279 North St, San Francisco, CA 94016" -145689,Apple Airpods Headphones,1,150,01/26/19 16:43,"894 7th St, Austin, TX 73301" -145690,Apple Airpods Headphones,1,150,01/26/19 13:58,"955 South St, Boston, MA 02215" -145691,AA Batteries (4-pack),1,3.84,01/17/19 00:26,"450 Highland St, San Francisco, CA 94016" -145692,20in Monitor,1,109.99,01/07/19 13:39,"711 Forest St, San Francisco, CA 94016" -145693,27in FHD Monitor,1,149.99,01/04/19 06:54,"92 Madison St, San Francisco, CA 94016" -145694,27in FHD Monitor,1,149.99,01/02/19 12:59,"265 2nd St, Los Angeles, CA 90001" -145695,AAA Batteries (4-pack),1,2.99,01/15/19 14:49,"466 14th St, New York City, NY 10001" -145696,Lightning Charging Cable,1,14.95,01/13/19 11:10,"44 Elm St, Los Angeles, CA 90001" -145697,AA Batteries (4-pack),1,3.84,01/24/19 18:48,"56 1st St, San Francisco, CA 94016" -145698,Wired Headphones,1,11.99,01/12/19 10:13,"411 Adams St, Atlanta, GA 30301" -145698,ThinkPad Laptop,1,999.99,01/12/19 10:13,"411 Adams St, Atlanta, GA 30301" -145699,AAA Batteries (4-pack),1,2.99,01/13/19 19:31,"507 North St, New York City, NY 10001" -145700,USB-C Charging Cable,1,11.95,01/30/19 10:53,"912 South St, Dallas, TX 75001" -145701,Apple Airpods Headphones,1,150,01/20/19 18:23,"170 1st St, San Francisco, CA 94016" -145702,Flatscreen TV,1,300,01/24/19 17:16,"189 7th St, Los Angeles, CA 90001" -145703,AA Batteries (4-pack),1,3.84,01/15/19 18:32,"552 12th St, Boston, MA 02215" -145704,iPhone,1,700,01/21/19 15:25,"671 Cherry St, New York City, NY 10001" -145705,Wired Headphones,1,11.99,01/31/19 14:20,"132 West St, Los Angeles, CA 90001" -145706,Apple Airpods Headphones,1,150,01/13/19 05:37,"712 5th St, Dallas, TX 75001" -145707,AA Batteries (4-pack),1,3.84,01/14/19 21:15,"74 North St, New York City, NY 10001" -145708,27in FHD Monitor,1,149.99,01/12/19 12:54,"850 10th St, Seattle, WA 98101" -145709,iPhone,1,700,01/29/19 02:00,"205 7th St, New York City, NY 10001" -145710,Apple Airpods Headphones,1,150,01/16/19 22:37,"144 Lake St, New York City, NY 10001" -145711,Bose SoundSport Headphones,1,99.99,01/22/19 09:31,"541 8th St, Boston, MA 02215" -145712,AA Batteries (4-pack),1,3.84,01/30/19 22:07,"232 Johnson St, New York City, NY 10001" -145713,20in Monitor,1,109.99,01/28/19 19:48,"614 South St, San Francisco, CA 94016" -145714,USB-C Charging Cable,1,11.95,01/28/19 15:39,"233 West St, Atlanta, GA 30301" -145715,LG Dryer,1,600.0,01/15/19 14:19,"239 6th St, New York City, NY 10001" -145716,Wired Headphones,1,11.99,01/30/19 19:52,"771 Center St, Boston, MA 02215" -145717,USB-C Charging Cable,2,11.95,01/12/19 16:38,"4 Wilson St, San Francisco, CA 94016" -145718,Google Phone,1,600,01/18/19 08:51,"829 River St, Portland, ME 04101" -145718,Wired Headphones,1,11.99,01/18/19 08:51,"829 River St, Portland, ME 04101" -145719,Apple Airpods Headphones,1,150,01/15/19 12:57,"817 Madison St, San Francisco, CA 94016" -145720,Wired Headphones,1,11.99,01/22/19 06:21,"175 Church St, San Francisco, CA 94016" -145721,ThinkPad Laptop,1,999.99,01/20/19 16:31,"83 Lincoln St, New York City, NY 10001" -145722,AAA Batteries (4-pack),2,2.99,01/07/19 11:27,"959 Lake St, San Francisco, CA 94016" -145723,Lightning Charging Cable,1,14.95,01/17/19 17:44,"944 Ridge St, San Francisco, CA 94016" -145724,Bose SoundSport Headphones,1,99.99,01/22/19 22:54,"463 River St, Atlanta, GA 30301" -145725,Flatscreen TV,1,300,01/11/19 19:52,"756 Lincoln St, Seattle, WA 98101" -145725,Lightning Charging Cable,1,14.95,01/11/19 19:52,"756 Lincoln St, Seattle, WA 98101" -145726,Apple Airpods Headphones,1,150,01/15/19 21:07,"98 Center St, Los Angeles, CA 90001" -145727,Lightning Charging Cable,1,14.95,01/03/19 13:31,"5 13th St, Boston, MA 02215" -145728,Lightning Charging Cable,2,14.95,01/03/19 20:11,"864 Johnson St, San Francisco, CA 94016" -145729,Wired Headphones,1,11.99,01/18/19 22:23,"147 Sunset St, Los Angeles, CA 90001" -145730,USB-C Charging Cable,1,11.95,01/18/19 10:49,"732 Chestnut St, Los Angeles, CA 90001" -145731,Macbook Pro Laptop,1,1700,01/29/19 10:19,"483 West St, San Francisco, CA 94016" -145732,AAA Batteries (4-pack),1,2.99,01/24/19 08:39,"844 Johnson St, Seattle, WA 98101" -145733,AAA Batteries (4-pack),1,2.99,01/28/19 12:23,"707 North St, Austin, TX 73301" -145734,Lightning Charging Cable,1,14.95,01/20/19 11:06,"31 9th St, Portland, OR 97035" -145735,AAA Batteries (4-pack),1,2.99,01/05/19 12:44,"820 Lakeview St, Los Angeles, CA 90001" -145736,Wired Headphones,1,11.99,01/29/19 13:03,"916 13th St, Los Angeles, CA 90001" -145737,Google Phone,1,600,01/09/19 01:37,"958 Elm St, Boston, MA 02215" -145738,Apple Airpods Headphones,1,150,01/08/19 13:50,"573 2nd St, Seattle, WA 98101" -145739,Wired Headphones,1,11.99,01/22/19 14:23,"588 Lakeview St, New York City, NY 10001" -145740,Apple Airpods Headphones,1,150,01/25/19 13:51,"254 Hill St, Los Angeles, CA 90001" -145741,Apple Airpods Headphones,1,150,01/13/19 18:28,"259 Cherry St, Los Angeles, CA 90001" -145742,Flatscreen TV,1,300,01/17/19 12:10,"194 Jackson St, San Francisco, CA 94016" -145743,27in FHD Monitor,1,149.99,01/16/19 18:25,"600 1st St, Dallas, TX 75001" -145744,iPhone,1,700,01/23/19 17:49,"853 Main St, Dallas, TX 75001" -145745,Lightning Charging Cable,1,14.95,01/07/19 08:23,"352 Cherry St, Dallas, TX 75001" -145746,Lightning Charging Cable,1,14.95,01/09/19 14:28,"543 River St, Portland, ME 04101" -145747,34in Ultrawide Monitor,1,379.99,01/28/19 20:25,"774 2nd St, San Francisco, CA 94016" -145748,Vareebadd Phone,1,400,01/29/19 20:57,"895 Meadow St, Los Angeles, CA 90001" -145749,AAA Batteries (4-pack),1,2.99,01/05/19 04:42,"850 2nd St, Dallas, TX 75001" -145750,AAA Batteries (4-pack),1,2.99,01/29/19 16:54,"350 Chestnut St, San Francisco, CA 94016" -145751,34in Ultrawide Monitor,1,379.99,01/04/19 13:32,"613 Highland St, New York City, NY 10001" -145752,LG Dryer,1,600.0,01/02/19 19:52,"19 Pine St, San Francisco, CA 94016" -145753,27in FHD Monitor,1,149.99,01/03/19 01:04,"728 Lake St, Boston, MA 02215" -145754,AAA Batteries (4-pack),3,2.99,01/17/19 10:26,"163 11th St, San Francisco, CA 94016" -145755,AA Batteries (4-pack),2,3.84,01/10/19 07:51,"975 Jefferson St, Boston, MA 02215" -145755,Wired Headphones,1,11.99,01/10/19 07:51,"975 Jefferson St, Boston, MA 02215" -145756,Lightning Charging Cable,1,14.95,01/30/19 23:21,"263 Elm St, Los Angeles, CA 90001" -145757,27in 4K Gaming Monitor,1,389.99,01/27/19 17:48,"644 5th St, Dallas, TX 75001" -145758,Wired Headphones,1,11.99,01/22/19 22:05,"393 Lakeview St, Seattle, WA 98101" -145759,Lightning Charging Cable,1,14.95,01/08/19 02:49,"86 12th St, New York City, NY 10001" -145760,Bose SoundSport Headphones,1,99.99,01/03/19 20:54,"378 11th St, New York City, NY 10001" -145761,Bose SoundSport Headphones,1,99.99,01/24/19 16:57,"113 Spruce St, San Francisco, CA 94016" -145762,USB-C Charging Cable,1,11.95,01/07/19 18:17,"931 Elm St, Portland, OR 97035" -145763,USB-C Charging Cable,1,11.95,01/10/19 11:18,"438 Adams St, Dallas, TX 75001" -145763,iPhone,1,700,01/10/19 11:18,"438 Adams St, Dallas, TX 75001" -145764,AAA Batteries (4-pack),2,2.99,01/22/19 11:53,"362 Pine St, San Francisco, CA 94016" -145765,LG Dryer,1,600.0,01/03/19 20:35,"567 12th St, Seattle, WA 98101" -145766,Lightning Charging Cable,1,14.95,01/25/19 20:27,"227 Chestnut St, Dallas, TX 75001" -145767,Macbook Pro Laptop,1,1700,01/02/19 10:55,"490 11th St, Dallas, TX 75001" -145768,27in 4K Gaming Monitor,1,389.99,01/08/19 09:24,"663 14th St, San Francisco, CA 94016" -145769,Apple Airpods Headphones,1,150,01/01/19 10:32,"504 9th St, Austin, TX 73301" -145770,USB-C Charging Cable,3,11.95,01/04/19 12:23,"718 12th St, Los Angeles, CA 90001" -145771,AA Batteries (4-pack),1,3.84,01/31/19 18:44,"698 Park St, Dallas, TX 75001" -145772,Lightning Charging Cable,1,14.95,01/18/19 08:56,"80 1st St, Los Angeles, CA 90001" -145773,Lightning Charging Cable,1,14.95,01/10/19 21:56,"887 12th St, Atlanta, GA 30301" -145774,USB-C Charging Cable,1,11.95,01/16/19 12:51,"647 Lake St, San Francisco, CA 94016" -145775,Lightning Charging Cable,1,14.95,01/13/19 14:11,"512 Forest St, San Francisco, CA 94016" -145776,20in Monitor,1,109.99,01/17/19 08:52,"381 14th St, San Francisco, CA 94016" -145777,Wired Headphones,1,11.99,01/23/19 21:43,"345 Maple St, San Francisco, CA 94016" -145778,USB-C Charging Cable,1,11.95,01/20/19 11:57,"92 Adams St, San Francisco, CA 94016" -145779,AAA Batteries (4-pack),2,2.99,01/22/19 05:54,"406 Sunset St, Boston, MA 02215" -145780,iPhone,1,700,01/22/19 19:48,"224 Elm St, San Francisco, CA 94016" -145781,Macbook Pro Laptop,1,1700,01/12/19 15:03,"395 14th St, San Francisco, CA 94016" -145782,27in 4K Gaming Monitor,1,389.99,01/19/19 08:45,"563 14th St, Austin, TX 73301" -145783,AA Batteries (4-pack),1,3.84,01/03/19 18:39,"861 Lake St, New York City, NY 10001" -145784,AA Batteries (4-pack),1,3.84,01/07/19 19:31,"252 Jefferson St, San Francisco, CA 94016" -145785,USB-C Charging Cable,1,11.95,01/29/19 01:33,"60 Pine St, Boston, MA 02215" -145786,USB-C Charging Cable,2,11.95,01/09/19 22:15,"989 4th St, New York City, NY 10001" -145787,Bose SoundSport Headphones,1,99.99,01/20/19 02:05,"127 West St, New York City, NY 10001" -145788,USB-C Charging Cable,1,11.95,01/23/19 17:54,"688 Walnut St, San Francisco, CA 94016" -145789,Lightning Charging Cable,2,14.95,01/05/19 10:16,"48 North St, Boston, MA 02215" -145790,AA Batteries (4-pack),1,3.84,01/24/19 23:33,"783 8th St, San Francisco, CA 94016" -145791,AA Batteries (4-pack),5,3.84,01/28/19 10:39,"893 Main St, San Francisco, CA 94016" -145792,AAA Batteries (4-pack),1,2.99,01/20/19 12:51,"169 12th St, Seattle, WA 98101" -145793,27in 4K Gaming Monitor,1,389.99,01/26/19 10:24,"469 Park St, Dallas, TX 75001" -145794,20in Monitor,1,109.99,01/25/19 20:19,"407 Jackson St, Dallas, TX 75001" -145795,Macbook Pro Laptop,1,1700,01/28/19 18:49,"144 6th St, Atlanta, GA 30301" -145796,Lightning Charging Cable,1,14.95,01/10/19 08:12,"245 Willow St, Boston, MA 02215" -145797,Macbook Pro Laptop,1,1700,01/30/19 18:46,"738 Pine St, Boston, MA 02215" -145798,Flatscreen TV,1,300,01/04/19 10:33,"467 13th St, Los Angeles, CA 90001" -145799,Apple Airpods Headphones,1,150,01/20/19 10:54,"654 Hill St, Portland, OR 97035" -145800,34in Ultrawide Monitor,1,379.99,01/26/19 11:41,"371 4th St, Seattle, WA 98101" -145801,Lightning Charging Cable,1,14.95,01/14/19 23:41,"552 Washington St, Boston, MA 02215" -145802,27in FHD Monitor,1,149.99,01/15/19 21:39,"924 6th St, Seattle, WA 98101" -145803,27in FHD Monitor,1,149.99,01/09/19 15:25,"145 4th St, New York City, NY 10001" -145804,Wired Headphones,1,11.99,01/14/19 06:55,"901 11th St, Dallas, TX 75001" -145805,AA Batteries (4-pack),1,3.84,01/07/19 14:38,"503 5th St, Boston, MA 02215" -145806,Apple Airpods Headphones,1,150,01/14/19 17:10,"515 Lincoln St, New York City, NY 10001" -145807,AAA Batteries (4-pack),3,2.99,01/30/19 13:33,"228 5th St, Portland, ME 04101" -145808,Flatscreen TV,1,300,01/14/19 22:00,"80 Meadow St, Dallas, TX 75001" -145809,USB-C Charging Cable,1,11.95,01/08/19 17:46,"142 Forest St, San Francisco, CA 94016" -145810,iPhone,1,700,01/11/19 20:21,"67 Adams St, New York City, NY 10001" -145810,Lightning Charging Cable,1,14.95,01/11/19 20:21,"67 Adams St, New York City, NY 10001" -145811,Apple Airpods Headphones,1,150,01/21/19 08:25,"153 Highland St, Portland, OR 97035" -145812,AA Batteries (4-pack),3,3.84,01/19/19 08:54,"78 Jackson St, Atlanta, GA 30301" -145813,USB-C Charging Cable,1,11.95,01/16/19 19:32,"288 5th St, Portland, OR 97035" -145814,20in Monitor,1,109.99,01/02/19 21:42,"616 9th St, Boston, MA 02215" -145815,34in Ultrawide Monitor,1,379.99,01/12/19 22:10,"193 Park St, Boston, MA 02215" -145816,Apple Airpods Headphones,1,150,01/21/19 11:07,"528 Dogwood St, Boston, MA 02215" -145817,AA Batteries (4-pack),1,3.84,01/05/19 19:20,"259 Spruce St, Los Angeles, CA 90001" -145818,Wired Headphones,1,11.99,01/06/19 10:50,"394 13th St, Seattle, WA 98101" -145819,USB-C Charging Cable,1,11.95,01/16/19 14:43,"657 Sunset St, San Francisco, CA 94016" -145820,iPhone,1,700,01/01/19 18:41,"281 Washington St, Boston, MA 02215" -145821,Apple Airpods Headphones,1,150,01/20/19 18:13,"224 11th St, New York City, NY 10001" -145822,Macbook Pro Laptop,1,1700,01/10/19 20:29,"735 Dogwood St, San Francisco, CA 94016" -145823,Lightning Charging Cable,1,14.95,01/08/19 18:56,"985 Jackson St, Atlanta, GA 30301" -145824,Wired Headphones,1,11.99,01/24/19 14:37,"460 Highland St, Boston, MA 02215" -145825,Lightning Charging Cable,1,14.95,01/30/19 12:01,"103 8th St, Los Angeles, CA 90001" -145826,Flatscreen TV,1,300,01/25/19 20:09,"366 Highland St, Atlanta, GA 30301" -145827,Apple Airpods Headphones,1,150,01/12/19 20:46,"441 Lakeview St, San Francisco, CA 94016" -145828,Lightning Charging Cable,1,14.95,01/20/19 13:42,"403 Adams St, New York City, NY 10001" -145829,Lightning Charging Cable,1,14.95,01/03/19 15:26,"813 Lake St, Dallas, TX 75001" -145830,AA Batteries (4-pack),1,3.84,01/25/19 10:16,"379 8th St, Austin, TX 73301" -145831,ThinkPad Laptop,1,999.99,01/19/19 17:08,"687 Highland St, Portland, ME 04101" -145832,Flatscreen TV,1,300,01/29/19 09:31,"679 Maple St, Boston, MA 02215" -145833,Apple Airpods Headphones,1,150,01/31/19 10:30,"667 Washington St, Seattle, WA 98101" -145834,Bose SoundSport Headphones,1,99.99,01/15/19 18:24,"131 Highland St, San Francisco, CA 94016" -145835,Lightning Charging Cable,1,14.95,01/19/19 21:50,"915 Highland St, San Francisco, CA 94016" -145836,Google Phone,1,600,01/22/19 08:50,"592 Adams St, Boston, MA 02215" -145837,27in FHD Monitor,1,149.99,01/12/19 16:11,"73 13th St, San Francisco, CA 94016" -145838,ThinkPad Laptop,1,999.99,01/02/19 11:29,"798 Hickory St, Austin, TX 73301" -145839,USB-C Charging Cable,1,11.95,01/28/19 07:08,"363 4th St, Boston, MA 02215" -145840,Apple Airpods Headphones,1,150,01/03/19 19:51,"906 Highland St, San Francisco, CA 94016" -145841,AA Batteries (4-pack),1,3.84,01/29/19 22:33,"675 Sunset St, Dallas, TX 75001" -145842,Bose SoundSport Headphones,1,99.99,01/19/19 18:49,"248 Pine St, San Francisco, CA 94016" -145843,Wired Headphones,1,11.99,01/03/19 11:30,"564 Hickory St, Los Angeles, CA 90001" -145844,AA Batteries (4-pack),2,3.84,01/10/19 17:49,"53 West St, New York City, NY 10001" -145845,AAA Batteries (4-pack),2,2.99,01/30/19 18:37,"225 4th St, Boston, MA 02215" -145846,27in 4K Gaming Monitor,1,389.99,01/10/19 14:53,"129 Cedar St, Atlanta, GA 30301" -145847,20in Monitor,1,109.99,01/18/19 19:28,"565 Church St, San Francisco, CA 94016" -145848,Wired Headphones,2,11.99,01/14/19 15:36,"446 Church St, Dallas, TX 75001" -145849,Apple Airpods Headphones,1,150,01/03/19 13:14,"132 Ridge St, Austin, TX 73301" -145850,Wired Headphones,1,11.99,01/07/19 09:24,"476 Washington St, Los Angeles, CA 90001" -145851,AAA Batteries (4-pack),2,2.99,01/28/19 16:48,"933 14th St, New York City, NY 10001" -145852,USB-C Charging Cable,1,11.95,01/07/19 17:45,"113 Lakeview St, Austin, TX 73301" -145853,Wired Headphones,1,11.99,01/19/19 18:34,"826 4th St, San Francisco, CA 94016" -145854,USB-C Charging Cable,2,11.95,01/20/19 06:31,"7 1st St, San Francisco, CA 94016" -145855,AAA Batteries (4-pack),1,2.99,01/20/19 10:55,"855 Chestnut St, Austin, TX 73301" -145856,USB-C Charging Cable,1,11.95,01/20/19 10:36,"307 Wilson St, San Francisco, CA 94016" -145857,Lightning Charging Cable,1,14.95,01/03/19 11:07,"234 Meadow St, Los Angeles, CA 90001" -145858,Wired Headphones,1,11.99,01/04/19 08:45,"82 11th St, Austin, TX 73301" -145859,Apple Airpods Headphones,1,150,01/23/19 20:43,"595 Ridge St, San Francisco, CA 94016" -145860,USB-C Charging Cable,1,11.95,01/06/19 09:11,"813 Chestnut St, Los Angeles, CA 90001" -145861,34in Ultrawide Monitor,1,379.99,01/14/19 15:48,"769 5th St, San Francisco, CA 94016" -145862,Apple Airpods Headphones,1,150,01/29/19 08:39,"830 Hickory St, Portland, OR 97035" -145863,AA Batteries (4-pack),2,3.84,01/05/19 08:09,"654 5th St, Dallas, TX 75001" -145864,Lightning Charging Cable,1,14.95,01/26/19 15:56,"508 6th St, Seattle, WA 98101" -145865,20in Monitor,1,109.99,01/23/19 11:56,"45 Ridge St, Dallas, TX 75001" -145866,Wired Headphones,1,11.99,01/20/19 19:33,"164 14th St, New York City, NY 10001" -145866,AAA Batteries (4-pack),2,2.99,01/20/19 19:33,"164 14th St, New York City, NY 10001" -145867,ThinkPad Laptop,1,999.99,01/17/19 03:32,"533 Chestnut St, Seattle, WA 98101" -145868,Lightning Charging Cable,1,14.95,01/17/19 15:01,"830 14th St, San Francisco, CA 94016" -145869,Lightning Charging Cable,1,14.95,01/21/19 21:58,"555 Lake St, San Francisco, CA 94016" -145870,Macbook Pro Laptop,1,1700,01/28/19 18:16,"727 Johnson St, New York City, NY 10001" -145871,USB-C Charging Cable,1,11.95,01/25/19 09:57,"573 Jefferson St, New York City, NY 10001" -145872,AA Batteries (4-pack),1,3.84,01/11/19 18:54,"238 12th St, Los Angeles, CA 90001" -145873,USB-C Charging Cable,1,11.95,01/16/19 09:57,"305 Church St, Seattle, WA 98101" -145873,Bose SoundSport Headphones,1,99.99,01/16/19 09:57,"305 Church St, Seattle, WA 98101" -145874,27in 4K Gaming Monitor,1,389.99,01/29/19 01:11,"411 Chestnut St, New York City, NY 10001" -145875,AA Batteries (4-pack),1,3.84,01/28/19 14:21,"244 Meadow St, San Francisco, CA 94016" -145876,27in 4K Gaming Monitor,1,389.99,01/29/19 20:56,"386 Wilson St, Boston, MA 02215" -145877,USB-C Charging Cable,1,11.95,01/11/19 14:07,"974 Hill St, Los Angeles, CA 90001" -145878,Macbook Pro Laptop,1,1700,01/01/19 07:48,"456 5th St, Los Angeles, CA 90001" -145879,Lightning Charging Cable,1,14.95,01/05/19 13:03,"373 Lincoln St, San Francisco, CA 94016" -145880,AA Batteries (4-pack),1,3.84,01/09/19 20:26,"44 5th St, New York City, NY 10001" -145881,Lightning Charging Cable,1,14.95,01/06/19 08:57,"169 Highland St, Boston, MA 02215" -145882,Apple Airpods Headphones,1,150,01/30/19 09:36,"539 14th St, New York City, NY 10001" -145883,Lightning Charging Cable,2,14.95,01/23/19 21:27,"451 Madison St, San Francisco, CA 94016" -145884,Wired Headphones,1,11.99,01/03/19 23:19,"786 Sunset St, Boston, MA 02215" -145885,USB-C Charging Cable,1,11.95,01/10/19 11:35,"152 Hill St, Atlanta, GA 30301" -145886,Wired Headphones,1,11.99,01/25/19 19:21,"13 Main St, Los Angeles, CA 90001" -145887,AAA Batteries (4-pack),1,2.99,01/03/19 14:50,"122 South St, Atlanta, GA 30301" -145888,ThinkPad Laptop,1,999.99,01/25/19 19:55,"245 Highland St, San Francisco, CA 94016" -145889,Lightning Charging Cable,1,14.95,01/31/19 07:58,"722 Willow St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -145890,LG Washing Machine,1,600.0,01/28/19 23:05,"697 Chestnut St, Seattle, WA 98101" -145891,AAA Batteries (4-pack),2,2.99,01/29/19 19:24,"697 North St, Boston, MA 02215" -145892,AA Batteries (4-pack),1,3.84,01/17/19 16:33,"517 Cedar St, Portland, OR 97035" -145893,Flatscreen TV,1,300,01/09/19 16:35,"769 Hill St, Los Angeles, CA 90001" -145894,Apple Airpods Headphones,1,150,01/07/19 12:43,"935 Walnut St, Boston, MA 02215" -145895,Bose SoundSport Headphones,1,99.99,01/21/19 00:17,"170 Park St, Boston, MA 02215" -145896,Bose SoundSport Headphones,1,99.99,01/04/19 10:23,"801 Spruce St, Atlanta, GA 30301" -145897,Bose SoundSport Headphones,1,99.99,01/11/19 20:06,"687 Wilson St, San Francisco, CA 94016" -145898,Wired Headphones,1,11.99,01/19/19 17:32,"280 Chestnut St, Portland, OR 97035" -145899,AAA Batteries (4-pack),1,2.99,01/29/19 15:30,"807 Cherry St, Boston, MA 02215" -145900,iPhone,1,700,01/21/19 15:19,"601 10th St, Atlanta, GA 30301" -145901,34in Ultrawide Monitor,1,379.99,01/10/19 01:26,"705 8th St, San Francisco, CA 94016" -145902,Bose SoundSport Headphones,1,99.99,01/13/19 23:49,"671 14th St, San Francisco, CA 94016" -145903,AA Batteries (4-pack),1,3.84,01/23/19 17:39,"717 Washington St, Los Angeles, CA 90001" -145904,Lightning Charging Cable,1,14.95,01/16/19 18:48,"393 Madison St, New York City, NY 10001" -145905,AA Batteries (4-pack),1,3.84,01/16/19 20:00,"129 5th St, Los Angeles, CA 90001" -145906,AAA Batteries (4-pack),1,2.99,01/13/19 10:40,"84 Cedar St, Los Angeles, CA 90001" -145907,ThinkPad Laptop,1,999.99,01/04/19 02:10,"729 North St, Atlanta, GA 30301" -145908,Flatscreen TV,1,300,01/09/19 10:09,"113 Center St, Seattle, WA 98101" -145909,Lightning Charging Cable,1,14.95,01/15/19 14:31,"850 2nd St, San Francisco, CA 94016" -145910,USB-C Charging Cable,1,11.95,01/08/19 23:12,"991 Madison St, San Francisco, CA 94016" -145911,iPhone,1,700,01/27/19 10:14,"347 Maple St, Seattle, WA 98101" -145912,USB-C Charging Cable,1,11.95,01/16/19 22:20,"364 Meadow St, San Francisco, CA 94016" -145913,AA Batteries (4-pack),4,3.84,01/13/19 11:22,"320 9th St, San Francisco, CA 94016" -145914,27in FHD Monitor,1,149.99,01/03/19 10:42,"153 Cedar St, Los Angeles, CA 90001" -145915,Apple Airpods Headphones,1,150,01/29/19 22:58,"911 2nd St, Seattle, WA 98101" -145916,Lightning Charging Cable,1,14.95,01/24/19 11:47,"7 5th St, Los Angeles, CA 90001" -145917,Wired Headphones,1,11.99,01/09/19 15:55,"367 Hickory St, Los Angeles, CA 90001" -145918,Flatscreen TV,1,300,01/30/19 09:58,"685 Elm St, New York City, NY 10001" -145919,Lightning Charging Cable,1,14.95,01/07/19 23:24,"889 Jefferson St, Atlanta, GA 30301" -145920,USB-C Charging Cable,1,11.95,01/18/19 20:43,"60 River St, Dallas, TX 75001" -145921,AAA Batteries (4-pack),1,2.99,01/26/19 12:02,"742 Highland St, Los Angeles, CA 90001" -145922,Google Phone,1,600,01/06/19 18:23,"770 Main St, Los Angeles, CA 90001" -145922,USB-C Charging Cable,1,11.95,01/06/19 18:23,"770 Main St, Los Angeles, CA 90001" -145923,Wired Headphones,1,11.99,01/14/19 14:07,"591 South St, New York City, NY 10001" -145924,AA Batteries (4-pack),1,3.84,01/27/19 14:59,"848 Forest St, San Francisco, CA 94016" -145925,Wired Headphones,1,11.99,01/13/19 20:15,"767 Forest St, Los Angeles, CA 90001" -145926,AAA Batteries (4-pack),1,2.99,01/10/19 10:42,"629 8th St, Seattle, WA 98101" -145927,Vareebadd Phone,1,400,01/21/19 19:02,"148 8th St, San Francisco, CA 94016" -145927,USB-C Charging Cable,1,11.95,01/21/19 19:02,"148 8th St, San Francisco, CA 94016" -145927,Wired Headphones,1,11.99,01/21/19 19:02,"148 8th St, San Francisco, CA 94016" -145928,Lightning Charging Cable,1,14.95,01/11/19 17:19,"934 Maple St, Los Angeles, CA 90001" -145929,USB-C Charging Cable,1,11.95,01/11/19 12:03,"416 Park St, Portland, OR 97035" -145930,27in FHD Monitor,1,149.99,01/06/19 21:12,"898 6th St, Seattle, WA 98101" -145931,Wired Headphones,1,11.99,01/21/19 11:29,"324 Willow St, New York City, NY 10001" -145932,Apple Airpods Headphones,1,150,01/27/19 15:24,"844 Park St, New York City, NY 10001" -145933,27in FHD Monitor,1,149.99,01/29/19 16:51,"45 Hill St, Portland, OR 97035" -145934,AAA Batteries (4-pack),5,2.99,01/11/19 09:32,"259 Washington St, Atlanta, GA 30301" -145935,27in 4K Gaming Monitor,1,389.99,01/26/19 13:26,"980 11th St, San Francisco, CA 94016" -145935,AA Batteries (4-pack),1,3.84,01/26/19 13:26,"980 11th St, San Francisco, CA 94016" -145936,Bose SoundSport Headphones,1,99.99,01/03/19 16:38,"572 River St, Austin, TX 73301" -145937,AAA Batteries (4-pack),1,2.99,01/16/19 18:18,"391 12th St, Atlanta, GA 30301" -145938,AAA Batteries (4-pack),1,2.99,01/05/19 08:05,"173 6th St, San Francisco, CA 94016" -145939,ThinkPad Laptop,1,999.99,01/09/19 22:42,"677 Chestnut St, Seattle, WA 98101" -145940,Lightning Charging Cable,1,14.95,01/03/19 20:51,"63 5th St, San Francisco, CA 94016" -145941,Bose SoundSport Headphones,1,99.99,01/29/19 15:21,"168 2nd St, Austin, TX 73301" -145942,Bose SoundSport Headphones,1,99.99,01/29/19 11:19,"336 11th St, Dallas, TX 75001" -145943,Bose SoundSport Headphones,1,99.99,01/13/19 11:38,"692 South St, Seattle, WA 98101" -145944,Wired Headphones,1,11.99,01/01/19 21:32,"482 Center St, San Francisco, CA 94016" -145945,AA Batteries (4-pack),4,3.84,01/18/19 13:18,"774 12th St, Portland, OR 97035" -145946,USB-C Charging Cable,1,11.95,01/22/19 00:14,"980 Lake St, Los Angeles, CA 90001" -145947,AA Batteries (4-pack),1,3.84,01/06/19 13:18,"910 4th St, San Francisco, CA 94016" -145948,USB-C Charging Cable,1,11.95,01/24/19 15:28,"870 Cherry St, Atlanta, GA 30301" -145949,20in Monitor,1,109.99,01/25/19 15:05,"300 North St, San Francisco, CA 94016" -145950,27in FHD Monitor,1,149.99,01/16/19 23:55,"618 Chestnut St, Portland, OR 97035" -145951,Apple Airpods Headphones,1,150,01/18/19 15:22,"92 Highland St, San Francisco, CA 94016" -145952,AA Batteries (4-pack),2,3.84,01/13/19 21:28,"706 Dogwood St, Atlanta, GA 30301" -145953,Wired Headphones,2,11.99,01/30/19 07:55,"989 Johnson St, New York City, NY 10001" -145954,Lightning Charging Cable,1,14.95,01/10/19 18:42,"134 Hickory St, Dallas, TX 75001" -145955,Wired Headphones,1,11.99,01/07/19 10:06,"470 West St, New York City, NY 10001" -145956,34in Ultrawide Monitor,1,379.99,01/27/19 12:44,"177 Hill St, Los Angeles, CA 90001" -145957,27in 4K Gaming Monitor,1,389.99,01/23/19 23:05,"998 4th St, Portland, ME 04101" -145958,Apple Airpods Headphones,1,150,01/06/19 08:28,"877 Park St, New York City, NY 10001" -145959,Lightning Charging Cable,1,14.95,01/27/19 12:44,"687 7th St, Atlanta, GA 30301" -145959,Google Phone,1,600,01/27/19 12:44,"687 7th St, Atlanta, GA 30301" -145960,USB-C Charging Cable,1,11.95,01/05/19 12:18,"177 Walnut St, Boston, MA 02215" -145961,AAA Batteries (4-pack),1,2.99,01/09/19 19:53,"561 Johnson St, San Francisco, CA 94016" -145962,Apple Airpods Headphones,1,150,01/15/19 12:16,"10 Johnson St, Los Angeles, CA 90001" -145963,Wired Headphones,1,11.99,01/29/19 13:10,"549 Sunset St, Seattle, WA 98101" -145964,iPhone,1,700,01/24/19 16:19,"279 4th St, San Francisco, CA 94016" -145964,Wired Headphones,1,11.99,01/24/19 16:19,"279 4th St, San Francisco, CA 94016" -145965,Google Phone,1,600,01/02/19 11:12,"981 Hill St, Atlanta, GA 30301" -145966,AAA Batteries (4-pack),1,2.99,01/02/19 18:59,"756 Jefferson St, Los Angeles, CA 90001" -145967,Wired Headphones,1,11.99,01/19/19 21:20,"485 Wilson St, Boston, MA 02215" -145968,ThinkPad Laptop,1,999.99,01/10/19 18:34,"538 Lakeview St, Portland, OR 97035" -145969,iPhone,1,700,01/07/19 23:05,"337 1st St, Los Angeles, CA 90001" -145970,Vareebadd Phone,1,400,01/17/19 10:32,"345 12th St, Los Angeles, CA 90001" -145971,USB-C Charging Cable,1,11.95,01/15/19 20:15,"625 Cedar St, New York City, NY 10001" -145972,Lightning Charging Cable,1,14.95,01/22/19 15:33,"374 North St, Austin, TX 73301" -145973,27in 4K Gaming Monitor,1,389.99,01/16/19 14:38,"233 14th St, Seattle, WA 98101" -145974,Lightning Charging Cable,1,14.95,01/10/19 10:47,"666 Center St, Austin, TX 73301" -145975,Flatscreen TV,1,300,01/25/19 11:26,"496 14th St, Los Angeles, CA 90001" -145976,AAA Batteries (4-pack),1,2.99,01/07/19 19:18,"255 South St, Austin, TX 73301" -145977,34in Ultrawide Monitor,1,379.99,01/20/19 12:54,"39 Lakeview St, Boston, MA 02215" -145978,iPhone,1,700,01/18/19 14:29,"612 Spruce St, Seattle, WA 98101" -145979,AA Batteries (4-pack),1,3.84,01/18/19 12:38,"379 Pine St, San Francisco, CA 94016" -145980,34in Ultrawide Monitor,1,379.99,01/16/19 09:11,"951 6th St, San Francisco, CA 94016" -145981,AA Batteries (4-pack),1,3.84,01/26/19 10:36,"588 9th St, Los Angeles, CA 90001" -145982,27in FHD Monitor,1,149.99,01/31/19 14:04,"546 Main St, Atlanta, GA 30301" -145983,Bose SoundSport Headphones,1,99.99,01/04/19 11:55,"487 Jefferson St, Seattle, WA 98101" -145984,USB-C Charging Cable,1,11.95,01/29/19 16:47,"634 4th St, Los Angeles, CA 90001" -145985,Wired Headphones,1,11.99,01/10/19 10:21,"674 Cedar St, Dallas, TX 75001" -145986,AAA Batteries (4-pack),1,2.99,01/24/19 12:43,"785 Sunset St, Dallas, TX 75001" -145987,AAA Batteries (4-pack),1,2.99,01/18/19 10:38,"539 Jefferson St, Los Angeles, CA 90001" -145988,27in FHD Monitor,1,149.99,01/30/19 08:22,"917 Center St, San Francisco, CA 94016" -145989,Macbook Pro Laptop,1,1700,01/26/19 10:40,"596 Willow St, San Francisco, CA 94016" -145990,AAA Batteries (4-pack),1,2.99,01/01/19 09:03,"325 Madison St, Dallas, TX 75001" -145991,AAA Batteries (4-pack),1,2.99,01/15/19 08:29,"583 North St, Boston, MA 02215" -145992,Bose SoundSport Headphones,1,99.99,01/02/19 19:54,"51 Jefferson St, San Francisco, CA 94016" -145993,AA Batteries (4-pack),3,3.84,01/02/19 18:43,"493 6th St, San Francisco, CA 94016" -145994,Wired Headphones,1,11.99,01/29/19 10:45,"111 Ridge St, Los Angeles, CA 90001" -145995,iPhone,1,700,01/23/19 17:12,"916 Church St, Los Angeles, CA 90001" -145996,Bose SoundSport Headphones,1,99.99,01/26/19 14:29,"115 1st St, Seattle, WA 98101" -145997,Lightning Charging Cable,1,14.95,01/18/19 11:24,"36 West St, San Francisco, CA 94016" -145998,Bose SoundSport Headphones,1,99.99,01/27/19 09:16,"531 Adams St, Atlanta, GA 30301" -145999,Wired Headphones,1,11.99,01/25/19 08:55,"18 Forest St, New York City, NY 10001" -146000,Lightning Charging Cable,1,14.95,01/28/19 09:46,"269 Cedar St, New York City, NY 10001" -146001,20in Monitor,1,109.99,01/22/19 08:09,"664 2nd St, San Francisco, CA 94016" -146002,AAA Batteries (4-pack),1,2.99,01/20/19 09:07,"780 North St, Atlanta, GA 30301" -146003,USB-C Charging Cable,1,11.95,01/17/19 16:57,"178 5th St, San Francisco, CA 94016" -146003,Wired Headphones,1,11.99,01/17/19 16:57,"178 5th St, San Francisco, CA 94016" -146004,ThinkPad Laptop,1,999.99,01/16/19 09:36,"396 Church St, Dallas, TX 75001" -146005,Bose SoundSport Headphones,1,99.99,01/12/19 23:29,"78 Elm St, Atlanta, GA 30301" -146006,Flatscreen TV,1,300,01/14/19 11:11,"254 5th St, Los Angeles, CA 90001" -146006,AA Batteries (4-pack),2,3.84,01/14/19 11:11,"254 5th St, Los Angeles, CA 90001" -146007,USB-C Charging Cable,2,11.95,01/28/19 15:29,"421 Dogwood St, New York City, NY 10001" -146008,Wired Headphones,1,11.99,01/09/19 20:06,"807 Adams St, Dallas, TX 75001" -146009,Apple Airpods Headphones,1,150,01/02/19 16:34,"124 Ridge St, New York City, NY 10001" -146010,34in Ultrawide Monitor,1,379.99,01/08/19 22:23,"621 Adams St, New York City, NY 10001" -146011,AAA Batteries (4-pack),1,2.99,01/29/19 22:02,"747 Ridge St, Los Angeles, CA 90001" -146012,Wired Headphones,1,11.99,01/05/19 12:30,"874 South St, Atlanta, GA 30301" -146013,AAA Batteries (4-pack),3,2.99,01/05/19 19:18,"123 Johnson St, New York City, NY 10001" -146014,27in 4K Gaming Monitor,1,389.99,01/16/19 21:25,"183 10th St, Seattle, WA 98101" -146015,Flatscreen TV,1,300,01/07/19 16:32,"198 Wilson St, San Francisco, CA 94016" -146016,AAA Batteries (4-pack),1,2.99,01/02/19 21:18,"605 14th St, San Francisco, CA 94016" -146017,Flatscreen TV,1,300,01/15/19 19:09,"236 7th St, Dallas, TX 75001" -146018,AA Batteries (4-pack),1,3.84,01/25/19 17:53,"925 Lake St, New York City, NY 10001" -146019,Lightning Charging Cable,1,14.95,01/04/19 14:58,"49 Meadow St, Los Angeles, CA 90001" -146020,Lightning Charging Cable,1,14.95,01/28/19 16:17,"501 Washington St, New York City, NY 10001" -146021,Lightning Charging Cable,1,14.95,01/10/19 16:15,"391 12th St, Los Angeles, CA 90001" -146021,AA Batteries (4-pack),1,3.84,01/10/19 16:15,"391 12th St, Los Angeles, CA 90001" -146022,34in Ultrawide Monitor,1,379.99,01/01/19 21:32,"256 10th St, New York City, NY 10001" -146023,Lightning Charging Cable,1,14.95,01/20/19 12:41,"728 North St, New York City, NY 10001" -146024,AA Batteries (4-pack),1,3.84,01/20/19 21:21,"664 Dogwood St, Atlanta, GA 30301" -146025,AAA Batteries (4-pack),1,2.99,01/21/19 18:57,"933 Lincoln St, Portland, OR 97035" -146026,Apple Airpods Headphones,1,150,01/31/19 00:33,"401 Ridge St, Boston, MA 02215" -146027,Wired Headphones,1,11.99,01/18/19 09:49,"931 11th St, Boston, MA 02215" -146028,Apple Airpods Headphones,1,150,01/29/19 21:45,"152 Center St, Austin, TX 73301" -146029,iPhone,1,700,01/02/19 16:27,"768 Willow St, Atlanta, GA 30301" -146029,Apple Airpods Headphones,1,150,01/02/19 16:27,"768 Willow St, Atlanta, GA 30301" -146030,27in 4K Gaming Monitor,1,389.99,01/09/19 22:32,"971 9th St, Los Angeles, CA 90001" -146031,AA Batteries (4-pack),5,3.84,01/12/19 21:09,"446 5th St, New York City, NY 10001" -146032,USB-C Charging Cable,1,11.95,01/27/19 08:10,"185 Lake St, Seattle, WA 98101" -146033,34in Ultrawide Monitor,1,379.99,01/12/19 20:51,"526 Cedar St, San Francisco, CA 94016" -146034,AAA Batteries (4-pack),3,2.99,01/20/19 16:15,"243 Madison St, New York City, NY 10001" -146035,Lightning Charging Cable,1,14.95,01/19/19 13:30,"737 Jackson St, San Francisco, CA 94016" -146036,AA Batteries (4-pack),1,3.84,01/04/19 14:20,"708 5th St, Los Angeles, CA 90001" -146037,Wired Headphones,1,11.99,01/02/19 18:37,"967 Hickory St, Dallas, TX 75001" -146038,Bose SoundSport Headphones,1,99.99,01/19/19 15:53,"28 1st St, Atlanta, GA 30301" -,,,,, -146039,34in Ultrawide Monitor,1,379.99,01/01/19 07:24,"53 River St, San Francisco, CA 94016" -146040,AAA Batteries (4-pack),1,2.99,01/25/19 21:24,"791 Jefferson St, San Francisco, CA 94016" -146041,AAA Batteries (4-pack),2,2.99,01/07/19 09:54,"153 11th St, Austin, TX 73301" -146042,Lightning Charging Cable,1,14.95,01/13/19 16:33,"919 Forest St, New York City, NY 10001" -146043,Apple Airpods Headphones,1,150,01/08/19 12:23,"500 River St, San Francisco, CA 94016" -146044,AAA Batteries (4-pack),1,2.99,01/10/19 19:27,"5 Lincoln St, Los Angeles, CA 90001" -146045,Macbook Pro Laptop,1,1700,01/26/19 11:01,"857 2nd St, Boston, MA 02215" -146046,Wired Headphones,1,11.99,01/17/19 12:36,"311 Spruce St, San Francisco, CA 94016" -146047,Wired Headphones,1,11.99,01/26/19 14:44,"563 Center St, Portland, OR 97035" -146048,AAA Batteries (4-pack),1,2.99,01/31/19 08:57,"710 2nd St, Austin, TX 73301" -146049,AAA Batteries (4-pack),1,2.99,01/18/19 08:18,"39 Center St, Seattle, WA 98101" -146050,Lightning Charging Cable,1,14.95,01/02/19 14:04,"667 7th St, Boston, MA 02215" -146051,34in Ultrawide Monitor,1,379.99,01/20/19 07:40,"379 9th St, San Francisco, CA 94016" -146052,27in FHD Monitor,1,149.99,01/26/19 16:03,"874 Adams St, Seattle, WA 98101" -146053,Lightning Charging Cable,1,14.95,01/05/19 22:26,"15 Main St, Atlanta, GA 30301" -146054,Wired Headphones,1,11.99,01/26/19 13:02,"919 Hill St, Atlanta, GA 30301" -146055,USB-C Charging Cable,1,11.95,01/09/19 20:29,"524 Washington St, Los Angeles, CA 90001" -146056,Lightning Charging Cable,1,14.95,01/01/19 07:53,"622 Hill St, Portland, OR 97035" -146057,20in Monitor,1,109.99,01/26/19 16:54,"896 Johnson St, Seattle, WA 98101" -146058,20in Monitor,1,109.99,01/25/19 16:55,"39 2nd St, Boston, MA 02215" -146059,AA Batteries (4-pack),1,3.84,01/15/19 10:25,"749 Spruce St, Dallas, TX 75001" -146060,Wired Headphones,1,11.99,01/22/19 17:45,"983 Jackson St, New York City, NY 10001" -146061,USB-C Charging Cable,1,11.95,01/13/19 00:27,"290 Park St, San Francisco, CA 94016" -146062,27in FHD Monitor,1,149.99,01/19/19 12:48,"700 Dogwood St, Los Angeles, CA 90001" -146063,Vareebadd Phone,1,400,01/29/19 11:35,"210 Cedar St, Seattle, WA 98101" -146064,USB-C Charging Cable,1,11.95,01/07/19 10:04,"283 7th St, San Francisco, CA 94016" -146065,Apple Airpods Headphones,1,150,01/06/19 20:36,"496 Chestnut St, Atlanta, GA 30301" -146066,ThinkPad Laptop,1,999.99,01/08/19 14:16,"714 River St, Los Angeles, CA 90001" -146067,Wired Headphones,1,11.99,01/11/19 21:12,"810 Spruce St, Austin, TX 73301" -146068,AA Batteries (4-pack),2,3.84,01/30/19 08:14,"964 11th St, Boston, MA 02215" -146069,iPhone,1,700,01/07/19 21:02,"489 Sunset St, Boston, MA 02215" -146070,AAA Batteries (4-pack),1,2.99,01/29/19 17:27,"184 Highland St, Los Angeles, CA 90001" -146071,Wired Headphones,1,11.99,01/11/19 09:32,"78 Madison St, San Francisco, CA 94016" -146072,AA Batteries (4-pack),1,3.84,01/07/19 09:06,"675 Dogwood St, Boston, MA 02215" -146073,AA Batteries (4-pack),1,3.84,01/06/19 20:46,"895 2nd St, San Francisco, CA 94016" -146074,USB-C Charging Cable,1,11.95,01/02/19 17:31,"436 9th St, Seattle, WA 98101" -146075,Apple Airpods Headphones,1,150,01/03/19 19:28,"317 Madison St, Los Angeles, CA 90001" -146076,AAA Batteries (4-pack),1,2.99,01/22/19 09:07,"84 Hickory St, New York City, NY 10001" -146077,iPhone,1,700,01/21/19 02:41,"460 Hickory St, Boston, MA 02215" -146078,Apple Airpods Headphones,1,150,01/22/19 16:11,"422 Walnut St, Portland, OR 97035" -146079,AA Batteries (4-pack),1,3.84,01/23/19 21:22,"889 13th St, San Francisco, CA 94016" -146080,Google Phone,1,600,01/16/19 18:38,"364 Main St, Los Angeles, CA 90001" -146081,iPhone,1,700,01/03/19 20:46,"475 Hickory St, Los Angeles, CA 90001" -146082,Bose SoundSport Headphones,1,99.99,01/05/19 13:06,"968 Lake St, New York City, NY 10001" -146083,20in Monitor,1,109.99,01/20/19 14:20,"43 Lakeview St, San Francisco, CA 94016" -146084,AAA Batteries (4-pack),1,2.99,01/29/19 09:55,"798 Madison St, Dallas, TX 75001" -146085,iPhone,1,700,01/01/19 14:52,"901 12th St, Seattle, WA 98101" -146086,iPhone,1,700,01/13/19 08:06,"32 8th St, New York City, NY 10001" -146087,USB-C Charging Cable,1,11.95,01/07/19 13:41,"15 10th St, New York City, NY 10001" -146088,AAA Batteries (4-pack),1,2.99,01/09/19 21:05,"326 Maple St, Seattle, WA 98101" -146089,Apple Airpods Headphones,1,150,01/10/19 21:06,"106 7th St, Boston, MA 02215" -146090,Bose SoundSport Headphones,1,99.99,01/09/19 18:41,"446 Lakeview St, San Francisco, CA 94016" -146091,USB-C Charging Cable,1,11.95,01/19/19 20:59,"794 9th St, Austin, TX 73301" -146092,Flatscreen TV,1,300,01/16/19 21:45,"914 Adams St, San Francisco, CA 94016" -146093,ThinkPad Laptop,1,999.99,01/10/19 15:15,"123 14th St, Austin, TX 73301" -146094,Bose SoundSport Headphones,1,99.99,01/18/19 19:51,"678 14th St, Dallas, TX 75001" -146095,Macbook Pro Laptop,1,1700,01/07/19 21:17,"13 Johnson St, Los Angeles, CA 90001" -146096,27in FHD Monitor,1,149.99,01/09/19 02:09,"822 Wilson St, New York City, NY 10001" -146097,USB-C Charging Cable,1,11.95,01/22/19 12:50,"808 6th St, San Francisco, CA 94016" -146098,AA Batteries (4-pack),2,3.84,01/16/19 13:53,"3 Lakeview St, Los Angeles, CA 90001" -146099,Bose SoundSport Headphones,1,99.99,01/15/19 12:22,"612 Main St, Los Angeles, CA 90001" -146100,Wired Headphones,1,11.99,01/01/19 10:02,"428 13th St, Austin, TX 73301" -146101,Wired Headphones,1,11.99,01/15/19 10:58,"480 4th St, Portland, OR 97035" -146102,34in Ultrawide Monitor,1,379.99,01/27/19 10:48,"213 Willow St, Boston, MA 02215" -146103,Bose SoundSport Headphones,1,99.99,01/08/19 15:15,"571 Johnson St, San Francisco, CA 94016" -146104,AA Batteries (4-pack),1,3.84,01/12/19 05:40,"252 8th St, Austin, TX 73301" -146105,AAA Batteries (4-pack),1,2.99,01/22/19 20:03,"628 14th St, Atlanta, GA 30301" -146106,Lightning Charging Cable,1,14.95,01/08/19 09:25,"42 13th St, San Francisco, CA 94016" -146107,AA Batteries (4-pack),1,3.84,01/09/19 16:06,"877 2nd St, Portland, OR 97035" -146108,Bose SoundSport Headphones,1,99.99,01/09/19 22:33,"83 Adams St, New York City, NY 10001" -146109,USB-C Charging Cable,1,11.95,01/22/19 17:14,"299 Pine St, Los Angeles, CA 90001" -146110,Wired Headphones,2,11.99,01/25/19 13:55,"635 Chestnut St, Atlanta, GA 30301" -146111,AAA Batteries (4-pack),3,2.99,01/10/19 15:36,"126 Pine St, Seattle, WA 98101" -146112,USB-C Charging Cable,1,11.95,01/01/19 09:36,"973 Adams St, Portland, OR 97035" -146113,Lightning Charging Cable,1,14.95,01/08/19 16:31,"565 Lakeview St, Dallas, TX 75001" -146114,Apple Airpods Headphones,1,150,01/22/19 03:15,"724 Cherry St, Los Angeles, CA 90001" -146115,Lightning Charging Cable,1,14.95,01/15/19 23:11,"576 Spruce St, Los Angeles, CA 90001" -146116,Lightning Charging Cable,1,14.95,01/02/19 10:42,"110 7th St, Boston, MA 02215" -146117,Lightning Charging Cable,1,14.95,01/02/19 10:27,"291 Wilson St, Seattle, WA 98101" -146118,USB-C Charging Cable,1,11.95,01/13/19 07:54,"554 14th St, Seattle, WA 98101" -146119,27in FHD Monitor,1,149.99,01/30/19 23:13,"294 2nd St, New York City, NY 10001" -146120,27in FHD Monitor,1,149.99,01/18/19 01:09,"853 1st St, San Francisco, CA 94016" -146121,Flatscreen TV,1,300,01/21/19 23:40,"494 4th St, New York City, NY 10001" -146122,USB-C Charging Cable,1,11.95,01/22/19 13:31,"197 10th St, San Francisco, CA 94016" -146123,Wired Headphones,1,11.99,01/31/19 02:25,"638 Lincoln St, Boston, MA 02215" -146124,20in Monitor,1,109.99,01/18/19 23:09,"589 6th St, Austin, TX 73301" -146125,Bose SoundSport Headphones,1,99.99,01/03/19 01:22,"489 Washington St, San Francisco, CA 94016" -146126,Bose SoundSport Headphones,1,99.99,01/26/19 11:19,"286 Washington St, San Francisco, CA 94016" -146127,AAA Batteries (4-pack),1,2.99,01/08/19 11:48,"731 Jackson St, New York City, NY 10001" -146128,Lightning Charging Cable,1,14.95,01/13/19 20:10,"981 5th St, San Francisco, CA 94016" -146129,iPhone,1,700,01/12/19 11:28,"303 Walnut St, San Francisco, CA 94016" -146129,Lightning Charging Cable,1,14.95,01/12/19 11:28,"303 Walnut St, San Francisco, CA 94016" -146130,Apple Airpods Headphones,1,150,01/05/19 22:35,"739 River St, San Francisco, CA 94016" -146131,27in FHD Monitor,1,149.99,01/21/19 03:21,"298 Hill St, Boston, MA 02215" -146132,AA Batteries (4-pack),2,3.84,01/24/19 13:42,"491 Church St, Dallas, TX 75001" -146133,AAA Batteries (4-pack),3,2.99,01/07/19 10:55,"551 13th St, Dallas, TX 75001" -146134,Lightning Charging Cable,1,14.95,01/29/19 07:08,"207 Forest St, Austin, TX 73301" -146135,USB-C Charging Cable,1,11.95,01/01/19 20:45,"876 8th St, San Francisco, CA 94016" -146136,AA Batteries (4-pack),1,3.84,01/08/19 19:49,"485 Jackson St, Los Angeles, CA 90001" -146137,27in FHD Monitor,1,149.99,01/28/19 01:34,"853 5th St, Seattle, WA 98101" -146138,USB-C Charging Cable,1,11.95,01/25/19 10:25,"919 6th St, San Francisco, CA 94016" -146139,Apple Airpods Headphones,1,150,01/07/19 12:42,"59 Park St, Boston, MA 02215" -146140,Apple Airpods Headphones,1,150,01/31/19 21:03,"430 Main St, Austin, TX 73301" -146141,USB-C Charging Cable,1,11.95,01/26/19 22:14,"593 Meadow St, Austin, TX 73301" -146142,AAA Batteries (4-pack),2,2.99,01/24/19 19:42,"720 Cedar St, Dallas, TX 75001" -146143,USB-C Charging Cable,1,11.95,01/09/19 21:45,"123 Hickory St, New York City, NY 10001" -146144,iPhone,1,700,01/13/19 21:21,"726 2nd St, Dallas, TX 75001" -146145,Lightning Charging Cable,1,14.95,01/31/19 22:51,"553 Hill St, Seattle, WA 98101" -146146,ThinkPad Laptop,1,999.99,01/15/19 16:00,"911 10th St, New York City, NY 10001" -146147,20in Monitor,1,109.99,01/09/19 13:40,"61 Chestnut St, Boston, MA 02215" -146148,27in 4K Gaming Monitor,1,389.99,01/08/19 15:28,"114 River St, Boston, MA 02215" -146149,ThinkPad Laptop,1,999.99,01/06/19 08:38,"527 10th St, Dallas, TX 75001" -146150,Apple Airpods Headphones,1,150,01/05/19 20:14,"597 1st St, San Francisco, CA 94016" -146151,Google Phone,1,600,01/29/19 15:30,"492 Jefferson St, Los Angeles, CA 90001" -146152,Lightning Charging Cable,1,14.95,01/16/19 13:06,"248 Church St, San Francisco, CA 94016" -146153,Apple Airpods Headphones,1,150,01/02/19 00:10,"638 Forest St, Austin, TX 73301" -146154,27in 4K Gaming Monitor,1,389.99,01/03/19 05:23,"851 Highland St, Los Angeles, CA 90001" -146155,34in Ultrawide Monitor,1,379.99,01/29/19 12:03,"374 Willow St, San Francisco, CA 94016" -146156,20in Monitor,1,109.99,01/24/19 12:23,"467 7th St, San Francisco, CA 94016" -146157,iPhone,1,700,01/06/19 18:30,"731 South St, Los Angeles, CA 90001" -146157,Lightning Charging Cable,1,14.95,01/06/19 18:30,"731 South St, Los Angeles, CA 90001" -146158,27in FHD Monitor,1,149.99,01/16/19 19:32,"918 6th St, Los Angeles, CA 90001" -146159,Apple Airpods Headphones,1,150,01/06/19 10:29,"864 Main St, Los Angeles, CA 90001" -146160,Bose SoundSport Headphones,1,99.99,01/20/19 18:45,"738 Main St, San Francisco, CA 94016" -146161,AAA Batteries (4-pack),1,2.99,01/07/19 10:27,"132 Pine St, Los Angeles, CA 90001" -146162,Lightning Charging Cable,1,14.95,01/11/19 14:12,"8 Maple St, Los Angeles, CA 90001" -146163,Google Phone,1,600,01/30/19 19:33,"419 Hickory St, Los Angeles, CA 90001" -146164,Apple Airpods Headphones,1,150,01/23/19 08:58,"614 Walnut St, Dallas, TX 75001" -146165,27in 4K Gaming Monitor,1,389.99,01/12/19 20:43,"507 Main St, San Francisco, CA 94016" -146166,AAA Batteries (4-pack),1,2.99,01/21/19 19:34,"472 Pine St, San Francisco, CA 94016" -146167,Lightning Charging Cable,1,14.95,01/04/19 10:12,"931 Dogwood St, Dallas, TX 75001" -146168,Google Phone,1,600,01/22/19 01:01,"277 Washington St, San Francisco, CA 94016" -146169,Apple Airpods Headphones,1,150,01/17/19 20:11,"929 13th St, Portland, OR 97035" -146170,iPhone,1,700,01/30/19 15:36,"748 Meadow St, Portland, OR 97035" -146171,AAA Batteries (4-pack),2,2.99,01/09/19 19:21,"507 8th St, Portland, ME 04101" -146172,Bose SoundSport Headphones,1,99.99,01/07/19 15:17,"251 Hickory St, Atlanta, GA 30301" -146173,Bose SoundSport Headphones,1,99.99,01/15/19 18:16,"413 Jefferson St, San Francisco, CA 94016" -146174,Lightning Charging Cable,1,14.95,01/30/19 17:16,"209 2nd St, New York City, NY 10001" -146175,27in FHD Monitor,1,149.99,01/26/19 14:13,"794 Maple St, Los Angeles, CA 90001" -146176,27in 4K Gaming Monitor,1,389.99,01/10/19 10:58,"939 Park St, Los Angeles, CA 90001" -146177,Lightning Charging Cable,1,14.95,01/26/19 15:41,"325 Highland St, New York City, NY 10001" -146178,AAA Batteries (4-pack),1,2.99,01/06/19 11:38,"174 Ridge St, San Francisco, CA 94016" -146179,Apple Airpods Headphones,1,150,01/07/19 22:48,"761 Park St, Seattle, WA 98101" -146180,Wired Headphones,1,11.99,01/05/19 10:19,"115 Wilson St, Los Angeles, CA 90001" -146181,AA Batteries (4-pack),1,3.84,01/28/19 18:46,"284 Spruce St, Los Angeles, CA 90001" -146182,Wired Headphones,1,11.99,01/14/19 06:28,"703 Hill St, San Francisco, CA 94016" -146183,AAA Batteries (4-pack),1,2.99,01/25/19 11:51,"325 12th St, San Francisco, CA 94016" -146184,iPhone,1,700,01/04/19 20:00,"519 12th St, Boston, MA 02215" -146185,Wired Headphones,1,11.99,01/24/19 20:32,"811 Meadow St, Boston, MA 02215" -146186,34in Ultrawide Monitor,1,379.99,01/20/19 09:50,"466 Elm St, Atlanta, GA 30301" -146187,AA Batteries (4-pack),1,3.84,01/01/19 16:45,"385 9th St, Portland, OR 97035" -146188,USB-C Charging Cable,2,11.95,01/24/19 13:21,"185 2nd St, Dallas, TX 75001" -146189,AAA Batteries (4-pack),1,2.99,01/16/19 09:27,"252 Lakeview St, San Francisco, CA 94016" -146190,27in 4K Gaming Monitor,1,389.99,01/10/19 18:15,"614 Willow St, Los Angeles, CA 90001" -146191,Flatscreen TV,1,300,01/21/19 08:26,"730 Hickory St, San Francisco, CA 94016" -146192,AA Batteries (4-pack),3,3.84,01/13/19 06:26,"58 Cedar St, San Francisco, CA 94016" -146193,Bose SoundSport Headphones,1,99.99,01/19/19 18:57,"827 Cedar St, Seattle, WA 98101" -146194,AA Batteries (4-pack),1,3.84,01/29/19 12:12,"817 Cedar St, San Francisco, CA 94016" -146195,Lightning Charging Cable,1,14.95,01/15/19 17:49,"616 Spruce St, San Francisco, CA 94016" -146196,AAA Batteries (4-pack),2,2.99,01/22/19 10:48,"462 Spruce St, Los Angeles, CA 90001" -146197,AAA Batteries (4-pack),1,2.99,01/12/19 19:24,"465 Center St, San Francisco, CA 94016" -146198,Lightning Charging Cable,1,14.95,01/31/19 16:31,"347 9th St, New York City, NY 10001" -146199,Wired Headphones,1,11.99,01/19/19 19:45,"849 Highland St, Austin, TX 73301" -146200,Lightning Charging Cable,1,14.95,01/13/19 18:50,"324 Johnson St, San Francisco, CA 94016" -146201,Macbook Pro Laptop,1,1700,01/21/19 23:10,"996 Cedar St, Seattle, WA 98101" -146202,USB-C Charging Cable,1,11.95,01/09/19 23:11,"532 Washington St, New York City, NY 10001" -146203,27in FHD Monitor,1,149.99,01/23/19 01:58,"105 4th St, Atlanta, GA 30301" -146204,AA Batteries (4-pack),2,3.84,01/02/19 18:16,"129 Dogwood St, Dallas, TX 75001" -146205,USB-C Charging Cable,1,11.95,01/30/19 10:22,"58 Jefferson St, Los Angeles, CA 90001" -146206,Wired Headphones,1,11.99,01/12/19 23:12,"522 7th St, Austin, TX 73301" -146207,Lightning Charging Cable,1,14.95,01/18/19 18:55,"116 Meadow St, Los Angeles, CA 90001" -146208,AA Batteries (4-pack),1,3.84,01/15/19 17:00,"600 River St, Dallas, TX 75001" -146209,Lightning Charging Cable,1,14.95,01/25/19 19:30,"339 Adams St, Seattle, WA 98101" -146210,Wired Headphones,1,11.99,01/24/19 16:09,"168 North St, San Francisco, CA 94016" -146211,USB-C Charging Cable,1,11.95,01/10/19 20:23,"875 North St, Los Angeles, CA 90001" -146212,AAA Batteries (4-pack),1,2.99,01/17/19 16:51,"504 1st St, San Francisco, CA 94016" -146213,AA Batteries (4-pack),1,3.84,01/18/19 15:19,"219 Washington St, Atlanta, GA 30301" -146214,Vareebadd Phone,1,400,01/23/19 21:41,"842 Forest St, Los Angeles, CA 90001" -146215,Flatscreen TV,1,300,01/26/19 19:20,"917 13th St, Los Angeles, CA 90001" -146216,USB-C Charging Cable,1,11.95,01/16/19 21:02,"339 Johnson St, San Francisco, CA 94016" -146217,Apple Airpods Headphones,1,150,01/23/19 10:04,"207 North St, Los Angeles, CA 90001" -146218,Lightning Charging Cable,1,14.95,01/22/19 11:26,"946 Dogwood St, Los Angeles, CA 90001" -146219,Wired Headphones,1,11.99,01/16/19 19:02,"854 River St, San Francisco, CA 94016" -146220,Apple Airpods Headphones,1,150,01/08/19 10:35,"371 8th St, Austin, TX 73301" -146221,Lightning Charging Cable,1,14.95,01/02/19 16:24,"60 14th St, San Francisco, CA 94016" -146222,27in FHD Monitor,1,149.99,01/11/19 17:05,"364 Walnut St, San Francisco, CA 94016" -146223,LG Dryer,1,600.0,01/15/19 14:26,"522 Forest St, San Francisco, CA 94016" -146224,Apple Airpods Headphones,1,150,01/28/19 14:48,"810 Main St, Boston, MA 02215" -146225,Wired Headphones,1,11.99,01/13/19 11:38,"899 Chestnut St, Los Angeles, CA 90001" -146226,Apple Airpods Headphones,1,150,01/12/19 14:29,"229 Maple St, New York City, NY 10001" -146227,27in 4K Gaming Monitor,1,389.99,01/09/19 15:27,"186 Elm St, San Francisco, CA 94016" -146228,AAA Batteries (4-pack),7,2.99,01/13/19 17:44,"722 South St, Dallas, TX 75001" -146229,USB-C Charging Cable,1,11.95,01/13/19 22:39,"66 South St, Los Angeles, CA 90001" -146230,Lightning Charging Cable,1,14.95,01/13/19 05:18,"466 Wilson St, San Francisco, CA 94016" -146231,USB-C Charging Cable,1,11.95,01/30/19 10:04,"266 Elm St, San Francisco, CA 94016" -146232,Lightning Charging Cable,1,14.95,01/09/19 21:10,"808 Lake St, Portland, OR 97035" -146233,AA Batteries (4-pack),1,3.84,01/19/19 12:17,"830 Spruce St, Portland, ME 04101" -146234,ThinkPad Laptop,1,999.99,01/12/19 22:10,"120 Church St, Atlanta, GA 30301" -146235,iPhone,1,700,01/27/19 11:25,"469 10th St, San Francisco, CA 94016" -146235,Lightning Charging Cable,1,14.95,01/27/19 11:25,"469 10th St, San Francisco, CA 94016" -146236,27in 4K Gaming Monitor,1,389.99,01/11/19 13:31,"978 Chestnut St, Boston, MA 02215" -146237,Lightning Charging Cable,1,14.95,01/22/19 14:46,"23 River St, San Francisco, CA 94016" -146238,AAA Batteries (4-pack),1,2.99,01/20/19 09:13,"63 9th St, Atlanta, GA 30301" -146239,Macbook Pro Laptop,1,1700,01/30/19 12:56,"635 River St, Atlanta, GA 30301" -146240,Lightning Charging Cable,1,14.95,01/05/19 19:39,"311 Cedar St, Seattle, WA 98101" -146241,AA Batteries (4-pack),2,3.84,01/29/19 04:26,"979 River St, San Francisco, CA 94016" -146242,AA Batteries (4-pack),1,3.84,01/09/19 19:42,"419 West St, Portland, ME 04101" -146243,27in FHD Monitor,1,149.99,01/01/19 11:43,"921 Chestnut St, Seattle, WA 98101" -146244,AA Batteries (4-pack),1,3.84,01/13/19 13:11,"860 Maple St, Dallas, TX 75001" -146245,Lightning Charging Cable,1,14.95,01/21/19 23:52,"28 Wilson St, New York City, NY 10001" -146246,AA Batteries (4-pack),4,3.84,01/13/19 20:00,"104 Forest St, Dallas, TX 75001" -146247,Macbook Pro Laptop,1,1700,01/11/19 00:29,"910 12th St, New York City, NY 10001" -146248,Lightning Charging Cable,1,14.95,01/22/19 14:08,"338 Lake St, Seattle, WA 98101" -146249,AA Batteries (4-pack),1,3.84,01/08/19 10:23,"429 Madison St, Boston, MA 02215" -146249,AAA Batteries (4-pack),1,2.99,01/08/19 10:23,"429 Madison St, Boston, MA 02215" -146250,AAA Batteries (4-pack),1,2.99,01/19/19 11:20,"200 Adams St, Los Angeles, CA 90001" -146251,Macbook Pro Laptop,1,1700,01/23/19 21:11,"575 Chestnut St, Austin, TX 73301" -146252,AA Batteries (4-pack),2,3.84,01/21/19 14:14,"116 Hill St, Los Angeles, CA 90001" -146253,USB-C Charging Cable,1,11.95,01/21/19 18:23,"668 Sunset St, New York City, NY 10001" -146254,Flatscreen TV,1,300,01/26/19 10:32,"908 14th St, Portland, OR 97035" -146255,AA Batteries (4-pack),1,3.84,01/16/19 22:40,"931 Ridge St, Portland, OR 97035" -146256,AAA Batteries (4-pack),1,2.99,01/26/19 11:52,"286 13th St, Boston, MA 02215" -146257,USB-C Charging Cable,1,11.95,01/30/19 07:19,"845 North St, Portland, ME 04101" -146257,Google Phone,1,600,01/30/19 07:19,"845 North St, Portland, ME 04101" -146258,27in 4K Gaming Monitor,1,389.99,01/08/19 08:24,"561 North St, San Francisco, CA 94016" -146259,Wired Headphones,1,11.99,01/30/19 15:14,"440 Lincoln St, San Francisco, CA 94016" -146260,Google Phone,1,600,01/27/19 16:38,"728 Maple St, San Francisco, CA 94016" -146261,AA Batteries (4-pack),1,3.84,01/11/19 19:08,"535 Highland St, San Francisco, CA 94016" -146262,Wired Headphones,1,11.99,01/20/19 07:48,"346 West St, Boston, MA 02215" -146263,AA Batteries (4-pack),2,3.84,01/10/19 16:49,"529 Chestnut St, Dallas, TX 75001" -146264,Lightning Charging Cable,1,14.95,01/26/19 19:42,"894 Chestnut St, New York City, NY 10001" -146265,USB-C Charging Cable,1,11.95,01/12/19 19:19,"583 Maple St, Seattle, WA 98101" -146266,27in 4K Gaming Monitor,1,389.99,01/07/19 17:34,"921 11th St, Portland, OR 97035" -146267,AAA Batteries (4-pack),1,2.99,01/06/19 12:44,"160 Highland St, Boston, MA 02215" -146268,Google Phone,1,600,01/24/19 21:24,"611 Hickory St, San Francisco, CA 94016" -146269,20in Monitor,1,109.99,01/31/19 19:22,"220 Chestnut St, Los Angeles, CA 90001" -146270,USB-C Charging Cable,1,11.95,01/15/19 14:28,"286 Sunset St, New York City, NY 10001" -146271,Wired Headphones,1,11.99,01/31/19 21:42,"24 Spruce St, Boston, MA 02215" -146272,27in FHD Monitor,1,149.99,01/10/19 11:23,"468 Madison St, Boston, MA 02215" -146273,AA Batteries (4-pack),2,3.84,01/03/19 22:49,"533 10th St, San Francisco, CA 94016" -146274,Lightning Charging Cable,1,14.95,01/07/19 15:40,"137 14th St, Boston, MA 02215" -146275,Google Phone,1,600,01/31/19 11:41,"866 Pine St, San Francisco, CA 94016" -146276,AA Batteries (4-pack),1,3.84,01/12/19 07:19,"38 12th St, San Francisco, CA 94016" -146277,Flatscreen TV,1,300,01/08/19 23:54,"327 Lake St, Seattle, WA 98101" -146277,34in Ultrawide Monitor,1,379.99,01/08/19 23:54,"327 Lake St, Seattle, WA 98101" -146278,Wired Headphones,1,11.99,01/12/19 15:31,"594 13th St, San Francisco, CA 94016" -146279,AAA Batteries (4-pack),2,2.99,01/21/19 10:48,"205 10th St, Boston, MA 02215" -146280,Bose SoundSport Headphones,1,99.99,01/16/19 08:28,"937 Meadow St, Boston, MA 02215" -146281,Lightning Charging Cable,1,14.95,01/18/19 10:20,"78 Cherry St, Los Angeles, CA 90001" -146282,AA Batteries (4-pack),3,3.84,01/07/19 21:09,"663 Chestnut St, Boston, MA 02215" -146283,Apple Airpods Headphones,1,150,01/27/19 01:03,"599 West St, Seattle, WA 98101" -146284,AA Batteries (4-pack),3,3.84,01/09/19 18:21,"865 Lincoln St, Los Angeles, CA 90001" -146285,Bose SoundSport Headphones,1,99.99,01/25/19 19:38,"356 Lincoln St, Boston, MA 02215" -146286,Apple Airpods Headphones,1,150,01/31/19 09:59,"57 River St, Los Angeles, CA 90001" -146287,AAA Batteries (4-pack),2,2.99,01/29/19 19:50,"173 Pine St, San Francisco, CA 94016" -146288,Apple Airpods Headphones,1,150,01/21/19 14:33,"407 Dogwood St, Boston, MA 02215" -146289,20in Monitor,1,109.99,01/27/19 20:18,"58 Lincoln St, New York City, NY 10001" -146290,Macbook Pro Laptop,1,1700,01/04/19 20:18,"169 River St, Atlanta, GA 30301" -146291,iPhone,1,700,01/11/19 12:47,"116 South St, Austin, TX 73301" -146292,Apple Airpods Headphones,1,150,01/06/19 17:57,"359 Elm St, Atlanta, GA 30301" -146293,27in FHD Monitor,1,149.99,01/15/19 18:18,"800 Jefferson St, Los Angeles, CA 90001" -146294,AA Batteries (4-pack),1,3.84,01/25/19 08:02,"440 5th St, San Francisco, CA 94016" -146295,Lightning Charging Cable,1,14.95,01/22/19 12:50,"220 Willow St, Seattle, WA 98101" -146296,AAA Batteries (4-pack),1,2.99,01/10/19 09:43,"685 Center St, Seattle, WA 98101" -146297,AA Batteries (4-pack),1,3.84,01/09/19 11:13,"53 Adams St, Portland, OR 97035" -146298,USB-C Charging Cable,1,11.95,01/22/19 20:52,"43 8th St, San Francisco, CA 94016" -146299,USB-C Charging Cable,1,11.95,01/28/19 00:52,"625 13th St, Los Angeles, CA 90001" -146299,Wired Headphones,1,11.99,01/28/19 00:52,"625 13th St, Los Angeles, CA 90001" -146300,AA Batteries (4-pack),2,3.84,01/21/19 09:24,"785 Adams St, Austin, TX 73301" -146301,27in FHD Monitor,1,149.99,01/20/19 17:07,"352 7th St, New York City, NY 10001" -146302,27in 4K Gaming Monitor,1,389.99,01/26/19 15:12,"806 Main St, San Francisco, CA 94016" -146303,Wired Headphones,1,11.99,01/14/19 10:37,"137 Cedar St, Atlanta, GA 30301" -146304,AAA Batteries (4-pack),1,2.99,01/26/19 22:34,"580 7th St, Atlanta, GA 30301" -146305,Lightning Charging Cable,1,14.95,01/01/19 18:25,"159 4th St, Boston, MA 02215" -146306,Bose SoundSport Headphones,1,99.99,01/22/19 06:37,"810 Willow St, Portland, OR 97035" -146307,ThinkPad Laptop,1,999.99,01/02/19 14:00,"820 Willow St, Los Angeles, CA 90001" -146308,34in Ultrawide Monitor,1,379.99,01/17/19 21:54,"580 Wilson St, New York City, NY 10001" -146309,Lightning Charging Cable,1,14.95,01/11/19 20:22,"641 Hickory St, San Francisco, CA 94016" -146310,Lightning Charging Cable,1,14.95,01/04/19 20:10,"518 7th St, Los Angeles, CA 90001" -146311,Bose SoundSport Headphones,1,99.99,01/18/19 09:45,"406 Dogwood St, Los Angeles, CA 90001" -146312,USB-C Charging Cable,1,11.95,01/29/19 19:44,"347 Hickory St, Dallas, TX 75001" -146313,34in Ultrawide Monitor,1,379.99,01/12/19 21:29,"184 Walnut St, Boston, MA 02215" -146314,Bose SoundSport Headphones,1,99.99,01/12/19 20:17,"833 Church St, San Francisco, CA 94016" -146315,Lightning Charging Cable,2,14.95,01/28/19 14:21,"666 Spruce St, Seattle, WA 98101" -146316,34in Ultrawide Monitor,1,379.99,01/19/19 14:57,"612 4th St, Dallas, TX 75001" -146317,27in 4K Gaming Monitor,1,389.99,01/05/19 14:06,"596 7th St, Los Angeles, CA 90001" -146318,Lightning Charging Cable,1,14.95,01/07/19 12:03,"896 Main St, New York City, NY 10001" -146319,Apple Airpods Headphones,1,150,01/23/19 18:28,"882 Wilson St, Seattle, WA 98101" -146320,AAA Batteries (4-pack),1,2.99,01/05/19 18:15,"109 Willow St, Boston, MA 02215" -146321,Bose SoundSport Headphones,1,99.99,01/27/19 20:44,"162 Pine St, Boston, MA 02215" -146322,Wired Headphones,2,11.99,01/14/19 13:15,"598 11th St, Los Angeles, CA 90001" -146323,Apple Airpods Headphones,1,150,01/12/19 11:13,"445 Lake St, Portland, OR 97035" -146324,USB-C Charging Cable,1,11.95,01/26/19 17:12,"800 Park St, Los Angeles, CA 90001" -146325,20in Monitor,1,109.99,01/09/19 21:06,"452 12th St, Portland, OR 97035" -146326,AAA Batteries (4-pack),1,2.99,01/12/19 13:08,"568 12th St, Boston, MA 02215" -146327,27in FHD Monitor,1,149.99,01/04/19 12:45,"547 Washington St, Atlanta, GA 30301" -146328,AAA Batteries (4-pack),2,2.99,01/17/19 20:34,"28 Dogwood St, San Francisco, CA 94016" -146329,AAA Batteries (4-pack),1,2.99,01/06/19 18:23,"626 14th St, San Francisco, CA 94016" -146330,ThinkPad Laptop,1,999.99,01/27/19 19:50,"917 West St, Los Angeles, CA 90001" -146331,Lightning Charging Cable,1,14.95,01/25/19 15:26,"640 Spruce St, Dallas, TX 75001" -146332,AA Batteries (4-pack),2,3.84,01/07/19 21:20,"78 4th St, San Francisco, CA 94016" -146333,USB-C Charging Cable,1,11.95,01/07/19 15:25,"67 Ridge St, San Francisco, CA 94016" -146334,Bose SoundSport Headphones,1,99.99,01/10/19 17:45,"570 Sunset St, New York City, NY 10001" -146335,Macbook Pro Laptop,1,1700,01/23/19 08:37,"791 Chestnut St, San Francisco, CA 94016" -146336,AAA Batteries (4-pack),2,2.99,01/25/19 13:40,"765 Jackson St, New York City, NY 10001" -146337,Wired Headphones,2,11.99,01/22/19 20:19,"810 Hill St, Boston, MA 02215" -146338,34in Ultrawide Monitor,1,379.99,01/23/19 11:49,"90 Jackson St, Portland, OR 97035" -146339,AAA Batteries (4-pack),3,2.99,01/11/19 01:25,"241 5th St, San Francisco, CA 94016" -146340,Lightning Charging Cable,1,14.95,01/26/19 22:08,"118 Park St, San Francisco, CA 94016" -146341,USB-C Charging Cable,1,11.95,01/29/19 15:23,"998 6th St, Los Angeles, CA 90001" -146342,Lightning Charging Cable,1,14.95,01/24/19 12:34,"539 Dogwood St, Dallas, TX 75001" -146343,AA Batteries (4-pack),1,3.84,01/30/19 09:16,"107 1st St, San Francisco, CA 94016" -146344,USB-C Charging Cable,1,11.95,01/28/19 23:58,"606 6th St, Austin, TX 73301" -146345,Macbook Pro Laptop,1,1700,01/08/19 11:52,"934 Sunset St, New York City, NY 10001" -146346,Bose SoundSport Headphones,1,99.99,01/11/19 10:14,"13 Lakeview St, Los Angeles, CA 90001" -146347,AA Batteries (4-pack),1,3.84,01/13/19 18:47,"811 Lake St, Boston, MA 02215" -146348,AAA Batteries (4-pack),2,2.99,01/27/19 20:05,"780 11th St, New York City, NY 10001" -146349,AA Batteries (4-pack),1,3.84,01/20/19 10:04,"551 Pine St, San Francisco, CA 94016" -146350,27in 4K Gaming Monitor,1,389.99,01/22/19 10:16,"293 Willow St, Boston, MA 02215" -146351,Wired Headphones,1,11.99,01/30/19 10:55,"921 8th St, New York City, NY 10001" -146352,27in 4K Gaming Monitor,1,389.99,01/22/19 16:56,"998 Walnut St, Los Angeles, CA 90001" -146353,Lightning Charging Cable,1,14.95,01/18/19 10:41,"275 6th St, Austin, TX 73301" -146354,Lightning Charging Cable,1,14.95,01/24/19 20:42,"829 Wilson St, Portland, OR 97035" -146355,AAA Batteries (4-pack),1,2.99,01/21/19 17:32,"291 Pine St, San Francisco, CA 94016" -146356,AAA Batteries (4-pack),1,2.99,01/02/19 15:22,"780 12th St, Los Angeles, CA 90001" -146357,Wired Headphones,1,11.99,01/06/19 14:24,"543 Willow St, New York City, NY 10001" -146358,Macbook Pro Laptop,1,1700,01/22/19 01:12,"991 Spruce St, San Francisco, CA 94016" -146359,Lightning Charging Cable,1,14.95,01/04/19 13:18,"930 Forest St, New York City, NY 10001" -146360,AAA Batteries (4-pack),4,2.99,01/04/19 18:37,"216 7th St, San Francisco, CA 94016" -146361,USB-C Charging Cable,1,11.95,01/31/19 18:01,"717 Dogwood St, Los Angeles, CA 90001" -146362,Bose SoundSport Headphones,1,99.99,01/31/19 09:17,"924 Hickory St, Seattle, WA 98101" -146363,AAA Batteries (4-pack),1,2.99,01/19/19 21:22,"312 6th St, New York City, NY 10001" -146364,AAA Batteries (4-pack),1,2.99,01/01/19 15:32,"868 Highland St, Los Angeles, CA 90001" -146365,USB-C Charging Cable,1,11.95,01/19/19 12:10,"109 Church St, Austin, TX 73301" -146366,USB-C Charging Cable,1,11.95,01/14/19 10:12,"726 Jackson St, Dallas, TX 75001" -146367,20in Monitor,1,109.99,01/27/19 19:46,"405 Spruce St, San Francisco, CA 94016" -146368,Lightning Charging Cable,1,14.95,01/10/19 20:20,"311 South St, New York City, NY 10001" -146369,34in Ultrawide Monitor,1,379.99,01/14/19 14:42,"248 Jefferson St, Seattle, WA 98101" -146370,Lightning Charging Cable,1,14.95,01/30/19 20:11,"493 Walnut St, Portland, OR 97035" -146371,AA Batteries (4-pack),1,3.84,01/24/19 19:57,"53 Washington St, Portland, ME 04101" -146372,27in 4K Gaming Monitor,1,389.99,01/03/19 10:24,"68 7th St, Boston, MA 02215" -146373,ThinkPad Laptop,1,999.99,01/22/19 08:25,"100 Wilson St, New York City, NY 10001" -146374,AAA Batteries (4-pack),2,2.99,01/08/19 10:30,"985 6th St, New York City, NY 10001" -146375,USB-C Charging Cable,1,11.95,01/25/19 16:58,"370 Jackson St, Portland, OR 97035" -146376,Flatscreen TV,1,300,01/10/19 14:23,"442 14th St, Portland, OR 97035" -146377,AAA Batteries (4-pack),2,2.99,01/23/19 09:25,"209 Johnson St, Atlanta, GA 30301" -146378,Apple Airpods Headphones,1,150,01/10/19 01:54,"932 West St, San Francisco, CA 94016" -146379,Lightning Charging Cable,1,14.95,01/02/19 11:38,"104 Cedar St, New York City, NY 10001" -146380,AAA Batteries (4-pack),2,2.99,01/01/19 23:18,"382 Walnut St, Austin, TX 73301" -146381,Apple Airpods Headphones,1,150,01/30/19 12:09,"418 Lakeview St, San Francisco, CA 94016" -146382,USB-C Charging Cable,1,11.95,01/17/19 18:50,"387 Dogwood St, Los Angeles, CA 90001" -146383,iPhone,1,700,01/26/19 17:20,"196 Chestnut St, San Francisco, CA 94016" -146384,AA Batteries (4-pack),1,3.84,01/24/19 10:59,"192 Elm St, San Francisco, CA 94016" -146385,27in FHD Monitor,1,149.99,01/28/19 11:48,"933 Ridge St, San Francisco, CA 94016" -146385,Bose SoundSport Headphones,1,99.99,01/28/19 11:48,"933 Ridge St, San Francisco, CA 94016" -146386,USB-C Charging Cable,1,11.95,01/06/19 13:33,"363 South St, Austin, TX 73301" -146387,Lightning Charging Cable,1,14.95,01/24/19 13:20,"696 12th St, San Francisco, CA 94016" -146388,Bose SoundSport Headphones,1,99.99,01/01/19 19:16,"483 Wilson St, San Francisco, CA 94016" -146389,LG Washing Machine,1,600.0,01/11/19 13:18,"212 6th St, Seattle, WA 98101" -146390,AAA Batteries (4-pack),2,2.99,01/05/19 11:15,"168 4th St, Los Angeles, CA 90001" -146391,Apple Airpods Headphones,1,150,01/05/19 20:29,"76 Pine St, Boston, MA 02215" -146392,ThinkPad Laptop,1,999.99,01/23/19 21:34,"403 Maple St, Los Angeles, CA 90001" -146393,USB-C Charging Cable,1,11.95,01/25/19 13:25,"393 8th St, San Francisco, CA 94016" -146394,AA Batteries (4-pack),1,3.84,01/15/19 12:51,"102 Spruce St, Los Angeles, CA 90001" -146395,Wired Headphones,1,11.99,01/31/19 20:43,"65 Johnson St, Seattle, WA 98101" -146396,Bose SoundSport Headphones,1,99.99,01/06/19 10:35,"773 Main St, Boston, MA 02215" -146397,27in FHD Monitor,1,149.99,01/02/19 21:59,"778 West St, Los Angeles, CA 90001" -146397,AAA Batteries (4-pack),1,2.99,01/02/19 21:59,"778 West St, Los Angeles, CA 90001" -146398,Google Phone,1,600,01/26/19 18:29,"258 Willow St, Dallas, TX 75001" -146399,Bose SoundSport Headphones,1,99.99,01/30/19 14:12,"956 8th St, Dallas, TX 75001" -146400,34in Ultrawide Monitor,1,379.99,01/24/19 12:13,"453 Spruce St, Austin, TX 73301" -146401,34in Ultrawide Monitor,1,379.99,01/18/19 13:55,"349 Hickory St, San Francisco, CA 94016" -146402,Macbook Pro Laptop,1,1700,01/15/19 18:13,"223 Meadow St, Los Angeles, CA 90001" -146403,AA Batteries (4-pack),1,3.84,01/01/19 22:11,"180 Chestnut St, San Francisco, CA 94016" -146404,Lightning Charging Cable,1,14.95,01/25/19 23:39,"449 14th St, San Francisco, CA 94016" -146405,AAA Batteries (4-pack),2,2.99,01/08/19 14:49,"40 Willow St, Los Angeles, CA 90001" -146406,Lightning Charging Cable,1,14.95,01/26/19 18:05,"836 Pine St, Los Angeles, CA 90001" -146407,LG Dryer,1,600.0,01/04/19 11:44,"788 Washington St, San Francisco, CA 94016" -146407,AA Batteries (4-pack),2,3.84,01/04/19 11:44,"788 Washington St, San Francisco, CA 94016" -146408,Apple Airpods Headphones,1,150,01/27/19 02:43,"320 Main St, Los Angeles, CA 90001" -146409,Apple Airpods Headphones,1,150,01/24/19 11:07,"682 7th St, Dallas, TX 75001" -146410,AAA Batteries (4-pack),1,2.99,01/22/19 13:18,"434 Ridge St, San Francisco, CA 94016" -146411,iPhone,1,700,01/13/19 14:22,"107 Spruce St, Boston, MA 02215" -146412,Apple Airpods Headphones,1,150,01/10/19 16:14,"803 1st St, Los Angeles, CA 90001" -146413,Lightning Charging Cable,1,14.95,01/19/19 18:28,"6 Madison St, Los Angeles, CA 90001" -146414,Bose SoundSport Headphones,1,99.99,01/19/19 23:16,"831 Pine St, New York City, NY 10001" -146415,27in 4K Gaming Monitor,1,389.99,01/05/19 19:16,"648 Maple St, Seattle, WA 98101" -146416,AAA Batteries (4-pack),1,2.99,01/05/19 09:53,"854 West St, New York City, NY 10001" -146417,USB-C Charging Cable,1,11.95,01/18/19 16:17,"740 Jefferson St, Los Angeles, CA 90001" -146418,Macbook Pro Laptop,1,1700,01/31/19 19:31,"314 Elm St, Boston, MA 02215" -146419,Wired Headphones,1,11.99,01/31/19 13:27,"215 Hill St, San Francisco, CA 94016" -146420,Wired Headphones,1,11.99,01/15/19 15:21,"59 West St, New York City, NY 10001" -146421,AA Batteries (4-pack),2,3.84,01/24/19 20:09,"206 Park St, New York City, NY 10001" -146422,Apple Airpods Headphones,1,150,01/22/19 12:42,"987 1st St, Boston, MA 02215" -146423,AA Batteries (4-pack),1,3.84,01/06/19 19:39,"988 Park St, Austin, TX 73301" -146424,27in FHD Monitor,1,149.99,01/17/19 12:02,"634 Lincoln St, New York City, NY 10001" -146425,AAA Batteries (4-pack),2,2.99,01/05/19 13:58,"570 Lincoln St, Dallas, TX 75001" -146426,Bose SoundSport Headphones,1,99.99,01/09/19 19:30,"123 Wilson St, San Francisco, CA 94016" -146427,Wired Headphones,1,11.99,01/06/19 23:23,"250 Elm St, Los Angeles, CA 90001" -146428,Google Phone,1,600,01/15/19 11:48,"127 Hickory St, New York City, NY 10001" -146429,USB-C Charging Cable,1,11.95,01/18/19 13:45,"112 Park St, San Francisco, CA 94016" -146430,Bose SoundSport Headphones,1,99.99,01/29/19 04:03,"104 Center St, Los Angeles, CA 90001" -146431,Lightning Charging Cable,1,14.95,01/01/19 12:39,"561 River St, San Francisco, CA 94016" -146432,Lightning Charging Cable,1,14.95,01/04/19 11:45,"847 North St, Boston, MA 02215" -146433,Wired Headphones,1,11.99,01/28/19 12:52,"646 Dogwood St, Portland, OR 97035" -146434,USB-C Charging Cable,1,11.95,01/09/19 13:02,"141 South St, Portland, OR 97035" -146435,Google Phone,1,600,01/29/19 20:38,"314 5th St, Dallas, TX 75001" -146436,20in Monitor,1,109.99,01/18/19 10:30,"183 Adams St, New York City, NY 10001" -146437,20in Monitor,1,109.99,01/17/19 23:05,"269 Lincoln St, San Francisco, CA 94016" -146438,27in FHD Monitor,1,149.99,01/26/19 03:30,"610 Meadow St, San Francisco, CA 94016" -146439,20in Monitor,1,109.99,01/20/19 11:27,"146 Ridge St, New York City, NY 10001" -146440,USB-C Charging Cable,1,11.95,01/28/19 17:33,"770 1st St, San Francisco, CA 94016" -146441,20in Monitor,1,109.99,01/18/19 09:15,"818 Wilson St, San Francisco, CA 94016" -146442,USB-C Charging Cable,1,11.95,02/01/19 01:48,"229 West St, Los Angeles, CA 90001" -146443,Flatscreen TV,1,300,01/15/19 17:19,"928 Spruce St, San Francisco, CA 94016" -146444,AA Batteries (4-pack),1,3.84,01/03/19 16:49,"737 8th St, Atlanta, GA 30301" -146445,Bose SoundSport Headphones,1,99.99,01/17/19 07:14,"139 10th St, San Francisco, CA 94016" -146446,Wired Headphones,3,11.99,01/01/19 18:20,"678 2nd St, New York City, NY 10001" -146447,Wired Headphones,1,11.99,01/10/19 13:26,"284 14th St, Boston, MA 02215" -146448,AAA Batteries (4-pack),1,2.99,01/10/19 17:07,"863 Washington St, Austin, TX 73301" -146449,AAA Batteries (4-pack),1,2.99,01/14/19 13:23,"989 Madison St, Los Angeles, CA 90001" -146450,27in FHD Monitor,1,149.99,01/13/19 20:36,"755 8th St, Los Angeles, CA 90001" -146451,USB-C Charging Cable,1,11.95,01/05/19 18:59,"589 Forest St, Los Angeles, CA 90001" -146452,Lightning Charging Cable,1,14.95,01/25/19 18:18,"541 Lincoln St, Dallas, TX 75001" -146453,34in Ultrawide Monitor,1,379.99,01/26/19 17:43,"373 Chestnut St, New York City, NY 10001" -146454,Apple Airpods Headphones,1,150,01/11/19 11:36,"489 9th St, Dallas, TX 75001" -146455,Apple Airpods Headphones,1,150,01/10/19 15:32,"36 9th St, Los Angeles, CA 90001" -146456,Macbook Pro Laptop,1,1700,01/11/19 13:28,"660 13th St, New York City, NY 10001" -146457,Apple Airpods Headphones,1,150,01/08/19 22:13,"127 11th St, Austin, TX 73301" -146458,AA Batteries (4-pack),1,3.84,01/19/19 09:12,"631 1st St, Boston, MA 02215" -146459,Lightning Charging Cable,2,14.95,01/01/19 09:21,"444 Dogwood St, San Francisco, CA 94016" -146460,Lightning Charging Cable,1,14.95,01/19/19 19:23,"940 West St, San Francisco, CA 94016" -146461,iPhone,1,700,01/07/19 08:06,"926 8th St, San Francisco, CA 94016" -146461,Wired Headphones,1,11.99,01/07/19 08:06,"926 8th St, San Francisco, CA 94016" -146462,AA Batteries (4-pack),1,3.84,01/15/19 14:52,"113 11th St, Dallas, TX 75001" -146463,Lightning Charging Cable,1,14.95,01/08/19 19:08,"640 13th St, Austin, TX 73301" -146464,AA Batteries (4-pack),2,3.84,01/05/19 23:40,"51 Washington St, San Francisco, CA 94016" -146465,AAA Batteries (4-pack),1,2.99,01/27/19 19:56,"277 Wilson St, San Francisco, CA 94016" -146466,Lightning Charging Cable,1,14.95,01/28/19 10:54,"283 14th St, Dallas, TX 75001" -146467,Macbook Pro Laptop,1,1700,01/25/19 14:16,"950 5th St, Los Angeles, CA 90001" -146468,Bose SoundSport Headphones,1,99.99,01/23/19 18:55,"592 River St, Los Angeles, CA 90001" -146469,AA Batteries (4-pack),2,3.84,01/02/19 21:45,"319 Willow St, Los Angeles, CA 90001" -146470,Bose SoundSport Headphones,1,99.99,01/17/19 11:29,"442 West St, Atlanta, GA 30301" -146471,USB-C Charging Cable,1,11.95,01/01/19 18:29,"134 Center St, Seattle, WA 98101" -146471,Wired Headphones,1,11.99,01/01/19 18:29,"134 Center St, Seattle, WA 98101" -146472,Vareebadd Phone,1,400,01/12/19 00:48,"616 North St, New York City, NY 10001" -146472,USB-C Charging Cable,1,11.95,01/12/19 00:48,"616 North St, New York City, NY 10001" -146473,Lightning Charging Cable,1,14.95,01/08/19 15:34,"509 Center St, Atlanta, GA 30301" -146474,AAA Batteries (4-pack),1,2.99,01/02/19 11:04,"371 Meadow St, Seattle, WA 98101" -146475,AA Batteries (4-pack),1,3.84,01/12/19 21:56,"934 Dogwood St, Los Angeles, CA 90001" -146476,AAA Batteries (4-pack),1,2.99,01/16/19 19:53,"650 Sunset St, Los Angeles, CA 90001" -146477,AA Batteries (4-pack),1,3.84,01/07/19 16:54,"477 Maple St, Boston, MA 02215" -146478,Wired Headphones,1,11.99,01/24/19 08:02,"398 Dogwood St, San Francisco, CA 94016" -146479,AA Batteries (4-pack),3,3.84,01/02/19 20:35,"650 Hill St, Los Angeles, CA 90001" -146480,Wired Headphones,1,11.99,01/19/19 00:32,"847 Walnut St, Austin, TX 73301" -146481,27in FHD Monitor,1,149.99,01/28/19 21:07,"744 6th St, Portland, OR 97035" -146482,Lightning Charging Cable,1,14.95,01/27/19 17:07,"205 Forest St, Austin, TX 73301" -146483,Macbook Pro Laptop,1,1700,01/06/19 12:28,"282 Johnson St, New York City, NY 10001" -146484,AA Batteries (4-pack),3,3.84,01/09/19 11:34,"938 Hill St, San Francisco, CA 94016" -146485,27in FHD Monitor,1,149.99,01/22/19 10:06,"393 Center St, San Francisco, CA 94016" -146486,Vareebadd Phone,1,400,01/04/19 14:05,"728 Main St, Portland, OR 97035" -146487,Wired Headphones,1,11.99,01/28/19 04:17,"212 6th St, Atlanta, GA 30301" -146488,USB-C Charging Cable,1,11.95,01/25/19 18:25,"515 Lincoln St, New York City, NY 10001" -146489,AA Batteries (4-pack),1,3.84,01/13/19 15:16,"224 River St, San Francisco, CA 94016" -146490,Bose SoundSport Headphones,1,99.99,01/22/19 11:34,"26 Ridge St, Los Angeles, CA 90001" -146490,Lightning Charging Cable,1,14.95,01/22/19 11:34,"26 Ridge St, Los Angeles, CA 90001" -146491,Flatscreen TV,1,300,01/20/19 22:15,"638 Ridge St, San Francisco, CA 94016" -146492,20in Monitor,1,109.99,01/14/19 19:45,"214 14th St, New York City, NY 10001" -146493,Lightning Charging Cable,1,14.95,01/22/19 01:01,"698 6th St, New York City, NY 10001" -146494,20in Monitor,1,109.99,01/11/19 12:38,"333 Pine St, Atlanta, GA 30301" -146495,Wired Headphones,3,11.99,01/18/19 10:17,"296 7th St, Boston, MA 02215" -146496,27in FHD Monitor,1,149.99,01/05/19 18:40,"560 Center St, San Francisco, CA 94016" -146497,AA Batteries (4-pack),1,3.84,01/05/19 13:59,"716 Lake St, New York City, NY 10001" -146498,USB-C Charging Cable,1,11.95,01/26/19 14:03,"511 2nd St, New York City, NY 10001" -146499,Flatscreen TV,1,300,01/19/19 17:31,"297 2nd St, San Francisco, CA 94016" -146500,AA Batteries (4-pack),1,3.84,01/24/19 17:49,"915 North St, Atlanta, GA 30301" -146501,USB-C Charging Cable,1,11.95,01/22/19 11:03,"80 Dogwood St, Atlanta, GA 30301" -146502,Bose SoundSport Headphones,1,99.99,01/16/19 22:25,"330 Main St, Los Angeles, CA 90001" -146503,AAA Batteries (4-pack),1,2.99,01/05/19 10:59,"231 West St, San Francisco, CA 94016" -146504,USB-C Charging Cable,1,11.95,01/28/19 21:36,"754 Main St, San Francisco, CA 94016" -146505,AAA Batteries (4-pack),1,2.99,01/24/19 19:04,"288 Johnson St, Los Angeles, CA 90001" -146506,AAA Batteries (4-pack),1,2.99,01/12/19 23:06,"98 Wilson St, San Francisco, CA 94016" -146507,AAA Batteries (4-pack),2,2.99,01/20/19 12:32,"393 Park St, Dallas, TX 75001" -146508,Wired Headphones,1,11.99,01/29/19 23:04,"635 Lincoln St, San Francisco, CA 94016" -146509,AAA Batteries (4-pack),1,2.99,01/17/19 23:46,"326 Chestnut St, Austin, TX 73301" -146510,Google Phone,1,600,01/01/19 23:07,"234 13th St, San Francisco, CA 94016" -146511,USB-C Charging Cable,1,11.95,01/05/19 12:48,"743 Highland St, Los Angeles, CA 90001" -146512,USB-C Charging Cable,1,11.95,01/03/19 15:29,"55 Spruce St, Seattle, WA 98101" -146513,Bose SoundSport Headphones,1,99.99,01/22/19 12:32,"515 Park St, Dallas, TX 75001" -146514,Bose SoundSport Headphones,1,99.99,01/26/19 16:32,"869 Lincoln St, Los Angeles, CA 90001" -146515,Macbook Pro Laptop,1,1700,01/07/19 21:32,"893 Main St, Boston, MA 02215" -146516,Apple Airpods Headphones,1,150,01/14/19 15:24,"827 Lake St, New York City, NY 10001" -146517,Wired Headphones,1,11.99,01/08/19 21:41,"726 Lake St, Seattle, WA 98101" -146518,USB-C Charging Cable,2,11.95,01/10/19 18:44,"599 Main St, San Francisco, CA 94016" -146519,Apple Airpods Headphones,1,150,01/16/19 14:24,"392 2nd St, Boston, MA 02215" -146520,AA Batteries (4-pack),1,3.84,01/22/19 16:54,"64 Cedar St, San Francisco, CA 94016" -146521,AA Batteries (4-pack),1,3.84,01/02/19 14:17,"756 Jackson St, Seattle, WA 98101" -146522,Apple Airpods Headphones,1,150,01/24/19 06:41,"598 6th St, San Francisco, CA 94016" -146523,Apple Airpods Headphones,1,150,01/23/19 14:10,"858 12th St, Los Angeles, CA 90001" -146523,Flatscreen TV,1,300,01/23/19 14:10,"858 12th St, Los Angeles, CA 90001" -146524,Apple Airpods Headphones,1,150,01/27/19 13:34,"173 Hill St, Boston, MA 02215" -146525,Macbook Pro Laptop,1,1700,01/26/19 21:49,"238 Hill St, Los Angeles, CA 90001" -146526,34in Ultrawide Monitor,1,379.99,01/12/19 17:15,"375 8th St, Portland, OR 97035" -146527,AAA Batteries (4-pack),1,2.99,01/15/19 18:55,"358 Hill St, Los Angeles, CA 90001" -146528,27in FHD Monitor,1,149.99,01/03/19 11:26,"952 Forest St, Atlanta, GA 30301" -146529,AAA Batteries (4-pack),1,2.99,01/06/19 17:49,"198 6th St, San Francisco, CA 94016" -146530,Google Phone,1,600,01/25/19 20:35,"801 Washington St, Atlanta, GA 30301" -146530,USB-C Charging Cable,1,11.95,01/25/19 20:35,"801 Washington St, Atlanta, GA 30301" -,,,,, -146531,Macbook Pro Laptop,1,1700,01/09/19 10:11,"432 Ridge St, Boston, MA 02215" -146532,Apple Airpods Headphones,1,150,01/28/19 03:06,"871 4th St, New York City, NY 10001" -146533,Apple Airpods Headphones,1,150,01/13/19 14:28,"780 10th St, Atlanta, GA 30301" -146534,Macbook Pro Laptop,1,1700,01/28/19 22:05,"268 Main St, San Francisco, CA 94016" -146535,20in Monitor,1,109.99,01/04/19 21:36,"690 5th St, San Francisco, CA 94016" -146536,AAA Batteries (4-pack),3,2.99,01/07/19 17:53,"955 Park St, Boston, MA 02215" -146537,27in FHD Monitor,1,149.99,01/14/19 07:45,"992 Meadow St, Los Angeles, CA 90001" -146538,AAA Batteries (4-pack),1,2.99,01/04/19 20:05,"6 Hill St, Atlanta, GA 30301" -146539,Lightning Charging Cable,1,14.95,01/25/19 18:21,"374 Cherry St, Portland, ME 04101" -146540,AA Batteries (4-pack),1,3.84,01/30/19 19:27,"807 7th St, Atlanta, GA 30301" -146541,AA Batteries (4-pack),1,3.84,01/29/19 15:55,"806 10th St, Boston, MA 02215" -146542,AA Batteries (4-pack),1,3.84,01/20/19 20:07,"15 Ridge St, San Francisco, CA 94016" -146543,Wired Headphones,1,11.99,01/11/19 13:15,"598 1st St, New York City, NY 10001" -146544,27in FHD Monitor,1,149.99,01/09/19 20:58,"287 Lincoln St, Austin, TX 73301" -146545,AA Batteries (4-pack),1,3.84,01/09/19 09:40,"478 Adams St, Seattle, WA 98101" -146546,Lightning Charging Cable,1,14.95,01/19/19 19:36,"597 Madison St, Dallas, TX 75001" -146547,USB-C Charging Cable,1,11.95,01/07/19 16:42,"368 Jefferson St, Dallas, TX 75001" -146548,AAA Batteries (4-pack),1,2.99,01/21/19 19:37,"967 South St, San Francisco, CA 94016" -146549,AA Batteries (4-pack),1,3.84,01/01/19 11:21,"165 Spruce St, San Francisco, CA 94016" -146550,20in Monitor,1,109.99,01/04/19 11:26,"390 Maple St, Boston, MA 02215" -146551,USB-C Charging Cable,1,11.95,01/15/19 17:14,"979 Pine St, San Francisco, CA 94016" -146552,Apple Airpods Headphones,1,150,01/04/19 00:05,"485 Hickory St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -146553,ThinkPad Laptop,1,999.99,01/20/19 14:44,"814 Pine St, New York City, NY 10001" -146554,Lightning Charging Cable,1,14.95,01/11/19 14:25,"219 Wilson St, Portland, OR 97035" -146555,34in Ultrawide Monitor,1,379.99,01/21/19 12:46,"440 Lakeview St, Boston, MA 02215" -146556,AAA Batteries (4-pack),3,2.99,01/08/19 14:20,"698 North St, Austin, TX 73301" -146557,iPhone,1,700,01/28/19 14:56,"551 North St, Seattle, WA 98101" -146558,AA Batteries (4-pack),1,3.84,01/11/19 22:08,"401 Jackson St, Boston, MA 02215" -146559,Vareebadd Phone,1,400,01/20/19 16:42,"601 Wilson St, Portland, OR 97035" -146560,Apple Airpods Headphones,1,150,01/08/19 01:05,"652 Madison St, Los Angeles, CA 90001" -146561,Lightning Charging Cable,1,14.95,01/28/19 15:04,"504 Lincoln St, Seattle, WA 98101" -146562,20in Monitor,1,109.99,01/23/19 19:08,"115 Cherry St, San Francisco, CA 94016" -146563,AAA Batteries (4-pack),1,2.99,01/06/19 23:47,"843 Chestnut St, Austin, TX 73301" -146564,USB-C Charging Cable,1,11.95,01/02/19 01:22,"492 12th St, Boston, MA 02215" -146565,Wired Headphones,1,11.99,01/20/19 19:49,"803 9th St, Seattle, WA 98101" -,,,,, -146566,Wired Headphones,1,11.99,01/08/19 17:01,"356 8th St, San Francisco, CA 94016" -146567,Vareebadd Phone,1,400,01/28/19 19:28,"63 Sunset St, Seattle, WA 98101" -146568,AA Batteries (4-pack),1,3.84,01/26/19 08:55,"88 Adams St, New York City, NY 10001" -146569,AAA Batteries (4-pack),1,2.99,01/12/19 21:34,"984 Chestnut St, San Francisco, CA 94016" -146570,AAA Batteries (4-pack),1,2.99,01/13/19 10:33,"996 Sunset St, San Francisco, CA 94016" -146571,Lightning Charging Cable,1,14.95,01/28/19 10:46,"352 Meadow St, Dallas, TX 75001" -146572,Wired Headphones,1,11.99,01/14/19 21:29,"527 11th St, Los Angeles, CA 90001" -146573,USB-C Charging Cable,2,11.95,01/03/19 18:57,"740 Lake St, Portland, ME 04101" -146574,Lightning Charging Cable,2,14.95,01/17/19 18:38,"348 Sunset St, Boston, MA 02215" -146575,20in Monitor,1,109.99,01/03/19 21:49,"677 7th St, Dallas, TX 75001" -146576,AA Batteries (4-pack),1,3.84,01/16/19 09:02,"309 Lake St, San Francisco, CA 94016" -146577,Lightning Charging Cable,1,14.95,01/23/19 09:50,"118 Cedar St, Atlanta, GA 30301" -146578,ThinkPad Laptop,1,999.99,01/05/19 17:13,"248 Wilson St, Atlanta, GA 30301" -146579,AA Batteries (4-pack),2,3.84,01/24/19 16:35,"487 1st St, New York City, NY 10001" -146580,Macbook Pro Laptop,1,1700,01/04/19 01:10,"639 Church St, Los Angeles, CA 90001" -146581,34in Ultrawide Monitor,1,379.99,01/24/19 12:08,"582 Church St, Los Angeles, CA 90001" -146582,27in 4K Gaming Monitor,1,389.99,01/10/19 21:48,"147 Maple St, Los Angeles, CA 90001" -146583,USB-C Charging Cable,1,11.95,01/07/19 16:02,"21 Willow St, Los Angeles, CA 90001" -146584,AAA Batteries (4-pack),1,2.99,01/02/19 19:37,"453 Highland St, Austin, TX 73301" -146585,AA Batteries (4-pack),1,3.84,01/04/19 16:49,"523 Spruce St, Los Angeles, CA 90001" -146586,Google Phone,1,600,01/24/19 23:48,"818 14th St, New York City, NY 10001" -146587,27in FHD Monitor,1,149.99,01/27/19 23:20,"484 11th St, Boston, MA 02215" -146588,AA Batteries (4-pack),1,3.84,01/04/19 19:47,"394 Cedar St, San Francisco, CA 94016" -146589,Wired Headphones,1,11.99,01/26/19 11:34,"317 Washington St, New York City, NY 10001" -146590,AA Batteries (4-pack),3,3.84,01/01/19 12:09,"317 Walnut St, New York City, NY 10001" -146591,Apple Airpods Headphones,1,150,01/03/19 20:12,"917 Chestnut St, Atlanta, GA 30301" -146592,AA Batteries (4-pack),2,3.84,01/17/19 01:30,"631 River St, San Francisco, CA 94016" -146593,Flatscreen TV,1,300,01/26/19 19:24,"837 Church St, San Francisco, CA 94016" -146594,AAA Batteries (4-pack),1,2.99,01/20/19 07:50,"113 Sunset St, New York City, NY 10001" -146595,Lightning Charging Cable,1,14.95,01/31/19 13:25,"419 Park St, New York City, NY 10001" -146596,ThinkPad Laptop,1,999.99,01/03/19 21:50,"844 Maple St, San Francisco, CA 94016" -146597,USB-C Charging Cable,1,11.95,01/14/19 09:35,"655 Church St, Seattle, WA 98101" -146598,Flatscreen TV,1,300,01/11/19 09:13,"892 12th St, Atlanta, GA 30301" -146599,AAA Batteries (4-pack),1,2.99,01/09/19 15:10,"420 Cedar St, Los Angeles, CA 90001" -146600,27in FHD Monitor,1,149.99,01/16/19 15:41,"333 Park St, Austin, TX 73301" -146601,USB-C Charging Cable,1,11.95,01/22/19 11:26,"642 Hill St, San Francisco, CA 94016" -146602,Apple Airpods Headphones,1,150,01/17/19 14:15,"838 Lakeview St, Seattle, WA 98101" -146603,Lightning Charging Cable,1,14.95,01/12/19 11:41,"676 Jefferson St, Los Angeles, CA 90001" -146604,Wired Headphones,1,11.99,01/13/19 14:28,"725 Johnson St, Seattle, WA 98101" -146605,USB-C Charging Cable,1,11.95,01/22/19 11:24,"495 Adams St, New York City, NY 10001" -146606,AAA Batteries (4-pack),1,2.99,01/16/19 15:16,"678 2nd St, Dallas, TX 75001" -146607,Apple Airpods Headphones,1,150,01/09/19 22:39,"502 Jefferson St, Seattle, WA 98101" -146608,27in 4K Gaming Monitor,1,389.99,01/25/19 11:27,"844 12th St, New York City, NY 10001" -146609,27in FHD Monitor,1,149.99,01/31/19 11:37,"32 Chestnut St, New York City, NY 10001" -146610,AA Batteries (4-pack),1,3.84,01/10/19 18:59,"917 Main St, New York City, NY 10001" -146611,Bose SoundSport Headphones,1,99.99,01/16/19 12:55,"985 Highland St, Seattle, WA 98101" -146612,AAA Batteries (4-pack),2,2.99,01/02/19 23:58,"637 5th St, New York City, NY 10001" -146613,USB-C Charging Cable,1,11.95,01/31/19 13:04,"657 Forest St, Austin, TX 73301" -146614,27in FHD Monitor,1,149.99,01/22/19 05:07,"429 Cherry St, Seattle, WA 98101" -146615,Lightning Charging Cable,1,14.95,01/23/19 19:33,"216 Main St, Los Angeles, CA 90001" -146616,Macbook Pro Laptop,1,1700,01/29/19 11:10,"227 7th St, Los Angeles, CA 90001" -146617,AAA Batteries (4-pack),1,2.99,01/05/19 16:03,"805 North St, Dallas, TX 75001" -146618,AA Batteries (4-pack),2,3.84,01/23/19 15:38,"550 Jackson St, New York City, NY 10001" -146619,Lightning Charging Cable,1,14.95,01/22/19 16:55,"491 Washington St, Seattle, WA 98101" -146620,AAA Batteries (4-pack),2,2.99,01/08/19 22:00,"916 10th St, Los Angeles, CA 90001" -146621,AA Batteries (4-pack),1,3.84,01/26/19 13:10,"46 12th St, San Francisco, CA 94016" -146622,34in Ultrawide Monitor,1,379.99,01/17/19 00:31,"412 Madison St, New York City, NY 10001" -146623,34in Ultrawide Monitor,1,379.99,01/18/19 22:56,"75 Lakeview St, Portland, OR 97035" -146624,USB-C Charging Cable,1,11.95,01/07/19 19:21,"477 Hickory St, New York City, NY 10001" -146625,Vareebadd Phone,1,400,01/12/19 10:16,"94 Meadow St, New York City, NY 10001" -146626,Macbook Pro Laptop,1,1700,01/16/19 23:56,"273 9th St, San Francisco, CA 94016" -146627,AAA Batteries (4-pack),1,2.99,01/21/19 21:02,"401 Pine St, Los Angeles, CA 90001" -146628,27in 4K Gaming Monitor,1,389.99,01/26/19 16:30,"886 Wilson St, Seattle, WA 98101" -146629,Bose SoundSport Headphones,1,99.99,01/25/19 13:19,"88 Willow St, Seattle, WA 98101" -146630,AA Batteries (4-pack),2,3.84,01/30/19 21:22,"496 Hill St, New York City, NY 10001" -146631,Apple Airpods Headphones,1,150,01/28/19 11:14,"885 South St, San Francisco, CA 94016" -146632,AA Batteries (4-pack),1,3.84,01/06/19 13:55,"70 Jefferson St, Atlanta, GA 30301" -146633,Lightning Charging Cable,1,14.95,01/30/19 18:51,"63 Washington St, Seattle, WA 98101" -146634,USB-C Charging Cable,1,11.95,01/24/19 21:16,"773 Center St, New York City, NY 10001" -146635,Lightning Charging Cable,1,14.95,01/05/19 22:21,"35 1st St, Los Angeles, CA 90001" -146636,USB-C Charging Cable,1,11.95,01/04/19 23:28,"252 Jackson St, Boston, MA 02215" -146637,iPhone,1,700,01/23/19 19:36,"801 Jefferson St, Atlanta, GA 30301" -146638,Lightning Charging Cable,1,14.95,01/28/19 20:22,"635 Jefferson St, Portland, OR 97035" -146638,Apple Airpods Headphones,1,150,01/28/19 20:22,"635 Jefferson St, Portland, OR 97035" -146639,Lightning Charging Cable,1,14.95,01/13/19 11:45,"224 North St, San Francisco, CA 94016" -146640,AA Batteries (4-pack),1,3.84,01/19/19 13:06,"284 Church St, Dallas, TX 75001" -146641,Apple Airpods Headphones,1,150,01/10/19 11:51,"457 South St, Boston, MA 02215" -146642,27in FHD Monitor,1,149.99,01/15/19 10:40,"991 1st St, San Francisco, CA 94016" -146643,Lightning Charging Cable,2,14.95,01/26/19 11:50,"569 Willow St, Atlanta, GA 30301" -146644,AA Batteries (4-pack),1,3.84,01/25/19 13:10,"815 Adams St, New York City, NY 10001" -146645,Lightning Charging Cable,1,14.95,01/25/19 17:36,"176 7th St, Dallas, TX 75001" -146646,AAA Batteries (4-pack),1,2.99,01/03/19 15:49,"605 Lincoln St, San Francisco, CA 94016" -146647,20in Monitor,1,109.99,01/03/19 11:40,"862 Washington St, Dallas, TX 75001" -146648,Apple Airpods Headphones,1,150,01/30/19 21:58,"948 Main St, Atlanta, GA 30301" -146649,Apple Airpods Headphones,1,150,01/16/19 18:42,"579 Dogwood St, San Francisco, CA 94016" -146650,iPhone,1,700,01/23/19 10:31,"216 Jackson St, Boston, MA 02215" -146651,Wired Headphones,1,11.99,01/08/19 19:15,"78 Hickory St, Dallas, TX 75001" -146652,AAA Batteries (4-pack),1,2.99,01/31/19 21:21,"579 North St, New York City, NY 10001" -146653,Wired Headphones,1,11.99,01/12/19 18:25,"979 9th St, Atlanta, GA 30301" -146654,USB-C Charging Cable,1,11.95,01/06/19 22:59,"846 Walnut St, San Francisco, CA 94016" -146655,27in FHD Monitor,1,149.99,01/26/19 10:28,"887 5th St, New York City, NY 10001" -146656,AAA Batteries (4-pack),2,2.99,01/25/19 09:38,"881 Elm St, Seattle, WA 98101" -146657,27in FHD Monitor,1,149.99,01/18/19 17:57,"912 Hickory St, San Francisco, CA 94016" -146658,Wired Headphones,1,11.99,01/25/19 18:26,"383 1st St, Atlanta, GA 30301" -146659,Wired Headphones,1,11.99,01/23/19 17:59,"24 Elm St, Portland, OR 97035" -146660,AA Batteries (4-pack),1,3.84,01/07/19 19:48,"457 4th St, Los Angeles, CA 90001" -146661,Lightning Charging Cable,1,14.95,01/18/19 18:04,"587 10th St, Los Angeles, CA 90001" -146662,AA Batteries (4-pack),1,3.84,01/12/19 00:39,"546 10th St, Dallas, TX 75001" -146663,34in Ultrawide Monitor,1,379.99,01/31/19 10:53,"634 9th St, Seattle, WA 98101" -146664,USB-C Charging Cable,1,11.95,01/28/19 19:23,"917 Meadow St, San Francisco, CA 94016" -146665,20in Monitor,1,109.99,01/22/19 13:24,"143 Cherry St, Austin, TX 73301" -146666,Macbook Pro Laptop,1,1700,01/28/19 00:34,"341 Highland St, Portland, OR 97035" -146667,34in Ultrawide Monitor,1,379.99,01/25/19 20:34,"672 Meadow St, New York City, NY 10001" -146668,Bose SoundSport Headphones,1,99.99,01/21/19 23:28,"70 11th St, Los Angeles, CA 90001" -146669,Wired Headphones,1,11.99,01/26/19 19:11,"753 Maple St, Los Angeles, CA 90001" -146670,USB-C Charging Cable,1,11.95,01/07/19 12:15,"456 Elm St, Los Angeles, CA 90001" -146671,Google Phone,1,600,01/14/19 12:56,"399 Church St, Seattle, WA 98101" -146672,27in FHD Monitor,1,149.99,01/02/19 16:26,"300 Willow St, Boston, MA 02215" -146673,Lightning Charging Cable,1,14.95,01/21/19 11:48,"874 Dogwood St, Los Angeles, CA 90001" -146674,Apple Airpods Headphones,1,150,01/04/19 07:29,"35 Highland St, Atlanta, GA 30301" -146675,Apple Airpods Headphones,1,150,01/03/19 13:12,"258 Pine St, Austin, TX 73301" -146676,Lightning Charging Cable,1,14.95,01/16/19 16:43,"365 Park St, Seattle, WA 98101" -146677,Apple Airpods Headphones,1,150,01/16/19 09:57,"721 Wilson St, Portland, OR 97035" -146678,USB-C Charging Cable,2,11.95,01/03/19 23:55,"246 12th St, Los Angeles, CA 90001" -146679,USB-C Charging Cable,1,11.95,01/29/19 21:19,"356 1st St, Los Angeles, CA 90001" -146680,Bose SoundSport Headphones,1,99.99,01/16/19 02:11,"97 11th St, San Francisco, CA 94016" -146681,AA Batteries (4-pack),1,3.84,01/07/19 20:13,"40 Center St, Dallas, TX 75001" -146682,AA Batteries (4-pack),1,3.84,01/29/19 20:32,"877 Spruce St, San Francisco, CA 94016" -146683,Bose SoundSport Headphones,1,99.99,01/22/19 01:34,"558 Walnut St, Los Angeles, CA 90001" -146684,AA Batteries (4-pack),1,3.84,01/31/19 20:56,"94 6th St, San Francisco, CA 94016" -146685,USB-C Charging Cable,1,11.95,01/20/19 12:00,"501 South St, Seattle, WA 98101" -146686,20in Monitor,1,109.99,01/11/19 10:42,"342 9th St, Los Angeles, CA 90001" -146687,AA Batteries (4-pack),1,3.84,01/08/19 00:53,"66 Church St, New York City, NY 10001" -146688,iPhone,1,700,01/14/19 20:40,"887 Hickory St, Los Angeles, CA 90001" -146689,20in Monitor,1,109.99,01/28/19 05:26,"589 Main St, Los Angeles, CA 90001" -146690,Google Phone,1,600,01/12/19 07:16,"827 West St, New York City, NY 10001" -146691,Flatscreen TV,1,300,01/16/19 20:30,"18 West St, Los Angeles, CA 90001" -146692,Google Phone,1,600,01/28/19 10:04,"37 2nd St, Seattle, WA 98101" -146693,USB-C Charging Cable,1,11.95,01/27/19 18:45,"527 Pine St, San Francisco, CA 94016" -146694,USB-C Charging Cable,1,11.95,01/20/19 15:06,"854 Cedar St, New York City, NY 10001" -146695,iPhone,1,700,01/09/19 19:31,"554 Lakeview St, Portland, ME 04101" -146696,34in Ultrawide Monitor,1,379.99,01/14/19 23:45,"420 2nd St, San Francisco, CA 94016" -146697,Lightning Charging Cable,1,14.95,01/16/19 18:26,"990 13th St, Atlanta, GA 30301" -146698,Bose SoundSport Headphones,1,99.99,01/20/19 09:41,"596 Center St, San Francisco, CA 94016" -146699,34in Ultrawide Monitor,1,379.99,01/18/19 21:13,"394 Chestnut St, San Francisco, CA 94016" -146700,USB-C Charging Cable,1,11.95,01/30/19 09:07,"316 Walnut St, New York City, NY 10001" -146701,iPhone,1,700,01/24/19 20:34,"625 Adams St, San Francisco, CA 94016" -146702,USB-C Charging Cable,1,11.95,01/13/19 15:44,"187 Forest St, Dallas, TX 75001" -146703,USB-C Charging Cable,2,11.95,01/01/19 18:31,"701 Washington St, Dallas, TX 75001" -146704,Lightning Charging Cable,2,14.95,01/13/19 17:26,"934 Lake St, Boston, MA 02215" -146705,Macbook Pro Laptop,1,1700,01/15/19 10:46,"196 14th St, Austin, TX 73301" -146706,Bose SoundSport Headphones,1,99.99,01/30/19 13:38,"242 14th St, Atlanta, GA 30301" -146707,Apple Airpods Headphones,1,150,01/15/19 10:44,"352 Hickory St, San Francisco, CA 94016" -146708,Macbook Pro Laptop,1,1700,01/24/19 14:02,"455 12th St, San Francisco, CA 94016" -146709,Google Phone,1,600,01/12/19 13:35,"111 Wilson St, New York City, NY 10001" -146710,AA Batteries (4-pack),1,3.84,01/11/19 09:11,"5 Lincoln St, San Francisco, CA 94016" -146711,Apple Airpods Headphones,1,150,01/19/19 18:35,"14 Hickory St, Los Angeles, CA 90001" -146712,Macbook Pro Laptop,1,1700,01/29/19 18:32,"475 Adams St, Austin, TX 73301" -146713,34in Ultrawide Monitor,1,379.99,01/14/19 09:34,"64 Main St, Seattle, WA 98101" -146714,AAA Batteries (4-pack),1,2.99,01/11/19 19:01,"745 Sunset St, San Francisco, CA 94016" -146714,Bose SoundSport Headphones,1,99.99,01/11/19 19:01,"745 Sunset St, San Francisco, CA 94016" -146715,Lightning Charging Cable,1,14.95,01/07/19 18:08,"549 5th St, Dallas, TX 75001" -146716,USB-C Charging Cable,1,11.95,01/11/19 19:32,"847 West St, Austin, TX 73301" -146717,Macbook Pro Laptop,1,1700,01/23/19 08:00,"657 Highland St, Atlanta, GA 30301" -146718,Apple Airpods Headphones,1,150,01/10/19 15:58,"502 12th St, New York City, NY 10001" -146719,Wired Headphones,1,11.99,01/04/19 23:58,"720 Lake St, Austin, TX 73301" -146720,Vareebadd Phone,1,400,01/18/19 10:19,"187 10th St, Los Angeles, CA 90001" -146721,USB-C Charging Cable,1,11.95,01/08/19 10:14,"995 Chestnut St, Dallas, TX 75001" -146722,Lightning Charging Cable,1,14.95,01/27/19 02:08,"550 1st St, Los Angeles, CA 90001" -146723,ThinkPad Laptop,1,999.99,01/14/19 22:42,"100 Sunset St, Atlanta, GA 30301" -146724,Macbook Pro Laptop,1,1700,01/11/19 07:45,"574 Church St, Los Angeles, CA 90001" -146725,Flatscreen TV,1,300,01/31/19 12:55,"927 West St, Los Angeles, CA 90001" -146726,AA Batteries (4-pack),1,3.84,01/29/19 13:33,"198 South St, Atlanta, GA 30301" -146727,AAA Batteries (4-pack),1,2.99,01/06/19 17:25,"191 Maple St, Atlanta, GA 30301" -146728,Lightning Charging Cable,1,14.95,01/09/19 11:08,"602 Wilson St, Dallas, TX 75001" -146729,Apple Airpods Headphones,1,150,01/16/19 20:42,"133 River St, Seattle, WA 98101" -146730,34in Ultrawide Monitor,1,379.99,01/31/19 16:53,"372 7th St, San Francisco, CA 94016" -146731,Bose SoundSport Headphones,1,99.99,01/10/19 22:07,"728 Lincoln St, Seattle, WA 98101" -146732,AAA Batteries (4-pack),1,2.99,01/08/19 16:21,"966 Hill St, Los Angeles, CA 90001" -146733,AA Batteries (4-pack),1,3.84,01/28/19 20:14,"2 10th St, Seattle, WA 98101" -146734,Apple Airpods Headphones,1,150,01/29/19 06:16,"633 Hickory St, San Francisco, CA 94016" -146735,Lightning Charging Cable,2,14.95,01/28/19 21:07,"903 5th St, Portland, OR 97035" -146736,USB-C Charging Cable,1,11.95,01/06/19 17:58,"256 Spruce St, Portland, OR 97035" -146737,USB-C Charging Cable,2,11.95,01/31/19 19:44,"352 Maple St, Seattle, WA 98101" -146738,27in FHD Monitor,1,149.99,01/18/19 15:06,"221 River St, Atlanta, GA 30301" -146739,AA Batteries (4-pack),1,3.84,01/07/19 13:15,"557 Park St, Atlanta, GA 30301" -146740,Google Phone,1,600,01/24/19 11:39,"734 Maple St, San Francisco, CA 94016" -146741,Lightning Charging Cable,1,14.95,01/12/19 20:57,"689 12th St, Dallas, TX 75001" -146742,AA Batteries (4-pack),1,3.84,01/03/19 12:25,"327 North St, Atlanta, GA 30301" -146743,iPhone,1,700,01/29/19 12:02,"911 8th St, New York City, NY 10001" -146744,Wired Headphones,1,11.99,01/10/19 06:33,"475 Ridge St, San Francisco, CA 94016" -146745,AA Batteries (4-pack),1,3.84,01/02/19 14:01,"158 11th St, New York City, NY 10001" -146746,Vareebadd Phone,1,400,01/07/19 15:52,"163 5th St, Los Angeles, CA 90001" -146747,Lightning Charging Cable,1,14.95,01/20/19 12:29,"70 8th St, Los Angeles, CA 90001" -146748,AA Batteries (4-pack),1,3.84,01/22/19 10:28,"277 West St, San Francisco, CA 94016" -146749,USB-C Charging Cable,1,11.95,01/02/19 15:55,"137 12th St, San Francisco, CA 94016" -146750,Wired Headphones,1,11.99,01/12/19 09:00,"584 Adams St, Dallas, TX 75001" -146751,Lightning Charging Cable,1,14.95,01/15/19 01:05,"57 6th St, San Francisco, CA 94016" -146752,USB-C Charging Cable,1,11.95,01/10/19 15:07,"386 Dogwood St, New York City, NY 10001" -146753,Bose SoundSport Headphones,1,99.99,01/13/19 14:20,"251 Ridge St, Atlanta, GA 30301" -146754,AA Batteries (4-pack),1,3.84,01/05/19 14:33,"49 Forest St, Los Angeles, CA 90001" -146755,USB-C Charging Cable,1,11.95,01/12/19 19:02,"256 Hill St, San Francisco, CA 94016" -146756,Apple Airpods Headphones,1,150,01/15/19 09:05,"347 Johnson St, San Francisco, CA 94016" -146757,34in Ultrawide Monitor,1,379.99,01/03/19 16:03,"374 Ridge St, Los Angeles, CA 90001" -146758,Google Phone,1,600,01/02/19 15:06,"576 Madison St, Los Angeles, CA 90001" -146758,USB-C Charging Cable,1,11.95,01/02/19 15:06,"576 Madison St, Los Angeles, CA 90001" -146759,ThinkPad Laptop,1,999.99,01/25/19 16:06,"971 13th St, Seattle, WA 98101" -146760,Wired Headphones,1,11.99,01/07/19 10:31,"349 Elm St, Los Angeles, CA 90001" -146761,Wired Headphones,1,11.99,01/20/19 11:40,"559 Forest St, San Francisco, CA 94016" -146762,Macbook Pro Laptop,1,1700,01/19/19 23:59,"135 Main St, San Francisco, CA 94016" -146763,AA Batteries (4-pack),2,3.84,01/03/19 11:56,"696 8th St, Los Angeles, CA 90001" -146764,AA Batteries (4-pack),1,3.84,01/15/19 13:42,"834 Park St, San Francisco, CA 94016" -146765,Google Phone,1,600,01/21/19 11:23,"918 Highland St, New York City, NY 10001" -146765,Google Phone,1,600,01/21/19 11:23,"918 Highland St, New York City, NY 10001" -146766,Apple Airpods Headphones,1,150,01/04/19 16:48,"62 1st St, Los Angeles, CA 90001" -146767,Macbook Pro Laptop,1,1700,01/22/19 07:25,"354 Main St, Dallas, TX 75001" -146768,Lightning Charging Cable,1,14.95,01/17/19 11:22,"901 Spruce St, Los Angeles, CA 90001" -146769,AAA Batteries (4-pack),1,2.99,01/17/19 17:27,"77 Walnut St, Boston, MA 02215" -146770,Bose SoundSport Headphones,1,99.99,01/11/19 13:12,"929 Dogwood St, Seattle, WA 98101" -146771,AAA Batteries (4-pack),2,2.99,01/07/19 21:37,"586 Lakeview St, San Francisco, CA 94016" -146772,20in Monitor,1,109.99,01/13/19 15:14,"108 Cherry St, San Francisco, CA 94016" -146773,AAA Batteries (4-pack),1,2.99,01/15/19 13:37,"132 12th St, Austin, TX 73301" -146774,Lightning Charging Cable,1,14.95,01/18/19 21:45,"563 Lincoln St, Atlanta, GA 30301" -146775,Lightning Charging Cable,1,14.95,01/01/19 17:40,"372 Elm St, San Francisco, CA 94016" -146776,AA Batteries (4-pack),1,3.84,01/30/19 00:04,"738 North St, Dallas, TX 75001" -146777,Bose SoundSport Headphones,1,99.99,01/29/19 17:12,"18 Main St, Portland, OR 97035" -146778,Apple Airpods Headphones,1,150,01/13/19 02:15,"454 Pine St, Austin, TX 73301" -146779,USB-C Charging Cable,1,11.95,01/07/19 09:59,"658 Jackson St, Seattle, WA 98101" -146780,iPhone,1,700,01/17/19 20:00,"891 Ridge St, Los Angeles, CA 90001" -146781,AAA Batteries (4-pack),1,2.99,01/23/19 10:27,"28 Jefferson St, Seattle, WA 98101" -146782,34in Ultrawide Monitor,1,379.99,01/08/19 20:25,"922 Willow St, Atlanta, GA 30301" -146783,Wired Headphones,1,11.99,01/26/19 13:07,"61 Adams St, San Francisco, CA 94016" -146784,USB-C Charging Cable,1,11.95,01/05/19 06:47,"172 Main St, Portland, OR 97035" -146785,AAA Batteries (4-pack),1,2.99,01/30/19 19:08,"115 Dogwood St, Los Angeles, CA 90001" -146786,20in Monitor,1,109.99,01/06/19 20:53,"209 Forest St, Seattle, WA 98101" -146787,Apple Airpods Headphones,1,150,01/16/19 10:08,"660 Lincoln St, San Francisco, CA 94016" -146788,USB-C Charging Cable,1,11.95,01/18/19 16:13,"369 13th St, New York City, NY 10001" -146789,Apple Airpods Headphones,1,150,01/15/19 10:24,"862 Hill St, Los Angeles, CA 90001" -146790,Lightning Charging Cable,1,14.95,01/15/19 15:49,"550 Dogwood St, Los Angeles, CA 90001" -146791,Macbook Pro Laptop,1,1700,01/03/19 12:45,"489 Church St, San Francisco, CA 94016" -146792,Google Phone,1,600,01/28/19 06:03,"92 Dogwood St, San Francisco, CA 94016" -146793,AAA Batteries (4-pack),1,2.99,01/10/19 17:28,"704 1st St, San Francisco, CA 94016" -146794,Apple Airpods Headphones,1,150,01/28/19 16:02,"915 Elm St, San Francisco, CA 94016" -146795,Wired Headphones,1,11.99,01/20/19 09:20,"886 Highland St, New York City, NY 10001" -146796,USB-C Charging Cable,1,11.95,01/23/19 05:43,"808 10th St, New York City, NY 10001" -146797,Wired Headphones,1,11.99,01/21/19 11:20,"323 Highland St, Los Angeles, CA 90001" -146798,Bose SoundSport Headphones,1,99.99,01/06/19 15:55,"133 Highland St, Boston, MA 02215" -146799,Wired Headphones,1,11.99,01/20/19 19:14,"351 Hill St, San Francisco, CA 94016" -146800,AA Batteries (4-pack),1,3.84,01/12/19 15:10,"229 West St, Portland, OR 97035" -146801,USB-C Charging Cable,2,11.95,01/11/19 13:44,"217 South St, San Francisco, CA 94016" -146802,Bose SoundSport Headphones,1,99.99,01/10/19 19:57,"208 Johnson St, Atlanta, GA 30301" -146803,AAA Batteries (4-pack),1,2.99,01/16/19 13:25,"932 Wilson St, New York City, NY 10001" -146804,27in FHD Monitor,1,149.99,01/04/19 09:30,"755 Johnson St, New York City, NY 10001" -146805,USB-C Charging Cable,1,11.95,01/26/19 01:39,"115 Ridge St, Boston, MA 02215" -146806,34in Ultrawide Monitor,1,379.99,01/25/19 08:22,"698 12th St, San Francisco, CA 94016" -146807,ThinkPad Laptop,1,999.99,01/15/19 20:11,"198 11th St, Dallas, TX 75001" -146808,AA Batteries (4-pack),1,3.84,01/18/19 20:18,"447 Church St, San Francisco, CA 94016" -146809,USB-C Charging Cable,1,11.95,01/23/19 12:51,"359 North St, Los Angeles, CA 90001" -146810,Lightning Charging Cable,1,14.95,01/31/19 19:49,"866 Sunset St, Boston, MA 02215" -146811,Lightning Charging Cable,1,14.95,01/22/19 00:42,"486 Jackson St, Atlanta, GA 30301" -146812,ThinkPad Laptop,1,999.99,01/16/19 08:20,"97 Pine St, Atlanta, GA 30301" -146813,AA Batteries (4-pack),2,3.84,01/24/19 10:21,"411 10th St, Austin, TX 73301" -146814,AAA Batteries (4-pack),2,2.99,01/13/19 22:12,"797 Dogwood St, Dallas, TX 75001" -146815,Flatscreen TV,1,300,01/29/19 20:11,"773 Hickory St, Seattle, WA 98101" -146816,Google Phone,1,600,01/18/19 20:06,"672 Meadow St, Los Angeles, CA 90001" -146816,Wired Headphones,1,11.99,01/18/19 20:06,"672 Meadow St, Los Angeles, CA 90001" -146817,USB-C Charging Cable,1,11.95,01/09/19 11:14,"660 Willow St, Boston, MA 02215" -146818,Wired Headphones,1,11.99,01/14/19 14:02,"275 Park St, Seattle, WA 98101" -146819,USB-C Charging Cable,1,11.95,01/20/19 14:33,"255 Elm St, Atlanta, GA 30301" -146820,USB-C Charging Cable,1,11.95,01/20/19 14:53,"641 Dogwood St, Los Angeles, CA 90001" -146821,Flatscreen TV,1,300,01/27/19 19:35,"572 4th St, San Francisco, CA 94016" -146822,Bose SoundSport Headphones,1,99.99,01/10/19 09:58,"605 5th St, Boston, MA 02215" -146823,USB-C Charging Cable,1,11.95,01/06/19 10:25,"541 Pine St, Los Angeles, CA 90001" -146824,AA Batteries (4-pack),1,3.84,01/17/19 18:32,"782 7th St, San Francisco, CA 94016" -146825,Vareebadd Phone,1,400,01/18/19 11:04,"956 14th St, Boston, MA 02215" -146826,AA Batteries (4-pack),1,3.84,01/19/19 13:35,"447 River St, Los Angeles, CA 90001" -146827,34in Ultrawide Monitor,1,379.99,01/06/19 15:23,"777 2nd St, San Francisco, CA 94016" -146828,Bose SoundSport Headphones,1,99.99,01/30/19 15:56,"713 Lakeview St, Los Angeles, CA 90001" -146829,AA Batteries (4-pack),1,3.84,01/04/19 19:30,"443 South St, Los Angeles, CA 90001" -146830,iPhone,1,700,01/28/19 00:25,"491 Forest St, San Francisco, CA 94016" -146831,27in 4K Gaming Monitor,1,389.99,01/27/19 23:06,"445 Cedar St, Portland, OR 97035" -146832,Apple Airpods Headphones,1,150,01/19/19 16:04,"95 Spruce St, Los Angeles, CA 90001" -146833,Apple Airpods Headphones,1,150,01/01/19 23:42,"119 11th St, Boston, MA 02215" -146834,Google Phone,1,600,01/30/19 15:47,"128 Main St, Austin, TX 73301" -146834,Wired Headphones,1,11.99,01/30/19 15:47,"128 Main St, Austin, TX 73301" -146835,Wired Headphones,1,11.99,01/22/19 15:19,"932 Lake St, New York City, NY 10001" -146836,ThinkPad Laptop,1,999.99,01/21/19 22:23,"871 Adams St, Atlanta, GA 30301" -146837,ThinkPad Laptop,1,999.99,01/15/19 09:20,"2 9th St, Atlanta, GA 30301" -146838,AAA Batteries (4-pack),3,2.99,01/02/19 11:30,"877 Lincoln St, Austin, TX 73301" -146839,Wired Headphones,1,11.99,01/10/19 12:19,"439 Hickory St, New York City, NY 10001" -146840,USB-C Charging Cable,1,11.95,01/03/19 12:36,"681 Adams St, Portland, OR 97035" -146841,Wired Headphones,1,11.99,01/05/19 11:28,"512 8th St, Portland, ME 04101" -146842,Google Phone,1,600,01/11/19 08:51,"480 Meadow St, Los Angeles, CA 90001" -146843,Google Phone,1,600,01/27/19 12:26,"494 Hill St, Boston, MA 02215" -146844,Flatscreen TV,1,300,01/01/19 11:55,"593 Church St, New York City, NY 10001" -146845,USB-C Charging Cable,2,11.95,01/01/19 20:22,"414 Washington St, San Francisco, CA 94016" -146846,20in Monitor,1,109.99,01/17/19 19:13,"193 Forest St, New York City, NY 10001" -146847,Lightning Charging Cable,1,14.95,01/04/19 00:55,"39 11th St, San Francisco, CA 94016" -146848,USB-C Charging Cable,1,11.95,01/04/19 00:42,"354 Church St, Portland, ME 04101" -146849,USB-C Charging Cable,1,11.95,01/15/19 05:58,"302 Lake St, Los Angeles, CA 90001" -146850,Wired Headphones,1,11.99,01/13/19 15:02,"239 Hill St, Austin, TX 73301" -146851,AAA Batteries (4-pack),1,2.99,01/10/19 23:00,"383 Lakeview St, Los Angeles, CA 90001" -146852,AAA Batteries (4-pack),1,2.99,01/03/19 13:12,"288 Cherry St, New York City, NY 10001" -146853,AAA Batteries (4-pack),2,2.99,01/20/19 16:27,"672 Maple St, Dallas, TX 75001" -146854,34in Ultrawide Monitor,1,379.99,01/22/19 06:29,"149 6th St, New York City, NY 10001" -146855,Lightning Charging Cable,1,14.95,01/09/19 16:32,"162 Hickory St, Austin, TX 73301" -146855,Apple Airpods Headphones,1,150,01/09/19 16:32,"162 Hickory St, Austin, TX 73301" -146856,27in FHD Monitor,1,149.99,01/22/19 19:12,"936 7th St, Boston, MA 02215" -146857,Flatscreen TV,1,300,01/01/19 12:35,"312 Cherry St, Atlanta, GA 30301" -146858,27in FHD Monitor,1,149.99,01/26/19 19:24,"873 Jackson St, New York City, NY 10001" -146859,USB-C Charging Cable,1,11.95,01/09/19 14:00,"566 8th St, Los Angeles, CA 90001" -146860,Bose SoundSport Headphones,1,99.99,01/26/19 18:43,"831 Jefferson St, San Francisco, CA 94016" -146861,iPhone,1,700,01/26/19 12:32,"819 Dogwood St, Dallas, TX 75001" -146861,Apple Airpods Headphones,1,150,01/26/19 12:32,"819 Dogwood St, Dallas, TX 75001" -146862,AA Batteries (4-pack),2,3.84,01/22/19 17:40,"55 Church St, Los Angeles, CA 90001" -146863,Macbook Pro Laptop,1,1700,01/25/19 17:20,"864 Lakeview St, Atlanta, GA 30301" -146864,Lightning Charging Cable,1,14.95,01/27/19 12:57,"130 South St, New York City, NY 10001" -146865,Lightning Charging Cable,1,14.95,01/20/19 12:38,"396 6th St, Los Angeles, CA 90001" -146866,USB-C Charging Cable,1,11.95,01/21/19 01:01,"944 Chestnut St, Los Angeles, CA 90001" -146867,AA Batteries (4-pack),1,3.84,01/06/19 21:30,"618 Lake St, Atlanta, GA 30301" -146868,27in FHD Monitor,1,149.99,01/04/19 17:11,"618 Chestnut St, Portland, OR 97035" -146869,AA Batteries (4-pack),1,3.84,01/24/19 21:06,"454 Willow St, Atlanta, GA 30301" -146870,Wired Headphones,1,11.99,01/26/19 09:06,"977 Madison St, Austin, TX 73301" -146871,iPhone,1,700,01/14/19 15:52,"791 Ridge St, San Francisco, CA 94016" -146871,Apple Airpods Headphones,1,150,01/14/19 15:52,"791 Ridge St, San Francisco, CA 94016" -146872,iPhone,1,700,01/31/19 23:21,"470 Jefferson St, Los Angeles, CA 90001" -146872,Apple Airpods Headphones,1,150,01/31/19 23:21,"470 Jefferson St, Los Angeles, CA 90001" -146873,AAA Batteries (4-pack),1,2.99,01/28/19 21:13,"873 Jackson St, Portland, OR 97035" -146874,iPhone,1,700,01/27/19 11:04,"906 Ridge St, Dallas, TX 75001" -146875,AAA Batteries (4-pack),1,2.99,01/04/19 11:07,"599 Chestnut St, San Francisco, CA 94016" -146876,iPhone,1,700,01/16/19 12:01,"44 4th St, San Francisco, CA 94016" -146876,Apple Airpods Headphones,1,150,01/16/19 12:01,"44 4th St, San Francisco, CA 94016" -146877,34in Ultrawide Monitor,1,379.99,01/13/19 11:02,"978 10th St, Atlanta, GA 30301" -146878,Google Phone,1,600,01/24/19 15:21,"33 Sunset St, San Francisco, CA 94016" -146879,Flatscreen TV,1,300,01/28/19 08:03,"758 12th St, Portland, OR 97035" -146880,Flatscreen TV,1,300,01/11/19 21:04,"798 Park St, Atlanta, GA 30301" -146881,Flatscreen TV,1,300,01/21/19 14:48,"427 Lake St, Boston, MA 02215" -146882,20in Monitor,1,109.99,01/04/19 19:28,"131 Lake St, San Francisco, CA 94016" -146883,Apple Airpods Headphones,1,150,01/29/19 15:33,"742 13th St, San Francisco, CA 94016" -146884,Bose SoundSport Headphones,1,99.99,01/05/19 16:02,"759 Ridge St, Dallas, TX 75001" -146885,ThinkPad Laptop,1,999.99,01/31/19 00:28,"471 Lincoln St, San Francisco, CA 94016" -146886,Google Phone,1,600,01/19/19 12:02,"88 Wilson St, Dallas, TX 75001" -146887,Apple Airpods Headphones,1,150,01/11/19 10:12,"69 Chestnut St, San Francisco, CA 94016" -146888,AA Batteries (4-pack),1,3.84,01/24/19 15:58,"831 7th St, Seattle, WA 98101" -146889,Bose SoundSport Headphones,1,99.99,01/06/19 13:23,"482 5th St, Portland, OR 97035" -146890,USB-C Charging Cable,1,11.95,01/08/19 19:51,"93 6th St, San Francisco, CA 94016" -146891,Macbook Pro Laptop,1,1700,01/07/19 20:05,"137 Willow St, Boston, MA 02215" -146892,27in FHD Monitor,1,149.99,01/16/19 21:52,"170 Park St, Boston, MA 02215" -146893,USB-C Charging Cable,2,11.95,01/13/19 12:31,"424 Hill St, New York City, NY 10001" -146894,Google Phone,1,600,01/29/19 14:54,"595 Dogwood St, San Francisco, CA 94016" -146895,USB-C Charging Cable,3,11.95,01/25/19 20:31,"580 West St, San Francisco, CA 94016" -146896,34in Ultrawide Monitor,1,379.99,01/13/19 15:38,"667 North St, Portland, OR 97035" -146897,AA Batteries (4-pack),1,3.84,01/22/19 16:05,"550 6th St, Dallas, TX 75001" -146898,27in 4K Gaming Monitor,1,389.99,01/23/19 15:47,"317 5th St, Los Angeles, CA 90001" -146899,Macbook Pro Laptop,1,1700,01/01/19 11:31,"341 4th St, Los Angeles, CA 90001" -146900,Apple Airpods Headphones,1,150,01/10/19 16:23,"894 Jackson St, Portland, OR 97035" -146901,27in FHD Monitor,1,149.99,01/11/19 14:50,"53 8th St, San Francisco, CA 94016" -146902,27in 4K Gaming Monitor,1,389.99,01/17/19 12:45,"543 10th St, Atlanta, GA 30301" -146903,Bose SoundSport Headphones,1,99.99,01/12/19 00:20,"924 Chestnut St, Dallas, TX 75001" -146904,AA Batteries (4-pack),1,3.84,01/05/19 20:51,"955 5th St, Dallas, TX 75001" -146905,Wired Headphones,1,11.99,01/10/19 13:26,"340 Forest St, Los Angeles, CA 90001" -146906,AAA Batteries (4-pack),1,2.99,01/03/19 13:01,"652 Lincoln St, New York City, NY 10001" -146907,Lightning Charging Cable,1,14.95,01/10/19 21:03,"432 Cedar St, San Francisco, CA 94016" -146908,AAA Batteries (4-pack),1,2.99,01/01/19 18:09,"978 Meadow St, Los Angeles, CA 90001" -146909,AA Batteries (4-pack),1,3.84,01/17/19 18:20,"226 Pine St, Boston, MA 02215" -146910,Lightning Charging Cable,1,14.95,01/01/19 16:11,"175 Lake St, Seattle, WA 98101" -146911,USB-C Charging Cable,1,11.95,01/04/19 15:49,"81 Jackson St, Los Angeles, CA 90001" -146912,AA Batteries (4-pack),1,3.84,01/01/19 23:48,"817 10th St, San Francisco, CA 94016" -146913,Lightning Charging Cable,1,14.95,01/01/19 19:17,"24 Washington St, San Francisco, CA 94016" -146914,USB-C Charging Cable,2,11.95,01/27/19 11:53,"418 Adams St, New York City, NY 10001" -146915,Wired Headphones,1,11.99,01/01/19 21:23,"837 13th St, New York City, NY 10001" -146916,USB-C Charging Cable,1,11.95,01/26/19 12:17,"206 Pine St, New York City, NY 10001" -146917,27in 4K Gaming Monitor,1,389.99,01/30/19 16:38,"991 Highland St, Seattle, WA 98101" -146918,USB-C Charging Cable,1,11.95,01/15/19 15:51,"127 Hill St, San Francisco, CA 94016" -146919,27in 4K Gaming Monitor,1,389.99,01/11/19 14:09,"761 12th St, Austin, TX 73301" -146920,AA Batteries (4-pack),1,3.84,01/23/19 10:35,"662 Elm St, Los Angeles, CA 90001" -146921,Apple Airpods Headphones,1,150,01/10/19 06:04,"529 14th St, Dallas, TX 75001" -146922,USB-C Charging Cable,1,11.95,01/02/19 23:42,"841 Chestnut St, San Francisco, CA 94016" -146923,Wired Headphones,1,11.99,01/29/19 15:39,"768 10th St, Atlanta, GA 30301" -146924,Apple Airpods Headphones,1,150,01/06/19 18:49,"77 Dogwood St, San Francisco, CA 94016" -146925,Flatscreen TV,1,300,01/12/19 21:35,"459 South St, Boston, MA 02215" -146926,iPhone,1,700,01/30/19 15:47,"943 Park St, San Francisco, CA 94016" -146927,AAA Batteries (4-pack),1,2.99,01/19/19 17:30,"808 Willow St, Seattle, WA 98101" -146928,Lightning Charging Cable,1,14.95,01/10/19 12:57,"732 12th St, Seattle, WA 98101" -146929,Lightning Charging Cable,2,14.95,01/15/19 16:50,"12 Hill St, New York City, NY 10001" -146930,Wired Headphones,1,11.99,01/18/19 11:53,"273 Church St, Boston, MA 02215" -146931,Bose SoundSport Headphones,1,99.99,01/09/19 19:12,"884 6th St, Atlanta, GA 30301" -146932,AAA Batteries (4-pack),1,2.99,01/22/19 00:07,"941 12th St, New York City, NY 10001" -146933,Wired Headphones,1,11.99,01/02/19 15:21,"360 Ridge St, Boston, MA 02215" -146934,USB-C Charging Cable,2,11.95,01/17/19 12:48,"119 6th St, New York City, NY 10001" -146935,27in 4K Gaming Monitor,1,389.99,01/18/19 00:10,"93 Hill St, New York City, NY 10001" -146936,Lightning Charging Cable,1,14.95,01/05/19 11:36,"737 Maple St, Dallas, TX 75001" -146937,USB-C Charging Cable,1,11.95,01/22/19 19:10,"994 11th St, San Francisco, CA 94016" -146938,Wired Headphones,1,11.99,01/12/19 09:54,"459 Jackson St, Portland, OR 97035" -146939,Bose SoundSport Headphones,1,99.99,01/11/19 22:05,"324 Pine St, Dallas, TX 75001" -146940,20in Monitor,1,109.99,01/28/19 20:52,"867 2nd St, Dallas, TX 75001" -146941,Wired Headphones,1,11.99,01/17/19 13:45,"347 Jackson St, Atlanta, GA 30301" -146942,Apple Airpods Headphones,1,150,01/11/19 09:20,"406 10th St, San Francisco, CA 94016" -146943,Vareebadd Phone,1,400,01/21/19 11:03,"919 Cedar St, San Francisco, CA 94016" -146944,Google Phone,1,600,01/15/19 20:24,"568 Wilson St, Los Angeles, CA 90001" -146945,27in 4K Gaming Monitor,1,389.99,01/19/19 21:44,"489 Meadow St, San Francisco, CA 94016" -146946,iPhone,1,700,01/25/19 09:46,"425 14th St, San Francisco, CA 94016" -146946,Wired Headphones,1,11.99,01/25/19 09:46,"425 14th St, San Francisco, CA 94016" -146947,Wired Headphones,1,11.99,01/25/19 21:51,"852 Ridge St, New York City, NY 10001" -146948,AAA Batteries (4-pack),2,2.99,01/12/19 14:43,"404 Madison St, Atlanta, GA 30301" -146949,34in Ultrawide Monitor,1,379.99,01/13/19 22:31,"180 8th St, Boston, MA 02215" -146950,27in FHD Monitor,1,149.99,01/19/19 11:09,"146 Chestnut St, Austin, TX 73301" -146951,Google Phone,1,600,01/19/19 15:56,"969 Washington St, Austin, TX 73301" -146952,27in FHD Monitor,1,149.99,01/13/19 22:19,"801 Lake St, San Francisco, CA 94016" -146952,27in 4K Gaming Monitor,1,389.99,01/13/19 22:19,"801 Lake St, San Francisco, CA 94016" -146953,20in Monitor,1,109.99,01/12/19 12:47,"335 5th St, San Francisco, CA 94016" -146954,27in FHD Monitor,1,149.99,01/19/19 17:20,"97 Ridge St, Austin, TX 73301" -146955,AA Batteries (4-pack),1,3.84,01/01/19 18:51,"652 North St, Seattle, WA 98101" -146956,Apple Airpods Headphones,1,150,01/30/19 09:02,"268 Forest St, New York City, NY 10001" -146957,AAA Batteries (4-pack),2,2.99,01/21/19 11:30,"748 Highland St, Boston, MA 02215" -146958,Apple Airpods Headphones,1,150,01/22/19 16:44,"570 Maple St, San Francisco, CA 94016" -146959,Google Phone,1,600,01/04/19 10:33,"822 Cherry St, San Francisco, CA 94016" -146959,Wired Headphones,1,11.99,01/04/19 10:33,"822 Cherry St, San Francisco, CA 94016" -146960,Wired Headphones,1,11.99,01/18/19 18:17,"581 West St, Portland, OR 97035" -146961,Wired Headphones,1,11.99,01/22/19 10:49,"552 14th St, Los Angeles, CA 90001" -146962,34in Ultrawide Monitor,1,379.99,01/22/19 16:07,"482 11th St, Los Angeles, CA 90001" -146963,AAA Batteries (4-pack),1,2.99,01/19/19 13:50,"203 South St, San Francisco, CA 94016" -146964,34in Ultrawide Monitor,1,379.99,01/30/19 08:19,"883 1st St, New York City, NY 10001" -146965,USB-C Charging Cable,1,11.95,01/26/19 17:56,"491 12th St, Portland, OR 97035" -146966,AA Batteries (4-pack),1,3.84,01/08/19 21:12,"778 1st St, Atlanta, GA 30301" -146967,AA Batteries (4-pack),3,3.84,01/26/19 18:53,"398 River St, New York City, NY 10001" -146968,AA Batteries (4-pack),1,3.84,01/19/19 19:31,"379 Church St, Dallas, TX 75001" -146969,AA Batteries (4-pack),1,3.84,01/28/19 17:43,"202 Willow St, Dallas, TX 75001" -146970,ThinkPad Laptop,1,999.99,01/17/19 21:54,"464 Elm St, San Francisco, CA 94016" -146971,USB-C Charging Cable,1,11.95,01/14/19 08:50,"275 Lakeview St, Seattle, WA 98101" -146972,AA Batteries (4-pack),1,3.84,01/29/19 11:37,"560 Willow St, San Francisco, CA 94016" -146973,Wired Headphones,1,11.99,01/09/19 22:08,"163 6th St, San Francisco, CA 94016" -146974,Flatscreen TV,1,300,01/12/19 13:28,"311 Pine St, Portland, ME 04101" -146975,Bose SoundSport Headphones,1,99.99,01/08/19 21:31,"634 8th St, Los Angeles, CA 90001" -146975,Wired Headphones,1,11.99,01/08/19 21:31,"634 8th St, Los Angeles, CA 90001" -146976,Flatscreen TV,1,300,01/23/19 19:42,"532 Main St, Portland, OR 97035" -146977,Lightning Charging Cable,1,14.95,01/28/19 15:08,"448 Main St, Seattle, WA 98101" -146978,AA Batteries (4-pack),1,3.84,01/19/19 17:11,"294 2nd St, Seattle, WA 98101" -146979,USB-C Charging Cable,1,11.95,01/23/19 00:54,"101 Jackson St, Los Angeles, CA 90001" -146980,20in Monitor,1,109.99,01/26/19 13:55,"878 Wilson St, San Francisco, CA 94016" -146981,Wired Headphones,1,11.99,01/03/19 06:18,"397 Jackson St, Seattle, WA 98101" -146982,Google Phone,1,600,01/15/19 18:52,"730 Main St, San Francisco, CA 94016" -146982,USB-C Charging Cable,1,11.95,01/15/19 18:52,"730 Main St, San Francisco, CA 94016" -146983,USB-C Charging Cable,1,11.95,01/11/19 08:34,"432 Dogwood St, Dallas, TX 75001" -146984,Apple Airpods Headphones,1,150,01/21/19 08:44,"90 Sunset St, Dallas, TX 75001" -146985,AAA Batteries (4-pack),1,2.99,01/04/19 14:02,"388 Spruce St, Seattle, WA 98101" -146986,27in FHD Monitor,1,149.99,01/07/19 12:06,"847 Jackson St, Dallas, TX 75001" -146987,Google Phone,1,600,01/10/19 17:19,"968 14th St, Los Angeles, CA 90001" -146988,27in 4K Gaming Monitor,1,389.99,01/12/19 22:24,"122 Maple St, Los Angeles, CA 90001" -146989,USB-C Charging Cable,1,11.95,01/01/19 21:52,"793 Chestnut St, Los Angeles, CA 90001" -146990,iPhone,1,700,01/21/19 15:45,"314 9th St, Los Angeles, CA 90001" -146991,Wired Headphones,1,11.99,01/27/19 12:58,"999 8th St, Boston, MA 02215" -146992,Apple Airpods Headphones,1,150,01/12/19 14:58,"282 12th St, Boston, MA 02215" -146993,Bose SoundSport Headphones,1,99.99,01/29/19 23:13,"829 Church St, Dallas, TX 75001" -146994,USB-C Charging Cable,1,11.95,01/03/19 20:32,"848 9th St, Los Angeles, CA 90001" -146995,AA Batteries (4-pack),1,3.84,01/26/19 16:18,"833 Chestnut St, Boston, MA 02215" -146996,Wired Headphones,1,11.99,01/19/19 19:57,"898 Madison St, New York City, NY 10001" -146997,iPhone,1,700,01/23/19 18:03,"511 11th St, New York City, NY 10001" -,,,,, -146998,Wired Headphones,1,11.99,01/20/19 21:10,"739 1st St, San Francisco, CA 94016" -146999,AAA Batteries (4-pack),1,2.99,01/24/19 23:28,"482 Hickory St, Atlanta, GA 30301" -147000,USB-C Charging Cable,1,11.95,01/17/19 18:57,"373 Main St, Boston, MA 02215" -147001,Lightning Charging Cable,1,14.95,01/31/19 15:34,"999 Walnut St, San Francisco, CA 94016" -147002,34in Ultrawide Monitor,1,379.99,01/19/19 08:29,"353 Hill St, San Francisco, CA 94016" -147002,AA Batteries (4-pack),3,3.84,01/19/19 08:29,"353 Hill St, San Francisco, CA 94016" -147003,27in FHD Monitor,1,149.99,01/19/19 20:52,"155 Maple St, Los Angeles, CA 90001" -147004,Lightning Charging Cable,1,14.95,01/11/19 08:54,"166 6th St, San Francisco, CA 94016" -147005,USB-C Charging Cable,2,11.95,01/02/19 17:46,"475 Jackson St, Seattle, WA 98101" -147006,AAA Batteries (4-pack),1,2.99,01/10/19 11:59,"319 Lakeview St, San Francisco, CA 94016" -147007,LG Dryer,1,600.0,01/07/19 16:49,"555 Hickory St, Portland, OR 97035" -147008,AAA Batteries (4-pack),1,2.99,01/16/19 16:03,"559 Highland St, San Francisco, CA 94016" -147009,USB-C Charging Cable,1,11.95,01/08/19 20:00,"723 Ridge St, Portland, OR 97035" -147010,Wired Headphones,2,11.99,01/05/19 13:50,"209 Lincoln St, Los Angeles, CA 90001" -147011,Apple Airpods Headphones,1,150,01/12/19 01:21,"584 Maple St, New York City, NY 10001" -147012,Vareebadd Phone,1,400,01/23/19 00:48,"975 Lakeview St, San Francisco, CA 94016" -147013,AAA Batteries (4-pack),1,2.99,01/01/19 11:07,"766 11th St, Los Angeles, CA 90001" -147014,AAA Batteries (4-pack),2,2.99,01/15/19 20:48,"550 5th St, Portland, ME 04101" -147015,Vareebadd Phone,1,400,01/27/19 21:41,"410 Highland St, San Francisco, CA 94016" -147016,AAA Batteries (4-pack),1,2.99,01/25/19 16:26,"807 7th St, Dallas, TX 75001" -147017,Flatscreen TV,1,300,01/31/19 23:08,"615 Madison St, Atlanta, GA 30301" -147017,Wired Headphones,1,11.99,01/31/19 23:08,"615 Madison St, Atlanta, GA 30301" -147018,Wired Headphones,2,11.99,01/31/19 20:00,"691 Park St, New York City, NY 10001" -147019,Bose SoundSport Headphones,1,99.99,01/01/19 22:51,"560 Forest St, New York City, NY 10001" -147020,Flatscreen TV,1,300,01/22/19 21:41,"234 Ridge St, Atlanta, GA 30301" -147021,AAA Batteries (4-pack),1,2.99,01/22/19 09:19,"893 River St, New York City, NY 10001" -147022,Lightning Charging Cable,3,14.95,01/27/19 00:12,"540 North St, Los Angeles, CA 90001" -147023,Apple Airpods Headphones,1,150,01/21/19 19:34,"237 2nd St, New York City, NY 10001" -147024,27in 4K Gaming Monitor,1,389.99,01/05/19 20:44,"602 Cedar St, San Francisco, CA 94016" -147025,27in FHD Monitor,1,149.99,01/27/19 09:19,"535 Lakeview St, New York City, NY 10001" -147026,ThinkPad Laptop,1,999.99,01/04/19 13:04,"878 Center St, Los Angeles, CA 90001" -147027,Bose SoundSport Headphones,1,99.99,01/04/19 13:55,"140 Park St, Atlanta, GA 30301" -147028,ThinkPad Laptop,1,999.99,01/06/19 13:30,"300 Jackson St, San Francisco, CA 94016" -147029,Google Phone,1,600,01/10/19 17:03,"391 River St, Atlanta, GA 30301" -147030,Apple Airpods Headphones,1,150,01/14/19 05:29,"685 Ridge St, Los Angeles, CA 90001" -147031,27in FHD Monitor,1,149.99,01/22/19 17:24,"6 Pine St, San Francisco, CA 94016" -147031,AAA Batteries (4-pack),1,2.99,01/22/19 17:24,"6 Pine St, San Francisco, CA 94016" -147032,Wired Headphones,1,11.99,01/14/19 20:35,"611 Spruce St, Atlanta, GA 30301" -147032,Lightning Charging Cable,1,14.95,01/14/19 20:35,"611 Spruce St, Atlanta, GA 30301" -147033,USB-C Charging Cable,2,11.95,01/24/19 13:45,"122 Meadow St, Los Angeles, CA 90001" -147034,AAA Batteries (4-pack),2,2.99,01/09/19 00:17,"238 Dogwood St, Los Angeles, CA 90001" -147035,34in Ultrawide Monitor,1,379.99,01/21/19 22:15,"755 River St, Portland, OR 97035" -147036,Bose SoundSport Headphones,1,99.99,01/27/19 19:15,"366 South St, San Francisco, CA 94016" -147037,AA Batteries (4-pack),2,3.84,01/10/19 23:02,"221 Jackson St, New York City, NY 10001" -147038,AAA Batteries (4-pack),1,2.99,01/24/19 18:25,"164 Lake St, San Francisco, CA 94016" -147039,Lightning Charging Cable,1,14.95,01/13/19 20:52,"556 5th St, Atlanta, GA 30301" -147040,Lightning Charging Cable,1,14.95,01/30/19 22:24,"403 Sunset St, Dallas, TX 75001" -147041,USB-C Charging Cable,1,11.95,01/29/19 07:57,"928 Lake St, Atlanta, GA 30301" -147042,AAA Batteries (4-pack),1,2.99,01/22/19 09:31,"752 Forest St, Boston, MA 02215" -147043,Wired Headphones,1,11.99,01/28/19 06:56,"446 Madison St, New York City, NY 10001" -147044,20in Monitor,1,109.99,01/24/19 13:58,"500 Chestnut St, Dallas, TX 75001" -147045,Flatscreen TV,1,300,01/01/19 14:20,"300 9th St, New York City, NY 10001" -147046,AAA Batteries (4-pack),1,2.99,01/12/19 16:12,"269 Walnut St, San Francisco, CA 94016" -147047,AA Batteries (4-pack),1,3.84,01/07/19 14:01,"622 Hickory St, San Francisco, CA 94016" -147048,Lightning Charging Cable,1,14.95,01/18/19 14:12,"183 Lake St, New York City, NY 10001" -147049,Wired Headphones,1,11.99,01/24/19 08:37,"807 7th St, San Francisco, CA 94016" -147050,Bose SoundSport Headphones,1,99.99,01/17/19 11:28,"636 Elm St, Los Angeles, CA 90001" -147051,Bose SoundSport Headphones,1,99.99,01/30/19 14:32,"175 Chestnut St, Austin, TX 73301" -147052,Wired Headphones,1,11.99,01/07/19 15:30,"868 Cedar St, New York City, NY 10001" -147053,Bose SoundSport Headphones,1,99.99,01/02/19 09:54,"514 Cedar St, Portland, ME 04101" -147054,Apple Airpods Headphones,1,150,01/16/19 07:58,"685 Jackson St, Boston, MA 02215" -147055,Bose SoundSport Headphones,1,99.99,01/02/19 14:06,"770 5th St, San Francisco, CA 94016" -147056,LG Dryer,1,600.0,01/14/19 23:13,"588 Highland St, Atlanta, GA 30301" -147057,AAA Batteries (4-pack),1,2.99,01/27/19 17:37,"58 Pine St, San Francisco, CA 94016" -147058,Wired Headphones,1,11.99,01/27/19 00:48,"85 Forest St, New York City, NY 10001" -147059,AAA Batteries (4-pack),1,2.99,01/22/19 15:36,"442 Park St, Boston, MA 02215" -147060,Vareebadd Phone,1,400,01/13/19 07:02,"247 Chestnut St, San Francisco, CA 94016" -147061,27in 4K Gaming Monitor,1,389.99,01/10/19 18:44,"309 Ridge St, San Francisco, CA 94016" -147062,Lightning Charging Cable,1,14.95,01/24/19 17:28,"547 6th St, San Francisco, CA 94016" -147063,Flatscreen TV,1,300,01/26/19 21:28,"1 Highland St, Austin, TX 73301" -147064,USB-C Charging Cable,1,11.95,01/14/19 17:02,"190 Church St, Portland, OR 97035" -147065,Bose SoundSport Headphones,1,99.99,01/20/19 18:35,"833 12th St, Seattle, WA 98101" -147066,Wired Headphones,1,11.99,01/13/19 23:02,"937 Jackson St, Austin, TX 73301" -147067,AA Batteries (4-pack),1,3.84,01/23/19 17:10,"408 Park St, Portland, OR 97035" -147068,Lightning Charging Cable,1,14.95,01/30/19 19:53,"616 Cherry St, Los Angeles, CA 90001" -147069,Google Phone,1,600,01/18/19 18:50,"948 Wilson St, San Francisco, CA 94016" -147070,USB-C Charging Cable,1,11.95,01/10/19 09:23,"144 Forest St, Portland, OR 97035" -147071,Macbook Pro Laptop,1,1700,01/30/19 19:03,"241 River St, Los Angeles, CA 90001" -147072,Bose SoundSport Headphones,1,99.99,01/07/19 06:07,"181 Cherry St, New York City, NY 10001" -147073,Flatscreen TV,1,300,01/19/19 11:21,"789 8th St, New York City, NY 10001" -147074,USB-C Charging Cable,1,11.95,01/23/19 19:42,"308 Willow St, San Francisco, CA 94016" -147075,34in Ultrawide Monitor,1,379.99,01/11/19 11:45,"449 10th St, Los Angeles, CA 90001" -147076,AAA Batteries (4-pack),1,2.99,01/09/19 21:54,"241 10th St, Dallas, TX 75001" -147077,AAA Batteries (4-pack),1,2.99,01/19/19 00:18,"60 13th St, New York City, NY 10001" -147078,Bose SoundSport Headphones,1,99.99,01/13/19 16:19,"277 4th St, Los Angeles, CA 90001" -147079,Google Phone,1,600,01/29/19 11:06,"621 Wilson St, San Francisco, CA 94016" -147080,Macbook Pro Laptop,1,1700,01/25/19 10:10,"827 Lakeview St, Portland, OR 97035" -147081,Lightning Charging Cable,1,14.95,01/21/19 15:36,"209 14th St, New York City, NY 10001" -147082,Lightning Charging Cable,1,14.95,01/28/19 00:52,"583 North St, Seattle, WA 98101" -147083,iPhone,1,700,01/08/19 13:16,"593 Chestnut St, New York City, NY 10001" -147083,Apple Airpods Headphones,1,150,01/08/19 13:16,"593 Chestnut St, New York City, NY 10001" -147084,iPhone,1,700,01/16/19 11:44,"305 Spruce St, Boston, MA 02215" -147085,Macbook Pro Laptop,1,1700,01/23/19 07:44,"161 11th St, New York City, NY 10001" -147086,Lightning Charging Cable,1,14.95,01/28/19 13:36,"588 Lakeview St, Atlanta, GA 30301" -147087,USB-C Charging Cable,1,11.95,01/12/19 19:08,"56 Lake St, Dallas, TX 75001" -147088,Wired Headphones,1,11.99,01/28/19 18:14,"716 Ridge St, Los Angeles, CA 90001" -147089,Google Phone,1,600,01/28/19 11:19,"199 North St, Los Angeles, CA 90001" -147090,AA Batteries (4-pack),3,3.84,01/30/19 18:26,"885 North St, Los Angeles, CA 90001" -147091,Flatscreen TV,1,300,01/21/19 09:03,"225 Meadow St, San Francisco, CA 94016" -147092,Wired Headphones,2,11.99,01/08/19 12:53,"322 Pine St, Boston, MA 02215" -147093,USB-C Charging Cable,1,11.95,01/24/19 13:27,"608 Main St, Seattle, WA 98101" -147094,Flatscreen TV,1,300,01/05/19 00:58,"240 10th St, Los Angeles, CA 90001" -147095,AAA Batteries (4-pack),2,2.99,01/01/19 14:17,"31 Willow St, San Francisco, CA 94016" -147096,iPhone,1,700,01/25/19 21:28,"714 Washington St, San Francisco, CA 94016" -147096,Wired Headphones,1,11.99,01/25/19 21:28,"714 Washington St, San Francisco, CA 94016" -147097,Bose SoundSport Headphones,1,99.99,01/26/19 16:31,"873 Madison St, Los Angeles, CA 90001" -147098,Flatscreen TV,1,300,01/20/19 21:51,"909 South St, Boston, MA 02215" -147099,USB-C Charging Cable,1,11.95,01/27/19 09:44,"364 2nd St, Los Angeles, CA 90001" -147100,Apple Airpods Headphones,1,150,01/28/19 10:39,"192 Spruce St, New York City, NY 10001" -147101,Wired Headphones,3,11.99,01/26/19 10:08,"898 Center St, San Francisco, CA 94016" -147102,Lightning Charging Cable,1,14.95,01/01/19 16:59,"307 West St, Seattle, WA 98101" -147103,Lightning Charging Cable,1,14.95,01/28/19 06:41,"723 7th St, Dallas, TX 75001" -147104,34in Ultrawide Monitor,1,379.99,01/25/19 09:51,"456 Madison St, Los Angeles, CA 90001" -147105,ThinkPad Laptop,1,999.99,01/02/19 15:47,"745 Highland St, Los Angeles, CA 90001" -147106,AA Batteries (4-pack),2,3.84,01/28/19 17:20,"609 South St, San Francisco, CA 94016" -147107,Wired Headphones,1,11.99,01/19/19 21:51,"968 Hill St, New York City, NY 10001" -147108,AA Batteries (4-pack),2,3.84,01/31/19 15:39,"391 Willow St, Dallas, TX 75001" -147109,Apple Airpods Headphones,1,150,01/11/19 11:21,"481 Dogwood St, San Francisco, CA 94016" -147110,iPhone,1,700,01/03/19 19:50,"184 8th St, Portland, OR 97035" -147111,Wired Headphones,1,11.99,01/05/19 21:40,"182 Lake St, San Francisco, CA 94016" -147112,27in 4K Gaming Monitor,1,389.99,01/31/19 16:43,"111 Church St, San Francisco, CA 94016" -147113,34in Ultrawide Monitor,1,379.99,01/11/19 18:10,"474 Main St, Dallas, TX 75001" -147114,iPhone,1,700,01/07/19 22:29,"825 12th St, Atlanta, GA 30301" -147114,Lightning Charging Cable,1,14.95,01/07/19 22:29,"825 12th St, Atlanta, GA 30301" -147115,Apple Airpods Headphones,1,150,01/05/19 15:17,"254 Jackson St, New York City, NY 10001" -147116,Lightning Charging Cable,1,14.95,01/26/19 15:53,"641 South St, San Francisco, CA 94016" -147117,Lightning Charging Cable,1,14.95,01/28/19 13:21,"360 Elm St, Boston, MA 02215" -147118,USB-C Charging Cable,2,11.95,01/27/19 09:36,"189 Jefferson St, Portland, OR 97035" -147119,Lightning Charging Cable,1,14.95,01/25/19 08:28,"756 9th St, Atlanta, GA 30301" -147120,AAA Batteries (4-pack),1,2.99,01/27/19 21:51,"406 Chestnut St, Dallas, TX 75001" -147121,Lightning Charging Cable,1,14.95,01/20/19 13:48,"369 Hill St, San Francisco, CA 94016" -147122,Apple Airpods Headphones,1,150,01/28/19 16:30,"973 Walnut St, Austin, TX 73301" -147123,Apple Airpods Headphones,1,150,01/22/19 11:29,"735 Meadow St, Boston, MA 02215" -147124,USB-C Charging Cable,1,11.95,01/10/19 20:10,"859 Jefferson St, Boston, MA 02215" -147125,Lightning Charging Cable,1,14.95,01/28/19 10:48,"737 2nd St, Los Angeles, CA 90001" -147126,AAA Batteries (4-pack),2,2.99,01/15/19 15:02,"736 11th St, San Francisco, CA 94016" -147127,USB-C Charging Cable,1,11.95,01/14/19 13:04,"626 Spruce St, Los Angeles, CA 90001" -147128,Google Phone,1,600,01/21/19 16:03,"488 Jackson St, New York City, NY 10001" -147128,Wired Headphones,1,11.99,01/21/19 16:03,"488 Jackson St, New York City, NY 10001" -147129,Lightning Charging Cable,1,14.95,01/20/19 18:31,"503 Main St, San Francisco, CA 94016" -147130,27in FHD Monitor,1,149.99,01/30/19 21:26,"656 Highland St, Los Angeles, CA 90001" -147131,Google Phone,1,600,01/12/19 10:00,"693 Wilson St, Boston, MA 02215" -147131,Wired Headphones,1,11.99,01/12/19 10:00,"693 Wilson St, Boston, MA 02215" -147132,AA Batteries (4-pack),2,3.84,01/19/19 12:54,"298 Lincoln St, Los Angeles, CA 90001" -147133,AAA Batteries (4-pack),1,2.99,01/01/19 19:30,"964 Lake St, Dallas, TX 75001" -147134,Bose SoundSport Headphones,1,99.99,01/13/19 20:45,"398 7th St, Dallas, TX 75001" -147135,27in 4K Gaming Monitor,1,389.99,01/28/19 21:31,"713 14th St, Atlanta, GA 30301" -147136,Wired Headphones,1,11.99,01/13/19 22:28,"119 Elm St, San Francisco, CA 94016" -147137,AA Batteries (4-pack),1,3.84,01/25/19 09:08,"744 Hickory St, Dallas, TX 75001" -147138,Bose SoundSport Headphones,1,99.99,01/14/19 11:19,"936 Maple St, Portland, OR 97035" -147139,Wired Headphones,1,11.99,01/15/19 18:38,"152 Center St, San Francisco, CA 94016" -147139,Apple Airpods Headphones,2,150,01/15/19 18:38,"152 Center St, San Francisco, CA 94016" -147140,USB-C Charging Cable,1,11.95,01/08/19 12:54,"524 2nd St, San Francisco, CA 94016" -147141,AA Batteries (4-pack),1,3.84,01/10/19 09:26,"654 Spruce St, Seattle, WA 98101" -147142,USB-C Charging Cable,1,11.95,01/07/19 21:46,"923 River St, San Francisco, CA 94016" -147143,Lightning Charging Cable,3,14.95,01/10/19 10:42,"920 Chestnut St, Atlanta, GA 30301" -147144,Lightning Charging Cable,1,14.95,01/21/19 11:18,"622 8th St, Atlanta, GA 30301" -147145,USB-C Charging Cable,1,11.95,01/04/19 19:49,"625 11th St, Boston, MA 02215" -147146,AAA Batteries (4-pack),1,2.99,01/07/19 18:19,"91 Church St, Atlanta, GA 30301" -147147,27in 4K Gaming Monitor,1,389.99,01/09/19 16:08,"564 Church St, Seattle, WA 98101" -147148,AA Batteries (4-pack),3,3.84,01/27/19 00:53,"337 Cedar St, New York City, NY 10001" -147149,Macbook Pro Laptop,1,1700,01/20/19 14:47,"42 5th St, Austin, TX 73301" -147150,iPhone,1,700,01/13/19 12:46,"420 Lincoln St, San Francisco, CA 94016" -147151,27in FHD Monitor,1,149.99,01/02/19 22:08,"388 Highland St, Atlanta, GA 30301" -147152,AAA Batteries (4-pack),1,2.99,01/16/19 08:57,"590 13th St, New York City, NY 10001" -147153,34in Ultrawide Monitor,1,379.99,01/05/19 18:51,"802 Lakeview St, Dallas, TX 75001" -147154,Flatscreen TV,1,300,01/05/19 22:27,"505 11th St, New York City, NY 10001" -147155,Apple Airpods Headphones,1,150,01/12/19 19:44,"239 6th St, Los Angeles, CA 90001" -147156,AAA Batteries (4-pack),1,2.99,01/16/19 10:29,"791 Lakeview St, Los Angeles, CA 90001" -147157,Apple Airpods Headphones,1,150,01/22/19 10:32,"623 Center St, New York City, NY 10001" -147158,Wired Headphones,1,11.99,01/19/19 14:55,"930 Dogwood St, New York City, NY 10001" -147159,ThinkPad Laptop,1,999.99,01/16/19 15:28,"566 Maple St, New York City, NY 10001" -147160,AA Batteries (4-pack),1,3.84,01/27/19 19:43,"736 Madison St, San Francisco, CA 94016" -147161,27in 4K Gaming Monitor,1,389.99,01/03/19 23:55,"575 Cedar St, New York City, NY 10001" -147162,Lightning Charging Cable,1,14.95,01/29/19 21:29,"464 Maple St, Atlanta, GA 30301" -147163,USB-C Charging Cable,2,11.95,01/29/19 15:08,"152 Cedar St, San Francisco, CA 94016" -147164,USB-C Charging Cable,1,11.95,01/03/19 11:14,"515 Hill St, Boston, MA 02215" -147165,AAA Batteries (4-pack),2,2.99,01/30/19 15:09,"645 9th St, Austin, TX 73301" -147166,27in FHD Monitor,1,149.99,01/30/19 15:30,"965 12th St, Portland, ME 04101" -147167,Wired Headphones,1,11.99,01/05/19 21:27,"434 Lincoln St, Atlanta, GA 30301" -147168,Lightning Charging Cable,1,14.95,01/21/19 09:41,"543 7th St, Los Angeles, CA 90001" -147169,Bose SoundSport Headphones,1,99.99,01/15/19 20:32,"184 Main St, Boston, MA 02215" -147170,Flatscreen TV,1,300,01/24/19 11:24,"877 Wilson St, Seattle, WA 98101" -147171,AA Batteries (4-pack),1,3.84,01/13/19 18:35,"492 Willow St, San Francisco, CA 94016" -147172,Lightning Charging Cable,1,14.95,01/09/19 10:16,"188 6th St, Los Angeles, CA 90001" -147173,AA Batteries (4-pack),1,3.84,01/27/19 17:47,"170 Hickory St, New York City, NY 10001" -147174,USB-C Charging Cable,1,11.95,01/04/19 10:46,"59 1st St, Boston, MA 02215" -147175,AAA Batteries (4-pack),2,2.99,01/14/19 17:36,"271 West St, San Francisco, CA 94016" -147176,20in Monitor,1,109.99,01/07/19 08:51,"142 12th St, Atlanta, GA 30301" -147177,Apple Airpods Headphones,1,150,01/13/19 16:32,"376 Cherry St, Boston, MA 02215" -147178,Apple Airpods Headphones,1,150,01/20/19 21:35,"50 6th St, San Francisco, CA 94016" -147179,Lightning Charging Cable,1,14.95,01/25/19 07:45,"250 11th St, New York City, NY 10001" -147179,AA Batteries (4-pack),2,3.84,01/25/19 07:45,"250 11th St, New York City, NY 10001" -147180,AA Batteries (4-pack),1,3.84,01/27/19 10:38,"981 13th St, Seattle, WA 98101" -147181,USB-C Charging Cable,1,11.95,01/02/19 14:40,"480 Forest St, Dallas, TX 75001" -147182,AAA Batteries (4-pack),1,2.99,01/07/19 03:41,"167 Spruce St, Boston, MA 02215" -147183,Apple Airpods Headphones,1,150,01/28/19 21:18,"679 Wilson St, Los Angeles, CA 90001" -147184,AAA Batteries (4-pack),1,2.99,01/08/19 22:29,"64 South St, San Francisco, CA 94016" -147185,iPhone,1,700,01/18/19 14:53,"793 West St, Dallas, TX 75001" -147186,Apple Airpods Headphones,1,150,01/23/19 06:02,"628 Jackson St, Portland, OR 97035" -147187,AAA Batteries (4-pack),3,2.99,01/26/19 13:44,"428 13th St, New York City, NY 10001" -147188,34in Ultrawide Monitor,1,379.99,01/15/19 15:52,"883 Maple St, New York City, NY 10001" -147189,AA Batteries (4-pack),1,3.84,01/11/19 08:52,"611 Center St, Los Angeles, CA 90001" -147190,AA Batteries (4-pack),1,3.84,01/31/19 18:23,"808 13th St, Dallas, TX 75001" -147191,Lightning Charging Cable,1,14.95,01/04/19 10:40,"686 Wilson St, San Francisco, CA 94016" -147191,Google Phone,1,600,01/04/19 10:40,"686 Wilson St, San Francisco, CA 94016" -147192,USB-C Charging Cable,1,11.95,01/15/19 15:37,"375 Lakeview St, Los Angeles, CA 90001" -147193,USB-C Charging Cable,1,11.95,01/05/19 21:36,"390 Adams St, Los Angeles, CA 90001" -147194,Lightning Charging Cable,1,14.95,01/18/19 21:57,"173 Hill St, New York City, NY 10001" -147195,AA Batteries (4-pack),1,3.84,01/29/19 20:23,"351 10th St, Atlanta, GA 30301" -147196,AAA Batteries (4-pack),5,2.99,01/25/19 10:53,"372 Willow St, New York City, NY 10001" -147197,34in Ultrawide Monitor,1,379.99,01/11/19 08:18,"454 Walnut St, Los Angeles, CA 90001" -147198,Google Phone,1,600,01/01/19 14:12,"858 13th St, Austin, TX 73301" -147198,USB-C Charging Cable,1,11.95,01/01/19 14:12,"858 13th St, Austin, TX 73301" -147199,AAA Batteries (4-pack),4,2.99,01/23/19 14:48,"623 Dogwood St, Los Angeles, CA 90001" -147200,Lightning Charging Cable,1,14.95,01/24/19 12:19,"22 River St, San Francisco, CA 94016" -147201,iPhone,1,700,01/02/19 13:37,"731 Madison St, Dallas, TX 75001" -147202,USB-C Charging Cable,1,11.95,01/23/19 09:58,"744 Willow St, Atlanta, GA 30301" -147203,Bose SoundSport Headphones,1,99.99,01/24/19 18:24,"883 Church St, Austin, TX 73301" -147204,Apple Airpods Headphones,1,150,01/18/19 15:32,"358 Forest St, San Francisco, CA 94016" -147205,34in Ultrawide Monitor,1,379.99,01/30/19 07:56,"386 Center St, Atlanta, GA 30301" -147206,AA Batteries (4-pack),1,3.84,01/02/19 15:14,"557 13th St, Los Angeles, CA 90001" -147207,ThinkPad Laptop,1,999.99,01/06/19 11:02,"425 Lakeview St, San Francisco, CA 94016" -147208,34in Ultrawide Monitor,1,379.99,01/11/19 18:19,"403 Pine St, New York City, NY 10001" -147209,Wired Headphones,1,11.99,01/05/19 20:25,"431 Dogwood St, San Francisco, CA 94016" -147210,34in Ultrawide Monitor,1,379.99,01/11/19 11:38,"942 Adams St, Dallas, TX 75001" -147211,Wired Headphones,1,11.99,01/07/19 16:30,"279 Pine St, Boston, MA 02215" -147212,Bose SoundSport Headphones,1,99.99,01/30/19 12:21,"383 Church St, Los Angeles, CA 90001" -147213,27in FHD Monitor,1,149.99,01/01/19 23:17,"860 Highland St, Dallas, TX 75001" -147214,AAA Batteries (4-pack),2,2.99,01/24/19 13:26,"794 Lakeview St, San Francisco, CA 94016" -147215,AA Batteries (4-pack),1,3.84,01/18/19 22:03,"956 North St, New York City, NY 10001" -147216,USB-C Charging Cable,1,11.95,01/09/19 21:24,"991 2nd St, Atlanta, GA 30301" -147216,20in Monitor,1,109.99,01/09/19 21:24,"991 2nd St, Atlanta, GA 30301" -147217,27in FHD Monitor,1,149.99,01/13/19 13:02,"842 Jefferson St, San Francisco, CA 94016" -147218,Lightning Charging Cable,1,14.95,01/13/19 20:03,"357 Willow St, New York City, NY 10001" -147219,USB-C Charging Cable,1,11.95,01/09/19 11:40,"148 14th St, Los Angeles, CA 90001" -147220,Wired Headphones,1,11.99,01/01/19 14:30,"131 North St, San Francisco, CA 94016" -147221,Wired Headphones,1,11.99,01/27/19 11:08,"911 Wilson St, Portland, OR 97035" -147222,AA Batteries (4-pack),1,3.84,01/06/19 08:52,"306 13th St, New York City, NY 10001" -147223,USB-C Charging Cable,1,11.95,01/08/19 15:30,"271 Meadow St, Los Angeles, CA 90001" -147224,AAA Batteries (4-pack),1,2.99,01/10/19 18:39,"256 Main St, New York City, NY 10001" -147225,AAA Batteries (4-pack),2,2.99,01/12/19 15:14,"427 Pine St, Los Angeles, CA 90001" -147226,Apple Airpods Headphones,1,150,01/05/19 09:50,"855 6th St, Seattle, WA 98101" -147227,Apple Airpods Headphones,1,150,01/26/19 23:14,"67 13th St, Boston, MA 02215" -147228,27in FHD Monitor,1,149.99,01/19/19 20:16,"171 Ridge St, Los Angeles, CA 90001" -147229,USB-C Charging Cable,1,11.95,01/12/19 14:20,"759 Forest St, Dallas, TX 75001" -147230,Bose SoundSport Headphones,1,99.99,01/05/19 16:00,"1 Forest St, San Francisco, CA 94016" -147231,Lightning Charging Cable,1,14.95,01/24/19 21:02,"132 Adams St, Austin, TX 73301" -147232,Flatscreen TV,1,300,01/27/19 20:11,"90 Main St, San Francisco, CA 94016" -147233,27in FHD Monitor,1,149.99,01/20/19 02:39,"296 Maple St, New York City, NY 10001" -147234,Apple Airpods Headphones,1,150,01/15/19 15:52,"283 Madison St, Seattle, WA 98101" -147235,AAA Batteries (4-pack),1,2.99,01/31/19 08:40,"474 Main St, Los Angeles, CA 90001" -147236,AAA Batteries (4-pack),4,2.99,01/29/19 20:28,"773 Ridge St, San Francisco, CA 94016" -147237,AA Batteries (4-pack),2,3.84,01/30/19 01:06,"986 Willow St, San Francisco, CA 94016" -147238,Wired Headphones,1,11.99,01/19/19 17:01,"582 Hickory St, Los Angeles, CA 90001" -147239,USB-C Charging Cable,1,11.95,01/30/19 20:32,"455 1st St, Seattle, WA 98101" -147240,Wired Headphones,1,11.99,01/22/19 20:25,"273 12th St, Dallas, TX 75001" -147241,Google Phone,1,600,01/09/19 21:30,"949 14th St, Austin, TX 73301" -147241,USB-C Charging Cable,1,11.95,01/09/19 21:30,"949 14th St, Austin, TX 73301" -147242,Wired Headphones,1,11.99,01/22/19 17:03,"232 6th St, Boston, MA 02215" -147243,Google Phone,1,600,01/06/19 18:34,"868 North St, Austin, TX 73301" -147244,ThinkPad Laptop,1,999.99,01/04/19 09:20,"120 Center St, San Francisco, CA 94016" -147245,Flatscreen TV,1,300,01/14/19 12:33,"190 Washington St, Los Angeles, CA 90001" -147246,AAA Batteries (4-pack),3,2.99,01/29/19 18:49,"283 Jefferson St, New York City, NY 10001" -147247,Google Phone,1,600,01/24/19 22:43,"862 Spruce St, Austin, TX 73301" -147247,USB-C Charging Cable,1,11.95,01/24/19 22:43,"862 Spruce St, Austin, TX 73301" -147248,Flatscreen TV,1,300,01/14/19 12:35,"656 Church St, Atlanta, GA 30301" -147249,34in Ultrawide Monitor,1,379.99,01/19/19 11:33,"377 Wilson St, San Francisco, CA 94016" -147250,ThinkPad Laptop,1,999.99,01/05/19 18:15,"813 9th St, Los Angeles, CA 90001" -147251,27in 4K Gaming Monitor,1,389.99,01/02/19 10:22,"402 Walnut St, Atlanta, GA 30301" -147252,USB-C Charging Cable,1,11.95,01/10/19 08:37,"63 Lakeview St, San Francisco, CA 94016" -147252,27in 4K Gaming Monitor,1,389.99,01/10/19 08:37,"63 Lakeview St, San Francisco, CA 94016" -147253,AA Batteries (4-pack),1,3.84,01/06/19 16:01,"523 Wilson St, Los Angeles, CA 90001" -147254,Macbook Pro Laptop,1,1700,01/30/19 15:07,"37 2nd St, San Francisco, CA 94016" -147255,USB-C Charging Cable,2,11.95,01/31/19 12:43,"371 South St, Dallas, TX 75001" -147256,AA Batteries (4-pack),1,3.84,01/27/19 19:23,"191 13th St, Boston, MA 02215" -147257,Lightning Charging Cable,1,14.95,01/08/19 12:26,"672 Cedar St, Boston, MA 02215" -147258,iPhone,1,700,01/13/19 07:44,"273 12th St, San Francisco, CA 94016" -147259,AAA Batteries (4-pack),1,2.99,01/24/19 21:32,"924 Hill St, Dallas, TX 75001" -147260,Wired Headphones,1,11.99,01/26/19 19:15,"833 8th St, Austin, TX 73301" -147261,USB-C Charging Cable,1,11.95,01/17/19 11:53,"338 Spruce St, New York City, NY 10001" -147262,USB-C Charging Cable,1,11.95,01/18/19 16:29,"451 4th St, Los Angeles, CA 90001" -147263,AA Batteries (4-pack),1,3.84,01/04/19 14:00,"612 Jackson St, Los Angeles, CA 90001" -147264,Wired Headphones,1,11.99,01/11/19 17:39,"185 Lincoln St, San Francisco, CA 94016" -147265,iPhone,1,700,01/25/19 06:22,"81 7th St, Los Angeles, CA 90001" -147266,AA Batteries (4-pack),1,3.84,01/14/19 17:43,"619 12th St, San Francisco, CA 94016" -147267,Apple Airpods Headphones,1,150,01/04/19 14:11,"991 Chestnut St, New York City, NY 10001" -147268,Wired Headphones,1,11.99,01/01/19 03:07,"9 Lake St, New York City, NY 10001" -147269,AAA Batteries (4-pack),3,2.99,01/03/19 16:27,"282 Chestnut St, Seattle, WA 98101" -147270,Lightning Charging Cable,1,14.95,01/19/19 17:29,"989 North St, Los Angeles, CA 90001" -147271,AAA Batteries (4-pack),4,2.99,01/14/19 22:44,"735 Cedar St, Seattle, WA 98101" -147271,USB-C Charging Cable,2,11.95,01/14/19 22:44,"735 Cedar St, Seattle, WA 98101" -147272,USB-C Charging Cable,2,11.95,01/19/19 20:07,"478 South St, Portland, OR 97035" -147273,iPhone,1,700,01/03/19 19:52,"328 8th St, New York City, NY 10001" -147274,Lightning Charging Cable,2,14.95,01/14/19 16:38,"846 Cherry St, Los Angeles, CA 90001" -147275,AA Batteries (4-pack),1,3.84,01/21/19 19:54,"314 Hickory St, Boston, MA 02215" -147276,Lightning Charging Cable,1,14.95,01/20/19 14:36,"849 Dogwood St, Portland, OR 97035" -147277,AAA Batteries (4-pack),2,2.99,01/10/19 15:34,"752 Main St, Los Angeles, CA 90001" -147278,34in Ultrawide Monitor,1,379.99,01/27/19 17:28,"387 Maple St, Dallas, TX 75001" -147279,Lightning Charging Cable,1,14.95,01/18/19 10:21,"323 Lincoln St, Boston, MA 02215" -147280,AAA Batteries (4-pack),1,2.99,01/09/19 20:07,"832 Hill St, New York City, NY 10001" -147281,Wired Headphones,1,11.99,01/29/19 22:34,"449 Chestnut St, New York City, NY 10001" -147282,AAA Batteries (4-pack),4,2.99,01/29/19 00:06,"538 11th St, Portland, OR 97035" -147283,Flatscreen TV,1,300,01/29/19 21:09,"234 Ridge St, Los Angeles, CA 90001" -147284,AAA Batteries (4-pack),1,2.99,01/30/19 11:41,"284 Park St, San Francisco, CA 94016" -147285,USB-C Charging Cable,2,11.95,01/30/19 20:08,"849 11th St, New York City, NY 10001" -147286,Bose SoundSport Headphones,1,99.99,01/21/19 19:24,"421 Spruce St, San Francisco, CA 94016" -147287,iPhone,1,700,01/06/19 13:32,"104 Jackson St, New York City, NY 10001" -147288,27in 4K Gaming Monitor,1,389.99,01/28/19 01:56,"928 Chestnut St, Portland, ME 04101" -147289,iPhone,1,700,01/12/19 18:47,"44 Dogwood St, San Francisco, CA 94016" -147290,AAA Batteries (4-pack),1,2.99,01/09/19 20:25,"623 Jackson St, Seattle, WA 98101" -147291,Lightning Charging Cable,2,14.95,01/02/19 16:35,"828 Forest St, San Francisco, CA 94016" -147292,Flatscreen TV,1,300,01/15/19 12:20,"636 13th St, Boston, MA 02215" -147293,AAA Batteries (4-pack),1,2.99,01/06/19 22:04,"416 14th St, Portland, OR 97035" -147294,AA Batteries (4-pack),1,3.84,01/22/19 11:00,"342 Highland St, Boston, MA 02215" -147295,27in FHD Monitor,1,149.99,01/19/19 19:31,"544 Highland St, Los Angeles, CA 90001" -147296,20in Monitor,1,109.99,01/03/19 09:06,"906 Lakeview St, Austin, TX 73301" -147297,AAA Batteries (4-pack),2,2.99,01/02/19 07:47,"232 7th St, San Francisco, CA 94016" -147298,AA Batteries (4-pack),1,3.84,01/03/19 00:09,"774 1st St, Boston, MA 02215" -147299,Bose SoundSport Headphones,1,99.99,01/02/19 08:25,"600 Lincoln St, San Francisco, CA 94016" -147300,AA Batteries (4-pack),2,3.84,01/24/19 11:38,"183 Dogwood St, San Francisco, CA 94016" -147301,Apple Airpods Headphones,1,150,01/10/19 21:56,"71 8th St, New York City, NY 10001" -147302,AAA Batteries (4-pack),1,2.99,01/21/19 12:16,"335 9th St, Dallas, TX 75001" -147303,Wired Headphones,2,11.99,01/05/19 09:26,"884 Lincoln St, Los Angeles, CA 90001" -147304,20in Monitor,1,109.99,01/11/19 21:08,"964 Lake St, Los Angeles, CA 90001" -147305,Wired Headphones,1,11.99,01/05/19 20:21,"652 6th St, Austin, TX 73301" -147306,Lightning Charging Cable,1,14.95,01/05/19 22:46,"561 Ridge St, Dallas, TX 75001" -147307,AAA Batteries (4-pack),1,2.99,01/12/19 21:12,"290 Willow St, San Francisco, CA 94016" -147308,USB-C Charging Cable,1,11.95,01/01/19 11:36,"184 North St, Austin, TX 73301" -147309,Macbook Pro Laptop,1,1700,02/01/19 01:01,"594 South St, Dallas, TX 75001" -147310,USB-C Charging Cable,1,11.95,01/27/19 18:56,"812 Wilson St, San Francisco, CA 94016" -147311,Wired Headphones,1,11.99,01/16/19 16:09,"548 Lincoln St, San Francisco, CA 94016" -147312,AA Batteries (4-pack),1,3.84,01/18/19 19:57,"526 Jackson St, Atlanta, GA 30301" -147313,27in 4K Gaming Monitor,1,389.99,01/02/19 23:36,"537 Park St, Los Angeles, CA 90001" -147314,Bose SoundSport Headphones,1,99.99,01/20/19 12:57,"139 Chestnut St, Austin, TX 73301" -147315,AAA Batteries (4-pack),1,2.99,01/17/19 11:23,"331 South St, San Francisco, CA 94016" -147316,AAA Batteries (4-pack),1,2.99,01/22/19 15:48,"862 West St, Dallas, TX 75001" -147317,Apple Airpods Headphones,1,150,01/14/19 12:36,"782 Highland St, Boston, MA 02215" -147318,Google Phone,1,600,01/10/19 18:47,"392 Wilson St, Los Angeles, CA 90001" -147319,USB-C Charging Cable,1,11.95,01/22/19 19:22,"967 Adams St, Boston, MA 02215" -147320,USB-C Charging Cable,1,11.95,01/15/19 06:30,"57 Madison St, San Francisco, CA 94016" -147321,USB-C Charging Cable,1,11.95,01/12/19 15:46,"303 Hickory St, Austin, TX 73301" -147322,Wired Headphones,1,11.99,01/30/19 13:34,"262 Church St, Los Angeles, CA 90001" -147323,AA Batteries (4-pack),1,3.84,01/05/19 09:30,"88 4th St, San Francisco, CA 94016" -147324,27in FHD Monitor,1,149.99,01/31/19 11:07,"951 Spruce St, Boston, MA 02215" -147325,USB-C Charging Cable,1,11.95,01/26/19 10:02,"768 Cherry St, Dallas, TX 75001" -147326,Lightning Charging Cable,1,14.95,01/28/19 18:39,"161 1st St, Portland, OR 97035" -147327,USB-C Charging Cable,1,11.95,01/27/19 06:38,"952 Wilson St, Boston, MA 02215" -147328,Bose SoundSport Headphones,1,99.99,01/10/19 10:20,"153 Church St, Boston, MA 02215" -147329,Wired Headphones,1,11.99,01/11/19 17:16,"780 Hill St, Los Angeles, CA 90001" -147330,AAA Batteries (4-pack),1,2.99,01/28/19 14:14,"483 Highland St, Boston, MA 02215" -147331,Lightning Charging Cable,1,14.95,01/08/19 18:20,"864 Center St, New York City, NY 10001" -147332,Apple Airpods Headphones,1,150,01/29/19 14:48,"46 4th St, San Francisco, CA 94016" -147333,Bose SoundSport Headphones,1,99.99,01/21/19 19:28,"996 South St, Boston, MA 02215" -147334,27in FHD Monitor,1,149.99,01/06/19 10:42,"248 Walnut St, Austin, TX 73301" -147335,34in Ultrawide Monitor,1,379.99,01/05/19 13:42,"368 11th St, New York City, NY 10001" -147336,Lightning Charging Cable,1,14.95,01/18/19 15:14,"862 11th St, Portland, OR 97035" -147337,Wired Headphones,2,11.99,01/22/19 23:44,"715 9th St, Los Angeles, CA 90001" -147338,USB-C Charging Cable,1,11.95,01/15/19 18:39,"152 North St, Austin, TX 73301" -147339,USB-C Charging Cable,2,11.95,01/12/19 09:44,"290 Maple St, New York City, NY 10001" -147340,27in FHD Monitor,1,149.99,01/18/19 19:55,"369 West St, San Francisco, CA 94016" -147341,USB-C Charging Cable,1,11.95,01/25/19 13:27,"584 9th St, Portland, OR 97035" -147342,AAA Batteries (4-pack),1,2.99,01/21/19 15:43,"158 Meadow St, New York City, NY 10001" -147343,Apple Airpods Headphones,1,150,01/03/19 10:44,"491 Park St, Atlanta, GA 30301" -147344,Lightning Charging Cable,1,14.95,01/15/19 08:09,"764 Cherry St, Dallas, TX 75001" -147345,20in Monitor,1,109.99,01/04/19 14:42,"542 Washington St, Los Angeles, CA 90001" -147346,Wired Headphones,1,11.99,01/28/19 10:31,"917 Cedar St, San Francisco, CA 94016" -147347,27in 4K Gaming Monitor,1,389.99,01/20/19 22:28,"5 River St, San Francisco, CA 94016" -147348,AA Batteries (4-pack),1,3.84,01/20/19 08:26,"969 6th St, San Francisco, CA 94016" -147349,USB-C Charging Cable,1,11.95,01/14/19 20:54,"5 Johnson St, Dallas, TX 75001" -147350,AA Batteries (4-pack),1,3.84,01/11/19 21:22,"964 Pine St, Boston, MA 02215" -147351,Bose SoundSport Headphones,1,99.99,01/24/19 23:26,"906 Jefferson St, San Francisco, CA 94016" -147352,AA Batteries (4-pack),1,3.84,01/21/19 19:57,"526 7th St, Los Angeles, CA 90001" -147353,AA Batteries (4-pack),1,3.84,01/24/19 18:57,"625 13th St, New York City, NY 10001" -147354,Lightning Charging Cable,1,14.95,01/15/19 09:28,"939 8th St, Los Angeles, CA 90001" -147355,USB-C Charging Cable,1,11.95,01/21/19 21:27,"985 Hickory St, New York City, NY 10001" -147356,Lightning Charging Cable,1,14.95,01/16/19 14:29,"100 13th St, Los Angeles, CA 90001" -147357,AA Batteries (4-pack),1,3.84,01/17/19 18:18,"150 Park St, New York City, NY 10001" -147358,Lightning Charging Cable,1,14.95,01/07/19 16:44,"620 Cedar St, Seattle, WA 98101" -147359,AA Batteries (4-pack),1,3.84,01/27/19 18:37,"257 Jefferson St, San Francisco, CA 94016" -147360,AAA Batteries (4-pack),1,2.99,01/13/19 19:03,"204 13th St, Boston, MA 02215" -147361,AAA Batteries (4-pack),1,2.99,01/03/19 14:56,"923 12th St, New York City, NY 10001" -147362,Bose SoundSport Headphones,1,99.99,01/26/19 17:17,"777 Ridge St, Los Angeles, CA 90001" -147363,Apple Airpods Headphones,1,150,01/22/19 19:47,"58 10th St, San Francisco, CA 94016" -147364,iPhone,1,700,01/21/19 18:40,"754 Cherry St, Boston, MA 02215" -147364,Wired Headphones,1,11.99,01/21/19 18:40,"754 Cherry St, Boston, MA 02215" -147365,Google Phone,1,600,01/22/19 13:16,"546 Johnson St, San Francisco, CA 94016" -147366,Wired Headphones,1,11.99,01/07/19 22:15,"886 13th St, Portland, ME 04101" -147366,AA Batteries (4-pack),2,3.84,01/07/19 22:15,"886 13th St, Portland, ME 04101" -147367,Google Phone,1,600,01/10/19 19:41,"950 Ridge St, Portland, OR 97035" -147367,Wired Headphones,1,11.99,01/10/19 19:41,"950 Ridge St, Portland, OR 97035" -147368,Lightning Charging Cable,1,14.95,01/17/19 20:31,"138 Center St, Dallas, TX 75001" -147369,27in 4K Gaming Monitor,1,389.99,01/08/19 12:08,"629 Jackson St, San Francisco, CA 94016" -147370,AAA Batteries (4-pack),1,2.99,01/15/19 06:11,"315 5th St, Atlanta, GA 30301" -147371,34in Ultrawide Monitor,1,379.99,01/11/19 08:30,"175 Hill St, Los Angeles, CA 90001" -147372,Apple Airpods Headphones,1,150,01/30/19 17:05,"45 Center St, Boston, MA 02215" -147373,27in 4K Gaming Monitor,1,389.99,01/18/19 10:49,"458 Jackson St, San Francisco, CA 94016" -147374,AA Batteries (4-pack),1,3.84,01/14/19 14:47,"533 13th St, San Francisco, CA 94016" -147375,AAA Batteries (4-pack),1,2.99,01/06/19 09:00,"90 13th St, Seattle, WA 98101" -147376,27in 4K Gaming Monitor,1,389.99,01/25/19 19:39,"92 Madison St, San Francisco, CA 94016" -147377,iPhone,1,700,01/19/19 21:00,"904 14th St, New York City, NY 10001" -147378,Bose SoundSport Headphones,1,99.99,01/24/19 13:05,"823 Walnut St, New York City, NY 10001" -147379,USB-C Charging Cable,1,11.95,01/17/19 22:09,"113 7th St, Los Angeles, CA 90001" -147380,Apple Airpods Headphones,1,150,01/19/19 11:56,"822 Church St, Portland, OR 97035" -147381,Apple Airpods Headphones,1,150,01/27/19 10:49,"181 Cedar St, Boston, MA 02215" -147382,LG Dryer,1,600.0,01/13/19 10:58,"222 7th St, Los Angeles, CA 90001" -147383,Lightning Charging Cable,1,14.95,01/14/19 15:43,"752 West St, New York City, NY 10001" -147384,AA Batteries (4-pack),1,3.84,01/24/19 20:42,"772 7th St, Portland, OR 97035" -147385,Apple Airpods Headphones,1,150,01/20/19 20:09,"310 Adams St, San Francisco, CA 94016" -147386,USB-C Charging Cable,1,11.95,01/01/19 11:44,"793 11th St, San Francisco, CA 94016" -147387,USB-C Charging Cable,1,11.95,01/24/19 21:07,"753 Pine St, Austin, TX 73301" -147388,AA Batteries (4-pack),1,3.84,01/20/19 12:55,"91 8th St, San Francisco, CA 94016" -147389,Flatscreen TV,1,300,01/25/19 12:22,"292 Pine St, New York City, NY 10001" -147390,AA Batteries (4-pack),1,3.84,01/29/19 12:01,"138 2nd St, New York City, NY 10001" -147391,27in 4K Gaming Monitor,1,389.99,01/26/19 18:00,"915 Madison St, Dallas, TX 75001" -147392,USB-C Charging Cable,1,11.95,01/08/19 14:25,"68 Walnut St, Los Angeles, CA 90001" -147393,USB-C Charging Cable,1,11.95,01/11/19 18:58,"34 13th St, Atlanta, GA 30301" -147394,Wired Headphones,1,11.99,01/30/19 18:13,"741 Adams St, Austin, TX 73301" -147395,AA Batteries (4-pack),1,3.84,01/29/19 16:33,"31 Park St, Austin, TX 73301" -147396,Lightning Charging Cable,3,14.95,01/16/19 10:17,"219 Cherry St, Los Angeles, CA 90001" -147397,Wired Headphones,1,11.99,01/14/19 21:11,"672 Walnut St, San Francisco, CA 94016" -147398,Macbook Pro Laptop,1,1700,01/21/19 12:22,"352 12th St, San Francisco, CA 94016" -147399,Apple Airpods Headphones,1,150,01/03/19 21:20,"559 1st St, San Francisco, CA 94016" -147400,27in 4K Gaming Monitor,1,389.99,01/21/19 14:25,"713 Hill St, San Francisco, CA 94016" -147401,Google Phone,1,600,01/20/19 16:08,"78 Washington St, Portland, ME 04101" -147402,Wired Headphones,1,11.99,01/04/19 18:10,"420 Dogwood St, Austin, TX 73301" -147403,Apple Airpods Headphones,1,150,01/08/19 12:06,"423 5th St, Atlanta, GA 30301" -147404,ThinkPad Laptop,1,999.99,01/23/19 10:04,"566 Elm St, New York City, NY 10001" -147405,AA Batteries (4-pack),1,3.84,01/16/19 08:43,"26 Forest St, Portland, OR 97035" -147406,Bose SoundSport Headphones,1,99.99,01/24/19 11:14,"716 7th St, San Francisco, CA 94016" -147407,Apple Airpods Headphones,1,150,01/29/19 08:19,"31 7th St, Los Angeles, CA 90001" -147408,Google Phone,1,600,01/22/19 22:40,"770 Walnut St, Dallas, TX 75001" -147409,AAA Batteries (4-pack),1,2.99,01/15/19 18:08,"581 Forest St, Seattle, WA 98101" -147410,27in 4K Gaming Monitor,1,389.99,01/11/19 00:29,"14 Walnut St, San Francisco, CA 94016" -147411,LG Washing Machine,1,600.0,01/07/19 14:24,"440 South St, Boston, MA 02215" -147412,AA Batteries (4-pack),2,3.84,01/02/19 11:14,"10 Cedar St, Los Angeles, CA 90001" -147413,Bose SoundSport Headphones,1,99.99,01/13/19 11:27,"428 1st St, Los Angeles, CA 90001" -147414,Lightning Charging Cable,1,14.95,01/01/19 23:27,"12 Hickory St, San Francisco, CA 94016" -147415,Bose SoundSport Headphones,1,99.99,01/10/19 14:42,"590 Hill St, New York City, NY 10001" -147416,AA Batteries (4-pack),2,3.84,01/12/19 19:36,"930 Dogwood St, Los Angeles, CA 90001" -147417,Bose SoundSport Headphones,1,99.99,01/20/19 01:45,"146 Johnson St, New York City, NY 10001" -147418,ThinkPad Laptop,1,999.99,01/02/19 14:04,"384 8th St, Dallas, TX 75001" -147419,Google Phone,1,600,01/14/19 10:43,"330 Maple St, Portland, OR 97035" -147420,27in 4K Gaming Monitor,1,389.99,01/29/19 11:35,"678 Sunset St, San Francisco, CA 94016" -147421,Wired Headphones,1,11.99,01/05/19 13:13,"335 Madison St, Boston, MA 02215" -147422,USB-C Charging Cable,1,11.95,01/25/19 22:21,"53 Madison St, San Francisco, CA 94016" -147423,AAA Batteries (4-pack),1,2.99,01/13/19 12:32,"864 Lincoln St, Seattle, WA 98101" -,,,,, -147424,AAA Batteries (4-pack),1,2.99,01/01/19 13:30,"570 Jefferson St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -147425,iPhone,1,700,01/26/19 19:47,"112 River St, Seattle, WA 98101" -147425,Lightning Charging Cable,1,14.95,01/26/19 19:47,"112 River St, Seattle, WA 98101" -147426,Bose SoundSport Headphones,1,99.99,01/20/19 16:09,"105 Center St, Los Angeles, CA 90001" -147427,USB-C Charging Cable,1,11.95,01/20/19 19:58,"947 Pine St, Boston, MA 02215" -147428,Wired Headphones,1,11.99,01/14/19 12:15,"314 12th St, Seattle, WA 98101" -147429,Vareebadd Phone,1,400,01/13/19 15:52,"622 River St, San Francisco, CA 94016" -147430,Lightning Charging Cable,1,14.95,01/28/19 11:38,"689 Lincoln St, Atlanta, GA 30301" -147431,Apple Airpods Headphones,1,150,01/28/19 23:22,"78 4th St, Austin, TX 73301" -147432,Wired Headphones,1,11.99,01/30/19 17:58,"309 2nd St, Los Angeles, CA 90001" -147433,AAA Batteries (4-pack),1,2.99,01/13/19 12:21,"279 Maple St, Boston, MA 02215" -,,,,, -147434,Wired Headphones,1,11.99,01/13/19 14:39,"375 Jefferson St, San Francisco, CA 94016" -147435,Wired Headphones,2,11.99,01/01/19 14:48,"991 South St, Boston, MA 02215" -147436,Google Phone,1,600,01/04/19 08:38,"137 North St, New York City, NY 10001" -147437,Flatscreen TV,1,300,01/26/19 19:12,"788 Park St, New York City, NY 10001" -147438,AAA Batteries (4-pack),1,2.99,01/18/19 15:05,"458 Dogwood St, Austin, TX 73301" -147439,Vareebadd Phone,1,400,01/03/19 19:06,"12 Elm St, Atlanta, GA 30301" -147439,USB-C Charging Cable,1,11.95,01/03/19 19:06,"12 Elm St, Atlanta, GA 30301" -147440,AAA Batteries (4-pack),1,2.99,01/18/19 09:58,"128 Johnson St, New York City, NY 10001" -147441,USB-C Charging Cable,1,11.95,01/19/19 14:24,"868 Park St, Boston, MA 02215" -147442,Bose SoundSport Headphones,1,99.99,01/13/19 05:26,"378 8th St, Boston, MA 02215" -147443,AAA Batteries (4-pack),1,2.99,01/25/19 10:17,"277 Dogwood St, New York City, NY 10001" -147444,Vareebadd Phone,1,400,01/01/19 22:37,"585 Pine St, Atlanta, GA 30301" -147444,USB-C Charging Cable,1,11.95,01/01/19 22:37,"585 Pine St, Atlanta, GA 30301" -147445,Wired Headphones,1,11.99,01/21/19 10:51,"437 Walnut St, Dallas, TX 75001" -147446,Wired Headphones,1,11.99,01/18/19 18:02,"9 Main St, Austin, TX 73301" -147447,AA Batteries (4-pack),1,3.84,01/21/19 19:00,"147 Park St, Los Angeles, CA 90001" -147448,Lightning Charging Cable,1,14.95,01/05/19 11:49,"551 River St, Atlanta, GA 30301" -147449,27in FHD Monitor,1,149.99,01/08/19 12:21,"521 Main St, Boston, MA 02215" -147450,Apple Airpods Headphones,1,150,01/13/19 12:04,"98 7th St, Boston, MA 02215" -147451,Google Phone,1,600,01/01/19 12:57,"229 Elm St, New York City, NY 10001" -147451,Wired Headphones,1,11.99,01/01/19 12:57,"229 Elm St, New York City, NY 10001" -147452,AAA Batteries (4-pack),1,2.99,01/12/19 22:19,"471 Jackson St, Los Angeles, CA 90001" -147453,AAA Batteries (4-pack),2,2.99,01/06/19 23:09,"403 8th St, Los Angeles, CA 90001" -147454,Lightning Charging Cable,1,14.95,01/02/19 14:57,"447 River St, San Francisco, CA 94016" -147455,ThinkPad Laptop,1,999.99,01/28/19 18:54,"232 Willow St, Seattle, WA 98101" -147456,34in Ultrawide Monitor,1,379.99,01/27/19 19:05,"709 River St, San Francisco, CA 94016" -147457,Flatscreen TV,1,300,01/28/19 18:22,"401 Park St, New York City, NY 10001" -147458,AAA Batteries (4-pack),1,2.99,01/10/19 09:53,"420 Lakeview St, Boston, MA 02215" -147459,Apple Airpods Headphones,1,150,01/08/19 10:28,"941 9th St, Portland, ME 04101" -147460,Apple Airpods Headphones,1,150,01/25/19 09:38,"620 5th St, San Francisco, CA 94016" -147461,AAA Batteries (4-pack),2,2.99,01/02/19 13:40,"390 13th St, Los Angeles, CA 90001" -147462,USB-C Charging Cable,1,11.95,01/01/19 14:07,"101 Elm St, Los Angeles, CA 90001" -147463,Vareebadd Phone,1,400,01/30/19 18:54,"310 4th St, Atlanta, GA 30301" -147463,USB-C Charging Cable,1,11.95,01/30/19 18:54,"310 4th St, Atlanta, GA 30301" -147464,iPhone,1,700,01/29/19 18:44,"148 Cherry St, Los Angeles, CA 90001" -147464,Lightning Charging Cable,1,14.95,01/29/19 18:44,"148 Cherry St, Los Angeles, CA 90001" -147465,ThinkPad Laptop,1,999.99,01/02/19 18:11,"220 11th St, Boston, MA 02215" -147466,Wired Headphones,1,11.99,01/29/19 19:59,"46 Pine St, San Francisco, CA 94016" -147467,AA Batteries (4-pack),1,3.84,01/17/19 19:30,"25 12th St, Atlanta, GA 30301" -147468,Lightning Charging Cable,1,14.95,01/29/19 11:22,"933 Park St, Dallas, TX 75001" -147469,AAA Batteries (4-pack),1,2.99,01/11/19 18:14,"581 12th St, San Francisco, CA 94016" -147470,27in 4K Gaming Monitor,1,389.99,01/03/19 08:29,"35 Pine St, Boston, MA 02215" -147471,Wired Headphones,1,11.99,01/31/19 12:28,"400 8th St, Atlanta, GA 30301" -147472,iPhone,1,700,01/05/19 09:19,"603 Lake St, San Francisco, CA 94016" -147473,27in FHD Monitor,1,149.99,01/04/19 06:47,"671 4th St, New York City, NY 10001" -147474,Wired Headphones,1,11.99,01/01/19 23:48,"583 Lakeview St, Seattle, WA 98101" -147475,Apple Airpods Headphones,1,150,01/22/19 21:10,"312 5th St, Portland, OR 97035" -147476,AAA Batteries (4-pack),1,2.99,01/18/19 11:44,"124 5th St, Los Angeles, CA 90001" -147477,USB-C Charging Cable,1,11.95,01/06/19 18:43,"757 14th St, Dallas, TX 75001" -147478,AAA Batteries (4-pack),1,2.99,01/03/19 22:20,"447 South St, New York City, NY 10001" -147478,27in FHD Monitor,1,149.99,01/03/19 22:20,"447 South St, New York City, NY 10001" -147479,AA Batteries (4-pack),2,3.84,01/24/19 17:02,"417 6th St, San Francisco, CA 94016" -147480,Lightning Charging Cable,1,14.95,01/10/19 14:44,"283 1st St, Atlanta, GA 30301" -147481,AAA Batteries (4-pack),2,2.99,01/26/19 04:37,"417 10th St, Dallas, TX 75001" -147482,AA Batteries (4-pack),1,3.84,01/19/19 19:12,"57 Park St, Austin, TX 73301" -147483,AAA Batteries (4-pack),1,2.99,01/03/19 14:07,"68 Jackson St, San Francisco, CA 94016" -147484,Apple Airpods Headphones,1,150,01/02/19 17:28,"729 Dogwood St, San Francisco, CA 94016" -147485,Google Phone,1,600,01/21/19 11:49,"424 Meadow St, Los Angeles, CA 90001" -147486,34in Ultrawide Monitor,1,379.99,01/22/19 17:07,"714 Main St, Atlanta, GA 30301" -147487,Apple Airpods Headphones,1,150,01/02/19 13:59,"754 12th St, San Francisco, CA 94016" -147488,iPhone,1,700,01/27/19 09:48,"65 Hill St, Atlanta, GA 30301" -147489,USB-C Charging Cable,1,11.95,01/30/19 17:50,"685 Lake St, San Francisco, CA 94016" -147490,USB-C Charging Cable,1,11.95,01/06/19 16:27,"464 Johnson St, San Francisco, CA 94016" -147491,USB-C Charging Cable,1,11.95,01/21/19 18:07,"518 Madison St, Dallas, TX 75001" -147492,USB-C Charging Cable,1,11.95,01/24/19 07:45,"722 Center St, Los Angeles, CA 90001" -147493,Wired Headphones,1,11.99,01/05/19 17:38,"856 Spruce St, Los Angeles, CA 90001" -147494,Apple Airpods Headphones,1,150,01/29/19 22:11,"545 Lake St, Dallas, TX 75001" -147495,Wired Headphones,1,11.99,01/08/19 21:34,"791 Jefferson St, San Francisco, CA 94016" -147496,AAA Batteries (4-pack),3,2.99,01/19/19 15:14,"115 6th St, Atlanta, GA 30301" -147497,27in FHD Monitor,1,149.99,01/16/19 12:08,"872 Spruce St, San Francisco, CA 94016" -147498,AA Batteries (4-pack),1,3.84,01/17/19 22:04,"628 Elm St, Atlanta, GA 30301" -147499,20in Monitor,1,109.99,01/09/19 19:28,"781 9th St, New York City, NY 10001" -147500,Bose SoundSport Headphones,2,99.99,01/06/19 12:55,"140 Wilson St, Los Angeles, CA 90001" -147501,Wired Headphones,1,11.99,01/02/19 19:32,"5 Pine St, Seattle, WA 98101" -147502,iPhone,1,700,01/24/19 13:09,"956 10th St, San Francisco, CA 94016" -147503,Apple Airpods Headphones,1,150,01/31/19 02:36,"5 Walnut St, Atlanta, GA 30301" -147504,USB-C Charging Cable,1,11.95,01/25/19 11:39,"887 Lakeview St, New York City, NY 10001" -147505,Lightning Charging Cable,1,14.95,01/04/19 13:19,"414 Main St, San Francisco, CA 94016" -147506,AA Batteries (4-pack),1,3.84,01/15/19 11:55,"21 Spruce St, Los Angeles, CA 90001" -147507,Wired Headphones,1,11.99,01/05/19 19:19,"76 Lincoln St, Atlanta, GA 30301" -147508,Lightning Charging Cable,2,14.95,01/23/19 10:33,"355 Willow St, Los Angeles, CA 90001" -147509,AAA Batteries (4-pack),1,2.99,01/02/19 12:46,"632 10th St, San Francisco, CA 94016" -147510,27in 4K Gaming Monitor,1,389.99,01/11/19 20:37,"129 13th St, Los Angeles, CA 90001" -147511,AA Batteries (4-pack),2,3.84,01/07/19 11:20,"797 Madison St, New York City, NY 10001" -147512,Lightning Charging Cable,1,14.95,01/12/19 00:28,"622 13th St, San Francisco, CA 94016" -147513,AA Batteries (4-pack),1,3.84,01/19/19 21:22,"236 Hill St, Seattle, WA 98101" -147514,USB-C Charging Cable,1,11.95,01/22/19 16:40,"222 13th St, Atlanta, GA 30301" -147515,Wired Headphones,1,11.99,01/13/19 18:48,"984 8th St, San Francisco, CA 94016" -147516,Macbook Pro Laptop,1,1700,01/20/19 08:56,"425 9th St, Boston, MA 02215" -147517,AAA Batteries (4-pack),3,2.99,01/03/19 19:07,"130 Maple St, Boston, MA 02215" -147518,USB-C Charging Cable,1,11.95,01/26/19 08:43,"781 South St, San Francisco, CA 94016" -147519,AAA Batteries (4-pack),2,2.99,01/01/19 09:18,"212 Lake St, San Francisco, CA 94016" -147520,Vareebadd Phone,1,400,01/09/19 22:19,"303 Adams St, San Francisco, CA 94016" -147521,Apple Airpods Headphones,1,150,01/29/19 17:25,"274 Spruce St, Portland, OR 97035" -147522,Lightning Charging Cable,1,14.95,01/30/19 20:36,"813 Lake St, Los Angeles, CA 90001" -147523,Google Phone,1,600,01/19/19 00:11,"543 14th St, Boston, MA 02215" -147523,USB-C Charging Cable,1,11.95,01/19/19 00:11,"543 14th St, Boston, MA 02215" -147523,Wired Headphones,1,11.99,01/19/19 00:11,"543 14th St, Boston, MA 02215" -147524,AAA Batteries (4-pack),1,2.99,01/07/19 11:18,"899 Johnson St, San Francisco, CA 94016" -147525,Lightning Charging Cable,1,14.95,01/29/19 12:07,"735 Willow St, New York City, NY 10001" -147526,AA Batteries (4-pack),1,3.84,01/27/19 06:14,"312 Maple St, Dallas, TX 75001" -147527,Bose SoundSport Headphones,1,99.99,01/20/19 14:52,"655 Jackson St, Dallas, TX 75001" -147528,Wired Headphones,1,11.99,01/20/19 02:01,"189 Church St, Boston, MA 02215" -147529,AA Batteries (4-pack),2,3.84,01/08/19 19:07,"907 Dogwood St, Boston, MA 02215" -147530,Apple Airpods Headphones,1,150,01/12/19 22:51,"291 10th St, Seattle, WA 98101" -147531,AAA Batteries (4-pack),3,2.99,01/14/19 02:20,"165 Chestnut St, Seattle, WA 98101" -147532,Apple Airpods Headphones,1,150,01/10/19 20:55,"637 Center St, Boston, MA 02215" -147532,Flatscreen TV,1,300,01/10/19 20:55,"637 Center St, Boston, MA 02215" -147533,Lightning Charging Cable,2,14.95,01/05/19 14:41,"501 11th St, San Francisco, CA 94016" -147534,AA Batteries (4-pack),1,3.84,01/16/19 01:51,"237 West St, San Francisco, CA 94016" -147535,Google Phone,1,600,01/05/19 04:11,"100 Highland St, Boston, MA 02215" -147535,Wired Headphones,1,11.99,01/05/19 04:11,"100 Highland St, Boston, MA 02215" -147536,Flatscreen TV,1,300,01/17/19 08:37,"422 West St, San Francisco, CA 94016" -147537,Macbook Pro Laptop,1,1700,01/17/19 23:57,"305 Elm St, Los Angeles, CA 90001" -147538,20in Monitor,1,109.99,01/11/19 16:22,"700 Washington St, New York City, NY 10001" -147539,AA Batteries (4-pack),1,3.84,01/04/19 16:52,"167 Chestnut St, Dallas, TX 75001" -147540,Bose SoundSport Headphones,1,99.99,01/26/19 03:06,"692 Park St, Los Angeles, CA 90001" -147541,Wired Headphones,2,11.99,01/03/19 08:29,"236 Hill St, Boston, MA 02215" -147542,Apple Airpods Headphones,1,150,01/02/19 14:17,"711 Willow St, Los Angeles, CA 90001" -147543,AA Batteries (4-pack),2,3.84,01/21/19 19:36,"730 10th St, Austin, TX 73301" -147544,Wired Headphones,1,11.99,01/24/19 19:51,"275 Willow St, San Francisco, CA 94016" -147545,AAA Batteries (4-pack),2,2.99,01/07/19 14:42,"45 Pine St, Boston, MA 02215" -147546,ThinkPad Laptop,1,999.99,01/26/19 18:24,"714 Willow St, Boston, MA 02215" -147547,AA Batteries (4-pack),1,3.84,01/06/19 19:06,"902 5th St, Atlanta, GA 30301" -147548,AAA Batteries (4-pack),1,2.99,01/08/19 09:05,"497 10th St, Los Angeles, CA 90001" -147549,Bose SoundSport Headphones,1,99.99,01/04/19 08:37,"139 7th St, Boston, MA 02215" -147550,USB-C Charging Cable,1,11.95,01/04/19 19:25,"125 Wilson St, Atlanta, GA 30301" -147551,Apple Airpods Headphones,1,150,01/10/19 09:43,"20 Jackson St, Atlanta, GA 30301" -147552,AA Batteries (4-pack),1,3.84,01/28/19 08:52,"306 Lakeview St, Seattle, WA 98101" -147553,Flatscreen TV,1,300,01/10/19 18:17,"386 Johnson St, Boston, MA 02215" -147554,Apple Airpods Headphones,1,150,01/15/19 12:20,"236 Willow St, Boston, MA 02215" -147555,USB-C Charging Cable,1,11.95,01/11/19 16:50,"425 10th St, San Francisco, CA 94016" -147556,27in 4K Gaming Monitor,1,389.99,01/02/19 08:05,"374 Cherry St, Seattle, WA 98101" -147557,Apple Airpods Headphones,1,150,01/13/19 17:54,"210 West St, Atlanta, GA 30301" -147558,AAA Batteries (4-pack),1,2.99,01/27/19 12:28,"643 River St, Boston, MA 02215" -147559,AA Batteries (4-pack),1,3.84,01/08/19 19:57,"921 2nd St, San Francisco, CA 94016" -147560,AA Batteries (4-pack),1,3.84,01/19/19 22:38,"709 Cedar St, Portland, OR 97035" -147561,Lightning Charging Cable,1,14.95,01/25/19 19:03,"588 Lincoln St, Boston, MA 02215" -147562,AAA Batteries (4-pack),1,2.99,01/06/19 09:25,"152 Pine St, Los Angeles, CA 90001" -147563,34in Ultrawide Monitor,1,379.99,01/04/19 15:41,"345 Jackson St, San Francisco, CA 94016" -147564,USB-C Charging Cable,1,11.95,01/22/19 16:16,"519 South St, New York City, NY 10001" -147565,Macbook Pro Laptop,1,1700,01/11/19 16:13,"124 4th St, Dallas, TX 75001" -147566,AA Batteries (4-pack),2,3.84,01/20/19 18:33,"537 River St, Boston, MA 02215" -147567,AAA Batteries (4-pack),2,2.99,01/24/19 11:56,"935 Lincoln St, San Francisco, CA 94016" -147568,Apple Airpods Headphones,1,150,01/14/19 03:33,"486 10th St, San Francisco, CA 94016" -147569,AAA Batteries (4-pack),1,2.99,01/24/19 09:23,"984 8th St, San Francisco, CA 94016" -147570,Apple Airpods Headphones,1,150,01/15/19 10:06,"625 Main St, Dallas, TX 75001" -147571,Google Phone,1,600,01/27/19 10:12,"530 Willow St, San Francisco, CA 94016" -147571,USB-C Charging Cable,1,11.95,01/27/19 10:12,"530 Willow St, San Francisco, CA 94016" -147572,Apple Airpods Headphones,1,150,01/28/19 21:58,"257 14th St, Atlanta, GA 30301" -147573,34in Ultrawide Monitor,1,379.99,01/04/19 10:25,"63 7th St, Los Angeles, CA 90001" -147574,Google Phone,1,600,01/01/19 11:10,"472 14th St, Los Angeles, CA 90001" -147575,ThinkPad Laptop,1,999.99,01/26/19 10:16,"475 Church St, New York City, NY 10001" -147576,Apple Airpods Headphones,1,150,01/20/19 21:56,"78 Main St, Seattle, WA 98101" -147577,iPhone,1,700,01/17/19 20:02,"378 Lake St, Seattle, WA 98101" -147578,Apple Airpods Headphones,1,150,01/29/19 13:42,"349 8th St, Dallas, TX 75001" -147579,27in FHD Monitor,1,149.99,01/02/19 17:11,"109 Dogwood St, New York City, NY 10001" -147580,USB-C Charging Cable,1,11.95,01/26/19 11:33,"979 Washington St, San Francisco, CA 94016" -147581,Wired Headphones,1,11.99,01/06/19 11:19,"524 Cedar St, San Francisco, CA 94016" -147582,Apple Airpods Headphones,1,150,01/21/19 18:38,"465 Walnut St, Seattle, WA 98101" -147583,Apple Airpods Headphones,1,150,01/07/19 20:33,"984 Madison St, Dallas, TX 75001" -147584,AAA Batteries (4-pack),1,2.99,01/10/19 12:09,"903 1st St, Los Angeles, CA 90001" -147585,20in Monitor,1,109.99,01/25/19 18:38,"845 14th St, Dallas, TX 75001" -147586,Lightning Charging Cable,1,14.95,01/15/19 18:58,"402 Church St, San Francisco, CA 94016" -147587,27in 4K Gaming Monitor,1,389.99,01/07/19 21:34,"976 7th St, Boston, MA 02215" -147588,Macbook Pro Laptop,1,1700,01/04/19 00:30,"383 Chestnut St, San Francisco, CA 94016" -147589,ThinkPad Laptop,1,999.99,01/02/19 12:14,"227 Willow St, San Francisco, CA 94016" -147590,AA Batteries (4-pack),1,3.84,01/21/19 15:52,"647 9th St, San Francisco, CA 94016" -147591,27in 4K Gaming Monitor,1,389.99,01/23/19 13:05,"317 12th St, New York City, NY 10001" -147592,iPhone,1,700,01/01/19 17:30,"719 7th St, New York City, NY 10001" -147593,Flatscreen TV,1,300,01/15/19 12:17,"73 Johnson St, San Francisco, CA 94016" -147594,Lightning Charging Cable,1,14.95,01/04/19 21:19,"21 Lincoln St, Los Angeles, CA 90001" -147595,Lightning Charging Cable,1,14.95,01/24/19 20:32,"53 Willow St, Atlanta, GA 30301" -147596,Google Phone,1,600,01/07/19 23:34,"330 14th St, Atlanta, GA 30301" -147597,Lightning Charging Cable,1,14.95,01/22/19 23:47,"938 West St, New York City, NY 10001" -147598,27in FHD Monitor,1,149.99,01/04/19 18:31,"313 Washington St, San Francisco, CA 94016" -147599,AA Batteries (4-pack),1,3.84,01/10/19 23:08,"206 Meadow St, Seattle, WA 98101" -147600,Wired Headphones,1,11.99,01/07/19 10:57,"603 Walnut St, Portland, OR 97035" -147601,AA Batteries (4-pack),1,3.84,01/23/19 19:54,"813 North St, Atlanta, GA 30301" -147602,iPhone,1,700,01/25/19 21:13,"251 10th St, Atlanta, GA 30301" -147603,AA Batteries (4-pack),1,3.84,01/19/19 11:41,"626 Park St, Atlanta, GA 30301" -147604,Google Phone,1,600,01/24/19 00:16,"250 6th St, San Francisco, CA 94016" -147605,AA Batteries (4-pack),1,3.84,01/20/19 16:26,"58 13th St, Boston, MA 02215" -147606,27in 4K Gaming Monitor,1,389.99,01/08/19 07:05,"264 2nd St, Portland, ME 04101" -147607,AA Batteries (4-pack),1,3.84,01/17/19 15:56,"503 Spruce St, Atlanta, GA 30301" -147608,Wired Headphones,1,11.99,01/10/19 16:06,"998 Pine St, Seattle, WA 98101" -147609,USB-C Charging Cable,1,11.95,01/19/19 11:22,"382 Lake St, New York City, NY 10001" -147610,Bose SoundSport Headphones,1,99.99,01/16/19 09:58,"502 Meadow St, Seattle, WA 98101" -147611,LG Dryer,1,600.0,01/23/19 20:05,"779 5th St, San Francisco, CA 94016" -147612,LG Washing Machine,1,600.0,01/08/19 17:38,"435 Sunset St, Boston, MA 02215" -147613,AA Batteries (4-pack),2,3.84,01/29/19 15:29,"758 Jackson St, New York City, NY 10001" -147614,Apple Airpods Headphones,1,150,01/13/19 09:51,"203 Lake St, Dallas, TX 75001" -147615,Apple Airpods Headphones,1,150,01/23/19 17:09,"253 6th St, Portland, OR 97035" -147616,AAA Batteries (4-pack),1,2.99,01/07/19 21:53,"364 Spruce St, Austin, TX 73301" -147617,USB-C Charging Cable,2,11.95,01/24/19 10:09,"944 Wilson St, Los Angeles, CA 90001" -147618,Flatscreen TV,1,300,01/12/19 16:37,"527 Highland St, Austin, TX 73301" -147619,AA Batteries (4-pack),1,3.84,01/01/19 17:57,"251 Meadow St, San Francisco, CA 94016" -147620,Flatscreen TV,1,300,01/16/19 16:01,"873 Ridge St, Austin, TX 73301" -147621,Wired Headphones,1,11.99,01/11/19 22:09,"231 10th St, Los Angeles, CA 90001" -147622,34in Ultrawide Monitor,1,379.99,01/10/19 15:32,"484 Lakeview St, Boston, MA 02215" -147623,27in FHD Monitor,1,149.99,01/16/19 12:58,"38 Wilson St, Portland, OR 97035" -147624,iPhone,1,700,01/05/19 12:56,"354 Lake St, New York City, NY 10001" -147625,20in Monitor,1,109.99,01/20/19 17:39,"781 Forest St, New York City, NY 10001" -147626,AA Batteries (4-pack),1,3.84,01/06/19 19:58,"272 7th St, Los Angeles, CA 90001" -147627,iPhone,1,700,01/27/19 18:43,"795 Center St, Portland, OR 97035" -147628,USB-C Charging Cable,2,11.95,01/25/19 13:18,"34 Lakeview St, Los Angeles, CA 90001" -147629,USB-C Charging Cable,1,11.95,01/18/19 12:46,"130 Spruce St, Atlanta, GA 30301" -147630,Lightning Charging Cable,1,14.95,01/23/19 13:24,"402 Meadow St, Dallas, TX 75001" -147631,Google Phone,1,600,01/01/19 19:07,"631 10th St, Dallas, TX 75001" -147632,Wired Headphones,1,11.99,01/31/19 12:57,"423 West St, Boston, MA 02215" -147633,34in Ultrawide Monitor,1,379.99,01/18/19 13:25,"113 Sunset St, Los Angeles, CA 90001" -147634,AA Batteries (4-pack),1,3.84,01/15/19 21:07,"175 Dogwood St, Seattle, WA 98101" -147635,AA Batteries (4-pack),1,3.84,01/17/19 17:58,"248 Jackson St, New York City, NY 10001" -147636,LG Dryer,1,600.0,01/15/19 09:35,"865 Forest St, Atlanta, GA 30301" -147637,34in Ultrawide Monitor,1,379.99,01/03/19 08:40,"470 Meadow St, Portland, OR 97035" -147638,ThinkPad Laptop,1,999.99,01/17/19 17:34,"897 Center St, Portland, OR 97035" -147639,34in Ultrawide Monitor,1,379.99,01/04/19 22:22,"118 Lakeview St, San Francisco, CA 94016" -147640,Macbook Pro Laptop,1,1700,01/24/19 16:44,"400 Cedar St, Austin, TX 73301" -147641,Lightning Charging Cable,1,14.95,01/04/19 12:07,"833 Center St, San Francisco, CA 94016" -147642,34in Ultrawide Monitor,1,379.99,01/20/19 12:15,"487 Lincoln St, San Francisco, CA 94016" -147643,Lightning Charging Cable,3,14.95,01/31/19 19:39,"111 Dogwood St, Los Angeles, CA 90001" -147644,Lightning Charging Cable,1,14.95,01/11/19 13:01,"671 South St, New York City, NY 10001" -147645,iPhone,1,700,01/30/19 22:55,"484 12th St, San Francisco, CA 94016" -147645,Apple Airpods Headphones,1,150,01/30/19 22:55,"484 12th St, San Francisco, CA 94016" -147645,Wired Headphones,1,11.99,01/30/19 22:55,"484 12th St, San Francisco, CA 94016" -147646,34in Ultrawide Monitor,1,379.99,01/05/19 11:29,"724 North St, Los Angeles, CA 90001" -147647,USB-C Charging Cable,1,11.95,01/18/19 08:50,"981 Hill St, New York City, NY 10001" -147648,USB-C Charging Cable,1,11.95,01/05/19 07:46,"38 6th St, San Francisco, CA 94016" -147649,AA Batteries (4-pack),1,3.84,01/24/19 22:15,"717 Spruce St, Dallas, TX 75001" -147650,Apple Airpods Headphones,1,150,01/17/19 14:10,"311 5th St, San Francisco, CA 94016" -147651,AAA Batteries (4-pack),1,2.99,01/11/19 20:58,"760 Cherry St, Austin, TX 73301" -147652,USB-C Charging Cable,1,11.95,01/12/19 00:16,"641 13th St, Los Angeles, CA 90001" -147653,Apple Airpods Headphones,1,150,01/08/19 11:16,"75 11th St, New York City, NY 10001" -147654,USB-C Charging Cable,1,11.95,01/10/19 07:34,"187 Cedar St, Los Angeles, CA 90001" -147655,AA Batteries (4-pack),3,3.84,01/23/19 16:01,"53 Hill St, Los Angeles, CA 90001" -147656,AA Batteries (4-pack),1,3.84,01/25/19 15:04,"250 Maple St, Los Angeles, CA 90001" -147657,ThinkPad Laptop,1,999.99,01/12/19 19:30,"122 11th St, Atlanta, GA 30301" -147658,Lightning Charging Cable,1,14.95,01/17/19 23:47,"301 12th St, New York City, NY 10001" -147659,Lightning Charging Cable,1,14.95,01/19/19 13:24,"939 13th St, Portland, ME 04101" -147660,AAA Batteries (4-pack),3,2.99,01/26/19 11:42,"368 Spruce St, Dallas, TX 75001" -147661,Apple Airpods Headphones,1,150,01/03/19 21:54,"926 Chestnut St, Austin, TX 73301" -147662,Wired Headphones,1,11.99,01/05/19 23:16,"437 River St, Seattle, WA 98101" -147663,Lightning Charging Cable,1,14.95,02/01/19 00:33,"96 Elm St, Boston, MA 02215" -147664,AAA Batteries (4-pack),4,2.99,01/27/19 18:11,"875 13th St, New York City, NY 10001" -147664,34in Ultrawide Monitor,1,379.99,01/27/19 18:11,"875 13th St, New York City, NY 10001" -147665,USB-C Charging Cable,2,11.95,01/13/19 20:46,"202 8th St, Austin, TX 73301" -147666,Vareebadd Phone,1,400,01/19/19 21:27,"965 Forest St, Seattle, WA 98101" -147667,Apple Airpods Headphones,1,150,01/29/19 14:07,"24 Washington St, San Francisco, CA 94016" -147668,AAA Batteries (4-pack),1,2.99,01/18/19 13:45,"30 14th St, San Francisco, CA 94016" -147669,Apple Airpods Headphones,1,150,01/31/19 15:48,"371 10th St, Portland, ME 04101" -147670,Lightning Charging Cable,1,14.95,01/04/19 09:04,"224 Center St, Atlanta, GA 30301" -147671,Macbook Pro Laptop,1,1700,01/13/19 13:07,"272 Dogwood St, New York City, NY 10001" -147672,ThinkPad Laptop,1,999.99,01/11/19 09:00,"49 8th St, Los Angeles, CA 90001" -147673,27in FHD Monitor,1,149.99,01/02/19 23:53,"259 Cherry St, New York City, NY 10001" -147674,USB-C Charging Cable,1,11.95,01/26/19 14:04,"472 River St, Austin, TX 73301" -147675,Apple Airpods Headphones,1,150,01/26/19 19:50,"123 Willow St, Atlanta, GA 30301" -147676,AAA Batteries (4-pack),1,2.99,01/13/19 22:50,"451 7th St, Portland, OR 97035" -147677,ThinkPad Laptop,1,999.99,01/06/19 22:47,"611 1st St, Portland, OR 97035" -147678,Lightning Charging Cable,1,14.95,01/03/19 11:29,"263 1st St, Los Angeles, CA 90001" -147679,Lightning Charging Cable,1,14.95,01/31/19 14:45,"391 Cedar St, Boston, MA 02215" -147680,Lightning Charging Cable,2,14.95,01/31/19 18:08,"729 12th St, San Francisco, CA 94016" -147681,20in Monitor,1,109.99,01/05/19 14:38,"935 10th St, Dallas, TX 75001" -147682,LG Washing Machine,1,600.0,01/06/19 11:12,"105 Lincoln St, New York City, NY 10001" -147683,Macbook Pro Laptop,1,1700,01/09/19 01:25,"324 Highland St, Boston, MA 02215" -147684,Lightning Charging Cable,1,14.95,01/03/19 11:09,"893 Meadow St, Los Angeles, CA 90001" -147685,AAA Batteries (4-pack),4,2.99,01/01/19 17:04,"620 Willow St, San Francisco, CA 94016" -147686,USB-C Charging Cable,1,11.95,01/20/19 18:15,"57 Dogwood St, Los Angeles, CA 90001" -147687,Apple Airpods Headphones,1,150,01/15/19 13:08,"180 1st St, Seattle, WA 98101" -147688,Vareebadd Phone,1,400,01/17/19 18:10,"472 Johnson St, New York City, NY 10001" -147688,USB-C Charging Cable,2,11.95,01/17/19 18:10,"472 Johnson St, New York City, NY 10001" -147689,AA Batteries (4-pack),1,3.84,01/01/19 18:09,"282 Meadow St, Los Angeles, CA 90001" -147690,Apple Airpods Headphones,1,150,01/12/19 18:45,"806 Lake St, Portland, OR 97035" -147691,USB-C Charging Cable,1,11.95,01/26/19 19:19,"706 8th St, Boston, MA 02215" -147692,Wired Headphones,1,11.99,01/05/19 14:01,"94 Washington St, Austin, TX 73301" -147693,27in FHD Monitor,1,149.99,01/24/19 09:01,"689 North St, Los Angeles, CA 90001" -147694,Lightning Charging Cable,1,14.95,01/24/19 10:10,"988 Jefferson St, Los Angeles, CA 90001" -147695,Wired Headphones,1,11.99,01/05/19 16:57,"569 Main St, New York City, NY 10001" -147696,Lightning Charging Cable,1,14.95,01/22/19 19:18,"711 Madison St, San Francisco, CA 94016" -147697,Lightning Charging Cable,2,14.95,01/25/19 09:28,"169 6th St, Los Angeles, CA 90001" -147698,Apple Airpods Headphones,1,150,01/25/19 00:39,"280 Wilson St, Portland, OR 97035" -147699,Google Phone,1,600,01/24/19 15:54,"659 Lincoln St, San Francisco, CA 94016" -147700,AA Batteries (4-pack),1,3.84,01/22/19 18:09,"97 7th St, San Francisco, CA 94016" -147701,AA Batteries (4-pack),2,3.84,01/18/19 14:51,"137 Lakeview St, Austin, TX 73301" -147702,Bose SoundSport Headphones,1,99.99,01/19/19 20:46,"941 Church St, San Francisco, CA 94016" -147703,Wired Headphones,1,11.99,01/20/19 21:50,"426 Forest St, Seattle, WA 98101" -147704,AAA Batteries (4-pack),1,2.99,01/05/19 10:17,"43 7th St, Austin, TX 73301" -147705,iPhone,1,700,01/31/19 11:38,"351 Pine St, Dallas, TX 75001" -147706,USB-C Charging Cable,1,11.95,01/27/19 10:44,"772 2nd St, Seattle, WA 98101" -147707,Wired Headphones,1,11.99,01/04/19 16:50,"883 4th St, Dallas, TX 75001" -147707,Wired Headphones,1,11.99,01/04/19 16:50,"883 4th St, Dallas, TX 75001" -147708,27in FHD Monitor,1,149.99,01/11/19 14:32,"980 Sunset St, San Francisco, CA 94016" -147709,LG Washing Machine,1,600.0,01/01/19 20:29,"666 8th St, Los Angeles, CA 90001" -147710,Lightning Charging Cable,1,14.95,01/09/19 15:10,"688 Washington St, San Francisco, CA 94016" -147711,AA Batteries (4-pack),1,3.84,01/31/19 14:19,"585 1st St, San Francisco, CA 94016" -147712,AAA Batteries (4-pack),5,2.99,01/12/19 00:22,"26 Adams St, San Francisco, CA 94016" -147713,Bose SoundSport Headphones,1,99.99,01/23/19 22:11,"74 Hill St, San Francisco, CA 94016" -147714,USB-C Charging Cable,1,11.95,01/25/19 09:14,"499 Jackson St, Dallas, TX 75001" -147715,Lightning Charging Cable,1,14.95,01/21/19 06:46,"144 Dogwood St, Boston, MA 02215" -147716,AA Batteries (4-pack),2,3.84,01/22/19 13:45,"794 Jefferson St, Portland, OR 97035" -147717,Wired Headphones,1,11.99,01/17/19 12:11,"626 Walnut St, Atlanta, GA 30301" -147718,Lightning Charging Cable,1,14.95,01/31/19 14:37,"161 Willow St, New York City, NY 10001" -147719,AA Batteries (4-pack),2,3.84,01/21/19 11:27,"646 Dogwood St, Los Angeles, CA 90001" -147720,27in 4K Gaming Monitor,1,389.99,01/23/19 08:11,"965 North St, Boston, MA 02215" -147721,20in Monitor,1,109.99,01/11/19 16:25,"697 Pine St, San Francisco, CA 94016" -147722,AAA Batteries (4-pack),2,2.99,01/03/19 18:25,"955 Johnson St, San Francisco, CA 94016" -147723,AAA Batteries (4-pack),1,2.99,01/23/19 10:07,"440 Highland St, Seattle, WA 98101" -147724,Wired Headphones,1,11.99,01/27/19 14:25,"471 Lakeview St, San Francisco, CA 94016" -147725,Macbook Pro Laptop,1,1700,01/03/19 19:32,"545 Lincoln St, Los Angeles, CA 90001" -147726,34in Ultrawide Monitor,1,379.99,01/01/19 18:56,"214 Lincoln St, San Francisco, CA 94016" -147727,Apple Airpods Headphones,1,150,01/28/19 22:11,"738 River St, Portland, OR 97035" -147728,AAA Batteries (4-pack),1,2.99,01/30/19 11:23,"493 Cedar St, Seattle, WA 98101" -147729,Wired Headphones,1,11.99,01/24/19 12:09,"719 Willow St, Boston, MA 02215" -147730,AAA Batteries (4-pack),3,2.99,01/24/19 13:14,"661 Wilson St, New York City, NY 10001" -147731,Apple Airpods Headphones,1,150,01/14/19 22:07,"452 Lincoln St, Boston, MA 02215" -147732,Wired Headphones,1,11.99,01/28/19 11:28,"578 Adams St, Austin, TX 73301" -147733,Apple Airpods Headphones,1,150,01/14/19 13:54,"41 Hill St, Los Angeles, CA 90001" -147734,Wired Headphones,1,11.99,01/15/19 08:19,"887 South St, New York City, NY 10001" -147735,Bose SoundSport Headphones,1,99.99,01/18/19 15:43,"931 Washington St, Seattle, WA 98101" -147736,Lightning Charging Cable,1,14.95,01/03/19 11:29,"36 4th St, New York City, NY 10001" -147737,AAA Batteries (4-pack),1,2.99,01/11/19 19:59,"852 Cedar St, Portland, OR 97035" -147738,Macbook Pro Laptop,1,1700,01/06/19 20:13,"674 North St, San Francisco, CA 94016" -147739,USB-C Charging Cable,1,11.95,01/05/19 18:39,"262 Chestnut St, Portland, OR 97035" -147740,AA Batteries (4-pack),1,3.84,01/30/19 21:43,"295 Elm St, Austin, TX 73301" -147741,AAA Batteries (4-pack),1,2.99,01/30/19 13:37,"896 14th St, New York City, NY 10001" -147742,USB-C Charging Cable,1,11.95,01/25/19 06:57,"871 9th St, Austin, TX 73301" -147743,ThinkPad Laptop,1,999.99,01/08/19 19:13,"412 Sunset St, Boston, MA 02215" -147744,Bose SoundSport Headphones,1,99.99,01/01/19 17:55,"841 Main St, Atlanta, GA 30301" -147745,Lightning Charging Cable,1,14.95,01/04/19 13:31,"657 Wilson St, San Francisco, CA 94016" -147746,27in FHD Monitor,1,149.99,01/30/19 13:32,"864 Meadow St, Los Angeles, CA 90001" -147747,AA Batteries (4-pack),2,3.84,01/31/19 10:18,"112 Chestnut St, Portland, OR 97035" -147748,Lightning Charging Cable,1,14.95,01/14/19 20:00,"411 Johnson St, Seattle, WA 98101" -147749,AA Batteries (4-pack),1,3.84,01/22/19 12:21,"96 Lincoln St, Seattle, WA 98101" -147750,34in Ultrawide Monitor,1,379.99,01/26/19 12:18,"285 9th St, Portland, OR 97035" -147751,Wired Headphones,1,11.99,01/30/19 18:34,"7 Main St, San Francisco, CA 94016" -147752,Apple Airpods Headphones,1,150,01/18/19 19:48,"643 Washington St, Atlanta, GA 30301" -147753,Vareebadd Phone,1,400,01/20/19 16:57,"277 Adams St, Portland, OR 97035" -147754,Wired Headphones,1,11.99,01/26/19 17:41,"487 10th St, San Francisco, CA 94016" -147755,USB-C Charging Cable,1,11.95,01/20/19 16:03,"792 5th St, Atlanta, GA 30301" -147756,Lightning Charging Cable,1,14.95,01/22/19 16:57,"436 12th St, Seattle, WA 98101" -147757,Wired Headphones,1,11.99,01/30/19 05:11,"504 Highland St, Dallas, TX 75001" -147758,USB-C Charging Cable,1,11.95,01/01/19 09:48,"281 North St, Atlanta, GA 30301" -147759,Lightning Charging Cable,1,14.95,01/17/19 09:04,"156 Washington St, San Francisco, CA 94016" -147760,Apple Airpods Headphones,1,150,01/16/19 13:16,"826 Hill St, San Francisco, CA 94016" -147761,Lightning Charging Cable,2,14.95,01/03/19 03:45,"214 Wilson St, New York City, NY 10001" -147762,USB-C Charging Cable,1,11.95,01/30/19 10:18,"976 Highland St, San Francisco, CA 94016" -147763,AAA Batteries (4-pack),1,2.99,01/01/19 14:55,"556 6th St, Los Angeles, CA 90001" -147764,Flatscreen TV,1,300,01/29/19 14:52,"122 Forest St, San Francisco, CA 94016" -147765,AAA Batteries (4-pack),1,2.99,01/28/19 21:04,"862 Washington St, New York City, NY 10001" -147766,Wired Headphones,1,11.99,01/15/19 14:39,"217 Lake St, Dallas, TX 75001" -147767,Vareebadd Phone,1,400,01/15/19 20:08,"73 14th St, Boston, MA 02215" -147768,Bose SoundSport Headphones,1,99.99,01/26/19 17:43,"247 13th St, San Francisco, CA 94016" -147769,Bose SoundSport Headphones,1,99.99,01/16/19 00:18,"314 Sunset St, Portland, OR 97035" -147770,Wired Headphones,1,11.99,01/13/19 16:51,"784 North St, Boston, MA 02215" -147771,Flatscreen TV,1,300,01/29/19 23:30,"417 Ridge St, New York City, NY 10001" -147772,27in FHD Monitor,1,149.99,01/12/19 16:37,"263 North St, Portland, ME 04101" -147773,AAA Batteries (4-pack),1,2.99,01/31/19 15:05,"794 1st St, Boston, MA 02215" -147774,Lightning Charging Cable,1,14.95,01/29/19 21:01,"158 Main St, San Francisco, CA 94016" -147775,AAA Batteries (4-pack),1,2.99,01/06/19 13:29,"260 Meadow St, Atlanta, GA 30301" -147776,Bose SoundSport Headphones,1,99.99,01/11/19 15:06,"406 6th St, Seattle, WA 98101" -147777,AA Batteries (4-pack),4,3.84,01/16/19 18:30,"320 Hill St, San Francisco, CA 94016" -147778,AA Batteries (4-pack),1,3.84,01/11/19 21:28,"957 Maple St, Portland, OR 97035" -147779,Wired Headphones,1,11.99,01/20/19 17:48,"208 Wilson St, San Francisco, CA 94016" -147780,Wired Headphones,1,11.99,01/25/19 13:12,"70 Forest St, Portland, OR 97035" -147781,Bose SoundSport Headphones,1,99.99,01/14/19 12:28,"210 Willow St, Austin, TX 73301" -147782,AAA Batteries (4-pack),1,2.99,01/09/19 11:45,"788 Washington St, New York City, NY 10001" -147783,Bose SoundSport Headphones,1,99.99,01/02/19 08:08,"372 Madison St, Boston, MA 02215" -147784,AAA Batteries (4-pack),1,2.99,01/12/19 16:20,"864 6th St, New York City, NY 10001" -147785,USB-C Charging Cable,1,11.95,01/26/19 16:26,"722 Meadow St, Los Angeles, CA 90001" -147786,Vareebadd Phone,1,400,01/20/19 09:11,"236 Lincoln St, Los Angeles, CA 90001" -147786,USB-C Charging Cable,1,11.95,01/20/19 09:11,"236 Lincoln St, Los Angeles, CA 90001" -147786,Wired Headphones,1,11.99,01/20/19 09:11,"236 Lincoln St, Los Angeles, CA 90001" -147787,27in FHD Monitor,1,149.99,01/20/19 02:24,"758 River St, Los Angeles, CA 90001" -147788,AAA Batteries (4-pack),2,2.99,01/12/19 21:09,"934 Jackson St, New York City, NY 10001" -147789,USB-C Charging Cable,1,11.95,01/10/19 13:21,"283 Meadow St, Atlanta, GA 30301" -147790,Wired Headphones,1,11.99,01/08/19 08:44,"207 Lincoln St, Los Angeles, CA 90001" -147791,USB-C Charging Cable,1,11.95,01/18/19 19:00,"524 Spruce St, Boston, MA 02215" -147792,USB-C Charging Cable,1,11.95,01/18/19 23:58,"749 Washington St, San Francisco, CA 94016" -147793,Wired Headphones,1,11.99,01/07/19 17:09,"203 Spruce St, Los Angeles, CA 90001" -147794,Google Phone,1,600,01/29/19 13:02,"334 11th St, Los Angeles, CA 90001" -147794,USB-C Charging Cable,1,11.95,01/29/19 13:02,"334 11th St, Los Angeles, CA 90001" -147795,Wired Headphones,1,11.99,01/03/19 22:34,"701 Cherry St, San Francisco, CA 94016" -147796,AAA Batteries (4-pack),1,2.99,01/07/19 21:26,"824 Center St, Dallas, TX 75001" -147797,Bose SoundSport Headphones,1,99.99,01/05/19 14:12,"126 Adams St, Austin, TX 73301" -147798,Wired Headphones,1,11.99,01/10/19 12:22,"435 West St, Los Angeles, CA 90001" -147799,AA Batteries (4-pack),1,3.84,01/16/19 14:13,"15 North St, San Francisco, CA 94016" -147800,USB-C Charging Cable,1,11.95,01/29/19 16:22,"264 7th St, Boston, MA 02215" -147801,20in Monitor,1,109.99,01/24/19 17:05,"572 Jefferson St, Boston, MA 02215" -147802,AA Batteries (4-pack),1,3.84,01/03/19 23:27,"987 10th St, Dallas, TX 75001" -147803,27in FHD Monitor,1,149.99,01/05/19 10:51,"735 2nd St, Boston, MA 02215" -147804,Wired Headphones,1,11.99,01/24/19 21:16,"409 Park St, San Francisco, CA 94016" -147805,Flatscreen TV,1,300,01/21/19 15:32,"214 Elm St, San Francisco, CA 94016" -147806,USB-C Charging Cable,1,11.95,01/04/19 06:28,"743 10th St, Los Angeles, CA 90001" -147807,27in 4K Gaming Monitor,1,389.99,01/12/19 08:56,"676 Main St, Los Angeles, CA 90001" -147808,Macbook Pro Laptop,1,1700,01/19/19 13:19,"740 8th St, Atlanta, GA 30301" -147809,Lightning Charging Cable,1,14.95,01/11/19 13:21,"507 5th St, Seattle, WA 98101" -147810,Google Phone,1,600,01/31/19 16:12,"486 2nd St, Dallas, TX 75001" -147811,Google Phone,1,600,01/07/19 10:07,"612 5th St, Los Angeles, CA 90001" -147812,Apple Airpods Headphones,1,150,01/13/19 17:55,"546 Walnut St, Los Angeles, CA 90001" -147813,Lightning Charging Cable,1,14.95,01/07/19 12:58,"544 Cedar St, Los Angeles, CA 90001" -147814,Apple Airpods Headphones,1,150,01/25/19 12:26,"965 Sunset St, Portland, ME 04101" -147815,27in 4K Gaming Monitor,1,389.99,01/04/19 01:32,"838 10th St, Los Angeles, CA 90001" -147816,Google Phone,1,600,01/11/19 08:19,"787 Chestnut St, Dallas, TX 75001" -147816,USB-C Charging Cable,1,11.95,01/11/19 08:19,"787 Chestnut St, Dallas, TX 75001" -147816,Bose SoundSport Headphones,1,99.99,01/11/19 08:19,"787 Chestnut St, Dallas, TX 75001" -147817,AAA Batteries (4-pack),1,2.99,01/30/19 00:06,"203 Lakeview St, Los Angeles, CA 90001" -147818,Wired Headphones,1,11.99,01/05/19 19:56,"659 8th St, Atlanta, GA 30301" -147819,iPhone,1,700,01/23/19 13:10,"992 8th St, Los Angeles, CA 90001" -147820,USB-C Charging Cable,1,11.95,01/14/19 18:14,"589 Chestnut St, Boston, MA 02215" -147821,20in Monitor,1,109.99,01/23/19 18:42,"720 9th St, San Francisco, CA 94016" -147822,Wired Headphones,1,11.99,01/23/19 18:02,"756 10th St, San Francisco, CA 94016" -147823,Google Phone,1,600,01/02/19 16:15,"377 Madison St, San Francisco, CA 94016" -147824,Google Phone,1,600,01/27/19 23:33,"856 Adams St, Boston, MA 02215" -147825,Wired Headphones,1,11.99,01/13/19 14:31,"608 Church St, Los Angeles, CA 90001" -147826,AAA Batteries (4-pack),2,2.99,01/26/19 21:08,"11 10th St, San Francisco, CA 94016" -147827,27in FHD Monitor,1,149.99,01/24/19 12:17,"909 Wilson St, San Francisco, CA 94016" -147828,iPhone,1,700,01/12/19 22:16,"375 Jefferson St, Austin, TX 73301" -147829,Wired Headphones,1,11.99,01/10/19 15:38,"701 1st St, Los Angeles, CA 90001" -147830,AA Batteries (4-pack),3,3.84,01/30/19 18:31,"866 13th St, New York City, NY 10001" -147831,Google Phone,1,600,01/11/19 06:52,"540 North St, Atlanta, GA 30301" -147831,USB-C Charging Cable,1,11.95,01/11/19 06:52,"540 North St, Atlanta, GA 30301" -147831,AA Batteries (4-pack),1,3.84,01/11/19 06:52,"540 North St, Atlanta, GA 30301" -147832,AAA Batteries (4-pack),2,2.99,01/23/19 16:47,"387 Adams St, Atlanta, GA 30301" -147833,AA Batteries (4-pack),1,3.84,01/16/19 15:51,"65 Chestnut St, Austin, TX 73301" -147834,Macbook Pro Laptop,1,1700,01/04/19 20:38,"711 Lakeview St, Dallas, TX 75001" -147835,Lightning Charging Cable,1,14.95,01/25/19 15:29,"798 Elm St, Dallas, TX 75001" -147836,USB-C Charging Cable,1,11.95,01/11/19 12:49,"338 7th St, San Francisco, CA 94016" -147837,27in 4K Gaming Monitor,1,389.99,01/24/19 20:13,"783 Church St, San Francisco, CA 94016" -147838,Wired Headphones,1,11.99,01/06/19 19:45,"425 9th St, Austin, TX 73301" -147839,34in Ultrawide Monitor,1,379.99,01/07/19 09:40,"106 Cedar St, Seattle, WA 98101" -147840,Lightning Charging Cable,1,14.95,01/08/19 23:47,"33 1st St, Atlanta, GA 30301" -147841,AAA Batteries (4-pack),2,2.99,01/21/19 23:42,"297 Madison St, San Francisco, CA 94016" -147842,USB-C Charging Cable,1,11.95,01/20/19 16:34,"498 Dogwood St, Austin, TX 73301" -147843,Flatscreen TV,1,300,01/24/19 11:12,"745 Dogwood St, San Francisco, CA 94016" -147844,AA Batteries (4-pack),1,3.84,01/13/19 15:56,"966 Hill St, Dallas, TX 75001" -147845,Apple Airpods Headphones,1,150,01/06/19 18:52,"56 Chestnut St, Austin, TX 73301" -147846,AA Batteries (4-pack),1,3.84,01/25/19 13:00,"665 7th St, Los Angeles, CA 90001" -147847,34in Ultrawide Monitor,1,379.99,01/21/19 18:56,"589 Dogwood St, San Francisco, CA 94016" -147848,Macbook Pro Laptop,1,1700,01/15/19 20:44,"137 South St, San Francisco, CA 94016" -147849,iPhone,1,700,01/30/19 11:26,"313 6th St, Los Angeles, CA 90001" -147850,Bose SoundSport Headphones,1,99.99,01/02/19 15:38,"333 Madison St, Austin, TX 73301" -147851,ThinkPad Laptop,1,999.99,01/10/19 10:56,"4 10th St, Boston, MA 02215" -147852,AAA Batteries (4-pack),1,2.99,01/27/19 13:51,"744 Lincoln St, Seattle, WA 98101" -147853,AAA Batteries (4-pack),1,2.99,01/07/19 10:49,"996 Sunset St, Boston, MA 02215" -147854,Apple Airpods Headphones,1,150,01/10/19 09:33,"396 Forest St, Atlanta, GA 30301" -147855,Wired Headphones,1,11.99,01/23/19 12:27,"505 Center St, Los Angeles, CA 90001" -147856,Wired Headphones,1,11.99,01/20/19 08:55,"363 Cedar St, San Francisco, CA 94016" -147857,Bose SoundSport Headphones,1,99.99,01/18/19 19:00,"624 7th St, Atlanta, GA 30301" -147858,Wired Headphones,1,11.99,01/18/19 19:56,"138 9th St, San Francisco, CA 94016" -147859,AA Batteries (4-pack),3,3.84,01/26/19 14:14,"25 Lakeview St, Portland, OR 97035" -147860,27in 4K Gaming Monitor,1,389.99,01/30/19 10:58,"242 South St, Dallas, TX 75001" -147861,Wired Headphones,1,11.99,01/09/19 21:01,"687 Pine St, Seattle, WA 98101" -147862,AAA Batteries (4-pack),2,2.99,01/18/19 21:21,"780 7th St, Los Angeles, CA 90001" -147863,Wired Headphones,1,11.99,01/06/19 20:43,"317 Lakeview St, Atlanta, GA 30301" -147864,Wired Headphones,1,11.99,01/02/19 21:33,"546 11th St, Boston, MA 02215" -147865,20in Monitor,1,109.99,01/14/19 11:00,"414 Center St, Portland, OR 97035" -147866,AAA Batteries (4-pack),1,2.99,01/14/19 13:20,"599 11th St, Portland, OR 97035" -147867,Wired Headphones,2,11.99,01/12/19 09:04,"313 Chestnut St, San Francisco, CA 94016" -147868,USB-C Charging Cable,1,11.95,01/18/19 13:53,"62 Dogwood St, Austin, TX 73301" -147869,AAA Batteries (4-pack),1,2.99,01/02/19 17:07,"915 Lincoln St, Boston, MA 02215" -147870,ThinkPad Laptop,1,999.99,01/31/19 22:06,"346 Sunset St, San Francisco, CA 94016" -147871,AAA Batteries (4-pack),2,2.99,01/06/19 01:58,"354 14th St, Los Angeles, CA 90001" -147872,iPhone,1,700,01/13/19 15:37,"193 Meadow St, San Francisco, CA 94016" -147872,Lightning Charging Cable,1,14.95,01/13/19 15:37,"193 Meadow St, San Francisco, CA 94016" -147873,USB-C Charging Cable,1,11.95,01/28/19 08:48,"75 Willow St, Boston, MA 02215" -147874,34in Ultrawide Monitor,1,379.99,01/18/19 01:59,"435 Highland St, New York City, NY 10001" -147875,iPhone,1,700,01/03/19 09:31,"217 2nd St, San Francisco, CA 94016" -147876,Wired Headphones,1,11.99,01/06/19 09:32,"852 Adams St, New York City, NY 10001" -147877,AAA Batteries (4-pack),1,2.99,01/31/19 00:54,"685 Forest St, Austin, TX 73301" -147878,AA Batteries (4-pack),1,3.84,01/26/19 21:30,"609 Lincoln St, Los Angeles, CA 90001" -147879,Bose SoundSport Headphones,1,99.99,01/26/19 08:36,"136 Ridge St, Boston, MA 02215" -147880,Vareebadd Phone,1,400,01/26/19 14:06,"937 Elm St, New York City, NY 10001" -147881,ThinkPad Laptop,1,999.99,01/20/19 21:34,"681 River St, Atlanta, GA 30301" -147882,34in Ultrawide Monitor,1,379.99,01/07/19 11:05,"405 Park St, New York City, NY 10001" -147883,Lightning Charging Cable,1,14.95,01/11/19 20:26,"388 Lakeview St, Seattle, WA 98101" -147884,Macbook Pro Laptop,1,1700,01/22/19 10:13,"156 10th St, Austin, TX 73301" -147885,Lightning Charging Cable,1,14.95,01/11/19 23:18,"683 Willow St, San Francisco, CA 94016" -147886,27in FHD Monitor,1,149.99,01/18/19 20:57,"181 10th St, Austin, TX 73301" -147887,27in FHD Monitor,1,149.99,01/02/19 16:39,"701 North St, Boston, MA 02215" -147888,Google Phone,1,600,01/05/19 16:07,"461 Elm St, Boston, MA 02215" -147889,Apple Airpods Headphones,1,150,01/27/19 22:48,"628 Cedar St, New York City, NY 10001" -147890,AA Batteries (4-pack),2,3.84,01/19/19 15:03,"615 Cedar St, Austin, TX 73301" -147891,AAA Batteries (4-pack),1,2.99,01/12/19 17:27,"147 Center St, San Francisco, CA 94016" -147892,AAA Batteries (4-pack),2,2.99,01/14/19 17:06,"666 Spruce St, San Francisco, CA 94016" -147893,27in 4K Gaming Monitor,1,389.99,01/02/19 20:46,"105 River St, Seattle, WA 98101" -147894,Lightning Charging Cable,1,14.95,01/29/19 18:44,"890 9th St, Dallas, TX 75001" -147895,Flatscreen TV,1,300,01/19/19 13:27,"995 Lincoln St, San Francisco, CA 94016" -147896,AA Batteries (4-pack),1,3.84,01/08/19 23:17,"89 Lake St, Portland, OR 97035" -147897,Wired Headphones,1,11.99,01/26/19 16:40,"557 Walnut St, Los Angeles, CA 90001" -147898,USB-C Charging Cable,1,11.95,01/11/19 13:36,"461 9th St, New York City, NY 10001" -147899,USB-C Charging Cable,1,11.95,01/28/19 15:19,"85 Maple St, New York City, NY 10001" -147900,USB-C Charging Cable,1,11.95,01/26/19 18:38,"469 5th St, San Francisco, CA 94016" -147901,Wired Headphones,1,11.99,01/01/19 22:45,"26 13th St, Los Angeles, CA 90001" -147902,USB-C Charging Cable,1,11.95,01/08/19 21:10,"212 Sunset St, San Francisco, CA 94016" -147903,Wired Headphones,1,11.99,01/14/19 19:02,"29 7th St, New York City, NY 10001" -147904,Lightning Charging Cable,1,14.95,01/12/19 17:14,"114 Sunset St, Los Angeles, CA 90001" -147905,Lightning Charging Cable,1,14.95,01/16/19 21:56,"436 12th St, Boston, MA 02215" -147906,Apple Airpods Headphones,1,150,01/24/19 11:20,"447 Johnson St, San Francisco, CA 94016" -147907,Flatscreen TV,1,300,01/11/19 14:00,"805 5th St, Portland, OR 97035" -147908,AA Batteries (4-pack),2,3.84,01/10/19 20:16,"561 9th St, San Francisco, CA 94016" -147909,Apple Airpods Headphones,1,150,01/18/19 20:00,"253 8th St, New York City, NY 10001" -147910,AA Batteries (4-pack),2,3.84,01/19/19 10:30,"761 Wilson St, New York City, NY 10001" -147911,iPhone,1,700,01/23/19 22:57,"19 Meadow St, Boston, MA 02215" -147911,Lightning Charging Cable,1,14.95,01/23/19 22:57,"19 Meadow St, Boston, MA 02215" -147912,Apple Airpods Headphones,1,150,01/07/19 09:28,"495 Pine St, San Francisco, CA 94016" -147913,AAA Batteries (4-pack),2,2.99,01/16/19 20:49,"32 Center St, Boston, MA 02215" -147914,USB-C Charging Cable,1,11.95,01/10/19 09:43,"539 Lincoln St, Boston, MA 02215" -147915,AA Batteries (4-pack),1,3.84,01/10/19 18:45,"417 Park St, San Francisco, CA 94016" -147916,AA Batteries (4-pack),1,3.84,01/22/19 20:22,"220 Sunset St, Los Angeles, CA 90001" -147917,Wired Headphones,1,11.99,01/19/19 14:22,"569 Lakeview St, Seattle, WA 98101" -147918,Bose SoundSport Headphones,1,99.99,01/30/19 04:25,"830 Cherry St, New York City, NY 10001" -147919,AAA Batteries (4-pack),1,2.99,01/27/19 19:43,"269 Ridge St, Austin, TX 73301" -147920,AA Batteries (4-pack),1,3.84,01/03/19 11:51,"14 2nd St, Los Angeles, CA 90001" -147921,USB-C Charging Cable,1,11.95,01/23/19 09:16,"777 Park St, Atlanta, GA 30301" -147922,Apple Airpods Headphones,1,150,01/02/19 21:16,"697 Meadow St, Boston, MA 02215" -147923,27in FHD Monitor,1,149.99,01/07/19 13:23,"314 10th St, Los Angeles, CA 90001" -147924,Bose SoundSport Headphones,1,99.99,01/14/19 10:01,"825 Spruce St, New York City, NY 10001" -147925,Apple Airpods Headphones,1,150,01/17/19 17:57,"636 Johnson St, New York City, NY 10001" -147926,Lightning Charging Cable,1,14.95,01/11/19 09:58,"882 Hickory St, San Francisco, CA 94016" -147927,ThinkPad Laptop,1,999.99,01/11/19 01:36,"712 Elm St, Los Angeles, CA 90001" -147928,Lightning Charging Cable,1,14.95,01/18/19 22:42,"318 Cherry St, San Francisco, CA 94016" -147929,Vareebadd Phone,1,400,01/21/19 18:01,"785 Lakeview St, Seattle, WA 98101" -147930,Wired Headphones,1,11.99,01/28/19 17:21,"934 10th St, San Francisco, CA 94016" -147931,Bose SoundSport Headphones,1,99.99,01/12/19 14:28,"587 Cedar St, New York City, NY 10001" -147932,Macbook Pro Laptop,1,1700,01/01/19 12:59,"477 Main St, Boston, MA 02215" -147933,USB-C Charging Cable,2,11.95,01/12/19 16:45,"572 13th St, New York City, NY 10001" -147934,Lightning Charging Cable,1,14.95,01/10/19 09:07,"698 Cedar St, New York City, NY 10001" -147935,AAA Batteries (4-pack),2,2.99,01/09/19 04:29,"698 14th St, Los Angeles, CA 90001" -147936,AAA Batteries (4-pack),1,2.99,01/29/19 11:01,"67 Hill St, San Francisco, CA 94016" -147937,Wired Headphones,1,11.99,01/30/19 11:27,"381 Walnut St, San Francisco, CA 94016" -147938,27in FHD Monitor,1,149.99,01/08/19 00:15,"236 Sunset St, San Francisco, CA 94016" -147939,USB-C Charging Cable,1,11.95,01/11/19 14:08,"313 6th St, New York City, NY 10001" -147940,27in FHD Monitor,1,149.99,01/17/19 08:11,"306 Spruce St, New York City, NY 10001" -147941,Macbook Pro Laptop,1,1700,01/24/19 22:16,"234 Wilson St, New York City, NY 10001" -147942,AA Batteries (4-pack),1,3.84,01/27/19 10:15,"937 2nd St, Seattle, WA 98101" -147943,Apple Airpods Headphones,1,150,01/20/19 18:13,"402 South St, Los Angeles, CA 90001" -147943,Macbook Pro Laptop,1,1700,01/20/19 18:13,"402 South St, Los Angeles, CA 90001" -147944,Apple Airpods Headphones,1,150,01/19/19 04:22,"210 Main St, San Francisco, CA 94016" -147945,Lightning Charging Cable,1,14.95,01/26/19 19:24,"368 11th St, Portland, ME 04101" -147946,AAA Batteries (4-pack),1,2.99,01/11/19 19:41,"998 Washington St, Dallas, TX 75001" -147947,iPhone,1,700,01/07/19 14:46,"352 Spruce St, San Francisco, CA 94016" -147948,AA Batteries (4-pack),2,3.84,01/08/19 23:50,"36 Center St, San Francisco, CA 94016" -147949,27in FHD Monitor,1,149.99,01/27/19 20:17,"670 Sunset St, Los Angeles, CA 90001" -147950,Apple Airpods Headphones,1,150,01/12/19 15:47,"107 Madison St, Los Angeles, CA 90001" -147951,Lightning Charging Cable,1,14.95,01/31/19 17:02,"417 Lake St, New York City, NY 10001" -147952,Macbook Pro Laptop,1,1700,01/29/19 09:55,"695 West St, Los Angeles, CA 90001" -147953,Wired Headphones,1,11.99,01/21/19 15:35,"623 10th St, New York City, NY 10001" -147954,Apple Airpods Headphones,1,150,01/03/19 13:37,"239 8th St, Boston, MA 02215" -147955,AAA Batteries (4-pack),1,2.99,01/20/19 16:52,"554 Hickory St, Dallas, TX 75001" -147956,AAA Batteries (4-pack),2,2.99,01/19/19 20:25,"262 Center St, Boston, MA 02215" -147957,USB-C Charging Cable,1,11.95,01/24/19 11:25,"671 Main St, Dallas, TX 75001" -147958,Lightning Charging Cable,1,14.95,01/16/19 20:45,"787 Highland St, Seattle, WA 98101" -147959,Apple Airpods Headphones,1,150,01/22/19 20:19,"885 Park St, Dallas, TX 75001" -147960,AA Batteries (4-pack),1,3.84,01/08/19 18:43,"13 Dogwood St, San Francisco, CA 94016" -147961,27in 4K Gaming Monitor,1,389.99,01/18/19 11:53,"209 13th St, Seattle, WA 98101" -147962,AA Batteries (4-pack),1,3.84,01/22/19 17:19,"536 Chestnut St, Los Angeles, CA 90001" -147963,Flatscreen TV,1,300,01/01/19 11:00,"655 Meadow St, Austin, TX 73301" -147964,AA Batteries (4-pack),1,3.84,01/21/19 21:00,"221 Ridge St, San Francisco, CA 94016" -147965,Lightning Charging Cable,1,14.95,01/19/19 17:12,"708 Elm St, San Francisco, CA 94016" -147966,Apple Airpods Headphones,1,150,01/17/19 11:44,"66 5th St, Atlanta, GA 30301" -147967,Bose SoundSport Headphones,1,99.99,01/16/19 17:41,"389 Meadow St, San Francisco, CA 94016" -147968,Flatscreen TV,1,300,01/07/19 15:39,"892 Wilson St, Dallas, TX 75001" -147969,Wired Headphones,1,11.99,01/23/19 07:32,"926 2nd St, Dallas, TX 75001" -147970,Apple Airpods Headphones,1,150,01/16/19 12:27,"256 Park St, Boston, MA 02215" -147971,Bose SoundSport Headphones,1,99.99,01/18/19 13:41,"236 River St, San Francisco, CA 94016" -147972,Wired Headphones,1,11.99,01/17/19 09:26,"606 Meadow St, San Francisco, CA 94016" -147973,Apple Airpods Headphones,1,150,01/21/19 11:41,"799 8th St, Austin, TX 73301" -147974,AAA Batteries (4-pack),1,2.99,01/05/19 07:45,"650 Meadow St, Atlanta, GA 30301" -147975,LG Washing Machine,1,600.0,01/07/19 21:30,"284 Highland St, Seattle, WA 98101" -147976,27in FHD Monitor,1,149.99,01/20/19 23:04,"358 11th St, Austin, TX 73301" -147977,20in Monitor,1,109.99,01/06/19 14:52,"529 Sunset St, Boston, MA 02215" -147978,27in 4K Gaming Monitor,1,389.99,01/02/19 15:11,"530 4th St, New York City, NY 10001" -147979,Bose SoundSport Headphones,1,99.99,01/03/19 22:50,"760 West St, San Francisco, CA 94016" -147980,34in Ultrawide Monitor,1,379.99,01/01/19 15:41,"76 Dogwood St, New York City, NY 10001" -147981,Apple Airpods Headphones,1,150,01/24/19 18:26,"389 Madison St, Boston, MA 02215" -147982,Flatscreen TV,1,300,01/26/19 02:02,"735 9th St, New York City, NY 10001" -147983,Apple Airpods Headphones,1,150,01/11/19 11:58,"830 9th St, Los Angeles, CA 90001" -147984,USB-C Charging Cable,1,11.95,01/13/19 08:02,"974 Church St, San Francisco, CA 94016" -147985,27in FHD Monitor,1,149.99,01/23/19 15:38,"671 West St, New York City, NY 10001" -147986,Apple Airpods Headphones,1,150,01/25/19 11:25,"64 North St, San Francisco, CA 94016" -147987,AA Batteries (4-pack),1,3.84,01/05/19 09:53,"89 Willow St, New York City, NY 10001" -147988,Apple Airpods Headphones,1,150,01/17/19 19:24,"839 Jackson St, Dallas, TX 75001" -147989,Google Phone,1,600,01/22/19 19:01,"85 West St, Dallas, TX 75001" -147989,USB-C Charging Cable,1,11.95,01/22/19 19:01,"85 West St, Dallas, TX 75001" -147990,iPhone,1,700,01/31/19 23:22,"57 10th St, Austin, TX 73301" -147991,Wired Headphones,1,11.99,01/22/19 19:41,"819 West St, Boston, MA 02215" -147992,Flatscreen TV,1,300,01/21/19 18:31,"505 Johnson St, Atlanta, GA 30301" -147993,Bose SoundSport Headphones,1,99.99,01/11/19 21:20,"420 Hickory St, Boston, MA 02215" -147994,27in 4K Gaming Monitor,1,389.99,01/16/19 09:08,"871 1st St, Boston, MA 02215" -147995,AA Batteries (4-pack),1,3.84,01/29/19 11:02,"361 Cherry St, Los Angeles, CA 90001" -147996,Vareebadd Phone,1,400,01/06/19 16:57,"709 Spruce St, New York City, NY 10001" -147997,Macbook Pro Laptop,1,1700,01/21/19 12:42,"52 Highland St, Los Angeles, CA 90001" -147998,Google Phone,1,600,01/20/19 13:30,"341 Pine St, New York City, NY 10001" -147999,iPhone,1,700,01/07/19 21:19,"942 Cherry St, New York City, NY 10001" -148000,AA Batteries (4-pack),1,3.84,01/19/19 13:14,"252 North St, Los Angeles, CA 90001" -148001,Lightning Charging Cable,1,14.95,01/28/19 20:19,"799 Sunset St, Austin, TX 73301" -148002,USB-C Charging Cable,1,11.95,01/06/19 12:02,"908 2nd St, Portland, OR 97035" -148003,AAA Batteries (4-pack),1,2.99,01/30/19 15:14,"18 Park St, San Francisco, CA 94016" -148004,20in Monitor,1,109.99,01/22/19 12:50,"537 Jefferson St, New York City, NY 10001" -148005,27in 4K Gaming Monitor,1,389.99,01/31/19 16:27,"955 6th St, Los Angeles, CA 90001" -148006,iPhone,1,700,01/05/19 18:51,"273 4th St, San Francisco, CA 94016" -148007,USB-C Charging Cable,1,11.95,01/20/19 05:12,"803 Cherry St, New York City, NY 10001" -148008,Wired Headphones,2,11.99,01/16/19 11:03,"374 Maple St, Austin, TX 73301" -148009,27in FHD Monitor,1,149.99,01/05/19 09:39,"429 Lincoln St, New York City, NY 10001" -148010,AAA Batteries (4-pack),1,2.99,01/30/19 01:00,"621 Elm St, Dallas, TX 75001" -148011,USB-C Charging Cable,1,11.95,01/05/19 14:17,"366 Walnut St, New York City, NY 10001" -148012,Wired Headphones,1,11.99,01/23/19 09:46,"650 Sunset St, Los Angeles, CA 90001" -148013,Wired Headphones,1,11.99,01/04/19 21:19,"996 Washington St, Los Angeles, CA 90001" -148014,AA Batteries (4-pack),1,3.84,01/07/19 12:41,"757 Hickory St, San Francisco, CA 94016" -148015,Apple Airpods Headphones,1,150,01/22/19 19:53,"571 Adams St, Portland, OR 97035" -148016,AAA Batteries (4-pack),1,2.99,01/01/19 19:03,"854 Cedar St, San Francisco, CA 94016" -148017,ThinkPad Laptop,1,999.99,01/07/19 14:01,"811 Jackson St, New York City, NY 10001" -148018,Macbook Pro Laptop,1,1700,01/23/19 18:19,"428 Wilson St, Seattle, WA 98101" -148019,Wired Headphones,1,11.99,01/17/19 17:35,"829 South St, San Francisco, CA 94016" -148020,34in Ultrawide Monitor,1,379.99,01/05/19 20:44,"488 West St, Seattle, WA 98101" -148021,USB-C Charging Cable,2,11.95,01/02/19 01:08,"783 Adams St, New York City, NY 10001" -148022,Lightning Charging Cable,1,14.95,01/13/19 07:56,"693 Lincoln St, Atlanta, GA 30301" -148023,USB-C Charging Cable,1,11.95,01/03/19 18:24,"120 Highland St, Austin, TX 73301" -148024,AAA Batteries (4-pack),1,2.99,01/12/19 01:00,"984 8th St, New York City, NY 10001" -148025,AA Batteries (4-pack),2,3.84,01/26/19 16:43,"293 14th St, Boston, MA 02215" -148026,Apple Airpods Headphones,1,150,01/04/19 13:13,"710 Wilson St, Boston, MA 02215" -148027,USB-C Charging Cable,1,11.95,01/26/19 20:40,"457 Forest St, Austin, TX 73301" -148028,iPhone,1,700,01/15/19 18:56,"707 8th St, San Francisco, CA 94016" -148028,Lightning Charging Cable,1,14.95,01/15/19 18:56,"707 8th St, San Francisco, CA 94016" -148029,iPhone,1,700,01/25/19 12:33,"868 Spruce St, Boston, MA 02215" -148029,Lightning Charging Cable,1,14.95,01/25/19 12:33,"868 Spruce St, Boston, MA 02215" -148030,AA Batteries (4-pack),1,3.84,01/26/19 17:00,"731 Ridge St, Austin, TX 73301" -148031,27in 4K Gaming Monitor,1,389.99,01/14/19 08:36,"895 14th St, San Francisco, CA 94016" -148032,AA Batteries (4-pack),1,3.84,01/16/19 23:52,"198 Dogwood St, New York City, NY 10001" -148033,Lightning Charging Cable,1,14.95,01/06/19 11:58,"678 Spruce St, San Francisco, CA 94016" -148034,AA Batteries (4-pack),1,3.84,01/25/19 13:55,"49 9th St, Portland, ME 04101" -148035,Apple Airpods Headphones,1,150,01/28/19 17:23,"6 14th St, Seattle, WA 98101" -148036,27in FHD Monitor,1,149.99,01/23/19 10:55,"518 1st St, Boston, MA 02215" -148037,27in FHD Monitor,1,149.99,01/04/19 15:48,"861 2nd St, Los Angeles, CA 90001" -148038,iPhone,1,700,01/06/19 10:51,"307 North St, New York City, NY 10001" -148039,27in FHD Monitor,1,149.99,01/09/19 21:08,"812 Ridge St, Los Angeles, CA 90001" -148040,27in FHD Monitor,1,149.99,01/11/19 11:36,"444 Center St, Los Angeles, CA 90001" -148041,USB-C Charging Cable,1,11.95,01/01/19 03:40,"760 Church St, San Francisco, CA 94016" -148042,USB-C Charging Cable,1,11.95,01/26/19 08:10,"529 5th St, San Francisco, CA 94016" -148043,34in Ultrawide Monitor,1,379.99,01/01/19 20:39,"622 Meadow St, Boston, MA 02215" -148044,Wired Headphones,1,11.99,01/11/19 12:30,"27 Johnson St, Seattle, WA 98101" -148045,USB-C Charging Cable,1,11.95,01/17/19 11:47,"778 Sunset St, Dallas, TX 75001" -148046,Macbook Pro Laptop,1,1700,01/13/19 23:32,"105 West St, Dallas, TX 75001" -148047,AAA Batteries (4-pack),1,2.99,01/07/19 15:42,"455 9th St, New York City, NY 10001" -148048,USB-C Charging Cable,1,11.95,01/26/19 18:16,"730 North St, San Francisco, CA 94016" -148049,Flatscreen TV,1,300,01/17/19 20:45,"558 South St, Portland, ME 04101" -148050,Flatscreen TV,1,300,01/22/19 12:15,"389 7th St, Boston, MA 02215" -148051,AAA Batteries (4-pack),1,2.99,01/14/19 00:50,"898 6th St, Boston, MA 02215" -148052,Flatscreen TV,1,300,01/24/19 19:36,"602 Lakeview St, Boston, MA 02215" -148053,AAA Batteries (4-pack),1,2.99,01/06/19 10:37,"584 Chestnut St, San Francisco, CA 94016" -148054,USB-C Charging Cable,1,11.95,01/20/19 14:39,"111 2nd St, Dallas, TX 75001" -148055,AA Batteries (4-pack),3,3.84,01/18/19 08:12,"726 Willow St, Seattle, WA 98101" -148056,USB-C Charging Cable,1,11.95,01/27/19 16:28,"912 Adams St, New York City, NY 10001" -148057,Lightning Charging Cable,1,14.95,01/23/19 16:24,"712 Cherry St, New York City, NY 10001" -148058,AAA Batteries (4-pack),1,2.99,01/17/19 17:32,"937 Maple St, Atlanta, GA 30301" -148059,USB-C Charging Cable,1,11.95,01/15/19 16:24,"249 Pine St, Los Angeles, CA 90001" -148060,AAA Batteries (4-pack),1,2.99,01/01/19 10:40,"855 12th St, Austin, TX 73301" -148061,USB-C Charging Cable,1,11.95,01/25/19 22:09,"259 14th St, Boston, MA 02215" -148062,Google Phone,1,600,01/24/19 06:44,"757 Cherry St, Portland, OR 97035" -148063,Apple Airpods Headphones,1,150,01/06/19 11:41,"217 Madison St, San Francisco, CA 94016" -148064,AAA Batteries (4-pack),1,2.99,01/16/19 17:02,"908 14th St, New York City, NY 10001" -148065,AAA Batteries (4-pack),2,2.99,01/26/19 00:27,"442 Johnson St, Dallas, TX 75001" -148066,Apple Airpods Headphones,1,150,01/13/19 16:53,"916 Forest St, New York City, NY 10001" -148067,iPhone,1,700,01/02/19 07:58,"976 Johnson St, Los Angeles, CA 90001" -148067,Lightning Charging Cable,1,14.95,01/02/19 07:58,"976 Johnson St, Los Angeles, CA 90001" -148068,AA Batteries (4-pack),1,3.84,01/29/19 20:09,"513 Church St, Austin, TX 73301" -148069,27in 4K Gaming Monitor,1,389.99,01/14/19 06:41,"962 Main St, San Francisco, CA 94016" -148070,USB-C Charging Cable,1,11.95,01/20/19 20:17,"144 Dogwood St, Los Angeles, CA 90001" -148071,20in Monitor,1,109.99,01/09/19 18:19,"585 Walnut St, Los Angeles, CA 90001" -148072,Flatscreen TV,1,300,01/01/19 12:00,"989 Center St, San Francisco, CA 94016" -148073,34in Ultrawide Monitor,1,379.99,01/07/19 11:52,"551 5th St, Atlanta, GA 30301" -148073,USB-C Charging Cable,1,11.95,01/07/19 11:52,"551 5th St, Atlanta, GA 30301" -148074,Google Phone,1,600,01/01/19 11:25,"6 Johnson St, Atlanta, GA 30301" -148074,USB-C Charging Cable,1,11.95,01/01/19 11:25,"6 Johnson St, Atlanta, GA 30301" -148075,34in Ultrawide Monitor,1,379.99,01/03/19 08:26,"455 West St, Los Angeles, CA 90001" -148076,27in 4K Gaming Monitor,1,389.99,01/19/19 12:44,"811 Lake St, Austin, TX 73301" -148077,Apple Airpods Headphones,1,150,01/30/19 20:28,"848 7th St, New York City, NY 10001" -148078,Bose SoundSport Headphones,1,99.99,01/26/19 20:47,"653 Pine St, Los Angeles, CA 90001" -148079,Bose SoundSport Headphones,1,99.99,01/09/19 17:46,"674 9th St, Atlanta, GA 30301" -148080,Wired Headphones,1,11.99,01/24/19 17:17,"909 Forest St, Los Angeles, CA 90001" -148081,Lightning Charging Cable,1,14.95,01/19/19 09:38,"815 10th St, Atlanta, GA 30301" -148082,Flatscreen TV,1,300,01/03/19 22:24,"320 Lake St, Los Angeles, CA 90001" -148083,Wired Headphones,1,11.99,01/01/19 17:19,"544 11th St, New York City, NY 10001" -148084,27in 4K Gaming Monitor,1,389.99,01/24/19 19:05,"557 River St, Portland, OR 97035" -148085,USB-C Charging Cable,1,11.95,01/01/19 14:31,"137 Jackson St, New York City, NY 10001" -148086,AA Batteries (4-pack),1,3.84,01/24/19 06:52,"560 Forest St, San Francisco, CA 94016" -148087,AA Batteries (4-pack),1,3.84,01/28/19 12:23,"520 Willow St, Dallas, TX 75001" -148088,Wired Headphones,1,11.99,01/01/19 07:37,"199 Spruce St, San Francisco, CA 94016" -148089,34in Ultrawide Monitor,1,379.99,01/31/19 11:26,"41 Cherry St, San Francisco, CA 94016" -148090,USB-C Charging Cable,1,11.95,01/18/19 14:07,"537 4th St, Dallas, TX 75001" -148091,iPhone,1,700,01/02/19 18:20,"890 Jefferson St, Atlanta, GA 30301" -148092,AAA Batteries (4-pack),1,2.99,01/18/19 03:27,"814 Dogwood St, San Francisco, CA 94016" -148093,iPhone,1,700,01/30/19 15:11,"450 Cherry St, San Francisco, CA 94016" -148094,Lightning Charging Cable,1,14.95,01/22/19 12:15,"703 Hill St, San Francisco, CA 94016" -148095,AAA Batteries (4-pack),1,2.99,01/30/19 19:27,"628 4th St, Boston, MA 02215" -148096,Lightning Charging Cable,1,14.95,01/29/19 20:18,"186 Dogwood St, Atlanta, GA 30301" -148097,LG Washing Machine,1,600.0,01/18/19 18:39,"295 Maple St, New York City, NY 10001" -148098,AA Batteries (4-pack),2,3.84,01/20/19 11:06,"713 9th St, Atlanta, GA 30301" -148099,27in 4K Gaming Monitor,1,389.99,01/17/19 22:44,"747 Willow St, New York City, NY 10001" -148100,Wired Headphones,1,11.99,01/02/19 13:54,"967 North St, San Francisco, CA 94016" -148101,Wired Headphones,1,11.99,01/26/19 23:33,"730 7th St, Seattle, WA 98101" -148102,Lightning Charging Cable,1,14.95,01/05/19 19:32,"811 Meadow St, Seattle, WA 98101" -148103,Lightning Charging Cable,1,14.95,01/24/19 23:26,"467 Highland St, New York City, NY 10001" -148104,Bose SoundSport Headphones,1,99.99,01/19/19 00:09,"528 14th St, Dallas, TX 75001" -148105,AAA Batteries (4-pack),2,2.99,01/25/19 10:40,"377 Church St, Dallas, TX 75001" -148106,Apple Airpods Headphones,1,150,01/11/19 08:20,"807 Meadow St, Boston, MA 02215" -148107,Bose SoundSport Headphones,1,99.99,01/20/19 04:42,"643 12th St, San Francisco, CA 94016" -148108,Apple Airpods Headphones,1,150,01/07/19 22:23,"888 Madison St, Los Angeles, CA 90001" -148109,AAA Batteries (4-pack),1,2.99,01/18/19 22:31,"571 Adams St, Austin, TX 73301" -148110,USB-C Charging Cable,1,11.95,01/22/19 08:48,"268 Jefferson St, Dallas, TX 75001" -148111,Bose SoundSport Headphones,1,99.99,01/06/19 11:00,"525 12th St, New York City, NY 10001" -148112,Flatscreen TV,1,300,01/17/19 19:38,"256 West St, Boston, MA 02215" -148113,Wired Headphones,1,11.99,01/02/19 09:20,"655 Ridge St, Los Angeles, CA 90001" -148114,AAA Batteries (4-pack),2,2.99,01/24/19 20:21,"69 9th St, Boston, MA 02215" -148115,Macbook Pro Laptop,1,1700,01/04/19 19:20,"955 13th St, San Francisco, CA 94016" -148116,27in FHD Monitor,1,149.99,01/18/19 18:45,"680 8th St, Seattle, WA 98101" -148117,Bose SoundSport Headphones,1,99.99,01/02/19 13:12,"712 Jackson St, Dallas, TX 75001" -148118,27in FHD Monitor,1,149.99,01/05/19 21:26,"85 Lake St, Los Angeles, CA 90001" -148119,27in FHD Monitor,1,149.99,01/28/19 06:35,"551 Highland St, San Francisco, CA 94016" -148120,Lightning Charging Cable,1,14.95,01/29/19 21:03,"946 Forest St, San Francisco, CA 94016" -148121,AA Batteries (4-pack),4,3.84,01/26/19 16:18,"146 2nd St, Portland, OR 97035" -148122,Wired Headphones,2,11.99,01/25/19 22:11,"861 Willow St, New York City, NY 10001" -148123,AAA Batteries (4-pack),1,2.99,01/25/19 15:58,"319 Lakeview St, Boston, MA 02215" -148124,AA Batteries (4-pack),1,3.84,01/17/19 12:40,"500 8th St, Portland, OR 97035" -148125,27in 4K Gaming Monitor,1,389.99,01/29/19 23:21,"666 4th St, Seattle, WA 98101" -148126,USB-C Charging Cable,3,11.95,01/21/19 21:03,"900 Pine St, Dallas, TX 75001" -148127,34in Ultrawide Monitor,1,379.99,01/17/19 10:29,"711 Spruce St, Seattle, WA 98101" -148128,iPhone,1,700,01/25/19 12:14,"222 12th St, Los Angeles, CA 90001" -148129,Lightning Charging Cable,1,14.95,01/20/19 11:11,"805 Pine St, Portland, OR 97035" -148130,AAA Batteries (4-pack),3,2.99,01/01/19 17:36,"811 8th St, San Francisco, CA 94016" -148131,Wired Headphones,1,11.99,01/28/19 20:45,"262 8th St, Dallas, TX 75001" -148132,AAA Batteries (4-pack),1,2.99,01/17/19 18:30,"857 12th St, Boston, MA 02215" -148133,34in Ultrawide Monitor,1,379.99,01/01/19 14:23,"877 1st St, Dallas, TX 75001" -148134,USB-C Charging Cable,1,11.95,01/05/19 18:10,"377 Walnut St, New York City, NY 10001" -148135,AA Batteries (4-pack),2,3.84,01/14/19 11:51,"697 1st St, Portland, OR 97035" -148136,Bose SoundSport Headphones,1,99.99,01/13/19 00:49,"648 Highland St, New York City, NY 10001" -148137,Macbook Pro Laptop,1,1700,01/29/19 08:11,"343 North St, New York City, NY 10001" -148138,Lightning Charging Cable,1,14.95,01/13/19 17:07,"220 South St, Dallas, TX 75001" -148139,USB-C Charging Cable,1,11.95,01/10/19 15:35,"126 Johnson St, Boston, MA 02215" -148140,USB-C Charging Cable,1,11.95,01/23/19 18:39,"11 Dogwood St, Atlanta, GA 30301" -148141,Flatscreen TV,1,300,01/06/19 10:29,"32 6th St, Seattle, WA 98101" -148142,Lightning Charging Cable,1,14.95,01/04/19 13:41,"924 Jackson St, Los Angeles, CA 90001" -148143,AA Batteries (4-pack),1,3.84,01/11/19 16:13,"779 River St, Atlanta, GA 30301" -148144,USB-C Charging Cable,1,11.95,01/20/19 14:04,"402 Jefferson St, Atlanta, GA 30301" -148145,AAA Batteries (4-pack),1,2.99,01/15/19 00:30,"305 North St, New York City, NY 10001" -148146,LG Washing Machine,1,600.0,01/30/19 21:44,"115 Adams St, New York City, NY 10001" -148147,AAA Batteries (4-pack),2,2.99,01/18/19 00:10,"625 Willow St, Portland, OR 97035" -148148,Lightning Charging Cable,1,14.95,01/11/19 06:11,"532 11th St, Austin, TX 73301" -148149,USB-C Charging Cable,1,11.95,01/18/19 20:46,"402 West St, San Francisco, CA 94016" -148150,USB-C Charging Cable,1,11.95,01/10/19 11:18,"885 13th St, San Francisco, CA 94016" -148151,Macbook Pro Laptop,1,1700,01/23/19 11:06,"994 Dogwood St, Seattle, WA 98101" -148152,AA Batteries (4-pack),1,3.84,01/24/19 14:17,"397 Elm St, San Francisco, CA 94016" -148153,AA Batteries (4-pack),1,3.84,01/26/19 11:23,"487 Hickory St, Atlanta, GA 30301" -148154,AA Batteries (4-pack),1,3.84,01/31/19 02:32,"524 Highland St, Atlanta, GA 30301" -148154,Lightning Charging Cable,1,14.95,01/31/19 02:32,"524 Highland St, Atlanta, GA 30301" -148155,Apple Airpods Headphones,1,150,01/20/19 18:58,"272 Meadow St, New York City, NY 10001" -148156,AA Batteries (4-pack),3,3.84,01/20/19 06:15,"355 Washington St, San Francisco, CA 94016" -148157,Bose SoundSport Headphones,1,99.99,01/12/19 18:41,"412 Hill St, Dallas, TX 75001" -148158,AA Batteries (4-pack),1,3.84,01/19/19 14:48,"211 8th St, San Francisco, CA 94016" -148159,AA Batteries (4-pack),1,3.84,01/04/19 16:39,"636 5th St, New York City, NY 10001" -148160,Vareebadd Phone,1,400,01/02/19 07:22,"821 Madison St, New York City, NY 10001" -148161,Apple Airpods Headphones,1,150,01/05/19 00:18,"375 9th St, San Francisco, CA 94016" -148162,Apple Airpods Headphones,1,150,01/13/19 09:44,"400 South St, Boston, MA 02215" -148163,Vareebadd Phone,1,400,01/18/19 07:44,"279 6th St, Los Angeles, CA 90001" -148164,27in FHD Monitor,1,149.99,01/23/19 16:44,"362 13th St, Boston, MA 02215" -148165,Macbook Pro Laptop,1,1700,01/03/19 09:52,"125 Meadow St, Seattle, WA 98101" -148166,AAA Batteries (4-pack),1,2.99,01/10/19 21:58,"526 Washington St, New York City, NY 10001" -148167,Lightning Charging Cable,1,14.95,01/22/19 16:41,"641 West St, Seattle, WA 98101" -148168,Macbook Pro Laptop,1,1700,01/16/19 21:44,"755 Jefferson St, New York City, NY 10001" -148169,AA Batteries (4-pack),1,3.84,01/25/19 18:42,"486 14th St, San Francisco, CA 94016" -148170,Wired Headphones,1,11.99,01/03/19 19:10,"588 14th St, Atlanta, GA 30301" -148171,ThinkPad Laptop,1,999.99,01/11/19 21:08,"14 Center St, New York City, NY 10001" -148172,Apple Airpods Headphones,1,150,01/14/19 10:52,"757 5th St, San Francisco, CA 94016" -148173,AA Batteries (4-pack),1,3.84,01/14/19 12:49,"967 1st St, Portland, ME 04101" -148174,AAA Batteries (4-pack),2,2.99,01/10/19 22:17,"200 Meadow St, Atlanta, GA 30301" -148175,Google Phone,1,600,01/06/19 13:27,"506 Walnut St, San Francisco, CA 94016" -148175,USB-C Charging Cable,1,11.95,01/06/19 13:27,"506 Walnut St, San Francisco, CA 94016" -148176,27in FHD Monitor,1,149.99,01/29/19 14:22,"193 Walnut St, Los Angeles, CA 90001" -148177,Wired Headphones,1,11.99,01/03/19 22:38,"436 1st St, San Francisco, CA 94016" -148178,Google Phone,1,600,01/17/19 10:08,"190 West St, New York City, NY 10001" -148179,USB-C Charging Cable,1,11.95,01/18/19 22:50,"513 Center St, San Francisco, CA 94016" -148180,Apple Airpods Headphones,1,150,01/19/19 08:38,"169 Maple St, Dallas, TX 75001" -148181,Macbook Pro Laptop,1,1700,01/04/19 02:11,"1 Park St, New York City, NY 10001" -148182,Lightning Charging Cable,1,14.95,01/22/19 20:26,"240 Ridge St, Austin, TX 73301" -148183,AAA Batteries (4-pack),1,2.99,01/30/19 05:53,"277 Johnson St, San Francisco, CA 94016" -148184,Wired Headphones,1,11.99,01/08/19 12:43,"295 5th St, San Francisco, CA 94016" -148185,Macbook Pro Laptop,1,1700,01/31/19 19:18,"484 Chestnut St, Los Angeles, CA 90001" -148186,Google Phone,1,600,01/02/19 06:53,"285 Meadow St, New York City, NY 10001" -148187,Bose SoundSport Headphones,1,99.99,01/14/19 15:07,"969 River St, Atlanta, GA 30301" -148188,AAA Batteries (4-pack),1,2.99,01/10/19 08:23,"698 Meadow St, San Francisco, CA 94016" -148189,USB-C Charging Cable,1,11.95,01/24/19 09:51,"888 River St, Seattle, WA 98101" -148190,ThinkPad Laptop,1,999.99,01/10/19 15:11,"79 Madison St, San Francisco, CA 94016" -148191,AA Batteries (4-pack),1,3.84,01/15/19 15:25,"175 Dogwood St, Atlanta, GA 30301" -148192,Apple Airpods Headphones,1,150,01/24/19 15:44,"835 Park St, Seattle, WA 98101" -148193,34in Ultrawide Monitor,1,379.99,01/04/19 18:33,"968 Forest St, San Francisco, CA 94016" -148194,27in 4K Gaming Monitor,1,389.99,01/30/19 12:56,"940 Adams St, New York City, NY 10001" -148195,27in 4K Gaming Monitor,1,389.99,01/03/19 14:29,"245 Lakeview St, Austin, TX 73301" -148196,Wired Headphones,1,11.99,01/02/19 19:05,"850 8th St, Portland, OR 97035" -148197,Lightning Charging Cable,1,14.95,01/09/19 01:14,"849 Maple St, Dallas, TX 75001" -148198,AAA Batteries (4-pack),1,2.99,01/24/19 21:29,"825 Maple St, Boston, MA 02215" -148199,USB-C Charging Cable,1,11.95,01/15/19 20:55,"580 Center St, Atlanta, GA 30301" -148200,27in 4K Gaming Monitor,1,389.99,01/23/19 16:43,"218 Hickory St, Atlanta, GA 30301" -148201,AAA Batteries (4-pack),2,2.99,01/17/19 21:51,"48 13th St, Los Angeles, CA 90001" -148202,Apple Airpods Headphones,1,150,01/23/19 09:53,"248 10th St, New York City, NY 10001" -148203,AA Batteries (4-pack),1,3.84,01/31/19 13:28,"395 13th St, Los Angeles, CA 90001" -148204,AA Batteries (4-pack),1,3.84,01/28/19 22:23,"854 Walnut St, Austin, TX 73301" -148205,Bose SoundSport Headphones,1,99.99,01/10/19 23:25,"769 Jackson St, New York City, NY 10001" -148206,Lightning Charging Cable,1,14.95,01/12/19 11:30,"808 Center St, Los Angeles, CA 90001" -148207,Lightning Charging Cable,1,14.95,01/26/19 13:35,"231 9th St, New York City, NY 10001" -148208,Apple Airpods Headphones,1,150,01/08/19 20:23,"251 Adams St, Los Angeles, CA 90001" -148209,Vareebadd Phone,1,400,01/31/19 23:35,"934 4th St, Los Angeles, CA 90001" -148209,USB-C Charging Cable,1,11.95,01/31/19 23:35,"934 4th St, Los Angeles, CA 90001" -148210,Bose SoundSport Headphones,1,99.99,01/13/19 07:20,"620 Hill St, Boston, MA 02215" -148211,Wired Headphones,1,11.99,01/31/19 12:31,"130 Lakeview St, San Francisco, CA 94016" -148212,27in FHD Monitor,1,149.99,01/18/19 13:48,"573 Park St, Boston, MA 02215" -148213,Lightning Charging Cable,1,14.95,01/22/19 12:32,"337 10th St, San Francisco, CA 94016" -148214,Google Phone,1,600,01/17/19 09:33,"54 Washington St, Austin, TX 73301" -148215,iPhone,1,700,01/02/19 11:30,"991 Jefferson St, Portland, OR 97035" -148216,Wired Headphones,2,11.99,01/08/19 14:20,"351 5th St, Seattle, WA 98101" -148217,Apple Airpods Headphones,1,150,01/27/19 16:44,"72 Center St, Portland, ME 04101" -148218,Macbook Pro Laptop,1,1700,01/21/19 16:02,"868 5th St, New York City, NY 10001" -148219,USB-C Charging Cable,1,11.95,01/15/19 19:42,"967 12th St, Seattle, WA 98101" -148220,Lightning Charging Cable,1,14.95,01/30/19 23:56,"373 Wilson St, New York City, NY 10001" -148221,Bose SoundSport Headphones,1,99.99,01/03/19 08:22,"590 Cedar St, San Francisco, CA 94016" -148222,Apple Airpods Headphones,1,150,01/22/19 08:16,"176 Willow St, Dallas, TX 75001" -148223,USB-C Charging Cable,1,11.95,01/12/19 11:17,"374 Johnson St, San Francisco, CA 94016" -148224,Bose SoundSport Headphones,1,99.99,01/30/19 13:23,"537 Sunset St, Atlanta, GA 30301" -148225,Google Phone,1,600,01/25/19 14:30,"577 Jackson St, San Francisco, CA 94016" -148226,Apple Airpods Headphones,1,150,01/31/19 13:33,"743 Hill St, Portland, OR 97035" -148227,Wired Headphones,1,11.99,01/04/19 17:11,"523 Church St, Los Angeles, CA 90001" -148228,34in Ultrawide Monitor,1,379.99,01/26/19 17:50,"653 Hill St, Los Angeles, CA 90001" -148229,Apple Airpods Headphones,1,150,01/03/19 18:22,"810 Adams St, San Francisco, CA 94016" -148230,USB-C Charging Cable,1,11.95,01/09/19 04:34,"861 14th St, Seattle, WA 98101" -148231,iPhone,1,700,01/15/19 20:43,"204 2nd St, Boston, MA 02215" -148232,Bose SoundSport Headphones,1,99.99,01/21/19 12:42,"209 Madison St, Boston, MA 02215" -148233,AA Batteries (4-pack),1,3.84,01/08/19 17:59,"217 West St, Boston, MA 02215" -148234,Wired Headphones,1,11.99,01/21/19 18:16,"787 Sunset St, Boston, MA 02215" -148235,AAA Batteries (4-pack),1,2.99,01/23/19 21:37,"983 11th St, Los Angeles, CA 90001" -148236,Bose SoundSport Headphones,1,99.99,01/30/19 19:06,"962 2nd St, Atlanta, GA 30301" -148237,ThinkPad Laptop,1,999.99,01/14/19 07:10,"330 Lincoln St, Boston, MA 02215" -148238,AAA Batteries (4-pack),1,2.99,01/15/19 14:49,"133 Jefferson St, Austin, TX 73301" -148239,Macbook Pro Laptop,1,1700,01/15/19 21:20,"541 13th St, San Francisco, CA 94016" -148240,AAA Batteries (4-pack),1,2.99,01/20/19 10:14,"309 River St, Dallas, TX 75001" -148241,Apple Airpods Headphones,1,150,01/17/19 16:24,"40 Spruce St, Boston, MA 02215" -148242,AA Batteries (4-pack),1,3.84,01/13/19 18:38,"634 Elm St, San Francisco, CA 94016" -148243,AA Batteries (4-pack),1,3.84,01/18/19 22:56,"575 Chestnut St, Boston, MA 02215" -148244,Bose SoundSport Headphones,1,99.99,01/06/19 11:06,"38 Pine St, Dallas, TX 75001" -148245,AA Batteries (4-pack),2,3.84,01/05/19 20:26,"307 North St, Los Angeles, CA 90001" -148246,AA Batteries (4-pack),1,3.84,01/01/19 22:29,"16 Adams St, Seattle, WA 98101" -148247,AA Batteries (4-pack),1,3.84,01/28/19 19:28,"422 Meadow St, Dallas, TX 75001" -148248,34in Ultrawide Monitor,1,379.99,01/26/19 12:09,"52 North St, New York City, NY 10001" -148249,34in Ultrawide Monitor,1,379.99,01/29/19 13:28,"906 Chestnut St, Los Angeles, CA 90001" -148250,Bose SoundSport Headphones,1,99.99,01/16/19 18:09,"771 River St, San Francisco, CA 94016" -148251,27in FHD Monitor,1,149.99,01/24/19 19:33,"469 Center St, Atlanta, GA 30301" -148252,Wired Headphones,1,11.99,01/05/19 23:57,"770 9th St, San Francisco, CA 94016" -148253,USB-C Charging Cable,1,11.95,01/11/19 16:12,"35 6th St, Los Angeles, CA 90001" -148254,Google Phone,1,600,01/22/19 11:59,"784 12th St, Portland, OR 97035" -148254,USB-C Charging Cable,1,11.95,01/22/19 11:59,"784 12th St, Portland, OR 97035" -148255,Lightning Charging Cable,1,14.95,01/18/19 22:23,"509 Hill St, New York City, NY 10001" -148256,AA Batteries (4-pack),1,3.84,01/31/19 16:30,"403 Forest St, Atlanta, GA 30301" -148257,Lightning Charging Cable,1,14.95,01/10/19 16:59,"819 13th St, Los Angeles, CA 90001" -148258,Google Phone,1,600,01/21/19 16:25,"787 11th St, San Francisco, CA 94016" -148259,AAA Batteries (4-pack),1,2.99,01/24/19 16:41,"660 10th St, Portland, OR 97035" -148260,27in FHD Monitor,1,149.99,01/06/19 16:45,"494 Hill St, Austin, TX 73301" -148261,AAA Batteries (4-pack),1,2.99,01/24/19 10:21,"356 Pine St, Boston, MA 02215" -148262,USB-C Charging Cable,1,11.95,01/30/19 20:59,"198 Walnut St, San Francisco, CA 94016" -148263,AAA Batteries (4-pack),1,2.99,01/14/19 18:43,"456 West St, New York City, NY 10001" -148264,AAA Batteries (4-pack),1,2.99,01/02/19 16:46,"230 Johnson St, Atlanta, GA 30301" -148265,Bose SoundSport Headphones,1,99.99,01/13/19 13:16,"451 Johnson St, Seattle, WA 98101" -148266,Apple Airpods Headphones,1,150,01/24/19 15:12,"927 Cedar St, New York City, NY 10001" -148267,Lightning Charging Cable,1,14.95,01/24/19 07:25,"537 12th St, Los Angeles, CA 90001" -148268,34in Ultrawide Monitor,1,379.99,01/28/19 21:20,"379 Sunset St, San Francisco, CA 94016" -148269,Apple Airpods Headphones,1,150,01/10/19 21:14,"320 Center St, Los Angeles, CA 90001" -148270,Lightning Charging Cable,1,14.95,01/31/19 11:06,"284 South St, Los Angeles, CA 90001" -148271,AAA Batteries (4-pack),1,2.99,01/07/19 12:04,"576 5th St, Atlanta, GA 30301" -148272,LG Washing Machine,1,600.0,01/13/19 12:43,"594 9th St, Boston, MA 02215" -148273,34in Ultrawide Monitor,1,379.99,01/15/19 13:57,"510 Lake St, Dallas, TX 75001" -148274,Lightning Charging Cable,1,14.95,01/13/19 22:41,"218 10th St, San Francisco, CA 94016" -148275,Lightning Charging Cable,1,14.95,01/02/19 12:12,"38 Cedar St, New York City, NY 10001" -148275,20in Monitor,1,109.99,01/02/19 12:12,"38 Cedar St, New York City, NY 10001" -148276,Google Phone,1,600,01/23/19 10:15,"291 Lincoln St, Portland, OR 97035" -148277,Lightning Charging Cable,1,14.95,01/22/19 16:00,"54 Willow St, Dallas, TX 75001" -148278,AAA Batteries (4-pack),2,2.99,01/18/19 12:36,"576 Walnut St, Austin, TX 73301" -148279,Apple Airpods Headphones,1,150,01/29/19 11:31,"812 Maple St, San Francisco, CA 94016" -148280,USB-C Charging Cable,1,11.95,01/17/19 12:59,"415 Johnson St, Atlanta, GA 30301" -148281,ThinkPad Laptop,1,999.99,01/26/19 20:38,"961 13th St, Los Angeles, CA 90001" -148282,Google Phone,1,600,01/13/19 11:52,"960 Forest St, Dallas, TX 75001" -148283,Wired Headphones,1,11.99,01/09/19 18:48,"864 North St, Boston, MA 02215" -148284,Lightning Charging Cable,1,14.95,01/08/19 08:27,"719 10th St, San Francisco, CA 94016" -148285,AA Batteries (4-pack),2,3.84,01/21/19 08:11,"269 Park St, Portland, ME 04101" -148286,34in Ultrawide Monitor,1,379.99,01/17/19 18:41,"587 Sunset St, Boston, MA 02215" -148287,Lightning Charging Cable,1,14.95,01/01/19 13:47,"598 Washington St, Boston, MA 02215" -148288,AAA Batteries (4-pack),1,2.99,01/13/19 19:49,"986 7th St, New York City, NY 10001" -148289,Wired Headphones,1,11.99,01/13/19 12:25,"880 Willow St, San Francisco, CA 94016" -148290,Apple Airpods Headphones,1,150,01/13/19 09:45,"536 Adams St, Los Angeles, CA 90001" -148291,27in 4K Gaming Monitor,1,389.99,01/21/19 18:29,"210 5th St, Austin, TX 73301" -148292,Wired Headphones,1,11.99,01/10/19 18:51,"950 Hickory St, New York City, NY 10001" -148293,27in FHD Monitor,1,149.99,01/12/19 22:22,"670 River St, Los Angeles, CA 90001" -148294,Apple Airpods Headphones,1,150,01/12/19 12:35,"665 7th St, New York City, NY 10001" -148295,AA Batteries (4-pack),1,3.84,01/13/19 16:33,"191 Chestnut St, Austin, TX 73301" -148296,iPhone,1,700,01/08/19 09:54,"55 2nd St, San Francisco, CA 94016" -148296,Lightning Charging Cable,1,14.95,01/08/19 09:54,"55 2nd St, San Francisco, CA 94016" -148297,USB-C Charging Cable,1,11.95,01/09/19 19:52,"668 River St, Boston, MA 02215" -148298,27in FHD Monitor,1,149.99,01/05/19 12:37,"675 2nd St, Boston, MA 02215" -148299,Bose SoundSport Headphones,1,99.99,01/14/19 19:43,"539 13th St, San Francisco, CA 94016" -148300,AAA Batteries (4-pack),4,2.99,01/10/19 15:40,"464 Dogwood St, New York City, NY 10001" -148301,AA Batteries (4-pack),2,3.84,01/27/19 22:37,"457 2nd St, Boston, MA 02215" -148302,Wired Headphones,1,11.99,01/19/19 13:27,"866 Forest St, San Francisco, CA 94016" -148303,Wired Headphones,1,11.99,01/11/19 20:01,"455 Center St, San Francisco, CA 94016" -148304,Lightning Charging Cable,1,14.95,01/10/19 21:38,"71 Lincoln St, Boston, MA 02215" -148305,Wired Headphones,1,11.99,01/20/19 15:55,"233 9th St, New York City, NY 10001" -148306,Lightning Charging Cable,1,14.95,01/14/19 20:09,"101 6th St, Boston, MA 02215" -148307,Bose SoundSport Headphones,1,99.99,01/18/19 21:06,"848 Jackson St, New York City, NY 10001" -148308,LG Washing Machine,1,600.0,01/02/19 20:18,"871 Chestnut St, New York City, NY 10001" -148309,34in Ultrawide Monitor,1,379.99,01/29/19 14:54,"418 Willow St, Dallas, TX 75001" -148310,Bose SoundSport Headphones,1,99.99,01/12/19 12:53,"359 Lake St, Seattle, WA 98101" -148311,27in FHD Monitor,1,149.99,01/25/19 09:12,"968 Forest St, San Francisco, CA 94016" -148312,Wired Headphones,1,11.99,01/12/19 19:58,"171 6th St, Atlanta, GA 30301" -148313,USB-C Charging Cable,1,11.95,01/27/19 21:49,"392 Hickory St, Los Angeles, CA 90001" -148314,Flatscreen TV,1,300,01/04/19 13:51,"772 Lakeview St, Dallas, TX 75001" -148315,USB-C Charging Cable,1,11.95,01/07/19 20:57,"438 Cherry St, Portland, ME 04101" -148316,Lightning Charging Cable,1,14.95,01/17/19 15:05,"828 4th St, San Francisco, CA 94016" -148317,iPhone,1,700,01/10/19 21:45,"933 Forest St, San Francisco, CA 94016" -148318,Lightning Charging Cable,1,14.95,01/30/19 07:21,"159 1st St, Los Angeles, CA 90001" -148319,USB-C Charging Cable,1,11.95,01/18/19 13:57,"561 Lake St, San Francisco, CA 94016" -148320,27in FHD Monitor,1,149.99,01/05/19 10:13,"277 2nd St, Atlanta, GA 30301" -148321,AA Batteries (4-pack),1,3.84,01/15/19 08:11,"440 River St, Dallas, TX 75001" -148322,Wired Headphones,1,11.99,01/09/19 14:24,"893 5th St, Los Angeles, CA 90001" -148323,USB-C Charging Cable,1,11.95,01/10/19 19:46,"421 Johnson St, San Francisco, CA 94016" -148324,Apple Airpods Headphones,1,150,01/27/19 22:42,"955 9th St, San Francisco, CA 94016" -148324,iPhone,1,700,01/27/19 22:42,"955 9th St, San Francisco, CA 94016" -148325,Apple Airpods Headphones,1,150,01/20/19 18:06,"187 7th St, Atlanta, GA 30301" -148326,Apple Airpods Headphones,1,150,01/19/19 12:00,"135 North St, Atlanta, GA 30301" -148327,Bose SoundSport Headphones,1,99.99,01/15/19 18:39,"61 Dogwood St, Seattle, WA 98101" -148328,Apple Airpods Headphones,1,150,01/24/19 22:40,"670 River St, Los Angeles, CA 90001" -148329,USB-C Charging Cable,1,11.95,01/19/19 20:38,"15 Sunset St, New York City, NY 10001" -148330,AA Batteries (4-pack),1,3.84,01/07/19 19:49,"267 Lake St, Los Angeles, CA 90001" -148331,Wired Headphones,1,11.99,01/15/19 11:44,"761 Walnut St, San Francisco, CA 94016" -148332,Lightning Charging Cable,1,14.95,01/03/19 18:04,"427 Main St, Austin, TX 73301" -148333,27in FHD Monitor,1,149.99,01/29/19 21:52,"296 Walnut St, San Francisco, CA 94016" -148334,Google Phone,1,600,01/03/19 15:30,"930 4th St, San Francisco, CA 94016" -148335,iPhone,1,700,01/31/19 16:48,"696 Main St, Boston, MA 02215" -148336,AAA Batteries (4-pack),2,2.99,01/24/19 09:09,"867 Main St, Los Angeles, CA 90001" -148337,Apple Airpods Headphones,1,150,01/02/19 21:37,"53 Madison St, Los Angeles, CA 90001" -148338,Wired Headphones,1,11.99,01/31/19 20:22,"811 Highland St, Boston, MA 02215" -148339,27in FHD Monitor,1,149.99,01/09/19 17:14,"845 Meadow St, Austin, TX 73301" -148340,Bose SoundSport Headphones,1,99.99,01/08/19 21:42,"343 Hickory St, Boston, MA 02215" -148341,Wired Headphones,1,11.99,01/20/19 18:32,"935 North St, Los Angeles, CA 90001" -148342,Apple Airpods Headphones,1,150,01/18/19 13:14,"271 Lincoln St, Atlanta, GA 30301" -148343,Flatscreen TV,1,300,01/04/19 12:33,"608 4th St, Dallas, TX 75001" -148344,iPhone,1,700,01/30/19 12:31,"965 9th St, San Francisco, CA 94016" -148345,AAA Batteries (4-pack),1,2.99,01/09/19 15:53,"533 South St, Los Angeles, CA 90001" -148346,USB-C Charging Cable,1,11.95,01/30/19 20:27,"540 Walnut St, New York City, NY 10001" -148347,Wired Headphones,1,11.99,01/27/19 23:55,"424 North St, New York City, NY 10001" -148348,AAA Batteries (4-pack),1,2.99,01/06/19 14:20,"283 Forest St, San Francisco, CA 94016" -148349,AAA Batteries (4-pack),1,2.99,01/16/19 14:39,"401 Walnut St, Los Angeles, CA 90001" -148350,USB-C Charging Cable,1,11.95,01/08/19 10:04,"364 Maple St, Dallas, TX 75001" -148351,Wired Headphones,1,11.99,01/12/19 16:04,"320 Highland St, New York City, NY 10001" -148352,AA Batteries (4-pack),1,3.84,01/11/19 21:40,"897 Willow St, New York City, NY 10001" -148353,Apple Airpods Headphones,1,150,01/07/19 19:05,"769 6th St, Los Angeles, CA 90001" -148354,34in Ultrawide Monitor,1,379.99,01/19/19 13:56,"30 6th St, Seattle, WA 98101" -148355,Bose SoundSport Headphones,1,99.99,01/13/19 18:43,"990 Cherry St, San Francisco, CA 94016" -148356,AAA Batteries (4-pack),1,2.99,01/01/19 15:27,"482 14th St, Austin, TX 73301" -148357,AA Batteries (4-pack),1,3.84,01/19/19 10:40,"806 Cherry St, New York City, NY 10001" -148358,USB-C Charging Cable,1,11.95,01/27/19 09:08,"117 Pine St, New York City, NY 10001" -148359,ThinkPad Laptop,1,999.99,01/30/19 23:57,"856 Johnson St, Los Angeles, CA 90001" -148360,USB-C Charging Cable,1,11.95,01/18/19 13:09,"417 Park St, San Francisco, CA 94016" -148361,Bose SoundSport Headphones,1,99.99,01/12/19 10:15,"632 Hill St, San Francisco, CA 94016" -148362,27in FHD Monitor,1,149.99,01/08/19 20:26,"211 6th St, Seattle, WA 98101" -148363,27in FHD Monitor,1,149.99,01/09/19 20:49,"107 1st St, Boston, MA 02215" -148364,Lightning Charging Cable,1,14.95,01/23/19 09:32,"25 South St, Los Angeles, CA 90001" -148365,iPhone,1,700,01/02/19 16:01,"496 Church St, San Francisco, CA 94016" -148366,Lightning Charging Cable,1,14.95,01/27/19 11:15,"277 Ridge St, Boston, MA 02215" -148367,34in Ultrawide Monitor,1,379.99,01/16/19 11:45,"345 1st St, San Francisco, CA 94016" -148368,USB-C Charging Cable,1,11.95,01/16/19 01:56,"896 8th St, San Francisco, CA 94016" -148369,iPhone,1,700,01/10/19 20:27,"606 Hill St, New York City, NY 10001" -148369,Lightning Charging Cable,1,14.95,01/10/19 20:27,"606 Hill St, New York City, NY 10001" -148370,iPhone,1,700,01/27/19 18:13,"464 13th St, Boston, MA 02215" -148371,Lightning Charging Cable,1,14.95,01/02/19 13:20,"123 10th St, Seattle, WA 98101" -148372,Wired Headphones,1,11.99,01/21/19 15:13,"118 Cedar St, Atlanta, GA 30301" -148373,Wired Headphones,1,11.99,01/27/19 14:59,"582 North St, Austin, TX 73301" -148374,iPhone,1,700,01/20/19 15:31,"613 Willow St, Atlanta, GA 30301" -148375,AAA Batteries (4-pack),1,2.99,01/04/19 18:54,"656 Sunset St, New York City, NY 10001" -148376,USB-C Charging Cable,1,11.95,01/20/19 17:27,"141 Ridge St, Los Angeles, CA 90001" -148377,Apple Airpods Headphones,1,150,01/16/19 12:36,"7 5th St, New York City, NY 10001" -148378,Apple Airpods Headphones,1,150,01/26/19 17:56,"429 Adams St, Seattle, WA 98101" -148379,USB-C Charging Cable,1,11.95,01/12/19 00:30,"729 Jackson St, Portland, OR 97035" -148380,ThinkPad Laptop,1,999.99,01/25/19 17:04,"369 6th St, New York City, NY 10001" -148381,AA Batteries (4-pack),1,3.84,01/15/19 09:50,"232 2nd St, Dallas, TX 75001" -148382,20in Monitor,1,109.99,01/13/19 15:31,"622 Lincoln St, San Francisco, CA 94016" -148383,Wired Headphones,1,11.99,01/19/19 20:39,"156 11th St, New York City, NY 10001" -148384,USB-C Charging Cable,1,11.95,01/26/19 16:09,"619 South St, Atlanta, GA 30301" -148385,AAA Batteries (4-pack),1,2.99,01/06/19 09:42,"238 Cedar St, Boston, MA 02215" -148386,Vareebadd Phone,1,400,01/11/19 21:11,"428 8th St, New York City, NY 10001" -148387,Bose SoundSport Headphones,1,99.99,01/07/19 21:12,"115 Lake St, San Francisco, CA 94016" -148388,iPhone,1,700,01/20/19 18:55,"652 Spruce St, Seattle, WA 98101" -148389,USB-C Charging Cable,1,11.95,01/08/19 11:20,"510 Dogwood St, Portland, ME 04101" -148390,27in FHD Monitor,1,149.99,01/13/19 20:59,"114 Park St, New York City, NY 10001" -148391,AA Batteries (4-pack),1,3.84,01/05/19 11:30,"203 Main St, San Francisco, CA 94016" -148392,USB-C Charging Cable,1,11.95,01/21/19 17:10,"310 Highland St, Atlanta, GA 30301" -148393,Macbook Pro Laptop,1,1700,01/03/19 11:32,"580 6th St, Boston, MA 02215" -148394,Apple Airpods Headphones,1,150,01/18/19 14:43,"148 Walnut St, Boston, MA 02215" -148395,Bose SoundSport Headphones,1,99.99,01/08/19 08:46,"974 Cedar St, Boston, MA 02215" -148396,Lightning Charging Cable,1,14.95,01/22/19 21:07,"363 9th St, San Francisco, CA 94016" -148397,Apple Airpods Headphones,1,150,01/02/19 14:29,"231 Madison St, Portland, ME 04101" -148398,Lightning Charging Cable,1,14.95,01/28/19 20:18,"35 Forest St, Dallas, TX 75001" -148399,Bose SoundSport Headphones,1,99.99,01/23/19 11:04,"815 South St, San Francisco, CA 94016" -148400,iPhone,1,700,01/31/19 13:44,"248 Center St, Atlanta, GA 30301" -148400,Lightning Charging Cable,1,14.95,01/31/19 13:44,"248 Center St, Atlanta, GA 30301" -148401,AAA Batteries (4-pack),2,2.99,01/04/19 17:39,"674 Dogwood St, Boston, MA 02215" -148402,Lightning Charging Cable,1,14.95,01/29/19 22:08,"211 Jefferson St, New York City, NY 10001" -148403,Apple Airpods Headphones,1,150,01/09/19 13:22,"11 14th St, San Francisco, CA 94016" -148404,Wired Headphones,1,11.99,01/15/19 09:29,"742 Lake St, San Francisco, CA 94016" -148405,Bose SoundSport Headphones,1,99.99,01/17/19 08:02,"456 Walnut St, Los Angeles, CA 90001" -148406,Wired Headphones,2,11.99,01/28/19 14:00,"324 North St, Austin, TX 73301" -148407,Lightning Charging Cable,1,14.95,01/20/19 08:40,"923 9th St, Austin, TX 73301" -148408,AA Batteries (4-pack),1,3.84,01/03/19 19:24,"421 Walnut St, San Francisco, CA 94016" -148409,Lightning Charging Cable,2,14.95,01/24/19 10:51,"194 12th St, Austin, TX 73301" -148410,AAA Batteries (4-pack),1,2.99,01/22/19 19:05,"176 Ridge St, Dallas, TX 75001" -148411,Wired Headphones,1,11.99,01/12/19 19:54,"263 Washington St, New York City, NY 10001" -148412,iPhone,1,700,01/14/19 18:05,"739 Hill St, Portland, OR 97035" -148413,AA Batteries (4-pack),1,3.84,01/22/19 12:42,"965 Hill St, Dallas, TX 75001" -148414,AA Batteries (4-pack),1,3.84,01/29/19 06:23,"879 Church St, Los Angeles, CA 90001" -148415,AA Batteries (4-pack),1,3.84,01/09/19 19:05,"816 5th St, Austin, TX 73301" -148416,iPhone,1,700,01/02/19 11:43,"489 7th St, New York City, NY 10001" -148417,AAA Batteries (4-pack),1,2.99,01/24/19 17:58,"750 Maple St, Austin, TX 73301" -148418,34in Ultrawide Monitor,1,379.99,01/26/19 13:50,"602 14th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -148419,Wired Headphones,1,11.99,01/17/19 20:05,"232 14th St, Dallas, TX 75001" -148420,USB-C Charging Cable,1,11.95,01/17/19 05:30,"704 Ridge St, San Francisco, CA 94016" -148421,Bose SoundSport Headphones,1,99.99,01/08/19 12:28,"256 8th St, Portland, ME 04101" -148422,Wired Headphones,2,11.99,01/22/19 16:24,"998 Elm St, Austin, TX 73301" -148423,USB-C Charging Cable,1,11.95,01/01/19 14:51,"56 Madison St, San Francisco, CA 94016" -148424,AA Batteries (4-pack),1,3.84,01/09/19 12:14,"273 4th St, San Francisco, CA 94016" -148425,Wired Headphones,1,11.99,01/03/19 10:41,"254 Adams St, San Francisco, CA 94016" -148426,AA Batteries (4-pack),1,3.84,01/12/19 13:51,"347 Walnut St, New York City, NY 10001" -148427,AA Batteries (4-pack),1,3.84,01/14/19 16:46,"697 North St, New York City, NY 10001" -148428,27in 4K Gaming Monitor,1,389.99,01/18/19 17:35,"760 Maple St, Austin, TX 73301" -148429,AA Batteries (4-pack),1,3.84,01/26/19 17:42,"299 7th St, Dallas, TX 75001" -148430,AAA Batteries (4-pack),3,2.99,01/13/19 14:55,"774 North St, San Francisco, CA 94016" -148431,Lightning Charging Cable,1,14.95,01/18/19 09:01,"239 Maple St, Austin, TX 73301" -148432,Wired Headphones,1,11.99,01/06/19 01:45,"936 Main St, Los Angeles, CA 90001" -148433,USB-C Charging Cable,1,11.95,01/24/19 12:42,"92 Maple St, Atlanta, GA 30301" -148434,Wired Headphones,1,11.99,01/14/19 00:03,"846 9th St, Los Angeles, CA 90001" -148435,USB-C Charging Cable,1,11.95,01/15/19 08:45,"460 River St, Los Angeles, CA 90001" -148436,USB-C Charging Cable,1,11.95,01/14/19 10:46,"472 Forest St, Dallas, TX 75001" -148437,AAA Batteries (4-pack),3,2.99,01/06/19 19:30,"736 9th St, Atlanta, GA 30301" -148438,34in Ultrawide Monitor,1,379.99,01/10/19 20:10,"253 Center St, San Francisco, CA 94016" -148439,AA Batteries (4-pack),1,3.84,01/23/19 02:28,"843 13th St, Boston, MA 02215" -148440,USB-C Charging Cable,1,11.95,01/28/19 19:27,"82 Center St, Dallas, TX 75001" -148441,Google Phone,1,600,01/03/19 11:13,"602 Hill St, Los Angeles, CA 90001" -148442,AA Batteries (4-pack),2,3.84,01/01/19 17:45,"583 Washington St, Austin, TX 73301" -148443,AA Batteries (4-pack),1,3.84,01/31/19 14:42,"120 Center St, Boston, MA 02215" -148444,USB-C Charging Cable,1,11.95,01/30/19 13:00,"608 Wilson St, Austin, TX 73301" -148445,Wired Headphones,1,11.99,01/01/19 22:46,"659 Ridge St, Atlanta, GA 30301" -148446,USB-C Charging Cable,1,11.95,01/28/19 18:16,"693 5th St, San Francisco, CA 94016" -148447,AAA Batteries (4-pack),1,2.99,01/01/19 19:16,"797 4th St, New York City, NY 10001" -148448,ThinkPad Laptop,1,999.99,01/11/19 23:54,"878 South St, Atlanta, GA 30301" -148449,Lightning Charging Cable,1,14.95,01/14/19 12:02,"945 Spruce St, New York City, NY 10001" -148450,iPhone,1,700,01/01/19 12:02,"761 Lakeview St, Dallas, TX 75001" -148450,Lightning Charging Cable,1,14.95,01/01/19 12:02,"761 Lakeview St, Dallas, TX 75001" -148451,Flatscreen TV,1,300,01/28/19 10:24,"780 9th St, New York City, NY 10001" -148452,Bose SoundSport Headphones,1,99.99,01/28/19 07:27,"892 8th St, Seattle, WA 98101" -148453,Lightning Charging Cable,1,14.95,01/20/19 21:39,"15 Ridge St, New York City, NY 10001" -148454,34in Ultrawide Monitor,1,379.99,01/21/19 15:40,"450 Jefferson St, Los Angeles, CA 90001" -148455,AA Batteries (4-pack),1,3.84,01/17/19 21:50,"292 Lake St, Los Angeles, CA 90001" -148456,AAA Batteries (4-pack),2,2.99,01/19/19 01:01,"784 Cherry St, Los Angeles, CA 90001" -148457,Flatscreen TV,1,300,01/11/19 12:40,"277 4th St, Los Angeles, CA 90001" -148458,ThinkPad Laptop,1,999.99,01/14/19 13:35,"242 Forest St, Los Angeles, CA 90001" -148459,USB-C Charging Cable,2,11.95,01/27/19 17:51,"644 North St, New York City, NY 10001" -148460,USB-C Charging Cable,1,11.95,01/04/19 15:17,"865 Jackson St, San Francisco, CA 94016" -148461,Apple Airpods Headphones,1,150,01/14/19 13:28,"841 Maple St, Portland, OR 97035" -148462,AA Batteries (4-pack),1,3.84,01/16/19 22:03,"154 Washington St, Dallas, TX 75001" -148463,AA Batteries (4-pack),1,3.84,01/27/19 21:50,"663 North St, Dallas, TX 75001" -148464,ThinkPad Laptop,1,999.99,01/16/19 20:51,"609 Hickory St, Portland, OR 97035" -148465,USB-C Charging Cable,1,11.95,01/28/19 20:21,"162 6th St, New York City, NY 10001" -148466,Apple Airpods Headphones,1,150,01/21/19 12:58,"763 Main St, Los Angeles, CA 90001" -148467,Apple Airpods Headphones,1,150,01/04/19 13:14,"593 Spruce St, Los Angeles, CA 90001" -148468,27in FHD Monitor,1,149.99,01/05/19 00:07,"879 12th St, Boston, MA 02215" -148469,Lightning Charging Cable,1,14.95,01/07/19 18:45,"876 9th St, New York City, NY 10001" -148470,USB-C Charging Cable,1,11.95,01/08/19 23:59,"848 South St, San Francisco, CA 94016" -148471,AA Batteries (4-pack),1,3.84,01/20/19 23:00,"797 Washington St, Boston, MA 02215" -148472,Lightning Charging Cable,1,14.95,01/29/19 10:36,"852 Cherry St, Dallas, TX 75001" -148473,USB-C Charging Cable,1,11.95,01/14/19 22:57,"63 Washington St, Dallas, TX 75001" -148474,Lightning Charging Cable,1,14.95,01/16/19 12:32,"212 Lakeview St, New York City, NY 10001" -148475,USB-C Charging Cable,1,11.95,01/19/19 22:35,"20 Ridge St, Los Angeles, CA 90001" -148476,Wired Headphones,1,11.99,01/21/19 22:11,"110 Dogwood St, Dallas, TX 75001" -148477,27in 4K Gaming Monitor,1,389.99,01/13/19 04:12,"459 Adams St, Seattle, WA 98101" -148478,AA Batteries (4-pack),3,3.84,01/09/19 16:02,"945 Wilson St, Atlanta, GA 30301" -148479,Lightning Charging Cable,3,14.95,01/25/19 20:03,"341 Cherry St, Atlanta, GA 30301" -148480,iPhone,1,700,01/21/19 17:35,"279 Highland St, Atlanta, GA 30301" -148481,AAA Batteries (4-pack),1,2.99,01/15/19 12:38,"577 Jefferson St, New York City, NY 10001" -148482,Lightning Charging Cable,1,14.95,01/14/19 13:51,"907 Highland St, San Francisco, CA 94016" -148483,Lightning Charging Cable,1,14.95,01/06/19 14:05,"314 Church St, Dallas, TX 75001" -148484,Wired Headphones,1,11.99,01/14/19 22:08,"403 12th St, Portland, OR 97035" -148485,27in 4K Gaming Monitor,1,389.99,01/05/19 18:35,"775 Cherry St, Boston, MA 02215" -148486,USB-C Charging Cable,1,11.95,01/07/19 12:05,"408 11th St, Los Angeles, CA 90001" -148487,34in Ultrawide Monitor,1,379.99,01/12/19 12:11,"841 11th St, Boston, MA 02215" -148488,27in 4K Gaming Monitor,1,389.99,01/27/19 13:56,"774 4th St, Dallas, TX 75001" -148489,AA Batteries (4-pack),2,3.84,01/30/19 21:32,"984 South St, Los Angeles, CA 90001" -148490,AA Batteries (4-pack),3,3.84,01/21/19 16:13,"107 Sunset St, San Francisco, CA 94016" -148491,USB-C Charging Cable,1,11.95,01/15/19 18:36,"573 Maple St, San Francisco, CA 94016" -148492,Apple Airpods Headphones,1,150,01/08/19 00:00,"921 Main St, San Francisco, CA 94016" -148493,Google Phone,1,600,01/19/19 21:36,"358 7th St, Austin, TX 73301" -148494,Wired Headphones,1,11.99,01/02/19 21:53,"752 Meadow St, Dallas, TX 75001" -148495,USB-C Charging Cable,1,11.95,01/23/19 12:57,"247 Dogwood St, San Francisco, CA 94016" -148496,20in Monitor,1,109.99,01/21/19 09:25,"801 Jackson St, Atlanta, GA 30301" -148497,AAA Batteries (4-pack),1,2.99,01/04/19 13:27,"7 West St, San Francisco, CA 94016" -148498,iPhone,1,700,01/19/19 11:16,"197 2nd St, Boston, MA 02215" -148499,Apple Airpods Headphones,1,150,01/19/19 14:46,"182 12th St, San Francisco, CA 94016" -148500,AA Batteries (4-pack),1,3.84,01/17/19 18:59,"537 Cedar St, New York City, NY 10001" -148501,Lightning Charging Cable,1,14.95,01/03/19 11:12,"792 Pine St, New York City, NY 10001" -148502,Wired Headphones,1,11.99,01/21/19 11:56,"382 Park St, Portland, OR 97035" -148503,AAA Batteries (4-pack),2,2.99,01/19/19 06:55,"441 4th St, San Francisco, CA 94016" -148504,Apple Airpods Headphones,1,150,01/12/19 23:19,"239 Center St, Seattle, WA 98101" -148505,Lightning Charging Cable,1,14.95,01/28/19 18:57,"592 Dogwood St, Boston, MA 02215" -148506,USB-C Charging Cable,1,11.95,01/28/19 21:30,"359 Madison St, Los Angeles, CA 90001" -148507,Apple Airpods Headphones,1,150,01/28/19 12:41,"904 River St, Dallas, TX 75001" -148508,Wired Headphones,1,11.99,01/15/19 08:32,"318 Lakeview St, Austin, TX 73301" -148509,AA Batteries (4-pack),1,3.84,01/20/19 23:33,"537 Johnson St, Seattle, WA 98101" -148510,AAA Batteries (4-pack),1,2.99,01/07/19 21:31,"545 Pine St, New York City, NY 10001" -148511,USB-C Charging Cable,1,11.95,01/03/19 06:53,"536 7th St, Austin, TX 73301" -148512,Wired Headphones,1,11.99,01/20/19 11:09,"605 14th St, Seattle, WA 98101" -148513,Lightning Charging Cable,1,14.95,01/11/19 05:32,"77 10th St, Austin, TX 73301" -148514,Bose SoundSport Headphones,1,99.99,01/28/19 10:28,"35 Adams St, Portland, OR 97035" -148515,USB-C Charging Cable,1,11.95,01/05/19 14:36,"494 Lake St, Dallas, TX 75001" -148516,27in 4K Gaming Monitor,1,389.99,01/23/19 11:50,"199 Willow St, Boston, MA 02215" -148517,Apple Airpods Headphones,1,150,01/29/19 17:46,"316 Hickory St, Seattle, WA 98101" -148518,USB-C Charging Cable,1,11.95,01/04/19 19:02,"116 4th St, San Francisco, CA 94016" -148519,AA Batteries (4-pack),2,3.84,01/11/19 15:24,"629 10th St, San Francisco, CA 94016" -148520,AAA Batteries (4-pack),1,2.99,01/04/19 11:22,"23 Meadow St, Los Angeles, CA 90001" -148521,Lightning Charging Cable,1,14.95,01/02/19 20:29,"239 7th St, New York City, NY 10001" -148522,AA Batteries (4-pack),2,3.84,01/03/19 10:00,"127 10th St, Boston, MA 02215" -148522,Bose SoundSport Headphones,1,99.99,01/03/19 10:00,"127 10th St, Boston, MA 02215" -148523,Apple Airpods Headphones,1,150,01/10/19 19:53,"554 Sunset St, Austin, TX 73301" -148524,Wired Headphones,1,11.99,01/22/19 15:53,"727 9th St, Austin, TX 73301" -148525,27in 4K Gaming Monitor,1,389.99,01/14/19 17:57,"348 Lincoln St, Portland, ME 04101" -148526,Lightning Charging Cable,1,14.95,01/07/19 12:40,"599 Madison St, Boston, MA 02215" -148527,Apple Airpods Headphones,1,150,01/19/19 18:06,"694 Ridge St, New York City, NY 10001" -148528,Bose SoundSport Headphones,1,99.99,01/18/19 23:47,"584 Hickory St, New York City, NY 10001" -148529,AAA Batteries (4-pack),1,2.99,01/11/19 10:39,"952 5th St, Boston, MA 02215" -148530,Apple Airpods Headphones,1,150,01/24/19 11:39,"423 13th St, Los Angeles, CA 90001" -148531,AAA Batteries (4-pack),1,2.99,01/05/19 15:55,"282 11th St, Dallas, TX 75001" -148532,Apple Airpods Headphones,1,150,01/27/19 13:53,"716 Park St, New York City, NY 10001" -148533,iPhone,1,700,01/13/19 09:25,"837 Maple St, Atlanta, GA 30301" -148534,27in 4K Gaming Monitor,1,389.99,01/16/19 10:19,"966 10th St, New York City, NY 10001" -148535,Wired Headphones,1,11.99,01/29/19 12:21,"773 Willow St, San Francisco, CA 94016" -148536,iPhone,1,700,01/22/19 10:43,"59 Lincoln St, Dallas, TX 75001" -148537,USB-C Charging Cable,1,11.95,01/11/19 19:26,"330 Elm St, New York City, NY 10001" -148538,AAA Batteries (4-pack),1,2.99,01/11/19 11:06,"385 Jackson St, Austin, TX 73301" -148539,Lightning Charging Cable,2,14.95,01/03/19 13:58,"941 Meadow St, Boston, MA 02215" -148540,Wired Headphones,1,11.99,01/04/19 08:34,"934 Meadow St, Austin, TX 73301" -148541,AAA Batteries (4-pack),1,2.99,01/03/19 12:39,"701 South St, Seattle, WA 98101" -148542,Wired Headphones,1,11.99,01/08/19 19:09,"456 Johnson St, Boston, MA 02215" -148543,Lightning Charging Cable,1,14.95,01/05/19 17:30,"562 7th St, Boston, MA 02215" -148544,AAA Batteries (4-pack),2,2.99,01/08/19 12:49,"785 10th St, Dallas, TX 75001" -148545,USB-C Charging Cable,1,11.95,01/06/19 20:36,"179 9th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -148546,20in Monitor,1,109.99,01/27/19 15:03,"813 Main St, New York City, NY 10001" -148547,AA Batteries (4-pack),1,3.84,01/07/19 20:36,"608 Hickory St, Seattle, WA 98101" -148548,Apple Airpods Headphones,1,150,01/13/19 15:09,"553 Lake St, Portland, OR 97035" -148549,Bose SoundSport Headphones,1,99.99,01/25/19 10:53,"578 14th St, Austin, TX 73301" -148550,USB-C Charging Cable,1,11.95,01/14/19 18:36,"313 12th St, Boston, MA 02215" -148550,AA Batteries (4-pack),1,3.84,01/14/19 18:36,"313 12th St, Boston, MA 02215" -148551,34in Ultrawide Monitor,1,379.99,01/27/19 09:00,"666 11th St, Dallas, TX 75001" -148552,AAA Batteries (4-pack),1,2.99,01/22/19 15:57,"787 Lake St, New York City, NY 10001" -148553,Wired Headphones,1,11.99,01/09/19 14:45,"937 11th St, San Francisco, CA 94016" -148554,ThinkPad Laptop,1,999.99,01/11/19 07:41,"472 Jackson St, Atlanta, GA 30301" -148555,AAA Batteries (4-pack),2,2.99,01/04/19 16:54,"262 Forest St, New York City, NY 10001" -148556,AAA Batteries (4-pack),1,2.99,01/07/19 21:46,"458 1st St, Boston, MA 02215" -148557,AA Batteries (4-pack),1,3.84,01/07/19 21:16,"279 Willow St, Boston, MA 02215" -148558,34in Ultrawide Monitor,1,379.99,01/20/19 15:24,"693 13th St, San Francisco, CA 94016" -148559,Apple Airpods Headphones,1,150,01/23/19 07:44,"230 6th St, Boston, MA 02215" -148560,AAA Batteries (4-pack),1,2.99,01/10/19 21:46,"403 Lakeview St, Seattle, WA 98101" -148561,Wired Headphones,1,11.99,01/19/19 14:35,"376 2nd St, San Francisco, CA 94016" -148562,AA Batteries (4-pack),1,3.84,01/13/19 09:48,"952 7th St, Portland, ME 04101" -148563,Wired Headphones,1,11.99,01/14/19 18:44,"113 Dogwood St, Atlanta, GA 30301" -148564,AAA Batteries (4-pack),2,2.99,01/14/19 20:58,"556 North St, New York City, NY 10001" -148565,27in FHD Monitor,1,149.99,01/16/19 10:59,"724 Center St, San Francisco, CA 94016" -148566,AAA Batteries (4-pack),2,2.99,01/09/19 15:33,"466 Chestnut St, Atlanta, GA 30301" -148567,ThinkPad Laptop,1,999.99,01/19/19 15:09,"224 4th St, Seattle, WA 98101" -148568,AAA Batteries (4-pack),1,2.99,01/30/19 17:35,"952 Meadow St, Seattle, WA 98101" -148569,Bose SoundSport Headphones,1,99.99,01/08/19 13:59,"625 Madison St, Portland, OR 97035" -148570,Apple Airpods Headphones,1,150,01/30/19 15:40,"645 7th St, San Francisco, CA 94016" -148571,Lightning Charging Cable,1,14.95,01/05/19 22:12,"63 Maple St, Portland, OR 97035" -148572,Google Phone,1,600,01/28/19 10:55,"926 West St, Los Angeles, CA 90001" -148573,Vareebadd Phone,1,400,01/20/19 20:28,"565 2nd St, New York City, NY 10001" -148574,20in Monitor,1,109.99,01/10/19 23:18,"413 Dogwood St, Los Angeles, CA 90001" -148575,Lightning Charging Cable,1,14.95,01/07/19 11:27,"336 Ridge St, San Francisco, CA 94016" -148576,AAA Batteries (4-pack),1,2.99,01/17/19 13:51,"15 Cedar St, Boston, MA 02215" -148577,AA Batteries (4-pack),1,3.84,01/17/19 23:37,"430 Main St, Los Angeles, CA 90001" -148578,27in 4K Gaming Monitor,1,389.99,01/14/19 20:55,"296 10th St, Los Angeles, CA 90001" -148579,AAA Batteries (4-pack),1,2.99,01/03/19 10:42,"528 5th St, Dallas, TX 75001" -148580,27in FHD Monitor,1,149.99,01/02/19 13:07,"657 Pine St, Seattle, WA 98101" -148581,Apple Airpods Headphones,1,150,01/27/19 18:17,"370 Jackson St, Los Angeles, CA 90001" -148582,AA Batteries (4-pack),1,3.84,01/13/19 03:01,"487 Chestnut St, Portland, OR 97035" -148583,iPhone,1,700,01/23/19 11:15,"873 6th St, Dallas, TX 75001" -148584,Bose SoundSport Headphones,1,99.99,01/07/19 12:21,"968 Lakeview St, Austin, TX 73301" -148585,Apple Airpods Headphones,1,150,01/29/19 21:48,"133 4th St, Los Angeles, CA 90001" -148586,Bose SoundSport Headphones,1,99.99,01/07/19 18:37,"552 4th St, San Francisco, CA 94016" -148587,AAA Batteries (4-pack),1,2.99,01/25/19 19:41,"921 Madison St, Atlanta, GA 30301" -148588,Wired Headphones,2,11.99,01/04/19 07:59,"7 Jefferson St, Boston, MA 02215" -148589,Wired Headphones,1,11.99,01/07/19 13:15,"476 Cherry St, San Francisco, CA 94016" -148590,Lightning Charging Cable,1,14.95,01/06/19 18:03,"897 Jefferson St, Los Angeles, CA 90001" -148591,AA Batteries (4-pack),1,3.84,01/10/19 08:40,"409 Highland St, Los Angeles, CA 90001" -148592,Lightning Charging Cable,2,14.95,01/28/19 14:05,"63 12th St, San Francisco, CA 94016" -148593,AAA Batteries (4-pack),1,2.99,01/13/19 16:55,"793 Pine St, Los Angeles, CA 90001" -148594,AAA Batteries (4-pack),1,2.99,01/25/19 18:27,"801 11th St, Portland, OR 97035" -148594,Apple Airpods Headphones,1,150,01/25/19 18:27,"801 11th St, Portland, OR 97035" -148595,USB-C Charging Cable,1,11.95,01/29/19 21:12,"873 Jefferson St, Los Angeles, CA 90001" -148596,34in Ultrawide Monitor,1,379.99,01/28/19 16:37,"76 Adams St, Boston, MA 02215" -148597,AAA Batteries (4-pack),1,2.99,01/18/19 20:48,"253 Highland St, Los Angeles, CA 90001" -148598,USB-C Charging Cable,1,11.95,01/19/19 12:59,"589 North St, New York City, NY 10001" -148599,iPhone,1,700,01/11/19 15:22,"165 Sunset St, Los Angeles, CA 90001" -148600,Bose SoundSport Headphones,1,99.99,01/01/19 18:02,"219 4th St, Boston, MA 02215" -148601,27in 4K Gaming Monitor,1,389.99,01/22/19 12:15,"963 12th St, New York City, NY 10001" -148602,Apple Airpods Headphones,1,150,01/14/19 20:35,"259 Main St, New York City, NY 10001" -148603,Macbook Pro Laptop,1,1700,01/13/19 09:58,"737 West St, San Francisco, CA 94016" -148604,iPhone,1,700,01/20/19 12:01,"974 5th St, Boston, MA 02215" -148605,Google Phone,1,600,01/25/19 12:51,"179 Cedar St, Portland, OR 97035" -148606,AAA Batteries (4-pack),1,2.99,01/07/19 13:34,"262 Cedar St, Atlanta, GA 30301" -148607,USB-C Charging Cable,1,11.95,01/11/19 17:25,"683 Maple St, New York City, NY 10001" -148608,USB-C Charging Cable,1,11.95,01/09/19 23:19,"581 Pine St, San Francisco, CA 94016" -148609,34in Ultrawide Monitor,1,379.99,01/06/19 12:32,"609 4th St, Los Angeles, CA 90001" -148610,Apple Airpods Headphones,1,150,01/24/19 04:08,"815 Willow St, Seattle, WA 98101" -148611,Wired Headphones,1,11.99,01/20/19 10:39,"465 5th St, New York City, NY 10001" -148612,AA Batteries (4-pack),1,3.84,01/18/19 06:24,"32 Maple St, Los Angeles, CA 90001" -148613,Apple Airpods Headphones,1,150,01/05/19 09:56,"511 11th St, San Francisco, CA 94016" -148614,USB-C Charging Cable,2,11.95,01/13/19 18:43,"727 Church St, San Francisco, CA 94016" -148615,USB-C Charging Cable,1,11.95,01/26/19 15:18,"442 Elm St, San Francisco, CA 94016" -148616,Apple Airpods Headphones,1,150,01/06/19 19:09,"290 North St, Austin, TX 73301" -148617,AAA Batteries (4-pack),1,2.99,01/04/19 21:21,"768 Elm St, Boston, MA 02215" -148618,Apple Airpods Headphones,1,150,01/19/19 15:21,"52 North St, San Francisco, CA 94016" -148619,USB-C Charging Cable,1,11.95,01/29/19 17:32,"597 South St, Los Angeles, CA 90001" -148620,AAA Batteries (4-pack),2,2.99,01/04/19 10:11,"316 Church St, Seattle, WA 98101" -148621,Apple Airpods Headphones,1,150,01/08/19 23:37,"383 9th St, Boston, MA 02215" -148622,USB-C Charging Cable,1,11.95,01/08/19 17:31,"538 Dogwood St, New York City, NY 10001" -148623,Lightning Charging Cable,1,14.95,01/13/19 16:45,"123 River St, New York City, NY 10001" -148624,Apple Airpods Headphones,1,150,01/30/19 08:57,"282 West St, Austin, TX 73301" -148625,AA Batteries (4-pack),1,3.84,01/14/19 12:28,"614 Spruce St, Austin, TX 73301" -148626,Wired Headphones,1,11.99,01/08/19 10:45,"327 4th St, San Francisco, CA 94016" -148627,34in Ultrawide Monitor,1,379.99,01/12/19 23:01,"475 Elm St, Los Angeles, CA 90001" -148628,USB-C Charging Cable,1,11.95,01/13/19 13:05,"275 11th St, Boston, MA 02215" -148629,Wired Headphones,1,11.99,01/15/19 18:59,"206 8th St, Dallas, TX 75001" -148630,Apple Airpods Headphones,1,150,01/23/19 18:32,"594 North St, Dallas, TX 75001" -148631,Apple Airpods Headphones,1,150,01/21/19 00:05,"71 4th St, Los Angeles, CA 90001" -148632,Lightning Charging Cable,1,14.95,01/05/19 14:01,"366 13th St, Seattle, WA 98101" -148633,USB-C Charging Cable,1,11.95,01/27/19 11:50,"137 5th St, San Francisco, CA 94016" -148634,Apple Airpods Headphones,1,150,01/24/19 21:40,"579 2nd St, Atlanta, GA 30301" -148635,34in Ultrawide Monitor,1,379.99,01/26/19 19:17,"660 South St, San Francisco, CA 94016" -148636,ThinkPad Laptop,1,999.99,01/30/19 07:23,"89 Chestnut St, San Francisco, CA 94016" -148637,USB-C Charging Cable,1,11.95,01/11/19 00:12,"715 5th St, Austin, TX 73301" -148638,AAA Batteries (4-pack),1,2.99,01/08/19 21:04,"580 Washington St, Los Angeles, CA 90001" -148639,AA Batteries (4-pack),1,3.84,01/01/19 21:51,"137 Hill St, New York City, NY 10001" -148640,Macbook Pro Laptop,1,1700,01/11/19 16:05,"936 South St, Los Angeles, CA 90001" -148641,Apple Airpods Headphones,1,150,01/10/19 10:22,"103 10th St, San Francisco, CA 94016" -148642,Bose SoundSport Headphones,1,99.99,01/05/19 17:11,"963 7th St, Boston, MA 02215" -148643,Lightning Charging Cable,1,14.95,01/18/19 09:38,"861 Hickory St, New York City, NY 10001" -148644,AA Batteries (4-pack),1,3.84,01/15/19 05:20,"496 Highland St, New York City, NY 10001" -148645,Bose SoundSport Headphones,1,99.99,01/14/19 13:02,"313 Dogwood St, Seattle, WA 98101" -148646,Wired Headphones,1,11.99,01/17/19 19:13,"754 Sunset St, New York City, NY 10001" -148647,Flatscreen TV,1,300,01/09/19 08:50,"410 2nd St, Austin, TX 73301" -148648,Apple Airpods Headphones,1,150,01/26/19 16:01,"566 5th St, San Francisco, CA 94016" -148649,USB-C Charging Cable,1,11.95,01/24/19 11:13,"280 1st St, Boston, MA 02215" -148650,AAA Batteries (4-pack),1,2.99,01/15/19 21:20,"822 13th St, San Francisco, CA 94016" -148651,27in FHD Monitor,1,149.99,01/09/19 09:45,"325 Jefferson St, Portland, OR 97035" -148652,USB-C Charging Cable,1,11.95,01/16/19 00:08,"937 Ridge St, San Francisco, CA 94016" -148653,AAA Batteries (4-pack),3,2.99,01/05/19 10:57,"687 Johnson St, Dallas, TX 75001" -148654,Apple Airpods Headphones,1,150,01/30/19 09:25,"527 Cedar St, San Francisco, CA 94016" -148655,Wired Headphones,1,11.99,01/09/19 10:27,"862 Meadow St, Los Angeles, CA 90001" -148656,Macbook Pro Laptop,1,1700,01/04/19 11:46,"569 River St, Los Angeles, CA 90001" -148657,AA Batteries (4-pack),1,3.84,01/20/19 22:40,"252 11th St, San Francisco, CA 94016" -148658,USB-C Charging Cable,1,11.95,01/01/19 15:30,"811 North St, Boston, MA 02215" -148659,27in FHD Monitor,1,149.99,01/18/19 10:23,"604 Willow St, Dallas, TX 75001" -148660,Wired Headphones,1,11.99,01/07/19 15:04,"389 Church St, Dallas, TX 75001" -148661,Apple Airpods Headphones,1,150,01/27/19 12:25,"974 8th St, New York City, NY 10001" -148662,Wired Headphones,1,11.99,01/14/19 13:40,"682 11th St, Portland, ME 04101" -148663,AAA Batteries (4-pack),1,2.99,01/15/19 17:18,"739 2nd St, San Francisco, CA 94016" -148663,USB-C Charging Cable,1,11.95,01/15/19 17:18,"739 2nd St, San Francisco, CA 94016" -148664,AAA Batteries (4-pack),5,2.99,01/28/19 17:01,"583 Lakeview St, Los Angeles, CA 90001" -148665,AA Batteries (4-pack),1,3.84,01/03/19 21:38,"13 Adams St, Dallas, TX 75001" -148666,Apple Airpods Headphones,1,150,01/12/19 14:20,"56 North St, Boston, MA 02215" -148666,Vareebadd Phone,1,400,01/12/19 14:20,"56 North St, Boston, MA 02215" -148667,Lightning Charging Cable,1,14.95,01/24/19 17:54,"687 7th St, Portland, ME 04101" -148668,AAA Batteries (4-pack),1,2.99,01/03/19 20:18,"266 Spruce St, Boston, MA 02215" -148669,Wired Headphones,1,11.99,01/08/19 21:04,"867 4th St, San Francisco, CA 94016" -148670,AAA Batteries (4-pack),1,2.99,01/04/19 07:45,"307 4th St, Boston, MA 02215" -148671,Lightning Charging Cable,1,14.95,01/25/19 19:32,"87 Lakeview St, Los Angeles, CA 90001" -148672,27in 4K Gaming Monitor,1,389.99,01/07/19 14:25,"824 2nd St, Portland, OR 97035" -148673,ThinkPad Laptop,1,999.99,01/15/19 09:26,"24 Elm St, San Francisco, CA 94016" -148674,AAA Batteries (4-pack),1,2.99,01/03/19 19:58,"656 Spruce St, Atlanta, GA 30301" -148675,Bose SoundSport Headphones,1,99.99,01/12/19 12:12,"208 Main St, San Francisco, CA 94016" -148676,Wired Headphones,1,11.99,01/02/19 00:34,"890 Hill St, Austin, TX 73301" -148677,Lightning Charging Cable,2,14.95,01/19/19 09:18,"478 Lake St, Atlanta, GA 30301" -148678,AAA Batteries (4-pack),1,2.99,01/19/19 21:16,"777 Madison St, Boston, MA 02215" -148679,Lightning Charging Cable,1,14.95,01/26/19 17:38,"818 4th St, Los Angeles, CA 90001" -148680,Lightning Charging Cable,1,14.95,01/10/19 11:54,"268 West St, Los Angeles, CA 90001" -148681,34in Ultrawide Monitor,1,379.99,01/24/19 19:14,"656 13th St, Seattle, WA 98101" -148682,34in Ultrawide Monitor,1,379.99,01/21/19 01:20,"282 1st St, San Francisco, CA 94016" -148683,AAA Batteries (4-pack),1,2.99,01/22/19 16:00,"845 Church St, Atlanta, GA 30301" -148684,27in 4K Gaming Monitor,1,389.99,01/03/19 13:14,"53 14th St, Dallas, TX 75001" -148685,AA Batteries (4-pack),1,3.84,01/29/19 21:06,"525 14th St, San Francisco, CA 94016" -148686,AAA Batteries (4-pack),1,2.99,01/12/19 18:12,"554 Meadow St, San Francisco, CA 94016" -148687,USB-C Charging Cable,1,11.95,01/22/19 20:49,"675 River St, San Francisco, CA 94016" -148688,AAA Batteries (4-pack),3,2.99,01/05/19 13:23,"111 6th St, San Francisco, CA 94016" -148689,Bose SoundSport Headphones,1,99.99,01/27/19 14:27,"503 Elm St, New York City, NY 10001" -148690,Wired Headphones,1,11.99,01/12/19 21:53,"335 Ridge St, Boston, MA 02215" -148691,Lightning Charging Cable,1,14.95,01/16/19 19:13,"391 Sunset St, Los Angeles, CA 90001" -148692,27in FHD Monitor,1,149.99,01/24/19 13:35,"199 14th St, New York City, NY 10001" -148693,AAA Batteries (4-pack),2,2.99,01/28/19 13:11,"637 12th St, San Francisco, CA 94016" -148694,AA Batteries (4-pack),1,3.84,01/26/19 19:39,"706 7th St, San Francisco, CA 94016" -148695,AAA Batteries (4-pack),1,2.99,01/18/19 23:52,"29 Lake St, San Francisco, CA 94016" -148696,USB-C Charging Cable,2,11.95,01/30/19 11:08,"874 Sunset St, Boston, MA 02215" -148696,ThinkPad Laptop,1,999.99,01/30/19 11:08,"874 Sunset St, Boston, MA 02215" -148697,iPhone,1,700,01/23/19 14:28,"664 Pine St, Los Angeles, CA 90001" -148697,Lightning Charging Cable,1,14.95,01/23/19 14:28,"664 Pine St, Los Angeles, CA 90001" -148698,USB-C Charging Cable,1,11.95,01/28/19 16:41,"143 Johnson St, Los Angeles, CA 90001" -148699,USB-C Charging Cable,1,11.95,01/16/19 16:45,"793 Church St, Los Angeles, CA 90001" -148700,Lightning Charging Cable,1,14.95,01/31/19 21:38,"744 Ridge St, Dallas, TX 75001" -148701,USB-C Charging Cable,1,11.95,01/06/19 16:02,"139 1st St, San Francisco, CA 94016" -148702,AAA Batteries (4-pack),1,2.99,01/18/19 13:53,"732 Elm St, Dallas, TX 75001" -148703,Bose SoundSport Headphones,1,99.99,01/07/19 15:15,"994 9th St, San Francisco, CA 94016" -148704,USB-C Charging Cable,1,11.95,01/26/19 14:03,"789 Lake St, Seattle, WA 98101" -148705,Macbook Pro Laptop,1,1700,01/01/19 17:52,"951 Church St, Boston, MA 02215" -148706,27in FHD Monitor,1,149.99,01/20/19 14:47,"32 2nd St, New York City, NY 10001" -148707,Apple Airpods Headphones,1,150,01/05/19 08:35,"321 12th St, San Francisco, CA 94016" -148708,USB-C Charging Cable,1,11.95,01/11/19 21:22,"79 7th St, Portland, OR 97035" -148709,27in 4K Gaming Monitor,1,389.99,01/31/19 09:09,"794 Pine St, New York City, NY 10001" -148710,Wired Headphones,1,11.99,01/07/19 01:24,"749 Willow St, Dallas, TX 75001" -148711,34in Ultrawide Monitor,1,379.99,01/29/19 20:25,"688 Pine St, Portland, OR 97035" -148712,Wired Headphones,1,11.99,01/11/19 18:19,"585 Jefferson St, Los Angeles, CA 90001" -148713,ThinkPad Laptop,1,999.99,01/24/19 23:55,"307 Washington St, Seattle, WA 98101" -148714,Wired Headphones,1,11.99,01/20/19 11:36,"578 Jefferson St, New York City, NY 10001" -148715,20in Monitor,1,109.99,01/07/19 00:04,"866 River St, San Francisco, CA 94016" -148716,AA Batteries (4-pack),2,3.84,01/22/19 19:23,"956 South St, Dallas, TX 75001" -148717,AA Batteries (4-pack),2,3.84,01/04/19 21:17,"75 Maple St, Atlanta, GA 30301" -148718,AA Batteries (4-pack),4,3.84,01/24/19 10:46,"427 9th St, San Francisco, CA 94016" -148719,Wired Headphones,1,11.99,01/23/19 16:11,"676 6th St, New York City, NY 10001" -,,,,, -148720,USB-C Charging Cable,1,11.95,01/10/19 18:34,"713 Madison St, Los Angeles, CA 90001" -148721,Google Phone,1,600,01/04/19 15:01,"94 9th St, Los Angeles, CA 90001" -148722,Lightning Charging Cable,2,14.95,01/14/19 10:17,"325 Main St, Los Angeles, CA 90001" -148723,Macbook Pro Laptop,1,1700,01/11/19 21:57,"401 9th St, New York City, NY 10001" -148724,Bose SoundSport Headphones,1,99.99,01/09/19 20:38,"488 Lake St, Atlanta, GA 30301" -148725,Lightning Charging Cable,1,14.95,01/21/19 11:13,"651 Park St, Portland, OR 97035" -148726,34in Ultrawide Monitor,1,379.99,01/16/19 09:35,"182 12th St, Atlanta, GA 30301" -148727,Wired Headphones,1,11.99,01/04/19 21:37,"483 Spruce St, Dallas, TX 75001" -148728,27in FHD Monitor,1,149.99,01/26/19 00:30,"700 Willow St, Dallas, TX 75001" -148729,AAA Batteries (4-pack),1,2.99,01/27/19 20:56,"863 Maple St, San Francisco, CA 94016" -148730,Wired Headphones,1,11.99,01/13/19 13:05,"306 Washington St, Dallas, TX 75001" -148731,Apple Airpods Headphones,1,150,01/23/19 15:16,"920 Elm St, Seattle, WA 98101" -148732,Bose SoundSport Headphones,1,99.99,01/22/19 13:43,"916 14th St, Los Angeles, CA 90001" -148733,USB-C Charging Cable,1,11.95,01/08/19 05:19,"337 Sunset St, San Francisco, CA 94016" -148734,Apple Airpods Headphones,1,150,01/31/19 18:20,"271 Jefferson St, San Francisco, CA 94016" -148735,27in FHD Monitor,1,149.99,01/16/19 20:50,"624 Maple St, San Francisco, CA 94016" -148736,27in FHD Monitor,1,149.99,01/23/19 22:28,"161 Ridge St, San Francisco, CA 94016" -148737,Apple Airpods Headphones,1,150,01/14/19 20:01,"522 Center St, Portland, OR 97035" -148738,Bose SoundSport Headphones,1,99.99,01/16/19 13:56,"124 Wilson St, San Francisco, CA 94016" -148739,Wired Headphones,1,11.99,01/02/19 02:24,"926 Cedar St, San Francisco, CA 94016" -148740,20in Monitor,1,109.99,01/16/19 19:06,"423 Maple St, Dallas, TX 75001" -148741,Macbook Pro Laptop,1,1700,01/05/19 09:45,"45 Pine St, Boston, MA 02215" -148742,Bose SoundSport Headphones,1,99.99,01/20/19 16:37,"823 Dogwood St, Boston, MA 02215" -148743,Lightning Charging Cable,1,14.95,01/27/19 14:47,"408 Lakeview St, San Francisco, CA 94016" -148744,AAA Batteries (4-pack),3,2.99,01/26/19 19:40,"982 Hill St, San Francisco, CA 94016" -148745,USB-C Charging Cable,1,11.95,01/16/19 16:07,"643 North St, Los Angeles, CA 90001" -148746,Wired Headphones,1,11.99,01/24/19 15:37,"70 Main St, Atlanta, GA 30301" -148747,USB-C Charging Cable,1,11.95,01/02/19 17:12,"482 Spruce St, Los Angeles, CA 90001" -148748,Lightning Charging Cable,1,14.95,01/02/19 10:24,"636 2nd St, Portland, OR 97035" -148749,Google Phone,1,600,01/09/19 13:47,"587 Dogwood St, Boston, MA 02215" -148750,Wired Headphones,1,11.99,01/08/19 20:00,"842 Hickory St, San Francisco, CA 94016" -148751,Apple Airpods Headphones,1,150,01/06/19 21:06,"543 6th St, San Francisco, CA 94016" -148752,Apple Airpods Headphones,1,150,01/27/19 10:54,"510 5th St, New York City, NY 10001" -148753,Wired Headphones,1,11.99,01/06/19 12:07,"457 Lakeview St, San Francisco, CA 94016" -148754,AA Batteries (4-pack),1,3.84,01/12/19 19:11,"252 Highland St, Portland, ME 04101" -148755,AAA Batteries (4-pack),1,2.99,01/14/19 14:46,"634 Hill St, Atlanta, GA 30301" -148756,USB-C Charging Cable,1,11.95,01/24/19 15:30,"993 8th St, New York City, NY 10001" -148757,AA Batteries (4-pack),1,3.84,01/01/19 14:26,"810 11th St, Seattle, WA 98101" -148758,Apple Airpods Headphones,1,150,01/12/19 15:48,"526 Walnut St, Dallas, TX 75001" -148759,Google Phone,1,600,01/28/19 12:31,"882 Jackson St, Atlanta, GA 30301" -148760,iPhone,1,700,01/28/19 21:51,"938 Spruce St, Austin, TX 73301" -148760,Wired Headphones,1,11.99,01/28/19 21:51,"938 Spruce St, Austin, TX 73301" -148761,ThinkPad Laptop,1,999.99,01/03/19 06:48,"995 Dogwood St, San Francisco, CA 94016" -148762,Bose SoundSport Headphones,1,99.99,01/19/19 15:20,"337 Church St, Seattle, WA 98101" -148763,USB-C Charging Cable,1,11.95,01/10/19 13:50,"358 Walnut St, New York City, NY 10001" -148764,Wired Headphones,1,11.99,01/18/19 15:24,"832 West St, San Francisco, CA 94016" -148765,27in FHD Monitor,1,149.99,01/21/19 18:33,"259 11th St, San Francisco, CA 94016" -148766,Wired Headphones,1,11.99,01/05/19 15:13,"670 Jefferson St, Austin, TX 73301" -148767,Lightning Charging Cable,1,14.95,01/01/19 16:09,"145 Lakeview St, Austin, TX 73301" -148768,20in Monitor,1,109.99,01/18/19 16:14,"93 Cedar St, New York City, NY 10001" -148769,Lightning Charging Cable,1,14.95,01/05/19 11:03,"48 12th St, Los Angeles, CA 90001" -148770,Bose SoundSport Headphones,1,99.99,01/28/19 12:25,"711 9th St, San Francisco, CA 94016" -148771,Apple Airpods Headphones,1,150,01/07/19 21:41,"841 2nd St, Dallas, TX 75001" -148772,AA Batteries (4-pack),1,3.84,01/09/19 17:11,"550 5th St, Boston, MA 02215" -148773,27in 4K Gaming Monitor,1,389.99,01/21/19 22:38,"727 Main St, San Francisco, CA 94016" -148774,USB-C Charging Cable,1,11.95,01/20/19 20:20,"625 Lakeview St, Los Angeles, CA 90001" -148775,USB-C Charging Cable,1,11.95,01/30/19 19:27,"382 Lincoln St, Seattle, WA 98101" -148776,USB-C Charging Cable,1,11.95,01/18/19 09:07,"430 Park St, Dallas, TX 75001" -148777,Wired Headphones,1,11.99,01/02/19 20:09,"358 9th St, San Francisco, CA 94016" -148778,Google Phone,1,600,01/10/19 17:13,"734 Hill St, Portland, OR 97035" -148779,AAA Batteries (4-pack),2,2.99,01/22/19 15:01,"29 Ridge St, Dallas, TX 75001" -148780,Apple Airpods Headphones,1,150,01/13/19 21:53,"514 Maple St, Boston, MA 02215" -148781,AAA Batteries (4-pack),1,2.99,01/24/19 20:40,"368 4th St, Portland, OR 97035" -148782,LG Dryer,1,600.0,01/21/19 15:23,"250 Adams St, Austin, TX 73301" -148783,iPhone,1,700,01/10/19 02:02,"4 Maple St, Boston, MA 02215" -148784,34in Ultrawide Monitor,1,379.99,01/19/19 20:08,"334 Willow St, San Francisco, CA 94016" -148785,Lightning Charging Cable,1,14.95,01/28/19 11:27,"934 8th St, New York City, NY 10001" -148786,iPhone,1,700,01/19/19 23:41,"416 Park St, Dallas, TX 75001" -148787,ThinkPad Laptop,1,999.99,01/22/19 20:18,"78 Hill St, Atlanta, GA 30301" -148788,Wired Headphones,1,11.99,01/05/19 20:45,"713 Park St, Dallas, TX 75001" -148789,Wired Headphones,1,11.99,01/27/19 20:00,"358 5th St, Los Angeles, CA 90001" -148790,27in 4K Gaming Monitor,1,389.99,01/27/19 14:02,"602 11th St, Los Angeles, CA 90001" -148791,AAA Batteries (4-pack),1,2.99,01/28/19 20:16,"915 Forest St, Boston, MA 02215" -148792,Lightning Charging Cable,1,14.95,01/03/19 07:54,"175 5th St, San Francisco, CA 94016" -148793,AAA Batteries (4-pack),3,2.99,01/13/19 19:06,"373 Cedar St, Los Angeles, CA 90001" -148794,AAA Batteries (4-pack),1,2.99,01/29/19 14:58,"510 Main St, Los Angeles, CA 90001" -148795,Google Phone,1,600,01/08/19 11:06,"255 Hill St, Seattle, WA 98101" -148796,Wired Headphones,1,11.99,01/31/19 16:13,"553 Lakeview St, New York City, NY 10001" -148797,LG Washing Machine,1,600.0,01/18/19 21:44,"586 North St, San Francisco, CA 94016" -148798,AA Batteries (4-pack),1,3.84,01/02/19 13:46,"978 14th St, Atlanta, GA 30301" -148799,Apple Airpods Headphones,1,150,01/13/19 10:35,"546 12th St, Seattle, WA 98101" -148800,Wired Headphones,1,11.99,01/12/19 14:04,"387 Ridge St, San Francisco, CA 94016" -148801,Apple Airpods Headphones,1,150,01/17/19 11:57,"173 Spruce St, Boston, MA 02215" -148802,Flatscreen TV,1,300,01/31/19 12:56,"105 Highland St, Atlanta, GA 30301" -148803,Macbook Pro Laptop,1,1700,01/23/19 18:25,"258 4th St, New York City, NY 10001" -148804,Wired Headphones,1,11.99,01/19/19 10:49,"545 Hill St, Portland, OR 97035" -148805,20in Monitor,1,109.99,01/13/19 14:14,"826 North St, New York City, NY 10001" -148806,Flatscreen TV,1,300,01/15/19 19:14,"720 Sunset St, Portland, OR 97035" -148807,Google Phone,1,600,01/09/19 09:27,"598 Sunset St, Los Angeles, CA 90001" -148808,USB-C Charging Cable,2,11.95,01/09/19 17:44,"61 Center St, New York City, NY 10001" -148809,iPhone,1,700,01/27/19 21:11,"636 Washington St, Los Angeles, CA 90001" -148810,AA Batteries (4-pack),1,3.84,01/28/19 20:46,"810 Park St, Boston, MA 02215" -148811,USB-C Charging Cable,1,11.95,01/02/19 17:53,"703 7th St, Atlanta, GA 30301" -148812,Lightning Charging Cable,1,14.95,01/31/19 18:27,"188 7th St, Austin, TX 73301" -148813,Wired Headphones,1,11.99,01/04/19 08:34,"940 Jackson St, Portland, OR 97035" -148814,USB-C Charging Cable,1,11.95,01/16/19 22:35,"842 Main St, Dallas, TX 75001" -148815,Lightning Charging Cable,1,14.95,01/05/19 14:49,"20 North St, New York City, NY 10001" -148815,AAA Batteries (4-pack),4,2.99,01/05/19 14:49,"20 North St, New York City, NY 10001" -148816,Google Phone,1,600,01/05/19 10:39,"759 Forest St, San Francisco, CA 94016" -148817,Lightning Charging Cable,1,14.95,01/20/19 10:00,"655 10th St, Austin, TX 73301" -148818,iPhone,1,700,01/23/19 07:51,"109 Maple St, Austin, TX 73301" -148819,AA Batteries (4-pack),1,3.84,01/06/19 15:37,"724 8th St, San Francisco, CA 94016" -148820,USB-C Charging Cable,1,11.95,01/26/19 09:29,"119 Ridge St, Los Angeles, CA 90001" -148820,Wired Headphones,1,11.99,01/26/19 09:29,"119 Ridge St, Los Angeles, CA 90001" -148821,Apple Airpods Headphones,1,150,01/31/19 16:38,"979 Meadow St, Atlanta, GA 30301" -148822,USB-C Charging Cable,1,11.95,01/25/19 20:07,"376 Cedar St, Seattle, WA 98101" -148823,USB-C Charging Cable,1,11.95,01/20/19 16:33,"948 Spruce St, Portland, OR 97035" -148824,USB-C Charging Cable,1,11.95,01/23/19 07:22,"836 Main St, Dallas, TX 75001" -148825,AA Batteries (4-pack),2,3.84,01/10/19 19:26,"10 2nd St, San Francisco, CA 94016" -148826,AAA Batteries (4-pack),1,2.99,01/13/19 17:40,"628 8th St, San Francisco, CA 94016" -148827,AA Batteries (4-pack),1,3.84,01/20/19 12:44,"692 12th St, Austin, TX 73301" -148828,USB-C Charging Cable,1,11.95,01/03/19 14:15,"936 Madison St, Atlanta, GA 30301" -148829,Bose SoundSport Headphones,1,99.99,01/01/19 15:25,"899 Highland St, San Francisco, CA 94016" -148830,34in Ultrawide Monitor,1,379.99,01/17/19 23:45,"597 8th St, San Francisco, CA 94016" -148831,AA Batteries (4-pack),2,3.84,01/12/19 12:49,"912 Forest St, San Francisco, CA 94016" -148832,34in Ultrawide Monitor,1,379.99,01/22/19 12:09,"192 Meadow St, Los Angeles, CA 90001" -148833,Wired Headphones,1,11.99,01/28/19 23:34,"19 South St, Boston, MA 02215" -148834,USB-C Charging Cable,1,11.95,01/03/19 18:51,"520 Highland St, New York City, NY 10001" -148835,AA Batteries (4-pack),2,3.84,01/19/19 09:55,"906 4th St, Atlanta, GA 30301" -148836,Macbook Pro Laptop,1,1700,01/27/19 20:41,"879 Hickory St, Portland, OR 97035" -148837,USB-C Charging Cable,1,11.95,01/06/19 12:09,"6 Lincoln St, San Francisco, CA 94016" -148838,20in Monitor,1,109.99,01/03/19 19:09,"269 2nd St, New York City, NY 10001" -148839,27in FHD Monitor,1,149.99,01/06/19 19:23,"35 Lincoln St, Boston, MA 02215" -148840,Flatscreen TV,1,300,01/30/19 00:45,"914 Meadow St, Boston, MA 02215" -148841,AAA Batteries (4-pack),1,2.99,01/10/19 14:43,"827 12th St, Boston, MA 02215" -148842,Bose SoundSport Headphones,1,99.99,01/23/19 12:56,"634 Elm St, Boston, MA 02215" -148843,Wired Headphones,1,11.99,01/10/19 12:55,"719 Highland St, Portland, OR 97035" -148844,iPhone,1,700,01/11/19 17:16,"711 River St, New York City, NY 10001" -148845,Apple Airpods Headphones,1,150,01/13/19 23:21,"635 Johnson St, San Francisco, CA 94016" -148846,Wired Headphones,1,11.99,01/03/19 12:55,"86 North St, Dallas, TX 75001" -148847,USB-C Charging Cable,1,11.95,01/11/19 21:18,"506 2nd St, Dallas, TX 75001" -148848,34in Ultrawide Monitor,1,379.99,01/07/19 12:51,"624 Wilson St, New York City, NY 10001" -148849,34in Ultrawide Monitor,1,379.99,01/15/19 21:45,"311 Washington St, Seattle, WA 98101" -148850,Wired Headphones,1,11.99,01/18/19 13:16,"448 Church St, Boston, MA 02215" -148851,Apple Airpods Headphones,1,150,01/29/19 07:48,"67 Maple St, San Francisco, CA 94016" -148852,Wired Headphones,1,11.99,01/05/19 04:14,"718 13th St, Portland, OR 97035" -148853,Apple Airpods Headphones,1,150,01/04/19 23:05,"801 14th St, Austin, TX 73301" -148854,Apple Airpods Headphones,1,150,01/01/19 18:31,"763 1st St, Atlanta, GA 30301" -148855,Lightning Charging Cable,1,14.95,01/23/19 19:19,"482 Maple St, Boston, MA 02215" -148856,Bose SoundSport Headphones,1,99.99,01/03/19 01:23,"966 Forest St, Atlanta, GA 30301" -148857,Apple Airpods Headphones,1,150,01/19/19 10:17,"740 Walnut St, Boston, MA 02215" -148858,AAA Batteries (4-pack),4,2.99,01/28/19 23:09,"266 North St, New York City, NY 10001" -148859,Wired Headphones,1,11.99,01/13/19 22:24,"904 2nd St, Los Angeles, CA 90001" -148860,Wired Headphones,1,11.99,01/24/19 23:31,"944 11th St, Dallas, TX 75001" -148861,iPhone,1,700,01/20/19 00:52,"200 Cherry St, Los Angeles, CA 90001" -148861,Lightning Charging Cable,1,14.95,01/20/19 00:52,"200 Cherry St, Los Angeles, CA 90001" -148862,AA Batteries (4-pack),1,3.84,01/22/19 16:50,"429 Highland St, Los Angeles, CA 90001" -148863,Flatscreen TV,1,300,01/25/19 23:54,"785 Walnut St, Boston, MA 02215" -148864,Bose SoundSport Headphones,1,99.99,01/24/19 22:39,"263 12th St, New York City, NY 10001" -148865,AA Batteries (4-pack),1,3.84,01/03/19 16:46,"855 5th St, Seattle, WA 98101" -148866,AAA Batteries (4-pack),2,2.99,01/01/19 13:25,"213 6th St, Los Angeles, CA 90001" -148867,USB-C Charging Cable,1,11.95,01/20/19 13:42,"692 Lake St, Austin, TX 73301" -148868,Apple Airpods Headphones,1,150,01/25/19 20:00,"460 Willow St, Austin, TX 73301" -148869,Wired Headphones,1,11.99,01/27/19 07:20,"990 Highland St, Los Angeles, CA 90001" -148870,Apple Airpods Headphones,1,150,01/04/19 19:20,"952 Jefferson St, Los Angeles, CA 90001" -148871,USB-C Charging Cable,1,11.95,01/15/19 20:13,"895 7th St, Los Angeles, CA 90001" -148872,27in FHD Monitor,1,149.99,01/19/19 10:44,"307 10th St, Austin, TX 73301" -148873,Wired Headphones,1,11.99,01/14/19 17:58,"152 12th St, New York City, NY 10001" -148874,Wired Headphones,1,11.99,01/20/19 10:25,"578 Main St, Atlanta, GA 30301" -148875,USB-C Charging Cable,1,11.95,01/03/19 11:20,"624 6th St, Portland, OR 97035" -148876,AAA Batteries (4-pack),1,2.99,01/22/19 21:44,"778 Jefferson St, Boston, MA 02215" -148877,Apple Airpods Headphones,1,150,01/30/19 09:30,"809 6th St, Boston, MA 02215" -148878,Wired Headphones,1,11.99,01/08/19 12:53,"369 Elm St, San Francisco, CA 94016" -148879,Flatscreen TV,1,300,01/10/19 19:50,"228 Highland St, Portland, ME 04101" -148880,AA Batteries (4-pack),1,3.84,01/25/19 21:05,"514 Ridge St, Los Angeles, CA 90001" -148881,AAA Batteries (4-pack),3,2.99,01/06/19 22:10,"959 Lake St, New York City, NY 10001" -148882,Apple Airpods Headphones,1,150,01/31/19 12:28,"919 Maple St, Portland, OR 97035" -148883,AAA Batteries (4-pack),1,2.99,01/23/19 15:33,"89 Lake St, Boston, MA 02215" -148884,AAA Batteries (4-pack),1,2.99,01/06/19 08:23,"412 13th St, San Francisco, CA 94016" -148885,Apple Airpods Headphones,1,150,01/19/19 05:11,"908 River St, Los Angeles, CA 90001" -148886,Wired Headphones,1,11.99,01/13/19 10:31,"957 Washington St, Dallas, TX 75001" -148887,Apple Airpods Headphones,1,150,01/07/19 08:08,"941 River St, Portland, OR 97035" -148888,Apple Airpods Headphones,1,150,01/23/19 18:59,"291 Maple St, Austin, TX 73301" -148889,34in Ultrawide Monitor,1,379.99,01/04/19 18:02,"138 Center St, Seattle, WA 98101" -148890,Lightning Charging Cable,1,14.95,01/10/19 09:13,"26 South St, Atlanta, GA 30301" -148891,Apple Airpods Headphones,1,150,01/28/19 12:19,"545 Jackson St, San Francisco, CA 94016" -148892,AA Batteries (4-pack),2,3.84,01/16/19 18:13,"924 Spruce St, Boston, MA 02215" -148893,AAA Batteries (4-pack),1,2.99,01/18/19 22:05,"303 11th St, Portland, OR 97035" -148894,USB-C Charging Cable,1,11.95,01/23/19 11:04,"632 2nd St, San Francisco, CA 94016" -148895,27in 4K Gaming Monitor,1,389.99,01/27/19 20:15,"896 Maple St, San Francisco, CA 94016" -148896,Macbook Pro Laptop,1,1700,01/31/19 17:58,"835 River St, New York City, NY 10001" -148896,Bose SoundSport Headphones,1,99.99,01/31/19 17:58,"835 River St, New York City, NY 10001" -148897,AA Batteries (4-pack),1,3.84,01/22/19 23:20,"507 Center St, San Francisco, CA 94016" -148898,USB-C Charging Cable,1,11.95,01/24/19 20:37,"82 9th St, Boston, MA 02215" -148899,AAA Batteries (4-pack),1,2.99,01/05/19 23:01,"734 Hickory St, San Francisco, CA 94016" -148900,AA Batteries (4-pack),2,3.84,01/19/19 12:40,"455 Ridge St, Los Angeles, CA 90001" -148901,AAA Batteries (4-pack),1,2.99,01/13/19 19:39,"445 Cedar St, Portland, ME 04101" -148902,AAA Batteries (4-pack),2,2.99,01/16/19 06:37,"658 Johnson St, San Francisco, CA 94016" -148903,27in FHD Monitor,1,149.99,01/26/19 17:27,"804 Cedar St, Boston, MA 02215" -148904,iPhone,1,700,01/24/19 14:53,"863 Lincoln St, San Francisco, CA 94016" -148905,USB-C Charging Cable,1,11.95,01/07/19 11:39,"445 Sunset St, San Francisco, CA 94016" -148906,USB-C Charging Cable,1,11.95,01/30/19 10:22,"675 River St, Los Angeles, CA 90001" -148907,Flatscreen TV,1,300,01/23/19 20:47,"383 Church St, San Francisco, CA 94016" -148908,Bose SoundSport Headphones,1,99.99,01/25/19 22:00,"950 Washington St, New York City, NY 10001" -148909,Flatscreen TV,1,300,01/19/19 13:32,"799 13th St, Dallas, TX 75001" -148910,Flatscreen TV,1,300,01/07/19 19:42,"54 Jefferson St, New York City, NY 10001" -148911,20in Monitor,1,109.99,01/30/19 13:27,"285 13th St, San Francisco, CA 94016" -148912,Vareebadd Phone,1,400,01/30/19 19:15,"761 8th St, San Francisco, CA 94016" -148912,USB-C Charging Cable,2,11.95,01/30/19 19:15,"761 8th St, San Francisco, CA 94016" -148912,Wired Headphones,1,11.99,01/30/19 19:15,"761 8th St, San Francisco, CA 94016" -148913,USB-C Charging Cable,1,11.95,01/23/19 00:29,"112 Willow St, Atlanta, GA 30301" -148914,Apple Airpods Headphones,1,150,01/19/19 12:04,"200 Sunset St, Austin, TX 73301" -148915,Bose SoundSport Headphones,1,99.99,01/31/19 10:25,"827 9th St, San Francisco, CA 94016" -148916,AAA Batteries (4-pack),1,2.99,01/13/19 18:05,"978 2nd St, San Francisco, CA 94016" -148917,34in Ultrawide Monitor,1,379.99,01/02/19 21:43,"517 Sunset St, Austin, TX 73301" -148918,AA Batteries (4-pack),1,3.84,01/12/19 22:47,"540 Lake St, Boston, MA 02215" -148919,Lightning Charging Cable,1,14.95,01/26/19 18:54,"687 Elm St, Seattle, WA 98101" -148920,Apple Airpods Headphones,1,150,01/29/19 12:48,"676 Highland St, Boston, MA 02215" -148921,Flatscreen TV,1,300,01/12/19 00:20,"599 Lincoln St, San Francisco, CA 94016" -148922,Lightning Charging Cable,1,14.95,01/11/19 21:44,"30 10th St, Portland, OR 97035" -148923,27in FHD Monitor,1,149.99,01/27/19 08:59,"504 Church St, San Francisco, CA 94016" -148924,Lightning Charging Cable,2,14.95,01/14/19 15:56,"786 Lincoln St, Atlanta, GA 30301" -148925,Bose SoundSport Headphones,1,99.99,01/21/19 11:18,"767 Wilson St, Los Angeles, CA 90001" -148926,Macbook Pro Laptop,1,1700,01/28/19 17:28,"565 Jefferson St, New York City, NY 10001" -148927,27in FHD Monitor,1,149.99,01/06/19 21:32,"615 Highland St, Los Angeles, CA 90001" -148928,Apple Airpods Headphones,1,150,01/05/19 12:01,"782 11th St, Los Angeles, CA 90001" -148929,20in Monitor,1,109.99,01/15/19 21:56,"179 Pine St, Boston, MA 02215" -148930,USB-C Charging Cable,1,11.95,01/09/19 09:49,"750 Adams St, Portland, OR 97035" -148931,USB-C Charging Cable,1,11.95,01/28/19 15:22,"645 Madison St, San Francisco, CA 94016" -148932,iPhone,1,700,01/02/19 17:30,"669 Cherry St, San Francisco, CA 94016" -148932,Wired Headphones,1,11.99,01/02/19 17:30,"669 Cherry St, San Francisco, CA 94016" -148933,AAA Batteries (4-pack),1,2.99,01/14/19 23:20,"387 River St, Boston, MA 02215" -148933,Wired Headphones,1,11.99,01/14/19 23:20,"387 River St, Boston, MA 02215" -148934,AA Batteries (4-pack),1,3.84,01/13/19 11:59,"805 Park St, Boston, MA 02215" -148935,Apple Airpods Headphones,1,150,01/29/19 08:12,"123 8th St, San Francisco, CA 94016" -148936,Macbook Pro Laptop,1,1700,01/24/19 16:56,"128 Cherry St, New York City, NY 10001" -148937,Bose SoundSport Headphones,1,99.99,01/07/19 19:30,"978 Jackson St, Austin, TX 73301" -148938,34in Ultrawide Monitor,1,379.99,01/10/19 20:37,"654 Jefferson St, Austin, TX 73301" -148939,Bose SoundSport Headphones,1,99.99,01/07/19 20:52,"700 Hill St, New York City, NY 10001" -148940,USB-C Charging Cable,1,11.95,01/25/19 13:39,"136 2nd St, New York City, NY 10001" -148941,Bose SoundSport Headphones,1,99.99,01/22/19 10:40,"283 Washington St, San Francisco, CA 94016" -148942,Lightning Charging Cable,1,14.95,01/31/19 17:01,"827 Church St, Los Angeles, CA 90001" -148943,Bose SoundSport Headphones,1,99.99,01/06/19 22:39,"828 Main St, Portland, OR 97035" -148944,iPhone,1,700,01/07/19 15:01,"848 Spruce St, San Francisco, CA 94016" -148944,Lightning Charging Cable,1,14.95,01/07/19 15:01,"848 Spruce St, San Francisco, CA 94016" -148945,Google Phone,1,600,01/15/19 14:51,"65 Hill St, San Francisco, CA 94016" -148946,Flatscreen TV,1,300,01/06/19 01:51,"717 Chestnut St, Atlanta, GA 30301" -148947,AAA Batteries (4-pack),1,2.99,01/23/19 07:31,"468 Pine St, Los Angeles, CA 90001" -148948,iPhone,1,700,01/01/19 20:53,"926 Forest St, San Francisco, CA 94016" -148948,Lightning Charging Cable,2,14.95,01/01/19 20:53,"926 Forest St, San Francisco, CA 94016" -148949,Lightning Charging Cable,1,14.95,01/26/19 10:05,"368 Sunset St, Boston, MA 02215" -148950,Wired Headphones,1,11.99,01/08/19 18:50,"953 Dogwood St, Seattle, WA 98101" -148951,AA Batteries (4-pack),1,3.84,01/30/19 21:48,"450 12th St, New York City, NY 10001" -148952,27in FHD Monitor,1,149.99,01/17/19 21:17,"74 West St, Dallas, TX 75001" -148953,USB-C Charging Cable,1,11.95,01/31/19 09:48,"121 1st St, Boston, MA 02215" -148954,Apple Airpods Headphones,1,150,01/23/19 09:36,"381 Park St, San Francisco, CA 94016" -148955,Lightning Charging Cable,1,14.95,01/13/19 20:02,"858 Cherry St, New York City, NY 10001" -148956,USB-C Charging Cable,1,11.95,01/16/19 21:28,"127 14th St, Los Angeles, CA 90001" -148957,Wired Headphones,2,11.99,01/25/19 19:31,"89 South St, San Francisco, CA 94016" -148958,AAA Batteries (4-pack),3,2.99,01/26/19 13:02,"329 Washington St, Dallas, TX 75001" -148959,Vareebadd Phone,1,400,01/27/19 17:03,"915 River St, Boston, MA 02215" -148960,Google Phone,1,600,01/26/19 20:10,"984 Hickory St, New York City, NY 10001" -148960,USB-C Charging Cable,1,11.95,01/26/19 20:10,"984 Hickory St, New York City, NY 10001" -148961,AA Batteries (4-pack),1,3.84,01/26/19 00:04,"326 West St, Dallas, TX 75001" -148962,ThinkPad Laptop,1,999.99,01/10/19 16:04,"257 10th St, Los Angeles, CA 90001" -148963,AAA Batteries (4-pack),1,2.99,01/02/19 17:39,"502 Center St, Boston, MA 02215" -148964,iPhone,1,700,01/02/19 17:04,"150 Center St, Los Angeles, CA 90001" -148965,Lightning Charging Cable,1,14.95,01/26/19 19:44,"235 Madison St, Seattle, WA 98101" -148966,AA Batteries (4-pack),1,3.84,01/27/19 17:15,"265 Lake St, San Francisco, CA 94016" -148967,Bose SoundSport Headphones,1,99.99,01/23/19 09:36,"507 Jefferson St, Portland, OR 97035" -148968,AA Batteries (4-pack),1,3.84,01/12/19 13:39,"364 Main St, Boston, MA 02215" -148969,Macbook Pro Laptop,1,1700,01/16/19 11:09,"817 Lakeview St, San Francisco, CA 94016" -148970,27in FHD Monitor,1,149.99,01/07/19 17:08,"424 Sunset St, Seattle, WA 98101" -148971,Bose SoundSport Headphones,1,99.99,01/22/19 23:20,"523 12th St, Dallas, TX 75001" -148971,27in 4K Gaming Monitor,1,389.99,01/22/19 23:20,"523 12th St, Dallas, TX 75001" -148972,AAA Batteries (4-pack),1,2.99,01/17/19 20:59,"744 Madison St, Los Angeles, CA 90001" -148973,AAA Batteries (4-pack),2,2.99,01/24/19 12:26,"881 Forest St, Portland, OR 97035" -148974,27in FHD Monitor,1,149.99,01/22/19 10:09,"971 Main St, San Francisco, CA 94016" -148975,ThinkPad Laptop,1,999.99,01/10/19 10:43,"793 Forest St, Atlanta, GA 30301" -148976,ThinkPad Laptop,1,999.99,01/07/19 13:36,"449 River St, New York City, NY 10001" -148977,AA Batteries (4-pack),1,3.84,01/07/19 12:35,"531 Wilson St, Los Angeles, CA 90001" -148978,USB-C Charging Cable,1,11.95,01/01/19 10:12,"914 South St, Austin, TX 73301" -148979,Wired Headphones,1,11.99,01/10/19 07:43,"891 Johnson St, Los Angeles, CA 90001" -148980,AAA Batteries (4-pack),1,2.99,01/17/19 14:55,"83 12th St, San Francisco, CA 94016" -148981,Lightning Charging Cable,1,14.95,01/18/19 21:23,"724 Ridge St, San Francisco, CA 94016" -148982,AAA Batteries (4-pack),1,2.99,01/29/19 22:50,"670 Elm St, Los Angeles, CA 90001" -148983,Flatscreen TV,1,300,01/10/19 05:02,"549 Wilson St, Boston, MA 02215" -148984,USB-C Charging Cable,1,11.95,01/08/19 17:36,"562 14th St, Boston, MA 02215" -148984,USB-C Charging Cable,1,11.95,01/08/19 17:36,"562 14th St, Boston, MA 02215" -148985,Apple Airpods Headphones,1,150,01/31/19 16:28,"349 Jefferson St, Atlanta, GA 30301" -148986,Lightning Charging Cable,1,14.95,01/15/19 22:56,"786 Lake St, Los Angeles, CA 90001" -148987,AA Batteries (4-pack),1,3.84,02/01/19 02:16,"55 Elm St, Atlanta, GA 30301" -148988,LG Washing Machine,1,600.0,01/20/19 09:14,"864 13th St, San Francisco, CA 94016" -148989,Wired Headphones,1,11.99,01/30/19 16:36,"905 Adams St, New York City, NY 10001" -148990,Wired Headphones,1,11.99,01/13/19 08:57,"164 6th St, San Francisco, CA 94016" -148991,Lightning Charging Cable,3,14.95,01/29/19 05:49,"12 Jackson St, Los Angeles, CA 90001" -148992,Wired Headphones,1,11.99,01/29/19 18:02,"20 Walnut St, Los Angeles, CA 90001" -148993,Apple Airpods Headphones,1,150,01/15/19 13:22,"609 Walnut St, San Francisco, CA 94016" -148994,27in FHD Monitor,1,149.99,01/25/19 10:42,"354 Adams St, Austin, TX 73301" -148995,Wired Headphones,1,11.99,01/28/19 10:39,"139 2nd St, New York City, NY 10001" -148996,AAA Batteries (4-pack),1,2.99,01/29/19 20:09,"672 4th St, San Francisco, CA 94016" -148997,ThinkPad Laptop,1,999.99,01/25/19 20:30,"655 Washington St, San Francisco, CA 94016" -148998,AA Batteries (4-pack),1,3.84,01/27/19 08:22,"237 Highland St, New York City, NY 10001" -148999,Apple Airpods Headphones,1,150,01/25/19 17:23,"797 Jackson St, New York City, NY 10001" -149000,USB-C Charging Cable,2,11.95,01/04/19 21:28,"320 9th St, San Francisco, CA 94016" -149001,ThinkPad Laptop,1,999.99,01/01/19 18:49,"43 Meadow St, Los Angeles, CA 90001" -149002,USB-C Charging Cable,1,11.95,01/07/19 17:10,"225 7th St, San Francisco, CA 94016" -149003,Lightning Charging Cable,1,14.95,01/16/19 00:59,"580 Lake St, Seattle, WA 98101" -149004,USB-C Charging Cable,1,11.95,01/25/19 12:21,"872 Madison St, Boston, MA 02215" -149005,Lightning Charging Cable,1,14.95,01/04/19 20:13,"462 9th St, San Francisco, CA 94016" -149006,ThinkPad Laptop,1,999.99,01/19/19 12:14,"125 Lakeview St, Atlanta, GA 30301" -149007,AA Batteries (4-pack),1,3.84,01/05/19 12:40,"64 Hill St, Austin, TX 73301" -149008,AAA Batteries (4-pack),1,2.99,01/11/19 21:04,"837 Spruce St, San Francisco, CA 94016" -149009,AAA Batteries (4-pack),1,2.99,01/15/19 15:35,"757 Main St, Austin, TX 73301" -149010,AA Batteries (4-pack),1,3.84,01/29/19 13:03,"760 13th St, San Francisco, CA 94016" -149011,27in 4K Gaming Monitor,1,389.99,01/21/19 21:41,"931 Wilson St, Portland, OR 97035" -149012,USB-C Charging Cable,1,11.95,01/25/19 09:00,"284 Cherry St, San Francisco, CA 94016" -149013,Wired Headphones,1,11.99,01/16/19 21:20,"552 Chestnut St, Austin, TX 73301" -149014,AAA Batteries (4-pack),1,2.99,01/05/19 21:30,"616 Center St, New York City, NY 10001" -149015,USB-C Charging Cable,1,11.95,01/25/19 16:34,"3 Lakeview St, Austin, TX 73301" -149016,Wired Headphones,1,11.99,01/05/19 07:56,"719 Center St, Portland, OR 97035" -149017,Wired Headphones,1,11.99,01/07/19 20:08,"456 Park St, Austin, TX 73301" -149018,AA Batteries (4-pack),1,3.84,01/29/19 14:23,"319 Washington St, Boston, MA 02215" -149019,Macbook Pro Laptop,1,1700,01/13/19 08:45,"518 5th St, Los Angeles, CA 90001" -149020,AA Batteries (4-pack),1,3.84,01/16/19 12:09,"499 Wilson St, San Francisco, CA 94016" -149021,Lightning Charging Cable,1,14.95,01/04/19 13:08,"347 Johnson St, Atlanta, GA 30301" -149022,Bose SoundSport Headphones,1,99.99,01/10/19 16:48,"207 Willow St, San Francisco, CA 94016" -149023,AAA Batteries (4-pack),1,2.99,01/18/19 20:21,"257 4th St, Austin, TX 73301" -149024,USB-C Charging Cable,1,11.95,01/02/19 09:57,"395 Cedar St, San Francisco, CA 94016" -149025,Lightning Charging Cable,1,14.95,01/19/19 16:21,"599 Jefferson St, New York City, NY 10001" -149026,Wired Headphones,2,11.99,01/20/19 22:31,"12 14th St, Dallas, TX 75001" -149027,AAA Batteries (4-pack),1,2.99,01/24/19 19:59,"809 Lake St, Portland, OR 97035" -149028,Lightning Charging Cable,1,14.95,01/29/19 11:58,"416 Main St, New York City, NY 10001" -149029,Bose SoundSport Headphones,1,99.99,01/04/19 00:29,"435 1st St, Los Angeles, CA 90001" -149030,27in 4K Gaming Monitor,1,389.99,01/27/19 16:24,"476 6th St, San Francisco, CA 94016" -149031,Bose SoundSport Headphones,1,99.99,01/30/19 21:18,"933 5th St, Atlanta, GA 30301" -149032,Apple Airpods Headphones,1,150,01/11/19 11:11,"797 West St, Los Angeles, CA 90001" -149033,Wired Headphones,1,11.99,01/18/19 22:17,"160 Jackson St, Seattle, WA 98101" -149034,AAA Batteries (4-pack),1,2.99,01/10/19 18:50,"395 8th St, Portland, OR 97035" -149035,Lightning Charging Cable,1,14.95,01/13/19 13:45,"906 Adams St, New York City, NY 10001" -149036,AA Batteries (4-pack),1,3.84,01/24/19 08:39,"764 Meadow St, Los Angeles, CA 90001" -149036,Flatscreen TV,1,300,01/24/19 08:39,"764 Meadow St, Los Angeles, CA 90001" -149037,34in Ultrawide Monitor,1,379.99,01/18/19 10:41,"271 Washington St, Seattle, WA 98101" -149038,AA Batteries (4-pack),1,3.84,01/18/19 12:13,"47 9th St, Los Angeles, CA 90001" -149039,Google Phone,1,600,01/09/19 16:27,"429 Highland St, Seattle, WA 98101" -149040,AA Batteries (4-pack),1,3.84,01/26/19 17:16,"193 Walnut St, Atlanta, GA 30301" -149041,USB-C Charging Cable,1,11.95,01/29/19 15:42,"237 Washington St, San Francisco, CA 94016" -149042,27in 4K Gaming Monitor,1,389.99,01/06/19 11:42,"701 River St, San Francisco, CA 94016" -149043,AA Batteries (4-pack),1,3.84,01/30/19 11:30,"163 Lakeview St, San Francisco, CA 94016" -149044,27in 4K Gaming Monitor,1,389.99,01/24/19 11:26,"196 Main St, Portland, OR 97035" -149044,Lightning Charging Cable,1,14.95,01/24/19 11:26,"196 Main St, Portland, OR 97035" -149045,20in Monitor,1,109.99,01/21/19 22:04,"958 Lake St, Dallas, TX 75001" -149046,Bose SoundSport Headphones,1,99.99,01/24/19 21:36,"694 10th St, Austin, TX 73301" -149047,Lightning Charging Cable,1,14.95,01/11/19 11:16,"233 Chestnut St, Boston, MA 02215" -149048,Wired Headphones,1,11.99,01/24/19 01:40,"943 11th St, San Francisco, CA 94016" -149049,Bose SoundSport Headphones,1,99.99,01/18/19 22:47,"259 14th St, San Francisco, CA 94016" -149050,Google Phone,1,600,01/23/19 00:03,"726 Center St, San Francisco, CA 94016" -149051,USB-C Charging Cable,1,11.95,01/21/19 17:40,"358 Sunset St, Los Angeles, CA 90001" -149052,Apple Airpods Headphones,1,150,01/14/19 08:48,"530 1st St, Atlanta, GA 30301" -149053,ThinkPad Laptop,1,999.99,01/08/19 08:46,"741 Madison St, Seattle, WA 98101" -149054,AAA Batteries (4-pack),2,2.99,01/18/19 18:53,"499 1st St, San Francisco, CA 94016" -149055,Wired Headphones,1,11.99,01/07/19 11:26,"42 9th St, Boston, MA 02215" -149056,27in 4K Gaming Monitor,1,389.99,01/11/19 16:46,"902 North St, Dallas, TX 75001" -149057,Lightning Charging Cable,1,14.95,01/03/19 10:16,"478 12th St, San Francisco, CA 94016" -149058,Wired Headphones,1,11.99,01/28/19 11:25,"470 7th St, San Francisco, CA 94016" -149059,Lightning Charging Cable,1,14.95,01/19/19 11:55,"464 10th St, Portland, ME 04101" -149060,USB-C Charging Cable,1,11.95,01/07/19 08:27,"119 Elm St, Austin, TX 73301" -149061,20in Monitor,1,109.99,01/21/19 08:23,"917 Wilson St, San Francisco, CA 94016" -149062,Google Phone,1,600,01/05/19 19:22,"61 Lake St, Los Angeles, CA 90001" -149063,34in Ultrawide Monitor,1,379.99,01/26/19 13:39,"951 12th St, Dallas, TX 75001" -149064,USB-C Charging Cable,1,11.95,01/04/19 20:15,"336 Elm St, New York City, NY 10001" -149065,Apple Airpods Headphones,1,150,01/03/19 15:33,"217 9th St, San Francisco, CA 94016" -149066,iPhone,1,700,01/04/19 11:09,"800 Willow St, San Francisco, CA 94016" -149067,USB-C Charging Cable,1,11.95,01/21/19 10:02,"932 Spruce St, Seattle, WA 98101" -149068,Wired Headphones,1,11.99,01/11/19 07:30,"242 Ridge St, Portland, OR 97035" -149069,Apple Airpods Headphones,1,150,01/20/19 09:17,"196 Dogwood St, Portland, OR 97035" -149070,Google Phone,1,600,01/17/19 10:27,"468 7th St, San Francisco, CA 94016" -149071,Macbook Pro Laptop,1,1700,01/13/19 10:53,"941 West St, Los Angeles, CA 90001" -149072,Macbook Pro Laptop,1,1700,01/07/19 13:51,"589 2nd St, New York City, NY 10001" -149073,USB-C Charging Cable,1,11.95,01/13/19 20:20,"655 Forest St, Portland, OR 97035" -149074,AA Batteries (4-pack),1,3.84,01/28/19 12:19,"937 Forest St, Atlanta, GA 30301" -149075,27in FHD Monitor,1,149.99,01/20/19 19:28,"185 River St, Dallas, TX 75001" -149076,AA Batteries (4-pack),1,3.84,01/08/19 19:39,"247 Lincoln St, San Francisco, CA 94016" -149077,Apple Airpods Headphones,1,150,01/10/19 14:29,"913 Meadow St, Dallas, TX 75001" -149078,AAA Batteries (4-pack),2,2.99,01/29/19 15:26,"478 Hill St, New York City, NY 10001" -149079,34in Ultrawide Monitor,1,379.99,01/22/19 13:33,"734 North St, Portland, OR 97035" -149080,Wired Headphones,1,11.99,01/29/19 09:35,"80 Highland St, Seattle, WA 98101" -149081,AA Batteries (4-pack),1,3.84,01/30/19 11:54,"28 Adams St, Los Angeles, CA 90001" -149081,Apple Airpods Headphones,1,150,01/30/19 11:54,"28 Adams St, Los Angeles, CA 90001" -149082,Apple Airpods Headphones,1,150,01/09/19 17:02,"220 Madison St, Los Angeles, CA 90001" -149083,Vareebadd Phone,1,400,01/27/19 13:09,"887 8th St, New York City, NY 10001" -149084,27in 4K Gaming Monitor,1,389.99,01/17/19 18:20,"449 4th St, Portland, OR 97035" -149085,Bose SoundSport Headphones,1,99.99,01/28/19 21:09,"366 Pine St, Seattle, WA 98101" -149086,AA Batteries (4-pack),4,3.84,01/13/19 07:29,"713 West St, Dallas, TX 75001" -149087,AAA Batteries (4-pack),2,2.99,01/16/19 22:02,"227 Willow St, New York City, NY 10001" -149088,AAA Batteries (4-pack),1,2.99,01/27/19 22:25,"311 Washington St, Austin, TX 73301" -149089,Bose SoundSport Headphones,1,99.99,01/24/19 10:54,"266 6th St, Dallas, TX 75001" -149090,USB-C Charging Cable,1,11.95,01/15/19 20:42,"571 1st St, New York City, NY 10001" -149091,Apple Airpods Headphones,1,150,01/02/19 22:36,"653 Main St, San Francisco, CA 94016" -149092,USB-C Charging Cable,1,11.95,01/20/19 07:44,"718 Walnut St, New York City, NY 10001" -149093,Macbook Pro Laptop,1,1700,01/09/19 21:03,"829 River St, Boston, MA 02215" -149094,Vareebadd Phone,1,400,01/02/19 23:06,"682 Pine St, Seattle, WA 98101" -149095,27in FHD Monitor,1,149.99,01/22/19 14:08,"220 Spruce St, Los Angeles, CA 90001" -149096,AA Batteries (4-pack),1,3.84,01/08/19 20:59,"847 Chestnut St, New York City, NY 10001" -149097,USB-C Charging Cable,1,11.95,01/13/19 12:12,"773 Cherry St, Seattle, WA 98101" -149098,Lightning Charging Cable,1,14.95,01/18/19 19:41,"797 8th St, Atlanta, GA 30301" -149099,Apple Airpods Headphones,1,150,01/12/19 14:50,"500 4th St, Los Angeles, CA 90001" -149100,USB-C Charging Cable,1,11.95,01/22/19 13:18,"288 13th St, Austin, TX 73301" -149101,34in Ultrawide Monitor,1,379.99,01/29/19 20:27,"198 Meadow St, Austin, TX 73301" -,,,,, -149102,USB-C Charging Cable,1,11.95,01/06/19 22:48,"3 7th St, Dallas, TX 75001" -,,,,, -149103,Apple Airpods Headphones,1,150,01/08/19 07:55,"975 Hickory St, New York City, NY 10001" -149104,USB-C Charging Cable,1,11.95,01/17/19 18:15,"706 Center St, Atlanta, GA 30301" -149105,Bose SoundSport Headphones,1,99.99,01/20/19 17:54,"697 Center St, Dallas, TX 75001" -149106,ThinkPad Laptop,1,999.99,01/03/19 09:59,"653 Hill St, Austin, TX 73301" -149107,iPhone,1,700,01/05/19 19:45,"274 Cedar St, San Francisco, CA 94016" -149108,Google Phone,1,600,01/28/19 13:11,"267 Ridge St, San Francisco, CA 94016" -149109,iPhone,1,700,01/19/19 11:38,"60 6th St, Boston, MA 02215" -149110,Bose SoundSport Headphones,1,99.99,01/14/19 21:32,"81 Church St, New York City, NY 10001" -149111,AAA Batteries (4-pack),1,2.99,01/29/19 22:54,"567 Wilson St, Los Angeles, CA 90001" -149112,AA Batteries (4-pack),3,3.84,01/21/19 14:50,"516 Willow St, New York City, NY 10001" -149113,Macbook Pro Laptop,1,1700,01/08/19 08:39,"122 Wilson St, San Francisco, CA 94016" -149114,AAA Batteries (4-pack),1,2.99,01/07/19 17:43,"648 Cherry St, New York City, NY 10001" -149115,USB-C Charging Cable,2,11.95,01/21/19 17:34,"524 1st St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -149116,USB-C Charging Cable,1,11.95,01/20/19 11:58,"77 Wilson St, San Francisco, CA 94016" -149117,USB-C Charging Cable,1,11.95,01/17/19 20:09,"102 Pine St, San Francisco, CA 94016" -149118,Wired Headphones,1,11.99,01/16/19 19:53,"664 Meadow St, San Francisco, CA 94016" -149119,AA Batteries (4-pack),1,3.84,01/16/19 20:31,"951 Hickory St, Portland, ME 04101" -149120,20in Monitor,1,109.99,01/23/19 09:29,"200 14th St, Dallas, TX 75001" -149121,AAA Batteries (4-pack),2,2.99,01/23/19 22:13,"324 Hill St, Boston, MA 02215" -149122,Lightning Charging Cable,1,14.95,01/04/19 08:22,"794 Adams St, New York City, NY 10001" -149123,34in Ultrawide Monitor,1,379.99,01/22/19 16:07,"776 Sunset St, Portland, ME 04101" -149124,AAA Batteries (4-pack),2,2.99,01/12/19 17:33,"582 Lake St, New York City, NY 10001" -149125,Google Phone,1,600,01/10/19 20:58,"47 2nd St, Atlanta, GA 30301" -149125,Bose SoundSport Headphones,1,99.99,01/10/19 20:58,"47 2nd St, Atlanta, GA 30301" -149126,20in Monitor,1,109.99,01/09/19 21:50,"124 9th St, Dallas, TX 75001" -149127,AA Batteries (4-pack),1,3.84,01/26/19 12:25,"111 Hickory St, Dallas, TX 75001" -149128,AAA Batteries (4-pack),2,2.99,01/26/19 17:33,"752 Lakeview St, San Francisco, CA 94016" -149129,20in Monitor,1,109.99,01/21/19 18:18,"219 Jackson St, New York City, NY 10001" -149130,Flatscreen TV,1,300,01/21/19 12:58,"218 Lake St, Seattle, WA 98101" -149131,Wired Headphones,2,11.99,01/30/19 15:31,"114 4th St, Dallas, TX 75001" -149132,AA Batteries (4-pack),1,3.84,01/26/19 17:06,"668 Wilson St, Atlanta, GA 30301" -149133,AAA Batteries (4-pack),3,2.99,01/02/19 15:04,"561 Jackson St, Los Angeles, CA 90001" -149134,Vareebadd Phone,1,400,01/14/19 16:43,"821 West St, Los Angeles, CA 90001" -149134,USB-C Charging Cable,1,11.95,01/14/19 16:43,"821 West St, Los Angeles, CA 90001" -149134,Wired Headphones,1,11.99,01/14/19 16:43,"821 West St, Los Angeles, CA 90001" -149135,AA Batteries (4-pack),1,3.84,01/27/19 14:07,"780 Wilson St, Seattle, WA 98101" -149136,34in Ultrawide Monitor,1,379.99,01/24/19 16:36,"269 Highland St, New York City, NY 10001" -149137,AA Batteries (4-pack),2,3.84,01/30/19 21:23,"151 South St, San Francisco, CA 94016" -149138,AAA Batteries (4-pack),1,2.99,01/28/19 17:55,"992 Pine St, San Francisco, CA 94016" -149139,ThinkPad Laptop,1,999.99,01/27/19 08:41,"215 Church St, Portland, OR 97035" -149140,AA Batteries (4-pack),1,3.84,01/19/19 18:19,"288 Highland St, Seattle, WA 98101" -149141,Bose SoundSport Headphones,1,99.99,01/13/19 01:25,"413 Lincoln St, San Francisco, CA 94016" -149142,Flatscreen TV,1,300,01/25/19 18:43,"18 9th St, Boston, MA 02215" -149143,USB-C Charging Cable,1,11.95,01/05/19 13:27,"561 Jefferson St, San Francisco, CA 94016" -149144,Apple Airpods Headphones,1,150,01/12/19 19:46,"626 Hickory St, New York City, NY 10001" -149145,USB-C Charging Cable,1,11.95,01/22/19 14:51,"142 Hill St, San Francisco, CA 94016" -149146,LG Washing Machine,1,600.0,01/26/19 14:44,"652 10th St, Los Angeles, CA 90001" -149147,27in 4K Gaming Monitor,1,389.99,01/16/19 15:55,"648 Lake St, San Francisco, CA 94016" -149148,Flatscreen TV,1,300,01/05/19 22:05,"835 Cedar St, San Francisco, CA 94016" -149149,Lightning Charging Cable,1,14.95,01/12/19 12:30,"180 1st St, Boston, MA 02215" -149149,Lightning Charging Cable,1,14.95,01/12/19 12:30,"180 1st St, Boston, MA 02215" -149150,iPhone,1,700,01/21/19 11:54,"463 Spruce St, San Francisco, CA 94016" -149151,ThinkPad Laptop,1,999.99,01/05/19 13:57,"148 Madison St, Boston, MA 02215" -149152,ThinkPad Laptop,1,999.99,01/28/19 18:44,"969 Lake St, Dallas, TX 75001" -149153,AAA Batteries (4-pack),1,2.99,01/18/19 22:22,"604 Cherry St, Boston, MA 02215" -149154,Wired Headphones,1,11.99,01/20/19 00:18,"779 Washington St, Seattle, WA 98101" -149155,AAA Batteries (4-pack),1,2.99,01/26/19 22:19,"358 North St, Los Angeles, CA 90001" -149156,AA Batteries (4-pack),1,3.84,01/06/19 01:50,"587 Center St, Atlanta, GA 30301" -149157,AAA Batteries (4-pack),2,2.99,01/09/19 21:43,"488 Wilson St, San Francisco, CA 94016" -149158,AAA Batteries (4-pack),1,2.99,01/28/19 15:50,"233 Wilson St, New York City, NY 10001" -149159,USB-C Charging Cable,1,11.95,01/25/19 14:43,"144 8th St, Boston, MA 02215" -149160,27in FHD Monitor,1,149.99,01/26/19 19:45,"322 Washington St, San Francisco, CA 94016" -149161,USB-C Charging Cable,1,11.95,01/13/19 21:30,"938 Cherry St, San Francisco, CA 94016" -149162,USB-C Charging Cable,1,11.95,01/10/19 13:25,"56 Ridge St, Boston, MA 02215" -149163,Lightning Charging Cable,1,14.95,01/01/19 15:25,"204 Chestnut St, Seattle, WA 98101" -149164,iPhone,1,700,01/21/19 17:29,"954 Jefferson St, San Francisco, CA 94016" -149165,ThinkPad Laptop,1,999.99,01/11/19 23:09,"705 Pine St, Dallas, TX 75001" -149166,Lightning Charging Cable,1,14.95,01/30/19 21:45,"712 6th St, Los Angeles, CA 90001" -149167,AAA Batteries (4-pack),1,2.99,01/21/19 15:04,"143 Church St, Portland, OR 97035" -149168,AA Batteries (4-pack),1,3.84,01/27/19 19:20,"817 9th St, New York City, NY 10001" -149169,USB-C Charging Cable,1,11.95,01/14/19 09:06,"629 Walnut St, San Francisco, CA 94016" -149170,27in 4K Gaming Monitor,1,389.99,01/07/19 19:18,"873 Forest St, Atlanta, GA 30301" -149171,USB-C Charging Cable,1,11.95,01/06/19 14:42,"664 Forest St, Seattle, WA 98101" -149172,Bose SoundSport Headphones,1,99.99,01/11/19 11:17,"788 Walnut St, San Francisco, CA 94016" -149173,27in FHD Monitor,1,149.99,01/02/19 14:54,"377 13th St, Boston, MA 02215" -149174,Apple Airpods Headphones,1,150,01/29/19 20:46,"788 Sunset St, Portland, OR 97035" -149175,Apple Airpods Headphones,1,150,01/21/19 08:25,"594 1st St, Boston, MA 02215" -149176,Bose SoundSport Headphones,1,99.99,01/06/19 11:31,"762 8th St, New York City, NY 10001" -149177,USB-C Charging Cable,1,11.95,01/06/19 15:07,"694 Sunset St, San Francisco, CA 94016" -149178,AA Batteries (4-pack),1,3.84,01/04/19 00:57,"459 Meadow St, Seattle, WA 98101" -149179,USB-C Charging Cable,1,11.95,01/17/19 21:44,"896 5th St, Los Angeles, CA 90001" -149180,USB-C Charging Cable,1,11.95,01/03/19 14:55,"294 Highland St, New York City, NY 10001" -149181,ThinkPad Laptop,1,999.99,01/06/19 13:22,"613 Elm St, San Francisco, CA 94016" -149182,27in FHD Monitor,1,149.99,01/30/19 18:25,"806 Forest St, Boston, MA 02215" -149183,Google Phone,1,600,01/16/19 09:02,"150 Spruce St, New York City, NY 10001" -149184,Bose SoundSport Headphones,1,99.99,01/28/19 21:40,"519 Lincoln St, Los Angeles, CA 90001" -149185,AA Batteries (4-pack),1,3.84,01/21/19 10:30,"224 14th St, Dallas, TX 75001" -149186,Bose SoundSport Headphones,1,99.99,01/15/19 16:34,"989 West St, Boston, MA 02215" -149187,Lightning Charging Cable,1,14.95,01/22/19 11:14,"794 Cherry St, Los Angeles, CA 90001" -149188,Bose SoundSport Headphones,1,99.99,01/25/19 13:15,"906 South St, Dallas, TX 75001" -149189,27in 4K Gaming Monitor,1,389.99,01/05/19 19:10,"541 Forest St, San Francisco, CA 94016" -149190,27in FHD Monitor,1,149.99,01/10/19 12:36,"354 Meadow St, San Francisco, CA 94016" -149191,Google Phone,1,600,01/31/19 16:00,"13 Highland St, Austin, TX 73301" -149192,USB-C Charging Cable,1,11.95,01/28/19 14:30,"120 Johnson St, San Francisco, CA 94016" -149193,27in FHD Monitor,1,149.99,01/29/19 16:25,"734 Madison St, Los Angeles, CA 90001" -149194,Wired Headphones,1,11.99,01/20/19 18:03,"295 Sunset St, Atlanta, GA 30301" -149195,USB-C Charging Cable,2,11.95,01/26/19 17:07,"581 Sunset St, Boston, MA 02215" -149196,Vareebadd Phone,1,400,01/15/19 15:41,"41 Lake St, Boston, MA 02215" -149197,Lightning Charging Cable,1,14.95,01/21/19 13:30,"122 Hill St, Austin, TX 73301" -149198,AAA Batteries (4-pack),2,2.99,01/13/19 23:14,"397 8th St, Portland, OR 97035" -149199,iPhone,1,700,01/07/19 10:34,"734 Maple St, Portland, OR 97035" -149200,Wired Headphones,1,11.99,01/05/19 09:13,"5 Center St, Los Angeles, CA 90001" -149201,20in Monitor,1,109.99,01/03/19 08:15,"475 Dogwood St, San Francisco, CA 94016" -149202,Lightning Charging Cable,1,14.95,01/24/19 16:31,"964 14th St, San Francisco, CA 94016" -149203,Wired Headphones,1,11.99,01/21/19 09:05,"810 Spruce St, Atlanta, GA 30301" -149204,Apple Airpods Headphones,1,150,01/17/19 09:29,"6 10th St, San Francisco, CA 94016" -149205,AAA Batteries (4-pack),1,2.99,01/22/19 19:35,"78 Highland St, Atlanta, GA 30301" -149206,27in 4K Gaming Monitor,1,389.99,01/19/19 18:09,"9 Spruce St, Austin, TX 73301" -149207,Lightning Charging Cable,1,14.95,01/17/19 11:05,"902 2nd St, San Francisco, CA 94016" -149208,iPhone,1,700,01/22/19 19:07,"990 Dogwood St, San Francisco, CA 94016" -149209,AAA Batteries (4-pack),1,2.99,01/11/19 14:25,"721 Cherry St, Seattle, WA 98101" -149210,Apple Airpods Headphones,1,150,01/04/19 13:21,"241 Church St, San Francisco, CA 94016" -149211,Vareebadd Phone,1,400,01/08/19 13:15,"756 4th St, Dallas, TX 75001" -149212,Wired Headphones,1,11.99,01/03/19 19:10,"132 Elm St, Atlanta, GA 30301" -149213,AAA Batteries (4-pack),1,2.99,01/12/19 12:45,"577 Lakeview St, Los Angeles, CA 90001" -149214,27in FHD Monitor,1,149.99,01/08/19 13:34,"190 4th St, Austin, TX 73301" -149215,27in FHD Monitor,1,149.99,01/28/19 12:14,"707 Walnut St, Seattle, WA 98101" -149216,AA Batteries (4-pack),1,3.84,01/02/19 10:52,"421 Meadow St, New York City, NY 10001" -149217,Apple Airpods Headphones,1,150,01/17/19 20:40,"502 13th St, Dallas, TX 75001" -149218,Lightning Charging Cable,1,14.95,01/24/19 16:46,"85 Sunset St, Portland, OR 97035" -149219,Lightning Charging Cable,1,14.95,01/10/19 18:18,"180 7th St, Seattle, WA 98101" -149220,AA Batteries (4-pack),3,3.84,01/10/19 11:43,"539 12th St, Boston, MA 02215" -149221,Apple Airpods Headphones,1,150,01/09/19 15:53,"775 5th St, Dallas, TX 75001" -149222,AA Batteries (4-pack),1,3.84,01/27/19 19:10,"754 Jackson St, New York City, NY 10001" -149223,LG Dryer,1,600.0,01/10/19 14:32,"636 Lake St, Boston, MA 02215" -149224,Lightning Charging Cable,1,14.95,01/25/19 13:55,"461 West St, Portland, OR 97035" -149225,Flatscreen TV,1,300,01/12/19 09:55,"143 River St, Seattle, WA 98101" -149226,27in FHD Monitor,1,149.99,01/07/19 01:34,"677 7th St, Portland, OR 97035" -149227,Wired Headphones,1,11.99,01/05/19 12:38,"315 Park St, Portland, OR 97035" -149228,27in FHD Monitor,1,149.99,01/26/19 17:57,"224 Spruce St, San Francisco, CA 94016" -149229,AAA Batteries (4-pack),1,2.99,01/03/19 20:09,"418 South St, San Francisco, CA 94016" -149230,AA Batteries (4-pack),1,3.84,01/24/19 12:49,"766 2nd St, Dallas, TX 75001" -149231,Lightning Charging Cable,1,14.95,01/13/19 21:48,"795 4th St, San Francisco, CA 94016" -149232,AAA Batteries (4-pack),1,2.99,01/14/19 00:30,"265 Jackson St, New York City, NY 10001" -149233,27in 4K Gaming Monitor,1,389.99,01/11/19 22:22,"356 Forest St, Boston, MA 02215" -149234,Lightning Charging Cable,1,14.95,01/25/19 20:04,"898 2nd St, Atlanta, GA 30301" -149235,34in Ultrawide Monitor,1,379.99,01/09/19 19:28,"238 Maple St, Atlanta, GA 30301" -149236,AA Batteries (4-pack),2,3.84,01/27/19 13:41,"411 Highland St, San Francisco, CA 94016" -149237,AAA Batteries (4-pack),2,2.99,01/31/19 16:14,"848 Adams St, Seattle, WA 98101" -149238,Lightning Charging Cable,1,14.95,01/05/19 17:05,"194 Hill St, Seattle, WA 98101" -149239,AAA Batteries (4-pack),2,2.99,01/18/19 22:21,"896 2nd St, Los Angeles, CA 90001" -149240,iPhone,1,700,01/26/19 23:12,"51 6th St, Boston, MA 02215" -149241,AA Batteries (4-pack),3,3.84,01/28/19 12:52,"487 Sunset St, San Francisco, CA 94016" -149242,Apple Airpods Headphones,1,150,01/18/19 07:45,"117 Hill St, San Francisco, CA 94016" -149243,Apple Airpods Headphones,1,150,01/21/19 14:26,"109 12th St, Portland, ME 04101" -149244,Lightning Charging Cable,1,14.95,01/27/19 11:59,"340 Main St, San Francisco, CA 94016" -149245,USB-C Charging Cable,3,11.95,01/13/19 09:01,"885 River St, San Francisco, CA 94016" -149246,AAA Batteries (4-pack),1,2.99,01/03/19 14:08,"791 2nd St, San Francisco, CA 94016" -149247,AA Batteries (4-pack),1,3.84,01/03/19 10:43,"864 Forest St, San Francisco, CA 94016" -149248,AAA Batteries (4-pack),1,2.99,01/02/19 18:45,"451 2nd St, Seattle, WA 98101" -149249,Wired Headphones,2,11.99,01/20/19 09:39,"373 Forest St, Portland, OR 97035" -149250,34in Ultrawide Monitor,1,379.99,01/11/19 22:53,"521 Cedar St, Los Angeles, CA 90001" -149251,iPhone,1,700,01/13/19 23:46,"555 9th St, San Francisco, CA 94016" -149252,Apple Airpods Headphones,1,150,01/17/19 08:34,"459 13th St, Dallas, TX 75001" -149253,Macbook Pro Laptop,1,1700,01/02/19 22:37,"589 Sunset St, San Francisco, CA 94016" -149254,Lightning Charging Cable,1,14.95,01/23/19 21:42,"99 Lincoln St, San Francisco, CA 94016" -149255,Apple Airpods Headphones,1,150,01/17/19 23:33,"838 Walnut St, New York City, NY 10001" -149256,27in 4K Gaming Monitor,1,389.99,01/29/19 10:10,"33 Highland St, New York City, NY 10001" -149257,20in Monitor,1,109.99,01/30/19 22:52,"887 Dogwood St, New York City, NY 10001" -149258,USB-C Charging Cable,1,11.95,01/27/19 21:50,"996 Ridge St, Portland, OR 97035" -149259,Apple Airpods Headphones,1,150,01/08/19 13:25,"320 Sunset St, San Francisco, CA 94016" -149260,AAA Batteries (4-pack),1,2.99,01/31/19 21:20,"372 Jefferson St, Boston, MA 02215" -149261,iPhone,1,700,01/26/19 11:18,"954 Adams St, Austin, TX 73301" -149262,USB-C Charging Cable,1,11.95,01/23/19 19:03,"58 Willow St, Austin, TX 73301" -149263,Google Phone,1,600,01/03/19 12:17,"119 14th St, San Francisco, CA 94016" -149263,USB-C Charging Cable,1,11.95,01/03/19 12:17,"119 14th St, San Francisco, CA 94016" -149264,AAA Batteries (4-pack),1,2.99,01/03/19 12:50,"119 Jefferson St, Boston, MA 02215" -149265,Wired Headphones,1,11.99,01/17/19 08:11,"73 South St, Austin, TX 73301" -149266,AA Batteries (4-pack),1,3.84,01/13/19 10:40,"442 Willow St, San Francisco, CA 94016" -149267,Wired Headphones,1,11.99,01/12/19 03:14,"88 South St, San Francisco, CA 94016" -149268,Macbook Pro Laptop,1,1700,01/11/19 15:45,"47 West St, Seattle, WA 98101" -149269,34in Ultrawide Monitor,1,379.99,01/18/19 14:32,"208 2nd St, Los Angeles, CA 90001" -149270,USB-C Charging Cable,1,11.95,01/24/19 11:46,"372 Main St, Portland, ME 04101" -149271,AA Batteries (4-pack),1,3.84,01/19/19 18:44,"334 11th St, New York City, NY 10001" -149272,Bose SoundSport Headphones,1,99.99,01/12/19 12:46,"607 Walnut St, Los Angeles, CA 90001" -149273,USB-C Charging Cable,1,11.95,01/12/19 20:35,"15 South St, Boston, MA 02215" -149274,27in 4K Gaming Monitor,1,389.99,01/14/19 22:35,"613 6th St, San Francisco, CA 94016" -149275,AAA Batteries (4-pack),1,2.99,01/25/19 21:51,"710 10th St, Los Angeles, CA 90001" -149276,Lightning Charging Cable,1,14.95,01/16/19 12:56,"439 Spruce St, Los Angeles, CA 90001" -149277,USB-C Charging Cable,1,11.95,01/24/19 12:06,"413 Lake St, New York City, NY 10001" -149278,AA Batteries (4-pack),1,3.84,01/31/19 14:16,"502 Highland St, San Francisco, CA 94016" -149279,Wired Headphones,1,11.99,01/27/19 11:00,"279 Willow St, San Francisco, CA 94016" -149280,Wired Headphones,1,11.99,01/27/19 17:28,"145 Lake St, New York City, NY 10001" -149281,Apple Airpods Headphones,1,150,01/10/19 20:24,"844 Hill St, Atlanta, GA 30301" -149282,USB-C Charging Cable,1,11.95,01/15/19 17:55,"846 12th St, Portland, OR 97035" -149283,Lightning Charging Cable,1,14.95,01/08/19 10:22,"542 Sunset St, San Francisco, CA 94016" -149284,Lightning Charging Cable,1,14.95,01/28/19 15:48,"395 Meadow St, Los Angeles, CA 90001" -149285,AA Batteries (4-pack),2,3.84,01/24/19 16:01,"93 6th St, Boston, MA 02215" -149286,Apple Airpods Headphones,1,150,01/01/19 21:40,"651 7th St, San Francisco, CA 94016" -149287,USB-C Charging Cable,1,11.95,01/08/19 11:25,"88 2nd St, Dallas, TX 75001" -149288,Wired Headphones,1,11.99,01/31/19 19:59,"319 Cherry St, Seattle, WA 98101" -149289,27in 4K Gaming Monitor,1,389.99,01/11/19 08:52,"261 Park St, Portland, OR 97035" -149290,USB-C Charging Cable,1,11.95,01/10/19 07:43,"744 5th St, Los Angeles, CA 90001" -149291,34in Ultrawide Monitor,1,379.99,01/21/19 11:41,"216 Cherry St, New York City, NY 10001" -149292,27in FHD Monitor,1,149.99,01/20/19 22:21,"654 Elm St, New York City, NY 10001" -149293,Apple Airpods Headphones,1,150,01/25/19 23:12,"301 Dogwood St, San Francisco, CA 94016" -149294,Bose SoundSport Headphones,1,99.99,01/30/19 11:29,"494 Maple St, Los Angeles, CA 90001" -149295,27in 4K Gaming Monitor,1,389.99,01/09/19 21:58,"673 Dogwood St, New York City, NY 10001" -149296,AA Batteries (4-pack),2,3.84,01/10/19 20:24,"43 Lake St, Los Angeles, CA 90001" -149297,Macbook Pro Laptop,1,1700,01/29/19 16:58,"495 Meadow St, Seattle, WA 98101" -149298,Bose SoundSport Headphones,1,99.99,01/01/19 13:14,"453 Maple St, Seattle, WA 98101" -149299,USB-C Charging Cable,1,11.95,01/02/19 16:44,"256 Maple St, San Francisco, CA 94016" -149300,Wired Headphones,1,11.99,01/03/19 11:57,"178 Maple St, Los Angeles, CA 90001" -149301,AAA Batteries (4-pack),2,2.99,01/15/19 13:16,"526 12th St, Los Angeles, CA 90001" -149302,Apple Airpods Headphones,1,150,01/18/19 11:25,"550 Ridge St, Austin, TX 73301" -149303,AA Batteries (4-pack),5,3.84,01/18/19 12:12,"171 Highland St, San Francisco, CA 94016" -149304,USB-C Charging Cable,1,11.95,01/05/19 14:46,"171 West St, Atlanta, GA 30301" -149305,20in Monitor,1,109.99,01/10/19 16:02,"27 Johnson St, San Francisco, CA 94016" -149306,27in 4K Gaming Monitor,1,389.99,01/09/19 00:10,"224 Hill St, Dallas, TX 75001" -149307,AAA Batteries (4-pack),1,2.99,01/13/19 12:12,"36 Sunset St, Austin, TX 73301" -149308,Apple Airpods Headphones,1,150,01/02/19 23:07,"351 Madison St, New York City, NY 10001" -149308,Apple Airpods Headphones,1,150,01/02/19 23:07,"351 Madison St, New York City, NY 10001" -149309,Wired Headphones,1,11.99,01/26/19 12:42,"265 Sunset St, San Francisco, CA 94016" -149310,27in FHD Monitor,1,149.99,01/29/19 16:21,"383 Lincoln St, Dallas, TX 75001" -149311,Lightning Charging Cable,1,14.95,01/27/19 19:22,"235 Lincoln St, San Francisco, CA 94016" -149312,Wired Headphones,1,11.99,01/09/19 10:48,"268 11th St, Atlanta, GA 30301" -149313,Lightning Charging Cable,1,14.95,01/09/19 16:51,"86 8th St, Austin, TX 73301" -149314,Lightning Charging Cable,1,14.95,01/06/19 15:43,"972 13th St, San Francisco, CA 94016" -149315,Lightning Charging Cable,1,14.95,01/16/19 19:19,"177 Wilson St, Atlanta, GA 30301" -149316,USB-C Charging Cable,1,11.95,01/12/19 21:16,"703 14th St, New York City, NY 10001" -149317,USB-C Charging Cable,1,11.95,01/16/19 10:46,"690 Adams St, Seattle, WA 98101" -149318,AA Batteries (4-pack),2,3.84,01/06/19 13:17,"706 Hill St, Los Angeles, CA 90001" -149319,34in Ultrawide Monitor,1,379.99,01/09/19 23:08,"40 Dogwood St, Los Angeles, CA 90001" -149320,USB-C Charging Cable,1,11.95,01/08/19 22:31,"25 Elm St, Seattle, WA 98101" -149321,27in 4K Gaming Monitor,1,389.99,01/12/19 11:03,"842 Wilson St, San Francisco, CA 94016" -149322,Bose SoundSport Headphones,1,99.99,01/16/19 09:32,"979 1st St, San Francisco, CA 94016" -149323,Apple Airpods Headphones,1,150,01/04/19 10:45,"510 Lakeview St, Portland, OR 97035" -149324,USB-C Charging Cable,2,11.95,01/06/19 20:13,"113 Sunset St, Austin, TX 73301" -149325,AA Batteries (4-pack),1,3.84,01/10/19 22:33,"142 Center St, Los Angeles, CA 90001" -149326,AA Batteries (4-pack),1,3.84,01/17/19 11:17,"439 Pine St, Los Angeles, CA 90001" -149327,27in FHD Monitor,1,149.99,01/27/19 14:50,"431 2nd St, Los Angeles, CA 90001" -149327,Apple Airpods Headphones,1,150,01/27/19 14:50,"431 2nd St, Los Angeles, CA 90001" -149328,34in Ultrawide Monitor,1,379.99,01/03/19 19:02,"142 Park St, Dallas, TX 75001" -149329,Bose SoundSport Headphones,1,99.99,01/15/19 22:21,"206 8th St, Boston, MA 02215" -149330,Vareebadd Phone,1,400,01/06/19 08:26,"414 6th St, Boston, MA 02215" -149331,Lightning Charging Cable,1,14.95,01/23/19 21:07,"31 Hickory St, Boston, MA 02215" -149332,Apple Airpods Headphones,1,150,01/01/19 18:30,"552 Elm St, San Francisco, CA 94016" -149333,Wired Headphones,1,11.99,01/17/19 09:40,"868 Wilson St, Los Angeles, CA 90001" -149334,27in FHD Monitor,1,149.99,01/14/19 19:32,"636 10th St, Seattle, WA 98101" -149335,Macbook Pro Laptop,1,1700,01/22/19 14:50,"970 Lakeview St, New York City, NY 10001" -149336,Vareebadd Phone,1,400,01/29/19 10:29,"939 Forest St, Austin, TX 73301" -149336,USB-C Charging Cable,1,11.95,01/29/19 10:29,"939 Forest St, Austin, TX 73301" -149337,Apple Airpods Headphones,1,150,01/23/19 21:46,"686 Lakeview St, Boston, MA 02215" -149338,AA Batteries (4-pack),1,3.84,01/28/19 23:36,"113 North St, San Francisco, CA 94016" -149339,Wired Headphones,1,11.99,01/24/19 18:33,"915 Park St, Los Angeles, CA 90001" -149340,27in 4K Gaming Monitor,1,389.99,01/02/19 22:21,"781 Park St, San Francisco, CA 94016" -149341,iPhone,1,700,01/28/19 21:48,"660 Forest St, New York City, NY 10001" -149342,AA Batteries (4-pack),1,3.84,01/15/19 09:56,"603 West St, Austin, TX 73301" -149343,Apple Airpods Headphones,1,150,01/01/19 04:56,"735 5th St, New York City, NY 10001" -149344,Lightning Charging Cable,1,14.95,01/21/19 21:23,"893 Washington St, San Francisco, CA 94016" -149345,iPhone,1,700,01/11/19 12:43,"946 Elm St, Boston, MA 02215" -149346,USB-C Charging Cable,1,11.95,01/18/19 17:39,"614 Elm St, New York City, NY 10001" -149347,Wired Headphones,1,11.99,01/20/19 17:05,"912 Highland St, Atlanta, GA 30301" -149348,AA Batteries (4-pack),2,3.84,01/31/19 21:25,"743 Center St, San Francisco, CA 94016" -149349,Bose SoundSport Headphones,1,99.99,01/10/19 09:59,"304 Johnson St, San Francisco, CA 94016" -149350,USB-C Charging Cable,2,11.95,01/01/19 06:03,"943 2nd St, Atlanta, GA 30301" -149351,Lightning Charging Cable,1,14.95,01/23/19 13:59,"425 11th St, San Francisco, CA 94016" -149352,Lightning Charging Cable,1,14.95,01/12/19 13:17,"41 North St, Los Angeles, CA 90001" -149353,USB-C Charging Cable,1,11.95,01/04/19 05:31,"868 Washington St, Dallas, TX 75001" -149354,Lightning Charging Cable,1,14.95,01/10/19 14:34,"680 Jefferson St, New York City, NY 10001" -149355,AA Batteries (4-pack),1,3.84,01/26/19 09:31,"650 Cherry St, Dallas, TX 75001" -149356,34in Ultrawide Monitor,1,379.99,01/07/19 10:46,"905 Jefferson St, Los Angeles, CA 90001" -149357,AAA Batteries (4-pack),1,2.99,01/10/19 17:03,"176 Lincoln St, New York City, NY 10001" -149358,iPhone,1,700,01/09/19 14:17,"885 14th St, New York City, NY 10001" -149359,AAA Batteries (4-pack),1,2.99,01/30/19 13:47,"729 12th St, Seattle, WA 98101" -149360,USB-C Charging Cable,1,11.95,01/09/19 07:29,"811 Lake St, Boston, MA 02215" -149361,Apple Airpods Headphones,1,150,01/15/19 17:55,"273 8th St, New York City, NY 10001" -149362,AAA Batteries (4-pack),2,2.99,01/12/19 09:05,"255 Dogwood St, San Francisco, CA 94016" -149363,27in FHD Monitor,1,149.99,01/28/19 15:02,"103 Cherry St, Seattle, WA 98101" -149364,AA Batteries (4-pack),2,3.84,01/23/19 16:28,"841 6th St, Atlanta, GA 30301" -149365,Apple Airpods Headphones,1,150,01/09/19 16:52,"530 Pine St, San Francisco, CA 94016" -149366,Google Phone,1,600,01/20/19 18:17,"895 Walnut St, San Francisco, CA 94016" -149367,Lightning Charging Cable,2,14.95,01/19/19 16:31,"184 Center St, Los Angeles, CA 90001" -149368,AAA Batteries (4-pack),1,2.99,01/01/19 23:42,"347 Madison St, Dallas, TX 75001" -149369,Lightning Charging Cable,1,14.95,01/17/19 19:30,"676 Washington St, San Francisco, CA 94016" -149370,AAA Batteries (4-pack),1,2.99,01/24/19 16:05,"645 7th St, Seattle, WA 98101" -149371,27in 4K Gaming Monitor,1,389.99,01/18/19 14:18,"676 Hickory St, New York City, NY 10001" -149372,AAA Batteries (4-pack),1,2.99,01/02/19 08:43,"325 Hill St, San Francisco, CA 94016" -149373,AA Batteries (4-pack),1,3.84,01/11/19 17:49,"54 Ridge St, San Francisco, CA 94016" -149374,34in Ultrawide Monitor,1,379.99,01/24/19 15:25,"5 7th St, Seattle, WA 98101" -149375,iPhone,1,700,01/21/19 22:13,"501 Hill St, Los Angeles, CA 90001" -149375,Lightning Charging Cable,1,14.95,01/21/19 22:13,"501 Hill St, Los Angeles, CA 90001" -149376,USB-C Charging Cable,1,11.95,01/28/19 13:26,"151 Maple St, San Francisco, CA 94016" -149377,Lightning Charging Cable,1,14.95,01/15/19 11:54,"30 5th St, New York City, NY 10001" -149378,AA Batteries (4-pack),2,3.84,01/01/19 09:38,"540 Lincoln St, Atlanta, GA 30301" -149379,Wired Headphones,1,11.99,01/19/19 12:38,"505 Jackson St, Seattle, WA 98101" -149380,Flatscreen TV,1,300,01/12/19 12:56,"139 9th St, Atlanta, GA 30301" -149381,Google Phone,1,600,01/29/19 09:28,"939 Forest St, Boston, MA 02215" -149382,AAA Batteries (4-pack),2,2.99,01/31/19 19:32,"702 2nd St, Portland, ME 04101" -149383,ThinkPad Laptop,1,999.99,01/28/19 09:37,"187 14th St, San Francisco, CA 94016" -149384,AA Batteries (4-pack),1,3.84,01/05/19 10:17,"771 Sunset St, Portland, OR 97035" -149385,Wired Headphones,1,11.99,01/20/19 12:23,"768 Lincoln St, New York City, NY 10001" -149386,USB-C Charging Cable,1,11.95,01/01/19 22:36,"716 Chestnut St, Los Angeles, CA 90001" -149387,Apple Airpods Headphones,1,150,01/26/19 09:36,"345 1st St, Boston, MA 02215" -149388,USB-C Charging Cable,1,11.95,01/15/19 20:25,"502 Chestnut St, San Francisco, CA 94016" -149389,ThinkPad Laptop,1,999.99,01/31/19 19:12,"307 Hill St, Los Angeles, CA 90001" -149390,20in Monitor,1,109.99,01/16/19 18:06,"6 7th St, San Francisco, CA 94016" -149391,34in Ultrawide Monitor,1,379.99,01/15/19 12:34,"55 Johnson St, Portland, OR 97035" -149391,Apple Airpods Headphones,1,150,01/15/19 12:34,"55 Johnson St, Portland, OR 97035" -149392,20in Monitor,1,109.99,01/05/19 08:16,"883 Adams St, Dallas, TX 75001" -149393,iPhone,1,700,01/13/19 18:17,"43 Ridge St, San Francisco, CA 94016" -149394,Apple Airpods Headphones,1,150,01/31/19 17:03,"16 14th St, New York City, NY 10001" -149395,Lightning Charging Cable,1,14.95,01/17/19 12:10,"447 Spruce St, Los Angeles, CA 90001" -149396,Wired Headphones,1,11.99,01/22/19 06:13,"945 Highland St, Seattle, WA 98101" -149397,Vareebadd Phone,1,400,01/05/19 20:52,"285 Forest St, New York City, NY 10001" -149398,Lightning Charging Cable,1,14.95,01/10/19 19:27,"450 14th St, New York City, NY 10001" -149399,Wired Headphones,1,11.99,01/14/19 19:55,"791 Madison St, Boston, MA 02215" -149400,Bose SoundSport Headphones,1,99.99,01/27/19 13:05,"254 Jefferson St, Dallas, TX 75001" -149401,Lightning Charging Cable,1,14.95,01/05/19 09:44,"963 4th St, New York City, NY 10001" -149402,AAA Batteries (4-pack),1,2.99,01/16/19 20:04,"296 Johnson St, Los Angeles, CA 90001" -149403,AA Batteries (4-pack),1,3.84,01/02/19 10:57,"394 Jackson St, Los Angeles, CA 90001" -149404,AAA Batteries (4-pack),1,2.99,01/29/19 20:08,"29 Cherry St, New York City, NY 10001" -149405,34in Ultrawide Monitor,1,379.99,01/31/19 19:17,"665 South St, San Francisco, CA 94016" -149406,Google Phone,1,600,01/04/19 10:34,"258 Meadow St, Boston, MA 02215" -149407,AAA Batteries (4-pack),1,2.99,01/14/19 21:33,"341 5th St, Portland, ME 04101" -149408,AA Batteries (4-pack),3,3.84,01/20/19 21:17,"352 Meadow St, Dallas, TX 75001" -149409,AAA Batteries (4-pack),1,2.99,01/29/19 09:35,"87 7th St, San Francisco, CA 94016" -149410,Lightning Charging Cable,1,14.95,01/22/19 00:50,"955 Wilson St, San Francisco, CA 94016" -149411,27in FHD Monitor,1,149.99,01/14/19 01:20,"648 12th St, Los Angeles, CA 90001" -149412,Wired Headphones,1,11.99,01/11/19 14:56,"694 1st St, Los Angeles, CA 90001" -149413,Flatscreen TV,1,300,01/14/19 01:32,"993 West St, Dallas, TX 75001" -149414,AA Batteries (4-pack),1,3.84,01/15/19 20:02,"459 9th St, Seattle, WA 98101" -149415,AAA Batteries (4-pack),1,2.99,01/05/19 09:56,"705 10th St, Dallas, TX 75001" -149416,Lightning Charging Cable,1,14.95,01/22/19 19:48,"493 11th St, Atlanta, GA 30301" -149417,Lightning Charging Cable,1,14.95,01/02/19 22:50,"548 Forest St, Boston, MA 02215" -149418,34in Ultrawide Monitor,1,379.99,01/15/19 10:52,"786 Hill St, San Francisco, CA 94016" -149419,Lightning Charging Cable,1,14.95,01/30/19 10:15,"642 Hickory St, San Francisco, CA 94016" -149420,Apple Airpods Headphones,1,150,01/09/19 13:50,"282 South St, San Francisco, CA 94016" -149421,Wired Headphones,1,11.99,01/01/19 08:31,"920 Willow St, Boston, MA 02215" -149422,Apple Airpods Headphones,1,150,01/31/19 05:43,"425 Church St, San Francisco, CA 94016" -149423,USB-C Charging Cable,1,11.95,01/19/19 08:54,"268 Spruce St, Dallas, TX 75001" -149424,iPhone,1,700,01/28/19 14:56,"141 Wilson St, San Francisco, CA 94016" -149425,AA Batteries (4-pack),1,3.84,01/28/19 18:23,"949 Maple St, San Francisco, CA 94016" -149426,Apple Airpods Headphones,1,150,01/16/19 15:47,"825 8th St, San Francisco, CA 94016" -149427,AA Batteries (4-pack),1,3.84,01/28/19 15:46,"658 8th St, Portland, OR 97035" -149428,27in FHD Monitor,1,149.99,01/29/19 14:18,"936 Jefferson St, Atlanta, GA 30301" -149429,Wired Headphones,1,11.99,01/20/19 15:44,"367 South St, Boston, MA 02215" -,,,,, -149430,Google Phone,1,600,01/17/19 20:12,"659 Church St, San Francisco, CA 94016" -149431,Macbook Pro Laptop,1,1700,01/27/19 19:15,"478 6th St, Atlanta, GA 30301" -149432,AAA Batteries (4-pack),2,2.99,01/20/19 08:57,"482 Forest St, Austin, TX 73301" -149433,AA Batteries (4-pack),1,3.84,01/11/19 11:54,"257 Highland St, Seattle, WA 98101" -149434,34in Ultrawide Monitor,1,379.99,01/14/19 15:04,"525 Highland St, San Francisco, CA 94016" -149435,USB-C Charging Cable,1,11.95,01/18/19 18:55,"586 7th St, Los Angeles, CA 90001" -149436,Lightning Charging Cable,1,14.95,01/11/19 18:12,"744 7th St, Austin, TX 73301" -149437,Apple Airpods Headphones,1,150,01/05/19 19:01,"257 Lincoln St, San Francisco, CA 94016" -149438,Wired Headphones,1,11.99,01/24/19 12:30,"359 Washington St, New York City, NY 10001" -149439,AAA Batteries (4-pack),2,2.99,01/26/19 22:29,"504 Center St, Los Angeles, CA 90001" -149440,Wired Headphones,1,11.99,01/15/19 13:52,"887 Hickory St, Los Angeles, CA 90001" -149441,AA Batteries (4-pack),1,3.84,01/21/19 11:49,"435 Park St, Boston, MA 02215" -149442,USB-C Charging Cable,1,11.95,01/27/19 22:15,"737 7th St, Portland, OR 97035" -149443,AA Batteries (4-pack),1,3.84,01/15/19 01:06,"372 12th St, Austin, TX 73301" -149444,Wired Headphones,1,11.99,01/12/19 23:09,"14 Spruce St, Boston, MA 02215" -149445,ThinkPad Laptop,1,999.99,01/31/19 19:17,"117 Madison St, Austin, TX 73301" -149446,Lightning Charging Cable,1,14.95,01/08/19 09:02,"142 5th St, New York City, NY 10001" -149447,AA Batteries (4-pack),1,3.84,01/27/19 18:15,"913 Jackson St, Dallas, TX 75001" -149448,Wired Headphones,1,11.99,01/09/19 08:52,"780 Lakeview St, Austin, TX 73301" -149449,ThinkPad Laptop,1,999.99,01/11/19 12:08,"450 Cherry St, Portland, ME 04101" -149450,Wired Headphones,1,11.99,01/23/19 20:12,"751 Forest St, San Francisco, CA 94016" -149451,27in FHD Monitor,1,149.99,01/08/19 15:32,"59 4th St, Boston, MA 02215" -149452,Wired Headphones,1,11.99,01/27/19 12:28,"546 Elm St, Atlanta, GA 30301" -149453,34in Ultrawide Monitor,1,379.99,01/21/19 13:51,"31 Adams St, New York City, NY 10001" -149454,AAA Batteries (4-pack),2,2.99,01/10/19 10:09,"293 Cedar St, Dallas, TX 75001" -149454,Wired Headphones,2,11.99,01/10/19 10:09,"293 Cedar St, Dallas, TX 75001" -,,,,, -149455,AAA Batteries (4-pack),1,2.99,01/17/19 13:51,"64 7th St, Dallas, TX 75001" -149456,34in Ultrawide Monitor,1,379.99,01/20/19 14:43,"753 Madison St, New York City, NY 10001" -149457,Wired Headphones,1,11.99,01/27/19 22:46,"825 Forest St, Portland, OR 97035" -149458,Wired Headphones,2,11.99,01/13/19 14:13,"479 Dogwood St, Dallas, TX 75001" -149459,AA Batteries (4-pack),3,3.84,01/26/19 14:17,"471 Pine St, San Francisco, CA 94016" -149460,AA Batteries (4-pack),2,3.84,01/18/19 22:02,"807 Walnut St, Portland, OR 97035" -149461,AA Batteries (4-pack),1,3.84,01/25/19 13:13,"716 10th St, Boston, MA 02215" -149462,Apple Airpods Headphones,1,150,01/16/19 13:23,"827 9th St, Seattle, WA 98101" -149463,20in Monitor,1,109.99,01/15/19 15:04,"139 Jefferson St, Los Angeles, CA 90001" -149464,27in 4K Gaming Monitor,1,389.99,01/02/19 12:13,"756 13th St, Dallas, TX 75001" -149465,Wired Headphones,1,11.99,01/28/19 11:27,"475 Lake St, Los Angeles, CA 90001" -149466,Lightning Charging Cable,1,14.95,01/17/19 21:34,"374 Lakeview St, San Francisco, CA 94016" -149467,USB-C Charging Cable,1,11.95,01/27/19 11:50,"628 Main St, Los Angeles, CA 90001" -149468,ThinkPad Laptop,1,999.99,01/04/19 17:41,"736 2nd St, Dallas, TX 75001" -149469,Wired Headphones,1,11.99,01/13/19 17:34,"415 Walnut St, San Francisco, CA 94016" -149470,USB-C Charging Cable,1,11.95,01/30/19 09:08,"314 Johnson St, Los Angeles, CA 90001" -149471,20in Monitor,1,109.99,01/22/19 14:47,"527 Madison St, New York City, NY 10001" -149472,USB-C Charging Cable,2,11.95,01/19/19 20:34,"388 Walnut St, Seattle, WA 98101" -149473,27in 4K Gaming Monitor,1,389.99,01/15/19 14:29,"75 Maple St, Boston, MA 02215" -149474,Wired Headphones,1,11.99,01/18/19 12:27,"342 Center St, Los Angeles, CA 90001" -149475,34in Ultrawide Monitor,1,379.99,01/22/19 08:51,"750 River St, Austin, TX 73301" -149476,iPhone,1,700,01/29/19 22:43,"58 Adams St, San Francisco, CA 94016" -149476,Lightning Charging Cable,1,14.95,01/29/19 22:43,"58 Adams St, San Francisco, CA 94016" -149477,Wired Headphones,1,11.99,01/03/19 23:21,"585 Meadow St, San Francisco, CA 94016" -149478,20in Monitor,1,109.99,01/15/19 20:26,"961 Highland St, Portland, OR 97035" -149479,Wired Headphones,2,11.99,01/29/19 10:22,"408 Highland St, Los Angeles, CA 90001" -149480,AAA Batteries (4-pack),1,2.99,01/04/19 11:12,"702 Chestnut St, Atlanta, GA 30301" -149481,USB-C Charging Cable,1,11.95,01/06/19 18:25,"57 Ridge St, Los Angeles, CA 90001" -149482,AAA Batteries (4-pack),2,2.99,01/21/19 18:00,"430 12th St, New York City, NY 10001" -149482,Lightning Charging Cable,1,14.95,01/21/19 18:00,"430 12th St, New York City, NY 10001" -149483,27in FHD Monitor,1,149.99,01/04/19 14:31,"3 Walnut St, Seattle, WA 98101" -149484,27in 4K Gaming Monitor,1,389.99,01/28/19 16:49,"571 Ridge St, Los Angeles, CA 90001" -149485,34in Ultrawide Monitor,1,379.99,01/13/19 00:40,"553 Jefferson St, Atlanta, GA 30301" -149486,Vareebadd Phone,1,400,01/09/19 23:04,"583 Jefferson St, Portland, OR 97035" -149487,AAA Batteries (4-pack),2,2.99,01/22/19 20:30,"290 1st St, Atlanta, GA 30301" -149488,USB-C Charging Cable,1,11.95,01/19/19 18:51,"843 13th St, Los Angeles, CA 90001" -149489,USB-C Charging Cable,1,11.95,01/02/19 18:31,"353 Madison St, New York City, NY 10001" -149490,Lightning Charging Cable,1,14.95,01/02/19 12:59,"855 Cedar St, Portland, OR 97035" -149491,USB-C Charging Cable,1,11.95,01/22/19 16:49,"559 Hickory St, San Francisco, CA 94016" -149492,AA Batteries (4-pack),1,3.84,01/01/19 12:11,"106 Pine St, Boston, MA 02215" -149493,27in FHD Monitor,1,149.99,01/23/19 15:10,"507 Highland St, Atlanta, GA 30301" -149494,Lightning Charging Cable,1,14.95,01/12/19 15:40,"649 River St, Los Angeles, CA 90001" -149495,Lightning Charging Cable,1,14.95,01/05/19 11:19,"599 13th St, New York City, NY 10001" -149496,Lightning Charging Cable,1,14.95,01/06/19 13:27,"978 Walnut St, Dallas, TX 75001" -149497,Wired Headphones,1,11.99,01/04/19 15:59,"486 Jackson St, New York City, NY 10001" -149498,Wired Headphones,1,11.99,01/14/19 20:48,"727 Madison St, Los Angeles, CA 90001" -149499,Vareebadd Phone,2,400,01/28/19 16:55,"961 Jefferson St, New York City, NY 10001" -149499,USB-C Charging Cable,1,11.95,01/28/19 16:55,"961 Jefferson St, New York City, NY 10001" -149499,Wired Headphones,1,11.99,01/28/19 16:55,"961 Jefferson St, New York City, NY 10001" -149500,iPhone,1,700,01/31/19 19:27,"691 4th St, San Francisco, CA 94016" -149500,Lightning Charging Cable,1,14.95,01/31/19 19:27,"691 4th St, San Francisco, CA 94016" -149501,AAA Batteries (4-pack),4,2.99,01/17/19 15:34,"443 North St, Boston, MA 02215" -149502,USB-C Charging Cable,1,11.95,01/18/19 18:31,"14 12th St, San Francisco, CA 94016" -149503,Apple Airpods Headphones,1,150,01/13/19 19:47,"366 West St, San Francisco, CA 94016" -149504,iPhone,1,700,01/09/19 15:34,"659 9th St, New York City, NY 10001" -149505,Google Phone,1,600,01/14/19 10:06,"326 Pine St, Seattle, WA 98101" -149506,Apple Airpods Headphones,1,150,01/09/19 19:05,"444 Johnson St, New York City, NY 10001" -149507,Bose SoundSport Headphones,1,99.99,01/10/19 21:36,"289 Hickory St, Boston, MA 02215" -149508,LG Washing Machine,1,600.0,01/15/19 15:47,"212 Meadow St, San Francisco, CA 94016" -149509,ThinkPad Laptop,1,999.99,01/01/19 14:04,"493 Dogwood St, Seattle, WA 98101" -149510,AA Batteries (4-pack),1,3.84,01/15/19 19:16,"329 5th St, San Francisco, CA 94016" -149511,AA Batteries (4-pack),1,3.84,01/05/19 18:55,"187 Dogwood St, New York City, NY 10001" -149512,USB-C Charging Cable,1,11.95,01/02/19 20:28,"561 South St, Los Angeles, CA 90001" -149513,USB-C Charging Cable,1,11.95,01/30/19 12:35,"150 9th St, Los Angeles, CA 90001" -149514,Apple Airpods Headphones,1,150,01/08/19 06:59,"828 6th St, San Francisco, CA 94016" -149515,USB-C Charging Cable,1,11.95,01/14/19 21:19,"913 10th St, Los Angeles, CA 90001" -149515,USB-C Charging Cable,1,11.95,01/14/19 21:19,"913 10th St, Los Angeles, CA 90001" -149516,34in Ultrawide Monitor,1,379.99,01/23/19 11:02,"897 9th St, Seattle, WA 98101" -149517,AA Batteries (4-pack),1,3.84,01/08/19 22:28,"264 West St, San Francisco, CA 94016" -149518,AA Batteries (4-pack),1,3.84,01/20/19 21:50,"523 Center St, Dallas, TX 75001" -149518,ThinkPad Laptop,1,999.99,01/20/19 21:50,"523 Center St, Dallas, TX 75001" -149519,Google Phone,1,600,01/18/19 19:28,"351 2nd St, New York City, NY 10001" -149520,Apple Airpods Headphones,1,150,01/13/19 00:07,"368 10th St, San Francisco, CA 94016" -149521,Apple Airpods Headphones,1,150,01/30/19 16:20,"621 12th St, Boston, MA 02215" -149522,Lightning Charging Cable,1,14.95,01/27/19 16:59,"816 2nd St, Atlanta, GA 30301" -149523,Flatscreen TV,1,300,01/30/19 17:00,"748 Jackson St, Los Angeles, CA 90001" -149524,AA Batteries (4-pack),1,3.84,01/01/19 12:28,"72 Main St, Portland, OR 97035" -149525,Wired Headphones,2,11.99,01/13/19 07:59,"670 8th St, San Francisco, CA 94016" -149526,AAA Batteries (4-pack),1,2.99,01/30/19 15:57,"701 Lincoln St, San Francisco, CA 94016" -149527,27in FHD Monitor,1,149.99,01/08/19 16:49,"69 Sunset St, Atlanta, GA 30301" -149528,AA Batteries (4-pack),1,3.84,01/22/19 21:27,"745 Highland St, Boston, MA 02215" -149529,USB-C Charging Cable,1,11.95,01/09/19 17:18,"584 12th St, New York City, NY 10001" -149530,ThinkPad Laptop,1,999.99,01/09/19 16:11,"972 Highland St, Boston, MA 02215" -149531,AAA Batteries (4-pack),3,2.99,01/30/19 05:35,"445 River St, New York City, NY 10001" -149532,34in Ultrawide Monitor,1,379.99,01/27/19 12:08,"186 Jackson St, Boston, MA 02215" -149533,AA Batteries (4-pack),1,3.84,01/18/19 22:45,"137 12th St, San Francisco, CA 94016" -149534,Bose SoundSport Headphones,1,99.99,01/17/19 20:05,"749 7th St, Atlanta, GA 30301" -149535,AA Batteries (4-pack),2,3.84,01/13/19 13:38,"447 West St, New York City, NY 10001" -149536,Lightning Charging Cable,1,14.95,01/02/19 17:00,"858 Willow St, Boston, MA 02215" -149537,Wired Headphones,1,11.99,01/14/19 00:46,"543 Cedar St, Dallas, TX 75001" -149538,USB-C Charging Cable,2,11.95,01/04/19 22:16,"969 Sunset St, Los Angeles, CA 90001" -149539,Lightning Charging Cable,1,14.95,01/04/19 18:15,"737 South St, Boston, MA 02215" -149540,Lightning Charging Cable,1,14.95,01/09/19 11:27,"89 Chestnut St, Boston, MA 02215" -149541,Lightning Charging Cable,1,14.95,01/03/19 21:20,"729 Center St, Atlanta, GA 30301" -149542,USB-C Charging Cable,2,11.95,01/23/19 12:52,"782 Cedar St, San Francisco, CA 94016" -149543,Lightning Charging Cable,1,14.95,01/15/19 17:28,"194 Hill St, Atlanta, GA 30301" -149544,Apple Airpods Headphones,1,150,01/29/19 23:21,"650 Maple St, San Francisco, CA 94016" -149545,Lightning Charging Cable,2,14.95,01/26/19 22:50,"323 14th St, San Francisco, CA 94016" -149546,AA Batteries (4-pack),1,3.84,01/01/19 17:57,"223 Jefferson St, Boston, MA 02215" -149546,Bose SoundSport Headphones,1,99.99,01/01/19 17:57,"223 Jefferson St, Boston, MA 02215" -149547,AAA Batteries (4-pack),1,2.99,01/29/19 15:05,"920 6th St, New York City, NY 10001" -149548,27in FHD Monitor,1,149.99,01/13/19 13:35,"530 Sunset St, San Francisco, CA 94016" -149549,Bose SoundSport Headphones,1,99.99,01/25/19 19:46,"57 Park St, New York City, NY 10001" -149550,AAA Batteries (4-pack),2,2.99,01/20/19 12:46,"893 12th St, San Francisco, CA 94016" -149551,USB-C Charging Cable,1,11.95,01/06/19 15:19,"985 8th St, New York City, NY 10001" -149552,20in Monitor,1,109.99,01/10/19 12:14,"862 4th St, Atlanta, GA 30301" -149553,USB-C Charging Cable,1,11.95,01/20/19 19:07,"362 Highland St, Portland, OR 97035" -149554,AA Batteries (4-pack),2,3.84,01/21/19 22:52,"782 Spruce St, Boston, MA 02215" -149555,27in FHD Monitor,1,149.99,01/11/19 23:46,"602 1st St, San Francisco, CA 94016" -149556,AAA Batteries (4-pack),1,2.99,01/22/19 15:13,"331 Willow St, Los Angeles, CA 90001" -149557,USB-C Charging Cable,1,11.95,01/15/19 16:37,"82 Lincoln St, Dallas, TX 75001" -149558,34in Ultrawide Monitor,1,379.99,01/30/19 23:07,"602 Pine St, Dallas, TX 75001" -149559,Apple Airpods Headphones,1,150,01/24/19 13:05,"744 12th St, San Francisco, CA 94016" -149560,USB-C Charging Cable,1,11.95,01/06/19 18:18,"715 Chestnut St, Portland, OR 97035" -149561,Google Phone,1,600,01/24/19 20:12,"611 Maple St, San Francisco, CA 94016" -149561,Wired Headphones,2,11.99,01/24/19 20:12,"611 Maple St, San Francisco, CA 94016" -149562,AA Batteries (4-pack),1,3.84,01/05/19 23:22,"366 Walnut St, San Francisco, CA 94016" -149563,USB-C Charging Cable,1,11.95,01/05/19 11:12,"437 4th St, Los Angeles, CA 90001" -149564,Macbook Pro Laptop,1,1700,01/01/19 18:39,"794 Meadow St, San Francisco, CA 94016" -149565,AAA Batteries (4-pack),2,2.99,01/29/19 13:51,"537 Walnut St, Portland, OR 97035" -149566,27in FHD Monitor,1,149.99,01/06/19 10:22,"282 South St, New York City, NY 10001" -149567,Lightning Charging Cable,1,14.95,01/19/19 19:12,"585 4th St, Boston, MA 02215" -149568,AAA Batteries (4-pack),2,2.99,01/30/19 18:47,"54 Adams St, Boston, MA 02215" -149569,Google Phone,1,600,01/29/19 15:48,"467 14th St, Los Angeles, CA 90001" -149570,Macbook Pro Laptop,1,1700,01/26/19 08:30,"180 Lakeview St, Seattle, WA 98101" -149571,20in Monitor,1,109.99,01/02/19 15:08,"529 Jefferson St, Seattle, WA 98101" -149572,Flatscreen TV,1,300,01/31/19 14:45,"79 Cedar St, Boston, MA 02215" -149573,AA Batteries (4-pack),1,3.84,01/29/19 21:23,"682 9th St, Dallas, TX 75001" -149574,Bose SoundSport Headphones,1,99.99,01/08/19 14:06,"941 Main St, Seattle, WA 98101" -149575,Lightning Charging Cable,1,14.95,01/18/19 13:46,"792 2nd St, Los Angeles, CA 90001" -149576,Bose SoundSport Headphones,1,99.99,01/12/19 20:56,"507 8th St, Los Angeles, CA 90001" -149577,AAA Batteries (4-pack),3,2.99,01/09/19 15:43,"387 Forest St, San Francisco, CA 94016" -149578,Wired Headphones,1,11.99,01/16/19 20:59,"603 Park St, San Francisco, CA 94016" -149579,Macbook Pro Laptop,1,1700,01/01/19 10:09,"61 Lakeview St, Dallas, TX 75001" -149580,Wired Headphones,1,11.99,01/29/19 13:51,"312 Forest St, New York City, NY 10001" -149581,Bose SoundSport Headphones,1,99.99,01/28/19 16:45,"537 Jefferson St, San Francisco, CA 94016" -149582,iPhone,1,700,01/18/19 19:12,"602 2nd St, Austin, TX 73301" -149583,Wired Headphones,1,11.99,01/09/19 07:23,"309 Johnson St, Atlanta, GA 30301" -149584,AA Batteries (4-pack),1,3.84,01/12/19 10:50,"597 North St, Dallas, TX 75001" -149585,ThinkPad Laptop,1,999.99,01/20/19 18:09,"553 Ridge St, Los Angeles, CA 90001" -149586,USB-C Charging Cable,1,11.95,01/01/19 07:47,"631 Lakeview St, San Francisco, CA 94016" -149587,Apple Airpods Headphones,1,150,01/16/19 11:16,"318 Hill St, New York City, NY 10001" -149588,Lightning Charging Cable,1,14.95,01/09/19 09:09,"767 Meadow St, San Francisco, CA 94016" -149589,USB-C Charging Cable,1,11.95,01/28/19 21:12,"402 12th St, Los Angeles, CA 90001" -149590,USB-C Charging Cable,1,11.95,01/11/19 11:03,"883 Dogwood St, Seattle, WA 98101" -149591,Wired Headphones,1,11.99,01/09/19 14:26,"690 Hickory St, San Francisco, CA 94016" -149592,USB-C Charging Cable,1,11.95,01/27/19 09:41,"355 11th St, San Francisco, CA 94016" -149593,Lightning Charging Cable,2,14.95,01/07/19 15:11,"905 Lakeview St, Los Angeles, CA 90001" -149594,27in 4K Gaming Monitor,1,389.99,01/12/19 20:54,"508 11th St, Los Angeles, CA 90001" -149595,USB-C Charging Cable,1,11.95,01/16/19 13:12,"328 Lincoln St, Boston, MA 02215" -149596,Lightning Charging Cable,1,14.95,01/26/19 13:05,"694 Adams St, Boston, MA 02215" -149597,AA Batteries (4-pack),3,3.84,01/23/19 20:32,"607 Lakeview St, Portland, OR 97035" -149598,AAA Batteries (4-pack),1,2.99,01/24/19 14:28,"169 Lake St, San Francisco, CA 94016" -149599,USB-C Charging Cable,1,11.95,01/25/19 09:00,"743 Washington St, San Francisco, CA 94016" -149600,AAA Batteries (4-pack),1,2.99,01/29/19 12:04,"184 Spruce St, Atlanta, GA 30301" -149601,AAA Batteries (4-pack),2,2.99,01/14/19 21:27,"287 Dogwood St, Austin, TX 73301" -149602,34in Ultrawide Monitor,1,379.99,01/22/19 11:32,"430 Church St, Seattle, WA 98101" -149603,Lightning Charging Cable,1,14.95,01/20/19 14:30,"284 River St, Boston, MA 02215" -149604,Vareebadd Phone,1,400,01/04/19 11:40,"924 Highland St, San Francisco, CA 94016" -149604,Wired Headphones,1,11.99,01/04/19 11:40,"924 Highland St, San Francisco, CA 94016" -149605,AA Batteries (4-pack),1,3.84,01/25/19 19:52,"975 Hickory St, Boston, MA 02215" -149606,iPhone,1,700,01/25/19 15:08,"721 Lake St, Portland, OR 97035" -149606,Lightning Charging Cable,1,14.95,01/25/19 15:08,"721 Lake St, Portland, OR 97035" -149607,USB-C Charging Cable,1,11.95,01/04/19 16:38,"763 9th St, Boston, MA 02215" -149608,AA Batteries (4-pack),1,3.84,01/24/19 19:40,"485 Center St, Atlanta, GA 30301" -149609,AAA Batteries (4-pack),6,2.99,01/19/19 22:14,"285 Sunset St, San Francisco, CA 94016" -149610,AAA Batteries (4-pack),1,2.99,01/13/19 12:15,"307 4th St, Los Angeles, CA 90001" -149611,ThinkPad Laptop,2,999.99,01/31/19 17:47,"850 6th St, New York City, NY 10001" -149612,Wired Headphones,1,11.99,01/22/19 23:17,"247 Meadow St, San Francisco, CA 94016" -149613,AA Batteries (4-pack),1,3.84,01/30/19 14:55,"87 Spruce St, New York City, NY 10001" -149614,Lightning Charging Cable,1,14.95,01/26/19 14:29,"564 Jefferson St, Portland, OR 97035" -149615,27in FHD Monitor,1,149.99,01/25/19 17:18,"604 14th St, Los Angeles, CA 90001" -149616,Google Phone,1,600,01/02/19 09:17,"61 Lincoln St, Atlanta, GA 30301" -149616,USB-C Charging Cable,1,11.95,01/02/19 09:17,"61 Lincoln St, Atlanta, GA 30301" -149617,Google Phone,1,600,01/06/19 11:23,"754 North St, Dallas, TX 75001" -149618,Apple Airpods Headphones,1,150,01/29/19 19:58,"177 South St, Los Angeles, CA 90001" -149619,Bose SoundSport Headphones,1,99.99,01/21/19 20:04,"907 9th St, Los Angeles, CA 90001" -149620,Lightning Charging Cable,1,14.95,01/01/19 06:34,"338 Chestnut St, San Francisco, CA 94016" -149621,Bose SoundSport Headphones,1,99.99,01/20/19 15:37,"913 12th St, San Francisco, CA 94016" -149622,Bose SoundSport Headphones,1,99.99,01/26/19 15:58,"968 Johnson St, San Francisco, CA 94016" -149623,AA Batteries (4-pack),1,3.84,01/09/19 19:00,"282 Willow St, San Francisco, CA 94016" -149624,Lightning Charging Cable,1,14.95,01/15/19 14:33,"47 Walnut St, Los Angeles, CA 90001" -149625,AA Batteries (4-pack),1,3.84,01/14/19 15:29,"197 7th St, San Francisco, CA 94016" -149626,AA Batteries (4-pack),1,3.84,01/17/19 13:39,"307 Hickory St, Boston, MA 02215" -149627,AA Batteries (4-pack),1,3.84,01/30/19 15:24,"351 Pine St, Austin, TX 73301" -149628,Bose SoundSport Headphones,1,99.99,01/26/19 09:20,"272 Madison St, San Francisco, CA 94016" -149629,AA Batteries (4-pack),1,3.84,01/28/19 13:11,"743 Sunset St, Dallas, TX 75001" -149630,Wired Headphones,1,11.99,01/04/19 15:16,"682 Wilson St, Seattle, WA 98101" -149631,USB-C Charging Cable,1,11.95,01/01/19 20:33,"663 Hickory St, Los Angeles, CA 90001" -149632,USB-C Charging Cable,1,11.95,01/14/19 15:21,"389 Johnson St, Boston, MA 02215" -149632,Bose SoundSport Headphones,1,99.99,01/14/19 15:21,"389 Johnson St, Boston, MA 02215" -149633,AA Batteries (4-pack),1,3.84,01/16/19 21:59,"319 West St, San Francisco, CA 94016" -149634,Apple Airpods Headphones,1,150,01/12/19 09:30,"223 Lakeview St, New York City, NY 10001" -149635,27in 4K Gaming Monitor,1,389.99,01/27/19 22:50,"165 Pine St, Los Angeles, CA 90001" -149636,27in FHD Monitor,1,149.99,01/25/19 12:26,"547 9th St, New York City, NY 10001" -149637,Bose SoundSport Headphones,1,99.99,01/23/19 13:34,"762 4th St, Seattle, WA 98101" -149638,USB-C Charging Cable,1,11.95,01/04/19 11:51,"32 1st St, San Francisco, CA 94016" -149639,Lightning Charging Cable,1,14.95,01/10/19 09:15,"494 Highland St, Atlanta, GA 30301" -149640,Lightning Charging Cable,1,14.95,01/20/19 16:07,"52 14th St, Los Angeles, CA 90001" -149641,USB-C Charging Cable,1,11.95,01/09/19 13:45,"782 Forest St, San Francisco, CA 94016" -149642,AAA Batteries (4-pack),2,2.99,01/13/19 22:51,"169 Jackson St, Dallas, TX 75001" -149643,iPhone,1,700,01/31/19 11:29,"472 Hickory St, San Francisco, CA 94016" -149644,AAA Batteries (4-pack),1,2.99,01/22/19 10:37,"317 8th St, Boston, MA 02215" -149645,AA Batteries (4-pack),1,3.84,01/26/19 08:10,"919 7th St, Dallas, TX 75001" -149646,USB-C Charging Cable,1,11.95,01/13/19 18:33,"830 North St, San Francisco, CA 94016" -149647,Lightning Charging Cable,1,14.95,01/02/19 15:32,"226 Cherry St, Boston, MA 02215" -149648,AAA Batteries (4-pack),1,2.99,01/29/19 08:53,"296 14th St, Dallas, TX 75001" -149649,ThinkPad Laptop,1,999.99,01/31/19 09:21,"375 Pine St, San Francisco, CA 94016" -149650,Wired Headphones,1,11.99,01/31/19 18:45,"800 Jefferson St, Boston, MA 02215" -149651,Macbook Pro Laptop,1,1700,01/19/19 13:20,"68 12th St, New York City, NY 10001" -149652,AAA Batteries (4-pack),2,2.99,01/05/19 13:28,"256 Park St, San Francisco, CA 94016" -149653,Vareebadd Phone,1,400,01/16/19 13:56,"285 Cedar St, San Francisco, CA 94016" -149654,AA Batteries (4-pack),1,3.84,01/05/19 21:55,"36 Lakeview St, San Francisco, CA 94016" -149655,Lightning Charging Cable,1,14.95,01/25/19 12:28,"253 River St, Austin, TX 73301" -149656,Lightning Charging Cable,1,14.95,01/28/19 19:05,"859 South St, Atlanta, GA 30301" -149657,Bose SoundSport Headphones,1,99.99,01/10/19 09:03,"745 Walnut St, New York City, NY 10001" -149658,34in Ultrawide Monitor,1,379.99,01/30/19 18:46,"1 9th St, Dallas, TX 75001" -149659,AA Batteries (4-pack),1,3.84,01/21/19 19:47,"774 South St, Dallas, TX 75001" -149660,27in FHD Monitor,1,149.99,01/06/19 16:06,"377 Sunset St, New York City, NY 10001" -149661,AA Batteries (4-pack),3,3.84,01/13/19 13:59,"984 Maple St, Los Angeles, CA 90001" -149662,Apple Airpods Headphones,1,150,01/27/19 08:51,"755 5th St, Boston, MA 02215" -149663,AAA Batteries (4-pack),1,2.99,01/22/19 14:05,"635 Forest St, Boston, MA 02215" -149664,Apple Airpods Headphones,1,150,01/02/19 12:06,"490 Lake St, New York City, NY 10001" -149665,USB-C Charging Cable,1,11.95,01/03/19 18:28,"97 North St, New York City, NY 10001" -149666,Wired Headphones,1,11.99,01/11/19 19:21,"980 14th St, Los Angeles, CA 90001" -149667,Apple Airpods Headphones,1,150,01/02/19 15:36,"505 Hill St, San Francisco, CA 94016" -149668,USB-C Charging Cable,1,11.95,01/24/19 13:17,"636 Church St, San Francisco, CA 94016" -149669,Apple Airpods Headphones,1,150,01/18/19 20:45,"709 North St, Dallas, TX 75001" -149670,27in FHD Monitor,1,149.99,01/24/19 10:52,"727 Cedar St, Boston, MA 02215" -149671,iPhone,1,700,01/22/19 02:07,"330 South St, Boston, MA 02215" -149672,Macbook Pro Laptop,1,1700,01/20/19 00:15,"896 12th St, New York City, NY 10001" -149673,Bose SoundSport Headphones,1,99.99,01/22/19 15:09,"609 Park St, New York City, NY 10001" -149674,Apple Airpods Headphones,1,150,01/04/19 23:28,"71 14th St, San Francisco, CA 94016" -149675,Lightning Charging Cable,1,14.95,01/13/19 10:21,"699 Hickory St, New York City, NY 10001" -149676,Flatscreen TV,1,300,01/01/19 17:53,"347 Church St, New York City, NY 10001" -149677,AA Batteries (4-pack),1,3.84,01/19/19 18:01,"488 West St, New York City, NY 10001" -149678,27in FHD Monitor,1,149.99,01/22/19 15:19,"474 Walnut St, New York City, NY 10001" -149679,Wired Headphones,1,11.99,01/02/19 17:12,"139 Jackson St, San Francisco, CA 94016" -149680,Wired Headphones,1,11.99,01/14/19 15:21,"201 Meadow St, Los Angeles, CA 90001" -149681,AA Batteries (4-pack),2,3.84,01/28/19 08:07,"248 Meadow St, Portland, OR 97035" -149682,AAA Batteries (4-pack),1,2.99,01/19/19 11:05,"184 Wilson St, Boston, MA 02215" -149683,Flatscreen TV,1,300,01/14/19 07:56,"59 11th St, Los Angeles, CA 90001" -149684,USB-C Charging Cable,1,11.95,01/22/19 18:30,"192 Main St, New York City, NY 10001" -149685,Wired Headphones,1,11.99,01/24/19 16:35,"351 8th St, Seattle, WA 98101" -149686,Wired Headphones,1,11.99,01/07/19 12:03,"362 12th St, Boston, MA 02215" -149687,AAA Batteries (4-pack),3,2.99,01/21/19 17:19,"303 10th St, Boston, MA 02215" -149688,Apple Airpods Headphones,1,150,01/12/19 22:58,"359 Park St, New York City, NY 10001" -149689,Apple Airpods Headphones,1,150,01/06/19 21:35,"566 8th St, Los Angeles, CA 90001" -149690,Lightning Charging Cable,2,14.95,01/27/19 18:04,"54 2nd St, Seattle, WA 98101" -149691,AAA Batteries (4-pack),1,2.99,01/11/19 19:29,"895 Hill St, Portland, OR 97035" -149692,AA Batteries (4-pack),1,3.84,01/30/19 11:00,"947 Maple St, San Francisco, CA 94016" -149693,USB-C Charging Cable,1,11.95,01/20/19 19:48,"632 South St, Portland, OR 97035" -149694,AAA Batteries (4-pack),2,2.99,01/25/19 11:26,"682 10th St, Portland, OR 97035" -149695,Lightning Charging Cable,1,14.95,01/07/19 00:03,"518 Adams St, New York City, NY 10001" -149696,27in 4K Gaming Monitor,1,389.99,01/15/19 12:51,"938 Spruce St, San Francisco, CA 94016" -149697,27in FHD Monitor,1,149.99,01/19/19 23:24,"670 5th St, Los Angeles, CA 90001" -149698,Flatscreen TV,1,300,01/19/19 18:54,"863 Willow St, Dallas, TX 75001" -149699,Apple Airpods Headphones,1,150,01/05/19 20:24,"598 13th St, Portland, OR 97035" -149700,Lightning Charging Cable,1,14.95,01/06/19 23:24,"953 West St, New York City, NY 10001" -149701,AAA Batteries (4-pack),1,2.99,01/22/19 07:14,"788 Meadow St, San Francisco, CA 94016" -149702,27in 4K Gaming Monitor,1,389.99,01/20/19 13:36,"326 Meadow St, New York City, NY 10001" -149703,AAA Batteries (4-pack),1,2.99,01/31/19 14:25,"755 14th St, Boston, MA 02215" -149704,Lightning Charging Cable,1,14.95,01/09/19 14:00,"681 Walnut St, San Francisco, CA 94016" -149705,Google Phone,1,600,01/18/19 21:02,"285 Johnson St, Boston, MA 02215" -149706,AAA Batteries (4-pack),1,2.99,01/11/19 22:15,"581 14th St, San Francisco, CA 94016" -149707,Lightning Charging Cable,1,14.95,01/17/19 12:43,"453 Maple St, San Francisco, CA 94016" -149708,Wired Headphones,1,11.99,01/24/19 19:27,"582 Spruce St, San Francisco, CA 94016" -149709,Apple Airpods Headphones,1,150,01/14/19 06:53,"439 Church St, Atlanta, GA 30301" -149710,27in 4K Gaming Monitor,1,389.99,01/31/19 18:10,"949 Center St, San Francisco, CA 94016" -149711,ThinkPad Laptop,1,999.99,01/22/19 09:45,"992 Hill St, San Francisco, CA 94016" -149712,Bose SoundSport Headphones,1,99.99,01/28/19 21:15,"764 Wilson St, New York City, NY 10001" -149713,34in Ultrawide Monitor,1,379.99,01/26/19 16:40,"313 Church St, San Francisco, CA 94016" -149714,34in Ultrawide Monitor,1,379.99,01/13/19 14:48,"710 Park St, Los Angeles, CA 90001" -149715,Apple Airpods Headphones,1,150,01/26/19 10:54,"796 Pine St, Atlanta, GA 30301" -149716,AA Batteries (4-pack),1,3.84,01/30/19 10:32,"479 2nd St, Boston, MA 02215" -149717,Apple Airpods Headphones,1,150,01/05/19 08:52,"189 2nd St, Seattle, WA 98101" -149718,Macbook Pro Laptop,1,1700,01/26/19 11:18,"446 Johnson St, Los Angeles, CA 90001" -149719,AA Batteries (4-pack),1,3.84,01/12/19 10:09,"771 Jefferson St, San Francisco, CA 94016" -149719,Google Phone,1,600,01/12/19 10:09,"771 Jefferson St, San Francisco, CA 94016" -149720,AAA Batteries (4-pack),2,2.99,01/21/19 23:56,"199 8th St, Portland, OR 97035" -149721,USB-C Charging Cable,1,11.95,01/09/19 22:22,"889 Hill St, Austin, TX 73301" -149722,Bose SoundSport Headphones,1,99.99,01/03/19 11:46,"620 Highland St, New York City, NY 10001" -149723,Wired Headphones,2,11.99,01/09/19 15:27,"291 14th St, Seattle, WA 98101" -149724,27in 4K Gaming Monitor,1,389.99,01/06/19 19:25,"988 Willow St, Portland, OR 97035" -149725,AAA Batteries (4-pack),1,2.99,01/13/19 12:08,"543 North St, Boston, MA 02215" -149726,AAA Batteries (4-pack),1,2.99,01/17/19 17:13,"56 1st St, Portland, OR 97035" -149727,Lightning Charging Cable,1,14.95,01/31/19 18:34,"708 Highland St, Los Angeles, CA 90001" -149728,Bose SoundSport Headphones,1,99.99,01/31/19 15:53,"182 Pine St, San Francisco, CA 94016" -149729,AAA Batteries (4-pack),1,2.99,01/29/19 20:13,"927 12th St, Seattle, WA 98101" -149730,Wired Headphones,1,11.99,01/12/19 19:16,"340 Elm St, Boston, MA 02215" -149731,AA Batteries (4-pack),2,3.84,01/11/19 12:33,"788 Washington St, San Francisco, CA 94016" -149731,Apple Airpods Headphones,1,150,01/11/19 12:33,"788 Washington St, San Francisco, CA 94016" -149732,iPhone,1,700,01/29/19 20:02,"48 2nd St, San Francisco, CA 94016" -149733,LG Dryer,1,600.0,01/21/19 20:16,"715 4th St, Portland, ME 04101" -149734,Bose SoundSport Headphones,1,99.99,01/12/19 16:55,"46 Jackson St, Atlanta, GA 30301" -149735,AAA Batteries (4-pack),1,2.99,01/20/19 16:29,"747 Wilson St, Los Angeles, CA 90001" -149736,AA Batteries (4-pack),2,3.84,01/06/19 06:00,"89 Highland St, Dallas, TX 75001" -149737,Bose SoundSport Headphones,1,99.99,01/13/19 10:43,"647 Meadow St, Seattle, WA 98101" -149738,USB-C Charging Cable,1,11.95,01/11/19 11:22,"612 West St, New York City, NY 10001" -149738,USB-C Charging Cable,1,11.95,01/11/19 11:22,"612 West St, New York City, NY 10001" -149739,27in FHD Monitor,1,149.99,01/18/19 17:45,"445 5th St, San Francisco, CA 94016" -149740,AAA Batteries (4-pack),3,2.99,01/08/19 21:26,"883 West St, Atlanta, GA 30301" -149741,AA Batteries (4-pack),1,3.84,01/09/19 19:29,"584 Hickory St, San Francisco, CA 94016" -149742,AAA Batteries (4-pack),4,2.99,01/09/19 19:28,"396 11th St, New York City, NY 10001" -149743,Wired Headphones,1,11.99,01/05/19 11:33,"601 11th St, New York City, NY 10001" -149744,AAA Batteries (4-pack),1,2.99,01/28/19 17:20,"1 Lake St, New York City, NY 10001" -149745,Bose SoundSport Headphones,1,99.99,01/28/19 09:31,"883 Park St, Seattle, WA 98101" -149746,Wired Headphones,2,11.99,01/05/19 23:28,"383 Hill St, San Francisco, CA 94016" -149747,27in FHD Monitor,1,149.99,01/26/19 07:29,"527 Washington St, Boston, MA 02215" -149748,27in FHD Monitor,1,149.99,01/23/19 16:14,"370 Center St, San Francisco, CA 94016" -149749,Lightning Charging Cable,1,14.95,01/16/19 17:59,"567 1st St, New York City, NY 10001" -149750,AAA Batteries (4-pack),2,2.99,01/28/19 20:57,"280 2nd St, New York City, NY 10001" -149751,Wired Headphones,1,11.99,01/13/19 00:16,"834 Maple St, Seattle, WA 98101" -149752,Flatscreen TV,1,300,01/30/19 13:02,"554 4th St, Seattle, WA 98101" -149753,Wired Headphones,1,11.99,01/07/19 22:00,"647 Jefferson St, New York City, NY 10001" -149754,iPhone,1,700,01/14/19 09:24,"304 Forest St, Austin, TX 73301" -149755,Apple Airpods Headphones,1,150,01/16/19 21:23,"751 Cedar St, Atlanta, GA 30301" -149756,27in FHD Monitor,1,149.99,01/09/19 19:12,"216 Elm St, San Francisco, CA 94016" -149757,Google Phone,1,600,01/17/19 20:08,"97 9th St, San Francisco, CA 94016" -149758,AA Batteries (4-pack),1,3.84,01/20/19 09:07,"972 Lake St, Los Angeles, CA 90001" -149759,Apple Airpods Headphones,1,150,01/28/19 09:31,"336 Sunset St, Los Angeles, CA 90001" -149760,USB-C Charging Cable,1,11.95,01/24/19 12:16,"775 North St, Dallas, TX 75001" -149761,AAA Batteries (4-pack),1,2.99,01/16/19 13:22,"297 West St, Dallas, TX 75001" -149762,AA Batteries (4-pack),1,3.84,01/08/19 10:59,"216 Chestnut St, Los Angeles, CA 90001" -149763,Bose SoundSport Headphones,1,99.99,01/05/19 18:16,"177 Lake St, Portland, OR 97035" -149764,20in Monitor,1,109.99,01/25/19 07:28,"505 Lakeview St, Portland, OR 97035" -149765,Lightning Charging Cable,1,14.95,01/05/19 17:36,"894 Jackson St, Los Angeles, CA 90001" -149766,Apple Airpods Headphones,1,150,01/08/19 21:38,"991 Park St, San Francisco, CA 94016" -149767,AA Batteries (4-pack),3,3.84,01/25/19 11:10,"335 9th St, Austin, TX 73301" -149768,Apple Airpods Headphones,1,150,01/19/19 23:22,"499 River St, San Francisco, CA 94016" -149769,AAA Batteries (4-pack),3,2.99,01/31/19 11:00,"922 1st St, New York City, NY 10001" -149770,27in FHD Monitor,1,149.99,01/10/19 01:29,"189 Cherry St, San Francisco, CA 94016" -149771,Macbook Pro Laptop,1,1700,01/18/19 15:42,"6 4th St, San Francisco, CA 94016" -149772,AAA Batteries (4-pack),1,2.99,01/15/19 12:16,"409 10th St, San Francisco, CA 94016" -149773,Wired Headphones,1,11.99,01/18/19 22:07,"889 Lakeview St, Boston, MA 02215" -149773,27in FHD Monitor,1,149.99,01/18/19 22:07,"889 Lakeview St, Boston, MA 02215" -149774,AAA Batteries (4-pack),1,2.99,01/06/19 11:47,"2 Church St, San Francisco, CA 94016" -149775,AA Batteries (4-pack),1,3.84,01/20/19 01:21,"582 Adams St, Boston, MA 02215" -149776,Lightning Charging Cable,1,14.95,01/04/19 15:46,"513 Church St, San Francisco, CA 94016" -149777,Lightning Charging Cable,1,14.95,01/29/19 13:42,"644 South St, Austin, TX 73301" -149778,Wired Headphones,1,11.99,01/15/19 10:51,"630 7th St, Portland, OR 97035" -149779,27in FHD Monitor,1,149.99,01/17/19 11:40,"189 Church St, New York City, NY 10001" -149780,Lightning Charging Cable,1,14.95,01/23/19 10:55,"245 River St, Dallas, TX 75001" -149781,27in 4K Gaming Monitor,1,389.99,01/02/19 14:42,"177 Lakeview St, Dallas, TX 75001" -149782,27in 4K Gaming Monitor,1,389.99,01/30/19 07:17,"409 Hill St, Los Angeles, CA 90001" -149783,USB-C Charging Cable,1,11.95,01/01/19 11:36,"11 Center St, Boston, MA 02215" -149784,Apple Airpods Headphones,1,150,01/05/19 21:27,"482 Maple St, New York City, NY 10001" -149785,Lightning Charging Cable,1,14.95,01/25/19 11:41,"902 1st St, San Francisco, CA 94016" -149786,LG Washing Machine,1,600.0,01/31/19 12:01,"454 13th St, Seattle, WA 98101" -149787,Lightning Charging Cable,1,14.95,01/09/19 00:07,"494 Lake St, San Francisco, CA 94016" -149788,Flatscreen TV,1,300,01/28/19 00:52,"310 North St, Portland, OR 97035" -149789,34in Ultrawide Monitor,1,379.99,01/13/19 15:33,"302 West St, Los Angeles, CA 90001" -149790,Google Phone,1,600,01/08/19 12:33,"903 Hill St, New York City, NY 10001" -149791,AA Batteries (4-pack),1,3.84,01/30/19 05:07,"189 Hill St, San Francisco, CA 94016" -149792,Bose SoundSport Headphones,1,99.99,01/19/19 20:35,"660 North St, Boston, MA 02215" -149793,Lightning Charging Cable,2,14.95,01/01/19 16:53,"681 Madison St, Dallas, TX 75001" -149794,Bose SoundSport Headphones,1,99.99,01/05/19 14:24,"434 Pine St, Atlanta, GA 30301" -149795,Flatscreen TV,1,300,01/20/19 21:02,"123 Washington St, Boston, MA 02215" -149796,Bose SoundSport Headphones,1,99.99,01/19/19 10:32,"767 West St, Austin, TX 73301" -149797,Apple Airpods Headphones,1,150,01/10/19 19:23,"234 8th St, San Francisco, CA 94016" -149798,Bose SoundSport Headphones,1,99.99,01/23/19 11:19,"327 5th St, New York City, NY 10001" -149799,Lightning Charging Cable,2,14.95,01/08/19 11:21,"350 Forest St, San Francisco, CA 94016" -149800,Bose SoundSport Headphones,1,99.99,01/25/19 21:01,"569 Walnut St, Seattle, WA 98101" -149801,Vareebadd Phone,1,400,01/21/19 16:37,"566 North St, Atlanta, GA 30301" -149802,USB-C Charging Cable,1,11.95,01/20/19 23:04,"209 Park St, Seattle, WA 98101" -149803,27in FHD Monitor,1,149.99,01/11/19 10:11,"789 Cedar St, Seattle, WA 98101" -149804,AA Batteries (4-pack),1,3.84,01/26/19 12:29,"415 Hill St, Austin, TX 73301" -149805,Macbook Pro Laptop,1,1700,01/13/19 14:59,"374 9th St, San Francisco, CA 94016" -149806,Apple Airpods Headphones,1,150,01/15/19 12:52,"39 Ridge St, Boston, MA 02215" -149807,AAA Batteries (4-pack),1,2.99,01/06/19 10:23,"961 Dogwood St, Austin, TX 73301" -149808,AA Batteries (4-pack),1,3.84,01/03/19 09:46,"704 North St, Boston, MA 02215" -149809,Lightning Charging Cable,1,14.95,01/09/19 10:00,"294 Walnut St, Boston, MA 02215" -149810,Bose SoundSport Headphones,1,99.99,01/22/19 22:23,"802 7th St, Portland, ME 04101" -149811,USB-C Charging Cable,1,11.95,01/29/19 10:38,"725 Highland St, New York City, NY 10001" -149812,Lightning Charging Cable,1,14.95,01/06/19 11:36,"331 8th St, San Francisco, CA 94016" -149812,Flatscreen TV,1,300,01/06/19 11:36,"331 8th St, San Francisco, CA 94016" -149813,USB-C Charging Cable,2,11.95,01/11/19 08:43,"52 Center St, San Francisco, CA 94016" -149814,iPhone,1,700,01/04/19 10:44,"360 Center St, Los Angeles, CA 90001" -149815,34in Ultrawide Monitor,1,379.99,01/14/19 21:09,"801 Wilson St, Dallas, TX 75001" -149816,AAA Batteries (4-pack),1,2.99,01/29/19 16:06,"592 8th St, San Francisco, CA 94016" -149817,34in Ultrawide Monitor,1,379.99,01/14/19 18:29,"21 Lakeview St, Boston, MA 02215" -149818,34in Ultrawide Monitor,1,379.99,01/08/19 21:18,"43 Dogwood St, Los Angeles, CA 90001" -149819,Bose SoundSport Headphones,1,99.99,01/24/19 12:00,"340 Ridge St, Boston, MA 02215" -149820,Wired Headphones,1,11.99,01/25/19 23:07,"7 Johnson St, San Francisco, CA 94016" -149821,Apple Airpods Headphones,1,150,01/28/19 18:23,"475 6th St, Portland, OR 97035" -149822,Flatscreen TV,1,300,01/07/19 19:28,"659 6th St, Dallas, TX 75001" -149823,AA Batteries (4-pack),2,3.84,01/07/19 16:33,"754 2nd St, Los Angeles, CA 90001" -149824,AA Batteries (4-pack),2,3.84,01/09/19 16:31,"395 6th St, Portland, OR 97035" -149825,USB-C Charging Cable,1,11.95,01/23/19 17:23,"620 Cherry St, Los Angeles, CA 90001" -149826,AAA Batteries (4-pack),2,2.99,01/12/19 10:59,"857 Main St, San Francisco, CA 94016" -149827,27in FHD Monitor,1,149.99,01/31/19 13:19,"904 North St, Dallas, TX 75001" -149828,AA Batteries (4-pack),1,3.84,01/13/19 01:49,"50 10th St, Boston, MA 02215" -149829,Lightning Charging Cable,1,14.95,01/26/19 12:27,"386 Meadow St, New York City, NY 10001" -149830,Bose SoundSport Headphones,1,99.99,01/26/19 11:42,"151 West St, Austin, TX 73301" -149831,Wired Headphones,1,11.99,01/08/19 17:33,"415 Maple St, Atlanta, GA 30301" -149832,LG Dryer,1,600.0,01/10/19 19:59,"315 1st St, Atlanta, GA 30301" -149833,34in Ultrawide Monitor,1,379.99,01/09/19 00:29,"266 Madison St, Los Angeles, CA 90001" -149834,USB-C Charging Cable,1,11.95,01/10/19 13:28,"367 Walnut St, Los Angeles, CA 90001" -149835,USB-C Charging Cable,1,11.95,01/06/19 16:10,"337 Johnson St, Seattle, WA 98101" -149836,Bose SoundSport Headphones,1,99.99,01/27/19 22:28,"438 Hickory St, San Francisco, CA 94016" -149837,Apple Airpods Headphones,1,150,01/04/19 08:16,"840 Elm St, San Francisco, CA 94016" -149838,27in 4K Gaming Monitor,1,389.99,01/22/19 09:31,"576 11th St, Boston, MA 02215" -149839,27in FHD Monitor,1,149.99,01/03/19 13:40,"256 Dogwood St, Atlanta, GA 30301" -149840,34in Ultrawide Monitor,1,379.99,01/20/19 15:01,"522 Sunset St, New York City, NY 10001" -149841,AA Batteries (4-pack),1,3.84,01/24/19 12:03,"31 4th St, Los Angeles, CA 90001" -149842,iPhone,1,700,01/13/19 09:25,"608 Cedar St, Atlanta, GA 30301" -149843,Macbook Pro Laptop,1,1700,01/22/19 13:50,"315 Johnson St, Los Angeles, CA 90001" -149844,USB-C Charging Cable,1,11.95,01/11/19 15:49,"185 7th St, Austin, TX 73301" -149845,USB-C Charging Cable,1,11.95,01/26/19 07:14,"394 Maple St, San Francisco, CA 94016" -149846,34in Ultrawide Monitor,1,379.99,01/07/19 14:36,"707 Lincoln St, Boston, MA 02215" -149847,ThinkPad Laptop,1,999.99,01/28/19 22:27,"346 7th St, New York City, NY 10001" -149848,Lightning Charging Cable,1,14.95,01/17/19 13:43,"198 Jefferson St, New York City, NY 10001" -149849,Apple Airpods Headphones,1,150,01/20/19 17:48,"804 Center St, Los Angeles, CA 90001" -149850,iPhone,1,700,01/13/19 19:21,"554 Church St, San Francisco, CA 94016" -149851,20in Monitor,1,109.99,01/13/19 06:12,"855 Hickory St, Dallas, TX 75001" -149852,AAA Batteries (4-pack),1,2.99,01/18/19 02:58,"240 Washington St, San Francisco, CA 94016" -149853,Lightning Charging Cable,1,14.95,01/24/19 17:54,"732 Hickory St, Seattle, WA 98101" -149854,Google Phone,1,600,01/29/19 06:36,"5 Ridge St, Boston, MA 02215" -149855,Wired Headphones,1,11.99,01/10/19 22:22,"657 Center St, Los Angeles, CA 90001" -149856,AA Batteries (4-pack),2,3.84,01/18/19 16:37,"889 Dogwood St, Boston, MA 02215" -149857,iPhone,1,700,01/07/19 10:59,"384 Forest St, Atlanta, GA 30301" -149857,Apple Airpods Headphones,1,150,01/07/19 10:59,"384 Forest St, Atlanta, GA 30301" -149858,AAA Batteries (4-pack),1,2.99,01/25/19 13:54,"43 Elm St, Portland, OR 97035" -149859,Lightning Charging Cable,1,14.95,01/09/19 22:43,"41 6th St, San Francisco, CA 94016" -149860,Apple Airpods Headphones,1,150,01/19/19 11:26,"956 Elm St, Atlanta, GA 30301" -149861,34in Ultrawide Monitor,1,379.99,01/19/19 10:56,"353 8th St, San Francisco, CA 94016" -149862,Bose SoundSport Headphones,1,99.99,01/23/19 20:32,"140 Center St, New York City, NY 10001" -149863,Lightning Charging Cable,1,14.95,01/26/19 18:39,"217 Lakeview St, Boston, MA 02215" -149864,Flatscreen TV,1,300,01/16/19 15:29,"884 Forest St, Dallas, TX 75001" -149865,Lightning Charging Cable,1,14.95,01/11/19 03:22,"871 Willow St, Austin, TX 73301" -149866,AA Batteries (4-pack),2,3.84,01/02/19 07:57,"951 Willow St, Atlanta, GA 30301" -149867,USB-C Charging Cable,1,11.95,01/05/19 16:49,"609 Ridge St, San Francisco, CA 94016" -149868,USB-C Charging Cable,1,11.95,01/01/19 20:23,"416 4th St, New York City, NY 10001" -149869,Wired Headphones,1,11.99,01/28/19 13:30,"29 West St, San Francisco, CA 94016" -149870,AA Batteries (4-pack),1,3.84,01/07/19 08:30,"245 Lake St, Los Angeles, CA 90001" -149871,27in 4K Gaming Monitor,1,389.99,01/09/19 18:26,"383 10th St, Portland, OR 97035" -149872,Wired Headphones,2,11.99,01/27/19 18:32,"42 Johnson St, Portland, ME 04101" -149873,Wired Headphones,1,11.99,01/23/19 08:34,"324 South St, San Francisco, CA 94016" -149874,Macbook Pro Laptop,1,1700,01/29/19 20:05,"976 Lincoln St, Los Angeles, CA 90001" -149875,Bose SoundSport Headphones,1,99.99,01/07/19 23:10,"963 Dogwood St, San Francisco, CA 94016" -149876,Bose SoundSport Headphones,1,99.99,01/14/19 00:09,"531 Washington St, Seattle, WA 98101" -149877,USB-C Charging Cable,1,11.95,01/03/19 12:35,"886 Willow St, Atlanta, GA 30301" -149878,AAA Batteries (4-pack),1,2.99,01/21/19 10:43,"714 Main St, Atlanta, GA 30301" -149879,AAA Batteries (4-pack),1,2.99,01/15/19 11:44,"137 5th St, San Francisco, CA 94016" -149880,AAA Batteries (4-pack),1,2.99,01/18/19 04:54,"842 Forest St, Dallas, TX 75001" -149881,AAA Batteries (4-pack),1,2.99,01/22/19 16:07,"706 Park St, San Francisco, CA 94016" -149882,Wired Headphones,1,11.99,01/17/19 11:04,"720 Hill St, Boston, MA 02215" -149883,AAA Batteries (4-pack),2,2.99,01/30/19 04:03,"207 South St, Dallas, TX 75001" -149884,Apple Airpods Headphones,1,150,01/07/19 08:38,"605 Main St, Boston, MA 02215" -149885,Apple Airpods Headphones,1,150,01/08/19 08:04,"983 Madison St, San Francisco, CA 94016" -149886,iPhone,1,700,01/11/19 16:57,"404 1st St, New York City, NY 10001" -149887,Macbook Pro Laptop,1,1700,01/27/19 18:17,"783 Madison St, San Francisco, CA 94016" -149888,Macbook Pro Laptop,1,1700,01/26/19 11:12,"349 Center St, Austin, TX 73301" -149889,Apple Airpods Headphones,1,150,01/18/19 22:13,"262 4th St, New York City, NY 10001" -149890,Bose SoundSport Headphones,1,99.99,01/25/19 10:59,"525 Lake St, Los Angeles, CA 90001" -149891,Apple Airpods Headphones,1,150,01/15/19 17:36,"974 11th St, Atlanta, GA 30301" -149892,AA Batteries (4-pack),1,3.84,01/17/19 08:53,"391 14th St, Los Angeles, CA 90001" -149893,Apple Airpods Headphones,1,150,01/08/19 12:59,"692 South St, San Francisco, CA 94016" -149894,Google Phone,1,600,01/24/19 14:45,"772 Church St, Los Angeles, CA 90001" -149894,USB-C Charging Cable,1,11.95,01/24/19 14:45,"772 Church St, Los Angeles, CA 90001" -149895,Bose SoundSport Headphones,1,99.99,01/25/19 18:26,"339 Maple St, Atlanta, GA 30301" -149896,Flatscreen TV,1,300,01/17/19 23:20,"934 Ridge St, San Francisco, CA 94016" -149897,AAA Batteries (4-pack),1,2.99,01/21/19 09:24,"709 12th St, San Francisco, CA 94016" -149898,USB-C Charging Cable,1,11.95,01/06/19 18:48,"326 Highland St, Portland, OR 97035" -149899,USB-C Charging Cable,1,11.95,01/17/19 11:00,"43 River St, New York City, NY 10001" -149900,iPhone,1,700,01/03/19 09:56,"70 South St, Los Angeles, CA 90001" -149901,Bose SoundSport Headphones,1,99.99,01/03/19 14:34,"540 2nd St, Seattle, WA 98101" -149902,iPhone,1,700,01/22/19 16:52,"423 Lake St, New York City, NY 10001" -149902,Lightning Charging Cable,1,14.95,01/22/19 16:52,"423 Lake St, New York City, NY 10001" -149903,USB-C Charging Cable,1,11.95,01/27/19 09:01,"851 Sunset St, Boston, MA 02215" -149904,AA Batteries (4-pack),1,3.84,01/11/19 08:53,"60 Park St, Los Angeles, CA 90001" -149905,Bose SoundSport Headphones,1,99.99,01/21/19 21:18,"757 Ridge St, Seattle, WA 98101" -149906,USB-C Charging Cable,1,11.95,01/19/19 04:43,"719 Elm St, New York City, NY 10001" -149906,iPhone,1,700,01/19/19 04:43,"719 Elm St, New York City, NY 10001" -149907,Google Phone,1,600,01/31/19 11:01,"537 14th St, San Francisco, CA 94016" -149908,AAA Batteries (4-pack),4,2.99,01/09/19 19:27,"594 Sunset St, New York City, NY 10001" -149909,27in 4K Gaming Monitor,1,389.99,01/26/19 11:14,"387 Johnson St, Portland, OR 97035" -149910,Wired Headphones,1,11.99,01/22/19 18:52,"957 Hickory St, Atlanta, GA 30301" -149911,Bose SoundSport Headphones,1,99.99,01/04/19 21:33,"990 Wilson St, Dallas, TX 75001" -149912,Wired Headphones,1,11.99,01/01/19 13:10,"750 Highland St, Austin, TX 73301" -149913,Bose SoundSport Headphones,1,99.99,01/06/19 11:04,"227 South St, New York City, NY 10001" -149914,iPhone,1,700,01/24/19 20:13,"910 Lakeview St, San Francisco, CA 94016" -149915,AA Batteries (4-pack),1,3.84,01/31/19 16:17,"872 5th St, San Francisco, CA 94016" -149916,Lightning Charging Cable,1,14.95,01/02/19 16:45,"886 7th St, New York City, NY 10001" -149917,AA Batteries (4-pack),1,3.84,01/06/19 21:27,"893 Lincoln St, Boston, MA 02215" -149918,Apple Airpods Headphones,1,150,01/26/19 18:15,"333 Hickory St, San Francisco, CA 94016" -149919,AA Batteries (4-pack),2,3.84,01/31/19 22:05,"681 Cedar St, Los Angeles, CA 90001" -149920,20in Monitor,1,109.99,01/11/19 15:56,"278 Lakeview St, New York City, NY 10001" -149921,AA Batteries (4-pack),1,3.84,01/14/19 10:04,"423 Lakeview St, New York City, NY 10001" -149922,Bose SoundSport Headphones,1,99.99,01/23/19 19:33,"428 11th St, Boston, MA 02215" -149923,Lightning Charging Cable,1,14.95,01/10/19 18:45,"886 9th St, New York City, NY 10001" -149924,27in 4K Gaming Monitor,1,389.99,01/07/19 16:04,"492 14th St, San Francisco, CA 94016" -149925,AAA Batteries (4-pack),2,2.99,01/26/19 17:28,"62 Church St, Seattle, WA 98101" -149926,iPhone,1,700,01/01/19 09:33,"442 Jackson St, Atlanta, GA 30301" -149927,20in Monitor,1,109.99,01/29/19 10:32,"391 Highland St, Portland, OR 97035" -149928,AAA Batteries (4-pack),2,2.99,01/20/19 07:50,"501 4th St, Los Angeles, CA 90001" -149929,27in 4K Gaming Monitor,1,389.99,01/01/19 10:02,"167 Johnson St, New York City, NY 10001" -149930,27in FHD Monitor,1,149.99,01/15/19 08:26,"27 5th St, New York City, NY 10001" -149931,iPhone,1,700,01/16/19 15:24,"800 Sunset St, Portland, OR 97035" -149931,USB-C Charging Cable,1,11.95,01/16/19 15:24,"800 Sunset St, Portland, OR 97035" -149932,Bose SoundSport Headphones,1,99.99,01/12/19 07:58,"406 10th St, Dallas, TX 75001" -149933,LG Dryer,1,600.0,01/02/19 11:31,"842 Jefferson St, Atlanta, GA 30301" -149934,Apple Airpods Headphones,1,150,01/30/19 22:01,"831 West St, Dallas, TX 75001" -149935,Lightning Charging Cable,1,14.95,01/07/19 13:13,"675 Willow St, Atlanta, GA 30301" -149936,Google Phone,1,600,01/20/19 13:13,"148 Elm St, New York City, NY 10001" -149936,USB-C Charging Cable,1,11.95,01/20/19 13:13,"148 Elm St, New York City, NY 10001" -149936,Bose SoundSport Headphones,1,99.99,01/20/19 13:13,"148 Elm St, New York City, NY 10001" -149937,AAA Batteries (4-pack),2,2.99,01/31/19 11:19,"697 Hickory St, Atlanta, GA 30301" -149938,USB-C Charging Cable,1,11.95,01/06/19 21:39,"237 Hickory St, San Francisco, CA 94016" -149939,AA Batteries (4-pack),1,3.84,01/29/19 13:46,"63 Lakeview St, New York City, NY 10001" -149940,Lightning Charging Cable,1,14.95,01/01/19 16:31,"720 River St, San Francisco, CA 94016" -149941,Wired Headphones,2,11.99,01/26/19 09:59,"25 Jefferson St, Portland, OR 97035" -149942,Macbook Pro Laptop,1,1700,01/05/19 08:13,"122 River St, Boston, MA 02215" -149943,AAA Batteries (4-pack),1,2.99,01/25/19 02:30,"918 12th St, San Francisco, CA 94016" -149944,20in Monitor,1,109.99,01/07/19 21:34,"653 Church St, New York City, NY 10001" -149945,AAA Batteries (4-pack),2,2.99,01/15/19 20:40,"110 Main St, Atlanta, GA 30301" -149946,AA Batteries (4-pack),1,3.84,01/17/19 16:24,"836 River St, New York City, NY 10001" -149947,Apple Airpods Headphones,1,150,01/31/19 17:37,"265 Cedar St, Seattle, WA 98101" -149948,Bose SoundSport Headphones,1,99.99,01/09/19 00:05,"833 Hickory St, New York City, NY 10001" -149949,USB-C Charging Cable,1,11.95,01/15/19 13:40,"599 Cedar St, San Francisco, CA 94016" -,,,,, -149950,Apple Airpods Headphones,1,150,01/25/19 12:49,"174 Jackson St, Atlanta, GA 30301" -149951,USB-C Charging Cable,1,11.95,01/25/19 11:34,"660 Adams St, Austin, TX 73301" -149952,20in Monitor,1,109.99,01/06/19 18:10,"200 Walnut St, Los Angeles, CA 90001" -149953,USB-C Charging Cable,2,11.95,01/17/19 11:41,"605 2nd St, Boston, MA 02215" -149954,Vareebadd Phone,1,400,01/22/19 16:27,"516 South St, Seattle, WA 98101" -149954,USB-C Charging Cable,1,11.95,01/22/19 16:27,"516 South St, Seattle, WA 98101" -149955,AAA Batteries (4-pack),2,2.99,01/25/19 16:24,"846 Main St, Seattle, WA 98101" -149956,Flatscreen TV,1,300,01/21/19 13:16,"716 West St, Dallas, TX 75001" -149957,AA Batteries (4-pack),1,3.84,01/16/19 07:57,"619 Main St, Austin, TX 73301" -149958,Flatscreen TV,1,300,01/13/19 23:28,"994 Ridge St, Dallas, TX 75001" -149959,Apple Airpods Headphones,1,150,01/10/19 19:08,"621 12th St, San Francisco, CA 94016" -149960,USB-C Charging Cable,1,11.95,01/15/19 18:31,"325 Main St, San Francisco, CA 94016" -149961,USB-C Charging Cable,1,11.95,01/28/19 20:28,"459 Ridge St, Boston, MA 02215" -149962,27in 4K Gaming Monitor,1,389.99,01/10/19 20:19,"792 11th St, San Francisco, CA 94016" -149962,USB-C Charging Cable,1,11.95,01/10/19 20:19,"792 11th St, San Francisco, CA 94016" -149963,27in 4K Gaming Monitor,1,389.99,01/05/19 20:49,"681 North St, Boston, MA 02215" -149964,AAA Batteries (4-pack),1,2.99,01/01/19 05:53,"75 Jackson St, Dallas, TX 75001" -149965,27in FHD Monitor,1,149.99,01/24/19 10:27,"852 Center St, San Francisco, CA 94016" -149966,Lightning Charging Cable,1,14.95,01/25/19 13:33,"870 Maple St, Austin, TX 73301" -149967,USB-C Charging Cable,1,11.95,01/07/19 17:00,"812 Meadow St, San Francisco, CA 94016" -149968,AA Batteries (4-pack),1,3.84,01/19/19 08:11,"876 Hickory St, Portland, OR 97035" -149969,USB-C Charging Cable,1,11.95,01/13/19 11:04,"98 Jefferson St, Boston, MA 02215" -149970,27in FHD Monitor,1,149.99,01/06/19 07:29,"598 9th St, San Francisco, CA 94016" -149971,iPhone,1,700,01/27/19 18:40,"205 Sunset St, Seattle, WA 98101" -149972,AA Batteries (4-pack),4,3.84,01/22/19 12:23,"492 Park St, Atlanta, GA 30301" -149973,AAA Batteries (4-pack),1,2.99,01/21/19 17:15,"615 6th St, San Francisco, CA 94016" -149974,Apple Airpods Headphones,1,150,01/21/19 22:37,"854 Cherry St, Seattle, WA 98101" -149975,Bose SoundSport Headphones,1,99.99,01/10/19 09:21,"937 8th St, Los Angeles, CA 90001" -149976,20in Monitor,1,109.99,01/27/19 12:50,"81 Elm St, Seattle, WA 98101" -149977,Bose SoundSport Headphones,1,99.99,01/25/19 18:19,"182 South St, San Francisco, CA 94016" -149978,AAA Batteries (4-pack),1,2.99,01/31/19 13:58,"70 Jackson St, Atlanta, GA 30301" -149979,Bose SoundSport Headphones,1,99.99,01/11/19 09:15,"707 Highland St, Austin, TX 73301" -149980,Apple Airpods Headphones,1,150,01/17/19 13:52,"640 Hill St, Seattle, WA 98101" -149981,LG Dryer,1,600.0,01/04/19 21:30,"661 Forest St, Boston, MA 02215" -149982,AA Batteries (4-pack),1,3.84,01/14/19 12:06,"347 Lake St, Boston, MA 02215" -149983,Macbook Pro Laptop,1,1700,01/22/19 12:31,"149 Wilson St, New York City, NY 10001" -149984,AA Batteries (4-pack),4,3.84,01/05/19 23:34,"985 Forest St, Los Angeles, CA 90001" -149985,iPhone,1,700,01/23/19 14:33,"818 Lakeview St, San Francisco, CA 94016" -149985,Lightning Charging Cable,1,14.95,01/23/19 14:33,"818 Lakeview St, San Francisco, CA 94016" -149986,Google Phone,1,600,01/06/19 15:42,"539 7th St, New York City, NY 10001" -149986,Wired Headphones,1,11.99,01/06/19 15:42,"539 7th St, New York City, NY 10001" -149987,Lightning Charging Cable,1,14.95,01/09/19 12:04,"58 South St, San Francisco, CA 94016" -149988,iPhone,1,700,01/03/19 09:49,"120 Dogwood St, San Francisco, CA 94016" -149989,Apple Airpods Headphones,1,150,01/29/19 22:21,"289 10th St, New York City, NY 10001" -149990,Bose SoundSport Headphones,1,99.99,01/14/19 16:42,"271 River St, Boston, MA 02215" -149991,Wired Headphones,1,11.99,01/10/19 10:19,"408 10th St, Boston, MA 02215" -149992,iPhone,1,700,01/06/19 20:03,"516 Willow St, Atlanta, GA 30301" -149993,Google Phone,1,600,01/24/19 10:58,"17 Jackson St, Atlanta, GA 30301" -149994,AAA Batteries (4-pack),1,2.99,01/17/19 10:01,"400 Wilson St, Boston, MA 02215" -149995,ThinkPad Laptop,1,999.99,01/06/19 00:26,"364 Spruce St, Seattle, WA 98101" -149996,34in Ultrawide Monitor,1,379.99,01/01/19 11:35,"338 North St, New York City, NY 10001" -149997,LG Washing Machine,1,600.0,01/03/19 16:25,"428 Lakeview St, Los Angeles, CA 90001" -149998,Flatscreen TV,1,300,01/26/19 23:30,"370 South St, Dallas, TX 75001" -149999,AA Batteries (4-pack),1,3.84,01/19/19 00:27,"991 Wilson St, Austin, TX 73301" -150000,27in 4K Gaming Monitor,1,389.99,01/25/19 22:03,"455 Forest St, Los Angeles, CA 90001" -150001,Apple Airpods Headphones,1,150,01/26/19 16:26,"816 9th St, San Francisco, CA 94016" -150002,Google Phone,1,600,01/24/19 09:38,"479 Park St, San Francisco, CA 94016" -150003,Lightning Charging Cable,1,14.95,01/27/19 05:03,"79 Lakeview St, Atlanta, GA 30301" -150004,27in FHD Monitor,1,149.99,01/27/19 21:06,"763 7th St, San Francisco, CA 94016" -150005,Lightning Charging Cable,1,14.95,01/27/19 20:50,"176 1st St, San Francisco, CA 94016" -150006,20in Monitor,1,109.99,01/24/19 17:15,"606 Church St, Seattle, WA 98101" -150007,Lightning Charging Cable,1,14.95,01/07/19 20:17,"132 North St, San Francisco, CA 94016" -150008,Lightning Charging Cable,1,14.95,01/30/19 09:28,"558 14th St, San Francisco, CA 94016" -150009,Wired Headphones,1,11.99,01/27/19 09:16,"109 Lake St, San Francisco, CA 94016" -150010,27in FHD Monitor,1,149.99,01/16/19 14:45,"914 Madison St, Boston, MA 02215" -150011,Lightning Charging Cable,1,14.95,01/29/19 11:39,"971 Cherry St, San Francisco, CA 94016" -150012,Lightning Charging Cable,1,14.95,01/24/19 15:56,"1 Highland St, Portland, OR 97035" -150013,27in FHD Monitor,1,149.99,01/10/19 20:45,"543 Ridge St, San Francisco, CA 94016" -150014,USB-C Charging Cable,1,11.95,01/10/19 14:25,"856 Jackson St, San Francisco, CA 94016" -150015,AAA Batteries (4-pack),1,2.99,01/15/19 13:08,"895 South St, New York City, NY 10001" -150016,AA Batteries (4-pack),1,3.84,01/12/19 10:45,"576 Center St, Los Angeles, CA 90001" -150017,Wired Headphones,1,11.99,01/23/19 20:54,"4 1st St, New York City, NY 10001" -150018,Wired Headphones,1,11.99,01/09/19 05:21,"424 7th St, New York City, NY 10001" -150019,Wired Headphones,1,11.99,01/16/19 14:20,"741 Park St, Portland, OR 97035" -150020,Flatscreen TV,1,300,01/20/19 11:21,"169 7th St, New York City, NY 10001" -150021,Bose SoundSport Headphones,1,99.99,01/22/19 20:53,"281 12th St, San Francisco, CA 94016" -150022,Wired Headphones,1,11.99,01/20/19 16:23,"474 Jefferson St, Los Angeles, CA 90001" -150023,AAA Batteries (4-pack),2,2.99,01/01/19 19:11,"579 Ridge St, Austin, TX 73301" -150024,Bose SoundSport Headphones,1,99.99,01/16/19 12:36,"258 5th St, Los Angeles, CA 90001" -150025,27in 4K Gaming Monitor,1,389.99,01/16/19 18:40,"640 Main St, Atlanta, GA 30301" -150026,ThinkPad Laptop,1,999.99,01/25/19 14:46,"247 Hickory St, San Francisco, CA 94016" -150027,27in 4K Gaming Monitor,1,389.99,01/07/19 11:20,"345 4th St, Seattle, WA 98101" -150028,USB-C Charging Cable,1,11.95,01/21/19 13:32,"702 Hickory St, Atlanta, GA 30301" -150029,27in FHD Monitor,1,149.99,01/03/19 04:34,"781 Willow St, San Francisco, CA 94016" -150029,Wired Headphones,1,11.99,01/03/19 04:34,"781 Willow St, San Francisco, CA 94016" -150030,Bose SoundSport Headphones,1,99.99,01/21/19 17:52,"153 Church St, Boston, MA 02215" -150031,Apple Airpods Headphones,1,150,01/04/19 10:54,"555 Willow St, Los Angeles, CA 90001" -150032,AAA Batteries (4-pack),1,2.99,01/05/19 19:26,"425 13th St, New York City, NY 10001" -150033,Lightning Charging Cable,1,14.95,01/27/19 18:56,"816 7th St, Los Angeles, CA 90001" -150034,Google Phone,1,600,01/17/19 21:54,"841 Hickory St, Los Angeles, CA 90001" -150034,USB-C Charging Cable,2,11.95,01/17/19 21:54,"841 Hickory St, Los Angeles, CA 90001" -150034,Wired Headphones,1,11.99,01/17/19 21:54,"841 Hickory St, Los Angeles, CA 90001" -150035,Vareebadd Phone,1,400,01/06/19 19:47,"71 North St, Seattle, WA 98101" -150036,Apple Airpods Headphones,1,150,01/12/19 18:21,"819 Lakeview St, San Francisco, CA 94016" -150037,27in FHD Monitor,1,149.99,01/29/19 17:04,"762 Meadow St, New York City, NY 10001" -150038,20in Monitor,1,109.99,01/01/19 12:50,"191 13th St, Dallas, TX 75001" -150039,Apple Airpods Headphones,1,150,01/08/19 08:13,"943 Willow St, San Francisco, CA 94016" -150040,Bose SoundSport Headphones,1,99.99,01/03/19 15:23,"205 Highland St, New York City, NY 10001" -150041,Apple Airpods Headphones,1,150,01/04/19 11:16,"246 Hill St, Portland, ME 04101" -150042,Bose SoundSport Headphones,1,99.99,01/25/19 20:34,"585 8th St, New York City, NY 10001" -150043,AA Batteries (4-pack),2,3.84,01/16/19 09:54,"874 11th St, Seattle, WA 98101" -150044,Bose SoundSport Headphones,1,99.99,01/26/19 18:29,"746 Sunset St, San Francisco, CA 94016" -150045,Wired Headphones,1,11.99,01/16/19 19:49,"644 Walnut St, Los Angeles, CA 90001" -150046,AAA Batteries (4-pack),1,2.99,01/29/19 12:46,"604 12th St, San Francisco, CA 94016" -150047,AA Batteries (4-pack),1,3.84,01/07/19 09:51,"998 Sunset St, Austin, TX 73301" -150048,27in 4K Gaming Monitor,1,389.99,01/10/19 21:56,"460 Elm St, San Francisco, CA 94016" -150049,AAA Batteries (4-pack),1,2.99,01/25/19 16:25,"280 Adams St, Atlanta, GA 30301" -150050,AA Batteries (4-pack),2,3.84,01/02/19 11:15,"175 Johnson St, Los Angeles, CA 90001" -150051,Lightning Charging Cable,1,14.95,01/07/19 16:23,"153 River St, San Francisco, CA 94016" -150051,Bose SoundSport Headphones,1,99.99,01/07/19 16:23,"153 River St, San Francisco, CA 94016" -150052,AAA Batteries (4-pack),2,2.99,01/11/19 12:29,"144 7th St, San Francisco, CA 94016" -150053,Flatscreen TV,1,300,01/02/19 16:38,"608 11th St, Atlanta, GA 30301" -150054,AAA Batteries (4-pack),2,2.99,01/27/19 18:31,"662 Church St, Los Angeles, CA 90001" -150055,27in FHD Monitor,1,149.99,01/31/19 22:03,"911 6th St, Dallas, TX 75001" -150056,Wired Headphones,2,11.99,01/18/19 23:16,"809 River St, Boston, MA 02215" -150057,iPhone,1,700,01/26/19 14:58,"380 Highland St, Dallas, TX 75001" -150057,Lightning Charging Cable,1,14.95,01/26/19 14:58,"380 Highland St, Dallas, TX 75001" -150058,20in Monitor,1,109.99,01/10/19 06:27,"519 Center St, Boston, MA 02215" -150059,Wired Headphones,1,11.99,01/11/19 19:56,"278 7th St, Atlanta, GA 30301" -150060,Macbook Pro Laptop,1,1700,01/20/19 10:37,"454 Jefferson St, Austin, TX 73301" -150061,Apple Airpods Headphones,1,150,01/17/19 15:23,"203 Chestnut St, Dallas, TX 75001" -150062,Bose SoundSport Headphones,1,99.99,01/30/19 17:14,"633 North St, Seattle, WA 98101" -150063,Macbook Pro Laptop,1,1700,01/22/19 02:29,"92 5th St, Austin, TX 73301" -150064,Apple Airpods Headphones,1,150,01/03/19 15:27,"354 Cherry St, Portland, ME 04101" -150065,AA Batteries (4-pack),2,3.84,01/04/19 09:21,"269 Highland St, Boston, MA 02215" -150066,Wired Headphones,1,11.99,01/07/19 12:46,"699 Jackson St, San Francisco, CA 94016" -150067,AAA Batteries (4-pack),1,2.99,01/08/19 12:09,"355 South St, Seattle, WA 98101" -150068,AAA Batteries (4-pack),1,2.99,01/10/19 08:55,"76 10th St, Atlanta, GA 30301" -150069,20in Monitor,1,109.99,01/18/19 19:42,"385 Cherry St, Portland, OR 97035" -150070,Apple Airpods Headphones,1,150,01/05/19 00:09,"564 River St, San Francisco, CA 94016" -150071,USB-C Charging Cable,1,11.95,01/16/19 06:07,"931 Chestnut St, Boston, MA 02215" -150072,27in 4K Gaming Monitor,1,389.99,01/17/19 17:29,"284 5th St, New York City, NY 10001" -150073,AAA Batteries (4-pack),1,2.99,01/31/19 16:49,"68 14th St, New York City, NY 10001" -150074,AAA Batteries (4-pack),1,2.99,01/16/19 10:35,"866 Lakeview St, Los Angeles, CA 90001" -150075,AA Batteries (4-pack),1,3.84,01/23/19 16:39,"576 Jackson St, Los Angeles, CA 90001" -150076,USB-C Charging Cable,1,11.95,01/29/19 09:09,"889 Hill St, Los Angeles, CA 90001" -150077,LG Dryer,1,600.0,01/06/19 21:27,"471 North St, New York City, NY 10001" -150078,ThinkPad Laptop,1,999.99,01/19/19 10:50,"754 North St, Portland, OR 97035" -150079,Wired Headphones,1,11.99,01/30/19 19:21,"248 Jackson St, New York City, NY 10001" -150080,Apple Airpods Headphones,1,150,01/08/19 09:32,"296 8th St, Atlanta, GA 30301" -150081,Apple Airpods Headphones,1,150,01/16/19 21:49,"405 Center St, New York City, NY 10001" -150082,ThinkPad Laptop,1,999.99,01/07/19 07:30,"717 4th St, Atlanta, GA 30301" -150083,Wired Headphones,1,11.99,01/26/19 15:10,"532 Johnson St, Los Angeles, CA 90001" -150084,iPhone,1,700,01/18/19 17:28,"101 River St, San Francisco, CA 94016" -150084,Apple Airpods Headphones,1,150,01/18/19 17:28,"101 River St, San Francisco, CA 94016" -150085,AA Batteries (4-pack),1,3.84,01/21/19 14:23,"94 9th St, Boston, MA 02215" -150086,Wired Headphones,1,11.99,01/27/19 23:47,"564 Center St, Dallas, TX 75001" -150087,Macbook Pro Laptop,1,1700,01/01/19 17:02,"276 Cedar St, Portland, OR 97035" -150088,34in Ultrawide Monitor,1,379.99,01/01/19 16:35,"505 Lakeview St, Austin, TX 73301" -150089,Bose SoundSport Headphones,1,99.99,01/08/19 09:47,"79 River St, New York City, NY 10001" -150090,ThinkPad Laptop,1,999.99,01/21/19 20:29,"263 Lincoln St, Atlanta, GA 30301" -150091,AA Batteries (4-pack),1,3.84,01/28/19 18:17,"126 Sunset St, Dallas, TX 75001" -150092,iPhone,1,700,01/07/19 09:05,"46 Cedar St, Los Angeles, CA 90001" -150093,Flatscreen TV,1,300,01/24/19 09:09,"289 13th St, Boston, MA 02215" -150094,ThinkPad Laptop,1,999.99,01/27/19 10:32,"181 Church St, San Francisco, CA 94016" -150095,AAA Batteries (4-pack),1,2.99,01/07/19 01:32,"57 Park St, Dallas, TX 75001" -150096,USB-C Charging Cable,1,11.95,01/13/19 20:22,"566 Dogwood St, Dallas, TX 75001" -150097,AAA Batteries (4-pack),1,2.99,01/17/19 20:15,"243 North St, New York City, NY 10001" -150098,Apple Airpods Headphones,1,150,01/29/19 07:54,"540 Hickory St, Austin, TX 73301" -150099,Lightning Charging Cable,1,14.95,01/17/19 18:57,"110 Pine St, Atlanta, GA 30301" -150100,Lightning Charging Cable,1,14.95,01/27/19 16:18,"569 Park St, Dallas, TX 75001" -150101,USB-C Charging Cable,1,11.95,01/28/19 16:06,"393 Sunset St, Seattle, WA 98101" -150102,Wired Headphones,1,11.99,01/04/19 16:44,"223 4th St, San Francisco, CA 94016" -150103,AA Batteries (4-pack),2,3.84,01/06/19 19:29,"121 South St, Dallas, TX 75001" -150104,USB-C Charging Cable,1,11.95,01/26/19 15:45,"748 Cedar St, New York City, NY 10001" -150105,AAA Batteries (4-pack),1,2.99,01/05/19 12:56,"11 7th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -150106,AA Batteries (4-pack),1,3.84,01/24/19 11:59,"818 West St, New York City, NY 10001" -150107,Wired Headphones,1,11.99,01/06/19 17:56,"692 Forest St, Dallas, TX 75001" -150108,34in Ultrawide Monitor,1,379.99,01/06/19 13:39,"638 Willow St, Boston, MA 02215" -150109,AA Batteries (4-pack),1,3.84,01/06/19 16:08,"570 Spruce St, San Francisco, CA 94016" -150110,Apple Airpods Headphones,1,150,01/29/19 17:35,"909 Lake St, San Francisco, CA 94016" -150111,Wired Headphones,1,11.99,01/28/19 21:17,"78 West St, San Francisco, CA 94016" -150112,Lightning Charging Cable,2,14.95,01/05/19 06:58,"820 Cedar St, Dallas, TX 75001" -150113,Wired Headphones,1,11.99,01/20/19 13:14,"770 6th St, New York City, NY 10001" -150114,AA Batteries (4-pack),1,3.84,01/21/19 16:28,"370 Forest St, San Francisco, CA 94016" -150115,AA Batteries (4-pack),1,3.84,01/06/19 16:15,"902 Spruce St, Seattle, WA 98101" -150116,Apple Airpods Headphones,1,150,01/06/19 00:12,"455 Washington St, Seattle, WA 98101" -150117,27in FHD Monitor,1,149.99,01/06/19 13:09,"334 Jefferson St, Los Angeles, CA 90001" -150118,AA Batteries (4-pack),1,3.84,01/07/19 00:31,"581 Chestnut St, San Francisco, CA 94016" -150119,AA Batteries (4-pack),1,3.84,01/18/19 16:39,"277 Forest St, San Francisco, CA 94016" -150120,Wired Headphones,1,11.99,01/30/19 12:06,"969 Meadow St, Los Angeles, CA 90001" -150121,AAA Batteries (4-pack),1,2.99,01/30/19 18:50,"818 Washington St, New York City, NY 10001" -150122,AA Batteries (4-pack),1,3.84,01/20/19 01:14,"748 Park St, Dallas, TX 75001" -150123,USB-C Charging Cable,1,11.95,01/23/19 15:08,"789 4th St, Austin, TX 73301" -150124,Apple Airpods Headphones,1,150,01/08/19 16:53,"156 11th St, San Francisco, CA 94016" -150125,20in Monitor,1,109.99,01/10/19 13:50,"153 Hickory St, Austin, TX 73301" -150126,Lightning Charging Cable,1,14.95,01/28/19 18:27,"46 Cherry St, New York City, NY 10001" -150127,USB-C Charging Cable,1,11.95,01/03/19 22:56,"191 Hill St, San Francisco, CA 94016" -150128,Bose SoundSport Headphones,1,99.99,01/10/19 16:40,"729 14th St, Portland, ME 04101" -150129,34in Ultrawide Monitor,1,379.99,01/11/19 08:50,"689 Chestnut St, Portland, ME 04101" -150130,ThinkPad Laptop,1,999.99,01/11/19 10:31,"123 Hill St, San Francisco, CA 94016" -150131,Bose SoundSport Headphones,1,99.99,01/06/19 16:52,"668 12th St, Seattle, WA 98101" -150132,Wired Headphones,1,11.99,01/25/19 20:16,"115 Willow St, New York City, NY 10001" -150133,USB-C Charging Cable,1,11.95,01/18/19 06:28,"241 10th St, San Francisco, CA 94016" -150134,Lightning Charging Cable,1,14.95,01/24/19 17:00,"737 8th St, Los Angeles, CA 90001" -150135,Bose SoundSport Headphones,1,99.99,01/12/19 08:31,"508 North St, Boston, MA 02215" -150136,USB-C Charging Cable,1,11.95,01/09/19 21:46,"663 5th St, Atlanta, GA 30301" -150137,USB-C Charging Cable,1,11.95,01/12/19 17:46,"984 Lincoln St, San Francisco, CA 94016" -150138,Lightning Charging Cable,1,14.95,01/25/19 13:50,"144 Cedar St, New York City, NY 10001" -150139,27in FHD Monitor,1,149.99,01/15/19 06:55,"979 Main St, San Francisco, CA 94016" -150140,Apple Airpods Headphones,1,150,01/27/19 16:17,"234 Lakeview St, New York City, NY 10001" -150141,27in 4K Gaming Monitor,1,389.99,01/24/19 17:27,"916 2nd St, New York City, NY 10001" -150142,Macbook Pro Laptop,1,1700,01/08/19 08:03,"131 Johnson St, Los Angeles, CA 90001" -150143,AA Batteries (4-pack),4,3.84,01/17/19 12:37,"201 Cherry St, Portland, OR 97035" -150144,AA Batteries (4-pack),2,3.84,01/10/19 12:23,"434 Park St, Seattle, WA 98101" -150145,USB-C Charging Cable,1,11.95,01/30/19 13:13,"622 13th St, Boston, MA 02215" -150146,iPhone,1,700,01/14/19 09:18,"159 Adams St, Seattle, WA 98101" -150147,20in Monitor,1,109.99,01/02/19 01:07,"541 Elm St, Los Angeles, CA 90001" -150148,AA Batteries (4-pack),2,3.84,01/02/19 18:02,"648 Elm St, Los Angeles, CA 90001" -150149,USB-C Charging Cable,1,11.95,01/31/19 22:24,"777 Willow St, San Francisco, CA 94016" -150150,USB-C Charging Cable,2,11.95,01/21/19 16:43,"516 14th St, San Francisco, CA 94016" -150151,Apple Airpods Headphones,1,150,01/23/19 12:37,"724 Pine St, San Francisco, CA 94016" -150152,Lightning Charging Cable,1,14.95,01/02/19 22:48,"493 Cherry St, New York City, NY 10001" -150153,Lightning Charging Cable,1,14.95,01/10/19 23:42,"57 Forest St, Los Angeles, CA 90001" -150154,USB-C Charging Cable,1,11.95,01/21/19 21:56,"87 10th St, Boston, MA 02215" -150155,USB-C Charging Cable,1,11.95,01/27/19 15:24,"557 Lincoln St, Dallas, TX 75001" -150156,Apple Airpods Headphones,1,150,01/11/19 10:10,"38 Elm St, Seattle, WA 98101" -150157,USB-C Charging Cable,1,11.95,01/24/19 01:08,"105 Jefferson St, New York City, NY 10001" -150158,Apple Airpods Headphones,1,150,01/02/19 15:28,"9 Wilson St, Los Angeles, CA 90001" -150159,Wired Headphones,1,11.99,01/31/19 12:00,"896 Main St, Boston, MA 02215" -150160,27in FHD Monitor,1,149.99,01/24/19 13:44,"237 Spruce St, Seattle, WA 98101" -150161,Lightning Charging Cable,1,14.95,01/22/19 14:30,"77 2nd St, Portland, OR 97035" -150162,ThinkPad Laptop,1,999.99,01/05/19 20:20,"31 1st St, San Francisco, CA 94016" -150163,Lightning Charging Cable,1,14.95,01/30/19 15:45,"372 South St, Los Angeles, CA 90001" -150164,Wired Headphones,1,11.99,01/27/19 00:19,"908 Meadow St, San Francisco, CA 94016" -150165,AAA Batteries (4-pack),1,2.99,01/22/19 21:14,"367 11th St, Portland, OR 97035" -150166,AA Batteries (4-pack),1,3.84,01/02/19 05:32,"638 7th St, Seattle, WA 98101" -150167,Lightning Charging Cable,2,14.95,01/06/19 19:35,"592 Lake St, Atlanta, GA 30301" -150168,AA Batteries (4-pack),1,3.84,01/23/19 15:25,"753 Johnson St, New York City, NY 10001" -150169,Bose SoundSport Headphones,1,99.99,01/29/19 16:10,"855 Maple St, New York City, NY 10001" -150170,AA Batteries (4-pack),1,3.84,01/06/19 09:48,"722 Main St, San Francisco, CA 94016" -150171,Lightning Charging Cable,1,14.95,01/17/19 13:24,"586 Madison St, San Francisco, CA 94016" -150172,USB-C Charging Cable,1,11.95,01/28/19 22:55,"394 Spruce St, Atlanta, GA 30301" -150173,Google Phone,1,600,01/18/19 09:16,"668 Park St, San Francisco, CA 94016" -150174,Apple Airpods Headphones,1,150,01/31/19 17:42,"197 Highland St, New York City, NY 10001" -150175,34in Ultrawide Monitor,1,379.99,01/01/19 16:44,"16 2nd St, Los Angeles, CA 90001" -150176,AAA Batteries (4-pack),1,2.99,01/20/19 16:40,"884 Maple St, San Francisco, CA 94016" -150177,Lightning Charging Cable,1,14.95,01/29/19 12:03,"56 Lakeview St, New York City, NY 10001" -150178,34in Ultrawide Monitor,1,379.99,01/30/19 21:17,"872 Highland St, New York City, NY 10001" -150179,AAA Batteries (4-pack),2,2.99,01/24/19 22:02,"192 Hickory St, New York City, NY 10001" -150180,AAA Batteries (4-pack),1,2.99,01/29/19 20:07,"298 Lakeview St, Seattle, WA 98101" -150181,Google Phone,1,600,01/06/19 07:09,"505 Lake St, New York City, NY 10001" -150182,27in 4K Gaming Monitor,1,389.99,01/13/19 03:32,"864 4th St, Dallas, TX 75001" -150183,USB-C Charging Cable,2,11.95,01/09/19 20:24,"102 Johnson St, Seattle, WA 98101" -150184,AA Batteries (4-pack),2,3.84,01/05/19 12:34,"580 Chestnut St, Portland, OR 97035" -150185,AAA Batteries (4-pack),1,2.99,01/17/19 11:47,"492 6th St, Austin, TX 73301" -150185,USB-C Charging Cable,1,11.95,01/17/19 11:47,"492 6th St, Austin, TX 73301" -150186,27in 4K Gaming Monitor,1,389.99,01/08/19 11:05,"355 Willow St, Seattle, WA 98101" -150187,USB-C Charging Cable,1,11.95,01/04/19 11:26,"11 West St, Seattle, WA 98101" -150188,AAA Batteries (4-pack),1,2.99,01/31/19 01:37,"524 Wilson St, New York City, NY 10001" -150189,Lightning Charging Cable,1,14.95,01/10/19 19:29,"280 Willow St, Los Angeles, CA 90001" -150190,Bose SoundSport Headphones,1,99.99,01/14/19 17:29,"19 North St, San Francisco, CA 94016" -150191,AA Batteries (4-pack),1,3.84,01/31/19 10:31,"581 Maple St, Los Angeles, CA 90001" -150192,Vareebadd Phone,1,400,01/15/19 15:24,"640 Highland St, New York City, NY 10001" -150193,27in 4K Gaming Monitor,1,389.99,01/14/19 18:05,"639 Walnut St, Seattle, WA 98101" -150194,Lightning Charging Cable,1,14.95,01/31/19 22:04,"651 Church St, Austin, TX 73301" -150195,Apple Airpods Headphones,1,150,01/04/19 02:42,"43 North St, Los Angeles, CA 90001" -150196,AA Batteries (4-pack),1,3.84,01/26/19 09:55,"456 West St, San Francisco, CA 94016" -150197,Macbook Pro Laptop,1,1700,01/31/19 12:54,"42 Spruce St, New York City, NY 10001" -150198,Bose SoundSport Headphones,1,99.99,01/05/19 21:29,"791 West St, Los Angeles, CA 90001" -150199,27in 4K Gaming Monitor,1,389.99,01/27/19 13:23,"945 6th St, San Francisco, CA 94016" -150200,Wired Headphones,1,11.99,01/25/19 06:23,"94 Cherry St, Los Angeles, CA 90001" -150201,27in 4K Gaming Monitor,1,389.99,01/13/19 18:11,"37 Highland St, Atlanta, GA 30301" -150202,Google Phone,1,600,01/08/19 15:32,"712 Madison St, San Francisco, CA 94016" -150202,USB-C Charging Cable,1,11.95,01/08/19 15:32,"712 Madison St, San Francisco, CA 94016" -150202,Wired Headphones,1,11.99,01/08/19 15:32,"712 Madison St, San Francisco, CA 94016" -150203,Apple Airpods Headphones,1,150,01/23/19 17:48,"651 Jackson St, Dallas, TX 75001" -150204,27in FHD Monitor,1,149.99,01/09/19 19:34,"132 Maple St, Seattle, WA 98101" -150205,AAA Batteries (4-pack),1,2.99,01/30/19 23:48,"168 12th St, San Francisco, CA 94016" -150206,Google Phone,1,600,01/13/19 18:55,"443 Lake St, New York City, NY 10001" -150207,AA Batteries (4-pack),1,3.84,01/05/19 14:31,"544 Maple St, New York City, NY 10001" -150208,Bose SoundSport Headphones,1,99.99,01/01/19 15:28,"749 Ridge St, Seattle, WA 98101" -150209,Lightning Charging Cable,1,14.95,01/23/19 23:33,"523 12th St, Boston, MA 02215" -150209,USB-C Charging Cable,1,11.95,01/23/19 23:33,"523 12th St, Boston, MA 02215" -150210,USB-C Charging Cable,1,11.95,01/29/19 15:15,"26 5th St, Seattle, WA 98101" -150211,27in FHD Monitor,1,149.99,01/19/19 00:11,"232 Adams St, Los Angeles, CA 90001" -150212,AA Batteries (4-pack),2,3.84,01/30/19 00:21,"598 Lakeview St, Portland, OR 97035" -150213,USB-C Charging Cable,2,11.95,01/03/19 00:40,"800 11th St, Seattle, WA 98101" -150214,Wired Headphones,1,11.99,01/12/19 23:53,"423 Walnut St, Portland, ME 04101" -150215,Apple Airpods Headphones,1,150,01/03/19 20:42,"154 Lincoln St, San Francisco, CA 94016" -150216,Wired Headphones,1,11.99,01/21/19 09:20,"691 Pine St, San Francisco, CA 94016" -150216,Wired Headphones,1,11.99,01/21/19 09:20,"691 Pine St, San Francisco, CA 94016" -150217,Wired Headphones,1,11.99,01/31/19 01:37,"39 Center St, New York City, NY 10001" -150218,Bose SoundSport Headphones,1,99.99,01/09/19 12:38,"354 Park St, Los Angeles, CA 90001" -150219,AAA Batteries (4-pack),1,2.99,01/26/19 18:50,"143 Willow St, Portland, OR 97035" -150220,AAA Batteries (4-pack),1,2.99,01/09/19 10:14,"980 Dogwood St, San Francisco, CA 94016" -150221,Bose SoundSport Headphones,1,99.99,01/28/19 10:26,"296 10th St, Dallas, TX 75001" -150222,Lightning Charging Cable,1,14.95,01/11/19 19:21,"294 4th St, San Francisco, CA 94016" -150223,Bose SoundSport Headphones,1,99.99,01/14/19 15:47,"19 Ridge St, San Francisco, CA 94016" -150224,20in Monitor,1,109.99,01/28/19 10:05,"449 South St, San Francisco, CA 94016" -150225,Bose SoundSport Headphones,1,99.99,01/27/19 19:39,"825 Johnson St, Los Angeles, CA 90001" -150226,20in Monitor,1,109.99,01/02/19 13:20,"322 Elm St, Austin, TX 73301" -150227,Wired Headphones,1,11.99,01/26/19 14:46,"194 8th St, Boston, MA 02215" -150228,34in Ultrawide Monitor,1,379.99,01/24/19 19:31,"119 Elm St, Los Angeles, CA 90001" -150229,Bose SoundSport Headphones,1,99.99,01/07/19 10:10,"355 Hill St, San Francisco, CA 94016" -150230,34in Ultrawide Monitor,1,379.99,01/01/19 18:55,"485 Madison St, Atlanta, GA 30301" -150231,iPhone,1,700,01/29/19 17:20,"779 Center St, San Francisco, CA 94016" -150231,Wired Headphones,1,11.99,01/29/19 17:20,"779 Center St, San Francisco, CA 94016" -150232,iPhone,1,700,01/31/19 09:04,"194 Dogwood St, Seattle, WA 98101" -150232,Lightning Charging Cable,1,14.95,01/31/19 09:04,"194 Dogwood St, Seattle, WA 98101" -150233,Lightning Charging Cable,1,14.95,01/29/19 09:10,"959 Cedar St, New York City, NY 10001" -150234,Apple Airpods Headphones,1,150,01/24/19 19:19,"833 Dogwood St, Atlanta, GA 30301" -150235,AAA Batteries (4-pack),1,2.99,01/07/19 19:33,"142 Ridge St, Boston, MA 02215" -150236,Lightning Charging Cable,1,14.95,01/01/19 13:21,"139 Lincoln St, San Francisco, CA 94016" -150237,Lightning Charging Cable,1,14.95,01/20/19 12:11,"840 12th St, Boston, MA 02215" -150238,27in FHD Monitor,1,149.99,01/13/19 11:03,"777 Dogwood St, Los Angeles, CA 90001" -150239,USB-C Charging Cable,1,11.95,01/18/19 20:01,"212 Park St, San Francisco, CA 94016" -150240,Bose SoundSport Headphones,1,99.99,01/13/19 08:22,"294 6th St, Los Angeles, CA 90001" -150241,iPhone,1,700,01/20/19 07:09,"374 10th St, San Francisco, CA 94016" -150242,AAA Batteries (4-pack),2,2.99,01/19/19 09:39,"685 Cherry St, San Francisco, CA 94016" -150243,USB-C Charging Cable,1,11.95,01/08/19 11:05,"741 5th St, Seattle, WA 98101" -150244,AAA Batteries (4-pack),1,2.99,01/23/19 18:20,"995 Highland St, San Francisco, CA 94016" -150245,Google Phone,1,600,01/20/19 18:29,"217 Dogwood St, Boston, MA 02215" -150246,USB-C Charging Cable,1,11.95,01/04/19 13:35,"208 Hill St, San Francisco, CA 94016" -150247,27in FHD Monitor,1,149.99,01/22/19 12:41,"495 Cedar St, Dallas, TX 75001" -150248,Bose SoundSport Headphones,1,99.99,01/11/19 20:06,"317 Main St, San Francisco, CA 94016" -150249,iPhone,1,700,01/29/19 15:29,"709 Spruce St, Los Angeles, CA 90001" -150250,20in Monitor,1,109.99,01/16/19 13:51,"338 9th St, San Francisco, CA 94016" -150251,34in Ultrawide Monitor,1,379.99,01/11/19 23:39,"365 Jefferson St, San Francisco, CA 94016" -150252,34in Ultrawide Monitor,1,379.99,01/31/19 14:50,"193 4th St, Austin, TX 73301" -150253,Bose SoundSport Headphones,1,99.99,01/03/19 21:16,"555 8th St, Atlanta, GA 30301" -150254,Lightning Charging Cable,1,14.95,01/29/19 11:08,"401 Chestnut St, San Francisco, CA 94016" -150255,Bose SoundSport Headphones,1,99.99,01/09/19 22:10,"697 Chestnut St, San Francisco, CA 94016" -150256,ThinkPad Laptop,1,999.99,01/15/19 09:41,"540 Sunset St, Portland, OR 97035" -150257,27in 4K Gaming Monitor,1,389.99,01/14/19 18:59,"770 Forest St, San Francisco, CA 94016" -150258,20in Monitor,1,109.99,01/24/19 13:35,"551 Willow St, Austin, TX 73301" -150259,Wired Headphones,1,11.99,01/24/19 19:38,"65 Madison St, San Francisco, CA 94016" -150260,iPhone,1,700,01/24/19 20:49,"305 14th St, Boston, MA 02215" -150261,Google Phone,1,600,01/14/19 19:42,"805 Jefferson St, San Francisco, CA 94016" -150262,Wired Headphones,1,11.99,01/31/19 08:48,"21 Jackson St, New York City, NY 10001" -150263,Flatscreen TV,1,300,01/18/19 17:16,"254 1st St, New York City, NY 10001" -150264,27in 4K Gaming Monitor,1,389.99,01/26/19 17:43,"223 Walnut St, Dallas, TX 75001" -150265,AAA Batteries (4-pack),1,2.99,01/26/19 07:01,"413 8th St, Los Angeles, CA 90001" -150266,AA Batteries (4-pack),1,3.84,01/20/19 20:30,"314 14th St, Atlanta, GA 30301" -150267,AAA Batteries (4-pack),1,2.99,01/20/19 09:27,"412 8th St, Boston, MA 02215" -150268,Wired Headphones,1,11.99,01/03/19 13:49,"5 Church St, Boston, MA 02215" -150269,USB-C Charging Cable,1,11.95,01/31/19 18:18,"935 Cedar St, San Francisco, CA 94016" -150270,AA Batteries (4-pack),1,3.84,01/21/19 21:39,"74 Chestnut St, New York City, NY 10001" -150271,Apple Airpods Headphones,1,150,01/29/19 17:55,"970 Church St, San Francisco, CA 94016" -150272,Lightning Charging Cable,1,14.95,01/13/19 15:56,"219 North St, New York City, NY 10001" -150273,AA Batteries (4-pack),2,3.84,01/05/19 18:15,"393 Washington St, Seattle, WA 98101" -150274,27in 4K Gaming Monitor,1,389.99,01/26/19 18:49,"784 Park St, San Francisco, CA 94016" -150275,34in Ultrawide Monitor,1,379.99,01/09/19 21:01,"569 Cherry St, Dallas, TX 75001" -150276,34in Ultrawide Monitor,1,379.99,01/07/19 12:33,"570 Pine St, Dallas, TX 75001" -150277,Lightning Charging Cable,1,14.95,01/20/19 17:20,"954 Jefferson St, Atlanta, GA 30301" -150278,Google Phone,1,600,01/06/19 12:02,"812 8th St, San Francisco, CA 94016" -150279,AA Batteries (4-pack),3,3.84,01/05/19 15:57,"221 Willow St, San Francisco, CA 94016" -150280,ThinkPad Laptop,1,999.99,01/20/19 08:09,"767 14th St, Seattle, WA 98101" -150281,AA Batteries (4-pack),1,3.84,01/09/19 04:17,"519 South St, Portland, OR 97035" -150282,Lightning Charging Cable,1,14.95,01/23/19 17:11,"608 Cherry St, Seattle, WA 98101" -150283,Lightning Charging Cable,1,14.95,01/21/19 09:03,"821 10th St, Austin, TX 73301" -150284,AAA Batteries (4-pack),1,2.99,01/03/19 08:21,"462 Highland St, San Francisco, CA 94016" -150285,Apple Airpods Headphones,1,150,01/30/19 14:35,"49 13th St, Boston, MA 02215" -150286,Macbook Pro Laptop,1,1700,01/22/19 19:24,"553 Lake St, San Francisco, CA 94016" -150287,iPhone,1,700,01/07/19 16:18,"705 Highland St, Portland, OR 97035" -150287,Lightning Charging Cable,1,14.95,01/07/19 16:18,"705 Highland St, Portland, OR 97035" -150288,Vareebadd Phone,1,400,01/11/19 13:09,"812 12th St, San Francisco, CA 94016" -150289,AA Batteries (4-pack),1,3.84,01/07/19 06:52,"370 West St, San Francisco, CA 94016" -150290,Wired Headphones,1,11.99,01/26/19 21:29,"316 Ridge St, San Francisco, CA 94016" -150291,Bose SoundSport Headphones,1,99.99,01/10/19 21:27,"93 Center St, San Francisco, CA 94016" -150292,Macbook Pro Laptop,1,1700,01/31/19 21:22,"418 12th St, New York City, NY 10001" -150293,Wired Headphones,1,11.99,01/18/19 19:43,"448 Dogwood St, Boston, MA 02215" -150294,27in FHD Monitor,1,149.99,01/31/19 04:18,"726 Cherry St, Atlanta, GA 30301" -150295,27in FHD Monitor,1,149.99,01/14/19 17:32,"74 West St, Boston, MA 02215" -150296,Flatscreen TV,1,300,01/04/19 12:22,"958 9th St, New York City, NY 10001" -150297,USB-C Charging Cable,1,11.95,01/31/19 13:09,"154 Lake St, Los Angeles, CA 90001" -150298,USB-C Charging Cable,1,11.95,01/30/19 17:55,"535 Ridge St, New York City, NY 10001" -150299,AA Batteries (4-pack),3,3.84,01/25/19 14:44,"957 10th St, Seattle, WA 98101" -150300,AA Batteries (4-pack),1,3.84,01/21/19 09:25,"382 Church St, San Francisco, CA 94016" -150301,27in FHD Monitor,1,149.99,01/06/19 21:52,"331 Lake St, New York City, NY 10001" -150302,AAA Batteries (4-pack),1,2.99,01/26/19 22:42,"468 Pine St, Seattle, WA 98101" -150303,iPhone,1,700,01/15/19 18:33,"801 Hickory St, San Francisco, CA 94016" -150303,Lightning Charging Cable,1,14.95,01/15/19 18:33,"801 Hickory St, San Francisco, CA 94016" -150304,27in FHD Monitor,1,149.99,01/17/19 04:02,"609 Adams St, Austin, TX 73301" -150305,Bose SoundSport Headphones,1,99.99,01/10/19 23:34,"24 Elm St, New York City, NY 10001" -150306,Apple Airpods Headphones,1,150,01/26/19 16:35,"715 9th St, Austin, TX 73301" -150307,USB-C Charging Cable,1,11.95,01/24/19 18:40,"803 West St, New York City, NY 10001" -150308,AA Batteries (4-pack),2,3.84,01/19/19 16:05,"837 5th St, New York City, NY 10001" -150309,Bose SoundSport Headphones,1,99.99,01/31/19 11:55,"633 Lake St, San Francisco, CA 94016" -150310,Lightning Charging Cable,1,14.95,01/29/19 19:16,"170 Lake St, Seattle, WA 98101" -150311,Flatscreen TV,1,300,01/01/19 14:25,"795 Hickory St, San Francisco, CA 94016" -150312,34in Ultrawide Monitor,1,379.99,01/23/19 10:01,"814 Forest St, San Francisco, CA 94016" -150313,Flatscreen TV,1,300,01/25/19 20:15,"888 South St, Boston, MA 02215" -150314,Macbook Pro Laptop,1,1700,01/27/19 09:52,"907 Meadow St, Austin, TX 73301" -150315,Bose SoundSport Headphones,1,99.99,01/16/19 12:22,"792 4th St, Boston, MA 02215" -150316,AA Batteries (4-pack),2,3.84,01/16/19 16:57,"67 Dogwood St, Boston, MA 02215" -150317,27in 4K Gaming Monitor,1,389.99,01/31/19 22:27,"722 Elm St, New York City, NY 10001" -150318,AAA Batteries (4-pack),1,2.99,01/10/19 20:03,"629 Willow St, San Francisco, CA 94016" -150319,Google Phone,1,600,01/02/19 09:16,"402 South St, Austin, TX 73301" -150320,Wired Headphones,1,11.99,01/23/19 13:25,"582 Hill St, San Francisco, CA 94016" -150321,iPhone,1,700,01/13/19 21:24,"418 West St, Atlanta, GA 30301" -150322,Lightning Charging Cable,1,14.95,01/23/19 16:58,"552 Maple St, Portland, OR 97035" -150323,Google Phone,1,600,01/15/19 23:31,"381 Wilson St, San Francisco, CA 94016" -150323,USB-C Charging Cable,1,11.95,01/15/19 23:31,"381 Wilson St, San Francisco, CA 94016" -150323,Apple Airpods Headphones,1,150,01/15/19 23:31,"381 Wilson St, San Francisco, CA 94016" -150324,Apple Airpods Headphones,1,150,01/02/19 21:19,"168 10th St, San Francisco, CA 94016" -150325,Macbook Pro Laptop,1,1700,01/29/19 12:50,"849 Church St, San Francisco, CA 94016" -150326,Apple Airpods Headphones,1,150,01/03/19 13:49,"138 Johnson St, Atlanta, GA 30301" -150327,AA Batteries (4-pack),1,3.84,01/31/19 08:42,"546 Center St, New York City, NY 10001" -150328,34in Ultrawide Monitor,1,379.99,01/10/19 21:24,"47 Pine St, New York City, NY 10001" -150329,USB-C Charging Cable,1,11.95,01/30/19 19:29,"605 Maple St, Los Angeles, CA 90001" -150330,AAA Batteries (4-pack),1,2.99,01/15/19 10:05,"520 Forest St, Los Angeles, CA 90001" -150331,Bose SoundSport Headphones,1,99.99,01/15/19 20:57,"337 Highland St, Boston, MA 02215" -150332,Lightning Charging Cable,2,14.95,01/31/19 13:21,"876 1st St, Atlanta, GA 30301" -150333,Lightning Charging Cable,1,14.95,01/20/19 19:27,"72 Willow St, Austin, TX 73301" -150334,Lightning Charging Cable,1,14.95,01/06/19 19:52,"615 4th St, Boston, MA 02215" -150335,iPhone,1,700,01/01/19 14:32,"956 Madison St, Los Angeles, CA 90001" -150335,Apple Airpods Headphones,1,150,01/01/19 14:32,"956 Madison St, Los Angeles, CA 90001" -150336,USB-C Charging Cable,1,11.95,01/19/19 14:08,"309 Sunset St, San Francisco, CA 94016" -150337,Wired Headphones,1,11.99,01/20/19 18:39,"503 South St, Seattle, WA 98101" -150338,Flatscreen TV,1,300,01/04/19 05:19,"919 Lake St, Los Angeles, CA 90001" -150339,AA Batteries (4-pack),2,3.84,01/13/19 23:38,"508 Jackson St, New York City, NY 10001" -150340,Lightning Charging Cable,1,14.95,01/19/19 17:48,"165 Forest St, Dallas, TX 75001" -150341,Apple Airpods Headphones,1,150,01/26/19 11:00,"87 Sunset St, Atlanta, GA 30301" -150342,Lightning Charging Cable,1,14.95,01/14/19 19:23,"244 Lincoln St, Dallas, TX 75001" -150343,ThinkPad Laptop,1,999.99,01/29/19 14:24,"309 8th St, San Francisco, CA 94016" -150344,Apple Airpods Headphones,1,150,01/27/19 21:55,"896 6th St, San Francisco, CA 94016" -150345,Bose SoundSport Headphones,1,99.99,01/21/19 23:40,"130 Lake St, San Francisco, CA 94016" -150346,Lightning Charging Cable,2,14.95,01/16/19 19:41,"264 Ridge St, Portland, OR 97035" -150347,27in FHD Monitor,1,149.99,01/31/19 10:06,"573 Pine St, San Francisco, CA 94016" -150348,AAA Batteries (4-pack),1,2.99,01/03/19 13:33,"315 Chestnut St, San Francisco, CA 94016" -150349,iPhone,1,700,01/21/19 22:21,"532 Lakeview St, San Francisco, CA 94016" -150350,AAA Batteries (4-pack),1,2.99,01/13/19 17:45,"995 Park St, New York City, NY 10001" -150351,AAA Batteries (4-pack),1,2.99,01/26/19 22:22,"267 4th St, Los Angeles, CA 90001" -150352,AAA Batteries (4-pack),2,2.99,01/29/19 15:35,"253 Meadow St, San Francisco, CA 94016" -150353,Flatscreen TV,1,300,01/22/19 11:31,"357 13th St, Atlanta, GA 30301" -150354,Apple Airpods Headphones,1,150,01/30/19 12:55,"670 North St, Portland, ME 04101" -150355,USB-C Charging Cable,1,11.95,01/28/19 21:57,"606 2nd St, Dallas, TX 75001" -150356,Lightning Charging Cable,1,14.95,01/03/19 09:03,"961 2nd St, Los Angeles, CA 90001" -150357,Bose SoundSport Headphones,1,99.99,01/18/19 10:12,"930 Park St, New York City, NY 10001" -150358,LG Washing Machine,1,600.0,01/22/19 13:18,"569 10th St, New York City, NY 10001" -150359,Macbook Pro Laptop,1,1700,01/13/19 22:28,"769 7th St, San Francisco, CA 94016" -150360,AAA Batteries (4-pack),1,2.99,01/13/19 23:59,"709 Lincoln St, San Francisco, CA 94016" -150361,iPhone,1,700,01/30/19 06:41,"915 Pine St, Atlanta, GA 30301" -150362,Apple Airpods Headphones,1,150,01/31/19 07:18,"346 Pine St, Dallas, TX 75001" -150363,AAA Batteries (4-pack),1,2.99,01/05/19 17:34,"307 Lakeview St, Los Angeles, CA 90001" -150364,Apple Airpods Headphones,1,150,01/06/19 22:32,"253 Walnut St, San Francisco, CA 94016" -150365,Apple Airpods Headphones,1,150,01/16/19 12:35,"71 Lake St, Portland, OR 97035" -150366,AA Batteries (4-pack),1,3.84,01/19/19 12:26,"480 West St, Portland, OR 97035" -150367,Lightning Charging Cable,1,14.95,01/01/19 08:25,"576 West St, Los Angeles, CA 90001" -150368,Google Phone,1,600,01/24/19 22:32,"793 Spruce St, San Francisco, CA 94016" -150369,Wired Headphones,1,11.99,01/25/19 01:14,"634 Wilson St, San Francisco, CA 94016" -150370,iPhone,1,700,01/21/19 21:34,"534 Sunset St, San Francisco, CA 94016" -150371,34in Ultrawide Monitor,1,379.99,01/05/19 19:12,"32 Elm St, Portland, ME 04101" -150372,AAA Batteries (4-pack),3,2.99,01/14/19 10:24,"262 Sunset St, Boston, MA 02215" -150373,AAA Batteries (4-pack),1,2.99,01/29/19 20:44,"271 Center St, San Francisco, CA 94016" -150374,Lightning Charging Cable,1,14.95,01/31/19 13:48,"508 1st St, Los Angeles, CA 90001" -150375,AAA Batteries (4-pack),1,2.99,01/11/19 11:03,"10 South St, Los Angeles, CA 90001" -150376,AA Batteries (4-pack),1,3.84,01/29/19 22:23,"66 West St, Los Angeles, CA 90001" -150377,AA Batteries (4-pack),1,3.84,01/19/19 15:15,"674 Ridge St, Los Angeles, CA 90001" -150378,Google Phone,1,600,01/17/19 10:20,"978 Ridge St, San Francisco, CA 94016" -150379,Wired Headphones,1,11.99,01/27/19 11:25,"696 Washington St, Atlanta, GA 30301" -150380,USB-C Charging Cable,2,11.95,01/19/19 11:00,"913 Jackson St, San Francisco, CA 94016" -150381,Wired Headphones,1,11.99,01/22/19 10:04,"976 Main St, Portland, OR 97035" -150382,Lightning Charging Cable,1,14.95,01/08/19 12:58,"533 Washington St, Atlanta, GA 30301" -150383,Bose SoundSport Headphones,1,99.99,01/30/19 10:54,"95 7th St, Boston, MA 02215" -150384,AAA Batteries (4-pack),1,2.99,01/23/19 20:12,"924 5th St, Dallas, TX 75001" -150385,Google Phone,1,600,01/07/19 21:10,"521 Adams St, San Francisco, CA 94016" -150386,Apple Airpods Headphones,1,150,01/19/19 16:56,"60 Highland St, Los Angeles, CA 90001" -150387,Lightning Charging Cable,1,14.95,01/05/19 19:41,"579 Meadow St, San Francisco, CA 94016" -150388,Bose SoundSport Headphones,1,99.99,01/31/19 12:08,"634 13th St, San Francisco, CA 94016" -150389,USB-C Charging Cable,1,11.95,01/28/19 17:54,"938 11th St, Seattle, WA 98101" -150390,Vareebadd Phone,1,400,01/15/19 17:45,"261 Ridge St, Dallas, TX 75001" -150391,USB-C Charging Cable,1,11.95,01/23/19 19:17,"548 10th St, Los Angeles, CA 90001" -150392,USB-C Charging Cable,1,11.95,01/05/19 09:55,"560 7th St, Dallas, TX 75001" -150393,Lightning Charging Cable,1,14.95,01/01/19 09:37,"215 12th St, New York City, NY 10001" -150394,AAA Batteries (4-pack),1,2.99,01/01/19 09:08,"714 6th St, Boston, MA 02215" -150395,AAA Batteries (4-pack),1,2.99,01/29/19 21:12,"574 7th St, Portland, OR 97035" -150396,Apple Airpods Headphones,1,150,01/17/19 13:00,"693 8th St, San Francisco, CA 94016" -150397,AAA Batteries (4-pack),1,2.99,01/16/19 12:48,"346 Church St, New York City, NY 10001" -150398,Wired Headphones,1,11.99,01/09/19 08:37,"276 Maple St, San Francisco, CA 94016" -150399,Bose SoundSport Headphones,1,99.99,01/25/19 23:16,"112 11th St, Portland, OR 97035" -150400,USB-C Charging Cable,1,11.95,01/27/19 11:00,"514 Maple St, Atlanta, GA 30301" -150401,AAA Batteries (4-pack),1,2.99,01/30/19 19:44,"874 Dogwood St, Boston, MA 02215" -150402,AAA Batteries (4-pack),1,2.99,01/26/19 10:33,"217 7th St, New York City, NY 10001" -150403,Apple Airpods Headphones,1,150,01/30/19 09:48,"201 Wilson St, San Francisco, CA 94016" -150404,Vareebadd Phone,1,400,01/15/19 22:46,"596 Lincoln St, New York City, NY 10001" -150405,Bose SoundSport Headphones,1,99.99,01/11/19 22:40,"848 Hickory St, Portland, OR 97035" -150406,ThinkPad Laptop,1,999.99,01/20/19 06:55,"183 Johnson St, San Francisco, CA 94016" -150407,Lightning Charging Cable,1,14.95,01/20/19 07:25,"805 South St, San Francisco, CA 94016" -150408,AAA Batteries (4-pack),1,2.99,01/23/19 12:28,"443 Walnut St, San Francisco, CA 94016" -150409,Vareebadd Phone,1,400,01/10/19 02:38,"410 Forest St, Boston, MA 02215" -150410,Lightning Charging Cable,1,14.95,01/12/19 09:41,"314 Adams St, Los Angeles, CA 90001" -150411,Bose SoundSport Headphones,1,99.99,01/20/19 17:26,"854 Hill St, Austin, TX 73301" -150412,27in FHD Monitor,1,149.99,01/21/19 10:17,"476 5th St, San Francisco, CA 94016" -,,,,, -150413,Apple Airpods Headphones,1,150,01/17/19 13:33,"290 Highland St, Portland, OR 97035" -150414,Wired Headphones,1,11.99,01/05/19 14:03,"186 River St, San Francisco, CA 94016" -150415,34in Ultrawide Monitor,1,379.99,01/28/19 10:38,"33 Willow St, Austin, TX 73301" -150416,USB-C Charging Cable,1,11.95,01/05/19 20:36,"887 Hickory St, Atlanta, GA 30301" -150417,Wired Headphones,3,11.99,01/23/19 22:08,"351 13th St, Atlanta, GA 30301" -150418,Apple Airpods Headphones,1,150,01/31/19 19:13,"358 Lakeview St, New York City, NY 10001" -150419,Bose SoundSport Headphones,1,99.99,01/13/19 13:47,"418 Walnut St, Dallas, TX 75001" -150420,AAA Batteries (4-pack),1,2.99,01/22/19 09:56,"304 Elm St, San Francisco, CA 94016" -150421,Flatscreen TV,1,300,01/31/19 20:06,"24 Chestnut St, San Francisco, CA 94016" -150422,iPhone,1,700,01/21/19 16:31,"255 14th St, Seattle, WA 98101" -150423,AA Batteries (4-pack),1,3.84,01/29/19 00:52,"108 2nd St, San Francisco, CA 94016" -150424,Wired Headphones,1,11.99,01/28/19 09:48,"354 Center St, Seattle, WA 98101" -150425,ThinkPad Laptop,1,999.99,01/31/19 19:42,"814 Jefferson St, Austin, TX 73301" -150426,LG Washing Machine,1,600.0,01/29/19 19:31,"533 Hill St, San Francisco, CA 94016" -150427,AAA Batteries (4-pack),2,2.99,01/28/19 12:16,"403 14th St, Atlanta, GA 30301" -150428,27in 4K Gaming Monitor,1,389.99,01/22/19 15:30,"373 12th St, New York City, NY 10001" -150429,Macbook Pro Laptop,1,1700,01/15/19 19:54,"911 Wilson St, New York City, NY 10001" -150430,34in Ultrawide Monitor,1,379.99,01/21/19 12:17,"767 Park St, San Francisco, CA 94016" -150431,USB-C Charging Cable,1,11.95,01/24/19 02:24,"299 Adams St, Atlanta, GA 30301" -150432,AA Batteries (4-pack),1,3.84,01/18/19 18:19,"120 Center St, Austin, TX 73301" -150433,Flatscreen TV,1,300,01/18/19 22:27,"736 Chestnut St, San Francisco, CA 94016" -150433,Google Phone,1,600,01/18/19 22:27,"736 Chestnut St, San Francisco, CA 94016" -150434,USB-C Charging Cable,1,11.95,01/30/19 15:41,"550 Main St, Los Angeles, CA 90001" -150435,AAA Batteries (4-pack),1,2.99,01/22/19 15:23,"629 12th St, Atlanta, GA 30301" -150436,AAA Batteries (4-pack),1,2.99,01/03/19 22:18,"216 Dogwood St, Los Angeles, CA 90001" -150437,AAA Batteries (4-pack),1,2.99,01/24/19 17:59,"44 Adams St, Atlanta, GA 30301" -150438,USB-C Charging Cable,1,11.95,01/19/19 18:40,"886 6th St, Los Angeles, CA 90001" -150439,Wired Headphones,3,11.99,01/27/19 20:08,"193 9th St, San Francisco, CA 94016" -150440,AAA Batteries (4-pack),1,2.99,01/10/19 19:19,"82 Johnson St, Boston, MA 02215" -150441,Bose SoundSport Headphones,1,99.99,01/10/19 16:33,"580 Ridge St, Los Angeles, CA 90001" -150442,Wired Headphones,1,11.99,01/11/19 11:47,"848 8th St, New York City, NY 10001" -150443,Bose SoundSport Headphones,1,99.99,01/04/19 20:32,"977 Washington St, Los Angeles, CA 90001" -,,,,, -150444,AAA Batteries (4-pack),1,2.99,01/17/19 20:39,"171 Johnson St, New York City, NY 10001" -150445,USB-C Charging Cable,1,11.95,01/11/19 13:56,"147 Lincoln St, Boston, MA 02215" -150446,USB-C Charging Cable,1,11.95,01/16/19 22:36,"459 11th St, Los Angeles, CA 90001" -150447,Wired Headphones,1,11.99,01/09/19 18:13,"864 Dogwood St, San Francisco, CA 94016" -150448,Wired Headphones,1,11.99,01/21/19 11:11,"96 Forest St, San Francisco, CA 94016" -150449,34in Ultrawide Monitor,1,379.99,01/26/19 20:05,"824 Pine St, New York City, NY 10001" -150450,Lightning Charging Cable,1,14.95,01/17/19 20:27,"286 Pine St, New York City, NY 10001" -150451,AAA Batteries (4-pack),2,2.99,01/16/19 21:40,"424 1st St, San Francisco, CA 94016" -150452,USB-C Charging Cable,1,11.95,01/27/19 09:09,"18 Cedar St, New York City, NY 10001" -150453,AAA Batteries (4-pack),1,2.99,01/10/19 22:07,"215 Chestnut St, San Francisco, CA 94016" -150454,USB-C Charging Cable,1,11.95,01/11/19 15:42,"679 14th St, San Francisco, CA 94016" -150455,27in 4K Gaming Monitor,1,389.99,01/18/19 13:29,"625 Pine St, New York City, NY 10001" -150456,Lightning Charging Cable,1,14.95,01/30/19 23:54,"717 Walnut St, New York City, NY 10001" -150457,Wired Headphones,1,11.99,01/13/19 10:23,"815 14th St, San Francisco, CA 94016" -150458,27in 4K Gaming Monitor,1,389.99,01/25/19 10:01,"917 10th St, San Francisco, CA 94016" -150459,Google Phone,1,600,01/22/19 19:58,"789 Jefferson St, Dallas, TX 75001" -150460,34in Ultrawide Monitor,1,379.99,01/06/19 00:46,"803 14th St, New York City, NY 10001" -150461,Google Phone,1,600,01/04/19 19:45,"796 5th St, Dallas, TX 75001" -150462,Bose SoundSport Headphones,1,99.99,01/02/19 10:32,"157 Church St, San Francisco, CA 94016" -150463,20in Monitor,1,109.99,01/14/19 20:02,"715 Meadow St, Los Angeles, CA 90001" -150464,AA Batteries (4-pack),1,3.84,01/05/19 11:24,"814 West St, Seattle, WA 98101" -150465,AA Batteries (4-pack),1,3.84,01/10/19 22:31,"317 North St, Portland, OR 97035" -150466,27in FHD Monitor,1,149.99,01/15/19 14:26,"612 Wilson St, Los Angeles, CA 90001" -150467,Wired Headphones,1,11.99,01/05/19 15:48,"398 Wilson St, Portland, OR 97035" -150468,Apple Airpods Headphones,1,150,01/28/19 02:44,"258 Spruce St, Dallas, TX 75001" -150469,Apple Airpods Headphones,1,150,01/12/19 12:44,"749 Hill St, New York City, NY 10001" -150470,AAA Batteries (4-pack),1,2.99,01/12/19 15:27,"109 Willow St, Atlanta, GA 30301" -150471,Wired Headphones,1,11.99,01/12/19 08:30,"514 Jackson St, New York City, NY 10001" -150472,Apple Airpods Headphones,1,150,01/07/19 22:30,"738 Jackson St, New York City, NY 10001" -150473,Wired Headphones,1,11.99,01/10/19 09:09,"148 Hickory St, Boston, MA 02215" -150474,Bose SoundSport Headphones,1,99.99,01/19/19 18:23,"817 6th St, Seattle, WA 98101" -150475,Wired Headphones,1,11.99,01/18/19 11:08,"971 Madison St, Atlanta, GA 30301" -150476,AAA Batteries (4-pack),2,2.99,01/21/19 08:53,"551 Center St, Dallas, TX 75001" -150477,27in 4K Gaming Monitor,1,389.99,01/26/19 05:41,"734 Spruce St, Atlanta, GA 30301" -150478,ThinkPad Laptop,1,999.99,01/30/19 20:05,"539 Elm St, Los Angeles, CA 90001" -150479,AA Batteries (4-pack),4,3.84,01/15/19 02:06,"165 Lake St, San Francisco, CA 94016" -150480,Macbook Pro Laptop,1,1700,01/27/19 16:00,"833 Cherry St, Los Angeles, CA 90001" -150481,Flatscreen TV,1,300,01/15/19 20:22,"946 13th St, Seattle, WA 98101" -150482,USB-C Charging Cable,1,11.95,01/24/19 11:15,"856 Hickory St, Los Angeles, CA 90001" -150483,Vareebadd Phone,1,400,01/25/19 10:48,"763 Wilson St, Portland, OR 97035" -150484,Lightning Charging Cable,1,14.95,01/26/19 22:04,"720 2nd St, Los Angeles, CA 90001" -150485,Wired Headphones,1,11.99,01/29/19 16:32,"579 5th St, Dallas, TX 75001" -150486,iPhone,1,700,01/26/19 15:52,"57 Wilson St, Dallas, TX 75001" -150487,Apple Airpods Headphones,1,150,01/18/19 02:57,"305 Jackson St, Portland, ME 04101" -150488,Flatscreen TV,1,300,01/22/19 20:41,"587 6th St, Portland, OR 97035" -150489,AA Batteries (4-pack),2,3.84,01/08/19 09:49,"432 Center St, Portland, OR 97035" -150490,Lightning Charging Cable,1,14.95,01/03/19 17:20,"817 Forest St, Portland, OR 97035" -150491,Lightning Charging Cable,1,14.95,01/26/19 02:26,"343 Forest St, Atlanta, GA 30301" -150492,Wired Headphones,1,11.99,01/03/19 21:54,"998 Jackson St, Dallas, TX 75001" -150493,Lightning Charging Cable,1,14.95,01/08/19 15:10,"431 Lakeview St, Seattle, WA 98101" -150494,AAA Batteries (4-pack),1,2.99,01/05/19 21:27,"435 10th St, Seattle, WA 98101" -150495,Bose SoundSport Headphones,1,99.99,01/15/19 09:33,"581 Adams St, Dallas, TX 75001" -150496,Bose SoundSport Headphones,1,99.99,01/28/19 20:32,"603 Main St, San Francisco, CA 94016" -150497,20in Monitor,1,109.99,01/26/19 19:09,"95 8th St, Dallas, TX 75001" -150498,27in FHD Monitor,1,149.99,01/10/19 22:58,"403 7th St, San Francisco, CA 94016" -150499,ThinkPad Laptop,1,999.99,01/21/19 14:31,"214 Main St, Portland, OR 97035" -150500,AAA Batteries (4-pack),2,2.99,01/15/19 14:21,"810 2nd St, Los Angeles, CA 90001" -150501,Google Phone,1,600,01/13/19 16:43,"428 Cedar St, Boston, MA 02215" -222910,Apple Airpods Headphones,1,150,07/26/19 16:51,"389 South St, Atlanta, GA 30301" -222911,Flatscreen TV,1,300,07/05/19 08:55,"590 4th St, Seattle, WA 98101" -222912,AA Batteries (4-pack),1,3.84,07/29/19 12:41,"861 Hill St, Atlanta, GA 30301" -222913,AA Batteries (4-pack),1,3.84,07/28/19 10:15,"190 Ridge St, Atlanta, GA 30301" -222914,AAA Batteries (4-pack),5,2.99,07/31/19 02:13,"824 Forest St, Seattle, WA 98101" -222915,Bose SoundSport Headphones,1,99.99,07/03/19 18:30,"899 Elm St, San Francisco, CA 94016" -222916,Google Phone,1,600,07/21/19 22:39,"745 Chestnut St, New York City, NY 10001" -222917,LG Dryer,1,600.0,07/17/19 13:44,"490 Adams St, New York City, NY 10001" -222918,USB-C Charging Cable,1,11.95,07/14/19 21:16,"207 1st St, Los Angeles, CA 90001" -222919,Lightning Charging Cable,1,14.95,07/14/19 13:24,"29 Jefferson St, Dallas, TX 75001" -222920,AA Batteries (4-pack),1,3.84,07/30/19 04:42,"590 6th St, San Francisco, CA 94016" -222921,Lightning Charging Cable,1,14.95,07/02/19 11:04,"960 Willow St, San Francisco, CA 94016" -222922,34in Ultrawide Monitor,1,379.99,07/20/19 21:12,"616 Chestnut St, Dallas, TX 75001" -222923,AAA Batteries (4-pack),1,2.99,07/05/19 12:16,"105 Johnson St, Los Angeles, CA 90001" -222924,Bose SoundSport Headphones,1,99.99,07/13/19 20:46,"444 Spruce St, San Francisco, CA 94016" -222925,Apple Airpods Headphones,1,150,07/09/19 02:59,"764 Adams St, San Francisco, CA 94016" -222926,Lightning Charging Cable,2,14.95,07/15/19 17:44,"577 Lakeview St, Los Angeles, CA 90001" -222927,Wired Headphones,1,11.99,07/31/19 20:34,"244 Washington St, Los Angeles, CA 90001" -222928,Google Phone,1,600,07/15/19 17:18,"524 Cherry St, San Francisco, CA 94016" -222929,Vareebadd Phone,1,400,07/04/19 19:46,"882 Hickory St, Boston, MA 02215" -222930,Lightning Charging Cable,1,14.95,07/20/19 20:57,"826 River St, San Francisco, CA 94016" -222931,USB-C Charging Cable,1,11.95,07/18/19 09:21,"145 Pine St, Boston, MA 02215" -222932,Wired Headphones,1,11.99,07/24/19 17:32,"386 Cedar St, Los Angeles, CA 90001" -222933,LG Dryer,1,600.0,07/30/19 13:20,"76 2nd St, Los Angeles, CA 90001" -222934,AA Batteries (4-pack),2,3.84,07/03/19 23:51,"437 River St, Seattle, WA 98101" -222935,AAA Batteries (4-pack),1,2.99,07/23/19 12:20,"118 9th St, San Francisco, CA 94016" -222936,27in FHD Monitor,1,149.99,07/04/19 12:29,"483 West St, Boston, MA 02215" -222937,Lightning Charging Cable,2,14.95,07/03/19 09:01,"538 North St, San Francisco, CA 94016" -222938,Flatscreen TV,1,300,07/20/19 17:49,"523 Hickory St, Dallas, TX 75001" -222939,Apple Airpods Headphones,1,150,07/17/19 21:53,"597 Madison St, Los Angeles, CA 90001" -222940,Wired Headphones,2,11.99,07/05/19 15:06,"779 Maple St, San Francisco, CA 94016" -222941,Apple Airpods Headphones,1,150,07/02/19 05:48,"631 Willow St, San Francisco, CA 94016" -222942,Lightning Charging Cable,1,14.95,07/07/19 10:00,"424 Church St, Portland, OR 97035" -222943,Lightning Charging Cable,1,14.95,07/20/19 23:39,"575 4th St, Seattle, WA 98101" -222944,27in FHD Monitor,1,149.99,07/07/19 22:52,"70 Meadow St, San Francisco, CA 94016" -222945,Wired Headphones,1,11.99,07/21/19 21:51,"191 Dogwood St, Los Angeles, CA 90001" -222946,20in Monitor,1,109.99,07/14/19 22:19,"49 Park St, New York City, NY 10001" -222947,ThinkPad Laptop,1,999.99,07/16/19 09:15,"612 Spruce St, New York City, NY 10001" -222948,USB-C Charging Cable,1,11.95,07/10/19 08:18,"631 12th St, San Francisco, CA 94016" -222949,USB-C Charging Cable,1,11.95,07/28/19 17:24,"902 Cedar St, Dallas, TX 75001" -222950,Lightning Charging Cable,1,14.95,07/17/19 19:05,"358 1st St, Dallas, TX 75001" -222951,Apple Airpods Headphones,1,150,07/08/19 12:34,"781 Maple St, San Francisco, CA 94016" -222952,Lightning Charging Cable,1,14.95,07/06/19 16:01,"879 Park St, San Francisco, CA 94016" -222953,Lightning Charging Cable,1,14.95,07/31/19 02:56,"109 Highland St, Los Angeles, CA 90001" -222954,AA Batteries (4-pack),2,3.84,07/14/19 18:11,"980 Chestnut St, Dallas, TX 75001" -222955,USB-C Charging Cable,1,11.95,07/01/19 14:27,"117 Lake St, Los Angeles, CA 90001" -222956,27in 4K Gaming Monitor,1,389.99,07/11/19 20:18,"525 6th St, Atlanta, GA 30301" -222957,AAA Batteries (4-pack),1,2.99,07/19/19 10:11,"143 5th St, Portland, OR 97035" -222958,AAA Batteries (4-pack),1,2.99,07/26/19 21:00,"777 5th St, Dallas, TX 75001" -222959,ThinkPad Laptop,1,999.99,07/15/19 13:07,"252 River St, Dallas, TX 75001" -222960,Lightning Charging Cable,1,14.95,07/11/19 08:44,"638 Dogwood St, San Francisco, CA 94016" -222961,Lightning Charging Cable,1,14.95,07/04/19 05:44,"840 5th St, Dallas, TX 75001" -222962,Wired Headphones,1,11.99,07/20/19 09:20,"694 Cherry St, Seattle, WA 98101" -222963,USB-C Charging Cable,1,11.95,07/29/19 09:11,"734 Elm St, Boston, MA 02215" -222964,Macbook Pro Laptop,1,1700,07/24/19 20:18,"601 Lake St, Boston, MA 02215" -222965,AAA Batteries (4-pack),2,2.99,07/07/19 12:06,"792 Cedar St, San Francisco, CA 94016" -222966,AA Batteries (4-pack),2,3.84,07/13/19 01:01,"718 7th St, Seattle, WA 98101" -222967,20in Monitor,1,109.99,07/14/19 11:58,"161 13th St, San Francisco, CA 94016" -222968,AA Batteries (4-pack),1,3.84,07/24/19 15:32,"536 14th St, San Francisco, CA 94016" -222969,AAA Batteries (4-pack),1,2.99,07/05/19 17:00,"248 Johnson St, San Francisco, CA 94016" -222970,AAA Batteries (4-pack),1,2.99,07/09/19 11:08,"594 Church St, Atlanta, GA 30301" -222971,Apple Airpods Headphones,1,150,07/05/19 14:49,"444 Spruce St, Austin, TX 73301" -222972,Wired Headphones,1,11.99,07/09/19 09:17,"917 Madison St, Seattle, WA 98101" -222973,Flatscreen TV,1,300,07/18/19 14:40,"509 Hickory St, Seattle, WA 98101" -222974,Lightning Charging Cable,1,14.95,07/09/19 19:51,"112 Wilson St, Los Angeles, CA 90001" -222975,Wired Headphones,1,11.99,07/19/19 16:15,"541 Hickory St, Los Angeles, CA 90001" -222976,Lightning Charging Cable,1,14.95,07/17/19 10:14,"390 1st St, Los Angeles, CA 90001" -222977,Lightning Charging Cable,1,14.95,07/14/19 22:07,"660 Walnut St, Los Angeles, CA 90001" -222978,AAA Batteries (4-pack),2,2.99,07/04/19 12:23,"941 Willow St, Seattle, WA 98101" -222979,Bose SoundSport Headphones,1,99.99,07/11/19 23:59,"844 Center St, Seattle, WA 98101" -222980,Bose SoundSport Headphones,1,99.99,07/13/19 11:16,"519 Park St, Atlanta, GA 30301" -222981,USB-C Charging Cable,1,11.95,07/26/19 00:40,"791 9th St, Austin, TX 73301" -222982,Flatscreen TV,1,300,07/28/19 12:40,"651 Ridge St, Portland, OR 97035" -222983,Lightning Charging Cable,1,14.95,07/16/19 00:06,"639 Spruce St, Boston, MA 02215" -222984,USB-C Charging Cable,1,11.95,07/29/19 21:50,"305 Johnson St, Austin, TX 73301" -222985,Bose SoundSport Headphones,1,99.99,07/21/19 12:41,"846 Lake St, Dallas, TX 75001" -222986,Lightning Charging Cable,1,14.95,07/05/19 11:13,"313 Forest St, San Francisco, CA 94016" -222987,AAA Batteries (4-pack),1,2.99,07/31/19 16:56,"538 1st St, New York City, NY 10001" -222988,Lightning Charging Cable,1,14.95,07/04/19 09:44,"647 Meadow St, Dallas, TX 75001" -222989,Lightning Charging Cable,1,14.95,07/07/19 20:53,"48 Walnut St, Dallas, TX 75001" -222990,AAA Batteries (4-pack),2,2.99,07/19/19 18:33,"419 Jackson St, New York City, NY 10001" -222991,27in FHD Monitor,1,149.99,07/05/19 10:06,"450 8th St, Los Angeles, CA 90001" -222992,AA Batteries (4-pack),1,3.84,07/05/19 18:49,"779 Washington St, San Francisco, CA 94016" -222993,AAA Batteries (4-pack),1,2.99,07/25/19 21:40,"697 Adams St, Los Angeles, CA 90001" -222994,USB-C Charging Cable,1,11.95,07/10/19 18:59,"251 Cedar St, New York City, NY 10001" -222995,34in Ultrawide Monitor,1,379.99,07/27/19 16:15,"837 Park St, San Francisco, CA 94016" -222996,27in FHD Monitor,1,149.99,07/12/19 16:53,"885 Sunset St, Los Angeles, CA 90001" -222997,AAA Batteries (4-pack),1,2.99,07/21/19 16:44,"619 Willow St, New York City, NY 10001" -222998,Lightning Charging Cable,1,14.95,07/28/19 03:41,"38 Lakeview St, Boston, MA 02215" -222999,Flatscreen TV,1,300,07/29/19 17:17,"615 Cherry St, Seattle, WA 98101" -223000,AAA Batteries (4-pack),1,2.99,07/19/19 20:29,"670 10th St, Atlanta, GA 30301" -223001,Apple Airpods Headphones,1,150,07/29/19 11:56,"978 10th St, San Francisco, CA 94016" -223002,AA Batteries (4-pack),1,3.84,07/13/19 18:48,"603 12th St, Dallas, TX 75001" -223003,Lightning Charging Cable,1,14.95,07/09/19 17:51,"18 Jefferson St, San Francisco, CA 94016" -223004,AAA Batteries (4-pack),1,2.99,07/14/19 02:43,"911 Spruce St, San Francisco, CA 94016" -223005,27in FHD Monitor,1,149.99,07/26/19 21:39,"306 Lake St, Austin, TX 73301" -223006,Lightning Charging Cable,1,14.95,07/22/19 16:50,"499 Park St, Los Angeles, CA 90001" -223007,Bose SoundSport Headphones,1,99.99,07/06/19 11:07,"481 10th St, Portland, OR 97035" -223008,AAA Batteries (4-pack),3,2.99,07/12/19 00:54,"289 13th St, Boston, MA 02215" -223009,Apple Airpods Headphones,1,150,07/28/19 07:59,"152 9th St, Boston, MA 02215" -223010,AAA Batteries (4-pack),1,2.99,07/18/19 12:17,"518 Wilson St, Boston, MA 02215" -223011,Apple Airpods Headphones,1,150,07/09/19 17:19,"87 Sunset St, San Francisco, CA 94016" -223012,Bose SoundSport Headphones,1,99.99,07/13/19 10:10,"233 12th St, Austin, TX 73301" -223013,AAA Batteries (4-pack),2,2.99,07/27/19 14:11,"289 8th St, New York City, NY 10001" -223014,Wired Headphones,1,11.99,07/10/19 17:43,"421 Highland St, Atlanta, GA 30301" -223015,Bose SoundSport Headphones,1,99.99,07/26/19 14:47,"605 Johnson St, San Francisco, CA 94016" -223016,USB-C Charging Cable,1,11.95,07/20/19 08:42,"700 Church St, New York City, NY 10001" -223017,AAA Batteries (4-pack),2,2.99,07/02/19 22:09,"773 Hickory St, San Francisco, CA 94016" -223018,ThinkPad Laptop,1,999.99,07/04/19 08:39,"767 Adams St, Los Angeles, CA 90001" -223019,AAA Batteries (4-pack),2,2.99,07/29/19 13:49,"788 Hill St, Dallas, TX 75001" -223020,27in FHD Monitor,1,149.99,07/08/19 10:08,"296 9th St, Boston, MA 02215" -223021,AAA Batteries (4-pack),1,2.99,07/07/19 11:31,"657 10th St, Los Angeles, CA 90001" -223022,Lightning Charging Cable,1,14.95,07/31/19 17:45,"93 Madison St, Atlanta, GA 30301" -223023,Bose SoundSport Headphones,1,99.99,07/01/19 18:12,"268 Meadow St, San Francisco, CA 94016" -223024,AAA Batteries (4-pack),2,2.99,07/23/19 14:04,"91 Jefferson St, Dallas, TX 75001" -223025,AA Batteries (4-pack),1,3.84,07/23/19 00:58,"142 Pine St, San Francisco, CA 94016" -223026,Wired Headphones,1,11.99,07/25/19 12:49,"47 Pine St, San Francisco, CA 94016" -223027,AA Batteries (4-pack),1,3.84,07/11/19 16:29,"876 Center St, Austin, TX 73301" -223028,Vareebadd Phone,1,400,07/07/19 10:21,"969 10th St, San Francisco, CA 94016" -223028,USB-C Charging Cable,2,11.95,07/07/19 10:21,"969 10th St, San Francisco, CA 94016" -223028,Wired Headphones,1,11.99,07/07/19 10:21,"969 10th St, San Francisco, CA 94016" -223029,USB-C Charging Cable,1,11.95,07/18/19 11:15,"144 Adams St, New York City, NY 10001" -223030,Bose SoundSport Headphones,1,99.99,07/09/19 19:04,"704 13th St, Los Angeles, CA 90001" -223031,27in FHD Monitor,1,149.99,07/28/19 09:30,"445 Johnson St, Los Angeles, CA 90001" -223032,Apple Airpods Headphones,1,150,07/20/19 18:47,"8 Cherry St, Dallas, TX 75001" -223033,AAA Batteries (4-pack),1,2.99,07/01/19 18:27,"972 Meadow St, Atlanta, GA 30301" -223034,Wired Headphones,1,11.99,07/06/19 09:22,"927 South St, Portland, OR 97035" -223035,Flatscreen TV,1,300,07/27/19 12:04,"911 Sunset St, Portland, OR 97035" -223036,Apple Airpods Headphones,1,150,07/31/19 10:59,"828 Willow St, Boston, MA 02215" -223037,Wired Headphones,1,11.99,07/21/19 20:58,"24 Adams St, Los Angeles, CA 90001" -223038,Lightning Charging Cable,1,14.95,07/03/19 14:19,"990 11th St, Los Angeles, CA 90001" -223039,Flatscreen TV,1,300,07/27/19 11:44,"9 Center St, Dallas, TX 75001" -223040,Apple Airpods Headphones,1,150,07/19/19 20:05,"395 West St, Austin, TX 73301" -223041,27in 4K Gaming Monitor,1,389.99,07/11/19 08:16,"330 River St, New York City, NY 10001" -223042,Lightning Charging Cable,1,14.95,07/10/19 08:42,"983 Jackson St, Dallas, TX 75001" -223043,Lightning Charging Cable,1,14.95,07/01/19 10:20,"662 North St, Atlanta, GA 30301" -223044,Apple Airpods Headphones,1,150,07/05/19 11:15,"605 6th St, San Francisco, CA 94016" -223045,LG Dryer,1,600.0,07/18/19 20:22,"457 2nd St, Boston, MA 02215" -223046,USB-C Charging Cable,1,11.95,07/15/19 23:04,"335 Ridge St, Los Angeles, CA 90001" -223047,AA Batteries (4-pack),1,3.84,07/16/19 15:16,"541 Lakeview St, Los Angeles, CA 90001" -223048,Vareebadd Phone,1,400,07/21/19 17:19,"168 8th St, Portland, OR 97035" -223048,USB-C Charging Cable,2,11.95,07/21/19 17:19,"168 8th St, Portland, OR 97035" -223049,Flatscreen TV,1,300,07/24/19 23:24,"595 Jackson St, San Francisco, CA 94016" -223050,ThinkPad Laptop,1,999.99,07/14/19 18:14,"842 Washington St, Los Angeles, CA 90001" -223051,Bose SoundSport Headphones,1,99.99,07/27/19 16:35,"819 Cherry St, Los Angeles, CA 90001" -223052,USB-C Charging Cable,1,11.95,07/09/19 20:05,"549 Lincoln St, San Francisco, CA 94016" -223053,LG Dryer,1,600.0,07/06/19 08:37,"226 2nd St, Seattle, WA 98101" -223054,Wired Headphones,1,11.99,07/28/19 18:08,"905 Chestnut St, Boston, MA 02215" -223055,AA Batteries (4-pack),1,3.84,07/14/19 14:04,"181 Walnut St, Los Angeles, CA 90001" -223056,USB-C Charging Cable,1,11.95,07/27/19 17:19,"907 Madison St, San Francisco, CA 94016" -223057,Bose SoundSport Headphones,1,99.99,07/12/19 11:30,"195 Washington St, San Francisco, CA 94016" -223058,Bose SoundSport Headphones,1,99.99,07/01/19 08:09,"993 Main St, Boston, MA 02215" -223059,USB-C Charging Cable,1,11.95,07/23/19 02:09,"84 10th St, Boston, MA 02215" -223060,AA Batteries (4-pack),1,3.84,07/20/19 13:14,"613 Johnson St, San Francisco, CA 94016" -223061,Lightning Charging Cable,2,14.95,07/14/19 22:02,"788 Center St, Dallas, TX 75001" -223062,ThinkPad Laptop,1,999.99,07/12/19 19:58,"756 5th St, Atlanta, GA 30301" -223063,USB-C Charging Cable,1,11.95,07/02/19 21:37,"535 Cedar St, Portland, OR 97035" -223064,AAA Batteries (4-pack),1,2.99,07/13/19 19:23,"627 13th St, San Francisco, CA 94016" -223065,Bose SoundSport Headphones,2,99.99,07/02/19 20:20,"180 Park St, San Francisco, CA 94016" -223066,Macbook Pro Laptop,1,1700,07/16/19 08:31,"377 Madison St, San Francisco, CA 94016" -223067,AAA Batteries (4-pack),1,2.99,07/11/19 13:46,"189 Johnson St, Los Angeles, CA 90001" -223068,AA Batteries (4-pack),1,3.84,07/29/19 18:11,"450 Church St, San Francisco, CA 94016" -223069,AA Batteries (4-pack),1,3.84,07/17/19 20:50,"486 4th St, San Francisco, CA 94016" -223070,AAA Batteries (4-pack),1,2.99,07/19/19 08:29,"172 Adams St, Boston, MA 02215" -223071,Lightning Charging Cable,1,14.95,07/17/19 12:01,"758 Madison St, New York City, NY 10001" -223072,Lightning Charging Cable,1,14.95,07/18/19 02:39,"252 Madison St, Boston, MA 02215" -223073,Wired Headphones,1,11.99,07/02/19 15:41,"972 Dogwood St, San Francisco, CA 94016" -223074,USB-C Charging Cable,1,11.95,07/15/19 10:07,"899 North St, Los Angeles, CA 90001" -223075,USB-C Charging Cable,1,11.95,07/22/19 14:15,"752 Chestnut St, San Francisco, CA 94016" -223076,Lightning Charging Cable,1,14.95,07/10/19 13:21,"692 Spruce St, Boston, MA 02215" -223077,ThinkPad Laptop,1,999.99,07/06/19 13:01,"261 Sunset St, San Francisco, CA 94016" -223078,Lightning Charging Cable,1,14.95,07/10/19 19:23,"865 Meadow St, Atlanta, GA 30301" -223079,27in 4K Gaming Monitor,1,389.99,07/18/19 10:22,"211 Ridge St, Austin, TX 73301" -223080,Apple Airpods Headphones,1,150,07/09/19 18:26,"275 Jackson St, Austin, TX 73301" -223081,USB-C Charging Cable,1,11.95,07/05/19 15:55,"983 12th St, San Francisco, CA 94016" -223082,USB-C Charging Cable,1,11.95,07/07/19 09:54,"158 7th St, Seattle, WA 98101" -223083,USB-C Charging Cable,1,11.95,07/13/19 21:05,"277 Lakeview St, Portland, OR 97035" -223084,Lightning Charging Cable,1,14.95,07/02/19 15:08,"555 Pine St, Los Angeles, CA 90001" -223085,iPhone,1,700,07/22/19 11:56,"875 Madison St, Los Angeles, CA 90001" -223086,Apple Airpods Headphones,1,150,07/22/19 11:08,"938 Meadow St, Los Angeles, CA 90001" -223087,iPhone,1,700,07/26/19 11:06,"864 10th St, Boston, MA 02215" -223088,AA Batteries (4-pack),1,3.84,07/05/19 22:58,"715 North St, Seattle, WA 98101" -223089,AA Batteries (4-pack),1,3.84,07/17/19 17:53,"650 Hickory St, New York City, NY 10001" -223090,USB-C Charging Cable,1,11.95,07/12/19 16:18,"739 Adams St, New York City, NY 10001" -223091,Bose SoundSport Headphones,1,99.99,07/20/19 11:02,"415 Cedar St, New York City, NY 10001" -223092,ThinkPad Laptop,1,999.99,07/11/19 15:27,"634 Washington St, Boston, MA 02215" -223093,AA Batteries (4-pack),1,3.84,07/01/19 10:48,"899 1st St, San Francisco, CA 94016" -223094,Wired Headphones,1,11.99,07/18/19 11:15,"971 Chestnut St, Los Angeles, CA 90001" -223095,Apple Airpods Headphones,1,150,07/03/19 13:42,"876 Cedar St, Los Angeles, CA 90001" -223095,AA Batteries (4-pack),1,3.84,07/03/19 13:42,"876 Cedar St, Los Angeles, CA 90001" -223096,AAA Batteries (4-pack),2,2.99,07/08/19 19:31,"846 Sunset St, Portland, OR 97035" -223097,Lightning Charging Cable,1,14.95,07/11/19 12:29,"77 10th St, Los Angeles, CA 90001" -223098,Apple Airpods Headphones,1,150,07/23/19 18:23,"374 Cherry St, San Francisco, CA 94016" -223099,AAA Batteries (4-pack),3,2.99,07/29/19 22:46,"3 Highland St, New York City, NY 10001" -223100,USB-C Charging Cable,1,11.95,07/29/19 16:56,"516 Jackson St, New York City, NY 10001" -223101,Wired Headphones,1,11.99,07/10/19 16:55,"924 Lincoln St, San Francisco, CA 94016" -223102,Wired Headphones,2,11.99,07/16/19 20:54,"484 7th St, Seattle, WA 98101" -223103,Apple Airpods Headphones,1,150,07/13/19 11:25,"107 West St, San Francisco, CA 94016" -223104,20in Monitor,1,109.99,07/08/19 07:29,"505 4th St, Los Angeles, CA 90001" -,,,,, -223105,34in Ultrawide Monitor,1,379.99,07/17/19 00:06,"589 8th St, Portland, OR 97035" -223106,Wired Headphones,1,11.99,07/14/19 14:30,"630 2nd St, San Francisco, CA 94016" -223106,Vareebadd Phone,1,400,07/14/19 14:30,"630 2nd St, San Francisco, CA 94016" -223107,iPhone,1,700,07/25/19 13:40,"470 Chestnut St, San Francisco, CA 94016" -223108,AAA Batteries (4-pack),1,2.99,07/05/19 11:21,"781 8th St, Boston, MA 02215" -223109,iPhone,1,700,07/12/19 20:48,"929 Ridge St, Seattle, WA 98101" -223110,Flatscreen TV,1,300,07/16/19 01:05,"434 Elm St, Seattle, WA 98101" -223111,AA Batteries (4-pack),1,3.84,07/20/19 16:46,"137 Madison St, Atlanta, GA 30301" -223112,USB-C Charging Cable,2,11.95,07/08/19 22:23,"241 8th St, San Francisco, CA 94016" -223113,27in 4K Gaming Monitor,1,389.99,07/05/19 07:35,"176 Willow St, Los Angeles, CA 90001" -223114,AA Batteries (4-pack),1,3.84,07/26/19 13:37,"576 11th St, Austin, TX 73301" -223115,Flatscreen TV,1,300,07/02/19 13:15,"836 Johnson St, New York City, NY 10001" -223116,Apple Airpods Headphones,1,150,07/21/19 13:18,"366 Adams St, Portland, OR 97035" -223117,Google Phone,1,600,07/11/19 23:25,"184 Spruce St, Atlanta, GA 30301" -223117,USB-C Charging Cable,1,11.95,07/11/19 23:25,"184 Spruce St, Atlanta, GA 30301" -223118,AA Batteries (4-pack),2,3.84,07/04/19 11:04,"346 Walnut St, New York City, NY 10001" -223119,27in FHD Monitor,1,149.99,07/30/19 13:33,"955 Main St, New York City, NY 10001" -223120,Lightning Charging Cable,1,14.95,07/18/19 13:29,"506 Main St, San Francisco, CA 94016" -223121,Bose SoundSport Headphones,1,99.99,07/05/19 22:00,"880 7th St, New York City, NY 10001" -223122,Apple Airpods Headphones,1,150,07/04/19 08:49,"972 Lincoln St, Boston, MA 02215" -223123,Wired Headphones,1,11.99,07/05/19 06:27,"86 5th St, Boston, MA 02215" -223124,USB-C Charging Cable,1,11.95,07/19/19 19:28,"593 Ridge St, San Francisco, CA 94016" -223125,27in 4K Gaming Monitor,1,389.99,07/17/19 09:45,"678 13th St, San Francisco, CA 94016" -223126,34in Ultrawide Monitor,1,379.99,07/29/19 16:38,"858 6th St, San Francisco, CA 94016" -223127,AAA Batteries (4-pack),1,2.99,07/31/19 17:36,"473 10th St, Los Angeles, CA 90001" -223128,USB-C Charging Cable,1,11.95,07/14/19 08:00,"418 Spruce St, Los Angeles, CA 90001" -223129,Apple Airpods Headphones,1,150,07/05/19 08:40,"239 12th St, Boston, MA 02215" -223130,Wired Headphones,1,11.99,07/16/19 11:54,"126 5th St, New York City, NY 10001" -223131,AAA Batteries (4-pack),1,2.99,07/21/19 07:47,"712 Washington St, Los Angeles, CA 90001" -223132,AA Batteries (4-pack),1,3.84,07/23/19 00:10,"132 West St, San Francisco, CA 94016" -223133,AA Batteries (4-pack),1,3.84,07/28/19 20:40,"621 Church St, San Francisco, CA 94016" -223133,AAA Batteries (4-pack),1,2.99,07/28/19 20:40,"621 Church St, San Francisco, CA 94016" -223134,ThinkPad Laptop,1,999.99,07/25/19 12:17,"298 Wilson St, Portland, ME 04101" -223135,Apple Airpods Headphones,1,150,07/27/19 21:39,"385 Dogwood St, Atlanta, GA 30301" -223136,Flatscreen TV,1,300,07/07/19 21:45,"339 12th St, San Francisco, CA 94016" -223137,AA Batteries (4-pack),1,3.84,07/20/19 09:51,"776 Forest St, Boston, MA 02215" -223138,27in 4K Gaming Monitor,1,389.99,07/22/19 10:44,"720 Main St, San Francisco, CA 94016" -223139,Bose SoundSport Headphones,1,99.99,07/05/19 20:27,"820 West St, Los Angeles, CA 90001" -223140,AA Batteries (4-pack),1,3.84,07/22/19 09:58,"112 Meadow St, San Francisco, CA 94016" -223140,Flatscreen TV,1,300,07/22/19 09:58,"112 Meadow St, San Francisco, CA 94016" -223141,Wired Headphones,1,11.99,07/23/19 21:39,"247 Adams St, Portland, OR 97035" -223142,AA Batteries (4-pack),2,3.84,07/26/19 13:53,"587 South St, San Francisco, CA 94016" -223143,ThinkPad Laptop,1,999.99,07/14/19 10:09,"494 Lakeview St, San Francisco, CA 94016" -223144,Google Phone,1,600,07/15/19 21:51,"37 Walnut St, New York City, NY 10001" -223144,USB-C Charging Cable,1,11.95,07/15/19 21:51,"37 Walnut St, New York City, NY 10001" -223145,Apple Airpods Headphones,1,150,07/02/19 14:21,"35 Main St, Seattle, WA 98101" -223146,LG Dryer,1,600.0,07/22/19 17:05,"753 5th St, Los Angeles, CA 90001" -223147,AA Batteries (4-pack),1,3.84,07/15/19 11:27,"767 West St, Los Angeles, CA 90001" -223148,AA Batteries (4-pack),1,3.84,07/22/19 18:02,"256 Jackson St, Atlanta, GA 30301" -223149,27in FHD Monitor,1,149.99,07/14/19 20:39,"770 Lincoln St, Boston, MA 02215" -223150,Apple Airpods Headphones,1,150,07/16/19 18:17,"289 12th St, Boston, MA 02215" -223151,AAA Batteries (4-pack),2,2.99,07/31/19 07:15,"825 North St, Seattle, WA 98101" -223152,Bose SoundSport Headphones,1,99.99,07/10/19 20:02,"910 Hill St, Atlanta, GA 30301" -223153,Wired Headphones,1,11.99,07/17/19 20:11,"65 Hickory St, Dallas, TX 75001" -223154,AAA Batteries (4-pack),1,2.99,07/18/19 13:25,"223 Elm St, Portland, OR 97035" -223155,Lightning Charging Cable,1,14.95,07/02/19 21:24,"706 Washington St, San Francisco, CA 94016" -223156,AAA Batteries (4-pack),1,2.99,07/23/19 16:04,"564 Ridge St, New York City, NY 10001" -223157,Wired Headphones,1,11.99,07/25/19 23:34,"532 Lincoln St, Boston, MA 02215" -223158,USB-C Charging Cable,1,11.95,07/14/19 23:12,"787 Adams St, Boston, MA 02215" -223159,Lightning Charging Cable,1,14.95,07/04/19 13:48,"818 11th St, Los Angeles, CA 90001" -223160,Apple Airpods Headphones,1,150,07/16/19 19:14,"629 Meadow St, New York City, NY 10001" -223161,AAA Batteries (4-pack),2,2.99,07/18/19 09:27,"399 6th St, San Francisco, CA 94016" -223162,Wired Headphones,1,11.99,07/06/19 19:57,"453 Madison St, Portland, OR 97035" -223163,34in Ultrawide Monitor,1,379.99,07/02/19 00:37,"801 Lakeview St, Austin, TX 73301" -223164,USB-C Charging Cable,1,11.95,07/07/19 18:19,"120 Park St, San Francisco, CA 94016" -223165,Lightning Charging Cable,1,14.95,07/14/19 10:00,"29 Chestnut St, Seattle, WA 98101" -223166,AAA Batteries (4-pack),1,2.99,07/23/19 06:53,"648 River St, Boston, MA 02215" -223167,Macbook Pro Laptop,1,1700,07/21/19 06:37,"76 Sunset St, Portland, OR 97035" -223168,USB-C Charging Cable,1,11.95,07/28/19 17:38,"812 Wilson St, Los Angeles, CA 90001" -223169,34in Ultrawide Monitor,1,379.99,07/21/19 18:25,"460 Sunset St, Los Angeles, CA 90001" -223170,Wired Headphones,1,11.99,07/08/19 11:57,"732 Madison St, Atlanta, GA 30301" -223171,AAA Batteries (4-pack),3,2.99,07/28/19 19:43,"3 8th St, Los Angeles, CA 90001" -223172,AAA Batteries (4-pack),1,2.99,07/17/19 11:48,"431 Sunset St, Atlanta, GA 30301" -223173,Apple Airpods Headphones,1,150,07/31/19 19:19,"436 Dogwood St, San Francisco, CA 94016" -223174,AAA Batteries (4-pack),1,2.99,07/19/19 18:44,"532 5th St, Los Angeles, CA 90001" -223175,Flatscreen TV,1,300,07/21/19 16:41,"257 Walnut St, Seattle, WA 98101" -223176,Google Phone,1,600,07/24/19 08:16,"562 Elm St, Los Angeles, CA 90001" -223177,20in Monitor,1,109.99,07/28/19 12:52,"654 11th St, San Francisco, CA 94016" -223178,AAA Batteries (4-pack),1,2.99,07/12/19 11:13,"292 Main St, Boston, MA 02215" -223179,Apple Airpods Headphones,1,150,07/08/19 10:57,"724 5th St, Boston, MA 02215" -223180,Google Phone,1,600,07/01/19 07:53,"906 Johnson St, San Francisco, CA 94016" -223181,AAA Batteries (4-pack),4,2.99,07/20/19 16:25,"810 9th St, New York City, NY 10001" -223182,AA Batteries (4-pack),1,3.84,07/22/19 10:57,"565 Walnut St, Los Angeles, CA 90001" -223183,Lightning Charging Cable,1,14.95,07/15/19 05:32,"183 Hickory St, Los Angeles, CA 90001" -223184,27in 4K Gaming Monitor,1,389.99,07/22/19 14:29,"456 5th St, Los Angeles, CA 90001" -223185,20in Monitor,1,109.99,07/06/19 16:44,"551 Main St, Portland, OR 97035" -223186,USB-C Charging Cable,1,11.95,07/18/19 13:04,"558 2nd St, Los Angeles, CA 90001" -223187,AA Batteries (4-pack),3,3.84,07/28/19 06:13,"39 4th St, Austin, TX 73301" -223188,Apple Airpods Headphones,1,150,07/17/19 20:37,"725 West St, Los Angeles, CA 90001" -223189,USB-C Charging Cable,1,11.95,07/25/19 20:40,"574 Hickory St, San Francisco, CA 94016" -223190,Macbook Pro Laptop,1,1700,07/16/19 11:31,"129 Main St, Los Angeles, CA 90001" -223191,34in Ultrawide Monitor,1,379.99,07/18/19 15:19,"25 7th St, San Francisco, CA 94016" -223192,ThinkPad Laptop,1,999.99,07/26/19 17:12,"931 Ridge St, Portland, OR 97035" -223193,Lightning Charging Cable,1,14.95,07/22/19 17:55,"130 Johnson St, New York City, NY 10001" -223194,Bose SoundSport Headphones,1,99.99,07/02/19 18:28,"523 7th St, Austin, TX 73301" -223195,Bose SoundSport Headphones,1,99.99,07/24/19 09:47,"993 Maple St, Austin, TX 73301" -223196,Wired Headphones,1,11.99,07/29/19 18:19,"191 Lincoln St, Atlanta, GA 30301" -223197,AA Batteries (4-pack),1,3.84,07/30/19 16:59,"972 9th St, Boston, MA 02215" -223198,Lightning Charging Cable,1,14.95,07/21/19 20:09,"184 Center St, San Francisco, CA 94016" -223199,Lightning Charging Cable,1,14.95,07/05/19 16:48,"959 2nd St, Boston, MA 02215" -223200,Bose SoundSport Headphones,1,99.99,07/25/19 21:05,"975 Church St, Seattle, WA 98101" -223201,Apple Airpods Headphones,1,150,07/16/19 09:16,"929 Adams St, Seattle, WA 98101" -223202,Apple Airpods Headphones,1,150,07/18/19 21:42,"9 5th St, San Francisco, CA 94016" -223203,AA Batteries (4-pack),1,3.84,07/01/19 12:01,"2 Jackson St, San Francisco, CA 94016" -223204,AAA Batteries (4-pack),1,2.99,07/27/19 11:35,"236 Center St, Boston, MA 02215" -223205,AA Batteries (4-pack),1,3.84,07/15/19 22:59,"834 River St, San Francisco, CA 94016" -223206,AA Batteries (4-pack),1,3.84,07/09/19 12:31,"234 West St, Atlanta, GA 30301" -223207,AAA Batteries (4-pack),1,2.99,07/25/19 22:21,"979 Ridge St, Boston, MA 02215" -223208,Google Phone,1,600,07/13/19 20:02,"301 Washington St, Los Angeles, CA 90001" -223209,Wired Headphones,1,11.99,07/06/19 23:11,"571 Spruce St, San Francisco, CA 94016" -223210,AA Batteries (4-pack),3,3.84,07/09/19 17:05,"272 Spruce St, Atlanta, GA 30301" -223210,27in FHD Monitor,1,149.99,07/09/19 17:05,"272 Spruce St, Atlanta, GA 30301" -223211,Lightning Charging Cable,1,14.95,07/13/19 11:48,"798 9th St, San Francisco, CA 94016" -223212,USB-C Charging Cable,1,11.95,07/03/19 08:13,"573 Walnut St, San Francisco, CA 94016" -223213,AAA Batteries (4-pack),2,2.99,07/22/19 11:07,"782 Forest St, New York City, NY 10001" -,,,,, -223214,Lightning Charging Cable,1,14.95,07/04/19 19:52,"911 Chestnut St, Portland, OR 97035" -223215,Apple Airpods Headphones,1,150,07/20/19 22:27,"96 Church St, San Francisco, CA 94016" -223216,Macbook Pro Laptop,1,1700,07/03/19 21:01,"956 Ridge St, Atlanta, GA 30301" -223217,Lightning Charging Cable,1,14.95,07/13/19 06:25,"673 12th St, Boston, MA 02215" -223218,AAA Batteries (4-pack),3,2.99,07/23/19 08:53,"789 Cherry St, Seattle, WA 98101" -223219,ThinkPad Laptop,1,999.99,07/22/19 14:39,"778 Cedar St, Atlanta, GA 30301" -223220,Lightning Charging Cable,2,14.95,07/03/19 13:04,"619 Sunset St, New York City, NY 10001" -223221,Wired Headphones,1,11.99,07/07/19 18:32,"244 Meadow St, Boston, MA 02215" -223221,Macbook Pro Laptop,1,1700,07/07/19 18:32,"244 Meadow St, Boston, MA 02215" -223222,20in Monitor,1,109.99,07/14/19 16:21,"534 Lincoln St, San Francisco, CA 94016" -223222,Apple Airpods Headphones,1,150,07/14/19 16:21,"534 Lincoln St, San Francisco, CA 94016" -223223,Google Phone,1,600,07/20/19 09:53,"629 North St, Dallas, TX 75001" -223224,AA Batteries (4-pack),1,3.84,07/02/19 16:53,"715 Ridge St, San Francisco, CA 94016" -223225,AAA Batteries (4-pack),1,2.99,07/04/19 13:54,"954 Jefferson St, San Francisco, CA 94016" -223226,USB-C Charging Cable,1,11.95,07/03/19 06:57,"323 Lake St, Seattle, WA 98101" -223227,27in 4K Gaming Monitor,1,389.99,07/23/19 09:43,"830 10th St, Los Angeles, CA 90001" -223228,AAA Batteries (4-pack),1,2.99,07/17/19 23:20,"395 Center St, San Francisco, CA 94016" -223229,Lightning Charging Cable,1,14.95,07/30/19 16:58,"372 Center St, Portland, OR 97035" -223230,USB-C Charging Cable,1,11.95,07/23/19 22:20,"622 Walnut St, Atlanta, GA 30301" -223231,Bose SoundSport Headphones,1,99.99,07/14/19 18:38,"746 13th St, Boston, MA 02215" -223232,AAA Batteries (4-pack),1,2.99,07/30/19 16:53,"297 Ridge St, Boston, MA 02215" -223233,Lightning Charging Cable,1,14.95,07/24/19 09:58,"762 Park St, New York City, NY 10001" -223234,34in Ultrawide Monitor,1,379.99,07/29/19 10:56,"351 Meadow St, Austin, TX 73301" -223235,27in FHD Monitor,1,149.99,07/01/19 17:00,"911 Jackson St, Los Angeles, CA 90001" -223236,Apple Airpods Headphones,1,150,07/31/19 11:54,"366 9th St, Seattle, WA 98101" -223237,27in FHD Monitor,1,149.99,07/17/19 09:48,"906 Spruce St, New York City, NY 10001" -223238,AA Batteries (4-pack),1,3.84,07/28/19 11:50,"48 13th St, Seattle, WA 98101" -223239,AA Batteries (4-pack),1,3.84,07/30/19 16:42,"908 Johnson St, San Francisco, CA 94016" -223240,27in 4K Gaming Monitor,1,389.99,07/05/19 20:47,"253 Jefferson St, New York City, NY 10001" -223241,USB-C Charging Cable,1,11.95,07/19/19 20:33,"651 Washington St, Boston, MA 02215" -223242,Flatscreen TV,1,300,07/01/19 14:55,"981 14th St, Los Angeles, CA 90001" -223243,Wired Headphones,1,11.99,07/16/19 18:50,"697 8th St, New York City, NY 10001" -223244,AAA Batteries (4-pack),1,2.99,07/09/19 11:05,"205 Lake St, Seattle, WA 98101" -223244,AA Batteries (4-pack),1,3.84,07/09/19 11:05,"205 Lake St, Seattle, WA 98101" -223245,Bose SoundSport Headphones,1,99.99,07/14/19 10:32,"424 Park St, San Francisco, CA 94016" -223246,AAA Batteries (4-pack),2,2.99,07/05/19 18:06,"639 Wilson St, San Francisco, CA 94016" -223247,AAA Batteries (4-pack),1,2.99,07/26/19 13:57,"894 6th St, Boston, MA 02215" -223248,Wired Headphones,1,11.99,07/30/19 21:53,"158 5th St, Boston, MA 02215" -223249,27in FHD Monitor,1,149.99,07/06/19 11:18,"910 11th St, Los Angeles, CA 90001" -223250,AAA Batteries (4-pack),2,2.99,07/15/19 17:44,"823 13th St, New York City, NY 10001" -223251,Wired Headphones,1,11.99,07/18/19 14:09,"171 Ridge St, Portland, ME 04101" -223252,AAA Batteries (4-pack),3,2.99,07/07/19 22:28,"737 Chestnut St, San Francisco, CA 94016" -223253,Bose SoundSport Headphones,1,99.99,07/17/19 22:09,"803 Jackson St, San Francisco, CA 94016" -223254,Flatscreen TV,1,300,07/19/19 20:36,"144 Spruce St, Austin, TX 73301" -223255,AA Batteries (4-pack),1,3.84,07/31/19 18:46,"745 2nd St, Los Angeles, CA 90001" -223256,34in Ultrawide Monitor,1,379.99,07/03/19 19:21,"825 Chestnut St, Boston, MA 02215" -223257,USB-C Charging Cable,1,11.95,07/22/19 23:36,"324 10th St, San Francisco, CA 94016" -223258,Wired Headphones,1,11.99,07/30/19 16:09,"314 Wilson St, Boston, MA 02215" -223259,27in 4K Gaming Monitor,1,389.99,07/23/19 21:54,"545 Cedar St, Seattle, WA 98101" -223260,USB-C Charging Cable,1,11.95,07/19/19 12:30,"498 South St, San Francisco, CA 94016" -223261,Lightning Charging Cable,1,14.95,07/04/19 22:16,"406 Lake St, Dallas, TX 75001" -223262,20in Monitor,1,109.99,07/02/19 01:24,"875 7th St, Los Angeles, CA 90001" -223263,20in Monitor,1,109.99,07/18/19 21:24,"591 Willow St, New York City, NY 10001" -223264,AAA Batteries (4-pack),1,2.99,07/13/19 20:41,"508 Maple St, Austin, TX 73301" -223265,Apple Airpods Headphones,2,150,07/04/19 12:58,"614 1st St, Los Angeles, CA 90001" -223266,Lightning Charging Cable,1,14.95,07/14/19 15:27,"850 12th St, Seattle, WA 98101" -223267,Lightning Charging Cable,1,14.95,07/22/19 00:42,"309 Forest St, Los Angeles, CA 90001" -223268,AAA Batteries (4-pack),1,2.99,07/10/19 08:47,"771 Elm St, Seattle, WA 98101" -223269,iPhone,1,700,07/05/19 20:28,"207 Church St, Portland, OR 97035" -223270,USB-C Charging Cable,1,11.95,07/24/19 20:51,"324 Lake St, New York City, NY 10001" -223271,AA Batteries (4-pack),2,3.84,07/13/19 21:54,"980 Maple St, Los Angeles, CA 90001" -223272,AA Batteries (4-pack),1,3.84,07/05/19 12:43,"327 Park St, San Francisco, CA 94016" -223273,iPhone,1,700,07/27/19 20:47,"53 Lake St, Los Angeles, CA 90001" -223274,USB-C Charging Cable,1,11.95,07/20/19 21:18,"196 Cherry St, Los Angeles, CA 90001" -223275,Lightning Charging Cable,1,14.95,07/29/19 09:26,"221 Hill St, New York City, NY 10001" -223276,USB-C Charging Cable,1,11.95,07/29/19 12:26,"25 North St, Los Angeles, CA 90001" -223277,34in Ultrawide Monitor,1,379.99,07/09/19 12:18,"610 14th St, Atlanta, GA 30301" -223278,AA Batteries (4-pack),1,3.84,07/03/19 19:11,"914 Cedar St, San Francisco, CA 94016" -223279,AAA Batteries (4-pack),1,2.99,07/15/19 13:20,"470 Johnson St, Atlanta, GA 30301" -223280,AAA Batteries (4-pack),2,2.99,07/18/19 15:32,"310 2nd St, San Francisco, CA 94016" -223281,USB-C Charging Cable,1,11.95,07/15/19 10:23,"916 North St, New York City, NY 10001" -223282,Lightning Charging Cable,1,14.95,07/16/19 11:42,"117 Center St, San Francisco, CA 94016" -223283,27in FHD Monitor,1,149.99,07/05/19 23:40,"313 10th St, New York City, NY 10001" -223284,AA Batteries (4-pack),1,3.84,07/08/19 18:05,"558 Maple St, San Francisco, CA 94016" -223285,Lightning Charging Cable,1,14.95,07/30/19 18:33,"222 Walnut St, New York City, NY 10001" -223286,AAA Batteries (4-pack),2,2.99,07/03/19 14:47,"44 9th St, Seattle, WA 98101" -223287,AA Batteries (4-pack),1,3.84,07/09/19 12:18,"942 Lake St, Boston, MA 02215" -223288,AAA Batteries (4-pack),1,2.99,07/10/19 10:28,"751 Washington St, Portland, OR 97035" -223289,AA Batteries (4-pack),1,3.84,07/03/19 13:50,"607 Cedar St, Boston, MA 02215" -223290,AA Batteries (4-pack),1,3.84,07/15/19 20:16,"692 Forest St, Portland, OR 97035" -223291,AAA Batteries (4-pack),1,2.99,07/22/19 15:35,"519 Main St, Los Angeles, CA 90001" -223292,USB-C Charging Cable,1,11.95,07/06/19 14:53,"626 Cherry St, Los Angeles, CA 90001" -223293,Flatscreen TV,1,300,07/26/19 18:41,"72 Lakeview St, San Francisco, CA 94016" -223294,USB-C Charging Cable,1,11.95,07/07/19 17:16,"687 Lake St, San Francisco, CA 94016" -223295,AAA Batteries (4-pack),2,2.99,07/20/19 15:06,"441 Pine St, Los Angeles, CA 90001" -223296,Vareebadd Phone,1,400,07/06/19 16:07,"47 Chestnut St, San Francisco, CA 94016" -223297,Apple Airpods Headphones,1,150,07/28/19 10:38,"387 North St, Los Angeles, CA 90001" -223298,Wired Headphones,1,11.99,07/24/19 21:03,"665 9th St, San Francisco, CA 94016" -223299,AAA Batteries (4-pack),3,2.99,07/09/19 21:03,"936 Washington St, Portland, OR 97035" -223300,Lightning Charging Cable,1,14.95,07/25/19 13:42,"97 Madison St, Seattle, WA 98101" -223301,Lightning Charging Cable,2,14.95,07/09/19 11:52,"106 Adams St, Boston, MA 02215" -223302,USB-C Charging Cable,2,11.95,07/05/19 18:42,"995 1st St, New York City, NY 10001" -223303,Lightning Charging Cable,1,14.95,07/01/19 13:03,"956 Adams St, Los Angeles, CA 90001" -223304,Apple Airpods Headphones,1,150,07/02/19 14:03,"898 Forest St, Seattle, WA 98101" -223305,Vareebadd Phone,1,400,07/16/19 14:09,"976 Sunset St, San Francisco, CA 94016" -223306,AAA Batteries (4-pack),2,2.99,07/13/19 19:14,"672 Johnson St, Atlanta, GA 30301" -223307,iPhone,1,700,07/22/19 21:58,"685 7th St, San Francisco, CA 94016" -223308,AA Batteries (4-pack),1,3.84,07/25/19 10:44,"454 Church St, Los Angeles, CA 90001" -223309,USB-C Charging Cable,1,11.95,07/09/19 11:27,"464 Elm St, San Francisco, CA 94016" -223310,LG Washing Machine,1,600.0,07/26/19 19:55,"853 Sunset St, San Francisco, CA 94016" -223311,AAA Batteries (4-pack),2,2.99,07/30/19 17:26,"538 Willow St, Portland, ME 04101" -223312,Apple Airpods Headphones,1,150,07/06/19 10:33,"797 Johnson St, Los Angeles, CA 90001" -223313,Vareebadd Phone,1,400,07/30/19 18:52,"993 Ridge St, Seattle, WA 98101" -223314,Lightning Charging Cable,1,14.95,07/26/19 13:09,"253 Lake St, Portland, OR 97035" -223315,Lightning Charging Cable,1,14.95,07/01/19 22:58,"586 Pine St, Seattle, WA 98101" -223316,Wired Headphones,1,11.99,07/08/19 11:34,"869 Adams St, San Francisco, CA 94016" -223317,USB-C Charging Cable,1,11.95,07/05/19 22:36,"713 Adams St, New York City, NY 10001" -223318,Wired Headphones,1,11.99,07/18/19 17:18,"204 Johnson St, San Francisco, CA 94016" -223319,Apple Airpods Headphones,1,150,07/27/19 23:05,"735 River St, Dallas, TX 75001" -223320,AA Batteries (4-pack),1,3.84,07/12/19 20:14,"660 Sunset St, Boston, MA 02215" -223321,Vareebadd Phone,1,400,07/21/19 10:13,"863 Lincoln St, San Francisco, CA 94016" -223321,USB-C Charging Cable,1,11.95,07/21/19 10:13,"863 Lincoln St, San Francisco, CA 94016" -223322,Bose SoundSport Headphones,1,99.99,07/28/19 20:11,"873 Dogwood St, Dallas, TX 75001" -223323,Wired Headphones,2,11.99,07/22/19 00:22,"6 Park St, Portland, OR 97035" -223324,27in FHD Monitor,1,149.99,07/20/19 21:50,"16 Spruce St, San Francisco, CA 94016" -223325,USB-C Charging Cable,2,11.95,07/22/19 12:17,"342 Willow St, Atlanta, GA 30301" -223326,iPhone,1,700,07/23/19 10:05,"837 7th St, Boston, MA 02215" -223326,20in Monitor,1,109.99,07/23/19 10:05,"837 7th St, Boston, MA 02215" -223327,AAA Batteries (4-pack),1,2.99,07/18/19 21:04,"201 Willow St, Los Angeles, CA 90001" -223328,Wired Headphones,1,11.99,07/31/19 10:27,"246 Hickory St, San Francisco, CA 94016" -223329,Lightning Charging Cable,1,14.95,07/11/19 21:59,"189 7th St, Boston, MA 02215" -223330,USB-C Charging Cable,1,11.95,07/23/19 14:19,"452 Hill St, Portland, OR 97035" -223331,AAA Batteries (4-pack),1,2.99,07/20/19 12:32,"174 Highland St, Dallas, TX 75001" -223332,Lightning Charging Cable,1,14.95,07/27/19 08:53,"748 Center St, Portland, OR 97035" -223333,USB-C Charging Cable,1,11.95,07/24/19 14:57,"925 Highland St, Boston, MA 02215" -223334,20in Monitor,1,109.99,07/01/19 23:39,"92 River St, San Francisco, CA 94016" -223335,Bose SoundSport Headphones,1,99.99,07/05/19 01:14,"227 Highland St, New York City, NY 10001" -223336,Wired Headphones,1,11.99,07/09/19 12:35,"848 Spruce St, Boston, MA 02215" -223337,AA Batteries (4-pack),1,3.84,07/15/19 17:55,"623 Lake St, Los Angeles, CA 90001" -223338,Google Phone,1,600,07/17/19 11:23,"887 2nd St, San Francisco, CA 94016" -223339,USB-C Charging Cable,1,11.95,07/07/19 10:07,"42 10th St, Boston, MA 02215" -223340,Apple Airpods Headphones,1,150,07/27/19 11:09,"92 Willow St, San Francisco, CA 94016" -223341,AA Batteries (4-pack),1,3.84,07/24/19 13:24,"716 Walnut St, Portland, OR 97035" -223342,Bose SoundSport Headphones,1,99.99,07/01/19 21:36,"71 River St, San Francisco, CA 94016" -223343,AAA Batteries (4-pack),1,2.99,07/18/19 13:52,"661 Ridge St, Los Angeles, CA 90001" -223344,34in Ultrawide Monitor,1,379.99,07/02/19 18:31,"765 Dogwood St, San Francisco, CA 94016" -223345,AA Batteries (4-pack),1,3.84,07/07/19 21:52,"796 9th St, Austin, TX 73301" -223346,AAA Batteries (4-pack),1,2.99,07/24/19 11:51,"822 Lake St, Boston, MA 02215" -223347,Vareebadd Phone,1,400,07/08/19 21:46,"432 Elm St, Portland, OR 97035" -223348,Apple Airpods Headphones,1,150,07/15/19 19:17,"615 10th St, Austin, TX 73301" -223349,Bose SoundSport Headphones,1,99.99,07/14/19 18:45,"851 Washington St, Boston, MA 02215" -223350,AA Batteries (4-pack),2,3.84,07/24/19 00:43,"959 Jefferson St, Boston, MA 02215" -223351,Wired Headphones,1,11.99,07/06/19 12:12,"199 Chestnut St, Los Angeles, CA 90001" -223352,Lightning Charging Cable,1,14.95,07/02/19 15:22,"592 Park St, Seattle, WA 98101" -223353,iPhone,1,700,07/26/19 10:12,"154 Center St, New York City, NY 10001" -223353,Apple Airpods Headphones,1,150,07/26/19 10:12,"154 Center St, New York City, NY 10001" -223354,USB-C Charging Cable,1,11.95,07/09/19 09:02,"942 Lake St, Boston, MA 02215" -223355,LG Dryer,1,600.0,07/24/19 20:24,"972 Wilson St, Seattle, WA 98101" -223356,27in FHD Monitor,1,149.99,07/24/19 11:39,"540 Lakeview St, Los Angeles, CA 90001" -223357,Wired Headphones,1,11.99,07/30/19 15:40,"188 6th St, New York City, NY 10001" -223358,Bose SoundSport Headphones,1,99.99,07/17/19 17:38,"237 5th St, Seattle, WA 98101" -223359,Apple Airpods Headphones,1,150,07/03/19 10:11,"135 8th St, Dallas, TX 75001" -223360,Bose SoundSport Headphones,1,99.99,07/03/19 15:10,"627 Lincoln St, San Francisco, CA 94016" -223361,AA Batteries (4-pack),2,3.84,07/13/19 17:47,"502 Lincoln St, New York City, NY 10001" -223362,Apple Airpods Headphones,1,150,07/26/19 14:01,"423 Cedar St, Atlanta, GA 30301" -223363,Bose SoundSport Headphones,1,99.99,07/27/19 08:59,"206 Wilson St, Dallas, TX 75001" -223364,27in 4K Gaming Monitor,1,389.99,07/26/19 12:59,"13 Cedar St, Los Angeles, CA 90001" -223365,27in FHD Monitor,1,149.99,07/27/19 22:11,"486 14th St, Los Angeles, CA 90001" -223366,Bose SoundSport Headphones,1,99.99,07/16/19 17:31,"978 Maple St, Boston, MA 02215" -223367,USB-C Charging Cable,1,11.95,07/30/19 09:59,"149 West St, New York City, NY 10001" -223368,20in Monitor,1,109.99,07/27/19 17:33,"324 Maple St, Portland, OR 97035" -223369,34in Ultrawide Monitor,1,379.99,07/12/19 10:00,"753 Sunset St, Los Angeles, CA 90001" -223370,AA Batteries (4-pack),1,3.84,07/24/19 21:03,"353 Cedar St, New York City, NY 10001" -223371,34in Ultrawide Monitor,1,379.99,07/18/19 20:39,"632 Walnut St, San Francisco, CA 94016" -223372,Bose SoundSport Headphones,1,99.99,07/03/19 11:46,"775 Walnut St, Dallas, TX 75001" -223373,USB-C Charging Cable,1,11.95,07/06/19 16:47,"602 North St, San Francisco, CA 94016" -223373,Macbook Pro Laptop,1,1700,07/06/19 16:47,"602 North St, San Francisco, CA 94016" -223374,AA Batteries (4-pack),2,3.84,07/01/19 08:08,"470 Ridge St, Los Angeles, CA 90001" -223375,Apple Airpods Headphones,1,150,07/26/19 00:25,"857 12th St, New York City, NY 10001" -223376,Bose SoundSport Headphones,1,99.99,07/10/19 23:30,"31 Johnson St, Los Angeles, CA 90001" -223377,Flatscreen TV,1,300,07/08/19 06:54,"245 8th St, Portland, OR 97035" -223378,27in 4K Gaming Monitor,1,389.99,07/23/19 08:57,"792 Johnson St, Atlanta, GA 30301" -223379,Bose SoundSport Headphones,1,99.99,07/27/19 10:11,"562 Walnut St, New York City, NY 10001" -223380,Google Phone,1,600,07/16/19 09:52,"311 13th St, Boston, MA 02215" -223381,AAA Batteries (4-pack),2,2.99,07/11/19 17:41,"226 4th St, San Francisco, CA 94016" -223382,Wired Headphones,1,11.99,07/10/19 17:20,"775 Jackson St, Los Angeles, CA 90001" -223383,27in FHD Monitor,1,149.99,07/16/19 15:49,"788 Pine St, Los Angeles, CA 90001" -223384,Google Phone,1,600,07/22/19 11:15,"39 Ridge St, San Francisco, CA 94016" -223385,Bose SoundSport Headphones,1,99.99,07/24/19 11:03,"888 Main St, Los Angeles, CA 90001" -223386,Macbook Pro Laptop,1,1700,07/13/19 18:05,"881 South St, Dallas, TX 75001" -223387,Wired Headphones,1,11.99,07/10/19 22:18,"267 Washington St, New York City, NY 10001" -223388,27in 4K Gaming Monitor,1,389.99,07/21/19 20:14,"761 Chestnut St, Dallas, TX 75001" -223389,Wired Headphones,1,11.99,07/21/19 19:38,"34 1st St, Los Angeles, CA 90001" -223390,20in Monitor,1,109.99,07/31/19 17:27,"345 Lakeview St, Atlanta, GA 30301" -223391,34in Ultrawide Monitor,1,379.99,07/27/19 13:27,"194 Lincoln St, Boston, MA 02215" -223392,USB-C Charging Cable,2,11.95,07/19/19 08:58,"861 Spruce St, Boston, MA 02215" -223393,USB-C Charging Cable,1,11.95,07/05/19 19:25,"458 Spruce St, San Francisco, CA 94016" -223394,AA Batteries (4-pack),1,3.84,07/06/19 17:52,"830 Ridge St, Portland, OR 97035" -223395,AAA Batteries (4-pack),2,2.99,07/03/19 12:45,"495 Lakeview St, San Francisco, CA 94016" -223396,27in 4K Gaming Monitor,1,389.99,07/19/19 10:30,"621 Lakeview St, New York City, NY 10001" -223397,Google Phone,1,600,07/01/19 17:06,"720 Cedar St, Los Angeles, CA 90001" -223398,AA Batteries (4-pack),1,3.84,07/11/19 20:16,"900 Main St, New York City, NY 10001" -223399,Apple Airpods Headphones,1,150,07/12/19 16:35,"624 Chestnut St, Boston, MA 02215" -223400,Wired Headphones,1,11.99,07/06/19 01:51,"189 Lincoln St, San Francisco, CA 94016" -223401,AAA Batteries (4-pack),1,2.99,07/27/19 00:10,"173 12th St, New York City, NY 10001" -223402,Lightning Charging Cable,1,14.95,07/31/19 00:44,"414 Lakeview St, Portland, OR 97035" -223403,Wired Headphones,1,11.99,07/05/19 20:14,"954 5th St, Los Angeles, CA 90001" -223404,34in Ultrawide Monitor,1,379.99,07/24/19 09:54,"399 Park St, New York City, NY 10001" -223405,27in 4K Gaming Monitor,1,389.99,07/17/19 21:58,"603 Dogwood St, Portland, ME 04101" -223406,Apple Airpods Headphones,1,150,07/04/19 19:42,"378 Dogwood St, Portland, ME 04101" -223407,Lightning Charging Cable,1,14.95,07/09/19 01:52,"969 Washington St, Boston, MA 02215" -223408,Macbook Pro Laptop,1,1700,07/17/19 20:11,"796 5th St, Portland, OR 97035" -223409,USB-C Charging Cable,1,11.95,07/06/19 14:10,"699 Madison St, Atlanta, GA 30301" -223410,Apple Airpods Headphones,1,150,07/06/19 15:49,"504 8th St, New York City, NY 10001" -223411,27in 4K Gaming Monitor,1,389.99,07/12/19 19:15,"935 11th St, Portland, OR 97035" -223412,34in Ultrawide Monitor,1,379.99,07/01/19 22:04,"353 13th St, Boston, MA 02215" -223413,Wired Headphones,1,11.99,07/30/19 10:54,"140 Jefferson St, New York City, NY 10001" -223414,AAA Batteries (4-pack),2,2.99,07/31/19 13:20,"917 South St, Dallas, TX 75001" -223415,AA Batteries (4-pack),1,3.84,07/26/19 10:19,"977 Sunset St, Los Angeles, CA 90001" -223416,20in Monitor,1,109.99,07/21/19 16:22,"75 Dogwood St, San Francisco, CA 94016" -223417,27in FHD Monitor,1,149.99,07/13/19 18:03,"238 River St, San Francisco, CA 94016" -223418,AAA Batteries (4-pack),1,2.99,07/30/19 11:30,"265 Main St, New York City, NY 10001" -223419,AA Batteries (4-pack),3,3.84,07/12/19 09:02,"892 Hickory St, Seattle, WA 98101" -223420,Lightning Charging Cable,1,14.95,07/30/19 12:17,"440 River St, Atlanta, GA 30301" -223421,AAA Batteries (4-pack),1,2.99,07/31/19 07:18,"340 Adams St, New York City, NY 10001" -223422,Wired Headphones,1,11.99,07/09/19 16:49,"836 Center St, Portland, OR 97035" -223423,Bose SoundSport Headphones,1,99.99,07/01/19 19:50,"154 Sunset St, Los Angeles, CA 90001" -223424,AA Batteries (4-pack),1,3.84,07/13/19 19:34,"552 Pine St, Boston, MA 02215" -223425,USB-C Charging Cable,1,11.95,07/22/19 15:18,"619 Cherry St, San Francisco, CA 94016" -223426,Macbook Pro Laptop,1,1700,07/18/19 08:40,"103 Park St, Boston, MA 02215" -223427,Apple Airpods Headphones,1,150,07/25/19 16:19,"136 11th St, San Francisco, CA 94016" -223428,iPhone,1,700,07/18/19 22:59,"883 Dogwood St, New York City, NY 10001" -223429,AAA Batteries (4-pack),1,2.99,07/19/19 19:47,"607 Pine St, Los Angeles, CA 90001" -223430,AAA Batteries (4-pack),2,2.99,07/10/19 12:45,"976 14th St, Los Angeles, CA 90001" -223431,Lightning Charging Cable,1,14.95,07/21/19 10:54,"836 Ridge St, New York City, NY 10001" -223432,Apple Airpods Headphones,1,150,07/24/19 08:08,"967 Pine St, Portland, ME 04101" -223433,Lightning Charging Cable,1,14.95,07/13/19 12:56,"39 2nd St, New York City, NY 10001" -223434,Lightning Charging Cable,1,14.95,07/24/19 15:30,"414 Washington St, San Francisco, CA 94016" -223435,20in Monitor,1,109.99,07/05/19 12:46,"630 North St, Dallas, TX 75001" -223436,Apple Airpods Headphones,1,150,07/13/19 22:33,"950 Cedar St, Portland, OR 97035" -223437,AAA Batteries (4-pack),2,2.99,07/31/19 22:04,"786 Highland St, Boston, MA 02215" -223438,LG Washing Machine,1,600.0,07/17/19 01:27,"675 Chestnut St, Austin, TX 73301" -223439,Apple Airpods Headphones,1,150,07/09/19 19:14,"184 Lincoln St, San Francisco, CA 94016" -223440,USB-C Charging Cable,1,11.95,07/26/19 01:00,"891 13th St, Seattle, WA 98101" -223441,Lightning Charging Cable,1,14.95,07/27/19 17:21,"224 Walnut St, Los Angeles, CA 90001" -223442,AAA Batteries (4-pack),2,2.99,07/02/19 12:31,"691 Church St, Seattle, WA 98101" -223443,iPhone,1,700,07/29/19 20:02,"918 Elm St, New York City, NY 10001" -223444,USB-C Charging Cable,1,11.95,07/04/19 08:11,"456 Cherry St, San Francisco, CA 94016" -223445,27in FHD Monitor,1,149.99,07/20/19 17:12,"16 Center St, New York City, NY 10001" -223446,Wired Headphones,1,11.99,07/20/19 11:27,"621 Lake St, Portland, ME 04101" -223447,Macbook Pro Laptop,1,1700,07/17/19 19:20,"36 Lake St, Seattle, WA 98101" -223448,Wired Headphones,1,11.99,07/27/19 05:50,"57 Walnut St, Los Angeles, CA 90001" -223449,Wired Headphones,1,11.99,07/09/19 12:54,"50 11th St, New York City, NY 10001" -223450,AAA Batteries (4-pack),1,2.99,07/20/19 16:09,"276 South St, San Francisco, CA 94016" -223451,USB-C Charging Cable,1,11.95,07/24/19 17:44,"647 Spruce St, Atlanta, GA 30301" -223452,AA Batteries (4-pack),1,3.84,07/15/19 09:45,"908 Washington St, San Francisco, CA 94016" -223453,Wired Headphones,1,11.99,07/12/19 12:39,"145 Hickory St, Los Angeles, CA 90001" -223454,Wired Headphones,1,11.99,07/22/19 14:45,"99 Park St, Los Angeles, CA 90001" -223455,Bose SoundSport Headphones,1,99.99,07/28/19 07:43,"477 Lake St, Seattle, WA 98101" -223456,Bose SoundSport Headphones,1,99.99,07/15/19 12:11,"214 Jefferson St, San Francisco, CA 94016" -223457,Bose SoundSport Headphones,1,99.99,07/17/19 09:05,"334 Madison St, San Francisco, CA 94016" -223458,LG Washing Machine,1,600.0,07/04/19 13:25,"615 Wilson St, Atlanta, GA 30301" -223459,Flatscreen TV,1,300,07/19/19 12:47,"830 Main St, New York City, NY 10001" -223460,Wired Headphones,1,11.99,07/10/19 08:22,"800 Johnson St, San Francisco, CA 94016" -223461,AAA Batteries (4-pack),1,2.99,07/23/19 14:09,"480 South St, San Francisco, CA 94016" -223462,AA Batteries (4-pack),1,3.84,07/10/19 22:40,"219 Johnson St, San Francisco, CA 94016" -223463,Wired Headphones,1,11.99,07/17/19 23:59,"636 Wilson St, Seattle, WA 98101" -223464,Google Phone,1,600,07/25/19 20:58,"951 North St, Seattle, WA 98101" -223464,USB-C Charging Cable,1,11.95,07/25/19 20:58,"951 North St, Seattle, WA 98101" -223465,USB-C Charging Cable,1,11.95,07/05/19 01:12,"510 South St, New York City, NY 10001" -223466,27in FHD Monitor,1,149.99,07/10/19 16:09,"130 Jackson St, San Francisco, CA 94016" -223467,AA Batteries (4-pack),1,3.84,07/05/19 16:58,"553 Hill St, Boston, MA 02215" -223468,AAA Batteries (4-pack),1,2.99,07/07/19 11:22,"63 Cedar St, Boston, MA 02215" -223469,Flatscreen TV,1,300,07/15/19 09:34,"814 10th St, San Francisco, CA 94016" -223470,Bose SoundSport Headphones,1,99.99,07/27/19 21:32,"320 4th St, New York City, NY 10001" -223471,AAA Batteries (4-pack),1,2.99,07/24/19 11:11,"40 Wilson St, Dallas, TX 75001" -223472,AA Batteries (4-pack),1,3.84,07/13/19 11:20,"776 Pine St, Boston, MA 02215" -223473,27in FHD Monitor,1,149.99,07/11/19 17:18,"414 12th St, New York City, NY 10001" -223474,Bose SoundSport Headphones,1,99.99,07/18/19 18:34,"449 Walnut St, Dallas, TX 75001" -223475,Apple Airpods Headphones,1,150,07/21/19 18:11,"176 Washington St, Boston, MA 02215" -223476,Lightning Charging Cable,1,14.95,07/07/19 13:01,"182 2nd St, New York City, NY 10001" -223477,20in Monitor,1,109.99,07/09/19 17:10,"672 Walnut St, San Francisco, CA 94016" -223478,AAA Batteries (4-pack),1,2.99,07/07/19 18:04,"3 Elm St, Seattle, WA 98101" -223479,Google Phone,1,600,07/08/19 21:15,"980 Church St, Dallas, TX 75001" -223480,Bose SoundSport Headphones,1,99.99,07/07/19 08:27,"862 Hill St, Dallas, TX 75001" -223481,34in Ultrawide Monitor,1,379.99,07/19/19 15:37,"12 9th St, Los Angeles, CA 90001" -223482,Apple Airpods Headphones,1,150,07/20/19 12:29,"919 Sunset St, Boston, MA 02215" -223483,Wired Headphones,1,11.99,07/30/19 15:57,"464 1st St, San Francisco, CA 94016" -223484,27in FHD Monitor,1,149.99,07/26/19 20:39,"807 6th St, Los Angeles, CA 90001" -223485,AAA Batteries (4-pack),3,2.99,07/10/19 12:04,"500 Jackson St, San Francisco, CA 94016" -223486,Bose SoundSport Headphones,1,99.99,07/30/19 13:06,"450 Hill St, Los Angeles, CA 90001" -223487,Bose SoundSport Headphones,1,99.99,07/09/19 12:47,"239 7th St, Seattle, WA 98101" -223488,USB-C Charging Cable,1,11.95,07/08/19 13:33,"441 Forest St, Los Angeles, CA 90001" -,,,,, -223489,AAA Batteries (4-pack),2,2.99,07/20/19 06:53,"504 Lincoln St, Los Angeles, CA 90001" -223490,LG Washing Machine,1,600.0,07/29/19 11:56,"947 Lakeview St, New York City, NY 10001" -223491,Lightning Charging Cable,1,14.95,07/18/19 12:19,"68 2nd St, San Francisco, CA 94016" -223492,34in Ultrawide Monitor,1,379.99,07/02/19 18:52,"326 Hickory St, Seattle, WA 98101" -223493,USB-C Charging Cable,1,11.95,07/19/19 13:43,"291 Johnson St, Seattle, WA 98101" -223494,AA Batteries (4-pack),1,3.84,07/22/19 18:28,"283 Spruce St, San Francisco, CA 94016" -223495,AA Batteries (4-pack),1,3.84,07/04/19 16:44,"811 Wilson St, Boston, MA 02215" -223496,Apple Airpods Headphones,1,150,07/14/19 14:55,"7 14th St, San Francisco, CA 94016" -223497,Flatscreen TV,1,300,07/26/19 12:40,"223 Lakeview St, New York City, NY 10001" -223498,27in FHD Monitor,1,149.99,07/16/19 21:43,"84 Cherry St, Atlanta, GA 30301" -223499,27in FHD Monitor,1,149.99,07/30/19 09:33,"561 13th St, New York City, NY 10001" -223500,USB-C Charging Cable,1,11.95,07/26/19 21:41,"452 Lincoln St, Los Angeles, CA 90001" -223501,Lightning Charging Cable,2,14.95,07/08/19 19:11,"600 Pine St, Seattle, WA 98101" -223502,AAA Batteries (4-pack),5,2.99,07/06/19 19:43,"592 Washington St, Seattle, WA 98101" -223503,AA Batteries (4-pack),1,3.84,07/15/19 23:23,"638 Adams St, New York City, NY 10001" -223504,27in FHD Monitor,1,149.99,07/28/19 16:45,"239 Willow St, San Francisco, CA 94016" -223505,Wired Headphones,1,11.99,07/29/19 15:31,"685 Park St, San Francisco, CA 94016" -223505,AAA Batteries (4-pack),1,2.99,07/29/19 15:31,"685 Park St, San Francisco, CA 94016" -223506,USB-C Charging Cable,1,11.95,07/08/19 19:05,"656 Cedar St, San Francisco, CA 94016" -223507,Flatscreen TV,1,300,07/19/19 18:16,"275 4th St, San Francisco, CA 94016" -223508,Google Phone,1,600,07/29/19 14:43,"492 Main St, Atlanta, GA 30301" -223509,27in 4K Gaming Monitor,1,389.99,07/22/19 08:05,"538 11th St, Los Angeles, CA 90001" -223510,Apple Airpods Headphones,1,150,07/31/19 19:40,"992 Center St, Atlanta, GA 30301" -223511,Lightning Charging Cable,1,14.95,07/05/19 13:11,"104 Cedar St, New York City, NY 10001" -223512,ThinkPad Laptop,1,999.99,07/27/19 21:57,"180 Cedar St, Boston, MA 02215" -223513,USB-C Charging Cable,1,11.95,07/15/19 21:49,"101 Dogwood St, San Francisco, CA 94016" -223514,34in Ultrawide Monitor,1,379.99,07/25/19 15:20,"513 Hill St, New York City, NY 10001" -223515,27in FHD Monitor,1,149.99,07/15/19 17:32,"944 Walnut St, Portland, OR 97035" -223516,Lightning Charging Cable,1,14.95,07/04/19 20:17,"25 6th St, Boston, MA 02215" -223517,Flatscreen TV,1,300,07/24/19 15:22,"804 Park St, Boston, MA 02215" -223518,AA Batteries (4-pack),1,3.84,07/21/19 12:38,"985 12th St, San Francisco, CA 94016" -223519,27in FHD Monitor,1,149.99,07/20/19 19:18,"393 North St, San Francisco, CA 94016" -223520,Apple Airpods Headphones,1,150,07/23/19 19:58,"406 Hill St, Los Angeles, CA 90001" -223521,Lightning Charging Cable,2,14.95,07/15/19 17:13,"162 Johnson St, San Francisco, CA 94016" -223522,AAA Batteries (4-pack),3,2.99,07/26/19 21:19,"72 North St, Dallas, TX 75001" -223523,USB-C Charging Cable,1,11.95,07/24/19 01:04,"355 Sunset St, Austin, TX 73301" -223524,Flatscreen TV,1,300,07/06/19 08:52,"196 West St, Boston, MA 02215" -223525,Wired Headphones,1,11.99,07/19/19 20:12,"121 12th St, Los Angeles, CA 90001" -223526,Apple Airpods Headphones,1,150,07/18/19 17:17,"41 Willow St, Boston, MA 02215" -223526,Bose SoundSport Headphones,1,99.99,07/18/19 17:17,"41 Willow St, Boston, MA 02215" -223527,AAA Batteries (4-pack),1,2.99,07/13/19 02:36,"289 Meadow St, San Francisco, CA 94016" -223528,Wired Headphones,1,11.99,07/02/19 19:25,"757 2nd St, Boston, MA 02215" -223529,AA Batteries (4-pack),2,3.84,07/11/19 15:02,"582 4th St, New York City, NY 10001" -223530,Apple Airpods Headphones,1,150,07/18/19 19:41,"119 Church St, Los Angeles, CA 90001" -223531,Bose SoundSport Headphones,1,99.99,07/20/19 07:24,"694 Ridge St, Los Angeles, CA 90001" -223532,Bose SoundSport Headphones,1,99.99,07/18/19 05:50,"470 Lincoln St, Boston, MA 02215" -223533,Bose SoundSport Headphones,1,99.99,07/01/19 23:07,"644 Lakeview St, Seattle, WA 98101" -223533,AAA Batteries (4-pack),1,2.99,07/01/19 23:07,"644 Lakeview St, Seattle, WA 98101" -223534,Apple Airpods Headphones,1,150,07/16/19 21:29,"479 10th St, Portland, OR 97035" -223535,27in 4K Gaming Monitor,1,389.99,07/27/19 19:12,"773 7th St, Austin, TX 73301" -223536,USB-C Charging Cable,1,11.95,07/09/19 18:23,"303 Hickory St, San Francisco, CA 94016" -223537,AA Batteries (4-pack),1,3.84,07/10/19 21:56,"515 7th St, Portland, OR 97035" -223538,Bose SoundSport Headphones,1,99.99,07/28/19 21:43,"294 Meadow St, Los Angeles, CA 90001" -223539,Wired Headphones,1,11.99,07/16/19 17:01,"892 Forest St, Los Angeles, CA 90001" -223540,AA Batteries (4-pack),1,3.84,07/01/19 14:29,"385 Ridge St, San Francisco, CA 94016" -223541,Flatscreen TV,1,300,07/29/19 21:09,"172 7th St, New York City, NY 10001" -223542,Apple Airpods Headphones,1,150,07/02/19 20:01,"532 Cherry St, New York City, NY 10001" -223543,AAA Batteries (4-pack),1,2.99,07/08/19 18:32,"799 Sunset St, New York City, NY 10001" -223544,Lightning Charging Cable,1,14.95,07/30/19 20:24,"892 7th St, Los Angeles, CA 90001" -223545,Wired Headphones,2,11.99,07/23/19 17:47,"51 Pine St, Atlanta, GA 30301" -223546,USB-C Charging Cable,1,11.95,07/23/19 23:24,"530 North St, San Francisco, CA 94016" -223547,Apple Airpods Headphones,1,150,07/14/19 10:36,"791 Lake St, San Francisco, CA 94016" -223548,Lightning Charging Cable,1,14.95,07/20/19 20:49,"301 North St, Atlanta, GA 30301" -223549,Wired Headphones,2,11.99,07/11/19 22:39,"285 Adams St, San Francisco, CA 94016" -223550,Wired Headphones,1,11.99,07/13/19 09:24,"79 Madison St, Boston, MA 02215" -223551,Apple Airpods Headphones,1,150,07/18/19 09:05,"996 4th St, New York City, NY 10001" -223552,Flatscreen TV,1,300,07/30/19 19:19,"766 Washington St, Boston, MA 02215" -223553,AA Batteries (4-pack),2,3.84,07/15/19 12:04,"840 Highland St, San Francisco, CA 94016" -223554,Flatscreen TV,1,300,07/04/19 16:43,"90 5th St, San Francisco, CA 94016" -223555,AA Batteries (4-pack),1,3.84,07/08/19 12:52,"812 Chestnut St, Dallas, TX 75001" -223556,Apple Airpods Headphones,1,150,07/11/19 11:41,"367 8th St, Boston, MA 02215" -223557,27in FHD Monitor,1,149.99,07/08/19 21:25,"299 4th St, Atlanta, GA 30301" -223558,AA Batteries (4-pack),1,3.84,07/26/19 13:05,"280 Lake St, Dallas, TX 75001" -223559,AA Batteries (4-pack),1,3.84,07/30/19 15:54,"285 9th St, Atlanta, GA 30301" -223560,Wired Headphones,1,11.99,07/28/19 19:15,"673 Hill St, Portland, OR 97035" -,,,,, -223561,Macbook Pro Laptop,1,1700,07/18/19 19:16,"889 4th St, Dallas, TX 75001" -223562,AA Batteries (4-pack),2,3.84,07/24/19 11:41,"986 Lake St, San Francisco, CA 94016" -223563,Wired Headphones,1,11.99,07/06/19 20:06,"653 Meadow St, San Francisco, CA 94016" -223564,27in 4K Gaming Monitor,1,389.99,07/26/19 12:53,"571 10th St, Dallas, TX 75001" -223565,USB-C Charging Cable,1,11.95,07/11/19 12:39,"514 Washington St, Dallas, TX 75001" -223566,USB-C Charging Cable,1,11.95,07/03/19 23:06,"305 Center St, Atlanta, GA 30301" -223567,Apple Airpods Headphones,1,150,07/14/19 11:17,"825 12th St, Portland, ME 04101" -223568,Apple Airpods Headphones,1,150,07/28/19 09:46,"402 2nd St, Seattle, WA 98101" -223569,Lightning Charging Cable,1,14.95,07/30/19 12:07,"712 Jackson St, Dallas, TX 75001" -223570,USB-C Charging Cable,2,11.95,07/27/19 17:54,"52 11th St, San Francisco, CA 94016" -223571,Wired Headphones,1,11.99,07/26/19 23:36,"893 Johnson St, Boston, MA 02215" -223572,Apple Airpods Headphones,1,150,07/11/19 18:37,"665 Forest St, Dallas, TX 75001" -223573,Lightning Charging Cable,1,14.95,07/18/19 09:17,"856 8th St, Dallas, TX 75001" -223574,Lightning Charging Cable,1,14.95,07/02/19 18:24,"915 Wilson St, San Francisco, CA 94016" -223575,27in FHD Monitor,1,149.99,07/27/19 09:15,"436 Hill St, Dallas, TX 75001" -223576,Bose SoundSport Headphones,1,99.99,07/31/19 14:00,"522 Sunset St, San Francisco, CA 94016" -223577,Wired Headphones,1,11.99,07/08/19 17:19,"972 Sunset St, Los Angeles, CA 90001" -223578,Google Phone,1,600,07/26/19 18:37,"589 Adams St, New York City, NY 10001" -223578,USB-C Charging Cable,1,11.95,07/26/19 18:37,"589 Adams St, New York City, NY 10001" -223579,iPhone,1,700,07/17/19 01:13,"204 Pine St, Los Angeles, CA 90001" -223579,Lightning Charging Cable,1,14.95,07/17/19 01:13,"204 Pine St, Los Angeles, CA 90001" -223580,Apple Airpods Headphones,1,150,07/21/19 09:19,"405 Jackson St, Seattle, WA 98101" -223581,27in 4K Gaming Monitor,1,389.99,07/19/19 10:19,"466 Cedar St, Austin, TX 73301" -223582,iPhone,1,700,07/15/19 14:26,"963 Church St, New York City, NY 10001" -223583,Lightning Charging Cable,1,14.95,07/31/19 11:32,"247 Adams St, Los Angeles, CA 90001" -223584,Macbook Pro Laptop,1,1700,07/15/19 10:22,"661 Dogwood St, Seattle, WA 98101" -223585,Lightning Charging Cable,1,14.95,07/17/19 09:03,"26 Adams St, San Francisco, CA 94016" -223585,20in Monitor,1,109.99,07/17/19 09:03,"26 Adams St, San Francisco, CA 94016" -223586,ThinkPad Laptop,1,999.99,07/26/19 09:15,"120 West St, Boston, MA 02215" -223587,USB-C Charging Cable,1,11.95,07/02/19 12:30,"836 Meadow St, San Francisco, CA 94016" -223588,AA Batteries (4-pack),1,3.84,07/08/19 17:08,"851 Wilson St, Boston, MA 02215" -223589,AAA Batteries (4-pack),1,2.99,07/29/19 16:10,"829 Sunset St, Austin, TX 73301" -223590,20in Monitor,1,109.99,07/17/19 06:19,"139 Center St, Dallas, TX 75001" -223591,27in FHD Monitor,1,149.99,07/24/19 20:12,"700 Adams St, Seattle, WA 98101" -223592,34in Ultrawide Monitor,1,379.99,07/02/19 16:31,"271 10th St, Dallas, TX 75001" -223593,AA Batteries (4-pack),1,3.84,07/04/19 14:01,"714 River St, Los Angeles, CA 90001" -223594,20in Monitor,1,109.99,07/13/19 15:17,"339 Lakeview St, Atlanta, GA 30301" -223595,AAA Batteries (4-pack),1,2.99,07/01/19 07:14,"245 Lake St, New York City, NY 10001" -223596,Wired Headphones,1,11.99,07/18/19 10:18,"473 Main St, Dallas, TX 75001" -223597,Apple Airpods Headphones,1,150,07/07/19 10:12,"529 13th St, Seattle, WA 98101" -223598,20in Monitor,1,109.99,07/23/19 15:04,"552 13th St, Boston, MA 02215" -223599,USB-C Charging Cable,1,11.95,07/02/19 12:33,"45 10th St, Los Angeles, CA 90001" -223600,Apple Airpods Headphones,1,150,07/03/19 17:39,"211 5th St, New York City, NY 10001" -223601,Wired Headphones,1,11.99,07/25/19 08:37,"42 9th St, Los Angeles, CA 90001" -223602,20in Monitor,1,109.99,07/13/19 18:56,"778 Hickory St, Los Angeles, CA 90001" -223603,Lightning Charging Cable,1,14.95,07/17/19 08:14,"696 South St, Seattle, WA 98101" -223604,Lightning Charging Cable,1,14.95,07/06/19 21:02,"841 Center St, Los Angeles, CA 90001" -223605,Bose SoundSport Headphones,1,99.99,07/03/19 14:39,"3 9th St, Boston, MA 02215" -223606,Bose SoundSport Headphones,1,99.99,07/03/19 16:47,"387 6th St, Atlanta, GA 30301" -223607,27in FHD Monitor,1,149.99,07/10/19 15:37,"230 Madison St, San Francisco, CA 94016" -223608,27in 4K Gaming Monitor,1,389.99,07/19/19 20:59,"426 14th St, Los Angeles, CA 90001" -223609,27in FHD Monitor,1,149.99,07/07/19 13:11,"244 Madison St, San Francisco, CA 94016" -223610,Apple Airpods Headphones,1,150,07/29/19 11:44,"45 Hill St, Portland, ME 04101" -223611,Lightning Charging Cable,1,14.95,07/13/19 20:37,"727 Jackson St, Seattle, WA 98101" -223612,Bose SoundSport Headphones,1,99.99,07/31/19 19:57,"547 12th St, Los Angeles, CA 90001" -223613,Lightning Charging Cable,1,14.95,07/02/19 08:16,"734 6th St, New York City, NY 10001" -223614,Bose SoundSport Headphones,1,99.99,07/31/19 13:34,"479 8th St, San Francisco, CA 94016" -223615,USB-C Charging Cable,1,11.95,07/18/19 14:30,"806 Pine St, Portland, OR 97035" -223616,27in 4K Gaming Monitor,1,389.99,07/25/19 10:31,"426 Willow St, San Francisco, CA 94016" -223617,Wired Headphones,1,11.99,07/04/19 10:48,"703 8th St, Atlanta, GA 30301" -223618,Lightning Charging Cable,1,14.95,07/12/19 20:42,"43 Meadow St, San Francisco, CA 94016" -223619,Lightning Charging Cable,1,14.95,07/01/19 20:41,"320 Chestnut St, Austin, TX 73301" -223620,Lightning Charging Cable,1,14.95,07/25/19 23:10,"706 South St, Los Angeles, CA 90001" -223621,27in FHD Monitor,1,149.99,07/02/19 14:04,"343 14th St, San Francisco, CA 94016" -223622,Macbook Pro Laptop,1,1700,07/07/19 20:35,"400 Spruce St, Austin, TX 73301" -223623,AA Batteries (4-pack),1,3.84,07/21/19 17:43,"460 Johnson St, Atlanta, GA 30301" -223624,Google Phone,1,600,07/15/19 18:31,"183 Sunset St, New York City, NY 10001" -223625,Bose SoundSport Headphones,1,99.99,07/29/19 12:57,"672 River St, New York City, NY 10001" -223626,27in 4K Gaming Monitor,1,389.99,07/12/19 14:02,"266 Highland St, San Francisco, CA 94016" -223627,AAA Batteries (4-pack),1,2.99,07/02/19 15:15,"621 6th St, San Francisco, CA 94016" -223628,AA Batteries (4-pack),2,3.84,07/01/19 14:46,"719 Meadow St, New York City, NY 10001" -223629,Wired Headphones,1,11.99,07/31/19 17:17,"248 Wilson St, Portland, OR 97035" -223630,Apple Airpods Headphones,1,150,07/12/19 12:09,"511 14th St, Portland, OR 97035" -223631,Lightning Charging Cable,1,14.95,07/25/19 18:07,"493 6th St, San Francisco, CA 94016" -223632,AAA Batteries (4-pack),2,2.99,07/09/19 17:11,"420 Spruce St, Austin, TX 73301" -223633,Macbook Pro Laptop,1,1700,07/06/19 18:55,"245 Park St, Los Angeles, CA 90001" -223634,Bose SoundSport Headphones,1,99.99,07/09/19 12:31,"695 8th St, Los Angeles, CA 90001" -223635,Wired Headphones,1,11.99,07/25/19 15:03,"887 11th St, Portland, OR 97035" -223636,27in FHD Monitor,1,149.99,07/28/19 14:56,"777 Washington St, Los Angeles, CA 90001" -223637,Bose SoundSport Headphones,1,99.99,07/07/19 17:05,"427 South St, Dallas, TX 75001" -223638,AA Batteries (4-pack),1,3.84,07/18/19 15:39,"752 West St, New York City, NY 10001" -223639,Lightning Charging Cable,1,14.95,07/16/19 09:49,"515 Forest St, Seattle, WA 98101" -223640,iPhone,1,700,07/22/19 06:51,"680 11th St, Boston, MA 02215" -223641,Apple Airpods Headphones,1,150,07/31/19 09:09,"287 Maple St, New York City, NY 10001" -223642,Wired Headphones,1,11.99,07/23/19 21:50,"384 Lincoln St, Austin, TX 73301" -223643,Wired Headphones,1,11.99,07/31/19 13:41,"353 Walnut St, Boston, MA 02215" -223644,ThinkPad Laptop,1,999.99,07/01/19 19:28,"169 Main St, Los Angeles, CA 90001" -223645,27in FHD Monitor,1,149.99,07/25/19 14:59,"426 Church St, Seattle, WA 98101" -223646,Lightning Charging Cable,1,14.95,07/06/19 17:09,"244 Hickory St, Boston, MA 02215" -223647,ThinkPad Laptop,1,999.99,07/10/19 19:58,"831 Washington St, Dallas, TX 75001" -223648,27in FHD Monitor,1,149.99,07/08/19 20:30,"712 Meadow St, Austin, TX 73301" -223649,Bose SoundSport Headphones,1,99.99,07/01/19 07:36,"47 South St, Portland, OR 97035" -223650,AA Batteries (4-pack),1,3.84,07/12/19 17:10,"769 9th St, Atlanta, GA 30301" -223651,AAA Batteries (4-pack),4,2.99,07/27/19 23:55,"666 River St, San Francisco, CA 94016" -223652,AAA Batteries (4-pack),1,2.99,07/26/19 14:13,"71 4th St, Los Angeles, CA 90001" -223653,Bose SoundSport Headphones,1,99.99,07/10/19 10:22,"301 Willow St, Los Angeles, CA 90001" -223654,USB-C Charging Cable,1,11.95,07/05/19 01:10,"96 Elm St, New York City, NY 10001" -223655,Lightning Charging Cable,1,14.95,07/16/19 20:27,"531 Jackson St, Los Angeles, CA 90001" -223656,Bose SoundSport Headphones,1,99.99,07/16/19 17:46,"96 Elm St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -223657,USB-C Charging Cable,1,11.95,07/04/19 15:33,"191 7th St, Boston, MA 02215" -223658,Google Phone,1,600,07/21/19 08:05,"960 West St, Seattle, WA 98101" -223658,USB-C Charging Cable,1,11.95,07/21/19 08:05,"960 West St, Seattle, WA 98101" -223659,Vareebadd Phone,1,400,07/08/19 16:25,"737 Johnson St, Seattle, WA 98101" -223659,USB-C Charging Cable,1,11.95,07/08/19 16:25,"737 Johnson St, Seattle, WA 98101" -223660,Lightning Charging Cable,1,14.95,07/03/19 09:42,"108 Hill St, Los Angeles, CA 90001" -223661,Lightning Charging Cable,1,14.95,07/01/19 09:56,"288 Johnson St, San Francisco, CA 94016" -223662,USB-C Charging Cable,2,11.95,07/14/19 13:36,"707 Hickory St, Los Angeles, CA 90001" -223663,Lightning Charging Cable,1,14.95,07/20/19 09:29,"875 Hill St, Los Angeles, CA 90001" -223664,Lightning Charging Cable,1,14.95,07/29/19 20:26,"817 North St, Boston, MA 02215" -223665,34in Ultrawide Monitor,1,379.99,07/04/19 12:39,"182 Park St, New York City, NY 10001" -223666,AA Batteries (4-pack),1,3.84,07/30/19 09:56,"380 4th St, Portland, OR 97035" -223667,USB-C Charging Cable,1,11.95,07/15/19 16:44,"767 Cherry St, Los Angeles, CA 90001" -223668,USB-C Charging Cable,2,11.95,07/28/19 15:11,"879 Maple St, Austin, TX 73301" -223669,Wired Headphones,1,11.99,07/15/19 18:55,"430 Spruce St, Seattle, WA 98101" -223670,Wired Headphones,1,11.99,07/15/19 03:36,"342 Hickory St, Seattle, WA 98101" -223671,USB-C Charging Cable,1,11.95,07/03/19 07:53,"264 Church St, New York City, NY 10001" -223672,iPhone,1,700,07/07/19 01:05,"92 Jefferson St, Atlanta, GA 30301" -223673,Lightning Charging Cable,1,14.95,07/28/19 19:19,"979 1st St, Seattle, WA 98101" -223674,34in Ultrawide Monitor,1,379.99,07/20/19 12:23,"124 Lincoln St, San Francisco, CA 94016" -223675,27in FHD Monitor,1,149.99,07/19/19 10:11,"258 Hill St, Austin, TX 73301" -223676,AA Batteries (4-pack),3,3.84,07/07/19 22:28,"182 North St, Seattle, WA 98101" -223677,iPhone,1,700,07/28/19 01:50,"38 Jackson St, Atlanta, GA 30301" -223677,Lightning Charging Cable,1,14.95,07/28/19 01:50,"38 Jackson St, Atlanta, GA 30301" -223678,AA Batteries (4-pack),2,3.84,07/04/19 08:26,"179 4th St, Los Angeles, CA 90001" -223679,Google Phone,1,600,07/30/19 16:00,"58 Madison St, San Francisco, CA 94016" -223680,Lightning Charging Cable,1,14.95,07/12/19 12:26,"489 Washington St, Dallas, TX 75001" -223681,AA Batteries (4-pack),3,3.84,07/28/19 14:06,"886 10th St, San Francisco, CA 94016" -223682,USB-C Charging Cable,2,11.95,07/05/19 12:35,"254 Highland St, San Francisco, CA 94016" -223683,Lightning Charging Cable,1,14.95,07/01/19 06:48,"266 5th St, Portland, ME 04101" -223684,Apple Airpods Headphones,1,150,07/05/19 18:06,"615 Park St, Dallas, TX 75001" -223685,Lightning Charging Cable,1,14.95,07/06/19 21:35,"642 Sunset St, New York City, NY 10001" -223686,AAA Batteries (4-pack),2,2.99,07/15/19 11:25,"890 Jackson St, Boston, MA 02215" -223687,AA Batteries (4-pack),1,3.84,07/16/19 12:40,"480 Highland St, Seattle, WA 98101" -223688,AA Batteries (4-pack),1,3.84,07/29/19 12:12,"997 13th St, Seattle, WA 98101" -223689,Bose SoundSport Headphones,1,99.99,07/15/19 11:34,"172 5th St, Boston, MA 02215" -223690,USB-C Charging Cable,1,11.95,07/12/19 11:49,"726 Washington St, Los Angeles, CA 90001" -223691,AAA Batteries (4-pack),1,2.99,07/16/19 12:42,"981 8th St, Los Angeles, CA 90001" -223692,Wired Headphones,1,11.99,07/18/19 02:32,"376 Hill St, San Francisco, CA 94016" -223693,Lightning Charging Cable,1,14.95,07/22/19 14:38,"845 West St, Austin, TX 73301" -223694,AA Batteries (4-pack),2,3.84,07/15/19 16:20,"853 South St, San Francisco, CA 94016" -223695,27in FHD Monitor,2,149.99,07/28/19 20:09,"460 Chestnut St, Seattle, WA 98101" -223695,LG Washing Machine,1,600.0,07/28/19 20:09,"460 Chestnut St, Seattle, WA 98101" -223696,27in FHD Monitor,1,149.99,07/21/19 10:34,"856 Center St, Boston, MA 02215" -223697,AAA Batteries (4-pack),2,2.99,07/20/19 08:54,"214 Hill St, New York City, NY 10001" -223698,AA Batteries (4-pack),1,3.84,07/14/19 18:23,"632 Washington St, Dallas, TX 75001" -223699,Bose SoundSport Headphones,1,99.99,07/14/19 09:54,"28 8th St, Dallas, TX 75001" -223700,USB-C Charging Cable,1,11.95,07/26/19 14:07,"157 2nd St, Portland, OR 97035" -223701,Lightning Charging Cable,1,14.95,07/07/19 21:36,"461 Dogwood St, San Francisco, CA 94016" -223702,USB-C Charging Cable,1,11.95,07/01/19 19:28,"627 Johnson St, Atlanta, GA 30301" -223703,Apple Airpods Headphones,1,150,07/10/19 11:14,"503 Park St, New York City, NY 10001" -223704,AAA Batteries (4-pack),1,2.99,07/23/19 21:21,"98 Lake St, Dallas, TX 75001" -223705,USB-C Charging Cable,1,11.95,07/15/19 15:48,"108 Madison St, Austin, TX 73301" -223706,Bose SoundSport Headphones,1,99.99,07/14/19 19:50,"971 Cherry St, New York City, NY 10001" -223707,Lightning Charging Cable,1,14.95,07/22/19 16:19,"731 11th St, New York City, NY 10001" -223708,34in Ultrawide Monitor,1,379.99,07/14/19 20:45,"586 Hill St, San Francisco, CA 94016" -223709,USB-C Charging Cable,1,11.95,07/12/19 21:25,"270 Church St, Boston, MA 02215" -223710,Bose SoundSport Headphones,1,99.99,08/01/19 01:56,"882 Lake St, San Francisco, CA 94016" -223711,Bose SoundSport Headphones,1,99.99,07/24/19 11:52,"976 Pine St, Los Angeles, CA 90001" -223712,Apple Airpods Headphones,1,150,07/12/19 11:56,"585 Meadow St, San Francisco, CA 94016" -223713,Apple Airpods Headphones,1,150,07/17/19 17:51,"799 14th St, Los Angeles, CA 90001" -223714,Apple Airpods Headphones,1,150,07/25/19 12:50,"444 Elm St, Atlanta, GA 30301" -223715,27in FHD Monitor,1,149.99,07/24/19 22:18,"795 River St, Los Angeles, CA 90001" -223716,AAA Batteries (4-pack),1,2.99,07/05/19 20:19,"528 8th St, Austin, TX 73301" -223717,Bose SoundSport Headphones,1,99.99,07/14/19 20:15,"227 Highland St, Atlanta, GA 30301" -223718,USB-C Charging Cable,2,11.95,07/03/19 09:47,"594 Park St, Los Angeles, CA 90001" -223719,USB-C Charging Cable,1,11.95,07/31/19 19:17,"283 10th St, Seattle, WA 98101" -223720,Bose SoundSport Headphones,1,99.99,07/17/19 17:42,"187 Spruce St, Atlanta, GA 30301" -223721,Lightning Charging Cable,1,14.95,07/31/19 22:49,"316 North St, Portland, OR 97035" -223722,27in 4K Gaming Monitor,1,389.99,07/14/19 20:53,"381 12th St, Portland, OR 97035" -223723,USB-C Charging Cable,1,11.95,07/20/19 04:24,"33 Main St, New York City, NY 10001" -223724,USB-C Charging Cable,1,11.95,07/19/19 19:56,"234 South St, San Francisco, CA 94016" -223725,USB-C Charging Cable,1,11.95,07/26/19 23:11,"872 Meadow St, Boston, MA 02215" -223726,USB-C Charging Cable,1,11.95,07/13/19 13:44,"309 Willow St, Los Angeles, CA 90001" -223727,Apple Airpods Headphones,1,150,07/24/19 13:16,"209 Lake St, Boston, MA 02215" -223728,USB-C Charging Cable,1,11.95,07/14/19 12:54,"113 Lake St, Atlanta, GA 30301" -223729,USB-C Charging Cable,1,11.95,07/08/19 13:11,"904 Sunset St, Dallas, TX 75001" -223730,iPhone,1,700,07/09/19 19:10,"428 Washington St, Seattle, WA 98101" -223731,27in FHD Monitor,1,149.99,07/07/19 18:51,"7 Ridge St, Austin, TX 73301" -223732,Bose SoundSport Headphones,1,99.99,07/23/19 09:32,"63 Lakeview St, Dallas, TX 75001" -223733,Macbook Pro Laptop,1,1700,07/03/19 22:26,"289 Park St, Atlanta, GA 30301" -223734,iPhone,1,700,07/20/19 17:13,"211 7th St, San Francisco, CA 94016" -223735,Wired Headphones,1,11.99,07/24/19 18:52,"985 Jefferson St, Los Angeles, CA 90001" -223736,AAA Batteries (4-pack),1,2.99,07/14/19 05:30,"561 Pine St, San Francisco, CA 94016" -223737,Apple Airpods Headphones,1,150,07/12/19 12:48,"976 Main St, Boston, MA 02215" -223738,USB-C Charging Cable,1,11.95,07/12/19 10:59,"225 9th St, Los Angeles, CA 90001" -223739,iPhone,1,700,07/18/19 21:38,"170 13th St, Los Angeles, CA 90001" -223740,USB-C Charging Cable,1,11.95,07/24/19 07:32,"603 5th St, Seattle, WA 98101" -223741,AA Batteries (4-pack),2,3.84,07/22/19 10:10,"483 7th St, Boston, MA 02215" -223742,AAA Batteries (4-pack),2,2.99,07/06/19 13:27,"112 Ridge St, Dallas, TX 75001" -223743,AAA Batteries (4-pack),1,2.99,07/18/19 12:41,"164 5th St, Portland, ME 04101" -223744,AA Batteries (4-pack),1,3.84,07/21/19 06:30,"176 North St, Atlanta, GA 30301" -223745,USB-C Charging Cable,1,11.95,07/02/19 15:41,"999 Maple St, New York City, NY 10001" -223746,iPhone,1,700,07/18/19 12:46,"242 Church St, New York City, NY 10001" -223747,Google Phone,1,600,07/11/19 23:19,"657 Meadow St, San Francisco, CA 94016" -223747,USB-C Charging Cable,1,11.95,07/11/19 23:19,"657 Meadow St, San Francisco, CA 94016" -223748,27in 4K Gaming Monitor,1,389.99,07/10/19 23:53,"773 2nd St, San Francisco, CA 94016" -223749,AAA Batteries (4-pack),1,2.99,07/31/19 16:12,"959 Adams St, San Francisco, CA 94016" -223750,AA Batteries (4-pack),2,3.84,07/06/19 23:01,"48 Willow St, Dallas, TX 75001" -223751,Flatscreen TV,1,300,07/03/19 00:43,"997 12th St, Atlanta, GA 30301" -223752,Apple Airpods Headphones,1,150,07/13/19 10:12,"3 14th St, San Francisco, CA 94016" -223753,34in Ultrawide Monitor,1,379.99,07/08/19 13:02,"171 7th St, Los Angeles, CA 90001" -223754,iPhone,1,700,07/24/19 15:05,"912 6th St, Boston, MA 02215" -223754,Lightning Charging Cable,1,14.95,07/24/19 15:05,"912 6th St, Boston, MA 02215" -223755,Lightning Charging Cable,1,14.95,07/31/19 06:01,"910 Park St, San Francisco, CA 94016" -223755,Bose SoundSport Headphones,1,99.99,07/31/19 06:01,"910 Park St, San Francisco, CA 94016" -223756,Bose SoundSport Headphones,1,99.99,07/20/19 21:25,"118 14th St, Seattle, WA 98101" -223757,Lightning Charging Cable,1,14.95,07/25/19 08:34,"699 12th St, Atlanta, GA 30301" -223758,Wired Headphones,1,11.99,07/13/19 17:31,"197 Center St, San Francisco, CA 94016" -223758,AA Batteries (4-pack),2,3.84,07/13/19 17:31,"197 Center St, San Francisco, CA 94016" -223759,27in FHD Monitor,1,149.99,07/11/19 21:09,"758 Highland St, Boston, MA 02215" -223760,Apple Airpods Headphones,1,150,07/08/19 22:11,"816 Pine St, Los Angeles, CA 90001" -223761,Lightning Charging Cable,1,14.95,07/06/19 19:35,"454 14th St, Portland, ME 04101" -223762,Bose SoundSport Headphones,1,99.99,07/26/19 16:12,"223 1st St, Portland, ME 04101" -223763,27in 4K Gaming Monitor,1,389.99,07/26/19 19:56,"161 Church St, New York City, NY 10001" -223764,Lightning Charging Cable,1,14.95,07/03/19 14:09,"226 West St, Seattle, WA 98101" -223765,Wired Headphones,1,11.99,07/12/19 11:53,"592 Jefferson St, Los Angeles, CA 90001" -223766,20in Monitor,1,109.99,07/05/19 12:55,"687 Park St, Boston, MA 02215" -223766,Lightning Charging Cable,1,14.95,07/05/19 12:55,"687 Park St, Boston, MA 02215" -223767,Wired Headphones,1,11.99,07/23/19 00:58,"88 10th St, San Francisco, CA 94016" -223768,AA Batteries (4-pack),1,3.84,07/02/19 20:42,"18 Main St, New York City, NY 10001" -223769,27in 4K Gaming Monitor,1,389.99,07/26/19 09:01,"702 6th St, Dallas, TX 75001" -223770,AAA Batteries (4-pack),2,2.99,07/04/19 11:29,"174 Johnson St, Dallas, TX 75001" -223771,ThinkPad Laptop,1,999.99,07/04/19 09:10,"31 North St, Seattle, WA 98101" -223772,Apple Airpods Headphones,1,150,07/17/19 19:27,"438 Lakeview St, New York City, NY 10001" -223773,Wired Headphones,1,11.99,07/28/19 13:42,"71 Pine St, San Francisco, CA 94016" -223774,Wired Headphones,1,11.99,07/12/19 18:37,"105 Meadow St, San Francisco, CA 94016" -223775,Lightning Charging Cable,1,14.95,07/13/19 18:02,"706 13th St, Boston, MA 02215" -223776,Lightning Charging Cable,1,14.95,07/04/19 14:55,"559 Adams St, Seattle, WA 98101" -223777,Google Phone,1,600,07/05/19 21:49,"134 9th St, San Francisco, CA 94016" -223778,Lightning Charging Cable,2,14.95,07/28/19 17:18,"981 Sunset St, Los Angeles, CA 90001" -223779,AAA Batteries (4-pack),2,2.99,07/05/19 15:15,"462 West St, Atlanta, GA 30301" -223780,USB-C Charging Cable,1,11.95,07/09/19 14:42,"337 Washington St, Los Angeles, CA 90001" -223781,Lightning Charging Cable,1,14.95,07/05/19 17:07,"939 Lake St, Los Angeles, CA 90001" -223782,Bose SoundSport Headphones,1,99.99,07/08/19 15:07,"417 Center St, New York City, NY 10001" -223783,AA Batteries (4-pack),1,3.84,07/11/19 01:33,"155 Willow St, San Francisco, CA 94016" -223784,Bose SoundSport Headphones,1,99.99,07/26/19 19:01,"481 Ridge St, San Francisco, CA 94016" -223785,iPhone,1,700,07/27/19 14:25,"725 11th St, Dallas, TX 75001" -223786,Wired Headphones,1,11.99,07/03/19 11:17,"96 South St, San Francisco, CA 94016" -223787,Macbook Pro Laptop,1,1700,07/28/19 21:21,"864 Main St, New York City, NY 10001" -223788,Bose SoundSport Headphones,1,99.99,07/15/19 07:00,"594 Johnson St, Los Angeles, CA 90001" -223789,AAA Batteries (4-pack),3,2.99,07/09/19 09:43,"881 7th St, Atlanta, GA 30301" -223790,Google Phone,1,600,07/23/19 16:41,"775 Dogwood St, Dallas, TX 75001" -223791,Wired Headphones,1,11.99,07/15/19 18:31,"480 Hill St, San Francisco, CA 94016" -223792,AA Batteries (4-pack),1,3.84,07/27/19 21:08,"760 Main St, Atlanta, GA 30301" -223793,Lightning Charging Cable,2,14.95,07/20/19 09:48,"838 Highland St, Atlanta, GA 30301" -223794,USB-C Charging Cable,1,11.95,07/11/19 15:25,"142 13th St, Austin, TX 73301" -223795,Lightning Charging Cable,1,14.95,07/18/19 13:03,"294 14th St, New York City, NY 10001" -223796,USB-C Charging Cable,1,11.95,07/20/19 11:32,"325 Meadow St, Atlanta, GA 30301" -223797,USB-C Charging Cable,1,11.95,07/27/19 18:27,"33 Madison St, Los Angeles, CA 90001" -223798,USB-C Charging Cable,2,11.95,07/19/19 22:29,"148 2nd St, New York City, NY 10001" -223799,AAA Batteries (4-pack),1,2.99,07/31/19 15:40,"904 Cedar St, Boston, MA 02215" -223800,Apple Airpods Headphones,1,150,07/26/19 13:53,"43 Main St, San Francisco, CA 94016" -223801,Apple Airpods Headphones,1,150,07/20/19 14:22,"640 7th St, San Francisco, CA 94016" -223802,27in 4K Gaming Monitor,1,389.99,07/23/19 05:06,"587 Meadow St, Boston, MA 02215" -223803,Bose SoundSport Headphones,1,99.99,07/04/19 11:31,"705 5th St, Boston, MA 02215" -223804,27in FHD Monitor,1,149.99,07/16/19 19:06,"791 10th St, Los Angeles, CA 90001" -223805,ThinkPad Laptop,1,999.99,07/04/19 08:28,"607 South St, Austin, TX 73301" -223806,AA Batteries (4-pack),1,3.84,07/05/19 19:41,"651 River St, Boston, MA 02215" -223807,Bose SoundSport Headphones,1,99.99,07/06/19 10:20,"951 Hill St, Los Angeles, CA 90001" -223808,AA Batteries (4-pack),1,3.84,07/12/19 08:10,"28 Forest St, New York City, NY 10001" -223809,AA Batteries (4-pack),1,3.84,07/14/19 20:27,"920 9th St, San Francisco, CA 94016" -223810,AA Batteries (4-pack),1,3.84,07/29/19 09:24,"132 Ridge St, Boston, MA 02215" -223811,Bose SoundSport Headphones,1,99.99,07/21/19 23:04,"327 8th St, New York City, NY 10001" -223812,Bose SoundSport Headphones,1,99.99,07/15/19 20:58,"36 Willow St, San Francisco, CA 94016" -223813,iPhone,1,700,07/05/19 20:15,"690 8th St, Los Angeles, CA 90001" -223814,USB-C Charging Cable,1,11.95,07/25/19 17:07,"83 Adams St, Dallas, TX 75001" -223815,Lightning Charging Cable,1,14.95,07/06/19 15:08,"406 Church St, Los Angeles, CA 90001" -223816,USB-C Charging Cable,1,11.95,07/05/19 10:36,"233 9th St, New York City, NY 10001" -223817,Vareebadd Phone,1,400,07/29/19 12:45,"569 Cherry St, Los Angeles, CA 90001" -223818,AAA Batteries (4-pack),1,2.99,07/20/19 12:09,"532 South St, Los Angeles, CA 90001" -223819,AAA Batteries (4-pack),1,2.99,07/08/19 09:54,"852 7th St, Los Angeles, CA 90001" -223820,USB-C Charging Cable,1,11.95,07/07/19 20:47,"833 Adams St, Boston, MA 02215" -223821,AA Batteries (4-pack),1,3.84,07/03/19 22:54,"309 Hickory St, San Francisco, CA 94016" -223822,34in Ultrawide Monitor,1,379.99,07/18/19 22:23,"461 Sunset St, Los Angeles, CA 90001" -223823,Lightning Charging Cable,1,14.95,07/11/19 11:35,"387 Maple St, Seattle, WA 98101" -223824,Apple Airpods Headphones,1,150,07/01/19 22:29,"30 Elm St, Atlanta, GA 30301" -223825,USB-C Charging Cable,1,11.95,07/05/19 11:47,"649 Johnson St, San Francisco, CA 94016" -223826,Apple Airpods Headphones,1,150,07/09/19 17:19,"833 5th St, Los Angeles, CA 90001" -223827,AAA Batteries (4-pack),4,2.99,07/15/19 10:59,"531 Sunset St, Seattle, WA 98101" -223828,iPhone,1,700,07/06/19 08:45,"565 Center St, Portland, OR 97035" -223829,USB-C Charging Cable,1,11.95,07/24/19 12:19,"976 Lakeview St, Dallas, TX 75001" -223830,iPhone,1,700,07/10/19 19:55,"881 Willow St, Los Angeles, CA 90001" -223831,AA Batteries (4-pack),2,3.84,07/11/19 01:46,"205 Sunset St, Dallas, TX 75001" -223832,Bose SoundSport Headphones,1,99.99,07/11/19 17:04,"762 Washington St, Boston, MA 02215" -223833,27in 4K Gaming Monitor,1,389.99,07/08/19 13:52,"406 Meadow St, New York City, NY 10001" -223834,27in FHD Monitor,1,149.99,07/09/19 08:33,"818 Forest St, Los Angeles, CA 90001" -223835,AA Batteries (4-pack),2,3.84,07/04/19 11:23,"554 Wilson St, Austin, TX 73301" -223836,Lightning Charging Cable,1,14.95,07/12/19 05:48,"350 Pine St, Atlanta, GA 30301" -223837,USB-C Charging Cable,1,11.95,07/09/19 21:52,"681 Main St, Austin, TX 73301" -223838,Wired Headphones,1,11.99,07/15/19 20:11,"928 West St, Dallas, TX 75001" -223839,iPhone,1,700,07/05/19 12:53,"886 Lakeview St, Austin, TX 73301" -223840,USB-C Charging Cable,1,11.95,07/16/19 15:30,"433 Ridge St, New York City, NY 10001" -223841,Apple Airpods Headphones,2,150,07/21/19 09:46,"723 Willow St, Portland, ME 04101" -223842,AA Batteries (4-pack),1,3.84,07/15/19 20:24,"935 Sunset St, Los Angeles, CA 90001" -223843,AAA Batteries (4-pack),2,2.99,07/28/19 19:06,"656 Lake St, Dallas, TX 75001" -223844,LG Dryer,1,600.0,07/04/19 20:42,"567 Dogwood St, Boston, MA 02215" -223844,27in FHD Monitor,1,149.99,07/04/19 20:42,"567 Dogwood St, Boston, MA 02215" -223845,ThinkPad Laptop,1,999.99,07/22/19 20:11,"718 Chestnut St, Los Angeles, CA 90001" -223846,Lightning Charging Cable,1,14.95,07/28/19 16:43,"444 2nd St, Los Angeles, CA 90001" -223847,Lightning Charging Cable,1,14.95,07/14/19 18:44,"575 Elm St, Los Angeles, CA 90001" -223848,AAA Batteries (4-pack),1,2.99,07/05/19 02:24,"643 River St, San Francisco, CA 94016" -223849,Wired Headphones,2,11.99,07/03/19 13:52,"324 13th St, Austin, TX 73301" -223850,Bose SoundSport Headphones,1,99.99,07/27/19 13:34,"572 Church St, Boston, MA 02215" -223851,Apple Airpods Headphones,1,150,07/29/19 21:38,"903 7th St, Dallas, TX 75001" -223852,USB-C Charging Cable,1,11.95,07/15/19 21:51,"777 4th St, San Francisco, CA 94016" -223853,Lightning Charging Cable,1,14.95,07/15/19 17:34,"896 River St, Atlanta, GA 30301" -223854,20in Monitor,1,109.99,07/08/19 09:53,"262 Washington St, Atlanta, GA 30301" -223855,Google Phone,1,600,07/04/19 09:46,"283 Park St, Boston, MA 02215" -223855,USB-C Charging Cable,1,11.95,07/04/19 09:46,"283 Park St, Boston, MA 02215" -223856,27in 4K Gaming Monitor,1,389.99,07/05/19 13:00,"290 5th St, Dallas, TX 75001" -223857,AA Batteries (4-pack),1,3.84,07/11/19 16:17,"351 13th St, New York City, NY 10001" -223858,Flatscreen TV,1,300,07/13/19 00:44,"9 8th St, Los Angeles, CA 90001" -223859,Lightning Charging Cable,3,14.95,07/09/19 18:11,"84 Cedar St, New York City, NY 10001" -223860,AA Batteries (4-pack),1,3.84,07/25/19 12:45,"760 Jackson St, San Francisco, CA 94016" -223861,AAA Batteries (4-pack),1,2.99,07/31/19 10:34,"707 1st St, New York City, NY 10001" -223862,AAA Batteries (4-pack),1,2.99,07/08/19 10:49,"594 Johnson St, Dallas, TX 75001" -223863,Flatscreen TV,1,300,07/14/19 10:21,"2 Church St, Los Angeles, CA 90001" -223864,USB-C Charging Cable,1,11.95,07/21/19 16:38,"703 Madison St, Portland, ME 04101" -223865,iPhone,1,700,07/06/19 22:38,"419 6th St, Atlanta, GA 30301" -223866,27in FHD Monitor,1,149.99,07/08/19 22:33,"334 South St, Los Angeles, CA 90001" -223867,AA Batteries (4-pack),1,3.84,07/03/19 13:17,"974 Washington St, San Francisco, CA 94016" -223868,27in FHD Monitor,1,149.99,07/18/19 18:13,"949 Dogwood St, Seattle, WA 98101" -223869,27in 4K Gaming Monitor,1,389.99,07/18/19 20:51,"493 7th St, San Francisco, CA 94016" -223870,Google Phone,1,600,07/20/19 14:33,"523 River St, San Francisco, CA 94016" -223871,AA Batteries (4-pack),1,3.84,07/08/19 18:01,"252 Lakeview St, Los Angeles, CA 90001" -223872,27in FHD Monitor,1,149.99,07/26/19 17:57,"364 Lakeview St, Seattle, WA 98101" -223873,Wired Headphones,1,11.99,07/01/19 13:39,"1 Spruce St, Seattle, WA 98101" -223874,Wired Headphones,1,11.99,07/04/19 23:04,"741 Lincoln St, San Francisco, CA 94016" -223875,Wired Headphones,1,11.99,07/19/19 19:40,"932 South St, Los Angeles, CA 90001" -223876,Bose SoundSport Headphones,1,99.99,07/27/19 19:09,"716 West St, Atlanta, GA 30301" -223877,AA Batteries (4-pack),2,3.84,07/27/19 18:57,"229 Pine St, San Francisco, CA 94016" -223878,Bose SoundSport Headphones,1,99.99,07/01/19 17:55,"140 Hickory St, New York City, NY 10001" -223879,AA Batteries (4-pack),1,3.84,07/25/19 14:52,"805 Willow St, San Francisco, CA 94016" -223880,USB-C Charging Cable,1,11.95,07/16/19 19:21,"45 River St, Los Angeles, CA 90001" -223881,AAA Batteries (4-pack),1,2.99,07/14/19 17:30,"40 Center St, San Francisco, CA 94016" -223882,Lightning Charging Cable,1,14.95,07/18/19 07:41,"336 Willow St, San Francisco, CA 94016" -223883,AAA Batteries (4-pack),1,2.99,07/31/19 20:45,"642 Wilson St, San Francisco, CA 94016" -223884,iPhone,1,700,07/12/19 09:46,"451 Jackson St, Boston, MA 02215" -223885,27in FHD Monitor,1,149.99,07/02/19 23:55,"342 South St, Los Angeles, CA 90001" -223885,AA Batteries (4-pack),2,3.84,07/02/19 23:55,"342 South St, Los Angeles, CA 90001" -223886,AA Batteries (4-pack),1,3.84,07/10/19 15:24,"412 Meadow St, Seattle, WA 98101" -223887,27in FHD Monitor,1,149.99,07/17/19 20:29,"131 Chestnut St, New York City, NY 10001" -223888,27in FHD Monitor,1,149.99,07/21/19 15:30,"406 South St, Dallas, TX 75001" -223889,iPhone,1,700,07/06/19 11:50,"958 10th St, New York City, NY 10001" -223890,20in Monitor,1,109.99,07/05/19 10:10,"352 Park St, San Francisco, CA 94016" -223891,USB-C Charging Cable,1,11.95,07/16/19 16:08,"211 Church St, New York City, NY 10001" -223892,Apple Airpods Headphones,1,150,07/20/19 10:51,"197 Highland St, San Francisco, CA 94016" -223893,AAA Batteries (4-pack),1,2.99,07/10/19 09:36,"369 Lakeview St, Seattle, WA 98101" -223894,Flatscreen TV,1,300,07/24/19 14:05,"100 Lincoln St, New York City, NY 10001" -223895,AA Batteries (4-pack),1,3.84,07/29/19 09:28,"519 Meadow St, Austin, TX 73301" -,,,,, -223896,AA Batteries (4-pack),1,3.84,07/03/19 15:37,"585 8th St, Atlanta, GA 30301" -223897,27in FHD Monitor,1,149.99,07/25/19 15:11,"949 Jefferson St, Atlanta, GA 30301" -223898,USB-C Charging Cable,1,11.95,07/01/19 19:33,"92 Main St, San Francisco, CA 94016" -223899,AAA Batteries (4-pack),1,2.99,07/24/19 11:51,"538 1st St, San Francisco, CA 94016" -223900,USB-C Charging Cable,1,11.95,07/13/19 14:14,"873 Jackson St, Boston, MA 02215" -223901,27in 4K Gaming Monitor,1,389.99,07/17/19 10:18,"371 Lincoln St, San Francisco, CA 94016" -223902,Macbook Pro Laptop,1,1700,07/18/19 20:23,"616 Cherry St, Boston, MA 02215" -223903,USB-C Charging Cable,1,11.95,07/25/19 17:42,"533 Johnson St, San Francisco, CA 94016" -223904,Macbook Pro Laptop,1,1700,07/27/19 02:09,"847 Highland St, San Francisco, CA 94016" -223905,USB-C Charging Cable,1,11.95,07/07/19 11:28,"565 14th St, Seattle, WA 98101" -223906,Flatscreen TV,1,300,07/04/19 09:14,"18 Dogwood St, Dallas, TX 75001" -223907,Apple Airpods Headphones,1,150,07/22/19 12:36,"299 River St, Portland, OR 97035" -223908,Flatscreen TV,1,300,07/11/19 11:38,"735 Walnut St, New York City, NY 10001" -223909,USB-C Charging Cable,1,11.95,07/26/19 20:33,"238 Church St, Seattle, WA 98101" -223910,USB-C Charging Cable,1,11.95,07/23/19 14:19,"626 Meadow St, New York City, NY 10001" -223911,Apple Airpods Headphones,1,150,07/31/19 12:21,"686 4th St, New York City, NY 10001" -223912,Google Phone,1,600,07/29/19 11:02,"866 Willow St, Los Angeles, CA 90001" -223913,AAA Batteries (4-pack),2,2.99,07/13/19 20:39,"58 14th St, Los Angeles, CA 90001" -223914,Google Phone,1,600,07/30/19 00:05,"192 Lincoln St, Los Angeles, CA 90001" -223914,USB-C Charging Cable,1,11.95,07/30/19 00:05,"192 Lincoln St, Los Angeles, CA 90001" -223915,Macbook Pro Laptop,1,1700,07/10/19 12:13,"836 Dogwood St, Austin, TX 73301" -223916,USB-C Charging Cable,1,11.95,07/30/19 14:01,"67 Ridge St, San Francisco, CA 94016" -223917,USB-C Charging Cable,1,11.95,07/25/19 09:41,"296 9th St, San Francisco, CA 94016" -223918,AA Batteries (4-pack),1,3.84,07/09/19 16:09,"39 Ridge St, Atlanta, GA 30301" -223919,Lightning Charging Cable,1,14.95,07/16/19 17:10,"58 13th St, Seattle, WA 98101" -223920,AA Batteries (4-pack),2,3.84,07/22/19 22:41,"337 Center St, Portland, OR 97035" -223921,AAA Batteries (4-pack),1,2.99,07/25/19 08:05,"719 4th St, Atlanta, GA 30301" -223922,AAA Batteries (4-pack),1,2.99,07/26/19 22:42,"674 8th St, New York City, NY 10001" -223923,AAA Batteries (4-pack),1,2.99,07/31/19 12:55,"152 12th St, Austin, TX 73301" -223924,27in 4K Gaming Monitor,1,389.99,07/22/19 22:08,"66 Washington St, New York City, NY 10001" -223925,ThinkPad Laptop,1,999.99,07/17/19 18:47,"103 River St, San Francisco, CA 94016" -223926,Wired Headphones,1,11.99,07/03/19 19:26,"501 Lakeview St, San Francisco, CA 94016" -223927,34in Ultrawide Monitor,1,379.99,07/06/19 15:47,"151 5th St, Los Angeles, CA 90001" -223928,USB-C Charging Cable,1,11.95,07/28/19 17:57,"903 Meadow St, Los Angeles, CA 90001" -223929,Google Phone,1,600,07/08/19 15:17,"446 Willow St, San Francisco, CA 94016" -223930,AAA Batteries (4-pack),1,2.99,07/17/19 12:37,"868 River St, Dallas, TX 75001" -223931,USB-C Charging Cable,1,11.95,07/15/19 22:37,"456 South St, San Francisco, CA 94016" -223932,USB-C Charging Cable,1,11.95,07/10/19 16:15,"921 11th St, Seattle, WA 98101" -223933,Bose SoundSport Headphones,1,99.99,07/26/19 12:46,"216 13th St, Boston, MA 02215" -223934,USB-C Charging Cable,1,11.95,07/29/19 20:50,"685 Walnut St, San Francisco, CA 94016" -223935,AAA Batteries (4-pack),1,2.99,07/27/19 11:57,"962 9th St, Seattle, WA 98101" -223936,27in 4K Gaming Monitor,1,389.99,07/23/19 10:10,"482 Dogwood St, San Francisco, CA 94016" -223937,Apple Airpods Headphones,1,150,07/08/19 17:36,"798 Spruce St, Atlanta, GA 30301" -223938,USB-C Charging Cable,1,11.95,07/22/19 20:56,"524 Washington St, Boston, MA 02215" -223939,AA Batteries (4-pack),1,3.84,07/18/19 20:29,"576 Sunset St, San Francisco, CA 94016" -223940,Macbook Pro Laptop,1,1700,07/30/19 17:42,"504 14th St, Portland, OR 97035" -223941,Wired Headphones,1,11.99,07/06/19 12:08,"722 Church St, San Francisco, CA 94016" -223942,AAA Batteries (4-pack),2,2.99,07/04/19 20:43,"897 Forest St, San Francisco, CA 94016" -223943,USB-C Charging Cable,1,11.95,07/09/19 12:42,"5 South St, Boston, MA 02215" -223944,iPhone,1,700,07/28/19 00:20,"826 Elm St, Los Angeles, CA 90001" -223945,Wired Headphones,1,11.99,07/10/19 15:25,"380 Hill St, Portland, ME 04101" -223946,Flatscreen TV,1,300,07/17/19 07:56,"702 4th St, New York City, NY 10001" -223947,AAA Batteries (4-pack),1,2.99,07/28/19 18:10,"420 7th St, San Francisco, CA 94016" -223948,AA Batteries (4-pack),1,3.84,07/19/19 19:57,"30 Elm St, New York City, NY 10001" -223949,Bose SoundSport Headphones,1,99.99,07/26/19 15:57,"170 Hill St, San Francisco, CA 94016" -223950,iPhone,1,700,07/17/19 19:03,"30 Church St, Los Angeles, CA 90001" -223951,USB-C Charging Cable,1,11.95,07/02/19 17:51,"432 Sunset St, New York City, NY 10001" -223952,Lightning Charging Cable,1,14.95,07/24/19 22:00,"374 Chestnut St, Boston, MA 02215" -223953,USB-C Charging Cable,1,11.95,07/06/19 13:31,"385 Hill St, Los Angeles, CA 90001" -223954,Apple Airpods Headphones,1,150,07/01/19 20:20,"641 Lake St, Dallas, TX 75001" -223955,USB-C Charging Cable,1,11.95,07/17/19 08:39,"711 Church St, San Francisco, CA 94016" -223956,Apple Airpods Headphones,1,150,07/07/19 22:00,"518 Main St, New York City, NY 10001" -223957,Lightning Charging Cable,1,14.95,07/28/19 18:20,"284 Ridge St, New York City, NY 10001" -223958,iPhone,1,700,07/17/19 12:31,"872 14th St, San Francisco, CA 94016" -223959,USB-C Charging Cable,1,11.95,07/14/19 18:52,"650 10th St, Boston, MA 02215" -223960,Wired Headphones,1,11.99,07/01/19 18:44,"877 9th St, Boston, MA 02215" -223961,AA Batteries (4-pack),1,3.84,07/06/19 11:45,"691 Lake St, Atlanta, GA 30301" -223962,AAA Batteries (4-pack),1,2.99,07/05/19 11:47,"753 Lincoln St, Seattle, WA 98101" -223963,Wired Headphones,1,11.99,07/04/19 20:30,"250 4th St, Boston, MA 02215" -223964,Lightning Charging Cable,1,14.95,07/06/19 11:40,"230 Spruce St, Boston, MA 02215" -223965,Apple Airpods Headphones,1,150,07/03/19 13:49,"923 11th St, San Francisco, CA 94016" -223966,Lightning Charging Cable,1,14.95,07/13/19 18:23,"453 Walnut St, San Francisco, CA 94016" -223967,Bose SoundSport Headphones,1,99.99,07/31/19 18:26,"6 Jefferson St, Portland, OR 97035" -223968,Lightning Charging Cable,1,14.95,07/18/19 17:06,"485 9th St, Austin, TX 73301" -223969,Wired Headphones,1,11.99,07/19/19 10:32,"154 Dogwood St, Los Angeles, CA 90001" -223970,AA Batteries (4-pack),3,3.84,07/26/19 22:22,"423 Pine St, San Francisco, CA 94016" -223971,Apple Airpods Headphones,1,150,07/07/19 19:46,"169 7th St, Austin, TX 73301" -223972,Apple Airpods Headphones,1,150,07/20/19 20:07,"121 13th St, Atlanta, GA 30301" -223973,AAA Batteries (4-pack),2,2.99,07/23/19 17:36,"998 Spruce St, San Francisco, CA 94016" -223974,ThinkPad Laptop,1,999.99,07/09/19 16:53,"456 14th St, Los Angeles, CA 90001" -223975,Bose SoundSport Headphones,1,99.99,07/12/19 19:49,"191 6th St, Atlanta, GA 30301" -223976,34in Ultrawide Monitor,1,379.99,07/14/19 09:41,"654 Pine St, San Francisco, CA 94016" -223977,Lightning Charging Cable,1,14.95,07/25/19 18:47,"581 Ridge St, Dallas, TX 75001" -223978,AA Batteries (4-pack),1,3.84,07/18/19 09:03,"144 8th St, San Francisco, CA 94016" -223979,iPhone,1,700,07/31/19 21:20,"289 6th St, Seattle, WA 98101" -223980,Bose SoundSport Headphones,1,99.99,07/11/19 09:36,"165 Lincoln St, Atlanta, GA 30301" -223981,Flatscreen TV,1,300,07/14/19 18:19,"53 7th St, Dallas, TX 75001" -223982,Lightning Charging Cable,1,14.95,07/07/19 18:34,"87 Lakeview St, Los Angeles, CA 90001" -223983,Lightning Charging Cable,1,14.95,07/28/19 12:35,"939 Cherry St, Boston, MA 02215" -223984,AAA Batteries (4-pack),1,2.99,07/05/19 22:06,"979 Jackson St, Seattle, WA 98101" -223985,Wired Headphones,2,11.99,07/17/19 22:11,"959 12th St, Boston, MA 02215" -223986,Lightning Charging Cable,2,14.95,07/30/19 12:55,"845 South St, New York City, NY 10001" -223987,USB-C Charging Cable,2,11.95,07/10/19 19:39,"999 Cherry St, San Francisco, CA 94016" -223988,AA Batteries (4-pack),1,3.84,07/23/19 09:41,"641 South St, Los Angeles, CA 90001" -223989,Wired Headphones,1,11.99,07/09/19 14:03,"56 Willow St, New York City, NY 10001" -223990,Lightning Charging Cable,1,14.95,07/02/19 18:59,"420 Hickory St, San Francisco, CA 94016" -223991,AA Batteries (4-pack),1,3.84,07/14/19 12:48,"682 Cherry St, Los Angeles, CA 90001" -223992,ThinkPad Laptop,1,999.99,07/13/19 12:12,"818 11th St, Portland, OR 97035" -223993,USB-C Charging Cable,1,11.95,07/10/19 12:52,"302 8th St, Atlanta, GA 30301" -223994,iPhone,1,700,07/24/19 20:33,"129 6th St, San Francisco, CA 94016" -223995,USB-C Charging Cable,1,11.95,07/31/19 13:05,"265 Walnut St, Boston, MA 02215" -223996,27in FHD Monitor,1,149.99,07/08/19 06:20,"28 Wilson St, New York City, NY 10001" -223997,34in Ultrawide Monitor,1,379.99,07/18/19 10:30,"375 Cedar St, Atlanta, GA 30301" -223998,Flatscreen TV,1,300,07/31/19 13:15,"635 Walnut St, San Francisco, CA 94016" -223999,iPhone,1,700,07/12/19 19:14,"38 Park St, Dallas, TX 75001" -224000,iPhone,1,700,07/30/19 17:58,"639 Johnson St, Austin, TX 73301" -224001,Lightning Charging Cable,1,14.95,07/31/19 14:54,"292 Lakeview St, San Francisco, CA 94016" -224002,Wired Headphones,1,11.99,07/02/19 16:02,"475 Hill St, San Francisco, CA 94016" -224003,Apple Airpods Headphones,1,150,07/29/19 09:15,"278 Jackson St, San Francisco, CA 94016" -224004,USB-C Charging Cable,2,11.95,07/19/19 13:41,"317 Sunset St, San Francisco, CA 94016" -224005,USB-C Charging Cable,1,11.95,07/01/19 14:16,"660 1st St, Atlanta, GA 30301" -224006,Wired Headphones,1,11.99,07/27/19 18:39,"383 9th St, San Francisco, CA 94016" -224007,Flatscreen TV,1,300,07/30/19 22:20,"883 Highland St, New York City, NY 10001" -224008,Bose SoundSport Headphones,1,99.99,07/04/19 19:19,"757 West St, New York City, NY 10001" -224009,Apple Airpods Headphones,1,150,07/31/19 21:52,"77 Sunset St, San Francisco, CA 94016" -224010,iPhone,1,700,07/30/19 04:03,"911 8th St, Los Angeles, CA 90001" -224011,iPhone,1,700,07/31/19 23:30,"570 South St, Los Angeles, CA 90001" -224011,Apple Airpods Headphones,1,150,07/31/19 23:30,"570 South St, Los Angeles, CA 90001" -224012,Wired Headphones,1,11.99,07/11/19 20:18,"722 11th St, New York City, NY 10001" -224013,Wired Headphones,2,11.99,07/26/19 20:39,"91 River St, Seattle, WA 98101" -224014,Bose SoundSport Headphones,1,99.99,07/26/19 09:00,"887 West St, New York City, NY 10001" -224015,Apple Airpods Headphones,1,150,07/30/19 08:14,"255 Jefferson St, New York City, NY 10001" -224016,AA Batteries (4-pack),2,3.84,07/11/19 12:13,"539 13th St, New York City, NY 10001" -224017,20in Monitor,1,109.99,07/30/19 18:31,"215 Center St, Austin, TX 73301" -224018,Bose SoundSport Headphones,1,99.99,07/14/19 09:24,"744 12th St, Seattle, WA 98101" -224019,34in Ultrawide Monitor,1,379.99,07/31/19 12:46,"165 1st St, San Francisco, CA 94016" -224020,Macbook Pro Laptop,1,1700,07/13/19 17:34,"317 Hickory St, Boston, MA 02215" -224021,ThinkPad Laptop,1,999.99,07/05/19 12:09,"222 Wilson St, Portland, OR 97035" -224022,Wired Headphones,1,11.99,07/12/19 23:05,"594 Hill St, Boston, MA 02215" -224023,Apple Airpods Headphones,1,150,07/17/19 14:54,"268 Highland St, San Francisco, CA 94016" -224024,AA Batteries (4-pack),1,3.84,07/16/19 22:19,"85 Jackson St, San Francisco, CA 94016" -224025,34in Ultrawide Monitor,1,379.99,07/31/19 09:56,"817 Lincoln St, New York City, NY 10001" -224026,Apple Airpods Headphones,1,150,07/28/19 20:17,"813 Cherry St, Atlanta, GA 30301" -224027,Apple Airpods Headphones,1,150,07/18/19 21:49,"17 Wilson St, San Francisco, CA 94016" -224028,Apple Airpods Headphones,1,150,07/02/19 10:39,"96 2nd St, Austin, TX 73301" -224029,USB-C Charging Cable,1,11.95,07/27/19 19:56,"482 9th St, Los Angeles, CA 90001" -224030,AAA Batteries (4-pack),1,2.99,07/12/19 16:36,"42 14th St, San Francisco, CA 94016" -224031,Apple Airpods Headphones,1,150,07/15/19 22:48,"285 2nd St, Los Angeles, CA 90001" -224032,iPhone,1,700,07/28/19 11:00,"889 Main St, New York City, NY 10001" -224033,Bose SoundSport Headphones,1,99.99,07/16/19 08:36,"83 9th St, Atlanta, GA 30301" -224034,AAA Batteries (4-pack),1,2.99,07/24/19 17:09,"915 Elm St, San Francisco, CA 94016" -224035,Macbook Pro Laptop,1,1700,07/08/19 14:13,"762 7th St, San Francisco, CA 94016" -224036,Wired Headphones,2,11.99,07/14/19 17:42,"426 Willow St, Atlanta, GA 30301" -224037,AAA Batteries (4-pack),2,2.99,07/14/19 01:11,"131 4th St, San Francisco, CA 94016" -224038,Bose SoundSport Headphones,1,99.99,07/12/19 12:55,"394 South St, Boston, MA 02215" -224039,Apple Airpods Headphones,1,150,07/25/19 16:12,"114 12th St, Portland, ME 04101" -224040,AAA Batteries (4-pack),2,2.99,07/23/19 14:42,"787 Center St, San Francisco, CA 94016" -224041,Bose SoundSport Headphones,1,99.99,07/01/19 11:35,"696 5th St, Atlanta, GA 30301" -224042,Apple Airpods Headphones,1,150,07/31/19 08:35,"653 Johnson St, Seattle, WA 98101" -224043,Bose SoundSport Headphones,1,99.99,07/04/19 11:27,"391 Cedar St, New York City, NY 10001" -224044,Vareebadd Phone,1,400,07/20/19 19:16,"411 Church St, San Francisco, CA 94016" -224045,Bose SoundSport Headphones,1,99.99,07/14/19 13:23,"795 Ridge St, San Francisco, CA 94016" -224046,AA Batteries (4-pack),1,3.84,07/08/19 20:30,"14 Elm St, Atlanta, GA 30301" -224047,AA Batteries (4-pack),1,3.84,07/16/19 21:59,"92 Jackson St, Portland, ME 04101" -224048,AA Batteries (4-pack),1,3.84,07/01/19 07:42,"86 River St, Seattle, WA 98101" -224049,Apple Airpods Headphones,1,150,07/06/19 16:52,"606 Washington St, New York City, NY 10001" -224050,ThinkPad Laptop,1,999.99,07/21/19 10:23,"274 Lake St, San Francisco, CA 94016" -224051,AA Batteries (4-pack),1,3.84,07/19/19 11:35,"459 Walnut St, Austin, TX 73301" -224052,USB-C Charging Cable,1,11.95,07/14/19 22:21,"146 13th St, Atlanta, GA 30301" -224053,Flatscreen TV,1,300,07/10/19 21:58,"762 10th St, New York City, NY 10001" -224054,Wired Headphones,1,11.99,07/04/19 15:36,"935 Dogwood St, San Francisco, CA 94016" -224055,AAA Batteries (4-pack),2,2.99,07/28/19 20:42,"451 North St, New York City, NY 10001" -224056,LG Washing Machine,1,600.0,07/18/19 23:25,"389 North St, Atlanta, GA 30301" -224057,Apple Airpods Headphones,1,150,07/19/19 19:10,"593 Sunset St, San Francisco, CA 94016" -224058,AAA Batteries (4-pack),1,2.99,07/21/19 11:18,"956 Dogwood St, San Francisco, CA 94016" -224059,Lightning Charging Cable,1,14.95,07/06/19 10:02,"896 Wilson St, Los Angeles, CA 90001" -224060,Wired Headphones,1,11.99,07/09/19 04:13,"953 Dogwood St, Seattle, WA 98101" -224061,Apple Airpods Headphones,1,150,07/24/19 00:51,"988 Highland St, New York City, NY 10001" -224062,iPhone,1,700,07/16/19 17:16,"650 13th St, San Francisco, CA 94016" -224063,AAA Batteries (4-pack),3,2.99,07/07/19 09:26,"397 4th St, Atlanta, GA 30301" -224064,USB-C Charging Cable,1,11.95,07/27/19 09:45,"735 Johnson St, Atlanta, GA 30301" -224065,AA Batteries (4-pack),1,3.84,07/11/19 23:31,"707 Cherry St, Austin, TX 73301" -224066,USB-C Charging Cable,1,11.95,07/06/19 22:39,"176 Madison St, Los Angeles, CA 90001" -224067,Wired Headphones,2,11.99,07/30/19 16:59,"159 8th St, Atlanta, GA 30301" -224068,Google Phone,1,600,07/25/19 16:16,"602 Washington St, San Francisco, CA 94016" -224069,20in Monitor,1,109.99,07/19/19 09:13,"847 Lake St, New York City, NY 10001" -224070,Apple Airpods Headphones,1,150,07/17/19 08:39,"653 Pine St, San Francisco, CA 94016" -224071,USB-C Charging Cable,1,11.95,07/23/19 14:35,"982 Meadow St, Austin, TX 73301" -224072,AAA Batteries (4-pack),1,2.99,07/30/19 16:59,"45 South St, Los Angeles, CA 90001" -224073,iPhone,1,700,07/21/19 22:29,"741 Sunset St, Atlanta, GA 30301" -224074,34in Ultrawide Monitor,1,379.99,07/01/19 09:59,"355 Washington St, San Francisco, CA 94016" -224075,Lightning Charging Cable,1,14.95,07/30/19 07:44,"345 Jefferson St, Los Angeles, CA 90001" -224076,Apple Airpods Headphones,1,150,07/02/19 20:22,"846 Main St, Atlanta, GA 30301" -224077,Wired Headphones,1,11.99,07/31/19 00:36,"605 Cedar St, Seattle, WA 98101" -224078,AA Batteries (4-pack),1,3.84,07/09/19 23:18,"515 Adams St, Austin, TX 73301" -224079,Wired Headphones,1,11.99,07/03/19 17:10,"475 Church St, Seattle, WA 98101" -224080,Bose SoundSport Headphones,1,99.99,07/16/19 15:35,"398 1st St, Boston, MA 02215" -224081,AA Batteries (4-pack),1,3.84,07/14/19 16:50,"733 Lake St, San Francisco, CA 94016" -224082,AA Batteries (4-pack),1,3.84,07/06/19 17:42,"318 Highland St, Seattle, WA 98101" -224083,AAA Batteries (4-pack),2,2.99,07/05/19 10:08,"198 Walnut St, Atlanta, GA 30301" -224084,27in 4K Gaming Monitor,1,389.99,07/13/19 08:33,"468 Cherry St, Austin, TX 73301" -224085,20in Monitor,1,109.99,07/13/19 14:25,"116 Johnson St, Portland, OR 97035" -224086,Bose SoundSport Headphones,1,99.99,07/07/19 14:49,"296 8th St, Boston, MA 02215" -224087,Wired Headphones,1,11.99,07/26/19 18:28,"493 6th St, New York City, NY 10001" -224088,Wired Headphones,1,11.99,07/16/19 21:34,"769 Cherry St, Dallas, TX 75001" -224089,AAA Batteries (4-pack),1,2.99,07/23/19 17:45,"329 Hill St, Atlanta, GA 30301" -224090,Wired Headphones,1,11.99,07/13/19 19:23,"524 Ridge St, Atlanta, GA 30301" -224091,Lightning Charging Cable,1,14.95,07/20/19 22:16,"428 Lake St, Boston, MA 02215" -224092,AA Batteries (4-pack),1,3.84,07/17/19 14:28,"711 Wilson St, New York City, NY 10001" -224093,USB-C Charging Cable,1,11.95,07/18/19 13:02,"556 13th St, Portland, ME 04101" -224094,27in FHD Monitor,1,149.99,07/08/19 20:26,"524 10th St, Los Angeles, CA 90001" -224095,AA Batteries (4-pack),1,3.84,07/04/19 22:10,"80 Main St, New York City, NY 10001" -224096,34in Ultrawide Monitor,1,379.99,07/28/19 12:11,"695 Pine St, San Francisco, CA 94016" -224097,Apple Airpods Headphones,1,150,07/29/19 18:45,"362 5th St, San Francisco, CA 94016" -224098,Apple Airpods Headphones,1,150,07/10/19 10:32,"330 4th St, Dallas, TX 75001" -224099,AAA Batteries (4-pack),1,2.99,07/06/19 11:52,"795 Spruce St, Dallas, TX 75001" -224100,AAA Batteries (4-pack),1,2.99,07/07/19 10:30,"929 Cedar St, Los Angeles, CA 90001" -224101,Lightning Charging Cable,1,14.95,07/20/19 22:03,"47 Willow St, Portland, OR 97035" -224102,Lightning Charging Cable,1,14.95,07/28/19 13:25,"242 Park St, Austin, TX 73301" -224103,Lightning Charging Cable,1,14.95,07/15/19 11:26,"35 Maple St, Los Angeles, CA 90001" -224104,iPhone,1,700,07/20/19 23:36,"858 Walnut St, San Francisco, CA 94016" -224105,AA Batteries (4-pack),2,3.84,07/06/19 18:44,"209 Jackson St, Boston, MA 02215" -224106,AAA Batteries (4-pack),2,2.99,07/24/19 22:40,"866 West St, San Francisco, CA 94016" -224107,Bose SoundSport Headphones,1,99.99,07/18/19 10:57,"460 Church St, New York City, NY 10001" -224108,AA Batteries (4-pack),1,3.84,07/13/19 21:55,"781 Wilson St, New York City, NY 10001" -224109,Lightning Charging Cable,1,14.95,07/02/19 15:17,"268 Spruce St, Los Angeles, CA 90001" -224110,iPhone,1,700,07/16/19 21:38,"110 11th St, New York City, NY 10001" -224111,USB-C Charging Cable,1,11.95,07/22/19 09:43,"324 7th St, New York City, NY 10001" -224112,Lightning Charging Cable,1,14.95,07/14/19 21:15,"184 Walnut St, San Francisco, CA 94016" -224113,AA Batteries (4-pack),2,3.84,07/25/19 15:31,"244 Adams St, Boston, MA 02215" -224114,Wired Headphones,1,11.99,07/09/19 12:55,"133 Lincoln St, Austin, TX 73301" -224115,USB-C Charging Cable,2,11.95,07/15/19 19:40,"660 Johnson St, San Francisco, CA 94016" -224116,Wired Headphones,1,11.99,07/04/19 14:05,"198 9th St, Los Angeles, CA 90001" -224117,Bose SoundSport Headphones,1,99.99,07/10/19 12:57,"859 11th St, San Francisco, CA 94016" -224118,Apple Airpods Headphones,1,150,07/28/19 11:43,"87 10th St, Austin, TX 73301" -224119,Bose SoundSport Headphones,1,99.99,07/02/19 14:11,"219 Wilson St, Boston, MA 02215" -224120,AA Batteries (4-pack),1,3.84,07/11/19 14:16,"254 1st St, San Francisco, CA 94016" -224121,Bose SoundSport Headphones,1,99.99,07/11/19 12:48,"826 1st St, Austin, TX 73301" -224122,Wired Headphones,3,11.99,07/21/19 21:26,"395 Meadow St, Atlanta, GA 30301" -224123,27in FHD Monitor,1,149.99,07/13/19 05:33,"931 Hickory St, Dallas, TX 75001" -224124,Apple Airpods Headphones,1,150,07/21/19 07:31,"493 Center St, Boston, MA 02215" -224125,Macbook Pro Laptop,1,1700,07/21/19 20:58,"501 Cherry St, New York City, NY 10001" -224126,27in 4K Gaming Monitor,1,389.99,07/07/19 19:22,"595 Meadow St, New York City, NY 10001" -224127,AA Batteries (4-pack),1,3.84,07/18/19 12:33,"679 5th St, Los Angeles, CA 90001" -224128,Lightning Charging Cable,1,14.95,07/15/19 14:23,"581 Dogwood St, Portland, OR 97035" -224129,AA Batteries (4-pack),2,3.84,07/06/19 13:36,"702 11th St, Dallas, TX 75001" -224130,AA Batteries (4-pack),1,3.84,07/13/19 20:50,"968 12th St, San Francisco, CA 94016" -224131,Lightning Charging Cable,1,14.95,07/05/19 00:40,"35 Park St, New York City, NY 10001" -224132,AA Batteries (4-pack),1,3.84,07/31/19 11:48,"498 11th St, San Francisco, CA 94016" -224133,Apple Airpods Headphones,1,150,07/30/19 15:17,"250 Main St, Austin, TX 73301" -224134,Flatscreen TV,1,300,07/29/19 21:00,"812 Wilson St, Seattle, WA 98101" -224135,Lightning Charging Cable,1,14.95,07/12/19 19:19,"483 North St, Austin, TX 73301" -224136,USB-C Charging Cable,1,11.95,07/28/19 00:32,"34 Hickory St, Los Angeles, CA 90001" -224137,Lightning Charging Cable,1,14.95,07/03/19 14:06,"441 1st St, San Francisco, CA 94016" -224138,AAA Batteries (4-pack),1,2.99,07/14/19 09:30,"108 Ridge St, Austin, TX 73301" -224139,USB-C Charging Cable,1,11.95,07/31/19 12:05,"305 4th St, Boston, MA 02215" -224140,Wired Headphones,1,11.99,07/21/19 18:47,"323 Center St, New York City, NY 10001" -224141,Bose SoundSport Headphones,1,99.99,07/28/19 18:05,"170 6th St, San Francisco, CA 94016" -224141,AA Batteries (4-pack),1,3.84,07/28/19 18:05,"170 6th St, San Francisco, CA 94016" -224142,27in FHD Monitor,1,149.99,07/15/19 21:21,"552 Park St, San Francisco, CA 94016" -224143,AA Batteries (4-pack),1,3.84,07/20/19 19:14,"802 2nd St, New York City, NY 10001" -224144,Bose SoundSport Headphones,1,99.99,07/22/19 22:04,"165 1st St, San Francisco, CA 94016" -224144,Apple Airpods Headphones,1,150,07/22/19 22:04,"165 1st St, San Francisco, CA 94016" -224145,USB-C Charging Cable,1,11.95,07/04/19 12:18,"747 Hickory St, Los Angeles, CA 90001" -224146,USB-C Charging Cable,1,11.95,07/07/19 16:40,"434 Lake St, Los Angeles, CA 90001" -224147,USB-C Charging Cable,1,11.95,07/18/19 16:50,"19 South St, San Francisco, CA 94016" -224148,AA Batteries (4-pack),2,3.84,07/19/19 00:07,"121 Hickory St, Dallas, TX 75001" -224149,Google Phone,1,600,07/08/19 21:26,"418 North St, Portland, OR 97035" -224150,Bose SoundSport Headphones,1,99.99,07/06/19 07:25,"8 Cedar St, Los Angeles, CA 90001" -224151,Macbook Pro Laptop,1,1700,07/16/19 12:19,"481 Sunset St, New York City, NY 10001" -224152,USB-C Charging Cable,2,11.95,07/24/19 17:51,"962 Chestnut St, Atlanta, GA 30301" -224153,AAA Batteries (4-pack),1,2.99,07/26/19 15:44,"167 Spruce St, Dallas, TX 75001" -224154,Flatscreen TV,1,300,07/23/19 20:11,"898 14th St, San Francisco, CA 94016" -224155,Flatscreen TV,1,300,07/16/19 11:26,"843 10th St, San Francisco, CA 94016" -224156,Bose SoundSport Headphones,1,99.99,07/19/19 13:41,"169 Cherry St, Portland, OR 97035" -224157,USB-C Charging Cable,1,11.95,07/19/19 20:35,"946 6th St, Atlanta, GA 30301" -224158,AAA Batteries (4-pack),2,2.99,07/31/19 14:11,"573 Pine St, San Francisco, CA 94016" -224159,Bose SoundSport Headphones,1,99.99,07/08/19 20:56,"368 Washington St, Los Angeles, CA 90001" -224160,20in Monitor,1,109.99,07/06/19 16:48,"611 Lincoln St, San Francisco, CA 94016" -224161,AA Batteries (4-pack),1,3.84,07/28/19 12:51,"440 13th St, San Francisco, CA 94016" -224162,Bose SoundSport Headphones,1,99.99,07/03/19 07:03,"202 Adams St, San Francisco, CA 94016" -224163,27in FHD Monitor,1,149.99,07/07/19 18:01,"271 Hill St, San Francisco, CA 94016" -224164,Wired Headphones,1,11.99,07/21/19 15:09,"16 Church St, Los Angeles, CA 90001" -224165,34in Ultrawide Monitor,1,379.99,07/21/19 16:23,"162 North St, Los Angeles, CA 90001" -224166,AA Batteries (4-pack),1,3.84,07/07/19 10:11,"706 Chestnut St, San Francisco, CA 94016" -224167,Lightning Charging Cable,1,14.95,07/16/19 19:15,"714 River St, San Francisco, CA 94016" -224168,Bose SoundSport Headphones,1,99.99,07/07/19 12:20,"958 Sunset St, San Francisco, CA 94016" -224169,Google Phone,1,600,07/11/19 20:38,"143 Ridge St, Seattle, WA 98101" -224170,Wired Headphones,1,11.99,07/07/19 13:41,"310 Cedar St, New York City, NY 10001" -224171,AA Batteries (4-pack),1,3.84,07/08/19 16:14,"936 Willow St, San Francisco, CA 94016" -224172,AA Batteries (4-pack),1,3.84,07/15/19 20:35,"208 Highland St, Los Angeles, CA 90001" -224173,Wired Headphones,1,11.99,07/16/19 18:36,"23 West St, Dallas, TX 75001" -224174,Lightning Charging Cable,1,14.95,07/11/19 22:05,"803 Ridge St, Boston, MA 02215" -224175,Apple Airpods Headphones,1,150,07/07/19 22:58,"35 Meadow St, Dallas, TX 75001" -224176,Bose SoundSport Headphones,1,99.99,07/25/19 14:10,"48 10th St, Los Angeles, CA 90001" -224177,AAA Batteries (4-pack),2,2.99,07/15/19 22:52,"212 5th St, Seattle, WA 98101" -224178,Apple Airpods Headphones,1,150,07/09/19 22:07,"676 Dogwood St, Los Angeles, CA 90001" -224179,34in Ultrawide Monitor,1,379.99,07/10/19 12:19,"15 Highland St, Boston, MA 02215" -224180,Lightning Charging Cable,1,14.95,07/03/19 18:05,"569 Chestnut St, Boston, MA 02215" -224181,Bose SoundSport Headphones,1,99.99,07/26/19 14:02,"621 Chestnut St, New York City, NY 10001" -224182,20in Monitor,1,109.99,07/07/19 22:48,"40 Willow St, Dallas, TX 75001" -224183,Lightning Charging Cable,1,14.95,07/22/19 14:37,"669 River St, Los Angeles, CA 90001" -224184,AA Batteries (4-pack),1,3.84,07/24/19 12:23,"541 Chestnut St, Atlanta, GA 30301" -224185,Wired Headphones,1,11.99,07/22/19 01:08,"398 Park St, New York City, NY 10001" -224186,Bose SoundSport Headphones,1,99.99,07/25/19 15:07,"434 Cedar St, New York City, NY 10001" -224187,Google Phone,1,600,07/12/19 10:05,"429 Ridge St, Dallas, TX 75001" -224188,Wired Headphones,1,11.99,07/13/19 09:14,"5 West St, Dallas, TX 75001" -224189,AAA Batteries (4-pack),1,2.99,07/26/19 18:20,"686 12th St, San Francisco, CA 94016" -224190,Bose SoundSport Headphones,1,99.99,07/24/19 21:50,"450 Sunset St, Los Angeles, CA 90001" -224191,20in Monitor,1,109.99,07/29/19 09:47,"280 Sunset St, Dallas, TX 75001" -224192,iPhone,1,700,07/15/19 17:03,"241 11th St, San Francisco, CA 94016" -224192,Apple Airpods Headphones,1,150,07/15/19 17:03,"241 11th St, San Francisco, CA 94016" -224193,Lightning Charging Cable,1,14.95,07/07/19 17:09,"586 Lake St, Seattle, WA 98101" -224194,Apple Airpods Headphones,1,150,07/03/19 16:25,"155 Center St, Dallas, TX 75001" -224195,AA Batteries (4-pack),1,3.84,07/20/19 13:36,"182 Church St, San Francisco, CA 94016" -224196,AA Batteries (4-pack),1,3.84,07/26/19 20:11,"352 10th St, San Francisco, CA 94016" -224196,Wired Headphones,1,11.99,07/26/19 20:11,"352 10th St, San Francisco, CA 94016" -224197,Bose SoundSport Headphones,1,99.99,07/22/19 17:10,"741 Center St, New York City, NY 10001" -224198,Bose SoundSport Headphones,1,99.99,07/09/19 08:32,"567 7th St, Atlanta, GA 30301" -224199,Flatscreen TV,1,300,07/07/19 22:29,"289 Highland St, San Francisco, CA 94016" -224200,AAA Batteries (4-pack),2,2.99,07/30/19 15:57,"978 10th St, New York City, NY 10001" -224201,Wired Headphones,1,11.99,07/13/19 08:31,"900 2nd St, Seattle, WA 98101" -224202,Apple Airpods Headphones,1,150,07/14/19 08:17,"229 12th St, San Francisco, CA 94016" -224203,Google Phone,1,600,07/15/19 10:20,"677 West St, Atlanta, GA 30301" -224204,AA Batteries (4-pack),3,3.84,07/21/19 13:32,"324 Madison St, San Francisco, CA 94016" -224205,Lightning Charging Cable,1,14.95,07/14/19 08:19,"818 2nd St, San Francisco, CA 94016" -224206,Apple Airpods Headphones,1,150,07/31/19 17:47,"984 Cedar St, Austin, TX 73301" -224207,iPhone,1,700,07/01/19 15:26,"744 Hill St, New York City, NY 10001" -224207,Lightning Charging Cable,1,14.95,07/01/19 15:26,"744 Hill St, New York City, NY 10001" -224208,USB-C Charging Cable,1,11.95,07/05/19 12:31,"905 North St, Boston, MA 02215" -224209,Apple Airpods Headphones,1,150,07/10/19 19:53,"883 Washington St, Atlanta, GA 30301" -224210,AA Batteries (4-pack),2,3.84,07/22/19 20:19,"585 Forest St, Dallas, TX 75001" -224211,Lightning Charging Cable,1,14.95,07/15/19 18:34,"373 Pine St, Boston, MA 02215" -224212,AAA Batteries (4-pack),3,2.99,07/08/19 09:15,"292 Chestnut St, San Francisco, CA 94016" -224213,AAA Batteries (4-pack),1,2.99,07/22/19 22:49,"608 Center St, Los Angeles, CA 90001" -224214,Bose SoundSport Headphones,1,99.99,07/07/19 09:27,"992 Jackson St, Los Angeles, CA 90001" -224215,AA Batteries (4-pack),2,3.84,07/30/19 11:05,"595 Madison St, Portland, OR 97035" -224216,Wired Headphones,1,11.99,07/30/19 16:53,"78 14th St, Seattle, WA 98101" -224217,Bose SoundSport Headphones,1,99.99,07/25/19 08:20,"110 Lincoln St, San Francisco, CA 94016" -224218,Apple Airpods Headphones,1,150,07/15/19 10:43,"936 Walnut St, Austin, TX 73301" -224219,USB-C Charging Cable,1,11.95,07/30/19 11:21,"31 River St, San Francisco, CA 94016" -224220,Bose SoundSport Headphones,1,99.99,07/20/19 21:05,"525 Johnson St, San Francisco, CA 94016" -224221,Wired Headphones,1,11.99,07/05/19 20:00,"34 14th St, New York City, NY 10001" -224222,AAA Batteries (4-pack),1,2.99,07/14/19 17:36,"369 Highland St, San Francisco, CA 94016" -224223,iPhone,1,700,07/27/19 14:36,"341 Willow St, Dallas, TX 75001" -224224,Bose SoundSport Headphones,1,99.99,07/17/19 12:24,"267 Lakeview St, Los Angeles, CA 90001" -224225,AA Batteries (4-pack),1,3.84,07/14/19 21:29,"536 Madison St, Austin, TX 73301" -224226,Flatscreen TV,1,300,07/31/19 16:57,"657 Sunset St, San Francisco, CA 94016" -224227,USB-C Charging Cable,1,11.95,07/18/19 22:05,"771 Cedar St, Atlanta, GA 30301" -224228,Lightning Charging Cable,1,14.95,07/13/19 14:05,"756 Pine St, Los Angeles, CA 90001" -224229,AAA Batteries (4-pack),1,2.99,07/12/19 14:11,"813 Chestnut St, San Francisco, CA 94016" -224230,Flatscreen TV,1,300,07/22/19 04:08,"784 Washington St, Los Angeles, CA 90001" -224231,AA Batteries (4-pack),1,3.84,07/20/19 19:08,"411 Hill St, New York City, NY 10001" -224232,AA Batteries (4-pack),1,3.84,07/19/19 00:23,"612 Madison St, Atlanta, GA 30301" -224233,USB-C Charging Cable,1,11.95,07/31/19 09:41,"824 Cedar St, Boston, MA 02215" -224234,ThinkPad Laptop,1,999.99,07/12/19 14:24,"629 10th St, San Francisco, CA 94016" -224235,USB-C Charging Cable,3,11.95,07/22/19 01:37,"349 Forest St, New York City, NY 10001" -224236,AAA Batteries (4-pack),1,2.99,07/05/19 20:11,"680 Lakeview St, Boston, MA 02215" -224237,AAA Batteries (4-pack),1,2.99,07/20/19 21:24,"917 2nd St, Atlanta, GA 30301" -224238,Lightning Charging Cable,1,14.95,07/08/19 19:01,"190 Lincoln St, Boston, MA 02215" -224239,27in FHD Monitor,1,149.99,07/12/19 14:29,"663 Madison St, Los Angeles, CA 90001" -224240,20in Monitor,1,109.99,07/20/19 12:08,"955 1st St, San Francisco, CA 94016" -224241,Wired Headphones,1,11.99,07/18/19 22:46,"362 Walnut St, Atlanta, GA 30301" -224242,27in 4K Gaming Monitor,1,389.99,07/18/19 19:44,"770 Walnut St, New York City, NY 10001" -224243,AAA Batteries (4-pack),1,2.99,07/23/19 19:18,"755 Cherry St, Los Angeles, CA 90001" -224244,Wired Headphones,1,11.99,07/06/19 21:12,"956 North St, New York City, NY 10001" -224245,27in FHD Monitor,1,149.99,07/01/19 09:33,"619 Forest St, Los Angeles, CA 90001" -224246,Apple Airpods Headphones,1,150,07/28/19 17:43,"146 Walnut St, San Francisco, CA 94016" -224247,Lightning Charging Cable,1,14.95,07/12/19 12:54,"335 Walnut St, San Francisco, CA 94016" -224248,Lightning Charging Cable,1,14.95,07/27/19 13:35,"956 8th St, Portland, OR 97035" -224249,Flatscreen TV,1,300,07/28/19 11:01,"637 Dogwood St, Boston, MA 02215" -224250,Apple Airpods Headphones,1,150,07/08/19 10:21,"44 South St, Los Angeles, CA 90001" -224251,Wired Headphones,1,11.99,07/07/19 19:55,"118 Wilson St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -224252,Flatscreen TV,1,300,07/14/19 16:54,"659 Forest St, New York City, NY 10001" -224253,Lightning Charging Cable,1,14.95,07/09/19 19:06,"739 Main St, Los Angeles, CA 90001" -224254,20in Monitor,1,109.99,07/24/19 10:35,"178 Dogwood St, San Francisco, CA 94016" -224255,Bose SoundSport Headphones,1,99.99,07/15/19 15:21,"103 Johnson St, San Francisco, CA 94016" -224256,Lightning Charging Cable,1,14.95,07/16/19 05:49,"389 Chestnut St, Los Angeles, CA 90001" -224257,iPhone,1,700,07/04/19 21:56,"781 Walnut St, New York City, NY 10001" -224257,Wired Headphones,1,11.99,07/04/19 21:56,"781 Walnut St, New York City, NY 10001" -224258,Wired Headphones,1,11.99,07/02/19 09:50,"657 Highland St, Boston, MA 02215" -224259,AAA Batteries (4-pack),1,2.99,07/18/19 19:04,"60 Dogwood St, Los Angeles, CA 90001" -224260,AAA Batteries (4-pack),1,2.99,07/14/19 11:16,"633 Madison St, San Francisco, CA 94016" -224261,Bose SoundSport Headphones,1,99.99,07/27/19 14:07,"128 Park St, New York City, NY 10001" -224262,Wired Headphones,1,11.99,07/31/19 14:04,"677 Wilson St, Los Angeles, CA 90001" -224263,Macbook Pro Laptop,1,1700,07/13/19 11:51,"842 8th St, San Francisco, CA 94016" -224264,Apple Airpods Headphones,1,150,07/27/19 20:28,"367 Wilson St, Seattle, WA 98101" -224265,AA Batteries (4-pack),2,3.84,07/20/19 23:40,"305 North St, Atlanta, GA 30301" -224266,Lightning Charging Cable,1,14.95,07/31/19 09:25,"669 Meadow St, Boston, MA 02215" -224267,Wired Headphones,1,11.99,07/24/19 13:06,"830 1st St, New York City, NY 10001" -224268,USB-C Charging Cable,1,11.95,07/21/19 20:57,"974 13th St, San Francisco, CA 94016" -224269,Bose SoundSport Headphones,1,99.99,07/12/19 13:09,"160 Hill St, Seattle, WA 98101" -224270,Flatscreen TV,1,300,07/25/19 00:58,"4 4th St, Los Angeles, CA 90001" -224271,27in FHD Monitor,1,149.99,07/28/19 19:51,"284 Wilson St, Atlanta, GA 30301" -224272,AAA Batteries (4-pack),1,2.99,07/07/19 22:05,"401 Ridge St, San Francisco, CA 94016" -224273,27in 4K Gaming Monitor,1,389.99,07/22/19 14:31,"609 Walnut St, San Francisco, CA 94016" -224274,iPhone,1,700,07/10/19 20:52,"946 North St, New York City, NY 10001" -224275,Wired Headphones,1,11.99,07/02/19 12:39,"523 Maple St, Atlanta, GA 30301" -224276,34in Ultrawide Monitor,1,379.99,07/22/19 11:04,"172 Elm St, Dallas, TX 75001" -224277,Lightning Charging Cable,1,14.95,07/01/19 16:21,"339 Lakeview St, San Francisco, CA 94016" -224278,Wired Headphones,1,11.99,07/24/19 03:30,"871 8th St, Seattle, WA 98101" -224279,Wired Headphones,1,11.99,07/02/19 17:24,"317 Madison St, San Francisco, CA 94016" -224280,27in FHD Monitor,1,149.99,07/13/19 17:29,"645 Hickory St, Boston, MA 02215" -224281,USB-C Charging Cable,1,11.95,07/09/19 22:40,"619 2nd St, Austin, TX 73301" -224282,iPhone,1,700,07/06/19 10:23,"396 9th St, Dallas, TX 75001" -224283,Flatscreen TV,1,300,07/10/19 16:19,"128 Lakeview St, Atlanta, GA 30301" -224284,AA Batteries (4-pack),2,3.84,07/13/19 04:44,"753 Willow St, San Francisco, CA 94016" -224285,Flatscreen TV,1,300,07/13/19 07:23,"570 8th St, Los Angeles, CA 90001" -224286,20in Monitor,1,109.99,07/20/19 14:38,"929 9th St, Portland, OR 97035" -224287,27in 4K Gaming Monitor,1,389.99,07/04/19 10:20,"395 Hickory St, Los Angeles, CA 90001" -224288,AAA Batteries (4-pack),1,2.99,07/06/19 08:41,"865 Hickory St, Los Angeles, CA 90001" -224289,Bose SoundSport Headphones,1,99.99,07/06/19 10:46,"959 Johnson St, Dallas, TX 75001" -224290,Vareebadd Phone,1,400,07/28/19 23:01,"623 South St, Los Angeles, CA 90001" -224291,Google Phone,1,600,07/03/19 18:29,"859 Church St, Seattle, WA 98101" -224291,Wired Headphones,1,11.99,07/03/19 18:29,"859 Church St, Seattle, WA 98101" -224292,AAA Batteries (4-pack),1,2.99,07/09/19 12:08,"336 Washington St, New York City, NY 10001" -224293,AA Batteries (4-pack),1,3.84,07/10/19 00:52,"370 Jackson St, Austin, TX 73301" -224294,Wired Headphones,1,11.99,07/20/19 00:55,"546 Chestnut St, Los Angeles, CA 90001" -224295,USB-C Charging Cable,1,11.95,07/31/19 10:46,"355 Sunset St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -224296,Flatscreen TV,1,300,07/14/19 16:55,"465 Hill St, New York City, NY 10001" -224297,Flatscreen TV,1,300,07/11/19 10:01,"186 Lakeview St, New York City, NY 10001" -224298,20in Monitor,1,109.99,07/18/19 12:31,"170 13th St, Austin, TX 73301" -224299,USB-C Charging Cable,1,11.95,07/19/19 00:02,"325 River St, Atlanta, GA 30301" -224300,AA Batteries (4-pack),2,3.84,07/01/19 22:09,"896 Dogwood St, Boston, MA 02215" -224301,Wired Headphones,1,11.99,07/10/19 23:07,"515 Hill St, Seattle, WA 98101" -224302,AA Batteries (4-pack),1,3.84,07/21/19 03:41,"951 Maple St, New York City, NY 10001" -224303,AA Batteries (4-pack),1,3.84,07/31/19 14:16,"123 Lakeview St, San Francisco, CA 94016" -224304,Lightning Charging Cable,1,14.95,07/30/19 13:15,"309 Chestnut St, San Francisco, CA 94016" -224305,Bose SoundSport Headphones,1,99.99,07/10/19 22:01,"306 Pine St, San Francisco, CA 94016" -224306,USB-C Charging Cable,1,11.95,07/11/19 16:21,"436 11th St, Seattle, WA 98101" -224307,Google Phone,1,600,07/22/19 21:01,"345 Wilson St, Los Angeles, CA 90001" -224308,Lightning Charging Cable,1,14.95,07/02/19 17:41,"231 6th St, Portland, OR 97035" -224309,27in FHD Monitor,1,149.99,07/03/19 21:00,"386 Walnut St, Portland, OR 97035" -224310,USB-C Charging Cable,1,11.95,07/26/19 13:21,"669 14th St, Dallas, TX 75001" -224311,Google Phone,1,600,07/10/19 20:09,"83 Chestnut St, Atlanta, GA 30301" -224312,20in Monitor,1,109.99,07/16/19 15:33,"916 Walnut St, Los Angeles, CA 90001" -224313,34in Ultrawide Monitor,1,379.99,07/19/19 20:18,"244 Church St, Los Angeles, CA 90001" -224314,Wired Headphones,3,11.99,07/25/19 13:01,"498 South St, San Francisco, CA 94016" -224315,Apple Airpods Headphones,1,150,07/04/19 14:12,"257 1st St, San Francisco, CA 94016" -224316,Macbook Pro Laptop,1,1700,07/06/19 17:31,"193 12th St, Los Angeles, CA 90001" -224317,27in 4K Gaming Monitor,1,389.99,07/12/19 11:19,"325 13th St, Los Angeles, CA 90001" -224318,27in FHD Monitor,1,149.99,07/21/19 11:30,"578 Adams St, Atlanta, GA 30301" -224319,20in Monitor,1,109.99,07/24/19 21:18,"192 West St, Atlanta, GA 30301" -224320,Bose SoundSport Headphones,1,99.99,07/31/19 10:40,"105 Jefferson St, Los Angeles, CA 90001" -224321,AAA Batteries (4-pack),1,2.99,07/16/19 12:31,"464 North St, San Francisco, CA 94016" -224322,AA Batteries (4-pack),1,3.84,07/31/19 08:01,"956 Cedar St, Boston, MA 02215" -224323,Wired Headphones,1,11.99,07/01/19 16:03,"360 Lincoln St, Dallas, TX 75001" -224324,Apple Airpods Headphones,1,150,07/06/19 01:01,"42 Lake St, Boston, MA 02215" -224325,AAA Batteries (4-pack),3,2.99,07/07/19 18:33,"214 Willow St, Los Angeles, CA 90001" -224326,Bose SoundSport Headphones,1,99.99,07/16/19 19:50,"313 Adams St, Los Angeles, CA 90001" -224327,Wired Headphones,1,11.99,07/07/19 12:14,"612 Dogwood St, Austin, TX 73301" -224328,Apple Airpods Headphones,1,150,07/16/19 16:33,"716 Meadow St, Dallas, TX 75001" -224329,34in Ultrawide Monitor,1,379.99,07/13/19 16:18,"25 Lakeview St, San Francisco, CA 94016" -224330,iPhone,1,700,07/07/19 19:15,"989 Forest St, Boston, MA 02215" -224331,Wired Headphones,1,11.99,07/30/19 23:44,"986 7th St, Portland, ME 04101" -224332,Wired Headphones,1,11.99,07/10/19 18:00,"811 7th St, Dallas, TX 75001" -224333,AA Batteries (4-pack),1,3.84,07/05/19 21:11,"68 Chestnut St, Los Angeles, CA 90001" -224334,Apple Airpods Headphones,1,150,07/12/19 11:03,"656 Washington St, Boston, MA 02215" -224335,AAA Batteries (4-pack),2,2.99,07/29/19 23:55,"393 Lake St, New York City, NY 10001" -224336,Bose SoundSport Headphones,1,99.99,07/23/19 17:58,"939 West St, San Francisco, CA 94016" -224337,Lightning Charging Cable,1,14.95,07/16/19 22:11,"105 South St, Boston, MA 02215" -224338,USB-C Charging Cable,1,11.95,07/26/19 10:22,"272 10th St, San Francisco, CA 94016" -224339,Lightning Charging Cable,1,14.95,07/22/19 20:27,"603 Park St, Atlanta, GA 30301" -224340,Lightning Charging Cable,1,14.95,07/11/19 18:16,"82 Sunset St, Seattle, WA 98101" -224341,Flatscreen TV,1,300,07/16/19 15:21,"233 South St, Los Angeles, CA 90001" -224342,Bose SoundSport Headphones,1,99.99,07/14/19 16:26,"954 Wilson St, Los Angeles, CA 90001" -224343,AAA Batteries (4-pack),1,2.99,07/22/19 11:00,"20 North St, New York City, NY 10001" -224344,Flatscreen TV,1,300,07/22/19 21:43,"925 10th St, Dallas, TX 75001" -224345,ThinkPad Laptop,1,999.99,07/30/19 21:20,"240 Park St, San Francisco, CA 94016" -224345,Lightning Charging Cable,1,14.95,07/30/19 21:20,"240 Park St, San Francisco, CA 94016" -224346,34in Ultrawide Monitor,1,379.99,07/24/19 12:36,"451 9th St, San Francisco, CA 94016" -224347,Bose SoundSport Headphones,1,99.99,07/31/19 13:03,"880 Sunset St, New York City, NY 10001" -224348,Wired Headphones,1,11.99,07/26/19 16:22,"902 Lake St, San Francisco, CA 94016" -224349,Macbook Pro Laptop,1,1700,07/14/19 20:50,"93 6th St, New York City, NY 10001" -224350,Flatscreen TV,1,300,07/22/19 16:33,"834 Center St, Atlanta, GA 30301" -224351,34in Ultrawide Monitor,1,379.99,07/25/19 20:52,"729 North St, Atlanta, GA 30301" -224351,Bose SoundSport Headphones,1,99.99,07/25/19 20:52,"729 North St, Atlanta, GA 30301" -224352,34in Ultrawide Monitor,1,379.99,07/05/19 23:26,"994 Pine St, Dallas, TX 75001" -224353,Macbook Pro Laptop,1,1700,07/18/19 05:28,"244 13th St, San Francisco, CA 94016" -224354,Wired Headphones,1,11.99,07/28/19 10:46,"105 Cedar St, Seattle, WA 98101" -224355,27in 4K Gaming Monitor,1,389.99,07/19/19 20:16,"200 12th St, San Francisco, CA 94016" -224356,Apple Airpods Headphones,1,150,07/12/19 18:58,"187 West St, Boston, MA 02215" -224357,Lightning Charging Cable,1,14.95,07/04/19 14:31,"301 Main St, Los Angeles, CA 90001" -224358,Bose SoundSport Headphones,1,99.99,07/11/19 10:03,"185 Lakeview St, Seattle, WA 98101" -224359,Lightning Charging Cable,1,14.95,07/16/19 17:06,"33 Lincoln St, Boston, MA 02215" -224360,Apple Airpods Headphones,1,150,07/30/19 10:21,"133 9th St, Portland, OR 97035" -224361,Wired Headphones,1,11.99,07/23/19 19:36,"612 12th St, Boston, MA 02215" -224362,AA Batteries (4-pack),6,3.84,07/20/19 11:27,"626 Dogwood St, San Francisco, CA 94016" -224363,AAA Batteries (4-pack),1,2.99,07/14/19 21:35,"876 4th St, Los Angeles, CA 90001" -224364,AA Batteries (4-pack),1,3.84,07/12/19 17:25,"77 7th St, Atlanta, GA 30301" -224365,20in Monitor,1,109.99,07/22/19 00:02,"346 Wilson St, Seattle, WA 98101" -224366,Apple Airpods Headphones,1,150,07/23/19 18:42,"64 Spruce St, Boston, MA 02215" -224367,Lightning Charging Cable,2,14.95,07/02/19 11:42,"558 Cedar St, San Francisco, CA 94016" -224368,AAA Batteries (4-pack),1,2.99,07/23/19 11:52,"682 Lake St, New York City, NY 10001" -224369,Lightning Charging Cable,1,14.95,07/23/19 17:57,"383 Jefferson St, San Francisco, CA 94016" -224370,Apple Airpods Headphones,1,150,07/13/19 06:40,"666 River St, San Francisco, CA 94016" -224371,27in 4K Gaming Monitor,1,389.99,07/06/19 10:07,"452 10th St, San Francisco, CA 94016" -224372,AAA Batteries (4-pack),1,2.99,07/11/19 21:07,"826 Hickory St, Los Angeles, CA 90001" -224373,AAA Batteries (4-pack),1,2.99,07/11/19 13:37,"429 Center St, Austin, TX 73301" -224374,iPhone,1,700,07/08/19 13:33,"883 Lake St, San Francisco, CA 94016" -224374,Lightning Charging Cable,1,14.95,07/08/19 13:33,"883 Lake St, San Francisco, CA 94016" -224375,Google Phone,1,600,07/13/19 11:39,"549 Madison St, Boston, MA 02215" -224376,AA Batteries (4-pack),2,3.84,07/06/19 23:47,"222 10th St, Dallas, TX 75001" -224377,20in Monitor,1,109.99,07/06/19 23:32,"822 Hickory St, Boston, MA 02215" -224378,Google Phone,1,600,07/30/19 13:55,"424 12th St, Portland, OR 97035" -224378,Wired Headphones,1,11.99,07/30/19 13:55,"424 12th St, Portland, OR 97035" -224379,20in Monitor,1,109.99,07/04/19 21:25,"859 12th St, San Francisco, CA 94016" -224380,Wired Headphones,2,11.99,07/02/19 02:27,"853 11th St, San Francisco, CA 94016" -224381,USB-C Charging Cable,1,11.95,07/08/19 16:38,"901 Spruce St, Atlanta, GA 30301" -224382,Bose SoundSport Headphones,1,99.99,07/26/19 17:04,"422 Willow St, Los Angeles, CA 90001" -224383,AA Batteries (4-pack),1,3.84,07/14/19 23:30,"135 Jackson St, Los Angeles, CA 90001" -224384,iPhone,1,700,07/17/19 16:28,"659 Cedar St, Los Angeles, CA 90001" -224385,Lightning Charging Cable,1,14.95,07/19/19 14:08,"184 Meadow St, Boston, MA 02215" -224386,Wired Headphones,2,11.99,07/08/19 23:29,"863 Cherry St, Austin, TX 73301" -224387,Bose SoundSport Headphones,1,99.99,07/03/19 14:52,"636 7th St, New York City, NY 10001" -224388,Lightning Charging Cable,1,14.95,07/07/19 17:05,"136 Main St, Los Angeles, CA 90001" -224389,AAA Batteries (4-pack),1,2.99,07/09/19 20:08,"133 8th St, Dallas, TX 75001" -224390,AAA Batteries (4-pack),1,2.99,07/13/19 21:10,"385 Spruce St, San Francisco, CA 94016" -224391,AA Batteries (4-pack),1,3.84,07/18/19 21:26,"457 Lincoln St, Boston, MA 02215" -224392,20in Monitor,1,109.99,07/15/19 10:26,"841 Willow St, San Francisco, CA 94016" -224393,Macbook Pro Laptop,1,1700,07/26/19 23:58,"197 1st St, New York City, NY 10001" -224394,Apple Airpods Headphones,1,150,07/24/19 11:16,"148 Church St, Atlanta, GA 30301" -224395,Bose SoundSport Headphones,1,99.99,07/06/19 11:21,"268 5th St, Seattle, WA 98101" -224396,Wired Headphones,1,11.99,07/07/19 02:10,"648 Elm St, Seattle, WA 98101" -224397,Wired Headphones,1,11.99,07/07/19 12:23,"671 Dogwood St, San Francisco, CA 94016" -224398,AA Batteries (4-pack),1,3.84,07/23/19 22:52,"604 Lincoln St, Portland, OR 97035" -224399,AA Batteries (4-pack),1,3.84,07/18/19 14:44,"928 Jackson St, Los Angeles, CA 90001" -224400,AAA Batteries (4-pack),1,2.99,07/12/19 20:16,"175 7th St, Seattle, WA 98101" -224401,Apple Airpods Headphones,1,150,07/31/19 13:25,"724 8th St, Boston, MA 02215" -224402,iPhone,1,700,07/15/19 13:15,"555 6th St, Boston, MA 02215" -224403,USB-C Charging Cable,2,11.95,07/03/19 02:01,"66 14th St, San Francisco, CA 94016" -224404,Google Phone,1,600,07/21/19 12:51,"935 North St, San Francisco, CA 94016" -224405,USB-C Charging Cable,1,11.95,07/17/19 19:20,"805 8th St, Dallas, TX 75001" -224406,ThinkPad Laptop,1,999.99,07/07/19 13:33,"869 6th St, Atlanta, GA 30301" -224407,USB-C Charging Cable,1,11.95,07/25/19 19:31,"408 Hickory St, Los Angeles, CA 90001" -224408,USB-C Charging Cable,1,11.95,07/10/19 11:24,"274 6th St, San Francisco, CA 94016" -224409,Flatscreen TV,1,300,07/05/19 14:53,"900 Cedar St, New York City, NY 10001" -224410,Lightning Charging Cable,1,14.95,07/14/19 23:18,"517 7th St, Boston, MA 02215" -224411,AAA Batteries (4-pack),1,2.99,07/22/19 15:20,"979 Jefferson St, Seattle, WA 98101" -224412,AAA Batteries (4-pack),1,2.99,07/20/19 20:34,"805 Willow St, San Francisco, CA 94016" -224413,Wired Headphones,1,11.99,07/01/19 13:12,"151 Main St, Boston, MA 02215" -224414,USB-C Charging Cable,1,11.95,07/10/19 22:46,"971 Lincoln St, San Francisco, CA 94016" -224415,AAA Batteries (4-pack),1,2.99,07/25/19 21:05,"987 Maple St, Boston, MA 02215" -224416,27in FHD Monitor,1,149.99,07/12/19 17:27,"485 13th St, San Francisco, CA 94016" -224417,Bose SoundSport Headphones,1,99.99,07/26/19 20:02,"960 Cherry St, Portland, OR 97035" -224418,27in 4K Gaming Monitor,1,389.99,07/04/19 10:01,"508 8th St, San Francisco, CA 94016" -224419,USB-C Charging Cable,1,11.95,07/18/19 11:08,"601 9th St, Dallas, TX 75001" -224420,Google Phone,1,600,07/04/19 17:13,"644 2nd St, Atlanta, GA 30301" -224421,Wired Headphones,1,11.99,07/14/19 17:01,"860 Hill St, New York City, NY 10001" -224422,Apple Airpods Headphones,1,150,07/16/19 14:03,"762 Forest St, Austin, TX 73301" -224423,Lightning Charging Cable,1,14.95,07/10/19 13:42,"314 Adams St, New York City, NY 10001" -224424,Bose SoundSport Headphones,1,99.99,07/12/19 11:19,"272 8th St, New York City, NY 10001" -224425,Bose SoundSport Headphones,1,99.99,07/20/19 19:34,"81 Hill St, Atlanta, GA 30301" -224426,USB-C Charging Cable,1,11.95,07/04/19 23:41,"497 Lakeview St, Atlanta, GA 30301" -224427,USB-C Charging Cable,1,11.95,07/29/19 00:07,"296 4th St, Portland, ME 04101" -224428,AA Batteries (4-pack),1,3.84,07/02/19 16:07,"583 Maple St, Atlanta, GA 30301" -224429,Apple Airpods Headphones,1,150,07/24/19 15:05,"964 Ridge St, Seattle, WA 98101" -224430,Wired Headphones,1,11.99,07/14/19 21:17,"39 10th St, Los Angeles, CA 90001" -224431,Apple Airpods Headphones,1,150,07/26/19 00:03,"898 Park St, San Francisco, CA 94016" -224432,USB-C Charging Cable,1,11.95,07/26/19 05:46,"272 Main St, San Francisco, CA 94016" -224433,20in Monitor,1,109.99,07/15/19 20:14,"734 Johnson St, Los Angeles, CA 90001" -224434,Bose SoundSport Headphones,1,99.99,07/22/19 20:31,"707 Chestnut St, San Francisco, CA 94016" -224435,Lightning Charging Cable,2,14.95,07/06/19 15:02,"830 Dogwood St, Seattle, WA 98101" -224436,Apple Airpods Headphones,1,150,07/05/19 17:01,"250 2nd St, Los Angeles, CA 90001" -224437,AA Batteries (4-pack),1,3.84,07/01/19 14:43,"539 Washington St, Los Angeles, CA 90001" -224438,AAA Batteries (4-pack),1,2.99,07/23/19 00:05,"405 Cedar St, Los Angeles, CA 90001" -224439,Wired Headphones,1,11.99,07/28/19 19:34,"905 River St, Los Angeles, CA 90001" -224440,34in Ultrawide Monitor,1,379.99,07/02/19 12:30,"132 4th St, San Francisco, CA 94016" -224441,Bose SoundSport Headphones,1,99.99,07/28/19 11:12,"843 Dogwood St, Boston, MA 02215" -224442,AA Batteries (4-pack),1,3.84,07/18/19 12:43,"823 West St, San Francisco, CA 94016" -224443,AA Batteries (4-pack),2,3.84,07/14/19 07:14,"912 Pine St, Los Angeles, CA 90001" -224444,Apple Airpods Headphones,1,150,07/01/19 17:45,"753 Jefferson St, Los Angeles, CA 90001" -224445,USB-C Charging Cable,1,11.95,07/08/19 19:56,"557 7th St, Seattle, WA 98101" -224446,Apple Airpods Headphones,1,150,07/23/19 15:34,"931 1st St, Atlanta, GA 30301" -224447,34in Ultrawide Monitor,1,379.99,07/30/19 12:56,"348 River St, Seattle, WA 98101" -224448,Wired Headphones,2,11.99,07/10/19 23:21,"613 Lake St, Atlanta, GA 30301" -224449,Lightning Charging Cable,1,14.95,07/17/19 22:01,"584 Maple St, Atlanta, GA 30301" -224450,27in 4K Gaming Monitor,1,389.99,07/05/19 13:09,"199 North St, Seattle, WA 98101" -224451,Macbook Pro Laptop,1,1700,07/11/19 17:56,"884 North St, Los Angeles, CA 90001" -224452,27in 4K Gaming Monitor,1,389.99,07/16/19 08:29,"155 Jefferson St, Seattle, WA 98101" -224453,AAA Batteries (4-pack),1,2.99,07/13/19 02:32,"356 Elm St, Dallas, TX 75001" -224454,27in FHD Monitor,1,149.99,07/24/19 12:48,"552 Center St, San Francisco, CA 94016" -224455,27in FHD Monitor,1,149.99,07/21/19 20:08,"668 6th St, Los Angeles, CA 90001" -224456,Wired Headphones,1,11.99,07/18/19 22:25,"108 13th St, New York City, NY 10001" -224457,Flatscreen TV,1,300,07/07/19 22:27,"480 Park St, New York City, NY 10001" -224458,Lightning Charging Cable,1,14.95,07/04/19 13:37,"690 Jefferson St, San Francisco, CA 94016" -224459,Wired Headphones,1,11.99,07/07/19 17:50,"634 River St, New York City, NY 10001" -224460,20in Monitor,1,109.99,07/14/19 20:54,"57 Wilson St, San Francisco, CA 94016" -224461,34in Ultrawide Monitor,1,379.99,07/02/19 17:07,"924 River St, Seattle, WA 98101" -224462,34in Ultrawide Monitor,1,379.99,07/28/19 19:45,"431 Cherry St, Dallas, TX 75001" -224463,20in Monitor,1,109.99,07/01/19 20:38,"386 South St, Los Angeles, CA 90001" -224464,27in FHD Monitor,1,149.99,07/11/19 08:32,"282 Cherry St, Dallas, TX 75001" -224465,AAA Batteries (4-pack),2,2.99,07/23/19 16:59,"111 13th St, Austin, TX 73301" -224466,Wired Headphones,1,11.99,07/22/19 23:08,"554 1st St, Seattle, WA 98101" -224467,AAA Batteries (4-pack),2,2.99,07/29/19 17:14,"684 Highland St, Los Angeles, CA 90001" -224468,Lightning Charging Cable,1,14.95,07/13/19 22:46,"524 Spruce St, Boston, MA 02215" -224469,Lightning Charging Cable,1,14.95,07/28/19 20:02,"660 5th St, Los Angeles, CA 90001" -224470,AAA Batteries (4-pack),1,2.99,07/19/19 15:20,"420 Lake St, Boston, MA 02215" -224471,AAA Batteries (4-pack),1,2.99,07/25/19 20:58,"270 South St, Boston, MA 02215" -224472,27in FHD Monitor,1,149.99,07/05/19 14:40,"124 Lake St, Dallas, TX 75001" -224473,Flatscreen TV,1,300,07/17/19 20:49,"538 Dogwood St, San Francisco, CA 94016" -224474,27in 4K Gaming Monitor,1,389.99,07/20/19 13:18,"781 Center St, Boston, MA 02215" -224475,AA Batteries (4-pack),1,3.84,07/28/19 21:32,"48 Chestnut St, Atlanta, GA 30301" -224476,Lightning Charging Cable,1,14.95,07/31/19 08:29,"269 4th St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -224477,AA Batteries (4-pack),1,3.84,07/28/19 12:07,"375 8th St, Boston, MA 02215" -224478,AA Batteries (4-pack),1,3.84,07/02/19 20:56,"358 Forest St, New York City, NY 10001" -224479,27in FHD Monitor,1,149.99,07/27/19 16:52,"767 Hill St, Los Angeles, CA 90001" -224480,Flatscreen TV,1,300,07/13/19 11:01,"689 4th St, San Francisco, CA 94016" -224481,Vareebadd Phone,1,400,07/21/19 00:11,"487 Maple St, Seattle, WA 98101" -224481,USB-C Charging Cable,1,11.95,07/21/19 00:11,"487 Maple St, Seattle, WA 98101" -224482,AA Batteries (4-pack),1,3.84,07/01/19 17:57,"264 Center St, New York City, NY 10001" -224483,Flatscreen TV,1,300,07/31/19 23:42,"540 Maple St, San Francisco, CA 94016" -224484,AAA Batteries (4-pack),1,2.99,07/14/19 23:11,"507 Washington St, New York City, NY 10001" -224485,Apple Airpods Headphones,1,150,07/02/19 22:56,"984 Jackson St, Los Angeles, CA 90001" -224486,27in FHD Monitor,1,149.99,07/18/19 15:28,"211 Lake St, San Francisco, CA 94016" -224487,Bose SoundSport Headphones,1,99.99,07/17/19 20:54,"370 9th St, San Francisco, CA 94016" -224488,AA Batteries (4-pack),1,3.84,07/04/19 17:01,"678 6th St, Atlanta, GA 30301" -224489,Flatscreen TV,1,300,07/21/19 09:47,"816 Maple St, San Francisco, CA 94016" -224490,Google Phone,1,600,07/19/19 20:35,"986 Adams St, New York City, NY 10001" -224490,Wired Headphones,1,11.99,07/19/19 20:35,"986 Adams St, New York City, NY 10001" -224491,Google Phone,1,600,07/10/19 14:23,"425 1st St, San Francisco, CA 94016" -224492,Wired Headphones,1,11.99,07/01/19 18:20,"364 River St, Boston, MA 02215" -224493,Bose SoundSport Headphones,1,99.99,07/16/19 20:33,"409 10th St, San Francisco, CA 94016" -224494,iPhone,1,700,07/17/19 15:43,"427 Cedar St, New York City, NY 10001" -224494,AA Batteries (4-pack),1,3.84,07/17/19 15:43,"427 Cedar St, New York City, NY 10001" -224495,USB-C Charging Cable,1,11.95,07/14/19 22:13,"520 Meadow St, Austin, TX 73301" -224496,AAA Batteries (4-pack),1,2.99,07/12/19 18:28,"531 6th St, Austin, TX 73301" -224497,Lightning Charging Cable,1,14.95,07/10/19 10:53,"162 8th St, Austin, TX 73301" -224498,27in FHD Monitor,1,149.99,07/12/19 21:52,"418 6th St, Atlanta, GA 30301" -224499,27in FHD Monitor,1,149.99,07/20/19 14:41,"986 Dogwood St, Portland, OR 97035" -224500,Lightning Charging Cable,1,14.95,07/11/19 18:05,"649 Lincoln St, San Francisco, CA 94016" -224501,iPhone,1,700,07/14/19 13:40,"70 Wilson St, San Francisco, CA 94016" -224501,Wired Headphones,1,11.99,07/14/19 13:40,"70 Wilson St, San Francisco, CA 94016" -224502,Apple Airpods Headphones,1,150,07/31/19 06:03,"773 6th St, Los Angeles, CA 90001" -224503,Wired Headphones,1,11.99,07/15/19 09:08,"24 Ridge St, Dallas, TX 75001" -224504,USB-C Charging Cable,2,11.95,07/15/19 09:09,"686 8th St, Los Angeles, CA 90001" -224505,Lightning Charging Cable,1,14.95,07/17/19 12:47,"726 6th St, San Francisco, CA 94016" -224506,Apple Airpods Headphones,1,150,07/26/19 09:24,"939 Sunset St, Seattle, WA 98101" -224507,iPhone,1,700,07/05/19 20:59,"971 Meadow St, Portland, OR 97035" -224508,Vareebadd Phone,1,400,07/05/19 19:51,"898 11th St, New York City, NY 10001" -224508,USB-C Charging Cable,1,11.95,07/05/19 19:51,"898 11th St, New York City, NY 10001" -224509,AAA Batteries (4-pack),1,2.99,07/19/19 23:22,"80 9th St, Los Angeles, CA 90001" -224510,Apple Airpods Headphones,1,150,07/31/19 19:29,"474 River St, Los Angeles, CA 90001" -224511,Lightning Charging Cable,2,14.95,07/17/19 21:25,"405 14th St, Dallas, TX 75001" -224512,AA Batteries (4-pack),1,3.84,07/15/19 12:06,"219 Highland St, San Francisco, CA 94016" -,,,,, -224513,AAA Batteries (4-pack),1,2.99,07/06/19 08:59,"735 6th St, Seattle, WA 98101" -224514,USB-C Charging Cable,2,11.95,07/21/19 14:00,"417 12th St, San Francisco, CA 94016" -224515,27in FHD Monitor,1,149.99,07/09/19 12:07,"473 5th St, Austin, TX 73301" -224516,Bose SoundSport Headphones,1,99.99,07/28/19 21:03,"839 Johnson St, Austin, TX 73301" -224517,Lightning Charging Cable,1,14.95,07/02/19 13:49,"510 Wilson St, San Francisco, CA 94016" -224518,Bose SoundSport Headphones,1,99.99,07/20/19 11:23,"684 1st St, Dallas, TX 75001" -224519,Bose SoundSport Headphones,1,99.99,07/05/19 18:39,"432 Highland St, San Francisco, CA 94016" -224520,AA Batteries (4-pack),2,3.84,07/22/19 18:43,"21 Washington St, Los Angeles, CA 90001" -224521,Bose SoundSport Headphones,1,99.99,07/21/19 09:09,"655 Chestnut St, Atlanta, GA 30301" -224522,USB-C Charging Cable,1,11.95,07/11/19 18:45,"543 Johnson St, New York City, NY 10001" -224523,27in 4K Gaming Monitor,1,389.99,07/31/19 12:06,"406 6th St, New York City, NY 10001" -224524,USB-C Charging Cable,1,11.95,07/25/19 03:18,"983 Johnson St, Austin, TX 73301" -224525,Wired Headphones,1,11.99,07/04/19 07:02,"325 Church St, Dallas, TX 75001" -224526,AAA Batteries (4-pack),2,2.99,07/20/19 20:19,"429 10th St, Atlanta, GA 30301" -224527,20in Monitor,1,109.99,07/01/19 12:08,"625 Elm St, Boston, MA 02215" -224528,USB-C Charging Cable,1,11.95,07/11/19 16:44,"536 Forest St, San Francisco, CA 94016" -224529,ThinkPad Laptop,1,999.99,07/26/19 22:55,"760 Hill St, Dallas, TX 75001" -224530,Apple Airpods Headphones,1,150,07/03/19 21:28,"240 West St, Dallas, TX 75001" -224531,Lightning Charging Cable,1,14.95,07/12/19 13:59,"607 2nd St, San Francisco, CA 94016" -224532,AAA Batteries (4-pack),1,2.99,07/01/19 22:51,"674 7th St, Dallas, TX 75001" -224533,Lightning Charging Cable,1,14.95,07/05/19 20:24,"806 12th St, Dallas, TX 75001" -224534,Lightning Charging Cable,1,14.95,07/13/19 20:43,"166 Hill St, Atlanta, GA 30301" -224535,AAA Batteries (4-pack),1,2.99,07/27/19 13:31,"619 River St, Los Angeles, CA 90001" -224536,Wired Headphones,1,11.99,07/18/19 18:33,"815 Sunset St, Los Angeles, CA 90001" -224537,34in Ultrawide Monitor,1,379.99,07/05/19 19:19,"98 Walnut St, Austin, TX 73301" -224538,Apple Airpods Headphones,1,150,07/14/19 16:53,"980 8th St, Austin, TX 73301" -224539,Apple Airpods Headphones,1,150,07/11/19 10:29,"588 Adams St, Dallas, TX 75001" -224540,Lightning Charging Cable,1,14.95,07/30/19 19:11,"126 Hickory St, Portland, OR 97035" -224541,Bose SoundSport Headphones,1,99.99,07/14/19 21:49,"179 2nd St, Los Angeles, CA 90001" -224542,USB-C Charging Cable,1,11.95,07/11/19 21:50,"657 Willow St, Los Angeles, CA 90001" -224543,Apple Airpods Headphones,1,150,07/02/19 13:08,"273 8th St, Dallas, TX 75001" -224544,Bose SoundSport Headphones,1,99.99,07/18/19 09:53,"988 River St, New York City, NY 10001" -224545,Lightning Charging Cable,1,14.95,07/21/19 16:34,"725 4th St, Boston, MA 02215" -224546,27in FHD Monitor,1,149.99,07/29/19 11:20,"817 Jackson St, Los Angeles, CA 90001" -224547,Apple Airpods Headphones,1,150,07/29/19 20:43,"345 Cherry St, Dallas, TX 75001" -224548,AA Batteries (4-pack),1,3.84,07/17/19 16:28,"967 Adams St, San Francisco, CA 94016" -224549,Apple Airpods Headphones,1,150,07/14/19 01:03,"422 Main St, San Francisco, CA 94016" -224550,Wired Headphones,1,11.99,07/01/19 09:27,"676 11th St, San Francisco, CA 94016" -224551,Wired Headphones,1,11.99,07/20/19 22:46,"554 8th St, New York City, NY 10001" -224552,Lightning Charging Cable,1,14.95,07/11/19 14:53,"568 Cedar St, Los Angeles, CA 90001" -224553,Apple Airpods Headphones,1,150,07/22/19 10:21,"488 Center St, New York City, NY 10001" -224554,AA Batteries (4-pack),2,3.84,07/26/19 17:59,"643 Pine St, San Francisco, CA 94016" -224555,AAA Batteries (4-pack),1,2.99,07/02/19 13:19,"826 North St, Los Angeles, CA 90001" -224556,USB-C Charging Cable,1,11.95,07/21/19 01:25,"156 Church St, San Francisco, CA 94016" -224557,AA Batteries (4-pack),1,3.84,07/23/19 13:49,"111 Willow St, San Francisco, CA 94016" -224558,Lightning Charging Cable,1,14.95,07/17/19 18:57,"991 7th St, Atlanta, GA 30301" -224559,Flatscreen TV,1,300,07/16/19 20:06,"542 Chestnut St, Los Angeles, CA 90001" -224560,Apple Airpods Headphones,1,150,07/09/19 09:06,"401 7th St, New York City, NY 10001" -224561,LG Dryer,1,600.0,07/05/19 22:04,"19 6th St, Los Angeles, CA 90001" -224562,AA Batteries (4-pack),1,3.84,07/06/19 12:25,"22 Johnson St, Los Angeles, CA 90001" -224563,34in Ultrawide Monitor,1,379.99,07/24/19 11:11,"560 Church St, Los Angeles, CA 90001" -224564,34in Ultrawide Monitor,1,379.99,07/27/19 00:44,"594 12th St, San Francisco, CA 94016" -224565,Wired Headphones,1,11.99,07/03/19 12:25,"636 South St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -224566,AAA Batteries (4-pack),1,2.99,07/02/19 15:47,"505 Cherry St, Portland, OR 97035" -224567,Wired Headphones,2,11.99,07/20/19 20:52,"153 Hickory St, Boston, MA 02215" -224568,AAA Batteries (4-pack),1,2.99,07/14/19 16:50,"688 Walnut St, Seattle, WA 98101" -224569,27in 4K Gaming Monitor,1,389.99,07/12/19 11:30,"621 Sunset St, San Francisco, CA 94016" -224570,27in FHD Monitor,1,149.99,07/08/19 20:30,"73 Main St, New York City, NY 10001" -224571,AA Batteries (4-pack),1,3.84,07/16/19 11:58,"298 Main St, Seattle, WA 98101" -224572,Wired Headphones,1,11.99,07/18/19 11:57,"965 Hill St, Dallas, TX 75001" -224573,AAA Batteries (4-pack),1,2.99,07/01/19 20:24,"810 2nd St, Boston, MA 02215" -224573,USB-C Charging Cable,1,11.95,07/01/19 20:24,"810 2nd St, Boston, MA 02215" -224574,Flatscreen TV,1,300,07/26/19 22:16,"60 5th St, Austin, TX 73301" -224575,iPhone,1,700,07/20/19 23:12,"259 2nd St, Boston, MA 02215" -224576,Google Phone,1,600,07/16/19 07:27,"885 Lake St, New York City, NY 10001" -224577,Bose SoundSport Headphones,1,99.99,07/29/19 20:57,"633 9th St, Portland, OR 97035" -224578,34in Ultrawide Monitor,1,379.99,07/19/19 10:52,"140 Dogwood St, San Francisco, CA 94016" -224579,Wired Headphones,1,11.99,07/03/19 22:09,"103 10th St, Los Angeles, CA 90001" -224580,AA Batteries (4-pack),1,3.84,07/15/19 02:44,"208 8th St, Los Angeles, CA 90001" -224581,Flatscreen TV,1,300,07/11/19 18:06,"649 Pine St, New York City, NY 10001" -224582,Wired Headphones,1,11.99,07/27/19 09:13,"434 Dogwood St, Seattle, WA 98101" -224583,27in 4K Gaming Monitor,1,389.99,07/10/19 01:02,"734 8th St, Atlanta, GA 30301" -224584,Wired Headphones,1,11.99,07/01/19 19:23,"590 13th St, San Francisco, CA 94016" -224585,Lightning Charging Cable,1,14.95,07/26/19 19:20,"297 Highland St, Los Angeles, CA 90001" -224586,AAA Batteries (4-pack),5,2.99,07/12/19 20:08,"83 Wilson St, Los Angeles, CA 90001" -224587,Macbook Pro Laptop,1,1700,07/14/19 19:50,"861 2nd St, Austin, TX 73301" -224588,Lightning Charging Cable,1,14.95,07/05/19 15:44,"771 8th St, Boston, MA 02215" -224589,Apple Airpods Headphones,1,150,07/25/19 00:03,"654 4th St, San Francisco, CA 94016" -224590,Bose SoundSport Headphones,1,99.99,07/02/19 04:40,"359 River St, San Francisco, CA 94016" -224591,AAA Batteries (4-pack),3,2.99,07/01/19 18:36,"672 Cherry St, Los Angeles, CA 90001" -224592,USB-C Charging Cable,2,11.95,07/05/19 11:02,"905 13th St, New York City, NY 10001" -224593,Apple Airpods Headphones,1,150,07/25/19 18:29,"916 West St, San Francisco, CA 94016" -224594,AAA Batteries (4-pack),3,2.99,07/11/19 10:19,"423 Chestnut St, Austin, TX 73301" -224595,AA Batteries (4-pack),2,3.84,07/31/19 13:08,"941 Center St, New York City, NY 10001" -224596,Lightning Charging Cable,1,14.95,07/31/19 17:49,"828 12th St, Boston, MA 02215" -224597,Wired Headphones,2,11.99,07/23/19 22:18,"433 Walnut St, Atlanta, GA 30301" -224598,Lightning Charging Cable,1,14.95,07/18/19 10:56,"21 Madison St, San Francisco, CA 94016" -224599,Apple Airpods Headphones,1,150,07/12/19 11:33,"269 8th St, San Francisco, CA 94016" -224600,USB-C Charging Cable,1,11.95,07/24/19 16:33,"302 Hill St, New York City, NY 10001" -224601,iPhone,1,700,07/28/19 11:34,"855 Spruce St, Boston, MA 02215" -224602,AA Batteries (4-pack),1,3.84,07/15/19 16:08,"157 South St, Seattle, WA 98101" -224603,Bose SoundSport Headphones,1,99.99,07/24/19 14:00,"270 14th St, Dallas, TX 75001" -224604,Apple Airpods Headphones,1,150,07/25/19 18:59,"921 Spruce St, Atlanta, GA 30301" -224605,AA Batteries (4-pack),1,3.84,07/13/19 05:54,"974 Center St, San Francisco, CA 94016" -224606,Lightning Charging Cable,1,14.95,07/30/19 11:36,"432 Chestnut St, Seattle, WA 98101" -224607,Bose SoundSport Headphones,1,99.99,07/17/19 21:00,"53 13th St, New York City, NY 10001" -224608,Lightning Charging Cable,1,14.95,07/14/19 21:47,"769 9th St, Seattle, WA 98101" -224609,Wired Headphones,1,11.99,07/21/19 18:48,"731 Willow St, San Francisco, CA 94016" -224610,Bose SoundSport Headphones,1,99.99,07/15/19 15:03,"724 Lakeview St, Boston, MA 02215" -224611,20in Monitor,1,109.99,07/20/19 18:13,"20 Forest St, San Francisco, CA 94016" -224612,ThinkPad Laptop,1,999.99,07/03/19 18:28,"66 Center St, Dallas, TX 75001" -224613,AA Batteries (4-pack),2,3.84,07/25/19 19:43,"573 West St, New York City, NY 10001" -224614,Apple Airpods Headphones,1,150,07/12/19 05:20,"297 1st St, Los Angeles, CA 90001" -224615,ThinkPad Laptop,1,999.99,07/13/19 03:03,"300 9th St, Seattle, WA 98101" -224616,Lightning Charging Cable,1,14.95,07/15/19 08:59,"675 13th St, Los Angeles, CA 90001" -224617,AA Batteries (4-pack),1,3.84,07/27/19 12:25,"636 Elm St, Dallas, TX 75001" -224618,AA Batteries (4-pack),1,3.84,07/02/19 21:43,"541 Lakeview St, Portland, OR 97035" -224619,AA Batteries (4-pack),1,3.84,07/31/19 18:57,"149 Forest St, Portland, OR 97035" -224620,iPhone,1,700,07/18/19 20:45,"464 2nd St, New York City, NY 10001" -224621,USB-C Charging Cable,2,11.95,07/18/19 15:38,"1 4th St, Los Angeles, CA 90001" -224622,Bose SoundSport Headphones,1,99.99,07/25/19 17:24,"428 Madison St, Boston, MA 02215" -224623,Apple Airpods Headphones,1,150,07/13/19 07:34,"100 Meadow St, Boston, MA 02215" -224624,USB-C Charging Cable,1,11.95,07/27/19 19:20,"562 Jackson St, Dallas, TX 75001" -224625,ThinkPad Laptop,1,999.99,07/24/19 11:44,"352 North St, Austin, TX 73301" -224625,AAA Batteries (4-pack),1,2.99,07/24/19 11:44,"352 North St, Austin, TX 73301" -224626,USB-C Charging Cable,1,11.95,07/15/19 08:57,"2 Meadow St, Dallas, TX 75001" -224627,Wired Headphones,1,11.99,07/18/19 18:55,"170 Pine St, Atlanta, GA 30301" -224628,Apple Airpods Headphones,1,150,07/22/19 11:22,"790 8th St, Seattle, WA 98101" -224629,Apple Airpods Headphones,1,150,07/22/19 17:07,"734 Willow St, Dallas, TX 75001" -224630,27in FHD Monitor,1,149.99,07/07/19 14:33,"212 Elm St, New York City, NY 10001" -224631,Lightning Charging Cable,1,14.95,07/22/19 14:47,"72 Madison St, Austin, TX 73301" -224632,Apple Airpods Headphones,1,150,07/26/19 08:59,"673 Lakeview St, Los Angeles, CA 90001" -224633,Wired Headphones,1,11.99,07/15/19 10:24,"347 Johnson St, San Francisco, CA 94016" -224634,AA Batteries (4-pack),1,3.84,07/24/19 10:56,"522 2nd St, Los Angeles, CA 90001" -224635,iPhone,1,700,07/09/19 05:51,"368 Forest St, Seattle, WA 98101" -224636,Apple Airpods Headphones,1,150,07/28/19 15:09,"183 12th St, New York City, NY 10001" -224637,27in 4K Gaming Monitor,1,389.99,07/19/19 11:42,"854 Adams St, New York City, NY 10001" -224638,Lightning Charging Cable,2,14.95,07/08/19 21:40,"353 Elm St, Seattle, WA 98101" -224639,ThinkPad Laptop,1,999.99,07/14/19 10:53,"901 Walnut St, Portland, OR 97035" -224640,AAA Batteries (4-pack),7,2.99,07/02/19 19:20,"847 Wilson St, San Francisco, CA 94016" -224641,Bose SoundSport Headphones,1,99.99,07/23/19 17:25,"123 Ridge St, Portland, OR 97035" -224642,iPhone,1,700,07/13/19 00:38,"508 Sunset St, Boston, MA 02215" -224643,27in 4K Gaming Monitor,1,389.99,07/19/19 12:36,"897 Pine St, New York City, NY 10001" -224644,USB-C Charging Cable,1,11.95,07/14/19 11:03,"75 Hill St, Boston, MA 02215" -224645,27in 4K Gaming Monitor,1,389.99,07/13/19 16:29,"567 Hickory St, Portland, ME 04101" -224646,Macbook Pro Laptop,1,1700,07/25/19 15:11,"514 Johnson St, Atlanta, GA 30301" -224647,USB-C Charging Cable,1,11.95,07/26/19 14:32,"153 Pine St, Portland, OR 97035" -224648,Wired Headphones,1,11.99,07/30/19 10:49,"94 West St, San Francisco, CA 94016" -224649,27in FHD Monitor,1,149.99,07/05/19 15:33,"64 Lincoln St, San Francisco, CA 94016" -224650,AAA Batteries (4-pack),1,2.99,07/06/19 10:55,"188 River St, San Francisco, CA 94016" -224651,Lightning Charging Cable,1,14.95,07/27/19 15:53,"333 West St, Boston, MA 02215" -224652,AA Batteries (4-pack),1,3.84,07/21/19 13:32,"929 2nd St, Los Angeles, CA 90001" -224653,27in FHD Monitor,1,149.99,07/16/19 11:57,"582 12th St, Boston, MA 02215" -224654,27in 4K Gaming Monitor,1,389.99,07/04/19 11:27,"412 Park St, Austin, TX 73301" -224655,20in Monitor,1,109.99,07/26/19 17:50,"858 13th St, Portland, ME 04101" -224656,Apple Airpods Headphones,1,150,07/15/19 16:26,"970 12th St, San Francisco, CA 94016" -224657,AA Batteries (4-pack),2,3.84,07/02/19 17:13,"706 Johnson St, San Francisco, CA 94016" -224658,Wired Headphones,1,11.99,07/03/19 21:11,"774 Sunset St, Atlanta, GA 30301" -224659,Apple Airpods Headphones,1,150,07/23/19 15:41,"885 11th St, Los Angeles, CA 90001" -224660,Wired Headphones,1,11.99,07/07/19 09:39,"770 8th St, Los Angeles, CA 90001" -224661,Lightning Charging Cable,1,14.95,07/11/19 12:31,"723 Walnut St, San Francisco, CA 94016" -224662,Lightning Charging Cable,1,14.95,07/25/19 12:52,"992 Johnson St, San Francisco, CA 94016" -224663,Apple Airpods Headphones,1,150,07/06/19 21:20,"883 Hickory St, Atlanta, GA 30301" -224664,Bose SoundSport Headphones,1,99.99,07/06/19 12:01,"981 13th St, Boston, MA 02215" -224665,Wired Headphones,2,11.99,07/22/19 18:13,"839 Highland St, San Francisco, CA 94016" -224666,AAA Batteries (4-pack),1,2.99,07/29/19 00:21,"79 9th St, San Francisco, CA 94016" -224667,AA Batteries (4-pack),1,3.84,07/30/19 15:53,"800 Elm St, San Francisco, CA 94016" -224668,AA Batteries (4-pack),1,3.84,07/22/19 14:43,"166 Wilson St, San Francisco, CA 94016" -224669,Google Phone,1,600,07/02/19 21:12,"896 14th St, Dallas, TX 75001" -224669,Apple Airpods Headphones,1,150,07/02/19 21:12,"896 14th St, Dallas, TX 75001" -224670,20in Monitor,1,109.99,07/12/19 09:40,"191 Elm St, New York City, NY 10001" -224671,Apple Airpods Headphones,1,150,07/02/19 21:41,"653 Cedar St, Atlanta, GA 30301" -224672,Lightning Charging Cable,1,14.95,07/31/19 13:15,"29 14th St, New York City, NY 10001" -224673,20in Monitor,1,109.99,07/20/19 09:28,"781 Jackson St, San Francisco, CA 94016" -224674,Flatscreen TV,1,300,07/01/19 17:47,"1 4th St, Atlanta, GA 30301" -224675,AA Batteries (4-pack),1,3.84,07/14/19 09:07,"548 12th St, Boston, MA 02215" -224676,Wired Headphones,1,11.99,07/23/19 14:24,"431 Forest St, Los Angeles, CA 90001" -224677,AAA Batteries (4-pack),1,2.99,07/20/19 22:56,"63 1st St, San Francisco, CA 94016" -224678,Wired Headphones,1,11.99,07/01/19 23:07,"920 Wilson St, San Francisco, CA 94016" -224679,Lightning Charging Cable,1,14.95,07/20/19 21:09,"72 Adams St, Boston, MA 02215" -224680,Flatscreen TV,1,300,07/31/19 18:36,"114 Jackson St, Los Angeles, CA 90001" -224681,LG Washing Machine,1,600.0,07/23/19 19:18,"184 Main St, Dallas, TX 75001" -224682,USB-C Charging Cable,1,11.95,07/16/19 00:26,"682 Johnson St, New York City, NY 10001" -224683,Flatscreen TV,1,300,07/25/19 11:55,"10 Johnson St, Dallas, TX 75001" -224684,AAA Batteries (4-pack),1,2.99,07/28/19 07:07,"877 13th St, Seattle, WA 98101" -224685,AAA Batteries (4-pack),1,2.99,07/30/19 19:05,"78 Pine St, Atlanta, GA 30301" -224686,Bose SoundSport Headphones,1,99.99,07/09/19 11:59,"252 Walnut St, Atlanta, GA 30301" -224687,27in FHD Monitor,1,149.99,07/03/19 18:29,"803 14th St, San Francisco, CA 94016" -224688,Google Phone,1,600,07/03/19 19:02,"201 9th St, Boston, MA 02215" -224689,AAA Batteries (4-pack),1,2.99,07/22/19 15:01,"956 12th St, San Francisco, CA 94016" -224690,iPhone,1,700,07/09/19 14:56,"487 Sunset St, Boston, MA 02215" -224691,34in Ultrawide Monitor,1,379.99,07/16/19 16:09,"580 South St, New York City, NY 10001" -224692,AAA Batteries (4-pack),2,2.99,07/23/19 02:37,"91 7th St, Los Angeles, CA 90001" -224693,AAA Batteries (4-pack),1,2.99,07/18/19 09:59,"470 Wilson St, New York City, NY 10001" -224694,Bose SoundSport Headphones,2,99.99,07/24/19 16:24,"173 Meadow St, San Francisco, CA 94016" -224695,Lightning Charging Cable,1,14.95,07/10/19 15:40,"235 South St, New York City, NY 10001" -224696,Wired Headphones,1,11.99,07/26/19 16:20,"857 Walnut St, New York City, NY 10001" -224697,Lightning Charging Cable,1,14.95,07/10/19 07:44,"561 Elm St, Seattle, WA 98101" -224698,Lightning Charging Cable,1,14.95,07/18/19 13:16,"547 Forest St, Austin, TX 73301" -224699,Apple Airpods Headphones,1,150,07/03/19 14:27,"471 12th St, Boston, MA 02215" -224700,Lightning Charging Cable,1,14.95,07/09/19 22:14,"923 9th St, Seattle, WA 98101" -224701,AA Batteries (4-pack),1,3.84,07/22/19 20:23,"649 Jackson St, Atlanta, GA 30301" -224702,Bose SoundSport Headphones,1,99.99,07/15/19 16:15,"681 Hickory St, Dallas, TX 75001" -224703,AA Batteries (4-pack),1,3.84,07/18/19 19:38,"51 Dogwood St, San Francisco, CA 94016" -224704,USB-C Charging Cable,1,11.95,07/07/19 22:52,"986 7th St, Atlanta, GA 30301" -224705,20in Monitor,1,109.99,07/18/19 00:07,"709 Johnson St, Boston, MA 02215" -224706,Lightning Charging Cable,1,14.95,07/08/19 13:32,"351 Spruce St, Los Angeles, CA 90001" -224707,AA Batteries (4-pack),2,3.84,07/26/19 21:31,"59 9th St, Los Angeles, CA 90001" -224708,iPhone,1,700,07/14/19 21:01,"480 Hill St, San Francisco, CA 94016" -224708,Wired Headphones,1,11.99,07/14/19 21:01,"480 Hill St, San Francisco, CA 94016" -224709,Wired Headphones,1,11.99,07/26/19 07:05,"614 Spruce St, Seattle, WA 98101" -224710,Wired Headphones,1,11.99,07/18/19 18:55,"398 4th St, Los Angeles, CA 90001" -224711,Macbook Pro Laptop,1,1700,07/12/19 12:21,"36 Hickory St, San Francisco, CA 94016" -224712,Bose SoundSport Headphones,2,99.99,07/26/19 18:25,"170 River St, New York City, NY 10001" -224713,Apple Airpods Headphones,1,150,07/11/19 19:26,"758 Wilson St, Los Angeles, CA 90001" -224714,20in Monitor,1,109.99,07/14/19 15:24,"608 River St, Seattle, WA 98101" -224715,Macbook Pro Laptop,1,1700,07/11/19 22:04,"706 2nd St, Portland, OR 97035" -224716,USB-C Charging Cable,1,11.95,07/12/19 22:52,"981 Lakeview St, Seattle, WA 98101" -224717,Google Phone,1,600,07/21/19 17:02,"178 14th St, San Francisco, CA 94016" -224718,USB-C Charging Cable,1,11.95,07/11/19 23:33,"374 Jackson St, San Francisco, CA 94016" -224719,AAA Batteries (4-pack),8,2.99,07/26/19 23:59,"876 Adams St, San Francisco, CA 94016" -224720,Vareebadd Phone,1,400,07/21/19 11:21,"540 North St, Boston, MA 02215" -224721,AAA Batteries (4-pack),1,2.99,07/25/19 18:54,"609 Wilson St, San Francisco, CA 94016" -224722,AAA Batteries (4-pack),2,2.99,07/16/19 08:44,"782 7th St, Seattle, WA 98101" -224723,Wired Headphones,1,11.99,07/24/19 11:45,"166 Lincoln St, Boston, MA 02215" -224724,ThinkPad Laptop,1,999.99,07/13/19 11:12,"11 5th St, Seattle, WA 98101" -224725,Lightning Charging Cable,1,14.95,07/15/19 08:44,"361 10th St, San Francisco, CA 94016" -224726,AAA Batteries (4-pack),1,2.99,07/18/19 19:44,"842 Lakeview St, New York City, NY 10001" -224727,AA Batteries (4-pack),1,3.84,07/10/19 12:24,"11 Spruce St, San Francisco, CA 94016" -224728,Wired Headphones,1,11.99,07/19/19 13:24,"714 Jackson St, New York City, NY 10001" -224729,AA Batteries (4-pack),1,3.84,07/26/19 08:34,"632 5th St, Seattle, WA 98101" -224730,Google Phone,1,600,07/10/19 14:20,"608 5th St, San Francisco, CA 94016" -224731,Apple Airpods Headphones,1,150,07/08/19 12:47,"13 River St, Los Angeles, CA 90001" -224732,27in FHD Monitor,1,149.99,07/20/19 09:54,"187 Cedar St, Boston, MA 02215" -224733,Lightning Charging Cable,1,14.95,07/18/19 20:09,"145 Spruce St, Boston, MA 02215" -224734,iPhone,1,700,07/28/19 01:20,"950 9th St, New York City, NY 10001" -224735,Apple Airpods Headphones,1,150,07/23/19 22:57,"727 Dogwood St, Boston, MA 02215" -224736,AA Batteries (4-pack),1,3.84,07/22/19 18:43,"801 Jefferson St, Dallas, TX 75001" -224737,Apple Airpods Headphones,1,150,07/10/19 20:16,"457 10th St, San Francisco, CA 94016" -224738,USB-C Charging Cable,1,11.95,07/28/19 16:08,"243 Maple St, San Francisco, CA 94016" -224739,AA Batteries (4-pack),1,3.84,07/14/19 23:29,"467 Walnut St, Atlanta, GA 30301" -224740,AA Batteries (4-pack),1,3.84,07/25/19 17:39,"616 13th St, Dallas, TX 75001" -224741,27in FHD Monitor,1,149.99,07/18/19 05:31,"203 Hill St, Boston, MA 02215" -224742,AAA Batteries (4-pack),1,2.99,07/14/19 14:03,"744 South St, New York City, NY 10001" -224743,USB-C Charging Cable,1,11.95,07/09/19 23:17,"280 Johnson St, San Francisco, CA 94016" -224744,USB-C Charging Cable,1,11.95,07/30/19 21:41,"102 Walnut St, Boston, MA 02215" -224745,ThinkPad Laptop,1,999.99,07/16/19 14:53,"75 14th St, Atlanta, GA 30301" -224746,Wired Headphones,1,11.99,07/07/19 21:50,"886 6th St, Boston, MA 02215" -224747,AAA Batteries (4-pack),1,2.99,07/08/19 01:40,"166 Pine St, Atlanta, GA 30301" -224748,27in 4K Gaming Monitor,1,389.99,07/05/19 12:37,"342 Hickory St, Dallas, TX 75001" -224749,27in 4K Gaming Monitor,1,389.99,07/06/19 19:21,"280 Washington St, Atlanta, GA 30301" -224750,USB-C Charging Cable,1,11.95,07/28/19 23:58,"604 Chestnut St, Atlanta, GA 30301" -224751,AAA Batteries (4-pack),3,2.99,07/13/19 20:22,"405 Elm St, Seattle, WA 98101" -224752,USB-C Charging Cable,1,11.95,07/12/19 18:17,"621 Lake St, Atlanta, GA 30301" -224753,AA Batteries (4-pack),1,3.84,07/24/19 08:17,"306 11th St, Dallas, TX 75001" -224754,Apple Airpods Headphones,1,150,07/23/19 10:58,"589 7th St, San Francisco, CA 94016" -224755,USB-C Charging Cable,2,11.95,07/17/19 02:01,"74 4th St, Portland, ME 04101" -224756,Bose SoundSport Headphones,1,99.99,07/20/19 09:30,"168 6th St, Portland, OR 97035" -224757,USB-C Charging Cable,1,11.95,07/02/19 09:29,"34 Park St, New York City, NY 10001" -224758,AA Batteries (4-pack),1,3.84,07/01/19 18:44,"745 11th St, San Francisco, CA 94016" -224759,Bose SoundSport Headphones,2,99.99,07/01/19 09:28,"197 Wilson St, Los Angeles, CA 90001" -224760,AA Batteries (4-pack),1,3.84,07/17/19 11:53,"324 Spruce St, Los Angeles, CA 90001" -224760,Google Phone,1,600,07/17/19 11:53,"324 Spruce St, Los Angeles, CA 90001" -224761,Bose SoundSport Headphones,1,99.99,07/14/19 12:20,"317 Sunset St, San Francisco, CA 94016" -224762,34in Ultrawide Monitor,1,379.99,07/21/19 15:28,"383 Adams St, Seattle, WA 98101" -224763,Apple Airpods Headphones,1,150,07/10/19 09:11,"886 Meadow St, Seattle, WA 98101" -224764,LG Dryer,1,600.0,07/28/19 12:27,"930 10th St, Los Angeles, CA 90001" -224765,AA Batteries (4-pack),1,3.84,07/29/19 19:08,"272 9th St, New York City, NY 10001" -224766,Vareebadd Phone,1,400,07/25/19 19:39,"598 Jackson St, San Francisco, CA 94016" -224767,AA Batteries (4-pack),1,3.84,07/14/19 08:13,"376 Lake St, New York City, NY 10001" -224768,AAA Batteries (4-pack),1,2.99,07/14/19 12:06,"674 12th St, San Francisco, CA 94016" -224769,USB-C Charging Cable,1,11.95,07/07/19 12:28,"604 Church St, Boston, MA 02215" -224769,Wired Headphones,1,11.99,07/07/19 12:28,"604 Church St, Boston, MA 02215" -224770,Bose SoundSport Headphones,1,99.99,07/24/19 09:43,"279 West St, Boston, MA 02215" -224771,Bose SoundSport Headphones,1,99.99,07/18/19 19:53,"988 Wilson St, Los Angeles, CA 90001" -224772,AA Batteries (4-pack),2,3.84,07/24/19 11:40,"539 Johnson St, San Francisco, CA 94016" -224773,Macbook Pro Laptop,1,1700,07/23/19 17:01,"990 13th St, Atlanta, GA 30301" -224774,Wired Headphones,1,11.99,07/03/19 08:49,"573 Forest St, Atlanta, GA 30301" -224775,Apple Airpods Headphones,1,150,07/14/19 06:02,"273 4th St, Boston, MA 02215" -224776,Lightning Charging Cable,1,14.95,07/26/19 11:35,"982 Lakeview St, Dallas, TX 75001" -224777,Apple Airpods Headphones,1,150,07/10/19 22:50,"904 Forest St, Atlanta, GA 30301" -224778,AA Batteries (4-pack),1,3.84,07/07/19 06:27,"863 Hill St, Seattle, WA 98101" -224779,27in 4K Gaming Monitor,1,389.99,07/18/19 21:23,"427 Elm St, New York City, NY 10001" -224780,Google Phone,1,600,07/09/19 11:16,"676 8th St, Dallas, TX 75001" -224780,USB-C Charging Cable,1,11.95,07/09/19 11:16,"676 8th St, Dallas, TX 75001" -224780,Bose SoundSport Headphones,1,99.99,07/09/19 11:16,"676 8th St, Dallas, TX 75001" -224781,Apple Airpods Headphones,1,150,07/08/19 20:32,"663 Sunset St, Atlanta, GA 30301" -224782,Lightning Charging Cable,1,14.95,07/27/19 20:51,"998 Meadow St, San Francisco, CA 94016" -224783,27in 4K Gaming Monitor,1,389.99,07/15/19 18:57,"840 Jackson St, Los Angeles, CA 90001" -224784,Google Phone,1,600,07/29/19 09:55,"502 Cherry St, New York City, NY 10001" -224784,USB-C Charging Cable,1,11.95,07/29/19 09:55,"502 Cherry St, New York City, NY 10001" -224785,27in FHD Monitor,1,149.99,07/19/19 23:45,"831 Dogwood St, Boston, MA 02215" -224786,Flatscreen TV,1,300,07/28/19 10:45,"551 6th St, New York City, NY 10001" -224787,AA Batteries (4-pack),1,3.84,07/04/19 21:21,"25 14th St, Atlanta, GA 30301" -224788,AAA Batteries (4-pack),2,2.99,07/24/19 23:46,"323 1st St, Dallas, TX 75001" -224789,34in Ultrawide Monitor,1,379.99,07/08/19 10:44,"205 Forest St, Seattle, WA 98101" -224789,27in FHD Monitor,1,149.99,07/08/19 10:44,"205 Forest St, Seattle, WA 98101" -224790,27in FHD Monitor,1,149.99,07/29/19 09:36,"646 Madison St, Boston, MA 02215" -224791,USB-C Charging Cable,1,11.95,07/10/19 01:55,"880 Main St, Austin, TX 73301" -224792,iPhone,1,700,07/11/19 10:22,"201 Highland St, Atlanta, GA 30301" -224793,20in Monitor,1,109.99,07/06/19 05:36,"851 Forest St, Austin, TX 73301" -224794,Bose SoundSport Headphones,1,99.99,07/24/19 13:42,"335 Church St, Los Angeles, CA 90001" -224795,USB-C Charging Cable,2,11.95,07/07/19 14:09,"983 12th St, San Francisco, CA 94016" -224796,Lightning Charging Cable,1,14.95,07/21/19 08:19,"857 Main St, Seattle, WA 98101" -224797,AA Batteries (4-pack),1,3.84,07/01/19 12:53,"949 West St, Los Angeles, CA 90001" -224798,AA Batteries (4-pack),1,3.84,07/10/19 12:39,"307 South St, New York City, NY 10001" -224799,Apple Airpods Headphones,1,150,07/06/19 17:29,"386 Spruce St, Portland, ME 04101" -224800,Wired Headphones,1,11.99,07/25/19 19:49,"942 Maple St, San Francisco, CA 94016" -224801,AAA Batteries (4-pack),1,2.99,07/08/19 11:13,"794 Elm St, New York City, NY 10001" -224802,Lightning Charging Cable,1,14.95,07/05/19 17:29,"557 Washington St, San Francisco, CA 94016" -224803,AA Batteries (4-pack),2,3.84,07/03/19 10:31,"504 11th St, Boston, MA 02215" -224804,27in FHD Monitor,1,149.99,07/27/19 10:16,"78 South St, Los Angeles, CA 90001" -224805,Lightning Charging Cable,1,14.95,07/24/19 00:20,"60 Willow St, San Francisco, CA 94016" -224806,Apple Airpods Headphones,1,150,07/12/19 16:55,"981 6th St, New York City, NY 10001" -224807,Wired Headphones,1,11.99,07/25/19 23:26,"892 South St, Los Angeles, CA 90001" -224808,Lightning Charging Cable,1,14.95,07/05/19 12:50,"591 West St, San Francisco, CA 94016" -224809,AAA Batteries (4-pack),1,2.99,07/04/19 22:01,"539 7th St, San Francisco, CA 94016" -224810,34in Ultrawide Monitor,1,379.99,07/12/19 17:56,"708 14th St, Los Angeles, CA 90001" -224811,Google Phone,1,600,07/03/19 23:13,"585 12th St, Boston, MA 02215" -224811,Bose SoundSport Headphones,1,99.99,07/03/19 23:13,"585 12th St, Boston, MA 02215" -224812,USB-C Charging Cable,1,11.95,07/22/19 19:05,"569 Maple St, New York City, NY 10001" -224813,Apple Airpods Headphones,1,150,07/16/19 17:42,"54 Lake St, San Francisco, CA 94016" -224814,Lightning Charging Cable,1,14.95,07/26/19 12:15,"353 Church St, Boston, MA 02215" -224815,ThinkPad Laptop,1,999.99,07/16/19 14:39,"38 6th St, Los Angeles, CA 90001" -224816,Wired Headphones,1,11.99,07/11/19 21:49,"993 Willow St, Atlanta, GA 30301" -224817,Lightning Charging Cable,1,14.95,07/28/19 20:16,"18 Washington St, San Francisco, CA 94016" -224818,Lightning Charging Cable,1,14.95,07/12/19 14:04,"584 10th St, San Francisco, CA 94016" -224819,Apple Airpods Headphones,1,150,07/25/19 12:52,"771 Pine St, Seattle, WA 98101" -224820,ThinkPad Laptop,1,999.99,07/30/19 22:36,"19 9th St, San Francisco, CA 94016" -224821,Apple Airpods Headphones,1,150,07/17/19 11:05,"990 8th St, Seattle, WA 98101" -224822,27in FHD Monitor,1,149.99,07/02/19 14:09,"463 North St, Austin, TX 73301" -224823,Wired Headphones,1,11.99,07/25/19 21:44,"201 Johnson St, New York City, NY 10001" -224824,Apple Airpods Headphones,1,150,07/18/19 20:22,"195 Forest St, Seattle, WA 98101" -224825,20in Monitor,1,109.99,07/06/19 11:31,"182 Cherry St, Boston, MA 02215" -224826,LG Dryer,1,600.0,07/18/19 20:53,"134 7th St, Austin, TX 73301" -224827,AA Batteries (4-pack),2,3.84,07/29/19 13:56,"398 Highland St, New York City, NY 10001" -224828,Apple Airpods Headphones,1,150,07/28/19 12:05,"791 10th St, Dallas, TX 75001" -224829,Apple Airpods Headphones,2,150,07/20/19 13:24,"328 Main St, Portland, ME 04101" -224830,Lightning Charging Cable,1,14.95,07/19/19 18:38,"788 Lincoln St, Los Angeles, CA 90001" -224831,Apple Airpods Headphones,1,150,07/16/19 19:33,"212 Lincoln St, San Francisco, CA 94016" -224832,AA Batteries (4-pack),1,3.84,07/16/19 18:56,"726 Lake St, New York City, NY 10001" -224833,27in FHD Monitor,1,149.99,07/30/19 03:34,"768 Maple St, Dallas, TX 75001" -224834,Apple Airpods Headphones,1,150,07/30/19 17:14,"76 Meadow St, Atlanta, GA 30301" -224835,Wired Headphones,1,11.99,07/15/19 19:08,"443 Main St, New York City, NY 10001" -224836,AA Batteries (4-pack),1,3.84,07/05/19 20:19,"34 Highland St, Dallas, TX 75001" -224837,Lightning Charging Cable,1,14.95,07/07/19 07:22,"830 Spruce St, Atlanta, GA 30301" -224838,27in FHD Monitor,1,149.99,07/26/19 21:25,"399 12th St, New York City, NY 10001" -224839,27in 4K Gaming Monitor,1,389.99,07/06/19 14:52,"837 Sunset St, Atlanta, GA 30301" -224840,ThinkPad Laptop,1,999.99,07/26/19 20:42,"304 8th St, Boston, MA 02215" -224840,AAA Batteries (4-pack),6,2.99,07/26/19 20:42,"304 8th St, Boston, MA 02215" -224841,Wired Headphones,1,11.99,07/25/19 12:27,"251 North St, Portland, OR 97035" -224842,34in Ultrawide Monitor,1,379.99,07/27/19 06:16,"303 Ridge St, Portland, ME 04101" -224843,34in Ultrawide Monitor,1,379.99,07/11/19 08:53,"472 Walnut St, San Francisco, CA 94016" -224844,Apple Airpods Headphones,1,150,07/25/19 20:12,"901 6th St, Los Angeles, CA 90001" -224845,Bose SoundSport Headphones,1,99.99,07/04/19 10:31,"560 Church St, Los Angeles, CA 90001" -224846,Wired Headphones,1,11.99,07/23/19 01:18,"646 Main St, San Francisco, CA 94016" -224847,Bose SoundSport Headphones,1,99.99,07/07/19 10:22,"217 Pine St, Boston, MA 02215" -224848,Wired Headphones,1,11.99,07/21/19 08:41,"842 Meadow St, Seattle, WA 98101" -,,,,, -224849,Lightning Charging Cable,1,14.95,07/01/19 07:06,"380 West St, Seattle, WA 98101" -224850,Apple Airpods Headphones,1,150,07/23/19 18:57,"241 9th St, Austin, TX 73301" -224851,Wired Headphones,1,11.99,07/02/19 21:49,"279 Spruce St, Seattle, WA 98101" -224852,Apple Airpods Headphones,1,150,07/25/19 17:31,"941 Chestnut St, Austin, TX 73301" -224853,Bose SoundSport Headphones,1,99.99,07/07/19 00:53,"375 Wilson St, Los Angeles, CA 90001" -224854,Wired Headphones,1,11.99,07/09/19 09:19,"248 Lincoln St, Austin, TX 73301" -224855,Lightning Charging Cable,1,14.95,07/15/19 21:48,"232 Pine St, Boston, MA 02215" -224856,27in 4K Gaming Monitor,1,389.99,07/31/19 15:45,"925 Park St, Portland, OR 97035" -224857,Macbook Pro Laptop,1,1700,07/31/19 22:57,"860 Lakeview St, Seattle, WA 98101" -224858,Bose SoundSport Headphones,1,99.99,07/04/19 14:37,"730 10th St, Austin, TX 73301" -224859,Wired Headphones,1,11.99,07/03/19 15:13,"650 Forest St, Seattle, WA 98101" -224860,34in Ultrawide Monitor,1,379.99,07/13/19 17:15,"735 Spruce St, New York City, NY 10001" -224861,Lightning Charging Cable,1,14.95,07/29/19 20:01,"331 Elm St, San Francisco, CA 94016" -224862,Vareebadd Phone,1,400,07/05/19 00:06,"967 Washington St, San Francisco, CA 94016" -224862,USB-C Charging Cable,1,11.95,07/05/19 00:06,"967 Washington St, San Francisco, CA 94016" -224863,Apple Airpods Headphones,1,150,07/29/19 15:51,"866 River St, Boston, MA 02215" -224864,AA Batteries (4-pack),1,3.84,07/22/19 17:03,"181 4th St, New York City, NY 10001" -224865,Apple Airpods Headphones,1,150,07/17/19 11:01,"275 Forest St, New York City, NY 10001" -224866,Lightning Charging Cable,2,14.95,07/03/19 10:36,"821 Hill St, Portland, OR 97035" -224867,USB-C Charging Cable,1,11.95,07/06/19 13:28,"883 12th St, San Francisco, CA 94016" -224868,Bose SoundSport Headphones,1,99.99,07/02/19 11:40,"853 Pine St, San Francisco, CA 94016" -224869,Apple Airpods Headphones,1,150,07/16/19 03:23,"481 2nd St, Boston, MA 02215" -224870,Macbook Pro Laptop,1,1700,07/22/19 17:04,"74 Church St, Los Angeles, CA 90001" -224871,USB-C Charging Cable,1,11.95,07/20/19 22:38,"154 Ridge St, Boston, MA 02215" -224872,Lightning Charging Cable,1,14.95,07/29/19 11:42,"322 4th St, Los Angeles, CA 90001" -224873,AA Batteries (4-pack),2,3.84,07/18/19 08:37,"775 Jackson St, Dallas, TX 75001" -224874,AAA Batteries (4-pack),1,2.99,07/26/19 13:04,"493 Wilson St, Portland, OR 97035" -224875,AA Batteries (4-pack),1,3.84,07/18/19 14:27,"181 5th St, New York City, NY 10001" -224876,AA Batteries (4-pack),1,3.84,07/05/19 19:19,"172 River St, Seattle, WA 98101" -224877,USB-C Charging Cable,1,11.95,07/09/19 19:51,"884 Adams St, Los Angeles, CA 90001" -224878,34in Ultrawide Monitor,1,379.99,07/26/19 12:34,"697 West St, Boston, MA 02215" -224879,Apple Airpods Headphones,1,150,07/10/19 22:58,"128 Lake St, San Francisco, CA 94016" -224880,AA Batteries (4-pack),1,3.84,07/13/19 18:46,"777 Meadow St, New York City, NY 10001" -224881,iPhone,1,700,07/23/19 17:14,"599 Willow St, Austin, TX 73301" -224881,Lightning Charging Cable,1,14.95,07/23/19 17:14,"599 Willow St, Austin, TX 73301" -224882,Wired Headphones,1,11.99,07/10/19 17:25,"661 Spruce St, Atlanta, GA 30301" -224883,Bose SoundSport Headphones,1,99.99,07/08/19 15:18,"982 6th St, Austin, TX 73301" -224884,AAA Batteries (4-pack),1,2.99,07/30/19 07:48,"347 River St, San Francisco, CA 94016" -224885,AAA Batteries (4-pack),1,2.99,07/18/19 12:12,"570 12th St, Austin, TX 73301" -224886,iPhone,1,700,07/03/19 08:11,"583 13th St, Los Angeles, CA 90001" -224887,USB-C Charging Cable,1,11.95,07/01/19 21:49,"891 Lincoln St, Los Angeles, CA 90001" -224888,Wired Headphones,1,11.99,07/22/19 12:47,"503 14th St, Boston, MA 02215" -224889,Lightning Charging Cable,1,14.95,07/26/19 14:34,"64 Church St, New York City, NY 10001" -224890,Bose SoundSport Headphones,1,99.99,07/12/19 16:38,"191 2nd St, Boston, MA 02215" -224891,Flatscreen TV,1,300,07/12/19 19:10,"436 5th St, New York City, NY 10001" -224892,USB-C Charging Cable,1,11.95,07/21/19 19:59,"256 River St, San Francisco, CA 94016" -224893,27in 4K Gaming Monitor,1,389.99,07/04/19 04:04,"146 Church St, Boston, MA 02215" -224894,27in FHD Monitor,1,149.99,07/29/19 09:09,"282 Main St, Los Angeles, CA 90001" -224895,USB-C Charging Cable,1,11.95,07/18/19 18:14,"529 Willow St, Boston, MA 02215" -224896,ThinkPad Laptop,1,999.99,07/28/19 16:06,"479 Adams St, Los Angeles, CA 90001" -224897,20in Monitor,1,109.99,07/04/19 11:21,"113 Pine St, Boston, MA 02215" -224898,27in 4K Gaming Monitor,1,389.99,07/05/19 16:45,"749 West St, Portland, OR 97035" -224899,Apple Airpods Headphones,1,150,07/04/19 13:55,"807 Sunset St, Atlanta, GA 30301" -224900,AA Batteries (4-pack),1,3.84,07/24/19 12:31,"532 Chestnut St, San Francisco, CA 94016" -224901,USB-C Charging Cable,1,11.95,07/03/19 21:59,"199 Chestnut St, Seattle, WA 98101" -224902,Wired Headphones,1,11.99,07/12/19 09:27,"998 Johnson St, New York City, NY 10001" -224903,LG Washing Machine,1,600.0,07/26/19 01:32,"224 Jackson St, Portland, OR 97035" -224904,20in Monitor,1,109.99,07/01/19 06:08,"474 2nd St, Atlanta, GA 30301" -224905,Wired Headphones,1,11.99,07/07/19 17:16,"730 North St, Atlanta, GA 30301" -224906,AA Batteries (4-pack),1,3.84,07/10/19 17:12,"259 7th St, New York City, NY 10001" -224907,Google Phone,1,600,07/02/19 12:14,"293 2nd St, New York City, NY 10001" -224908,AAA Batteries (4-pack),2,2.99,07/05/19 21:24,"990 Jefferson St, San Francisco, CA 94016" -224909,20in Monitor,1,109.99,07/17/19 09:35,"649 Forest St, New York City, NY 10001" -224910,AAA Batteries (4-pack),1,2.99,07/20/19 22:02,"808 Pine St, Atlanta, GA 30301" -224911,Apple Airpods Headphones,1,150,07/08/19 14:42,"212 Jefferson St, Seattle, WA 98101" -224912,Apple Airpods Headphones,1,150,07/15/19 12:13,"411 River St, Los Angeles, CA 90001" -224913,ThinkPad Laptop,1,999.99,07/15/19 15:24,"745 2nd St, Portland, OR 97035" -224914,Google Phone,1,600,07/07/19 20:29,"801 9th St, San Francisco, CA 94016" -224915,27in FHD Monitor,1,149.99,07/24/19 13:03,"584 Cedar St, Los Angeles, CA 90001" -224916,iPhone,1,700,07/08/19 07:29,"214 Maple St, Portland, OR 97035" -224917,AA Batteries (4-pack),3,3.84,07/01/19 16:38,"647 Jackson St, Dallas, TX 75001" -224918,AAA Batteries (4-pack),1,2.99,07/05/19 13:49,"362 2nd St, Los Angeles, CA 90001" -224919,ThinkPad Laptop,1,999.99,07/20/19 19:08,"769 Madison St, New York City, NY 10001" -224920,Lightning Charging Cable,1,14.95,07/05/19 10:08,"479 8th St, Boston, MA 02215" -224921,34in Ultrawide Monitor,1,379.99,07/19/19 21:33,"548 Church St, New York City, NY 10001" -224922,ThinkPad Laptop,1,999.99,07/19/19 23:50,"398 Main St, Portland, OR 97035" -224923,Google Phone,1,600,07/27/19 17:42,"579 Pine St, Atlanta, GA 30301" -224924,AAA Batteries (4-pack),2,2.99,07/12/19 10:14,"494 Park St, San Francisco, CA 94016" -224925,34in Ultrawide Monitor,1,379.99,07/23/19 13:10,"819 9th St, Boston, MA 02215" -224926,Google Phone,1,600,07/09/19 23:44,"853 Cedar St, Los Angeles, CA 90001" -224927,27in 4K Gaming Monitor,1,389.99,07/27/19 14:25,"556 2nd St, Portland, OR 97035" -224928,27in FHD Monitor,1,149.99,07/27/19 20:07,"679 Walnut St, San Francisco, CA 94016" -224929,USB-C Charging Cable,1,11.95,07/09/19 09:15,"237 Dogwood St, San Francisco, CA 94016" -224930,Wired Headphones,1,11.99,07/29/19 12:02,"637 North St, Boston, MA 02215" -224931,34in Ultrawide Monitor,1,379.99,07/26/19 13:35,"795 Main St, Boston, MA 02215" -224932,AA Batteries (4-pack),1,3.84,07/09/19 06:04,"717 12th St, Seattle, WA 98101" -224933,Google Phone,1,600,07/18/19 18:03,"291 Meadow St, Atlanta, GA 30301" -224934,27in 4K Gaming Monitor,1,389.99,07/01/19 14:26,"512 Adams St, Atlanta, GA 30301" -224935,USB-C Charging Cable,1,11.95,07/11/19 07:43,"753 Main St, Dallas, TX 75001" -224936,Wired Headphones,1,11.99,07/13/19 08:32,"898 Center St, Atlanta, GA 30301" -224937,Flatscreen TV,1,300,07/22/19 14:43,"325 Hill St, San Francisco, CA 94016" -224938,Lightning Charging Cable,1,14.95,07/02/19 15:25,"817 River St, Dallas, TX 75001" -224939,AAA Batteries (4-pack),1,2.99,07/14/19 17:54,"689 9th St, Boston, MA 02215" -224940,Wired Headphones,1,11.99,07/21/19 17:39,"899 8th St, Seattle, WA 98101" -224941,Bose SoundSport Headphones,1,99.99,07/25/19 19:44,"171 Madison St, New York City, NY 10001" -224942,AAA Batteries (4-pack),1,2.99,07/14/19 13:57,"193 Highland St, Seattle, WA 98101" -224943,AA Batteries (4-pack),3,3.84,07/16/19 12:25,"239 11th St, Boston, MA 02215" -224944,Macbook Pro Laptop,1,1700,07/28/19 14:19,"643 Highland St, San Francisco, CA 94016" -224945,Google Phone,1,600,07/02/19 12:05,"264 Walnut St, New York City, NY 10001" -224946,iPhone,1,700,07/17/19 16:51,"74 Lincoln St, Austin, TX 73301" -224947,Vareebadd Phone,1,400,07/06/19 04:44,"208 9th St, Seattle, WA 98101" -224948,Flatscreen TV,1,300,07/02/19 21:32,"104 Ridge St, New York City, NY 10001" -224949,AA Batteries (4-pack),1,3.84,07/19/19 18:45,"748 Maple St, Los Angeles, CA 90001" -224950,27in 4K Gaming Monitor,1,389.99,07/25/19 09:55,"567 Willow St, Los Angeles, CA 90001" -224951,Wired Headphones,1,11.99,07/14/19 20:02,"657 Jackson St, Dallas, TX 75001" -224952,Lightning Charging Cable,1,14.95,07/19/19 21:43,"374 5th St, Portland, OR 97035" -224953,Lightning Charging Cable,1,14.95,07/08/19 20:17,"644 13th St, Los Angeles, CA 90001" -224954,27in FHD Monitor,1,149.99,07/22/19 23:40,"164 1st St, Los Angeles, CA 90001" -224955,27in FHD Monitor,1,149.99,07/03/19 10:34,"148 Hickory St, Los Angeles, CA 90001" -224956,Lightning Charging Cable,1,14.95,07/06/19 09:51,"876 Cedar St, Seattle, WA 98101" -224957,AAA Batteries (4-pack),1,2.99,07/13/19 19:42,"552 Spruce St, San Francisco, CA 94016" -224958,20in Monitor,1,109.99,07/01/19 08:59,"535 Jefferson St, New York City, NY 10001" -224959,AA Batteries (4-pack),1,3.84,07/15/19 12:33,"529 Lakeview St, Los Angeles, CA 90001" -224960,iPhone,1,700,07/30/19 11:33,"301 Washington St, New York City, NY 10001" -224960,AAA Batteries (4-pack),2,2.99,07/30/19 11:33,"301 Washington St, New York City, NY 10001" -224961,Macbook Pro Laptop,1,1700,07/30/19 01:47,"975 9th St, Seattle, WA 98101" -224962,Google Phone,1,600,07/23/19 20:50,"32 14th St, Seattle, WA 98101" -224963,ThinkPad Laptop,1,999.99,07/05/19 02:37,"107 Maple St, Portland, ME 04101" -224964,AAA Batteries (4-pack),4,2.99,07/13/19 15:16,"54 Lake St, Los Angeles, CA 90001" -224965,USB-C Charging Cable,1,11.95,07/20/19 00:54,"864 West St, New York City, NY 10001" -224966,Macbook Pro Laptop,1,1700,07/21/19 21:58,"724 Wilson St, Atlanta, GA 30301" -224967,Google Phone,1,600,07/02/19 14:24,"281 Wilson St, Dallas, TX 75001" -224967,USB-C Charging Cable,1,11.95,07/02/19 14:24,"281 Wilson St, Dallas, TX 75001" -224968,Lightning Charging Cable,1,14.95,07/20/19 20:31,"156 Johnson St, Boston, MA 02215" -224969,Macbook Pro Laptop,1,1700,07/01/19 18:37,"451 South St, Atlanta, GA 30301" -224970,Wired Headphones,3,11.99,07/03/19 14:08,"824 Sunset St, San Francisco, CA 94016" -224971,Lightning Charging Cable,1,14.95,07/03/19 16:53,"45 Cedar St, Portland, OR 97035" -224972,USB-C Charging Cable,1,11.95,07/05/19 20:36,"308 Elm St, Dallas, TX 75001" -224973,Wired Headphones,1,11.99,07/21/19 16:44,"700 Walnut St, Los Angeles, CA 90001" -224974,Flatscreen TV,1,300,07/29/19 18:35,"163 Park St, Dallas, TX 75001" -224975,27in FHD Monitor,1,149.99,07/12/19 22:01,"440 6th St, New York City, NY 10001" -224976,AA Batteries (4-pack),2,3.84,07/25/19 15:55,"551 Adams St, Dallas, TX 75001" -224977,Wired Headphones,1,11.99,07/28/19 20:25,"992 Pine St, Los Angeles, CA 90001" -224978,Bose SoundSport Headphones,1,99.99,07/19/19 21:05,"278 Jefferson St, New York City, NY 10001" -224979,USB-C Charging Cable,1,11.95,07/18/19 19:25,"161 Ridge St, Boston, MA 02215" -224980,Bose SoundSport Headphones,1,99.99,07/04/19 17:46,"184 Main St, Los Angeles, CA 90001" -224981,AA Batteries (4-pack),1,3.84,07/02/19 19:55,"200 Meadow St, San Francisco, CA 94016" -224982,Bose SoundSport Headphones,1,99.99,07/26/19 16:53,"361 Adams St, New York City, NY 10001" -224983,AA Batteries (4-pack),4,3.84,07/12/19 22:28,"75 Madison St, Portland, OR 97035" -224984,Wired Headphones,1,11.99,07/20/19 06:54,"584 Cherry St, Los Angeles, CA 90001" -224985,Google Phone,1,600,07/03/19 12:41,"854 14th St, Seattle, WA 98101" -224986,Bose SoundSport Headphones,1,99.99,07/21/19 14:56,"187 Chestnut St, Dallas, TX 75001" -224987,Wired Headphones,2,11.99,07/23/19 17:30,"78 South St, San Francisco, CA 94016" -224988,USB-C Charging Cable,1,11.95,07/12/19 11:29,"294 Wilson St, San Francisco, CA 94016" -224989,AAA Batteries (4-pack),1,2.99,07/08/19 20:37,"640 Cedar St, Los Angeles, CA 90001" -224990,iPhone,1,700,07/06/19 16:50,"180 Willow St, San Francisco, CA 94016" -224991,27in FHD Monitor,1,149.99,07/26/19 00:18,"945 Chestnut St, Los Angeles, CA 90001" -224992,27in FHD Monitor,1,149.99,07/20/19 22:09,"594 Madison St, New York City, NY 10001" -224993,USB-C Charging Cable,1,11.95,07/06/19 16:26,"916 River St, San Francisco, CA 94016" -224994,ThinkPad Laptop,1,999.99,07/06/19 01:55,"492 12th St, Atlanta, GA 30301" -224994,Flatscreen TV,1,300,07/06/19 01:55,"492 12th St, Atlanta, GA 30301" -224995,Flatscreen TV,1,300,07/19/19 13:38,"862 5th St, San Francisco, CA 94016" -224996,Wired Headphones,1,11.99,07/20/19 11:18,"830 Washington St, San Francisco, CA 94016" -224997,iPhone,1,700,07/16/19 21:52,"291 Pine St, San Francisco, CA 94016" -224998,20in Monitor,1,109.99,07/18/19 22:24,"268 8th St, San Francisco, CA 94016" -224999,Apple Airpods Headphones,1,150,07/04/19 10:50,"881 1st St, Boston, MA 02215" -225000,USB-C Charging Cable,2,11.95,07/15/19 15:56,"754 7th St, Los Angeles, CA 90001" -225001,34in Ultrawide Monitor,1,379.99,07/09/19 15:05,"956 Adams St, Boston, MA 02215" -225002,Flatscreen TV,1,300,07/18/19 17:04,"1 Walnut St, Portland, ME 04101" -225003,AAA Batteries (4-pack),1,2.99,07/23/19 20:41,"174 9th St, Boston, MA 02215" -225004,27in 4K Gaming Monitor,1,389.99,07/11/19 19:48,"807 8th St, Los Angeles, CA 90001" -225005,Wired Headphones,1,11.99,07/17/19 10:02,"809 5th St, Seattle, WA 98101" -225006,AAA Batteries (4-pack),1,2.99,07/26/19 07:38,"357 West St, Boston, MA 02215" -225007,Wired Headphones,1,11.99,07/03/19 13:23,"712 Lincoln St, New York City, NY 10001" -225008,Lightning Charging Cable,1,14.95,07/04/19 08:59,"226 West St, San Francisco, CA 94016" -225009,AAA Batteries (4-pack),2,2.99,07/18/19 17:50,"626 Adams St, Boston, MA 02215" -225010,Apple Airpods Headphones,1,150,07/18/19 18:12,"706 Church St, Boston, MA 02215" -225011,Macbook Pro Laptop,1,1700,07/29/19 17:08,"457 Willow St, San Francisco, CA 94016" -225012,AAA Batteries (4-pack),2,2.99,07/20/19 17:01,"456 Johnson St, Seattle, WA 98101" -225013,27in 4K Gaming Monitor,1,389.99,07/20/19 23:42,"721 9th St, New York City, NY 10001" -225014,USB-C Charging Cable,1,11.95,07/04/19 11:42,"209 Park St, Boston, MA 02215" -225015,AA Batteries (4-pack),1,3.84,07/13/19 17:36,"927 7th St, San Francisco, CA 94016" -225016,Apple Airpods Headphones,1,150,07/13/19 16:38,"692 West St, Atlanta, GA 30301" -225017,iPhone,1,700,07/29/19 14:45,"660 1st St, Portland, ME 04101" -225017,Lightning Charging Cable,2,14.95,07/29/19 14:45,"660 1st St, Portland, ME 04101" -225018,Lightning Charging Cable,1,14.95,07/20/19 18:08,"505 River St, New York City, NY 10001" -225019,Bose SoundSport Headphones,1,99.99,07/16/19 11:24,"951 Dogwood St, Seattle, WA 98101" -225020,Flatscreen TV,1,300,07/02/19 20:27,"36 Dogwood St, Seattle, WA 98101" -225021,34in Ultrawide Monitor,1,379.99,07/28/19 20:07,"261 13th St, Los Angeles, CA 90001" -225022,Wired Headphones,1,11.99,07/28/19 23:39,"600 Park St, Atlanta, GA 30301" -225023,Flatscreen TV,1,300,07/26/19 17:05,"116 North St, New York City, NY 10001" -225024,Lightning Charging Cable,1,14.95,07/01/19 12:32,"899 6th St, Dallas, TX 75001" -225025,34in Ultrawide Monitor,1,379.99,07/17/19 23:55,"971 Hill St, Seattle, WA 98101" -225026,Wired Headphones,1,11.99,07/04/19 14:55,"494 Highland St, Los Angeles, CA 90001" -225027,Wired Headphones,1,11.99,07/28/19 05:42,"688 5th St, San Francisco, CA 94016" -225028,AA Batteries (4-pack),1,3.84,07/30/19 12:06,"478 4th St, Boston, MA 02215" -225029,27in FHD Monitor,1,149.99,07/26/19 12:35,"218 Church St, Seattle, WA 98101" -225030,Lightning Charging Cable,1,14.95,07/01/19 23:28,"678 Lincoln St, San Francisco, CA 94016" -225031,USB-C Charging Cable,1,11.95,07/08/19 23:04,"734 Center St, San Francisco, CA 94016" -225032,27in FHD Monitor,1,149.99,07/22/19 14:43,"934 Adams St, New York City, NY 10001" -225033,27in FHD Monitor,1,149.99,07/04/19 20:06,"754 Lincoln St, Seattle, WA 98101" -,,,,, -225034,AAA Batteries (4-pack),1,2.99,07/31/19 14:06,"659 Cherry St, Los Angeles, CA 90001" -225035,Vareebadd Phone,1,400,07/18/19 09:37,"572 Center St, Austin, TX 73301" -225036,ThinkPad Laptop,1,999.99,07/07/19 18:11,"961 10th St, New York City, NY 10001" -225037,AAA Batteries (4-pack),1,2.99,07/24/19 17:46,"243 Maple St, Atlanta, GA 30301" -225038,Bose SoundSport Headphones,1,99.99,07/16/19 14:42,"984 Church St, Boston, MA 02215" -225039,Apple Airpods Headphones,1,150,07/17/19 23:48,"211 Willow St, Austin, TX 73301" -225040,34in Ultrawide Monitor,1,379.99,07/26/19 00:30,"698 2nd St, San Francisco, CA 94016" -225041,27in 4K Gaming Monitor,1,389.99,07/13/19 16:59,"539 10th St, Seattle, WA 98101" -225042,Google Phone,1,600,07/04/19 21:39,"271 Ridge St, New York City, NY 10001" -225043,AAA Batteries (4-pack),1,2.99,07/30/19 10:11,"557 Sunset St, Seattle, WA 98101" -225044,AAA Batteries (4-pack),1,2.99,07/23/19 12:22,"333 Hill St, Boston, MA 02215" -225045,iPhone,1,700,07/09/19 19:07,"28 Lakeview St, San Francisco, CA 94016" -225045,AA Batteries (4-pack),4,3.84,07/09/19 19:07,"28 Lakeview St, San Francisco, CA 94016" -225046,AA Batteries (4-pack),1,3.84,07/09/19 10:22,"968 Lincoln St, Portland, OR 97035" -225047,Lightning Charging Cable,1,14.95,07/22/19 22:17,"998 5th St, San Francisco, CA 94016" -225048,Bose SoundSport Headphones,1,99.99,07/19/19 16:07,"735 Chestnut St, San Francisco, CA 94016" -225049,Flatscreen TV,1,300,07/28/19 13:39,"97 Adams St, San Francisco, CA 94016" -225050,27in FHD Monitor,1,149.99,07/21/19 19:57,"499 West St, Boston, MA 02215" -225051,AA Batteries (4-pack),2,3.84,07/29/19 16:17,"177 Ridge St, New York City, NY 10001" -225052,USB-C Charging Cable,1,11.95,07/01/19 07:48,"688 Willow St, Austin, TX 73301" -225053,AAA Batteries (4-pack),1,2.99,07/19/19 19:14,"277 Hill St, San Francisco, CA 94016" -225054,Apple Airpods Headphones,1,150,07/25/19 11:56,"163 Lincoln St, Atlanta, GA 30301" -225055,AAA Batteries (4-pack),1,2.99,07/21/19 15:03,"533 South St, Atlanta, GA 30301" -225056,Bose SoundSport Headphones,1,99.99,07/26/19 08:00,"601 Meadow St, Dallas, TX 75001" -225057,Lightning Charging Cable,1,14.95,07/26/19 07:47,"706 Jackson St, Seattle, WA 98101" -225058,Apple Airpods Headphones,1,150,07/26/19 17:22,"527 13th St, Boston, MA 02215" -225059,AAA Batteries (4-pack),2,2.99,07/11/19 16:07,"245 Lincoln St, Los Angeles, CA 90001" -225060,27in 4K Gaming Monitor,1,389.99,07/31/19 23:06,"183 Cedar St, Portland, OR 97035" -225061,AA Batteries (4-pack),1,3.84,07/24/19 14:39,"773 Cherry St, Los Angeles, CA 90001" -225062,Lightning Charging Cable,1,14.95,07/02/19 08:56,"371 4th St, Boston, MA 02215" -225063,AAA Batteries (4-pack),1,2.99,07/25/19 23:27,"408 Lincoln St, Boston, MA 02215" -225064,27in 4K Gaming Monitor,1,389.99,07/11/19 18:29,"528 Main St, Dallas, TX 75001" -225065,20in Monitor,1,109.99,07/19/19 09:37,"946 Ridge St, Dallas, TX 75001" -225066,AAA Batteries (4-pack),1,2.99,07/27/19 01:01,"657 10th St, Dallas, TX 75001" -225067,Lightning Charging Cable,1,14.95,07/06/19 10:12,"433 Pine St, Austin, TX 73301" -225068,ThinkPad Laptop,1,999.99,07/18/19 18:14,"97 Forest St, Dallas, TX 75001" -225069,Wired Headphones,1,11.99,07/08/19 13:53,"622 10th St, San Francisco, CA 94016" -225070,AA Batteries (4-pack),1,3.84,07/29/19 16:35,"115 9th St, San Francisco, CA 94016" -225071,27in FHD Monitor,1,149.99,07/22/19 11:22,"330 Ridge St, Dallas, TX 75001" -225072,AA Batteries (4-pack),2,3.84,07/11/19 22:17,"849 Cedar St, Seattle, WA 98101" -225073,Apple Airpods Headphones,1,150,07/27/19 17:04,"795 Hickory St, Boston, MA 02215" -225074,AAA Batteries (4-pack),2,2.99,07/31/19 18:28,"202 9th St, San Francisco, CA 94016" -225075,USB-C Charging Cable,1,11.95,07/02/19 14:16,"588 Forest St, San Francisco, CA 94016" -225076,AA Batteries (4-pack),1,3.84,07/30/19 21:04,"798 4th St, Boston, MA 02215" -225077,27in 4K Gaming Monitor,1,389.99,07/28/19 21:01,"694 8th St, Boston, MA 02215" -225078,34in Ultrawide Monitor,1,379.99,07/04/19 12:33,"736 14th St, Seattle, WA 98101" -225079,Wired Headphones,1,11.99,07/05/19 21:28,"496 Pine St, San Francisco, CA 94016" -225080,iPhone,1,700,07/17/19 19:21,"520 Park St, Los Angeles, CA 90001" -225081,USB-C Charging Cable,1,11.95,07/22/19 12:57,"540 Elm St, Boston, MA 02215" -225082,USB-C Charging Cable,1,11.95,07/01/19 09:35,"763 Jackson St, Seattle, WA 98101" -225083,Apple Airpods Headphones,1,150,07/10/19 10:33,"857 Cedar St, San Francisco, CA 94016" -225084,Lightning Charging Cable,1,14.95,07/29/19 02:13,"696 Madison St, Los Angeles, CA 90001" -225085,AAA Batteries (4-pack),1,2.99,07/20/19 22:56,"923 Hill St, Dallas, TX 75001" -225086,iPhone,1,700,07/20/19 19:04,"773 Center St, San Francisco, CA 94016" -225086,Lightning Charging Cable,1,14.95,07/20/19 19:04,"773 Center St, San Francisco, CA 94016" -225087,AA Batteries (4-pack),1,3.84,07/11/19 14:32,"694 West St, Austin, TX 73301" -225088,34in Ultrawide Monitor,1,379.99,07/15/19 11:38,"246 West St, New York City, NY 10001" -225089,27in 4K Gaming Monitor,1,389.99,07/11/19 21:08,"731 North St, Los Angeles, CA 90001" -225090,Bose SoundSport Headphones,1,99.99,07/14/19 16:32,"451 Johnson St, Atlanta, GA 30301" -225091,Lightning Charging Cable,1,14.95,07/18/19 21:55,"151 Sunset St, San Francisco, CA 94016" -225092,AAA Batteries (4-pack),2,2.99,07/09/19 09:37,"733 Elm St, Atlanta, GA 30301" -225093,Lightning Charging Cable,1,14.95,07/15/19 00:28,"588 12th St, Los Angeles, CA 90001" -225094,AAA Batteries (4-pack),1,2.99,07/17/19 13:49,"63 7th St, Dallas, TX 75001" -225095,Wired Headphones,1,11.99,07/22/19 18:14,"415 11th St, New York City, NY 10001" -225096,ThinkPad Laptop,1,999.99,07/09/19 15:08,"858 Jefferson St, Dallas, TX 75001" -225097,27in 4K Gaming Monitor,1,389.99,07/14/19 14:25,"969 Meadow St, Boston, MA 02215" -225098,Wired Headphones,1,11.99,07/18/19 05:55,"639 5th St, Seattle, WA 98101" -225099,Flatscreen TV,1,300,07/29/19 18:47,"519 7th St, Austin, TX 73301" -225100,Apple Airpods Headphones,1,150,07/28/19 22:14,"787 Lincoln St, Los Angeles, CA 90001" -225101,Lightning Charging Cable,1,14.95,07/02/19 20:41,"710 Sunset St, Dallas, TX 75001" -225102,USB-C Charging Cable,2,11.95,07/21/19 07:50,"872 5th St, Los Angeles, CA 90001" -225103,Flatscreen TV,1,300,07/16/19 21:40,"512 Spruce St, Atlanta, GA 30301" -225104,AAA Batteries (4-pack),2,2.99,07/14/19 12:16,"309 Lakeview St, Austin, TX 73301" -225105,Apple Airpods Headphones,1,150,07/08/19 16:16,"868 Center St, Los Angeles, CA 90001" -225106,Google Phone,1,600,07/30/19 21:17,"870 Park St, Seattle, WA 98101" -225106,Wired Headphones,1,11.99,07/30/19 21:17,"870 Park St, Seattle, WA 98101" -225107,USB-C Charging Cable,1,11.95,07/08/19 10:59,"355 Meadow St, Boston, MA 02215" -225108,AA Batteries (4-pack),1,3.84,07/23/19 19:59,"352 Hill St, Los Angeles, CA 90001" -225109,AA Batteries (4-pack),1,3.84,07/05/19 20:40,"613 West St, Dallas, TX 75001" -225110,AAA Batteries (4-pack),1,2.99,07/29/19 07:48,"432 Madison St, Seattle, WA 98101" -225111,Apple Airpods Headphones,1,150,07/31/19 17:15,"947 North St, Austin, TX 73301" -225112,Google Phone,1,600,07/21/19 13:17,"528 Lake St, Dallas, TX 75001" -225112,USB-C Charging Cable,1,11.95,07/21/19 13:17,"528 Lake St, Dallas, TX 75001" -225113,27in FHD Monitor,1,149.99,07/08/19 12:53,"249 Washington St, San Francisco, CA 94016" -225114,USB-C Charging Cable,1,11.95,07/08/19 11:51,"51 Adams St, Atlanta, GA 30301" -225115,Lightning Charging Cable,2,14.95,07/18/19 20:17,"6 Hickory St, Portland, OR 97035" -225116,Wired Headphones,1,11.99,07/26/19 19:24,"323 Lakeview St, Dallas, TX 75001" -225117,Flatscreen TV,1,300,07/02/19 14:53,"273 Hill St, Seattle, WA 98101" -225118,iPhone,2,700,07/21/19 11:45,"63 Hill St, San Francisco, CA 94016" -225119,Macbook Pro Laptop,1,1700,07/04/19 13:05,"958 Highland St, San Francisco, CA 94016" -225120,Apple Airpods Headphones,1,150,07/02/19 07:54,"608 10th St, Los Angeles, CA 90001" -225121,AAA Batteries (4-pack),3,2.99,07/31/19 17:13,"821 Main St, Atlanta, GA 30301" -225122,Google Phone,1,600,07/28/19 18:04,"862 2nd St, Los Angeles, CA 90001" -225122,Wired Headphones,1,11.99,07/28/19 18:04,"862 2nd St, Los Angeles, CA 90001" -225123,USB-C Charging Cable,1,11.95,07/16/19 14:25,"307 Meadow St, Portland, OR 97035" -225124,Wired Headphones,1,11.99,07/15/19 20:24,"566 Forest St, Boston, MA 02215" -225125,USB-C Charging Cable,1,11.95,07/03/19 06:46,"780 Spruce St, San Francisco, CA 94016" -225126,AA Batteries (4-pack),3,3.84,07/06/19 11:48,"151 Highland St, Seattle, WA 98101" -225127,Lightning Charging Cable,1,14.95,07/15/19 20:54,"904 13th St, Dallas, TX 75001" -225128,Wired Headphones,1,11.99,07/08/19 16:07,"580 Johnson St, Los Angeles, CA 90001" -225129,USB-C Charging Cable,1,11.95,07/08/19 11:10,"309 Lincoln St, San Francisco, CA 94016" -225130,Apple Airpods Headphones,1,150,07/09/19 08:12,"181 Elm St, Los Angeles, CA 90001" -225131,ThinkPad Laptop,1,999.99,07/30/19 18:35,"380 West St, Dallas, TX 75001" -225132,Lightning Charging Cable,1,14.95,07/26/19 20:26,"144 Ridge St, New York City, NY 10001" -225133,AAA Batteries (4-pack),1,2.99,07/16/19 17:25,"519 Madison St, Austin, TX 73301" -225134,Apple Airpods Headphones,1,150,07/12/19 16:16,"407 Sunset St, Dallas, TX 75001" -225135,Bose SoundSport Headphones,1,99.99,07/25/19 18:58,"615 River St, New York City, NY 10001" -225136,USB-C Charging Cable,1,11.95,07/23/19 02:42,"980 Lakeview St, Seattle, WA 98101" -225137,iPhone,1,700,07/20/19 11:59,"651 Pine St, San Francisco, CA 94016" -225138,AAA Batteries (4-pack),1,2.99,07/26/19 11:55,"95 Elm St, Atlanta, GA 30301" -225139,27in 4K Gaming Monitor,1,389.99,07/20/19 13:43,"581 1st St, San Francisco, CA 94016" -225140,AAA Batteries (4-pack),1,2.99,07/08/19 07:34,"706 Washington St, Boston, MA 02215" -225141,USB-C Charging Cable,1,11.95,07/08/19 13:30,"769 South St, Los Angeles, CA 90001" -225142,Google Phone,1,600,07/25/19 08:13,"836 River St, New York City, NY 10001" -225143,Lightning Charging Cable,1,14.95,07/08/19 11:30,"353 North St, Atlanta, GA 30301" -225144,Lightning Charging Cable,1,14.95,07/07/19 11:30,"493 Forest St, New York City, NY 10001" -225145,iPhone,1,700,07/03/19 13:12,"659 Hill St, Seattle, WA 98101" -225145,Lightning Charging Cable,1,14.95,07/03/19 13:12,"659 Hill St, Seattle, WA 98101" -225146,USB-C Charging Cable,1,11.95,07/14/19 11:04,"335 6th St, Seattle, WA 98101" -225147,Bose SoundSport Headphones,1,99.99,07/09/19 10:31,"224 Highland St, San Francisco, CA 94016" -225148,20in Monitor,1,109.99,07/21/19 11:26,"950 Ridge St, Portland, OR 97035" -225149,27in 4K Gaming Monitor,1,389.99,07/31/19 21:37,"602 Jackson St, San Francisco, CA 94016" -225150,USB-C Charging Cable,1,11.95,07/29/19 08:29,"488 Hill St, Boston, MA 02215" -225151,Flatscreen TV,1,300,07/05/19 16:51,"985 12th St, Boston, MA 02215" -225152,Bose SoundSport Headphones,1,99.99,07/02/19 07:25,"312 Walnut St, New York City, NY 10001" -225153,20in Monitor,1,109.99,07/21/19 13:47,"919 Lake St, Los Angeles, CA 90001" -225154,AA Batteries (4-pack),1,3.84,07/20/19 00:03,"625 Chestnut St, New York City, NY 10001" -225155,Apple Airpods Headphones,1,150,07/11/19 22:12,"149 Washington St, Seattle, WA 98101" -225156,AAA Batteries (4-pack),3,2.99,07/10/19 19:00,"201 Spruce St, New York City, NY 10001" -225157,AA Batteries (4-pack),1,3.84,07/19/19 18:34,"339 Meadow St, Seattle, WA 98101" -225158,USB-C Charging Cable,1,11.95,07/21/19 19:28,"240 Adams St, New York City, NY 10001" -225159,AA Batteries (4-pack),1,3.84,07/15/19 20:28,"772 6th St, New York City, NY 10001" -225160,USB-C Charging Cable,1,11.95,07/19/19 17:48,"490 River St, Boston, MA 02215" -225161,Apple Airpods Headphones,1,150,07/22/19 00:05,"284 1st St, San Francisco, CA 94016" -225162,USB-C Charging Cable,1,11.95,07/27/19 16:39,"680 12th St, Atlanta, GA 30301" -225163,Wired Headphones,1,11.99,07/03/19 21:33,"454 Main St, Boston, MA 02215" -225164,Wired Headphones,1,11.99,07/17/19 11:50,"107 6th St, San Francisco, CA 94016" -225165,AAA Batteries (4-pack),1,2.99,07/30/19 10:26,"454 Adams St, Dallas, TX 75001" -225166,AAA Batteries (4-pack),1,2.99,07/05/19 23:28,"466 Dogwood St, Seattle, WA 98101" -225167,Apple Airpods Headphones,1,150,07/29/19 07:40,"927 1st St, Boston, MA 02215" -225168,20in Monitor,1,109.99,07/09/19 11:33,"115 North St, Seattle, WA 98101" -225169,ThinkPad Laptop,1,999.99,07/10/19 04:58,"357 Main St, Seattle, WA 98101" -225170,AA Batteries (4-pack),1,3.84,07/21/19 16:41,"913 2nd St, Portland, OR 97035" -225171,Macbook Pro Laptop,1,1700,07/31/19 07:19,"289 Church St, Los Angeles, CA 90001" -225171,USB-C Charging Cable,2,11.95,07/31/19 07:19,"289 Church St, Los Angeles, CA 90001" -225172,Wired Headphones,1,11.99,07/25/19 07:44,"624 7th St, San Francisco, CA 94016" -225173,Lightning Charging Cable,1,14.95,07/12/19 11:45,"324 Adams St, Los Angeles, CA 90001" -225174,Wired Headphones,2,11.99,07/10/19 19:16,"568 13th St, Portland, OR 97035" -225175,USB-C Charging Cable,1,11.95,07/13/19 12:34,"593 4th St, Los Angeles, CA 90001" -225176,AA Batteries (4-pack),1,3.84,07/08/19 13:10,"578 West St, San Francisco, CA 94016" -225177,AA Batteries (4-pack),2,3.84,07/20/19 12:50,"890 Center St, Los Angeles, CA 90001" -225178,USB-C Charging Cable,1,11.95,07/29/19 08:26,"936 13th St, Austin, TX 73301" -225179,AAA Batteries (4-pack),3,2.99,07/08/19 18:40,"797 Lakeview St, Boston, MA 02215" -225180,AAA Batteries (4-pack),1,2.99,07/05/19 15:01,"738 7th St, New York City, NY 10001" -225181,AA Batteries (4-pack),7,3.84,07/05/19 13:50,"349 Walnut St, Dallas, TX 75001" -225182,Wired Headphones,1,11.99,07/23/19 19:16,"403 Adams St, Atlanta, GA 30301" -225183,20in Monitor,1,109.99,07/30/19 14:21,"249 6th St, Atlanta, GA 30301" -225184,27in FHD Monitor,1,149.99,07/13/19 08:01,"930 Walnut St, Atlanta, GA 30301" -225185,AA Batteries (4-pack),1,3.84,07/22/19 02:02,"903 South St, San Francisco, CA 94016" -225186,Apple Airpods Headphones,1,150,07/19/19 19:02,"678 11th St, Seattle, WA 98101" -225187,Apple Airpods Headphones,1,150,07/12/19 19:49,"400 Chestnut St, Los Angeles, CA 90001" -225188,Flatscreen TV,1,300,07/31/19 02:58,"259 Forest St, San Francisco, CA 94016" -225189,Wired Headphones,1,11.99,07/19/19 15:30,"248 North St, New York City, NY 10001" -225190,AA Batteries (4-pack),1,3.84,07/17/19 09:55,"419 Church St, Portland, OR 97035" -225191,AAA Batteries (4-pack),1,2.99,07/03/19 18:31,"375 11th St, Boston, MA 02215" -225192,Google Phone,1,600,07/10/19 23:15,"90 Lakeview St, San Francisco, CA 94016" -225193,20in Monitor,1,109.99,07/07/19 10:42,"547 12th St, New York City, NY 10001" -225194,Lightning Charging Cable,1,14.95,07/07/19 12:35,"489 Jackson St, San Francisco, CA 94016" -225195,Macbook Pro Laptop,1,1700,07/05/19 22:47,"811 9th St, Dallas, TX 75001" -225196,27in 4K Gaming Monitor,1,389.99,07/05/19 19:36,"135 Hickory St, Seattle, WA 98101" -225197,Wired Headphones,1,11.99,07/16/19 08:45,"332 Maple St, San Francisco, CA 94016" -225198,Wired Headphones,1,11.99,07/24/19 09:29,"698 Jackson St, Austin, TX 73301" -225199,Flatscreen TV,2,300,07/22/19 21:45,"513 9th St, New York City, NY 10001" -225200,Bose SoundSport Headphones,1,99.99,07/15/19 14:08,"455 12th St, Atlanta, GA 30301" -225201,Wired Headphones,1,11.99,07/11/19 13:49,"879 Lake St, San Francisco, CA 94016" -225202,Bose SoundSport Headphones,1,99.99,07/06/19 17:56,"133 Forest St, San Francisco, CA 94016" -225203,27in FHD Monitor,1,149.99,07/06/19 00:05,"379 7th St, Atlanta, GA 30301" -225204,Lightning Charging Cable,1,14.95,07/08/19 07:09,"68 Lincoln St, San Francisco, CA 94016" -225205,USB-C Charging Cable,2,11.95,07/09/19 13:49,"660 Wilson St, Dallas, TX 75001" -225206,USB-C Charging Cable,1,11.95,07/04/19 22:07,"752 Cedar St, Atlanta, GA 30301" -225207,AAA Batteries (4-pack),2,2.99,07/03/19 14:29,"36 Spruce St, Boston, MA 02215" -,,,,, -225208,27in FHD Monitor,1,149.99,07/11/19 07:02,"522 Chestnut St, Dallas, TX 75001" -225209,USB-C Charging Cable,1,11.95,07/02/19 18:10,"621 River St, San Francisco, CA 94016" -225210,27in 4K Gaming Monitor,1,389.99,07/15/19 03:12,"435 Hill St, Austin, TX 73301" -225211,Apple Airpods Headphones,1,150,07/29/19 11:48,"510 Forest St, Austin, TX 73301" -225212,AAA Batteries (4-pack),2,2.99,07/07/19 11:07,"119 Cedar St, Austin, TX 73301" -225213,Apple Airpods Headphones,1,150,07/08/19 18:56,"610 Hill St, Los Angeles, CA 90001" -225214,AAA Batteries (4-pack),1,2.99,07/04/19 21:25,"625 Maple St, San Francisco, CA 94016" -225215,20in Monitor,1,109.99,07/06/19 19:59,"481 Forest St, San Francisco, CA 94016" -225216,Wired Headphones,1,11.99,07/02/19 07:32,"996 Hickory St, Atlanta, GA 30301" -225217,Apple Airpods Headphones,1,150,07/26/19 15:59,"416 Washington St, New York City, NY 10001" -225218,Lightning Charging Cable,2,14.95,07/16/19 18:20,"681 Dogwood St, Boston, MA 02215" -225219,USB-C Charging Cable,1,11.95,07/07/19 13:11,"174 Madison St, San Francisco, CA 94016" -225220,Lightning Charging Cable,1,14.95,07/08/19 09:02,"891 Johnson St, New York City, NY 10001" -225221,Apple Airpods Headphones,1,150,07/18/19 18:08,"918 Chestnut St, Boston, MA 02215" -225222,Apple Airpods Headphones,1,150,07/21/19 14:11,"713 North St, Los Angeles, CA 90001" -225223,Wired Headphones,1,11.99,07/15/19 19:52,"26 Cherry St, Portland, ME 04101" -225224,Wired Headphones,1,11.99,07/09/19 13:42,"331 Johnson St, Seattle, WA 98101" -225225,ThinkPad Laptop,1,999.99,07/12/19 19:47,"536 Jackson St, Dallas, TX 75001" -225226,Lightning Charging Cable,1,14.95,07/18/19 20:04,"873 Adams St, Los Angeles, CA 90001" -225227,Bose SoundSport Headphones,1,99.99,07/22/19 12:39,"603 Johnson St, San Francisco, CA 94016" -225228,AAA Batteries (4-pack),1,2.99,07/30/19 18:47,"396 Pine St, Seattle, WA 98101" -225229,Lightning Charging Cable,1,14.95,07/19/19 12:50,"754 Main St, San Francisco, CA 94016" -225230,AA Batteries (4-pack),1,3.84,07/05/19 23:03,"746 Johnson St, San Francisco, CA 94016" -225231,AAA Batteries (4-pack),1,2.99,07/09/19 08:31,"641 Maple St, San Francisco, CA 94016" -225232,USB-C Charging Cable,1,11.95,07/01/19 19:08,"167 Ridge St, San Francisco, CA 94016" -225232,Macbook Pro Laptop,1,1700,07/01/19 19:08,"167 Ridge St, San Francisco, CA 94016" -225233,Google Phone,1,600,07/24/19 18:49,"836 Main St, Los Angeles, CA 90001" -225234,USB-C Charging Cable,1,11.95,07/29/19 12:40,"732 Jackson St, Atlanta, GA 30301" -225235,USB-C Charging Cable,1,11.95,07/29/19 09:36,"417 Jefferson St, Atlanta, GA 30301" -225236,Flatscreen TV,1,300,07/28/19 10:12,"122 1st St, San Francisco, CA 94016" -225237,Macbook Pro Laptop,1,1700,07/23/19 21:25,"851 Lincoln St, Dallas, TX 75001" -225238,27in 4K Gaming Monitor,1,389.99,07/20/19 23:11,"402 Hill St, New York City, NY 10001" -225239,Wired Headphones,1,11.99,07/19/19 11:40,"422 Lake St, Seattle, WA 98101" -225240,AAA Batteries (4-pack),1,2.99,07/27/19 00:28,"222 Maple St, Boston, MA 02215" -225241,34in Ultrawide Monitor,1,379.99,07/22/19 11:03,"474 North St, Portland, OR 97035" -225242,AAA Batteries (4-pack),1,2.99,07/19/19 15:00,"945 Ridge St, Atlanta, GA 30301" -225243,Lightning Charging Cable,1,14.95,07/17/19 18:38,"612 Church St, Los Angeles, CA 90001" -225244,Macbook Pro Laptop,1,1700,07/20/19 20:00,"335 Lakeview St, San Francisco, CA 94016" -225245,AA Batteries (4-pack),1,3.84,07/22/19 18:00,"542 Willow St, San Francisco, CA 94016" -225246,LG Washing Machine,1,600.0,07/13/19 19:48,"905 Sunset St, San Francisco, CA 94016" -225247,AA Batteries (4-pack),1,3.84,07/25/19 11:24,"146 Main St, New York City, NY 10001" -225248,AAA Batteries (4-pack),1,2.99,07/23/19 19:45,"520 11th St, Los Angeles, CA 90001" -225249,27in FHD Monitor,1,149.99,07/22/19 06:09,"771 Highland St, Boston, MA 02215" -225250,Google Phone,1,600,07/03/19 08:41,"870 4th St, Boston, MA 02215" -225250,USB-C Charging Cable,1,11.95,07/03/19 08:41,"870 4th St, Boston, MA 02215" -225251,USB-C Charging Cable,1,11.95,07/12/19 22:42,"935 Hill St, Seattle, WA 98101" -225252,Google Phone,1,600,07/16/19 12:07,"75 Church St, Los Angeles, CA 90001" -225253,AA Batteries (4-pack),1,3.84,07/09/19 08:22,"718 Cherry St, New York City, NY 10001" -225254,AAA Batteries (4-pack),3,2.99,07/13/19 10:02,"870 Main St, Boston, MA 02215" -225255,Lightning Charging Cable,1,14.95,07/07/19 12:56,"551 Johnson St, Los Angeles, CA 90001" -225256,Apple Airpods Headphones,1,150,07/11/19 22:21,"470 5th St, New York City, NY 10001" -225257,20in Monitor,1,109.99,07/11/19 11:44,"676 7th St, San Francisco, CA 94016" -225258,AA Batteries (4-pack),1,3.84,07/10/19 10:47,"562 Lincoln St, San Francisco, CA 94016" -225259,Lightning Charging Cable,1,14.95,07/05/19 11:20,"233 Church St, Boston, MA 02215" -225260,27in 4K Gaming Monitor,1,389.99,07/02/19 11:22,"514 Johnson St, Los Angeles, CA 90001" -225261,AA Batteries (4-pack),1,3.84,07/08/19 14:52,"218 10th St, New York City, NY 10001" -225262,Wired Headphones,1,11.99,07/31/19 16:30,"48 Center St, San Francisco, CA 94016" -225263,Wired Headphones,1,11.99,07/05/19 22:16,"47 Madison St, Seattle, WA 98101" -225264,Lightning Charging Cable,2,14.95,07/22/19 10:27,"86 8th St, San Francisco, CA 94016" -225265,USB-C Charging Cable,1,11.95,07/27/19 21:42,"375 12th St, Los Angeles, CA 90001" -225266,Apple Airpods Headphones,1,150,07/22/19 11:06,"606 River St, Austin, TX 73301" -225267,27in FHD Monitor,1,149.99,07/29/19 22:00,"333 South St, Dallas, TX 75001" -225268,AAA Batteries (4-pack),4,2.99,07/15/19 06:45,"753 Elm St, Portland, OR 97035" -225269,AA Batteries (4-pack),1,3.84,07/15/19 17:46,"171 West St, Boston, MA 02215" -225270,Bose SoundSport Headphones,1,99.99,07/02/19 11:03,"122 Hickory St, San Francisco, CA 94016" -225271,Lightning Charging Cable,1,14.95,07/28/19 11:07,"908 Church St, Seattle, WA 98101" -225272,ThinkPad Laptop,1,999.99,07/25/19 11:30,"729 Forest St, Portland, OR 97035" -225273,iPhone,1,700,07/30/19 19:47,"332 Meadow St, New York City, NY 10001" -225274,USB-C Charging Cable,1,11.95,07/17/19 09:18,"577 Adams St, Dallas, TX 75001" -225275,Flatscreen TV,1,300,07/08/19 05:24,"181 Walnut St, New York City, NY 10001" -225276,AAA Batteries (4-pack),1,2.99,07/27/19 20:48,"459 Jackson St, Portland, OR 97035" -225277,34in Ultrawide Monitor,1,379.99,07/25/19 00:05,"307 Adams St, New York City, NY 10001" -225278,Lightning Charging Cable,1,14.95,07/03/19 18:56,"152 Cedar St, Dallas, TX 75001" -225279,AA Batteries (4-pack),1,3.84,07/22/19 07:25,"101 9th St, Portland, OR 97035" -225280,34in Ultrawide Monitor,1,379.99,07/14/19 07:47,"44 Jefferson St, Seattle, WA 98101" -225280,AA Batteries (4-pack),2,3.84,07/14/19 07:47,"44 Jefferson St, Seattle, WA 98101" -225281,27in FHD Monitor,2,149.99,07/23/19 06:47,"428 2nd St, San Francisco, CA 94016" -225282,AAA Batteries (4-pack),1,2.99,07/04/19 17:16,"864 12th St, Atlanta, GA 30301" -225283,27in FHD Monitor,1,149.99,07/25/19 20:58,"771 Highland St, Dallas, TX 75001" -225284,AA Batteries (4-pack),1,3.84,07/21/19 00:05,"539 7th St, Los Angeles, CA 90001" -225285,AAA Batteries (4-pack),1,2.99,07/31/19 21:20,"554 Washington St, San Francisco, CA 94016" -225286,Lightning Charging Cable,1,14.95,07/06/19 15:48,"381 Chestnut St, Boston, MA 02215" -225287,USB-C Charging Cable,2,11.95,07/10/19 08:41,"744 Park St, New York City, NY 10001" -225288,34in Ultrawide Monitor,1,379.99,07/31/19 09:15,"210 7th St, New York City, NY 10001" -225289,Google Phone,1,600,07/11/19 13:58,"187 11th St, San Francisco, CA 94016" -225290,20in Monitor,1,109.99,07/30/19 15:39,"535 4th St, Dallas, TX 75001" -225291,AA Batteries (4-pack),1,3.84,07/19/19 20:50,"588 Lakeview St, San Francisco, CA 94016" -225292,20in Monitor,1,109.99,07/18/19 12:13,"601 6th St, Portland, OR 97035" -225293,iPhone,1,700,07/12/19 11:51,"893 Madison St, Portland, OR 97035" -225294,Apple Airpods Headphones,1,150,07/23/19 19:24,"233 Park St, Austin, TX 73301" -225295,34in Ultrawide Monitor,1,379.99,07/18/19 13:24,"667 Chestnut St, San Francisco, CA 94016" -225296,Apple Airpods Headphones,1,150,07/13/19 15:42,"450 Dogwood St, San Francisco, CA 94016" -225297,AA Batteries (4-pack),1,3.84,07/14/19 17:01,"813 Forest St, Atlanta, GA 30301" -225298,AA Batteries (4-pack),1,3.84,07/29/19 06:04,"673 Cherry St, Atlanta, GA 30301" -225299,ThinkPad Laptop,1,999.99,07/23/19 19:17,"11 Cedar St, San Francisco, CA 94016" -225300,AA Batteries (4-pack),2,3.84,07/20/19 21:54,"669 Cherry St, Seattle, WA 98101" -225301,Google Phone,1,600,07/28/19 06:42,"367 2nd St, Los Angeles, CA 90001" -225302,Bose SoundSport Headphones,1,99.99,07/31/19 16:17,"264 Dogwood St, Portland, OR 97035" -225303,AAA Batteries (4-pack),1,2.99,07/27/19 15:19,"946 Ridge St, Atlanta, GA 30301" -225304,AAA Batteries (4-pack),1,2.99,07/09/19 14:10,"19 Willow St, Los Angeles, CA 90001" -225305,AAA Batteries (4-pack),1,2.99,07/18/19 23:09,"142 11th St, Boston, MA 02215" -225306,Lightning Charging Cable,1,14.95,07/13/19 08:12,"93 11th St, Atlanta, GA 30301" -225307,Lightning Charging Cable,1,14.95,07/05/19 22:45,"912 Forest St, San Francisco, CA 94016" -225308,Flatscreen TV,1,300,07/11/19 21:26,"148 Johnson St, San Francisco, CA 94016" -225309,27in 4K Gaming Monitor,1,389.99,07/12/19 20:16,"666 5th St, Austin, TX 73301" -225310,Bose SoundSport Headphones,1,99.99,07/05/19 10:36,"717 West St, San Francisco, CA 94016" -225311,Apple Airpods Headphones,1,150,07/15/19 14:58,"10 Hickory St, New York City, NY 10001" -225312,USB-C Charging Cable,1,11.95,07/26/19 18:58,"476 2nd St, Los Angeles, CA 90001" -225313,AA Batteries (4-pack),1,3.84,07/30/19 15:08,"597 Madison St, San Francisco, CA 94016" -225314,Wired Headphones,1,11.99,07/17/19 09:04,"348 Lincoln St, Portland, OR 97035" -225315,iPhone,1,700,07/01/19 13:38,"614 Madison St, Boston, MA 02215" -225316,USB-C Charging Cable,1,11.95,07/08/19 23:40,"137 Cherry St, Atlanta, GA 30301" -225317,Apple Airpods Headphones,1,150,07/02/19 16:27,"748 9th St, Dallas, TX 75001" -225318,Lightning Charging Cable,1,14.95,07/23/19 15:52,"804 Park St, New York City, NY 10001" -225319,AAA Batteries (4-pack),1,2.99,07/30/19 13:14,"82 11th St, New York City, NY 10001" -225320,AA Batteries (4-pack),1,3.84,07/02/19 08:03,"907 13th St, San Francisco, CA 94016" -225321,AAA Batteries (4-pack),1,2.99,07/27/19 15:16,"319 Lakeview St, Portland, OR 97035" -225322,AAA Batteries (4-pack),2,2.99,07/02/19 16:54,"559 Highland St, Portland, OR 97035" -225323,Apple Airpods Headphones,1,150,07/04/19 15:08,"958 Center St, Boston, MA 02215" -225323,Wired Headphones,2,11.99,07/04/19 15:08,"958 Center St, Boston, MA 02215" -225324,USB-C Charging Cable,1,11.95,07/22/19 09:51,"435 Spruce St, Boston, MA 02215" -225325,27in FHD Monitor,1,149.99,07/22/19 16:14,"587 8th St, San Francisco, CA 94016" -225326,Apple Airpods Headphones,1,150,07/06/19 15:50,"212 Spruce St, Dallas, TX 75001" -225326,Wired Headphones,1,11.99,07/06/19 15:50,"212 Spruce St, Dallas, TX 75001" -225327,Google Phone,1,600,07/08/19 11:03,"479 Church St, San Francisco, CA 94016" -225328,Wired Headphones,1,11.99,07/22/19 13:34,"71 Spruce St, San Francisco, CA 94016" -225329,AA Batteries (4-pack),1,3.84,07/17/19 22:17,"336 Jefferson St, San Francisco, CA 94016" -225330,Lightning Charging Cable,1,14.95,07/30/19 12:13,"124 6th St, Portland, OR 97035" -225331,27in FHD Monitor,1,149.99,07/14/19 14:19,"455 Jackson St, New York City, NY 10001" -225331,USB-C Charging Cable,1,11.95,07/14/19 14:19,"455 Jackson St, New York City, NY 10001" -225332,AAA Batteries (4-pack),1,2.99,07/06/19 17:37,"577 Adams St, Boston, MA 02215" -225333,AA Batteries (4-pack),1,3.84,07/04/19 12:08,"850 13th St, Dallas, TX 75001" -225334,Macbook Pro Laptop,1,1700,07/11/19 17:26,"544 Chestnut St, Boston, MA 02215" -225335,USB-C Charging Cable,1,11.95,07/11/19 18:12,"294 1st St, Los Angeles, CA 90001" -225336,Lightning Charging Cable,1,14.95,07/24/19 14:00,"426 Sunset St, Los Angeles, CA 90001" -225337,AAA Batteries (4-pack),1,2.99,07/22/19 14:29,"310 Spruce St, Dallas, TX 75001" -225338,USB-C Charging Cable,1,11.95,07/25/19 21:01,"413 13th St, New York City, NY 10001" -225339,34in Ultrawide Monitor,1,379.99,07/31/19 23:03,"704 Wilson St, New York City, NY 10001" -225340,Apple Airpods Headphones,1,150,07/09/19 21:43,"594 Jefferson St, Los Angeles, CA 90001" -225341,27in 4K Gaming Monitor,1,389.99,07/13/19 10:10,"780 Center St, New York City, NY 10001" -225342,27in 4K Gaming Monitor,1,389.99,07/03/19 13:52,"392 Sunset St, Austin, TX 73301" -225343,AAA Batteries (4-pack),1,2.99,07/25/19 14:48,"631 Forest St, San Francisco, CA 94016" -225344,27in FHD Monitor,1,149.99,07/26/19 22:08,"991 Pine St, Los Angeles, CA 90001" -225345,Lightning Charging Cable,1,14.95,07/15/19 20:21,"694 13th St, Dallas, TX 75001" -225346,AA Batteries (4-pack),5,3.84,07/08/19 16:56,"141 Forest St, New York City, NY 10001" -225347,iPhone,1,700,07/03/19 17:16,"588 West St, Austin, TX 73301" -225347,Lightning Charging Cable,1,14.95,07/03/19 17:16,"588 West St, Austin, TX 73301" -225347,Wired Headphones,1,11.99,07/03/19 17:16,"588 West St, Austin, TX 73301" -225348,USB-C Charging Cable,1,11.95,07/04/19 18:04,"930 6th St, Los Angeles, CA 90001" -225349,USB-C Charging Cable,1,11.95,07/19/19 23:07,"927 6th St, Los Angeles, CA 90001" -225350,iPhone,1,700,07/16/19 05:41,"91 Washington St, Los Angeles, CA 90001" -225350,Lightning Charging Cable,1,14.95,07/16/19 05:41,"91 Washington St, Los Angeles, CA 90001" -225351,Bose SoundSport Headphones,1,99.99,07/18/19 19:15,"685 10th St, Los Angeles, CA 90001" -225352,34in Ultrawide Monitor,1,379.99,07/04/19 09:46,"178 9th St, Austin, TX 73301" -225353,USB-C Charging Cable,1,11.95,07/20/19 17:20,"287 Ridge St, San Francisco, CA 94016" -225354,20in Monitor,1,109.99,07/27/19 21:55,"286 Madison St, Atlanta, GA 30301" -225355,USB-C Charging Cable,1,11.95,07/10/19 13:08,"273 Park St, Los Angeles, CA 90001" -225356,20in Monitor,1,109.99,07/26/19 16:28,"246 Washington St, Dallas, TX 75001" -225357,Lightning Charging Cable,1,14.95,07/25/19 17:49,"779 Madison St, San Francisco, CA 94016" -225358,iPhone,1,700,07/29/19 14:38,"239 West St, San Francisco, CA 94016" -225359,Apple Airpods Headphones,1,150,07/01/19 10:40,"913 Adams St, Dallas, TX 75001" -225360,Flatscreen TV,1,300,07/22/19 17:01,"222 11th St, Portland, ME 04101" -225361,Lightning Charging Cable,1,14.95,07/25/19 21:40,"750 Cedar St, San Francisco, CA 94016" -225362,Wired Headphones,3,11.99,07/06/19 22:07,"606 9th St, San Francisco, CA 94016" -225362,Macbook Pro Laptop,1,1700,07/06/19 22:07,"606 9th St, San Francisco, CA 94016" -225363,Wired Headphones,1,11.99,07/19/19 15:48,"188 Chestnut St, Los Angeles, CA 90001" -225364,Wired Headphones,1,11.99,07/02/19 20:08,"241 Hickory St, Los Angeles, CA 90001" -225365,AA Batteries (4-pack),1,3.84,07/04/19 20:16,"281 Cedar St, Los Angeles, CA 90001" -225366,AAA Batteries (4-pack),1,2.99,07/09/19 18:16,"420 Johnson St, Atlanta, GA 30301" -225367,AAA Batteries (4-pack),1,2.99,07/27/19 19:24,"588 Sunset St, Los Angeles, CA 90001" -225368,Lightning Charging Cable,1,14.95,07/07/19 11:21,"967 Cherry St, Boston, MA 02215" -225369,USB-C Charging Cable,1,11.95,07/19/19 12:55,"468 Pine St, Los Angeles, CA 90001" -225370,Wired Headphones,1,11.99,07/10/19 17:14,"59 Hickory St, San Francisco, CA 94016" -225371,Flatscreen TV,1,300,07/28/19 20:23,"758 Main St, San Francisco, CA 94016" -225372,AA Batteries (4-pack),1,3.84,07/05/19 16:55,"226 West St, Boston, MA 02215" -225373,27in 4K Gaming Monitor,1,389.99,07/07/19 11:10,"438 Park St, Los Angeles, CA 90001" -225374,AA Batteries (4-pack),1,3.84,07/13/19 21:19,"746 2nd St, Los Angeles, CA 90001" -225375,AA Batteries (4-pack),2,3.84,07/02/19 16:18,"96 Elm St, Los Angeles, CA 90001" -225376,AA Batteries (4-pack),2,3.84,07/26/19 19:07,"723 West St, Seattle, WA 98101" -225376,AAA Batteries (4-pack),2,2.99,07/26/19 19:07,"723 West St, Seattle, WA 98101" -225377,Apple Airpods Headphones,1,150,07/25/19 14:07,"216 5th St, New York City, NY 10001" -225378,27in FHD Monitor,1,149.99,07/26/19 10:30,"38 Adams St, Boston, MA 02215" -225379,27in FHD Monitor,1,149.99,07/30/19 16:37,"652 13th St, San Francisco, CA 94016" -225380,Lightning Charging Cable,1,14.95,07/21/19 18:37,"204 River St, Los Angeles, CA 90001" -225381,Lightning Charging Cable,1,14.95,07/14/19 19:55,"317 5th St, Dallas, TX 75001" -225382,27in FHD Monitor,1,149.99,07/18/19 02:04,"912 Elm St, Portland, OR 97035" -225383,AA Batteries (4-pack),2,3.84,07/03/19 20:22,"564 7th St, San Francisco, CA 94016" -225384,20in Monitor,1,109.99,07/08/19 09:30,"382 River St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -225385,ThinkPad Laptop,1,999.99,07/13/19 11:08,"706 11th St, Boston, MA 02215" -225386,AAA Batteries (4-pack),1,2.99,07/20/19 00:03,"175 Cedar St, Seattle, WA 98101" -225387,AAA Batteries (4-pack),1,2.99,07/29/19 13:24,"907 Dogwood St, Seattle, WA 98101" -225388,AA Batteries (4-pack),1,3.84,07/23/19 08:21,"963 Ridge St, Boston, MA 02215" -225389,AA Batteries (4-pack),1,3.84,07/31/19 02:35,"421 Lincoln St, San Francisco, CA 94016" -225390,27in FHD Monitor,1,149.99,07/07/19 19:17,"693 Pine St, San Francisco, CA 94016" -225391,Flatscreen TV,1,300,07/11/19 14:48,"629 Hickory St, Boston, MA 02215" -225392,27in FHD Monitor,1,149.99,07/28/19 14:33,"908 1st St, Los Angeles, CA 90001" -225393,Google Phone,1,600,07/27/19 09:15,"576 Jefferson St, Boston, MA 02215" -225394,Lightning Charging Cable,1,14.95,07/24/19 08:28,"510 Sunset St, Austin, TX 73301" -225395,AA Batteries (4-pack),3,3.84,07/10/19 21:21,"912 Highland St, San Francisco, CA 94016" -225396,27in 4K Gaming Monitor,1,389.99,07/21/19 15:31,"316 Hickory St, Los Angeles, CA 90001" -225397,Lightning Charging Cable,1,14.95,07/01/19 11:03,"962 Walnut St, Los Angeles, CA 90001" -225398,Lightning Charging Cable,1,14.95,07/16/19 20:29,"272 Sunset St, New York City, NY 10001" -225399,27in FHD Monitor,1,149.99,07/07/19 23:20,"785 Jackson St, San Francisco, CA 94016" -225400,AA Batteries (4-pack),2,3.84,07/01/19 11:38,"856 9th St, San Francisco, CA 94016" -225401,Google Phone,1,600,07/29/19 19:01,"714 5th St, San Francisco, CA 94016" -225401,USB-C Charging Cable,1,11.95,07/29/19 19:01,"714 5th St, San Francisco, CA 94016" -225402,USB-C Charging Cable,1,11.95,07/30/19 00:12,"466 11th St, Los Angeles, CA 90001" -225403,Wired Headphones,1,11.99,07/21/19 00:58,"382 Center St, Seattle, WA 98101" -225404,Macbook Pro Laptop,1,1700,07/23/19 13:38,"245 Dogwood St, Boston, MA 02215" -225405,AAA Batteries (4-pack),1,2.99,07/20/19 19:36,"882 8th St, San Francisco, CA 94016" -225406,Lightning Charging Cable,1,14.95,07/10/19 18:39,"578 Dogwood St, San Francisco, CA 94016" -225407,USB-C Charging Cable,3,11.95,07/27/19 01:02,"593 Jackson St, New York City, NY 10001" -225408,Wired Headphones,1,11.99,07/17/19 10:40,"987 Meadow St, New York City, NY 10001" -225409,AAA Batteries (4-pack),1,2.99,07/22/19 09:53,"771 Forest St, Portland, OR 97035" -225410,34in Ultrawide Monitor,1,379.99,07/06/19 14:40,"594 Dogwood St, Los Angeles, CA 90001" -225411,Wired Headphones,1,11.99,07/03/19 08:34,"212 Main St, Austin, TX 73301" -225412,Lightning Charging Cable,1,14.95,07/02/19 13:04,"174 Highland St, San Francisco, CA 94016" -225413,iPhone,1,700,07/24/19 15:35,"578 Madison St, Los Angeles, CA 90001" -225413,Wired Headphones,1,11.99,07/24/19 15:35,"578 Madison St, Los Angeles, CA 90001" -225414,Wired Headphones,1,11.99,07/09/19 15:17,"909 Church St, Los Angeles, CA 90001" -225415,Macbook Pro Laptop,1,1700,07/23/19 17:35,"755 Wilson St, Atlanta, GA 30301" -225416,Wired Headphones,1,11.99,07/15/19 07:16,"34 Chestnut St, San Francisco, CA 94016" -225417,AAA Batteries (4-pack),3,2.99,07/15/19 15:55,"20 6th St, Portland, OR 97035" -225418,Wired Headphones,1,11.99,07/13/19 11:20,"574 Chestnut St, Boston, MA 02215" -225419,AA Batteries (4-pack),1,3.84,07/18/19 11:35,"969 9th St, New York City, NY 10001" -225420,Flatscreen TV,1,300,07/27/19 18:38,"296 7th St, Los Angeles, CA 90001" -225421,Macbook Pro Laptop,1,1700,07/15/19 12:19,"159 Jackson St, Los Angeles, CA 90001" -225422,AA Batteries (4-pack),1,3.84,07/21/19 22:37,"5 Willow St, Austin, TX 73301" -225423,AAA Batteries (4-pack),5,2.99,07/30/19 15:34,"302 2nd St, Dallas, TX 75001" -225424,ThinkPad Laptop,1,999.99,07/06/19 13:51,"912 Willow St, New York City, NY 10001" -225425,Wired Headphones,2,11.99,07/22/19 20:06,"923 Cedar St, Seattle, WA 98101" -225426,USB-C Charging Cable,1,11.95,07/11/19 15:35,"844 1st St, New York City, NY 10001" -225427,Wired Headphones,1,11.99,07/18/19 07:23,"627 Lakeview St, Seattle, WA 98101" -225428,Google Phone,1,600,07/29/19 21:28,"796 River St, Dallas, TX 75001" -225428,Bose SoundSport Headphones,1,99.99,07/29/19 21:28,"796 River St, Dallas, TX 75001" -225429,34in Ultrawide Monitor,1,379.99,07/28/19 12:04,"378 Cedar St, San Francisco, CA 94016" -225430,Wired Headphones,2,11.99,07/26/19 12:26,"259 Lincoln St, Austin, TX 73301" -225431,Bose SoundSport Headphones,1,99.99,07/17/19 06:27,"59 Walnut St, San Francisco, CA 94016" -225432,34in Ultrawide Monitor,1,379.99,07/30/19 14:18,"199 Maple St, San Francisco, CA 94016" -,,,,, -225433,Apple Airpods Headphones,1,150,07/20/19 17:41,"722 Spruce St, San Francisco, CA 94016" -225434,Lightning Charging Cable,1,14.95,07/24/19 20:10,"92 Elm St, Los Angeles, CA 90001" -225435,AAA Batteries (4-pack),1,2.99,07/17/19 12:03,"157 1st St, San Francisco, CA 94016" -225436,USB-C Charging Cable,1,11.95,07/26/19 11:40,"294 Lakeview St, Boston, MA 02215" -225437,Wired Headphones,1,11.99,07/06/19 13:22,"99 Adams St, San Francisco, CA 94016" -225438,USB-C Charging Cable,1,11.95,07/02/19 12:47,"27 South St, San Francisco, CA 94016" -225439,ThinkPad Laptop,1,999.99,07/13/19 13:45,"944 Park St, Austin, TX 73301" -225440,USB-C Charging Cable,1,11.95,07/18/19 10:00,"667 Cherry St, Atlanta, GA 30301" -225441,34in Ultrawide Monitor,1,379.99,07/12/19 01:59,"757 4th St, Atlanta, GA 30301" -225442,Wired Headphones,1,11.99,07/06/19 17:53,"103 Lake St, San Francisco, CA 94016" -225443,Lightning Charging Cable,1,14.95,07/26/19 22:30,"42 4th St, Portland, OR 97035" -225444,ThinkPad Laptop,1,999.99,07/08/19 11:10,"121 Main St, New York City, NY 10001" -225444,Apple Airpods Headphones,1,150,07/08/19 11:10,"121 Main St, New York City, NY 10001" -225445,AA Batteries (4-pack),1,3.84,07/15/19 17:15,"753 River St, Los Angeles, CA 90001" -225446,USB-C Charging Cable,1,11.95,07/31/19 22:13,"413 Spruce St, Los Angeles, CA 90001" -225447,Bose SoundSport Headphones,1,99.99,07/03/19 12:40,"381 6th St, Los Angeles, CA 90001" -225448,USB-C Charging Cable,1,11.95,07/26/19 17:41,"906 Cedar St, San Francisco, CA 94016" -225449,LG Dryer,1,600.0,07/19/19 15:13,"290 Spruce St, Atlanta, GA 30301" -225450,Lightning Charging Cable,1,14.95,07/19/19 09:11,"416 Maple St, San Francisco, CA 94016" -225451,USB-C Charging Cable,1,11.95,07/28/19 19:29,"665 7th St, Seattle, WA 98101" -225452,Apple Airpods Headphones,1,150,07/06/19 01:48,"837 2nd St, Boston, MA 02215" -225453,USB-C Charging Cable,1,11.95,07/06/19 10:02,"105 Lincoln St, San Francisco, CA 94016" -225454,AA Batteries (4-pack),1,3.84,07/25/19 17:49,"861 Ridge St, San Francisco, CA 94016" -225455,Vareebadd Phone,1,400,07/09/19 21:18,"198 Cedar St, Los Angeles, CA 90001" -225456,Apple Airpods Headphones,1,150,07/22/19 21:43,"894 5th St, Boston, MA 02215" -225457,iPhone,1,700,07/18/19 14:46,"130 9th St, Los Angeles, CA 90001" -225458,ThinkPad Laptop,1,999.99,07/16/19 19:38,"785 10th St, Atlanta, GA 30301" -225459,Lightning Charging Cable,1,14.95,07/11/19 23:49,"388 Sunset St, Dallas, TX 75001" -225460,Bose SoundSport Headphones,1,99.99,07/23/19 16:45,"315 4th St, Seattle, WA 98101" -225461,20in Monitor,1,109.99,07/22/19 13:21,"777 7th St, Los Angeles, CA 90001" -225462,Apple Airpods Headphones,1,150,07/14/19 11:15,"676 11th St, San Francisco, CA 94016" -225463,Vareebadd Phone,1,400,07/14/19 23:47,"593 Chestnut St, San Francisco, CA 94016" -225464,20in Monitor,1,109.99,07/18/19 13:09,"862 Adams St, Seattle, WA 98101" -225465,Apple Airpods Headphones,1,150,07/12/19 21:44,"758 7th St, New York City, NY 10001" -225466,Wired Headphones,1,11.99,07/05/19 07:51,"200 Willow St, Los Angeles, CA 90001" -225467,Wired Headphones,1,11.99,07/20/19 13:09,"995 14th St, Dallas, TX 75001" -225468,iPhone,1,700,07/16/19 15:25,"878 1st St, Austin, TX 73301" -225469,AA Batteries (4-pack),2,3.84,07/01/19 12:08,"663 Dogwood St, Boston, MA 02215" -225470,Wired Headphones,1,11.99,07/18/19 13:41,"124 Cherry St, Boston, MA 02215" -225471,AA Batteries (4-pack),1,3.84,07/25/19 09:25,"228 Wilson St, New York City, NY 10001" -225472,Bose SoundSport Headphones,1,99.99,07/03/19 21:38,"623 Hickory St, San Francisco, CA 94016" -225473,LG Dryer,1,600.0,07/12/19 17:21,"536 South St, Atlanta, GA 30301" -225474,Lightning Charging Cable,1,14.95,07/30/19 07:43,"112 River St, Los Angeles, CA 90001" -225475,USB-C Charging Cable,1,11.95,07/21/19 08:42,"858 2nd St, San Francisco, CA 94016" -225476,Flatscreen TV,1,300,07/31/19 15:16,"64 14th St, Austin, TX 73301" -225477,USB-C Charging Cable,1,11.95,07/05/19 23:23,"311 Cedar St, San Francisco, CA 94016" -225478,27in 4K Gaming Monitor,1,389.99,07/22/19 16:58,"42 Sunset St, Boston, MA 02215" -225479,iPhone,1,700,07/04/19 21:16,"624 Center St, San Francisco, CA 94016" -225480,Wired Headphones,1,11.99,07/27/19 20:20,"708 1st St, Portland, OR 97035" -225481,AAA Batteries (4-pack),3,2.99,07/18/19 10:03,"819 Highland St, Dallas, TX 75001" -225481,AAA Batteries (4-pack),1,2.99,07/18/19 10:03,"819 Highland St, Dallas, TX 75001" -225482,Lightning Charging Cable,1,14.95,07/18/19 11:02,"251 Madison St, Seattle, WA 98101" -225483,Lightning Charging Cable,1,14.95,07/28/19 00:25,"788 River St, Seattle, WA 98101" -225484,USB-C Charging Cable,2,11.95,07/04/19 23:36,"799 Wilson St, Boston, MA 02215" -225485,AAA Batteries (4-pack),1,2.99,07/10/19 09:50,"803 Chestnut St, Los Angeles, CA 90001" -225486,Lightning Charging Cable,1,14.95,07/12/19 21:18,"124 Willow St, Los Angeles, CA 90001" -225487,AA Batteries (4-pack),1,3.84,07/25/19 05:43,"35 Park St, Los Angeles, CA 90001" -225488,Wired Headphones,1,11.99,07/06/19 15:56,"931 Lakeview St, Los Angeles, CA 90001" -225489,Vareebadd Phone,1,400,07/16/19 09:26,"509 9th St, San Francisco, CA 94016" -225490,USB-C Charging Cable,1,11.95,07/05/19 17:54,"986 Center St, Boston, MA 02215" -225491,27in 4K Gaming Monitor,1,389.99,07/31/19 20:49,"53 10th St, Portland, ME 04101" -225492,34in Ultrawide Monitor,1,379.99,07/10/19 00:30,"821 Washington St, Portland, OR 97035" -225493,USB-C Charging Cable,1,11.95,07/04/19 12:08,"580 Maple St, Los Angeles, CA 90001" -225494,27in 4K Gaming Monitor,1,389.99,07/24/19 07:10,"163 Dogwood St, New York City, NY 10001" -225494,Bose SoundSport Headphones,1,99.99,07/24/19 07:10,"163 Dogwood St, New York City, NY 10001" -225495,Lightning Charging Cable,1,14.95,07/01/19 10:40,"147 Park St, New York City, NY 10001" -225496,Wired Headphones,1,11.99,07/10/19 23:49,"934 Lake St, Seattle, WA 98101" -225497,Wired Headphones,1,11.99,07/11/19 21:10,"650 14th St, Dallas, TX 75001" -225498,AAA Batteries (4-pack),5,2.99,07/14/19 13:45,"888 Dogwood St, San Francisco, CA 94016" -225499,Apple Airpods Headphones,1,150,07/26/19 20:55,"139 4th St, San Francisco, CA 94016" -225500,AAA Batteries (4-pack),1,2.99,07/06/19 12:09,"337 Wilson St, Boston, MA 02215" -225501,iPhone,1,700,07/10/19 13:50,"647 13th St, Seattle, WA 98101" -225502,Macbook Pro Laptop,1,1700,07/17/19 21:30,"541 Spruce St, Austin, TX 73301" -225503,AAA Batteries (4-pack),1,2.99,07/06/19 21:04,"849 Meadow St, Dallas, TX 75001" -225504,AAA Batteries (4-pack),1,2.99,07/02/19 10:03,"355 Sunset St, Seattle, WA 98101" -225505,Wired Headphones,1,11.99,07/09/19 19:20,"167 Forest St, San Francisco, CA 94016" -225506,Wired Headphones,1,11.99,07/28/19 08:42,"538 Johnson St, New York City, NY 10001" -225507,Apple Airpods Headphones,1,150,07/02/19 15:26,"133 8th St, Los Angeles, CA 90001" -225508,Flatscreen TV,1,300,07/13/19 23:18,"648 14th St, Los Angeles, CA 90001" -225509,Lightning Charging Cable,1,14.95,07/17/19 20:19,"98 North St, New York City, NY 10001" -225510,34in Ultrawide Monitor,1,379.99,07/05/19 09:34,"884 13th St, Austin, TX 73301" -225511,USB-C Charging Cable,1,11.95,07/01/19 22:27,"43 Jackson St, Dallas, TX 75001" -225512,AAA Batteries (4-pack),1,2.99,07/24/19 09:00,"628 Highland St, Los Angeles, CA 90001" -225513,Wired Headphones,1,11.99,07/12/19 17:57,"619 Meadow St, San Francisco, CA 94016" -225514,AAA Batteries (4-pack),1,2.99,07/04/19 12:12,"474 Johnson St, San Francisco, CA 94016" -225515,USB-C Charging Cable,1,11.95,07/25/19 10:59,"913 Jefferson St, Boston, MA 02215" -225516,Lightning Charging Cable,1,14.95,07/22/19 19:00,"156 Highland St, San Francisco, CA 94016" -225517,AAA Batteries (4-pack),1,2.99,07/24/19 10:41,"333 Madison St, Dallas, TX 75001" -225517,Lightning Charging Cable,1,14.95,07/24/19 10:41,"333 Madison St, Dallas, TX 75001" -225518,Bose SoundSport Headphones,1,99.99,07/24/19 15:46,"364 1st St, Atlanta, GA 30301" -225519,Bose SoundSport Headphones,1,99.99,07/24/19 00:45,"816 5th St, New York City, NY 10001" -225520,AAA Batteries (4-pack),1,2.99,07/01/19 22:25,"31 Willow St, San Francisco, CA 94016" -225521,USB-C Charging Cable,1,11.95,07/28/19 00:53,"653 Lakeview St, Atlanta, GA 30301" -225522,27in FHD Monitor,1,149.99,07/24/19 21:14,"881 5th St, Seattle, WA 98101" -225523,Bose SoundSport Headphones,1,99.99,07/18/19 13:35,"279 Maple St, San Francisco, CA 94016" -225524,Lightning Charging Cable,1,14.95,07/23/19 06:33,"702 Chestnut St, San Francisco, CA 94016" -225525,Lightning Charging Cable,1,14.95,07/02/19 16:35,"142 7th St, New York City, NY 10001" -225526,AA Batteries (4-pack),2,3.84,07/21/19 11:29,"751 Ridge St, San Francisco, CA 94016" -225527,iPhone,1,700,07/03/19 20:38,"916 Maple St, San Francisco, CA 94016" -225528,Lightning Charging Cable,1,14.95,07/12/19 20:51,"36 Highland St, San Francisco, CA 94016" -225529,Google Phone,1,600,07/30/19 23:54,"418 Ridge St, Portland, OR 97035" -225530,27in 4K Gaming Monitor,1,389.99,07/02/19 07:59,"1 Highland St, Portland, OR 97035" -225531,AA Batteries (4-pack),1,3.84,07/08/19 19:09,"296 North St, San Francisco, CA 94016" -225532,Lightning Charging Cable,1,14.95,07/23/19 21:47,"664 4th St, Atlanta, GA 30301" -225533,Flatscreen TV,1,300,07/28/19 13:56,"880 River St, New York City, NY 10001" -225534,Flatscreen TV,1,300,07/16/19 14:43,"753 Lake St, Dallas, TX 75001" -225535,USB-C Charging Cable,1,11.95,07/23/19 13:42,"648 Maple St, New York City, NY 10001" -225536,ThinkPad Laptop,1,999.99,07/14/19 01:00,"561 North St, Boston, MA 02215" -225537,Bose SoundSport Headphones,1,99.99,07/04/19 19:05,"125 Wilson St, San Francisco, CA 94016" -225538,27in 4K Gaming Monitor,1,389.99,07/19/19 22:13,"461 12th St, Atlanta, GA 30301" -225539,USB-C Charging Cable,1,11.95,07/03/19 20:20,"70 Willow St, Seattle, WA 98101" -225540,AA Batteries (4-pack),1,3.84,07/18/19 11:32,"346 Jackson St, Los Angeles, CA 90001" -225541,27in 4K Gaming Monitor,1,389.99,08/01/19 01:15,"480 Spruce St, Los Angeles, CA 90001" -225542,AAA Batteries (4-pack),2,2.99,07/18/19 08:15,"672 Cedar St, San Francisco, CA 94016" -225543,AAA Batteries (4-pack),2,2.99,07/28/19 14:52,"32 1st St, Seattle, WA 98101" -225543,27in FHD Monitor,1,149.99,07/28/19 14:52,"32 1st St, Seattle, WA 98101" -225544,Apple Airpods Headphones,1,150,07/24/19 19:06,"283 Highland St, Dallas, TX 75001" -225545,USB-C Charging Cable,1,11.95,07/06/19 09:09,"323 Main St, San Francisco, CA 94016" -225546,Vareebadd Phone,1,400,07/16/19 21:50,"671 4th St, Austin, TX 73301" -225547,Lightning Charging Cable,1,14.95,07/16/19 18:55,"283 Elm St, San Francisco, CA 94016" -225548,AAA Batteries (4-pack),1,2.99,07/11/19 11:31,"473 9th St, San Francisco, CA 94016" -225549,Bose SoundSport Headphones,1,99.99,07/01/19 18:05,"60 Dogwood St, San Francisco, CA 94016" -225550,USB-C Charging Cable,1,11.95,07/28/19 20:15,"661 7th St, Dallas, TX 75001" -225551,AA Batteries (4-pack),1,3.84,07/16/19 14:58,"480 Chestnut St, Dallas, TX 75001" -225552,Bose SoundSport Headphones,1,99.99,07/24/19 11:53,"540 Center St, New York City, NY 10001" -225553,USB-C Charging Cable,1,11.95,07/01/19 11:59,"637 4th St, San Francisco, CA 94016" -225554,34in Ultrawide Monitor,1,379.99,07/11/19 20:08,"61 South St, San Francisco, CA 94016" -225555,USB-C Charging Cable,1,11.95,07/02/19 12:41,"394 12th St, Los Angeles, CA 90001" -225556,Wired Headphones,3,11.99,07/29/19 09:33,"63 Spruce St, Portland, OR 97035" -225557,Apple Airpods Headphones,1,150,07/28/19 10:52,"462 Center St, San Francisco, CA 94016" -225558,Lightning Charging Cable,1,14.95,07/19/19 21:45,"627 Forest St, Boston, MA 02215" -225559,Wired Headphones,1,11.99,07/30/19 17:31,"65 Cedar St, Boston, MA 02215" -225560,Apple Airpods Headphones,1,150,07/21/19 19:45,"200 1st St, New York City, NY 10001" -225561,AAA Batteries (4-pack),1,2.99,07/26/19 09:56,"176 River St, Boston, MA 02215" -225562,USB-C Charging Cable,1,11.95,07/15/19 12:11,"398 5th St, Boston, MA 02215" -225563,34in Ultrawide Monitor,1,379.99,07/06/19 18:27,"995 Sunset St, Los Angeles, CA 90001" -225564,Flatscreen TV,1,300,07/30/19 11:56,"212 14th St, Los Angeles, CA 90001" -225565,Apple Airpods Headphones,1,150,07/23/19 22:06,"551 8th St, Dallas, TX 75001" -225566,27in FHD Monitor,1,149.99,07/27/19 16:18,"653 Cherry St, Dallas, TX 75001" -225567,Bose SoundSport Headphones,1,99.99,07/19/19 14:49,"480 Willow St, New York City, NY 10001" -225568,AAA Batteries (4-pack),1,2.99,07/19/19 20:47,"165 South St, Boston, MA 02215" -225569,Wired Headphones,1,11.99,07/25/19 13:44,"18 Ridge St, Dallas, TX 75001" -225570,Lightning Charging Cable,1,14.95,07/01/19 19:00,"459 5th St, Seattle, WA 98101" -225571,Apple Airpods Headphones,1,150,07/20/19 04:53,"500 Cherry St, Los Angeles, CA 90001" -225572,Lightning Charging Cable,1,14.95,07/19/19 10:11,"213 13th St, San Francisco, CA 94016" -225573,AAA Batteries (4-pack),1,2.99,07/11/19 19:32,"498 9th St, San Francisco, CA 94016" -225574,AAA Batteries (4-pack),1,2.99,07/14/19 21:52,"427 Walnut St, Seattle, WA 98101" -225575,Wired Headphones,1,11.99,07/25/19 17:53,"681 13th St, San Francisco, CA 94016" -225576,Bose SoundSport Headphones,1,99.99,07/27/19 17:56,"376 Chestnut St, New York City, NY 10001" -225577,AA Batteries (4-pack),2,3.84,07/15/19 08:30,"611 7th St, San Francisco, CA 94016" -225578,Google Phone,1,600,07/14/19 10:39,"470 Church St, Portland, ME 04101" -225578,USB-C Charging Cable,1,11.95,07/14/19 10:39,"470 Church St, Portland, ME 04101" -225579,Apple Airpods Headphones,1,150,07/04/19 08:09,"744 Meadow St, Los Angeles, CA 90001" -225580,Lightning Charging Cable,1,14.95,07/20/19 12:46,"699 Jefferson St, New York City, NY 10001" -225581,34in Ultrawide Monitor,1,379.99,07/12/19 13:45,"168 13th St, Portland, OR 97035" -225582,Lightning Charging Cable,1,14.95,07/01/19 20:17,"324 1st St, Dallas, TX 75001" -225583,AA Batteries (4-pack),1,3.84,07/15/19 12:53,"491 Wilson St, Los Angeles, CA 90001" -225584,Lightning Charging Cable,1,14.95,07/27/19 12:13,"839 6th St, Austin, TX 73301" -225585,27in FHD Monitor,1,149.99,07/30/19 18:05,"775 8th St, Dallas, TX 75001" -225586,34in Ultrawide Monitor,1,379.99,07/11/19 11:54,"576 8th St, Portland, ME 04101" -225587,Wired Headphones,1,11.99,07/09/19 16:14,"531 Chestnut St, San Francisco, CA 94016" -225588,Apple Airpods Headphones,1,150,07/24/19 23:34,"431 Meadow St, Los Angeles, CA 90001" -225589,Wired Headphones,1,11.99,07/27/19 17:41,"644 Lake St, New York City, NY 10001" -225590,Bose SoundSport Headphones,1,99.99,07/22/19 14:31,"743 2nd St, San Francisco, CA 94016" -225591,Lightning Charging Cable,2,14.95,07/27/19 16:14,"79 Ridge St, San Francisco, CA 94016" -225592,AA Batteries (4-pack),2,3.84,07/08/19 12:38,"545 Lincoln St, New York City, NY 10001" -225593,Lightning Charging Cable,1,14.95,07/08/19 15:14,"351 Dogwood St, San Francisco, CA 94016" -225594,Lightning Charging Cable,1,14.95,07/17/19 08:46,"403 6th St, San Francisco, CA 94016" -225595,Apple Airpods Headphones,1,150,07/27/19 13:48,"404 11th St, Portland, OR 97035" -225596,27in FHD Monitor,1,149.99,07/21/19 14:09,"120 Dogwood St, Dallas, TX 75001" -225597,Bose SoundSport Headphones,1,99.99,07/02/19 21:12,"965 Cherry St, Austin, TX 73301" -225598,Apple Airpods Headphones,1,150,07/07/19 18:59,"140 Adams St, Portland, OR 97035" -225599,27in FHD Monitor,1,149.99,07/06/19 13:57,"979 Highland St, Boston, MA 02215" -225600,27in 4K Gaming Monitor,1,389.99,07/12/19 00:37,"653 Lake St, San Francisco, CA 94016" -225601,Lightning Charging Cable,1,14.95,07/28/19 22:02,"673 Lake St, Boston, MA 02215" -225602,AAA Batteries (4-pack),1,2.99,07/05/19 21:51,"782 8th St, Boston, MA 02215" -225603,USB-C Charging Cable,1,11.95,07/06/19 20:29,"203 Highland St, Seattle, WA 98101" -225604,AAA Batteries (4-pack),3,2.99,07/02/19 16:11,"589 Dogwood St, Seattle, WA 98101" -225605,Apple Airpods Headphones,1,150,07/29/19 13:37,"34 Chestnut St, San Francisco, CA 94016" -225606,USB-C Charging Cable,1,11.95,07/31/19 19:01,"376 Dogwood St, Portland, OR 97035" -225607,Bose SoundSport Headphones,1,99.99,07/23/19 10:58,"865 8th St, Dallas, TX 75001" -225608,USB-C Charging Cable,1,11.95,07/07/19 12:52,"172 Jackson St, Portland, OR 97035" -225609,27in FHD Monitor,1,149.99,07/22/19 20:45,"831 Hill St, San Francisco, CA 94016" -225610,Apple Airpods Headphones,1,150,07/06/19 07:48,"70 Highland St, Los Angeles, CA 90001" -225611,Lightning Charging Cable,1,14.95,07/20/19 15:56,"421 11th St, Los Angeles, CA 90001" -225612,USB-C Charging Cable,3,11.95,07/23/19 10:27,"522 Hill St, Los Angeles, CA 90001" -225613,LG Washing Machine,1,600.0,07/16/19 12:54,"830 1st St, San Francisco, CA 94016" -225614,Lightning Charging Cable,1,14.95,07/10/19 14:38,"844 8th St, Austin, TX 73301" -225615,Wired Headphones,1,11.99,07/01/19 15:15,"860 Hickory St, Los Angeles, CA 90001" -225616,USB-C Charging Cable,1,11.95,07/29/19 14:11,"720 Johnson St, New York City, NY 10001" -225617,Lightning Charging Cable,1,14.95,07/28/19 11:06,"803 Jackson St, Dallas, TX 75001" -225618,AA Batteries (4-pack),1,3.84,07/06/19 17:07,"569 North St, Los Angeles, CA 90001" -225619,27in FHD Monitor,1,149.99,07/07/19 11:52,"474 10th St, Los Angeles, CA 90001" -225620,Bose SoundSport Headphones,1,99.99,07/14/19 20:02,"206 River St, Portland, OR 97035" -225621,34in Ultrawide Monitor,1,379.99,07/15/19 20:31,"672 Church St, San Francisco, CA 94016" -225622,27in 4K Gaming Monitor,1,389.99,07/20/19 17:38,"319 12th St, Boston, MA 02215" -225623,Lightning Charging Cable,1,14.95,07/01/19 12:31,"804 Jefferson St, San Francisco, CA 94016" -225624,AAA Batteries (4-pack),2,2.99,07/18/19 10:31,"53 Dogwood St, Seattle, WA 98101" -225625,Bose SoundSport Headphones,1,99.99,07/09/19 20:31,"912 Lake St, Portland, OR 97035" -225626,34in Ultrawide Monitor,1,379.99,07/19/19 09:57,"456 Cherry St, Austin, TX 73301" -225627,AA Batteries (4-pack),1,3.84,07/23/19 17:41,"727 Hickory St, Los Angeles, CA 90001" -225628,AAA Batteries (4-pack),1,2.99,07/09/19 09:08,"828 River St, New York City, NY 10001" -225629,AAA Batteries (4-pack),2,2.99,07/09/19 18:43,"227 Chestnut St, Austin, TX 73301" -225630,Flatscreen TV,1,300,07/07/19 15:00,"531 Center St, New York City, NY 10001" -225631,Macbook Pro Laptop,1,1700,07/30/19 14:46,"978 Walnut St, New York City, NY 10001" -225632,USB-C Charging Cable,1,11.95,07/25/19 00:11,"467 Center St, San Francisco, CA 94016" -225633,Bose SoundSport Headphones,1,99.99,07/31/19 12:21,"795 8th St, San Francisco, CA 94016" -225634,Wired Headphones,1,11.99,07/14/19 13:58,"102 5th St, Los Angeles, CA 90001" -225635,Lightning Charging Cable,2,14.95,07/31/19 06:35,"763 Washington St, Los Angeles, CA 90001" -225636,AA Batteries (4-pack),1,3.84,07/11/19 16:27,"621 Jackson St, New York City, NY 10001" -225637,27in FHD Monitor,1,149.99,07/09/19 14:11,"257 9th St, Seattle, WA 98101" -225638,Bose SoundSport Headphones,1,99.99,07/31/19 13:30,"508 Lincoln St, San Francisco, CA 94016" -225639,Wired Headphones,1,11.99,07/05/19 17:21,"201 Park St, New York City, NY 10001" -225640,20in Monitor,1,109.99,07/01/19 20:18,"772 Sunset St, San Francisco, CA 94016" -225641,Lightning Charging Cable,1,14.95,07/21/19 11:50,"617 9th St, Austin, TX 73301" -225642,Wired Headphones,1,11.99,07/08/19 21:21,"341 14th St, Atlanta, GA 30301" -225643,Apple Airpods Headphones,1,150,07/07/19 07:37,"906 11th St, Atlanta, GA 30301" -225644,Macbook Pro Laptop,1,1700,07/16/19 18:14,"766 Center St, San Francisco, CA 94016" -225645,Wired Headphones,1,11.99,07/27/19 16:07,"489 Spruce St, Los Angeles, CA 90001" -225646,Lightning Charging Cable,1,14.95,07/27/19 10:07,"348 Meadow St, Los Angeles, CA 90001" -225647,Bose SoundSport Headphones,1,99.99,07/01/19 21:48,"471 Washington St, New York City, NY 10001" -225648,20in Monitor,1,109.99,07/23/19 11:59,"882 13th St, Portland, OR 97035" -225649,AA Batteries (4-pack),1,3.84,07/28/19 20:32,"756 Dogwood St, Los Angeles, CA 90001" -225650,Apple Airpods Headphones,1,150,07/31/19 14:49,"891 Sunset St, Austin, TX 73301" -225651,USB-C Charging Cable,1,11.95,07/04/19 10:59,"217 12th St, Los Angeles, CA 90001" -225652,Wired Headphones,1,11.99,07/09/19 12:14,"205 14th St, Seattle, WA 98101" -225653,Bose SoundSport Headphones,1,99.99,07/30/19 17:58,"581 Cedar St, San Francisco, CA 94016" -225654,AA Batteries (4-pack),1,3.84,07/02/19 01:37,"992 Church St, Los Angeles, CA 90001" -225655,20in Monitor,1,109.99,07/13/19 17:18,"160 Washington St, Boston, MA 02215" -225656,ThinkPad Laptop,1,999.99,07/01/19 22:12,"736 Washington St, San Francisco, CA 94016" -225657,USB-C Charging Cable,2,11.95,07/24/19 13:38,"50 7th St, Portland, OR 97035" -225658,USB-C Charging Cable,1,11.95,08/01/19 01:14,"592 Forest St, Los Angeles, CA 90001" -225659,AAA Batteries (4-pack),1,2.99,07/31/19 13:14,"618 Lincoln St, San Francisco, CA 94016" -225660,Vareebadd Phone,1,400,07/28/19 12:37,"116 Chestnut St, Boston, MA 02215" -225661,Lightning Charging Cable,1,14.95,07/09/19 20:41,"160 Washington St, Dallas, TX 75001" -225662,AA Batteries (4-pack),1,3.84,07/01/19 16:07,"88 Cherry St, Atlanta, GA 30301" -225663,USB-C Charging Cable,1,11.95,07/26/19 22:58,"720 Sunset St, Portland, ME 04101" -225664,Macbook Pro Laptop,1,1700,07/22/19 17:44,"120 South St, Dallas, TX 75001" -225665,AAA Batteries (4-pack),2,2.99,07/29/19 13:05,"632 2nd St, Portland, OR 97035" -225666,Lightning Charging Cable,1,14.95,07/15/19 18:03,"743 1st St, Los Angeles, CA 90001" -225667,Lightning Charging Cable,1,14.95,07/26/19 14:17,"536 Johnson St, San Francisco, CA 94016" -225668,AA Batteries (4-pack),3,3.84,07/23/19 23:40,"481 Adams St, New York City, NY 10001" -225669,Flatscreen TV,1,300,07/01/19 09:03,"427 Wilson St, Los Angeles, CA 90001" -225670,Wired Headphones,2,11.99,07/10/19 09:22,"184 Forest St, San Francisco, CA 94016" -225671,AAA Batteries (4-pack),1,2.99,07/09/19 14:15,"567 Park St, San Francisco, CA 94016" -225672,AA Batteries (4-pack),1,3.84,07/20/19 19:51,"441 Lake St, Portland, ME 04101" -225673,USB-C Charging Cable,1,11.95,07/21/19 14:29,"322 5th St, San Francisco, CA 94016" -225674,Bose SoundSport Headphones,1,99.99,07/06/19 09:28,"470 Center St, Atlanta, GA 30301" -225674,Bose SoundSport Headphones,1,99.99,07/06/19 09:28,"470 Center St, Atlanta, GA 30301" -225675,Wired Headphones,1,11.99,07/29/19 11:45,"573 Lincoln St, San Francisco, CA 94016" -225676,AA Batteries (4-pack),1,3.84,07/26/19 15:00,"710 Pine St, Seattle, WA 98101" -225677,USB-C Charging Cable,1,11.95,07/05/19 19:32,"90 2nd St, Dallas, TX 75001" -225678,USB-C Charging Cable,1,11.95,07/29/19 22:52,"626 West St, Atlanta, GA 30301" -225679,AAA Batteries (4-pack),1,2.99,07/09/19 11:02,"996 10th St, San Francisco, CA 94016" -225680,iPhone,1,700,07/10/19 12:24,"492 Chestnut St, Seattle, WA 98101" -225681,Apple Airpods Headphones,1,150,07/05/19 00:04,"496 1st St, Boston, MA 02215" -225682,iPhone,1,700,07/04/19 16:29,"344 Lake St, Los Angeles, CA 90001" -225683,34in Ultrawide Monitor,1,379.99,07/11/19 16:09,"795 West St, Portland, OR 97035" -225684,27in 4K Gaming Monitor,1,389.99,07/16/19 10:41,"811 River St, Boston, MA 02215" -225685,Bose SoundSport Headphones,1,99.99,07/29/19 15:57,"22 Highland St, Atlanta, GA 30301" -225686,Vareebadd Phone,1,400,07/07/19 17:44,"840 Wilson St, San Francisco, CA 94016" -225686,USB-C Charging Cable,1,11.95,07/07/19 17:44,"840 Wilson St, San Francisco, CA 94016" -225686,Wired Headphones,1,11.99,07/07/19 17:44,"840 Wilson St, San Francisco, CA 94016" -225687,Wired Headphones,2,11.99,07/04/19 17:46,"347 2nd St, Los Angeles, CA 90001" -225688,USB-C Charging Cable,1,11.95,07/21/19 00:46,"122 Spruce St, New York City, NY 10001" -225689,Wired Headphones,1,11.99,07/03/19 09:18,"328 11th St, Seattle, WA 98101" -225690,Apple Airpods Headphones,1,150,07/03/19 17:48,"743 Meadow St, Portland, OR 97035" -225691,Lightning Charging Cable,3,14.95,07/11/19 17:55,"585 11th St, Austin, TX 73301" -225692,Wired Headphones,1,11.99,07/12/19 22:59,"793 Madison St, Atlanta, GA 30301" -225693,AA Batteries (4-pack),1,3.84,07/25/19 14:14,"954 Adams St, New York City, NY 10001" -225694,34in Ultrawide Monitor,1,379.99,07/20/19 20:51,"239 1st St, Portland, OR 97035" -225695,Macbook Pro Laptop,1,1700,07/18/19 16:24,"80 Church St, San Francisco, CA 94016" -225696,AAA Batteries (4-pack),2,2.99,07/07/19 00:13,"791 6th St, New York City, NY 10001" -225697,USB-C Charging Cable,1,11.95,07/20/19 11:05,"177 Sunset St, Boston, MA 02215" -225698,AAA Batteries (4-pack),1,2.99,07/13/19 16:33,"536 Main St, Portland, ME 04101" -225699,USB-C Charging Cable,1,11.95,07/18/19 17:22,"153 Jackson St, Atlanta, GA 30301" -225700,iPhone,1,700,07/17/19 17:52,"849 West St, Seattle, WA 98101" -225701,USB-C Charging Cable,1,11.95,07/11/19 21:12,"516 Lincoln St, Los Angeles, CA 90001" -225702,ThinkPad Laptop,1,999.99,07/06/19 17:06,"315 8th St, Boston, MA 02215" -225703,ThinkPad Laptop,1,999.99,07/06/19 20:33,"780 North St, San Francisco, CA 94016" -225704,AA Batteries (4-pack),1,3.84,07/26/19 23:53,"404 Johnson St, Los Angeles, CA 90001" -225705,AA Batteries (4-pack),1,3.84,07/12/19 23:43,"220 Chestnut St, Atlanta, GA 30301" -225706,27in FHD Monitor,1,149.99,07/09/19 18:52,"462 Forest St, San Francisco, CA 94016" -225707,AA Batteries (4-pack),1,3.84,07/10/19 06:27,"2 Highland St, Portland, ME 04101" -225708,Macbook Pro Laptop,1,1700,07/20/19 15:10,"530 Washington St, San Francisco, CA 94016" -225709,iPhone,1,700,07/21/19 14:29,"129 Willow St, Austin, TX 73301" -225710,AA Batteries (4-pack),1,3.84,07/12/19 22:31,"627 Sunset St, Los Angeles, CA 90001" -225710,USB-C Charging Cable,1,11.95,07/12/19 22:31,"627 Sunset St, Los Angeles, CA 90001" -225711,AA Batteries (4-pack),1,3.84,07/30/19 11:32,"996 Madison St, San Francisco, CA 94016" -225712,34in Ultrawide Monitor,1,379.99,07/24/19 18:49,"724 North St, New York City, NY 10001" -225713,Apple Airpods Headphones,1,150,07/03/19 09:46,"625 Dogwood St, Atlanta, GA 30301" -225714,Wired Headphones,2,11.99,07/29/19 11:48,"170 11th St, San Francisco, CA 94016" -225715,Flatscreen TV,1,300,07/27/19 20:18,"14 West St, San Francisco, CA 94016" -225716,USB-C Charging Cable,1,11.95,07/15/19 11:48,"518 Washington St, Portland, OR 97035" -225717,AA Batteries (4-pack),1,3.84,07/26/19 18:59,"334 Wilson St, Boston, MA 02215" -225718,AA Batteries (4-pack),1,3.84,07/26/19 09:47,"112 2nd St, New York City, NY 10001" -225719,Lightning Charging Cable,1,14.95,07/11/19 16:32,"926 Jefferson St, San Francisco, CA 94016" -225720,Flatscreen TV,1,300,07/25/19 20:22,"844 Walnut St, San Francisco, CA 94016" -225721,AAA Batteries (4-pack),2,2.99,07/25/19 15:53,"30 12th St, San Francisco, CA 94016" -225722,Vareebadd Phone,1,400,07/10/19 11:20,"356 Elm St, San Francisco, CA 94016" -225723,27in FHD Monitor,1,149.99,07/09/19 10:22,"824 Hill St, Los Angeles, CA 90001" -225724,Google Phone,1,600,07/04/19 16:18,"393 13th St, Austin, TX 73301" -225725,AAA Batteries (4-pack),5,2.99,07/30/19 00:17,"929 14th St, Los Angeles, CA 90001" -225726,AA Batteries (4-pack),1,3.84,07/03/19 20:24,"116 Willow St, Boston, MA 02215" -225727,Lightning Charging Cable,1,14.95,07/16/19 23:19,"258 13th St, New York City, NY 10001" -225728,Bose SoundSport Headphones,1,99.99,07/19/19 19:30,"503 Elm St, Seattle, WA 98101" -225729,USB-C Charging Cable,1,11.95,07/16/19 07:18,"450 Church St, San Francisco, CA 94016" -225730,34in Ultrawide Monitor,1,379.99,07/16/19 18:04,"13 Maple St, New York City, NY 10001" -225731,AA Batteries (4-pack),1,3.84,07/03/19 05:25,"919 Jackson St, New York City, NY 10001" -225732,USB-C Charging Cable,1,11.95,07/21/19 14:48,"644 6th St, San Francisco, CA 94016" -225733,AAA Batteries (4-pack),1,2.99,07/11/19 19:23,"86 Highland St, San Francisco, CA 94016" -225734,27in FHD Monitor,1,149.99,07/26/19 09:55,"462 Cedar St, San Francisco, CA 94016" -225735,Apple Airpods Headphones,1,150,07/01/19 19:51,"31 Hickory St, San Francisco, CA 94016" -225736,Flatscreen TV,1,300,07/27/19 18:36,"678 Cherry St, Boston, MA 02215" -225737,AAA Batteries (4-pack),5,2.99,07/28/19 12:24,"384 12th St, Atlanta, GA 30301" -225738,34in Ultrawide Monitor,1,379.99,07/11/19 18:58,"349 Lake St, San Francisco, CA 94016" -225739,Apple Airpods Headphones,1,150,07/05/19 20:03,"874 Elm St, Los Angeles, CA 90001" -225740,USB-C Charging Cable,1,11.95,07/17/19 21:09,"165 Cedar St, New York City, NY 10001" -225741,AAA Batteries (4-pack),2,2.99,07/09/19 14:10,"891 Cedar St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -225742,Apple Airpods Headphones,1,150,07/24/19 16:31,"455 12th St, New York City, NY 10001" -225743,Lightning Charging Cable,1,14.95,07/10/19 23:30,"306 Lakeview St, Dallas, TX 75001" -225744,Flatscreen TV,1,300,07/03/19 12:57,"187 Church St, Portland, OR 97035" -225745,AAA Batteries (4-pack),2,2.99,07/05/19 15:41,"582 Forest St, Austin, TX 73301" -225746,USB-C Charging Cable,1,11.95,07/28/19 22:34,"279 Hill St, Austin, TX 73301" -225747,Lightning Charging Cable,1,14.95,07/03/19 11:48,"284 11th St, San Francisco, CA 94016" -225748,AAA Batteries (4-pack),1,2.99,07/28/19 09:46,"296 River St, Los Angeles, CA 90001" -225749,USB-C Charging Cable,1,11.95,07/10/19 00:01,"821 Hickory St, Austin, TX 73301" -225750,Wired Headphones,1,11.99,07/07/19 21:33,"764 Cherry St, San Francisco, CA 94016" -225751,Wired Headphones,2,11.99,07/26/19 12:47,"555 4th St, San Francisco, CA 94016" -225752,Wired Headphones,1,11.99,07/30/19 18:53,"414 Lakeview St, Los Angeles, CA 90001" -225753,Google Phone,1,600,07/21/19 23:24,"377 Maple St, New York City, NY 10001" -225754,USB-C Charging Cable,1,11.95,07/06/19 15:41,"376 7th St, Los Angeles, CA 90001" -225755,Lightning Charging Cable,1,14.95,07/03/19 12:44,"387 Pine St, Atlanta, GA 30301" -225756,Apple Airpods Headphones,1,150,07/23/19 16:39,"132 Jefferson St, Boston, MA 02215" -225757,Apple Airpods Headphones,1,150,07/13/19 13:46,"546 Lakeview St, Los Angeles, CA 90001" -225758,AAA Batteries (4-pack),6,2.99,07/03/19 17:08,"111 Park St, New York City, NY 10001" -225759,AA Batteries (4-pack),1,3.84,07/14/19 13:33,"402 Johnson St, San Francisco, CA 94016" -225760,Apple Airpods Headphones,1,150,07/02/19 14:32,"846 Hickory St, Seattle, WA 98101" -225761,Lightning Charging Cable,1,14.95,07/05/19 17:15,"640 Park St, San Francisco, CA 94016" -225762,AA Batteries (4-pack),2,3.84,07/16/19 16:30,"44 Johnson St, Boston, MA 02215" -225763,Apple Airpods Headphones,1,150,07/24/19 15:27,"266 Church St, San Francisco, CA 94016" -225764,Google Phone,1,600,07/16/19 07:29,"630 6th St, New York City, NY 10001" -225764,USB-C Charging Cable,1,11.95,07/16/19 07:29,"630 6th St, New York City, NY 10001" -225765,20in Monitor,2,109.99,07/20/19 13:40,"943 Washington St, San Francisco, CA 94016" -225766,27in 4K Gaming Monitor,1,389.99,07/13/19 08:42,"359 4th St, Seattle, WA 98101" -225766,Wired Headphones,2,11.99,07/13/19 08:42,"359 4th St, Seattle, WA 98101" -225767,Wired Headphones,1,11.99,07/23/19 09:51,"777 8th St, Dallas, TX 75001" -225768,Google Phone,1,600,07/06/19 00:12,"832 South St, Seattle, WA 98101" -225769,20in Monitor,1,109.99,07/22/19 06:56,"499 Hickory St, Seattle, WA 98101" -225770,Lightning Charging Cable,1,14.95,07/15/19 23:34,"391 Cedar St, Dallas, TX 75001" -225771,USB-C Charging Cable,1,11.95,07/26/19 09:22,"665 Willow St, Boston, MA 02215" -225772,ThinkPad Laptop,1,999.99,07/18/19 14:23,"387 Sunset St, Los Angeles, CA 90001" -225773,AAA Batteries (4-pack),1,2.99,07/09/19 18:51,"405 6th St, New York City, NY 10001" -225774,USB-C Charging Cable,2,11.95,07/07/19 14:55,"167 6th St, Atlanta, GA 30301" -225775,Apple Airpods Headphones,1,150,07/13/19 13:09,"604 Jefferson St, Los Angeles, CA 90001" -225776,AAA Batteries (4-pack),1,2.99,07/27/19 10:22,"350 Hickory St, San Francisco, CA 94016" -225777,Macbook Pro Laptop,1,1700,07/09/19 10:07,"725 12th St, San Francisco, CA 94016" -225778,Bose SoundSport Headphones,1,99.99,07/28/19 19:09,"799 11th St, Boston, MA 02215" -225779,USB-C Charging Cable,2,11.95,07/20/19 18:36,"685 8th St, New York City, NY 10001" -225780,USB-C Charging Cable,1,11.95,07/12/19 12:05,"270 River St, Boston, MA 02215" -225781,34in Ultrawide Monitor,1,379.99,07/20/19 10:00,"306 11th St, Atlanta, GA 30301" -225782,USB-C Charging Cable,1,11.95,07/25/19 02:02,"684 Meadow St, Los Angeles, CA 90001" -225783,Bose SoundSport Headphones,1,99.99,07/13/19 10:18,"742 Sunset St, Seattle, WA 98101" -225784,USB-C Charging Cable,1,11.95,07/04/19 22:44,"229 1st St, Boston, MA 02215" -225785,AA Batteries (4-pack),1,3.84,07/16/19 13:07,"580 West St, San Francisco, CA 94016" -225785,Wired Headphones,1,11.99,07/16/19 13:07,"580 West St, San Francisco, CA 94016" -225786,USB-C Charging Cable,1,11.95,07/18/19 08:46,"524 Elm St, Boston, MA 02215" -225787,Wired Headphones,1,11.99,07/15/19 12:19,"464 Washington St, Los Angeles, CA 90001" -225787,Bose SoundSport Headphones,1,99.99,07/15/19 12:19,"464 Washington St, Los Angeles, CA 90001" -225788,iPhone,1,700,07/07/19 17:06,"21 Cherry St, San Francisco, CA 94016" -225788,Lightning Charging Cable,2,14.95,07/07/19 17:06,"21 Cherry St, San Francisco, CA 94016" -225789,USB-C Charging Cable,1,11.95,07/07/19 20:17,"940 South St, Los Angeles, CA 90001" -225790,AA Batteries (4-pack),1,3.84,07/14/19 17:02,"400 6th St, New York City, NY 10001" -225791,USB-C Charging Cable,1,11.95,07/25/19 17:32,"959 Madison St, Boston, MA 02215" -225792,Wired Headphones,1,11.99,07/02/19 10:22,"534 Jefferson St, Dallas, TX 75001" -225793,Wired Headphones,1,11.99,07/28/19 15:12,"601 Main St, Atlanta, GA 30301" -225794,AA Batteries (4-pack),1,3.84,07/24/19 21:40,"967 South St, New York City, NY 10001" -225795,AA Batteries (4-pack),1,3.84,07/09/19 10:41,"328 Jackson St, Boston, MA 02215" -225796,Wired Headphones,1,11.99,07/20/19 14:20,"933 Washington St, Los Angeles, CA 90001" -225797,27in FHD Monitor,1,149.99,07/04/19 15:00,"704 1st St, Portland, ME 04101" -225798,AA Batteries (4-pack),1,3.84,07/23/19 19:27,"897 13th St, Atlanta, GA 30301" -225799,27in 4K Gaming Monitor,1,389.99,07/30/19 22:17,"332 9th St, New York City, NY 10001" -225800,Lightning Charging Cable,1,14.95,07/18/19 21:09,"229 Johnson St, Atlanta, GA 30301" -225801,34in Ultrawide Monitor,1,379.99,07/14/19 11:34,"975 West St, Portland, OR 97035" -225802,AA Batteries (4-pack),1,3.84,07/23/19 06:36,"391 6th St, San Francisco, CA 94016" -225803,Wired Headphones,1,11.99,07/21/19 09:44,"768 8th St, Atlanta, GA 30301" -225803,Macbook Pro Laptop,1,1700,07/21/19 09:44,"768 8th St, Atlanta, GA 30301" -225804,Vareebadd Phone,1,400,07/27/19 04:47,"762 11th St, Los Angeles, CA 90001" -225805,Wired Headphones,1,11.99,07/21/19 19:26,"283 2nd St, Dallas, TX 75001" -225806,AA Batteries (4-pack),2,3.84,07/20/19 22:15,"786 Lakeview St, Seattle, WA 98101" -225807,USB-C Charging Cable,1,11.95,07/18/19 08:38,"361 Maple St, San Francisco, CA 94016" -225808,Lightning Charging Cable,1,14.95,07/29/19 12:43,"196 Spruce St, San Francisco, CA 94016" -225809,iPhone,1,700,07/18/19 21:56,"441 Lincoln St, Atlanta, GA 30301" -225810,USB-C Charging Cable,1,11.95,07/13/19 08:46,"89 Cherry St, San Francisco, CA 94016" -225811,Macbook Pro Laptop,1,1700,07/10/19 16:44,"248 2nd St, Los Angeles, CA 90001" -225812,Bose SoundSport Headphones,1,99.99,07/19/19 23:46,"466 Lincoln St, Seattle, WA 98101" -225813,AA Batteries (4-pack),1,3.84,07/20/19 12:53,"165 Pine St, Los Angeles, CA 90001" -225814,AAA Batteries (4-pack),1,2.99,07/06/19 08:30,"293 1st St, Los Angeles, CA 90001" -225815,AA Batteries (4-pack),4,3.84,07/10/19 19:26,"344 Lakeview St, San Francisco, CA 94016" -225816,Lightning Charging Cable,1,14.95,07/19/19 10:29,"554 Forest St, Los Angeles, CA 90001" -225817,Lightning Charging Cable,1,14.95,07/13/19 21:51,"36 2nd St, New York City, NY 10001" -225818,Flatscreen TV,1,300,07/10/19 21:00,"873 Park St, San Francisco, CA 94016" -225819,20in Monitor,1,109.99,07/11/19 21:08,"249 7th St, New York City, NY 10001" -225820,AA Batteries (4-pack),1,3.84,07/06/19 14:04,"178 Walnut St, Austin, TX 73301" -225821,Bose SoundSport Headphones,1,99.99,07/08/19 00:09,"740 Church St, Dallas, TX 75001" -225822,USB-C Charging Cable,1,11.95,07/07/19 00:06,"548 4th St, Portland, ME 04101" -225823,USB-C Charging Cable,1,11.95,07/28/19 13:31,"41 Spruce St, Los Angeles, CA 90001" -225824,Lightning Charging Cable,1,14.95,07/14/19 12:29,"944 12th St, Seattle, WA 98101" -225825,Bose SoundSport Headphones,1,99.99,07/20/19 11:54,"350 West St, Seattle, WA 98101" -225826,Bose SoundSport Headphones,1,99.99,07/12/19 09:41,"601 Meadow St, Dallas, TX 75001" -225827,USB-C Charging Cable,1,11.95,07/22/19 19:45,"318 Hill St, Atlanta, GA 30301" -225828,Wired Headphones,1,11.99,07/21/19 19:44,"423 Jackson St, San Francisco, CA 94016" -225829,Bose SoundSport Headphones,1,99.99,07/23/19 16:43,"355 South St, Los Angeles, CA 90001" -225830,AAA Batteries (4-pack),1,2.99,07/05/19 20:55,"152 Lake St, New York City, NY 10001" -225831,Bose SoundSport Headphones,1,99.99,07/24/19 17:31,"321 Lakeview St, San Francisco, CA 94016" -225832,27in FHD Monitor,1,149.99,07/21/19 20:19,"357 Cherry St, Austin, TX 73301" -225833,AAA Batteries (4-pack),1,2.99,07/11/19 18:30,"708 13th St, San Francisco, CA 94016" -225834,Wired Headphones,1,11.99,07/06/19 18:53,"998 Lakeview St, Boston, MA 02215" -225834,Lightning Charging Cable,1,14.95,07/06/19 18:53,"998 Lakeview St, Boston, MA 02215" -225835,20in Monitor,1,109.99,07/05/19 17:53,"205 North St, Portland, OR 97035" -225836,Lightning Charging Cable,1,14.95,07/11/19 14:02,"467 Walnut St, Portland, ME 04101" -225837,Flatscreen TV,1,300,07/17/19 12:13,"245 Jackson St, Los Angeles, CA 90001" -225838,Apple Airpods Headphones,1,150,07/06/19 11:37,"435 Park St, San Francisco, CA 94016" -225839,Wired Headphones,1,11.99,07/09/19 00:37,"132 River St, San Francisco, CA 94016" -225840,AA Batteries (4-pack),1,3.84,07/14/19 12:30,"579 North St, Los Angeles, CA 90001" -225841,Wired Headphones,1,11.99,07/28/19 19:50,"805 Walnut St, Boston, MA 02215" -225842,ThinkPad Laptop,1,999.99,07/17/19 19:09,"644 Spruce St, Dallas, TX 75001" -225843,Wired Headphones,1,11.99,07/21/19 14:12,"345 Meadow St, Portland, OR 97035" -225844,Apple Airpods Headphones,1,150,07/01/19 10:26,"197 Hill St, San Francisco, CA 94016" -225845,USB-C Charging Cable,1,11.95,07/04/19 10:51,"528 4th St, Dallas, TX 75001" -225846,AA Batteries (4-pack),2,3.84,07/26/19 06:26,"336 Madison St, New York City, NY 10001" -225847,Apple Airpods Headphones,1,150,07/03/19 20:06,"676 North St, Dallas, TX 75001" -225848,Apple Airpods Headphones,1,150,07/25/19 04:34,"387 Sunset St, San Francisco, CA 94016" -225849,Bose SoundSport Headphones,1,99.99,07/19/19 21:17,"140 South St, Los Angeles, CA 90001" -225850,AA Batteries (4-pack),1,3.84,07/16/19 22:38,"247 Washington St, San Francisco, CA 94016" -,,,,, -225851,Bose SoundSport Headphones,1,99.99,07/08/19 13:39,"825 11th St, Austin, TX 73301" -225852,iPhone,1,700,07/08/19 19:49,"907 South St, Atlanta, GA 30301" -225852,Lightning Charging Cable,1,14.95,07/08/19 19:49,"907 South St, Atlanta, GA 30301" -225853,AAA Batteries (4-pack),1,2.99,07/03/19 06:57,"518 Maple St, Boston, MA 02215" -225854,27in FHD Monitor,1,149.99,07/06/19 01:19,"829 Center St, San Francisco, CA 94016" -225855,Google Phone,1,600,07/28/19 21:33,"402 12th St, Boston, MA 02215" -225855,Wired Headphones,1,11.99,07/28/19 21:33,"402 12th St, Boston, MA 02215" -225856,Apple Airpods Headphones,1,150,07/05/19 22:34,"58 5th St, San Francisco, CA 94016" -225857,Bose SoundSport Headphones,1,99.99,07/29/19 20:33,"78 9th St, Atlanta, GA 30301" -,,,,, -225858,AA Batteries (4-pack),1,3.84,07/27/19 13:58,"263 5th St, New York City, NY 10001" -225859,Google Phone,1,600,07/28/19 18:36,"843 Lincoln St, Dallas, TX 75001" -225859,Wired Headphones,1,11.99,07/28/19 18:36,"843 Lincoln St, Dallas, TX 75001" -225860,AA Batteries (4-pack),2,3.84,07/09/19 16:25,"858 2nd St, San Francisco, CA 94016" -225861,Bose SoundSport Headphones,1,99.99,07/25/19 15:42,"795 Walnut St, Austin, TX 73301" -225862,iPhone,1,700,07/01/19 23:21,"130 Johnson St, Seattle, WA 98101" -225862,Apple Airpods Headphones,1,150,07/01/19 23:21,"130 Johnson St, Seattle, WA 98101" -225863,27in FHD Monitor,1,149.99,07/25/19 09:21,"142 Church St, Los Angeles, CA 90001" -225864,Lightning Charging Cable,1,14.95,07/22/19 20:02,"106 10th St, Dallas, TX 75001" -225865,AAA Batteries (4-pack),2,2.99,07/07/19 12:33,"168 Maple St, Boston, MA 02215" -225866,Lightning Charging Cable,1,14.95,07/15/19 08:12,"318 Jackson St, Los Angeles, CA 90001" -225867,27in 4K Gaming Monitor,1,389.99,07/16/19 23:25,"450 Chestnut St, New York City, NY 10001" -225868,USB-C Charging Cable,2,11.95,07/05/19 14:50,"570 Cherry St, San Francisco, CA 94016" -225869,27in 4K Gaming Monitor,1,389.99,07/23/19 13:23,"607 Chestnut St, San Francisco, CA 94016" -225870,Lightning Charging Cable,1,14.95,07/28/19 23:31,"972 Elm St, Seattle, WA 98101" -225871,USB-C Charging Cable,1,11.95,07/12/19 15:11,"74 Ridge St, Dallas, TX 75001" -225872,AA Batteries (4-pack),1,3.84,07/29/19 09:59,"580 7th St, New York City, NY 10001" -225873,Vareebadd Phone,1,400,07/12/19 01:59,"968 14th St, Seattle, WA 98101" -225874,AAA Batteries (4-pack),2,2.99,07/10/19 00:33,"139 North St, New York City, NY 10001" -225875,Flatscreen TV,1,300,07/31/19 19:06,"956 Jackson St, Los Angeles, CA 90001" -225876,Wired Headphones,1,11.99,07/31/19 17:36,"179 South St, Atlanta, GA 30301" -225877,AA Batteries (4-pack),1,3.84,07/06/19 19:26,"777 Hickory St, San Francisco, CA 94016" -225878,27in FHD Monitor,1,149.99,07/29/19 12:40,"501 Adams St, Portland, OR 97035" -225879,20in Monitor,1,109.99,07/09/19 09:39,"254 Main St, San Francisco, CA 94016" -225880,Lightning Charging Cable,1,14.95,07/31/19 14:33,"813 North St, Seattle, WA 98101" -225881,Apple Airpods Headphones,1,150,07/30/19 10:27,"490 Ridge St, San Francisco, CA 94016" -225882,USB-C Charging Cable,1,11.95,07/30/19 08:28,"575 Maple St, Portland, OR 97035" -225883,USB-C Charging Cable,1,11.95,07/01/19 17:16,"997 Meadow St, Los Angeles, CA 90001" -225884,USB-C Charging Cable,1,11.95,07/28/19 15:59,"655 Lincoln St, Dallas, TX 75001" -225885,Apple Airpods Headphones,1,150,07/21/19 20:01,"179 Adams St, New York City, NY 10001" -225886,USB-C Charging Cable,1,11.95,07/21/19 15:09,"507 Pine St, New York City, NY 10001" -225887,Lightning Charging Cable,1,14.95,07/18/19 16:32,"487 Sunset St, San Francisco, CA 94016" -225888,AAA Batteries (4-pack),1,2.99,07/17/19 22:29,"682 9th St, San Francisco, CA 94016" -225889,Wired Headphones,1,11.99,07/27/19 20:48,"90 Elm St, San Francisco, CA 94016" -225890,Apple Airpods Headphones,1,150,07/15/19 09:29,"35 Meadow St, Portland, OR 97035" -225891,Apple Airpods Headphones,1,150,07/06/19 18:47,"626 Sunset St, San Francisco, CA 94016" -225892,Wired Headphones,1,11.99,07/02/19 12:44,"471 Ridge St, San Francisco, CA 94016" -225893,Lightning Charging Cable,1,14.95,07/07/19 20:47,"92 West St, Seattle, WA 98101" -225894,Flatscreen TV,1,300,07/24/19 23:24,"674 Wilson St, Seattle, WA 98101" -225895,Lightning Charging Cable,1,14.95,07/05/19 17:47,"224 Adams St, Atlanta, GA 30301" -225896,AAA Batteries (4-pack),1,2.99,07/26/19 23:20,"77 6th St, Boston, MA 02215" -225897,iPhone,1,700,07/10/19 23:55,"723 Forest St, San Francisco, CA 94016" -225897,Apple Airpods Headphones,1,150,07/10/19 23:55,"723 Forest St, San Francisco, CA 94016" -225898,Apple Airpods Headphones,1,150,07/29/19 09:24,"641 Lake St, San Francisco, CA 94016" -225899,Lightning Charging Cable,1,14.95,07/17/19 13:46,"19 Lakeview St, San Francisco, CA 94016" -225900,Macbook Pro Laptop,1,1700,07/20/19 13:43,"902 Park St, Atlanta, GA 30301" -225901,Vareebadd Phone,1,400,07/13/19 17:02,"771 Sunset St, Austin, TX 73301" -225901,Wired Headphones,1,11.99,07/13/19 17:02,"771 Sunset St, Austin, TX 73301" -225902,Lightning Charging Cable,1,14.95,07/09/19 09:34,"484 Madison St, Dallas, TX 75001" -225903,iPhone,1,700,07/02/19 12:14,"858 Chestnut St, San Francisco, CA 94016" -225904,AA Batteries (4-pack),2,3.84,07/22/19 13:09,"454 Hill St, Boston, MA 02215" -225905,27in 4K Gaming Monitor,1,389.99,07/06/19 13:08,"567 14th St, San Francisco, CA 94016" -225906,AAA Batteries (4-pack),2,2.99,07/02/19 14:48,"213 Johnson St, San Francisco, CA 94016" -225907,Lightning Charging Cable,1,14.95,07/08/19 20:39,"689 8th St, Los Angeles, CA 90001" -225908,AAA Batteries (4-pack),1,2.99,07/04/19 22:06,"867 Adams St, Boston, MA 02215" -225909,Apple Airpods Headphones,1,150,07/24/19 17:16,"598 7th St, San Francisco, CA 94016" -225910,iPhone,1,700,07/08/19 16:03,"409 Willow St, Boston, MA 02215" -225910,Lightning Charging Cable,1,14.95,07/08/19 16:03,"409 Willow St, Boston, MA 02215" -225911,27in 4K Gaming Monitor,1,389.99,07/31/19 13:08,"648 Maple St, Dallas, TX 75001" -225912,USB-C Charging Cable,1,11.95,07/14/19 09:10,"994 Cherry St, Los Angeles, CA 90001" -225913,USB-C Charging Cable,1,11.95,07/30/19 17:50,"133 7th St, Boston, MA 02215" -225914,Bose SoundSport Headphones,1,99.99,07/28/19 17:36,"936 Washington St, San Francisco, CA 94016" -225915,Macbook Pro Laptop,1,1700,07/18/19 18:04,"501 7th St, Boston, MA 02215" -225916,Macbook Pro Laptop,1,1700,07/22/19 20:49,"202 Maple St, Portland, OR 97035" -225917,Apple Airpods Headphones,1,150,07/17/19 11:06,"597 Jackson St, Dallas, TX 75001" -225918,AAA Batteries (4-pack),1,2.99,07/28/19 22:24,"375 Sunset St, Los Angeles, CA 90001" -225919,Wired Headphones,1,11.99,07/30/19 12:38,"26 Jackson St, Portland, OR 97035" -225920,USB-C Charging Cable,1,11.95,07/31/19 10:01,"13 Chestnut St, New York City, NY 10001" -225921,Lightning Charging Cable,1,14.95,07/29/19 15:20,"867 1st St, Los Angeles, CA 90001" -225922,Lightning Charging Cable,1,14.95,07/21/19 19:06,"273 Church St, San Francisco, CA 94016" -225923,AAA Batteries (4-pack),1,2.99,07/08/19 13:45,"221 Forest St, San Francisco, CA 94016" -225924,Apple Airpods Headphones,1,150,07/13/19 18:22,"827 Elm St, Los Angeles, CA 90001" -225925,iPhone,1,700,07/27/19 12:50,"665 Forest St, Los Angeles, CA 90001" -225926,AA Batteries (4-pack),6,3.84,07/02/19 12:24,"750 Center St, Boston, MA 02215" -225927,AAA Batteries (4-pack),1,2.99,07/30/19 17:02,"34 North St, Los Angeles, CA 90001" -225928,Apple Airpods Headphones,1,150,07/28/19 20:58,"919 Church St, Portland, OR 97035" -225929,AAA Batteries (4-pack),1,2.99,07/05/19 14:28,"297 9th St, San Francisco, CA 94016" -225930,USB-C Charging Cable,1,11.95,07/12/19 23:11,"433 Hill St, San Francisco, CA 94016" -225931,20in Monitor,1,109.99,07/16/19 21:28,"784 Main St, San Francisco, CA 94016" -225932,Bose SoundSport Headphones,1,99.99,07/19/19 13:35,"688 Walnut St, New York City, NY 10001" -225933,USB-C Charging Cable,1,11.95,07/15/19 22:47,"402 Forest St, Seattle, WA 98101" -225934,Bose SoundSport Headphones,1,99.99,07/22/19 17:11,"679 6th St, Los Angeles, CA 90001" -225935,Lightning Charging Cable,1,14.95,07/04/19 19:32,"690 Wilson St, San Francisco, CA 94016" -225936,USB-C Charging Cable,2,11.95,07/03/19 18:28,"317 Maple St, Los Angeles, CA 90001" -225937,Google Phone,1,600,07/28/19 16:57,"266 Sunset St, Los Angeles, CA 90001" -225937,Wired Headphones,1,11.99,07/28/19 16:57,"266 Sunset St, Los Angeles, CA 90001" -225938,AA Batteries (4-pack),2,3.84,07/30/19 21:11,"700 Forest St, Portland, OR 97035" -225939,AA Batteries (4-pack),2,3.84,07/01/19 06:45,"536 10th St, Dallas, TX 75001" -225940,AA Batteries (4-pack),1,3.84,07/16/19 07:35,"35 Main St, Los Angeles, CA 90001" -225941,USB-C Charging Cable,1,11.95,07/25/19 14:36,"508 Meadow St, Boston, MA 02215" -225942,AA Batteries (4-pack),3,3.84,07/09/19 15:07,"41 Park St, Boston, MA 02215" -225943,AAA Batteries (4-pack),1,2.99,07/01/19 16:49,"477 6th St, Atlanta, GA 30301" -225944,USB-C Charging Cable,1,11.95,07/24/19 20:29,"582 Johnson St, Boston, MA 02215" -225945,Lightning Charging Cable,1,14.95,07/06/19 09:31,"485 Lincoln St, Los Angeles, CA 90001" -225946,27in FHD Monitor,1,149.99,07/14/19 17:09,"613 Jefferson St, San Francisco, CA 94016" -225947,USB-C Charging Cable,1,11.95,07/18/19 07:46,"349 Elm St, Atlanta, GA 30301" -225948,ThinkPad Laptop,1,999.99,07/01/19 19:43,"296 Sunset St, Atlanta, GA 30301" -225949,ThinkPad Laptop,1,999.99,07/12/19 22:47,"223 14th St, New York City, NY 10001" -225950,AA Batteries (4-pack),1,3.84,07/18/19 16:31,"320 Sunset St, San Francisco, CA 94016" -225951,Apple Airpods Headphones,1,150,07/11/19 05:53,"540 Pine St, New York City, NY 10001" -225952,20in Monitor,1,109.99,07/12/19 18:59,"958 South St, Atlanta, GA 30301" -225953,AA Batteries (4-pack),2,3.84,07/31/19 10:37,"197 Lincoln St, San Francisco, CA 94016" -225954,34in Ultrawide Monitor,1,379.99,07/04/19 18:01,"135 Forest St, New York City, NY 10001" -225955,AA Batteries (4-pack),1,3.84,07/29/19 19:41,"302 Maple St, Los Angeles, CA 90001" -225956,AAA Batteries (4-pack),1,2.99,07/09/19 14:02,"874 13th St, San Francisco, CA 94016" -225957,AAA Batteries (4-pack),1,2.99,07/14/19 00:42,"484 Maple St, New York City, NY 10001" -225958,Bose SoundSport Headphones,1,99.99,07/25/19 21:59,"358 West St, Portland, OR 97035" -225959,Lightning Charging Cable,1,14.95,07/02/19 12:37,"789 Johnson St, Boston, MA 02215" -225959,AAA Batteries (4-pack),1,2.99,07/02/19 12:37,"789 Johnson St, Boston, MA 02215" -225960,iPhone,1,700,07/12/19 09:18,"451 Lake St, Atlanta, GA 30301" -225961,Lightning Charging Cable,2,14.95,07/31/19 13:42,"745 9th St, Seattle, WA 98101" -225962,Lightning Charging Cable,1,14.95,07/12/19 16:19,"391 Forest St, Boston, MA 02215" -225963,27in FHD Monitor,1,149.99,07/19/19 21:01,"252 Chestnut St, Los Angeles, CA 90001" -225964,Lightning Charging Cable,1,14.95,07/14/19 19:56,"383 Lakeview St, Atlanta, GA 30301" -225965,Flatscreen TV,1,300,07/23/19 17:13,"91 4th St, Dallas, TX 75001" -225966,34in Ultrawide Monitor,1,379.99,07/14/19 22:41,"547 Spruce St, San Francisco, CA 94016" -225967,Bose SoundSport Headphones,1,99.99,07/23/19 15:47,"979 Forest St, Dallas, TX 75001" -225968,iPhone,1,700,07/30/19 11:29,"340 Lake St, San Francisco, CA 94016" -225969,AAA Batteries (4-pack),1,2.99,07/27/19 17:59,"760 Chestnut St, Atlanta, GA 30301" -225970,Lightning Charging Cable,1,14.95,07/05/19 13:41,"155 Hickory St, Seattle, WA 98101" -225971,34in Ultrawide Monitor,1,379.99,07/03/19 17:16,"753 Wilson St, Boston, MA 02215" -225972,34in Ultrawide Monitor,1,379.99,07/03/19 11:37,"801 Wilson St, Seattle, WA 98101" -225973,Lightning Charging Cable,1,14.95,07/22/19 06:47,"323 Johnson St, Atlanta, GA 30301" -225974,Bose SoundSport Headphones,1,99.99,07/22/19 11:53,"774 5th St, New York City, NY 10001" -225975,USB-C Charging Cable,1,11.95,07/03/19 13:02,"130 South St, Dallas, TX 75001" -225976,USB-C Charging Cable,1,11.95,07/21/19 19:37,"546 6th St, Atlanta, GA 30301" -225977,Wired Headphones,1,11.99,07/28/19 09:51,"98 River St, New York City, NY 10001" -225978,27in FHD Monitor,1,149.99,07/19/19 10:42,"887 Hill St, San Francisco, CA 94016" -225979,Bose SoundSport Headphones,1,99.99,07/17/19 12:25,"885 Hill St, San Francisco, CA 94016" -225980,20in Monitor,1,109.99,07/12/19 13:41,"44 13th St, San Francisco, CA 94016" -225981,ThinkPad Laptop,1,999.99,07/10/19 12:39,"556 2nd St, Los Angeles, CA 90001" -225982,iPhone,1,700,07/11/19 11:05,"20 1st St, Boston, MA 02215" -225982,Apple Airpods Headphones,1,150,07/11/19 11:05,"20 1st St, Boston, MA 02215" -225983,AAA Batteries (4-pack),1,2.99,07/21/19 19:31,"52 Madison St, San Francisco, CA 94016" -225984,27in FHD Monitor,1,149.99,07/28/19 11:21,"751 Madison St, Los Angeles, CA 90001" -225985,AAA Batteries (4-pack),1,2.99,07/16/19 19:18,"172 Pine St, Boston, MA 02215" -225986,Lightning Charging Cable,1,14.95,07/29/19 13:31,"353 Pine St, Boston, MA 02215" -225987,AAA Batteries (4-pack),2,2.99,07/13/19 09:08,"863 Maple St, Seattle, WA 98101" -225988,AA Batteries (4-pack),1,3.84,07/19/19 03:51,"142 Jackson St, San Francisco, CA 94016" -225989,USB-C Charging Cable,1,11.95,07/12/19 19:06,"200 4th St, San Francisco, CA 94016" -225990,27in FHD Monitor,1,149.99,07/14/19 14:02,"96 Hickory St, Atlanta, GA 30301" -225991,27in FHD Monitor,1,149.99,07/22/19 08:07,"295 1st St, Los Angeles, CA 90001" -225991,Macbook Pro Laptop,1,1700,07/22/19 08:07,"295 1st St, Los Angeles, CA 90001" -225992,Google Phone,1,600,07/14/19 21:38,"688 Lake St, Los Angeles, CA 90001" -225992,Wired Headphones,1,11.99,07/14/19 21:38,"688 Lake St, Los Angeles, CA 90001" -225993,27in FHD Monitor,1,149.99,07/23/19 09:24,"280 Highland St, San Francisco, CA 94016" -225994,AA Batteries (4-pack),1,3.84,07/23/19 15:15,"794 Wilson St, Dallas, TX 75001" -225995,Lightning Charging Cable,1,14.95,07/17/19 17:57,"559 Walnut St, San Francisco, CA 94016" -225996,Lightning Charging Cable,1,14.95,07/08/19 22:31,"939 4th St, San Francisco, CA 94016" -225997,AAA Batteries (4-pack),1,2.99,07/27/19 17:13,"915 Chestnut St, Boston, MA 02215" -225998,Lightning Charging Cable,1,14.95,07/15/19 07:36,"140 Park St, Portland, OR 97035" -225999,Wired Headphones,1,11.99,07/18/19 12:02,"761 9th St, San Francisco, CA 94016" -226000,AAA Batteries (4-pack),1,2.99,07/08/19 13:15,"473 North St, Atlanta, GA 30301" -226001,USB-C Charging Cable,1,11.95,07/05/19 14:13,"15 Hill St, Dallas, TX 75001" -226002,Lightning Charging Cable,2,14.95,07/25/19 21:42,"739 Pine St, San Francisco, CA 94016" -226003,Lightning Charging Cable,1,14.95,07/05/19 20:43,"35 Highland St, Los Angeles, CA 90001" -226004,20in Monitor,1,109.99,07/21/19 11:45,"961 Jefferson St, Los Angeles, CA 90001" -226005,Lightning Charging Cable,1,14.95,07/22/19 11:23,"249 Highland St, San Francisco, CA 94016" -226006,34in Ultrawide Monitor,1,379.99,07/11/19 02:18,"481 Hickory St, Boston, MA 02215" -226007,Macbook Pro Laptop,1,1700,07/08/19 17:19,"528 Church St, Los Angeles, CA 90001" -226008,Bose SoundSport Headphones,1,99.99,07/17/19 18:29,"863 1st St, San Francisco, CA 94016" -226009,ThinkPad Laptop,1,999.99,07/23/19 21:47,"193 Lincoln St, Austin, TX 73301" -226010,Wired Headphones,1,11.99,07/12/19 21:52,"5 14th St, Austin, TX 73301" -226011,USB-C Charging Cable,1,11.95,07/25/19 19:23,"813 Pine St, Atlanta, GA 30301" -226012,27in FHD Monitor,1,149.99,07/02/19 14:53,"786 Lake St, New York City, NY 10001" -226013,27in 4K Gaming Monitor,1,389.99,07/01/19 16:59,"783 Church St, Boston, MA 02215" -226014,AAA Batteries (4-pack),1,2.99,07/25/19 12:06,"699 Elm St, Atlanta, GA 30301" -226015,Lightning Charging Cable,1,14.95,07/24/19 19:51,"579 Cherry St, Atlanta, GA 30301" -226016,USB-C Charging Cable,1,11.95,07/15/19 09:11,"531 Lakeview St, Portland, OR 97035" -226017,AAA Batteries (4-pack),2,2.99,07/12/19 22:33,"381 Park St, New York City, NY 10001" -226018,iPhone,1,700,07/01/19 11:00,"754 Hill St, San Francisco, CA 94016" -226019,Wired Headphones,1,11.99,07/22/19 16:31,"629 11th St, New York City, NY 10001" -226020,Lightning Charging Cable,1,14.95,07/23/19 09:46,"38 Adams St, New York City, NY 10001" -226021,Vareebadd Phone,1,400,07/27/19 19:22,"225 Meadow St, San Francisco, CA 94016" -226022,AAA Batteries (4-pack),1,2.99,07/12/19 12:15,"758 Johnson St, Portland, OR 97035" -226023,AA Batteries (4-pack),2,3.84,07/07/19 14:30,"341 7th St, Portland, OR 97035" -226024,27in FHD Monitor,1,149.99,07/06/19 15:48,"211 West St, New York City, NY 10001" -226025,AAA Batteries (4-pack),1,2.99,07/12/19 16:05,"246 Church St, San Francisco, CA 94016" -226026,AA Batteries (4-pack),1,3.84,07/17/19 08:33,"649 9th St, Los Angeles, CA 90001" -226027,Wired Headphones,1,11.99,07/08/19 17:22,"770 7th St, Los Angeles, CA 90001" -226028,AAA Batteries (4-pack),1,2.99,07/03/19 16:19,"552 Spruce St, San Francisco, CA 94016" -226029,AA Batteries (4-pack),1,3.84,07/02/19 22:31,"648 Sunset St, New York City, NY 10001" -226030,27in FHD Monitor,1,149.99,07/27/19 21:21,"470 12th St, San Francisco, CA 94016" -226031,iPhone,1,700,07/05/19 09:34,"548 Sunset St, Boston, MA 02215" -226031,Wired Headphones,1,11.99,07/05/19 09:34,"548 Sunset St, Boston, MA 02215" -226032,20in Monitor,1,109.99,07/20/19 09:54,"816 Jefferson St, Seattle, WA 98101" -226033,Apple Airpods Headphones,1,150,07/13/19 16:48,"682 4th St, New York City, NY 10001" -226034,Google Phone,1,600,07/31/19 16:53,"787 Park St, Seattle, WA 98101" -226035,ThinkPad Laptop,1,999.99,07/20/19 13:52,"769 Wilson St, Boston, MA 02215" -226036,Bose SoundSport Headphones,1,99.99,07/23/19 13:53,"611 Sunset St, Seattle, WA 98101" -226037,USB-C Charging Cable,1,11.95,07/16/19 23:48,"233 Johnson St, San Francisco, CA 94016" -226038,AAA Batteries (4-pack),1,2.99,07/03/19 11:58,"742 Willow St, San Francisco, CA 94016" -226039,27in 4K Gaming Monitor,1,389.99,07/27/19 22:58,"617 Adams St, Dallas, TX 75001" -226040,Lightning Charging Cable,1,14.95,07/10/19 14:46,"20 North St, Los Angeles, CA 90001" -226041,Bose SoundSport Headphones,1,99.99,07/07/19 22:53,"949 Jefferson St, San Francisco, CA 94016" -226042,27in FHD Monitor,1,149.99,07/25/19 11:45,"42 Wilson St, San Francisco, CA 94016" -226043,20in Monitor,1,109.99,07/23/19 11:11,"569 West St, Boston, MA 02215" -226044,Bose SoundSport Headphones,1,99.99,07/26/19 21:08,"504 Chestnut St, Los Angeles, CA 90001" -226045,Macbook Pro Laptop,1,1700,07/31/19 15:42,"991 2nd St, San Francisco, CA 94016" -226046,AAA Batteries (4-pack),1,2.99,07/12/19 12:46,"736 Elm St, San Francisco, CA 94016" -226047,Apple Airpods Headphones,1,150,07/31/19 04:48,"705 Chestnut St, Dallas, TX 75001" -226048,AAA Batteries (4-pack),1,2.99,07/09/19 15:41,"40 Hickory St, Atlanta, GA 30301" -226049,Lightning Charging Cable,1,14.95,07/22/19 21:31,"998 Willow St, Seattle, WA 98101" -226050,Apple Airpods Headphones,1,150,07/15/19 21:38,"169 Cherry St, Los Angeles, CA 90001" -226051,Wired Headphones,1,11.99,07/28/19 21:20,"871 2nd St, Austin, TX 73301" -226052,Lightning Charging Cable,1,14.95,07/03/19 20:49,"581 Pine St, New York City, NY 10001" -226053,Bose SoundSport Headphones,1,99.99,07/31/19 22:40,"525 Dogwood St, Seattle, WA 98101" -226054,Bose SoundSport Headphones,1,99.99,07/03/19 21:59,"388 Madison St, Dallas, TX 75001" -226055,27in FHD Monitor,1,149.99,07/27/19 18:55,"778 Willow St, Seattle, WA 98101" -226056,AAA Batteries (4-pack),1,2.99,07/22/19 08:07,"240 Cedar St, San Francisco, CA 94016" -226057,iPhone,1,700,07/18/19 15:07,"382 Lake St, San Francisco, CA 94016" -226058,USB-C Charging Cable,1,11.95,07/18/19 20:05,"716 Willow St, Seattle, WA 98101" -226059,AAA Batteries (4-pack),2,2.99,07/25/19 18:07,"992 Maple St, Boston, MA 02215" -226060,AA Batteries (4-pack),1,3.84,07/27/19 19:44,"449 Washington St, Atlanta, GA 30301" -226061,AA Batteries (4-pack),2,3.84,07/23/19 20:30,"82 9th St, Portland, OR 97035" -226062,Bose SoundSport Headphones,1,99.99,07/13/19 11:15,"916 Madison St, Portland, OR 97035" -226063,34in Ultrawide Monitor,1,379.99,07/06/19 11:39,"560 Wilson St, New York City, NY 10001" -226064,Macbook Pro Laptop,1,1700,07/26/19 00:57,"933 Hickory St, Boston, MA 02215" -226065,Lightning Charging Cable,1,14.95,07/16/19 21:04,"252 Lincoln St, New York City, NY 10001" -226066,AAA Batteries (4-pack),1,2.99,07/26/19 10:38,"146 Meadow St, New York City, NY 10001" -226067,27in FHD Monitor,1,149.99,07/30/19 23:57,"623 Ridge St, Los Angeles, CA 90001" -226068,USB-C Charging Cable,1,11.95,07/07/19 13:34,"591 Johnson St, Atlanta, GA 30301" -226069,Wired Headphones,1,11.99,07/16/19 05:49,"621 11th St, Los Angeles, CA 90001" -226070,USB-C Charging Cable,1,11.95,07/28/19 22:51,"559 Meadow St, Seattle, WA 98101" -226071,AAA Batteries (4-pack),2,2.99,07/31/19 21:12,"361 Lakeview St, Boston, MA 02215" -226072,AAA Batteries (4-pack),1,2.99,07/28/19 14:42,"848 Hill St, Portland, OR 97035" -226073,Apple Airpods Headphones,1,150,07/03/19 20:32,"688 Hickory St, San Francisco, CA 94016" -226074,Wired Headphones,1,11.99,07/15/19 18:38,"534 Jefferson St, San Francisco, CA 94016" -226075,Lightning Charging Cable,1,14.95,07/06/19 13:36,"520 4th St, New York City, NY 10001" -226076,Lightning Charging Cable,1,14.95,07/27/19 20:15,"590 6th St, Seattle, WA 98101" -226077,ThinkPad Laptop,1,999.99,07/03/19 21:30,"17 Adams St, San Francisco, CA 94016" -226078,Bose SoundSport Headphones,1,99.99,07/15/19 07:51,"627 13th St, New York City, NY 10001" -226079,Wired Headphones,1,11.99,07/19/19 04:24,"456 Madison St, San Francisco, CA 94016" -226080,27in FHD Monitor,1,149.99,07/27/19 11:39,"229 Meadow St, San Francisco, CA 94016" -226081,34in Ultrawide Monitor,1,379.99,07/04/19 03:54,"286 Washington St, New York City, NY 10001" -226082,Google Phone,1,600,07/22/19 18:45,"981 12th St, Boston, MA 02215" -226083,USB-C Charging Cable,2,11.95,07/13/19 19:46,"837 West St, New York City, NY 10001" -226084,AA Batteries (4-pack),1,3.84,07/26/19 17:12,"320 West St, San Francisco, CA 94016" -226085,AA Batteries (4-pack),1,3.84,07/15/19 16:37,"829 5th St, Austin, TX 73301" -226086,AA Batteries (4-pack),1,3.84,07/13/19 18:36,"987 11th St, San Francisco, CA 94016" -226087,iPhone,1,700,07/06/19 10:39,"71 Ridge St, Boston, MA 02215" -226088,Bose SoundSport Headphones,1,99.99,07/19/19 23:41,"491 Pine St, Atlanta, GA 30301" -226089,Apple Airpods Headphones,1,150,07/22/19 21:35,"745 9th St, Los Angeles, CA 90001" -226090,Apple Airpods Headphones,1,150,07/18/19 16:18,"342 North St, Atlanta, GA 30301" -226091,Wired Headphones,1,11.99,07/21/19 08:45,"817 Lake St, Seattle, WA 98101" -226092,34in Ultrawide Monitor,1,379.99,07/26/19 08:07,"702 Hill St, Dallas, TX 75001" -226093,Macbook Pro Laptop,1,1700,07/30/19 12:30,"37 Jefferson St, San Francisco, CA 94016" -226094,Lightning Charging Cable,1,14.95,07/01/19 06:30,"351 7th St, Seattle, WA 98101" -226094,Apple Airpods Headphones,1,150,07/01/19 06:30,"351 7th St, Seattle, WA 98101" -226095,USB-C Charging Cable,1,11.95,07/01/19 11:46,"829 Jefferson St, New York City, NY 10001" -226096,AA Batteries (4-pack),1,3.84,07/09/19 08:21,"264 11th St, Los Angeles, CA 90001" -226097,AA Batteries (4-pack),1,3.84,07/05/19 18:20,"992 8th St, Austin, TX 73301" -226098,iPhone,1,700,07/27/19 11:42,"212 Spruce St, New York City, NY 10001" -226098,Apple Airpods Headphones,1,150,07/27/19 11:42,"212 Spruce St, New York City, NY 10001" -226099,Wired Headphones,1,11.99,07/08/19 14:36,"274 Lakeview St, Atlanta, GA 30301" -226100,27in FHD Monitor,1,149.99,07/29/19 18:28,"533 Cedar St, Austin, TX 73301" -226101,Apple Airpods Headphones,1,150,07/10/19 10:23,"834 12th St, Seattle, WA 98101" -226102,Apple Airpods Headphones,1,150,07/16/19 18:48,"982 12th St, Dallas, TX 75001" -226103,Flatscreen TV,1,300,07/11/19 17:54,"150 Walnut St, Boston, MA 02215" -226104,Bose SoundSport Headphones,1,99.99,07/21/19 17:40,"910 Johnson St, Boston, MA 02215" -226105,AA Batteries (4-pack),1,3.84,07/24/19 15:02,"685 Cherry St, San Francisco, CA 94016" -226106,Lightning Charging Cable,1,14.95,07/08/19 11:08,"660 5th St, Los Angeles, CA 90001" -226107,Apple Airpods Headphones,1,150,07/04/19 19:50,"495 Sunset St, Portland, OR 97035" -226108,AAA Batteries (4-pack),1,2.99,07/27/19 11:17,"612 Park St, San Francisco, CA 94016" -226108,iPhone,1,700,07/27/19 11:17,"612 Park St, San Francisco, CA 94016" -226109,AA Batteries (4-pack),1,3.84,07/16/19 10:05,"732 Johnson St, New York City, NY 10001" -226110,34in Ultrawide Monitor,1,379.99,07/20/19 15:04,"195 Sunset St, San Francisco, CA 94016" -226111,Apple Airpods Headphones,1,150,07/12/19 15:35,"136 Washington St, San Francisco, CA 94016" -226112,USB-C Charging Cable,1,11.95,07/19/19 17:28,"294 Madison St, Boston, MA 02215" -226113,Flatscreen TV,1,300,07/24/19 09:38,"975 Hickory St, Los Angeles, CA 90001" -226114,AA Batteries (4-pack),3,3.84,07/26/19 21:16,"896 Wilson St, Boston, MA 02215" -226115,27in FHD Monitor,1,149.99,07/06/19 12:37,"737 Chestnut St, Boston, MA 02215" -226116,AA Batteries (4-pack),2,3.84,07/01/19 19:03,"212 Hickory St, Seattle, WA 98101" -226117,Apple Airpods Headphones,1,150,07/11/19 20:38,"227 6th St, San Francisco, CA 94016" -226118,Bose SoundSport Headphones,1,99.99,07/23/19 17:53,"818 Cherry St, Los Angeles, CA 90001" -226119,USB-C Charging Cable,1,11.95,07/26/19 12:13,"83 Adams St, Los Angeles, CA 90001" -226120,Wired Headphones,1,11.99,07/02/19 11:02,"894 Cherry St, San Francisco, CA 94016" -226121,Lightning Charging Cable,1,14.95,07/24/19 20:13,"434 Elm St, San Francisco, CA 94016" -226122,Lightning Charging Cable,1,14.95,07/13/19 19:00,"325 Cherry St, San Francisco, CA 94016" -226123,34in Ultrawide Monitor,1,379.99,07/03/19 11:58,"839 6th St, Austin, TX 73301" -226124,Flatscreen TV,1,300,07/15/19 14:28,"255 10th St, Dallas, TX 75001" -226125,USB-C Charging Cable,1,11.95,07/25/19 18:54,"84 Chestnut St, Austin, TX 73301" -226126,Apple Airpods Headphones,1,150,07/19/19 13:07,"908 Lincoln St, Seattle, WA 98101" -226127,Lightning Charging Cable,1,14.95,07/27/19 21:15,"269 Madison St, Los Angeles, CA 90001" -226128,USB-C Charging Cable,1,11.95,07/25/19 23:43,"771 1st St, Los Angeles, CA 90001" -226129,Google Phone,1,600,07/25/19 19:39,"475 Lake St, San Francisco, CA 94016" -226129,USB-C Charging Cable,2,11.95,07/25/19 19:39,"475 Lake St, San Francisco, CA 94016" -226130,USB-C Charging Cable,1,11.95,07/20/19 19:08,"853 7th St, Portland, OR 97035" -226131,Lightning Charging Cable,1,14.95,07/13/19 21:41,"143 Cherry St, San Francisco, CA 94016" -226132,Wired Headphones,1,11.99,07/28/19 14:36,"880 1st St, Portland, OR 97035" -226133,34in Ultrawide Monitor,1,379.99,07/12/19 03:17,"241 West St, Los Angeles, CA 90001" -226134,USB-C Charging Cable,1,11.95,07/17/19 13:37,"70 Lincoln St, Los Angeles, CA 90001" -226135,Bose SoundSport Headphones,1,99.99,07/16/19 10:06,"598 8th St, New York City, NY 10001" -226136,AAA Batteries (4-pack),1,2.99,07/28/19 22:22,"16 Willow St, Los Angeles, CA 90001" -226137,iPhone,1,700,07/31/19 18:45,"886 Forest St, San Francisco, CA 94016" -226138,Macbook Pro Laptop,1,1700,07/17/19 10:00,"672 South St, Los Angeles, CA 90001" -226139,AAA Batteries (4-pack),2,2.99,07/12/19 11:48,"224 12th St, Boston, MA 02215" -226140,USB-C Charging Cable,2,11.95,07/26/19 17:50,"772 Ridge St, San Francisco, CA 94016" -226141,Wired Headphones,1,11.99,07/12/19 23:21,"376 North St, Dallas, TX 75001" -226142,AA Batteries (4-pack),1,3.84,07/30/19 18:31,"202 Meadow St, Dallas, TX 75001" -226143,AAA Batteries (4-pack),1,2.99,07/04/19 19:35,"845 Jefferson St, Los Angeles, CA 90001" -226144,27in FHD Monitor,1,149.99,07/23/19 14:35,"225 Sunset St, Boston, MA 02215" -226145,Lightning Charging Cable,1,14.95,07/12/19 18:46,"989 14th St, New York City, NY 10001" -226146,Apple Airpods Headphones,1,150,07/20/19 16:20,"714 Maple St, Portland, OR 97035" -226147,Google Phone,1,600,07/15/19 11:58,"191 Johnson St, San Francisco, CA 94016" -226147,USB-C Charging Cable,1,11.95,07/15/19 11:58,"191 Johnson St, San Francisco, CA 94016" -226148,AA Batteries (4-pack),2,3.84,07/09/19 10:28,"700 10th St, San Francisco, CA 94016" -226149,AA Batteries (4-pack),1,3.84,07/28/19 11:55,"832 Forest St, Austin, TX 73301" -226150,AA Batteries (4-pack),1,3.84,07/09/19 17:20,"763 Main St, Los Angeles, CA 90001" -226151,USB-C Charging Cable,1,11.95,07/18/19 19:41,"253 Hill St, Portland, ME 04101" -226152,Wired Headphones,1,11.99,07/20/19 17:04,"454 11th St, Los Angeles, CA 90001" -226153,Lightning Charging Cable,2,14.95,07/05/19 22:55,"953 Adams St, San Francisco, CA 94016" -226154,iPhone,1,700,07/13/19 20:36,"442 Madison St, New York City, NY 10001" -226154,Lightning Charging Cable,1,14.95,07/13/19 20:36,"442 Madison St, New York City, NY 10001" -226155,AAA Batteries (4-pack),1,2.99,07/04/19 15:36,"662 Madison St, Austin, TX 73301" -226156,Lightning Charging Cable,1,14.95,07/25/19 20:18,"456 Maple St, Seattle, WA 98101" -226157,USB-C Charging Cable,1,11.95,07/09/19 10:57,"904 Cedar St, Atlanta, GA 30301" -226158,Bose SoundSport Headphones,1,99.99,07/03/19 21:57,"489 Jackson St, San Francisco, CA 94016" -226159,iPhone,1,700,07/27/19 10:13,"359 Hill St, Boston, MA 02215" -226160,27in FHD Monitor,1,149.99,07/02/19 22:34,"495 6th St, Los Angeles, CA 90001" -226161,AAA Batteries (4-pack),1,2.99,07/06/19 17:21,"456 Center St, New York City, NY 10001" -226162,Flatscreen TV,1,300,07/19/19 10:53,"346 Spruce St, New York City, NY 10001" -226163,AA Batteries (4-pack),1,3.84,07/26/19 22:57,"223 13th St, Portland, OR 97035" -226164,27in 4K Gaming Monitor,1,389.99,07/14/19 15:53,"767 Sunset St, Seattle, WA 98101" -226165,ThinkPad Laptop,1,999.99,07/23/19 16:58,"826 7th St, Atlanta, GA 30301" -226166,Lightning Charging Cable,1,14.95,07/05/19 13:10,"56 6th St, New York City, NY 10001" -226167,Lightning Charging Cable,1,14.95,07/12/19 14:33,"13 12th St, Portland, OR 97035" -226168,Flatscreen TV,1,300,07/16/19 18:23,"898 Park St, Boston, MA 02215" -226169,Apple Airpods Headphones,1,150,07/23/19 22:21,"161 Elm St, Dallas, TX 75001" -226170,Wired Headphones,1,11.99,07/27/19 19:11,"590 Walnut St, Atlanta, GA 30301" -226171,27in FHD Monitor,1,149.99,07/10/19 18:33,"711 Lakeview St, San Francisco, CA 94016" -226172,USB-C Charging Cable,1,11.95,07/20/19 14:57,"846 Main St, Boston, MA 02215" -226173,AAA Batteries (4-pack),2,2.99,07/24/19 20:27,"546 1st St, New York City, NY 10001" -226174,Bose SoundSport Headphones,1,99.99,07/21/19 15:35,"52 Willow St, Seattle, WA 98101" -226175,Wired Headphones,1,11.99,07/29/19 10:22,"69 Willow St, San Francisco, CA 94016" -226176,iPhone,1,700,07/14/19 13:50,"556 Ridge St, Los Angeles, CA 90001" -226177,AAA Batteries (4-pack),1,2.99,07/25/19 00:55,"285 4th St, New York City, NY 10001" -226178,AAA Batteries (4-pack),2,2.99,07/20/19 09:42,"338 10th St, San Francisco, CA 94016" -226179,USB-C Charging Cable,2,11.95,07/10/19 08:34,"1 5th St, San Francisco, CA 94016" -226180,Wired Headphones,1,11.99,07/11/19 18:16,"114 West St, Boston, MA 02215" -226181,AA Batteries (4-pack),2,3.84,07/15/19 16:37,"729 14th St, Atlanta, GA 30301" -226182,Apple Airpods Headphones,1,150,07/31/19 13:07,"158 11th St, Atlanta, GA 30301" -226183,AA Batteries (4-pack),1,3.84,07/20/19 17:45,"347 6th St, Boston, MA 02215" -226184,Apple Airpods Headphones,1,150,07/09/19 20:30,"358 South St, San Francisco, CA 94016" -226185,Lightning Charging Cable,1,14.95,07/28/19 11:02,"443 9th St, San Francisco, CA 94016" -226186,Lightning Charging Cable,1,14.95,07/18/19 07:58,"486 Hickory St, Portland, OR 97035" -226187,Wired Headphones,1,11.99,07/17/19 12:53,"851 Cherry St, Dallas, TX 75001" -226188,ThinkPad Laptop,1,999.99,07/20/19 20:18,"933 Lakeview St, San Francisco, CA 94016" -226188,Lightning Charging Cable,2,14.95,07/20/19 20:18,"933 Lakeview St, San Francisco, CA 94016" -226189,Bose SoundSport Headphones,1,99.99,07/27/19 10:55,"510 Madison St, San Francisco, CA 94016" -226190,Flatscreen TV,1,300,07/05/19 21:13,"482 Chestnut St, Los Angeles, CA 90001" -226191,Macbook Pro Laptop,1,1700,07/06/19 18:30,"297 Chestnut St, Boston, MA 02215" -226192,Wired Headphones,1,11.99,07/22/19 12:01,"252 Washington St, Boston, MA 02215" -226193,AA Batteries (4-pack),1,3.84,07/14/19 19:18,"168 Forest St, Seattle, WA 98101" -226194,Vareebadd Phone,1,400,07/29/19 22:35,"257 12th St, Los Angeles, CA 90001" -226195,Apple Airpods Headphones,1,150,07/26/19 12:50,"288 Willow St, New York City, NY 10001" -226196,Bose SoundSport Headphones,1,99.99,07/05/19 11:56,"219 Ridge St, San Francisco, CA 94016" -226197,Google Phone,1,600,07/15/19 14:24,"653 Jefferson St, Los Angeles, CA 90001" -226198,Apple Airpods Headphones,1,150,07/02/19 10:20,"793 Washington St, San Francisco, CA 94016" -226199,USB-C Charging Cable,1,11.95,07/19/19 18:22,"618 North St, San Francisco, CA 94016" -226200,iPhone,1,700,07/22/19 12:47,"272 11th St, Los Angeles, CA 90001" -226201,Lightning Charging Cable,1,14.95,07/23/19 11:14,"414 Hill St, San Francisco, CA 94016" -226202,AAA Batteries (4-pack),2,2.99,07/26/19 18:25,"893 South St, San Francisco, CA 94016" -226203,Lightning Charging Cable,1,14.95,07/13/19 21:32,"845 1st St, Los Angeles, CA 90001" -226204,27in FHD Monitor,1,149.99,07/15/19 20:28,"8 4th St, San Francisco, CA 94016" -226205,USB-C Charging Cable,1,11.95,07/22/19 11:04,"776 Hill St, Austin, TX 73301" -226206,Flatscreen TV,1,300,07/10/19 08:52,"56 Center St, San Francisco, CA 94016" -226207,Bose SoundSport Headphones,1,99.99,07/04/19 09:14,"178 9th St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -226208,27in 4K Gaming Monitor,1,389.99,07/02/19 21:13,"409 Lake St, San Francisco, CA 94016" -226209,Apple Airpods Headphones,1,150,07/22/19 15:05,"449 West St, Boston, MA 02215" -226210,USB-C Charging Cable,1,11.95,07/21/19 09:37,"299 Highland St, Boston, MA 02215" -226211,USB-C Charging Cable,1,11.95,07/01/19 21:14,"673 Ridge St, Atlanta, GA 30301" -226212,USB-C Charging Cable,1,11.95,07/29/19 14:33,"431 Elm St, San Francisco, CA 94016" -226213,USB-C Charging Cable,1,11.95,07/10/19 11:42,"676 River St, Los Angeles, CA 90001" -226214,AAA Batteries (4-pack),2,2.99,07/04/19 17:16,"154 Cedar St, San Francisco, CA 94016" -226215,AAA Batteries (4-pack),2,2.99,07/17/19 21:19,"41 Wilson St, Los Angeles, CA 90001" -226216,LG Washing Machine,1,600.0,07/09/19 12:48,"63 Hickory St, Los Angeles, CA 90001" -226217,iPhone,1,700,07/09/19 10:11,"688 Main St, San Francisco, CA 94016" -226217,Wired Headphones,1,11.99,07/09/19 10:11,"688 Main St, San Francisco, CA 94016" -226218,USB-C Charging Cable,1,11.95,07/17/19 06:21,"683 Maple St, Los Angeles, CA 90001" -226219,LG Dryer,1,600.0,07/23/19 17:58,"171 Lincoln St, Portland, OR 97035" -226220,AA Batteries (4-pack),1,3.84,07/19/19 13:32,"577 8th St, San Francisco, CA 94016" -226221,Bose SoundSport Headphones,1,99.99,07/22/19 10:46,"816 Lakeview St, Portland, OR 97035" -226222,AA Batteries (4-pack),1,3.84,07/03/19 21:28,"14 Hill St, San Francisco, CA 94016" -226223,AA Batteries (4-pack),2,3.84,07/30/19 18:19,"257 Jackson St, San Francisco, CA 94016" -226224,Flatscreen TV,1,300,07/27/19 16:53,"260 14th St, Portland, OR 97035" -226225,Lightning Charging Cable,1,14.95,07/07/19 07:52,"810 11th St, San Francisco, CA 94016" -226226,34in Ultrawide Monitor,1,379.99,07/30/19 22:02,"149 6th St, Boston, MA 02215" -226227,AAA Batteries (4-pack),1,2.99,07/23/19 19:41,"203 11th St, Boston, MA 02215" -226228,Lightning Charging Cable,1,14.95,07/15/19 21:28,"996 Jefferson St, Los Angeles, CA 90001" -226229,Lightning Charging Cable,2,14.95,07/24/19 10:22,"727 Hill St, Dallas, TX 75001" -226230,AA Batteries (4-pack),1,3.84,07/30/19 10:29,"913 7th St, Dallas, TX 75001" -226231,Wired Headphones,1,11.99,07/23/19 20:25,"321 6th St, Dallas, TX 75001" -226232,AA Batteries (4-pack),1,3.84,07/05/19 19:57,"78 Church St, Dallas, TX 75001" -226233,USB-C Charging Cable,2,11.95,07/23/19 15:41,"588 Meadow St, Dallas, TX 75001" -226234,AA Batteries (4-pack),1,3.84,07/09/19 08:53,"930 Jackson St, Seattle, WA 98101" -226235,AAA Batteries (4-pack),5,2.99,07/08/19 00:44,"987 8th St, San Francisco, CA 94016" -226236,27in 4K Gaming Monitor,1,389.99,07/16/19 11:44,"33 Main St, Austin, TX 73301" -226237,Macbook Pro Laptop,1,1700,07/06/19 22:07,"222 South St, San Francisco, CA 94016" -226238,Flatscreen TV,1,300,07/12/19 09:24,"460 Meadow St, Austin, TX 73301" -226239,Flatscreen TV,1,300,07/28/19 19:31,"110 Madison St, San Francisco, CA 94016" -226240,Lightning Charging Cable,1,14.95,07/15/19 19:57,"57 Cherry St, Austin, TX 73301" -226241,USB-C Charging Cable,1,11.95,07/09/19 17:40,"956 Main St, San Francisco, CA 94016" -226242,Google Phone,1,600,07/06/19 15:47,"430 Washington St, San Francisco, CA 94016" -226243,27in 4K Gaming Monitor,1,389.99,07/28/19 19:56,"460 South St, San Francisco, CA 94016" -226244,Flatscreen TV,1,300,07/13/19 17:49,"384 Pine St, Austin, TX 73301" -226245,Lightning Charging Cable,1,14.95,07/02/19 10:12,"678 North St, New York City, NY 10001" -226246,AA Batteries (4-pack),3,3.84,07/05/19 09:42,"307 1st St, Los Angeles, CA 90001" -226247,USB-C Charging Cable,1,11.95,07/07/19 21:40,"744 River St, Los Angeles, CA 90001" -226248,Bose SoundSport Headphones,1,99.99,07/27/19 14:00,"455 Lake St, San Francisco, CA 94016" -226248,Wired Headphones,1,11.99,07/27/19 14:00,"455 Lake St, San Francisco, CA 94016" -226249,Google Phone,1,600,07/28/19 09:29,"373 12th St, San Francisco, CA 94016" -226250,Lightning Charging Cable,1,14.95,07/09/19 12:01,"301 11th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -,,,,, -226251,Apple Airpods Headphones,1,150,07/13/19 15:59,"197 Jackson St, San Francisco, CA 94016" -226252,Google Phone,1,600,07/16/19 20:43,"663 Willow St, Atlanta, GA 30301" -226253,Bose SoundSport Headphones,1,99.99,07/06/19 23:55,"554 Spruce St, Portland, ME 04101" -226254,USB-C Charging Cable,1,11.95,07/15/19 12:52,"804 Hill St, San Francisco, CA 94016" -226255,Wired Headphones,1,11.99,07/23/19 21:32,"106 4th St, Boston, MA 02215" -226256,27in 4K Gaming Monitor,1,389.99,07/13/19 12:14,"230 Center St, Atlanta, GA 30301" -226257,Wired Headphones,1,11.99,07/03/19 19:34,"274 Center St, Portland, OR 97035" -226258,iPhone,1,700,07/27/19 18:28,"156 Hill St, Los Angeles, CA 90001" -226259,AAA Batteries (4-pack),2,2.99,07/20/19 19:31,"33 8th St, Atlanta, GA 30301" -226260,Bose SoundSport Headphones,1,99.99,07/10/19 17:14,"240 Spruce St, Portland, OR 97035" -226261,AAA Batteries (4-pack),2,2.99,07/22/19 18:37,"740 Forest St, Austin, TX 73301" -226262,Apple Airpods Headphones,1,150,07/02/19 00:18,"645 Chestnut St, Atlanta, GA 30301" -226263,27in 4K Gaming Monitor,1,389.99,07/13/19 14:09,"917 Madison St, Austin, TX 73301" -226264,Wired Headphones,1,11.99,07/20/19 13:16,"114 Lakeview St, Boston, MA 02215" -226265,USB-C Charging Cable,1,11.95,07/27/19 20:26,"188 Jackson St, San Francisco, CA 94016" -226266,Wired Headphones,1,11.99,07/07/19 14:52,"929 Walnut St, Dallas, TX 75001" -226267,Wired Headphones,1,11.99,07/08/19 19:54,"484 Cherry St, Los Angeles, CA 90001" -226268,Bose SoundSport Headphones,1,99.99,07/06/19 12:04,"781 Lake St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -226269,Google Phone,1,600,07/19/19 10:43,"947 Dogwood St, Seattle, WA 98101" -226270,Google Phone,1,600,07/14/19 14:17,"140 Park St, Los Angeles, CA 90001" -226271,AA Batteries (4-pack),2,3.84,07/17/19 15:15,"644 5th St, New York City, NY 10001" -226272,Apple Airpods Headphones,1,150,07/04/19 22:57,"797 10th St, San Francisco, CA 94016" -226273,Apple Airpods Headphones,1,150,07/23/19 21:37,"537 Church St, New York City, NY 10001" -226274,AA Batteries (4-pack),1,3.84,07/31/19 23:07,"383 14th St, Los Angeles, CA 90001" -226275,AAA Batteries (4-pack),1,2.99,07/08/19 01:07,"218 North St, Atlanta, GA 30301" -226276,Apple Airpods Headphones,1,150,07/09/19 15:58,"876 Jefferson St, Boston, MA 02215" -226277,AAA Batteries (4-pack),1,2.99,07/09/19 13:33,"548 Cedar St, Los Angeles, CA 90001" -226278,20in Monitor,1,109.99,07/28/19 22:18,"569 River St, San Francisco, CA 94016" -226278,34in Ultrawide Monitor,1,379.99,07/28/19 22:18,"569 River St, San Francisco, CA 94016" -226279,27in FHD Monitor,1,149.99,07/10/19 12:41,"409 Jefferson St, San Francisco, CA 94016" -226280,Lightning Charging Cable,1,14.95,07/02/19 18:26,"945 10th St, Los Angeles, CA 90001" -226281,Apple Airpods Headphones,1,150,07/30/19 13:47,"333 Jefferson St, Los Angeles, CA 90001" -226282,AA Batteries (4-pack),1,3.84,07/07/19 22:44,"408 6th St, New York City, NY 10001" -226283,Wired Headphones,2,11.99,07/04/19 18:54,"828 9th St, Los Angeles, CA 90001" -226284,USB-C Charging Cable,2,11.95,07/23/19 09:20,"793 Forest St, Boston, MA 02215" -226285,USB-C Charging Cable,2,11.95,07/17/19 12:23,"514 7th St, Los Angeles, CA 90001" -226286,Lightning Charging Cable,2,14.95,07/24/19 19:16,"762 Main St, Boston, MA 02215" -226287,USB-C Charging Cable,2,11.95,07/20/19 15:17,"506 2nd St, Los Angeles, CA 90001" -226288,Wired Headphones,1,11.99,07/14/19 15:27,"598 10th St, Austin, TX 73301" -226289,USB-C Charging Cable,1,11.95,07/31/19 14:40,"364 Adams St, San Francisco, CA 94016" -226290,27in FHD Monitor,1,149.99,07/20/19 01:04,"436 1st St, Los Angeles, CA 90001" -226291,AA Batteries (4-pack),1,3.84,07/16/19 12:28,"780 1st St, Austin, TX 73301" -226292,USB-C Charging Cable,1,11.95,07/18/19 18:12,"91 12th St, Austin, TX 73301" -226293,USB-C Charging Cable,1,11.95,07/26/19 01:09,"963 North St, Dallas, TX 75001" -226294,Lightning Charging Cable,1,14.95,07/22/19 10:25,"769 Pine St, Dallas, TX 75001" -226295,Lightning Charging Cable,1,14.95,07/11/19 21:26,"569 Park St, Los Angeles, CA 90001" -226296,Macbook Pro Laptop,1,1700,07/06/19 10:24,"257 Spruce St, Boston, MA 02215" -226297,Lightning Charging Cable,1,14.95,07/29/19 00:11,"395 River St, San Francisco, CA 94016" -226298,Macbook Pro Laptop,1,1700,07/09/19 14:57,"850 10th St, San Francisco, CA 94016" -226299,AAA Batteries (4-pack),1,2.99,07/27/19 17:19,"663 11th St, New York City, NY 10001" -226300,Macbook Pro Laptop,1,1700,07/04/19 15:50,"228 Ridge St, San Francisco, CA 94016" -226301,AA Batteries (4-pack),1,3.84,07/04/19 15:42,"730 Cedar St, Dallas, TX 75001" -226302,Macbook Pro Laptop,1,1700,07/13/19 19:28,"825 14th St, Seattle, WA 98101" -226303,27in 4K Gaming Monitor,1,389.99,07/07/19 10:52,"588 Hickory St, San Francisco, CA 94016" -226304,AA Batteries (4-pack),2,3.84,07/28/19 12:50,"357 Washington St, Dallas, TX 75001" -226305,27in FHD Monitor,1,149.99,07/30/19 17:31,"836 Johnson St, Austin, TX 73301" -226306,USB-C Charging Cable,1,11.95,07/19/19 17:17,"809 Spruce St, San Francisco, CA 94016" -226307,34in Ultrawide Monitor,1,379.99,07/07/19 07:50,"349 West St, Portland, ME 04101" -226308,Lightning Charging Cable,1,14.95,07/21/19 23:38,"983 Main St, San Francisco, CA 94016" -226309,AA Batteries (4-pack),1,3.84,07/15/19 22:04,"26 7th St, San Francisco, CA 94016" -226310,AA Batteries (4-pack),1,3.84,07/07/19 19:04,"207 Lincoln St, Boston, MA 02215" -226311,AA Batteries (4-pack),1,3.84,07/25/19 15:30,"502 Dogwood St, Seattle, WA 98101" -226312,Wired Headphones,1,11.99,07/10/19 13:05,"969 8th St, Los Angeles, CA 90001" -226313,Google Phone,1,600,07/31/19 17:30,"548 Maple St, Los Angeles, CA 90001" -226314,Macbook Pro Laptop,1,1700,07/04/19 18:30,"512 Lincoln St, San Francisco, CA 94016" -226315,AAA Batteries (4-pack),1,2.99,07/02/19 22:05,"59 Cedar St, Portland, OR 97035" -226316,AAA Batteries (4-pack),1,2.99,07/28/19 19:32,"850 Willow St, New York City, NY 10001" -226317,Apple Airpods Headphones,1,150,07/29/19 11:51,"419 Main St, Dallas, TX 75001" -226318,USB-C Charging Cable,1,11.95,07/03/19 12:11,"333 Park St, Los Angeles, CA 90001" -226319,27in 4K Gaming Monitor,1,389.99,07/24/19 14:40,"732 Adams St, Boston, MA 02215" -226320,AA Batteries (4-pack),1,3.84,07/09/19 20:55,"223 Madison St, Los Angeles, CA 90001" -226321,34in Ultrawide Monitor,1,379.99,07/08/19 14:18,"424 Highland St, San Francisco, CA 94016" -226322,USB-C Charging Cable,1,11.95,07/16/19 00:43,"39 Ridge St, Seattle, WA 98101" -226323,Flatscreen TV,1,300,07/05/19 13:14,"454 Lincoln St, Atlanta, GA 30301" -226324,Bose SoundSport Headphones,1,99.99,07/03/19 12:19,"594 Pine St, San Francisco, CA 94016" -226325,Bose SoundSport Headphones,1,99.99,07/19/19 19:46,"695 Adams St, Seattle, WA 98101" -226326,Bose SoundSport Headphones,1,99.99,07/06/19 18:30,"551 Adams St, Seattle, WA 98101" -226327,Macbook Pro Laptop,1,1700,07/07/19 14:29,"846 Sunset St, San Francisco, CA 94016" -226328,Wired Headphones,1,11.99,07/08/19 19:29,"895 10th St, San Francisco, CA 94016" -226329,Apple Airpods Headphones,1,150,07/10/19 21:32,"126 Washington St, Atlanta, GA 30301" -226330,Macbook Pro Laptop,1,1700,07/01/19 08:37,"432 Madison St, New York City, NY 10001" -226331,USB-C Charging Cable,1,11.95,07/06/19 14:33,"856 Jackson St, San Francisco, CA 94016" -226332,27in 4K Gaming Monitor,1,389.99,07/16/19 11:52,"791 10th St, Portland, OR 97035" -226333,AAA Batteries (4-pack),1,2.99,07/05/19 09:33,"947 West St, Seattle, WA 98101" -226333,AAA Batteries (4-pack),1,2.99,07/05/19 09:33,"947 West St, Seattle, WA 98101" -226334,Apple Airpods Headphones,1,150,07/06/19 10:48,"751 North St, San Francisco, CA 94016" -226335,USB-C Charging Cable,2,11.95,07/29/19 12:21,"644 Ridge St, Los Angeles, CA 90001" -226336,AA Batteries (4-pack),2,3.84,07/24/19 17:51,"861 Pine St, Seattle, WA 98101" -226337,27in 4K Gaming Monitor,1,389.99,07/07/19 11:18,"763 Cedar St, Boston, MA 02215" -226338,AAA Batteries (4-pack),4,2.99,07/23/19 07:35,"187 Dogwood St, Boston, MA 02215" -226339,AAA Batteries (4-pack),1,2.99,07/07/19 11:54,"788 Dogwood St, Boston, MA 02215" -226340,Google Phone,1,600,07/26/19 22:42,"528 13th St, Portland, ME 04101" -226340,Wired Headphones,1,11.99,07/26/19 22:42,"528 13th St, Portland, ME 04101" -226341,Flatscreen TV,1,300,07/03/19 20:46,"25 Cedar St, Dallas, TX 75001" -226342,Lightning Charging Cable,1,14.95,07/25/19 10:16,"146 North St, Boston, MA 02215" -226343,iPhone,1,700,07/30/19 21:48,"531 7th St, San Francisco, CA 94016" -226344,Lightning Charging Cable,1,14.95,07/19/19 17:14,"75 Jackson St, Portland, OR 97035" -226345,20in Monitor,1,109.99,07/11/19 19:08,"318 Maple St, Boston, MA 02215" -226346,AAA Batteries (4-pack),1,2.99,07/20/19 22:44,"358 Elm St, Boston, MA 02215" -226347,Lightning Charging Cable,1,14.95,07/13/19 00:10,"463 2nd St, New York City, NY 10001" -226348,27in FHD Monitor,1,149.99,07/16/19 15:45,"398 Maple St, Atlanta, GA 30301" -226349,20in Monitor,1,109.99,07/19/19 18:30,"61 Main St, New York City, NY 10001" -226350,AA Batteries (4-pack),1,3.84,07/25/19 13:09,"662 West St, San Francisco, CA 94016" -226351,AAA Batteries (4-pack),2,2.99,07/27/19 20:41,"152 Highland St, Atlanta, GA 30301" -226352,Bose SoundSport Headphones,1,99.99,07/07/19 12:15,"485 5th St, Seattle, WA 98101" -226353,AAA Batteries (4-pack),1,2.99,07/16/19 04:25,"943 6th St, New York City, NY 10001" -226354,AAA Batteries (4-pack),1,2.99,07/28/19 20:06,"676 9th St, Dallas, TX 75001" -226355,AAA Batteries (4-pack),2,2.99,07/23/19 22:51,"330 14th St, Portland, OR 97035" -226356,Vareebadd Phone,1,400,07/21/19 10:20,"532 Meadow St, Los Angeles, CA 90001" -226357,iPhone,1,700,07/11/19 10:25,"67 Chestnut St, Boston, MA 02215" -226358,Lightning Charging Cable,1,14.95,07/10/19 18:57,"678 Park St, Atlanta, GA 30301" -226359,AA Batteries (4-pack),2,3.84,07/20/19 21:54,"79 12th St, San Francisco, CA 94016" -226360,ThinkPad Laptop,1,999.99,07/30/19 08:56,"983 9th St, Boston, MA 02215" -226361,Wired Headphones,2,11.99,07/04/19 22:05,"194 2nd St, Seattle, WA 98101" -226362,LG Washing Machine,1,600.0,07/20/19 19:06,"780 6th St, Portland, OR 97035" -226363,USB-C Charging Cable,1,11.95,07/27/19 10:32,"320 Spruce St, Dallas, TX 75001" -226363,USB-C Charging Cable,2,11.95,07/27/19 10:32,"320 Spruce St, Dallas, TX 75001" -226364,AAA Batteries (4-pack),1,2.99,07/23/19 17:20,"368 Elm St, Seattle, WA 98101" -226365,Lightning Charging Cable,1,14.95,07/11/19 10:27,"710 6th St, San Francisco, CA 94016" -226366,iPhone,1,700,07/01/19 11:57,"484 Ridge St, Dallas, TX 75001" -226367,Lightning Charging Cable,2,14.95,07/26/19 13:05,"895 2nd St, San Francisco, CA 94016" -226368,Google Phone,1,600,07/22/19 12:31,"71 Lakeview St, Los Angeles, CA 90001" -226369,Lightning Charging Cable,2,14.95,07/10/19 23:16,"81 Spruce St, Atlanta, GA 30301" -226370,27in 4K Gaming Monitor,1,389.99,07/17/19 07:41,"142 Elm St, San Francisco, CA 94016" -226371,Wired Headphones,1,11.99,07/10/19 19:49,"745 Lincoln St, San Francisco, CA 94016" -226372,Lightning Charging Cable,1,14.95,07/15/19 23:35,"450 Hickory St, Portland, ME 04101" -226373,Macbook Pro Laptop,1,1700,07/04/19 08:49,"495 Church St, Boston, MA 02215" -226374,Macbook Pro Laptop,1,1700,07/15/19 16:21,"180 Johnson St, Portland, OR 97035" -226375,20in Monitor,1,109.99,07/03/19 03:21,"613 Lincoln St, Austin, TX 73301" -226376,AAA Batteries (4-pack),1,2.99,07/08/19 22:38,"206 Chestnut St, New York City, NY 10001" -226377,Lightning Charging Cable,1,14.95,07/23/19 22:40,"615 Wilson St, Atlanta, GA 30301" -226378,Bose SoundSport Headphones,1,99.99,07/11/19 13:56,"600 Dogwood St, San Francisco, CA 94016" -226379,ThinkPad Laptop,1,999.99,07/08/19 20:57,"569 Jefferson St, San Francisco, CA 94016" -226380,ThinkPad Laptop,1,999.99,07/05/19 11:25,"265 Jackson St, Austin, TX 73301" -226381,AAA Batteries (4-pack),2,2.99,07/05/19 20:47,"589 13th St, Los Angeles, CA 90001" -226382,34in Ultrawide Monitor,1,379.99,07/24/19 19:55,"912 Hill St, New York City, NY 10001" -226383,Google Phone,1,600,07/14/19 12:07,"585 Madison St, Seattle, WA 98101" -226383,Wired Headphones,1,11.99,07/14/19 12:07,"585 Madison St, Seattle, WA 98101" -226384,AAA Batteries (4-pack),1,2.99,07/15/19 11:08,"274 Lincoln St, Los Angeles, CA 90001" -226385,AAA Batteries (4-pack),1,2.99,07/29/19 15:21,"767 Meadow St, Boston, MA 02215" -226386,AAA Batteries (4-pack),2,2.99,07/07/19 20:24,"803 Spruce St, Seattle, WA 98101" -226387,USB-C Charging Cable,1,11.95,07/13/19 15:36,"822 Madison St, Los Angeles, CA 90001" -226388,Bose SoundSport Headphones,1,99.99,07/04/19 09:36,"696 Maple St, New York City, NY 10001" -226389,Apple Airpods Headphones,1,150,07/01/19 11:20,"626 North St, San Francisco, CA 94016" -226390,AA Batteries (4-pack),1,3.84,07/16/19 09:50,"423 5th St, Boston, MA 02215" -226391,USB-C Charging Cable,1,11.95,07/25/19 14:26,"606 Main St, Seattle, WA 98101" -226392,USB-C Charging Cable,1,11.95,07/18/19 20:51,"898 Cherry St, New York City, NY 10001" -226393,Lightning Charging Cable,2,14.95,07/24/19 16:13,"743 2nd St, Los Angeles, CA 90001" -226394,AA Batteries (4-pack),1,3.84,07/13/19 11:50,"874 Elm St, Atlanta, GA 30301" -226395,USB-C Charging Cable,1,11.95,07/25/19 14:27,"123 5th St, San Francisco, CA 94016" -226396,ThinkPad Laptop,1,999.99,07/31/19 17:13,"452 Elm St, Los Angeles, CA 90001" -,,,,, -226397,AA Batteries (4-pack),1,3.84,07/16/19 11:21,"110 Lincoln St, Austin, TX 73301" -226398,Lightning Charging Cable,1,14.95,07/31/19 12:00,"81 Walnut St, San Francisco, CA 94016" -226399,AA Batteries (4-pack),2,3.84,07/06/19 10:47,"625 Cherry St, Boston, MA 02215" -226400,Wired Headphones,1,11.99,07/25/19 15:42,"308 Forest St, San Francisco, CA 94016" -226401,Lightning Charging Cable,1,14.95,07/08/19 12:52,"847 North St, San Francisco, CA 94016" -226402,AAA Batteries (4-pack),2,2.99,07/03/19 19:45,"772 Chestnut St, San Francisco, CA 94016" -226403,Apple Airpods Headphones,1,150,07/03/19 05:15,"986 Sunset St, New York City, NY 10001" -226404,Flatscreen TV,1,300,07/11/19 22:44,"383 River St, New York City, NY 10001" -226405,AA Batteries (4-pack),1,3.84,07/01/19 15:48,"757 9th St, Boston, MA 02215" -226406,AAA Batteries (4-pack),1,2.99,07/09/19 18:36,"242 Lincoln St, Seattle, WA 98101" -226407,AA Batteries (4-pack),5,3.84,07/16/19 12:03,"864 9th St, New York City, NY 10001" -226408,AAA Batteries (4-pack),1,2.99,07/30/19 02:35,"748 13th St, Dallas, TX 75001" -226409,Flatscreen TV,1,300,07/04/19 13:38,"392 South St, San Francisco, CA 94016" -226410,Vareebadd Phone,1,400,07/05/19 15:27,"831 Lakeview St, San Francisco, CA 94016" -226411,27in FHD Monitor,1,149.99,07/19/19 18:25,"315 Johnson St, Los Angeles, CA 90001" -226412,USB-C Charging Cable,1,11.95,07/12/19 12:34,"369 Meadow St, San Francisco, CA 94016" -226413,20in Monitor,1,109.99,07/08/19 14:24,"279 8th St, Boston, MA 02215" -226414,AAA Batteries (4-pack),2,2.99,07/30/19 21:45,"395 Hill St, San Francisco, CA 94016" -226415,34in Ultrawide Monitor,1,379.99,07/03/19 23:08,"185 Cedar St, Austin, TX 73301" -226416,USB-C Charging Cable,3,11.95,07/23/19 23:38,"233 Forest St, Boston, MA 02215" -226417,AAA Batteries (4-pack),2,2.99,07/08/19 09:56,"502 Willow St, New York City, NY 10001" -226418,Lightning Charging Cable,1,14.95,07/05/19 23:31,"191 11th St, New York City, NY 10001" -226419,20in Monitor,1,109.99,07/09/19 22:06,"988 Spruce St, San Francisco, CA 94016" -226420,34in Ultrawide Monitor,1,379.99,07/25/19 15:56,"179 Johnson St, Austin, TX 73301" -,,,,, -226421,Google Phone,1,600,07/28/19 17:21,"162 14th St, San Francisco, CA 94016" -226421,Google Phone,1,600,07/28/19 17:21,"162 14th St, San Francisco, CA 94016" -226422,Wired Headphones,1,11.99,07/02/19 07:00,"173 Sunset St, Dallas, TX 75001" -226423,USB-C Charging Cable,1,11.95,07/25/19 22:41,"568 Washington St, San Francisco, CA 94016" -226424,ThinkPad Laptop,1,999.99,07/22/19 11:04,"550 West St, Portland, OR 97035" -226425,USB-C Charging Cable,1,11.95,07/31/19 08:18,"36 Meadow St, San Francisco, CA 94016" -226426,Bose SoundSport Headphones,1,99.99,07/02/19 17:02,"338 Hill St, New York City, NY 10001" -226427,34in Ultrawide Monitor,1,379.99,07/10/19 00:29,"679 Jefferson St, New York City, NY 10001" -226428,AA Batteries (4-pack),1,3.84,07/16/19 16:25,"854 4th St, San Francisco, CA 94016" -226429,Wired Headphones,1,11.99,07/28/19 16:04,"251 Hickory St, San Francisco, CA 94016" -226430,AAA Batteries (4-pack),1,2.99,07/28/19 15:09,"278 Jackson St, New York City, NY 10001" -226431,USB-C Charging Cable,1,11.95,07/15/19 13:09,"330 Jefferson St, Los Angeles, CA 90001" -226432,LG Washing Machine,1,600.0,07/01/19 21:31,"422 Cedar St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -226433,27in FHD Monitor,1,149.99,07/01/19 23:03,"855 Washington St, Seattle, WA 98101" -226434,Lightning Charging Cable,1,14.95,07/16/19 00:07,"530 Willow St, Boston, MA 02215" -226435,Wired Headphones,1,11.99,07/03/19 00:03,"170 Adams St, San Francisco, CA 94016" -226436,Wired Headphones,1,11.99,07/18/19 08:31,"326 Center St, San Francisco, CA 94016" -226437,iPhone,1,700,07/04/19 11:33,"161 Madison St, Boston, MA 02215" -226437,Apple Airpods Headphones,1,150,07/04/19 11:33,"161 Madison St, Boston, MA 02215" -226437,Wired Headphones,1,11.99,07/04/19 11:33,"161 Madison St, Boston, MA 02215" -226438,Lightning Charging Cable,1,14.95,07/05/19 14:17,"394 Jefferson St, Portland, ME 04101" -226439,Macbook Pro Laptop,1,1700,07/15/19 18:07,"471 Pine St, Boston, MA 02215" -226440,Wired Headphones,2,11.99,07/25/19 01:26,"329 Ridge St, Austin, TX 73301" -226441,27in FHD Monitor,1,149.99,07/02/19 08:10,"265 Chestnut St, New York City, NY 10001" -226442,Apple Airpods Headphones,1,150,07/06/19 00:17,"555 Wilson St, Boston, MA 02215" -226443,20in Monitor,1,109.99,07/23/19 12:07,"913 13th St, Boston, MA 02215" -226444,AAA Batteries (4-pack),1,2.99,07/02/19 10:44,"766 Sunset St, Los Angeles, CA 90001" -226445,AAA Batteries (4-pack),1,2.99,07/09/19 13:55,"492 10th St, San Francisco, CA 94016" -226446,Google Phone,1,600,07/03/19 13:42,"726 Maple St, Dallas, TX 75001" -226447,27in 4K Gaming Monitor,1,389.99,07/16/19 11:59,"971 10th St, San Francisco, CA 94016" -226448,Apple Airpods Headphones,1,150,07/15/19 14:55,"443 River St, Austin, TX 73301" -226449,Apple Airpods Headphones,1,150,07/06/19 14:56,"6 Adams St, New York City, NY 10001" -226450,Bose SoundSport Headphones,1,99.99,07/03/19 13:26,"184 4th St, San Francisco, CA 94016" -226451,AA Batteries (4-pack),1,3.84,07/24/19 18:27,"390 12th St, New York City, NY 10001" -226452,Bose SoundSport Headphones,1,99.99,07/16/19 07:17,"391 Hickory St, San Francisco, CA 94016" -226453,27in FHD Monitor,1,149.99,07/16/19 23:39,"738 North St, Atlanta, GA 30301" -226454,Wired Headphones,1,11.99,07/13/19 19:44,"757 Cedar St, New York City, NY 10001" -226455,AAA Batteries (4-pack),2,2.99,07/14/19 22:03,"974 13th St, Portland, ME 04101" -226456,Wired Headphones,1,11.99,07/26/19 19:31,"428 South St, Dallas, TX 75001" -226457,USB-C Charging Cable,1,11.95,07/03/19 09:26,"303 Chestnut St, Los Angeles, CA 90001" -226458,Bose SoundSport Headphones,1,99.99,07/16/19 14:24,"853 Elm St, Los Angeles, CA 90001" -226459,Lightning Charging Cable,1,14.95,07/26/19 09:58,"104 Pine St, New York City, NY 10001" -226460,Wired Headphones,1,11.99,07/12/19 18:24,"958 Maple St, San Francisco, CA 94016" -226461,AAA Batteries (4-pack),2,2.99,07/26/19 14:50,"413 13th St, Dallas, TX 75001" -226462,AA Batteries (4-pack),1,3.84,07/15/19 11:14,"516 2nd St, Los Angeles, CA 90001" -226463,Wired Headphones,1,11.99,07/09/19 00:10,"811 13th St, San Francisco, CA 94016" -226464,27in 4K Gaming Monitor,1,389.99,07/18/19 20:02,"431 North St, Dallas, TX 75001" -226465,AA Batteries (4-pack),1,3.84,07/08/19 20:11,"226 Park St, San Francisco, CA 94016" -226466,Wired Headphones,1,11.99,07/18/19 12:23,"121 1st St, San Francisco, CA 94016" -226467,Flatscreen TV,1,300,07/26/19 16:17,"771 Willow St, San Francisco, CA 94016" -226468,Macbook Pro Laptop,1,1700,07/01/19 19:47,"949 5th St, San Francisco, CA 94016" -226469,Lightning Charging Cable,1,14.95,07/16/19 14:54,"408 Jefferson St, Austin, TX 73301" -226470,USB-C Charging Cable,1,11.95,07/26/19 10:23,"396 West St, San Francisco, CA 94016" -226471,Google Phone,1,600,07/07/19 18:14,"190 9th St, San Francisco, CA 94016" -226471,USB-C Charging Cable,1,11.95,07/07/19 18:14,"190 9th St, San Francisco, CA 94016" -226472,ThinkPad Laptop,1,999.99,07/17/19 22:49,"888 Willow St, San Francisco, CA 94016" -226473,Wired Headphones,1,11.99,07/13/19 09:09,"833 Lincoln St, Los Angeles, CA 90001" -226474,Bose SoundSport Headphones,1,99.99,07/31/19 17:57,"68 Highland St, Los Angeles, CA 90001" -226475,AAA Batteries (4-pack),1,2.99,07/30/19 18:09,"972 Main St, San Francisco, CA 94016" -226476,AA Batteries (4-pack),1,3.84,07/07/19 20:25,"509 10th St, San Francisco, CA 94016" -226477,Flatscreen TV,1,300,07/04/19 11:36,"627 Chestnut St, Portland, OR 97035" -226478,27in 4K Gaming Monitor,1,389.99,07/12/19 07:01,"199 10th St, New York City, NY 10001" -226479,Bose SoundSport Headphones,1,99.99,07/04/19 22:21,"344 Spruce St, New York City, NY 10001" -226480,Macbook Pro Laptop,1,1700,07/18/19 18:20,"864 4th St, Boston, MA 02215" -226481,27in FHD Monitor,1,149.99,07/27/19 18:52,"603 9th St, Atlanta, GA 30301" -226482,USB-C Charging Cable,1,11.95,07/16/19 09:00,"302 Lakeview St, San Francisco, CA 94016" -226483,AAA Batteries (4-pack),9,2.99,07/20/19 23:28,"867 Sunset St, San Francisco, CA 94016" -226484,20in Monitor,1,109.99,07/24/19 20:45,"42 Center St, New York City, NY 10001" -226485,Bose SoundSport Headphones,1,99.99,07/09/19 10:08,"46 Elm St, San Francisco, CA 94016" -226486,AAA Batteries (4-pack),1,2.99,07/21/19 17:55,"602 West St, Los Angeles, CA 90001" -226487,Wired Headphones,1,11.99,07/17/19 14:38,"735 Washington St, Boston, MA 02215" -226488,ThinkPad Laptop,1,999.99,07/14/19 15:03,"153 13th St, Dallas, TX 75001" -226489,AAA Batteries (4-pack),1,2.99,07/30/19 10:36,"306 Pine St, San Francisco, CA 94016" -226490,Wired Headphones,1,11.99,07/19/19 10:53,"596 Lincoln St, Dallas, TX 75001" -226491,Macbook Pro Laptop,1,1700,07/25/19 14:44,"365 Spruce St, San Francisco, CA 94016" -226492,AA Batteries (4-pack),1,3.84,07/10/19 16:00,"593 6th St, Los Angeles, CA 90001" -226493,34in Ultrawide Monitor,1,379.99,07/31/19 11:51,"626 Dogwood St, New York City, NY 10001" -226494,iPhone,1,700,07/15/19 00:47,"264 10th St, San Francisco, CA 94016" -226495,Apple Airpods Headphones,1,150,07/11/19 22:12,"646 14th St, San Francisco, CA 94016" -226496,27in 4K Gaming Monitor,1,389.99,07/21/19 22:55,"848 Cherry St, New York City, NY 10001" -226497,Apple Airpods Headphones,1,150,07/01/19 17:01,"709 Lake St, New York City, NY 10001" -226498,AAA Batteries (4-pack),3,2.99,07/21/19 20:09,"861 Pine St, Boston, MA 02215" -226499,AAA Batteries (4-pack),2,2.99,07/30/19 10:03,"817 Ridge St, Dallas, TX 75001" -226500,AAA Batteries (4-pack),1,2.99,07/02/19 17:49,"9 4th St, Dallas, TX 75001" -226501,Wired Headphones,1,11.99,07/30/19 01:40,"933 Church St, San Francisco, CA 94016" -226502,27in FHD Monitor,1,149.99,07/17/19 20:07,"213 Washington St, Boston, MA 02215" -226503,AAA Batteries (4-pack),3,2.99,07/10/19 11:14,"449 10th St, New York City, NY 10001" -226504,Wired Headphones,1,11.99,07/16/19 15:24,"370 Chestnut St, Seattle, WA 98101" -226505,AAA Batteries (4-pack),1,2.99,07/22/19 08:35,"602 7th St, Seattle, WA 98101" -226506,34in Ultrawide Monitor,1,379.99,07/15/19 22:38,"459 4th St, New York City, NY 10001" -226507,27in 4K Gaming Monitor,1,389.99,07/05/19 20:27,"166 Willow St, San Francisco, CA 94016" -226508,Apple Airpods Headphones,1,150,07/07/19 14:52,"594 West St, Austin, TX 73301" -226509,Lightning Charging Cable,1,14.95,07/26/19 19:13,"174 West St, San Francisco, CA 94016" -226510,Macbook Pro Laptop,1,1700,07/14/19 19:52,"690 5th St, Los Angeles, CA 90001" -226511,Lightning Charging Cable,1,14.95,07/08/19 14:59,"300 Jefferson St, Los Angeles, CA 90001" -226512,Lightning Charging Cable,1,14.95,07/20/19 15:32,"526 2nd St, New York City, NY 10001" -226513,Apple Airpods Headphones,1,150,07/18/19 17:10,"261 Jackson St, New York City, NY 10001" -226514,USB-C Charging Cable,1,11.95,07/28/19 23:45,"448 South St, San Francisco, CA 94016" -226515,Lightning Charging Cable,1,14.95,07/09/19 17:45,"669 Main St, Austin, TX 73301" -226516,Wired Headphones,1,11.99,07/07/19 17:09,"604 Center St, Portland, OR 97035" -226517,USB-C Charging Cable,2,11.95,07/31/19 15:57,"498 South St, Boston, MA 02215" -226518,AA Batteries (4-pack),1,3.84,07/21/19 23:56,"682 14th St, Los Angeles, CA 90001" -226519,ThinkPad Laptop,1,999.99,07/18/19 21:20,"174 Hill St, San Francisco, CA 94016" -226520,Lightning Charging Cable,1,14.95,07/24/19 17:07,"660 Cherry St, Los Angeles, CA 90001" -226521,AA Batteries (4-pack),1,3.84,07/26/19 17:14,"500 Johnson St, Seattle, WA 98101" -226522,USB-C Charging Cable,1,11.95,07/31/19 21:44,"897 13th St, Portland, OR 97035" -226523,AA Batteries (4-pack),1,3.84,07/19/19 16:10,"742 Maple St, San Francisco, CA 94016" -226524,Bose SoundSport Headphones,1,99.99,07/29/19 13:31,"694 Cedar St, San Francisco, CA 94016" -226525,Google Phone,1,600,07/03/19 15:32,"785 12th St, San Francisco, CA 94016" -226526,AAA Batteries (4-pack),1,2.99,07/02/19 18:05,"926 Chestnut St, Atlanta, GA 30301" -226526,AAA Batteries (4-pack),1,2.99,07/02/19 18:05,"926 Chestnut St, Atlanta, GA 30301" -226527,Lightning Charging Cable,1,14.95,07/28/19 10:13,"448 Jackson St, Seattle, WA 98101" -226528,Lightning Charging Cable,1,14.95,07/15/19 10:24,"370 Lincoln St, New York City, NY 10001" -226529,Google Phone,1,600,07/27/19 09:37,"497 Lincoln St, Portland, OR 97035" -226530,Flatscreen TV,1,300,07/02/19 21:17,"747 River St, Austin, TX 73301" -226531,AAA Batteries (4-pack),1,2.99,07/31/19 18:20,"105 Sunset St, San Francisco, CA 94016" -226532,Apple Airpods Headphones,1,150,07/30/19 20:04,"200 13th St, Dallas, TX 75001" -226533,Bose SoundSport Headphones,1,99.99,07/02/19 14:23,"110 River St, Boston, MA 02215" -226534,AAA Batteries (4-pack),1,2.99,07/04/19 17:41,"225 Wilson St, Dallas, TX 75001" -226535,34in Ultrawide Monitor,1,379.99,07/14/19 14:59,"669 South St, Austin, TX 73301" -226536,Apple Airpods Headphones,1,150,07/16/19 21:13,"392 North St, New York City, NY 10001" -226537,AAA Batteries (4-pack),1,2.99,07/24/19 21:13,"548 Adams St, Boston, MA 02215" -226538,Bose SoundSport Headphones,1,99.99,07/04/19 13:54,"544 Pine St, Los Angeles, CA 90001" -226539,AA Batteries (4-pack),3,3.84,07/25/19 13:35,"960 Lincoln St, New York City, NY 10001" -226540,27in 4K Gaming Monitor,1,389.99,07/18/19 12:53,"554 Willow St, Dallas, TX 75001" -226541,Bose SoundSport Headphones,1,99.99,07/25/19 10:59,"865 Elm St, San Francisco, CA 94016" -226542,Wired Headphones,1,11.99,07/14/19 21:12,"657 10th St, Atlanta, GA 30301" -226543,34in Ultrawide Monitor,1,379.99,07/10/19 08:47,"44 4th St, San Francisco, CA 94016" -226544,34in Ultrawide Monitor,1,379.99,07/22/19 15:18,"589 Willow St, San Francisco, CA 94016" -226545,AAA Batteries (4-pack),1,2.99,07/22/19 15:25,"883 Wilson St, New York City, NY 10001" -226546,34in Ultrawide Monitor,1,379.99,07/25/19 15:22,"512 Maple St, Boston, MA 02215" -226547,27in FHD Monitor,1,149.99,07/23/19 12:23,"519 Jefferson St, Austin, TX 73301" -226548,Macbook Pro Laptop,1,1700,07/13/19 20:12,"299 Main St, Dallas, TX 75001" -226549,AA Batteries (4-pack),1,3.84,07/20/19 11:41,"368 6th St, Dallas, TX 75001" -226550,USB-C Charging Cable,1,11.95,07/07/19 16:27,"745 Lake St, Los Angeles, CA 90001" -226551,Apple Airpods Headphones,1,150,07/08/19 19:52,"628 Washington St, San Francisco, CA 94016" -226552,Lightning Charging Cable,1,14.95,07/23/19 07:47,"127 5th St, New York City, NY 10001" -226553,20in Monitor,1,109.99,07/18/19 00:27,"216 Walnut St, Los Angeles, CA 90001" -226554,AA Batteries (4-pack),1,3.84,07/16/19 18:24,"876 Hill St, San Francisco, CA 94016" -226555,Bose SoundSport Headphones,1,99.99,07/27/19 18:02,"434 Madison St, San Francisco, CA 94016" -226556,Apple Airpods Headphones,1,150,07/25/19 12:21,"539 8th St, San Francisco, CA 94016" -226557,Bose SoundSport Headphones,1,99.99,07/19/19 11:35,"726 Cherry St, Atlanta, GA 30301" -226558,AA Batteries (4-pack),2,3.84,07/29/19 14:17,"147 Lakeview St, Dallas, TX 75001" -226559,Lightning Charging Cable,1,14.95,07/18/19 20:01,"165 North St, San Francisco, CA 94016" -226560,27in 4K Gaming Monitor,1,389.99,07/25/19 09:03,"715 Lakeview St, New York City, NY 10001" -226561,27in FHD Monitor,1,149.99,07/30/19 18:12,"852 South St, San Francisco, CA 94016" -226562,Flatscreen TV,1,300,07/08/19 18:40,"369 Cedar St, Boston, MA 02215" -226563,USB-C Charging Cable,1,11.95,07/19/19 21:37,"223 River St, Boston, MA 02215" -226564,Lightning Charging Cable,1,14.95,07/01/19 22:18,"984 Cedar St, San Francisco, CA 94016" -226565,27in FHD Monitor,1,149.99,07/31/19 15:17,"273 10th St, Los Angeles, CA 90001" -226566,LG Dryer,1,600.0,07/19/19 13:44,"493 Jefferson St, San Francisco, CA 94016" -226567,Vareebadd Phone,1,400,07/21/19 11:18,"726 Elm St, Seattle, WA 98101" -226568,Macbook Pro Laptop,1,1700,07/24/19 23:30,"774 Elm St, Austin, TX 73301" -226569,iPhone,1,700,07/09/19 17:34,"35 River St, Dallas, TX 75001" -226570,34in Ultrawide Monitor,1,379.99,07/22/19 12:24,"149 Church St, Atlanta, GA 30301" -226571,27in 4K Gaming Monitor,1,389.99,07/11/19 14:51,"774 Ridge St, Los Angeles, CA 90001" -226572,Bose SoundSport Headphones,1,99.99,07/21/19 17:22,"545 Lakeview St, San Francisco, CA 94016" -226573,AAA Batteries (4-pack),3,2.99,07/19/19 21:35,"954 10th St, San Francisco, CA 94016" -226574,ThinkPad Laptop,1,999.99,07/30/19 17:03,"980 Cedar St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -226575,AA Batteries (4-pack),1,3.84,07/19/19 01:56,"337 Main St, San Francisco, CA 94016" -226576,AAA Batteries (4-pack),3,2.99,07/08/19 22:24,"995 Meadow St, Los Angeles, CA 90001" -226577,Bose SoundSport Headphones,1,99.99,07/10/19 13:16,"757 Dogwood St, Portland, OR 97035" -226578,Lightning Charging Cable,1,14.95,07/19/19 18:35,"931 Park St, New York City, NY 10001" -226579,Bose SoundSport Headphones,1,99.99,07/22/19 08:53,"930 North St, New York City, NY 10001" -226580,Bose SoundSport Headphones,1,99.99,07/28/19 12:40,"659 Park St, San Francisco, CA 94016" -226581,Macbook Pro Laptop,1,1700,07/18/19 09:18,"636 Jackson St, New York City, NY 10001" -226582,AA Batteries (4-pack),2,3.84,07/22/19 16:46,"898 Spruce St, Boston, MA 02215" -226583,AAA Batteries (4-pack),1,2.99,07/09/19 07:56,"653 North St, Los Angeles, CA 90001" -226584,27in 4K Gaming Monitor,1,389.99,07/17/19 11:44,"451 Walnut St, Austin, TX 73301" -226585,USB-C Charging Cable,1,11.95,07/24/19 13:20,"696 Cedar St, Dallas, TX 75001" -226586,USB-C Charging Cable,1,11.95,07/07/19 13:10,"357 Jackson St, San Francisco, CA 94016" -226587,Wired Headphones,1,11.99,07/16/19 19:05,"645 11th St, San Francisco, CA 94016" -226588,Wired Headphones,1,11.99,07/08/19 07:26,"567 Jefferson St, Boston, MA 02215" -226589,Macbook Pro Laptop,1,1700,07/03/19 23:38,"399 Pine St, San Francisco, CA 94016" -226590,AAA Batteries (4-pack),1,2.99,07/20/19 15:52,"189 6th St, Boston, MA 02215" -226591,Wired Headphones,1,11.99,07/15/19 13:24,"5 Forest St, Seattle, WA 98101" -226592,Macbook Pro Laptop,1,1700,07/21/19 10:02,"969 Johnson St, Boston, MA 02215" -226593,Bose SoundSport Headphones,1,99.99,07/24/19 13:40,"871 Hill St, San Francisco, CA 94016" -226594,Wired Headphones,1,11.99,07/03/19 09:02,"782 Highland St, Atlanta, GA 30301" -226595,Wired Headphones,1,11.99,07/12/19 13:28,"21 Ridge St, Boston, MA 02215" -226596,Flatscreen TV,1,300,07/08/19 17:54,"869 Madison St, Seattle, WA 98101" -226597,Wired Headphones,1,11.99,07/26/19 16:00,"370 Pine St, San Francisco, CA 94016" -226598,Wired Headphones,1,11.99,07/06/19 19:46,"403 2nd St, San Francisco, CA 94016" -226599,AAA Batteries (4-pack),1,2.99,07/13/19 08:06,"424 Forest St, Seattle, WA 98101" -226600,iPhone,1,700,07/04/19 15:05,"621 14th St, San Francisco, CA 94016" -226601,Lightning Charging Cable,1,14.95,07/06/19 00:12,"766 7th St, Portland, OR 97035" -226602,AA Batteries (4-pack),1,3.84,07/11/19 22:06,"981 Wilson St, Portland, OR 97035" -226603,Macbook Pro Laptop,1,1700,07/20/19 15:18,"272 4th St, San Francisco, CA 94016" -226604,20in Monitor,1,109.99,07/31/19 01:13,"655 Lincoln St, Seattle, WA 98101" -226605,USB-C Charging Cable,1,11.95,07/27/19 09:13,"7 Lincoln St, Dallas, TX 75001" -226606,27in 4K Gaming Monitor,1,389.99,07/29/19 17:57,"451 Walnut St, Seattle, WA 98101" -226607,Google Phone,1,600,07/24/19 05:01,"137 Lake St, Dallas, TX 75001" -226608,Macbook Pro Laptop,1,1700,07/20/19 10:40,"428 10th St, San Francisco, CA 94016" -226609,Apple Airpods Headphones,1,150,07/25/19 12:21,"663 Ridge St, San Francisco, CA 94016" -226610,USB-C Charging Cable,1,11.95,07/24/19 10:50,"773 2nd St, San Francisco, CA 94016" -226611,Bose SoundSport Headphones,1,99.99,07/11/19 12:23,"43 2nd St, New York City, NY 10001" -226612,27in FHD Monitor,1,149.99,07/25/19 12:39,"352 West St, Dallas, TX 75001" -226613,Bose SoundSport Headphones,1,99.99,07/04/19 22:47,"143 9th St, San Francisco, CA 94016" -226614,Lightning Charging Cable,1,14.95,07/10/19 11:14,"388 9th St, San Francisco, CA 94016" -226615,AAA Batteries (4-pack),1,2.99,07/10/19 16:08,"526 13th St, San Francisco, CA 94016" -226616,AAA Batteries (4-pack),1,2.99,07/11/19 18:51,"840 Highland St, New York City, NY 10001" -226617,USB-C Charging Cable,1,11.95,07/31/19 19:09,"908 Pine St, Boston, MA 02215" -226618,iPhone,1,700,07/11/19 22:46,"573 Madison St, New York City, NY 10001" -226619,27in 4K Gaming Monitor,1,389.99,07/14/19 20:07,"376 South St, San Francisco, CA 94016" -226620,iPhone,1,700,07/19/19 19:59,"257 Willow St, Boston, MA 02215" -226621,Wired Headphones,1,11.99,07/27/19 20:04,"718 Adams St, San Francisco, CA 94016" -226622,Bose SoundSport Headphones,1,99.99,07/12/19 16:21,"921 Meadow St, San Francisco, CA 94016" -226623,USB-C Charging Cable,1,11.95,07/06/19 08:55,"227 Chestnut St, Los Angeles, CA 90001" -226624,Flatscreen TV,1,300,07/22/19 09:35,"369 11th St, San Francisco, CA 94016" -226625,Google Phone,1,600,07/15/19 23:06,"553 Willow St, San Francisco, CA 94016" -226625,USB-C Charging Cable,1,11.95,07/15/19 23:06,"553 Willow St, San Francisco, CA 94016" -226625,Wired Headphones,1,11.99,07/15/19 23:06,"553 Willow St, San Francisco, CA 94016" -226625,Wired Headphones,1,11.99,07/15/19 23:06,"553 Willow St, San Francisco, CA 94016" -226626,27in 4K Gaming Monitor,1,389.99,07/11/19 14:21,"769 Johnson St, San Francisco, CA 94016" -226627,Macbook Pro Laptop,1,1700,07/21/19 17:08,"328 8th St, Seattle, WA 98101" -226627,20in Monitor,1,109.99,07/21/19 17:08,"328 8th St, Seattle, WA 98101" -226628,Wired Headphones,1,11.99,07/09/19 22:30,"789 Park St, Boston, MA 02215" -226629,Lightning Charging Cable,1,14.95,07/24/19 13:58,"114 Spruce St, New York City, NY 10001" -226630,Bose SoundSport Headphones,1,99.99,07/20/19 12:52,"741 River St, Portland, OR 97035" -226631,Apple Airpods Headphones,1,150,07/03/19 03:14,"837 Spruce St, Portland, ME 04101" -226632,AA Batteries (4-pack),1,3.84,07/12/19 17:35,"562 West St, Atlanta, GA 30301" -226633,Apple Airpods Headphones,1,150,07/10/19 16:23,"668 Spruce St, Portland, OR 97035" -226634,iPhone,1,700,07/06/19 15:15,"948 Pine St, San Francisco, CA 94016" -226635,Lightning Charging Cable,1,14.95,07/04/19 14:34,"278 4th St, Dallas, TX 75001" -226636,Google Phone,1,600,07/10/19 09:00,"78 7th St, New York City, NY 10001" -226637,USB-C Charging Cable,1,11.95,07/07/19 16:41,"597 8th St, Los Angeles, CA 90001" -226638,AA Batteries (4-pack),1,3.84,07/07/19 11:26,"439 Spruce St, New York City, NY 10001" -226639,Apple Airpods Headphones,1,150,07/02/19 14:46,"455 Highland St, Boston, MA 02215" -226640,AA Batteries (4-pack),2,3.84,07/07/19 09:06,"418 Forest St, Boston, MA 02215" -226641,34in Ultrawide Monitor,1,379.99,07/02/19 20:50,"708 Washington St, Dallas, TX 75001" -226642,AA Batteries (4-pack),2,3.84,07/26/19 11:33,"527 Hickory St, Dallas, TX 75001" -226643,Lightning Charging Cable,1,14.95,07/31/19 05:14,"493 West St, San Francisco, CA 94016" -226644,Bose SoundSport Headphones,1,99.99,07/26/19 00:34,"65 Spruce St, Los Angeles, CA 90001" -226645,20in Monitor,1,109.99,07/02/19 18:06,"195 Johnson St, Boston, MA 02215" -226646,AAA Batteries (4-pack),3,2.99,07/07/19 14:56,"246 6th St, Los Angeles, CA 90001" -226647,20in Monitor,1,109.99,07/30/19 06:57,"952 Wilson St, San Francisco, CA 94016" -226648,AAA Batteries (4-pack),1,2.99,07/12/19 21:30,"351 Dogwood St, Dallas, TX 75001" -226649,Macbook Pro Laptop,1,1700,07/04/19 22:48,"869 Dogwood St, San Francisco, CA 94016" -226650,27in FHD Monitor,1,149.99,07/13/19 10:58,"68 2nd St, Los Angeles, CA 90001" -226651,Wired Headphones,1,11.99,07/20/19 11:33,"904 Park St, Portland, OR 97035" -226652,Apple Airpods Headphones,1,150,07/11/19 10:01,"664 8th St, Los Angeles, CA 90001" -226653,Lightning Charging Cable,1,14.95,07/24/19 19:20,"70 South St, San Francisco, CA 94016" -226654,Apple Airpods Headphones,1,150,07/12/19 09:16,"972 South St, Dallas, TX 75001" -226655,USB-C Charging Cable,1,11.95,07/11/19 12:32,"770 5th St, New York City, NY 10001" -226656,Wired Headphones,1,11.99,07/22/19 19:52,"648 Park St, Atlanta, GA 30301" -226657,AA Batteries (4-pack),1,3.84,07/28/19 21:36,"243 6th St, Boston, MA 02215" -226658,Google Phone,1,600,07/09/19 20:31,"94 Jackson St, Portland, OR 97035" -226659,Vareebadd Phone,1,400,07/11/19 09:06,"491 Washington St, Austin, TX 73301" -226659,USB-C Charging Cable,1,11.95,07/11/19 09:06,"491 Washington St, Austin, TX 73301" -226660,Flatscreen TV,1,300,07/28/19 17:54,"189 North St, Portland, OR 97035" -226661,Apple Airpods Headphones,1,150,07/21/19 10:19,"92 Highland St, New York City, NY 10001" -226662,27in 4K Gaming Monitor,1,389.99,07/09/19 13:04,"417 Main St, New York City, NY 10001" -226663,Apple Airpods Headphones,1,150,07/17/19 16:44,"16 Willow St, San Francisco, CA 94016" -226664,20in Monitor,1,109.99,07/15/19 12:04,"924 Adams St, San Francisco, CA 94016" -226665,20in Monitor,1,109.99,07/13/19 16:02,"672 Jackson St, Seattle, WA 98101" -226666,Vareebadd Phone,1,400,07/28/19 05:44,"146 13th St, Seattle, WA 98101" -226667,iPhone,1,700,07/23/19 21:36,"547 10th St, Los Angeles, CA 90001" -226667,Lightning Charging Cable,1,14.95,07/23/19 21:36,"547 10th St, Los Angeles, CA 90001" -226668,Apple Airpods Headphones,1,150,07/12/19 06:32,"626 Meadow St, New York City, NY 10001" -226669,ThinkPad Laptop,1,999.99,07/29/19 06:56,"77 Hickory St, Atlanta, GA 30301" -226670,iPhone,1,700,07/10/19 00:23,"158 Meadow St, San Francisco, CA 94016" -226671,Wired Headphones,1,11.99,07/20/19 13:42,"241 Lakeview St, San Francisco, CA 94016" -226672,20in Monitor,1,109.99,07/22/19 13:33,"416 Maple St, Los Angeles, CA 90001" -226673,Wired Headphones,1,11.99,07/26/19 12:36,"225 Sunset St, New York City, NY 10001" -226674,Apple Airpods Headphones,1,150,07/24/19 21:48,"978 Cedar St, Los Angeles, CA 90001" -226675,iPhone,1,700,07/09/19 01:09,"398 9th St, Los Angeles, CA 90001" -226676,Flatscreen TV,1,300,07/04/19 23:38,"865 West St, Boston, MA 02215" -226677,AAA Batteries (4-pack),2,2.99,07/30/19 00:35,"225 Park St, San Francisco, CA 94016" -226678,Lightning Charging Cable,1,14.95,07/14/19 21:38,"882 Washington St, New York City, NY 10001" -226679,AA Batteries (4-pack),1,3.84,07/12/19 12:14,"306 Spruce St, Dallas, TX 75001" -226680,USB-C Charging Cable,1,11.95,07/04/19 18:03,"108 Ridge St, Austin, TX 73301" -226681,27in 4K Gaming Monitor,1,389.99,07/21/19 14:18,"289 Pine St, Austin, TX 73301" -226682,USB-C Charging Cable,1,11.95,07/06/19 11:43,"10 Maple St, Dallas, TX 75001" -226683,AA Batteries (4-pack),1,3.84,07/15/19 18:45,"895 Madison St, Seattle, WA 98101" -226684,USB-C Charging Cable,1,11.95,07/30/19 21:11,"393 Madison St, Atlanta, GA 30301" -226685,Wired Headphones,1,11.99,07/02/19 12:03,"665 11th St, Los Angeles, CA 90001" -226686,AAA Batteries (4-pack),2,2.99,07/29/19 22:59,"960 Madison St, San Francisco, CA 94016" -226687,USB-C Charging Cable,1,11.95,07/30/19 09:57,"876 Main St, Seattle, WA 98101" -226688,Apple Airpods Headphones,1,150,07/04/19 16:48,"810 Forest St, New York City, NY 10001" -226689,Bose SoundSport Headphones,1,99.99,07/12/19 10:03,"180 Adams St, Dallas, TX 75001" -226690,34in Ultrawide Monitor,1,379.99,07/09/19 14:12,"412 Hickory St, Portland, ME 04101" -226691,AAA Batteries (4-pack),1,2.99,07/06/19 21:30,"731 Hill St, San Francisco, CA 94016" -226692,USB-C Charging Cable,1,11.95,07/11/19 16:57,"848 Washington St, Seattle, WA 98101" -226693,AAA Batteries (4-pack),2,2.99,07/15/19 18:17,"547 Forest St, San Francisco, CA 94016" -226694,Wired Headphones,1,11.99,07/13/19 20:37,"764 13th St, Seattle, WA 98101" -226695,Wired Headphones,1,11.99,07/09/19 18:24,"641 River St, Boston, MA 02215" -226696,AA Batteries (4-pack),1,3.84,07/28/19 18:48,"216 1st St, San Francisco, CA 94016" -226697,Apple Airpods Headphones,1,150,07/05/19 13:21,"46 Johnson St, Austin, TX 73301" -226698,AAA Batteries (4-pack),1,2.99,07/18/19 09:10,"484 11th St, San Francisco, CA 94016" -226699,USB-C Charging Cable,1,11.95,07/06/19 18:08,"432 7th St, New York City, NY 10001" -226700,Bose SoundSport Headphones,1,99.99,07/21/19 16:47,"866 North St, Seattle, WA 98101" -226701,AA Batteries (4-pack),1,3.84,07/13/19 13:55,"630 Jefferson St, San Francisco, CA 94016" -226702,Macbook Pro Laptop,1,1700,07/29/19 19:31,"954 North St, New York City, NY 10001" -226703,Lightning Charging Cable,1,14.95,07/16/19 17:12,"312 Center St, San Francisco, CA 94016" -226704,27in FHD Monitor,1,149.99,07/17/19 21:09,"79 11th St, Atlanta, GA 30301" -226705,Bose SoundSport Headphones,1,99.99,07/02/19 10:10,"637 Jefferson St, San Francisco, CA 94016" -226706,Lightning Charging Cable,1,14.95,07/05/19 17:20,"799 West St, Seattle, WA 98101" -226707,Flatscreen TV,1,300,07/28/19 22:23,"119 Meadow St, Seattle, WA 98101" -226708,Wired Headphones,1,11.99,07/22/19 18:02,"556 South St, New York City, NY 10001" -226709,AAA Batteries (4-pack),1,2.99,07/02/19 14:54,"10 Cedar St, Dallas, TX 75001" -226710,USB-C Charging Cable,1,11.95,07/02/19 10:51,"267 North St, Portland, ME 04101" -226711,27in FHD Monitor,1,149.99,07/12/19 19:44,"82 Maple St, Boston, MA 02215" -226711,Macbook Pro Laptop,1,1700,07/12/19 19:44,"82 Maple St, Boston, MA 02215" -226712,Lightning Charging Cable,1,14.95,07/09/19 06:37,"472 9th St, New York City, NY 10001" -226713,Lightning Charging Cable,1,14.95,07/16/19 17:13,"201 Forest St, San Francisco, CA 94016" -226714,AA Batteries (4-pack),1,3.84,07/28/19 10:14,"31 Wilson St, Atlanta, GA 30301" -226715,Apple Airpods Headphones,1,150,07/09/19 10:42,"702 Walnut St, Seattle, WA 98101" -226716,Lightning Charging Cable,1,14.95,07/04/19 15:39,"805 10th St, Los Angeles, CA 90001" -226717,Wired Headphones,1,11.99,07/05/19 12:46,"805 8th St, Los Angeles, CA 90001" -226718,AAA Batteries (4-pack),3,2.99,07/27/19 16:38,"159 Lincoln St, Atlanta, GA 30301" -226719,ThinkPad Laptop,1,999.99,07/23/19 13:43,"387 4th St, Los Angeles, CA 90001" -226720,ThinkPad Laptop,1,999.99,07/24/19 03:52,"441 Cherry St, New York City, NY 10001" -226721,Bose SoundSport Headphones,1,99.99,07/29/19 12:29,"872 5th St, Portland, OR 97035" -226722,AA Batteries (4-pack),1,3.84,07/06/19 22:05,"329 Maple St, Portland, OR 97035" -226723,Flatscreen TV,1,300,07/12/19 23:42,"638 Cherry St, Seattle, WA 98101" -226724,Wired Headphones,1,11.99,07/09/19 13:21,"253 Lake St, Seattle, WA 98101" -226725,AAA Batteries (4-pack),1,2.99,07/17/19 22:20,"975 Meadow St, New York City, NY 10001" -226726,ThinkPad Laptop,1,999.99,07/19/19 20:07,"6 West St, San Francisco, CA 94016" -226726,USB-C Charging Cable,1,11.95,07/19/19 20:07,"6 West St, San Francisco, CA 94016" -226727,20in Monitor,1,109.99,07/17/19 07:07,"630 Spruce St, Seattle, WA 98101" -226728,Apple Airpods Headphones,1,150,07/01/19 11:09,"377 1st St, New York City, NY 10001" -226729,AA Batteries (4-pack),1,3.84,07/07/19 09:14,"414 Sunset St, Dallas, TX 75001" -226729,Apple Airpods Headphones,1,150,07/07/19 09:14,"414 Sunset St, Dallas, TX 75001" -226730,Wired Headphones,1,11.99,07/05/19 12:54,"83 Jefferson St, Los Angeles, CA 90001" -226731,Lightning Charging Cable,1,14.95,07/27/19 12:26,"838 Johnson St, New York City, NY 10001" -226732,USB-C Charging Cable,1,11.95,07/25/19 16:36,"520 5th St, Los Angeles, CA 90001" -226733,AAA Batteries (4-pack),1,2.99,07/05/19 15:21,"961 Forest St, Los Angeles, CA 90001" -226734,LG Washing Machine,1,600.0,07/15/19 11:04,"358 South St, Boston, MA 02215" -226735,Wired Headphones,1,11.99,07/13/19 07:05,"458 Sunset St, Los Angeles, CA 90001" -226736,27in FHD Monitor,1,149.99,07/01/19 12:48,"333 1st St, San Francisco, CA 94016" -226737,USB-C Charging Cable,1,11.95,07/29/19 16:06,"947 9th St, San Francisco, CA 94016" -226738,USB-C Charging Cable,1,11.95,07/08/19 00:26,"160 Meadow St, New York City, NY 10001" -226739,34in Ultrawide Monitor,1,379.99,07/08/19 05:12,"343 Wilson St, Austin, TX 73301" -226740,34in Ultrawide Monitor,1,379.99,07/16/19 12:00,"732 Cedar St, San Francisco, CA 94016" -226741,Lightning Charging Cable,1,14.95,07/16/19 20:08,"687 Pine St, Atlanta, GA 30301" -226742,Lightning Charging Cable,1,14.95,07/11/19 14:45,"311 5th St, New York City, NY 10001" -226743,Bose SoundSport Headphones,1,99.99,07/17/19 12:42,"61 4th St, Boston, MA 02215" -226744,Lightning Charging Cable,1,14.95,07/22/19 02:41,"582 Main St, Boston, MA 02215" -226745,Lightning Charging Cable,1,14.95,07/02/19 14:51,"423 River St, San Francisco, CA 94016" -226746,AA Batteries (4-pack),1,3.84,07/10/19 13:38,"630 Lincoln St, New York City, NY 10001" -226747,Lightning Charging Cable,1,14.95,07/01/19 17:34,"25 Elm St, San Francisco, CA 94016" -226748,34in Ultrawide Monitor,1,379.99,07/18/19 13:40,"486 Madison St, Los Angeles, CA 90001" -226749,AAA Batteries (4-pack),3,2.99,07/12/19 19:59,"768 6th St, New York City, NY 10001" -226750,20in Monitor,1,109.99,07/12/19 17:22,"279 Washington St, San Francisco, CA 94016" -226751,Apple Airpods Headphones,1,150,07/20/19 07:25,"409 Jackson St, Seattle, WA 98101" -226752,Vareebadd Phone,1,400,07/21/19 15:28,"538 Ridge St, San Francisco, CA 94016" -226753,Lightning Charging Cable,2,14.95,07/27/19 16:50,"929 Lake St, Boston, MA 02215" -226754,AAA Batteries (4-pack),3,2.99,07/16/19 09:27,"51 1st St, San Francisco, CA 94016" -226755,20in Monitor,1,109.99,07/26/19 22:20,"81 Church St, New York City, NY 10001" -226756,USB-C Charging Cable,1,11.95,07/08/19 12:27,"319 Chestnut St, Boston, MA 02215" -226757,Apple Airpods Headphones,1,150,07/04/19 18:23,"387 Willow St, Seattle, WA 98101" -226758,Lightning Charging Cable,1,14.95,07/24/19 21:18,"835 Lincoln St, Atlanta, GA 30301" -226759,Apple Airpods Headphones,1,150,07/24/19 15:33,"498 6th St, New York City, NY 10001" -226760,Lightning Charging Cable,1,14.95,07/24/19 14:43,"314 Center St, Seattle, WA 98101" -226761,AAA Batteries (4-pack),2,2.99,07/21/19 18:50,"845 Highland St, San Francisco, CA 94016" -226762,Lightning Charging Cable,1,14.95,07/11/19 18:58,"772 12th St, New York City, NY 10001" -226763,AAA Batteries (4-pack),1,2.99,07/05/19 18:00,"25 South St, New York City, NY 10001" -226764,Apple Airpods Headphones,1,150,07/18/19 09:46,"891 9th St, Atlanta, GA 30301" -226765,AA Batteries (4-pack),1,3.84,07/18/19 21:32,"779 14th St, Los Angeles, CA 90001" -226766,27in FHD Monitor,1,149.99,07/01/19 17:47,"835 Highland St, Atlanta, GA 30301" -226766,USB-C Charging Cable,1,11.95,07/01/19 17:47,"835 Highland St, Atlanta, GA 30301" -226767,27in FHD Monitor,1,149.99,07/21/19 22:19,"676 Park St, Atlanta, GA 30301" -226768,ThinkPad Laptop,1,999.99,07/20/19 15:59,"77 6th St, Boston, MA 02215" -226769,Wired Headphones,1,11.99,07/14/19 19:17,"167 Walnut St, Los Angeles, CA 90001" -226770,AAA Batteries (4-pack),1,2.99,07/25/19 00:37,"639 2nd St, San Francisco, CA 94016" -226771,Wired Headphones,1,11.99,07/04/19 13:43,"768 Hill St, San Francisco, CA 94016" -226772,AA Batteries (4-pack),1,3.84,07/02/19 20:22,"579 River St, New York City, NY 10001" -226773,AAA Batteries (4-pack),1,2.99,07/29/19 19:10,"498 Johnson St, Boston, MA 02215" -226774,Macbook Pro Laptop,1,1700,07/31/19 19:07,"57 13th St, Seattle, WA 98101" -226775,Apple Airpods Headphones,1,150,07/10/19 23:21,"592 13th St, Boston, MA 02215" -226776,Lightning Charging Cable,1,14.95,07/17/19 09:36,"538 Cherry St, New York City, NY 10001" -226777,AA Batteries (4-pack),2,3.84,07/02/19 01:37,"411 Forest St, New York City, NY 10001" -226778,Wired Headphones,1,11.99,07/22/19 18:02,"773 Johnson St, Seattle, WA 98101" -226779,27in 4K Gaming Monitor,1,389.99,07/23/19 13:15,"423 11th St, Los Angeles, CA 90001" -226780,20in Monitor,1,109.99,07/17/19 23:36,"548 Park St, Seattle, WA 98101" -226781,Apple Airpods Headphones,1,150,07/08/19 20:20,"819 Elm St, Atlanta, GA 30301" -226782,Bose SoundSport Headphones,1,99.99,07/28/19 01:43,"884 River St, San Francisco, CA 94016" -226783,USB-C Charging Cable,1,11.95,07/11/19 18:39,"734 13th St, San Francisco, CA 94016" -226784,Bose SoundSport Headphones,1,99.99,07/08/19 12:42,"831 12th St, Atlanta, GA 30301" -226785,Wired Headphones,2,11.99,07/16/19 17:29,"591 Madison St, Dallas, TX 75001" -226786,AAA Batteries (4-pack),1,2.99,07/01/19 11:06,"800 Willow St, Austin, TX 73301" -226787,AAA Batteries (4-pack),1,2.99,07/25/19 17:34,"129 Dogwood St, Los Angeles, CA 90001" -226788,34in Ultrawide Monitor,1,379.99,07/01/19 14:08,"126 Johnson St, Seattle, WA 98101" -226789,USB-C Charging Cable,1,11.95,07/02/19 16:53,"718 9th St, San Francisco, CA 94016" -226790,27in FHD Monitor,1,149.99,07/11/19 04:05,"648 Sunset St, Atlanta, GA 30301" -226791,AAA Batteries (4-pack),1,2.99,07/20/19 05:34,"399 Johnson St, Atlanta, GA 30301" -226792,AAA Batteries (4-pack),1,2.99,07/29/19 17:23,"743 7th St, San Francisco, CA 94016" -226793,AAA Batteries (4-pack),1,2.99,07/10/19 14:38,"303 Pine St, San Francisco, CA 94016" -226794,USB-C Charging Cable,1,11.95,07/06/19 21:19,"35 Elm St, Boston, MA 02215" -226795,27in 4K Gaming Monitor,1,389.99,07/10/19 13:33,"269 Center St, Dallas, TX 75001" -226796,AA Batteries (4-pack),1,3.84,07/21/19 05:54,"781 Forest St, Dallas, TX 75001" -226797,20in Monitor,1,109.99,07/10/19 23:33,"99 5th St, San Francisco, CA 94016" -226798,27in 4K Gaming Monitor,1,389.99,07/18/19 20:49,"504 North St, Boston, MA 02215" -226799,USB-C Charging Cable,1,11.95,07/30/19 13:02,"412 Forest St, San Francisco, CA 94016" -226800,20in Monitor,1,109.99,07/25/19 14:12,"769 Walnut St, New York City, NY 10001" -226801,27in 4K Gaming Monitor,1,389.99,07/07/19 13:04,"739 River St, Austin, TX 73301" -226802,Lightning Charging Cable,1,14.95,07/19/19 04:17,"388 Sunset St, Boston, MA 02215" -226803,iPhone,1,700,07/31/19 13:17,"26 Walnut St, Atlanta, GA 30301" -226804,Wired Headphones,1,11.99,07/10/19 21:33,"831 Johnson St, San Francisco, CA 94016" -226805,27in FHD Monitor,1,149.99,07/31/19 21:12,"469 Lake St, Atlanta, GA 30301" -226806,USB-C Charging Cable,1,11.95,07/30/19 17:37,"199 Spruce St, San Francisco, CA 94016" -226807,AAA Batteries (4-pack),3,2.99,07/15/19 20:19,"870 Walnut St, San Francisco, CA 94016" -226808,Lightning Charging Cable,1,14.95,07/25/19 21:22,"435 9th St, New York City, NY 10001" -226809,Bose SoundSport Headphones,1,99.99,07/03/19 17:11,"407 8th St, New York City, NY 10001" -226810,AA Batteries (4-pack),1,3.84,07/03/19 18:46,"68 South St, New York City, NY 10001" -226811,iPhone,1,700,07/16/19 06:44,"541 Lakeview St, Boston, MA 02215" -226812,Google Phone,1,600,07/28/19 11:24,"41 8th St, New York City, NY 10001" -226813,27in FHD Monitor,1,149.99,07/23/19 19:27,"326 5th St, Portland, OR 97035" -226814,Lightning Charging Cable,1,14.95,07/13/19 15:54,"489 Lincoln St, New York City, NY 10001" -226815,AAA Batteries (4-pack),3,2.99,07/29/19 15:08,"385 Forest St, Boston, MA 02215" -226816,Google Phone,1,600,07/22/19 19:51,"397 14th St, Atlanta, GA 30301" -226816,USB-C Charging Cable,1,11.95,07/22/19 19:51,"397 14th St, Atlanta, GA 30301" -226817,Lightning Charging Cable,1,14.95,07/09/19 12:15,"471 Hickory St, New York City, NY 10001" -226818,27in 4K Gaming Monitor,1,389.99,07/14/19 11:56,"559 South St, Los Angeles, CA 90001" -226819,Bose SoundSport Headphones,1,99.99,07/22/19 04:07,"782 Meadow St, Boston, MA 02215" -226820,AA Batteries (4-pack),2,3.84,07/01/19 06:55,"262 7th St, New York City, NY 10001" -226821,Apple Airpods Headphones,1,150,07/24/19 00:58,"309 Washington St, Austin, TX 73301" -226822,Wired Headphones,1,11.99,07/30/19 20:49,"881 West St, Los Angeles, CA 90001" -226823,USB-C Charging Cable,1,11.95,07/12/19 19:40,"621 Willow St, Los Angeles, CA 90001" -226824,27in 4K Gaming Monitor,1,389.99,07/05/19 15:52,"850 Chestnut St, Los Angeles, CA 90001" -226825,Google Phone,1,600,07/03/19 18:26,"799 Cedar St, Atlanta, GA 30301" -226826,AA Batteries (4-pack),1,3.84,07/03/19 19:55,"820 Hickory St, Portland, ME 04101" -226827,34in Ultrawide Monitor,1,379.99,07/19/19 17:47,"867 10th St, Los Angeles, CA 90001" -226828,AAA Batteries (4-pack),1,2.99,07/05/19 19:43,"751 6th St, New York City, NY 10001" -226829,Flatscreen TV,1,300,07/27/19 19:25,"855 Spruce St, San Francisco, CA 94016" -226830,Wired Headphones,1,11.99,07/08/19 16:09,"426 Meadow St, Los Angeles, CA 90001" -226831,Wired Headphones,1,11.99,07/24/19 16:13,"436 Cedar St, San Francisco, CA 94016" -226832,AA Batteries (4-pack),1,3.84,07/26/19 18:06,"794 Cherry St, San Francisco, CA 94016" -226833,Google Phone,1,600,07/12/19 21:44,"763 Madison St, Boston, MA 02215" -226834,USB-C Charging Cable,1,11.95,07/28/19 19:05,"65 Spruce St, San Francisco, CA 94016" -226835,AAA Batteries (4-pack),1,2.99,07/21/19 19:04,"542 Walnut St, Seattle, WA 98101" -226836,AAA Batteries (4-pack),3,2.99,07/27/19 11:53,"597 10th St, Atlanta, GA 30301" -226837,Wired Headphones,1,11.99,07/28/19 13:01,"606 Wilson St, Los Angeles, CA 90001" -226838,USB-C Charging Cable,1,11.95,07/12/19 21:28,"452 11th St, Los Angeles, CA 90001" -226839,Bose SoundSport Headphones,1,99.99,07/08/19 19:03,"362 10th St, Austin, TX 73301" -226840,AAA Batteries (4-pack),1,2.99,07/22/19 20:48,"797 Dogwood St, Portland, OR 97035" -226841,Bose SoundSport Headphones,1,99.99,07/11/19 16:14,"756 11th St, Seattle, WA 98101" -226842,AA Batteries (4-pack),4,3.84,07/04/19 17:43,"952 Washington St, Boston, MA 02215" -226843,iPhone,1,700,07/31/19 22:09,"680 River St, San Francisco, CA 94016" -226844,Flatscreen TV,1,300,07/17/19 19:55,"983 13th St, Boston, MA 02215" -226845,iPhone,1,700,07/25/19 19:13,"625 Maple St, Austin, TX 73301" -226846,USB-C Charging Cable,1,11.95,07/15/19 12:03,"573 Wilson St, Boston, MA 02215" -226847,Lightning Charging Cable,1,14.95,07/07/19 22:07,"79 Church St, Los Angeles, CA 90001" -226848,27in FHD Monitor,1,149.99,07/03/19 11:50,"465 Jackson St, New York City, NY 10001" -226849,AA Batteries (4-pack),3,3.84,07/01/19 16:38,"720 2nd St, San Francisco, CA 94016" -226850,USB-C Charging Cable,1,11.95,07/27/19 08:21,"434 Washington St, Boston, MA 02215" -226851,AA Batteries (4-pack),1,3.84,07/07/19 13:53,"789 Sunset St, Atlanta, GA 30301" -226852,USB-C Charging Cable,5,11.95,07/15/19 21:19,"916 13th St, San Francisco, CA 94016" -226853,Apple Airpods Headphones,1,150,07/23/19 22:52,"144 14th St, San Francisco, CA 94016" -226854,27in FHD Monitor,1,149.99,07/05/19 18:59,"688 Johnson St, Seattle, WA 98101" -226855,Macbook Pro Laptop,1,1700,07/13/19 15:44,"602 Chestnut St, San Francisco, CA 94016" -226856,ThinkPad Laptop,1,999.99,07/02/19 13:39,"621 River St, Portland, OR 97035" -226857,27in FHD Monitor,1,149.99,07/07/19 19:07,"801 1st St, Dallas, TX 75001" -226858,USB-C Charging Cable,1,11.95,07/02/19 17:56,"55 Willow St, Atlanta, GA 30301" -226859,Wired Headphones,1,11.99,07/16/19 21:23,"209 Forest St, Los Angeles, CA 90001" -226860,Wired Headphones,1,11.99,07/05/19 19:14,"425 1st St, Dallas, TX 75001" -226861,Apple Airpods Headphones,1,150,07/09/19 18:19,"737 12th St, Seattle, WA 98101" -226862,Google Phone,1,600,07/12/19 07:45,"894 Maple St, Dallas, TX 75001" -226863,AA Batteries (4-pack),2,3.84,07/12/19 21:40,"94 6th St, Austin, TX 73301" -226864,USB-C Charging Cable,1,11.95,07/06/19 18:36,"317 Elm St, Boston, MA 02215" -226865,ThinkPad Laptop,1,999.99,07/25/19 16:05,"285 Sunset St, New York City, NY 10001" -226866,Bose SoundSport Headphones,1,99.99,07/10/19 20:02,"526 Church St, San Francisco, CA 94016" -226867,Google Phone,1,600,07/23/19 10:45,"974 Cedar St, Dallas, TX 75001" -226867,USB-C Charging Cable,1,11.95,07/23/19 10:45,"974 Cedar St, Dallas, TX 75001" -226868,AAA Batteries (4-pack),1,2.99,07/13/19 10:32,"234 Lakeview St, San Francisco, CA 94016" -226868,Wired Headphones,1,11.99,07/13/19 10:32,"234 Lakeview St, San Francisco, CA 94016" -226869,Apple Airpods Headphones,1,150,07/12/19 12:14,"198 Center St, San Francisco, CA 94016" -226870,USB-C Charging Cable,2,11.95,07/30/19 14:37,"602 Meadow St, Portland, OR 97035" -226871,Wired Headphones,1,11.99,07/18/19 08:36,"482 Dogwood St, Los Angeles, CA 90001" -226872,USB-C Charging Cable,1,11.95,07/07/19 00:06,"669 Center St, Atlanta, GA 30301" -226873,Macbook Pro Laptop,1,1700,07/31/19 11:53,"272 14th St, Los Angeles, CA 90001" -226874,ThinkPad Laptop,1,999.99,07/30/19 12:50,"195 6th St, Boston, MA 02215" -226875,Bose SoundSport Headphones,1,99.99,07/19/19 08:51,"934 Wilson St, Los Angeles, CA 90001" -226876,AAA Batteries (4-pack),2,2.99,07/31/19 13:45,"548 Sunset St, San Francisco, CA 94016" -226877,Lightning Charging Cable,2,14.95,07/15/19 23:19,"119 2nd St, Boston, MA 02215" -226878,27in 4K Gaming Monitor,1,389.99,07/30/19 19:17,"160 Spruce St, San Francisco, CA 94016" -226879,Apple Airpods Headphones,1,150,07/01/19 22:58,"75 Hickory St, Los Angeles, CA 90001" -226880,AA Batteries (4-pack),1,3.84,07/09/19 20:27,"71 1st St, Seattle, WA 98101" -226881,ThinkPad Laptop,1,999.99,07/12/19 19:39,"47 West St, Boston, MA 02215" -226882,Lightning Charging Cable,1,14.95,07/18/19 22:33,"617 Jackson St, New York City, NY 10001" -226883,Flatscreen TV,1,300,07/08/19 17:31,"628 Highland St, Dallas, TX 75001" -226884,Google Phone,1,600,07/21/19 07:18,"992 Jackson St, San Francisco, CA 94016" -226885,Bose SoundSport Headphones,1,99.99,07/06/19 16:26,"481 Spruce St, San Francisco, CA 94016" -226886,AA Batteries (4-pack),2,3.84,07/10/19 22:15,"891 Wilson St, New York City, NY 10001" -226887,AAA Batteries (4-pack),1,2.99,07/08/19 21:34,"750 7th St, Boston, MA 02215" -226888,Bose SoundSport Headphones,1,99.99,07/20/19 21:03,"492 Maple St, Los Angeles, CA 90001" -226889,USB-C Charging Cable,1,11.95,07/04/19 20:35,"378 Madison St, New York City, NY 10001" -226890,Macbook Pro Laptop,1,1700,07/19/19 16:34,"606 South St, San Francisco, CA 94016" -226891,LG Washing Machine,1,600.0,07/04/19 17:33,"145 Dogwood St, New York City, NY 10001" -226892,AA Batteries (4-pack),1,3.84,07/25/19 13:33,"275 2nd St, Austin, TX 73301" -226893,AA Batteries (4-pack),1,3.84,07/14/19 11:31,"815 6th St, San Francisco, CA 94016" -226894,27in FHD Monitor,1,149.99,07/05/19 08:34,"18 Spruce St, San Francisco, CA 94016" -226895,Bose SoundSport Headphones,1,99.99,07/05/19 23:46,"421 Elm St, Seattle, WA 98101" -226896,USB-C Charging Cable,1,11.95,07/29/19 21:24,"199 Main St, San Francisco, CA 94016" -226897,27in 4K Gaming Monitor,1,389.99,07/25/19 14:54,"641 Dogwood St, New York City, NY 10001" -226898,Lightning Charging Cable,3,14.95,07/06/19 14:22,"174 4th St, Dallas, TX 75001" -226899,Apple Airpods Headphones,1,150,07/06/19 01:03,"630 West St, Boston, MA 02215" -226900,USB-C Charging Cable,1,11.95,07/21/19 21:51,"967 11th St, San Francisco, CA 94016" -226901,iPhone,1,700,07/31/19 19:12,"284 Forest St, San Francisco, CA 94016" -226901,Lightning Charging Cable,1,14.95,07/31/19 19:12,"284 Forest St, San Francisco, CA 94016" -226901,Wired Headphones,1,11.99,07/31/19 19:12,"284 Forest St, San Francisco, CA 94016" -226902,AA Batteries (4-pack),4,3.84,07/31/19 13:22,"689 7th St, Portland, OR 97035" -,,,,, -226903,34in Ultrawide Monitor,1,379.99,07/21/19 09:44,"122 Maple St, New York City, NY 10001" -226904,AA Batteries (4-pack),1,3.84,07/24/19 12:34,"811 Elm St, Los Angeles, CA 90001" -226905,AAA Batteries (4-pack),2,2.99,07/19/19 12:15,"379 Cedar St, San Francisco, CA 94016" -226906,Google Phone,1,600,07/16/19 22:26,"869 Adams St, San Francisco, CA 94016" -226907,AA Batteries (4-pack),2,3.84,07/16/19 11:48,"207 1st St, Austin, TX 73301" -226908,Flatscreen TV,1,300,07/19/19 21:39,"965 Madison St, Boston, MA 02215" -226909,AAA Batteries (4-pack),1,2.99,07/26/19 13:25,"708 12th St, New York City, NY 10001" -226910,AAA Batteries (4-pack),2,2.99,07/15/19 10:11,"55 Cherry St, Los Angeles, CA 90001" -226911,AAA Batteries (4-pack),1,2.99,07/22/19 19:59,"102 10th St, San Francisco, CA 94016" -226912,Wired Headphones,1,11.99,07/28/19 16:05,"654 9th St, San Francisco, CA 94016" -226913,Wired Headphones,1,11.99,07/27/19 11:20,"502 12th St, Los Angeles, CA 90001" -226914,Wired Headphones,1,11.99,07/21/19 10:30,"768 13th St, Atlanta, GA 30301" -226915,34in Ultrawide Monitor,1,379.99,07/22/19 15:30,"98 South St, Portland, ME 04101" -226916,AAA Batteries (4-pack),1,2.99,07/01/19 15:59,"163 Main St, San Francisco, CA 94016" -226917,AAA Batteries (4-pack),2,2.99,07/10/19 18:35,"880 Cedar St, San Francisco, CA 94016" -226918,Lightning Charging Cable,1,14.95,07/21/19 19:06,"762 Meadow St, Seattle, WA 98101" -226919,Lightning Charging Cable,1,14.95,07/29/19 17:28,"888 12th St, Boston, MA 02215" -226920,Lightning Charging Cable,1,14.95,07/31/19 17:05,"47 2nd St, Dallas, TX 75001" -226921,USB-C Charging Cable,1,11.95,07/14/19 16:16,"404 North St, Atlanta, GA 30301" -226922,34in Ultrawide Monitor,1,379.99,07/05/19 13:11,"122 Jackson St, Los Angeles, CA 90001" -226923,AAA Batteries (4-pack),1,2.99,07/16/19 14:46,"376 Lakeview St, San Francisco, CA 94016" -226924,Flatscreen TV,1,300,07/28/19 15:04,"880 Adams St, Austin, TX 73301" -226925,AA Batteries (4-pack),1,3.84,07/19/19 10:32,"920 Church St, San Francisco, CA 94016" -226926,AA Batteries (4-pack),1,3.84,07/05/19 16:11,"48 River St, New York City, NY 10001" -226927,34in Ultrawide Monitor,1,379.99,07/13/19 11:45,"166 Pine St, Portland, OR 97035" -226928,Wired Headphones,1,11.99,07/23/19 11:03,"438 Meadow St, Dallas, TX 75001" -226929,AAA Batteries (4-pack),1,2.99,07/16/19 13:15,"203 Forest St, New York City, NY 10001" -226930,Wired Headphones,1,11.99,07/26/19 21:59,"105 Lake St, Los Angeles, CA 90001" -226931,27in FHD Monitor,1,149.99,07/15/19 18:11,"994 11th St, Los Angeles, CA 90001" -226932,Lightning Charging Cable,1,14.95,07/08/19 22:56,"596 Jefferson St, Los Angeles, CA 90001" -226933,Lightning Charging Cable,1,14.95,07/31/19 14:19,"40 Lakeview St, San Francisco, CA 94016" -226934,ThinkPad Laptop,1,999.99,07/18/19 13:43,"345 Washington St, San Francisco, CA 94016" -226935,Google Phone,1,600,07/07/19 17:09,"549 Jackson St, Los Angeles, CA 90001" -226935,USB-C Charging Cable,1,11.95,07/07/19 17:09,"549 Jackson St, Los Angeles, CA 90001" -226935,Wired Headphones,1,11.99,07/07/19 17:09,"549 Jackson St, Los Angeles, CA 90001" -226936,Bose SoundSport Headphones,1,99.99,07/26/19 21:03,"812 North St, San Francisco, CA 94016" -226937,AA Batteries (4-pack),1,3.84,07/03/19 10:59,"423 Elm St, Portland, ME 04101" -226938,USB-C Charging Cable,1,11.95,07/01/19 09:23,"89 6th St, Boston, MA 02215" -226939,Wired Headphones,1,11.99,07/24/19 00:38,"725 8th St, Boston, MA 02215" -226940,AAA Batteries (4-pack),1,2.99,07/07/19 10:05,"123 North St, Austin, TX 73301" -226941,AAA Batteries (4-pack),1,2.99,07/28/19 16:39,"135 Lakeview St, Atlanta, GA 30301" -226942,Wired Headphones,1,11.99,07/01/19 21:08,"830 Washington St, Los Angeles, CA 90001" -226943,USB-C Charging Cable,1,11.95,07/18/19 13:54,"556 Pine St, San Francisco, CA 94016" -226944,AA Batteries (4-pack),1,3.84,07/23/19 19:01,"359 2nd St, Los Angeles, CA 90001" -226945,AAA Batteries (4-pack),2,2.99,07/23/19 14:40,"278 River St, San Francisco, CA 94016" -226946,27in FHD Monitor,1,149.99,07/27/19 18:04,"571 Johnson St, San Francisco, CA 94016" -226947,AAA Batteries (4-pack),1,2.99,07/24/19 09:47,"433 Lake St, San Francisco, CA 94016" -226948,AA Batteries (4-pack),2,3.84,07/13/19 20:49,"972 North St, San Francisco, CA 94016" -226949,AAA Batteries (4-pack),2,2.99,07/13/19 19:48,"656 Spruce St, Atlanta, GA 30301" -226950,Wired Headphones,1,11.99,07/03/19 14:43,"651 South St, Atlanta, GA 30301" -226951,Google Phone,1,600,07/18/19 19:58,"556 West St, San Francisco, CA 94016" -226952,Wired Headphones,1,11.99,07/27/19 20:28,"404 Jackson St, Seattle, WA 98101" -226953,AAA Batteries (4-pack),1,2.99,07/05/19 21:04,"619 Pine St, San Francisco, CA 94016" -226954,Bose SoundSport Headphones,1,99.99,07/30/19 16:35,"224 Park St, San Francisco, CA 94016" -226955,AA Batteries (4-pack),1,3.84,07/07/19 22:28,"377 Lakeview St, San Francisco, CA 94016" -226956,Wired Headphones,1,11.99,07/18/19 10:55,"935 12th St, Los Angeles, CA 90001" -226957,AAA Batteries (4-pack),2,2.99,07/31/19 16:42,"548 Sunset St, Atlanta, GA 30301" -226958,USB-C Charging Cable,2,11.95,07/10/19 15:52,"547 Lake St, Seattle, WA 98101" -226959,27in FHD Monitor,1,149.99,07/16/19 21:07,"631 Dogwood St, Los Angeles, CA 90001" -226960,AAA Batteries (4-pack),1,2.99,07/30/19 10:49,"323 13th St, Boston, MA 02215" -226961,AA Batteries (4-pack),1,3.84,07/16/19 10:16,"37 Pine St, Boston, MA 02215" -226962,Wired Headphones,1,11.99,07/17/19 20:18,"589 12th St, Atlanta, GA 30301" -226963,USB-C Charging Cable,1,11.95,07/15/19 12:57,"387 Dogwood St, Portland, OR 97035" -226964,Bose SoundSport Headphones,1,99.99,07/24/19 07:27,"691 Main St, Austin, TX 73301" -226965,Lightning Charging Cable,1,14.95,07/09/19 10:35,"918 Washington St, Dallas, TX 75001" -226966,Lightning Charging Cable,1,14.95,07/06/19 11:05,"200 Hill St, New York City, NY 10001" -226967,Wired Headphones,1,11.99,07/06/19 15:55,"323 Elm St, Los Angeles, CA 90001" -226968,AAA Batteries (4-pack),1,2.99,07/25/19 20:04,"198 South St, Boston, MA 02215" -226969,AA Batteries (4-pack),1,3.84,07/16/19 22:35,"564 Maple St, Dallas, TX 75001" -226970,USB-C Charging Cable,1,11.95,07/27/19 20:10,"916 Elm St, Austin, TX 73301" -226971,Lightning Charging Cable,1,14.95,07/21/19 13:48,"833 Dogwood St, San Francisco, CA 94016" -226972,Apple Airpods Headphones,1,150,07/15/19 19:54,"839 7th St, San Francisco, CA 94016" -226973,20in Monitor,1,109.99,07/08/19 20:32,"43 Jefferson St, Seattle, WA 98101" -226974,AAA Batteries (4-pack),2,2.99,07/28/19 12:51,"438 Spruce St, San Francisco, CA 94016" -226975,AA Batteries (4-pack),1,3.84,07/17/19 12:13,"444 Center St, San Francisco, CA 94016" -226976,Flatscreen TV,1,300,07/05/19 15:35,"354 Lakeview St, San Francisco, CA 94016" -226977,AA Batteries (4-pack),1,3.84,07/31/19 22:29,"565 Johnson St, San Francisco, CA 94016" -226978,AA Batteries (4-pack),1,3.84,07/06/19 18:29,"122 South St, San Francisco, CA 94016" -226979,Lightning Charging Cable,1,14.95,07/06/19 11:58,"413 Elm St, Los Angeles, CA 90001" -226980,USB-C Charging Cable,2,11.95,07/09/19 17:10,"926 Main St, Dallas, TX 75001" -226981,AA Batteries (4-pack),1,3.84,07/03/19 17:30,"632 Johnson St, San Francisco, CA 94016" -226982,Google Phone,1,600,07/19/19 04:00,"696 Chestnut St, Boston, MA 02215" -226983,USB-C Charging Cable,1,11.95,07/25/19 20:54,"200 Madison St, San Francisco, CA 94016" -226984,Lightning Charging Cable,1,14.95,07/24/19 20:24,"868 Lincoln St, Atlanta, GA 30301" -226985,USB-C Charging Cable,2,11.95,07/09/19 08:51,"981 Lake St, Boston, MA 02215" -226986,27in 4K Gaming Monitor,1,389.99,07/27/19 21:30,"7 Cedar St, San Francisco, CA 94016" -226987,Wired Headphones,1,11.99,07/17/19 18:22,"502 Highland St, San Francisco, CA 94016" -226988,27in 4K Gaming Monitor,1,389.99,07/08/19 09:20,"439 10th St, Portland, OR 97035" -226989,Wired Headphones,1,11.99,07/16/19 19:43,"705 Jefferson St, Atlanta, GA 30301" -226990,Wired Headphones,1,11.99,07/02/19 17:05,"470 Elm St, San Francisco, CA 94016" -226991,34in Ultrawide Monitor,1,379.99,07/07/19 13:00,"700 8th St, Austin, TX 73301" -226992,Lightning Charging Cable,1,14.95,07/26/19 22:10,"174 14th St, Atlanta, GA 30301" -226993,USB-C Charging Cable,1,11.95,07/24/19 19:55,"405 Washington St, Boston, MA 02215" -226994,AAA Batteries (4-pack),1,2.99,07/05/19 12:27,"119 2nd St, San Francisco, CA 94016" -226995,ThinkPad Laptop,1,999.99,07/10/19 19:13,"819 Spruce St, Portland, ME 04101" -226996,Wired Headphones,1,11.99,07/01/19 11:14,"312 Sunset St, Austin, TX 73301" -226997,AAA Batteries (4-pack),1,2.99,07/19/19 09:56,"265 Cedar St, Austin, TX 73301" -226998,20in Monitor,1,109.99,07/31/19 12:36,"224 Maple St, Los Angeles, CA 90001" -226999,27in FHD Monitor,1,149.99,07/04/19 14:47,"778 Jefferson St, Boston, MA 02215" -227000,AA Batteries (4-pack),1,3.84,07/15/19 18:22,"118 Highland St, Boston, MA 02215" -227001,USB-C Charging Cable,1,11.95,07/30/19 08:35,"187 Cherry St, Seattle, WA 98101" -227002,AA Batteries (4-pack),1,3.84,07/02/19 15:54,"637 Madison St, San Francisco, CA 94016" -227003,Apple Airpods Headphones,1,150,07/15/19 17:22,"926 Lake St, San Francisco, CA 94016" -227004,Lightning Charging Cable,1,14.95,07/05/19 18:13,"924 Hill St, Los Angeles, CA 90001" -227005,USB-C Charging Cable,1,11.95,07/04/19 18:32,"374 11th St, New York City, NY 10001" -227006,AA Batteries (4-pack),1,3.84,07/18/19 19:35,"195 13th St, Los Angeles, CA 90001" -227007,USB-C Charging Cable,1,11.95,07/29/19 23:04,"193 Forest St, San Francisco, CA 94016" -227007,27in FHD Monitor,1,149.99,07/29/19 23:04,"193 Forest St, San Francisco, CA 94016" -227008,Lightning Charging Cable,2,14.95,07/21/19 10:58,"68 Spruce St, San Francisco, CA 94016" -227009,Bose SoundSport Headphones,1,99.99,07/05/19 18:03,"638 Lake St, Seattle, WA 98101" -227010,Flatscreen TV,1,300,07/11/19 14:22,"77 Lake St, Seattle, WA 98101" -227011,Bose SoundSport Headphones,1,99.99,07/29/19 10:07,"759 10th St, New York City, NY 10001" -227012,AAA Batteries (4-pack),1,2.99,07/09/19 16:43,"876 Jackson St, San Francisco, CA 94016" -227012,Lightning Charging Cable,1,14.95,07/09/19 16:43,"876 Jackson St, San Francisco, CA 94016" -227013,USB-C Charging Cable,1,11.95,07/02/19 15:22,"252 Pine St, New York City, NY 10001" -227014,Bose SoundSport Headphones,1,99.99,07/18/19 16:38,"827 Forest St, San Francisco, CA 94016" -227015,Bose SoundSport Headphones,1,99.99,07/17/19 18:48,"445 Lincoln St, Los Angeles, CA 90001" -227016,Apple Airpods Headphones,1,150,07/12/19 15:13,"577 2nd St, Seattle, WA 98101" -227017,AA Batteries (4-pack),1,3.84,07/03/19 16:27,"649 1st St, Portland, OR 97035" -227018,34in Ultrawide Monitor,1,379.99,07/29/19 22:18,"355 Cherry St, Dallas, TX 75001" -227019,AAA Batteries (4-pack),1,2.99,07/06/19 07:57,"722 Spruce St, San Francisco, CA 94016" -227020,AA Batteries (4-pack),1,3.84,07/08/19 11:24,"209 Adams St, Los Angeles, CA 90001" -227021,AA Batteries (4-pack),1,3.84,07/04/19 22:06,"357 Adams St, San Francisco, CA 94016" -227022,27in FHD Monitor,1,149.99,07/08/19 12:45,"489 Park St, Seattle, WA 98101" -227023,Lightning Charging Cable,1,14.95,07/05/19 08:30,"332 Cherry St, San Francisco, CA 94016" -227024,AAA Batteries (4-pack),1,2.99,07/16/19 18:38,"568 Madison St, New York City, NY 10001" -227025,Google Phone,1,600,07/03/19 11:34,"76 Wilson St, Los Angeles, CA 90001" -227026,Macbook Pro Laptop,1,1700,07/04/19 00:26,"801 12th St, Atlanta, GA 30301" -227027,Bose SoundSport Headphones,1,99.99,07/31/19 15:11,"826 Walnut St, New York City, NY 10001" -227028,USB-C Charging Cable,1,11.95,07/06/19 15:52,"577 5th St, Boston, MA 02215" -227029,USB-C Charging Cable,1,11.95,07/31/19 15:49,"299 Johnson St, Boston, MA 02215" -227030,Bose SoundSport Headphones,1,99.99,07/29/19 08:43,"720 Jackson St, Portland, ME 04101" -227031,AAA Batteries (4-pack),1,2.99,07/03/19 08:13,"185 5th St, New York City, NY 10001" -227032,Wired Headphones,1,11.99,07/25/19 20:27,"414 River St, Los Angeles, CA 90001" -227033,Apple Airpods Headphones,1,150,07/27/19 07:37,"520 Highland St, Portland, OR 97035" -227034,ThinkPad Laptop,1,999.99,07/31/19 18:26,"911 Spruce St, Los Angeles, CA 90001" -227035,USB-C Charging Cable,1,11.95,07/16/19 13:38,"719 Ridge St, Los Angeles, CA 90001" -227036,Lightning Charging Cable,1,14.95,07/02/19 20:02,"422 Elm St, Seattle, WA 98101" -227037,USB-C Charging Cable,1,11.95,07/25/19 20:04,"97 West St, Seattle, WA 98101" -227038,Lightning Charging Cable,1,14.95,07/18/19 15:04,"558 Jackson St, San Francisco, CA 94016" -227039,Apple Airpods Headphones,1,150,07/13/19 13:12,"17 Park St, Portland, OR 97035" -227040,Bose SoundSport Headphones,1,99.99,07/06/19 10:03,"563 Spruce St, Los Angeles, CA 90001" -227041,Lightning Charging Cable,1,14.95,07/08/19 13:46,"721 8th St, Seattle, WA 98101" -227042,27in FHD Monitor,1,149.99,07/13/19 09:01,"881 Highland St, Los Angeles, CA 90001" -227043,USB-C Charging Cable,1,11.95,07/14/19 12:45,"913 River St, Seattle, WA 98101" -227044,Lightning Charging Cable,1,14.95,07/28/19 11:23,"147 7th St, Boston, MA 02215" -227045,USB-C Charging Cable,1,11.95,07/15/19 11:51,"986 Maple St, Seattle, WA 98101" -227046,Flatscreen TV,1,300,07/13/19 12:34,"427 Highland St, Boston, MA 02215" -227047,ThinkPad Laptop,1,999.99,07/16/19 11:25,"414 Adams St, Los Angeles, CA 90001" -227048,34in Ultrawide Monitor,1,379.99,07/25/19 13:44,"575 Jefferson St, Dallas, TX 75001" -227049,iPhone,1,700,07/07/19 22:26,"203 13th St, Portland, OR 97035" -227050,Apple Airpods Headphones,1,150,07/06/19 15:00,"814 Cherry St, Los Angeles, CA 90001" -227051,iPhone,1,700,07/03/19 17:59,"250 Lincoln St, Boston, MA 02215" -227052,AAA Batteries (4-pack),1,2.99,07/01/19 08:42,"114 Jackson St, Los Angeles, CA 90001" -227053,Wired Headphones,1,11.99,07/06/19 23:07,"918 12th St, San Francisco, CA 94016" -227054,AA Batteries (4-pack),2,3.84,07/04/19 10:13,"994 6th St, Los Angeles, CA 90001" -227055,USB-C Charging Cable,1,11.95,07/12/19 19:42,"501 North St, Boston, MA 02215" -227056,AAA Batteries (4-pack),1,2.99,07/18/19 14:23,"272 North St, San Francisco, CA 94016" -227057,Lightning Charging Cable,1,14.95,07/23/19 01:12,"990 Park St, Atlanta, GA 30301" -227058,27in FHD Monitor,1,149.99,07/03/19 16:04,"878 West St, Austin, TX 73301" -227059,Apple Airpods Headphones,1,150,07/14/19 17:15,"948 Adams St, Seattle, WA 98101" -227060,AA Batteries (4-pack),1,3.84,07/28/19 18:44,"948 Sunset St, Portland, OR 97035" -227061,27in FHD Monitor,1,149.99,07/24/19 14:37,"548 Chestnut St, Portland, OR 97035" -227062,AA Batteries (4-pack),1,3.84,07/02/19 15:37,"627 Lakeview St, Seattle, WA 98101" -227063,AA Batteries (4-pack),2,3.84,07/28/19 19:30,"13 Hill St, Portland, ME 04101" -227064,iPhone,1,700,07/03/19 11:55,"510 8th St, Los Angeles, CA 90001" -227065,Bose SoundSport Headphones,1,99.99,07/25/19 23:58,"418 River St, San Francisco, CA 94016" -227066,AA Batteries (4-pack),1,3.84,07/08/19 22:53,"432 Cherry St, Los Angeles, CA 90001" -227067,27in 4K Gaming Monitor,1,389.99,07/30/19 10:08,"411 River St, Boston, MA 02215" -227068,Apple Airpods Headphones,1,150,07/19/19 22:20,"725 Forest St, Atlanta, GA 30301" -227069,Lightning Charging Cable,1,14.95,07/26/19 07:55,"462 Park St, Boston, MA 02215" -227070,Macbook Pro Laptop,1,1700,07/17/19 19:41,"803 Jefferson St, Los Angeles, CA 90001" -227071,Lightning Charging Cable,1,14.95,07/07/19 14:42,"943 Forest St, New York City, NY 10001" -227072,AAA Batteries (4-pack),2,2.99,07/27/19 14:10,"319 Elm St, San Francisco, CA 94016" -227073,Wired Headphones,1,11.99,07/20/19 16:24,"247 Forest St, Dallas, TX 75001" -227074,Bose SoundSport Headphones,1,99.99,07/08/19 15:19,"735 Jackson St, New York City, NY 10001" -227075,Flatscreen TV,1,300,07/09/19 16:40,"386 4th St, Austin, TX 73301" -227076,20in Monitor,1,109.99,07/09/19 09:27,"67 Wilson St, San Francisco, CA 94016" -227077,Google Phone,1,600,07/31/19 20:27,"218 Chestnut St, Seattle, WA 98101" -227078,27in 4K Gaming Monitor,1,389.99,07/15/19 07:54,"158 Wilson St, San Francisco, CA 94016" -227079,Lightning Charging Cable,1,14.95,07/04/19 11:40,"265 Adams St, Atlanta, GA 30301" -227080,AA Batteries (4-pack),1,3.84,07/31/19 12:27,"942 Sunset St, Boston, MA 02215" -227081,Bose SoundSport Headphones,1,99.99,07/09/19 16:17,"955 7th St, San Francisco, CA 94016" -227082,27in FHD Monitor,1,149.99,07/15/19 10:09,"60 13th St, New York City, NY 10001" -227083,34in Ultrawide Monitor,1,379.99,07/16/19 16:36,"685 8th St, Atlanta, GA 30301" -227084,Lightning Charging Cable,1,14.95,07/08/19 12:08,"822 Wilson St, Los Angeles, CA 90001" -227085,Vareebadd Phone,1,400,07/21/19 18:29,"401 Wilson St, Austin, TX 73301" -227086,AA Batteries (4-pack),1,3.84,07/19/19 21:41,"180 Hickory St, San Francisco, CA 94016" -227087,Lightning Charging Cable,1,14.95,07/17/19 13:25,"393 Church St, Portland, OR 97035" -227088,Apple Airpods Headphones,1,150,07/05/19 18:19,"483 Willow St, Boston, MA 02215" -227089,27in 4K Gaming Monitor,1,389.99,07/16/19 13:05,"166 12th St, San Francisco, CA 94016" -227090,27in FHD Monitor,1,149.99,07/24/19 12:09,"541 Wilson St, Dallas, TX 75001" -227091,AAA Batteries (4-pack),3,2.99,07/26/19 14:47,"238 6th St, Seattle, WA 98101" -227092,Wired Headphones,1,11.99,07/28/19 21:23,"749 12th St, New York City, NY 10001" -227093,27in 4K Gaming Monitor,1,389.99,07/28/19 09:50,"201 Pine St, San Francisco, CA 94016" -227093,Macbook Pro Laptop,1,1700,07/28/19 09:50,"201 Pine St, San Francisco, CA 94016" -227094,AA Batteries (4-pack),2,3.84,07/01/19 20:42,"810 Adams St, Austin, TX 73301" -227095,Wired Headphones,1,11.99,07/30/19 12:17,"364 Washington St, San Francisco, CA 94016" -227096,AAA Batteries (4-pack),9,2.99,07/29/19 09:50,"60 10th St, San Francisco, CA 94016" -227097,Bose SoundSport Headphones,1,99.99,07/28/19 16:44,"962 14th St, San Francisco, CA 94016" -227098,AA Batteries (4-pack),2,3.84,07/13/19 18:16,"601 Lake St, San Francisco, CA 94016" -227099,AA Batteries (4-pack),2,3.84,07/03/19 11:08,"315 Madison St, Seattle, WA 98101" -227100,34in Ultrawide Monitor,1,379.99,07/15/19 18:24,"583 Center St, Boston, MA 02215" -227101,Macbook Pro Laptop,1,1700,07/13/19 10:40,"165 Ridge St, New York City, NY 10001" -227102,27in FHD Monitor,1,149.99,07/19/19 22:40,"715 5th St, San Francisco, CA 94016" -227103,Lightning Charging Cable,1,14.95,07/01/19 22:04,"232 13th St, New York City, NY 10001" -227104,USB-C Charging Cable,1,11.95,07/07/19 15:47,"103 Church St, San Francisco, CA 94016" -227105,34in Ultrawide Monitor,1,379.99,07/09/19 01:22,"646 Wilson St, Portland, ME 04101" -227106,USB-C Charging Cable,1,11.95,07/25/19 07:05,"279 Johnson St, Atlanta, GA 30301" -227107,Lightning Charging Cable,1,14.95,07/20/19 17:43,"745 2nd St, Los Angeles, CA 90001" -227107,Apple Airpods Headphones,1,150,07/20/19 17:43,"745 2nd St, Los Angeles, CA 90001" -227108,Lightning Charging Cable,1,14.95,07/16/19 23:03,"585 Highland St, Boston, MA 02215" -227109,AA Batteries (4-pack),1,3.84,07/04/19 00:22,"278 2nd St, San Francisco, CA 94016" -227110,Flatscreen TV,1,300,07/05/19 14:20,"433 Sunset St, Seattle, WA 98101" -227111,AAA Batteries (4-pack),1,2.99,07/14/19 17:35,"816 Pine St, Boston, MA 02215" -227112,Wired Headphones,1,11.99,07/25/19 20:42,"70 Washington St, Dallas, TX 75001" -227113,Apple Airpods Headphones,1,150,07/18/19 11:58,"564 Highland St, San Francisco, CA 94016" -227114,27in FHD Monitor,1,149.99,07/02/19 11:43,"281 Chestnut St, San Francisco, CA 94016" -227115,USB-C Charging Cable,1,11.95,08/01/19 00:20,"501 Jefferson St, San Francisco, CA 94016" -227116,USB-C Charging Cable,2,11.95,07/15/19 19:40,"903 4th St, Atlanta, GA 30301" -227117,Apple Airpods Headphones,1,150,07/23/19 11:24,"468 Madison St, Los Angeles, CA 90001" -227118,27in 4K Gaming Monitor,1,389.99,07/26/19 14:27,"581 8th St, Boston, MA 02215" -227119,AAA Batteries (4-pack),1,2.99,07/01/19 12:51,"54 Johnson St, Austin, TX 73301" -227120,AAA Batteries (4-pack),4,2.99,07/02/19 16:03,"230 Forest St, Los Angeles, CA 90001" -227121,Google Phone,1,600,07/31/19 20:39,"87 10th St, Seattle, WA 98101" -227122,iPhone,1,700,07/08/19 20:04,"157 Highland St, New York City, NY 10001" -227123,Apple Airpods Headphones,1,150,07/08/19 22:25,"832 Meadow St, San Francisco, CA 94016" -227124,Bose SoundSport Headphones,1,99.99,07/09/19 19:20,"857 Main St, Dallas, TX 75001" -227125,USB-C Charging Cable,1,11.95,07/18/19 22:54,"27 Meadow St, Dallas, TX 75001" -227126,20in Monitor,1,109.99,07/01/19 16:45,"799 4th St, New York City, NY 10001" -227127,20in Monitor,1,109.99,07/09/19 11:27,"367 6th St, San Francisco, CA 94016" -227128,27in FHD Monitor,1,149.99,07/18/19 01:22,"152 Main St, San Francisco, CA 94016" -227128,27in FHD Monitor,1,149.99,07/18/19 01:22,"152 Main St, San Francisco, CA 94016" -227129,iPhone,1,700,07/04/19 07:50,"450 Madison St, New York City, NY 10001" -227130,Google Phone,1,600,07/08/19 22:08,"938 11th St, San Francisco, CA 94016" -227131,Lightning Charging Cable,2,14.95,07/25/19 20:04,"342 Main St, Portland, OR 97035" -227132,20in Monitor,1,109.99,07/10/19 16:44,"966 12th St, San Francisco, CA 94016" -227133,Bose SoundSport Headphones,1,99.99,07/11/19 17:02,"80 South St, Austin, TX 73301" -227134,LG Dryer,1,600.0,07/15/19 16:05,"856 Johnson St, Los Angeles, CA 90001" -227135,Lightning Charging Cable,1,14.95,07/24/19 07:32,"738 Elm St, Los Angeles, CA 90001" -227136,ThinkPad Laptop,1,999.99,07/06/19 14:39,"424 West St, Los Angeles, CA 90001" -227137,USB-C Charging Cable,2,11.95,07/11/19 19:31,"784 Center St, Austin, TX 73301" -227138,Lightning Charging Cable,1,14.95,07/20/19 20:14,"190 Elm St, Portland, ME 04101" -227139,AA Batteries (4-pack),1,3.84,07/23/19 22:01,"597 Lake St, Los Angeles, CA 90001" -227140,LG Washing Machine,1,600.0,07/06/19 15:12,"389 8th St, San Francisco, CA 94016" -227141,Lightning Charging Cable,1,14.95,07/15/19 18:32,"943 Center St, Portland, OR 97035" -227142,Bose SoundSport Headphones,1,99.99,07/20/19 17:09,"893 Madison St, Atlanta, GA 30301" -227143,Apple Airpods Headphones,1,150,07/31/19 14:18,"252 Madison St, Seattle, WA 98101" -227144,AA Batteries (4-pack),1,3.84,07/15/19 09:49,"206 4th St, Portland, OR 97035" -227145,Lightning Charging Cable,1,14.95,07/31/19 10:49,"65 10th St, Portland, ME 04101" -227146,AA Batteries (4-pack),2,3.84,07/01/19 12:04,"350 South St, New York City, NY 10001" -227147,Google Phone,1,600,07/03/19 13:09,"313 8th St, San Francisco, CA 94016" -227148,Macbook Pro Laptop,1,1700,07/01/19 08:11,"161 Ridge St, Boston, MA 02215" -227149,Macbook Pro Laptop,1,1700,07/21/19 10:38,"261 Dogwood St, Seattle, WA 98101" -227150,AA Batteries (4-pack),1,3.84,07/11/19 13:52,"642 Highland St, Los Angeles, CA 90001" -227151,20in Monitor,2,109.99,07/10/19 07:53,"885 Washington St, Dallas, TX 75001" -227152,AAA Batteries (4-pack),1,2.99,07/03/19 10:49,"338 Walnut St, Los Angeles, CA 90001" -227153,ThinkPad Laptop,1,999.99,07/31/19 17:16,"660 Lakeview St, Los Angeles, CA 90001" -227154,27in FHD Monitor,1,149.99,07/04/19 11:39,"403 9th St, San Francisco, CA 94016" -227155,Apple Airpods Headphones,1,150,07/20/19 07:22,"718 13th St, Atlanta, GA 30301" -227156,Lightning Charging Cable,1,14.95,07/02/19 15:13,"324 Church St, Los Angeles, CA 90001" -227157,USB-C Charging Cable,1,11.95,07/10/19 19:29,"781 Cedar St, San Francisco, CA 94016" -227158,iPhone,1,700,07/11/19 22:20,"261 Spruce St, San Francisco, CA 94016" -227158,Apple Airpods Headphones,1,150,07/11/19 22:20,"261 Spruce St, San Francisco, CA 94016" -227159,USB-C Charging Cable,1,11.95,07/11/19 16:59,"22 Elm St, Dallas, TX 75001" -227160,Wired Headphones,1,11.99,07/21/19 19:54,"186 Church St, Boston, MA 02215" -227161,AA Batteries (4-pack),1,3.84,07/29/19 09:19,"133 Washington St, New York City, NY 10001" -227162,Lightning Charging Cable,1,14.95,07/21/19 15:25,"512 11th St, Boston, MA 02215" -227163,Lightning Charging Cable,1,14.95,07/12/19 09:16,"818 12th St, New York City, NY 10001" -227164,iPhone,1,700,07/02/19 11:51,"646 Main St, New York City, NY 10001" -227165,Apple Airpods Headphones,1,150,07/30/19 18:25,"829 Adams St, Portland, OR 97035" -227166,Wired Headphones,1,11.99,07/17/19 11:30,"990 Forest St, San Francisco, CA 94016" -227167,USB-C Charging Cable,1,11.95,07/17/19 02:34,"99 13th St, Los Angeles, CA 90001" -227168,Bose SoundSport Headphones,1,99.99,07/18/19 08:45,"100 Pine St, Portland, OR 97035" -227169,AA Batteries (4-pack),2,3.84,07/19/19 09:08,"939 Washington St, Atlanta, GA 30301" -227170,Bose SoundSport Headphones,1,99.99,07/29/19 12:35,"385 4th St, San Francisco, CA 94016" -227171,Flatscreen TV,1,300,07/25/19 03:49,"660 Meadow St, Los Angeles, CA 90001" -227172,Lightning Charging Cable,1,14.95,07/04/19 22:34,"864 Wilson St, Boston, MA 02215" -227173,Flatscreen TV,1,300,07/26/19 09:22,"289 13th St, Los Angeles, CA 90001" -227174,Google Phone,1,600,07/12/19 18:30,"145 8th St, San Francisco, CA 94016" -227175,iPhone,1,700,07/22/19 14:46,"382 River St, Dallas, TX 75001" -227176,34in Ultrawide Monitor,1,379.99,07/28/19 18:12,"751 14th St, San Francisco, CA 94016" -227177,20in Monitor,1,109.99,07/21/19 14:35,"920 Cherry St, New York City, NY 10001" -227178,Lightning Charging Cable,1,14.95,07/28/19 19:13,"612 Highland St, Seattle, WA 98101" -227178,Wired Headphones,1,11.99,07/28/19 19:13,"612 Highland St, Seattle, WA 98101" -227179,Lightning Charging Cable,1,14.95,07/09/19 15:21,"184 Johnson St, Portland, OR 97035" -227180,Wired Headphones,2,11.99,07/22/19 10:36,"407 River St, New York City, NY 10001" -227181,Macbook Pro Laptop,1,1700,07/01/19 15:40,"354 River St, Los Angeles, CA 90001" -227182,20in Monitor,1,109.99,07/07/19 17:42,"904 Lake St, New York City, NY 10001" -227183,Apple Airpods Headphones,1,150,07/15/19 09:54,"927 Main St, San Francisco, CA 94016" -227184,27in 4K Gaming Monitor,1,389.99,07/24/19 01:09,"103 Highland St, San Francisco, CA 94016" -227185,AA Batteries (4-pack),2,3.84,07/09/19 14:36,"732 Lakeview St, Dallas, TX 75001" -227186,USB-C Charging Cable,1,11.95,07/08/19 16:28,"733 7th St, Seattle, WA 98101" -227187,34in Ultrawide Monitor,1,379.99,07/14/19 11:03,"174 Johnson St, Dallas, TX 75001" -227188,AA Batteries (4-pack),1,3.84,07/26/19 13:53,"32 9th St, San Francisco, CA 94016" -227189,ThinkPad Laptop,1,999.99,07/24/19 20:23,"30 Park St, New York City, NY 10001" -227190,27in 4K Gaming Monitor,1,389.99,07/09/19 13:31,"546 Forest St, Dallas, TX 75001" -227191,Wired Headphones,1,11.99,07/14/19 05:59,"500 12th St, New York City, NY 10001" -227192,iPhone,1,700,07/12/19 16:32,"124 Adams St, Atlanta, GA 30301" -227192,Lightning Charging Cable,1,14.95,07/12/19 16:32,"124 Adams St, Atlanta, GA 30301" -227193,AAA Batteries (4-pack),1,2.99,07/30/19 19:03,"271 Cedar St, Dallas, TX 75001" -227194,AA Batteries (4-pack),2,3.84,07/17/19 14:18,"512 5th St, Atlanta, GA 30301" -227195,Bose SoundSport Headphones,1,99.99,07/28/19 22:22,"374 Highland St, Los Angeles, CA 90001" -227196,Macbook Pro Laptop,1,1700,07/06/19 19:12,"322 Forest St, Dallas, TX 75001" -227197,27in FHD Monitor,1,149.99,07/13/19 00:50,"848 10th St, Los Angeles, CA 90001" -227198,Wired Headphones,1,11.99,07/20/19 15:10,"113 Adams St, Portland, OR 97035" -227199,AA Batteries (4-pack),1,3.84,07/31/19 20:01,"894 1st St, Austin, TX 73301" -227200,Bose SoundSport Headphones,1,99.99,07/26/19 21:42,"211 South St, Portland, OR 97035" -227201,USB-C Charging Cable,1,11.95,07/06/19 09:19,"150 South St, New York City, NY 10001" -227202,Bose SoundSport Headphones,1,99.99,07/03/19 19:22,"868 Spruce St, San Francisco, CA 94016" -227203,Bose SoundSport Headphones,1,99.99,07/21/19 10:42,"276 9th St, San Francisco, CA 94016" -227204,Wired Headphones,1,11.99,07/21/19 13:17,"311 Highland St, Los Angeles, CA 90001" -227205,Lightning Charging Cable,1,14.95,07/12/19 19:38,"377 Dogwood St, Austin, TX 73301" -227206,USB-C Charging Cable,2,11.95,07/18/19 23:40,"265 11th St, Portland, OR 97035" -227207,Wired Headphones,1,11.99,07/08/19 12:03,"555 Elm St, Portland, OR 97035" -227208,Wired Headphones,1,11.99,07/20/19 12:43,"816 9th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -227209,Bose SoundSport Headphones,1,99.99,07/25/19 11:18,"284 Lake St, Los Angeles, CA 90001" -227210,LG Washing Machine,1,600.0,07/22/19 18:57,"420 Adams St, New York City, NY 10001" -227211,AAA Batteries (4-pack),1,2.99,07/12/19 11:39,"752 Cedar St, Austin, TX 73301" -227212,AAA Batteries (4-pack),1,2.99,07/28/19 22:56,"780 Walnut St, Los Angeles, CA 90001" -227213,Macbook Pro Laptop,1,1700,07/01/19 09:37,"633 Willow St, San Francisco, CA 94016" -227214,iPhone,1,700,07/21/19 12:28,"92 Elm St, New York City, NY 10001" -227215,Lightning Charging Cable,1,14.95,07/01/19 23:40,"541 Ridge St, Austin, TX 73301" -227216,AAA Batteries (4-pack),1,2.99,07/07/19 19:41,"114 4th St, Seattle, WA 98101" -227217,AAA Batteries (4-pack),1,2.99,07/04/19 20:42,"664 Elm St, Dallas, TX 75001" -227218,AA Batteries (4-pack),2,3.84,07/29/19 13:25,"864 North St, San Francisco, CA 94016" -227219,Bose SoundSport Headphones,1,99.99,07/11/19 10:02,"36 5th St, Los Angeles, CA 90001" -227220,Bose SoundSport Headphones,1,99.99,07/28/19 20:24,"317 Meadow St, Los Angeles, CA 90001" -227221,Apple Airpods Headphones,1,150,07/14/19 20:53,"479 Johnson St, Los Angeles, CA 90001" -227222,AA Batteries (4-pack),1,3.84,07/10/19 13:08,"45 Ridge St, Boston, MA 02215" -227223,Apple Airpods Headphones,1,150,07/06/19 12:03,"390 Pine St, Portland, OR 97035" -227224,AA Batteries (4-pack),1,3.84,07/06/19 16:58,"912 Sunset St, San Francisco, CA 94016" -227225,Google Phone,1,600,07/24/19 10:06,"23 Sunset St, San Francisco, CA 94016" -227226,Wired Headphones,1,11.99,07/25/19 21:16,"338 Lake St, New York City, NY 10001" -227227,AA Batteries (4-pack),1,3.84,07/21/19 14:29,"906 Willow St, Dallas, TX 75001" -227228,Apple Airpods Headphones,1,150,07/10/19 11:23,"511 9th St, Portland, OR 97035" -227229,iPhone,1,700,07/10/19 18:47,"219 7th St, Austin, TX 73301" -227229,Wired Headphones,1,11.99,07/10/19 18:47,"219 7th St, Austin, TX 73301" -227230,AA Batteries (4-pack),1,3.84,07/08/19 19:48,"365 6th St, Atlanta, GA 30301" -227231,USB-C Charging Cable,1,11.95,07/04/19 18:05,"332 11th St, San Francisco, CA 94016" -227232,AAA Batteries (4-pack),2,2.99,07/14/19 22:58,"589 Pine St, Los Angeles, CA 90001" -227233,USB-C Charging Cable,1,11.95,07/04/19 03:04,"510 Hill St, New York City, NY 10001" -227234,Apple Airpods Headphones,1,150,07/15/19 20:53,"34 Cherry St, Los Angeles, CA 90001" -227235,AA Batteries (4-pack),1,3.84,07/10/19 16:18,"28 Lincoln St, San Francisco, CA 94016" -227236,20in Monitor,1,109.99,07/09/19 05:56,"869 1st St, Seattle, WA 98101" -227237,20in Monitor,1,109.99,07/05/19 15:38,"320 1st St, San Francisco, CA 94016" -227238,Lightning Charging Cable,1,14.95,07/26/19 15:43,"541 West St, Dallas, TX 75001" -227239,AAA Batteries (4-pack),2,2.99,07/13/19 15:12,"709 Wilson St, Dallas, TX 75001" -227240,Google Phone,1,600,07/08/19 12:37,"166 2nd St, Portland, ME 04101" -227241,AAA Batteries (4-pack),1,2.99,07/27/19 12:33,"26 Spruce St, Los Angeles, CA 90001" -227242,Apple Airpods Headphones,1,150,07/12/19 14:29,"84 Forest St, San Francisco, CA 94016" -227243,AAA Batteries (4-pack),1,2.99,07/22/19 14:18,"966 Park St, Dallas, TX 75001" -227244,AA Batteries (4-pack),1,3.84,07/07/19 21:44,"499 Chestnut St, San Francisco, CA 94016" -227245,Wired Headphones,1,11.99,07/15/19 04:14,"511 Madison St, Boston, MA 02215" -227246,Lightning Charging Cable,1,14.95,07/08/19 13:27,"964 Forest St, San Francisco, CA 94016" -227247,27in 4K Gaming Monitor,1,389.99,07/26/19 11:52,"548 Hickory St, Austin, TX 73301" -227248,Apple Airpods Headphones,1,150,07/28/19 17:37,"178 Lakeview St, Austin, TX 73301" -227249,Macbook Pro Laptop,1,1700,07/20/19 15:25,"669 9th St, Seattle, WA 98101" -227250,Bose SoundSport Headphones,1,99.99,07/17/19 09:10,"794 Chestnut St, Los Angeles, CA 90001" -227251,ThinkPad Laptop,1,999.99,07/15/19 13:03,"604 Washington St, Portland, OR 97035" -227252,Lightning Charging Cable,1,14.95,07/26/19 10:44,"703 Maple St, Dallas, TX 75001" -227253,AA Batteries (4-pack),1,3.84,07/01/19 20:52,"286 Lakeview St, Boston, MA 02215" -227254,ThinkPad Laptop,1,999.99,07/06/19 21:17,"975 13th St, Seattle, WA 98101" -227255,AAA Batteries (4-pack),1,2.99,07/30/19 18:07,"868 Madison St, New York City, NY 10001" -227256,Wired Headphones,1,11.99,07/31/19 11:44,"172 Hill St, Seattle, WA 98101" -227257,AA Batteries (4-pack),1,3.84,07/31/19 13:27,"126 4th St, New York City, NY 10001" -227258,Bose SoundSport Headphones,1,99.99,07/18/19 04:34,"178 River St, San Francisco, CA 94016" -227259,AA Batteries (4-pack),1,3.84,07/14/19 23:51,"733 Jefferson St, New York City, NY 10001" -227260,Apple Airpods Headphones,1,150,07/09/19 15:20,"807 Pine St, Los Angeles, CA 90001" -227261,Wired Headphones,1,11.99,07/11/19 17:55,"476 Center St, Austin, TX 73301" -227262,Apple Airpods Headphones,1,150,07/07/19 09:36,"261 Park St, Boston, MA 02215" -227263,USB-C Charging Cable,1,11.95,07/27/19 14:09,"46 Lakeview St, Dallas, TX 75001" -227264,34in Ultrawide Monitor,1,379.99,07/19/19 19:34,"22 Adams St, San Francisco, CA 94016" -227265,AAA Batteries (4-pack),3,2.99,07/30/19 07:18,"277 Cedar St, Boston, MA 02215" -227266,iPhone,1,700,07/11/19 19:41,"53 Meadow St, San Francisco, CA 94016" -227267,iPhone,1,700,07/20/19 17:26,"653 8th St, Los Angeles, CA 90001" -227268,27in FHD Monitor,1,149.99,07/10/19 11:56,"9 Maple St, Boston, MA 02215" -227269,AA Batteries (4-pack),2,3.84,07/01/19 11:23,"682 Cedar St, Portland, OR 97035" -227270,Wired Headphones,1,11.99,07/25/19 12:00,"509 Main St, Atlanta, GA 30301" -227271,USB-C Charging Cable,1,11.95,07/20/19 23:36,"763 Lake St, Los Angeles, CA 90001" -227272,Wired Headphones,1,11.99,07/04/19 17:35,"347 Park St, San Francisco, CA 94016" -227273,20in Monitor,1,109.99,07/30/19 18:21,"437 Center St, Dallas, TX 75001" -227274,AAA Batteries (4-pack),1,2.99,07/16/19 08:28,"79 Highland St, Seattle, WA 98101" -227275,Flatscreen TV,1,300,07/09/19 20:51,"305 Jackson St, Boston, MA 02215" -227276,27in 4K Gaming Monitor,1,389.99,07/05/19 22:23,"406 Elm St, New York City, NY 10001" -227277,Apple Airpods Headphones,1,150,07/25/19 12:36,"150 11th St, Portland, OR 97035" -227278,Lightning Charging Cable,1,14.95,07/15/19 15:00,"48 Pine St, Austin, TX 73301" -227279,AA Batteries (4-pack),1,3.84,07/11/19 10:00,"818 8th St, San Francisco, CA 94016" -227280,AA Batteries (4-pack),1,3.84,07/04/19 11:59,"662 West St, Los Angeles, CA 90001" -227281,Google Phone,1,600,07/30/19 14:39,"409 Madison St, Austin, TX 73301" -227282,27in FHD Monitor,1,149.99,07/28/19 09:38,"846 Pine St, Austin, TX 73301" -227283,Apple Airpods Headphones,1,150,07/01/19 14:52,"161 Dogwood St, Dallas, TX 75001" -227284,Google Phone,1,600,07/03/19 22:21,"618 12th St, San Francisco, CA 94016" -227285,USB-C Charging Cable,1,11.95,07/21/19 07:26,"126 Forest St, San Francisco, CA 94016" -227286,Apple Airpods Headphones,1,150,07/27/19 23:00,"253 Church St, Los Angeles, CA 90001" -227287,Lightning Charging Cable,1,14.95,07/31/19 12:14,"550 Maple St, Seattle, WA 98101" -227288,AAA Batteries (4-pack),1,2.99,07/19/19 21:39,"642 Hickory St, San Francisco, CA 94016" -227289,AAA Batteries (4-pack),1,2.99,07/21/19 15:57,"263 Hill St, San Francisco, CA 94016" -227290,27in FHD Monitor,1,149.99,07/07/19 11:26,"764 South St, San Francisco, CA 94016" -227291,iPhone,1,700,07/28/19 16:40,"979 8th St, Seattle, WA 98101" -227292,Google Phone,1,600,07/19/19 15:18,"933 5th St, Portland, OR 97035" -227292,Wired Headphones,1,11.99,07/19/19 15:18,"933 5th St, Portland, OR 97035" -227293,Google Phone,1,600,07/10/19 19:50,"152 5th St, San Francisco, CA 94016" -227294,Google Phone,1,600,07/28/19 18:18,"110 1st St, Austin, TX 73301" -227295,Macbook Pro Laptop,1,1700,07/28/19 15:34,"64 Lincoln St, Dallas, TX 75001" -227296,27in 4K Gaming Monitor,1,389.99,07/16/19 11:25,"866 Lake St, New York City, NY 10001" -227297,AA Batteries (4-pack),1,3.84,07/08/19 00:56,"914 9th St, San Francisco, CA 94016" -227298,Bose SoundSport Headphones,1,99.99,07/07/19 13:46,"511 Chestnut St, Dallas, TX 75001" -227299,Bose SoundSport Headphones,1,99.99,07/16/19 15:43,"894 Cherry St, Los Angeles, CA 90001" -227300,USB-C Charging Cable,1,11.95,07/06/19 12:41,"377 Center St, Austin, TX 73301" -227301,Bose SoundSport Headphones,1,99.99,07/06/19 21:34,"262 Pine St, Dallas, TX 75001" -227302,27in FHD Monitor,1,149.99,07/31/19 14:33,"969 Highland St, New York City, NY 10001" -227303,27in 4K Gaming Monitor,1,389.99,07/28/19 14:22,"430 Walnut St, Atlanta, GA 30301" -227304,Wired Headphones,1,11.99,07/17/19 12:01,"946 Center St, New York City, NY 10001" -227305,Macbook Pro Laptop,1,1700,07/27/19 20:24,"579 Highland St, Austin, TX 73301" -227306,34in Ultrawide Monitor,1,379.99,07/23/19 12:04,"937 Pine St, Seattle, WA 98101" -227307,AA Batteries (4-pack),3,3.84,07/24/19 18:12,"893 Adams St, Los Angeles, CA 90001" -227308,27in FHD Monitor,1,149.99,07/29/19 15:06,"931 Highland St, Atlanta, GA 30301" -227309,AA Batteries (4-pack),1,3.84,07/20/19 10:37,"881 Ridge St, New York City, NY 10001" -227310,20in Monitor,1,109.99,07/01/19 15:40,"281 9th St, New York City, NY 10001" -227311,Bose SoundSport Headphones,1,99.99,07/04/19 07:38,"627 2nd St, New York City, NY 10001" -227312,LG Washing Machine,1,600.0,07/02/19 18:38,"505 Jackson St, San Francisco, CA 94016" -227313,27in 4K Gaming Monitor,1,389.99,07/21/19 22:27,"125 8th St, San Francisco, CA 94016" -227314,USB-C Charging Cable,1,11.95,07/11/19 14:01,"208 Washington St, Atlanta, GA 30301" -227315,AA Batteries (4-pack),2,3.84,07/30/19 19:32,"869 Elm St, San Francisco, CA 94016" -227316,Bose SoundSport Headphones,1,99.99,07/02/19 20:12,"539 12th St, New York City, NY 10001" -227317,Bose SoundSport Headphones,1,99.99,07/01/19 17:21,"789 Wilson St, Seattle, WA 98101" -227318,27in 4K Gaming Monitor,1,389.99,07/19/19 19:21,"162 Adams St, Atlanta, GA 30301" -227319,Wired Headphones,1,11.99,07/05/19 19:14,"419 Lincoln St, Dallas, TX 75001" -227320,34in Ultrawide Monitor,1,379.99,07/17/19 09:01,"595 Elm St, Atlanta, GA 30301" -227321,Lightning Charging Cable,1,14.95,07/11/19 19:20,"968 Maple St, San Francisco, CA 94016" -227322,AAA Batteries (4-pack),1,2.99,07/30/19 15:37,"295 Jefferson St, San Francisco, CA 94016" -,,,,, -227323,Wired Headphones,1,11.99,07/18/19 16:58,"214 Church St, New York City, NY 10001" -227324,Lightning Charging Cable,1,14.95,07/20/19 21:00,"401 Spruce St, Portland, ME 04101" -227325,Lightning Charging Cable,1,14.95,07/25/19 13:24,"478 Jefferson St, Austin, TX 73301" -227326,Apple Airpods Headphones,1,150,07/17/19 22:50,"382 4th St, New York City, NY 10001" -227327,Apple Airpods Headphones,1,150,07/13/19 17:10,"138 Meadow St, Los Angeles, CA 90001" -227328,Lightning Charging Cable,1,14.95,07/30/19 14:33,"751 Main St, Atlanta, GA 30301" -227329,20in Monitor,1,109.99,07/02/19 18:22,"523 Highland St, San Francisco, CA 94016" -227330,USB-C Charging Cable,1,11.95,07/22/19 16:14,"675 Highland St, Dallas, TX 75001" -227331,Apple Airpods Headphones,1,150,07/20/19 22:04,"94 Hickory St, Austin, TX 73301" -227332,ThinkPad Laptop,1,999.99,07/15/19 11:55,"40 Walnut St, Los Angeles, CA 90001" -227333,Bose SoundSport Headphones,1,99.99,07/12/19 16:58,"630 Jackson St, Boston, MA 02215" -227334,Lightning Charging Cable,1,14.95,07/04/19 11:22,"469 North St, Austin, TX 73301" -227335,Apple Airpods Headphones,1,150,07/26/19 23:54,"403 Jackson St, Seattle, WA 98101" -227336,Lightning Charging Cable,1,14.95,07/17/19 17:41,"201 13th St, Austin, TX 73301" -227337,27in FHD Monitor,1,149.99,07/07/19 20:34,"604 14th St, New York City, NY 10001" -227338,Flatscreen TV,1,300,07/07/19 12:59,"490 Jackson St, San Francisco, CA 94016" -227339,Google Phone,1,600,07/16/19 15:54,"410 13th St, New York City, NY 10001" -227340,Apple Airpods Headphones,1,150,07/21/19 00:48,"532 Center St, Boston, MA 02215" -227341,27in 4K Gaming Monitor,1,389.99,07/12/19 19:18,"568 Cedar St, San Francisco, CA 94016" -227342,Wired Headphones,2,11.99,07/04/19 19:29,"281 8th St, New York City, NY 10001" -227343,AA Batteries (4-pack),1,3.84,07/28/19 16:47,"819 Lakeview St, San Francisco, CA 94016" -227344,27in 4K Gaming Monitor,1,389.99,07/22/19 22:34,"273 North St, San Francisco, CA 94016" -227345,20in Monitor,1,109.99,07/18/19 19:49,"594 Church St, San Francisco, CA 94016" -227346,Bose SoundSport Headphones,1,99.99,07/05/19 22:51,"771 Church St, New York City, NY 10001" -227347,AAA Batteries (4-pack),1,2.99,07/20/19 10:52,"712 Hickory St, Austin, TX 73301" -227348,Flatscreen TV,1,300,07/17/19 19:19,"654 9th St, Dallas, TX 75001" -227349,27in 4K Gaming Monitor,1,389.99,07/11/19 18:42,"212 Park St, Los Angeles, CA 90001" -227350,Bose SoundSport Headphones,1,99.99,07/14/19 17:30,"481 11th St, Los Angeles, CA 90001" -227351,Bose SoundSport Headphones,1,99.99,07/23/19 11:33,"559 Main St, Dallas, TX 75001" -227352,Lightning Charging Cable,1,14.95,07/21/19 13:08,"186 9th St, Boston, MA 02215" -227353,27in FHD Monitor,1,149.99,07/22/19 16:32,"75 South St, Seattle, WA 98101" -227354,27in 4K Gaming Monitor,1,389.99,07/08/19 09:32,"266 Chestnut St, Seattle, WA 98101" -227355,Wired Headphones,1,11.99,07/17/19 08:30,"468 Elm St, Los Angeles, CA 90001" -227356,Bose SoundSport Headphones,1,99.99,07/17/19 10:19,"855 11th St, Los Angeles, CA 90001" -227357,ThinkPad Laptop,1,999.99,07/28/19 13:47,"811 Ridge St, New York City, NY 10001" -227358,Lightning Charging Cable,1,14.95,07/12/19 21:27,"94 4th St, Los Angeles, CA 90001" -227359,USB-C Charging Cable,1,11.95,07/13/19 16:54,"532 Willow St, Los Angeles, CA 90001" -227360,Vareebadd Phone,1,400,07/17/19 12:37,"217 Adams St, Los Angeles, CA 90001" -227361,LG Dryer,1,600.0,07/24/19 10:01,"11 Washington St, Los Angeles, CA 90001" -227362,Lightning Charging Cable,1,14.95,07/23/19 11:20,"73 Lincoln St, New York City, NY 10001" -227363,Wired Headphones,1,11.99,07/10/19 10:10,"891 Jackson St, Los Angeles, CA 90001" -227364,Macbook Pro Laptop,1,1700,07/14/19 08:59,"884 Elm St, Los Angeles, CA 90001" -227365,Bose SoundSport Headphones,1,99.99,07/20/19 12:54,"253 Forest St, Austin, TX 73301" -227366,AAA Batteries (4-pack),2,2.99,07/05/19 13:30,"325 Hickory St, Austin, TX 73301" -227367,27in FHD Monitor,1,149.99,07/10/19 21:03,"583 Jefferson St, Los Angeles, CA 90001" -227368,27in FHD Monitor,1,149.99,07/08/19 08:58,"602 Walnut St, New York City, NY 10001" -227369,USB-C Charging Cable,1,11.95,07/26/19 19:26,"555 Lakeview St, New York City, NY 10001" -227370,Apple Airpods Headphones,1,150,07/05/19 13:30,"696 Adams St, Los Angeles, CA 90001" -227371,27in 4K Gaming Monitor,1,389.99,07/01/19 17:09,"234 Highland St, San Francisco, CA 94016" -227372,Flatscreen TV,1,300,07/01/19 21:29,"394 8th St, Los Angeles, CA 90001" -227373,Lightning Charging Cable,1,14.95,07/15/19 21:57,"905 Walnut St, Dallas, TX 75001" -227374,Vareebadd Phone,1,400,07/29/19 17:40,"923 7th St, San Francisco, CA 94016" -227375,Bose SoundSport Headphones,1,99.99,07/16/19 22:23,"325 Washington St, Boston, MA 02215" -227376,AA Batteries (4-pack),1,3.84,07/11/19 03:55,"458 Hickory St, Atlanta, GA 30301" -227377,AA Batteries (4-pack),2,3.84,07/29/19 13:34,"336 Washington St, San Francisco, CA 94016" -227378,LG Dryer,1,600.0,07/16/19 09:47,"36 7th St, New York City, NY 10001" -227379,AA Batteries (4-pack),1,3.84,07/17/19 14:07,"389 Lincoln St, Los Angeles, CA 90001" -227380,Lightning Charging Cable,2,14.95,07/22/19 19:28,"326 12th St, Boston, MA 02215" -227381,USB-C Charging Cable,1,11.95,07/10/19 20:39,"346 Cedar St, Boston, MA 02215" -227382,27in 4K Gaming Monitor,1,389.99,07/01/19 19:11,"461 Center St, New York City, NY 10001" -227383,AA Batteries (4-pack),1,3.84,07/31/19 21:36,"95 12th St, Portland, OR 97035" -227384,Bose SoundSport Headphones,1,99.99,07/27/19 23:02,"484 10th St, Atlanta, GA 30301" -227385,Macbook Pro Laptop,1,1700,07/17/19 12:43,"793 Jefferson St, Boston, MA 02215" -227386,Lightning Charging Cable,1,14.95,07/29/19 11:41,"931 Walnut St, Los Angeles, CA 90001" -227387,Bose SoundSport Headphones,1,99.99,07/21/19 11:36,"666 Washington St, Boston, MA 02215" -227388,Bose SoundSport Headphones,1,99.99,07/02/19 20:23,"969 River St, San Francisco, CA 94016" -227389,27in 4K Gaming Monitor,1,389.99,07/24/19 19:44,"583 Johnson St, San Francisco, CA 94016" -227390,USB-C Charging Cable,1,11.95,07/16/19 04:56,"565 8th St, Atlanta, GA 30301" -227391,Bose SoundSport Headphones,1,99.99,07/08/19 00:06,"248 River St, New York City, NY 10001" -227392,AAA Batteries (4-pack),3,2.99,07/28/19 12:41,"430 Wilson St, San Francisco, CA 94016" -227393,AAA Batteries (4-pack),1,2.99,07/10/19 12:58,"688 Jackson St, San Francisco, CA 94016" -227394,Wired Headphones,1,11.99,07/30/19 10:26,"590 12th St, San Francisco, CA 94016" -227395,Lightning Charging Cable,2,14.95,07/08/19 09:08,"472 Hill St, New York City, NY 10001" -227396,AAA Batteries (4-pack),1,2.99,07/25/19 05:56,"537 Church St, Los Angeles, CA 90001" -227397,Bose SoundSport Headphones,1,99.99,07/27/19 15:01,"353 Cherry St, Atlanta, GA 30301" -227398,Vareebadd Phone,1,400,07/26/19 22:43,"650 Dogwood St, New York City, NY 10001" -227399,34in Ultrawide Monitor,1,379.99,07/22/19 18:12,"126 Willow St, Los Angeles, CA 90001" -227400,Google Phone,1,600,07/29/19 20:00,"941 Sunset St, Portland, OR 97035" -227400,Wired Headphones,2,11.99,07/29/19 20:00,"941 Sunset St, Portland, OR 97035" -227400,Macbook Pro Laptop,1,1700,07/29/19 20:00,"941 Sunset St, Portland, OR 97035" -227401,Google Phone,1,600,07/20/19 07:12,"207 12th St, San Francisco, CA 94016" -227401,USB-C Charging Cable,1,11.95,07/20/19 07:12,"207 12th St, San Francisco, CA 94016" -227401,Wired Headphones,1,11.99,07/20/19 07:12,"207 12th St, San Francisco, CA 94016" -227402,Apple Airpods Headphones,1,150,07/21/19 20:34,"143 Elm St, San Francisco, CA 94016" -227403,20in Monitor,1,109.99,07/11/19 20:08,"732 Lake St, San Francisco, CA 94016" -227404,Google Phone,1,600,07/03/19 09:02,"653 Wilson St, Boston, MA 02215" -227405,Apple Airpods Headphones,1,150,07/02/19 21:39,"123 7th St, Portland, ME 04101" -227406,Wired Headphones,1,11.99,07/04/19 19:27,"284 Johnson St, Los Angeles, CA 90001" -227407,AAA Batteries (4-pack),1,2.99,07/17/19 20:00,"912 9th St, San Francisco, CA 94016" -227408,ThinkPad Laptop,1,999.99,07/11/19 20:06,"847 South St, Boston, MA 02215" -227409,27in 4K Gaming Monitor,1,389.99,07/11/19 08:50,"477 Pine St, San Francisco, CA 94016" -227410,Wired Headphones,1,11.99,07/03/19 09:28,"617 9th St, San Francisco, CA 94016" -227411,USB-C Charging Cable,1,11.95,07/16/19 11:31,"638 Center St, Boston, MA 02215" -227412,Lightning Charging Cable,1,14.95,07/22/19 18:31,"767 10th St, Atlanta, GA 30301" -227413,USB-C Charging Cable,1,11.95,07/08/19 15:42,"19 Dogwood St, San Francisco, CA 94016" -227414,Wired Headphones,1,11.99,07/24/19 08:06,"117 10th St, Seattle, WA 98101" -227415,34in Ultrawide Monitor,1,379.99,07/05/19 20:52,"810 Maple St, Los Angeles, CA 90001" -227416,AA Batteries (4-pack),1,3.84,07/24/19 08:11,"243 Center St, Seattle, WA 98101" -227417,AAA Batteries (4-pack),1,2.99,07/08/19 10:01,"416 West St, Los Angeles, CA 90001" -227418,Flatscreen TV,1,300,07/14/19 15:26,"743 Maple St, Los Angeles, CA 90001" -227419,20in Monitor,1,109.99,07/13/19 17:01,"38 10th St, Atlanta, GA 30301" -227420,LG Dryer,1,600.0,07/07/19 19:17,"249 8th St, San Francisco, CA 94016" -227421,Wired Headphones,1,11.99,07/14/19 17:13,"657 Ridge St, Los Angeles, CA 90001" -227422,Wired Headphones,1,11.99,07/28/19 21:39,"276 Spruce St, San Francisco, CA 94016" -227423,Bose SoundSport Headphones,1,99.99,07/11/19 18:15,"395 12th St, San Francisco, CA 94016" -227424,Flatscreen TV,1,300,07/16/19 09:46,"194 Lakeview St, Atlanta, GA 30301" -227425,Flatscreen TV,1,300,07/25/19 10:37,"870 Adams St, Boston, MA 02215" -227426,Lightning Charging Cable,1,14.95,07/06/19 16:22,"581 12th St, San Francisco, CA 94016" -227427,Wired Headphones,1,11.99,07/10/19 15:18,"514 6th St, San Francisco, CA 94016" -227428,Flatscreen TV,1,300,07/30/19 12:22,"635 Willow St, Los Angeles, CA 90001" -227429,Lightning Charging Cable,1,14.95,07/10/19 18:43,"135 13th St, San Francisco, CA 94016" -227429,Google Phone,1,600,07/10/19 18:43,"135 13th St, San Francisco, CA 94016" -227430,Apple Airpods Headphones,1,150,07/29/19 11:18,"356 Chestnut St, Seattle, WA 98101" -227431,Macbook Pro Laptop,1,1700,07/14/19 21:58,"270 Hickory St, Los Angeles, CA 90001" -227432,AAA Batteries (4-pack),1,2.99,07/20/19 17:41,"699 West St, San Francisco, CA 94016" -227433,Bose SoundSport Headphones,1,99.99,07/30/19 17:14,"382 Main St, Seattle, WA 98101" -227434,27in FHD Monitor,1,149.99,07/23/19 21:16,"859 12th St, New York City, NY 10001" -227435,USB-C Charging Cable,1,11.95,07/28/19 13:54,"838 Lincoln St, San Francisco, CA 94016" -227436,Apple Airpods Headphones,1,150,07/16/19 22:14,"772 12th St, Seattle, WA 98101" -227437,Bose SoundSport Headphones,1,99.99,07/01/19 08:07,"539 West St, Austin, TX 73301" -227438,USB-C Charging Cable,1,11.95,07/07/19 11:32,"71 Center St, Dallas, TX 75001" -227439,USB-C Charging Cable,2,11.95,07/26/19 13:09,"485 Spruce St, New York City, NY 10001" -227440,USB-C Charging Cable,2,11.95,07/16/19 14:00,"744 11th St, Boston, MA 02215" -227441,27in FHD Monitor,1,149.99,07/28/19 09:01,"280 Johnson St, San Francisco, CA 94016" -227442,34in Ultrawide Monitor,1,379.99,07/08/19 16:59,"293 Highland St, Atlanta, GA 30301" -227443,USB-C Charging Cable,1,11.95,07/26/19 06:30,"677 Adams St, San Francisco, CA 94016" -227444,Apple Airpods Headphones,1,150,07/15/19 13:03,"129 4th St, Los Angeles, CA 90001" -227445,Wired Headphones,1,11.99,07/07/19 15:59,"286 Main St, Los Angeles, CA 90001" -227446,27in FHD Monitor,1,149.99,07/10/19 22:31,"393 5th St, Atlanta, GA 30301" -227447,AA Batteries (4-pack),1,3.84,07/15/19 11:25,"535 Sunset St, San Francisco, CA 94016" -227448,Flatscreen TV,1,300,07/16/19 14:43,"202 Sunset St, Los Angeles, CA 90001" -227449,Vareebadd Phone,1,400,07/13/19 11:50,"23 Willow St, Boston, MA 02215" -227450,AA Batteries (4-pack),2,3.84,07/09/19 20:50,"978 13th St, Los Angeles, CA 90001" -227451,Lightning Charging Cable,1,14.95,07/19/19 09:39,"336 Madison St, San Francisco, CA 94016" -227452,27in FHD Monitor,1,149.99,07/22/19 12:43,"667 Wilson St, Portland, OR 97035" -227453,iPhone,1,700,07/20/19 12:19,"252 Main St, Los Angeles, CA 90001" -227453,Apple Airpods Headphones,1,150,07/20/19 12:19,"252 Main St, Los Angeles, CA 90001" -227454,AAA Batteries (4-pack),3,2.99,07/30/19 06:15,"845 5th St, Portland, ME 04101" -227455,Macbook Pro Laptop,1,1700,07/06/19 20:42,"186 Center St, San Francisco, CA 94016" -227456,20in Monitor,1,109.99,07/03/19 18:19,"775 8th St, Dallas, TX 75001" -227457,Lightning Charging Cable,1,14.95,07/07/19 03:55,"880 Highland St, Atlanta, GA 30301" -227458,Bose SoundSport Headphones,1,99.99,07/18/19 21:38,"546 River St, Portland, OR 97035" -227459,AAA Batteries (4-pack),1,2.99,07/06/19 17:12,"996 Washington St, Los Angeles, CA 90001" -227460,34in Ultrawide Monitor,1,379.99,07/11/19 00:39,"350 12th St, New York City, NY 10001" -,,,,, -227461,USB-C Charging Cable,1,11.95,07/04/19 10:45,"139 River St, New York City, NY 10001" -227462,AAA Batteries (4-pack),2,2.99,07/25/19 21:29,"658 13th St, Los Angeles, CA 90001" -227463,Vareebadd Phone,1,400,07/14/19 20:44,"142 2nd St, Atlanta, GA 30301" -227464,Lightning Charging Cable,1,14.95,07/12/19 14:47,"432 North St, San Francisco, CA 94016" -227465,AAA Batteries (4-pack),1,2.99,07/07/19 20:09,"346 12th St, Seattle, WA 98101" -227466,Macbook Pro Laptop,1,1700,07/14/19 19:02,"46 Willow St, Los Angeles, CA 90001" -227467,Apple Airpods Headphones,1,150,07/03/19 09:48,"584 2nd St, Seattle, WA 98101" -227468,Bose SoundSport Headphones,1,99.99,07/10/19 14:39,"215 11th St, Los Angeles, CA 90001" -227469,USB-C Charging Cable,2,11.95,07/03/19 15:16,"364 13th St, San Francisco, CA 94016" -227470,AA Batteries (4-pack),1,3.84,07/07/19 18:38,"838 Cherry St, Atlanta, GA 30301" -227471,AA Batteries (4-pack),1,3.84,07/30/19 04:58,"587 North St, Portland, OR 97035" -227472,AA Batteries (4-pack),3,3.84,07/18/19 19:28,"325 Hill St, San Francisco, CA 94016" -227473,Macbook Pro Laptop,1,1700,07/14/19 20:10,"35 8th St, Boston, MA 02215" -227474,Wired Headphones,3,11.99,07/24/19 10:30,"816 Lake St, Los Angeles, CA 90001" -227475,AA Batteries (4-pack),1,3.84,07/09/19 07:59,"705 5th St, Boston, MA 02215" -227476,27in 4K Gaming Monitor,1,389.99,07/05/19 13:04,"531 South St, Austin, TX 73301" -227477,Wired Headphones,1,11.99,07/14/19 05:13,"496 5th St, San Francisco, CA 94016" -227478,Vareebadd Phone,1,400,07/03/19 10:41,"370 Main St, Los Angeles, CA 90001" -227479,Wired Headphones,1,11.99,07/24/19 19:43,"683 2nd St, San Francisco, CA 94016" -227480,AA Batteries (4-pack),1,3.84,07/17/19 23:12,"127 Dogwood St, San Francisco, CA 94016" -227481,Apple Airpods Headphones,1,150,07/08/19 12:43,"489 Church St, Seattle, WA 98101" -227482,Wired Headphones,1,11.99,07/21/19 15:10,"206 13th St, Boston, MA 02215" -227483,AAA Batteries (4-pack),2,2.99,07/09/19 00:04,"542 11th St, Austin, TX 73301" -227484,Wired Headphones,1,11.99,07/31/19 21:45,"962 Jackson St, San Francisco, CA 94016" -227485,Lightning Charging Cable,1,14.95,07/15/19 13:24,"805 Spruce St, Boston, MA 02215" -227486,USB-C Charging Cable,1,11.95,07/16/19 11:08,"323 Highland St, New York City, NY 10001" -227487,AAA Batteries (4-pack),1,2.99,07/31/19 09:54,"194 River St, Portland, OR 97035" -227488,Wired Headphones,1,11.99,07/13/19 21:48,"893 Chestnut St, Austin, TX 73301" -227489,Google Phone,1,600,07/14/19 08:14,"717 Adams St, Los Angeles, CA 90001" -227490,USB-C Charging Cable,1,11.95,07/26/19 19:35,"342 12th St, Atlanta, GA 30301" -227491,Lightning Charging Cable,1,14.95,07/01/19 14:42,"566 Madison St, San Francisco, CA 94016" -227492,AA Batteries (4-pack),2,3.84,07/20/19 17:40,"187 9th St, Boston, MA 02215" -227493,Apple Airpods Headphones,1,150,07/18/19 12:23,"582 1st St, New York City, NY 10001" -227494,ThinkPad Laptop,1,999.99,07/24/19 18:23,"473 Cedar St, Dallas, TX 75001" -227495,27in FHD Monitor,1,149.99,07/18/19 12:02,"537 11th St, Boston, MA 02215" -227496,Flatscreen TV,1,300,07/12/19 19:16,"315 Ridge St, San Francisco, CA 94016" -227497,USB-C Charging Cable,2,11.95,07/02/19 16:24,"527 2nd St, Portland, ME 04101" -227498,Lightning Charging Cable,1,14.95,07/03/19 20:52,"523 Adams St, Austin, TX 73301" -227499,27in FHD Monitor,1,149.99,07/04/19 12:23,"420 8th St, San Francisco, CA 94016" -227500,AAA Batteries (4-pack),2,2.99,07/27/19 20:02,"123 Dogwood St, New York City, NY 10001" -227501,Macbook Pro Laptop,1,1700,07/21/19 11:21,"3 Church St, New York City, NY 10001" -227502,Apple Airpods Headphones,1,150,07/11/19 13:18,"595 12th St, Boston, MA 02215" -227503,Lightning Charging Cable,1,14.95,07/18/19 00:02,"193 Hill St, New York City, NY 10001" -227504,34in Ultrawide Monitor,1,379.99,07/29/19 17:18,"561 Lincoln St, San Francisco, CA 94016" -227505,USB-C Charging Cable,1,11.95,07/11/19 18:30,"225 Walnut St, Los Angeles, CA 90001" -227506,USB-C Charging Cable,1,11.95,07/27/19 14:52,"18 Lincoln St, San Francisco, CA 94016" -227507,ThinkPad Laptop,1,999.99,07/02/19 12:09,"94 Park St, Los Angeles, CA 90001" -227508,Bose SoundSport Headphones,1,99.99,07/24/19 18:40,"366 Lincoln St, San Francisco, CA 94016" -227509,USB-C Charging Cable,1,11.95,07/05/19 21:18,"225 Church St, Seattle, WA 98101" -227510,AAA Batteries (4-pack),1,2.99,07/17/19 14:24,"682 1st St, San Francisco, CA 94016" -227511,iPhone,1,700,07/27/19 17:49,"807 Spruce St, Portland, OR 97035" -227512,Wired Headphones,1,11.99,07/26/19 02:05,"865 Adams St, San Francisco, CA 94016" -227513,AAA Batteries (4-pack),2,2.99,07/05/19 13:29,"727 14th St, New York City, NY 10001" -227514,Lightning Charging Cable,1,14.95,07/02/19 10:40,"758 Lake St, Austin, TX 73301" -227515,Lightning Charging Cable,1,14.95,07/24/19 11:42,"343 4th St, New York City, NY 10001" -227516,AA Batteries (4-pack),1,3.84,07/12/19 20:07,"722 Lincoln St, Atlanta, GA 30301" -227517,Vareebadd Phone,1,400,07/15/19 19:45,"521 Cherry St, New York City, NY 10001" -227518,Wired Headphones,1,11.99,07/28/19 12:17,"99 Dogwood St, San Francisco, CA 94016" -227519,Bose SoundSport Headphones,1,99.99,07/13/19 09:45,"906 Meadow St, San Francisco, CA 94016" -227520,AA Batteries (4-pack),2,3.84,07/22/19 15:45,"420 Johnson St, New York City, NY 10001" -227521,AAA Batteries (4-pack),2,2.99,08/01/19 00:11,"57 8th St, New York City, NY 10001" -227521,Wired Headphones,1,11.99,08/01/19 00:11,"57 8th St, New York City, NY 10001" -227522,Wired Headphones,1,11.99,07/24/19 02:23,"135 Ridge St, New York City, NY 10001" -227523,AAA Batteries (4-pack),1,2.99,07/09/19 21:07,"329 Ridge St, Boston, MA 02215" -227524,USB-C Charging Cable,1,11.95,07/03/19 00:33,"513 1st St, New York City, NY 10001" -227525,Lightning Charging Cable,1,14.95,07/23/19 13:50,"18 Main St, Seattle, WA 98101" -227526,Wired Headphones,1,11.99,07/09/19 22:12,"136 9th St, Dallas, TX 75001" -227527,34in Ultrawide Monitor,1,379.99,07/22/19 22:33,"299 Hill St, Atlanta, GA 30301" -227528,Apple Airpods Headphones,1,150,07/10/19 09:30,"183 7th St, San Francisco, CA 94016" -227529,27in FHD Monitor,1,149.99,07/30/19 12:44,"841 12th St, Boston, MA 02215" -227530,Lightning Charging Cable,1,14.95,07/29/19 09:18,"634 7th St, Seattle, WA 98101" -227531,iPhone,1,700,07/13/19 23:37,"28 Park St, Austin, TX 73301" -227532,Bose SoundSport Headphones,1,99.99,07/26/19 12:06,"887 Washington St, Atlanta, GA 30301" -227533,AA Batteries (4-pack),1,3.84,07/02/19 16:27,"932 Spruce St, Portland, OR 97035" -227534,AA Batteries (4-pack),1,3.84,07/03/19 17:37,"753 Cedar St, Los Angeles, CA 90001" -227535,Bose SoundSport Headphones,1,99.99,07/25/19 13:57,"758 Cedar St, San Francisco, CA 94016" -227536,AA Batteries (4-pack),2,3.84,07/11/19 13:24,"141 Highland St, Los Angeles, CA 90001" -227537,Lightning Charging Cable,1,14.95,07/10/19 12:17,"991 South St, Los Angeles, CA 90001" -227538,AAA Batteries (4-pack),2,2.99,07/19/19 11:22,"16 Lakeview St, Atlanta, GA 30301" -227539,AA Batteries (4-pack),3,3.84,07/16/19 13:00,"747 Walnut St, Boston, MA 02215" -227540,Macbook Pro Laptop,1,1700,07/19/19 16:58,"369 9th St, Los Angeles, CA 90001" -227541,Bose SoundSport Headphones,1,99.99,07/15/19 16:54,"730 Lakeview St, Austin, TX 73301" -227542,Apple Airpods Headphones,1,150,07/21/19 23:01,"618 Meadow St, San Francisco, CA 94016" -227543,Macbook Pro Laptop,1,1700,07/18/19 07:03,"648 Lake St, San Francisco, CA 94016" -227543,Bose SoundSport Headphones,1,99.99,07/18/19 07:03,"648 Lake St, San Francisco, CA 94016" -227544,Lightning Charging Cable,1,14.95,07/06/19 20:09,"568 Sunset St, New York City, NY 10001" -227545,Bose SoundSport Headphones,1,99.99,07/13/19 21:25,"938 Lake St, Dallas, TX 75001" -227545,Apple Airpods Headphones,1,150,07/13/19 21:25,"938 Lake St, Dallas, TX 75001" -227546,iPhone,1,700,07/30/19 19:02,"184 Chestnut St, Dallas, TX 75001" -227547,Wired Headphones,2,11.99,07/26/19 11:16,"653 13th St, San Francisco, CA 94016" -227548,34in Ultrawide Monitor,1,379.99,07/16/19 23:09,"370 Church St, Austin, TX 73301" -227549,Lightning Charging Cable,1,14.95,07/24/19 13:24,"748 Center St, Boston, MA 02215" -227550,USB-C Charging Cable,1,11.95,07/05/19 00:27,"101 Hill St, Los Angeles, CA 90001" -227551,USB-C Charging Cable,1,11.95,07/23/19 11:14,"330 9th St, Los Angeles, CA 90001" -227552,Wired Headphones,1,11.99,07/14/19 23:26,"591 West St, New York City, NY 10001" -227553,AA Batteries (4-pack),2,3.84,07/11/19 01:54,"348 Spruce St, Dallas, TX 75001" -227554,Apple Airpods Headphones,1,150,07/10/19 15:20,"936 Walnut St, Dallas, TX 75001" -227555,LG Dryer,1,600.0,07/26/19 14:35,"371 Johnson St, San Francisco, CA 94016" -227556,USB-C Charging Cable,1,11.95,07/17/19 11:31,"321 Forest St, San Francisco, CA 94016" -227556,27in FHD Monitor,1,149.99,07/17/19 11:31,"321 Forest St, San Francisco, CA 94016" -227557,AAA Batteries (4-pack),2,2.99,07/22/19 16:55,"391 Jefferson St, New York City, NY 10001" -227558,Lightning Charging Cable,1,14.95,07/17/19 11:19,"516 Main St, Boston, MA 02215" -227559,Flatscreen TV,1,300,07/18/19 20:59,"885 Walnut St, Portland, ME 04101" -227560,AA Batteries (4-pack),2,3.84,07/29/19 11:17,"725 14th St, Atlanta, GA 30301" -227561,AA Batteries (4-pack),1,3.84,07/26/19 19:29,"967 Maple St, Atlanta, GA 30301" -227562,Apple Airpods Headphones,1,150,07/11/19 23:46,"53 Madison St, Seattle, WA 98101" -227563,ThinkPad Laptop,1,999.99,07/30/19 08:42,"386 Chestnut St, New York City, NY 10001" -227564,34in Ultrawide Monitor,1,379.99,07/14/19 17:22,"444 Lake St, San Francisco, CA 94016" -227565,Bose SoundSport Headphones,1,99.99,07/08/19 09:52,"146 River St, Boston, MA 02215" -227565,USB-C Charging Cable,1,11.95,07/08/19 09:52,"146 River St, Boston, MA 02215" -227566,27in FHD Monitor,1,149.99,07/16/19 21:11,"597 Washington St, San Francisco, CA 94016" -227567,AA Batteries (4-pack),2,3.84,07/11/19 18:18,"400 10th St, Boston, MA 02215" -227568,27in FHD Monitor,1,149.99,07/26/19 18:09,"60 14th St, Boston, MA 02215" -227569,27in 4K Gaming Monitor,1,389.99,07/18/19 22:37,"28 Lakeview St, Portland, OR 97035" -227570,AA Batteries (4-pack),3,3.84,07/25/19 16:59,"839 South St, New York City, NY 10001" -227571,Wired Headphones,1,11.99,07/30/19 10:33,"96 Washington St, Portland, OR 97035" -227572,AA Batteries (4-pack),1,3.84,07/24/19 11:38,"708 Center St, Los Angeles, CA 90001" -227573,USB-C Charging Cable,1,11.95,07/30/19 21:23,"696 Church St, New York City, NY 10001" -227574,Wired Headphones,1,11.99,07/23/19 13:46,"518 1st St, Seattle, WA 98101" -227575,Lightning Charging Cable,1,14.95,07/05/19 14:53,"10 Jefferson St, Atlanta, GA 30301" -227576,Wired Headphones,1,11.99,07/07/19 11:10,"261 8th St, Los Angeles, CA 90001" -227577,Lightning Charging Cable,1,14.95,07/31/19 19:02,"170 Church St, Portland, OR 97035" -227578,Flatscreen TV,1,300,07/30/19 20:49,"413 2nd St, Dallas, TX 75001" -227579,Macbook Pro Laptop,1,1700,07/01/19 20:38,"18 Cherry St, San Francisco, CA 94016" -227580,ThinkPad Laptop,1,999.99,07/31/19 20:42,"748 11th St, Los Angeles, CA 90001" -227581,AA Batteries (4-pack),1,3.84,07/10/19 13:16,"256 North St, San Francisco, CA 94016" -227582,Bose SoundSport Headphones,1,99.99,07/20/19 11:44,"206 Willow St, New York City, NY 10001" -227583,USB-C Charging Cable,1,11.95,07/04/19 14:51,"675 Lincoln St, Boston, MA 02215" -227584,AAA Batteries (4-pack),1,2.99,07/27/19 16:18,"41 6th St, San Francisco, CA 94016" -227585,34in Ultrawide Monitor,1,379.99,07/13/19 15:07,"85 Highland St, New York City, NY 10001" -227586,Bose SoundSport Headphones,1,99.99,07/25/19 13:36,"416 Sunset St, Los Angeles, CA 90001" -227586,Bose SoundSport Headphones,1,99.99,07/25/19 13:36,"416 Sunset St, Los Angeles, CA 90001" -227587,AA Batteries (4-pack),1,3.84,07/09/19 01:47,"978 Jefferson St, New York City, NY 10001" -227588,AA Batteries (4-pack),1,3.84,07/01/19 08:21,"173 Meadow St, New York City, NY 10001" -227589,Lightning Charging Cable,1,14.95,07/04/19 13:01,"214 Meadow St, Portland, OR 97035" -227590,Lightning Charging Cable,1,14.95,07/07/19 22:24,"526 6th St, Dallas, TX 75001" -227591,Apple Airpods Headphones,1,150,07/02/19 22:46,"112 Maple St, San Francisco, CA 94016" -227592,Lightning Charging Cable,1,14.95,07/13/19 10:46,"693 Pine St, San Francisco, CA 94016" -227593,AA Batteries (4-pack),1,3.84,07/29/19 22:18,"775 1st St, San Francisco, CA 94016" -227594,Wired Headphones,1,11.99,07/27/19 11:18,"415 Washington St, Boston, MA 02215" -227595,Bose SoundSport Headphones,1,99.99,07/15/19 15:08,"227 Forest St, San Francisco, CA 94016" -227596,Macbook Pro Laptop,1,1700,07/11/19 12:02,"305 14th St, New York City, NY 10001" -227597,AAA Batteries (4-pack),3,2.99,07/13/19 23:07,"694 Park St, Los Angeles, CA 90001" -227598,Lightning Charging Cable,1,14.95,07/31/19 07:12,"853 11th St, San Francisco, CA 94016" -227599,Macbook Pro Laptop,1,1700,07/14/19 16:05,"509 Sunset St, Los Angeles, CA 90001" -227600,AAA Batteries (4-pack),2,2.99,07/02/19 08:16,"575 Sunset St, San Francisco, CA 94016" -227601,27in FHD Monitor,1,149.99,07/21/19 15:26,"776 1st St, Seattle, WA 98101" -227602,Wired Headphones,1,11.99,07/12/19 08:26,"73 Willow St, Seattle, WA 98101" -227603,Google Phone,1,600,07/11/19 16:06,"401 Jefferson St, San Francisco, CA 94016" -227604,Lightning Charging Cable,1,14.95,07/02/19 01:24,"779 Madison St, Atlanta, GA 30301" -227605,Bose SoundSport Headphones,1,99.99,07/17/19 19:18,"428 Maple St, Boston, MA 02215" -227606,USB-C Charging Cable,2,11.95,07/22/19 23:11,"222 1st St, Seattle, WA 98101" -227607,Lightning Charging Cable,2,14.95,07/29/19 00:43,"723 7th St, San Francisco, CA 94016" -227608,AAA Batteries (4-pack),3,2.99,07/17/19 13:32,"519 Jefferson St, Los Angeles, CA 90001" -227609,USB-C Charging Cable,1,11.95,07/07/19 18:02,"830 Hill St, Boston, MA 02215" -227610,AA Batteries (4-pack),1,3.84,07/31/19 20:32,"81 2nd St, San Francisco, CA 94016" -227611,Bose SoundSport Headphones,1,99.99,07/03/19 15:40,"525 Johnson St, Atlanta, GA 30301" -227612,AAA Batteries (4-pack),1,2.99,07/22/19 22:37,"679 Main St, Los Angeles, CA 90001" -227613,Lightning Charging Cable,1,14.95,07/15/19 12:22,"323 Park St, New York City, NY 10001" -227614,Bose SoundSport Headphones,1,99.99,07/17/19 07:53,"309 9th St, Austin, TX 73301" -227615,iPhone,1,700,07/15/19 19:34,"883 Maple St, New York City, NY 10001" -227616,Lightning Charging Cable,1,14.95,07/24/19 21:48,"302 Highland St, New York City, NY 10001" -227617,USB-C Charging Cable,1,11.95,07/31/19 20:28,"603 Chestnut St, New York City, NY 10001" -227618,USB-C Charging Cable,1,11.95,07/21/19 15:48,"725 Church St, San Francisco, CA 94016" -227619,Bose SoundSport Headphones,1,99.99,07/27/19 15:28,"816 13th St, New York City, NY 10001" -227620,USB-C Charging Cable,1,11.95,07/08/19 17:15,"630 Forest St, New York City, NY 10001" -227621,27in FHD Monitor,1,149.99,07/02/19 17:17,"274 Park St, New York City, NY 10001" -227622,20in Monitor,1,109.99,07/06/19 12:06,"400 10th St, New York City, NY 10001" -227623,AA Batteries (4-pack),1,3.84,07/05/19 16:40,"167 Wilson St, Dallas, TX 75001" -227624,Apple Airpods Headphones,1,150,07/31/19 19:55,"636 Washington St, Boston, MA 02215" -227625,Vareebadd Phone,1,400,07/05/19 23:14,"142 Cherry St, San Francisco, CA 94016" -227626,AAA Batteries (4-pack),1,2.99,07/04/19 19:37,"853 South St, Los Angeles, CA 90001" -227627,USB-C Charging Cable,1,11.95,07/26/19 13:25,"247 Cherry St, Boston, MA 02215" -227628,AA Batteries (4-pack),1,3.84,07/03/19 11:34,"815 Willow St, Seattle, WA 98101" -227629,Wired Headphones,1,11.99,07/30/19 10:38,"916 Walnut St, New York City, NY 10001" -227630,Wired Headphones,1,11.99,07/24/19 07:08,"266 6th St, Dallas, TX 75001" -227631,AAA Batteries (4-pack),1,2.99,07/31/19 20:28,"9 1st St, Los Angeles, CA 90001" -227632,USB-C Charging Cable,1,11.95,07/13/19 12:31,"698 Highland St, San Francisco, CA 94016" -227633,Wired Headphones,1,11.99,07/28/19 18:01,"884 Elm St, Los Angeles, CA 90001" -227634,Macbook Pro Laptop,1,1700,07/16/19 19:14,"592 10th St, New York City, NY 10001" -227635,Lightning Charging Cable,1,14.95,07/26/19 14:03,"135 Chestnut St, New York City, NY 10001" -227635,USB-C Charging Cable,1,11.95,07/26/19 14:03,"135 Chestnut St, New York City, NY 10001" -227636,Macbook Pro Laptop,1,1700,07/02/19 21:31,"859 Adams St, New York City, NY 10001" -227637,USB-C Charging Cable,2,11.95,07/10/19 16:29,"536 North St, San Francisco, CA 94016" -227638,Flatscreen TV,1,300,07/18/19 15:15,"730 Highland St, San Francisco, CA 94016" -227639,AAA Batteries (4-pack),1,2.99,07/16/19 18:25,"656 Cedar St, Atlanta, GA 30301" -227640,Google Phone,1,600,07/18/19 11:51,"895 Dogwood St, Dallas, TX 75001" -227641,Apple Airpods Headphones,1,150,07/16/19 22:17,"811 Hill St, Portland, OR 97035" -227642,Apple Airpods Headphones,1,150,07/20/19 15:13,"193 South St, Atlanta, GA 30301" -227643,AAA Batteries (4-pack),1,2.99,07/22/19 15:21,"75 Lakeview St, San Francisco, CA 94016" -227644,Wired Headphones,1,11.99,07/29/19 21:46,"52 Cherry St, San Francisco, CA 94016" -227645,Wired Headphones,1,11.99,07/30/19 22:58,"535 5th St, Atlanta, GA 30301" -227646,AA Batteries (4-pack),1,3.84,07/08/19 15:09,"242 Johnson St, New York City, NY 10001" -227647,Apple Airpods Headphones,1,150,07/07/19 19:35,"105 Wilson St, Seattle, WA 98101" -227648,Wired Headphones,2,11.99,07/05/19 19:31,"794 9th St, San Francisco, CA 94016" -227649,USB-C Charging Cable,1,11.95,07/15/19 17:23,"8 1st St, Dallas, TX 75001" -227650,ThinkPad Laptop,1,999.99,07/14/19 12:53,"793 Madison St, New York City, NY 10001" -227651,AA Batteries (4-pack),1,3.84,07/18/19 20:35,"657 Cherry St, Dallas, TX 75001" -227652,AA Batteries (4-pack),1,3.84,07/26/19 10:48,"316 Forest St, Los Angeles, CA 90001" -227653,AA Batteries (4-pack),2,3.84,07/07/19 08:33,"581 6th St, San Francisco, CA 94016" -227654,27in 4K Gaming Monitor,1,389.99,07/31/19 11:44,"412 Maple St, Atlanta, GA 30301" -227655,Bose SoundSport Headphones,1,99.99,07/17/19 16:36,"306 Main St, Boston, MA 02215" -227656,20in Monitor,1,109.99,07/07/19 13:14,"10 Ridge St, Portland, OR 97035" -227657,AA Batteries (4-pack),2,3.84,07/04/19 20:39,"901 Center St, San Francisco, CA 94016" -227658,AAA Batteries (4-pack),1,2.99,07/24/19 19:32,"214 12th St, Dallas, TX 75001" -227659,Flatscreen TV,1,300,07/29/19 10:01,"908 Cedar St, San Francisco, CA 94016" -227660,27in FHD Monitor,1,149.99,07/20/19 00:16,"71 Spruce St, Austin, TX 73301" -227661,USB-C Charging Cable,1,11.95,07/16/19 23:55,"228 Cherry St, Seattle, WA 98101" -227661,Lightning Charging Cable,1,14.95,07/16/19 23:55,"228 Cherry St, Seattle, WA 98101" -227662,Bose SoundSport Headphones,1,99.99,07/18/19 11:16,"528 1st St, Austin, TX 73301" -227663,USB-C Charging Cable,1,11.95,07/30/19 10:02,"175 7th St, Boston, MA 02215" -227664,Google Phone,1,600,07/01/19 14:39,"625 2nd St, Austin, TX 73301" -227664,Bose SoundSport Headphones,1,99.99,07/01/19 14:39,"625 2nd St, Austin, TX 73301" -227664,Wired Headphones,2,11.99,07/01/19 14:39,"625 2nd St, Austin, TX 73301" -227665,Google Phone,1,600,07/10/19 21:08,"783 Lake St, San Francisco, CA 94016" -227666,Wired Headphones,1,11.99,07/08/19 16:47,"378 10th St, San Francisco, CA 94016" -227667,Wired Headphones,1,11.99,07/17/19 08:21,"724 Center St, New York City, NY 10001" -227668,Apple Airpods Headphones,1,150,07/13/19 12:32,"177 10th St, Seattle, WA 98101" -227668,34in Ultrawide Monitor,1,379.99,07/13/19 12:32,"177 10th St, Seattle, WA 98101" -227669,34in Ultrawide Monitor,1,379.99,07/10/19 21:35,"255 Lincoln St, Atlanta, GA 30301" -227670,Lightning Charging Cable,1,14.95,07/22/19 13:09,"612 South St, San Francisco, CA 94016" -227671,Bose SoundSport Headphones,1,99.99,07/28/19 10:59,"353 Washington St, San Francisco, CA 94016" -227672,Wired Headphones,1,11.99,07/19/19 10:40,"987 River St, Seattle, WA 98101" -227673,Apple Airpods Headphones,1,150,07/18/19 12:42,"176 Cedar St, Seattle, WA 98101" -227674,Apple Airpods Headphones,1,150,07/06/19 14:31,"531 Willow St, Seattle, WA 98101" -227675,Wired Headphones,1,11.99,07/20/19 19:06,"749 Hill St, Boston, MA 02215" -227676,USB-C Charging Cable,1,11.95,07/25/19 23:53,"71 Hickory St, Los Angeles, CA 90001" -227677,AAA Batteries (4-pack),1,2.99,07/15/19 10:41,"184 7th St, San Francisco, CA 94016" -227678,AAA Batteries (4-pack),2,2.99,07/06/19 18:59,"22 2nd St, Dallas, TX 75001" -227679,AA Batteries (4-pack),1,3.84,07/13/19 12:09,"825 Washington St, San Francisco, CA 94016" -227680,Wired Headphones,1,11.99,07/18/19 20:43,"892 9th St, Atlanta, GA 30301" -227681,AA Batteries (4-pack),2,3.84,07/22/19 21:49,"800 Highland St, San Francisco, CA 94016" -227682,Wired Headphones,1,11.99,07/10/19 10:03,"11 Ridge St, Boston, MA 02215" -227683,34in Ultrawide Monitor,1,379.99,07/04/19 11:18,"664 5th St, San Francisco, CA 94016" -227684,Flatscreen TV,1,300,07/19/19 13:20,"43 South St, San Francisco, CA 94016" -227685,20in Monitor,1,109.99,07/26/19 21:28,"564 Forest St, New York City, NY 10001" -227686,AA Batteries (4-pack),1,3.84,07/06/19 19:48,"195 Dogwood St, San Francisco, CA 94016" -227687,27in 4K Gaming Monitor,1,389.99,07/21/19 07:37,"22 West St, Dallas, TX 75001" -227688,Lightning Charging Cable,1,14.95,07/27/19 14:43,"55 9th St, Boston, MA 02215" -227689,AAA Batteries (4-pack),1,2.99,07/15/19 23:05,"362 North St, New York City, NY 10001" -227690,Apple Airpods Headphones,1,150,07/07/19 11:38,"221 North St, San Francisco, CA 94016" -227691,AA Batteries (4-pack),2,3.84,07/07/19 13:28,"863 Ridge St, Atlanta, GA 30301" -,,,,, -227692,Bose SoundSport Headphones,1,99.99,07/03/19 10:44,"41 11th St, Boston, MA 02215" -227693,Lightning Charging Cable,1,14.95,07/05/19 12:34,"417 Hickory St, Los Angeles, CA 90001" -227694,27in 4K Gaming Monitor,1,389.99,07/10/19 12:03,"655 Church St, Austin, TX 73301" -227695,AA Batteries (4-pack),1,3.84,07/14/19 16:16,"541 Church St, Los Angeles, CA 90001" -227696,27in FHD Monitor,1,149.99,07/21/19 13:06,"806 9th St, New York City, NY 10001" -227697,USB-C Charging Cable,1,11.95,07/11/19 17:33,"797 Lake St, Los Angeles, CA 90001" -227698,Flatscreen TV,1,300,07/25/19 11:30,"94 Jackson St, New York City, NY 10001" -227699,AA Batteries (4-pack),1,3.84,07/24/19 20:21,"280 Pine St, Los Angeles, CA 90001" -227700,AAA Batteries (4-pack),1,2.99,07/23/19 07:04,"85 1st St, Portland, OR 97035" -227701,Bose SoundSport Headphones,1,99.99,07/09/19 12:58,"42 Maple St, New York City, NY 10001" -227702,34in Ultrawide Monitor,1,379.99,07/31/19 09:02,"239 Lakeview St, Seattle, WA 98101" -227703,27in FHD Monitor,1,149.99,07/20/19 06:57,"854 9th St, Seattle, WA 98101" -227704,Bose SoundSport Headphones,1,99.99,07/02/19 23:33,"337 8th St, Los Angeles, CA 90001" -227705,Lightning Charging Cable,1,14.95,07/24/19 14:46,"28 River St, Austin, TX 73301" -227706,Macbook Pro Laptop,1,1700,07/28/19 19:02,"985 Madison St, San Francisco, CA 94016" -227707,Bose SoundSport Headphones,1,99.99,07/04/19 16:17,"958 Meadow St, San Francisco, CA 94016" -227708,Vareebadd Phone,1,400,07/09/19 21:51,"346 Lake St, New York City, NY 10001" -227708,Wired Headphones,1,11.99,07/09/19 21:51,"346 Lake St, New York City, NY 10001" -227709,27in 4K Gaming Monitor,1,389.99,07/01/19 17:58,"691 2nd St, Atlanta, GA 30301" -227710,Bose SoundSport Headphones,1,99.99,07/12/19 14:46,"21 Meadow St, Boston, MA 02215" -227711,Macbook Pro Laptop,1,1700,07/29/19 22:32,"49 1st St, Seattle, WA 98101" -227712,Lightning Charging Cable,1,14.95,07/27/19 19:39,"142 Willow St, Portland, OR 97035" -227713,Wired Headphones,1,11.99,07/05/19 08:27,"59 Chestnut St, New York City, NY 10001" -227714,Flatscreen TV,1,300,07/15/19 19:48,"784 Center St, San Francisco, CA 94016" -227715,AAA Batteries (4-pack),2,2.99,07/07/19 06:54,"784 Lakeview St, San Francisco, CA 94016" -227716,AAA Batteries (4-pack),2,2.99,07/05/19 00:36,"240 9th St, San Francisco, CA 94016" -227717,Lightning Charging Cable,2,14.95,07/12/19 19:43,"19 Highland St, Boston, MA 02215" -227718,Google Phone,1,600,07/07/19 22:32,"522 Church St, Boston, MA 02215" -227718,Wired Headphones,2,11.99,07/07/19 22:32,"522 Church St, Boston, MA 02215" -227719,AA Batteries (4-pack),1,3.84,07/07/19 15:59,"209 7th St, San Francisco, CA 94016" -227720,27in 4K Gaming Monitor,1,389.99,07/12/19 20:07,"800 River St, Dallas, TX 75001" -227721,USB-C Charging Cable,1,11.95,07/10/19 15:31,"678 Hill St, Portland, OR 97035" -227722,AAA Batteries (4-pack),1,2.99,07/04/19 17:53,"244 8th St, San Francisco, CA 94016" -227723,USB-C Charging Cable,1,11.95,07/30/19 11:22,"774 Center St, Atlanta, GA 30301" -227724,AA Batteries (4-pack),1,3.84,07/12/19 10:37,"196 8th St, Seattle, WA 98101" -227725,27in FHD Monitor,1,149.99,07/03/19 17:41,"964 Main St, Boston, MA 02215" -227726,USB-C Charging Cable,1,11.95,07/25/19 08:19,"18 Highland St, Portland, OR 97035" -227727,AA Batteries (4-pack),1,3.84,07/28/19 19:19,"501 Forest St, San Francisco, CA 94016" -227727,Lightning Charging Cable,1,14.95,07/28/19 19:19,"501 Forest St, San Francisco, CA 94016" -227728,Wired Headphones,2,11.99,07/17/19 21:01,"547 South St, Dallas, TX 75001" -227729,AAA Batteries (4-pack),1,2.99,07/21/19 00:38,"751 14th St, New York City, NY 10001" -227730,AA Batteries (4-pack),1,3.84,07/30/19 23:16,"89 10th St, New York City, NY 10001" -227731,AA Batteries (4-pack),1,3.84,07/22/19 16:26,"672 Cedar St, Atlanta, GA 30301" -227732,Apple Airpods Headphones,1,150,08/01/19 00:33,"146 Lake St, Boston, MA 02215" -227733,Google Phone,1,600,07/19/19 09:23,"51 North St, San Francisco, CA 94016" -227734,27in FHD Monitor,1,149.99,07/18/19 20:11,"327 Meadow St, Dallas, TX 75001" -227735,AAA Batteries (4-pack),2,2.99,07/17/19 09:16,"949 Hill St, Seattle, WA 98101" -227736,Lightning Charging Cable,1,14.95,07/05/19 13:34,"708 6th St, San Francisco, CA 94016" -227737,Bose SoundSport Headphones,1,99.99,07/19/19 09:20,"602 Church St, Dallas, TX 75001" -227738,USB-C Charging Cable,1,11.95,07/20/19 12:28,"690 14th St, San Francisco, CA 94016" -227739,Flatscreen TV,1,300,07/26/19 14:37,"550 Lake St, Boston, MA 02215" -227740,AA Batteries (4-pack),1,3.84,07/05/19 12:36,"906 Church St, San Francisco, CA 94016" -227741,Bose SoundSport Headphones,1,99.99,07/28/19 15:48,"655 5th St, New York City, NY 10001" -227742,Flatscreen TV,1,300,07/12/19 21:29,"476 Wilson St, Portland, OR 97035" -227743,Wired Headphones,1,11.99,07/30/19 19:37,"965 West St, Atlanta, GA 30301" -227744,Lightning Charging Cable,1,14.95,07/13/19 18:35,"944 Lake St, Dallas, TX 75001" -227745,Wired Headphones,2,11.99,07/26/19 12:21,"658 Jackson St, Boston, MA 02215" -227746,Lightning Charging Cable,1,14.95,07/03/19 21:49,"600 Highland St, New York City, NY 10001" -227747,27in 4K Gaming Monitor,1,389.99,07/24/19 18:18,"468 14th St, Los Angeles, CA 90001" -227748,USB-C Charging Cable,1,11.95,07/06/19 07:37,"440 Willow St, New York City, NY 10001" -227749,Apple Airpods Headphones,1,150,07/24/19 12:52,"873 13th St, Dallas, TX 75001" -227750,USB-C Charging Cable,1,11.95,07/30/19 22:05,"933 Willow St, Seattle, WA 98101" -227751,Bose SoundSport Headphones,1,99.99,07/15/19 00:59,"662 6th St, Atlanta, GA 30301" -227752,iPhone,1,700,07/30/19 07:33,"956 Spruce St, Los Angeles, CA 90001" -227753,Google Phone,1,600,07/28/19 21:58,"518 9th St, New York City, NY 10001" -227753,Lightning Charging Cable,1,14.95,07/28/19 21:58,"518 9th St, New York City, NY 10001" -227754,Bose SoundSport Headphones,1,99.99,07/14/19 21:04,"867 Lake St, New York City, NY 10001" -227755,Lightning Charging Cable,1,14.95,07/25/19 13:59,"238 Adams St, Los Angeles, CA 90001" -227755,USB-C Charging Cable,1,11.95,07/25/19 13:59,"238 Adams St, Los Angeles, CA 90001" -227756,USB-C Charging Cable,2,11.95,07/11/19 07:20,"27 Walnut St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -227757,Lightning Charging Cable,1,14.95,07/20/19 18:12,"17 6th St, Seattle, WA 98101" -227758,AAA Batteries (4-pack),1,2.99,07/26/19 12:19,"123 1st St, San Francisco, CA 94016" -227759,Lightning Charging Cable,1,14.95,07/16/19 17:26,"486 Wilson St, Los Angeles, CA 90001" -227760,Google Phone,1,600,07/22/19 18:02,"879 Hickory St, Los Angeles, CA 90001" -227761,AAA Batteries (4-pack),1,2.99,07/15/19 21:37,"127 Meadow St, Portland, OR 97035" -227762,USB-C Charging Cable,1,11.95,07/09/19 18:56,"125 1st St, Seattle, WA 98101" -227763,Google Phone,1,600,07/12/19 13:37,"395 Cherry St, Dallas, TX 75001" -227764,Wired Headphones,1,11.99,07/31/19 20:06,"139 6th St, Austin, TX 73301" -227765,USB-C Charging Cable,1,11.95,07/22/19 20:21,"129 1st St, Boston, MA 02215" -227766,iPhone,1,700,07/27/19 20:39,"223 5th St, Atlanta, GA 30301" -227767,Macbook Pro Laptop,1,1700,07/12/19 20:25,"528 Hill St, Boston, MA 02215" -227768,27in 4K Gaming Monitor,1,389.99,07/16/19 07:37,"983 Maple St, San Francisco, CA 94016" -227769,AAA Batteries (4-pack),1,2.99,07/13/19 18:18,"319 Walnut St, Los Angeles, CA 90001" -227770,AAA Batteries (4-pack),1,2.99,07/29/19 15:55,"14 Dogwood St, Portland, OR 97035" -227771,Wired Headphones,1,11.99,07/13/19 10:20,"265 North St, New York City, NY 10001" -227772,Macbook Pro Laptop,1,1700,07/23/19 18:39,"495 Wilson St, New York City, NY 10001" -227773,USB-C Charging Cable,1,11.95,07/07/19 18:33,"323 Hickory St, Atlanta, GA 30301" -227774,iPhone,1,700,07/19/19 17:35,"669 13th St, Los Angeles, CA 90001" -227774,Apple Airpods Headphones,1,150,07/19/19 17:35,"669 13th St, Los Angeles, CA 90001" -227775,Wired Headphones,2,11.99,07/19/19 16:18,"31 West St, Los Angeles, CA 90001" -227776,USB-C Charging Cable,1,11.95,07/08/19 00:07,"206 Madison St, San Francisco, CA 94016" -227777,27in 4K Gaming Monitor,1,389.99,07/10/19 23:43,"947 7th St, Austin, TX 73301" -227778,27in FHD Monitor,1,149.99,07/31/19 19:58,"620 North St, Seattle, WA 98101" -227779,ThinkPad Laptop,1,999.99,07/08/19 09:41,"253 Lakeview St, Atlanta, GA 30301" -227780,AAA Batteries (4-pack),1,2.99,07/19/19 12:30,"434 Elm St, Atlanta, GA 30301" -227781,27in FHD Monitor,1,149.99,07/05/19 11:05,"183 9th St, San Francisco, CA 94016" -227782,AAA Batteries (4-pack),2,2.99,07/12/19 00:47,"980 Highland St, Seattle, WA 98101" -227783,AAA Batteries (4-pack),1,2.99,07/18/19 16:48,"780 Ridge St, Austin, TX 73301" -227784,USB-C Charging Cable,1,11.95,07/17/19 12:18,"763 7th St, San Francisco, CA 94016" -227784,Wired Headphones,1,11.99,07/17/19 12:18,"763 7th St, San Francisco, CA 94016" -227785,AAA Batteries (4-pack),1,2.99,07/29/19 15:11,"295 Jackson St, Portland, ME 04101" -227786,27in 4K Gaming Monitor,1,389.99,07/16/19 14:21,"902 River St, New York City, NY 10001" -227787,Wired Headphones,1,11.99,07/18/19 08:35,"739 Ridge St, Dallas, TX 75001" -227788,AA Batteries (4-pack),1,3.84,07/21/19 21:35,"904 Elm St, San Francisco, CA 94016" -227789,Apple Airpods Headphones,1,150,07/25/19 21:03,"751 Cherry St, Los Angeles, CA 90001" -227790,Flatscreen TV,1,300,07/03/19 20:00,"957 Adams St, Dallas, TX 75001" -227791,Wired Headphones,1,11.99,07/13/19 16:36,"194 South St, Austin, TX 73301" -227792,Lightning Charging Cable,1,14.95,07/13/19 14:01,"471 Jefferson St, Dallas, TX 75001" -227793,USB-C Charging Cable,2,11.95,07/01/19 21:04,"329 Hill St, New York City, NY 10001" -227794,AA Batteries (4-pack),2,3.84,07/27/19 22:02,"636 9th St, Los Angeles, CA 90001" -227795,Vareebadd Phone,1,400,07/26/19 18:38,"733 Johnson St, San Francisco, CA 94016" -227796,Lightning Charging Cable,1,14.95,07/25/19 16:41,"960 Main St, San Francisco, CA 94016" -227797,AA Batteries (4-pack),1,3.84,07/13/19 06:58,"719 Jefferson St, Austin, TX 73301" -227798,27in 4K Gaming Monitor,1,389.99,07/21/19 15:40,"27 Forest St, Boston, MA 02215" -227799,27in FHD Monitor,1,149.99,07/06/19 10:33,"255 Jackson St, Boston, MA 02215" -227800,Bose SoundSport Headphones,1,99.99,07/19/19 07:47,"429 Madison St, San Francisco, CA 94016" -227801,ThinkPad Laptop,1,999.99,07/26/19 18:40,"739 11th St, San Francisco, CA 94016" -227802,Wired Headphones,1,11.99,07/28/19 14:48,"846 1st St, Seattle, WA 98101" -227803,Apple Airpods Headphones,1,150,07/12/19 13:21,"87 14th St, New York City, NY 10001" -227804,Bose SoundSport Headphones,1,99.99,07/07/19 19:01,"943 7th St, San Francisco, CA 94016" -227805,Google Phone,1,600,07/20/19 07:34,"559 North St, Boston, MA 02215" -227806,AA Batteries (4-pack),1,3.84,07/04/19 14:45,"928 Jackson St, Los Angeles, CA 90001" -227807,AA Batteries (4-pack),3,3.84,07/13/19 09:02,"176 Maple St, Los Angeles, CA 90001" -227808,Bose SoundSport Headphones,1,99.99,07/05/19 13:05,"240 Walnut St, New York City, NY 10001" -227809,Apple Airpods Headphones,1,150,07/11/19 09:21,"343 1st St, Portland, OR 97035" -227809,USB-C Charging Cable,2,11.95,07/11/19 09:21,"343 1st St, Portland, OR 97035" -227810,AAA Batteries (4-pack),1,2.99,07/15/19 23:44,"490 1st St, New York City, NY 10001" -227811,Apple Airpods Headphones,1,150,07/02/19 07:56,"826 11th St, San Francisco, CA 94016" -227812,Wired Headphones,1,11.99,07/02/19 13:29,"27 Forest St, Los Angeles, CA 90001" -227813,USB-C Charging Cable,1,11.95,07/15/19 07:37,"647 North St, Los Angeles, CA 90001" -227814,ThinkPad Laptop,1,999.99,07/06/19 07:16,"868 Forest St, San Francisco, CA 94016" -227815,AA Batteries (4-pack),2,3.84,07/21/19 12:14,"213 Adams St, Atlanta, GA 30301" -227816,AAA Batteries (4-pack),3,2.99,07/26/19 16:12,"976 Pine St, Boston, MA 02215" -227817,Bose SoundSport Headphones,1,99.99,07/05/19 15:03,"479 1st St, New York City, NY 10001" -227818,27in FHD Monitor,1,149.99,07/22/19 22:06,"418 8th St, New York City, NY 10001" -227819,Lightning Charging Cable,1,14.95,07/05/19 18:37,"826 Ridge St, New York City, NY 10001" -227820,AA Batteries (4-pack),1,3.84,07/02/19 14:50,"864 Walnut St, Portland, OR 97035" -227821,Wired Headphones,1,11.99,07/01/19 22:42,"621 6th St, New York City, NY 10001" -227821,27in FHD Monitor,1,149.99,07/01/19 22:42,"621 6th St, New York City, NY 10001" -227822,Bose SoundSport Headphones,1,99.99,07/26/19 17:26,"363 8th St, Portland, OR 97035" -227823,iPhone,1,700,07/17/19 07:58,"325 6th St, Austin, TX 73301" -227824,Wired Headphones,1,11.99,07/26/19 18:10,"443 Cherry St, Los Angeles, CA 90001" -227825,Flatscreen TV,1,300,07/22/19 11:23,"565 Hill St, San Francisco, CA 94016" -227826,iPhone,1,700,07/25/19 16:47,"185 Spruce St, Dallas, TX 75001" -227827,AAA Batteries (4-pack),1,2.99,07/19/19 13:40,"5 Cedar St, Dallas, TX 75001" -227828,AA Batteries (4-pack),1,3.84,07/24/19 23:17,"746 Ridge St, Dallas, TX 75001" -227828,34in Ultrawide Monitor,1,379.99,07/24/19 23:17,"746 Ridge St, Dallas, TX 75001" -227829,Apple Airpods Headphones,1,150,07/06/19 15:55,"802 9th St, San Francisco, CA 94016" -227830,AAA Batteries (4-pack),1,2.99,07/06/19 10:45,"15 Jackson St, Portland, OR 97035" -227831,Lightning Charging Cable,1,14.95,07/06/19 12:00,"201 Sunset St, Portland, OR 97035" -227832,Wired Headphones,1,11.99,07/19/19 15:51,"612 13th St, Seattle, WA 98101" -227833,Vareebadd Phone,1,400,07/29/19 14:47,"44 4th St, San Francisco, CA 94016" -227834,Bose SoundSport Headphones,1,99.99,07/15/19 19:46,"603 Maple St, Los Angeles, CA 90001" -227835,Bose SoundSport Headphones,1,99.99,07/10/19 14:05,"906 Hickory St, New York City, NY 10001" -227836,AA Batteries (4-pack),1,3.84,07/27/19 16:55,"779 Park St, Boston, MA 02215" -227837,20in Monitor,1,109.99,07/24/19 18:01,"360 6th St, Atlanta, GA 30301" -227838,Lightning Charging Cable,1,14.95,07/13/19 10:10,"853 Park St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -227839,USB-C Charging Cable,1,11.95,07/28/19 17:21,"343 7th St, Dallas, TX 75001" -227840,USB-C Charging Cable,1,11.95,07/01/19 10:31,"735 Hickory St, Boston, MA 02215" -227841,Vareebadd Phone,1,400,07/05/19 06:41,"159 Forest St, San Francisco, CA 94016" -227842,Bose SoundSport Headphones,1,99.99,07/27/19 20:49,"445 1st St, San Francisco, CA 94016" -227843,USB-C Charging Cable,1,11.95,07/08/19 20:39,"807 Ridge St, Los Angeles, CA 90001" -227843,Wired Headphones,1,11.99,07/08/19 20:39,"807 Ridge St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -227844,27in FHD Monitor,1,149.99,07/24/19 14:02,"985 Cherry St, Los Angeles, CA 90001" -227845,USB-C Charging Cable,1,11.95,07/04/19 21:05,"159 Maple St, San Francisco, CA 94016" -227846,AA Batteries (4-pack),3,3.84,07/16/19 20:30,"625 10th St, Dallas, TX 75001" -227847,Apple Airpods Headphones,1,150,07/11/19 00:19,"572 2nd St, Los Angeles, CA 90001" -227848,Wired Headphones,1,11.99,07/28/19 11:10,"622 2nd St, Atlanta, GA 30301" -227849,USB-C Charging Cable,1,11.95,07/06/19 11:26,"28 West St, Boston, MA 02215" -227850,Wired Headphones,1,11.99,07/18/19 14:08,"220 Hickory St, Boston, MA 02215" -227851,Apple Airpods Headphones,1,150,07/09/19 15:32,"177 14th St, Austin, TX 73301" -227852,Lightning Charging Cable,2,14.95,07/15/19 10:23,"64 Forest St, Atlanta, GA 30301" -227853,LG Washing Machine,1,600.0,07/27/19 13:15,"420 2nd St, Los Angeles, CA 90001" -227854,Apple Airpods Headphones,1,150,07/19/19 13:52,"362 6th St, New York City, NY 10001" -227855,Vareebadd Phone,1,400,07/03/19 19:14,"799 Park St, Los Angeles, CA 90001" -227856,27in 4K Gaming Monitor,1,389.99,07/23/19 05:46,"811 1st St, Seattle, WA 98101" -227857,Wired Headphones,1,11.99,07/01/19 22:11,"949 Park St, Seattle, WA 98101" -227858,Lightning Charging Cable,1,14.95,07/16/19 09:07,"109 Hickory St, Austin, TX 73301" -227859,Wired Headphones,1,11.99,07/10/19 11:38,"642 5th St, New York City, NY 10001" -227860,iPhone,1,700,07/08/19 18:36,"643 Hill St, Boston, MA 02215" -227861,Apple Airpods Headphones,1,150,07/09/19 20:35,"785 11th St, New York City, NY 10001" -227862,27in 4K Gaming Monitor,1,389.99,07/02/19 08:19,"332 Pine St, Los Angeles, CA 90001" -227863,iPhone,1,700,07/16/19 09:33,"163 Willow St, San Francisco, CA 94016" -227864,AAA Batteries (4-pack),2,2.99,07/21/19 19:53,"950 Wilson St, Boston, MA 02215" -227865,AA Batteries (4-pack),1,3.84,07/27/19 20:58,"204 Adams St, Atlanta, GA 30301" -227866,Wired Headphones,1,11.99,07/29/19 17:41,"49 Wilson St, San Francisco, CA 94016" -227867,Flatscreen TV,1,300,07/02/19 20:14,"750 Pine St, San Francisco, CA 94016" -227868,Wired Headphones,1,11.99,07/26/19 06:00,"921 Washington St, Boston, MA 02215" -227869,AAA Batteries (4-pack),2,2.99,07/13/19 10:52,"383 11th St, New York City, NY 10001" -227870,27in FHD Monitor,1,149.99,07/31/19 14:37,"131 Maple St, Austin, TX 73301" -227871,Apple Airpods Headphones,1,150,07/23/19 07:50,"201 Washington St, San Francisco, CA 94016" -227872,Wired Headphones,1,11.99,07/30/19 15:07,"272 Pine St, New York City, NY 10001" -227873,Macbook Pro Laptop,1,1700,07/29/19 07:05,"628 Washington St, Los Angeles, CA 90001" -227874,Lightning Charging Cable,2,14.95,07/04/19 09:01,"533 Chestnut St, Boston, MA 02215" -227875,Lightning Charging Cable,1,14.95,07/11/19 17:43,"761 Washington St, Los Angeles, CA 90001" -227876,Wired Headphones,1,11.99,07/10/19 20:15,"557 Pine St, Boston, MA 02215" -227877,AA Batteries (4-pack),3,3.84,07/04/19 11:56,"708 1st St, Seattle, WA 98101" -227878,Wired Headphones,1,11.99,07/16/19 20:06,"608 Forest St, Los Angeles, CA 90001" -227879,27in 4K Gaming Monitor,1,389.99,07/22/19 18:30,"939 Church St, Los Angeles, CA 90001" -227880,34in Ultrawide Monitor,1,379.99,07/15/19 19:04,"764 11th St, San Francisco, CA 94016" -227881,iPhone,1,700,07/26/19 14:01,"223 Washington St, Seattle, WA 98101" -227881,Lightning Charging Cable,1,14.95,07/26/19 14:01,"223 Washington St, Seattle, WA 98101" -227882,AA Batteries (4-pack),3,3.84,07/17/19 19:22,"239 1st St, Boston, MA 02215" -227883,Apple Airpods Headphones,1,150,07/13/19 18:36,"659 13th St, Seattle, WA 98101" -227884,Bose SoundSport Headphones,1,99.99,07/09/19 19:24,"163 Pine St, Portland, OR 97035" -227885,AA Batteries (4-pack),1,3.84,07/15/19 14:41,"3 13th St, Portland, OR 97035" -227886,Lightning Charging Cable,1,14.95,07/26/19 10:02,"59 Walnut St, New York City, NY 10001" -227887,Wired Headphones,1,11.99,07/10/19 21:28,"474 Hickory St, Austin, TX 73301" -227888,Lightning Charging Cable,1,14.95,07/24/19 12:56,"479 13th St, Portland, OR 97035" -227889,Apple Airpods Headphones,1,150,07/01/19 21:20,"173 North St, Boston, MA 02215" -227890,Vareebadd Phone,1,400,07/08/19 01:33,"766 2nd St, Seattle, WA 98101" -227890,Wired Headphones,1,11.99,07/08/19 01:33,"766 2nd St, Seattle, WA 98101" -227891,AAA Batteries (4-pack),1,2.99,07/24/19 16:12,"399 River St, Portland, OR 97035" -227892,AA Batteries (4-pack),1,3.84,07/18/19 16:16,"54 Highland St, Dallas, TX 75001" -227893,Google Phone,1,600,07/10/19 09:16,"963 South St, New York City, NY 10001" -227893,Wired Headphones,1,11.99,07/10/19 09:16,"963 South St, New York City, NY 10001" -227894,USB-C Charging Cable,1,11.95,07/06/19 08:51,"60 Wilson St, New York City, NY 10001" -227895,Google Phone,1,600,07/08/19 11:11,"392 Jefferson St, Dallas, TX 75001" -227895,USB-C Charging Cable,1,11.95,07/08/19 11:11,"392 Jefferson St, Dallas, TX 75001" -227896,USB-C Charging Cable,2,11.95,07/28/19 07:33,"604 Wilson St, Los Angeles, CA 90001" -227897,Apple Airpods Headphones,1,150,07/06/19 09:43,"283 Elm St, Dallas, TX 75001" -227898,AAA Batteries (4-pack),2,2.99,07/05/19 10:15,"749 Johnson St, New York City, NY 10001" -227899,Bose SoundSport Headphones,1,99.99,07/29/19 17:38,"388 Wilson St, San Francisco, CA 94016" -227900,Bose SoundSport Headphones,1,99.99,07/28/19 20:07,"678 Jackson St, San Francisco, CA 94016" -227901,Google Phone,1,600,07/04/19 20:22,"993 Walnut St, Portland, ME 04101" -227902,Bose SoundSport Headphones,1,99.99,07/21/19 17:45,"88 Walnut St, San Francisco, CA 94016" -227903,Lightning Charging Cable,1,14.95,07/19/19 17:34,"810 Center St, San Francisco, CA 94016" -227904,Lightning Charging Cable,1,14.95,07/01/19 21:05,"379 11th St, San Francisco, CA 94016" -227905,Apple Airpods Headphones,1,150,07/29/19 11:47,"905 4th St, San Francisco, CA 94016" -227906,Wired Headphones,2,11.99,07/30/19 02:38,"735 10th St, Portland, OR 97035" -227907,AAA Batteries (4-pack),1,2.99,07/31/19 20:21,"30 6th St, San Francisco, CA 94016" -227908,AA Batteries (4-pack),1,3.84,07/08/19 21:39,"515 Cherry St, San Francisco, CA 94016" -227909,USB-C Charging Cable,1,11.95,07/28/19 19:43,"500 13th St, Atlanta, GA 30301" -227910,AA Batteries (4-pack),1,3.84,07/25/19 11:24,"35 Center St, San Francisco, CA 94016" -227911,AAA Batteries (4-pack),1,2.99,07/24/19 23:57,"808 8th St, San Francisco, CA 94016" -227912,AA Batteries (4-pack),1,3.84,07/29/19 19:58,"55 Adams St, Los Angeles, CA 90001" -227913,AA Batteries (4-pack),1,3.84,07/25/19 15:58,"945 West St, New York City, NY 10001" -227914,Apple Airpods Headphones,1,150,07/11/19 09:36,"866 Pine St, San Francisco, CA 94016" -227915,Macbook Pro Laptop,1,1700,07/12/19 22:27,"664 Dogwood St, Los Angeles, CA 90001" -227916,Apple Airpods Headphones,1,150,07/04/19 15:43,"73 13th St, Los Angeles, CA 90001" -227917,AA Batteries (4-pack),1,3.84,07/18/19 08:23,"171 Sunset St, Los Angeles, CA 90001" -227918,34in Ultrawide Monitor,1,379.99,07/22/19 14:08,"910 8th St, Dallas, TX 75001" -227919,AAA Batteries (4-pack),1,2.99,07/31/19 00:22,"758 Maple St, San Francisco, CA 94016" -227920,27in 4K Gaming Monitor,1,389.99,07/28/19 11:10,"842 6th St, Los Angeles, CA 90001" -227921,AA Batteries (4-pack),1,3.84,07/23/19 12:36,"688 7th St, New York City, NY 10001" -227922,Bose SoundSport Headphones,1,99.99,07/28/19 00:12,"157 Dogwood St, San Francisco, CA 94016" -227923,34in Ultrawide Monitor,1,379.99,07/08/19 17:27,"516 Chestnut St, San Francisco, CA 94016" -227924,USB-C Charging Cable,1,11.95,07/04/19 10:09,"930 1st St, San Francisco, CA 94016" -227925,Lightning Charging Cable,1,14.95,07/27/19 15:56,"712 Madison St, Dallas, TX 75001" -227926,Lightning Charging Cable,1,14.95,07/05/19 13:12,"163 Hickory St, Boston, MA 02215" -227927,Bose SoundSport Headphones,1,99.99,07/15/19 12:01,"275 Cedar St, Seattle, WA 98101" -227928,Wired Headphones,1,11.99,07/19/19 19:54,"595 Cherry St, Boston, MA 02215" -227929,Apple Airpods Headphones,1,150,07/21/19 07:37,"659 Chestnut St, Los Angeles, CA 90001" -227930,Google Phone,1,600,07/21/19 13:36,"386 Center St, San Francisco, CA 94016" -227931,Apple Airpods Headphones,1,150,07/13/19 11:17,"72 1st St, Los Angeles, CA 90001" -227932,AA Batteries (4-pack),1,3.84,07/05/19 14:22,"864 Lakeview St, San Francisco, CA 94016" -227933,Macbook Pro Laptop,1,1700,07/21/19 15:11,"140 Hill St, Portland, OR 97035" -227934,AAA Batteries (4-pack),2,2.99,07/07/19 11:42,"166 West St, Dallas, TX 75001" -227935,Wired Headphones,2,11.99,07/13/19 15:16,"262 7th St, Boston, MA 02215" -227936,AAA Batteries (4-pack),1,2.99,07/15/19 11:37,"130 Ridge St, Austin, TX 73301" -227937,Wired Headphones,1,11.99,07/13/19 17:48,"814 Jefferson St, Los Angeles, CA 90001" -227938,34in Ultrawide Monitor,1,379.99,07/05/19 16:34,"668 Walnut St, Los Angeles, CA 90001" -227939,Lightning Charging Cable,1,14.95,07/11/19 12:28,"874 Pine St, Los Angeles, CA 90001" -227940,Google Phone,1,600,07/17/19 20:38,"925 14th St, Atlanta, GA 30301" -227940,USB-C Charging Cable,1,11.95,07/17/19 20:38,"925 14th St, Atlanta, GA 30301" -227941,Lightning Charging Cable,1,14.95,07/24/19 21:35,"922 West St, San Francisco, CA 94016" -227942,Flatscreen TV,1,300,07/23/19 20:00,"438 Walnut St, Los Angeles, CA 90001" -227943,Wired Headphones,2,11.99,07/21/19 19:57,"155 Walnut St, Boston, MA 02215" -227944,Apple Airpods Headphones,1,150,07/27/19 13:10,"201 Meadow St, San Francisco, CA 94016" -227945,AA Batteries (4-pack),1,3.84,07/24/19 19:31,"798 Sunset St, New York City, NY 10001" -227946,Lightning Charging Cable,1,14.95,07/16/19 15:03,"946 Madison St, Dallas, TX 75001" -227947,AA Batteries (4-pack),1,3.84,07/19/19 19:17,"541 12th St, Los Angeles, CA 90001" -227948,USB-C Charging Cable,1,11.95,07/29/19 15:42,"611 South St, New York City, NY 10001" -227949,USB-C Charging Cable,1,11.95,07/05/19 00:43,"815 Cedar St, Dallas, TX 75001" -227950,Macbook Pro Laptop,1,1700,07/14/19 07:43,"703 Cedar St, Austin, TX 73301" -227951,iPhone,1,700,07/04/19 11:37,"143 Lake St, Austin, TX 73301" -227952,27in 4K Gaming Monitor,1,389.99,07/15/19 19:56,"306 Highland St, San Francisco, CA 94016" -227953,Lightning Charging Cable,2,14.95,07/26/19 12:36,"867 Forest St, Los Angeles, CA 90001" -227954,Wired Headphones,1,11.99,07/31/19 08:01,"276 Washington St, Boston, MA 02215" -227955,Macbook Pro Laptop,1,1700,07/13/19 20:23,"113 Sunset St, Los Angeles, CA 90001" -227956,AAA Batteries (4-pack),1,2.99,07/10/19 09:34,"51 River St, New York City, NY 10001" -227957,Bose SoundSport Headphones,1,99.99,07/21/19 19:21,"44 5th St, Portland, OR 97035" -227958,AAA Batteries (4-pack),1,2.99,07/20/19 21:09,"606 Church St, San Francisco, CA 94016" -227959,iPhone,1,700,07/22/19 11:03,"346 Cherry St, San Francisco, CA 94016" -227960,USB-C Charging Cable,1,11.95,07/03/19 09:33,"730 Madison St, San Francisco, CA 94016" -227961,Wired Headphones,1,11.99,07/27/19 13:20,"375 Lakeview St, Portland, OR 97035" -227962,USB-C Charging Cable,1,11.95,07/24/19 12:24,"646 Jackson St, Boston, MA 02215" -227963,Lightning Charging Cable,1,14.95,07/05/19 17:07,"142 10th St, Portland, OR 97035" -227964,AA Batteries (4-pack),1,3.84,07/16/19 20:18,"289 11th St, New York City, NY 10001" -227965,Bose SoundSport Headphones,1,99.99,07/01/19 12:17,"614 Lakeview St, Portland, OR 97035" -227966,USB-C Charging Cable,1,11.95,07/14/19 05:13,"230 13th St, New York City, NY 10001" -227967,Google Phone,1,600,07/21/19 09:32,"777 Cedar St, Los Angeles, CA 90001" -227968,AA Batteries (4-pack),2,3.84,07/06/19 18:49,"103 Willow St, Los Angeles, CA 90001" -227969,Apple Airpods Headphones,1,150,07/30/19 02:08,"542 Walnut St, San Francisco, CA 94016" -227970,Vareebadd Phone,1,400,07/26/19 19:12,"294 Maple St, San Francisco, CA 94016" -227971,Flatscreen TV,1,300,07/19/19 19:32,"831 13th St, Boston, MA 02215" -227972,USB-C Charging Cable,1,11.95,07/14/19 06:16,"205 Jackson St, Austin, TX 73301" -227973,Lightning Charging Cable,1,14.95,07/21/19 18:55,"374 Pine St, Atlanta, GA 30301" -227974,ThinkPad Laptop,1,999.99,07/10/19 09:52,"746 5th St, Atlanta, GA 30301" -227975,27in 4K Gaming Monitor,1,389.99,07/04/19 17:36,"791 Ridge St, Boston, MA 02215" -227976,AAA Batteries (4-pack),2,2.99,07/07/19 18:43,"308 Hickory St, Boston, MA 02215" -227977,27in FHD Monitor,1,149.99,07/23/19 12:53,"696 Lake St, San Francisco, CA 94016" -227978,iPhone,1,700,07/04/19 15:56,"842 Hickory St, Boston, MA 02215" -227979,AA Batteries (4-pack),1,3.84,07/19/19 01:39,"661 River St, Boston, MA 02215" -227980,Lightning Charging Cable,1,14.95,07/15/19 11:13,"123 Hickory St, Atlanta, GA 30301" -227981,Apple Airpods Headphones,1,150,07/23/19 16:23,"509 River St, Portland, OR 97035" -227982,iPhone,1,700,07/22/19 19:01,"972 South St, San Francisco, CA 94016" -227982,Lightning Charging Cable,2,14.95,07/22/19 19:01,"972 South St, San Francisco, CA 94016" -227982,Apple Airpods Headphones,1,150,07/22/19 19:01,"972 South St, San Francisco, CA 94016" -227983,20in Monitor,1,109.99,07/10/19 08:59,"657 Jefferson St, New York City, NY 10001" -227984,Google Phone,1,600,07/22/19 11:25,"785 Hickory St, Los Angeles, CA 90001" -227984,USB-C Charging Cable,1,11.95,07/22/19 11:25,"785 Hickory St, Los Angeles, CA 90001" -227985,Google Phone,1,600,07/08/19 14:46,"818 Hickory St, New York City, NY 10001" -227986,Google Phone,1,600,07/07/19 13:42,"653 2nd St, New York City, NY 10001" -227987,Apple Airpods Headphones,1,150,07/18/19 03:41,"461 Ridge St, San Francisco, CA 94016" -227988,AAA Batteries (4-pack),1,2.99,07/08/19 18:37,"444 River St, New York City, NY 10001" -227989,USB-C Charging Cable,1,11.95,07/25/19 15:36,"777 8th St, New York City, NY 10001" -227990,Wired Headphones,1,11.99,07/26/19 11:21,"538 Forest St, Atlanta, GA 30301" -227991,AA Batteries (4-pack),1,3.84,07/18/19 14:10,"420 Spruce St, Boston, MA 02215" -227992,AA Batteries (4-pack),1,3.84,07/06/19 14:41,"464 Main St, Dallas, TX 75001" -227993,Macbook Pro Laptop,1,1700,07/23/19 10:28,"982 14th St, Dallas, TX 75001" -227994,Apple Airpods Headphones,1,150,07/22/19 07:39,"416 12th St, Atlanta, GA 30301" -227995,LG Washing Machine,1,600.0,07/12/19 06:31,"482 Meadow St, Seattle, WA 98101" -227996,USB-C Charging Cable,1,11.95,07/15/19 18:32,"703 Willow St, Los Angeles, CA 90001" -227997,Lightning Charging Cable,1,14.95,07/11/19 22:41,"151 Ridge St, New York City, NY 10001" -227998,AA Batteries (4-pack),1,3.84,07/27/19 15:17,"602 4th St, Austin, TX 73301" -227999,Lightning Charging Cable,1,14.95,07/07/19 13:23,"189 Forest St, Dallas, TX 75001" -228000,ThinkPad Laptop,1,999.99,07/04/19 19:12,"889 Ridge St, New York City, NY 10001" -228001,20in Monitor,1,109.99,07/09/19 22:06,"841 1st St, Los Angeles, CA 90001" -228002,AAA Batteries (4-pack),5,2.99,07/10/19 11:15,"749 Lakeview St, San Francisco, CA 94016" -228003,Vareebadd Phone,1,400,07/16/19 13:48,"508 Maple St, New York City, NY 10001" -228004,Lightning Charging Cable,1,14.95,07/04/19 13:11,"956 Sunset St, Dallas, TX 75001" -228005,Bose SoundSport Headphones,1,99.99,07/10/19 16:33,"793 Pine St, Los Angeles, CA 90001" -228006,iPhone,1,700,07/31/19 19:25,"897 6th St, Atlanta, GA 30301" -228007,20in Monitor,1,109.99,07/11/19 20:59,"192 Maple St, New York City, NY 10001" -228008,USB-C Charging Cable,1,11.95,07/06/19 12:19,"836 Johnson St, Austin, TX 73301" -228009,Google Phone,1,600,07/20/19 07:20,"16 Chestnut St, San Francisco, CA 94016" -228009,USB-C Charging Cable,1,11.95,07/20/19 07:20,"16 Chestnut St, San Francisco, CA 94016" -228010,Macbook Pro Laptop,1,1700,07/24/19 07:12,"939 Dogwood St, San Francisco, CA 94016" -228011,AA Batteries (4-pack),1,3.84,07/12/19 16:47,"679 Hickory St, Dallas, TX 75001" -228011,Lightning Charging Cable,1,14.95,07/12/19 16:47,"679 Hickory St, Dallas, TX 75001" -228012,USB-C Charging Cable,1,11.95,07/04/19 00:08,"558 Spruce St, Atlanta, GA 30301" -228013,USB-C Charging Cable,2,11.95,07/04/19 19:11,"176 1st St, New York City, NY 10001" -228014,AA Batteries (4-pack),1,3.84,07/16/19 19:04,"12 Pine St, San Francisco, CA 94016" -228015,AA Batteries (4-pack),1,3.84,07/06/19 16:53,"162 Ridge St, Boston, MA 02215" -228015,AA Batteries (4-pack),1,3.84,07/06/19 16:53,"162 Ridge St, Boston, MA 02215" -228016,Apple Airpods Headphones,1,150,07/21/19 12:03,"328 River St, Los Angeles, CA 90001" -228017,AA Batteries (4-pack),1,3.84,07/21/19 14:35,"105 Highland St, San Francisco, CA 94016" -228018,27in 4K Gaming Monitor,1,389.99,07/10/19 14:06,"387 Cedar St, Los Angeles, CA 90001" -228019,27in 4K Gaming Monitor,1,389.99,07/01/19 17:43,"997 Lakeview St, Los Angeles, CA 90001" -228020,Flatscreen TV,1,300,07/05/19 14:32,"886 Sunset St, Atlanta, GA 30301" -228021,Bose SoundSport Headphones,1,99.99,07/22/19 18:40,"243 Maple St, Portland, OR 97035" -228022,AA Batteries (4-pack),1,3.84,07/06/19 22:14,"379 Adams St, San Francisco, CA 94016" -228023,Bose SoundSport Headphones,1,99.99,07/28/19 09:34,"423 South St, Austin, TX 73301" -228024,Apple Airpods Headphones,1,150,07/27/19 04:52,"994 Center St, Boston, MA 02215" -228025,Apple Airpods Headphones,1,150,07/04/19 11:30,"261 River St, Seattle, WA 98101" -228026,Apple Airpods Headphones,1,150,07/18/19 23:18,"797 Wilson St, Seattle, WA 98101" -228027,Flatscreen TV,1,300,07/12/19 18:28,"170 7th St, Boston, MA 02215" -228028,27in FHD Monitor,1,149.99,07/01/19 09:30,"66 10th St, San Francisco, CA 94016" -228029,iPhone,1,700,07/09/19 20:18,"643 Maple St, Boston, MA 02215" -228029,Apple Airpods Headphones,1,150,07/09/19 20:18,"643 Maple St, Boston, MA 02215" -228030,USB-C Charging Cable,1,11.95,07/01/19 18:09,"182 Cherry St, New York City, NY 10001" -228031,AA Batteries (4-pack),2,3.84,07/24/19 19:35,"703 5th St, San Francisco, CA 94016" -228032,Wired Headphones,1,11.99,07/18/19 08:30,"273 Elm St, Los Angeles, CA 90001" -228033,Google Phone,1,600,07/16/19 12:18,"789 Lake St, Boston, MA 02215" -228034,AAA Batteries (4-pack),1,2.99,07/13/19 12:40,"875 Adams St, San Francisco, CA 94016" -228035,ThinkPad Laptop,1,999.99,07/16/19 11:47,"752 Dogwood St, New York City, NY 10001" -228036,AA Batteries (4-pack),1,3.84,07/22/19 19:38,"645 Hickory St, Los Angeles, CA 90001" -228037,Wired Headphones,1,11.99,07/27/19 14:49,"468 Elm St, Los Angeles, CA 90001" -228038,Google Phone,1,600,07/06/19 05:29,"552 2nd St, New York City, NY 10001" -228039,Apple Airpods Headphones,1,150,07/03/19 18:50,"920 Walnut St, Boston, MA 02215" -228040,20in Monitor,1,109.99,07/19/19 13:01,"339 Cedar St, Dallas, TX 75001" -228041,Lightning Charging Cable,1,14.95,07/02/19 12:27,"647 Pine St, San Francisco, CA 94016" -228042,iPhone,1,700,07/13/19 00:05,"343 Pine St, Atlanta, GA 30301" -228043,20in Monitor,1,109.99,07/29/19 00:21,"564 Willow St, San Francisco, CA 94016" -228044,Wired Headphones,1,11.99,07/30/19 18:10,"186 11th St, Portland, OR 97035" -228045,20in Monitor,1,109.99,07/13/19 13:09,"717 7th St, Portland, OR 97035" -228046,AA Batteries (4-pack),1,3.84,07/24/19 19:31,"617 Church St, San Francisco, CA 94016" -228047,Lightning Charging Cable,1,14.95,07/14/19 11:13,"133 Park St, Boston, MA 02215" -228048,iPhone,1,700,07/22/19 22:11,"389 North St, Dallas, TX 75001" -228049,20in Monitor,1,109.99,07/27/19 07:34,"493 10th St, Seattle, WA 98101" -228050,AAA Batteries (4-pack),1,2.99,07/07/19 20:43,"475 Adams St, Seattle, WA 98101" -228051,27in FHD Monitor,1,149.99,07/24/19 18:07,"882 11th St, Atlanta, GA 30301" -228052,Vareebadd Phone,1,400,07/24/19 11:32,"525 Maple St, Boston, MA 02215" -228053,AAA Batteries (4-pack),1,2.99,07/28/19 13:18,"536 8th St, Portland, OR 97035" -228054,iPhone,1,700,07/17/19 14:24,"957 Willow St, New York City, NY 10001" -228055,AAA Batteries (4-pack),3,2.99,07/23/19 14:27,"17 Dogwood St, San Francisco, CA 94016" -228056,AA Batteries (4-pack),1,3.84,07/19/19 10:32,"50 Center St, Los Angeles, CA 90001" -228057,Bose SoundSport Headphones,1,99.99,07/03/19 21:53,"97 2nd St, San Francisco, CA 94016" -228058,Bose SoundSport Headphones,1,99.99,07/29/19 14:28,"919 South St, Austin, TX 73301" -228059,27in FHD Monitor,1,149.99,07/11/19 17:04,"363 Lakeview St, Portland, OR 97035" -228060,USB-C Charging Cable,1,11.95,07/11/19 20:52,"817 Wilson St, New York City, NY 10001" -228061,Lightning Charging Cable,1,14.95,07/13/19 22:16,"348 13th St, Seattle, WA 98101" -228062,USB-C Charging Cable,1,11.95,07/22/19 20:14,"679 Highland St, Boston, MA 02215" -228063,Wired Headphones,1,11.99,07/15/19 11:03,"299 9th St, Austin, TX 73301" -228064,Macbook Pro Laptop,1,1700,07/15/19 15:52,"317 Madison St, Seattle, WA 98101" -228065,27in FHD Monitor,1,149.99,07/09/19 05:39,"12 West St, New York City, NY 10001" -228066,Lightning Charging Cable,2,14.95,07/24/19 13:45,"202 Lakeview St, Dallas, TX 75001" -228067,Lightning Charging Cable,1,14.95,07/21/19 15:17,"417 North St, San Francisco, CA 94016" -228068,Wired Headphones,1,11.99,07/18/19 11:08,"598 River St, Atlanta, GA 30301" -228069,27in FHD Monitor,1,149.99,07/01/19 17:50,"31 Dogwood St, Los Angeles, CA 90001" -228070,Apple Airpods Headphones,1,150,07/07/19 15:16,"625 Dogwood St, Seattle, WA 98101" -228071,Lightning Charging Cable,1,14.95,07/13/19 21:01,"915 Willow St, Portland, OR 97035" -228072,Flatscreen TV,1,300,07/24/19 11:31,"944 Lakeview St, Atlanta, GA 30301" -228073,USB-C Charging Cable,1,11.95,07/01/19 23:18,"264 South St, Dallas, TX 75001" -228074,Apple Airpods Headphones,1,150,07/13/19 15:43,"527 Church St, Los Angeles, CA 90001" -228075,Macbook Pro Laptop,1,1700,07/03/19 20:30,"196 South St, San Francisco, CA 94016" -228076,Lightning Charging Cable,1,14.95,07/21/19 21:05,"640 7th St, Los Angeles, CA 90001" -228077,27in FHD Monitor,1,149.99,07/31/19 13:29,"324 Maple St, San Francisco, CA 94016" -228078,Lightning Charging Cable,1,14.95,07/22/19 12:57,"3 Pine St, Atlanta, GA 30301" -228079,Apple Airpods Headphones,1,150,07/28/19 22:32,"545 Lake St, Los Angeles, CA 90001" -228080,iPhone,1,700,07/31/19 13:10,"431 9th St, Los Angeles, CA 90001" -228081,AAA Batteries (4-pack),1,2.99,07/08/19 11:08,"197 Cherry St, Los Angeles, CA 90001" -228082,Bose SoundSport Headphones,1,99.99,07/22/19 22:35,"839 South St, Portland, OR 97035" -228083,Apple Airpods Headphones,1,150,07/26/19 22:27,"803 West St, Boston, MA 02215" -228084,27in FHD Monitor,1,149.99,07/03/19 11:01,"625 Park St, Los Angeles, CA 90001" -228085,27in 4K Gaming Monitor,1,389.99,07/22/19 16:18,"504 Madison St, San Francisco, CA 94016" -228086,AAA Batteries (4-pack),1,2.99,07/30/19 15:37,"827 Elm St, Los Angeles, CA 90001" -228087,27in FHD Monitor,1,149.99,07/04/19 17:26,"258 South St, San Francisco, CA 94016" -228088,AA Batteries (4-pack),1,3.84,07/20/19 20:44,"563 Center St, Portland, OR 97035" -228089,Wired Headphones,1,11.99,07/17/19 19:18,"251 Sunset St, Austin, TX 73301" -228090,20in Monitor,1,109.99,07/19/19 18:12,"185 9th St, Seattle, WA 98101" -228091,Lightning Charging Cable,1,14.95,07/26/19 21:41,"260 Dogwood St, Atlanta, GA 30301" -228092,Macbook Pro Laptop,1,1700,07/01/19 07:12,"835 Cedar St, San Francisco, CA 94016" -228093,iPhone,1,700,07/21/19 15:07,"359 Hickory St, San Francisco, CA 94016" -228094,27in 4K Gaming Monitor,1,389.99,07/08/19 11:22,"586 Lakeview St, Portland, OR 97035" -228095,LG Dryer,1,600.0,07/21/19 17:50,"81 Walnut St, Dallas, TX 75001" -228096,AA Batteries (4-pack),1,3.84,07/23/19 14:06,"166 Jefferson St, San Francisco, CA 94016" -228097,AAA Batteries (4-pack),1,2.99,07/25/19 11:29,"7 Walnut St, Boston, MA 02215" -228098,AA Batteries (4-pack),1,3.84,07/21/19 21:17,"596 Willow St, Boston, MA 02215" -228099,Bose SoundSport Headphones,1,99.99,07/17/19 10:49,"582 14th St, Boston, MA 02215" -228100,Macbook Pro Laptop,1,1700,07/23/19 21:37,"735 Sunset St, San Francisco, CA 94016" -228101,Google Phone,1,600,07/23/19 09:11,"58 Sunset St, Boston, MA 02215" -228102,USB-C Charging Cable,1,11.95,07/17/19 13:26,"309 13th St, Los Angeles, CA 90001" -228103,Lightning Charging Cable,1,14.95,07/22/19 19:51,"789 Cherry St, Los Angeles, CA 90001" -228104,AAA Batteries (4-pack),1,2.99,07/14/19 15:29,"802 4th St, Austin, TX 73301" -228105,USB-C Charging Cable,1,11.95,07/09/19 17:02,"62 Cedar St, Los Angeles, CA 90001" -228106,20in Monitor,1,109.99,07/05/19 18:16,"428 Willow St, San Francisco, CA 94016" -228107,Lightning Charging Cable,1,14.95,07/16/19 12:10,"468 Madison St, Los Angeles, CA 90001" -228108,Lightning Charging Cable,1,14.95,07/27/19 10:33,"317 Spruce St, Boston, MA 02215" -228109,27in 4K Gaming Monitor,1,389.99,07/08/19 01:26,"567 Lincoln St, San Francisco, CA 94016" -228110,Apple Airpods Headphones,1,150,07/14/19 03:53,"229 Chestnut St, Dallas, TX 75001" -228111,Lightning Charging Cable,1,14.95,07/09/19 12:47,"268 Forest St, Seattle, WA 98101" -228112,34in Ultrawide Monitor,1,379.99,07/13/19 18:04,"372 Adams St, Dallas, TX 75001" -228113,Apple Airpods Headphones,1,150,07/09/19 19:03,"605 Elm St, Atlanta, GA 30301" -228114,USB-C Charging Cable,1,11.95,07/07/19 14:20,"736 Hickory St, San Francisco, CA 94016" -228115,Flatscreen TV,1,300,07/15/19 11:32,"692 Lakeview St, Los Angeles, CA 90001" -228116,Macbook Pro Laptop,1,1700,07/01/19 07:36,"637 Washington St, Portland, OR 97035" -228117,Wired Headphones,2,11.99,07/03/19 21:42,"936 Hickory St, San Francisco, CA 94016" -228118,iPhone,1,700,07/11/19 18:49,"742 West St, Portland, OR 97035" -228119,Wired Headphones,1,11.99,07/12/19 12:03,"94 9th St, Los Angeles, CA 90001" -228120,LG Dryer,1,600.0,07/24/19 12:21,"464 12th St, Los Angeles, CA 90001" -228121,Bose SoundSport Headphones,1,99.99,07/09/19 19:33,"469 Lincoln St, New York City, NY 10001" -228122,AAA Batteries (4-pack),1,2.99,07/15/19 13:29,"525 9th St, Los Angeles, CA 90001" -228123,Macbook Pro Laptop,1,1700,07/13/19 18:08,"659 Meadow St, Austin, TX 73301" -228124,Apple Airpods Headphones,1,150,07/16/19 12:13,"921 Park St, San Francisco, CA 94016" -228125,iPhone,1,700,07/28/19 14:27,"684 Cedar St, San Francisco, CA 94016" -228126,AAA Batteries (4-pack),1,2.99,07/02/19 17:21,"910 Forest St, New York City, NY 10001" -228127,Lightning Charging Cable,1,14.95,07/26/19 18:27,"564 Walnut St, Dallas, TX 75001" -228128,AA Batteries (4-pack),1,3.84,07/20/19 08:24,"6 Pine St, San Francisco, CA 94016" -228129,USB-C Charging Cable,1,11.95,07/30/19 01:03,"942 Madison St, Atlanta, GA 30301" -228130,AA Batteries (4-pack),1,3.84,07/06/19 11:39,"837 Jackson St, Boston, MA 02215" -228131,Lightning Charging Cable,1,14.95,07/16/19 21:32,"261 West St, Seattle, WA 98101" -228132,USB-C Charging Cable,1,11.95,07/24/19 00:28,"285 North St, Los Angeles, CA 90001" -228133,Apple Airpods Headphones,1,150,07/02/19 00:24,"74 Highland St, San Francisco, CA 94016" -228134,AA Batteries (4-pack),1,3.84,07/28/19 22:56,"741 Lakeview St, Austin, TX 73301" -228135,Wired Headphones,1,11.99,07/26/19 16:28,"251 14th St, Los Angeles, CA 90001" -228136,USB-C Charging Cable,1,11.95,07/28/19 11:48,"622 Lake St, Dallas, TX 75001" -228137,34in Ultrawide Monitor,1,379.99,07/31/19 20:20,"876 West St, Dallas, TX 75001" -228138,AA Batteries (4-pack),2,3.84,07/11/19 15:44,"57 Elm St, Seattle, WA 98101" -228139,AAA Batteries (4-pack),3,2.99,07/23/19 08:18,"983 Meadow St, New York City, NY 10001" -228140,AAA Batteries (4-pack),2,2.99,07/28/19 18:13,"625 Lincoln St, Seattle, WA 98101" -228141,Apple Airpods Headphones,1,150,07/29/19 13:30,"712 Chestnut St, San Francisco, CA 94016" -228142,AAA Batteries (4-pack),2,2.99,07/29/19 12:21,"850 Center St, Los Angeles, CA 90001" -228143,Apple Airpods Headphones,1,150,07/02/19 17:29,"541 12th St, Seattle, WA 98101" -228144,Lightning Charging Cable,1,14.95,07/15/19 19:52,"300 10th St, Dallas, TX 75001" -228145,ThinkPad Laptop,1,999.99,07/05/19 12:46,"231 12th St, New York City, NY 10001" -228146,Wired Headphones,1,11.99,07/06/19 11:30,"829 14th St, Los Angeles, CA 90001" -228147,Bose SoundSport Headphones,1,99.99,07/30/19 11:37,"520 Pine St, Los Angeles, CA 90001" -228148,20in Monitor,1,109.99,07/11/19 12:02,"254 9th St, San Francisco, CA 94016" -228149,AAA Batteries (4-pack),1,2.99,07/29/19 01:41,"482 Walnut St, Austin, TX 73301" -228150,Google Phone,1,600,07/24/19 11:23,"579 Forest St, New York City, NY 10001" -228151,AAA Batteries (4-pack),1,2.99,07/16/19 17:56,"233 Wilson St, Seattle, WA 98101" -228152,Lightning Charging Cable,1,14.95,07/06/19 14:31,"773 Sunset St, Dallas, TX 75001" -228153,Wired Headphones,1,11.99,07/29/19 09:16,"843 Pine St, Los Angeles, CA 90001" -228154,Wired Headphones,1,11.99,07/29/19 07:39,"198 7th St, Boston, MA 02215" -228155,Wired Headphones,1,11.99,07/21/19 20:41,"878 Lakeview St, Dallas, TX 75001" -228156,AAA Batteries (4-pack),2,2.99,07/22/19 08:33,"6 Madison St, Los Angeles, CA 90001" -228157,Lightning Charging Cable,1,14.95,07/31/19 10:05,"867 Main St, San Francisco, CA 94016" -228158,Vareebadd Phone,1,400,07/18/19 16:25,"177 Cherry St, Los Angeles, CA 90001" -228159,Vareebadd Phone,1,400,07/07/19 21:15,"466 Wilson St, Seattle, WA 98101" -228160,27in 4K Gaming Monitor,1,389.99,07/26/19 13:49,"658 11th St, Los Angeles, CA 90001" -228161,iPhone,1,700,07/06/19 13:58,"206 14th St, Seattle, WA 98101" -228161,Lightning Charging Cable,1,14.95,07/06/19 13:58,"206 14th St, Seattle, WA 98101" -228162,34in Ultrawide Monitor,1,379.99,07/18/19 22:05,"257 11th St, Portland, OR 97035" -228163,AAA Batteries (4-pack),1,2.99,07/31/19 09:34,"728 Lincoln St, San Francisco, CA 94016" -228164,Lightning Charging Cable,1,14.95,07/20/19 21:30,"788 8th St, Portland, OR 97035" -228165,Wired Headphones,1,11.99,07/24/19 19:22,"710 7th St, Los Angeles, CA 90001" -228166,Apple Airpods Headphones,1,150,07/29/19 09:20,"635 Hill St, Seattle, WA 98101" -228167,AAA Batteries (4-pack),1,2.99,07/23/19 14:48,"962 Willow St, Dallas, TX 75001" -228168,Lightning Charging Cable,1,14.95,07/02/19 18:40,"795 Cherry St, Portland, OR 97035" -228169,AA Batteries (4-pack),3,3.84,07/21/19 21:08,"969 Madison St, Los Angeles, CA 90001" -228170,Macbook Pro Laptop,1,1700,07/02/19 23:20,"823 Lincoln St, San Francisco, CA 94016" -228171,AA Batteries (4-pack),2,3.84,07/10/19 16:28,"145 Maple St, Boston, MA 02215" -228172,Apple Airpods Headphones,1,150,07/06/19 21:40,"571 Hill St, Portland, ME 04101" -228172,Lightning Charging Cable,1,14.95,07/06/19 21:40,"571 Hill St, Portland, ME 04101" -228173,AAA Batteries (4-pack),2,2.99,07/02/19 17:42,"680 8th St, Dallas, TX 75001" -228174,Apple Airpods Headphones,1,150,07/02/19 16:06,"974 Washington St, Boston, MA 02215" -228175,Bose SoundSport Headphones,1,99.99,07/25/19 23:04,"877 Jackson St, Dallas, TX 75001" -228176,Lightning Charging Cable,1,14.95,07/25/19 11:00,"839 8th St, Los Angeles, CA 90001" -228177,20in Monitor,1,109.99,07/13/19 10:01,"33 6th St, Los Angeles, CA 90001" -228178,34in Ultrawide Monitor,1,379.99,07/05/19 16:53,"852 Center St, Los Angeles, CA 90001" -228179,Wired Headphones,1,11.99,07/31/19 18:28,"277 Pine St, New York City, NY 10001" -228180,Google Phone,1,600,07/03/19 18:33,"895 Sunset St, Austin, TX 73301" -228181,AAA Batteries (4-pack),1,2.99,07/19/19 22:00,"799 8th St, Dallas, TX 75001" -228182,34in Ultrawide Monitor,1,379.99,07/16/19 16:27,"701 6th St, Dallas, TX 75001" -228183,Apple Airpods Headphones,1,150,07/03/19 11:33,"109 Lakeview St, Atlanta, GA 30301" -228184,USB-C Charging Cable,1,11.95,07/22/19 16:29,"6 Park St, San Francisco, CA 94016" -228185,AA Batteries (4-pack),1,3.84,07/29/19 17:05,"848 12th St, Los Angeles, CA 90001" -228186,AAA Batteries (4-pack),1,2.99,07/29/19 12:28,"205 9th St, Los Angeles, CA 90001" -228187,AA Batteries (4-pack),1,3.84,07/17/19 09:00,"306 Walnut St, Seattle, WA 98101" -228188,20in Monitor,1,109.99,07/05/19 15:59,"184 8th St, Los Angeles, CA 90001" -228189,Wired Headphones,2,11.99,07/01/19 10:40,"747 Johnson St, Los Angeles, CA 90001" -228190,Wired Headphones,1,11.99,07/19/19 19:39,"617 14th St, Boston, MA 02215" -228191,ThinkPad Laptop,1,999.99,07/24/19 15:57,"347 Park St, Seattle, WA 98101" -228192,Wired Headphones,1,11.99,07/23/19 20:01,"717 North St, San Francisco, CA 94016" -228193,AAA Batteries (4-pack),2,2.99,07/07/19 06:18,"103 Hill St, Boston, MA 02215" -228194,Apple Airpods Headphones,1,150,07/02/19 13:30,"206 Ridge St, Atlanta, GA 30301" -228195,USB-C Charging Cable,1,11.95,07/03/19 13:50,"721 Hickory St, Boston, MA 02215" -228196,Apple Airpods Headphones,1,150,07/28/19 10:48,"935 Forest St, San Francisco, CA 94016" -228197,Bose SoundSport Headphones,1,99.99,07/20/19 08:50,"686 Lake St, Portland, OR 97035" -228198,AAA Batteries (4-pack),2,2.99,07/20/19 13:52,"950 Wilson St, San Francisco, CA 94016" -228199,USB-C Charging Cable,1,11.95,07/19/19 07:46,"227 4th St, New York City, NY 10001" -228200,AAA Batteries (4-pack),1,2.99,07/26/19 20:17,"71 Jackson St, San Francisco, CA 94016" -228201,AA Batteries (4-pack),2,3.84,07/06/19 13:21,"65 Washington St, San Francisco, CA 94016" -228202,Bose SoundSport Headphones,1,99.99,07/08/19 16:56,"121 Elm St, San Francisco, CA 94016" -228203,Flatscreen TV,1,300,07/03/19 14:53,"435 1st St, Seattle, WA 98101" -228204,USB-C Charging Cable,1,11.95,07/23/19 17:37,"707 Jefferson St, San Francisco, CA 94016" -228205,34in Ultrawide Monitor,1,379.99,07/10/19 21:26,"840 7th St, San Francisco, CA 94016" -228206,USB-C Charging Cable,1,11.95,07/07/19 00:28,"381 6th St, New York City, NY 10001" -228207,USB-C Charging Cable,2,11.95,07/30/19 15:25,"694 Hill St, New York City, NY 10001" -228208,27in FHD Monitor,1,149.99,07/25/19 20:01,"130 Adams St, Atlanta, GA 30301" -228209,27in FHD Monitor,1,149.99,07/31/19 14:23,"74 Cedar St, San Francisco, CA 94016" -228210,AA Batteries (4-pack),1,3.84,07/21/19 10:30,"235 Jackson St, Atlanta, GA 30301" -228211,Wired Headphones,1,11.99,07/03/19 22:17,"738 Park St, San Francisco, CA 94016" -228212,AAA Batteries (4-pack),1,2.99,07/29/19 12:11,"853 Church St, New York City, NY 10001" -228213,Lightning Charging Cable,1,14.95,07/05/19 19:46,"773 Adams St, Austin, TX 73301" -228214,Apple Airpods Headphones,1,150,07/01/19 23:59,"273 12th St, Los Angeles, CA 90001" -228215,AA Batteries (4-pack),1,3.84,07/08/19 00:35,"549 10th St, Los Angeles, CA 90001" -228216,27in 4K Gaming Monitor,1,389.99,07/22/19 15:04,"17 Highland St, Los Angeles, CA 90001" -228217,USB-C Charging Cable,1,11.95,07/13/19 20:42,"305 9th St, San Francisco, CA 94016" -228218,USB-C Charging Cable,1,11.95,07/31/19 16:18,"990 Cherry St, San Francisco, CA 94016" -228219,AAA Batteries (4-pack),1,2.99,07/19/19 19:57,"166 Main St, San Francisco, CA 94016" -228220,27in FHD Monitor,1,149.99,07/29/19 15:04,"512 River St, Austin, TX 73301" -228221,Wired Headphones,1,11.99,07/26/19 20:08,"497 Sunset St, New York City, NY 10001" -228222,Google Phone,1,600,07/05/19 17:49,"197 North St, San Francisco, CA 94016" -228223,iPhone,1,700,07/14/19 08:56,"16 Cherry St, Portland, OR 97035" -228224,Apple Airpods Headphones,1,150,07/17/19 11:27,"636 Jefferson St, Atlanta, GA 30301" -228225,Google Phone,1,600,07/16/19 23:11,"276 2nd St, Dallas, TX 75001" -228226,Lightning Charging Cable,1,14.95,07/04/19 14:09,"547 North St, Dallas, TX 75001" -228227,AA Batteries (4-pack),3,3.84,07/24/19 13:46,"941 Pine St, Portland, OR 97035" -228228,AA Batteries (4-pack),1,3.84,07/16/19 18:58,"280 Elm St, Dallas, TX 75001" -228229,AAA Batteries (4-pack),2,2.99,07/24/19 13:54,"457 Chestnut St, New York City, NY 10001" -228230,34in Ultrawide Monitor,1,379.99,07/06/19 08:03,"803 Pine St, Seattle, WA 98101" -228231,USB-C Charging Cable,1,11.95,07/25/19 11:18,"455 West St, Dallas, TX 75001" -228232,34in Ultrawide Monitor,1,379.99,07/22/19 15:04,"92 Madison St, Portland, OR 97035" -228233,USB-C Charging Cable,1,11.95,07/10/19 23:07,"822 11th St, San Francisco, CA 94016" -228234,20in Monitor,1,109.99,07/02/19 23:18,"285 Willow St, Los Angeles, CA 90001" -228235,USB-C Charging Cable,1,11.95,07/16/19 11:26,"582 9th St, Los Angeles, CA 90001" -228236,27in FHD Monitor,1,149.99,07/25/19 13:32,"153 2nd St, Boston, MA 02215" -228237,27in FHD Monitor,1,149.99,07/24/19 19:04,"531 Park St, San Francisco, CA 94016" -228238,34in Ultrawide Monitor,1,379.99,07/10/19 22:59,"729 10th St, Atlanta, GA 30301" -228239,USB-C Charging Cable,1,11.95,07/09/19 14:14,"631 6th St, New York City, NY 10001" -228240,Wired Headphones,1,11.99,07/12/19 13:13,"876 North St, Atlanta, GA 30301" -228241,AAA Batteries (4-pack),3,2.99,07/31/19 07:07,"60 2nd St, San Francisco, CA 94016" -228242,AA Batteries (4-pack),1,3.84,07/19/19 08:02,"482 Center St, San Francisco, CA 94016" -228243,Google Phone,1,600,07/17/19 16:07,"301 Walnut St, New York City, NY 10001" -228244,Bose SoundSport Headphones,1,99.99,07/01/19 15:38,"212 Pine St, San Francisco, CA 94016" -228245,USB-C Charging Cable,1,11.95,07/28/19 16:33,"619 14th St, Los Angeles, CA 90001" -228246,Vareebadd Phone,1,400,07/07/19 11:30,"14 North St, New York City, NY 10001" -228247,27in 4K Gaming Monitor,1,389.99,07/28/19 17:22,"37 8th St, San Francisco, CA 94016" -228248,AAA Batteries (4-pack),1,2.99,07/30/19 21:50,"802 10th St, Los Angeles, CA 90001" -228249,AAA Batteries (4-pack),2,2.99,07/20/19 17:57,"17 9th St, New York City, NY 10001" -228250,USB-C Charging Cable,1,11.95,07/22/19 15:55,"397 West St, Dallas, TX 75001" -228251,AAA Batteries (4-pack),1,2.99,07/08/19 08:49,"779 Forest St, Dallas, TX 75001" -228252,Wired Headphones,1,11.99,07/07/19 19:20,"585 Hickory St, Boston, MA 02215" -228253,27in FHD Monitor,1,149.99,07/09/19 18:06,"608 14th St, Dallas, TX 75001" -228254,Apple Airpods Headphones,1,150,07/31/19 21:46,"80 Maple St, Los Angeles, CA 90001" -228255,Wired Headphones,1,11.99,07/16/19 14:30,"488 Dogwood St, Portland, OR 97035" -228256,Wired Headphones,1,11.99,07/10/19 19:42,"125 Walnut St, Boston, MA 02215" -228257,Wired Headphones,1,11.99,07/23/19 15:08,"586 Adams St, Dallas, TX 75001" -228258,USB-C Charging Cable,1,11.95,07/06/19 20:16,"313 8th St, Seattle, WA 98101" -228259,Bose SoundSport Headphones,1,99.99,07/19/19 10:41,"907 Main St, Boston, MA 02215" -228260,USB-C Charging Cable,1,11.95,07/28/19 09:23,"778 Church St, Los Angeles, CA 90001" -228261,Lightning Charging Cable,1,14.95,07/10/19 15:20,"781 Johnson St, Atlanta, GA 30301" -228262,Lightning Charging Cable,1,14.95,07/04/19 19:09,"669 Center St, San Francisco, CA 94016" -228263,AAA Batteries (4-pack),1,2.99,07/07/19 15:32,"27 Ridge St, Los Angeles, CA 90001" -228264,ThinkPad Laptop,1,999.99,07/20/19 14:02,"621 Church St, Los Angeles, CA 90001" -228265,ThinkPad Laptop,1,999.99,07/26/19 08:06,"439 Jackson St, San Francisco, CA 94016" -228266,20in Monitor,1,109.99,07/26/19 20:44,"209 West St, San Francisco, CA 94016" -228267,iPhone,1,700,07/03/19 19:05,"767 Wilson St, New York City, NY 10001" -228268,27in FHD Monitor,1,149.99,07/13/19 18:50,"224 River St, New York City, NY 10001" -228269,27in 4K Gaming Monitor,1,389.99,07/29/19 21:35,"634 Meadow St, Boston, MA 02215" -228270,AA Batteries (4-pack),1,3.84,07/11/19 10:05,"667 10th St, San Francisco, CA 94016" -228271,27in FHD Monitor,1,149.99,07/12/19 07:53,"303 Spruce St, San Francisco, CA 94016" -228272,ThinkPad Laptop,1,999.99,07/24/19 07:08,"749 Cherry St, New York City, NY 10001" -228273,Wired Headphones,1,11.99,07/18/19 14:24,"758 Jefferson St, San Francisco, CA 94016" -228274,AA Batteries (4-pack),1,3.84,07/14/19 19:12,"670 Jackson St, New York City, NY 10001" -228275,Lightning Charging Cable,1,14.95,07/26/19 08:17,"15 2nd St, Boston, MA 02215" -228276,Lightning Charging Cable,1,14.95,07/30/19 16:52,"597 Jackson St, Boston, MA 02215" -228277,Lightning Charging Cable,2,14.95,07/05/19 06:59,"844 River St, New York City, NY 10001" -228278,Wired Headphones,1,11.99,07/24/19 20:37,"506 Lincoln St, San Francisco, CA 94016" -228279,Google Phone,1,600,07/18/19 12:50,"236 Forest St, New York City, NY 10001" -228280,Apple Airpods Headphones,1,150,07/14/19 14:13,"974 11th St, New York City, NY 10001" -228281,AAA Batteries (4-pack),1,2.99,07/07/19 09:33,"699 Hill St, New York City, NY 10001" -228282,USB-C Charging Cable,1,11.95,07/21/19 10:57,"313 9th St, New York City, NY 10001" -228283,Bose SoundSport Headphones,1,99.99,07/24/19 17:51,"758 12th St, San Francisco, CA 94016" -228284,Flatscreen TV,1,300,07/04/19 17:49,"347 Willow St, Seattle, WA 98101" -228285,Wired Headphones,1,11.99,07/08/19 18:45,"628 Wilson St, Boston, MA 02215" -228286,USB-C Charging Cable,1,11.95,07/19/19 14:40,"401 Hickory St, San Francisco, CA 94016" -228287,27in FHD Monitor,1,149.99,07/19/19 23:48,"810 Chestnut St, Los Angeles, CA 90001" -228288,AA Batteries (4-pack),1,3.84,07/06/19 17:09,"159 Highland St, Los Angeles, CA 90001" -228289,Bose SoundSport Headphones,1,99.99,07/10/19 04:09,"158 Sunset St, Seattle, WA 98101" -228290,Wired Headphones,2,11.99,07/11/19 11:57,"163 1st St, Boston, MA 02215" -228291,USB-C Charging Cable,1,11.95,07/11/19 21:19,"853 12th St, Seattle, WA 98101" -228292,AA Batteries (4-pack),1,3.84,07/16/19 22:21,"802 14th St, San Francisco, CA 94016" -228293,AAA Batteries (4-pack),1,2.99,07/01/19 16:47,"189 Dogwood St, New York City, NY 10001" -228294,Lightning Charging Cable,1,14.95,07/16/19 18:22,"974 Adams St, Los Angeles, CA 90001" -228295,Lightning Charging Cable,1,14.95,07/22/19 13:52,"465 11th St, Los Angeles, CA 90001" -228296,20in Monitor,1,109.99,07/06/19 09:48,"896 Adams St, Los Angeles, CA 90001" -228297,Bose SoundSport Headphones,1,99.99,07/13/19 16:44,"497 Pine St, Portland, OR 97035" -228298,Wired Headphones,2,11.99,07/13/19 16:17,"80 North St, Dallas, TX 75001" -228299,Lightning Charging Cable,1,14.95,07/18/19 00:57,"898 Wilson St, Los Angeles, CA 90001" -228300,Google Phone,1,600,07/15/19 16:00,"989 5th St, New York City, NY 10001" -228300,Wired Headphones,1,11.99,07/15/19 16:00,"989 5th St, New York City, NY 10001" -228301,AA Batteries (4-pack),1,3.84,07/27/19 19:39,"2 5th St, Atlanta, GA 30301" -228302,27in FHD Monitor,1,149.99,07/24/19 17:18,"598 North St, Atlanta, GA 30301" -228303,27in 4K Gaming Monitor,1,389.99,07/27/19 18:51,"454 6th St, New York City, NY 10001" -228304,Bose SoundSport Headphones,1,99.99,07/30/19 22:26,"224 River St, New York City, NY 10001" -228305,USB-C Charging Cable,1,11.95,07/10/19 12:38,"886 Dogwood St, New York City, NY 10001" -228306,Bose SoundSport Headphones,1,99.99,07/16/19 00:09,"668 5th St, Atlanta, GA 30301" -228307,Lightning Charging Cable,1,14.95,07/02/19 22:53,"598 Spruce St, Austin, TX 73301" -228308,Wired Headphones,1,11.99,07/28/19 09:25,"215 Spruce St, San Francisco, CA 94016" -228309,Wired Headphones,1,11.99,07/17/19 08:21,"661 5th St, San Francisco, CA 94016" -228310,20in Monitor,1,109.99,07/03/19 20:55,"179 Lake St, New York City, NY 10001" -228311,Wired Headphones,1,11.99,07/03/19 18:34,"47 Sunset St, Los Angeles, CA 90001" -228312,Apple Airpods Headphones,1,150,07/18/19 21:52,"472 13th St, Los Angeles, CA 90001" -228313,AAA Batteries (4-pack),1,2.99,07/25/19 17:07,"597 1st St, San Francisco, CA 94016" -228314,Bose SoundSport Headphones,1,99.99,07/25/19 15:50,"154 Chestnut St, Austin, TX 73301" -228315,USB-C Charging Cable,1,11.95,07/10/19 16:16,"603 11th St, Austin, TX 73301" -228316,Wired Headphones,1,11.99,07/12/19 16:59,"138 Elm St, Dallas, TX 75001" -228317,Bose SoundSport Headphones,1,99.99,07/01/19 18:07,"611 Church St, New York City, NY 10001" -228318,AAA Batteries (4-pack),1,2.99,07/31/19 20:20,"916 Pine St, Portland, OR 97035" -228319,AA Batteries (4-pack),1,3.84,07/19/19 08:19,"48 Willow St, Portland, OR 97035" -,,,,, -228320,Lightning Charging Cable,1,14.95,07/29/19 19:57,"450 Center St, Atlanta, GA 30301" -228321,Bose SoundSport Headphones,1,99.99,07/22/19 10:24,"684 Church St, Atlanta, GA 30301" -228322,AA Batteries (4-pack),1,3.84,07/27/19 20:11,"106 Cherry St, Seattle, WA 98101" -228323,27in 4K Gaming Monitor,1,389.99,07/01/19 19:39,"860 11th St, San Francisco, CA 94016" -228324,27in FHD Monitor,1,149.99,07/04/19 12:23,"249 West St, Los Angeles, CA 90001" -228325,Apple Airpods Headphones,1,150,07/02/19 20:59,"819 Pine St, New York City, NY 10001" -228326,AA Batteries (4-pack),2,3.84,07/05/19 08:51,"367 Center St, Austin, TX 73301" -228327,Google Phone,1,600,07/09/19 20:30,"466 Johnson St, Dallas, TX 75001" -228328,Macbook Pro Laptop,1,1700,07/25/19 08:03,"605 11th St, San Francisco, CA 94016" -228329,Wired Headphones,1,11.99,07/23/19 10:23,"818 Lake St, Los Angeles, CA 90001" -228330,Wired Headphones,1,11.99,07/04/19 14:01,"800 North St, Atlanta, GA 30301" -228331,AAA Batteries (4-pack),2,2.99,07/07/19 23:43,"763 West St, New York City, NY 10001" -228332,AAA Batteries (4-pack),2,2.99,07/01/19 10:17,"270 14th St, Dallas, TX 75001" -228333,USB-C Charging Cable,2,11.95,07/01/19 15:48,"69 Jefferson St, New York City, NY 10001" -228334,LG Washing Machine,1,600.0,07/25/19 09:48,"584 Meadow St, Los Angeles, CA 90001" -228335,AA Batteries (4-pack),1,3.84,07/02/19 14:22,"78 1st St, Atlanta, GA 30301" -228336,Wired Headphones,1,11.99,07/15/19 08:42,"823 Hickory St, Seattle, WA 98101" -228337,Lightning Charging Cable,1,14.95,07/01/19 16:40,"226 River St, Los Angeles, CA 90001" -228338,ThinkPad Laptop,1,999.99,07/18/19 23:34,"433 Center St, Seattle, WA 98101" -228339,AAA Batteries (4-pack),4,2.99,07/16/19 11:56,"570 2nd St, Boston, MA 02215" -228340,USB-C Charging Cable,1,11.95,07/24/19 10:36,"61 Johnson St, New York City, NY 10001" -228341,Lightning Charging Cable,1,14.95,07/10/19 21:16,"910 13th St, Los Angeles, CA 90001" -228342,iPhone,1,700,07/03/19 16:25,"714 Maple St, Dallas, TX 75001" -228343,Lightning Charging Cable,1,14.95,07/22/19 08:43,"274 Maple St, San Francisco, CA 94016" -228344,AAA Batteries (4-pack),1,2.99,07/17/19 19:42,"472 Madison St, New York City, NY 10001" -228345,Lightning Charging Cable,1,14.95,07/16/19 12:22,"787 Lakeview St, Dallas, TX 75001" -228346,27in FHD Monitor,1,149.99,07/07/19 18:36,"189 2nd St, Austin, TX 73301" -228347,Apple Airpods Headphones,1,150,07/23/19 16:10,"449 Ridge St, San Francisco, CA 94016" -228348,AA Batteries (4-pack),2,3.84,07/12/19 13:23,"992 Hill St, San Francisco, CA 94016" -228349,Lightning Charging Cable,1,14.95,07/23/19 11:22,"420 7th St, Austin, TX 73301" -228350,AA Batteries (4-pack),1,3.84,07/05/19 03:43,"575 South St, Los Angeles, CA 90001" -228351,AA Batteries (4-pack),1,3.84,07/22/19 15:38,"362 Wilson St, San Francisco, CA 94016" -228352,Lightning Charging Cable,1,14.95,07/27/19 20:33,"876 Lake St, Dallas, TX 75001" -228353,27in FHD Monitor,1,149.99,07/10/19 22:52,"674 Spruce St, New York City, NY 10001" -228354,iPhone,1,700,07/24/19 12:06,"59 Elm St, Seattle, WA 98101" -228355,iPhone,1,700,07/06/19 17:57,"939 Cherry St, San Francisco, CA 94016" -228355,Lightning Charging Cable,1,14.95,07/06/19 17:57,"939 Cherry St, San Francisco, CA 94016" -228356,Bose SoundSport Headphones,1,99.99,07/24/19 11:42,"273 6th St, Seattle, WA 98101" -228357,Wired Headphones,1,11.99,07/17/19 21:23,"293 Madison St, New York City, NY 10001" -228358,ThinkPad Laptop,1,999.99,07/30/19 09:51,"373 11th St, Dallas, TX 75001" -228359,Lightning Charging Cable,1,14.95,07/19/19 11:01,"425 Park St, New York City, NY 10001" -228360,27in 4K Gaming Monitor,1,389.99,07/31/19 18:32,"296 5th St, New York City, NY 10001" -228361,USB-C Charging Cable,1,11.95,07/13/19 21:32,"479 Chestnut St, Portland, OR 97035" -228362,Lightning Charging Cable,1,14.95,07/31/19 09:35,"452 Spruce St, Atlanta, GA 30301" -228363,Lightning Charging Cable,1,14.95,07/22/19 15:00,"237 9th St, San Francisco, CA 94016" -228364,USB-C Charging Cable,1,11.95,07/09/19 20:04,"693 Park St, San Francisco, CA 94016" -228365,Wired Headphones,1,11.99,07/05/19 18:29,"909 Wilson St, San Francisco, CA 94016" -228366,Lightning Charging Cable,1,14.95,07/20/19 22:01,"212 11th St, New York City, NY 10001" -228367,AAA Batteries (4-pack),5,2.99,07/16/19 19:22,"916 11th St, Seattle, WA 98101" -228368,Lightning Charging Cable,1,14.95,07/11/19 19:49,"76 Highland St, New York City, NY 10001" -228368,Apple Airpods Headphones,1,150,07/11/19 19:49,"76 Highland St, New York City, NY 10001" -228369,Google Phone,1,600,07/23/19 20:52,"226 Willow St, New York City, NY 10001" -228369,USB-C Charging Cable,1,11.95,07/23/19 20:52,"226 Willow St, New York City, NY 10001" -228370,AA Batteries (4-pack),1,3.84,07/28/19 13:53,"728 River St, New York City, NY 10001" -228371,AAA Batteries (4-pack),1,2.99,07/13/19 14:02,"783 Adams St, Los Angeles, CA 90001" -228372,Flatscreen TV,1,300,07/10/19 23:15,"702 Wilson St, New York City, NY 10001" -228373,USB-C Charging Cable,1,11.95,07/23/19 21:30,"973 Walnut St, Portland, OR 97035" -228374,27in FHD Monitor,1,149.99,07/27/19 04:34,"811 1st St, Boston, MA 02215" -228375,iPhone,1,700,07/29/19 19:13,"525 Maple St, New York City, NY 10001" -228376,AA Batteries (4-pack),1,3.84,07/29/19 10:46,"215 Johnson St, San Francisco, CA 94016" -228377,iPhone,1,700,07/24/19 13:27,"173 8th St, Los Angeles, CA 90001" -228378,27in FHD Monitor,1,149.99,07/21/19 13:12,"993 Highland St, New York City, NY 10001" -228379,AA Batteries (4-pack),1,3.84,07/21/19 10:00,"304 Cedar St, San Francisco, CA 94016" -228380,Wired Headphones,1,11.99,07/24/19 19:04,"110 9th St, Seattle, WA 98101" -228381,Lightning Charging Cable,1,14.95,07/12/19 06:05,"768 Johnson St, Portland, OR 97035" -228382,AAA Batteries (4-pack),2,2.99,07/01/19 14:58,"422 Adams St, San Francisco, CA 94016" -228383,USB-C Charging Cable,1,11.95,07/19/19 12:57,"447 Forest St, New York City, NY 10001" -228384,AAA Batteries (4-pack),7,2.99,07/06/19 17:34,"78 Highland St, Austin, TX 73301" -228385,AAA Batteries (4-pack),1,2.99,07/31/19 13:47,"808 Main St, Boston, MA 02215" -228386,USB-C Charging Cable,1,11.95,07/11/19 07:31,"515 Hickory St, Los Angeles, CA 90001" -228387,USB-C Charging Cable,2,11.95,07/09/19 13:39,"711 Jackson St, New York City, NY 10001" -228388,Lightning Charging Cable,1,14.95,07/26/19 09:19,"151 Spruce St, San Francisco, CA 94016" -228389,Lightning Charging Cable,1,14.95,07/31/19 02:38,"353 8th St, Dallas, TX 75001" -228390,Macbook Pro Laptop,1,1700,07/21/19 08:58,"827 Spruce St, Los Angeles, CA 90001" -228391,AAA Batteries (4-pack),2,2.99,07/08/19 11:27,"814 Adams St, Los Angeles, CA 90001" -228391,USB-C Charging Cable,1,11.95,07/08/19 11:27,"814 Adams St, Los Angeles, CA 90001" -228392,Apple Airpods Headphones,1,150,07/02/19 08:23,"161 Highland St, Los Angeles, CA 90001" -228393,27in FHD Monitor,1,149.99,07/14/19 10:50,"757 Forest St, Atlanta, GA 30301" -228394,AAA Batteries (4-pack),1,2.99,07/26/19 12:10,"88 North St, San Francisco, CA 94016" -228395,Bose SoundSport Headphones,1,99.99,07/28/19 14:25,"355 Chestnut St, Seattle, WA 98101" -228396,AAA Batteries (4-pack),3,2.99,07/25/19 11:55,"105 Cherry St, Atlanta, GA 30301" -228397,AA Batteries (4-pack),1,3.84,07/11/19 08:35,"503 Lakeview St, Dallas, TX 75001" -228398,Lightning Charging Cable,1,14.95,07/12/19 17:02,"579 Maple St, Boston, MA 02215" -228399,Lightning Charging Cable,1,14.95,07/22/19 21:27,"122 Hickory St, Portland, OR 97035" -228400,AAA Batteries (4-pack),1,2.99,07/24/19 20:18,"453 Hill St, Los Angeles, CA 90001" -228401,27in FHD Monitor,1,149.99,07/03/19 13:54,"955 Park St, New York City, NY 10001" -228402,AAA Batteries (4-pack),3,2.99,07/16/19 01:29,"425 Highland St, Seattle, WA 98101" -228403,Bose SoundSport Headphones,1,99.99,07/12/19 12:14,"895 1st St, Los Angeles, CA 90001" -228404,Bose SoundSport Headphones,1,99.99,07/04/19 15:15,"69 Park St, Seattle, WA 98101" -228405,AA Batteries (4-pack),1,3.84,07/17/19 19:14,"26 Madison St, New York City, NY 10001" -228406,ThinkPad Laptop,1,999.99,07/01/19 10:36,"272 5th St, Boston, MA 02215" -228407,Flatscreen TV,1,300,07/28/19 11:38,"771 West St, Dallas, TX 75001" -228408,Lightning Charging Cable,1,14.95,07/17/19 18:45,"811 Jackson St, Austin, TX 73301" -228409,USB-C Charging Cable,1,11.95,07/19/19 12:15,"14 North St, San Francisco, CA 94016" -228410,27in 4K Gaming Monitor,1,389.99,07/14/19 09:59,"854 10th St, Los Angeles, CA 90001" -228411,Bose SoundSport Headphones,1,99.99,07/23/19 17:50,"15 Hickory St, Los Angeles, CA 90001" -228412,Lightning Charging Cable,2,14.95,07/08/19 08:01,"183 Dogwood St, San Francisco, CA 94016" -228413,AA Batteries (4-pack),1,3.84,07/07/19 12:21,"628 Elm St, Seattle, WA 98101" -228414,34in Ultrawide Monitor,1,379.99,07/18/19 16:23,"32 River St, San Francisco, CA 94016" -228415,Apple Airpods Headphones,1,150,07/24/19 00:01,"590 Jefferson St, Los Angeles, CA 90001" -228416,Wired Headphones,1,11.99,07/29/19 19:00,"831 4th St, Seattle, WA 98101" -228417,Lightning Charging Cable,1,14.95,07/11/19 22:35,"918 8th St, Boston, MA 02215" -228418,AAA Batteries (4-pack),1,2.99,07/07/19 19:11,"397 2nd St, Austin, TX 73301" -228419,Lightning Charging Cable,1,14.95,07/22/19 16:53,"626 Johnson St, Boston, MA 02215" -228420,USB-C Charging Cable,1,11.95,07/16/19 11:51,"801 Madison St, San Francisco, CA 94016" -228421,USB-C Charging Cable,1,11.95,07/11/19 00:34,"244 Center St, New York City, NY 10001" -228422,Macbook Pro Laptop,1,1700,07/01/19 20:50,"519 South St, Atlanta, GA 30301" -228423,AAA Batteries (4-pack),1,2.99,07/12/19 23:58,"722 11th St, Austin, TX 73301" -228424,AAA Batteries (4-pack),1,2.99,07/10/19 13:33,"442 Dogwood St, Boston, MA 02215" -228425,USB-C Charging Cable,1,11.95,07/10/19 13:53,"584 Spruce St, Boston, MA 02215" -228426,USB-C Charging Cable,1,11.95,07/17/19 15:10,"383 Lake St, San Francisco, CA 94016" -228427,Lightning Charging Cable,1,14.95,07/21/19 22:21,"597 Forest St, Austin, TX 73301" -228428,Bose SoundSport Headphones,1,99.99,07/13/19 10:11,"491 1st St, Dallas, TX 75001" -228429,Lightning Charging Cable,2,14.95,07/06/19 14:13,"909 Johnson St, Los Angeles, CA 90001" -228430,AA Batteries (4-pack),1,3.84,07/10/19 21:06,"432 Dogwood St, San Francisco, CA 94016" -228431,Apple Airpods Headphones,1,150,07/03/19 21:53,"400 Park St, Atlanta, GA 30301" -228432,AAA Batteries (4-pack),1,2.99,07/26/19 09:37,"856 9th St, New York City, NY 10001" -228433,Bose SoundSport Headphones,1,99.99,07/08/19 20:32,"481 Maple St, San Francisco, CA 94016" -228433,Bose SoundSport Headphones,1,99.99,07/08/19 20:32,"481 Maple St, San Francisco, CA 94016" -228434,Bose SoundSport Headphones,1,99.99,07/02/19 20:52,"463 11th St, Dallas, TX 75001" -228435,27in FHD Monitor,1,149.99,07/14/19 14:08,"322 South St, Dallas, TX 75001" -228436,iPhone,1,700,07/14/19 20:49,"183 Jackson St, Los Angeles, CA 90001" -228437,AA Batteries (4-pack),2,3.84,07/03/19 22:53,"328 Hickory St, Atlanta, GA 30301" -228438,Bose SoundSport Headphones,2,99.99,07/15/19 17:54,"728 Sunset St, San Francisco, CA 94016" -228439,Wired Headphones,1,11.99,07/20/19 23:39,"338 Hickory St, Los Angeles, CA 90001" -228440,USB-C Charging Cable,1,11.95,07/09/19 20:49,"525 Meadow St, San Francisco, CA 94016" -228441,AAA Batteries (4-pack),1,2.99,07/22/19 14:13,"352 10th St, Portland, OR 97035" -228442,Lightning Charging Cable,1,14.95,07/08/19 06:17,"202 Willow St, San Francisco, CA 94016" -228443,Wired Headphones,1,11.99,07/09/19 14:11,"739 8th St, Seattle, WA 98101" -228444,Wired Headphones,1,11.99,07/18/19 13:29,"754 Pine St, Boston, MA 02215" -228445,AAA Batteries (4-pack),1,2.99,07/05/19 19:36,"109 Pine St, Seattle, WA 98101" -228446,34in Ultrawide Monitor,1,379.99,07/23/19 13:54,"708 13th St, Portland, OR 97035" -228447,Apple Airpods Headphones,1,150,07/29/19 13:12,"865 Cherry St, Portland, ME 04101" -228448,Lightning Charging Cable,1,14.95,07/31/19 18:10,"432 Adams St, Los Angeles, CA 90001" -228449,iPhone,1,700,07/23/19 09:04,"40 Johnson St, San Francisco, CA 94016" -228450,Lightning Charging Cable,1,14.95,07/24/19 18:53,"162 13th St, San Francisco, CA 94016" -228451,Wired Headphones,1,11.99,07/01/19 16:15,"912 Hill St, Boston, MA 02215" -228452,AA Batteries (4-pack),1,3.84,07/20/19 15:33,"679 Walnut St, Atlanta, GA 30301" -228453,Wired Headphones,1,11.99,07/26/19 20:18,"977 Elm St, Los Angeles, CA 90001" -228454,34in Ultrawide Monitor,1,379.99,07/01/19 16:45,"536 Hickory St, Seattle, WA 98101" -228455,Apple Airpods Headphones,1,150,07/29/19 12:28,"988 Meadow St, Portland, OR 97035" -228456,Macbook Pro Laptop,1,1700,07/30/19 17:22,"73 Park St, Dallas, TX 75001" -228457,USB-C Charging Cable,2,11.95,07/29/19 22:41,"624 Jefferson St, San Francisco, CA 94016" -228457,Bose SoundSport Headphones,1,99.99,07/29/19 22:41,"624 Jefferson St, San Francisco, CA 94016" -228458,Lightning Charging Cable,1,14.95,07/04/19 22:14,"602 13th St, Los Angeles, CA 90001" -228459,iPhone,1,700,07/19/19 09:32,"128 Highland St, Atlanta, GA 30301" -228460,AAA Batteries (4-pack),2,2.99,07/08/19 18:14,"716 Spruce St, New York City, NY 10001" -228461,Bose SoundSport Headphones,1,99.99,07/19/19 14:00,"644 Lake St, San Francisco, CA 94016" -228462,Google Phone,1,600,07/09/19 14:04,"726 Ridge St, Boston, MA 02215" -228463,USB-C Charging Cable,1,11.95,07/06/19 20:33,"364 West St, New York City, NY 10001" -228464,Bose SoundSport Headphones,1,99.99,07/20/19 09:41,"691 12th St, New York City, NY 10001" -228465,Flatscreen TV,1,300,07/06/19 18:51,"237 Adams St, Atlanta, GA 30301" -228466,27in 4K Gaming Monitor,1,389.99,07/21/19 18:12,"933 Jackson St, Los Angeles, CA 90001" -228467,Lightning Charging Cable,1,14.95,07/16/19 21:45,"79 South St, San Francisco, CA 94016" -228468,27in 4K Gaming Monitor,1,389.99,07/23/19 15:41,"145 West St, San Francisco, CA 94016" -228469,AA Batteries (4-pack),3,3.84,07/27/19 15:17,"375 Main St, Los Angeles, CA 90001" -228470,Apple Airpods Headphones,1,150,07/15/19 10:09,"919 10th St, Los Angeles, CA 90001" -228471,Lightning Charging Cable,1,14.95,07/23/19 11:29,"897 Jefferson St, Boston, MA 02215" -228472,Wired Headphones,1,11.99,07/10/19 08:59,"590 Spruce St, New York City, NY 10001" -228473,Bose SoundSport Headphones,1,99.99,07/02/19 13:27,"585 Madison St, Portland, OR 97035" -228474,Apple Airpods Headphones,1,150,07/23/19 07:39,"406 Jackson St, Los Angeles, CA 90001" -228475,27in FHD Monitor,1,149.99,07/14/19 11:28,"596 Meadow St, San Francisco, CA 94016" -228476,Flatscreen TV,1,300,07/20/19 12:28,"885 Sunset St, Atlanta, GA 30301" -228477,Wired Headphones,1,11.99,07/23/19 15:57,"510 Park St, New York City, NY 10001" -228478,USB-C Charging Cable,1,11.95,07/31/19 18:05,"495 Spruce St, San Francisco, CA 94016" -228479,AA Batteries (4-pack),1,3.84,07/10/19 11:44,"487 South St, Seattle, WA 98101" -228480,Apple Airpods Headphones,1,150,07/03/19 09:29,"545 13th St, Boston, MA 02215" -228481,27in FHD Monitor,1,149.99,07/15/19 14:07,"676 Hill St, Los Angeles, CA 90001" -228482,Bose SoundSport Headphones,1,99.99,07/07/19 14:23,"257 Meadow St, San Francisco, CA 94016" -228482,Wired Headphones,1,11.99,07/07/19 14:23,"257 Meadow St, San Francisco, CA 94016" -228483,USB-C Charging Cable,1,11.95,07/03/19 00:51,"624 Pine St, Boston, MA 02215" -228484,27in 4K Gaming Monitor,1,389.99,07/07/19 08:17,"902 Willow St, Atlanta, GA 30301" -228485,AAA Batteries (4-pack),1,2.99,07/18/19 21:05,"892 Park St, Los Angeles, CA 90001" -228486,Apple Airpods Headphones,1,150,07/25/19 09:31,"578 Walnut St, New York City, NY 10001" -228487,Macbook Pro Laptop,1,1700,07/03/19 17:22,"874 4th St, Seattle, WA 98101" -228488,Apple Airpods Headphones,1,150,07/25/19 12:43,"710 Dogwood St, Atlanta, GA 30301" -228489,Vareebadd Phone,1,400,07/27/19 13:22,"892 11th St, San Francisco, CA 94016" -228489,USB-C Charging Cable,1,11.95,07/27/19 13:22,"892 11th St, San Francisco, CA 94016" -228490,Wired Headphones,1,11.99,07/09/19 14:33,"910 Lincoln St, San Francisco, CA 94016" -228491,27in 4K Gaming Monitor,1,389.99,07/03/19 13:07,"383 Meadow St, San Francisco, CA 94016" -228492,Lightning Charging Cable,1,14.95,07/01/19 14:47,"402 Lincoln St, Seattle, WA 98101" -228493,AAA Batteries (4-pack),1,2.99,07/18/19 21:41,"887 8th St, Boston, MA 02215" -228494,AAA Batteries (4-pack),1,2.99,07/23/19 11:00,"787 Johnson St, San Francisco, CA 94016" -228495,Lightning Charging Cable,1,14.95,07/13/19 21:14,"252 Lincoln St, Los Angeles, CA 90001" -228496,AAA Batteries (4-pack),2,2.99,07/31/19 18:52,"7 Elm St, New York City, NY 10001" -228497,Wired Headphones,1,11.99,07/26/19 15:23,"262 Wilson St, Dallas, TX 75001" -228498,AA Batteries (4-pack),1,3.84,07/18/19 10:42,"348 Maple St, New York City, NY 10001" -228499,AAA Batteries (4-pack),2,2.99,07/15/19 16:30,"619 Main St, Austin, TX 73301" -228500,USB-C Charging Cable,1,11.95,07/10/19 21:10,"116 12th St, New York City, NY 10001" -228501,Bose SoundSport Headphones,1,99.99,07/19/19 13:44,"946 North St, Portland, ME 04101" -228502,Vareebadd Phone,1,400,07/14/19 00:59,"706 South St, San Francisco, CA 94016" -228503,AAA Batteries (4-pack),1,2.99,07/14/19 11:10,"717 Cherry St, San Francisco, CA 94016" -228504,Apple Airpods Headphones,1,150,07/07/19 18:39,"517 West St, San Francisco, CA 94016" -228505,AA Batteries (4-pack),1,3.84,07/24/19 20:05,"341 Ridge St, Atlanta, GA 30301" -228506,Lightning Charging Cable,1,14.95,07/15/19 11:14,"1 Park St, San Francisco, CA 94016" -228507,Wired Headphones,1,11.99,07/02/19 23:14,"418 Main St, New York City, NY 10001" -228508,Bose SoundSport Headphones,1,99.99,07/22/19 14:46,"337 West St, San Francisco, CA 94016" -228509,Wired Headphones,1,11.99,07/13/19 17:30,"141 Hickory St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -228510,Google Phone,1,600,07/28/19 10:57,"844 Meadow St, Dallas, TX 75001" -228511,AAA Batteries (4-pack),3,2.99,07/07/19 13:50,"314 Highland St, Atlanta, GA 30301" -228512,Apple Airpods Headphones,1,150,07/06/19 21:15,"980 Elm St, Los Angeles, CA 90001" -228513,Apple Airpods Headphones,1,150,07/13/19 12:39,"939 Cherry St, San Francisco, CA 94016" -228514,20in Monitor,1,109.99,07/04/19 16:51,"460 Jefferson St, Portland, OR 97035" -228515,Wired Headphones,1,11.99,07/02/19 10:51,"906 Main St, New York City, NY 10001" -228516,20in Monitor,1,109.99,07/20/19 12:26,"505 Lake St, Portland, ME 04101" -228517,27in FHD Monitor,1,149.99,07/08/19 16:05,"206 South St, Atlanta, GA 30301" -228518,AAA Batteries (4-pack),1,2.99,07/07/19 12:03,"16 North St, Portland, OR 97035" -228519,AAA Batteries (4-pack),1,2.99,07/06/19 20:30,"324 Main St, San Francisco, CA 94016" -228520,Vareebadd Phone,1,400,07/24/19 17:40,"6 7th St, Boston, MA 02215" -228521,Bose SoundSport Headphones,1,99.99,07/24/19 20:31,"600 Cedar St, Los Angeles, CA 90001" -228522,Lightning Charging Cable,1,14.95,07/30/19 18:31,"332 Johnson St, San Francisco, CA 94016" -228523,Lightning Charging Cable,1,14.95,07/02/19 14:21,"193 Hill St, Austin, TX 73301" -228524,Apple Airpods Headphones,1,150,07/07/19 19:51,"175 7th St, Dallas, TX 75001" -228525,Google Phone,1,600,07/09/19 19:35,"115 4th St, Atlanta, GA 30301" -228526,USB-C Charging Cable,1,11.95,07/12/19 09:42,"129 5th St, Boston, MA 02215" -228527,Macbook Pro Laptop,1,1700,07/03/19 14:53,"155 13th St, Los Angeles, CA 90001" -228528,27in FHD Monitor,1,149.99,07/22/19 10:07,"397 Hickory St, Los Angeles, CA 90001" -228529,AAA Batteries (4-pack),1,2.99,07/15/19 20:25,"647 Madison St, Dallas, TX 75001" -228530,27in 4K Gaming Monitor,1,389.99,07/27/19 16:57,"756 Madison St, Los Angeles, CA 90001" -228531,27in FHD Monitor,1,149.99,07/04/19 16:46,"884 Chestnut St, New York City, NY 10001" -228532,Google Phone,1,600,07/31/19 17:14,"401 Lakeview St, Portland, OR 97035" -228533,Wired Headphones,1,11.99,07/13/19 07:19,"795 Washington St, San Francisco, CA 94016" -228534,USB-C Charging Cable,1,11.95,07/29/19 09:45,"811 Wilson St, New York City, NY 10001" -228535,USB-C Charging Cable,3,11.95,07/27/19 16:11,"935 Washington St, Atlanta, GA 30301" -228536,Vareebadd Phone,1,400,07/13/19 12:11,"412 Main St, Los Angeles, CA 90001" -228537,AA Batteries (4-pack),3,3.84,07/19/19 20:09,"721 Lakeview St, Atlanta, GA 30301" -228538,Apple Airpods Headphones,1,150,07/17/19 18:46,"790 Forest St, San Francisco, CA 94016" -228539,ThinkPad Laptop,1,999.99,07/23/19 15:47,"216 River St, Austin, TX 73301" -228540,Bose SoundSport Headphones,1,99.99,07/24/19 10:43,"387 Main St, Los Angeles, CA 90001" -228541,iPhone,1,700,07/10/19 19:38,"992 10th St, Atlanta, GA 30301" -228542,AAA Batteries (4-pack),1,2.99,07/03/19 10:04,"340 13th St, Portland, ME 04101" -228543,AAA Batteries (4-pack),2,2.99,07/07/19 23:22,"304 South St, New York City, NY 10001" -228544,AAA Batteries (4-pack),1,2.99,07/04/19 19:59,"233 Washington St, San Francisco, CA 94016" -228545,Lightning Charging Cable,1,14.95,07/26/19 20:02,"203 1st St, San Francisco, CA 94016" -228546,Macbook Pro Laptop,1,1700,07/06/19 20:43,"987 Main St, Boston, MA 02215" -228547,AA Batteries (4-pack),1,3.84,07/13/19 14:29,"99 Washington St, Austin, TX 73301" -228548,Lightning Charging Cable,1,14.95,07/29/19 12:54,"719 Wilson St, San Francisco, CA 94016" -228549,AA Batteries (4-pack),1,3.84,07/25/19 13:01,"915 Johnson St, Dallas, TX 75001" -228550,Google Phone,1,600,07/06/19 23:33,"166 4th St, New York City, NY 10001" -228550,USB-C Charging Cable,1,11.95,07/06/19 23:33,"166 4th St, New York City, NY 10001" -228551,USB-C Charging Cable,1,11.95,07/26/19 02:16,"842 Highland St, Los Angeles, CA 90001" -228552,USB-C Charging Cable,1,11.95,07/11/19 16:30,"63 Adams St, San Francisco, CA 94016" -228553,Wired Headphones,1,11.99,07/04/19 19:05,"818 14th St, New York City, NY 10001" -228554,Bose SoundSport Headphones,1,99.99,07/21/19 12:43,"998 Forest St, New York City, NY 10001" -228555,27in FHD Monitor,1,149.99,07/19/19 11:59,"501 1st St, Boston, MA 02215" -228556,Wired Headphones,1,11.99,07/19/19 18:13,"812 Wilson St, Seattle, WA 98101" -228557,Wired Headphones,1,11.99,07/07/19 19:59,"350 5th St, San Francisco, CA 94016" -228558,AA Batteries (4-pack),2,3.84,07/20/19 21:41,"655 Cedar St, Dallas, TX 75001" -228559,Wired Headphones,1,11.99,07/11/19 08:35,"485 Lincoln St, Dallas, TX 75001" -228560,Lightning Charging Cable,1,14.95,07/15/19 19:36,"479 Walnut St, Los Angeles, CA 90001" -228561,Bose SoundSport Headphones,1,99.99,07/22/19 12:11,"762 7th St, San Francisco, CA 94016" -228562,Apple Airpods Headphones,1,150,07/21/19 04:38,"504 Adams St, Los Angeles, CA 90001" -228563,Lightning Charging Cable,1,14.95,07/19/19 22:17,"839 2nd St, New York City, NY 10001" -228564,Google Phone,1,600,07/15/19 00:16,"535 Spruce St, New York City, NY 10001" -228565,AAA Batteries (4-pack),2,2.99,07/19/19 19:14,"33 10th St, Los Angeles, CA 90001" -228566,Apple Airpods Headphones,1,150,07/26/19 20:18,"861 11th St, Austin, TX 73301" -228567,27in FHD Monitor,1,149.99,07/06/19 23:23,"292 8th St, Boston, MA 02215" -228568,Lightning Charging Cable,1,14.95,07/27/19 15:24,"458 Church St, San Francisco, CA 94016" -228569,Wired Headphones,1,11.99,07/16/19 15:48,"503 Meadow St, San Francisco, CA 94016" -228570,USB-C Charging Cable,1,11.95,07/28/19 08:56,"318 Hickory St, Los Angeles, CA 90001" -228571,27in 4K Gaming Monitor,1,389.99,07/25/19 12:28,"940 Chestnut St, San Francisco, CA 94016" -228572,Wired Headphones,2,11.99,07/11/19 11:30,"691 South St, San Francisco, CA 94016" -228573,AAA Batteries (4-pack),1,2.99,07/09/19 11:03,"661 Wilson St, New York City, NY 10001" -228574,Apple Airpods Headphones,1,150,07/19/19 20:13,"558 Adams St, Boston, MA 02215" -228575,Lightning Charging Cable,1,14.95,07/15/19 21:00,"629 Washington St, San Francisco, CA 94016" -228576,Lightning Charging Cable,1,14.95,07/20/19 19:13,"958 Elm St, Los Angeles, CA 90001" -228577,AAA Batteries (4-pack),1,2.99,07/17/19 18:22,"320 Hickory St, New York City, NY 10001" -228578,Google Phone,1,600,07/31/19 11:31,"5 Willow St, Dallas, TX 75001" -228579,Wired Headphones,1,11.99,07/27/19 17:18,"229 Lincoln St, San Francisco, CA 94016" -228580,Macbook Pro Laptop,1,1700,07/18/19 12:26,"328 Hill St, San Francisco, CA 94016" -228581,27in 4K Gaming Monitor,1,389.99,07/01/19 17:26,"920 Church St, Los Angeles, CA 90001" -228582,27in FHD Monitor,1,149.99,07/16/19 13:31,"447 Hill St, Austin, TX 73301" -228583,AA Batteries (4-pack),3,3.84,07/14/19 20:38,"857 Main St, Atlanta, GA 30301" -228584,Bose SoundSport Headphones,1,99.99,07/07/19 13:24,"840 Walnut St, San Francisco, CA 94016" -228585,Flatscreen TV,1,300,07/11/19 11:08,"491 North St, San Francisco, CA 94016" -228586,Lightning Charging Cable,1,14.95,07/31/19 13:22,"274 12th St, Los Angeles, CA 90001" -228587,USB-C Charging Cable,1,11.95,07/21/19 22:46,"144 Dogwood St, Austin, TX 73301" -228588,Vareebadd Phone,1,400,07/04/19 11:04,"961 Spruce St, Atlanta, GA 30301" -228589,iPhone,1,700,07/08/19 12:09,"592 Cherry St, San Francisco, CA 94016" -228590,34in Ultrawide Monitor,1,379.99,07/11/19 09:11,"364 Maple St, Boston, MA 02215" -228591,Apple Airpods Headphones,1,150,07/22/19 09:40,"64 Highland St, Portland, OR 97035" -228592,Lightning Charging Cable,1,14.95,07/31/19 10:17,"786 West St, New York City, NY 10001" -228592,Apple Airpods Headphones,1,150,07/31/19 10:17,"786 West St, New York City, NY 10001" -228593,iPhone,1,700,07/04/19 08:07,"203 Lake St, Boston, MA 02215" -228594,AA Batteries (4-pack),1,3.84,07/21/19 13:40,"403 Maple St, Dallas, TX 75001" -228595,USB-C Charging Cable,1,11.95,07/16/19 17:23,"532 Madison St, Dallas, TX 75001" -228596,27in FHD Monitor,1,149.99,07/03/19 13:47,"393 Forest St, New York City, NY 10001" -228597,Wired Headphones,1,11.99,07/07/19 15:29,"8 8th St, New York City, NY 10001" -228598,Wired Headphones,1,11.99,07/11/19 11:08,"740 Hill St, Austin, TX 73301" -228599,Lightning Charging Cable,1,14.95,07/10/19 18:40,"565 12th St, New York City, NY 10001" -228600,Wired Headphones,1,11.99,07/21/19 11:54,"417 Cherry St, San Francisco, CA 94016" -228601,27in FHD Monitor,1,149.99,07/16/19 11:12,"523 8th St, New York City, NY 10001" -228602,Bose SoundSport Headphones,1,99.99,07/05/19 23:30,"158 Hill St, Los Angeles, CA 90001" -228603,AA Batteries (4-pack),2,3.84,07/31/19 09:04,"340 Lincoln St, Seattle, WA 98101" -228604,Flatscreen TV,1,300,07/19/19 20:20,"105 Center St, San Francisco, CA 94016" -228605,Lightning Charging Cable,1,14.95,07/10/19 12:04,"36 11th St, Atlanta, GA 30301" -228606,Apple Airpods Headphones,1,150,07/30/19 21:12,"314 9th St, San Francisco, CA 94016" -228607,AA Batteries (4-pack),1,3.84,07/25/19 15:18,"520 West St, Portland, OR 97035" -228608,Lightning Charging Cable,1,14.95,07/05/19 23:12,"708 Hickory St, Portland, ME 04101" -228609,27in FHD Monitor,1,149.99,07/22/19 16:01,"661 River St, Boston, MA 02215" -228610,Google Phone,1,600,07/26/19 18:24,"746 Maple St, Los Angeles, CA 90001" -228611,Lightning Charging Cable,1,14.95,07/20/19 10:25,"201 West St, Boston, MA 02215" -228612,AAA Batteries (4-pack),1,2.99,07/25/19 17:07,"140 Center St, Dallas, TX 75001" -228613,USB-C Charging Cable,1,11.95,07/25/19 14:22,"665 Madison St, New York City, NY 10001" -228614,Lightning Charging Cable,1,14.95,07/30/19 18:21,"204 14th St, Austin, TX 73301" -228615,Lightning Charging Cable,1,14.95,07/19/19 06:10,"366 North St, New York City, NY 10001" -228616,USB-C Charging Cable,1,11.95,07/07/19 16:33,"955 Pine St, Portland, OR 97035" -228617,27in 4K Gaming Monitor,1,389.99,07/29/19 13:04,"324 Jefferson St, San Francisco, CA 94016" -228618,Apple Airpods Headphones,1,150,07/30/19 19:49,"907 4th St, San Francisco, CA 94016" -228619,AA Batteries (4-pack),1,3.84,07/21/19 16:47,"557 6th St, Dallas, TX 75001" -228620,USB-C Charging Cable,1,11.95,07/14/19 18:48,"622 13th St, Seattle, WA 98101" -228621,20in Monitor,1,109.99,07/15/19 21:19,"202 Hickory St, Los Angeles, CA 90001" -228622,AAA Batteries (4-pack),1,2.99,07/16/19 19:10,"322 Ridge St, Dallas, TX 75001" -228623,USB-C Charging Cable,1,11.95,07/18/19 19:11,"63 Park St, Los Angeles, CA 90001" -228624,Wired Headphones,1,11.99,07/13/19 16:51,"922 Highland St, San Francisco, CA 94016" -228625,USB-C Charging Cable,1,11.95,07/10/19 08:11,"887 11th St, New York City, NY 10001" -228626,AA Batteries (4-pack),1,3.84,07/18/19 09:53,"67 Hill St, Portland, OR 97035" -228627,AAA Batteries (4-pack),1,2.99,07/08/19 03:00,"849 Lakeview St, Atlanta, GA 30301" -228628,Apple Airpods Headphones,1,150,07/06/19 10:00,"374 River St, San Francisco, CA 94016" -228629,Lightning Charging Cable,2,14.95,07/20/19 15:53,"155 Ridge St, Seattle, WA 98101" -228630,AA Batteries (4-pack),1,3.84,07/26/19 16:51,"784 1st St, Los Angeles, CA 90001" -228631,27in 4K Gaming Monitor,1,389.99,07/13/19 12:21,"749 Adams St, Atlanta, GA 30301" -228631,Bose SoundSport Headphones,1,99.99,07/13/19 12:21,"749 Adams St, Atlanta, GA 30301" -228632,AAA Batteries (4-pack),1,2.99,07/10/19 16:15,"594 Cherry St, San Francisco, CA 94016" -,,,,, -228633,Macbook Pro Laptop,1,1700,07/30/19 23:15,"104 Main St, Los Angeles, CA 90001" -228634,iPhone,1,700,07/22/19 17:33,"10 11th St, Los Angeles, CA 90001" -228635,Wired Headphones,1,11.99,07/09/19 18:25,"5 Church St, Austin, TX 73301" -228636,Wired Headphones,1,11.99,07/03/19 17:29,"214 Walnut St, Seattle, WA 98101" -228637,20in Monitor,1,109.99,07/06/19 17:17,"345 14th St, Austin, TX 73301" -228638,Flatscreen TV,1,300,07/28/19 08:04,"835 Walnut St, Seattle, WA 98101" -228639,Bose SoundSport Headphones,1,99.99,07/29/19 10:31,"67 14th St, San Francisco, CA 94016" -228640,Google Phone,1,600,07/08/19 13:03,"847 1st St, Los Angeles, CA 90001" -228641,AAA Batteries (4-pack),1,2.99,07/09/19 18:11,"993 Park St, Dallas, TX 75001" -228642,USB-C Charging Cable,1,11.95,07/07/19 22:36,"866 14th St, Portland, OR 97035" -228643,Wired Headphones,1,11.99,07/28/19 20:34,"961 14th St, Los Angeles, CA 90001" -228644,AAA Batteries (4-pack),2,2.99,07/05/19 00:20,"37 7th St, San Francisco, CA 94016" -228645,LG Dryer,1,600.0,07/13/19 11:51,"409 North St, Boston, MA 02215" -228646,Wired Headphones,1,11.99,07/17/19 15:56,"433 Chestnut St, New York City, NY 10001" -228647,Apple Airpods Headphones,1,150,07/14/19 11:35,"572 13th St, Los Angeles, CA 90001" -228648,Wired Headphones,1,11.99,07/21/19 19:08,"231 Cedar St, Los Angeles, CA 90001" -228649,Apple Airpods Headphones,1,150,07/09/19 15:38,"210 5th St, San Francisco, CA 94016" -228650,AA Batteries (4-pack),1,3.84,07/31/19 12:00,"241 Lake St, New York City, NY 10001" -228651,Lightning Charging Cable,1,14.95,07/26/19 19:04,"912 Maple St, Los Angeles, CA 90001" -228652,Lightning Charging Cable,1,14.95,07/21/19 19:57,"633 1st St, Boston, MA 02215" -228653,Lightning Charging Cable,1,14.95,07/01/19 08:36,"977 5th St, Dallas, TX 75001" -228654,Lightning Charging Cable,2,14.95,07/30/19 14:58,"133 9th St, Atlanta, GA 30301" -228655,Wired Headphones,1,11.99,07/11/19 06:50,"538 Willow St, Boston, MA 02215" -228656,Lightning Charging Cable,1,14.95,07/03/19 00:50,"955 4th St, New York City, NY 10001" -228657,AAA Batteries (4-pack),1,2.99,07/25/19 23:52,"710 South St, Boston, MA 02215" -228658,Wired Headphones,1,11.99,07/19/19 19:56,"255 9th St, New York City, NY 10001" -228659,34in Ultrawide Monitor,1,379.99,07/09/19 09:07,"216 7th St, Atlanta, GA 30301" -228660,AAA Batteries (4-pack),1,2.99,07/25/19 16:00,"881 11th St, San Francisco, CA 94016" -228661,Apple Airpods Headphones,1,150,07/11/19 21:42,"220 Wilson St, San Francisco, CA 94016" -228662,iPhone,1,700,07/30/19 17:55,"295 9th St, Atlanta, GA 30301" -228663,Apple Airpods Headphones,1,150,07/28/19 16:30,"593 Highland St, Los Angeles, CA 90001" -228664,Bose SoundSport Headphones,1,99.99,07/28/19 07:42,"724 Spruce St, San Francisco, CA 94016" -228665,34in Ultrawide Monitor,1,379.99,07/06/19 13:51,"658 Maple St, San Francisco, CA 94016" -228666,Flatscreen TV,1,300,07/27/19 15:30,"691 Jackson St, San Francisco, CA 94016" -228667,Macbook Pro Laptop,1,1700,07/30/19 22:50,"940 Cherry St, Boston, MA 02215" -228668,USB-C Charging Cable,1,11.95,07/21/19 16:11,"214 2nd St, New York City, NY 10001" -228669,USB-C Charging Cable,2,11.95,07/20/19 16:09,"742 River St, Dallas, TX 75001" -228670,27in FHD Monitor,1,149.99,07/22/19 18:28,"741 9th St, Dallas, TX 75001" -228671,27in 4K Gaming Monitor,1,389.99,07/16/19 13:31,"413 5th St, Boston, MA 02215" -228672,Lightning Charging Cable,1,14.95,07/12/19 20:46,"895 Highland St, Boston, MA 02215" -228673,Lightning Charging Cable,1,14.95,07/16/19 17:00,"753 Chestnut St, San Francisco, CA 94016" -228674,Wired Headphones,1,11.99,07/12/19 09:23,"348 North St, Dallas, TX 75001" -228675,Bose SoundSport Headphones,1,99.99,07/02/19 10:02,"167 Church St, New York City, NY 10001" -228676,Bose SoundSport Headphones,1,99.99,07/27/19 18:12,"754 Elm St, Boston, MA 02215" -228677,LG Dryer,1,600.0,07/12/19 11:18,"452 Lakeview St, Atlanta, GA 30301" -228678,ThinkPad Laptop,1,999.99,07/14/19 21:41,"623 2nd St, New York City, NY 10001" -228679,27in FHD Monitor,1,149.99,07/23/19 21:44,"926 2nd St, San Francisco, CA 94016" -228680,Wired Headphones,1,11.99,07/15/19 14:07,"249 Cherry St, Seattle, WA 98101" -228681,27in FHD Monitor,1,149.99,07/16/19 16:05,"376 Washington St, Seattle, WA 98101" -228682,AA Batteries (4-pack),1,3.84,07/01/19 12:47,"474 Washington St, Boston, MA 02215" -228683,Wired Headphones,1,11.99,07/08/19 14:39,"753 5th St, Los Angeles, CA 90001" -228684,AAA Batteries (4-pack),2,2.99,07/05/19 15:43,"700 Lakeview St, Los Angeles, CA 90001" -228685,Lightning Charging Cable,1,14.95,07/10/19 10:22,"409 Pine St, Atlanta, GA 30301" -228686,Lightning Charging Cable,1,14.95,07/23/19 01:10,"368 Adams St, San Francisco, CA 94016" -228687,Wired Headphones,1,11.99,07/21/19 23:06,"687 Jackson St, New York City, NY 10001" -228688,Wired Headphones,1,11.99,07/25/19 00:06,"419 Cherry St, New York City, NY 10001" -228688,34in Ultrawide Monitor,1,379.99,07/25/19 00:06,"419 Cherry St, New York City, NY 10001" -228689,27in FHD Monitor,1,149.99,07/01/19 16:16,"131 14th St, New York City, NY 10001" -228690,AAA Batteries (4-pack),2,2.99,07/19/19 00:00,"629 8th St, Los Angeles, CA 90001" -228691,27in 4K Gaming Monitor,1,389.99,07/24/19 15:43,"740 Chestnut St, San Francisco, CA 94016" -228692,Wired Headphones,1,11.99,07/03/19 10:21,"550 Church St, Dallas, TX 75001" -228693,Bose SoundSport Headphones,1,99.99,07/08/19 16:31,"437 Main St, Los Angeles, CA 90001" -228694,Lightning Charging Cable,1,14.95,07/11/19 20:52,"29 Lincoln St, Boston, MA 02215" -228695,Lightning Charging Cable,1,14.95,07/03/19 12:30,"47 Wilson St, San Francisco, CA 94016" -228696,Apple Airpods Headphones,1,150,07/30/19 09:43,"893 Lakeview St, Atlanta, GA 30301" -228697,AAA Batteries (4-pack),2,2.99,07/09/19 19:27,"944 Lincoln St, Seattle, WA 98101" -228698,27in 4K Gaming Monitor,1,389.99,07/21/19 15:37,"111 Lake St, New York City, NY 10001" -228699,Apple Airpods Headphones,1,150,07/20/19 21:09,"611 Johnson St, Portland, OR 97035" -228700,Apple Airpods Headphones,1,150,07/30/19 06:35,"491 Meadow St, Boston, MA 02215" -228701,Vareebadd Phone,1,400,07/06/19 18:26,"852 Madison St, San Francisco, CA 94016" -228701,USB-C Charging Cable,1,11.95,07/06/19 18:26,"852 Madison St, San Francisco, CA 94016" -228702,Macbook Pro Laptop,1,1700,07/02/19 17:34,"416 Maple St, Boston, MA 02215" -228703,AA Batteries (4-pack),2,3.84,07/20/19 09:15,"773 7th St, New York City, NY 10001" -228704,Bose SoundSport Headphones,1,99.99,07/07/19 15:05,"505 West St, Los Angeles, CA 90001" -228705,Macbook Pro Laptop,1,1700,07/01/19 11:24,"793 5th St, Atlanta, GA 30301" -228706,Lightning Charging Cable,1,14.95,07/03/19 13:25,"937 Johnson St, San Francisco, CA 94016" -228707,Lightning Charging Cable,1,14.95,07/30/19 17:44,"871 7th St, Seattle, WA 98101" -228708,Lightning Charging Cable,1,14.95,07/12/19 04:17,"274 Spruce St, New York City, NY 10001" -228708,Lightning Charging Cable,1,14.95,07/12/19 04:17,"274 Spruce St, New York City, NY 10001" -228709,Bose SoundSport Headphones,1,99.99,07/29/19 19:56,"578 Johnson St, San Francisco, CA 94016" -228710,AAA Batteries (4-pack),2,2.99,07/16/19 23:23,"227 Willow St, Boston, MA 02215" -228711,20in Monitor,1,109.99,07/15/19 08:33,"828 Willow St, San Francisco, CA 94016" -228712,USB-C Charging Cable,1,11.95,07/19/19 16:53,"810 Center St, New York City, NY 10001" -228713,iPhone,1,700,07/16/19 11:02,"347 Church St, New York City, NY 10001" -228714,USB-C Charging Cable,1,11.95,07/12/19 17:51,"155 13th St, Seattle, WA 98101" -228714,Lightning Charging Cable,2,14.95,07/12/19 17:51,"155 13th St, Seattle, WA 98101" -228715,Bose SoundSport Headphones,1,99.99,07/27/19 03:26,"325 Willow St, San Francisco, CA 94016" -228716,ThinkPad Laptop,1,999.99,07/14/19 23:59,"650 Hickory St, New York City, NY 10001" -228717,Bose SoundSport Headphones,1,99.99,07/15/19 09:45,"600 Cedar St, Austin, TX 73301" -228718,Lightning Charging Cable,1,14.95,07/17/19 19:17,"193 Willow St, Seattle, WA 98101" -228719,27in FHD Monitor,1,149.99,07/26/19 13:27,"511 14th St, Portland, OR 97035" -228720,Flatscreen TV,1,300,07/07/19 10:13,"472 Forest St, New York City, NY 10001" -228721,Lightning Charging Cable,1,14.95,07/29/19 17:14,"592 Chestnut St, Los Angeles, CA 90001" -228722,Wired Headphones,1,11.99,07/28/19 13:03,"347 Highland St, Boston, MA 02215" -228723,27in 4K Gaming Monitor,1,389.99,07/02/19 18:18,"127 7th St, Portland, OR 97035" -228724,AA Batteries (4-pack),1,3.84,07/31/19 13:25,"244 Dogwood St, Seattle, WA 98101" -228725,Google Phone,1,600,07/05/19 17:32,"317 7th St, Seattle, WA 98101" -228725,USB-C Charging Cable,1,11.95,07/05/19 17:32,"317 7th St, Seattle, WA 98101" -228726,Wired Headphones,1,11.99,07/20/19 19:47,"515 Jackson St, Austin, TX 73301" -228726,USB-C Charging Cable,1,11.95,07/20/19 19:47,"515 Jackson St, Austin, TX 73301" -228727,LG Dryer,1,600.0,07/11/19 12:44,"572 10th St, Los Angeles, CA 90001" -228728,Google Phone,1,600,07/04/19 22:03,"683 Pine St, Los Angeles, CA 90001" -228729,Lightning Charging Cable,1,14.95,07/06/19 17:51,"343 14th St, New York City, NY 10001" -228730,AAA Batteries (4-pack),1,2.99,07/04/19 22:17,"583 Jackson St, Dallas, TX 75001" -228731,Lightning Charging Cable,1,14.95,07/12/19 21:37,"326 River St, New York City, NY 10001" -228732,27in FHD Monitor,1,149.99,07/21/19 16:26,"707 2nd St, Seattle, WA 98101" -228733,27in FHD Monitor,1,149.99,07/24/19 19:41,"956 Walnut St, Austin, TX 73301" -228734,27in 4K Gaming Monitor,1,389.99,07/13/19 13:49,"555 1st St, Portland, OR 97035" -228735,27in 4K Gaming Monitor,1,389.99,07/18/19 13:47,"932 Cherry St, San Francisco, CA 94016" -228736,AAA Batteries (4-pack),1,2.99,07/30/19 15:41,"138 5th St, Dallas, TX 75001" -228737,AA Batteries (4-pack),3,3.84,07/19/19 10:52,"889 13th St, Los Angeles, CA 90001" -228738,Wired Headphones,1,11.99,07/31/19 10:59,"706 Lakeview St, San Francisco, CA 94016" -228739,Lightning Charging Cable,2,14.95,07/09/19 17:20,"795 Chestnut St, Boston, MA 02215" -228740,iPhone,1,700,07/23/19 14:44,"251 South St, Boston, MA 02215" -228741,AAA Batteries (4-pack),1,2.99,07/26/19 10:32,"758 12th St, Atlanta, GA 30301" -228742,Lightning Charging Cable,1,14.95,07/04/19 22:09,"893 13th St, San Francisco, CA 94016" -228743,USB-C Charging Cable,1,11.95,07/01/19 14:11,"266 Willow St, Austin, TX 73301" -228744,Apple Airpods Headphones,1,150,07/17/19 19:49,"234 North St, New York City, NY 10001" -228744,Wired Headphones,1,11.99,07/17/19 19:49,"234 North St, New York City, NY 10001" -228745,Google Phone,1,600,07/30/19 10:37,"160 South St, Los Angeles, CA 90001" -228746,Google Phone,1,600,07/24/19 15:34,"823 Maple St, Dallas, TX 75001" -228747,Lightning Charging Cable,1,14.95,07/21/19 00:04,"545 Lake St, New York City, NY 10001" -228748,Apple Airpods Headphones,1,150,07/22/19 13:45,"749 Spruce St, San Francisco, CA 94016" -228749,20in Monitor,1,109.99,07/31/19 02:17,"757 Elm St, San Francisco, CA 94016" -228750,AA Batteries (4-pack),1,3.84,07/08/19 00:26,"137 Walnut St, San Francisco, CA 94016" -228751,27in 4K Gaming Monitor,1,389.99,07/17/19 11:14,"979 Washington St, Atlanta, GA 30301" -228752,Bose SoundSport Headphones,1,99.99,07/24/19 12:16,"903 6th St, Seattle, WA 98101" -228753,AAA Batteries (4-pack),2,2.99,07/29/19 08:53,"526 South St, Dallas, TX 75001" -228754,USB-C Charging Cable,1,11.95,07/08/19 07:28,"41 9th St, San Francisco, CA 94016" -228755,Lightning Charging Cable,1,14.95,07/30/19 21:09,"757 Dogwood St, Atlanta, GA 30301" -228756,Apple Airpods Headphones,1,150,07/17/19 12:46,"630 Meadow St, Los Angeles, CA 90001" -228757,Lightning Charging Cable,1,14.95,07/07/19 21:29,"983 Jackson St, Boston, MA 02215" -228758,AA Batteries (4-pack),1,3.84,07/16/19 17:34,"92 Highland St, Los Angeles, CA 90001" -228758,USB-C Charging Cable,1,11.95,07/16/19 17:34,"92 Highland St, Los Angeles, CA 90001" -228759,Wired Headphones,1,11.99,07/24/19 22:25,"674 Elm St, Dallas, TX 75001" -228760,Apple Airpods Headphones,1,150,07/17/19 22:57,"730 Wilson St, San Francisco, CA 94016" -228761,USB-C Charging Cable,1,11.95,07/08/19 14:15,"970 Spruce St, Portland, OR 97035" -228762,USB-C Charging Cable,1,11.95,07/16/19 20:28,"323 7th St, New York City, NY 10001" -228763,AAA Batteries (4-pack),1,2.99,07/08/19 18:06,"832 Jackson St, San Francisco, CA 94016" -228764,AA Batteries (4-pack),1,3.84,07/17/19 09:52,"180 Park St, San Francisco, CA 94016" -228765,iPhone,1,700,07/03/19 09:24,"983 4th St, Austin, TX 73301" -228766,USB-C Charging Cable,1,11.95,07/13/19 22:47,"907 Madison St, Dallas, TX 75001" -228767,AAA Batteries (4-pack),4,2.99,07/26/19 17:46,"552 Johnson St, San Francisco, CA 94016" -228768,ThinkPad Laptop,1,999.99,07/16/19 07:07,"666 Hill St, Dallas, TX 75001" -228769,Apple Airpods Headphones,1,150,07/17/19 22:11,"113 Spruce St, Dallas, TX 75001" -228770,ThinkPad Laptop,1,999.99,07/05/19 18:21,"874 5th St, Boston, MA 02215" -228771,Wired Headphones,1,11.99,07/24/19 12:07,"307 8th St, Atlanta, GA 30301" -228772,Lightning Charging Cable,1,14.95,07/17/19 14:03,"801 Pine St, Boston, MA 02215" -,,,,, -228773,AAA Batteries (4-pack),1,2.99,07/12/19 16:29,"497 Sunset St, Seattle, WA 98101" -228774,USB-C Charging Cable,2,11.95,07/11/19 15:40,"51 Wilson St, San Francisco, CA 94016" -228775,Lightning Charging Cable,1,14.95,07/17/19 01:17,"635 Main St, San Francisco, CA 94016" -228776,Apple Airpods Headphones,1,150,07/18/19 22:33,"541 Lake St, Boston, MA 02215" -228777,USB-C Charging Cable,1,11.95,07/30/19 12:47,"414 13th St, Los Angeles, CA 90001" -228778,USB-C Charging Cable,1,11.95,07/23/19 10:30,"714 River St, Boston, MA 02215" -228779,Bose SoundSport Headphones,1,99.99,07/08/19 18:50,"992 6th St, Los Angeles, CA 90001" -228780,Bose SoundSport Headphones,1,99.99,07/21/19 16:14,"692 8th St, Atlanta, GA 30301" -228781,Apple Airpods Headphones,1,150,07/25/19 11:18,"395 West St, Atlanta, GA 30301" -228782,USB-C Charging Cable,1,11.95,07/21/19 21:11,"266 Pine St, Seattle, WA 98101" -228783,USB-C Charging Cable,1,11.95,07/16/19 12:19,"888 Cherry St, San Francisco, CA 94016" -228784,AAA Batteries (4-pack),1,2.99,07/12/19 17:46,"473 6th St, Portland, ME 04101" -228785,Apple Airpods Headphones,1,150,07/22/19 19:36,"255 4th St, San Francisco, CA 94016" -228786,Vareebadd Phone,1,400,07/17/19 15:42,"747 Cedar St, San Francisco, CA 94016" -228787,Bose SoundSport Headphones,1,99.99,07/08/19 18:38,"489 Lincoln St, San Francisco, CA 94016" -228788,Lightning Charging Cable,1,14.95,07/17/19 08:42,"596 Lakeview St, Seattle, WA 98101" -228789,Wired Headphones,1,11.99,07/24/19 21:56,"825 8th St, San Francisco, CA 94016" -228790,AAA Batteries (4-pack),2,2.99,07/14/19 09:20,"745 12th St, Boston, MA 02215" -228791,Bose SoundSport Headphones,1,99.99,07/26/19 21:07,"620 Willow St, Seattle, WA 98101" -228792,27in 4K Gaming Monitor,1,389.99,07/31/19 20:03,"880 7th St, Dallas, TX 75001" -228793,AA Batteries (4-pack),1,3.84,07/18/19 16:56,"673 Adams St, San Francisco, CA 94016" -228794,Wired Headphones,1,11.99,07/19/19 10:40,"575 West St, Atlanta, GA 30301" -228795,27in FHD Monitor,1,149.99,07/13/19 13:36,"251 14th St, San Francisco, CA 94016" -228796,AA Batteries (4-pack),1,3.84,07/20/19 11:36,"2 Hill St, Boston, MA 02215" -228797,Wired Headphones,1,11.99,07/02/19 12:41,"584 Forest St, Portland, OR 97035" -228798,AA Batteries (4-pack),1,3.84,07/27/19 07:50,"732 Madison St, Atlanta, GA 30301" -228798,Flatscreen TV,1,300,07/27/19 07:50,"732 Madison St, Atlanta, GA 30301" -228799,Wired Headphones,1,11.99,07/19/19 11:10,"715 Pine St, Los Angeles, CA 90001" -228800,USB-C Charging Cable,1,11.95,07/25/19 21:20,"715 Park St, Austin, TX 73301" -228801,AAA Batteries (4-pack),3,2.99,07/03/19 11:28,"205 2nd St, Austin, TX 73301" -228802,AAA Batteries (4-pack),2,2.99,07/30/19 20:04,"919 Wilson St, Boston, MA 02215" -228803,27in FHD Monitor,1,149.99,07/25/19 11:30,"655 Hill St, Portland, ME 04101" -228804,Lightning Charging Cable,1,14.95,07/14/19 01:22,"842 Chestnut St, Boston, MA 02215" -228805,USB-C Charging Cable,1,11.95,07/13/19 08:48,"922 12th St, Atlanta, GA 30301" -228806,Lightning Charging Cable,1,14.95,07/04/19 16:22,"443 Madison St, Atlanta, GA 30301" -228807,USB-C Charging Cable,1,11.95,07/29/19 14:46,"636 13th St, San Francisco, CA 94016" -228808,AAA Batteries (4-pack),4,2.99,07/11/19 14:54,"620 13th St, New York City, NY 10001" -228808,Vareebadd Phone,1,400,07/11/19 14:54,"620 13th St, New York City, NY 10001" -228809,Wired Headphones,1,11.99,07/14/19 15:14,"512 Main St, San Francisco, CA 94016" -228810,USB-C Charging Cable,1,11.95,07/06/19 22:38,"780 9th St, Los Angeles, CA 90001" -228811,Apple Airpods Headphones,1,150,07/06/19 10:03,"451 Pine St, San Francisco, CA 94016" -228812,AA Batteries (4-pack),1,3.84,07/03/19 10:47,"471 14th St, Austin, TX 73301" -228813,Apple Airpods Headphones,1,150,07/19/19 22:56,"128 1st St, Seattle, WA 98101" -228814,27in 4K Gaming Monitor,1,389.99,07/09/19 13:00,"745 Sunset St, San Francisco, CA 94016" -228815,Flatscreen TV,1,300,07/07/19 13:27,"183 10th St, Boston, MA 02215" -228816,AAA Batteries (4-pack),2,2.99,07/06/19 21:34,"764 Maple St, Los Angeles, CA 90001" -228817,AA Batteries (4-pack),2,3.84,07/17/19 19:02,"812 12th St, San Francisco, CA 94016" -228818,iPhone,1,700,07/05/19 21:41,"420 8th St, San Francisco, CA 94016" -228818,Lightning Charging Cable,1,14.95,07/05/19 21:41,"420 8th St, San Francisco, CA 94016" -228819,AAA Batteries (4-pack),1,2.99,07/22/19 22:05,"435 8th St, Los Angeles, CA 90001" -228820,Bose SoundSport Headphones,1,99.99,07/11/19 20:39,"823 Pine St, San Francisco, CA 94016" -228821,USB-C Charging Cable,1,11.95,07/14/19 18:36,"363 Lakeview St, Seattle, WA 98101" -228822,Lightning Charging Cable,1,14.95,07/20/19 18:35,"937 Dogwood St, San Francisco, CA 94016" -228823,iPhone,1,700,07/28/19 18:46,"447 Lakeview St, Dallas, TX 75001" -228824,27in 4K Gaming Monitor,1,389.99,07/03/19 21:15,"193 14th St, Los Angeles, CA 90001" -228825,27in FHD Monitor,1,149.99,07/12/19 11:47,"23 Pine St, Dallas, TX 75001" -228826,Lightning Charging Cable,1,14.95,07/05/19 02:09,"276 Hill St, Los Angeles, CA 90001" -228827,Lightning Charging Cable,1,14.95,07/06/19 11:45,"358 7th St, Boston, MA 02215" -228828,USB-C Charging Cable,1,11.95,07/13/19 06:50,"432 1st St, Atlanta, GA 30301" -228829,Google Phone,1,600,07/24/19 17:47,"283 11th St, Boston, MA 02215" -228830,Google Phone,1,600,07/23/19 19:52,"344 Spruce St, San Francisco, CA 94016" -228831,Wired Headphones,2,11.99,07/23/19 19:19,"799 South St, New York City, NY 10001" -228832,34in Ultrawide Monitor,1,379.99,07/25/19 08:55,"664 Lakeview St, New York City, NY 10001" -228833,AA Batteries (4-pack),2,3.84,07/12/19 18:32,"654 Walnut St, Los Angeles, CA 90001" -228834,iPhone,1,700,07/31/19 12:54,"896 6th St, Atlanta, GA 30301" -228835,AA Batteries (4-pack),2,3.84,07/24/19 20:03,"962 9th St, Atlanta, GA 30301" -228836,AA Batteries (4-pack),1,3.84,07/22/19 09:24,"31 Washington St, Austin, TX 73301" -228837,Bose SoundSport Headphones,1,99.99,07/06/19 13:11,"378 Hickory St, Austin, TX 73301" -228838,AAA Batteries (4-pack),1,2.99,07/27/19 19:33,"515 Walnut St, Los Angeles, CA 90001" -228839,USB-C Charging Cable,1,11.95,07/31/19 12:08,"539 Meadow St, Atlanta, GA 30301" -228840,Lightning Charging Cable,1,14.95,07/17/19 13:28,"378 Maple St, Dallas, TX 75001" -228841,Apple Airpods Headphones,1,150,07/12/19 18:55,"524 Chestnut St, San Francisco, CA 94016" -228842,Apple Airpods Headphones,1,150,07/02/19 12:38,"18 13th St, Portland, OR 97035" -228843,Lightning Charging Cable,1,14.95,07/10/19 17:30,"236 14th St, Dallas, TX 75001" -228844,Wired Headphones,1,11.99,07/22/19 10:30,"806 Maple St, New York City, NY 10001" -228845,Flatscreen TV,1,300,07/03/19 04:21,"636 Forest St, New York City, NY 10001" -228846,Flatscreen TV,1,300,07/21/19 12:35,"515 Main St, Los Angeles, CA 90001" -228847,USB-C Charging Cable,1,11.95,07/25/19 21:06,"73 Highland St, San Francisco, CA 94016" -228848,27in FHD Monitor,1,149.99,07/26/19 11:22,"63 Cherry St, Los Angeles, CA 90001" -228849,Bose SoundSport Headphones,1,99.99,07/15/19 22:56,"544 6th St, Los Angeles, CA 90001" -228850,27in FHD Monitor,1,149.99,07/01/19 14:55,"510 Highland St, Seattle, WA 98101" -228851,AAA Batteries (4-pack),1,2.99,07/11/19 21:45,"163 Wilson St, San Francisco, CA 94016" -228851,Google Phone,1,600,07/11/19 21:45,"163 Wilson St, San Francisco, CA 94016" -228852,iPhone,1,700,07/22/19 13:06,"694 12th St, Los Angeles, CA 90001" -228853,AA Batteries (4-pack),2,3.84,07/28/19 09:34,"433 Hickory St, San Francisco, CA 94016" -228854,AA Batteries (4-pack),2,3.84,07/17/19 19:39,"257 Hill St, San Francisco, CA 94016" -228855,Apple Airpods Headphones,1,150,07/15/19 12:47,"715 4th St, Portland, OR 97035" -228856,Apple Airpods Headphones,1,150,07/05/19 04:35,"52 Adams St, Seattle, WA 98101" -228857,27in 4K Gaming Monitor,1,389.99,07/04/19 15:41,"541 Lake St, San Francisco, CA 94016" -228858,Lightning Charging Cable,1,14.95,07/07/19 16:51,"892 Dogwood St, Boston, MA 02215" -228859,Bose SoundSport Headphones,1,99.99,07/31/19 07:31,"869 12th St, San Francisco, CA 94016" -228860,AA Batteries (4-pack),2,3.84,07/08/19 10:54,"854 14th St, Seattle, WA 98101" -228861,Wired Headphones,1,11.99,07/30/19 12:45,"679 Hickory St, Los Angeles, CA 90001" -228862,Apple Airpods Headphones,1,150,07/08/19 08:18,"624 8th St, Austin, TX 73301" -228863,27in 4K Gaming Monitor,1,389.99,07/06/19 20:27,"320 11th St, Boston, MA 02215" -228864,AAA Batteries (4-pack),1,2.99,07/13/19 10:46,"322 14th St, Portland, OR 97035" -228865,AA Batteries (4-pack),1,3.84,07/26/19 19:17,"373 6th St, Atlanta, GA 30301" -228866,AAA Batteries (4-pack),1,2.99,07/17/19 12:31,"655 7th St, Dallas, TX 75001" -228867,Wired Headphones,1,11.99,07/15/19 11:40,"877 Hill St, San Francisco, CA 94016" -228868,iPhone,1,700,07/07/19 03:38,"141 Forest St, Austin, TX 73301" -228869,ThinkPad Laptop,1,999.99,07/22/19 20:29,"901 10th St, Boston, MA 02215" -228870,AA Batteries (4-pack),3,3.84,07/04/19 11:12,"150 14th St, Atlanta, GA 30301" -228871,USB-C Charging Cable,1,11.95,07/01/19 16:21,"820 14th St, San Francisco, CA 94016" -228872,AAA Batteries (4-pack),3,2.99,07/15/19 12:36,"706 8th St, Austin, TX 73301" -228873,Bose SoundSport Headphones,1,99.99,07/12/19 18:54,"4 6th St, San Francisco, CA 94016" -228874,USB-C Charging Cable,1,11.95,07/01/19 19:00,"940 Walnut St, New York City, NY 10001" -228875,AAA Batteries (4-pack),2,2.99,07/27/19 16:14,"29 Jackson St, New York City, NY 10001" -228876,Wired Headphones,1,11.99,07/21/19 19:56,"332 Park St, Seattle, WA 98101" -228877,Wired Headphones,1,11.99,07/20/19 11:34,"60 Wilson St, Seattle, WA 98101" -228878,Lightning Charging Cable,1,14.95,07/20/19 18:56,"446 Lakeview St, San Francisco, CA 94016" -,,,,, -228879,Lightning Charging Cable,1,14.95,07/06/19 20:23,"788 Jefferson St, Austin, TX 73301" -228880,Wired Headphones,1,11.99,07/21/19 23:00,"940 Chestnut St, New York City, NY 10001" -228881,Lightning Charging Cable,1,14.95,07/26/19 20:24,"411 Willow St, Boston, MA 02215" -228882,Wired Headphones,1,11.99,07/09/19 09:55,"19 Jackson St, Seattle, WA 98101" -228883,AAA Batteries (4-pack),2,2.99,07/12/19 14:33,"430 10th St, New York City, NY 10001" -228884,Lightning Charging Cable,1,14.95,07/24/19 13:22,"20 Hickory St, San Francisco, CA 94016" -228885,USB-C Charging Cable,1,11.95,07/25/19 15:58,"858 Center St, Los Angeles, CA 90001" -228886,Wired Headphones,1,11.99,07/04/19 09:56,"885 11th St, Atlanta, GA 30301" -228887,Lightning Charging Cable,1,14.95,07/21/19 14:26,"992 Pine St, San Francisco, CA 94016" -228888,USB-C Charging Cable,1,11.95,07/12/19 15:59,"785 Hickory St, New York City, NY 10001" -228889,Bose SoundSport Headphones,1,99.99,07/05/19 13:21,"82 5th St, Atlanta, GA 30301" -228890,Apple Airpods Headphones,1,150,07/27/19 14:38,"375 Lincoln St, Atlanta, GA 30301" -228891,27in 4K Gaming Monitor,1,389.99,07/05/19 17:09,"945 13th St, San Francisco, CA 94016" -228892,Lightning Charging Cable,1,14.95,07/07/19 14:23,"483 Cherry St, Portland, OR 97035" -228893,20in Monitor,2,109.99,07/11/19 16:01,"836 Wilson St, Seattle, WA 98101" -228894,USB-C Charging Cable,1,11.95,07/08/19 21:18,"316 5th St, San Francisco, CA 94016" -228895,Lightning Charging Cable,1,14.95,07/28/19 10:22,"497 Johnson St, San Francisco, CA 94016" -228896,USB-C Charging Cable,1,11.95,07/13/19 18:48,"605 Walnut St, Los Angeles, CA 90001" -228897,iPhone,1,700,07/20/19 22:01,"173 Pine St, Dallas, TX 75001" -228898,Lightning Charging Cable,1,14.95,07/17/19 11:27,"459 Jackson St, San Francisco, CA 94016" -228899,AA Batteries (4-pack),1,3.84,07/05/19 10:50,"278 Meadow St, San Francisco, CA 94016" -228900,Lightning Charging Cable,1,14.95,07/11/19 17:34,"989 Church St, San Francisco, CA 94016" -228901,34in Ultrawide Monitor,1,379.99,07/31/19 21:05,"142 5th St, New York City, NY 10001" -228902,AA Batteries (4-pack),1,3.84,07/16/19 15:28,"866 Center St, Boston, MA 02215" -,,,,, -228903,Apple Airpods Headphones,1,150,07/23/19 21:54,"358 South St, Dallas, TX 75001" -228904,AAA Batteries (4-pack),2,2.99,07/05/19 18:03,"870 South St, Seattle, WA 98101" -228905,USB-C Charging Cable,1,11.95,07/13/19 13:00,"128 5th St, Los Angeles, CA 90001" -228906,ThinkPad Laptop,1,999.99,07/24/19 23:10,"843 West St, Portland, OR 97035" -228907,USB-C Charging Cable,1,11.95,07/31/19 19:57,"498 Cedar St, San Francisco, CA 94016" -228908,USB-C Charging Cable,1,11.95,07/02/19 18:42,"527 Park St, Portland, OR 97035" -228909,Lightning Charging Cable,1,14.95,07/04/19 22:12,"852 4th St, San Francisco, CA 94016" -228910,34in Ultrawide Monitor,1,379.99,07/04/19 00:56,"858 14th St, Dallas, TX 75001" -228911,iPhone,1,700,07/18/19 19:20,"551 Walnut St, Boston, MA 02215" -228912,AAA Batteries (4-pack),1,2.99,07/19/19 13:43,"49 Cedar St, Boston, MA 02215" -228913,27in 4K Gaming Monitor,1,389.99,07/15/19 10:54,"956 Pine St, Boston, MA 02215" -228914,Flatscreen TV,1,300,07/27/19 11:13,"233 Walnut St, Portland, OR 97035" -228915,AA Batteries (4-pack),1,3.84,07/15/19 20:16,"720 Ridge St, Portland, ME 04101" -228916,iPhone,1,700,07/10/19 20:44,"397 13th St, Dallas, TX 75001" -228917,USB-C Charging Cable,1,11.95,07/31/19 10:10,"727 North St, New York City, NY 10001" -228918,Wired Headphones,1,11.99,07/31/19 16:48,"270 6th St, San Francisco, CA 94016" -228919,AAA Batteries (4-pack),1,2.99,07/02/19 21:23,"670 14th St, San Francisco, CA 94016" -228920,AA Batteries (4-pack),3,3.84,07/27/19 20:39,"593 Chestnut St, New York City, NY 10001" -228921,iPhone,1,700,07/06/19 20:12,"979 12th St, San Francisco, CA 94016" -228922,Vareebadd Phone,1,400,07/05/19 14:41,"699 Washington St, San Francisco, CA 94016" -228923,Apple Airpods Headphones,1,150,07/21/19 13:57,"140 9th St, New York City, NY 10001" -228924,Lightning Charging Cable,1,14.95,07/09/19 16:31,"603 7th St, Austin, TX 73301" -228925,Lightning Charging Cable,1,14.95,07/19/19 16:05,"139 Meadow St, Atlanta, GA 30301" -228926,USB-C Charging Cable,1,11.95,07/24/19 09:47,"277 Ridge St, San Francisco, CA 94016" -228927,Bose SoundSport Headphones,1,99.99,07/28/19 11:59,"657 Jefferson St, New York City, NY 10001" -228928,Wired Headphones,1,11.99,07/23/19 11:13,"487 6th St, San Francisco, CA 94016" -228929,20in Monitor,1,109.99,07/14/19 12:41,"226 Cherry St, Seattle, WA 98101" -228930,Wired Headphones,1,11.99,07/28/19 13:39,"604 Jackson St, Dallas, TX 75001" -228931,Bose SoundSport Headphones,1,99.99,07/10/19 18:05,"390 4th St, New York City, NY 10001" -228932,USB-C Charging Cable,2,11.95,07/05/19 11:24,"121 Chestnut St, San Francisco, CA 94016" -228933,Bose SoundSport Headphones,1,99.99,07/25/19 19:37,"295 4th St, San Francisco, CA 94016" -228934,27in FHD Monitor,1,149.99,07/09/19 18:44,"711 Cherry St, San Francisco, CA 94016" -228935,Lightning Charging Cable,1,14.95,07/23/19 16:39,"583 Johnson St, Boston, MA 02215" -228936,Wired Headphones,1,11.99,07/30/19 10:26,"562 South St, San Francisco, CA 94016" -228937,27in 4K Gaming Monitor,1,389.99,07/12/19 22:14,"269 Maple St, Los Angeles, CA 90001" -228938,AAA Batteries (4-pack),2,2.99,07/31/19 18:02,"756 Lake St, Dallas, TX 75001" -228939,Vareebadd Phone,1,400,07/28/19 23:30,"898 Johnson St, Dallas, TX 75001" -228939,Bose SoundSport Headphones,1,99.99,07/28/19 23:30,"898 Johnson St, Dallas, TX 75001" -228940,Apple Airpods Headphones,1,150,07/26/19 14:00,"862 Main St, Los Angeles, CA 90001" -228941,USB-C Charging Cable,1,11.95,07/16/19 16:23,"929 Center St, San Francisco, CA 94016" -228942,Lightning Charging Cable,1,14.95,07/26/19 11:09,"49 Lake St, Los Angeles, CA 90001" -228943,27in FHD Monitor,1,149.99,07/21/19 15:04,"19 11th St, Seattle, WA 98101" -228944,AAA Batteries (4-pack),3,2.99,07/19/19 13:51,"88 12th St, San Francisco, CA 94016" -228945,AAA Batteries (4-pack),1,2.99,07/25/19 13:16,"545 Jackson St, Boston, MA 02215" -228946,27in FHD Monitor,1,149.99,07/24/19 10:00,"185 4th St, New York City, NY 10001" -228947,AA Batteries (4-pack),1,3.84,07/03/19 07:49,"817 West St, Austin, TX 73301" -228948,27in FHD Monitor,1,149.99,07/03/19 07:01,"919 Wilson St, New York City, NY 10001" -228949,USB-C Charging Cable,1,11.95,07/16/19 20:52,"91 Adams St, Austin, TX 73301" -228950,Lightning Charging Cable,1,14.95,07/03/19 16:36,"173 South St, Portland, OR 97035" -228951,AA Batteries (4-pack),1,3.84,07/29/19 17:48,"444 West St, Los Angeles, CA 90001" -228952,27in 4K Gaming Monitor,1,389.99,07/05/19 20:53,"77 Pine St, Seattle, WA 98101" -228953,Lightning Charging Cable,1,14.95,07/01/19 19:27,"884 Dogwood St, San Francisco, CA 94016" -228954,AAA Batteries (4-pack),1,2.99,07/17/19 06:08,"615 Pine St, Los Angeles, CA 90001" -228955,34in Ultrawide Monitor,1,379.99,07/23/19 21:42,"294 Johnson St, Seattle, WA 98101" -228956,Bose SoundSport Headphones,1,99.99,07/29/19 17:27,"944 River St, Los Angeles, CA 90001" -228957,AA Batteries (4-pack),1,3.84,07/27/19 09:27,"736 6th St, New York City, NY 10001" -228958,AA Batteries (4-pack),1,3.84,07/10/19 15:06,"246 Jefferson St, Los Angeles, CA 90001" -228959,27in 4K Gaming Monitor,1,389.99,07/15/19 17:14,"954 West St, Boston, MA 02215" -228960,Lightning Charging Cable,1,14.95,07/10/19 23:17,"421 Chestnut St, New York City, NY 10001" -228961,Bose SoundSport Headphones,1,99.99,07/26/19 21:05,"184 Meadow St, New York City, NY 10001" -228962,Lightning Charging Cable,1,14.95,07/11/19 20:45,"268 Cedar St, New York City, NY 10001" -228963,AAA Batteries (4-pack),3,2.99,07/07/19 18:13,"843 Sunset St, San Francisco, CA 94016" -228964,34in Ultrawide Monitor,1,379.99,07/13/19 15:49,"136 13th St, San Francisco, CA 94016" -228965,Wired Headphones,1,11.99,07/05/19 20:08,"491 11th St, Dallas, TX 75001" -228966,USB-C Charging Cable,1,11.95,07/26/19 11:42,"320 Jackson St, Atlanta, GA 30301" -228967,27in 4K Gaming Monitor,1,389.99,07/27/19 12:42,"401 Lake St, San Francisco, CA 94016" -228968,27in FHD Monitor,1,149.99,07/09/19 00:21,"896 4th St, Austin, TX 73301" -228969,Lightning Charging Cable,1,14.95,07/21/19 14:13,"180 9th St, Seattle, WA 98101" -228970,Lightning Charging Cable,1,14.95,07/26/19 14:10,"954 Lake St, San Francisco, CA 94016" -228971,34in Ultrawide Monitor,1,379.99,07/10/19 21:17,"145 Cherry St, San Francisco, CA 94016" -228972,iPhone,1,700,07/08/19 15:18,"397 6th St, Los Angeles, CA 90001" -228973,27in 4K Gaming Monitor,1,389.99,07/12/19 15:52,"641 South St, Boston, MA 02215" -228974,Apple Airpods Headphones,1,150,07/01/19 06:52,"755 Highland St, Los Angeles, CA 90001" -228975,Bose SoundSport Headphones,1,99.99,07/18/19 11:29,"963 South St, San Francisco, CA 94016" -228976,Wired Headphones,1,11.99,07/03/19 20:49,"101 Cedar St, New York City, NY 10001" -228977,iPhone,1,700,07/10/19 19:49,"518 River St, Portland, OR 97035" -228978,Wired Headphones,1,11.99,07/19/19 02:48,"827 Jackson St, Los Angeles, CA 90001" -228979,Wired Headphones,1,11.99,07/02/19 21:39,"45 Jefferson St, San Francisco, CA 94016" -228980,AA Batteries (4-pack),1,3.84,07/18/19 17:40,"918 12th St, Boston, MA 02215" -228980,Lightning Charging Cable,1,14.95,07/18/19 17:40,"918 12th St, Boston, MA 02215" -228981,Apple Airpods Headphones,1,150,07/18/19 16:35,"736 Church St, New York City, NY 10001" -228982,Google Phone,1,600,07/28/19 11:47,"735 4th St, Portland, OR 97035" -228983,Lightning Charging Cable,1,14.95,07/13/19 11:02,"319 Walnut St, Boston, MA 02215" -228984,USB-C Charging Cable,1,11.95,07/21/19 22:22,"526 7th St, Los Angeles, CA 90001" -228985,Wired Headphones,1,11.99,07/05/19 17:39,"912 7th St, Austin, TX 73301" -228986,AA Batteries (4-pack),2,3.84,07/31/19 10:32,"706 5th St, Los Angeles, CA 90001" -228987,LG Washing Machine,1,600.0,07/29/19 10:31,"60 South St, Los Angeles, CA 90001" -228988,Lightning Charging Cable,1,14.95,07/03/19 18:55,"719 7th St, Dallas, TX 75001" -228989,Lightning Charging Cable,1,14.95,07/17/19 20:04,"130 11th St, Austin, TX 73301" -228990,Wired Headphones,1,11.99,07/28/19 11:10,"293 Madison St, Los Angeles, CA 90001" -228991,USB-C Charging Cable,1,11.95,07/08/19 09:08,"565 13th St, Los Angeles, CA 90001" -228992,Wired Headphones,1,11.99,07/10/19 22:17,"92 Spruce St, Portland, OR 97035" -228993,AAA Batteries (4-pack),3,2.99,07/22/19 20:12,"251 South St, Atlanta, GA 30301" -228994,34in Ultrawide Monitor,1,379.99,07/12/19 19:42,"709 14th St, Boston, MA 02215" -228995,Lightning Charging Cable,1,14.95,07/08/19 13:28,"923 Walnut St, Portland, ME 04101" -228996,Wired Headphones,1,11.99,07/20/19 22:15,"501 Ridge St, New York City, NY 10001" -,,,,, -228997,AAA Batteries (4-pack),3,2.99,07/01/19 17:09,"835 Madison St, New York City, NY 10001" -228998,Bose SoundSport Headphones,1,99.99,07/31/19 08:31,"337 River St, Seattle, WA 98101" -228999,Wired Headphones,1,11.99,07/02/19 13:29,"33 Wilson St, New York City, NY 10001" -229000,Lightning Charging Cable,1,14.95,07/20/19 10:20,"994 7th St, Dallas, TX 75001" -229001,Wired Headphones,1,11.99,07/12/19 13:57,"754 6th St, Boston, MA 02215" -229002,Vareebadd Phone,1,400,07/09/19 11:51,"414 Hill St, Los Angeles, CA 90001" -229003,Lightning Charging Cable,1,14.95,07/09/19 06:17,"610 South St, Boston, MA 02215" -229004,Apple Airpods Headphones,1,150,07/16/19 11:12,"790 Highland St, San Francisco, CA 94016" -229005,Lightning Charging Cable,1,14.95,07/24/19 18:43,"498 River St, San Francisco, CA 94016" -229006,34in Ultrawide Monitor,1,379.99,07/04/19 06:48,"311 7th St, Seattle, WA 98101" -229007,USB-C Charging Cable,1,11.95,07/20/19 15:09,"523 River St, Austin, TX 73301" -229008,AA Batteries (4-pack),1,3.84,07/27/19 10:27,"251 12th St, Dallas, TX 75001" -229009,Bose SoundSport Headphones,1,99.99,07/02/19 20:10,"884 4th St, Los Angeles, CA 90001" -229010,Lightning Charging Cable,1,14.95,07/07/19 18:20,"826 Walnut St, Los Angeles, CA 90001" -229011,Apple Airpods Headphones,1,150,07/09/19 21:52,"325 14th St, Seattle, WA 98101" -229012,AAA Batteries (4-pack),1,2.99,07/03/19 12:13,"18 Park St, Los Angeles, CA 90001" -229013,USB-C Charging Cable,1,11.95,07/01/19 18:06,"794 Cherry St, Atlanta, GA 30301" -229014,Lightning Charging Cable,1,14.95,07/07/19 03:57,"154 Jackson St, Portland, OR 97035" -229015,Bose SoundSport Headphones,1,99.99,07/09/19 19:57,"875 Dogwood St, Los Angeles, CA 90001" -229016,Wired Headphones,1,11.99,07/10/19 13:38,"432 Center St, San Francisco, CA 94016" -229017,Wired Headphones,3,11.99,07/09/19 17:49,"751 Chestnut St, San Francisco, CA 94016" -229018,Apple Airpods Headphones,1,150,07/12/19 20:55,"481 Walnut St, Seattle, WA 98101" -229019,AA Batteries (4-pack),1,3.84,07/05/19 12:02,"438 Cherry St, San Francisco, CA 94016" -229020,Apple Airpods Headphones,1,150,07/08/19 09:36,"899 Highland St, Dallas, TX 75001" -229020,Bose SoundSport Headphones,1,99.99,07/08/19 09:36,"899 Highland St, Dallas, TX 75001" -229021,34in Ultrawide Monitor,1,379.99,07/28/19 18:40,"863 Jefferson St, Seattle, WA 98101" -229022,Lightning Charging Cable,1,14.95,07/16/19 22:03,"755 Lincoln St, Boston, MA 02215" -229023,USB-C Charging Cable,1,11.95,07/11/19 18:16,"13 Wilson St, Los Angeles, CA 90001" -229024,USB-C Charging Cable,1,11.95,07/26/19 22:12,"825 1st St, New York City, NY 10001" -229025,Apple Airpods Headphones,1,150,07/28/19 12:04,"706 North St, Los Angeles, CA 90001" -229026,AA Batteries (4-pack),2,3.84,07/29/19 08:03,"396 Meadow St, San Francisco, CA 94016" -229027,AAA Batteries (4-pack),1,2.99,07/10/19 11:43,"164 Sunset St, Boston, MA 02215" -229028,AAA Batteries (4-pack),1,2.99,07/16/19 18:19,"475 Cedar St, Atlanta, GA 30301" -229029,AA Batteries (4-pack),2,3.84,07/20/19 21:27,"892 Chestnut St, Portland, OR 97035" -229030,USB-C Charging Cable,1,11.95,07/01/19 19:09,"632 2nd St, New York City, NY 10001" -229031,Lightning Charging Cable,1,14.95,07/04/19 18:22,"434 Hill St, San Francisco, CA 94016" -229032,ThinkPad Laptop,1,999.99,07/12/19 16:16,"546 Elm St, San Francisco, CA 94016" -229033,AA Batteries (4-pack),1,3.84,07/12/19 11:41,"517 8th St, Atlanta, GA 30301" -229034,Bose SoundSport Headphones,1,99.99,07/10/19 20:22,"79 2nd St, San Francisco, CA 94016" -229035,iPhone,1,700,07/03/19 12:13,"333 Main St, Austin, TX 73301" -229036,AA Batteries (4-pack),1,3.84,07/13/19 12:26,"855 6th St, Dallas, TX 75001" -229037,Flatscreen TV,1,300,07/07/19 12:01,"363 Ridge St, Austin, TX 73301" -229038,USB-C Charging Cable,1,11.95,07/07/19 19:53,"536 Lincoln St, Boston, MA 02215" -229039,USB-C Charging Cable,2,11.95,07/23/19 11:17,"454 Meadow St, Boston, MA 02215" -229040,AAA Batteries (4-pack),1,2.99,07/04/19 12:40,"158 Cedar St, Boston, MA 02215" -229041,USB-C Charging Cable,1,11.95,07/25/19 15:35,"911 Lakeview St, New York City, NY 10001" -229042,Apple Airpods Headphones,1,150,07/27/19 21:18,"31 Sunset St, San Francisco, CA 94016" -229043,20in Monitor,1,109.99,07/18/19 16:14,"73 Willow St, New York City, NY 10001" -229044,Apple Airpods Headphones,1,150,07/03/19 22:59,"705 2nd St, Austin, TX 73301" -229045,AAA Batteries (4-pack),1,2.99,07/30/19 18:44,"507 Lake St, New York City, NY 10001" -229046,Google Phone,1,600,07/07/19 01:09,"663 2nd St, New York City, NY 10001" -229046,Bose SoundSport Headphones,1,99.99,07/07/19 01:09,"663 2nd St, New York City, NY 10001" -229047,AAA Batteries (4-pack),3,2.99,07/10/19 13:04,"393 West St, San Francisco, CA 94016" -229048,Wired Headphones,1,11.99,07/09/19 21:07,"519 8th St, New York City, NY 10001" -229049,Lightning Charging Cable,1,14.95,07/25/19 21:30,"91 Ridge St, Dallas, TX 75001" -229050,Bose SoundSport Headphones,1,99.99,07/02/19 17:48,"718 Walnut St, San Francisco, CA 94016" -229051,USB-C Charging Cable,1,11.95,07/20/19 12:33,"883 South St, Boston, MA 02215" -229052,Bose SoundSport Headphones,1,99.99,07/17/19 11:54,"534 West St, San Francisco, CA 94016" -229053,Lightning Charging Cable,1,14.95,07/07/19 15:12,"235 1st St, San Francisco, CA 94016" -229054,AAA Batteries (4-pack),4,2.99,07/10/19 02:58,"386 Highland St, San Francisco, CA 94016" -229055,Google Phone,1,600,07/31/19 10:26,"804 Highland St, Los Angeles, CA 90001" -229056,USB-C Charging Cable,1,11.95,07/11/19 09:20,"11 Jefferson St, Dallas, TX 75001" -229057,Wired Headphones,1,11.99,07/26/19 13:36,"526 Church St, San Francisco, CA 94016" -229058,34in Ultrawide Monitor,1,379.99,07/28/19 13:05,"810 Hill St, San Francisco, CA 94016" -229059,AA Batteries (4-pack),1,3.84,07/24/19 10:40,"863 Lake St, New York City, NY 10001" -229060,USB-C Charging Cable,1,11.95,07/15/19 12:30,"655 6th St, Seattle, WA 98101" -229061,Lightning Charging Cable,1,14.95,07/05/19 08:44,"583 12th St, San Francisco, CA 94016" -229062,iPhone,1,700,07/24/19 15:06,"737 Jackson St, San Francisco, CA 94016" -229063,Google Phone,1,600,07/19/19 20:21,"19 Maple St, New York City, NY 10001" -229063,USB-C Charging Cable,1,11.95,07/19/19 20:21,"19 Maple St, New York City, NY 10001" -229063,Wired Headphones,1,11.99,07/19/19 20:21,"19 Maple St, New York City, NY 10001" -229064,27in FHD Monitor,1,149.99,07/01/19 16:47,"44 Spruce St, Los Angeles, CA 90001" -229065,Wired Headphones,1,11.99,07/06/19 17:45,"352 Lake St, New York City, NY 10001" -229066,AA Batteries (4-pack),1,3.84,07/04/19 15:24,"133 5th St, San Francisco, CA 94016" -229067,AAA Batteries (4-pack),1,2.99,07/25/19 13:38,"443 9th St, New York City, NY 10001" -229068,AA Batteries (4-pack),1,3.84,07/02/19 17:44,"723 Willow St, San Francisco, CA 94016" -229069,AA Batteries (4-pack),1,3.84,07/20/19 10:59,"799 Ridge St, Atlanta, GA 30301" -229070,AA Batteries (4-pack),1,3.84,07/12/19 13:24,"111 Cedar St, Austin, TX 73301" -229071,Lightning Charging Cable,1,14.95,07/24/19 14:16,"875 Park St, San Francisco, CA 94016" -229072,Wired Headphones,1,11.99,07/23/19 20:33,"311 Maple St, Austin, TX 73301" -229073,27in FHD Monitor,1,149.99,07/22/19 19:14,"839 6th St, Boston, MA 02215" -229074,AAA Batteries (4-pack),1,2.99,07/23/19 16:20,"673 8th St, New York City, NY 10001" -229075,Google Phone,1,600,07/23/19 18:00,"809 Adams St, San Francisco, CA 94016" -229076,iPhone,1,700,07/22/19 23:11,"345 12th St, Dallas, TX 75001" -229076,Lightning Charging Cable,1,14.95,07/22/19 23:11,"345 12th St, Dallas, TX 75001" -229077,Lightning Charging Cable,1,14.95,07/26/19 07:33,"592 10th St, New York City, NY 10001" -229078,AAA Batteries (4-pack),2,2.99,07/14/19 11:16,"848 Chestnut St, Los Angeles, CA 90001" -229079,iPhone,1,700,07/13/19 17:59,"290 Walnut St, San Francisco, CA 94016" -229080,Wired Headphones,1,11.99,07/12/19 22:22,"759 Willow St, Seattle, WA 98101" -229081,Lightning Charging Cable,1,14.95,07/27/19 22:59,"757 Willow St, San Francisco, CA 94016" -229082,iPhone,1,700,07/02/19 01:15,"431 14th St, New York City, NY 10001" -229083,Bose SoundSport Headphones,1,99.99,07/11/19 17:45,"32 Cedar St, Dallas, TX 75001" -229084,Vareebadd Phone,1,400,07/04/19 15:55,"407 Washington St, Atlanta, GA 30301" -229085,USB-C Charging Cable,1,11.95,07/11/19 20:07,"590 Hickory St, Los Angeles, CA 90001" -229086,Bose SoundSport Headphones,1,99.99,07/02/19 21:09,"294 Highland St, Atlanta, GA 30301" -229087,AAA Batteries (4-pack),1,2.99,07/27/19 14:30,"406 Hickory St, Seattle, WA 98101" -229088,Lightning Charging Cable,2,14.95,07/25/19 17:29,"136 4th St, Seattle, WA 98101" -229089,USB-C Charging Cable,1,11.95,07/17/19 17:11,"267 Hickory St, Seattle, WA 98101" -229090,27in 4K Gaming Monitor,1,389.99,07/18/19 21:12,"56 Forest St, New York City, NY 10001" -229091,Wired Headphones,1,11.99,07/21/19 21:43,"383 12th St, Seattle, WA 98101" -229092,Lightning Charging Cable,1,14.95,07/13/19 08:52,"128 Dogwood St, New York City, NY 10001" -229093,iPhone,1,700,07/04/19 14:14,"81 Dogwood St, San Francisco, CA 94016" -229094,AA Batteries (4-pack),1,3.84,07/24/19 19:54,"923 Highland St, Los Angeles, CA 90001" -229095,iPhone,1,700,07/24/19 14:27,"270 Spruce St, New York City, NY 10001" -229095,Wired Headphones,1,11.99,07/24/19 14:27,"270 Spruce St, New York City, NY 10001" -229096,Apple Airpods Headphones,1,150,07/13/19 23:01,"115 Highland St, Dallas, TX 75001" -229097,Google Phone,1,600,07/28/19 23:17,"728 12th St, Atlanta, GA 30301" -229097,USB-C Charging Cable,1,11.95,07/28/19 23:17,"728 12th St, Atlanta, GA 30301" -229098,USB-C Charging Cable,1,11.95,07/01/19 09:34,"532 Willow St, New York City, NY 10001" -229099,20in Monitor,1,109.99,07/01/19 14:59,"487 Maple St, Dallas, TX 75001" -229100,34in Ultrawide Monitor,1,379.99,07/12/19 20:43,"204 Meadow St, New York City, NY 10001" -229101,Lightning Charging Cable,1,14.95,07/03/19 09:06,"153 Highland St, San Francisco, CA 94016" -229102,Apple Airpods Headphones,1,150,07/15/19 08:06,"881 Park St, New York City, NY 10001" -229103,USB-C Charging Cable,1,11.95,07/17/19 08:28,"488 Adams St, Los Angeles, CA 90001" -229104,Lightning Charging Cable,1,14.95,07/06/19 17:31,"412 2nd St, San Francisco, CA 94016" -229105,AAA Batteries (4-pack),1,2.99,07/25/19 11:05,"876 13th St, Portland, ME 04101" -229106,Lightning Charging Cable,1,14.95,07/13/19 12:57,"801 Church St, San Francisco, CA 94016" -229107,AA Batteries (4-pack),1,3.84,07/23/19 09:26,"829 Lincoln St, Seattle, WA 98101" -229108,Macbook Pro Laptop,1,1700,07/15/19 19:15,"191 Park St, Dallas, TX 75001" -229109,USB-C Charging Cable,1,11.95,07/18/19 14:55,"908 9th St, Atlanta, GA 30301" -229110,AAA Batteries (4-pack),1,2.99,07/18/19 18:27,"845 Ridge St, Austin, TX 73301" -229111,Lightning Charging Cable,1,14.95,07/01/19 08:17,"777 Madison St, Los Angeles, CA 90001" -229111,Bose SoundSport Headphones,1,99.99,07/01/19 08:17,"777 Madison St, Los Angeles, CA 90001" -229112,Flatscreen TV,1,300,07/14/19 18:31,"177 Sunset St, Boston, MA 02215" -229113,Bose SoundSport Headphones,1,99.99,07/01/19 11:39,"808 10th St, New York City, NY 10001" -229114,Bose SoundSport Headphones,1,99.99,07/06/19 11:21,"944 7th St, Dallas, TX 75001" -229115,Lightning Charging Cable,1,14.95,07/27/19 19:59,"491 Washington St, Los Angeles, CA 90001" -229116,Wired Headphones,1,11.99,07/22/19 19:02,"251 Cedar St, Boston, MA 02215" -229117,Wired Headphones,1,11.99,07/15/19 21:33,"925 Spruce St, Los Angeles, CA 90001" -229118,Wired Headphones,2,11.99,07/15/19 19:59,"345 Johnson St, Austin, TX 73301" -229119,Apple Airpods Headphones,1,150,07/06/19 10:28,"99 Lake St, Seattle, WA 98101" -229120,iPhone,1,700,07/26/19 19:35,"776 Highland St, Seattle, WA 98101" -229121,AA Batteries (4-pack),1,3.84,07/07/19 07:10,"634 13th St, Los Angeles, CA 90001" -229122,AA Batteries (4-pack),5,3.84,07/26/19 21:04,"298 Ridge St, Dallas, TX 75001" -229123,Google Phone,1,600,07/08/19 09:56,"28 Jackson St, San Francisco, CA 94016" -229124,27in FHD Monitor,1,149.99,07/18/19 22:27,"91 Meadow St, Portland, ME 04101" -229125,AAA Batteries (4-pack),2,2.99,07/12/19 15:56,"595 Maple St, San Francisco, CA 94016" -229126,AAA Batteries (4-pack),1,2.99,07/25/19 09:09,"499 Lake St, Portland, OR 97035" -229127,Vareebadd Phone,1,400,07/15/19 07:49,"608 Cedar St, Boston, MA 02215" -229128,AAA Batteries (4-pack),2,2.99,07/09/19 16:45,"33 9th St, Los Angeles, CA 90001" -229129,USB-C Charging Cable,1,11.95,07/15/19 18:37,"409 9th St, Los Angeles, CA 90001" -229130,Lightning Charging Cable,1,14.95,07/03/19 01:53,"245 Main St, Atlanta, GA 30301" -229131,USB-C Charging Cable,1,11.95,07/10/19 15:05,"851 4th St, Portland, OR 97035" -229132,27in 4K Gaming Monitor,1,389.99,07/13/19 23:20,"969 Washington St, New York City, NY 10001" -229133,27in 4K Gaming Monitor,1,389.99,07/14/19 21:11,"346 West St, New York City, NY 10001" -229134,Wired Headphones,1,11.99,07/22/19 15:16,"810 Willow St, Seattle, WA 98101" -229135,LG Washing Machine,1,600.0,07/05/19 08:28,"388 Highland St, Seattle, WA 98101" -229136,27in 4K Gaming Monitor,1,389.99,07/28/19 13:59,"173 Jefferson St, Portland, OR 97035" -229137,27in FHD Monitor,1,149.99,07/08/19 11:58,"3 Cedar St, San Francisco, CA 94016" -229138,Apple Airpods Headphones,1,150,07/14/19 20:28,"162 9th St, New York City, NY 10001" -229139,Bose SoundSport Headphones,1,99.99,07/28/19 23:10,"533 Lakeview St, San Francisco, CA 94016" -229140,Apple Airpods Headphones,1,150,07/25/19 10:10,"110 Johnson St, San Francisco, CA 94016" -229141,AAA Batteries (4-pack),1,2.99,07/24/19 07:43,"774 Spruce St, San Francisco, CA 94016" -229142,Apple Airpods Headphones,1,150,07/13/19 14:25,"72 South St, Seattle, WA 98101" -229143,AA Batteries (4-pack),2,3.84,07/11/19 20:21,"251 South St, Los Angeles, CA 90001" -229144,USB-C Charging Cable,1,11.95,07/22/19 21:58,"840 Center St, Seattle, WA 98101" -229145,AA Batteries (4-pack),1,3.84,07/22/19 09:17,"247 Adams St, Los Angeles, CA 90001" -229146,Vareebadd Phone,1,400,07/14/19 07:15,"364 Meadow St, New York City, NY 10001" -229147,USB-C Charging Cable,1,11.95,07/29/19 16:34,"455 9th St, Los Angeles, CA 90001" -229148,ThinkPad Laptop,1,999.99,07/12/19 02:17,"876 Maple St, Los Angeles, CA 90001" -229149,USB-C Charging Cable,1,11.95,07/09/19 16:49,"76 14th St, Los Angeles, CA 90001" -229150,Bose SoundSport Headphones,1,99.99,07/09/19 13:02,"17 Forest St, New York City, NY 10001" -229151,27in 4K Gaming Monitor,1,389.99,07/20/19 19:49,"657 Park St, Dallas, TX 75001" -229152,Lightning Charging Cable,1,14.95,07/30/19 17:55,"614 Lake St, Boston, MA 02215" -229153,ThinkPad Laptop,1,999.99,07/09/19 11:35,"150 4th St, Los Angeles, CA 90001" -229154,AAA Batteries (4-pack),1,2.99,07/19/19 21:18,"133 Dogwood St, San Francisco, CA 94016" -229155,USB-C Charging Cable,1,11.95,07/29/19 12:45,"798 14th St, San Francisco, CA 94016" -229156,Apple Airpods Headphones,1,150,07/02/19 16:08,"760 11th St, San Francisco, CA 94016" -229157,AAA Batteries (4-pack),2,2.99,07/17/19 21:12,"204 Walnut St, New York City, NY 10001" -229158,AA Batteries (4-pack),1,3.84,07/15/19 14:59,"314 Chestnut St, Dallas, TX 75001" -229159,Lightning Charging Cable,1,14.95,07/11/19 17:48,"889 Meadow St, Los Angeles, CA 90001" -229160,Bose SoundSport Headphones,1,99.99,07/08/19 18:41,"358 Wilson St, Portland, OR 97035" -229161,USB-C Charging Cable,1,11.95,07/09/19 21:12,"869 Ridge St, Portland, OR 97035" -229162,Macbook Pro Laptop,1,1700,07/27/19 16:20,"623 5th St, Atlanta, GA 30301" -229163,AAA Batteries (4-pack),2,2.99,07/23/19 15:27,"268 14th St, Seattle, WA 98101" -229164,Macbook Pro Laptop,1,1700,07/10/19 19:47,"55 Madison St, San Francisco, CA 94016" -229165,USB-C Charging Cable,1,11.95,07/08/19 08:23,"428 Center St, New York City, NY 10001" -229166,Lightning Charging Cable,1,14.95,07/12/19 12:50,"385 Forest St, Portland, ME 04101" -229167,iPhone,1,700,07/25/19 18:00,"769 12th St, Boston, MA 02215" -229168,Flatscreen TV,1,300,07/16/19 22:34,"399 Meadow St, Portland, OR 97035" -229169,Bose SoundSport Headphones,1,99.99,07/16/19 00:33,"438 Pine St, Boston, MA 02215" -229170,AA Batteries (4-pack),1,3.84,07/14/19 13:16,"758 6th St, Portland, OR 97035" -229171,Wired Headphones,1,11.99,07/29/19 23:50,"20 Highland St, San Francisco, CA 94016" -229172,AAA Batteries (4-pack),2,2.99,07/14/19 21:02,"463 7th St, San Francisco, CA 94016" -229173,AAA Batteries (4-pack),2,2.99,07/14/19 20:11,"853 5th St, Los Angeles, CA 90001" -229174,Wired Headphones,1,11.99,07/11/19 18:42,"638 Lincoln St, Atlanta, GA 30301" -229175,Lightning Charging Cable,1,14.95,07/19/19 06:42,"839 Dogwood St, Boston, MA 02215" -229176,Google Phone,1,600,07/25/19 19:54,"879 Jackson St, Los Angeles, CA 90001" -229176,Bose SoundSport Headphones,1,99.99,07/25/19 19:54,"879 Jackson St, Los Angeles, CA 90001" -229177,Bose SoundSport Headphones,1,99.99,07/17/19 11:52,"637 Highland St, San Francisco, CA 94016" -229178,Wired Headphones,1,11.99,07/21/19 07:44,"821 Lake St, San Francisco, CA 94016" -229179,27in 4K Gaming Monitor,1,389.99,07/21/19 14:37,"290 North St, Los Angeles, CA 90001" -229179,Lightning Charging Cable,1,14.95,07/21/19 14:37,"290 North St, Los Angeles, CA 90001" -229180,Wired Headphones,1,11.99,07/15/19 13:06,"18 Walnut St, San Francisco, CA 94016" -229180,iPhone,1,700,07/15/19 13:06,"18 Walnut St, San Francisco, CA 94016" -229181,USB-C Charging Cable,1,11.95,07/25/19 14:03,"916 Forest St, Atlanta, GA 30301" -229182,USB-C Charging Cable,1,11.95,07/29/19 10:13,"928 11th St, Seattle, WA 98101" -229183,Google Phone,1,600,07/21/19 16:45,"246 Sunset St, Atlanta, GA 30301" -229184,USB-C Charging Cable,1,11.95,07/25/19 04:56,"821 Cherry St, San Francisco, CA 94016" -229185,Lightning Charging Cable,2,14.95,07/12/19 17:08,"464 12th St, Austin, TX 73301" -229186,Lightning Charging Cable,1,14.95,07/05/19 21:28,"241 Meadow St, San Francisco, CA 94016" -229187,Macbook Pro Laptop,1,1700,07/02/19 09:49,"48 Dogwood St, Los Angeles, CA 90001" -229188,Wired Headphones,1,11.99,07/20/19 21:53,"999 Willow St, Seattle, WA 98101" -229189,Macbook Pro Laptop,1,1700,07/20/19 17:51,"489 Johnson St, Los Angeles, CA 90001" -229190,AA Batteries (4-pack),1,3.84,07/01/19 19:20,"7 Forest St, San Francisco, CA 94016" -229191,Apple Airpods Headphones,1,150,07/06/19 07:49,"741 South St, San Francisco, CA 94016" -229192,Wired Headphones,1,11.99,07/14/19 18:56,"759 4th St, Austin, TX 73301" -229193,Vareebadd Phone,1,400,07/30/19 14:18,"889 Cherry St, Portland, OR 97035" -229194,Google Phone,1,600,07/16/19 11:13,"510 Meadow St, Seattle, WA 98101" -229195,AAA Batteries (4-pack),3,2.99,07/29/19 10:47,"245 Maple St, Los Angeles, CA 90001" -229196,Wired Headphones,1,11.99,07/01/19 17:48,"412 1st St, Austin, TX 73301" -229197,Lightning Charging Cable,2,14.95,07/08/19 07:30,"341 Ridge St, Portland, OR 97035" -229198,Google Phone,1,600,07/14/19 09:37,"186 1st St, San Francisco, CA 94016" -229199,Wired Headphones,1,11.99,07/12/19 15:27,"423 Center St, Dallas, TX 75001" -229200,Bose SoundSport Headphones,1,99.99,07/22/19 20:22,"547 Ridge St, New York City, NY 10001" -229201,Apple Airpods Headphones,1,150,07/25/19 02:06,"460 Willow St, Seattle, WA 98101" -229202,USB-C Charging Cable,1,11.95,07/12/19 14:12,"15 Cherry St, Boston, MA 02215" -229203,USB-C Charging Cable,1,11.95,07/03/19 17:02,"104 14th St, New York City, NY 10001" -229204,34in Ultrawide Monitor,1,379.99,07/04/19 23:39,"722 Hickory St, Boston, MA 02215" -229205,AAA Batteries (4-pack),1,2.99,07/11/19 21:05,"461 Meadow St, San Francisco, CA 94016" -229206,AA Batteries (4-pack),1,3.84,07/31/19 09:22,"955 13th St, Atlanta, GA 30301" -229207,Apple Airpods Headphones,1,150,07/30/19 21:07,"628 11th St, Boston, MA 02215" -229208,Wired Headphones,1,11.99,07/21/19 13:31,"345 North St, Atlanta, GA 30301" -229209,Wired Headphones,2,11.99,07/22/19 16:22,"463 Hickory St, San Francisco, CA 94016" -229210,USB-C Charging Cable,1,11.95,07/04/19 20:23,"846 Sunset St, Seattle, WA 98101" -229211,iPhone,1,700,07/30/19 17:10,"999 Dogwood St, Atlanta, GA 30301" -229212,USB-C Charging Cable,1,11.95,07/21/19 14:21,"562 11th St, Los Angeles, CA 90001" -229213,Flatscreen TV,1,300,07/14/19 21:47,"667 Lake St, Dallas, TX 75001" -229214,Apple Airpods Headphones,1,150,07/25/19 16:22,"709 Meadow St, Dallas, TX 75001" -229215,USB-C Charging Cable,1,11.95,07/21/19 14:42,"512 Chestnut St, Boston, MA 02215" -229216,20in Monitor,1,109.99,07/20/19 20:43,"776 Pine St, Boston, MA 02215" -229217,Apple Airpods Headphones,1,150,07/08/19 12:40,"720 Hill St, Boston, MA 02215" -229218,Flatscreen TV,1,300,07/19/19 20:49,"265 13th St, Los Angeles, CA 90001" -229219,AAA Batteries (4-pack),1,2.99,07/07/19 21:31,"809 13th St, Los Angeles, CA 90001" -229220,AAA Batteries (4-pack),1,2.99,07/26/19 00:41,"516 Forest St, Boston, MA 02215" -229221,Apple Airpods Headphones,1,150,07/15/19 18:46,"30 Cedar St, Seattle, WA 98101" -229222,AAA Batteries (4-pack),4,2.99,07/15/19 21:17,"141 River St, Los Angeles, CA 90001" -229223,Wired Headphones,1,11.99,07/28/19 12:55,"884 7th St, Seattle, WA 98101" -229224,Lightning Charging Cable,1,14.95,07/03/19 23:21,"577 6th St, Boston, MA 02215" -229225,ThinkPad Laptop,1,999.99,07/24/19 14:34,"891 Maple St, Dallas, TX 75001" -229226,AAA Batteries (4-pack),1,2.99,07/02/19 12:06,"640 Pine St, Atlanta, GA 30301" -229227,27in 4K Gaming Monitor,1,389.99,07/16/19 10:02,"505 Highland St, Atlanta, GA 30301" -229228,Lightning Charging Cable,1,14.95,07/01/19 06:56,"411 Meadow St, Los Angeles, CA 90001" -229229,iPhone,1,700,07/18/19 12:52,"936 Spruce St, San Francisco, CA 94016" -229230,Bose SoundSport Headphones,1,99.99,07/18/19 22:55,"510 Willow St, Boston, MA 02215" -229231,27in FHD Monitor,1,149.99,07/03/19 10:52,"377 Main St, New York City, NY 10001" -229232,USB-C Charging Cable,1,11.95,07/18/19 16:25,"570 Hill St, Dallas, TX 75001" -229233,Lightning Charging Cable,1,14.95,07/16/19 20:31,"461 12th St, Los Angeles, CA 90001" -229234,USB-C Charging Cable,1,11.95,07/22/19 14:17,"46 5th St, Los Angeles, CA 90001" -229235,ThinkPad Laptop,1,999.99,07/29/19 01:09,"315 Johnson St, New York City, NY 10001" -229236,Vareebadd Phone,1,400,07/12/19 19:28,"443 Lake St, San Francisco, CA 94016" -229237,Apple Airpods Headphones,1,150,07/22/19 17:12,"990 North St, San Francisco, CA 94016" -229238,Bose SoundSport Headphones,1,99.99,07/02/19 08:26,"603 Hickory St, New York City, NY 10001" -229239,Apple Airpods Headphones,1,150,07/14/19 17:05,"227 Madison St, Austin, TX 73301" -229240,Macbook Pro Laptop,1,1700,07/10/19 15:12,"426 Elm St, Dallas, TX 75001" -229241,AA Batteries (4-pack),1,3.84,07/13/19 07:53,"963 Cherry St, San Francisco, CA 94016" -229242,ThinkPad Laptop,1,999.99,07/04/19 07:31,"784 6th St, Los Angeles, CA 90001" -229243,34in Ultrawide Monitor,1,379.99,07/08/19 15:30,"977 Maple St, Seattle, WA 98101" -229244,20in Monitor,1,109.99,07/19/19 08:41,"166 Forest St, Atlanta, GA 30301" -229245,Apple Airpods Headphones,1,150,07/06/19 11:03,"655 Center St, Seattle, WA 98101" -229246,Flatscreen TV,1,300,07/22/19 19:09,"133 Pine St, Atlanta, GA 30301" -229247,27in FHD Monitor,1,149.99,07/18/19 16:41,"188 5th St, San Francisco, CA 94016" -229248,Lightning Charging Cable,1,14.95,07/05/19 23:34,"175 1st St, New York City, NY 10001" -229249,Wired Headphones,1,11.99,07/27/19 23:21,"439 Lake St, Los Angeles, CA 90001" -229250,20in Monitor,1,109.99,07/22/19 15:07,"458 Jackson St, Austin, TX 73301" -229251,AA Batteries (4-pack),1,3.84,07/11/19 13:46,"243 Lincoln St, San Francisco, CA 94016" -229252,20in Monitor,1,109.99,07/11/19 19:59,"368 Dogwood St, Los Angeles, CA 90001" -229253,AA Batteries (4-pack),1,3.84,07/09/19 13:21,"876 Washington St, Los Angeles, CA 90001" -229254,USB-C Charging Cable,2,11.95,07/30/19 20:10,"227 Madison St, Seattle, WA 98101" -229255,20in Monitor,1,109.99,07/22/19 11:46,"332 9th St, San Francisco, CA 94016" -229256,AAA Batteries (4-pack),2,2.99,07/18/19 09:05,"28 Willow St, Austin, TX 73301" -229257,iPhone,1,700,07/19/19 21:39,"347 Main St, San Francisco, CA 94016" -229258,34in Ultrawide Monitor,1,379.99,07/25/19 09:08,"837 River St, San Francisco, CA 94016" -229259,Lightning Charging Cable,1,14.95,07/28/19 14:54,"234 2nd St, Atlanta, GA 30301" -229260,Wired Headphones,1,11.99,07/14/19 16:16,"568 7th St, New York City, NY 10001" -229261,AAA Batteries (4-pack),1,2.99,07/22/19 11:34,"199 Washington St, Seattle, WA 98101" -229262,Wired Headphones,1,11.99,07/09/19 00:02,"695 Main St, Atlanta, GA 30301" -229263,AAA Batteries (4-pack),1,2.99,07/25/19 18:31,"132 Madison St, San Francisco, CA 94016" -229264,27in FHD Monitor,1,149.99,07/04/19 11:16,"953 2nd St, San Francisco, CA 94016" -229265,USB-C Charging Cable,1,11.95,07/12/19 12:04,"132 5th St, Dallas, TX 75001" -229266,Wired Headphones,1,11.99,07/13/19 16:20,"275 Meadow St, New York City, NY 10001" -229267,Vareebadd Phone,1,400,07/19/19 15:50,"732 Highland St, New York City, NY 10001" -229268,AAA Batteries (4-pack),1,2.99,07/22/19 20:11,"297 Spruce St, New York City, NY 10001" -229269,Bose SoundSport Headphones,1,99.99,07/11/19 15:06,"147 5th St, New York City, NY 10001" -229270,USB-C Charging Cable,2,11.95,07/29/19 17:57,"286 11th St, San Francisco, CA 94016" -229271,Apple Airpods Headphones,1,150,07/26/19 19:31,"525 6th St, San Francisco, CA 94016" -229272,27in 4K Gaming Monitor,1,389.99,07/11/19 22:47,"40 Johnson St, San Francisco, CA 94016" -229273,Apple Airpods Headphones,1,150,07/12/19 16:07,"295 West St, Seattle, WA 98101" -229274,Apple Airpods Headphones,1,150,07/06/19 23:48,"324 Church St, Los Angeles, CA 90001" -229275,AAA Batteries (4-pack),2,2.99,07/30/19 11:26,"980 13th St, Boston, MA 02215" -229276,USB-C Charging Cable,1,11.95,07/06/19 21:06,"10 Maple St, Austin, TX 73301" -229277,Lightning Charging Cable,1,14.95,07/13/19 13:32,"145 Lakeview St, Portland, OR 97035" -229278,USB-C Charging Cable,1,11.95,07/19/19 03:20,"866 2nd St, Los Angeles, CA 90001" -229279,Bose SoundSport Headphones,1,99.99,07/25/19 15:08,"521 Elm St, San Francisco, CA 94016" -229280,Lightning Charging Cable,2,14.95,07/30/19 13:18,"455 Pine St, Los Angeles, CA 90001" -,,,,, -229281,AA Batteries (4-pack),1,3.84,07/25/19 16:30,"826 7th St, Los Angeles, CA 90001" -229282,Lightning Charging Cable,1,14.95,07/04/19 19:45,"391 11th St, San Francisco, CA 94016" -229283,Flatscreen TV,1,300,07/06/19 17:05,"237 Cedar St, Dallas, TX 75001" -229283,34in Ultrawide Monitor,1,379.99,07/06/19 17:05,"237 Cedar St, Dallas, TX 75001" -229284,Apple Airpods Headphones,1,150,07/03/19 20:30,"19 Forest St, Austin, TX 73301" -229284,Lightning Charging Cable,1,14.95,07/03/19 20:30,"19 Forest St, Austin, TX 73301" -229285,Apple Airpods Headphones,1,150,07/24/19 15:36,"877 12th St, Los Angeles, CA 90001" -229286,AAA Batteries (4-pack),1,2.99,07/03/19 09:23,"785 5th St, Portland, ME 04101" -229287,Wired Headphones,1,11.99,07/25/19 21:20,"678 6th St, New York City, NY 10001" -229288,Bose SoundSport Headphones,1,99.99,07/09/19 18:28,"227 Lincoln St, Portland, OR 97035" -229289,Wired Headphones,1,11.99,07/25/19 20:26,"772 Washington St, Seattle, WA 98101" -229290,USB-C Charging Cable,1,11.95,07/27/19 15:21,"564 Madison St, Los Angeles, CA 90001" -229291,USB-C Charging Cable,1,11.95,07/01/19 21:42,"383 Johnson St, New York City, NY 10001" -229292,USB-C Charging Cable,1,11.95,07/18/19 10:43,"128 Willow St, Austin, TX 73301" -229293,USB-C Charging Cable,1,11.95,07/20/19 09:27,"910 Jefferson St, San Francisco, CA 94016" -229294,Wired Headphones,1,11.99,07/09/19 17:25,"364 South St, Dallas, TX 75001" -229295,AA Batteries (4-pack),1,3.84,07/31/19 13:22,"792 Center St, New York City, NY 10001" -229296,AAA Batteries (4-pack),2,2.99,07/29/19 05:52,"202 Lakeview St, San Francisco, CA 94016" -229297,Lightning Charging Cable,1,14.95,07/05/19 11:28,"787 Maple St, San Francisco, CA 94016" -229298,Flatscreen TV,1,300,07/21/19 13:03,"398 8th St, San Francisco, CA 94016" -229299,27in 4K Gaming Monitor,1,389.99,07/09/19 22:05,"101 North St, San Francisco, CA 94016" -229300,Lightning Charging Cable,1,14.95,07/29/19 18:58,"161 7th St, Los Angeles, CA 90001" -229301,Wired Headphones,1,11.99,07/04/19 21:07,"305 14th St, San Francisco, CA 94016" -229302,Wired Headphones,1,11.99,07/22/19 00:38,"426 South St, New York City, NY 10001" -229303,Apple Airpods Headphones,1,150,07/07/19 10:28,"402 Church St, Portland, OR 97035" -229304,Bose SoundSport Headphones,1,99.99,07/22/19 09:58,"533 Church St, Los Angeles, CA 90001" -229305,27in 4K Gaming Monitor,1,389.99,07/12/19 10:26,"490 5th St, New York City, NY 10001" -229306,Apple Airpods Headphones,1,150,07/09/19 20:48,"282 Johnson St, Atlanta, GA 30301" -229307,Wired Headphones,1,11.99,07/08/19 15:48,"320 11th St, Dallas, TX 75001" -229308,AA Batteries (4-pack),3,3.84,07/06/19 11:55,"862 14th St, Seattle, WA 98101" -229309,Wired Headphones,1,11.99,07/23/19 12:05,"916 12th St, New York City, NY 10001" -229310,USB-C Charging Cable,1,11.95,07/01/19 13:28,"994 Lincoln St, Los Angeles, CA 90001" -229311,AAA Batteries (4-pack),1,2.99,07/15/19 16:18,"427 Jefferson St, Dallas, TX 75001" -229312,USB-C Charging Cable,1,11.95,07/08/19 19:58,"331 2nd St, Dallas, TX 75001" -229313,AAA Batteries (4-pack),3,2.99,07/19/19 18:26,"350 2nd St, New York City, NY 10001" -229314,27in FHD Monitor,1,149.99,07/25/19 15:58,"246 Cherry St, San Francisco, CA 94016" -229315,Wired Headphones,1,11.99,07/25/19 07:25,"386 Main St, New York City, NY 10001" -229316,Wired Headphones,1,11.99,07/17/19 15:05,"502 Park St, San Francisco, CA 94016" -229317,Bose SoundSport Headphones,1,99.99,07/14/19 19:52,"555 Meadow St, Dallas, TX 75001" -229318,AAA Batteries (4-pack),1,2.99,07/16/19 13:13,"317 Highland St, Atlanta, GA 30301" -229319,Macbook Pro Laptop,1,1700,07/04/19 07:16,"415 Cherry St, Portland, OR 97035" -229320,AAA Batteries (4-pack),3,2.99,07/09/19 21:35,"38 Wilson St, Dallas, TX 75001" -229321,AA Batteries (4-pack),1,3.84,07/10/19 20:33,"836 Dogwood St, Los Angeles, CA 90001" -229322,USB-C Charging Cable,1,11.95,07/25/19 05:33,"633 Johnson St, San Francisco, CA 94016" -229323,Bose SoundSport Headphones,1,99.99,07/12/19 18:08,"995 Jackson St, San Francisco, CA 94016" -229324,Lightning Charging Cable,1,14.95,07/10/19 22:01,"376 Jackson St, San Francisco, CA 94016" -229325,34in Ultrawide Monitor,1,379.99,07/17/19 23:04,"752 Sunset St, New York City, NY 10001" -229326,Wired Headphones,1,11.99,07/13/19 11:04,"312 West St, New York City, NY 10001" -229327,34in Ultrawide Monitor,1,379.99,07/10/19 09:54,"595 6th St, Atlanta, GA 30301" -229328,AA Batteries (4-pack),1,3.84,07/27/19 16:54,"577 6th St, Boston, MA 02215" -229329,AA Batteries (4-pack),1,3.84,07/19/19 08:59,"791 River St, Los Angeles, CA 90001" -229330,USB-C Charging Cable,1,11.95,07/27/19 02:39,"191 Jefferson St, Dallas, TX 75001" -229331,Bose SoundSport Headphones,1,99.99,07/26/19 22:25,"922 10th St, Atlanta, GA 30301" -229332,AAA Batteries (4-pack),2,2.99,07/03/19 17:42,"999 Main St, San Francisco, CA 94016" -229332,iPhone,1,700,07/03/19 17:42,"999 Main St, San Francisco, CA 94016" -229333,Apple Airpods Headphones,1,150,07/17/19 22:49,"71 10th St, Boston, MA 02215" -229334,Lightning Charging Cable,1,14.95,07/24/19 17:58,"70 Lincoln St, Dallas, TX 75001" -229335,27in 4K Gaming Monitor,1,389.99,07/10/19 13:38,"612 Highland St, Seattle, WA 98101" -229336,27in 4K Gaming Monitor,1,389.99,07/31/19 23:16,"30 Highland St, Boston, MA 02215" -229337,AA Batteries (4-pack),2,3.84,07/30/19 20:30,"305 Willow St, Los Angeles, CA 90001" -229338,Lightning Charging Cable,1,14.95,07/12/19 00:01,"284 8th St, Los Angeles, CA 90001" -229339,iPhone,1,700,07/02/19 21:30,"395 Elm St, Portland, OR 97035" -229340,Bose SoundSport Headphones,1,99.99,07/08/19 21:12,"725 14th St, New York City, NY 10001" -229341,Bose SoundSport Headphones,1,99.99,07/16/19 19:33,"307 Lake St, Dallas, TX 75001" -229342,LG Washing Machine,1,600.0,07/06/19 20:05,"569 Maple St, San Francisco, CA 94016" -229343,Lightning Charging Cable,1,14.95,07/13/19 18:47,"757 Johnson St, San Francisco, CA 94016" -229344,iPhone,1,700,07/20/19 12:15,"455 Pine St, San Francisco, CA 94016" -229345,USB-C Charging Cable,1,11.95,07/25/19 03:17,"813 Hill St, Seattle, WA 98101" -229346,LG Washing Machine,1,600.0,07/12/19 22:00,"793 Jefferson St, San Francisco, CA 94016" -229347,Vareebadd Phone,1,400,07/21/19 17:43,"970 12th St, San Francisco, CA 94016" -229347,USB-C Charging Cable,1,11.95,07/21/19 17:43,"970 12th St, San Francisco, CA 94016" -229348,Lightning Charging Cable,1,14.95,07/13/19 15:22,"652 Center St, Austin, TX 73301" -229349,AAA Batteries (4-pack),2,2.99,07/02/19 18:53,"372 Park St, Boston, MA 02215" -229350,Flatscreen TV,1,300,07/02/19 18:36,"54 Lakeview St, Atlanta, GA 30301" -229351,27in FHD Monitor,2,149.99,07/02/19 20:17,"50 4th St, San Francisco, CA 94016" -229352,Apple Airpods Headphones,1,150,07/11/19 21:10,"15 Center St, Boston, MA 02215" -229353,Lightning Charging Cable,1,14.95,07/20/19 19:46,"523 Adams St, Boston, MA 02215" -229354,AAA Batteries (4-pack),2,2.99,07/30/19 09:36,"382 Center St, Atlanta, GA 30301" -229355,34in Ultrawide Monitor,1,379.99,07/11/19 07:41,"410 9th St, Los Angeles, CA 90001" -229356,AA Batteries (4-pack),1,3.84,07/30/19 22:38,"100 Spruce St, Portland, OR 97035" -229357,Google Phone,1,600,07/09/19 12:12,"529 Lincoln St, Los Angeles, CA 90001" -229358,Lightning Charging Cable,1,14.95,07/28/19 11:35,"482 14th St, Atlanta, GA 30301" -229359,Lightning Charging Cable,1,14.95,07/30/19 12:02,"555 8th St, New York City, NY 10001" -229360,34in Ultrawide Monitor,1,379.99,07/27/19 15:17,"655 Chestnut St, San Francisco, CA 94016" -229361,Google Phone,1,600,07/04/19 22:16,"800 12th St, Seattle, WA 98101" -229362,Lightning Charging Cable,3,14.95,07/26/19 23:47,"132 Dogwood St, Atlanta, GA 30301" -229363,Lightning Charging Cable,1,14.95,07/14/19 11:21,"253 4th St, Portland, ME 04101" -229364,Google Phone,1,600,07/02/19 20:45,"342 West St, Los Angeles, CA 90001" -229365,USB-C Charging Cable,1,11.95,07/08/19 11:49,"649 Walnut St, San Francisco, CA 94016" -229366,AA Batteries (4-pack),1,3.84,07/29/19 17:29,"446 Elm St, San Francisco, CA 94016" -229367,Bose SoundSport Headphones,1,99.99,07/23/19 13:14,"611 Pine St, San Francisco, CA 94016" -229368,Wired Headphones,1,11.99,07/15/19 00:12,"541 Church St, Los Angeles, CA 90001" -229369,ThinkPad Laptop,1,999.99,07/12/19 19:32,"701 1st St, Los Angeles, CA 90001" -229370,AAA Batteries (4-pack),1,2.99,07/18/19 16:46,"473 Hickory St, Atlanta, GA 30301" -229371,AA Batteries (4-pack),3,3.84,07/04/19 10:22,"924 Walnut St, Boston, MA 02215" -229372,Apple Airpods Headphones,1,150,07/28/19 09:47,"762 7th St, Los Angeles, CA 90001" -229373,AAA Batteries (4-pack),1,2.99,07/25/19 16:14,"371 South St, San Francisco, CA 94016" -229374,Lightning Charging Cable,1,14.95,07/04/19 20:42,"794 8th St, San Francisco, CA 94016" -229375,34in Ultrawide Monitor,1,379.99,07/23/19 21:10,"898 Lake St, New York City, NY 10001" -229375,AA Batteries (4-pack),1,3.84,07/23/19 21:10,"898 Lake St, New York City, NY 10001" -229376,27in FHD Monitor,1,149.99,07/09/19 22:27,"910 Spruce St, Boston, MA 02215" -229377,AAA Batteries (4-pack),2,2.99,07/18/19 22:45,"231 Walnut St, Atlanta, GA 30301" -229378,Lightning Charging Cable,1,14.95,07/22/19 13:57,"359 Chestnut St, Los Angeles, CA 90001" -229379,Google Phone,1,600,07/24/19 23:14,"417 Chestnut St, Los Angeles, CA 90001" -229380,Lightning Charging Cable,1,14.95,07/07/19 07:35,"165 7th St, New York City, NY 10001" -229381,AAA Batteries (4-pack),2,2.99,07/18/19 10:37,"76 Jackson St, New York City, NY 10001" -229382,AAA Batteries (4-pack),1,2.99,07/22/19 14:23,"917 7th St, Seattle, WA 98101" -229383,Flatscreen TV,1,300,07/20/19 09:57,"728 6th St, San Francisco, CA 94016" -229384,34in Ultrawide Monitor,1,379.99,07/31/19 17:27,"641 Church St, Dallas, TX 75001" -229385,USB-C Charging Cable,1,11.95,07/01/19 09:07,"590 Chestnut St, Boston, MA 02215" -229386,AA Batteries (4-pack),1,3.84,07/27/19 23:06,"618 Walnut St, New York City, NY 10001" -229387,Wired Headphones,1,11.99,07/25/19 20:23,"855 1st St, Atlanta, GA 30301" -229388,Lightning Charging Cable,1,14.95,07/01/19 12:56,"409 5th St, San Francisco, CA 94016" -229389,USB-C Charging Cable,2,11.95,07/18/19 20:02,"453 Dogwood St, Seattle, WA 98101" -229390,USB-C Charging Cable,1,11.95,07/04/19 19:39,"440 Main St, San Francisco, CA 94016" -,,,,, -229391,iPhone,1,700,07/13/19 21:21,"756 Sunset St, Portland, ME 04101" -229392,Bose SoundSport Headphones,1,99.99,07/17/19 01:56,"340 6th St, Atlanta, GA 30301" -229393,AA Batteries (4-pack),1,3.84,07/23/19 14:50,"106 Sunset St, Atlanta, GA 30301" -229394,Wired Headphones,1,11.99,07/10/19 09:43,"410 Wilson St, Atlanta, GA 30301" -229395,Wired Headphones,2,11.99,07/15/19 23:26,"653 Ridge St, San Francisco, CA 94016" -229396,AAA Batteries (4-pack),2,2.99,07/08/19 00:11,"758 2nd St, Portland, OR 97035" -229397,USB-C Charging Cable,1,11.95,07/02/19 19:15,"923 Center St, New York City, NY 10001" -229398,AA Batteries (4-pack),1,3.84,07/12/19 19:20,"85 Spruce St, Dallas, TX 75001" -229399,Lightning Charging Cable,1,14.95,07/30/19 13:38,"17 Chestnut St, New York City, NY 10001" -229400,Apple Airpods Headphones,1,150,07/22/19 08:48,"861 1st St, San Francisco, CA 94016" -229401,Flatscreen TV,1,300,07/18/19 14:20,"363 Park St, Portland, OR 97035" -229402,Macbook Pro Laptop,1,1700,07/17/19 19:44,"360 Pine St, Los Angeles, CA 90001" -229403,34in Ultrawide Monitor,1,379.99,07/28/19 20:57,"191 7th St, San Francisco, CA 94016" -229404,USB-C Charging Cable,1,11.95,07/13/19 17:32,"905 8th St, Boston, MA 02215" -229405,AA Batteries (4-pack),2,3.84,07/10/19 17:28,"943 Maple St, Boston, MA 02215" -229406,27in FHD Monitor,1,149.99,07/27/19 18:39,"126 Lincoln St, New York City, NY 10001" -229407,AAA Batteries (4-pack),1,2.99,07/08/19 17:34,"922 Hill St, Los Angeles, CA 90001" -229408,ThinkPad Laptop,1,999.99,07/19/19 17:22,"11 Wilson St, Los Angeles, CA 90001" -229409,iPhone,1,700,07/14/19 07:38,"839 Lincoln St, San Francisco, CA 94016" -229410,Lightning Charging Cable,1,14.95,07/09/19 21:24,"795 Adams St, New York City, NY 10001" -229411,USB-C Charging Cable,1,11.95,07/13/19 20:20,"626 Madison St, San Francisco, CA 94016" -229412,AA Batteries (4-pack),1,3.84,07/11/19 16:26,"610 Elm St, Austin, TX 73301" -229413,Wired Headphones,1,11.99,07/25/19 21:44,"678 14th St, Austin, TX 73301" -229414,Google Phone,1,600,07/13/19 06:44,"64 Pine St, San Francisco, CA 94016" -229414,Wired Headphones,2,11.99,07/13/19 06:44,"64 Pine St, San Francisco, CA 94016" -229415,USB-C Charging Cable,1,11.95,07/14/19 16:40,"172 Washington St, Atlanta, GA 30301" -229416,Lightning Charging Cable,1,14.95,07/04/19 07:14,"582 Church St, San Francisco, CA 94016" -229417,USB-C Charging Cable,1,11.95,07/23/19 18:24,"392 5th St, Portland, ME 04101" -229418,Lightning Charging Cable,1,14.95,07/14/19 11:53,"404 Maple St, Dallas, TX 75001" -229419,Apple Airpods Headphones,1,150,07/04/19 09:05,"126 Highland St, Portland, OR 97035" -229420,Wired Headphones,1,11.99,07/14/19 07:40,"496 Washington St, Austin, TX 73301" -229421,iPhone,1,700,07/24/19 16:10,"508 10th St, Los Angeles, CA 90001" -229421,Lightning Charging Cable,1,14.95,07/24/19 16:10,"508 10th St, Los Angeles, CA 90001" -229422,AA Batteries (4-pack),1,3.84,07/16/19 18:47,"862 11th St, Los Angeles, CA 90001" -229423,ThinkPad Laptop,1,999.99,07/06/19 09:29,"68 Lakeview St, Austin, TX 73301" -229424,27in FHD Monitor,1,149.99,07/16/19 22:31,"146 Chestnut St, Los Angeles, CA 90001" -229425,27in FHD Monitor,1,149.99,07/25/19 15:59,"836 Pine St, Seattle, WA 98101" -229425,Wired Headphones,1,11.99,07/25/19 15:59,"836 Pine St, Seattle, WA 98101" -229426,27in FHD Monitor,1,149.99,07/03/19 16:15,"372 Dogwood St, San Francisco, CA 94016" -229427,Lightning Charging Cable,1,14.95,07/08/19 15:43,"681 1st St, New York City, NY 10001" -229428,Wired Headphones,1,11.99,07/05/19 22:00,"359 Spruce St, Atlanta, GA 30301" -229429,Flatscreen TV,1,300,07/13/19 22:46,"194 Sunset St, Portland, OR 97035" -229430,AAA Batteries (4-pack),2,2.99,07/05/19 08:37,"306 Willow St, Seattle, WA 98101" -229431,iPhone,1,700,07/31/19 11:04,"645 7th St, Austin, TX 73301" -229431,Lightning Charging Cable,1,14.95,07/31/19 11:04,"645 7th St, Austin, TX 73301" -229432,AAA Batteries (4-pack),2,2.99,07/27/19 09:16,"341 Jackson St, Seattle, WA 98101" -229433,Bose SoundSport Headphones,1,99.99,07/21/19 09:40,"521 Hill St, Los Angeles, CA 90001" -229434,AAA Batteries (4-pack),2,2.99,07/29/19 23:23,"75 Forest St, Portland, OR 97035" -229435,Lightning Charging Cable,1,14.95,07/22/19 08:54,"603 Hill St, Seattle, WA 98101" -229436,Bose SoundSport Headphones,1,99.99,07/20/19 19:02,"383 9th St, Austin, TX 73301" -229437,AA Batteries (4-pack),1,3.84,07/20/19 17:13,"702 14th St, New York City, NY 10001" -229438,Flatscreen TV,1,300,07/18/19 20:56,"565 4th St, San Francisco, CA 94016" -229439,Google Phone,1,600,07/31/19 14:18,"578 Cherry St, Boston, MA 02215" -229440,USB-C Charging Cable,1,11.95,07/12/19 11:20,"646 Dogwood St, Atlanta, GA 30301" -229441,AAA Batteries (4-pack),2,2.99,07/13/19 08:47,"569 Lake St, Los Angeles, CA 90001" -229442,AA Batteries (4-pack),1,3.84,07/31/19 05:00,"73 Wilson St, Boston, MA 02215" -229443,AAA Batteries (4-pack),2,2.99,07/14/19 16:29,"771 Center St, Los Angeles, CA 90001" -229444,Wired Headphones,1,11.99,07/15/19 13:43,"544 Jefferson St, Dallas, TX 75001" -229445,27in 4K Gaming Monitor,1,389.99,07/11/19 11:09,"629 Willow St, Los Angeles, CA 90001" -229446,Apple Airpods Headphones,1,150,07/20/19 12:25,"619 2nd St, San Francisco, CA 94016" -229447,Wired Headphones,1,11.99,07/21/19 08:57,"943 Adams St, San Francisco, CA 94016" -229448,Wired Headphones,1,11.99,07/02/19 14:24,"127 Jefferson St, Boston, MA 02215" -229449,Bose SoundSport Headphones,1,99.99,07/07/19 10:31,"8 14th St, Seattle, WA 98101" -229450,27in 4K Gaming Monitor,1,389.99,07/13/19 21:11,"294 11th St, Los Angeles, CA 90001" -229451,USB-C Charging Cable,1,11.95,07/12/19 21:42,"294 Cedar St, Atlanta, GA 30301" -229452,AA Batteries (4-pack),1,3.84,07/02/19 11:54,"868 Pine St, New York City, NY 10001" -229453,Apple Airpods Headphones,1,150,07/02/19 17:20,"792 Walnut St, San Francisco, CA 94016" -229454,iPhone,1,700,07/01/19 12:43,"995 Lakeview St, San Francisco, CA 94016" -229455,Apple Airpods Headphones,1,150,07/11/19 20:33,"448 5th St, Los Angeles, CA 90001" -229456,34in Ultrawide Monitor,1,379.99,07/06/19 13:38,"510 North St, Los Angeles, CA 90001" -229457,Lightning Charging Cable,1,14.95,07/13/19 09:53,"437 North St, Atlanta, GA 30301" -229457,AA Batteries (4-pack),1,3.84,07/13/19 09:53,"437 North St, Atlanta, GA 30301" -229458,Wired Headphones,1,11.99,07/11/19 19:34,"292 Park St, Los Angeles, CA 90001" -229459,Flatscreen TV,1,300,07/07/19 13:52,"105 Cherry St, New York City, NY 10001" -229460,34in Ultrawide Monitor,1,379.99,07/10/19 15:38,"780 Main St, San Francisco, CA 94016" -229461,iPhone,1,700,07/22/19 11:24,"965 13th St, San Francisco, CA 94016" -229462,Lightning Charging Cable,2,14.95,07/10/19 13:39,"316 Jackson St, Atlanta, GA 30301" -229463,Apple Airpods Headphones,1,150,07/09/19 14:03,"386 Hickory St, San Francisco, CA 94016" -229464,Apple Airpods Headphones,1,150,07/09/19 00:08,"892 Walnut St, New York City, NY 10001" -229465,27in FHD Monitor,1,149.99,07/04/19 14:52,"479 14th St, Atlanta, GA 30301" -229466,USB-C Charging Cable,1,11.95,07/27/19 17:00,"96 12th St, Los Angeles, CA 90001" -229467,Wired Headphones,1,11.99,07/16/19 13:21,"470 Jefferson St, Atlanta, GA 30301" -229468,Apple Airpods Headphones,1,150,07/30/19 14:43,"395 Hill St, Los Angeles, CA 90001" -229469,Flatscreen TV,1,300,07/07/19 17:51,"161 Washington St, Boston, MA 02215" -229470,Bose SoundSport Headphones,1,99.99,07/30/19 23:34,"168 West St, Austin, TX 73301" -229471,Bose SoundSport Headphones,1,99.99,07/21/19 18:04,"891 Lake St, Portland, ME 04101" -229472,20in Monitor,1,109.99,07/02/19 14:23,"860 Lakeview St, Boston, MA 02215" -229473,ThinkPad Laptop,1,999.99,07/09/19 19:13,"166 Chestnut St, Seattle, WA 98101" -229474,Wired Headphones,1,11.99,07/10/19 16:51,"993 Dogwood St, San Francisco, CA 94016" -229475,AA Batteries (4-pack),1,3.84,07/06/19 13:45,"630 4th St, San Francisco, CA 94016" -229476,AA Batteries (4-pack),1,3.84,07/14/19 20:22,"131 Jackson St, Los Angeles, CA 90001" -229477,AAA Batteries (4-pack),1,2.99,07/30/19 13:37,"502 2nd St, Boston, MA 02215" -229478,AAA Batteries (4-pack),2,2.99,07/08/19 18:08,"272 West St, Portland, OR 97035" -229479,Bose SoundSport Headphones,1,99.99,07/17/19 08:43,"810 Walnut St, Atlanta, GA 30301" -229480,Apple Airpods Headphones,1,150,07/19/19 09:07,"146 5th St, Dallas, TX 75001" -229481,AAA Batteries (4-pack),1,2.99,07/11/19 11:45,"355 Cherry St, Los Angeles, CA 90001" -229482,Flatscreen TV,1,300,07/28/19 20:35,"692 14th St, New York City, NY 10001" -229483,AAA Batteries (4-pack),1,2.99,07/23/19 17:14,"579 12th St, Los Angeles, CA 90001" -229484,AA Batteries (4-pack),1,3.84,07/15/19 15:50,"246 Johnson St, San Francisco, CA 94016" -229485,Wired Headphones,1,11.99,07/29/19 18:12,"741 Sunset St, New York City, NY 10001" -229486,Wired Headphones,1,11.99,07/09/19 13:17,"132 10th St, Los Angeles, CA 90001" -229487,AA Batteries (4-pack),1,3.84,07/18/19 16:50,"956 Dogwood St, Austin, TX 73301" -229488,iPhone,1,700,07/09/19 22:30,"577 Adams St, San Francisco, CA 94016" -229488,Lightning Charging Cable,1,14.95,07/09/19 22:30,"577 Adams St, San Francisco, CA 94016" -229489,Lightning Charging Cable,1,14.95,07/07/19 17:18,"438 River St, Atlanta, GA 30301" -229490,27in FHD Monitor,1,149.99,07/18/19 00:08,"782 North St, Seattle, WA 98101" -229491,Apple Airpods Headphones,1,150,07/24/19 10:44,"912 Cherry St, New York City, NY 10001" -229492,Vareebadd Phone,1,400,07/06/19 22:01,"175 Lincoln St, Los Angeles, CA 90001" -229493,USB-C Charging Cable,1,11.95,07/25/19 23:46,"315 Cedar St, Los Angeles, CA 90001" -229494,AA Batteries (4-pack),1,3.84,07/31/19 13:30,"162 10th St, San Francisco, CA 94016" -229495,27in FHD Monitor,1,149.99,07/21/19 22:46,"706 1st St, Portland, OR 97035" -229496,AA Batteries (4-pack),1,3.84,07/24/19 14:57,"401 13th St, San Francisco, CA 94016" -229497,AAA Batteries (4-pack),1,2.99,07/11/19 14:30,"843 Wilson St, New York City, NY 10001" -229498,Bose SoundSport Headphones,1,99.99,07/24/19 23:02,"325 Willow St, Seattle, WA 98101" -229499,Lightning Charging Cable,1,14.95,07/18/19 19:44,"946 Walnut St, Seattle, WA 98101" -229500,Bose SoundSport Headphones,1,99.99,07/12/19 11:10,"98 Park St, Dallas, TX 75001" -229501,AAA Batteries (4-pack),1,2.99,07/19/19 19:29,"211 Wilson St, Seattle, WA 98101" -229502,AA Batteries (4-pack),3,3.84,07/26/19 14:59,"641 Lincoln St, Los Angeles, CA 90001" -229503,Apple Airpods Headphones,1,150,07/20/19 13:02,"555 Forest St, Boston, MA 02215" -229504,iPhone,1,700,07/22/19 13:18,"17 Lincoln St, Atlanta, GA 30301" -229504,Apple Airpods Headphones,1,150,07/22/19 13:18,"17 Lincoln St, Atlanta, GA 30301" -229505,Bose SoundSport Headphones,1,99.99,07/06/19 00:06,"84 Madison St, New York City, NY 10001" -229506,Apple Airpods Headphones,1,150,07/25/19 22:19,"897 Johnson St, Atlanta, GA 30301" -229507,Lightning Charging Cable,1,14.95,07/16/19 14:09,"433 2nd St, Dallas, TX 75001" -229508,Lightning Charging Cable,1,14.95,07/27/19 11:43,"587 Hickory St, Boston, MA 02215" -229509,USB-C Charging Cable,1,11.95,07/13/19 13:45,"440 2nd St, San Francisco, CA 94016" -229510,34in Ultrawide Monitor,1,379.99,07/07/19 14:18,"96 Spruce St, Dallas, TX 75001" -229511,Wired Headphones,1,11.99,07/02/19 08:50,"200 Main St, Portland, OR 97035" -229512,USB-C Charging Cable,1,11.95,07/02/19 14:28,"678 8th St, Boston, MA 02215" -229513,Wired Headphones,1,11.99,07/17/19 14:00,"937 Forest St, Boston, MA 02215" -229514,Lightning Charging Cable,1,14.95,07/30/19 00:35,"239 Johnson St, Seattle, WA 98101" -229515,AAA Batteries (4-pack),1,2.99,07/18/19 09:59,"287 Hickory St, Atlanta, GA 30301" -229516,AA Batteries (4-pack),2,3.84,07/08/19 19:53,"711 13th St, Portland, ME 04101" -229517,20in Monitor,1,109.99,07/29/19 19:22,"644 Willow St, Los Angeles, CA 90001" -229518,AAA Batteries (4-pack),3,2.99,07/28/19 23:03,"81 Elm St, Atlanta, GA 30301" -229519,Macbook Pro Laptop,1,1700,07/29/19 08:36,"707 Walnut St, Austin, TX 73301" -229520,Apple Airpods Headphones,1,150,07/06/19 23:34,"706 Madison St, Boston, MA 02215" -229521,Bose SoundSport Headphones,1,99.99,07/16/19 17:46,"656 4th St, Boston, MA 02215" -229522,Bose SoundSport Headphones,1,99.99,07/27/19 23:02,"413 Johnson St, San Francisco, CA 94016" -229523,Lightning Charging Cable,1,14.95,07/07/19 17:48,"548 Jefferson St, New York City, NY 10001" -229524,Wired Headphones,1,11.99,07/28/19 18:35,"123 Ridge St, Dallas, TX 75001" -229525,AA Batteries (4-pack),1,3.84,07/03/19 19:50,"734 Center St, Seattle, WA 98101" -229526,Bose SoundSport Headphones,1,99.99,07/28/19 12:05,"17 Highland St, Austin, TX 73301" -229527,Bose SoundSport Headphones,1,99.99,07/10/19 14:36,"352 2nd St, Portland, OR 97035" -229528,Bose SoundSport Headphones,1,99.99,07/31/19 06:04,"832 Madison St, Boston, MA 02215" -229529,AAA Batteries (4-pack),1,2.99,07/09/19 08:37,"318 5th St, Los Angeles, CA 90001" -229530,27in FHD Monitor,1,149.99,07/08/19 17:26,"89 Jackson St, New York City, NY 10001" -229531,AA Batteries (4-pack),1,3.84,07/26/19 14:20,"84 7th St, Boston, MA 02215" -229532,AA Batteries (4-pack),1,3.84,07/26/19 11:07,"404 Lake St, Los Angeles, CA 90001" -229533,27in 4K Gaming Monitor,1,389.99,07/20/19 07:34,"80 13th St, Portland, OR 97035" -229533,Lightning Charging Cable,1,14.95,07/20/19 07:34,"80 13th St, Portland, OR 97035" -229534,Wired Headphones,1,11.99,07/17/19 17:03,"104 12th St, Atlanta, GA 30301" -229535,AAA Batteries (4-pack),3,2.99,07/08/19 23:17,"470 Hill St, Dallas, TX 75001" -229536,Bose SoundSport Headphones,1,99.99,07/26/19 14:02,"956 Willow St, Dallas, TX 75001" -229537,AAA Batteries (4-pack),1,2.99,07/06/19 12:15,"109 Park St, Los Angeles, CA 90001" -229538,Lightning Charging Cable,2,14.95,07/26/19 20:19,"630 9th St, Atlanta, GA 30301" -229539,Bose SoundSport Headphones,1,99.99,07/10/19 12:28,"696 11th St, Dallas, TX 75001" -229540,27in 4K Gaming Monitor,1,389.99,07/13/19 11:11,"74 River St, Portland, OR 97035" -229541,AA Batteries (4-pack),1,3.84,07/25/19 16:27,"176 Madison St, San Francisco, CA 94016" -229542,Bose SoundSport Headphones,1,99.99,07/07/19 18:00,"645 4th St, New York City, NY 10001" -229543,Lightning Charging Cable,1,14.95,07/14/19 13:43,"387 10th St, Boston, MA 02215" -229544,34in Ultrawide Monitor,1,379.99,07/09/19 09:36,"948 11th St, Boston, MA 02215" -229545,Macbook Pro Laptop,1,1700,07/06/19 17:14,"65 1st St, New York City, NY 10001" -229546,Bose SoundSport Headphones,1,99.99,07/30/19 16:36,"949 Maple St, San Francisco, CA 94016" -229547,27in 4K Gaming Monitor,1,389.99,07/01/19 21:01,"970 Hill St, Dallas, TX 75001" -229548,AA Batteries (4-pack),1,3.84,07/04/19 23:10,"170 Chestnut St, Atlanta, GA 30301" -229549,Lightning Charging Cable,1,14.95,07/24/19 15:02,"814 Center St, Boston, MA 02215" -229550,Lightning Charging Cable,1,14.95,07/12/19 19:21,"104 Lakeview St, Seattle, WA 98101" -229551,Bose SoundSport Headphones,1,99.99,07/04/19 10:56,"141 Spruce St, Atlanta, GA 30301" -229552,AAA Batteries (4-pack),6,2.99,07/11/19 07:30,"797 Adams St, Los Angeles, CA 90001" -229553,Bose SoundSport Headphones,1,99.99,07/29/19 13:14,"597 1st St, San Francisco, CA 94016" -229554,ThinkPad Laptop,1,999.99,07/23/19 16:47,"727 Main St, Los Angeles, CA 90001" -229555,Lightning Charging Cable,1,14.95,07/13/19 07:48,"813 Cedar St, New York City, NY 10001" -229556,Bose SoundSport Headphones,1,99.99,07/13/19 20:22,"952 4th St, Atlanta, GA 30301" -229557,Flatscreen TV,1,300,07/11/19 12:59,"734 Dogwood St, San Francisco, CA 94016" -229558,Bose SoundSport Headphones,1,99.99,07/10/19 17:23,"518 West St, New York City, NY 10001" -229559,ThinkPad Laptop,1,999.99,07/27/19 16:31,"133 13th St, Dallas, TX 75001" -229560,Wired Headphones,1,11.99,07/25/19 16:38,"362 Chestnut St, Los Angeles, CA 90001" -229561,USB-C Charging Cable,1,11.95,07/25/19 09:08,"965 Pine St, New York City, NY 10001" -229562,Lightning Charging Cable,1,14.95,07/17/19 20:03,"565 Wilson St, San Francisco, CA 94016" -229563,USB-C Charging Cable,1,11.95,07/18/19 12:55,"984 River St, New York City, NY 10001" -229564,34in Ultrawide Monitor,1,379.99,07/16/19 14:44,"466 7th St, Los Angeles, CA 90001" -229565,Bose SoundSport Headphones,1,99.99,07/05/19 01:28,"718 8th St, Atlanta, GA 30301" -229566,Flatscreen TV,1,300,07/28/19 19:20,"492 South St, Los Angeles, CA 90001" -229567,27in 4K Gaming Monitor,1,389.99,07/28/19 07:10,"462 Chestnut St, Seattle, WA 98101" -229568,Apple Airpods Headphones,1,150,07/30/19 06:58,"39 9th St, Dallas, TX 75001" -229569,AAA Batteries (4-pack),1,2.99,07/27/19 10:09,"900 Lake St, New York City, NY 10001" -229570,iPhone,1,700,07/09/19 15:13,"903 Jefferson St, San Francisco, CA 94016" -229571,Wired Headphones,1,11.99,07/07/19 19:47,"764 Wilson St, Dallas, TX 75001" -229572,27in FHD Monitor,1,149.99,07/01/19 11:01,"549 Ridge St, Atlanta, GA 30301" -229573,AAA Batteries (4-pack),1,2.99,07/18/19 15:19,"552 Ridge St, New York City, NY 10001" -229574,Lightning Charging Cable,1,14.95,07/13/19 16:31,"189 Highland St, Dallas, TX 75001" -229575,27in 4K Gaming Monitor,1,389.99,07/19/19 08:56,"608 8th St, Atlanta, GA 30301" -229576,Flatscreen TV,1,300,07/17/19 08:21,"745 Madison St, Boston, MA 02215" -229577,AAA Batteries (4-pack),5,2.99,07/18/19 12:29,"156 Pine St, Portland, OR 97035" -229578,Wired Headphones,1,11.99,07/07/19 16:18,"120 Ridge St, Austin, TX 73301" -229579,iPhone,1,700,07/15/19 18:26,"349 Meadow St, San Francisco, CA 94016" -229580,27in 4K Gaming Monitor,1,389.99,07/10/19 14:11,"58 4th St, Boston, MA 02215" -229581,27in FHD Monitor,1,149.99,07/09/19 10:52,"871 Forest St, New York City, NY 10001" -229582,Wired Headphones,1,11.99,07/26/19 12:27,"74 4th St, San Francisco, CA 94016" -229583,Macbook Pro Laptop,1,1700,07/15/19 13:01,"538 Highland St, Seattle, WA 98101" -229584,iPhone,1,700,07/21/19 13:06,"334 Center St, San Francisco, CA 94016" -229585,Wired Headphones,1,11.99,07/04/19 08:39,"589 Lincoln St, Atlanta, GA 30301" -229586,AAA Batteries (4-pack),2,2.99,07/13/19 19:18,"5 Lake St, Dallas, TX 75001" -229587,AAA Batteries (4-pack),1,2.99,07/06/19 22:28,"542 8th St, Seattle, WA 98101" -229588,Bose SoundSport Headphones,1,99.99,07/28/19 12:35,"725 5th St, Dallas, TX 75001" -229589,Wired Headphones,1,11.99,07/21/19 23:31,"2 13th St, Austin, TX 73301" -229589,AAA Batteries (4-pack),1,2.99,07/21/19 23:31,"2 13th St, Austin, TX 73301" -229590,Apple Airpods Headphones,1,150,07/24/19 10:33,"857 14th St, Los Angeles, CA 90001" -229590,USB-C Charging Cable,1,11.95,07/24/19 10:33,"857 14th St, Los Angeles, CA 90001" -229591,20in Monitor,1,109.99,07/25/19 15:03,"950 Dogwood St, Portland, OR 97035" -,,,,, -229592,Wired Headphones,1,11.99,07/04/19 21:52,"205 5th St, Dallas, TX 75001" -229593,AA Batteries (4-pack),1,3.84,07/23/19 09:20,"516 6th St, Atlanta, GA 30301" -229594,Apple Airpods Headphones,1,150,07/15/19 08:01,"523 12th St, Atlanta, GA 30301" -229595,USB-C Charging Cable,1,11.95,07/24/19 18:09,"657 2nd St, New York City, NY 10001" -229596,AAA Batteries (4-pack),1,2.99,07/10/19 10:37,"934 6th St, Portland, OR 97035" -229597,ThinkPad Laptop,1,999.99,07/31/19 18:12,"324 10th St, Los Angeles, CA 90001" -229598,AAA Batteries (4-pack),1,2.99,07/27/19 11:40,"677 Highland St, Austin, TX 73301" -229599,Apple Airpods Headphones,1,150,07/11/19 10:09,"509 Hickory St, Austin, TX 73301" -229600,Google Phone,1,600,07/22/19 09:23,"44 Washington St, Boston, MA 02215" -229601,AAA Batteries (4-pack),1,2.99,07/26/19 19:11,"58 Hill St, Portland, OR 97035" -229602,Macbook Pro Laptop,1,1700,07/11/19 20:19,"163 7th St, San Francisco, CA 94016" -229603,USB-C Charging Cable,1,11.95,07/19/19 14:03,"642 Lakeview St, Austin, TX 73301" -229604,Lightning Charging Cable,2,14.95,07/29/19 11:39,"994 Ridge St, Seattle, WA 98101" -229605,Wired Headphones,1,11.99,07/21/19 08:12,"239 13th St, New York City, NY 10001" -229606,AAA Batteries (4-pack),1,2.99,07/20/19 11:44,"395 Adams St, Dallas, TX 75001" -229607,Bose SoundSport Headphones,1,99.99,07/06/19 15:21,"284 Wilson St, Los Angeles, CA 90001" -229608,Apple Airpods Headphones,1,150,07/28/19 20:07,"4 Cedar St, Portland, OR 97035" -229609,USB-C Charging Cable,1,11.95,07/10/19 17:22,"933 North St, Atlanta, GA 30301" -229610,AA Batteries (4-pack),1,3.84,07/08/19 10:39,"158 Maple St, Dallas, TX 75001" -229611,Bose SoundSport Headphones,1,99.99,07/26/19 00:13,"793 Pine St, San Francisco, CA 94016" -229612,Lightning Charging Cable,1,14.95,07/20/19 20:37,"696 Main St, Dallas, TX 75001" -229613,Lightning Charging Cable,1,14.95,07/19/19 12:42,"715 North St, Boston, MA 02215" -229614,AAA Batteries (4-pack),1,2.99,07/16/19 20:13,"706 South St, San Francisco, CA 94016" -229615,Lightning Charging Cable,1,14.95,07/15/19 18:10,"983 14th St, Dallas, TX 75001" -229616,Wired Headphones,1,11.99,07/27/19 15:38,"175 9th St, New York City, NY 10001" -229617,AA Batteries (4-pack),1,3.84,07/13/19 10:12,"890 River St, San Francisco, CA 94016" -229618,AAA Batteries (4-pack),2,2.99,07/11/19 11:31,"395 Lincoln St, San Francisco, CA 94016" -229619,AAA Batteries (4-pack),3,2.99,07/10/19 17:17,"525 Wilson St, San Francisco, CA 94016" -229620,Lightning Charging Cable,1,14.95,07/17/19 09:39,"709 Forest St, Dallas, TX 75001" -229621,Wired Headphones,1,11.99,07/28/19 03:09,"297 9th St, Seattle, WA 98101" -229622,Wired Headphones,1,11.99,07/19/19 13:15,"213 Elm St, Los Angeles, CA 90001" -229623,Apple Airpods Headphones,1,150,07/17/19 15:18,"99 Hickory St, New York City, NY 10001" -229624,Bose SoundSport Headphones,1,99.99,07/18/19 04:56,"734 North St, San Francisco, CA 94016" -229625,27in FHD Monitor,1,149.99,07/16/19 14:27,"838 South St, Boston, MA 02215" -229625,Wired Headphones,1,11.99,07/16/19 14:27,"838 South St, Boston, MA 02215" -229626,Lightning Charging Cable,1,14.95,07/14/19 14:45,"769 Lincoln St, San Francisco, CA 94016" -229627,iPhone,1,700,07/01/19 17:27,"149 River St, Boston, MA 02215" -229628,Lightning Charging Cable,1,14.95,07/31/19 21:56,"417 Pine St, Boston, MA 02215" -229629,AAA Batteries (4-pack),4,2.99,07/29/19 02:26,"581 Lakeview St, Los Angeles, CA 90001" -229630,AAA Batteries (4-pack),1,2.99,07/02/19 12:22,"370 Hill St, Austin, TX 73301" -229631,AAA Batteries (4-pack),1,2.99,07/26/19 12:24,"126 2nd St, San Francisco, CA 94016" -229632,34in Ultrawide Monitor,1,379.99,07/20/19 11:28,"645 Church St, Los Angeles, CA 90001" -229633,USB-C Charging Cable,1,11.95,07/10/19 00:01,"446 5th St, Portland, OR 97035" -229634,Google Phone,1,600,07/24/19 20:39,"983 6th St, New York City, NY 10001" -229634,USB-C Charging Cable,1,11.95,07/24/19 20:39,"983 6th St, New York City, NY 10001" -229635,USB-C Charging Cable,1,11.95,07/28/19 10:50,"672 Cherry St, New York City, NY 10001" -229636,Wired Headphones,1,11.99,07/14/19 16:01,"3 11th St, San Francisco, CA 94016" -229637,Lightning Charging Cable,1,14.95,07/11/19 15:27,"174 Lake St, New York City, NY 10001" -229638,AAA Batteries (4-pack),2,2.99,07/01/19 10:51,"573 Sunset St, New York City, NY 10001" -229639,USB-C Charging Cable,1,11.95,07/27/19 10:33,"856 Sunset St, Boston, MA 02215" -229640,34in Ultrawide Monitor,1,379.99,07/03/19 22:19,"515 South St, Portland, OR 97035" -229641,Wired Headphones,1,11.99,07/15/19 14:44,"871 7th St, Austin, TX 73301" -229642,27in FHD Monitor,1,149.99,07/09/19 15:12,"581 Cherry St, Los Angeles, CA 90001" -229643,Google Phone,1,600,07/16/19 20:54,"249 Johnson St, Dallas, TX 75001" -229644,Apple Airpods Headphones,1,150,07/20/19 11:03,"913 Center St, San Francisco, CA 94016" -229645,Lightning Charging Cable,1,14.95,07/09/19 12:19,"333 2nd St, New York City, NY 10001" -229646,34in Ultrawide Monitor,1,379.99,07/20/19 20:21,"628 Maple St, Seattle, WA 98101" -229646,USB-C Charging Cable,1,11.95,07/20/19 20:21,"628 Maple St, Seattle, WA 98101" -229647,Wired Headphones,3,11.99,07/17/19 19:14,"846 4th St, Los Angeles, CA 90001" -229648,AA Batteries (4-pack),1,3.84,07/13/19 18:33,"224 Cherry St, Boston, MA 02215" -229649,AAA Batteries (4-pack),1,2.99,07/27/19 12:01,"74 14th St, Atlanta, GA 30301" -229650,AA Batteries (4-pack),1,3.84,07/27/19 21:07,"941 Lincoln St, San Francisco, CA 94016" -229651,AA Batteries (4-pack),1,3.84,07/06/19 09:27,"761 4th St, Dallas, TX 75001" -229652,Apple Airpods Headphones,1,150,07/06/19 20:30,"809 River St, San Francisco, CA 94016" -229653,Wired Headphones,1,11.99,07/13/19 15:49,"628 Johnson St, Portland, OR 97035" -229654,Apple Airpods Headphones,1,150,07/17/19 11:14,"605 14th St, Dallas, TX 75001" -229655,AAA Batteries (4-pack),4,2.99,07/16/19 15:46,"370 Jefferson St, New York City, NY 10001" -229656,27in FHD Monitor,1,149.99,07/06/19 08:04,"95 Hickory St, San Francisco, CA 94016" -229657,Apple Airpods Headphones,1,150,07/10/19 18:58,"407 South St, New York City, NY 10001" -229658,iPhone,1,700,07/13/19 19:05,"11 Elm St, New York City, NY 10001" -229659,AAA Batteries (4-pack),1,2.99,07/22/19 23:26,"59 Cedar St, San Francisco, CA 94016" -229660,Apple Airpods Headphones,1,150,07/03/19 20:41,"892 Lakeview St, San Francisco, CA 94016" -229661,Lightning Charging Cable,1,14.95,07/26/19 13:25,"842 Johnson St, San Francisco, CA 94016" -229662,iPhone,1,700,07/02/19 12:02,"193 Madison St, San Francisco, CA 94016" -229663,Apple Airpods Headphones,1,150,07/21/19 18:58,"561 7th St, Austin, TX 73301" -229664,27in FHD Monitor,1,149.99,07/11/19 19:33,"81 Jefferson St, Los Angeles, CA 90001" -229665,LG Dryer,1,600.0,07/19/19 14:50,"406 Elm St, Austin, TX 73301" -229666,Lightning Charging Cable,1,14.95,07/25/19 11:16,"955 River St, Atlanta, GA 30301" -229667,AA Batteries (4-pack),1,3.84,07/06/19 18:53,"785 Lake St, San Francisco, CA 94016" -229668,USB-C Charging Cable,1,11.95,07/06/19 07:23,"820 8th St, San Francisco, CA 94016" -229669,34in Ultrawide Monitor,1,379.99,07/18/19 12:45,"694 Wilson St, Seattle, WA 98101" -229670,AAA Batteries (4-pack),2,2.99,07/17/19 19:40,"214 Church St, Atlanta, GA 30301" -229671,Lightning Charging Cable,1,14.95,07/30/19 08:34,"874 North St, San Francisco, CA 94016" -229672,ThinkPad Laptop,1,999.99,07/25/19 10:47,"429 8th St, Boston, MA 02215" -229673,iPhone,1,700,07/02/19 11:00,"786 10th St, San Francisco, CA 94016" -229673,Lightning Charging Cable,1,14.95,07/02/19 11:00,"786 10th St, San Francisco, CA 94016" -229674,Apple Airpods Headphones,1,150,07/31/19 03:37,"549 North St, Austin, TX 73301" -229675,Macbook Pro Laptop,1,1700,07/15/19 20:58,"676 Ridge St, Austin, TX 73301" -229676,Lightning Charging Cable,1,14.95,07/21/19 14:49,"172 Center St, Atlanta, GA 30301" -229677,AA Batteries (4-pack),2,3.84,07/23/19 19:05,"326 Johnson St, Los Angeles, CA 90001" -229678,LG Dryer,1,600.0,07/13/19 12:36,"544 Spruce St, Boston, MA 02215" -229679,Apple Airpods Headphones,1,150,07/13/19 13:07,"205 Hickory St, New York City, NY 10001" -229680,Apple Airpods Headphones,1,150,07/14/19 09:40,"919 Cedar St, San Francisco, CA 94016" -229681,USB-C Charging Cable,1,11.95,07/23/19 22:24,"227 Hickory St, New York City, NY 10001" -229682,AA Batteries (4-pack),1,3.84,07/07/19 20:37,"529 Chestnut St, Portland, OR 97035" -229683,USB-C Charging Cable,1,11.95,07/07/19 13:37,"955 9th St, Los Angeles, CA 90001" -229684,Lightning Charging Cable,1,14.95,07/20/19 21:04,"25 River St, Portland, OR 97035" -229685,AA Batteries (4-pack),2,3.84,07/18/19 14:11,"262 Lincoln St, Austin, TX 73301" -229686,Lightning Charging Cable,1,14.95,07/26/19 16:20,"687 2nd St, Dallas, TX 75001" -229687,ThinkPad Laptop,1,999.99,07/26/19 08:45,"138 Willow St, Dallas, TX 75001" -229688,Lightning Charging Cable,1,14.95,07/12/19 13:25,"299 12th St, Atlanta, GA 30301" -229689,Bose SoundSport Headphones,1,99.99,07/05/19 15:05,"870 Dogwood St, San Francisco, CA 94016" -229690,27in FHD Monitor,1,149.99,07/01/19 16:19,"673 Spruce St, San Francisco, CA 94016" -229691,iPhone,1,700,07/07/19 21:52,"829 1st St, Seattle, WA 98101" -229692,Lightning Charging Cable,1,14.95,08/01/19 02:39,"10 12th St, Los Angeles, CA 90001" -229693,AAA Batteries (4-pack),1,2.99,07/13/19 08:50,"101 9th St, Seattle, WA 98101" -229694,ThinkPad Laptop,1,999.99,07/31/19 20:56,"970 North St, Austin, TX 73301" -229695,Lightning Charging Cable,1,14.95,07/08/19 11:46,"217 Pine St, New York City, NY 10001" -229696,AA Batteries (4-pack),1,3.84,07/25/19 22:35,"945 Forest St, San Francisco, CA 94016" -229697,Wired Headphones,1,11.99,07/07/19 19:50,"577 Center St, Los Angeles, CA 90001" -229698,Bose SoundSport Headphones,1,99.99,07/14/19 18:05,"705 Elm St, Dallas, TX 75001" -229699,Google Phone,1,600,07/12/19 11:03,"405 5th St, Dallas, TX 75001" -229699,USB-C Charging Cable,1,11.95,07/12/19 11:03,"405 5th St, Dallas, TX 75001" -229700,AAA Batteries (4-pack),1,2.99,08/01/19 00:44,"27 Lakeview St, San Francisco, CA 94016" -229701,27in FHD Monitor,1,149.99,07/25/19 10:22,"696 Adams St, Los Angeles, CA 90001" -229701,27in FHD Monitor,1,149.99,07/25/19 10:22,"696 Adams St, Los Angeles, CA 90001" -229702,AAA Batteries (4-pack),1,2.99,07/22/19 11:55,"52 Jackson St, Dallas, TX 75001" -229703,Lightning Charging Cable,1,14.95,07/13/19 19:37,"882 Cherry St, Austin, TX 73301" -229704,USB-C Charging Cable,2,11.95,07/29/19 11:02,"898 Walnut St, Los Angeles, CA 90001" -229705,Google Phone,1,600,07/24/19 14:33,"13 Pine St, Los Angeles, CA 90001" -229706,Wired Headphones,1,11.99,07/10/19 18:28,"823 North St, New York City, NY 10001" -229707,Lightning Charging Cable,1,14.95,07/13/19 13:56,"591 13th St, Boston, MA 02215" -229708,Lightning Charging Cable,1,14.95,07/14/19 13:08,"953 5th St, San Francisco, CA 94016" -229709,Flatscreen TV,1,300,07/23/19 18:48,"443 Wilson St, New York City, NY 10001" -229710,Bose SoundSport Headphones,1,99.99,07/01/19 14:55,"64 North St, Los Angeles, CA 90001" -229711,Apple Airpods Headphones,1,150,07/03/19 13:13,"68 Maple St, Austin, TX 73301" -229712,AA Batteries (4-pack),1,3.84,07/12/19 23:20,"241 Chestnut St, Los Angeles, CA 90001" -229713,Lightning Charging Cable,1,14.95,07/10/19 17:23,"276 Main St, New York City, NY 10001" -229714,Macbook Pro Laptop,1,1700,07/30/19 19:13,"594 Jackson St, San Francisco, CA 94016" -229715,Wired Headphones,1,11.99,07/22/19 11:27,"359 5th St, San Francisco, CA 94016" -229716,AA Batteries (4-pack),2,3.84,07/27/19 08:04,"213 Cedar St, Austin, TX 73301" -229717,AA Batteries (4-pack),1,3.84,07/18/19 15:16,"138 11th St, Seattle, WA 98101" -229718,Lightning Charging Cable,1,14.95,07/31/19 17:32,"152 13th St, San Francisco, CA 94016" -229719,Lightning Charging Cable,1,14.95,07/03/19 13:45,"684 Hill St, San Francisco, CA 94016" -229720,27in 4K Gaming Monitor,1,389.99,07/09/19 19:33,"95 Chestnut St, New York City, NY 10001" -229721,USB-C Charging Cable,1,11.95,07/17/19 03:14,"728 Washington St, Los Angeles, CA 90001" -229722,Lightning Charging Cable,1,14.95,07/23/19 09:50,"640 Highland St, San Francisco, CA 94016" -229723,Google Phone,1,600,07/04/19 10:02,"641 Meadow St, New York City, NY 10001" -229724,USB-C Charging Cable,2,11.95,07/16/19 18:06,"677 Adams St, San Francisco, CA 94016" -229725,Lightning Charging Cable,1,14.95,07/27/19 05:54,"90 7th St, New York City, NY 10001" -229726,Bose SoundSport Headphones,1,99.99,07/10/19 19:02,"854 Cherry St, Portland, OR 97035" -229727,USB-C Charging Cable,1,11.95,07/13/19 15:52,"782 Johnson St, New York City, NY 10001" -229728,27in FHD Monitor,1,149.99,07/22/19 16:30,"276 Maple St, Dallas, TX 75001" -229729,Bose SoundSport Headphones,1,99.99,07/22/19 18:50,"6 Johnson St, San Francisco, CA 94016" -229730,27in FHD Monitor,1,149.99,07/22/19 13:31,"152 Dogwood St, San Francisco, CA 94016" -229731,AA Batteries (4-pack),1,3.84,07/30/19 09:08,"105 Cherry St, Atlanta, GA 30301" -229732,Apple Airpods Headphones,1,150,07/11/19 12:07,"583 11th St, Los Angeles, CA 90001" -229733,iPhone,1,700,07/17/19 22:50,"508 Maple St, Seattle, WA 98101" -229734,Macbook Pro Laptop,1,1700,07/29/19 23:24,"346 Willow St, Los Angeles, CA 90001" -229735,AAA Batteries (4-pack),1,2.99,07/15/19 06:35,"261 Jackson St, Atlanta, GA 30301" -229736,AAA Batteries (4-pack),2,2.99,07/17/19 08:50,"407 Highland St, Los Angeles, CA 90001" -229737,27in 4K Gaming Monitor,1,389.99,07/19/19 01:33,"939 7th St, Boston, MA 02215" -229738,Bose SoundSport Headphones,1,99.99,07/28/19 21:40,"249 Elm St, Los Angeles, CA 90001" -229739,Apple Airpods Headphones,1,150,07/17/19 20:10,"31 Adams St, San Francisco, CA 94016" -229740,Wired Headphones,1,11.99,07/31/19 13:02,"731 Park St, New York City, NY 10001" -229740,ThinkPad Laptop,1,999.99,07/31/19 13:02,"731 Park St, New York City, NY 10001" -229741,Wired Headphones,1,11.99,07/08/19 10:24,"560 2nd St, Boston, MA 02215" -229742,27in FHD Monitor,1,149.99,07/30/19 17:49,"286 Park St, Atlanta, GA 30301" -229743,Bose SoundSport Headphones,1,99.99,07/23/19 21:37,"417 Johnson St, San Francisco, CA 94016" -229744,iPhone,1,700,07/23/19 09:34,"94 West St, San Francisco, CA 94016" -229744,Wired Headphones,1,11.99,07/23/19 09:34,"94 West St, San Francisco, CA 94016" -229745,Apple Airpods Headphones,1,150,07/20/19 06:46,"999 14th St, Los Angeles, CA 90001" -229746,AAA Batteries (4-pack),1,2.99,07/04/19 15:28,"420 Church St, New York City, NY 10001" -229747,Lightning Charging Cable,1,14.95,07/24/19 21:07,"675 2nd St, Atlanta, GA 30301" -229748,AAA Batteries (4-pack),4,2.99,07/24/19 15:10,"36 6th St, New York City, NY 10001" -229749,ThinkPad Laptop,1,999.99,07/26/19 00:00,"3 Church St, New York City, NY 10001" -229750,Macbook Pro Laptop,1,1700,07/04/19 09:29,"855 14th St, Seattle, WA 98101" -229750,AA Batteries (4-pack),1,3.84,07/04/19 09:29,"855 14th St, Seattle, WA 98101" -229751,Macbook Pro Laptop,1,1700,07/19/19 04:12,"966 Maple St, Seattle, WA 98101" -229752,USB-C Charging Cable,2,11.95,07/08/19 09:21,"692 2nd St, Los Angeles, CA 90001" -229753,Wired Headphones,1,11.99,07/12/19 18:34,"488 2nd St, Portland, ME 04101" -229754,Macbook Pro Laptop,1,1700,07/08/19 13:57,"915 Cherry St, San Francisco, CA 94016" -229755,Lightning Charging Cable,1,14.95,07/12/19 06:11,"808 Dogwood St, Los Angeles, CA 90001" -229756,AA Batteries (4-pack),2,3.84,07/27/19 21:20,"662 River St, Portland, ME 04101" -229757,USB-C Charging Cable,1,11.95,07/26/19 10:08,"638 Main St, Los Angeles, CA 90001" -229758,Wired Headphones,1,11.99,07/21/19 15:20,"282 South St, Los Angeles, CA 90001" -229759,ThinkPad Laptop,1,999.99,07/05/19 13:35,"992 2nd St, New York City, NY 10001" -229760,AA Batteries (4-pack),1,3.84,07/10/19 10:42,"866 9th St, Austin, TX 73301" -229761,USB-C Charging Cable,1,11.95,07/23/19 14:09,"767 9th St, New York City, NY 10001" -229762,AA Batteries (4-pack),2,3.84,07/28/19 14:39,"734 Forest St, New York City, NY 10001" -229763,USB-C Charging Cable,1,11.95,07/01/19 12:27,"749 Cherry St, Boston, MA 02215" -229764,Wired Headphones,1,11.99,07/29/19 16:38,"840 2nd St, Dallas, TX 75001" -229765,USB-C Charging Cable,1,11.95,07/27/19 11:30,"716 Pine St, New York City, NY 10001" -229766,27in FHD Monitor,1,149.99,07/24/19 15:49,"554 10th St, Los Angeles, CA 90001" -229767,Bose SoundSport Headphones,1,99.99,07/10/19 05:02,"757 Adams St, San Francisco, CA 94016" -229768,USB-C Charging Cable,1,11.95,07/18/19 10:25,"417 13th St, Los Angeles, CA 90001" -229769,ThinkPad Laptop,1,999.99,07/01/19 19:20,"181 11th St, New York City, NY 10001" -229770,AAA Batteries (4-pack),1,2.99,07/10/19 14:12,"191 Adams St, New York City, NY 10001" -229771,AAA Batteries (4-pack),1,2.99,07/26/19 19:25,"231 Maple St, Seattle, WA 98101" -229772,AA Batteries (4-pack),1,3.84,07/21/19 17:21,"614 Ridge St, Los Angeles, CA 90001" -229773,AAA Batteries (4-pack),2,2.99,07/21/19 00:00,"625 1st St, Portland, OR 97035" -229774,AA Batteries (4-pack),4,3.84,07/14/19 21:39,"87 Elm St, Seattle, WA 98101" -229775,Apple Airpods Headphones,1,150,07/11/19 07:27,"675 Center St, Boston, MA 02215" -229776,Bose SoundSport Headphones,1,99.99,07/28/19 20:11,"849 Sunset St, San Francisco, CA 94016" -229777,Bose SoundSport Headphones,1,99.99,07/05/19 10:31,"606 Lakeview St, Los Angeles, CA 90001" -229778,ThinkPad Laptop,1,999.99,07/04/19 12:49,"565 Highland St, Los Angeles, CA 90001" -229779,AAA Batteries (4-pack),2,2.99,07/10/19 00:43,"677 Sunset St, San Francisco, CA 94016" -229780,27in FHD Monitor,1,149.99,07/15/19 13:39,"503 Madison St, San Francisco, CA 94016" -229781,USB-C Charging Cable,1,11.95,07/24/19 23:24,"404 Elm St, San Francisco, CA 94016" -229782,ThinkPad Laptop,1,999.99,07/23/19 07:26,"101 Adams St, Boston, MA 02215" -229783,Apple Airpods Headphones,1,150,07/21/19 13:25,"198 12th St, Boston, MA 02215" -229784,Vareebadd Phone,1,400,07/22/19 00:10,"636 Church St, San Francisco, CA 94016" -229785,Lightning Charging Cable,1,14.95,07/02/19 23:29,"481 Lincoln St, Los Angeles, CA 90001" -229786,iPhone,1,700,07/18/19 10:50,"905 Lakeview St, New York City, NY 10001" -229786,Wired Headphones,1,11.99,07/18/19 10:50,"905 Lakeview St, New York City, NY 10001" -229787,Bose SoundSport Headphones,1,99.99,07/20/19 19:14,"720 Jackson St, Dallas, TX 75001" -229788,Wired Headphones,1,11.99,07/29/19 09:05,"342 Johnson St, Atlanta, GA 30301" -229789,AAA Batteries (4-pack),1,2.99,07/05/19 15:28,"918 Lincoln St, New York City, NY 10001" -229790,Lightning Charging Cable,1,14.95,07/05/19 16:35,"202 5th St, San Francisco, CA 94016" -229791,ThinkPad Laptop,1,999.99,07/19/19 10:32,"734 2nd St, New York City, NY 10001" -229792,Bose SoundSport Headphones,1,99.99,07/29/19 22:39,"63 Cherry St, New York City, NY 10001" -229793,AA Batteries (4-pack),3,3.84,07/28/19 22:25,"40 5th St, Seattle, WA 98101" -229794,AAA Batteries (4-pack),1,2.99,07/03/19 09:26,"796 Washington St, Boston, MA 02215" -229795,Flatscreen TV,1,300,07/23/19 16:56,"674 Hill St, San Francisco, CA 94016" -229796,Flatscreen TV,1,300,07/19/19 13:29,"478 Church St, San Francisco, CA 94016" -229797,AA Batteries (4-pack),1,3.84,07/18/19 21:03,"365 Main St, Atlanta, GA 30301" -229798,20in Monitor,1,109.99,07/26/19 00:23,"222 Chestnut St, Los Angeles, CA 90001" -229799,Flatscreen TV,1,300,07/17/19 18:53,"830 13th St, New York City, NY 10001" -229800,Apple Airpods Headphones,1,150,07/12/19 20:04,"754 12th St, Dallas, TX 75001" -229801,iPhone,1,700,07/26/19 23:53,"141 Hickory St, San Francisco, CA 94016" -229801,Lightning Charging Cable,1,14.95,07/26/19 23:53,"141 Hickory St, San Francisco, CA 94016" -229802,Lightning Charging Cable,1,14.95,07/27/19 11:48,"307 5th St, New York City, NY 10001" -229803,Apple Airpods Headphones,1,150,07/27/19 15:44,"686 Ridge St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -229804,AAA Batteries (4-pack),3,2.99,07/30/19 19:24,"352 South St, San Francisco, CA 94016" -229805,Bose SoundSport Headphones,1,99.99,07/11/19 17:35,"833 Meadow St, Seattle, WA 98101" -229806,iPhone,1,700,07/10/19 14:24,"998 Pine St, Atlanta, GA 30301" -229807,Macbook Pro Laptop,1,1700,07/07/19 16:09,"475 8th St, Seattle, WA 98101" -229808,USB-C Charging Cable,1,11.95,07/14/19 18:15,"443 Chestnut St, San Francisco, CA 94016" -229809,Bose SoundSport Headphones,1,99.99,07/30/19 15:40,"789 9th St, Seattle, WA 98101" -229810,Bose SoundSport Headphones,1,99.99,07/03/19 07:16,"94 Maple St, Atlanta, GA 30301" -229811,Google Phone,1,600,07/14/19 17:17,"247 Johnson St, San Francisco, CA 94016" -229811,USB-C Charging Cable,1,11.95,07/14/19 17:17,"247 Johnson St, San Francisco, CA 94016" -229812,AA Batteries (4-pack),3,3.84,07/12/19 19:28,"123 Johnson St, Los Angeles, CA 90001" -229813,USB-C Charging Cable,1,11.95,07/07/19 22:40,"519 Walnut St, Los Angeles, CA 90001" -229814,AAA Batteries (4-pack),1,2.99,07/09/19 16:32,"105 Forest St, New York City, NY 10001" -229815,Apple Airpods Headphones,1,150,07/20/19 13:36,"217 Wilson St, Boston, MA 02215" -229816,Apple Airpods Headphones,1,150,07/12/19 08:19,"449 Willow St, Boston, MA 02215" -229817,AA Batteries (4-pack),3,3.84,07/21/19 13:14,"805 Jackson St, Atlanta, GA 30301" -229818,AA Batteries (4-pack),2,3.84,07/04/19 15:44,"705 West St, Portland, OR 97035" -229819,Lightning Charging Cable,1,14.95,07/25/19 00:25,"972 Park St, San Francisco, CA 94016" -229820,AAA Batteries (4-pack),1,2.99,07/10/19 15:29,"178 Wilson St, Los Angeles, CA 90001" -229821,USB-C Charging Cable,1,11.95,07/20/19 14:26,"439 14th St, Boston, MA 02215" -229822,Wired Headphones,1,11.99,07/11/19 17:53,"371 Pine St, Boston, MA 02215" -229823,iPhone,1,700,07/15/19 11:49,"488 Hill St, New York City, NY 10001" -229824,AAA Batteries (4-pack),1,2.99,07/24/19 22:01,"359 7th St, Dallas, TX 75001" -229825,Wired Headphones,1,11.99,07/11/19 10:52,"535 Adams St, San Francisco, CA 94016" -229826,AAA Batteries (4-pack),1,2.99,07/26/19 13:13,"574 Hickory St, Atlanta, GA 30301" -229827,Lightning Charging Cable,1,14.95,07/16/19 18:37,"272 13th St, Los Angeles, CA 90001" -229828,Apple Airpods Headphones,1,150,07/07/19 11:20,"160 8th St, Los Angeles, CA 90001" -229829,27in FHD Monitor,1,149.99,07/02/19 10:16,"292 7th St, New York City, NY 10001" -229830,34in Ultrawide Monitor,1,379.99,07/26/19 15:22,"510 Hickory St, Atlanta, GA 30301" -229831,Wired Headphones,1,11.99,07/28/19 01:27,"578 Jackson St, Los Angeles, CA 90001" -229832,Apple Airpods Headphones,1,150,07/01/19 12:58,"876 Forest St, Boston, MA 02215" -229833,Google Phone,1,600,07/16/19 20:52,"202 Pine St, San Francisco, CA 94016" -229833,USB-C Charging Cable,1,11.95,07/16/19 20:52,"202 Pine St, San Francisco, CA 94016" -229834,Google Phone,1,600,07/11/19 22:38,"688 South St, Los Angeles, CA 90001" -229835,iPhone,1,700,07/05/19 13:06,"10 4th St, Los Angeles, CA 90001" -229836,27in 4K Gaming Monitor,1,389.99,07/08/19 08:42,"15 Church St, New York City, NY 10001" -229837,AAA Batteries (4-pack),4,2.99,07/29/19 09:43,"964 Wilson St, San Francisco, CA 94016" -229838,AAA Batteries (4-pack),2,2.99,07/01/19 10:23,"816 Dogwood St, Los Angeles, CA 90001" -229839,Bose SoundSport Headphones,1,99.99,07/08/19 10:11,"72 Cedar St, Austin, TX 73301" -229840,Bose SoundSport Headphones,1,99.99,07/07/19 07:19,"165 West St, San Francisco, CA 94016" -229841,Macbook Pro Laptop,1,1700,07/02/19 17:31,"767 1st St, Seattle, WA 98101" -229842,AAA Batteries (4-pack),1,2.99,07/11/19 09:25,"3 Meadow St, New York City, NY 10001" -229843,AA Batteries (4-pack),1,3.84,07/21/19 19:29,"648 11th St, Los Angeles, CA 90001" -229844,AA Batteries (4-pack),1,3.84,07/02/19 10:03,"929 7th St, Portland, OR 97035" -229845,Apple Airpods Headphones,1,150,07/31/19 12:43,"46 Washington St, Dallas, TX 75001" -229846,USB-C Charging Cable,1,11.95,07/18/19 10:23,"212 Ridge St, San Francisco, CA 94016" -229847,20in Monitor,1,109.99,07/30/19 09:22,"983 12th St, Atlanta, GA 30301" -229848,Lightning Charging Cable,1,14.95,07/24/19 20:56,"386 14th St, Dallas, TX 75001" -229849,AA Batteries (4-pack),1,3.84,07/04/19 12:38,"467 Madison St, Austin, TX 73301" -229850,Bose SoundSport Headphones,1,99.99,07/05/19 17:06,"76 South St, Boston, MA 02215" -229851,Wired Headphones,1,11.99,07/25/19 11:40,"367 1st St, San Francisco, CA 94016" -229852,27in FHD Monitor,1,149.99,07/04/19 12:30,"984 River St, Los Angeles, CA 90001" -229853,Wired Headphones,2,11.99,07/05/19 16:57,"413 4th St, Dallas, TX 75001" -229854,AA Batteries (4-pack),1,3.84,07/06/19 22:03,"15 10th St, Los Angeles, CA 90001" -229855,Bose SoundSport Headphones,1,99.99,07/08/19 13:27,"435 7th St, Seattle, WA 98101" -229856,Apple Airpods Headphones,1,150,07/22/19 22:03,"920 Adams St, San Francisco, CA 94016" -229857,USB-C Charging Cable,1,11.95,07/31/19 11:29,"654 11th St, Atlanta, GA 30301" -229858,USB-C Charging Cable,1,11.95,07/12/19 04:54,"104 14th St, Dallas, TX 75001" -229859,AA Batteries (4-pack),1,3.84,07/09/19 12:56,"498 River St, San Francisco, CA 94016" -229860,20in Monitor,1,109.99,07/15/19 10:36,"18 Cedar St, Dallas, TX 75001" -229861,Macbook Pro Laptop,1,1700,07/21/19 01:04,"715 Dogwood St, New York City, NY 10001" -229862,27in 4K Gaming Monitor,1,389.99,07/15/19 11:34,"782 13th St, Portland, OR 97035" -229863,Apple Airpods Headphones,1,150,07/09/19 00:21,"679 10th St, San Francisco, CA 94016" -229864,AAA Batteries (4-pack),1,2.99,07/18/19 10:15,"450 2nd St, San Francisco, CA 94016" -229865,AAA Batteries (4-pack),1,2.99,07/14/19 17:02,"392 Spruce St, San Francisco, CA 94016" -229866,34in Ultrawide Monitor,1,379.99,07/13/19 13:41,"712 Adams St, Seattle, WA 98101" -229867,AAA Batteries (4-pack),1,2.99,07/04/19 15:11,"246 Park St, Los Angeles, CA 90001" -229868,USB-C Charging Cable,1,11.95,07/16/19 13:30,"801 11th St, Los Angeles, CA 90001" -229869,AA Batteries (4-pack),2,3.84,07/25/19 16:54,"533 10th St, Los Angeles, CA 90001" -229870,Macbook Pro Laptop,1,1700,07/20/19 20:46,"117 5th St, Dallas, TX 75001" -229871,Lightning Charging Cable,1,14.95,07/09/19 08:27,"311 Jackson St, San Francisco, CA 94016" -229871,AAA Batteries (4-pack),1,2.99,07/09/19 08:27,"311 Jackson St, San Francisco, CA 94016" -229872,Lightning Charging Cable,1,14.95,07/19/19 11:18,"478 Willow St, Boston, MA 02215" -229873,AAA Batteries (4-pack),1,2.99,07/29/19 11:48,"787 Madison St, San Francisco, CA 94016" -229874,Lightning Charging Cable,1,14.95,07/26/19 13:01,"172 Center St, Atlanta, GA 30301" -229875,AA Batteries (4-pack),1,3.84,07/04/19 14:22,"718 Spruce St, San Francisco, CA 94016" -229876,Wired Headphones,1,11.99,07/08/19 08:36,"868 Chestnut St, New York City, NY 10001" -229877,Apple Airpods Headphones,1,150,07/26/19 03:01,"662 Chestnut St, San Francisco, CA 94016" -229878,Bose SoundSport Headphones,1,99.99,07/07/19 09:30,"763 Sunset St, San Francisco, CA 94016" -229879,Wired Headphones,1,11.99,07/12/19 16:52,"938 9th St, Seattle, WA 98101" -229880,Lightning Charging Cable,1,14.95,07/21/19 10:03,"758 Cedar St, San Francisco, CA 94016" -229881,AAA Batteries (4-pack),1,2.99,07/05/19 10:38,"399 Maple St, New York City, NY 10001" -229882,Bose SoundSport Headphones,1,99.99,07/10/19 07:48,"347 Center St, San Francisco, CA 94016" -229883,27in FHD Monitor,1,149.99,07/26/19 14:23,"339 Adams St, San Francisco, CA 94016" -229884,Macbook Pro Laptop,1,1700,07/12/19 23:08,"559 Lake St, Austin, TX 73301" -229885,Apple Airpods Headphones,1,150,07/27/19 19:33,"356 2nd St, San Francisco, CA 94016" -229886,ThinkPad Laptop,1,999.99,07/20/19 08:40,"556 Lakeview St, Dallas, TX 75001" -229887,Google Phone,1,600,07/13/19 19:08,"389 Church St, Boston, MA 02215" -229887,USB-C Charging Cable,1,11.95,07/13/19 19:08,"389 Church St, Boston, MA 02215" -229888,Lightning Charging Cable,1,14.95,07/20/19 15:15,"213 Sunset St, San Francisco, CA 94016" -229889,AA Batteries (4-pack),1,3.84,07/22/19 12:29,"914 Willow St, Boston, MA 02215" -229890,AAA Batteries (4-pack),1,2.99,07/15/19 11:04,"494 4th St, San Francisco, CA 94016" -229891,iPhone,1,700,07/03/19 18:32,"110 Hickory St, Los Angeles, CA 90001" -229892,AA Batteries (4-pack),1,3.84,07/26/19 13:33,"642 Walnut St, Portland, ME 04101" -229893,34in Ultrawide Monitor,1,379.99,07/18/19 19:52,"125 6th St, San Francisco, CA 94016" -229894,Apple Airpods Headphones,1,150,07/03/19 17:16,"37 Madison St, Dallas, TX 75001" -229895,Apple Airpods Headphones,1,150,07/13/19 08:47,"910 5th St, Los Angeles, CA 90001" -229896,Apple Airpods Headphones,1,150,07/24/19 18:21,"760 Washington St, Boston, MA 02215" -229897,Wired Headphones,1,11.99,07/14/19 09:22,"205 5th St, Los Angeles, CA 90001" -229898,27in 4K Gaming Monitor,1,389.99,07/08/19 08:13,"758 6th St, Portland, OR 97035" -229899,Apple Airpods Headphones,1,150,07/09/19 21:59,"573 Main St, Seattle, WA 98101" -229900,20in Monitor,1,109.99,07/23/19 12:57,"120 9th St, Boston, MA 02215" -229901,27in FHD Monitor,1,149.99,07/28/19 11:10,"609 Center St, Los Angeles, CA 90001" -229902,AAA Batteries (4-pack),1,2.99,07/04/19 15:54,"644 Adams St, Los Angeles, CA 90001" -229903,Wired Headphones,1,11.99,07/21/19 17:46,"973 Hill St, San Francisco, CA 94016" -229904,AAA Batteries (4-pack),1,2.99,07/18/19 12:30,"816 Dogwood St, Los Angeles, CA 90001" -229905,iPhone,1,700,07/30/19 18:13,"613 North St, San Francisco, CA 94016" -229905,Lightning Charging Cable,1,14.95,07/30/19 18:13,"613 North St, San Francisco, CA 94016" -229906,Lightning Charging Cable,2,14.95,07/09/19 22:01,"798 12th St, Los Angeles, CA 90001" -229907,USB-C Charging Cable,1,11.95,07/20/19 11:30,"578 5th St, Portland, OR 97035" -229908,Wired Headphones,2,11.99,07/26/19 19:34,"831 Meadow St, San Francisco, CA 94016" -229909,Flatscreen TV,1,300,07/21/19 16:10,"683 4th St, Dallas, TX 75001" -229910,USB-C Charging Cable,1,11.95,07/05/19 18:58,"587 Spruce St, New York City, NY 10001" -229911,Google Phone,1,600,07/21/19 16:50,"573 Forest St, Seattle, WA 98101" -229912,Wired Headphones,1,11.99,07/07/19 12:23,"765 Meadow St, New York City, NY 10001" -229913,USB-C Charging Cable,1,11.95,07/12/19 13:58,"897 Ridge St, Boston, MA 02215" -229914,Google Phone,1,600,07/08/19 12:36,"608 Lincoln St, Boston, MA 02215" -229915,Lightning Charging Cable,2,14.95,07/28/19 21:05,"856 Wilson St, San Francisco, CA 94016" -229916,Apple Airpods Headphones,1,150,07/11/19 23:59,"416 14th St, Atlanta, GA 30301" -229917,Macbook Pro Laptop,1,1700,07/20/19 23:00,"675 7th St, New York City, NY 10001" -229918,AAA Batteries (4-pack),1,2.99,07/16/19 07:20,"549 4th St, Los Angeles, CA 90001" -229919,AAA Batteries (4-pack),1,2.99,07/21/19 17:51,"617 Jackson St, Austin, TX 73301" -229920,Bose SoundSport Headphones,1,99.99,07/28/19 11:20,"280 South St, Los Angeles, CA 90001" -229921,Bose SoundSport Headphones,1,99.99,07/21/19 08:01,"498 North St, New York City, NY 10001" -229922,Lightning Charging Cable,1,14.95,07/28/19 17:29,"709 14th St, Los Angeles, CA 90001" -229923,Apple Airpods Headphones,1,150,07/20/19 19:04,"358 Spruce St, San Francisco, CA 94016" -229924,AAA Batteries (4-pack),1,2.99,07/22/19 09:36,"463 Jefferson St, Austin, TX 73301" -229925,Lightning Charging Cable,1,14.95,07/12/19 15:15,"295 2nd St, Atlanta, GA 30301" -229926,27in FHD Monitor,1,149.99,07/01/19 17:03,"75 14th St, Seattle, WA 98101" -229927,Wired Headphones,1,11.99,07/28/19 11:09,"296 Church St, Boston, MA 02215" -229928,Bose SoundSport Headphones,1,99.99,07/29/19 15:28,"224 9th St, San Francisco, CA 94016" -229929,USB-C Charging Cable,1,11.95,07/21/19 16:45,"410 North St, San Francisco, CA 94016" -229930,Wired Headphones,1,11.99,07/08/19 19:18,"603 5th St, Boston, MA 02215" -229931,Wired Headphones,1,11.99,07/05/19 17:18,"923 Church St, Seattle, WA 98101" -229932,AAA Batteries (4-pack),2,2.99,07/28/19 10:56,"316 9th St, Los Angeles, CA 90001" -229933,AAA Batteries (4-pack),1,2.99,07/24/19 19:00,"984 Willow St, New York City, NY 10001" -229934,Apple Airpods Headphones,1,150,07/16/19 18:08,"90 Jefferson St, Atlanta, GA 30301" -229935,Wired Headphones,1,11.99,07/05/19 08:50,"642 7th St, New York City, NY 10001" -229936,AA Batteries (4-pack),1,3.84,07/23/19 20:40,"214 Johnson St, Seattle, WA 98101" -229937,Macbook Pro Laptop,1,1700,07/07/19 10:59,"791 Ridge St, New York City, NY 10001" -229938,Lightning Charging Cable,1,14.95,07/15/19 19:10,"729 Main St, Portland, ME 04101" -229939,Wired Headphones,1,11.99,07/01/19 07:25,"869 Maple St, Portland, OR 97035" -229940,USB-C Charging Cable,1,11.95,07/01/19 23:11,"691 North St, Boston, MA 02215" -229941,Apple Airpods Headphones,1,150,07/30/19 22:20,"628 Spruce St, New York City, NY 10001" -229942,Apple Airpods Headphones,1,150,07/12/19 19:21,"628 Dogwood St, Los Angeles, CA 90001" -229943,Bose SoundSport Headphones,1,99.99,07/13/19 06:43,"902 Lincoln St, Boston, MA 02215" -229944,27in 4K Gaming Monitor,1,389.99,07/04/19 19:38,"336 Cedar St, New York City, NY 10001" -229945,Wired Headphones,1,11.99,07/25/19 12:30,"446 Jackson St, Seattle, WA 98101" -229946,AA Batteries (4-pack),1,3.84,07/25/19 18:13,"979 8th St, Los Angeles, CA 90001" -229947,Lightning Charging Cable,1,14.95,07/27/19 00:04,"88 Johnson St, Boston, MA 02215" -229948,Lightning Charging Cable,1,14.95,07/28/19 12:39,"466 Johnson St, Boston, MA 02215" -229949,AA Batteries (4-pack),1,3.84,07/26/19 09:53,"283 Center St, New York City, NY 10001" -229950,AA Batteries (4-pack),2,3.84,07/16/19 19:02,"153 Main St, San Francisco, CA 94016" -229951,Google Phone,1,600,07/21/19 06:35,"367 West St, San Francisco, CA 94016" -229951,USB-C Charging Cable,1,11.95,07/21/19 06:35,"367 West St, San Francisco, CA 94016" -229952,Lightning Charging Cable,1,14.95,07/01/19 10:07,"379 2nd St, Los Angeles, CA 90001" -229953,Apple Airpods Headphones,1,150,07/10/19 21:08,"386 Center St, Seattle, WA 98101" -229954,34in Ultrawide Monitor,1,379.99,07/14/19 13:18,"645 Center St, San Francisco, CA 94016" -229955,Wired Headphones,2,11.99,07/30/19 11:41,"143 9th St, Atlanta, GA 30301" -229956,27in 4K Gaming Monitor,1,389.99,07/12/19 00:57,"792 4th St, Seattle, WA 98101" -229957,27in FHD Monitor,1,149.99,07/01/19 09:52,"392 Lincoln St, Dallas, TX 75001" -229958,Lightning Charging Cable,1,14.95,07/21/19 13:16,"492 Hill St, San Francisco, CA 94016" -229959,AA Batteries (4-pack),1,3.84,07/31/19 16:51,"76 4th St, Austin, TX 73301" -229960,AA Batteries (4-pack),1,3.84,07/03/19 20:33,"191 Cedar St, San Francisco, CA 94016" -229961,Flatscreen TV,1,300,07/31/19 15:53,"258 11th St, Los Angeles, CA 90001" -229962,AAA Batteries (4-pack),3,2.99,07/13/19 10:41,"582 Highland St, Atlanta, GA 30301" -229963,Apple Airpods Headphones,1,150,07/30/19 08:09,"735 Church St, Austin, TX 73301" -229964,AA Batteries (4-pack),1,3.84,07/16/19 05:30,"845 Washington St, New York City, NY 10001" -229965,AA Batteries (4-pack),1,3.84,07/24/19 08:20,"19 Pine St, Boston, MA 02215" -229966,Macbook Pro Laptop,1,1700,07/20/19 19:40,"191 Spruce St, Boston, MA 02215" -229967,Bose SoundSport Headphones,1,99.99,07/28/19 07:44,"198 Walnut St, San Francisco, CA 94016" -229968,Lightning Charging Cable,1,14.95,07/19/19 15:10,"410 13th St, Austin, TX 73301" -229969,AAA Batteries (4-pack),1,2.99,07/23/19 12:20,"590 Willow St, San Francisco, CA 94016" -229970,Apple Airpods Headphones,1,150,07/10/19 02:51,"94 13th St, Austin, TX 73301" -229971,Apple Airpods Headphones,1,150,07/07/19 19:15,"35 9th St, Austin, TX 73301" -229972,AAA Batteries (4-pack),1,2.99,07/02/19 01:35,"722 Jefferson St, Seattle, WA 98101" -229973,USB-C Charging Cable,1,11.95,07/02/19 21:35,"385 Hickory St, New York City, NY 10001" -229974,USB-C Charging Cable,1,11.95,07/16/19 14:26,"718 Spruce St, Atlanta, GA 30301" -229975,AA Batteries (4-pack),1,3.84,07/03/19 10:15,"161 Adams St, Austin, TX 73301" -229976,AA Batteries (4-pack),1,3.84,07/06/19 23:55,"290 Adams St, Los Angeles, CA 90001" -229977,Lightning Charging Cable,1,14.95,07/19/19 14:49,"760 Walnut St, Boston, MA 02215" -229978,Lightning Charging Cable,1,14.95,07/27/19 08:37,"323 8th St, New York City, NY 10001" -229979,Macbook Pro Laptop,1,1700,07/21/19 17:34,"482 Madison St, Seattle, WA 98101" -229980,AA Batteries (4-pack),1,3.84,07/28/19 09:59,"241 Hill St, New York City, NY 10001" -229981,AA Batteries (4-pack),1,3.84,07/28/19 17:23,"412 13th St, Austin, TX 73301" -229982,Lightning Charging Cable,1,14.95,07/31/19 19:03,"470 Chestnut St, Los Angeles, CA 90001" -229983,Macbook Pro Laptop,1,1700,07/03/19 17:10,"937 Highland St, San Francisco, CA 94016" -229984,Lightning Charging Cable,1,14.95,07/22/19 22:16,"183 Willow St, Boston, MA 02215" -229985,Lightning Charging Cable,1,14.95,07/20/19 10:20,"825 Meadow St, San Francisco, CA 94016" -229986,iPhone,1,700,07/27/19 10:10,"964 8th St, Los Angeles, CA 90001" -229986,Lightning Charging Cable,1,14.95,07/27/19 10:10,"964 8th St, Los Angeles, CA 90001" -229987,AA Batteries (4-pack),2,3.84,07/25/19 12:14,"743 Ridge St, Los Angeles, CA 90001" -229988,Wired Headphones,1,11.99,07/13/19 08:24,"710 Willow St, Austin, TX 73301" -229989,Vareebadd Phone,1,400,07/23/19 12:11,"890 11th St, Seattle, WA 98101" -229990,Apple Airpods Headphones,1,150,07/11/19 09:23,"296 5th St, San Francisco, CA 94016" -229991,USB-C Charging Cable,1,11.95,07/24/19 17:43,"838 Chestnut St, Atlanta, GA 30301" -229992,Apple Airpods Headphones,1,150,07/04/19 18:36,"773 Lakeview St, San Francisco, CA 94016" -229993,AA Batteries (4-pack),2,3.84,07/11/19 16:13,"961 Washington St, San Francisco, CA 94016" -229994,Wired Headphones,1,11.99,07/27/19 15:10,"190 9th St, San Francisco, CA 94016" -229995,Apple Airpods Headphones,1,150,07/17/19 15:07,"596 2nd St, New York City, NY 10001" -229996,Lightning Charging Cable,1,14.95,07/13/19 17:29,"672 Park St, Portland, ME 04101" -229997,AA Batteries (4-pack),3,3.84,07/08/19 18:28,"883 7th St, Dallas, TX 75001" -229998,Bose SoundSport Headphones,1,99.99,07/31/19 13:36,"758 West St, Boston, MA 02215" -229999,iPhone,1,700,07/11/19 14:10,"313 Wilson St, Boston, MA 02215" -230000,USB-C Charging Cable,1,11.95,07/18/19 19:36,"914 Highland St, San Francisco, CA 94016" -230001,34in Ultrawide Monitor,1,379.99,07/30/19 12:23,"506 10th St, Austin, TX 73301" -230002,USB-C Charging Cable,1,11.95,07/16/19 06:02,"215 Pine St, Los Angeles, CA 90001" -230003,20in Monitor,1,109.99,07/29/19 12:10,"168 Lake St, Dallas, TX 75001" -230004,Vareebadd Phone,1,400,07/02/19 20:08,"617 10th St, San Francisco, CA 94016" -230005,iPhone,1,700,07/30/19 17:00,"543 11th St, Los Angeles, CA 90001" -230006,AAA Batteries (4-pack),1,2.99,07/23/19 21:09,"533 Jackson St, Los Angeles, CA 90001" -230007,AAA Batteries (4-pack),1,2.99,07/26/19 18:34,"812 Spruce St, Portland, ME 04101" -230008,Apple Airpods Headphones,1,150,07/16/19 10:04,"949 Chestnut St, Seattle, WA 98101" -230009,Lightning Charging Cable,1,14.95,07/30/19 10:27,"515 2nd St, Los Angeles, CA 90001" -230010,LG Washing Machine,1,600.0,07/15/19 21:13,"495 8th St, Seattle, WA 98101" -230011,USB-C Charging Cable,1,11.95,07/19/19 11:16,"224 Park St, Boston, MA 02215" -230012,Wired Headphones,1,11.99,07/04/19 23:44,"628 Jackson St, Los Angeles, CA 90001" -230013,AA Batteries (4-pack),2,3.84,07/28/19 02:39,"779 12th St, Los Angeles, CA 90001" -230014,AA Batteries (4-pack),2,3.84,07/09/19 16:19,"829 Cherry St, Austin, TX 73301" -230015,USB-C Charging Cable,1,11.95,07/08/19 08:52,"962 13th St, Boston, MA 02215" -230016,AA Batteries (4-pack),1,3.84,07/23/19 11:04,"816 Hickory St, New York City, NY 10001" -230017,Wired Headphones,2,11.99,07/02/19 11:40,"48 Highland St, Dallas, TX 75001" -230018,Lightning Charging Cable,1,14.95,07/28/19 15:23,"875 Willow St, Atlanta, GA 30301" -230019,34in Ultrawide Monitor,1,379.99,07/23/19 02:03,"942 Chestnut St, Austin, TX 73301" -230020,Lightning Charging Cable,1,14.95,07/23/19 17:48,"765 Park St, San Francisco, CA 94016" -230021,27in FHD Monitor,1,149.99,07/20/19 09:07,"314 4th St, San Francisco, CA 94016" -230022,Apple Airpods Headphones,1,150,07/12/19 17:32,"448 Johnson St, San Francisco, CA 94016" -230023,LG Dryer,1,600.0,07/30/19 10:27,"773 Elm St, Los Angeles, CA 90001" -230024,iPhone,1,700,07/14/19 22:14,"550 Chestnut St, Atlanta, GA 30301" -230024,Lightning Charging Cable,1,14.95,07/14/19 22:14,"550 Chestnut St, Atlanta, GA 30301" -230024,Apple Airpods Headphones,1,150,07/14/19 22:14,"550 Chestnut St, Atlanta, GA 30301" -230025,27in 4K Gaming Monitor,1,389.99,07/27/19 20:37,"696 9th St, Los Angeles, CA 90001" -230026,AA Batteries (4-pack),2,3.84,07/28/19 19:45,"306 Forest St, Dallas, TX 75001" -230027,Lightning Charging Cable,1,14.95,07/24/19 20:44,"553 2nd St, Los Angeles, CA 90001" -230028,Bose SoundSport Headphones,1,99.99,07/13/19 16:58,"294 Spruce St, Atlanta, GA 30301" -230029,Google Phone,1,600,07/10/19 08:15,"876 9th St, Portland, ME 04101" -230030,Apple Airpods Headphones,1,150,07/18/19 08:24,"954 West St, Seattle, WA 98101" -230031,AA Batteries (4-pack),1,3.84,07/23/19 10:15,"964 River St, Atlanta, GA 30301" -230032,Lightning Charging Cable,1,14.95,07/06/19 20:29,"268 Church St, Boston, MA 02215" -230033,Wired Headphones,1,11.99,07/06/19 14:36,"481 South St, Portland, OR 97035" -230034,Wired Headphones,2,11.99,07/05/19 15:54,"794 5th St, San Francisco, CA 94016" -230035,AAA Batteries (4-pack),1,2.99,07/25/19 21:35,"545 Washington St, Boston, MA 02215" -230035,Flatscreen TV,1,300,07/25/19 21:35,"545 Washington St, Boston, MA 02215" -230036,Lightning Charging Cable,1,14.95,07/10/19 16:18,"882 Washington St, Los Angeles, CA 90001" -230037,Flatscreen TV,1,300,07/18/19 11:32,"94 Center St, Seattle, WA 98101" -230038,27in FHD Monitor,1,149.99,07/18/19 22:40,"497 Spruce St, San Francisco, CA 94016" -230039,AA Batteries (4-pack),1,3.84,07/11/19 16:59,"446 Adams St, San Francisco, CA 94016" -230040,Macbook Pro Laptop,1,1700,07/07/19 22:47,"576 Lakeview St, Dallas, TX 75001" -230041,ThinkPad Laptop,1,999.99,07/13/19 14:22,"668 7th St, Los Angeles, CA 90001" -230042,34in Ultrawide Monitor,1,379.99,07/13/19 11:03,"649 13th St, Boston, MA 02215" -230043,AA Batteries (4-pack),1,3.84,07/15/19 14:16,"669 Dogwood St, Dallas, TX 75001" -230044,Bose SoundSport Headphones,1,99.99,07/28/19 11:58,"962 Lakeview St, San Francisco, CA 94016" -230045,Apple Airpods Headphones,1,150,07/28/19 17:48,"620 Forest St, Dallas, TX 75001" -230046,Apple Airpods Headphones,1,150,07/20/19 20:44,"870 Hill St, Portland, ME 04101" -230047,AA Batteries (4-pack),1,3.84,07/04/19 02:52,"781 8th St, Seattle, WA 98101" -230048,27in 4K Gaming Monitor,1,389.99,07/09/19 15:13,"918 Jackson St, Dallas, TX 75001" -230049,Flatscreen TV,1,300,07/13/19 22:26,"919 Willow St, Dallas, TX 75001" -230050,AA Batteries (4-pack),1,3.84,07/12/19 14:44,"534 7th St, Boston, MA 02215" -230051,Apple Airpods Headphones,1,150,07/12/19 11:22,"933 Cherry St, Los Angeles, CA 90001" -230052,AA Batteries (4-pack),1,3.84,07/14/19 18:23,"598 Jackson St, Dallas, TX 75001" -230053,27in FHD Monitor,1,149.99,07/02/19 19:32,"839 7th St, New York City, NY 10001" -230054,Lightning Charging Cable,1,14.95,07/29/19 14:20,"740 1st St, Portland, OR 97035" -230055,iPhone,1,700,07/06/19 07:47,"267 Maple St, Dallas, TX 75001" -230055,Lightning Charging Cable,1,14.95,07/06/19 07:47,"267 Maple St, Dallas, TX 75001" -230056,USB-C Charging Cable,1,11.95,07/15/19 15:18,"755 Jefferson St, Dallas, TX 75001" -230057,AA Batteries (4-pack),2,3.84,07/20/19 09:11,"715 Meadow St, Boston, MA 02215" -230058,iPhone,1,700,07/13/19 08:54,"439 Jefferson St, Seattle, WA 98101" -230059,Wired Headphones,1,11.99,07/08/19 13:35,"615 Center St, Atlanta, GA 30301" -230060,Vareebadd Phone,1,400,07/08/19 13:12,"84 Madison St, Los Angeles, CA 90001" -230061,USB-C Charging Cable,1,11.95,07/31/19 15:46,"145 Hill St, New York City, NY 10001" -230062,AA Batteries (4-pack),2,3.84,07/03/19 14:41,"182 Sunset St, San Francisco, CA 94016" -230063,Wired Headphones,1,11.99,07/03/19 13:54,"824 Elm St, San Francisco, CA 94016" -230064,Bose SoundSport Headphones,1,99.99,07/23/19 21:28,"476 10th St, San Francisco, CA 94016" -230065,Lightning Charging Cable,1,14.95,07/27/19 15:25,"252 Spruce St, Boston, MA 02215" -230066,Wired Headphones,1,11.99,07/03/19 11:48,"835 9th St, New York City, NY 10001" -230067,Wired Headphones,1,11.99,07/23/19 17:44,"850 Park St, Austin, TX 73301" -230068,27in 4K Gaming Monitor,1,389.99,07/20/19 18:29,"278 Spruce St, New York City, NY 10001" -230069,Wired Headphones,1,11.99,07/17/19 01:19,"206 Main St, Boston, MA 02215" -230070,Bose SoundSport Headphones,1,99.99,07/11/19 14:09,"453 14th St, Los Angeles, CA 90001" -230071,Apple Airpods Headphones,1,150,07/31/19 17:05,"851 Pine St, Portland, OR 97035" -230072,AAA Batteries (4-pack),1,2.99,07/16/19 12:46,"701 Main St, Atlanta, GA 30301" -230073,Macbook Pro Laptop,1,1700,07/22/19 10:40,"288 Johnson St, Boston, MA 02215" -230074,AA Batteries (4-pack),1,3.84,07/18/19 10:41,"359 Adams St, San Francisco, CA 94016" -230075,Lightning Charging Cable,1,14.95,07/04/19 00:47,"890 Willow St, San Francisco, CA 94016" -230076,AAA Batteries (4-pack),1,2.99,07/15/19 18:17,"424 Adams St, San Francisco, CA 94016" -230077,AAA Batteries (4-pack),3,2.99,07/20/19 14:55,"315 Madison St, Seattle, WA 98101" -230078,Apple Airpods Headphones,1,150,07/20/19 10:45,"36 West St, Dallas, TX 75001" -230079,USB-C Charging Cable,1,11.95,07/27/19 10:08,"264 Lake St, San Francisco, CA 94016" -230080,Bose SoundSport Headphones,2,99.99,07/01/19 16:37,"418 Jackson St, San Francisco, CA 94016" -230081,Apple Airpods Headphones,1,150,07/02/19 15:20,"720 2nd St, Dallas, TX 75001" -230082,ThinkPad Laptop,1,999.99,07/13/19 15:55,"976 Cherry St, Los Angeles, CA 90001" -230083,Bose SoundSport Headphones,1,99.99,07/16/19 22:00,"745 9th St, Portland, OR 97035" -230084,ThinkPad Laptop,1,999.99,07/12/19 18:51,"478 Lincoln St, New York City, NY 10001" -230085,Bose SoundSport Headphones,1,99.99,07/17/19 16:01,"225 2nd St, Boston, MA 02215" -230086,Macbook Pro Laptop,1,1700,07/17/19 16:02,"211 Lake St, Los Angeles, CA 90001" -230087,USB-C Charging Cable,2,11.95,07/12/19 21:26,"738 Lincoln St, Portland, OR 97035" -230088,34in Ultrawide Monitor,1,379.99,07/25/19 13:49,"501 Spruce St, Los Angeles, CA 90001" -230089,Apple Airpods Headphones,1,150,07/17/19 12:31,"467 Forest St, Los Angeles, CA 90001" -230090,AAA Batteries (4-pack),1,2.99,07/10/19 07:34,"338 Maple St, New York City, NY 10001" -230091,ThinkPad Laptop,1,999.99,07/03/19 13:35,"243 Adams St, Seattle, WA 98101" -230092,ThinkPad Laptop,1,999.99,07/14/19 13:06,"120 5th St, Austin, TX 73301" -230093,Lightning Charging Cable,1,14.95,07/20/19 17:17,"611 11th St, New York City, NY 10001" -230094,Wired Headphones,1,11.99,07/08/19 22:27,"231 South St, Atlanta, GA 30301" -230095,Apple Airpods Headphones,1,150,07/24/19 07:12,"504 Lake St, Austin, TX 73301" -230096,AA Batteries (4-pack),3,3.84,07/02/19 22:43,"902 6th St, San Francisco, CA 94016" -230097,20in Monitor,1,109.99,07/10/19 15:51,"160 Meadow St, Dallas, TX 75001" -230098,Apple Airpods Headphones,1,150,07/01/19 18:17,"535 Hill St, New York City, NY 10001" -230099,Lightning Charging Cable,1,14.95,07/20/19 05:03,"84 Dogwood St, Portland, ME 04101" -230100,USB-C Charging Cable,2,11.95,07/11/19 11:27,"62 8th St, Los Angeles, CA 90001" -230101,iPhone,1,700,07/19/19 17:40,"801 1st St, Austin, TX 73301" -230102,AA Batteries (4-pack),1,3.84,07/25/19 08:58,"35 Adams St, Portland, OR 97035" -230103,Bose SoundSport Headphones,1,99.99,07/19/19 14:46,"293 Park St, Los Angeles, CA 90001" -230104,27in FHD Monitor,1,149.99,07/07/19 18:37,"867 Highland St, Boston, MA 02215" -230105,Apple Airpods Headphones,1,150,07/01/19 12:16,"599 12th St, Dallas, TX 75001" -230106,Lightning Charging Cable,1,14.95,07/09/19 12:07,"669 South St, Los Angeles, CA 90001" -230107,USB-C Charging Cable,2,11.95,07/13/19 23:46,"666 Main St, Atlanta, GA 30301" -230108,Lightning Charging Cable,1,14.95,07/04/19 13:53,"575 Willow St, Boston, MA 02215" -230109,Apple Airpods Headphones,1,150,07/03/19 13:16,"251 8th St, San Francisco, CA 94016" -230110,Apple Airpods Headphones,1,150,07/28/19 21:00,"581 Washington St, Austin, TX 73301" -230111,AA Batteries (4-pack),1,3.84,07/26/19 13:22,"425 Hickory St, Atlanta, GA 30301" -230112,USB-C Charging Cable,1,11.95,07/17/19 22:30,"886 1st St, San Francisco, CA 94016" -230113,27in FHD Monitor,1,149.99,07/12/19 14:43,"924 2nd St, San Francisco, CA 94016" -230114,20in Monitor,1,109.99,07/10/19 19:30,"863 Wilson St, Austin, TX 73301" -230115,27in FHD Monitor,1,149.99,07/31/19 14:00,"60 Washington St, New York City, NY 10001" -230116,Vareebadd Phone,1,400,07/16/19 08:23,"654 Washington St, Los Angeles, CA 90001" -230117,20in Monitor,1,109.99,07/26/19 16:38,"282 Madison St, Portland, ME 04101" -,,,,, -230118,AA Batteries (4-pack),1,3.84,07/19/19 21:07,"547 Lake St, Austin, TX 73301" -230119,27in FHD Monitor,1,149.99,07/07/19 15:15,"886 South St, Seattle, WA 98101" -230120,27in FHD Monitor,1,149.99,07/03/19 07:44,"621 9th St, Los Angeles, CA 90001" -230121,AA Batteries (4-pack),2,3.84,07/29/19 22:47,"726 12th St, Boston, MA 02215" -230122,USB-C Charging Cable,1,11.95,07/05/19 20:46,"418 7th St, Portland, ME 04101" -230123,LG Dryer,1,600.0,07/01/19 21:29,"320 Chestnut St, San Francisco, CA 94016" -230124,Bose SoundSport Headphones,1,99.99,07/27/19 21:55,"944 Center St, San Francisco, CA 94016" -230125,USB-C Charging Cable,1,11.95,07/31/19 22:01,"257 Meadow St, Atlanta, GA 30301" -230126,USB-C Charging Cable,2,11.95,07/13/19 07:04,"699 Lincoln St, Seattle, WA 98101" -230127,Wired Headphones,2,11.99,07/09/19 08:00,"254 Adams St, Portland, OR 97035" -230128,27in 4K Gaming Monitor,1,389.99,07/13/19 23:34,"29 Johnson St, Seattle, WA 98101" -230128,Wired Headphones,1,11.99,07/13/19 23:34,"29 Johnson St, Seattle, WA 98101" -230129,Vareebadd Phone,1,400,07/23/19 18:30,"485 South St, Atlanta, GA 30301" -230129,USB-C Charging Cable,1,11.95,07/23/19 18:30,"485 South St, Atlanta, GA 30301" -230130,27in FHD Monitor,1,149.99,07/11/19 12:23,"307 Lincoln St, New York City, NY 10001" -230131,Lightning Charging Cable,1,14.95,07/29/19 16:33,"193 Park St, Austin, TX 73301" -230132,Bose SoundSport Headphones,1,99.99,07/01/19 16:53,"648 Center St, Seattle, WA 98101" -230133,USB-C Charging Cable,1,11.95,07/19/19 19:34,"570 Elm St, Portland, OR 97035" -230134,Lightning Charging Cable,1,14.95,07/23/19 17:06,"265 Johnson St, San Francisco, CA 94016" -230135,Bose SoundSport Headphones,1,99.99,07/08/19 09:40,"398 Elm St, Atlanta, GA 30301" -230136,AA Batteries (4-pack),1,3.84,07/23/19 12:27,"766 8th St, Atlanta, GA 30301" -230137,Lightning Charging Cable,2,14.95,07/05/19 18:17,"419 9th St, San Francisco, CA 94016" -230138,27in 4K Gaming Monitor,1,389.99,07/10/19 12:11,"53 Dogwood St, San Francisco, CA 94016" -230139,Lightning Charging Cable,1,14.95,07/23/19 11:48,"508 Cedar St, Seattle, WA 98101" -230140,USB-C Charging Cable,1,11.95,07/27/19 10:33,"354 Center St, Seattle, WA 98101" -230141,Lightning Charging Cable,1,14.95,07/08/19 12:29,"475 Madison St, Los Angeles, CA 90001" -230142,Apple Airpods Headphones,1,150,07/06/19 15:11,"906 Lakeview St, San Francisco, CA 94016" -230143,Wired Headphones,1,11.99,07/10/19 18:03,"495 6th St, Portland, OR 97035" -230144,Bose SoundSport Headphones,1,99.99,07/01/19 18:15,"455 North St, Boston, MA 02215" -230145,AA Batteries (4-pack),1,3.84,07/17/19 22:30,"107 9th St, Portland, OR 97035" -230146,iPhone,1,700,07/03/19 18:13,"934 Ridge St, San Francisco, CA 94016" -230147,Apple Airpods Headphones,1,150,07/29/19 21:25,"117 Jackson St, Dallas, TX 75001" -230148,ThinkPad Laptop,1,999.99,07/28/19 23:33,"489 Dogwood St, New York City, NY 10001" -230149,Lightning Charging Cable,1,14.95,07/16/19 20:58,"825 Hill St, Seattle, WA 98101" -230150,AAA Batteries (4-pack),1,2.99,07/26/19 18:21,"775 6th St, Los Angeles, CA 90001" -230151,34in Ultrawide Monitor,1,379.99,07/10/19 09:51,"959 6th St, Los Angeles, CA 90001" -230152,Wired Headphones,1,11.99,07/14/19 20:36,"320 Center St, Dallas, TX 75001" -230153,USB-C Charging Cable,1,11.95,07/14/19 19:59,"18 Ridge St, San Francisco, CA 94016" -230154,Flatscreen TV,1,300,07/12/19 06:57,"864 Cherry St, San Francisco, CA 94016" -230155,20in Monitor,1,109.99,07/15/19 07:23,"32 9th St, Atlanta, GA 30301" -230156,USB-C Charging Cable,1,11.95,07/18/19 21:28,"825 Lincoln St, Atlanta, GA 30301" -230157,AA Batteries (4-pack),1,3.84,07/31/19 16:41,"5 13th St, Austin, TX 73301" -230158,Apple Airpods Headphones,1,150,07/22/19 20:46,"384 Jackson St, Los Angeles, CA 90001" -230159,AA Batteries (4-pack),1,3.84,07/08/19 12:28,"358 14th St, Seattle, WA 98101" -230160,Wired Headphones,1,11.99,07/04/19 22:12,"200 Dogwood St, Boston, MA 02215" -230161,USB-C Charging Cable,1,11.95,07/22/19 12:25,"487 14th St, Boston, MA 02215" -230162,Wired Headphones,1,11.99,07/02/19 13:32,"9 Elm St, Dallas, TX 75001" -230163,Google Phone,1,600,07/11/19 15:12,"55 Willow St, New York City, NY 10001" -230164,Lightning Charging Cable,1,14.95,07/03/19 08:13,"942 Johnson St, San Francisco, CA 94016" -230165,AAA Batteries (4-pack),1,2.99,07/07/19 17:05,"134 Church St, Boston, MA 02215" -230165,Bose SoundSport Headphones,1,99.99,07/07/19 17:05,"134 Church St, Boston, MA 02215" -230166,20in Monitor,1,109.99,07/05/19 21:43,"885 Sunset St, San Francisco, CA 94016" -230167,ThinkPad Laptop,1,999.99,07/31/19 10:12,"764 Jefferson St, New York City, NY 10001" -230168,Bose SoundSport Headphones,1,99.99,07/23/19 21:35,"245 South St, New York City, NY 10001" -230169,Wired Headphones,1,11.99,07/22/19 12:23,"185 Pine St, Dallas, TX 75001" -230170,Wired Headphones,1,11.99,07/28/19 00:41,"524 South St, Boston, MA 02215" -230171,Flatscreen TV,1,300,07/02/19 00:03,"270 10th St, Dallas, TX 75001" -230172,ThinkPad Laptop,1,999.99,07/02/19 23:29,"293 5th St, San Francisco, CA 94016" -230173,AAA Batteries (4-pack),2,2.99,07/21/19 23:02,"543 Center St, San Francisco, CA 94016" -230174,Apple Airpods Headphones,1,150,07/15/19 13:55,"40 River St, Seattle, WA 98101" -230175,AA Batteries (4-pack),2,3.84,07/27/19 08:38,"794 Madison St, Dallas, TX 75001" -230176,USB-C Charging Cable,1,11.95,07/01/19 12:45,"279 South St, Dallas, TX 75001" -230177,AAA Batteries (4-pack),2,2.99,07/11/19 20:24,"888 Cherry St, Austin, TX 73301" -230178,Apple Airpods Headphones,1,150,07/26/19 17:34,"246 Church St, Los Angeles, CA 90001" -230179,27in 4K Gaming Monitor,1,389.99,07/14/19 11:33,"10 Jackson St, San Francisco, CA 94016" -230180,Apple Airpods Headphones,1,150,07/12/19 14:05,"146 5th St, Seattle, WA 98101" -230181,AAA Batteries (4-pack),1,2.99,07/09/19 13:19,"977 6th St, Austin, TX 73301" -230182,Apple Airpods Headphones,1,150,07/18/19 20:09,"505 14th St, Los Angeles, CA 90001" -230183,Apple Airpods Headphones,1,150,07/19/19 18:45,"588 Hill St, Boston, MA 02215" -230184,Lightning Charging Cable,1,14.95,07/07/19 12:36,"190 14th St, New York City, NY 10001" -230184,34in Ultrawide Monitor,1,379.99,07/07/19 12:36,"190 14th St, New York City, NY 10001" -230185,Wired Headphones,1,11.99,07/11/19 14:09,"793 Maple St, Portland, ME 04101" -230186,Apple Airpods Headphones,1,150,07/14/19 17:52,"849 Highland St, Los Angeles, CA 90001" -230187,AA Batteries (4-pack),1,3.84,07/31/19 22:21,"619 North St, Boston, MA 02215" -230188,Wired Headphones,1,11.99,07/23/19 12:43,"741 River St, Boston, MA 02215" -230189,Google Phone,1,600,07/29/19 10:05,"242 Lake St, Los Angeles, CA 90001" -230189,USB-C Charging Cable,1,11.95,07/29/19 10:05,"242 Lake St, Los Angeles, CA 90001" -230190,Lightning Charging Cable,1,14.95,07/29/19 01:01,"140 Maple St, Los Angeles, CA 90001" -230191,Wired Headphones,1,11.99,07/08/19 10:30,"913 West St, Austin, TX 73301" -230192,Bose SoundSport Headphones,1,99.99,07/18/19 14:23,"866 2nd St, Portland, ME 04101" -230193,Vareebadd Phone,1,400,07/29/19 15:30,"734 South St, Austin, TX 73301" -230193,USB-C Charging Cable,1,11.95,07/29/19 15:30,"734 South St, Austin, TX 73301" -230194,34in Ultrawide Monitor,1,379.99,07/30/19 03:21,"667 River St, New York City, NY 10001" -230195,34in Ultrawide Monitor,1,379.99,07/04/19 19:20,"575 Jefferson St, San Francisco, CA 94016" -230196,27in 4K Gaming Monitor,1,389.99,07/31/19 20:45,"673 North St, New York City, NY 10001" -230197,iPhone,1,700,07/05/19 22:42,"856 Lake St, Portland, ME 04101" -230198,USB-C Charging Cable,1,11.95,07/12/19 21:06,"678 11th St, Seattle, WA 98101" -230199,Wired Headphones,1,11.99,07/04/19 16:31,"195 Spruce St, Portland, ME 04101" -230200,AA Batteries (4-pack),2,3.84,07/12/19 22:44,"261 Hickory St, Los Angeles, CA 90001" -230201,Wired Headphones,1,11.99,07/18/19 21:37,"172 West St, Los Angeles, CA 90001" -230202,Wired Headphones,1,11.99,07/10/19 13:41,"996 Forest St, Atlanta, GA 30301" -230203,Lightning Charging Cable,1,14.95,07/22/19 07:37,"70 7th St, Portland, OR 97035" -230204,34in Ultrawide Monitor,1,379.99,07/31/19 15:52,"871 Main St, San Francisco, CA 94016" -230205,Bose SoundSport Headphones,1,99.99,07/15/19 12:11,"325 Madison St, New York City, NY 10001" -230206,USB-C Charging Cable,1,11.95,07/15/19 16:40,"223 Jackson St, San Francisco, CA 94016" -230207,Apple Airpods Headphones,1,150,07/28/19 19:26,"851 Meadow St, Los Angeles, CA 90001" -230208,Lightning Charging Cable,1,14.95,07/28/19 20:27,"382 Willow St, Los Angeles, CA 90001" -230209,ThinkPad Laptop,1,999.99,07/08/19 16:24,"345 Spruce St, Boston, MA 02215" -230210,AA Batteries (4-pack),1,3.84,07/18/19 10:18,"745 Park St, Los Angeles, CA 90001" -230211,USB-C Charging Cable,2,11.95,07/30/19 13:03,"890 Adams St, New York City, NY 10001" -230212,AA Batteries (4-pack),2,3.84,07/23/19 00:25,"471 4th St, Los Angeles, CA 90001" -230213,AAA Batteries (4-pack),1,2.99,07/06/19 18:27,"121 Park St, Los Angeles, CA 90001" -230214,AAA Batteries (4-pack),1,2.99,07/12/19 07:38,"740 Adams St, Austin, TX 73301" -230215,USB-C Charging Cable,1,11.95,07/11/19 13:56,"326 Spruce St, New York City, NY 10001" -230216,Lightning Charging Cable,1,14.95,07/13/19 00:17,"717 8th St, Boston, MA 02215" -230217,iPhone,1,700,07/24/19 22:35,"579 Hickory St, Dallas, TX 75001" -230218,Wired Headphones,1,11.99,07/02/19 22:23,"537 Cedar St, Atlanta, GA 30301" -230219,AA Batteries (4-pack),1,3.84,07/16/19 12:54,"942 Park St, San Francisco, CA 94016" -230220,AA Batteries (4-pack),1,3.84,07/26/19 17:03,"628 Forest St, New York City, NY 10001" -230221,Bose SoundSport Headphones,1,99.99,07/02/19 15:55,"174 Meadow St, Portland, ME 04101" -230222,USB-C Charging Cable,1,11.95,07/14/19 21:05,"598 Elm St, Los Angeles, CA 90001" -230223,Apple Airpods Headphones,1,150,07/23/19 20:18,"472 Lake St, Los Angeles, CA 90001" -230224,Apple Airpods Headphones,1,150,07/29/19 22:19,"918 North St, San Francisco, CA 94016" -230225,ThinkPad Laptop,1,999.99,07/31/19 16:19,"291 9th St, Atlanta, GA 30301" -230226,Bose SoundSport Headphones,1,99.99,07/20/19 09:00,"788 Walnut St, Portland, ME 04101" -230227,AAA Batteries (4-pack),1,2.99,07/25/19 20:33,"702 1st St, San Francisco, CA 94016" -230228,Vareebadd Phone,1,400,07/30/19 10:43,"285 Johnson St, San Francisco, CA 94016" -230228,USB-C Charging Cable,1,11.95,07/30/19 10:43,"285 Johnson St, San Francisco, CA 94016" -230229,AA Batteries (4-pack),2,3.84,07/01/19 17:21,"139 Wilson St, Portland, OR 97035" -230230,Wired Headphones,1,11.99,07/09/19 10:48,"150 Madison St, Portland, OR 97035" -230231,Lightning Charging Cable,2,14.95,07/15/19 08:41,"650 Lincoln St, San Francisco, CA 94016" -230232,ThinkPad Laptop,1,999.99,07/20/19 19:12,"655 Center St, New York City, NY 10001" -230233,Lightning Charging Cable,1,14.95,07/13/19 12:49,"859 Forest St, Boston, MA 02215" -230234,Wired Headphones,1,11.99,07/19/19 11:34,"994 Lincoln St, San Francisco, CA 94016" -230235,AA Batteries (4-pack),1,3.84,07/22/19 14:07,"435 Sunset St, New York City, NY 10001" -230236,LG Washing Machine,1,600.0,07/08/19 23:50,"142 Sunset St, Seattle, WA 98101" -230237,Lightning Charging Cable,1,14.95,07/31/19 17:01,"193 Jackson St, Austin, TX 73301" -230238,34in Ultrawide Monitor,1,379.99,07/02/19 05:36,"813 Forest St, Dallas, TX 75001" -230239,Wired Headphones,1,11.99,07/20/19 10:14,"876 Lake St, San Francisco, CA 94016" -230240,iPhone,1,700,07/02/19 21:04,"860 Sunset St, Atlanta, GA 30301" -230241,Lightning Charging Cable,1,14.95,07/10/19 18:03,"695 Wilson St, Los Angeles, CA 90001" -230242,Bose SoundSport Headphones,1,99.99,07/24/19 18:09,"54 Chestnut St, Los Angeles, CA 90001" -230243,Bose SoundSport Headphones,1,99.99,07/22/19 11:06,"831 Pine St, Austin, TX 73301" -230244,USB-C Charging Cable,1,11.95,07/20/19 19:08,"816 Cedar St, Portland, OR 97035" -230245,AAA Batteries (4-pack),2,2.99,07/19/19 19:08,"527 5th St, Boston, MA 02215" -230246,Lightning Charging Cable,1,14.95,07/21/19 11:54,"198 9th St, San Francisco, CA 94016" -230247,USB-C Charging Cable,1,11.95,07/18/19 08:14,"832 Spruce St, Boston, MA 02215" -230248,Google Phone,1,600,07/07/19 16:13,"239 13th St, New York City, NY 10001" -230249,Apple Airpods Headphones,1,150,07/08/19 13:28,"91 Elm St, Austin, TX 73301" -230250,34in Ultrawide Monitor,1,379.99,07/15/19 18:11,"812 Adams St, Austin, TX 73301" -230251,Apple Airpods Headphones,1,150,07/18/19 18:28,"908 Walnut St, Los Angeles, CA 90001" -230252,Bose SoundSport Headphones,1,99.99,07/21/19 12:18,"483 14th St, New York City, NY 10001" -230253,Lightning Charging Cable,1,14.95,07/10/19 22:11,"440 South St, Boston, MA 02215" -230254,Lightning Charging Cable,1,14.95,07/20/19 20:07,"64 Walnut St, San Francisco, CA 94016" -230255,iPhone,1,700,07/02/19 14:33,"85 Lake St, New York City, NY 10001" -230256,Flatscreen TV,1,300,07/23/19 07:30,"26 Jackson St, Boston, MA 02215" -230257,Wired Headphones,1,11.99,07/30/19 10:21,"260 Cedar St, Los Angeles, CA 90001" -230258,Bose SoundSport Headphones,1,99.99,07/19/19 11:31,"508 Center St, Los Angeles, CA 90001" -230259,Wired Headphones,1,11.99,07/04/19 16:57,"11 7th St, San Francisco, CA 94016" -230260,34in Ultrawide Monitor,1,379.99,07/30/19 21:43,"998 Washington St, Los Angeles, CA 90001" -230261,Lightning Charging Cable,1,14.95,07/15/19 09:16,"978 Dogwood St, New York City, NY 10001" -230262,34in Ultrawide Monitor,1,379.99,07/25/19 22:21,"216 Hill St, San Francisco, CA 94016" -230263,Lightning Charging Cable,1,14.95,07/21/19 12:22,"422 Pine St, Seattle, WA 98101" -230264,AAA Batteries (4-pack),2,2.99,07/18/19 08:55,"184 Church St, Los Angeles, CA 90001" -230265,USB-C Charging Cable,1,11.95,07/11/19 15:57,"900 5th St, Seattle, WA 98101" -230266,iPhone,1,700,07/03/19 18:35,"792 Hickory St, Dallas, TX 75001" -230267,AA Batteries (4-pack),3,3.84,07/19/19 18:57,"410 Dogwood St, Boston, MA 02215" -230268,Bose SoundSport Headphones,1,99.99,07/12/19 09:47,"536 Meadow St, Atlanta, GA 30301" -230269,AAA Batteries (4-pack),1,2.99,07/30/19 11:34,"139 Center St, Portland, ME 04101" -230270,AAA Batteries (4-pack),1,2.99,07/02/19 22:13,"970 Spruce St, Atlanta, GA 30301" -230271,AA Batteries (4-pack),1,3.84,07/07/19 13:39,"62 Johnson St, San Francisco, CA 94016" -230272,AA Batteries (4-pack),1,3.84,07/26/19 17:51,"580 10th St, Atlanta, GA 30301" -230273,Apple Airpods Headphones,1,150,07/28/19 11:20,"311 11th St, Seattle, WA 98101" -230274,Lightning Charging Cable,1,14.95,07/02/19 09:26,"823 River St, Los Angeles, CA 90001" -230275,Bose SoundSport Headphones,1,99.99,07/27/19 19:18,"529 Park St, San Francisco, CA 94016" -230276,Wired Headphones,2,11.99,07/09/19 22:13,"1 River St, Los Angeles, CA 90001" -230277,Lightning Charging Cable,1,14.95,07/04/19 14:59,"107 Chestnut St, Austin, TX 73301" -230278,USB-C Charging Cable,1,11.95,07/12/19 17:01,"232 8th St, Seattle, WA 98101" -230279,AA Batteries (4-pack),1,3.84,07/05/19 20:54,"807 1st St, Los Angeles, CA 90001" -230280,Bose SoundSport Headphones,1,99.99,07/29/19 21:47,"831 Hickory St, Los Angeles, CA 90001" -230281,USB-C Charging Cable,1,11.95,07/10/19 16:57,"285 Walnut St, Atlanta, GA 30301" -230282,Wired Headphones,2,11.99,07/07/19 10:20,"409 Lake St, New York City, NY 10001" -230283,ThinkPad Laptop,1,999.99,07/11/19 20:53,"308 Dogwood St, Los Angeles, CA 90001" -230284,Wired Headphones,1,11.99,07/12/19 09:58,"864 2nd St, San Francisco, CA 94016" -230285,34in Ultrawide Monitor,1,379.99,07/18/19 14:53,"918 Jackson St, New York City, NY 10001" -230286,USB-C Charging Cable,1,11.95,07/22/19 12:07,"895 2nd St, San Francisco, CA 94016" -230287,Bose SoundSport Headphones,1,99.99,07/31/19 04:03,"583 Sunset St, San Francisco, CA 94016" -230288,AAA Batteries (4-pack),1,2.99,07/25/19 23:10,"120 Pine St, Boston, MA 02215" -230289,Apple Airpods Headphones,1,150,07/17/19 23:15,"719 Highland St, San Francisco, CA 94016" -230290,AA Batteries (4-pack),1,3.84,07/08/19 19:37,"986 Cherry St, Seattle, WA 98101" -230291,34in Ultrawide Monitor,1,379.99,07/09/19 12:27,"694 Pine St, Boston, MA 02215" -230292,LG Washing Machine,1,600.0,07/17/19 17:44,"678 Jefferson St, New York City, NY 10001" -230293,Lightning Charging Cable,1,14.95,07/19/19 10:16,"267 7th St, Los Angeles, CA 90001" -230294,34in Ultrawide Monitor,1,379.99,07/03/19 17:17,"943 Sunset St, Boston, MA 02215" -230295,AAA Batteries (4-pack),1,2.99,07/29/19 18:27,"479 Chestnut St, Atlanta, GA 30301" -230296,Google Phone,1,600,07/30/19 23:41,"128 11th St, San Francisco, CA 94016" -230296,Wired Headphones,1,11.99,07/30/19 23:41,"128 11th St, San Francisco, CA 94016" -230297,AAA Batteries (4-pack),1,2.99,07/01/19 18:27,"324 Lake St, San Francisco, CA 94016" -230298,USB-C Charging Cable,1,11.95,07/27/19 22:06,"87 2nd St, New York City, NY 10001" -230299,Wired Headphones,1,11.99,07/12/19 20:35,"991 Dogwood St, San Francisco, CA 94016" -230300,AA Batteries (4-pack),1,3.84,07/28/19 21:11,"749 Willow St, San Francisco, CA 94016" -230301,27in FHD Monitor,1,149.99,07/22/19 16:37,"429 12th St, Portland, OR 97035" -230302,27in 4K Gaming Monitor,1,389.99,07/01/19 20:45,"344 4th St, Seattle, WA 98101" -230303,Bose SoundSport Headphones,1,99.99,07/01/19 13:47,"283 12th St, New York City, NY 10001" -230304,Wired Headphones,1,11.99,07/02/19 15:27,"342 8th St, Los Angeles, CA 90001" -230305,AAA Batteries (4-pack),1,2.99,07/02/19 17:11,"932 Adams St, Dallas, TX 75001" -230306,Wired Headphones,1,11.99,07/19/19 09:58,"20 North St, San Francisco, CA 94016" -230307,AAA Batteries (4-pack),1,2.99,07/08/19 13:13,"111 Church St, Los Angeles, CA 90001" -230308,AA Batteries (4-pack),2,3.84,07/30/19 00:48,"361 West St, Portland, ME 04101" -230309,iPhone,1,700,07/05/19 11:36,"40 South St, New York City, NY 10001" -230310,ThinkPad Laptop,1,999.99,07/22/19 18:24,"811 Hickory St, Los Angeles, CA 90001" -230311,USB-C Charging Cable,1,11.95,07/28/19 12:59,"112 Elm St, Los Angeles, CA 90001" -230312,AAA Batteries (4-pack),1,2.99,07/28/19 21:31,"809 Chestnut St, Portland, OR 97035" -230313,Bose SoundSport Headphones,1,99.99,07/17/19 00:39,"478 5th St, Los Angeles, CA 90001" -230314,AAA Batteries (4-pack),1,2.99,07/18/19 17:12,"28 11th St, Los Angeles, CA 90001" -230315,AAA Batteries (4-pack),1,2.99,07/17/19 10:11,"894 2nd St, Boston, MA 02215" -230316,Bose SoundSport Headphones,1,99.99,07/11/19 08:33,"291 North St, New York City, NY 10001" -230317,Bose SoundSport Headphones,1,99.99,07/25/19 20:30,"702 Lincoln St, San Francisco, CA 94016" -230318,34in Ultrawide Monitor,1,379.99,07/13/19 16:51,"985 Hill St, Dallas, TX 75001" -230319,AAA Batteries (4-pack),1,2.99,07/21/19 18:00,"342 Adams St, San Francisco, CA 94016" -230320,Wired Headphones,1,11.99,07/21/19 22:54,"919 Forest St, San Francisco, CA 94016" -230321,USB-C Charging Cable,1,11.95,07/19/19 15:40,"294 Forest St, San Francisco, CA 94016" -230322,AAA Batteries (4-pack),2,2.99,07/08/19 23:48,"539 Dogwood St, Los Angeles, CA 90001" -230323,USB-C Charging Cable,1,11.95,07/28/19 20:56,"400 Chestnut St, Los Angeles, CA 90001" -230324,USB-C Charging Cable,1,11.95,07/29/19 20:41,"408 Sunset St, San Francisco, CA 94016" -230325,Bose SoundSport Headphones,1,99.99,07/18/19 12:04,"728 Adams St, New York City, NY 10001" -230326,AA Batteries (4-pack),1,3.84,07/02/19 09:03,"579 Sunset St, Dallas, TX 75001" -230327,Bose SoundSport Headphones,1,99.99,07/11/19 14:49,"13 Lakeview St, Seattle, WA 98101" -230328,AAA Batteries (4-pack),1,2.99,07/26/19 17:12,"9 Washington St, Portland, OR 97035" -230329,AAA Batteries (4-pack),1,2.99,07/18/19 20:50,"315 Church St, New York City, NY 10001" -230330,Lightning Charging Cable,1,14.95,07/10/19 12:52,"841 Adams St, San Francisco, CA 94016" -230331,20in Monitor,1,109.99,07/26/19 19:32,"356 Willow St, Los Angeles, CA 90001" -230332,Google Phone,1,600,07/23/19 15:11,"177 Elm St, Los Angeles, CA 90001" -230333,Flatscreen TV,1,300,07/10/19 21:55,"458 Park St, Austin, TX 73301" -230334,ThinkPad Laptop,1,999.99,07/22/19 15:24,"220 Washington St, Portland, OR 97035" -230335,iPhone,1,700,07/03/19 20:19,"164 Main St, New York City, NY 10001" -230335,Lightning Charging Cable,1,14.95,07/03/19 20:19,"164 Main St, New York City, NY 10001" -230336,27in FHD Monitor,1,149.99,07/27/19 12:06,"262 Church St, Austin, TX 73301" -230337,iPhone,1,700,07/18/19 22:10,"866 9th St, Portland, OR 97035" -230337,Lightning Charging Cable,1,14.95,07/18/19 22:10,"866 9th St, Portland, OR 97035" -230338,AA Batteries (4-pack),2,3.84,07/11/19 18:33,"229 8th St, New York City, NY 10001" -230339,AAA Batteries (4-pack),3,2.99,07/12/19 22:50,"66 5th St, Los Angeles, CA 90001" -230340,Apple Airpods Headphones,1,150,07/08/19 22:45,"689 River St, San Francisco, CA 94016" -230341,USB-C Charging Cable,1,11.95,07/06/19 21:21,"752 Cherry St, New York City, NY 10001" -230342,USB-C Charging Cable,2,11.95,07/01/19 19:41,"248 Lincoln St, San Francisco, CA 94016" -230342,Lightning Charging Cable,1,14.95,07/01/19 19:41,"248 Lincoln St, San Francisco, CA 94016" -230343,LG Dryer,1,600.0,07/10/19 14:23,"546 Chestnut St, Atlanta, GA 30301" -230344,iPhone,1,700,07/24/19 19:07,"127 Dogwood St, Seattle, WA 98101" -230345,USB-C Charging Cable,1,11.95,07/24/19 17:31,"253 Ridge St, Portland, OR 97035" -230346,Bose SoundSport Headphones,1,99.99,07/19/19 09:15,"721 Maple St, Atlanta, GA 30301" -230347,Lightning Charging Cable,1,14.95,07/05/19 15:11,"877 Maple St, Atlanta, GA 30301" -230348,AA Batteries (4-pack),1,3.84,07/22/19 12:06,"210 West St, San Francisco, CA 94016" -230349,Lightning Charging Cable,1,14.95,07/05/19 16:42,"262 Spruce St, San Francisco, CA 94016" -230350,USB-C Charging Cable,1,11.95,07/25/19 20:00,"965 Willow St, New York City, NY 10001" -230351,Bose SoundSport Headphones,1,99.99,07/22/19 14:45,"775 2nd St, Dallas, TX 75001" -230352,AAA Batteries (4-pack),2,2.99,07/28/19 16:59,"833 11th St, San Francisco, CA 94016" -230353,AA Batteries (4-pack),3,3.84,07/07/19 22:43,"509 Spruce St, San Francisco, CA 94016" -230354,Google Phone,1,600,07/25/19 14:18,"430 13th St, Austin, TX 73301" -230354,USB-C Charging Cable,1,11.95,07/25/19 14:18,"430 13th St, Austin, TX 73301" -230355,AA Batteries (4-pack),2,3.84,07/03/19 16:37,"849 Maple St, Boston, MA 02215" -230356,Apple Airpods Headphones,1,150,07/21/19 20:10,"134 5th St, Dallas, TX 75001" -230357,USB-C Charging Cable,1,11.95,07/15/19 23:51,"265 Maple St, Dallas, TX 75001" -230358,Google Phone,1,600,07/26/19 21:22,"671 Washington St, Los Angeles, CA 90001" -230359,Wired Headphones,1,11.99,07/20/19 18:58,"259 Jefferson St, Los Angeles, CA 90001" -230360,Bose SoundSport Headphones,1,99.99,07/02/19 17:45,"814 Dogwood St, San Francisco, CA 94016" -230361,Wired Headphones,1,11.99,07/26/19 14:16,"214 Washington St, Boston, MA 02215" -230362,27in 4K Gaming Monitor,1,389.99,07/20/19 10:17,"515 Sunset St, San Francisco, CA 94016" -230363,AA Batteries (4-pack),1,3.84,07/18/19 22:44,"797 Dogwood St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -230364,AAA Batteries (4-pack),1,2.99,07/22/19 11:04,"732 Spruce St, San Francisco, CA 94016" -230365,ThinkPad Laptop,1,999.99,07/21/19 13:04,"970 Church St, Austin, TX 73301" -230366,USB-C Charging Cable,1,11.95,07/21/19 13:56,"183 Dogwood St, Boston, MA 02215" -230367,AA Batteries (4-pack),1,3.84,07/17/19 20:43,"597 Forest St, San Francisco, CA 94016" -230368,Bose SoundSport Headphones,1,99.99,07/14/19 12:55,"248 Hickory St, San Francisco, CA 94016" -230369,Apple Airpods Headphones,1,150,07/09/19 11:42,"44 Main St, New York City, NY 10001" -230369,27in 4K Gaming Monitor,1,389.99,07/09/19 11:42,"44 Main St, New York City, NY 10001" -230370,AA Batteries (4-pack),1,3.84,07/26/19 11:22,"865 Elm St, Los Angeles, CA 90001" -230371,Lightning Charging Cable,1,14.95,07/31/19 21:42,"615 Chestnut St, Seattle, WA 98101" -230372,Apple Airpods Headphones,1,150,07/09/19 12:04,"460 8th St, Los Angeles, CA 90001" -230373,Bose SoundSport Headphones,1,99.99,07/19/19 18:00,"489 Dogwood St, Dallas, TX 75001" -230374,AA Batteries (4-pack),1,3.84,07/21/19 14:04,"193 Highland St, Portland, OR 97035" -230375,ThinkPad Laptop,1,999.99,07/20/19 17:26,"260 Adams St, Atlanta, GA 30301" -230376,AAA Batteries (4-pack),1,2.99,07/16/19 11:21,"868 Hill St, New York City, NY 10001" -230377,Lightning Charging Cable,1,14.95,07/02/19 00:46,"727 Lincoln St, New York City, NY 10001" -230378,Wired Headphones,1,11.99,07/05/19 18:00,"850 Lincoln St, Boston, MA 02215" -230379,USB-C Charging Cable,1,11.95,07/21/19 09:47,"428 Highland St, Seattle, WA 98101" -230380,USB-C Charging Cable,1,11.95,07/14/19 16:24,"586 Lakeview St, Dallas, TX 75001" -230381,AAA Batteries (4-pack),1,2.99,07/19/19 10:27,"583 6th St, Portland, OR 97035" -230382,AA Batteries (4-pack),1,3.84,07/16/19 22:41,"826 Washington St, Los Angeles, CA 90001" -230383,27in FHD Monitor,1,149.99,07/15/19 21:19,"74 Jefferson St, Boston, MA 02215" -230384,Bose SoundSport Headphones,1,99.99,07/24/19 13:32,"103 7th St, Seattle, WA 98101" -230385,USB-C Charging Cable,1,11.95,07/28/19 15:13,"541 9th St, San Francisco, CA 94016" -230386,iPhone,1,700,07/04/19 11:41,"276 Hickory St, San Francisco, CA 94016" -230387,Lightning Charging Cable,1,14.95,07/19/19 23:33,"465 Sunset St, San Francisco, CA 94016" -230388,27in 4K Gaming Monitor,1,389.99,07/25/19 15:52,"176 Pine St, New York City, NY 10001" -230389,USB-C Charging Cable,1,11.95,07/11/19 07:57,"328 Johnson St, Los Angeles, CA 90001" -230390,Wired Headphones,1,11.99,07/11/19 20:20,"820 5th St, San Francisco, CA 94016" -230391,Lightning Charging Cable,1,14.95,07/13/19 09:00,"219 River St, San Francisco, CA 94016" -230392,AA Batteries (4-pack),1,3.84,07/12/19 13:24,"345 Cedar St, Atlanta, GA 30301" -230393,Flatscreen TV,1,300,07/18/19 16:01,"607 Forest St, Austin, TX 73301" -230394,Lightning Charging Cable,2,14.95,07/19/19 09:26,"454 Cedar St, Seattle, WA 98101" -230395,Lightning Charging Cable,2,14.95,07/23/19 15:43,"296 9th St, Seattle, WA 98101" -230396,Wired Headphones,1,11.99,07/06/19 19:20,"4 Spruce St, Atlanta, GA 30301" -230397,34in Ultrawide Monitor,1,379.99,07/19/19 14:54,"393 Hill St, Portland, OR 97035" -230398,Apple Airpods Headphones,1,150,07/24/19 21:00,"336 Johnson St, New York City, NY 10001" -230399,Lightning Charging Cable,1,14.95,07/11/19 16:26,"701 Lakeview St, San Francisco, CA 94016" -,,,,, -230400,Macbook Pro Laptop,1,1700,07/04/19 05:58,"531 Ridge St, Dallas, TX 75001" -230401,AAA Batteries (4-pack),1,2.99,07/30/19 17:14,"37 Lakeview St, San Francisco, CA 94016" -230402,AA Batteries (4-pack),1,3.84,07/05/19 08:00,"421 Walnut St, San Francisco, CA 94016" -230403,USB-C Charging Cable,1,11.95,07/26/19 20:34,"123 Adams St, San Francisco, CA 94016" -230404,iPhone,1,700,07/07/19 12:21,"880 Walnut St, Seattle, WA 98101" -230404,Lightning Charging Cable,1,14.95,07/07/19 12:21,"880 Walnut St, Seattle, WA 98101" -230405,Lightning Charging Cable,1,14.95,07/03/19 11:20,"494 14th St, Los Angeles, CA 90001" -230406,Lightning Charging Cable,1,14.95,07/02/19 01:16,"736 Park St, San Francisco, CA 94016" -230407,Lightning Charging Cable,1,14.95,07/06/19 22:13,"177 Ridge St, San Francisco, CA 94016" -230408,AAA Batteries (4-pack),1,2.99,07/05/19 12:16,"252 5th St, Boston, MA 02215" -230409,27in FHD Monitor,1,149.99,07/04/19 11:45,"874 Lincoln St, Dallas, TX 75001" -230410,Wired Headphones,1,11.99,07/17/19 20:51,"388 South St, Austin, TX 73301" -230411,AAA Batteries (4-pack),1,2.99,07/05/19 18:17,"566 Elm St, Dallas, TX 75001" -230412,Google Phone,1,600,07/26/19 16:30,"803 5th St, Portland, OR 97035" -230413,USB-C Charging Cable,1,11.95,07/14/19 10:56,"85 Park St, Boston, MA 02215" -230414,Lightning Charging Cable,1,14.95,07/04/19 14:11,"284 Willow St, Austin, TX 73301" -230415,AAA Batteries (4-pack),1,2.99,07/22/19 10:57,"639 West St, New York City, NY 10001" -230416,Apple Airpods Headphones,1,150,07/21/19 10:31,"959 1st St, San Francisco, CA 94016" -230417,Apple Airpods Headphones,1,150,07/15/19 07:46,"615 Elm St, San Francisco, CA 94016" -230418,USB-C Charging Cable,1,11.95,07/29/19 19:53,"3 13th St, New York City, NY 10001" -230419,Lightning Charging Cable,1,14.95,07/31/19 16:25,"1 Adams St, Seattle, WA 98101" -230420,Flatscreen TV,1,300,07/31/19 15:18,"104 Church St, Seattle, WA 98101" -230421,USB-C Charging Cable,1,11.95,07/14/19 12:17,"745 Elm St, Los Angeles, CA 90001" -230422,Flatscreen TV,1,300,07/01/19 21:42,"94 8th St, Seattle, WA 98101" -230423,Lightning Charging Cable,1,14.95,07/11/19 07:31,"544 13th St, Boston, MA 02215" -230424,AAA Batteries (4-pack),1,2.99,07/07/19 14:52,"857 Chestnut St, Seattle, WA 98101" -230425,Bose SoundSport Headphones,1,99.99,07/22/19 22:08,"113 8th St, Boston, MA 02215" -230426,Lightning Charging Cable,1,14.95,07/31/19 06:51,"686 8th St, Los Angeles, CA 90001" -230427,Lightning Charging Cable,1,14.95,07/02/19 12:13,"865 Meadow St, San Francisco, CA 94016" -230428,Apple Airpods Headphones,1,150,07/16/19 11:09,"538 Dogwood St, Los Angeles, CA 90001" -230429,27in FHD Monitor,1,149.99,07/09/19 22:20,"405 Walnut St, San Francisco, CA 94016" -230430,34in Ultrawide Monitor,1,379.99,07/21/19 11:39,"672 Center St, Los Angeles, CA 90001" -230431,USB-C Charging Cable,1,11.95,07/03/19 11:40,"666 Willow St, Los Angeles, CA 90001" -230432,Vareebadd Phone,1,400,07/23/19 17:32,"414 West St, Los Angeles, CA 90001" -230432,USB-C Charging Cable,1,11.95,07/23/19 17:32,"414 West St, Los Angeles, CA 90001" -230433,iPhone,1,700,07/01/19 16:15,"554 Ridge St, Atlanta, GA 30301" -230433,Lightning Charging Cable,1,14.95,07/01/19 16:15,"554 Ridge St, Atlanta, GA 30301" -230434,Flatscreen TV,1,300,07/22/19 14:53,"393 4th St, San Francisco, CA 94016" -230435,Google Phone,1,600,07/22/19 11:12,"641 Maple St, New York City, NY 10001" -230436,Flatscreen TV,1,300,07/22/19 20:40,"160 North St, Portland, OR 97035" -230437,AAA Batteries (4-pack),1,2.99,07/19/19 19:09,"824 Sunset St, Dallas, TX 75001" -230438,27in FHD Monitor,1,149.99,07/10/19 15:27,"127 Ridge St, Dallas, TX 75001" -230439,Macbook Pro Laptop,1,1700,07/31/19 12:07,"144 2nd St, Seattle, WA 98101" -230440,Lightning Charging Cable,1,14.95,07/02/19 11:53,"361 Forest St, Portland, ME 04101" -230441,Lightning Charging Cable,1,14.95,07/13/19 09:01,"699 8th St, Austin, TX 73301" -230442,USB-C Charging Cable,1,11.95,07/01/19 10:16,"770 8th St, San Francisco, CA 94016" -230443,USB-C Charging Cable,1,11.95,07/13/19 19:01,"946 Cherry St, San Francisco, CA 94016" -230444,Apple Airpods Headphones,1,150,07/30/19 11:58,"250 Highland St, Portland, OR 97035" -230445,AAA Batteries (4-pack),1,2.99,07/03/19 22:54,"624 13th St, Dallas, TX 75001" -230446,USB-C Charging Cable,1,11.95,07/02/19 15:38,"366 9th St, Boston, MA 02215" -230447,Bose SoundSport Headphones,1,99.99,07/28/19 22:41,"160 Main St, New York City, NY 10001" -230448,iPhone,1,700,07/16/19 08:43,"96 Sunset St, Dallas, TX 75001" -230449,Apple Airpods Headphones,1,150,07/30/19 21:17,"514 4th St, Los Angeles, CA 90001" -230450,Lightning Charging Cable,1,14.95,07/31/19 21:51,"664 Meadow St, Boston, MA 02215" -230451,Lightning Charging Cable,1,14.95,07/17/19 19:55,"510 Cedar St, Los Angeles, CA 90001" -230452,Wired Headphones,1,11.99,07/11/19 18:35,"938 Dogwood St, Los Angeles, CA 90001" -230453,Lightning Charging Cable,1,14.95,07/15/19 13:50,"246 2nd St, Los Angeles, CA 90001" -230454,Apple Airpods Headphones,1,150,07/18/19 15:09,"491 South St, San Francisco, CA 94016" -230455,USB-C Charging Cable,1,11.95,07/13/19 10:59,"646 South St, San Francisco, CA 94016" -230456,27in 4K Gaming Monitor,1,389.99,07/22/19 10:29,"574 2nd St, Los Angeles, CA 90001" -230457,AA Batteries (4-pack),2,3.84,07/01/19 18:37,"812 Main St, San Francisco, CA 94016" -230458,Apple Airpods Headphones,1,150,07/29/19 23:32,"128 1st St, San Francisco, CA 94016" -230459,AA Batteries (4-pack),2,3.84,07/18/19 11:58,"66 Chestnut St, Seattle, WA 98101" -230460,USB-C Charging Cable,1,11.95,07/06/19 16:59,"219 Lake St, San Francisco, CA 94016" -230461,34in Ultrawide Monitor,1,379.99,07/29/19 13:55,"805 West St, San Francisco, CA 94016" -230462,AAA Batteries (4-pack),5,2.99,07/07/19 18:06,"719 11th St, San Francisco, CA 94016" -230463,Lightning Charging Cable,1,14.95,07/23/19 23:00,"338 Jefferson St, Seattle, WA 98101" -230464,AA Batteries (4-pack),2,3.84,07/13/19 09:47,"239 North St, New York City, NY 10001" -230465,AA Batteries (4-pack),1,3.84,07/05/19 20:08,"720 Wilson St, New York City, NY 10001" -230466,ThinkPad Laptop,1,999.99,07/17/19 19:59,"637 West St, Boston, MA 02215" -230467,Wired Headphones,1,11.99,07/01/19 12:55,"678 Center St, Seattle, WA 98101" -230468,USB-C Charging Cable,1,11.95,07/08/19 15:14,"719 Willow St, San Francisco, CA 94016" -230469,Google Phone,1,600,07/05/19 16:04,"859 Maple St, San Francisco, CA 94016" -230470,Wired Headphones,1,11.99,07/20/19 17:23,"233 5th St, Boston, MA 02215" -230471,Lightning Charging Cable,2,14.95,07/27/19 12:33,"353 Ridge St, San Francisco, CA 94016" -230472,AAA Batteries (4-pack),1,2.99,07/09/19 08:44,"595 7th St, New York City, NY 10001" -230473,AAA Batteries (4-pack),4,2.99,07/16/19 14:20,"86 Wilson St, Austin, TX 73301" -230474,27in FHD Monitor,1,149.99,07/31/19 14:35,"658 Forest St, Dallas, TX 75001" -230475,iPhone,1,700,07/16/19 11:09,"250 Pine St, San Francisco, CA 94016" -230475,Lightning Charging Cable,1,14.95,07/16/19 11:09,"250 Pine St, San Francisco, CA 94016" -230476,Bose SoundSport Headphones,1,99.99,07/01/19 14:15,"398 Hickory St, San Francisco, CA 94016" -230477,Flatscreen TV,1,300,07/18/19 09:20,"876 West St, New York City, NY 10001" -230478,20in Monitor,1,109.99,07/30/19 09:45,"179 Hickory St, Austin, TX 73301" -230479,Lightning Charging Cable,1,14.95,07/16/19 15:28,"218 Meadow St, San Francisco, CA 94016" -230480,Google Phone,1,600,07/15/19 14:47,"779 Main St, Boston, MA 02215" -230481,USB-C Charging Cable,1,11.95,07/10/19 20:28,"523 4th St, San Francisco, CA 94016" -230482,Wired Headphones,1,11.99,07/14/19 15:46,"242 Cedar St, Seattle, WA 98101" -230483,USB-C Charging Cable,1,11.95,07/28/19 19:00,"279 12th St, Seattle, WA 98101" -230484,Wired Headphones,1,11.99,07/02/19 22:40,"116 Madison St, Boston, MA 02215" -230485,Apple Airpods Headphones,1,150,07/15/19 17:08,"294 Madison St, Atlanta, GA 30301" -230485,ThinkPad Laptop,1,999.99,07/15/19 17:08,"294 Madison St, Atlanta, GA 30301" -230486,Flatscreen TV,1,300,07/14/19 21:15,"744 Madison St, San Francisco, CA 94016" -230487,Apple Airpods Headphones,1,150,07/14/19 16:27,"737 2nd St, San Francisco, CA 94016" -230488,AA Batteries (4-pack),1,3.84,07/15/19 16:33,"142 Lincoln St, San Francisco, CA 94016" -230489,Lightning Charging Cable,1,14.95,07/24/19 16:25,"103 Jefferson St, Boston, MA 02215" -230490,Bose SoundSport Headphones,1,99.99,07/14/19 23:29,"435 Ridge St, Austin, TX 73301" -230491,34in Ultrawide Monitor,1,379.99,07/30/19 18:53,"482 14th St, Los Angeles, CA 90001" -230492,AA Batteries (4-pack),1,3.84,07/03/19 15:15,"575 South St, Los Angeles, CA 90001" -230493,Lightning Charging Cable,1,14.95,07/19/19 16:24,"32 11th St, Dallas, TX 75001" -230494,Bose SoundSport Headphones,1,99.99,07/09/19 20:55,"934 Park St, San Francisco, CA 94016" -230495,Google Phone,1,600,07/06/19 21:05,"176 Highland St, Portland, ME 04101" -230496,Google Phone,1,600,08/01/19 01:36,"402 7th St, Portland, ME 04101" -230497,27in FHD Monitor,1,149.99,07/12/19 10:19,"171 Park St, Boston, MA 02215" -230498,AAA Batteries (4-pack),1,2.99,07/16/19 19:29,"995 Lincoln St, Boston, MA 02215" -230499,Wired Headphones,1,11.99,07/17/19 19:16,"981 Hickory St, San Francisco, CA 94016" -230500,Apple Airpods Headphones,1,150,07/31/19 22:58,"765 Church St, Los Angeles, CA 90001" -230501,Macbook Pro Laptop,1,1700,07/24/19 13:14,"421 4th St, San Francisco, CA 94016" -230502,AAA Batteries (4-pack),1,2.99,07/15/19 16:41,"15 Maple St, San Francisco, CA 94016" -230503,Lightning Charging Cable,2,14.95,07/08/19 08:09,"260 2nd St, Seattle, WA 98101" -230504,Bose SoundSport Headphones,1,99.99,07/03/19 16:27,"694 5th St, San Francisco, CA 94016" -230505,34in Ultrawide Monitor,1,379.99,07/22/19 11:37,"472 Spruce St, San Francisco, CA 94016" -230506,AAA Batteries (4-pack),1,2.99,07/30/19 16:03,"931 4th St, Austin, TX 73301" -230507,20in Monitor,1,109.99,07/09/19 22:37,"805 Adams St, New York City, NY 10001" -230508,Lightning Charging Cable,1,14.95,07/15/19 14:40,"696 Highland St, New York City, NY 10001" -230509,AAA Batteries (4-pack),2,2.99,07/05/19 17:52,"650 Meadow St, New York City, NY 10001" -230510,AA Batteries (4-pack),1,3.84,07/25/19 20:15,"174 8th St, Boston, MA 02215" -230511,ThinkPad Laptop,1,999.99,07/27/19 13:24,"977 Main St, Los Angeles, CA 90001" -230512,Lightning Charging Cable,1,14.95,07/04/19 19:54,"107 Lincoln St, Seattle, WA 98101" -230513,Wired Headphones,1,11.99,07/25/19 22:43,"220 Dogwood St, San Francisco, CA 94016" -230514,AAA Batteries (4-pack),1,2.99,07/14/19 17:39,"628 Adams St, Dallas, TX 75001" -230515,Lightning Charging Cable,1,14.95,07/24/19 16:48,"512 Lincoln St, Portland, OR 97035" -230516,Lightning Charging Cable,1,14.95,07/14/19 14:32,"679 Chestnut St, San Francisco, CA 94016" -230517,34in Ultrawide Monitor,1,379.99,07/14/19 08:21,"523 River St, Dallas, TX 75001" -230518,AAA Batteries (4-pack),1,2.99,07/09/19 01:50,"836 Lake St, New York City, NY 10001" -230519,20in Monitor,1,109.99,07/10/19 17:50,"760 Pine St, Dallas, TX 75001" -230520,AAA Batteries (4-pack),2,2.99,07/02/19 09:22,"689 12th St, New York City, NY 10001" -230521,Lightning Charging Cable,1,14.95,07/30/19 15:06,"105 Pine St, New York City, NY 10001" -230522,AAA Batteries (4-pack),3,2.99,07/18/19 12:08,"438 Madison St, San Francisco, CA 94016" -230523,27in 4K Gaming Monitor,1,389.99,07/06/19 07:46,"631 Willow St, San Francisco, CA 94016" -230524,Apple Airpods Headphones,1,150,07/12/19 17:36,"674 Madison St, San Francisco, CA 94016" -230525,USB-C Charging Cable,1,11.95,07/10/19 15:15,"362 9th St, Austin, TX 73301" -230526,Apple Airpods Headphones,1,150,07/20/19 21:22,"746 2nd St, Los Angeles, CA 90001" -230527,USB-C Charging Cable,1,11.95,07/04/19 08:20,"755 Cherry St, San Francisco, CA 94016" -230528,Google Phone,1,600,07/04/19 16:39,"752 Elm St, Austin, TX 73301" -230528,Wired Headphones,1,11.99,07/04/19 16:39,"752 Elm St, Austin, TX 73301" -230529,USB-C Charging Cable,1,11.95,07/27/19 09:12,"459 Johnson St, Austin, TX 73301" -230530,Google Phone,1,600,07/16/19 12:39,"782 7th St, Austin, TX 73301" -230531,AAA Batteries (4-pack),1,2.99,07/17/19 11:36,"435 Main St, New York City, NY 10001" -230532,Apple Airpods Headphones,1,150,07/08/19 07:09,"6 Chestnut St, Atlanta, GA 30301" -230533,Apple Airpods Headphones,1,150,07/14/19 23:03,"685 Maple St, Seattle, WA 98101" -230534,Apple Airpods Headphones,1,150,07/13/19 01:40,"270 Chestnut St, Atlanta, GA 30301" -230535,Apple Airpods Headphones,1,150,07/21/19 16:47,"739 Lincoln St, Dallas, TX 75001" -230536,27in 4K Gaming Monitor,1,389.99,07/06/19 18:54,"603 Center St, San Francisco, CA 94016" -230537,AAA Batteries (4-pack),1,2.99,07/28/19 00:47,"733 Hickory St, Dallas, TX 75001" -230538,AA Batteries (4-pack),1,3.84,07/18/19 00:39,"353 West St, Portland, OR 97035" -230539,Wired Headphones,1,11.99,07/14/19 02:12,"422 7th St, Boston, MA 02215" -230540,Wired Headphones,1,11.99,07/22/19 12:37,"581 Maple St, San Francisco, CA 94016" -230541,AAA Batteries (4-pack),3,2.99,07/07/19 11:57,"102 Adams St, San Francisco, CA 94016" -230542,Lightning Charging Cable,1,14.95,07/01/19 20:18,"920 Park St, San Francisco, CA 94016" -230543,AA Batteries (4-pack),2,3.84,07/24/19 21:38,"85 Meadow St, New York City, NY 10001" -230544,ThinkPad Laptop,1,999.99,07/04/19 18:59,"524 Lincoln St, Los Angeles, CA 90001" -230545,AA Batteries (4-pack),1,3.84,07/26/19 05:10,"718 Johnson St, Portland, ME 04101" -230546,AA Batteries (4-pack),1,3.84,07/12/19 12:10,"33 Main St, Boston, MA 02215" -230547,AA Batteries (4-pack),1,3.84,07/21/19 10:38,"58 Center St, Atlanta, GA 30301" -230548,USB-C Charging Cable,1,11.95,07/04/19 18:50,"104 South St, Los Angeles, CA 90001" -230549,Lightning Charging Cable,1,14.95,07/02/19 22:05,"397 Lincoln St, San Francisco, CA 94016" -230550,Google Phone,1,600,07/22/19 13:47,"66 Center St, New York City, NY 10001" -230550,Wired Headphones,1,11.99,07/22/19 13:47,"66 Center St, New York City, NY 10001" -230551,USB-C Charging Cable,1,11.95,07/31/19 20:01,"807 West St, Los Angeles, CA 90001" -230552,USB-C Charging Cable,1,11.95,07/29/19 11:32,"354 8th St, Atlanta, GA 30301" -230553,AA Batteries (4-pack),1,3.84,07/22/19 09:49,"824 Ridge St, Dallas, TX 75001" -230554,34in Ultrawide Monitor,1,379.99,07/03/19 17:31,"17 Hickory St, San Francisco, CA 94016" -230555,Wired Headphones,1,11.99,07/14/19 15:42,"316 West St, San Francisco, CA 94016" -230556,USB-C Charging Cable,2,11.95,07/19/19 16:18,"385 Park St, New York City, NY 10001" -230557,27in FHD Monitor,1,149.99,07/26/19 17:53,"702 1st St, Dallas, TX 75001" -230558,20in Monitor,1,109.99,07/18/19 22:41,"579 Lake St, Seattle, WA 98101" -230559,Macbook Pro Laptop,1,1700,07/09/19 14:56,"352 11th St, San Francisco, CA 94016" -230560,Wired Headphones,1,11.99,07/02/19 14:04,"686 6th St, New York City, NY 10001" -230560,Google Phone,1,600,07/02/19 14:04,"686 6th St, New York City, NY 10001" -230561,USB-C Charging Cable,1,11.95,07/16/19 15:17,"353 Maple St, Los Angeles, CA 90001" -230562,Lightning Charging Cable,1,14.95,07/25/19 12:47,"530 2nd St, Atlanta, GA 30301" -230563,AAA Batteries (4-pack),1,2.99,07/06/19 10:53,"802 Forest St, Portland, OR 97035" -230564,Wired Headphones,1,11.99,07/19/19 15:37,"437 5th St, New York City, NY 10001" -230565,USB-C Charging Cable,1,11.95,07/27/19 19:27,"884 Lakeview St, Los Angeles, CA 90001" -230566,AA Batteries (4-pack),2,3.84,07/25/19 16:14,"514 14th St, New York City, NY 10001" -230567,Wired Headphones,1,11.99,07/26/19 16:35,"656 1st St, San Francisco, CA 94016" -230568,USB-C Charging Cable,1,11.95,07/04/19 11:09,"439 Meadow St, Los Angeles, CA 90001" -230569,Wired Headphones,1,11.99,07/22/19 23:17,"219 Maple St, Boston, MA 02215" -230570,USB-C Charging Cable,1,11.95,07/18/19 07:17,"178 Maple St, Boston, MA 02215" -230571,Lightning Charging Cable,1,14.95,07/23/19 12:18,"313 12th St, Los Angeles, CA 90001" -230572,Wired Headphones,1,11.99,07/27/19 13:49,"974 Elm St, Dallas, TX 75001" -230573,ThinkPad Laptop,1,999.99,07/31/19 00:30,"466 9th St, Dallas, TX 75001" -230574,AA Batteries (4-pack),1,3.84,07/02/19 13:20,"71 Wilson St, Boston, MA 02215" -230575,27in 4K Gaming Monitor,1,389.99,07/22/19 17:04,"604 Church St, San Francisco, CA 94016" -230576,Macbook Pro Laptop,1,1700,07/29/19 19:10,"897 Chestnut St, Dallas, TX 75001" -230577,27in 4K Gaming Monitor,1,389.99,07/19/19 17:19,"124 Center St, Seattle, WA 98101" -230578,27in 4K Gaming Monitor,1,389.99,07/29/19 20:40,"32 10th St, San Francisco, CA 94016" -230579,USB-C Charging Cable,1,11.95,07/24/19 21:20,"305 Cherry St, San Francisco, CA 94016" -230580,Lightning Charging Cable,1,14.95,07/15/19 10:57,"237 Jefferson St, San Francisco, CA 94016" -230581,USB-C Charging Cable,1,11.95,07/18/19 13:49,"555 9th St, Portland, ME 04101" -230582,Apple Airpods Headphones,1,150,07/06/19 08:54,"919 Washington St, San Francisco, CA 94016" -230583,Lightning Charging Cable,1,14.95,07/25/19 21:05,"554 Jackson St, Los Angeles, CA 90001" -230583,Lightning Charging Cable,1,14.95,07/25/19 21:05,"554 Jackson St, Los Angeles, CA 90001" -230584,Wired Headphones,1,11.99,07/19/19 19:04,"716 Church St, New York City, NY 10001" -230585,Google Phone,1,600,07/07/19 22:47,"843 Center St, Austin, TX 73301" -230585,USB-C Charging Cable,1,11.95,07/07/19 22:47,"843 Center St, Austin, TX 73301" -230586,Lightning Charging Cable,1,14.95,07/20/19 13:37,"346 Park St, New York City, NY 10001" -230587,Bose SoundSport Headphones,1,99.99,07/24/19 17:01,"229 Elm St, San Francisco, CA 94016" -230588,AAA Batteries (4-pack),3,2.99,07/31/19 20:10,"437 Lake St, Los Angeles, CA 90001" -230589,Flatscreen TV,1,300,07/27/19 13:38,"43 Maple St, Portland, OR 97035" -230590,Flatscreen TV,1,300,07/15/19 14:47,"445 River St, New York City, NY 10001" -230591,Macbook Pro Laptop,1,1700,07/06/19 22:41,"111 12th St, Los Angeles, CA 90001" -230592,iPhone,1,700,07/25/19 10:36,"611 Meadow St, San Francisco, CA 94016" -230593,Flatscreen TV,1,300,07/13/19 21:23,"641 1st St, Los Angeles, CA 90001" -230594,Wired Headphones,1,11.99,07/07/19 20:39,"559 1st St, Portland, OR 97035" -230595,Bose SoundSport Headphones,1,99.99,07/22/19 17:58,"27 Elm St, Seattle, WA 98101" -230596,Wired Headphones,1,11.99,07/26/19 13:26,"202 Lakeview St, Los Angeles, CA 90001" -230597,Google Phone,1,600,07/16/19 23:25,"798 8th St, New York City, NY 10001" -230598,iPhone,1,700,07/30/19 11:09,"682 River St, Boston, MA 02215" -230598,Lightning Charging Cable,1,14.95,07/30/19 11:09,"682 River St, Boston, MA 02215" -230599,AA Batteries (4-pack),1,3.84,07/01/19 13:44,"960 Lincoln St, Boston, MA 02215" -230600,AA Batteries (4-pack),2,3.84,07/23/19 10:08,"303 Wilson St, Los Angeles, CA 90001" -230600,Wired Headphones,1,11.99,07/23/19 10:08,"303 Wilson St, Los Angeles, CA 90001" -230601,AA Batteries (4-pack),2,3.84,07/19/19 17:14,"247 Wilson St, Seattle, WA 98101" -230602,Bose SoundSport Headphones,1,99.99,08/01/19 00:44,"881 Jackson St, Los Angeles, CA 90001" -230603,Wired Headphones,1,11.99,07/27/19 14:14,"293 Ridge St, San Francisco, CA 94016" -230604,AAA Batteries (4-pack),2,2.99,07/28/19 18:44,"439 Jackson St, Dallas, TX 75001" -230605,Vareebadd Phone,1,400,07/27/19 09:15,"875 Pine St, Boston, MA 02215" -230605,USB-C Charging Cable,1,11.95,07/27/19 09:15,"875 Pine St, Boston, MA 02215" -230606,iPhone,1,700,07/14/19 21:28,"844 Lincoln St, Atlanta, GA 30301" -230606,Wired Headphones,1,11.99,07/14/19 21:28,"844 Lincoln St, Atlanta, GA 30301" -230607,AA Batteries (4-pack),1,3.84,07/15/19 06:31,"801 Hill St, Atlanta, GA 30301" -230608,iPhone,1,700,07/06/19 11:05,"225 4th St, San Francisco, CA 94016" -230609,27in 4K Gaming Monitor,1,389.99,07/12/19 00:13,"971 Hickory St, Portland, ME 04101" -230609,AAA Batteries (4-pack),1,2.99,07/12/19 00:13,"971 Hickory St, Portland, ME 04101" -230610,AA Batteries (4-pack),1,3.84,07/28/19 14:42,"866 Cedar St, Boston, MA 02215" -230611,Apple Airpods Headphones,1,150,07/02/19 14:42,"660 Jackson St, Portland, OR 97035" -230612,USB-C Charging Cable,1,11.95,07/26/19 05:29,"397 Adams St, Atlanta, GA 30301" -230613,Wired Headphones,1,11.99,07/18/19 23:52,"483 11th St, Los Angeles, CA 90001" -230614,AAA Batteries (4-pack),1,2.99,07/30/19 16:41,"702 5th St, Atlanta, GA 30301" -230615,34in Ultrawide Monitor,1,379.99,07/25/19 11:00,"506 South St, New York City, NY 10001" -230616,AA Batteries (4-pack),1,3.84,07/04/19 23:24,"145 Dogwood St, San Francisco, CA 94016" -230617,AA Batteries (4-pack),1,3.84,07/05/19 09:52,"521 Chestnut St, Atlanta, GA 30301" -230618,27in 4K Gaming Monitor,1,389.99,07/13/19 12:48,"912 7th St, Dallas, TX 75001" -230619,AA Batteries (4-pack),1,3.84,07/28/19 15:20,"424 Sunset St, Los Angeles, CA 90001" -230620,Bose SoundSport Headphones,1,99.99,07/01/19 17:25,"885 Adams St, New York City, NY 10001" -230621,USB-C Charging Cable,1,11.95,07/11/19 14:46,"206 Dogwood St, San Francisco, CA 94016" -230622,Lightning Charging Cable,1,14.95,07/06/19 23:08,"772 Lincoln St, Los Angeles, CA 90001" -230623,Lightning Charging Cable,1,14.95,07/01/19 14:17,"71 9th St, New York City, NY 10001" -230624,Wired Headphones,1,11.99,07/23/19 14:08,"255 7th St, Los Angeles, CA 90001" -230625,Flatscreen TV,1,300,07/23/19 15:28,"599 Walnut St, New York City, NY 10001" -230626,27in FHD Monitor,1,149.99,07/08/19 11:44,"472 Forest St, New York City, NY 10001" -230627,27in FHD Monitor,1,149.99,07/21/19 13:54,"811 Church St, San Francisco, CA 94016" -230628,Apple Airpods Headphones,1,150,07/10/19 12:35,"988 11th St, Seattle, WA 98101" -230629,USB-C Charging Cable,1,11.95,07/31/19 09:50,"657 2nd St, Atlanta, GA 30301" -230630,Apple Airpods Headphones,1,150,07/16/19 18:51,"570 2nd St, New York City, NY 10001" -230631,Wired Headphones,1,11.99,07/08/19 17:44,"695 Jackson St, Los Angeles, CA 90001" -230632,AA Batteries (4-pack),1,3.84,07/12/19 22:52,"812 Dogwood St, Boston, MA 02215" -230633,Apple Airpods Headphones,1,150,07/22/19 10:08,"71 Wilson St, Boston, MA 02215" -230634,Google Phone,1,600,07/30/19 00:04,"183 Wilson St, Los Angeles, CA 90001" -230635,AA Batteries (4-pack),1,3.84,07/14/19 07:49,"793 Willow St, San Francisco, CA 94016" -230636,AAA Batteries (4-pack),1,2.99,07/08/19 19:00,"348 Walnut St, Boston, MA 02215" -230637,USB-C Charging Cable,1,11.95,07/01/19 20:11,"170 Jefferson St, San Francisco, CA 94016" -230638,Lightning Charging Cable,1,14.95,07/16/19 14:47,"658 Jackson St, Boston, MA 02215" -230639,Lightning Charging Cable,1,14.95,07/17/19 20:56,"629 Walnut St, San Francisco, CA 94016" -230640,Apple Airpods Headphones,1,150,07/26/19 20:13,"916 12th St, San Francisco, CA 94016" -230640,ThinkPad Laptop,1,999.99,07/26/19 20:13,"916 12th St, San Francisco, CA 94016" -230641,AAA Batteries (4-pack),1,2.99,07/28/19 12:11,"877 5th St, Austin, TX 73301" -230642,Wired Headphones,1,11.99,07/17/19 20:47,"68 Lake St, Atlanta, GA 30301" -230643,Vareebadd Phone,1,400,07/04/19 13:44,"128 13th St, Portland, OR 97035" -230644,Wired Headphones,1,11.99,07/10/19 11:47,"683 West St, Dallas, TX 75001" -230645,Lightning Charging Cable,1,14.95,07/12/19 13:22,"454 Dogwood St, Los Angeles, CA 90001" -230646,Wired Headphones,1,11.99,07/18/19 07:17,"858 1st St, Los Angeles, CA 90001" -230647,Apple Airpods Headphones,2,150,07/26/19 14:55,"912 13th St, Los Angeles, CA 90001" -230648,AA Batteries (4-pack),1,3.84,07/11/19 18:24,"586 Sunset St, Seattle, WA 98101" -230649,USB-C Charging Cable,1,11.95,07/07/19 03:36,"836 6th St, Austin, TX 73301" -230650,USB-C Charging Cable,1,11.95,07/24/19 00:59,"791 9th St, Boston, MA 02215" -230651,Lightning Charging Cable,1,14.95,07/26/19 13:40,"457 Spruce St, San Francisco, CA 94016" -230652,Wired Headphones,1,11.99,07/03/19 22:13,"653 West St, Seattle, WA 98101" -230653,Wired Headphones,1,11.99,07/24/19 17:56,"309 7th St, Austin, TX 73301" -230654,AAA Batteries (4-pack),1,2.99,07/10/19 03:30,"114 9th St, Portland, OR 97035" -230655,USB-C Charging Cable,1,11.95,07/11/19 21:17,"969 Johnson St, Los Angeles, CA 90001" -230656,27in 4K Gaming Monitor,1,389.99,07/03/19 16:35,"99 Meadow St, Los Angeles, CA 90001" -230657,Wired Headphones,3,11.99,07/19/19 14:09,"841 Johnson St, San Francisco, CA 94016" -230658,Bose SoundSport Headphones,1,99.99,07/29/19 14:17,"194 Wilson St, Atlanta, GA 30301" -230659,USB-C Charging Cable,1,11.95,07/08/19 23:51,"694 Madison St, Boston, MA 02215" -230660,20in Monitor,1,109.99,07/20/19 14:38,"672 Lake St, San Francisco, CA 94016" -230661,Lightning Charging Cable,1,14.95,07/13/19 15:23,"55 Dogwood St, Los Angeles, CA 90001" -230662,AAA Batteries (4-pack),1,2.99,07/29/19 14:27,"951 Center St, New York City, NY 10001" -230663,USB-C Charging Cable,2,11.95,07/24/19 13:43,"629 Chestnut St, Dallas, TX 75001" -230664,Bose SoundSport Headphones,1,99.99,07/14/19 10:13,"442 River St, Boston, MA 02215" -230665,Macbook Pro Laptop,1,1700,07/21/19 08:02,"111 6th St, San Francisco, CA 94016" -230666,34in Ultrawide Monitor,1,379.99,07/27/19 16:54,"804 Pine St, Portland, OR 97035" -230667,Lightning Charging Cable,1,14.95,07/28/19 22:19,"361 Washington St, San Francisco, CA 94016" -230668,AAA Batteries (4-pack),1,2.99,07/15/19 20:55,"502 Hill St, Boston, MA 02215" -230669,Wired Headphones,2,11.99,07/16/19 09:05,"957 Chestnut St, New York City, NY 10001" -230670,Apple Airpods Headphones,1,150,07/26/19 09:00,"884 Meadow St, San Francisco, CA 94016" -230671,USB-C Charging Cable,1,11.95,07/18/19 17:08,"735 Main St, Los Angeles, CA 90001" -230672,27in FHD Monitor,1,149.99,07/09/19 03:30,"937 Spruce St, San Francisco, CA 94016" -230673,Flatscreen TV,1,300,07/26/19 11:36,"938 Hickory St, Austin, TX 73301" -230674,34in Ultrawide Monitor,1,379.99,07/12/19 09:32,"932 10th St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -230675,AA Batteries (4-pack),1,3.84,07/04/19 21:45,"224 Forest St, Dallas, TX 75001" -230676,Wired Headphones,1,11.99,07/30/19 23:37,"243 Meadow St, San Francisco, CA 94016" -230677,Flatscreen TV,1,300,07/29/19 00:04,"193 Jackson St, Dallas, TX 75001" -230678,Wired Headphones,2,11.99,07/19/19 12:55,"658 Jackson St, Portland, OR 97035" -230679,AA Batteries (4-pack),1,3.84,07/01/19 22:46,"284 Meadow St, Los Angeles, CA 90001" -230680,Lightning Charging Cable,1,14.95,07/31/19 20:28,"761 Hill St, Austin, TX 73301" -230681,Bose SoundSport Headphones,1,99.99,07/24/19 23:31,"237 Center St, Los Angeles, CA 90001" -230682,AAA Batteries (4-pack),1,2.99,07/07/19 00:42,"929 Lakeview St, New York City, NY 10001" -230683,AA Batteries (4-pack),1,3.84,07/17/19 18:53,"515 9th St, San Francisco, CA 94016" -230684,Lightning Charging Cable,1,14.95,07/01/19 08:20,"342 West St, Boston, MA 02215" -230685,USB-C Charging Cable,1,11.95,07/15/19 12:35,"37 Hill St, New York City, NY 10001" -230686,Flatscreen TV,1,300,07/26/19 11:36,"897 Center St, Los Angeles, CA 90001" -230687,USB-C Charging Cable,2,11.95,07/03/19 17:07,"679 Meadow St, Boston, MA 02215" -230688,USB-C Charging Cable,1,11.95,07/10/19 11:09,"606 Adams St, Dallas, TX 75001" -230689,Wired Headphones,1,11.99,07/09/19 16:22,"367 Highland St, Austin, TX 73301" -230690,USB-C Charging Cable,1,11.95,07/16/19 18:23,"307 Forest St, Austin, TX 73301" -230691,Lightning Charging Cable,3,14.95,07/28/19 11:37,"989 Highland St, Boston, MA 02215" -230692,Wired Headphones,1,11.99,07/12/19 19:18,"311 Meadow St, Los Angeles, CA 90001" -230693,USB-C Charging Cable,1,11.95,07/09/19 09:23,"422 12th St, Los Angeles, CA 90001" -230694,AA Batteries (4-pack),1,3.84,07/19/19 21:52,"801 Elm St, Portland, OR 97035" -230695,iPhone,1,700,07/07/19 12:07,"70 Maple St, San Francisco, CA 94016" -230696,AA Batteries (4-pack),1,3.84,07/25/19 10:53,"779 11th St, Boston, MA 02215" -230697,Bose SoundSport Headphones,1,99.99,07/01/19 09:45,"779 Sunset St, Austin, TX 73301" -230698,27in FHD Monitor,1,149.99,07/08/19 10:30,"779 North St, Los Angeles, CA 90001" -230699,AAA Batteries (4-pack),2,2.99,07/05/19 23:16,"975 Lakeview St, San Francisco, CA 94016" -230700,LG Washing Machine,1,600.0,07/16/19 09:33,"50 5th St, Seattle, WA 98101" -230701,27in 4K Gaming Monitor,1,389.99,07/08/19 16:12,"898 Adams St, New York City, NY 10001" -230702,AA Batteries (4-pack),3,3.84,07/28/19 20:21,"324 Main St, Los Angeles, CA 90001" -230703,iPhone,1,700,07/14/19 07:02,"535 Hickory St, Los Angeles, CA 90001" -230704,Wired Headphones,1,11.99,07/08/19 13:35,"105 5th St, Austin, TX 73301" -230705,ThinkPad Laptop,1,999.99,07/04/19 18:01,"207 River St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -230706,AAA Batteries (4-pack),1,2.99,07/18/19 16:26,"208 Main St, Seattle, WA 98101" -230707,Wired Headphones,1,11.99,07/06/19 07:33,"463 1st St, San Francisco, CA 94016" -230708,Lightning Charging Cable,1,14.95,07/31/19 11:55,"333 13th St, Los Angeles, CA 90001" -230709,Lightning Charging Cable,1,14.95,07/21/19 19:19,"789 Jackson St, Austin, TX 73301" -230710,Apple Airpods Headphones,1,150,07/30/19 22:42,"182 1st St, San Francisco, CA 94016" -230711,AAA Batteries (4-pack),1,2.99,07/04/19 07:40,"764 14th St, San Francisco, CA 94016" -230712,Apple Airpods Headphones,1,150,07/12/19 18:41,"448 Maple St, Dallas, TX 75001" -230713,Bose SoundSport Headphones,1,99.99,07/20/19 12:02,"878 6th St, Dallas, TX 75001" -230714,27in FHD Monitor,1,149.99,07/14/19 12:34,"929 11th St, Atlanta, GA 30301" -230715,AA Batteries (4-pack),2,3.84,07/28/19 22:39,"783 Elm St, Los Angeles, CA 90001" -230716,AAA Batteries (4-pack),2,2.99,07/22/19 09:24,"362 Meadow St, San Francisco, CA 94016" -230717,USB-C Charging Cable,1,11.95,07/28/19 13:37,"104 Ridge St, New York City, NY 10001" -230718,AA Batteries (4-pack),2,3.84,07/18/19 06:11,"411 Adams St, New York City, NY 10001" -230719,AAA Batteries (4-pack),1,2.99,07/11/19 18:03,"154 8th St, San Francisco, CA 94016" -230720,27in FHD Monitor,1,149.99,07/11/19 19:44,"377 Jackson St, New York City, NY 10001" -230721,Macbook Pro Laptop,1,1700,07/31/19 19:14,"151 Willow St, Austin, TX 73301" -230722,Vareebadd Phone,1,400,07/29/19 16:07,"515 Dogwood St, Austin, TX 73301" -230722,USB-C Charging Cable,2,11.95,07/29/19 16:07,"515 Dogwood St, Austin, TX 73301" -230723,USB-C Charging Cable,1,11.95,07/07/19 10:13,"9 Cedar St, Boston, MA 02215" -230724,AA Batteries (4-pack),1,3.84,07/18/19 12:00,"403 10th St, New York City, NY 10001" -230725,LG Washing Machine,1,600.0,07/14/19 15:27,"146 Jackson St, Austin, TX 73301" -230726,AA Batteries (4-pack),2,3.84,07/13/19 19:37,"826 Walnut St, San Francisco, CA 94016" -230727,AAA Batteries (4-pack),1,2.99,07/10/19 12:18,"153 4th St, Boston, MA 02215" -230728,Macbook Pro Laptop,1,1700,07/08/19 18:30,"29 Church St, Boston, MA 02215" -230729,Vareebadd Phone,1,400,07/07/19 12:30,"962 Willow St, Portland, OR 97035" -230730,34in Ultrawide Monitor,1,379.99,07/10/19 13:38,"211 Park St, Atlanta, GA 30301" -230731,Wired Headphones,1,11.99,07/10/19 09:42,"208 Johnson St, New York City, NY 10001" -230732,iPhone,1,700,07/08/19 16:55,"385 Ridge St, Dallas, TX 75001" -230733,Lightning Charging Cable,1,14.95,07/15/19 18:13,"888 Sunset St, Atlanta, GA 30301" -230734,AAA Batteries (4-pack),1,2.99,07/21/19 23:35,"745 Main St, New York City, NY 10001" -230735,Lightning Charging Cable,1,14.95,07/30/19 16:15,"974 Ridge St, New York City, NY 10001" -230736,AA Batteries (4-pack),1,3.84,07/26/19 08:29,"861 Elm St, San Francisco, CA 94016" -230737,Wired Headphones,1,11.99,07/16/19 01:29,"425 12th St, Atlanta, GA 30301" -230738,27in 4K Gaming Monitor,1,389.99,07/17/19 18:17,"88 Hill St, Los Angeles, CA 90001" -230739,Bose SoundSport Headphones,1,99.99,07/18/19 17:21,"438 14th St, Dallas, TX 75001" -230740,Apple Airpods Headphones,1,150,07/04/19 20:31,"806 Adams St, San Francisco, CA 94016" -230741,Lightning Charging Cable,1,14.95,07/03/19 16:57,"749 Cedar St, Atlanta, GA 30301" -230742,USB-C Charging Cable,1,11.95,07/20/19 11:49,"995 Madison St, Seattle, WA 98101" -,,,,, -230743,Lightning Charging Cable,1,14.95,07/05/19 10:27,"790 4th St, New York City, NY 10001" -230744,USB-C Charging Cable,1,11.95,07/20/19 11:27,"132 North St, Los Angeles, CA 90001" -230744,34in Ultrawide Monitor,1,379.99,07/20/19 11:27,"132 North St, Los Angeles, CA 90001" -230745,Lightning Charging Cable,1,14.95,07/10/19 22:03,"795 Highland St, New York City, NY 10001" -230746,Google Phone,1,600,07/13/19 08:58,"616 4th St, Atlanta, GA 30301" -230746,USB-C Charging Cable,1,11.95,07/13/19 08:58,"616 4th St, Atlanta, GA 30301" -230747,Flatscreen TV,1,300,07/16/19 16:07,"677 12th St, Seattle, WA 98101" -230748,AA Batteries (4-pack),1,3.84,07/15/19 22:06,"186 11th St, Portland, OR 97035" -230749,Flatscreen TV,1,300,07/07/19 07:57,"180 Pine St, New York City, NY 10001" -230750,Bose SoundSport Headphones,1,99.99,07/06/19 13:26,"501 West St, Austin, TX 73301" -230751,27in FHD Monitor,1,149.99,07/02/19 19:14,"215 West St, Austin, TX 73301" -230752,27in 4K Gaming Monitor,1,389.99,07/12/19 22:52,"504 Cedar St, Boston, MA 02215" -230753,Apple Airpods Headphones,1,150,07/28/19 14:37,"595 Chestnut St, Dallas, TX 75001" -230754,27in FHD Monitor,1,149.99,07/02/19 08:48,"834 Spruce St, San Francisco, CA 94016" -230755,AAA Batteries (4-pack),2,2.99,07/30/19 13:17,"848 10th St, Dallas, TX 75001" -230756,AA Batteries (4-pack),2,3.84,07/05/19 14:22,"102 8th St, Boston, MA 02215" -230757,AA Batteries (4-pack),2,3.84,07/15/19 21:32,"176 Park St, Los Angeles, CA 90001" -230758,Wired Headphones,1,11.99,07/07/19 13:37,"806 Main St, San Francisco, CA 94016" -230759,AAA Batteries (4-pack),1,2.99,07/07/19 17:16,"981 12th St, Portland, ME 04101" -230760,Wired Headphones,1,11.99,07/10/19 22:59,"86 Washington St, Los Angeles, CA 90001" -230761,AA Batteries (4-pack),1,3.84,07/18/19 16:16,"377 Forest St, New York City, NY 10001" -230762,34in Ultrawide Monitor,1,379.99,07/24/19 17:37,"502 8th St, San Francisco, CA 94016" -230763,Wired Headphones,1,11.99,07/20/19 09:35,"454 Center St, Dallas, TX 75001" -230764,Bose SoundSport Headphones,1,99.99,07/22/19 10:48,"246 Hill St, Boston, MA 02215" -230765,AAA Batteries (4-pack),1,2.99,07/17/19 18:30,"488 Walnut St, Austin, TX 73301" -230766,Google Phone,1,600,07/24/19 14:19,"287 Main St, Los Angeles, CA 90001" -230767,Lightning Charging Cable,1,14.95,07/08/19 09:22,"792 Chestnut St, Seattle, WA 98101" -230768,Apple Airpods Headphones,1,150,07/24/19 18:29,"621 Cedar St, New York City, NY 10001" -230769,USB-C Charging Cable,1,11.95,07/22/19 12:35,"533 Hill St, San Francisco, CA 94016" -230770,USB-C Charging Cable,1,11.95,07/20/19 09:34,"55 South St, Los Angeles, CA 90001" -230771,USB-C Charging Cable,1,11.95,07/12/19 07:59,"530 2nd St, Atlanta, GA 30301" -230772,USB-C Charging Cable,3,11.95,07/18/19 07:47,"459 Forest St, Seattle, WA 98101" -230773,Bose SoundSport Headphones,1,99.99,07/26/19 23:11,"462 Washington St, Portland, OR 97035" -230774,Apple Airpods Headphones,1,150,07/12/19 04:46,"203 Sunset St, Boston, MA 02215" -230775,27in FHD Monitor,1,149.99,07/03/19 19:23,"71 Spruce St, Los Angeles, CA 90001" -230776,AA Batteries (4-pack),1,3.84,07/17/19 19:18,"516 Jackson St, Los Angeles, CA 90001" -230777,Lightning Charging Cable,1,14.95,07/25/19 20:31,"409 Maple St, Seattle, WA 98101" -230778,Wired Headphones,1,11.99,07/31/19 21:38,"383 Highland St, Boston, MA 02215" -230779,Macbook Pro Laptop,1,1700,07/02/19 11:54,"697 13th St, Austin, TX 73301" -230780,AAA Batteries (4-pack),1,2.99,07/12/19 19:45,"946 Cedar St, Seattle, WA 98101" -230781,Apple Airpods Headphones,1,150,07/04/19 08:45,"623 Willow St, Seattle, WA 98101" -230782,Apple Airpods Headphones,1,150,07/06/19 13:50,"393 Spruce St, San Francisco, CA 94016" -230783,AA Batteries (4-pack),1,3.84,07/23/19 19:05,"567 Lakeview St, Atlanta, GA 30301" -230784,Google Phone,1,600,07/29/19 12:58,"564 Church St, Austin, TX 73301" -230785,Wired Headphones,1,11.99,07/01/19 11:12,"764 2nd St, Los Angeles, CA 90001" -230786,Flatscreen TV,1,300,07/13/19 21:59,"352 Adams St, San Francisco, CA 94016" -230787,AAA Batteries (4-pack),1,2.99,07/05/19 22:32,"964 North St, Boston, MA 02215" -230788,Bose SoundSport Headphones,1,99.99,07/22/19 18:04,"881 Church St, Los Angeles, CA 90001" -230789,USB-C Charging Cable,1,11.95,07/14/19 15:06,"218 South St, Boston, MA 02215" -230790,AA Batteries (4-pack),3,3.84,07/28/19 20:36,"844 5th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -230791,27in FHD Monitor,1,149.99,07/18/19 11:33,"636 Maple St, New York City, NY 10001" -230792,USB-C Charging Cable,1,11.95,07/27/19 17:59,"124 2nd St, Boston, MA 02215" -230793,AAA Batteries (4-pack),1,2.99,07/19/19 22:20,"804 14th St, Los Angeles, CA 90001" -230794,AA Batteries (4-pack),1,3.84,07/30/19 09:39,"935 Lincoln St, San Francisco, CA 94016" -230795,AA Batteries (4-pack),4,3.84,07/23/19 21:24,"897 Jackson St, Los Angeles, CA 90001" -230796,ThinkPad Laptop,1,999.99,07/10/19 11:45,"636 Hickory St, Austin, TX 73301" -230797,USB-C Charging Cable,1,11.95,07/29/19 14:20,"766 14th St, Dallas, TX 75001" -230798,AA Batteries (4-pack),2,3.84,07/03/19 18:31,"624 South St, Seattle, WA 98101" -230799,AA Batteries (4-pack),1,3.84,07/26/19 14:28,"222 6th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -230800,LG Washing Machine,1,600.0,07/10/19 14:46,"692 13th St, Seattle, WA 98101" -230801,iPhone,1,700,07/04/19 10:44,"551 14th St, Seattle, WA 98101" -230802,AA Batteries (4-pack),1,3.84,07/04/19 10:33,"688 Pine St, Seattle, WA 98101" -230803,USB-C Charging Cable,2,11.95,07/03/19 12:18,"402 Jackson St, Atlanta, GA 30301" -230804,Bose SoundSport Headphones,1,99.99,07/21/19 14:26,"32 North St, Seattle, WA 98101" -230805,AAA Batteries (4-pack),1,2.99,07/18/19 17:58,"695 Center St, San Francisco, CA 94016" -230806,USB-C Charging Cable,1,11.95,07/15/19 19:25,"776 Chestnut St, San Francisco, CA 94016" -230807,Lightning Charging Cable,1,14.95,07/18/19 05:42,"348 Jefferson St, San Francisco, CA 94016" -230808,Lightning Charging Cable,1,14.95,07/18/19 20:33,"430 Dogwood St, Seattle, WA 98101" -230809,Macbook Pro Laptop,1,1700,07/23/19 08:26,"667 Jefferson St, New York City, NY 10001" -230810,AA Batteries (4-pack),1,3.84,07/06/19 23:25,"860 Main St, San Francisco, CA 94016" -230811,AAA Batteries (4-pack),1,2.99,07/09/19 06:41,"962 13th St, New York City, NY 10001" -230812,LG Washing Machine,1,600.0,07/14/19 05:43,"220 Washington St, Dallas, TX 75001" -230813,34in Ultrawide Monitor,1,379.99,07/05/19 10:00,"466 West St, Boston, MA 02215" -230814,Apple Airpods Headphones,1,150,07/06/19 15:36,"359 Cherry St, Atlanta, GA 30301" -230815,Lightning Charging Cable,1,14.95,07/26/19 15:49,"926 8th St, Portland, ME 04101" -230816,Wired Headphones,1,11.99,07/01/19 12:17,"494 4th St, Dallas, TX 75001" -230817,USB-C Charging Cable,1,11.95,07/23/19 14:43,"697 Meadow St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -230818,Lightning Charging Cable,1,14.95,07/16/19 18:42,"834 Elm St, San Francisco, CA 94016" -230819,Lightning Charging Cable,1,14.95,07/14/19 09:49,"597 6th St, San Francisco, CA 94016" -230820,USB-C Charging Cable,1,11.95,07/27/19 06:51,"984 6th St, Los Angeles, CA 90001" -230821,27in FHD Monitor,1,149.99,07/11/19 19:29,"107 12th St, New York City, NY 10001" -230822,USB-C Charging Cable,2,11.95,07/02/19 16:47,"539 Meadow St, San Francisco, CA 94016" -230823,USB-C Charging Cable,1,11.95,07/27/19 15:11,"811 13th St, Seattle, WA 98101" -230824,AA Batteries (4-pack),2,3.84,07/04/19 05:44,"732 Highland St, Boston, MA 02215" -230825,Lightning Charging Cable,1,14.95,07/24/19 17:11,"278 Cedar St, Atlanta, GA 30301" -230826,AA Batteries (4-pack),1,3.84,07/01/19 13:28,"99 Center St, Dallas, TX 75001" -230827,Flatscreen TV,1,300,07/22/19 10:15,"666 Park St, Boston, MA 02215" -230828,Apple Airpods Headphones,1,150,07/05/19 00:11,"670 Maple St, San Francisco, CA 94016" -230829,Flatscreen TV,1,300,07/20/19 08:22,"312 5th St, Dallas, TX 75001" -230830,AAA Batteries (4-pack),1,2.99,07/01/19 11:41,"665 Ridge St, Seattle, WA 98101" -230831,27in FHD Monitor,1,149.99,07/13/19 17:19,"968 2nd St, San Francisco, CA 94016" -230832,Lightning Charging Cable,1,14.95,07/14/19 11:31,"427 West St, Atlanta, GA 30301" -230833,USB-C Charging Cable,1,11.95,07/07/19 22:59,"593 6th St, New York City, NY 10001" -230834,iPhone,1,700,07/02/19 03:06,"453 River St, New York City, NY 10001" -230835,Google Phone,1,600,07/25/19 22:02,"655 Chestnut St, New York City, NY 10001" -230836,Apple Airpods Headphones,1,150,07/23/19 11:08,"744 Chestnut St, Atlanta, GA 30301" -230837,AAA Batteries (4-pack),1,2.99,07/08/19 13:30,"31 Highland St, Seattle, WA 98101" -230838,Lightning Charging Cable,1,14.95,07/22/19 12:09,"252 Main St, Seattle, WA 98101" -230839,Wired Headphones,1,11.99,07/17/19 22:11,"644 Church St, Los Angeles, CA 90001" -230839,AAA Batteries (4-pack),2,2.99,07/17/19 22:11,"644 Church St, Los Angeles, CA 90001" -230840,Wired Headphones,1,11.99,07/05/19 19:24,"798 Dogwood St, Dallas, TX 75001" -230841,AAA Batteries (4-pack),1,2.99,07/30/19 00:04,"639 Church St, Atlanta, GA 30301" -230842,AA Batteries (4-pack),1,3.84,07/04/19 15:23,"526 River St, Atlanta, GA 30301" -230843,Bose SoundSport Headphones,1,99.99,07/24/19 18:02,"531 6th St, New York City, NY 10001" -230844,USB-C Charging Cable,1,11.95,07/14/19 18:28,"44 Jackson St, New York City, NY 10001" -230845,34in Ultrawide Monitor,1,379.99,07/06/19 20:19,"910 Maple St, Atlanta, GA 30301" -230846,Apple Airpods Headphones,1,150,07/30/19 18:05,"892 2nd St, Dallas, TX 75001" -230847,Wired Headphones,1,11.99,07/27/19 09:26,"961 Johnson St, Boston, MA 02215" -230848,Lightning Charging Cable,1,14.95,07/01/19 18:12,"608 Meadow St, Los Angeles, CA 90001" -230849,Lightning Charging Cable,1,14.95,07/10/19 09:31,"752 Wilson St, Seattle, WA 98101" -230850,Wired Headphones,1,11.99,07/11/19 10:03,"318 2nd St, Los Angeles, CA 90001" -230851,AAA Batteries (4-pack),1,2.99,07/07/19 11:48,"622 Lakeview St, Dallas, TX 75001" -230852,34in Ultrawide Monitor,1,379.99,07/29/19 15:12,"916 Washington St, San Francisco, CA 94016" -230853,USB-C Charging Cable,1,11.95,07/06/19 12:10,"933 Jefferson St, San Francisco, CA 94016" -230854,Wired Headphones,1,11.99,07/13/19 15:41,"528 Pine St, Austin, TX 73301" -230855,AAA Batteries (4-pack),1,2.99,07/22/19 11:11,"435 West St, Los Angeles, CA 90001" -230856,Apple Airpods Headphones,1,150,07/19/19 08:48,"889 9th St, San Francisco, CA 94016" -230857,USB-C Charging Cable,1,11.95,07/18/19 12:21,"367 Meadow St, Los Angeles, CA 90001" -230857,USB-C Charging Cable,1,11.95,07/18/19 12:21,"367 Meadow St, Los Angeles, CA 90001" -230858,Bose SoundSport Headphones,1,99.99,07/28/19 18:37,"279 8th St, San Francisco, CA 94016" -230859,ThinkPad Laptop,1,999.99,07/15/19 16:19,"70 Washington St, Los Angeles, CA 90001" -230860,USB-C Charging Cable,2,11.95,07/04/19 09:33,"410 5th St, Dallas, TX 75001" -230861,Lightning Charging Cable,1,14.95,07/18/19 23:12,"6 Chestnut St, Seattle, WA 98101" -230862,Flatscreen TV,1,300,07/20/19 16:16,"402 10th St, Los Angeles, CA 90001" -230863,iPhone,1,700,07/28/19 21:22,"637 14th St, Portland, OR 97035" -230864,AAA Batteries (4-pack),1,2.99,07/09/19 15:08,"675 Walnut St, Atlanta, GA 30301" -230865,USB-C Charging Cable,1,11.95,07/22/19 18:43,"620 Ridge St, Dallas, TX 75001" -230866,Wired Headphones,1,11.99,07/21/19 14:36,"187 River St, San Francisco, CA 94016" -230867,Bose SoundSport Headphones,1,99.99,07/17/19 14:56,"839 Willow St, Los Angeles, CA 90001" -230868,AAA Batteries (4-pack),1,2.99,07/13/19 11:16,"1 Adams St, Los Angeles, CA 90001" -230869,Apple Airpods Headphones,1,150,07/26/19 13:33,"502 Cherry St, New York City, NY 10001" -230870,AA Batteries (4-pack),2,3.84,07/10/19 13:20,"22 Church St, San Francisco, CA 94016" -230870,AAA Batteries (4-pack),1,2.99,07/10/19 13:20,"22 Church St, San Francisco, CA 94016" -230871,AAA Batteries (4-pack),1,2.99,07/21/19 12:50,"665 Cedar St, New York City, NY 10001" -230872,Apple Airpods Headphones,1,150,07/27/19 19:28,"471 South St, Boston, MA 02215" -230873,AA Batteries (4-pack),1,3.84,07/24/19 22:00,"349 12th St, Los Angeles, CA 90001" -230874,ThinkPad Laptop,1,999.99,07/30/19 14:40,"319 Church St, New York City, NY 10001" -230875,Apple Airpods Headphones,1,150,07/03/19 13:09,"843 14th St, San Francisco, CA 94016" -230876,Wired Headphones,1,11.99,07/07/19 21:38,"472 Sunset St, Los Angeles, CA 90001" -230877,USB-C Charging Cable,1,11.95,07/08/19 20:30,"379 West St, Austin, TX 73301" -230878,USB-C Charging Cable,1,11.95,07/09/19 12:26,"251 Lincoln St, New York City, NY 10001" -230879,Lightning Charging Cable,1,14.95,07/06/19 17:12,"577 8th St, San Francisco, CA 94016" -230880,Wired Headphones,1,11.99,07/05/19 08:52,"671 Church St, Portland, OR 97035" -230881,AAA Batteries (4-pack),2,2.99,07/20/19 20:55,"962 Adams St, Los Angeles, CA 90001" -230882,Vareebadd Phone,1,400,07/01/19 17:18,"98 North St, San Francisco, CA 94016" -230883,27in FHD Monitor,1,149.99,07/19/19 12:10,"266 Main St, Dallas, TX 75001" -230884,Lightning Charging Cable,1,14.95,07/05/19 11:43,"991 12th St, San Francisco, CA 94016" -230885,27in 4K Gaming Monitor,1,389.99,07/19/19 16:22,"624 Johnson St, Portland, OR 97035" -230886,ThinkPad Laptop,1,999.99,07/19/19 08:33,"599 Cedar St, San Francisco, CA 94016" -230887,Google Phone,1,600,07/26/19 00:16,"72 Ridge St, Portland, OR 97035" -230888,Lightning Charging Cable,1,14.95,07/28/19 19:32,"102 Lincoln St, Dallas, TX 75001" -230889,Apple Airpods Headphones,1,150,07/30/19 16:53,"660 Cherry St, Seattle, WA 98101" -230890,Wired Headphones,1,11.99,07/23/19 07:50,"556 West St, Seattle, WA 98101" -230891,AA Batteries (4-pack),1,3.84,07/14/19 00:15,"689 Jackson St, Portland, OR 97035" -230892,USB-C Charging Cable,1,11.95,07/04/19 12:47,"232 Jackson St, New York City, NY 10001" -230893,Lightning Charging Cable,1,14.95,07/30/19 14:53,"574 Lincoln St, Boston, MA 02215" -230894,Lightning Charging Cable,1,14.95,07/19/19 14:56,"976 Johnson St, New York City, NY 10001" -230895,Flatscreen TV,1,300,07/11/19 14:22,"86 6th St, Portland, OR 97035" -230896,Flatscreen TV,1,300,07/06/19 07:29,"484 Meadow St, San Francisco, CA 94016" -230897,Lightning Charging Cable,1,14.95,07/31/19 22:55,"702 Main St, Boston, MA 02215" -230898,Wired Headphones,1,11.99,07/04/19 21:03,"435 Sunset St, Dallas, TX 75001" -230899,Apple Airpods Headphones,1,150,07/14/19 18:10,"382 Lincoln St, Atlanta, GA 30301" -230900,Google Phone,1,600,07/26/19 11:11,"331 Forest St, San Francisco, CA 94016" -230901,Lightning Charging Cable,1,14.95,07/07/19 11:16,"371 Jackson St, Los Angeles, CA 90001" -230902,Bose SoundSport Headphones,1,99.99,07/03/19 22:42,"846 Wilson St, Los Angeles, CA 90001" -230903,Apple Airpods Headphones,1,150,07/08/19 17:28,"898 Washington St, New York City, NY 10001" -230904,Bose SoundSport Headphones,1,99.99,07/05/19 16:56,"325 Jackson St, New York City, NY 10001" -230905,Wired Headphones,1,11.99,07/01/19 16:37,"472 Pine St, New York City, NY 10001" -230906,Wired Headphones,1,11.99,07/26/19 09:48,"264 Park St, Boston, MA 02215" -230907,ThinkPad Laptop,1,999.99,07/18/19 11:39,"681 Park St, New York City, NY 10001" -230908,AAA Batteries (4-pack),3,2.99,07/09/19 13:36,"617 Meadow St, New York City, NY 10001" -230909,34in Ultrawide Monitor,1,379.99,07/30/19 10:15,"949 1st St, Portland, OR 97035" -230910,Google Phone,1,600,07/19/19 17:54,"676 North St, New York City, NY 10001" -230910,Wired Headphones,1,11.99,07/19/19 17:54,"676 North St, New York City, NY 10001" -230911,AAA Batteries (4-pack),3,2.99,07/08/19 07:59,"463 13th St, San Francisco, CA 94016" -230912,34in Ultrawide Monitor,1,379.99,07/31/19 21:51,"931 Pine St, Atlanta, GA 30301" -230913,Wired Headphones,1,11.99,07/31/19 18:40,"874 11th St, San Francisco, CA 94016" -230914,Lightning Charging Cable,1,14.95,07/04/19 18:20,"464 Cherry St, Austin, TX 73301" -230915,iPhone,1,700,07/21/19 17:53,"47 Park St, Los Angeles, CA 90001" -230916,Wired Headphones,1,11.99,07/28/19 23:43,"492 Hickory St, Atlanta, GA 30301" -230917,USB-C Charging Cable,1,11.95,07/28/19 19:52,"101 Maple St, New York City, NY 10001" -230918,Apple Airpods Headphones,1,150,07/25/19 18:47,"900 14th St, Los Angeles, CA 90001" -230919,34in Ultrawide Monitor,1,379.99,07/19/19 18:49,"267 Park St, Los Angeles, CA 90001" -230920,Bose SoundSport Headphones,1,99.99,07/05/19 18:02,"335 Lincoln St, Austin, TX 73301" -230921,AA Batteries (4-pack),1,3.84,07/04/19 10:00,"536 Dogwood St, Dallas, TX 75001" -230922,Bose SoundSport Headphones,1,99.99,07/02/19 18:59,"465 Lincoln St, Los Angeles, CA 90001" -230923,USB-C Charging Cable,1,11.95,07/03/19 10:53,"937 8th St, Los Angeles, CA 90001" -230924,Apple Airpods Headphones,1,150,07/19/19 18:51,"211 North St, Los Angeles, CA 90001" -230925,iPhone,1,700,07/19/19 15:51,"902 9th St, New York City, NY 10001" -230926,Lightning Charging Cable,1,14.95,07/20/19 20:27,"658 Dogwood St, Seattle, WA 98101" -230927,20in Monitor,1,109.99,07/18/19 13:30,"629 Lakeview St, Portland, OR 97035" -230928,Wired Headphones,1,11.99,07/02/19 21:20,"13 13th St, San Francisco, CA 94016" -230929,AA Batteries (4-pack),2,3.84,07/15/19 00:22,"803 11th St, Boston, MA 02215" -230930,AA Batteries (4-pack),1,3.84,07/23/19 21:22,"543 Spruce St, Los Angeles, CA 90001" -230931,Wired Headphones,1,11.99,07/15/19 23:50,"488 Hickory St, San Francisco, CA 94016" -230932,Bose SoundSport Headphones,1,99.99,07/08/19 07:35,"448 5th St, Boston, MA 02215" -230933,USB-C Charging Cable,1,11.95,07/25/19 18:39,"526 Cherry St, Los Angeles, CA 90001" -230934,Google Phone,1,600,07/14/19 19:07,"813 1st St, Austin, TX 73301" -230934,Lightning Charging Cable,1,14.95,07/14/19 19:07,"813 1st St, Austin, TX 73301" -230935,Apple Airpods Headphones,1,150,07/21/19 08:15,"657 Johnson St, San Francisco, CA 94016" -230936,AAA Batteries (4-pack),1,2.99,07/10/19 11:32,"142 Johnson St, Boston, MA 02215" -230937,Google Phone,1,600,07/06/19 15:53,"461 14th St, Portland, OR 97035" -230938,Wired Headphones,1,11.99,07/28/19 17:46,"203 Ridge St, Seattle, WA 98101" -230939,Vareebadd Phone,1,400,07/05/19 21:34,"659 Maple St, Los Angeles, CA 90001" -230940,Bose SoundSport Headphones,1,99.99,07/07/19 11:16,"93 7th St, Atlanta, GA 30301" -230941,Lightning Charging Cable,1,14.95,07/18/19 22:15,"990 12th St, San Francisco, CA 94016" -230942,Google Phone,1,600,07/22/19 19:03,"282 Walnut St, Dallas, TX 75001" -230943,ThinkPad Laptop,1,999.99,07/01/19 07:53,"426 Meadow St, Portland, OR 97035" -230944,34in Ultrawide Monitor,1,379.99,07/12/19 12:05,"820 Spruce St, Los Angeles, CA 90001" -230945,AAA Batteries (4-pack),1,2.99,07/04/19 18:35,"277 Lake St, San Francisco, CA 94016" -230946,27in 4K Gaming Monitor,1,389.99,07/19/19 21:15,"934 Dogwood St, Atlanta, GA 30301" -230947,AA Batteries (4-pack),1,3.84,07/31/19 19:36,"843 Walnut St, Boston, MA 02215" -230948,Bose SoundSport Headphones,1,99.99,07/24/19 10:35,"323 Washington St, Dallas, TX 75001" -230949,Apple Airpods Headphones,1,150,07/21/19 10:29,"330 Cedar St, Los Angeles, CA 90001" -230950,AA Batteries (4-pack),1,3.84,07/14/19 19:50,"440 Madison St, Dallas, TX 75001" -230951,AA Batteries (4-pack),2,3.84,07/05/19 19:28,"349 9th St, New York City, NY 10001" -230952,Flatscreen TV,1,300,07/03/19 18:35,"878 Cedar St, San Francisco, CA 94016" -230953,Apple Airpods Headphones,1,150,07/14/19 12:37,"517 9th St, Atlanta, GA 30301" -230954,USB-C Charging Cable,1,11.95,07/23/19 14:26,"937 West St, Seattle, WA 98101" -230955,USB-C Charging Cable,1,11.95,07/25/19 10:04,"532 Jefferson St, Los Angeles, CA 90001" -230956,AAA Batteries (4-pack),4,2.99,07/16/19 12:49,"881 5th St, Boston, MA 02215" -230957,Bose SoundSport Headphones,1,99.99,07/21/19 18:29,"216 Maple St, Dallas, TX 75001" -230958,Lightning Charging Cable,1,14.95,07/30/19 09:50,"852 11th St, New York City, NY 10001" -230959,Bose SoundSport Headphones,1,99.99,07/15/19 15:34,"740 Lakeview St, Portland, OR 97035" -230959,AA Batteries (4-pack),1,3.84,07/15/19 15:34,"740 Lakeview St, Portland, OR 97035" -230960,USB-C Charging Cable,1,11.95,07/16/19 11:28,"931 Center St, Los Angeles, CA 90001" -230961,AA Batteries (4-pack),1,3.84,07/25/19 14:21,"471 River St, New York City, NY 10001" -230962,Apple Airpods Headphones,1,150,07/28/19 10:26,"172 Highland St, San Francisco, CA 94016" -230963,Wired Headphones,1,11.99,07/27/19 12:26,"855 Wilson St, Seattle, WA 98101" -230964,Bose SoundSport Headphones,1,99.99,07/25/19 18:59,"122 Lakeview St, San Francisco, CA 94016" -230965,27in 4K Gaming Monitor,1,389.99,07/04/19 11:16,"450 Spruce St, Austin, TX 73301" -230966,Apple Airpods Headphones,1,150,07/10/19 20:33,"806 Cherry St, San Francisco, CA 94016" -230967,AAA Batteries (4-pack),1,2.99,07/08/19 06:05,"233 Chestnut St, Boston, MA 02215" -230968,Lightning Charging Cable,1,14.95,07/22/19 10:00,"2 1st St, Seattle, WA 98101" -230969,Bose SoundSport Headphones,1,99.99,07/28/19 12:29,"308 Elm St, Atlanta, GA 30301" -230970,Wired Headphones,1,11.99,07/05/19 09:55,"833 Johnson St, San Francisco, CA 94016" -230971,Wired Headphones,1,11.99,07/03/19 20:17,"52 Jefferson St, Seattle, WA 98101" -230972,AA Batteries (4-pack),1,3.84,07/27/19 05:03,"55 South St, New York City, NY 10001" -230973,34in Ultrawide Monitor,1,379.99,07/31/19 16:52,"387 12th St, New York City, NY 10001" -230974,AAA Batteries (4-pack),2,2.99,07/18/19 16:01,"418 Chestnut St, San Francisco, CA 94016" -230975,Flatscreen TV,1,300,07/30/19 23:53,"383 West St, Los Angeles, CA 90001" -230976,USB-C Charging Cable,1,11.95,07/27/19 08:58,"416 Jefferson St, Portland, OR 97035" -230977,Apple Airpods Headphones,1,150,07/27/19 14:05,"691 Hickory St, New York City, NY 10001" -230978,AAA Batteries (4-pack),1,2.99,07/31/19 12:51,"986 Spruce St, Atlanta, GA 30301" -230979,AA Batteries (4-pack),2,3.84,07/26/19 06:57,"674 Church St, Atlanta, GA 30301" -230980,Lightning Charging Cable,1,14.95,07/14/19 12:20,"905 Hill St, New York City, NY 10001" -230981,Wired Headphones,1,11.99,07/30/19 19:57,"577 Forest St, Austin, TX 73301" -230982,Macbook Pro Laptop,1,1700,07/13/19 11:10,"164 10th St, Dallas, TX 75001" -230983,20in Monitor,1,109.99,07/18/19 12:48,"571 Park St, San Francisco, CA 94016" -230984,Wired Headphones,1,11.99,07/07/19 12:43,"909 Forest St, San Francisco, CA 94016" -230985,iPhone,1,700,07/16/19 12:09,"950 Park St, Los Angeles, CA 90001" -230986,USB-C Charging Cable,1,11.95,07/31/19 18:28,"876 Pine St, New York City, NY 10001" -230987,Bose SoundSport Headphones,1,99.99,07/02/19 18:20,"176 Highland St, San Francisco, CA 94016" -230988,USB-C Charging Cable,1,11.95,07/30/19 19:49,"743 Maple St, Los Angeles, CA 90001" -230989,iPhone,1,700,07/19/19 10:27,"551 2nd St, Los Angeles, CA 90001" -230989,Wired Headphones,1,11.99,07/19/19 10:27,"551 2nd St, Los Angeles, CA 90001" -230990,Google Phone,1,600,07/22/19 10:55,"192 Maple St, Dallas, TX 75001" -230990,USB-C Charging Cable,2,11.95,07/22/19 10:55,"192 Maple St, Dallas, TX 75001" -230991,USB-C Charging Cable,1,11.95,07/06/19 13:18,"40 West St, Seattle, WA 98101" -230992,27in 4K Gaming Monitor,1,389.99,07/11/19 17:54,"523 Madison St, San Francisco, CA 94016" -230993,Wired Headphones,1,11.99,07/15/19 15:34,"579 6th St, Los Angeles, CA 90001" -230994,AA Batteries (4-pack),1,3.84,07/11/19 09:24,"632 South St, San Francisco, CA 94016" -230995,AAA Batteries (4-pack),3,2.99,07/08/19 20:13,"782 North St, Portland, OR 97035" -230996,Flatscreen TV,1,300,07/28/19 10:19,"281 Pine St, Austin, TX 73301" -230997,Flatscreen TV,1,300,07/15/19 00:39,"81 14th St, San Francisco, CA 94016" -230998,27in 4K Gaming Monitor,1,389.99,07/27/19 19:43,"81 12th St, Atlanta, GA 30301" -230999,USB-C Charging Cable,1,11.95,07/01/19 09:42,"462 Maple St, New York City, NY 10001" -231000,Lightning Charging Cable,1,14.95,07/14/19 10:03,"62 2nd St, New York City, NY 10001" -231001,Bose SoundSport Headphones,1,99.99,07/17/19 18:06,"844 Spruce St, San Francisco, CA 94016" -231002,27in 4K Gaming Monitor,1,389.99,07/09/19 21:17,"218 Park St, New York City, NY 10001" -231003,LG Dryer,1,600.0,07/22/19 14:56,"593 9th St, Los Angeles, CA 90001" -231004,LG Washing Machine,1,600.0,07/12/19 12:12,"451 Jefferson St, Portland, OR 97035" -231005,Apple Airpods Headphones,1,150,07/06/19 13:05,"710 Ridge St, San Francisco, CA 94016" -231006,Apple Airpods Headphones,1,150,07/08/19 15:09,"426 Jackson St, Portland, ME 04101" -231007,Apple Airpods Headphones,1,150,07/28/19 16:14,"406 14th St, New York City, NY 10001" -231008,Google Phone,1,600,07/17/19 15:39,"326 Forest St, San Francisco, CA 94016" -231009,USB-C Charging Cable,2,11.95,07/07/19 17:37,"890 12th St, Atlanta, GA 30301" -231010,34in Ultrawide Monitor,1,379.99,07/20/19 19:37,"575 Chestnut St, Austin, TX 73301" -231011,Lightning Charging Cable,1,14.95,07/06/19 20:05,"700 Elm St, Los Angeles, CA 90001" -231012,34in Ultrawide Monitor,1,379.99,07/08/19 09:43,"43 Lincoln St, New York City, NY 10001" -231013,AAA Batteries (4-pack),1,2.99,07/19/19 22:18,"577 Jefferson St, San Francisco, CA 94016" -231014,AAA Batteries (4-pack),1,2.99,07/18/19 14:58,"594 6th St, New York City, NY 10001" -231015,ThinkPad Laptop,1,999.99,07/31/19 18:35,"38 Sunset St, Portland, OR 97035" -231016,AAA Batteries (4-pack),2,2.99,07/03/19 14:49,"257 11th St, Austin, TX 73301" -231017,USB-C Charging Cable,1,11.95,07/24/19 11:35,"839 Lakeview St, Seattle, WA 98101" -231018,Bose SoundSport Headphones,1,99.99,07/15/19 07:42,"406 Highland St, Portland, OR 97035" -231019,AA Batteries (4-pack),1,3.84,07/22/19 21:28,"977 2nd St, San Francisco, CA 94016" -231020,Apple Airpods Headphones,1,150,07/18/19 23:49,"236 11th St, Seattle, WA 98101" -231021,Bose SoundSport Headphones,1,99.99,07/30/19 12:12,"859 Chestnut St, Los Angeles, CA 90001" -231022,27in FHD Monitor,1,149.99,07/23/19 17:23,"181 Lakeview St, Atlanta, GA 30301" -231023,AAA Batteries (4-pack),2,2.99,07/05/19 15:30,"611 Lincoln St, San Francisco, CA 94016" -231024,USB-C Charging Cable,1,11.95,07/24/19 14:07,"414 Elm St, Portland, OR 97035" -231025,Apple Airpods Headphones,1,150,07/14/19 20:34,"587 14th St, San Francisco, CA 94016" -231026,USB-C Charging Cable,1,11.95,07/27/19 11:12,"204 Lincoln St, Portland, OR 97035" -231027,Flatscreen TV,1,300,07/18/19 13:04,"521 North St, Portland, ME 04101" -231028,AAA Batteries (4-pack),1,2.99,07/04/19 17:30,"634 Washington St, Dallas, TX 75001" -231029,iPhone,1,700,07/14/19 10:00,"799 Dogwood St, San Francisco, CA 94016" -231030,AAA Batteries (4-pack),1,2.99,07/20/19 10:34,"91 7th St, San Francisco, CA 94016" -231031,Apple Airpods Headphones,1,150,07/06/19 13:04,"95 Park St, Los Angeles, CA 90001" -231032,USB-C Charging Cable,1,11.95,07/21/19 13:44,"97 Chestnut St, Seattle, WA 98101" -231033,Wired Headphones,1,11.99,07/04/19 15:55,"374 Center St, Portland, OR 97035" -231034,Apple Airpods Headphones,1,150,07/04/19 21:05,"140 6th St, New York City, NY 10001" -231035,ThinkPad Laptop,1,999.99,07/08/19 11:24,"452 1st St, New York City, NY 10001" -231036,AA Batteries (4-pack),2,3.84,07/31/19 12:52,"496 10th St, Los Angeles, CA 90001" -231037,Wired Headphones,1,11.99,07/02/19 15:25,"316 6th St, Los Angeles, CA 90001" -231038,Lightning Charging Cable,1,14.95,07/25/19 17:03,"739 11th St, Los Angeles, CA 90001" -231039,AAA Batteries (4-pack),2,2.99,07/15/19 20:03,"9 West St, New York City, NY 10001" -231040,Vareebadd Phone,1,400,07/04/19 20:03,"502 12th St, New York City, NY 10001" -231041,Wired Headphones,1,11.99,07/24/19 10:40,"841 8th St, Seattle, WA 98101" -231042,27in 4K Gaming Monitor,1,389.99,07/14/19 11:40,"261 Jackson St, San Francisco, CA 94016" -231043,AAA Batteries (4-pack),1,2.99,07/10/19 19:36,"434 Washington St, Dallas, TX 75001" -231044,27in 4K Gaming Monitor,1,389.99,07/25/19 08:22,"518 1st St, Boston, MA 02215" -231045,Macbook Pro Laptop,1,1700,07/13/19 17:05,"406 Lincoln St, Boston, MA 02215" -231046,ThinkPad Laptop,1,999.99,07/17/19 19:44,"934 Main St, Atlanta, GA 30301" -231047,Flatscreen TV,1,300,07/02/19 12:36,"987 Chestnut St, San Francisco, CA 94016" -231048,AA Batteries (4-pack),1,3.84,07/16/19 07:38,"154 Maple St, Los Angeles, CA 90001" -231049,USB-C Charging Cable,1,11.95,07/15/19 10:32,"676 Adams St, Los Angeles, CA 90001" -231050,AAA Batteries (4-pack),1,2.99,07/07/19 12:15,"611 Sunset St, Boston, MA 02215" -231051,AAA Batteries (4-pack),1,2.99,07/04/19 15:52,"597 Spruce St, San Francisco, CA 94016" -231052,USB-C Charging Cable,1,11.95,07/10/19 06:27,"46 1st St, Dallas, TX 75001" -231053,20in Monitor,1,109.99,07/19/19 11:46,"330 7th St, Los Angeles, CA 90001" -231054,iPhone,1,700,07/21/19 17:15,"461 Meadow St, Boston, MA 02215" -231055,AA Batteries (4-pack),1,3.84,07/20/19 06:09,"69 Walnut St, San Francisco, CA 94016" -231056,Bose SoundSport Headphones,1,99.99,07/31/19 19:28,"423 Lake St, San Francisco, CA 94016" -231057,AA Batteries (4-pack),2,3.84,07/29/19 10:22,"543 Chestnut St, San Francisco, CA 94016" -231058,iPhone,1,700,07/28/19 12:05,"543 Walnut St, New York City, NY 10001" -231059,Bose SoundSport Headphones,1,99.99,07/21/19 16:50,"590 Washington St, San Francisco, CA 94016" -231060,AA Batteries (4-pack),1,3.84,07/01/19 14:08,"287 Pine St, San Francisco, CA 94016" -231060,AAA Batteries (4-pack),1,2.99,07/01/19 14:08,"287 Pine St, San Francisco, CA 94016" -231061,AAA Batteries (4-pack),1,2.99,07/20/19 18:44,"229 Highland St, San Francisco, CA 94016" -231062,Wired Headphones,1,11.99,07/05/19 08:41,"551 4th St, San Francisco, CA 94016" -231063,iPhone,1,700,07/18/19 16:55,"40 Highland St, Boston, MA 02215" -231064,27in FHD Monitor,1,149.99,07/12/19 11:20,"956 Lincoln St, Los Angeles, CA 90001" -231065,Wired Headphones,1,11.99,07/06/19 11:02,"242 Pine St, San Francisco, CA 94016" -231066,USB-C Charging Cable,2,11.95,07/31/19 22:44,"720 10th St, Seattle, WA 98101" -231067,USB-C Charging Cable,1,11.95,07/30/19 20:24,"878 Walnut St, Los Angeles, CA 90001" -231068,AAA Batteries (4-pack),1,2.99,07/13/19 08:18,"657 River St, Dallas, TX 75001" -231069,USB-C Charging Cable,1,11.95,07/02/19 19:35,"140 Ridge St, San Francisco, CA 94016" -231070,iPhone,1,700,07/18/19 19:51,"588 Meadow St, Boston, MA 02215" -231071,iPhone,1,700,07/03/19 21:44,"447 West St, San Francisco, CA 94016" -231072,Apple Airpods Headphones,1,150,07/14/19 16:57,"649 Center St, Dallas, TX 75001" -231073,Apple Airpods Headphones,1,150,07/08/19 13:45,"137 13th St, Atlanta, GA 30301" -231074,USB-C Charging Cable,2,11.95,07/04/19 20:41,"98 Johnson St, Los Angeles, CA 90001" -231075,Lightning Charging Cable,1,14.95,07/12/19 23:22,"801 Washington St, Atlanta, GA 30301" -231076,Bose SoundSport Headphones,1,99.99,07/02/19 10:29,"114 11th St, San Francisco, CA 94016" -231077,Wired Headphones,1,11.99,07/29/19 17:51,"267 14th St, Atlanta, GA 30301" -231077,Lightning Charging Cable,1,14.95,07/29/19 17:51,"267 14th St, Atlanta, GA 30301" -231078,AA Batteries (4-pack),1,3.84,07/20/19 12:19,"780 Lake St, New York City, NY 10001" -231079,Apple Airpods Headphones,1,150,07/04/19 08:41,"350 Jackson St, New York City, NY 10001" -231080,AA Batteries (4-pack),1,3.84,07/30/19 22:37,"517 Church St, San Francisco, CA 94016" -231081,USB-C Charging Cable,1,11.95,07/03/19 13:47,"693 Sunset St, San Francisco, CA 94016" -231082,27in FHD Monitor,1,149.99,07/02/19 20:31,"944 Lakeview St, Portland, OR 97035" -231083,Lightning Charging Cable,1,14.95,07/13/19 17:14,"877 14th St, San Francisco, CA 94016" -231084,USB-C Charging Cable,1,11.95,07/17/19 19:50,"211 North St, San Francisco, CA 94016" -231085,27in 4K Gaming Monitor,1,389.99,07/24/19 06:22,"909 Madison St, New York City, NY 10001" -231086,AAA Batteries (4-pack),1,2.99,07/19/19 22:06,"172 12th St, San Francisco, CA 94016" -231087,Wired Headphones,1,11.99,07/02/19 17:54,"391 13th St, San Francisco, CA 94016" -231088,Wired Headphones,1,11.99,07/12/19 11:54,"21 Jefferson St, Boston, MA 02215" -231089,27in FHD Monitor,1,149.99,07/17/19 17:16,"89 Walnut St, Boston, MA 02215" -231090,AA Batteries (4-pack),1,3.84,07/25/19 10:16,"261 Madison St, Seattle, WA 98101" -231091,AA Batteries (4-pack),1,3.84,07/17/19 13:38,"505 10th St, Portland, ME 04101" -231092,AAA Batteries (4-pack),2,2.99,07/10/19 11:44,"813 Church St, Dallas, TX 75001" -231093,Wired Headphones,1,11.99,07/18/19 09:11,"341 5th St, Dallas, TX 75001" -231094,AA Batteries (4-pack),1,3.84,07/19/19 22:20,"114 13th St, Boston, MA 02215" -231095,34in Ultrawide Monitor,1,379.99,07/11/19 19:19,"709 9th St, Atlanta, GA 30301" -231096,AAA Batteries (4-pack),2,2.99,07/05/19 11:15,"558 Maple St, San Francisco, CA 94016" -231097,Vareebadd Phone,1,400,07/03/19 10:47,"719 Adams St, Boston, MA 02215" -231097,USB-C Charging Cable,1,11.95,07/03/19 10:47,"719 Adams St, Boston, MA 02215" -231098,Lightning Charging Cable,1,14.95,07/14/19 08:16,"938 12th St, Los Angeles, CA 90001" -231099,Google Phone,1,600,07/11/19 10:25,"788 Hill St, New York City, NY 10001" -231100,Macbook Pro Laptop,1,1700,07/23/19 16:09,"975 Maple St, Atlanta, GA 30301" -231101,20in Monitor,1,109.99,07/19/19 08:33,"232 12th St, Atlanta, GA 30301" -231102,Lightning Charging Cable,1,14.95,07/21/19 12:25,"578 10th St, New York City, NY 10001" -231103,Lightning Charging Cable,1,14.95,07/08/19 07:30,"792 Cedar St, Boston, MA 02215" -231104,Google Phone,1,600,07/11/19 20:52,"14 12th St, San Francisco, CA 94016" -231105,Apple Airpods Headphones,1,150,07/18/19 17:32,"906 Johnson St, Atlanta, GA 30301" -231106,Apple Airpods Headphones,1,150,07/19/19 11:22,"312 Lincoln St, New York City, NY 10001" -231107,27in FHD Monitor,1,149.99,07/27/19 11:23,"210 Ridge St, Boston, MA 02215" -231108,27in 4K Gaming Monitor,1,389.99,07/02/19 14:42,"407 Hill St, San Francisco, CA 94016" -231109,27in 4K Gaming Monitor,1,389.99,07/15/19 19:57,"935 Pine St, Boston, MA 02215" -231110,Lightning Charging Cable,1,14.95,07/12/19 17:48,"63 Hickory St, Seattle, WA 98101" -231111,Lightning Charging Cable,1,14.95,07/29/19 21:14,"797 Spruce St, Los Angeles, CA 90001" -231112,34in Ultrawide Monitor,1,379.99,07/04/19 10:47,"612 Sunset St, Dallas, TX 75001" -231113,iPhone,1,700,07/17/19 20:10,"131 Chestnut St, Boston, MA 02215" -231114,iPhone,1,700,07/11/19 15:12,"922 12th St, San Francisco, CA 94016" -231114,Lightning Charging Cable,1,14.95,07/11/19 15:12,"922 12th St, San Francisco, CA 94016" -231115,USB-C Charging Cable,1,11.95,07/27/19 17:55,"753 7th St, San Francisco, CA 94016" -231116,Google Phone,1,600,07/27/19 19:35,"639 1st St, Atlanta, GA 30301" -231117,USB-C Charging Cable,1,11.95,07/16/19 08:06,"466 Lakeview St, San Francisco, CA 94016" -231118,20in Monitor,1,109.99,07/29/19 20:15,"844 Hickory St, Portland, OR 97035" -231119,Wired Headphones,1,11.99,07/30/19 15:32,"615 Ridge St, Dallas, TX 75001" -231120,AA Batteries (4-pack),1,3.84,07/17/19 18:14,"440 Spruce St, Boston, MA 02215" -231121,Bose SoundSport Headphones,1,99.99,07/09/19 23:08,"893 River St, New York City, NY 10001" -231122,AA Batteries (4-pack),1,3.84,07/04/19 13:05,"151 Forest St, Boston, MA 02215" -231123,Lightning Charging Cable,1,14.95,07/07/19 13:44,"456 Church St, Boston, MA 02215" -231124,USB-C Charging Cable,1,11.95,07/01/19 12:45,"536 Ridge St, Los Angeles, CA 90001" -231125,20in Monitor,1,109.99,07/28/19 08:21,"117 14th St, Dallas, TX 75001" -231126,Wired Headphones,1,11.99,07/11/19 20:52,"266 Meadow St, Boston, MA 02215" -231127,Wired Headphones,1,11.99,07/27/19 18:37,"790 10th St, San Francisco, CA 94016" -231128,Flatscreen TV,1,300,07/28/19 09:46,"735 Elm St, San Francisco, CA 94016" -231129,Flatscreen TV,1,300,07/06/19 11:34,"381 8th St, Portland, OR 97035" -231130,Lightning Charging Cable,1,14.95,07/15/19 01:32,"706 Willow St, Seattle, WA 98101" -231131,AA Batteries (4-pack),3,3.84,07/04/19 07:21,"993 Johnson St, Boston, MA 02215" -231132,27in 4K Gaming Monitor,1,389.99,07/31/19 15:43,"769 4th St, San Francisco, CA 94016" -231133,Vareebadd Phone,1,400,07/30/19 17:14,"652 Main St, Los Angeles, CA 90001" -231133,Wired Headphones,1,11.99,07/30/19 17:14,"652 Main St, Los Angeles, CA 90001" -231134,AA Batteries (4-pack),1,3.84,07/06/19 18:08,"220 14th St, New York City, NY 10001" -231135,AA Batteries (4-pack),1,3.84,07/19/19 00:26,"428 Washington St, New York City, NY 10001" -231136,AAA Batteries (4-pack),1,2.99,07/29/19 22:10,"772 Pine St, Portland, OR 97035" -231137,AA Batteries (4-pack),1,3.84,07/10/19 21:57,"435 9th St, New York City, NY 10001" -231138,Google Phone,1,600,07/26/19 10:42,"369 Hickory St, Atlanta, GA 30301" -231139,Lightning Charging Cable,1,14.95,07/15/19 12:11,"377 Jefferson St, Boston, MA 02215" -231140,USB-C Charging Cable,1,11.95,07/29/19 13:38,"350 Hill St, New York City, NY 10001" -231141,Wired Headphones,2,11.99,07/07/19 14:12,"880 Main St, San Francisco, CA 94016" -231142,USB-C Charging Cable,1,11.95,07/18/19 21:06,"810 Forest St, Dallas, TX 75001" -231143,Bose SoundSport Headphones,1,99.99,07/28/19 10:38,"550 Forest St, San Francisco, CA 94016" -231144,Google Phone,1,600,07/16/19 12:38,"210 5th St, Boston, MA 02215" -231145,AA Batteries (4-pack),3,3.84,07/14/19 14:00,"975 Johnson St, San Francisco, CA 94016" -,,,,, -231146,AA Batteries (4-pack),1,3.84,07/23/19 12:14,"570 Madison St, Seattle, WA 98101" -231147,Lightning Charging Cable,1,14.95,07/06/19 07:11,"794 Maple St, San Francisco, CA 94016" -231148,ThinkPad Laptop,1,999.99,07/06/19 22:45,"335 Lakeview St, Seattle, WA 98101" -231149,Google Phone,1,600,07/21/19 21:07,"691 Wilson St, Portland, OR 97035" -231150,USB-C Charging Cable,1,11.95,07/20/19 21:41,"850 Ridge St, San Francisco, CA 94016" -231151,Lightning Charging Cable,1,14.95,07/10/19 16:43,"876 Main St, San Francisco, CA 94016" -231152,Flatscreen TV,1,300,07/06/19 06:10,"204 Wilson St, San Francisco, CA 94016" -231153,AAA Batteries (4-pack),2,2.99,07/11/19 11:44,"678 Main St, Los Angeles, CA 90001" -231154,Wired Headphones,1,11.99,07/26/19 18:36,"24 North St, Atlanta, GA 30301" -231155,Apple Airpods Headphones,1,150,07/12/19 22:41,"482 7th St, New York City, NY 10001" -231156,USB-C Charging Cable,1,11.95,07/04/19 21:52,"599 9th St, San Francisco, CA 94016" -231157,Lightning Charging Cable,1,14.95,07/08/19 03:49,"777 6th St, Seattle, WA 98101" -231158,Flatscreen TV,1,300,07/24/19 14:11,"129 Jefferson St, Dallas, TX 75001" -231158,Lightning Charging Cable,1,14.95,07/24/19 14:11,"129 Jefferson St, Dallas, TX 75001" -231159,USB-C Charging Cable,1,11.95,07/27/19 11:29,"990 Lake St, San Francisco, CA 94016" -231160,34in Ultrawide Monitor,1,379.99,07/25/19 02:04,"326 5th St, New York City, NY 10001" -231161,AA Batteries (4-pack),1,3.84,07/28/19 20:11,"362 Madison St, San Francisco, CA 94016" -231162,20in Monitor,1,109.99,07/18/19 19:14,"658 Walnut St, Boston, MA 02215" -231163,AAA Batteries (4-pack),1,2.99,07/23/19 10:23,"262 Center St, Boston, MA 02215" -231164,Wired Headphones,2,11.99,07/22/19 11:10,"446 Cherry St, New York City, NY 10001" -231165,iPhone,1,700,07/11/19 00:35,"164 10th St, Los Angeles, CA 90001" -231166,Lightning Charging Cable,1,14.95,07/10/19 11:02,"865 Spruce St, Portland, OR 97035" -231167,Lightning Charging Cable,1,14.95,07/25/19 13:43,"963 9th St, Portland, OR 97035" -231168,USB-C Charging Cable,1,11.95,07/25/19 22:05,"661 Madison St, Atlanta, GA 30301" -231169,34in Ultrawide Monitor,1,379.99,07/26/19 17:04,"612 6th St, Seattle, WA 98101" -231170,AAA Batteries (4-pack),2,2.99,07/02/19 11:40,"671 Willow St, Austin, TX 73301" -231171,Macbook Pro Laptop,1,1700,07/04/19 19:39,"455 Park St, Boston, MA 02215" -231172,AA Batteries (4-pack),2,3.84,07/05/19 18:43,"128 Church St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -231173,iPhone,1,700,07/26/19 19:14,"273 Jefferson St, New York City, NY 10001" -231174,USB-C Charging Cable,2,11.95,07/16/19 09:12,"102 4th St, Boston, MA 02215" -231175,27in FHD Monitor,1,149.99,07/18/19 21:10,"171 South St, Dallas, TX 75001" -231176,Flatscreen TV,1,300,07/04/19 09:10,"494 Center St, Los Angeles, CA 90001" -231177,AAA Batteries (4-pack),1,2.99,07/12/19 15:37,"167 1st St, New York City, NY 10001" -231178,Google Phone,1,600,07/15/19 06:43,"456 Chestnut St, Dallas, TX 75001" -231179,AA Batteries (4-pack),1,3.84,07/14/19 11:26,"808 6th St, Atlanta, GA 30301" -231180,AA Batteries (4-pack),1,3.84,07/13/19 13:03,"904 Main St, Atlanta, GA 30301" -231181,AAA Batteries (4-pack),1,2.99,07/23/19 17:25,"132 Sunset St, Portland, OR 97035" -231182,AAA Batteries (4-pack),1,2.99,07/19/19 19:35,"199 Pine St, New York City, NY 10001" -231183,USB-C Charging Cable,1,11.95,07/14/19 13:55,"534 Willow St, New York City, NY 10001" -231184,20in Monitor,1,109.99,07/05/19 20:39,"912 Chestnut St, San Francisco, CA 94016" -231185,34in Ultrawide Monitor,1,379.99,07/28/19 15:38,"907 4th St, San Francisco, CA 94016" -231186,ThinkPad Laptop,1,999.99,07/04/19 13:54,"878 11th St, Atlanta, GA 30301" -231187,AA Batteries (4-pack),1,3.84,07/22/19 13:33,"144 10th St, Dallas, TX 75001" -231188,AA Batteries (4-pack),1,3.84,07/30/19 14:46,"719 Lakeview St, Los Angeles, CA 90001" -231189,34in Ultrawide Monitor,1,379.99,07/19/19 15:54,"741 Center St, San Francisco, CA 94016" -231190,Wired Headphones,1,11.99,07/14/19 18:31,"771 Pine St, New York City, NY 10001" -231191,Wired Headphones,1,11.99,07/02/19 00:22,"563 Lake St, New York City, NY 10001" -231192,Bose SoundSport Headphones,1,99.99,07/02/19 22:34,"155 Washington St, San Francisco, CA 94016" -231193,Flatscreen TV,1,300,07/30/19 22:49,"820 5th St, Dallas, TX 75001" -231194,Apple Airpods Headphones,1,150,07/22/19 20:05,"682 Madison St, New York City, NY 10001" -231195,Bose SoundSport Headphones,1,99.99,07/20/19 20:56,"779 Jefferson St, San Francisco, CA 94016" -231196,USB-C Charging Cable,1,11.95,07/14/19 09:59,"712 Sunset St, Los Angeles, CA 90001" -231197,Macbook Pro Laptop,1,1700,07/21/19 20:43,"90 14th St, Austin, TX 73301" -231198,20in Monitor,1,109.99,07/04/19 18:33,"432 4th St, Los Angeles, CA 90001" -231199,USB-C Charging Cable,1,11.95,07/11/19 19:39,"57 Elm St, Los Angeles, CA 90001" -231200,Apple Airpods Headphones,1,150,07/09/19 19:39,"637 2nd St, Boston, MA 02215" -231201,ThinkPad Laptop,1,999.99,07/16/19 09:13,"355 4th St, Seattle, WA 98101" -231202,Apple Airpods Headphones,1,150,07/24/19 11:57,"295 Highland St, New York City, NY 10001" -231203,Wired Headphones,2,11.99,07/21/19 19:42,"646 Lincoln St, Dallas, TX 75001" -231204,27in 4K Gaming Monitor,1,389.99,07/14/19 20:18,"32 Washington St, Seattle, WA 98101" -231205,Wired Headphones,1,11.99,07/10/19 19:37,"233 6th St, San Francisco, CA 94016" -231206,Apple Airpods Headphones,1,150,07/03/19 06:34,"292 4th St, Boston, MA 02215" -231207,AA Batteries (4-pack),1,3.84,07/19/19 16:56,"880 Ridge St, Los Angeles, CA 90001" -231208,Flatscreen TV,1,300,07/19/19 14:35,"956 Cherry St, Austin, TX 73301" -231209,27in FHD Monitor,1,149.99,07/30/19 18:25,"289 South St, San Francisco, CA 94016" -231210,27in FHD Monitor,1,149.99,07/25/19 13:26,"301 Cherry St, San Francisco, CA 94016" -231211,USB-C Charging Cable,1,11.95,07/13/19 20:52,"377 Adams St, Austin, TX 73301" -231212,iPhone,1,700,07/22/19 12:24,"30 10th St, New York City, NY 10001" -231213,AAA Batteries (4-pack),1,2.99,07/06/19 19:34,"696 Chestnut St, Boston, MA 02215" -231214,Bose SoundSport Headphones,1,99.99,07/28/19 18:14,"769 Cedar St, Los Angeles, CA 90001" -231215,Bose SoundSport Headphones,1,99.99,07/15/19 16:54,"161 12th St, San Francisco, CA 94016" -231216,Flatscreen TV,1,300,07/15/19 00:34,"984 Hill St, Los Angeles, CA 90001" -231217,Apple Airpods Headphones,1,150,07/22/19 20:38,"856 6th St, Boston, MA 02215" -231218,ThinkPad Laptop,1,999.99,07/03/19 22:31,"898 11th St, Dallas, TX 75001" -231219,AA Batteries (4-pack),1,3.84,07/20/19 11:36,"745 Forest St, San Francisco, CA 94016" -231220,27in FHD Monitor,1,149.99,07/04/19 12:22,"859 Washington St, Dallas, TX 75001" -231221,iPhone,1,700,07/03/19 22:09,"950 Elm St, San Francisco, CA 94016" -231222,ThinkPad Laptop,1,999.99,07/13/19 15:18,"792 Cherry St, New York City, NY 10001" -231223,Bose SoundSport Headphones,1,99.99,07/31/19 21:55,"668 Cherry St, Los Angeles, CA 90001" -231224,iPhone,1,700,07/21/19 23:08,"441 Washington St, Portland, OR 97035" -231225,iPhone,1,700,07/06/19 09:53,"650 South St, San Francisco, CA 94016" -231226,Wired Headphones,1,11.99,07/29/19 12:20,"995 South St, San Francisco, CA 94016" -231227,iPhone,1,700,07/19/19 14:26,"43 Spruce St, Austin, TX 73301" -231228,Wired Headphones,1,11.99,07/30/19 19:30,"770 11th St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -231229,Lightning Charging Cable,1,14.95,07/09/19 05:19,"111 Jefferson St, San Francisco, CA 94016" -231230,34in Ultrawide Monitor,1,379.99,07/23/19 13:21,"948 4th St, New York City, NY 10001" -231231,AAA Batteries (4-pack),1,2.99,07/20/19 12:45,"417 Maple St, Dallas, TX 75001" -231232,AAA Batteries (4-pack),1,2.99,07/13/19 09:37,"562 Center St, Dallas, TX 75001" -231233,iPhone,1,700,07/23/19 14:02,"382 Meadow St, Los Angeles, CA 90001" -231234,AAA Batteries (4-pack),1,2.99,07/17/19 21:27,"749 West St, Los Angeles, CA 90001" -231235,Macbook Pro Laptop,1,1700,07/18/19 05:07,"308 10th St, Seattle, WA 98101" -231236,AAA Batteries (4-pack),1,2.99,07/16/19 03:22,"141 4th St, Dallas, TX 75001" -231237,AAA Batteries (4-pack),1,2.99,07/29/19 18:48,"350 Washington St, San Francisco, CA 94016" -231238,AAA Batteries (4-pack),2,2.99,07/15/19 18:09,"29 Lincoln St, Los Angeles, CA 90001" -231239,AAA Batteries (4-pack),1,2.99,07/14/19 10:43,"572 Lakeview St, Austin, TX 73301" -231240,AAA Batteries (4-pack),1,2.99,07/26/19 07:54,"477 Lake St, San Francisco, CA 94016" -231241,iPhone,1,700,07/10/19 10:43,"53 Lake St, San Francisco, CA 94016" -231242,Wired Headphones,1,11.99,07/08/19 08:34,"712 Cherry St, New York City, NY 10001" -231243,AA Batteries (4-pack),2,3.84,07/28/19 02:59,"750 Elm St, San Francisco, CA 94016" -231244,Apple Airpods Headphones,1,150,07/22/19 18:18,"44 Wilson St, San Francisco, CA 94016" -231245,Wired Headphones,1,11.99,07/27/19 16:52,"665 4th St, Atlanta, GA 30301" -231246,Google Phone,1,600,07/24/19 21:06,"925 2nd St, San Francisco, CA 94016" -231247,USB-C Charging Cable,1,11.95,07/19/19 18:36,"955 River St, New York City, NY 10001" -231248,34in Ultrawide Monitor,1,379.99,07/02/19 20:09,"906 Lakeview St, New York City, NY 10001" -231249,Wired Headphones,1,11.99,07/20/19 23:39,"678 8th St, New York City, NY 10001" -231250,Wired Headphones,1,11.99,07/29/19 13:00,"126 Lincoln St, Boston, MA 02215" -231251,Apple Airpods Headphones,1,150,07/25/19 20:37,"914 Spruce St, San Francisco, CA 94016" -231252,USB-C Charging Cable,1,11.95,07/19/19 02:52,"403 North St, Los Angeles, CA 90001" -231253,LG Dryer,1,600.0,07/28/19 08:51,"754 1st St, Los Angeles, CA 90001" -231254,AAA Batteries (4-pack),1,2.99,07/11/19 13:41,"53 Willow St, New York City, NY 10001" -231254,AAA Batteries (4-pack),1,2.99,07/11/19 13:41,"53 Willow St, New York City, NY 10001" -231255,Lightning Charging Cable,1,14.95,07/10/19 10:33,"603 Willow St, New York City, NY 10001" -231256,iPhone,1,700,07/06/19 11:50,"129 Jackson St, Los Angeles, CA 90001" -231256,USB-C Charging Cable,1,11.95,07/06/19 11:50,"129 Jackson St, Los Angeles, CA 90001" -231257,USB-C Charging Cable,1,11.95,07/24/19 16:21,"263 Center St, San Francisco, CA 94016" -231258,Apple Airpods Headphones,1,150,07/27/19 13:09,"475 Wilson St, New York City, NY 10001" -231259,Lightning Charging Cable,1,14.95,07/30/19 22:22,"528 Pine St, Portland, OR 97035" -231260,Apple Airpods Headphones,1,150,07/21/19 23:40,"606 7th St, Los Angeles, CA 90001" -231260,Lightning Charging Cable,1,14.95,07/21/19 23:40,"606 7th St, Los Angeles, CA 90001" -231261,Google Phone,1,600,07/12/19 10:12,"544 14th St, San Francisco, CA 94016" -231262,USB-C Charging Cable,1,11.95,07/03/19 09:24,"104 Ridge St, Los Angeles, CA 90001" -231263,ThinkPad Laptop,1,999.99,07/30/19 11:22,"237 Pine St, San Francisco, CA 94016" -231264,AAA Batteries (4-pack),2,2.99,07/17/19 10:57,"681 10th St, Portland, ME 04101" -231265,27in FHD Monitor,1,149.99,07/03/19 16:29,"256 5th St, Atlanta, GA 30301" -231266,Wired Headphones,1,11.99,07/26/19 00:24,"947 Church St, Dallas, TX 75001" -231267,Wired Headphones,1,11.99,07/17/19 02:34,"492 River St, San Francisco, CA 94016" -231268,Google Phone,1,600,07/21/19 21:16,"717 Madison St, Atlanta, GA 30301" -231268,Bose SoundSport Headphones,1,99.99,07/21/19 21:16,"717 Madison St, Atlanta, GA 30301" -231269,AA Batteries (4-pack),1,3.84,07/21/19 11:31,"422 Hill St, Los Angeles, CA 90001" -231270,USB-C Charging Cable,1,11.95,07/16/19 23:01,"14 Spruce St, Seattle, WA 98101" -231271,Wired Headphones,1,11.99,07/01/19 17:32,"376 Center St, Portland, OR 97035" -231272,iPhone,1,700,07/18/19 13:34,"227 Lincoln St, Los Angeles, CA 90001" -231273,Flatscreen TV,1,300,07/01/19 13:24,"199 North St, Atlanta, GA 30301" -231274,iPhone,1,700,07/18/19 11:23,"113 1st St, Atlanta, GA 30301" -231275,LG Dryer,1,600.0,07/17/19 14:24,"760 2nd St, San Francisco, CA 94016" -231276,AAA Batteries (4-pack),6,2.99,07/20/19 18:39,"485 Forest St, Portland, OR 97035" -231277,Wired Headphones,1,11.99,07/19/19 19:55,"163 Highland St, New York City, NY 10001" -231278,Wired Headphones,1,11.99,07/16/19 12:55,"211 Madison St, Portland, ME 04101" -231279,AAA Batteries (4-pack),1,2.99,07/29/19 13:12,"811 Church St, Portland, OR 97035" -231280,AAA Batteries (4-pack),1,2.99,07/04/19 11:10,"338 Hickory St, Los Angeles, CA 90001" -231281,Apple Airpods Headphones,1,150,07/06/19 13:22,"651 Lakeview St, Austin, TX 73301" -231282,iPhone,1,700,07/13/19 13:38,"110 14th St, Los Angeles, CA 90001" -231283,Lightning Charging Cable,1,14.95,07/06/19 17:14,"110 Park St, Atlanta, GA 30301" -231284,AAA Batteries (4-pack),1,2.99,07/30/19 12:49,"540 14th St, Los Angeles, CA 90001" -231285,Flatscreen TV,1,300,07/10/19 13:22,"869 Lake St, San Francisco, CA 94016" -231286,Wired Headphones,1,11.99,07/18/19 06:04,"798 Washington St, Austin, TX 73301" -231287,ThinkPad Laptop,1,999.99,07/07/19 20:12,"215 West St, San Francisco, CA 94016" -231288,27in 4K Gaming Monitor,1,389.99,07/05/19 20:02,"138 13th St, San Francisco, CA 94016" -231289,Bose SoundSport Headphones,1,99.99,07/08/19 18:02,"325 Chestnut St, Los Angeles, CA 90001" -231290,USB-C Charging Cable,1,11.95,07/28/19 09:03,"773 9th St, Austin, TX 73301" -231291,Wired Headphones,1,11.99,07/30/19 11:50,"836 Johnson St, New York City, NY 10001" -231292,USB-C Charging Cable,2,11.95,07/09/19 19:59,"146 Chestnut St, Los Angeles, CA 90001" -231293,Apple Airpods Headphones,1,150,07/13/19 00:18,"323 9th St, Boston, MA 02215" -231294,27in 4K Gaming Monitor,1,389.99,07/14/19 16:02,"50 West St, Atlanta, GA 30301" -231295,Lightning Charging Cable,1,14.95,07/19/19 10:46,"778 Lakeview St, San Francisco, CA 94016" -231296,AAA Batteries (4-pack),1,2.99,07/29/19 18:15,"8 Pine St, San Francisco, CA 94016" -231297,AAA Batteries (4-pack),1,2.99,07/20/19 20:47,"864 Park St, Austin, TX 73301" -231298,iPhone,1,700,07/18/19 20:32,"293 Elm St, San Francisco, CA 94016" -231299,Lightning Charging Cable,1,14.95,07/29/19 08:21,"412 Park St, Los Angeles, CA 90001" -231300,Lightning Charging Cable,1,14.95,07/25/19 01:34,"344 Hickory St, Los Angeles, CA 90001" -231301,iPhone,1,700,07/29/19 09:18,"489 Main St, San Francisco, CA 94016" -231302,USB-C Charging Cable,1,11.95,07/10/19 22:08,"793 Jackson St, Dallas, TX 75001" -231303,AA Batteries (4-pack),2,3.84,07/14/19 18:42,"382 Chestnut St, Portland, OR 97035" -231304,Lightning Charging Cable,1,14.95,07/11/19 15:28,"57 Meadow St, Austin, TX 73301" -231305,AAA Batteries (4-pack),2,2.99,07/19/19 15:07,"988 Lake St, San Francisco, CA 94016" -231306,Macbook Pro Laptop,1,1700,07/18/19 07:52,"306 Sunset St, Boston, MA 02215" -231307,Apple Airpods Headphones,1,150,07/01/19 13:16,"644 Sunset St, Dallas, TX 75001" -231308,Macbook Pro Laptop,1,1700,07/28/19 22:11,"628 Church St, Portland, OR 97035" -231309,34in Ultrawide Monitor,1,379.99,07/09/19 18:18,"121 12th St, Seattle, WA 98101" -231310,Lightning Charging Cable,1,14.95,07/14/19 08:48,"797 Hickory St, Atlanta, GA 30301" -231311,20in Monitor,1,109.99,07/04/19 21:36,"190 Madison St, Portland, OR 97035" -231312,27in FHD Monitor,1,149.99,07/07/19 16:25,"538 10th St, Austin, TX 73301" -231313,Lightning Charging Cable,1,14.95,07/20/19 18:15,"777 10th St, San Francisco, CA 94016" -231314,Lightning Charging Cable,1,14.95,07/09/19 21:19,"270 Sunset St, Atlanta, GA 30301" -231315,USB-C Charging Cable,1,11.95,07/01/19 22:34,"593 Pine St, Boston, MA 02215" -231316,Lightning Charging Cable,1,14.95,07/20/19 12:19,"215 Adams St, San Francisco, CA 94016" -231317,Bose SoundSport Headphones,1,99.99,07/20/19 18:30,"838 Washington St, San Francisco, CA 94016" -231318,Lightning Charging Cable,1,14.95,07/03/19 14:32,"190 Johnson St, Los Angeles, CA 90001" -231319,27in 4K Gaming Monitor,1,389.99,07/15/19 00:04,"33 Willow St, Los Angeles, CA 90001" -231320,iPhone,1,700,07/16/19 15:50,"820 Forest St, Dallas, TX 75001" -231321,Lightning Charging Cable,1,14.95,07/11/19 09:23,"704 Church St, Atlanta, GA 30301" -231322,USB-C Charging Cable,1,11.95,07/03/19 11:47,"289 Walnut St, Seattle, WA 98101" -231323,AAA Batteries (4-pack),1,2.99,07/20/19 22:07,"713 Lake St, Atlanta, GA 30301" -231324,Lightning Charging Cable,1,14.95,07/21/19 19:26,"48 6th St, San Francisco, CA 94016" -231325,AAA Batteries (4-pack),2,2.99,07/29/19 08:48,"646 Hickory St, Los Angeles, CA 90001" -231326,27in FHD Monitor,1,149.99,07/09/19 12:03,"692 Church St, Boston, MA 02215" -231327,Apple Airpods Headphones,1,150,07/02/19 09:47,"603 Adams St, San Francisco, CA 94016" -231328,Wired Headphones,2,11.99,07/22/19 19:21,"258 River St, Los Angeles, CA 90001" -231329,Macbook Pro Laptop,1,1700,07/31/19 06:56,"255 Jackson St, Los Angeles, CA 90001" -231330,Lightning Charging Cable,1,14.95,07/19/19 01:37,"748 Willow St, Los Angeles, CA 90001" -231331,Lightning Charging Cable,1,14.95,07/19/19 01:08,"34 1st St, Boston, MA 02215" -231332,Lightning Charging Cable,1,14.95,07/16/19 17:17,"437 Meadow St, San Francisco, CA 94016" -231333,34in Ultrawide Monitor,1,379.99,07/14/19 23:26,"335 Main St, Seattle, WA 98101" -231334,27in FHD Monitor,1,149.99,07/23/19 10:35,"558 Highland St, Los Angeles, CA 90001" -231335,34in Ultrawide Monitor,1,379.99,07/24/19 16:53,"613 Madison St, Austin, TX 73301" -231336,Macbook Pro Laptop,1,1700,07/17/19 17:30,"777 Lake St, San Francisco, CA 94016" -231337,34in Ultrawide Monitor,1,379.99,07/22/19 21:43,"213 Cedar St, Dallas, TX 75001" -231338,USB-C Charging Cable,1,11.95,07/09/19 18:21,"561 4th St, San Francisco, CA 94016" -231338,ThinkPad Laptop,1,999.99,07/09/19 18:21,"561 4th St, San Francisco, CA 94016" -231339,AA Batteries (4-pack),1,3.84,07/13/19 20:41,"729 11th St, Boston, MA 02215" -231340,iPhone,1,700,07/21/19 11:46,"820 Sunset St, San Francisco, CA 94016" -231341,AA Batteries (4-pack),1,3.84,07/01/19 14:28,"123 Adams St, Portland, OR 97035" -231342,20in Monitor,1,109.99,07/01/19 14:18,"367 7th St, San Francisco, CA 94016" -231343,AAA Batteries (4-pack),2,2.99,07/05/19 05:49,"765 Meadow St, Atlanta, GA 30301" -231344,AAA Batteries (4-pack),1,2.99,07/07/19 20:27,"748 Willow St, San Francisco, CA 94016" -231345,Lightning Charging Cable,1,14.95,07/06/19 09:36,"2 Pine St, New York City, NY 10001" -,,,,, -231346,iPhone,1,700,07/31/19 13:44,"356 Willow St, Atlanta, GA 30301" -231347,USB-C Charging Cable,2,11.95,07/21/19 11:09,"618 Lincoln St, San Francisco, CA 94016" -231348,27in FHD Monitor,1,149.99,07/02/19 11:07,"766 Wilson St, Los Angeles, CA 90001" -231349,AA Batteries (4-pack),1,3.84,07/22/19 12:19,"919 Hill St, Austin, TX 73301" -231350,USB-C Charging Cable,1,11.95,07/28/19 13:55,"678 13th St, San Francisco, CA 94016" -231351,Apple Airpods Headphones,1,150,07/22/19 12:12,"773 Maple St, Portland, OR 97035" -231352,USB-C Charging Cable,1,11.95,07/18/19 08:01,"567 4th St, Los Angeles, CA 90001" -231353,ThinkPad Laptop,1,999.99,07/27/19 08:44,"601 Johnson St, Los Angeles, CA 90001" -231354,USB-C Charging Cable,1,11.95,07/05/19 23:58,"336 South St, New York City, NY 10001" -231355,Lightning Charging Cable,1,14.95,07/05/19 21:17,"238 4th St, New York City, NY 10001" -231356,AA Batteries (4-pack),1,3.84,07/22/19 20:53,"22 Lakeview St, Dallas, TX 75001" -231357,Google Phone,1,600,07/29/19 20:12,"182 Forest St, Boston, MA 02215" -231358,AA Batteries (4-pack),1,3.84,07/10/19 20:21,"785 10th St, San Francisco, CA 94016" -231359,34in Ultrawide Monitor,1,379.99,07/14/19 12:38,"198 Washington St, Seattle, WA 98101" -231360,Google Phone,1,600,07/19/19 20:39,"231 Church St, Boston, MA 02215" -231361,iPhone,1,700,07/06/19 23:02,"534 13th St, Los Angeles, CA 90001" -231361,Lightning Charging Cable,1,14.95,07/06/19 23:02,"534 13th St, Los Angeles, CA 90001" -231362,AA Batteries (4-pack),1,3.84,07/31/19 17:18,"84 Adams St, San Francisco, CA 94016" -231363,AAA Batteries (4-pack),2,2.99,07/20/19 16:29,"862 West St, Seattle, WA 98101" -231364,27in 4K Gaming Monitor,1,389.99,07/29/19 12:24,"939 Chestnut St, San Francisco, CA 94016" -231365,Google Phone,1,600,07/19/19 12:10,"890 Lakeview St, Boston, MA 02215" -231366,Lightning Charging Cable,2,14.95,07/07/19 17:08,"416 Jackson St, New York City, NY 10001" -231367,Macbook Pro Laptop,1,1700,07/30/19 10:29,"683 10th St, Boston, MA 02215" -231368,AAA Batteries (4-pack),2,2.99,07/02/19 13:43,"968 14th St, San Francisco, CA 94016" -231369,AAA Batteries (4-pack),1,2.99,07/22/19 17:56,"637 Cherry St, San Francisco, CA 94016" -231370,USB-C Charging Cable,1,11.95,07/12/19 18:43,"441 2nd St, San Francisco, CA 94016" -231371,AA Batteries (4-pack),1,3.84,07/11/19 22:37,"699 Elm St, Atlanta, GA 30301" -231372,AAA Batteries (4-pack),1,2.99,07/08/19 14:42,"951 Walnut St, Boston, MA 02215" -231373,Wired Headphones,1,11.99,07/17/19 11:55,"449 5th St, San Francisco, CA 94016" -231374,Lightning Charging Cable,1,14.95,07/13/19 13:48,"723 Church St, Boston, MA 02215" -231375,Wired Headphones,1,11.99,07/25/19 20:49,"626 2nd St, Seattle, WA 98101" -231376,Bose SoundSport Headphones,1,99.99,07/15/19 22:20,"82 Chestnut St, Atlanta, GA 30301" -231377,Wired Headphones,1,11.99,07/27/19 16:47,"947 Forest St, San Francisco, CA 94016" -231378,Apple Airpods Headphones,1,150,07/14/19 13:29,"337 Sunset St, New York City, NY 10001" -231379,AA Batteries (4-pack),1,3.84,07/27/19 17:02,"305 Jefferson St, New York City, NY 10001" -231380,Bose SoundSport Headphones,1,99.99,07/23/19 10:20,"820 Spruce St, Austin, TX 73301" -231381,Google Phone,1,600,07/21/19 13:07,"441 Adams St, Dallas, TX 75001" -231382,AAA Batteries (4-pack),1,2.99,07/12/19 09:19,"957 Main St, New York City, NY 10001" -231383,Lightning Charging Cable,1,14.95,07/23/19 18:44,"629 River St, Los Angeles, CA 90001" -231384,Apple Airpods Headphones,1,150,07/03/19 18:33,"581 Madison St, Los Angeles, CA 90001" -231385,iPhone,1,700,07/01/19 13:13,"98 Jackson St, Portland, OR 97035" -231386,27in 4K Gaming Monitor,1,389.99,07/24/19 11:13,"268 10th St, New York City, NY 10001" -231387,USB-C Charging Cable,1,11.95,07/28/19 11:25,"897 Johnson St, New York City, NY 10001" -231388,34in Ultrawide Monitor,1,379.99,07/26/19 15:05,"780 10th St, Boston, MA 02215" -231389,USB-C Charging Cable,1,11.95,07/31/19 22:17,"309 Sunset St, Dallas, TX 75001" -231390,Wired Headphones,1,11.99,07/26/19 20:17,"183 River St, Los Angeles, CA 90001" -231391,AAA Batteries (4-pack),1,2.99,07/24/19 13:40,"327 Lake St, Atlanta, GA 30301" -231392,AAA Batteries (4-pack),1,2.99,07/29/19 11:06,"155 1st St, Los Angeles, CA 90001" -231393,Wired Headphones,1,11.99,07/28/19 08:37,"132 9th St, Dallas, TX 75001" -231394,Lightning Charging Cable,1,14.95,07/26/19 23:33,"967 Ridge St, Atlanta, GA 30301" -231395,AAA Batteries (4-pack),1,2.99,07/13/19 20:08,"283 10th St, San Francisco, CA 94016" -231396,20in Monitor,1,109.99,07/06/19 17:38,"656 Washington St, San Francisco, CA 94016" -231397,Wired Headphones,1,11.99,07/18/19 09:45,"273 Park St, New York City, NY 10001" -231398,USB-C Charging Cable,1,11.95,07/25/19 09:36,"423 2nd St, San Francisco, CA 94016" -231399,USB-C Charging Cable,1,11.95,07/28/19 23:45,"145 5th St, New York City, NY 10001" -231400,Wired Headphones,1,11.99,07/05/19 14:54,"534 Meadow St, San Francisco, CA 94016" -231401,Macbook Pro Laptop,1,1700,07/08/19 19:16,"164 Lake St, New York City, NY 10001" -231402,USB-C Charging Cable,1,11.95,07/15/19 08:54,"724 Willow St, New York City, NY 10001" -231403,Lightning Charging Cable,1,14.95,07/07/19 02:00,"158 Hill St, San Francisco, CA 94016" -231404,AA Batteries (4-pack),1,3.84,07/13/19 08:51,"93 Highland St, Dallas, TX 75001" -231405,Google Phone,1,600,07/02/19 12:11,"703 11th St, Boston, MA 02215" -231405,USB-C Charging Cable,1,11.95,07/02/19 12:11,"703 11th St, Boston, MA 02215" -231406,Bose SoundSport Headphones,1,99.99,07/27/19 06:35,"554 Cherry St, Austin, TX 73301" -231407,27in 4K Gaming Monitor,1,389.99,07/25/19 12:16,"812 10th St, Los Angeles, CA 90001" -231408,USB-C Charging Cable,1,11.95,07/07/19 14:58,"166 Church St, San Francisco, CA 94016" -231409,Google Phone,1,600,07/20/19 10:43,"455 Washington St, Seattle, WA 98101" -231410,Apple Airpods Headphones,1,150,07/24/19 12:08,"57 5th St, Boston, MA 02215" -231411,Bose SoundSport Headphones,1,99.99,07/25/19 19:50,"399 Lincoln St, Austin, TX 73301" -231412,Wired Headphones,1,11.99,07/01/19 10:30,"911 River St, Boston, MA 02215" -231413,AAA Batteries (4-pack),1,2.99,07/02/19 17:27,"994 Sunset St, New York City, NY 10001" -231414,Apple Airpods Headphones,1,150,07/09/19 15:19,"48 1st St, San Francisco, CA 94016" -231415,Lightning Charging Cable,1,14.95,07/01/19 17:47,"495 Main St, Portland, OR 97035" -231416,AA Batteries (4-pack),1,3.84,07/23/19 16:13,"876 Ridge St, San Francisco, CA 94016" -231417,Wired Headphones,1,11.99,07/19/19 12:00,"988 14th St, Portland, OR 97035" -231418,27in 4K Gaming Monitor,1,389.99,07/26/19 15:10,"456 Jefferson St, Los Angeles, CA 90001" -231419,Macbook Pro Laptop,1,1700,07/08/19 09:37,"676 8th St, San Francisco, CA 94016" -231420,iPhone,1,700,07/12/19 21:49,"929 Park St, New York City, NY 10001" -231421,Google Phone,1,600,07/19/19 13:45,"955 North St, New York City, NY 10001" -231422,ThinkPad Laptop,1,999.99,07/31/19 19:07,"709 Jackson St, Atlanta, GA 30301" -231423,Wired Headphones,1,11.99,07/21/19 15:56,"472 8th St, San Francisco, CA 94016" -231424,27in 4K Gaming Monitor,1,389.99,07/21/19 22:44,"880 Madison St, San Francisco, CA 94016" -231425,Bose SoundSport Headphones,1,99.99,07/31/19 10:30,"703 11th St, Boston, MA 02215" -231426,Apple Airpods Headphones,1,150,07/20/19 17:34,"680 Lake St, Boston, MA 02215" -231427,Macbook Pro Laptop,1,1700,07/24/19 15:23,"417 Forest St, Los Angeles, CA 90001" -231428,27in FHD Monitor,1,149.99,07/22/19 20:02,"603 Lakeview St, Boston, MA 02215" -231429,20in Monitor,1,109.99,07/02/19 12:50,"950 Jackson St, Los Angeles, CA 90001" -231430,34in Ultrawide Monitor,1,379.99,07/29/19 21:32,"871 1st St, New York City, NY 10001" -231431,34in Ultrawide Monitor,1,379.99,07/03/19 10:50,"711 Park St, San Francisco, CA 94016" -231432,Wired Headphones,1,11.99,07/19/19 18:35,"45 Main St, Dallas, TX 75001" -231433,Wired Headphones,1,11.99,07/30/19 23:44,"73 Dogwood St, Boston, MA 02215" -231434,Bose SoundSport Headphones,1,99.99,07/30/19 21:29,"627 10th St, Los Angeles, CA 90001" -231435,Lightning Charging Cable,1,14.95,07/30/19 06:26,"283 Madison St, San Francisco, CA 94016" -231436,Apple Airpods Headphones,1,150,07/06/19 16:24,"481 Main St, Boston, MA 02215" -231437,AA Batteries (4-pack),1,3.84,07/21/19 18:02,"365 9th St, San Francisco, CA 94016" -231438,27in FHD Monitor,1,149.99,07/07/19 15:27,"167 Ridge St, San Francisco, CA 94016" -231439,AAA Batteries (4-pack),1,2.99,07/14/19 17:09,"454 Wilson St, Atlanta, GA 30301" -231440,Bose SoundSport Headphones,1,99.99,07/21/19 22:58,"544 Walnut St, Seattle, WA 98101" -231441,Macbook Pro Laptop,1,1700,07/01/19 21:22,"652 13th St, Dallas, TX 75001" -231442,Bose SoundSport Headphones,1,99.99,07/27/19 08:00,"438 Ridge St, New York City, NY 10001" -231442,Macbook Pro Laptop,1,1700,07/27/19 08:00,"438 Ridge St, New York City, NY 10001" -231443,iPhone,1,700,07/29/19 22:19,"290 Center St, San Francisco, CA 94016" -231444,Wired Headphones,1,11.99,07/14/19 17:54,"602 Adams St, San Francisco, CA 94016" -231445,Wired Headphones,1,11.99,07/29/19 11:33,"960 Lake St, Boston, MA 02215" -231446,AAA Batteries (4-pack),1,2.99,07/12/19 15:59,"212 Jefferson St, San Francisco, CA 94016" -231447,Google Phone,1,600,07/03/19 20:32,"799 9th St, Dallas, TX 75001" -231448,Wired Headphones,1,11.99,07/31/19 07:26,"970 Elm St, San Francisco, CA 94016" -231449,Lightning Charging Cable,1,14.95,07/27/19 17:34,"961 1st St, Seattle, WA 98101" -231450,Bose SoundSport Headphones,1,99.99,07/14/19 16:50,"933 North St, New York City, NY 10001" -231451,AA Batteries (4-pack),1,3.84,07/24/19 15:39,"859 Sunset St, Atlanta, GA 30301" -231452,Bose SoundSport Headphones,1,99.99,07/19/19 22:53,"371 Jefferson St, Seattle, WA 98101" -231453,AA Batteries (4-pack),2,3.84,07/19/19 14:39,"373 Chestnut St, Los Angeles, CA 90001" -231454,Wired Headphones,1,11.99,07/21/19 15:20,"698 Ridge St, Boston, MA 02215" -231455,USB-C Charging Cable,1,11.95,07/06/19 23:43,"462 Adams St, Atlanta, GA 30301" -231456,Bose SoundSport Headphones,1,99.99,07/23/19 12:17,"452 Elm St, Atlanta, GA 30301" -231457,USB-C Charging Cable,1,11.95,07/27/19 15:07,"645 Jefferson St, Atlanta, GA 30301" -231458,AA Batteries (4-pack),1,3.84,07/06/19 12:31,"604 14th St, New York City, NY 10001" -231459,Apple Airpods Headphones,1,150,07/31/19 09:28,"213 South St, New York City, NY 10001" -231460,27in 4K Gaming Monitor,1,389.99,07/04/19 08:49,"108 Sunset St, Boston, MA 02215" -231461,Apple Airpods Headphones,1,150,07/13/19 01:47,"515 Willow St, Los Angeles, CA 90001" -231462,AA Batteries (4-pack),1,3.84,07/09/19 23:48,"260 Elm St, Dallas, TX 75001" -231463,20in Monitor,1,109.99,07/07/19 21:48,"298 Madison St, Atlanta, GA 30301" -231464,27in FHD Monitor,1,149.99,07/13/19 15:15,"197 10th St, Seattle, WA 98101" -231465,ThinkPad Laptop,1,999.99,07/02/19 14:05,"912 5th St, San Francisco, CA 94016" -231466,Google Phone,1,600,07/30/19 22:47,"49 Maple St, Boston, MA 02215" -231467,AA Batteries (4-pack),3,3.84,07/05/19 10:10,"936 4th St, Boston, MA 02215" -231468,AAA Batteries (4-pack),1,2.99,07/29/19 20:38,"604 Lakeview St, Los Angeles, CA 90001" -231469,AA Batteries (4-pack),1,3.84,07/15/19 13:43,"486 14th St, Seattle, WA 98101" -231470,Bose SoundSport Headphones,1,99.99,07/16/19 12:29,"948 Jackson St, San Francisco, CA 94016" -231471,USB-C Charging Cable,1,11.95,07/25/19 12:08,"239 Lakeview St, Austin, TX 73301" -231472,Lightning Charging Cable,1,14.95,07/03/19 13:00,"501 Washington St, Dallas, TX 75001" -231473,Lightning Charging Cable,1,14.95,07/17/19 06:32,"228 Main St, New York City, NY 10001" -231474,27in 4K Gaming Monitor,1,389.99,07/25/19 07:49,"802 11th St, San Francisco, CA 94016" -231475,27in FHD Monitor,1,149.99,07/25/19 21:44,"260 Elm St, Atlanta, GA 30301" -231476,USB-C Charging Cable,1,11.95,07/10/19 22:30,"574 Elm St, Seattle, WA 98101" -231477,Bose SoundSport Headphones,1,99.99,07/21/19 13:01,"766 Lake St, Austin, TX 73301" -231478,Lightning Charging Cable,1,14.95,07/23/19 18:34,"157 Ridge St, Seattle, WA 98101" -231479,Lightning Charging Cable,1,14.95,07/04/19 07:59,"860 Chestnut St, Boston, MA 02215" -231480,Lightning Charging Cable,1,14.95,07/28/19 18:37,"271 Spruce St, San Francisco, CA 94016" -231481,AA Batteries (4-pack),1,3.84,07/20/19 11:13,"162 Walnut St, Los Angeles, CA 90001" -231482,Bose SoundSport Headphones,1,99.99,07/16/19 21:14,"751 Highland St, New York City, NY 10001" -231483,34in Ultrawide Monitor,1,379.99,07/16/19 21:05,"222 12th St, Los Angeles, CA 90001" -231484,AAA Batteries (4-pack),1,2.99,07/02/19 18:58,"930 Main St, Boston, MA 02215" -231485,Apple Airpods Headphones,1,150,07/31/19 00:02,"338 Lakeview St, Portland, OR 97035" -231486,AA Batteries (4-pack),1,3.84,07/15/19 12:02,"465 West St, Atlanta, GA 30301" -231487,AAA Batteries (4-pack),1,2.99,07/02/19 07:46,"409 Elm St, Los Angeles, CA 90001" -231488,Bose SoundSport Headphones,1,99.99,07/29/19 08:32,"204 Hickory St, San Francisco, CA 94016" -231489,Wired Headphones,1,11.99,07/01/19 13:47,"622 10th St, Los Angeles, CA 90001" -231490,20in Monitor,1,109.99,07/31/19 11:00,"920 7th St, San Francisco, CA 94016" -231491,AAA Batteries (4-pack),1,2.99,07/07/19 12:37,"320 Maple St, San Francisco, CA 94016" -231492,USB-C Charging Cable,1,11.95,07/10/19 00:16,"29 Ridge St, Los Angeles, CA 90001" -231493,Apple Airpods Headphones,1,150,07/23/19 19:25,"899 Lincoln St, San Francisco, CA 94016" -231494,AA Batteries (4-pack),2,3.84,07/25/19 22:19,"236 Cherry St, San Francisco, CA 94016" -231495,AA Batteries (4-pack),2,3.84,07/15/19 14:33,"831 1st St, Boston, MA 02215" -231496,27in FHD Monitor,1,149.99,07/03/19 15:28,"251 Forest St, Los Angeles, CA 90001" -231497,Lightning Charging Cable,1,14.95,07/12/19 20:00,"727 13th St, San Francisco, CA 94016" -231498,USB-C Charging Cable,1,11.95,07/15/19 01:04,"795 10th St, San Francisco, CA 94016" -231499,AAA Batteries (4-pack),1,2.99,07/16/19 19:15,"787 Highland St, New York City, NY 10001" -231500,Apple Airpods Headphones,1,150,07/15/19 12:25,"939 Forest St, San Francisco, CA 94016" -231501,AAA Batteries (4-pack),1,2.99,07/16/19 16:33,"368 River St, New York City, NY 10001" -231502,34in Ultrawide Monitor,1,379.99,07/11/19 17:56,"827 8th St, Seattle, WA 98101" -231503,Flatscreen TV,1,300,07/04/19 22:29,"213 Jefferson St, New York City, NY 10001" -231504,27in 4K Gaming Monitor,1,389.99,07/23/19 22:18,"434 7th St, Seattle, WA 98101" -231505,Wired Headphones,1,11.99,07/31/19 23:33,"679 River St, Dallas, TX 75001" -231506,20in Monitor,1,109.99,07/22/19 10:06,"948 Spruce St, San Francisco, CA 94016" -231507,AAA Batteries (4-pack),1,2.99,07/20/19 11:53,"105 Cedar St, Boston, MA 02215" -231508,Bose SoundSport Headphones,1,99.99,07/05/19 13:08,"798 Lakeview St, San Francisco, CA 94016" -231509,AAA Batteries (4-pack),1,2.99,07/20/19 11:40,"202 10th St, Portland, OR 97035" -231510,ThinkPad Laptop,1,999.99,07/11/19 16:14,"647 Wilson St, Los Angeles, CA 90001" -231511,AA Batteries (4-pack),1,3.84,07/28/19 20:46,"961 Jackson St, Boston, MA 02215" -231512,Bose SoundSport Headphones,1,99.99,07/22/19 10:41,"432 5th St, Seattle, WA 98101" -231513,Wired Headphones,1,11.99,07/15/19 21:21,"85 Jefferson St, Dallas, TX 75001" -231514,AA Batteries (4-pack),1,3.84,07/15/19 09:40,"10 10th St, Boston, MA 02215" -231515,Bose SoundSport Headphones,1,99.99,07/01/19 21:49,"187 Jackson St, San Francisco, CA 94016" -231516,USB-C Charging Cable,1,11.95,07/31/19 20:02,"924 Wilson St, New York City, NY 10001" -231517,Bose SoundSport Headphones,1,99.99,07/02/19 22:16,"182 Lincoln St, Portland, ME 04101" -231518,USB-C Charging Cable,1,11.95,07/02/19 20:23,"852 Washington St, Atlanta, GA 30301" -231519,Bose SoundSport Headphones,1,99.99,07/18/19 15:50,"273 Main St, Los Angeles, CA 90001" -231520,USB-C Charging Cable,1,11.95,07/06/19 21:14,"904 Park St, Dallas, TX 75001" -231521,20in Monitor,1,109.99,07/31/19 19:31,"195 Cedar St, Atlanta, GA 30301" -231522,Lightning Charging Cable,1,14.95,07/19/19 01:28,"915 Dogwood St, Los Angeles, CA 90001" -231523,Bose SoundSport Headphones,1,99.99,07/08/19 15:42,"178 Spruce St, San Francisco, CA 94016" -231524,Apple Airpods Headphones,1,150,07/04/19 17:55,"824 Center St, Los Angeles, CA 90001" -231525,Macbook Pro Laptop,1,1700,07/20/19 07:17,"732 9th St, Austin, TX 73301" -231526,Flatscreen TV,1,300,07/11/19 21:00,"914 Forest St, Los Angeles, CA 90001" -231527,27in 4K Gaming Monitor,1,389.99,07/03/19 13:10,"494 Walnut St, Boston, MA 02215" -231528,34in Ultrawide Monitor,1,379.99,07/15/19 12:17,"344 Willow St, Los Angeles, CA 90001" -231529,Google Phone,1,600,07/16/19 11:26,"724 Church St, Los Angeles, CA 90001" -231530,Apple Airpods Headphones,1,150,07/25/19 09:33,"230 Hickory St, Seattle, WA 98101" -231531,AA Batteries (4-pack),1,3.84,07/26/19 00:04,"240 6th St, Atlanta, GA 30301" -231532,Lightning Charging Cable,1,14.95,08/01/19 03:52,"523 Willow St, Los Angeles, CA 90001" -231533,AAA Batteries (4-pack),1,2.99,07/05/19 13:23,"648 North St, San Francisco, CA 94016" -231534,Vareebadd Phone,1,400,07/09/19 19:54,"19 River St, Los Angeles, CA 90001" -231535,Bose SoundSport Headphones,1,99.99,07/07/19 20:22,"389 1st St, San Francisco, CA 94016" -231536,27in FHD Monitor,1,149.99,07/23/19 16:29,"375 14th St, Seattle, WA 98101" -231537,Wired Headphones,1,11.99,07/28/19 11:37,"731 Jackson St, Portland, ME 04101" -231537,AAA Batteries (4-pack),1,2.99,07/28/19 11:37,"731 Jackson St, Portland, ME 04101" -231538,Bose SoundSport Headphones,1,99.99,07/05/19 19:24,"548 Wilson St, Seattle, WA 98101" -231539,Apple Airpods Headphones,1,150,07/29/19 09:59,"434 Dogwood St, San Francisco, CA 94016" -231540,Wired Headphones,1,11.99,07/31/19 08:59,"499 Maple St, San Francisco, CA 94016" -231541,USB-C Charging Cable,2,11.95,07/16/19 19:58,"196 2nd St, Dallas, TX 75001" -231542,Flatscreen TV,2,300,07/10/19 15:57,"588 Dogwood St, Dallas, TX 75001" -231543,AA Batteries (4-pack),1,3.84,07/20/19 16:53,"694 Jefferson St, San Francisco, CA 94016" -231544,iPhone,1,700,07/13/19 16:09,"501 5th St, New York City, NY 10001" -231545,Apple Airpods Headphones,1,150,07/31/19 19:19,"558 Sunset St, Los Angeles, CA 90001" -231546,AA Batteries (4-pack),1,3.84,07/16/19 12:18,"314 11th St, San Francisco, CA 94016" -231547,Bose SoundSport Headphones,1,99.99,07/27/19 22:51,"391 Lincoln St, San Francisco, CA 94016" -231548,27in 4K Gaming Monitor,1,389.99,07/19/19 20:56,"629 7th St, New York City, NY 10001" -231549,AAA Batteries (4-pack),1,2.99,07/13/19 12:10,"226 Walnut St, New York City, NY 10001" -231550,Bose SoundSport Headphones,1,99.99,07/19/19 11:30,"679 Dogwood St, New York City, NY 10001" -231551,AAA Batteries (4-pack),1,2.99,07/10/19 14:31,"427 Chestnut St, Atlanta, GA 30301" -231552,Lightning Charging Cable,1,14.95,07/01/19 11:51,"805 Chestnut St, San Francisco, CA 94016" -231553,34in Ultrawide Monitor,1,379.99,07/02/19 14:30,"565 West St, Atlanta, GA 30301" -231554,Wired Headphones,1,11.99,07/08/19 07:41,"683 Jackson St, Boston, MA 02215" -231555,USB-C Charging Cable,1,11.95,07/26/19 14:10,"739 8th St, Los Angeles, CA 90001" -231556,Lightning Charging Cable,1,14.95,07/05/19 13:06,"172 Cherry St, Dallas, TX 75001" -231557,AA Batteries (4-pack),1,3.84,07/12/19 14:29,"163 Wilson St, Dallas, TX 75001" -231558,Apple Airpods Headphones,1,150,07/02/19 08:52,"312 9th St, San Francisco, CA 94016" -231559,USB-C Charging Cable,1,11.95,07/26/19 22:38,"328 Highland St, San Francisco, CA 94016" -231560,AA Batteries (4-pack),2,3.84,07/17/19 20:11,"619 9th St, New York City, NY 10001" -231561,Bose SoundSport Headphones,1,99.99,07/25/19 09:54,"467 Ridge St, Portland, OR 97035" -231562,Apple Airpods Headphones,1,150,07/14/19 13:30,"454 Center St, Los Angeles, CA 90001" -231563,Lightning Charging Cable,1,14.95,07/29/19 20:21,"18 Dogwood St, San Francisco, CA 94016" -231564,Lightning Charging Cable,1,14.95,07/16/19 22:19,"127 Madison St, New York City, NY 10001" -231565,27in 4K Gaming Monitor,1,389.99,07/30/19 14:19,"472 Jefferson St, Seattle, WA 98101" -231566,Wired Headphones,1,11.99,07/31/19 09:52,"95 Spruce St, Los Angeles, CA 90001" -231567,USB-C Charging Cable,1,11.95,07/12/19 18:27,"413 West St, San Francisco, CA 94016" -231568,Flatscreen TV,1,300,07/15/19 11:50,"512 Spruce St, New York City, NY 10001" -231569,Macbook Pro Laptop,1,1700,07/26/19 18:07,"633 Jackson St, Boston, MA 02215" -231570,Apple Airpods Headphones,1,150,07/16/19 20:35,"303 Cherry St, San Francisco, CA 94016" -231571,AA Batteries (4-pack),1,3.84,07/15/19 11:35,"229 Washington St, Portland, OR 97035" -231572,Google Phone,1,600,07/31/19 22:50,"824 Park St, Boston, MA 02215" -231572,Bose SoundSport Headphones,1,99.99,07/31/19 22:50,"824 Park St, Boston, MA 02215" -231573,27in FHD Monitor,1,149.99,07/10/19 18:17,"174 Washington St, San Francisco, CA 94016" -231574,AA Batteries (4-pack),1,3.84,07/25/19 19:59,"160 14th St, Dallas, TX 75001" -231575,iPhone,1,700,07/28/19 11:10,"813 8th St, New York City, NY 10001" -231576,iPhone,1,700,07/18/19 21:55,"221 Chestnut St, Los Angeles, CA 90001" -231577,27in 4K Gaming Monitor,1,389.99,07/21/19 07:33,"852 Chestnut St, San Francisco, CA 94016" -231578,Apple Airpods Headphones,1,150,07/10/19 09:32,"156 Madison St, Seattle, WA 98101" -231579,Apple Airpods Headphones,1,150,07/30/19 22:15,"300 South St, Seattle, WA 98101" -231580,Lightning Charging Cable,1,14.95,07/06/19 14:02,"58 Chestnut St, Atlanta, GA 30301" -231581,AA Batteries (4-pack),3,3.84,07/24/19 11:05,"644 Madison St, Atlanta, GA 30301" -231582,iPhone,1,700,07/14/19 15:01,"786 Wilson St, Atlanta, GA 30301" -231583,AA Batteries (4-pack),1,3.84,07/18/19 07:14,"912 River St, Atlanta, GA 30301" -231584,AA Batteries (4-pack),1,3.84,07/04/19 17:36,"334 West St, Austin, TX 73301" -231585,27in FHD Monitor,1,149.99,07/13/19 09:38,"637 Cherry St, Portland, OR 97035" -231586,27in FHD Monitor,1,149.99,07/01/19 11:38,"355 9th St, Seattle, WA 98101" -231587,Macbook Pro Laptop,1,1700,07/17/19 21:11,"467 Elm St, Seattle, WA 98101" -231588,iPhone,1,700,07/11/19 11:16,"371 2nd St, Boston, MA 02215" -231589,34in Ultrawide Monitor,1,379.99,07/24/19 08:56,"552 5th St, San Francisco, CA 94016" -231590,Bose SoundSport Headphones,1,99.99,07/20/19 11:32,"581 8th St, Austin, TX 73301" -231591,Apple Airpods Headphones,1,150,07/27/19 20:01,"481 4th St, Austin, TX 73301" -231592,Bose SoundSport Headphones,1,99.99,07/11/19 19:10,"177 Willow St, Dallas, TX 75001" -231593,Wired Headphones,1,11.99,07/24/19 21:11,"854 Walnut St, Seattle, WA 98101" -231594,Wired Headphones,1,11.99,07/09/19 13:32,"958 Pine St, San Francisco, CA 94016" -231595,Bose SoundSport Headphones,1,99.99,07/03/19 11:25,"657 Jefferson St, Atlanta, GA 30301" -231596,USB-C Charging Cable,1,11.95,07/19/19 22:33,"701 North St, Dallas, TX 75001" -231597,USB-C Charging Cable,1,11.95,07/30/19 12:49,"186 7th St, New York City, NY 10001" -231598,AA Batteries (4-pack),1,3.84,07/19/19 00:18,"850 Park St, San Francisco, CA 94016" -231599,AAA Batteries (4-pack),1,2.99,07/16/19 13:53,"145 Jackson St, Boston, MA 02215" -231600,Macbook Pro Laptop,1,1700,07/14/19 21:49,"584 7th St, Dallas, TX 75001" -231601,iPhone,1,700,07/10/19 23:08,"152 Church St, Los Angeles, CA 90001" -231602,34in Ultrawide Monitor,1,379.99,07/20/19 13:38,"241 13th St, New York City, NY 10001" -231603,AA Batteries (4-pack),1,3.84,07/16/19 19:06,"700 Walnut St, San Francisco, CA 94016" -231604,20in Monitor,1,109.99,07/04/19 08:18,"598 11th St, Los Angeles, CA 90001" -231605,Wired Headphones,1,11.99,07/21/19 06:53,"562 Maple St, Seattle, WA 98101" -231606,USB-C Charging Cable,1,11.95,07/26/19 14:08,"982 10th St, Dallas, TX 75001" -231607,AA Batteries (4-pack),2,3.84,07/12/19 17:15,"699 Pine St, Dallas, TX 75001" -231608,27in FHD Monitor,1,149.99,07/18/19 18:02,"94 9th St, Boston, MA 02215" -231609,AA Batteries (4-pack),1,3.84,07/31/19 18:54,"344 6th St, Boston, MA 02215" -231610,AA Batteries (4-pack),1,3.84,07/15/19 16:04,"420 Lake St, San Francisco, CA 94016" -231611,AAA Batteries (4-pack),1,2.99,07/11/19 12:49,"884 Forest St, San Francisco, CA 94016" -231612,Wired Headphones,1,11.99,07/28/19 20:17,"572 14th St, New York City, NY 10001" -231613,Wired Headphones,1,11.99,07/07/19 09:51,"249 Cherry St, Boston, MA 02215" -231614,34in Ultrawide Monitor,1,379.99,07/06/19 10:32,"304 Highland St, Atlanta, GA 30301" -231615,iPhone,1,700,07/22/19 09:48,"270 Chestnut St, New York City, NY 10001" -231616,Lightning Charging Cable,1,14.95,07/25/19 23:30,"645 12th St, Austin, TX 73301" -231617,ThinkPad Laptop,1,999.99,07/12/19 09:56,"480 Maple St, Atlanta, GA 30301" -231618,Lightning Charging Cable,1,14.95,07/27/19 11:26,"51 Washington St, Boston, MA 02215" -231619,AA Batteries (4-pack),1,3.84,07/05/19 00:44,"463 6th St, New York City, NY 10001" -231620,Google Phone,1,600,07/18/19 08:38,"726 Meadow St, Boston, MA 02215" -231621,USB-C Charging Cable,1,11.95,07/22/19 11:15,"580 4th St, Dallas, TX 75001" -231622,USB-C Charging Cable,1,11.95,07/20/19 14:45,"906 Hill St, New York City, NY 10001" -231623,Bose SoundSport Headphones,1,99.99,07/12/19 16:27,"932 5th St, Boston, MA 02215" -231624,AA Batteries (4-pack),1,3.84,07/21/19 16:55,"749 12th St, San Francisco, CA 94016" -231625,Lightning Charging Cable,1,14.95,07/03/19 19:18,"824 Wilson St, New York City, NY 10001" -231626,Google Phone,1,600,07/31/19 14:30,"764 Spruce St, San Francisco, CA 94016" -231626,USB-C Charging Cable,1,11.95,07/31/19 14:30,"764 Spruce St, San Francisco, CA 94016" -231627,Apple Airpods Headphones,1,150,07/19/19 18:09,"883 Elm St, New York City, NY 10001" -231628,USB-C Charging Cable,1,11.95,07/01/19 14:14,"467 1st St, Los Angeles, CA 90001" -231629,USB-C Charging Cable,1,11.95,07/13/19 00:04,"655 Cherry St, New York City, NY 10001" -231630,USB-C Charging Cable,1,11.95,07/28/19 14:49,"5 2nd St, San Francisco, CA 94016" -231631,AA Batteries (4-pack),2,3.84,07/23/19 18:36,"496 5th St, San Francisco, CA 94016" -231632,Lightning Charging Cable,1,14.95,07/20/19 08:08,"346 West St, Austin, TX 73301" -231633,AA Batteries (4-pack),4,3.84,07/09/19 08:54,"855 Highland St, Boston, MA 02215" -231634,iPhone,1,700,07/18/19 18:21,"826 4th St, Boston, MA 02215" -231635,AA Batteries (4-pack),2,3.84,07/28/19 16:16,"154 Washington St, San Francisco, CA 94016" -231636,Lightning Charging Cable,1,14.95,07/16/19 11:52,"467 Lakeview St, New York City, NY 10001" -231637,USB-C Charging Cable,1,11.95,07/08/19 22:59,"354 11th St, San Francisco, CA 94016" -231638,AA Batteries (4-pack),1,3.84,07/21/19 18:22,"443 12th St, San Francisco, CA 94016" -231639,Apple Airpods Headphones,1,150,07/18/19 11:11,"657 Chestnut St, Seattle, WA 98101" -231640,Apple Airpods Headphones,1,150,07/18/19 22:44,"769 River St, Los Angeles, CA 90001" -231641,34in Ultrawide Monitor,1,379.99,07/14/19 07:59,"260 Chestnut St, San Francisco, CA 94016" -231642,USB-C Charging Cable,1,11.95,07/16/19 14:23,"121 11th St, Austin, TX 73301" -231643,Apple Airpods Headphones,1,150,07/31/19 09:03,"138 10th St, San Francisco, CA 94016" -231644,Apple Airpods Headphones,1,150,07/01/19 10:30,"670 River St, New York City, NY 10001" -231645,27in 4K Gaming Monitor,1,389.99,07/22/19 18:44,"986 Willow St, Dallas, TX 75001" -231646,AA Batteries (4-pack),3,3.84,07/25/19 15:14,"487 7th St, San Francisco, CA 94016" -231647,27in FHD Monitor,1,149.99,07/24/19 15:03,"653 4th St, Los Angeles, CA 90001" -231648,Bose SoundSport Headphones,1,99.99,07/24/19 07:21,"830 Madison St, San Francisco, CA 94016" -231649,Bose SoundSport Headphones,1,99.99,07/05/19 11:18,"716 Hickory St, Atlanta, GA 30301" -231650,Macbook Pro Laptop,1,1700,07/31/19 17:22,"644 Ridge St, San Francisco, CA 94016" -231651,27in 4K Gaming Monitor,1,389.99,07/30/19 21:41,"646 Main St, New York City, NY 10001" -231652,iPhone,1,700,07/03/19 14:07,"729 13th St, San Francisco, CA 94016" -231653,iPhone,1,700,07/06/19 09:58,"537 River St, San Francisco, CA 94016" -231654,Wired Headphones,1,11.99,07/23/19 07:39,"779 Forest St, Atlanta, GA 30301" -231655,ThinkPad Laptop,1,999.99,07/07/19 12:16,"215 Park St, Boston, MA 02215" -231656,Flatscreen TV,1,300,07/25/19 12:46,"665 Adams St, Los Angeles, CA 90001" -231657,34in Ultrawide Monitor,1,379.99,07/26/19 09:22,"31 Johnson St, New York City, NY 10001" -231658,Macbook Pro Laptop,1,1700,07/18/19 16:03,"350 Wilson St, Boston, MA 02215" -231659,AA Batteries (4-pack),5,3.84,07/16/19 08:27,"889 Forest St, Boston, MA 02215" -231660,Wired Headphones,1,11.99,07/02/19 15:53,"603 Willow St, Boston, MA 02215" -231661,Wired Headphones,1,11.99,07/04/19 17:33,"123 4th St, Dallas, TX 75001" -231662,Apple Airpods Headphones,1,150,07/10/19 13:33,"489 9th St, New York City, NY 10001" -231663,USB-C Charging Cable,1,11.95,07/14/19 12:10,"120 Dogwood St, Los Angeles, CA 90001" -231664,AA Batteries (4-pack),1,3.84,07/23/19 16:25,"123 Hickory St, Atlanta, GA 30301" -231665,Apple Airpods Headphones,1,150,07/16/19 12:40,"255 Jackson St, Los Angeles, CA 90001" -231666,USB-C Charging Cable,1,11.95,07/13/19 19:39,"978 West St, San Francisco, CA 94016" -231667,Wired Headphones,1,11.99,07/30/19 18:33,"794 Adams St, Boston, MA 02215" -231668,Bose SoundSport Headphones,1,99.99,07/18/19 20:04,"538 Center St, New York City, NY 10001" -231669,AA Batteries (4-pack),1,3.84,07/07/19 12:36,"84 7th St, Dallas, TX 75001" -231670,AA Batteries (4-pack),1,3.84,07/15/19 19:13,"688 4th St, Los Angeles, CA 90001" -231671,Lightning Charging Cable,1,14.95,07/03/19 19:39,"567 Elm St, Los Angeles, CA 90001" -231672,Lightning Charging Cable,1,14.95,07/28/19 09:20,"118 1st St, Dallas, TX 75001" -231673,Macbook Pro Laptop,1,1700,07/31/19 19:49,"950 Hickory St, Dallas, TX 75001" -231674,20in Monitor,1,109.99,07/28/19 20:23,"889 Forest St, Boston, MA 02215" -231675,ThinkPad Laptop,1,999.99,07/17/19 20:09,"938 Chestnut St, Dallas, TX 75001" -231676,Lightning Charging Cable,1,14.95,07/17/19 19:28,"841 Main St, San Francisco, CA 94016" -231677,Wired Headphones,1,11.99,07/05/19 21:52,"840 8th St, Boston, MA 02215" -231678,AA Batteries (4-pack),1,3.84,07/14/19 23:01,"628 Elm St, Dallas, TX 75001" -231679,Lightning Charging Cable,1,14.95,07/05/19 09:09,"271 Willow St, New York City, NY 10001" -231680,Wired Headphones,1,11.99,07/01/19 13:23,"260 Adams St, San Francisco, CA 94016" -231681,AAA Batteries (4-pack),1,2.99,07/15/19 21:34,"373 12th St, San Francisco, CA 94016" -231682,Wired Headphones,1,11.99,07/12/19 19:53,"653 North St, Boston, MA 02215" -231683,USB-C Charging Cable,1,11.95,07/21/19 14:13,"37 Church St, Austin, TX 73301" -,,,,, -231684,Vareebadd Phone,1,400,07/18/19 21:52,"33 Forest St, Seattle, WA 98101" -231685,Bose SoundSport Headphones,1,99.99,07/11/19 19:36,"81 Chestnut St, Portland, OR 97035" -231686,27in 4K Gaming Monitor,1,389.99,07/26/19 23:24,"965 Jackson St, Portland, OR 97035" -231687,AA Batteries (4-pack),1,3.84,07/30/19 15:52,"164 Madison St, San Francisco, CA 94016" -231688,USB-C Charging Cable,2,11.95,07/07/19 12:09,"590 Highland St, New York City, NY 10001" -231689,AA Batteries (4-pack),1,3.84,07/24/19 09:38,"529 Park St, Los Angeles, CA 90001" -231690,AA Batteries (4-pack),1,3.84,07/19/19 04:36,"63 Dogwood St, San Francisco, CA 94016" -231691,20in Monitor,1,109.99,07/11/19 06:24,"120 4th St, Atlanta, GA 30301" -231692,Flatscreen TV,1,300,07/12/19 14:27,"740 Chestnut St, Seattle, WA 98101" -231693,AA Batteries (4-pack),2,3.84,07/20/19 19:01,"99 12th St, Dallas, TX 75001" -231694,AA Batteries (4-pack),1,3.84,07/01/19 15:58,"282 Wilson St, Austin, TX 73301" -231695,AA Batteries (4-pack),1,3.84,07/01/19 09:56,"201 6th St, San Francisco, CA 94016" -231696,27in FHD Monitor,1,149.99,07/22/19 10:13,"7 North St, San Francisco, CA 94016" -231697,USB-C Charging Cable,1,11.95,07/28/19 21:44,"512 Pine St, Seattle, WA 98101" -231698,Bose SoundSport Headphones,1,99.99,07/30/19 20:23,"981 14th St, Los Angeles, CA 90001" -231699,27in FHD Monitor,1,149.99,07/13/19 17:37,"51 Dogwood St, New York City, NY 10001" -231700,Apple Airpods Headphones,1,150,07/01/19 17:09,"789 2nd St, Atlanta, GA 30301" -231701,AAA Batteries (4-pack),1,2.99,07/25/19 21:01,"112 Jackson St, Boston, MA 02215" -231702,AA Batteries (4-pack),2,3.84,07/02/19 10:02,"319 South St, Los Angeles, CA 90001" -231703,AAA Batteries (4-pack),6,2.99,07/15/19 12:12,"839 Elm St, Los Angeles, CA 90001" -231704,Wired Headphones,1,11.99,07/31/19 00:21,"44 11th St, San Francisco, CA 94016" -231705,AAA Batteries (4-pack),1,2.99,07/16/19 04:59,"655 Main St, Boston, MA 02215" -231706,AA Batteries (4-pack),1,3.84,07/29/19 13:51,"701 Lincoln St, Portland, OR 97035" -231707,AA Batteries (4-pack),3,3.84,07/18/19 08:47,"874 Cedar St, New York City, NY 10001" -231708,AAA Batteries (4-pack),1,2.99,07/06/19 21:39,"452 11th St, Austin, TX 73301" -231709,USB-C Charging Cable,1,11.95,07/28/19 14:09,"322 Spruce St, San Francisco, CA 94016" -231710,Wired Headphones,1,11.99,07/05/19 13:33,"970 Walnut St, Portland, OR 97035" -231711,AA Batteries (4-pack),1,3.84,07/07/19 14:13,"11 11th St, San Francisco, CA 94016" -231712,AAA Batteries (4-pack),1,2.99,07/26/19 22:54,"308 Jackson St, San Francisco, CA 94016" -231713,USB-C Charging Cable,1,11.95,07/05/19 11:33,"994 Main St, Dallas, TX 75001" -231714,Lightning Charging Cable,1,14.95,07/03/19 21:24,"969 Main St, Seattle, WA 98101" -231715,Apple Airpods Headphones,1,150,07/30/19 20:25,"139 9th St, San Francisco, CA 94016" -231716,27in FHD Monitor,1,149.99,07/26/19 11:23,"777 12th St, New York City, NY 10001" -231717,27in 4K Gaming Monitor,1,389.99,07/02/19 15:51,"15 Chestnut St, Boston, MA 02215" -231718,AAA Batteries (4-pack),1,2.99,07/08/19 11:07,"52 Lake St, Seattle, WA 98101" -231719,Lightning Charging Cable,1,14.95,07/22/19 13:27,"918 Walnut St, Los Angeles, CA 90001" -231720,USB-C Charging Cable,1,11.95,07/06/19 11:31,"596 Dogwood St, San Francisco, CA 94016" -231721,ThinkPad Laptop,1,999.99,07/29/19 23:54,"299 13th St, San Francisco, CA 94016" -231722,ThinkPad Laptop,1,999.99,07/28/19 01:10,"302 Walnut St, Los Angeles, CA 90001" -231723,Wired Headphones,3,11.99,07/20/19 07:53,"533 Center St, San Francisco, CA 94016" -231724,iPhone,1,700,07/25/19 21:57,"710 13th St, Portland, OR 97035" -231725,AAA Batteries (4-pack),1,2.99,07/27/19 07:33,"877 13th St, Dallas, TX 75001" -231726,AAA Batteries (4-pack),1,2.99,07/30/19 16:47,"681 Pine St, Portland, OR 97035" -231727,ThinkPad Laptop,1,999.99,07/30/19 20:27,"775 Adams St, Los Angeles, CA 90001" -231728,Lightning Charging Cable,1,14.95,07/12/19 20:06,"531 9th St, San Francisco, CA 94016" -231729,Apple Airpods Headphones,1,150,07/15/19 18:48,"667 Forest St, Dallas, TX 75001" -231730,LG Dryer,1,600.0,07/29/19 19:18,"113 7th St, Los Angeles, CA 90001" -231731,Flatscreen TV,1,300,07/22/19 06:55,"253 Madison St, Atlanta, GA 30301" -231732,USB-C Charging Cable,1,11.95,07/15/19 08:09,"485 Walnut St, Austin, TX 73301" -231733,Lightning Charging Cable,1,14.95,07/08/19 20:16,"451 10th St, Los Angeles, CA 90001" -231733,AA Batteries (4-pack),1,3.84,07/08/19 20:16,"451 10th St, Los Angeles, CA 90001" -231734,Wired Headphones,1,11.99,07/26/19 19:23,"823 10th St, Boston, MA 02215" -231735,AA Batteries (4-pack),1,3.84,07/02/19 13:37,"631 10th St, San Francisco, CA 94016" -231736,Apple Airpods Headphones,1,150,07/03/19 11:35,"824 Washington St, Seattle, WA 98101" -231737,Lightning Charging Cable,1,14.95,07/23/19 18:07,"897 Walnut St, New York City, NY 10001" -231738,AA Batteries (4-pack),1,3.84,07/31/19 17:45,"455 Center St, Portland, OR 97035" -231739,Flatscreen TV,1,300,07/22/19 10:21,"196 Sunset St, Los Angeles, CA 90001" -231740,Apple Airpods Headphones,1,150,07/20/19 10:45,"463 Adams St, San Francisco, CA 94016" -231741,Flatscreen TV,1,300,07/22/19 20:48,"712 Hickory St, New York City, NY 10001" -231742,USB-C Charging Cable,1,11.95,07/07/19 08:37,"33 Adams St, Austin, TX 73301" -231743,AAA Batteries (4-pack),2,2.99,07/07/19 19:46,"57 Lake St, Los Angeles, CA 90001" -231744,Google Phone,1,600,07/18/19 13:37,"622 1st St, San Francisco, CA 94016" -231745,AA Batteries (4-pack),2,3.84,07/06/19 22:52,"186 Highland St, Portland, OR 97035" -231746,Lightning Charging Cable,1,14.95,07/08/19 11:46,"780 Center St, Seattle, WA 98101" -231747,Lightning Charging Cable,1,14.95,07/27/19 10:21,"399 Pine St, San Francisco, CA 94016" -231748,AA Batteries (4-pack),1,3.84,07/13/19 19:52,"451 Dogwood St, Seattle, WA 98101" -231749,AAA Batteries (4-pack),1,2.99,07/12/19 19:29,"938 South St, Boston, MA 02215" -231750,27in FHD Monitor,1,149.99,07/07/19 17:10,"928 11th St, San Francisco, CA 94016" -231751,Wired Headphones,1,11.99,07/08/19 12:16,"399 North St, Dallas, TX 75001" -231752,USB-C Charging Cable,1,11.95,07/18/19 22:00,"916 Elm St, New York City, NY 10001" -231753,Apple Airpods Headphones,1,150,07/27/19 15:48,"213 Park St, San Francisco, CA 94016" -231754,Vareebadd Phone,1,400,07/19/19 09:33,"357 1st St, San Francisco, CA 94016" -231754,Wired Headphones,1,11.99,07/19/19 09:33,"357 1st St, San Francisco, CA 94016" -231755,Flatscreen TV,1,300,07/23/19 20:02,"380 Meadow St, Los Angeles, CA 90001" -231756,Macbook Pro Laptop,1,1700,07/29/19 05:50,"990 Meadow St, Dallas, TX 75001" -231757,Bose SoundSport Headphones,1,99.99,07/14/19 13:26,"429 Cedar St, Los Angeles, CA 90001" -231758,27in 4K Gaming Monitor,1,389.99,07/23/19 19:52,"666 Jefferson St, Los Angeles, CA 90001" -231759,Macbook Pro Laptop,1,1700,07/13/19 17:15,"297 Ridge St, San Francisco, CA 94016" -231760,Wired Headphones,1,11.99,07/09/19 18:51,"109 Center St, Boston, MA 02215" -231761,27in FHD Monitor,1,149.99,07/10/19 13:18,"189 Wilson St, New York City, NY 10001" -231762,AA Batteries (4-pack),1,3.84,07/18/19 14:44,"980 Washington St, San Francisco, CA 94016" -231763,Macbook Pro Laptop,1,1700,07/10/19 11:03,"776 Jackson St, Boston, MA 02215" -231764,iPhone,1,700,07/21/19 20:13,"519 10th St, San Francisco, CA 94016" -231765,AAA Batteries (4-pack),1,2.99,07/26/19 18:40,"775 Spruce St, Los Angeles, CA 90001" -231766,AA Batteries (4-pack),1,3.84,07/19/19 11:10,"647 Adams St, New York City, NY 10001" -231767,ThinkPad Laptop,1,999.99,07/24/19 11:21,"390 South St, San Francisco, CA 94016" -231768,AAA Batteries (4-pack),1,2.99,07/29/19 13:41,"692 Cherry St, Austin, TX 73301" -231769,AAA Batteries (4-pack),1,2.99,07/31/19 13:10,"128 12th St, Austin, TX 73301" -231770,Lightning Charging Cable,1,14.95,07/13/19 09:51,"280 Lake St, San Francisco, CA 94016" -231771,LG Dryer,1,600.0,07/29/19 15:21,"873 Willow St, Austin, TX 73301" -231772,Bose SoundSport Headphones,1,99.99,07/20/19 14:37,"20 Church St, San Francisco, CA 94016" -231773,Lightning Charging Cable,1,14.95,07/06/19 22:15,"201 Meadow St, Seattle, WA 98101" -231774,AAA Batteries (4-pack),1,2.99,07/09/19 21:51,"392 Spruce St, San Francisco, CA 94016" -231775,AA Batteries (4-pack),1,3.84,07/27/19 09:27,"493 Dogwood St, New York City, NY 10001" -231776,AA Batteries (4-pack),6,3.84,07/25/19 11:18,"625 Washington St, Los Angeles, CA 90001" -231777,USB-C Charging Cable,2,11.95,07/01/19 18:01,"604 12th St, Dallas, TX 75001" -231778,AAA Batteries (4-pack),1,2.99,07/12/19 13:46,"810 Park St, Boston, MA 02215" -231779,Lightning Charging Cable,1,14.95,07/19/19 10:33,"877 Center St, Austin, TX 73301" -231780,34in Ultrawide Monitor,1,379.99,07/22/19 11:57,"459 13th St, San Francisco, CA 94016" -231781,Lightning Charging Cable,1,14.95,07/08/19 09:40,"564 Lincoln St, San Francisco, CA 94016" -231782,Lightning Charging Cable,1,14.95,07/14/19 19:38,"6 Maple St, Atlanta, GA 30301" -231783,Flatscreen TV,1,300,07/15/19 19:56,"48 Washington St, Los Angeles, CA 90001" -231784,Wired Headphones,1,11.99,07/20/19 09:50,"169 Pine St, Seattle, WA 98101" -231785,Wired Headphones,1,11.99,07/29/19 14:05,"164 8th St, Dallas, TX 75001" -231786,AA Batteries (4-pack),1,3.84,07/11/19 18:11,"665 Lake St, Dallas, TX 75001" -231787,ThinkPad Laptop,1,999.99,07/16/19 18:58,"766 Willow St, Boston, MA 02215" -231788,iPhone,1,700,07/15/19 15:55,"998 Meadow St, Seattle, WA 98101" -231789,AA Batteries (4-pack),1,3.84,07/23/19 08:51,"52 5th St, Dallas, TX 75001" -231790,20in Monitor,1,109.99,07/27/19 12:55,"129 Meadow St, San Francisco, CA 94016" -231790,Lightning Charging Cable,1,14.95,07/27/19 12:55,"129 Meadow St, San Francisco, CA 94016" -231791,Flatscreen TV,1,300,07/25/19 14:51,"812 4th St, Seattle, WA 98101" -231792,Macbook Pro Laptop,1,1700,07/03/19 14:59,"201 5th St, Portland, ME 04101" -231793,ThinkPad Laptop,1,999.99,07/08/19 14:52,"40 4th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -231794,USB-C Charging Cable,1,11.95,07/26/19 10:09,"510 1st St, Atlanta, GA 30301" -231795,20in Monitor,1,109.99,07/01/19 16:54,"602 Maple St, Los Angeles, CA 90001" -231796,USB-C Charging Cable,1,11.95,07/01/19 20:22,"674 Sunset St, San Francisco, CA 94016" -231797,34in Ultrawide Monitor,1,379.99,07/06/19 20:53,"418 13th St, San Francisco, CA 94016" -231798,Bose SoundSport Headphones,1,99.99,07/27/19 14:13,"420 1st St, Atlanta, GA 30301" -231799,Lightning Charging Cable,1,14.95,07/20/19 17:32,"955 Church St, San Francisco, CA 94016" -231800,Lightning Charging Cable,1,14.95,07/01/19 11:48,"875 Cherry St, Los Angeles, CA 90001" -231801,Apple Airpods Headphones,1,150,07/10/19 10:43,"525 Church St, Atlanta, GA 30301" -231802,34in Ultrawide Monitor,1,379.99,07/07/19 10:22,"336 Jackson St, New York City, NY 10001" -231803,Lightning Charging Cable,1,14.95,07/18/19 13:28,"930 14th St, Seattle, WA 98101" -231804,USB-C Charging Cable,1,11.95,07/23/19 20:27,"743 4th St, San Francisco, CA 94016" -231805,AAA Batteries (4-pack),1,2.99,07/16/19 08:34,"939 Walnut St, Los Angeles, CA 90001" -231806,Apple Airpods Headphones,1,150,07/02/19 11:18,"131 Cedar St, New York City, NY 10001" -231807,iPhone,1,700,07/26/19 19:38,"817 Adams St, Los Angeles, CA 90001" -231808,27in 4K Gaming Monitor,1,389.99,07/22/19 10:49,"226 West St, San Francisco, CA 94016" -231809,USB-C Charging Cable,1,11.95,07/28/19 19:38,"873 Elm St, Boston, MA 02215" -231810,Lightning Charging Cable,1,14.95,07/31/19 17:50,"811 Ridge St, Los Angeles, CA 90001" -231811,27in FHD Monitor,1,149.99,07/24/19 12:54,"55 7th St, Los Angeles, CA 90001" -231812,USB-C Charging Cable,2,11.95,07/09/19 17:35,"501 2nd St, Seattle, WA 98101" -231813,Wired Headphones,1,11.99,07/09/19 17:52,"386 11th St, Dallas, TX 75001" -231814,AA Batteries (4-pack),1,3.84,07/06/19 20:58,"967 Dogwood St, Los Angeles, CA 90001" -231815,AA Batteries (4-pack),2,3.84,07/30/19 20:18,"459 Willow St, Seattle, WA 98101" -231816,ThinkPad Laptop,1,999.99,07/13/19 23:36,"42 Spruce St, Los Angeles, CA 90001" -231817,AAA Batteries (4-pack),1,2.99,07/30/19 11:56,"997 Wilson St, Los Angeles, CA 90001" -231818,USB-C Charging Cable,1,11.95,07/07/19 17:44,"417 Elm St, Boston, MA 02215" -231819,Apple Airpods Headphones,1,150,07/12/19 11:13,"85 Hickory St, Seattle, WA 98101" -231820,AA Batteries (4-pack),1,3.84,07/07/19 16:17,"995 South St, Atlanta, GA 30301" -231821,Lightning Charging Cable,1,14.95,07/23/19 11:43,"439 North St, San Francisco, CA 94016" -231822,Lightning Charging Cable,1,14.95,07/31/19 15:17,"394 Forest St, Dallas, TX 75001" -231823,Flatscreen TV,1,300,07/17/19 12:12,"833 Church St, Los Angeles, CA 90001" -231824,27in 4K Gaming Monitor,1,389.99,07/31/19 16:35,"148 Center St, New York City, NY 10001" -231825,27in 4K Gaming Monitor,1,389.99,07/18/19 00:16,"376 West St, Boston, MA 02215" -231826,Apple Airpods Headphones,1,150,07/01/19 13:36,"158 Dogwood St, San Francisco, CA 94016" -231827,Apple Airpods Headphones,1,150,07/05/19 09:02,"630 13th St, Atlanta, GA 30301" -231828,Wired Headphones,1,11.99,07/01/19 11:08,"264 Adams St, Los Angeles, CA 90001" -231829,27in FHD Monitor,1,149.99,07/19/19 21:00,"881 Willow St, San Francisco, CA 94016" -231830,27in FHD Monitor,1,149.99,07/13/19 17:58,"986 Jackson St, Atlanta, GA 30301" -231831,Wired Headphones,1,11.99,07/05/19 18:13,"343 13th St, Boston, MA 02215" -231832,AA Batteries (4-pack),1,3.84,07/19/19 23:20,"666 Meadow St, San Francisco, CA 94016" -231833,Vareebadd Phone,1,400,07/04/19 21:17,"338 Church St, San Francisco, CA 94016" -231833,USB-C Charging Cable,1,11.95,07/04/19 21:17,"338 Church St, San Francisco, CA 94016" -231834,Apple Airpods Headphones,1,150,07/01/19 20:40,"308 Wilson St, Boston, MA 02215" -231835,Flatscreen TV,1,300,07/06/19 08:06,"504 11th St, Los Angeles, CA 90001" -231836,Lightning Charging Cable,1,14.95,07/12/19 11:38,"328 10th St, New York City, NY 10001" -231837,USB-C Charging Cable,1,11.95,07/06/19 23:29,"880 Park St, San Francisco, CA 94016" -231838,27in 4K Gaming Monitor,1,389.99,07/22/19 22:00,"263 2nd St, Dallas, TX 75001" -231839,USB-C Charging Cable,1,11.95,07/11/19 08:12,"401 Park St, San Francisco, CA 94016" -231840,AAA Batteries (4-pack),1,2.99,07/30/19 10:48,"326 Meadow St, Portland, ME 04101" -231841,AAA Batteries (4-pack),1,2.99,07/31/19 09:47,"319 Jackson St, Austin, TX 73301" -231842,Bose SoundSport Headphones,1,99.99,07/22/19 13:52,"20 Meadow St, Los Angeles, CA 90001" -231843,ThinkPad Laptop,1,999.99,07/08/19 18:05,"319 Washington St, San Francisco, CA 94016" -231844,AAA Batteries (4-pack),1,2.99,07/03/19 12:25,"956 Main St, New York City, NY 10001" -231845,27in FHD Monitor,1,149.99,07/18/19 07:20,"706 Hill St, San Francisco, CA 94016" -231846,Lightning Charging Cable,1,14.95,07/20/19 17:10,"409 Sunset St, Portland, OR 97035" -231847,Vareebadd Phone,1,400,07/13/19 20:16,"791 Jackson St, Seattle, WA 98101" -231848,AAA Batteries (4-pack),1,2.99,07/06/19 20:20,"420 Jefferson St, Los Angeles, CA 90001" -231849,Wired Headphones,1,11.99,07/13/19 15:57,"46 Walnut St, Boston, MA 02215" -231850,AAA Batteries (4-pack),2,2.99,07/05/19 17:01,"770 Pine St, San Francisco, CA 94016" -231851,Lightning Charging Cable,1,14.95,07/21/19 22:02,"834 8th St, New York City, NY 10001" -231852,Wired Headphones,1,11.99,07/09/19 09:32,"64 Hickory St, San Francisco, CA 94016" -231853,Lightning Charging Cable,1,14.95,07/26/19 21:09,"388 Church St, San Francisco, CA 94016" -231854,Lightning Charging Cable,1,14.95,07/30/19 21:06,"372 Willow St, Portland, OR 97035" -231855,USB-C Charging Cable,1,11.95,07/16/19 19:02,"273 Meadow St, Seattle, WA 98101" -231856,Apple Airpods Headphones,1,150,07/15/19 16:33,"631 Meadow St, Portland, ME 04101" -231857,Lightning Charging Cable,1,14.95,07/07/19 12:47,"731 Meadow St, Boston, MA 02215" -231858,Macbook Pro Laptop,1,1700,07/28/19 14:43,"218 Washington St, Seattle, WA 98101" -231859,34in Ultrawide Monitor,1,379.99,07/16/19 09:00,"792 Johnson St, Seattle, WA 98101" -231860,AA Batteries (4-pack),1,3.84,07/29/19 06:29,"19 Church St, San Francisco, CA 94016" -231861,AA Batteries (4-pack),1,3.84,07/06/19 11:44,"823 Dogwood St, New York City, NY 10001" -231862,Bose SoundSport Headphones,1,99.99,07/22/19 16:27,"397 9th St, New York City, NY 10001" -231863,USB-C Charging Cable,1,11.95,07/14/19 07:03,"939 2nd St, Boston, MA 02215" -231864,Bose SoundSport Headphones,1,99.99,07/31/19 21:51,"619 Willow St, New York City, NY 10001" -231865,Lightning Charging Cable,1,14.95,07/10/19 17:13,"192 Jefferson St, Los Angeles, CA 90001" -231866,Lightning Charging Cable,1,14.95,07/28/19 05:52,"827 Park St, Dallas, TX 75001" -231867,Lightning Charging Cable,1,14.95,07/28/19 18:35,"538 1st St, New York City, NY 10001" -231868,Bose SoundSport Headphones,1,99.99,07/21/19 11:15,"171 Forest St, Los Angeles, CA 90001" -231869,Apple Airpods Headphones,1,150,07/20/19 10:01,"490 7th St, Austin, TX 73301" -231870,20in Monitor,1,109.99,07/17/19 22:14,"251 Meadow St, Boston, MA 02215" -231871,Lightning Charging Cable,1,14.95,07/29/19 15:10,"521 4th St, San Francisco, CA 94016" -231872,USB-C Charging Cable,1,11.95,07/27/19 02:16,"244 Maple St, New York City, NY 10001" -231873,Wired Headphones,1,11.99,07/03/19 21:59,"934 North St, Los Angeles, CA 90001" -231874,Apple Airpods Headphones,1,150,07/11/19 13:18,"456 14th St, San Francisco, CA 94016" -231875,Lightning Charging Cable,1,14.95,07/09/19 01:24,"247 Hickory St, San Francisco, CA 94016" -231875,Bose SoundSport Headphones,1,99.99,07/09/19 01:24,"247 Hickory St, San Francisco, CA 94016" -231876,AAA Batteries (4-pack),2,2.99,07/22/19 23:26,"375 Chestnut St, Atlanta, GA 30301" -231877,iPhone,1,700,07/02/19 14:12,"322 Dogwood St, Seattle, WA 98101" -231878,Lightning Charging Cable,1,14.95,07/27/19 21:11,"966 Lincoln St, Los Angeles, CA 90001" -231879,USB-C Charging Cable,2,11.95,07/17/19 16:43,"404 Lakeview St, San Francisco, CA 94016" -231880,Apple Airpods Headphones,1,150,07/14/19 12:56,"221 1st St, San Francisco, CA 94016" -231881,Lightning Charging Cable,1,14.95,07/11/19 14:59,"548 14th St, San Francisco, CA 94016" -231882,Bose SoundSport Headphones,1,99.99,07/02/19 12:50,"339 Dogwood St, New York City, NY 10001" -231882,USB-C Charging Cable,1,11.95,07/02/19 12:50,"339 Dogwood St, New York City, NY 10001" -231883,AA Batteries (4-pack),1,3.84,07/03/19 07:23,"989 South St, San Francisco, CA 94016" -231884,27in 4K Gaming Monitor,1,389.99,07/22/19 15:58,"139 Park St, Dallas, TX 75001" -231885,27in 4K Gaming Monitor,1,389.99,07/17/19 21:38,"936 14th St, Portland, OR 97035" -231886,USB-C Charging Cable,1,11.95,07/28/19 15:31,"272 Chestnut St, Los Angeles, CA 90001" -231887,AAA Batteries (4-pack),1,2.99,07/10/19 18:13,"318 13th St, New York City, NY 10001" -231888,USB-C Charging Cable,1,11.95,07/29/19 01:23,"921 Pine St, Boston, MA 02215" -231889,Lightning Charging Cable,1,14.95,07/31/19 10:54,"634 Dogwood St, San Francisco, CA 94016" -231890,Lightning Charging Cable,1,14.95,07/31/19 20:16,"696 South St, Dallas, TX 75001" -231891,AAA Batteries (4-pack),4,2.99,07/09/19 11:25,"544 8th St, Los Angeles, CA 90001" -231891,Bose SoundSport Headphones,1,99.99,07/09/19 11:25,"544 8th St, Los Angeles, CA 90001" -231892,27in 4K Gaming Monitor,1,389.99,07/12/19 18:32,"489 West St, Seattle, WA 98101" -231893,Bose SoundSport Headphones,1,99.99,07/03/19 16:34,"945 7th St, Seattle, WA 98101" -231894,Bose SoundSport Headphones,1,99.99,07/16/19 09:35,"560 Sunset St, Seattle, WA 98101" -231895,Macbook Pro Laptop,1,1700,07/24/19 17:13,"77 Lincoln St, Los Angeles, CA 90001" -231896,Wired Headphones,1,11.99,07/21/19 18:24,"499 Jackson St, San Francisco, CA 94016" -231897,Wired Headphones,1,11.99,07/01/19 18:49,"353 Meadow St, Boston, MA 02215" -231898,Apple Airpods Headphones,1,150,07/01/19 22:41,"910 Center St, Austin, TX 73301" -231899,USB-C Charging Cable,1,11.95,07/16/19 08:40,"666 Willow St, Austin, TX 73301" -231900,USB-C Charging Cable,1,11.95,07/23/19 18:39,"126 Lincoln St, New York City, NY 10001" -231901,Lightning Charging Cable,1,14.95,07/09/19 11:24,"959 Jefferson St, Portland, OR 97035" -231902,Lightning Charging Cable,1,14.95,07/03/19 19:40,"251 Maple St, New York City, NY 10001" -231903,AA Batteries (4-pack),1,3.84,07/17/19 07:23,"868 Adams St, New York City, NY 10001" -231904,Macbook Pro Laptop,1,1700,07/11/19 11:22,"4 Wilson St, Atlanta, GA 30301" -231905,AAA Batteries (4-pack),2,2.99,07/16/19 18:01,"398 Jefferson St, San Francisco, CA 94016" -231906,AA Batteries (4-pack),2,3.84,07/12/19 19:36,"413 Madison St, Atlanta, GA 30301" -231907,USB-C Charging Cable,1,11.95,07/06/19 13:46,"947 Center St, Los Angeles, CA 90001" -231908,ThinkPad Laptop,1,999.99,07/14/19 14:41,"243 Washington St, Seattle, WA 98101" -231909,Lightning Charging Cable,2,14.95,07/14/19 09:42,"396 Center St, Austin, TX 73301" -231910,Bose SoundSport Headphones,1,99.99,07/17/19 01:50,"766 Wilson St, Portland, ME 04101" -231911,Bose SoundSport Headphones,1,99.99,07/13/19 11:26,"165 Willow St, Atlanta, GA 30301" -231912,Flatscreen TV,1,300,07/20/19 17:24,"427 South St, Portland, ME 04101" -231913,27in FHD Monitor,1,149.99,07/02/19 13:32,"385 Cherry St, Portland, OR 97035" -231914,AA Batteries (4-pack),1,3.84,07/22/19 10:47,"69 Hill St, Austin, TX 73301" -231915,Wired Headphones,1,11.99,07/02/19 18:04,"585 Church St, Atlanta, GA 30301" -231916,27in FHD Monitor,1,149.99,07/11/19 23:06,"676 Pine St, Atlanta, GA 30301" -231916,Bose SoundSport Headphones,1,99.99,07/11/19 23:06,"676 Pine St, Atlanta, GA 30301" -231917,USB-C Charging Cable,1,11.95,07/31/19 15:46,"691 5th St, Boston, MA 02215" -231918,USB-C Charging Cable,1,11.95,07/29/19 21:51,"930 Meadow St, Los Angeles, CA 90001" -231919,Bose SoundSport Headphones,1,99.99,07/02/19 14:19,"170 7th St, New York City, NY 10001" -231920,34in Ultrawide Monitor,1,379.99,07/22/19 11:55,"362 Jefferson St, New York City, NY 10001" -231921,Lightning Charging Cable,1,14.95,07/12/19 13:17,"147 Lincoln St, San Francisco, CA 94016" -231922,Bose SoundSport Headphones,1,99.99,07/26/19 11:24,"637 Dogwood St, Dallas, TX 75001" -231923,AA Batteries (4-pack),1,3.84,07/17/19 14:15,"127 Spruce St, San Francisco, CA 94016" -231923,AAA Batteries (4-pack),1,2.99,07/17/19 14:15,"127 Spruce St, San Francisco, CA 94016" -231924,Macbook Pro Laptop,1,1700,07/23/19 16:46,"777 Jefferson St, New York City, NY 10001" -231925,USB-C Charging Cable,1,11.95,07/24/19 10:07,"278 Jefferson St, Portland, OR 97035" -231926,Apple Airpods Headphones,1,150,07/24/19 20:06,"975 Willow St, San Francisco, CA 94016" -231927,USB-C Charging Cable,1,11.95,07/11/19 12:22,"33 Meadow St, Los Angeles, CA 90001" -231928,iPhone,1,700,07/30/19 18:21,"531 Cedar St, Atlanta, GA 30301" -231929,Vareebadd Phone,1,400,07/28/19 08:44,"307 Dogwood St, Atlanta, GA 30301" -231930,Lightning Charging Cable,1,14.95,07/09/19 13:22,"615 4th St, Los Angeles, CA 90001" -231931,Wired Headphones,1,11.99,07/24/19 10:33,"976 Dogwood St, Austin, TX 73301" -231932,Bose SoundSport Headphones,1,99.99,07/16/19 18:58,"905 1st St, Atlanta, GA 30301" -231933,AA Batteries (4-pack),1,3.84,07/07/19 10:34,"86 Hill St, Atlanta, GA 30301" -231934,USB-C Charging Cable,1,11.95,07/15/19 19:11,"447 Lake St, New York City, NY 10001" -231935,iPhone,1,700,07/15/19 15:42,"810 Washington St, Portland, OR 97035" -231936,27in FHD Monitor,1,149.99,07/17/19 16:51,"26 11th St, Boston, MA 02215" -231937,AA Batteries (4-pack),1,3.84,07/18/19 22:12,"121 Ridge St, Boston, MA 02215" -231938,Apple Airpods Headphones,1,150,07/11/19 12:57,"89 Madison St, Seattle, WA 98101" -231939,Google Phone,1,600,07/01/19 20:04,"874 8th St, San Francisco, CA 94016" -231940,AA Batteries (4-pack),2,3.84,07/08/19 15:22,"804 Wilson St, San Francisco, CA 94016" -231941,Wired Headphones,1,11.99,07/01/19 11:40,"330 Johnson St, Atlanta, GA 30301" -231942,iPhone,1,700,07/18/19 10:00,"676 Park St, Seattle, WA 98101" -231943,Google Phone,1,600,07/24/19 13:11,"203 Washington St, San Francisco, CA 94016" -231944,Bose SoundSport Headphones,1,99.99,07/25/19 00:08,"591 7th St, San Francisco, CA 94016" -231945,Apple Airpods Headphones,1,150,07/19/19 15:31,"477 Sunset St, Portland, OR 97035" -231946,AA Batteries (4-pack),3,3.84,07/31/19 13:18,"476 Meadow St, Dallas, TX 75001" -231947,Macbook Pro Laptop,1,1700,07/11/19 20:06,"441 Forest St, Austin, TX 73301" -231948,USB-C Charging Cable,1,11.95,07/23/19 10:02,"546 Main St, Atlanta, GA 30301" -231949,Apple Airpods Headphones,1,150,07/18/19 22:18,"513 Maple St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -231950,AAA Batteries (4-pack),1,2.99,07/12/19 07:28,"915 Johnson St, San Francisco, CA 94016" -231951,Bose SoundSport Headphones,1,99.99,07/19/19 14:43,"167 Sunset St, Los Angeles, CA 90001" -231952,27in 4K Gaming Monitor,1,389.99,07/07/19 11:58,"633 Cedar St, Portland, OR 97035" -231953,Lightning Charging Cable,1,14.95,07/30/19 23:36,"731 Wilson St, Los Angeles, CA 90001" -231954,27in 4K Gaming Monitor,1,389.99,07/18/19 17:26,"865 8th St, Atlanta, GA 30301" -231955,AAA Batteries (4-pack),1,2.99,07/11/19 13:08,"706 Hill St, Dallas, TX 75001" -231956,iPhone,1,700,07/12/19 13:28,"133 13th St, Boston, MA 02215" -231956,Apple Airpods Headphones,1,150,07/12/19 13:28,"133 13th St, Boston, MA 02215" -231957,USB-C Charging Cable,1,11.95,07/26/19 16:40,"179 South St, Boston, MA 02215" -231958,Macbook Pro Laptop,1,1700,07/26/19 15:51,"417 13th St, Boston, MA 02215" -231959,AA Batteries (4-pack),1,3.84,07/13/19 11:25,"294 Jefferson St, New York City, NY 10001" -231960,USB-C Charging Cable,1,11.95,07/07/19 17:50,"439 Jackson St, New York City, NY 10001" -231961,20in Monitor,1,109.99,07/13/19 12:13,"588 Highland St, Boston, MA 02215" -231962,Apple Airpods Headphones,1,150,07/16/19 11:09,"959 Forest St, Portland, OR 97035" -231962,27in 4K Gaming Monitor,1,389.99,07/16/19 11:09,"959 Forest St, Portland, OR 97035" -231963,Wired Headphones,1,11.99,07/20/19 19:43,"404 Walnut St, Portland, ME 04101" -231964,USB-C Charging Cable,1,11.95,07/30/19 18:04,"725 1st St, Dallas, TX 75001" -231965,27in FHD Monitor,1,149.99,07/09/19 10:01,"979 South St, Los Angeles, CA 90001" -231966,AAA Batteries (4-pack),1,2.99,07/25/19 21:22,"954 Cherry St, San Francisco, CA 94016" -231967,AA Batteries (4-pack),1,3.84,07/05/19 00:13,"423 Jackson St, San Francisco, CA 94016" -231968,34in Ultrawide Monitor,1,379.99,07/26/19 12:02,"480 Forest St, San Francisco, CA 94016" -231969,Apple Airpods Headphones,1,150,07/09/19 15:19,"702 Hickory St, Los Angeles, CA 90001" -231970,Apple Airpods Headphones,1,150,07/19/19 13:17,"355 4th St, Dallas, TX 75001" -231971,USB-C Charging Cable,1,11.95,07/30/19 14:14,"765 Lincoln St, Portland, OR 97035" -231972,Wired Headphones,1,11.99,07/27/19 16:51,"643 Hill St, Atlanta, GA 30301" -231973,AA Batteries (4-pack),1,3.84,07/09/19 14:41,"697 Hickory St, New York City, NY 10001" -231974,Lightning Charging Cable,1,14.95,07/07/19 21:53,"328 Spruce St, Seattle, WA 98101" -231975,Bose SoundSport Headphones,1,99.99,07/06/19 09:40,"738 Lake St, Portland, OR 97035" -231976,Google Phone,1,600,07/22/19 16:11,"439 Jackson St, San Francisco, CA 94016" -231976,USB-C Charging Cable,1,11.95,07/22/19 16:11,"439 Jackson St, San Francisco, CA 94016" -231977,ThinkPad Laptop,1,999.99,07/16/19 18:21,"428 Lincoln St, San Francisco, CA 94016" -231978,AAA Batteries (4-pack),1,2.99,07/26/19 15:56,"647 Maple St, San Francisco, CA 94016" -231979,Apple Airpods Headphones,1,150,07/30/19 23:39,"193 Washington St, Los Angeles, CA 90001" -231980,34in Ultrawide Monitor,1,379.99,07/02/19 11:49,"470 11th St, Los Angeles, CA 90001" -231981,Lightning Charging Cable,1,14.95,07/19/19 08:28,"808 6th St, San Francisco, CA 94016" -231982,27in FHD Monitor,1,149.99,07/03/19 23:49,"332 Johnson St, Los Angeles, CA 90001" -231983,AAA Batteries (4-pack),1,2.99,07/11/19 19:19,"178 Washington St, Portland, OR 97035" -231984,AA Batteries (4-pack),3,3.84,07/01/19 19:48,"597 Lakeview St, Atlanta, GA 30301" -231985,iPhone,1,700,07/31/19 09:05,"796 11th St, Atlanta, GA 30301" -231986,USB-C Charging Cable,2,11.95,07/25/19 15:14,"690 Wilson St, San Francisco, CA 94016" -231987,Google Phone,1,600,07/31/19 18:12,"759 13th St, Los Angeles, CA 90001" -231987,USB-C Charging Cable,1,11.95,07/31/19 18:12,"759 13th St, Los Angeles, CA 90001" -231988,AAA Batteries (4-pack),1,2.99,07/12/19 10:36,"184 Jefferson St, Atlanta, GA 30301" -231989,Apple Airpods Headphones,1,150,07/20/19 02:33,"61 9th St, San Francisco, CA 94016" -231990,Lightning Charging Cable,1,14.95,07/02/19 16:16,"701 South St, Los Angeles, CA 90001" -231991,27in FHD Monitor,1,149.99,07/31/19 13:51,"51 Chestnut St, Dallas, TX 75001" -231992,Bose SoundSport Headphones,1,99.99,07/20/19 20:19,"246 River St, Atlanta, GA 30301" -231993,Bose SoundSport Headphones,1,99.99,07/31/19 12:01,"48 Dogwood St, Portland, OR 97035" -231994,AAA Batteries (4-pack),1,2.99,07/05/19 23:02,"238 North St, New York City, NY 10001" -231995,Apple Airpods Headphones,1,150,07/09/19 12:28,"735 9th St, Boston, MA 02215" -231996,USB-C Charging Cable,1,11.95,07/02/19 15:45,"522 Park St, New York City, NY 10001" -231997,USB-C Charging Cable,1,11.95,07/08/19 21:06,"637 Wilson St, Atlanta, GA 30301" -231998,Vareebadd Phone,1,400,07/25/19 19:33,"888 7th St, Austin, TX 73301" -231999,27in FHD Monitor,1,149.99,07/23/19 13:27,"58 Madison St, San Francisco, CA 94016" -232000,USB-C Charging Cable,1,11.95,07/07/19 08:57,"920 Sunset St, Dallas, TX 75001" -232001,AA Batteries (4-pack),1,3.84,07/19/19 12:47,"358 5th St, Los Angeles, CA 90001" -232002,Apple Airpods Headphones,1,150,07/19/19 08:23,"531 Jackson St, San Francisco, CA 94016" -232003,AAA Batteries (4-pack),1,2.99,07/19/19 11:21,"370 Main St, New York City, NY 10001" -232004,Apple Airpods Headphones,1,150,07/14/19 22:29,"756 Elm St, Boston, MA 02215" -232005,Apple Airpods Headphones,1,150,07/07/19 20:17,"267 Spruce St, San Francisco, CA 94016" -232006,ThinkPad Laptop,1,999.99,07/05/19 20:36,"160 North St, San Francisco, CA 94016" -232007,Apple Airpods Headphones,1,150,07/27/19 12:54,"479 Johnson St, Atlanta, GA 30301" -232008,USB-C Charging Cable,1,11.95,07/08/19 12:44,"243 11th St, Portland, ME 04101" -232009,Wired Headphones,1,11.99,07/26/19 05:12,"861 Walnut St, San Francisco, CA 94016" -232010,AAA Batteries (4-pack),1,2.99,07/15/19 20:33,"765 Lakeview St, Los Angeles, CA 90001" -232011,Wired Headphones,1,11.99,07/03/19 21:54,"403 Dogwood St, Los Angeles, CA 90001" -232012,Bose SoundSport Headphones,1,99.99,07/03/19 12:15,"888 Wilson St, New York City, NY 10001" -232013,AA Batteries (4-pack),2,3.84,07/27/19 08:44,"717 5th St, Portland, ME 04101" -232014,27in FHD Monitor,1,149.99,07/27/19 09:50,"759 South St, Los Angeles, CA 90001" -232015,AA Batteries (4-pack),1,3.84,07/31/19 17:00,"438 2nd St, Atlanta, GA 30301" -232016,Macbook Pro Laptop,1,1700,07/08/19 10:40,"399 Adams St, San Francisco, CA 94016" -232017,USB-C Charging Cable,1,11.95,07/09/19 21:14,"674 9th St, Los Angeles, CA 90001" -232018,Wired Headphones,1,11.99,07/18/19 00:22,"877 Adams St, Dallas, TX 75001" -232019,27in 4K Gaming Monitor,1,389.99,07/04/19 10:55,"383 Spruce St, Seattle, WA 98101" -232020,Wired Headphones,1,11.99,07/10/19 00:33,"415 Madison St, Portland, OR 97035" -232021,AAA Batteries (4-pack),2,2.99,07/15/19 00:05,"47 River St, Boston, MA 02215" -232022,Apple Airpods Headphones,1,150,07/10/19 19:52,"176 Church St, San Francisco, CA 94016" -232023,Wired Headphones,1,11.99,07/24/19 16:04,"594 Dogwood St, San Francisco, CA 94016" -232024,Lightning Charging Cable,1,14.95,07/10/19 05:26,"347 Hickory St, Austin, TX 73301" -232025,Bose SoundSport Headphones,1,99.99,07/22/19 19:02,"138 Johnson St, Boston, MA 02215" -232026,USB-C Charging Cable,1,11.95,07/17/19 20:29,"796 14th St, Dallas, TX 75001" -232027,AAA Batteries (4-pack),2,2.99,07/30/19 18:59,"939 Jefferson St, Dallas, TX 75001" -232028,34in Ultrawide Monitor,1,379.99,07/29/19 05:21,"873 Hickory St, Boston, MA 02215" -232029,Apple Airpods Headphones,1,150,07/27/19 11:28,"889 13th St, Dallas, TX 75001" -232030,Apple Airpods Headphones,1,150,07/17/19 03:09,"600 Lake St, Portland, ME 04101" -232031,Bose SoundSport Headphones,1,99.99,07/24/19 20:48,"614 Hill St, Boston, MA 02215" -232032,Lightning Charging Cable,1,14.95,07/16/19 16:44,"125 Cedar St, New York City, NY 10001" -232033,27in 4K Gaming Monitor,1,389.99,07/25/19 18:58,"26 Cedar St, Austin, TX 73301" -232034,Wired Headphones,1,11.99,07/17/19 19:51,"773 Meadow St, Dallas, TX 75001" -232034,LG Washing Machine,1,600.0,07/17/19 19:51,"773 Meadow St, Dallas, TX 75001" -232035,Flatscreen TV,1,300,07/14/19 09:03,"375 Hickory St, Los Angeles, CA 90001" -232036,Wired Headphones,1,11.99,07/08/19 18:52,"250 Ridge St, Los Angeles, CA 90001" -232037,Lightning Charging Cable,1,14.95,07/15/19 08:09,"973 Highland St, San Francisco, CA 94016" -232038,AA Batteries (4-pack),3,3.84,07/30/19 12:39,"479 Willow St, Seattle, WA 98101" -232039,ThinkPad Laptop,1,999.99,07/19/19 11:16,"580 Center St, Seattle, WA 98101" -232040,Wired Headphones,1,11.99,07/08/19 20:33,"970 Madison St, Boston, MA 02215" -232041,Lightning Charging Cable,1,14.95,07/20/19 13:49,"445 Jackson St, Dallas, TX 75001" -232042,iPhone,1,700,07/20/19 02:58,"418 14th St, Portland, OR 97035" -232043,34in Ultrawide Monitor,1,379.99,07/30/19 14:08,"824 Forest St, New York City, NY 10001" -232044,Bose SoundSport Headphones,1,99.99,07/13/19 15:49,"355 Hickory St, Austin, TX 73301" -232045,Lightning Charging Cable,1,14.95,07/06/19 13:15,"568 9th St, Atlanta, GA 30301" -232046,Lightning Charging Cable,1,14.95,07/26/19 15:34,"98 Main St, Dallas, TX 75001" -232047,Lightning Charging Cable,1,14.95,07/22/19 12:18,"196 Madison St, New York City, NY 10001" -232048,Lightning Charging Cable,1,14.95,07/26/19 08:42,"850 Wilson St, San Francisco, CA 94016" -232049,Wired Headphones,1,11.99,07/16/19 20:17,"604 Jackson St, Los Angeles, CA 90001" -232050,Bose SoundSport Headphones,1,99.99,07/01/19 11:34,"339 Main St, Los Angeles, CA 90001" -232051,20in Monitor,1,109.99,07/14/19 09:15,"759 Cherry St, Portland, OR 97035" -232052,27in FHD Monitor,1,149.99,07/16/19 10:20,"755 4th St, Dallas, TX 75001" -232053,Lightning Charging Cable,1,14.95,07/03/19 11:03,"43 9th St, San Francisco, CA 94016" -232054,Lightning Charging Cable,1,14.95,07/25/19 13:02,"70 Pine St, San Francisco, CA 94016" -232055,Apple Airpods Headphones,1,150,07/12/19 10:18,"600 8th St, San Francisco, CA 94016" -232056,AAA Batteries (4-pack),1,2.99,07/05/19 18:28,"402 Johnson St, San Francisco, CA 94016" -232057,Wired Headphones,1,11.99,07/07/19 09:57,"248 Johnson St, New York City, NY 10001" -232058,AA Batteries (4-pack),1,3.84,07/06/19 20:50,"32 Washington St, San Francisco, CA 94016" -232059,AA Batteries (4-pack),1,3.84,07/09/19 17:19,"586 Maple St, Los Angeles, CA 90001" -232060,AAA Batteries (4-pack),2,2.99,07/29/19 15:03,"130 Cedar St, Seattle, WA 98101" -232061,Apple Airpods Headphones,1,150,07/05/19 11:20,"18 North St, Los Angeles, CA 90001" -232062,Apple Airpods Headphones,1,150,07/01/19 16:32,"474 2nd St, New York City, NY 10001" -232063,27in 4K Gaming Monitor,1,389.99,07/04/19 16:53,"93 2nd St, San Francisco, CA 94016" -232064,Lightning Charging Cable,2,14.95,07/06/19 20:38,"497 8th St, Seattle, WA 98101" -232065,Wired Headphones,1,11.99,07/02/19 18:08,"939 Adams St, Seattle, WA 98101" -232066,Lightning Charging Cable,1,14.95,07/26/19 11:34,"487 Spruce St, Los Angeles, CA 90001" -232067,Lightning Charging Cable,1,14.95,07/19/19 08:14,"698 Highland St, Boston, MA 02215" -232068,ThinkPad Laptop,1,999.99,07/06/19 14:38,"587 Jefferson St, Atlanta, GA 30301" -232069,Apple Airpods Headphones,1,150,07/11/19 10:12,"890 Wilson St, Los Angeles, CA 90001" -232070,AAA Batteries (4-pack),1,2.99,07/24/19 16:43,"82 South St, Portland, OR 97035" -232071,AAA Batteries (4-pack),1,2.99,07/05/19 07:54,"222 6th St, San Francisco, CA 94016" -232072,Apple Airpods Headphones,1,150,07/15/19 08:03,"6 13th St, Los Angeles, CA 90001" -232073,Apple Airpods Headphones,1,150,07/25/19 08:17,"288 6th St, Boston, MA 02215" -232074,Apple Airpods Headphones,1,150,07/26/19 22:35,"490 10th St, Boston, MA 02215" -232075,Wired Headphones,1,11.99,07/11/19 13:13,"93 Lakeview St, San Francisco, CA 94016" -232076,Bose SoundSport Headphones,1,99.99,07/06/19 23:32,"75 1st St, Seattle, WA 98101" -232077,Lightning Charging Cable,1,14.95,07/10/19 13:43,"22 2nd St, San Francisco, CA 94016" -232078,27in FHD Monitor,1,149.99,07/26/19 13:54,"293 Main St, San Francisco, CA 94016" -232079,ThinkPad Laptop,1,999.99,07/04/19 10:33,"77 Hickory St, San Francisco, CA 94016" -232080,Bose SoundSport Headphones,1,99.99,07/29/19 16:50,"183 South St, San Francisco, CA 94016" -232081,AA Batteries (4-pack),1,3.84,07/15/19 20:29,"912 5th St, Seattle, WA 98101" -232082,AAA Batteries (4-pack),1,2.99,07/01/19 15:43,"347 11th St, Los Angeles, CA 90001" -232083,Apple Airpods Headphones,1,150,07/22/19 18:30,"305 13th St, San Francisco, CA 94016" -232084,Lightning Charging Cable,1,14.95,07/02/19 22:27,"658 Hickory St, San Francisco, CA 94016" -232085,Bose SoundSport Headphones,1,99.99,07/15/19 15:16,"457 4th St, San Francisco, CA 94016" -232086,Wired Headphones,1,11.99,07/12/19 19:30,"627 11th St, Los Angeles, CA 90001" -232087,Wired Headphones,1,11.99,07/19/19 12:19,"894 Ridge St, Atlanta, GA 30301" -232088,AAA Batteries (4-pack),1,2.99,07/31/19 15:50,"561 North St, New York City, NY 10001" -232089,AAA Batteries (4-pack),1,2.99,07/02/19 23:12,"744 Washington St, San Francisco, CA 94016" -232090,AAA Batteries (4-pack),1,2.99,07/04/19 12:51,"196 Wilson St, San Francisco, CA 94016" -232091,34in Ultrawide Monitor,1,379.99,07/27/19 12:11,"521 Forest St, Los Angeles, CA 90001" -232092,Bose SoundSport Headphones,1,99.99,07/12/19 19:52,"691 Highland St, Portland, OR 97035" -232093,Lightning Charging Cable,1,14.95,07/13/19 18:33,"432 9th St, San Francisco, CA 94016" -232094,iPhone,1,700,07/01/19 20:52,"375 13th St, Los Angeles, CA 90001" -232095,Lightning Charging Cable,1,14.95,07/03/19 10:31,"843 Pine St, New York City, NY 10001" -232096,Wired Headphones,1,11.99,07/04/19 15:21,"355 South St, Boston, MA 02215" -232097,27in FHD Monitor,1,149.99,07/13/19 17:58,"883 14th St, Los Angeles, CA 90001" -232098,Bose SoundSport Headphones,1,99.99,07/27/19 20:18,"829 Washington St, Atlanta, GA 30301" -232099,34in Ultrawide Monitor,1,379.99,07/16/19 23:04,"679 Hickory St, Austin, TX 73301" -232100,Apple Airpods Headphones,1,150,07/25/19 10:08,"383 Ridge St, Boston, MA 02215" -232101,Wired Headphones,1,11.99,07/12/19 17:15,"977 Elm St, Boston, MA 02215" -232102,AAA Batteries (4-pack),1,2.99,07/22/19 16:27,"583 5th St, Atlanta, GA 30301" -232103,34in Ultrawide Monitor,1,379.99,07/24/19 12:09,"127 Washington St, Los Angeles, CA 90001" -232104,AAA Batteries (4-pack),1,2.99,07/03/19 10:22,"913 Johnson St, Dallas, TX 75001" -232105,USB-C Charging Cable,1,11.95,07/26/19 17:47,"3 Willow St, San Francisco, CA 94016" -232106,Bose SoundSport Headphones,1,99.99,07/13/19 14:15,"967 Elm St, San Francisco, CA 94016" -232107,Wired Headphones,1,11.99,07/12/19 13:44,"364 Dogwood St, Los Angeles, CA 90001" -232108,Wired Headphones,1,11.99,07/10/19 18:33,"392 13th St, Los Angeles, CA 90001" -232109,Apple Airpods Headphones,1,150,07/19/19 09:42,"527 Adams St, Los Angeles, CA 90001" -232110,27in FHD Monitor,1,149.99,07/16/19 16:14,"833 Lincoln St, Austin, TX 73301" -232111,AA Batteries (4-pack),1,3.84,07/12/19 18:13,"648 12th St, Seattle, WA 98101" -232112,Lightning Charging Cable,1,14.95,07/31/19 23:32,"598 Lincoln St, Austin, TX 73301" -232113,27in FHD Monitor,1,149.99,07/12/19 14:21,"100 Hickory St, San Francisco, CA 94016" -232114,34in Ultrawide Monitor,1,379.99,07/11/19 23:58,"912 7th St, San Francisco, CA 94016" -232115,Wired Headphones,1,11.99,07/25/19 12:19,"313 Johnson St, New York City, NY 10001" -232116,Lightning Charging Cable,1,14.95,07/06/19 11:00,"27 Wilson St, San Francisco, CA 94016" -232117,34in Ultrawide Monitor,1,379.99,07/20/19 20:31,"62 Forest St, Austin, TX 73301" -232118,USB-C Charging Cable,1,11.95,07/16/19 09:35,"739 5th St, Boston, MA 02215" -232119,Lightning Charging Cable,1,14.95,08/01/19 02:08,"210 Walnut St, Los Angeles, CA 90001" -232120,Vareebadd Phone,1,400,07/24/19 00:42,"881 Madison St, Boston, MA 02215" -232121,Lightning Charging Cable,1,14.95,07/29/19 15:52,"406 13th St, Austin, TX 73301" -232122,Bose SoundSport Headphones,1,99.99,07/20/19 16:05,"869 14th St, San Francisco, CA 94016" -232123,Apple Airpods Headphones,1,150,07/13/19 08:28,"971 Sunset St, Seattle, WA 98101" -232124,27in FHD Monitor,1,149.99,07/01/19 20:38,"62 14th St, Los Angeles, CA 90001" -232125,AAA Batteries (4-pack),4,2.99,07/17/19 11:44,"448 Washington St, Boston, MA 02215" -232126,USB-C Charging Cable,2,11.95,07/02/19 10:14,"595 7th St, San Francisco, CA 94016" -232127,Flatscreen TV,1,300,07/19/19 12:33,"34 7th St, Portland, OR 97035" -232128,27in FHD Monitor,1,149.99,07/12/19 09:00,"738 9th St, Los Angeles, CA 90001" -232129,AAA Batteries (4-pack),1,2.99,07/10/19 15:31,"59 Meadow St, New York City, NY 10001" -232130,AAA Batteries (4-pack),1,2.99,07/26/19 10:12,"137 Willow St, Seattle, WA 98101" -232131,Apple Airpods Headphones,1,150,07/17/19 19:11,"327 Meadow St, New York City, NY 10001" -232132,USB-C Charging Cable,1,11.95,07/07/19 15:28,"477 Center St, Los Angeles, CA 90001" -232133,Wired Headphones,1,11.99,07/28/19 12:27,"887 Lake St, Los Angeles, CA 90001" -232134,Lightning Charging Cable,1,14.95,07/23/19 21:37,"140 Hill St, Boston, MA 02215" -232135,Apple Airpods Headphones,1,150,07/13/19 00:16,"748 Lincoln St, New York City, NY 10001" -232136,Lightning Charging Cable,1,14.95,07/15/19 11:02,"353 11th St, Austin, TX 73301" -232137,27in FHD Monitor,1,149.99,07/14/19 11:33,"841 2nd St, New York City, NY 10001" -232138,AA Batteries (4-pack),1,3.84,07/23/19 15:31,"354 11th St, Atlanta, GA 30301" -232139,USB-C Charging Cable,1,11.95,07/13/19 00:45,"895 Jefferson St, Austin, TX 73301" -232140,LG Washing Machine,1,600.0,07/17/19 20:08,"518 4th St, Atlanta, GA 30301" -232141,Apple Airpods Headphones,1,150,07/03/19 17:54,"716 Meadow St, Los Angeles, CA 90001" -232142,Wired Headphones,1,11.99,07/22/19 12:47,"310 Forest St, Dallas, TX 75001" -232143,Apple Airpods Headphones,1,150,07/22/19 18:06,"137 Main St, Portland, OR 97035" -232144,27in 4K Gaming Monitor,1,389.99,07/30/19 08:42,"543 Spruce St, San Francisco, CA 94016" -232145,Bose SoundSport Headphones,1,99.99,07/24/19 20:31,"319 6th St, Dallas, TX 75001" -232146,USB-C Charging Cable,1,11.95,07/30/19 14:22,"378 7th St, Atlanta, GA 30301" -232147,Lightning Charging Cable,1,14.95,07/25/19 11:34,"628 1st St, San Francisco, CA 94016" -232148,Google Phone,1,600,07/21/19 09:34,"567 Hill St, Boston, MA 02215" -232149,Macbook Pro Laptop,1,1700,07/07/19 23:23,"663 6th St, San Francisco, CA 94016" -232150,27in 4K Gaming Monitor,1,389.99,07/10/19 01:19,"332 7th St, New York City, NY 10001" -232151,Wired Headphones,1,11.99,07/10/19 08:30,"915 Hill St, Boston, MA 02215" -232152,Wired Headphones,1,11.99,07/14/19 13:43,"178 6th St, Dallas, TX 75001" -232153,USB-C Charging Cable,1,11.95,07/31/19 12:52,"644 Walnut St, Boston, MA 02215" -232154,27in 4K Gaming Monitor,1,389.99,07/30/19 09:01,"821 Johnson St, Dallas, TX 75001" -232155,Flatscreen TV,1,300,07/27/19 10:30,"156 2nd St, San Francisco, CA 94016" -232156,Bose SoundSport Headphones,1,99.99,07/06/19 14:17,"772 Meadow St, Atlanta, GA 30301" -232157,AA Batteries (4-pack),1,3.84,07/29/19 13:29,"290 Pine St, Austin, TX 73301" -232158,USB-C Charging Cable,1,11.95,07/27/19 16:45,"842 Center St, San Francisco, CA 94016" -232159,Apple Airpods Headphones,1,150,07/21/19 20:09,"93 Chestnut St, Dallas, TX 75001" -232160,AA Batteries (4-pack),3,3.84,07/09/19 22:45,"560 Wilson St, Dallas, TX 75001" -232161,27in FHD Monitor,1,149.99,07/11/19 02:16,"569 Wilson St, Portland, OR 97035" -232162,ThinkPad Laptop,1,999.99,07/29/19 19:30,"978 Meadow St, San Francisco, CA 94016" -232163,AAA Batteries (4-pack),1,2.99,07/25/19 21:25,"938 Lake St, San Francisco, CA 94016" -232164,Apple Airpods Headphones,1,150,07/17/19 16:33,"65 Walnut St, New York City, NY 10001" -232165,AAA Batteries (4-pack),1,2.99,07/17/19 15:39,"537 Chestnut St, Atlanta, GA 30301" -232166,Wired Headphones,1,11.99,07/10/19 23:51,"868 Center St, Atlanta, GA 30301" -232167,Lightning Charging Cable,1,14.95,07/16/19 17:58,"980 North St, Atlanta, GA 30301" -232168,USB-C Charging Cable,1,11.95,07/02/19 12:32,"247 9th St, San Francisco, CA 94016" -232169,Lightning Charging Cable,1,14.95,07/02/19 20:25,"615 West St, Austin, TX 73301" -232170,AA Batteries (4-pack),2,3.84,07/12/19 11:28,"205 Lake St, Los Angeles, CA 90001" -232171,Wired Headphones,1,11.99,07/12/19 13:50,"510 Cedar St, Seattle, WA 98101" -232172,Wired Headphones,1,11.99,07/10/19 18:05,"24 Elm St, Austin, TX 73301" -232173,AA Batteries (4-pack),2,3.84,07/11/19 21:30,"928 Sunset St, Boston, MA 02215" -232174,AAA Batteries (4-pack),1,2.99,07/11/19 22:03,"671 Meadow St, San Francisco, CA 94016" -232175,AAA Batteries (4-pack),1,2.99,07/31/19 16:04,"798 1st St, New York City, NY 10001" -232176,Apple Airpods Headphones,1,150,07/06/19 20:36,"374 Forest St, Los Angeles, CA 90001" -232177,34in Ultrawide Monitor,1,379.99,07/12/19 07:51,"964 6th St, San Francisco, CA 94016" -232177,20in Monitor,1,109.99,07/12/19 07:51,"964 6th St, San Francisco, CA 94016" -232178,Wired Headphones,1,11.99,07/19/19 18:19,"27 Jefferson St, Atlanta, GA 30301" -232179,Lightning Charging Cable,1,14.95,07/05/19 20:18,"202 Hickory St, Portland, OR 97035" -232180,27in 4K Gaming Monitor,1,389.99,07/04/19 12:00,"391 7th St, Atlanta, GA 30301" -232181,Macbook Pro Laptop,1,1700,07/31/19 14:10,"736 Wilson St, New York City, NY 10001" -232182,27in 4K Gaming Monitor,1,389.99,07/20/19 15:43,"267 Madison St, San Francisco, CA 94016" -232183,AAA Batteries (4-pack),1,2.99,07/29/19 18:02,"302 Cedar St, Los Angeles, CA 90001" -232184,AA Batteries (4-pack),1,3.84,07/26/19 17:57,"558 Lakeview St, Portland, OR 97035" -232185,Wired Headphones,1,11.99,07/22/19 19:15,"169 13th St, Austin, TX 73301" -232186,Wired Headphones,1,11.99,07/11/19 20:17,"219 Spruce St, Los Angeles, CA 90001" -232187,Lightning Charging Cable,2,14.95,07/28/19 22:37,"473 Hickory St, San Francisco, CA 94016" -232188,Bose SoundSport Headphones,1,99.99,07/14/19 17:56,"995 Elm St, Los Angeles, CA 90001" -232189,USB-C Charging Cable,1,11.95,07/07/19 18:35,"326 Jackson St, Los Angeles, CA 90001" -232190,AA Batteries (4-pack),1,3.84,07/22/19 08:05,"245 Cedar St, Boston, MA 02215" -232191,ThinkPad Laptop,1,999.99,07/04/19 05:57,"211 7th St, San Francisco, CA 94016" -232192,Wired Headphones,2,11.99,07/10/19 09:43,"659 Meadow St, Los Angeles, CA 90001" -232193,AAA Batteries (4-pack),1,2.99,07/27/19 16:49,"369 Chestnut St, San Francisco, CA 94016" -232194,USB-C Charging Cable,1,11.95,07/15/19 17:34,"579 Cedar St, Los Angeles, CA 90001" -232195,Bose SoundSport Headphones,1,99.99,07/14/19 22:35,"17 Jefferson St, Boston, MA 02215" -232196,USB-C Charging Cable,2,11.95,07/06/19 20:46,"764 Lake St, New York City, NY 10001" -232197,Apple Airpods Headphones,1,150,07/03/19 17:20,"582 6th St, Portland, OR 97035" -232198,Apple Airpods Headphones,1,150,07/05/19 23:55,"829 6th St, San Francisco, CA 94016" -232199,Apple Airpods Headphones,1,150,07/26/19 17:20,"161 1st St, Los Angeles, CA 90001" -232200,AA Batteries (4-pack),2,3.84,07/10/19 19:18,"70 Elm St, Portland, OR 97035" -232201,LG Washing Machine,1,600.0,07/01/19 14:37,"789 9th St, Atlanta, GA 30301" -232202,USB-C Charging Cable,1,11.95,07/16/19 00:11,"136 5th St, New York City, NY 10001" -232203,AAA Batteries (4-pack),2,2.99,07/13/19 17:41,"297 13th St, San Francisco, CA 94016" -232204,Wired Headphones,1,11.99,07/15/19 13:50,"208 7th St, Portland, OR 97035" -232205,Lightning Charging Cable,1,14.95,07/21/19 10:21,"380 Spruce St, Atlanta, GA 30301" -232206,Macbook Pro Laptop,1,1700,07/21/19 22:07,"803 Maple St, Austin, TX 73301" -232207,iPhone,1,700,07/21/19 21:54,"187 5th St, San Francisco, CA 94016" -232208,AAA Batteries (4-pack),1,2.99,07/18/19 12:24,"951 13th St, Austin, TX 73301" -232209,Apple Airpods Headphones,1,150,07/01/19 23:23,"676 2nd St, New York City, NY 10001" -232210,34in Ultrawide Monitor,1,379.99,07/01/19 20:52,"188 Hill St, San Francisco, CA 94016" -232211,Bose SoundSport Headphones,1,99.99,07/29/19 11:08,"446 5th St, Boston, MA 02215" -232212,AAA Batteries (4-pack),2,2.99,07/10/19 11:53,"105 Elm St, San Francisco, CA 94016" -232213,AA Batteries (4-pack),1,3.84,07/30/19 11:09,"335 7th St, Dallas, TX 75001" -232214,27in FHD Monitor,1,149.99,07/21/19 16:13,"671 North St, Los Angeles, CA 90001" -232215,ThinkPad Laptop,1,999.99,07/09/19 17:32,"787 5th St, New York City, NY 10001" -232216,Apple Airpods Headphones,1,150,07/11/19 16:08,"118 12th St, Los Angeles, CA 90001" -232217,USB-C Charging Cable,1,11.95,07/08/19 16:04,"998 River St, San Francisco, CA 94016" -232218,Apple Airpods Headphones,1,150,07/31/19 19:21,"732 Ridge St, Portland, OR 97035" -232219,Lightning Charging Cable,1,14.95,07/09/19 17:41,"164 2nd St, San Francisco, CA 94016" -232220,27in 4K Gaming Monitor,1,389.99,07/07/19 23:37,"257 7th St, New York City, NY 10001" -232221,Lightning Charging Cable,1,14.95,07/22/19 21:34,"943 Center St, Boston, MA 02215" -232222,USB-C Charging Cable,1,11.95,07/19/19 09:07,"268 Jackson St, New York City, NY 10001" -232223,AAA Batteries (4-pack),1,2.99,07/21/19 07:43,"926 6th St, Los Angeles, CA 90001" -232224,20in Monitor,1,109.99,07/15/19 03:54,"902 Washington St, Los Angeles, CA 90001" -232225,USB-C Charging Cable,2,11.95,07/19/19 14:54,"636 1st St, New York City, NY 10001" -232226,AAA Batteries (4-pack),1,2.99,07/27/19 09:33,"754 Jackson St, New York City, NY 10001" -232227,20in Monitor,1,109.99,07/23/19 19:40,"669 Walnut St, New York City, NY 10001" -232228,34in Ultrawide Monitor,1,379.99,07/06/19 18:47,"519 River St, New York City, NY 10001" -232229,AA Batteries (4-pack),3,3.84,07/13/19 15:28,"246 Elm St, Boston, MA 02215" -232230,Wired Headphones,1,11.99,07/10/19 14:29,"830 Madison St, San Francisco, CA 94016" -232231,Bose SoundSport Headphones,1,99.99,07/17/19 07:31,"329 7th St, Los Angeles, CA 90001" -232232,Lightning Charging Cable,1,14.95,07/02/19 13:17,"362 Walnut St, Los Angeles, CA 90001" -232233,AA Batteries (4-pack),1,3.84,07/27/19 20:49,"734 Sunset St, Dallas, TX 75001" -232234,AA Batteries (4-pack),2,3.84,07/03/19 17:51,"132 Willow St, Austin, TX 73301" -232235,ThinkPad Laptop,1,999.99,07/11/19 21:26,"23 Johnson St, New York City, NY 10001" -232235,AAA Batteries (4-pack),1,2.99,07/11/19 21:26,"23 Johnson St, New York City, NY 10001" -232236,AA Batteries (4-pack),1,3.84,07/24/19 14:14,"881 Cherry St, Boston, MA 02215" -232236,AAA Batteries (4-pack),3,2.99,07/24/19 14:14,"881 Cherry St, Boston, MA 02215" -232237,USB-C Charging Cable,1,11.95,07/18/19 05:24,"298 2nd St, Dallas, TX 75001" -232238,iPhone,1,700,07/08/19 09:44,"179 1st St, Austin, TX 73301" -232239,Wired Headphones,1,11.99,07/10/19 00:43,"418 Dogwood St, San Francisco, CA 94016" -232240,Lightning Charging Cable,2,14.95,07/08/19 11:55,"882 2nd St, Austin, TX 73301" -232241,AA Batteries (4-pack),1,3.84,07/26/19 12:08,"690 14th St, Los Angeles, CA 90001" -232242,Apple Airpods Headphones,1,150,07/01/19 09:06,"764 Highland St, New York City, NY 10001" -232243,Apple Airpods Headphones,1,150,07/14/19 22:27,"263 2nd St, San Francisco, CA 94016" -232244,Vareebadd Phone,1,400,07/07/19 23:07,"315 Willow St, Austin, TX 73301" -232244,USB-C Charging Cable,1,11.95,07/07/19 23:07,"315 Willow St, Austin, TX 73301" -232245,Bose SoundSport Headphones,1,99.99,07/14/19 11:24,"304 7th St, Boston, MA 02215" -232245,20in Monitor,1,109.99,07/14/19 11:24,"304 7th St, Boston, MA 02215" -232246,27in FHD Monitor,1,149.99,07/09/19 17:33,"61 12th St, Seattle, WA 98101" -232247,USB-C Charging Cable,1,11.95,07/06/19 09:13,"680 Madison St, San Francisco, CA 94016" -232248,Wired Headphones,1,11.99,07/10/19 10:28,"664 South St, New York City, NY 10001" -232249,Wired Headphones,1,11.99,07/20/19 08:26,"635 11th St, Atlanta, GA 30301" -232250,Google Phone,1,600,07/22/19 13:14,"677 Main St, Atlanta, GA 30301" -232251,20in Monitor,1,109.99,07/17/19 00:12,"327 Madison St, Dallas, TX 75001" -232252,Wired Headphones,1,11.99,07/08/19 08:56,"375 North St, New York City, NY 10001" -232253,Google Phone,1,600,07/07/19 18:16,"771 13th St, Los Angeles, CA 90001" -232254,Wired Headphones,1,11.99,07/22/19 12:12,"556 Madison St, San Francisco, CA 94016" -232255,34in Ultrawide Monitor,1,379.99,07/21/19 15:19,"540 Madison St, Boston, MA 02215" -232256,AA Batteries (4-pack),1,3.84,07/12/19 22:06,"524 North St, New York City, NY 10001" -232257,ThinkPad Laptop,1,999.99,07/09/19 13:19,"926 Park St, Atlanta, GA 30301" -232258,AAA Batteries (4-pack),2,2.99,07/29/19 18:57,"471 North St, New York City, NY 10001" -232259,Wired Headphones,1,11.99,07/09/19 17:57,"450 Walnut St, Portland, ME 04101" -232260,Bose SoundSport Headphones,1,99.99,07/14/19 16:13,"817 1st St, San Francisco, CA 94016" -232261,Vareebadd Phone,1,400,07/09/19 20:14,"547 Adams St, Boston, MA 02215" -232261,USB-C Charging Cable,1,11.95,07/09/19 20:14,"547 Adams St, Boston, MA 02215" -232262,USB-C Charging Cable,1,11.95,07/08/19 10:03,"699 Meadow St, San Francisco, CA 94016" -232263,27in 4K Gaming Monitor,1,389.99,07/24/19 08:47,"668 River St, Seattle, WA 98101" -232264,27in FHD Monitor,1,149.99,07/02/19 19:01,"888 Johnson St, San Francisco, CA 94016" -232265,Bose SoundSport Headphones,1,99.99,07/24/19 23:34,"804 Maple St, Los Angeles, CA 90001" -232266,USB-C Charging Cable,1,11.95,07/05/19 14:47,"18 Ridge St, New York City, NY 10001" -232267,Lightning Charging Cable,1,14.95,07/25/19 12:07,"987 Main St, Los Angeles, CA 90001" -232268,AA Batteries (4-pack),1,3.84,07/09/19 11:54,"666 Johnson St, San Francisco, CA 94016" -232269,Flatscreen TV,1,300,07/12/19 18:18,"220 Maple St, Boston, MA 02215" -232270,Wired Headphones,1,11.99,07/08/19 13:32,"644 South St, Dallas, TX 75001" -232271,AAA Batteries (4-pack),1,2.99,07/31/19 14:26,"101 Johnson St, Portland, OR 97035" -232272,USB-C Charging Cable,1,11.95,07/03/19 16:38,"863 4th St, New York City, NY 10001" -232273,Wired Headphones,1,11.99,07/03/19 20:35,"753 Lincoln St, San Francisco, CA 94016" -232274,Apple Airpods Headphones,1,150,07/21/19 20:32,"228 South St, San Francisco, CA 94016" -232275,Google Phone,1,600,07/22/19 22:44,"483 5th St, New York City, NY 10001" -232275,USB-C Charging Cable,1,11.95,07/22/19 22:44,"483 5th St, New York City, NY 10001" -232276,Wired Headphones,1,11.99,07/30/19 10:25,"360 2nd St, Seattle, WA 98101" -232277,27in FHD Monitor,1,149.99,07/18/19 19:46,"23 2nd St, San Francisco, CA 94016" -232278,Lightning Charging Cable,1,14.95,07/08/19 17:20,"633 Jackson St, San Francisco, CA 94016" -232279,AA Batteries (4-pack),1,3.84,07/29/19 20:04,"551 Lake St, Atlanta, GA 30301" -232280,Lightning Charging Cable,1,14.95,07/30/19 22:37,"774 Elm St, New York City, NY 10001" -232281,AAA Batteries (4-pack),2,2.99,07/31/19 19:00,"735 Willow St, Austin, TX 73301" -232282,AAA Batteries (4-pack),1,2.99,07/25/19 13:03,"9 Madison St, San Francisco, CA 94016" -232283,Lightning Charging Cable,1,14.95,07/13/19 23:12,"466 West St, Los Angeles, CA 90001" -,,,,, -232284,Lightning Charging Cable,1,14.95,07/08/19 19:06,"815 4th St, Los Angeles, CA 90001" -232285,27in 4K Gaming Monitor,1,389.99,07/15/19 14:48,"414 Dogwood St, San Francisco, CA 94016" -232286,Wired Headphones,1,11.99,07/30/19 10:02,"693 6th St, Seattle, WA 98101" -232287,Macbook Pro Laptop,1,1700,07/06/19 19:37,"392 South St, Atlanta, GA 30301" -232288,AAA Batteries (4-pack),1,2.99,07/26/19 23:50,"683 10th St, Dallas, TX 75001" -232289,AA Batteries (4-pack),1,3.84,07/10/19 07:38,"422 Walnut St, Portland, OR 97035" -232290,iPhone,1,700,07/01/19 14:16,"892 Spruce St, Boston, MA 02215" -232290,Apple Airpods Headphones,1,150,07/01/19 14:16,"892 Spruce St, Boston, MA 02215" -232291,USB-C Charging Cable,1,11.95,07/06/19 11:55,"724 Hickory St, New York City, NY 10001" -232292,Wired Headphones,1,11.99,07/07/19 18:11,"2 South St, Portland, ME 04101" -232293,ThinkPad Laptop,1,999.99,07/09/19 14:07,"449 14th St, Boston, MA 02215" -232294,USB-C Charging Cable,1,11.95,07/17/19 19:29,"1 Meadow St, San Francisco, CA 94016" -232295,AA Batteries (4-pack),1,3.84,07/12/19 16:35,"700 River St, Dallas, TX 75001" -232296,Bose SoundSport Headphones,1,99.99,07/26/19 16:31,"78 Maple St, Seattle, WA 98101" -232297,AA Batteries (4-pack),2,3.84,07/18/19 13:04,"194 Madison St, San Francisco, CA 94016" -232298,USB-C Charging Cable,2,11.95,07/14/19 00:04,"226 11th St, Atlanta, GA 30301" -232299,USB-C Charging Cable,1,11.95,07/24/19 19:31,"149 14th St, Dallas, TX 75001" -232300,USB-C Charging Cable,1,11.95,07/18/19 12:15,"106 11th St, Dallas, TX 75001" -232301,USB-C Charging Cable,1,11.95,07/19/19 16:00,"807 Elm St, Portland, OR 97035" -232302,ThinkPad Laptop,1,999.99,07/03/19 17:12,"864 2nd St, Dallas, TX 75001" -232303,Lightning Charging Cable,1,14.95,07/01/19 15:12,"745 Hill St, Portland, OR 97035" -232304,Wired Headphones,2,11.99,07/25/19 16:09,"527 4th St, Los Angeles, CA 90001" -232305,Macbook Pro Laptop,1,1700,07/16/19 01:58,"111 Willow St, Austin, TX 73301" -232306,AA Batteries (4-pack),1,3.84,07/07/19 19:27,"615 6th St, Los Angeles, CA 90001" -232307,iPhone,1,700,07/21/19 16:16,"378 Main St, Seattle, WA 98101" -232308,27in 4K Gaming Monitor,1,389.99,07/26/19 13:13,"309 8th St, Dallas, TX 75001" -232309,AA Batteries (4-pack),1,3.84,07/21/19 21:07,"213 9th St, New York City, NY 10001" -232310,Apple Airpods Headphones,1,150,07/28/19 20:24,"338 Adams St, Boston, MA 02215" -232311,USB-C Charging Cable,1,11.95,07/22/19 22:10,"336 Lincoln St, Austin, TX 73301" -232312,20in Monitor,1,109.99,07/11/19 21:41,"386 12th St, Seattle, WA 98101" -232313,27in FHD Monitor,1,149.99,07/10/19 08:29,"89 Lakeview St, San Francisco, CA 94016" -232314,Macbook Pro Laptop,1,1700,07/03/19 16:25,"683 Highland St, Dallas, TX 75001" -232314,AAA Batteries (4-pack),2,2.99,07/03/19 16:25,"683 Highland St, Dallas, TX 75001" -232315,Macbook Pro Laptop,1,1700,07/22/19 11:43,"738 8th St, New York City, NY 10001" -232316,USB-C Charging Cable,2,11.95,07/08/19 19:04,"369 Main St, Los Angeles, CA 90001" -232317,Google Phone,1,600,07/27/19 14:23,"680 Forest St, New York City, NY 10001" -232318,Apple Airpods Headphones,1,150,07/19/19 12:54,"31 8th St, Dallas, TX 75001" -232319,Apple Airpods Headphones,1,150,07/03/19 00:38,"543 7th St, New York City, NY 10001" -232320,Apple Airpods Headphones,1,150,07/03/19 15:40,"559 Cherry St, New York City, NY 10001" -232321,Google Phone,1,600,07/09/19 19:30,"550 Church St, Boston, MA 02215" -232322,Lightning Charging Cable,1,14.95,07/13/19 00:05,"817 West St, San Francisco, CA 94016" -232323,AAA Batteries (4-pack),1,2.99,07/06/19 12:42,"271 Cedar St, Austin, TX 73301" -232324,Wired Headphones,1,11.99,07/20/19 16:18,"589 Wilson St, Boston, MA 02215" -232325,Wired Headphones,1,11.99,07/24/19 22:43,"334 Hickory St, Seattle, WA 98101" -232326,Lightning Charging Cable,1,14.95,07/24/19 16:46,"905 Johnson St, New York City, NY 10001" -232327,Bose SoundSport Headphones,1,99.99,07/14/19 07:45,"534 Forest St, Los Angeles, CA 90001" -232328,AA Batteries (4-pack),1,3.84,07/03/19 04:41,"63 Forest St, San Francisco, CA 94016" -232329,Google Phone,1,600,07/26/19 08:23,"390 7th St, Seattle, WA 98101" -232330,Bose SoundSport Headphones,1,99.99,07/09/19 12:22,"254 4th St, Dallas, TX 75001" -232331,Apple Airpods Headphones,1,150,07/03/19 15:12,"160 Church St, Portland, OR 97035" -232332,AAA Batteries (4-pack),1,2.99,07/16/19 13:39,"730 Hill St, Boston, MA 02215" -232333,20in Monitor,1,109.99,07/25/19 20:22,"34 Main St, San Francisco, CA 94016" -232334,AA Batteries (4-pack),1,3.84,07/29/19 14:20,"192 Washington St, San Francisco, CA 94016" -232335,USB-C Charging Cable,1,11.95,07/29/19 09:47,"676 Jackson St, Seattle, WA 98101" -232336,27in 4K Gaming Monitor,1,389.99,07/25/19 18:02,"451 Spruce St, San Francisco, CA 94016" -232337,34in Ultrawide Monitor,1,379.99,07/18/19 01:08,"906 8th St, New York City, NY 10001" -232338,27in 4K Gaming Monitor,1,389.99,07/10/19 05:34,"484 Hickory St, San Francisco, CA 94016" -232339,34in Ultrawide Monitor,1,379.99,07/25/19 21:22,"4 Chestnut St, San Francisco, CA 94016" -232340,iPhone,1,700,07/02/19 20:02,"392 South St, Dallas, TX 75001" -232340,Apple Airpods Headphones,1,150,07/02/19 20:02,"392 South St, Dallas, TX 75001" -232340,Wired Headphones,1,11.99,07/02/19 20:02,"392 South St, Dallas, TX 75001" -232341,USB-C Charging Cable,1,11.95,07/13/19 12:34,"755 Lincoln St, Portland, OR 97035" -232342,Apple Airpods Headphones,1,150,07/05/19 18:53,"262 Willow St, Boston, MA 02215" -232343,Lightning Charging Cable,1,14.95,07/06/19 13:25,"565 14th St, Atlanta, GA 30301" -232344,Google Phone,1,600,07/31/19 14:53,"410 Elm St, Portland, ME 04101" -232345,27in FHD Monitor,1,149.99,07/08/19 11:01,"811 South St, Atlanta, GA 30301" -232346,AA Batteries (4-pack),2,3.84,07/11/19 11:24,"210 Cherry St, San Francisco, CA 94016" -232347,ThinkPad Laptop,1,999.99,07/11/19 04:44,"296 10th St, San Francisco, CA 94016" -232348,iPhone,1,700,07/27/19 10:24,"793 Hill St, Boston, MA 02215" -232348,Apple Airpods Headphones,1,150,07/27/19 10:24,"793 Hill St, Boston, MA 02215" -232349,27in FHD Monitor,1,149.99,07/03/19 17:28,"356 12th St, Atlanta, GA 30301" -232350,Flatscreen TV,1,300,07/09/19 14:19,"1 Willow St, San Francisco, CA 94016" -232351,Apple Airpods Headphones,1,150,07/01/19 14:34,"207 Wilson St, San Francisco, CA 94016" -232352,Wired Headphones,1,11.99,07/20/19 18:02,"488 Johnson St, Boston, MA 02215" -232353,Wired Headphones,1,11.99,07/30/19 17:45,"627 13th St, New York City, NY 10001" -232354,Google Phone,1,600,07/15/19 22:11,"554 9th St, Atlanta, GA 30301" -232355,AA Batteries (4-pack),1,3.84,07/21/19 23:50,"226 West St, Seattle, WA 98101" -232356,ThinkPad Laptop,1,999.99,07/14/19 02:03,"424 Jackson St, Dallas, TX 75001" -232357,27in FHD Monitor,1,149.99,07/08/19 08:18,"730 Center St, New York City, NY 10001" -232358,Macbook Pro Laptop,1,1700,07/21/19 20:34,"687 Johnson St, San Francisco, CA 94016" -232359,AA Batteries (4-pack),1,3.84,07/23/19 16:34,"444 Walnut St, New York City, NY 10001" -232360,Lightning Charging Cable,2,14.95,07/25/19 23:57,"659 Hill St, Portland, OR 97035" -232361,USB-C Charging Cable,1,11.95,07/22/19 18:02,"909 Cherry St, San Francisco, CA 94016" -232362,USB-C Charging Cable,1,11.95,07/17/19 00:19,"391 7th St, Austin, TX 73301" -232362,Lightning Charging Cable,2,14.95,07/17/19 00:19,"391 7th St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -232363,Lightning Charging Cable,1,14.95,07/02/19 22:13,"263 Jackson St, Austin, TX 73301" -232364,Apple Airpods Headphones,1,150,07/20/19 12:27,"500 5th St, Portland, OR 97035" -232365,USB-C Charging Cable,1,11.95,07/24/19 01:37,"11 Walnut St, Portland, OR 97035" -232366,Apple Airpods Headphones,1,150,07/06/19 05:46,"157 Church St, Austin, TX 73301" -232367,AAA Batteries (4-pack),1,2.99,07/02/19 14:24,"911 Church St, Portland, OR 97035" -232368,Apple Airpods Headphones,1,150,07/25/19 11:34,"872 Maple St, Los Angeles, CA 90001" -232369,AA Batteries (4-pack),2,3.84,07/15/19 11:30,"590 North St, New York City, NY 10001" -232370,Lightning Charging Cable,1,14.95,07/23/19 10:46,"101 Jefferson St, Austin, TX 73301" -232371,AA Batteries (4-pack),1,3.84,07/20/19 10:16,"410 Elm St, San Francisco, CA 94016" -232372,Lightning Charging Cable,1,14.95,07/03/19 20:39,"839 West St, Seattle, WA 98101" -232373,AAA Batteries (4-pack),2,2.99,07/24/19 23:10,"476 2nd St, San Francisco, CA 94016" -232374,Macbook Pro Laptop,1,1700,07/24/19 20:17,"262 Dogwood St, San Francisco, CA 94016" -232375,AA Batteries (4-pack),3,3.84,07/11/19 08:59,"732 Willow St, San Francisco, CA 94016" -232376,Lightning Charging Cable,1,14.95,07/25/19 10:44,"687 1st St, San Francisco, CA 94016" -232377,27in 4K Gaming Monitor,1,389.99,07/31/19 15:36,"292 Lincoln St, Boston, MA 02215" -232378,AAA Batteries (4-pack),1,2.99,07/08/19 10:29,"468 Wilson St, New York City, NY 10001" -232379,20in Monitor,1,109.99,07/06/19 23:53,"864 2nd St, San Francisco, CA 94016" -232380,Apple Airpods Headphones,1,150,07/27/19 07:04,"551 Elm St, Dallas, TX 75001" -232381,AA Batteries (4-pack),2,3.84,07/30/19 17:42,"466 Jackson St, New York City, NY 10001" -232382,20in Monitor,1,109.99,07/13/19 01:36,"4 Hickory St, San Francisco, CA 94016" -232383,Bose SoundSport Headphones,1,99.99,07/10/19 11:12,"224 6th St, Boston, MA 02215" -232384,Bose SoundSport Headphones,1,99.99,07/25/19 02:26,"100 14th St, Atlanta, GA 30301" -232385,iPhone,1,700,07/01/19 13:24,"615 North St, Atlanta, GA 30301" -232386,AAA Batteries (4-pack),1,2.99,07/03/19 19:50,"69 Spruce St, Boston, MA 02215" -232387,AA Batteries (4-pack),1,3.84,07/30/19 11:17,"435 Willow St, Boston, MA 02215" -232388,Apple Airpods Headphones,1,150,07/26/19 12:08,"729 Walnut St, Austin, TX 73301" -232389,Lightning Charging Cable,1,14.95,07/31/19 23:10,"895 Madison St, Atlanta, GA 30301" -232390,USB-C Charging Cable,1,11.95,07/25/19 14:17,"664 Meadow St, Boston, MA 02215" -232391,Bose SoundSport Headphones,1,99.99,07/05/19 17:54,"893 10th St, Boston, MA 02215" -232392,AA Batteries (4-pack),1,3.84,07/16/19 08:32,"18 Center St, Los Angeles, CA 90001" -232393,Apple Airpods Headphones,1,150,07/07/19 11:38,"176 Park St, Los Angeles, CA 90001" -232394,Wired Headphones,1,11.99,07/08/19 08:17,"551 Forest St, Portland, ME 04101" -232395,27in 4K Gaming Monitor,1,389.99,07/16/19 14:03,"506 Main St, San Francisco, CA 94016" -232396,Wired Headphones,1,11.99,07/01/19 14:47,"227 Johnson St, San Francisco, CA 94016" -232397,USB-C Charging Cable,1,11.95,07/15/19 09:58,"987 Church St, San Francisco, CA 94016" -232398,Lightning Charging Cable,1,14.95,07/05/19 22:09,"578 5th St, San Francisco, CA 94016" -232399,AA Batteries (4-pack),1,3.84,07/10/19 21:56,"722 14th St, San Francisco, CA 94016" -232400,34in Ultrawide Monitor,1,379.99,07/28/19 20:14,"933 4th St, Seattle, WA 98101" -232401,Lightning Charging Cable,1,14.95,07/02/19 16:09,"377 Spruce St, New York City, NY 10001" -232402,AAA Batteries (4-pack),2,2.99,07/31/19 17:04,"636 North St, Portland, OR 97035" -232403,iPhone,1,700,07/08/19 23:10,"340 Willow St, Los Angeles, CA 90001" -232404,Vareebadd Phone,1,400,07/21/19 20:03,"345 13th St, Atlanta, GA 30301" -232405,Wired Headphones,1,11.99,07/09/19 08:24,"716 Maple St, Portland, OR 97035" -232406,USB-C Charging Cable,1,11.95,07/27/19 21:25,"257 14th St, Boston, MA 02215" -232407,Vareebadd Phone,1,400,07/17/19 14:44,"413 Hill St, San Francisco, CA 94016" -232408,Flatscreen TV,1,300,07/22/19 19:15,"7 Hill St, Seattle, WA 98101" -232409,Bose SoundSport Headphones,1,99.99,07/31/19 10:43,"881 Lake St, New York City, NY 10001" -232410,AA Batteries (4-pack),1,3.84,07/04/19 00:58,"667 Jefferson St, San Francisco, CA 94016" -232411,Bose SoundSport Headphones,1,99.99,07/24/19 17:45,"18 13th St, Boston, MA 02215" -232412,34in Ultrawide Monitor,1,379.99,07/21/19 12:59,"785 South St, Seattle, WA 98101" -232413,Lightning Charging Cable,1,14.95,07/07/19 13:38,"307 4th St, New York City, NY 10001" -232414,Apple Airpods Headphones,1,150,07/10/19 13:20,"102 Park St, Austin, TX 73301" -232415,Google Phone,1,600,07/21/19 11:11,"307 Chestnut St, Los Angeles, CA 90001" -232416,Vareebadd Phone,1,400,07/24/19 06:45,"544 1st St, Boston, MA 02215" -232417,AA Batteries (4-pack),2,3.84,07/12/19 16:12,"510 West St, San Francisco, CA 94016" -232418,Wired Headphones,1,11.99,07/31/19 09:01,"938 7th St, New York City, NY 10001" -232419,USB-C Charging Cable,1,11.95,07/17/19 15:03,"11 14th St, New York City, NY 10001" -232420,Wired Headphones,1,11.99,07/04/19 13:43,"500 Lakeview St, San Francisco, CA 94016" -232421,USB-C Charging Cable,1,11.95,07/13/19 03:38,"524 14th St, San Francisco, CA 94016" -232422,USB-C Charging Cable,1,11.95,07/12/19 14:15,"945 Lakeview St, Los Angeles, CA 90001" -232423,iPhone,1,700,07/23/19 11:13,"9 1st St, San Francisco, CA 94016" -232423,Lightning Charging Cable,1,14.95,07/23/19 11:13,"9 1st St, San Francisco, CA 94016" -232424,Macbook Pro Laptop,1,1700,07/10/19 20:18,"607 6th St, San Francisco, CA 94016" -232425,AAA Batteries (4-pack),2,2.99,07/06/19 15:07,"417 14th St, San Francisco, CA 94016" -232426,20in Monitor,1,109.99,07/24/19 16:43,"234 Park St, Atlanta, GA 30301" -232426,Google Phone,1,600,07/24/19 16:43,"234 Park St, Atlanta, GA 30301" -232427,AA Batteries (4-pack),1,3.84,07/30/19 10:46,"996 Jackson St, Seattle, WA 98101" -232428,AA Batteries (4-pack),1,3.84,07/24/19 22:04,"342 Center St, New York City, NY 10001" -232429,iPhone,1,700,07/19/19 10:39,"614 Adams St, San Francisco, CA 94016" -232430,LG Dryer,1,600.0,07/27/19 09:18,"486 Washington St, Los Angeles, CA 90001" -232431,USB-C Charging Cable,1,11.95,07/22/19 21:01,"117 9th St, Seattle, WA 98101" -232432,AAA Batteries (4-pack),4,2.99,07/03/19 09:54,"617 Hickory St, Seattle, WA 98101" -232433,AA Batteries (4-pack),2,3.84,07/15/19 16:44,"75 Meadow St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -232434,AA Batteries (4-pack),1,3.84,07/24/19 19:41,"896 Center St, San Francisco, CA 94016" -232435,USB-C Charging Cable,1,11.95,07/01/19 14:33,"467 Lakeview St, San Francisco, CA 94016" -232436,iPhone,1,700,07/18/19 20:11,"913 Chestnut St, New York City, NY 10001" -232437,AA Batteries (4-pack),1,3.84,07/30/19 13:30,"449 12th St, New York City, NY 10001" -232438,Apple Airpods Headphones,1,150,07/01/19 19:38,"943 Elm St, San Francisco, CA 94016" -232439,AAA Batteries (4-pack),1,2.99,07/13/19 10:57,"731 Madison St, Los Angeles, CA 90001" -232440,Apple Airpods Headphones,1,150,07/18/19 16:06,"919 North St, San Francisco, CA 94016" -232441,Wired Headphones,1,11.99,07/15/19 18:15,"941 Washington St, New York City, NY 10001" -232442,USB-C Charging Cable,1,11.95,07/13/19 20:04,"986 Church St, San Francisco, CA 94016" -232443,AAA Batteries (4-pack),1,2.99,07/16/19 20:13,"889 4th St, San Francisco, CA 94016" -232444,34in Ultrawide Monitor,1,379.99,07/11/19 20:47,"914 Elm St, Dallas, TX 75001" -232445,27in FHD Monitor,1,149.99,07/22/19 21:14,"679 Hill St, Boston, MA 02215" -232446,USB-C Charging Cable,1,11.95,07/25/19 09:56,"42 North St, New York City, NY 10001" -232447,Bose SoundSport Headphones,1,99.99,07/05/19 15:31,"213 12th St, San Francisco, CA 94016" -232448,Macbook Pro Laptop,1,1700,07/10/19 17:28,"431 Chestnut St, San Francisco, CA 94016" -232449,USB-C Charging Cable,1,11.95,07/26/19 13:26,"555 Wilson St, Atlanta, GA 30301" -232450,AAA Batteries (4-pack),3,2.99,07/13/19 21:45,"642 4th St, Atlanta, GA 30301" -232451,27in 4K Gaming Monitor,1,389.99,07/26/19 09:18,"546 10th St, San Francisco, CA 94016" -232452,USB-C Charging Cable,1,11.95,07/23/19 11:23,"673 Chestnut St, San Francisco, CA 94016" -232453,AAA Batteries (4-pack),1,2.99,07/08/19 12:07,"946 2nd St, Los Angeles, CA 90001" -232454,USB-C Charging Cable,1,11.95,07/28/19 19:41,"870 Church St, Atlanta, GA 30301" -232455,AA Batteries (4-pack),1,3.84,07/06/19 09:34,"213 6th St, Boston, MA 02215" -232456,AA Batteries (4-pack),1,3.84,07/05/19 15:32,"40 Center St, New York City, NY 10001" -232457,AAA Batteries (4-pack),1,2.99,07/25/19 06:13,"584 Meadow St, New York City, NY 10001" -232458,Wired Headphones,1,11.99,07/05/19 08:33,"518 Jackson St, Atlanta, GA 30301" -232459,AA Batteries (4-pack),2,3.84,07/13/19 22:39,"778 1st St, Seattle, WA 98101" -232460,Vareebadd Phone,1,400,07/14/19 13:45,"634 14th St, Atlanta, GA 30301" -232461,AA Batteries (4-pack),1,3.84,07/30/19 17:08,"163 13th St, San Francisco, CA 94016" -232462,AA Batteries (4-pack),1,3.84,07/06/19 05:52,"226 2nd St, San Francisco, CA 94016" -232463,Wired Headphones,1,11.99,07/15/19 17:04,"622 Park St, San Francisco, CA 94016" -232464,Apple Airpods Headphones,1,150,07/21/19 18:13,"342 Park St, New York City, NY 10001" -232465,Lightning Charging Cable,1,14.95,07/31/19 17:14,"895 River St, Portland, OR 97035" -232466,ThinkPad Laptop,1,999.99,07/11/19 22:46,"447 Walnut St, New York City, NY 10001" -232467,Wired Headphones,2,11.99,07/19/19 16:38,"750 Jefferson St, San Francisco, CA 94016" -232468,Wired Headphones,1,11.99,07/22/19 12:43,"925 8th St, New York City, NY 10001" -232469,34in Ultrawide Monitor,1,379.99,07/17/19 17:46,"627 11th St, Atlanta, GA 30301" -232470,iPhone,1,700,07/09/19 18:50,"249 Lake St, Portland, OR 97035" -232471,Lightning Charging Cable,1,14.95,07/28/19 17:45,"940 8th St, Los Angeles, CA 90001" -232472,USB-C Charging Cable,1,11.95,07/09/19 11:32,"767 Church St, San Francisco, CA 94016" -232473,AAA Batteries (4-pack),2,2.99,07/15/19 14:31,"120 Cherry St, Atlanta, GA 30301" -232474,AAA Batteries (4-pack),1,2.99,07/31/19 09:56,"415 13th St, Dallas, TX 75001" -232475,Bose SoundSport Headphones,1,99.99,07/06/19 18:04,"179 11th St, Los Angeles, CA 90001" -232476,Apple Airpods Headphones,1,150,07/11/19 16:19,"163 River St, Atlanta, GA 30301" -232477,AAA Batteries (4-pack),2,2.99,07/07/19 22:23,"729 Ridge St, San Francisco, CA 94016" -232478,27in 4K Gaming Monitor,1,389.99,07/16/19 19:57,"682 North St, New York City, NY 10001" -232479,27in FHD Monitor,1,149.99,07/17/19 09:06,"255 Madison St, Dallas, TX 75001" -232480,Bose SoundSport Headphones,1,99.99,07/20/19 20:56,"965 West St, New York City, NY 10001" -232481,USB-C Charging Cable,1,11.95,07/24/19 21:30,"999 Dogwood St, San Francisco, CA 94016" -232482,AAA Batteries (4-pack),1,2.99,07/15/19 18:34,"225 South St, San Francisco, CA 94016" -232483,USB-C Charging Cable,1,11.95,07/29/19 16:55,"541 Dogwood St, Los Angeles, CA 90001" -232484,20in Monitor,1,109.99,07/05/19 09:44,"105 13th St, Austin, TX 73301" -232485,Wired Headphones,1,11.99,07/11/19 18:03,"753 Dogwood St, San Francisco, CA 94016" -232486,AAA Batteries (4-pack),1,2.99,07/26/19 12:04,"429 West St, New York City, NY 10001" -232487,Wired Headphones,1,11.99,07/22/19 15:51,"620 Willow St, San Francisco, CA 94016" -232488,Macbook Pro Laptop,1,1700,07/09/19 00:00,"763 9th St, Los Angeles, CA 90001" -232489,AAA Batteries (4-pack),2,2.99,07/08/19 18:03,"883 Washington St, Boston, MA 02215" -232490,27in FHD Monitor,1,149.99,07/23/19 12:50,"37 11th St, Portland, OR 97035" -232491,Apple Airpods Headphones,1,150,07/05/19 14:48,"754 Forest St, Los Angeles, CA 90001" -232492,Google Phone,1,600,07/12/19 18:48,"961 13th St, San Francisco, CA 94016" -232493,Apple Airpods Headphones,1,150,07/15/19 13:56,"129 Madison St, Boston, MA 02215" -232494,AA Batteries (4-pack),1,3.84,07/29/19 16:43,"37 North St, San Francisco, CA 94016" -232495,20in Monitor,1,109.99,07/03/19 22:52,"169 Spruce St, New York City, NY 10001" -232496,USB-C Charging Cable,1,11.95,07/11/19 19:27,"711 4th St, Atlanta, GA 30301" -232497,Wired Headphones,1,11.99,07/02/19 22:55,"951 Hickory St, Portland, OR 97035" -232498,AA Batteries (4-pack),1,3.84,07/08/19 21:42,"543 1st St, Boston, MA 02215" -232499,USB-C Charging Cable,1,11.95,07/15/19 00:26,"847 Adams St, Portland, OR 97035" -232500,Wired Headphones,1,11.99,07/25/19 22:12,"928 Forest St, Atlanta, GA 30301" -232501,AA Batteries (4-pack),3,3.84,07/20/19 09:29,"485 Hill St, Los Angeles, CA 90001" -232502,AAA Batteries (4-pack),5,2.99,07/31/19 05:47,"608 Ridge St, San Francisco, CA 94016" -232503,Lightning Charging Cable,1,14.95,07/20/19 18:47,"835 Chestnut St, San Francisco, CA 94016" -232504,27in FHD Monitor,1,149.99,07/28/19 08:21,"574 Adams St, Dallas, TX 75001" -232505,27in FHD Monitor,1,149.99,07/22/19 18:20,"986 Wilson St, Atlanta, GA 30301" -232505,Wired Headphones,1,11.99,07/22/19 18:20,"986 Wilson St, Atlanta, GA 30301" -232506,iPhone,1,700,07/10/19 06:01,"832 Hickory St, Boston, MA 02215" -232507,USB-C Charging Cable,1,11.95,07/19/19 08:25,"891 Dogwood St, San Francisco, CA 94016" -232508,AA Batteries (4-pack),2,3.84,07/09/19 19:04,"868 Pine St, New York City, NY 10001" -232509,27in FHD Monitor,1,149.99,07/15/19 13:35,"6 Jefferson St, New York City, NY 10001" -232510,Apple Airpods Headphones,1,150,07/19/19 20:27,"826 Dogwood St, Dallas, TX 75001" -232511,Lightning Charging Cable,1,14.95,07/21/19 12:20,"576 Hickory St, New York City, NY 10001" -232512,Wired Headphones,1,11.99,07/15/19 20:46,"867 10th St, New York City, NY 10001" -232513,27in 4K Gaming Monitor,1,389.99,07/31/19 19:58,"696 Lake St, Atlanta, GA 30301" -232514,AAA Batteries (4-pack),4,2.99,07/08/19 13:06,"379 Chestnut St, New York City, NY 10001" -232515,Bose SoundSport Headphones,1,99.99,07/22/19 12:49,"67 Dogwood St, Dallas, TX 75001" -232516,Wired Headphones,1,11.99,07/24/19 15:29,"191 Cherry St, Dallas, TX 75001" -232517,Bose SoundSport Headphones,1,99.99,07/01/19 21:08,"156 13th St, Atlanta, GA 30301" -232518,Apple Airpods Headphones,1,150,07/15/19 22:05,"979 Center St, San Francisco, CA 94016" -232519,Bose SoundSport Headphones,1,99.99,07/15/19 20:46,"276 12th St, Seattle, WA 98101" -232520,Vareebadd Phone,1,400,07/23/19 19:17,"279 Lincoln St, San Francisco, CA 94016" -232521,USB-C Charging Cable,1,11.95,07/16/19 12:32,"394 Dogwood St, San Francisco, CA 94016" -232522,USB-C Charging Cable,1,11.95,07/03/19 20:14,"231 10th St, Dallas, TX 75001" -232523,Lightning Charging Cable,1,14.95,07/19/19 20:05,"7 River St, San Francisco, CA 94016" -232524,Wired Headphones,1,11.99,07/01/19 09:12,"513 Washington St, Seattle, WA 98101" -232525,USB-C Charging Cable,1,11.95,07/30/19 01:51,"326 Main St, Los Angeles, CA 90001" -232526,AA Batteries (4-pack),1,3.84,07/13/19 19:25,"60 Washington St, New York City, NY 10001" -232527,AA Batteries (4-pack),1,3.84,07/10/19 19:18,"101 Chestnut St, Los Angeles, CA 90001" -232528,USB-C Charging Cable,1,11.95,07/24/19 18:52,"638 12th St, Boston, MA 02215" -232529,34in Ultrawide Monitor,1,379.99,07/04/19 16:10,"536 Walnut St, New York City, NY 10001" -232530,Wired Headphones,1,11.99,07/03/19 21:32,"274 Spruce St, Dallas, TX 75001" -232531,Wired Headphones,1,11.99,07/03/19 15:18,"277 Cherry St, New York City, NY 10001" -232532,Wired Headphones,1,11.99,07/24/19 20:05,"163 Forest St, Portland, OR 97035" -232533,Wired Headphones,1,11.99,07/21/19 17:53,"164 West St, Los Angeles, CA 90001" -232534,Lightning Charging Cable,1,14.95,07/16/19 08:26,"915 14th St, Atlanta, GA 30301" -232535,USB-C Charging Cable,1,11.95,07/14/19 15:50,"242 5th St, Boston, MA 02215" -232536,Bose SoundSport Headphones,1,99.99,07/27/19 07:44,"239 14th St, Los Angeles, CA 90001" -232537,Lightning Charging Cable,1,14.95,07/14/19 22:19,"433 Lake St, Los Angeles, CA 90001" -232538,Vareebadd Phone,1,400,07/09/19 21:12,"420 Hill St, New York City, NY 10001" -232539,Lightning Charging Cable,1,14.95,07/25/19 04:45,"839 10th St, San Francisco, CA 94016" -232540,USB-C Charging Cable,1,11.95,07/08/19 00:11,"880 Hickory St, Los Angeles, CA 90001" -232541,Wired Headphones,1,11.99,07/22/19 11:32,"484 Highland St, Los Angeles, CA 90001" -232542,Apple Airpods Headphones,1,150,07/17/19 14:10,"808 Willow St, Dallas, TX 75001" -232543,AA Batteries (4-pack),1,3.84,07/15/19 14:09,"238 13th St, San Francisco, CA 94016" -232544,27in FHD Monitor,1,149.99,07/21/19 06:31,"272 Willow St, Seattle, WA 98101" -232545,Apple Airpods Headphones,1,150,07/04/19 09:43,"123 14th St, Los Angeles, CA 90001" -232546,Wired Headphones,1,11.99,07/22/19 09:41,"600 Elm St, San Francisco, CA 94016" -232547,USB-C Charging Cable,1,11.95,07/30/19 23:09,"208 Cherry St, Austin, TX 73301" -232548,Flatscreen TV,1,300,07/31/19 21:13,"75 Chestnut St, Seattle, WA 98101" -232549,Wired Headphones,1,11.99,07/25/19 21:19,"196 Walnut St, New York City, NY 10001" -232550,27in FHD Monitor,1,149.99,07/14/19 12:40,"236 Lake St, Portland, OR 97035" -232551,Lightning Charging Cable,1,14.95,07/05/19 21:14,"666 2nd St, Los Angeles, CA 90001" -232552,Flatscreen TV,1,300,07/05/19 10:32,"237 Johnson St, San Francisco, CA 94016" -232553,USB-C Charging Cable,1,11.95,07/03/19 13:10,"11 Spruce St, Boston, MA 02215" -232554,Apple Airpods Headphones,1,150,07/22/19 16:47,"367 Center St, New York City, NY 10001" -232555,AA Batteries (4-pack),2,3.84,07/03/19 20:10,"910 2nd St, San Francisco, CA 94016" -232556,AAA Batteries (4-pack),1,2.99,07/28/19 14:33,"535 11th St, San Francisco, CA 94016" -232557,Apple Airpods Headphones,1,150,07/22/19 22:16,"533 12th St, Seattle, WA 98101" -232558,Apple Airpods Headphones,1,150,07/14/19 11:33,"94 2nd St, San Francisco, CA 94016" -232559,AA Batteries (4-pack),1,3.84,07/02/19 21:41,"583 Hill St, New York City, NY 10001" -232560,ThinkPad Laptop,1,999.99,07/05/19 19:53,"870 Park St, San Francisco, CA 94016" -232561,USB-C Charging Cable,1,11.95,07/24/19 18:05,"304 2nd St, New York City, NY 10001" -232562,ThinkPad Laptop,1,999.99,07/22/19 14:08,"410 Adams St, San Francisco, CA 94016" -232563,Apple Airpods Headphones,1,150,07/20/19 13:30,"936 South St, San Francisco, CA 94016" -232563,AA Batteries (4-pack),1,3.84,07/20/19 13:30,"936 South St, San Francisco, CA 94016" -232564,AA Batteries (4-pack),1,3.84,07/05/19 16:03,"311 2nd St, Boston, MA 02215" -232565,USB-C Charging Cable,1,11.95,07/26/19 23:12,"857 Willow St, San Francisco, CA 94016" -232566,AA Batteries (4-pack),1,3.84,07/30/19 20:23,"56 10th St, New York City, NY 10001" -232567,AAA Batteries (4-pack),3,2.99,07/26/19 12:55,"712 Cedar St, San Francisco, CA 94016" -232568,27in FHD Monitor,1,149.99,07/01/19 18:51,"536 West St, Los Angeles, CA 90001" -232569,USB-C Charging Cable,2,11.95,07/25/19 13:34,"997 Main St, Boston, MA 02215" -232570,USB-C Charging Cable,1,11.95,07/10/19 12:32,"655 Cedar St, Los Angeles, CA 90001" -232571,AA Batteries (4-pack),2,3.84,07/23/19 14:27,"607 Forest St, San Francisco, CA 94016" -232572,27in FHD Monitor,1,149.99,07/19/19 21:53,"976 Hickory St, Atlanta, GA 30301" -232573,ThinkPad Laptop,1,999.99,07/11/19 20:35,"812 Lake St, Los Angeles, CA 90001" -232574,Bose SoundSport Headphones,1,99.99,07/07/19 17:45,"195 Washington St, New York City, NY 10001" -232575,Wired Headphones,1,11.99,07/27/19 20:20,"208 South St, Seattle, WA 98101" -232576,Bose SoundSport Headphones,1,99.99,07/13/19 00:25,"208 10th St, New York City, NY 10001" -232577,AAA Batteries (4-pack),3,2.99,07/23/19 20:17,"786 6th St, New York City, NY 10001" -232578,AA Batteries (4-pack),2,3.84,07/20/19 14:04,"787 Elm St, Austin, TX 73301" -232579,Wired Headphones,1,11.99,07/22/19 19:59,"827 Chestnut St, Austin, TX 73301" -232580,AA Batteries (4-pack),3,3.84,07/12/19 17:15,"853 Washington St, Boston, MA 02215" -232581,ThinkPad Laptop,1,999.99,07/20/19 12:12,"488 Main St, Austin, TX 73301" -232582,Google Phone,1,600,07/18/19 18:39,"181 Wilson St, Dallas, TX 75001" -232583,AAA Batteries (4-pack),4,2.99,07/12/19 23:19,"114 Church St, New York City, NY 10001" -232584,20in Monitor,1,109.99,07/29/19 12:57,"363 Meadow St, Boston, MA 02215" -232585,AAA Batteries (4-pack),1,2.99,07/06/19 13:35,"447 10th St, Portland, ME 04101" -232586,Flatscreen TV,1,300,07/22/19 01:05,"583 9th St, New York City, NY 10001" -232587,AA Batteries (4-pack),1,3.84,07/22/19 15:59,"123 Jackson St, San Francisco, CA 94016" -232588,LG Dryer,1,600.0,07/21/19 19:56,"118 13th St, San Francisco, CA 94016" -232589,Lightning Charging Cable,1,14.95,07/17/19 17:30,"155 Center St, Austin, TX 73301" -232590,ThinkPad Laptop,1,999.99,07/11/19 09:44,"781 13th St, San Francisco, CA 94016" -232591,AAA Batteries (4-pack),3,2.99,07/27/19 20:25,"689 Madison St, New York City, NY 10001" -232592,Google Phone,1,600,07/12/19 08:35,"469 Dogwood St, Los Angeles, CA 90001" -232593,27in FHD Monitor,1,149.99,07/29/19 13:07,"523 10th St, New York City, NY 10001" -232594,Lightning Charging Cable,1,14.95,07/29/19 15:53,"168 Washington St, Portland, ME 04101" -232595,ThinkPad Laptop,1,999.99,07/12/19 09:17,"625 Meadow St, Los Angeles, CA 90001" -232596,AA Batteries (4-pack),1,3.84,07/03/19 08:21,"510 Dogwood St, San Francisco, CA 94016" -232597,27in FHD Monitor,1,149.99,07/18/19 21:40,"956 6th St, Austin, TX 73301" -232598,34in Ultrawide Monitor,1,379.99,07/10/19 08:15,"910 Elm St, Los Angeles, CA 90001" -232599,Wired Headphones,1,11.99,07/09/19 22:15,"507 Adams St, New York City, NY 10001" -232600,AA Batteries (4-pack),1,3.84,07/10/19 11:51,"52 Jefferson St, New York City, NY 10001" -232601,AA Batteries (4-pack),4,3.84,07/16/19 12:58,"303 13th St, Boston, MA 02215" -232602,Apple Airpods Headphones,1,150,07/08/19 14:51,"742 14th St, Atlanta, GA 30301" -232603,Wired Headphones,1,11.99,07/26/19 14:55,"221 Pine St, San Francisco, CA 94016" -232604,USB-C Charging Cable,1,11.95,07/14/19 11:07,"524 5th St, New York City, NY 10001" -232605,20in Monitor,1,109.99,07/12/19 07:58,"593 Jefferson St, New York City, NY 10001" -232606,USB-C Charging Cable,1,11.95,07/10/19 18:26,"496 Wilson St, Atlanta, GA 30301" -232607,Lightning Charging Cable,1,14.95,07/27/19 21:33,"202 Jefferson St, Boston, MA 02215" -232608,27in 4K Gaming Monitor,1,389.99,07/11/19 14:45,"985 Sunset St, Los Angeles, CA 90001" -232609,Bose SoundSport Headphones,1,99.99,07/04/19 17:11,"183 Ridge St, San Francisco, CA 94016" -232610,34in Ultrawide Monitor,1,379.99,07/13/19 12:03,"83 Center St, Portland, OR 97035" -232611,27in FHD Monitor,1,149.99,07/28/19 21:11,"565 2nd St, Atlanta, GA 30301" -232612,Lightning Charging Cable,1,14.95,07/07/19 18:47,"676 Chestnut St, San Francisco, CA 94016" -232613,ThinkPad Laptop,1,999.99,07/25/19 07:45,"766 North St, Los Angeles, CA 90001" -232614,Apple Airpods Headphones,1,150,07/02/19 21:18,"868 West St, Boston, MA 02215" -232615,Macbook Pro Laptop,1,1700,07/04/19 14:27,"641 Maple St, Los Angeles, CA 90001" -232616,AAA Batteries (4-pack),1,2.99,07/30/19 11:33,"309 Johnson St, San Francisco, CA 94016" -232617,Apple Airpods Headphones,1,150,07/12/19 12:51,"850 Madison St, San Francisco, CA 94016" -232618,Bose SoundSport Headphones,1,99.99,07/25/19 23:01,"928 9th St, New York City, NY 10001" -232619,Lightning Charging Cable,1,14.95,07/01/19 08:34,"412 Johnson St, Atlanta, GA 30301" -232620,AAA Batteries (4-pack),1,2.99,07/18/19 16:01,"261 2nd St, San Francisco, CA 94016" -232621,iPhone,1,700,07/30/19 18:27,"159 Walnut St, New York City, NY 10001" -232622,Flatscreen TV,1,300,07/19/19 13:30,"703 Hickory St, Dallas, TX 75001" -232623,27in 4K Gaming Monitor,1,389.99,07/12/19 16:30,"581 Church St, Los Angeles, CA 90001" -232624,USB-C Charging Cable,1,11.95,07/12/19 17:30,"551 Wilson St, San Francisco, CA 94016" -232625,Bose SoundSport Headphones,1,99.99,07/11/19 20:47,"967 6th St, Portland, OR 97035" -232626,Lightning Charging Cable,1,14.95,07/22/19 20:55,"53 9th St, Atlanta, GA 30301" -232627,Wired Headphones,1,11.99,07/06/19 08:39,"545 Adams St, San Francisco, CA 94016" -232628,AAA Batteries (4-pack),1,2.99,07/25/19 07:00,"523 Hill St, New York City, NY 10001" -232629,34in Ultrawide Monitor,1,379.99,07/31/19 12:22,"963 West St, New York City, NY 10001" -232630,ThinkPad Laptop,1,999.99,07/03/19 11:06,"604 13th St, San Francisco, CA 94016" -232631,Wired Headphones,1,11.99,07/21/19 14:54,"548 7th St, Atlanta, GA 30301" -232632,Wired Headphones,1,11.99,07/13/19 17:14,"70 West St, Dallas, TX 75001" -232633,USB-C Charging Cable,1,11.95,07/14/19 10:55,"756 Maple St, Atlanta, GA 30301" -232634,Lightning Charging Cable,1,14.95,07/14/19 08:12,"577 Maple St, Los Angeles, CA 90001" -232635,Lightning Charging Cable,1,14.95,07/08/19 12:37,"837 Adams St, San Francisco, CA 94016" -232636,ThinkPad Laptop,1,999.99,07/05/19 21:42,"78 10th St, Boston, MA 02215" -232637,27in FHD Monitor,1,149.99,07/08/19 17:57,"13 West St, Los Angeles, CA 90001" -232638,Lightning Charging Cable,1,14.95,07/09/19 18:30,"759 5th St, San Francisco, CA 94016" -232639,Apple Airpods Headphones,1,150,07/18/19 16:02,"505 5th St, Seattle, WA 98101" -232640,20in Monitor,1,109.99,07/16/19 14:27,"15 Lincoln St, San Francisco, CA 94016" -232641,34in Ultrawide Monitor,1,379.99,07/17/19 19:54,"981 Highland St, Los Angeles, CA 90001" -232642,27in 4K Gaming Monitor,1,389.99,07/05/19 13:37,"69 Jefferson St, New York City, NY 10001" -232643,AAA Batteries (4-pack),1,2.99,07/24/19 16:19,"297 West St, San Francisco, CA 94016" -232644,Wired Headphones,1,11.99,07/10/19 22:39,"996 Madison St, Seattle, WA 98101" -232645,AAA Batteries (4-pack),2,2.99,07/01/19 19:46,"782 Madison St, New York City, NY 10001" -232646,USB-C Charging Cable,1,11.95,07/01/19 12:13,"532 Highland St, Boston, MA 02215" -232647,Macbook Pro Laptop,1,1700,07/05/19 19:01,"483 Forest St, New York City, NY 10001" -232648,AAA Batteries (4-pack),1,2.99,07/31/19 22:25,"523 Madison St, New York City, NY 10001" -232649,34in Ultrawide Monitor,1,379.99,07/24/19 20:12,"931 River St, Seattle, WA 98101" -232650,AA Batteries (4-pack),1,3.84,07/27/19 02:40,"941 12th St, Atlanta, GA 30301" -232651,Apple Airpods Headphones,1,150,07/12/19 19:03,"557 10th St, Boston, MA 02215" -232652,Apple Airpods Headphones,1,150,07/05/19 16:55,"47 Cherry St, San Francisco, CA 94016" -232653,Wired Headphones,2,11.99,07/31/19 17:07,"291 Chestnut St, San Francisco, CA 94016" -232654,AA Batteries (4-pack),2,3.84,07/23/19 21:41,"233 Johnson St, Boston, MA 02215" -232655,Bose SoundSport Headphones,1,99.99,07/22/19 16:57,"297 Wilson St, New York City, NY 10001" -232656,AAA Batteries (4-pack),1,2.99,07/14/19 18:05,"729 9th St, San Francisco, CA 94016" -232657,Wired Headphones,2,11.99,07/01/19 18:12,"257 9th St, Seattle, WA 98101" -232658,27in 4K Gaming Monitor,1,389.99,07/16/19 13:51,"171 12th St, Dallas, TX 75001" -232659,AA Batteries (4-pack),1,3.84,07/11/19 19:47,"252 14th St, Boston, MA 02215" -232660,AA Batteries (4-pack),1,3.84,07/10/19 21:22,"499 West St, Los Angeles, CA 90001" -232661,Flatscreen TV,1,300,07/02/19 21:08,"261 Madison St, Boston, MA 02215" -232662,27in FHD Monitor,1,149.99,07/30/19 16:23,"527 Walnut St, Portland, ME 04101" -232663,AAA Batteries (4-pack),1,2.99,07/31/19 06:21,"24 Forest St, San Francisco, CA 94016" -232664,27in FHD Monitor,1,149.99,07/04/19 08:45,"576 Spruce St, Seattle, WA 98101" -232665,USB-C Charging Cable,1,11.95,07/09/19 15:49,"464 Maple St, Los Angeles, CA 90001" -232666,27in FHD Monitor,1,149.99,07/01/19 10:20,"345 Willow St, New York City, NY 10001" -232667,AAA Batteries (4-pack),1,2.99,07/16/19 19:16,"49 8th St, Los Angeles, CA 90001" -232668,Lightning Charging Cable,1,14.95,07/30/19 16:38,"574 West St, Los Angeles, CA 90001" -232669,USB-C Charging Cable,2,11.95,07/18/19 19:44,"781 Meadow St, Dallas, TX 75001" -232670,20in Monitor,1,109.99,07/25/19 22:36,"156 Wilson St, Austin, TX 73301" -232671,USB-C Charging Cable,1,11.95,07/23/19 20:53,"748 Forest St, Los Angeles, CA 90001" -232672,Google Phone,1,600,07/23/19 18:53,"930 Johnson St, Boston, MA 02215" -232673,20in Monitor,1,109.99,07/02/19 09:54,"853 Meadow St, Seattle, WA 98101" -232674,Bose SoundSport Headphones,1,99.99,07/04/19 12:14,"173 Elm St, Seattle, WA 98101" -232675,Wired Headphones,1,11.99,07/19/19 12:57,"24 14th St, Dallas, TX 75001" -232676,AA Batteries (4-pack),1,3.84,07/09/19 17:03,"325 13th St, Seattle, WA 98101" -232677,Wired Headphones,1,11.99,07/16/19 11:32,"837 10th St, Los Angeles, CA 90001" -232678,AA Batteries (4-pack),1,3.84,07/01/19 15:39,"766 Jackson St, Seattle, WA 98101" -232679,Flatscreen TV,1,300,07/05/19 18:34,"371 9th St, Los Angeles, CA 90001" -232680,Wired Headphones,1,11.99,07/04/19 19:19,"106 Dogwood St, New York City, NY 10001" -232681,AAA Batteries (4-pack),1,2.99,07/13/19 04:10,"847 5th St, Seattle, WA 98101" -232682,AAA Batteries (4-pack),2,2.99,07/04/19 16:12,"965 Lincoln St, San Francisco, CA 94016" -232683,AA Batteries (4-pack),1,3.84,07/10/19 00:30,"665 River St, San Francisco, CA 94016" -232684,27in 4K Gaming Monitor,1,389.99,07/15/19 15:34,"716 Lakeview St, New York City, NY 10001" -232685,AA Batteries (4-pack),2,3.84,07/10/19 12:54,"577 7th St, Atlanta, GA 30301" -232686,Google Phone,1,600,07/31/19 17:35,"990 Ridge St, Los Angeles, CA 90001" -232687,iPhone,1,700,07/12/19 12:36,"522 Willow St, New York City, NY 10001" -232687,Lightning Charging Cable,1,14.95,07/12/19 12:36,"522 Willow St, New York City, NY 10001" -232688,Google Phone,1,600,07/15/19 09:08,"761 Dogwood St, Dallas, TX 75001" -232689,27in FHD Monitor,1,149.99,07/13/19 07:10,"699 South St, Los Angeles, CA 90001" -232690,27in 4K Gaming Monitor,1,389.99,07/03/19 18:32,"85 Johnson St, New York City, NY 10001" -232691,AA Batteries (4-pack),1,3.84,07/16/19 14:12,"690 Walnut St, New York City, NY 10001" -232692,USB-C Charging Cable,1,11.95,07/18/19 09:02,"769 Jefferson St, Los Angeles, CA 90001" -232693,AA Batteries (4-pack),1,3.84,07/26/19 21:45,"352 6th St, Los Angeles, CA 90001" -232694,AA Batteries (4-pack),1,3.84,07/12/19 11:46,"70 Lincoln St, San Francisco, CA 94016" -232695,AA Batteries (4-pack),1,3.84,07/16/19 18:06,"749 Jackson St, Seattle, WA 98101" -232696,Wired Headphones,1,11.99,07/23/19 17:32,"642 12th St, Boston, MA 02215" -232697,AAA Batteries (4-pack),1,2.99,07/25/19 20:09,"648 Lincoln St, Boston, MA 02215" -232698,Lightning Charging Cable,2,14.95,07/21/19 12:42,"348 River St, New York City, NY 10001" -232699,USB-C Charging Cable,1,11.95,07/07/19 13:39,"925 12th St, New York City, NY 10001" -232700,Apple Airpods Headphones,1,150,07/25/19 11:02,"553 Highland St, Portland, OR 97035" -232701,27in FHD Monitor,1,149.99,07/23/19 08:32,"694 Jefferson St, San Francisco, CA 94016" -232702,Wired Headphones,2,11.99,07/23/19 13:33,"39 1st St, Los Angeles, CA 90001" -232703,AA Batteries (4-pack),1,3.84,07/09/19 09:41,"322 Meadow St, Boston, MA 02215" -232704,34in Ultrawide Monitor,1,379.99,07/25/19 13:57,"80 6th St, San Francisco, CA 94016" -232705,USB-C Charging Cable,1,11.95,07/13/19 13:36,"925 Lakeview St, Seattle, WA 98101" -232706,iPhone,1,700,07/19/19 17:56,"477 Elm St, Atlanta, GA 30301" -232707,34in Ultrawide Monitor,1,379.99,07/27/19 13:38,"724 Hill St, New York City, NY 10001" -232708,Lightning Charging Cable,1,14.95,07/25/19 11:09,"907 Highland St, San Francisco, CA 94016" -232709,Wired Headphones,1,11.99,07/19/19 13:16,"440 Walnut St, Dallas, TX 75001" -232710,20in Monitor,1,109.99,07/06/19 18:29,"64 Adams St, San Francisco, CA 94016" -232711,USB-C Charging Cable,1,11.95,07/14/19 18:09,"703 Hill St, Seattle, WA 98101" -232712,34in Ultrawide Monitor,1,379.99,07/28/19 14:16,"112 14th St, New York City, NY 10001" -232712,AAA Batteries (4-pack),3,2.99,07/28/19 14:16,"112 14th St, New York City, NY 10001" -232713,27in 4K Gaming Monitor,1,389.99,07/06/19 12:45,"694 14th St, Boston, MA 02215" -232714,27in FHD Monitor,1,149.99,07/10/19 06:27,"826 13th St, Portland, OR 97035" -232715,AA Batteries (4-pack),1,3.84,07/24/19 15:06,"115 6th St, Boston, MA 02215" -232716,Wired Headphones,2,11.99,07/30/19 23:27,"195 4th St, Los Angeles, CA 90001" -232717,27in 4K Gaming Monitor,1,389.99,07/04/19 16:35,"246 Main St, New York City, NY 10001" -232718,USB-C Charging Cable,1,11.95,07/02/19 22:07,"353 Main St, Austin, TX 73301" -232719,USB-C Charging Cable,1,11.95,07/15/19 05:54,"622 Lincoln St, San Francisco, CA 94016" -232720,AAA Batteries (4-pack),1,2.99,07/06/19 17:34,"47 Washington St, San Francisco, CA 94016" -232721,Flatscreen TV,1,300,07/24/19 16:52,"12 Park St, Portland, OR 97035" -232722,Lightning Charging Cable,1,14.95,07/16/19 13:00,"296 Wilson St, Los Angeles, CA 90001" -232723,AAA Batteries (4-pack),1,2.99,07/11/19 22:33,"417 South St, Atlanta, GA 30301" -232724,Google Phone,1,600,07/03/19 14:35,"38 11th St, San Francisco, CA 94016" -232725,AA Batteries (4-pack),1,3.84,07/02/19 10:25,"171 Main St, New York City, NY 10001" -232726,Apple Airpods Headphones,1,150,07/10/19 23:29,"662 6th St, Atlanta, GA 30301" -232727,Bose SoundSport Headphones,1,99.99,07/03/19 14:34,"605 Madison St, Austin, TX 73301" -232728,AA Batteries (4-pack),1,3.84,07/03/19 02:25,"260 Johnson St, Los Angeles, CA 90001" -232729,Wired Headphones,1,11.99,07/24/19 13:49,"503 Lakeview St, Boston, MA 02215" -232730,Bose SoundSport Headphones,1,99.99,07/06/19 10:26,"856 Jefferson St, Portland, OR 97035" -232731,AA Batteries (4-pack),1,3.84,07/25/19 08:58,"562 9th St, Boston, MA 02215" -232732,AA Batteries (4-pack),1,3.84,07/15/19 11:21,"866 Center St, Boston, MA 02215" -232733,USB-C Charging Cable,1,11.95,07/22/19 23:05,"741 Meadow St, Boston, MA 02215" -232734,AA Batteries (4-pack),1,3.84,07/03/19 20:10,"833 Center St, New York City, NY 10001" -232734,AAA Batteries (4-pack),1,2.99,07/03/19 20:10,"833 Center St, New York City, NY 10001" -232735,Flatscreen TV,1,300,07/22/19 16:28,"891 Lincoln St, San Francisco, CA 94016" -232736,USB-C Charging Cable,1,11.95,07/07/19 20:26,"224 8th St, San Francisco, CA 94016" -232737,USB-C Charging Cable,1,11.95,07/24/19 03:07,"403 Wilson St, Atlanta, GA 30301" -232738,Wired Headphones,1,11.99,07/25/19 18:36,"578 Cedar St, Los Angeles, CA 90001" -232739,AA Batteries (4-pack),2,3.84,07/02/19 12:05,"89 Park St, San Francisco, CA 94016" -232740,USB-C Charging Cable,1,11.95,07/28/19 00:14,"668 Ridge St, Dallas, TX 75001" -232741,Lightning Charging Cable,1,14.95,07/14/19 00:08,"913 Forest St, Los Angeles, CA 90001" -232742,Wired Headphones,1,11.99,07/16/19 12:17,"610 14th St, San Francisco, CA 94016" -232743,Wired Headphones,2,11.99,07/11/19 12:26,"113 8th St, Austin, TX 73301" -232744,Wired Headphones,1,11.99,07/09/19 11:26,"918 Jackson St, Portland, OR 97035" -232745,USB-C Charging Cable,1,11.95,07/02/19 22:10,"880 Cherry St, San Francisco, CA 94016" -232746,USB-C Charging Cable,1,11.95,07/28/19 13:06,"610 Meadow St, Los Angeles, CA 90001" -232747,AAA Batteries (4-pack),1,2.99,07/05/19 17:40,"116 10th St, Boston, MA 02215" -232748,AA Batteries (4-pack),1,3.84,07/20/19 07:16,"247 Madison St, Dallas, TX 75001" -232749,USB-C Charging Cable,1,11.95,07/07/19 21:56,"67 8th St, San Francisco, CA 94016" -232750,Wired Headphones,1,11.99,07/22/19 13:53,"979 Dogwood St, San Francisco, CA 94016" -232751,AA Batteries (4-pack),1,3.84,07/31/19 18:13,"646 Adams St, New York City, NY 10001" -232752,iPhone,1,700,07/01/19 19:28,"810 Highland St, Portland, ME 04101" -232752,Lightning Charging Cable,1,14.95,07/01/19 19:28,"810 Highland St, Portland, ME 04101" -232753,Lightning Charging Cable,1,14.95,07/03/19 12:20,"248 Church St, San Francisco, CA 94016" -232754,34in Ultrawide Monitor,1,379.99,07/13/19 20:39,"448 Jefferson St, San Francisco, CA 94016" -232755,Google Phone,1,600,07/29/19 20:21,"458 Dogwood St, New York City, NY 10001" -232755,USB-C Charging Cable,2,11.95,07/29/19 20:21,"458 Dogwood St, New York City, NY 10001" -232755,Bose SoundSport Headphones,1,99.99,07/29/19 20:21,"458 Dogwood St, New York City, NY 10001" -232756,AAA Batteries (4-pack),1,2.99,07/13/19 18:50,"797 Wilson St, New York City, NY 10001" -232757,Lightning Charging Cable,1,14.95,07/22/19 17:04,"693 Park St, Boston, MA 02215" -232758,Lightning Charging Cable,1,14.95,07/14/19 01:57,"939 7th St, Dallas, TX 75001" -232759,AA Batteries (4-pack),1,3.84,07/25/19 23:41,"955 10th St, Los Angeles, CA 90001" -232760,Wired Headphones,2,11.99,07/27/19 17:44,"927 14th St, Boston, MA 02215" -232760,iPhone,1,700,07/27/19 17:44,"927 14th St, Boston, MA 02215" -232761,Flatscreen TV,1,300,07/22/19 07:13,"403 Elm St, Los Angeles, CA 90001" -232762,Macbook Pro Laptop,1,1700,07/09/19 12:46,"669 Ridge St, New York City, NY 10001" -232763,USB-C Charging Cable,1,11.95,07/22/19 21:09,"532 Elm St, San Francisco, CA 94016" -232764,20in Monitor,1,109.99,07/10/19 12:59,"762 5th St, New York City, NY 10001" -232765,AA Batteries (4-pack),1,3.84,07/16/19 10:04,"977 Hill St, Atlanta, GA 30301" -232766,AAA Batteries (4-pack),1,2.99,07/14/19 12:20,"911 Elm St, Los Angeles, CA 90001" -232767,Bose SoundSport Headphones,1,99.99,07/08/19 23:24,"732 Cherry St, Los Angeles, CA 90001" -232768,Lightning Charging Cable,1,14.95,07/28/19 18:22,"150 River St, San Francisco, CA 94016" -232769,Wired Headphones,1,11.99,07/08/19 19:34,"986 Willow St, San Francisco, CA 94016" -232770,Wired Headphones,1,11.99,07/16/19 01:55,"799 Hickory St, San Francisco, CA 94016" -232771,Apple Airpods Headphones,1,150,07/20/19 18:07,"596 Lincoln St, New York City, NY 10001" -232772,Wired Headphones,1,11.99,07/03/19 15:54,"438 North St, Los Angeles, CA 90001" -232773,Flatscreen TV,1,300,07/13/19 13:51,"606 12th St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -232774,USB-C Charging Cable,1,11.95,07/24/19 12:09,"646 Lakeview St, Los Angeles, CA 90001" -232775,USB-C Charging Cable,1,11.95,07/12/19 07:25,"359 Willow St, Los Angeles, CA 90001" -232776,34in Ultrawide Monitor,1,379.99,07/08/19 13:10,"12 1st St, San Francisco, CA 94016" -232777,USB-C Charging Cable,1,11.95,07/11/19 19:55,"930 North St, New York City, NY 10001" -232778,Google Phone,1,600,07/05/19 01:42,"208 Church St, San Francisco, CA 94016" -232779,iPhone,1,700,07/04/19 19:32,"789 Lake St, Los Angeles, CA 90001" -232779,Lightning Charging Cable,1,14.95,07/04/19 19:32,"789 Lake St, Los Angeles, CA 90001" -232780,AAA Batteries (4-pack),1,2.99,07/14/19 17:10,"804 13th St, Los Angeles, CA 90001" -232781,Apple Airpods Headphones,1,150,07/06/19 20:06,"174 Cedar St, Los Angeles, CA 90001" -232782,USB-C Charging Cable,1,11.95,07/12/19 19:57,"716 5th St, San Francisco, CA 94016" -232783,USB-C Charging Cable,1,11.95,07/28/19 19:54,"637 14th St, San Francisco, CA 94016" -232784,Macbook Pro Laptop,1,1700,07/21/19 22:10,"987 Highland St, Portland, ME 04101" -232785,USB-C Charging Cable,1,11.95,07/03/19 21:36,"995 Washington St, Boston, MA 02215" -232786,USB-C Charging Cable,1,11.95,07/02/19 01:29,"923 Meadow St, Dallas, TX 75001" -232786,Lightning Charging Cable,1,14.95,07/02/19 01:29,"923 Meadow St, Dallas, TX 75001" -232787,AAA Batteries (4-pack),2,2.99,07/17/19 11:04,"535 Walnut St, Boston, MA 02215" -232788,Wired Headphones,1,11.99,07/10/19 14:09,"359 Cherry St, Atlanta, GA 30301" -232789,iPhone,1,700,07/27/19 04:08,"402 North St, Portland, OR 97035" -232789,Lightning Charging Cable,1,14.95,07/27/19 04:08,"402 North St, Portland, OR 97035" -232790,Apple Airpods Headphones,1,150,07/09/19 18:05,"813 Walnut St, San Francisco, CA 94016" -232791,AAA Batteries (4-pack),1,2.99,07/26/19 11:40,"597 2nd St, San Francisco, CA 94016" -232792,34in Ultrawide Monitor,1,379.99,07/07/19 10:26,"359 Center St, Los Angeles, CA 90001" -232793,Lightning Charging Cable,1,14.95,07/10/19 17:29,"569 Elm St, Atlanta, GA 30301" -232794,Flatscreen TV,1,300,07/12/19 07:57,"826 Chestnut St, San Francisco, CA 94016" -232795,iPhone,1,700,08/01/19 00:16,"424 Washington St, San Francisco, CA 94016" -232796,iPhone,1,700,07/05/19 15:19,"629 Lincoln St, Portland, ME 04101" -232797,Macbook Pro Laptop,1,1700,07/01/19 15:11,"951 Johnson St, Boston, MA 02215" -232798,Apple Airpods Headphones,1,150,07/06/19 01:28,"370 West St, San Francisco, CA 94016" -232799,Flatscreen TV,1,300,07/11/19 19:48,"365 Wilson St, Seattle, WA 98101" -232799,27in FHD Monitor,1,149.99,07/11/19 19:48,"365 Wilson St, Seattle, WA 98101" -232800,USB-C Charging Cable,1,11.95,07/21/19 09:06,"835 Lincoln St, San Francisco, CA 94016" -232801,AA Batteries (4-pack),1,3.84,07/17/19 16:19,"274 Church St, Boston, MA 02215" -232802,USB-C Charging Cable,1,11.95,07/03/19 08:09,"537 4th St, San Francisco, CA 94016" -232803,Lightning Charging Cable,1,14.95,07/14/19 18:52,"443 12th St, Atlanta, GA 30301" -232804,27in FHD Monitor,1,149.99,07/05/19 15:55,"172 9th St, Los Angeles, CA 90001" -232805,Apple Airpods Headphones,1,150,07/15/19 19:13,"903 Wilson St, Atlanta, GA 30301" -232806,Google Phone,1,600,07/15/19 15:44,"21 River St, New York City, NY 10001" -232807,USB-C Charging Cable,1,11.95,07/01/19 06:22,"866 6th St, San Francisco, CA 94016" -232808,AAA Batteries (4-pack),1,2.99,07/17/19 09:37,"478 Madison St, Austin, TX 73301" -232809,Apple Airpods Headphones,1,150,07/10/19 15:13,"373 Willow St, New York City, NY 10001" -232810,AA Batteries (4-pack),1,3.84,07/15/19 19:00,"211 Wilson St, Dallas, TX 75001" -232811,AA Batteries (4-pack),2,3.84,07/26/19 22:32,"4 Madison St, Los Angeles, CA 90001" -232812,Bose SoundSport Headphones,1,99.99,07/23/19 11:38,"173 Hill St, Atlanta, GA 30301" -232813,iPhone,1,700,07/03/19 16:32,"898 Park St, Atlanta, GA 30301" -232814,Apple Airpods Headphones,1,150,07/10/19 17:05,"436 11th St, Seattle, WA 98101" -232815,AAA Batteries (4-pack),2,2.99,07/29/19 18:09,"705 Lake St, New York City, NY 10001" -232816,27in FHD Monitor,1,149.99,07/14/19 13:36,"177 Sunset St, San Francisco, CA 94016" -232817,Apple Airpods Headphones,1,150,07/08/19 19:34,"162 Sunset St, San Francisco, CA 94016" -232818,Lightning Charging Cable,1,14.95,07/13/19 07:12,"698 13th St, Boston, MA 02215" -232819,Lightning Charging Cable,1,14.95,07/18/19 00:50,"304 5th St, New York City, NY 10001" -232820,27in FHD Monitor,1,149.99,07/01/19 12:15,"588 Sunset St, Los Angeles, CA 90001" -232821,20in Monitor,1,109.99,07/31/19 02:23,"55 14th St, Boston, MA 02215" -232822,Bose SoundSport Headphones,1,99.99,07/27/19 15:29,"240 Walnut St, Dallas, TX 75001" -232823,20in Monitor,1,109.99,07/28/19 18:59,"477 Sunset St, Seattle, WA 98101" -232824,Apple Airpods Headphones,1,150,07/02/19 20:49,"556 10th St, New York City, NY 10001" -232825,Apple Airpods Headphones,1,150,07/28/19 00:23,"689 Elm St, Portland, OR 97035" -232826,AAA Batteries (4-pack),2,2.99,07/13/19 21:03,"599 Ridge St, Boston, MA 02215" -232827,Lightning Charging Cable,1,14.95,07/20/19 10:13,"148 2nd St, New York City, NY 10001" -232828,AA Batteries (4-pack),1,3.84,07/13/19 08:58,"157 Willow St, New York City, NY 10001" -232829,AA Batteries (4-pack),2,3.84,07/30/19 11:59,"621 11th St, Dallas, TX 75001" -232830,Wired Headphones,1,11.99,07/06/19 07:33,"804 Pine St, Los Angeles, CA 90001" -232831,Wired Headphones,1,11.99,07/26/19 21:15,"711 Center St, Boston, MA 02215" -232832,USB-C Charging Cable,1,11.95,07/08/19 21:31,"511 Jackson St, Atlanta, GA 30301" -232833,Wired Headphones,1,11.99,07/25/19 22:16,"867 5th St, Austin, TX 73301" -232834,Apple Airpods Headphones,1,150,07/04/19 20:08,"822 Adams St, Boston, MA 02215" -232835,Apple Airpods Headphones,1,150,07/25/19 01:54,"873 1st St, San Francisco, CA 94016" -232836,Lightning Charging Cable,1,14.95,07/25/19 09:08,"556 Main St, Los Angeles, CA 90001" -232837,34in Ultrawide Monitor,1,379.99,07/23/19 14:56,"77 River St, San Francisco, CA 94016" -232838,27in FHD Monitor,1,149.99,07/22/19 14:53,"487 6th St, San Francisco, CA 94016" -232839,USB-C Charging Cable,1,11.95,07/19/19 20:00,"117 Spruce St, Atlanta, GA 30301" -232840,Wired Headphones,1,11.99,07/08/19 18:45,"27 Highland St, New York City, NY 10001" -232841,34in Ultrawide Monitor,1,379.99,07/27/19 16:41,"180 Jackson St, New York City, NY 10001" -232842,USB-C Charging Cable,1,11.95,07/18/19 10:27,"950 Wilson St, Dallas, TX 75001" -232843,USB-C Charging Cable,1,11.95,07/17/19 14:07,"779 Lakeview St, San Francisco, CA 94016" -232844,AAA Batteries (4-pack),2,2.99,07/21/19 22:20,"915 13th St, San Francisco, CA 94016" -232845,Bose SoundSport Headphones,1,99.99,07/05/19 17:00,"906 Willow St, Los Angeles, CA 90001" -232846,Apple Airpods Headphones,1,150,07/01/19 22:57,"248 5th St, Portland, OR 97035" -232847,34in Ultrawide Monitor,1,379.99,07/16/19 18:10,"515 North St, San Francisco, CA 94016" -232848,USB-C Charging Cable,1,11.95,07/10/19 17:41,"626 Dogwood St, Atlanta, GA 30301" -232849,Bose SoundSport Headphones,1,99.99,07/12/19 11:28,"525 11th St, Atlanta, GA 30301" -232850,Apple Airpods Headphones,1,150,07/12/19 18:20,"395 Spruce St, Atlanta, GA 30301" -232851,Lightning Charging Cable,1,14.95,07/17/19 11:13,"532 Pine St, San Francisco, CA 94016" -232852,27in FHD Monitor,1,149.99,07/29/19 22:47,"389 Lake St, New York City, NY 10001" -232853,Flatscreen TV,1,300,07/01/19 22:42,"933 1st St, Seattle, WA 98101" -232854,Lightning Charging Cable,1,14.95,07/20/19 19:54,"774 South St, Dallas, TX 75001" -232855,Google Phone,1,600,07/29/19 22:07,"644 12th St, Los Angeles, CA 90001" -232855,USB-C Charging Cable,1,11.95,07/29/19 22:07,"644 12th St, Los Angeles, CA 90001" -232856,AAA Batteries (4-pack),1,2.99,07/27/19 10:49,"439 Willow St, New York City, NY 10001" -232857,ThinkPad Laptop,1,999.99,07/04/19 13:14,"476 Ridge St, Seattle, WA 98101" -232858,AA Batteries (4-pack),2,3.84,07/04/19 00:12,"538 West St, San Francisco, CA 94016" -232859,AA Batteries (4-pack),1,3.84,07/10/19 10:32,"971 Maple St, Boston, MA 02215" -232860,Apple Airpods Headphones,1,150,07/08/19 18:55,"671 Maple St, Austin, TX 73301" -232861,AAA Batteries (4-pack),2,2.99,07/23/19 19:54,"850 Willow St, Austin, TX 73301" -232862,20in Monitor,1,109.99,07/01/19 18:51,"80 Wilson St, Atlanta, GA 30301" -232863,Lightning Charging Cable,1,14.95,07/02/19 12:12,"501 Church St, Seattle, WA 98101" -232864,Apple Airpods Headphones,1,150,07/10/19 03:08,"662 South St, Los Angeles, CA 90001" -232865,27in 4K Gaming Monitor,1,389.99,07/18/19 08:58,"540 Willow St, San Francisco, CA 94016" -232866,27in FHD Monitor,1,149.99,07/30/19 19:40,"369 1st St, San Francisco, CA 94016" -232867,Lightning Charging Cable,1,14.95,07/17/19 20:36,"649 Chestnut St, Atlanta, GA 30301" -232868,iPhone,1,700,07/16/19 19:12,"263 Cherry St, Atlanta, GA 30301" -232869,Flatscreen TV,1,300,07/01/19 16:20,"368 8th St, Dallas, TX 75001" -232870,Bose SoundSport Headphones,1,99.99,07/20/19 13:12,"844 Highland St, San Francisco, CA 94016" -232871,AA Batteries (4-pack),1,3.84,07/24/19 04:59,"597 14th St, San Francisco, CA 94016" -232872,Lightning Charging Cable,1,14.95,07/30/19 06:26,"317 8th St, Austin, TX 73301" -232873,Apple Airpods Headphones,1,150,07/23/19 15:57,"101 Hickory St, Los Angeles, CA 90001" -232873,AAA Batteries (4-pack),1,2.99,07/23/19 15:57,"101 Hickory St, Los Angeles, CA 90001" -232874,Lightning Charging Cable,1,14.95,07/15/19 15:04,"915 Walnut St, Los Angeles, CA 90001" -232875,Flatscreen TV,1,300,07/25/19 00:44,"164 Jefferson St, San Francisco, CA 94016" -232876,USB-C Charging Cable,1,11.95,07/12/19 13:55,"391 1st St, New York City, NY 10001" -232877,27in FHD Monitor,1,149.99,07/02/19 16:31,"734 Center St, Portland, ME 04101" -232878,Lightning Charging Cable,1,14.95,07/10/19 11:22,"253 Park St, San Francisco, CA 94016" -232879,iPhone,1,700,07/07/19 21:58,"139 Elm St, Boston, MA 02215" -232880,Apple Airpods Headphones,1,150,07/16/19 11:12,"956 Sunset St, Portland, OR 97035" -232881,Google Phone,1,600,07/15/19 18:40,"370 7th St, Austin, TX 73301" -232882,Vareebadd Phone,1,400,07/23/19 09:49,"87 Dogwood St, San Francisco, CA 94016" -232883,Bose SoundSport Headphones,1,99.99,07/02/19 18:23,"115 Pine St, Atlanta, GA 30301" -232884,AA Batteries (4-pack),1,3.84,07/04/19 20:10,"941 5th St, Portland, OR 97035" -232885,Lightning Charging Cable,1,14.95,07/28/19 12:09,"92 Jefferson St, Seattle, WA 98101" -232886,AAA Batteries (4-pack),1,2.99,07/07/19 11:03,"670 Jackson St, Los Angeles, CA 90001" -232887,Wired Headphones,1,11.99,07/31/19 14:06,"334 Highland St, Atlanta, GA 30301" -232888,Macbook Pro Laptop,1,1700,07/09/19 19:33,"434 West St, Atlanta, GA 30301" -232889,Wired Headphones,1,11.99,07/08/19 11:08,"948 10th St, Los Angeles, CA 90001" -232890,AAA Batteries (4-pack),3,2.99,07/28/19 08:05,"432 2nd St, New York City, NY 10001" -232891,Lightning Charging Cable,1,14.95,07/15/19 22:18,"522 1st St, Portland, OR 97035" -232892,Lightning Charging Cable,1,14.95,07/12/19 08:31,"954 6th St, Dallas, TX 75001" -232893,AAA Batteries (4-pack),1,2.99,07/11/19 10:27,"351 Washington St, Los Angeles, CA 90001" -232894,Bose SoundSport Headphones,1,99.99,07/21/19 15:54,"243 Maple St, Los Angeles, CA 90001" -232895,AA Batteries (4-pack),1,3.84,07/03/19 20:40,"101 Meadow St, Austin, TX 73301" -232896,AAA Batteries (4-pack),1,2.99,07/09/19 12:01,"538 Maple St, Boston, MA 02215" -232897,Vareebadd Phone,1,400,07/21/19 14:25,"874 Dogwood St, Atlanta, GA 30301" -232898,AA Batteries (4-pack),1,3.84,07/04/19 14:13,"607 Jackson St, Seattle, WA 98101" -232899,AAA Batteries (4-pack),2,2.99,07/06/19 20:07,"260 12th St, San Francisco, CA 94016" -232900,27in 4K Gaming Monitor,1,389.99,07/21/19 19:58,"687 Meadow St, Boston, MA 02215" -232901,iPhone,1,700,07/28/19 06:14,"470 Willow St, San Francisco, CA 94016" -232902,27in 4K Gaming Monitor,1,389.99,07/07/19 09:01,"731 Lake St, San Francisco, CA 94016" -232903,27in FHD Monitor,1,149.99,07/28/19 12:18,"655 Pine St, San Francisco, CA 94016" -232904,AA Batteries (4-pack),3,3.84,07/22/19 14:55,"739 Ridge St, New York City, NY 10001" -232905,AAA Batteries (4-pack),1,2.99,07/26/19 14:48,"225 Pine St, Dallas, TX 75001" -232906,USB-C Charging Cable,1,11.95,07/27/19 22:14,"75 Washington St, San Francisco, CA 94016" -232907,Lightning Charging Cable,1,14.95,07/07/19 20:59,"673 Church St, New York City, NY 10001" -232908,ThinkPad Laptop,1,999.99,07/08/19 13:39,"565 Center St, San Francisco, CA 94016" -232909,AA Batteries (4-pack),1,3.84,07/03/19 15:36,"409 Sunset St, San Francisco, CA 94016" -232910,27in 4K Gaming Monitor,1,389.99,07/29/19 06:05,"63 West St, Portland, OR 97035" -232911,Wired Headphones,1,11.99,07/25/19 20:51,"603 Hickory St, Atlanta, GA 30301" -232912,Flatscreen TV,1,300,07/02/19 18:13,"990 7th St, San Francisco, CA 94016" -232913,Lightning Charging Cable,1,14.95,07/12/19 11:27,"769 Park St, Los Angeles, CA 90001" -232914,Apple Airpods Headphones,2,150,07/04/19 08:21,"636 Highland St, San Francisco, CA 94016" -232915,USB-C Charging Cable,1,11.95,07/24/19 16:04,"507 Forest St, Boston, MA 02215" -232916,Lightning Charging Cable,1,14.95,07/04/19 18:29,"483 Dogwood St, New York City, NY 10001" -232917,Flatscreen TV,1,300,07/19/19 12:12,"79 Forest St, Los Angeles, CA 90001" -232918,Apple Airpods Headphones,1,150,07/05/19 13:02,"461 Forest St, San Francisco, CA 94016" -232919,AAA Batteries (4-pack),2,2.99,07/08/19 22:42,"33 6th St, Dallas, TX 75001" -232920,Apple Airpods Headphones,1,150,07/03/19 18:36,"650 Washington St, San Francisco, CA 94016" -232920,AAA Batteries (4-pack),1,2.99,07/03/19 18:36,"650 Washington St, San Francisco, CA 94016" -232921,AAA Batteries (4-pack),1,2.99,07/31/19 19:41,"300 Washington St, Los Angeles, CA 90001" -232922,Bose SoundSport Headphones,1,99.99,07/24/19 09:45,"782 Main St, New York City, NY 10001" -232923,Wired Headphones,1,11.99,07/02/19 09:22,"821 4th St, Los Angeles, CA 90001" -232924,Bose SoundSport Headphones,1,99.99,07/31/19 01:35,"646 Highland St, San Francisco, CA 94016" -232925,AA Batteries (4-pack),1,3.84,07/24/19 11:56,"14 Dogwood St, Seattle, WA 98101" -232926,AA Batteries (4-pack),1,3.84,07/12/19 08:30,"76 5th St, Seattle, WA 98101" -232927,34in Ultrawide Monitor,1,379.99,07/31/19 19:37,"931 9th St, Los Angeles, CA 90001" -232928,USB-C Charging Cable,1,11.95,07/09/19 13:49,"947 Hill St, Los Angeles, CA 90001" -232929,Apple Airpods Headphones,1,150,07/18/19 14:25,"806 11th St, Boston, MA 02215" -232930,Wired Headphones,1,11.99,07/03/19 11:30,"288 Cherry St, Boston, MA 02215" -232931,Bose SoundSport Headphones,1,99.99,07/09/19 21:23,"559 Main St, New York City, NY 10001" -232932,AA Batteries (4-pack),1,3.84,07/10/19 21:48,"164 Highland St, Atlanta, GA 30301" -232933,Lightning Charging Cable,1,14.95,07/01/19 17:41,"15 Pine St, New York City, NY 10001" -232934,Wired Headphones,1,11.99,07/28/19 09:33,"296 Johnson St, Atlanta, GA 30301" -232935,iPhone,1,700,07/25/19 23:11,"522 1st St, San Francisco, CA 94016" -232935,Lightning Charging Cable,2,14.95,07/25/19 23:11,"522 1st St, San Francisco, CA 94016" -232936,27in FHD Monitor,1,149.99,07/31/19 20:22,"190 Hill St, Atlanta, GA 30301" -232937,Wired Headphones,1,11.99,07/12/19 22:06,"429 Sunset St, Los Angeles, CA 90001" -232938,Bose SoundSport Headphones,1,99.99,07/28/19 15:58,"384 Washington St, Austin, TX 73301" -232939,AAA Batteries (4-pack),4,2.99,07/27/19 11:11,"682 13th St, Los Angeles, CA 90001" -232940,AAA Batteries (4-pack),2,2.99,07/04/19 10:44,"498 Lake St, Boston, MA 02215" -232941,AAA Batteries (4-pack),3,2.99,07/28/19 22:11,"675 Center St, Boston, MA 02215" -232942,iPhone,1,700,07/30/19 16:46,"745 Washington St, Portland, OR 97035" -232943,Macbook Pro Laptop,1,1700,07/09/19 09:18,"969 River St, San Francisco, CA 94016" -232944,Wired Headphones,1,11.99,07/23/19 08:30,"95 Cedar St, Seattle, WA 98101" -232945,AAA Batteries (4-pack),1,2.99,07/11/19 20:21,"891 7th St, San Francisco, CA 94016" -232946,Apple Airpods Headphones,1,150,07/27/19 19:23,"853 Meadow St, Atlanta, GA 30301" -232947,Lightning Charging Cable,1,14.95,07/02/19 17:52,"210 West St, Seattle, WA 98101" -232948,27in 4K Gaming Monitor,1,389.99,07/18/19 23:49,"768 Hickory St, Atlanta, GA 30301" -232949,Lightning Charging Cable,1,14.95,07/13/19 10:30,"82 Main St, Boston, MA 02215" -232950,AA Batteries (4-pack),1,3.84,07/02/19 15:47,"968 Hill St, San Francisco, CA 94016" -232951,Bose SoundSport Headphones,1,99.99,07/03/19 12:59,"491 Jackson St, San Francisco, CA 94016" -232952,Bose SoundSport Headphones,1,99.99,07/21/19 00:15,"456 Center St, New York City, NY 10001" -232953,AA Batteries (4-pack),1,3.84,07/16/19 09:26,"490 14th St, New York City, NY 10001" -232954,AA Batteries (4-pack),3,3.84,07/13/19 15:54,"328 Spruce St, San Francisco, CA 94016" -232955,20in Monitor,1,109.99,07/17/19 13:23,"436 Cherry St, Boston, MA 02215" -232956,Apple Airpods Headphones,1,150,07/15/19 12:15,"948 North St, Los Angeles, CA 90001" -232957,34in Ultrawide Monitor,1,379.99,07/06/19 23:39,"604 6th St, New York City, NY 10001" -232958,Apple Airpods Headphones,1,150,07/09/19 05:41,"264 Lincoln St, Los Angeles, CA 90001" -232959,Google Phone,1,600,07/31/19 22:18,"55 6th St, Seattle, WA 98101" -232960,AAA Batteries (4-pack),1,2.99,07/22/19 20:04,"959 1st St, Los Angeles, CA 90001" -232961,Lightning Charging Cable,1,14.95,07/22/19 00:30,"74 Jackson St, Seattle, WA 98101" -232962,Wired Headphones,1,11.99,07/06/19 20:55,"854 8th St, Boston, MA 02215" -232963,Macbook Pro Laptop,1,1700,07/10/19 11:00,"547 Washington St, Atlanta, GA 30301" -232964,AAA Batteries (4-pack),1,2.99,07/27/19 13:26,"993 Maple St, Atlanta, GA 30301" -232965,AAA Batteries (4-pack),1,2.99,07/22/19 08:45,"337 Sunset St, Portland, OR 97035" -232966,Flatscreen TV,1,300,07/14/19 08:07,"937 7th St, New York City, NY 10001" -232967,34in Ultrawide Monitor,1,379.99,07/21/19 16:24,"471 6th St, Dallas, TX 75001" -232968,Bose SoundSport Headphones,1,99.99,07/26/19 11:15,"825 Pine St, Los Angeles, CA 90001" -232969,34in Ultrawide Monitor,1,379.99,07/11/19 09:59,"114 Forest St, Atlanta, GA 30301" -232970,AA Batteries (4-pack),1,3.84,07/09/19 21:09,"228 Madison St, Atlanta, GA 30301" -232971,AAA Batteries (4-pack),2,2.99,07/25/19 19:31,"353 Jefferson St, San Francisco, CA 94016" -232972,AA Batteries (4-pack),2,3.84,07/30/19 17:46,"159 South St, San Francisco, CA 94016" -232973,20in Monitor,1,109.99,07/26/19 06:51,"7 Adams St, Los Angeles, CA 90001" -232974,Apple Airpods Headphones,1,150,07/15/19 11:35,"541 Adams St, New York City, NY 10001" -232975,27in 4K Gaming Monitor,1,389.99,07/13/19 13:13,"685 Sunset St, Los Angeles, CA 90001" -232976,USB-C Charging Cable,1,11.95,07/18/19 10:42,"797 Washington St, Boston, MA 02215" -232977,Google Phone,1,600,07/08/19 21:29,"449 River St, Seattle, WA 98101" -232978,Macbook Pro Laptop,1,1700,07/14/19 22:09,"346 Dogwood St, Austin, TX 73301" -232979,USB-C Charging Cable,1,11.95,07/28/19 20:13,"870 Park St, Austin, TX 73301" -232980,USB-C Charging Cable,1,11.95,07/09/19 21:12,"432 12th St, Dallas, TX 75001" -232981,AAA Batteries (4-pack),2,2.99,07/11/19 19:37,"366 13th St, Seattle, WA 98101" -232982,iPhone,1,700,07/01/19 17:51,"859 14th St, Seattle, WA 98101" -232982,Wired Headphones,1,11.99,07/01/19 17:51,"859 14th St, Seattle, WA 98101" -232983,27in FHD Monitor,1,149.99,07/13/19 11:13,"679 14th St, Seattle, WA 98101" -232984,Apple Airpods Headphones,1,150,07/27/19 17:38,"717 2nd St, Austin, TX 73301" -232985,27in FHD Monitor,1,149.99,07/10/19 20:48,"91 Lake St, Boston, MA 02215" -232986,Wired Headphones,1,11.99,07/07/19 10:31,"897 Walnut St, Atlanta, GA 30301" -232987,AA Batteries (4-pack),1,3.84,07/09/19 08:45,"334 Main St, San Francisco, CA 94016" -232988,Vareebadd Phone,1,400,07/14/19 20:56,"46 2nd St, New York City, NY 10001" -232988,USB-C Charging Cable,1,11.95,07/14/19 20:56,"46 2nd St, New York City, NY 10001" -232989,USB-C Charging Cable,1,11.95,07/31/19 00:11,"141 Jefferson St, San Francisco, CA 94016" -232989,Google Phone,1,600,07/31/19 00:11,"141 Jefferson St, San Francisco, CA 94016" -232990,Apple Airpods Headphones,1,150,07/09/19 06:16,"253 Elm St, Boston, MA 02215" -232991,Wired Headphones,1,11.99,07/11/19 11:59,"649 8th St, Portland, OR 97035" -232992,USB-C Charging Cable,1,11.95,07/09/19 11:02,"159 Jefferson St, San Francisco, CA 94016" -232993,Bose SoundSport Headphones,1,99.99,07/23/19 16:09,"528 Meadow St, Seattle, WA 98101" -232994,iPhone,1,700,07/30/19 18:34,"501 Meadow St, Portland, OR 97035" -232995,Apple Airpods Headphones,1,150,07/19/19 16:19,"534 Cedar St, Boston, MA 02215" -232996,Wired Headphones,2,11.99,07/03/19 14:20,"638 4th St, Los Angeles, CA 90001" -232997,AA Batteries (4-pack),1,3.84,07/04/19 09:51,"259 6th St, Boston, MA 02215" -232998,Wired Headphones,1,11.99,07/06/19 14:46,"676 Jackson St, Atlanta, GA 30301" -232999,AAA Batteries (4-pack),1,2.99,07/05/19 18:09,"196 Madison St, San Francisco, CA 94016" -233000,AAA Batteries (4-pack),1,2.99,07/04/19 01:41,"26 Pine St, Boston, MA 02215" -233001,Apple Airpods Headphones,1,150,07/17/19 22:16,"336 Madison St, Austin, TX 73301" -233002,AAA Batteries (4-pack),1,2.99,07/23/19 12:29,"233 Lincoln St, Boston, MA 02215" -233003,iPhone,1,700,07/16/19 14:50,"699 13th St, Austin, TX 73301" -233003,Wired Headphones,1,11.99,07/16/19 14:50,"699 13th St, Austin, TX 73301" -233004,Wired Headphones,1,11.99,07/12/19 11:29,"200 Lincoln St, Boston, MA 02215" -233005,AAA Batteries (4-pack),1,2.99,07/12/19 22:56,"258 11th St, Dallas, TX 75001" -233006,Apple Airpods Headphones,1,150,07/21/19 15:02,"659 Maple St, San Francisco, CA 94016" -233007,AA Batteries (4-pack),1,3.84,07/07/19 00:11,"415 1st St, Atlanta, GA 30301" -233008,20in Monitor,1,109.99,07/05/19 21:26,"191 7th St, Los Angeles, CA 90001" -233009,AA Batteries (4-pack),2,3.84,07/30/19 20:58,"914 Wilson St, San Francisco, CA 94016" -233010,AA Batteries (4-pack),1,3.84,07/22/19 22:02,"136 7th St, San Francisco, CA 94016" -233011,USB-C Charging Cable,1,11.95,07/12/19 08:02,"781 Wilson St, San Francisco, CA 94016" -233012,Apple Airpods Headphones,1,150,07/30/19 14:58,"649 Johnson St, Austin, TX 73301" -233013,USB-C Charging Cable,1,11.95,07/17/19 21:47,"230 Johnson St, Portland, OR 97035" -233014,USB-C Charging Cable,1,11.95,07/19/19 13:06,"675 1st St, San Francisco, CA 94016" -233015,Bose SoundSport Headphones,1,99.99,07/22/19 12:30,"454 7th St, San Francisco, CA 94016" -233016,Macbook Pro Laptop,1,1700,07/09/19 21:41,"497 Maple St, New York City, NY 10001" -233017,USB-C Charging Cable,1,11.95,07/20/19 18:02,"14 Willow St, Dallas, TX 75001" -233018,Bose SoundSport Headphones,1,99.99,07/30/19 10:50,"703 Meadow St, Boston, MA 02215" -233019,USB-C Charging Cable,1,11.95,07/08/19 19:34,"967 Willow St, Portland, OR 97035" -233020,iPhone,1,700,07/24/19 06:22,"913 Madison St, Seattle, WA 98101" -233021,AAA Batteries (4-pack),4,2.99,07/15/19 10:49,"332 8th St, Boston, MA 02215" -233022,USB-C Charging Cable,1,11.95,07/15/19 20:12,"563 Spruce St, Portland, OR 97035" -233023,AA Batteries (4-pack),1,3.84,07/02/19 11:08,"115 Johnson St, San Francisco, CA 94016" -233024,Bose SoundSport Headphones,1,99.99,07/14/19 17:36,"449 7th St, San Francisco, CA 94016" -233025,Bose SoundSport Headphones,1,99.99,07/19/19 21:50,"488 7th St, Los Angeles, CA 90001" -233026,LG Washing Machine,1,600.0,07/08/19 21:49,"280 Washington St, New York City, NY 10001" -233027,27in 4K Gaming Monitor,1,389.99,07/30/19 01:36,"766 Jefferson St, Los Angeles, CA 90001" -233028,iPhone,1,700,07/28/19 20:53,"468 Park St, San Francisco, CA 94016" -233029,AA Batteries (4-pack),1,3.84,07/11/19 18:07,"167 Center St, Los Angeles, CA 90001" -233030,AAA Batteries (4-pack),2,2.99,07/31/19 21:14,"87 Hickory St, San Francisco, CA 94016" -233031,Macbook Pro Laptop,1,1700,07/30/19 17:38,"754 Madison St, Los Angeles, CA 90001" -233032,20in Monitor,1,109.99,07/18/19 15:53,"374 Highland St, Atlanta, GA 30301" -233033,Lightning Charging Cable,1,14.95,07/02/19 17:08,"576 Meadow St, Austin, TX 73301" -233034,Lightning Charging Cable,2,14.95,07/04/19 19:40,"572 West St, Boston, MA 02215" -233035,USB-C Charging Cable,1,11.95,07/20/19 12:29,"694 Sunset St, Los Angeles, CA 90001" -233036,Macbook Pro Laptop,1,1700,07/24/19 21:14,"442 Park St, Austin, TX 73301" -233037,AAA Batteries (4-pack),1,2.99,07/23/19 09:45,"875 Lakeview St, New York City, NY 10001" -233038,Bose SoundSport Headphones,1,99.99,07/14/19 13:20,"601 Meadow St, Boston, MA 02215" -233039,AA Batteries (4-pack),1,3.84,07/07/19 13:14,"203 Highland St, San Francisco, CA 94016" -233040,AA Batteries (4-pack),1,3.84,07/20/19 17:47,"230 Dogwood St, San Francisco, CA 94016" -233041,Apple Airpods Headphones,1,150,07/28/19 16:42,"465 Pine St, Portland, OR 97035" -233042,Apple Airpods Headphones,1,150,07/02/19 16:23,"53 North St, Los Angeles, CA 90001" -233043,Apple Airpods Headphones,1,150,07/09/19 21:02,"815 Ridge St, Boston, MA 02215" -233044,Wired Headphones,1,11.99,07/12/19 13:44,"647 7th St, San Francisco, CA 94016" -233045,USB-C Charging Cable,1,11.95,07/14/19 20:03,"889 Lake St, San Francisco, CA 94016" -233046,AAA Batteries (4-pack),1,2.99,07/07/19 18:05,"188 6th St, San Francisco, CA 94016" -233047,Lightning Charging Cable,1,14.95,07/06/19 21:25,"437 Walnut St, Boston, MA 02215" -233048,AA Batteries (4-pack),1,3.84,07/02/19 09:48,"509 Spruce St, New York City, NY 10001" -233049,iPhone,1,700,07/02/19 11:16,"626 Dogwood St, New York City, NY 10001" -233050,USB-C Charging Cable,1,11.95,07/01/19 09:50,"681 Forest St, Portland, OR 97035" -233051,AA Batteries (4-pack),1,3.84,07/02/19 19:31,"641 Sunset St, San Francisco, CA 94016" -233052,AAA Batteries (4-pack),1,2.99,07/18/19 11:33,"945 Ridge St, San Francisco, CA 94016" -233053,AA Batteries (4-pack),2,3.84,07/31/19 20:14,"471 Church St, Los Angeles, CA 90001" -233054,34in Ultrawide Monitor,1,379.99,07/14/19 21:08,"893 Washington St, Los Angeles, CA 90001" -233054,iPhone,1,700,07/14/19 21:08,"893 Washington St, Los Angeles, CA 90001" -233055,AAA Batteries (4-pack),6,2.99,07/26/19 20:41,"275 Main St, Boston, MA 02215" -233056,USB-C Charging Cable,1,11.95,07/19/19 19:10,"775 Adams St, San Francisco, CA 94016" -233057,Apple Airpods Headphones,1,150,07/23/19 23:21,"190 River St, San Francisco, CA 94016" -233058,Macbook Pro Laptop,1,1700,07/04/19 12:21,"749 Cedar St, Boston, MA 02215" -233059,Lightning Charging Cable,1,14.95,07/21/19 18:52,"918 Ridge St, San Francisco, CA 94016" -233060,AAA Batteries (4-pack),1,2.99,07/20/19 17:01,"459 Willow St, San Francisco, CA 94016" -233061,Apple Airpods Headphones,1,150,07/24/19 20:06,"216 13th St, Seattle, WA 98101" -233062,Macbook Pro Laptop,1,1700,07/24/19 01:21,"182 Dogwood St, Portland, OR 97035" -233063,AAA Batteries (4-pack),3,2.99,07/30/19 17:04,"432 West St, Austin, TX 73301" -233064,AAA Batteries (4-pack),1,2.99,07/25/19 18:13,"720 12th St, Boston, MA 02215" -233065,Wired Headphones,1,11.99,07/28/19 22:21,"302 Lincoln St, Boston, MA 02215" -233066,AA Batteries (4-pack),1,3.84,07/27/19 13:06,"176 Washington St, Los Angeles, CA 90001" -233067,Wired Headphones,1,11.99,07/20/19 21:23,"262 1st St, Boston, MA 02215" -233068,20in Monitor,1,109.99,07/23/19 14:16,"738 Ridge St, Seattle, WA 98101" -233069,Wired Headphones,1,11.99,07/14/19 12:50,"402 10th St, San Francisco, CA 94016" -233070,Flatscreen TV,1,300,07/25/19 15:55,"327 Wilson St, Los Angeles, CA 90001" -233071,AA Batteries (4-pack),1,3.84,07/04/19 11:23,"781 Adams St, New York City, NY 10001" -233072,Google Phone,1,600,07/16/19 18:34,"4 10th St, San Francisco, CA 94016" -233073,Lightning Charging Cable,1,14.95,07/31/19 06:26,"318 Dogwood St, New York City, NY 10001" -233074,AAA Batteries (4-pack),1,2.99,07/21/19 10:06,"559 West St, San Francisco, CA 94016" -233075,AA Batteries (4-pack),2,3.84,07/12/19 11:18,"858 Adams St, San Francisco, CA 94016" -233076,Vareebadd Phone,1,400,07/23/19 09:29,"964 Jackson St, Los Angeles, CA 90001" -233077,27in FHD Monitor,1,149.99,07/16/19 21:43,"14 Dogwood St, Boston, MA 02215" -233078,Bose SoundSport Headphones,1,99.99,07/10/19 22:00,"227 Hickory St, Los Angeles, CA 90001" -233079,Apple Airpods Headphones,1,150,07/06/19 10:37,"433 Park St, New York City, NY 10001" -233080,34in Ultrawide Monitor,1,379.99,07/10/19 22:23,"338 Park St, Atlanta, GA 30301" -233081,Lightning Charging Cable,1,14.95,07/28/19 19:25,"738 Dogwood St, San Francisco, CA 94016" -233082,USB-C Charging Cable,1,11.95,07/01/19 10:24,"930 11th St, Dallas, TX 75001" -233083,Lightning Charging Cable,1,14.95,07/05/19 00:20,"242 Jefferson St, San Francisco, CA 94016" -233084,Wired Headphones,1,11.99,07/11/19 13:06,"225 Main St, Los Angeles, CA 90001" -233085,AAA Batteries (4-pack),2,2.99,07/19/19 18:53,"860 Elm St, Seattle, WA 98101" -233086,Wired Headphones,1,11.99,07/29/19 10:55,"251 Willow St, San Francisco, CA 94016" -233087,Lightning Charging Cable,1,14.95,07/03/19 10:54,"92 10th St, Austin, TX 73301" -233088,iPhone,1,700,07/03/19 21:39,"145 Washington St, San Francisco, CA 94016" -233088,Apple Airpods Headphones,1,150,07/03/19 21:39,"145 Washington St, San Francisco, CA 94016" -233089,Vareebadd Phone,1,400,07/02/19 19:17,"205 1st St, San Francisco, CA 94016" -233090,AA Batteries (4-pack),1,3.84,07/07/19 18:23,"91 Church St, San Francisco, CA 94016" -233091,Wired Headphones,1,11.99,07/22/19 21:16,"29 Ridge St, Dallas, TX 75001" -233092,27in FHD Monitor,1,149.99,07/31/19 19:24,"696 8th St, Austin, TX 73301" -233093,USB-C Charging Cable,1,11.95,07/30/19 14:32,"489 Cedar St, San Francisco, CA 94016" -233094,Lightning Charging Cable,1,14.95,07/19/19 12:32,"704 11th St, Atlanta, GA 30301" -233095,Lightning Charging Cable,1,14.95,07/10/19 20:13,"928 Willow St, Boston, MA 02215" -233096,Flatscreen TV,1,300,07/01/19 22:49,"965 Center St, San Francisco, CA 94016" -233097,20in Monitor,1,109.99,07/02/19 11:57,"295 Main St, Seattle, WA 98101" -233098,USB-C Charging Cable,1,11.95,07/15/19 17:59,"639 Lake St, San Francisco, CA 94016" -233099,ThinkPad Laptop,1,999.99,07/27/19 14:50,"79 Washington St, San Francisco, CA 94016" -233100,USB-C Charging Cable,1,11.95,07/19/19 12:10,"701 Elm St, Seattle, WA 98101" -233101,Apple Airpods Headphones,1,150,07/31/19 12:19,"816 Jefferson St, Atlanta, GA 30301" -233102,Bose SoundSport Headphones,1,99.99,07/29/19 15:02,"681 Spruce St, Boston, MA 02215" -233103,Lightning Charging Cable,1,14.95,07/11/19 17:25,"408 Lake St, San Francisco, CA 94016" -233104,AA Batteries (4-pack),1,3.84,07/17/19 13:56,"650 South St, Seattle, WA 98101" -233105,AA Batteries (4-pack),1,3.84,07/27/19 07:56,"102 13th St, Atlanta, GA 30301" -233106,AAA Batteries (4-pack),1,2.99,07/08/19 17:44,"861 8th St, Portland, OR 97035" -233107,USB-C Charging Cable,1,11.95,07/09/19 20:45,"491 North St, Atlanta, GA 30301" -233108,iPhone,1,700,07/15/19 11:47,"792 2nd St, Atlanta, GA 30301" -233109,Bose SoundSport Headphones,1,99.99,07/13/19 14:43,"958 Cedar St, Boston, MA 02215" -233110,Apple Airpods Headphones,1,150,07/30/19 19:00,"563 Hickory St, Boston, MA 02215" -233111,Bose SoundSport Headphones,1,99.99,07/27/19 21:30,"946 2nd St, Dallas, TX 75001" -233112,Google Phone,1,600,07/26/19 19:24,"793 Highland St, Los Angeles, CA 90001" -233113,Google Phone,1,600,07/02/19 19:20,"590 Park St, San Francisco, CA 94016" -233114,AAA Batteries (4-pack),1,2.99,07/16/19 11:15,"535 5th St, San Francisco, CA 94016" -233115,34in Ultrawide Monitor,1,379.99,07/23/19 11:47,"883 Pine St, San Francisco, CA 94016" -233116,ThinkPad Laptop,1,999.99,07/20/19 18:41,"468 11th St, Boston, MA 02215" -233117,USB-C Charging Cable,1,11.95,07/24/19 10:36,"407 Cherry St, San Francisco, CA 94016" -233118,Macbook Pro Laptop,1,1700,07/07/19 10:00,"969 Church St, San Francisco, CA 94016" -233119,USB-C Charging Cable,1,11.95,07/23/19 03:19,"173 Center St, Seattle, WA 98101" -233120,27in 4K Gaming Monitor,1,389.99,07/27/19 12:10,"583 Lake St, Los Angeles, CA 90001" -233121,AAA Batteries (4-pack),3,2.99,07/10/19 13:25,"67 Main St, San Francisco, CA 94016" -233122,34in Ultrawide Monitor,1,379.99,07/30/19 10:37,"903 Pine St, New York City, NY 10001" -233123,34in Ultrawide Monitor,1,379.99,07/25/19 12:25,"932 River St, Seattle, WA 98101" -233124,Lightning Charging Cable,1,14.95,07/30/19 18:49,"507 Meadow St, Portland, OR 97035" -233125,AA Batteries (4-pack),2,3.84,07/07/19 13:16,"50 13th St, Boston, MA 02215" -233126,27in 4K Gaming Monitor,1,389.99,07/25/19 19:38,"219 Willow St, San Francisco, CA 94016" -233127,Lightning Charging Cable,1,14.95,07/13/19 15:46,"975 Sunset St, San Francisco, CA 94016" -233128,AAA Batteries (4-pack),1,2.99,07/23/19 21:41,"755 Center St, Seattle, WA 98101" -233129,Lightning Charging Cable,3,14.95,07/27/19 20:00,"764 11th St, San Francisco, CA 94016" -233130,34in Ultrawide Monitor,1,379.99,07/21/19 19:49,"832 Maple St, Los Angeles, CA 90001" -233131,AA Batteries (4-pack),1,3.84,07/28/19 23:52,"898 Cherry St, Boston, MA 02215" -233132,Lightning Charging Cable,1,14.95,07/31/19 18:14,"720 Maple St, Boston, MA 02215" -233133,20in Monitor,1,109.99,07/07/19 21:46,"339 Johnson St, Portland, OR 97035" -233134,27in 4K Gaming Monitor,1,389.99,07/22/19 09:05,"964 Dogwood St, Austin, TX 73301" -233135,AAA Batteries (4-pack),1,2.99,07/08/19 13:20,"729 Wilson St, San Francisco, CA 94016" -233136,27in FHD Monitor,1,149.99,07/25/19 09:13,"300 West St, Boston, MA 02215" -233137,AA Batteries (4-pack),1,3.84,07/18/19 20:55,"246 Elm St, San Francisco, CA 94016" -233138,AA Batteries (4-pack),1,3.84,07/12/19 00:46,"423 Forest St, San Francisco, CA 94016" -233139,USB-C Charging Cable,1,11.95,07/06/19 19:34,"646 West St, Los Angeles, CA 90001" -233140,AAA Batteries (4-pack),1,2.99,07/29/19 00:23,"469 Willow St, San Francisco, CA 94016" -233141,AA Batteries (4-pack),1,3.84,07/17/19 15:58,"19 Jefferson St, San Francisco, CA 94016" -233142,Bose SoundSport Headphones,1,99.99,07/13/19 17:41,"699 6th St, Atlanta, GA 30301" -233143,AA Batteries (4-pack),1,3.84,07/13/19 06:08,"180 Main St, Atlanta, GA 30301" -233144,Bose SoundSport Headphones,1,99.99,07/05/19 20:20,"382 12th St, Austin, TX 73301" -233145,34in Ultrawide Monitor,1,379.99,07/12/19 12:51,"449 8th St, Dallas, TX 75001" -233146,USB-C Charging Cable,1,11.95,07/28/19 10:44,"889 11th St, Dallas, TX 75001" -233147,34in Ultrawide Monitor,1,379.99,07/06/19 12:03,"813 Cedar St, Portland, ME 04101" -233148,Bose SoundSport Headphones,1,99.99,07/16/19 17:58,"380 7th St, New York City, NY 10001" -233149,34in Ultrawide Monitor,1,379.99,07/10/19 19:04,"434 Center St, San Francisco, CA 94016" -233150,AAA Batteries (4-pack),2,2.99,07/27/19 20:37,"577 Center St, San Francisco, CA 94016" -233151,34in Ultrawide Monitor,1,379.99,07/03/19 13:30,"710 13th St, New York City, NY 10001" -233152,Lightning Charging Cable,1,14.95,07/04/19 14:45,"464 Hickory St, Boston, MA 02215" -233153,AAA Batteries (4-pack),1,2.99,07/08/19 07:33,"784 Walnut St, San Francisco, CA 94016" -233154,USB-C Charging Cable,2,11.95,07/15/19 18:38,"368 Madison St, Los Angeles, CA 90001" -233155,AA Batteries (4-pack),1,3.84,07/16/19 17:34,"548 Dogwood St, San Francisco, CA 94016" -233156,Wired Headphones,1,11.99,07/12/19 04:46,"976 West St, Boston, MA 02215" -233157,Lightning Charging Cable,1,14.95,07/15/19 17:48,"133 Pine St, Austin, TX 73301" -233157,Wired Headphones,1,11.99,07/15/19 17:48,"133 Pine St, Austin, TX 73301" -233158,AA Batteries (4-pack),1,3.84,07/14/19 20:30,"504 Jackson St, Dallas, TX 75001" -233159,Wired Headphones,1,11.99,07/18/19 13:29,"251 2nd St, San Francisco, CA 94016" -233160,Macbook Pro Laptop,1,1700,07/20/19 08:26,"599 Lakeview St, San Francisco, CA 94016" -233161,Lightning Charging Cable,1,14.95,07/14/19 21:33,"470 12th St, New York City, NY 10001" -233162,AA Batteries (4-pack),1,3.84,07/25/19 07:07,"181 Jefferson St, Seattle, WA 98101" -233163,AA Batteries (4-pack),1,3.84,07/23/19 07:43,"233 14th St, Portland, OR 97035" -233164,Lightning Charging Cable,1,14.95,07/03/19 22:32,"86 Maple St, Los Angeles, CA 90001" -233165,Macbook Pro Laptop,1,1700,07/06/19 17:19,"460 Johnson St, San Francisco, CA 94016" -233166,Lightning Charging Cable,2,14.95,07/30/19 19:34,"289 Park St, Austin, TX 73301" -233167,Apple Airpods Headphones,1,150,07/22/19 10:13,"202 Pine St, San Francisco, CA 94016" -233168,AA Batteries (4-pack),1,3.84,07/30/19 21:50,"156 8th St, Seattle, WA 98101" -233168,Bose SoundSport Headphones,1,99.99,07/30/19 21:50,"156 8th St, Seattle, WA 98101" -233169,27in 4K Gaming Monitor,1,389.99,07/15/19 18:32,"118 Lakeview St, San Francisco, CA 94016" -233170,Wired Headphones,1,11.99,07/15/19 18:48,"744 Maple St, Boston, MA 02215" -233171,Apple Airpods Headphones,1,150,07/16/19 08:41,"996 Lakeview St, San Francisco, CA 94016" -233172,USB-C Charging Cable,1,11.95,07/25/19 13:11,"461 Chestnut St, New York City, NY 10001" -233173,27in FHD Monitor,1,149.99,07/26/19 18:50,"918 Spruce St, New York City, NY 10001" -233174,Apple Airpods Headphones,1,150,07/06/19 14:07,"33 13th St, New York City, NY 10001" -233175,Lightning Charging Cable,1,14.95,07/27/19 13:31,"485 Main St, Los Angeles, CA 90001" -233176,AA Batteries (4-pack),1,3.84,07/19/19 22:09,"837 Elm St, Austin, TX 73301" -233177,Lightning Charging Cable,2,14.95,07/10/19 01:25,"830 Center St, Portland, OR 97035" -233178,27in 4K Gaming Monitor,1,389.99,07/23/19 09:29,"198 Washington St, Dallas, TX 75001" -233179,AAA Batteries (4-pack),3,2.99,07/15/19 15:15,"6 Pine St, San Francisco, CA 94016" -233180,Apple Airpods Headphones,1,150,07/17/19 07:26,"340 9th St, Seattle, WA 98101" -233181,USB-C Charging Cable,1,11.95,07/07/19 10:40,"627 Willow St, Atlanta, GA 30301" -233182,Lightning Charging Cable,1,14.95,07/22/19 16:28,"987 Jackson St, Dallas, TX 75001" -233183,USB-C Charging Cable,1,11.95,07/21/19 14:39,"952 5th St, Atlanta, GA 30301" -233184,Wired Headphones,1,11.99,07/02/19 18:54,"138 5th St, Boston, MA 02215" -233185,AAA Batteries (4-pack),1,2.99,07/24/19 11:14,"712 14th St, San Francisco, CA 94016" -233186,Wired Headphones,1,11.99,07/17/19 10:12,"865 Cedar St, Seattle, WA 98101" -233187,Lightning Charging Cable,1,14.95,07/04/19 18:39,"168 Main St, New York City, NY 10001" -233188,AAA Batteries (4-pack),2,2.99,07/24/19 08:39,"194 Willow St, Boston, MA 02215" -233189,Wired Headphones,1,11.99,07/23/19 14:14,"973 Wilson St, San Francisco, CA 94016" -233190,Apple Airpods Headphones,1,150,07/20/19 21:46,"436 Pine St, Los Angeles, CA 90001" -233191,AA Batteries (4-pack),1,3.84,07/26/19 00:10,"679 8th St, Seattle, WA 98101" -233192,27in FHD Monitor,1,149.99,07/05/19 12:54,"189 Madison St, Seattle, WA 98101" -233193,AA Batteries (4-pack),1,3.84,07/15/19 18:37,"678 West St, San Francisco, CA 94016" -233194,USB-C Charging Cable,1,11.95,07/07/19 13:23,"994 5th St, Portland, OR 97035" -233195,AA Batteries (4-pack),1,3.84,07/16/19 23:04,"126 Willow St, San Francisco, CA 94016" -233196,AA Batteries (4-pack),1,3.84,07/11/19 10:30,"534 Cherry St, New York City, NY 10001" -233197,iPhone,1,700,07/17/19 10:09,"953 Adams St, San Francisco, CA 94016" -233197,Apple Airpods Headphones,1,150,07/17/19 10:09,"953 Adams St, San Francisco, CA 94016" -233198,Vareebadd Phone,1,400,07/26/19 10:17,"148 Willow St, Atlanta, GA 30301" -233199,Flatscreen TV,1,300,07/26/19 20:21,"112 Hill St, Dallas, TX 75001" -233200,AA Batteries (4-pack),3,3.84,07/21/19 08:45,"202 Maple St, Boston, MA 02215" -233200,34in Ultrawide Monitor,1,379.99,07/21/19 08:45,"202 Maple St, Boston, MA 02215" -233201,Bose SoundSport Headphones,1,99.99,07/23/19 15:22,"430 West St, San Francisco, CA 94016" -233202,Wired Headphones,1,11.99,07/08/19 19:36,"321 Adams St, Boston, MA 02215" -233203,Google Phone,1,600,07/22/19 07:33,"166 Church St, Portland, ME 04101" -233204,AAA Batteries (4-pack),1,2.99,07/03/19 16:05,"880 Lake St, Seattle, WA 98101" -233205,34in Ultrawide Monitor,1,379.99,07/26/19 16:35,"645 Elm St, Atlanta, GA 30301" -233206,Lightning Charging Cable,1,14.95,07/13/19 21:13,"377 Main St, San Francisco, CA 94016" -233207,20in Monitor,1,109.99,07/02/19 00:52,"868 6th St, Seattle, WA 98101" -233208,27in 4K Gaming Monitor,1,389.99,07/27/19 19:43,"138 Pine St, Austin, TX 73301" -233209,AA Batteries (4-pack),1,3.84,07/18/19 13:21,"394 Elm St, Portland, OR 97035" -233210,USB-C Charging Cable,3,11.95,07/19/19 12:36,"859 Willow St, New York City, NY 10001" -233211,Wired Headphones,1,11.99,07/11/19 16:58,"421 Lincoln St, San Francisco, CA 94016" -233212,AA Batteries (4-pack),1,3.84,07/03/19 21:15,"516 Hill St, Los Angeles, CA 90001" -233213,AA Batteries (4-pack),1,3.84,07/22/19 12:06,"827 Maple St, Austin, TX 73301" -233214,AAA Batteries (4-pack),6,2.99,07/11/19 17:09,"992 Jackson St, Boston, MA 02215" -233215,34in Ultrawide Monitor,1,379.99,07/09/19 13:24,"513 Adams St, Atlanta, GA 30301" -233216,Lightning Charging Cable,1,14.95,07/18/19 13:47,"672 Willow St, Los Angeles, CA 90001" -233217,27in FHD Monitor,1,149.99,07/07/19 10:27,"212 Forest St, Boston, MA 02215" -233218,34in Ultrawide Monitor,1,379.99,07/29/19 12:55,"622 Lincoln St, San Francisco, CA 94016" -233219,27in 4K Gaming Monitor,1,389.99,07/05/19 20:24,"967 7th St, Los Angeles, CA 90001" -233220,AAA Batteries (4-pack),3,2.99,07/25/19 09:20,"365 River St, Austin, TX 73301" -233221,Lightning Charging Cable,1,14.95,08/01/19 02:33,"520 River St, San Francisco, CA 94016" -233222,AAA Batteries (4-pack),1,2.99,07/07/19 16:32,"547 1st St, New York City, NY 10001" -233223,Lightning Charging Cable,1,14.95,07/03/19 19:39,"863 Cherry St, Atlanta, GA 30301" -233224,27in FHD Monitor,1,149.99,07/01/19 15:40,"565 8th St, Portland, OR 97035" -233225,Apple Airpods Headphones,1,150,07/23/19 11:58,"13 5th St, New York City, NY 10001" -233226,Lightning Charging Cable,1,14.95,07/09/19 18:10,"756 Dogwood St, Portland, ME 04101" -233227,Wired Headphones,1,11.99,07/25/19 23:58,"893 Hill St, San Francisco, CA 94016" -233228,iPhone,1,700,07/05/19 16:59,"673 Elm St, San Francisco, CA 94016" -233228,Lightning Charging Cable,1,14.95,07/05/19 16:59,"673 Elm St, San Francisco, CA 94016" -233229,AAA Batteries (4-pack),1,2.99,07/29/19 16:34,"456 Madison St, Los Angeles, CA 90001" -233230,Google Phone,1,600,07/28/19 16:53,"332 Walnut St, New York City, NY 10001" -233231,AAA Batteries (4-pack),1,2.99,07/30/19 00:01,"514 Highland St, San Francisco, CA 94016" -233232,AAA Batteries (4-pack),2,2.99,07/01/19 20:21,"828 Sunset St, San Francisco, CA 94016" -233233,Wired Headphones,1,11.99,07/08/19 20:11,"693 Hickory St, San Francisco, CA 94016" -233234,Flatscreen TV,1,300,07/05/19 12:45,"577 10th St, San Francisco, CA 94016" -233235,Wired Headphones,1,11.99,07/05/19 20:17,"55 8th St, Portland, ME 04101" -233236,AAA Batteries (4-pack),1,2.99,07/13/19 14:38,"20 Hickory St, Portland, OR 97035" -233237,Apple Airpods Headphones,1,150,07/05/19 19:47,"791 4th St, Seattle, WA 98101" -233238,Lightning Charging Cable,1,14.95,07/21/19 11:35,"541 9th St, San Francisco, CA 94016" -233238,Google Phone,1,600,07/21/19 11:35,"541 9th St, San Francisco, CA 94016" -233239,USB-C Charging Cable,1,11.95,07/26/19 15:57,"157 12th St, Seattle, WA 98101" -233240,Lightning Charging Cable,1,14.95,07/01/19 10:15,"829 Highland St, San Francisco, CA 94016" -233241,Flatscreen TV,1,300,07/06/19 08:17,"383 Pine St, San Francisco, CA 94016" -233242,AA Batteries (4-pack),1,3.84,07/31/19 17:09,"401 Lake St, Los Angeles, CA 90001" -233242,Bose SoundSport Headphones,1,99.99,07/31/19 17:09,"401 Lake St, Los Angeles, CA 90001" -233243,Flatscreen TV,1,300,07/07/19 13:23,"566 Lakeview St, San Francisco, CA 94016" -233244,Wired Headphones,2,11.99,07/21/19 17:00,"205 Johnson St, San Francisco, CA 94016" -233245,USB-C Charging Cable,1,11.95,07/09/19 18:36,"77 Main St, San Francisco, CA 94016" -233246,Flatscreen TV,1,300,07/08/19 20:44,"25 Hickory St, San Francisco, CA 94016" -233246,USB-C Charging Cable,2,11.95,07/08/19 20:44,"25 Hickory St, San Francisco, CA 94016" -233247,27in 4K Gaming Monitor,1,389.99,07/22/19 13:15,"326 13th St, San Francisco, CA 94016" -233248,Wired Headphones,1,11.99,07/09/19 16:49,"631 Cedar St, San Francisco, CA 94016" -233249,Flatscreen TV,1,300,07/11/19 20:48,"499 Park St, Atlanta, GA 30301" -233250,USB-C Charging Cable,1,11.95,07/18/19 08:42,"933 4th St, Dallas, TX 75001" -233251,Wired Headphones,1,11.99,07/18/19 13:42,"801 River St, New York City, NY 10001" -233252,34in Ultrawide Monitor,1,379.99,07/15/19 00:23,"90 Adams St, New York City, NY 10001" -233253,20in Monitor,1,109.99,07/12/19 16:23,"451 2nd St, New York City, NY 10001" -233254,Apple Airpods Headphones,1,150,07/03/19 12:05,"793 Wilson St, Atlanta, GA 30301" -233255,Lightning Charging Cable,1,14.95,07/03/19 16:32,"499 12th St, San Francisco, CA 94016" -233256,Macbook Pro Laptop,1,1700,07/13/19 23:58,"469 Elm St, San Francisco, CA 94016" -233257,27in 4K Gaming Monitor,1,389.99,07/05/19 18:12,"48 13th St, Seattle, WA 98101" -233258,Macbook Pro Laptop,1,1700,07/24/19 21:36,"81 13th St, San Francisco, CA 94016" -233259,AAA Batteries (4-pack),1,2.99,07/10/19 07:46,"59 Hill St, San Francisco, CA 94016" -233260,AAA Batteries (4-pack),1,2.99,07/11/19 10:58,"677 11th St, Seattle, WA 98101" -233261,USB-C Charging Cable,2,11.95,07/07/19 09:45,"34 Chestnut St, San Francisco, CA 94016" -233262,Bose SoundSport Headphones,1,99.99,07/14/19 11:35,"753 North St, San Francisco, CA 94016" -233263,USB-C Charging Cable,1,11.95,07/08/19 12:04,"240 Hickory St, San Francisco, CA 94016" -233264,USB-C Charging Cable,2,11.95,07/16/19 10:23,"110 Spruce St, Los Angeles, CA 90001" -233265,AA Batteries (4-pack),1,3.84,07/04/19 14:41,"741 West St, Dallas, TX 75001" -233266,34in Ultrawide Monitor,1,379.99,07/07/19 21:13,"883 Forest St, Boston, MA 02215" -233267,AA Batteries (4-pack),1,3.84,07/02/19 10:37,"843 River St, Los Angeles, CA 90001" -233268,27in 4K Gaming Monitor,1,389.99,07/09/19 19:09,"897 River St, San Francisco, CA 94016" -233269,USB-C Charging Cable,1,11.95,07/25/19 08:51,"99 Lakeview St, San Francisco, CA 94016" -233270,USB-C Charging Cable,2,11.95,07/03/19 10:42,"354 Cedar St, Austin, TX 73301" -233271,USB-C Charging Cable,2,11.95,07/13/19 14:06,"230 Jefferson St, Austin, TX 73301" -233272,Bose SoundSport Headphones,1,99.99,07/18/19 07:17,"894 5th St, San Francisco, CA 94016" -233273,Lightning Charging Cable,1,14.95,07/25/19 01:03,"859 9th St, Seattle, WA 98101" -233274,Wired Headphones,1,11.99,07/09/19 08:24,"644 8th St, San Francisco, CA 94016" -233275,Lightning Charging Cable,1,14.95,07/13/19 12:10,"197 Forest St, Atlanta, GA 30301" -233276,Lightning Charging Cable,1,14.95,07/08/19 07:25,"139 Madison St, Dallas, TX 75001" -233277,Wired Headphones,1,11.99,07/28/19 08:10,"203 7th St, Los Angeles, CA 90001" -233278,AAA Batteries (4-pack),3,2.99,07/08/19 22:12,"575 Lincoln St, Portland, OR 97035" -233279,AAA Batteries (4-pack),2,2.99,07/12/19 22:16,"918 12th St, San Francisco, CA 94016" -233280,iPhone,1,700,07/25/19 15:54,"137 Cherry St, Portland, OR 97035" -233280,Lightning Charging Cable,1,14.95,07/25/19 15:54,"137 Cherry St, Portland, OR 97035" -233281,AAA Batteries (4-pack),1,2.99,07/12/19 15:08,"224 Meadow St, Boston, MA 02215" -233282,USB-C Charging Cable,1,11.95,07/02/19 06:25,"145 Lincoln St, San Francisco, CA 94016" -233283,ThinkPad Laptop,1,999.99,07/22/19 15:15,"106 Johnson St, San Francisco, CA 94016" -233283,Bose SoundSport Headphones,1,99.99,07/22/19 15:15,"106 Johnson St, San Francisco, CA 94016" -233284,34in Ultrawide Monitor,1,379.99,07/21/19 20:50,"301 River St, Austin, TX 73301" -233285,Apple Airpods Headphones,1,150,07/27/19 21:03,"620 9th St, Atlanta, GA 30301" -233286,Lightning Charging Cable,1,14.95,07/18/19 20:36,"431 Cherry St, Portland, ME 04101" -233287,Lightning Charging Cable,1,14.95,07/29/19 21:27,"214 Jefferson St, San Francisco, CA 94016" -233288,Wired Headphones,1,11.99,07/05/19 00:23,"611 2nd St, Austin, TX 73301" -233289,AA Batteries (4-pack),1,3.84,07/03/19 13:34,"288 Sunset St, Los Angeles, CA 90001" -233290,Bose SoundSport Headphones,1,99.99,07/17/19 13:20,"914 River St, New York City, NY 10001" -233291,Lightning Charging Cable,2,14.95,07/21/19 01:53,"622 Madison St, Dallas, TX 75001" -233292,AAA Batteries (4-pack),1,2.99,07/12/19 20:20,"433 North St, New York City, NY 10001" -233293,Wired Headphones,1,11.99,07/14/19 15:03,"65 5th St, Seattle, WA 98101" -233294,USB-C Charging Cable,1,11.95,07/10/19 21:06,"701 Park St, New York City, NY 10001" -233295,Apple Airpods Headphones,1,150,07/06/19 18:40,"536 Park St, San Francisco, CA 94016" -233296,Apple Airpods Headphones,1,150,07/04/19 00:21,"973 Willow St, New York City, NY 10001" -233297,ThinkPad Laptop,1,999.99,07/25/19 17:01,"197 Center St, Austin, TX 73301" -233298,20in Monitor,1,109.99,07/14/19 13:51,"524 Lakeview St, Boston, MA 02215" -233299,Bose SoundSport Headphones,1,99.99,07/19/19 19:55,"380 Maple St, New York City, NY 10001" -233300,Wired Headphones,1,11.99,07/22/19 22:18,"136 South St, Portland, OR 97035" -233301,Bose SoundSport Headphones,1,99.99,07/03/19 08:30,"144 Church St, Seattle, WA 98101" -233302,Lightning Charging Cable,1,14.95,07/09/19 21:23,"37 Spruce St, Austin, TX 73301" -233303,Lightning Charging Cable,1,14.95,07/20/19 14:47,"79 4th St, Boston, MA 02215" -233304,ThinkPad Laptop,1,999.99,07/21/19 23:23,"768 6th St, San Francisco, CA 94016" -233305,AA Batteries (4-pack),3,3.84,07/10/19 19:27,"18 Dogwood St, Los Angeles, CA 90001" -233306,Google Phone,1,600,07/01/19 09:15,"127 4th St, New York City, NY 10001" -233307,34in Ultrawide Monitor,1,379.99,07/08/19 05:25,"541 Lake St, Portland, OR 97035" -233308,Bose SoundSport Headphones,1,99.99,07/12/19 13:36,"339 14th St, San Francisco, CA 94016" -233309,20in Monitor,1,109.99,07/27/19 00:03,"120 4th St, Los Angeles, CA 90001" -233310,AAA Batteries (4-pack),4,2.99,07/22/19 08:08,"126 Cherry St, San Francisco, CA 94016" -233311,Apple Airpods Headphones,1,150,07/04/19 13:50,"864 Dogwood St, Atlanta, GA 30301" -233312,34in Ultrawide Monitor,1,379.99,07/10/19 19:48,"174 6th St, San Francisco, CA 94016" -233313,27in 4K Gaming Monitor,1,389.99,07/19/19 05:55,"471 Ridge St, Portland, OR 97035" -233314,Lightning Charging Cable,1,14.95,07/18/19 15:04,"237 4th St, Boston, MA 02215" -233314,Lightning Charging Cable,1,14.95,07/18/19 15:04,"237 4th St, Boston, MA 02215" -233315,Bose SoundSport Headphones,1,99.99,07/10/19 04:41,"783 Dogwood St, Atlanta, GA 30301" -233316,Macbook Pro Laptop,1,1700,07/28/19 20:43,"231 2nd St, Boston, MA 02215" -233317,34in Ultrawide Monitor,1,379.99,07/31/19 15:44,"805 Lake St, New York City, NY 10001" -233318,Apple Airpods Headphones,1,150,07/29/19 11:33,"567 Pine St, Portland, ME 04101" -233319,27in 4K Gaming Monitor,1,389.99,07/28/19 00:47,"95 Lakeview St, Boston, MA 02215" -233320,34in Ultrawide Monitor,1,379.99,07/17/19 20:48,"323 Main St, Los Angeles, CA 90001" -233321,iPhone,1,700,07/27/19 01:03,"73 Church St, Dallas, TX 75001" -233322,AA Batteries (4-pack),3,3.84,07/11/19 17:36,"41 9th St, Los Angeles, CA 90001" -233323,AA Batteries (4-pack),1,3.84,07/09/19 00:52,"252 Willow St, San Francisco, CA 94016" -233324,Wired Headphones,1,11.99,07/18/19 18:16,"487 11th St, Austin, TX 73301" -233325,AAA Batteries (4-pack),1,2.99,07/10/19 22:22,"852 Madison St, Los Angeles, CA 90001" -233325,AAA Batteries (4-pack),1,2.99,07/10/19 22:22,"852 Madison St, Los Angeles, CA 90001" -233326,34in Ultrawide Monitor,1,379.99,07/12/19 10:22,"704 6th St, Boston, MA 02215" -233327,Wired Headphones,1,11.99,07/02/19 05:25,"510 Johnson St, Los Angeles, CA 90001" -233328,Lightning Charging Cable,1,14.95,07/27/19 11:19,"740 6th St, San Francisco, CA 94016" -233329,Bose SoundSport Headphones,1,99.99,07/05/19 20:15,"176 Madison St, Dallas, TX 75001" -233330,Lightning Charging Cable,1,14.95,07/02/19 15:34,"403 4th St, Portland, OR 97035" -233331,USB-C Charging Cable,1,11.95,07/07/19 13:54,"316 Jefferson St, New York City, NY 10001" -233332,AAA Batteries (4-pack),3,2.99,07/09/19 12:35,"773 Lakeview St, San Francisco, CA 94016" -233333,AA Batteries (4-pack),1,3.84,07/07/19 12:43,"935 Maple St, New York City, NY 10001" -233334,USB-C Charging Cable,1,11.95,07/04/19 13:29,"8 Madison St, Los Angeles, CA 90001" -233335,AAA Batteries (4-pack),1,2.99,07/12/19 17:47,"445 4th St, Dallas, TX 75001" -233336,Lightning Charging Cable,1,14.95,07/28/19 14:09,"485 South St, San Francisco, CA 94016" -233337,USB-C Charging Cable,1,11.95,07/15/19 13:21,"883 Highland St, San Francisco, CA 94016" -233338,27in 4K Gaming Monitor,1,389.99,07/05/19 09:05,"964 Hill St, San Francisco, CA 94016" -233339,Apple Airpods Headphones,1,150,07/28/19 19:22,"339 Cherry St, Austin, TX 73301" -233340,AAA Batteries (4-pack),1,2.99,07/20/19 18:15,"906 Meadow St, San Francisco, CA 94016" -233341,ThinkPad Laptop,1,999.99,07/25/19 10:40,"553 8th St, New York City, NY 10001" -233342,Lightning Charging Cable,1,14.95,07/21/19 09:08,"261 River St, San Francisco, CA 94016" -233343,LG Dryer,1,600.0,07/12/19 22:01,"379 14th St, Austin, TX 73301" -233344,Lightning Charging Cable,2,14.95,07/05/19 16:38,"349 Sunset St, New York City, NY 10001" -233345,Apple Airpods Headphones,1,150,07/07/19 16:56,"769 Jackson St, Atlanta, GA 30301" -233346,AAA Batteries (4-pack),2,2.99,07/19/19 08:23,"53 4th St, San Francisco, CA 94016" -233347,Wired Headphones,1,11.99,07/26/19 03:02,"47 Hill St, Austin, TX 73301" -233348,27in FHD Monitor,1,149.99,07/19/19 12:56,"666 North St, Atlanta, GA 30301" -233349,USB-C Charging Cable,2,11.95,07/14/19 14:46,"54 Hickory St, San Francisco, CA 94016" -233350,AA Batteries (4-pack),1,3.84,07/29/19 12:55,"80 Sunset St, Boston, MA 02215" -233351,Wired Headphones,1,11.99,07/04/19 15:34,"126 West St, Seattle, WA 98101" -233352,Lightning Charging Cable,2,14.95,07/02/19 12:17,"340 Center St, San Francisco, CA 94016" -233353,Wired Headphones,1,11.99,07/09/19 17:57,"74 Maple St, Portland, ME 04101" -233354,USB-C Charging Cable,1,11.95,07/21/19 21:35,"631 Hill St, Boston, MA 02215" -233355,LG Dryer,1,600.0,07/08/19 21:11,"579 13th St, Atlanta, GA 30301" -233356,27in FHD Monitor,1,149.99,07/05/19 14:27,"224 Church St, Los Angeles, CA 90001" -233357,Apple Airpods Headphones,1,150,07/04/19 16:12,"492 Willow St, Los Angeles, CA 90001" -233358,Bose SoundSport Headphones,1,99.99,07/14/19 14:08,"905 Lincoln St, Los Angeles, CA 90001" -233359,Apple Airpods Headphones,1,150,07/28/19 17:51,"357 13th St, San Francisco, CA 94016" -233360,20in Monitor,1,109.99,07/21/19 15:14,"908 Chestnut St, New York City, NY 10001" -233361,LG Washing Machine,1,600.0,07/07/19 22:10,"434 14th St, Los Angeles, CA 90001" -233362,AAA Batteries (4-pack),1,2.99,07/25/19 17:53,"494 Jackson St, New York City, NY 10001" -233363,34in Ultrawide Monitor,1,379.99,07/04/19 09:50,"996 Pine St, New York City, NY 10001" -233364,20in Monitor,1,109.99,07/12/19 19:16,"249 Sunset St, San Francisco, CA 94016" -233365,USB-C Charging Cable,1,11.95,07/16/19 14:39,"181 South St, Portland, OR 97035" -233366,USB-C Charging Cable,1,11.95,07/06/19 07:26,"767 Park St, New York City, NY 10001" -233367,Wired Headphones,1,11.99,07/21/19 23:14,"428 Forest St, Los Angeles, CA 90001" -233368,iPhone,1,700,07/26/19 16:32,"386 Elm St, San Francisco, CA 94016" -233368,Lightning Charging Cable,1,14.95,07/26/19 16:32,"386 Elm St, San Francisco, CA 94016" -233369,USB-C Charging Cable,1,11.95,07/17/19 22:51,"106 Cherry St, San Francisco, CA 94016" -233370,Wired Headphones,1,11.99,07/14/19 17:28,"634 Meadow St, San Francisco, CA 94016" -233371,Flatscreen TV,1,300,07/07/19 20:04,"554 River St, Portland, OR 97035" -233372,27in 4K Gaming Monitor,1,389.99,07/24/19 02:01,"601 Highland St, Los Angeles, CA 90001" -233373,20in Monitor,1,109.99,07/26/19 21:28,"782 Park St, New York City, NY 10001" -233374,Google Phone,1,600,07/08/19 17:05,"36 Adams St, Los Angeles, CA 90001" -233374,USB-C Charging Cable,1,11.95,07/08/19 17:05,"36 Adams St, Los Angeles, CA 90001" -233375,USB-C Charging Cable,1,11.95,07/16/19 15:33,"946 2nd St, New York City, NY 10001" -233376,AAA Batteries (4-pack),1,2.99,07/25/19 20:36,"408 8th St, Boston, MA 02215" -233377,Flatscreen TV,1,300,07/15/19 22:45,"813 Jackson St, San Francisco, CA 94016" -233378,27in FHD Monitor,1,149.99,07/06/19 11:33,"540 Pine St, San Francisco, CA 94016" -233379,USB-C Charging Cable,1,11.95,07/26/19 11:45,"131 South St, New York City, NY 10001" -233380,Lightning Charging Cable,1,14.95,07/22/19 11:26,"636 Chestnut St, Atlanta, GA 30301" -233381,Google Phone,1,600,07/30/19 09:35,"690 10th St, New York City, NY 10001" -233382,AA Batteries (4-pack),1,3.84,07/07/19 21:46,"146 Jackson St, Boston, MA 02215" -233383,AA Batteries (4-pack),1,3.84,07/13/19 18:06,"966 Chestnut St, Portland, OR 97035" -233384,USB-C Charging Cable,1,11.95,07/23/19 06:51,"72 Cedar St, Atlanta, GA 30301" -233385,iPhone,1,700,07/21/19 20:54,"918 4th St, Boston, MA 02215" -233386,iPhone,1,700,07/27/19 09:02,"925 Park St, Austin, TX 73301" -233386,Lightning Charging Cable,1,14.95,07/27/19 09:02,"925 Park St, Austin, TX 73301" -233387,iPhone,1,700,07/13/19 10:15,"442 Hill St, New York City, NY 10001" -233388,Google Phone,1,600,07/12/19 12:08,"784 South St, San Francisco, CA 94016" -233389,AAA Batteries (4-pack),1,2.99,07/25/19 13:55,"330 Main St, Los Angeles, CA 90001" -233390,Bose SoundSport Headphones,1,99.99,07/01/19 08:38,"833 8th St, New York City, NY 10001" -233391,34in Ultrawide Monitor,1,379.99,07/21/19 13:50,"686 Madison St, Boston, MA 02215" -233392,USB-C Charging Cable,1,11.95,07/22/19 09:44,"224 Madison St, New York City, NY 10001" -233393,iPhone,1,700,07/07/19 13:41,"81 Adams St, New York City, NY 10001" -233394,iPhone,1,700,07/25/19 17:07,"967 South St, San Francisco, CA 94016" -233395,AA Batteries (4-pack),1,3.84,07/28/19 19:14,"248 Walnut St, Dallas, TX 75001" -233396,USB-C Charging Cable,1,11.95,07/13/19 05:25,"888 South St, New York City, NY 10001" -233397,27in 4K Gaming Monitor,1,389.99,07/12/19 23:58,"905 Cedar St, Atlanta, GA 30301" -233398,iPhone,1,700,07/08/19 13:18,"902 Park St, San Francisco, CA 94016" -233399,Apple Airpods Headphones,1,150,07/09/19 12:33,"339 11th St, New York City, NY 10001" -233400,iPhone,1,700,07/12/19 22:52,"782 2nd St, Boston, MA 02215" -233400,Lightning Charging Cable,1,14.95,07/12/19 22:52,"782 2nd St, Boston, MA 02215" -233401,USB-C Charging Cable,1,11.95,07/02/19 12:13,"771 5th St, Boston, MA 02215" -233402,Flatscreen TV,1,300,07/27/19 14:40,"889 7th St, San Francisco, CA 94016" -233403,USB-C Charging Cable,2,11.95,07/22/19 07:59,"245 1st St, San Francisco, CA 94016" -233404,AAA Batteries (4-pack),1,2.99,07/06/19 19:09,"684 Washington St, Austin, TX 73301" -233405,Lightning Charging Cable,1,14.95,07/30/19 16:29,"163 Forest St, San Francisco, CA 94016" -233406,ThinkPad Laptop,1,999.99,07/17/19 15:00,"998 1st St, Austin, TX 73301" -233407,Bose SoundSport Headphones,1,99.99,07/06/19 08:32,"399 Church St, Austin, TX 73301" -233408,Bose SoundSport Headphones,1,99.99,07/10/19 21:55,"844 Madison St, Portland, OR 97035" -233409,iPhone,1,700,07/16/19 10:16,"107 River St, Boston, MA 02215" -233410,Lightning Charging Cable,1,14.95,07/25/19 15:42,"531 Lake St, Portland, OR 97035" -233411,27in 4K Gaming Monitor,1,389.99,07/12/19 06:32,"216 North St, San Francisco, CA 94016" -233412,USB-C Charging Cable,1,11.95,07/20/19 20:09,"489 Adams St, San Francisco, CA 94016" -233413,AA Batteries (4-pack),1,3.84,07/13/19 10:49,"347 Pine St, Boston, MA 02215" -233414,Google Phone,1,600,07/14/19 18:39,"674 Church St, New York City, NY 10001" -233415,Apple Airpods Headphones,1,150,07/17/19 19:42,"802 4th St, New York City, NY 10001" -233416,AAA Batteries (4-pack),4,2.99,07/05/19 09:49,"265 Center St, Seattle, WA 98101" -233417,Wired Headphones,1,11.99,07/17/19 06:42,"268 Jackson St, Los Angeles, CA 90001" -233418,Lightning Charging Cable,1,14.95,07/28/19 11:40,"228 1st St, Dallas, TX 75001" -233419,AA Batteries (4-pack),1,3.84,07/18/19 08:21,"704 Cherry St, San Francisco, CA 94016" -233420,27in FHD Monitor,1,149.99,07/16/19 11:46,"366 14th St, San Francisco, CA 94016" -233421,USB-C Charging Cable,2,11.95,07/19/19 09:59,"69 Adams St, Boston, MA 02215" -233422,Apple Airpods Headphones,1,150,07/25/19 22:34,"701 North St, San Francisco, CA 94016" -233423,AA Batteries (4-pack),1,3.84,07/19/19 11:22,"982 Sunset St, New York City, NY 10001" -233424,Macbook Pro Laptop,1,1700,07/14/19 15:37,"670 North St, Dallas, TX 75001" -233425,iPhone,1,700,07/22/19 17:06,"669 Adams St, Dallas, TX 75001" -233425,Lightning Charging Cable,1,14.95,07/22/19 17:06,"669 Adams St, Dallas, TX 75001" -233426,Wired Headphones,1,11.99,07/07/19 08:48,"246 Highland St, Dallas, TX 75001" -233427,AA Batteries (4-pack),1,3.84,07/28/19 20:26,"142 Pine St, San Francisco, CA 94016" -233428,34in Ultrawide Monitor,1,379.99,07/22/19 20:44,"331 7th St, New York City, NY 10001" -233429,iPhone,1,700,07/01/19 10:45,"493 4th St, Los Angeles, CA 90001" -233430,Apple Airpods Headphones,1,150,07/19/19 03:19,"82 Maple St, San Francisco, CA 94016" -233431,Google Phone,1,600,07/29/19 23:24,"996 Main St, San Francisco, CA 94016" -233432,Apple Airpods Headphones,1,150,07/08/19 19:56,"999 4th St, Portland, OR 97035" -233433,AA Batteries (4-pack),2,3.84,07/09/19 08:54,"834 Main St, San Francisco, CA 94016" -233433,Apple Airpods Headphones,1,150,07/09/19 08:54,"834 Main St, San Francisco, CA 94016" -233434,Wired Headphones,1,11.99,07/27/19 08:34,"253 Hill St, Portland, ME 04101" -233435,AA Batteries (4-pack),1,3.84,07/03/19 07:50,"612 4th St, Los Angeles, CA 90001" -233436,AA Batteries (4-pack),2,3.84,07/06/19 13:09,"727 Johnson St, San Francisco, CA 94016" -233437,Lightning Charging Cable,1,14.95,07/10/19 10:06,"512 Hickory St, Atlanta, GA 30301" -233438,27in 4K Gaming Monitor,1,389.99,07/21/19 12:24,"392 Church St, San Francisco, CA 94016" -233439,Bose SoundSport Headphones,1,99.99,07/20/19 20:11,"234 Lincoln St, Dallas, TX 75001" -233440,USB-C Charging Cable,1,11.95,07/23/19 14:54,"759 Sunset St, Atlanta, GA 30301" -233441,Lightning Charging Cable,1,14.95,07/11/19 20:08,"185 5th St, Los Angeles, CA 90001" -233442,Lightning Charging Cable,2,14.95,07/11/19 15:57,"125 Jackson St, San Francisco, CA 94016" -233443,AA Batteries (4-pack),1,3.84,07/31/19 15:40,"963 11th St, Austin, TX 73301" -233444,Lightning Charging Cable,4,14.95,07/12/19 20:46,"740 Jefferson St, Boston, MA 02215" -233445,USB-C Charging Cable,1,11.95,07/04/19 07:19,"523 Spruce St, Dallas, TX 75001" -233446,AA Batteries (4-pack),1,3.84,07/09/19 19:20,"529 11th St, San Francisco, CA 94016" -233447,AAA Batteries (4-pack),1,2.99,07/07/19 21:27,"293 West St, San Francisco, CA 94016" -233448,Lightning Charging Cable,1,14.95,07/28/19 21:09,"147 6th St, San Francisco, CA 94016" -233449,LG Washing Machine,1,600.0,07/27/19 13:10,"777 Cedar St, New York City, NY 10001" -233450,iPhone,1,700,07/12/19 13:59,"693 8th St, Dallas, TX 75001" -233451,AA Batteries (4-pack),1,3.84,07/23/19 11:02,"39 Washington St, New York City, NY 10001" -233452,AAA Batteries (4-pack),1,2.99,07/04/19 21:22,"6 Washington St, Los Angeles, CA 90001" -233453,LG Dryer,1,600.0,07/19/19 23:05,"941 Maple St, Los Angeles, CA 90001" -233454,Lightning Charging Cable,1,14.95,07/20/19 11:13,"688 Jackson St, New York City, NY 10001" -233455,Lightning Charging Cable,1,14.95,07/23/19 13:06,"312 11th St, San Francisco, CA 94016" -233456,34in Ultrawide Monitor,1,379.99,07/16/19 00:03,"428 Sunset St, New York City, NY 10001" -233457,USB-C Charging Cable,1,11.95,07/04/19 17:56,"878 Hickory St, Portland, ME 04101" -233458,20in Monitor,1,109.99,07/30/19 01:51,"717 13th St, Atlanta, GA 30301" -233459,Flatscreen TV,1,300,07/04/19 16:45,"750 9th St, San Francisco, CA 94016" -233460,34in Ultrawide Monitor,1,379.99,07/18/19 10:58,"552 Spruce St, New York City, NY 10001" -233461,AAA Batteries (4-pack),1,2.99,07/29/19 11:31,"340 Chestnut St, New York City, NY 10001" -233462,34in Ultrawide Monitor,1,379.99,07/14/19 14:25,"756 Willow St, Portland, ME 04101" -233463,AA Batteries (4-pack),2,3.84,07/17/19 17:51,"663 Jackson St, San Francisco, CA 94016" -233464,Apple Airpods Headphones,1,150,07/11/19 11:05,"32 Wilson St, Atlanta, GA 30301" -233465,Wired Headphones,1,11.99,07/18/19 12:14,"869 10th St, Boston, MA 02215" -233466,27in 4K Gaming Monitor,1,389.99,07/05/19 22:08,"988 Walnut St, Los Angeles, CA 90001" -233467,AAA Batteries (4-pack),2,2.99,07/28/19 21:00,"871 Hill St, Los Angeles, CA 90001" -233468,Wired Headphones,2,11.99,07/03/19 14:46,"4 Ridge St, Dallas, TX 75001" -233468,AA Batteries (4-pack),1,3.84,07/03/19 14:46,"4 Ridge St, Dallas, TX 75001" -233469,AA Batteries (4-pack),1,3.84,07/26/19 09:58,"228 Lakeview St, Los Angeles, CA 90001" -233470,AAA Batteries (4-pack),1,2.99,07/07/19 16:20,"40 Jefferson St, Boston, MA 02215" -233471,Apple Airpods Headphones,1,150,07/13/19 11:02,"726 Lakeview St, Portland, OR 97035" -233472,USB-C Charging Cable,1,11.95,07/27/19 20:32,"510 Hill St, New York City, NY 10001" -233473,Wired Headphones,1,11.99,07/30/19 10:45,"756 Jefferson St, San Francisco, CA 94016" -233474,Apple Airpods Headphones,1,150,07/01/19 13:55,"605 1st St, Atlanta, GA 30301" -233475,USB-C Charging Cable,1,11.95,07/16/19 01:12,"887 4th St, New York City, NY 10001" -233476,34in Ultrawide Monitor,1,379.99,07/17/19 18:10,"236 West St, Portland, OR 97035" -233477,27in FHD Monitor,1,149.99,07/06/19 19:37,"538 12th St, Seattle, WA 98101" -233478,Macbook Pro Laptop,1,1700,07/12/19 18:26,"579 Forest St, Los Angeles, CA 90001" -233479,USB-C Charging Cable,1,11.95,07/10/19 12:49,"98 Pine St, Atlanta, GA 30301" -233480,Bose SoundSport Headphones,1,99.99,07/25/19 13:39,"876 Hill St, Boston, MA 02215" -233481,Apple Airpods Headphones,1,150,07/22/19 15:56,"288 6th St, San Francisco, CA 94016" -233482,Apple Airpods Headphones,1,150,07/28/19 07:09,"411 South St, San Francisco, CA 94016" -233483,Apple Airpods Headphones,1,150,07/02/19 18:37,"639 7th St, Dallas, TX 75001" -233484,Macbook Pro Laptop,1,1700,07/25/19 17:34,"7 11th St, Seattle, WA 98101" -233485,AA Batteries (4-pack),1,3.84,07/21/19 13:03,"241 Adams St, Los Angeles, CA 90001" -233486,Lightning Charging Cable,1,14.95,07/21/19 10:05,"94 Dogwood St, Los Angeles, CA 90001" -233487,Apple Airpods Headphones,1,150,07/08/19 16:20,"838 Jefferson St, San Francisco, CA 94016" -233488,27in FHD Monitor,1,149.99,07/14/19 18:41,"326 Center St, San Francisco, CA 94016" -233489,AAA Batteries (4-pack),1,2.99,07/21/19 17:40,"251 Wilson St, New York City, NY 10001" -233490,Macbook Pro Laptop,1,1700,07/08/19 12:10,"425 Lake St, New York City, NY 10001" -233491,34in Ultrawide Monitor,1,379.99,07/02/19 19:18,"343 Pine St, Los Angeles, CA 90001" -233492,Wired Headphones,1,11.99,07/16/19 10:24,"197 10th St, San Francisco, CA 94016" -233493,Flatscreen TV,1,300,07/03/19 11:38,"336 Madison St, San Francisco, CA 94016" -233494,USB-C Charging Cable,1,11.95,07/13/19 18:21,"216 8th St, Boston, MA 02215" -233495,AAA Batteries (4-pack),1,2.99,07/17/19 09:10,"56 Chestnut St, Portland, ME 04101" -233496,Apple Airpods Headphones,1,150,07/23/19 10:41,"687 Dogwood St, New York City, NY 10001" -233497,27in FHD Monitor,1,149.99,07/10/19 19:30,"94 Pine St, Atlanta, GA 30301" -233498,AAA Batteries (4-pack),1,2.99,07/19/19 12:19,"216 13th St, Dallas, TX 75001" -233499,AA Batteries (4-pack),1,3.84,07/08/19 19:43,"660 South St, San Francisco, CA 94016" -233500,USB-C Charging Cable,1,11.95,07/08/19 14:28,"848 9th St, Boston, MA 02215" -233501,Bose SoundSport Headphones,1,99.99,07/27/19 17:42,"23 10th St, Seattle, WA 98101" -233502,AAA Batteries (4-pack),2,2.99,07/12/19 22:01,"771 1st St, Boston, MA 02215" -233503,Lightning Charging Cable,1,14.95,07/18/19 23:49,"665 Johnson St, Boston, MA 02215" -233504,27in FHD Monitor,1,149.99,07/29/19 17:50,"259 6th St, Los Angeles, CA 90001" -233505,Lightning Charging Cable,2,14.95,07/30/19 14:33,"253 Lakeview St, Boston, MA 02215" -233506,27in 4K Gaming Monitor,1,389.99,07/04/19 12:12,"370 Johnson St, San Francisco, CA 94016" -233507,Wired Headphones,1,11.99,07/02/19 10:56,"561 West St, San Francisco, CA 94016" -233508,AAA Batteries (4-pack),1,2.99,07/25/19 21:18,"828 Sunset St, San Francisco, CA 94016" -233509,Wired Headphones,1,11.99,07/15/19 13:31,"630 7th St, San Francisco, CA 94016" -233510,AA Batteries (4-pack),1,3.84,07/25/19 03:18,"223 Cedar St, San Francisco, CA 94016" -233511,Bose SoundSport Headphones,1,99.99,07/10/19 06:54,"892 12th St, New York City, NY 10001" -233512,Wired Headphones,1,11.99,07/18/19 06:43,"905 Chestnut St, Boston, MA 02215" -233513,USB-C Charging Cable,1,11.95,07/31/19 16:58,"999 Chestnut St, Boston, MA 02215" -233514,Bose SoundSport Headphones,1,99.99,07/01/19 21:17,"234 Wilson St, Los Angeles, CA 90001" -233515,Apple Airpods Headphones,1,150,07/20/19 16:32,"69 Pine St, New York City, NY 10001" -233516,Bose SoundSport Headphones,1,99.99,07/03/19 18:24,"21 Lakeview St, New York City, NY 10001" -233517,Bose SoundSport Headphones,1,99.99,07/07/19 22:50,"981 Cedar St, New York City, NY 10001" -233518,Macbook Pro Laptop,1,1700,07/29/19 15:59,"233 Meadow St, San Francisco, CA 94016" -233519,27in 4K Gaming Monitor,1,389.99,07/27/19 21:48,"385 8th St, Boston, MA 02215" -233520,USB-C Charging Cable,1,11.95,07/11/19 14:58,"448 Elm St, Atlanta, GA 30301" -233521,Wired Headphones,1,11.99,07/17/19 13:16,"259 Cedar St, Atlanta, GA 30301" -233522,Wired Headphones,1,11.99,07/26/19 07:35,"745 Willow St, Portland, OR 97035" -233523,AAA Batteries (4-pack),1,2.99,07/27/19 16:19,"870 Ridge St, Boston, MA 02215" -233524,Vareebadd Phone,1,400,07/14/19 15:20,"550 8th St, San Francisco, CA 94016" -233525,USB-C Charging Cable,1,11.95,07/08/19 00:40,"802 River St, Atlanta, GA 30301" -233526,USB-C Charging Cable,1,11.95,07/11/19 00:33,"10 Hickory St, Los Angeles, CA 90001" -233527,34in Ultrawide Monitor,1,379.99,07/03/19 10:38,"804 Main St, Los Angeles, CA 90001" -233528,27in FHD Monitor,1,149.99,07/04/19 18:52,"960 Highland St, San Francisco, CA 94016" -233529,27in 4K Gaming Monitor,1,389.99,07/03/19 10:47,"839 Main St, Atlanta, GA 30301" -233530,Lightning Charging Cable,1,14.95,07/15/19 19:23,"862 Park St, San Francisco, CA 94016" -233531,AAA Batteries (4-pack),2,2.99,07/27/19 15:30,"332 Cedar St, Boston, MA 02215" -233532,AA Batteries (4-pack),2,3.84,07/22/19 08:55,"52 Dogwood St, New York City, NY 10001" -233533,Google Phone,1,600,07/08/19 12:24,"546 Church St, New York City, NY 10001" -233534,USB-C Charging Cable,1,11.95,07/31/19 14:02,"206 Lakeview St, Dallas, TX 75001" -233535,Wired Headphones,3,11.99,07/31/19 03:08,"735 Forest St, Boston, MA 02215" -233536,ThinkPad Laptop,1,999.99,07/18/19 12:24,"653 Forest St, San Francisco, CA 94016" -233537,AAA Batteries (4-pack),1,2.99,07/27/19 03:07,"203 Park St, Portland, OR 97035" -233538,Bose SoundSport Headphones,1,99.99,07/04/19 18:04,"902 7th St, Dallas, TX 75001" -233539,27in FHD Monitor,1,149.99,07/23/19 13:13,"452 Highland St, Boston, MA 02215" -233540,USB-C Charging Cable,1,11.95,07/01/19 10:33,"941 Lincoln St, Los Angeles, CA 90001" -233541,34in Ultrawide Monitor,1,379.99,07/14/19 15:35,"359 2nd St, Los Angeles, CA 90001" -233542,USB-C Charging Cable,1,11.95,07/16/19 18:27,"504 Maple St, Boston, MA 02215" -233543,Lightning Charging Cable,1,14.95,07/27/19 13:16,"757 Forest St, San Francisco, CA 94016" -233544,AA Batteries (4-pack),1,3.84,07/20/19 18:46,"793 Jackson St, San Francisco, CA 94016" -233545,Bose SoundSport Headphones,1,99.99,07/18/19 10:41,"970 Cherry St, San Francisco, CA 94016" -233546,Bose SoundSport Headphones,1,99.99,07/21/19 22:32,"576 Church St, Boston, MA 02215" -233547,USB-C Charging Cable,1,11.95,07/12/19 09:36,"948 Pine St, Boston, MA 02215" -233548,Google Phone,1,600,07/30/19 23:04,"743 5th St, Dallas, TX 75001" -233549,Google Phone,1,600,07/13/19 21:32,"596 Ridge St, San Francisco, CA 94016" -233550,20in Monitor,1,109.99,07/26/19 11:39,"35 Jackson St, Los Angeles, CA 90001" -233551,AA Batteries (4-pack),3,3.84,07/09/19 10:44,"923 Lakeview St, San Francisco, CA 94016" -233552,USB-C Charging Cable,1,11.95,07/04/19 10:40,"287 Johnson St, Los Angeles, CA 90001" -233553,Macbook Pro Laptop,1,1700,07/27/19 10:18,"456 Spruce St, Austin, TX 73301" -233554,Lightning Charging Cable,1,14.95,07/14/19 13:51,"884 Elm St, Los Angeles, CA 90001" -233555,AA Batteries (4-pack),1,3.84,07/03/19 20:26,"418 13th St, Boston, MA 02215" -233556,27in FHD Monitor,1,149.99,07/10/19 01:55,"569 Lake St, Atlanta, GA 30301" -233557,AA Batteries (4-pack),1,3.84,07/24/19 19:32,"278 Church St, Atlanta, GA 30301" -233558,AAA Batteries (4-pack),1,2.99,07/16/19 20:40,"739 Spruce St, Los Angeles, CA 90001" -233559,27in 4K Gaming Monitor,1,389.99,07/08/19 14:57,"499 Adams St, Seattle, WA 98101" -233559,Apple Airpods Headphones,1,150,07/08/19 14:57,"499 Adams St, Seattle, WA 98101" -233560,Apple Airpods Headphones,1,150,07/15/19 00:14,"330 Elm St, Boston, MA 02215" -233561,USB-C Charging Cable,1,11.95,07/30/19 10:03,"487 Church St, Los Angeles, CA 90001" -233562,AAA Batteries (4-pack),2,2.99,07/15/19 09:41,"350 1st St, Los Angeles, CA 90001" -233563,Macbook Pro Laptop,1,1700,07/03/19 12:30,"654 Lincoln St, San Francisco, CA 94016" -233564,AAA Batteries (4-pack),2,2.99,07/26/19 12:19,"904 Main St, New York City, NY 10001" -233565,ThinkPad Laptop,1,999.99,07/14/19 06:07,"303 South St, San Francisco, CA 94016" -233566,iPhone,1,700,07/24/19 10:14,"769 5th St, San Francisco, CA 94016" -233567,AAA Batteries (4-pack),2,2.99,07/20/19 21:13,"84 5th St, San Francisco, CA 94016" -233568,USB-C Charging Cable,1,11.95,07/19/19 18:41,"760 11th St, Portland, OR 97035" -233569,Lightning Charging Cable,1,14.95,07/03/19 12:23,"754 14th St, San Francisco, CA 94016" -233570,AAA Batteries (4-pack),1,2.99,07/04/19 21:13,"542 Lake St, Boston, MA 02215" -233571,Bose SoundSport Headphones,1,99.99,07/28/19 16:11,"398 Forest St, San Francisco, CA 94016" -233572,AAA Batteries (4-pack),2,2.99,07/29/19 15:51,"212 Dogwood St, Los Angeles, CA 90001" -233573,AAA Batteries (4-pack),1,2.99,07/23/19 20:50,"220 North St, San Francisco, CA 94016" -233574,AA Batteries (4-pack),1,3.84,07/07/19 20:08,"987 10th St, Atlanta, GA 30301" -233575,LG Washing Machine,1,600.0,07/08/19 16:57,"582 Highland St, San Francisco, CA 94016" -233576,ThinkPad Laptop,1,999.99,07/28/19 16:35,"534 5th St, San Francisco, CA 94016" -233577,AA Batteries (4-pack),1,3.84,07/08/19 20:52,"290 5th St, Seattle, WA 98101" -233578,USB-C Charging Cable,1,11.95,07/05/19 11:24,"583 9th St, Los Angeles, CA 90001" -233578,AA Batteries (4-pack),1,3.84,07/05/19 11:24,"583 9th St, Los Angeles, CA 90001" -233579,iPhone,1,700,07/01/19 10:20,"173 Meadow St, Portland, OR 97035" -233580,Apple Airpods Headphones,1,150,07/27/19 22:11,"731 8th St, Los Angeles, CA 90001" -233581,Wired Headphones,1,11.99,07/03/19 18:33,"484 1st St, Atlanta, GA 30301" -233582,Lightning Charging Cable,1,14.95,07/02/19 21:07,"700 Main St, Seattle, WA 98101" -233583,Wired Headphones,1,11.99,07/13/19 06:46,"398 10th St, Portland, OR 97035" -233584,iPhone,1,700,07/05/19 14:17,"577 Center St, Austin, TX 73301" -233584,Lightning Charging Cable,1,14.95,07/05/19 14:17,"577 Center St, Austin, TX 73301" -233585,Google Phone,1,600,07/10/19 22:09,"546 Hickory St, San Francisco, CA 94016" -233586,Wired Headphones,1,11.99,07/08/19 19:52,"667 13th St, New York City, NY 10001" -233587,Apple Airpods Headphones,1,150,07/29/19 14:08,"212 Maple St, Atlanta, GA 30301" -233588,Google Phone,1,600,07/17/19 11:06,"316 North St, Los Angeles, CA 90001" -233589,iPhone,1,700,07/13/19 21:12,"717 Center St, Dallas, TX 75001" -233590,Lightning Charging Cable,1,14.95,07/08/19 09:58,"44 11th St, Dallas, TX 75001" -233591,Bose SoundSport Headphones,1,99.99,07/18/19 19:40,"207 Willow St, New York City, NY 10001" -233592,Google Phone,1,600,07/08/19 00:23,"909 1st St, Los Angeles, CA 90001" -233593,27in FHD Monitor,1,149.99,07/24/19 21:07,"749 Chestnut St, Boston, MA 02215" -233594,AA Batteries (4-pack),1,3.84,07/20/19 10:19,"46 Pine St, New York City, NY 10001" -233595,20in Monitor,1,109.99,07/27/19 20:35,"658 Lake St, Los Angeles, CA 90001" -233596,USB-C Charging Cable,1,11.95,07/23/19 07:37,"618 Willow St, New York City, NY 10001" -233597,AAA Batteries (4-pack),1,2.99,07/27/19 19:43,"984 Jefferson St, San Francisco, CA 94016" -233598,AAA Batteries (4-pack),3,2.99,07/08/19 11:21,"24 Meadow St, Boston, MA 02215" -233599,Apple Airpods Headphones,1,150,07/23/19 22:14,"77 Lincoln St, Portland, OR 97035" -233600,Apple Airpods Headphones,1,150,07/02/19 10:31,"18 Dogwood St, Seattle, WA 98101" -233601,AAA Batteries (4-pack),1,2.99,07/10/19 10:11,"548 Elm St, Portland, OR 97035" -233602,USB-C Charging Cable,2,11.95,07/03/19 12:41,"687 6th St, San Francisco, CA 94016" -233603,USB-C Charging Cable,1,11.95,07/29/19 19:08,"228 West St, Seattle, WA 98101" -233604,USB-C Charging Cable,1,11.95,07/21/19 14:29,"557 Hill St, Seattle, WA 98101" -233605,Apple Airpods Headphones,1,150,07/18/19 09:44,"88 Washington St, Dallas, TX 75001" -233606,Vareebadd Phone,1,400,07/15/19 23:12,"918 Johnson St, Boston, MA 02215" -233607,Wired Headphones,1,11.99,07/01/19 13:06,"557 Hill St, San Francisco, CA 94016" -233608,USB-C Charging Cable,2,11.95,07/19/19 12:48,"998 10th St, San Francisco, CA 94016" -233609,Bose SoundSport Headphones,1,99.99,07/13/19 23:38,"462 Elm St, New York City, NY 10001" -233610,Lightning Charging Cable,1,14.95,07/21/19 14:59,"818 8th St, San Francisco, CA 94016" -233611,ThinkPad Laptop,1,999.99,07/02/19 12:07,"159 Lakeview St, Seattle, WA 98101" -233612,AAA Batteries (4-pack),2,2.99,07/13/19 12:19,"688 14th St, Los Angeles, CA 90001" -233613,AA Batteries (4-pack),1,3.84,07/24/19 10:14,"103 Main St, New York City, NY 10001" -233614,USB-C Charging Cable,1,11.95,07/16/19 22:38,"108 Dogwood St, San Francisco, CA 94016" -233615,AAA Batteries (4-pack),1,2.99,07/04/19 18:27,"294 8th St, San Francisco, CA 94016" -233616,AAA Batteries (4-pack),3,2.99,07/06/19 11:21,"988 10th St, Los Angeles, CA 90001" -233617,27in FHD Monitor,1,149.99,07/16/19 17:04,"605 Walnut St, San Francisco, CA 94016" -233618,20in Monitor,1,109.99,07/23/19 12:10,"294 Sunset St, Atlanta, GA 30301" -233619,Lightning Charging Cable,1,14.95,07/15/19 18:47,"290 Lake St, New York City, NY 10001" -233620,Bose SoundSport Headphones,1,99.99,07/06/19 17:01,"347 Highland St, Austin, TX 73301" -233621,Bose SoundSport Headphones,1,99.99,07/04/19 08:08,"662 Johnson St, New York City, NY 10001" -233622,Lightning Charging Cable,1,14.95,07/31/19 18:06,"248 10th St, Dallas, TX 75001" -233623,27in 4K Gaming Monitor,1,389.99,07/31/19 06:26,"208 Hill St, San Francisco, CA 94016" -233624,AA Batteries (4-pack),1,3.84,07/13/19 20:54,"951 Washington St, San Francisco, CA 94016" -233625,AA Batteries (4-pack),1,3.84,07/25/19 14:25,"623 Jackson St, Los Angeles, CA 90001" -233626,Wired Headphones,1,11.99,07/09/19 10:31,"712 Wilson St, Los Angeles, CA 90001" -233627,Wired Headphones,2,11.99,07/15/19 14:44,"833 Wilson St, Los Angeles, CA 90001" -233628,20in Monitor,1,109.99,07/07/19 01:56,"976 Spruce St, San Francisco, CA 94016" -233629,34in Ultrawide Monitor,1,379.99,07/10/19 11:57,"332 Center St, New York City, NY 10001" -233630,Macbook Pro Laptop,1,1700,07/09/19 00:44,"135 7th St, San Francisco, CA 94016" -233631,Apple Airpods Headphones,1,150,07/25/19 11:12,"233 Jackson St, Seattle, WA 98101" -233632,Lightning Charging Cable,1,14.95,07/15/19 12:46,"265 Church St, Los Angeles, CA 90001" -233633,Apple Airpods Headphones,1,150,07/27/19 22:41,"482 Forest St, Portland, OR 97035" -233634,Wired Headphones,1,11.99,07/22/19 10:35,"503 Main St, New York City, NY 10001" -233635,iPhone,1,700,07/24/19 01:50,"912 14th St, Boston, MA 02215" -233636,Wired Headphones,1,11.99,07/20/19 17:24,"113 Lake St, New York City, NY 10001" -233637,iPhone,1,700,07/28/19 12:14,"46 Elm St, Los Angeles, CA 90001" -233638,Lightning Charging Cable,1,14.95,07/28/19 12:30,"817 8th St, San Francisco, CA 94016" -233639,AA Batteries (4-pack),1,3.84,07/13/19 18:07,"459 Lincoln St, Boston, MA 02215" -233640,Bose SoundSport Headphones,1,99.99,07/08/19 09:53,"486 Lake St, Atlanta, GA 30301" -233641,Lightning Charging Cable,1,14.95,07/17/19 08:00,"2 Meadow St, New York City, NY 10001" -233642,Lightning Charging Cable,1,14.95,07/24/19 23:06,"162 South St, Seattle, WA 98101" -233643,Bose SoundSport Headphones,1,99.99,07/29/19 19:32,"724 7th St, Los Angeles, CA 90001" -233644,34in Ultrawide Monitor,1,379.99,07/22/19 08:21,"470 Park St, Boston, MA 02215" -233645,USB-C Charging Cable,1,11.95,07/03/19 15:54,"918 11th St, San Francisco, CA 94016" -233646,Lightning Charging Cable,1,14.95,07/17/19 16:27,"919 Adams St, San Francisco, CA 94016" -233647,Wired Headphones,1,11.99,07/12/19 10:04,"61 Highland St, Atlanta, GA 30301" -233648,Bose SoundSport Headphones,1,99.99,07/26/19 22:52,"667 Hill St, San Francisco, CA 94016" -233649,Lightning Charging Cable,1,14.95,07/13/19 22:07,"141 Wilson St, San Francisco, CA 94016" -233650,27in FHD Monitor,1,149.99,07/29/19 13:57,"966 Main St, Boston, MA 02215" -233651,Flatscreen TV,1,300,07/10/19 12:39,"527 Washington St, San Francisco, CA 94016" -233652,Wired Headphones,1,11.99,07/18/19 21:28,"393 Ridge St, San Francisco, CA 94016" -233653,Lightning Charging Cable,1,14.95,07/04/19 09:35,"878 West St, Dallas, TX 75001" -233654,USB-C Charging Cable,1,11.95,07/20/19 07:14,"241 Walnut St, Austin, TX 73301" -233655,Apple Airpods Headphones,1,150,07/26/19 20:59,"773 Jackson St, New York City, NY 10001" -233656,ThinkPad Laptop,1,999.99,07/10/19 12:38,"695 Hill St, San Francisco, CA 94016" -233657,Macbook Pro Laptop,1,1700,07/27/19 15:45,"893 Hickory St, Portland, OR 97035" -233658,iPhone,1,700,07/09/19 16:37,"238 12th St, San Francisco, CA 94016" -233659,Bose SoundSport Headphones,1,99.99,07/05/19 10:18,"214 North St, Portland, ME 04101" -233659,USB-C Charging Cable,1,11.95,07/05/19 10:18,"214 North St, Portland, ME 04101" -233660,27in FHD Monitor,1,149.99,07/28/19 11:27,"474 Center St, Dallas, TX 75001" -233661,Lightning Charging Cable,1,14.95,07/22/19 11:06,"294 Hickory St, Atlanta, GA 30301" -233662,AAA Batteries (4-pack),3,2.99,07/01/19 17:09,"25 Johnson St, Dallas, TX 75001" -233663,20in Monitor,1,109.99,07/07/19 10:14,"169 Forest St, San Francisco, CA 94016" -233664,AA Batteries (4-pack),3,3.84,07/03/19 15:21,"230 Spruce St, New York City, NY 10001" -233664,Apple Airpods Headphones,1,150,07/03/19 15:21,"230 Spruce St, New York City, NY 10001" -233665,AAA Batteries (4-pack),1,2.99,07/27/19 11:46,"837 4th St, Austin, TX 73301" -233666,Wired Headphones,1,11.99,07/15/19 19:53,"358 South St, Portland, OR 97035" -233667,Wired Headphones,1,11.99,07/30/19 01:35,"340 Washington St, Dallas, TX 75001" -233668,Wired Headphones,1,11.99,07/05/19 12:19,"703 Church St, Los Angeles, CA 90001" -233669,Bose SoundSport Headphones,1,99.99,07/19/19 19:19,"186 Lake St, Los Angeles, CA 90001" -233670,iPhone,1,700,07/22/19 23:30,"331 Washington St, Boston, MA 02215" -233670,Wired Headphones,1,11.99,07/22/19 23:30,"331 Washington St, Boston, MA 02215" -233671,27in 4K Gaming Monitor,1,389.99,07/09/19 21:59,"682 Wilson St, Austin, TX 73301" -233672,AAA Batteries (4-pack),2,2.99,07/18/19 17:17,"746 13th St, Los Angeles, CA 90001" -233673,Wired Headphones,1,11.99,07/29/19 21:30,"348 Wilson St, San Francisco, CA 94016" -233674,Lightning Charging Cable,1,14.95,07/17/19 08:53,"967 Park St, Boston, MA 02215" -233675,Flatscreen TV,1,300,07/31/19 12:40,"191 River St, San Francisco, CA 94016" -233676,AAA Batteries (4-pack),2,2.99,07/04/19 13:33,"558 Church St, New York City, NY 10001" -233677,AAA Batteries (4-pack),1,2.99,07/20/19 23:18,"424 Dogwood St, Atlanta, GA 30301" -233678,Google Phone,1,600,07/07/19 22:56,"949 Lincoln St, Portland, OR 97035" -233679,AA Batteries (4-pack),1,3.84,07/29/19 23:09,"505 9th St, San Francisco, CA 94016" -233680,iPhone,1,700,07/14/19 12:51,"288 Park St, San Francisco, CA 94016" -233680,Lightning Charging Cable,1,14.95,07/14/19 12:51,"288 Park St, San Francisco, CA 94016" -233681,USB-C Charging Cable,1,11.95,07/03/19 12:31,"522 7th St, Dallas, TX 75001" -233682,Apple Airpods Headphones,1,150,07/04/19 10:38,"700 Sunset St, San Francisco, CA 94016" -233683,Lightning Charging Cable,1,14.95,07/02/19 20:59,"930 14th St, Portland, OR 97035" -233684,Lightning Charging Cable,1,14.95,07/11/19 23:59,"620 Jefferson St, San Francisco, CA 94016" -233685,27in 4K Gaming Monitor,1,389.99,07/07/19 10:07,"416 1st St, New York City, NY 10001" -233686,AAA Batteries (4-pack),1,2.99,07/01/19 06:31,"372 Jackson St, Boston, MA 02215" -233687,Apple Airpods Headphones,1,150,07/31/19 23:38,"354 9th St, Boston, MA 02215" -233688,Apple Airpods Headphones,1,150,07/02/19 12:37,"881 Pine St, San Francisco, CA 94016" -233689,Flatscreen TV,1,300,07/09/19 10:37,"623 Spruce St, Boston, MA 02215" -233690,AAA Batteries (4-pack),2,2.99,07/28/19 09:54,"549 Hill St, Atlanta, GA 30301" -233691,iPhone,1,700,07/13/19 23:46,"10 Johnson St, Los Angeles, CA 90001" -233692,Wired Headphones,1,11.99,07/07/19 12:31,"607 6th St, Boston, MA 02215" -233693,AAA Batteries (4-pack),1,2.99,07/03/19 09:31,"573 Chestnut St, Austin, TX 73301" -233694,Apple Airpods Headphones,1,150,07/10/19 16:03,"87 2nd St, Atlanta, GA 30301" -233695,USB-C Charging Cable,1,11.95,07/11/19 18:30,"999 Dogwood St, Portland, OR 97035" -233696,AA Batteries (4-pack),1,3.84,07/26/19 21:18,"266 13th St, Los Angeles, CA 90001" -233697,Wired Headphones,1,11.99,07/01/19 20:15,"462 Washington St, New York City, NY 10001" -233698,Apple Airpods Headphones,1,150,07/26/19 21:29,"934 Spruce St, San Francisco, CA 94016" -233699,AA Batteries (4-pack),1,3.84,07/24/19 16:52,"398 9th St, Los Angeles, CA 90001" -233700,Lightning Charging Cable,1,14.95,07/21/19 12:27,"364 12th St, Los Angeles, CA 90001" -233701,AA Batteries (4-pack),1,3.84,07/24/19 17:50,"731 Forest St, San Francisco, CA 94016" -233702,Lightning Charging Cable,1,14.95,07/19/19 18:57,"797 Maple St, San Francisco, CA 94016" -233702,AAA Batteries (4-pack),1,2.99,07/19/19 18:57,"797 Maple St, San Francisco, CA 94016" -233703,Bose SoundSport Headphones,1,99.99,07/16/19 15:11,"525 Madison St, New York City, NY 10001" -233704,AA Batteries (4-pack),1,3.84,07/26/19 22:47,"950 Spruce St, Los Angeles, CA 90001" -233705,34in Ultrawide Monitor,1,379.99,07/05/19 06:07,"518 Dogwood St, Seattle, WA 98101" -233706,AA Batteries (4-pack),1,3.84,07/20/19 18:26,"314 Park St, San Francisco, CA 94016" -233707,Apple Airpods Headphones,1,150,07/18/19 19:06,"183 Hill St, Los Angeles, CA 90001" -233708,Apple Airpods Headphones,1,150,07/29/19 06:03,"930 Willow St, Los Angeles, CA 90001" -233709,Google Phone,1,600,07/02/19 12:53,"422 13th St, Dallas, TX 75001" -233710,Apple Airpods Headphones,1,150,07/01/19 14:10,"385 9th St, Seattle, WA 98101" -233711,27in 4K Gaming Monitor,1,389.99,07/02/19 14:23,"441 Church St, San Francisco, CA 94016" -233712,USB-C Charging Cable,1,11.95,07/14/19 18:12,"832 Lincoln St, Portland, OR 97035" -233713,Flatscreen TV,2,300,07/11/19 13:19,"505 6th St, New York City, NY 10001" -233714,Wired Headphones,1,11.99,07/02/19 09:51,"244 Main St, San Francisco, CA 94016" -233715,AAA Batteries (4-pack),1,2.99,07/17/19 06:16,"521 Main St, Boston, MA 02215" -233716,Lightning Charging Cable,1,14.95,07/12/19 22:38,"930 River St, Portland, OR 97035" -233717,AA Batteries (4-pack),1,3.84,07/30/19 10:05,"114 8th St, New York City, NY 10001" -233718,AA Batteries (4-pack),2,3.84,07/30/19 01:22,"469 Adams St, San Francisco, CA 94016" -233719,Wired Headphones,1,11.99,07/08/19 05:57,"648 South St, Los Angeles, CA 90001" -233720,Bose SoundSport Headphones,1,99.99,07/26/19 17:02,"455 Jackson St, San Francisco, CA 94016" -233721,Google Phone,1,600,07/29/19 13:24,"249 6th St, Austin, TX 73301" -233722,Bose SoundSport Headphones,1,99.99,07/07/19 12:17,"55 Pine St, Dallas, TX 75001" -233723,20in Monitor,1,109.99,07/16/19 14:56,"339 6th St, San Francisco, CA 94016" -233724,Lightning Charging Cable,1,14.95,07/30/19 22:23,"72 14th St, San Francisco, CA 94016" -233725,Wired Headphones,1,11.99,07/02/19 22:50,"16 14th St, Seattle, WA 98101" -233726,AA Batteries (4-pack),1,3.84,07/08/19 00:00,"247 9th St, San Francisco, CA 94016" -233727,Wired Headphones,1,11.99,07/21/19 18:46,"788 Dogwood St, New York City, NY 10001" -233728,USB-C Charging Cable,1,11.95,07/21/19 16:02,"909 10th St, Austin, TX 73301" -233729,iPhone,1,700,07/09/19 12:46,"402 4th St, San Francisco, CA 94016" -233730,iPhone,1,700,07/19/19 13:02,"213 Church St, Los Angeles, CA 90001" -233731,Lightning Charging Cable,1,14.95,07/19/19 15:42,"326 Highland St, New York City, NY 10001" -233732,27in FHD Monitor,1,149.99,07/24/19 10:07,"348 Dogwood St, New York City, NY 10001" -233733,Macbook Pro Laptop,1,1700,07/30/19 13:51,"586 Spruce St, Dallas, TX 75001" -233734,Google Phone,1,600,07/11/19 20:29,"433 Cedar St, Seattle, WA 98101" -233735,Google Phone,1,600,07/26/19 13:45,"464 Sunset St, San Francisco, CA 94016" -233736,LG Dryer,1,600.0,07/10/19 03:06,"192 Washington St, Dallas, TX 75001" -233737,Lightning Charging Cable,1,14.95,07/03/19 11:12,"379 12th St, New York City, NY 10001" -233738,27in 4K Gaming Monitor,1,389.99,07/06/19 15:30,"541 12th St, Los Angeles, CA 90001" -233739,Apple Airpods Headphones,1,150,07/22/19 14:34,"653 13th St, San Francisco, CA 94016" -233740,Lightning Charging Cable,1,14.95,07/03/19 13:25,"866 13th St, Boston, MA 02215" -233741,iPhone,1,700,07/29/19 18:01,"16 Elm St, Seattle, WA 98101" -233742,iPhone,1,700,07/03/19 10:14,"942 Park St, Atlanta, GA 30301" -233743,Lightning Charging Cable,1,14.95,07/12/19 13:10,"89 Sunset St, Boston, MA 02215" -233744,Macbook Pro Laptop,1,1700,07/27/19 11:12,"976 13th St, Seattle, WA 98101" -233745,Wired Headphones,1,11.99,07/28/19 20:27,"145 Ridge St, Los Angeles, CA 90001" -233746,iPhone,1,700,07/07/19 16:11,"526 Spruce St, San Francisco, CA 94016" -233746,Wired Headphones,1,11.99,07/07/19 16:11,"526 Spruce St, San Francisco, CA 94016" -233747,Apple Airpods Headphones,1,150,07/09/19 11:28,"139 Chestnut St, San Francisco, CA 94016" -233748,AA Batteries (4-pack),1,3.84,07/08/19 22:04,"451 Park St, Los Angeles, CA 90001" -233749,ThinkPad Laptop,1,999.99,07/29/19 13:59,"975 Lincoln St, Portland, OR 97035" -233750,Wired Headphones,1,11.99,07/28/19 12:21,"247 Chestnut St, San Francisco, CA 94016" -233751,USB-C Charging Cable,1,11.95,07/09/19 14:35,"137 13th St, Boston, MA 02215" -233752,AA Batteries (4-pack),2,3.84,07/20/19 12:14,"57 Hickory St, Los Angeles, CA 90001" -233753,Apple Airpods Headphones,1,150,07/15/19 19:24,"7 River St, San Francisco, CA 94016" -233754,Macbook Pro Laptop,1,1700,07/06/19 09:24,"525 North St, Austin, TX 73301" -233755,USB-C Charging Cable,1,11.95,07/17/19 05:38,"622 Jefferson St, Boston, MA 02215" -233756,Wired Headphones,1,11.99,07/25/19 09:59,"879 Lake St, Atlanta, GA 30301" -233757,27in 4K Gaming Monitor,1,389.99,07/02/19 11:28,"206 Lake St, Portland, OR 97035" -233758,Lightning Charging Cable,1,14.95,07/12/19 19:57,"321 Sunset St, Atlanta, GA 30301" -233759,AA Batteries (4-pack),1,3.84,07/09/19 13:40,"743 Highland St, Austin, TX 73301" -233760,Lightning Charging Cable,1,14.95,07/17/19 11:52,"386 Cedar St, San Francisco, CA 94016" -233761,USB-C Charging Cable,1,11.95,07/30/19 17:22,"50 Spruce St, Los Angeles, CA 90001" -233762,Lightning Charging Cable,1,14.95,07/08/19 09:21,"453 12th St, New York City, NY 10001" -233763,Apple Airpods Headphones,1,150,07/06/19 19:43,"197 Jefferson St, Dallas, TX 75001" -233764,Lightning Charging Cable,1,14.95,07/20/19 12:13,"156 South St, Seattle, WA 98101" -233765,Lightning Charging Cable,1,14.95,07/15/19 13:48,"966 10th St, San Francisco, CA 94016" -233766,Apple Airpods Headphones,2,150,07/14/19 11:51,"588 Spruce St, Los Angeles, CA 90001" -233767,Lightning Charging Cable,1,14.95,07/16/19 21:01,"355 11th St, New York City, NY 10001" -233768,Bose SoundSport Headphones,1,99.99,07/06/19 17:35,"77 West St, New York City, NY 10001" -233769,AA Batteries (4-pack),2,3.84,07/23/19 08:57,"348 Lakeview St, San Francisco, CA 94016" -233770,Macbook Pro Laptop,1,1700,07/19/19 22:39,"199 Forest St, San Francisco, CA 94016" -233771,Lightning Charging Cable,1,14.95,07/21/19 10:28,"960 Park St, Seattle, WA 98101" -233772,AAA Batteries (4-pack),1,2.99,07/07/19 00:28,"321 North St, Seattle, WA 98101" -233773,AAA Batteries (4-pack),3,2.99,07/26/19 22:26,"843 8th St, Portland, OR 97035" -233774,iPhone,1,700,07/14/19 19:57,"912 Adams St, Los Angeles, CA 90001" -233775,Macbook Pro Laptop,1,1700,07/09/19 22:30,"731 Wilson St, Boston, MA 02215" -233776,AAA Batteries (4-pack),1,2.99,07/01/19 15:51,"355 West St, Austin, TX 73301" -233777,AAA Batteries (4-pack),1,2.99,07/06/19 21:43,"319 Hickory St, Boston, MA 02215" -233778,Lightning Charging Cable,1,14.95,07/03/19 16:49,"91 Washington St, New York City, NY 10001" -233779,iPhone,1,700,07/25/19 11:45,"626 2nd St, Los Angeles, CA 90001" -233779,Lightning Charging Cable,1,14.95,07/25/19 11:45,"626 2nd St, Los Angeles, CA 90001" -233780,Apple Airpods Headphones,1,150,07/19/19 07:12,"769 Jackson St, Dallas, TX 75001" -233781,Lightning Charging Cable,1,14.95,07/08/19 16:34,"848 4th St, Los Angeles, CA 90001" -233782,Bose SoundSport Headphones,1,99.99,07/24/19 12:11,"782 Sunset St, San Francisco, CA 94016" -233783,AAA Batteries (4-pack),1,2.99,07/20/19 00:25,"334 12th St, Austin, TX 73301" -233784,27in FHD Monitor,1,149.99,07/03/19 17:07,"446 Main St, Seattle, WA 98101" -233785,ThinkPad Laptop,1,999.99,07/30/19 10:14,"476 9th St, Los Angeles, CA 90001" -233786,Wired Headphones,1,11.99,07/12/19 04:45,"148 5th St, Los Angeles, CA 90001" -233787,Lightning Charging Cable,1,14.95,07/22/19 09:12,"335 Meadow St, San Francisco, CA 94016" -233788,AA Batteries (4-pack),1,3.84,07/12/19 12:41,"558 Dogwood St, Atlanta, GA 30301" -233789,27in 4K Gaming Monitor,1,389.99,07/23/19 10:32,"357 Jefferson St, Portland, OR 97035" -233790,AAA Batteries (4-pack),1,2.99,07/27/19 23:32,"148 Meadow St, Atlanta, GA 30301" -,,,,, -233791,34in Ultrawide Monitor,1,379.99,07/08/19 09:41,"11 Maple St, Boston, MA 02215" -233792,Lightning Charging Cable,1,14.95,07/17/19 11:44,"516 2nd St, San Francisco, CA 94016" -233793,Apple Airpods Headphones,1,150,07/15/19 08:50,"413 Ridge St, San Francisco, CA 94016" -233794,Apple Airpods Headphones,1,150,07/21/19 23:30,"732 Pine St, San Francisco, CA 94016" -233795,AAA Batteries (4-pack),2,2.99,07/31/19 19:55,"759 6th St, San Francisco, CA 94016" -233796,AA Batteries (4-pack),1,3.84,07/12/19 21:49,"565 Jackson St, New York City, NY 10001" -233797,Bose SoundSport Headphones,1,99.99,07/19/19 10:57,"40 Lake St, New York City, NY 10001" -233798,AA Batteries (4-pack),1,3.84,07/21/19 05:13,"697 6th St, Portland, ME 04101" -233799,Bose SoundSport Headphones,1,99.99,07/05/19 21:35,"389 Highland St, Austin, TX 73301" -233800,AA Batteries (4-pack),1,3.84,07/15/19 15:14,"835 Hickory St, New York City, NY 10001" -233801,27in FHD Monitor,1,149.99,07/06/19 07:31,"349 Dogwood St, New York City, NY 10001" -233802,USB-C Charging Cable,1,11.95,07/24/19 20:24,"593 12th St, Los Angeles, CA 90001" -233803,27in FHD Monitor,1,149.99,07/08/19 19:42,"998 Washington St, Atlanta, GA 30301" -233804,AAA Batteries (4-pack),1,2.99,07/20/19 18:04,"24 Pine St, San Francisco, CA 94016" -233805,AA Batteries (4-pack),2,3.84,07/03/19 20:32,"508 Meadow St, Atlanta, GA 30301" -233806,27in 4K Gaming Monitor,1,389.99,07/04/19 18:12,"658 Park St, Los Angeles, CA 90001" -233807,AA Batteries (4-pack),2,3.84,07/11/19 19:24,"608 Pine St, San Francisco, CA 94016" -233808,AA Batteries (4-pack),1,3.84,07/08/19 10:33,"31 Church St, Seattle, WA 98101" -233809,Lightning Charging Cable,1,14.95,07/03/19 17:19,"157 7th St, Austin, TX 73301" -233810,AAA Batteries (4-pack),3,2.99,07/03/19 16:02,"778 Dogwood St, Seattle, WA 98101" -233811,AA Batteries (4-pack),1,3.84,07/08/19 12:41,"255 Jackson St, Portland, OR 97035" -233812,USB-C Charging Cable,1,11.95,07/30/19 14:27,"792 Johnson St, Dallas, TX 75001" -233813,USB-C Charging Cable,1,11.95,07/04/19 15:41,"237 Sunset St, Seattle, WA 98101" -233814,27in 4K Gaming Monitor,1,389.99,07/28/19 17:28,"76 10th St, San Francisco, CA 94016" -233815,USB-C Charging Cable,1,11.95,07/01/19 12:56,"378 Washington St, Boston, MA 02215" -233816,AA Batteries (4-pack),1,3.84,07/02/19 19:59,"915 North St, San Francisco, CA 94016" -233817,USB-C Charging Cable,2,11.95,07/22/19 08:49,"757 West St, Los Angeles, CA 90001" -233818,27in FHD Monitor,1,149.99,07/16/19 08:30,"747 12th St, San Francisco, CA 94016" -233819,ThinkPad Laptop,1,999.99,07/11/19 22:58,"765 River St, New York City, NY 10001" -233820,USB-C Charging Cable,1,11.95,07/27/19 17:43,"779 Center St, Austin, TX 73301" -233821,iPhone,1,700,07/20/19 14:12,"747 13th St, San Francisco, CA 94016" -233822,USB-C Charging Cable,1,11.95,07/14/19 13:16,"100 7th St, Los Angeles, CA 90001" -233823,Macbook Pro Laptop,1,1700,07/17/19 21:41,"737 Maple St, Atlanta, GA 30301" -233824,USB-C Charging Cable,2,11.95,07/25/19 19:45,"937 Elm St, New York City, NY 10001" -233825,Macbook Pro Laptop,1,1700,07/13/19 13:41,"369 Willow St, New York City, NY 10001" -233826,20in Monitor,1,109.99,07/16/19 12:48,"102 Meadow St, Los Angeles, CA 90001" -233827,USB-C Charging Cable,1,11.95,07/28/19 19:48,"753 4th St, Seattle, WA 98101" -233828,LG Dryer,1,600.0,07/27/19 09:23,"86 Center St, Seattle, WA 98101" -233829,USB-C Charging Cable,1,11.95,07/25/19 08:49,"756 13th St, Austin, TX 73301" -233830,34in Ultrawide Monitor,1,379.99,07/03/19 17:50,"163 Lake St, Boston, MA 02215" -233831,AAA Batteries (4-pack),6,2.99,07/01/19 19:01,"55 9th St, Los Angeles, CA 90001" -233832,27in FHD Monitor,1,149.99,07/10/19 09:25,"161 West St, Seattle, WA 98101" -233833,AAA Batteries (4-pack),2,2.99,07/09/19 17:13,"874 Maple St, Dallas, TX 75001" -233834,Wired Headphones,1,11.99,07/18/19 12:52,"542 Johnson St, Los Angeles, CA 90001" -233835,AAA Batteries (4-pack),1,2.99,07/02/19 15:57,"396 Chestnut St, Los Angeles, CA 90001" -233836,27in FHD Monitor,1,149.99,07/30/19 17:16,"304 Adams St, New York City, NY 10001" -233837,AAA Batteries (4-pack),1,2.99,07/03/19 21:54,"358 Elm St, Portland, OR 97035" -233838,Flatscreen TV,1,300,07/03/19 14:59,"710 Chestnut St, Seattle, WA 98101" -233839,USB-C Charging Cable,1,11.95,07/07/19 08:03,"4 Lakeview St, Los Angeles, CA 90001" -233840,Bose SoundSport Headphones,1,99.99,07/17/19 18:34,"805 Center St, Los Angeles, CA 90001" -233841,Flatscreen TV,1,300,07/08/19 08:08,"92 Hickory St, Los Angeles, CA 90001" -233842,Wired Headphones,1,11.99,07/12/19 09:11,"355 Elm St, Boston, MA 02215" -233843,AA Batteries (4-pack),1,3.84,07/18/19 09:06,"148 Adams St, Seattle, WA 98101" -233844,Lightning Charging Cable,1,14.95,07/12/19 16:52,"346 5th St, Dallas, TX 75001" -233845,AAA Batteries (4-pack),1,2.99,07/31/19 17:21,"730 Elm St, Los Angeles, CA 90001" -233846,AA Batteries (4-pack),1,3.84,07/19/19 16:48,"256 12th St, Dallas, TX 75001" -233847,34in Ultrawide Monitor,1,379.99,07/18/19 22:43,"783 Lincoln St, Dallas, TX 75001" -233848,AA Batteries (4-pack),1,3.84,07/09/19 23:37,"448 Cedar St, New York City, NY 10001" -233849,Bose SoundSport Headphones,2,99.99,07/29/19 09:04,"890 Forest St, Portland, OR 97035" -233850,AA Batteries (4-pack),2,3.84,07/08/19 15:04,"169 1st St, Boston, MA 02215" -233851,AA Batteries (4-pack),1,3.84,07/19/19 19:48,"852 10th St, New York City, NY 10001" -233852,USB-C Charging Cable,2,11.95,07/16/19 20:50,"367 Lincoln St, Boston, MA 02215" -233853,Flatscreen TV,1,300,07/16/19 14:01,"145 Pine St, San Francisco, CA 94016" -233854,Lightning Charging Cable,1,14.95,07/09/19 19:10,"475 Church St, Seattle, WA 98101" -233855,Wired Headphones,1,11.99,07/31/19 18:42,"568 Walnut St, Los Angeles, CA 90001" -233856,Wired Headphones,1,11.99,07/14/19 07:56,"39 Sunset St, New York City, NY 10001" -233857,AAA Batteries (4-pack),1,2.99,07/27/19 00:16,"233 Madison St, New York City, NY 10001" -233858,Lightning Charging Cable,1,14.95,07/22/19 19:40,"2 6th St, San Francisco, CA 94016" -233859,Google Phone,1,600,07/18/19 19:49,"780 Highland St, Portland, OR 97035" -233859,USB-C Charging Cable,1,11.95,07/18/19 19:49,"780 Highland St, Portland, OR 97035" -233860,AA Batteries (4-pack),1,3.84,07/26/19 12:03,"839 Forest St, San Francisco, CA 94016" -233861,AA Batteries (4-pack),1,3.84,07/02/19 15:52,"264 Cherry St, San Francisco, CA 94016" -233862,Vareebadd Phone,1,400,07/19/19 18:12,"198 South St, San Francisco, CA 94016" -233862,USB-C Charging Cable,1,11.95,07/19/19 18:12,"198 South St, San Francisco, CA 94016" -233863,Lightning Charging Cable,1,14.95,07/25/19 01:16,"234 Spruce St, New York City, NY 10001" -233864,AAA Batteries (4-pack),1,2.99,07/26/19 21:19,"904 8th St, Boston, MA 02215" -233865,Macbook Pro Laptop,1,1700,07/06/19 21:18,"186 Maple St, New York City, NY 10001" -233866,Bose SoundSport Headphones,1,99.99,07/07/19 20:34,"725 Cherry St, Portland, OR 97035" -233867,Lightning Charging Cable,1,14.95,07/08/19 10:55,"968 Hickory St, New York City, NY 10001" -233867,20in Monitor,1,109.99,07/08/19 10:55,"968 Hickory St, New York City, NY 10001" -233868,AA Batteries (4-pack),2,3.84,07/01/19 10:04,"451 Park St, Dallas, TX 75001" -233869,AA Batteries (4-pack),1,3.84,07/05/19 13:31,"258 12th St, San Francisco, CA 94016" -233870,Lightning Charging Cable,1,14.95,07/05/19 10:19,"261 4th St, Dallas, TX 75001" -233871,USB-C Charging Cable,1,11.95,07/12/19 18:46,"692 North St, New York City, NY 10001" -233872,Lightning Charging Cable,1,14.95,07/14/19 20:29,"623 Main St, Dallas, TX 75001" -233873,AAA Batteries (4-pack),1,2.99,07/24/19 09:49,"617 Lake St, Boston, MA 02215" -233874,AAA Batteries (4-pack),1,2.99,07/09/19 16:11,"186 7th St, Seattle, WA 98101" -233875,ThinkPad Laptop,1,999.99,07/13/19 18:21,"240 6th St, New York City, NY 10001" -233876,AAA Batteries (4-pack),1,2.99,07/16/19 17:55,"370 Cedar St, Los Angeles, CA 90001" -233877,Apple Airpods Headphones,1,150,07/11/19 18:30,"506 Cedar St, Portland, ME 04101" -233878,20in Monitor,1,109.99,07/15/19 19:02,"826 Church St, Boston, MA 02215" -233879,USB-C Charging Cable,1,11.95,07/03/19 15:53,"138 Cedar St, New York City, NY 10001" -233880,Apple Airpods Headphones,1,150,07/03/19 19:54,"918 7th St, San Francisco, CA 94016" -233881,AAA Batteries (4-pack),1,2.99,07/12/19 22:35,"672 South St, Portland, OR 97035" -233882,Wired Headphones,1,11.99,07/17/19 17:27,"496 Meadow St, San Francisco, CA 94016" -233883,Wired Headphones,1,11.99,07/17/19 10:29,"910 Pine St, Austin, TX 73301" -233884,AAA Batteries (4-pack),1,2.99,07/14/19 20:26,"806 South St, San Francisco, CA 94016" -233885,Macbook Pro Laptop,1,1700,07/20/19 12:27,"470 Willow St, Dallas, TX 75001" -233886,27in 4K Gaming Monitor,1,389.99,07/12/19 11:47,"463 West St, Atlanta, GA 30301" -233887,USB-C Charging Cable,1,11.95,07/06/19 23:16,"603 South St, Seattle, WA 98101" -233888,AAA Batteries (4-pack),2,2.99,07/02/19 18:01,"293 Adams St, Dallas, TX 75001" -233889,AAA Batteries (4-pack),1,2.99,07/22/19 21:24,"908 Pine St, New York City, NY 10001" -233890,Bose SoundSport Headphones,1,99.99,07/29/19 11:33,"477 6th St, Portland, OR 97035" -233891,Apple Airpods Headphones,1,150,07/27/19 08:40,"801 Park St, San Francisco, CA 94016" -233892,iPhone,1,700,07/27/19 06:52,"292 Johnson St, New York City, NY 10001" -233892,Lightning Charging Cable,2,14.95,07/27/19 06:52,"292 Johnson St, New York City, NY 10001" -233893,20in Monitor,1,109.99,07/19/19 22:46,"108 Spruce St, Portland, OR 97035" -233894,AAA Batteries (4-pack),2,2.99,07/24/19 20:01,"415 Cedar St, Dallas, TX 75001" -233895,Flatscreen TV,1,300,07/02/19 15:29,"805 Cedar St, Atlanta, GA 30301" -233896,Lightning Charging Cable,1,14.95,07/03/19 10:54,"189 Lakeview St, San Francisco, CA 94016" -233897,Wired Headphones,1,11.99,07/06/19 10:30,"325 11th St, New York City, NY 10001" -233898,Wired Headphones,1,11.99,07/15/19 21:33,"547 Main St, San Francisco, CA 94016" -233899,iPhone,1,700,07/01/19 14:54,"130 Jefferson St, Los Angeles, CA 90001" -233900,27in 4K Gaming Monitor,1,389.99,07/31/19 12:13,"495 1st St, New York City, NY 10001" -233901,AA Batteries (4-pack),1,3.84,07/11/19 11:00,"292 Lincoln St, Austin, TX 73301" -233902,Bose SoundSport Headphones,1,99.99,07/01/19 12:23,"390 10th St, Atlanta, GA 30301" -233903,Wired Headphones,1,11.99,07/11/19 21:07,"814 Johnson St, Los Angeles, CA 90001" -233904,ThinkPad Laptop,1,999.99,07/28/19 15:55,"863 Jackson St, New York City, NY 10001" -233905,ThinkPad Laptop,1,999.99,07/18/19 13:37,"783 Dogwood St, Boston, MA 02215" -233906,AA Batteries (4-pack),1,3.84,07/20/19 14:25,"152 Center St, San Francisco, CA 94016" -233907,AA Batteries (4-pack),1,3.84,07/02/19 19:40,"239 7th St, New York City, NY 10001" -233908,AA Batteries (4-pack),1,3.84,07/31/19 14:40,"672 Meadow St, New York City, NY 10001" -233909,20in Monitor,1,109.99,07/09/19 11:36,"311 13th St, San Francisco, CA 94016" -233910,Bose SoundSport Headphones,1,99.99,07/08/19 14:44,"264 Wilson St, San Francisco, CA 94016" -233911,Macbook Pro Laptop,1,1700,07/05/19 08:17,"464 Chestnut St, San Francisco, CA 94016" -233912,AAA Batteries (4-pack),1,2.99,07/05/19 22:47,"780 Pine St, Atlanta, GA 30301" -233913,AAA Batteries (4-pack),1,2.99,07/07/19 09:54,"77 Park St, Los Angeles, CA 90001" -233914,Lightning Charging Cable,1,14.95,07/20/19 17:04,"709 Cedar St, New York City, NY 10001" -233915,AAA Batteries (4-pack),2,2.99,07/09/19 22:40,"392 Highland St, Dallas, TX 75001" -233916,LG Washing Machine,1,600.0,07/09/19 09:19,"429 1st St, San Francisco, CA 94016" -233917,AA Batteries (4-pack),1,3.84,07/08/19 16:05,"417 River St, Boston, MA 02215" -233918,Lightning Charging Cable,1,14.95,07/12/19 17:06,"783 Hill St, Boston, MA 02215" -233919,LG Washing Machine,1,600.0,07/02/19 04:46,"23 Elm St, Atlanta, GA 30301" -233920,Lightning Charging Cable,1,14.95,07/21/19 18:15,"505 Adams St, New York City, NY 10001" -233921,Wired Headphones,1,11.99,07/30/19 12:29,"964 Highland St, Austin, TX 73301" -233922,Apple Airpods Headphones,1,150,07/10/19 21:50,"748 Lakeview St, Portland, OR 97035" -233923,Wired Headphones,1,11.99,07/04/19 13:34,"217 12th St, Boston, MA 02215" -233924,AA Batteries (4-pack),1,3.84,07/27/19 11:27,"196 Main St, Los Angeles, CA 90001" -233925,27in FHD Monitor,1,149.99,07/27/19 16:02,"191 Cherry St, San Francisco, CA 94016" -233926,34in Ultrawide Monitor,1,379.99,07/15/19 00:44,"402 Main St, Portland, OR 97035" -233927,34in Ultrawide Monitor,1,379.99,07/01/19 09:29,"197 Madison St, San Francisco, CA 94016" -233928,Apple Airpods Headphones,1,150,07/02/19 23:12,"23 West St, San Francisco, CA 94016" -233929,Google Phone,1,600,07/14/19 22:12,"237 Spruce St, New York City, NY 10001" -233930,iPhone,1,700,07/05/19 23:32,"199 Wilson St, Seattle, WA 98101" -233931,Wired Headphones,1,11.99,07/07/19 21:35,"49 Maple St, Dallas, TX 75001" -233932,AA Batteries (4-pack),1,3.84,07/11/19 22:29,"520 14th St, San Francisco, CA 94016" -233933,Bose SoundSport Headphones,1,99.99,07/12/19 00:08,"115 12th St, San Francisco, CA 94016" -233934,Apple Airpods Headphones,1,150,07/09/19 17:08,"772 Lincoln St, Seattle, WA 98101" -233935,Wired Headphones,1,11.99,07/24/19 09:44,"862 Ridge St, New York City, NY 10001" -233936,USB-C Charging Cable,1,11.95,07/06/19 08:34,"241 10th St, Portland, ME 04101" -233937,27in FHD Monitor,1,149.99,07/09/19 11:38,"605 2nd St, New York City, NY 10001" -233938,Apple Airpods Headphones,1,150,07/10/19 15:17,"181 Meadow St, Seattle, WA 98101" -233939,Apple Airpods Headphones,1,150,07/27/19 11:44,"66 Chestnut St, Austin, TX 73301" -233940,Wired Headphones,1,11.99,07/26/19 20:36,"287 Elm St, Los Angeles, CA 90001" -233941,Wired Headphones,1,11.99,07/28/19 21:36,"634 Madison St, San Francisco, CA 94016" -233942,USB-C Charging Cable,1,11.95,07/02/19 21:25,"708 Cedar St, Austin, TX 73301" -233943,AA Batteries (4-pack),2,3.84,07/14/19 12:21,"906 Madison St, San Francisco, CA 94016" -233944,Google Phone,1,600,07/05/19 19:42,"94 10th St, Atlanta, GA 30301" -233945,USB-C Charging Cable,1,11.95,07/03/19 21:06,"307 Jackson St, San Francisco, CA 94016" -233946,Lightning Charging Cable,1,14.95,07/18/19 23:24,"800 14th St, San Francisco, CA 94016" -233947,AAA Batteries (4-pack),1,2.99,07/29/19 13:25,"856 South St, Portland, OR 97035" -233948,Lightning Charging Cable,1,14.95,07/12/19 11:41,"337 Hill St, Boston, MA 02215" -233949,Lightning Charging Cable,2,14.95,07/30/19 15:52,"576 Dogwood St, Portland, OR 97035" -233950,AAA Batteries (4-pack),1,2.99,07/14/19 08:03,"569 14th St, San Francisco, CA 94016" -233951,Bose SoundSport Headphones,1,99.99,07/27/19 21:40,"4 Cherry St, San Francisco, CA 94016" -233952,USB-C Charging Cable,1,11.95,07/12/19 05:42,"664 West St, Dallas, TX 75001" -233953,Lightning Charging Cable,2,14.95,07/30/19 12:32,"375 Jackson St, Los Angeles, CA 90001" -233954,AAA Batteries (4-pack),1,2.99,07/19/19 15:14,"129 Forest St, San Francisco, CA 94016" -233955,Bose SoundSport Headphones,1,99.99,07/04/19 17:50,"708 Walnut St, San Francisco, CA 94016" -233956,Flatscreen TV,1,300,07/22/19 20:51,"699 Meadow St, Boston, MA 02215" -233957,27in 4K Gaming Monitor,1,389.99,07/08/19 15:55,"358 West St, Austin, TX 73301" -233958,27in 4K Gaming Monitor,1,389.99,07/15/19 04:50,"626 Meadow St, Atlanta, GA 30301" -233959,USB-C Charging Cable,1,11.95,07/21/19 08:49,"463 Park St, Dallas, TX 75001" -233960,AAA Batteries (4-pack),1,2.99,07/02/19 09:57,"167 Cedar St, Boston, MA 02215" -233961,27in 4K Gaming Monitor,1,389.99,07/12/19 12:23,"364 Church St, New York City, NY 10001" -233962,AAA Batteries (4-pack),2,2.99,07/20/19 10:20,"427 9th St, Atlanta, GA 30301" -233963,Bose SoundSport Headphones,1,99.99,07/14/19 17:12,"651 10th St, New York City, NY 10001" -233964,USB-C Charging Cable,2,11.95,07/21/19 17:02,"706 Lincoln St, San Francisco, CA 94016" -233965,Flatscreen TV,1,300,07/25/19 14:11,"220 Lincoln St, Los Angeles, CA 90001" -233966,AAA Batteries (4-pack),1,2.99,07/30/19 18:51,"699 11th St, Los Angeles, CA 90001" -233967,Wired Headphones,1,11.99,07/19/19 01:55,"939 5th St, Portland, OR 97035" -233968,USB-C Charging Cable,2,11.95,07/07/19 13:05,"312 Lake St, San Francisco, CA 94016" -233969,Wired Headphones,1,11.99,07/15/19 04:39,"639 West St, New York City, NY 10001" -233970,20in Monitor,1,109.99,07/15/19 20:09,"78 Chestnut St, New York City, NY 10001" -233971,34in Ultrawide Monitor,1,379.99,07/04/19 08:35,"510 Lakeview St, San Francisco, CA 94016" -233972,iPhone,1,700,07/14/19 19:16,"515 Hickory St, San Francisco, CA 94016" -233973,Lightning Charging Cable,1,14.95,07/02/19 07:53,"969 Forest St, Los Angeles, CA 90001" -233974,20in Monitor,1,109.99,07/19/19 18:28,"235 Johnson St, San Francisco, CA 94016" -233975,ThinkPad Laptop,1,999.99,07/04/19 19:54,"717 Center St, Los Angeles, CA 90001" -233976,Wired Headphones,2,11.99,07/21/19 23:29,"430 Center St, New York City, NY 10001" -233977,Apple Airpods Headphones,1,150,07/31/19 13:26,"980 Elm St, Atlanta, GA 30301" -233978,Bose SoundSport Headphones,1,99.99,07/17/19 07:24,"448 8th St, Dallas, TX 75001" -233979,Wired Headphones,1,11.99,07/26/19 18:09,"991 West St, San Francisco, CA 94016" -233979,AA Batteries (4-pack),1,3.84,07/26/19 18:09,"991 West St, San Francisco, CA 94016" -233980,USB-C Charging Cable,1,11.95,07/24/19 18:06,"781 4th St, Seattle, WA 98101" -233981,AAA Batteries (4-pack),1,2.99,07/19/19 14:38,"407 Hickory St, Seattle, WA 98101" -233982,AA Batteries (4-pack),2,3.84,07/15/19 11:34,"356 Lakeview St, Dallas, TX 75001" -233983,Lightning Charging Cable,1,14.95,07/07/19 19:19,"907 8th St, Portland, ME 04101" -233984,Flatscreen TV,1,300,07/06/19 18:24,"264 Park St, San Francisco, CA 94016" -233985,Google Phone,1,600,07/06/19 11:56,"804 9th St, New York City, NY 10001" -233986,iPhone,1,700,07/26/19 18:35,"946 Highland St, San Francisco, CA 94016" -,,,,, -233987,Apple Airpods Headphones,1,150,07/31/19 11:36,"22 Maple St, Boston, MA 02215" -233988,AAA Batteries (4-pack),1,2.99,07/23/19 10:23,"626 Spruce St, San Francisco, CA 94016" -233989,27in FHD Monitor,1,149.99,07/03/19 08:24,"981 Center St, Atlanta, GA 30301" -233990,Bose SoundSport Headphones,1,99.99,07/05/19 09:02,"496 Ridge St, Dallas, TX 75001" -233991,Bose SoundSport Headphones,1,99.99,07/06/19 10:53,"217 Adams St, Los Angeles, CA 90001" -233992,Vareebadd Phone,1,400,07/16/19 09:43,"74 6th St, Seattle, WA 98101" -233992,USB-C Charging Cable,1,11.95,07/16/19 09:43,"74 6th St, Seattle, WA 98101" -233993,AAA Batteries (4-pack),1,2.99,07/17/19 13:58,"236 Lake St, New York City, NY 10001" -233994,AA Batteries (4-pack),1,3.84,07/09/19 13:21,"346 13th St, Dallas, TX 75001" -233995,Wired Headphones,2,11.99,07/18/19 19:36,"702 Willow St, New York City, NY 10001" -233996,Wired Headphones,1,11.99,07/21/19 09:15,"520 Willow St, San Francisco, CA 94016" -233997,iPhone,1,700,07/28/19 06:34,"750 12th St, Seattle, WA 98101" -233997,Lightning Charging Cable,1,14.95,07/28/19 06:34,"750 12th St, Seattle, WA 98101" -233998,34in Ultrawide Monitor,1,379.99,07/20/19 15:29,"188 Park St, Portland, ME 04101" -233999,Bose SoundSport Headphones,1,99.99,07/30/19 12:16,"77 Adams St, San Francisco, CA 94016" -234000,AA Batteries (4-pack),1,3.84,07/22/19 20:11,"946 2nd St, Seattle, WA 98101" -234000,34in Ultrawide Monitor,1,379.99,07/22/19 20:11,"946 2nd St, Seattle, WA 98101" -234001,USB-C Charging Cable,1,11.95,07/25/19 11:57,"248 Forest St, Los Angeles, CA 90001" -234001,AAA Batteries (4-pack),3,2.99,07/25/19 11:57,"248 Forest St, Los Angeles, CA 90001" -234002,27in 4K Gaming Monitor,1,389.99,07/16/19 14:33,"865 Elm St, San Francisco, CA 94016" -234003,AA Batteries (4-pack),1,3.84,07/03/19 20:49,"83 4th St, Los Angeles, CA 90001" -234004,USB-C Charging Cable,1,11.95,07/30/19 21:30,"623 Jackson St, New York City, NY 10001" -234005,AA Batteries (4-pack),1,3.84,07/04/19 14:24,"830 River St, Seattle, WA 98101" -234006,USB-C Charging Cable,1,11.95,07/18/19 11:52,"52 Forest St, Los Angeles, CA 90001" -234007,AAA Batteries (4-pack),1,2.99,07/23/19 14:54,"342 Madison St, Portland, ME 04101" -234008,AAA Batteries (4-pack),1,2.99,07/19/19 22:22,"623 Madison St, Dallas, TX 75001" -234009,Wired Headphones,1,11.99,07/03/19 10:12,"674 2nd St, San Francisco, CA 94016" -234010,34in Ultrawide Monitor,1,379.99,07/07/19 10:58,"561 12th St, New York City, NY 10001" -234010,Lightning Charging Cable,1,14.95,07/07/19 10:58,"561 12th St, New York City, NY 10001" -234011,Flatscreen TV,1,300,07/06/19 22:49,"384 Cedar St, Atlanta, GA 30301" -234012,Lightning Charging Cable,1,14.95,07/16/19 07:49,"588 8th St, New York City, NY 10001" -234013,AA Batteries (4-pack),2,3.84,07/15/19 23:36,"34 Dogwood St, Dallas, TX 75001" -234014,Lightning Charging Cable,1,14.95,07/20/19 15:18,"407 Cherry St, Atlanta, GA 30301" -234015,Lightning Charging Cable,1,14.95,07/23/19 16:57,"452 Main St, New York City, NY 10001" -234016,AAA Batteries (4-pack),2,2.99,07/29/19 11:42,"762 Lake St, Los Angeles, CA 90001" -234017,Wired Headphones,1,11.99,07/27/19 16:41,"24 8th St, Boston, MA 02215" -234018,34in Ultrawide Monitor,1,379.99,07/12/19 13:03,"706 2nd St, San Francisco, CA 94016" -234019,USB-C Charging Cable,1,11.95,07/31/19 21:15,"217 6th St, San Francisco, CA 94016" -234020,27in FHD Monitor,1,149.99,07/09/19 14:03,"940 6th St, New York City, NY 10001" -234021,Lightning Charging Cable,1,14.95,07/16/19 10:57,"354 5th St, New York City, NY 10001" -234022,iPhone,1,700,07/06/19 20:56,"674 West St, San Francisco, CA 94016" -234023,USB-C Charging Cable,1,11.95,07/10/19 21:39,"54 12th St, Los Angeles, CA 90001" -234024,Lightning Charging Cable,1,14.95,07/25/19 14:16,"734 River St, Austin, TX 73301" -234025,Apple Airpods Headphones,1,150,07/07/19 17:17,"471 10th St, Atlanta, GA 30301" -234026,AA Batteries (4-pack),3,3.84,07/19/19 13:53,"215 Forest St, Dallas, TX 75001" -234027,ThinkPad Laptop,1,999.99,07/03/19 11:07,"614 Church St, New York City, NY 10001" -234028,Bose SoundSport Headphones,3,99.99,07/29/19 19:51,"263 Ridge St, Los Angeles, CA 90001" -234029,AA Batteries (4-pack),1,3.84,07/22/19 20:30,"539 West St, Atlanta, GA 30301" -234030,Wired Headphones,1,11.99,07/03/19 21:16,"929 9th St, Los Angeles, CA 90001" -234031,AAA Batteries (4-pack),1,2.99,07/10/19 14:16,"189 Forest St, Boston, MA 02215" -234032,Wired Headphones,1,11.99,07/18/19 19:34,"95 Sunset St, San Francisco, CA 94016" -234033,27in 4K Gaming Monitor,1,389.99,07/15/19 10:49,"657 5th St, Portland, ME 04101" -234034,USB-C Charging Cable,2,11.95,07/16/19 08:00,"564 9th St, Los Angeles, CA 90001" -234035,Lightning Charging Cable,1,14.95,07/31/19 16:19,"655 Hill St, Los Angeles, CA 90001" -234036,AA Batteries (4-pack),1,3.84,07/27/19 11:35,"581 Lincoln St, Los Angeles, CA 90001" -234037,Lightning Charging Cable,1,14.95,07/18/19 23:56,"267 11th St, Los Angeles, CA 90001" -234038,USB-C Charging Cable,1,11.95,07/18/19 09:31,"237 1st St, New York City, NY 10001" -234039,Wired Headphones,1,11.99,07/17/19 13:26,"100 Sunset St, Seattle, WA 98101" -234040,Wired Headphones,1,11.99,07/16/19 16:23,"151 Wilson St, San Francisco, CA 94016" -234041,USB-C Charging Cable,1,11.95,07/08/19 10:32,"533 8th St, San Francisco, CA 94016" -234041,Wired Headphones,1,11.99,07/08/19 10:32,"533 8th St, San Francisco, CA 94016" -234042,Google Phone,1,600,07/23/19 20:27,"905 Adams St, Dallas, TX 75001" -234043,Lightning Charging Cable,1,14.95,07/11/19 16:56,"129 Cherry St, San Francisco, CA 94016" -234044,iPhone,1,700,07/07/19 05:19,"953 Highland St, Austin, TX 73301" -234044,Lightning Charging Cable,1,14.95,07/07/19 05:19,"953 Highland St, Austin, TX 73301" -234045,Apple Airpods Headphones,1,150,07/13/19 09:52,"302 11th St, New York City, NY 10001" -234046,LG Dryer,1,600.0,07/28/19 21:42,"867 Hill St, Atlanta, GA 30301" -234047,Bose SoundSport Headphones,1,99.99,07/02/19 23:50,"282 2nd St, Los Angeles, CA 90001" -234048,Apple Airpods Headphones,1,150,07/09/19 16:53,"436 Highland St, Seattle, WA 98101" -234049,Apple Airpods Headphones,1,150,07/27/19 10:30,"656 9th St, Boston, MA 02215" -234050,Wired Headphones,1,11.99,07/19/19 15:34,"63 Sunset St, Los Angeles, CA 90001" -234051,AA Batteries (4-pack),1,3.84,07/15/19 23:21,"624 7th St, Atlanta, GA 30301" -234052,27in FHD Monitor,1,149.99,07/28/19 16:18,"616 Forest St, New York City, NY 10001" -234053,AAA Batteries (4-pack),2,2.99,07/16/19 20:19,"555 Lincoln St, San Francisco, CA 94016" -234054,Flatscreen TV,1,300,07/25/19 19:54,"163 River St, Los Angeles, CA 90001" -234055,Wired Headphones,1,11.99,07/02/19 11:40,"35 Adams St, New York City, NY 10001" -234056,Bose SoundSport Headphones,1,99.99,07/27/19 23:04,"731 Spruce St, San Francisco, CA 94016" -234057,Wired Headphones,1,11.99,07/04/19 12:38,"855 Highland St, San Francisco, CA 94016" -234058,iPhone,1,700,07/13/19 08:55,"948 Johnson St, Atlanta, GA 30301" -234059,AAA Batteries (4-pack),1,2.99,07/09/19 17:39,"57 Jackson St, New York City, NY 10001" -234060,USB-C Charging Cable,1,11.95,07/11/19 14:47,"617 South St, Atlanta, GA 30301" -234061,Apple Airpods Headphones,1,150,07/08/19 12:03,"600 Main St, Dallas, TX 75001" -234062,Wired Headphones,1,11.99,07/19/19 22:21,"817 5th St, Boston, MA 02215" -234063,USB-C Charging Cable,1,11.95,07/07/19 17:02,"347 South St, Atlanta, GA 30301" -234064,AAA Batteries (4-pack),1,2.99,07/06/19 16:02,"54 River St, Los Angeles, CA 90001" -234065,iPhone,1,700,07/18/19 18:00,"307 Adams St, New York City, NY 10001" -234066,Lightning Charging Cable,1,14.95,07/25/19 21:49,"433 Park St, San Francisco, CA 94016" -234067,AA Batteries (4-pack),1,3.84,07/01/19 17:58,"432 Lakeview St, Atlanta, GA 30301" -234068,AA Batteries (4-pack),1,3.84,07/13/19 19:09,"892 Pine St, San Francisco, CA 94016" -234069,AAA Batteries (4-pack),3,2.99,07/17/19 00:28,"408 Spruce St, Atlanta, GA 30301" -234070,Bose SoundSport Headphones,1,99.99,07/09/19 09:25,"793 11th St, New York City, NY 10001" -234071,AAA Batteries (4-pack),1,2.99,07/31/19 14:35,"694 Lakeview St, Los Angeles, CA 90001" -234072,27in FHD Monitor,1,149.99,07/30/19 12:27,"568 Madison St, Los Angeles, CA 90001" -234073,Wired Headphones,1,11.99,07/29/19 20:37,"16 14th St, New York City, NY 10001" -234074,27in 4K Gaming Monitor,1,389.99,07/16/19 21:22,"827 Walnut St, Portland, ME 04101" -234075,Wired Headphones,1,11.99,07/24/19 13:55,"329 Jackson St, Boston, MA 02215" -234076,Wired Headphones,2,11.99,07/23/19 14:09,"247 Ridge St, New York City, NY 10001" -234077,Wired Headphones,2,11.99,07/18/19 13:06,"906 North St, San Francisco, CA 94016" -234078,USB-C Charging Cable,1,11.95,07/15/19 20:17,"364 Lake St, Seattle, WA 98101" -234079,27in FHD Monitor,1,149.99,07/19/19 20:01,"230 7th St, New York City, NY 10001" -234080,Wired Headphones,1,11.99,07/20/19 12:43,"489 Highland St, San Francisco, CA 94016" -234081,Google Phone,1,600,07/10/19 12:48,"972 Maple St, Boston, MA 02215" -234082,Apple Airpods Headphones,1,150,07/30/19 21:08,"594 Lake St, Boston, MA 02215" -234083,USB-C Charging Cable,1,11.95,07/12/19 22:17,"883 Sunset St, Seattle, WA 98101" -234084,Lightning Charging Cable,1,14.95,07/19/19 23:15,"264 Meadow St, Los Angeles, CA 90001" -234085,Apple Airpods Headphones,1,150,07/15/19 19:13,"778 Cherry St, New York City, NY 10001" -234086,USB-C Charging Cable,1,11.95,07/14/19 21:29,"885 Jefferson St, San Francisco, CA 94016" -234087,ThinkPad Laptop,1,999.99,07/06/19 20:31,"970 Wilson St, San Francisco, CA 94016" -234088,AAA Batteries (4-pack),1,2.99,07/18/19 22:49,"376 Forest St, San Francisco, CA 94016" -234089,Macbook Pro Laptop,1,1700,07/14/19 11:59,"750 Lincoln St, Seattle, WA 98101" -234089,Bose SoundSport Headphones,1,99.99,07/14/19 11:59,"750 Lincoln St, Seattle, WA 98101" -234090,Wired Headphones,1,11.99,07/05/19 19:19,"4 Washington St, San Francisco, CA 94016" -234091,Lightning Charging Cable,1,14.95,07/02/19 22:48,"202 South St, San Francisco, CA 94016" -234091,Lightning Charging Cable,1,14.95,07/02/19 22:48,"202 South St, San Francisco, CA 94016" -234092,Wired Headphones,1,11.99,07/21/19 23:21,"24 14th St, Los Angeles, CA 90001" -234093,20in Monitor,1,109.99,07/15/19 17:49,"924 Madison St, Austin, TX 73301" -234093,AA Batteries (4-pack),2,3.84,07/15/19 17:49,"924 Madison St, Austin, TX 73301" -234094,USB-C Charging Cable,1,11.95,07/29/19 20:34,"898 Hill St, New York City, NY 10001" -234095,Apple Airpods Headphones,1,150,07/15/19 13:00,"143 13th St, New York City, NY 10001" -234096,Wired Headphones,1,11.99,07/09/19 21:52,"568 13th St, Atlanta, GA 30301" -234097,AA Batteries (4-pack),1,3.84,07/11/19 06:20,"819 Elm St, San Francisco, CA 94016" -234098,USB-C Charging Cable,1,11.95,07/23/19 08:33,"464 Center St, Austin, TX 73301" -234099,27in 4K Gaming Monitor,1,389.99,07/12/19 17:12,"290 6th St, Los Angeles, CA 90001" -234100,Lightning Charging Cable,1,14.95,07/11/19 12:18,"928 Pine St, New York City, NY 10001" -234101,Lightning Charging Cable,1,14.95,07/21/19 13:44,"426 13th St, New York City, NY 10001" -234102,Lightning Charging Cable,1,14.95,07/25/19 22:45,"597 Madison St, New York City, NY 10001" -234103,27in 4K Gaming Monitor,1,389.99,07/19/19 00:14,"72 Lakeview St, New York City, NY 10001" -234104,Apple Airpods Headphones,1,150,07/22/19 20:06,"297 Forest St, Los Angeles, CA 90001" -234105,27in FHD Monitor,1,149.99,07/19/19 03:49,"729 Main St, Los Angeles, CA 90001" -234106,AAA Batteries (4-pack),1,2.99,07/18/19 18:01,"907 Elm St, San Francisco, CA 94016" -234107,Apple Airpods Headphones,1,150,07/27/19 13:51,"849 Lake St, San Francisco, CA 94016" -234108,AAA Batteries (4-pack),2,2.99,07/31/19 07:43,"485 Lakeview St, San Francisco, CA 94016" -234109,USB-C Charging Cable,1,11.95,07/14/19 13:41,"728 Sunset St, San Francisco, CA 94016" -234110,AA Batteries (4-pack),2,3.84,07/01/19 06:58,"889 Cedar St, Dallas, TX 75001" -234111,Macbook Pro Laptop,1,1700,07/31/19 19:31,"885 2nd St, San Francisco, CA 94016" -234112,AA Batteries (4-pack),1,3.84,07/18/19 10:28,"327 Washington St, Dallas, TX 75001" -234113,AAA Batteries (4-pack),1,2.99,07/12/19 21:44,"75 West St, New York City, NY 10001" -234114,ThinkPad Laptop,1,999.99,07/03/19 17:45,"496 Ridge St, Atlanta, GA 30301" -234115,LG Washing Machine,1,600.0,07/26/19 09:51,"958 Jefferson St, New York City, NY 10001" -234116,27in FHD Monitor,1,149.99,07/15/19 12:40,"310 Willow St, San Francisco, CA 94016" -234117,Bose SoundSport Headphones,1,99.99,07/12/19 23:21,"762 2nd St, Seattle, WA 98101" -234118,USB-C Charging Cable,1,11.95,07/02/19 18:40,"436 Dogwood St, San Francisco, CA 94016" -234119,AAA Batteries (4-pack),2,2.99,07/14/19 14:38,"702 Cedar St, Seattle, WA 98101" -234120,iPhone,1,700,07/06/19 19:51,"970 14th St, Boston, MA 02215" -234121,USB-C Charging Cable,1,11.95,07/23/19 09:26,"546 Sunset St, Portland, OR 97035" -234122,Apple Airpods Headphones,1,150,07/12/19 22:27,"81 14th St, Seattle, WA 98101" -234123,Apple Airpods Headphones,1,150,07/22/19 09:45,"465 Church St, Boston, MA 02215" -234124,20in Monitor,1,109.99,07/20/19 12:18,"586 14th St, San Francisco, CA 94016" -234125,AAA Batteries (4-pack),3,2.99,07/26/19 12:59,"703 Lake St, Dallas, TX 75001" -234126,27in 4K Gaming Monitor,1,389.99,07/29/19 15:52,"807 Cherry St, Portland, ME 04101" -234127,27in FHD Monitor,1,149.99,07/01/19 14:05,"894 10th St, Dallas, TX 75001" -234128,Apple Airpods Headphones,1,150,07/11/19 09:15,"425 West St, Portland, OR 97035" -234129,Apple Airpods Headphones,1,150,07/22/19 18:35,"607 Jefferson St, Boston, MA 02215" -234130,AAA Batteries (4-pack),1,2.99,07/06/19 09:25,"593 Church St, Boston, MA 02215" -234131,USB-C Charging Cable,1,11.95,07/10/19 19:55,"153 Cherry St, Austin, TX 73301" -234132,20in Monitor,1,109.99,07/28/19 14:01,"443 Wilson St, Dallas, TX 75001" -234133,Apple Airpods Headphones,1,150,07/26/19 21:44,"546 Dogwood St, Los Angeles, CA 90001" -234134,Lightning Charging Cable,1,14.95,07/20/19 14:21,"299 Walnut St, Boston, MA 02215" -234135,Wired Headphones,1,11.99,07/08/19 18:18,"858 Hill St, Boston, MA 02215" -234136,27in FHD Monitor,1,149.99,07/15/19 11:47,"155 8th St, Portland, OR 97035" -234137,Lightning Charging Cable,1,14.95,07/01/19 22:32,"599 Lakeview St, Los Angeles, CA 90001" -234138,Bose SoundSport Headphones,1,99.99,07/27/19 21:20,"33 Johnson St, Dallas, TX 75001" -234139,AAA Batteries (4-pack),2,2.99,07/05/19 18:38,"886 Forest St, Boston, MA 02215" -234140,Apple Airpods Headphones,1,150,07/31/19 13:39,"474 South St, Los Angeles, CA 90001" -234141,Vareebadd Phone,1,400,07/21/19 09:42,"775 14th St, Atlanta, GA 30301" -234142,USB-C Charging Cable,1,11.95,07/07/19 11:59,"598 10th St, San Francisco, CA 94016" -234143,27in 4K Gaming Monitor,1,389.99,07/08/19 23:39,"857 Elm St, Atlanta, GA 30301" -234144,Lightning Charging Cable,1,14.95,07/28/19 12:21,"39 12th St, San Francisco, CA 94016" -234145,AAA Batteries (4-pack),4,2.99,07/25/19 22:11,"41 South St, San Francisco, CA 94016" -234146,Lightning Charging Cable,1,14.95,07/24/19 00:33,"978 Park St, Austin, TX 73301" -234147,Lightning Charging Cable,1,14.95,07/25/19 09:09,"997 North St, Los Angeles, CA 90001" -234148,27in 4K Gaming Monitor,1,389.99,07/17/19 09:32,"698 Wilson St, New York City, NY 10001" -234149,AAA Batteries (4-pack),1,2.99,07/20/19 12:35,"460 11th St, Los Angeles, CA 90001" -234150,USB-C Charging Cable,1,11.95,07/10/19 17:04,"778 10th St, Los Angeles, CA 90001" -234151,Flatscreen TV,1,300,07/21/19 21:54,"90 Pine St, New York City, NY 10001" -234152,USB-C Charging Cable,1,11.95,07/14/19 17:10,"204 7th St, Seattle, WA 98101" -234153,27in FHD Monitor,1,149.99,07/19/19 16:50,"915 2nd St, Austin, TX 73301" -234154,Lightning Charging Cable,1,14.95,07/17/19 17:30,"893 Walnut St, New York City, NY 10001" -234155,Lightning Charging Cable,1,14.95,07/16/19 23:43,"274 Chestnut St, New York City, NY 10001" -234156,iPhone,1,700,07/15/19 08:10,"226 Madison St, San Francisco, CA 94016" -234157,27in FHD Monitor,1,149.99,07/17/19 18:06,"575 Hill St, Seattle, WA 98101" -234158,AA Batteries (4-pack),1,3.84,07/26/19 08:20,"753 Cherry St, Boston, MA 02215" -234159,Bose SoundSport Headphones,1,99.99,07/19/19 21:40,"671 6th St, Atlanta, GA 30301" -234160,iPhone,1,700,07/18/19 19:40,"780 10th St, San Francisco, CA 94016" -234161,Wired Headphones,1,11.99,07/19/19 19:05,"169 Washington St, Dallas, TX 75001" -234162,Lightning Charging Cable,1,14.95,07/19/19 15:37,"631 West St, Dallas, TX 75001" -234163,27in 4K Gaming Monitor,1,389.99,07/31/19 00:49,"180 Lincoln St, Seattle, WA 98101" -234164,27in FHD Monitor,1,149.99,07/07/19 21:47,"646 Elm St, Boston, MA 02215" -234165,AA Batteries (4-pack),3,3.84,07/29/19 19:57,"998 Center St, Portland, OR 97035" -234166,Lightning Charging Cable,1,14.95,07/05/19 16:47,"265 Lake St, Boston, MA 02215" -234167,USB-C Charging Cable,1,11.95,07/17/19 17:50,"512 1st St, Seattle, WA 98101" -234168,USB-C Charging Cable,2,11.95,07/01/19 16:51,"420 13th St, Boston, MA 02215" -234169,AAA Batteries (4-pack),3,2.99,07/02/19 11:39,"658 Lincoln St, Austin, TX 73301" -234170,AA Batteries (4-pack),1,3.84,07/09/19 00:06,"311 Walnut St, San Francisco, CA 94016" -234171,AA Batteries (4-pack),1,3.84,07/06/19 15:58,"797 8th St, San Francisco, CA 94016" -234172,AAA Batteries (4-pack),1,2.99,07/27/19 16:08,"384 13th St, San Francisco, CA 94016" -234173,27in 4K Gaming Monitor,1,389.99,07/15/19 18:32,"185 Hill St, Portland, OR 97035" -234174,27in FHD Monitor,1,149.99,07/15/19 21:25,"333 12th St, San Francisco, CA 94016" -234175,Bose SoundSport Headphones,1,99.99,07/29/19 05:20,"13 Dogwood St, San Francisco, CA 94016" -234176,AA Batteries (4-pack),1,3.84,07/30/19 11:59,"181 Sunset St, Portland, ME 04101" -234177,20in Monitor,1,109.99,07/18/19 16:22,"733 Hill St, San Francisco, CA 94016" -234178,AA Batteries (4-pack),1,3.84,07/17/19 14:55,"377 Park St, New York City, NY 10001" -234179,AAA Batteries (4-pack),3,2.99,07/19/19 19:43,"532 Pine St, Los Angeles, CA 90001" -234180,Wired Headphones,1,11.99,07/08/19 12:46,"124 Lakeview St, San Francisco, CA 94016" -234181,Wired Headphones,1,11.99,07/21/19 14:04,"648 Lake St, San Francisco, CA 94016" -234182,AA Batteries (4-pack),2,3.84,07/28/19 14:48,"409 6th St, San Francisco, CA 94016" -234182,Bose SoundSport Headphones,1,99.99,07/28/19 14:48,"409 6th St, San Francisco, CA 94016" -234183,iPhone,1,700,07/30/19 16:56,"768 8th St, Los Angeles, CA 90001" -234183,Lightning Charging Cable,1,14.95,07/30/19 16:56,"768 8th St, Los Angeles, CA 90001" -234184,Wired Headphones,1,11.99,07/31/19 19:28,"353 Maple St, San Francisco, CA 94016" -234185,AA Batteries (4-pack),1,3.84,07/13/19 14:44,"727 Elm St, Portland, OR 97035" -234186,USB-C Charging Cable,1,11.95,07/11/19 20:09,"812 West St, New York City, NY 10001" -234187,Apple Airpods Headphones,1,150,07/01/19 11:46,"226 Highland St, San Francisco, CA 94016" -234188,ThinkPad Laptop,1,999.99,07/30/19 20:56,"33 River St, San Francisco, CA 94016" -234189,34in Ultrawide Monitor,1,379.99,07/24/19 07:00,"171 River St, San Francisco, CA 94016" -234190,AA Batteries (4-pack),1,3.84,07/20/19 16:24,"518 5th St, Boston, MA 02215" -234191,Wired Headphones,1,11.99,07/31/19 17:52,"88 Lincoln St, Austin, TX 73301" -234192,27in FHD Monitor,1,149.99,07/21/19 13:40,"475 Sunset St, Dallas, TX 75001" -234193,USB-C Charging Cable,1,11.95,07/25/19 10:45,"9 4th St, Dallas, TX 75001" -234194,USB-C Charging Cable,1,11.95,07/19/19 15:20,"822 9th St, New York City, NY 10001" -234195,USB-C Charging Cable,1,11.95,07/28/19 08:50,"36 Spruce St, San Francisco, CA 94016" -234196,Lightning Charging Cable,1,14.95,07/14/19 21:51,"622 Dogwood St, Los Angeles, CA 90001" -234197,AA Batteries (4-pack),1,3.84,07/14/19 11:13,"337 Highland St, Seattle, WA 98101" -234198,USB-C Charging Cable,1,11.95,07/17/19 23:35,"122 14th St, San Francisco, CA 94016" -234199,USB-C Charging Cable,1,11.95,07/20/19 12:44,"572 Walnut St, Boston, MA 02215" -234200,Apple Airpods Headphones,1,150,07/25/19 18:50,"770 Pine St, Los Angeles, CA 90001" -234201,27in 4K Gaming Monitor,1,389.99,07/07/19 15:10,"67 10th St, Seattle, WA 98101" -234202,USB-C Charging Cable,1,11.95,07/16/19 17:39,"974 14th St, Dallas, TX 75001" -234203,USB-C Charging Cable,1,11.95,07/25/19 08:15,"639 Washington St, Boston, MA 02215" -234204,iPhone,1,700,07/21/19 11:17,"461 Spruce St, New York City, NY 10001" -234205,ThinkPad Laptop,1,999.99,07/05/19 16:50,"516 Pine St, New York City, NY 10001" -234206,Bose SoundSport Headphones,1,99.99,07/22/19 23:52,"814 Park St, Boston, MA 02215" -234207,Wired Headphones,1,11.99,07/12/19 21:22,"675 Highland St, Atlanta, GA 30301" -234208,USB-C Charging Cable,1,11.95,07/18/19 20:13,"198 Adams St, New York City, NY 10001" -234209,Lightning Charging Cable,1,14.95,07/11/19 16:21,"638 13th St, Los Angeles, CA 90001" -234210,34in Ultrawide Monitor,1,379.99,07/17/19 21:19,"976 Sunset St, New York City, NY 10001" -234211,AA Batteries (4-pack),1,3.84,07/21/19 19:46,"636 Forest St, Los Angeles, CA 90001" -234212,ThinkPad Laptop,1,999.99,07/10/19 17:46,"72 9th St, New York City, NY 10001" -234213,Lightning Charging Cable,1,14.95,07/02/19 12:53,"268 Johnson St, Dallas, TX 75001" -234214,USB-C Charging Cable,1,11.95,07/22/19 17:08,"206 Pine St, San Francisco, CA 94016" -234215,Google Phone,1,600,07/19/19 16:57,"818 Highland St, Seattle, WA 98101" -234215,USB-C Charging Cable,1,11.95,07/19/19 16:57,"818 Highland St, Seattle, WA 98101" -234216,AAA Batteries (4-pack),1,2.99,07/05/19 10:15,"100 6th St, Boston, MA 02215" -234217,Bose SoundSport Headphones,1,99.99,07/05/19 14:12,"898 Cedar St, San Francisco, CA 94016" -234218,LG Washing Machine,1,600.0,07/24/19 21:57,"872 Walnut St, Los Angeles, CA 90001" -234219,AAA Batteries (4-pack),1,2.99,07/26/19 21:57,"392 Hill St, New York City, NY 10001" -234220,Lightning Charging Cable,1,14.95,07/14/19 07:21,"423 South St, New York City, NY 10001" -234221,27in FHD Monitor,1,149.99,07/29/19 04:37,"869 8th St, Atlanta, GA 30301" -234222,AAA Batteries (4-pack),1,2.99,07/29/19 18:57,"74 Cedar St, Portland, OR 97035" -234223,Lightning Charging Cable,1,14.95,07/08/19 10:25,"304 Cedar St, Austin, TX 73301" -234224,USB-C Charging Cable,1,11.95,07/27/19 13:06,"474 Willow St, New York City, NY 10001" -234225,Lightning Charging Cable,1,14.95,07/14/19 12:45,"661 10th St, Boston, MA 02215" -234226,Wired Headphones,1,11.99,07/23/19 19:51,"858 14th St, Los Angeles, CA 90001" -234227,AAA Batteries (4-pack),1,2.99,07/22/19 19:17,"694 Elm St, New York City, NY 10001" -234228,AAA Batteries (4-pack),2,2.99,07/12/19 13:03,"818 Highland St, Los Angeles, CA 90001" -234229,Lightning Charging Cable,1,14.95,07/23/19 10:28,"330 Highland St, San Francisco, CA 94016" -234230,USB-C Charging Cable,1,11.95,07/01/19 17:06,"440 6th St, Los Angeles, CA 90001" -234231,Lightning Charging Cable,1,14.95,07/23/19 20:26,"561 Cherry St, Dallas, TX 75001" -234232,Google Phone,1,600,07/25/19 12:42,"844 Chestnut St, Seattle, WA 98101" -234232,USB-C Charging Cable,1,11.95,07/25/19 12:42,"844 Chestnut St, Seattle, WA 98101" -234233,27in FHD Monitor,1,149.99,07/31/19 11:11,"753 Willow St, San Francisco, CA 94016" -234234,Bose SoundSport Headphones,1,99.99,07/29/19 13:22,"171 9th St, San Francisco, CA 94016" -234235,Lightning Charging Cable,1,14.95,07/05/19 21:12,"924 12th St, Los Angeles, CA 90001" -234236,20in Monitor,1,109.99,07/25/19 18:11,"981 Highland St, Seattle, WA 98101" -234237,USB-C Charging Cable,1,11.95,07/25/19 11:10,"476 Willow St, Atlanta, GA 30301" -234238,27in 4K Gaming Monitor,1,389.99,07/01/19 12:44,"29 Ridge St, Atlanta, GA 30301" -234239,Lightning Charging Cable,1,14.95,07/02/19 16:51,"903 Elm St, San Francisco, CA 94016" -234240,iPhone,1,700,07/18/19 08:49,"161 North St, San Francisco, CA 94016" -234241,27in FHD Monitor,1,149.99,07/07/19 20:43,"760 Willow St, Seattle, WA 98101" -234242,AA Batteries (4-pack),1,3.84,07/13/19 10:18,"44 11th St, Dallas, TX 75001" -234243,Lightning Charging Cable,1,14.95,07/25/19 21:32,"714 South St, San Francisco, CA 94016" -234244,Wired Headphones,1,11.99,07/17/19 16:44,"271 12th St, New York City, NY 10001" -234245,Bose SoundSport Headphones,1,99.99,07/17/19 08:22,"364 Cherry St, San Francisco, CA 94016" -234246,Vareebadd Phone,1,400,07/07/19 19:40,"498 Chestnut St, Seattle, WA 98101" -234247,AAA Batteries (4-pack),2,2.99,07/22/19 08:11,"14 Willow St, New York City, NY 10001" -234248,ThinkPad Laptop,1,999.99,07/17/19 20:24,"489 7th St, Los Angeles, CA 90001" -234249,Flatscreen TV,1,300,07/13/19 11:50,"189 Walnut St, New York City, NY 10001" -234250,iPhone,1,700,07/10/19 22:22,"759 River St, Portland, ME 04101" -234251,Apple Airpods Headphones,1,150,07/29/19 07:43,"183 Cherry St, San Francisco, CA 94016" -234252,Wired Headphones,1,11.99,07/04/19 08:54,"548 10th St, San Francisco, CA 94016" -234253,Wired Headphones,1,11.99,07/26/19 15:47,"330 Wilson St, Los Angeles, CA 90001" -234254,AA Batteries (4-pack),1,3.84,07/04/19 15:35,"143 Lake St, San Francisco, CA 94016" -234255,AA Batteries (4-pack),1,3.84,07/02/19 16:52,"829 Willow St, Atlanta, GA 30301" -234256,Google Phone,1,600,07/08/19 20:50,"160 Willow St, New York City, NY 10001" -234257,Lightning Charging Cable,1,14.95,07/04/19 14:00,"346 Lincoln St, Austin, TX 73301" -234258,Lightning Charging Cable,1,14.95,07/16/19 15:37,"341 2nd St, San Francisco, CA 94016" -234258,Lightning Charging Cable,1,14.95,07/16/19 15:37,"341 2nd St, San Francisco, CA 94016" -234259,20in Monitor,1,109.99,07/15/19 07:33,"457 1st St, Los Angeles, CA 90001" -234260,Lightning Charging Cable,1,14.95,07/28/19 20:34,"39 Park St, Dallas, TX 75001" -234261,Bose SoundSport Headphones,1,99.99,07/11/19 16:38,"852 Ridge St, Los Angeles, CA 90001" -234262,AAA Batteries (4-pack),1,2.99,07/27/19 16:56,"801 7th St, Los Angeles, CA 90001" -234263,Google Phone,1,600,07/17/19 11:46,"53 Jackson St, Los Angeles, CA 90001" -234264,Apple Airpods Headphones,1,150,07/05/19 18:35,"899 Park St, Los Angeles, CA 90001" -234265,AAA Batteries (4-pack),1,2.99,07/27/19 22:28,"159 Dogwood St, San Francisco, CA 94016" -234266,27in 4K Gaming Monitor,1,389.99,07/31/19 01:09,"943 7th St, San Francisco, CA 94016" -234267,Lightning Charging Cable,1,14.95,07/29/19 16:42,"756 9th St, Los Angeles, CA 90001" -234268,AA Batteries (4-pack),2,3.84,07/09/19 23:45,"18 Hill St, Atlanta, GA 30301" -234269,AAA Batteries (4-pack),2,2.99,07/19/19 20:26,"640 9th St, Portland, OR 97035" -234270,AAA Batteries (4-pack),2,2.99,07/25/19 08:56,"96 Wilson St, New York City, NY 10001" -234271,USB-C Charging Cable,1,11.95,07/12/19 14:46,"191 12th St, San Francisco, CA 94016" -234272,Bose SoundSport Headphones,1,99.99,07/05/19 18:04,"810 Jefferson St, Atlanta, GA 30301" -234273,AAA Batteries (4-pack),1,2.99,07/31/19 11:05,"585 Chestnut St, San Francisco, CA 94016" -234274,Vareebadd Phone,1,400,07/03/19 21:34,"655 Madison St, Dallas, TX 75001" -234275,USB-C Charging Cable,1,11.95,07/15/19 22:00,"824 5th St, Boston, MA 02215" -234276,27in 4K Gaming Monitor,1,389.99,07/11/19 19:55,"526 Adams St, Los Angeles, CA 90001" -234277,27in FHD Monitor,1,149.99,07/07/19 11:30,"282 South St, Portland, OR 97035" -234278,USB-C Charging Cable,1,11.95,07/02/19 10:20,"999 Forest St, San Francisco, CA 94016" -234279,Lightning Charging Cable,1,14.95,07/21/19 13:17,"535 Hill St, Seattle, WA 98101" -234280,Bose SoundSport Headphones,1,99.99,07/24/19 15:54,"890 Main St, New York City, NY 10001" -234281,USB-C Charging Cable,1,11.95,07/04/19 09:10,"897 Lakeview St, Los Angeles, CA 90001" -234282,Google Phone,1,600,07/16/19 21:57,"345 Forest St, Seattle, WA 98101" -234283,27in FHD Monitor,1,149.99,07/28/19 16:38,"655 Center St, New York City, NY 10001" -234284,Wired Headphones,1,11.99,07/25/19 17:00,"599 Cherry St, San Francisco, CA 94016" -234285,USB-C Charging Cable,1,11.95,07/19/19 00:41,"978 14th St, Los Angeles, CA 90001" -234286,Apple Airpods Headphones,1,150,07/23/19 19:53,"567 4th St, Los Angeles, CA 90001" -234287,AA Batteries (4-pack),1,3.84,07/19/19 10:16,"163 12th St, Atlanta, GA 30301" -234288,USB-C Charging Cable,1,11.95,07/23/19 11:20,"759 10th St, San Francisco, CA 94016" -234289,Vareebadd Phone,1,400,07/24/19 18:59,"157 Willow St, San Francisco, CA 94016" -234289,USB-C Charging Cable,1,11.95,07/24/19 18:59,"157 Willow St, San Francisco, CA 94016" -234290,LG Dryer,1,600.0,07/13/19 21:51,"34 Forest St, Seattle, WA 98101" -234291,Bose SoundSport Headphones,1,99.99,07/03/19 11:59,"31 Cedar St, Boston, MA 02215" -234292,Bose SoundSport Headphones,1,99.99,07/01/19 09:56,"764 Ridge St, Austin, TX 73301" -234293,27in 4K Gaming Monitor,1,389.99,07/25/19 09:26,"223 13th St, Dallas, TX 75001" -234294,USB-C Charging Cable,1,11.95,07/01/19 12:02,"294 Washington St, Seattle, WA 98101" -234295,Wired Headphones,1,11.99,07/28/19 10:25,"102 Johnson St, San Francisco, CA 94016" -234296,AAA Batteries (4-pack),2,2.99,07/31/19 20:05,"771 Hill St, New York City, NY 10001" -234297,27in FHD Monitor,1,149.99,07/09/19 16:42,"710 Cherry St, Atlanta, GA 30301" -234298,USB-C Charging Cable,2,11.95,07/25/19 11:39,"792 Johnson St, Boston, MA 02215" -234299,Wired Headphones,1,11.99,07/21/19 12:56,"664 Dogwood St, San Francisco, CA 94016" -234300,Bose SoundSport Headphones,1,99.99,07/08/19 09:04,"708 6th St, San Francisco, CA 94016" -234301,Wired Headphones,1,11.99,07/17/19 18:20,"660 Church St, Austin, TX 73301" -234302,Lightning Charging Cable,1,14.95,07/27/19 23:36,"517 Highland St, San Francisco, CA 94016" -234303,20in Monitor,1,109.99,07/12/19 21:10,"840 4th St, New York City, NY 10001" -234304,iPhone,1,700,07/26/19 17:48,"13 Lakeview St, San Francisco, CA 94016" -234305,Lightning Charging Cable,2,14.95,07/08/19 12:20,"430 Walnut St, Dallas, TX 75001" -234306,Lightning Charging Cable,1,14.95,07/29/19 19:25,"536 North St, New York City, NY 10001" -234307,27in FHD Monitor,1,149.99,07/11/19 09:19,"19 Jefferson St, Los Angeles, CA 90001" -234308,USB-C Charging Cable,1,11.95,07/29/19 16:10,"319 Walnut St, New York City, NY 10001" -234309,LG Dryer,1,600.0,07/20/19 12:31,"433 Main St, San Francisco, CA 94016" -234310,27in FHD Monitor,1,149.99,07/02/19 09:04,"49 Dogwood St, Portland, OR 97035" -234311,Bose SoundSport Headphones,1,99.99,07/02/19 20:33,"239 Church St, San Francisco, CA 94016" -234312,27in 4K Gaming Monitor,1,389.99,07/08/19 17:45,"600 12th St, New York City, NY 10001" -234313,Lightning Charging Cable,1,14.95,07/02/19 09:56,"863 Spruce St, Los Angeles, CA 90001" -234314,Google Phone,1,600,07/08/19 17:12,"83 Adams St, New York City, NY 10001" -234315,USB-C Charging Cable,1,11.95,07/09/19 11:28,"340 Jackson St, Dallas, TX 75001" -234316,AAA Batteries (4-pack),1,2.99,07/29/19 08:38,"533 Jefferson St, New York City, NY 10001" -234317,AAA Batteries (4-pack),2,2.99,07/16/19 19:21,"468 7th St, Portland, ME 04101" -234318,iPhone,1,700,07/04/19 15:43,"417 Church St, Boston, MA 02215" -234319,Apple Airpods Headphones,1,150,07/28/19 13:51,"596 West St, San Francisco, CA 94016" -234320,Wired Headphones,1,11.99,07/04/19 16:27,"562 14th St, Atlanta, GA 30301" -234321,Wired Headphones,1,11.99,07/09/19 15:03,"243 River St, New York City, NY 10001" -234322,Bose SoundSport Headphones,1,99.99,07/13/19 17:55,"890 Madison St, New York City, NY 10001" -234323,Apple Airpods Headphones,1,150,07/08/19 16:16,"134 Pine St, Seattle, WA 98101" -234324,27in FHD Monitor,1,149.99,07/14/19 20:39,"418 4th St, Los Angeles, CA 90001" -234325,AAA Batteries (4-pack),1,2.99,07/08/19 21:28,"455 8th St, Atlanta, GA 30301" -234326,27in FHD Monitor,1,149.99,07/24/19 17:17,"723 12th St, Los Angeles, CA 90001" -234327,34in Ultrawide Monitor,1,379.99,07/29/19 04:23,"462 South St, Boston, MA 02215" -234328,27in FHD Monitor,1,149.99,07/17/19 11:18,"176 Lake St, Seattle, WA 98101" -234329,Bose SoundSport Headphones,1,99.99,07/21/19 21:57,"475 2nd St, San Francisco, CA 94016" -234330,34in Ultrawide Monitor,1,379.99,07/17/19 00:25,"983 7th St, San Francisco, CA 94016" -234331,34in Ultrawide Monitor,1,379.99,07/25/19 12:43,"632 Cherry St, San Francisco, CA 94016" -234332,Google Phone,1,600,07/27/19 05:26,"228 Sunset St, New York City, NY 10001" -234332,USB-C Charging Cable,1,11.95,07/27/19 05:26,"228 Sunset St, New York City, NY 10001" -234333,Apple Airpods Headphones,1,150,07/20/19 02:27,"679 Chestnut St, San Francisco, CA 94016" -234334,27in FHD Monitor,1,149.99,07/27/19 19:03,"650 River St, Portland, OR 97035" -234335,Wired Headphones,1,11.99,07/01/19 21:47,"19 Washington St, New York City, NY 10001" -234336,27in FHD Monitor,1,149.99,07/03/19 09:30,"572 9th St, New York City, NY 10001" -234337,27in 4K Gaming Monitor,1,389.99,07/18/19 14:38,"294 West St, Los Angeles, CA 90001" -234338,27in FHD Monitor,1,149.99,07/25/19 11:45,"603 Willow St, Boston, MA 02215" -234339,Wired Headphones,1,11.99,07/08/19 19:11,"567 7th St, San Francisco, CA 94016" -234340,Lightning Charging Cable,1,14.95,07/04/19 13:35,"813 Maple St, San Francisco, CA 94016" -234341,LG Dryer,1,600.0,07/15/19 20:16,"22 West St, Dallas, TX 75001" -234342,34in Ultrawide Monitor,1,379.99,07/25/19 19:39,"800 2nd St, New York City, NY 10001" -234343,34in Ultrawide Monitor,1,379.99,07/21/19 23:55,"92 7th St, San Francisco, CA 94016" -234344,USB-C Charging Cable,1,11.95,07/10/19 04:09,"812 Hill St, Los Angeles, CA 90001" -234345,34in Ultrawide Monitor,1,379.99,07/21/19 00:54,"34 Jefferson St, New York City, NY 10001" -234345,AAA Batteries (4-pack),1,2.99,07/21/19 00:54,"34 Jefferson St, New York City, NY 10001" -234346,ThinkPad Laptop,1,999.99,07/02/19 19:09,"165 Lakeview St, Seattle, WA 98101" -234347,Lightning Charging Cable,1,14.95,07/31/19 16:28,"861 Lincoln St, San Francisco, CA 94016" -234348,AAA Batteries (4-pack),1,2.99,07/22/19 07:18,"263 Lincoln St, Atlanta, GA 30301" -234349,AA Batteries (4-pack),1,3.84,07/24/19 19:23,"228 Sunset St, Los Angeles, CA 90001" -234350,Apple Airpods Headphones,1,150,07/14/19 21:12,"698 Willow St, Portland, ME 04101" -234351,Wired Headphones,1,11.99,07/05/19 18:07,"895 Dogwood St, San Francisco, CA 94016" -234352,Wired Headphones,1,11.99,07/04/19 22:54,"665 Elm St, Dallas, TX 75001" -234353,Vareebadd Phone,1,400,07/12/19 07:56,"299 Willow St, Atlanta, GA 30301" -234354,Wired Headphones,1,11.99,07/07/19 10:32,"409 11th St, New York City, NY 10001" -234355,34in Ultrawide Monitor,1,379.99,07/06/19 12:26,"967 Willow St, Portland, OR 97035" -234356,Apple Airpods Headphones,1,150,07/18/19 13:25,"573 Hill St, New York City, NY 10001" -234357,AAA Batteries (4-pack),1,2.99,07/18/19 13:44,"886 Walnut St, San Francisco, CA 94016" -234358,Lightning Charging Cable,1,14.95,07/16/19 17:37,"938 Adams St, San Francisco, CA 94016" -234359,AA Batteries (4-pack),1,3.84,07/30/19 10:11,"109 7th St, New York City, NY 10001" -234359,Bose SoundSport Headphones,1,99.99,07/30/19 10:11,"109 7th St, New York City, NY 10001" -234360,Wired Headphones,1,11.99,07/09/19 10:14,"655 14th St, San Francisco, CA 94016" -234361,Macbook Pro Laptop,1,1700,07/03/19 13:50,"795 Cedar St, Boston, MA 02215" -234362,USB-C Charging Cable,1,11.95,07/13/19 07:26,"124 Meadow St, Los Angeles, CA 90001" -234363,27in 4K Gaming Monitor,1,389.99,07/13/19 23:06,"113 Main St, Dallas, TX 75001" -234364,Bose SoundSport Headphones,1,99.99,07/19/19 15:00,"799 11th St, San Francisco, CA 94016" -234365,AA Batteries (4-pack),2,3.84,07/18/19 02:50,"481 Chestnut St, San Francisco, CA 94016" -234366,Google Phone,1,600,07/26/19 16:36,"532 Lakeview St, Portland, OR 97035" -234367,Lightning Charging Cable,1,14.95,07/02/19 18:07,"917 5th St, San Francisco, CA 94016" -234368,ThinkPad Laptop,1,999.99,07/15/19 13:25,"694 Maple St, San Francisco, CA 94016" -234369,27in FHD Monitor,1,149.99,07/04/19 07:47,"31 8th St, San Francisco, CA 94016" -234370,Wired Headphones,1,11.99,07/01/19 18:36,"293 Center St, San Francisco, CA 94016" -234371,Bose SoundSport Headphones,1,99.99,07/15/19 13:04,"800 Jackson St, Dallas, TX 75001" -234372,USB-C Charging Cable,1,11.95,07/25/19 21:08,"123 1st St, San Francisco, CA 94016" -234373,AAA Batteries (4-pack),1,2.99,07/30/19 21:51,"880 9th St, Dallas, TX 75001" -234374,AAA Batteries (4-pack),5,2.99,07/15/19 17:08,"560 Sunset St, Seattle, WA 98101" -234375,Wired Headphones,2,11.99,07/29/19 19:57,"920 10th St, Boston, MA 02215" -234376,Apple Airpods Headphones,1,150,07/18/19 13:48,"758 Church St, Dallas, TX 75001" -234377,USB-C Charging Cable,1,11.95,07/06/19 18:32,"848 Johnson St, New York City, NY 10001" -234378,AAA Batteries (4-pack),1,2.99,07/20/19 18:37,"218 Jefferson St, New York City, NY 10001" -234379,AAA Batteries (4-pack),2,2.99,07/17/19 11:45,"105 Jackson St, Los Angeles, CA 90001" -234380,Lightning Charging Cable,1,14.95,07/29/19 14:48,"962 Hickory St, Los Angeles, CA 90001" -234381,Bose SoundSport Headphones,1,99.99,07/05/19 12:34,"276 Forest St, Boston, MA 02215" -234382,ThinkPad Laptop,1,999.99,07/13/19 12:44,"602 Lincoln St, San Francisco, CA 94016" -234383,Lightning Charging Cable,1,14.95,07/27/19 12:19,"384 Main St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -234384,Apple Airpods Headphones,1,150,07/03/19 10:32,"469 Highland St, Los Angeles, CA 90001" -234385,USB-C Charging Cable,1,11.95,07/07/19 09:17,"611 Madison St, New York City, NY 10001" -234386,AAA Batteries (4-pack),1,2.99,07/13/19 04:51,"305 4th St, Atlanta, GA 30301" -234387,Bose SoundSport Headphones,1,99.99,07/16/19 17:52,"515 Willow St, San Francisco, CA 94016" -234388,AA Batteries (4-pack),1,3.84,07/10/19 13:15,"278 14th St, Seattle, WA 98101" -234389,Wired Headphones,1,11.99,07/25/19 22:14,"907 Willow St, Atlanta, GA 30301" -234390,27in FHD Monitor,1,149.99,07/18/19 21:11,"573 Cherry St, Dallas, TX 75001" -234391,27in FHD Monitor,1,149.99,07/27/19 20:23,"80 4th St, Dallas, TX 75001" -234392,Flatscreen TV,1,300,07/03/19 21:50,"552 Willow St, Austin, TX 73301" -234393,Flatscreen TV,1,300,07/16/19 18:49,"374 4th St, Dallas, TX 75001" -234394,USB-C Charging Cable,1,11.95,07/30/19 10:27,"413 10th St, Los Angeles, CA 90001" -234395,USB-C Charging Cable,2,11.95,07/14/19 12:04,"131 South St, Seattle, WA 98101" -234396,Bose SoundSport Headphones,1,99.99,07/29/19 13:17,"675 Church St, Boston, MA 02215" -234397,Flatscreen TV,1,300,07/26/19 13:54,"780 Wilson St, Boston, MA 02215" -234398,Lightning Charging Cable,1,14.95,07/25/19 20:03,"882 South St, New York City, NY 10001" -234399,Google Phone,1,600,07/01/19 09:40,"388 10th St, Dallas, TX 75001" -234400,AA Batteries (4-pack),1,3.84,07/08/19 17:13,"327 13th St, Los Angeles, CA 90001" -234401,Wired Headphones,1,11.99,07/25/19 09:53,"872 Washington St, New York City, NY 10001" -234402,AAA Batteries (4-pack),1,2.99,07/24/19 13:01,"618 Chestnut St, San Francisco, CA 94016" -234403,AAA Batteries (4-pack),1,2.99,07/19/19 15:22,"411 Pine St, Atlanta, GA 30301" -234404,USB-C Charging Cable,1,11.95,07/07/19 16:04,"100 Lake St, Dallas, TX 75001" -234405,AAA Batteries (4-pack),1,2.99,07/02/19 12:27,"854 Pine St, Dallas, TX 75001" -234406,Wired Headphones,1,11.99,07/21/19 21:10,"135 Cedar St, San Francisco, CA 94016" -234407,Wired Headphones,1,11.99,07/12/19 13:34,"785 Lakeview St, Los Angeles, CA 90001" -234408,Macbook Pro Laptop,1,1700,07/22/19 07:03,"416 West St, San Francisco, CA 94016" -234409,Flatscreen TV,1,300,07/10/19 19:47,"710 West St, San Francisco, CA 94016" -234410,AA Batteries (4-pack),1,3.84,07/06/19 14:57,"132 10th St, Austin, TX 73301" -234411,27in FHD Monitor,1,149.99,07/17/19 08:43,"177 Park St, Dallas, TX 75001" -234412,Lightning Charging Cable,1,14.95,07/28/19 09:30,"322 10th St, Boston, MA 02215" -234413,Flatscreen TV,1,300,07/12/19 15:30,"567 South St, San Francisco, CA 94016" -234414,Wired Headphones,1,11.99,07/16/19 17:06,"510 11th St, Los Angeles, CA 90001" -234415,AAA Batteries (4-pack),1,2.99,07/02/19 00:45,"443 Highland St, New York City, NY 10001" -234416,AA Batteries (4-pack),1,3.84,07/21/19 23:05,"724 Hill St, Los Angeles, CA 90001" -234417,34in Ultrawide Monitor,1,379.99,07/25/19 17:28,"952 7th St, Seattle, WA 98101" -234418,34in Ultrawide Monitor,1,379.99,07/31/19 23:43,"552 Walnut St, Los Angeles, CA 90001" -234419,Flatscreen TV,1,300,07/22/19 17:17,"430 Park St, Atlanta, GA 30301" -234420,AA Batteries (4-pack),1,3.84,07/07/19 23:59,"46 Center St, Dallas, TX 75001" -234421,AAA Batteries (4-pack),1,2.99,07/15/19 17:59,"941 Pine St, San Francisco, CA 94016" -234422,AA Batteries (4-pack),2,3.84,07/05/19 08:30,"85 Sunset St, Boston, MA 02215" -234423,LG Dryer,1,600.0,07/10/19 06:02,"636 Madison St, New York City, NY 10001" -234424,AA Batteries (4-pack),1,3.84,07/26/19 19:40,"10 Adams St, Atlanta, GA 30301" -234425,27in FHD Monitor,1,149.99,07/01/19 15:32,"650 Center St, New York City, NY 10001" -234426,27in FHD Monitor,1,149.99,07/07/19 16:14,"855 4th St, San Francisco, CA 94016" -234427,34in Ultrawide Monitor,1,379.99,07/19/19 10:34,"624 West St, San Francisco, CA 94016" -234428,iPhone,1,700,07/05/19 00:09,"430 Maple St, Atlanta, GA 30301" -234429,USB-C Charging Cable,1,11.95,07/01/19 21:45,"214 Dogwood St, New York City, NY 10001" -234430,Lightning Charging Cable,1,14.95,07/04/19 14:30,"250 Pine St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -234431,USB-C Charging Cable,1,11.95,07/23/19 12:04,"852 Highland St, San Francisco, CA 94016" -234432,Lightning Charging Cable,1,14.95,07/22/19 17:29,"214 Washington St, Dallas, TX 75001" -234433,USB-C Charging Cable,1,11.95,07/03/19 11:41,"749 Maple St, New York City, NY 10001" -234434,34in Ultrawide Monitor,1,379.99,07/04/19 20:54,"650 Pine St, San Francisco, CA 94016" -234435,Bose SoundSport Headphones,1,99.99,07/26/19 12:07,"68 Highland St, San Francisco, CA 94016" -234436,AA Batteries (4-pack),1,3.84,07/24/19 08:25,"77 Church St, Los Angeles, CA 90001" -234437,USB-C Charging Cable,1,11.95,07/26/19 22:15,"620 Cherry St, Dallas, TX 75001" -234438,AA Batteries (4-pack),2,3.84,07/17/19 19:08,"821 Hickory St, Boston, MA 02215" -234439,AAA Batteries (4-pack),1,2.99,07/14/19 22:41,"967 Pine St, Boston, MA 02215" -234440,20in Monitor,1,109.99,07/07/19 13:20,"137 Forest St, Portland, OR 97035" -234441,AA Batteries (4-pack),1,3.84,07/27/19 15:41,"963 Elm St, New York City, NY 10001" -234442,Macbook Pro Laptop,1,1700,07/25/19 21:03,"885 Madison St, Los Angeles, CA 90001" -234443,USB-C Charging Cable,1,11.95,07/12/19 19:41,"932 North St, San Francisco, CA 94016" -234444,iPhone,1,700,07/10/19 20:17,"513 North St, Dallas, TX 75001" -234445,USB-C Charging Cable,1,11.95,07/03/19 12:04,"840 Cherry St, Seattle, WA 98101" -234446,USB-C Charging Cable,1,11.95,07/31/19 11:49,"710 Elm St, San Francisco, CA 94016" -234447,34in Ultrawide Monitor,1,379.99,07/08/19 00:22,"125 Wilson St, Dallas, TX 75001" -234448,Apple Airpods Headphones,1,150,07/01/19 14:16,"573 South St, Seattle, WA 98101" -234449,iPhone,1,700,07/28/19 19:02,"644 11th St, Dallas, TX 75001" -234450,Lightning Charging Cable,1,14.95,07/29/19 11:19,"611 Lincoln St, Los Angeles, CA 90001" -234451,Apple Airpods Headphones,1,150,07/06/19 19:40,"631 Lakeview St, San Francisco, CA 94016" -234452,Apple Airpods Headphones,1,150,07/15/19 10:47,"908 Willow St, Austin, TX 73301" -234453,Bose SoundSport Headphones,1,99.99,07/19/19 23:32,"53 8th St, Austin, TX 73301" -234454,Bose SoundSport Headphones,1,99.99,07/31/19 17:51,"533 Jefferson St, San Francisco, CA 94016" -234455,27in FHD Monitor,1,149.99,07/01/19 17:52,"133 4th St, Portland, ME 04101" -234456,Lightning Charging Cable,1,14.95,07/18/19 12:01,"429 Hickory St, Seattle, WA 98101" -234457,ThinkPad Laptop,1,999.99,07/18/19 14:08,"733 Walnut St, San Francisco, CA 94016" -234458,AA Batteries (4-pack),1,3.84,07/07/19 11:15,"908 Ridge St, Los Angeles, CA 90001" -234459,AA Batteries (4-pack),2,3.84,07/29/19 23:05,"678 8th St, New York City, NY 10001" -234460,Lightning Charging Cable,1,14.95,07/11/19 09:31,"800 Meadow St, Los Angeles, CA 90001" -234461,iPhone,1,700,07/31/19 19:34,"130 Center St, Seattle, WA 98101" -234462,Wired Headphones,1,11.99,07/16/19 20:34,"698 Washington St, New York City, NY 10001" -234463,Wired Headphones,1,11.99,07/20/19 15:25,"292 7th St, Los Angeles, CA 90001" -234464,Lightning Charging Cable,1,14.95,07/10/19 17:37,"230 4th St, San Francisco, CA 94016" -234465,Apple Airpods Headphones,1,150,07/05/19 20:27,"368 Cherry St, Seattle, WA 98101" -234466,34in Ultrawide Monitor,1,379.99,07/26/19 12:35,"588 Madison St, New York City, NY 10001" -234467,USB-C Charging Cable,1,11.95,07/16/19 13:37,"333 Cherry St, Dallas, TX 75001" -234468,ThinkPad Laptop,1,999.99,07/15/19 12:30,"896 River St, Atlanta, GA 30301" -234469,Apple Airpods Headphones,1,150,07/21/19 20:13,"448 Main St, Austin, TX 73301" -234470,Flatscreen TV,1,300,07/22/19 10:03,"418 Pine St, San Francisco, CA 94016" -234471,AAA Batteries (4-pack),1,2.99,07/24/19 16:23,"836 Willow St, Los Angeles, CA 90001" -234472,Wired Headphones,1,11.99,07/02/19 17:26,"703 Wilson St, Atlanta, GA 30301" -234473,34in Ultrawide Monitor,1,379.99,07/02/19 10:20,"975 1st St, Boston, MA 02215" -234474,iPhone,1,700,07/25/19 11:53,"285 Cedar St, San Francisco, CA 94016" -234474,Lightning Charging Cable,1,14.95,07/25/19 11:53,"285 Cedar St, San Francisco, CA 94016" -234475,Bose SoundSport Headphones,1,99.99,07/14/19 13:39,"35 Adams St, Dallas, TX 75001" -234476,Flatscreen TV,1,300,07/23/19 07:25,"683 Maple St, New York City, NY 10001" -234477,USB-C Charging Cable,1,11.95,07/09/19 13:39,"456 4th St, New York City, NY 10001" -234478,iPhone,1,700,07/28/19 12:05,"513 Elm St, Dallas, TX 75001" -234479,Google Phone,1,600,07/23/19 16:11,"834 Wilson St, Boston, MA 02215" -234480,AAA Batteries (4-pack),1,2.99,07/19/19 19:49,"767 Sunset St, San Francisco, CA 94016" -234481,Macbook Pro Laptop,1,1700,07/02/19 10:50,"299 9th St, San Francisco, CA 94016" -234482,Wired Headphones,1,11.99,07/05/19 11:31,"498 Lincoln St, New York City, NY 10001" -234483,USB-C Charging Cable,1,11.95,07/20/19 18:52,"844 Spruce St, Atlanta, GA 30301" -234483,AAA Batteries (4-pack),1,2.99,07/20/19 18:52,"844 Spruce St, Atlanta, GA 30301" -234484,Lightning Charging Cable,1,14.95,07/25/19 17:12,"519 River St, Boston, MA 02215" -234485,Macbook Pro Laptop,1,1700,07/14/19 16:51,"380 Wilson St, Atlanta, GA 30301" -234486,Lightning Charging Cable,1,14.95,07/08/19 13:29,"93 Lake St, Austin, TX 73301" -234487,Bose SoundSport Headphones,1,99.99,07/23/19 13:25,"225 Hill St, Dallas, TX 75001" -234488,Apple Airpods Headphones,1,150,07/09/19 20:26,"480 2nd St, Boston, MA 02215" -234489,Wired Headphones,1,11.99,07/16/19 10:15,"694 Wilson St, Austin, TX 73301" -234490,AA Batteries (4-pack),1,3.84,07/21/19 15:09,"683 Lakeview St, San Francisco, CA 94016" -234491,ThinkPad Laptop,1,999.99,07/13/19 06:49,"701 Highland St, New York City, NY 10001" -234492,Apple Airpods Headphones,1,150,07/31/19 22:36,"881 12th St, Atlanta, GA 30301" -234493,27in 4K Gaming Monitor,1,389.99,07/26/19 12:58,"730 Walnut St, Dallas, TX 75001" -234494,Wired Headphones,1,11.99,07/13/19 17:16,"40 9th St, San Francisco, CA 94016" -234495,Lightning Charging Cable,1,14.95,07/21/19 13:22,"454 Lake St, Dallas, TX 75001" -234496,Lightning Charging Cable,1,14.95,07/26/19 21:50,"424 Jackson St, Portland, OR 97035" -234497,Apple Airpods Headphones,1,150,07/19/19 01:00,"557 River St, Portland, OR 97035" -234498,Lightning Charging Cable,1,14.95,07/08/19 05:11,"328 Forest St, Los Angeles, CA 90001" -234499,AAA Batteries (4-pack),1,2.99,07/12/19 23:18,"729 Forest St, San Francisco, CA 94016" -234500,Lightning Charging Cable,1,14.95,07/14/19 22:40,"123 Meadow St, San Francisco, CA 94016" -234501,27in FHD Monitor,1,149.99,07/21/19 10:57,"886 Jefferson St, Portland, ME 04101" -234502,Apple Airpods Headphones,1,150,07/14/19 16:58,"417 Hickory St, Dallas, TX 75001" -234503,Flatscreen TV,1,300,07/24/19 15:33,"623 Church St, San Francisco, CA 94016" -234504,Lightning Charging Cable,1,14.95,07/08/19 18:04,"532 Lakeview St, Los Angeles, CA 90001" -234505,27in FHD Monitor,1,149.99,07/11/19 20:34,"753 Pine St, Portland, ME 04101" -234506,iPhone,1,700,07/27/19 05:47,"384 10th St, Austin, TX 73301" -234507,Lightning Charging Cable,1,14.95,07/17/19 14:41,"735 Main St, Dallas, TX 75001" -234508,Macbook Pro Laptop,1,1700,07/16/19 20:21,"52 West St, New York City, NY 10001" -234509,Wired Headphones,1,11.99,07/10/19 00:05,"534 1st St, Los Angeles, CA 90001" -234510,27in 4K Gaming Monitor,1,389.99,07/04/19 11:20,"937 Spruce St, Los Angeles, CA 90001" -234511,USB-C Charging Cable,1,11.95,07/30/19 21:05,"25 Chestnut St, Seattle, WA 98101" -234512,Lightning Charging Cable,1,14.95,07/01/19 13:30,"613 4th St, Seattle, WA 98101" -234513,Flatscreen TV,1,300,07/03/19 10:13,"894 14th St, New York City, NY 10001" -234514,USB-C Charging Cable,2,11.95,07/20/19 16:45,"378 Highland St, New York City, NY 10001" -234515,Apple Airpods Headphones,1,150,07/14/19 22:37,"210 13th St, Seattle, WA 98101" -234516,Wired Headphones,1,11.99,07/08/19 11:28,"637 9th St, Seattle, WA 98101" -234517,27in FHD Monitor,1,149.99,07/06/19 12:03,"976 Chestnut St, Dallas, TX 75001" -234518,AAA Batteries (4-pack),1,2.99,07/02/19 17:14,"874 Highland St, Atlanta, GA 30301" -234519,USB-C Charging Cable,1,11.95,07/31/19 11:30,"71 Spruce St, San Francisco, CA 94016" -234520,Wired Headphones,1,11.99,07/11/19 13:08,"499 Cherry St, New York City, NY 10001" -234521,Bose SoundSport Headphones,1,99.99,07/13/19 23:12,"197 Main St, San Francisco, CA 94016" -234522,27in 4K Gaming Monitor,1,389.99,07/27/19 11:29,"575 Spruce St, Los Angeles, CA 90001" -234523,AAA Batteries (4-pack),1,2.99,07/23/19 18:04,"644 8th St, Los Angeles, CA 90001" -234524,Lightning Charging Cable,1,14.95,07/09/19 20:46,"383 5th St, Los Angeles, CA 90001" -234525,AAA Batteries (4-pack),3,2.99,07/12/19 07:47,"711 Spruce St, Los Angeles, CA 90001" -234526,AA Batteries (4-pack),2,3.84,07/27/19 13:00,"319 Pine St, Austin, TX 73301" -234527,AA Batteries (4-pack),1,3.84,07/22/19 22:48,"194 River St, Atlanta, GA 30301" -234528,AAA Batteries (4-pack),1,2.99,07/21/19 10:34,"461 11th St, Boston, MA 02215" -234529,USB-C Charging Cable,1,11.95,07/22/19 12:56,"247 11th St, Austin, TX 73301" -234530,27in 4K Gaming Monitor,1,389.99,07/15/19 17:13,"242 Washington St, San Francisco, CA 94016" -234531,Vareebadd Phone,1,400,07/29/19 17:10,"332 Pine St, Seattle, WA 98101" -234532,27in 4K Gaming Monitor,1,389.99,07/30/19 16:45,"743 Jackson St, San Francisco, CA 94016" -234533,AA Batteries (4-pack),2,3.84,07/18/19 20:17,"937 Lake St, Boston, MA 02215" -234534,AA Batteries (4-pack),1,3.84,07/18/19 20:18,"571 Adams St, San Francisco, CA 94016" -234535,AAA Batteries (4-pack),1,2.99,07/08/19 17:58,"477 River St, Los Angeles, CA 90001" -234536,Wired Headphones,1,11.99,07/11/19 17:03,"483 Spruce St, Los Angeles, CA 90001" -234537,AAA Batteries (4-pack),1,2.99,07/05/19 18:52,"413 Sunset St, Los Angeles, CA 90001" -234538,27in 4K Gaming Monitor,1,389.99,07/08/19 10:34,"577 8th St, San Francisco, CA 94016" -234539,27in 4K Gaming Monitor,1,389.99,07/18/19 17:13,"88 Adams St, San Francisco, CA 94016" -234540,AAA Batteries (4-pack),1,2.99,07/04/19 14:55,"234 7th St, Boston, MA 02215" -234541,AA Batteries (4-pack),1,3.84,07/23/19 12:23,"939 Maple St, Los Angeles, CA 90001" -234542,Bose SoundSport Headphones,1,99.99,07/21/19 08:27,"779 Church St, New York City, NY 10001" -234543,AA Batteries (4-pack),1,3.84,07/16/19 02:37,"589 Maple St, San Francisco, CA 94016" -234544,27in FHD Monitor,1,149.99,07/09/19 21:18,"795 River St, New York City, NY 10001" -234545,AA Batteries (4-pack),1,3.84,07/05/19 15:30,"634 Pine St, Atlanta, GA 30301" -234546,34in Ultrawide Monitor,1,379.99,07/20/19 10:00,"810 5th St, Austin, TX 73301" -234547,Apple Airpods Headphones,1,150,07/09/19 19:34,"882 Lake St, San Francisco, CA 94016" -234548,LG Dryer,1,600.0,07/22/19 16:16,"696 13th St, Los Angeles, CA 90001" -234549,Lightning Charging Cable,1,14.95,07/06/19 15:07,"329 Willow St, Austin, TX 73301" -234550,USB-C Charging Cable,1,11.95,07/20/19 07:29,"107 Spruce St, Atlanta, GA 30301" -234551,34in Ultrawide Monitor,1,379.99,07/20/19 21:29,"36 Chestnut St, Austin, TX 73301" -234552,20in Monitor,1,109.99,07/26/19 19:15,"862 River St, Austin, TX 73301" -234553,Lightning Charging Cable,1,14.95,07/26/19 20:34,"618 Park St, Boston, MA 02215" -234554,Apple Airpods Headphones,1,150,07/29/19 18:09,"21 14th St, Los Angeles, CA 90001" -234555,27in FHD Monitor,1,149.99,07/20/19 17:51,"878 Chestnut St, Boston, MA 02215" -234556,Macbook Pro Laptop,1,1700,07/02/19 09:53,"933 Spruce St, Los Angeles, CA 90001" -234557,USB-C Charging Cable,1,11.95,07/02/19 21:44,"644 Madison St, Los Angeles, CA 90001" -234558,AA Batteries (4-pack),2,3.84,07/24/19 21:34,"574 Johnson St, New York City, NY 10001" -234559,27in 4K Gaming Monitor,1,389.99,07/29/19 14:43,"966 1st St, Boston, MA 02215" -234560,AA Batteries (4-pack),1,3.84,07/21/19 13:36,"371 Johnson St, San Francisco, CA 94016" -234561,AA Batteries (4-pack),2,3.84,07/13/19 15:00,"72 Lake St, Los Angeles, CA 90001" -234562,Lightning Charging Cable,1,14.95,07/27/19 09:19,"761 Forest St, Portland, ME 04101" -234563,Wired Headphones,1,11.99,07/07/19 18:45,"509 10th St, San Francisco, CA 94016" -234564,Bose SoundSport Headphones,1,99.99,07/26/19 18:20,"918 11th St, Portland, OR 97035" -234565,iPhone,1,700,07/08/19 16:26,"577 Park St, Los Angeles, CA 90001" -234566,27in FHD Monitor,1,149.99,07/23/19 10:09,"788 5th St, Los Angeles, CA 90001" -234567,Lightning Charging Cable,1,14.95,07/06/19 23:32,"569 Ridge St, Dallas, TX 75001" -234568,Bose SoundSport Headphones,1,99.99,07/25/19 18:59,"407 Forest St, Atlanta, GA 30301" -234569,Apple Airpods Headphones,1,150,07/27/19 11:50,"531 Park St, San Francisco, CA 94016" -234570,20in Monitor,1,109.99,07/11/19 21:28,"655 Cedar St, Los Angeles, CA 90001" -234571,AAA Batteries (4-pack),2,2.99,07/16/19 10:29,"660 Center St, Los Angeles, CA 90001" -234572,20in Monitor,1,109.99,07/01/19 18:10,"365 Washington St, New York City, NY 10001" -234573,iPhone,1,700,07/26/19 11:05,"830 11th St, Austin, TX 73301" -234574,Bose SoundSport Headphones,1,99.99,07/24/19 18:24,"292 Main St, Dallas, TX 75001" -234575,AA Batteries (4-pack),1,3.84,07/22/19 20:36,"657 Pine St, Atlanta, GA 30301" -234576,Flatscreen TV,1,300,07/16/19 09:38,"676 Hickory St, Dallas, TX 75001" -234577,Apple Airpods Headphones,1,150,07/13/19 17:30,"323 South St, Seattle, WA 98101" -234578,AA Batteries (4-pack),1,3.84,07/01/19 11:04,"112 11th St, Los Angeles, CA 90001" -234579,iPhone,1,700,07/10/19 12:18,"495 11th St, Dallas, TX 75001" -234580,AAA Batteries (4-pack),1,2.99,07/12/19 13:57,"197 Pine St, San Francisco, CA 94016" -234581,Wired Headphones,1,11.99,07/23/19 17:49,"171 River St, Dallas, TX 75001" -234582,Lightning Charging Cable,1,14.95,07/18/19 11:41,"316 9th St, New York City, NY 10001" -234583,iPhone,1,700,07/22/19 06:49,"146 5th St, Boston, MA 02215" -234583,Lightning Charging Cable,1,14.95,07/22/19 06:49,"146 5th St, Boston, MA 02215" -234584,27in FHD Monitor,1,149.99,07/01/19 11:36,"257 Elm St, Boston, MA 02215" -234585,34in Ultrawide Monitor,1,379.99,07/20/19 03:41,"214 Hickory St, San Francisco, CA 94016" -234586,AA Batteries (4-pack),2,3.84,07/21/19 18:07,"143 Willow St, Los Angeles, CA 90001" -234587,20in Monitor,1,109.99,07/12/19 10:33,"23 Walnut St, New York City, NY 10001" -234588,Lightning Charging Cable,1,14.95,07/16/19 09:48,"131 Ridge St, Los Angeles, CA 90001" -234589,Bose SoundSport Headphones,1,99.99,07/14/19 11:00,"339 Main St, New York City, NY 10001" -234590,Google Phone,1,600,07/13/19 08:45,"247 Main St, Boston, MA 02215" -234590,Bose SoundSport Headphones,1,99.99,07/13/19 08:45,"247 Main St, Boston, MA 02215" -234591,LG Washing Machine,1,600.0,07/13/19 15:31,"380 Maple St, San Francisco, CA 94016" -234592,27in FHD Monitor,1,149.99,07/27/19 10:04,"265 North St, Los Angeles, CA 90001" -234593,27in 4K Gaming Monitor,1,389.99,07/09/19 15:32,"680 2nd St, Los Angeles, CA 90001" -234594,20in Monitor,1,109.99,07/06/19 10:00,"822 South St, Seattle, WA 98101" -234595,Wired Headphones,1,11.99,07/22/19 06:57,"651 10th St, Los Angeles, CA 90001" -234596,Bose SoundSport Headphones,1,99.99,07/18/19 18:47,"745 4th St, Atlanta, GA 30301" -234597,ThinkPad Laptop,1,999.99,07/11/19 13:52,"940 Hickory St, Portland, OR 97035" -234598,AA Batteries (4-pack),2,3.84,07/17/19 23:08,"425 Maple St, Boston, MA 02215" -234599,AAA Batteries (4-pack),1,2.99,07/13/19 11:33,"844 9th St, San Francisco, CA 94016" -234600,27in 4K Gaming Monitor,1,389.99,07/08/19 17:19,"149 10th St, Austin, TX 73301" -234601,AAA Batteries (4-pack),2,2.99,07/10/19 15:23,"756 River St, San Francisco, CA 94016" -234602,Bose SoundSport Headphones,1,99.99,07/03/19 15:22,"386 9th St, Atlanta, GA 30301" -234603,AA Batteries (4-pack),1,3.84,07/31/19 22:01,"579 10th St, Boston, MA 02215" -234604,Apple Airpods Headphones,1,150,07/15/19 22:43,"532 Wilson St, Los Angeles, CA 90001" -234605,Wired Headphones,1,11.99,07/23/19 06:01,"548 Meadow St, San Francisco, CA 94016" -234606,AA Batteries (4-pack),2,3.84,07/09/19 07:20,"749 12th St, New York City, NY 10001" -234607,Bose SoundSport Headphones,1,99.99,07/04/19 19:04,"940 Adams St, San Francisco, CA 94016" -234608,AAA Batteries (4-pack),1,2.99,07/05/19 15:17,"53 Cherry St, San Francisco, CA 94016" -234609,AA Batteries (4-pack),1,3.84,07/10/19 10:43,"960 Jefferson St, San Francisco, CA 94016" -234610,Lightning Charging Cable,1,14.95,07/19/19 01:17,"242 2nd St, Boston, MA 02215" -234611,AA Batteries (4-pack),2,3.84,07/20/19 19:22,"4 Cedar St, Austin, TX 73301" -234612,Apple Airpods Headphones,1,150,07/28/19 19:00,"595 Washington St, New York City, NY 10001" -234613,Apple Airpods Headphones,1,150,07/30/19 21:56,"250 Cherry St, San Francisco, CA 94016" -234614,Apple Airpods Headphones,1,150,07/14/19 13:59,"809 Willow St, Austin, TX 73301" -234615,20in Monitor,1,109.99,07/16/19 11:17,"745 Dogwood St, Dallas, TX 75001" -234616,Lightning Charging Cable,1,14.95,07/09/19 18:21,"172 Madison St, Los Angeles, CA 90001" -234617,ThinkPad Laptop,1,999.99,07/29/19 14:55,"332 North St, Atlanta, GA 30301" -234618,USB-C Charging Cable,1,11.95,07/17/19 22:02,"699 2nd St, Boston, MA 02215" -234619,AAA Batteries (4-pack),1,2.99,07/05/19 04:42,"173 7th St, Boston, MA 02215" -234620,AA Batteries (4-pack),1,3.84,07/04/19 12:12,"664 North St, Los Angeles, CA 90001" -234621,Apple Airpods Headphones,1,150,07/19/19 07:11,"960 14th St, Portland, OR 97035" -234622,AAA Batteries (4-pack),1,2.99,07/15/19 05:19,"658 4th St, San Francisco, CA 94016" -234623,Macbook Pro Laptop,1,1700,07/10/19 11:22,"360 10th St, Atlanta, GA 30301" -234624,AAA Batteries (4-pack),1,2.99,07/30/19 23:32,"361 West St, Dallas, TX 75001" -234625,Wired Headphones,1,11.99,07/10/19 14:31,"560 Lakeview St, San Francisco, CA 94016" -234626,Bose SoundSport Headphones,1,99.99,07/03/19 07:42,"54 Church St, San Francisco, CA 94016" -234627,Wired Headphones,1,11.99,07/26/19 18:29,"305 12th St, New York City, NY 10001" -234628,AA Batteries (4-pack),2,3.84,07/21/19 21:09,"224 11th St, Los Angeles, CA 90001" -234628,Bose SoundSport Headphones,1,99.99,07/21/19 21:09,"224 11th St, Los Angeles, CA 90001" -234629,USB-C Charging Cable,2,11.95,07/13/19 19:10,"448 Madison St, Seattle, WA 98101" -234630,AAA Batteries (4-pack),1,2.99,07/07/19 11:23,"990 Spruce St, Atlanta, GA 30301" -234631,Apple Airpods Headphones,1,150,07/29/19 22:06,"76 Adams St, San Francisco, CA 94016" -234631,Bose SoundSport Headphones,1,99.99,07/29/19 22:06,"76 Adams St, San Francisco, CA 94016" -234632,27in 4K Gaming Monitor,1,389.99,07/05/19 00:41,"126 Hill St, Atlanta, GA 30301" -234633,Macbook Pro Laptop,1,1700,07/23/19 09:50,"315 Hickory St, Austin, TX 73301" -234634,27in 4K Gaming Monitor,1,389.99,07/04/19 22:26,"542 11th St, Boston, MA 02215" -234635,Google Phone,1,600,07/05/19 14:51,"675 Wilson St, Boston, MA 02215" -234636,ThinkPad Laptop,1,999.99,07/21/19 14:37,"913 Sunset St, Boston, MA 02215" -234637,AA Batteries (4-pack),2,3.84,07/27/19 15:29,"421 14th St, Boston, MA 02215" -234638,Apple Airpods Headphones,1,150,07/22/19 10:21,"746 West St, Seattle, WA 98101" -234639,AA Batteries (4-pack),2,3.84,07/29/19 01:26,"572 Maple St, Atlanta, GA 30301" -234640,AA Batteries (4-pack),1,3.84,07/06/19 14:41,"500 Dogwood St, San Francisco, CA 94016" -234641,AA Batteries (4-pack),1,3.84,07/18/19 17:16,"857 Jefferson St, Seattle, WA 98101" -234642,34in Ultrawide Monitor,1,379.99,07/08/19 11:30,"236 5th St, New York City, NY 10001" -234643,iPhone,1,700,07/04/19 12:30,"22 Meadow St, San Francisco, CA 94016" -234644,USB-C Charging Cable,1,11.95,07/10/19 19:55,"750 6th St, San Francisco, CA 94016" -234645,Macbook Pro Laptop,1,1700,07/15/19 08:21,"252 Ridge St, Dallas, TX 75001" -234646,27in FHD Monitor,1,149.99,07/22/19 16:06,"92 Wilson St, Los Angeles, CA 90001" -234647,Lightning Charging Cable,1,14.95,07/13/19 19:06,"485 Sunset St, San Francisco, CA 94016" -234648,USB-C Charging Cable,2,11.95,07/23/19 09:35,"210 Spruce St, San Francisco, CA 94016" -234649,27in 4K Gaming Monitor,1,389.99,07/15/19 22:06,"57 Center St, San Francisco, CA 94016" -234650,Flatscreen TV,1,300,07/12/19 19:58,"202 Dogwood St, Los Angeles, CA 90001" -234651,ThinkPad Laptop,1,999.99,07/26/19 22:05,"7 Wilson St, San Francisco, CA 94016" -234652,Wired Headphones,1,11.99,07/02/19 14:50,"330 River St, San Francisco, CA 94016" -234653,USB-C Charging Cable,2,11.95,07/03/19 20:39,"423 South St, San Francisco, CA 94016" -234654,USB-C Charging Cable,1,11.95,07/07/19 23:55,"29 Chestnut St, San Francisco, CA 94016" -234655,Flatscreen TV,1,300,07/13/19 18:51,"278 Center St, Dallas, TX 75001" -234656,AAA Batteries (4-pack),5,2.99,07/22/19 19:31,"997 South St, San Francisco, CA 94016" -234657,Lightning Charging Cable,1,14.95,07/24/19 01:44,"853 Walnut St, Boston, MA 02215" -234658,Macbook Pro Laptop,1,1700,07/21/19 13:15,"969 8th St, Austin, TX 73301" -234659,USB-C Charging Cable,1,11.95,07/06/19 09:11,"382 7th St, Los Angeles, CA 90001" -234659,Lightning Charging Cable,1,14.95,07/06/19 09:11,"382 7th St, Los Angeles, CA 90001" -234660,Apple Airpods Headphones,1,150,07/10/19 19:37,"707 Main St, Seattle, WA 98101" -234661,Bose SoundSport Headphones,1,99.99,07/13/19 16:48,"682 Chestnut St, Los Angeles, CA 90001" -234662,AA Batteries (4-pack),1,3.84,07/12/19 12:58,"486 Lakeview St, San Francisco, CA 94016" -234663,Wired Headphones,1,11.99,07/07/19 19:19,"306 8th St, New York City, NY 10001" -234664,AA Batteries (4-pack),2,3.84,07/09/19 19:38,"746 Highland St, New York City, NY 10001" -234665,ThinkPad Laptop,1,999.99,07/22/19 01:01,"48 Ridge St, New York City, NY 10001" -234666,Apple Airpods Headphones,1,150,07/03/19 22:38,"890 5th St, Atlanta, GA 30301" -234667,Apple Airpods Headphones,1,150,07/09/19 19:08,"866 Highland St, Portland, OR 97035" -234668,AA Batteries (4-pack),2,3.84,07/24/19 15:07,"718 Church St, San Francisco, CA 94016" -234669,Google Phone,1,600,07/18/19 10:43,"524 Jefferson St, Los Angeles, CA 90001" -234670,USB-C Charging Cable,1,11.95,07/15/19 13:01,"980 Jefferson St, San Francisco, CA 94016" -234670,AA Batteries (4-pack),1,3.84,07/15/19 13:01,"980 Jefferson St, San Francisco, CA 94016" -234671,Lightning Charging Cable,1,14.95,07/21/19 22:48,"792 5th St, New York City, NY 10001" -234672,Apple Airpods Headphones,1,150,07/12/19 09:07,"374 12th St, Seattle, WA 98101" -234673,AAA Batteries (4-pack),1,2.99,07/22/19 15:03,"772 4th St, Los Angeles, CA 90001" -234674,Apple Airpods Headphones,1,150,07/24/19 01:08,"820 2nd St, Dallas, TX 75001" -234675,AA Batteries (4-pack),1,3.84,07/18/19 13:46,"426 Meadow St, New York City, NY 10001" -234676,27in FHD Monitor,1,149.99,07/09/19 23:19,"261 5th St, Boston, MA 02215" -234677,Google Phone,1,600,07/17/19 09:20,"969 Madison St, Seattle, WA 98101" -234678,20in Monitor,1,109.99,07/21/19 12:20,"767 2nd St, Boston, MA 02215" -234679,Google Phone,1,600,07/08/19 20:17,"166 Willow St, Dallas, TX 75001" -234680,20in Monitor,1,109.99,07/19/19 04:14,"83 Wilson St, San Francisco, CA 94016" -234681,AA Batteries (4-pack),1,3.84,07/03/19 15:58,"490 South St, San Francisco, CA 94016" -234682,Bose SoundSport Headphones,1,99.99,07/28/19 20:12,"67 Park St, New York City, NY 10001" -234683,AA Batteries (4-pack),3,3.84,07/20/19 23:57,"624 Maple St, Boston, MA 02215" -234684,Lightning Charging Cable,1,14.95,07/20/19 21:23,"386 14th St, Boston, MA 02215" -234685,20in Monitor,1,109.99,07/18/19 21:14,"450 Johnson St, San Francisco, CA 94016" -234686,Apple Airpods Headphones,1,150,07/27/19 09:36,"833 Adams St, Boston, MA 02215" -234687,USB-C Charging Cable,1,11.95,07/16/19 23:18,"344 Jackson St, Atlanta, GA 30301" -234688,34in Ultrawide Monitor,1,379.99,07/14/19 21:26,"995 West St, Los Angeles, CA 90001" -234689,Bose SoundSport Headphones,1,99.99,07/27/19 14:11,"445 1st St, Atlanta, GA 30301" -234690,34in Ultrawide Monitor,1,379.99,07/08/19 21:14,"554 Jackson St, Seattle, WA 98101" -234691,Lightning Charging Cable,1,14.95,07/20/19 11:16,"759 Forest St, Seattle, WA 98101" -234692,Wired Headphones,1,11.99,07/12/19 08:27,"188 Jefferson St, Los Angeles, CA 90001" -234693,27in 4K Gaming Monitor,1,389.99,07/16/19 19:03,"687 Forest St, San Francisco, CA 94016" -234694,Apple Airpods Headphones,1,150,07/22/19 10:37,"828 Willow St, Los Angeles, CA 90001" -234695,Apple Airpods Headphones,1,150,07/04/19 17:01,"316 North St, Seattle, WA 98101" -234696,Lightning Charging Cable,1,14.95,07/24/19 12:28,"18 4th St, Boston, MA 02215" -234697,USB-C Charging Cable,1,11.95,07/20/19 15:55,"380 Willow St, San Francisco, CA 94016" -234698,27in 4K Gaming Monitor,1,389.99,07/02/19 16:59,"414 Park St, Seattle, WA 98101" -234699,Apple Airpods Headphones,1,150,07/25/19 13:14,"694 West St, Boston, MA 02215" -234700,AA Batteries (4-pack),1,3.84,07/26/19 11:17,"599 North St, Los Angeles, CA 90001" -234701,34in Ultrawide Monitor,1,379.99,07/03/19 19:29,"409 Center St, Portland, OR 97035" -234702,USB-C Charging Cable,1,11.95,07/02/19 10:04,"719 Hill St, New York City, NY 10001" -234703,AAA Batteries (4-pack),2,2.99,07/04/19 18:06,"472 Park St, Austin, TX 73301" -234704,USB-C Charging Cable,1,11.95,07/14/19 13:20,"358 Adams St, Boston, MA 02215" -234705,Flatscreen TV,1,300,07/06/19 20:47,"166 South St, Portland, OR 97035" -234706,Lightning Charging Cable,1,14.95,07/06/19 19:00,"99 Jefferson St, Atlanta, GA 30301" -234707,Lightning Charging Cable,1,14.95,07/21/19 20:34,"737 Pine St, San Francisco, CA 94016" -234708,Apple Airpods Headphones,1,150,07/24/19 14:48,"107 14th St, San Francisco, CA 94016" -234709,27in FHD Monitor,1,149.99,07/29/19 16:17,"764 1st St, San Francisco, CA 94016" -234710,AA Batteries (4-pack),1,3.84,07/16/19 20:54,"838 Center St, Atlanta, GA 30301" -234711,Google Phone,1,600,07/13/19 22:56,"952 6th St, New York City, NY 10001" -234712,iPhone,1,700,07/04/19 23:40,"782 2nd St, Seattle, WA 98101" -234712,Lightning Charging Cable,1,14.95,07/04/19 23:40,"782 2nd St, Seattle, WA 98101" -234713,AAA Batteries (4-pack),2,2.99,07/04/19 17:35,"689 Washington St, New York City, NY 10001" -234714,AAA Batteries (4-pack),3,2.99,07/19/19 16:25,"37 North St, Dallas, TX 75001" -234715,Lightning Charging Cable,1,14.95,07/28/19 21:55,"399 Church St, Portland, OR 97035" -234716,Wired Headphones,2,11.99,07/13/19 17:31,"609 Meadow St, Los Angeles, CA 90001" -234717,AA Batteries (4-pack),1,3.84,07/09/19 10:13,"274 7th St, San Francisco, CA 94016" -234718,Wired Headphones,1,11.99,07/20/19 22:22,"113 Wilson St, Austin, TX 73301" -234719,ThinkPad Laptop,1,999.99,07/26/19 17:28,"451 Maple St, San Francisco, CA 94016" -234720,20in Monitor,1,109.99,07/22/19 05:32,"81 Hill St, Dallas, TX 75001" -234721,AA Batteries (4-pack),1,3.84,07/28/19 23:07,"715 Hill St, San Francisco, CA 94016" -234722,USB-C Charging Cable,1,11.95,07/03/19 00:17,"365 1st St, Austin, TX 73301" -234723,iPhone,1,700,07/21/19 15:33,"292 12th St, New York City, NY 10001" -234724,USB-C Charging Cable,2,11.95,07/02/19 15:24,"162 Chestnut St, Los Angeles, CA 90001" -234725,Lightning Charging Cable,1,14.95,07/18/19 11:23,"145 2nd St, Portland, OR 97035" -234726,34in Ultrawide Monitor,1,379.99,07/25/19 10:08,"741 Elm St, Boston, MA 02215" -234727,USB-C Charging Cable,1,11.95,07/01/19 19:23,"262 8th St, New York City, NY 10001" -234728,Macbook Pro Laptop,1,1700,07/03/19 12:51,"90 5th St, Los Angeles, CA 90001" -234729,Apple Airpods Headphones,1,150,07/07/19 23:20,"92 6th St, Seattle, WA 98101" -234730,USB-C Charging Cable,1,11.95,07/10/19 17:38,"366 5th St, Los Angeles, CA 90001" -234731,AAA Batteries (4-pack),1,2.99,07/25/19 18:56,"309 13th St, Dallas, TX 75001" -234732,Bose SoundSport Headphones,1,99.99,07/11/19 12:52,"616 2nd St, Los Angeles, CA 90001" -234733,USB-C Charging Cable,1,11.95,07/20/19 15:08,"780 Center St, New York City, NY 10001" -234734,Bose SoundSport Headphones,1,99.99,07/11/19 14:52,"98 Washington St, New York City, NY 10001" -234735,27in 4K Gaming Monitor,1,389.99,07/26/19 10:21,"595 Cherry St, Portland, ME 04101" -234736,Lightning Charging Cable,1,14.95,07/21/19 13:53,"734 7th St, Los Angeles, CA 90001" -234737,Apple Airpods Headphones,1,150,07/31/19 06:22,"521 Washington St, Los Angeles, CA 90001" -234737,USB-C Charging Cable,1,11.95,07/31/19 06:22,"521 Washington St, Los Angeles, CA 90001" -234738,AA Batteries (4-pack),1,3.84,07/16/19 12:03,"582 1st St, Austin, TX 73301" -234739,AA Batteries (4-pack),2,3.84,07/30/19 13:38,"170 Walnut St, Los Angeles, CA 90001" -234740,27in 4K Gaming Monitor,1,389.99,07/11/19 17:25,"83 Walnut St, New York City, NY 10001" -234741,iPhone,1,700,07/04/19 22:30,"512 Forest St, New York City, NY 10001" -234742,AA Batteries (4-pack),1,3.84,07/05/19 10:52,"140 2nd St, San Francisco, CA 94016" -234743,AA Batteries (4-pack),1,3.84,07/29/19 18:04,"95 Walnut St, Los Angeles, CA 90001" -234744,Bose SoundSport Headphones,1,99.99,07/22/19 21:31,"49 Sunset St, Atlanta, GA 30301" -234745,20in Monitor,1,109.99,07/14/19 21:24,"631 12th St, San Francisco, CA 94016" -234746,Wired Headphones,1,11.99,07/09/19 09:12,"826 North St, Los Angeles, CA 90001" -234747,Flatscreen TV,1,300,07/30/19 12:08,"234 8th St, Los Angeles, CA 90001" -234748,Lightning Charging Cable,2,14.95,07/12/19 23:19,"863 8th St, San Francisco, CA 94016" -234749,Bose SoundSport Headphones,1,99.99,07/03/19 21:03,"630 Hickory St, San Francisco, CA 94016" -234750,Macbook Pro Laptop,1,1700,07/01/19 20:52,"587 9th St, Boston, MA 02215" -234751,iPhone,1,700,07/09/19 22:45,"31 9th St, Portland, OR 97035" -234752,Apple Airpods Headphones,1,150,07/04/19 14:47,"582 North St, Boston, MA 02215" -234753,USB-C Charging Cable,1,11.95,07/14/19 10:09,"988 Forest St, New York City, NY 10001" -234754,AA Batteries (4-pack),1,3.84,07/07/19 15:27,"437 Dogwood St, Los Angeles, CA 90001" -234755,USB-C Charging Cable,1,11.95,07/15/19 14:41,"716 Washington St, San Francisco, CA 94016" -234756,Lightning Charging Cable,1,14.95,07/14/19 10:48,"28 Elm St, New York City, NY 10001" -234757,AAA Batteries (4-pack),2,2.99,07/15/19 19:20,"909 Adams St, San Francisco, CA 94016" -234758,Lightning Charging Cable,2,14.95,07/09/19 15:07,"391 5th St, Seattle, WA 98101" -234759,ThinkPad Laptop,1,999.99,07/03/19 21:56,"298 5th St, Dallas, TX 75001" -234760,LG Dryer,1,600.0,07/12/19 22:06,"591 Johnson St, San Francisco, CA 94016" -234761,27in 4K Gaming Monitor,1,389.99,07/12/19 18:26,"819 Chestnut St, San Francisco, CA 94016" -234762,Wired Headphones,1,11.99,07/22/19 13:12,"62 Jefferson St, Los Angeles, CA 90001" -234762,Apple Airpods Headphones,1,150,07/22/19 13:12,"62 Jefferson St, Los Angeles, CA 90001" -234763,AA Batteries (4-pack),1,3.84,07/12/19 22:51,"565 Highland St, San Francisco, CA 94016" -234764,20in Monitor,1,109.99,07/06/19 19:34,"448 South St, Boston, MA 02215" -234765,iPhone,1,700,07/18/19 19:08,"452 Park St, Atlanta, GA 30301" -234766,Wired Headphones,1,11.99,07/07/19 15:04,"482 South St, Seattle, WA 98101" -234767,USB-C Charging Cable,1,11.95,07/13/19 18:13,"121 14th St, Boston, MA 02215" -234768,Bose SoundSport Headphones,1,99.99,07/16/19 13:19,"289 12th St, Atlanta, GA 30301" -234769,Bose SoundSport Headphones,1,99.99,07/04/19 14:08,"443 Cedar St, Los Angeles, CA 90001" -234770,USB-C Charging Cable,1,11.95,07/15/19 13:04,"491 Jackson St, Dallas, TX 75001" -234771,27in FHD Monitor,1,149.99,07/09/19 22:26,"680 West St, San Francisco, CA 94016" -234772,34in Ultrawide Monitor,1,379.99,07/10/19 12:38,"689 South St, Los Angeles, CA 90001" -234773,Vareebadd Phone,1,400,07/10/19 14:29,"225 North St, Dallas, TX 75001" -234774,Lightning Charging Cable,3,14.95,07/25/19 20:09,"408 North St, San Francisco, CA 94016" -234775,USB-C Charging Cable,1,11.95,07/15/19 11:59,"368 South St, Atlanta, GA 30301" -234776,USB-C Charging Cable,1,11.95,07/06/19 20:54,"459 South St, San Francisco, CA 94016" -234777,AAA Batteries (4-pack),1,2.99,07/19/19 09:35,"442 Center St, Los Angeles, CA 90001" -234778,20in Monitor,1,109.99,07/23/19 17:48,"71 Adams St, Atlanta, GA 30301" -234779,Lightning Charging Cable,1,14.95,07/15/19 11:56,"735 Dogwood St, Portland, OR 97035" -234780,Google Phone,1,600,07/15/19 21:38,"507 Meadow St, New York City, NY 10001" -234781,AA Batteries (4-pack),1,3.84,07/22/19 13:38,"742 Lincoln St, Boston, MA 02215" -234782,Lightning Charging Cable,1,14.95,07/19/19 02:29,"411 Forest St, Los Angeles, CA 90001" -234783,27in 4K Gaming Monitor,1,389.99,07/28/19 19:09,"242 Maple St, New York City, NY 10001" -234784,Wired Headphones,2,11.99,07/07/19 09:30,"74 10th St, Austin, TX 73301" -234785,AAA Batteries (4-pack),1,2.99,07/31/19 18:35,"247 Lakeview St, San Francisco, CA 94016" -234786,AAA Batteries (4-pack),1,2.99,07/31/19 17:05,"858 10th St, New York City, NY 10001" -234787,Wired Headphones,1,11.99,07/03/19 20:46,"367 12th St, Seattle, WA 98101" -234788,Macbook Pro Laptop,1,1700,07/10/19 17:46,"652 9th St, Seattle, WA 98101" -234789,34in Ultrawide Monitor,1,379.99,07/15/19 15:06,"114 4th St, Seattle, WA 98101" -234790,AAA Batteries (4-pack),1,2.99,07/20/19 14:52,"90 Church St, Los Angeles, CA 90001" -234791,20in Monitor,1,109.99,07/03/19 13:50,"681 Ridge St, San Francisco, CA 94016" -234792,Macbook Pro Laptop,1,1700,07/29/19 10:31,"456 Main St, Seattle, WA 98101" -234793,Apple Airpods Headphones,1,150,07/06/19 13:45,"691 Jackson St, Atlanta, GA 30301" -234794,AAA Batteries (4-pack),2,2.99,07/18/19 00:04,"391 Ridge St, New York City, NY 10001" -234795,AAA Batteries (4-pack),3,2.99,07/07/19 20:26,"467 8th St, New York City, NY 10001" -234796,Apple Airpods Headphones,1,150,07/19/19 23:30,"987 5th St, Los Angeles, CA 90001" -234797,27in FHD Monitor,1,149.99,07/22/19 00:19,"641 Main St, San Francisco, CA 94016" -234798,Apple Airpods Headphones,1,150,07/09/19 19:47,"559 13th St, San Francisco, CA 94016" -234799,Apple Airpods Headphones,1,150,07/18/19 15:14,"752 5th St, Los Angeles, CA 90001" -234800,USB-C Charging Cable,1,11.95,07/14/19 21:12,"69 8th St, Seattle, WA 98101" -234801,iPhone,1,700,07/26/19 22:54,"332 North St, San Francisco, CA 94016" -234802,27in 4K Gaming Monitor,1,389.99,07/20/19 11:31,"595 Elm St, Dallas, TX 75001" -234803,USB-C Charging Cable,1,11.95,07/30/19 13:53,"964 Lake St, Boston, MA 02215" -234804,AAA Batteries (4-pack),1,2.99,07/20/19 13:41,"528 11th St, Los Angeles, CA 90001" -234805,AAA Batteries (4-pack),3,2.99,07/04/19 11:19,"481 Meadow St, San Francisco, CA 94016" -234806,AA Batteries (4-pack),1,3.84,07/16/19 08:25,"11 Park St, Atlanta, GA 30301" -234807,Vareebadd Phone,1,400,07/06/19 08:49,"186 11th St, San Francisco, CA 94016" -234808,Bose SoundSport Headphones,1,99.99,07/31/19 06:09,"609 Sunset St, Los Angeles, CA 90001" -234809,Wired Headphones,1,11.99,07/31/19 07:45,"309 10th St, Atlanta, GA 30301" -234810,Bose SoundSport Headphones,1,99.99,07/13/19 06:37,"949 South St, Atlanta, GA 30301" -234811,AA Batteries (4-pack),1,3.84,07/30/19 22:52,"208 North St, Austin, TX 73301" -234812,Macbook Pro Laptop,1,1700,07/01/19 15:17,"877 Spruce St, Boston, MA 02215" -234813,USB-C Charging Cable,1,11.95,07/27/19 00:00,"767 Willow St, Boston, MA 02215" -234814,AAA Batteries (4-pack),1,2.99,07/07/19 05:40,"735 Walnut St, San Francisco, CA 94016" -234815,Wired Headphones,1,11.99,07/01/19 18:54,"57 5th St, San Francisco, CA 94016" -234816,AA Batteries (4-pack),1,3.84,07/27/19 19:54,"187 11th St, Boston, MA 02215" -234817,Lightning Charging Cable,1,14.95,07/31/19 15:23,"414 14th St, Seattle, WA 98101" -234818,AA Batteries (4-pack),1,3.84,07/23/19 09:11,"82 13th St, San Francisco, CA 94016" -234819,Flatscreen TV,1,300,07/04/19 17:04,"604 Cedar St, Atlanta, GA 30301" -234820,34in Ultrawide Monitor,1,379.99,07/30/19 17:13,"371 Cherry St, San Francisco, CA 94016" -234821,AAA Batteries (4-pack),1,2.99,07/26/19 09:41,"630 Lake St, Los Angeles, CA 90001" -234822,27in 4K Gaming Monitor,1,389.99,07/11/19 16:21,"844 13th St, New York City, NY 10001" -234823,USB-C Charging Cable,1,11.95,07/27/19 09:09,"652 Sunset St, Los Angeles, CA 90001" -234824,Lightning Charging Cable,1,14.95,07/15/19 23:30,"682 Jackson St, Los Angeles, CA 90001" -234825,Google Phone,1,600,07/20/19 16:23,"697 Maple St, Atlanta, GA 30301" -234826,Google Phone,1,600,07/10/19 11:25,"38 7th St, New York City, NY 10001" -234827,Apple Airpods Headphones,1,150,07/07/19 20:01,"334 Hickory St, San Francisco, CA 94016" -234828,AAA Batteries (4-pack),1,2.99,07/22/19 16:55,"711 Center St, San Francisco, CA 94016" -234829,AA Batteries (4-pack),3,3.84,07/27/19 17:25,"631 Highland St, Portland, OR 97035" -234830,20in Monitor,1,109.99,07/10/19 01:27,"790 Hickory St, New York City, NY 10001" -234831,AA Batteries (4-pack),1,3.84,07/13/19 11:55,"671 6th St, Los Angeles, CA 90001" -234832,Google Phone,1,600,07/05/19 22:26,"732 12th St, Los Angeles, CA 90001" -234832,USB-C Charging Cable,1,11.95,07/05/19 22:26,"732 12th St, Los Angeles, CA 90001" -234833,Wired Headphones,2,11.99,07/10/19 08:02,"508 2nd St, Los Angeles, CA 90001" -234834,AAA Batteries (4-pack),1,2.99,07/16/19 10:10,"146 Walnut St, San Francisco, CA 94016" -234835,Google Phone,1,600,07/09/19 09:32,"117 Church St, San Francisco, CA 94016" -234836,Bose SoundSport Headphones,1,99.99,07/11/19 16:33,"43 Dogwood St, San Francisco, CA 94016" -234837,Apple Airpods Headphones,1,150,07/22/19 23:27,"428 Ridge St, San Francisco, CA 94016" -234838,Macbook Pro Laptop,1,1700,07/08/19 11:45,"124 Elm St, San Francisco, CA 94016" -234839,34in Ultrawide Monitor,2,379.99,07/10/19 14:58,"974 2nd St, New York City, NY 10001" -234840,USB-C Charging Cable,1,11.95,07/03/19 14:23,"419 10th St, Dallas, TX 75001" -234841,Wired Headphones,1,11.99,07/27/19 20:23,"626 Chestnut St, San Francisco, CA 94016" -234842,AA Batteries (4-pack),1,3.84,07/26/19 16:45,"846 7th St, Dallas, TX 75001" -234843,AA Batteries (4-pack),2,3.84,07/25/19 13:00,"495 Spruce St, San Francisco, CA 94016" -234844,Macbook Pro Laptop,1,1700,07/27/19 14:39,"446 Church St, Boston, MA 02215" -234845,27in FHD Monitor,1,149.99,07/29/19 09:29,"264 Highland St, Los Angeles, CA 90001" -234846,20in Monitor,1,109.99,07/08/19 08:47,"313 Madison St, Boston, MA 02215" -234847,27in 4K Gaming Monitor,1,389.99,07/18/19 12:28,"869 Hickory St, Portland, OR 97035" -234848,Apple Airpods Headphones,1,150,07/07/19 18:24,"252 5th St, San Francisco, CA 94016" -234849,27in FHD Monitor,1,149.99,07/14/19 08:49,"181 Cedar St, Los Angeles, CA 90001" -234850,ThinkPad Laptop,1,999.99,07/11/19 11:52,"313 Lake St, San Francisco, CA 94016" -234851,iPhone,1,700,07/02/19 18:46,"171 South St, Boston, MA 02215" -234852,Wired Headphones,1,11.99,07/01/19 16:43,"746 Park St, San Francisco, CA 94016" -234853,Macbook Pro Laptop,1,1700,07/21/19 09:11,"735 Madison St, Austin, TX 73301" -234854,USB-C Charging Cable,1,11.95,07/28/19 10:11,"829 10th St, New York City, NY 10001" -234855,Flatscreen TV,1,300,07/23/19 12:42,"34 11th St, Portland, OR 97035" -234856,Flatscreen TV,1,300,07/13/19 11:24,"54 Walnut St, Seattle, WA 98101" -234857,Lightning Charging Cable,1,14.95,07/26/19 18:55,"819 Cedar St, San Francisco, CA 94016" -234858,Bose SoundSport Headphones,1,99.99,07/31/19 09:36,"238 Chestnut St, New York City, NY 10001" -234859,USB-C Charging Cable,1,11.95,07/01/19 11:18,"178 Ridge St, San Francisco, CA 94016" -234860,Bose SoundSport Headphones,1,99.99,07/10/19 20:11,"870 Hill St, Dallas, TX 75001" -234860,Wired Headphones,1,11.99,07/10/19 20:11,"870 Hill St, Dallas, TX 75001" -234861,Lightning Charging Cable,1,14.95,07/15/19 14:50,"65 10th St, Los Angeles, CA 90001" -234862,USB-C Charging Cable,1,11.95,07/21/19 20:17,"519 Chestnut St, San Francisco, CA 94016" -234863,AAA Batteries (4-pack),2,2.99,07/16/19 12:36,"652 Willow St, Austin, TX 73301" -234864,USB-C Charging Cable,2,11.95,07/23/19 19:32,"568 Johnson St, San Francisco, CA 94016" -234865,USB-C Charging Cable,1,11.95,07/06/19 04:04,"561 Jackson St, Seattle, WA 98101" -234866,27in FHD Monitor,1,149.99,07/15/19 13:34,"124 River St, San Francisco, CA 94016" -234867,AAA Batteries (4-pack),1,2.99,07/25/19 11:57,"79 Cedar St, Dallas, TX 75001" -234868,Bose SoundSport Headphones,1,99.99,07/25/19 11:51,"37 Hill St, Atlanta, GA 30301" -234869,ThinkPad Laptop,1,999.99,07/15/19 09:16,"729 8th St, Portland, OR 97035" -234870,ThinkPad Laptop,1,999.99,07/08/19 11:06,"993 7th St, New York City, NY 10001" -234871,AAA Batteries (4-pack),1,2.99,07/08/19 14:28,"438 Wilson St, New York City, NY 10001" -234872,27in FHD Monitor,1,149.99,07/29/19 10:48,"764 West St, New York City, NY 10001" -234873,AA Batteries (4-pack),1,3.84,07/01/19 09:47,"775 Sunset St, Atlanta, GA 30301" -234874,iPhone,1,700,07/16/19 10:10,"677 4th St, Austin, TX 73301" -234875,Apple Airpods Headphones,1,150,07/27/19 11:44,"426 4th St, New York City, NY 10001" -234876,Wired Headphones,1,11.99,07/04/19 10:57,"659 5th St, New York City, NY 10001" -234877,AA Batteries (4-pack),2,3.84,07/01/19 22:06,"563 Washington St, Austin, TX 73301" -234878,27in 4K Gaming Monitor,1,389.99,07/21/19 22:18,"225 North St, Los Angeles, CA 90001" -234879,Apple Airpods Headphones,1,150,07/16/19 23:05,"378 1st St, San Francisco, CA 94016" -234880,Bose SoundSport Headphones,1,99.99,07/23/19 06:36,"882 River St, Boston, MA 02215" -234881,USB-C Charging Cable,1,11.95,07/19/19 18:28,"426 Johnson St, Los Angeles, CA 90001" -234882,Bose SoundSport Headphones,1,99.99,07/05/19 10:56,"136 Main St, Seattle, WA 98101" -234883,iPhone,1,700,07/09/19 08:24,"167 Cherry St, Boston, MA 02215" -234883,Lightning Charging Cable,1,14.95,07/09/19 08:24,"167 Cherry St, Boston, MA 02215" -234884,Lightning Charging Cable,1,14.95,07/17/19 08:23,"87 8th St, San Francisco, CA 94016" -234885,iPhone,1,700,07/29/19 16:43,"178 Highland St, Atlanta, GA 30301" -234886,Macbook Pro Laptop,1,1700,07/19/19 20:42,"949 Hickory St, New York City, NY 10001" -234887,Bose SoundSport Headphones,1,99.99,07/16/19 08:43,"302 12th St, San Francisco, CA 94016" -234888,USB-C Charging Cable,1,11.95,07/23/19 19:01,"944 Johnson St, Boston, MA 02215" -234889,34in Ultrawide Monitor,1,379.99,07/15/19 12:58,"692 Spruce St, San Francisco, CA 94016" -234890,AA Batteries (4-pack),1,3.84,07/25/19 22:34,"832 Highland St, Dallas, TX 75001" -234891,27in FHD Monitor,1,149.99,07/12/19 12:10,"38 Center St, Los Angeles, CA 90001" -234892,AAA Batteries (4-pack),4,2.99,07/09/19 18:52,"143 Highland St, Portland, OR 97035" -234893,Bose SoundSport Headphones,1,99.99,07/22/19 10:51,"885 Hickory St, Boston, MA 02215" -234894,20in Monitor,1,109.99,07/14/19 10:17,"134 Highland St, Dallas, TX 75001" -234895,Wired Headphones,1,11.99,07/23/19 11:54,"412 Highland St, San Francisco, CA 94016" -234896,Apple Airpods Headphones,1,150,07/13/19 21:02,"187 Johnson St, San Francisco, CA 94016" -234897,AAA Batteries (4-pack),1,2.99,07/24/19 15:03,"201 6th St, San Francisco, CA 94016" -234898,USB-C Charging Cable,1,11.95,07/28/19 13:42,"300 Cedar St, Dallas, TX 75001" -,,,,, -234899,AA Batteries (4-pack),1,3.84,07/31/19 22:50,"647 7th St, San Francisco, CA 94016" -234900,27in FHD Monitor,1,149.99,07/09/19 18:40,"196 Maple St, San Francisco, CA 94016" -234901,AA Batteries (4-pack),1,3.84,07/12/19 10:24,"27 Forest St, Atlanta, GA 30301" -234902,Lightning Charging Cable,1,14.95,07/09/19 13:03,"758 Washington St, Austin, TX 73301" -234903,Wired Headphones,1,11.99,07/08/19 18:34,"425 Jefferson St, Los Angeles, CA 90001" -234904,Bose SoundSport Headphones,1,99.99,07/18/19 14:59,"222 4th St, San Francisco, CA 94016" -234905,AAA Batteries (4-pack),1,2.99,07/27/19 09:11,"104 Dogwood St, New York City, NY 10001" -234906,34in Ultrawide Monitor,1,379.99,07/31/19 08:24,"29 Jackson St, Boston, MA 02215" -234906,Apple Airpods Headphones,1,150,07/31/19 08:24,"29 Jackson St, Boston, MA 02215" -234907,AAA Batteries (4-pack),1,2.99,07/02/19 13:26,"535 Meadow St, New York City, NY 10001" -234908,20in Monitor,1,109.99,07/06/19 13:47,"311 Willow St, Boston, MA 02215" -234909,Apple Airpods Headphones,1,150,07/25/19 16:40,"370 Park St, San Francisco, CA 94016" -234910,20in Monitor,1,109.99,07/03/19 23:20,"61 Adams St, San Francisco, CA 94016" -234911,Lightning Charging Cable,1,14.95,07/20/19 01:37,"214 Hill St, Boston, MA 02215" -234912,AAA Batteries (4-pack),1,2.99,07/21/19 17:37,"408 Chestnut St, Los Angeles, CA 90001" -234913,Flatscreen TV,1,300,07/07/19 12:37,"885 9th St, Los Angeles, CA 90001" -234914,AAA Batteries (4-pack),1,2.99,07/02/19 18:22,"322 South St, Austin, TX 73301" -234915,AAA Batteries (4-pack),2,2.99,07/30/19 14:59,"660 Madison St, New York City, NY 10001" -234916,AAA Batteries (4-pack),1,2.99,07/15/19 12:05,"709 Park St, San Francisco, CA 94016" -234917,AAA Batteries (4-pack),1,2.99,07/22/19 15:47,"358 South St, Portland, OR 97035" -234918,20in Monitor,1,109.99,07/08/19 18:59,"4 Pine St, San Francisco, CA 94016" -234919,AA Batteries (4-pack),1,3.84,07/22/19 18:50,"157 2nd St, Boston, MA 02215" -234920,Flatscreen TV,1,300,07/24/19 11:58,"738 Chestnut St, Los Angeles, CA 90001" -234921,Macbook Pro Laptop,1,1700,07/05/19 12:20,"538 Hickory St, Los Angeles, CA 90001" -234922,AAA Batteries (4-pack),1,2.99,07/25/19 06:29,"971 North St, Portland, ME 04101" -234923,AA Batteries (4-pack),1,3.84,07/28/19 21:18,"818 North St, Los Angeles, CA 90001" -234924,USB-C Charging Cable,1,11.95,07/16/19 11:14,"59 South St, Dallas, TX 75001" -234925,Flatscreen TV,1,300,07/14/19 22:09,"704 2nd St, Los Angeles, CA 90001" -234926,Lightning Charging Cable,1,14.95,07/13/19 21:59,"500 Highland St, Boston, MA 02215" -234927,Bose SoundSport Headphones,1,99.99,07/02/19 14:42,"332 Willow St, Atlanta, GA 30301" -234928,AAA Batteries (4-pack),1,2.99,07/11/19 11:02,"878 5th St, Austin, TX 73301" -234929,Wired Headphones,1,11.99,07/31/19 13:07,"942 Lake St, Atlanta, GA 30301" -234930,USB-C Charging Cable,1,11.95,07/13/19 18:52,"417 River St, San Francisco, CA 94016" -234931,Macbook Pro Laptop,1,1700,07/20/19 09:20,"995 5th St, Atlanta, GA 30301" -234932,Google Phone,1,600,07/27/19 22:17,"556 10th St, Boston, MA 02215" -234932,USB-C Charging Cable,1,11.95,07/27/19 22:17,"556 10th St, Boston, MA 02215" -234933,Apple Airpods Headphones,1,150,07/28/19 11:41,"739 8th St, Boston, MA 02215" -234934,Lightning Charging Cable,1,14.95,07/12/19 15:07,"371 14th St, Seattle, WA 98101" -234935,Bose SoundSport Headphones,1,99.99,07/13/19 01:17,"14 Johnson St, Los Angeles, CA 90001" -234936,Google Phone,1,600,07/15/19 15:51,"658 7th St, Seattle, WA 98101" -234936,USB-C Charging Cable,1,11.95,07/15/19 15:51,"658 7th St, Seattle, WA 98101" -234937,AA Batteries (4-pack),1,3.84,07/16/19 21:47,"367 2nd St, New York City, NY 10001" -234938,Wired Headphones,1,11.99,07/30/19 07:27,"271 Meadow St, San Francisco, CA 94016" -234939,20in Monitor,1,109.99,07/16/19 11:56,"649 North St, San Francisco, CA 94016" -234940,AAA Batteries (4-pack),2,2.99,07/30/19 19:27,"521 Main St, Austin, TX 73301" -234941,Apple Airpods Headphones,1,150,07/05/19 18:42,"294 Walnut St, Seattle, WA 98101" -234942,iPhone,1,700,07/02/19 21:47,"311 1st St, Los Angeles, CA 90001" -234943,Lightning Charging Cable,1,14.95,07/08/19 14:46,"714 5th St, Austin, TX 73301" -,,,,, -234944,Wired Headphones,3,11.99,07/25/19 12:29,"158 Main St, Austin, TX 73301" -234945,Lightning Charging Cable,1,14.95,07/20/19 19:38,"290 8th St, San Francisco, CA 94016" -234946,USB-C Charging Cable,1,11.95,07/01/19 11:24,"115 10th St, San Francisco, CA 94016" -234947,Apple Airpods Headphones,1,150,07/25/19 13:00,"500 13th St, Los Angeles, CA 90001" -234948,AA Batteries (4-pack),2,3.84,07/29/19 13:37,"70 Main St, Atlanta, GA 30301" -234949,Bose SoundSport Headphones,1,99.99,07/29/19 19:14,"114 North St, San Francisco, CA 94016" -234950,Wired Headphones,1,11.99,07/29/19 00:06,"903 Madison St, San Francisco, CA 94016" -234951,Apple Airpods Headphones,1,150,07/28/19 20:34,"720 5th St, San Francisco, CA 94016" -234952,27in FHD Monitor,1,149.99,07/16/19 18:56,"503 Maple St, Los Angeles, CA 90001" -234953,Flatscreen TV,1,300,07/23/19 00:32,"314 12th St, Dallas, TX 75001" -234954,Google Phone,1,600,07/06/19 21:04,"390 Lakeview St, San Francisco, CA 94016" -234955,AAA Batteries (4-pack),1,2.99,07/29/19 14:04,"506 Madison St, Boston, MA 02215" -234956,20in Monitor,1,109.99,07/14/19 12:10,"825 9th St, New York City, NY 10001" -234956,Apple Airpods Headphones,1,150,07/14/19 12:10,"825 9th St, New York City, NY 10001" -234957,Lightning Charging Cable,1,14.95,07/12/19 19:44,"838 Willow St, Dallas, TX 75001" -234958,USB-C Charging Cable,1,11.95,07/14/19 13:45,"722 South St, Los Angeles, CA 90001" -234959,USB-C Charging Cable,1,11.95,07/11/19 13:59,"82 Main St, Boston, MA 02215" -234960,Lightning Charging Cable,1,14.95,07/27/19 16:59,"57 Center St, Atlanta, GA 30301" -234961,Bose SoundSport Headphones,1,99.99,07/24/19 12:31,"43 Cedar St, Dallas, TX 75001" -234962,AAA Batteries (4-pack),2,2.99,07/22/19 19:09,"929 Cherry St, Atlanta, GA 30301" -234963,AA Batteries (4-pack),2,3.84,07/31/19 17:11,"942 13th St, Los Angeles, CA 90001" -234964,AA Batteries (4-pack),1,3.84,07/31/19 23:26,"893 Main St, Boston, MA 02215" -234965,Wired Headphones,1,11.99,07/17/19 09:31,"697 North St, Los Angeles, CA 90001" -234966,USB-C Charging Cable,2,11.95,07/05/19 07:19,"736 Main St, Los Angeles, CA 90001" -234967,ThinkPad Laptop,1,999.99,07/31/19 13:15,"666 Church St, New York City, NY 10001" -234968,Lightning Charging Cable,1,14.95,07/17/19 13:05,"45 Jackson St, Los Angeles, CA 90001" -234969,AA Batteries (4-pack),1,3.84,07/20/19 17:28,"896 12th St, Atlanta, GA 30301" -234970,USB-C Charging Cable,1,11.95,07/30/19 10:51,"183 5th St, New York City, NY 10001" -234971,27in FHD Monitor,1,149.99,07/14/19 19:21,"620 Main St, Atlanta, GA 30301" -234972,27in FHD Monitor,1,149.99,07/10/19 15:51,"867 Jackson St, San Francisco, CA 94016" -234973,USB-C Charging Cable,2,11.95,07/19/19 12:04,"535 10th St, Los Angeles, CA 90001" -234974,ThinkPad Laptop,1,999.99,07/07/19 08:59,"931 Elm St, Atlanta, GA 30301" -234975,Apple Airpods Headphones,1,150,07/24/19 12:26,"474 Jefferson St, Boston, MA 02215" -234976,34in Ultrawide Monitor,1,379.99,07/27/19 22:58,"370 8th St, Austin, TX 73301" -234977,USB-C Charging Cable,1,11.95,07/26/19 16:00,"347 7th St, New York City, NY 10001" -234978,Lightning Charging Cable,1,14.95,07/28/19 15:01,"227 Dogwood St, Seattle, WA 98101" -234979,27in FHD Monitor,1,149.99,07/25/19 14:22,"195 9th St, New York City, NY 10001" -234980,Vareebadd Phone,1,400,07/14/19 12:00,"199 Lakeview St, Seattle, WA 98101" -234981,27in 4K Gaming Monitor,1,389.99,07/02/19 23:38,"472 Maple St, Seattle, WA 98101" -234982,AAA Batteries (4-pack),1,2.99,07/23/19 20:08,"67 South St, San Francisco, CA 94016" -234983,USB-C Charging Cable,1,11.95,07/02/19 08:42,"211 River St, San Francisco, CA 94016" -234984,Flatscreen TV,1,300,07/22/19 21:01,"961 9th St, Dallas, TX 75001" -234985,AA Batteries (4-pack),1,3.84,07/24/19 06:33,"285 13th St, San Francisco, CA 94016" -234986,27in FHD Monitor,1,149.99,07/12/19 11:03,"308 Hickory St, Boston, MA 02215" -234987,Wired Headphones,1,11.99,07/10/19 01:52,"704 Willow St, San Francisco, CA 94016" -234988,Google Phone,1,600,07/16/19 07:45,"537 14th St, Los Angeles, CA 90001" -234988,Wired Headphones,1,11.99,07/16/19 07:45,"537 14th St, Los Angeles, CA 90001" -234989,AAA Batteries (4-pack),1,2.99,07/24/19 16:53,"247 Forest St, San Francisco, CA 94016" -234990,27in FHD Monitor,1,149.99,07/27/19 19:27,"948 Pine St, Atlanta, GA 30301" -234991,AAA Batteries (4-pack),1,2.99,07/26/19 16:18,"781 Lincoln St, San Francisco, CA 94016" -234992,Apple Airpods Headphones,1,150,07/10/19 05:28,"856 14th St, Seattle, WA 98101" -234993,AA Batteries (4-pack),2,3.84,07/03/19 13:18,"561 12th St, San Francisco, CA 94016" -234994,Wired Headphones,1,11.99,07/20/19 13:53,"42 Center St, San Francisco, CA 94016" -234995,ThinkPad Laptop,1,999.99,07/26/19 13:23,"290 11th St, Seattle, WA 98101" -234996,Apple Airpods Headphones,1,150,07/11/19 11:33,"890 Adams St, New York City, NY 10001" -234997,Apple Airpods Headphones,1,150,07/18/19 07:36,"939 4th St, Boston, MA 02215" -234998,Wired Headphones,2,11.99,07/22/19 10:45,"869 North St, Seattle, WA 98101" -234999,27in FHD Monitor,1,149.99,07/08/19 15:38,"611 Lake St, New York City, NY 10001" -235000,iPhone,1,700,07/28/19 14:08,"965 Meadow St, Los Angeles, CA 90001" -235001,Wired Headphones,1,11.99,07/02/19 15:30,"564 Wilson St, San Francisco, CA 94016" -235002,Wired Headphones,1,11.99,07/19/19 08:47,"602 Wilson St, San Francisco, CA 94016" -235003,USB-C Charging Cable,1,11.95,07/20/19 14:01,"836 2nd St, San Francisco, CA 94016" -235004,AAA Batteries (4-pack),4,2.99,07/09/19 10:04,"680 Lincoln St, Los Angeles, CA 90001" -235005,Apple Airpods Headphones,2,150,07/29/19 00:58,"819 Sunset St, Atlanta, GA 30301" -235006,27in FHD Monitor,1,149.99,07/18/19 09:39,"677 Ridge St, Austin, TX 73301" -235007,AAA Batteries (4-pack),1,2.99,07/13/19 10:00,"879 Cedar St, New York City, NY 10001" -235008,AAA Batteries (4-pack),1,2.99,07/06/19 11:39,"234 Willow St, Portland, OR 97035" -235009,Flatscreen TV,1,300,07/21/19 22:05,"467 Johnson St, Los Angeles, CA 90001" -235010,Wired Headphones,1,11.99,07/23/19 13:12,"165 Pine St, Portland, ME 04101" -235011,Google Phone,1,600,07/12/19 12:56,"933 Cherry St, San Francisco, CA 94016" -235011,USB-C Charging Cable,1,11.95,07/12/19 12:56,"933 Cherry St, San Francisco, CA 94016" -235012,27in 4K Gaming Monitor,1,389.99,07/22/19 23:19,"390 Center St, Boston, MA 02215" -235013,USB-C Charging Cable,1,11.95,07/08/19 16:09,"996 11th St, Los Angeles, CA 90001" -235014,USB-C Charging Cable,1,11.95,07/23/19 20:58,"826 9th St, San Francisco, CA 94016" -235015,AAA Batteries (4-pack),2,2.99,07/17/19 13:37,"921 Walnut St, Seattle, WA 98101" -235016,Google Phone,1,600,07/29/19 19:07,"72 Walnut St, Seattle, WA 98101" -235017,Wired Headphones,1,11.99,07/11/19 13:08,"70 5th St, San Francisco, CA 94016" -235018,Lightning Charging Cable,1,14.95,07/22/19 18:06,"764 Walnut St, New York City, NY 10001" -235019,Macbook Pro Laptop,1,1700,07/06/19 20:38,"825 West St, Dallas, TX 75001" -235020,27in FHD Monitor,1,149.99,07/24/19 12:21,"851 Spruce St, Los Angeles, CA 90001" -235021,USB-C Charging Cable,1,11.95,07/03/19 13:15,"612 Ridge St, New York City, NY 10001" -235022,27in 4K Gaming Monitor,1,389.99,07/28/19 11:03,"190 River St, San Francisco, CA 94016" -235023,Wired Headphones,1,11.99,07/16/19 22:24,"481 Madison St, Los Angeles, CA 90001" -235024,AA Batteries (4-pack),1,3.84,07/18/19 19:02,"345 Main St, Atlanta, GA 30301" -235025,Bose SoundSport Headphones,1,99.99,07/31/19 22:34,"490 5th St, Seattle, WA 98101" -235026,ThinkPad Laptop,1,999.99,07/14/19 21:59,"615 Park St, Portland, OR 97035" -235027,AAA Batteries (4-pack),1,2.99,07/15/19 11:14,"166 13th St, Boston, MA 02215" -235028,AA Batteries (4-pack),1,3.84,07/13/19 16:42,"32 Madison St, Seattle, WA 98101" -235029,Wired Headphones,1,11.99,07/05/19 19:52,"222 Church St, San Francisco, CA 94016" -235030,Flatscreen TV,1,300,07/27/19 17:04,"444 Ridge St, Dallas, TX 75001" -235031,Bose SoundSport Headphones,1,99.99,07/09/19 21:39,"526 10th St, San Francisco, CA 94016" -235032,Lightning Charging Cable,1,14.95,07/13/19 12:50,"212 4th St, Austin, TX 73301" -235033,20in Monitor,1,109.99,07/11/19 19:13,"90 Church St, Los Angeles, CA 90001" -235034,Apple Airpods Headphones,1,150,07/25/19 09:23,"625 Highland St, San Francisco, CA 94016" -235035,Apple Airpods Headphones,1,150,07/17/19 05:24,"853 8th St, Seattle, WA 98101" -235036,Bose SoundSport Headphones,1,99.99,07/27/19 18:53,"332 Dogwood St, Seattle, WA 98101" -235037,Apple Airpods Headphones,1,150,07/13/19 12:53,"669 Adams St, Boston, MA 02215" -235038,Lightning Charging Cable,2,14.95,07/16/19 13:42,"644 River St, Seattle, WA 98101" -,,,,, -235039,Apple Airpods Headphones,1,150,07/26/19 22:21,"696 8th St, Portland, OR 97035" -235040,AA Batteries (4-pack),1,3.84,07/08/19 15:52,"798 6th St, Atlanta, GA 30301" -235041,Lightning Charging Cable,1,14.95,07/04/19 05:03,"540 6th St, New York City, NY 10001" -235042,Wired Headphones,1,11.99,07/10/19 18:20,"145 Hill St, Los Angeles, CA 90001" -235043,Apple Airpods Headphones,1,150,07/21/19 08:28,"494 West St, Portland, OR 97035" -235044,USB-C Charging Cable,2,11.95,07/13/19 16:50,"122 Adams St, New York City, NY 10001" -235045,Wired Headphones,1,11.99,07/12/19 12:32,"910 10th St, Seattle, WA 98101" -235046,Apple Airpods Headphones,1,150,07/25/19 19:25,"300 Hill St, Portland, OR 97035" -235047,LG Dryer,1,600.0,07/29/19 18:37,"255 Dogwood St, New York City, NY 10001" -235048,AAA Batteries (4-pack),1,2.99,07/10/19 12:52,"889 West St, Seattle, WA 98101" -235049,AAA Batteries (4-pack),1,2.99,07/12/19 15:24,"96 Lake St, San Francisco, CA 94016" -235050,USB-C Charging Cable,1,11.95,07/26/19 13:04,"184 Meadow St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -235051,20in Monitor,1,109.99,07/29/19 18:37,"691 10th St, San Francisco, CA 94016" -235052,27in 4K Gaming Monitor,1,389.99,07/17/19 23:50,"519 6th St, Boston, MA 02215" -235053,AAA Batteries (4-pack),2,2.99,07/25/19 22:47,"476 Jefferson St, Seattle, WA 98101" -235053,Macbook Pro Laptop,1,1700,07/25/19 22:47,"476 Jefferson St, Seattle, WA 98101" -235054,ThinkPad Laptop,1,999.99,07/19/19 11:22,"357 Cedar St, Boston, MA 02215" -235055,AA Batteries (4-pack),1,3.84,07/31/19 02:17,"848 Washington St, Atlanta, GA 30301" -235056,Wired Headphones,1,11.99,07/11/19 16:08,"242 11th St, New York City, NY 10001" -235057,Bose SoundSport Headphones,1,99.99,07/21/19 17:35,"976 Pine St, New York City, NY 10001" -235058,Lightning Charging Cable,1,14.95,07/14/19 10:44,"792 11th St, Boston, MA 02215" -235059,Bose SoundSport Headphones,1,99.99,07/14/19 10:22,"8 10th St, Boston, MA 02215" -235060,Lightning Charging Cable,1,14.95,07/08/19 05:38,"863 Church St, San Francisco, CA 94016" -235061,Apple Airpods Headphones,1,150,07/23/19 19:02,"894 Elm St, San Francisco, CA 94016" -235062,Lightning Charging Cable,1,14.95,07/27/19 15:43,"923 Main St, San Francisco, CA 94016" -235063,USB-C Charging Cable,2,11.95,07/15/19 21:10,"832 1st St, New York City, NY 10001" -235064,Bose SoundSport Headphones,1,99.99,07/11/19 19:50,"789 14th St, Los Angeles, CA 90001" -235065,Wired Headphones,1,11.99,07/17/19 20:33,"813 5th St, Seattle, WA 98101" -235066,Apple Airpods Headphones,1,150,07/02/19 19:28,"712 Highland St, Los Angeles, CA 90001" -235067,27in FHD Monitor,1,149.99,07/19/19 18:19,"271 Cedar St, Atlanta, GA 30301" -235068,iPhone,1,700,07/03/19 15:50,"550 River St, San Francisco, CA 94016" -235069,AAA Batteries (4-pack),1,2.99,07/07/19 12:31,"997 Lincoln St, New York City, NY 10001" -235070,USB-C Charging Cable,1,11.95,07/01/19 18:14,"935 1st St, Boston, MA 02215" -235071,AAA Batteries (4-pack),1,2.99,07/25/19 06:37,"447 Ridge St, San Francisco, CA 94016" -235072,AA Batteries (4-pack),1,3.84,07/24/19 18:03,"409 4th St, San Francisco, CA 94016" -235073,Wired Headphones,1,11.99,07/28/19 14:40,"130 North St, New York City, NY 10001" -235074,USB-C Charging Cable,1,11.95,07/12/19 21:57,"679 Pine St, Dallas, TX 75001" -235075,Apple Airpods Headphones,1,150,07/15/19 09:35,"927 Church St, Boston, MA 02215" -235076,27in 4K Gaming Monitor,1,389.99,07/03/19 10:34,"31 2nd St, San Francisco, CA 94016" -235077,Wired Headphones,1,11.99,07/03/19 16:38,"731 4th St, Atlanta, GA 30301" -235078,Wired Headphones,1,11.99,07/01/19 13:05,"566 Johnson St, San Francisco, CA 94016" -235079,USB-C Charging Cable,1,11.95,07/11/19 14:31,"373 Washington St, Los Angeles, CA 90001" -235080,27in 4K Gaming Monitor,1,389.99,07/09/19 20:00,"472 11th St, Los Angeles, CA 90001" -235081,34in Ultrawide Monitor,1,379.99,07/04/19 21:10,"962 Lakeview St, Los Angeles, CA 90001" -235082,Lightning Charging Cable,1,14.95,07/31/19 16:40,"503 9th St, San Francisco, CA 94016" -235083,USB-C Charging Cable,1,11.95,07/29/19 14:20,"265 Lakeview St, San Francisco, CA 94016" -235084,Lightning Charging Cable,1,14.95,07/13/19 12:16,"202 Lake St, San Francisco, CA 94016" -235085,AA Batteries (4-pack),1,3.84,07/05/19 12:36,"237 Park St, Los Angeles, CA 90001" -235086,USB-C Charging Cable,1,11.95,07/25/19 13:10,"556 Chestnut St, San Francisco, CA 94016" -235087,Google Phone,1,600,07/17/19 22:35,"619 Center St, Boston, MA 02215" -235088,AAA Batteries (4-pack),2,2.99,07/14/19 17:57,"377 Hill St, Boston, MA 02215" -235089,34in Ultrawide Monitor,1,379.99,07/27/19 03:00,"94 Center St, Los Angeles, CA 90001" -235090,iPhone,1,700,07/30/19 09:02,"805 1st St, New York City, NY 10001" -235090,Apple Airpods Headphones,1,150,07/30/19 09:02,"805 1st St, New York City, NY 10001" -235091,USB-C Charging Cable,1,11.95,07/11/19 17:21,"128 14th St, Austin, TX 73301" -235092,Lightning Charging Cable,1,14.95,07/10/19 16:38,"975 Maple St, Atlanta, GA 30301" -235093,iPhone,1,700,07/29/19 14:39,"684 South St, San Francisco, CA 94016" -235094,Lightning Charging Cable,1,14.95,07/01/19 11:03,"710 Park St, New York City, NY 10001" -235095,Lightning Charging Cable,1,14.95,07/31/19 10:25,"795 4th St, Dallas, TX 75001" -235096,Wired Headphones,1,11.99,07/06/19 08:05,"936 Main St, Los Angeles, CA 90001" -235097,Wired Headphones,1,11.99,07/04/19 18:36,"993 10th St, New York City, NY 10001" -235098,Apple Airpods Headphones,1,150,07/08/19 20:24,"775 Jackson St, Dallas, TX 75001" -235099,ThinkPad Laptop,1,999.99,07/28/19 10:02,"242 4th St, Portland, OR 97035" -235100,iPhone,1,700,07/27/19 13:38,"423 4th St, San Francisco, CA 94016" -235101,Lightning Charging Cable,1,14.95,07/26/19 08:29,"750 Church St, Boston, MA 02215" -235102,AAA Batteries (4-pack),2,2.99,07/18/19 20:18,"545 Cherry St, Los Angeles, CA 90001" -235103,iPhone,1,700,07/26/19 19:16,"774 1st St, Dallas, TX 75001" -235103,Wired Headphones,1,11.99,07/26/19 19:16,"774 1st St, Dallas, TX 75001" -235104,20in Monitor,1,109.99,07/15/19 09:16,"234 10th St, San Francisco, CA 94016" -235105,Bose SoundSport Headphones,1,99.99,07/06/19 10:47,"515 Main St, San Francisco, CA 94016" -235106,USB-C Charging Cable,1,11.95,07/01/19 18:14,"717 9th St, New York City, NY 10001" -235107,AA Batteries (4-pack),1,3.84,07/17/19 10:07,"345 6th St, Los Angeles, CA 90001" -235108,34in Ultrawide Monitor,1,379.99,07/18/19 01:40,"70 Cherry St, Seattle, WA 98101" -235109,Flatscreen TV,1,300,07/18/19 12:49,"64 5th St, Boston, MA 02215" -235110,AAA Batteries (4-pack),1,2.99,07/27/19 14:26,"817 Cedar St, Los Angeles, CA 90001" -235111,Bose SoundSport Headphones,1,99.99,07/10/19 09:51,"193 Forest St, Los Angeles, CA 90001" -235112,27in 4K Gaming Monitor,1,389.99,07/28/19 20:29,"455 8th St, New York City, NY 10001" -235113,Macbook Pro Laptop,1,1700,07/10/19 13:22,"33 Hickory St, Dallas, TX 75001" -235114,ThinkPad Laptop,1,999.99,07/28/19 22:24,"444 8th St, Los Angeles, CA 90001" -235115,Wired Headphones,1,11.99,07/03/19 22:40,"287 Forest St, Portland, OR 97035" -235116,USB-C Charging Cable,1,11.95,07/13/19 12:55,"945 Pine St, Portland, OR 97035" -235117,AA Batteries (4-pack),3,3.84,07/21/19 22:15,"784 Maple St, San Francisco, CA 94016" -235118,AAA Batteries (4-pack),1,2.99,07/01/19 15:31,"611 Hill St, Dallas, TX 75001" -235118,USB-C Charging Cable,2,11.95,07/01/19 15:31,"611 Hill St, Dallas, TX 75001" -235119,Lightning Charging Cable,1,14.95,07/07/19 21:24,"419 Cedar St, San Francisco, CA 94016" -235120,Google Phone,1,600,07/26/19 05:40,"577 7th St, Atlanta, GA 30301" -235121,Bose SoundSport Headphones,1,99.99,07/18/19 10:36,"944 Maple St, Austin, TX 73301" -235122,ThinkPad Laptop,1,999.99,07/06/19 11:17,"818 Highland St, San Francisco, CA 94016" -235123,Google Phone,1,600,07/02/19 19:15,"189 Forest St, Boston, MA 02215" -235123,USB-C Charging Cable,1,11.95,07/02/19 19:15,"189 Forest St, Boston, MA 02215" -235124,27in 4K Gaming Monitor,1,389.99,07/10/19 19:41,"108 Lakeview St, Los Angeles, CA 90001" -235125,Apple Airpods Headphones,1,150,07/09/19 21:44,"246 12th St, New York City, NY 10001" -235126,Wired Headphones,1,11.99,07/21/19 14:58,"754 Lincoln St, San Francisco, CA 94016" -235126,Lightning Charging Cable,1,14.95,07/21/19 14:58,"754 Lincoln St, San Francisco, CA 94016" -235127,27in 4K Gaming Monitor,1,389.99,07/23/19 18:49,"312 Park St, Boston, MA 02215" -235128,34in Ultrawide Monitor,1,379.99,07/01/19 20:10,"146 Hill St, Austin, TX 73301" -235129,Wired Headphones,1,11.99,07/27/19 03:06,"368 Meadow St, Los Angeles, CA 90001" -235130,Bose SoundSport Headphones,1,99.99,07/17/19 05:53,"211 River St, Atlanta, GA 30301" -235131,Wired Headphones,1,11.99,07/14/19 20:56,"455 Willow St, New York City, NY 10001" -235132,AA Batteries (4-pack),1,3.84,07/21/19 05:34,"223 South St, Los Angeles, CA 90001" -235133,Bose SoundSport Headphones,1,99.99,07/31/19 16:08,"663 12th St, Los Angeles, CA 90001" -235134,27in 4K Gaming Monitor,1,389.99,07/07/19 12:45,"153 Pine St, Boston, MA 02215" -235135,AAA Batteries (4-pack),4,2.99,07/28/19 17:58,"239 Willow St, Portland, ME 04101" -235136,AAA Batteries (4-pack),1,2.99,07/21/19 15:07,"246 Johnson St, New York City, NY 10001" -235137,Apple Airpods Headphones,1,150,07/24/19 14:53,"725 Church St, New York City, NY 10001" -235138,iPhone,1,700,07/22/19 20:49,"933 Cedar St, Boston, MA 02215" -235139,Lightning Charging Cable,1,14.95,07/17/19 15:11,"219 10th St, Los Angeles, CA 90001" -235140,Flatscreen TV,1,300,07/16/19 12:35,"567 Pine St, San Francisco, CA 94016" -235141,iPhone,1,700,07/25/19 15:12,"16 Jefferson St, Boston, MA 02215" -235142,Flatscreen TV,1,300,07/09/19 17:48,"972 Ridge St, Boston, MA 02215" -235143,AAA Batteries (4-pack),1,2.99,07/03/19 20:18,"792 Hill St, Atlanta, GA 30301" -235144,34in Ultrawide Monitor,1,379.99,07/21/19 15:29,"239 Johnson St, Atlanta, GA 30301" -235145,Apple Airpods Headphones,1,150,07/24/19 11:56,"652 Hickory St, Los Angeles, CA 90001" -235146,ThinkPad Laptop,1,999.99,07/04/19 22:35,"28 Park St, San Francisco, CA 94016" -235147,Apple Airpods Headphones,1,150,07/18/19 19:31,"472 Forest St, Dallas, TX 75001" -235148,Wired Headphones,2,11.99,07/04/19 13:10,"47 West St, Austin, TX 73301" -235149,27in FHD Monitor,1,149.99,07/21/19 06:06,"46 Pine St, New York City, NY 10001" -235150,Apple Airpods Headphones,1,150,07/09/19 08:56,"537 4th St, Atlanta, GA 30301" -235151,AAA Batteries (4-pack),1,2.99,07/03/19 19:05,"471 Jefferson St, Seattle, WA 98101" -235152,27in FHD Monitor,1,149.99,07/09/19 08:31,"861 Hickory St, Atlanta, GA 30301" -235153,27in 4K Gaming Monitor,1,389.99,07/05/19 12:43,"166 Madison St, San Francisco, CA 94016" -235154,AAA Batteries (4-pack),1,2.99,07/28/19 16:51,"521 Main St, San Francisco, CA 94016" -235155,Google Phone,1,600,07/18/19 22:41,"790 6th St, Los Angeles, CA 90001" -235156,Bose SoundSport Headphones,1,99.99,07/28/19 20:50,"801 Forest St, New York City, NY 10001" -235157,Lightning Charging Cable,1,14.95,07/21/19 11:36,"920 13th St, Austin, TX 73301" -235158,AAA Batteries (4-pack),4,2.99,07/10/19 13:44,"559 12th St, San Francisco, CA 94016" -235159,AA Batteries (4-pack),1,3.84,07/02/19 07:50,"138 Johnson St, Austin, TX 73301" -235160,USB-C Charging Cable,1,11.95,07/13/19 13:14,"43 South St, Portland, OR 97035" -235161,Lightning Charging Cable,1,14.95,07/26/19 18:03,"40 10th St, San Francisco, CA 94016" -235162,AAA Batteries (4-pack),1,2.99,07/13/19 12:35,"611 4th St, San Francisco, CA 94016" -235163,AAA Batteries (4-pack),2,2.99,07/27/19 13:37,"311 5th St, Los Angeles, CA 90001" -235164,USB-C Charging Cable,1,11.95,07/11/19 00:31,"790 Willow St, Atlanta, GA 30301" -235165,AAA Batteries (4-pack),1,2.99,07/14/19 19:14,"636 Wilson St, San Francisco, CA 94016" -235166,USB-C Charging Cable,1,11.95,07/01/19 09:31,"910 Forest St, Austin, TX 73301" -235167,27in FHD Monitor,1,149.99,07/29/19 09:25,"786 8th St, Boston, MA 02215" -235168,iPhone,1,700,07/28/19 09:28,"631 Lake St, New York City, NY 10001" -235168,Lightning Charging Cable,2,14.95,07/28/19 09:28,"631 Lake St, New York City, NY 10001" -235169,USB-C Charging Cable,1,11.95,07/25/19 14:59,"221 Madison St, New York City, NY 10001" -235170,27in 4K Gaming Monitor,1,389.99,07/31/19 17:30,"34 Highland St, San Francisco, CA 94016" -235171,Bose SoundSport Headphones,1,99.99,07/29/19 20:24,"871 Willow St, Boston, MA 02215" -235172,USB-C Charging Cable,1,11.95,07/11/19 08:51,"562 11th St, Atlanta, GA 30301" -235173,iPhone,1,700,07/22/19 20:35,"800 Hill St, Austin, TX 73301" -235174,Lightning Charging Cable,1,14.95,07/24/19 11:27,"806 Wilson St, Atlanta, GA 30301" -235175,34in Ultrawide Monitor,1,379.99,07/06/19 09:23,"75 Lincoln St, Atlanta, GA 30301" -235176,27in 4K Gaming Monitor,1,389.99,07/01/19 11:28,"975 13th St, New York City, NY 10001" -235177,27in 4K Gaming Monitor,1,389.99,07/20/19 19:36,"725 Chestnut St, San Francisco, CA 94016" -235178,27in FHD Monitor,1,149.99,07/16/19 15:58,"676 14th St, New York City, NY 10001" -235179,Macbook Pro Laptop,1,1700,07/30/19 15:08,"909 Dogwood St, San Francisco, CA 94016" -235180,USB-C Charging Cable,1,11.95,07/15/19 20:28,"738 Lincoln St, San Francisco, CA 94016" -235181,Lightning Charging Cable,1,14.95,07/30/19 22:05,"432 Willow St, Portland, ME 04101" -235182,Wired Headphones,1,11.99,07/23/19 21:17,"220 8th St, San Francisco, CA 94016" -235183,USB-C Charging Cable,1,11.95,07/24/19 13:01,"169 11th St, Seattle, WA 98101" -235184,iPhone,1,700,07/31/19 18:58,"806 2nd St, Seattle, WA 98101" -235185,Flatscreen TV,1,300,07/13/19 21:56,"617 12th St, Portland, OR 97035" -235186,Flatscreen TV,1,300,07/05/19 01:42,"740 West St, Los Angeles, CA 90001" -235187,Vareebadd Phone,1,400,07/12/19 08:33,"325 Dogwood St, Seattle, WA 98101" -235188,20in Monitor,1,109.99,07/30/19 21:00,"599 Johnson St, Atlanta, GA 30301" -235189,Bose SoundSport Headphones,1,99.99,07/11/19 17:54,"904 Willow St, San Francisco, CA 94016" -235190,34in Ultrawide Monitor,1,379.99,07/01/19 21:31,"697 Johnson St, Boston, MA 02215" -235191,AAA Batteries (4-pack),1,2.99,07/19/19 14:56,"303 Willow St, New York City, NY 10001" -235192,iPhone,1,700,07/22/19 15:34,"304 Hill St, Austin, TX 73301" -235193,AAA Batteries (4-pack),1,2.99,07/31/19 13:51,"527 Elm St, Seattle, WA 98101" -235194,AA Batteries (4-pack),4,3.84,07/10/19 10:30,"326 Adams St, Los Angeles, CA 90001" -235195,AAA Batteries (4-pack),4,2.99,07/10/19 09:17,"78 Lincoln St, San Francisco, CA 94016" -235196,Apple Airpods Headphones,1,150,07/29/19 19:27,"849 11th St, Atlanta, GA 30301" -235197,AAA Batteries (4-pack),2,2.99,07/01/19 17:10,"57 Jefferson St, Boston, MA 02215" -235198,Lightning Charging Cable,1,14.95,07/10/19 15:35,"258 Walnut St, Dallas, TX 75001" -235199,Lightning Charging Cable,1,14.95,07/16/19 08:29,"842 14th St, Austin, TX 73301" -235200,AA Batteries (4-pack),2,3.84,07/01/19 07:48,"229 Walnut St, Atlanta, GA 30301" -235200,Vareebadd Phone,1,400,07/01/19 07:48,"229 Walnut St, Atlanta, GA 30301" -235201,34in Ultrawide Monitor,1,379.99,07/13/19 19:17,"20 Wilson St, New York City, NY 10001" -235202,27in 4K Gaming Monitor,1,389.99,07/05/19 22:50,"152 River St, Atlanta, GA 30301" -235203,34in Ultrawide Monitor,1,379.99,07/02/19 11:58,"462 Church St, Austin, TX 73301" -235204,USB-C Charging Cable,2,11.95,07/01/19 14:05,"517 14th St, Dallas, TX 75001" -235205,Google Phone,1,600,07/02/19 18:59,"864 Madison St, Dallas, TX 75001" -235205,USB-C Charging Cable,1,11.95,07/02/19 18:59,"864 Madison St, Dallas, TX 75001" -235206,AAA Batteries (4-pack),1,2.99,07/26/19 13:25,"253 13th St, Seattle, WA 98101" -235207,Bose SoundSport Headphones,1,99.99,07/26/19 13:27,"476 Lincoln St, New York City, NY 10001" -235208,34in Ultrawide Monitor,1,379.99,07/24/19 16:05,"467 8th St, Los Angeles, CA 90001" -235209,Google Phone,1,600,07/24/19 14:31,"847 Hill St, Austin, TX 73301" -235209,USB-C Charging Cable,1,11.95,07/24/19 14:31,"847 Hill St, Austin, TX 73301" -235210,USB-C Charging Cable,1,11.95,07/30/19 12:12,"352 Jefferson St, Boston, MA 02215" -235211,Apple Airpods Headphones,1,150,07/17/19 09:45,"510 Center St, San Francisco, CA 94016" -235212,Apple Airpods Headphones,1,150,07/18/19 13:33,"532 Elm St, Atlanta, GA 30301" -235213,Wired Headphones,1,11.99,07/19/19 10:35,"258 Meadow St, San Francisco, CA 94016" -235214,AAA Batteries (4-pack),1,2.99,07/23/19 18:58,"478 Highland St, San Francisco, CA 94016" -235215,Flatscreen TV,1,300,07/29/19 00:43,"17 7th St, Boston, MA 02215" -235216,27in FHD Monitor,1,149.99,07/29/19 13:55,"950 4th St, Seattle, WA 98101" -235217,AA Batteries (4-pack),2,3.84,07/19/19 17:49,"638 Forest St, Los Angeles, CA 90001" -235218,Lightning Charging Cable,1,14.95,07/04/19 11:11,"627 Ridge St, Los Angeles, CA 90001" -235219,USB-C Charging Cable,1,11.95,07/15/19 11:59,"775 Washington St, Los Angeles, CA 90001" -235220,27in 4K Gaming Monitor,1,389.99,07/08/19 16:31,"907 Park St, Los Angeles, CA 90001" -235221,20in Monitor,1,109.99,07/01/19 19:01,"137 Lakeview St, Boston, MA 02215" -235222,AA Batteries (4-pack),1,3.84,07/29/19 22:03,"622 Pine St, New York City, NY 10001" -235223,34in Ultrawide Monitor,1,379.99,07/26/19 12:37,"170 Maple St, Boston, MA 02215" -235224,USB-C Charging Cable,1,11.95,07/20/19 13:19,"389 Highland St, Boston, MA 02215" -235225,AAA Batteries (4-pack),1,2.99,07/30/19 14:22,"66 Maple St, San Francisco, CA 94016" -235226,34in Ultrawide Monitor,1,379.99,07/19/19 21:38,"83 Willow St, New York City, NY 10001" -235227,AA Batteries (4-pack),1,3.84,07/03/19 14:40,"579 14th St, Dallas, TX 75001" -235228,Apple Airpods Headphones,1,150,07/12/19 08:00,"460 Main St, Boston, MA 02215" -235229,Macbook Pro Laptop,1,1700,07/05/19 08:56,"592 Forest St, San Francisco, CA 94016" -235230,Bose SoundSport Headphones,1,99.99,07/11/19 09:19,"373 Lakeview St, Dallas, TX 75001" -235231,27in FHD Monitor,1,149.99,07/05/19 14:13,"779 Main St, Dallas, TX 75001" -235232,Wired Headphones,1,11.99,07/06/19 09:39,"978 6th St, San Francisco, CA 94016" -235233,iPhone,1,700,07/02/19 18:43,"371 Pine St, San Francisco, CA 94016" -235234,USB-C Charging Cable,2,11.95,07/26/19 20:12,"381 Sunset St, New York City, NY 10001" -235235,34in Ultrawide Monitor,1,379.99,07/02/19 00:55,"99 Cedar St, Seattle, WA 98101" -235236,USB-C Charging Cable,1,11.95,07/31/19 08:08,"634 Cherry St, New York City, NY 10001" -235237,Bose SoundSport Headphones,1,99.99,07/25/19 17:23,"198 Ridge St, Boston, MA 02215" -235238,Apple Airpods Headphones,1,150,07/07/19 21:32,"394 14th St, Los Angeles, CA 90001" -235239,AA Batteries (4-pack),1,3.84,07/15/19 12:05,"160 River St, Los Angeles, CA 90001" -235240,iPhone,1,700,07/08/19 14:19,"203 Lincoln St, San Francisco, CA 94016" -235241,USB-C Charging Cable,1,11.95,07/29/19 14:37,"500 North St, Seattle, WA 98101" -235242,USB-C Charging Cable,1,11.95,07/09/19 17:21,"401 2nd St, Dallas, TX 75001" -235243,iPhone,1,700,07/03/19 19:34,"707 10th St, New York City, NY 10001" -235243,Apple Airpods Headphones,1,150,07/03/19 19:34,"707 10th St, New York City, NY 10001" -235244,AA Batteries (4-pack),1,3.84,07/22/19 22:50,"62 South St, San Francisco, CA 94016" -235245,Lightning Charging Cable,1,14.95,07/24/19 11:44,"550 Walnut St, Los Angeles, CA 90001" -235246,USB-C Charging Cable,1,11.95,07/22/19 12:26,"999 Adams St, San Francisco, CA 94016" -235247,Lightning Charging Cable,1,14.95,07/27/19 17:24,"388 Chestnut St, San Francisco, CA 94016" -235248,20in Monitor,1,109.99,07/06/19 02:30,"311 9th St, San Francisco, CA 94016" -235249,USB-C Charging Cable,1,11.95,07/27/19 01:09,"223 14th St, Portland, ME 04101" -235250,Apple Airpods Headphones,1,150,07/22/19 09:16,"182 6th St, Los Angeles, CA 90001" -235251,Wired Headphones,1,11.99,07/15/19 20:18,"481 Pine St, Seattle, WA 98101" -235252,AA Batteries (4-pack),1,3.84,07/14/19 19:13,"338 Sunset St, Portland, OR 97035" -235253,AA Batteries (4-pack),1,3.84,07/09/19 11:13,"710 Church St, San Francisco, CA 94016" -235254,AAA Batteries (4-pack),1,2.99,07/22/19 09:56,"984 Main St, Austin, TX 73301" -235255,Google Phone,1,600,07/26/19 17:12,"909 Lakeview St, Boston, MA 02215" -235256,Bose SoundSport Headphones,1,99.99,07/29/19 17:36,"779 Forest St, Dallas, TX 75001" -235257,AAA Batteries (4-pack),1,2.99,07/10/19 21:35,"22 Madison St, San Francisco, CA 94016" -235258,Wired Headphones,1,11.99,07/08/19 12:30,"416 2nd St, Atlanta, GA 30301" -235259,iPhone,1,700,07/27/19 12:11,"434 13th St, Austin, TX 73301" -235260,Wired Headphones,1,11.99,07/19/19 12:23,"718 Lincoln St, Dallas, TX 75001" -235261,27in 4K Gaming Monitor,1,389.99,07/13/19 10:51,"505 Johnson St, Austin, TX 73301" -235262,Flatscreen TV,1,300,07/30/19 23:55,"708 Hill St, Portland, OR 97035" -235263,Apple Airpods Headphones,1,150,07/14/19 13:11,"154 2nd St, Portland, OR 97035" -235264,Apple Airpods Headphones,1,150,07/11/19 07:55,"795 4th St, Dallas, TX 75001" -235265,USB-C Charging Cable,1,11.95,07/19/19 14:46,"586 Lake St, San Francisco, CA 94016" -235266,AAA Batteries (4-pack),2,2.99,07/03/19 14:05,"434 Jackson St, Atlanta, GA 30301" -235267,27in FHD Monitor,1,149.99,07/15/19 21:59,"399 Ridge St, Dallas, TX 75001" -235268,27in 4K Gaming Monitor,1,389.99,07/26/19 14:44,"106 West St, Los Angeles, CA 90001" -235269,Lightning Charging Cable,1,14.95,07/09/19 12:54,"557 Adams St, San Francisco, CA 94016" -235270,Lightning Charging Cable,1,14.95,07/19/19 18:00,"308 North St, San Francisco, CA 94016" -235271,Apple Airpods Headphones,1,150,07/07/19 17:36,"238 Highland St, San Francisco, CA 94016" -235272,Bose SoundSport Headphones,1,99.99,07/17/19 19:08,"899 Jefferson St, San Francisco, CA 94016" -235273,Bose SoundSport Headphones,1,99.99,07/12/19 09:57,"355 Cherry St, San Francisco, CA 94016" -235274,20in Monitor,1,109.99,07/10/19 18:06,"880 Madison St, Atlanta, GA 30301" -235275,USB-C Charging Cable,2,11.95,07/13/19 12:40,"240 Maple St, San Francisco, CA 94016" -235275,34in Ultrawide Monitor,1,379.99,07/13/19 12:40,"240 Maple St, San Francisco, CA 94016" -235276,USB-C Charging Cable,1,11.95,07/13/19 21:27,"338 Lincoln St, Boston, MA 02215" -235276,Lightning Charging Cable,1,14.95,07/13/19 21:27,"338 Lincoln St, Boston, MA 02215" -235277,USB-C Charging Cable,1,11.95,07/10/19 19:05,"618 Cherry St, New York City, NY 10001" -235278,Bose SoundSport Headphones,1,99.99,07/16/19 01:10,"720 Dogwood St, New York City, NY 10001" -235279,Bose SoundSport Headphones,1,99.99,07/31/19 16:09,"729 West St, Seattle, WA 98101" -235280,USB-C Charging Cable,1,11.95,07/03/19 06:24,"379 12th St, New York City, NY 10001" -235281,AA Batteries (4-pack),2,3.84,07/30/19 00:13,"634 Chestnut St, Portland, OR 97035" -235282,Lightning Charging Cable,1,14.95,07/25/19 15:17,"349 Johnson St, New York City, NY 10001" -235283,27in FHD Monitor,1,149.99,07/15/19 18:51,"936 Chestnut St, San Francisco, CA 94016" -235284,AAA Batteries (4-pack),4,2.99,07/09/19 16:24,"766 1st St, Los Angeles, CA 90001" -235285,Apple Airpods Headphones,1,150,07/30/19 12:36,"789 Johnson St, Atlanta, GA 30301" -235286,Lightning Charging Cable,1,14.95,07/04/19 22:43,"441 Elm St, Los Angeles, CA 90001" -235287,USB-C Charging Cable,1,11.95,07/25/19 10:15,"164 Lake St, Los Angeles, CA 90001" -235288,Wired Headphones,1,11.99,07/06/19 15:25,"362 Madison St, New York City, NY 10001" -235289,Bose SoundSport Headphones,1,99.99,07/15/19 11:54,"325 11th St, Dallas, TX 75001" -235290,Bose SoundSport Headphones,1,99.99,07/13/19 10:12,"145 Jackson St, Los Angeles, CA 90001" -235291,34in Ultrawide Monitor,1,379.99,07/04/19 21:33,"657 Adams St, Dallas, TX 75001" -235292,Macbook Pro Laptop,1,1700,07/11/19 11:09,"108 6th St, San Francisco, CA 94016" -235293,AAA Batteries (4-pack),1,2.99,07/13/19 18:52,"743 Walnut St, New York City, NY 10001" -235294,27in 4K Gaming Monitor,1,389.99,07/29/19 14:40,"773 Madison St, San Francisco, CA 94016" -235295,Wired Headphones,1,11.99,07/02/19 15:47,"860 Center St, New York City, NY 10001" -235296,34in Ultrawide Monitor,1,379.99,07/05/19 20:48,"338 Johnson St, San Francisco, CA 94016" -235297,Lightning Charging Cable,1,14.95,07/25/19 22:06,"109 4th St, Austin, TX 73301" -235298,34in Ultrawide Monitor,2,379.99,07/08/19 16:22,"303 Church St, San Francisco, CA 94016" -235299,Bose SoundSport Headphones,1,99.99,07/28/19 12:24,"766 Center St, Boston, MA 02215" -235300,USB-C Charging Cable,1,11.95,07/18/19 20:17,"704 2nd St, Austin, TX 73301" -235301,Lightning Charging Cable,1,14.95,07/18/19 22:25,"200 Lincoln St, Dallas, TX 75001" -235302,Bose SoundSport Headphones,1,99.99,07/25/19 22:45,"392 9th St, Dallas, TX 75001" -235303,27in FHD Monitor,1,149.99,07/13/19 16:00,"962 Hickory St, New York City, NY 10001" -235304,Lightning Charging Cable,1,14.95,07/04/19 17:06,"892 Jackson St, Atlanta, GA 30301" -235305,Apple Airpods Headphones,1,150,07/28/19 13:30,"973 Dogwood St, Los Angeles, CA 90001" -235306,Lightning Charging Cable,1,14.95,07/24/19 08:53,"94 Walnut St, Los Angeles, CA 90001" -235307,AA Batteries (4-pack),1,3.84,07/19/19 11:11,"569 Forest St, Atlanta, GA 30301" -235308,Wired Headphones,1,11.99,07/07/19 19:29,"712 2nd St, Los Angeles, CA 90001" -235309,Bose SoundSport Headphones,1,99.99,07/19/19 15:25,"906 8th St, Los Angeles, CA 90001" -235310,Wired Headphones,1,11.99,07/09/19 10:16,"981 Ridge St, Austin, TX 73301" -235311,27in 4K Gaming Monitor,1,389.99,07/07/19 12:57,"30 Maple St, Atlanta, GA 30301" -235312,Wired Headphones,1,11.99,07/18/19 17:13,"88 12th St, Boston, MA 02215" -235313,AAA Batteries (4-pack),1,2.99,07/07/19 13:23,"211 Spruce St, Atlanta, GA 30301" -235314,27in FHD Monitor,1,149.99,07/06/19 15:42,"627 Lake St, New York City, NY 10001" -235315,USB-C Charging Cable,2,11.95,07/13/19 16:06,"398 South St, Austin, TX 73301" -235316,Flatscreen TV,1,300,07/05/19 00:40,"209 Center St, Atlanta, GA 30301" -235317,USB-C Charging Cable,1,11.95,07/18/19 18:54,"965 Chestnut St, Portland, OR 97035" -235318,Apple Airpods Headphones,1,150,07/28/19 15:38,"114 Maple St, Boston, MA 02215" -235319,AA Batteries (4-pack),1,3.84,07/31/19 08:01,"245 Park St, Portland, OR 97035" -235320,Bose SoundSport Headphones,1,99.99,07/12/19 20:35,"873 Dogwood St, Boston, MA 02215" -235321,Vareebadd Phone,1,400,07/21/19 15:52,"754 Jackson St, San Francisco, CA 94016" -235322,Bose SoundSport Headphones,1,99.99,07/17/19 12:17,"481 2nd St, Austin, TX 73301" -235323,USB-C Charging Cable,1,11.95,07/31/19 19:53,"450 Lincoln St, San Francisco, CA 94016" -235324,Flatscreen TV,1,300,07/08/19 18:14,"407 Willow St, Dallas, TX 75001" -235325,20in Monitor,1,109.99,07/18/19 21:05,"113 Jefferson St, Dallas, TX 75001" -235326,Bose SoundSport Headphones,1,99.99,07/05/19 21:07,"128 Willow St, Boston, MA 02215" -235327,Macbook Pro Laptop,1,1700,07/15/19 09:17,"370 12th St, Seattle, WA 98101" -235328,AA Batteries (4-pack),1,3.84,07/09/19 19:31,"351 8th St, Dallas, TX 75001" -235329,Bose SoundSport Headphones,1,99.99,07/21/19 02:56,"553 Wilson St, San Francisco, CA 94016" -235330,20in Monitor,1,109.99,07/01/19 20:43,"429 Ridge St, New York City, NY 10001" -235331,Wired Headphones,1,11.99,07/05/19 11:39,"393 Lake St, Boston, MA 02215" -235332,ThinkPad Laptop,1,999.99,07/29/19 13:33,"387 Sunset St, San Francisco, CA 94016" -235333,Macbook Pro Laptop,1,1700,07/01/19 07:28,"726 North St, Portland, OR 97035" -235334,Wired Headphones,1,11.99,07/09/19 21:40,"476 Highland St, San Francisco, CA 94016" -235335,Flatscreen TV,1,300,07/11/19 10:05,"509 Ridge St, Portland, OR 97035" -235336,AAA Batteries (4-pack),1,2.99,07/22/19 10:14,"238 West St, Boston, MA 02215" -235337,Wired Headphones,1,11.99,07/02/19 08:54,"349 8th St, New York City, NY 10001" -235338,27in 4K Gaming Monitor,1,389.99,07/12/19 00:40,"583 Highland St, New York City, NY 10001" -235339,27in 4K Gaming Monitor,1,389.99,07/31/19 05:03,"377 Lake St, Los Angeles, CA 90001" -235340,USB-C Charging Cable,1,11.95,07/23/19 13:45,"849 Walnut St, Los Angeles, CA 90001" -235341,Google Phone,1,600,07/24/19 20:30,"66 10th St, Seattle, WA 98101" -235342,Lightning Charging Cable,1,14.95,07/26/19 11:41,"333 Main St, New York City, NY 10001" -235343,USB-C Charging Cable,1,11.95,07/06/19 13:31,"832 Elm St, San Francisco, CA 94016" -235344,AA Batteries (4-pack),1,3.84,07/11/19 10:39,"115 8th St, Boston, MA 02215" -235345,AA Batteries (4-pack),1,3.84,07/06/19 16:20,"720 Highland St, Seattle, WA 98101" -235346,Bose SoundSport Headphones,1,99.99,07/10/19 12:14,"478 Wilson St, Austin, TX 73301" -235347,Bose SoundSport Headphones,1,99.99,07/03/19 18:58,"345 Dogwood St, Los Angeles, CA 90001" -235348,Bose SoundSport Headphones,1,99.99,07/19/19 16:37,"812 Park St, Portland, OR 97035" -235349,27in FHD Monitor,1,149.99,07/24/19 19:25,"305 14th St, Los Angeles, CA 90001" -235350,20in Monitor,1,109.99,07/24/19 19:35,"336 Walnut St, Atlanta, GA 30301" -235351,Google Phone,1,600,07/23/19 07:47,"856 Jefferson St, New York City, NY 10001" -235352,Bose SoundSport Headphones,1,99.99,07/11/19 22:06,"150 Dogwood St, Los Angeles, CA 90001" -235353,iPhone,1,700,07/20/19 08:14,"227 Lincoln St, Boston, MA 02215" -235354,AA Batteries (4-pack),1,3.84,07/20/19 21:32,"527 Cedar St, San Francisco, CA 94016" -235355,AA Batteries (4-pack),1,3.84,07/21/19 19:39,"316 Dogwood St, Austin, TX 73301" -235356,Lightning Charging Cable,1,14.95,07/25/19 20:30,"510 Park St, Portland, ME 04101" -235357,USB-C Charging Cable,1,11.95,07/07/19 00:08,"941 Cherry St, San Francisco, CA 94016" -235358,27in 4K Gaming Monitor,1,389.99,07/09/19 21:14,"720 Madison St, Boston, MA 02215" -235359,AAA Batteries (4-pack),1,2.99,07/29/19 08:48,"874 Sunset St, Atlanta, GA 30301" -235360,Lightning Charging Cable,1,14.95,07/29/19 17:05,"654 13th St, Austin, TX 73301" -235361,Google Phone,1,600,07/02/19 17:13,"47 10th St, Dallas, TX 75001" -235362,Google Phone,1,600,07/25/19 09:54,"11 1st St, Seattle, WA 98101" -235363,27in FHD Monitor,1,149.99,07/19/19 18:37,"146 Highland St, Los Angeles, CA 90001" -235364,Lightning Charging Cable,1,14.95,07/13/19 06:42,"132 Maple St, San Francisco, CA 94016" -235365,USB-C Charging Cable,1,11.95,07/26/19 19:40,"393 Madison St, Seattle, WA 98101" -235366,Lightning Charging Cable,1,14.95,07/05/19 14:08,"2 Center St, San Francisco, CA 94016" -235367,Macbook Pro Laptop,1,1700,07/06/19 09:22,"715 Sunset St, Boston, MA 02215" -235368,AA Batteries (4-pack),1,3.84,07/11/19 18:20,"802 Wilson St, Boston, MA 02215" -235369,AA Batteries (4-pack),1,3.84,07/26/19 02:21,"796 Lake St, Austin, TX 73301" -235369,USB-C Charging Cable,1,11.95,07/26/19 02:21,"796 Lake St, Austin, TX 73301" -235370,Wired Headphones,1,11.99,07/13/19 12:25,"145 Spruce St, Los Angeles, CA 90001" -235371,Macbook Pro Laptop,1,1700,07/14/19 10:38,"971 Jefferson St, Los Angeles, CA 90001" -235372,AAA Batteries (4-pack),1,2.99,07/28/19 21:35,"300 10th St, Boston, MA 02215" -235373,Apple Airpods Headphones,1,150,07/22/19 17:37,"490 2nd St, San Francisco, CA 94016" -235374,AA Batteries (4-pack),1,3.84,07/31/19 09:17,"55 Lakeview St, New York City, NY 10001" -235375,Lightning Charging Cable,1,14.95,07/25/19 15:01,"755 West St, New York City, NY 10001" -235376,Wired Headphones,1,11.99,07/06/19 12:23,"621 4th St, Los Angeles, CA 90001" -235377,34in Ultrawide Monitor,1,379.99,07/07/19 20:44,"263 Ridge St, Los Angeles, CA 90001" -235378,Apple Airpods Headphones,1,150,07/02/19 23:42,"448 West St, Los Angeles, CA 90001" -235379,Lightning Charging Cable,1,14.95,07/12/19 10:43,"936 Park St, San Francisco, CA 94016" -235380,27in 4K Gaming Monitor,1,389.99,07/10/19 19:49,"200 Walnut St, Austin, TX 73301" -235381,Lightning Charging Cable,1,14.95,07/16/19 15:08,"996 Wilson St, New York City, NY 10001" -235382,USB-C Charging Cable,1,11.95,07/01/19 10:15,"956 Jefferson St, New York City, NY 10001" -235383,AA Batteries (4-pack),2,3.84,07/18/19 15:10,"396 13th St, Dallas, TX 75001" -235384,Flatscreen TV,1,300,07/14/19 19:04,"604 9th St, New York City, NY 10001" -235385,AA Batteries (4-pack),1,3.84,07/23/19 13:36,"252 Spruce St, Seattle, WA 98101" -235386,USB-C Charging Cable,1,11.95,07/26/19 14:20,"102 5th St, New York City, NY 10001" -235387,Lightning Charging Cable,1,14.95,07/01/19 09:36,"481 2nd St, Boston, MA 02215" -235388,ThinkPad Laptop,1,999.99,07/27/19 14:15,"304 Jefferson St, Dallas, TX 75001" -235389,27in FHD Monitor,1,149.99,07/21/19 08:15,"303 Jackson St, Dallas, TX 75001" -235390,AAA Batteries (4-pack),2,2.99,07/27/19 23:20,"978 Highland St, Los Angeles, CA 90001" -,,,,, -235391,Bose SoundSport Headphones,1,99.99,07/07/19 23:12,"957 Church St, New York City, NY 10001" -235392,AAA Batteries (4-pack),1,2.99,07/19/19 19:33,"292 Lincoln St, Los Angeles, CA 90001" -235393,Macbook Pro Laptop,1,1700,07/28/19 20:17,"379 Chestnut St, Atlanta, GA 30301" -235394,27in FHD Monitor,1,149.99,07/12/19 10:37,"124 Chestnut St, San Francisco, CA 94016" -235395,27in FHD Monitor,1,149.99,07/15/19 00:33,"493 5th St, Los Angeles, CA 90001" -235396,Vareebadd Phone,1,400,07/12/19 12:24,"478 4th St, New York City, NY 10001" -235397,Bose SoundSport Headphones,1,99.99,07/09/19 17:21,"232 Maple St, Seattle, WA 98101" -235398,USB-C Charging Cable,1,11.95,07/10/19 23:34,"51 North St, Los Angeles, CA 90001" -235399,20in Monitor,1,109.99,07/15/19 19:51,"850 West St, San Francisco, CA 94016" -235400,AAA Batteries (4-pack),1,2.99,07/28/19 10:05,"494 9th St, Portland, OR 97035" -235401,iPhone,1,700,07/20/19 21:29,"335 6th St, San Francisco, CA 94016" -235402,USB-C Charging Cable,1,11.95,07/08/19 02:43,"965 Lake St, New York City, NY 10001" -235403,AAA Batteries (4-pack),2,2.99,07/07/19 17:44,"60 Lake St, Boston, MA 02215" -235404,Flatscreen TV,1,300,07/24/19 18:54,"972 Highland St, Seattle, WA 98101" -235405,Apple Airpods Headphones,1,150,07/16/19 11:25,"49 Church St, New York City, NY 10001" -235406,Apple Airpods Headphones,1,150,07/16/19 11:47,"268 River St, San Francisco, CA 94016" -235407,USB-C Charging Cable,1,11.95,07/15/19 00:09,"774 Madison St, San Francisco, CA 94016" -235408,USB-C Charging Cable,1,11.95,07/06/19 15:57,"521 Willow St, Dallas, TX 75001" -235409,AAA Batteries (4-pack),3,2.99,07/07/19 18:05,"611 11th St, Dallas, TX 75001" -235410,USB-C Charging Cable,1,11.95,07/22/19 18:18,"50 6th St, Boston, MA 02215" -235411,Apple Airpods Headphones,1,150,07/20/19 21:15,"533 Highland St, Austin, TX 73301" -235412,Wired Headphones,1,11.99,07/10/19 18:18,"26 Lincoln St, Atlanta, GA 30301" -235413,Lightning Charging Cable,1,14.95,07/21/19 21:05,"937 Church St, Los Angeles, CA 90001" -235414,Wired Headphones,2,11.99,07/05/19 16:16,"547 Forest St, Los Angeles, CA 90001" -235415,Macbook Pro Laptop,1,1700,07/16/19 04:44,"612 10th St, Boston, MA 02215" -235416,USB-C Charging Cable,1,11.95,07/18/19 20:07,"942 Wilson St, New York City, NY 10001" -235417,USB-C Charging Cable,1,11.95,07/22/19 13:58,"100 Wilson St, San Francisco, CA 94016" -235418,AA Batteries (4-pack),3,3.84,07/20/19 13:04,"61 Center St, Boston, MA 02215" -235419,20in Monitor,1,109.99,07/12/19 06:53,"525 Lake St, San Francisco, CA 94016" -235420,AA Batteries (4-pack),1,3.84,07/16/19 19:05,"346 8th St, Dallas, TX 75001" -235421,27in FHD Monitor,1,149.99,07/17/19 19:26,"789 Madison St, Los Angeles, CA 90001" -235422,34in Ultrawide Monitor,1,379.99,07/17/19 18:09,"627 Meadow St, Dallas, TX 75001" -235423,Apple Airpods Headphones,1,150,07/23/19 21:04,"599 4th St, San Francisco, CA 94016" -235424,USB-C Charging Cable,2,11.95,07/30/19 10:44,"212 Spruce St, Portland, OR 97035" -235425,Wired Headphones,1,11.99,07/08/19 21:53,"21 Hickory St, Los Angeles, CA 90001" -235426,Bose SoundSport Headphones,1,99.99,07/09/19 05:23,"30 7th St, San Francisco, CA 94016" -235427,USB-C Charging Cable,1,11.95,07/29/19 12:31,"490 Lake St, Los Angeles, CA 90001" -235428,27in FHD Monitor,1,149.99,07/17/19 17:39,"111 Willow St, Austin, TX 73301" -235429,Apple Airpods Headphones,1,150,07/13/19 17:15,"767 Lakeview St, Los Angeles, CA 90001" -235430,Google Phone,1,600,07/21/19 16:50,"734 Meadow St, Portland, OR 97035" -235431,Flatscreen TV,1,300,07/21/19 14:46,"147 Park St, New York City, NY 10001" -235432,USB-C Charging Cable,1,11.95,07/05/19 09:04,"401 Lakeview St, Atlanta, GA 30301" -235433,Lightning Charging Cable,1,14.95,07/27/19 23:29,"841 12th St, Los Angeles, CA 90001" -235434,Lightning Charging Cable,1,14.95,07/27/19 07:07,"577 Maple St, Dallas, TX 75001" -235435,34in Ultrawide Monitor,1,379.99,07/16/19 11:46,"438 Jefferson St, New York City, NY 10001" -235436,USB-C Charging Cable,1,11.95,07/20/19 09:39,"92 Sunset St, New York City, NY 10001" -235437,Flatscreen TV,1,300,07/05/19 19:24,"323 14th St, Austin, TX 73301" -235438,USB-C Charging Cable,2,11.95,07/02/19 11:21,"750 Jefferson St, Austin, TX 73301" -235439,Google Phone,1,600,07/02/19 17:46,"29 Chestnut St, San Francisco, CA 94016" -235440,27in FHD Monitor,1,149.99,07/14/19 20:49,"907 Dogwood St, New York City, NY 10001" -235441,Bose SoundSport Headphones,1,99.99,07/08/19 21:01,"141 Lakeview St, Los Angeles, CA 90001" -235442,34in Ultrawide Monitor,1,379.99,07/18/19 14:53,"498 Lincoln St, Atlanta, GA 30301" -235443,Apple Airpods Headphones,1,150,07/08/19 18:14,"632 Spruce St, Los Angeles, CA 90001" -235444,Google Phone,1,600,07/23/19 17:45,"707 13th St, New York City, NY 10001" -235445,USB-C Charging Cable,1,11.95,07/16/19 17:47,"791 Wilson St, San Francisco, CA 94016" -235446,AA Batteries (4-pack),1,3.84,07/09/19 20:01,"913 9th St, Los Angeles, CA 90001" -235447,USB-C Charging Cable,1,11.95,07/05/19 11:00,"718 Jefferson St, Atlanta, GA 30301" -235448,Apple Airpods Headphones,1,150,07/16/19 21:32,"875 2nd St, Portland, ME 04101" -235449,AA Batteries (4-pack),1,3.84,07/06/19 17:49,"303 10th St, Portland, OR 97035" -235450,AA Batteries (4-pack),1,3.84,07/16/19 19:09,"838 12th St, New York City, NY 10001" -235451,Wired Headphones,1,11.99,07/08/19 23:51,"870 Madison St, Dallas, TX 75001" -235452,AA Batteries (4-pack),2,3.84,07/01/19 17:13,"41 Highland St, New York City, NY 10001" -235453,AAA Batteries (4-pack),1,2.99,07/24/19 17:20,"703 13th St, Boston, MA 02215" -235454,27in 4K Gaming Monitor,1,389.99,07/14/19 17:06,"616 6th St, Austin, TX 73301" -235455,USB-C Charging Cable,1,11.95,07/12/19 22:03,"174 Chestnut St, Dallas, TX 75001" -235456,AAA Batteries (4-pack),1,2.99,07/28/19 21:06,"492 6th St, Los Angeles, CA 90001" -235457,Apple Airpods Headphones,1,150,07/03/19 14:11,"453 North St, San Francisco, CA 94016" -235458,Macbook Pro Laptop,1,1700,07/19/19 18:26,"911 Ridge St, San Francisco, CA 94016" -235459,AA Batteries (4-pack),1,3.84,07/09/19 21:22,"9 9th St, Boston, MA 02215" -235460,AAA Batteries (4-pack),5,2.99,07/01/19 11:34,"11 Cherry St, New York City, NY 10001" -235461,Flatscreen TV,1,300,07/06/19 16:09,"576 11th St, San Francisco, CA 94016" -235462,27in FHD Monitor,1,149.99,07/10/19 12:30,"942 Madison St, Atlanta, GA 30301" -235463,Apple Airpods Headphones,1,150,07/20/19 14:12,"509 Cherry St, Portland, OR 97035" -235464,USB-C Charging Cable,1,11.95,07/28/19 05:31,"918 12th St, Boston, MA 02215" -235465,27in 4K Gaming Monitor,1,389.99,07/08/19 21:17,"853 Lincoln St, New York City, NY 10001" -235466,Google Phone,1,600,07/27/19 11:04,"720 9th St, Boston, MA 02215" -235467,Wired Headphones,1,11.99,07/22/19 20:18,"616 6th St, Los Angeles, CA 90001" -235468,20in Monitor,1,109.99,07/10/19 07:55,"302 Lake St, Atlanta, GA 30301" -235469,AA Batteries (4-pack),2,3.84,07/09/19 16:02,"562 Lake St, Los Angeles, CA 90001" -235470,Bose SoundSport Headphones,1,99.99,07/18/19 16:40,"4 Cedar St, Boston, MA 02215" -235471,ThinkPad Laptop,1,999.99,07/16/19 21:10,"636 11th St, Portland, OR 97035" -235472,USB-C Charging Cable,1,11.95,07/10/19 13:51,"109 Madison St, Dallas, TX 75001" -235473,AAA Batteries (4-pack),1,2.99,07/21/19 18:28,"391 4th St, Portland, ME 04101" -235474,Macbook Pro Laptop,1,1700,07/27/19 20:15,"901 Hickory St, Seattle, WA 98101" -235475,20in Monitor,1,109.99,07/30/19 13:46,"961 Willow St, Atlanta, GA 30301" -235476,AAA Batteries (4-pack),1,2.99,07/05/19 18:04,"245 Washington St, San Francisco, CA 94016" -235477,LG Dryer,1,600.0,07/21/19 15:26,"824 Willow St, Boston, MA 02215" -235478,Macbook Pro Laptop,1,1700,07/01/19 17:11,"316 4th St, San Francisco, CA 94016" -235479,Lightning Charging Cable,1,14.95,07/03/19 18:49,"407 Spruce St, Atlanta, GA 30301" -235480,34in Ultrawide Monitor,1,379.99,07/30/19 14:09,"150 Lincoln St, San Francisco, CA 94016" -235481,Google Phone,1,600,07/25/19 09:33,"407 Johnson St, San Francisco, CA 94016" -235481,Bose SoundSport Headphones,1,99.99,07/25/19 09:33,"407 Johnson St, San Francisco, CA 94016" -235482,27in FHD Monitor,1,149.99,07/24/19 07:01,"850 Adams St, Boston, MA 02215" -235483,Lightning Charging Cable,1,14.95,07/17/19 08:08,"299 Cedar St, Portland, OR 97035" -235484,AAA Batteries (4-pack),1,2.99,07/09/19 04:15,"82 Wilson St, Boston, MA 02215" -235485,AAA Batteries (4-pack),2,2.99,07/14/19 20:24,"66 Ridge St, San Francisco, CA 94016" -235486,Bose SoundSport Headphones,1,99.99,07/08/19 15:50,"912 Pine St, New York City, NY 10001" -235487,20in Monitor,1,109.99,07/18/19 14:47,"68 7th St, Los Angeles, CA 90001" -235488,Bose SoundSport Headphones,1,99.99,07/30/19 23:17,"659 Lakeview St, Boston, MA 02215" -235489,AAA Batteries (4-pack),1,2.99,07/27/19 08:22,"5 West St, Portland, ME 04101" -235490,Wired Headphones,2,11.99,07/08/19 19:05,"783 Meadow St, Los Angeles, CA 90001" -235491,27in 4K Gaming Monitor,1,389.99,07/16/19 17:06,"274 Spruce St, Atlanta, GA 30301" -235492,Macbook Pro Laptop,1,1700,07/19/19 17:58,"824 Spruce St, Los Angeles, CA 90001" -235493,USB-C Charging Cable,1,11.95,07/30/19 17:18,"461 Chestnut St, Portland, OR 97035" -235494,34in Ultrawide Monitor,1,379.99,07/03/19 12:34,"80 Highland St, San Francisco, CA 94016" -235495,Apple Airpods Headphones,1,150,07/27/19 12:23,"969 11th St, New York City, NY 10001" -235496,Wired Headphones,1,11.99,07/05/19 05:07,"945 West St, San Francisco, CA 94016" -235497,AAA Batteries (4-pack),2,2.99,07/15/19 12:12,"991 13th St, Los Angeles, CA 90001" -235498,Wired Headphones,1,11.99,07/26/19 14:34,"126 Lincoln St, Atlanta, GA 30301" -235499,Lightning Charging Cable,1,14.95,07/30/19 18:20,"709 Maple St, Los Angeles, CA 90001" -235500,Google Phone,1,600,07/19/19 21:48,"803 Meadow St, Portland, OR 97035" -235501,USB-C Charging Cable,1,11.95,07/23/19 13:47,"269 Jackson St, Boston, MA 02215" -235502,Apple Airpods Headphones,1,150,07/23/19 22:38,"5 Ridge St, Los Angeles, CA 90001" -235503,Wired Headphones,1,11.99,07/16/19 22:12,"78 13th St, Los Angeles, CA 90001" -235504,AA Batteries (4-pack),2,3.84,07/16/19 22:42,"183 Spruce St, New York City, NY 10001" -235505,27in 4K Gaming Monitor,1,389.99,07/25/19 19:56,"383 Forest St, Los Angeles, CA 90001" -235506,34in Ultrawide Monitor,1,379.99,07/28/19 18:54,"415 4th St, Dallas, TX 75001" -235507,USB-C Charging Cable,1,11.95,07/10/19 09:39,"577 South St, San Francisco, CA 94016" -235508,Wired Headphones,2,11.99,07/05/19 14:18,"170 River St, San Francisco, CA 94016" -235509,Lightning Charging Cable,1,14.95,07/27/19 12:29,"607 Center St, San Francisco, CA 94016" -235510,USB-C Charging Cable,1,11.95,07/31/19 16:14,"718 Washington St, Austin, TX 73301" -235511,AA Batteries (4-pack),1,3.84,07/23/19 23:24,"462 Chestnut St, Atlanta, GA 30301" -235512,Google Phone,1,600,07/17/19 21:57,"938 North St, Portland, ME 04101" -235513,27in FHD Monitor,1,149.99,07/13/19 17:30,"428 11th St, Austin, TX 73301" -235514,Lightning Charging Cable,1,14.95,07/18/19 14:51,"693 Jackson St, San Francisco, CA 94016" -235515,AAA Batteries (4-pack),2,2.99,07/18/19 13:02,"721 2nd St, San Francisco, CA 94016" -235516,27in FHD Monitor,1,149.99,07/15/19 21:59,"189 7th St, Los Angeles, CA 90001" -235517,Lightning Charging Cable,1,14.95,07/14/19 14:28,"637 11th St, Portland, OR 97035" -235518,AA Batteries (4-pack),1,3.84,07/09/19 10:27,"698 7th St, Atlanta, GA 30301" -235519,AA Batteries (4-pack),3,3.84,07/14/19 12:04,"551 Madison St, New York City, NY 10001" -235520,27in 4K Gaming Monitor,1,389.99,07/19/19 21:58,"868 6th St, San Francisco, CA 94016" -235521,AAA Batteries (4-pack),1,2.99,07/28/19 15:57,"967 Lake St, New York City, NY 10001" -235522,AAA Batteries (4-pack),1,2.99,07/18/19 20:17,"368 5th St, Seattle, WA 98101" -235523,AA Batteries (4-pack),1,3.84,07/25/19 13:30,"254 1st St, San Francisco, CA 94016" -,,,,, -235524,Wired Headphones,1,11.99,07/27/19 11:33,"584 Jefferson St, New York City, NY 10001" -235525,Lightning Charging Cable,1,14.95,07/02/19 19:23,"3 Wilson St, Los Angeles, CA 90001" -235526,USB-C Charging Cable,1,11.95,07/27/19 22:29,"160 Forest St, Portland, OR 97035" -235527,Flatscreen TV,1,300,07/03/19 19:11,"117 River St, San Francisco, CA 94016" -235528,Lightning Charging Cable,1,14.95,07/23/19 07:31,"84 Center St, Atlanta, GA 30301" -235529,Macbook Pro Laptop,1,1700,07/05/19 12:15,"399 14th St, Los Angeles, CA 90001" -235530,Lightning Charging Cable,1,14.95,07/08/19 11:30,"856 8th St, Boston, MA 02215" -235531,AAA Batteries (4-pack),1,2.99,07/07/19 22:44,"731 8th St, San Francisco, CA 94016" -235532,Flatscreen TV,1,300,07/27/19 21:35,"738 Ridge St, Los Angeles, CA 90001" -235533,27in 4K Gaming Monitor,1,389.99,07/17/19 22:01,"123 Pine St, San Francisco, CA 94016" -235534,USB-C Charging Cable,1,11.95,07/23/19 15:19,"14 Ridge St, Portland, OR 97035" -235535,Lightning Charging Cable,1,14.95,07/22/19 17:03,"773 8th St, San Francisco, CA 94016" -235536,34in Ultrawide Monitor,1,379.99,07/29/19 14:11,"430 Forest St, Dallas, TX 75001" -235537,USB-C Charging Cable,1,11.95,07/02/19 21:37,"663 Adams St, San Francisco, CA 94016" -235538,USB-C Charging Cable,1,11.95,07/21/19 11:37,"835 1st St, Atlanta, GA 30301" -235539,27in 4K Gaming Monitor,1,389.99,07/27/19 12:32,"421 2nd St, San Francisco, CA 94016" -235540,AA Batteries (4-pack),1,3.84,07/01/19 06:44,"959 North St, Austin, TX 73301" -235541,Wired Headphones,1,11.99,07/17/19 16:29,"517 Cedar St, Los Angeles, CA 90001" -235542,AAA Batteries (4-pack),1,2.99,07/26/19 19:17,"827 6th St, San Francisco, CA 94016" -235543,27in FHD Monitor,1,149.99,07/21/19 21:40,"968 Adams St, San Francisco, CA 94016" -235544,Apple Airpods Headphones,1,150,07/14/19 23:23,"764 1st St, Atlanta, GA 30301" -235545,USB-C Charging Cable,1,11.95,07/23/19 05:40,"563 11th St, Los Angeles, CA 90001" -235546,Wired Headphones,1,11.99,07/27/19 23:01,"87 11th St, Austin, TX 73301" -235547,USB-C Charging Cable,1,11.95,07/15/19 21:53,"737 12th St, Austin, TX 73301" -235548,USB-C Charging Cable,1,11.95,07/07/19 10:27,"2 Hill St, Los Angeles, CA 90001" -235549,Lightning Charging Cable,1,14.95,07/31/19 22:48,"716 7th St, Dallas, TX 75001" -235550,Lightning Charging Cable,1,14.95,07/31/19 18:50,"415 Cherry St, Boston, MA 02215" -235550,USB-C Charging Cable,1,11.95,07/31/19 18:50,"415 Cherry St, Boston, MA 02215" -235551,ThinkPad Laptop,1,999.99,07/14/19 17:42,"879 12th St, Dallas, TX 75001" -235552,Macbook Pro Laptop,1,1700,07/18/19 19:10,"722 Dogwood St, Boston, MA 02215" -235553,Apple Airpods Headphones,1,150,07/08/19 16:23,"389 River St, New York City, NY 10001" -235554,Lightning Charging Cable,1,14.95,07/23/19 22:24,"235 Center St, Seattle, WA 98101" -235555,USB-C Charging Cable,1,11.95,07/12/19 12:42,"192 Main St, New York City, NY 10001" -235556,Apple Airpods Headphones,1,150,07/18/19 04:52,"730 8th St, San Francisco, CA 94016" -235557,Bose SoundSport Headphones,1,99.99,07/14/19 01:21,"286 5th St, Los Angeles, CA 90001" -235558,Apple Airpods Headphones,1,150,07/24/19 17:33,"631 Meadow St, Seattle, WA 98101" -235559,Lightning Charging Cable,1,14.95,07/29/19 11:54,"110 Dogwood St, San Francisco, CA 94016" -235560,USB-C Charging Cable,1,11.95,07/14/19 22:21,"610 Chestnut St, San Francisco, CA 94016" -235561,Apple Airpods Headphones,1,150,07/04/19 22:51,"855 West St, New York City, NY 10001" -235562,Lightning Charging Cable,1,14.95,07/27/19 12:43,"343 8th St, Los Angeles, CA 90001" -235563,Bose SoundSport Headphones,1,99.99,07/12/19 09:49,"994 Main St, Portland, OR 97035" -235564,AAA Batteries (4-pack),2,2.99,07/07/19 13:20,"185 Pine St, New York City, NY 10001" -235565,Google Phone,1,600,07/26/19 12:39,"930 Madison St, Portland, OR 97035" -235566,USB-C Charging Cable,1,11.95,07/03/19 13:09,"581 Forest St, Los Angeles, CA 90001" -235567,Bose SoundSport Headphones,1,99.99,07/03/19 06:28,"206 Wilson St, Dallas, TX 75001" -235568,AA Batteries (4-pack),1,3.84,07/21/19 01:08,"7 Dogwood St, San Francisco, CA 94016" -235569,Lightning Charging Cable,2,14.95,07/02/19 23:45,"977 7th St, San Francisco, CA 94016" -235570,Google Phone,1,600,07/06/19 15:00,"999 Jefferson St, Portland, OR 97035" -235570,Bose SoundSport Headphones,1,99.99,07/06/19 15:00,"999 Jefferson St, Portland, OR 97035" -235571,AA Batteries (4-pack),1,3.84,07/22/19 16:42,"231 12th St, Portland, OR 97035" -235571,AAA Batteries (4-pack),2,2.99,07/22/19 16:42,"231 12th St, Portland, OR 97035" -235572,Flatscreen TV,1,300,07/15/19 15:27,"378 14th St, Atlanta, GA 30301" -235573,AA Batteries (4-pack),1,3.84,07/07/19 18:32,"260 Meadow St, San Francisco, CA 94016" -235574,USB-C Charging Cable,1,11.95,07/19/19 11:47,"229 Cherry St, New York City, NY 10001" -235575,34in Ultrawide Monitor,1,379.99,07/17/19 19:20,"912 14th St, New York City, NY 10001" -235576,27in FHD Monitor,1,149.99,07/28/19 14:34,"150 5th St, New York City, NY 10001" -235577,USB-C Charging Cable,1,11.95,07/16/19 12:57,"803 Cedar St, Portland, OR 97035" -235578,Flatscreen TV,1,300,07/06/19 18:37,"991 12th St, Boston, MA 02215" -235579,20in Monitor,1,109.99,07/29/19 20:04,"522 11th St, Austin, TX 73301" -235580,AA Batteries (4-pack),1,3.84,07/29/19 20:25,"529 Hickory St, Boston, MA 02215" -235581,Bose SoundSport Headphones,1,99.99,07/20/19 13:44,"950 6th St, San Francisco, CA 94016" -235582,AA Batteries (4-pack),1,3.84,07/31/19 18:53,"575 West St, Los Angeles, CA 90001" -235583,LG Dryer,1,600.0,07/12/19 09:05,"972 West St, New York City, NY 10001" -235584,Vareebadd Phone,1,400,07/04/19 10:38,"366 6th St, Seattle, WA 98101" -235584,USB-C Charging Cable,1,11.95,07/04/19 10:38,"366 6th St, Seattle, WA 98101" -235584,Bose SoundSport Headphones,1,99.99,07/04/19 10:38,"366 6th St, Seattle, WA 98101" -235585,27in 4K Gaming Monitor,1,389.99,07/03/19 23:53,"597 Hickory St, Portland, OR 97035" -235586,Wired Headphones,1,11.99,07/25/19 17:33,"759 Chestnut St, San Francisco, CA 94016" -235586,Bose SoundSport Headphones,1,99.99,07/25/19 17:33,"759 Chestnut St, San Francisco, CA 94016" -235587,AAA Batteries (4-pack),1,2.99,07/10/19 13:22,"487 Park St, San Francisco, CA 94016" -235588,27in FHD Monitor,1,149.99,07/11/19 17:18,"229 Meadow St, Seattle, WA 98101" -235589,Bose SoundSport Headphones,1,99.99,07/27/19 21:13,"519 11th St, San Francisco, CA 94016" -235590,AA Batteries (4-pack),1,3.84,07/22/19 14:39,"835 7th St, Dallas, TX 75001" -235591,Flatscreen TV,1,300,07/30/19 19:07,"878 Church St, New York City, NY 10001" -235592,34in Ultrawide Monitor,1,379.99,07/07/19 17:18,"489 Dogwood St, Atlanta, GA 30301" -235593,iPhone,1,700,07/29/19 01:53,"305 11th St, Atlanta, GA 30301" -235594,USB-C Charging Cable,2,11.95,07/12/19 07:00,"999 11th St, San Francisco, CA 94016" -235595,AA Batteries (4-pack),2,3.84,07/22/19 21:40,"340 Cherry St, Boston, MA 02215" -235596,Apple Airpods Headphones,1,150,07/12/19 11:38,"529 14th St, New York City, NY 10001" -235597,iPhone,1,700,07/01/19 20:22,"452 North St, Boston, MA 02215" -235598,AA Batteries (4-pack),1,3.84,07/16/19 12:28,"281 Jefferson St, San Francisco, CA 94016" -235599,Macbook Pro Laptop,1,1700,07/15/19 15:00,"128 Sunset St, Los Angeles, CA 90001" -235600,Apple Airpods Headphones,1,150,07/21/19 23:54,"313 Center St, San Francisco, CA 94016" -235601,Lightning Charging Cable,1,14.95,07/11/19 04:02,"945 Park St, Portland, OR 97035" -235602,AA Batteries (4-pack),2,3.84,07/26/19 17:25,"442 South St, San Francisco, CA 94016" -235603,27in FHD Monitor,1,149.99,07/03/19 15:36,"546 2nd St, Los Angeles, CA 90001" -235604,USB-C Charging Cable,1,11.95,07/02/19 16:33,"545 Cherry St, Dallas, TX 75001" -235605,34in Ultrawide Monitor,1,379.99,07/15/19 02:15,"839 12th St, Los Angeles, CA 90001" -235606,Bose SoundSport Headphones,1,99.99,07/20/19 12:26,"83 Madison St, San Francisco, CA 94016" -235607,Bose SoundSport Headphones,1,99.99,07/31/19 20:23,"672 12th St, San Francisco, CA 94016" -235608,34in Ultrawide Monitor,1,379.99,07/14/19 12:05,"688 6th St, San Francisco, CA 94016" -235609,Macbook Pro Laptop,1,1700,07/09/19 16:01,"730 Hickory St, Los Angeles, CA 90001" -235610,USB-C Charging Cable,1,11.95,07/30/19 11:23,"970 4th St, Los Angeles, CA 90001" -235611,Lightning Charging Cable,1,14.95,07/28/19 14:16,"669 12th St, Los Angeles, CA 90001" -235612,Wired Headphones,1,11.99,07/31/19 15:41,"304 Dogwood St, Seattle, WA 98101" -235613,Apple Airpods Headphones,1,150,07/25/19 17:18,"371 North St, Los Angeles, CA 90001" -235614,Flatscreen TV,1,300,07/09/19 07:32,"23 Cherry St, Dallas, TX 75001" -235615,AAA Batteries (4-pack),1,2.99,07/28/19 13:40,"781 4th St, San Francisco, CA 94016" -235616,ThinkPad Laptop,1,999.99,07/14/19 23:27,"553 Center St, Seattle, WA 98101" -235617,20in Monitor,1,109.99,07/18/19 10:57,"246 Jackson St, Atlanta, GA 30301" -235618,Bose SoundSport Headphones,1,99.99,07/13/19 10:46,"585 Johnson St, Portland, OR 97035" -235619,Apple Airpods Headphones,1,150,07/30/19 18:26,"696 Ridge St, Boston, MA 02215" -235620,AA Batteries (4-pack),1,3.84,07/23/19 23:59,"912 Jefferson St, Los Angeles, CA 90001" -235621,Vareebadd Phone,1,400,07/20/19 12:06,"267 4th St, Atlanta, GA 30301" -235622,Wired Headphones,1,11.99,07/04/19 00:32,"153 13th St, Boston, MA 02215" -235623,Wired Headphones,1,11.99,07/08/19 15:45,"764 1st St, Seattle, WA 98101" -235624,AA Batteries (4-pack),1,3.84,07/06/19 16:48,"690 12th St, San Francisco, CA 94016" -235625,Macbook Pro Laptop,1,1700,07/11/19 20:26,"42 6th St, Portland, OR 97035" -235626,USB-C Charging Cable,1,11.95,07/03/19 18:16,"691 9th St, San Francisco, CA 94016" -235627,20in Monitor,1,109.99,07/18/19 23:18,"134 Walnut St, New York City, NY 10001" -235628,AA Batteries (4-pack),1,3.84,07/14/19 11:01,"711 River St, New York City, NY 10001" -235629,Wired Headphones,1,11.99,07/15/19 20:50,"366 Madison St, Austin, TX 73301" -235630,Lightning Charging Cable,1,14.95,07/31/19 12:28,"522 10th St, San Francisco, CA 94016" -235631,AAA Batteries (4-pack),1,2.99,07/01/19 09:37,"844 Madison St, Los Angeles, CA 90001" -235632,27in FHD Monitor,1,149.99,07/30/19 15:31,"969 Sunset St, San Francisco, CA 94016" -235633,USB-C Charging Cable,1,11.95,07/02/19 17:08,"2 River St, Atlanta, GA 30301" -235633,27in 4K Gaming Monitor,1,389.99,07/02/19 17:08,"2 River St, Atlanta, GA 30301" -235634,Lightning Charging Cable,1,14.95,07/18/19 13:13,"255 5th St, Portland, OR 97035" -235635,Apple Airpods Headphones,1,150,07/02/19 15:43,"493 Wilson St, New York City, NY 10001" -235636,Lightning Charging Cable,1,14.95,07/18/19 09:16,"890 Pine St, San Francisco, CA 94016" -235637,USB-C Charging Cable,1,11.95,07/28/19 23:46,"450 South St, New York City, NY 10001" -235638,USB-C Charging Cable,1,11.95,07/09/19 12:00,"940 8th St, Seattle, WA 98101" -235639,Google Phone,1,600,07/01/19 09:19,"259 Madison St, New York City, NY 10001" -235640,Bose SoundSport Headphones,1,99.99,07/15/19 17:07,"66 Maple St, New York City, NY 10001" -235641,AAA Batteries (4-pack),1,2.99,07/08/19 08:30,"973 Hill St, Los Angeles, CA 90001" -235642,Wired Headphones,2,11.99,07/12/19 14:44,"513 South St, Portland, OR 97035" -235643,Lightning Charging Cable,1,14.95,07/11/19 13:21,"234 Lakeview St, Boston, MA 02215" -235644,Apple Airpods Headphones,1,150,07/19/19 12:25,"674 Jackson St, Los Angeles, CA 90001" -235645,Wired Headphones,2,11.99,07/17/19 12:08,"307 Hickory St, New York City, NY 10001" -235646,AA Batteries (4-pack),2,3.84,07/20/19 22:33,"60 4th St, New York City, NY 10001" -235647,AA Batteries (4-pack),2,3.84,07/02/19 15:17,"152 West St, Seattle, WA 98101" -235648,Lightning Charging Cable,1,14.95,07/07/19 14:30,"437 5th St, San Francisco, CA 94016" -235649,Lightning Charging Cable,1,14.95,07/09/19 10:03,"349 Forest St, Los Angeles, CA 90001" -235650,Lightning Charging Cable,1,14.95,07/29/19 06:05,"626 8th St, Atlanta, GA 30301" -235651,iPhone,1,700,07/20/19 19:48,"65 8th St, New York City, NY 10001" -235652,Apple Airpods Headphones,1,150,07/06/19 18:07,"781 Sunset St, Atlanta, GA 30301" -235653,Apple Airpods Headphones,1,150,07/30/19 17:12,"182 Jefferson St, Seattle, WA 98101" -235654,Google Phone,1,600,07/08/19 22:44,"553 Willow St, San Francisco, CA 94016" -235655,Wired Headphones,1,11.99,07/31/19 20:32,"298 Church St, Seattle, WA 98101" -235656,AA Batteries (4-pack),1,3.84,07/25/19 16:04,"289 North St, San Francisco, CA 94016" -235657,Wired Headphones,1,11.99,07/16/19 21:09,"285 Dogwood St, Portland, OR 97035" -235658,USB-C Charging Cable,1,11.95,07/09/19 12:38,"716 Sunset St, San Francisco, CA 94016" -235659,USB-C Charging Cable,1,11.95,07/20/19 05:23,"451 Lake St, Los Angeles, CA 90001" -235660,USB-C Charging Cable,1,11.95,07/31/19 11:38,"347 13th St, Los Angeles, CA 90001" -235661,20in Monitor,1,109.99,07/29/19 08:28,"203 1st St, San Francisco, CA 94016" -235662,Bose SoundSport Headphones,1,99.99,07/19/19 21:03,"375 Wilson St, Los Angeles, CA 90001" -235663,AAA Batteries (4-pack),1,2.99,07/29/19 20:46,"279 13th St, Los Angeles, CA 90001" -235664,Lightning Charging Cable,1,14.95,07/29/19 11:03,"546 Washington St, Austin, TX 73301" -235665,AA Batteries (4-pack),1,3.84,07/23/19 17:19,"604 Ridge St, San Francisco, CA 94016" -235666,AA Batteries (4-pack),1,3.84,07/17/19 16:22,"530 Willow St, New York City, NY 10001" -235667,AAA Batteries (4-pack),1,2.99,07/29/19 06:53,"552 Sunset St, San Francisco, CA 94016" -235668,Wired Headphones,1,11.99,07/15/19 23:17,"701 Pine St, New York City, NY 10001" -235669,iPhone,1,700,07/29/19 15:39,"594 North St, Austin, TX 73301" -235670,AA Batteries (4-pack),1,3.84,07/25/19 15:38,"169 Main St, Los Angeles, CA 90001" -235671,Wired Headphones,1,11.99,07/31/19 11:22,"681 Hickory St, New York City, NY 10001" -235672,Wired Headphones,1,11.99,07/28/19 15:35,"840 Walnut St, Atlanta, GA 30301" -235673,27in FHD Monitor,1,149.99,07/31/19 19:20,"732 Forest St, Los Angeles, CA 90001" -235674,Bose SoundSport Headphones,1,99.99,07/21/19 17:17,"97 Hickory St, San Francisco, CA 94016" -235675,AAA Batteries (4-pack),1,2.99,07/06/19 01:37,"108 Main St, Los Angeles, CA 90001" -235676,Apple Airpods Headphones,1,150,07/01/19 19:31,"974 Main St, Austin, TX 73301" -235677,AA Batteries (4-pack),2,3.84,07/19/19 00:37,"847 River St, Dallas, TX 75001" -235678,34in Ultrawide Monitor,1,379.99,07/20/19 15:31,"605 River St, Boston, MA 02215" -235679,Lightning Charging Cable,1,14.95,07/26/19 09:34,"78 Meadow St, Seattle, WA 98101" -235680,Wired Headphones,1,11.99,07/25/19 13:09,"879 8th St, New York City, NY 10001" -235681,USB-C Charging Cable,1,11.95,07/21/19 22:26,"959 Meadow St, Dallas, TX 75001" -235682,Apple Airpods Headphones,1,150,07/09/19 18:16,"614 Meadow St, Boston, MA 02215" -235683,AAA Batteries (4-pack),1,2.99,07/13/19 12:01,"234 Cherry St, Boston, MA 02215" -235684,AAA Batteries (4-pack),4,2.99,07/21/19 15:49,"298 Dogwood St, San Francisco, CA 94016" -235685,Apple Airpods Headphones,1,150,07/09/19 19:01,"501 West St, San Francisco, CA 94016" -235686,ThinkPad Laptop,1,999.99,07/25/19 13:27,"960 8th St, Atlanta, GA 30301" -235686,Google Phone,1,600,07/25/19 13:27,"960 8th St, Atlanta, GA 30301" -235687,Wired Headphones,1,11.99,07/06/19 19:09,"375 2nd St, Los Angeles, CA 90001" -235688,Lightning Charging Cable,1,14.95,07/01/19 08:50,"391 North St, Austin, TX 73301" -235689,AAA Batteries (4-pack),1,2.99,07/09/19 09:53,"376 Cherry St, Seattle, WA 98101" -235690,Lightning Charging Cable,1,14.95,07/07/19 21:47,"184 Maple St, San Francisco, CA 94016" -235691,27in FHD Monitor,1,149.99,07/02/19 10:40,"730 Meadow St, Austin, TX 73301" -235692,Wired Headphones,1,11.99,07/23/19 18:53,"272 4th St, Los Angeles, CA 90001" -235693,USB-C Charging Cable,1,11.95,07/27/19 11:51,"134 Maple St, Seattle, WA 98101" -235694,Vareebadd Phone,1,400,07/06/19 09:53,"276 6th St, San Francisco, CA 94016" -235695,iPhone,1,700,07/08/19 12:09,"227 Elm St, Dallas, TX 75001" -235696,20in Monitor,1,109.99,07/23/19 12:49,"839 North St, Portland, OR 97035" -235697,USB-C Charging Cable,1,11.95,07/15/19 09:46,"881 Sunset St, Austin, TX 73301" -235698,AA Batteries (4-pack),1,3.84,07/25/19 21:07,"152 Meadow St, Dallas, TX 75001" -235699,27in 4K Gaming Monitor,1,389.99,07/07/19 13:37,"320 North St, San Francisco, CA 94016" -235700,USB-C Charging Cable,1,11.95,07/29/19 17:46,"558 Wilson St, Los Angeles, CA 90001" -235701,USB-C Charging Cable,1,11.95,07/22/19 08:55,"137 4th St, San Francisco, CA 94016" -235702,Bose SoundSport Headphones,1,99.99,07/09/19 21:12,"152 7th St, Austin, TX 73301" -235703,USB-C Charging Cable,1,11.95,07/19/19 12:54,"272 Sunset St, Dallas, TX 75001" -235704,USB-C Charging Cable,1,11.95,07/28/19 05:06,"29 Ridge St, New York City, NY 10001" -235705,Apple Airpods Headphones,1,150,07/20/19 16:53,"947 Lakeview St, San Francisco, CA 94016" -235706,AAA Batteries (4-pack),2,2.99,07/20/19 12:53,"959 Pine St, Austin, TX 73301" -235707,Wired Headphones,1,11.99,07/19/19 15:31,"86 10th St, Dallas, TX 75001" -235708,AAA Batteries (4-pack),4,2.99,07/24/19 12:41,"380 Maple St, Seattle, WA 98101" -235709,iPhone,1,700,07/28/19 17:17,"547 7th St, Los Angeles, CA 90001" -235710,Google Phone,1,600,07/03/19 17:32,"627 Hickory St, San Francisco, CA 94016" -235711,AA Batteries (4-pack),1,3.84,07/18/19 12:34,"757 South St, Seattle, WA 98101" -235712,27in FHD Monitor,1,149.99,07/19/19 17:34,"468 Maple St, San Francisco, CA 94016" -235712,Lightning Charging Cable,1,14.95,07/19/19 17:34,"468 Maple St, San Francisco, CA 94016" -235713,Wired Headphones,1,11.99,07/19/19 16:41,"39 Highland St, Los Angeles, CA 90001" -235714,34in Ultrawide Monitor,1,379.99,07/24/19 15:00,"149 5th St, Atlanta, GA 30301" -235715,Wired Headphones,1,11.99,07/17/19 15:03,"782 Walnut St, Los Angeles, CA 90001" -235716,Macbook Pro Laptop,1,1700,07/15/19 14:41,"252 Lakeview St, Dallas, TX 75001" -235717,Google Phone,1,600,07/28/19 11:06,"654 Pine St, Los Angeles, CA 90001" -235718,Wired Headphones,1,11.99,07/19/19 12:28,"735 Main St, Portland, ME 04101" -235719,USB-C Charging Cable,1,11.95,07/23/19 16:06,"209 Main St, San Francisco, CA 94016" -235720,AA Batteries (4-pack),2,3.84,07/11/19 23:35,"721 4th St, Los Angeles, CA 90001" -235720,27in 4K Gaming Monitor,1,389.99,07/11/19 23:35,"721 4th St, Los Angeles, CA 90001" -235721,AAA Batteries (4-pack),1,2.99,07/13/19 21:26,"23 Main St, San Francisco, CA 94016" -235722,USB-C Charging Cable,1,11.95,07/27/19 21:17,"794 Jackson St, San Francisco, CA 94016" -235723,AA Batteries (4-pack),1,3.84,07/30/19 16:04,"113 Meadow St, San Francisco, CA 94016" -235723,Apple Airpods Headphones,1,150,07/30/19 16:04,"113 Meadow St, San Francisco, CA 94016" -235724,iPhone,1,700,07/04/19 22:15,"778 Cherry St, Atlanta, GA 30301" -235725,Lightning Charging Cable,1,14.95,07/23/19 22:08,"661 5th St, San Francisco, CA 94016" -235726,Bose SoundSport Headphones,1,99.99,07/10/19 19:46,"83 Johnson St, Los Angeles, CA 90001" -235727,AAA Batteries (4-pack),1,2.99,07/19/19 15:02,"661 Dogwood St, Atlanta, GA 30301" -235728,iPhone,1,700,07/16/19 12:54,"415 Highland St, Dallas, TX 75001" -235729,USB-C Charging Cable,2,11.95,07/15/19 10:43,"292 West St, New York City, NY 10001" -235730,Wired Headphones,1,11.99,07/05/19 22:25,"849 2nd St, New York City, NY 10001" -235731,Wired Headphones,1,11.99,07/13/19 18:03,"104 4th St, Los Angeles, CA 90001" -235732,Wired Headphones,1,11.99,07/21/19 19:46,"564 Church St, New York City, NY 10001" -235733,USB-C Charging Cable,2,11.95,07/20/19 11:35,"947 West St, Portland, OR 97035" -235734,Wired Headphones,2,11.99,07/23/19 20:36,"298 Willow St, San Francisco, CA 94016" -235735,27in 4K Gaming Monitor,1,389.99,07/01/19 22:43,"689 Elm St, Dallas, TX 75001" -235736,USB-C Charging Cable,1,11.95,07/22/19 16:07,"417 6th St, Los Angeles, CA 90001" -235737,USB-C Charging Cable,1,11.95,07/06/19 18:13,"329 Church St, New York City, NY 10001" -235738,Apple Airpods Headphones,1,150,07/15/19 08:28,"452 Hickory St, San Francisco, CA 94016" -235739,34in Ultrawide Monitor,1,379.99,07/16/19 12:02,"284 Meadow St, San Francisco, CA 94016" -235740,USB-C Charging Cable,1,11.95,07/13/19 16:15,"199 River St, Atlanta, GA 30301" -235741,AAA Batteries (4-pack),1,2.99,07/01/19 09:27,"887 Elm St, Boston, MA 02215" -235742,Bose SoundSport Headphones,1,99.99,07/20/19 12:59,"508 Johnson St, San Francisco, CA 94016" -235743,Wired Headphones,1,11.99,07/22/19 12:37,"885 Willow St, San Francisco, CA 94016" -235744,USB-C Charging Cable,1,11.95,07/28/19 11:11,"339 4th St, San Francisco, CA 94016" -235745,Apple Airpods Headphones,1,150,07/13/19 10:08,"845 River St, San Francisco, CA 94016" -235746,Macbook Pro Laptop,1,1700,07/24/19 07:42,"135 Main St, Atlanta, GA 30301" -235747,Apple Airpods Headphones,1,150,07/06/19 22:09,"201 4th St, Boston, MA 02215" -235748,34in Ultrawide Monitor,1,379.99,07/23/19 21:56,"685 Elm St, Atlanta, GA 30301" -235749,Macbook Pro Laptop,1,1700,07/04/19 18:49,"574 West St, New York City, NY 10001" -235750,AA Batteries (4-pack),1,3.84,07/14/19 20:17,"455 Pine St, Seattle, WA 98101" -235751,Lightning Charging Cable,1,14.95,07/04/19 21:59,"889 2nd St, Los Angeles, CA 90001" -235752,LG Washing Machine,1,600.0,07/03/19 11:55,"531 Spruce St, Boston, MA 02215" -235753,Lightning Charging Cable,1,14.95,07/04/19 15:12,"761 Lake St, Portland, OR 97035" -235754,USB-C Charging Cable,1,11.95,07/10/19 12:35,"439 Madison St, Boston, MA 02215" -235755,Google Phone,1,600,07/10/19 03:41,"500 10th St, New York City, NY 10001" -235756,Lightning Charging Cable,1,14.95,07/11/19 11:03,"412 13th St, Los Angeles, CA 90001" -235757,Wired Headphones,1,11.99,07/10/19 12:53,"171 Church St, Seattle, WA 98101" -235758,AA Batteries (4-pack),1,3.84,07/03/19 13:16,"220 Hickory St, Boston, MA 02215" -235759,Wired Headphones,1,11.99,07/17/19 15:46,"160 Highland St, Austin, TX 73301" -235760,AAA Batteries (4-pack),1,2.99,07/05/19 10:17,"261 Dogwood St, Austin, TX 73301" -235761,AAA Batteries (4-pack),2,2.99,07/22/19 15:40,"167 Church St, New York City, NY 10001" -235762,20in Monitor,1,109.99,07/02/19 20:27,"740 West St, Austin, TX 73301" -235763,Wired Headphones,1,11.99,07/25/19 19:15,"670 Cherry St, Dallas, TX 75001" -235764,Macbook Pro Laptop,1,1700,07/16/19 10:50,"725 Hickory St, New York City, NY 10001" -235765,Wired Headphones,1,11.99,07/05/19 16:12,"233 11th St, Boston, MA 02215" -235766,Flatscreen TV,1,300,07/13/19 12:54,"716 Dogwood St, San Francisco, CA 94016" -235767,Lightning Charging Cable,1,14.95,07/29/19 21:39,"56 North St, Portland, OR 97035" -235768,AAA Batteries (4-pack),2,2.99,07/11/19 15:46,"354 6th St, Atlanta, GA 30301" -235769,AAA Batteries (4-pack),1,2.99,07/04/19 14:46,"783 Adams St, Boston, MA 02215" -235770,27in FHD Monitor,1,149.99,07/04/19 10:00,"251 11th St, Atlanta, GA 30301" -235771,AA Batteries (4-pack),1,3.84,07/25/19 12:49,"17 13th St, Boston, MA 02215" -235772,Bose SoundSport Headphones,1,99.99,07/15/19 16:03,"127 Church St, Seattle, WA 98101" -235773,Lightning Charging Cable,1,14.95,07/31/19 18:06,"393 7th St, San Francisco, CA 94016" -235773,USB-C Charging Cable,2,11.95,07/31/19 18:06,"393 7th St, San Francisco, CA 94016" -235774,Wired Headphones,1,11.99,07/02/19 13:15,"238 5th St, San Francisco, CA 94016" -235775,Wired Headphones,1,11.99,07/19/19 16:28,"295 Meadow St, Boston, MA 02215" -235776,LG Washing Machine,1,600.0,07/23/19 23:44,"135 River St, San Francisco, CA 94016" -235777,USB-C Charging Cable,1,11.95,07/23/19 11:09,"246 13th St, Boston, MA 02215" -235778,AAA Batteries (4-pack),1,2.99,07/11/19 19:52,"282 8th St, Los Angeles, CA 90001" -235779,AA Batteries (4-pack),1,3.84,07/24/19 17:17,"621 Cedar St, San Francisco, CA 94016" -235780,AAA Batteries (4-pack),1,2.99,07/30/19 23:19,"710 Main St, New York City, NY 10001" -235781,USB-C Charging Cable,1,11.95,07/25/19 23:12,"16 Adams St, Boston, MA 02215" -235782,27in FHD Monitor,1,149.99,07/06/19 11:23,"100 Elm St, Atlanta, GA 30301" -235782,Apple Airpods Headphones,1,150,07/06/19 11:23,"100 Elm St, Atlanta, GA 30301" -235783,ThinkPad Laptop,1,999.99,07/15/19 15:07,"484 Park St, San Francisco, CA 94016" -235784,USB-C Charging Cable,1,11.95,07/20/19 08:22,"615 Lake St, Boston, MA 02215" -235785,Apple Airpods Headphones,1,150,07/08/19 18:26,"989 Willow St, Boston, MA 02215" -235786,Flatscreen TV,1,300,07/17/19 11:24,"617 11th St, Seattle, WA 98101" -235787,USB-C Charging Cable,1,11.95,07/03/19 11:19,"305 Ridge St, Boston, MA 02215" -235788,34in Ultrawide Monitor,1,379.99,07/25/19 19:01,"129 River St, San Francisco, CA 94016" -235789,Apple Airpods Headphones,1,150,07/01/19 14:28,"860 5th St, Austin, TX 73301" -235790,34in Ultrawide Monitor,1,379.99,07/24/19 10:24,"815 1st St, Seattle, WA 98101" -235791,Macbook Pro Laptop,1,1700,07/21/19 08:45,"511 North St, San Francisco, CA 94016" -235792,Google Phone,1,600,07/01/19 14:19,"735 Forest St, Austin, TX 73301" -235793,Lightning Charging Cable,1,14.95,07/26/19 09:38,"564 12th St, San Francisco, CA 94016" -235794,AAA Batteries (4-pack),1,2.99,07/08/19 19:14,"42 Church St, Seattle, WA 98101" -235795,Lightning Charging Cable,1,14.95,07/02/19 12:11,"315 Hill St, Boston, MA 02215" -235796,Flatscreen TV,1,300,07/19/19 23:26,"318 Church St, Los Angeles, CA 90001" -235797,27in 4K Gaming Monitor,1,389.99,07/11/19 17:05,"121 Jefferson St, Dallas, TX 75001" -235798,Google Phone,1,600,07/22/19 16:58,"205 Dogwood St, Los Angeles, CA 90001" -235798,USB-C Charging Cable,1,11.95,07/22/19 16:58,"205 Dogwood St, Los Angeles, CA 90001" -235798,Wired Headphones,1,11.99,07/22/19 16:58,"205 Dogwood St, Los Angeles, CA 90001" -235798,27in FHD Monitor,1,149.99,07/22/19 16:58,"205 Dogwood St, Los Angeles, CA 90001" -235799,Bose SoundSport Headphones,1,99.99,07/16/19 13:04,"435 Maple St, Atlanta, GA 30301" -235800,AA Batteries (4-pack),1,3.84,07/05/19 08:43,"555 Cherry St, Seattle, WA 98101" -235801,Bose SoundSport Headphones,1,99.99,07/27/19 16:06,"750 4th St, Boston, MA 02215" -235802,Wired Headphones,2,11.99,07/06/19 10:15,"85 Center St, Seattle, WA 98101" -235803,Wired Headphones,1,11.99,07/30/19 18:36,"296 Pine St, New York City, NY 10001" -235804,USB-C Charging Cable,2,11.95,07/27/19 12:15,"26 Lincoln St, Boston, MA 02215" -235805,Wired Headphones,2,11.99,07/18/19 19:10,"968 Lake St, San Francisco, CA 94016" -235806,USB-C Charging Cable,1,11.95,07/26/19 21:45,"848 Sunset St, San Francisco, CA 94016" -235807,AA Batteries (4-pack),2,3.84,07/26/19 13:43,"948 5th St, New York City, NY 10001" -235808,Bose SoundSport Headphones,1,99.99,07/30/19 12:16,"89 Meadow St, San Francisco, CA 94016" -235809,ThinkPad Laptop,1,999.99,07/10/19 17:04,"831 Cherry St, San Francisco, CA 94016" -235810,Lightning Charging Cable,1,14.95,07/11/19 16:48,"917 Johnson St, Boston, MA 02215" -235811,Google Phone,1,600,07/15/19 10:23,"50 Johnson St, San Francisco, CA 94016" -235812,AAA Batteries (4-pack),2,2.99,07/16/19 20:49,"46 Willow St, Boston, MA 02215" -235813,Vareebadd Phone,1,400,07/18/19 19:26,"549 Willow St, New York City, NY 10001" -235813,USB-C Charging Cable,1,11.95,07/18/19 19:26,"549 Willow St, New York City, NY 10001" -235814,27in 4K Gaming Monitor,1,389.99,07/30/19 13:38,"581 4th St, Seattle, WA 98101" -235815,iPhone,1,700,07/16/19 14:04,"135 Lake St, Seattle, WA 98101" -235816,iPhone,1,700,07/13/19 17:05,"726 12th St, Los Angeles, CA 90001" -235817,USB-C Charging Cable,1,11.95,07/20/19 14:26,"527 Forest St, Los Angeles, CA 90001" -235818,AAA Batteries (4-pack),1,2.99,07/23/19 08:52,"549 2nd St, San Francisco, CA 94016" -235819,Wired Headphones,1,11.99,07/26/19 09:33,"154 10th St, San Francisco, CA 94016" -235820,Apple Airpods Headphones,1,150,07/28/19 02:07,"3 Cedar St, Seattle, WA 98101" -235821,Wired Headphones,1,11.99,07/26/19 13:26,"685 8th St, San Francisco, CA 94016" -235822,Lightning Charging Cable,1,14.95,07/25/19 23:24,"221 6th St, San Francisco, CA 94016" -235823,Lightning Charging Cable,1,14.95,07/25/19 20:41,"244 2nd St, Dallas, TX 75001" -235824,USB-C Charging Cable,1,11.95,07/01/19 13:50,"780 Cherry St, Portland, OR 97035" -235825,USB-C Charging Cable,1,11.95,07/14/19 18:10,"254 Forest St, Los Angeles, CA 90001" -235826,Bose SoundSport Headphones,1,99.99,07/07/19 01:46,"119 Maple St, Dallas, TX 75001" -235827,AA Batteries (4-pack),2,3.84,07/02/19 20:10,"477 Madison St, Los Angeles, CA 90001" -235828,Bose SoundSport Headphones,1,99.99,07/26/19 22:01,"323 Walnut St, Los Angeles, CA 90001" -235829,Lightning Charging Cable,1,14.95,07/29/19 21:24,"485 1st St, Atlanta, GA 30301" -235830,Lightning Charging Cable,1,14.95,07/02/19 20:17,"778 4th St, Austin, TX 73301" -235831,AAA Batteries (4-pack),1,2.99,07/05/19 21:32,"943 Meadow St, Dallas, TX 75001" -235832,ThinkPad Laptop,1,999.99,07/17/19 19:19,"732 Maple St, Dallas, TX 75001" -235833,Macbook Pro Laptop,1,1700,07/31/19 15:06,"778 Hill St, Seattle, WA 98101" -235834,AA Batteries (4-pack),1,3.84,07/15/19 16:11,"981 Adams St, Austin, TX 73301" -235835,34in Ultrawide Monitor,1,379.99,07/03/19 12:42,"136 Church St, Portland, OR 97035" -235836,AAA Batteries (4-pack),5,2.99,07/17/19 15:15,"814 7th St, San Francisco, CA 94016" -235837,USB-C Charging Cable,1,11.95,07/03/19 10:48,"91 Cherry St, Los Angeles, CA 90001" -235838,AAA Batteries (4-pack),1,2.99,07/23/19 18:36,"129 Cherry St, Portland, OR 97035" -235839,AAA Batteries (4-pack),1,2.99,07/28/19 15:19,"148 Johnson St, Austin, TX 73301" -235840,iPhone,1,700,07/28/19 10:33,"303 Forest St, Portland, OR 97035" -235841,AA Batteries (4-pack),1,3.84,07/10/19 15:33,"524 Church St, San Francisco, CA 94016" -235842,Lightning Charging Cable,1,14.95,07/13/19 19:51,"972 Elm St, Atlanta, GA 30301" -235843,AAA Batteries (4-pack),2,2.99,07/02/19 13:05,"848 Johnson St, San Francisco, CA 94016" -235844,Macbook Pro Laptop,1,1700,07/21/19 11:50,"88 Chestnut St, San Francisco, CA 94016" -235845,AAA Batteries (4-pack),1,2.99,07/22/19 15:58,"700 6th St, Atlanta, GA 30301" -235846,Apple Airpods Headphones,1,150,07/14/19 19:45,"956 Washington St, San Francisco, CA 94016" -235847,Bose SoundSport Headphones,1,99.99,07/30/19 00:37,"642 Madison St, Seattle, WA 98101" -235848,Macbook Pro Laptop,1,1700,07/21/19 23:20,"360 Willow St, Atlanta, GA 30301" -235849,AAA Batteries (4-pack),1,2.99,07/11/19 14:03,"440 1st St, Seattle, WA 98101" -235850,AAA Batteries (4-pack),2,2.99,07/26/19 20:16,"649 Highland St, Los Angeles, CA 90001" -235851,AA Batteries (4-pack),1,3.84,07/19/19 12:26,"582 Center St, Dallas, TX 75001" -235852,AA Batteries (4-pack),1,3.84,07/14/19 16:08,"505 Lake St, San Francisco, CA 94016" -235853,AA Batteries (4-pack),1,3.84,07/26/19 07:03,"571 Lake St, New York City, NY 10001" -235854,Flatscreen TV,1,300,07/13/19 15:58,"722 1st St, New York City, NY 10001" -235855,Apple Airpods Headphones,1,150,07/18/19 17:18,"88 Sunset St, Dallas, TX 75001" -235856,Lightning Charging Cable,1,14.95,07/19/19 18:02,"136 Cedar St, San Francisco, CA 94016" -235857,Lightning Charging Cable,1,14.95,07/31/19 08:56,"193 West St, Atlanta, GA 30301" -235858,Lightning Charging Cable,1,14.95,07/03/19 14:15,"718 2nd St, New York City, NY 10001" -235859,AAA Batteries (4-pack),2,2.99,07/23/19 17:19,"211 4th St, San Francisco, CA 94016" -235860,27in FHD Monitor,1,149.99,07/14/19 18:58,"292 South St, San Francisco, CA 94016" -235861,Flatscreen TV,1,300,07/25/19 18:09,"262 Wilson St, Seattle, WA 98101" -235862,Google Phone,1,600,07/05/19 15:54,"136 Park St, Boston, MA 02215" -235863,USB-C Charging Cable,1,11.95,07/22/19 22:28,"856 13th St, Los Angeles, CA 90001" -235864,ThinkPad Laptop,1,999.99,07/15/19 18:51,"395 Madison St, San Francisco, CA 94016" -235865,Lightning Charging Cable,1,14.95,07/06/19 15:04,"799 Dogwood St, San Francisco, CA 94016" -235866,AA Batteries (4-pack),1,3.84,07/17/19 10:10,"333 Lincoln St, San Francisco, CA 94016" -235867,Macbook Pro Laptop,1,1700,07/25/19 09:54,"441 River St, Los Angeles, CA 90001" -235868,Google Phone,1,600,07/08/19 16:31,"948 2nd St, Atlanta, GA 30301" -235869,AA Batteries (4-pack),3,3.84,07/26/19 09:39,"873 Church St, Dallas, TX 75001" -235870,AAA Batteries (4-pack),1,2.99,07/12/19 11:18,"727 12th St, Atlanta, GA 30301" -235871,Apple Airpods Headphones,1,150,07/14/19 12:02,"821 Park St, Seattle, WA 98101" -235872,USB-C Charging Cable,1,11.95,07/17/19 08:59,"383 Dogwood St, San Francisco, CA 94016" -235873,LG Dryer,1,600.0,07/03/19 23:02,"416 7th St, Austin, TX 73301" -235874,AAA Batteries (4-pack),3,2.99,07/29/19 17:22,"251 Johnson St, Boston, MA 02215" -235874,USB-C Charging Cable,1,11.95,07/29/19 17:22,"251 Johnson St, Boston, MA 02215" -235875,AA Batteries (4-pack),2,3.84,07/05/19 12:36,"243 Church St, Boston, MA 02215" -235876,Flatscreen TV,1,300,07/23/19 20:44,"124 Willow St, Austin, TX 73301" -235877,Apple Airpods Headphones,1,150,07/11/19 16:33,"723 Cedar St, San Francisco, CA 94016" -235878,AA Batteries (4-pack),1,3.84,07/31/19 13:10,"851 River St, Portland, OR 97035" -235879,Wired Headphones,1,11.99,07/01/19 18:52,"787 5th St, New York City, NY 10001" -235880,Wired Headphones,1,11.99,07/27/19 12:45,"941 Spruce St, Boston, MA 02215" -235881,AA Batteries (4-pack),1,3.84,07/01/19 07:46,"2 Meadow St, Dallas, TX 75001" -235882,AAA Batteries (4-pack),2,2.99,07/04/19 16:31,"810 11th St, New York City, NY 10001" -235883,AAA Batteries (4-pack),2,2.99,07/19/19 00:01,"147 Cedar St, Austin, TX 73301" -235884,Apple Airpods Headphones,1,150,07/08/19 20:30,"657 Forest St, Seattle, WA 98101" -235885,Apple Airpods Headphones,1,150,07/10/19 19:29,"713 14th St, San Francisco, CA 94016" -235886,AA Batteries (4-pack),1,3.84,07/18/19 23:35,"81 Wilson St, San Francisco, CA 94016" -235887,Apple Airpods Headphones,1,150,07/31/19 10:59,"17 Pine St, Los Angeles, CA 90001" -235888,Lightning Charging Cable,1,14.95,07/06/19 15:52,"76 13th St, Dallas, TX 75001" -235889,Google Phone,1,600,07/29/19 19:11,"235 Sunset St, Atlanta, GA 30301" -235890,Bose SoundSport Headphones,1,99.99,07/08/19 06:33,"963 11th St, Los Angeles, CA 90001" -235891,AAA Batteries (4-pack),1,2.99,07/15/19 18:04,"555 Hill St, Dallas, TX 75001" -235892,34in Ultrawide Monitor,1,379.99,07/19/19 20:02,"668 Elm St, San Francisco, CA 94016" -235893,Bose SoundSport Headphones,1,99.99,07/22/19 21:28,"407 Hickory St, New York City, NY 10001" -235894,AAA Batteries (4-pack),2,2.99,07/21/19 14:16,"161 West St, New York City, NY 10001" -235895,Apple Airpods Headphones,1,150,07/12/19 09:36,"800 Madison St, San Francisco, CA 94016" -235896,Apple Airpods Headphones,1,150,07/04/19 09:50,"89 Spruce St, Portland, OR 97035" -235897,Wired Headphones,1,11.99,07/04/19 13:03,"692 Dogwood St, New York City, NY 10001" -235898,Bose SoundSport Headphones,1,99.99,07/16/19 19:32,"986 Meadow St, Los Angeles, CA 90001" -235899,Lightning Charging Cable,1,14.95,07/23/19 23:05,"492 Adams St, San Francisco, CA 94016" -235900,Bose SoundSport Headphones,1,99.99,07/01/19 22:00,"286 West St, Boston, MA 02215" -235901,ThinkPad Laptop,1,999.99,07/23/19 10:38,"399 Willow St, Seattle, WA 98101" -235902,Wired Headphones,1,11.99,07/11/19 09:27,"994 Pine St, Dallas, TX 75001" -235903,AA Batteries (4-pack),1,3.84,07/21/19 11:51,"192 Jefferson St, San Francisco, CA 94016" -235904,Lightning Charging Cable,1,14.95,07/09/19 09:53,"897 9th St, Seattle, WA 98101" -235905,Google Phone,1,600,07/17/19 16:21,"630 Center St, Boston, MA 02215" -235905,USB-C Charging Cable,1,11.95,07/17/19 16:21,"630 Center St, Boston, MA 02215" -235906,Wired Headphones,1,11.99,07/06/19 20:02,"774 Forest St, San Francisco, CA 94016" -235907,AAA Batteries (4-pack),1,2.99,07/05/19 10:59,"183 Maple St, Atlanta, GA 30301" -235908,AAA Batteries (4-pack),1,2.99,07/06/19 23:22,"942 Lincoln St, New York City, NY 10001" -235909,AA Batteries (4-pack),1,3.84,07/27/19 22:01,"218 Church St, Austin, TX 73301" -235910,Bose SoundSport Headphones,1,99.99,07/14/19 17:18,"170 Pine St, Atlanta, GA 30301" -235911,ThinkPad Laptop,1,999.99,07/11/19 16:02,"617 Jefferson St, Los Angeles, CA 90001" -235912,Wired Headphones,1,11.99,07/17/19 18:53,"698 Forest St, San Francisco, CA 94016" -235913,AAA Batteries (4-pack),1,2.99,07/10/19 21:18,"894 River St, New York City, NY 10001" -235914,AA Batteries (4-pack),1,3.84,07/08/19 08:52,"511 South St, San Francisco, CA 94016" -235915,USB-C Charging Cable,1,11.95,07/19/19 10:02,"866 5th St, San Francisco, CA 94016" -235916,USB-C Charging Cable,1,11.95,07/18/19 18:42,"3 Highland St, San Francisco, CA 94016" -235917,LG Washing Machine,1,600.0,07/11/19 20:05,"59 12th St, New York City, NY 10001" -235918,AA Batteries (4-pack),1,3.84,07/12/19 11:36,"229 Johnson St, Los Angeles, CA 90001" -235919,Apple Airpods Headphones,1,150,07/25/19 08:29,"274 Madison St, Los Angeles, CA 90001" -235920,Bose SoundSport Headphones,1,99.99,07/23/19 15:03,"447 River St, San Francisco, CA 94016" -235921,iPhone,1,700,07/27/19 14:32,"620 Spruce St, Boston, MA 02215" -235922,AAA Batteries (4-pack),2,2.99,07/06/19 13:48,"330 Meadow St, San Francisco, CA 94016" -235923,LG Washing Machine,1,600.0,07/23/19 16:12,"704 Willow St, Boston, MA 02215" -235923,Lightning Charging Cable,2,14.95,07/23/19 16:12,"704 Willow St, Boston, MA 02215" -235924,Bose SoundSport Headphones,1,99.99,07/04/19 21:31,"242 Wilson St, New York City, NY 10001" -235925,iPhone,1,700,07/16/19 10:53,"605 Madison St, Los Angeles, CA 90001" -235926,Lightning Charging Cable,1,14.95,07/05/19 20:51,"778 Washington St, San Francisco, CA 94016" -235927,Bose SoundSport Headphones,1,99.99,07/07/19 21:20,"566 Willow St, Seattle, WA 98101" -235928,Google Phone,1,600,07/11/19 14:43,"882 Park St, San Francisco, CA 94016" -235928,USB-C Charging Cable,1,11.95,07/11/19 14:43,"882 Park St, San Francisco, CA 94016" -235929,USB-C Charging Cable,2,11.95,07/18/19 11:52,"196 South St, San Francisco, CA 94016" -235930,AA Batteries (4-pack),1,3.84,07/15/19 10:48,"776 Ridge St, San Francisco, CA 94016" -235931,Macbook Pro Laptop,1,1700,07/20/19 14:35,"6 West St, Portland, OR 97035" -235932,Apple Airpods Headphones,1,150,07/23/19 16:35,"372 Lake St, Austin, TX 73301" -235933,AA Batteries (4-pack),1,3.84,07/22/19 14:55,"422 9th St, Boston, MA 02215" -235934,AA Batteries (4-pack),1,3.84,07/17/19 18:02,"813 Ridge St, New York City, NY 10001" -235935,AAA Batteries (4-pack),1,2.99,07/29/19 08:59,"133 Pine St, Portland, OR 97035" -235936,AAA Batteries (4-pack),1,2.99,07/17/19 12:43,"6 Lakeview St, Boston, MA 02215" -235937,Flatscreen TV,1,300,07/07/19 20:01,"967 Jackson St, Los Angeles, CA 90001" -235938,Bose SoundSport Headphones,1,99.99,07/07/19 22:34,"495 7th St, Portland, OR 97035" -235939,AAA Batteries (4-pack),1,2.99,07/28/19 07:55,"295 5th St, Boston, MA 02215" -235940,AA Batteries (4-pack),1,3.84,07/31/19 19:54,"15 4th St, San Francisco, CA 94016" -235941,iPhone,1,700,07/18/19 19:29,"878 1st St, New York City, NY 10001" -235942,AA Batteries (4-pack),1,3.84,07/16/19 16:35,"975 4th St, Los Angeles, CA 90001" -235943,Apple Airpods Headphones,1,150,07/26/19 15:04,"491 5th St, Boston, MA 02215" -235944,Lightning Charging Cable,1,14.95,07/20/19 11:43,"593 Meadow St, San Francisco, CA 94016" -235945,27in 4K Gaming Monitor,1,389.99,07/25/19 11:02,"242 Madison St, New York City, NY 10001" -235946,AAA Batteries (4-pack),1,2.99,07/04/19 01:52,"861 Maple St, San Francisco, CA 94016" -235947,Lightning Charging Cable,1,14.95,07/18/19 17:51,"647 Jefferson St, New York City, NY 10001" -235948,Apple Airpods Headphones,1,150,07/26/19 16:24,"924 Park St, Los Angeles, CA 90001" -235949,USB-C Charging Cable,1,11.95,07/01/19 22:13,"154 Church St, San Francisco, CA 94016" -235950,USB-C Charging Cable,1,11.95,07/05/19 18:42,"965 Center St, Boston, MA 02215" -235951,Macbook Pro Laptop,1,1700,07/19/19 23:03,"839 Ridge St, Dallas, TX 75001" -235952,Lightning Charging Cable,1,14.95,07/27/19 22:45,"50 12th St, San Francisco, CA 94016" -235953,20in Monitor,1,109.99,07/15/19 21:17,"914 River St, San Francisco, CA 94016" -235954,Lightning Charging Cable,1,14.95,07/08/19 14:58,"271 6th St, Los Angeles, CA 90001" -235955,Macbook Pro Laptop,1,1700,07/20/19 14:09,"560 Cherry St, San Francisco, CA 94016" -235956,Apple Airpods Headphones,1,150,07/22/19 08:14,"864 Jefferson St, Portland, OR 97035" -235957,Flatscreen TV,1,300,07/29/19 10:22,"857 Church St, San Francisco, CA 94016" -235958,27in FHD Monitor,1,149.99,07/20/19 16:05,"444 9th St, San Francisco, CA 94016" -235959,Lightning Charging Cable,1,14.95,07/15/19 09:46,"752 Elm St, Los Angeles, CA 90001" -235960,27in 4K Gaming Monitor,1,389.99,07/22/19 03:54,"976 Lincoln St, Boston, MA 02215" -235961,ThinkPad Laptop,1,999.99,07/28/19 19:47,"955 Church St, Atlanta, GA 30301" -235962,Lightning Charging Cable,1,14.95,07/06/19 14:42,"376 Center St, Los Angeles, CA 90001" -235963,AA Batteries (4-pack),1,3.84,07/21/19 23:54,"509 Madison St, San Francisco, CA 94016" -235964,Vareebadd Phone,1,400,07/18/19 20:21,"436 12th St, Dallas, TX 75001" -235965,Wired Headphones,2,11.99,07/14/19 20:52,"79 7th St, New York City, NY 10001" -235966,Wired Headphones,1,11.99,07/09/19 21:18,"455 North St, Boston, MA 02215" -235967,Macbook Pro Laptop,1,1700,07/10/19 17:23,"574 Lake St, Boston, MA 02215" -235968,Google Phone,1,600,07/25/19 20:48,"421 14th St, San Francisco, CA 94016" -235969,USB-C Charging Cable,1,11.95,07/29/19 13:47,"415 Forest St, Los Angeles, CA 90001" -235970,Lightning Charging Cable,1,14.95,07/21/19 16:51,"544 Cedar St, Boston, MA 02215" -235971,AA Batteries (4-pack),1,3.84,07/30/19 20:32,"273 Hill St, Atlanta, GA 30301" -235972,Lightning Charging Cable,1,14.95,07/21/19 13:50,"911 Jefferson St, Los Angeles, CA 90001" -235973,ThinkPad Laptop,1,999.99,07/06/19 15:14,"215 Spruce St, Portland, OR 97035" -235974,27in 4K Gaming Monitor,1,389.99,07/27/19 11:06,"243 Jackson St, Portland, ME 04101" -235975,Flatscreen TV,1,300,07/05/19 16:59,"54 West St, San Francisco, CA 94016" -235976,Apple Airpods Headphones,1,150,07/24/19 14:11,"683 Center St, Los Angeles, CA 90001" -235977,Wired Headphones,1,11.99,07/29/19 19:15,"722 Lakeview St, San Francisco, CA 94016" -235978,AA Batteries (4-pack),1,3.84,07/17/19 10:35,"276 West St, Boston, MA 02215" -235979,Lightning Charging Cable,1,14.95,07/26/19 14:39,"25 5th St, San Francisco, CA 94016" -235980,Lightning Charging Cable,1,14.95,07/04/19 15:43,"740 Pine St, Atlanta, GA 30301" -235981,AA Batteries (4-pack),1,3.84,07/22/19 13:00,"222 Spruce St, Dallas, TX 75001" -235982,Flatscreen TV,1,300,07/15/19 00:05,"514 2nd St, New York City, NY 10001" -235983,Wired Headphones,1,11.99,07/10/19 18:16,"563 Highland St, Austin, TX 73301" -235984,Bose SoundSport Headphones,1,99.99,07/16/19 10:46,"70 Ridge St, New York City, NY 10001" -235985,Macbook Pro Laptop,1,1700,07/27/19 13:22,"709 Maple St, Seattle, WA 98101" -235986,AA Batteries (4-pack),2,3.84,07/26/19 10:08,"721 Washington St, San Francisco, CA 94016" -235987,AAA Batteries (4-pack),3,2.99,07/08/19 21:02,"2 West St, Seattle, WA 98101" -235988,Bose SoundSport Headphones,1,99.99,07/27/19 22:00,"748 Wilson St, San Francisco, CA 94016" -235989,AAA Batteries (4-pack),1,2.99,07/29/19 11:05,"211 Wilson St, Atlanta, GA 30301" -235990,USB-C Charging Cable,1,11.95,07/15/19 20:03,"257 5th St, Portland, OR 97035" -235991,Apple Airpods Headphones,1,150,07/07/19 17:25,"346 River St, Los Angeles, CA 90001" -235992,Lightning Charging Cable,1,14.95,07/26/19 12:39,"970 Sunset St, Los Angeles, CA 90001" -235993,USB-C Charging Cable,1,11.95,07/17/19 08:34,"179 Ridge St, San Francisco, CA 94016" -235994,USB-C Charging Cable,1,11.95,07/10/19 18:29,"590 Elm St, New York City, NY 10001" -235995,Apple Airpods Headphones,1,150,07/05/19 16:26,"327 11th St, Austin, TX 73301" -235996,27in 4K Gaming Monitor,1,389.99,07/29/19 11:37,"461 North St, San Francisco, CA 94016" -235997,34in Ultrawide Monitor,1,379.99,07/06/19 07:12,"746 Center St, Portland, OR 97035" -235998,Wired Headphones,1,11.99,07/12/19 17:02,"215 7th St, New York City, NY 10001" -235999,USB-C Charging Cable,1,11.95,07/09/19 16:22,"391 Madison St, Seattle, WA 98101" -236000,Wired Headphones,1,11.99,07/30/19 21:20,"935 Highland St, Atlanta, GA 30301" -236001,Wired Headphones,1,11.99,07/23/19 11:39,"155 Jefferson St, Boston, MA 02215" -236002,ThinkPad Laptop,1,999.99,07/25/19 09:01,"478 West St, Portland, OR 97035" -236003,Apple Airpods Headphones,1,150,07/31/19 11:12,"150 Elm St, San Francisco, CA 94016" -236004,Wired Headphones,1,11.99,07/14/19 20:59,"342 Maple St, Atlanta, GA 30301" -236005,AA Batteries (4-pack),1,3.84,07/12/19 22:24,"22 5th St, New York City, NY 10001" -236006,Lightning Charging Cable,1,14.95,07/19/19 10:41,"932 Jackson St, Austin, TX 73301" -236007,34in Ultrawide Monitor,1,379.99,07/05/19 11:37,"401 Washington St, Atlanta, GA 30301" -236008,Bose SoundSport Headphones,1,99.99,07/18/19 18:00,"261 Spruce St, Los Angeles, CA 90001" -236009,AA Batteries (4-pack),2,3.84,07/24/19 13:04,"63 1st St, New York City, NY 10001" -236010,AAA Batteries (4-pack),1,2.99,07/02/19 11:03,"911 Maple St, San Francisco, CA 94016" -236011,Bose SoundSport Headphones,1,99.99,07/06/19 14:58,"22 Elm St, Los Angeles, CA 90001" -236012,iPhone,1,700,07/03/19 20:29,"76 7th St, Dallas, TX 75001" -236013,AA Batteries (4-pack),1,3.84,07/02/19 00:02,"272 Lincoln St, San Francisco, CA 94016" -236014,Bose SoundSport Headphones,1,99.99,07/23/19 17:19,"451 9th St, Los Angeles, CA 90001" -236015,34in Ultrawide Monitor,1,379.99,07/04/19 14:05,"802 Madison St, Portland, OR 97035" -236016,Wired Headphones,2,11.99,07/05/19 08:10,"743 4th St, San Francisco, CA 94016" -236017,Flatscreen TV,1,300,07/15/19 20:15,"865 South St, Los Angeles, CA 90001" -236018,AA Batteries (4-pack),1,3.84,07/05/19 21:03,"236 2nd St, Los Angeles, CA 90001" -236019,AAA Batteries (4-pack),1,2.99,07/21/19 00:25,"188 Meadow St, Atlanta, GA 30301" -236020,AAA Batteries (4-pack),1,2.99,07/12/19 21:14,"184 Dogwood St, Los Angeles, CA 90001" -236021,Apple Airpods Headphones,1,150,07/05/19 11:39,"345 Cherry St, New York City, NY 10001" -236022,Flatscreen TV,1,300,07/01/19 08:22,"831 Ridge St, Atlanta, GA 30301" -236023,Lightning Charging Cable,1,14.95,07/09/19 09:33,"232 Lakeview St, Portland, OR 97035" -236024,AAA Batteries (4-pack),2,2.99,07/01/19 15:29,"833 South St, Boston, MA 02215" -236025,Bose SoundSport Headphones,1,99.99,07/07/19 15:34,"62 West St, Los Angeles, CA 90001" -236026,AA Batteries (4-pack),1,3.84,07/03/19 02:40,"882 Jefferson St, San Francisco, CA 94016" -236027,AAA Batteries (4-pack),1,2.99,07/26/19 08:24,"943 Walnut St, Los Angeles, CA 90001" -236028,iPhone,1,700,07/04/19 00:56,"711 Sunset St, New York City, NY 10001" -236028,Bose SoundSport Headphones,1,99.99,07/04/19 00:56,"711 Sunset St, New York City, NY 10001" -236029,27in FHD Monitor,1,149.99,07/14/19 15:05,"713 Main St, Austin, TX 73301" -236030,27in 4K Gaming Monitor,1,389.99,07/07/19 21:33,"322 Washington St, Austin, TX 73301" -236031,27in FHD Monitor,1,149.99,07/11/19 15:39,"621 Hickory St, Boston, MA 02215" -236032,AAA Batteries (4-pack),2,2.99,07/09/19 13:20,"701 Chestnut St, New York City, NY 10001" -236033,AA Batteries (4-pack),1,3.84,07/04/19 20:57,"162 Chestnut St, Los Angeles, CA 90001" -236034,AAA Batteries (4-pack),1,2.99,07/03/19 11:29,"897 Meadow St, San Francisco, CA 94016" -236035,iPhone,1,700,07/30/19 00:04,"100 Walnut St, Austin, TX 73301" -236036,Bose SoundSport Headphones,1,99.99,07/02/19 14:29,"919 11th St, Dallas, TX 75001" -236037,Lightning Charging Cable,1,14.95,07/25/19 17:35,"148 Lakeview St, New York City, NY 10001" -236038,Lightning Charging Cable,1,14.95,07/06/19 09:07,"996 Church St, Los Angeles, CA 90001" -236039,AAA Batteries (4-pack),1,2.99,07/31/19 23:41,"742 Maple St, Atlanta, GA 30301" -236040,20in Monitor,1,109.99,07/06/19 13:50,"133 Church St, San Francisco, CA 94016" -236041,Vareebadd Phone,1,400,07/15/19 23:53,"55 Main St, Portland, OR 97035" -236042,AA Batteries (4-pack),1,3.84,07/04/19 19:35,"236 13th St, Boston, MA 02215" -236043,Apple Airpods Headphones,1,150,07/20/19 11:11,"442 4th St, Portland, OR 97035" -236044,Apple Airpods Headphones,1,150,07/07/19 07:37,"82 Chestnut St, San Francisco, CA 94016" -236045,USB-C Charging Cable,1,11.95,07/03/19 07:43,"654 12th St, Seattle, WA 98101" -236045,20in Monitor,1,109.99,07/03/19 07:43,"654 12th St, Seattle, WA 98101" -236046,Macbook Pro Laptop,1,1700,07/30/19 19:54,"330 Dogwood St, New York City, NY 10001" -236047,AAA Batteries (4-pack),1,2.99,07/08/19 17:43,"364 Jefferson St, Dallas, TX 75001" -236048,iPhone,1,700,07/31/19 21:08,"89 Main St, San Francisco, CA 94016" -236048,Lightning Charging Cable,1,14.95,07/31/19 21:08,"89 Main St, San Francisco, CA 94016" -236049,Bose SoundSport Headphones,1,99.99,07/05/19 18:09,"502 Meadow St, Dallas, TX 75001" -236050,Wired Headphones,2,11.99,07/17/19 13:42,"14 Sunset St, San Francisco, CA 94016" -236051,27in 4K Gaming Monitor,1,389.99,07/03/19 19:44,"286 12th St, Los Angeles, CA 90001" -236052,AA Batteries (4-pack),1,3.84,07/26/19 08:56,"571 North St, San Francisco, CA 94016" -236053,LG Dryer,1,600.0,07/07/19 07:26,"936 5th St, San Francisco, CA 94016" -236054,Wired Headphones,1,11.99,07/19/19 19:33,"500 South St, Los Angeles, CA 90001" -236055,USB-C Charging Cable,1,11.95,07/01/19 07:20,"350 Hickory St, Dallas, TX 75001" -236056,Lightning Charging Cable,1,14.95,07/13/19 21:32,"910 Willow St, San Francisco, CA 94016" -236057,AAA Batteries (4-pack),1,2.99,07/05/19 12:05,"657 North St, San Francisco, CA 94016" -236058,AA Batteries (4-pack),1,3.84,07/19/19 20:31,"895 Wilson St, Boston, MA 02215" -236059,AA Batteries (4-pack),1,3.84,07/28/19 10:29,"225 Cherry St, New York City, NY 10001" -236060,Lightning Charging Cable,1,14.95,07/24/19 16:20,"754 South St, San Francisco, CA 94016" -236061,Apple Airpods Headphones,1,150,07/03/19 22:30,"382 Spruce St, Dallas, TX 75001" -236062,Lightning Charging Cable,1,14.95,07/01/19 12:31,"549 Forest St, Seattle, WA 98101" -236063,Wired Headphones,1,11.99,07/05/19 15:39,"725 North St, Seattle, WA 98101" -236064,27in FHD Monitor,1,149.99,07/18/19 19:16,"28 Sunset St, New York City, NY 10001" -236065,AAA Batteries (4-pack),4,2.99,07/14/19 18:07,"580 10th St, San Francisco, CA 94016" -236066,20in Monitor,1,109.99,07/21/19 21:47,"695 Johnson St, Los Angeles, CA 90001" -236067,USB-C Charging Cable,1,11.95,07/03/19 06:00,"252 Willow St, San Francisco, CA 94016" -236068,iPhone,1,700,07/20/19 13:29,"918 Adams St, San Francisco, CA 94016" -236069,20in Monitor,1,109.99,07/23/19 18:32,"788 6th St, Los Angeles, CA 90001" -236070,Google Phone,1,600,07/27/19 15:24,"992 Jackson St, Boston, MA 02215" -236070,Wired Headphones,1,11.99,07/27/19 15:24,"992 Jackson St, Boston, MA 02215" -236071,AAA Batteries (4-pack),2,2.99,07/25/19 00:31,"988 North St, Los Angeles, CA 90001" -236072,Macbook Pro Laptop,1,1700,07/10/19 16:05,"759 West St, Austin, TX 73301" -236073,Wired Headphones,1,11.99,07/22/19 00:07,"754 Chestnut St, San Francisco, CA 94016" -236074,20in Monitor,1,109.99,07/07/19 18:30,"764 Washington St, San Francisco, CA 94016" -236075,AA Batteries (4-pack),1,3.84,07/12/19 15:24,"986 Church St, Boston, MA 02215" -236076,Apple Airpods Headphones,1,150,07/25/19 19:49,"523 Jefferson St, San Francisco, CA 94016" -236077,Wired Headphones,1,11.99,07/22/19 22:58,"501 14th St, Los Angeles, CA 90001" -236078,AAA Batteries (4-pack),2,2.99,07/16/19 21:04,"380 6th St, Portland, OR 97035" -236079,AA Batteries (4-pack),1,3.84,07/24/19 20:05,"808 Pine St, Los Angeles, CA 90001" -236080,Lightning Charging Cable,1,14.95,07/06/19 12:54,"583 Jefferson St, Atlanta, GA 30301" -236081,AAA Batteries (4-pack),1,2.99,07/30/19 13:15,"313 Park St, San Francisco, CA 94016" -236082,Google Phone,1,600,07/17/19 11:49,"103 Lincoln St, San Francisco, CA 94016" -236083,AA Batteries (4-pack),1,3.84,07/11/19 18:42,"774 Lincoln St, San Francisco, CA 94016" -236084,AA Batteries (4-pack),1,3.84,07/08/19 23:50,"834 12th St, New York City, NY 10001" -236085,Wired Headphones,1,11.99,07/06/19 00:38,"226 Church St, Boston, MA 02215" -236086,Lightning Charging Cable,1,14.95,07/18/19 07:30,"176 Madison St, New York City, NY 10001" -236087,Lightning Charging Cable,1,14.95,07/06/19 20:50,"983 Lincoln St, Dallas, TX 75001" -236088,AA Batteries (4-pack),3,3.84,07/12/19 17:58,"538 Washington St, San Francisco, CA 94016" -236089,AAA Batteries (4-pack),1,2.99,07/08/19 19:18,"903 Cedar St, Los Angeles, CA 90001" -236090,ThinkPad Laptop,1,999.99,07/27/19 08:46,"640 13th St, Seattle, WA 98101" -236091,Bose SoundSport Headphones,1,99.99,07/25/19 14:03,"712 Cherry St, Dallas, TX 75001" -236092,USB-C Charging Cable,1,11.95,07/20/19 17:09,"603 Elm St, New York City, NY 10001" -236093,AAA Batteries (4-pack),1,2.99,07/23/19 16:25,"397 4th St, Los Angeles, CA 90001" -236094,AAA Batteries (4-pack),1,2.99,07/31/19 19:10,"526 Sunset St, Seattle, WA 98101" -236095,AA Batteries (4-pack),1,3.84,07/26/19 11:41,"775 Hickory St, Los Angeles, CA 90001" -236096,Macbook Pro Laptop,1,1700,07/10/19 17:54,"65 Jefferson St, Atlanta, GA 30301" -236097,USB-C Charging Cable,1,11.95,07/08/19 12:45,"371 Elm St, New York City, NY 10001" -236098,AAA Batteries (4-pack),2,2.99,07/23/19 12:09,"522 Dogwood St, Atlanta, GA 30301" -236099,Macbook Pro Laptop,1,1700,07/15/19 11:32,"500 1st St, Los Angeles, CA 90001" -236100,34in Ultrawide Monitor,1,379.99,07/28/19 22:35,"815 North St, Boston, MA 02215" -236101,27in 4K Gaming Monitor,1,389.99,07/19/19 20:13,"520 South St, New York City, NY 10001" -236102,Lightning Charging Cable,1,14.95,07/31/19 11:42,"365 West St, San Francisco, CA 94016" -236103,Lightning Charging Cable,1,14.95,07/16/19 10:37,"687 2nd St, San Francisco, CA 94016" -236104,AAA Batteries (4-pack),1,2.99,07/30/19 16:44,"771 West St, Seattle, WA 98101" -236105,Flatscreen TV,1,300,07/20/19 06:46,"132 Hickory St, Dallas, TX 75001" -236106,Apple Airpods Headphones,1,150,07/17/19 11:56,"486 8th St, Austin, TX 73301" -236107,USB-C Charging Cable,1,11.95,07/26/19 19:06,"435 Hill St, Portland, OR 97035" -236108,Apple Airpods Headphones,1,150,07/02/19 07:27,"376 2nd St, Los Angeles, CA 90001" -236109,iPhone,1,700,07/17/19 11:32,"737 Church St, San Francisco, CA 94016" -236110,AA Batteries (4-pack),1,3.84,07/22/19 01:25,"259 Main St, San Francisco, CA 94016" -236111,27in FHD Monitor,1,149.99,07/15/19 14:04,"187 Willow St, Seattle, WA 98101" -236112,Apple Airpods Headphones,1,150,07/19/19 11:07,"73 Main St, San Francisco, CA 94016" -236113,USB-C Charging Cable,1,11.95,07/20/19 21:54,"62 Elm St, San Francisco, CA 94016" -236114,Lightning Charging Cable,1,14.95,07/13/19 23:39,"108 Spruce St, Dallas, TX 75001" -236115,27in FHD Monitor,1,149.99,07/02/19 10:11,"365 Lincoln St, San Francisco, CA 94016" -236116,AAA Batteries (4-pack),1,2.99,07/02/19 20:30,"832 Meadow St, Boston, MA 02215" -236117,Apple Airpods Headphones,1,150,07/02/19 23:28,"569 Johnson St, Seattle, WA 98101" -236118,ThinkPad Laptop,1,999.99,07/03/19 11:01,"976 Park St, San Francisco, CA 94016" -236119,AA Batteries (4-pack),2,3.84,07/04/19 23:51,"331 8th St, San Francisco, CA 94016" -236120,Bose SoundSport Headphones,1,99.99,07/05/19 20:17,"500 Jackson St, Los Angeles, CA 90001" -236121,iPhone,1,700,07/09/19 15:30,"739 Dogwood St, Portland, OR 97035" -236122,AAA Batteries (4-pack),1,2.99,07/15/19 16:04,"810 Willow St, Atlanta, GA 30301" -236123,AAA Batteries (4-pack),1,2.99,07/09/19 19:55,"831 1st St, Austin, TX 73301" -236124,Wired Headphones,1,11.99,07/13/19 15:01,"982 5th St, Austin, TX 73301" -236125,AA Batteries (4-pack),1,3.84,07/15/19 11:29,"965 Dogwood St, New York City, NY 10001" -236126,ThinkPad Laptop,1,999.99,07/13/19 20:17,"532 Jackson St, San Francisco, CA 94016" -236127,USB-C Charging Cable,1,11.95,07/05/19 15:28,"774 4th St, San Francisco, CA 94016" -236128,LG Washing Machine,1,600.0,07/26/19 12:27,"85 Park St, New York City, NY 10001" -236129,iPhone,1,700,07/28/19 17:55,"660 14th St, Dallas, TX 75001" -236130,AA Batteries (4-pack),1,3.84,07/27/19 15:14,"215 Meadow St, Los Angeles, CA 90001" -236131,Apple Airpods Headphones,1,150,07/06/19 18:10,"94 11th St, Los Angeles, CA 90001" -236132,ThinkPad Laptop,1,999.99,07/24/19 09:47,"146 Forest St, Los Angeles, CA 90001" -236132,AA Batteries (4-pack),2,3.84,07/24/19 09:47,"146 Forest St, Los Angeles, CA 90001" -236133,LG Dryer,1,600.0,07/23/19 18:50,"573 Maple St, San Francisco, CA 94016" -236134,Apple Airpods Headphones,1,150,07/23/19 13:33,"390 12th St, Atlanta, GA 30301" -236135,AAA Batteries (4-pack),1,2.99,07/09/19 17:47,"151 1st St, New York City, NY 10001" -236136,Wired Headphones,1,11.99,07/26/19 11:49,"497 Lake St, Los Angeles, CA 90001" -236137,Lightning Charging Cable,1,14.95,07/16/19 17:24,"965 South St, San Francisco, CA 94016" -236138,Wired Headphones,1,11.99,07/26/19 11:33,"16 Church St, Atlanta, GA 30301" -236139,Bose SoundSport Headphones,1,99.99,07/18/19 11:41,"960 Lake St, New York City, NY 10001" -236140,ThinkPad Laptop,1,999.99,07/09/19 17:32,"930 Adams St, New York City, NY 10001" -236141,USB-C Charging Cable,1,11.95,07/05/19 00:22,"864 Highland St, New York City, NY 10001" -236142,Lightning Charging Cable,1,14.95,07/11/19 17:30,"733 1st St, Seattle, WA 98101" -236143,Macbook Pro Laptop,1,1700,07/13/19 07:35,"19 Ridge St, New York City, NY 10001" -236144,34in Ultrawide Monitor,1,379.99,07/18/19 18:19,"436 12th St, Boston, MA 02215" -236145,Wired Headphones,1,11.99,07/04/19 11:09,"481 11th St, San Francisco, CA 94016" -236146,Lightning Charging Cable,2,14.95,07/31/19 15:28,"899 West St, Boston, MA 02215" -236147,Apple Airpods Headphones,1,150,07/03/19 13:21,"440 Main St, New York City, NY 10001" -236148,Apple Airpods Headphones,1,150,07/08/19 12:50,"159 Pine St, San Francisco, CA 94016" -236148,Lightning Charging Cable,1,14.95,07/08/19 12:50,"159 Pine St, San Francisco, CA 94016" -236149,Google Phone,1,600,07/03/19 23:50,"401 9th St, San Francisco, CA 94016" -236150,AAA Batteries (4-pack),2,2.99,07/20/19 14:51,"914 14th St, Austin, TX 73301" -236151,USB-C Charging Cable,1,11.95,07/23/19 14:03,"652 Main St, Atlanta, GA 30301" -236152,iPhone,1,700,07/29/19 23:19,"806 North St, New York City, NY 10001" -236153,Bose SoundSport Headphones,1,99.99,07/18/19 12:45,"421 Chestnut St, San Francisco, CA 94016" -236154,Bose SoundSport Headphones,1,99.99,07/13/19 18:19,"49 Jackson St, San Francisco, CA 94016" -236155,Macbook Pro Laptop,1,1700,07/24/19 10:33,"400 8th St, Dallas, TX 75001" -236156,Wired Headphones,1,11.99,07/20/19 10:50,"20 12th St, Boston, MA 02215" -236157,27in 4K Gaming Monitor,1,389.99,07/31/19 10:58,"323 Sunset St, Dallas, TX 75001" -236158,Bose SoundSport Headphones,1,99.99,07/03/19 09:48,"910 Chestnut St, New York City, NY 10001" -236159,27in FHD Monitor,1,149.99,07/25/19 17:22,"861 Pine St, San Francisco, CA 94016" -236160,AA Batteries (4-pack),1,3.84,07/22/19 23:06,"820 Hill St, Los Angeles, CA 90001" -236161,34in Ultrawide Monitor,1,379.99,07/06/19 15:06,"265 Wilson St, Portland, OR 97035" -236162,USB-C Charging Cable,1,11.95,07/03/19 21:59,"448 Cedar St, Dallas, TX 75001" -236163,USB-C Charging Cable,1,11.95,07/08/19 08:53,"352 Madison St, Boston, MA 02215" -236164,Apple Airpods Headphones,1,150,07/04/19 16:29,"560 Center St, Dallas, TX 75001" -236165,20in Monitor,1,109.99,07/05/19 22:44,"128 12th St, Atlanta, GA 30301" -236166,Lightning Charging Cable,1,14.95,07/18/19 13:28,"573 Cedar St, San Francisco, CA 94016" -236167,AA Batteries (4-pack),1,3.84,07/09/19 21:35,"774 Park St, Los Angeles, CA 90001" -236168,34in Ultrawide Monitor,1,379.99,07/07/19 21:15,"942 Adams St, New York City, NY 10001" -236169,USB-C Charging Cable,1,11.95,07/31/19 18:48,"87 9th St, San Francisco, CA 94016" -236170,Wired Headphones,1,11.99,07/28/19 03:51,"107 9th St, Seattle, WA 98101" -236171,Apple Airpods Headphones,1,150,07/24/19 19:34,"407 9th St, Los Angeles, CA 90001" -236172,Lightning Charging Cable,1,14.95,07/30/19 13:12,"232 8th St, Boston, MA 02215" -236173,USB-C Charging Cable,2,11.95,07/31/19 20:53,"388 2nd St, San Francisco, CA 94016" -236174,AA Batteries (4-pack),1,3.84,07/11/19 05:02,"824 North St, Atlanta, GA 30301" -236175,AA Batteries (4-pack),1,3.84,07/07/19 08:20,"583 4th St, Dallas, TX 75001" -236176,Lightning Charging Cable,1,14.95,07/20/19 18:18,"121 5th St, Boston, MA 02215" -236177,Apple Airpods Headphones,1,150,07/13/19 13:36,"344 South St, Dallas, TX 75001" -236178,34in Ultrawide Monitor,1,379.99,07/18/19 19:55,"462 7th St, Seattle, WA 98101" -236179,AAA Batteries (4-pack),1,2.99,07/24/19 18:10,"460 Johnson St, Los Angeles, CA 90001" -236180,Apple Airpods Headphones,1,150,07/13/19 19:18,"166 1st St, San Francisco, CA 94016" -236181,Flatscreen TV,1,300,07/08/19 17:18,"714 Pine St, Boston, MA 02215" -236182,27in FHD Monitor,1,149.99,07/07/19 09:46,"877 Johnson St, Dallas, TX 75001" -236183,USB-C Charging Cable,1,11.95,07/08/19 07:03,"801 Jackson St, New York City, NY 10001" -236184,AAA Batteries (4-pack),1,2.99,07/24/19 15:47,"875 Lake St, San Francisco, CA 94016" -236185,USB-C Charging Cable,1,11.95,07/24/19 15:17,"10 10th St, Atlanta, GA 30301" -236186,Wired Headphones,1,11.99,07/14/19 15:17,"156 12th St, Seattle, WA 98101" -236187,AAA Batteries (4-pack),2,2.99,07/31/19 17:41,"45 Cherry St, San Francisco, CA 94016" -236188,Bose SoundSport Headphones,1,99.99,07/20/19 19:43,"272 Lakeview St, New York City, NY 10001" -236189,27in 4K Gaming Monitor,1,389.99,07/10/19 23:12,"27 Hill St, Los Angeles, CA 90001" -236190,Flatscreen TV,1,300,07/08/19 16:27,"182 Pine St, San Francisco, CA 94016" -236191,Lightning Charging Cable,1,14.95,07/26/19 14:31,"960 River St, San Francisco, CA 94016" -236192,Lightning Charging Cable,1,14.95,07/14/19 09:06,"529 6th St, Dallas, TX 75001" -236193,USB-C Charging Cable,2,11.95,07/29/19 18:45,"554 Cedar St, Atlanta, GA 30301" -236194,Bose SoundSport Headphones,1,99.99,07/28/19 20:08,"475 Highland St, Los Angeles, CA 90001" -236195,27in FHD Monitor,1,149.99,07/07/19 08:13,"711 1st St, San Francisco, CA 94016" -236196,Vareebadd Phone,1,400,07/13/19 16:51,"528 7th St, Seattle, WA 98101" -236197,AA Batteries (4-pack),1,3.84,07/03/19 17:22,"692 6th St, Seattle, WA 98101" -236198,Lightning Charging Cable,1,14.95,07/02/19 22:54,"141 11th St, San Francisco, CA 94016" -236199,Lightning Charging Cable,1,14.95,07/20/19 21:20,"884 Walnut St, Seattle, WA 98101" -236200,Lightning Charging Cable,1,14.95,07/23/19 20:01,"865 Cherry St, Atlanta, GA 30301" -236201,Lightning Charging Cable,1,14.95,07/24/19 12:57,"690 Sunset St, San Francisco, CA 94016" -236202,Lightning Charging Cable,1,14.95,07/01/19 11:10,"967 6th St, Dallas, TX 75001" -236203,USB-C Charging Cable,1,11.95,07/26/19 22:07,"61 Spruce St, Dallas, TX 75001" -236204,20in Monitor,1,109.99,07/11/19 19:48,"185 4th St, San Francisco, CA 94016" -236205,USB-C Charging Cable,1,11.95,07/10/19 18:58,"890 Dogwood St, San Francisco, CA 94016" -236206,Apple Airpods Headphones,1,150,07/15/19 10:10,"374 Meadow St, Atlanta, GA 30301" -236207,Lightning Charging Cable,1,14.95,07/01/19 18:23,"478 Cherry St, San Francisco, CA 94016" -236208,Apple Airpods Headphones,1,150,07/08/19 11:12,"563 Church St, Los Angeles, CA 90001" -236209,AA Batteries (4-pack),1,3.84,07/18/19 10:56,"69 Jefferson St, Boston, MA 02215" -236210,27in FHD Monitor,1,149.99,07/05/19 13:45,"909 Cherry St, New York City, NY 10001" -236211,AA Batteries (4-pack),1,3.84,07/11/19 16:19,"408 Pine St, San Francisco, CA 94016" -236212,Bose SoundSport Headphones,1,99.99,07/02/19 20:19,"966 Highland St, New York City, NY 10001" -236213,Lightning Charging Cable,1,14.95,07/15/19 13:16,"995 West St, Los Angeles, CA 90001" -236214,Lightning Charging Cable,1,14.95,07/06/19 21:47,"898 Jackson St, Los Angeles, CA 90001" -236215,LG Washing Machine,1,600.0,07/04/19 18:02,"3 North St, New York City, NY 10001" -236215,Bose SoundSport Headphones,1,99.99,07/04/19 18:02,"3 North St, New York City, NY 10001" -236216,Lightning Charging Cable,1,14.95,07/02/19 15:39,"909 Ridge St, San Francisco, CA 94016" -236217,AA Batteries (4-pack),1,3.84,07/16/19 09:59,"754 7th St, San Francisco, CA 94016" -236218,AA Batteries (4-pack),1,3.84,07/20/19 21:46,"105 Jefferson St, Austin, TX 73301" -236219,34in Ultrawide Monitor,1,379.99,07/12/19 21:40,"817 Sunset St, Boston, MA 02215" -236220,Wired Headphones,1,11.99,07/06/19 13:31,"700 Meadow St, San Francisco, CA 94016" -236221,iPhone,1,700,07/20/19 21:16,"514 Jefferson St, Atlanta, GA 30301" -236221,Wired Headphones,1,11.99,07/20/19 21:16,"514 Jefferson St, Atlanta, GA 30301" -236222,USB-C Charging Cable,1,11.95,07/08/19 15:51,"611 8th St, Boston, MA 02215" -236223,27in 4K Gaming Monitor,1,389.99,07/15/19 17:18,"360 9th St, Austin, TX 73301" -236224,Apple Airpods Headphones,1,150,07/09/19 12:32,"154 Chestnut St, Portland, OR 97035" -236225,Vareebadd Phone,1,400,07/23/19 17:04,"569 Willow St, New York City, NY 10001" -236226,Wired Headphones,1,11.99,07/31/19 18:52,"226 Center St, New York City, NY 10001" -236227,Bose SoundSport Headphones,1,99.99,07/20/19 17:32,"570 Lakeview St, San Francisco, CA 94016" -236228,Lightning Charging Cable,1,14.95,07/08/19 14:59,"317 13th St, New York City, NY 10001" -236229,AA Batteries (4-pack),1,3.84,07/15/19 14:43,"358 Hill St, Seattle, WA 98101" -236230,Wired Headphones,3,11.99,07/06/19 13:05,"920 Church St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -236231,ThinkPad Laptop,1,999.99,07/17/19 23:07,"44 11th St, Los Angeles, CA 90001" -236232,AAA Batteries (4-pack),3,2.99,07/01/19 15:43,"96 Jackson St, San Francisco, CA 94016" -236233,27in FHD Monitor,1,149.99,07/17/19 18:28,"103 Meadow St, Atlanta, GA 30301" -236234,USB-C Charging Cable,1,11.95,07/01/19 10:20,"856 Lakeview St, San Francisco, CA 94016" -236235,Apple Airpods Headphones,1,150,07/21/19 19:14,"548 Spruce St, Austin, TX 73301" -236236,27in 4K Gaming Monitor,1,389.99,07/14/19 11:53,"336 Hickory St, Dallas, TX 75001" -236237,Lightning Charging Cable,1,14.95,07/12/19 20:06,"874 Walnut St, Boston, MA 02215" -236238,Apple Airpods Headphones,1,150,07/29/19 09:08,"862 Willow St, Atlanta, GA 30301" -236239,Wired Headphones,2,11.99,07/11/19 21:41,"176 Washington St, Seattle, WA 98101" -236240,USB-C Charging Cable,1,11.95,07/31/19 21:29,"860 2nd St, San Francisco, CA 94016" -236241,Google Phone,1,600,07/02/19 16:50,"346 Jackson St, Dallas, TX 75001" -236242,27in FHD Monitor,1,149.99,07/02/19 21:24,"81 7th St, San Francisco, CA 94016" -236243,Lightning Charging Cable,1,14.95,07/02/19 19:48,"506 Spruce St, New York City, NY 10001" -236244,Apple Airpods Headphones,1,150,07/21/19 19:45,"508 Spruce St, Seattle, WA 98101" -236245,Macbook Pro Laptop,1,1700,07/04/19 15:20,"15 West St, Atlanta, GA 30301" -236246,AA Batteries (4-pack),1,3.84,07/20/19 19:23,"986 North St, Dallas, TX 75001" -236247,Wired Headphones,1,11.99,07/16/19 09:37,"64 Forest St, Los Angeles, CA 90001" -236248,AA Batteries (4-pack),1,3.84,07/17/19 13:04,"982 Wilson St, Atlanta, GA 30301" -236249,Lightning Charging Cable,1,14.95,07/31/19 22:51,"280 North St, Atlanta, GA 30301" -236250,Wired Headphones,1,11.99,07/12/19 12:28,"783 Cherry St, Atlanta, GA 30301" -236251,27in FHD Monitor,1,149.99,07/05/19 10:35,"479 Wilson St, New York City, NY 10001" -236252,Bose SoundSport Headphones,1,99.99,07/04/19 21:58,"955 Adams St, Boston, MA 02215" -236253,Lightning Charging Cable,1,14.95,07/20/19 20:51,"612 Church St, Los Angeles, CA 90001" -236254,Lightning Charging Cable,1,14.95,07/26/19 12:29,"950 Adams St, San Francisco, CA 94016" -236255,34in Ultrawide Monitor,1,379.99,07/09/19 09:23,"227 7th St, Dallas, TX 75001" -236256,Wired Headphones,1,11.99,07/18/19 07:31,"714 River St, New York City, NY 10001" -236257,34in Ultrawide Monitor,1,379.99,07/10/19 21:38,"86 Dogwood St, Dallas, TX 75001" -236258,Flatscreen TV,1,300,07/20/19 22:53,"124 Forest St, Boston, MA 02215" -236259,Bose SoundSport Headphones,1,99.99,07/26/19 00:08,"150 River St, Austin, TX 73301" -236260,Lightning Charging Cable,1,14.95,07/15/19 16:41,"589 River St, Dallas, TX 75001" -236261,Apple Airpods Headphones,1,150,07/05/19 00:08,"545 Cedar St, Boston, MA 02215" -236262,20in Monitor,1,109.99,07/06/19 12:11,"486 Cherry St, San Francisco, CA 94016" -236262,USB-C Charging Cable,1,11.95,07/06/19 12:11,"486 Cherry St, San Francisco, CA 94016" -236263,Apple Airpods Headphones,1,150,07/06/19 11:07,"41 8th St, Portland, OR 97035" -236264,Lightning Charging Cable,1,14.95,07/23/19 11:17,"326 Center St, Los Angeles, CA 90001" -236265,AAA Batteries (4-pack),1,2.99,07/27/19 11:41,"740 Cherry St, Los Angeles, CA 90001" -236266,Wired Headphones,1,11.99,07/13/19 12:14,"29 Chestnut St, Los Angeles, CA 90001" -236267,AAA Batteries (4-pack),1,2.99,07/18/19 08:39,"838 Elm St, Portland, OR 97035" -236268,Apple Airpods Headphones,1,150,07/04/19 20:54,"937 Willow St, Seattle, WA 98101" -236269,Apple Airpods Headphones,1,150,07/10/19 16:09,"714 Walnut St, Los Angeles, CA 90001" -236270,USB-C Charging Cable,1,11.95,07/18/19 19:50,"308 Wilson St, Boston, MA 02215" -236270,Apple Airpods Headphones,1,150,07/18/19 19:50,"308 Wilson St, Boston, MA 02215" -236271,AA Batteries (4-pack),1,3.84,07/10/19 03:54,"942 Dogwood St, New York City, NY 10001" -236272,Apple Airpods Headphones,1,150,07/16/19 18:26,"727 Madison St, New York City, NY 10001" -236273,USB-C Charging Cable,1,11.95,07/15/19 22:20,"592 Sunset St, Boston, MA 02215" -236274,Macbook Pro Laptop,1,1700,07/11/19 10:48,"925 Adams St, San Francisco, CA 94016" -236275,Bose SoundSport Headphones,1,99.99,07/13/19 17:56,"958 Meadow St, San Francisco, CA 94016" -236276,27in 4K Gaming Monitor,1,389.99,07/24/19 14:31,"515 Highland St, San Francisco, CA 94016" -236277,Apple Airpods Headphones,1,150,07/04/19 11:21,"256 Wilson St, San Francisco, CA 94016" -236278,Flatscreen TV,1,300,07/15/19 09:14,"214 8th St, Atlanta, GA 30301" -236279,LG Dryer,1,600.0,07/31/19 18:40,"322 Spruce St, San Francisco, CA 94016" -236280,34in Ultrawide Monitor,1,379.99,07/08/19 21:30,"17 11th St, Los Angeles, CA 90001" -236281,ThinkPad Laptop,1,999.99,07/21/19 11:14,"588 Washington St, Atlanta, GA 30301" -236282,Lightning Charging Cable,1,14.95,07/24/19 18:30,"395 Chestnut St, Atlanta, GA 30301" -236283,USB-C Charging Cable,1,11.95,07/18/19 14:59,"308 North St, New York City, NY 10001" -236284,AA Batteries (4-pack),1,3.84,07/09/19 23:07,"669 Lakeview St, Austin, TX 73301" -236285,Bose SoundSport Headphones,1,99.99,07/05/19 03:07,"67 2nd St, Seattle, WA 98101" -236286,ThinkPad Laptop,1,999.99,07/08/19 19:09,"357 Cherry St, San Francisco, CA 94016" -236287,AA Batteries (4-pack),2,3.84,07/01/19 23:37,"386 Lakeview St, New York City, NY 10001" -236288,AA Batteries (4-pack),1,3.84,07/22/19 10:00,"487 West St, San Francisco, CA 94016" -236289,Apple Airpods Headphones,1,150,07/22/19 08:23,"429 1st St, Portland, OR 97035" -236290,AAA Batteries (4-pack),1,2.99,07/01/19 12:13,"357 Hickory St, Seattle, WA 98101" -236291,Wired Headphones,1,11.99,07/28/19 20:15,"303 Sunset St, Austin, TX 73301" -236292,Lightning Charging Cable,1,14.95,07/19/19 20:22,"271 Lake St, Dallas, TX 75001" -236293,Lightning Charging Cable,1,14.95,07/24/19 19:31,"940 Chestnut St, Los Angeles, CA 90001" -236294,Bose SoundSport Headphones,1,99.99,07/04/19 10:57,"353 Cherry St, New York City, NY 10001" -236295,Lightning Charging Cable,1,14.95,07/26/19 22:34,"831 Park St, Atlanta, GA 30301" -236296,34in Ultrawide Monitor,1,379.99,07/18/19 20:34,"16 Wilson St, Los Angeles, CA 90001" -236297,Apple Airpods Headphones,1,150,07/03/19 22:22,"752 River St, San Francisco, CA 94016" -236298,Vareebadd Phone,1,400,07/21/19 14:16,"570 Pine St, Dallas, TX 75001" -236298,USB-C Charging Cable,1,11.95,07/21/19 14:16,"570 Pine St, Dallas, TX 75001" -236299,Wired Headphones,1,11.99,07/31/19 17:13,"555 13th St, San Francisco, CA 94016" -236300,34in Ultrawide Monitor,1,379.99,07/02/19 14:09,"635 Meadow St, Los Angeles, CA 90001" -236301,Lightning Charging Cable,1,14.95,07/21/19 18:00,"535 Washington St, Los Angeles, CA 90001" -236302,27in FHD Monitor,1,149.99,07/09/19 16:00,"853 5th St, New York City, NY 10001" -236303,ThinkPad Laptop,1,999.99,07/09/19 10:30,"226 Dogwood St, Los Angeles, CA 90001" -236304,34in Ultrawide Monitor,1,379.99,07/25/19 20:13,"290 5th St, Seattle, WA 98101" -236305,ThinkPad Laptop,1,999.99,07/27/19 15:58,"529 13th St, San Francisco, CA 94016" -236306,Flatscreen TV,1,300,07/04/19 10:29,"695 Elm St, San Francisco, CA 94016" -236307,Wired Headphones,1,11.99,07/19/19 20:02,"455 10th St, Los Angeles, CA 90001" -236308,Macbook Pro Laptop,1,1700,07/13/19 13:43,"354 Main St, San Francisco, CA 94016" -236309,AAA Batteries (4-pack),1,2.99,07/20/19 14:01,"66 Main St, New York City, NY 10001" -236310,27in FHD Monitor,1,149.99,07/14/19 18:24,"228 Hill St, Los Angeles, CA 90001" -236311,USB-C Charging Cable,1,11.95,07/21/19 09:01,"271 Cherry St, Los Angeles, CA 90001" -236312,AA Batteries (4-pack),3,3.84,07/10/19 19:55,"383 Church St, New York City, NY 10001" -236313,20in Monitor,1,109.99,07/12/19 10:14,"701 Dogwood St, San Francisco, CA 94016" -236314,iPhone,1,700,07/28/19 06:29,"137 West St, San Francisco, CA 94016" -236315,AAA Batteries (4-pack),3,2.99,07/09/19 17:59,"117 Jackson St, Boston, MA 02215" -236316,AAA Batteries (4-pack),1,2.99,07/06/19 05:49,"946 8th St, Boston, MA 02215" -236317,AA Batteries (4-pack),1,3.84,07/27/19 16:36,"943 South St, Los Angeles, CA 90001" -236318,Apple Airpods Headphones,1,150,07/24/19 15:52,"527 Center St, San Francisco, CA 94016" -236319,iPhone,1,700,07/07/19 06:43,"633 Sunset St, Atlanta, GA 30301" -236320,27in FHD Monitor,1,149.99,07/11/19 11:43,"501 Wilson St, New York City, NY 10001" -236321,Lightning Charging Cable,1,14.95,07/07/19 13:59,"31 10th St, Los Angeles, CA 90001" -236322,ThinkPad Laptop,1,999.99,07/30/19 11:15,"298 10th St, San Francisco, CA 94016" -236323,AAA Batteries (4-pack),1,2.99,07/30/19 15:30,"731 4th St, New York City, NY 10001" -236324,Apple Airpods Headphones,1,150,07/10/19 15:44,"628 Lincoln St, Seattle, WA 98101" -236325,Flatscreen TV,1,300,07/31/19 22:31,"910 West St, Los Angeles, CA 90001" -236326,Bose SoundSport Headphones,1,99.99,07/06/19 22:30,"679 Spruce St, Los Angeles, CA 90001" -236327,Google Phone,1,600,07/10/19 12:11,"589 Church St, Atlanta, GA 30301" -236328,27in 4K Gaming Monitor,1,389.99,07/19/19 20:46,"25 Cedar St, San Francisco, CA 94016" -236329,Apple Airpods Headphones,1,150,07/13/19 10:42,"41 River St, Dallas, TX 75001" -236330,USB-C Charging Cable,1,11.95,07/21/19 13:19,"8 Main St, San Francisco, CA 94016" -236331,Flatscreen TV,1,300,07/13/19 18:50,"596 Pine St, New York City, NY 10001" -236332,34in Ultrawide Monitor,1,379.99,07/31/19 20:02,"104 Jackson St, Los Angeles, CA 90001" -236333,AA Batteries (4-pack),1,3.84,07/14/19 18:30,"726 Madison St, Los Angeles, CA 90001" -236334,27in 4K Gaming Monitor,1,389.99,07/16/19 11:29,"574 4th St, Boston, MA 02215" -236335,Lightning Charging Cable,1,14.95,07/07/19 13:20,"973 6th St, San Francisco, CA 94016" -236336,AA Batteries (4-pack),4,3.84,07/05/19 21:29,"701 Meadow St, New York City, NY 10001" -236337,Wired Headphones,1,11.99,07/10/19 11:52,"657 12th St, Dallas, TX 75001" -236338,AAA Batteries (4-pack),1,2.99,07/01/19 12:56,"233 Park St, San Francisco, CA 94016" -236339,Bose SoundSport Headphones,1,99.99,07/27/19 16:45,"342 River St, Dallas, TX 75001" -236340,USB-C Charging Cable,2,11.95,07/24/19 15:02,"86 13th St, Seattle, WA 98101" -236341,AA Batteries (4-pack),1,3.84,07/25/19 12:58,"985 South St, Los Angeles, CA 90001" -236342,Google Phone,1,600,07/04/19 20:11,"936 Center St, Boston, MA 02215" -236342,USB-C Charging Cable,1,11.95,07/04/19 20:11,"936 Center St, Boston, MA 02215" -236343,ThinkPad Laptop,1,999.99,07/04/19 16:28,"27 Jackson St, San Francisco, CA 94016" -236344,27in FHD Monitor,1,149.99,07/17/19 14:47,"990 Ridge St, Atlanta, GA 30301" -236345,AA Batteries (4-pack),1,3.84,07/25/19 08:58,"520 Maple St, Portland, OR 97035" -236346,34in Ultrawide Monitor,1,379.99,07/23/19 07:24,"986 Spruce St, Portland, ME 04101" -236347,Bose SoundSport Headphones,1,99.99,07/13/19 15:16,"691 South St, Seattle, WA 98101" -236348,iPhone,1,700,07/15/19 22:04,"730 13th St, Boston, MA 02215" -236349,Wired Headphones,1,11.99,07/22/19 18:45,"306 1st St, Los Angeles, CA 90001" -236350,USB-C Charging Cable,1,11.95,07/05/19 21:27,"463 Dogwood St, New York City, NY 10001" -,,,,, -236351,Lightning Charging Cable,1,14.95,07/11/19 14:50,"53 Walnut St, Boston, MA 02215" -236352,USB-C Charging Cable,1,11.95,07/01/19 21:58,"204 12th St, San Francisco, CA 94016" -236353,Macbook Pro Laptop,1,1700,07/17/19 22:40,"748 Meadow St, Atlanta, GA 30301" -236354,Bose SoundSport Headphones,1,99.99,07/29/19 14:29,"119 South St, Atlanta, GA 30301" -236355,27in 4K Gaming Monitor,1,389.99,07/02/19 14:31,"760 10th St, New York City, NY 10001" -236356,Wired Headphones,1,11.99,07/08/19 13:25,"771 12th St, San Francisco, CA 94016" -236357,USB-C Charging Cable,1,11.95,07/20/19 11:26,"962 Chestnut St, Seattle, WA 98101" -236358,ThinkPad Laptop,1,999.99,07/23/19 08:42,"672 Highland St, New York City, NY 10001" -236359,Apple Airpods Headphones,1,150,07/20/19 20:02,"624 Washington St, San Francisco, CA 94016" -236360,Wired Headphones,1,11.99,07/23/19 12:04,"761 Lincoln St, San Francisco, CA 94016" -236361,Apple Airpods Headphones,1,150,07/01/19 15:35,"801 West St, Atlanta, GA 30301" -236362,27in FHD Monitor,1,149.99,07/19/19 21:30,"424 9th St, Portland, OR 97035" -236363,Lightning Charging Cable,1,14.95,07/25/19 14:18,"852 1st St, New York City, NY 10001" -236364,AAA Batteries (4-pack),6,2.99,07/31/19 13:56,"45 Ridge St, Dallas, TX 75001" -236365,27in FHD Monitor,1,149.99,07/08/19 13:32,"910 Church St, Seattle, WA 98101" -236366,Apple Airpods Headphones,1,150,07/05/19 21:20,"698 7th St, Portland, ME 04101" -236367,34in Ultrawide Monitor,1,379.99,07/20/19 16:41,"863 Center St, San Francisco, CA 94016" -236368,Lightning Charging Cable,1,14.95,07/25/19 18:05,"234 River St, Boston, MA 02215" -236368,USB-C Charging Cable,1,11.95,07/25/19 18:05,"234 River St, Boston, MA 02215" -236369,Bose SoundSport Headphones,1,99.99,07/05/19 22:32,"259 Adams St, Boston, MA 02215" -236370,AA Batteries (4-pack),1,3.84,07/20/19 09:31,"762 11th St, New York City, NY 10001" -236371,AA Batteries (4-pack),1,3.84,07/23/19 22:24,"391 Hill St, San Francisco, CA 94016" -236372,34in Ultrawide Monitor,1,379.99,07/12/19 01:27,"817 Highland St, San Francisco, CA 94016" -236373,USB-C Charging Cable,1,11.95,07/25/19 12:17,"750 Washington St, Los Angeles, CA 90001" -236374,Wired Headphones,1,11.99,07/27/19 16:36,"340 West St, Boston, MA 02215" -236375,27in FHD Monitor,1,149.99,07/27/19 21:01,"372 Jackson St, Dallas, TX 75001" -236376,USB-C Charging Cable,1,11.95,07/14/19 05:38,"530 Meadow St, New York City, NY 10001" -236377,Apple Airpods Headphones,1,150,07/02/19 10:27,"814 Ridge St, Boston, MA 02215" -236378,AA Batteries (4-pack),3,3.84,07/24/19 18:06,"366 5th St, San Francisco, CA 94016" -236379,AAA Batteries (4-pack),2,2.99,07/12/19 10:17,"821 Main St, Los Angeles, CA 90001" -236380,27in 4K Gaming Monitor,1,389.99,07/11/19 21:08,"391 14th St, San Francisco, CA 94016" -236381,AAA Batteries (4-pack),1,2.99,07/10/19 06:37,"397 West St, Boston, MA 02215" -236382,20in Monitor,1,109.99,07/02/19 21:27,"935 14th St, San Francisco, CA 94016" -236383,Macbook Pro Laptop,1,1700,07/03/19 13:19,"125 1st St, San Francisco, CA 94016" -236384,USB-C Charging Cable,1,11.95,07/22/19 10:03,"419 Lincoln St, Dallas, TX 75001" -236385,ThinkPad Laptop,1,999.99,07/25/19 01:02,"947 Lincoln St, New York City, NY 10001" -236386,27in 4K Gaming Monitor,1,389.99,07/02/19 19:02,"560 Highland St, Portland, OR 97035" -236387,AA Batteries (4-pack),1,3.84,07/04/19 17:24,"595 Hickory St, San Francisco, CA 94016" -236388,Google Phone,1,600,07/09/19 08:54,"730 Elm St, New York City, NY 10001" -236389,27in 4K Gaming Monitor,1,389.99,07/05/19 20:11,"408 Ridge St, New York City, NY 10001" -236390,Lightning Charging Cable,1,14.95,07/18/19 12:53,"165 2nd St, New York City, NY 10001" -236391,Apple Airpods Headphones,1,150,07/04/19 20:55,"577 Johnson St, Los Angeles, CA 90001" -236392,iPhone,1,700,07/05/19 14:58,"883 Lakeview St, Los Angeles, CA 90001" -236393,AA Batteries (4-pack),2,3.84,07/26/19 21:40,"560 Adams St, New York City, NY 10001" -236394,20in Monitor,1,109.99,07/30/19 15:40,"870 Jackson St, San Francisco, CA 94016" -236395,20in Monitor,1,109.99,07/28/19 10:50,"457 Meadow St, San Francisco, CA 94016" -236396,Apple Airpods Headphones,1,150,07/12/19 12:40,"86 Meadow St, Atlanta, GA 30301" -236397,iPhone,1,700,07/29/19 19:00,"604 Walnut St, Dallas, TX 75001" -236397,Wired Headphones,1,11.99,07/29/19 19:00,"604 Walnut St, Dallas, TX 75001" -236398,27in 4K Gaming Monitor,1,389.99,07/04/19 12:35,"273 South St, Los Angeles, CA 90001" -236399,27in FHD Monitor,1,149.99,07/09/19 07:30,"967 4th St, Boston, MA 02215" -236400,Wired Headphones,1,11.99,07/18/19 14:43,"242 Walnut St, Atlanta, GA 30301" -236401,AA Batteries (4-pack),2,3.84,07/26/19 17:41,"175 5th St, San Francisco, CA 94016" -236402,USB-C Charging Cable,1,11.95,07/21/19 14:31,"396 Ridge St, Seattle, WA 98101" -236403,USB-C Charging Cable,1,11.95,07/29/19 17:44,"254 Lake St, Los Angeles, CA 90001" -236404,Apple Airpods Headphones,1,150,07/28/19 10:47,"209 Maple St, San Francisco, CA 94016" -236405,Lightning Charging Cable,1,14.95,07/25/19 18:56,"253 Forest St, Boston, MA 02215" -236406,Macbook Pro Laptop,1,1700,07/22/19 20:04,"643 Lincoln St, Los Angeles, CA 90001" -236407,AAA Batteries (4-pack),1,2.99,07/26/19 17:33,"885 Washington St, Seattle, WA 98101" -236408,Lightning Charging Cable,1,14.95,07/04/19 08:40,"301 Lakeview St, Los Angeles, CA 90001" -236409,Google Phone,1,600,07/04/19 22:37,"121 12th St, San Francisco, CA 94016" -236409,Bose SoundSport Headphones,1,99.99,07/04/19 22:37,"121 12th St, San Francisco, CA 94016" -236410,Lightning Charging Cable,1,14.95,07/21/19 17:48,"971 10th St, New York City, NY 10001" -236411,Wired Headphones,1,11.99,07/30/19 16:11,"785 9th St, Austin, TX 73301" -236412,34in Ultrawide Monitor,1,379.99,07/11/19 14:22,"816 13th St, San Francisco, CA 94016" -236413,Google Phone,1,600,07/26/19 00:38,"316 Jackson St, San Francisco, CA 94016" -236414,AA Batteries (4-pack),1,3.84,07/04/19 15:10,"871 Lake St, San Francisco, CA 94016" -236415,LG Washing Machine,1,600.0,07/25/19 18:51,"633 10th St, Atlanta, GA 30301" -236416,27in 4K Gaming Monitor,1,389.99,07/19/19 13:04,"702 Madison St, Boston, MA 02215" -236417,Lightning Charging Cable,1,14.95,07/12/19 09:53,"163 9th St, Los Angeles, CA 90001" -236418,iPhone,1,700,07/02/19 18:42,"911 Forest St, San Francisco, CA 94016" -236419,Flatscreen TV,1,300,07/31/19 15:39,"50 Willow St, New York City, NY 10001" -236420,Lightning Charging Cable,1,14.95,07/17/19 09:41,"283 10th St, Austin, TX 73301" -236421,Apple Airpods Headphones,1,150,07/30/19 14:11,"762 Cherry St, San Francisco, CA 94016" -236422,Bose SoundSport Headphones,1,99.99,07/22/19 20:33,"495 Ridge St, Los Angeles, CA 90001" -236423,AA Batteries (4-pack),2,3.84,07/25/19 10:50,"60 Jackson St, New York City, NY 10001" -236424,AAA Batteries (4-pack),1,2.99,07/30/19 15:59,"803 Adams St, Dallas, TX 75001" -236425,Lightning Charging Cable,1,14.95,07/12/19 21:14,"39 14th St, Portland, OR 97035" -236426,AAA Batteries (4-pack),1,2.99,07/27/19 17:49,"815 Maple St, Boston, MA 02215" -236427,20in Monitor,1,109.99,07/28/19 14:15,"263 4th St, Portland, ME 04101" -236428,AA Batteries (4-pack),1,3.84,07/15/19 22:49,"910 Jefferson St, New York City, NY 10001" -236429,USB-C Charging Cable,1,11.95,07/16/19 13:12,"98 Forest St, New York City, NY 10001" -236430,Google Phone,1,600,07/13/19 17:35,"536 Lake St, San Francisco, CA 94016" -236431,Macbook Pro Laptop,1,1700,07/04/19 20:42,"60 Dogwood St, Portland, OR 97035" -236432,34in Ultrawide Monitor,1,379.99,07/18/19 17:15,"75 12th St, Boston, MA 02215" -236433,Bose SoundSport Headphones,1,99.99,07/12/19 12:51,"394 Johnson St, Seattle, WA 98101" -236434,20in Monitor,1,109.99,07/26/19 11:07,"841 14th St, Atlanta, GA 30301" -236435,USB-C Charging Cable,1,11.95,07/31/19 20:16,"396 Meadow St, Boston, MA 02215" -236436,Wired Headphones,1,11.99,07/13/19 18:05,"561 Chestnut St, San Francisco, CA 94016" -236437,Wired Headphones,1,11.99,07/03/19 08:30,"726 West St, Dallas, TX 75001" -236438,Bose SoundSport Headphones,1,99.99,07/09/19 21:27,"880 Maple St, Los Angeles, CA 90001" -236439,USB-C Charging Cable,1,11.95,07/30/19 22:41,"892 Meadow St, New York City, NY 10001" -236440,Apple Airpods Headphones,1,150,07/17/19 07:25,"295 10th St, Atlanta, GA 30301" -236441,Apple Airpods Headphones,1,150,07/15/19 09:26,"139 4th St, Los Angeles, CA 90001" -236442,Apple Airpods Headphones,1,150,07/08/19 11:27,"112 Hill St, San Francisco, CA 94016" -236443,Bose SoundSport Headphones,1,99.99,07/03/19 15:20,"201 8th St, New York City, NY 10001" -236444,AA Batteries (4-pack),1,3.84,07/19/19 23:11,"940 South St, Atlanta, GA 30301" -236445,Lightning Charging Cable,1,14.95,07/01/19 19:36,"307 8th St, Seattle, WA 98101" -236446,Flatscreen TV,1,300,07/01/19 12:41,"20 2nd St, Boston, MA 02215" -236447,AAA Batteries (4-pack),1,2.99,07/03/19 02:28,"765 Adams St, Los Angeles, CA 90001" -236448,AAA Batteries (4-pack),1,2.99,07/15/19 00:33,"242 Hill St, Los Angeles, CA 90001" -236449,Bose SoundSport Headphones,1,99.99,07/25/19 09:13,"119 11th St, Dallas, TX 75001" -236450,USB-C Charging Cable,1,11.95,07/06/19 17:37,"900 Maple St, Dallas, TX 75001" -236451,Google Phone,1,600,07/30/19 11:43,"293 Lakeview St, San Francisco, CA 94016" -236452,Apple Airpods Headphones,1,150,07/16/19 12:32,"729 South St, Los Angeles, CA 90001" -236453,AAA Batteries (4-pack),4,2.99,07/26/19 12:01,"506 Sunset St, Los Angeles, CA 90001" -236454,AA Batteries (4-pack),1,3.84,07/09/19 01:49,"978 Sunset St, Boston, MA 02215" -236455,Apple Airpods Headphones,1,150,07/18/19 18:25,"891 1st St, Los Angeles, CA 90001" -236456,AA Batteries (4-pack),1,3.84,07/09/19 11:50,"365 1st St, Los Angeles, CA 90001" -236457,Macbook Pro Laptop,1,1700,07/09/19 09:05,"414 14th St, New York City, NY 10001" -236458,AAA Batteries (4-pack),1,2.99,07/06/19 15:30,"227 Highland St, Portland, OR 97035" -236459,Flatscreen TV,1,300,07/26/19 14:51,"56 Highland St, Dallas, TX 75001" -236460,AAA Batteries (4-pack),1,2.99,07/31/19 12:10,"421 North St, San Francisco, CA 94016" -236461,AAA Batteries (4-pack),2,2.99,07/29/19 20:59,"341 Wilson St, Dallas, TX 75001" -236462,Macbook Pro Laptop,1,1700,07/29/19 19:17,"326 12th St, Seattle, WA 98101" -236463,Macbook Pro Laptop,1,1700,07/09/19 15:26,"421 Center St, Boston, MA 02215" -236464,Lightning Charging Cable,2,14.95,07/07/19 18:03,"334 Madison St, San Francisco, CA 94016" -236465,Bose SoundSport Headphones,1,99.99,07/28/19 06:40,"143 Sunset St, Boston, MA 02215" -236466,Bose SoundSport Headphones,1,99.99,07/15/19 11:56,"305 Maple St, Atlanta, GA 30301" -236467,Apple Airpods Headphones,1,150,07/02/19 20:04,"15 Cedar St, Seattle, WA 98101" -236468,AA Batteries (4-pack),1,3.84,07/06/19 07:23,"61 1st St, San Francisco, CA 94016" -236469,27in FHD Monitor,1,149.99,07/01/19 14:44,"171 Spruce St, Boston, MA 02215" -236470,34in Ultrawide Monitor,1,379.99,07/14/19 09:07,"867 Dogwood St, Dallas, TX 75001" -236471,Bose SoundSport Headphones,1,99.99,07/02/19 16:54,"828 Lincoln St, Austin, TX 73301" -236472,Bose SoundSport Headphones,1,99.99,07/20/19 04:50,"149 Highland St, San Francisco, CA 94016" -236472,AAA Batteries (4-pack),1,2.99,07/20/19 04:50,"149 Highland St, San Francisco, CA 94016" -236473,AA Batteries (4-pack),1,3.84,07/21/19 15:22,"397 River St, Dallas, TX 75001" -236474,Apple Airpods Headphones,1,150,07/10/19 21:42,"260 Spruce St, Atlanta, GA 30301" -236475,Apple Airpods Headphones,1,150,07/01/19 12:09,"408 14th St, Portland, ME 04101" -236476,Apple Airpods Headphones,1,150,07/14/19 14:39,"320 Washington St, Los Angeles, CA 90001" -236477,34in Ultrawide Monitor,1,379.99,07/05/19 08:28,"308 Church St, San Francisco, CA 94016" -236478,AA Batteries (4-pack),1,3.84,07/10/19 10:23,"53 Spruce St, San Francisco, CA 94016" -236479,Lightning Charging Cable,2,14.95,07/24/19 18:48,"501 Lake St, Portland, ME 04101" -236480,Apple Airpods Headphones,1,150,07/13/19 21:40,"906 Dogwood St, Los Angeles, CA 90001" -236481,Google Phone,1,600,07/21/19 14:31,"183 Dogwood St, San Francisco, CA 94016" -236481,USB-C Charging Cable,1,11.95,07/21/19 14:31,"183 Dogwood St, San Francisco, CA 94016" -236482,34in Ultrawide Monitor,1,379.99,07/13/19 18:01,"20 Cherry St, Seattle, WA 98101" -236483,AAA Batteries (4-pack),2,2.99,07/20/19 14:45,"391 South St, Boston, MA 02215" -236484,Lightning Charging Cable,1,14.95,07/04/19 16:36,"632 9th St, Boston, MA 02215" -236484,Macbook Pro Laptop,1,1700,07/04/19 16:36,"632 9th St, Boston, MA 02215" -236485,AAA Batteries (4-pack),5,2.99,07/05/19 22:46,"582 Maple St, Boston, MA 02215" -236486,USB-C Charging Cable,1,11.95,07/20/19 09:03,"880 Jefferson St, Atlanta, GA 30301" -236487,AA Batteries (4-pack),1,3.84,07/24/19 09:02,"119 9th St, Dallas, TX 75001" -236488,AA Batteries (4-pack),1,3.84,07/11/19 12:04,"508 Chestnut St, Boston, MA 02215" -236489,AA Batteries (4-pack),1,3.84,07/15/19 21:25,"512 Main St, San Francisco, CA 94016" -236490,Bose SoundSport Headphones,1,99.99,07/05/19 09:32,"923 14th St, Boston, MA 02215" -236491,USB-C Charging Cable,3,11.95,07/23/19 10:59,"749 Jackson St, New York City, NY 10001" -236492,Lightning Charging Cable,1,14.95,07/31/19 01:16,"973 9th St, San Francisco, CA 94016" -236493,AAA Batteries (4-pack),2,2.99,07/31/19 22:54,"447 14th St, Portland, OR 97035" -236494,USB-C Charging Cable,1,11.95,07/04/19 17:59,"443 Walnut St, San Francisco, CA 94016" -236495,AAA Batteries (4-pack),1,2.99,07/04/19 21:35,"408 Johnson St, New York City, NY 10001" -236496,Bose SoundSport Headphones,1,99.99,07/31/19 17:58,"249 Main St, Los Angeles, CA 90001" -236497,Wired Headphones,1,11.99,07/20/19 22:05,"222 10th St, Boston, MA 02215" -236498,Lightning Charging Cable,1,14.95,07/30/19 21:10,"754 Madison St, Portland, OR 97035" -236499,Wired Headphones,1,11.99,07/07/19 10:03,"973 Center St, San Francisco, CA 94016" -236500,Lightning Charging Cable,1,14.95,07/17/19 01:07,"451 Park St, San Francisco, CA 94016" -236501,AA Batteries (4-pack),2,3.84,07/18/19 18:01,"810 10th St, New York City, NY 10001" -236502,USB-C Charging Cable,1,11.95,07/24/19 07:31,"560 West St, Los Angeles, CA 90001" -236503,Wired Headphones,1,11.99,07/18/19 21:02,"492 11th St, Atlanta, GA 30301" -236504,Lightning Charging Cable,1,14.95,07/07/19 22:35,"975 Church St, Dallas, TX 75001" -236505,Lightning Charging Cable,1,14.95,07/11/19 08:33,"191 North St, Atlanta, GA 30301" -236506,USB-C Charging Cable,1,11.95,07/29/19 22:16,"14 4th St, San Francisco, CA 94016" -236507,iPhone,1,700,07/04/19 06:47,"255 Elm St, San Francisco, CA 94016" -236507,Lightning Charging Cable,1,14.95,07/04/19 06:47,"255 Elm St, San Francisco, CA 94016" -236508,USB-C Charging Cable,1,11.95,07/18/19 19:25,"76 Ridge St, Portland, OR 97035" -236509,Lightning Charging Cable,1,14.95,07/12/19 14:36,"171 2nd St, Atlanta, GA 30301" -236510,Bose SoundSport Headphones,1,99.99,07/09/19 19:42,"275 South St, Portland, OR 97035" -236511,Apple Airpods Headphones,1,150,07/15/19 23:11,"717 North St, San Francisco, CA 94016" -236512,Macbook Pro Laptop,1,1700,07/07/19 17:09,"656 1st St, San Francisco, CA 94016" -236513,27in 4K Gaming Monitor,1,389.99,07/31/19 10:35,"550 7th St, Austin, TX 73301" -236513,Bose SoundSport Headphones,1,99.99,07/31/19 10:35,"550 7th St, Austin, TX 73301" -236514,AA Batteries (4-pack),2,3.84,08/01/19 00:36,"820 Highland St, New York City, NY 10001" -236515,20in Monitor,1,109.99,07/31/19 03:57,"105 Meadow St, Austin, TX 73301" -236516,27in 4K Gaming Monitor,1,389.99,07/20/19 22:49,"76 Church St, San Francisco, CA 94016" -236517,34in Ultrawide Monitor,1,379.99,07/17/19 20:12,"610 Park St, San Francisco, CA 94016" -236518,USB-C Charging Cable,1,11.95,07/10/19 15:30,"438 2nd St, Dallas, TX 75001" -236519,USB-C Charging Cable,1,11.95,07/27/19 17:50,"651 6th St, New York City, NY 10001" -236520,AA Batteries (4-pack),1,3.84,07/21/19 21:16,"303 8th St, San Francisco, CA 94016" -236521,USB-C Charging Cable,1,11.95,07/13/19 16:42,"650 Lincoln St, Seattle, WA 98101" -236522,USB-C Charging Cable,1,11.95,07/31/19 10:23,"997 Dogwood St, Boston, MA 02215" -236523,USB-C Charging Cable,1,11.95,07/07/19 11:21,"617 Meadow St, New York City, NY 10001" -236524,34in Ultrawide Monitor,1,379.99,07/28/19 18:31,"500 Lakeview St, Atlanta, GA 30301" -236525,AAA Batteries (4-pack),2,2.99,07/01/19 14:31,"348 Forest St, Atlanta, GA 30301" -236526,Bose SoundSport Headphones,1,99.99,07/29/19 15:27,"991 Hickory St, Seattle, WA 98101" -236527,34in Ultrawide Monitor,1,379.99,07/27/19 01:07,"297 Hill St, Seattle, WA 98101" -236528,Bose SoundSport Headphones,1,99.99,07/20/19 22:09,"423 8th St, Los Angeles, CA 90001" -236529,AA Batteries (4-pack),1,3.84,07/11/19 11:49,"395 River St, San Francisco, CA 94016" -236530,USB-C Charging Cable,1,11.95,07/09/19 10:12,"688 Pine St, New York City, NY 10001" -236531,AAA Batteries (4-pack),1,2.99,07/13/19 18:22,"475 Dogwood St, San Francisco, CA 94016" -236532,Lightning Charging Cable,1,14.95,07/26/19 08:52,"978 Sunset St, New York City, NY 10001" -236533,Wired Headphones,1,11.99,07/22/19 22:37,"446 Wilson St, San Francisco, CA 94016" -236534,ThinkPad Laptop,1,999.99,07/04/19 15:44,"507 Dogwood St, Los Angeles, CA 90001" -236535,USB-C Charging Cable,1,11.95,07/03/19 21:10,"721 Church St, Portland, OR 97035" -236536,Vareebadd Phone,1,400,07/08/19 18:53,"59 South St, Boston, MA 02215" -236536,USB-C Charging Cable,1,11.95,07/08/19 18:53,"59 South St, Boston, MA 02215" -236537,Wired Headphones,1,11.99,07/24/19 23:29,"347 Lakeview St, Austin, TX 73301" -236538,Wired Headphones,1,11.99,07/19/19 11:25,"359 Wilson St, Boston, MA 02215" -236539,iPhone,1,700,07/18/19 17:19,"197 Lincoln St, Boston, MA 02215" -236539,Apple Airpods Headphones,2,150,07/18/19 17:19,"197 Lincoln St, Boston, MA 02215" -236540,iPhone,1,700,07/03/19 13:46,"170 Main St, Los Angeles, CA 90001" -236541,Lightning Charging Cable,1,14.95,07/22/19 17:59,"128 Maple St, Boston, MA 02215" -236542,ThinkPad Laptop,1,999.99,07/23/19 08:36,"460 Washington St, Boston, MA 02215" -236543,AA Batteries (4-pack),1,3.84,07/06/19 16:40,"830 Dogwood St, New York City, NY 10001" -236544,USB-C Charging Cable,1,11.95,07/02/19 23:59,"342 Lake St, San Francisco, CA 94016" -236545,34in Ultrawide Monitor,1,379.99,07/30/19 14:35,"295 2nd St, New York City, NY 10001" -236546,ThinkPad Laptop,1,999.99,07/24/19 21:37,"477 Cedar St, San Francisco, CA 94016" -236546,AAA Batteries (4-pack),2,2.99,07/24/19 21:37,"477 Cedar St, San Francisco, CA 94016" -,,,,, -236547,27in 4K Gaming Monitor,1,389.99,07/21/19 23:47,"634 2nd St, San Francisco, CA 94016" -236548,Lightning Charging Cable,2,14.95,07/18/19 16:17,"688 6th St, Seattle, WA 98101" -236549,Lightning Charging Cable,1,14.95,07/10/19 00:01,"772 Lake St, Seattle, WA 98101" -236550,Bose SoundSport Headphones,1,99.99,07/10/19 11:52,"995 11th St, Boston, MA 02215" -236551,Lightning Charging Cable,1,14.95,07/27/19 00:07,"811 Church St, San Francisco, CA 94016" -236552,AAA Batteries (4-pack),1,2.99,07/23/19 10:51,"543 Hill St, San Francisco, CA 94016" -236553,USB-C Charging Cable,2,11.95,07/21/19 04:30,"916 Jackson St, Seattle, WA 98101" -236554,Apple Airpods Headphones,1,150,07/10/19 21:10,"107 Chestnut St, Seattle, WA 98101" -236555,USB-C Charging Cable,1,11.95,07/15/19 12:09,"28 Jefferson St, Seattle, WA 98101" -236556,27in 4K Gaming Monitor,1,389.99,07/03/19 21:59,"212 Ridge St, New York City, NY 10001" -236557,AAA Batteries (4-pack),2,2.99,07/30/19 09:00,"995 4th St, New York City, NY 10001" -236558,AAA Batteries (4-pack),1,2.99,07/04/19 00:03,"240 13th St, Portland, OR 97035" -236559,USB-C Charging Cable,1,11.95,07/20/19 17:07,"422 Wilson St, Los Angeles, CA 90001" -236560,Lightning Charging Cable,1,14.95,07/17/19 20:58,"880 6th St, Portland, OR 97035" -236561,Macbook Pro Laptop,1,1700,07/13/19 19:34,"247 1st St, New York City, NY 10001" -236562,Apple Airpods Headphones,1,150,07/29/19 05:08,"609 Dogwood St, Boston, MA 02215" -236563,USB-C Charging Cable,1,11.95,07/17/19 20:22,"59 Lincoln St, Los Angeles, CA 90001" -236564,20in Monitor,1,109.99,07/04/19 18:25,"917 2nd St, Boston, MA 02215" -236565,USB-C Charging Cable,1,11.95,07/18/19 01:29,"634 Wilson St, San Francisco, CA 94016" -236566,Apple Airpods Headphones,1,150,07/08/19 11:10,"503 12th St, New York City, NY 10001" -236567,Bose SoundSport Headphones,1,99.99,07/23/19 22:03,"895 Cedar St, Los Angeles, CA 90001" -236568,AAA Batteries (4-pack),1,2.99,07/05/19 20:10,"377 1st St, Atlanta, GA 30301" -236569,Flatscreen TV,1,300,07/24/19 08:04,"188 Willow St, Austin, TX 73301" -236570,Lightning Charging Cable,1,14.95,07/14/19 12:26,"191 Walnut St, Los Angeles, CA 90001" -236571,Lightning Charging Cable,1,14.95,07/14/19 09:10,"746 Adams St, Los Angeles, CA 90001" -236572,Bose SoundSport Headphones,1,99.99,07/17/19 13:52,"631 14th St, New York City, NY 10001" -236573,AA Batteries (4-pack),1,3.84,07/24/19 19:08,"39 Chestnut St, San Francisco, CA 94016" -236574,USB-C Charging Cable,2,11.95,07/27/19 08:47,"321 2nd St, San Francisco, CA 94016" -236575,27in 4K Gaming Monitor,1,389.99,07/04/19 14:57,"200 2nd St, New York City, NY 10001" -236576,Google Phone,1,600,07/26/19 15:33,"323 Highland St, Los Angeles, CA 90001" -236576,USB-C Charging Cable,1,11.95,07/26/19 15:33,"323 Highland St, Los Angeles, CA 90001" -236577,Lightning Charging Cable,1,14.95,07/30/19 02:07,"341 Madison St, Seattle, WA 98101" -236578,AAA Batteries (4-pack),2,2.99,07/19/19 18:09,"844 Johnson St, Atlanta, GA 30301" -236579,Lightning Charging Cable,1,14.95,07/22/19 17:34,"165 9th St, Boston, MA 02215" -236580,USB-C Charging Cable,1,11.95,07/23/19 08:02,"804 Park St, San Francisco, CA 94016" -236581,Macbook Pro Laptop,1,1700,07/09/19 07:54,"300 Johnson St, Portland, OR 97035" -236582,USB-C Charging Cable,1,11.95,07/08/19 15:46,"148 Cedar St, Portland, OR 97035" -236583,Flatscreen TV,1,300,07/16/19 11:47,"596 Ridge St, Seattle, WA 98101" -236584,AA Batteries (4-pack),1,3.84,07/31/19 16:46,"941 12th St, San Francisco, CA 94016" -236585,USB-C Charging Cable,1,11.95,07/29/19 13:27,"312 8th St, Seattle, WA 98101" -236586,AAA Batteries (4-pack),1,2.99,07/13/19 21:38,"464 Wilson St, Dallas, TX 75001" -236587,USB-C Charging Cable,1,11.95,07/29/19 15:10,"873 North St, Seattle, WA 98101" -236588,Wired Headphones,3,11.99,07/20/19 15:24,"757 Lincoln St, New York City, NY 10001" -236589,Wired Headphones,1,11.99,07/22/19 20:13,"995 Hill St, Seattle, WA 98101" -236590,AAA Batteries (4-pack),1,2.99,07/10/19 10:48,"375 Adams St, Los Angeles, CA 90001" -236591,AA Batteries (4-pack),1,3.84,07/22/19 19:54,"570 Wilson St, San Francisco, CA 94016" -236592,Bose SoundSport Headphones,1,99.99,07/29/19 11:38,"146 Meadow St, San Francisco, CA 94016" -236593,Bose SoundSport Headphones,1,99.99,07/23/19 15:24,"636 6th St, Boston, MA 02215" -236594,Bose SoundSport Headphones,1,99.99,07/14/19 16:18,"153 Lake St, Dallas, TX 75001" -236595,AAA Batteries (4-pack),1,2.99,07/30/19 16:09,"888 Hill St, Portland, OR 97035" -236596,Wired Headphones,1,11.99,07/20/19 21:47,"336 8th St, Dallas, TX 75001" -236597,Apple Airpods Headphones,1,150,07/30/19 22:44,"840 Chestnut St, Atlanta, GA 30301" -236598,Google Phone,1,600,07/21/19 21:49,"541 North St, Boston, MA 02215" -236599,AA Batteries (4-pack),1,3.84,07/06/19 23:43,"256 Lincoln St, San Francisco, CA 94016" -236600,Apple Airpods Headphones,1,150,07/27/19 08:26,"165 South St, Austin, TX 73301" -236601,34in Ultrawide Monitor,1,379.99,07/01/19 10:56,"27 Maple St, Los Angeles, CA 90001" -236602,Lightning Charging Cable,1,14.95,07/07/19 01:02,"185 1st St, San Francisco, CA 94016" -236602,iPhone,1,700,07/07/19 01:02,"185 1st St, San Francisco, CA 94016" -236603,Lightning Charging Cable,1,14.95,07/29/19 08:52,"562 Ridge St, Seattle, WA 98101" -236604,Apple Airpods Headphones,1,150,07/26/19 16:46,"114 Sunset St, Dallas, TX 75001" -236605,AAA Batteries (4-pack),1,2.99,07/31/19 11:36,"356 West St, San Francisco, CA 94016" -236606,AAA Batteries (4-pack),1,2.99,07/05/19 19:44,"496 Willow St, San Francisco, CA 94016" -236607,Google Phone,1,600,07/27/19 16:30,"922 Madison St, San Francisco, CA 94016" -236608,27in FHD Monitor,1,149.99,07/08/19 23:52,"278 Washington St, Boston, MA 02215" -236609,Lightning Charging Cable,2,14.95,07/06/19 13:46,"988 Chestnut St, Austin, TX 73301" -236610,USB-C Charging Cable,1,11.95,07/30/19 17:25,"943 Hill St, San Francisco, CA 94016" -236611,27in FHD Monitor,2,149.99,07/11/19 20:09,"821 1st St, San Francisco, CA 94016" -236612,AAA Batteries (4-pack),1,2.99,07/28/19 14:17,"882 2nd St, San Francisco, CA 94016" -236613,Apple Airpods Headphones,1,150,07/28/19 01:00,"705 Pine St, Boston, MA 02215" -236614,AAA Batteries (4-pack),1,2.99,07/01/19 14:39,"332 12th St, Los Angeles, CA 90001" -236615,Wired Headphones,1,11.99,07/01/19 14:22,"834 Chestnut St, Portland, ME 04101" -236616,Google Phone,1,600,07/19/19 20:14,"984 Dogwood St, Boston, MA 02215" -236616,USB-C Charging Cable,1,11.95,07/19/19 20:14,"984 Dogwood St, Boston, MA 02215" -236617,USB-C Charging Cable,1,11.95,07/01/19 13:36,"67 6th St, Los Angeles, CA 90001" -236618,AA Batteries (4-pack),1,3.84,07/07/19 19:48,"229 13th St, San Francisco, CA 94016" -236619,Bose SoundSport Headphones,1,99.99,07/01/19 12:47,"709 Sunset St, Los Angeles, CA 90001" -236620,Apple Airpods Headphones,1,150,07/29/19 12:50,"674 Lake St, San Francisco, CA 94016" -236621,34in Ultrawide Monitor,1,379.99,07/15/19 01:28,"792 Cherry St, Portland, OR 97035" -236622,Bose SoundSport Headphones,1,99.99,07/03/19 23:48,"156 Elm St, New York City, NY 10001" -236623,34in Ultrawide Monitor,1,379.99,07/10/19 13:17,"399 River St, Los Angeles, CA 90001" -236624,Bose SoundSport Headphones,1,99.99,07/22/19 13:14,"157 Main St, San Francisco, CA 94016" -236625,Wired Headphones,1,11.99,07/06/19 22:28,"291 14th St, Dallas, TX 75001" -236626,ThinkPad Laptop,1,999.99,07/19/19 12:00,"991 1st St, Dallas, TX 75001" -236627,Lightning Charging Cable,1,14.95,07/29/19 18:16,"429 Ridge St, Boston, MA 02215" -236628,Wired Headphones,1,11.99,07/08/19 19:57,"769 Jackson St, Atlanta, GA 30301" -236629,Apple Airpods Headphones,1,150,07/02/19 23:59,"682 Lake St, New York City, NY 10001" -236630,Wired Headphones,1,11.99,07/13/19 09:45,"962 12th St, Boston, MA 02215" -236631,Wired Headphones,1,11.99,07/31/19 19:14,"125 7th St, San Francisco, CA 94016" -236632,Apple Airpods Headphones,1,150,07/29/19 13:11,"295 Sunset St, Seattle, WA 98101" -,,,,, -236633,USB-C Charging Cable,1,11.95,07/20/19 09:46,"393 Johnson St, San Francisco, CA 94016" -236634,iPhone,1,700,07/30/19 17:12,"399 Spruce St, Portland, OR 97035" -236635,Bose SoundSport Headphones,1,99.99,07/08/19 12:56,"777 Pine St, New York City, NY 10001" -236636,AA Batteries (4-pack),1,3.84,07/03/19 16:47,"535 8th St, New York City, NY 10001" -236637,Lightning Charging Cable,1,14.95,07/10/19 12:19,"48 Walnut St, Dallas, TX 75001" -236638,Lightning Charging Cable,1,14.95,07/03/19 19:36,"409 Wilson St, Los Angeles, CA 90001" -236639,ThinkPad Laptop,1,999.99,07/19/19 20:34,"364 Forest St, San Francisco, CA 94016" -236640,27in 4K Gaming Monitor,1,389.99,07/30/19 19:29,"49 Hill St, San Francisco, CA 94016" -236641,Apple Airpods Headphones,1,150,07/03/19 18:03,"785 Spruce St, Portland, ME 04101" -236642,Wired Headphones,1,11.99,07/12/19 21:48,"813 Spruce St, New York City, NY 10001" -236642,Macbook Pro Laptop,1,1700,07/12/19 21:48,"813 Spruce St, New York City, NY 10001" -236643,Bose SoundSport Headphones,1,99.99,07/12/19 11:15,"466 South St, New York City, NY 10001" -236644,Bose SoundSport Headphones,1,99.99,07/18/19 20:54,"776 Lake St, Seattle, WA 98101" -236645,20in Monitor,1,109.99,07/30/19 22:27,"910 Adams St, Los Angeles, CA 90001" -236646,ThinkPad Laptop,1,999.99,07/22/19 08:57,"816 Center St, San Francisco, CA 94016" -236647,Flatscreen TV,1,300,07/07/19 19:09,"969 Hill St, Los Angeles, CA 90001" -236648,AA Batteries (4-pack),2,3.84,07/04/19 18:28,"640 4th St, San Francisco, CA 94016" -236649,Macbook Pro Laptop,1,1700,07/13/19 19:10,"664 Wilson St, New York City, NY 10001" -236650,Flatscreen TV,1,300,07/11/19 14:57,"89 Lake St, San Francisco, CA 94016" -236651,Lightning Charging Cable,1,14.95,07/15/19 11:23,"4 5th St, New York City, NY 10001" -236652,Bose SoundSport Headphones,1,99.99,07/14/19 19:18,"736 Maple St, San Francisco, CA 94016" -236653,USB-C Charging Cable,1,11.95,07/15/19 17:40,"684 Elm St, Austin, TX 73301" -236654,Bose SoundSport Headphones,1,99.99,07/16/19 22:25,"438 Highland St, San Francisco, CA 94016" -236655,Lightning Charging Cable,1,14.95,07/13/19 21:36,"540 13th St, San Francisco, CA 94016" -236656,USB-C Charging Cable,2,11.95,07/17/19 17:57,"238 Washington St, Austin, TX 73301" -236657,Apple Airpods Headphones,1,150,07/13/19 11:47,"813 5th St, San Francisco, CA 94016" -236658,ThinkPad Laptop,1,999.99,07/02/19 11:39,"494 North St, New York City, NY 10001" -236659,Wired Headphones,1,11.99,07/01/19 18:34,"375 5th St, New York City, NY 10001" -236660,AA Batteries (4-pack),1,3.84,07/23/19 12:38,"430 13th St, San Francisco, CA 94016" -236661,Google Phone,1,600,07/04/19 10:54,"373 5th St, Atlanta, GA 30301" -236661,Wired Headphones,1,11.99,07/04/19 10:54,"373 5th St, Atlanta, GA 30301" -236662,USB-C Charging Cable,1,11.95,07/09/19 14:41,"261 Forest St, Seattle, WA 98101" -236663,Wired Headphones,1,11.99,07/17/19 07:26,"562 North St, San Francisco, CA 94016" -236664,AAA Batteries (4-pack),1,2.99,07/03/19 08:18,"301 12th St, San Francisco, CA 94016" -236665,Wired Headphones,1,11.99,07/20/19 16:16,"694 Meadow St, Atlanta, GA 30301" -236666,20in Monitor,1,109.99,07/31/19 20:11,"866 14th St, San Francisco, CA 94016" -236667,AAA Batteries (4-pack),1,2.99,07/17/19 22:29,"249 Cherry St, Dallas, TX 75001" -236668,Wired Headphones,1,11.99,07/30/19 19:28,"727 Wilson St, Austin, TX 73301" -236669,AAA Batteries (4-pack),1,2.99,07/10/19 01:50,"743 9th St, New York City, NY 10001" -209921,USB-C Charging Cable,1,11.95,06/23/19 19:34,"950 Walnut St, Portland, ME 04101" -209922,Macbook Pro Laptop,1,1700.0,06/30/19 10:05,"80 4th St, San Francisco, CA 94016" -209923,ThinkPad Laptop,1,999.99,06/24/19 20:18,"402 Jackson St, Los Angeles, CA 90001" -209924,27in FHD Monitor,1,149.99,06/05/19 10:21,"560 10th St, Seattle, WA 98101" -209925,Bose SoundSport Headphones,1,99.99,06/25/19 18:58,"545 2nd St, San Francisco, CA 94016" -209926,Apple Airpods Headphones,1,150.0,06/28/19 20:04,"386 Lake St, Seattle, WA 98101" -209927,Lightning Charging Cable,1,14.95,06/28/19 00:07,"29 Lincoln St, Los Angeles, CA 90001" -209928,Apple Airpods Headphones,1,150.0,06/16/19 21:30,"350 9th St, New York City, NY 10001" -209929,Wired Headphones,1,11.99,06/28/19 10:56,"612 Meadow St, Portland, OR 97035" -209930,27in FHD Monitor,1,149.99,06/02/19 11:22,"625 Ridge St, Los Angeles, CA 90001" -209931,Apple Airpods Headphones,1,150.0,06/24/19 13:55,"761 14th St, New York City, NY 10001" -209932,Flatscreen TV,1,300.0,06/12/19 14:36,"858 8th St, Boston, MA 02215" -209933,AA Batteries (4-pack),1,3.84,06/07/19 15:39,"932 Lakeview St, San Francisco, CA 94016" -209934,AAA Batteries (4-pack),1,2.99,06/13/19 20:53,"387 Dogwood St, Boston, MA 02215" -209935,AAA Batteries (4-pack),1,2.99,06/09/19 11:13,"530 Cedar St, Boston, MA 02215" -209936,34in Ultrawide Monitor,1,379.99,06/15/19 12:21,"769 Dogwood St, Dallas, TX 75001" -209937,AA Batteries (4-pack),1,3.84,06/29/19 18:01,"675 Maple St, Dallas, TX 75001" -209938,iPhone,1,700.0,06/15/19 12:29,"766 Meadow St, Seattle, WA 98101" -209938,Wired Headphones,1,11.99,06/15/19 12:29,"766 Meadow St, Seattle, WA 98101" -209939,Google Phone,1,600.0,06/08/19 16:55,"313 South St, San Francisco, CA 94016" -209940,34in Ultrawide Monitor,1,379.99,06/26/19 15:24,"990 South St, Atlanta, GA 30301" -209941,Wired Headphones,1,11.99,06/27/19 11:18,"486 13th St, Boston, MA 02215" -209942,27in 4K Gaming Monitor,1,389.99,06/19/19 13:52,"874 Wilson St, Austin, TX 73301" -209943,AAA Batteries (4-pack),3,2.99,06/23/19 16:19,"158 Willow St, Los Angeles, CA 90001" -209944,27in FHD Monitor,1,149.99,06/02/19 19:10,"916 Lake St, Austin, TX 73301" -209945,AA Batteries (4-pack),1,3.84,06/28/19 08:53,"211 12th St, San Francisco, CA 94016" -209946,Google Phone,1,600.0,06/28/19 22:13,"66 Cherry St, San Francisco, CA 94016" -209947,Apple Airpods Headphones,1,150.0,06/06/19 22:41,"7 Lakeview St, San Francisco, CA 94016" -209948,Macbook Pro Laptop,1,1700.0,06/09/19 01:48,"101 Spruce St, Atlanta, GA 30301" -209949,Google Phone,1,600.0,06/23/19 07:45,"637 12th St, San Francisco, CA 94016" -209949,USB-C Charging Cable,1,11.95,06/23/19 07:45,"637 12th St, San Francisco, CA 94016" -209950,Wired Headphones,2,11.99,06/01/19 18:03,"689 Walnut St, Los Angeles, CA 90001" -209951,27in 4K Gaming Monitor,1,389.99,06/30/19 13:04,"998 Johnson St, New York City, NY 10001" -209952,20in Monitor,1,109.99,06/26/19 17:48,"314 Willow St, Dallas, TX 75001" -209953,Google Phone,1,600.0,06/16/19 16:59,"753 6th St, Dallas, TX 75001" -209954,iPhone,1,700.0,06/16/19 07:21,"599 2nd St, San Francisco, CA 94016" -209955,AA Batteries (4-pack),1,3.84,06/15/19 21:25,"549 2nd St, Atlanta, GA 30301" -209956,AA Batteries (4-pack),2,3.84,06/26/19 15:23,"910 Jackson St, Seattle, WA 98101" -209957,AA Batteries (4-pack),1,3.84,06/13/19 12:23,"545 Dogwood St, Los Angeles, CA 90001" -209958,Wired Headphones,1,11.99,06/06/19 12:09,"326 Hickory St, Los Angeles, CA 90001" -209959,USB-C Charging Cable,1,11.95,06/01/19 15:48,"88 River St, Atlanta, GA 30301" -209960,USB-C Charging Cable,1,11.95,06/22/19 11:53,"333 Sunset St, Dallas, TX 75001" -209960,AA Batteries (4-pack),1,3.84,06/22/19 11:53,"333 Sunset St, Dallas, TX 75001" -209961,iPhone,1,700.0,06/01/19 23:00,"482 South St, Austin, TX 73301" -209961,Lightning Charging Cable,1,14.95,06/01/19 23:00,"482 South St, Austin, TX 73301" -209962,USB-C Charging Cable,1,11.95,06/23/19 10:58,"441 Cherry St, New York City, NY 10001" -209963,Lightning Charging Cable,1,14.95,06/13/19 18:58,"551 Hill St, Boston, MA 02215" -209964,USB-C Charging Cable,2,11.95,06/11/19 14:30,"822 8th St, Los Angeles, CA 90001" -209965,20in Monitor,1,109.99,06/24/19 14:00,"910 North St, San Francisco, CA 94016" -209966,Lightning Charging Cable,1,14.95,06/20/19 09:46,"743 Adams St, New York City, NY 10001" -209967,AA Batteries (4-pack),2,3.84,06/21/19 21:18,"584 Chestnut St, San Francisco, CA 94016" -209968,Apple Airpods Headphones,1,150.0,06/23/19 13:06,"120 Church St, Dallas, TX 75001" -209969,Apple Airpods Headphones,1,150.0,06/21/19 15:55,"133 Sunset St, Los Angeles, CA 90001" -209970,AAA Batteries (4-pack),1,2.99,06/08/19 20:58,"181 Meadow St, Seattle, WA 98101" -209971,AA Batteries (4-pack),1,3.84,06/22/19 15:11,"440 Maple St, Dallas, TX 75001" -209972,Wired Headphones,1,11.99,06/14/19 17:09,"690 11th St, New York City, NY 10001" -209973,Bose SoundSport Headphones,1,99.99,06/06/19 12:20,"658 Highland St, Austin, TX 73301" -209974,USB-C Charging Cable,1,11.95,06/11/19 10:06,"555 9th St, New York City, NY 10001" -209975,AA Batteries (4-pack),3,3.84,06/05/19 21:25,"152 Johnson St, New York City, NY 10001" -209976,Apple Airpods Headphones,1,150.0,06/26/19 11:52,"966 Washington St, Atlanta, GA 30301" -209977,AA Batteries (4-pack),1,3.84,06/01/19 06:28,"96 14th St, Los Angeles, CA 90001" -209978,Lightning Charging Cable,1,14.95,06/05/19 13:50,"57 1st St, Los Angeles, CA 90001" -209979,USB-C Charging Cable,1,11.95,06/24/19 09:42,"979 2nd St, San Francisco, CA 94016" -209980,Bose SoundSport Headphones,1,99.99,06/28/19 20:28,"875 Forest St, New York City, NY 10001" -209981,iPhone,1,700.0,06/05/19 19:25,"898 14th St, Los Angeles, CA 90001" -209982,27in 4K Gaming Monitor,1,389.99,06/17/19 19:31,"315 Forest St, New York City, NY 10001" -209983,Macbook Pro Laptop,1,1700.0,06/22/19 16:25,"702 Center St, Seattle, WA 98101" -209984,USB-C Charging Cable,1,11.95,06/03/19 06:50,"36 7th St, Seattle, WA 98101" -209985,Apple Airpods Headphones,1,150.0,06/05/19 22:18,"54 12th St, Portland, OR 97035" -209986,20in Monitor,1,109.99,06/23/19 16:49,"11 Wilson St, New York City, NY 10001" -209987,AAA Batteries (4-pack),3,2.99,06/03/19 03:22,"76 River St, Los Angeles, CA 90001" -209988,Wired Headphones,1,11.99,06/27/19 18:04,"403 Main St, San Francisco, CA 94016" -209989,iPhone,1,700.0,06/19/19 23:34,"285 8th St, Los Angeles, CA 90001" -209990,Google Phone,1,600.0,06/16/19 20:31,"557 Wilson St, Austin, TX 73301" -209991,AAA Batteries (4-pack),1,2.99,06/02/19 19:00,"835 Chestnut St, Boston, MA 02215" -209992,Apple Airpods Headphones,1,150.0,06/21/19 07:51,"207 13th St, Boston, MA 02215" -209993,USB-C Charging Cable,1,11.95,06/04/19 18:14,"810 Meadow St, Dallas, TX 75001" -209994,Lightning Charging Cable,1,14.95,06/28/19 21:01,"679 Washington St, Boston, MA 02215" -209995,27in 4K Gaming Monitor,1,389.99,06/13/19 19:16,"890 Washington St, Austin, TX 73301" -209996,Google Phone,1,600.0,06/13/19 08:21,"965 Johnson St, Austin, TX 73301" -209997,AA Batteries (4-pack),1,3.84,06/19/19 11:23,"594 Lake St, New York City, NY 10001" -209998,Bose SoundSport Headphones,1,99.99,06/17/19 23:15,"988 Madison St, San Francisco, CA 94016" -209999,Bose SoundSport Headphones,1,99.99,06/16/19 08:37,"949 10th St, Dallas, TX 75001" -210000,iPhone,1,700.0,06/06/19 19:17,"534 Park St, Los Angeles, CA 90001" -210001,AA Batteries (4-pack),1,3.84,06/22/19 12:47,"171 Madison St, Portland, OR 97035" -210002,AAA Batteries (4-pack),1,2.99,06/26/19 13:28,"124 Park St, San Francisco, CA 94016" -210003,Bose SoundSport Headphones,1,99.99,06/26/19 15:09,"928 West St, Boston, MA 02215" -210004,AAA Batteries (4-pack),1,2.99,06/23/19 14:40,"868 8th St, San Francisco, CA 94016" -210005,AAA Batteries (4-pack),1,2.99,06/12/19 19:53,"532 Willow St, Atlanta, GA 30301" -210006,Lightning Charging Cable,1,14.95,06/21/19 19:02,"186 14th St, Boston, MA 02215" -210007,iPhone,1,700.0,06/30/19 09:06,"133 Highland St, Dallas, TX 75001" -210008,27in FHD Monitor,1,149.99,06/19/19 00:07,"433 14th St, Portland, OR 97035" -210009,Bose SoundSport Headphones,1,99.99,06/29/19 09:24,"35 West St, Los Angeles, CA 90001" -210010,USB-C Charging Cable,1,11.95,06/01/19 10:56,"469 Pine St, Austin, TX 73301" -210011,AA Batteries (4-pack),1,3.84,06/13/19 15:10,"615 Forest St, Atlanta, GA 30301" -210012,34in Ultrawide Monitor,1,379.99,06/04/19 17:21,"507 1st St, San Francisco, CA 94016" -210013,AA Batteries (4-pack),2,3.84,06/17/19 17:27,"820 5th St, New York City, NY 10001" -210014,Wired Headphones,1,11.99,06/28/19 17:08,"465 Meadow St, Portland, OR 97035" -210015,Wired Headphones,1,11.99,06/06/19 18:12,"559 11th St, Atlanta, GA 30301" -210016,AA Batteries (4-pack),2,3.84,06/22/19 22:17,"34 14th St, San Francisco, CA 94016" -210017,AAA Batteries (4-pack),1,2.99,06/18/19 17:03,"624 Adams St, Atlanta, GA 30301" -210018,Lightning Charging Cable,1,14.95,06/14/19 15:01,"684 Maple St, San Francisco, CA 94016" -210019,Lightning Charging Cable,1,14.95,06/27/19 17:10,"505 Maple St, New York City, NY 10001" -210020,Apple Airpods Headphones,1,150.0,06/26/19 15:02,"920 Washington St, Los Angeles, CA 90001" -210021,AAA Batteries (4-pack),1,2.99,06/07/19 23:22,"627 Spruce St, Boston, MA 02215" -210022,Lightning Charging Cable,1,14.95,06/29/19 08:19,"943 9th St, San Francisco, CA 94016" -210023,AA Batteries (4-pack),3,3.84,06/12/19 21:24,"838 Dogwood St, Los Angeles, CA 90001" -210024,AAA Batteries (4-pack),1,2.99,06/19/19 20:21,"649 7th St, Dallas, TX 75001" -210025,20in Monitor,1,109.99,06/02/19 16:59,"940 14th St, New York City, NY 10001" -210026,Bose SoundSport Headphones,1,99.99,06/12/19 13:42,"878 4th St, San Francisco, CA 94016" -210027,Macbook Pro Laptop,1,1700.0,06/05/19 14:35,"763 2nd St, Los Angeles, CA 90001" -210028,27in FHD Monitor,1,149.99,06/15/19 18:24,"297 12th St, Dallas, TX 75001" -210029,Bose SoundSport Headphones,1,99.99,06/05/19 15:21,"509 4th St, Dallas, TX 75001" -210030,Macbook Pro Laptop,1,1700.0,06/03/19 09:11,"479 Willow St, Los Angeles, CA 90001" -210031,AAA Batteries (4-pack),1,2.99,06/08/19 11:01,"641 Lincoln St, Portland, OR 97035" -210032,AA Batteries (4-pack),1,3.84,06/27/19 11:59,"569 4th St, Atlanta, GA 30301" -210033,AA Batteries (4-pack),2,3.84,06/15/19 18:25,"749 North St, New York City, NY 10001" -210034,27in 4K Gaming Monitor,1,389.99,06/14/19 18:07,"476 1st St, Atlanta, GA 30301" -210035,27in FHD Monitor,1,149.99,06/30/19 14:02,"386 1st St, Dallas, TX 75001" -210036,AA Batteries (4-pack),1,3.84,06/08/19 19:05,"598 Meadow St, Boston, MA 02215" -210037,AAA Batteries (4-pack),1,2.99,06/26/19 09:53,"524 6th St, New York City, NY 10001" -210038,ThinkPad Laptop,1,999.99,06/15/19 14:49,"443 Maple St, New York City, NY 10001" -210039,AAA Batteries (4-pack),1,2.99,06/10/19 09:08,"988 Maple St, Dallas, TX 75001" -210040,AA Batteries (4-pack),1,3.84,06/29/19 14:30,"711 1st St, San Francisco, CA 94016" -210041,27in FHD Monitor,1,149.99,06/17/19 21:31,"225 West St, Atlanta, GA 30301" -210042,Flatscreen TV,1,300.0,06/21/19 06:28,"325 Park St, Portland, OR 97035" -210043,Apple Airpods Headphones,1,150.0,06/16/19 23:20,"395 Main St, Seattle, WA 98101" -210044,Apple Airpods Headphones,1,150.0,06/14/19 00:28,"372 Spruce St, Portland, OR 97035" -210045,Bose SoundSport Headphones,1,99.99,06/03/19 19:58,"287 Cedar St, Boston, MA 02215" -210046,Apple Airpods Headphones,1,150.0,06/15/19 11:08,"816 1st St, San Francisco, CA 94016" -210047,34in Ultrawide Monitor,1,379.99,06/06/19 18:53,"973 Lakeview St, San Francisco, CA 94016" -210048,Wired Headphones,1,11.99,06/05/19 07:41,"314 Ridge St, San Francisco, CA 94016" -210049,ThinkPad Laptop,1,999.99,06/20/19 18:20,"993 6th St, San Francisco, CA 94016" -210050,Bose SoundSport Headphones,1,99.99,06/13/19 11:24,"271 13th St, New York City, NY 10001" -210051,iPhone,1,700.0,06/11/19 16:15,"784 Pine St, Austin, TX 73301" -210052,USB-C Charging Cable,1,11.95,06/18/19 14:01,"24 Main St, Seattle, WA 98101" -210053,Lightning Charging Cable,1,14.95,06/04/19 11:55,"68 Lake St, Los Angeles, CA 90001" -210054,Lightning Charging Cable,1,14.95,06/22/19 18:26,"175 6th St, Los Angeles, CA 90001" -210055,Apple Airpods Headphones,1,150.0,06/17/19 20:00,"575 Wilson St, Portland, ME 04101" -210056,Macbook Pro Laptop,1,1700.0,06/09/19 00:13,"171 Lakeview St, Seattle, WA 98101" -210057,AAA Batteries (4-pack),2,2.99,06/19/19 09:23,"82 2nd St, Boston, MA 02215" -210058,Lightning Charging Cable,1,14.95,06/12/19 14:17,"641 1st St, Austin, TX 73301" -210059,27in FHD Monitor,1,149.99,06/06/19 18:50,"902 Hickory St, Los Angeles, CA 90001" -210060,USB-C Charging Cable,1,11.95,06/06/19 20:24,"592 Elm St, Portland, OR 97035" -210061,Flatscreen TV,1,300.0,06/28/19 23:36,"975 Elm St, San Francisco, CA 94016" -210062,AAA Batteries (4-pack),1,2.99,06/04/19 14:37,"709 Church St, New York City, NY 10001" -210063,Lightning Charging Cable,1,14.95,06/19/19 23:19,"77 Highland St, Atlanta, GA 30301" -210064,Lightning Charging Cable,1,14.95,06/16/19 20:39,"101 Lincoln St, Atlanta, GA 30301" -210064,27in FHD Monitor,1,149.99,06/16/19 20:39,"101 Lincoln St, Atlanta, GA 30301" -210065,Lightning Charging Cable,1,14.95,06/20/19 15:11,"490 River St, San Francisco, CA 94016" -210066,iPhone,1,700.0,06/07/19 12:07,"691 Cherry St, Dallas, TX 75001" -210067,Wired Headphones,1,11.99,06/16/19 15:47,"471 Lincoln St, Los Angeles, CA 90001" -210068,AA Batteries (4-pack),1,3.84,06/09/19 16:40,"868 6th St, San Francisco, CA 94016" -210069,Google Phone,1,600.0,06/11/19 06:26,"743 2nd St, New York City, NY 10001" -210070,AAA Batteries (4-pack),1,2.99,06/19/19 17:05,"977 Johnson St, San Francisco, CA 94016" -210071,Lightning Charging Cable,1,14.95,06/10/19 17:31,"988 Pine St, Portland, OR 97035" -210072,AA Batteries (4-pack),2,3.84,06/19/19 16:07,"921 4th St, San Francisco, CA 94016" -210073,Bose SoundSport Headphones,1,99.99,06/14/19 17:21,"400 Johnson St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -210074,AA Batteries (4-pack),2,3.84,06/25/19 10:06,"794 Wilson St, Los Angeles, CA 90001" -210075,USB-C Charging Cable,1,11.95,06/07/19 14:29,"216 Main St, Los Angeles, CA 90001" -210076,AA Batteries (4-pack),1,3.84,06/16/19 22:58,"168 Washington St, New York City, NY 10001" -210077,Wired Headphones,1,11.99,06/15/19 07:33,"357 8th St, San Francisco, CA 94016" -210078,ThinkPad Laptop,1,999.99,06/08/19 17:12,"981 Chestnut St, Portland, OR 97035" -210079,LG Dryer,1,600.0,06/10/19 16:48,"516 Park St, San Francisco, CA 94016" -210080,AAA Batteries (4-pack),1,2.99,06/24/19 21:20,"280 Spruce St, Austin, TX 73301" -210081,Bose SoundSport Headphones,1,99.99,06/01/19 21:29,"354 Dogwood St, Atlanta, GA 30301" -210082,USB-C Charging Cable,1,11.95,06/02/19 15:26,"119 11th St, Los Angeles, CA 90001" -210083,Lightning Charging Cable,1,14.95,06/05/19 09:51,"468 12th St, Boston, MA 02215" -210084,ThinkPad Laptop,1,999.99,06/11/19 18:16,"696 Adams St, Los Angeles, CA 90001" -210085,27in FHD Monitor,1,149.99,06/08/19 19:13,"425 13th St, Austin, TX 73301" -210086,34in Ultrawide Monitor,1,379.99,06/02/19 21:09,"550 Lake St, San Francisco, CA 94016" -210087,Lightning Charging Cable,1,14.95,06/30/19 12:11,"720 Dogwood St, San Francisco, CA 94016" -210088,Wired Headphones,1,11.99,06/18/19 18:37,"619 7th St, Austin, TX 73301" -210089,USB-C Charging Cable,1,11.95,06/24/19 19:10,"177 8th St, Los Angeles, CA 90001" -210090,AAA Batteries (4-pack),3,2.99,06/29/19 15:43,"534 Johnson St, Portland, OR 97035" -210091,Macbook Pro Laptop,1,1700,06/03/19 05:39,"238 5th St, San Francisco, CA 94016" -210092,USB-C Charging Cable,1,11.95,06/02/19 19:52,"359 Jefferson St, San Francisco, CA 94016" -210093,Apple Airpods Headphones,1,150,06/04/19 08:52,"2 Hill St, San Francisco, CA 94016" -210094,AAA Batteries (4-pack),1,2.99,06/06/19 11:55,"968 2nd St, Austin, TX 73301" -210095,AAA Batteries (4-pack),2,2.99,06/27/19 14:01,"930 North St, Atlanta, GA 30301" -210096,27in FHD Monitor,1,149.99,06/10/19 10:17,"126 8th St, Atlanta, GA 30301" -210097,Lightning Charging Cable,1,14.95,06/07/19 12:26,"399 Spruce St, Seattle, WA 98101" -210098,AAA Batteries (4-pack),1,2.99,06/06/19 00:11,"587 Adams St, San Francisco, CA 94016" -210099,Lightning Charging Cable,2,14.95,06/17/19 20:56,"362 Highland St, Seattle, WA 98101" -210100,Apple Airpods Headphones,1,150,06/27/19 09:30,"550 7th St, New York City, NY 10001" -210101,Vareebadd Phone,1,400,06/05/19 13:53,"944 Hickory St, Los Angeles, CA 90001" -210102,Wired Headphones,1,11.99,06/17/19 09:05,"275 Forest St, San Francisco, CA 94016" -210103,Google Phone,1,600,06/01/19 17:58,"626 12th St, Los Angeles, CA 90001" -210104,Bose SoundSport Headphones,1,99.99,06/14/19 16:51,"324 Lake St, Los Angeles, CA 90001" -210105,AA Batteries (4-pack),3,3.84,06/19/19 20:22,"445 11th St, Boston, MA 02215" -210106,Wired Headphones,2,11.99,06/12/19 20:04,"531 Johnson St, Austin, TX 73301" -210107,Lightning Charging Cable,1,14.95,06/13/19 07:19,"325 Jefferson St, Los Angeles, CA 90001" -210108,27in FHD Monitor,1,149.99,06/25/19 12:37,"859 Center St, San Francisco, CA 94016" -210109,Lightning Charging Cable,1,14.95,06/24/19 12:04,"820 West St, Boston, MA 02215" -210110,Apple Airpods Headphones,1,150,06/13/19 18:26,"194 Hill St, Portland, OR 97035" -210111,Lightning Charging Cable,1,14.95,06/12/19 20:58,"792 9th St, Boston, MA 02215" -210112,USB-C Charging Cable,1,11.95,06/05/19 21:44,"838 Center St, San Francisco, CA 94016" -210113,USB-C Charging Cable,1,11.95,06/30/19 18:44,"258 Hickory St, Seattle, WA 98101" -210114,Wired Headphones,1,11.99,06/20/19 07:19,"559 Walnut St, San Francisco, CA 94016" -210115,Apple Airpods Headphones,1,150,06/04/19 19:16,"85 6th St, Boston, MA 02215" -210116,Bose SoundSport Headphones,1,99.99,06/13/19 21:52,"65 Elm St, San Francisco, CA 94016" -210117,Bose SoundSport Headphones,1,99.99,06/25/19 17:23,"371 9th St, New York City, NY 10001" -210118,Bose SoundSport Headphones,1,99.99,06/23/19 12:29,"208 1st St, San Francisco, CA 94016" -210119,Wired Headphones,2,11.99,06/24/19 18:02,"800 River St, Los Angeles, CA 90001" -210120,AA Batteries (4-pack),1,3.84,06/28/19 11:00,"316 Sunset St, Dallas, TX 75001" -210121,Wired Headphones,1,11.99,06/10/19 17:13,"330 Lake St, Boston, MA 02215" -210122,AA Batteries (4-pack),1,3.84,06/27/19 21:23,"448 Jefferson St, Dallas, TX 75001" -210123,AAA Batteries (4-pack),1,2.99,06/01/19 22:36,"194 12th St, San Francisco, CA 94016" -210124,Wired Headphones,1,11.99,06/13/19 10:16,"256 Washington St, Portland, ME 04101" -210125,Apple Airpods Headphones,1,150,06/01/19 11:02,"889 Sunset St, Boston, MA 02215" -210126,20in Monitor,1,109.99,06/21/19 18:51,"803 Pine St, Los Angeles, CA 90001" -210127,AA Batteries (4-pack),1,3.84,06/15/19 11:23,"592 Jackson St, San Francisco, CA 94016" -210128,Lightning Charging Cable,1,14.95,06/08/19 07:20,"880 Jackson St, New York City, NY 10001" -210129,USB-C Charging Cable,1,11.95,06/11/19 12:13,"36 6th St, Atlanta, GA 30301" -210130,AAA Batteries (4-pack),5,2.99,06/11/19 10:26,"714 Lincoln St, San Francisco, CA 94016" -210131,AA Batteries (4-pack),1,3.84,06/29/19 10:16,"653 Maple St, San Francisco, CA 94016" -210132,Apple Airpods Headphones,2,150,06/18/19 21:24,"127 5th St, San Francisco, CA 94016" -210133,AA Batteries (4-pack),2,3.84,06/26/19 19:19,"712 Park St, Seattle, WA 98101" -210134,AA Batteries (4-pack),1,3.84,06/17/19 11:40,"362 Chestnut St, Portland, OR 97035" -210135,Wired Headphones,2,11.99,06/26/19 23:56,"557 Dogwood St, San Francisco, CA 94016" -210136,Wired Headphones,1,11.99,06/12/19 22:13,"554 Dogwood St, Dallas, TX 75001" -210137,AA Batteries (4-pack),1,3.84,06/18/19 20:05,"479 2nd St, Los Angeles, CA 90001" -210138,27in 4K Gaming Monitor,1,389.99,06/25/19 17:58,"445 Wilson St, San Francisco, CA 94016" -210139,AA Batteries (4-pack),1,3.84,06/02/19 20:55,"572 Elm St, Boston, MA 02215" -210140,AA Batteries (4-pack),1,3.84,06/18/19 13:54,"746 Lincoln St, Los Angeles, CA 90001" -210141,Bose SoundSport Headphones,1,99.99,06/15/19 18:45,"6 Lake St, Los Angeles, CA 90001" -210142,Flatscreen TV,1,300,06/24/19 18:26,"669 7th St, San Francisco, CA 94016" -210143,Bose SoundSport Headphones,1,99.99,06/25/19 10:05,"777 Ridge St, Atlanta, GA 30301" -210144,27in 4K Gaming Monitor,1,389.99,06/17/19 15:19,"255 5th St, Portland, OR 97035" -210144,AA Batteries (4-pack),1,3.84,06/17/19 15:19,"255 5th St, Portland, OR 97035" -210145,20in Monitor,1,109.99,06/28/19 22:20,"860 Washington St, Atlanta, GA 30301" -210146,AA Batteries (4-pack),1,3.84,06/25/19 20:20,"199 7th St, San Francisco, CA 94016" -210147,Bose SoundSport Headphones,1,99.99,06/12/19 22:37,"144 Maple St, Austin, TX 73301" -210148,20in Monitor,1,109.99,06/16/19 07:24,"710 Washington St, Atlanta, GA 30301" -210148,Wired Headphones,1,11.99,06/16/19 07:24,"710 Washington St, Atlanta, GA 30301" -210149,USB-C Charging Cable,1,11.95,06/14/19 17:09,"978 Walnut St, Atlanta, GA 30301" -210150,27in FHD Monitor,1,149.99,06/11/19 13:10,"149 Pine St, San Francisco, CA 94016" -210151,USB-C Charging Cable,1,11.95,06/10/19 21:51,"655 1st St, Los Angeles, CA 90001" -210152,AAA Batteries (4-pack),2,2.99,06/20/19 22:11,"937 10th St, Portland, OR 97035" -210153,Lightning Charging Cable,2,14.95,06/09/19 14:58,"305 Cherry St, New York City, NY 10001" -210154,iPhone,1,700,06/02/19 16:07,"273 Madison St, New York City, NY 10001" -210155,AAA Batteries (4-pack),1,2.99,06/08/19 18:33,"636 West St, New York City, NY 10001" -210156,USB-C Charging Cable,1,11.95,06/02/19 11:37,"333 13th St, Los Angeles, CA 90001" -210157,AA Batteries (4-pack),1,3.84,06/20/19 08:46,"697 West St, San Francisco, CA 94016" -210158,27in 4K Gaming Monitor,1,389.99,06/12/19 11:50,"65 Hill St, San Francisco, CA 94016" -210159,Wired Headphones,1,11.99,06/12/19 13:43,"488 Johnson St, Dallas, TX 75001" -210160,Macbook Pro Laptop,1,1700,06/18/19 13:22,"711 Ridge St, New York City, NY 10001" -210161,Apple Airpods Headphones,1,150,06/27/19 19:24,"549 5th St, Boston, MA 02215" -210162,Macbook Pro Laptop,1,1700,06/20/19 21:02,"237 Maple St, Seattle, WA 98101" -210163,USB-C Charging Cable,1,11.95,06/16/19 13:57,"584 Meadow St, San Francisco, CA 94016" -210164,AAA Batteries (4-pack),1,2.99,06/06/19 20:05,"861 Walnut St, Portland, OR 97035" -210165,27in FHD Monitor,1,149.99,06/18/19 16:43,"569 River St, Los Angeles, CA 90001" -210166,Bose SoundSport Headphones,1,99.99,06/21/19 21:33,"883 Church St, Austin, TX 73301" -210167,Apple Airpods Headphones,1,150,06/23/19 14:57,"433 13th St, Dallas, TX 75001" -210168,USB-C Charging Cable,1,11.95,06/09/19 11:28,"690 West St, Seattle, WA 98101" -210169,AA Batteries (4-pack),1,3.84,06/26/19 19:04,"890 7th St, San Francisco, CA 94016" -210170,Vareebadd Phone,1,400,06/05/19 20:00,"405 Pine St, Seattle, WA 98101" -210171,Google Phone,1,600,06/30/19 13:59,"503 Dogwood St, New York City, NY 10001" -210172,USB-C Charging Cable,1,11.95,06/15/19 20:59,"661 Ridge St, New York City, NY 10001" -210173,20in Monitor,1,109.99,06/29/19 02:07,"240 Sunset St, Boston, MA 02215" -210174,27in FHD Monitor,1,149.99,06/05/19 15:22,"971 Madison St, San Francisco, CA 94016" -210175,AAA Batteries (4-pack),1,2.99,06/26/19 13:56,"945 Lincoln St, Austin, TX 73301" -210176,Google Phone,1,600,06/28/19 17:53,"98 Wilson St, Los Angeles, CA 90001" -210177,Wired Headphones,1,11.99,06/26/19 19:23,"831 Madison St, Los Angeles, CA 90001" -210178,34in Ultrawide Monitor,1,379.99,06/14/19 20:06,"2 Lake St, Boston, MA 02215" -210179,Google Phone,1,600,06/07/19 15:42,"143 Willow St, Boston, MA 02215" -210180,27in FHD Monitor,1,149.99,06/18/19 18:59,"227 Forest St, New York City, NY 10001" -210181,iPhone,1,700,06/01/19 10:30,"236 Madison St, Dallas, TX 75001" -210182,AA Batteries (4-pack),1,3.84,06/20/19 17:56,"396 Walnut St, Portland, OR 97035" -210183,AAA Batteries (4-pack),2,2.99,06/09/19 01:53,"201 Lake St, Boston, MA 02215" -210184,Wired Headphones,1,11.99,06/27/19 21:49,"551 Madison St, San Francisco, CA 94016" -210185,iPhone,1,700,06/27/19 08:16,"338 Meadow St, Portland, OR 97035" -210186,USB-C Charging Cable,1,11.95,06/04/19 15:47,"197 11th St, San Francisco, CA 94016" -210187,Lightning Charging Cable,2,14.95,06/28/19 15:36,"444 Lincoln St, Boston, MA 02215" -210188,AAA Batteries (4-pack),1,2.99,06/11/19 14:31,"462 Meadow St, Boston, MA 02215" -210189,iPhone,1,700,06/03/19 17:22,"430 Wilson St, New York City, NY 10001" -210190,34in Ultrawide Monitor,1,379.99,06/14/19 11:28,"475 Sunset St, Los Angeles, CA 90001" -210191,Flatscreen TV,1,300,06/27/19 18:47,"90 Hickory St, Atlanta, GA 30301" -210192,Apple Airpods Headphones,1,150,06/28/19 20:20,"114 Lincoln St, Dallas, TX 75001" -210193,34in Ultrawide Monitor,1,379.99,06/05/19 12:36,"902 Maple St, New York City, NY 10001" -210194,USB-C Charging Cable,1,11.95,06/30/19 15:43,"518 Chestnut St, Los Angeles, CA 90001" -210195,Apple Airpods Headphones,1,150,06/26/19 22:50,"343 Adams St, Dallas, TX 75001" -210196,AAA Batteries (4-pack),1,2.99,06/28/19 19:54,"505 Cherry St, Seattle, WA 98101" -210197,LG Dryer,1,600.0,06/11/19 18:50,"187 8th St, San Francisco, CA 94016" -210198,27in 4K Gaming Monitor,1,389.99,06/20/19 20:33,"437 Lakeview St, Seattle, WA 98101" -210199,Google Phone,1,600,06/10/19 11:14,"682 Madison St, San Francisco, CA 94016" -210200,34in Ultrawide Monitor,1,379.99,06/14/19 20:33,"688 Lincoln St, Dallas, TX 75001" -210201,Bose SoundSport Headphones,2,99.99,06/18/19 07:20,"135 14th St, Austin, TX 73301" -210202,Bose SoundSport Headphones,1,99.99,06/28/19 13:26,"734 Highland St, Los Angeles, CA 90001" -210203,Bose SoundSport Headphones,1,99.99,06/24/19 17:10,"172 Highland St, Atlanta, GA 30301" -210204,Apple Airpods Headphones,1,150,06/29/19 12:20,"72 Lake St, New York City, NY 10001" -210205,Flatscreen TV,1,300,06/08/19 16:00,"28 13th St, San Francisco, CA 94016" -210206,Wired Headphones,1,11.99,06/07/19 17:59,"994 Walnut St, Atlanta, GA 30301" -210207,Google Phone,1,600,06/16/19 09:47,"40 11th St, Portland, OR 97035" -210207,USB-C Charging Cable,1,11.95,06/16/19 09:47,"40 11th St, Portland, OR 97035" -210208,USB-C Charging Cable,2,11.95,06/02/19 19:37,"591 8th St, Dallas, TX 75001" -210209,ThinkPad Laptop,1,999.99,06/09/19 18:18,"322 11th St, San Francisco, CA 94016" -210210,LG Washing Machine,1,600.0,06/26/19 19:07,"948 Maple St, Boston, MA 02215" -210211,AA Batteries (4-pack),1,3.84,06/20/19 12:33,"358 Park St, Austin, TX 73301" -210212,AA Batteries (4-pack),1,3.84,06/29/19 11:22,"715 11th St, Los Angeles, CA 90001" -210213,Bose SoundSport Headphones,1,99.99,06/05/19 11:53,"936 Maple St, Los Angeles, CA 90001" -210214,27in FHD Monitor,1,149.99,06/18/19 20:00,"847 9th St, Los Angeles, CA 90001" -210215,AAA Batteries (4-pack),1,2.99,06/28/19 20:01,"106 North St, Atlanta, GA 30301" -210216,AAA Batteries (4-pack),1,2.99,06/14/19 18:52,"445 Highland St, Atlanta, GA 30301" -210217,20in Monitor,1,109.99,06/16/19 16:58,"735 Church St, Atlanta, GA 30301" -210218,Lightning Charging Cable,1,14.95,06/01/19 12:12,"52 9th St, New York City, NY 10001" -210219,USB-C Charging Cable,1,11.95,06/12/19 13:55,"896 Lakeview St, Los Angeles, CA 90001" -210220,AAA Batteries (4-pack),1,2.99,06/24/19 14:05,"601 Center St, Portland, OR 97035" -210221,20in Monitor,1,109.99,06/11/19 11:27,"285 1st St, Boston, MA 02215" -210222,34in Ultrawide Monitor,1,379.99,06/16/19 10:57,"83 Lincoln St, Los Angeles, CA 90001" -210223,AAA Batteries (4-pack),1,2.99,06/24/19 09:30,"566 South St, New York City, NY 10001" -210224,Apple Airpods Headphones,1,150,06/09/19 20:57,"283 Lakeview St, Atlanta, GA 30301" -210225,USB-C Charging Cable,1,11.95,06/01/19 16:58,"993 Hickory St, Seattle, WA 98101" -210226,Flatscreen TV,1,300,06/05/19 08:34,"295 Sunset St, San Francisco, CA 94016" -210227,USB-C Charging Cable,1,11.95,06/27/19 09:50,"479 4th St, Dallas, TX 75001" -210228,AA Batteries (4-pack),1,3.84,06/11/19 06:23,"178 Dogwood St, Portland, OR 97035" -210229,Lightning Charging Cable,1,14.95,06/07/19 08:00,"252 Johnson St, San Francisco, CA 94016" -210230,USB-C Charging Cable,1,11.95,06/03/19 21:52,"502 Hill St, Los Angeles, CA 90001" -210231,Wired Headphones,1,11.99,06/04/19 11:08,"650 Johnson St, Boston, MA 02215" -210232,Wired Headphones,1,11.99,06/06/19 16:43,"969 Forest St, Dallas, TX 75001" -210233,AA Batteries (4-pack),1,3.84,06/12/19 11:52,"240 Lincoln St, Seattle, WA 98101" -210234,Lightning Charging Cable,1,14.95,06/17/19 19:23,"202 4th St, Atlanta, GA 30301" -210235,34in Ultrawide Monitor,1,379.99,06/18/19 15:14,"922 Ridge St, Boston, MA 02215" -210236,Wired Headphones,1,11.99,06/09/19 11:17,"246 Lake St, San Francisco, CA 94016" -210237,Wired Headphones,1,11.99,06/04/19 08:22,"704 8th St, Atlanta, GA 30301" -210238,AAA Batteries (4-pack),1,2.99,06/05/19 13:35,"517 Adams St, Seattle, WA 98101" -210239,27in 4K Gaming Monitor,1,389.99,06/19/19 18:03,"139 Pine St, San Francisco, CA 94016" -210240,AAA Batteries (4-pack),1,2.99,06/04/19 13:36,"828 Pine St, San Francisco, CA 94016" -210241,Apple Airpods Headphones,1,150,06/04/19 13:49,"737 Jackson St, San Francisco, CA 94016" -210242,USB-C Charging Cable,2,11.95,06/03/19 19:17,"83 Sunset St, Austin, TX 73301" -210243,AA Batteries (4-pack),1,3.84,06/07/19 13:50,"970 Lincoln St, San Francisco, CA 94016" -210244,Lightning Charging Cable,1,14.95,06/20/19 22:51,"229 Sunset St, Austin, TX 73301" -210245,AAA Batteries (4-pack),1,2.99,06/14/19 12:31,"711 1st St, Los Angeles, CA 90001" -210246,Lightning Charging Cable,1,14.95,06/02/19 23:35,"809 Washington St, Portland, OR 97035" -210247,Lightning Charging Cable,1,14.95,06/21/19 16:30,"370 1st St, Los Angeles, CA 90001" -210248,AA Batteries (4-pack),2,3.84,06/16/19 22:58,"165 Highland St, Austin, TX 73301" -210249,Google Phone,1,600,06/10/19 05:05,"869 Johnson St, San Francisco, CA 94016" -210250,Wired Headphones,1,11.99,06/26/19 22:26,"977 Ridge St, Los Angeles, CA 90001" -,,,,, -210251,USB-C Charging Cable,1,11.95,06/03/19 21:02,"110 Dogwood St, New York City, NY 10001" -210252,AA Batteries (4-pack),1,3.84,06/15/19 18:53,"10 Center St, Los Angeles, CA 90001" -210253,Google Phone,1,600,06/11/19 20:40,"963 Lakeview St, Los Angeles, CA 90001" -210253,USB-C Charging Cable,1,11.95,06/11/19 20:40,"963 Lakeview St, Los Angeles, CA 90001" -210254,ThinkPad Laptop,1,999.99,06/14/19 13:24,"464 6th St, San Francisco, CA 94016" -210255,USB-C Charging Cable,1,11.95,06/09/19 21:56,"274 5th St, New York City, NY 10001" -210256,Lightning Charging Cable,1,14.95,06/01/19 18:27,"740 Adams St, San Francisco, CA 94016" -210257,34in Ultrawide Monitor,1,379.99,06/16/19 13:33,"302 Jefferson St, Boston, MA 02215" -210258,34in Ultrawide Monitor,1,379.99,06/01/19 14:03,"82 Cherry St, Austin, TX 73301" -210259,Wired Headphones,1,11.99,06/05/19 15:08,"832 Hill St, San Francisco, CA 94016" -210260,AA Batteries (4-pack),1,3.84,06/22/19 15:59,"916 9th St, San Francisco, CA 94016" -210261,AA Batteries (4-pack),2,3.84,06/30/19 10:08,"466 Ridge St, Atlanta, GA 30301" -210262,AAA Batteries (4-pack),1,2.99,06/22/19 19:50,"912 Meadow St, San Francisco, CA 94016" -210263,USB-C Charging Cable,1,11.95,06/29/19 00:45,"789 Johnson St, Los Angeles, CA 90001" -210264,Lightning Charging Cable,1,14.95,06/25/19 11:42,"780 Lake St, New York City, NY 10001" -210265,27in FHD Monitor,1,149.99,06/12/19 01:22,"620 Highland St, Dallas, TX 75001" -210266,27in FHD Monitor,1,149.99,06/14/19 11:43,"282 Elm St, Los Angeles, CA 90001" -210267,USB-C Charging Cable,1,11.95,06/24/19 10:23,"946 Johnson St, Los Angeles, CA 90001" -210268,AA Batteries (4-pack),1,3.84,06/04/19 18:59,"498 Park St, Dallas, TX 75001" -210269,Bose SoundSport Headphones,1,99.99,06/15/19 21:31,"212 Wilson St, Los Angeles, CA 90001" -210270,Lightning Charging Cable,1,14.95,06/06/19 12:34,"175 Sunset St, Los Angeles, CA 90001" -210271,Vareebadd Phone,1,400,06/15/19 16:00,"318 Church St, San Francisco, CA 94016" -210271,USB-C Charging Cable,1,11.95,06/15/19 16:00,"318 Church St, San Francisco, CA 94016" -210272,USB-C Charging Cable,1,11.95,06/19/19 05:46,"726 Meadow St, San Francisco, CA 94016" -210273,AA Batteries (4-pack),2,3.84,06/19/19 13:42,"391 Highland St, San Francisco, CA 94016" -210274,27in FHD Monitor,1,149.99,06/22/19 21:48,"436 West St, Atlanta, GA 30301" -210274,Apple Airpods Headphones,1,150,06/22/19 21:48,"436 West St, Atlanta, GA 30301" -210275,Apple Airpods Headphones,1,150,06/21/19 09:15,"63 Forest St, Dallas, TX 75001" -210276,ThinkPad Laptop,1,999.99,06/21/19 20:16,"719 Cedar St, San Francisco, CA 94016" -210277,Lightning Charging Cable,1,14.95,06/16/19 14:39,"294 Johnson St, Los Angeles, CA 90001" -210278,Flatscreen TV,1,300,06/20/19 11:22,"897 Walnut St, Austin, TX 73301" -210279,Flatscreen TV,1,300,06/14/19 09:02,"809 Spruce St, San Francisco, CA 94016" -210280,Bose SoundSport Headphones,1,99.99,06/30/19 21:08,"617 8th St, New York City, NY 10001" -210281,34in Ultrawide Monitor,1,379.99,06/02/19 20:09,"230 9th St, Dallas, TX 75001" -210282,ThinkPad Laptop,1,999.99,06/02/19 19:35,"572 Jefferson St, San Francisco, CA 94016" -210283,Wired Headphones,1,11.99,06/24/19 21:15,"774 West St, San Francisco, CA 94016" -210284,USB-C Charging Cable,1,11.95,06/16/19 21:00,"154 Johnson St, Boston, MA 02215" -210285,AAA Batteries (4-pack),3,2.99,06/14/19 18:49,"333 Elm St, Boston, MA 02215" -210285,Apple Airpods Headphones,1,150,06/14/19 18:49,"333 Elm St, Boston, MA 02215" -210286,USB-C Charging Cable,1,11.95,06/30/19 17:11,"300 Elm St, Los Angeles, CA 90001" -210287,Bose SoundSport Headphones,1,99.99,06/17/19 07:28,"244 11th St, San Francisco, CA 94016" -210288,AAA Batteries (4-pack),2,2.99,06/11/19 06:44,"439 Johnson St, San Francisco, CA 94016" -210289,27in 4K Gaming Monitor,1,389.99,06/22/19 23:18,"634 Church St, Los Angeles, CA 90001" -210290,Apple Airpods Headphones,1,150,06/15/19 10:47,"322 Main St, San Francisco, CA 94016" -210291,AA Batteries (4-pack),3,3.84,06/29/19 10:09,"706 Sunset St, New York City, NY 10001" -210292,Macbook Pro Laptop,2,1700,06/08/19 09:00,"953 Ridge St, San Francisco, CA 94016" -210293,AA Batteries (4-pack),2,3.84,06/17/19 13:47,"934 North St, Seattle, WA 98101" -210294,iPhone,1,700,06/06/19 15:00,"771 Chestnut St, Portland, OR 97035" -210295,Apple Airpods Headphones,1,150,06/17/19 18:35,"944 Meadow St, Los Angeles, CA 90001" -210296,27in FHD Monitor,1,149.99,06/19/19 13:41,"74 Lincoln St, Los Angeles, CA 90001" -210297,AAA Batteries (4-pack),2,2.99,06/08/19 19:59,"336 4th St, Los Angeles, CA 90001" -210298,USB-C Charging Cable,1,11.95,06/11/19 20:42,"429 10th St, Dallas, TX 75001" -210299,Apple Airpods Headphones,1,150,06/06/19 14:26,"454 9th St, San Francisco, CA 94016" -210300,27in FHD Monitor,1,149.99,06/12/19 10:12,"145 Hill St, San Francisco, CA 94016" -210301,27in FHD Monitor,1,149.99,06/10/19 16:20,"361 Meadow St, Los Angeles, CA 90001" -210302,Apple Airpods Headphones,1,150,06/24/19 15:52,"800 8th St, Austin, TX 73301" -210303,Vareebadd Phone,1,400,06/02/19 19:38,"578 7th St, Los Angeles, CA 90001" -210304,Apple Airpods Headphones,1,150,06/16/19 19:39,"357 4th St, San Francisco, CA 94016" -210305,Macbook Pro Laptop,1,1700,06/06/19 06:49,"51 Chestnut St, Los Angeles, CA 90001" -210306,20in Monitor,1,109.99,06/19/19 19:09,"785 Forest St, New York City, NY 10001" -210307,27in FHD Monitor,1,149.99,06/03/19 11:54,"866 4th St, Los Angeles, CA 90001" -210308,AAA Batteries (4-pack),1,2.99,06/19/19 17:35,"433 Lake St, Los Angeles, CA 90001" -210309,34in Ultrawide Monitor,1,379.99,06/26/19 10:58,"676 Cedar St, Austin, TX 73301" -210310,USB-C Charging Cable,1,11.95,06/12/19 10:27,"268 Washington St, New York City, NY 10001" -210310,Flatscreen TV,1,300,06/12/19 10:27,"268 Washington St, New York City, NY 10001" -210311,Apple Airpods Headphones,1,150,06/25/19 20:48,"610 Main St, Los Angeles, CA 90001" -210312,Apple Airpods Headphones,1,150,06/19/19 10:42,"788 1st St, Portland, OR 97035" -210313,AA Batteries (4-pack),1,3.84,06/09/19 20:04,"235 1st St, San Francisco, CA 94016" -210314,Wired Headphones,1,11.99,06/06/19 15:31,"345 Spruce St, Los Angeles, CA 90001" -210315,Lightning Charging Cable,1,14.95,06/22/19 18:13,"248 River St, Atlanta, GA 30301" -210316,Flatscreen TV,1,300,06/14/19 00:35,"676 River St, Dallas, TX 75001" -210317,27in FHD Monitor,1,149.99,06/25/19 10:48,"18 Dogwood St, San Francisco, CA 94016" -210318,34in Ultrawide Monitor,1,379.99,06/22/19 23:07,"344 Highland St, Los Angeles, CA 90001" -210319,USB-C Charging Cable,1,11.95,06/20/19 18:18,"228 Forest St, Seattle, WA 98101" -210320,Apple Airpods Headphones,1,150,06/22/19 10:23,"465 Madison St, San Francisco, CA 94016" -210320,AAA Batteries (4-pack),1,2.99,06/22/19 10:23,"465 Madison St, San Francisco, CA 94016" -210321,Google Phone,1,600,06/16/19 10:34,"702 1st St, Atlanta, GA 30301" -210322,Bose SoundSport Headphones,1,99.99,06/06/19 19:01,"855 2nd St, Los Angeles, CA 90001" -210323,AA Batteries (4-pack),2,3.84,06/06/19 15:46,"500 12th St, Portland, ME 04101" -210324,AAA Batteries (4-pack),2,2.99,06/23/19 14:50,"436 Walnut St, San Francisco, CA 94016" -210325,Flatscreen TV,1,300,06/21/19 08:26,"190 West St, Seattle, WA 98101" -210326,AA Batteries (4-pack),1,3.84,06/16/19 12:23,"596 Park St, Atlanta, GA 30301" -210327,USB-C Charging Cable,1,11.95,06/29/19 19:02,"64 1st St, Los Angeles, CA 90001" -210328,Macbook Pro Laptop,1,1700,06/29/19 11:25,"586 Highland St, Austin, TX 73301" -210329,AAA Batteries (4-pack),1,2.99,06/03/19 12:14,"261 West St, Atlanta, GA 30301" -210330,Apple Airpods Headphones,1,150,06/16/19 22:14,"772 Spruce St, Boston, MA 02215" -210331,iPhone,1,700,06/20/19 20:23,"834 Ridge St, New York City, NY 10001" -210332,Wired Headphones,1,11.99,06/01/19 08:25,"285 12th St, Los Angeles, CA 90001" -210333,Bose SoundSport Headphones,1,99.99,06/17/19 12:52,"924 Jefferson St, Portland, OR 97035" -210334,Lightning Charging Cable,1,14.95,06/20/19 20:10,"895 Washington St, Boston, MA 02215" -210335,27in FHD Monitor,1,149.99,06/15/19 19:33,"403 Cedar St, San Francisco, CA 94016" -210336,Wired Headphones,1,11.99,06/17/19 14:43,"159 Washington St, Seattle, WA 98101" -210337,Lightning Charging Cable,2,14.95,06/05/19 18:37,"922 Wilson St, Austin, TX 73301" -210338,AAA Batteries (4-pack),1,2.99,06/13/19 13:07,"595 Jackson St, Boston, MA 02215" -210339,Bose SoundSport Headphones,1,99.99,06/26/19 08:08,"721 2nd St, San Francisco, CA 94016" -210340,AA Batteries (4-pack),1,3.84,06/15/19 20:27,"34 10th St, Boston, MA 02215" -210341,USB-C Charging Cable,1,11.95,06/15/19 09:25,"766 Wilson St, Atlanta, GA 30301" -210342,Wired Headphones,1,11.99,06/14/19 12:17,"846 Hill St, San Francisco, CA 94016" -210343,Wired Headphones,1,11.99,06/03/19 12:04,"879 Hickory St, San Francisco, CA 94016" -210344,Apple Airpods Headphones,1,150,06/24/19 15:59,"289 Cedar St, San Francisco, CA 94016" -210345,AA Batteries (4-pack),1,3.84,06/01/19 09:44,"73 Ridge St, Austin, TX 73301" -210346,Wired Headphones,1,11.99,06/24/19 21:20,"814 Spruce St, Los Angeles, CA 90001" -210347,Wired Headphones,1,11.99,06/19/19 21:45,"243 11th St, Dallas, TX 75001" -210348,Google Phone,1,600,06/01/19 19:52,"891 Lake St, Dallas, TX 75001" -210349,USB-C Charging Cable,1,11.95,06/29/19 22:05,"115 Adams St, Los Angeles, CA 90001" -210349,Macbook Pro Laptop,1,1700,06/29/19 22:05,"115 Adams St, Los Angeles, CA 90001" -210350,AAA Batteries (4-pack),1,2.99,06/03/19 20:11,"530 Lincoln St, San Francisco, CA 94016" -210351,Bose SoundSport Headphones,1,99.99,06/01/19 20:48,"543 Park St, San Francisco, CA 94016" -210351,USB-C Charging Cable,1,11.95,06/01/19 20:48,"543 Park St, San Francisco, CA 94016" -210352,USB-C Charging Cable,1,11.95,06/03/19 14:58,"293 South St, San Francisco, CA 94016" -210353,USB-C Charging Cable,1,11.95,06/17/19 23:13,"874 7th St, Dallas, TX 75001" -210354,ThinkPad Laptop,1,999.99,06/09/19 09:49,"338 Jackson St, New York City, NY 10001" -210355,USB-C Charging Cable,1,11.95,06/10/19 20:48,"307 Highland St, Boston, MA 02215" -210356,Apple Airpods Headphones,1,150,06/14/19 18:29,"697 Johnson St, Austin, TX 73301" -210357,ThinkPad Laptop,1,999.99,06/30/19 12:37,"495 Elm St, San Francisco, CA 94016" -210358,AA Batteries (4-pack),1,3.84,06/10/19 10:35,"744 Adams St, Portland, OR 97035" -210359,iPhone,1,700,06/05/19 11:38,"501 Lakeview St, New York City, NY 10001" -210360,Lightning Charging Cable,1,14.95,06/08/19 09:12,"582 5th St, Boston, MA 02215" -210361,ThinkPad Laptop,1,999.99,06/14/19 07:26,"253 Hill St, Atlanta, GA 30301" -210362,USB-C Charging Cable,1,11.95,06/04/19 22:29,"151 13th St, Los Angeles, CA 90001" -210363,AAA Batteries (4-pack),1,2.99,06/13/19 21:19,"411 Highland St, New York City, NY 10001" -210364,AA Batteries (4-pack),1,3.84,06/14/19 23:09,"766 Jefferson St, San Francisco, CA 94016" -210365,Vareebadd Phone,1,400,06/13/19 18:24,"290 Sunset St, Dallas, TX 75001" -210365,USB-C Charging Cable,2,11.95,06/13/19 18:24,"290 Sunset St, Dallas, TX 75001" -210366,Wired Headphones,1,11.99,06/01/19 12:48,"77 South St, Austin, TX 73301" -210367,Lightning Charging Cable,1,14.95,06/04/19 18:07,"45 4th St, Seattle, WA 98101" -210368,USB-C Charging Cable,1,11.95,06/29/19 23:59,"498 Spruce St, San Francisco, CA 94016" -210369,Wired Headphones,1,11.99,06/17/19 19:34,"827 14th St, Boston, MA 02215" -210370,USB-C Charging Cable,1,11.95,06/03/19 10:22,"603 Hill St, Austin, TX 73301" -210371,Google Phone,1,600,06/08/19 15:51,"900 Cedar St, Seattle, WA 98101" -210371,Wired Headphones,1,11.99,06/08/19 15:51,"900 Cedar St, Seattle, WA 98101" -210372,iPhone,1,700,06/28/19 14:45,"921 Main St, Boston, MA 02215" -210373,Macbook Pro Laptop,1,1700,06/16/19 13:01,"306 Willow St, San Francisco, CA 94016" -210374,iPhone,1,700,06/22/19 19:56,"691 Dogwood St, New York City, NY 10001" -210375,Lightning Charging Cable,1,14.95,06/13/19 10:37,"360 Elm St, Portland, OR 97035" -210376,AAA Batteries (4-pack),1,2.99,06/13/19 22:12,"867 Lakeview St, San Francisco, CA 94016" -210377,Apple Airpods Headphones,1,150,06/03/19 01:11,"785 2nd St, Los Angeles, CA 90001" -210378,Lightning Charging Cable,1,14.95,06/18/19 18:29,"364 Wilson St, Portland, OR 97035" -210379,USB-C Charging Cable,1,11.95,06/30/19 20:17,"186 Ridge St, San Francisco, CA 94016" -210380,AA Batteries (4-pack),1,3.84,06/12/19 22:32,"85 Cherry St, Los Angeles, CA 90001" -210381,AAA Batteries (4-pack),1,2.99,06/27/19 21:19,"295 Highland St, San Francisco, CA 94016" -210382,AAA Batteries (4-pack),1,2.99,06/10/19 21:47,"571 10th St, Los Angeles, CA 90001" -210383,34in Ultrawide Monitor,1,379.99,06/02/19 13:35,"617 Highland St, Los Angeles, CA 90001" -210384,AA Batteries (4-pack),4,3.84,06/26/19 05:50,"592 Forest St, Dallas, TX 75001" -210385,Flatscreen TV,1,300,06/12/19 20:38,"617 Elm St, San Francisco, CA 94016" -210386,Google Phone,1,600,06/14/19 15:10,"998 Chestnut St, Seattle, WA 98101" -210387,AA Batteries (4-pack),3,3.84,06/01/19 22:23,"425 10th St, San Francisco, CA 94016" -210388,AA Batteries (4-pack),2,3.84,06/10/19 21:34,"152 North St, Seattle, WA 98101" -210389,AAA Batteries (4-pack),2,2.99,06/19/19 23:11,"566 10th St, San Francisco, CA 94016" -210390,Lightning Charging Cable,1,14.95,06/16/19 17:09,"609 Spruce St, New York City, NY 10001" -210391,Apple Airpods Headphones,1,150,06/29/19 17:32,"166 Wilson St, New York City, NY 10001" -210392,USB-C Charging Cable,1,11.95,06/28/19 19:20,"965 Hickory St, Dallas, TX 75001" -210393,Apple Airpods Headphones,1,150,06/14/19 12:33,"186 Washington St, San Francisco, CA 94016" -210394,Lightning Charging Cable,1,14.95,06/13/19 16:57,"106 12th St, Seattle, WA 98101" -210395,Bose SoundSport Headphones,1,99.99,06/30/19 17:47,"671 Adams St, New York City, NY 10001" -210396,Flatscreen TV,1,300,06/09/19 19:34,"878 Forest St, Los Angeles, CA 90001" -210397,USB-C Charging Cable,1,11.95,06/13/19 13:19,"399 Hickory St, New York City, NY 10001" -210398,27in 4K Gaming Monitor,1,389.99,06/24/19 20:37,"418 14th St, New York City, NY 10001" -210399,Lightning Charging Cable,1,14.95,06/15/19 22:39,"866 2nd St, Atlanta, GA 30301" -210400,AAA Batteries (4-pack),1,2.99,06/20/19 21:06,"613 Spruce St, Seattle, WA 98101" -210400,Lightning Charging Cable,1,14.95,06/20/19 21:06,"613 Spruce St, Seattle, WA 98101" -210401,Google Phone,1,600,06/25/19 21:14,"713 13th St, San Francisco, CA 94016" -210402,USB-C Charging Cable,1,11.95,06/20/19 22:06,"206 7th St, Los Angeles, CA 90001" -210403,Lightning Charging Cable,1,14.95,06/13/19 21:13,"928 2nd St, Seattle, WA 98101" -210404,AAA Batteries (4-pack),1,2.99,06/16/19 07:18,"785 Washington St, San Francisco, CA 94016" -210405,iPhone,1,700,06/16/19 21:14,"805 6th St, New York City, NY 10001" -210406,Bose SoundSport Headphones,1,99.99,06/11/19 20:12,"107 11th St, New York City, NY 10001" -210407,Apple Airpods Headphones,1,150,06/01/19 17:57,"606 13th St, Atlanta, GA 30301" -210408,Lightning Charging Cable,1,14.95,06/07/19 11:27,"115 Forest St, New York City, NY 10001" -210409,ThinkPad Laptop,1,999.99,06/20/19 17:42,"442 Chestnut St, Atlanta, GA 30301" -210410,USB-C Charging Cable,1,11.95,06/17/19 15:53,"120 Wilson St, Boston, MA 02215" -210411,AAA Batteries (4-pack),1,2.99,06/02/19 11:14,"546 Forest St, San Francisco, CA 94016" -210412,27in 4K Gaming Monitor,1,389.99,06/03/19 10:47,"531 Maple St, Los Angeles, CA 90001" -210413,34in Ultrawide Monitor,1,379.99,06/15/19 13:02,"627 Washington St, San Francisco, CA 94016" -210414,20in Monitor,1,109.99,06/16/19 17:04,"702 Cedar St, New York City, NY 10001" -210415,Google Phone,1,600,06/12/19 10:11,"183 Willow St, New York City, NY 10001" -210416,AA Batteries (4-pack),2,3.84,06/28/19 13:49,"6 Elm St, Boston, MA 02215" -210417,iPhone,1,700,06/28/19 15:20,"213 5th St, Austin, TX 73301" -210418,Wired Headphones,1,11.99,06/24/19 21:53,"124 6th St, Atlanta, GA 30301" -210419,Wired Headphones,1,11.99,06/10/19 09:33,"753 Meadow St, San Francisco, CA 94016" -210420,Lightning Charging Cable,1,14.95,06/29/19 10:36,"904 14th St, Atlanta, GA 30301" -210421,AA Batteries (4-pack),1,3.84,06/17/19 15:34,"31 Dogwood St, San Francisco, CA 94016" -210422,Macbook Pro Laptop,1,1700,06/20/19 22:48,"469 Lake St, New York City, NY 10001" -210423,Wired Headphones,2,11.99,06/15/19 11:59,"513 13th St, Atlanta, GA 30301" -210424,Wired Headphones,1,11.99,06/21/19 00:29,"570 Highland St, Portland, OR 97035" -210425,Wired Headphones,1,11.99,06/09/19 00:33,"732 12th St, Boston, MA 02215" -210426,Macbook Pro Laptop,1,1700,06/17/19 09:08,"357 11th St, San Francisco, CA 94016" -210427,AA Batteries (4-pack),3,3.84,06/29/19 12:10,"987 Pine St, Dallas, TX 75001" -210428,Lightning Charging Cable,1,14.95,06/30/19 23:24,"917 11th St, Portland, OR 97035" -210429,Lightning Charging Cable,1,14.95,06/26/19 10:51,"78 Spruce St, Seattle, WA 98101" -210430,20in Monitor,1,109.99,06/09/19 21:17,"729 Washington St, Seattle, WA 98101" -210431,Bose SoundSport Headphones,1,99.99,06/17/19 15:07,"785 North St, Los Angeles, CA 90001" -210432,AAA Batteries (4-pack),2,2.99,06/21/19 14:46,"394 Maple St, San Francisco, CA 94016" -210433,AA Batteries (4-pack),3,3.84,06/15/19 17:41,"16 6th St, New York City, NY 10001" -210434,Lightning Charging Cable,1,14.95,06/19/19 19:31,"25 9th St, San Francisco, CA 94016" -210435,AA Batteries (4-pack),1,3.84,06/04/19 18:05,"300 North St, Seattle, WA 98101" -210436,34in Ultrawide Monitor,1,379.99,06/14/19 12:35,"632 6th St, Los Angeles, CA 90001" -210437,34in Ultrawide Monitor,1,379.99,06/22/19 22:41,"129 Hickory St, Dallas, TX 75001" -210438,Wired Headphones,1,11.99,06/03/19 12:21,"75 Meadow St, Seattle, WA 98101" -210439,27in 4K Gaming Monitor,1,389.99,06/29/19 19:57,"351 Main St, Atlanta, GA 30301" -210440,AAA Batteries (4-pack),1,2.99,06/20/19 10:27,"557 Elm St, Los Angeles, CA 90001" -210440,Lightning Charging Cable,1,14.95,06/20/19 10:27,"557 Elm St, Los Angeles, CA 90001" -210441,Wired Headphones,1,11.99,06/03/19 20:59,"931 Walnut St, New York City, NY 10001" -210442,Apple Airpods Headphones,1,150,06/21/19 11:13,"158 10th St, San Francisco, CA 94016" -210443,USB-C Charging Cable,1,11.95,06/18/19 10:18,"576 Elm St, Los Angeles, CA 90001" -210443,27in 4K Gaming Monitor,1,389.99,06/18/19 10:18,"576 Elm St, Los Angeles, CA 90001" -210444,Google Phone,1,600,06/08/19 19:16,"246 Ridge St, Boston, MA 02215" -210445,AA Batteries (4-pack),2,3.84,06/26/19 21:26,"804 Forest St, Los Angeles, CA 90001" -210446,iPhone,1,700,06/26/19 20:00,"913 8th St, Seattle, WA 98101" -210447,Macbook Pro Laptop,1,1700,06/21/19 17:17,"350 Dogwood St, New York City, NY 10001" -210448,20in Monitor,1,109.99,06/05/19 19:27,"248 Elm St, San Francisco, CA 94016" -210449,AAA Batteries (4-pack),1,2.99,06/08/19 12:05,"6 13th St, Seattle, WA 98101" -210450,27in 4K Gaming Monitor,1,389.99,06/14/19 20:07,"210 13th St, Los Angeles, CA 90001" -210451,USB-C Charging Cable,1,11.95,06/09/19 07:05,"12 Jackson St, Atlanta, GA 30301" -210452,34in Ultrawide Monitor,1,379.99,06/13/19 12:03,"243 Center St, New York City, NY 10001" -210453,AAA Batteries (4-pack),1,2.99,06/13/19 12:08,"668 Jefferson St, San Francisco, CA 94016" -210454,Vareebadd Phone,1,400,06/03/19 18:05,"922 Highland St, Dallas, TX 75001" -210455,Bose SoundSport Headphones,1,99.99,06/18/19 17:51,"652 9th St, Seattle, WA 98101" -210456,Lightning Charging Cable,1,14.95,06/08/19 15:24,"390 Park St, Los Angeles, CA 90001" -210456,Wired Headphones,1,11.99,06/08/19 15:24,"390 Park St, Los Angeles, CA 90001" -210457,Bose SoundSport Headphones,1,99.99,06/05/19 20:44,"181 Madison St, New York City, NY 10001" -210458,AAA Batteries (4-pack),1,2.99,06/05/19 14:36,"522 1st St, New York City, NY 10001" -210459,Wired Headphones,1,11.99,06/10/19 12:39,"506 Pine St, Los Angeles, CA 90001" -210460,27in FHD Monitor,1,149.99,06/12/19 11:35,"372 1st St, Portland, OR 97035" -210461,AAA Batteries (4-pack),1,2.99,06/16/19 21:52,"53 Jefferson St, San Francisco, CA 94016" -210462,Bose SoundSport Headphones,1,99.99,06/25/19 21:00,"601 10th St, Los Angeles, CA 90001" -210463,Lightning Charging Cable,1,14.95,06/08/19 17:43,"458 Main St, Austin, TX 73301" -210464,Wired Headphones,1,11.99,06/26/19 12:36,"473 Hickory St, San Francisco, CA 94016" -210465,Flatscreen TV,1,300,06/01/19 13:04,"345 Main St, San Francisco, CA 94016" -210466,AAA Batteries (4-pack),1,2.99,06/21/19 18:52,"989 9th St, Atlanta, GA 30301" -210467,AA Batteries (4-pack),1,3.84,06/01/19 21:17,"286 Jefferson St, San Francisco, CA 94016" -210468,27in 4K Gaming Monitor,1,389.99,06/05/19 12:49,"35 West St, San Francisco, CA 94016" -210469,27in FHD Monitor,1,149.99,06/30/19 18:19,"862 Spruce St, San Francisco, CA 94016" -210470,Wired Headphones,2,11.99,06/19/19 19:32,"864 West St, Atlanta, GA 30301" -210471,AA Batteries (4-pack),3,3.84,06/09/19 17:01,"638 Center St, New York City, NY 10001" -210472,Wired Headphones,1,11.99,06/16/19 01:42,"1 Park St, Boston, MA 02215" -210473,Lightning Charging Cable,1,14.95,06/06/19 11:10,"609 8th St, Dallas, TX 75001" -210474,AA Batteries (4-pack),2,3.84,06/15/19 12:39,"277 Pine St, San Francisco, CA 94016" -210475,Wired Headphones,1,11.99,06/28/19 15:57,"595 11th St, Portland, OR 97035" -210476,Google Phone,1,600,06/24/19 10:53,"101 12th St, Atlanta, GA 30301" -210477,Lightning Charging Cable,1,14.95,06/05/19 17:15,"446 6th St, Atlanta, GA 30301" -210478,ThinkPad Laptop,1,999.99,06/08/19 12:03,"529 North St, Boston, MA 02215" -210479,AAA Batteries (4-pack),1,2.99,06/29/19 08:34,"301 Pine St, San Francisco, CA 94016" -210480,AAA Batteries (4-pack),1,2.99,06/02/19 20:54,"112 Hickory St, Los Angeles, CA 90001" -210481,AAA Batteries (4-pack),1,2.99,06/07/19 18:47,"235 11th St, Seattle, WA 98101" -210482,Apple Airpods Headphones,1,150,06/29/19 18:14,"764 Center St, Seattle, WA 98101" -210483,Macbook Pro Laptop,1,1700,06/22/19 21:51,"38 Pine St, Boston, MA 02215" -210484,Lightning Charging Cable,1,14.95,06/14/19 09:31,"677 2nd St, San Francisco, CA 94016" -210485,USB-C Charging Cable,1,11.95,06/30/19 14:17,"649 Forest St, Austin, TX 73301" -210486,iPhone,1,700,06/19/19 19:49,"86 1st St, Austin, TX 73301" -210487,USB-C Charging Cable,1,11.95,06/28/19 15:35,"169 Sunset St, New York City, NY 10001" -210488,34in Ultrawide Monitor,1,379.99,06/08/19 22:36,"835 Madison St, New York City, NY 10001" -210489,USB-C Charging Cable,1,11.95,06/06/19 14:24,"706 6th St, Atlanta, GA 30301" -210490,AA Batteries (4-pack),1,3.84,06/04/19 09:46,"429 Dogwood St, Portland, ME 04101" -210491,27in FHD Monitor,1,149.99,06/04/19 18:21,"558 Ridge St, Seattle, WA 98101" -210492,Lightning Charging Cable,1,14.95,06/24/19 15:31,"762 Madison St, Los Angeles, CA 90001" -210493,Lightning Charging Cable,1,14.95,06/25/19 23:13,"126 6th St, Portland, ME 04101" -210494,AAA Batteries (4-pack),1,2.99,06/28/19 23:36,"939 Dogwood St, Portland, ME 04101" -210495,iPhone,1,700,06/21/19 14:37,"986 10th St, Dallas, TX 75001" -210495,Lightning Charging Cable,1,14.95,06/21/19 14:37,"986 10th St, Dallas, TX 75001" -210496,ThinkPad Laptop,1,999.99,06/13/19 00:30,"438 Dogwood St, Seattle, WA 98101" -210497,AA Batteries (4-pack),1,3.84,06/29/19 11:50,"618 Maple St, Portland, OR 97035" -210498,AA Batteries (4-pack),1,3.84,06/26/19 20:06,"547 1st St, New York City, NY 10001" -210499,USB-C Charging Cable,1,11.95,06/16/19 17:34,"347 Center St, San Francisco, CA 94016" -210500,Flatscreen TV,1,300,06/08/19 16:00,"706 Main St, San Francisco, CA 94016" -210501,USB-C Charging Cable,1,11.95,06/04/19 17:58,"226 12th St, Los Angeles, CA 90001" -210502,Apple Airpods Headphones,1,150,06/29/19 06:20,"546 5th St, New York City, NY 10001" -210503,34in Ultrawide Monitor,1,379.99,06/20/19 14:20,"897 Cedar St, Los Angeles, CA 90001" -210504,AAA Batteries (4-pack),1,2.99,06/30/19 11:47,"271 Adams St, Los Angeles, CA 90001" -210505,Google Phone,1,600,06/04/19 16:45,"97 Walnut St, Los Angeles, CA 90001" -210506,Lightning Charging Cable,2,14.95,06/11/19 13:44,"719 Pine St, San Francisco, CA 94016" -210507,AAA Batteries (4-pack),1,2.99,06/21/19 12:40,"594 13th St, Seattle, WA 98101" -210508,Apple Airpods Headphones,1,150,06/28/19 19:58,"790 Lincoln St, Portland, OR 97035" -210509,Lightning Charging Cable,1,14.95,06/11/19 21:59,"658 Washington St, Portland, OR 97035" -210510,iPhone,1,700,06/12/19 12:01,"543 Willow St, Dallas, TX 75001" -210511,Apple Airpods Headphones,1,150,06/25/19 18:38,"93 Forest St, San Francisco, CA 94016" -210512,Apple Airpods Headphones,1,150,06/14/19 14:19,"172 Meadow St, New York City, NY 10001" -210513,AA Batteries (4-pack),2,3.84,06/10/19 17:07,"27 Chestnut St, San Francisco, CA 94016" -210514,AA Batteries (4-pack),1,3.84,06/11/19 20:07,"91 7th St, New York City, NY 10001" -210515,Apple Airpods Headphones,1,150,06/23/19 23:50,"425 Hickory St, San Francisco, CA 94016" -210516,Apple Airpods Headphones,1,150,06/04/19 18:36,"318 Lake St, Boston, MA 02215" -210517,Wired Headphones,1,11.99,06/19/19 18:54,"668 13th St, San Francisco, CA 94016" -210518,Apple Airpods Headphones,1,150,06/29/19 21:34,"772 Meadow St, Atlanta, GA 30301" -210519,27in FHD Monitor,1,149.99,06/20/19 11:51,"413 7th St, San Francisco, CA 94016" -210520,LG Washing Machine,1,600.0,06/19/19 18:47,"908 Lincoln St, Portland, ME 04101" -210521,Macbook Pro Laptop,1,1700,06/03/19 13:28,"239 8th St, San Francisco, CA 94016" -210522,AAA Batteries (4-pack),1,2.99,06/07/19 16:58,"25 Cherry St, Dallas, TX 75001" -210523,Bose SoundSport Headphones,1,99.99,06/18/19 22:58,"131 5th St, New York City, NY 10001" -210524,USB-C Charging Cable,1,11.95,06/11/19 18:24,"294 Hill St, Los Angeles, CA 90001" -210525,27in FHD Monitor,1,149.99,06/08/19 07:37,"173 Lakeview St, New York City, NY 10001" -,,,,, -210526,USB-C Charging Cable,1,11.95,06/05/19 15:17,"535 Cherry St, Atlanta, GA 30301" -210527,AA Batteries (4-pack),1,3.84,06/14/19 19:57,"594 North St, Boston, MA 02215" -210528,USB-C Charging Cable,1,11.95,06/29/19 16:32,"632 Spruce St, Dallas, TX 75001" -210529,USB-C Charging Cable,1,11.95,06/25/19 22:08,"228 Church St, San Francisco, CA 94016" -210530,Lightning Charging Cable,1,14.95,06/23/19 18:29,"878 4th St, Austin, TX 73301" -210531,Lightning Charging Cable,1,14.95,06/09/19 09:40,"210 Elm St, Seattle, WA 98101" -210532,Macbook Pro Laptop,1,1700,06/13/19 20:53,"802 Lake St, Atlanta, GA 30301" -210533,AA Batteries (4-pack),2,3.84,06/06/19 01:20,"38 6th St, New York City, NY 10001" -210534,Apple Airpods Headphones,1,150,06/25/19 09:47,"696 2nd St, Los Angeles, CA 90001" -210535,Google Phone,1,600,06/19/19 19:14,"847 2nd St, San Francisco, CA 94016" -210536,Bose SoundSport Headphones,1,99.99,06/27/19 09:13,"286 4th St, Atlanta, GA 30301" -210537,Flatscreen TV,1,300,06/12/19 19:00,"43 Wilson St, Seattle, WA 98101" -210538,Apple Airpods Headphones,1,150,06/28/19 14:22,"878 Church St, New York City, NY 10001" -210539,Macbook Pro Laptop,1,1700,06/29/19 18:05,"614 Wilson St, Portland, OR 97035" -210540,Bose SoundSport Headphones,1,99.99,06/30/19 19:23,"136 Ridge St, Atlanta, GA 30301" -210541,Apple Airpods Headphones,1,150,06/15/19 15:17,"724 Johnson St, Austin, TX 73301" -210542,AA Batteries (4-pack),2,3.84,06/14/19 16:50,"622 Hill St, Portland, OR 97035" -210543,34in Ultrawide Monitor,1,379.99,06/09/19 20:03,"929 Chestnut St, Dallas, TX 75001" -210544,USB-C Charging Cable,1,11.95,06/08/19 15:36,"300 8th St, Austin, TX 73301" -210545,USB-C Charging Cable,2,11.95,06/07/19 21:59,"440 Park St, Los Angeles, CA 90001" -210546,Google Phone,1,600,06/30/19 13:24,"888 Ridge St, New York City, NY 10001" -210547,Wired Headphones,1,11.99,06/23/19 20:21,"435 Cedar St, Seattle, WA 98101" -210548,iPhone,1,700,06/09/19 10:45,"698 Lincoln St, New York City, NY 10001" -210549,USB-C Charging Cable,1,11.95,06/25/19 18:19,"918 Johnson St, San Francisco, CA 94016" -210550,Lightning Charging Cable,1,14.95,06/11/19 19:41,"226 Madison St, Atlanta, GA 30301" -210550,Lightning Charging Cable,1,14.95,06/11/19 19:41,"226 Madison St, Atlanta, GA 30301" -210551,USB-C Charging Cable,1,11.95,06/30/19 06:20,"523 Lake St, Boston, MA 02215" -210552,AA Batteries (4-pack),1,3.84,06/12/19 19:41,"772 Johnson St, Seattle, WA 98101" -210553,Bose SoundSport Headphones,1,99.99,06/25/19 17:54,"634 Wilson St, San Francisco, CA 94016" -210554,Lightning Charging Cable,2,14.95,06/08/19 16:10,"321 Forest St, San Francisco, CA 94016" -210555,AAA Batteries (4-pack),2,2.99,06/12/19 10:42,"314 7th St, San Francisco, CA 94016" -210556,AAA Batteries (4-pack),2,2.99,06/07/19 13:43,"688 Cedar St, Boston, MA 02215" -210557,Macbook Pro Laptop,1,1700,06/13/19 13:29,"239 Maple St, San Francisco, CA 94016" -210558,Lightning Charging Cable,1,14.95,06/12/19 17:05,"749 8th St, Atlanta, GA 30301" -210559,AAA Batteries (4-pack),1,2.99,06/14/19 12:52,"805 Jefferson St, New York City, NY 10001" -210560,27in FHD Monitor,1,149.99,06/09/19 08:43,"105 Adams St, San Francisco, CA 94016" -210561,Google Phone,1,600,06/16/19 08:52,"345 4th St, Boston, MA 02215" -210562,Lightning Charging Cable,1,14.95,06/30/19 23:19,"807 Washington St, Boston, MA 02215" -210563,AAA Batteries (4-pack),1,2.99,06/15/19 09:52,"498 Sunset St, San Francisco, CA 94016" -210564,Bose SoundSport Headphones,1,99.99,06/11/19 20:38,"573 Sunset St, Los Angeles, CA 90001" -210565,USB-C Charging Cable,1,11.95,06/17/19 11:57,"945 Lake St, San Francisco, CA 94016" -210566,Bose SoundSport Headphones,1,99.99,06/23/19 22:37,"756 Lakeview St, San Francisco, CA 94016" -210567,Wired Headphones,1,11.99,06/09/19 07:33,"604 Cedar St, Los Angeles, CA 90001" -210568,AA Batteries (4-pack),1,3.84,06/21/19 09:45,"872 Willow St, Portland, OR 97035" -210569,20in Monitor,1,109.99,06/30/19 19:22,"908 Lakeview St, Portland, OR 97035" -210570,Apple Airpods Headphones,1,150,06/20/19 10:56,"468 Maple St, Boston, MA 02215" -210571,AAA Batteries (4-pack),2,2.99,06/17/19 14:15,"234 Cherry St, Boston, MA 02215" -210572,27in 4K Gaming Monitor,1,389.99,06/19/19 14:59,"181 Madison St, San Francisco, CA 94016" -210573,iPhone,1,700,06/21/19 10:03,"4 Madison St, Los Angeles, CA 90001" -210574,USB-C Charging Cable,2,11.95,06/26/19 14:18,"156 2nd St, San Francisco, CA 94016" -210575,27in 4K Gaming Monitor,1,389.99,06/01/19 20:25,"537 Meadow St, New York City, NY 10001" -210576,Wired Headphones,1,11.99,06/06/19 14:26,"126 Adams St, New York City, NY 10001" -210577,Google Phone,1,600,06/03/19 21:52,"252 2nd St, Austin, TX 73301" -210577,USB-C Charging Cable,1,11.95,06/03/19 21:52,"252 2nd St, Austin, TX 73301" -210578,Macbook Pro Laptop,1,1700,06/30/19 19:03,"332 Dogwood St, San Francisco, CA 94016" -210579,USB-C Charging Cable,1,11.95,06/10/19 10:29,"187 Highland St, Seattle, WA 98101" -210580,AA Batteries (4-pack),1,3.84,06/24/19 18:07,"312 10th St, Dallas, TX 75001" -210581,USB-C Charging Cable,1,11.95,06/27/19 14:45,"218 Spruce St, San Francisco, CA 94016" -210582,AA Batteries (4-pack),1,3.84,06/13/19 14:18,"586 Forest St, Los Angeles, CA 90001" -210583,AA Batteries (4-pack),1,3.84,06/16/19 11:59,"775 Washington St, San Francisco, CA 94016" -210584,Apple Airpods Headphones,1,150,06/30/19 21:38,"562 Jackson St, New York City, NY 10001" -210585,ThinkPad Laptop,1,999.99,06/21/19 00:28,"324 Spruce St, Los Angeles, CA 90001" -210586,Bose SoundSport Headphones,1,99.99,06/19/19 17:06,"548 South St, Los Angeles, CA 90001" -210587,Macbook Pro Laptop,1,1700,06/05/19 11:39,"509 River St, San Francisco, CA 94016" -210588,Flatscreen TV,1,300,06/27/19 18:17,"345 5th St, New York City, NY 10001" -210589,Apple Airpods Headphones,1,150,06/21/19 15:56,"62 7th St, San Francisco, CA 94016" -210590,20in Monitor,1,109.99,06/23/19 10:56,"991 4th St, Seattle, WA 98101" -210591,34in Ultrawide Monitor,1,379.99,06/07/19 10:28,"394 Wilson St, Austin, TX 73301" -210592,Vareebadd Phone,1,400,06/25/19 21:38,"207 Sunset St, San Francisco, CA 94016" -210592,USB-C Charging Cable,1,11.95,06/25/19 21:38,"207 Sunset St, San Francisco, CA 94016" -210593,AA Batteries (4-pack),1,3.84,06/23/19 13:22,"937 Park St, Atlanta, GA 30301" -210594,AAA Batteries (4-pack),1,2.99,06/18/19 22:06,"944 Chestnut St, New York City, NY 10001" -210595,AAA Batteries (4-pack),1,2.99,06/02/19 10:11,"177 Ridge St, San Francisco, CA 94016" -210596,USB-C Charging Cable,1,11.95,06/07/19 07:33,"709 Pine St, Seattle, WA 98101" -210597,Wired Headphones,1,11.99,06/27/19 19:08,"675 Elm St, New York City, NY 10001" -210598,Bose SoundSport Headphones,1,99.99,06/25/19 12:34,"94 Hill St, Boston, MA 02215" -210599,AAA Batteries (4-pack),1,2.99,06/28/19 20:19,"539 9th St, Portland, OR 97035" -210600,Apple Airpods Headphones,1,150,06/01/19 11:58,"971 Jefferson St, New York City, NY 10001" -210601,AAA Batteries (4-pack),1,2.99,06/19/19 10:10,"28 Spruce St, New York City, NY 10001" -210602,AA Batteries (4-pack),2,3.84,06/08/19 07:18,"167 Lakeview St, New York City, NY 10001" -210603,Wired Headphones,1,11.99,06/06/19 14:46,"700 Washington St, San Francisco, CA 94016" -210604,Bose SoundSport Headphones,1,99.99,06/22/19 14:09,"663 North St, Dallas, TX 75001" -210605,iPhone,1,700,06/12/19 11:56,"590 Johnson St, Atlanta, GA 30301" -210605,Wired Headphones,1,11.99,06/12/19 11:56,"590 Johnson St, Atlanta, GA 30301" -210606,Lightning Charging Cable,1,14.95,06/30/19 16:47,"6 River St, San Francisco, CA 94016" -210607,27in FHD Monitor,1,149.99,06/11/19 10:43,"810 Lincoln St, San Francisco, CA 94016" -210608,USB-C Charging Cable,1,11.95,06/10/19 19:26,"507 5th St, Los Angeles, CA 90001" -210609,AA Batteries (4-pack),1,3.84,06/26/19 16:37,"254 13th St, New York City, NY 10001" -210609,Lightning Charging Cable,1,14.95,06/26/19 16:37,"254 13th St, New York City, NY 10001" -210610,USB-C Charging Cable,2,11.95,06/08/19 11:36,"734 Chestnut St, San Francisco, CA 94016" -210611,Lightning Charging Cable,1,14.95,06/10/19 21:15,"137 West St, Dallas, TX 75001" -210612,USB-C Charging Cable,1,11.95,06/05/19 06:47,"162 River St, Boston, MA 02215" -210613,Apple Airpods Headphones,1,150,06/24/19 13:24,"643 Lakeview St, New York City, NY 10001" -210614,27in 4K Gaming Monitor,1,389.99,06/06/19 20:34,"736 Chestnut St, San Francisco, CA 94016" -210615,27in FHD Monitor,1,149.99,06/30/19 13:58,"928 Meadow St, New York City, NY 10001" -210616,Macbook Pro Laptop,1,1700,06/20/19 14:54,"913 Ridge St, Los Angeles, CA 90001" -210617,27in 4K Gaming Monitor,1,389.99,06/15/19 16:36,"348 Main St, Dallas, TX 75001" -210618,AAA Batteries (4-pack),1,2.99,06/27/19 14:01,"117 Cedar St, Portland, OR 97035" -210619,AA Batteries (4-pack),2,3.84,06/07/19 12:56,"309 Church St, San Francisco, CA 94016" -210620,Google Phone,1,600,06/05/19 12:25,"718 Pine St, San Francisco, CA 94016" -210621,AA Batteries (4-pack),2,3.84,06/26/19 16:51,"172 Walnut St, Los Angeles, CA 90001" -210622,Flatscreen TV,1,300,06/23/19 22:44,"615 Cherry St, San Francisco, CA 94016" -210623,27in FHD Monitor,1,149.99,06/17/19 19:35,"606 6th St, Portland, OR 97035" -210624,USB-C Charging Cable,1,11.95,06/06/19 12:19,"708 Church St, Dallas, TX 75001" -,,,,, -210625,AA Batteries (4-pack),1,3.84,06/01/19 19:09,"307 9th St, Seattle, WA 98101" -210626,Wired Headphones,1,11.99,06/08/19 13:10,"166 1st St, San Francisco, CA 94016" -210627,27in 4K Gaming Monitor,1,389.99,06/12/19 23:57,"887 Lakeview St, Portland, ME 04101" -210628,USB-C Charging Cable,1,11.95,06/25/19 18:09,"62 Church St, Los Angeles, CA 90001" -210629,27in FHD Monitor,1,149.99,06/27/19 09:55,"71 Center St, Austin, TX 73301" -210630,AA Batteries (4-pack),1,3.84,06/10/19 14:46,"495 River St, New York City, NY 10001" -210631,USB-C Charging Cable,1,11.95,06/29/19 16:04,"37 Chestnut St, Dallas, TX 75001" -210632,Apple Airpods Headphones,1,150,06/19/19 11:19,"619 Washington St, Seattle, WA 98101" -210633,USB-C Charging Cable,1,11.95,06/10/19 22:31,"634 7th St, Atlanta, GA 30301" -210634,AA Batteries (4-pack),1,3.84,06/02/19 11:48,"986 Highland St, Portland, OR 97035" -210635,ThinkPad Laptop,1,999.99,06/23/19 00:42,"705 12th St, Seattle, WA 98101" -210636,Wired Headphones,1,11.99,06/20/19 17:00,"196 11th St, Dallas, TX 75001" -210637,iPhone,1,700,06/23/19 18:02,"935 Lakeview St, Seattle, WA 98101" -210638,Lightning Charging Cable,1,14.95,06/23/19 09:33,"180 Hickory St, San Francisco, CA 94016" -210639,Apple Airpods Headphones,1,150,06/07/19 23:00,"576 Spruce St, Boston, MA 02215" -210640,Macbook Pro Laptop,1,1700,06/28/19 17:46,"600 1st St, Seattle, WA 98101" -210641,Apple Airpods Headphones,1,150,06/03/19 09:14,"82 Hickory St, Los Angeles, CA 90001" -210642,Wired Headphones,1,11.99,06/09/19 10:47,"465 Pine St, San Francisco, CA 94016" -210643,27in FHD Monitor,1,149.99,06/16/19 15:04,"699 13th St, Boston, MA 02215" -210644,Macbook Pro Laptop,1,1700,06/23/19 00:34,"448 Washington St, New York City, NY 10001" -210645,USB-C Charging Cable,2,11.95,06/12/19 08:31,"39 10th St, Portland, OR 97035" -210646,AA Batteries (4-pack),1,3.84,06/30/19 12:32,"665 Elm St, Austin, TX 73301" -210647,27in 4K Gaming Monitor,1,389.99,06/18/19 13:35,"800 Forest St, Atlanta, GA 30301" -210648,27in FHD Monitor,1,149.99,06/28/19 16:52,"161 West St, Los Angeles, CA 90001" -210649,Macbook Pro Laptop,1,1700,06/01/19 20:54,"548 Center St, San Francisco, CA 94016" -210650,AA Batteries (4-pack),1,3.84,06/22/19 17:21,"49 12th St, Portland, ME 04101" -210651,AAA Batteries (4-pack),1,2.99,06/02/19 23:46,"835 Lakeview St, San Francisco, CA 94016" -210652,AAA Batteries (4-pack),1,2.99,06/01/19 14:25,"562 Meadow St, San Francisco, CA 94016" -210653,AA Batteries (4-pack),2,3.84,06/01/19 17:13,"139 West St, San Francisco, CA 94016" -210654,Apple Airpods Headphones,1,150,06/02/19 09:06,"736 Spruce St, Atlanta, GA 30301" -210655,USB-C Charging Cable,1,11.95,06/13/19 19:47,"508 Adams St, Dallas, TX 75001" -210656,AA Batteries (4-pack),1,3.84,06/29/19 18:10,"84 1st St, Atlanta, GA 30301" -210657,Flatscreen TV,1,300,06/22/19 11:13,"989 Elm St, Atlanta, GA 30301" -210658,Apple Airpods Headphones,1,150,06/28/19 11:25,"981 14th St, San Francisco, CA 94016" -210659,Lightning Charging Cable,1,14.95,06/16/19 17:23,"876 Main St, Boston, MA 02215" -210660,Bose SoundSport Headphones,1,99.99,06/14/19 11:58,"816 Sunset St, Los Angeles, CA 90001" -210660,Wired Headphones,1,11.99,06/14/19 11:58,"816 Sunset St, Los Angeles, CA 90001" -210661,AA Batteries (4-pack),2,3.84,06/18/19 22:29,"249 Johnson St, San Francisco, CA 94016" -210662,AAA Batteries (4-pack),1,2.99,06/04/19 10:50,"695 Adams St, Boston, MA 02215" -210663,USB-C Charging Cable,1,11.95,06/05/19 20:00,"715 South St, New York City, NY 10001" -210664,Flatscreen TV,1,300,06/24/19 17:45,"222 Hickory St, Boston, MA 02215" -210665,AA Batteries (4-pack),1,3.84,06/19/19 16:11,"39 13th St, New York City, NY 10001" -210666,AA Batteries (4-pack),2,3.84,06/19/19 08:51,"346 Madison St, San Francisco, CA 94016" -210667,Vareebadd Phone,1,400,06/24/19 14:35,"903 Hickory St, Boston, MA 02215" -210668,Apple Airpods Headphones,1,150,06/04/19 12:26,"424 Lake St, Boston, MA 02215" -210669,AA Batteries (4-pack),1,3.84,06/17/19 13:11,"916 Dogwood St, San Francisco, CA 94016" -210670,Macbook Pro Laptop,1,1700,06/26/19 18:45,"276 Meadow St, Portland, OR 97035" -210671,AAA Batteries (4-pack),1,2.99,06/27/19 09:39,"763 Adams St, Los Angeles, CA 90001" -210672,AA Batteries (4-pack),1,3.84,06/21/19 10:15,"944 1st St, New York City, NY 10001" -210673,Macbook Pro Laptop,1,1700,06/05/19 16:57,"63 Hickory St, Los Angeles, CA 90001" -210674,ThinkPad Laptop,1,999.99,06/12/19 02:31,"558 Spruce St, Seattle, WA 98101" -210675,20in Monitor,1,109.99,06/02/19 18:49,"862 South St, Boston, MA 02215" -210676,iPhone,1,700,06/30/19 20:27,"270 Chestnut St, Los Angeles, CA 90001" -210677,AAA Batteries (4-pack),1,2.99,06/08/19 18:25,"266 Ridge St, Atlanta, GA 30301" -210678,27in FHD Monitor,1,149.99,06/11/19 14:12,"41 Center St, San Francisco, CA 94016" -210679,iPhone,1,700,06/22/19 14:58,"830 Park St, Los Angeles, CA 90001" -210679,Lightning Charging Cable,1,14.95,06/22/19 14:58,"830 Park St, Los Angeles, CA 90001" -210680,Wired Headphones,1,11.99,06/25/19 17:57,"914 7th St, Portland, OR 97035" -210681,USB-C Charging Cable,1,11.95,06/06/19 19:45,"533 Madison St, Portland, OR 97035" -210682,Apple Airpods Headphones,1,150,06/21/19 19:12,"569 Ridge St, Boston, MA 02215" -210683,iPhone,1,700,06/16/19 11:41,"306 Lincoln St, San Francisco, CA 94016" -210683,Lightning Charging Cable,1,14.95,06/16/19 11:41,"306 Lincoln St, San Francisco, CA 94016" -210684,Bose SoundSport Headphones,1,99.99,06/13/19 07:51,"661 Wilson St, Seattle, WA 98101" -210685,Wired Headphones,1,11.99,06/17/19 11:59,"450 Washington St, Seattle, WA 98101" -210686,USB-C Charging Cable,1,11.95,06/29/19 16:21,"833 2nd St, Los Angeles, CA 90001" -210687,Apple Airpods Headphones,1,150,06/24/19 01:12,"502 2nd St, Atlanta, GA 30301" -210688,ThinkPad Laptop,1,999.99,06/13/19 16:01,"29 4th St, Boston, MA 02215" -210689,34in Ultrawide Monitor,1,379.99,06/29/19 14:56,"920 Lincoln St, Dallas, TX 75001" -210690,27in FHD Monitor,1,149.99,06/13/19 17:36,"300 Church St, Boston, MA 02215" -210691,Flatscreen TV,1,300,06/08/19 22:54,"42 Church St, Seattle, WA 98101" -210692,AAA Batteries (4-pack),2,2.99,06/12/19 10:06,"224 Madison St, Atlanta, GA 30301" -210693,Apple Airpods Headphones,1,150,06/24/19 14:43,"912 4th St, Atlanta, GA 30301" -210694,AAA Batteries (4-pack),1,2.99,06/12/19 19:12,"97 Highland St, Boston, MA 02215" -210695,Macbook Pro Laptop,1,1700,06/18/19 07:48,"983 River St, Los Angeles, CA 90001" -210696,Bose SoundSport Headphones,1,99.99,06/21/19 14:10,"575 2nd St, Atlanta, GA 30301" -210697,AAA Batteries (4-pack),3,2.99,06/20/19 11:08,"572 Elm St, Dallas, TX 75001" -210698,USB-C Charging Cable,1,11.95,06/17/19 16:42,"442 Cherry St, Atlanta, GA 30301" -210699,Macbook Pro Laptop,1,1700,06/09/19 08:18,"108 6th St, Boston, MA 02215" -210700,AA Batteries (4-pack),1,3.84,06/18/19 14:11,"120 North St, Los Angeles, CA 90001" -210701,27in 4K Gaming Monitor,1,389.99,06/12/19 05:35,"814 Sunset St, Dallas, TX 75001" -210702,20in Monitor,1,109.99,06/18/19 20:14,"46 Washington St, San Francisco, CA 94016" -210703,Wired Headphones,1,11.99,06/09/19 10:03,"905 Lake St, San Francisco, CA 94016" -210704,Wired Headphones,1,11.99,06/17/19 08:45,"267 North St, Los Angeles, CA 90001" -210705,ThinkPad Laptop,1,999.99,06/17/19 11:52,"610 14th St, Los Angeles, CA 90001" -210706,AA Batteries (4-pack),1,3.84,06/30/19 10:56,"408 Forest St, Los Angeles, CA 90001" -210707,Wired Headphones,1,11.99,06/15/19 00:53,"442 Lake St, New York City, NY 10001" -210708,USB-C Charging Cable,1,11.95,06/06/19 22:11,"576 Sunset St, Boston, MA 02215" -210709,AA Batteries (4-pack),2,3.84,06/10/19 09:10,"420 7th St, San Francisco, CA 94016" -210710,Google Phone,1,600,06/20/19 18:13,"202 Lincoln St, Portland, ME 04101" -210710,USB-C Charging Cable,1,11.95,06/20/19 18:13,"202 Lincoln St, Portland, ME 04101" -210711,iPhone,1,700,06/22/19 12:47,"92 Lakeview St, San Francisco, CA 94016" -210711,Wired Headphones,1,11.99,06/22/19 12:47,"92 Lakeview St, San Francisco, CA 94016" -210712,Wired Headphones,2,11.99,06/24/19 05:00,"392 Lake St, Austin, TX 73301" -210712,USB-C Charging Cable,1,11.95,06/24/19 05:00,"392 Lake St, Austin, TX 73301" -210713,Apple Airpods Headphones,1,150,06/29/19 11:31,"864 Willow St, San Francisco, CA 94016" -210714,20in Monitor,1,109.99,06/28/19 12:59,"35 5th St, Dallas, TX 75001" -210715,AA Batteries (4-pack),1,3.84,06/10/19 16:29,"663 13th St, New York City, NY 10001" -210716,Macbook Pro Laptop,1,1700,06/28/19 12:24,"482 Adams St, San Francisco, CA 94016" -210716,USB-C Charging Cable,1,11.95,06/28/19 12:24,"482 Adams St, San Francisco, CA 94016" -210717,27in 4K Gaming Monitor,1,389.99,06/26/19 13:00,"214 Lakeview St, San Francisco, CA 94016" -210718,Apple Airpods Headphones,1,150,06/10/19 12:43,"55 10th St, San Francisco, CA 94016" -210719,27in 4K Gaming Monitor,1,389.99,06/09/19 20:00,"962 Forest St, Portland, OR 97035" -210720,iPhone,1,700,06/29/19 08:11,"190 Dogwood St, Los Angeles, CA 90001" -210721,Wired Headphones,1,11.99,06/21/19 17:27,"620 13th St, Boston, MA 02215" -210722,Lightning Charging Cable,1,14.95,06/17/19 15:09,"243 14th St, New York City, NY 10001" -210723,20in Monitor,1,109.99,06/26/19 08:28,"216 Adams St, Atlanta, GA 30301" -210724,27in 4K Gaming Monitor,1,389.99,06/06/19 18:25,"660 River St, San Francisco, CA 94016" -210725,Bose SoundSport Headphones,1,99.99,06/20/19 14:52,"306 5th St, San Francisco, CA 94016" -210726,Apple Airpods Headphones,1,150,06/08/19 13:19,"700 Ridge St, Dallas, TX 75001" -210727,AAA Batteries (4-pack),2,2.99,06/30/19 19:33,"408 Dogwood St, New York City, NY 10001" -210728,AAA Batteries (4-pack),1,2.99,06/12/19 17:05,"929 Johnson St, San Francisco, CA 94016" -210729,Apple Airpods Headphones,1,150,06/15/19 12:58,"546 5th St, Portland, OR 97035" -210730,20in Monitor,1,109.99,06/16/19 12:52,"185 Jackson St, Los Angeles, CA 90001" -210731,34in Ultrawide Monitor,1,379.99,06/26/19 19:53,"894 Sunset St, San Francisco, CA 94016" -210732,iPhone,1,700,06/08/19 10:24,"484 Forest St, Dallas, TX 75001" -210733,USB-C Charging Cable,1,11.95,06/10/19 00:14,"81 Hickory St, New York City, NY 10001" -210734,AAA Batteries (4-pack),1,2.99,06/13/19 20:57,"902 Washington St, Atlanta, GA 30301" -210735,AAA Batteries (4-pack),1,2.99,06/14/19 20:57,"245 Main St, New York City, NY 10001" -210736,iPhone,1,700,06/25/19 19:49,"211 13th St, Boston, MA 02215" -210737,Bose SoundSport Headphones,1,99.99,06/30/19 16:05,"597 Jackson St, New York City, NY 10001" -210738,Wired Headphones,1,11.99,06/30/19 13:54,"319 Park St, Austin, TX 73301" -210739,AA Batteries (4-pack),1,3.84,06/25/19 20:36,"159 Chestnut St, Seattle, WA 98101" -210740,Bose SoundSport Headphones,1,99.99,06/18/19 11:52,"28 Forest St, Boston, MA 02215" -210741,Bose SoundSport Headphones,1,99.99,06/29/19 16:01,"122 5th St, Los Angeles, CA 90001" -210742,AAA Batteries (4-pack),1,2.99,06/10/19 18:03,"13 Forest St, Los Angeles, CA 90001" -210743,27in FHD Monitor,1,149.99,06/21/19 18:52,"17 Ridge St, Atlanta, GA 30301" -210744,Flatscreen TV,1,300,06/26/19 11:33,"733 Jackson St, New York City, NY 10001" -210745,AAA Batteries (4-pack),2,2.99,06/17/19 10:57,"663 14th St, Boston, MA 02215" -210746,AAA Batteries (4-pack),1,2.99,06/18/19 16:39,"221 Spruce St, San Francisco, CA 94016" -210747,Flatscreen TV,1,300,06/22/19 23:54,"785 14th St, Seattle, WA 98101" -210748,iPhone,1,700,06/29/19 20:03,"936 Hickory St, San Francisco, CA 94016" -210748,Lightning Charging Cable,1,14.95,06/29/19 20:03,"936 Hickory St, San Francisco, CA 94016" -210749,Wired Headphones,1,11.99,06/05/19 16:34,"361 10th St, Portland, OR 97035" -210750,AAA Batteries (4-pack),1,2.99,06/24/19 12:44,"861 Lake St, New York City, NY 10001" -210751,Apple Airpods Headphones,1,150,06/28/19 13:16,"653 7th St, Los Angeles, CA 90001" -210752,AA Batteries (4-pack),2,3.84,06/08/19 09:24,"294 7th St, Los Angeles, CA 90001" -210753,20in Monitor,1,109.99,06/27/19 22:01,"177 Willow St, Los Angeles, CA 90001" -210754,34in Ultrawide Monitor,1,379.99,06/15/19 18:15,"409 Lake St, Atlanta, GA 30301" -210755,iPhone,1,700,06/24/19 14:32,"708 Pine St, New York City, NY 10001" -210755,Wired Headphones,1,11.99,06/24/19 14:32,"708 Pine St, New York City, NY 10001" -210756,AA Batteries (4-pack),1,3.84,06/27/19 12:23,"53 Jackson St, Los Angeles, CA 90001" -210757,LG Dryer,1,600.0,06/04/19 14:17,"720 West St, Atlanta, GA 30301" -210758,Bose SoundSport Headphones,1,99.99,06/04/19 14:39,"92 Madison St, Austin, TX 73301" -210759,27in FHD Monitor,1,149.99,06/05/19 11:54,"760 7th St, Boston, MA 02215" -210760,USB-C Charging Cable,1,11.95,06/02/19 17:13,"115 Johnson St, Atlanta, GA 30301" -210761,iPhone,1,700,06/01/19 15:41,"494 Center St, Los Angeles, CA 90001" -210762,USB-C Charging Cable,1,11.95,06/01/19 13:58,"290 Highland St, Dallas, TX 75001" -210763,USB-C Charging Cable,1,11.95,06/23/19 13:28,"683 Spruce St, Austin, TX 73301" -210764,AA Batteries (4-pack),1,3.84,06/29/19 21:13,"234 South St, Atlanta, GA 30301" -210765,USB-C Charging Cable,1,11.95,06/13/19 10:47,"520 Elm St, New York City, NY 10001" -210766,USB-C Charging Cable,1,11.95,06/20/19 10:54,"436 Hickory St, Boston, MA 02215" -210767,Vareebadd Phone,1,400,06/05/19 11:15,"325 Meadow St, Atlanta, GA 30301" -210768,USB-C Charging Cable,1,11.95,06/28/19 14:40,"996 13th St, Los Angeles, CA 90001" -210769,AAA Batteries (4-pack),1,2.99,06/08/19 09:29,"307 10th St, San Francisco, CA 94016" -210769,Lightning Charging Cable,2,14.95,06/08/19 09:29,"307 10th St, San Francisco, CA 94016" -210770,27in 4K Gaming Monitor,1,389.99,06/18/19 15:20,"433 13th St, San Francisco, CA 94016" -210771,34in Ultrawide Monitor,1,379.99,06/24/19 09:37,"47 Lake St, San Francisco, CA 94016" -210772,AA Batteries (4-pack),1,3.84,06/06/19 06:55,"716 5th St, San Francisco, CA 94016" -210773,ThinkPad Laptop,1,999.99,06/26/19 09:17,"665 Church St, Seattle, WA 98101" -210774,Lightning Charging Cable,1,14.95,06/21/19 09:59,"357 Park St, Seattle, WA 98101" -210775,Apple Airpods Headphones,1,150,06/04/19 17:00,"289 Spruce St, New York City, NY 10001" -210776,AAA Batteries (4-pack),1,2.99,06/29/19 15:54,"537 Adams St, San Francisco, CA 94016" -210777,iPhone,1,700,06/29/19 20:32,"394 9th St, Seattle, WA 98101" -210778,Lightning Charging Cable,1,14.95,06/08/19 21:54,"969 Main St, Los Angeles, CA 90001" -210779,27in FHD Monitor,1,149.99,06/16/19 00:42,"788 2nd St, Portland, ME 04101" -210780,Wired Headphones,1,11.99,06/06/19 20:04,"654 Hill St, San Francisco, CA 94016" -210781,Macbook Pro Laptop,1,1700,06/12/19 18:34,"519 Dogwood St, Los Angeles, CA 90001" -210782,AAA Batteries (4-pack),1,2.99,06/09/19 17:08,"163 7th St, Los Angeles, CA 90001" -210783,AA Batteries (4-pack),1,3.84,06/21/19 01:27,"529 14th St, New York City, NY 10001" -210784,Vareebadd Phone,1,400,06/24/19 15:39,"248 Cherry St, Portland, OR 97035" -210785,Lightning Charging Cable,1,14.95,06/26/19 22:10,"178 5th St, Seattle, WA 98101" -210786,USB-C Charging Cable,1,11.95,06/20/19 09:25,"590 Church St, New York City, NY 10001" -210787,AAA Batteries (4-pack),1,2.99,06/09/19 09:52,"622 6th St, San Francisco, CA 94016" -210788,AA Batteries (4-pack),1,3.84,06/20/19 21:25,"214 Sunset St, Portland, OR 97035" -210789,AA Batteries (4-pack),1,3.84,06/08/19 01:03,"958 Washington St, Atlanta, GA 30301" -210790,LG Washing Machine,1,600.0,06/10/19 09:30,"820 Center St, Boston, MA 02215" -210791,Apple Airpods Headphones,1,150,06/23/19 08:50,"738 Sunset St, Austin, TX 73301" -210792,Google Phone,1,600,06/07/19 14:51,"472 6th St, New York City, NY 10001" -210792,AAA Batteries (4-pack),1,2.99,06/07/19 14:51,"472 6th St, New York City, NY 10001" -210793,Apple Airpods Headphones,1,150,06/30/19 17:51,"456 2nd St, San Francisco, CA 94016" -210794,AAA Batteries (4-pack),3,2.99,06/01/19 10:12,"538 River St, Los Angeles, CA 90001" -210795,AAA Batteries (4-pack),1,2.99,06/08/19 11:43,"547 11th St, New York City, NY 10001" -210796,Vareebadd Phone,1,400,06/05/19 11:50,"955 West St, Boston, MA 02215" -210797,Lightning Charging Cable,1,14.95,06/04/19 18:09,"547 Jackson St, Los Angeles, CA 90001" -210798,Lightning Charging Cable,1,14.95,06/24/19 17:20,"645 South St, Dallas, TX 75001" -210799,ThinkPad Laptop,1,999.99,06/25/19 21:52,"59 Sunset St, San Francisco, CA 94016" -210800,USB-C Charging Cable,1,11.95,06/28/19 10:08,"421 Lake St, San Francisco, CA 94016" -210801,Lightning Charging Cable,1,14.95,06/24/19 09:37,"922 6th St, San Francisco, CA 94016" -210802,Apple Airpods Headphones,1,150,06/26/19 23:59,"202 Hickory St, Seattle, WA 98101" -210803,AAA Batteries (4-pack),1,2.99,06/21/19 17:02,"174 5th St, San Francisco, CA 94016" -210804,USB-C Charging Cable,2,11.95,06/07/19 22:05,"462 Cedar St, San Francisco, CA 94016" -210805,USB-C Charging Cable,1,11.95,06/24/19 14:58,"841 Meadow St, San Francisco, CA 94016" -210806,27in 4K Gaming Monitor,1,389.99,06/30/19 14:49,"919 River St, Dallas, TX 75001" -210807,Apple Airpods Headphones,1,150,06/09/19 14:21,"357 River St, Portland, OR 97035" -210808,27in FHD Monitor,1,149.99,06/23/19 04:20,"137 Center St, San Francisco, CA 94016" -210809,AA Batteries (4-pack),1,3.84,06/21/19 16:05,"108 West St, Seattle, WA 98101" -210810,AA Batteries (4-pack),1,3.84,06/22/19 18:56,"449 Walnut St, Boston, MA 02215" -210811,AA Batteries (4-pack),1,3.84,06/14/19 18:19,"838 Meadow St, San Francisco, CA 94016" -210812,Bose SoundSport Headphones,1,99.99,06/30/19 19:37,"376 Jackson St, Los Angeles, CA 90001" -210813,USB-C Charging Cable,1,11.95,06/13/19 09:20,"638 Ridge St, Seattle, WA 98101" -210814,27in FHD Monitor,1,149.99,06/17/19 23:15,"399 14th St, Atlanta, GA 30301" -210815,AAA Batteries (4-pack),1,2.99,06/05/19 20:12,"254 Ridge St, Atlanta, GA 30301" -210816,Wired Headphones,1,11.99,06/16/19 12:14,"188 Cherry St, Atlanta, GA 30301" -210817,Apple Airpods Headphones,1,150,06/27/19 14:16,"926 Adams St, San Francisco, CA 94016" -210818,AAA Batteries (4-pack),1,2.99,06/05/19 13:24,"205 Walnut St, Atlanta, GA 30301" -210819,AAA Batteries (4-pack),4,2.99,06/07/19 20:49,"574 Lake St, San Francisco, CA 94016" -210820,34in Ultrawide Monitor,1,379.99,06/23/19 21:21,"932 12th St, New York City, NY 10001" -210821,Wired Headphones,1,11.99,06/16/19 10:36,"160 Maple St, Atlanta, GA 30301" -210822,Google Phone,1,600,06/10/19 09:36,"654 Wilson St, San Francisco, CA 94016" -210823,USB-C Charging Cable,1,11.95,06/06/19 08:59,"727 Elm St, New York City, NY 10001" -210824,AA Batteries (4-pack),1,3.84,06/26/19 13:18,"865 Highland St, Los Angeles, CA 90001" -210825,Lightning Charging Cable,1,14.95,06/12/19 20:08,"885 Spruce St, Boston, MA 02215" -210826,Lightning Charging Cable,1,14.95,06/17/19 12:56,"216 Walnut St, San Francisco, CA 94016" -210827,iPhone,1,700,06/04/19 09:43,"408 7th St, San Francisco, CA 94016" -210827,Apple Airpods Headphones,1,150,06/04/19 09:43,"408 7th St, San Francisco, CA 94016" -210828,AAA Batteries (4-pack),1,2.99,06/12/19 13:44,"10 Dogwood St, San Francisco, CA 94016" -210829,AAA Batteries (4-pack),2,2.99,06/11/19 00:52,"692 Wilson St, San Francisco, CA 94016" -210830,AA Batteries (4-pack),1,3.84,06/27/19 21:05,"681 Elm St, San Francisco, CA 94016" -210831,AA Batteries (4-pack),2,3.84,06/11/19 00:07,"646 West St, Dallas, TX 75001" -210832,Lightning Charging Cable,1,14.95,06/09/19 18:03,"515 Walnut St, Boston, MA 02215" -210833,AAA Batteries (4-pack),1,2.99,06/26/19 16:22,"45 5th St, Los Angeles, CA 90001" -210834,Wired Headphones,1,11.99,06/10/19 14:25,"887 Walnut St, San Francisco, CA 94016" -210835,AAA Batteries (4-pack),4,2.99,06/14/19 22:48,"316 12th St, New York City, NY 10001" -210836,Wired Headphones,1,11.99,06/29/19 22:52,"379 Willow St, New York City, NY 10001" -210837,Vareebadd Phone,1,400,06/22/19 14:27,"968 Cedar St, New York City, NY 10001" -210837,USB-C Charging Cable,1,11.95,06/22/19 14:27,"968 Cedar St, New York City, NY 10001" -210838,Apple Airpods Headphones,1,150,06/27/19 17:44,"286 Washington St, Portland, OR 97035" -210839,USB-C Charging Cable,1,11.95,06/11/19 13:26,"86 Hickory St, Los Angeles, CA 90001" -210840,AA Batteries (4-pack),1,3.84,06/25/19 23:11,"963 9th St, New York City, NY 10001" -210841,Lightning Charging Cable,1,14.95,06/14/19 09:09,"141 Jackson St, Portland, OR 97035" -210842,AAA Batteries (4-pack),3,2.99,06/05/19 15:55,"838 Maple St, Dallas, TX 75001" -210843,Google Phone,1,600,06/03/19 12:08,"804 Jefferson St, New York City, NY 10001" -210844,34in Ultrawide Monitor,1,379.99,06/12/19 11:12,"724 Lakeview St, Boston, MA 02215" -210845,Lightning Charging Cable,1,14.95,06/26/19 11:40,"261 2nd St, San Francisco, CA 94016" -210846,USB-C Charging Cable,1,11.95,06/16/19 09:09,"90 Adams St, Atlanta, GA 30301" -210847,Lightning Charging Cable,1,14.95,06/08/19 06:49,"745 5th St, San Francisco, CA 94016" -210848,AAA Batteries (4-pack),3,2.99,06/29/19 12:58,"317 12th St, Atlanta, GA 30301" -210849,AA Batteries (4-pack),1,3.84,06/30/19 15:34,"189 Adams St, Dallas, TX 75001" -210850,AA Batteries (4-pack),2,3.84,06/25/19 10:30,"625 Center St, Atlanta, GA 30301" -210851,Wired Headphones,1,11.99,06/16/19 13:45,"561 Ridge St, Boston, MA 02215" -210852,AAA Batteries (4-pack),2,2.99,06/04/19 10:25,"444 Highland St, Seattle, WA 98101" -210853,Macbook Pro Laptop,1,1700,06/11/19 08:56,"684 South St, Boston, MA 02215" -210854,LG Washing Machine,1,600.0,06/04/19 18:10,"671 Spruce St, San Francisco, CA 94016" -210855,Wired Headphones,1,11.99,06/25/19 21:00,"527 Washington St, Boston, MA 02215" -210856,Wired Headphones,1,11.99,06/03/19 06:46,"504 Cedar St, San Francisco, CA 94016" -210857,AA Batteries (4-pack),1,3.84,06/15/19 10:59,"166 Adams St, San Francisco, CA 94016" -210858,AA Batteries (4-pack),3,3.84,06/02/19 10:48,"632 Lakeview St, New York City, NY 10001" -210859,27in FHD Monitor,1,149.99,06/16/19 08:20,"123 Meadow St, Atlanta, GA 30301" -210860,AAA Batteries (4-pack),2,2.99,06/19/19 20:29,"294 Adams St, San Francisco, CA 94016" -210861,Flatscreen TV,1,300,06/13/19 12:52,"240 Willow St, Los Angeles, CA 90001" -210862,ThinkPad Laptop,1,999.99,06/09/19 14:56,"393 9th St, Los Angeles, CA 90001" -210863,Wired Headphones,1,11.99,06/24/19 19:21,"294 Forest St, Portland, ME 04101" -210864,Bose SoundSport Headphones,1,99.99,06/06/19 10:50,"169 Ridge St, San Francisco, CA 94016" -210865,27in 4K Gaming Monitor,1,389.99,06/06/19 17:50,"298 Church St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -210866,27in 4K Gaming Monitor,1,389.99,06/11/19 23:37,"989 Forest St, Atlanta, GA 30301" -210867,AA Batteries (4-pack),1,3.84,06/02/19 06:37,"920 Dogwood St, San Francisco, CA 94016" -210867,Lightning Charging Cable,1,14.95,06/02/19 06:37,"920 Dogwood St, San Francisco, CA 94016" -210868,Bose SoundSport Headphones,1,99.99,06/29/19 12:12,"620 Hickory St, Seattle, WA 98101" -210869,27in FHD Monitor,1,149.99,06/08/19 14:49,"855 Jackson St, Portland, OR 97035" -210870,AA Batteries (4-pack),1,3.84,06/20/19 22:10,"548 Highland St, Boston, MA 02215" -210871,Wired Headphones,1,11.99,06/06/19 16:21,"3 Madison St, New York City, NY 10001" -210872,Vareebadd Phone,1,400,06/09/19 17:24,"166 Church St, New York City, NY 10001" -210873,Apple Airpods Headphones,1,150,06/10/19 09:34,"935 4th St, Los Angeles, CA 90001" -210874,Bose SoundSport Headphones,1,99.99,06/20/19 13:59,"423 Madison St, New York City, NY 10001" -210875,Wired Headphones,2,11.99,06/13/19 16:19,"264 Pine St, Los Angeles, CA 90001" -210876,Lightning Charging Cable,1,14.95,06/19/19 15:18,"248 Spruce St, Austin, TX 73301" -210877,Lightning Charging Cable,1,14.95,06/21/19 11:05,"26 Johnson St, Los Angeles, CA 90001" -210878,Lightning Charging Cable,1,14.95,06/06/19 14:49,"619 Spruce St, Dallas, TX 75001" -210879,USB-C Charging Cable,1,11.95,06/06/19 16:38,"600 Lake St, San Francisco, CA 94016" -210880,Lightning Charging Cable,1,14.95,06/03/19 19:19,"887 Center St, Los Angeles, CA 90001" -210881,AA Batteries (4-pack),1,3.84,06/16/19 12:50,"648 Adams St, Boston, MA 02215" -210882,Wired Headphones,1,11.99,06/01/19 15:02,"281 Ridge St, Seattle, WA 98101" -210883,iPhone,1,700,06/17/19 20:59,"351 Madison St, New York City, NY 10001" -210883,Lightning Charging Cable,1,14.95,06/17/19 20:59,"351 Madison St, New York City, NY 10001" -210884,AA Batteries (4-pack),1,3.84,06/30/19 01:58,"601 6th St, Atlanta, GA 30301" -210885,USB-C Charging Cable,1,11.95,06/03/19 12:32,"377 Meadow St, Los Angeles, CA 90001" -210886,ThinkPad Laptop,1,999.99,06/20/19 15:25,"357 2nd St, San Francisco, CA 94016" -210887,iPhone,1,700,06/15/19 12:59,"511 Meadow St, Atlanta, GA 30301" -210888,Google Phone,1,600,06/12/19 08:12,"630 Church St, Seattle, WA 98101" -210889,Wired Headphones,1,11.99,06/14/19 22:46,"629 South St, Seattle, WA 98101" -210890,Lightning Charging Cable,1,14.95,06/24/19 18:28,"428 Cherry St, Portland, OR 97035" -210891,AAA Batteries (4-pack),1,2.99,06/04/19 19:16,"55 Ridge St, Los Angeles, CA 90001" -210892,34in Ultrawide Monitor,1,379.99,06/01/19 18:48,"38 Cedar St, Seattle, WA 98101" -210893,USB-C Charging Cable,1,11.95,06/19/19 15:58,"18 Chestnut St, Dallas, TX 75001" -210894,AA Batteries (4-pack),1,3.84,06/27/19 20:41,"530 Cedar St, Seattle, WA 98101" -210895,Bose SoundSport Headphones,1,99.99,06/28/19 21:49,"66 North St, San Francisco, CA 94016" -210896,Macbook Pro Laptop,1,1700,06/06/19 09:13,"111 Pine St, Dallas, TX 75001" -210897,20in Monitor,1,109.99,06/01/19 19:12,"705 7th St, New York City, NY 10001" -210898,Bose SoundSport Headphones,1,99.99,06/27/19 10:50,"439 6th St, Portland, OR 97035" -210899,Lightning Charging Cable,1,14.95,06/12/19 13:22,"385 11th St, Los Angeles, CA 90001" -210900,Apple Airpods Headphones,1,150,06/07/19 08:40,"889 Jackson St, Seattle, WA 98101" -210901,USB-C Charging Cable,1,11.95,06/13/19 20:05,"703 6th St, Los Angeles, CA 90001" -210902,Lightning Charging Cable,1,14.95,06/18/19 20:56,"113 11th St, Portland, OR 97035" -210903,Macbook Pro Laptop,1,1700,06/07/19 17:59,"938 Chestnut St, New York City, NY 10001" -210904,27in 4K Gaming Monitor,1,389.99,06/11/19 19:31,"709 Meadow St, New York City, NY 10001" -210905,20in Monitor,1,109.99,06/03/19 11:33,"662 North St, Los Angeles, CA 90001" -210906,Wired Headphones,1,11.99,06/21/19 11:52,"431 4th St, New York City, NY 10001" -210907,Lightning Charging Cable,1,14.95,06/28/19 17:21,"732 13th St, Dallas, TX 75001" -210908,iPhone,1,700,06/10/19 16:34,"293 Spruce St, San Francisco, CA 94016" -210909,iPhone,1,700,06/03/19 10:22,"68 Lincoln St, San Francisco, CA 94016" -210910,34in Ultrawide Monitor,1,379.99,06/03/19 15:58,"32 Wilson St, Los Angeles, CA 90001" -210911,Macbook Pro Laptop,1,1700,06/27/19 13:06,"648 Main St, Los Angeles, CA 90001" -210912,USB-C Charging Cable,1,11.95,06/23/19 15:50,"602 Ridge St, New York City, NY 10001" -210913,Bose SoundSport Headphones,1,99.99,06/14/19 08:21,"127 Meadow St, Dallas, TX 75001" -210914,Apple Airpods Headphones,1,150,06/27/19 10:34,"112 River St, Los Angeles, CA 90001" -210915,Wired Headphones,1,11.99,06/14/19 17:39,"730 1st St, Boston, MA 02215" -210916,USB-C Charging Cable,1,11.95,06/29/19 14:08,"897 14th St, New York City, NY 10001" -210917,USB-C Charging Cable,1,11.95,06/30/19 09:03,"619 Dogwood St, San Francisco, CA 94016" -210918,iPhone,1,700,06/08/19 15:49,"898 7th St, New York City, NY 10001" -210919,AA Batteries (4-pack),1,3.84,06/10/19 11:52,"591 Cedar St, New York City, NY 10001" -210920,AAA Batteries (4-pack),1,2.99,06/16/19 10:43,"551 Wilson St, Portland, ME 04101" -210920,Apple Airpods Headphones,1,150,06/16/19 10:43,"551 Wilson St, Portland, ME 04101" -210921,Lightning Charging Cable,1,14.95,06/17/19 16:19,"530 South St, San Francisco, CA 94016" -210922,27in FHD Monitor,1,149.99,06/17/19 13:57,"696 Center St, Boston, MA 02215" -210923,USB-C Charging Cable,1,11.95,06/08/19 18:51,"258 2nd St, Boston, MA 02215" -210923,Bose SoundSport Headphones,1,99.99,06/08/19 18:51,"258 2nd St, Boston, MA 02215" -210924,Wired Headphones,1,11.99,06/08/19 13:46,"35 11th St, Los Angeles, CA 90001" -210925,Flatscreen TV,1,300,06/09/19 10:14,"584 Highland St, Los Angeles, CA 90001" -210926,iPhone,1,700,06/25/19 22:23,"105 4th St, Atlanta, GA 30301" -210927,AA Batteries (4-pack),1,3.84,06/19/19 21:37,"596 Johnson St, Portland, OR 97035" -210928,USB-C Charging Cable,1,11.95,06/26/19 07:46,"187 4th St, New York City, NY 10001" -210929,Bose SoundSport Headphones,1,99.99,06/27/19 13:28,"985 Lakeview St, Atlanta, GA 30301" -210930,Apple Airpods Headphones,1,150,06/16/19 12:41,"354 Lincoln St, Los Angeles, CA 90001" -210931,AA Batteries (4-pack),1,3.84,06/12/19 17:04,"953 10th St, Atlanta, GA 30301" -210932,Wired Headphones,1,11.99,06/19/19 10:38,"66 Ridge St, Dallas, TX 75001" -210933,AAA Batteries (4-pack),2,2.99,06/04/19 11:14,"432 4th St, Dallas, TX 75001" -210934,Bose SoundSport Headphones,1,99.99,06/01/19 20:51,"347 11th St, New York City, NY 10001" -210935,Lightning Charging Cable,1,14.95,06/04/19 12:44,"305 Ridge St, Los Angeles, CA 90001" -210936,Lightning Charging Cable,1,14.95,06/17/19 20:18,"8 11th St, Portland, OR 97035" -210937,USB-C Charging Cable,1,11.95,06/22/19 11:31,"160 1st St, San Francisco, CA 94016" -210938,Bose SoundSport Headphones,1,99.99,06/17/19 19:23,"598 Maple St, Los Angeles, CA 90001" -210939,Bose SoundSport Headphones,1,99.99,06/16/19 09:18,"76 Jefferson St, New York City, NY 10001" -210940,AAA Batteries (4-pack),4,2.99,06/25/19 18:16,"470 Center St, San Francisco, CA 94016" -210941,Wired Headphones,1,11.99,06/14/19 17:06,"553 Sunset St, Atlanta, GA 30301" -210942,Google Phone,1,600,06/09/19 12:49,"837 Center St, Boston, MA 02215" -210943,USB-C Charging Cable,1,11.95,06/30/19 22:59,"251 12th St, Atlanta, GA 30301" -210944,27in FHD Monitor,1,149.99,06/21/19 16:28,"773 Cedar St, Seattle, WA 98101" -210945,Flatscreen TV,1,300,06/07/19 19:38,"636 West St, Atlanta, GA 30301" -210946,Macbook Pro Laptop,1,1700,06/30/19 12:20,"991 Lincoln St, Boston, MA 02215" -210947,AA Batteries (4-pack),2,3.84,06/13/19 06:35,"55 Walnut St, Atlanta, GA 30301" -210948,Vareebadd Phone,1,400,06/24/19 17:58,"318 Chestnut St, New York City, NY 10001" -210949,Lightning Charging Cable,1,14.95,06/25/19 01:19,"273 Hill St, Austin, TX 73301" -210950,Apple Airpods Headphones,1,150,06/22/19 20:00,"479 Hickory St, New York City, NY 10001" -210950,Apple Airpods Headphones,1,150,06/22/19 20:00,"479 Hickory St, New York City, NY 10001" -210951,AAA Batteries (4-pack),5,2.99,06/02/19 14:26,"696 8th St, Seattle, WA 98101" -210952,iPhone,1,700,06/16/19 05:09,"327 Johnson St, Boston, MA 02215" -210953,iPhone,1,700,06/10/19 16:28,"402 Cherry St, San Francisco, CA 94016" -210954,AA Batteries (4-pack),1,3.84,06/13/19 13:34,"626 6th St, San Francisco, CA 94016" -210955,20in Monitor,1,109.99,06/30/19 21:50,"908 7th St, San Francisco, CA 94016" -210956,AA Batteries (4-pack),1,3.84,06/02/19 03:39,"553 River St, San Francisco, CA 94016" -210957,Bose SoundSport Headphones,1,99.99,06/25/19 17:14,"238 1st St, Atlanta, GA 30301" -210958,USB-C Charging Cable,1,11.95,06/02/19 19:04,"778 Dogwood St, Atlanta, GA 30301" -210959,AAA Batteries (4-pack),1,2.99,06/24/19 04:56,"476 Willow St, San Francisco, CA 94016" -210960,Apple Airpods Headphones,1,150,06/30/19 16:25,"496 Cherry St, Boston, MA 02215" -210961,Wired Headphones,1,11.99,06/12/19 10:25,"173 River St, New York City, NY 10001" -210962,Flatscreen TV,1,300,06/25/19 09:20,"89 Cedar St, New York City, NY 10001" -210963,Bose SoundSport Headphones,1,99.99,06/13/19 23:45,"35 9th St, New York City, NY 10001" -210964,Vareebadd Phone,1,400,06/24/19 06:25,"643 Lakeview St, San Francisco, CA 94016" -210964,USB-C Charging Cable,1,11.95,06/24/19 06:25,"643 Lakeview St, San Francisco, CA 94016" -210964,Wired Headphones,1,11.99,06/24/19 06:25,"643 Lakeview St, San Francisco, CA 94016" -210965,Wired Headphones,1,11.99,06/20/19 06:38,"476 Spruce St, Los Angeles, CA 90001" -210966,Vareebadd Phone,1,400,06/18/19 11:46,"457 Main St, Atlanta, GA 30301" -210967,Wired Headphones,1,11.99,06/13/19 08:10,"99 Wilson St, Austin, TX 73301" -210968,AA Batteries (4-pack),1,3.84,06/01/19 14:34,"652 13th St, Atlanta, GA 30301" -210969,Wired Headphones,1,11.99,06/28/19 06:08,"707 4th St, San Francisco, CA 94016" -210970,Bose SoundSport Headphones,1,99.99,06/15/19 19:32,"103 Cedar St, Portland, OR 97035" -210971,AAA Batteries (4-pack),1,2.99,06/28/19 12:52,"353 Center St, San Francisco, CA 94016" -210972,USB-C Charging Cable,1,11.95,06/27/19 01:37,"106 2nd St, Atlanta, GA 30301" -210973,AAA Batteries (4-pack),2,2.99,06/02/19 11:45,"236 Lincoln St, Austin, TX 73301" -210974,34in Ultrawide Monitor,1,379.99,06/02/19 12:19,"560 Meadow St, New York City, NY 10001" -210975,ThinkPad Laptop,1,999.99,06/07/19 18:03,"711 Hickory St, Atlanta, GA 30301" -210976,USB-C Charging Cable,1,11.95,06/11/19 13:10,"980 6th St, Portland, OR 97035" -210977,USB-C Charging Cable,2,11.95,06/05/19 11:16,"561 Spruce St, Los Angeles, CA 90001" -210978,Lightning Charging Cable,1,14.95,06/06/19 20:37,"859 Cedar St, Boston, MA 02215" -210979,AA Batteries (4-pack),1,3.84,06/27/19 19:41,"634 Sunset St, San Francisco, CA 94016" -210980,AAA Batteries (4-pack),2,2.99,06/22/19 09:02,"482 Spruce St, San Francisco, CA 94016" -210981,ThinkPad Laptop,1,999.99,06/07/19 17:47,"664 Elm St, San Francisco, CA 94016" -210982,27in FHD Monitor,1,149.99,06/16/19 20:48,"740 Madison St, Los Angeles, CA 90001" -210983,AAA Batteries (4-pack),3,2.99,06/04/19 17:24,"768 Madison St, Los Angeles, CA 90001" -210984,Flatscreen TV,1,300,06/17/19 22:58,"474 Chestnut St, Atlanta, GA 30301" -210985,Macbook Pro Laptop,1,1700,06/12/19 10:13,"829 Main St, Dallas, TX 75001" -210986,USB-C Charging Cable,1,11.95,06/19/19 12:35,"399 11th St, San Francisco, CA 94016" -210987,AA Batteries (4-pack),1,3.84,06/27/19 13:45,"795 West St, San Francisco, CA 94016" -210988,AA Batteries (4-pack),1,3.84,06/29/19 01:04,"747 West St, Dallas, TX 75001" -210989,USB-C Charging Cable,3,11.95,06/14/19 07:32,"458 Cedar St, San Francisco, CA 94016" -210990,20in Monitor,1,109.99,06/03/19 21:46,"602 10th St, Los Angeles, CA 90001" -210991,Wired Headphones,1,11.99,06/17/19 14:53,"144 Johnson St, San Francisco, CA 94016" -210992,Wired Headphones,1,11.99,06/03/19 21:35,"122 Ridge St, New York City, NY 10001" -210993,Google Phone,1,600,06/25/19 09:50,"615 13th St, Seattle, WA 98101" -210994,AA Batteries (4-pack),1,3.84,06/28/19 20:32,"826 Church St, New York City, NY 10001" -210995,Vareebadd Phone,1,400,06/26/19 14:37,"619 Ridge St, Atlanta, GA 30301" -210995,Wired Headphones,1,11.99,06/26/19 14:37,"619 Ridge St, Atlanta, GA 30301" -210996,Lightning Charging Cable,1,14.95,06/17/19 14:22,"568 5th St, Portland, ME 04101" -210996,Apple Airpods Headphones,1,150,06/17/19 14:22,"568 5th St, Portland, ME 04101" -210997,Wired Headphones,2,11.99,06/01/19 08:19,"438 Sunset St, Dallas, TX 75001" -210998,AAA Batteries (4-pack),1,2.99,06/09/19 10:30,"166 10th St, Austin, TX 73301" -210999,AAA Batteries (4-pack),1,2.99,06/10/19 15:23,"762 West St, Atlanta, GA 30301" -211000,AA Batteries (4-pack),1,3.84,06/09/19 12:41,"735 Maple St, Atlanta, GA 30301" -211001,Bose SoundSport Headphones,1,99.99,06/05/19 12:14,"702 Wilson St, San Francisco, CA 94016" -,,,,, -211002,AA Batteries (4-pack),1,3.84,06/12/19 15:34,"187 14th St, Seattle, WA 98101" -211003,Bose SoundSport Headphones,1,99.99,06/14/19 11:12,"489 Lakeview St, Los Angeles, CA 90001" -211004,20in Monitor,1,109.99,06/26/19 19:07,"4 Cherry St, Boston, MA 02215" -211005,Google Phone,1,600,06/10/19 20:41,"856 Wilson St, Dallas, TX 75001" -211006,AAA Batteries (4-pack),1,2.99,06/18/19 10:55,"942 River St, Boston, MA 02215" -211007,Apple Airpods Headphones,1,150,06/10/19 10:19,"913 Elm St, San Francisco, CA 94016" -211008,USB-C Charging Cable,1,11.95,06/07/19 10:53,"589 Jefferson St, New York City, NY 10001" -211009,AAA Batteries (4-pack),2,2.99,06/20/19 17:11,"208 Lincoln St, Dallas, TX 75001" -211010,Wired Headphones,1,11.99,06/04/19 21:36,"207 Lake St, Dallas, TX 75001" -211011,LG Washing Machine,1,600.0,06/16/19 13:47,"175 Highland St, Los Angeles, CA 90001" -211012,Lightning Charging Cable,1,14.95,06/07/19 16:26,"121 Lake St, Dallas, TX 75001" -211013,AA Batteries (4-pack),1,3.84,06/10/19 20:29,"79 Wilson St, Boston, MA 02215" -211014,Wired Headphones,1,11.99,06/18/19 11:01,"100 12th St, Los Angeles, CA 90001" -211015,Lightning Charging Cable,1,14.95,06/23/19 16:18,"344 Lake St, Atlanta, GA 30301" -211016,AA Batteries (4-pack),4,3.84,06/18/19 09:51,"309 Maple St, Austin, TX 73301" -211017,Bose SoundSport Headphones,1,99.99,06/14/19 20:51,"342 5th St, San Francisco, CA 94016" -211017,AA Batteries (4-pack),1,3.84,06/14/19 20:51,"342 5th St, San Francisco, CA 94016" -211018,34in Ultrawide Monitor,1,379.99,06/24/19 18:21,"743 Main St, Seattle, WA 98101" -211019,Apple Airpods Headphones,1,150,06/25/19 06:47,"74 Main St, San Francisco, CA 94016" -211020,Wired Headphones,3,11.99,06/26/19 19:39,"648 Maple St, New York City, NY 10001" -211021,USB-C Charging Cable,1,11.95,06/06/19 11:33,"88 Chestnut St, Seattle, WA 98101" -211022,27in 4K Gaming Monitor,1,389.99,06/05/19 22:34,"820 Lincoln St, New York City, NY 10001" -211023,AAA Batteries (4-pack),2,2.99,06/19/19 19:41,"889 4th St, Seattle, WA 98101" -211024,Bose SoundSport Headphones,1,99.99,06/01/19 08:49,"455 9th St, Seattle, WA 98101" -211025,AAA Batteries (4-pack),1,2.99,06/08/19 11:59,"434 10th St, San Francisco, CA 94016" -211026,Lightning Charging Cable,1,14.95,06/27/19 09:37,"898 12th St, Seattle, WA 98101" -211027,Vareebadd Phone,1,400,06/13/19 12:10,"890 Adams St, New York City, NY 10001" -211028,20in Monitor,1,109.99,06/25/19 23:19,"975 Lakeview St, Dallas, TX 75001" -211029,Flatscreen TV,1,300,06/24/19 09:24,"587 Hill St, Portland, OR 97035" -211030,AAA Batteries (4-pack),1,2.99,06/20/19 08:54,"969 8th St, Seattle, WA 98101" -211031,USB-C Charging Cable,1,11.95,06/06/19 22:05,"296 Ridge St, Los Angeles, CA 90001" -211032,AAA Batteries (4-pack),4,2.99,06/08/19 13:06,"372 Wilson St, San Francisco, CA 94016" -211033,27in 4K Gaming Monitor,1,389.99,06/23/19 15:50,"806 Hickory St, Boston, MA 02215" -211034,AA Batteries (4-pack),1,3.84,06/25/19 22:12,"835 Spruce St, Boston, MA 02215" -211035,34in Ultrawide Monitor,1,379.99,06/23/19 14:03,"933 Hill St, San Francisco, CA 94016" -211036,Wired Headphones,1,11.99,06/14/19 18:45,"76 Cherry St, San Francisco, CA 94016" -211037,ThinkPad Laptop,1,999.99,06/19/19 23:27,"245 Johnson St, Atlanta, GA 30301" -211038,27in FHD Monitor,1,149.99,06/23/19 13:16,"25 Meadow St, San Francisco, CA 94016" -211039,Lightning Charging Cable,1,14.95,06/04/19 12:55,"199 Hickory St, Portland, OR 97035" -211040,Bose SoundSport Headphones,1,99.99,06/19/19 17:51,"779 6th St, Seattle, WA 98101" -211041,AA Batteries (4-pack),1,3.84,06/15/19 14:12,"172 Lincoln St, Los Angeles, CA 90001" -211042,Lightning Charging Cable,1,14.95,06/22/19 14:46,"643 8th St, Atlanta, GA 30301" -211043,AAA Batteries (4-pack),2,2.99,06/30/19 11:44,"478 Lake St, San Francisco, CA 94016" -211044,iPhone,1,700,06/02/19 09:17,"71 Wilson St, Boston, MA 02215" -211045,AA Batteries (4-pack),1,3.84,06/05/19 02:09,"513 Hill St, San Francisco, CA 94016" -211046,Lightning Charging Cable,1,14.95,06/12/19 12:18,"543 Spruce St, San Francisco, CA 94016" -211047,USB-C Charging Cable,1,11.95,06/09/19 13:15,"891 Jackson St, New York City, NY 10001" -211048,Lightning Charging Cable,1,14.95,06/30/19 20:50,"68 Chestnut St, Austin, TX 73301" -211049,27in 4K Gaming Monitor,1,389.99,06/05/19 21:29,"44 5th St, Seattle, WA 98101" -211050,AAA Batteries (4-pack),1,2.99,06/15/19 08:32,"160 6th St, Boston, MA 02215" -211051,20in Monitor,1,109.99,06/06/19 10:38,"567 Dogwood St, Atlanta, GA 30301" -211052,Bose SoundSport Headphones,1,99.99,06/16/19 12:48,"507 Walnut St, Seattle, WA 98101" -211053,Wired Headphones,1,11.99,06/09/19 15:25,"381 1st St, Seattle, WA 98101" -211054,USB-C Charging Cable,1,11.95,06/12/19 14:56,"482 Jefferson St, Seattle, WA 98101" -211055,AAA Batteries (4-pack),1,2.99,06/13/19 11:44,"631 Adams St, Atlanta, GA 30301" -211056,Bose SoundSport Headphones,1,99.99,06/03/19 07:48,"811 Main St, Austin, TX 73301" -211057,AAA Batteries (4-pack),1,2.99,06/28/19 13:59,"334 Madison St, San Francisco, CA 94016" -211058,Apple Airpods Headphones,1,150,06/22/19 15:55,"438 13th St, Austin, TX 73301" -211058,Macbook Pro Laptop,1,1700,06/22/19 15:55,"438 13th St, Austin, TX 73301" -211059,Lightning Charging Cable,1,14.95,06/05/19 13:42,"775 West St, Los Angeles, CA 90001" -211060,AA Batteries (4-pack),4,3.84,06/18/19 14:21,"449 Lake St, Los Angeles, CA 90001" -211061,Wired Headphones,2,11.99,06/15/19 13:58,"127 Highland St, Boston, MA 02215" -211062,AA Batteries (4-pack),1,3.84,06/08/19 10:41,"28 Cedar St, Los Angeles, CA 90001" -211063,27in FHD Monitor,1,149.99,06/03/19 20:20,"717 Church St, Portland, OR 97035" -211064,USB-C Charging Cable,1,11.95,06/15/19 18:47,"978 Park St, Seattle, WA 98101" -211065,34in Ultrawide Monitor,1,379.99,06/11/19 15:42,"556 Sunset St, San Francisco, CA 94016" -211066,34in Ultrawide Monitor,1,379.99,06/24/19 21:28,"788 South St, Boston, MA 02215" -211067,Macbook Pro Laptop,1,1700,06/13/19 05:00,"124 Hill St, Seattle, WA 98101" -211068,Macbook Pro Laptop,1,1700,06/13/19 10:18,"697 Church St, San Francisco, CA 94016" -211069,AA Batteries (4-pack),1,3.84,06/12/19 19:55,"246 11th St, Atlanta, GA 30301" -211070,Google Phone,1,600,06/04/19 14:49,"806 River St, New York City, NY 10001" -211071,Bose SoundSport Headphones,1,99.99,06/12/19 10:51,"474 North St, Atlanta, GA 30301" -211072,USB-C Charging Cable,2,11.95,06/25/19 08:48,"534 7th St, Seattle, WA 98101" -211073,AAA Batteries (4-pack),1,2.99,06/11/19 18:56,"433 Center St, New York City, NY 10001" -211074,Vareebadd Phone,1,400,06/22/19 13:27,"513 Walnut St, Portland, OR 97035" -211074,Bose SoundSport Headphones,1,99.99,06/22/19 13:27,"513 Walnut St, Portland, OR 97035" -211075,AA Batteries (4-pack),1,3.84,06/16/19 16:19,"209 Center St, New York City, NY 10001" -211076,Bose SoundSport Headphones,1,99.99,06/09/19 13:21,"33 Madison St, San Francisco, CA 94016" -211077,Lightning Charging Cable,1,14.95,06/30/19 18:45,"694 Highland St, New York City, NY 10001" -211078,AA Batteries (4-pack),1,3.84,06/23/19 18:19,"692 2nd St, Seattle, WA 98101" -211079,AA Batteries (4-pack),1,3.84,06/21/19 19:26,"460 Highland St, Seattle, WA 98101" -211080,Apple Airpods Headphones,1,150,06/14/19 21:23,"776 4th St, Boston, MA 02215" -211081,Apple Airpods Headphones,1,150,06/03/19 14:13,"116 Madison St, Los Angeles, CA 90001" -211082,AA Batteries (4-pack),1,3.84,06/16/19 17:51,"152 5th St, San Francisco, CA 94016" -211083,USB-C Charging Cable,1,11.95,06/11/19 20:18,"425 Johnson St, Atlanta, GA 30301" -211084,Lightning Charging Cable,1,14.95,06/09/19 11:16,"831 Jefferson St, Atlanta, GA 30301" -211085,USB-C Charging Cable,1,11.95,06/10/19 00:37,"760 13th St, New York City, NY 10001" -211086,Wired Headphones,1,11.99,06/24/19 08:40,"461 Adams St, Boston, MA 02215" -211087,Google Phone,1,600,06/06/19 12:58,"510 2nd St, San Francisco, CA 94016" -211088,iPhone,1,700,06/13/19 22:14,"731 Lakeview St, Seattle, WA 98101" -211089,iPhone,1,700,06/15/19 11:11,"102 Elm St, New York City, NY 10001" -211090,27in 4K Gaming Monitor,1,389.99,06/09/19 21:10,"245 Hickory St, Seattle, WA 98101" -211091,27in FHD Monitor,1,149.99,06/18/19 07:27,"325 Meadow St, New York City, NY 10001" -211092,USB-C Charging Cable,1,11.95,06/17/19 19:13,"633 8th St, Boston, MA 02215" -211093,Flatscreen TV,1,300,06/20/19 16:02,"420 10th St, Los Angeles, CA 90001" -211094,AAA Batteries (4-pack),1,2.99,06/18/19 11:31,"942 Highland St, Austin, TX 73301" -211094,AA Batteries (4-pack),2,3.84,06/18/19 11:31,"942 Highland St, Austin, TX 73301" -211095,Lightning Charging Cable,1,14.95,06/20/19 20:30,"952 Johnson St, San Francisco, CA 94016" -211096,Lightning Charging Cable,1,14.95,06/07/19 10:09,"969 Jefferson St, New York City, NY 10001" -211097,AAA Batteries (4-pack),9,2.99,06/23/19 08:29,"338 Hickory St, Los Angeles, CA 90001" -211098,34in Ultrawide Monitor,1,379.99,06/02/19 16:17,"668 Dogwood St, Boston, MA 02215" -211099,Wired Headphones,1,11.99,06/23/19 01:11,"696 Walnut St, New York City, NY 10001" -211100,Vareebadd Phone,1,400,06/25/19 16:47,"342 Main St, Los Angeles, CA 90001" -211101,Apple Airpods Headphones,1,150,06/18/19 18:02,"935 North St, San Francisco, CA 94016" -211101,USB-C Charging Cable,1,11.95,06/18/19 18:02,"935 North St, San Francisco, CA 94016" -211102,34in Ultrawide Monitor,1,379.99,06/09/19 21:52,"826 Jefferson St, San Francisco, CA 94016" -211103,AAA Batteries (4-pack),1,2.99,06/08/19 20:21,"896 Hill St, San Francisco, CA 94016" -211104,AA Batteries (4-pack),3,3.84,06/19/19 16:46,"166 4th St, Austin, TX 73301" -211105,Google Phone,1,600,06/09/19 14:13,"217 Washington St, Seattle, WA 98101" -211105,USB-C Charging Cable,1,11.95,06/09/19 14:13,"217 Washington St, Seattle, WA 98101" -211106,Google Phone,1,600,06/15/19 18:22,"958 Main St, Austin, TX 73301" -211107,Apple Airpods Headphones,1,150,06/16/19 22:31,"147 11th St, Los Angeles, CA 90001" -211108,USB-C Charging Cable,1,11.95,06/29/19 19:33,"904 10th St, San Francisco, CA 94016" -211109,Bose SoundSport Headphones,1,99.99,06/04/19 10:13,"24 Jefferson St, Los Angeles, CA 90001" -211110,ThinkPad Laptop,1,999.99,06/30/19 13:08,"35 Cedar St, San Francisco, CA 94016" -211111,Bose SoundSport Headphones,1,99.99,06/27/19 15:44,"541 Chestnut St, Boston, MA 02215" -211112,Flatscreen TV,1,300,06/11/19 14:44,"58 12th St, San Francisco, CA 94016" -211113,AAA Batteries (4-pack),2,2.99,06/19/19 16:51,"637 1st St, Portland, OR 97035" -211114,Wired Headphones,1,11.99,06/30/19 20:15,"310 Spruce St, Seattle, WA 98101" -211115,27in 4K Gaming Monitor,1,389.99,06/05/19 12:09,"515 Spruce St, Portland, ME 04101" -211116,Lightning Charging Cable,1,14.95,06/19/19 01:27,"734 14th St, San Francisco, CA 94016" -211117,AA Batteries (4-pack),2,3.84,06/30/19 22:05,"31 Chestnut St, Seattle, WA 98101" -211118,Bose SoundSport Headphones,1,99.99,06/25/19 16:47,"869 Adams St, San Francisco, CA 94016" -211119,Lightning Charging Cable,1,14.95,06/03/19 16:38,"936 Chestnut St, San Francisco, CA 94016" -211120,20in Monitor,1,109.99,06/30/19 18:31,"110 Madison St, Atlanta, GA 30301" -211121,34in Ultrawide Monitor,1,379.99,06/14/19 21:53,"800 8th St, Seattle, WA 98101" -211122,Apple Airpods Headphones,1,150,06/07/19 14:48,"711 12th St, Atlanta, GA 30301" -211123,AAA Batteries (4-pack),1,2.99,06/30/19 06:26,"406 10th St, New York City, NY 10001" -211124,iPhone,1,700,06/30/19 18:41,"814 5th St, San Francisco, CA 94016" -211124,Lightning Charging Cable,1,14.95,06/30/19 18:41,"814 5th St, San Francisco, CA 94016" -211125,AA Batteries (4-pack),1,3.84,06/24/19 13:44,"69 Chestnut St, San Francisco, CA 94016" -211126,AA Batteries (4-pack),1,3.84,06/08/19 11:34,"767 Park St, New York City, NY 10001" -211127,34in Ultrawide Monitor,1,379.99,06/20/19 18:59,"431 Hickory St, Seattle, WA 98101" -211128,Wired Headphones,1,11.99,06/10/19 16:25,"317 10th St, New York City, NY 10001" -211129,Apple Airpods Headphones,1,150,06/22/19 18:39,"407 Center St, Portland, OR 97035" -211130,AA Batteries (4-pack),1,3.84,06/01/19 17:57,"168 Adams St, Dallas, TX 75001" -211131,AA Batteries (4-pack),2,3.84,06/10/19 18:05,"406 Chestnut St, New York City, NY 10001" -211132,USB-C Charging Cable,1,11.95,06/29/19 20:40,"572 Ridge St, Los Angeles, CA 90001" -211133,27in FHD Monitor,1,149.99,06/04/19 00:33,"572 13th St, Atlanta, GA 30301" -211134,Google Phone,1,600,06/18/19 18:42,"660 Center St, San Francisco, CA 94016" -211134,USB-C Charging Cable,1,11.95,06/18/19 18:42,"660 Center St, San Francisco, CA 94016" -211135,iPhone,1,700,06/03/19 01:36,"753 Cedar St, Los Angeles, CA 90001" -211136,Lightning Charging Cable,1,14.95,06/14/19 20:43,"586 Forest St, Austin, TX 73301" -211137,USB-C Charging Cable,1,11.95,06/13/19 20:43,"203 2nd St, San Francisco, CA 94016" -211138,27in FHD Monitor,1,149.99,06/20/19 06:46,"234 1st St, Dallas, TX 75001" -211139,34in Ultrawide Monitor,1,379.99,06/12/19 15:18,"742 Spruce St, New York City, NY 10001" -211140,Wired Headphones,1,11.99,06/24/19 10:47,"825 Center St, Atlanta, GA 30301" -211141,Lightning Charging Cable,1,14.95,06/21/19 20:17,"151 Forest St, Austin, TX 73301" -211142,27in FHD Monitor,1,149.99,06/20/19 23:36,"205 1st St, Portland, ME 04101" -211143,Wired Headphones,1,11.99,06/30/19 14:11,"679 Pine St, New York City, NY 10001" -211144,Wired Headphones,1,11.99,06/07/19 19:12,"202 12th St, Dallas, TX 75001" -211145,27in 4K Gaming Monitor,1,389.99,06/10/19 20:06,"757 4th St, San Francisco, CA 94016" -211146,Wired Headphones,1,11.99,06/22/19 01:06,"900 10th St, San Francisco, CA 94016" -211147,Lightning Charging Cable,1,14.95,06/17/19 18:07,"935 9th St, Seattle, WA 98101" -211148,AA Batteries (4-pack),1,3.84,06/10/19 14:36,"766 Center St, San Francisco, CA 94016" -211149,AAA Batteries (4-pack),1,2.99,06/29/19 12:52,"809 Center St, Los Angeles, CA 90001" -211150,AA Batteries (4-pack),1,3.84,06/13/19 15:20,"60 13th St, San Francisco, CA 94016" -211151,Bose SoundSport Headphones,1,99.99,06/26/19 13:07,"104 Washington St, Portland, OR 97035" -211152,Lightning Charging Cable,1,14.95,06/20/19 11:12,"619 Jefferson St, San Francisco, CA 94016" -211153,Bose SoundSport Headphones,1,99.99,06/10/19 15:08,"556 1st St, New York City, NY 10001" -211154,Apple Airpods Headphones,1,150,06/03/19 21:45,"989 4th St, New York City, NY 10001" -211155,AAA Batteries (4-pack),2,2.99,06/29/19 10:09,"67 Forest St, San Francisco, CA 94016" -211156,ThinkPad Laptop,1,999.99,06/09/19 12:21,"533 Ridge St, San Francisco, CA 94016" -211157,AAA Batteries (4-pack),2,2.99,06/22/19 20:27,"947 11th St, Boston, MA 02215" -211158,Apple Airpods Headphones,1,150,06/23/19 13:09,"465 Walnut St, New York City, NY 10001" -211159,AAA Batteries (4-pack),1,2.99,06/21/19 13:08,"34 Johnson St, San Francisco, CA 94016" -211160,27in 4K Gaming Monitor,1,389.99,06/12/19 23:33,"347 Washington St, Atlanta, GA 30301" -211161,AAA Batteries (4-pack),2,2.99,06/25/19 21:29,"20 Spruce St, San Francisco, CA 94016" -211162,AA Batteries (4-pack),1,3.84,06/21/19 14:31,"843 Lake St, Atlanta, GA 30301" -211163,AA Batteries (4-pack),1,3.84,06/12/19 15:48,"832 Pine St, Los Angeles, CA 90001" -211164,iPhone,1,700,06/20/19 11:29,"815 West St, Los Angeles, CA 90001" -211165,AAA Batteries (4-pack),2,2.99,06/27/19 11:02,"130 Highland St, San Francisco, CA 94016" -211166,AA Batteries (4-pack),1,3.84,06/16/19 08:34,"614 Madison St, Los Angeles, CA 90001" -211167,Apple Airpods Headphones,1,150,06/28/19 07:54,"42 9th St, San Francisco, CA 94016" -211168,AAA Batteries (4-pack),1,2.99,06/20/19 17:39,"34 7th St, Dallas, TX 75001" -211169,LG Washing Machine,1,600.0,06/15/19 10:52,"297 2nd St, Boston, MA 02215" -211170,Lightning Charging Cable,1,14.95,06/20/19 15:58,"238 Main St, San Francisco, CA 94016" -211171,20in Monitor,1,109.99,06/11/19 06:11,"408 14th St, Boston, MA 02215" -211172,27in 4K Gaming Monitor,1,389.99,06/03/19 20:35,"405 Wilson St, Boston, MA 02215" -211173,Lightning Charging Cable,1,14.95,06/20/19 17:52,"102 West St, Boston, MA 02215" -211174,USB-C Charging Cable,1,11.95,06/13/19 22:36,"53 Washington St, Los Angeles, CA 90001" -211175,AAA Batteries (4-pack),2,2.99,06/11/19 15:26,"955 Pine St, Boston, MA 02215" -211176,Lightning Charging Cable,1,14.95,06/22/19 09:23,"849 9th St, New York City, NY 10001" -211177,USB-C Charging Cable,1,11.95,06/10/19 11:39,"236 8th St, New York City, NY 10001" -211178,27in 4K Gaming Monitor,1,389.99,06/10/19 10:34,"446 West St, Los Angeles, CA 90001" -211179,Wired Headphones,1,11.99,06/05/19 14:59,"986 Forest St, Seattle, WA 98101" -211180,Apple Airpods Headphones,1,150,06/27/19 12:45,"60 10th St, New York City, NY 10001" -211181,Flatscreen TV,1,300,06/29/19 08:48,"151 Washington St, Austin, TX 73301" -211182,Lightning Charging Cable,1,14.95,06/30/19 11:05,"265 12th St, Dallas, TX 75001" -211183,Wired Headphones,1,11.99,06/16/19 01:03,"892 11th St, Dallas, TX 75001" -211184,Wired Headphones,1,11.99,06/22/19 12:41,"462 9th St, Portland, ME 04101" -211185,34in Ultrawide Monitor,1,379.99,06/02/19 07:17,"643 Cherry St, New York City, NY 10001" -211186,Wired Headphones,1,11.99,06/13/19 16:07,"30 Main St, New York City, NY 10001" -211186,34in Ultrawide Monitor,1,379.99,06/13/19 16:07,"30 Main St, New York City, NY 10001" -211187,20in Monitor,1,109.99,06/29/19 19:15,"306 Jefferson St, Los Angeles, CA 90001" -211188,Google Phone,1,600,06/22/19 14:56,"842 9th St, San Francisco, CA 94016" -211188,USB-C Charging Cable,1,11.95,06/22/19 14:56,"842 9th St, San Francisco, CA 94016" -211189,Apple Airpods Headphones,1,150,06/10/19 12:33,"723 Center St, New York City, NY 10001" -211190,20in Monitor,1,109.99,06/17/19 17:50,"620 10th St, San Francisco, CA 94016" -211191,AAA Batteries (4-pack),1,2.99,06/29/19 00:17,"482 5th St, San Francisco, CA 94016" -211192,Apple Airpods Headphones,1,150,06/06/19 19:33,"585 Lake St, Portland, ME 04101" -211193,AA Batteries (4-pack),1,3.84,06/08/19 12:30,"900 Madison St, New York City, NY 10001" -211193,USB-C Charging Cable,1,11.95,06/08/19 12:30,"900 Madison St, New York City, NY 10001" -211194,Bose SoundSport Headphones,1,99.99,06/19/19 22:29,"533 Meadow St, San Francisco, CA 94016" -211195,Lightning Charging Cable,1,14.95,06/22/19 22:30,"554 Highland St, New York City, NY 10001" -211196,Flatscreen TV,1,300,06/22/19 11:24,"11 Center St, Austin, TX 73301" -211197,Apple Airpods Headphones,1,150,06/27/19 13:28,"379 Lakeview St, New York City, NY 10001" -211198,Wired Headphones,1,11.99,06/30/19 23:54,"350 Hill St, Los Angeles, CA 90001" -211199,AAA Batteries (4-pack),1,2.99,06/24/19 17:53,"15 Dogwood St, Los Angeles, CA 90001" -211200,Wired Headphones,1,11.99,06/20/19 14:56,"230 Adams St, Boston, MA 02215" -211201,Lightning Charging Cable,1,14.95,06/20/19 16:16,"42 Lakeview St, Atlanta, GA 30301" -211202,AAA Batteries (4-pack),3,2.99,06/02/19 18:38,"750 7th St, Boston, MA 02215" -,,,,, -211203,Macbook Pro Laptop,1,1700,06/27/19 11:56,"358 8th St, Atlanta, GA 30301" -211204,Wired Headphones,1,11.99,06/18/19 21:03,"551 8th St, Atlanta, GA 30301" -211205,20in Monitor,1,109.99,06/14/19 14:32,"599 Jefferson St, Boston, MA 02215" -211206,AAA Batteries (4-pack),2,2.99,06/26/19 22:39,"458 Main St, San Francisco, CA 94016" -211207,LG Washing Machine,1,600.0,06/07/19 15:14,"65 Pine St, Seattle, WA 98101" -211208,AAA Batteries (4-pack),1,2.99,06/23/19 15:48,"253 Park St, Boston, MA 02215" -211209,Lightning Charging Cable,1,14.95,06/18/19 23:36,"70 Church St, Dallas, TX 75001" -211210,Lightning Charging Cable,1,14.95,06/10/19 00:32,"530 Madison St, San Francisco, CA 94016" -211211,AAA Batteries (4-pack),1,2.99,06/08/19 23:16,"117 West St, Los Angeles, CA 90001" -211212,Lightning Charging Cable,1,14.95,06/16/19 20:02,"884 11th St, Portland, OR 97035" -211213,Lightning Charging Cable,1,14.95,06/30/19 11:55,"860 Meadow St, Austin, TX 73301" -211214,Bose SoundSport Headphones,1,99.99,06/26/19 16:51,"157 4th St, Seattle, WA 98101" -211215,Wired Headphones,2,11.99,06/08/19 23:04,"69 2nd St, New York City, NY 10001" -211216,AA Batteries (4-pack),3,3.84,06/04/19 06:01,"529 West St, Portland, OR 97035" -211217,Bose SoundSport Headphones,1,99.99,06/10/19 07:12,"263 Highland St, Portland, ME 04101" -211218,Bose SoundSport Headphones,1,99.99,06/16/19 22:38,"448 Church St, Portland, ME 04101" -211219,27in FHD Monitor,1,149.99,06/08/19 21:25,"285 Forest St, San Francisco, CA 94016" -211220,20in Monitor,1,109.99,06/24/19 14:15,"346 Spruce St, Atlanta, GA 30301" -211221,AA Batteries (4-pack),2,3.84,06/10/19 23:28,"146 Johnson St, San Francisco, CA 94016" -211222,USB-C Charging Cable,1,11.95,06/23/19 16:01,"512 Johnson St, Atlanta, GA 30301" -211223,AA Batteries (4-pack),1,3.84,06/29/19 15:12,"422 West St, Los Angeles, CA 90001" -211224,34in Ultrawide Monitor,1,379.99,06/10/19 14:58,"27 8th St, Dallas, TX 75001" -211225,27in FHD Monitor,1,149.99,06/07/19 14:55,"838 Ridge St, Boston, MA 02215" -211226,USB-C Charging Cable,1,11.95,06/25/19 13:01,"201 4th St, Boston, MA 02215" -211227,20in Monitor,1,109.99,06/01/19 13:18,"476 Ridge St, Portland, OR 97035" -211228,USB-C Charging Cable,1,11.95,06/18/19 15:50,"621 Pine St, Dallas, TX 75001" -211229,USB-C Charging Cable,1,11.95,06/10/19 21:19,"610 Church St, Los Angeles, CA 90001" -211230,27in FHD Monitor,1,149.99,06/23/19 14:02,"859 Main St, San Francisco, CA 94016" -211231,AA Batteries (4-pack),1,3.84,06/05/19 10:24,"444 Cedar St, Portland, OR 97035" -211231,Wired Headphones,1,11.99,06/05/19 10:24,"444 Cedar St, Portland, OR 97035" -211232,Bose SoundSport Headphones,1,99.99,06/06/19 11:07,"75 Hickory St, San Francisco, CA 94016" -211233,27in FHD Monitor,1,149.99,06/14/19 07:41,"715 7th St, Portland, OR 97035" -211234,Bose SoundSport Headphones,1,99.99,06/05/19 19:49,"607 Hickory St, Dallas, TX 75001" -211235,AA Batteries (4-pack),1,3.84,06/04/19 16:48,"482 Church St, Los Angeles, CA 90001" -211235,AA Batteries (4-pack),1,3.84,06/04/19 16:48,"482 Church St, Los Angeles, CA 90001" -211236,AAA Batteries (4-pack),1,2.99,06/10/19 10:24,"274 Jefferson St, Austin, TX 73301" -211237,USB-C Charging Cable,1,11.95,06/17/19 23:48,"67 Madison St, Seattle, WA 98101" -211238,Apple Airpods Headphones,1,150,06/03/19 13:46,"5 Elm St, New York City, NY 10001" -211239,34in Ultrawide Monitor,1,379.99,06/22/19 08:00,"116 13th St, Seattle, WA 98101" -211240,Flatscreen TV,1,300,06/28/19 18:38,"875 13th St, New York City, NY 10001" -211241,AA Batteries (4-pack),2,3.84,06/11/19 20:52,"575 Jefferson St, Los Angeles, CA 90001" -211242,AAA Batteries (4-pack),1,2.99,06/10/19 19:57,"709 Walnut St, San Francisco, CA 94016" -211243,27in 4K Gaming Monitor,1,389.99,06/16/19 18:22,"274 Lake St, Los Angeles, CA 90001" -211244,USB-C Charging Cable,1,11.95,06/14/19 07:06,"640 5th St, Los Angeles, CA 90001" -211245,Wired Headphones,1,11.99,06/12/19 14:33,"125 Cherry St, Boston, MA 02215" -211246,34in Ultrawide Monitor,1,379.99,06/27/19 14:24,"766 Hill St, Los Angeles, CA 90001" -211247,USB-C Charging Cable,1,11.95,06/30/19 20:40,"815 13th St, San Francisco, CA 94016" -211248,Bose SoundSport Headphones,1,99.99,06/13/19 19:36,"384 8th St, New York City, NY 10001" -211249,AAA Batteries (4-pack),1,2.99,06/19/19 14:55,"357 Dogwood St, Los Angeles, CA 90001" -211250,Apple Airpods Headphones,1,150,06/10/19 19:44,"169 Main St, Dallas, TX 75001" -211251,AAA Batteries (4-pack),1,2.99,06/18/19 17:26,"54 Chestnut St, Los Angeles, CA 90001" -211252,AA Batteries (4-pack),1,3.84,06/12/19 20:27,"90 Forest St, Atlanta, GA 30301" -211253,27in FHD Monitor,1,149.99,06/16/19 22:53,"315 Center St, New York City, NY 10001" -211254,Wired Headphones,1,11.99,06/28/19 16:40,"900 Dogwood St, San Francisco, CA 94016" -211255,34in Ultrawide Monitor,1,379.99,06/30/19 17:25,"457 12th St, San Francisco, CA 94016" -211255,AAA Batteries (4-pack),1,2.99,06/30/19 17:25,"457 12th St, San Francisco, CA 94016" -211256,Vareebadd Phone,1,400,06/30/19 05:17,"769 Dogwood St, Los Angeles, CA 90001" -211257,Wired Headphones,1,11.99,06/19/19 18:01,"10 6th St, San Francisco, CA 94016" -211258,Lightning Charging Cable,1,14.95,06/17/19 21:17,"100 Church St, Portland, OR 97035" -211259,Apple Airpods Headphones,1,150,06/12/19 09:12,"538 West St, Atlanta, GA 30301" -211260,AAA Batteries (4-pack),1,2.99,06/22/19 13:26,"734 Johnson St, San Francisco, CA 94016" -211261,Bose SoundSport Headphones,1,99.99,06/03/19 15:35,"234 Lakeview St, Atlanta, GA 30301" -211262,ThinkPad Laptop,1,999.99,06/19/19 13:36,"305 10th St, San Francisco, CA 94016" -211263,ThinkPad Laptop,1,999.99,06/04/19 22:51,"823 Willow St, San Francisco, CA 94016" -211264,USB-C Charging Cable,2,11.95,06/07/19 16:50,"654 Lakeview St, Dallas, TX 75001" -,,,,, -211265,Wired Headphones,1,11.99,06/28/19 15:32,"74 Maple St, Dallas, TX 75001" -211266,Lightning Charging Cable,1,14.95,06/22/19 22:17,"279 1st St, Los Angeles, CA 90001" -211267,Wired Headphones,1,11.99,06/21/19 18:29,"255 Center St, New York City, NY 10001" -211268,Lightning Charging Cable,1,14.95,06/13/19 20:31,"906 Center St, Boston, MA 02215" -211269,Wired Headphones,1,11.99,06/12/19 16:15,"948 10th St, San Francisco, CA 94016" -211270,USB-C Charging Cable,2,11.95,06/08/19 10:03,"314 Willow St, Los Angeles, CA 90001" -211271,AAA Batteries (4-pack),3,2.99,06/05/19 00:41,"578 Johnson St, Atlanta, GA 30301" -211272,34in Ultrawide Monitor,1,379.99,06/18/19 15:16,"531 Spruce St, San Francisco, CA 94016" -211273,Bose SoundSport Headphones,1,99.99,06/24/19 17:35,"320 6th St, Dallas, TX 75001" -211274,AAA Batteries (4-pack),1,2.99,06/27/19 00:01,"942 Washington St, New York City, NY 10001" -211275,Apple Airpods Headphones,1,150,06/21/19 09:53,"807 Walnut St, New York City, NY 10001" -211276,20in Monitor,1,109.99,06/20/19 08:50,"144 Hill St, New York City, NY 10001" -211277,AAA Batteries (4-pack),1,2.99,06/15/19 11:20,"916 Cedar St, Dallas, TX 75001" -211278,AAA Batteries (4-pack),2,2.99,06/16/19 20:02,"310 Lakeview St, San Francisco, CA 94016" -211279,Google Phone,1,600,06/22/19 21:33,"869 North St, Atlanta, GA 30301" -211280,Bose SoundSport Headphones,1,99.99,06/29/19 09:51,"168 11th St, Portland, OR 97035" -211281,Wired Headphones,1,11.99,06/17/19 08:30,"418 Forest St, New York City, NY 10001" -211282,ThinkPad Laptop,1,999.99,06/01/19 11:16,"396 Hill St, Los Angeles, CA 90001" -211283,Wired Headphones,1,11.99,06/09/19 11:02,"711 Cherry St, San Francisco, CA 94016" -211284,Apple Airpods Headphones,1,150,06/18/19 00:30,"984 13th St, Portland, OR 97035" -211285,AA Batteries (4-pack),1,3.84,06/08/19 11:54,"860 Pine St, Los Angeles, CA 90001" -211286,Bose SoundSport Headphones,1,99.99,06/12/19 19:13,"481 12th St, San Francisco, CA 94016" -211287,Lightning Charging Cable,1,14.95,06/10/19 07:34,"110 Wilson St, Dallas, TX 75001" -211288,27in FHD Monitor,1,149.99,06/20/19 19:53,"182 Highland St, San Francisco, CA 94016" -211289,Wired Headphones,1,11.99,06/13/19 00:05,"803 6th St, Los Angeles, CA 90001" -211290,Apple Airpods Headphones,1,150,06/15/19 09:15,"473 Ridge St, Seattle, WA 98101" -211291,USB-C Charging Cable,1,11.95,06/12/19 13:59,"469 Highland St, Seattle, WA 98101" -211292,20in Monitor,1,109.99,06/21/19 11:36,"865 12th St, Dallas, TX 75001" -211293,Bose SoundSport Headphones,1,99.99,06/11/19 20:52,"935 West St, New York City, NY 10001" -211294,iPhone,1,700,06/11/19 18:31,"112 Sunset St, Atlanta, GA 30301" -211295,Flatscreen TV,1,300,06/29/19 18:04,"523 Highland St, San Francisco, CA 94016" -211296,USB-C Charging Cable,1,11.95,06/22/19 21:15,"306 South St, Boston, MA 02215" -211297,AAA Batteries (4-pack),1,2.99,06/15/19 16:25,"342 Dogwood St, San Francisco, CA 94016" -211298,Apple Airpods Headphones,1,150,06/18/19 13:05,"921 11th St, Los Angeles, CA 90001" -211299,iPhone,1,700,06/03/19 15:54,"203 8th St, Atlanta, GA 30301" -211300,AA Batteries (4-pack),2,3.84,06/10/19 10:09,"115 10th St, Dallas, TX 75001" -211301,Wired Headphones,1,11.99,06/26/19 18:37,"111 Cherry St, Los Angeles, CA 90001" -211302,AAA Batteries (4-pack),2,2.99,06/07/19 13:48,"278 Wilson St, Portland, OR 97035" -211303,AA Batteries (4-pack),1,3.84,06/24/19 09:49,"956 Park St, San Francisco, CA 94016" -211304,ThinkPad Laptop,1,999.99,06/14/19 12:42,"298 West St, Seattle, WA 98101" -211305,Wired Headphones,1,11.99,06/13/19 18:47,"955 12th St, San Francisco, CA 94016" -211306,Flatscreen TV,1,300,06/01/19 11:53,"895 Park St, New York City, NY 10001" -211307,Lightning Charging Cable,1,14.95,06/11/19 12:19,"654 1st St, Los Angeles, CA 90001" -211308,USB-C Charging Cable,1,11.95,06/10/19 21:39,"712 Madison St, Seattle, WA 98101" -211309,AAA Batteries (4-pack),4,2.99,06/19/19 18:14,"151 Chestnut St, New York City, NY 10001" -211310,Apple Airpods Headphones,1,150,06/01/19 07:17,"486 13th St, San Francisco, CA 94016" -211311,USB-C Charging Cable,1,11.95,06/04/19 17:16,"613 Lincoln St, Portland, OR 97035" -211312,AA Batteries (4-pack),3,3.84,06/19/19 20:45,"473 Lincoln St, San Francisco, CA 94016" -211313,20in Monitor,2,109.99,06/08/19 20:25,"322 Maple St, Austin, TX 73301" -211314,Apple Airpods Headphones,1,150,06/25/19 11:09,"787 Lakeview St, Los Angeles, CA 90001" -211315,Wired Headphones,1,11.99,06/04/19 10:49,"619 7th St, Austin, TX 73301" -211316,Bose SoundSport Headphones,1,99.99,06/02/19 18:10,"706 6th St, Seattle, WA 98101" -211317,Bose SoundSport Headphones,2,99.99,06/30/19 15:40,"588 Jackson St, Boston, MA 02215" -211318,Lightning Charging Cable,1,14.95,06/11/19 07:08,"351 Chestnut St, San Francisco, CA 94016" -211319,Lightning Charging Cable,1,14.95,06/27/19 10:37,"718 Park St, Los Angeles, CA 90001" -211320,USB-C Charging Cable,1,11.95,06/24/19 15:36,"222 Cedar St, New York City, NY 10001" -211321,Macbook Pro Laptop,1,1700,06/17/19 07:58,"15 12th St, Portland, OR 97035" -211322,USB-C Charging Cable,1,11.95,06/20/19 00:57,"923 Lake St, New York City, NY 10001" -211323,Google Phone,1,600,06/23/19 15:11,"651 Church St, Seattle, WA 98101" -211324,Macbook Pro Laptop,1,1700,06/17/19 17:29,"532 11th St, Boston, MA 02215" -211325,Wired Headphones,2,11.99,06/19/19 20:06,"442 Elm St, Portland, OR 97035" -211326,iPhone,1,700,06/28/19 13:26,"425 Main St, Seattle, WA 98101" -211327,ThinkPad Laptop,1,999.99,06/06/19 21:05,"930 Ridge St, Los Angeles, CA 90001" -211328,Bose SoundSport Headphones,1,99.99,06/09/19 21:01,"829 1st St, San Francisco, CA 94016" -211329,Apple Airpods Headphones,1,150,06/25/19 07:30,"942 Lincoln St, Atlanta, GA 30301" -211329,27in FHD Monitor,1,149.99,06/25/19 07:30,"942 Lincoln St, Atlanta, GA 30301" -211330,Macbook Pro Laptop,1,1700,06/28/19 11:29,"477 Ridge St, Portland, ME 04101" -211331,AAA Batteries (4-pack),1,2.99,06/07/19 00:04,"785 10th St, Dallas, TX 75001" -211332,Apple Airpods Headphones,1,150,06/11/19 23:51,"830 Church St, Boston, MA 02215" -211333,USB-C Charging Cable,1,11.95,06/28/19 17:05,"90 Hill St, Los Angeles, CA 90001" -211334,Apple Airpods Headphones,1,150,06/04/19 10:57,"545 Lincoln St, Boston, MA 02215" -211335,34in Ultrawide Monitor,1,379.99,06/11/19 13:11,"506 2nd St, San Francisco, CA 94016" -,,,,, -211336,Bose SoundSport Headphones,1,99.99,06/11/19 10:16,"600 Park St, San Francisco, CA 94016" -211337,USB-C Charging Cable,1,11.95,06/15/19 17:39,"434 Hill St, Atlanta, GA 30301" -211338,LG Washing Machine,1,600.0,06/27/19 10:45,"4 Adams St, San Francisco, CA 94016" -211339,USB-C Charging Cable,1,11.95,06/24/19 20:07,"125 Forest St, Los Angeles, CA 90001" -211340,27in FHD Monitor,1,149.99,06/29/19 20:11,"73 Adams St, Dallas, TX 75001" -211341,AAA Batteries (4-pack),1,2.99,06/27/19 17:48,"586 Hickory St, Los Angeles, CA 90001" -211342,AA Batteries (4-pack),1,3.84,06/16/19 18:18,"211 Wilson St, San Francisco, CA 94016" -211343,34in Ultrawide Monitor,1,379.99,06/17/19 19:33,"314 Johnson St, Boston, MA 02215" -211344,USB-C Charging Cable,1,11.95,06/17/19 03:50,"104 Meadow St, New York City, NY 10001" -211345,iPhone,1,700,06/18/19 19:57,"903 Sunset St, Portland, OR 97035" -211346,AAA Batteries (4-pack),1,2.99,06/09/19 17:00,"82 West St, San Francisco, CA 94016" -211347,Vareebadd Phone,1,400,06/15/19 22:11,"22 Cherry St, San Francisco, CA 94016" -211347,USB-C Charging Cable,1,11.95,06/15/19 22:11,"22 Cherry St, San Francisco, CA 94016" -211348,Google Phone,1,600,06/06/19 08:55,"571 Jackson St, San Francisco, CA 94016" -211348,Bose SoundSport Headphones,1,99.99,06/06/19 08:55,"571 Jackson St, San Francisco, CA 94016" -211349,AA Batteries (4-pack),2,3.84,06/10/19 19:58,"873 Sunset St, Atlanta, GA 30301" -211350,AA Batteries (4-pack),1,3.84,06/26/19 09:05,"415 Jackson St, Portland, OR 97035" -211351,ThinkPad Laptop,1,999.99,06/23/19 22:46,"291 Johnson St, Los Angeles, CA 90001" -211352,27in 4K Gaming Monitor,1,389.99,06/20/19 18:04,"302 Park St, Boston, MA 02215" -211353,Wired Headphones,1,11.99,06/11/19 10:55,"100 Meadow St, Austin, TX 73301" -211354,ThinkPad Laptop,1,999.99,06/09/19 12:57,"854 Dogwood St, San Francisco, CA 94016" -211355,iPhone,1,700,06/14/19 10:20,"117 North St, San Francisco, CA 94016" -211355,Apple Airpods Headphones,1,150,06/14/19 10:20,"117 North St, San Francisco, CA 94016" -211356,AAA Batteries (4-pack),1,2.99,06/17/19 15:52,"718 Sunset St, San Francisco, CA 94016" -211357,Lightning Charging Cable,1,14.95,06/08/19 14:07,"847 South St, Atlanta, GA 30301" -211358,USB-C Charging Cable,1,11.95,06/07/19 13:33,"850 River St, Portland, OR 97035" -211359,27in 4K Gaming Monitor,1,389.99,06/01/19 16:40,"608 Lake St, Los Angeles, CA 90001" -211359,AA Batteries (4-pack),1,3.84,06/01/19 16:40,"608 Lake St, Los Angeles, CA 90001" -211360,Apple Airpods Headphones,1,150,06/15/19 09:30,"944 Ridge St, Atlanta, GA 30301" -211361,27in 4K Gaming Monitor,1,389.99,06/10/19 19:42,"593 Wilson St, Portland, OR 97035" -211362,Wired Headphones,1,11.99,06/21/19 09:41,"13 Chestnut St, Portland, OR 97035" -211363,Lightning Charging Cable,1,14.95,06/22/19 15:07,"592 West St, San Francisco, CA 94016" -211364,Bose SoundSport Headphones,1,99.99,06/28/19 06:46,"955 2nd St, Los Angeles, CA 90001" -211365,Wired Headphones,1,11.99,06/29/19 17:56,"580 11th St, Los Angeles, CA 90001" -211366,20in Monitor,1,109.99,06/02/19 14:35,"575 Lincoln St, Seattle, WA 98101" -211367,USB-C Charging Cable,1,11.95,06/08/19 19:47,"541 Hickory St, Portland, OR 97035" -211368,USB-C Charging Cable,1,11.95,06/24/19 10:45,"669 Elm St, New York City, NY 10001" -211369,AA Batteries (4-pack),2,3.84,06/02/19 16:34,"368 Johnson St, San Francisco, CA 94016" -211370,27in 4K Gaming Monitor,1,389.99,06/13/19 18:18,"779 Highland St, Portland, OR 97035" -211371,iPhone,1,700,06/11/19 18:18,"991 11th St, San Francisco, CA 94016" -211372,Wired Headphones,1,11.99,06/01/19 21:01,"154 8th St, Los Angeles, CA 90001" -211373,Apple Airpods Headphones,1,150,06/13/19 23:14,"526 7th St, Austin, TX 73301" -211374,Bose SoundSport Headphones,1,99.99,06/06/19 22:07,"181 8th St, San Francisco, CA 94016" -211375,Apple Airpods Headphones,1,150,06/05/19 18:52,"436 Maple St, Portland, OR 97035" -211376,USB-C Charging Cable,1,11.95,06/06/19 13:43,"573 Cherry St, Dallas, TX 75001" -211377,Flatscreen TV,1,300,06/06/19 19:24,"481 Maple St, Portland, OR 97035" -211377,AA Batteries (4-pack),1,3.84,06/06/19 19:24,"481 Maple St, Portland, OR 97035" -211378,Google Phone,1,600,06/30/19 15:41,"405 Meadow St, New York City, NY 10001" -211379,iPhone,1,700,06/19/19 19:20,"961 Highland St, New York City, NY 10001" -211380,Wired Headphones,1,11.99,06/02/19 22:04,"358 Dogwood St, San Francisco, CA 94016" -211381,AA Batteries (4-pack),1,3.84,06/21/19 21:16,"556 Madison St, San Francisco, CA 94016" -211382,ThinkPad Laptop,1,999.99,06/09/19 23:34,"332 South St, Boston, MA 02215" -211383,27in FHD Monitor,1,149.99,06/25/19 11:41,"413 Jackson St, Los Angeles, CA 90001" -211384,Lightning Charging Cable,1,14.95,06/24/19 12:51,"87 9th St, Dallas, TX 75001" -211385,AAA Batteries (4-pack),1,2.99,06/08/19 18:40,"532 South St, Portland, OR 97035" -211386,27in 4K Gaming Monitor,1,389.99,06/16/19 21:03,"220 7th St, Dallas, TX 75001" -211387,Apple Airpods Headphones,1,150,06/16/19 12:34,"968 Elm St, Los Angeles, CA 90001" -211388,34in Ultrawide Monitor,1,379.99,06/15/19 07:16,"223 11th St, Boston, MA 02215" -211389,Macbook Pro Laptop,1,1700,06/27/19 18:07,"104 Willow St, Portland, OR 97035" -211390,Apple Airpods Headphones,1,150,06/02/19 08:39,"161 River St, Dallas, TX 75001" -211391,27in FHD Monitor,1,149.99,06/04/19 14:16,"613 5th St, New York City, NY 10001" -211392,Macbook Pro Laptop,1,1700,06/18/19 11:50,"782 1st St, San Francisco, CA 94016" -211393,34in Ultrawide Monitor,1,379.99,06/08/19 21:59,"499 9th St, Austin, TX 73301" -211394,27in 4K Gaming Monitor,1,389.99,06/03/19 00:00,"902 Jefferson St, Seattle, WA 98101" -211395,AAA Batteries (4-pack),1,2.99,06/18/19 19:50,"174 Park St, Austin, TX 73301" -211396,AAA Batteries (4-pack),2,2.99,06/11/19 08:52,"324 13th St, Boston, MA 02215" -211397,27in FHD Monitor,1,149.99,06/17/19 14:25,"464 Main St, San Francisco, CA 94016" -211398,Wired Headphones,1,11.99,06/26/19 08:15,"115 Washington St, Boston, MA 02215" -211399,AA Batteries (4-pack),1,3.84,06/14/19 05:46,"204 Walnut St, San Francisco, CA 94016" -211400,27in FHD Monitor,1,149.99,06/25/19 11:04,"723 Jefferson St, San Francisco, CA 94016" -211401,Wired Headphones,1,11.99,06/25/19 21:00,"691 Hill St, Los Angeles, CA 90001" -211402,AA Batteries (4-pack),2,3.84,06/22/19 22:56,"934 Lincoln St, San Francisco, CA 94016" -211403,AAA Batteries (4-pack),2,2.99,06/03/19 19:14,"584 North St, Los Angeles, CA 90001" -211404,27in 4K Gaming Monitor,1,389.99,06/10/19 23:25,"500 9th St, Boston, MA 02215" -211405,USB-C Charging Cable,1,11.95,06/11/19 16:22,"605 2nd St, San Francisco, CA 94016" -211406,ThinkPad Laptop,1,999.99,06/28/19 08:33,"895 Madison St, Atlanta, GA 30301" -211407,USB-C Charging Cable,1,11.95,06/03/19 17:39,"582 Cedar St, New York City, NY 10001" -211408,Wired Headphones,1,11.99,06/05/19 15:46,"791 Wilson St, San Francisco, CA 94016" -211409,34in Ultrawide Monitor,1,379.99,06/23/19 17:10,"778 River St, Portland, OR 97035" -211410,Macbook Pro Laptop,1,1700,06/23/19 11:43,"161 Church St, San Francisco, CA 94016" -211411,Vareebadd Phone,1,400,06/07/19 14:01,"292 Main St, Los Angeles, CA 90001" -211412,AA Batteries (4-pack),2,3.84,06/25/19 07:56,"837 Lake St, Dallas, TX 75001" -211413,iPhone,1,700,06/29/19 15:10,"794 River St, Los Angeles, CA 90001" -211414,Flatscreen TV,1,300,06/04/19 03:19,"808 South St, Los Angeles, CA 90001" -211415,34in Ultrawide Monitor,1,379.99,06/24/19 13:03,"693 Church St, Los Angeles, CA 90001" -211416,Wired Headphones,1,11.99,06/07/19 14:45,"223 Dogwood St, Seattle, WA 98101" -211417,USB-C Charging Cable,1,11.95,06/01/19 19:10,"724 Ridge St, Atlanta, GA 30301" -211418,AA Batteries (4-pack),2,3.84,06/17/19 13:37,"318 7th St, Portland, OR 97035" -211419,Apple Airpods Headphones,1,150,06/02/19 10:46,"731 8th St, San Francisco, CA 94016" -211420,AAA Batteries (4-pack),1,2.99,06/19/19 17:59,"150 Lincoln St, Seattle, WA 98101" -211421,USB-C Charging Cable,1,11.95,06/15/19 14:01,"842 Center St, San Francisco, CA 94016" -211422,Apple Airpods Headphones,1,150,06/12/19 00:32,"303 Forest St, Portland, ME 04101" -211423,Google Phone,1,600,06/22/19 13:15,"568 Wilson St, Portland, OR 97035" -211424,AA Batteries (4-pack),1,3.84,06/02/19 22:31,"483 13th St, Seattle, WA 98101" -211425,AAA Batteries (4-pack),1,2.99,06/04/19 13:40,"23 Center St, Boston, MA 02215" -211426,AA Batteries (4-pack),2,3.84,06/25/19 13:29,"263 Wilson St, San Francisco, CA 94016" -211427,27in 4K Gaming Monitor,1,389.99,06/03/19 00:14,"779 Madison St, Portland, ME 04101" -211428,Lightning Charging Cable,1,14.95,06/08/19 18:21,"717 Dogwood St, San Francisco, CA 94016" -211429,USB-C Charging Cable,1,11.95,06/06/19 22:24,"279 12th St, Atlanta, GA 30301" -211430,27in FHD Monitor,1,149.99,06/03/19 10:57,"534 Main St, Seattle, WA 98101" -211431,Flatscreen TV,1,300,06/15/19 08:09,"641 Maple St, Seattle, WA 98101" -211432,Wired Headphones,1,11.99,06/20/19 19:42,"456 Adams St, Atlanta, GA 30301" -211433,AA Batteries (4-pack),1,3.84,06/29/19 18:19,"271 5th St, Dallas, TX 75001" -211434,27in FHD Monitor,1,149.99,06/26/19 09:24,"446 Hickory St, Los Angeles, CA 90001" -211435,AA Batteries (4-pack),2,3.84,06/25/19 19:12,"186 Wilson St, Atlanta, GA 30301" -211436,LG Dryer,1,600.0,06/15/19 20:49,"1 West St, Los Angeles, CA 90001" -211437,Lightning Charging Cable,1,14.95,06/13/19 10:43,"335 Maple St, San Francisco, CA 94016" -211438,Lightning Charging Cable,1,14.95,06/20/19 11:34,"438 Lincoln St, Los Angeles, CA 90001" -211439,AA Batteries (4-pack),3,3.84,06/28/19 08:17,"976 Elm St, New York City, NY 10001" -211440,AA Batteries (4-pack),3,3.84,06/19/19 09:20,"16 Forest St, New York City, NY 10001" -211441,USB-C Charging Cable,1,11.95,06/06/19 11:01,"677 Highland St, Boston, MA 02215" -211442,AAA Batteries (4-pack),1,2.99,06/05/19 14:46,"340 Jefferson St, San Francisco, CA 94016" -211443,Lightning Charging Cable,1,14.95,06/19/19 16:45,"826 Washington St, Los Angeles, CA 90001" -211444,Apple Airpods Headphones,1,150,06/26/19 05:45,"474 1st St, Dallas, TX 75001" -211445,27in FHD Monitor,1,149.99,06/15/19 16:41,"761 Ridge St, New York City, NY 10001" -211446,Wired Headphones,2,11.99,06/06/19 12:58,"324 Chestnut St, New York City, NY 10001" -211447,USB-C Charging Cable,1,11.95,06/29/19 18:44,"884 West St, San Francisco, CA 94016" -211448,AA Batteries (4-pack),2,3.84,06/14/19 19:27,"676 North St, Dallas, TX 75001" -211449,Apple Airpods Headphones,1,150,06/15/19 20:45,"456 Spruce St, New York City, NY 10001" -211450,AA Batteries (4-pack),1,3.84,06/19/19 21:17,"32 Chestnut St, Dallas, TX 75001" -211451,Lightning Charging Cable,1,14.95,06/02/19 13:24,"537 Walnut St, Atlanta, GA 30301" -211452,Bose SoundSport Headphones,1,99.99,06/20/19 16:42,"1 Forest St, Boston, MA 02215" -211453,iPhone,1,700,06/12/19 07:20,"989 Sunset St, Boston, MA 02215" -211454,USB-C Charging Cable,1,11.95,06/13/19 18:39,"665 Lakeview St, Los Angeles, CA 90001" -211455,AA Batteries (4-pack),3,3.84,06/13/19 12:15,"204 12th St, Los Angeles, CA 90001" -211456,Lightning Charging Cable,2,14.95,06/29/19 19:13,"468 Park St, Dallas, TX 75001" -211457,Apple Airpods Headphones,1,150,06/11/19 12:51,"963 Highland St, New York City, NY 10001" -211458,20in Monitor,1,109.99,06/25/19 12:42,"396 13th St, Seattle, WA 98101" -211459,AAA Batteries (4-pack),1,2.99,06/02/19 11:49,"432 8th St, New York City, NY 10001" -211460,Lightning Charging Cable,1,14.95,06/25/19 13:10,"328 Chestnut St, Seattle, WA 98101" -211461,Wired Headphones,1,11.99,06/25/19 21:24,"153 Willow St, Los Angeles, CA 90001" -211462,Bose SoundSport Headphones,1,99.99,06/12/19 19:16,"708 Hickory St, Dallas, TX 75001" -211463,AAA Batteries (4-pack),1,2.99,06/15/19 13:35,"827 West St, New York City, NY 10001" -211464,20in Monitor,1,109.99,06/09/19 02:05,"937 West St, Dallas, TX 75001" -211465,ThinkPad Laptop,1,999.99,06/25/19 19:21,"351 5th St, New York City, NY 10001" -211466,USB-C Charging Cable,1,11.95,06/16/19 18:20,"634 Forest St, Los Angeles, CA 90001" -211467,iPhone,1,700,06/29/19 23:45,"172 14th St, San Francisco, CA 94016" -211467,Lightning Charging Cable,1,14.95,06/29/19 23:45,"172 14th St, San Francisco, CA 94016" -211468,AAA Batteries (4-pack),1,2.99,06/12/19 15:55,"290 Dogwood St, New York City, NY 10001" -211469,Wired Headphones,2,11.99,06/06/19 18:46,"711 Park St, Austin, TX 73301" -211470,AAA Batteries (4-pack),1,2.99,06/27/19 13:17,"731 Main St, Atlanta, GA 30301" -211471,AAA Batteries (4-pack),1,2.99,06/05/19 21:37,"699 Main St, Portland, ME 04101" -211472,iPhone,1,700,06/11/19 21:37,"826 Jackson St, New York City, NY 10001" -211472,Lightning Charging Cable,1,14.95,06/11/19 21:37,"826 Jackson St, New York City, NY 10001" -211473,AA Batteries (4-pack),1,3.84,06/07/19 17:53,"752 Walnut St, New York City, NY 10001" -211474,27in 4K Gaming Monitor,1,389.99,06/28/19 23:10,"844 Elm St, Atlanta, GA 30301" -211475,Flatscreen TV,1,300,06/10/19 12:56,"232 Park St, San Francisco, CA 94016" -211476,Wired Headphones,1,11.99,06/17/19 04:09,"269 2nd St, Los Angeles, CA 90001" -211477,AA Batteries (4-pack),1,3.84,06/26/19 00:34,"383 Highland St, Seattle, WA 98101" -211478,AAA Batteries (4-pack),1,2.99,06/01/19 13:27,"793 Lake St, New York City, NY 10001" -211478,USB-C Charging Cable,2,11.95,06/01/19 13:27,"793 Lake St, New York City, NY 10001" -211479,Wired Headphones,1,11.99,06/15/19 15:00,"285 12th St, San Francisco, CA 94016" -211480,AAA Batteries (4-pack),1,2.99,06/06/19 13:16,"426 8th St, San Francisco, CA 94016" -211481,Lightning Charging Cable,1,14.95,06/30/19 11:22,"495 14th St, Seattle, WA 98101" -211482,Lightning Charging Cable,1,14.95,06/10/19 14:03,"299 Meadow St, Seattle, WA 98101" -211483,USB-C Charging Cable,2,11.95,06/21/19 22:50,"84 South St, San Francisco, CA 94016" -211484,AAA Batteries (4-pack),1,2.99,06/26/19 12:32,"697 Lakeview St, San Francisco, CA 94016" -211485,USB-C Charging Cable,1,11.95,06/02/19 23:09,"792 Dogwood St, New York City, NY 10001" -211486,AA Batteries (4-pack),1,3.84,06/08/19 21:44,"760 11th St, Los Angeles, CA 90001" -211487,AAA Batteries (4-pack),1,2.99,06/24/19 13:09,"527 Madison St, New York City, NY 10001" -211488,Google Phone,1,600,06/16/19 17:28,"67 12th St, Boston, MA 02215" -211488,AA Batteries (4-pack),1,3.84,06/16/19 17:28,"67 12th St, Boston, MA 02215" -211489,Lightning Charging Cable,1,14.95,06/19/19 04:45,"477 14th St, New York City, NY 10001" -211490,Lightning Charging Cable,2,14.95,06/16/19 13:19,"176 13th St, Boston, MA 02215" -211491,Macbook Pro Laptop,1,1700,06/30/19 11:47,"43 Ridge St, Atlanta, GA 30301" -211492,AA Batteries (4-pack),1,3.84,06/27/19 22:22,"958 Wilson St, San Francisco, CA 94016" -211493,Lightning Charging Cable,1,14.95,06/24/19 14:18,"514 Hill St, San Francisco, CA 94016" -211494,AA Batteries (4-pack),1,3.84,06/24/19 17:28,"696 Walnut St, Atlanta, GA 30301" -211495,AA Batteries (4-pack),2,3.84,06/14/19 14:27,"920 Spruce St, San Francisco, CA 94016" -211496,AAA Batteries (4-pack),2,2.99,06/22/19 17:14,"51 9th St, Atlanta, GA 30301" -211497,27in FHD Monitor,1,149.99,06/22/19 07:50,"131 6th St, San Francisco, CA 94016" -211498,Apple Airpods Headphones,1,150,06/08/19 22:38,"98 Jackson St, Austin, TX 73301" -211499,AA Batteries (4-pack),1,3.84,06/17/19 22:32,"918 Park St, Portland, OR 97035" -211500,USB-C Charging Cable,1,11.95,06/05/19 00:25,"838 Cherry St, Los Angeles, CA 90001" -211501,USB-C Charging Cable,1,11.95,06/06/19 21:52,"898 Hill St, Seattle, WA 98101" -211502,Lightning Charging Cable,1,14.95,06/28/19 20:21,"346 13th St, Portland, OR 97035" -211503,USB-C Charging Cable,2,11.95,06/27/19 15:14,"124 Jefferson St, San Francisco, CA 94016" -211504,Lightning Charging Cable,1,14.95,06/21/19 17:57,"666 Walnut St, New York City, NY 10001" -211505,USB-C Charging Cable,1,11.95,06/27/19 11:11,"347 Cherry St, New York City, NY 10001" -211506,AA Batteries (4-pack),1,3.84,06/29/19 15:57,"40 South St, Portland, OR 97035" -211507,Lightning Charging Cable,1,14.95,06/06/19 18:06,"463 Church St, Atlanta, GA 30301" -211508,Wired Headphones,1,11.99,06/28/19 12:59,"154 River St, Seattle, WA 98101" -211509,27in FHD Monitor,1,149.99,06/03/19 13:49,"549 Ridge St, Portland, OR 97035" -211510,USB-C Charging Cable,1,11.95,06/20/19 19:47,"599 4th St, New York City, NY 10001" -211511,AAA Batteries (4-pack),1,2.99,06/09/19 08:37,"108 West St, San Francisco, CA 94016" -211512,AA Batteries (4-pack),2,3.84,06/24/19 17:34,"449 12th St, San Francisco, CA 94016" -211513,Macbook Pro Laptop,1,1700,06/01/19 12:57,"254 Meadow St, Los Angeles, CA 90001" -211514,Lightning Charging Cable,1,14.95,06/24/19 09:03,"895 Ridge St, Los Angeles, CA 90001" -211515,AA Batteries (4-pack),1,3.84,06/04/19 20:13,"477 Willow St, Atlanta, GA 30301" -211516,34in Ultrawide Monitor,1,379.99,06/07/19 22:18,"100 5th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -211517,Apple Airpods Headphones,1,150,06/16/19 13:09,"508 Lakeview St, Atlanta, GA 30301" -211518,Apple Airpods Headphones,1,150,06/18/19 20:53,"493 11th St, Atlanta, GA 30301" -211519,Wired Headphones,1,11.99,06/16/19 19:01,"533 Hickory St, Austin, TX 73301" -211520,AAA Batteries (4-pack),2,2.99,06/11/19 17:38,"159 Pine St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -211521,Bose SoundSport Headphones,1,99.99,06/05/19 12:28,"380 Johnson St, San Francisco, CA 94016" -211522,Lightning Charging Cable,1,14.95,06/14/19 18:42,"152 Park St, San Francisco, CA 94016" -211523,USB-C Charging Cable,1,11.95,06/17/19 16:24,"457 1st St, San Francisco, CA 94016" -211524,AAA Batteries (4-pack),1,2.99,06/09/19 22:26,"158 14th St, Los Angeles, CA 90001" -211525,LG Washing Machine,1,600.0,06/07/19 21:33,"837 Maple St, Seattle, WA 98101" -211526,Vareebadd Phone,1,400,06/25/19 13:33,"863 Wilson St, Austin, TX 73301" -211527,AA Batteries (4-pack),1,3.84,06/21/19 16:29,"198 Jefferson St, Dallas, TX 75001" -211528,AA Batteries (4-pack),3,3.84,06/19/19 12:00,"506 Lakeview St, San Francisco, CA 94016" -211529,27in FHD Monitor,1,149.99,06/06/19 12:08,"678 Park St, Los Angeles, CA 90001" -211530,Wired Headphones,1,11.99,06/19/19 10:36,"202 11th St, Atlanta, GA 30301" -211531,AAA Batteries (4-pack),1,2.99,06/23/19 13:43,"781 Pine St, San Francisco, CA 94016" -211532,AA Batteries (4-pack),2,3.84,06/28/19 10:58,"930 Main St, New York City, NY 10001" -211533,Google Phone,1,600,06/17/19 17:04,"504 Main St, San Francisco, CA 94016" -211533,USB-C Charging Cable,1,11.95,06/17/19 17:04,"504 Main St, San Francisco, CA 94016" -211534,Wired Headphones,1,11.99,06/30/19 21:17,"78 Chestnut St, Portland, OR 97035" -211535,Bose SoundSport Headphones,1,99.99,06/03/19 10:59,"153 Lincoln St, Los Angeles, CA 90001" -211536,AA Batteries (4-pack),1,3.84,06/06/19 15:39,"354 Forest St, Atlanta, GA 30301" -211537,Wired Headphones,1,11.99,06/03/19 17:32,"496 2nd St, Dallas, TX 75001" -211538,27in 4K Gaming Monitor,1,389.99,06/27/19 13:40,"422 6th St, Los Angeles, CA 90001" -,,,,, -211539,AAA Batteries (4-pack),1,2.99,06/25/19 19:19,"827 Walnut St, New York City, NY 10001" -211540,Lightning Charging Cable,1,14.95,06/14/19 02:43,"871 Willow St, San Francisco, CA 94016" -211541,Lightning Charging Cable,1,14.95,06/09/19 23:34,"723 Cedar St, New York City, NY 10001" -211542,Apple Airpods Headphones,1,150,06/05/19 09:14,"81 West St, Seattle, WA 98101" -211543,Macbook Pro Laptop,1,1700,06/30/19 19:36,"323 Maple St, Seattle, WA 98101" -211544,20in Monitor,1,109.99,06/01/19 23:48,"22 Spruce St, New York City, NY 10001" -211545,AA Batteries (4-pack),1,3.84,06/03/19 20:08,"234 12th St, New York City, NY 10001" -211546,Google Phone,1,600,06/03/19 11:22,"41 Washington St, New York City, NY 10001" -211547,Apple Airpods Headphones,1,150,06/26/19 21:49,"706 Maple St, Boston, MA 02215" -211548,AAA Batteries (4-pack),2,2.99,06/25/19 09:35,"760 Walnut St, Los Angeles, CA 90001" -211549,Wired Headphones,1,11.99,06/14/19 13:16,"635 Main St, San Francisco, CA 94016" -211550,Bose SoundSport Headphones,1,99.99,06/10/19 17:33,"646 Wilson St, San Francisco, CA 94016" -211551,Flatscreen TV,1,300,06/04/19 21:32,"683 South St, Seattle, WA 98101" -211552,AA Batteries (4-pack),1,3.84,06/23/19 12:12,"696 Hill St, San Francisco, CA 94016" -211553,Lightning Charging Cable,1,14.95,06/21/19 16:01,"597 Dogwood St, Atlanta, GA 30301" -211554,Google Phone,1,600,06/28/19 19:44,"866 10th St, Dallas, TX 75001" -211555,AAA Batteries (4-pack),1,2.99,06/08/19 10:17,"779 Chestnut St, San Francisco, CA 94016" -211556,27in 4K Gaming Monitor,1,389.99,06/30/19 22:24,"283 11th St, San Francisco, CA 94016" -211557,20in Monitor,1,109.99,06/21/19 20:57,"131 9th St, Atlanta, GA 30301" -211558,Flatscreen TV,1,300,06/28/19 13:26,"286 11th St, Los Angeles, CA 90001" -211559,AA Batteries (4-pack),2,3.84,06/16/19 20:13,"574 Willow St, Boston, MA 02215" -211559,Lightning Charging Cable,1,14.95,06/16/19 20:13,"574 Willow St, Boston, MA 02215" -211560,AAA Batteries (4-pack),4,2.99,06/18/19 00:13,"51 Main St, Atlanta, GA 30301" -211561,USB-C Charging Cable,2,11.95,06/29/19 09:13,"715 10th St, Atlanta, GA 30301" -211562,Flatscreen TV,1,300,06/06/19 12:32,"765 Cherry St, Dallas, TX 75001" -211563,34in Ultrawide Monitor,1,379.99,06/09/19 14:36,"918 Lincoln St, Seattle, WA 98101" -211564,USB-C Charging Cable,1,11.95,06/01/19 14:05,"864 Highland St, San Francisco, CA 94016" -211565,AAA Batteries (4-pack),1,2.99,06/27/19 15:50,"33 Hickory St, San Francisco, CA 94016" -211566,AA Batteries (4-pack),1,3.84,06/13/19 23:04,"73 South St, Los Angeles, CA 90001" -211567,Apple Airpods Headphones,1,150,06/20/19 10:01,"995 Washington St, Portland, OR 97035" -211567,USB-C Charging Cable,1,11.95,06/20/19 10:01,"995 Washington St, Portland, OR 97035" -211568,AA Batteries (4-pack),1,3.84,06/28/19 23:38,"327 14th St, New York City, NY 10001" -211569,USB-C Charging Cable,1,11.95,06/06/19 22:28,"659 Chestnut St, Atlanta, GA 30301" -211570,Apple Airpods Headphones,1,150,06/05/19 17:27,"856 Washington St, Atlanta, GA 30301" -211571,Wired Headphones,1,11.99,06/01/19 13:30,"422 12th St, Seattle, WA 98101" -211572,27in FHD Monitor,1,149.99,06/03/19 18:26,"511 2nd St, Los Angeles, CA 90001" -211573,27in FHD Monitor,1,149.99,06/18/19 21:30,"725 1st St, San Francisco, CA 94016" -211574,AA Batteries (4-pack),1,3.84,06/04/19 19:51,"193 Madison St, New York City, NY 10001" -211575,Google Phone,1,600,06/30/19 22:04,"979 Chestnut St, San Francisco, CA 94016" -211575,USB-C Charging Cable,1,11.95,06/30/19 22:04,"979 Chestnut St, San Francisco, CA 94016" -211576,Wired Headphones,1,11.99,06/08/19 15:23,"831 Lakeview St, Seattle, WA 98101" -211576,27in 4K Gaming Monitor,1,389.99,06/08/19 15:23,"831 Lakeview St, Seattle, WA 98101" -211577,AA Batteries (4-pack),2,3.84,06/01/19 17:14,"807 1st St, Portland, ME 04101" -211578,Apple Airpods Headphones,1,150,06/22/19 20:23,"650 Jackson St, Boston, MA 02215" -211579,20in Monitor,1,109.99,06/27/19 21:10,"500 Highland St, Seattle, WA 98101" -211580,Google Phone,1,600,06/29/19 23:31,"51 13th St, Dallas, TX 75001" -211580,USB-C Charging Cable,1,11.95,06/29/19 23:31,"51 13th St, Dallas, TX 75001" -211581,Bose SoundSport Headphones,1,99.99,06/08/19 11:11,"605 Hill St, Seattle, WA 98101" -211582,AA Batteries (4-pack),3,3.84,06/12/19 16:30,"21 12th St, Boston, MA 02215" -211583,Wired Headphones,1,11.99,06/10/19 13:13,"995 Jackson St, Seattle, WA 98101" -211584,Wired Headphones,1,11.99,06/27/19 08:57,"153 Church St, Los Angeles, CA 90001" -211585,Lightning Charging Cable,1,14.95,06/27/19 17:54,"220 9th St, New York City, NY 10001" -211586,AAA Batteries (4-pack),1,2.99,06/05/19 17:41,"19 Pine St, Dallas, TX 75001" -211587,USB-C Charging Cable,1,11.95,06/06/19 12:55,"289 Willow St, Portland, OR 97035" -211588,Lightning Charging Cable,1,14.95,06/18/19 14:46,"306 South St, San Francisco, CA 94016" -211589,Vareebadd Phone,1,400,06/17/19 16:52,"371 Forest St, San Francisco, CA 94016" -211590,Bose SoundSport Headphones,1,99.99,06/06/19 09:49,"466 10th St, Boston, MA 02215" -211591,27in 4K Gaming Monitor,1,389.99,06/01/19 20:58,"421 Washington St, Boston, MA 02215" -211592,AA Batteries (4-pack),1,3.84,06/15/19 07:14,"687 North St, Seattle, WA 98101" -211593,20in Monitor,1,109.99,06/26/19 18:49,"693 12th St, Seattle, WA 98101" -211594,Lightning Charging Cable,1,14.95,06/29/19 22:21,"130 4th St, San Francisco, CA 94016" -211595,USB-C Charging Cable,1,11.95,06/02/19 02:50,"423 12th St, Los Angeles, CA 90001" -211596,AA Batteries (4-pack),1,3.84,06/09/19 19:07,"233 Pine St, New York City, NY 10001" -211597,Bose SoundSport Headphones,1,99.99,06/11/19 21:43,"670 Meadow St, New York City, NY 10001" -211598,iPhone,1,700,06/26/19 20:13,"975 Pine St, Los Angeles, CA 90001" -211599,USB-C Charging Cable,1,11.95,06/16/19 14:09,"582 5th St, San Francisco, CA 94016" -211600,Wired Headphones,1,11.99,06/20/19 10:42,"296 North St, Seattle, WA 98101" -211601,Apple Airpods Headphones,1,150,06/02/19 12:49,"581 Elm St, Seattle, WA 98101" -211602,iPhone,1,700,06/26/19 21:43,"988 North St, Atlanta, GA 30301" -211603,Lightning Charging Cable,1,14.95,06/11/19 12:41,"409 Hill St, Los Angeles, CA 90001" -211604,AA Batteries (4-pack),1,3.84,06/26/19 21:23,"960 Johnson St, Portland, OR 97035" -211605,Apple Airpods Headphones,1,150,06/07/19 10:08,"606 Pine St, Atlanta, GA 30301" -211606,Bose SoundSport Headphones,1,99.99,06/20/19 04:12,"177 Spruce St, Seattle, WA 98101" -211607,AA Batteries (4-pack),1,3.84,06/19/19 17:36,"550 6th St, Seattle, WA 98101" -211608,Apple Airpods Headphones,1,150,06/03/19 19:34,"157 Hickory St, Boston, MA 02215" -211609,Google Phone,1,600,06/07/19 13:47,"87 Jefferson St, Portland, OR 97035" -211609,USB-C Charging Cable,1,11.95,06/07/19 13:47,"87 Jefferson St, Portland, OR 97035" -211610,USB-C Charging Cable,1,11.95,06/10/19 18:33,"493 Lincoln St, Dallas, TX 75001" -211611,Bose SoundSport Headphones,1,99.99,06/16/19 21:04,"545 Center St, Portland, OR 97035" -211612,Lightning Charging Cable,1,14.95,06/10/19 14:18,"930 13th St, Atlanta, GA 30301" -211613,USB-C Charging Cable,1,11.95,06/25/19 14:37,"605 Meadow St, Los Angeles, CA 90001" -211614,Lightning Charging Cable,1,14.95,06/12/19 23:43,"791 5th St, Los Angeles, CA 90001" -211615,AAA Batteries (4-pack),2,2.99,06/02/19 16:02,"149 4th St, Seattle, WA 98101" -211616,AA Batteries (4-pack),1,3.84,06/14/19 16:48,"69 Dogwood St, San Francisco, CA 94016" -211617,iPhone,1,700,06/19/19 18:39,"867 Center St, Seattle, WA 98101" -211618,20in Monitor,1,109.99,06/13/19 18:57,"82 Cherry St, Atlanta, GA 30301" -211619,iPhone,1,700,06/09/19 17:44,"858 Maple St, Portland, ME 04101" -211619,Lightning Charging Cable,1,14.95,06/09/19 17:44,"858 Maple St, Portland, ME 04101" -211620,Lightning Charging Cable,1,14.95,06/24/19 18:14,"239 2nd St, San Francisco, CA 94016" -211621,AAA Batteries (4-pack),1,2.99,06/17/19 17:42,"212 12th St, Los Angeles, CA 90001" -211622,Apple Airpods Headphones,1,150,06/12/19 19:27,"632 Main St, Portland, OR 97035" -211623,Macbook Pro Laptop,1,1700,06/04/19 10:24,"444 7th St, Boston, MA 02215" -211624,Macbook Pro Laptop,1,1700,06/01/19 17:49,"226 Cedar St, San Francisco, CA 94016" -211625,34in Ultrawide Monitor,1,379.99,06/10/19 17:24,"203 1st St, New York City, NY 10001" -211626,Wired Headphones,1,11.99,06/06/19 18:26,"844 Pine St, New York City, NY 10001" -211627,Lightning Charging Cable,1,14.95,06/28/19 08:57,"979 Sunset St, San Francisco, CA 94016" -211627,Apple Airpods Headphones,1,150,06/28/19 08:57,"979 Sunset St, San Francisco, CA 94016" -211628,Lightning Charging Cable,1,14.95,06/12/19 14:49,"575 Meadow St, San Francisco, CA 94016" -211629,Lightning Charging Cable,1,14.95,06/09/19 11:03,"482 West St, Austin, TX 73301" -211630,USB-C Charging Cable,1,11.95,06/16/19 11:07,"677 Johnson St, Portland, OR 97035" -211631,LG Dryer,1,600.0,06/29/19 14:25,"955 4th St, Portland, OR 97035" -211632,AA Batteries (4-pack),1,3.84,06/23/19 08:49,"497 14th St, Atlanta, GA 30301" -211633,Flatscreen TV,1,300,06/15/19 21:22,"135 Hickory St, Dallas, TX 75001" -211634,20in Monitor,1,109.99,06/10/19 23:59,"714 Cedar St, New York City, NY 10001" -211635,Lightning Charging Cable,1,14.95,06/04/19 14:05,"776 10th St, New York City, NY 10001" -211636,Wired Headphones,1,11.99,06/12/19 21:22,"470 Hill St, Seattle, WA 98101" -211637,USB-C Charging Cable,1,11.95,06/17/19 10:57,"18 7th St, Atlanta, GA 30301" -211638,iPhone,1,700,06/07/19 05:47,"358 4th St, Los Angeles, CA 90001" -211639,AAA Batteries (4-pack),1,2.99,06/12/19 12:07,"212 Jefferson St, San Francisco, CA 94016" -211640,USB-C Charging Cable,1,11.95,06/21/19 11:34,"712 6th St, Los Angeles, CA 90001" -211641,27in 4K Gaming Monitor,1,389.99,06/16/19 15:24,"531 14th St, Atlanta, GA 30301" -211642,20in Monitor,1,109.99,06/10/19 11:13,"519 Sunset St, San Francisco, CA 94016" -211643,Wired Headphones,1,11.99,06/13/19 13:06,"464 Church St, Atlanta, GA 30301" -211644,AAA Batteries (4-pack),1,2.99,06/18/19 21:28,"517 Highland St, San Francisco, CA 94016" -211645,ThinkPad Laptop,1,999.99,06/28/19 18:07,"507 Sunset St, San Francisco, CA 94016" -211646,Google Phone,1,600,06/02/19 16:44,"682 Jackson St, San Francisco, CA 94016" -211647,AAA Batteries (4-pack),1,2.99,06/18/19 17:36,"527 Center St, San Francisco, CA 94016" -211648,Wired Headphones,1,11.99,06/08/19 08:54,"797 Madison St, Los Angeles, CA 90001" -211649,27in 4K Gaming Monitor,1,389.99,06/05/19 18:32,"129 Park St, Boston, MA 02215" -211650,34in Ultrawide Monitor,1,379.99,06/16/19 18:14,"123 Lakeview St, New York City, NY 10001" -211651,AAA Batteries (4-pack),1,2.99,06/11/19 11:58,"631 1st St, New York City, NY 10001" -211652,34in Ultrawide Monitor,1,379.99,06/21/19 00:28,"881 Lincoln St, Atlanta, GA 30301" -211653,Bose SoundSport Headphones,1,99.99,06/21/19 09:13,"225 Cherry St, New York City, NY 10001" -211654,USB-C Charging Cable,1,11.95,06/13/19 11:44,"782 4th St, Los Angeles, CA 90001" -211655,USB-C Charging Cable,1,11.95,06/02/19 17:10,"580 Cherry St, San Francisco, CA 94016" -211656,Wired Headphones,1,11.99,06/18/19 23:28,"145 Forest St, San Francisco, CA 94016" -211657,Bose SoundSport Headphones,1,99.99,06/15/19 01:08,"929 Jefferson St, Portland, OR 97035" -211658,Bose SoundSport Headphones,1,99.99,06/10/19 12:50,"976 Elm St, San Francisco, CA 94016" -211659,USB-C Charging Cable,1,11.95,06/17/19 23:25,"795 12th St, Los Angeles, CA 90001" -211660,Macbook Pro Laptop,1,1700,06/12/19 10:36,"797 West St, Boston, MA 02215" -211661,27in FHD Monitor,1,149.99,06/09/19 18:28,"141 2nd St, San Francisco, CA 94016" -211662,AAA Batteries (4-pack),1,2.99,06/14/19 17:49,"367 7th St, Seattle, WA 98101" -211663,Wired Headphones,1,11.99,06/15/19 12:54,"979 14th St, Boston, MA 02215" -211664,Wired Headphones,1,11.99,06/06/19 21:19,"147 Johnson St, Boston, MA 02215" -211665,27in FHD Monitor,1,149.99,07/01/19 00:54,"300 9th St, San Francisco, CA 94016" -211666,27in FHD Monitor,1,149.99,06/23/19 10:43,"870 Jackson St, Boston, MA 02215" -211667,Apple Airpods Headphones,1,150,06/20/19 22:53,"504 8th St, New York City, NY 10001" -211668,USB-C Charging Cable,1,11.95,06/18/19 11:08,"707 Church St, New York City, NY 10001" -211669,Macbook Pro Laptop,1,1700,06/29/19 14:32,"821 6th St, Seattle, WA 98101" -211670,Flatscreen TV,1,300,06/07/19 07:10,"495 North St, Dallas, TX 75001" -211671,Apple Airpods Headphones,1,150,06/02/19 22:24,"757 Center St, San Francisco, CA 94016" -211672,Lightning Charging Cable,1,14.95,06/24/19 10:25,"429 Ridge St, Austin, TX 73301" -211673,AAA Batteries (4-pack),1,2.99,06/11/19 08:56,"856 Forest St, New York City, NY 10001" -211674,Apple Airpods Headphones,1,150,06/23/19 20:23,"122 Forest St, New York City, NY 10001" -211675,Bose SoundSport Headphones,1,99.99,06/20/19 21:44,"529 2nd St, San Francisco, CA 94016" -211676,USB-C Charging Cable,1,11.95,06/14/19 11:44,"526 Cherry St, Atlanta, GA 30301" -211677,20in Monitor,1,109.99,06/16/19 21:42,"76 Lincoln St, New York City, NY 10001" -211678,20in Monitor,1,109.99,06/18/19 16:07,"699 Ridge St, San Francisco, CA 94016" -211679,USB-C Charging Cable,1,11.95,06/13/19 16:36,"528 Wilson St, San Francisco, CA 94016" -211680,Apple Airpods Headphones,1,150,06/20/19 09:55,"998 1st St, New York City, NY 10001" -211681,Wired Headphones,1,11.99,06/15/19 12:17,"854 1st St, Los Angeles, CA 90001" -211682,Lightning Charging Cable,1,14.95,06/18/19 16:54,"491 Park St, Portland, OR 97035" -,,,,, -211683,27in FHD Monitor,1,149.99,06/25/19 21:28,"325 Lakeview St, Seattle, WA 98101" -211684,Lightning Charging Cable,1,14.95,06/21/19 18:28,"260 Highland St, Los Angeles, CA 90001" -211685,Bose SoundSport Headphones,1,99.99,06/22/19 14:03,"349 10th St, Seattle, WA 98101" -,,,,, -211686,Flatscreen TV,1,300,06/08/19 11:23,"919 6th St, Atlanta, GA 30301" -211687,AAA Batteries (4-pack),2,2.99,06/15/19 18:40,"247 Johnson St, Boston, MA 02215" -211688,Google Phone,1,600,06/28/19 10:43,"272 Main St, New York City, NY 10001" -211689,Wired Headphones,1,11.99,06/16/19 19:35,"653 2nd St, Dallas, TX 75001" -211690,Lightning Charging Cable,1,14.95,06/25/19 21:59,"955 6th St, Boston, MA 02215" -,,,,, -211691,Bose SoundSport Headphones,1,99.99,06/06/19 14:39,"398 West St, San Francisco, CA 94016" -211692,USB-C Charging Cable,1,11.95,06/29/19 07:54,"369 Chestnut St, Dallas, TX 75001" -211693,AA Batteries (4-pack),1,3.84,06/02/19 12:00,"573 Chestnut St, San Francisco, CA 94016" -211694,Bose SoundSport Headphones,1,99.99,06/07/19 09:34,"571 North St, San Francisco, CA 94016" -211695,Lightning Charging Cable,1,14.95,06/19/19 16:17,"774 Elm St, Dallas, TX 75001" -211696,Bose SoundSport Headphones,1,99.99,06/15/19 20:42,"19 12th St, San Francisco, CA 94016" -211697,27in 4K Gaming Monitor,1,389.99,06/17/19 23:17,"427 Ridge St, New York City, NY 10001" -211698,Google Phone,1,600,06/11/19 22:24,"502 Ridge St, Boston, MA 02215" -211699,Apple Airpods Headphones,1,150,06/27/19 23:36,"917 Forest St, Dallas, TX 75001" -211700,Wired Headphones,1,11.99,06/24/19 11:22,"761 Pine St, San Francisco, CA 94016" -211701,AA Batteries (4-pack),1,3.84,06/26/19 09:27,"660 Center St, Los Angeles, CA 90001" -211702,27in 4K Gaming Monitor,1,389.99,06/18/19 12:38,"442 5th St, Atlanta, GA 30301" -211703,Bose SoundSport Headphones,1,99.99,06/04/19 22:13,"806 Jefferson St, Austin, TX 73301" -211704,Wired Headphones,2,11.99,06/07/19 14:11,"797 Adams St, Austin, TX 73301" -211705,Google Phone,1,600,06/24/19 21:35,"646 7th St, Atlanta, GA 30301" -211706,Bose SoundSport Headphones,1,99.99,06/20/19 17:51,"734 Lakeview St, Los Angeles, CA 90001" -211707,Bose SoundSport Headphones,1,99.99,06/14/19 19:30,"571 Center St, New York City, NY 10001" -211708,Bose SoundSport Headphones,1,99.99,06/17/19 18:46,"104 10th St, Los Angeles, CA 90001" -211709,Wired Headphones,1,11.99,06/05/19 22:33,"373 13th St, Boston, MA 02215" -211710,iPhone,1,700,06/22/19 10:23,"704 Highland St, San Francisco, CA 94016" -211711,Wired Headphones,1,11.99,06/19/19 11:26,"411 Wilson St, San Francisco, CA 94016" -211712,AA Batteries (4-pack),1,3.84,06/12/19 19:41,"753 Elm St, Los Angeles, CA 90001" -211713,Lightning Charging Cable,1,14.95,06/07/19 10:30,"125 2nd St, San Francisco, CA 94016" -211714,AA Batteries (4-pack),1,3.84,06/04/19 19:48,"997 7th St, New York City, NY 10001" -211715,Lightning Charging Cable,1,14.95,06/14/19 14:31,"255 Lake St, San Francisco, CA 94016" -211716,Wired Headphones,1,11.99,06/10/19 09:19,"370 Lakeview St, Boston, MA 02215" -211717,AAA Batteries (4-pack),1,2.99,06/06/19 20:36,"447 Johnson St, New York City, NY 10001" -211718,AA Batteries (4-pack),1,3.84,06/21/19 20:10,"205 Washington St, Portland, OR 97035" -211719,Apple Airpods Headphones,1,150,06/17/19 20:16,"724 13th St, Austin, TX 73301" -211720,Wired Headphones,1,11.99,06/04/19 00:09,"215 Wilson St, San Francisco, CA 94016" -211721,AA Batteries (4-pack),2,3.84,06/04/19 07:50,"843 Chestnut St, Boston, MA 02215" -211722,AAA Batteries (4-pack),1,2.99,06/12/19 18:12,"604 2nd St, Dallas, TX 75001" -211723,Lightning Charging Cable,1,14.95,06/01/19 18:00,"181 South St, Dallas, TX 75001" -211724,Wired Headphones,1,11.99,06/18/19 22:48,"627 Center St, Dallas, TX 75001" -211725,Apple Airpods Headphones,2,150,06/25/19 16:23,"840 2nd St, San Francisco, CA 94016" -211726,Lightning Charging Cable,1,14.95,06/30/19 20:05,"885 Walnut St, Dallas, TX 75001" -211727,AAA Batteries (4-pack),1,2.99,06/25/19 12:34,"747 8th St, Los Angeles, CA 90001" -211728,Apple Airpods Headphones,1,150,06/29/19 19:46,"481 Park St, Atlanta, GA 30301" -211729,USB-C Charging Cable,1,11.95,06/13/19 14:30,"968 Jefferson St, Atlanta, GA 30301" -211730,Wired Headphones,1,11.99,06/28/19 18:23,"305 8th St, San Francisco, CA 94016" -211731,Bose SoundSport Headphones,1,99.99,06/19/19 11:55,"455 10th St, Seattle, WA 98101" -211732,Lightning Charging Cable,1,14.95,06/23/19 08:28,"156 Sunset St, Austin, TX 73301" -211733,Apple Airpods Headphones,1,150,06/28/19 11:13,"681 Elm St, Seattle, WA 98101" -211734,34in Ultrawide Monitor,1,379.99,06/09/19 18:27,"553 14th St, Portland, OR 97035" -211735,USB-C Charging Cable,1,11.95,06/23/19 11:34,"933 Jefferson St, Los Angeles, CA 90001" -211736,34in Ultrawide Monitor,1,379.99,06/23/19 20:01,"131 Maple St, New York City, NY 10001" -211737,34in Ultrawide Monitor,1,379.99,06/18/19 19:57,"434 Elm St, Los Angeles, CA 90001" -211738,USB-C Charging Cable,1,11.95,06/20/19 21:13,"250 Johnson St, Boston, MA 02215" -211739,Apple Airpods Headphones,1,150,06/03/19 12:11,"400 9th St, Portland, OR 97035" -211740,27in FHD Monitor,1,149.99,06/17/19 14:30,"563 South St, San Francisco, CA 94016" -211741,34in Ultrawide Monitor,1,379.99,06/20/19 21:59,"830 Adams St, San Francisco, CA 94016" -211741,27in FHD Monitor,1,149.99,06/20/19 21:59,"830 Adams St, San Francisco, CA 94016" -211742,Google Phone,1,600,06/02/19 18:25,"443 Pine St, San Francisco, CA 94016" -211743,USB-C Charging Cable,1,11.95,06/04/19 18:01,"745 Sunset St, Dallas, TX 75001" -211744,Bose SoundSport Headphones,1,99.99,06/20/19 22:19,"220 Jackson St, Atlanta, GA 30301" -211745,iPhone,1,700,06/18/19 20:20,"582 Hill St, Atlanta, GA 30301" -211745,Lightning Charging Cable,1,14.95,06/18/19 20:20,"582 Hill St, Atlanta, GA 30301" -211746,AA Batteries (4-pack),1,3.84,06/13/19 17:32,"778 14th St, Atlanta, GA 30301" -211747,Wired Headphones,1,11.99,06/21/19 12:02,"697 Church St, New York City, NY 10001" -211748,iPhone,1,700,06/10/19 13:27,"305 Madison St, Seattle, WA 98101" -211748,Lightning Charging Cable,1,14.95,06/10/19 13:27,"305 Madison St, Seattle, WA 98101" -211749,AAA Batteries (4-pack),1,2.99,06/24/19 03:18,"146 Church St, San Francisco, CA 94016" -211750,LG Washing Machine,1,600.0,06/04/19 21:17,"925 Cedar St, Los Angeles, CA 90001" -211751,20in Monitor,1,109.99,06/01/19 15:10,"391 Pine St, San Francisco, CA 94016" -211752,Wired Headphones,1,11.99,06/10/19 11:10,"741 10th St, Dallas, TX 75001" -211753,USB-C Charging Cable,1,11.95,06/20/19 10:47,"321 13th St, New York City, NY 10001" -211754,34in Ultrawide Monitor,1,379.99,06/18/19 23:05,"775 8th St, San Francisco, CA 94016" -211755,USB-C Charging Cable,1,11.95,06/15/19 20:11,"908 River St, Los Angeles, CA 90001" -211756,Lightning Charging Cable,1,14.95,06/27/19 18:01,"496 Sunset St, New York City, NY 10001" -211757,ThinkPad Laptop,1,999.99,06/09/19 15:49,"29 Hill St, Austin, TX 73301" -211758,Wired Headphones,1,11.99,06/19/19 19:35,"810 Center St, New York City, NY 10001" -211759,Bose SoundSport Headphones,1,99.99,06/08/19 16:05,"294 West St, San Francisco, CA 94016" -211760,USB-C Charging Cable,1,11.95,06/30/19 22:01,"873 Elm St, Seattle, WA 98101" -211761,AAA Batteries (4-pack),1,2.99,06/10/19 14:19,"500 Maple St, Seattle, WA 98101" -211762,AA Batteries (4-pack),1,3.84,06/04/19 18:46,"903 Church St, Austin, TX 73301" -211763,Wired Headphones,1,11.99,06/04/19 18:42,"310 Lincoln St, Seattle, WA 98101" -211763,AAA Batteries (4-pack),1,2.99,06/04/19 18:42,"310 Lincoln St, Seattle, WA 98101" -211764,Lightning Charging Cable,1,14.95,06/23/19 14:36,"776 2nd St, San Francisco, CA 94016" -211765,AA Batteries (4-pack),2,3.84,06/05/19 20:11,"482 Center St, New York City, NY 10001" -211766,Apple Airpods Headphones,1,150,06/29/19 18:36,"787 Jefferson St, San Francisco, CA 94016" -211767,Wired Headphones,1,11.99,06/27/19 20:58,"96 Adams St, San Francisco, CA 94016" -211768,AA Batteries (4-pack),1,3.84,06/18/19 16:02,"846 5th St, Boston, MA 02215" -211769,AAA Batteries (4-pack),1,2.99,06/16/19 06:05,"677 Jackson St, San Francisco, CA 94016" -211770,Flatscreen TV,1,300,06/05/19 01:46,"324 4th St, San Francisco, CA 94016" -211771,AA Batteries (4-pack),1,3.84,06/17/19 22:54,"663 10th St, Portland, OR 97035" -211772,AAA Batteries (4-pack),6,2.99,06/06/19 18:39,"405 Meadow St, Seattle, WA 98101" -211773,AAA Batteries (4-pack),1,2.99,06/29/19 11:16,"565 Hill St, San Francisco, CA 94016" -211774,Lightning Charging Cable,1,14.95,06/20/19 18:01,"984 12th St, Austin, TX 73301" -211775,AAA Batteries (4-pack),1,2.99,06/16/19 16:32,"444 River St, San Francisco, CA 94016" -211776,AA Batteries (4-pack),2,3.84,06/03/19 10:08,"691 Hickory St, San Francisco, CA 94016" -211777,27in 4K Gaming Monitor,1,389.99,06/19/19 23:32,"580 7th St, Atlanta, GA 30301" -211777,34in Ultrawide Monitor,1,379.99,06/19/19 23:32,"580 7th St, Atlanta, GA 30301" -211778,Lightning Charging Cable,1,14.95,06/30/19 18:31,"725 River St, Portland, OR 97035" -211779,20in Monitor,1,109.99,06/07/19 13:56,"301 Adams St, San Francisco, CA 94016" -211780,Bose SoundSport Headphones,1,99.99,06/11/19 17:48,"498 Chestnut St, Seattle, WA 98101" -211781,Lightning Charging Cable,1,14.95,06/14/19 19:31,"858 Willow St, Dallas, TX 75001" -211782,AAA Batteries (4-pack),2,2.99,06/12/19 11:36,"764 4th St, San Francisco, CA 94016" -211783,Wired Headphones,1,11.99,06/09/19 20:01,"892 4th St, Seattle, WA 98101" -211784,AA Batteries (4-pack),3,3.84,06/28/19 13:58,"171 Cherry St, Austin, TX 73301" -211785,AAA Batteries (4-pack),1,2.99,06/21/19 17:20,"820 Dogwood St, Atlanta, GA 30301" -211786,20in Monitor,1,109.99,06/01/19 22:34,"712 4th St, Austin, TX 73301" -211787,Lightning Charging Cable,1,14.95,06/13/19 11:54,"191 Meadow St, New York City, NY 10001" -211788,USB-C Charging Cable,1,11.95,06/11/19 12:32,"281 Johnson St, Atlanta, GA 30301" -211789,Lightning Charging Cable,1,14.95,06/05/19 13:52,"985 Forest St, Atlanta, GA 30301" -211790,AAA Batteries (4-pack),2,2.99,07/01/19 02:05,"791 13th St, New York City, NY 10001" -211791,ThinkPad Laptop,1,999.99,06/17/19 18:17,"423 Park St, New York City, NY 10001" -211792,Apple Airpods Headphones,1,150,06/25/19 18:31,"647 10th St, Los Angeles, CA 90001" -211793,ThinkPad Laptop,1,999.99,06/02/19 19:45,"311 Cedar St, New York City, NY 10001" -211794,34in Ultrawide Monitor,1,379.99,06/09/19 23:05,"325 Lakeview St, San Francisco, CA 94016" -211795,Wired Headphones,1,11.99,06/23/19 13:13,"737 Hickory St, Dallas, TX 75001" -211796,Lightning Charging Cable,1,14.95,06/30/19 22:40,"417 Jefferson St, San Francisco, CA 94016" -211797,AAA Batteries (4-pack),3,2.99,06/21/19 08:54,"128 Adams St, San Francisco, CA 94016" -211798,Apple Airpods Headphones,1,150,06/26/19 14:00,"304 Maple St, Los Angeles, CA 90001" -211799,USB-C Charging Cable,1,11.95,06/12/19 20:18,"709 13th St, Boston, MA 02215" -211800,Bose SoundSport Headphones,1,99.99,06/26/19 17:47,"289 Meadow St, Atlanta, GA 30301" -211801,AAA Batteries (4-pack),1,2.99,06/07/19 15:28,"683 11th St, Los Angeles, CA 90001" -211802,27in FHD Monitor,1,149.99,06/25/19 13:42,"986 9th St, San Francisco, CA 94016" -211802,AAA Batteries (4-pack),3,2.99,06/25/19 13:42,"986 9th St, San Francisco, CA 94016" -211803,AA Batteries (4-pack),1,3.84,06/21/19 13:24,"868 Park St, Boston, MA 02215" -211804,Wired Headphones,1,11.99,06/06/19 21:31,"884 2nd St, Boston, MA 02215" -211805,ThinkPad Laptop,1,999.99,06/12/19 17:24,"536 Wilson St, San Francisco, CA 94016" -211806,AA Batteries (4-pack),1,3.84,06/17/19 21:53,"668 Walnut St, San Francisco, CA 94016" -211807,USB-C Charging Cable,1,11.95,06/25/19 23:19,"995 8th St, Boston, MA 02215" -211808,Lightning Charging Cable,1,14.95,06/22/19 09:21,"711 5th St, New York City, NY 10001" -211809,Bose SoundSport Headphones,1,99.99,06/09/19 20:40,"99 Maple St, Atlanta, GA 30301" -211810,27in FHD Monitor,1,149.99,06/17/19 15:42,"237 River St, Seattle, WA 98101" -211811,Lightning Charging Cable,1,14.95,06/03/19 18:07,"595 Willow St, Portland, OR 97035" -211811,Bose SoundSport Headphones,1,99.99,06/03/19 18:07,"595 Willow St, Portland, OR 97035" -211812,AA Batteries (4-pack),1,3.84,06/16/19 10:38,"926 River St, San Francisco, CA 94016" -211813,27in 4K Gaming Monitor,1,389.99,06/14/19 17:10,"452 10th St, Dallas, TX 75001" -211814,AAA Batteries (4-pack),1,2.99,06/24/19 09:21,"587 Ridge St, San Francisco, CA 94016" -211815,Bose SoundSport Headphones,1,99.99,06/30/19 22:05,"533 9th St, Boston, MA 02215" -211816,Macbook Pro Laptop,1,1700,06/23/19 15:59,"796 8th St, New York City, NY 10001" -211817,Apple Airpods Headphones,1,150,06/21/19 15:56,"466 Highland St, Los Angeles, CA 90001" -211818,Apple Airpods Headphones,1,150,06/09/19 18:28,"854 11th St, Dallas, TX 75001" -211819,Lightning Charging Cable,1,14.95,06/06/19 22:18,"449 7th St, Atlanta, GA 30301" -211820,ThinkPad Laptop,1,999.99,06/15/19 04:55,"498 Chestnut St, Seattle, WA 98101" -211821,AA Batteries (4-pack),1,3.84,06/28/19 17:37,"766 Wilson St, Atlanta, GA 30301" -211822,Bose SoundSport Headphones,1,99.99,06/19/19 21:49,"140 Jackson St, New York City, NY 10001" -211823,Apple Airpods Headphones,1,150,06/15/19 19:58,"522 Wilson St, New York City, NY 10001" -211824,AA Batteries (4-pack),1,3.84,06/15/19 10:18,"621 Church St, Los Angeles, CA 90001" -211825,Bose SoundSport Headphones,1,99.99,06/02/19 15:19,"575 North St, Portland, OR 97035" -211826,Apple Airpods Headphones,1,150,06/21/19 13:51,"26 Hickory St, San Francisco, CA 94016" -211827,iPhone,1,700,06/25/19 21:00,"463 Sunset St, Atlanta, GA 30301" -211828,ThinkPad Laptop,1,999.99,06/23/19 16:13,"611 Elm St, Los Angeles, CA 90001" -211829,USB-C Charging Cable,2,11.95,06/16/19 22:57,"650 14th St, San Francisco, CA 94016" -211830,iPhone,1,700,06/13/19 17:34,"274 Adams St, San Francisco, CA 94016" -211831,AAA Batteries (4-pack),1,2.99,06/12/19 11:18,"162 4th St, Los Angeles, CA 90001" -211832,Vareebadd Phone,1,400,06/23/19 11:34,"612 Johnson St, Los Angeles, CA 90001" -211833,Wired Headphones,1,11.99,06/11/19 22:05,"73 Sunset St, Portland, OR 97035" -211834,USB-C Charging Cable,1,11.95,06/30/19 12:56,"359 1st St, Atlanta, GA 30301" -211835,AA Batteries (4-pack),1,3.84,06/15/19 22:26,"44 Lake St, Los Angeles, CA 90001" -211836,27in FHD Monitor,1,149.99,06/24/19 09:22,"490 14th St, Portland, OR 97035" -211837,AAA Batteries (4-pack),3,2.99,06/10/19 15:30,"43 Forest St, Boston, MA 02215" -211838,Bose SoundSport Headphones,1,99.99,06/08/19 07:37,"702 North St, Dallas, TX 75001" -211839,Wired Headphones,1,11.99,06/28/19 16:40,"787 Lincoln St, Dallas, TX 75001" -211840,AAA Batteries (4-pack),1,2.99,06/02/19 14:04,"18 Walnut St, Dallas, TX 75001" -211841,Lightning Charging Cable,1,14.95,06/20/19 14:48,"664 Center St, Boston, MA 02215" -211842,AAA Batteries (4-pack),1,2.99,06/20/19 19:39,"461 Maple St, Portland, OR 97035" -211843,Lightning Charging Cable,1,14.95,06/30/19 18:50,"633 Maple St, New York City, NY 10001" -211844,iPhone,1,700,06/13/19 15:33,"416 South St, Los Angeles, CA 90001" -211845,Bose SoundSport Headphones,1,99.99,06/09/19 09:28,"606 Spruce St, Portland, OR 97035" -211846,iPhone,1,700,06/30/19 09:42,"260 West St, San Francisco, CA 94016" -211847,Lightning Charging Cable,1,14.95,06/05/19 14:27,"734 Lake St, San Francisco, CA 94016" -211848,AAA Batteries (4-pack),1,2.99,06/01/19 15:42,"326 Willow St, San Francisco, CA 94016" -211849,27in 4K Gaming Monitor,1,389.99,06/05/19 19:04,"857 North St, Boston, MA 02215" -211850,AA Batteries (4-pack),2,3.84,06/25/19 14:34,"650 5th St, Boston, MA 02215" -211851,AA Batteries (4-pack),2,3.84,06/15/19 16:03,"610 1st St, San Francisco, CA 94016" -211852,AAA Batteries (4-pack),2,2.99,06/30/19 17:41,"744 4th St, New York City, NY 10001" -211853,Apple Airpods Headphones,1,150,06/25/19 17:38,"794 12th St, Portland, OR 97035" -211854,Apple Airpods Headphones,1,150,06/27/19 10:24,"717 13th St, Seattle, WA 98101" -211855,USB-C Charging Cable,1,11.95,06/17/19 11:39,"787 Cedar St, Austin, TX 73301" -211856,AA Batteries (4-pack),1,3.84,06/14/19 10:06,"368 North St, San Francisco, CA 94016" -211857,Lightning Charging Cable,1,14.95,06/05/19 19:48,"406 4th St, Dallas, TX 75001" -211858,Wired Headphones,1,11.99,06/27/19 21:38,"345 Madison St, New York City, NY 10001" -211859,AA Batteries (4-pack),1,3.84,06/11/19 17:09,"888 6th St, Portland, ME 04101" -211860,Lightning Charging Cable,1,14.95,06/11/19 11:57,"451 Highland St, Austin, TX 73301" -211861,Bose SoundSport Headphones,1,99.99,06/26/19 20:49,"816 Main St, Atlanta, GA 30301" -211862,USB-C Charging Cable,1,11.95,06/17/19 16:10,"665 12th St, Boston, MA 02215" -211863,iPhone,1,700,06/12/19 12:24,"563 Lake St, Austin, TX 73301" -211864,20in Monitor,1,109.99,06/28/19 19:49,"638 Hickory St, Los Angeles, CA 90001" -211865,iPhone,1,700,06/22/19 17:07,"709 4th St, Los Angeles, CA 90001" -211866,Lightning Charging Cable,1,14.95,06/26/19 18:21,"620 2nd St, San Francisco, CA 94016" -211867,Apple Airpods Headphones,1,150,06/23/19 15:48,"393 South St, Boston, MA 02215" -211868,Lightning Charging Cable,1,14.95,06/06/19 13:48,"870 North St, San Francisco, CA 94016" -211869,Wired Headphones,1,11.99,06/02/19 00:55,"128 Church St, Los Angeles, CA 90001" -211870,Wired Headphones,1,11.99,06/13/19 11:52,"460 5th St, Atlanta, GA 30301" -211871,Lightning Charging Cable,1,14.95,06/07/19 15:15,"25 Lincoln St, Portland, OR 97035" -211872,USB-C Charging Cable,2,11.95,06/25/19 14:35,"669 Main St, Los Angeles, CA 90001" -211873,Lightning Charging Cable,1,14.95,06/14/19 20:27,"349 River St, San Francisco, CA 94016" -211874,34in Ultrawide Monitor,1,379.99,06/28/19 14:37,"420 Washington St, Boston, MA 02215" -211874,Wired Headphones,1,11.99,06/28/19 14:37,"420 Washington St, Boston, MA 02215" -211875,Wired Headphones,1,11.99,06/23/19 20:45,"681 Ridge St, San Francisco, CA 94016" -211876,AA Batteries (4-pack),1,3.84,06/23/19 11:59,"644 5th St, San Francisco, CA 94016" -211877,Macbook Pro Laptop,1,1700,06/28/19 06:37,"580 Johnson St, Dallas, TX 75001" -211878,AA Batteries (4-pack),1,3.84,06/16/19 10:31,"638 South St, Austin, TX 73301" -211879,USB-C Charging Cable,1,11.95,06/13/19 21:18,"46 Hill St, New York City, NY 10001" -211880,AAA Batteries (4-pack),2,2.99,06/30/19 11:17,"999 7th St, Portland, OR 97035" -211881,Google Phone,1,600,06/28/19 16:21,"851 Park St, Seattle, WA 98101" -211882,Flatscreen TV,1,300,06/23/19 20:29,"269 Walnut St, Los Angeles, CA 90001" -211883,27in FHD Monitor,1,149.99,06/19/19 20:42,"173 River St, Seattle, WA 98101" -211884,Bose SoundSport Headphones,1,99.99,06/30/19 14:31,"865 Hickory St, Atlanta, GA 30301" -211885,USB-C Charging Cable,2,11.95,06/30/19 23:15,"948 4th St, San Francisco, CA 94016" -211886,Lightning Charging Cable,1,14.95,06/29/19 13:09,"407 9th St, Los Angeles, CA 90001" -211887,Wired Headphones,1,11.99,06/13/19 19:12,"259 South St, Boston, MA 02215" -211887,Lightning Charging Cable,1,14.95,06/13/19 19:12,"259 South St, Boston, MA 02215" -211888,AAA Batteries (4-pack),1,2.99,06/13/19 23:06,"708 11th St, New York City, NY 10001" -211889,27in FHD Monitor,1,149.99,06/08/19 18:10,"837 Highland St, Dallas, TX 75001" -211890,AA Batteries (4-pack),1,3.84,06/15/19 13:24,"966 Meadow St, Portland, OR 97035" -211891,Lightning Charging Cable,1,14.95,06/07/19 08:29,"620 Lake St, San Francisco, CA 94016" -211892,Bose SoundSport Headphones,1,99.99,06/29/19 10:28,"704 4th St, Boston, MA 02215" -211893,AA Batteries (4-pack),1,3.84,06/17/19 07:35,"855 12th St, San Francisco, CA 94016" -211894,Apple Airpods Headphones,1,150,06/24/19 14:14,"574 7th St, Atlanta, GA 30301" -211895,AAA Batteries (4-pack),1,2.99,06/26/19 06:49,"546 Cedar St, Portland, ME 04101" -211896,Bose SoundSport Headphones,1,99.99,06/23/19 17:23,"848 Main St, San Francisco, CA 94016" -211897,Wired Headphones,1,11.99,06/06/19 09:41,"529 West St, Dallas, TX 75001" -211898,iPhone,1,700,06/06/19 10:16,"820 14th St, Los Angeles, CA 90001" -211898,Wired Headphones,1,11.99,06/06/19 10:16,"820 14th St, Los Angeles, CA 90001" -211899,USB-C Charging Cable,1,11.95,06/29/19 22:19,"117 Walnut St, Austin, TX 73301" -211900,Apple Airpods Headphones,1,150,06/14/19 23:58,"10 11th St, Seattle, WA 98101" -211901,Lightning Charging Cable,1,14.95,06/16/19 22:12,"935 9th St, Seattle, WA 98101" -211902,USB-C Charging Cable,2,11.95,06/21/19 11:02,"944 1st St, New York City, NY 10001" -211903,27in 4K Gaming Monitor,1,389.99,06/28/19 06:27,"275 Lincoln St, San Francisco, CA 94016" -211904,ThinkPad Laptop,1,999.99,06/27/19 22:31,"523 West St, Los Angeles, CA 90001" -211905,Lightning Charging Cable,1,14.95,06/02/19 16:30,"385 11th St, New York City, NY 10001" -211906,Wired Headphones,1,11.99,06/21/19 18:46,"399 Hill St, San Francisco, CA 94016" -211907,USB-C Charging Cable,1,11.95,06/14/19 12:29,"21 Park St, Seattle, WA 98101" -211908,Apple Airpods Headphones,1,150,06/20/19 15:28,"778 8th St, San Francisco, CA 94016" -211909,AA Batteries (4-pack),1,3.84,06/08/19 11:17,"72 9th St, New York City, NY 10001" -211910,AAA Batteries (4-pack),1,2.99,06/12/19 08:34,"734 Adams St, Boston, MA 02215" -211911,Lightning Charging Cable,1,14.95,06/12/19 21:12,"931 5th St, Los Angeles, CA 90001" -211912,Bose SoundSport Headphones,1,99.99,06/05/19 16:33,"291 Highland St, Portland, OR 97035" -211913,iPhone,1,700,06/25/19 13:57,"538 Ridge St, San Francisco, CA 94016" -211914,20in Monitor,1,109.99,06/09/19 20:34,"597 Pine St, Dallas, TX 75001" -211915,Vareebadd Phone,1,400,06/20/19 13:24,"805 Washington St, Dallas, TX 75001" -211915,USB-C Charging Cable,1,11.95,06/20/19 13:24,"805 Washington St, Dallas, TX 75001" -211915,Bose SoundSport Headphones,1,99.99,06/20/19 13:24,"805 Washington St, Dallas, TX 75001" -211916,Apple Airpods Headphones,1,150,06/11/19 15:27,"190 1st St, Dallas, TX 75001" -211917,AA Batteries (4-pack),3,3.84,06/22/19 22:26,"391 Cherry St, Los Angeles, CA 90001" -211918,ThinkPad Laptop,1,999.99,06/16/19 22:03,"944 Jackson St, Portland, OR 97035" -211919,USB-C Charging Cable,1,11.95,06/29/19 13:29,"673 Cherry St, San Francisco, CA 94016" -211920,20in Monitor,1,109.99,06/29/19 09:41,"468 Madison St, Atlanta, GA 30301" -211921,Lightning Charging Cable,1,14.95,06/07/19 10:14,"276 Lincoln St, Boston, MA 02215" -211922,Bose SoundSport Headphones,1,99.99,06/30/19 07:23,"31 Hill St, Seattle, WA 98101" -211923,27in FHD Monitor,1,149.99,06/04/19 18:12,"27 Wilson St, Los Angeles, CA 90001" -211924,Wired Headphones,1,11.99,06/21/19 19:30,"818 North St, Boston, MA 02215" -211925,AA Batteries (4-pack),1,3.84,06/04/19 09:04,"961 Jackson St, San Francisco, CA 94016" -211926,Wired Headphones,1,11.99,06/07/19 12:47,"685 11th St, Seattle, WA 98101" -211927,Flatscreen TV,1,300,06/27/19 18:08,"733 Washington St, New York City, NY 10001" -211928,Wired Headphones,1,11.99,06/20/19 13:30,"61 Sunset St, San Francisco, CA 94016" -211929,27in 4K Gaming Monitor,1,389.99,06/13/19 12:31,"523 2nd St, San Francisco, CA 94016" -211930,27in 4K Gaming Monitor,1,389.99,06/14/19 18:38,"33 10th St, New York City, NY 10001" -211931,AAA Batteries (4-pack),1,2.99,06/22/19 13:06,"854 Lincoln St, San Francisco, CA 94016" -211932,Apple Airpods Headphones,1,150,06/10/19 15:06,"186 Center St, San Francisco, CA 94016" -211933,27in 4K Gaming Monitor,1,389.99,06/14/19 09:05,"655 Hickory St, New York City, NY 10001" -211934,Lightning Charging Cable,1,14.95,06/09/19 10:50,"156 Jefferson St, Austin, TX 73301" -211935,Wired Headphones,1,11.99,06/10/19 10:31,"587 Madison St, San Francisco, CA 94016" -211936,AA Batteries (4-pack),4,3.84,06/15/19 20:52,"126 Jefferson St, San Francisco, CA 94016" -211937,AA Batteries (4-pack),1,3.84,06/24/19 20:22,"859 Madison St, San Francisco, CA 94016" -211938,ThinkPad Laptop,1,999.99,06/26/19 08:22,"922 Park St, Los Angeles, CA 90001" -211939,USB-C Charging Cable,1,11.95,06/29/19 18:38,"43 Lake St, New York City, NY 10001" -211939,Vareebadd Phone,1,400,06/29/19 18:38,"43 Lake St, New York City, NY 10001" -211940,AA Batteries (4-pack),1,3.84,06/09/19 10:45,"907 Hill St, San Francisco, CA 94016" -211941,USB-C Charging Cable,1,11.95,06/09/19 10:33,"60 Jefferson St, Seattle, WA 98101" -211942,Lightning Charging Cable,1,14.95,06/07/19 10:33,"469 Ridge St, Seattle, WA 98101" -211943,USB-C Charging Cable,1,11.95,06/18/19 13:38,"392 Pine St, New York City, NY 10001" -211944,iPhone,1,700,06/02/19 21:17,"541 1st St, New York City, NY 10001" -211944,Lightning Charging Cable,1,14.95,06/02/19 21:17,"541 1st St, New York City, NY 10001" -211945,iPhone,1,700,06/23/19 18:20,"978 Meadow St, Boston, MA 02215" -211946,34in Ultrawide Monitor,1,379.99,06/21/19 01:02,"157 Forest St, San Francisco, CA 94016" -211947,USB-C Charging Cable,1,11.95,06/28/19 10:35,"901 Adams St, Portland, OR 97035" -211948,Wired Headphones,1,11.99,06/25/19 11:02,"5 2nd St, San Francisco, CA 94016" -211949,AAA Batteries (4-pack),1,2.99,06/19/19 20:06,"749 North St, Portland, OR 97035" -211950,Bose SoundSport Headphones,1,99.99,06/22/19 23:15,"89 4th St, Atlanta, GA 30301" -211951,AA Batteries (4-pack),1,3.84,06/16/19 00:09,"733 Cedar St, San Francisco, CA 94016" -211952,Macbook Pro Laptop,1,1700,06/12/19 12:53,"58 Meadow St, Los Angeles, CA 90001" -211953,Flatscreen TV,1,300,06/29/19 19:51,"116 Hickory St, New York City, NY 10001" -211954,Lightning Charging Cable,1,14.95,06/10/19 18:49,"771 14th St, Los Angeles, CA 90001" -211955,AA Batteries (4-pack),1,3.84,06/19/19 15:30,"33 Walnut St, San Francisco, CA 94016" -211956,USB-C Charging Cable,1,11.95,06/24/19 13:20,"446 Sunset St, San Francisco, CA 94016" -211957,34in Ultrawide Monitor,1,379.99,06/01/19 12:53,"510 Walnut St, Boston, MA 02215" -211958,USB-C Charging Cable,1,11.95,06/29/19 09:46,"622 Meadow St, San Francisco, CA 94016" -211959,Google Phone,1,600,06/25/19 22:19,"594 Lincoln St, Boston, MA 02215" -211960,Apple Airpods Headphones,1,150,06/27/19 19:55,"190 Cherry St, New York City, NY 10001" -211961,Wired Headphones,1,11.99,06/30/19 18:53,"150 11th St, San Francisco, CA 94016" -211962,27in 4K Gaming Monitor,1,389.99,06/02/19 10:36,"527 12th St, Boston, MA 02215" -211963,Flatscreen TV,1,300,06/29/19 19:36,"892 Madison St, San Francisco, CA 94016" -211964,USB-C Charging Cable,1,11.95,06/21/19 14:38,"962 14th St, New York City, NY 10001" -211965,Wired Headphones,1,11.99,06/13/19 15:49,"423 Pine St, Atlanta, GA 30301" -211965,USB-C Charging Cable,1,11.95,06/13/19 15:49,"423 Pine St, Atlanta, GA 30301" -211966,AA Batteries (4-pack),2,3.84,06/27/19 11:49,"189 Johnson St, Boston, MA 02215" -211967,Lightning Charging Cable,1,14.95,06/20/19 14:05,"512 6th St, San Francisco, CA 94016" -211968,iPhone,1,700,06/05/19 18:09,"368 Lincoln St, Portland, OR 97035" -211969,Macbook Pro Laptop,1,1700,06/11/19 10:09,"821 Adams St, Los Angeles, CA 90001" -211970,Google Phone,1,600,06/15/19 10:18,"779 North St, Los Angeles, CA 90001" -211970,USB-C Charging Cable,1,11.95,06/15/19 10:18,"779 North St, Los Angeles, CA 90001" -211971,AAA Batteries (4-pack),1,2.99,06/20/19 22:27,"810 Willow St, Los Angeles, CA 90001" -211972,Apple Airpods Headphones,1,150,06/19/19 18:13,"711 Church St, Atlanta, GA 30301" -211973,Bose SoundSport Headphones,1,99.99,06/23/19 08:52,"319 2nd St, Boston, MA 02215" -211974,Lightning Charging Cable,1,14.95,06/17/19 22:14,"425 Center St, Los Angeles, CA 90001" -211975,34in Ultrawide Monitor,1,379.99,06/27/19 17:43,"36 Pine St, Boston, MA 02215" -211976,27in FHD Monitor,1,149.99,06/29/19 11:59,"748 Pine St, Boston, MA 02215" -211977,Wired Headphones,1,11.99,06/11/19 00:04,"318 Sunset St, New York City, NY 10001" -211978,AAA Batteries (4-pack),1,2.99,06/22/19 13:40,"882 6th St, Boston, MA 02215" -211979,Lightning Charging Cable,1,14.95,06/12/19 10:48,"131 Church St, Austin, TX 73301" -211980,AA Batteries (4-pack),1,3.84,06/21/19 19:59,"329 North St, Los Angeles, CA 90001" -211981,USB-C Charging Cable,1,11.95,06/13/19 19:37,"795 Forest St, San Francisco, CA 94016" -211982,34in Ultrawide Monitor,1,379.99,06/04/19 23:19,"588 North St, New York City, NY 10001" -211983,Wired Headphones,1,11.99,06/13/19 18:53,"958 Jackson St, Los Angeles, CA 90001" -211984,20in Monitor,1,109.99,06/21/19 11:02,"984 2nd St, New York City, NY 10001" -211985,Apple Airpods Headphones,2,150,06/01/19 18:51,"320 Hill St, New York City, NY 10001" -211986,Apple Airpods Headphones,1,150,06/02/19 10:06,"431 Ridge St, Atlanta, GA 30301" -211987,USB-C Charging Cable,2,11.95,06/29/19 10:01,"657 11th St, Boston, MA 02215" -211988,Bose SoundSport Headphones,1,99.99,06/01/19 18:33,"386 Cedar St, Atlanta, GA 30301" -211989,Apple Airpods Headphones,1,150,06/15/19 18:59,"765 Chestnut St, Dallas, TX 75001" -211990,Lightning Charging Cable,1,14.95,06/14/19 13:35,"687 9th St, San Francisco, CA 94016" -211991,AAA Batteries (4-pack),2,2.99,06/01/19 16:09,"488 River St, Seattle, WA 98101" -211992,iPhone,1,700,06/01/19 10:06,"885 Willow St, Los Angeles, CA 90001" -211992,Lightning Charging Cable,2,14.95,06/01/19 10:06,"885 Willow St, Los Angeles, CA 90001" -211993,27in FHD Monitor,1,149.99,06/23/19 08:14,"136 Lincoln St, Dallas, TX 75001" -211994,Apple Airpods Headphones,1,150,06/20/19 20:22,"801 Lake St, San Francisco, CA 94016" -211995,Bose SoundSport Headphones,1,99.99,06/13/19 13:21,"837 13th St, New York City, NY 10001" -211996,Apple Airpods Headphones,1,150,06/05/19 18:36,"390 South St, Los Angeles, CA 90001" -211997,Wired Headphones,1,11.99,06/23/19 10:47,"880 11th St, Dallas, TX 75001" -211998,AAA Batteries (4-pack),1,2.99,06/13/19 05:42,"868 South St, Seattle, WA 98101" -211999,AA Batteries (4-pack),2,3.84,06/14/19 20:52,"344 9th St, Boston, MA 02215" -212000,AAA Batteries (4-pack),1,2.99,06/13/19 22:11,"792 Forest St, Los Angeles, CA 90001" -212001,27in FHD Monitor,1,149.99,06/03/19 08:51,"98 South St, Atlanta, GA 30301" -212002,Wired Headphones,1,11.99,06/13/19 10:07,"665 Maple St, Seattle, WA 98101" -212003,USB-C Charging Cable,1,11.95,06/04/19 12:14,"355 Forest St, Austin, TX 73301" -212004,Lightning Charging Cable,3,14.95,06/23/19 09:47,"854 Madison St, San Francisco, CA 94016" -212005,AA Batteries (4-pack),2,3.84,06/22/19 20:39,"663 Forest St, Los Angeles, CA 90001" -212006,Lightning Charging Cable,1,14.95,06/11/19 18:37,"191 2nd St, Seattle, WA 98101" -212007,AA Batteries (4-pack),1,3.84,06/18/19 15:12,"825 10th St, Los Angeles, CA 90001" -212008,AAA Batteries (4-pack),1,2.99,06/02/19 13:43,"750 Pine St, Dallas, TX 75001" -212009,AAA Batteries (4-pack),1,2.99,06/14/19 22:54,"104 South St, Los Angeles, CA 90001" -212010,Apple Airpods Headphones,1,150,06/18/19 23:17,"425 Center St, Dallas, TX 75001" -212011,20in Monitor,1,109.99,06/22/19 09:39,"777 7th St, New York City, NY 10001" -212012,USB-C Charging Cable,1,11.95,06/23/19 11:53,"618 River St, San Francisco, CA 94016" -212013,AAA Batteries (4-pack),1,2.99,06/11/19 18:35,"623 9th St, San Francisco, CA 94016" -212014,Wired Headphones,1,11.99,06/14/19 18:10,"11 Park St, Los Angeles, CA 90001" -212015,AAA Batteries (4-pack),1,2.99,06/05/19 15:08,"900 Willow St, New York City, NY 10001" -212016,LG Washing Machine,1,600.0,06/14/19 20:20,"894 Chestnut St, New York City, NY 10001" -212017,Lightning Charging Cable,1,14.95,06/21/19 06:55,"606 River St, New York City, NY 10001" -212018,AA Batteries (4-pack),2,3.84,06/08/19 17:17,"862 Dogwood St, Los Angeles, CA 90001" -212019,34in Ultrawide Monitor,1,379.99,06/03/19 21:30,"909 6th St, Austin, TX 73301" -212020,Lightning Charging Cable,1,14.95,06/10/19 20:14,"280 Lincoln St, New York City, NY 10001" -212021,AAA Batteries (4-pack),1,2.99,06/04/19 09:41,"683 Elm St, Boston, MA 02215" -212022,AA Batteries (4-pack),2,3.84,06/09/19 20:50,"234 Jefferson St, Los Angeles, CA 90001" -212023,USB-C Charging Cable,1,11.95,06/30/19 21:35,"554 Lakeview St, Los Angeles, CA 90001" -212024,AAA Batteries (4-pack),1,2.99,06/14/19 00:34,"438 Park St, Los Angeles, CA 90001" -212025,Lightning Charging Cable,1,14.95,06/17/19 13:15,"153 Hickory St, Portland, OR 97035" -212026,AA Batteries (4-pack),1,3.84,06/10/19 06:44,"519 1st St, San Francisco, CA 94016" -212027,Lightning Charging Cable,1,14.95,06/16/19 09:39,"785 4th St, New York City, NY 10001" -212028,AA Batteries (4-pack),2,3.84,06/26/19 20:58,"543 2nd St, Atlanta, GA 30301" -212029,Bose SoundSport Headphones,1,99.99,06/04/19 19:23,"531 Pine St, San Francisco, CA 94016" -212030,Macbook Pro Laptop,1,1700,06/11/19 14:50,"193 South St, Portland, OR 97035" -212031,34in Ultrawide Monitor,1,379.99,06/16/19 15:05,"564 Washington St, San Francisco, CA 94016" -212032,AA Batteries (4-pack),1,3.84,06/02/19 12:10,"645 Elm St, Seattle, WA 98101" -212033,AA Batteries (4-pack),4,3.84,06/18/19 22:55,"401 1st St, Boston, MA 02215" -212034,Lightning Charging Cable,1,14.95,06/24/19 07:19,"392 Cherry St, Austin, TX 73301" -212035,Wired Headphones,1,11.99,06/30/19 10:09,"244 Church St, Los Angeles, CA 90001" -212036,Google Phone,1,600,06/18/19 19:42,"480 Maple St, Dallas, TX 75001" -212037,ThinkPad Laptop,1,999.99,06/13/19 18:26,"665 Church St, San Francisco, CA 94016" -212038,USB-C Charging Cable,1,11.95,06/20/19 18:49,"244 Church St, Boston, MA 02215" -212039,Apple Airpods Headphones,1,150,06/05/19 20:00,"443 Willow St, San Francisco, CA 94016" -212040,Lightning Charging Cable,1,14.95,06/09/19 08:53,"578 Washington St, New York City, NY 10001" -212041,iPhone,1,700,06/16/19 19:47,"596 Maple St, Austin, TX 73301" -212042,Wired Headphones,1,11.99,06/29/19 19:46,"480 7th St, Dallas, TX 75001" -212043,AA Batteries (4-pack),1,3.84,06/14/19 11:52,"134 8th St, Seattle, WA 98101" -212044,Wired Headphones,1,11.99,06/18/19 18:31,"827 Center St, Boston, MA 02215" -212045,Wired Headphones,1,11.99,06/29/19 10:22,"948 Church St, Atlanta, GA 30301" -212046,Bose SoundSport Headphones,1,99.99,06/29/19 22:14,"405 Willow St, San Francisco, CA 94016" -212047,Lightning Charging Cable,2,14.95,06/10/19 11:20,"617 5th St, Dallas, TX 75001" -212048,Vareebadd Phone,1,400,06/12/19 11:28,"37 Cedar St, San Francisco, CA 94016" -212049,USB-C Charging Cable,1,11.95,06/11/19 12:33,"458 9th St, Los Angeles, CA 90001" -212050,AAA Batteries (4-pack),1,2.99,06/05/19 17:00,"4 Hill St, San Francisco, CA 94016" -212051,Wired Headphones,1,11.99,06/02/19 22:44,"212 Maple St, San Francisco, CA 94016" -212052,USB-C Charging Cable,1,11.95,06/27/19 10:08,"963 Hill St, Los Angeles, CA 90001" -212053,Google Phone,1,600,06/23/19 07:19,"792 13th St, Atlanta, GA 30301" -212054,Macbook Pro Laptop,1,1700,06/22/19 12:56,"753 Cedar St, Los Angeles, CA 90001" -212055,Apple Airpods Headphones,1,150,06/17/19 16:14,"866 Walnut St, Seattle, WA 98101" -212056,Flatscreen TV,1,300,06/30/19 20:55,"451 6th St, Portland, ME 04101" -212057,Google Phone,1,600,06/10/19 16:13,"306 North St, San Francisco, CA 94016" -212058,27in FHD Monitor,1,149.99,06/29/19 18:31,"212 Church St, New York City, NY 10001" -212059,AA Batteries (4-pack),1,3.84,06/11/19 06:51,"766 Spruce St, New York City, NY 10001" -212060,Wired Headphones,1,11.99,06/02/19 13:27,"844 9th St, Portland, OR 97035" -212061,USB-C Charging Cable,1,11.95,06/21/19 22:11,"305 Lake St, Portland, OR 97035" -212061,Wired Headphones,1,11.99,06/21/19 22:11,"305 Lake St, Portland, OR 97035" -212062,Bose SoundSport Headphones,1,99.99,06/14/19 22:13,"695 Cedar St, Dallas, TX 75001" -212063,27in FHD Monitor,1,149.99,06/19/19 22:39,"142 Washington St, Seattle, WA 98101" -212064,Bose SoundSport Headphones,1,99.99,06/10/19 21:22,"626 Jefferson St, San Francisco, CA 94016" -212065,AAA Batteries (4-pack),1,2.99,06/20/19 18:32,"512 Ridge St, San Francisco, CA 94016" -212066,Flatscreen TV,1,300,06/19/19 14:29,"171 Wilson St, Los Angeles, CA 90001" -212067,Lightning Charging Cable,1,14.95,06/21/19 19:26,"592 11th St, Portland, OR 97035" -212068,Apple Airpods Headphones,1,150,06/09/19 16:23,"994 Washington St, Los Angeles, CA 90001" -212069,AAA Batteries (4-pack),1,2.99,06/05/19 09:29,"114 5th St, San Francisco, CA 94016" -212070,AA Batteries (4-pack),2,3.84,06/11/19 14:29,"589 11th St, New York City, NY 10001" -212071,Apple Airpods Headphones,1,150,06/15/19 18:36,"374 5th St, Austin, TX 73301" -212072,Wired Headphones,1,11.99,06/14/19 18:26,"450 Forest St, Los Angeles, CA 90001" -212073,Lightning Charging Cable,1,14.95,06/07/19 14:56,"361 4th St, Boston, MA 02215" -212074,Apple Airpods Headphones,1,150,06/28/19 12:43,"877 11th St, Dallas, TX 75001" -212075,iPhone,1,700,06/09/19 20:20,"321 Highland St, Portland, OR 97035" -212076,AAA Batteries (4-pack),1,2.99,06/05/19 23:18,"934 2nd St, Boston, MA 02215" -212077,Bose SoundSport Headphones,1,99.99,06/29/19 17:05,"155 5th St, Atlanta, GA 30301" -212078,AA Batteries (4-pack),4,3.84,06/12/19 22:20,"819 Highland St, Los Angeles, CA 90001" -212079,AA Batteries (4-pack),1,3.84,06/14/19 11:44,"387 Adams St, San Francisco, CA 94016" -212080,AAA Batteries (4-pack),1,2.99,06/30/19 20:15,"658 Main St, San Francisco, CA 94016" -212081,Apple Airpods Headphones,1,150,06/20/19 16:11,"401 14th St, Atlanta, GA 30301" -212082,AA Batteries (4-pack),1,3.84,06/20/19 16:50,"123 4th St, San Francisco, CA 94016" -212083,AAA Batteries (4-pack),1,2.99,06/04/19 20:22,"551 Adams St, Los Angeles, CA 90001" -212084,AA Batteries (4-pack),1,3.84,06/14/19 20:12,"19 Dogwood St, Los Angeles, CA 90001" -212085,20in Monitor,1,109.99,06/05/19 17:28,"170 10th St, San Francisco, CA 94016" -212086,Apple Airpods Headphones,1,150,06/22/19 16:17,"209 Wilson St, Boston, MA 02215" -212087,Macbook Pro Laptop,1,1700,06/11/19 02:54,"747 Forest St, New York City, NY 10001" -212088,Wired Headphones,1,11.99,06/10/19 07:58,"647 Lake St, Los Angeles, CA 90001" -212089,Bose SoundSport Headphones,1,99.99,06/28/19 11:22,"741 Wilson St, New York City, NY 10001" -212090,Apple Airpods Headphones,2,150,06/27/19 06:55,"679 Washington St, Dallas, TX 75001" -212091,20in Monitor,1,109.99,06/26/19 12:28,"500 Lake St, Atlanta, GA 30301" -212092,34in Ultrawide Monitor,1,379.99,06/21/19 19:58,"643 Wilson St, Austin, TX 73301" -212093,AAA Batteries (4-pack),1,2.99,06/10/19 22:21,"991 11th St, Portland, OR 97035" -212094,Wired Headphones,1,11.99,06/14/19 22:00,"189 9th St, San Francisco, CA 94016" -212095,iPhone,1,700,06/17/19 17:30,"877 Lake St, Atlanta, GA 30301" -212096,Bose SoundSport Headphones,1,99.99,06/14/19 11:24,"500 Main St, Los Angeles, CA 90001" -212097,Flatscreen TV,1,300,06/07/19 15:19,"318 12th St, San Francisco, CA 94016" -212098,Wired Headphones,2,11.99,06/06/19 13:12,"384 Elm St, Atlanta, GA 30301" -212099,34in Ultrawide Monitor,1,379.99,06/25/19 14:29,"829 West St, San Francisco, CA 94016" -212100,Lightning Charging Cable,1,14.95,06/23/19 13:03,"751 Hill St, Dallas, TX 75001" -212101,Lightning Charging Cable,1,14.95,06/15/19 17:55,"697 Dogwood St, San Francisco, CA 94016" -212102,Apple Airpods Headphones,1,150,06/26/19 13:30,"235 Jackson St, Boston, MA 02215" -212103,Wired Headphones,1,11.99,06/04/19 10:06,"25 10th St, Boston, MA 02215" -212104,AA Batteries (4-pack),1,3.84,06/14/19 00:46,"721 Washington St, Boston, MA 02215" -212105,AA Batteries (4-pack),1,3.84,06/27/19 23:49,"750 Lincoln St, New York City, NY 10001" -212106,Bose SoundSport Headphones,1,99.99,06/19/19 17:20,"615 11th St, Los Angeles, CA 90001" -212107,Bose SoundSport Headphones,1,99.99,06/28/19 23:49,"398 Walnut St, San Francisco, CA 94016" -212107,Bose SoundSport Headphones,1,99.99,06/28/19 23:49,"398 Walnut St, San Francisco, CA 94016" -212108,Lightning Charging Cable,1,14.95,06/19/19 10:54,"306 Forest St, Dallas, TX 75001" -212109,Apple Airpods Headphones,1,150,06/08/19 17:19,"830 Madison St, San Francisco, CA 94016" -212110,ThinkPad Laptop,1,999.99,06/18/19 00:00,"866 1st St, Seattle, WA 98101" -212111,34in Ultrawide Monitor,1,379.99,06/15/19 10:04,"417 Lakeview St, San Francisco, CA 94016" -212112,AAA Batteries (4-pack),1,2.99,06/16/19 20:38,"562 Ridge St, New York City, NY 10001" -212113,Bose SoundSport Headphones,1,99.99,06/15/19 17:19,"7 4th St, Los Angeles, CA 90001" -212114,USB-C Charging Cable,1,11.95,06/11/19 15:10,"140 Johnson St, Portland, OR 97035" -212115,34in Ultrawide Monitor,1,379.99,06/18/19 21:12,"155 Forest St, San Francisco, CA 94016" -212116,27in 4K Gaming Monitor,1,389.99,06/10/19 22:45,"514 Center St, San Francisco, CA 94016" -212117,Flatscreen TV,1,300,06/27/19 13:22,"941 Maple St, New York City, NY 10001" -212118,AA Batteries (4-pack),2,3.84,06/11/19 23:38,"125 Madison St, New York City, NY 10001" -212119,AA Batteries (4-pack),1,3.84,06/27/19 22:42,"479 Walnut St, San Francisco, CA 94016" -212120,LG Washing Machine,1,600.0,06/05/19 07:35,"200 11th St, San Francisco, CA 94016" -212121,LG Dryer,1,600.0,06/09/19 11:36,"641 Walnut St, Austin, TX 73301" -212122,27in FHD Monitor,1,149.99,06/28/19 16:53,"152 Meadow St, San Francisco, CA 94016" -212123,Wired Headphones,1,11.99,06/26/19 00:20,"214 River St, Los Angeles, CA 90001" -212124,AA Batteries (4-pack),1,3.84,06/22/19 14:48,"811 9th St, Austin, TX 73301" -212125,Wired Headphones,1,11.99,06/07/19 10:33,"19 10th St, New York City, NY 10001" -212126,USB-C Charging Cable,1,11.95,06/29/19 12:03,"631 14th St, Portland, OR 97035" -212127,27in FHD Monitor,1,149.99,06/23/19 14:27,"47 Church St, Atlanta, GA 30301" -212128,Flatscreen TV,1,300,06/30/19 19:48,"77 Forest St, Boston, MA 02215" -212129,34in Ultrawide Monitor,1,379.99,06/17/19 00:13,"151 Madison St, New York City, NY 10001" -212130,Apple Airpods Headphones,1,150,06/16/19 09:18,"97 14th St, Boston, MA 02215" -212131,Wired Headphones,1,11.99,06/30/19 11:11,"419 10th St, Boston, MA 02215" -212132,AAA Batteries (4-pack),2,2.99,06/24/19 08:21,"856 South St, Los Angeles, CA 90001" -212133,Bose SoundSport Headphones,1,99.99,06/09/19 20:19,"846 Dogwood St, San Francisco, CA 94016" -212134,34in Ultrawide Monitor,1,379.99,06/07/19 15:09,"406 Dogwood St, Seattle, WA 98101" -212135,USB-C Charging Cable,1,11.95,06/03/19 13:55,"731 Sunset St, San Francisco, CA 94016" -212136,AAA Batteries (4-pack),1,2.99,06/04/19 14:08,"970 Chestnut St, Seattle, WA 98101" -212137,Lightning Charging Cable,1,14.95,06/21/19 20:45,"234 West St, Atlanta, GA 30301" -212138,Vareebadd Phone,1,400,06/25/19 00:03,"328 Chestnut St, New York City, NY 10001" -212139,USB-C Charging Cable,1,11.95,06/19/19 16:16,"136 8th St, New York City, NY 10001" -212140,AAA Batteries (4-pack),1,2.99,06/10/19 20:36,"955 Washington St, Boston, MA 02215" -212141,Lightning Charging Cable,1,14.95,06/10/19 07:00,"96 Forest St, San Francisco, CA 94016" -212142,iPhone,1,700,06/23/19 22:37,"67 Center St, Los Angeles, CA 90001" -212142,Wired Headphones,1,11.99,06/23/19 22:37,"67 Center St, Los Angeles, CA 90001" -212143,USB-C Charging Cable,1,11.95,06/28/19 00:01,"779 Walnut St, Atlanta, GA 30301" -212144,Lightning Charging Cable,1,14.95,06/10/19 20:54,"972 8th St, New York City, NY 10001" -212145,AAA Batteries (4-pack),1,2.99,06/09/19 17:51,"799 North St, New York City, NY 10001" -212146,AA Batteries (4-pack),4,3.84,06/28/19 22:49,"857 2nd St, Boston, MA 02215" -212147,Bose SoundSport Headphones,1,99.99,06/15/19 19:51,"160 Washington St, San Francisco, CA 94016" -212148,ThinkPad Laptop,1,999.99,06/04/19 08:42,"724 2nd St, Los Angeles, CA 90001" -212149,USB-C Charging Cable,1,11.95,06/23/19 01:33,"256 Sunset St, Atlanta, GA 30301" -212150,Apple Airpods Headphones,1,150,06/10/19 20:31,"279 Maple St, Dallas, TX 75001" -212151,USB-C Charging Cable,1,11.95,06/13/19 13:54,"4 6th St, Dallas, TX 75001" -212152,Flatscreen TV,1,300,06/02/19 10:04,"142 10th St, Portland, OR 97035" -212153,Macbook Pro Laptop,1,1700,06/04/19 17:30,"238 Jefferson St, Seattle, WA 98101" -212154,Google Phone,1,600,06/15/19 09:22,"948 2nd St, San Francisco, CA 94016" -212155,Apple Airpods Headphones,1,150,06/12/19 18:51,"181 Adams St, New York City, NY 10001" -212156,Wired Headphones,1,11.99,06/04/19 14:55,"716 Meadow St, Austin, TX 73301" -212157,Bose SoundSport Headphones,1,99.99,06/12/19 17:31,"793 Park St, Atlanta, GA 30301" -212158,ThinkPad Laptop,1,999.99,06/23/19 04:30,"75 Church St, San Francisco, CA 94016" -212159,Bose SoundSport Headphones,1,99.99,06/08/19 12:23,"495 Maple St, San Francisco, CA 94016" -212160,Bose SoundSport Headphones,1,99.99,06/04/19 11:03,"756 West St, Seattle, WA 98101" -212161,AA Batteries (4-pack),1,3.84,06/10/19 09:32,"405 Ridge St, Los Angeles, CA 90001" -212162,USB-C Charging Cable,1,11.95,06/06/19 21:11,"339 Lakeview St, Portland, OR 97035" -212163,Wired Headphones,2,11.99,06/26/19 15:53,"156 Park St, Los Angeles, CA 90001" -212164,Wired Headphones,1,11.99,06/15/19 13:01,"5 Pine St, Boston, MA 02215" -212165,27in 4K Gaming Monitor,1,389.99,06/28/19 19:39,"943 7th St, Atlanta, GA 30301" -212166,AAA Batteries (4-pack),1,2.99,06/22/19 19:54,"586 Dogwood St, Los Angeles, CA 90001" -212167,USB-C Charging Cable,1,11.95,06/14/19 10:50,"745 Park St, Los Angeles, CA 90001" -212168,USB-C Charging Cable,1,11.95,06/25/19 20:07,"974 14th St, Los Angeles, CA 90001" -212169,27in FHD Monitor,1,149.99,06/09/19 22:56,"148 Washington St, San Francisco, CA 94016" -212170,iPhone,1,700,06/17/19 07:37,"789 Elm St, San Francisco, CA 94016" -212171,27in FHD Monitor,1,149.99,06/01/19 23:33,"300 Jefferson St, Los Angeles, CA 90001" -212172,Wired Headphones,1,11.99,06/20/19 17:07,"867 10th St, San Francisco, CA 94016" -212173,AA Batteries (4-pack),1,3.84,06/24/19 19:41,"972 14th St, Atlanta, GA 30301" -212174,Lightning Charging Cable,1,14.95,06/20/19 07:00,"47 Spruce St, Boston, MA 02215" -212175,AA Batteries (4-pack),1,3.84,06/08/19 16:17,"69 Highland St, Los Angeles, CA 90001" -212176,AA Batteries (4-pack),1,3.84,06/04/19 09:41,"492 1st St, Boston, MA 02215" -212177,Apple Airpods Headphones,1,150,06/14/19 12:55,"597 Spruce St, San Francisco, CA 94016" -212178,AA Batteries (4-pack),1,3.84,06/07/19 17:24,"544 Adams St, San Francisco, CA 94016" -212179,Google Phone,1,600,06/23/19 09:59,"497 Hill St, San Francisco, CA 94016" -212180,AAA Batteries (4-pack),2,2.99,06/11/19 18:14,"115 14th St, Dallas, TX 75001" -212181,AA Batteries (4-pack),1,3.84,06/23/19 17:52,"421 North St, San Francisco, CA 94016" -212182,iPhone,1,700,06/20/19 20:21,"864 2nd St, Los Angeles, CA 90001" -212183,27in FHD Monitor,1,149.99,06/02/19 16:19,"150 Jefferson St, New York City, NY 10001" -212184,Bose SoundSport Headphones,1,99.99,06/10/19 01:54,"908 1st St, Seattle, WA 98101" -212185,27in FHD Monitor,1,149.99,06/05/19 11:13,"92 4th St, Boston, MA 02215" -212186,Apple Airpods Headphones,1,150,06/15/19 19:43,"937 Dogwood St, Seattle, WA 98101" -212187,Lightning Charging Cable,1,14.95,06/06/19 14:35,"86 Cedar St, Dallas, TX 75001" -212188,Macbook Pro Laptop,1,1700,06/08/19 17:24,"209 Park St, San Francisco, CA 94016" -212189,27in FHD Monitor,1,149.99,06/25/19 20:53,"46 13th St, Portland, ME 04101" -212190,Apple Airpods Headphones,1,150,06/07/19 20:31,"8 Cedar St, Portland, OR 97035" -212191,Wired Headphones,2,11.99,06/30/19 11:31,"509 Forest St, Los Angeles, CA 90001" -212192,27in FHD Monitor,1,149.99,06/06/19 15:32,"357 Center St, San Francisco, CA 94016" -212193,Google Phone,1,600,06/20/19 20:27,"645 Spruce St, Atlanta, GA 30301" -212194,AAA Batteries (4-pack),2,2.99,06/17/19 12:25,"325 7th St, New York City, NY 10001" -212195,iPhone,1,700,06/29/19 15:36,"784 Pine St, San Francisco, CA 94016" -212196,Apple Airpods Headphones,1,150,06/04/19 16:24,"894 Cherry St, Los Angeles, CA 90001" -212197,27in 4K Gaming Monitor,1,389.99,06/10/19 13:36,"585 Willow St, San Francisco, CA 94016" -212198,AA Batteries (4-pack),2,3.84,06/12/19 02:50,"356 Washington St, Portland, OR 97035" -212199,AA Batteries (4-pack),1,3.84,06/07/19 09:13,"640 12th St, San Francisco, CA 94016" -212200,Lightning Charging Cable,2,14.95,06/27/19 17:50,"439 6th St, Los Angeles, CA 90001" -212201,20in Monitor,1,109.99,06/13/19 12:48,"281 Maple St, San Francisco, CA 94016" -212202,iPhone,1,700,06/24/19 15:53,"758 Park St, Seattle, WA 98101" -212202,Lightning Charging Cable,1,14.95,06/24/19 15:53,"758 Park St, Seattle, WA 98101" -212203,27in FHD Monitor,1,149.99,06/08/19 00:46,"107 North St, Boston, MA 02215" -212204,USB-C Charging Cable,1,11.95,06/03/19 01:55,"930 Lakeview St, Portland, OR 97035" -212205,34in Ultrawide Monitor,1,379.99,06/21/19 20:06,"120 5th St, San Francisco, CA 94016" -212206,27in FHD Monitor,1,149.99,06/14/19 16:50,"645 Pine St, Dallas, TX 75001" -212207,Apple Airpods Headphones,1,150,06/18/19 22:25,"132 Madison St, Portland, OR 97035" -212208,AA Batteries (4-pack),1,3.84,06/18/19 13:32,"838 Forest St, Boston, MA 02215" -212209,AA Batteries (4-pack),1,3.84,06/26/19 13:11,"434 9th St, San Francisco, CA 94016" -212210,27in FHD Monitor,1,149.99,06/26/19 17:35,"38 Ridge St, Los Angeles, CA 90001" -212211,Bose SoundSport Headphones,1,99.99,06/17/19 09:45,"229 1st St, Dallas, TX 75001" -212212,AA Batteries (4-pack),1,3.84,06/09/19 23:51,"893 Sunset St, Austin, TX 73301" -212213,AA Batteries (4-pack),2,3.84,06/13/19 15:35,"381 8th St, San Francisco, CA 94016" -212214,Apple Airpods Headphones,1,150,06/16/19 15:47,"561 Park St, Austin, TX 73301" -212215,USB-C Charging Cable,1,11.95,06/20/19 19:13,"495 Cherry St, Los Angeles, CA 90001" -212216,AAA Batteries (4-pack),2,2.99,06/04/19 19:53,"747 Walnut St, Dallas, TX 75001" -212216,AAA Batteries (4-pack),1,2.99,06/04/19 19:53,"747 Walnut St, Dallas, TX 75001" -212217,Lightning Charging Cable,1,14.95,06/11/19 12:57,"216 Willow St, San Francisco, CA 94016" -212218,Vareebadd Phone,1,400,06/08/19 18:49,"171 13th St, San Francisco, CA 94016" -212219,Bose SoundSport Headphones,1,99.99,06/12/19 15:39,"521 Lake St, Dallas, TX 75001" -212220,Wired Headphones,1,11.99,06/29/19 18:21,"449 Jefferson St, San Francisco, CA 94016" -212221,iPhone,1,700,06/05/19 03:15,"480 10th St, Dallas, TX 75001" -212222,AAA Batteries (4-pack),1,2.99,06/05/19 14:58,"788 Cedar St, San Francisco, CA 94016" -212223,Bose SoundSport Headphones,1,99.99,06/28/19 10:10,"756 12th St, Los Angeles, CA 90001" -212224,AA Batteries (4-pack),1,3.84,06/29/19 15:22,"241 2nd St, Austin, TX 73301" -212225,Apple Airpods Headphones,1,150,06/01/19 17:41,"820 West St, Los Angeles, CA 90001" -212226,AAA Batteries (4-pack),1,2.99,06/23/19 11:52,"47 Madison St, Portland, OR 97035" -212227,Wired Headphones,1,11.99,06/24/19 19:37,"35 Wilson St, Austin, TX 73301" -212228,Lightning Charging Cable,1,14.95,06/18/19 19:59,"996 Cherry St, Seattle, WA 98101" -212229,Lightning Charging Cable,1,14.95,06/19/19 11:48,"514 River St, Boston, MA 02215" -212230,Lightning Charging Cable,1,14.95,06/26/19 18:52,"794 Park St, Los Angeles, CA 90001" -212231,AAA Batteries (4-pack),2,2.99,06/22/19 14:16,"227 11th St, Seattle, WA 98101" -212232,USB-C Charging Cable,1,11.95,06/17/19 20:30,"644 Hill St, Boston, MA 02215" -212233,Wired Headphones,1,11.99,06/15/19 18:03,"891 9th St, New York City, NY 10001" -212234,Lightning Charging Cable,1,14.95,06/18/19 10:15,"930 Lakeview St, Los Angeles, CA 90001" -212235,Macbook Pro Laptop,1,1700,06/19/19 20:13,"668 11th St, Austin, TX 73301" -212235,AA Batteries (4-pack),1,3.84,06/19/19 20:13,"668 11th St, Austin, TX 73301" -212236,Wired Headphones,1,11.99,06/26/19 21:17,"133 4th St, Boston, MA 02215" -212237,Lightning Charging Cable,1,14.95,06/19/19 08:16,"132 11th St, Atlanta, GA 30301" -212237,Wired Headphones,1,11.99,06/19/19 08:16,"132 11th St, Atlanta, GA 30301" -212238,Lightning Charging Cable,1,14.95,06/11/19 19:56,"244 11th St, Atlanta, GA 30301" -212239,Google Phone,1,600,06/20/19 17:40,"721 Wilson St, San Francisco, CA 94016" -212240,AA Batteries (4-pack),1,3.84,06/02/19 16:22,"749 Lincoln St, New York City, NY 10001" -212241,ThinkPad Laptop,1,999.99,06/14/19 11:06,"246 Lakeview St, Los Angeles, CA 90001" -212242,AAA Batteries (4-pack),1,2.99,06/20/19 20:23,"946 North St, Seattle, WA 98101" -212243,Apple Airpods Headphones,1,150,06/12/19 20:55,"221 Dogwood St, San Francisco, CA 94016" -212244,Apple Airpods Headphones,1,150,06/02/19 18:22,"327 7th St, Boston, MA 02215" -212245,Bose SoundSport Headphones,1,99.99,06/07/19 23:47,"910 Washington St, San Francisco, CA 94016" -212246,AAA Batteries (4-pack),1,2.99,06/01/19 21:33,"379 Hickory St, Seattle, WA 98101" -212247,27in FHD Monitor,1,149.99,06/28/19 09:08,"791 River St, Los Angeles, CA 90001" -212248,Lightning Charging Cable,1,14.95,06/24/19 01:46,"866 Walnut St, New York City, NY 10001" -212249,Wired Headphones,2,11.99,06/08/19 21:33,"166 Ridge St, Portland, OR 97035" -212250,27in FHD Monitor,1,149.99,06/19/19 19:02,"489 Jackson St, Atlanta, GA 30301" -212251,Apple Airpods Headphones,1,150,06/08/19 11:05,"286 Church St, Boston, MA 02215" -212252,iPhone,1,700,06/22/19 20:54,"814 Ridge St, New York City, NY 10001" -212253,Lightning Charging Cable,1,14.95,06/20/19 15:38,"717 2nd St, New York City, NY 10001" -212254,Lightning Charging Cable,1,14.95,06/22/19 13:02,"142 1st St, Los Angeles, CA 90001" -212255,AAA Batteries (4-pack),1,2.99,06/09/19 19:23,"25 Meadow St, Boston, MA 02215" -212256,Lightning Charging Cable,1,14.95,06/26/19 13:27,"604 14th St, Boston, MA 02215" -212257,Google Phone,1,600,06/19/19 22:26,"622 Lakeview St, Seattle, WA 98101" -212258,USB-C Charging Cable,1,11.95,06/30/19 10:43,"904 Main St, Boston, MA 02215" -212259,Lightning Charging Cable,1,14.95,06/28/19 14:42,"880 Maple St, Boston, MA 02215" -212260,27in FHD Monitor,1,149.99,06/04/19 17:20,"813 Hickory St, Austin, TX 73301" -212261,USB-C Charging Cable,1,11.95,06/16/19 15:20,"162 4th St, Dallas, TX 75001" -212262,Bose SoundSport Headphones,1,99.99,06/08/19 22:00,"731 Lake St, New York City, NY 10001" -212263,Flatscreen TV,1,300,06/23/19 18:03,"296 11th St, San Francisco, CA 94016" -212264,34in Ultrawide Monitor,1,379.99,06/10/19 11:51,"297 Highland St, Los Angeles, CA 90001" -212265,iPhone,1,700,06/18/19 21:58,"885 1st St, Los Angeles, CA 90001" -212266,ThinkPad Laptop,1,999.99,06/15/19 16:14,"652 Spruce St, Los Angeles, CA 90001" -212267,Bose SoundSport Headphones,1,99.99,06/01/19 09:35,"743 Park St, Atlanta, GA 30301" -212268,Bose SoundSport Headphones,1,99.99,06/24/19 09:19,"101 Lakeview St, Seattle, WA 98101" -212269,Wired Headphones,1,11.99,06/29/19 15:53,"574 Hickory St, San Francisco, CA 94016" -212270,iPhone,1,700,06/12/19 20:06,"135 Dogwood St, San Francisco, CA 94016" -212271,AA Batteries (4-pack),1,3.84,06/12/19 17:33,"553 12th St, Austin, TX 73301" -212272,USB-C Charging Cable,1,11.95,06/28/19 19:42,"758 Washington St, Atlanta, GA 30301" -212273,Lightning Charging Cable,1,14.95,06/25/19 15:24,"51 Center St, Dallas, TX 75001" -212274,27in FHD Monitor,1,149.99,06/19/19 15:44,"798 Walnut St, Seattle, WA 98101" -212275,AA Batteries (4-pack),1,3.84,06/16/19 08:12,"686 Washington St, Dallas, TX 75001" -212276,AA Batteries (4-pack),2,3.84,06/09/19 13:38,"279 10th St, Atlanta, GA 30301" -212277,USB-C Charging Cable,1,11.95,06/27/19 09:42,"343 Hickory St, San Francisco, CA 94016" -212278,27in FHD Monitor,1,149.99,06/28/19 12:05,"924 River St, San Francisco, CA 94016" -212279,27in FHD Monitor,1,149.99,06/14/19 09:31,"615 8th St, Dallas, TX 75001" -212280,Flatscreen TV,1,300,06/07/19 13:31,"412 Highland St, New York City, NY 10001" -212281,USB-C Charging Cable,1,11.95,06/17/19 15:51,"22 Forest St, Los Angeles, CA 90001" -212282,Wired Headphones,1,11.99,06/21/19 09:00,"629 8th St, Boston, MA 02215" -212283,Wired Headphones,1,11.99,06/10/19 04:29,"843 West St, Los Angeles, CA 90001" -212284,AA Batteries (4-pack),1,3.84,06/03/19 12:30,"301 Madison St, Dallas, TX 75001" -212285,Bose SoundSport Headphones,1,99.99,06/06/19 18:41,"938 Meadow St, Los Angeles, CA 90001" -212286,AA Batteries (4-pack),2,3.84,06/16/19 14:09,"810 Spruce St, Atlanta, GA 30301" -212287,Wired Headphones,2,11.99,06/03/19 10:28,"107 12th St, San Francisco, CA 94016" -212288,Lightning Charging Cable,1,14.95,06/30/19 13:53,"93 Main St, Dallas, TX 75001" -212289,AAA Batteries (4-pack),1,2.99,06/21/19 21:54,"787 Highland St, San Francisco, CA 94016" -212290,27in FHD Monitor,1,149.99,06/05/19 15:02,"431 2nd St, Los Angeles, CA 90001" -212291,Lightning Charging Cable,1,14.95,06/23/19 18:56,"258 Wilson St, San Francisco, CA 94016" -212292,Wired Headphones,2,11.99,06/11/19 12:40,"478 Meadow St, Los Angeles, CA 90001" -212293,USB-C Charging Cable,1,11.95,06/25/19 11:25,"309 Highland St, New York City, NY 10001" -212294,USB-C Charging Cable,1,11.95,06/26/19 12:33,"114 Park St, San Francisco, CA 94016" -212295,USB-C Charging Cable,1,11.95,06/17/19 15:45,"803 5th St, Atlanta, GA 30301" -212295,Bose SoundSport Headphones,1,99.99,06/17/19 15:45,"803 5th St, Atlanta, GA 30301" -212296,Wired Headphones,1,11.99,06/28/19 13:13,"923 Cherry St, Seattle, WA 98101" -212297,AAA Batteries (4-pack),2,2.99,06/10/19 19:16,"332 West St, Austin, TX 73301" -212298,USB-C Charging Cable,1,11.95,06/22/19 16:53,"964 Sunset St, Los Angeles, CA 90001" -212299,Flatscreen TV,1,300,06/17/19 12:06,"709 Walnut St, Dallas, TX 75001" -212300,Lightning Charging Cable,1,14.95,06/09/19 19:05,"10 Jackson St, Austin, TX 73301" -212301,Bose SoundSport Headphones,1,99.99,06/28/19 20:03,"528 Madison St, San Francisco, CA 94016" -212302,Google Phone,1,600,06/12/19 18:41,"642 9th St, San Francisco, CA 94016" -212303,AAA Batteries (4-pack),3,2.99,06/16/19 07:07,"379 7th St, Austin, TX 73301" -212304,USB-C Charging Cable,1,11.95,06/04/19 11:22,"564 Cherry St, Austin, TX 73301" -212305,Wired Headphones,2,11.99,06/05/19 09:16,"310 Cherry St, Los Angeles, CA 90001" -212306,AAA Batteries (4-pack),2,2.99,06/07/19 16:40,"954 Lincoln St, Los Angeles, CA 90001" -212307,Apple Airpods Headphones,1,150,06/24/19 20:32,"313 Jackson St, San Francisco, CA 94016" -212308,Wired Headphones,1,11.99,06/07/19 12:32,"221 West St, Seattle, WA 98101" -212309,Lightning Charging Cable,1,14.95,06/12/19 09:20,"603 Meadow St, San Francisco, CA 94016" -212310,ThinkPad Laptop,1,999.99,06/29/19 12:20,"894 Hickory St, Atlanta, GA 30301" -212311,Flatscreen TV,1,300,06/26/19 20:24,"942 Cherry St, Portland, ME 04101" -,,,,, -212312,AA Batteries (4-pack),1,3.84,06/15/19 08:29,"766 Lincoln St, Los Angeles, CA 90001" -212313,Google Phone,1,600,06/18/19 15:58,"518 2nd St, Los Angeles, CA 90001" -212313,USB-C Charging Cable,1,11.95,06/18/19 15:58,"518 2nd St, Los Angeles, CA 90001" -212314,Apple Airpods Headphones,1,150,06/28/19 00:43,"480 Wilson St, Dallas, TX 75001" -212315,AA Batteries (4-pack),1,3.84,06/03/19 20:39,"691 12th St, Austin, TX 73301" -212316,AA Batteries (4-pack),1,3.84,06/06/19 09:36,"837 River St, New York City, NY 10001" -212317,AA Batteries (4-pack),1,3.84,06/25/19 11:25,"783 Forest St, Dallas, TX 75001" -212318,ThinkPad Laptop,1,999.99,06/17/19 09:30,"126 Jackson St, Seattle, WA 98101" -212319,Bose SoundSport Headphones,1,99.99,06/24/19 11:11,"458 5th St, Seattle, WA 98101" -212320,Bose SoundSport Headphones,1,99.99,06/22/19 20:42,"854 Meadow St, San Francisco, CA 94016" -212321,Flatscreen TV,1,300,06/16/19 23:04,"295 Willow St, San Francisco, CA 94016" -212322,iPhone,1,700,06/24/19 10:58,"946 6th St, San Francisco, CA 94016" -212323,Flatscreen TV,1,300,06/27/19 18:48,"606 Ridge St, Boston, MA 02215" -212324,Lightning Charging Cable,1,14.95,06/30/19 14:03,"85 10th St, New York City, NY 10001" -212325,Macbook Pro Laptop,1,1700,06/28/19 13:14,"511 4th St, San Francisco, CA 94016" -212326,Google Phone,1,600,06/10/19 10:28,"308 Lake St, San Francisco, CA 94016" -212327,Bose SoundSport Headphones,1,99.99,06/06/19 20:00,"713 Walnut St, San Francisco, CA 94016" -212328,AA Batteries (4-pack),1,3.84,06/08/19 17:39,"819 North St, San Francisco, CA 94016" -212329,Flatscreen TV,1,300,06/02/19 17:47,"90 Park St, San Francisco, CA 94016" -212330,20in Monitor,1,109.99,06/28/19 13:55,"705 1st St, Atlanta, GA 30301" -212331,Apple Airpods Headphones,1,150,06/08/19 12:07,"552 5th St, Seattle, WA 98101" -212332,Apple Airpods Headphones,1,150,06/29/19 11:05,"399 Washington St, Dallas, TX 75001" -212333,AA Batteries (4-pack),1,3.84,06/27/19 23:29,"933 Johnson St, Austin, TX 73301" -212334,iPhone,1,700,06/06/19 13:38,"834 Adams St, Boston, MA 02215" -212334,Lightning Charging Cable,1,14.95,06/06/19 13:38,"834 Adams St, Boston, MA 02215" -212334,Apple Airpods Headphones,1,150,06/06/19 13:38,"834 Adams St, Boston, MA 02215" -212334,Wired Headphones,1,11.99,06/06/19 13:38,"834 Adams St, Boston, MA 02215" -212335,34in Ultrawide Monitor,1,379.99,06/16/19 17:15,"76 1st St, Dallas, TX 75001" -212336,27in 4K Gaming Monitor,1,389.99,06/05/19 13:56,"200 9th St, Atlanta, GA 30301" -212337,AAA Batteries (4-pack),1,2.99,06/06/19 09:57,"567 North St, Los Angeles, CA 90001" -212338,Lightning Charging Cable,2,14.95,06/30/19 12:12,"711 2nd St, Portland, OR 97035" -212339,USB-C Charging Cable,1,11.95,06/25/19 22:28,"801 11th St, Austin, TX 73301" -212340,Wired Headphones,1,11.99,06/08/19 23:31,"993 Center St, San Francisco, CA 94016" -212341,34in Ultrawide Monitor,1,379.99,06/14/19 17:36,"320 14th St, San Francisco, CA 94016" -212342,Bose SoundSport Headphones,1,99.99,06/12/19 09:42,"518 Center St, Boston, MA 02215" -212343,27in 4K Gaming Monitor,1,389.99,06/08/19 18:27,"311 Wilson St, Los Angeles, CA 90001" -212344,34in Ultrawide Monitor,1,379.99,06/06/19 14:42,"115 Church St, Portland, OR 97035" -212345,AA Batteries (4-pack),1,3.84,06/14/19 18:01,"857 Ridge St, Austin, TX 73301" -212346,27in 4K Gaming Monitor,1,389.99,06/17/19 22:23,"285 West St, Dallas, TX 75001" -212347,Macbook Pro Laptop,1,1700,06/25/19 01:30,"395 Madison St, Boston, MA 02215" -212348,AA Batteries (4-pack),1,3.84,06/14/19 22:50,"912 Jefferson St, Seattle, WA 98101" -212349,Flatscreen TV,1,300,06/30/19 10:51,"739 11th St, Atlanta, GA 30301" -212350,iPhone,1,700,06/27/19 20:38,"951 Cedar St, Dallas, TX 75001" -212351,Flatscreen TV,1,300,06/11/19 10:02,"242 Sunset St, San Francisco, CA 94016" -212352,Wired Headphones,1,11.99,06/19/19 00:21,"284 Pine St, San Francisco, CA 94016" -212353,USB-C Charging Cable,1,11.95,06/10/19 16:27,"352 Center St, San Francisco, CA 94016" -212354,USB-C Charging Cable,1,11.95,06/09/19 11:26,"547 Elm St, San Francisco, CA 94016" -212355,AAA Batteries (4-pack),3,2.99,06/12/19 20:02,"365 Meadow St, Boston, MA 02215" -212356,AA Batteries (4-pack),1,3.84,06/07/19 20:18,"885 Jackson St, Portland, OR 97035" -212357,Lightning Charging Cable,1,14.95,06/18/19 18:17,"570 Elm St, San Francisco, CA 94016" -212358,ThinkPad Laptop,1,999.99,06/03/19 19:01,"629 Wilson St, Boston, MA 02215" -212359,USB-C Charging Cable,1,11.95,06/21/19 19:31,"122 Willow St, San Francisco, CA 94016" -212360,Wired Headphones,1,11.99,06/03/19 17:56,"375 Chestnut St, San Francisco, CA 94016" -212361,Google Phone,1,600,06/22/19 19:49,"504 Washington St, Atlanta, GA 30301" -212362,Apple Airpods Headphones,2,150,06/14/19 07:48,"52 West St, San Francisco, CA 94016" -212363,27in FHD Monitor,2,149.99,06/21/19 13:14,"828 Spruce St, San Francisco, CA 94016" -212364,Lightning Charging Cable,2,14.95,06/14/19 09:04,"651 Adams St, Los Angeles, CA 90001" -212365,USB-C Charging Cable,1,11.95,06/23/19 21:06,"619 Center St, Los Angeles, CA 90001" -212366,USB-C Charging Cable,1,11.95,06/02/19 09:18,"984 Meadow St, New York City, NY 10001" -212367,27in FHD Monitor,1,149.99,06/14/19 14:06,"27 8th St, Los Angeles, CA 90001" -212368,AAA Batteries (4-pack),1,2.99,06/27/19 15:26,"600 7th St, New York City, NY 10001" -212369,Lightning Charging Cable,1,14.95,06/09/19 19:43,"360 Maple St, Seattle, WA 98101" -212370,AA Batteries (4-pack),1,3.84,06/20/19 10:49,"212 10th St, Boston, MA 02215" -212371,Apple Airpods Headphones,1,150,06/21/19 21:40,"304 Highland St, Dallas, TX 75001" -212372,Wired Headphones,1,11.99,06/05/19 18:08,"906 West St, Austin, TX 73301" -212373,20in Monitor,1,109.99,06/07/19 10:15,"969 Walnut St, Boston, MA 02215" -212374,Bose SoundSport Headphones,1,99.99,06/14/19 12:52,"344 Maple St, Dallas, TX 75001" -212375,Wired Headphones,1,11.99,06/14/19 20:14,"355 6th St, Los Angeles, CA 90001" -212376,27in 4K Gaming Monitor,1,389.99,06/28/19 23:42,"822 Adams St, San Francisco, CA 94016" -212377,Bose SoundSport Headphones,1,99.99,06/03/19 21:49,"585 Adams St, Dallas, TX 75001" -212378,USB-C Charging Cable,1,11.95,06/06/19 15:54,"207 4th St, Portland, OR 97035" -212379,AAA Batteries (4-pack),2,2.99,06/25/19 15:34,"400 Forest St, Atlanta, GA 30301" -212380,ThinkPad Laptop,1,999.99,06/15/19 15:13,"688 1st St, Portland, OR 97035" -212381,Lightning Charging Cable,1,14.95,06/06/19 19:02,"389 2nd St, San Francisco, CA 94016" -212382,USB-C Charging Cable,1,11.95,06/01/19 22:06,"754 North St, Los Angeles, CA 90001" -212382,Flatscreen TV,1,300,06/01/19 22:06,"754 North St, Los Angeles, CA 90001" -212383,Lightning Charging Cable,1,14.95,06/04/19 14:23,"685 Lake St, New York City, NY 10001" -212384,USB-C Charging Cable,1,11.95,06/14/19 12:49,"859 Madison St, Los Angeles, CA 90001" -212385,USB-C Charging Cable,1,11.95,06/15/19 19:05,"156 Center St, Portland, OR 97035" -212386,27in 4K Gaming Monitor,1,389.99,06/19/19 12:00,"300 9th St, Seattle, WA 98101" -212387,Lightning Charging Cable,1,14.95,06/07/19 19:10,"12 North St, New York City, NY 10001" -212388,AA Batteries (4-pack),1,3.84,06/27/19 10:05,"753 Washington St, Dallas, TX 75001" -212389,AA Batteries (4-pack),3,3.84,06/08/19 23:00,"331 12th St, Austin, TX 73301" -212390,AAA Batteries (4-pack),1,2.99,06/16/19 08:55,"185 Lincoln St, New York City, NY 10001" -212391,Lightning Charging Cable,1,14.95,06/17/19 14:54,"595 Highland St, San Francisco, CA 94016" -212392,AA Batteries (4-pack),1,3.84,06/09/19 15:24,"596 13th St, Seattle, WA 98101" -212393,AAA Batteries (4-pack),1,2.99,06/04/19 17:28,"377 Cedar St, New York City, NY 10001" -212394,Wired Headphones,3,11.99,06/08/19 23:00,"823 Ridge St, Atlanta, GA 30301" -212395,Bose SoundSport Headphones,1,99.99,06/12/19 12:20,"900 Pine St, Los Angeles, CA 90001" -212396,Bose SoundSport Headphones,1,99.99,06/28/19 21:44,"941 1st St, Los Angeles, CA 90001" -212397,Wired Headphones,1,11.99,06/05/19 14:20,"4 Wilson St, Boston, MA 02215" -212398,AAA Batteries (4-pack),2,2.99,06/30/19 21:24,"287 Hill St, New York City, NY 10001" -212399,AA Batteries (4-pack),1,3.84,06/11/19 08:57,"407 14th St, Boston, MA 02215" -212400,27in FHD Monitor,1,149.99,06/24/19 18:56,"739 Church St, New York City, NY 10001" -212401,AA Batteries (4-pack),2,3.84,06/10/19 16:06,"624 Wilson St, New York City, NY 10001" -212402,ThinkPad Laptop,1,999.99,06/18/19 08:11,"267 River St, Boston, MA 02215" -212403,Bose SoundSport Headphones,1,99.99,06/30/19 13:56,"222 Forest St, Portland, OR 97035" -212403,Apple Airpods Headphones,1,150,06/30/19 13:56,"222 Forest St, Portland, OR 97035" -212404,Lightning Charging Cable,1,14.95,06/15/19 00:22,"502 Center St, Seattle, WA 98101" -212405,Bose SoundSport Headphones,1,99.99,06/06/19 10:41,"338 Forest St, San Francisco, CA 94016" -212406,Apple Airpods Headphones,1,150,06/12/19 12:08,"69 Willow St, New York City, NY 10001" -212407,20in Monitor,1,109.99,06/28/19 09:58,"785 Chestnut St, San Francisco, CA 94016" -212408,USB-C Charging Cable,1,11.95,06/09/19 21:05,"601 River St, Boston, MA 02215" -212409,Bose SoundSport Headphones,1,99.99,06/19/19 15:10,"472 Adams St, New York City, NY 10001" -212410,Lightning Charging Cable,1,14.95,06/16/19 12:22,"455 9th St, Los Angeles, CA 90001" -212411,Apple Airpods Headphones,1,150,06/09/19 19:43,"287 Wilson St, Portland, OR 97035" -212412,Google Phone,1,600,06/08/19 17:07,"718 Forest St, San Francisco, CA 94016" -212413,27in FHD Monitor,1,149.99,06/15/19 11:48,"481 Hill St, San Francisco, CA 94016" -212414,Lightning Charging Cable,1,14.95,06/01/19 19:48,"52 Highland St, Boston, MA 02215" -212415,AA Batteries (4-pack),2,3.84,06/19/19 08:16,"971 Hickory St, Boston, MA 02215" -212416,Macbook Pro Laptop,1,1700,06/19/19 09:33,"159 West St, Los Angeles, CA 90001" -212417,USB-C Charging Cable,1,11.95,06/13/19 15:45,"349 Adams St, Atlanta, GA 30301" -212418,Macbook Pro Laptop,1,1700,06/20/19 15:49,"159 South St, Los Angeles, CA 90001" -212419,ThinkPad Laptop,1,999.99,06/19/19 16:37,"677 West St, San Francisco, CA 94016" -212420,Lightning Charging Cable,2,14.95,06/18/19 08:27,"788 Walnut St, San Francisco, CA 94016" -212421,34in Ultrawide Monitor,1,379.99,06/07/19 14:09,"160 Adams St, Dallas, TX 75001" -212422,Wired Headphones,1,11.99,06/02/19 11:11,"620 9th St, Austin, TX 73301" -212423,LG Washing Machine,1,600.0,06/25/19 18:22,"343 Dogwood St, Boston, MA 02215" -212424,AAA Batteries (4-pack),2,2.99,06/26/19 16:13,"938 Hickory St, Boston, MA 02215" -212425,Bose SoundSport Headphones,1,99.99,06/16/19 20:30,"988 7th St, New York City, NY 10001" -212426,Wired Headphones,1,11.99,06/25/19 08:51,"727 Cedar St, Portland, OR 97035" -212427,Wired Headphones,1,11.99,06/20/19 23:02,"922 Willow St, San Francisco, CA 94016" -212428,27in 4K Gaming Monitor,1,389.99,06/20/19 22:03,"532 Lake St, Portland, OR 97035" -212429,AA Batteries (4-pack),1,3.84,06/06/19 15:50,"725 7th St, San Francisco, CA 94016" -212430,Apple Airpods Headphones,1,150,06/28/19 16:29,"594 Cedar St, San Francisco, CA 94016" -212431,27in FHD Monitor,1,149.99,06/14/19 23:11,"66 Wilson St, Dallas, TX 75001" -212432,Apple Airpods Headphones,1,150,06/23/19 19:15,"761 Maple St, San Francisco, CA 94016" -212433,Wired Headphones,1,11.99,06/19/19 15:59,"718 Adams St, Boston, MA 02215" -212434,USB-C Charging Cable,1,11.95,06/28/19 09:43,"156 Lakeview St, Los Angeles, CA 90001" -212435,USB-C Charging Cable,1,11.95,06/28/19 11:21,"668 Maple St, Boston, MA 02215" -212436,iPhone,1,700,06/12/19 00:41,"924 11th St, Los Angeles, CA 90001" -212437,AAA Batteries (4-pack),2,2.99,06/14/19 12:28,"59 Lincoln St, Boston, MA 02215" -212438,ThinkPad Laptop,1,999.99,06/05/19 22:48,"52 Main St, Los Angeles, CA 90001" -212439,AA Batteries (4-pack),1,3.84,06/19/19 08:47,"988 West St, Dallas, TX 75001" -212440,Vareebadd Phone,1,400,06/23/19 13:33,"585 Center St, Austin, TX 73301" -212441,USB-C Charging Cable,1,11.95,06/16/19 00:39,"298 Hickory St, San Francisco, CA 94016" -212442,USB-C Charging Cable,1,11.95,06/24/19 12:48,"117 14th St, Portland, OR 97035" -212443,Wired Headphones,1,11.99,06/10/19 10:53,"567 Main St, San Francisco, CA 94016" -212444,AAA Batteries (4-pack),1,2.99,06/17/19 01:44,"230 Jackson St, San Francisco, CA 94016" -212445,USB-C Charging Cable,1,11.95,06/18/19 23:00,"474 Jefferson St, Los Angeles, CA 90001" -212446,34in Ultrawide Monitor,1,379.99,06/27/19 12:16,"477 13th St, Boston, MA 02215" -212447,Lightning Charging Cable,1,14.95,06/13/19 20:22,"857 Lincoln St, Los Angeles, CA 90001" -212448,Bose SoundSport Headphones,1,99.99,06/04/19 17:25,"349 Cedar St, New York City, NY 10001" -212449,AAA Batteries (4-pack),1,2.99,06/24/19 12:17,"915 Johnson St, Boston, MA 02215" -212450,Apple Airpods Headphones,1,150,06/09/19 16:53,"418 9th St, New York City, NY 10001" -212451,Flatscreen TV,1,300,06/24/19 17:36,"121 Lincoln St, Boston, MA 02215" -212452,Apple Airpods Headphones,1,150,06/20/19 22:16,"239 Hill St, San Francisco, CA 94016" -212453,AA Batteries (4-pack),1,3.84,06/24/19 14:37,"504 8th St, Boston, MA 02215" -212454,USB-C Charging Cable,2,11.95,06/12/19 10:48,"728 North St, San Francisco, CA 94016" -212455,Wired Headphones,1,11.99,06/02/19 13:13,"577 Jackson St, Boston, MA 02215" -212456,USB-C Charging Cable,1,11.95,06/11/19 12:43,"891 12th St, Atlanta, GA 30301" -212456,Apple Airpods Headphones,1,150,06/11/19 12:43,"891 12th St, Atlanta, GA 30301" -212457,AAA Batteries (4-pack),1,2.99,06/10/19 11:26,"631 Sunset St, Dallas, TX 75001" -212458,USB-C Charging Cable,2,11.95,06/20/19 22:00,"656 South St, San Francisco, CA 94016" -212459,AA Batteries (4-pack),2,3.84,06/14/19 07:11,"734 Lake St, New York City, NY 10001" -212460,AA Batteries (4-pack),1,3.84,06/03/19 13:01,"966 8th St, New York City, NY 10001" -212461,USB-C Charging Cable,1,11.95,06/27/19 22:30,"413 Willow St, Los Angeles, CA 90001" -212462,Wired Headphones,1,11.99,06/16/19 12:04,"237 Lakeview St, San Francisco, CA 94016" -212463,Flatscreen TV,1,300,06/03/19 14:01,"359 Walnut St, San Francisco, CA 94016" -212464,AA Batteries (4-pack),1,3.84,06/07/19 18:45,"594 Elm St, New York City, NY 10001" -212465,Wired Headphones,1,11.99,06/19/19 14:16,"82 Jackson St, San Francisco, CA 94016" -212466,Wired Headphones,1,11.99,06/13/19 15:08,"106 7th St, Portland, OR 97035" -212467,Apple Airpods Headphones,1,150,06/28/19 10:57,"568 Center St, San Francisco, CA 94016" -212468,AA Batteries (4-pack),1,3.84,06/21/19 08:36,"996 Highland St, Dallas, TX 75001" -212469,AAA Batteries (4-pack),1,2.99,06/21/19 21:55,"944 Main St, Seattle, WA 98101" -212470,34in Ultrawide Monitor,1,379.99,06/28/19 07:47,"609 7th St, New York City, NY 10001" -212471,Lightning Charging Cable,1,14.95,06/12/19 18:41,"642 Walnut St, Austin, TX 73301" -212472,Bose SoundSport Headphones,1,99.99,06/15/19 13:03,"832 Main St, San Francisco, CA 94016" -212473,Wired Headphones,1,11.99,06/16/19 21:49,"530 Hill St, Atlanta, GA 30301" -212474,USB-C Charging Cable,1,11.95,06/15/19 17:48,"75 Spruce St, New York City, NY 10001" -212475,Apple Airpods Headphones,1,150,06/21/19 18:46,"285 Madison St, Dallas, TX 75001" -212476,Vareebadd Phone,1,400,06/07/19 15:25,"214 Dogwood St, Portland, OR 97035" -212476,USB-C Charging Cable,1,11.95,06/07/19 15:25,"214 Dogwood St, Portland, OR 97035" -212477,AA Batteries (4-pack),1,3.84,06/21/19 15:58,"263 River St, San Francisco, CA 94016" -212478,AA Batteries (4-pack),1,3.84,06/15/19 12:11,"463 Hill St, New York City, NY 10001" -212479,iPhone,1,700,06/25/19 18:55,"436 6th St, San Francisco, CA 94016" -212480,USB-C Charging Cable,2,11.95,06/04/19 17:26,"957 Spruce St, Boston, MA 02215" -212481,AAA Batteries (4-pack),1,2.99,06/27/19 23:09,"185 Jefferson St, Seattle, WA 98101" -212482,Apple Airpods Headphones,1,150,06/13/19 20:11,"538 5th St, Los Angeles, CA 90001" -212483,AA Batteries (4-pack),1,3.84,06/15/19 19:35,"100 Forest St, Portland, OR 97035" -212484,iPhone,1,700,06/14/19 16:02,"812 14th St, Los Angeles, CA 90001" -212485,Macbook Pro Laptop,1,1700,06/25/19 18:35,"323 2nd St, Los Angeles, CA 90001" -212486,Wired Headphones,1,11.99,06/23/19 21:47,"424 12th St, Atlanta, GA 30301" -212487,Bose SoundSport Headphones,1,99.99,06/17/19 12:57,"543 Hickory St, San Francisco, CA 94016" -212488,34in Ultrawide Monitor,1,379.99,06/09/19 10:41,"952 Pine St, Portland, OR 97035" -212489,Bose SoundSport Headphones,1,99.99,06/22/19 19:49,"866 8th St, New York City, NY 10001" -212490,AA Batteries (4-pack),1,3.84,06/09/19 22:30,"458 8th St, Los Angeles, CA 90001" -212491,Bose SoundSport Headphones,1,99.99,06/27/19 18:42,"340 11th St, San Francisco, CA 94016" -212492,AAA Batteries (4-pack),2,2.99,06/13/19 21:16,"655 Center St, San Francisco, CA 94016" -212493,Wired Headphones,1,11.99,06/28/19 08:01,"347 North St, Atlanta, GA 30301" -212494,Bose SoundSport Headphones,1,99.99,06/02/19 23:03,"848 10th St, Boston, MA 02215" -212495,USB-C Charging Cable,1,11.95,06/28/19 10:39,"822 Dogwood St, Portland, ME 04101" -212496,Lightning Charging Cable,1,14.95,06/18/19 15:40,"467 Pine St, Los Angeles, CA 90001" -212497,AAA Batteries (4-pack),1,2.99,06/09/19 16:50,"852 Cherry St, Dallas, TX 75001" -212498,34in Ultrawide Monitor,1,379.99,06/04/19 17:44,"338 Cedar St, Boston, MA 02215" -212499,AA Batteries (4-pack),2,3.84,06/12/19 21:10,"532 Park St, Austin, TX 73301" -212500,Lightning Charging Cable,1,14.95,06/15/19 14:05,"470 West St, San Francisco, CA 94016" -212501,34in Ultrawide Monitor,1,379.99,06/11/19 18:20,"269 Lakeview St, San Francisco, CA 94016" -212502,Wired Headphones,1,11.99,06/15/19 18:35,"463 Church St, Atlanta, GA 30301" -212502,Google Phone,1,600,06/15/19 18:35,"463 Church St, Atlanta, GA 30301" -212503,Flatscreen TV,1,300,06/25/19 13:23,"239 Lakeview St, Boston, MA 02215" -212504,Macbook Pro Laptop,1,1700,06/03/19 16:26,"769 Adams St, Boston, MA 02215" -212505,iPhone,1,700,06/26/19 08:37,"786 Madison St, San Francisco, CA 94016" -212506,iPhone,1,700,06/30/19 19:28,"54 Pine St, Boston, MA 02215" -212507,ThinkPad Laptop,1,999.99,06/21/19 22:08,"690 Cedar St, Austin, TX 73301" -212508,Flatscreen TV,1,300,06/25/19 16:47,"893 Cherry St, Los Angeles, CA 90001" -212509,34in Ultrawide Monitor,1,379.99,06/29/19 14:00,"826 Lakeview St, Boston, MA 02215" -212510,iPhone,1,700,06/21/19 17:14,"794 Lake St, Atlanta, GA 30301" -212511,AA Batteries (4-pack),1,3.84,06/16/19 23:29,"308 11th St, Los Angeles, CA 90001" -212512,Google Phone,1,600,06/10/19 20:47,"568 Park St, Atlanta, GA 30301" -212512,Wired Headphones,1,11.99,06/10/19 20:47,"568 Park St, Atlanta, GA 30301" -212513,Apple Airpods Headphones,1,150,06/05/19 14:38,"951 Lake St, Atlanta, GA 30301" -212514,AAA Batteries (4-pack),1,2.99,06/23/19 00:42,"691 Cedar St, San Francisco, CA 94016" -212515,27in 4K Gaming Monitor,1,389.99,06/23/19 17:47,"729 Forest St, Boston, MA 02215" -212515,AAA Batteries (4-pack),1,2.99,06/23/19 17:47,"729 Forest St, Boston, MA 02215" -212516,iPhone,1,700,06/29/19 11:07,"976 West St, Los Angeles, CA 90001" -212517,Wired Headphones,1,11.99,06/29/19 07:58,"702 Washington St, Boston, MA 02215" -212518,Lightning Charging Cable,1,14.95,06/09/19 22:30,"282 Meadow St, Portland, OR 97035" -212519,USB-C Charging Cable,1,11.95,06/17/19 10:42,"63 Ridge St, San Francisco, CA 94016" -212520,Lightning Charging Cable,1,14.95,06/10/19 07:00,"959 Meadow St, San Francisco, CA 94016" -212521,27in FHD Monitor,1,149.99,06/29/19 01:11,"384 Ridge St, Austin, TX 73301" -212522,Lightning Charging Cable,1,14.95,06/18/19 22:26,"190 Center St, Seattle, WA 98101" -212523,Lightning Charging Cable,1,14.95,06/05/19 19:42,"934 6th St, San Francisco, CA 94016" -212524,Lightning Charging Cable,1,14.95,06/16/19 19:26,"586 14th St, San Francisco, CA 94016" -212525,Apple Airpods Headphones,1,150,06/08/19 14:53,"874 Walnut St, New York City, NY 10001" -212526,Apple Airpods Headphones,1,150,06/05/19 21:05,"925 Adams St, Los Angeles, CA 90001" -212527,34in Ultrawide Monitor,1,379.99,06/23/19 19:08,"989 Ridge St, Los Angeles, CA 90001" -212528,Wired Headphones,2,11.99,06/01/19 20:32,"569 Hickory St, Austin, TX 73301" -212529,Bose SoundSport Headphones,1,99.99,06/18/19 00:07,"94 Park St, New York City, NY 10001" -212530,Google Phone,1,600,06/05/19 12:50,"780 Park St, Atlanta, GA 30301" -212531,Wired Headphones,1,11.99,06/27/19 11:52,"810 7th St, Los Angeles, CA 90001" -212532,Apple Airpods Headphones,1,150,06/01/19 16:45,"676 Center St, New York City, NY 10001" -212533,Wired Headphones,1,11.99,06/25/19 15:10,"198 Hill St, Los Angeles, CA 90001" -212534,AA Batteries (4-pack),2,3.84,06/02/19 12:06,"503 South St, Seattle, WA 98101" -212535,Lightning Charging Cable,1,14.95,06/22/19 16:09,"939 13th St, Los Angeles, CA 90001" -212536,USB-C Charging Cable,1,11.95,06/22/19 16:39,"912 Wilson St, Portland, OR 97035" -212537,AAA Batteries (4-pack),1,2.99,06/19/19 17:07,"688 13th St, New York City, NY 10001" -212538,AAA Batteries (4-pack),4,2.99,06/13/19 08:54,"159 Chestnut St, Portland, OR 97035" -212539,Wired Headphones,1,11.99,06/14/19 18:25,"649 14th St, San Francisco, CA 94016" -212540,Macbook Pro Laptop,1,1700,06/13/19 15:03,"435 Center St, Los Angeles, CA 90001" -212541,LG Washing Machine,1,600.0,06/12/19 10:38,"51 7th St, Atlanta, GA 30301" -212542,Bose SoundSport Headphones,1,99.99,06/14/19 17:07,"808 Washington St, Portland, OR 97035" -212543,Google Phone,1,600,06/05/19 11:31,"566 Hill St, Seattle, WA 98101" -212544,iPhone,1,700,06/19/19 19:53,"983 Johnson St, San Francisco, CA 94016" -212544,Wired Headphones,2,11.99,06/19/19 19:53,"983 Johnson St, San Francisco, CA 94016" -212545,27in 4K Gaming Monitor,1,389.99,06/25/19 18:59,"83 Meadow St, San Francisco, CA 94016" -212546,Apple Airpods Headphones,1,150,06/04/19 00:42,"126 6th St, Portland, ME 04101" -212546,Bose SoundSport Headphones,1,99.99,06/04/19 00:42,"126 6th St, Portland, ME 04101" -212547,AAA Batteries (4-pack),1,2.99,06/20/19 00:11,"880 Center St, San Francisco, CA 94016" -212548,Wired Headphones,1,11.99,06/04/19 23:50,"657 Adams St, Dallas, TX 75001" -212549,Lightning Charging Cable,2,14.95,06/22/19 15:00,"249 Hickory St, San Francisco, CA 94016" -212550,20in Monitor,1,109.99,06/21/19 21:42,"606 Madison St, Boston, MA 02215" -212551,ThinkPad Laptop,1,999.99,06/30/19 14:57,"586 Highland St, New York City, NY 10001" -212552,AA Batteries (4-pack),1,3.84,06/16/19 23:10,"323 Lake St, San Francisco, CA 94016" -212553,Apple Airpods Headphones,1,150,06/11/19 23:05,"286 Jefferson St, San Francisco, CA 94016" -212554,iPhone,1,700,06/07/19 19:17,"347 Jefferson St, San Francisco, CA 94016" -212555,Apple Airpods Headphones,1,150,06/27/19 10:51,"967 12th St, Austin, TX 73301" -212556,USB-C Charging Cable,1,11.95,06/09/19 14:32,"42 Cherry St, Boston, MA 02215" -212557,AA Batteries (4-pack),1,3.84,06/07/19 09:01,"370 6th St, Portland, OR 97035" -212558,AAA Batteries (4-pack),1,2.99,06/27/19 10:35,"943 Dogwood St, San Francisco, CA 94016" -212559,AAA Batteries (4-pack),1,2.99,06/28/19 23:09,"658 Hickory St, Atlanta, GA 30301" -212560,27in FHD Monitor,1,149.99,06/24/19 09:56,"882 Johnson St, New York City, NY 10001" -212561,USB-C Charging Cable,1,11.95,06/26/19 01:08,"379 Madison St, New York City, NY 10001" -212562,ThinkPad Laptop,1,999.99,06/08/19 13:30,"756 Highland St, Seattle, WA 98101" -212563,Flatscreen TV,1,300,06/22/19 18:21,"55 Pine St, San Francisco, CA 94016" -212564,Lightning Charging Cable,1,14.95,06/06/19 19:00,"201 Jackson St, San Francisco, CA 94016" -212565,AAA Batteries (4-pack),1,2.99,06/15/19 09:26,"143 11th St, San Francisco, CA 94016" -212566,Lightning Charging Cable,1,14.95,06/16/19 14:49,"456 North St, Seattle, WA 98101" -212567,AA Batteries (4-pack),1,3.84,06/04/19 22:38,"565 Maple St, Boston, MA 02215" -212568,iPhone,1,700,06/24/19 15:53,"405 Ridge St, San Francisco, CA 94016" -212569,34in Ultrawide Monitor,1,379.99,06/29/19 17:56,"173 10th St, Seattle, WA 98101" -212570,Google Phone,1,600,06/08/19 21:44,"964 River St, Portland, OR 97035" -212571,AA Batteries (4-pack),2,3.84,06/11/19 16:26,"601 Forest St, Atlanta, GA 30301" -212572,34in Ultrawide Monitor,1,379.99,06/09/19 23:05,"605 2nd St, San Francisco, CA 94016" -212573,Flatscreen TV,1,300,06/07/19 10:51,"776 7th St, Seattle, WA 98101" -212574,USB-C Charging Cable,1,11.95,06/07/19 10:12,"940 Jefferson St, Dallas, TX 75001" -212575,27in FHD Monitor,1,149.99,06/06/19 16:29,"747 Cedar St, New York City, NY 10001" -212576,Google Phone,1,600,06/03/19 16:37,"38 Hickory St, Seattle, WA 98101" -212576,Wired Headphones,1,11.99,06/03/19 16:37,"38 Hickory St, Seattle, WA 98101" -212577,Bose SoundSport Headphones,1,99.99,06/07/19 11:38,"3 Park St, Boston, MA 02215" -212578,27in FHD Monitor,1,149.99,06/13/19 19:07,"718 2nd St, Los Angeles, CA 90001" -,,,,, -212579,Lightning Charging Cable,1,14.95,06/26/19 20:29,"553 Spruce St, San Francisco, CA 94016" -212580,AAA Batteries (4-pack),1,2.99,06/15/19 13:46,"864 Spruce St, New York City, NY 10001" -212581,Wired Headphones,1,11.99,06/06/19 20:00,"456 Chestnut St, New York City, NY 10001" -212582,AA Batteries (4-pack),1,3.84,06/06/19 23:07,"550 Walnut St, New York City, NY 10001" -212583,Apple Airpods Headphones,1,150,06/14/19 18:57,"260 Jackson St, New York City, NY 10001" -212584,Lightning Charging Cable,1,14.95,06/28/19 12:35,"216 Cherry St, Dallas, TX 75001" -212585,ThinkPad Laptop,1,999.99,06/06/19 20:29,"194 West St, Seattle, WA 98101" -212586,AA Batteries (4-pack),1,3.84,06/23/19 19:54,"470 Sunset St, Boston, MA 02215" -212587,Bose SoundSport Headphones,1,99.99,06/26/19 11:55,"927 Lake St, San Francisco, CA 94016" -212588,USB-C Charging Cable,1,11.95,06/03/19 16:47,"729 Church St, San Francisco, CA 94016" -212589,Apple Airpods Headphones,1,150,06/23/19 12:11,"577 6th St, Dallas, TX 75001" -212590,27in 4K Gaming Monitor,1,389.99,06/06/19 16:52,"168 Meadow St, Dallas, TX 75001" -212591,27in FHD Monitor,1,149.99,06/01/19 22:29,"748 Hill St, Los Angeles, CA 90001" -212592,27in FHD Monitor,1,149.99,06/10/19 22:02,"12 Cedar St, San Francisco, CA 94016" -212593,Wired Headphones,1,11.99,06/04/19 19:39,"541 Hill St, Atlanta, GA 30301" -212594,USB-C Charging Cable,1,11.95,06/30/19 09:22,"999 Hill St, Los Angeles, CA 90001" -212595,Macbook Pro Laptop,1,1700,06/01/19 19:11,"479 Pine St, Atlanta, GA 30301" -212596,27in FHD Monitor,1,149.99,06/13/19 20:07,"159 Lincoln St, San Francisco, CA 94016" -212597,Wired Headphones,1,11.99,06/18/19 08:13,"997 Chestnut St, Los Angeles, CA 90001" -212598,Flatscreen TV,1,300,06/15/19 22:36,"880 Church St, Los Angeles, CA 90001" -212599,USB-C Charging Cable,1,11.95,06/21/19 10:31,"830 2nd St, Atlanta, GA 30301" -212600,Lightning Charging Cable,1,14.95,06/16/19 18:38,"720 Willow St, New York City, NY 10001" -212601,Apple Airpods Headphones,1,150,06/03/19 21:44,"679 Lincoln St, Los Angeles, CA 90001" -212602,AA Batteries (4-pack),1,3.84,06/29/19 14:30,"303 Center St, Los Angeles, CA 90001" -212603,27in 4K Gaming Monitor,1,389.99,06/09/19 04:12,"24 Sunset St, Boston, MA 02215" -212604,27in FHD Monitor,1,149.99,07/01/19 00:50,"449 Church St, San Francisco, CA 94016" -212605,AA Batteries (4-pack),1,3.84,06/20/19 02:12,"634 11th St, Boston, MA 02215" -212606,ThinkPad Laptop,1,999.99,06/03/19 19:19,"134 Meadow St, San Francisco, CA 94016" -212607,USB-C Charging Cable,1,11.95,06/16/19 20:12,"763 Sunset St, New York City, NY 10001" -212608,Wired Headphones,2,11.99,06/08/19 16:24,"137 Cedar St, Seattle, WA 98101" -212609,AA Batteries (4-pack),1,3.84,06/08/19 08:03,"858 11th St, Seattle, WA 98101" -212610,Apple Airpods Headphones,1,150,06/16/19 09:01,"306 Highland St, New York City, NY 10001" -212611,Wired Headphones,1,11.99,06/19/19 17:38,"435 Washington St, New York City, NY 10001" -212612,ThinkPad Laptop,1,999.99,06/11/19 08:19,"965 Jefferson St, Seattle, WA 98101" -212613,Macbook Pro Laptop,1,1700,06/27/19 15:51,"116 12th St, New York City, NY 10001" -212614,USB-C Charging Cable,1,11.95,06/04/19 17:20,"921 Highland St, San Francisco, CA 94016" -212615,AA Batteries (4-pack),2,3.84,06/14/19 09:39,"264 14th St, New York City, NY 10001" -212616,AA Batteries (4-pack),1,3.84,06/10/19 13:50,"850 11th St, San Francisco, CA 94016" -212616,USB-C Charging Cable,1,11.95,06/10/19 13:50,"850 11th St, San Francisco, CA 94016" -212617,iPhone,1,700,06/14/19 21:23,"918 Dogwood St, Seattle, WA 98101" -212617,Wired Headphones,1,11.99,06/14/19 21:23,"918 Dogwood St, Seattle, WA 98101" -212618,AAA Batteries (4-pack),1,2.99,06/30/19 10:09,"279 Walnut St, San Francisco, CA 94016" -212619,Apple Airpods Headphones,1,150,06/07/19 21:14,"734 Park St, Atlanta, GA 30301" -212620,Lightning Charging Cable,1,14.95,06/20/19 08:58,"855 Forest St, Los Angeles, CA 90001" -212621,USB-C Charging Cable,1,11.95,06/24/19 17:27,"252 Lake St, Seattle, WA 98101" -212622,AAA Batteries (4-pack),1,2.99,06/18/19 21:19,"545 Lincoln St, Los Angeles, CA 90001" -212623,AA Batteries (4-pack),2,3.84,06/18/19 14:32,"350 Church St, Austin, TX 73301" -212624,iPhone,1,700,06/30/19 10:47,"109 4th St, New York City, NY 10001" -212624,Lightning Charging Cable,1,14.95,06/30/19 10:47,"109 4th St, New York City, NY 10001" -212625,Wired Headphones,3,11.99,06/07/19 12:30,"889 6th St, San Francisco, CA 94016" -212626,Macbook Pro Laptop,1,1700,06/02/19 01:06,"197 Sunset St, New York City, NY 10001" -212627,Lightning Charging Cable,1,14.95,06/17/19 15:43,"118 Spruce St, San Francisco, CA 94016" -212628,Apple Airpods Headphones,1,150,06/08/19 13:45,"857 7th St, Atlanta, GA 30301" -212629,Flatscreen TV,1,300,06/17/19 09:43,"617 8th St, Los Angeles, CA 90001" -212630,Wired Headphones,1,11.99,06/07/19 10:17,"829 Walnut St, Boston, MA 02215" -212631,Macbook Pro Laptop,1,1700,06/03/19 16:19,"523 Maple St, San Francisco, CA 94016" -212632,Lightning Charging Cable,1,14.95,06/18/19 16:56,"87 5th St, Los Angeles, CA 90001" -212633,USB-C Charging Cable,1,11.95,06/11/19 12:58,"704 8th St, Austin, TX 73301" -212634,Wired Headphones,1,11.99,06/04/19 16:29,"407 Hill St, Austin, TX 73301" -212635,AAA Batteries (4-pack),1,2.99,06/08/19 13:31,"207 Sunset St, Los Angeles, CA 90001" -212636,34in Ultrawide Monitor,1,379.99,06/08/19 10:48,"563 Park St, Seattle, WA 98101" -212637,USB-C Charging Cable,1,11.95,06/02/19 11:29,"434 South St, San Francisco, CA 94016" -212638,34in Ultrawide Monitor,1,379.99,06/14/19 22:40,"289 Park St, New York City, NY 10001" -212639,iPhone,1,700,06/17/19 23:40,"163 2nd St, San Francisco, CA 94016" -212640,USB-C Charging Cable,1,11.95,06/03/19 10:58,"415 11th St, Austin, TX 73301" -212641,Flatscreen TV,1,300,06/03/19 05:12,"41 13th St, San Francisco, CA 94016" -212642,Bose SoundSport Headphones,1,99.99,06/20/19 11:45,"357 Center St, San Francisco, CA 94016" -212643,USB-C Charging Cable,1,11.95,06/30/19 03:07,"767 Jackson St, Dallas, TX 75001" -212644,Wired Headphones,1,11.99,06/21/19 16:26,"493 Lincoln St, New York City, NY 10001" -212644,USB-C Charging Cable,1,11.95,06/21/19 16:26,"493 Lincoln St, New York City, NY 10001" -212645,USB-C Charging Cable,1,11.95,06/24/19 18:03,"114 5th St, Boston, MA 02215" -212646,Wired Headphones,1,11.99,06/13/19 06:38,"350 Hickory St, San Francisco, CA 94016" -212647,Wired Headphones,1,11.99,06/30/19 21:37,"443 Lakeview St, Los Angeles, CA 90001" -212648,Wired Headphones,1,11.99,06/23/19 09:44,"100 8th St, Austin, TX 73301" -212649,AA Batteries (4-pack),4,3.84,06/14/19 15:58,"589 Ridge St, Atlanta, GA 30301" -212650,Apple Airpods Headphones,1,150,06/06/19 18:09,"97 Walnut St, Atlanta, GA 30301" -212651,AAA Batteries (4-pack),2,2.99,06/12/19 10:36,"851 1st St, Dallas, TX 75001" -212652,27in 4K Gaming Monitor,1,389.99,06/19/19 06:37,"413 Forest St, New York City, NY 10001" -212653,USB-C Charging Cable,1,11.95,06/03/19 16:40,"17 11th St, Austin, TX 73301" -212654,34in Ultrawide Monitor,1,379.99,06/19/19 09:12,"286 North St, New York City, NY 10001" -212655,Apple Airpods Headphones,1,150,06/02/19 17:52,"62 12th St, New York City, NY 10001" -212656,iPhone,1,700,06/02/19 15:14,"691 Forest St, Los Angeles, CA 90001" -212657,ThinkPad Laptop,1,999.99,06/28/19 21:29,"670 Maple St, San Francisco, CA 94016" -212658,AA Batteries (4-pack),1,3.84,06/11/19 01:50,"820 West St, Dallas, TX 75001" -212659,34in Ultrawide Monitor,1,379.99,06/15/19 22:25,"78 13th St, Seattle, WA 98101" -212660,Flatscreen TV,1,300,06/26/19 13:52,"590 Lincoln St, San Francisco, CA 94016" -212661,AA Batteries (4-pack),2,3.84,06/08/19 11:18,"733 Meadow St, Atlanta, GA 30301" -212662,Bose SoundSport Headphones,1,99.99,06/30/19 11:05,"341 14th St, San Francisco, CA 94016" -212663,ThinkPad Laptop,1,999.99,06/10/19 11:31,"734 11th St, Dallas, TX 75001" -212664,Bose SoundSport Headphones,1,99.99,06/22/19 01:26,"332 River St, New York City, NY 10001" -212665,iPhone,1,700,06/16/19 20:08,"120 Maple St, Los Angeles, CA 90001" -212666,ThinkPad Laptop,1,999.99,06/11/19 11:28,"700 Cherry St, Boston, MA 02215" -212667,USB-C Charging Cable,1,11.95,06/13/19 22:30,"580 Center St, San Francisco, CA 94016" -212668,Macbook Pro Laptop,1,1700,06/03/19 13:00,"873 Hickory St, Portland, OR 97035" -212669,AA Batteries (4-pack),1,3.84,06/19/19 17:38,"798 Maple St, Boston, MA 02215" -212670,Google Phone,1,600,06/01/19 17:41,"130 Wilson St, Portland, OR 97035" -212671,Apple Airpods Headphones,1,150,06/26/19 13:12,"456 Chestnut St, Portland, OR 97035" -212672,Lightning Charging Cable,1,14.95,06/02/19 22:29,"781 Church St, Boston, MA 02215" -212673,Apple Airpods Headphones,1,150,06/30/19 18:33,"186 West St, San Francisco, CA 94016" -212674,27in 4K Gaming Monitor,1,389.99,06/14/19 07:50,"415 6th St, Seattle, WA 98101" -212675,AAA Batteries (4-pack),1,2.99,06/04/19 00:23,"919 Maple St, Los Angeles, CA 90001" -212676,iPhone,1,700,06/19/19 21:38,"604 Wilson St, Los Angeles, CA 90001" -212677,USB-C Charging Cable,2,11.95,06/29/19 18:20,"554 Hickory St, Boston, MA 02215" -212678,Lightning Charging Cable,1,14.95,06/09/19 19:31,"16 Jefferson St, Los Angeles, CA 90001" -212679,Wired Headphones,1,11.99,06/14/19 10:31,"69 Pine St, Los Angeles, CA 90001" -212680,Lightning Charging Cable,1,14.95,06/05/19 14:03,"271 Lake St, Boston, MA 02215" -212681,AAA Batteries (4-pack),3,2.99,06/24/19 14:54,"827 4th St, Boston, MA 02215" -212682,USB-C Charging Cable,1,11.95,06/15/19 14:42,"892 Sunset St, Dallas, TX 75001" -212683,Bose SoundSport Headphones,1,99.99,06/11/19 17:09,"212 Maple St, Boston, MA 02215" -212684,27in FHD Monitor,1,149.99,06/20/19 11:25,"299 Center St, Los Angeles, CA 90001" -212685,Wired Headphones,2,11.99,06/10/19 18:31,"234 Dogwood St, Austin, TX 73301" -212686,27in 4K Gaming Monitor,1,389.99,06/30/19 19:24,"305 Ridge St, Portland, OR 97035" -212687,Lightning Charging Cable,1,14.95,06/12/19 10:08,"273 1st St, New York City, NY 10001" -212688,USB-C Charging Cable,1,11.95,06/23/19 19:28,"742 Meadow St, San Francisco, CA 94016" -212689,Lightning Charging Cable,1,14.95,06/12/19 13:49,"556 Wilson St, Atlanta, GA 30301" -212690,20in Monitor,1,109.99,06/29/19 20:01,"919 Ridge St, San Francisco, CA 94016" -212691,Wired Headphones,1,11.99,06/12/19 07:56,"842 Adams St, San Francisco, CA 94016" -212692,20in Monitor,1,109.99,06/05/19 19:17,"877 Lincoln St, Seattle, WA 98101" -212693,iPhone,1,700,06/18/19 23:56,"603 West St, Seattle, WA 98101" -212694,Wired Headphones,1,11.99,06/13/19 19:12,"538 Jackson St, New York City, NY 10001" -212695,AAA Batteries (4-pack),1,2.99,06/01/19 19:24,"96 Dogwood St, New York City, NY 10001" -212696,Macbook Pro Laptop,1,1700,06/12/19 23:33,"931 Cherry St, Dallas, TX 75001" -212697,27in FHD Monitor,1,149.99,06/17/19 11:38,"438 10th St, Boston, MA 02215" -212698,AAA Batteries (4-pack),1,2.99,06/16/19 10:26,"7 Chestnut St, San Francisco, CA 94016" -212699,Bose SoundSport Headphones,1,99.99,06/02/19 19:44,"525 Willow St, San Francisco, CA 94016" -212700,USB-C Charging Cable,1,11.95,06/05/19 17:02,"639 6th St, Los Angeles, CA 90001" -212701,20in Monitor,1,109.99,06/03/19 13:58,"434 River St, New York City, NY 10001" -212702,AA Batteries (4-pack),1,3.84,06/11/19 22:29,"602 8th St, Boston, MA 02215" -212703,USB-C Charging Cable,1,11.95,06/13/19 19:31,"449 4th St, Atlanta, GA 30301" -212704,Lightning Charging Cable,1,14.95,06/11/19 14:07,"181 Hickory St, San Francisco, CA 94016" -212705,Macbook Pro Laptop,1,1700,06/26/19 19:33,"971 2nd St, Los Angeles, CA 90001" -212706,Apple Airpods Headphones,1,150,06/06/19 12:35,"330 14th St, San Francisco, CA 94016" -212707,AA Batteries (4-pack),2,3.84,06/24/19 12:17,"769 Washington St, Boston, MA 02215" -212708,Wired Headphones,1,11.99,06/03/19 16:27,"846 Wilson St, San Francisco, CA 94016" -212709,AA Batteries (4-pack),1,3.84,06/01/19 22:14,"454 Chestnut St, San Francisco, CA 94016" -212710,USB-C Charging Cable,1,11.95,06/29/19 16:09,"538 9th St, Portland, OR 97035" -212711,27in FHD Monitor,1,149.99,06/29/19 18:20,"856 Highland St, Atlanta, GA 30301" -212712,20in Monitor,1,109.99,06/07/19 18:12,"981 2nd St, Austin, TX 73301" -212713,Apple Airpods Headphones,1,150,06/18/19 20:08,"541 Jackson St, Los Angeles, CA 90001" -212714,27in 4K Gaming Monitor,1,389.99,06/19/19 21:55,"966 9th St, Boston, MA 02215" -212715,AA Batteries (4-pack),1,3.84,06/10/19 10:32,"556 Maple St, Portland, OR 97035" -212716,Wired Headphones,1,11.99,06/17/19 23:05,"40 Adams St, Los Angeles, CA 90001" -212717,27in FHD Monitor,1,149.99,06/06/19 02:41,"594 13th St, San Francisco, CA 94016" -212718,AAA Batteries (4-pack),2,2.99,06/02/19 07:48,"869 1st St, Atlanta, GA 30301" -212719,AA Batteries (4-pack),1,3.84,06/28/19 07:40,"572 Forest St, San Francisco, CA 94016" -212720,AA Batteries (4-pack),1,3.84,06/23/19 08:59,"224 Meadow St, Los Angeles, CA 90001" -212721,Bose SoundSport Headphones,1,99.99,06/11/19 18:26,"437 4th St, Seattle, WA 98101" -212722,iPhone,1,700,06/28/19 17:56,"968 Lakeview St, Portland, ME 04101" -212723,USB-C Charging Cable,1,11.95,06/01/19 13:32,"520 Meadow St, New York City, NY 10001" -212724,Bose SoundSport Headphones,1,99.99,06/12/19 16:41,"721 Spruce St, Boston, MA 02215" -212725,Apple Airpods Headphones,1,150,06/05/19 14:33,"891 Main St, San Francisco, CA 94016" -212726,20in Monitor,1,109.99,06/12/19 08:26,"107 Wilson St, San Francisco, CA 94016" -212727,Bose SoundSport Headphones,1,99.99,06/11/19 09:36,"546 Chestnut St, New York City, NY 10001" -212728,AA Batteries (4-pack),3,3.84,06/05/19 15:12,"130 Chestnut St, Boston, MA 02215" -212729,34in Ultrawide Monitor,1,379.99,06/14/19 10:57,"915 Walnut St, New York City, NY 10001" -212730,Macbook Pro Laptop,1,1700,06/02/19 12:47,"566 Chestnut St, San Francisco, CA 94016" -212731,Bose SoundSport Headphones,1,99.99,06/27/19 11:09,"288 Wilson St, Boston, MA 02215" -212732,Lightning Charging Cable,1,14.95,06/12/19 19:41,"919 12th St, New York City, NY 10001" -212733,USB-C Charging Cable,1,11.95,06/10/19 20:40,"947 Meadow St, Atlanta, GA 30301" -212734,Apple Airpods Headphones,1,150,06/29/19 15:10,"618 8th St, San Francisco, CA 94016" -212735,AA Batteries (4-pack),1,3.84,06/09/19 08:34,"939 Cherry St, San Francisco, CA 94016" -212736,Bose SoundSport Headphones,1,99.99,06/24/19 03:19,"890 Cherry St, San Francisco, CA 94016" -212737,USB-C Charging Cable,2,11.95,06/17/19 18:42,"929 Park St, Dallas, TX 75001" -212738,Bose SoundSport Headphones,1,99.99,06/02/19 23:10,"231 Spruce St, New York City, NY 10001" -212739,USB-C Charging Cable,1,11.95,06/17/19 19:45,"569 8th St, Los Angeles, CA 90001" -212740,Apple Airpods Headphones,1,150,06/24/19 10:46,"392 Willow St, Seattle, WA 98101" -212741,USB-C Charging Cable,1,11.95,06/12/19 20:09,"807 Lincoln St, New York City, NY 10001" -212742,Wired Headphones,1,11.99,06/18/19 09:43,"159 River St, New York City, NY 10001" -212743,27in 4K Gaming Monitor,1,389.99,06/04/19 16:39,"137 12th St, San Francisco, CA 94016" -212744,Macbook Pro Laptop,1,1700,06/02/19 13:18,"264 Lake St, New York City, NY 10001" -212745,iPhone,1,700,06/09/19 14:01,"13 Chestnut St, Seattle, WA 98101" -212745,Lightning Charging Cable,1,14.95,06/09/19 14:01,"13 Chestnut St, Seattle, WA 98101" -212746,AA Batteries (4-pack),2,3.84,06/05/19 10:54,"121 Maple St, Portland, ME 04101" -212747,AA Batteries (4-pack),2,3.84,06/15/19 19:50,"832 7th St, Seattle, WA 98101" -212748,AA Batteries (4-pack),3,3.84,06/13/19 16:00,"711 Church St, San Francisco, CA 94016" -212749,Lightning Charging Cable,1,14.95,06/09/19 21:57,"725 12th St, New York City, NY 10001" -212750,AA Batteries (4-pack),1,3.84,06/20/19 22:06,"104 Washington St, New York City, NY 10001" -212751,AA Batteries (4-pack),1,3.84,06/12/19 09:41,"11 Jackson St, Portland, OR 97035" -212752,iPhone,1,700,06/06/19 07:01,"748 2nd St, Boston, MA 02215" -212753,Google Phone,1,600,06/12/19 16:52,"581 Chestnut St, Atlanta, GA 30301" -212753,USB-C Charging Cable,1,11.95,06/12/19 16:52,"581 Chestnut St, Atlanta, GA 30301" -212753,Wired Headphones,1,11.99,06/12/19 16:52,"581 Chestnut St, Atlanta, GA 30301" -212754,34in Ultrawide Monitor,1,379.99,06/09/19 19:43,"624 13th St, New York City, NY 10001" -212755,USB-C Charging Cable,1,11.95,06/07/19 22:23,"332 10th St, San Francisco, CA 94016" -212756,AAA Batteries (4-pack),1,2.99,06/22/19 20:35,"240 14th St, Boston, MA 02215" -212756,Wired Headphones,2,11.99,06/22/19 20:35,"240 14th St, Boston, MA 02215" -212757,AA Batteries (4-pack),2,3.84,06/14/19 18:19,"925 Adams St, Atlanta, GA 30301" -212758,Google Phone,1,600,06/14/19 04:17,"999 Jackson St, Austin, TX 73301" -212758,USB-C Charging Cable,1,11.95,06/14/19 04:17,"999 Jackson St, Austin, TX 73301" -212759,Wired Headphones,1,11.99,06/26/19 16:35,"306 13th St, San Francisco, CA 94016" -212759,USB-C Charging Cable,2,11.95,06/26/19 16:35,"306 13th St, San Francisco, CA 94016" -212760,Apple Airpods Headphones,1,150,06/26/19 18:41,"80 Lincoln St, Austin, TX 73301" -212761,AA Batteries (4-pack),1,3.84,06/14/19 16:57,"92 Sunset St, Boston, MA 02215" -212762,AAA Batteries (4-pack),1,2.99,06/26/19 14:07,"457 Elm St, Austin, TX 73301" -212763,AAA Batteries (4-pack),1,2.99,06/24/19 05:13,"907 Cedar St, Seattle, WA 98101" -212764,27in 4K Gaming Monitor,1,389.99,06/19/19 14:16,"997 Jefferson St, Dallas, TX 75001" -212765,Flatscreen TV,1,300,06/28/19 22:56,"212 Lake St, Portland, OR 97035" -212766,AAA Batteries (4-pack),2,2.99,06/21/19 01:50,"635 12th St, Austin, TX 73301" -212767,Google Phone,1,600,06/23/19 21:53,"788 12th St, Boston, MA 02215" -212768,AA Batteries (4-pack),1,3.84,06/16/19 23:22,"563 Hill St, Atlanta, GA 30301" -212769,AA Batteries (4-pack),1,3.84,06/30/19 21:39,"532 Washington St, San Francisco, CA 94016" -212770,USB-C Charging Cable,1,11.95,06/20/19 08:02,"522 4th St, Dallas, TX 75001" -212771,USB-C Charging Cable,1,11.95,06/28/19 13:57,"922 2nd St, Portland, OR 97035" -212772,USB-C Charging Cable,1,11.95,06/23/19 10:01,"766 Forest St, Los Angeles, CA 90001" -212773,iPhone,1,700,06/24/19 17:52,"855 11th St, San Francisco, CA 94016" -212774,Vareebadd Phone,1,400,06/06/19 11:03,"464 Park St, Seattle, WA 98101" -212774,USB-C Charging Cable,1,11.95,06/06/19 11:03,"464 Park St, Seattle, WA 98101" -212774,Bose SoundSport Headphones,1,99.99,06/06/19 11:03,"464 Park St, Seattle, WA 98101" -212775,AAA Batteries (4-pack),3,2.99,06/16/19 00:31,"307 Highland St, Dallas, TX 75001" -212776,Apple Airpods Headphones,1,150,06/22/19 09:54,"894 Lakeview St, Portland, OR 97035" -212777,Apple Airpods Headphones,1,150,06/26/19 18:40,"923 Lincoln St, Seattle, WA 98101" -212778,USB-C Charging Cable,1,11.95,06/28/19 17:28,"248 Walnut St, San Francisco, CA 94016" -212779,Google Phone,1,600,06/07/19 16:07,"969 Lincoln St, Seattle, WA 98101" -212780,USB-C Charging Cable,1,11.95,06/18/19 16:59,"536 Maple St, Seattle, WA 98101" -212781,AAA Batteries (4-pack),3,2.99,06/22/19 22:23,"360 Wilson St, Dallas, TX 75001" -212782,27in 4K Gaming Monitor,1,389.99,06/12/19 17:17,"286 10th St, New York City, NY 10001" -212783,Wired Headphones,1,11.99,06/26/19 13:40,"118 Johnson St, Dallas, TX 75001" -212784,Apple Airpods Headphones,1,150,06/23/19 02:31,"24 Wilson St, New York City, NY 10001" -212785,Apple Airpods Headphones,1,150,06/27/19 14:05,"693 Chestnut St, Boston, MA 02215" -212786,AA Batteries (4-pack),1,3.84,06/09/19 09:32,"714 10th St, New York City, NY 10001" -212787,USB-C Charging Cable,1,11.95,06/02/19 11:34,"707 8th St, San Francisco, CA 94016" -212788,Bose SoundSport Headphones,1,99.99,06/08/19 16:09,"331 2nd St, Boston, MA 02215" -212789,AA Batteries (4-pack),1,3.84,06/27/19 23:41,"521 Elm St, San Francisco, CA 94016" -212790,USB-C Charging Cable,2,11.95,06/16/19 22:15,"374 13th St, Seattle, WA 98101" -212791,Wired Headphones,1,11.99,06/23/19 14:54,"987 2nd St, Dallas, TX 75001" -212792,27in FHD Monitor,1,149.99,06/30/19 14:42,"12 Hill St, Austin, TX 73301" -212793,Bose SoundSport Headphones,1,99.99,06/25/19 13:13,"724 North St, Los Angeles, CA 90001" -212794,AAA Batteries (4-pack),1,2.99,06/24/19 07:14,"678 Maple St, San Francisco, CA 94016" -212795,Apple Airpods Headphones,1,150,06/09/19 18:23,"11 Lake St, Boston, MA 02215" -212796,Wired Headphones,1,11.99,06/20/19 15:38,"462 7th St, Austin, TX 73301" -212797,Apple Airpods Headphones,1,150,06/04/19 17:29,"353 Meadow St, Dallas, TX 75001" -212798,AA Batteries (4-pack),1,3.84,06/06/19 13:45,"314 Cherry St, San Francisco, CA 94016" -212799,Bose SoundSport Headphones,1,99.99,06/07/19 09:54,"437 Spruce St, Dallas, TX 75001" -212800,iPhone,1,700,06/14/19 19:29,"17 Cherry St, Portland, OR 97035" -212801,iPhone,1,700,06/18/19 08:05,"772 7th St, Boston, MA 02215" -212802,Bose SoundSport Headphones,1,99.99,06/05/19 17:41,"637 Cedar St, Portland, OR 97035" -212803,USB-C Charging Cable,1,11.95,06/29/19 13:37,"888 Dogwood St, Austin, TX 73301" -212804,Wired Headphones,1,11.99,06/28/19 09:29,"15 1st St, San Francisco, CA 94016" -212805,Lightning Charging Cable,2,14.95,06/25/19 20:10,"402 Forest St, Los Angeles, CA 90001" -212806,Wired Headphones,1,11.99,06/27/19 21:57,"601 Forest St, Austin, TX 73301" -212807,Bose SoundSport Headphones,1,99.99,06/25/19 18:09,"146 South St, Seattle, WA 98101" -212808,Google Phone,1,600,06/04/19 09:02,"770 9th St, San Francisco, CA 94016" -212809,AAA Batteries (4-pack),4,2.99,06/24/19 22:43,"120 10th St, San Francisco, CA 94016" -212810,34in Ultrawide Monitor,1,379.99,06/16/19 13:25,"285 12th St, Boston, MA 02215" -212811,27in FHD Monitor,1,149.99,06/04/19 19:42,"482 Hill St, San Francisco, CA 94016" -212812,Vareebadd Phone,1,400,06/29/19 09:58,"68 Sunset St, New York City, NY 10001" -212813,AAA Batteries (4-pack),2,2.99,06/26/19 21:21,"768 Jackson St, Portland, ME 04101" -212813,Bose SoundSport Headphones,1,99.99,06/26/19 21:21,"768 Jackson St, Portland, ME 04101" -212814,Flatscreen TV,1,300,06/12/19 19:11,"706 Pine St, San Francisco, CA 94016" -212815,Vareebadd Phone,1,400,06/29/19 20:10,"471 11th St, New York City, NY 10001" -212815,Wired Headphones,1,11.99,06/29/19 20:10,"471 11th St, New York City, NY 10001" -212816,Bose SoundSport Headphones,1,99.99,06/07/19 23:09,"517 Pine St, Los Angeles, CA 90001" -212817,27in FHD Monitor,1,149.99,06/08/19 19:37,"826 8th St, San Francisco, CA 94016" -212818,Bose SoundSport Headphones,1,99.99,06/24/19 12:01,"361 Elm St, New York City, NY 10001" -212819,AAA Batteries (4-pack),1,2.99,06/15/19 13:38,"32 West St, San Francisco, CA 94016" -212820,AA Batteries (4-pack),1,3.84,06/21/19 22:50,"291 Jefferson St, New York City, NY 10001" -212821,27in FHD Monitor,1,149.99,06/03/19 15:50,"109 8th St, Los Angeles, CA 90001" -212822,Apple Airpods Headphones,1,150,06/17/19 21:11,"876 South St, New York City, NY 10001" -212823,Wired Headphones,2,11.99,06/27/19 06:25,"300 South St, Atlanta, GA 30301" -212824,27in FHD Monitor,1,149.99,06/13/19 19:45,"37 7th St, San Francisco, CA 94016" -212825,Wired Headphones,2,11.99,06/29/19 19:39,"576 West St, San Francisco, CA 94016" -212826,Apple Airpods Headphones,1,150,06/30/19 09:49,"123 Church St, Atlanta, GA 30301" -212827,AAA Batteries (4-pack),1,2.99,06/12/19 09:21,"716 Ridge St, San Francisco, CA 94016" -212828,Bose SoundSport Headphones,1,99.99,06/28/19 19:48,"875 8th St, Dallas, TX 75001" -212829,Lightning Charging Cable,1,14.95,06/30/19 11:57,"183 Sunset St, New York City, NY 10001" -212830,Apple Airpods Headphones,1,150,06/27/19 19:44,"954 12th St, Seattle, WA 98101" -212831,iPhone,1,700,06/20/19 13:07,"571 Chestnut St, Dallas, TX 75001" -212832,20in Monitor,1,109.99,06/07/19 12:12,"479 Madison St, Austin, TX 73301" -212833,AAA Batteries (4-pack),3,2.99,06/04/19 01:50,"365 2nd St, San Francisco, CA 94016" -,,,,, -212834,AA Batteries (4-pack),1,3.84,06/12/19 08:55,"436 Meadow St, San Francisco, CA 94016" -212835,Apple Airpods Headphones,1,150,06/27/19 16:47,"705 West St, Boston, MA 02215" -212836,AA Batteries (4-pack),1,3.84,06/28/19 18:29,"403 Jefferson St, New York City, NY 10001" -212837,Lightning Charging Cable,1,14.95,06/18/19 20:03,"477 8th St, San Francisco, CA 94016" -212838,iPhone,1,700,06/28/19 20:25,"409 8th St, Los Angeles, CA 90001" -212839,Lightning Charging Cable,2,14.95,06/23/19 00:12,"529 8th St, San Francisco, CA 94016" -212840,Wired Headphones,1,11.99,06/23/19 00:06,"293 Pine St, Los Angeles, CA 90001" -212841,20in Monitor,1,109.99,06/07/19 09:18,"75 Lake St, Seattle, WA 98101" -212842,34in Ultrawide Monitor,1,379.99,06/12/19 10:26,"820 Jefferson St, Atlanta, GA 30301" -212843,AAA Batteries (4-pack),1,2.99,06/25/19 05:11,"491 Ridge St, San Francisco, CA 94016" -212844,Apple Airpods Headphones,1,150,06/23/19 18:56,"727 Hickory St, Austin, TX 73301" -212845,USB-C Charging Cable,2,11.95,06/27/19 12:56,"190 Highland St, Boston, MA 02215" -212846,Lightning Charging Cable,1,14.95,06/20/19 22:40,"162 South St, New York City, NY 10001" -212847,USB-C Charging Cable,1,11.95,06/07/19 18:29,"641 Johnson St, New York City, NY 10001" -212848,27in 4K Gaming Monitor,1,389.99,06/22/19 19:00,"106 South St, San Francisco, CA 94016" -212849,USB-C Charging Cable,1,11.95,06/17/19 02:04,"365 Maple St, Austin, TX 73301" -212850,ThinkPad Laptop,1,999.99,06/24/19 12:58,"141 8th St, San Francisco, CA 94016" -212851,USB-C Charging Cable,2,11.95,06/20/19 18:14,"999 Main St, Austin, TX 73301" -212852,AA Batteries (4-pack),1,3.84,06/02/19 17:07,"476 Cherry St, San Francisco, CA 94016" -212853,Wired Headphones,1,11.99,06/01/19 08:37,"522 2nd St, San Francisco, CA 94016" -212854,34in Ultrawide Monitor,1,379.99,06/14/19 20:55,"656 Adams St, Los Angeles, CA 90001" -212855,AA Batteries (4-pack),2,3.84,06/09/19 19:31,"759 Madison St, Portland, OR 97035" -212856,USB-C Charging Cable,2,11.95,06/01/19 21:03,"671 Church St, San Francisco, CA 94016" -212857,Wired Headphones,3,11.99,06/22/19 00:24,"747 Walnut St, Los Angeles, CA 90001" -212858,Lightning Charging Cable,1,14.95,06/23/19 14:16,"69 9th St, San Francisco, CA 94016" -212859,USB-C Charging Cable,1,11.95,06/17/19 15:17,"347 Center St, San Francisco, CA 94016" -212860,Wired Headphones,1,11.99,06/02/19 12:45,"134 Ridge St, Seattle, WA 98101" -212861,Apple Airpods Headphones,1,150,06/13/19 01:00,"32 8th St, San Francisco, CA 94016" -212861,Wired Headphones,1,11.99,06/13/19 01:00,"32 8th St, San Francisco, CA 94016" -212862,27in FHD Monitor,1,149.99,06/14/19 22:39,"663 Walnut St, San Francisco, CA 94016" -212863,Google Phone,1,600,06/02/19 15:25,"884 Pine St, Boston, MA 02215" -212864,Apple Airpods Headphones,1,150,06/26/19 18:54,"977 Johnson St, Boston, MA 02215" -212865,Macbook Pro Laptop,1,1700,06/29/19 21:55,"92 Forest St, New York City, NY 10001" -212866,Apple Airpods Headphones,1,150,06/02/19 22:13,"382 Wilson St, San Francisco, CA 94016" -212867,Lightning Charging Cable,1,14.95,06/04/19 12:59,"942 14th St, Austin, TX 73301" -212868,34in Ultrawide Monitor,1,379.99,06/11/19 20:56,"632 12th St, Boston, MA 02215" -212869,AAA Batteries (4-pack),1,2.99,06/25/19 19:21,"599 Forest St, Boston, MA 02215" -212870,AA Batteries (4-pack),1,3.84,06/17/19 20:58,"691 4th St, Austin, TX 73301" -212871,Bose SoundSport Headphones,3,99.99,06/03/19 20:37,"289 North St, San Francisco, CA 94016" -212872,USB-C Charging Cable,1,11.95,06/25/19 04:06,"470 South St, San Francisco, CA 94016" -212873,Wired Headphones,1,11.99,06/23/19 17:43,"59 Meadow St, Atlanta, GA 30301" -212874,27in FHD Monitor,1,149.99,06/20/19 08:53,"911 Park St, Dallas, TX 75001" -212875,iPhone,1,700,06/28/19 23:52,"419 Dogwood St, San Francisco, CA 94016" -212875,Lightning Charging Cable,1,14.95,06/28/19 23:52,"419 Dogwood St, San Francisco, CA 94016" -212876,AA Batteries (4-pack),1,3.84,06/21/19 14:04,"660 Center St, San Francisco, CA 94016" -212877,AAA Batteries (4-pack),1,2.99,06/29/19 15:27,"375 Hill St, Dallas, TX 75001" -212878,Wired Headphones,1,11.99,06/10/19 02:26,"51 Walnut St, San Francisco, CA 94016" -212879,Flatscreen TV,1,300,06/15/19 10:16,"211 Sunset St, San Francisco, CA 94016" -212880,USB-C Charging Cable,1,11.95,06/24/19 14:28,"514 Center St, Dallas, TX 75001" -212881,USB-C Charging Cable,1,11.95,06/15/19 20:05,"402 Wilson St, New York City, NY 10001" -212882,USB-C Charging Cable,1,11.95,06/19/19 14:45,"932 Chestnut St, San Francisco, CA 94016" -212883,27in 4K Gaming Monitor,1,389.99,06/03/19 20:24,"241 14th St, Portland, OR 97035" -212884,27in FHD Monitor,1,149.99,06/25/19 17:58,"963 River St, Los Angeles, CA 90001" -212885,27in FHD Monitor,1,149.99,06/27/19 20:38,"319 Meadow St, New York City, NY 10001" -212886,Vareebadd Phone,1,400,06/24/19 13:29,"378 8th St, Boston, MA 02215" -212887,Wired Headphones,1,11.99,06/28/19 19:39,"912 6th St, Los Angeles, CA 90001" -212888,AA Batteries (4-pack),1,3.84,06/26/19 17:07,"905 Dogwood St, New York City, NY 10001" -212889,ThinkPad Laptop,1,999.99,06/16/19 14:57,"561 2nd St, Los Angeles, CA 90001" -212890,27in FHD Monitor,1,149.99,06/22/19 09:41,"263 Cedar St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -212891,AA Batteries (4-pack),2,3.84,06/02/19 13:29,"968 Hickory St, Seattle, WA 98101" -212892,AA Batteries (4-pack),1,3.84,06/27/19 07:08,"507 Maple St, San Francisco, CA 94016" -212893,Lightning Charging Cable,1,14.95,06/11/19 15:42,"269 Hickory St, San Francisco, CA 94016" -212894,Bose SoundSport Headphones,1,99.99,06/27/19 21:37,"299 Chestnut St, Los Angeles, CA 90001" -212895,USB-C Charging Cable,2,11.95,06/06/19 23:01,"227 Lakeview St, Seattle, WA 98101" -212896,Lightning Charging Cable,1,14.95,06/06/19 23:06,"132 Hill St, San Francisco, CA 94016" -212897,Google Phone,1,600,06/25/19 13:15,"194 8th St, Boston, MA 02215" -212898,Bose SoundSport Headphones,1,99.99,06/30/19 22:12,"760 4th St, Los Angeles, CA 90001" -212899,Wired Headphones,1,11.99,06/08/19 13:06,"555 Park St, New York City, NY 10001" -212900,Wired Headphones,1,11.99,06/07/19 23:15,"488 9th St, Los Angeles, CA 90001" -212901,Apple Airpods Headphones,1,150,06/06/19 10:48,"873 8th St, Atlanta, GA 30301" -212902,AAA Batteries (4-pack),2,2.99,06/01/19 17:32,"355 2nd St, Seattle, WA 98101" -212903,USB-C Charging Cable,1,11.95,06/16/19 13:01,"204 Center St, San Francisco, CA 94016" -212904,27in 4K Gaming Monitor,1,389.99,06/14/19 22:30,"86 Hickory St, San Francisco, CA 94016" -212905,Apple Airpods Headphones,1,150,06/26/19 22:03,"552 Main St, Los Angeles, CA 90001" -212906,AAA Batteries (4-pack),1,2.99,06/07/19 11:02,"444 Forest St, Los Angeles, CA 90001" -212907,Google Phone,1,600,06/01/19 19:29,"294 North St, Boston, MA 02215" -212908,Bose SoundSport Headphones,1,99.99,06/27/19 11:59,"657 13th St, New York City, NY 10001" -212909,27in FHD Monitor,1,149.99,06/08/19 17:31,"885 Chestnut St, Los Angeles, CA 90001" -212910,Apple Airpods Headphones,1,150,06/22/19 22:50,"258 Washington St, New York City, NY 10001" -212911,AAA Batteries (4-pack),1,2.99,06/20/19 15:10,"808 Hill St, Portland, OR 97035" -212912,20in Monitor,1,109.99,06/29/19 13:33,"583 Hickory St, Seattle, WA 98101" -212913,AAA Batteries (4-pack),1,2.99,06/26/19 22:41,"688 9th St, Austin, TX 73301" -212914,AAA Batteries (4-pack),2,2.99,06/19/19 18:53,"734 South St, Los Angeles, CA 90001" -212915,iPhone,1,700,06/23/19 12:16,"4 West St, Atlanta, GA 30301" -212916,Lightning Charging Cable,1,14.95,06/07/19 13:17,"491 10th St, Boston, MA 02215" -212917,Vareebadd Phone,1,400,06/30/19 13:34,"492 Spruce St, Portland, OR 97035" -212918,Wired Headphones,1,11.99,06/08/19 23:48,"649 Jackson St, New York City, NY 10001" -212919,27in FHD Monitor,1,149.99,06/16/19 08:25,"467 7th St, Seattle, WA 98101" -212920,Lightning Charging Cable,1,14.95,06/13/19 22:38,"71 Walnut St, Boston, MA 02215" -212921,Lightning Charging Cable,1,14.95,06/25/19 20:35,"978 North St, Los Angeles, CA 90001" -212922,27in FHD Monitor,1,149.99,06/22/19 16:04,"333 River St, Los Angeles, CA 90001" -212923,iPhone,1,700,06/22/19 11:17,"252 Dogwood St, Portland, OR 97035" -212924,AA Batteries (4-pack),2,3.84,06/06/19 20:06,"931 Cedar St, San Francisco, CA 94016" -212925,27in 4K Gaming Monitor,1,389.99,06/27/19 15:09,"407 12th St, Seattle, WA 98101" -212926,Flatscreen TV,1,300,06/29/19 22:20,"257 14th St, New York City, NY 10001" -212927,iPhone,1,700,06/14/19 08:12,"923 Center St, Boston, MA 02215" -212928,USB-C Charging Cable,1,11.95,06/26/19 12:18,"581 7th St, Los Angeles, CA 90001" -212929,34in Ultrawide Monitor,1,379.99,06/12/19 11:47,"963 Ridge St, San Francisco, CA 94016" -212930,Wired Headphones,1,11.99,06/19/19 12:32,"757 Chestnut St, New York City, NY 10001" -212931,Flatscreen TV,1,300,06/06/19 13:39,"198 Meadow St, Dallas, TX 75001" -212932,Google Phone,1,600,06/09/19 17:49,"614 Jackson St, Los Angeles, CA 90001" -212933,Lightning Charging Cable,3,14.95,06/27/19 19:46,"355 Lakeview St, Portland, ME 04101" -212934,Lightning Charging Cable,1,14.95,06/24/19 12:14,"686 2nd St, New York City, NY 10001" -212935,AAA Batteries (4-pack),3,2.99,06/30/19 21:47,"173 Spruce St, Boston, MA 02215" -212936,Wired Headphones,1,11.99,06/09/19 15:56,"322 Johnson St, San Francisco, CA 94016" -212937,LG Washing Machine,1,600.0,06/18/19 09:18,"712 Cedar St, Portland, OR 97035" -212937,AAA Batteries (4-pack),4,2.99,06/18/19 09:18,"712 Cedar St, Portland, OR 97035" -212938,34in Ultrawide Monitor,1,379.99,06/24/19 07:55,"580 Cedar St, San Francisco, CA 94016" -212939,Lightning Charging Cable,2,14.95,06/29/19 12:02,"197 Park St, Dallas, TX 75001" -212940,ThinkPad Laptop,1,999.99,06/17/19 18:19,"577 Madison St, New York City, NY 10001" -212941,iPhone,1,700,06/02/19 17:25,"943 Ridge St, New York City, NY 10001" -212942,Wired Headphones,1,11.99,06/20/19 20:53,"218 9th St, Los Angeles, CA 90001" -212943,USB-C Charging Cable,1,11.95,06/13/19 21:34,"216 Lincoln St, Dallas, TX 75001" -212944,Apple Airpods Headphones,1,150,06/17/19 22:59,"139 Chestnut St, Dallas, TX 75001" -212945,iPhone,1,700,06/18/19 14:41,"263 Ridge St, Austin, TX 73301" -212946,AAA Batteries (4-pack),3,2.99,06/07/19 13:50,"516 River St, Atlanta, GA 30301" -212947,Apple Airpods Headphones,1,150,06/01/19 11:03,"975 Sunset St, New York City, NY 10001" -212948,AA Batteries (4-pack),1,3.84,06/17/19 21:00,"791 River St, San Francisco, CA 94016" -212949,AAA Batteries (4-pack),1,2.99,06/18/19 20:18,"210 12th St, San Francisco, CA 94016" -212950,Lightning Charging Cable,1,14.95,06/27/19 15:34,"670 Sunset St, Seattle, WA 98101" -212951,AA Batteries (4-pack),2,3.84,06/26/19 19:17,"182 11th St, Los Angeles, CA 90001" -212952,ThinkPad Laptop,1,999.99,06/16/19 12:20,"859 Walnut St, San Francisco, CA 94016" -212953,27in 4K Gaming Monitor,1,389.99,06/07/19 16:48,"741 Chestnut St, Dallas, TX 75001" -212954,Flatscreen TV,1,300,06/25/19 17:08,"211 Lakeview St, New York City, NY 10001" -212955,Apple Airpods Headphones,1,150,06/04/19 23:22,"988 Cedar St, New York City, NY 10001" -212956,Flatscreen TV,1,300,06/20/19 20:50,"224 10th St, Austin, TX 73301" -,,,,, -212957,AA Batteries (4-pack),1,3.84,06/04/19 10:48,"628 Church St, New York City, NY 10001" -212958,AAA Batteries (4-pack),2,2.99,06/11/19 00:22,"181 Cedar St, New York City, NY 10001" -212959,AAA Batteries (4-pack),1,2.99,06/26/19 11:42,"583 Wilson St, Boston, MA 02215" -212960,Apple Airpods Headphones,1,150,06/17/19 22:01,"13 Lincoln St, New York City, NY 10001" -212960,Wired Headphones,1,11.99,06/17/19 22:01,"13 Lincoln St, New York City, NY 10001" -212961,Wired Headphones,1,11.99,06/22/19 11:08,"622 River St, Dallas, TX 75001" -212961,34in Ultrawide Monitor,1,379.99,06/22/19 11:08,"622 River St, Dallas, TX 75001" -212962,Wired Headphones,1,11.99,06/24/19 19:30,"282 Sunset St, Atlanta, GA 30301" -212963,USB-C Charging Cable,2,11.95,06/20/19 09:35,"262 Forest St, Los Angeles, CA 90001" -212964,Apple Airpods Headphones,1,150,06/13/19 20:37,"971 14th St, Boston, MA 02215" -212965,Apple Airpods Headphones,1,150,06/17/19 12:46,"334 Park St, New York City, NY 10001" -212966,Lightning Charging Cable,1,14.95,06/30/19 20:03,"651 Cedar St, Dallas, TX 75001" -212967,USB-C Charging Cable,1,11.95,06/18/19 17:10,"593 Jackson St, Portland, OR 97035" -212968,AAA Batteries (4-pack),4,2.99,06/13/19 22:21,"492 Highland St, San Francisco, CA 94016" -212969,Lightning Charging Cable,1,14.95,06/15/19 09:30,"480 14th St, Boston, MA 02215" -212970,AA Batteries (4-pack),1,3.84,06/22/19 07:11,"318 Center St, Portland, OR 97035" -212971,34in Ultrawide Monitor,1,379.99,06/12/19 10:14,"721 Hickory St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -212972,AA Batteries (4-pack),1,3.84,06/11/19 19:46,"170 Highland St, Dallas, TX 75001" -212973,34in Ultrawide Monitor,1,379.99,06/29/19 04:59,"834 12th St, Dallas, TX 75001" -212974,Flatscreen TV,1,300,06/03/19 17:39,"49 Center St, San Francisco, CA 94016" -212975,Wired Headphones,1,11.99,06/08/19 11:08,"280 12th St, Los Angeles, CA 90001" -212976,Google Phone,1,600,06/28/19 13:04,"231 Hickory St, Portland, ME 04101" -212977,Lightning Charging Cable,1,14.95,06/15/19 18:11,"198 2nd St, San Francisco, CA 94016" -212978,Apple Airpods Headphones,1,150,06/04/19 06:20,"271 8th St, San Francisco, CA 94016" -212979,Flatscreen TV,1,300,06/01/19 12:05,"35 Cherry St, San Francisco, CA 94016" -212980,iPhone,1,700,06/30/19 12:25,"772 Lake St, Los Angeles, CA 90001" -212980,Lightning Charging Cable,1,14.95,06/30/19 12:25,"772 Lake St, Los Angeles, CA 90001" -212981,Macbook Pro Laptop,1,1700,06/08/19 19:29,"370 West St, Atlanta, GA 30301" -212982,AA Batteries (4-pack),1,3.84,06/27/19 09:43,"248 Center St, Atlanta, GA 30301" -212983,AAA Batteries (4-pack),1,2.99,06/24/19 11:37,"959 Jefferson St, Boston, MA 02215" -212984,20in Monitor,1,109.99,06/21/19 16:17,"801 Meadow St, San Francisco, CA 94016" -212985,Lightning Charging Cable,1,14.95,06/27/19 20:38,"138 Hill St, New York City, NY 10001" -212986,Apple Airpods Headphones,1,150,06/29/19 10:18,"507 Madison St, Dallas, TX 75001" -212987,Wired Headphones,1,11.99,06/10/19 19:17,"754 13th St, San Francisco, CA 94016" -212988,Macbook Pro Laptop,1,1700,06/09/19 00:20,"948 8th St, San Francisco, CA 94016" -212989,Lightning Charging Cable,1,14.95,06/15/19 19:51,"670 8th St, San Francisco, CA 94016" -212990,USB-C Charging Cable,1,11.95,06/08/19 11:07,"969 Lakeview St, Boston, MA 02215" -212991,USB-C Charging Cable,2,11.95,06/30/19 11:45,"221 Ridge St, San Francisco, CA 94016" -212992,AA Batteries (4-pack),1,3.84,06/29/19 16:22,"939 Hickory St, Los Angeles, CA 90001" -212993,USB-C Charging Cable,1,11.95,06/19/19 15:38,"532 2nd St, Los Angeles, CA 90001" -212994,20in Monitor,1,109.99,06/25/19 23:27,"589 Walnut St, San Francisco, CA 94016" -212995,Wired Headphones,1,11.99,06/03/19 13:40,"764 Forest St, New York City, NY 10001" -212996,Wired Headphones,1,11.99,06/06/19 15:59,"131 2nd St, Boston, MA 02215" -212997,USB-C Charging Cable,1,11.95,06/20/19 19:11,"857 13th St, Seattle, WA 98101" -212998,AA Batteries (4-pack),2,3.84,06/29/19 09:00,"575 Jackson St, Los Angeles, CA 90001" -212999,Flatscreen TV,1,300,06/24/19 09:51,"197 West St, Portland, OR 97035" -213000,Wired Headphones,1,11.99,06/26/19 23:22,"925 North St, Boston, MA 02215" -213001,AA Batteries (4-pack),1,3.84,06/04/19 10:38,"146 Maple St, Austin, TX 73301" -213002,Lightning Charging Cable,1,14.95,06/07/19 22:09,"688 Spruce St, Boston, MA 02215" -213003,27in FHD Monitor,1,149.99,06/06/19 22:02,"131 Washington St, San Francisco, CA 94016" -213004,27in FHD Monitor,1,149.99,06/14/19 20:36,"976 Meadow St, Seattle, WA 98101" -213005,27in 4K Gaming Monitor,1,389.99,06/26/19 18:20,"943 Elm St, Atlanta, GA 30301" -213006,Wired Headphones,1,11.99,06/09/19 06:39,"478 Dogwood St, San Francisco, CA 94016" -213007,AAA Batteries (4-pack),1,2.99,06/26/19 16:26,"367 Meadow St, Dallas, TX 75001" -213008,AAA Batteries (4-pack),1,2.99,06/29/19 08:59,"314 Pine St, New York City, NY 10001" -213009,AA Batteries (4-pack),2,3.84,06/23/19 13:51,"786 Maple St, San Francisco, CA 94016" -213010,AAA Batteries (4-pack),2,2.99,06/06/19 11:42,"99 Center St, San Francisco, CA 94016" -213011,AA Batteries (4-pack),1,3.84,06/15/19 07:53,"166 Hill St, New York City, NY 10001" -213012,27in FHD Monitor,1,149.99,06/20/19 09:38,"922 Ridge St, Los Angeles, CA 90001" -213013,AAA Batteries (4-pack),1,2.99,06/29/19 11:19,"48 Adams St, Los Angeles, CA 90001" -213014,AA Batteries (4-pack),2,3.84,06/04/19 12:58,"426 Cedar St, Dallas, TX 75001" -213015,USB-C Charging Cable,1,11.95,06/14/19 19:50,"152 11th St, Seattle, WA 98101" -213016,Lightning Charging Cable,1,14.95,06/03/19 13:13,"601 Spruce St, Los Angeles, CA 90001" -213017,USB-C Charging Cable,1,11.95,06/17/19 12:12,"879 Highland St, Los Angeles, CA 90001" -213018,27in FHD Monitor,1,149.99,06/06/19 10:24,"578 12th St, San Francisco, CA 94016" -213019,AAA Batteries (4-pack),1,2.99,06/04/19 00:04,"280 10th St, San Francisco, CA 94016" -213020,Lightning Charging Cable,1,14.95,06/01/19 19:03,"411 River St, Austin, TX 73301" -213021,Flatscreen TV,1,300,06/17/19 14:06,"31 Jefferson St, New York City, NY 10001" -213022,Flatscreen TV,1,300,06/07/19 15:50,"739 Maple St, Atlanta, GA 30301" -213023,Bose SoundSport Headphones,1,99.99,06/16/19 08:46,"322 Cherry St, Atlanta, GA 30301" -213024,USB-C Charging Cable,1,11.95,06/18/19 13:50,"328 11th St, San Francisco, CA 94016" -213025,27in FHD Monitor,1,149.99,06/12/19 15:33,"369 9th St, Dallas, TX 75001" -213026,AA Batteries (4-pack),1,3.84,06/08/19 13:02,"400 Adams St, Boston, MA 02215" -213027,iPhone,1,700,06/30/19 23:12,"615 Adams St, Los Angeles, CA 90001" -213028,Apple Airpods Headphones,1,150,06/18/19 15:18,"121 Spruce St, Portland, OR 97035" -213029,Wired Headphones,1,11.99,06/14/19 18:30,"642 Lincoln St, Boston, MA 02215" -213030,34in Ultrawide Monitor,1,379.99,06/08/19 09:36,"317 Chestnut St, New York City, NY 10001" -213031,Google Phone,1,600,06/17/19 07:27,"92 5th St, Los Angeles, CA 90001" -213032,USB-C Charging Cable,1,11.95,06/12/19 19:32,"307 Willow St, New York City, NY 10001" -213033,iPhone,1,700,06/16/19 11:32,"993 Lincoln St, San Francisco, CA 94016" -213033,Lightning Charging Cable,1,14.95,06/16/19 11:32,"993 Lincoln St, San Francisco, CA 94016" -213034,20in Monitor,1,109.99,06/27/19 00:31,"956 Dogwood St, New York City, NY 10001" -213035,USB-C Charging Cable,1,11.95,06/23/19 20:03,"398 2nd St, Dallas, TX 75001" -213035,USB-C Charging Cable,1,11.95,06/23/19 20:03,"398 2nd St, Dallas, TX 75001" -213036,Lightning Charging Cable,1,14.95,06/30/19 22:10,"918 Washington St, Atlanta, GA 30301" -213037,Wired Headphones,2,11.99,06/10/19 15:16,"655 Pine St, Dallas, TX 75001" -213038,Wired Headphones,1,11.99,06/09/19 19:19,"718 Willow St, Los Angeles, CA 90001" -213039,USB-C Charging Cable,1,11.95,06/29/19 18:13,"309 Willow St, Los Angeles, CA 90001" -213040,USB-C Charging Cable,1,11.95,06/01/19 09:55,"196 7th St, Portland, OR 97035" -213041,Wired Headphones,1,11.99,06/03/19 10:26,"720 South St, Portland, OR 97035" -213042,Bose SoundSport Headphones,1,99.99,06/24/19 18:35,"960 Spruce St, San Francisco, CA 94016" -213043,AA Batteries (4-pack),3,3.84,06/10/19 12:16,"495 Center St, New York City, NY 10001" -213044,USB-C Charging Cable,1,11.95,06/22/19 23:20,"979 Pine St, San Francisco, CA 94016" -213045,Bose SoundSport Headphones,1,99.99,06/30/19 20:40,"845 Madison St, Portland, ME 04101" -213046,Wired Headphones,1,11.99,06/30/19 16:23,"697 Cherry St, Dallas, TX 75001" -213047,AAA Batteries (4-pack),1,2.99,06/06/19 16:58,"303 Wilson St, Atlanta, GA 30301" -213048,Macbook Pro Laptop,1,1700,06/29/19 10:01,"255 West St, Austin, TX 73301" -213049,AAA Batteries (4-pack),2,2.99,06/21/19 12:55,"844 Willow St, Portland, ME 04101" -213050,27in 4K Gaming Monitor,1,389.99,06/19/19 17:58,"78 Center St, Los Angeles, CA 90001" -213051,Wired Headphones,1,11.99,06/16/19 20:06,"92 13th St, Los Angeles, CA 90001" -213052,Bose SoundSport Headphones,1,99.99,06/09/19 18:45,"927 10th St, Boston, MA 02215" -213053,27in FHD Monitor,1,149.99,06/18/19 12:29,"944 Walnut St, Los Angeles, CA 90001" -213054,Google Phone,1,600,06/21/19 12:07,"476 Forest St, Boston, MA 02215" -213055,AAA Batteries (4-pack),3,2.99,06/01/19 13:34,"482 Spruce St, San Francisco, CA 94016" -213056,USB-C Charging Cable,1,11.95,06/11/19 13:01,"743 5th St, Los Angeles, CA 90001" -213057,AAA Batteries (4-pack),2,2.99,06/20/19 12:05,"526 Meadow St, Los Angeles, CA 90001" -213058,Lightning Charging Cable,1,14.95,06/13/19 21:11,"233 River St, Portland, OR 97035" -213059,Lightning Charging Cable,1,14.95,06/04/19 11:32,"46 Adams St, Atlanta, GA 30301" -213060,AA Batteries (4-pack),1,3.84,06/21/19 12:35,"453 7th St, Boston, MA 02215" -213061,ThinkPad Laptop,1,999.99,06/04/19 13:17,"564 10th St, New York City, NY 10001" -213062,27in FHD Monitor,1,149.99,06/30/19 08:41,"518 2nd St, Boston, MA 02215" -213063,AA Batteries (4-pack),1,3.84,06/10/19 10:24,"68 Wilson St, New York City, NY 10001" -213064,AA Batteries (4-pack),1,3.84,06/25/19 19:50,"514 Johnson St, San Francisco, CA 94016" -213065,Lightning Charging Cable,1,14.95,06/23/19 13:56,"670 13th St, Atlanta, GA 30301" -213066,Apple Airpods Headphones,1,150,06/23/19 13:12,"452 13th St, San Francisco, CA 94016" -213067,Lightning Charging Cable,1,14.95,06/19/19 22:34,"958 8th St, Los Angeles, CA 90001" -213068,AAA Batteries (4-pack),2,2.99,06/08/19 16:56,"796 8th St, Seattle, WA 98101" -213069,Apple Airpods Headphones,1,150,06/19/19 00:17,"59 8th St, San Francisco, CA 94016" -213070,Bose SoundSport Headphones,1,99.99,06/26/19 09:12,"636 Madison St, New York City, NY 10001" -213071,AA Batteries (4-pack),1,3.84,06/14/19 19:10,"622 Walnut St, Dallas, TX 75001" -213072,AAA Batteries (4-pack),2,2.99,06/17/19 14:34,"191 Meadow St, Atlanta, GA 30301" -213073,Flatscreen TV,1,300,06/19/19 10:55,"68 Sunset St, Portland, OR 97035" -213074,Bose SoundSport Headphones,1,99.99,06/13/19 08:28,"351 5th St, Boston, MA 02215" -213075,Apple Airpods Headphones,1,150,06/17/19 19:54,"658 Main St, Austin, TX 73301" -213076,AA Batteries (4-pack),1,3.84,06/21/19 00:56,"211 Cherry St, Seattle, WA 98101" -213077,Wired Headphones,1,11.99,06/03/19 20:37,"717 Church St, Austin, TX 73301" -213078,Google Phone,1,600,06/28/19 08:57,"863 West St, New York City, NY 10001" -213078,USB-C Charging Cable,1,11.95,06/28/19 08:57,"863 West St, New York City, NY 10001" -213079,USB-C Charging Cable,2,11.95,06/24/19 10:26,"667 Sunset St, San Francisco, CA 94016" -213080,Wired Headphones,1,11.99,06/25/19 20:37,"361 Cherry St, Los Angeles, CA 90001" -213081,LG Dryer,1,600.0,06/29/19 17:53,"513 Main St, Atlanta, GA 30301" -213082,Wired Headphones,1,11.99,06/11/19 16:11,"449 Johnson St, Portland, OR 97035" -213083,Apple Airpods Headphones,1,150,06/20/19 17:43,"944 Lakeview St, San Francisco, CA 94016" -213084,Lightning Charging Cable,1,14.95,06/27/19 11:57,"754 9th St, New York City, NY 10001" -213085,Wired Headphones,1,11.99,06/21/19 11:31,"550 Church St, New York City, NY 10001" -213086,20in Monitor,1,109.99,06/03/19 19:15,"506 Lakeview St, Seattle, WA 98101" -213087,ThinkPad Laptop,1,999.99,06/29/19 16:50,"612 Washington St, San Francisco, CA 94016" -213088,Apple Airpods Headphones,1,150,06/11/19 08:57,"426 Madison St, Atlanta, GA 30301" -213089,Apple Airpods Headphones,1,150,06/04/19 10:18,"661 Willow St, Portland, OR 97035" -213090,Bose SoundSport Headphones,1,99.99,06/10/19 11:27,"468 Lincoln St, San Francisco, CA 94016" -213091,USB-C Charging Cable,1,11.95,06/11/19 10:20,"895 Spruce St, San Francisco, CA 94016" -213092,27in 4K Gaming Monitor,1,389.99,06/05/19 16:42,"919 Washington St, New York City, NY 10001" -213093,USB-C Charging Cable,1,11.95,06/10/19 17:32,"484 Highland St, New York City, NY 10001" -213094,LG Washing Machine,1,600.0,06/02/19 13:06,"269 Willow St, San Francisco, CA 94016" -213095,AA Batteries (4-pack),1,3.84,06/17/19 16:58,"883 11th St, San Francisco, CA 94016" -213096,Flatscreen TV,1,300,06/12/19 12:51,"453 Lincoln St, Seattle, WA 98101" -213097,Google Phone,1,600,06/04/19 21:10,"611 Hickory St, San Francisco, CA 94016" -213098,AA Batteries (4-pack),2,3.84,06/16/19 11:10,"941 Wilson St, Austin, TX 73301" -213099,27in FHD Monitor,1,149.99,06/30/19 20:22,"347 6th St, Los Angeles, CA 90001" -213100,Wired Headphones,1,11.99,06/13/19 09:27,"422 Wilson St, Portland, OR 97035" -213101,AAA Batteries (4-pack),1,2.99,06/04/19 12:19,"231 Lake St, Dallas, TX 75001" -213102,USB-C Charging Cable,1,11.95,06/07/19 22:48,"506 Center St, Atlanta, GA 30301" -213103,Lightning Charging Cable,1,14.95,06/11/19 18:51,"76 14th St, San Francisco, CA 94016" -213104,Lightning Charging Cable,1,14.95,06/17/19 10:14,"507 8th St, Austin, TX 73301" -213105,Lightning Charging Cable,1,14.95,06/08/19 13:18,"276 Wilson St, Dallas, TX 75001" -213106,USB-C Charging Cable,1,11.95,06/11/19 16:07,"62 Church St, Dallas, TX 75001" -213107,AAA Batteries (4-pack),2,2.99,06/27/19 11:03,"341 River St, Portland, OR 97035" -213108,AAA Batteries (4-pack),1,2.99,06/13/19 08:39,"738 Cedar St, Dallas, TX 75001" -213109,27in 4K Gaming Monitor,1,389.99,06/03/19 16:12,"821 Walnut St, San Francisco, CA 94016" -213110,iPhone,1,700,06/07/19 17:26,"864 9th St, New York City, NY 10001" -213111,USB-C Charging Cable,1,11.95,06/15/19 22:38,"740 6th St, San Francisco, CA 94016" -213112,Lightning Charging Cable,1,14.95,06/12/19 18:16,"93 11th St, Los Angeles, CA 90001" -213113,Bose SoundSport Headphones,1,99.99,06/08/19 17:45,"573 Adams St, New York City, NY 10001" -213114,Bose SoundSport Headphones,1,99.99,06/27/19 17:17,"158 4th St, Portland, ME 04101" -213115,Wired Headphones,1,11.99,06/04/19 12:37,"63 Jefferson St, Portland, OR 97035" -213116,20in Monitor,1,109.99,06/17/19 08:46,"344 2nd St, San Francisco, CA 94016" -213117,AA Batteries (4-pack),2,3.84,06/14/19 13:29,"518 9th St, San Francisco, CA 94016" -213118,Apple Airpods Headphones,1,150,06/13/19 09:50,"757 South St, San Francisco, CA 94016" -213119,Apple Airpods Headphones,1,150,06/14/19 13:15,"764 11th St, San Francisco, CA 94016" -213120,Bose SoundSport Headphones,1,99.99,06/24/19 07:08,"933 Madison St, Atlanta, GA 30301" -213121,Wired Headphones,1,11.99,06/11/19 12:38,"258 2nd St, Portland, OR 97035" -213122,USB-C Charging Cable,1,11.95,06/06/19 11:19,"243 11th St, Portland, OR 97035" -213123,27in 4K Gaming Monitor,1,389.99,06/08/19 19:47,"760 11th St, New York City, NY 10001" -213124,Lightning Charging Cable,1,14.95,06/19/19 16:40,"183 Elm St, Los Angeles, CA 90001" -213125,Macbook Pro Laptop,1,1700,06/20/19 11:01,"148 Wilson St, Austin, TX 73301" -213126,Vareebadd Phone,1,400,06/09/19 12:36,"877 Spruce St, San Francisco, CA 94016" -213127,AA Batteries (4-pack),2,3.84,06/29/19 18:36,"985 Adams St, New York City, NY 10001" -213128,USB-C Charging Cable,1,11.95,06/20/19 10:02,"136 Johnson St, San Francisco, CA 94016" -213129,Apple Airpods Headphones,1,150,06/20/19 14:58,"69 Lincoln St, San Francisco, CA 94016" -213130,27in 4K Gaming Monitor,1,389.99,06/21/19 15:42,"46 Washington St, Austin, TX 73301" -213131,Flatscreen TV,1,300,06/21/19 12:09,"537 Church St, New York City, NY 10001" -213132,AA Batteries (4-pack),2,3.84,06/19/19 00:06,"657 12th St, Los Angeles, CA 90001" -213133,34in Ultrawide Monitor,1,379.99,06/12/19 11:13,"658 Highland St, New York City, NY 10001" -213134,Lightning Charging Cable,1,14.95,06/05/19 16:24,"596 Wilson St, Boston, MA 02215" -213135,USB-C Charging Cable,1,11.95,06/09/19 08:51,"306 7th St, Los Angeles, CA 90001" -213136,Wired Headphones,1,11.99,06/03/19 23:26,"922 Highland St, Dallas, TX 75001" -213137,Flatscreen TV,1,300,06/05/19 22:34,"506 Cherry St, San Francisco, CA 94016" -213138,Google Phone,1,600,06/29/19 15:17,"665 South St, New York City, NY 10001" -213138,USB-C Charging Cable,1,11.95,06/29/19 15:17,"665 South St, New York City, NY 10001" -213138,Wired Headphones,1,11.99,06/29/19 15:17,"665 South St, New York City, NY 10001" -213139,iPhone,1,700,06/24/19 17:35,"315 4th St, Seattle, WA 98101" -213140,ThinkPad Laptop,1,999.99,06/17/19 18:11,"503 Park St, San Francisco, CA 94016" -213141,27in FHD Monitor,1,149.99,06/10/19 09:22,"766 Center St, Austin, TX 73301" -213142,USB-C Charging Cable,1,11.95,06/24/19 14:28,"387 1st St, Los Angeles, CA 90001" -213143,AA Batteries (4-pack),2,3.84,06/22/19 12:36,"429 14th St, New York City, NY 10001" -213144,AAA Batteries (4-pack),2,2.99,06/23/19 23:57,"444 Jefferson St, Boston, MA 02215" -213145,Lightning Charging Cable,1,14.95,06/20/19 14:22,"165 13th St, Dallas, TX 75001" -213146,AAA Batteries (4-pack),1,2.99,06/18/19 22:34,"855 Hill St, Los Angeles, CA 90001" -213147,AA Batteries (4-pack),1,3.84,06/02/19 09:55,"782 Hill St, Portland, OR 97035" -213148,27in FHD Monitor,1,149.99,06/04/19 14:54,"744 9th St, San Francisco, CA 94016" -213149,AA Batteries (4-pack),1,3.84,06/15/19 14:56,"102 Church St, San Francisco, CA 94016" -213150,iPhone,1,700,06/16/19 10:44,"148 Chestnut St, Seattle, WA 98101" -213151,AA Batteries (4-pack),2,3.84,06/09/19 19:51,"196 13th St, New York City, NY 10001" -213152,Bose SoundSport Headphones,1,99.99,06/17/19 14:10,"835 Park St, Los Angeles, CA 90001" -213153,AAA Batteries (4-pack),1,2.99,06/08/19 17:01,"720 7th St, New York City, NY 10001" -213154,USB-C Charging Cable,1,11.95,06/12/19 19:34,"446 1st St, Atlanta, GA 30301" -213155,Lightning Charging Cable,1,14.95,06/22/19 07:44,"831 Madison St, Austin, TX 73301" -213156,iPhone,1,700,06/15/19 16:01,"547 12th St, San Francisco, CA 94016" -213157,Lightning Charging Cable,2,14.95,06/30/19 17:53,"228 8th St, Los Angeles, CA 90001" -213158,AA Batteries (4-pack),1,3.84,06/06/19 17:01,"427 7th St, Seattle, WA 98101" -213159,iPhone,1,700,06/30/19 18:37,"349 Madison St, Los Angeles, CA 90001" -213159,Apple Airpods Headphones,1,150,06/30/19 18:37,"349 Madison St, Los Angeles, CA 90001" -213160,Apple Airpods Headphones,1,150,06/27/19 11:41,"973 Lake St, Dallas, TX 75001" -213161,AA Batteries (4-pack),2,3.84,06/04/19 14:37,"913 4th St, Dallas, TX 75001" -213162,Apple Airpods Headphones,1,150,06/12/19 13:55,"12 Sunset St, Portland, OR 97035" -213163,USB-C Charging Cable,1,11.95,06/01/19 12:51,"798 5th St, Seattle, WA 98101" -213164,Macbook Pro Laptop,1,1700,06/15/19 18:11,"928 Forest St, Los Angeles, CA 90001" -213165,AA Batteries (4-pack),1,3.84,06/16/19 11:22,"912 Walnut St, New York City, NY 10001" -213166,Google Phone,1,600,06/05/19 16:42,"64 Church St, Seattle, WA 98101" -213167,Lightning Charging Cable,1,14.95,06/05/19 21:19,"917 Maple St, San Francisco, CA 94016" -213168,AA Batteries (4-pack),2,3.84,06/02/19 21:22,"644 Hill St, Seattle, WA 98101" -213169,Apple Airpods Headphones,1,150,06/24/19 16:54,"217 Madison St, Boston, MA 02215" -213170,Lightning Charging Cable,1,14.95,06/06/19 10:39,"826 Sunset St, Boston, MA 02215" -213171,iPhone,1,700,06/19/19 18:38,"75 Willow St, Portland, OR 97035" -213172,Lightning Charging Cable,2,14.95,06/08/19 14:10,"418 Hickory St, Austin, TX 73301" -213173,27in 4K Gaming Monitor,1,389.99,06/15/19 14:23,"935 River St, New York City, NY 10001" -213174,Wired Headphones,1,11.99,06/11/19 17:50,"40 1st St, Atlanta, GA 30301" -213175,iPhone,1,700,06/04/19 16:40,"816 Willow St, Boston, MA 02215" -213175,Lightning Charging Cable,1,14.95,06/04/19 16:40,"816 Willow St, Boston, MA 02215" -213176,Wired Headphones,1,11.99,06/12/19 21:12,"640 2nd St, Los Angeles, CA 90001" -213177,AA Batteries (4-pack),1,3.84,06/29/19 15:23,"343 Walnut St, San Francisco, CA 94016" -213178,27in FHD Monitor,1,149.99,06/19/19 08:59,"42 10th St, Boston, MA 02215" -213179,Apple Airpods Headphones,1,150,06/15/19 12:44,"796 Hill St, Los Angeles, CA 90001" -213180,Wired Headphones,1,11.99,06/21/19 18:22,"579 Wilson St, Los Angeles, CA 90001" -213181,Flatscreen TV,1,300,06/25/19 14:48,"791 Johnson St, Portland, OR 97035" -213182,USB-C Charging Cable,1,11.95,06/10/19 09:33,"626 Highland St, San Francisco, CA 94016" -213183,USB-C Charging Cable,1,11.95,06/27/19 12:49,"938 North St, Los Angeles, CA 90001" -213184,AA Batteries (4-pack),4,3.84,06/02/19 10:37,"703 Main St, San Francisco, CA 94016" -213185,27in 4K Gaming Monitor,1,389.99,06/26/19 15:21,"200 9th St, San Francisco, CA 94016" -213186,USB-C Charging Cable,1,11.95,06/10/19 17:21,"558 Ridge St, Los Angeles, CA 90001" -213187,27in 4K Gaming Monitor,1,389.99,06/06/19 21:14,"575 North St, San Francisco, CA 94016" -213188,AAA Batteries (4-pack),1,2.99,06/13/19 21:33,"339 1st St, San Francisco, CA 94016" -213189,27in FHD Monitor,1,149.99,06/08/19 00:03,"190 Center St, Austin, TX 73301" -213190,Vareebadd Phone,1,400,06/17/19 17:16,"506 Highland St, Austin, TX 73301" -213191,Bose SoundSport Headphones,1,99.99,06/03/19 09:26,"67 Spruce St, San Francisco, CA 94016" -213192,Google Phone,1,600,06/11/19 17:23,"260 Elm St, Portland, OR 97035" -213192,USB-C Charging Cable,1,11.95,06/11/19 17:23,"260 Elm St, Portland, OR 97035" -213193,Apple Airpods Headphones,1,150,06/10/19 15:53,"700 Forest St, Los Angeles, CA 90001" -213194,Apple Airpods Headphones,1,150,06/12/19 21:33,"342 Walnut St, Seattle, WA 98101" -213195,Lightning Charging Cable,1,14.95,06/30/19 13:22,"205 Highland St, New York City, NY 10001" -,,,,, -213196,LG Washing Machine,1,600.0,06/08/19 17:59,"592 Hickory St, Atlanta, GA 30301" -213197,AAA Batteries (4-pack),1,2.99,06/08/19 21:59,"634 Forest St, New York City, NY 10001" -213198,Wired Headphones,1,11.99,06/14/19 09:34,"137 Maple St, New York City, NY 10001" -213199,Wired Headphones,1,11.99,06/12/19 06:02,"374 Ridge St, Dallas, TX 75001" -213200,27in 4K Gaming Monitor,1,389.99,06/16/19 15:32,"479 Pine St, Atlanta, GA 30301" -213201,Wired Headphones,1,11.99,06/01/19 22:59,"749 7th St, Dallas, TX 75001" -213202,Google Phone,1,600,06/12/19 18:14,"774 Maple St, New York City, NY 10001" -213203,AAA Batteries (4-pack),2,2.99,06/15/19 16:49,"628 Church St, New York City, NY 10001" -213204,Bose SoundSport Headphones,2,99.99,06/13/19 21:32,"520 Johnson St, San Francisco, CA 94016" -213205,27in FHD Monitor,1,149.99,06/10/19 16:20,"49 River St, Portland, OR 97035" -213206,Lightning Charging Cable,2,14.95,06/21/19 12:50,"109 8th St, Portland, OR 97035" -213207,Lightning Charging Cable,1,14.95,06/12/19 22:51,"931 Walnut St, Los Angeles, CA 90001" -213208,Wired Headphones,3,11.99,06/12/19 14:35,"994 Dogwood St, San Francisco, CA 94016" -213209,Flatscreen TV,1,300,06/02/19 01:59,"472 Wilson St, San Francisco, CA 94016" -213210,AAA Batteries (4-pack),2,2.99,06/22/19 18:15,"156 Madison St, Seattle, WA 98101" -213211,Bose SoundSport Headphones,1,99.99,06/05/19 16:59,"415 Chestnut St, San Francisco, CA 94016" -213212,Google Phone,1,600,06/29/19 13:21,"977 Church St, Los Angeles, CA 90001" -213212,USB-C Charging Cable,2,11.95,06/29/19 13:21,"977 Church St, Los Angeles, CA 90001" -213213,Lightning Charging Cable,1,14.95,06/30/19 20:46,"233 Wilson St, Boston, MA 02215" -213214,Lightning Charging Cable,1,14.95,06/13/19 23:02,"306 14th St, Portland, OR 97035" -213215,27in FHD Monitor,1,149.99,06/26/19 20:58,"624 Madison St, Boston, MA 02215" -213216,iPhone,1,700,06/22/19 08:04,"40 Washington St, Los Angeles, CA 90001" -213216,Lightning Charging Cable,1,14.95,06/22/19 08:04,"40 Washington St, Los Angeles, CA 90001" -213217,AA Batteries (4-pack),3,3.84,06/03/19 15:34,"763 6th St, Seattle, WA 98101" -213218,Wired Headphones,1,11.99,06/29/19 18:13,"423 9th St, San Francisco, CA 94016" -213219,AAA Batteries (4-pack),2,2.99,06/18/19 18:48,"46 Cedar St, Seattle, WA 98101" -213220,Lightning Charging Cable,1,14.95,06/18/19 01:19,"264 9th St, Los Angeles, CA 90001" -213221,AAA Batteries (4-pack),1,2.99,06/06/19 14:20,"20 Meadow St, Atlanta, GA 30301" -213222,Wired Headphones,1,11.99,06/11/19 14:39,"369 2nd St, Los Angeles, CA 90001" -213223,Flatscreen TV,1,300,06/30/19 01:28,"369 River St, Austin, TX 73301" -213224,Lightning Charging Cable,1,14.95,06/24/19 23:59,"746 West St, San Francisco, CA 94016" -213225,AAA Batteries (4-pack),2,2.99,06/02/19 07:06,"758 1st St, San Francisco, CA 94016" -213226,AAA Batteries (4-pack),1,2.99,06/08/19 18:07,"355 4th St, New York City, NY 10001" -213227,34in Ultrawide Monitor,1,379.99,06/12/19 14:41,"921 Church St, San Francisco, CA 94016" -213228,Lightning Charging Cable,1,14.95,06/07/19 19:31,"783 West St, Boston, MA 02215" -213229,Bose SoundSport Headphones,1,99.99,06/21/19 21:48,"707 Ridge St, Portland, OR 97035" -213230,Wired Headphones,2,11.99,06/21/19 15:25,"404 Chestnut St, Boston, MA 02215" -213231,AA Batteries (4-pack),2,3.84,06/08/19 19:46,"163 Ridge St, San Francisco, CA 94016" -213231,27in 4K Gaming Monitor,1,389.99,06/08/19 19:46,"163 Ridge St, San Francisco, CA 94016" -213232,Lightning Charging Cable,1,14.95,06/14/19 13:00,"305 14th St, Boston, MA 02215" -213233,Lightning Charging Cable,1,14.95,06/02/19 10:55,"790 West St, San Francisco, CA 94016" -213234,AAA Batteries (4-pack),1,2.99,06/06/19 18:32,"603 Jackson St, Dallas, TX 75001" -213235,Bose SoundSport Headphones,1,99.99,06/17/19 17:20,"235 Willow St, Boston, MA 02215" -213236,AAA Batteries (4-pack),1,2.99,06/01/19 13:23,"134 Hill St, Los Angeles, CA 90001" -213237,Wired Headphones,1,11.99,06/20/19 19:09,"449 North St, Seattle, WA 98101" -213238,Apple Airpods Headphones,1,150,06/30/19 14:28,"849 Lake St, Atlanta, GA 30301" -213239,AA Batteries (4-pack),1,3.84,06/19/19 08:05,"263 13th St, Dallas, TX 75001" -213240,USB-C Charging Cable,3,11.95,06/26/19 12:05,"85 South St, Boston, MA 02215" -213241,Macbook Pro Laptop,1,1700,06/04/19 19:44,"527 West St, Portland, OR 97035" -213242,27in FHD Monitor,1,149.99,06/05/19 17:10,"654 1st St, Boston, MA 02215" -213243,Lightning Charging Cable,1,14.95,06/01/19 19:08,"34 Lincoln St, Seattle, WA 98101" -213244,AAA Batteries (4-pack),2,2.99,06/23/19 13:54,"303 Ridge St, Seattle, WA 98101" -213245,AA Batteries (4-pack),1,3.84,06/15/19 15:08,"185 River St, Los Angeles, CA 90001" -213246,AA Batteries (4-pack),1,3.84,06/06/19 11:59,"265 Highland St, Atlanta, GA 30301" -213247,Google Phone,1,600,06/19/19 15:35,"26 Hill St, Los Angeles, CA 90001" -213247,Wired Headphones,1,11.99,06/19/19 15:35,"26 Hill St, Los Angeles, CA 90001" -213248,AAA Batteries (4-pack),2,2.99,06/21/19 17:42,"595 Cherry St, Dallas, TX 75001" -213249,Wired Headphones,1,11.99,06/18/19 16:48,"743 Lakeview St, New York City, NY 10001" -213250,USB-C Charging Cable,1,11.95,06/15/19 00:01,"913 4th St, San Francisco, CA 94016" -213251,Wired Headphones,1,11.99,06/17/19 21:34,"321 8th St, Boston, MA 02215" -213252,iPhone,1,700,06/06/19 10:06,"251 Chestnut St, Los Angeles, CA 90001" -213253,Bose SoundSport Headphones,1,99.99,06/08/19 11:33,"732 Highland St, Dallas, TX 75001" -213254,27in 4K Gaming Monitor,1,389.99,06/06/19 12:00,"626 Ridge St, San Francisco, CA 94016" -213255,AAA Batteries (4-pack),1,2.99,06/11/19 10:35,"933 12th St, Seattle, WA 98101" -213256,Flatscreen TV,1,300,06/15/19 11:16,"489 Lincoln St, Atlanta, GA 30301" -213257,Apple Airpods Headphones,1,150,06/08/19 11:06,"593 Cedar St, Dallas, TX 75001" -213258,27in 4K Gaming Monitor,1,389.99,06/22/19 17:37,"109 Cherry St, Seattle, WA 98101" -213259,USB-C Charging Cable,1,11.95,06/17/19 21:52,"976 Main St, Boston, MA 02215" -213260,34in Ultrawide Monitor,1,379.99,06/23/19 23:57,"811 Center St, Austin, TX 73301" -213261,Wired Headphones,1,11.99,06/17/19 08:18,"42 Sunset St, Seattle, WA 98101" -213262,Wired Headphones,1,11.99,06/19/19 12:52,"710 5th St, San Francisco, CA 94016" -213263,Lightning Charging Cable,1,14.95,06/04/19 09:04,"546 Forest St, Los Angeles, CA 90001" -213264,34in Ultrawide Monitor,1,379.99,06/24/19 18:17,"913 Hill St, Austin, TX 73301" -213265,AAA Batteries (4-pack),2,2.99,06/20/19 21:10,"795 1st St, San Francisco, CA 94016" -213266,20in Monitor,1,109.99,06/07/19 14:33,"422 10th St, Seattle, WA 98101" -213267,Apple Airpods Headphones,1,150,06/24/19 19:59,"631 Ridge St, Boston, MA 02215" -213267,AAA Batteries (4-pack),5,2.99,06/24/19 19:59,"631 Ridge St, Boston, MA 02215" -213268,iPhone,1,700,06/21/19 20:13,"307 South St, Atlanta, GA 30301" -213268,Lightning Charging Cable,1,14.95,06/21/19 20:13,"307 South St, Atlanta, GA 30301" -213269,Macbook Pro Laptop,1,1700,06/04/19 12:12,"301 Pine St, Boston, MA 02215" -213270,USB-C Charging Cable,1,11.95,06/21/19 15:21,"909 Forest St, Austin, TX 73301" -213271,USB-C Charging Cable,1,11.95,06/02/19 22:01,"19 Cedar St, New York City, NY 10001" -213272,27in 4K Gaming Monitor,1,389.99,06/28/19 08:43,"484 Johnson St, San Francisco, CA 94016" -213273,Lightning Charging Cable,1,14.95,06/30/19 21:06,"268 8th St, Los Angeles, CA 90001" -213274,iPhone,1,700,06/21/19 23:59,"434 Lake St, Los Angeles, CA 90001" -213274,Lightning Charging Cable,1,14.95,06/21/19 23:59,"434 Lake St, Los Angeles, CA 90001" -213275,Lightning Charging Cable,1,14.95,06/14/19 17:02,"819 Wilson St, New York City, NY 10001" -213276,AAA Batteries (4-pack),2,2.99,06/06/19 16:44,"399 Madison St, Los Angeles, CA 90001" -213277,Lightning Charging Cable,1,14.95,06/14/19 10:16,"766 Forest St, Atlanta, GA 30301" -213278,iPhone,1,700,06/22/19 08:56,"305 Johnson St, New York City, NY 10001" -213279,AA Batteries (4-pack),1,3.84,06/11/19 15:16,"339 Chestnut St, Los Angeles, CA 90001" -213280,AAA Batteries (4-pack),2,2.99,06/28/19 11:36,"559 6th St, Boston, MA 02215" -213281,27in FHD Monitor,1,149.99,06/10/19 16:10,"361 North St, San Francisco, CA 94016" -213282,Wired Headphones,1,11.99,06/10/19 17:39,"849 Jefferson St, New York City, NY 10001" -213283,Apple Airpods Headphones,1,150,06/15/19 19:08,"30 River St, San Francisco, CA 94016" -213284,Lightning Charging Cable,1,14.95,06/03/19 21:21,"114 Madison St, San Francisco, CA 94016" -213285,AAA Batteries (4-pack),1,2.99,06/22/19 04:09,"579 Walnut St, Atlanta, GA 30301" -213286,AA Batteries (4-pack),1,3.84,06/19/19 12:21,"869 Johnson St, Los Angeles, CA 90001" -213287,Lightning Charging Cable,1,14.95,06/19/19 18:56,"314 2nd St, New York City, NY 10001" -213288,USB-C Charging Cable,1,11.95,06/16/19 12:32,"718 Spruce St, Atlanta, GA 30301" -213289,34in Ultrawide Monitor,1,379.99,06/19/19 22:33,"404 11th St, Seattle, WA 98101" -213290,Lightning Charging Cable,1,14.95,06/19/19 21:42,"466 Adams St, San Francisco, CA 94016" -213291,AAA Batteries (4-pack),1,2.99,06/05/19 23:06,"246 Spruce St, Dallas, TX 75001" -213292,AAA Batteries (4-pack),2,2.99,06/25/19 00:05,"175 Wilson St, New York City, NY 10001" -213293,ThinkPad Laptop,1,999.99,06/06/19 15:30,"824 6th St, Los Angeles, CA 90001" -213294,Google Phone,1,600,06/22/19 13:33,"522 13th St, Portland, ME 04101" -213295,27in FHD Monitor,1,149.99,06/05/19 16:36,"312 13th St, Los Angeles, CA 90001" -213296,Bose SoundSport Headphones,1,99.99,06/29/19 20:41,"464 Cherry St, San Francisco, CA 94016" -213297,AA Batteries (4-pack),1,3.84,06/30/19 13:49,"186 Elm St, Dallas, TX 75001" -213298,Apple Airpods Headphones,1,150,06/01/19 14:22,"959 Lakeview St, San Francisco, CA 94016" -213299,iPhone,1,700,06/05/19 14:09,"699 14th St, New York City, NY 10001" -213299,Lightning Charging Cable,1,14.95,06/05/19 14:09,"699 14th St, New York City, NY 10001" -213300,Vareebadd Phone,1,400,06/24/19 16:54,"110 Jefferson St, Dallas, TX 75001" -213301,Macbook Pro Laptop,1,1700,06/16/19 12:45,"376 Park St, San Francisco, CA 94016" -213302,27in 4K Gaming Monitor,1,389.99,06/02/19 15:11,"905 11th St, San Francisco, CA 94016" -213303,Apple Airpods Headphones,1,150,06/07/19 20:09,"309 Jefferson St, New York City, NY 10001" -213304,Lightning Charging Cable,1,14.95,06/27/19 11:12,"377 11th St, Boston, MA 02215" -213305,34in Ultrawide Monitor,1,379.99,06/24/19 04:40,"505 Park St, Los Angeles, CA 90001" -213306,Lightning Charging Cable,2,14.95,06/23/19 20:38,"543 Walnut St, Los Angeles, CA 90001" -213307,34in Ultrawide Monitor,1,379.99,06/30/19 12:43,"985 2nd St, New York City, NY 10001" -213308,Wired Headphones,1,11.99,06/29/19 09:29,"216 Chestnut St, Los Angeles, CA 90001" -213309,Wired Headphones,1,11.99,06/05/19 20:59,"100 5th St, Seattle, WA 98101" -213310,USB-C Charging Cable,1,11.95,06/08/19 04:00,"451 Hickory St, Boston, MA 02215" -213311,Bose SoundSport Headphones,1,99.99,06/14/19 15:49,"292 Park St, Atlanta, GA 30301" -213312,Macbook Pro Laptop,1,1700,06/13/19 02:46,"834 Main St, Dallas, TX 75001" -213313,AAA Batteries (4-pack),2,2.99,06/05/19 11:36,"851 1st St, Los Angeles, CA 90001" -213314,AA Batteries (4-pack),1,3.84,06/30/19 09:54,"269 2nd St, Los Angeles, CA 90001" -213315,Lightning Charging Cable,1,14.95,06/15/19 15:08,"275 8th St, Seattle, WA 98101" -213316,Google Phone,1,600,06/23/19 00:34,"529 Chestnut St, San Francisco, CA 94016" -213317,Wired Headphones,1,11.99,06/09/19 08:24,"319 Chestnut St, Los Angeles, CA 90001" -213318,27in 4K Gaming Monitor,1,389.99,06/10/19 06:59,"947 Cherry St, Dallas, TX 75001" -213319,AAA Batteries (4-pack),1,2.99,06/20/19 10:31,"646 Spruce St, San Francisco, CA 94016" -213320,iPhone,1,700,06/10/19 13:55,"998 8th St, New York City, NY 10001" -213321,Apple Airpods Headphones,1,150,06/16/19 18:40,"864 8th St, Atlanta, GA 30301" -213322,27in 4K Gaming Monitor,1,389.99,06/17/19 21:06,"763 Lake St, Atlanta, GA 30301" -213323,Lightning Charging Cable,1,14.95,06/27/19 11:25,"102 Elm St, Boston, MA 02215" -213324,Apple Airpods Headphones,1,150,06/07/19 17:54,"838 Washington St, Seattle, WA 98101" -213325,27in 4K Gaming Monitor,1,389.99,06/24/19 23:00,"237 Meadow St, New York City, NY 10001" -213326,27in FHD Monitor,1,149.99,06/28/19 19:32,"671 Wilson St, San Francisco, CA 94016" -213327,Lightning Charging Cable,1,14.95,06/25/19 14:07,"221 Walnut St, Boston, MA 02215" -213328,Flatscreen TV,1,300,06/24/19 20:10,"191 Lake St, Los Angeles, CA 90001" -213329,AA Batteries (4-pack),1,3.84,06/12/19 14:42,"1 8th St, Dallas, TX 75001" -213330,34in Ultrawide Monitor,1,379.99,06/03/19 09:38,"60 North St, San Francisco, CA 94016" -213331,Lightning Charging Cable,1,14.95,06/22/19 13:50,"320 Wilson St, Los Angeles, CA 90001" -213331,Macbook Pro Laptop,1,1700,06/22/19 13:50,"320 Wilson St, Los Angeles, CA 90001" -213332,27in 4K Gaming Monitor,1,389.99,06/04/19 20:46,"325 Ridge St, San Francisco, CA 94016" -213332,USB-C Charging Cable,1,11.95,06/04/19 20:46,"325 Ridge St, San Francisco, CA 94016" -213333,Apple Airpods Headphones,1,150,06/03/19 19:50,"55 Johnson St, San Francisco, CA 94016" -213334,Lightning Charging Cable,1,14.95,06/08/19 12:41,"678 River St, Seattle, WA 98101" -213335,Wired Headphones,1,11.99,06/22/19 15:27,"474 Hill St, Los Angeles, CA 90001" -213336,Wired Headphones,1,11.99,06/01/19 21:29,"393 11th St, Los Angeles, CA 90001" -213337,USB-C Charging Cable,1,11.95,06/17/19 11:42,"815 12th St, Austin, TX 73301" -213338,Bose SoundSport Headphones,1,99.99,06/26/19 07:48,"769 10th St, San Francisco, CA 94016" -213339,Flatscreen TV,1,300,06/08/19 11:44,"859 Willow St, Atlanta, GA 30301" -213340,Wired Headphones,1,11.99,06/13/19 10:31,"249 Lake St, New York City, NY 10001" -213341,27in 4K Gaming Monitor,1,389.99,06/12/19 22:58,"271 Sunset St, San Francisco, CA 94016" -213342,AA Batteries (4-pack),1,3.84,06/07/19 17:16,"195 5th St, Portland, OR 97035" -213343,Lightning Charging Cable,1,14.95,06/13/19 14:57,"562 11th St, San Francisco, CA 94016" -213344,USB-C Charging Cable,3,11.95,06/16/19 11:42,"511 12th St, New York City, NY 10001" -213345,Wired Headphones,1,11.99,06/16/19 13:39,"617 6th St, San Francisco, CA 94016" -213346,iPhone,1,700,06/17/19 08:56,"656 Ridge St, Austin, TX 73301" -213347,Macbook Pro Laptop,1,1700,06/02/19 19:24,"56 5th St, Austin, TX 73301" -213348,AAA Batteries (4-pack),1,2.99,06/17/19 21:41,"451 Lake St, San Francisco, CA 94016" -213349,AAA Batteries (4-pack),2,2.99,06/20/19 11:22,"737 4th St, Boston, MA 02215" -213350,Wired Headphones,1,11.99,06/16/19 04:37,"315 Meadow St, Atlanta, GA 30301" -213351,Lightning Charging Cable,1,14.95,06/11/19 22:48,"207 Church St, Atlanta, GA 30301" -213352,27in 4K Gaming Monitor,1,389.99,06/01/19 23:32,"557 Pine St, San Francisco, CA 94016" -213353,USB-C Charging Cable,1,11.95,06/13/19 15:45,"958 Cedar St, Austin, TX 73301" -213354,34in Ultrawide Monitor,1,379.99,06/04/19 20:52,"565 Main St, New York City, NY 10001" -213355,AAA Batteries (4-pack),1,2.99,06/25/19 15:01,"313 Wilson St, Atlanta, GA 30301" -213356,Lightning Charging Cable,1,14.95,06/17/19 15:24,"741 Forest St, New York City, NY 10001" -213357,USB-C Charging Cable,2,11.95,06/10/19 09:36,"352 Spruce St, Portland, OR 97035" -213358,AA Batteries (4-pack),1,3.84,06/26/19 17:54,"994 Lake St, Austin, TX 73301" -213359,34in Ultrawide Monitor,1,379.99,06/18/19 20:57,"81 9th St, San Francisco, CA 94016" -213360,Bose SoundSport Headphones,1,99.99,06/21/19 08:35,"162 Willow St, Portland, OR 97035" -213361,Apple Airpods Headphones,1,150,06/12/19 11:49,"116 7th St, Seattle, WA 98101" -213362,Google Phone,1,600,06/03/19 18:47,"163 Elm St, San Francisco, CA 94016" -213363,27in 4K Gaming Monitor,1,389.99,06/27/19 19:47,"674 1st St, San Francisco, CA 94016" -213364,Wired Headphones,1,11.99,06/17/19 16:00,"35 Forest St, Austin, TX 73301" -213365,iPhone,1,700,06/29/19 11:56,"999 Church St, San Francisco, CA 94016" -213365,Wired Headphones,1,11.99,06/29/19 11:56,"999 Church St, San Francisco, CA 94016" -213366,LG Dryer,1,600.0,06/19/19 15:19,"842 Jefferson St, San Francisco, CA 94016" -213367,iPhone,1,700,06/14/19 01:11,"506 12th St, Seattle, WA 98101" -213367,Lightning Charging Cable,1,14.95,06/14/19 01:11,"506 12th St, Seattle, WA 98101" -213368,AAA Batteries (4-pack),1,2.99,06/15/19 10:58,"379 Lakeview St, San Francisco, CA 94016" -213369,Apple Airpods Headphones,1,150,06/23/19 20:46,"217 14th St, Dallas, TX 75001" -213370,AA Batteries (4-pack),1,3.84,06/05/19 10:54,"778 Spruce St, San Francisco, CA 94016" -213371,20in Monitor,1,109.99,06/25/19 14:57,"486 Cherry St, Los Angeles, CA 90001" -213372,AA Batteries (4-pack),1,3.84,06/13/19 15:54,"576 Elm St, San Francisco, CA 94016" -213373,Wired Headphones,1,11.99,06/05/19 21:09,"899 South St, San Francisco, CA 94016" -213374,USB-C Charging Cable,1,11.95,06/07/19 19:47,"868 Hill St, San Francisco, CA 94016" -213375,AA Batteries (4-pack),2,3.84,06/20/19 21:07,"665 2nd St, Boston, MA 02215" -213376,Bose SoundSport Headphones,1,99.99,06/07/19 09:25,"615 13th St, Los Angeles, CA 90001" -213377,Apple Airpods Headphones,1,150,06/04/19 13:58,"500 Center St, Los Angeles, CA 90001" -213378,Lightning Charging Cable,1,14.95,06/27/19 19:49,"881 Dogwood St, San Francisco, CA 94016" -213379,Lightning Charging Cable,1,14.95,06/20/19 23:58,"506 Highland St, New York City, NY 10001" -213380,Wired Headphones,1,11.99,06/17/19 10:05,"802 South St, San Francisco, CA 94016" -213381,AAA Batteries (4-pack),2,2.99,06/08/19 23:58,"828 Willow St, Seattle, WA 98101" -213382,Google Phone,1,600,06/01/19 12:47,"608 North St, Los Angeles, CA 90001" -213383,Apple Airpods Headphones,1,150,06/15/19 09:15,"460 Ridge St, Dallas, TX 75001" -213384,USB-C Charging Cable,1,11.95,06/04/19 08:23,"464 12th St, New York City, NY 10001" -213385,AAA Batteries (4-pack),1,2.99,06/18/19 15:06,"471 Main St, Dallas, TX 75001" -213386,ThinkPad Laptop,1,999.99,06/15/19 22:43,"339 Main St, Boston, MA 02215" -213387,Apple Airpods Headphones,1,150,06/09/19 18:40,"485 Cherry St, San Francisco, CA 94016" -213388,USB-C Charging Cable,1,11.95,06/21/19 07:38,"308 Dogwood St, Atlanta, GA 30301" -213389,ThinkPad Laptop,1,999.99,06/16/19 18:23,"4 River St, New York City, NY 10001" -213390,USB-C Charging Cable,1,11.95,06/05/19 21:02,"348 River St, Los Angeles, CA 90001" -213391,Wired Headphones,1,11.99,06/02/19 20:24,"213 Forest St, Atlanta, GA 30301" -213392,ThinkPad Laptop,1,999.99,06/10/19 11:01,"784 Cedar St, Dallas, TX 75001" -213393,Bose SoundSport Headphones,1,99.99,06/21/19 16:06,"158 Willow St, Atlanta, GA 30301" -213394,AAA Batteries (4-pack),2,2.99,06/29/19 16:34,"838 Pine St, Boston, MA 02215" -213395,Lightning Charging Cable,1,14.95,06/04/19 07:53,"188 Chestnut St, San Francisco, CA 94016" -213396,Lightning Charging Cable,3,14.95,06/14/19 14:02,"614 South St, New York City, NY 10001" -213397,Wired Headphones,1,11.99,06/15/19 17:06,"430 Forest St, San Francisco, CA 94016" -213398,AAA Batteries (4-pack),3,2.99,06/29/19 09:58,"893 8th St, Portland, ME 04101" -213399,27in 4K Gaming Monitor,1,389.99,06/26/19 20:02,"636 Sunset St, Boston, MA 02215" -213400,AA Batteries (4-pack),1,3.84,06/24/19 14:45,"427 Maple St, San Francisco, CA 94016" -213401,iPhone,1,700,06/19/19 19:12,"404 Madison St, Austin, TX 73301" -213401,Lightning Charging Cable,1,14.95,06/19/19 19:12,"404 Madison St, Austin, TX 73301" -213401,Apple Airpods Headphones,1,150,06/19/19 19:12,"404 Madison St, Austin, TX 73301" -213402,Bose SoundSport Headphones,1,99.99,06/30/19 11:24,"312 Lakeview St, Los Angeles, CA 90001" -213403,Apple Airpods Headphones,1,150,06/05/19 15:27,"285 Park St, San Francisco, CA 94016" -213404,Bose SoundSport Headphones,1,99.99,06/16/19 20:23,"676 Lakeview St, San Francisco, CA 94016" -213405,Wired Headphones,1,11.99,06/13/19 18:25,"283 14th St, Los Angeles, CA 90001" -213406,27in FHD Monitor,1,149.99,06/14/19 09:30,"761 8th St, Austin, TX 73301" -213407,AA Batteries (4-pack),3,3.84,06/14/19 20:34,"695 Park St, Boston, MA 02215" -213408,Apple Airpods Headphones,1,150,06/11/19 15:25,"612 13th St, New York City, NY 10001" -213409,AAA Batteries (4-pack),1,2.99,06/05/19 23:53,"868 Willow St, San Francisco, CA 94016" -213410,AA Batteries (4-pack),2,3.84,06/08/19 08:35,"937 8th St, Portland, OR 97035" -213411,Wired Headphones,2,11.99,06/10/19 22:04,"211 Park St, San Francisco, CA 94016" -213412,AA Batteries (4-pack),1,3.84,06/04/19 00:29,"142 13th St, San Francisco, CA 94016" -213413,USB-C Charging Cable,1,11.95,06/22/19 20:19,"144 Walnut St, San Francisco, CA 94016" -213414,Apple Airpods Headphones,1,150,06/29/19 21:15,"947 Lincoln St, New York City, NY 10001" -213415,AA Batteries (4-pack),1,3.84,06/12/19 14:50,"490 Adams St, Los Angeles, CA 90001" -213416,Flatscreen TV,1,300,06/09/19 11:10,"204 Center St, Austin, TX 73301" -213417,ThinkPad Laptop,1,999.99,06/10/19 13:20,"73 Main St, Portland, OR 97035" -213418,ThinkPad Laptop,1,999.99,06/15/19 18:53,"958 Elm St, Dallas, TX 75001" -213419,Apple Airpods Headphones,1,150,06/20/19 09:57,"821 6th St, Boston, MA 02215" -213420,Lightning Charging Cable,1,14.95,06/03/19 20:08,"514 Hickory St, Los Angeles, CA 90001" -213421,Wired Headphones,1,11.99,06/24/19 12:16,"463 Dogwood St, Portland, OR 97035" -213422,Lightning Charging Cable,1,14.95,06/29/19 17:01,"69 Hill St, Dallas, TX 75001" -213423,AA Batteries (4-pack),2,3.84,06/16/19 20:04,"742 Madison St, Boston, MA 02215" -213424,Lightning Charging Cable,1,14.95,06/16/19 17:58,"556 Johnson St, San Francisco, CA 94016" -213425,Wired Headphones,1,11.99,06/15/19 17:43,"200 8th St, Los Angeles, CA 90001" -213426,iPhone,1,700,06/21/19 17:39,"644 7th St, Portland, OR 97035" -213426,AAA Batteries (4-pack),1,2.99,06/21/19 17:39,"644 7th St, Portland, OR 97035" -213427,AA Batteries (4-pack),1,3.84,06/10/19 13:43,"768 9th St, San Francisco, CA 94016" -213428,27in FHD Monitor,1,149.99,06/22/19 19:11,"25 Park St, San Francisco, CA 94016" -213429,USB-C Charging Cable,1,11.95,06/27/19 08:52,"140 Cherry St, Los Angeles, CA 90001" -213430,AAA Batteries (4-pack),1,2.99,06/20/19 14:10,"681 Maple St, New York City, NY 10001" -213431,LG Washing Machine,1,600.0,06/10/19 13:07,"643 Pine St, Seattle, WA 98101" -213432,34in Ultrawide Monitor,1,379.99,06/03/19 16:41,"486 Main St, Seattle, WA 98101" -213433,AAA Batteries (4-pack),1,2.99,06/17/19 15:21,"823 4th St, Los Angeles, CA 90001" -213434,USB-C Charging Cable,1,11.95,06/26/19 23:13,"598 Main St, Boston, MA 02215" -213435,Macbook Pro Laptop,1,1700,06/09/19 13:40,"511 Cedar St, New York City, NY 10001" -213436,Wired Headphones,2,11.99,06/23/19 09:01,"971 11th St, San Francisco, CA 94016" -213437,Bose SoundSport Headphones,1,99.99,06/22/19 11:08,"636 9th St, Austin, TX 73301" -213438,Apple Airpods Headphones,1,150,06/29/19 13:44,"839 11th St, Austin, TX 73301" -213439,Wired Headphones,1,11.99,06/28/19 13:10,"925 Walnut St, Los Angeles, CA 90001" -213440,Lightning Charging Cable,2,14.95,06/22/19 20:23,"657 5th St, Los Angeles, CA 90001" -213441,USB-C Charging Cable,1,11.95,06/04/19 00:48,"952 Dogwood St, Austin, TX 73301" -213442,iPhone,1,700,06/05/19 12:08,"693 Ridge St, San Francisco, CA 94016" -213443,Lightning Charging Cable,1,14.95,06/23/19 23:30,"572 Madison St, Los Angeles, CA 90001" -213444,Vareebadd Phone,1,400,06/26/19 15:09,"792 Main St, San Francisco, CA 94016" -213444,Bose SoundSport Headphones,2,99.99,06/26/19 15:09,"792 Main St, San Francisco, CA 94016" -213445,27in 4K Gaming Monitor,1,389.99,06/10/19 19:47,"615 Hill St, Los Angeles, CA 90001" -213446,27in 4K Gaming Monitor,1,389.99,06/23/19 14:06,"979 South St, Atlanta, GA 30301" -213447,iPhone,1,700,06/08/19 23:26,"962 Jackson St, San Francisco, CA 94016" -213448,Flatscreen TV,1,300,06/24/19 11:41,"935 Highland St, Seattle, WA 98101" -213449,Google Phone,1,600,06/19/19 14:24,"339 Chestnut St, Dallas, TX 75001" -213450,Apple Airpods Headphones,1,150,06/09/19 13:32,"836 Madison St, New York City, NY 10001" -213451,AAA Batteries (4-pack),1,2.99,06/13/19 10:20,"49 Cedar St, San Francisco, CA 94016" -213451,Lightning Charging Cable,1,14.95,06/13/19 10:20,"49 Cedar St, San Francisco, CA 94016" -213452,Wired Headphones,1,11.99,06/02/19 12:17,"393 Park St, Portland, OR 97035" -213453,Apple Airpods Headphones,1,150,06/24/19 13:10,"811 7th St, Los Angeles, CA 90001" -213454,Flatscreen TV,1,300,06/01/19 19:54,"408 Hill St, Boston, MA 02215" -213455,Apple Airpods Headphones,1,150,06/12/19 11:57,"158 Church St, San Francisco, CA 94016" -213456,USB-C Charging Cable,1,11.95,06/24/19 10:08,"231 Forest St, San Francisco, CA 94016" -213457,USB-C Charging Cable,1,11.95,06/23/19 11:24,"941 2nd St, Portland, OR 97035" -213458,AA Batteries (4-pack),1,3.84,06/24/19 21:35,"781 8th St, Seattle, WA 98101" -213459,AA Batteries (4-pack),3,3.84,06/03/19 14:53,"633 2nd St, Los Angeles, CA 90001" -213460,AA Batteries (4-pack),1,3.84,06/17/19 18:02,"480 Chestnut St, Boston, MA 02215" -213461,USB-C Charging Cable,1,11.95,06/17/19 16:37,"97 River St, Boston, MA 02215" -213462,Wired Headphones,1,11.99,06/17/19 06:19,"30 South St, Los Angeles, CA 90001" -213463,Lightning Charging Cable,1,14.95,06/04/19 03:19,"497 8th St, Dallas, TX 75001" -213464,Lightning Charging Cable,1,14.95,06/19/19 19:13,"720 Johnson St, San Francisco, CA 94016" -213465,Lightning Charging Cable,1,14.95,06/15/19 15:46,"697 Washington St, Dallas, TX 75001" -213466,Bose SoundSport Headphones,1,99.99,06/04/19 21:12,"165 Madison St, Los Angeles, CA 90001" -213467,ThinkPad Laptop,1,999.99,06/29/19 21:45,"544 Cherry St, Atlanta, GA 30301" -213468,Lightning Charging Cable,1,14.95,06/04/19 11:13,"171 Walnut St, San Francisco, CA 94016" -213469,27in FHD Monitor,1,149.99,06/22/19 17:43,"146 Willow St, Dallas, TX 75001" -213470,Apple Airpods Headphones,1,150,06/18/19 11:46,"206 River St, Dallas, TX 75001" -213471,AA Batteries (4-pack),1,3.84,06/07/19 00:08,"592 Washington St, Seattle, WA 98101" -213472,Flatscreen TV,1,300,06/07/19 20:38,"38 Main St, San Francisco, CA 94016" -213473,AA Batteries (4-pack),1,3.84,06/03/19 12:09,"981 Lakeview St, Atlanta, GA 30301" -213474,34in Ultrawide Monitor,1,379.99,06/28/19 14:30,"109 Ridge St, Seattle, WA 98101" -213475,34in Ultrawide Monitor,1,379.99,06/07/19 18:14,"924 Walnut St, Atlanta, GA 30301" -213476,Apple Airpods Headphones,1,150,06/17/19 10:05,"178 14th St, San Francisco, CA 94016" -213477,AA Batteries (4-pack),1,3.84,06/08/19 18:27,"762 Ridge St, Austin, TX 73301" -213478,Lightning Charging Cable,1,14.95,06/10/19 02:32,"692 Forest St, Dallas, TX 75001" -213479,20in Monitor,1,109.99,06/28/19 14:08,"816 Lake St, Dallas, TX 75001" -213480,Wired Headphones,2,11.99,06/13/19 22:50,"435 Jefferson St, Dallas, TX 75001" -213481,Wired Headphones,1,11.99,06/28/19 18:45,"339 4th St, Seattle, WA 98101" -213482,USB-C Charging Cable,1,11.95,06/29/19 12:08,"916 5th St, Los Angeles, CA 90001" -213483,AAA Batteries (4-pack),1,2.99,06/08/19 19:00,"577 Adams St, Boston, MA 02215" -213484,AAA Batteries (4-pack),2,2.99,06/11/19 11:57,"255 11th St, Seattle, WA 98101" -213485,USB-C Charging Cable,1,11.95,06/29/19 21:55,"875 Center St, San Francisco, CA 94016" -213486,27in FHD Monitor,1,149.99,06/25/19 17:44,"258 Jefferson St, New York City, NY 10001" -213487,Bose SoundSport Headphones,1,99.99,06/24/19 14:54,"353 Johnson St, Boston, MA 02215" -213488,AAA Batteries (4-pack),1,2.99,06/10/19 17:26,"343 2nd St, San Francisco, CA 94016" -213489,27in FHD Monitor,2,149.99,06/03/19 15:42,"263 Walnut St, Boston, MA 02215" -213490,27in FHD Monitor,1,149.99,06/01/19 13:04,"373 Forest St, Atlanta, GA 30301" -213491,Flatscreen TV,1,300,06/23/19 07:55,"638 Park St, San Francisco, CA 94016" -213492,USB-C Charging Cable,1,11.95,06/19/19 09:12,"448 Sunset St, Seattle, WA 98101" -213493,20in Monitor,1,109.99,06/24/19 02:26,"241 Main St, Los Angeles, CA 90001" -213493,Wired Headphones,1,11.99,06/24/19 02:26,"241 Main St, Los Angeles, CA 90001" -213494,Apple Airpods Headphones,1,150,06/23/19 10:28,"288 Church St, Boston, MA 02215" -213495,27in 4K Gaming Monitor,1,389.99,06/25/19 13:17,"647 Cherry St, Atlanta, GA 30301" -213496,Wired Headphones,1,11.99,06/21/19 10:49,"29 8th St, Atlanta, GA 30301" -213497,USB-C Charging Cable,1,11.95,06/19/19 21:43,"920 Meadow St, Atlanta, GA 30301" -213498,Lightning Charging Cable,1,14.95,06/21/19 18:35,"397 Sunset St, San Francisco, CA 94016" -213499,iPhone,1,700,06/29/19 10:50,"181 River St, Boston, MA 02215" -213500,Wired Headphones,1,11.99,06/01/19 09:41,"717 North St, Los Angeles, CA 90001" -213501,Bose SoundSport Headphones,1,99.99,06/20/19 10:51,"701 Lake St, San Francisco, CA 94016" -213502,USB-C Charging Cable,2,11.95,06/01/19 18:36,"337 4th St, Boston, MA 02215" -213503,Apple Airpods Headphones,1,150,06/15/19 17:47,"82 West St, Atlanta, GA 30301" -213504,Bose SoundSport Headphones,1,99.99,06/17/19 22:08,"929 Washington St, San Francisco, CA 94016" -213505,Wired Headphones,2,11.99,06/21/19 20:09,"523 10th St, Seattle, WA 98101" -213506,Apple Airpods Headphones,1,150,06/13/19 08:53,"296 Hill St, San Francisco, CA 94016" -213507,Wired Headphones,3,11.99,06/30/19 14:53,"549 Lincoln St, Portland, OR 97035" -213508,Apple Airpods Headphones,1,150,06/14/19 16:09,"975 Main St, New York City, NY 10001" -213509,20in Monitor,1,109.99,06/19/19 20:04,"464 Madison St, San Francisco, CA 94016" -213510,AA Batteries (4-pack),1,3.84,06/01/19 21:24,"125 Jefferson St, Boston, MA 02215" -213511,AA Batteries (4-pack),1,3.84,06/01/19 12:58,"256 Hill St, Atlanta, GA 30301" -213512,USB-C Charging Cable,2,11.95,06/18/19 18:51,"645 Chestnut St, Los Angeles, CA 90001" -213513,iPhone,1,700,06/06/19 18:52,"747 Jackson St, San Francisco, CA 94016" -213514,27in 4K Gaming Monitor,1,389.99,06/19/19 12:33,"929 11th St, Boston, MA 02215" -213515,iPhone,1,700,06/19/19 13:47,"693 Cherry St, Los Angeles, CA 90001" -213515,Apple Airpods Headphones,1,150,06/19/19 13:47,"693 Cherry St, Los Angeles, CA 90001" -213516,34in Ultrawide Monitor,1,379.99,06/01/19 17:51,"348 Hill St, Los Angeles, CA 90001" -213517,USB-C Charging Cable,2,11.95,06/04/19 16:21,"510 Ridge St, New York City, NY 10001" -213518,20in Monitor,1,109.99,06/16/19 09:50,"573 River St, Seattle, WA 98101" -213519,Wired Headphones,1,11.99,06/25/19 23:33,"481 River St, Portland, OR 97035" -213520,Wired Headphones,1,11.99,06/26/19 17:27,"383 Madison St, San Francisco, CA 94016" -213521,Macbook Pro Laptop,1,1700,06/21/19 18:38,"525 Forest St, San Francisco, CA 94016" -213522,Lightning Charging Cable,1,14.95,06/27/19 10:34,"373 Cherry St, Boston, MA 02215" -213523,USB-C Charging Cable,1,11.95,06/25/19 11:53,"128 Main St, Dallas, TX 75001" -213524,iPhone,1,700,06/23/19 23:43,"75 Lake St, Dallas, TX 75001" -213524,Wired Headphones,1,11.99,06/23/19 23:43,"75 Lake St, Dallas, TX 75001" -213525,Apple Airpods Headphones,1,150,06/07/19 16:16,"897 Spruce St, San Francisco, CA 94016" -213526,Wired Headphones,1,11.99,06/27/19 06:30,"415 Elm St, San Francisco, CA 94016" -213527,Wired Headphones,1,11.99,06/16/19 14:35,"636 Wilson St, San Francisco, CA 94016" -213528,Lightning Charging Cable,1,14.95,06/28/19 16:44,"53 Adams St, San Francisco, CA 94016" -213529,27in FHD Monitor,1,149.99,06/06/19 12:00,"521 Wilson St, Los Angeles, CA 90001" -213530,Bose SoundSport Headphones,1,99.99,06/14/19 18:59,"804 7th St, New York City, NY 10001" -213531,Vareebadd Phone,1,400,06/17/19 13:24,"436 North St, New York City, NY 10001" -213532,Wired Headphones,1,11.99,06/02/19 11:45,"467 Sunset St, Seattle, WA 98101" -213533,Wired Headphones,1,11.99,06/24/19 12:08,"441 Church St, Portland, OR 97035" -213534,AA Batteries (4-pack),1,3.84,06/26/19 01:37,"754 West St, San Francisco, CA 94016" -213535,LG Washing Machine,1,600.0,06/16/19 16:59,"166 Ridge St, San Francisco, CA 94016" -213536,Wired Headphones,1,11.99,06/20/19 16:59,"911 Hill St, Los Angeles, CA 90001" -213537,Apple Airpods Headphones,1,150,06/21/19 13:59,"772 West St, New York City, NY 10001" -213538,Wired Headphones,1,11.99,06/13/19 17:51,"507 Jackson St, Portland, OR 97035" -213539,AA Batteries (4-pack),1,3.84,06/10/19 09:51,"656 West St, Portland, ME 04101" -213540,AAA Batteries (4-pack),1,2.99,06/15/19 17:03,"996 Lake St, San Francisco, CA 94016" -213540,iPhone,1,700,06/15/19 17:03,"996 Lake St, San Francisco, CA 94016" -213541,Bose SoundSport Headphones,1,99.99,06/11/19 18:41,"523 Park St, Seattle, WA 98101" -213542,Apple Airpods Headphones,1,150,06/05/19 02:29,"479 River St, San Francisco, CA 94016" -213543,Bose SoundSport Headphones,1,99.99,06/10/19 19:54,"768 Meadow St, New York City, NY 10001" -213544,Lightning Charging Cable,1,14.95,06/18/19 14:45,"613 Dogwood St, San Francisco, CA 94016" -213545,AAA Batteries (4-pack),2,2.99,06/10/19 11:23,"531 Cedar St, Atlanta, GA 30301" -213546,Google Phone,1,600,06/19/19 13:04,"822 11th St, Atlanta, GA 30301" -213546,USB-C Charging Cable,1,11.95,06/19/19 13:04,"822 11th St, Atlanta, GA 30301" -213547,AAA Batteries (4-pack),2,2.99,06/09/19 15:33,"295 Willow St, Austin, TX 73301" -213548,Wired Headphones,1,11.99,06/27/19 06:59,"619 Park St, San Francisco, CA 94016" -213549,Apple Airpods Headphones,1,150,06/16/19 12:47,"692 5th St, Boston, MA 02215" -213550,AA Batteries (4-pack),1,3.84,06/09/19 20:36,"433 6th St, New York City, NY 10001" -213551,AA Batteries (4-pack),1,3.84,06/25/19 19:32,"323 Maple St, Boston, MA 02215" -213552,Macbook Pro Laptop,1,1700,06/05/19 11:26,"889 Dogwood St, Portland, OR 97035" -213553,Lightning Charging Cable,1,14.95,06/07/19 08:32,"20 Spruce St, San Francisco, CA 94016" -213554,iPhone,1,700,06/02/19 00:38,"890 Jefferson St, San Francisco, CA 94016" -213554,Flatscreen TV,1,300,06/02/19 00:38,"890 Jefferson St, San Francisco, CA 94016" -213555,Lightning Charging Cable,1,14.95,06/26/19 18:48,"542 9th St, Los Angeles, CA 90001" -213556,Lightning Charging Cable,1,14.95,06/28/19 17:55,"357 Church St, San Francisco, CA 94016" -213557,Wired Headphones,2,11.99,06/03/19 18:36,"330 4th St, Seattle, WA 98101" -213558,USB-C Charging Cable,1,11.95,06/10/19 10:13,"90 Elm St, Atlanta, GA 30301" -213559,Google Phone,1,600,06/10/19 12:14,"621 Cedar St, Los Angeles, CA 90001" -213559,USB-C Charging Cable,1,11.95,06/10/19 12:14,"621 Cedar St, Los Angeles, CA 90001" -213560,AAA Batteries (4-pack),1,2.99,06/25/19 22:42,"762 Willow St, Atlanta, GA 30301" -213561,Bose SoundSport Headphones,1,99.99,06/22/19 09:55,"801 Spruce St, Boston, MA 02215" -213562,AA Batteries (4-pack),1,3.84,06/15/19 14:45,"596 1st St, Los Angeles, CA 90001" -213563,Flatscreen TV,1,300,06/02/19 21:11,"139 7th St, Austin, TX 73301" -213564,iPhone,1,700,06/12/19 17:59,"606 Lake St, Seattle, WA 98101" -213565,Bose SoundSport Headphones,1,99.99,06/16/19 14:14,"364 1st St, San Francisco, CA 94016" -213566,AAA Batteries (4-pack),1,2.99,06/14/19 12:27,"940 Elm St, New York City, NY 10001" -213567,ThinkPad Laptop,1,999.99,06/19/19 13:25,"386 Chestnut St, Portland, OR 97035" -213568,USB-C Charging Cable,1,11.95,06/09/19 14:44,"842 North St, Dallas, TX 75001" -213569,Wired Headphones,1,11.99,06/23/19 12:48,"970 Jefferson St, Seattle, WA 98101" -213570,Lightning Charging Cable,3,14.95,06/22/19 10:48,"49 Elm St, San Francisco, CA 94016" -213571,USB-C Charging Cable,1,11.95,06/21/19 19:04,"887 Walnut St, San Francisco, CA 94016" -213572,AAA Batteries (4-pack),1,2.99,06/07/19 10:03,"674 Meadow St, Dallas, TX 75001" -213573,USB-C Charging Cable,1,11.95,06/06/19 13:24,"548 Jackson St, Dallas, TX 75001" -213574,AA Batteries (4-pack),1,3.84,06/24/19 10:08,"514 2nd St, Los Angeles, CA 90001" -213575,AAA Batteries (4-pack),1,2.99,06/29/19 15:22,"671 7th St, New York City, NY 10001" -213576,iPhone,1,700,06/27/19 17:53,"7 Cedar St, San Francisco, CA 94016" -213577,20in Monitor,1,109.99,06/09/19 17:55,"931 Jefferson St, Seattle, WA 98101" -213578,ThinkPad Laptop,1,999.99,06/22/19 14:57,"504 Highland St, Seattle, WA 98101" -213579,Apple Airpods Headphones,1,150,06/25/19 20:49,"708 14th St, Austin, TX 73301" -213580,USB-C Charging Cable,1,11.95,06/25/19 19:25,"166 12th St, Boston, MA 02215" -213581,Bose SoundSport Headphones,1,99.99,06/21/19 09:02,"113 1st St, Los Angeles, CA 90001" -213582,AA Batteries (4-pack),2,3.84,06/01/19 14:29,"519 Church St, Seattle, WA 98101" -213583,34in Ultrawide Monitor,1,379.99,06/14/19 11:51,"138 12th St, San Francisco, CA 94016" -213584,USB-C Charging Cable,1,11.95,06/17/19 13:31,"452 Hill St, San Francisco, CA 94016" -213585,Bose SoundSport Headphones,1,99.99,06/21/19 12:32,"969 Cherry St, New York City, NY 10001" -213586,AA Batteries (4-pack),2,3.84,06/04/19 18:44,"504 Washington St, San Francisco, CA 94016" -213587,27in FHD Monitor,1,149.99,06/27/19 22:47,"46 Walnut St, Los Angeles, CA 90001" -213588,34in Ultrawide Monitor,1,379.99,06/29/19 17:14,"988 Willow St, Atlanta, GA 30301" -213589,27in FHD Monitor,1,149.99,06/01/19 15:38,"634 Maple St, Austin, TX 73301" -213590,Bose SoundSport Headphones,2,99.99,06/16/19 22:07,"231 Lakeview St, Los Angeles, CA 90001" -213591,Apple Airpods Headphones,1,150,06/30/19 14:01,"642 Spruce St, Dallas, TX 75001" -213592,34in Ultrawide Monitor,1,379.99,06/15/19 16:43,"706 Madison St, Boston, MA 02215" -213593,ThinkPad Laptop,1,999.99,06/25/19 19:32,"800 6th St, Boston, MA 02215" -213594,LG Dryer,1,600.0,06/03/19 22:48,"988 Jackson St, Boston, MA 02215" -213595,34in Ultrawide Monitor,1,379.99,06/30/19 08:51,"842 6th St, Los Angeles, CA 90001" -213596,Wired Headphones,2,11.99,06/29/19 22:56,"104 North St, San Francisco, CA 94016" -213597,Lightning Charging Cable,1,14.95,06/22/19 21:10,"261 10th St, San Francisco, CA 94016" -213598,AAA Batteries (4-pack),2,2.99,06/17/19 20:46,"264 14th St, Boston, MA 02215" -213599,AAA Batteries (4-pack),1,2.99,06/12/19 21:28,"954 13th St, Boston, MA 02215" -213600,Apple Airpods Headphones,1,150,06/21/19 11:15,"115 Cedar St, Seattle, WA 98101" -213601,USB-C Charging Cable,1,11.95,06/21/19 09:35,"687 Maple St, Los Angeles, CA 90001" -213602,Apple Airpods Headphones,1,150,06/14/19 21:05,"532 Main St, Los Angeles, CA 90001" -213603,Lightning Charging Cable,1,14.95,06/01/19 13:32,"161 8th St, Dallas, TX 75001" -213604,Apple Airpods Headphones,1,150,06/24/19 12:30,"820 Elm St, Austin, TX 73301" -213605,Apple Airpods Headphones,1,150,06/19/19 20:21,"530 5th St, Dallas, TX 75001" -213606,AAA Batteries (4-pack),1,2.99,06/01/19 19:58,"387 4th St, Atlanta, GA 30301" -213607,Wired Headphones,1,11.99,06/16/19 12:24,"516 6th St, Los Angeles, CA 90001" -213608,27in 4K Gaming Monitor,1,389.99,06/27/19 19:16,"891 Lakeview St, San Francisco, CA 94016" -213609,Lightning Charging Cable,1,14.95,06/13/19 12:04,"318 9th St, New York City, NY 10001" -213610,iPhone,1,700,06/03/19 21:04,"713 12th St, New York City, NY 10001" -213611,Apple Airpods Headphones,1,150,06/08/19 14:03,"993 Johnson St, Portland, ME 04101" -213612,ThinkPad Laptop,1,999.99,06/30/19 08:37,"241 Highland St, San Francisco, CA 94016" -213613,AAA Batteries (4-pack),1,2.99,06/23/19 11:13,"924 Park St, New York City, NY 10001" -213614,AA Batteries (4-pack),1,3.84,06/28/19 01:28,"727 7th St, Los Angeles, CA 90001" -213615,Lightning Charging Cable,1,14.95,06/11/19 09:26,"785 Lake St, Boston, MA 02215" -213616,AAA Batteries (4-pack),2,2.99,06/08/19 22:45,"717 Jackson St, San Francisco, CA 94016" -213617,Lightning Charging Cable,1,14.95,06/08/19 14:16,"171 Lakeview St, Boston, MA 02215" -213618,Bose SoundSport Headphones,1,99.99,06/14/19 20:29,"141 North St, Los Angeles, CA 90001" -213619,Google Phone,1,600,06/29/19 21:24,"895 13th St, Los Angeles, CA 90001" -213620,Lightning Charging Cable,1,14.95,06/18/19 08:57,"426 Elm St, San Francisco, CA 94016" -213621,Bose SoundSport Headphones,1,99.99,06/19/19 15:05,"491 12th St, New York City, NY 10001" -213622,Bose SoundSport Headphones,1,99.99,06/21/19 21:44,"752 North St, New York City, NY 10001" -213623,Apple Airpods Headphones,1,150,06/18/19 23:21,"914 8th St, Los Angeles, CA 90001" -213624,AAA Batteries (4-pack),1,2.99,06/05/19 12:51,"953 5th St, Atlanta, GA 30301" -213625,AA Batteries (4-pack),1,3.84,06/04/19 18:40,"249 4th St, San Francisco, CA 94016" -213626,20in Monitor,1,109.99,06/25/19 07:31,"20 Wilson St, Atlanta, GA 30301" -213627,Bose SoundSport Headphones,1,99.99,06/28/19 08:28,"256 Meadow St, Atlanta, GA 30301" -213628,USB-C Charging Cable,1,11.95,06/07/19 16:51,"926 Maple St, San Francisco, CA 94016" -213629,27in 4K Gaming Monitor,1,389.99,06/26/19 17:31,"353 South St, New York City, NY 10001" -213630,USB-C Charging Cable,2,11.95,06/12/19 19:12,"747 Highland St, Los Angeles, CA 90001" -213631,Lightning Charging Cable,1,14.95,06/01/19 17:04,"630 Forest St, Los Angeles, CA 90001" -213632,20in Monitor,1,109.99,06/23/19 17:12,"948 5th St, Boston, MA 02215" -213633,34in Ultrawide Monitor,1,379.99,06/25/19 18:30,"264 13th St, Los Angeles, CA 90001" -213634,Wired Headphones,1,11.99,06/14/19 15:52,"816 Adams St, San Francisco, CA 94016" -213635,27in 4K Gaming Monitor,1,389.99,06/25/19 09:22,"657 Park St, Los Angeles, CA 90001" -213636,34in Ultrawide Monitor,1,379.99,06/23/19 18:40,"401 Chestnut St, Atlanta, GA 30301" -213637,AA Batteries (4-pack),2,3.84,06/30/19 12:20,"168 Forest St, Seattle, WA 98101" -213638,Apple Airpods Headphones,1,150,06/14/19 18:20,"919 Wilson St, New York City, NY 10001" -213639,AAA Batteries (4-pack),1,2.99,06/28/19 13:14,"645 Highland St, Boston, MA 02215" -213640,Flatscreen TV,1,300,06/20/19 08:10,"808 North St, Atlanta, GA 30301" -213641,Bose SoundSport Headphones,1,99.99,06/23/19 23:41,"527 Chestnut St, Atlanta, GA 30301" -213642,Flatscreen TV,1,300,06/12/19 15:13,"771 4th St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -213643,Lightning Charging Cable,1,14.95,06/09/19 13:47,"595 Lincoln St, San Francisco, CA 94016" -213644,20in Monitor,1,109.99,06/19/19 20:57,"804 River St, Portland, ME 04101" -213645,Flatscreen TV,1,300,06/23/19 17:24,"391 South St, Dallas, TX 75001" -213646,AAA Batteries (4-pack),1,2.99,06/15/19 16:35,"372 10th St, Portland, OR 97035" -213647,Flatscreen TV,1,300,06/23/19 04:00,"493 Walnut St, Atlanta, GA 30301" -213648,USB-C Charging Cable,2,11.95,06/20/19 11:48,"778 Adams St, San Francisco, CA 94016" -213649,Bose SoundSport Headphones,1,99.99,06/01/19 19:10,"954 Cedar St, San Francisco, CA 94016" -213650,AAA Batteries (4-pack),1,2.99,06/12/19 15:44,"459 Johnson St, San Francisco, CA 94016" -213651,Vareebadd Phone,1,400,06/26/19 13:12,"262 Madison St, Seattle, WA 98101" -213652,ThinkPad Laptop,1,999.99,06/04/19 15:53,"554 Forest St, Atlanta, GA 30301" -213653,iPhone,1,700,06/04/19 15:16,"722 West St, Seattle, WA 98101" -213654,AAA Batteries (4-pack),3,2.99,06/17/19 23:31,"194 Johnson St, San Francisco, CA 94016" -213655,Wired Headphones,1,11.99,06/23/19 20:38,"69 12th St, Dallas, TX 75001" -213656,AA Batteries (4-pack),1,3.84,06/11/19 21:21,"912 Willow St, San Francisco, CA 94016" -213657,Apple Airpods Headphones,1,150,06/08/19 18:43,"380 Spruce St, Dallas, TX 75001" -213658,ThinkPad Laptop,1,999.99,06/02/19 17:42,"302 Lakeview St, New York City, NY 10001" -213659,Bose SoundSport Headphones,1,99.99,06/21/19 14:51,"988 Wilson St, Los Angeles, CA 90001" -213660,USB-C Charging Cable,1,11.95,07/01/19 02:06,"505 Cherry St, San Francisco, CA 94016" -213661,Macbook Pro Laptop,1,1700,06/23/19 14:14,"55 Cedar St, Austin, TX 73301" -213662,AAA Batteries (4-pack),2,2.99,06/16/19 04:48,"350 2nd St, Seattle, WA 98101" -213663,Wired Headphones,1,11.99,06/13/19 07:55,"467 Cherry St, Atlanta, GA 30301" -213664,Flatscreen TV,1,300,06/15/19 12:30,"903 14th St, Atlanta, GA 30301" -213665,Wired Headphones,1,11.99,06/04/19 21:22,"191 Dogwood St, Atlanta, GA 30301" -213666,AAA Batteries (4-pack),1,2.99,06/09/19 10:49,"23 Church St, Seattle, WA 98101" -213667,Lightning Charging Cable,1,14.95,06/15/19 12:57,"483 Main St, New York City, NY 10001" -213668,Apple Airpods Headphones,1,150,06/14/19 07:23,"249 Jackson St, San Francisco, CA 94016" -213669,Apple Airpods Headphones,1,150,06/16/19 13:35,"98 Washington St, Dallas, TX 75001" -213670,Lightning Charging Cable,1,14.95,06/07/19 11:27,"12 Johnson St, New York City, NY 10001" -213671,AA Batteries (4-pack),1,3.84,06/13/19 11:16,"384 Cedar St, Boston, MA 02215" -213672,AAA Batteries (4-pack),3,2.99,06/13/19 16:48,"7 8th St, Los Angeles, CA 90001" -213673,AA Batteries (4-pack),1,3.84,06/01/19 18:15,"772 Meadow St, San Francisco, CA 94016" -213674,Apple Airpods Headphones,1,150,06/22/19 19:26,"903 6th St, Seattle, WA 98101" -213675,AA Batteries (4-pack),1,3.84,06/22/19 11:59,"207 1st St, Portland, OR 97035" -213676,Wired Headphones,1,11.99,06/29/19 15:08,"791 10th St, Los Angeles, CA 90001" -213677,USB-C Charging Cable,1,11.95,06/22/19 21:09,"701 Lake St, Seattle, WA 98101" -213678,AA Batteries (4-pack),1,3.84,06/05/19 10:42,"14 2nd St, Boston, MA 02215" -213679,USB-C Charging Cable,1,11.95,06/29/19 00:36,"141 6th St, Boston, MA 02215" -213680,Lightning Charging Cable,1,14.95,06/03/19 09:56,"441 Forest St, Los Angeles, CA 90001" -213681,iPhone,1,700,06/22/19 18:54,"451 Hill St, Boston, MA 02215" -213682,USB-C Charging Cable,1,11.95,06/14/19 17:31,"843 Dogwood St, Los Angeles, CA 90001" -213683,27in FHD Monitor,1,149.99,06/13/19 14:16,"702 Chestnut St, Atlanta, GA 30301" -213684,USB-C Charging Cable,1,11.95,06/27/19 10:53,"203 Lake St, San Francisco, CA 94016" -213685,Apple Airpods Headphones,1,150,06/28/19 12:26,"405 7th St, Los Angeles, CA 90001" -213686,AA Batteries (4-pack),2,3.84,06/19/19 14:45,"707 North St, Seattle, WA 98101" -213687,34in Ultrawide Monitor,1,379.99,06/15/19 21:00,"716 Sunset St, San Francisco, CA 94016" -213688,Lightning Charging Cable,1,14.95,06/01/19 11:24,"137 North St, Austin, TX 73301" -213689,LG Washing Machine,1,600.0,06/16/19 05:48,"621 Chestnut St, Seattle, WA 98101" -213690,AAA Batteries (4-pack),1,2.99,06/10/19 19:22,"375 Madison St, New York City, NY 10001" -213691,AA Batteries (4-pack),2,3.84,06/02/19 20:09,"313 4th St, Austin, TX 73301" -213692,Google Phone,1,600,06/15/19 00:57,"954 Maple St, San Francisco, CA 94016" -213692,USB-C Charging Cable,1,11.95,06/15/19 00:57,"954 Maple St, San Francisco, CA 94016" -213693,AAA Batteries (4-pack),4,2.99,06/06/19 15:02,"699 Church St, San Francisco, CA 94016" -213694,Wired Headphones,1,11.99,06/22/19 18:58,"394 Chestnut St, San Francisco, CA 94016" -213695,Apple Airpods Headphones,1,150,06/08/19 13:58,"829 Jackson St, Dallas, TX 75001" -213696,Wired Headphones,1,11.99,06/24/19 19:05,"399 6th St, Seattle, WA 98101" -213697,iPhone,1,700,06/04/19 00:40,"319 Park St, Portland, OR 97035" -213697,Lightning Charging Cable,1,14.95,06/04/19 00:40,"319 Park St, Portland, OR 97035" -213698,AA Batteries (4-pack),1,3.84,06/27/19 10:04,"642 Main St, Atlanta, GA 30301" -213699,Wired Headphones,1,11.99,07/01/19 00:31,"470 Spruce St, Boston, MA 02215" -213700,Apple Airpods Headphones,1,150,06/08/19 13:54,"61 2nd St, Los Angeles, CA 90001" -213701,Apple Airpods Headphones,1,150,06/12/19 11:14,"480 Jefferson St, Seattle, WA 98101" -213702,AAA Batteries (4-pack),2,2.99,06/04/19 11:56,"873 Wilson St, Atlanta, GA 30301" -213703,AA Batteries (4-pack),2,3.84,06/20/19 14:24,"250 Lakeview St, Dallas, TX 75001" -213704,Apple Airpods Headphones,1,150,06/28/19 20:48,"14 Pine St, Los Angeles, CA 90001" -213705,AAA Batteries (4-pack),1,2.99,06/02/19 18:11,"406 8th St, San Francisco, CA 94016" -213706,USB-C Charging Cable,3,11.95,06/15/19 00:05,"740 River St, Dallas, TX 75001" -213707,Wired Headphones,1,11.99,06/17/19 15:00,"114 Elm St, Boston, MA 02215" -213708,34in Ultrawide Monitor,1,379.99,06/17/19 13:59,"949 Hickory St, New York City, NY 10001" -213709,Macbook Pro Laptop,1,1700,06/23/19 17:47,"434 Washington St, San Francisco, CA 94016" -213710,Lightning Charging Cable,1,14.95,06/11/19 10:39,"582 1st St, New York City, NY 10001" -213711,Google Phone,1,600,06/15/19 15:22,"321 Lincoln St, Atlanta, GA 30301" -213712,USB-C Charging Cable,1,11.95,06/06/19 08:39,"60 Forest St, New York City, NY 10001" -213713,Bose SoundSport Headphones,1,99.99,06/16/19 18:19,"659 Lincoln St, San Francisco, CA 94016" -213713,AA Batteries (4-pack),1,3.84,06/16/19 18:19,"659 Lincoln St, San Francisco, CA 94016" -213714,ThinkPad Laptop,1,999.99,06/02/19 17:48,"733 Washington St, San Francisco, CA 94016" -213715,iPhone,1,700,06/07/19 01:29,"726 5th St, San Francisco, CA 94016" -213716,Apple Airpods Headphones,1,150,06/04/19 20:26,"905 Dogwood St, Atlanta, GA 30301" -213717,LG Dryer,1,600.0,06/24/19 19:52,"317 14th St, San Francisco, CA 94016" -213718,USB-C Charging Cable,1,11.95,06/21/19 01:06,"272 4th St, Los Angeles, CA 90001" -213719,Wired Headphones,1,11.99,06/13/19 22:37,"712 South St, Seattle, WA 98101" -213720,Google Phone,1,600,06/14/19 15:40,"299 Willow St, Los Angeles, CA 90001" -213720,ThinkPad Laptop,1,999.99,06/14/19 15:40,"299 Willow St, Los Angeles, CA 90001" -213721,Lightning Charging Cable,1,14.95,06/29/19 23:32,"203 Chestnut St, Boston, MA 02215" -213722,Apple Airpods Headphones,1,150,06/21/19 21:31,"221 6th St, San Francisco, CA 94016" -213723,AA Batteries (4-pack),1,3.84,06/11/19 08:50,"162 Wilson St, New York City, NY 10001" -213724,USB-C Charging Cable,1,11.95,06/20/19 05:55,"880 2nd St, Dallas, TX 75001" -213725,Google Phone,1,600,06/12/19 15:05,"219 Church St, Los Angeles, CA 90001" -213726,Bose SoundSport Headphones,1,99.99,06/16/19 14:13,"389 Chestnut St, Los Angeles, CA 90001" -213727,Google Phone,1,600,06/18/19 21:17,"822 8th St, Seattle, WA 98101" -213728,27in FHD Monitor,1,149.99,06/06/19 01:06,"824 Ridge St, Boston, MA 02215" -213729,Wired Headphones,1,11.99,06/10/19 19:17,"976 Ridge St, Seattle, WA 98101" -213729,Macbook Pro Laptop,1,1700,06/10/19 19:17,"976 Ridge St, Seattle, WA 98101" -213730,Macbook Pro Laptop,1,1700,06/15/19 17:54,"783 4th St, Austin, TX 73301" -213731,AAA Batteries (4-pack),1,2.99,06/24/19 20:19,"673 2nd St, Los Angeles, CA 90001" -213732,Apple Airpods Headphones,1,150,06/19/19 16:13,"423 Main St, Austin, TX 73301" -213733,Apple Airpods Headphones,1,150,06/24/19 06:48,"414 6th St, Dallas, TX 75001" -213734,AA Batteries (4-pack),1,3.84,06/26/19 12:06,"112 2nd St, Seattle, WA 98101" -213735,Bose SoundSport Headphones,1,99.99,06/20/19 15:52,"661 Ridge St, New York City, NY 10001" -213736,ThinkPad Laptop,1,999.99,06/21/19 13:39,"108 Pine St, Seattle, WA 98101" -213737,AA Batteries (4-pack),1,3.84,06/10/19 21:04,"85 1st St, Los Angeles, CA 90001" -213738,Vareebadd Phone,1,400,06/23/19 10:58,"368 Spruce St, Portland, ME 04101" -213738,Wired Headphones,2,11.99,06/23/19 10:58,"368 Spruce St, Portland, ME 04101" -213739,USB-C Charging Cable,1,11.95,06/15/19 20:36,"899 Willow St, San Francisco, CA 94016" -213740,27in 4K Gaming Monitor,1,389.99,06/17/19 12:55,"110 Chestnut St, Portland, OR 97035" -213741,Wired Headphones,1,11.99,06/27/19 23:12,"32 Washington St, San Francisco, CA 94016" -213742,34in Ultrawide Monitor,1,379.99,06/14/19 10:44,"78 Jefferson St, Dallas, TX 75001" -213743,AA Batteries (4-pack),1,3.84,06/05/19 08:04,"701 Maple St, Austin, TX 73301" -213744,USB-C Charging Cable,1,11.95,06/08/19 16:34,"757 Spruce St, San Francisco, CA 94016" -213745,Lightning Charging Cable,1,14.95,06/09/19 21:35,"225 12th St, San Francisco, CA 94016" -213746,27in 4K Gaming Monitor,1,389.99,06/12/19 11:09,"877 Church St, Austin, TX 73301" -213747,AA Batteries (4-pack),1,3.84,06/02/19 09:09,"40 Sunset St, Dallas, TX 75001" -213748,AA Batteries (4-pack),1,3.84,06/12/19 14:20,"55 Elm St, Dallas, TX 75001" -213749,USB-C Charging Cable,1,11.95,06/26/19 11:28,"207 Park St, Portland, OR 97035" -213750,AA Batteries (4-pack),2,3.84,06/19/19 20:25,"861 Washington St, San Francisco, CA 94016" -213751,Wired Headphones,1,11.99,06/07/19 22:58,"502 1st St, San Francisco, CA 94016" -213752,20in Monitor,1,109.99,06/01/19 13:38,"121 Chestnut St, Atlanta, GA 30301" -213753,AA Batteries (4-pack),1,3.84,06/25/19 15:33,"499 Sunset St, Los Angeles, CA 90001" -213754,Wired Headphones,2,11.99,06/30/19 10:55,"971 14th St, Boston, MA 02215" -213754,Apple Airpods Headphones,2,150,06/30/19 10:55,"971 14th St, Boston, MA 02215" -213755,AA Batteries (4-pack),1,3.84,06/24/19 18:30,"266 14th St, San Francisco, CA 94016" -213756,Wired Headphones,1,11.99,06/09/19 06:58,"208 River St, San Francisco, CA 94016" -213757,Macbook Pro Laptop,1,1700,06/12/19 12:00,"992 14th St, Dallas, TX 75001" -213758,ThinkPad Laptop,1,999.99,06/27/19 15:58,"698 Park St, San Francisco, CA 94016" -213759,LG Washing Machine,1,600.0,06/13/19 15:03,"259 5th St, Boston, MA 02215" -213760,AA Batteries (4-pack),1,3.84,06/03/19 10:37,"916 7th St, San Francisco, CA 94016" -213761,AA Batteries (4-pack),2,3.84,06/03/19 11:19,"642 12th St, San Francisco, CA 94016" -213762,27in FHD Monitor,1,149.99,06/22/19 11:22,"920 5th St, San Francisco, CA 94016" -213763,Apple Airpods Headphones,1,150,06/14/19 17:25,"137 2nd St, Boston, MA 02215" -213764,AA Batteries (4-pack),1,3.84,06/17/19 13:23,"68 Cedar St, Dallas, TX 75001" -213765,Lightning Charging Cable,1,14.95,06/09/19 21:18,"706 North St, San Francisco, CA 94016" -213766,Flatscreen TV,1,300,06/19/19 15:25,"276 Spruce St, Seattle, WA 98101" -213767,34in Ultrawide Monitor,1,379.99,06/25/19 11:52,"351 Lake St, New York City, NY 10001" -213768,34in Ultrawide Monitor,1,379.99,06/23/19 15:25,"858 Highland St, Atlanta, GA 30301" -213769,Lightning Charging Cable,1,14.95,06/22/19 23:44,"606 Dogwood St, San Francisco, CA 94016" -213770,34in Ultrawide Monitor,1,379.99,06/28/19 19:06,"671 13th St, San Francisco, CA 94016" -213771,27in FHD Monitor,1,149.99,06/01/19 23:41,"242 5th St, Los Angeles, CA 90001" -213772,Apple Airpods Headphones,1,150,06/23/19 12:24,"132 Madison St, New York City, NY 10001" -213773,Bose SoundSport Headphones,1,99.99,06/23/19 00:01,"145 Madison St, San Francisco, CA 94016" -213774,Bose SoundSport Headphones,1,99.99,06/30/19 12:12,"744 River St, Atlanta, GA 30301" -213775,34in Ultrawide Monitor,1,379.99,06/09/19 20:13,"761 8th St, Los Angeles, CA 90001" -213776,USB-C Charging Cable,1,11.95,06/19/19 17:33,"556 Dogwood St, San Francisco, CA 94016" -213777,AA Batteries (4-pack),1,3.84,06/18/19 12:33,"156 Church St, Atlanta, GA 30301" -213778,Wired Headphones,1,11.99,06/08/19 13:27,"901 1st St, Boston, MA 02215" -213779,AAA Batteries (4-pack),1,2.99,06/01/19 10:43,"78 Cedar St, Dallas, TX 75001" -213780,Wired Headphones,1,11.99,06/18/19 14:10,"211 8th St, Los Angeles, CA 90001" -213781,USB-C Charging Cable,1,11.95,06/09/19 19:19,"21 River St, Los Angeles, CA 90001" -213782,27in FHD Monitor,1,149.99,06/21/19 11:36,"375 Ridge St, San Francisco, CA 94016" -213783,iPhone,1,700,06/02/19 17:22,"732 1st St, Los Angeles, CA 90001" -213784,Lightning Charging Cable,1,14.95,06/11/19 11:17,"56 14th St, Boston, MA 02215" -213785,AAA Batteries (4-pack),3,2.99,06/19/19 10:30,"644 Washington St, New York City, NY 10001" -213786,20in Monitor,1,109.99,06/07/19 11:03,"498 Dogwood St, Boston, MA 02215" -213787,AA Batteries (4-pack),2,3.84,06/26/19 12:34,"91 5th St, Boston, MA 02215" -213788,AAA Batteries (4-pack),2,2.99,06/08/19 16:03,"812 South St, Los Angeles, CA 90001" -213789,Apple Airpods Headphones,1,150,06/01/19 22:26,"348 Lincoln St, Dallas, TX 75001" -213790,Wired Headphones,1,11.99,06/10/19 02:17,"772 Lake St, Seattle, WA 98101" -213791,Wired Headphones,1,11.99,06/10/19 20:05,"805 Madison St, Los Angeles, CA 90001" -213792,Wired Headphones,1,11.99,06/21/19 09:26,"377 Cedar St, San Francisco, CA 94016" -213793,34in Ultrawide Monitor,1,379.99,06/24/19 09:22,"173 Cherry St, San Francisco, CA 94016" -213794,USB-C Charging Cable,1,11.95,06/11/19 11:15,"194 Johnson St, San Francisco, CA 94016" -213795,AA Batteries (4-pack),1,3.84,06/17/19 13:55,"697 Church St, San Francisco, CA 94016" -213796,USB-C Charging Cable,1,11.95,06/16/19 17:27,"418 Hill St, Austin, TX 73301" -213797,Macbook Pro Laptop,1,1700,06/14/19 09:59,"323 Lake St, Atlanta, GA 30301" -213797,Lightning Charging Cable,1,14.95,06/14/19 09:59,"323 Lake St, Atlanta, GA 30301" -213798,Macbook Pro Laptop,1,1700,06/16/19 11:48,"975 10th St, San Francisco, CA 94016" -213799,27in 4K Gaming Monitor,1,389.99,06/02/19 15:09,"243 4th St, Los Angeles, CA 90001" -213800,Apple Airpods Headphones,1,150,06/10/19 17:28,"422 Madison St, Boston, MA 02215" -213801,AA Batteries (4-pack),3,3.84,06/07/19 10:57,"890 1st St, Boston, MA 02215" -213802,Apple Airpods Headphones,1,150,06/29/19 21:36,"926 Lakeview St, New York City, NY 10001" -213802,Lightning Charging Cable,1,14.95,06/29/19 21:36,"926 Lakeview St, New York City, NY 10001" -213803,27in FHD Monitor,1,149.99,06/30/19 11:48,"569 6th St, Seattle, WA 98101" -213804,Lightning Charging Cable,1,14.95,06/27/19 22:11,"152 10th St, San Francisco, CA 94016" -213805,34in Ultrawide Monitor,1,379.99,06/23/19 16:52,"737 Spruce St, San Francisco, CA 94016" -213805,LG Washing Machine,1,600.0,06/23/19 16:52,"737 Spruce St, San Francisco, CA 94016" -213806,AAA Batteries (4-pack),3,2.99,06/27/19 15:35,"571 River St, Los Angeles, CA 90001" -213807,Wired Headphones,1,11.99,06/04/19 10:50,"656 Park St, New York City, NY 10001" -213808,Wired Headphones,1,11.99,06/29/19 02:02,"582 10th St, San Francisco, CA 94016" -213809,Wired Headphones,1,11.99,06/14/19 18:41,"769 Hill St, Boston, MA 02215" -213810,ThinkPad Laptop,1,999.99,06/01/19 23:10,"37 Adams St, Atlanta, GA 30301" -213811,34in Ultrawide Monitor,1,379.99,06/21/19 19:29,"481 Lincoln St, New York City, NY 10001" -213812,Apple Airpods Headphones,1,150,06/11/19 20:21,"197 Sunset St, Los Angeles, CA 90001" -213813,Wired Headphones,1,11.99,06/08/19 20:26,"700 Meadow St, Dallas, TX 75001" -213814,USB-C Charging Cable,1,11.95,06/20/19 16:40,"278 Sunset St, New York City, NY 10001" -213815,Lightning Charging Cable,1,14.95,06/10/19 11:13,"821 Hill St, San Francisco, CA 94016" -213816,Google Phone,1,600,06/19/19 16:44,"402 10th St, San Francisco, CA 94016" -213817,USB-C Charging Cable,1,11.95,06/03/19 19:13,"989 Cherry St, San Francisco, CA 94016" -213818,Lightning Charging Cable,1,14.95,06/14/19 20:19,"231 Lincoln St, San Francisco, CA 94016" -213819,27in 4K Gaming Monitor,1,389.99,06/05/19 10:46,"47 Jackson St, Los Angeles, CA 90001" -213820,Bose SoundSport Headphones,1,99.99,06/20/19 09:05,"137 River St, Atlanta, GA 30301" -213821,AA Batteries (4-pack),3,3.84,06/09/19 07:59,"175 Ridge St, Los Angeles, CA 90001" -213822,Wired Headphones,1,11.99,06/25/19 09:52,"533 12th St, San Francisco, CA 94016" -213823,USB-C Charging Cable,1,11.95,06/19/19 18:53,"355 Sunset St, Seattle, WA 98101" -213824,AA Batteries (4-pack),1,3.84,06/03/19 21:38,"426 Willow St, San Francisco, CA 94016" -213825,Wired Headphones,1,11.99,06/29/19 20:21,"930 8th St, San Francisco, CA 94016" -213826,USB-C Charging Cable,1,11.95,06/09/19 14:20,"54 Dogwood St, Boston, MA 02215" -213827,34in Ultrawide Monitor,1,379.99,06/09/19 04:17,"84 10th St, Atlanta, GA 30301" -213828,Lightning Charging Cable,1,14.95,06/18/19 15:24,"664 Jefferson St, Seattle, WA 98101" -213829,USB-C Charging Cable,1,11.95,06/11/19 11:38,"909 Chestnut St, Austin, TX 73301" -213829,AAA Batteries (4-pack),1,2.99,06/11/19 11:38,"909 Chestnut St, Austin, TX 73301" -213830,USB-C Charging Cable,2,11.95,06/12/19 13:28,"713 Church St, San Francisco, CA 94016" -213831,Wired Headphones,1,11.99,06/27/19 14:13,"164 Main St, Boston, MA 02215" -213832,AAA Batteries (4-pack),2,2.99,06/09/19 12:23,"840 Cherry St, Dallas, TX 75001" -213833,AA Batteries (4-pack),1,3.84,06/01/19 17:12,"379 Spruce St, Los Angeles, CA 90001" -213834,Wired Headphones,1,11.99,06/20/19 21:22,"158 Lakeview St, Seattle, WA 98101" -213835,20in Monitor,1,109.99,06/30/19 15:59,"242 Spruce St, Portland, OR 97035" -213836,AA Batteries (4-pack),1,3.84,06/20/19 10:41,"936 Hill St, Los Angeles, CA 90001" -213837,Lightning Charging Cable,1,14.95,06/16/19 05:43,"735 Madison St, Atlanta, GA 30301" -213838,Macbook Pro Laptop,1,1700,06/29/19 01:21,"656 8th St, Boston, MA 02215" -213839,Lightning Charging Cable,1,14.95,06/29/19 12:18,"80 Madison St, Los Angeles, CA 90001" -213840,ThinkPad Laptop,1,999.99,06/11/19 08:47,"444 4th St, New York City, NY 10001" -213841,Apple Airpods Headphones,1,150,06/30/19 10:54,"286 6th St, Atlanta, GA 30301" -213842,USB-C Charging Cable,2,11.95,06/24/19 19:11,"529 Spruce St, San Francisco, CA 94016" -213843,LG Dryer,1,600.0,06/14/19 23:27,"195 Maple St, Los Angeles, CA 90001" -213844,34in Ultrawide Monitor,1,379.99,06/26/19 14:28,"598 Hickory St, San Francisco, CA 94016" -213845,iPhone,1,700,06/12/19 20:17,"875 Lake St, New York City, NY 10001" -213845,Lightning Charging Cable,1,14.95,06/12/19 20:17,"875 Lake St, New York City, NY 10001" -213846,AAA Batteries (4-pack),1,2.99,06/20/19 13:06,"187 10th St, Dallas, TX 75001" -213847,Lightning Charging Cable,1,14.95,06/16/19 11:59,"153 North St, New York City, NY 10001" -213848,34in Ultrawide Monitor,1,379.99,06/28/19 12:33,"456 Cherry St, Dallas, TX 75001" -213849,AAA Batteries (4-pack),1,2.99,06/25/19 17:33,"642 Washington St, Dallas, TX 75001" -213850,Google Phone,1,600,06/25/19 12:59,"214 Madison St, Atlanta, GA 30301" -213851,AA Batteries (4-pack),1,3.84,06/30/19 08:42,"963 4th St, San Francisco, CA 94016" -213852,Apple Airpods Headphones,1,150,06/20/19 21:45,"230 Johnson St, San Francisco, CA 94016" -213853,AAA Batteries (4-pack),1,2.99,06/07/19 20:48,"381 6th St, San Francisco, CA 94016" -213854,AAA Batteries (4-pack),1,2.99,06/28/19 10:47,"694 Dogwood St, San Francisco, CA 94016" -213854,USB-C Charging Cable,1,11.95,06/28/19 10:47,"694 Dogwood St, San Francisco, CA 94016" -213855,iPhone,1,700,06/17/19 10:28,"346 Willow St, Seattle, WA 98101" -213856,USB-C Charging Cable,2,11.95,06/15/19 06:40,"343 Pine St, New York City, NY 10001" -213857,AA Batteries (4-pack),1,3.84,06/02/19 00:03,"630 Ridge St, San Francisco, CA 94016" -213858,AA Batteries (4-pack),2,3.84,06/20/19 12:02,"266 Madison St, New York City, NY 10001" -213859,Lightning Charging Cable,1,14.95,06/04/19 00:23,"537 13th St, San Francisco, CA 94016" -213860,AAA Batteries (4-pack),1,2.99,06/24/19 19:19,"292 Johnson St, Los Angeles, CA 90001" -213861,34in Ultrawide Monitor,1,379.99,06/15/19 12:22,"705 Lake St, Seattle, WA 98101" -213862,USB-C Charging Cable,1,11.95,06/24/19 16:04,"176 Wilson St, Los Angeles, CA 90001" -213863,USB-C Charging Cable,1,11.95,06/01/19 12:34,"184 7th St, Los Angeles, CA 90001" -213864,Lightning Charging Cable,1,14.95,06/06/19 11:43,"285 8th St, Atlanta, GA 30301" -213865,AA Batteries (4-pack),2,3.84,06/16/19 14:12,"821 6th St, Atlanta, GA 30301" -213866,34in Ultrawide Monitor,1,379.99,06/20/19 12:31,"312 Willow St, Los Angeles, CA 90001" -213867,AA Batteries (4-pack),1,3.84,06/22/19 16:17,"877 11th St, San Francisco, CA 94016" -213868,AA Batteries (4-pack),1,3.84,06/14/19 11:37,"223 Main St, San Francisco, CA 94016" -213869,20in Monitor,1,109.99,06/19/19 13:37,"536 Spruce St, New York City, NY 10001" -213870,USB-C Charging Cable,1,11.95,06/22/19 21:41,"11 12th St, Seattle, WA 98101" -213871,34in Ultrawide Monitor,1,379.99,06/05/19 19:39,"457 Spruce St, Dallas, TX 75001" -213872,AA Batteries (4-pack),2,3.84,06/19/19 11:12,"879 River St, Austin, TX 73301" -213873,AAA Batteries (4-pack),3,2.99,06/27/19 21:31,"508 4th St, San Francisco, CA 94016" -213874,27in FHD Monitor,1,149.99,06/20/19 21:10,"167 Spruce St, Boston, MA 02215" -213875,Bose SoundSport Headphones,1,99.99,06/27/19 14:14,"114 Cherry St, San Francisco, CA 94016" -213876,AA Batteries (4-pack),2,3.84,06/07/19 21:15,"335 Lakeview St, Austin, TX 73301" -213877,Bose SoundSport Headphones,1,99.99,06/06/19 10:19,"280 Willow St, New York City, NY 10001" -213878,AA Batteries (4-pack),2,3.84,06/24/19 20:53,"469 Lakeview St, Portland, OR 97035" -213879,Flatscreen TV,1,300,06/09/19 13:42,"722 Washington St, Austin, TX 73301" -213880,USB-C Charging Cable,1,11.95,06/19/19 11:23,"493 Pine St, Dallas, TX 75001" -213881,Apple Airpods Headphones,1,150,06/02/19 18:19,"650 Lincoln St, San Francisco, CA 94016" -213882,Lightning Charging Cable,1,14.95,06/30/19 22:07,"293 Hill St, San Francisco, CA 94016" -213883,Lightning Charging Cable,1,14.95,06/22/19 22:26,"394 Elm St, Dallas, TX 75001" -213884,AA Batteries (4-pack),1,3.84,06/29/19 09:45,"645 Spruce St, Dallas, TX 75001" -213885,AAA Batteries (4-pack),1,2.99,06/14/19 19:34,"926 Wilson St, Los Angeles, CA 90001" -213886,AAA Batteries (4-pack),1,2.99,06/21/19 15:10,"753 Johnson St, San Francisco, CA 94016" -213887,20in Monitor,1,109.99,06/12/19 14:51,"718 12th St, Atlanta, GA 30301" -213888,27in 4K Gaming Monitor,1,389.99,06/20/19 17:38,"407 11th St, Dallas, TX 75001" -213889,AA Batteries (4-pack),2,3.84,06/24/19 05:25,"788 Ridge St, Boston, MA 02215" -213890,27in FHD Monitor,1,149.99,06/13/19 13:53,"163 Highland St, Atlanta, GA 30301" -213891,Lightning Charging Cable,1,14.95,06/05/19 14:44,"199 8th St, San Francisco, CA 94016" -213892,27in 4K Gaming Monitor,1,389.99,06/19/19 22:37,"565 Elm St, Seattle, WA 98101" -213893,Macbook Pro Laptop,1,1700,06/12/19 05:30,"662 Dogwood St, Los Angeles, CA 90001" -213894,AA Batteries (4-pack),1,3.84,06/26/19 01:09,"747 Adams St, San Francisco, CA 94016" -213895,Lightning Charging Cable,1,14.95,06/24/19 20:36,"267 Lincoln St, Austin, TX 73301" -213896,AAA Batteries (4-pack),1,2.99,06/10/19 05:54,"746 West St, San Francisco, CA 94016" -213897,USB-C Charging Cable,2,11.95,06/03/19 03:40,"1 1st St, Dallas, TX 75001" -213898,Wired Headphones,1,11.99,06/26/19 10:38,"292 Ridge St, Boston, MA 02215" -213899,Wired Headphones,1,11.99,06/21/19 10:47,"539 6th St, Boston, MA 02215" -213900,Apple Airpods Headphones,1,150,06/27/19 07:49,"851 4th St, Boston, MA 02215" -213901,Wired Headphones,1,11.99,06/29/19 18:55,"846 Walnut St, Los Angeles, CA 90001" -213902,Lightning Charging Cable,1,14.95,06/13/19 21:22,"12 Forest St, Boston, MA 02215" -213903,Lightning Charging Cable,1,14.95,06/13/19 08:54,"918 River St, Boston, MA 02215" -213904,iPhone,1,700,06/20/19 10:15,"267 Dogwood St, Portland, OR 97035" -213905,USB-C Charging Cable,1,11.95,06/24/19 08:42,"650 7th St, Atlanta, GA 30301" -213906,AA Batteries (4-pack),1,3.84,06/28/19 11:52,"368 Church St, Boston, MA 02215" -213907,Apple Airpods Headphones,1,150,06/28/19 09:26,"684 10th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -213908,AA Batteries (4-pack),3,3.84,06/17/19 16:55,"77 6th St, San Francisco, CA 94016" -213909,Apple Airpods Headphones,1,150,06/11/19 10:18,"144 Hickory St, Atlanta, GA 30301" -213910,27in 4K Gaming Monitor,1,389.99,06/10/19 20:09,"723 Willow St, New York City, NY 10001" -213911,Lightning Charging Cable,1,14.95,06/25/19 10:22,"966 Ridge St, Los Angeles, CA 90001" -213912,AA Batteries (4-pack),1,3.84,06/22/19 13:02,"342 Highland St, Boston, MA 02215" -213913,Lightning Charging Cable,1,14.95,06/17/19 14:45,"261 River St, Boston, MA 02215" -213914,Wired Headphones,1,11.99,06/29/19 21:29,"37 Adams St, Seattle, WA 98101" -213915,USB-C Charging Cable,1,11.95,06/08/19 15:17,"639 Cedar St, Los Angeles, CA 90001" -213916,LG Washing Machine,1,600.0,06/25/19 16:00,"961 Ridge St, Portland, ME 04101" -213917,Wired Headphones,1,11.99,06/12/19 13:44,"227 Lake St, Los Angeles, CA 90001" -213918,AA Batteries (4-pack),1,3.84,06/29/19 18:00,"598 7th St, New York City, NY 10001" -213919,Bose SoundSport Headphones,1,99.99,06/05/19 16:16,"108 South St, San Francisco, CA 94016" -213920,USB-C Charging Cable,2,11.95,06/19/19 11:15,"565 Lake St, Atlanta, GA 30301" -213921,AAA Batteries (4-pack),1,2.99,06/28/19 12:26,"373 Ridge St, Los Angeles, CA 90001" -213922,Lightning Charging Cable,1,14.95,06/04/19 08:54,"607 14th St, San Francisco, CA 94016" -213923,Apple Airpods Headphones,1,150,06/28/19 12:49,"815 5th St, Boston, MA 02215" -213924,AAA Batteries (4-pack),2,2.99,06/30/19 18:22,"712 Highland St, Seattle, WA 98101" -213925,Wired Headphones,1,11.99,06/12/19 19:35,"922 Adams St, Seattle, WA 98101" -213926,27in 4K Gaming Monitor,1,389.99,06/25/19 14:27,"954 11th St, San Francisco, CA 94016" -213927,27in 4K Gaming Monitor,1,389.99,06/10/19 20:49,"302 8th St, Los Angeles, CA 90001" -213928,AA Batteries (4-pack),2,3.84,06/21/19 18:04,"570 Lakeview St, Los Angeles, CA 90001" -213929,Wired Headphones,1,11.99,06/08/19 12:36,"70 Elm St, Los Angeles, CA 90001" -213930,Vareebadd Phone,1,400,06/10/19 19:13,"276 Lake St, San Francisco, CA 94016" -213931,20in Monitor,1,109.99,06/08/19 18:14,"244 Jefferson St, Portland, OR 97035" -213932,Wired Headphones,1,11.99,06/21/19 21:46,"726 5th St, San Francisco, CA 94016" -213933,Apple Airpods Headphones,1,150,06/24/19 18:10,"479 2nd St, Boston, MA 02215" -213934,Lightning Charging Cable,1,14.95,06/30/19 12:06,"16 Willow St, New York City, NY 10001" -213935,Lightning Charging Cable,1,14.95,06/02/19 05:23,"809 Walnut St, Dallas, TX 75001" -213936,AA Batteries (4-pack),1,3.84,06/14/19 12:55,"385 1st St, Atlanta, GA 30301" -213937,Bose SoundSport Headphones,1,99.99,06/30/19 19:17,"630 Walnut St, Boston, MA 02215" -213938,Macbook Pro Laptop,1,1700,06/14/19 09:00,"480 Hill St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -213939,Lightning Charging Cable,1,14.95,06/23/19 13:06,"460 Johnson St, San Francisco, CA 94016" -213940,27in 4K Gaming Monitor,1,389.99,06/20/19 23:13,"148 Walnut St, New York City, NY 10001" -213941,AAA Batteries (4-pack),1,2.99,06/06/19 21:05,"470 12th St, Atlanta, GA 30301" -213942,AAA Batteries (4-pack),4,2.99,06/15/19 19:11,"560 Adams St, San Francisco, CA 94016" -213943,USB-C Charging Cable,1,11.95,06/18/19 11:42,"475 Church St, San Francisco, CA 94016" -213944,iPhone,1,700,06/28/19 03:15,"537 6th St, Seattle, WA 98101" -213944,Apple Airpods Headphones,1,150,06/28/19 03:15,"537 6th St, Seattle, WA 98101" -213945,AA Batteries (4-pack),1,3.84,06/26/19 15:29,"454 6th St, Dallas, TX 75001" -213946,Flatscreen TV,1,300,06/25/19 12:57,"100 Center St, New York City, NY 10001" -213947,USB-C Charging Cable,1,11.95,06/11/19 09:57,"828 Forest St, New York City, NY 10001" -213948,Lightning Charging Cable,1,14.95,06/10/19 18:01,"90 14th St, Boston, MA 02215" -213949,27in 4K Gaming Monitor,1,389.99,06/21/19 08:55,"305 Sunset St, New York City, NY 10001" -213950,27in FHD Monitor,1,149.99,06/04/19 22:07,"582 Wilson St, New York City, NY 10001" -213951,USB-C Charging Cable,1,11.95,06/01/19 14:15,"449 Cherry St, Los Angeles, CA 90001" -213952,Lightning Charging Cable,1,14.95,06/06/19 14:21,"279 Sunset St, New York City, NY 10001" -213953,AAA Batteries (4-pack),1,2.99,06/03/19 11:10,"577 Center St, Los Angeles, CA 90001" -213954,Lightning Charging Cable,1,14.95,06/04/19 16:27,"202 Forest St, San Francisco, CA 94016" -213955,34in Ultrawide Monitor,1,379.99,06/12/19 19:00,"959 Lakeview St, San Francisco, CA 94016" -213956,USB-C Charging Cable,1,11.95,06/12/19 19:58,"693 Dogwood St, Seattle, WA 98101" -213957,Apple Airpods Headphones,1,150,06/15/19 18:14,"585 Ridge St, Los Angeles, CA 90001" -213958,Macbook Pro Laptop,1,1700,06/24/19 20:22,"876 Pine St, San Francisco, CA 94016" -213959,USB-C Charging Cable,1,11.95,06/18/19 16:22,"714 6th St, New York City, NY 10001" -213960,AAA Batteries (4-pack),5,2.99,06/22/19 09:53,"766 Cedar St, Boston, MA 02215" -213961,Bose SoundSport Headphones,1,99.99,06/16/19 09:43,"544 Spruce St, Atlanta, GA 30301" -213962,Google Phone,1,600,06/26/19 11:33,"690 14th St, Atlanta, GA 30301" -213963,Apple Airpods Headphones,1,150,06/11/19 02:51,"497 8th St, Los Angeles, CA 90001" -213964,Lightning Charging Cable,1,14.95,06/01/19 14:17,"245 North St, Boston, MA 02215" -213965,USB-C Charging Cable,1,11.95,06/19/19 10:10,"345 10th St, San Francisco, CA 94016" -213966,iPhone,1,700,06/11/19 00:38,"742 10th St, Austin, TX 73301" -213966,Lightning Charging Cable,1,14.95,06/11/19 00:38,"742 10th St, Austin, TX 73301" -213967,Bose SoundSport Headphones,1,99.99,06/09/19 12:36,"28 5th St, New York City, NY 10001" -213968,Wired Headphones,2,11.99,06/27/19 00:52,"865 South St, Atlanta, GA 30301" -213969,Wired Headphones,1,11.99,06/27/19 17:25,"469 1st St, San Francisco, CA 94016" -213970,Lightning Charging Cable,1,14.95,06/02/19 21:22,"707 Ridge St, Los Angeles, CA 90001" -213971,Lightning Charging Cable,1,14.95,06/08/19 10:07,"995 Main St, Boston, MA 02215" -213972,Apple Airpods Headphones,1,150,06/10/19 17:46,"689 Johnson St, San Francisco, CA 94016" -213973,Macbook Pro Laptop,1,1700,06/13/19 22:30,"813 Johnson St, Atlanta, GA 30301" -213974,27in 4K Gaming Monitor,1,389.99,06/25/19 15:48,"967 Sunset St, Los Angeles, CA 90001" -213975,Bose SoundSport Headphones,1,99.99,06/09/19 08:10,"908 Jackson St, Austin, TX 73301" -213976,AAA Batteries (4-pack),1,2.99,06/04/19 20:05,"809 Elm St, Dallas, TX 75001" -213977,Wired Headphones,1,11.99,06/24/19 15:57,"630 Church St, San Francisco, CA 94016" -213978,LG Washing Machine,1,600.0,06/26/19 09:50,"986 7th St, Los Angeles, CA 90001" -213979,34in Ultrawide Monitor,1,379.99,06/27/19 20:32,"214 Hill St, Los Angeles, CA 90001" -213980,Bose SoundSport Headphones,1,99.99,06/30/19 10:44,"258 11th St, San Francisco, CA 94016" -213981,AA Batteries (4-pack),1,3.84,06/04/19 02:09,"323 Jackson St, Los Angeles, CA 90001" -213982,Apple Airpods Headphones,1,150,06/21/19 13:42,"417 Washington St, Atlanta, GA 30301" -213983,Apple Airpods Headphones,1,150,06/27/19 16:00,"105 12th St, Los Angeles, CA 90001" -213984,Flatscreen TV,1,300,06/21/19 14:11,"701 Willow St, San Francisco, CA 94016" -213985,Lightning Charging Cable,1,14.95,06/12/19 18:49,"152 Adams St, Austin, TX 73301" -213986,27in FHD Monitor,1,149.99,06/24/19 20:36,"544 Hickory St, Austin, TX 73301" -213987,Wired Headphones,1,11.99,06/03/19 11:59,"16 Wilson St, San Francisco, CA 94016" -213988,AAA Batteries (4-pack),1,2.99,06/28/19 18:35,"36 River St, San Francisco, CA 94016" -213989,USB-C Charging Cable,1,11.95,06/26/19 13:28,"137 Sunset St, San Francisco, CA 94016" -213990,AAA Batteries (4-pack),1,2.99,06/04/19 10:09,"922 Dogwood St, Boston, MA 02215" -213991,20in Monitor,1,109.99,06/15/19 06:17,"221 Sunset St, Los Angeles, CA 90001" -213992,Google Phone,1,600,06/29/19 21:46,"920 8th St, San Francisco, CA 94016" -213992,USB-C Charging Cable,1,11.95,06/29/19 21:46,"920 8th St, San Francisco, CA 94016" -213993,USB-C Charging Cable,1,11.95,06/12/19 18:03,"584 Washington St, Boston, MA 02215" -213994,Macbook Pro Laptop,1,1700,06/27/19 11:43,"291 Church St, Dallas, TX 75001" -213995,Flatscreen TV,1,300,06/21/19 15:39,"858 12th St, Dallas, TX 75001" -213996,Wired Headphones,1,11.99,06/29/19 14:32,"119 Park St, Seattle, WA 98101" -213997,Lightning Charging Cable,1,14.95,06/08/19 19:11,"790 Cedar St, Seattle, WA 98101" -213998,Vareebadd Phone,1,400,06/03/19 11:14,"950 River St, Boston, MA 02215" -213999,Bose SoundSport Headphones,1,99.99,06/07/19 13:16,"65 Chestnut St, Austin, TX 73301" -214000,Wired Headphones,1,11.99,06/19/19 13:09,"393 Forest St, Seattle, WA 98101" -214001,Bose SoundSport Headphones,1,99.99,06/15/19 15:31,"645 Hill St, Portland, ME 04101" -214002,AAA Batteries (4-pack),1,2.99,06/23/19 11:49,"131 Maple St, Boston, MA 02215" -214003,USB-C Charging Cable,1,11.95,06/06/19 17:10,"12 Lakeview St, Dallas, TX 75001" -214004,Bose SoundSport Headphones,1,99.99,06/23/19 14:55,"707 10th St, New York City, NY 10001" -214005,Lightning Charging Cable,2,14.95,06/22/19 18:21,"458 10th St, Boston, MA 02215" -214006,AA Batteries (4-pack),1,3.84,06/25/19 17:20,"17 Johnson St, New York City, NY 10001" -214007,AAA Batteries (4-pack),1,2.99,06/20/19 15:55,"129 4th St, Dallas, TX 75001" -214008,USB-C Charging Cable,1,11.95,06/20/19 08:23,"5 Dogwood St, Austin, TX 73301" -214009,USB-C Charging Cable,1,11.95,06/30/19 22:57,"442 Washington St, Boston, MA 02215" -214010,iPhone,1,700,06/15/19 11:26,"458 Lincoln St, San Francisco, CA 94016" -214010,Lightning Charging Cable,1,14.95,06/15/19 11:26,"458 Lincoln St, San Francisco, CA 94016" -214010,Wired Headphones,1,11.99,06/15/19 11:26,"458 Lincoln St, San Francisco, CA 94016" -214011,USB-C Charging Cable,1,11.95,06/27/19 13:18,"525 7th St, Portland, OR 97035" -214012,Lightning Charging Cable,1,14.95,06/16/19 11:27,"543 Church St, San Francisco, CA 94016" -214013,USB-C Charging Cable,1,11.95,06/13/19 16:46,"990 Center St, Austin, TX 73301" -214014,AA Batteries (4-pack),4,3.84,06/17/19 10:09,"845 Johnson St, Los Angeles, CA 90001" -214015,AAA Batteries (4-pack),1,2.99,06/18/19 00:51,"177 Jefferson St, Atlanta, GA 30301" -214016,20in Monitor,1,109.99,06/17/19 13:09,"997 13th St, Dallas, TX 75001" -214017,Apple Airpods Headphones,1,150,06/11/19 10:14,"906 Jefferson St, Boston, MA 02215" -214018,AA Batteries (4-pack),1,3.84,06/10/19 04:20,"351 Lakeview St, Portland, OR 97035" -214019,AAA Batteries (4-pack),1,2.99,06/14/19 16:42,"854 7th St, Boston, MA 02215" -214020,Wired Headphones,1,11.99,06/06/19 14:31,"861 Willow St, San Francisco, CA 94016" -214021,Wired Headphones,1,11.99,06/07/19 17:08,"916 Ridge St, San Francisco, CA 94016" -214022,AAA Batteries (4-pack),1,2.99,06/06/19 17:07,"702 Wilson St, San Francisco, CA 94016" -214022,USB-C Charging Cable,1,11.95,06/06/19 17:07,"702 Wilson St, San Francisco, CA 94016" -214023,Apple Airpods Headphones,1,150,06/14/19 21:41,"88 Cherry St, New York City, NY 10001" -214024,AA Batteries (4-pack),1,3.84,06/13/19 20:21,"112 Lakeview St, Boston, MA 02215" -214025,USB-C Charging Cable,1,11.95,06/28/19 14:26,"684 12th St, San Francisco, CA 94016" -214026,AAA Batteries (4-pack),1,2.99,06/07/19 10:20,"572 Cherry St, Dallas, TX 75001" -214027,AA Batteries (4-pack),1,3.84,06/09/19 13:12,"269 9th St, Atlanta, GA 30301" -214028,ThinkPad Laptop,1,999.99,06/11/19 04:44,"399 Meadow St, New York City, NY 10001" -214029,Google Phone,1,600,06/23/19 11:13,"843 Willow St, Atlanta, GA 30301" -214029,Bose SoundSport Headphones,1,99.99,06/23/19 11:13,"843 Willow St, Atlanta, GA 30301" -214030,AAA Batteries (4-pack),4,2.99,06/02/19 15:57,"395 Pine St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -214031,Wired Headphones,1,11.99,06/10/19 08:50,"807 11th St, Austin, TX 73301" -214032,iPhone,1,700,06/20/19 18:34,"92 South St, Atlanta, GA 30301" -214033,Wired Headphones,1,11.99,06/21/19 06:01,"215 Wilson St, Seattle, WA 98101" -214034,AAA Batteries (4-pack),4,2.99,06/02/19 13:15,"533 1st St, San Francisco, CA 94016" -214035,AA Batteries (4-pack),1,3.84,06/01/19 10:49,"389 Main St, San Francisco, CA 94016" -214036,ThinkPad Laptop,1,999.99,06/07/19 11:42,"260 Chestnut St, Portland, ME 04101" -214037,Apple Airpods Headphones,1,150,06/13/19 23:52,"825 Dogwood St, Austin, TX 73301" -214038,USB-C Charging Cable,1,11.95,06/14/19 23:01,"760 Lincoln St, Dallas, TX 75001" -214039,AAA Batteries (4-pack),1,2.99,06/16/19 08:14,"960 2nd St, San Francisco, CA 94016" -214040,ThinkPad Laptop,1,999.99,06/14/19 23:17,"539 Adams St, Boston, MA 02215" -214041,AAA Batteries (4-pack),1,2.99,06/28/19 17:29,"671 Willow St, Austin, TX 73301" -214042,Bose SoundSport Headphones,1,99.99,06/19/19 19:03,"299 South St, Portland, OR 97035" -214043,iPhone,1,700,06/10/19 21:48,"753 Highland St, New York City, NY 10001" -214044,Lightning Charging Cable,1,14.95,06/25/19 20:05,"226 6th St, New York City, NY 10001" -214045,USB-C Charging Cable,1,11.95,06/19/19 08:11,"493 6th St, Seattle, WA 98101" -214046,USB-C Charging Cable,1,11.95,06/16/19 13:40,"624 Jefferson St, Boston, MA 02215" -214047,Lightning Charging Cable,1,14.95,06/10/19 10:02,"699 Chestnut St, San Francisco, CA 94016" -214048,Apple Airpods Headphones,1,150,06/14/19 12:36,"50 10th St, San Francisco, CA 94016" -214049,Lightning Charging Cable,1,14.95,06/02/19 14:28,"129 Hill St, Los Angeles, CA 90001" -214050,AAA Batteries (4-pack),1,2.99,06/27/19 23:30,"652 South St, New York City, NY 10001" -214051,Bose SoundSport Headphones,1,99.99,06/26/19 10:38,"908 Main St, Portland, OR 97035" -214052,AA Batteries (4-pack),2,3.84,06/10/19 15:37,"976 14th St, Los Angeles, CA 90001" -214053,iPhone,1,700,06/17/19 13:15,"281 Main St, Atlanta, GA 30301" -214054,iPhone,1,700,06/15/19 21:02,"928 Maple St, Los Angeles, CA 90001" -214055,Wired Headphones,1,11.99,06/25/19 10:51,"94 Cedar St, Boston, MA 02215" -214056,Wired Headphones,1,11.99,06/10/19 23:15,"616 North St, Los Angeles, CA 90001" -214057,Bose SoundSport Headphones,1,99.99,06/22/19 12:33,"704 11th St, San Francisco, CA 94016" -214058,20in Monitor,1,109.99,06/18/19 12:33,"726 Washington St, Boston, MA 02215" -214059,USB-C Charging Cable,1,11.95,06/29/19 08:17,"860 8th St, Portland, OR 97035" -214060,Apple Airpods Headphones,1,150,06/10/19 11:41,"967 6th St, New York City, NY 10001" -214061,Wired Headphones,1,11.99,06/13/19 10:01,"282 River St, Los Angeles, CA 90001" -214062,AAA Batteries (4-pack),1,2.99,06/27/19 12:48,"690 Adams St, Los Angeles, CA 90001" -214063,AA Batteries (4-pack),1,3.84,06/30/19 12:56,"914 10th St, Dallas, TX 75001" -214064,AAA Batteries (4-pack),1,2.99,06/29/19 21:37,"283 Elm St, Los Angeles, CA 90001" -214064,USB-C Charging Cable,1,11.95,06/29/19 21:37,"283 Elm St, Los Angeles, CA 90001" -214065,34in Ultrawide Monitor,1,379.99,06/11/19 10:02,"681 6th St, Los Angeles, CA 90001" -214066,27in FHD Monitor,1,149.99,06/18/19 12:50,"56 Hickory St, Dallas, TX 75001" -214067,Apple Airpods Headphones,1,150,06/25/19 09:29,"691 Cedar St, New York City, NY 10001" -214068,34in Ultrawide Monitor,1,379.99,06/05/19 16:24,"255 Lincoln St, San Francisco, CA 94016" -214069,Lightning Charging Cable,2,14.95,06/09/19 13:10,"381 Cedar St, San Francisco, CA 94016" -214070,Lightning Charging Cable,1,14.95,06/04/19 21:40,"784 7th St, Boston, MA 02215" -214071,iPhone,1,700,06/09/19 20:50,"78 Wilson St, Boston, MA 02215" -214071,Lightning Charging Cable,1,14.95,06/09/19 20:50,"78 Wilson St, Boston, MA 02215" -214072,Bose SoundSport Headphones,1,99.99,06/27/19 11:28,"735 Lakeview St, Dallas, TX 75001" -214073,Bose SoundSport Headphones,1,99.99,06/15/19 19:55,"935 Washington St, Atlanta, GA 30301" -214074,AA Batteries (4-pack),2,3.84,06/19/19 20:50,"147 2nd St, Austin, TX 73301" -214075,ThinkPad Laptop,1,999.99,06/12/19 10:12,"664 Ridge St, Boston, MA 02215" -214076,Lightning Charging Cable,1,14.95,06/09/19 18:21,"966 Jefferson St, Portland, OR 97035" -214077,20in Monitor,1,109.99,06/04/19 21:12,"314 4th St, San Francisco, CA 94016" -214078,34in Ultrawide Monitor,1,379.99,06/04/19 16:39,"568 North St, Portland, ME 04101" -214079,Bose SoundSport Headphones,1,99.99,06/03/19 11:14,"390 Main St, Los Angeles, CA 90001" -214080,34in Ultrawide Monitor,1,379.99,06/19/19 18:09,"738 Jackson St, San Francisco, CA 94016" -214081,iPhone,1,700,06/17/19 10:55,"193 North St, Dallas, TX 75001" -214081,Lightning Charging Cable,1,14.95,06/17/19 10:55,"193 North St, Dallas, TX 75001" -214082,Lightning Charging Cable,1,14.95,06/18/19 16:31,"93 Lake St, Los Angeles, CA 90001" -214083,AA Batteries (4-pack),2,3.84,06/05/19 17:21,"690 Meadow St, Boston, MA 02215" -214084,AAA Batteries (4-pack),4,2.99,06/16/19 19:41,"500 Main St, New York City, NY 10001" -214085,Google Phone,1,600,06/05/19 22:51,"48 Elm St, Boston, MA 02215" -214086,AAA Batteries (4-pack),1,2.99,06/27/19 21:50,"144 Spruce St, San Francisco, CA 94016" -214087,Apple Airpods Headphones,1,150,06/26/19 03:58,"694 Cherry St, Los Angeles, CA 90001" -214088,Macbook Pro Laptop,1,1700,06/06/19 13:08,"662 14th St, New York City, NY 10001" -214089,Lightning Charging Cable,1,14.95,06/03/19 09:08,"704 Sunset St, Portland, OR 97035" -214090,AA Batteries (4-pack),1,3.84,06/15/19 16:30,"954 14th St, Boston, MA 02215" -214091,Wired Headphones,1,11.99,06/02/19 22:37,"104 1st St, San Francisco, CA 94016" -214092,Wired Headphones,1,11.99,06/05/19 16:39,"539 4th St, Atlanta, GA 30301" -214093,Google Phone,1,600,06/01/19 10:52,"128 Cedar St, Boston, MA 02215" -214094,Macbook Pro Laptop,1,1700,06/08/19 01:24,"934 11th St, Dallas, TX 75001" -214094,Bose SoundSport Headphones,1,99.99,06/08/19 01:24,"934 11th St, Dallas, TX 75001" -214095,Wired Headphones,1,11.99,06/07/19 10:00,"101 Elm St, San Francisco, CA 94016" -214096,AA Batteries (4-pack),2,3.84,06/13/19 17:14,"271 8th St, Atlanta, GA 30301" -214097,AAA Batteries (4-pack),1,2.99,06/24/19 20:47,"10 6th St, Dallas, TX 75001" -214098,Bose SoundSport Headphones,1,99.99,06/18/19 17:55,"161 12th St, Portland, OR 97035" -214099,Wired Headphones,1,11.99,07/01/19 01:29,"222 2nd St, San Francisco, CA 94016" -214099,USB-C Charging Cable,1,11.95,07/01/19 01:29,"222 2nd St, San Francisco, CA 94016" -214100,27in FHD Monitor,1,149.99,06/12/19 05:57,"501 Adams St, New York City, NY 10001" -214101,Bose SoundSport Headphones,1,99.99,06/22/19 19:56,"396 Lincoln St, San Francisco, CA 94016" -214102,AAA Batteries (4-pack),1,2.99,06/01/19 13:21,"95 Center St, Atlanta, GA 30301" -214103,Bose SoundSport Headphones,1,99.99,06/24/19 16:16,"994 Center St, Seattle, WA 98101" -214104,AAA Batteries (4-pack),1,2.99,06/28/19 19:42,"705 Chestnut St, New York City, NY 10001" -214105,27in 4K Gaming Monitor,1,389.99,06/23/19 18:36,"882 14th St, Los Angeles, CA 90001" -214106,Wired Headphones,1,11.99,06/22/19 08:04,"799 Willow St, Atlanta, GA 30301" -214107,Bose SoundSport Headphones,1,99.99,06/25/19 18:04,"642 14th St, Dallas, TX 75001" -214108,Wired Headphones,1,11.99,06/20/19 08:35,"742 Maple St, San Francisco, CA 94016" -214109,USB-C Charging Cable,1,11.95,06/23/19 12:07,"445 Center St, San Francisco, CA 94016" -214110,AA Batteries (4-pack),1,3.84,06/17/19 10:13,"24 Highland St, Boston, MA 02215" -214111,Wired Headphones,1,11.99,06/26/19 01:07,"368 Cedar St, Los Angeles, CA 90001" -214112,27in FHD Monitor,1,149.99,06/24/19 21:09,"872 Park St, Boston, MA 02215" -214113,Google Phone,1,600,06/21/19 12:22,"184 13th St, Portland, OR 97035" -214114,Lightning Charging Cable,1,14.95,06/29/19 08:10,"507 Sunset St, San Francisco, CA 94016" -214115,Apple Airpods Headphones,1,150,06/24/19 18:44,"89 Sunset St, Boston, MA 02215" -214116,Wired Headphones,1,11.99,06/01/19 08:36,"502 9th St, San Francisco, CA 94016" -214117,USB-C Charging Cable,1,11.95,06/25/19 10:31,"795 Jackson St, Dallas, TX 75001" -214118,34in Ultrawide Monitor,1,379.99,06/28/19 14:40,"412 14th St, San Francisco, CA 94016" -214119,Lightning Charging Cable,1,14.95,06/02/19 21:18,"799 Hickory St, Seattle, WA 98101" -214120,iPhone,1,700,06/30/19 22:28,"971 Spruce St, San Francisco, CA 94016" -214121,34in Ultrawide Monitor,1,379.99,06/20/19 19:12,"291 10th St, Los Angeles, CA 90001" -214122,Wired Headphones,1,11.99,06/03/19 01:49,"180 Wilson St, New York City, NY 10001" -214123,Wired Headphones,1,11.99,06/02/19 16:06,"806 Forest St, New York City, NY 10001" -214124,27in FHD Monitor,1,149.99,06/06/19 19:58,"66 Elm St, San Francisco, CA 94016" -214125,Macbook Pro Laptop,1,1700,06/01/19 16:23,"403 Ridge St, Los Angeles, CA 90001" -214126,USB-C Charging Cable,1,11.95,06/07/19 18:09,"432 Ridge St, Los Angeles, CA 90001" -214127,20in Monitor,1,109.99,06/20/19 10:09,"744 South St, New York City, NY 10001" -214128,AA Batteries (4-pack),1,3.84,06/17/19 12:28,"223 Highland St, Atlanta, GA 30301" -214129,34in Ultrawide Monitor,1,379.99,06/19/19 09:39,"632 Willow St, Atlanta, GA 30301" -214130,AAA Batteries (4-pack),1,2.99,06/12/19 13:24,"228 13th St, Boston, MA 02215" -214131,Apple Airpods Headphones,1,150,06/25/19 19:22,"524 Lincoln St, Seattle, WA 98101" -214132,AA Batteries (4-pack),1,3.84,06/26/19 12:52,"14 8th St, Atlanta, GA 30301" -214133,AAA Batteries (4-pack),3,2.99,06/15/19 12:11,"857 Elm St, Seattle, WA 98101" -214134,AA Batteries (4-pack),1,3.84,06/10/19 10:37,"147 Sunset St, San Francisco, CA 94016" -214135,27in FHD Monitor,1,149.99,06/18/19 11:18,"929 Lincoln St, Los Angeles, CA 90001" -214136,Lightning Charging Cable,1,14.95,06/30/19 12:27,"48 Walnut St, Los Angeles, CA 90001" -214137,Lightning Charging Cable,1,14.95,06/29/19 12:24,"185 Johnson St, Atlanta, GA 30301" -214138,AAA Batteries (4-pack),2,2.99,06/13/19 12:51,"552 South St, Los Angeles, CA 90001" -214139,USB-C Charging Cable,1,11.95,06/07/19 16:55,"216 Wilson St, San Francisco, CA 94016" -214140,Wired Headphones,1,11.99,06/08/19 18:47,"833 8th St, Dallas, TX 75001" -214141,Google Phone,1,600,06/07/19 23:56,"371 Hickory St, San Francisco, CA 94016" -214142,Macbook Pro Laptop,1,1700,06/24/19 23:41,"229 Main St, San Francisco, CA 94016" -214143,Lightning Charging Cable,1,14.95,06/19/19 21:02,"92 Maple St, Seattle, WA 98101" -214144,USB-C Charging Cable,1,11.95,06/10/19 20:57,"630 Cedar St, Seattle, WA 98101" -214145,Apple Airpods Headphones,1,150,06/18/19 16:16,"248 10th St, New York City, NY 10001" -214146,USB-C Charging Cable,1,11.95,06/21/19 10:39,"62 Cedar St, Atlanta, GA 30301" -214147,AAA Batteries (4-pack),1,2.99,06/28/19 09:48,"696 Cherry St, New York City, NY 10001" -214148,Lightning Charging Cable,1,14.95,06/14/19 20:04,"363 Cedar St, Austin, TX 73301" -214149,AA Batteries (4-pack),1,3.84,06/22/19 22:44,"600 5th St, Los Angeles, CA 90001" -214150,USB-C Charging Cable,1,11.95,06/17/19 18:09,"795 10th St, San Francisco, CA 94016" -214151,27in FHD Monitor,1,149.99,06/22/19 09:55,"339 2nd St, New York City, NY 10001" -214152,iPhone,1,700,06/15/19 20:10,"139 10th St, San Francisco, CA 94016" -214153,Flatscreen TV,1,300,06/18/19 10:31,"35 Maple St, Austin, TX 73301" -214154,USB-C Charging Cable,1,11.95,06/25/19 22:12,"873 12th St, San Francisco, CA 94016" -214155,Wired Headphones,1,11.99,06/12/19 04:26,"757 Meadow St, Boston, MA 02215" -214156,27in FHD Monitor,1,149.99,06/10/19 19:31,"677 Ridge St, San Francisco, CA 94016" -214157,AAA Batteries (4-pack),1,2.99,06/16/19 20:02,"493 Adams St, San Francisco, CA 94016" -214158,AAA Batteries (4-pack),1,2.99,06/06/19 12:03,"6 Adams St, Boston, MA 02215" -214159,Lightning Charging Cable,1,14.95,06/27/19 18:50,"629 Hickory St, San Francisco, CA 94016" -214160,ThinkPad Laptop,1,999.99,06/04/19 22:23,"685 Chestnut St, Los Angeles, CA 90001" -214161,Bose SoundSport Headphones,1,99.99,06/06/19 15:33,"904 Washington St, San Francisco, CA 94016" -214162,iPhone,1,700,06/16/19 20:43,"356 1st St, Boston, MA 02215" -214163,AAA Batteries (4-pack),1,2.99,06/02/19 09:44,"549 Chestnut St, Los Angeles, CA 90001" -214164,USB-C Charging Cable,1,11.95,06/27/19 14:03,"11 Elm St, San Francisco, CA 94016" -214165,AAA Batteries (4-pack),1,2.99,06/23/19 13:40,"655 Main St, Los Angeles, CA 90001" -214166,Wired Headphones,1,11.99,06/20/19 18:48,"230 12th St, San Francisco, CA 94016" -214167,Apple Airpods Headphones,1,150,06/05/19 15:42,"402 Cherry St, Atlanta, GA 30301" -214168,USB-C Charging Cable,1,11.95,06/11/19 10:42,"100 12th St, Atlanta, GA 30301" -214169,AA Batteries (4-pack),1,3.84,06/24/19 19:50,"662 Willow St, San Francisco, CA 94016" -214170,AAA Batteries (4-pack),3,2.99,06/11/19 10:50,"514 Washington St, San Francisco, CA 94016" -214171,AA Batteries (4-pack),1,3.84,06/14/19 14:58,"86 Lakeview St, San Francisco, CA 94016" -214172,AAA Batteries (4-pack),1,2.99,06/08/19 21:22,"566 Elm St, Seattle, WA 98101" -214173,USB-C Charging Cable,1,11.95,06/10/19 20:56,"113 Lakeview St, Boston, MA 02215" -214174,AA Batteries (4-pack),2,3.84,06/23/19 09:48,"502 Wilson St, Atlanta, GA 30301" -214175,iPhone,1,700,06/01/19 12:15,"392 Jackson St, Austin, TX 73301" -214175,Lightning Charging Cable,1,14.95,06/01/19 12:15,"392 Jackson St, Austin, TX 73301" -214176,AAA Batteries (4-pack),2,2.99,06/11/19 20:41,"756 Pine St, San Francisco, CA 94016" -214177,27in FHD Monitor,1,149.99,06/07/19 14:41,"923 Johnson St, New York City, NY 10001" -214178,Vareebadd Phone,1,400,06/14/19 00:21,"405 Adams St, Los Angeles, CA 90001" -214179,AAA Batteries (4-pack),1,2.99,06/26/19 22:00,"535 Ridge St, New York City, NY 10001" -214180,Google Phone,1,600,06/01/19 15:28,"48 7th St, San Francisco, CA 94016" -214181,Vareebadd Phone,1,400,06/07/19 21:44,"175 Lakeview St, San Francisco, CA 94016" -214182,Flatscreen TV,1,300,06/06/19 12:16,"762 5th St, San Francisco, CA 94016" -214183,Wired Headphones,1,11.99,06/06/19 13:34,"986 7th St, Los Angeles, CA 90001" -214184,27in FHD Monitor,1,149.99,06/17/19 20:08,"329 Pine St, San Francisco, CA 94016" -214185,USB-C Charging Cable,1,11.95,06/10/19 12:43,"944 11th St, Los Angeles, CA 90001" -214186,Apple Airpods Headphones,1,150,06/08/19 19:16,"58 Dogwood St, Dallas, TX 75001" -214187,Bose SoundSport Headphones,1,99.99,06/12/19 22:05,"453 West St, Seattle, WA 98101" -214188,27in FHD Monitor,1,149.99,06/07/19 20:38,"510 9th St, Atlanta, GA 30301" -214189,27in FHD Monitor,1,149.99,06/14/19 19:01,"711 8th St, Portland, OR 97035" -214190,ThinkPad Laptop,1,999.99,06/11/19 11:59,"863 10th St, Dallas, TX 75001" -214191,Lightning Charging Cable,1,14.95,06/17/19 20:53,"259 Jackson St, Austin, TX 73301" -214192,Wired Headphones,1,11.99,06/17/19 18:11,"865 Walnut St, Austin, TX 73301" -214193,AA Batteries (4-pack),1,3.84,06/16/19 17:51,"115 Elm St, New York City, NY 10001" -214194,Lightning Charging Cable,1,14.95,06/18/19 23:18,"577 Wilson St, San Francisco, CA 94016" -214195,AAA Batteries (4-pack),2,2.99,06/02/19 12:15,"100 Johnson St, Austin, TX 73301" -214196,AA Batteries (4-pack),1,3.84,06/23/19 13:39,"779 12th St, San Francisco, CA 94016" -214197,AAA Batteries (4-pack),3,2.99,06/10/19 13:56,"566 2nd St, Seattle, WA 98101" -214198,27in FHD Monitor,1,149.99,06/15/19 17:06,"751 Adams St, Austin, TX 73301" -214199,Bose SoundSport Headphones,1,99.99,06/01/19 22:02,"671 2nd St, Portland, OR 97035" -214200,Lightning Charging Cable,1,14.95,06/25/19 12:31,"837 1st St, San Francisco, CA 94016" -214201,Lightning Charging Cable,1,14.95,06/28/19 19:02,"565 1st St, San Francisco, CA 94016" -214202,Lightning Charging Cable,1,14.95,06/04/19 22:03,"475 Pine St, San Francisco, CA 94016" -214203,Bose SoundSport Headphones,1,99.99,06/03/19 15:08,"187 7th St, Los Angeles, CA 90001" -214204,Lightning Charging Cable,1,14.95,06/01/19 11:57,"723 Walnut St, San Francisco, CA 94016" -214205,AAA Batteries (4-pack),1,2.99,06/26/19 20:13,"99 Adams St, Seattle, WA 98101" -214206,ThinkPad Laptop,1,999.99,06/18/19 09:50,"834 Highland St, Dallas, TX 75001" -214207,Bose SoundSport Headphones,1,99.99,06/30/19 10:45,"294 Highland St, Atlanta, GA 30301" -214208,AAA Batteries (4-pack),1,2.99,06/07/19 17:44,"822 South St, San Francisco, CA 94016" -214209,20in Monitor,1,109.99,06/10/19 10:43,"561 Madison St, Seattle, WA 98101" -214210,Macbook Pro Laptop,1,1700,06/09/19 11:03,"535 Sunset St, Seattle, WA 98101" -214211,iPhone,1,700,06/12/19 05:43,"944 Chestnut St, Dallas, TX 75001" -214212,USB-C Charging Cable,1,11.95,06/29/19 20:38,"196 6th St, San Francisco, CA 94016" -214213,27in 4K Gaming Monitor,1,389.99,06/30/19 23:20,"312 2nd St, Boston, MA 02215" -214214,Macbook Pro Laptop,1,1700,06/05/19 17:40,"826 West St, New York City, NY 10001" -214215,Bose SoundSport Headphones,1,99.99,06/26/19 22:50,"843 Cherry St, Los Angeles, CA 90001" -214216,Bose SoundSport Headphones,1,99.99,06/19/19 11:32,"986 10th St, Los Angeles, CA 90001" -214217,27in 4K Gaming Monitor,1,389.99,06/27/19 00:49,"382 4th St, Portland, OR 97035" -214218,Wired Headphones,1,11.99,06/18/19 13:37,"759 Hill St, Portland, OR 97035" -214219,USB-C Charging Cable,1,11.95,06/29/19 08:21,"643 Madison St, San Francisco, CA 94016" -214220,AA Batteries (4-pack),2,3.84,06/27/19 12:02,"927 Cedar St, San Francisco, CA 94016" -214221,AA Batteries (4-pack),3,3.84,06/28/19 11:47,"208 Chestnut St, Los Angeles, CA 90001" -214222,USB-C Charging Cable,1,11.95,06/19/19 21:35,"787 Center St, Dallas, TX 75001" -214223,34in Ultrawide Monitor,1,379.99,06/26/19 14:35,"404 Cedar St, Austin, TX 73301" -214224,Apple Airpods Headphones,1,150,06/18/19 10:02,"564 Cedar St, Los Angeles, CA 90001" -214225,Wired Headphones,1,11.99,06/18/19 10:11,"389 6th St, Los Angeles, CA 90001" -214226,AA Batteries (4-pack),2,3.84,06/09/19 18:48,"155 Cedar St, Los Angeles, CA 90001" -214227,27in 4K Gaming Monitor,1,389.99,06/07/19 17:32,"893 Dogwood St, Seattle, WA 98101" -214228,AAA Batteries (4-pack),1,2.99,06/18/19 14:05,"122 Ridge St, San Francisco, CA 94016" -214229,Wired Headphones,1,11.99,06/15/19 07:03,"95 Washington St, San Francisco, CA 94016" -214230,Lightning Charging Cable,1,14.95,06/21/19 12:02,"481 Madison St, San Francisco, CA 94016" -214231,Apple Airpods Headphones,1,150,06/07/19 21:02,"728 Hill St, Los Angeles, CA 90001" -214232,Bose SoundSport Headphones,1,99.99,06/15/19 07:08,"695 Chestnut St, Atlanta, GA 30301" -214233,AA Batteries (4-pack),1,3.84,06/29/19 09:28,"423 Pine St, Atlanta, GA 30301" -214234,20in Monitor,1,109.99,06/09/19 12:41,"731 Cedar St, San Francisco, CA 94016" -214235,AAA Batteries (4-pack),1,2.99,06/30/19 19:45,"169 Walnut St, Los Angeles, CA 90001" -214236,USB-C Charging Cable,1,11.95,06/12/19 22:18,"616 9th St, Austin, TX 73301" -214237,USB-C Charging Cable,1,11.95,06/08/19 08:34,"597 Madison St, Seattle, WA 98101" -214238,Wired Headphones,1,11.99,06/19/19 08:07,"663 Johnson St, Los Angeles, CA 90001" -214239,Bose SoundSport Headphones,1,99.99,06/16/19 08:49,"592 Madison St, Los Angeles, CA 90001" -214240,27in FHD Monitor,1,149.99,06/12/19 08:54,"82 Willow St, Atlanta, GA 30301" -214241,iPhone,1,700,06/03/19 18:12,"126 Dogwood St, San Francisco, CA 94016" -214241,Lightning Charging Cable,1,14.95,06/03/19 18:12,"126 Dogwood St, San Francisco, CA 94016" -214242,AA Batteries (4-pack),1,3.84,06/30/19 17:44,"114 South St, Atlanta, GA 30301" -214243,Macbook Pro Laptop,1,1700,06/19/19 21:14,"167 Meadow St, Los Angeles, CA 90001" -214244,USB-C Charging Cable,1,11.95,06/30/19 07:48,"301 6th St, Boston, MA 02215" -214245,AAA Batteries (4-pack),3,2.99,06/16/19 23:29,"140 Jackson St, New York City, NY 10001" -214246,AAA Batteries (4-pack),2,2.99,06/02/19 22:23,"631 8th St, Boston, MA 02215" -214247,AAA Batteries (4-pack),2,2.99,06/25/19 14:35,"531 North St, San Francisco, CA 94016" -214248,Bose SoundSport Headphones,1,99.99,06/14/19 17:50,"420 Wilson St, Los Angeles, CA 90001" -214249,Lightning Charging Cable,1,14.95,06/29/19 19:22,"469 Adams St, Los Angeles, CA 90001" -214250,iPhone,1,700,06/02/19 16:05,"797 Hill St, Los Angeles, CA 90001" -214251,AA Batteries (4-pack),2,3.84,06/30/19 23:07,"123 Hickory St, Portland, ME 04101" -214252,Flatscreen TV,1,300,06/29/19 11:17,"155 Center St, San Francisco, CA 94016" -214253,Lightning Charging Cable,1,14.95,06/08/19 10:57,"614 Hickory St, San Francisco, CA 94016" -214254,Bose SoundSport Headphones,1,99.99,06/09/19 16:07,"794 12th St, Atlanta, GA 30301" -214254,Google Phone,1,600,06/09/19 16:07,"794 12th St, Atlanta, GA 30301" -214255,Lightning Charging Cable,1,14.95,06/06/19 09:53,"315 Madison St, Seattle, WA 98101" -214256,AA Batteries (4-pack),1,3.84,06/21/19 15:13,"932 Highland St, Los Angeles, CA 90001" -214256,AAA Batteries (4-pack),1,2.99,06/21/19 15:13,"932 Highland St, Los Angeles, CA 90001" -214257,Wired Headphones,1,11.99,06/05/19 16:57,"194 Church St, San Francisco, CA 94016" -214258,Lightning Charging Cable,1,14.95,06/09/19 07:29,"164 South St, Portland, OR 97035" -214259,iPhone,1,700,06/27/19 09:04,"770 8th St, Los Angeles, CA 90001" -214259,Wired Headphones,1,11.99,06/27/19 09:04,"770 8th St, Los Angeles, CA 90001" -214260,Wired Headphones,1,11.99,06/08/19 21:45,"110 Meadow St, San Francisco, CA 94016" -214261,Wired Headphones,1,11.99,06/11/19 12:35,"197 6th St, Los Angeles, CA 90001" -214262,Wired Headphones,1,11.99,06/06/19 13:36,"547 Jefferson St, New York City, NY 10001" -214263,Google Phone,1,600,06/10/19 08:01,"190 1st St, San Francisco, CA 94016" -214264,Bose SoundSport Headphones,1,99.99,06/02/19 22:10,"331 North St, San Francisco, CA 94016" -214265,27in FHD Monitor,1,149.99,06/16/19 10:22,"136 Meadow St, Seattle, WA 98101" -214266,AA Batteries (4-pack),4,3.84,06/13/19 17:21,"98 10th St, San Francisco, CA 94016" -214267,Apple Airpods Headphones,1,150,06/08/19 19:03,"528 10th St, Dallas, TX 75001" -214268,Macbook Pro Laptop,1,1700,06/21/19 13:47,"629 Walnut St, San Francisco, CA 94016" -214269,AA Batteries (4-pack),1,3.84,06/27/19 15:25,"381 Sunset St, Los Angeles, CA 90001" -214270,USB-C Charging Cable,1,11.95,06/08/19 16:27,"300 Dogwood St, Los Angeles, CA 90001" -214271,AAA Batteries (4-pack),1,2.99,06/21/19 21:59,"808 Hill St, Atlanta, GA 30301" -214272,AAA Batteries (4-pack),1,2.99,06/25/19 15:43,"684 Church St, Boston, MA 02215" -214273,Wired Headphones,1,11.99,06/25/19 17:18,"176 13th St, San Francisco, CA 94016" -214274,USB-C Charging Cable,1,11.95,06/04/19 15:06,"210 Madison St, Los Angeles, CA 90001" -214275,AA Batteries (4-pack),1,3.84,06/02/19 15:21,"255 1st St, Seattle, WA 98101" -214276,USB-C Charging Cable,1,11.95,06/19/19 09:21,"857 Adams St, Los Angeles, CA 90001" -214277,AAA Batteries (4-pack),1,2.99,06/08/19 17:00,"457 Lake St, Los Angeles, CA 90001" -214278,Macbook Pro Laptop,1,1700,06/28/19 13:39,"772 12th St, Austin, TX 73301" -214279,Wired Headphones,1,11.99,06/06/19 18:48,"465 Washington St, San Francisco, CA 94016" -214280,20in Monitor,1,109.99,06/01/19 17:14,"221 11th St, New York City, NY 10001" -214281,27in FHD Monitor,1,149.99,06/04/19 21:01,"122 Hickory St, Portland, OR 97035" -214282,Bose SoundSport Headphones,1,99.99,06/17/19 19:07,"562 2nd St, Los Angeles, CA 90001" -214283,AAA Batteries (4-pack),2,2.99,06/18/19 08:55,"241 Willow St, Boston, MA 02215" -214284,34in Ultrawide Monitor,1,379.99,06/26/19 10:51,"541 2nd St, Boston, MA 02215" -214285,20in Monitor,1,109.99,06/30/19 15:03,"609 Spruce St, Los Angeles, CA 90001" -214286,Wired Headphones,1,11.99,06/18/19 07:06,"965 Forest St, Portland, ME 04101" -214286,27in 4K Gaming Monitor,1,389.99,06/18/19 07:06,"965 Forest St, Portland, ME 04101" -214287,AA Batteries (4-pack),1,3.84,06/26/19 18:45,"15 Cherry St, Portland, OR 97035" -214288,34in Ultrawide Monitor,1,379.99,06/30/19 14:35,"822 Elm St, New York City, NY 10001" -214289,Lightning Charging Cable,1,14.95,06/28/19 15:49,"429 Meadow St, Los Angeles, CA 90001" -214290,Apple Airpods Headphones,1,150,06/30/19 05:41,"798 4th St, Boston, MA 02215" -214291,AA Batteries (4-pack),1,3.84,06/13/19 18:27,"819 Forest St, Seattle, WA 98101" -214292,iPhone,1,700,06/04/19 12:07,"578 8th St, Los Angeles, CA 90001" -214292,Lightning Charging Cable,1,14.95,06/04/19 12:07,"578 8th St, Los Angeles, CA 90001" -214293,Lightning Charging Cable,1,14.95,06/01/19 13:04,"996 North St, Boston, MA 02215" -214294,USB-C Charging Cable,3,11.95,06/12/19 09:30,"815 14th St, San Francisco, CA 94016" -214295,Lightning Charging Cable,1,14.95,06/01/19 13:03,"776 2nd St, Dallas, TX 75001" -214296,Macbook Pro Laptop,1,1700,06/05/19 21:10,"105 7th St, Seattle, WA 98101" -214297,Apple Airpods Headphones,1,150,06/02/19 12:30,"690 Hickory St, San Francisco, CA 94016" -214298,Apple Airpods Headphones,1,150,06/06/19 11:33,"513 Forest St, San Francisco, CA 94016" -214299,Bose SoundSport Headphones,1,99.99,06/30/19 11:43,"898 4th St, Dallas, TX 75001" -214300,USB-C Charging Cable,1,11.95,06/27/19 07:16,"667 4th St, San Francisco, CA 94016" -214301,USB-C Charging Cable,1,11.95,06/02/19 09:39,"832 Walnut St, Boston, MA 02215" -214302,Apple Airpods Headphones,1,150,06/03/19 23:11,"851 Walnut St, Portland, OR 97035" -214303,Macbook Pro Laptop,1,1700,06/13/19 21:44,"969 4th St, Portland, OR 97035" -214304,Wired Headphones,1,11.99,06/29/19 15:29,"689 6th St, Boston, MA 02215" -214305,Wired Headphones,2,11.99,06/25/19 11:10,"966 Center St, Seattle, WA 98101" -214306,Wired Headphones,1,11.99,06/24/19 18:03,"935 Park St, Seattle, WA 98101" -214307,Lightning Charging Cable,1,14.95,06/07/19 21:35,"362 Chestnut St, Portland, OR 97035" -214308,USB-C Charging Cable,1,11.95,06/20/19 12:49,"280 Jefferson St, Los Angeles, CA 90001" -214309,27in FHD Monitor,1,149.99,06/03/19 16:16,"402 Center St, Austin, TX 73301" -214310,Lightning Charging Cable,1,14.95,06/19/19 10:49,"280 Wilson St, Atlanta, GA 30301" -214311,USB-C Charging Cable,1,11.95,06/07/19 10:30,"799 Chestnut St, New York City, NY 10001" -214312,AA Batteries (4-pack),1,3.84,06/15/19 17:21,"805 Church St, San Francisco, CA 94016" -214313,Bose SoundSport Headphones,1,99.99,06/28/19 19:24,"389 Ridge St, Atlanta, GA 30301" -214314,27in FHD Monitor,1,149.99,06/02/19 16:49,"161 14th St, New York City, NY 10001" -214315,USB-C Charging Cable,1,11.95,06/25/19 19:07,"379 Chestnut St, New York City, NY 10001" -214316,USB-C Charging Cable,1,11.95,06/03/19 09:33,"994 Cedar St, Portland, OR 97035" -214317,27in FHD Monitor,1,149.99,06/30/19 18:26,"155 Pine St, New York City, NY 10001" -214318,Wired Headphones,1,11.99,06/15/19 13:16,"485 Elm St, San Francisco, CA 94016" -214319,AAA Batteries (4-pack),1,2.99,06/07/19 16:25,"306 8th St, San Francisco, CA 94016" -214320,Apple Airpods Headphones,1,150,06/14/19 16:42,"334 Madison St, Seattle, WA 98101" -214321,AA Batteries (4-pack),1,3.84,06/03/19 13:38,"632 Center St, New York City, NY 10001" -214322,Vareebadd Phone,1,400,06/24/19 22:44,"586 Lake St, San Francisco, CA 94016" -214323,Wired Headphones,1,11.99,06/17/19 12:30,"574 Hickory St, Seattle, WA 98101" -214324,27in 4K Gaming Monitor,1,389.99,06/15/19 21:33,"224 8th St, Atlanta, GA 30301" -214325,Apple Airpods Headphones,1,150,06/06/19 08:27,"552 Dogwood St, Seattle, WA 98101" -214326,34in Ultrawide Monitor,1,379.99,06/02/19 11:22,"971 Meadow St, Seattle, WA 98101" -214327,34in Ultrawide Monitor,1,379.99,06/08/19 21:03,"90 Dogwood St, Portland, ME 04101" -214328,Apple Airpods Headphones,1,150,06/28/19 23:02,"898 Lincoln St, Atlanta, GA 30301" -214329,Apple Airpods Headphones,1,150,06/12/19 21:12,"766 13th St, Atlanta, GA 30301" -214330,Lightning Charging Cable,1,14.95,06/18/19 11:04,"910 14th St, Dallas, TX 75001" -214331,AA Batteries (4-pack),1,3.84,06/29/19 20:18,"146 Cherry St, Portland, OR 97035" -214332,AA Batteries (4-pack),1,3.84,06/16/19 09:46,"795 5th St, Los Angeles, CA 90001" -214333,USB-C Charging Cable,2,11.95,06/15/19 20:30,"966 Adams St, San Francisco, CA 94016" -214334,34in Ultrawide Monitor,1,379.99,06/24/19 16:30,"549 Lake St, Seattle, WA 98101" -214335,34in Ultrawide Monitor,1,379.99,06/27/19 20:36,"11 Dogwood St, San Francisco, CA 94016" -214336,Flatscreen TV,1,300,06/07/19 00:59,"983 Cherry St, Atlanta, GA 30301" -214337,AAA Batteries (4-pack),2,2.99,06/14/19 16:19,"240 Ridge St, Dallas, TX 75001" -214338,Lightning Charging Cable,1,14.95,06/26/19 19:22,"707 10th St, San Francisco, CA 94016" -214339,Wired Headphones,1,11.99,06/17/19 00:38,"680 4th St, San Francisco, CA 94016" -214340,Lightning Charging Cable,1,14.95,06/17/19 16:33,"895 Madison St, Dallas, TX 75001" -214341,LG Dryer,1,600.0,06/02/19 22:55,"157 2nd St, San Francisco, CA 94016" -214342,AA Batteries (4-pack),1,3.84,06/13/19 18:21,"662 Forest St, Boston, MA 02215" -214343,Flatscreen TV,1,300,06/08/19 10:37,"194 Sunset St, Boston, MA 02215" -214344,Bose SoundSport Headphones,1,99.99,06/30/19 15:39,"763 9th St, Los Angeles, CA 90001" -214345,AA Batteries (4-pack),1,3.84,06/29/19 01:48,"618 River St, Los Angeles, CA 90001" -214346,Lightning Charging Cable,1,14.95,06/08/19 16:29,"534 Cedar St, Dallas, TX 75001" -214347,Wired Headphones,1,11.99,06/11/19 18:22,"986 Main St, New York City, NY 10001" -214348,Wired Headphones,1,11.99,06/25/19 03:44,"552 Madison St, Austin, TX 73301" -214349,iPhone,1,700,06/21/19 23:49,"758 Lake St, Seattle, WA 98101" -214349,Wired Headphones,1,11.99,06/21/19 23:49,"758 Lake St, Seattle, WA 98101" -214350,20in Monitor,1,109.99,06/04/19 20:00,"69 7th St, San Francisco, CA 94016" -214351,AAA Batteries (4-pack),1,2.99,06/13/19 23:02,"802 Wilson St, San Francisco, CA 94016" -214352,Lightning Charging Cable,1,14.95,06/27/19 00:05,"247 12th St, Portland, OR 97035" -214353,AA Batteries (4-pack),1,3.84,06/29/19 19:42,"250 9th St, Boston, MA 02215" -214354,Macbook Pro Laptop,1,1700,06/18/19 12:21,"893 Washington St, San Francisco, CA 94016" -214355,Macbook Pro Laptop,1,1700,06/20/19 07:13,"541 Hickory St, Austin, TX 73301" -214356,Flatscreen TV,1,300,06/15/19 22:26,"468 Pine St, San Francisco, CA 94016" -214357,USB-C Charging Cable,1,11.95,06/01/19 09:28,"289 Hickory St, Seattle, WA 98101" -214358,27in 4K Gaming Monitor,1,389.99,06/02/19 19:20,"535 9th St, Dallas, TX 75001" -214359,AAA Batteries (4-pack),2,2.99,06/05/19 12:31,"636 Park St, Seattle, WA 98101" -214360,Bose SoundSport Headphones,1,99.99,06/02/19 12:19,"477 Lake St, San Francisco, CA 94016" -214361,Bose SoundSport Headphones,1,99.99,06/29/19 12:29,"440 Lakeview St, San Francisco, CA 94016" -214362,Bose SoundSport Headphones,1,99.99,06/29/19 18:01,"869 South St, Seattle, WA 98101" -214363,27in FHD Monitor,1,149.99,06/07/19 20:06,"459 Lakeview St, Dallas, TX 75001" -214364,USB-C Charging Cable,1,11.95,06/17/19 20:14,"652 Madison St, Austin, TX 73301" -214365,AAA Batteries (4-pack),1,2.99,06/23/19 11:30,"611 Elm St, New York City, NY 10001" -214366,USB-C Charging Cable,1,11.95,06/24/19 14:27,"522 12th St, New York City, NY 10001" -214367,Google Phone,1,600,06/22/19 00:22,"877 4th St, Atlanta, GA 30301" -214367,USB-C Charging Cable,1,11.95,06/22/19 00:22,"877 4th St, Atlanta, GA 30301" -214368,USB-C Charging Cable,1,11.95,06/20/19 13:39,"151 Lake St, Los Angeles, CA 90001" -214369,27in FHD Monitor,1,149.99,06/23/19 16:48,"213 Willow St, Los Angeles, CA 90001" -214370,AA Batteries (4-pack),1,3.84,06/25/19 10:13,"875 Hickory St, Los Angeles, CA 90001" -214371,27in FHD Monitor,1,149.99,06/12/19 18:28,"195 Lakeview St, San Francisco, CA 94016" -214372,AA Batteries (4-pack),1,3.84,06/27/19 00:00,"928 Lakeview St, Portland, OR 97035" -214373,AAA Batteries (4-pack),1,2.99,06/13/19 18:38,"911 North St, San Francisco, CA 94016" -214374,34in Ultrawide Monitor,1,379.99,06/18/19 18:21,"561 Walnut St, Los Angeles, CA 90001" -214375,iPhone,1,700,06/28/19 16:27,"504 Church St, San Francisco, CA 94016" -214375,Lightning Charging Cable,1,14.95,06/28/19 16:27,"504 Church St, San Francisco, CA 94016" -214376,Lightning Charging Cable,1,14.95,06/25/19 08:29,"378 12th St, New York City, NY 10001" -214377,AAA Batteries (4-pack),2,2.99,06/15/19 20:07,"323 Walnut St, Seattle, WA 98101" -214378,USB-C Charging Cable,1,11.95,06/11/19 16:57,"877 4th St, Austin, TX 73301" -214379,USB-C Charging Cable,1,11.95,06/01/19 21:32,"183 South St, San Francisco, CA 94016" -214380,Lightning Charging Cable,1,14.95,06/04/19 16:32,"186 Walnut St, San Francisco, CA 94016" -214381,USB-C Charging Cable,1,11.95,06/09/19 18:49,"683 Lincoln St, Dallas, TX 75001" -214382,Lightning Charging Cable,1,14.95,06/30/19 18:06,"367 Cherry St, Seattle, WA 98101" -214383,AA Batteries (4-pack),1,3.84,06/05/19 00:12,"812 West St, Austin, TX 73301" -214384,Lightning Charging Cable,1,14.95,06/04/19 16:07,"831 Dogwood St, San Francisco, CA 94016" -214385,27in FHD Monitor,1,149.99,06/18/19 20:45,"346 6th St, New York City, NY 10001" -214386,20in Monitor,1,109.99,06/18/19 20:50,"591 7th St, Seattle, WA 98101" -214387,Flatscreen TV,1,300,06/16/19 21:39,"949 Cedar St, Los Angeles, CA 90001" -214388,iPhone,1,700,06/17/19 13:01,"232 5th St, Portland, OR 97035" -214389,Apple Airpods Headphones,1,150,06/28/19 05:24,"234 Forest St, New York City, NY 10001" -214390,iPhone,1,700,06/03/19 20:41,"405 Center St, San Francisco, CA 94016" -214390,Apple Airpods Headphones,1,150,06/03/19 20:41,"405 Center St, San Francisco, CA 94016" -214391,Wired Headphones,1,11.99,06/05/19 09:49,"153 Lakeview St, Seattle, WA 98101" -214391,AA Batteries (4-pack),3,3.84,06/05/19 09:49,"153 Lakeview St, Seattle, WA 98101" -214392,20in Monitor,1,109.99,06/20/19 17:01,"969 River St, Seattle, WA 98101" -214393,USB-C Charging Cable,1,11.95,06/27/19 09:32,"262 North St, Boston, MA 02215" -214394,Apple Airpods Headphones,1,150,06/28/19 20:35,"643 Forest St, Boston, MA 02215" -214395,Flatscreen TV,1,300,06/10/19 13:47,"763 Main St, Austin, TX 73301" -214396,AA Batteries (4-pack),2,3.84,06/26/19 08:56,"666 Ridge St, New York City, NY 10001" -214397,AAA Batteries (4-pack),1,2.99,06/16/19 16:06,"90 Adams St, Dallas, TX 75001" -214398,Apple Airpods Headphones,1,150,06/11/19 17:10,"925 Jackson St, Portland, OR 97035" -214399,AA Batteries (4-pack),1,3.84,06/06/19 22:35,"152 Forest St, San Francisco, CA 94016" -214400,Wired Headphones,1,11.99,06/04/19 06:25,"186 Highland St, Dallas, TX 75001" -214401,Apple Airpods Headphones,1,150,06/30/19 10:02,"708 Cedar St, San Francisco, CA 94016" -214402,Google Phone,1,600,06/09/19 08:30,"156 4th St, New York City, NY 10001" -214403,27in FHD Monitor,1,149.99,06/14/19 08:40,"349 Lake St, San Francisco, CA 94016" -214404,Wired Headphones,1,11.99,06/17/19 10:59,"650 Walnut St, San Francisco, CA 94016" -214405,AA Batteries (4-pack),1,3.84,06/03/19 09:44,"110 13th St, San Francisco, CA 94016" -214406,Bose SoundSport Headphones,1,99.99,06/02/19 08:44,"341 Willow St, San Francisco, CA 94016" -214407,AAA Batteries (4-pack),1,2.99,06/09/19 03:39,"170 7th St, Atlanta, GA 30301" -214408,20in Monitor,1,109.99,06/17/19 19:40,"89 14th St, San Francisco, CA 94016" -214409,Lightning Charging Cable,1,14.95,06/24/19 23:57,"483 1st St, New York City, NY 10001" -214410,Lightning Charging Cable,1,14.95,06/07/19 13:38,"72 Cherry St, San Francisco, CA 94016" -214411,Vareebadd Phone,1,400,06/13/19 12:20,"732 Park St, Los Angeles, CA 90001" -214412,Google Phone,1,600,06/08/19 16:24,"222 Wilson St, San Francisco, CA 94016" -214413,LG Washing Machine,1,600.0,06/25/19 10:28,"977 Pine St, Boston, MA 02215" -214414,27in FHD Monitor,1,149.99,06/26/19 22:23,"839 Pine St, San Francisco, CA 94016" -214415,Apple Airpods Headphones,1,150,06/16/19 23:16,"90 Lakeview St, San Francisco, CA 94016" -214416,Apple Airpods Headphones,1,150,06/17/19 16:15,"901 Center St, New York City, NY 10001" -214417,34in Ultrawide Monitor,1,379.99,06/24/19 15:12,"854 Main St, San Francisco, CA 94016" -214418,AA Batteries (4-pack),1,3.84,06/16/19 11:51,"380 6th St, New York City, NY 10001" -214419,Lightning Charging Cable,1,14.95,06/16/19 17:17,"251 5th St, Portland, ME 04101" -214420,AAA Batteries (4-pack),1,2.99,06/05/19 17:36,"988 Adams St, Los Angeles, CA 90001" -214421,iPhone,1,700,06/07/19 15:07,"23 River St, Los Angeles, CA 90001" -214422,AA Batteries (4-pack),1,3.84,06/20/19 20:07,"512 Willow St, San Francisco, CA 94016" -214423,20in Monitor,1,109.99,06/06/19 14:41,"918 Madison St, Austin, TX 73301" -214424,Flatscreen TV,1,300,06/08/19 23:49,"813 1st St, Los Angeles, CA 90001" -214425,Wired Headphones,1,11.99,06/28/19 09:36,"199 Johnson St, Dallas, TX 75001" -214426,Lightning Charging Cable,1,14.95,06/21/19 21:58,"946 Chestnut St, Atlanta, GA 30301" -214427,Google Phone,1,600,06/14/19 15:32,"933 Lakeview St, New York City, NY 10001" -214428,Google Phone,1,600,06/16/19 16:21,"761 14th St, Atlanta, GA 30301" -214429,Bose SoundSport Headphones,1,99.99,06/12/19 21:58,"275 1st St, San Francisco, CA 94016" -214430,Apple Airpods Headphones,1,150,06/03/19 18:15,"797 Jackson St, Portland, ME 04101" -214431,Lightning Charging Cable,1,14.95,06/08/19 20:24,"683 Spruce St, Los Angeles, CA 90001" -214432,USB-C Charging Cable,1,11.95,06/30/19 23:50,"402 10th St, San Francisco, CA 94016" -214433,Bose SoundSport Headphones,1,99.99,06/18/19 13:10,"914 North St, New York City, NY 10001" -214434,AA Batteries (4-pack),2,3.84,06/24/19 21:32,"198 Center St, New York City, NY 10001" -214435,Macbook Pro Laptop,1,1700,06/13/19 09:21,"994 Pine St, San Francisco, CA 94016" -214436,AAA Batteries (4-pack),1,2.99,06/16/19 11:29,"443 4th St, San Francisco, CA 94016" -214437,AA Batteries (4-pack),1,3.84,06/23/19 17:03,"931 Walnut St, Seattle, WA 98101" -214438,USB-C Charging Cable,1,11.95,06/09/19 11:09,"488 Chestnut St, New York City, NY 10001" -214439,AA Batteries (4-pack),1,3.84,06/20/19 19:33,"24 Ridge St, San Francisco, CA 94016" -214440,AAA Batteries (4-pack),1,2.99,06/05/19 09:56,"501 6th St, San Francisco, CA 94016" -214441,Google Phone,1,600,06/05/19 12:57,"191 12th St, Boston, MA 02215" -214441,USB-C Charging Cable,2,11.95,06/05/19 12:57,"191 12th St, Boston, MA 02215" -214442,USB-C Charging Cable,1,11.95,06/29/19 09:08,"326 Madison St, San Francisco, CA 94016" -214443,Flatscreen TV,1,300,06/04/19 17:53,"43 Meadow St, San Francisco, CA 94016" -214444,Wired Headphones,1,11.99,06/02/19 20:17,"301 River St, San Francisco, CA 94016" -214445,USB-C Charging Cable,1,11.95,06/16/19 13:46,"605 Dogwood St, Boston, MA 02215" -214446,Wired Headphones,1,11.99,06/27/19 14:27,"749 Washington St, San Francisco, CA 94016" -214447,Google Phone,1,600,06/16/19 18:48,"965 Jackson St, New York City, NY 10001" -214447,USB-C Charging Cable,1,11.95,06/16/19 18:48,"965 Jackson St, New York City, NY 10001" -214448,Wired Headphones,2,11.99,06/16/19 08:13,"499 9th St, New York City, NY 10001" -214449,USB-C Charging Cable,1,11.95,06/01/19 14:00,"846 Johnson St, Seattle, WA 98101" -214450,USB-C Charging Cable,1,11.95,06/14/19 16:01,"654 13th St, San Francisco, CA 94016" -214451,Lightning Charging Cable,1,14.95,06/12/19 12:23,"684 Wilson St, San Francisco, CA 94016" -214452,20in Monitor,1,109.99,06/13/19 14:23,"691 Madison St, San Francisco, CA 94016" -214453,Wired Headphones,1,11.99,06/26/19 23:58,"422 8th St, Austin, TX 73301" -214454,Wired Headphones,1,11.99,06/24/19 11:25,"80 9th St, Dallas, TX 75001" -214455,Macbook Pro Laptop,1,1700,06/14/19 13:31,"854 8th St, San Francisco, CA 94016" -214456,USB-C Charging Cable,2,11.95,06/03/19 18:37,"17 4th St, Los Angeles, CA 90001" -214457,Lightning Charging Cable,1,14.95,06/03/19 16:33,"114 7th St, New York City, NY 10001" -214458,20in Monitor,1,109.99,06/03/19 09:11,"766 Pine St, San Francisco, CA 94016" -214459,Bose SoundSport Headphones,1,99.99,06/11/19 14:34,"208 Jackson St, Los Angeles, CA 90001" -214460,27in FHD Monitor,1,149.99,06/20/19 23:35,"767 Sunset St, New York City, NY 10001" -214461,Apple Airpods Headphones,1,150,06/01/19 13:10,"873 Center St, New York City, NY 10001" -214462,Lightning Charging Cable,1,14.95,06/11/19 18:40,"346 1st St, New York City, NY 10001" -214463,Wired Headphones,1,11.99,06/21/19 20:56,"579 4th St, Boston, MA 02215" -214464,Lightning Charging Cable,1,14.95,06/24/19 13:18,"28 Dogwood St, Portland, OR 97035" -214465,Bose SoundSport Headphones,1,99.99,06/21/19 12:46,"534 4th St, Seattle, WA 98101" -214466,USB-C Charging Cable,1,11.95,06/06/19 14:14,"501 Cedar St, New York City, NY 10001" -214467,AAA Batteries (4-pack),1,2.99,06/13/19 19:20,"784 Dogwood St, New York City, NY 10001" -214468,AAA Batteries (4-pack),1,2.99,06/26/19 19:03,"985 Park St, Seattle, WA 98101" -214469,Lightning Charging Cable,1,14.95,06/14/19 05:55,"158 Sunset St, Dallas, TX 75001" -214470,AAA Batteries (4-pack),1,2.99,06/13/19 15:29,"270 Church St, Boston, MA 02215" -214471,Apple Airpods Headphones,1,150,06/03/19 09:28,"569 6th St, Los Angeles, CA 90001" -214472,Flatscreen TV,1,300,06/25/19 12:49,"129 Dogwood St, Seattle, WA 98101" -214473,AA Batteries (4-pack),1,3.84,06/03/19 07:43,"578 Sunset St, Los Angeles, CA 90001" -214474,Lightning Charging Cable,1,14.95,06/22/19 14:26,"525 Ridge St, Atlanta, GA 30301" -,,,,, -214475,USB-C Charging Cable,1,11.95,06/23/19 22:17,"428 Highland St, Los Angeles, CA 90001" -214476,ThinkPad Laptop,1,999.99,06/23/19 16:45,"751 Wilson St, Seattle, WA 98101" -214477,Lightning Charging Cable,1,14.95,06/17/19 13:17,"744 Church St, Los Angeles, CA 90001" -214478,USB-C Charging Cable,1,11.95,06/20/19 12:28,"379 Sunset St, San Francisco, CA 94016" -214479,Lightning Charging Cable,1,14.95,06/08/19 07:46,"308 12th St, Atlanta, GA 30301" -214480,Apple Airpods Headphones,1,150,06/10/19 10:35,"72 Ridge St, Austin, TX 73301" -214481,Wired Headphones,1,11.99,06/23/19 13:32,"556 Sunset St, Austin, TX 73301" -214482,20in Monitor,1,109.99,06/17/19 10:48,"354 North St, Boston, MA 02215" -214483,20in Monitor,1,109.99,06/10/19 06:00,"338 Lake St, Seattle, WA 98101" -214484,AAA Batteries (4-pack),4,2.99,06/03/19 08:04,"256 Chestnut St, Los Angeles, CA 90001" -214485,Apple Airpods Headphones,1,150,06/07/19 12:58,"994 Lake St, Los Angeles, CA 90001" -214486,iPhone,1,700,06/29/19 08:55,"682 Jefferson St, Seattle, WA 98101" -,,,,, -214487,Lightning Charging Cable,1,14.95,06/26/19 16:25,"30 Madison St, Boston, MA 02215" -214488,Lightning Charging Cable,1,14.95,06/18/19 21:31,"163 12th St, San Francisco, CA 94016" -214489,Apple Airpods Headphones,1,150,06/13/19 17:59,"3 Main St, Seattle, WA 98101" -214490,iPhone,1,700,06/12/19 11:05,"64 14th St, Los Angeles, CA 90001" -214490,Lightning Charging Cable,1,14.95,06/12/19 11:05,"64 14th St, Los Angeles, CA 90001" -214491,AAA Batteries (4-pack),5,2.99,06/12/19 19:41,"102 Dogwood St, Seattle, WA 98101" -214492,Bose SoundSport Headphones,1,99.99,06/13/19 13:32,"966 Highland St, Portland, OR 97035" -214493,20in Monitor,1,109.99,06/28/19 18:30,"694 Willow St, Austin, TX 73301" -214494,27in FHD Monitor,1,149.99,06/17/19 15:56,"114 11th St, New York City, NY 10001" -214495,Lightning Charging Cable,1,14.95,06/29/19 12:27,"617 Hill St, Los Angeles, CA 90001" -214496,Apple Airpods Headphones,1,150,06/11/19 11:55,"692 South St, New York City, NY 10001" -214497,iPhone,1,700,06/25/19 10:31,"780 South St, New York City, NY 10001" -214498,USB-C Charging Cable,1,11.95,06/15/19 16:03,"847 Adams St, San Francisco, CA 94016" -214499,Lightning Charging Cable,1,14.95,06/20/19 22:06,"331 Highland St, Boston, MA 02215" -214500,Lightning Charging Cable,1,14.95,06/26/19 21:25,"606 Ridge St, San Francisco, CA 94016" -214501,AA Batteries (4-pack),1,3.84,06/12/19 18:00,"862 Ridge St, Los Angeles, CA 90001" -214502,AA Batteries (4-pack),3,3.84,06/30/19 18:57,"836 Lake St, Boston, MA 02215" -214503,Lightning Charging Cable,1,14.95,06/05/19 18:35,"413 7th St, Portland, OR 97035" -214504,Wired Headphones,1,11.99,06/19/19 20:37,"968 2nd St, Seattle, WA 98101" -214505,Google Phone,1,600,06/19/19 18:32,"46 4th St, New York City, NY 10001" -214505,Wired Headphones,1,11.99,06/19/19 18:32,"46 4th St, New York City, NY 10001" -214506,Lightning Charging Cable,1,14.95,06/20/19 13:40,"512 Lake St, Seattle, WA 98101" -214507,Lightning Charging Cable,1,14.95,06/21/19 19:33,"193 Maple St, Dallas, TX 75001" -214508,AA Batteries (4-pack),1,3.84,06/11/19 00:06,"819 Willow St, New York City, NY 10001" -214509,Flatscreen TV,1,300,06/17/19 16:22,"67 Forest St, San Francisco, CA 94016" -214510,iPhone,1,700,06/24/19 07:36,"537 1st St, Dallas, TX 75001" -214510,Lightning Charging Cable,1,14.95,06/24/19 07:36,"537 1st St, Dallas, TX 75001" -214511,34in Ultrawide Monitor,1,379.99,06/15/19 20:05,"78 Highland St, Los Angeles, CA 90001" -214512,20in Monitor,1,109.99,06/12/19 07:40,"471 Park St, New York City, NY 10001" -214513,27in 4K Gaming Monitor,1,389.99,06/28/19 10:23,"854 12th St, San Francisco, CA 94016" -214514,Bose SoundSport Headphones,1,99.99,06/06/19 06:42,"416 Wilson St, Los Angeles, CA 90001" -214515,USB-C Charging Cable,1,11.95,06/03/19 12:30,"391 Sunset St, Boston, MA 02215" -214516,AA Batteries (4-pack),1,3.84,06/15/19 18:55,"630 14th St, Los Angeles, CA 90001" -214517,Apple Airpods Headphones,1,150,06/16/19 16:38,"691 Meadow St, Dallas, TX 75001" -214518,27in FHD Monitor,1,149.99,06/01/19 12:40,"227 North St, Austin, TX 73301" -214519,34in Ultrawide Monitor,1,379.99,06/07/19 21:22,"163 Jackson St, Portland, OR 97035" -214520,Apple Airpods Headphones,1,150,06/09/19 10:30,"858 Hill St, San Francisco, CA 94016" -214521,Macbook Pro Laptop,1,1700,06/09/19 13:48,"28 10th St, New York City, NY 10001" -214522,Google Phone,1,600,06/26/19 08:12,"736 West St, San Francisco, CA 94016" -214522,Wired Headphones,1,11.99,06/26/19 08:12,"736 West St, San Francisco, CA 94016" -214523,27in 4K Gaming Monitor,1,389.99,06/17/19 13:54,"770 Wilson St, Portland, OR 97035" -214523,AAA Batteries (4-pack),3,2.99,06/17/19 13:54,"770 Wilson St, Portland, OR 97035" -214524,Bose SoundSport Headphones,1,99.99,06/12/19 19:07,"841 Cherry St, Los Angeles, CA 90001" -214525,USB-C Charging Cable,1,11.95,06/30/19 03:59,"608 Lake St, Atlanta, GA 30301" -214526,Wired Headphones,1,11.99,06/14/19 13:06,"569 Walnut St, San Francisco, CA 94016" -214527,20in Monitor,1,109.99,06/29/19 10:41,"713 Wilson St, Boston, MA 02215" -214528,Lightning Charging Cable,1,14.95,06/04/19 15:14,"39 Main St, Portland, OR 97035" -214528,USB-C Charging Cable,1,11.95,06/04/19 15:14,"39 Main St, Portland, OR 97035" -214529,AAA Batteries (4-pack),1,2.99,06/07/19 14:50,"421 Lincoln St, New York City, NY 10001" -214530,AA Batteries (4-pack),4,3.84,06/25/19 18:53,"168 11th St, Dallas, TX 75001" -214531,Bose SoundSport Headphones,1,99.99,06/03/19 18:32,"931 13th St, Portland, ME 04101" -214532,Lightning Charging Cable,1,14.95,06/20/19 17:47,"42 Lakeview St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -214533,Lightning Charging Cable,1,14.95,06/10/19 12:50,"869 Johnson St, Los Angeles, CA 90001" -214534,20in Monitor,1,109.99,06/06/19 23:04,"619 Center St, New York City, NY 10001" -214535,Apple Airpods Headphones,1,150,06/10/19 03:22,"408 5th St, Atlanta, GA 30301" -214535,34in Ultrawide Monitor,1,379.99,06/10/19 03:22,"408 5th St, Atlanta, GA 30301" -,,,,, -214536,Google Phone,1,600,06/21/19 13:38,"331 2nd St, San Francisco, CA 94016" -214537,Bose SoundSport Headphones,1,99.99,06/12/19 09:09,"703 12th St, San Francisco, CA 94016" -214538,Lightning Charging Cable,1,14.95,06/08/19 11:06,"217 Walnut St, Los Angeles, CA 90001" -214539,AAA Batteries (4-pack),1,2.99,06/11/19 18:42,"766 Church St, Austin, TX 73301" -214540,Bose SoundSport Headphones,1,99.99,06/25/19 21:20,"767 River St, San Francisco, CA 94016" -214541,Macbook Pro Laptop,1,1700,06/01/19 17:33,"374 Madison St, San Francisco, CA 94016" -214542,AAA Batteries (4-pack),1,2.99,06/20/19 02:08,"894 Johnson St, San Francisco, CA 94016" -214543,iPhone,1,700,06/09/19 13:22,"744 Center St, Los Angeles, CA 90001" -214544,Wired Headphones,1,11.99,06/28/19 10:55,"444 Sunset St, San Francisco, CA 94016" -214545,AAA Batteries (4-pack),1,2.99,06/28/19 07:43,"654 Dogwood St, San Francisco, CA 94016" -214546,20in Monitor,1,109.99,06/27/19 23:59,"638 Lakeview St, San Francisco, CA 94016" -214547,ThinkPad Laptop,1,999.99,06/18/19 21:38,"489 Wilson St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -214548,Bose SoundSport Headphones,1,99.99,06/27/19 17:25,"242 5th St, Boston, MA 02215" -214549,Google Phone,1,600,06/15/19 21:17,"479 4th St, Boston, MA 02215" -214549,USB-C Charging Cable,2,11.95,06/15/19 21:17,"479 4th St, Boston, MA 02215" -214550,AAA Batteries (4-pack),1,2.99,06/26/19 22:30,"312 Adams St, New York City, NY 10001" -214551,27in FHD Monitor,1,149.99,06/05/19 16:39,"946 7th St, Portland, OR 97035" -214552,Wired Headphones,1,11.99,06/21/19 19:05,"289 Maple St, San Francisco, CA 94016" -214553,ThinkPad Laptop,1,999.99,06/16/19 10:46,"621 9th St, San Francisco, CA 94016" -214554,AAA Batteries (4-pack),1,2.99,06/26/19 12:26,"626 Ridge St, Atlanta, GA 30301" -214555,AA Batteries (4-pack),1,3.84,06/10/19 07:43,"324 8th St, San Francisco, CA 94016" -214556,27in FHD Monitor,1,149.99,06/28/19 20:19,"456 Cedar St, San Francisco, CA 94016" -214557,Apple Airpods Headphones,1,150,06/21/19 11:02,"360 West St, San Francisco, CA 94016" -214558,ThinkPad Laptop,1,999.99,06/18/19 14:25,"646 Sunset St, Los Angeles, CA 90001" -214559,AAA Batteries (4-pack),2,2.99,06/26/19 21:01,"333 6th St, San Francisco, CA 94016" -214560,Google Phone,1,600,06/01/19 18:15,"805 Center St, San Francisco, CA 94016" -214561,Lightning Charging Cable,1,14.95,06/11/19 16:47,"41 Meadow St, Boston, MA 02215" -214562,AAA Batteries (4-pack),3,2.99,06/29/19 12:58,"273 Park St, Austin, TX 73301" -214563,Vareebadd Phone,1,400,06/06/19 17:13,"518 West St, Los Angeles, CA 90001" -214563,USB-C Charging Cable,1,11.95,06/06/19 17:13,"518 West St, Los Angeles, CA 90001" -214564,AA Batteries (4-pack),1,3.84,06/17/19 02:06,"439 11th St, Austin, TX 73301" -214565,AAA Batteries (4-pack),1,2.99,06/18/19 17:52,"732 Hill St, Los Angeles, CA 90001" -214566,Wired Headphones,2,11.99,06/07/19 19:27,"75 North St, San Francisco, CA 94016" -214567,Wired Headphones,1,11.99,06/05/19 17:24,"177 6th St, Boston, MA 02215" -214568,Bose SoundSport Headphones,1,99.99,06/22/19 22:45,"595 Park St, Atlanta, GA 30301" -214569,27in 4K Gaming Monitor,1,389.99,06/02/19 18:35,"913 Main St, New York City, NY 10001" -214570,Wired Headphones,2,11.99,06/26/19 19:18,"87 7th St, Atlanta, GA 30301" -214571,AAA Batteries (4-pack),1,2.99,06/04/19 08:52,"235 Church St, Los Angeles, CA 90001" -214572,AAA Batteries (4-pack),2,2.99,06/18/19 15:07,"61 2nd St, Boston, MA 02215" -214573,AAA Batteries (4-pack),2,2.99,06/13/19 12:01,"752 Main St, Portland, OR 97035" -214574,USB-C Charging Cable,2,11.95,06/17/19 17:47,"305 13th St, Los Angeles, CA 90001" -214575,AA Batteries (4-pack),2,3.84,06/22/19 01:13,"823 10th St, New York City, NY 10001" -214576,Lightning Charging Cable,1,14.95,06/08/19 10:58,"159 Wilson St, Boston, MA 02215" -214577,Apple Airpods Headphones,1,150,06/30/19 09:38,"975 Lincoln St, San Francisco, CA 94016" -214578,Vareebadd Phone,1,400,06/30/19 14:33,"444 7th St, San Francisco, CA 94016" -214579,Lightning Charging Cable,1,14.95,06/06/19 12:22,"707 Hill St, New York City, NY 10001" -214580,USB-C Charging Cable,1,11.95,06/19/19 12:25,"56 Walnut St, San Francisco, CA 94016" -214581,27in FHD Monitor,1,149.99,06/09/19 00:43,"940 Meadow St, San Francisco, CA 94016" -214582,Wired Headphones,1,11.99,06/28/19 19:23,"584 Adams St, Portland, OR 97035" -214583,USB-C Charging Cable,1,11.95,06/22/19 09:00,"51 North St, Boston, MA 02215" -214584,AAA Batteries (4-pack),1,2.99,06/02/19 15:33,"561 Lake St, San Francisco, CA 94016" -214585,Macbook Pro Laptop,1,1700,06/18/19 20:52,"683 Hill St, New York City, NY 10001" -214586,Macbook Pro Laptop,1,1700,06/28/19 07:54,"146 Adams St, Atlanta, GA 30301" -214587,20in Monitor,1,109.99,06/28/19 20:54,"42 2nd St, San Francisco, CA 94016" -214588,Google Phone,1,600,06/10/19 16:07,"82 Sunset St, San Francisco, CA 94016" -214589,iPhone,1,700,06/17/19 12:52,"148 Johnson St, New York City, NY 10001" -214590,Macbook Pro Laptop,1,1700,06/09/19 17:36,"68 Forest St, New York City, NY 10001" -214591,27in 4K Gaming Monitor,1,389.99,06/11/19 14:44,"693 Forest St, New York City, NY 10001" -214592,Wired Headphones,1,11.99,06/23/19 15:10,"836 14th St, Atlanta, GA 30301" -214593,AA Batteries (4-pack),1,3.84,06/20/19 19:35,"259 South St, Portland, ME 04101" -214594,Lightning Charging Cable,1,14.95,06/20/19 22:05,"884 Lincoln St, Boston, MA 02215" -214595,Apple Airpods Headphones,1,150,06/28/19 10:42,"31 11th St, Los Angeles, CA 90001" -214596,ThinkPad Laptop,1,999.99,06/05/19 06:58,"367 North St, Seattle, WA 98101" -214597,Apple Airpods Headphones,1,150,06/17/19 18:02,"780 1st St, Boston, MA 02215" -214598,AA Batteries (4-pack),3,3.84,06/21/19 22:13,"424 8th St, Boston, MA 02215" -214599,Lightning Charging Cable,1,14.95,06/20/19 19:38,"151 6th St, Austin, TX 73301" -214600,USB-C Charging Cable,1,11.95,06/15/19 20:03,"313 11th St, Los Angeles, CA 90001" -214601,Bose SoundSport Headphones,1,99.99,06/09/19 23:13,"8 9th St, New York City, NY 10001" -214602,Wired Headphones,1,11.99,06/01/19 22:14,"13 Lincoln St, Dallas, TX 75001" -214603,27in 4K Gaming Monitor,1,389.99,06/06/19 01:09,"414 6th St, New York City, NY 10001" -214604,USB-C Charging Cable,1,11.95,06/22/19 22:00,"155 Willow St, Los Angeles, CA 90001" -214605,AA Batteries (4-pack),2,3.84,06/03/19 14:01,"714 Walnut St, Dallas, TX 75001" -214606,Google Phone,1,600,06/25/19 02:21,"946 South St, New York City, NY 10001" -214607,Macbook Pro Laptop,1,1700,06/30/19 19:30,"65 Meadow St, Boston, MA 02215" -214608,AA Batteries (4-pack),2,3.84,06/21/19 22:29,"321 Ridge St, Los Angeles, CA 90001" -214609,iPhone,1,700,06/18/19 15:51,"385 2nd St, San Francisco, CA 94016" -214610,Apple Airpods Headphones,1,150,06/18/19 19:01,"689 Spruce St, San Francisco, CA 94016" -214611,AAA Batteries (4-pack),1,2.99,06/02/19 11:33,"382 West St, San Francisco, CA 94016" -214612,AA Batteries (4-pack),1,3.84,06/28/19 10:22,"618 Lake St, Dallas, TX 75001" -214613,USB-C Charging Cable,1,11.95,06/20/19 14:32,"26 Washington St, Los Angeles, CA 90001" -214614,Macbook Pro Laptop,1,1700,06/07/19 20:22,"51 4th St, Portland, OR 97035" -214615,Bose SoundSport Headphones,1,99.99,06/20/19 06:38,"59 Cherry St, San Francisco, CA 94016" -214616,34in Ultrawide Monitor,1,379.99,06/05/19 11:40,"655 10th St, Atlanta, GA 30301" -214617,AA Batteries (4-pack),1,3.84,06/02/19 18:44,"687 Johnson St, Los Angeles, CA 90001" -214618,Flatscreen TV,1,300,06/27/19 16:54,"204 6th St, New York City, NY 10001" -214619,34in Ultrawide Monitor,1,379.99,06/22/19 10:45,"852 Lakeview St, San Francisco, CA 94016" -214620,AA Batteries (4-pack),1,3.84,06/01/19 10:29,"132 Chestnut St, New York City, NY 10001" -214621,20in Monitor,1,109.99,06/21/19 00:48,"894 Elm St, New York City, NY 10001" -214622,AA Batteries (4-pack),1,3.84,06/05/19 20:39,"825 South St, San Francisco, CA 94016" -214623,Bose SoundSport Headphones,1,99.99,06/01/19 11:43,"275 Lincoln St, Portland, ME 04101" -214624,USB-C Charging Cable,1,11.95,06/06/19 09:04,"597 Cherry St, Los Angeles, CA 90001" -214625,AA Batteries (4-pack),2,3.84,06/01/19 11:11,"648 Johnson St, Boston, MA 02215" -214626,USB-C Charging Cable,1,11.95,06/11/19 17:12,"956 11th St, Atlanta, GA 30301" -214627,Google Phone,1,600,06/23/19 10:03,"985 Ridge St, Seattle, WA 98101" -214628,AA Batteries (4-pack),1,3.84,06/03/19 22:13,"55 13th St, Los Angeles, CA 90001" -214629,ThinkPad Laptop,1,999.99,06/09/19 18:03,"399 Park St, Dallas, TX 75001" -214630,Wired Headphones,1,11.99,06/06/19 19:58,"163 Washington St, San Francisco, CA 94016" -214631,Apple Airpods Headphones,1,150,06/05/19 13:50,"678 Madison St, Boston, MA 02215" -214632,USB-C Charging Cable,1,11.95,06/04/19 08:39,"781 West St, Los Angeles, CA 90001" -214633,iPhone,1,700,06/10/19 10:56,"43 Wilson St, Los Angeles, CA 90001" -214634,Apple Airpods Headphones,1,150,06/18/19 19:38,"939 Adams St, Seattle, WA 98101" -214635,Apple Airpods Headphones,1,150,06/29/19 20:42,"695 Main St, Seattle, WA 98101" -214636,Wired Headphones,1,11.99,06/25/19 11:20,"348 9th St, Seattle, WA 98101" -214637,AAA Batteries (4-pack),1,2.99,06/13/19 08:56,"206 12th St, San Francisco, CA 94016" -214638,27in FHD Monitor,1,149.99,06/13/19 18:15,"609 Jefferson St, Boston, MA 02215" -214639,AA Batteries (4-pack),1,3.84,06/02/19 14:19,"496 Wilson St, Seattle, WA 98101" -214640,27in 4K Gaming Monitor,1,389.99,06/05/19 14:33,"17 Cherry St, San Francisco, CA 94016" -214641,27in FHD Monitor,1,149.99,06/11/19 00:03,"803 Adams St, San Francisco, CA 94016" -214642,AA Batteries (4-pack),2,3.84,06/29/19 12:45,"518 Center St, Boston, MA 02215" -214643,20in Monitor,1,109.99,06/23/19 10:29,"918 Elm St, Los Angeles, CA 90001" -214644,Flatscreen TV,1,300,06/18/19 15:20,"129 Ridge St, Boston, MA 02215" -214645,27in 4K Gaming Monitor,1,389.99,06/10/19 06:29,"750 1st St, Boston, MA 02215" -214646,AAA Batteries (4-pack),2,2.99,06/30/19 12:28,"410 Park St, San Francisco, CA 94016" -214647,Wired Headphones,1,11.99,06/28/19 19:37,"652 Madison St, San Francisco, CA 94016" -214648,USB-C Charging Cable,1,11.95,06/05/19 12:54,"908 13th St, Dallas, TX 75001" -214649,AAA Batteries (4-pack),1,2.99,06/12/19 14:56,"265 Forest St, Seattle, WA 98101" -214650,Lightning Charging Cable,1,14.95,06/19/19 13:20,"686 Madison St, San Francisco, CA 94016" -214651,27in 4K Gaming Monitor,1,389.99,06/13/19 14:44,"454 River St, Boston, MA 02215" -214652,Wired Headphones,1,11.99,06/12/19 10:25,"297 Cherry St, Los Angeles, CA 90001" -214653,Bose SoundSport Headphones,1,99.99,06/23/19 11:30,"835 Jackson St, Boston, MA 02215" -214654,Wired Headphones,1,11.99,06/30/19 21:02,"933 5th St, Seattle, WA 98101" -214654,Bose SoundSport Headphones,1,99.99,06/30/19 21:02,"933 5th St, Seattle, WA 98101" -214655,AAA Batteries (4-pack),2,2.99,06/30/19 11:53,"605 Church St, San Francisco, CA 94016" -214656,AAA Batteries (4-pack),2,2.99,06/01/19 17:02,"452 River St, Seattle, WA 98101" -214657,27in FHD Monitor,1,149.99,06/03/19 08:16,"135 Johnson St, Portland, OR 97035" -214658,AAA Batteries (4-pack),1,2.99,06/30/19 22:33,"934 Church St, Los Angeles, CA 90001" -214659,Apple Airpods Headphones,1,150,06/18/19 22:07,"487 Spruce St, Atlanta, GA 30301" -214660,Macbook Pro Laptop,1,1700,06/25/19 13:20,"550 14th St, Portland, OR 97035" -214661,Apple Airpods Headphones,1,150,06/06/19 02:15,"261 Maple St, Los Angeles, CA 90001" -214662,Vareebadd Phone,1,400,06/29/19 19:35,"264 River St, Dallas, TX 75001" -214663,Macbook Pro Laptop,1,1700,06/26/19 18:11,"58 South St, New York City, NY 10001" -214664,Wired Headphones,1,11.99,06/20/19 22:21,"93 West St, Dallas, TX 75001" -214665,20in Monitor,1,109.99,06/15/19 11:36,"936 Hill St, San Francisco, CA 94016" -214666,Vareebadd Phone,1,400,06/01/19 18:15,"686 7th St, Los Angeles, CA 90001" -214666,USB-C Charging Cable,1,11.95,06/01/19 18:15,"686 7th St, Los Angeles, CA 90001" -214667,20in Monitor,1,109.99,06/23/19 19:24,"733 Ridge St, San Francisco, CA 94016" -214668,LG Washing Machine,1,600.0,06/29/19 13:38,"579 Highland St, Seattle, WA 98101" -214669,Apple Airpods Headphones,1,150,06/07/19 20:34,"945 Jefferson St, Los Angeles, CA 90001" -214670,AAA Batteries (4-pack),1,2.99,06/12/19 07:36,"660 14th St, Portland, OR 97035" -214671,AAA Batteries (4-pack),1,2.99,06/01/19 15:12,"344 11th St, San Francisco, CA 94016" -214672,27in FHD Monitor,1,149.99,06/06/19 10:07,"333 4th St, Los Angeles, CA 90001" -214673,Lightning Charging Cable,1,14.95,06/09/19 19:31,"72 13th St, Boston, MA 02215" -214674,AA Batteries (4-pack),1,3.84,06/30/19 22:42,"390 Church St, San Francisco, CA 94016" -214675,Wired Headphones,1,11.99,06/19/19 10:56,"188 5th St, San Francisco, CA 94016" -214676,Lightning Charging Cable,1,14.95,06/05/19 19:56,"642 Highland St, Austin, TX 73301" -214677,27in FHD Monitor,1,149.99,06/03/19 19:54,"913 Adams St, Atlanta, GA 30301" -214678,Lightning Charging Cable,1,14.95,06/07/19 22:07,"261 Hill St, Dallas, TX 75001" -214679,27in FHD Monitor,1,149.99,06/09/19 07:42,"45 Hill St, Atlanta, GA 30301" -214680,AAA Batteries (4-pack),1,2.99,06/20/19 23:12,"814 8th St, Boston, MA 02215" -214680,USB-C Charging Cable,1,11.95,06/20/19 23:12,"814 8th St, Boston, MA 02215" -214681,iPhone,1,700,06/21/19 20:19,"815 Cherry St, Los Angeles, CA 90001" -214681,Wired Headphones,1,11.99,06/21/19 20:19,"815 Cherry St, Los Angeles, CA 90001" -214682,AAA Batteries (4-pack),3,2.99,06/18/19 21:11,"804 Lincoln St, Portland, OR 97035" -214683,20in Monitor,1,109.99,06/01/19 11:06,"658 7th St, San Francisco, CA 94016" -214684,Wired Headphones,1,11.99,06/30/19 23:53,"653 1st St, San Francisco, CA 94016" -214685,AAA Batteries (4-pack),1,2.99,06/25/19 10:22,"92 9th St, Portland, ME 04101" -214686,Lightning Charging Cable,1,14.95,06/01/19 17:14,"631 Johnson St, New York City, NY 10001" -214687,Apple Airpods Headphones,1,150,06/02/19 23:52,"246 Center St, Atlanta, GA 30301" -214688,Apple Airpods Headphones,1,150,06/02/19 10:27,"527 Lakeview St, Seattle, WA 98101" -214689,Wired Headphones,1,11.99,06/06/19 10:09,"848 2nd St, San Francisco, CA 94016" -214689,iPhone,1,700,06/06/19 10:09,"848 2nd St, San Francisco, CA 94016" -214690,Wired Headphones,1,11.99,06/13/19 15:28,"553 Jackson St, New York City, NY 10001" -214691,Google Phone,1,600,06/12/19 16:48,"825 7th St, Los Angeles, CA 90001" -214692,AA Batteries (4-pack),1,3.84,06/07/19 14:20,"800 Ridge St, Boston, MA 02215" -214693,Apple Airpods Headphones,1,150,06/10/19 21:05,"874 Main St, San Francisco, CA 94016" -214694,USB-C Charging Cable,1,11.95,06/02/19 16:28,"777 7th St, New York City, NY 10001" -214695,Lightning Charging Cable,1,14.95,06/10/19 10:54,"768 7th St, Los Angeles, CA 90001" -214696,34in Ultrawide Monitor,1,379.99,06/14/19 22:39,"846 6th St, Seattle, WA 98101" -214696,27in FHD Monitor,1,149.99,06/14/19 22:39,"846 6th St, Seattle, WA 98101" -214697,USB-C Charging Cable,1,11.95,06/10/19 15:00,"574 11th St, Austin, TX 73301" -214698,AA Batteries (4-pack),1,3.84,06/26/19 11:52,"525 Lakeview St, Atlanta, GA 30301" -214699,20in Monitor,1,109.99,06/26/19 08:20,"963 North St, Dallas, TX 75001" -,,,,, -214700,iPhone,1,700,06/21/19 10:59,"94 Cedar St, Seattle, WA 98101" -214701,27in 4K Gaming Monitor,1,389.99,06/13/19 07:45,"848 Forest St, Los Angeles, CA 90001" -214702,iPhone,1,700,06/16/19 17:46,"175 Park St, Dallas, TX 75001" -214702,Apple Airpods Headphones,1,150,06/16/19 17:46,"175 Park St, Dallas, TX 75001" -214703,Wired Headphones,1,11.99,06/29/19 12:02,"720 North St, Atlanta, GA 30301" -214704,Bose SoundSport Headphones,1,99.99,06/02/19 10:36,"11 West St, Dallas, TX 75001" -214705,Apple Airpods Headphones,1,150,06/09/19 12:49,"13 Pine St, Dallas, TX 75001" -214705,Wired Headphones,2,11.99,06/09/19 12:49,"13 Pine St, Dallas, TX 75001" -214706,Wired Headphones,1,11.99,06/20/19 11:58,"753 Jefferson St, Seattle, WA 98101" -214707,USB-C Charging Cable,1,11.95,06/28/19 18:36,"153 Church St, New York City, NY 10001" -214708,Google Phone,1,600,06/12/19 19:31,"312 Ridge St, Seattle, WA 98101" -214709,Google Phone,1,600,06/20/19 10:43,"636 Cedar St, Atlanta, GA 30301" -214710,Bose SoundSport Headphones,1,99.99,06/24/19 08:29,"390 13th St, Dallas, TX 75001" -214711,Lightning Charging Cable,1,14.95,06/05/19 20:55,"789 Sunset St, Boston, MA 02215" -214712,AA Batteries (4-pack),1,3.84,06/09/19 06:09,"535 Hickory St, Seattle, WA 98101" -214713,Lightning Charging Cable,1,14.95,06/13/19 15:21,"946 1st St, Seattle, WA 98101" -214714,Apple Airpods Headphones,1,150,06/12/19 06:45,"640 Hill St, Seattle, WA 98101" -214715,27in FHD Monitor,1,149.99,06/10/19 16:05,"193 Cedar St, San Francisco, CA 94016" -214716,AAA Batteries (4-pack),1,2.99,06/14/19 12:42,"73 Jefferson St, Los Angeles, CA 90001" -,,,,, -214717,27in FHD Monitor,1,149.99,06/08/19 15:43,"199 2nd St, Portland, OR 97035" -214718,ThinkPad Laptop,1,999.99,06/26/19 16:42,"581 Pine St, San Francisco, CA 94016" -214719,Macbook Pro Laptop,1,1700,06/27/19 14:37,"592 1st St, Dallas, TX 75001" -214720,AA Batteries (4-pack),1,3.84,06/26/19 22:08,"444 Lake St, New York City, NY 10001" -214721,AAA Batteries (4-pack),1,2.99,06/28/19 21:02,"992 13th St, San Francisco, CA 94016" -214722,Lightning Charging Cable,2,14.95,06/16/19 18:47,"940 Wilson St, Boston, MA 02215" -214723,AA Batteries (4-pack),1,3.84,06/07/19 13:07,"469 Meadow St, Seattle, WA 98101" -214724,Apple Airpods Headphones,1,150,06/12/19 05:40,"303 Dogwood St, San Francisco, CA 94016" -214725,Bose SoundSport Headphones,1,99.99,06/20/19 13:37,"363 Ridge St, Austin, TX 73301" -214726,iPhone,1,700,06/19/19 08:17,"503 Sunset St, New York City, NY 10001" -214727,Bose SoundSport Headphones,1,99.99,06/08/19 20:47,"315 North St, San Francisco, CA 94016" -214728,27in 4K Gaming Monitor,1,389.99,06/27/19 18:35,"887 Main St, New York City, NY 10001" -214729,Lightning Charging Cable,1,14.95,06/23/19 08:44,"697 7th St, Atlanta, GA 30301" -214730,AA Batteries (4-pack),1,3.84,06/14/19 09:26,"602 2nd St, Boston, MA 02215" -214731,Apple Airpods Headphones,1,150,06/26/19 12:15,"837 10th St, San Francisco, CA 94016" -214732,Wired Headphones,1,11.99,06/24/19 16:23,"43 Church St, Atlanta, GA 30301" -214733,27in 4K Gaming Monitor,1,389.99,06/14/19 21:13,"703 Lincoln St, Los Angeles, CA 90001" -214734,Google Phone,1,600,06/12/19 20:39,"129 Lake St, San Francisco, CA 94016" -214735,Wired Headphones,1,11.99,06/05/19 23:36,"347 Lake St, Los Angeles, CA 90001" -214736,USB-C Charging Cable,1,11.95,06/21/19 12:29,"619 Madison St, Portland, OR 97035" -214737,Apple Airpods Headphones,1,150,06/28/19 17:23,"311 7th St, Dallas, TX 75001" -214738,AA Batteries (4-pack),1,3.84,06/12/19 17:05,"21 Wilson St, Seattle, WA 98101" -214739,Lightning Charging Cable,1,14.95,06/18/19 19:58,"496 6th St, New York City, NY 10001" -214740,Lightning Charging Cable,1,14.95,06/10/19 02:29,"283 Pine St, New York City, NY 10001" -214741,27in 4K Gaming Monitor,1,389.99,06/22/19 11:21,"162 Ridge St, San Francisco, CA 94016" -214742,Wired Headphones,1,11.99,06/26/19 10:09,"718 Cherry St, Portland, OR 97035" -214743,AA Batteries (4-pack),1,3.84,06/26/19 15:43,"311 Elm St, San Francisco, CA 94016" -214744,AA Batteries (4-pack),1,3.84,06/20/19 17:32,"221 Spruce St, Atlanta, GA 30301" -214745,Bose SoundSport Headphones,1,99.99,06/11/19 11:44,"971 Madison St, Seattle, WA 98101" -214746,Wired Headphones,1,11.99,06/20/19 07:41,"751 7th St, Dallas, TX 75001" -214747,AAA Batteries (4-pack),1,2.99,06/16/19 18:47,"268 8th St, Los Angeles, CA 90001" -214748,iPhone,1,700,06/25/19 12:48,"533 1st St, New York City, NY 10001" -214748,Lightning Charging Cable,1,14.95,06/25/19 12:48,"533 1st St, New York City, NY 10001" -214749,AAA Batteries (4-pack),1,2.99,06/26/19 10:53,"434 North St, Boston, MA 02215" -214750,USB-C Charging Cable,1,11.95,06/01/19 11:00,"859 11th St, Boston, MA 02215" -214751,Google Phone,1,600,06/11/19 12:49,"433 Chestnut St, Seattle, WA 98101" -214752,Lightning Charging Cable,1,14.95,06/07/19 07:38,"965 River St, San Francisco, CA 94016" -214753,34in Ultrawide Monitor,1,379.99,06/27/19 14:19,"810 Pine St, San Francisco, CA 94016" -214754,Bose SoundSport Headphones,1,99.99,06/21/19 16:14,"831 Hickory St, Los Angeles, CA 90001" -214755,AAA Batteries (4-pack),1,2.99,06/06/19 17:44,"153 Jefferson St, New York City, NY 10001" -214756,USB-C Charging Cable,1,11.95,06/18/19 17:14,"950 River St, San Francisco, CA 94016" -214757,USB-C Charging Cable,1,11.95,06/16/19 00:52,"944 13th St, Portland, OR 97035" -214758,Wired Headphones,1,11.99,06/10/19 18:33,"429 Forest St, San Francisco, CA 94016" -214759,USB-C Charging Cable,3,11.95,06/01/19 15:10,"864 10th St, Atlanta, GA 30301" -214760,Wired Headphones,1,11.99,06/23/19 21:56,"333 Dogwood St, New York City, NY 10001" -214761,Wired Headphones,1,11.99,06/19/19 19:48,"557 2nd St, Los Angeles, CA 90001" -214762,Wired Headphones,1,11.99,06/03/19 14:06,"84 Church St, San Francisco, CA 94016" -214763,USB-C Charging Cable,1,11.95,06/05/19 20:21,"30 North St, San Francisco, CA 94016" -214764,Apple Airpods Headphones,1,150,06/28/19 05:05,"783 8th St, New York City, NY 10001" -214765,USB-C Charging Cable,1,11.95,06/23/19 16:56,"384 Cedar St, San Francisco, CA 94016" -214766,Wired Headphones,1,11.99,06/01/19 17:58,"852 5th St, Dallas, TX 75001" -214767,Lightning Charging Cable,1,14.95,06/29/19 16:34,"237 Pine St, New York City, NY 10001" -214768,Google Phone,1,600,06/15/19 17:10,"370 West St, Los Angeles, CA 90001" -214769,AAA Batteries (4-pack),1,2.99,06/01/19 12:24,"987 Hickory St, Atlanta, GA 30301" -214770,Bose SoundSport Headphones,1,99.99,06/26/19 11:58,"864 Highland St, New York City, NY 10001" -214771,AAA Batteries (4-pack),1,2.99,06/12/19 18:12,"113 Walnut St, Los Angeles, CA 90001" -214772,Macbook Pro Laptop,1,1700,06/17/19 20:44,"971 Ridge St, Los Angeles, CA 90001" -214773,Lightning Charging Cable,1,14.95,06/18/19 09:04,"943 1st St, San Francisco, CA 94016" -214774,27in FHD Monitor,1,149.99,06/22/19 20:30,"88 13th St, New York City, NY 10001" -214775,AAA Batteries (4-pack),1,2.99,06/04/19 14:23,"889 Park St, San Francisco, CA 94016" -214776,USB-C Charging Cable,1,11.95,06/17/19 19:22,"291 2nd St, Portland, ME 04101" -214776,USB-C Charging Cable,1,11.95,06/17/19 19:22,"291 2nd St, Portland, ME 04101" -214777,AA Batteries (4-pack),2,3.84,06/28/19 15:13,"904 Walnut St, San Francisco, CA 94016" -214778,Lightning Charging Cable,1,14.95,06/16/19 14:09,"455 Willow St, New York City, NY 10001" -214779,Bose SoundSport Headphones,1,99.99,06/30/19 21:50,"631 North St, Austin, TX 73301" -214780,iPhone,1,700,06/29/19 09:39,"722 6th St, Boston, MA 02215" -214781,USB-C Charging Cable,1,11.95,06/30/19 17:46,"629 West St, New York City, NY 10001" -214782,AA Batteries (4-pack),2,3.84,06/06/19 17:21,"50 13th St, Atlanta, GA 30301" -214783,Wired Headphones,1,11.99,06/26/19 09:53,"721 Maple St, New York City, NY 10001" -214784,34in Ultrawide Monitor,1,379.99,06/18/19 15:41,"44 Jefferson St, San Francisco, CA 94016" -214785,USB-C Charging Cable,1,11.95,06/01/19 19:03,"480 Cedar St, Dallas, TX 75001" -214786,AAA Batteries (4-pack),1,2.99,06/04/19 13:53,"424 Wilson St, Seattle, WA 98101" -214787,Lightning Charging Cable,1,14.95,06/20/19 22:18,"870 1st St, New York City, NY 10001" -214788,AAA Batteries (4-pack),1,2.99,06/07/19 20:45,"452 9th St, Los Angeles, CA 90001" -214789,Macbook Pro Laptop,1,1700,06/13/19 10:24,"437 Cherry St, Dallas, TX 75001" -214790,ThinkPad Laptop,1,999.99,06/20/19 11:37,"947 Lincoln St, Atlanta, GA 30301" -214791,Apple Airpods Headphones,1,150,06/03/19 09:53,"243 Center St, Austin, TX 73301" -214792,Lightning Charging Cable,2,14.95,06/02/19 09:28,"364 1st St, Seattle, WA 98101" -214793,ThinkPad Laptop,1,999.99,06/30/19 08:40,"562 Elm St, Atlanta, GA 30301" -214794,Apple Airpods Headphones,1,150,06/11/19 12:29,"262 Highland St, Boston, MA 02215" -214795,Bose SoundSport Headphones,1,99.99,06/18/19 22:56,"505 Lincoln St, Dallas, TX 75001" -214796,ThinkPad Laptop,1,999.99,06/15/19 15:12,"499 Jefferson St, Portland, OR 97035" -214797,USB-C Charging Cable,1,11.95,06/01/19 23:37,"173 Hickory St, Los Angeles, CA 90001" -214798,Bose SoundSport Headphones,1,99.99,06/18/19 10:46,"39 Johnson St, San Francisco, CA 94016" -214799,Apple Airpods Headphones,1,150,06/02/19 22:32,"780 4th St, New York City, NY 10001" -214800,Lightning Charging Cable,1,14.95,06/01/19 10:41,"474 Jackson St, San Francisco, CA 94016" -214801,USB-C Charging Cable,1,11.95,06/06/19 08:29,"605 14th St, Dallas, TX 75001" -214802,Lightning Charging Cable,1,14.95,06/29/19 19:30,"205 Park St, Atlanta, GA 30301" -214803,Wired Headphones,1,11.99,06/18/19 22:14,"309 5th St, Boston, MA 02215" -214804,20in Monitor,1,109.99,06/07/19 10:52,"415 Spruce St, Portland, OR 97035" -214805,Apple Airpods Headphones,1,150,06/18/19 12:44,"503 Washington St, Los Angeles, CA 90001" -214806,USB-C Charging Cable,1,11.95,06/30/19 16:27,"755 4th St, Atlanta, GA 30301" -214807,Lightning Charging Cable,1,14.95,06/20/19 11:20,"658 Lakeview St, Los Angeles, CA 90001" -214808,Bose SoundSport Headphones,1,99.99,06/29/19 17:18,"411 Adams St, Seattle, WA 98101" -214809,Lightning Charging Cable,1,14.95,06/07/19 16:41,"944 Hill St, San Francisco, CA 94016" -214810,iPhone,1,700,06/20/19 09:13,"434 12th St, Seattle, WA 98101" -214811,AAA Batteries (4-pack),1,2.99,06/12/19 18:07,"406 Jefferson St, San Francisco, CA 94016" -214812,AAA Batteries (4-pack),1,2.99,06/02/19 19:20,"538 Cherry St, New York City, NY 10001" -214813,Wired Headphones,1,11.99,06/07/19 10:13,"555 Adams St, San Francisco, CA 94016" -214814,AA Batteries (4-pack),1,3.84,06/26/19 14:42,"241 Pine St, New York City, NY 10001" -214815,Lightning Charging Cable,1,14.95,06/12/19 13:20,"785 River St, San Francisco, CA 94016" -214816,27in 4K Gaming Monitor,1,389.99,06/27/19 01:15,"529 11th St, San Francisco, CA 94016" -214817,Bose SoundSport Headphones,1,99.99,06/22/19 08:11,"364 Meadow St, Austin, TX 73301" -214818,Wired Headphones,2,11.99,06/17/19 15:33,"298 Adams St, Los Angeles, CA 90001" -214819,Macbook Pro Laptop,1,1700,06/11/19 03:32,"856 Dogwood St, San Francisco, CA 94016" -214820,Wired Headphones,1,11.99,06/11/19 23:45,"766 Jackson St, Los Angeles, CA 90001" -214821,Wired Headphones,1,11.99,06/26/19 16:12,"215 Adams St, Los Angeles, CA 90001" -214822,27in FHD Monitor,1,149.99,06/25/19 14:17,"745 Jefferson St, Seattle, WA 98101" -214823,iPhone,1,700,06/11/19 15:17,"479 Hickory St, Seattle, WA 98101" -214823,Lightning Charging Cable,2,14.95,06/11/19 15:17,"479 Hickory St, Seattle, WA 98101" -214823,Wired Headphones,1,11.99,06/11/19 15:17,"479 Hickory St, Seattle, WA 98101" -214824,USB-C Charging Cable,1,11.95,06/26/19 16:46,"914 5th St, San Francisco, CA 94016" -214825,27in FHD Monitor,1,149.99,06/12/19 14:41,"436 Madison St, San Francisco, CA 94016" -214826,USB-C Charging Cable,1,11.95,06/28/19 20:51,"34 Forest St, Seattle, WA 98101" -214827,USB-C Charging Cable,1,11.95,06/24/19 13:23,"72 Maple St, Dallas, TX 75001" -214828,AAA Batteries (4-pack),1,2.99,06/18/19 21:39,"145 13th St, Dallas, TX 75001" -214829,Google Phone,1,600,06/09/19 04:14,"779 2nd St, New York City, NY 10001" -214830,Wired Headphones,1,11.99,06/02/19 16:09,"258 Ridge St, Atlanta, GA 30301" -214831,Lightning Charging Cable,1,14.95,06/08/19 12:03,"879 Meadow St, San Francisco, CA 94016" -214832,27in 4K Gaming Monitor,1,389.99,06/14/19 19:11,"616 Dogwood St, Boston, MA 02215" -214833,Bose SoundSport Headphones,1,99.99,06/15/19 18:35,"878 Lake St, San Francisco, CA 94016" -214834,iPhone,1,700,06/26/19 13:52,"282 Park St, Boston, MA 02215" -214834,Lightning Charging Cable,1,14.95,06/26/19 13:52,"282 Park St, Boston, MA 02215" -214835,AAA Batteries (4-pack),3,2.99,06/06/19 11:07,"559 Adams St, New York City, NY 10001" -214836,Wired Headphones,1,11.99,06/07/19 10:23,"962 Wilson St, Atlanta, GA 30301" -214837,Wired Headphones,1,11.99,06/08/19 23:45,"217 Cedar St, Atlanta, GA 30301" -214838,Google Phone,1,600,06/23/19 19:21,"488 Highland St, Atlanta, GA 30301" -214839,iPhone,1,700,06/19/19 18:38,"852 Johnson St, Los Angeles, CA 90001" -214840,Apple Airpods Headphones,1,150,06/22/19 19:40,"573 Cedar St, San Francisco, CA 94016" -214841,AA Batteries (4-pack),1,3.84,06/20/19 12:34,"480 Hill St, Dallas, TX 75001" -214842,AA Batteries (4-pack),1,3.84,06/08/19 15:06,"891 Pine St, San Francisco, CA 94016" -214843,AA Batteries (4-pack),1,3.84,06/20/19 18:13,"368 Main St, San Francisco, CA 94016" -214844,Apple Airpods Headphones,1,150,06/03/19 07:55,"80 13th St, San Francisco, CA 94016" -214845,27in FHD Monitor,1,149.99,06/30/19 13:48,"193 Pine St, Austin, TX 73301" -214846,AAA Batteries (4-pack),4,2.99,06/11/19 06:57,"356 Lincoln St, Boston, MA 02215" -214847,Lightning Charging Cable,1,14.95,06/01/19 07:19,"455 Elm St, Los Angeles, CA 90001" -214848,Wired Headphones,1,11.99,06/08/19 00:36,"821 Washington St, Dallas, TX 75001" -214849,27in FHD Monitor,1,149.99,06/18/19 02:02,"322 Dogwood St, San Francisco, CA 94016" -214850,Lightning Charging Cable,1,14.95,06/20/19 19:25,"972 10th St, Atlanta, GA 30301" -214851,27in 4K Gaming Monitor,1,389.99,06/08/19 19:12,"367 5th St, Los Angeles, CA 90001" -214852,iPhone,1,700,06/17/19 11:01,"660 Hickory St, Seattle, WA 98101" -214853,27in 4K Gaming Monitor,1,389.99,06/04/19 19:30,"217 11th St, Los Angeles, CA 90001" -214854,Wired Headphones,1,11.99,06/01/19 15:35,"86 Ridge St, Los Angeles, CA 90001" -214855,USB-C Charging Cable,1,11.95,06/02/19 21:35,"528 Main St, San Francisco, CA 94016" -214856,iPhone,1,700,06/09/19 21:27,"353 Forest St, Los Angeles, CA 90001" -214857,USB-C Charging Cable,1,11.95,06/20/19 16:16,"794 Dogwood St, Los Angeles, CA 90001" -214858,Apple Airpods Headphones,1,150,06/21/19 08:13,"4 Pine St, Atlanta, GA 30301" -214859,USB-C Charging Cable,1,11.95,06/23/19 17:26,"182 Forest St, Boston, MA 02215" -214860,Apple Airpods Headphones,1,150,06/26/19 16:52,"298 Jackson St, Los Angeles, CA 90001" -214861,USB-C Charging Cable,1,11.95,06/20/19 08:04,"89 Washington St, New York City, NY 10001" -214862,Wired Headphones,1,11.99,06/29/19 17:30,"183 South St, Portland, OR 97035" -214863,USB-C Charging Cable,3,11.95,06/11/19 21:07,"321 Walnut St, Boston, MA 02215" -214864,ThinkPad Laptop,1,999.99,06/22/19 15:29,"473 Church St, Los Angeles, CA 90001" -214865,Lightning Charging Cable,1,14.95,06/17/19 18:21,"946 Lake St, Boston, MA 02215" -214866,AAA Batteries (4-pack),1,2.99,06/29/19 11:30,"209 Chestnut St, Portland, OR 97035" -214867,Google Phone,1,600,06/13/19 12:14,"238 Highland St, Seattle, WA 98101" -214868,Wired Headphones,1,11.99,06/12/19 17:38,"352 6th St, Dallas, TX 75001" -214869,27in 4K Gaming Monitor,1,389.99,06/07/19 22:41,"349 2nd St, Boston, MA 02215" -214870,AA Batteries (4-pack),1,3.84,06/02/19 23:09,"230 Lake St, Boston, MA 02215" -214871,USB-C Charging Cable,1,11.95,06/20/19 14:39,"492 Walnut St, Atlanta, GA 30301" -214872,Lightning Charging Cable,1,14.95,06/28/19 10:49,"574 Center St, Austin, TX 73301" -214873,Wired Headphones,1,11.99,06/16/19 16:07,"535 Center St, San Francisco, CA 94016" -214874,27in 4K Gaming Monitor,1,389.99,06/19/19 18:17,"831 Wilson St, Los Angeles, CA 90001" -214875,ThinkPad Laptop,1,999.99,06/23/19 17:13,"9 Forest St, New York City, NY 10001" -214876,Apple Airpods Headphones,1,150,06/07/19 18:10,"765 11th St, Boston, MA 02215" -214877,iPhone,1,700,06/10/19 11:14,"261 Main St, New York City, NY 10001" -214878,Bose SoundSport Headphones,1,99.99,06/26/19 14:52,"478 Lakeview St, New York City, NY 10001" -214879,USB-C Charging Cable,1,11.95,06/27/19 18:16,"52 7th St, Portland, ME 04101" -214880,Google Phone,1,600,06/25/19 07:59,"563 Sunset St, San Francisco, CA 94016" -214880,USB-C Charging Cable,1,11.95,06/25/19 07:59,"563 Sunset St, San Francisco, CA 94016" -214881,27in FHD Monitor,1,149.99,06/21/19 08:58,"310 Lake St, Boston, MA 02215" -214882,Wired Headphones,2,11.99,06/04/19 20:52,"551 Spruce St, Boston, MA 02215" -214883,USB-C Charging Cable,1,11.95,06/18/19 09:52,"362 Spruce St, San Francisco, CA 94016" -214884,Lightning Charging Cable,1,14.95,06/30/19 10:48,"221 South St, Los Angeles, CA 90001" -214885,AA Batteries (4-pack),1,3.84,06/28/19 15:20,"790 Maple St, San Francisco, CA 94016" -214886,AA Batteries (4-pack),2,3.84,06/06/19 11:29,"429 12th St, San Francisco, CA 94016" -214887,Lightning Charging Cable,1,14.95,06/18/19 19:50,"828 Church St, San Francisco, CA 94016" -214888,Lightning Charging Cable,1,14.95,06/06/19 16:20,"110 Pine St, Seattle, WA 98101" -214889,Bose SoundSport Headphones,1,99.99,06/17/19 12:41,"825 Jefferson St, Los Angeles, CA 90001" -214890,AA Batteries (4-pack),1,3.84,06/02/19 13:12,"268 Hill St, Los Angeles, CA 90001" -214891,AAA Batteries (4-pack),1,2.99,06/25/19 20:28,"33 Lincoln St, Dallas, TX 75001" -214892,iPhone,1,700,06/01/19 11:20,"761 Highland St, New York City, NY 10001" -214893,USB-C Charging Cable,2,11.95,06/10/19 17:44,"430 6th St, New York City, NY 10001" -214894,Lightning Charging Cable,1,14.95,06/25/19 20:54,"82 14th St, Boston, MA 02215" -214895,AAA Batteries (4-pack),1,2.99,06/16/19 19:38,"942 North St, New York City, NY 10001" -214896,Lightning Charging Cable,1,14.95,06/30/19 12:01,"114 Madison St, Portland, ME 04101" -214897,Bose SoundSport Headphones,1,99.99,06/16/19 22:39,"516 1st St, San Francisco, CA 94016" -214898,USB-C Charging Cable,1,11.95,06/27/19 16:49,"235 Hickory St, San Francisco, CA 94016" -214899,Google Phone,1,600,06/24/19 18:53,"599 Jackson St, Boston, MA 02215" -214899,USB-C Charging Cable,1,11.95,06/24/19 18:53,"599 Jackson St, Boston, MA 02215" -214900,AA Batteries (4-pack),1,3.84,06/08/19 12:42,"483 Meadow St, Boston, MA 02215" -214901,AA Batteries (4-pack),1,3.84,06/24/19 10:26,"881 5th St, New York City, NY 10001" -214902,AAA Batteries (4-pack),3,2.99,06/26/19 10:02,"792 River St, Portland, OR 97035" -214903,iPhone,1,700,06/07/19 15:21,"328 North St, Dallas, TX 75001" -214904,27in FHD Monitor,1,149.99,06/09/19 22:18,"111 Spruce St, Dallas, TX 75001" -214905,Lightning Charging Cable,1,14.95,06/18/19 09:29,"136 Washington St, Seattle, WA 98101" -214906,AA Batteries (4-pack),1,3.84,06/01/19 08:00,"459 Adams St, Seattle, WA 98101" -214907,AA Batteries (4-pack),2,3.84,06/19/19 13:57,"763 Center St, New York City, NY 10001" -214908,Bose SoundSport Headphones,1,99.99,06/23/19 14:07,"641 14th St, New York City, NY 10001" -214909,Apple Airpods Headphones,1,150,06/05/19 18:38,"884 7th St, San Francisco, CA 94016" -214910,Google Phone,1,600,06/04/19 14:19,"385 13th St, Atlanta, GA 30301" -214910,Macbook Pro Laptop,1,1700,06/04/19 14:19,"385 13th St, Atlanta, GA 30301" -214911,Bose SoundSport Headphones,1,99.99,06/12/19 08:35,"189 Jefferson St, Seattle, WA 98101" -214912,Lightning Charging Cable,2,14.95,06/27/19 13:57,"352 2nd St, Boston, MA 02215" -214913,20in Monitor,1,109.99,06/01/19 17:28,"779 Park St, Boston, MA 02215" -214914,Lightning Charging Cable,1,14.95,06/13/19 18:20,"679 Lakeview St, Seattle, WA 98101" -214915,ThinkPad Laptop,1,999.99,06/28/19 21:46,"545 4th St, San Francisco, CA 94016" -214916,USB-C Charging Cable,1,11.95,06/17/19 08:25,"490 Maple St, San Francisco, CA 94016" -214917,Lightning Charging Cable,1,14.95,06/27/19 19:11,"693 South St, New York City, NY 10001" -214918,Lightning Charging Cable,1,14.95,06/13/19 11:03,"26 Elm St, New York City, NY 10001" -214919,USB-C Charging Cable,1,11.95,06/02/19 12:55,"58 Lakeview St, Portland, OR 97035" -214920,20in Monitor,1,109.99,06/09/19 20:30,"425 Madison St, San Francisco, CA 94016" -214921,Google Phone,1,600,06/16/19 22:08,"357 Elm St, San Francisco, CA 94016" -214922,Flatscreen TV,1,300,06/05/19 09:52,"516 Adams St, Los Angeles, CA 90001" -214923,27in FHD Monitor,1,149.99,06/26/19 10:56,"712 Center St, San Francisco, CA 94016" -214924,AA Batteries (4-pack),1,3.84,06/04/19 17:12,"195 2nd St, Austin, TX 73301" -214925,27in 4K Gaming Monitor,1,389.99,06/19/19 13:31,"787 Spruce St, San Francisco, CA 94016" -214926,Apple Airpods Headphones,1,150,06/24/19 12:22,"497 Cedar St, Seattle, WA 98101" -214927,Apple Airpods Headphones,1,150,06/24/19 09:10,"253 Johnson St, Los Angeles, CA 90001" -214928,Apple Airpods Headphones,1,150,06/29/19 18:13,"124 Highland St, Seattle, WA 98101" -214929,Apple Airpods Headphones,1,150,06/05/19 19:43,"893 Church St, San Francisco, CA 94016" -214930,AAA Batteries (4-pack),1,2.99,06/25/19 16:47,"39 Forest St, San Francisco, CA 94016" -214931,AAA Batteries (4-pack),1,2.99,06/02/19 17:05,"990 4th St, Boston, MA 02215" -214932,ThinkPad Laptop,1,999.99,06/09/19 16:22,"406 6th St, Seattle, WA 98101" -214933,27in FHD Monitor,1,149.99,06/08/19 20:12,"410 1st St, San Francisco, CA 94016" -214934,AAA Batteries (4-pack),1,2.99,06/06/19 14:11,"19 Washington St, New York City, NY 10001" -214935,Wired Headphones,1,11.99,06/05/19 11:47,"683 Elm St, San Francisco, CA 94016" -214936,Apple Airpods Headphones,1,150,06/19/19 11:40,"40 Spruce St, Dallas, TX 75001" -214937,Lightning Charging Cable,1,14.95,06/08/19 06:30,"104 Sunset St, Atlanta, GA 30301" -214938,Lightning Charging Cable,1,14.95,06/05/19 09:26,"113 1st St, New York City, NY 10001" -214939,20in Monitor,1,109.99,06/12/19 20:26,"278 Jackson St, Seattle, WA 98101" -214940,Google Phone,1,600,06/29/19 01:07,"233 River St, San Francisco, CA 94016" -214941,USB-C Charging Cable,1,11.95,06/04/19 20:08,"371 13th St, Los Angeles, CA 90001" -214942,Lightning Charging Cable,1,14.95,06/11/19 09:08,"326 Lincoln St, New York City, NY 10001" -214943,Flatscreen TV,1,300,06/20/19 18:35,"684 4th St, Atlanta, GA 30301" -214944,AA Batteries (4-pack),1,3.84,06/21/19 11:48,"434 Park St, New York City, NY 10001" -214945,AA Batteries (4-pack),1,3.84,06/19/19 14:54,"263 Walnut St, New York City, NY 10001" -214946,Lightning Charging Cable,1,14.95,06/06/19 12:23,"508 2nd St, San Francisco, CA 94016" -214947,Bose SoundSport Headphones,1,99.99,06/09/19 14:25,"71 12th St, San Francisco, CA 94016" -214948,AA Batteries (4-pack),2,3.84,06/07/19 18:05,"205 4th St, San Francisco, CA 94016" -214949,Apple Airpods Headphones,1,150,06/18/19 15:23,"198 Church St, Boston, MA 02215" -214950,USB-C Charging Cable,1,11.95,06/17/19 18:02,"418 Lincoln St, Dallas, TX 75001" -214951,Lightning Charging Cable,1,14.95,06/27/19 20:37,"291 9th St, Austin, TX 73301" -214952,27in 4K Gaming Monitor,1,389.99,06/09/19 22:20,"361 West St, Boston, MA 02215" -214953,Lightning Charging Cable,1,14.95,06/08/19 17:53,"500 Ridge St, Seattle, WA 98101" -214954,AA Batteries (4-pack),1,3.84,06/15/19 15:29,"346 Washington St, Boston, MA 02215" -214955,AAA Batteries (4-pack),1,2.99,06/01/19 12:39,"864 4th St, Boston, MA 02215" -214956,iPhone,1,700,06/15/19 17:23,"633 Johnson St, San Francisco, CA 94016" -214957,Macbook Pro Laptop,1,1700,06/21/19 21:25,"372 Sunset St, New York City, NY 10001" -214958,Lightning Charging Cable,1,14.95,06/16/19 18:19,"665 Main St, New York City, NY 10001" -214959,Vareebadd Phone,1,400,06/20/19 08:25,"643 Main St, Atlanta, GA 30301" -214959,Wired Headphones,1,11.99,06/20/19 08:25,"643 Main St, Atlanta, GA 30301" -214960,Bose SoundSport Headphones,1,99.99,06/20/19 04:29,"616 Cedar St, Portland, OR 97035" -214960,Bose SoundSport Headphones,1,99.99,06/20/19 04:29,"616 Cedar St, Portland, OR 97035" -214961,Apple Airpods Headphones,1,150,06/28/19 15:36,"914 Sunset St, Austin, TX 73301" -214962,Wired Headphones,1,11.99,06/19/19 12:29,"190 Willow St, Los Angeles, CA 90001" -214963,Apple Airpods Headphones,1,150,06/09/19 13:57,"282 14th St, San Francisco, CA 94016" -214964,AA Batteries (4-pack),2,3.84,06/18/19 19:53,"89 10th St, San Francisco, CA 94016" -214965,Lightning Charging Cable,1,14.95,06/26/19 08:14,"582 Johnson St, San Francisco, CA 94016" -214966,USB-C Charging Cable,1,11.95,06/22/19 19:33,"460 12th St, Los Angeles, CA 90001" -214967,iPhone,1,700,06/13/19 14:07,"243 Church St, Portland, OR 97035" -214968,Wired Headphones,1,11.99,06/20/19 19:26,"596 Highland St, Boston, MA 02215" -214969,ThinkPad Laptop,1,999.99,06/11/19 15:32,"150 Spruce St, New York City, NY 10001" -214970,Apple Airpods Headphones,1,150,06/14/19 18:00,"914 Pine St, Seattle, WA 98101" -214971,AA Batteries (4-pack),1,3.84,06/20/19 15:37,"402 North St, New York City, NY 10001" -214972,Wired Headphones,1,11.99,06/05/19 09:05,"145 Hill St, Los Angeles, CA 90001" -214973,AAA Batteries (4-pack),2,2.99,06/05/19 20:57,"594 4th St, New York City, NY 10001" -214973,27in 4K Gaming Monitor,1,389.99,06/05/19 20:57,"594 4th St, New York City, NY 10001" -214974,USB-C Charging Cable,1,11.95,06/07/19 12:30,"557 Forest St, New York City, NY 10001" -214975,Lightning Charging Cable,1,14.95,06/13/19 06:33,"255 Cherry St, Seattle, WA 98101" -214976,iPhone,1,700,06/24/19 23:41,"287 6th St, San Francisco, CA 94016" -214976,iPhone,1,700,06/24/19 23:41,"287 6th St, San Francisco, CA 94016" -214977,Bose SoundSport Headphones,1,99.99,06/20/19 00:29,"786 Lincoln St, Atlanta, GA 30301" -214978,Bose SoundSport Headphones,1,99.99,06/06/19 10:45,"962 Chestnut St, Dallas, TX 75001" -214979,Apple Airpods Headphones,1,150,06/15/19 20:16,"142 South St, Los Angeles, CA 90001" -214980,Lightning Charging Cable,1,14.95,06/02/19 08:58,"105 7th St, New York City, NY 10001" -214981,Lightning Charging Cable,1,14.95,06/25/19 13:33,"801 Jefferson St, Seattle, WA 98101" -214982,Lightning Charging Cable,1,14.95,06/21/19 17:48,"990 5th St, Dallas, TX 75001" -214983,USB-C Charging Cable,1,11.95,06/30/19 00:04,"770 Wilson St, Boston, MA 02215" -214984,Lightning Charging Cable,1,14.95,06/13/19 14:23,"462 Dogwood St, Portland, OR 97035" -214985,Google Phone,1,600,06/04/19 21:23,"669 Elm St, Boston, MA 02215" -214986,Bose SoundSport Headphones,1,99.99,07/01/19 02:59,"877 Wilson St, Boston, MA 02215" -214987,AAA Batteries (4-pack),1,2.99,06/06/19 19:36,"145 Cherry St, San Francisco, CA 94016" -214988,34in Ultrawide Monitor,1,379.99,06/04/19 04:49,"958 4th St, Los Angeles, CA 90001" -214988,Lightning Charging Cable,1,14.95,06/04/19 04:49,"958 4th St, Los Angeles, CA 90001" -214989,Flatscreen TV,1,300,06/25/19 18:41,"572 West St, Los Angeles, CA 90001" -214990,34in Ultrawide Monitor,1,379.99,06/27/19 19:28,"894 Maple St, Austin, TX 73301" -214990,AAA Batteries (4-pack),2,2.99,06/27/19 19:28,"894 Maple St, Austin, TX 73301" -214991,Apple Airpods Headphones,1,150,06/09/19 19:57,"44 Highland St, Los Angeles, CA 90001" -214992,USB-C Charging Cable,1,11.95,06/21/19 11:27,"102 Lakeview St, New York City, NY 10001" -214993,AA Batteries (4-pack),2,3.84,06/30/19 23:49,"458 Spruce St, New York City, NY 10001" -214994,Lightning Charging Cable,1,14.95,06/14/19 09:08,"708 Park St, New York City, NY 10001" -214995,27in FHD Monitor,1,149.99,06/15/19 14:18,"122 Pine St, San Francisco, CA 94016" -214996,Lightning Charging Cable,1,14.95,06/26/19 13:26,"172 Cherry St, Seattle, WA 98101" -214997,AAA Batteries (4-pack),1,2.99,06/22/19 14:15,"21 Chestnut St, New York City, NY 10001" -214998,AAA Batteries (4-pack),6,2.99,06/03/19 15:55,"363 Hickory St, San Francisco, CA 94016" -214999,AA Batteries (4-pack),1,3.84,06/23/19 08:57,"886 North St, Los Angeles, CA 90001" -215000,AAA Batteries (4-pack),1,2.99,06/10/19 17:40,"558 Sunset St, Portland, OR 97035" -215001,USB-C Charging Cable,1,11.95,06/11/19 12:35,"666 Willow St, San Francisco, CA 94016" -215002,34in Ultrawide Monitor,1,379.99,06/26/19 17:25,"210 Lincoln St, Dallas, TX 75001" -215003,Wired Headphones,1,11.99,06/03/19 11:41,"25 Walnut St, Boston, MA 02215" -215004,Apple Airpods Headphones,1,150,06/04/19 22:55,"428 Church St, New York City, NY 10001" -215005,27in FHD Monitor,2,149.99,06/19/19 14:48,"905 Main St, Dallas, TX 75001" -215006,USB-C Charging Cable,1,11.95,06/19/19 15:21,"738 4th St, Austin, TX 73301" -215007,Lightning Charging Cable,1,14.95,06/24/19 13:28,"908 Center St, San Francisco, CA 94016" -215008,USB-C Charging Cable,2,11.95,06/04/19 10:06,"471 9th St, Atlanta, GA 30301" -215009,Apple Airpods Headphones,1,150,06/20/19 15:58,"132 River St, San Francisco, CA 94016" -215010,Lightning Charging Cable,1,14.95,06/15/19 20:20,"993 10th St, Boston, MA 02215" -215011,Wired Headphones,1,11.99,06/29/19 17:09,"736 10th St, Boston, MA 02215" -215012,AA Batteries (4-pack),1,3.84,06/20/19 08:42,"529 Maple St, Los Angeles, CA 90001" -215013,Lightning Charging Cable,1,14.95,06/04/19 08:25,"958 Walnut St, San Francisco, CA 94016" -215014,AAA Batteries (4-pack),1,2.99,06/07/19 10:46,"465 Lake St, Portland, OR 97035" -215015,USB-C Charging Cable,1,11.95,06/29/19 15:16,"646 4th St, New York City, NY 10001" -215016,AA Batteries (4-pack),1,3.84,06/19/19 19:03,"745 Hill St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -215017,Flatscreen TV,1,300,06/16/19 16:25,"687 10th St, New York City, NY 10001" -215018,Wired Headphones,1,11.99,06/18/19 12:33,"169 13th St, San Francisco, CA 94016" -215019,Apple Airpods Headphones,1,150,06/26/19 13:51,"313 Hickory St, Atlanta, GA 30301" -215020,20in Monitor,1,109.99,06/19/19 19:57,"496 Church St, San Francisco, CA 94016" -215021,27in FHD Monitor,1,149.99,06/15/19 14:25,"38 Pine St, New York City, NY 10001" -215022,AAA Batteries (4-pack),1,2.99,06/15/19 22:15,"297 Maple St, San Francisco, CA 94016" -215023,Bose SoundSport Headphones,1,99.99,06/24/19 13:53,"838 Ridge St, Los Angeles, CA 90001" -215024,27in 4K Gaming Monitor,1,389.99,06/26/19 10:16,"469 Maple St, New York City, NY 10001" -215025,Lightning Charging Cable,1,14.95,06/05/19 15:04,"902 Center St, Dallas, TX 75001" -215026,27in FHD Monitor,1,149.99,06/27/19 19:40,"664 Cedar St, San Francisco, CA 94016" -215027,Lightning Charging Cable,1,14.95,06/08/19 13:07,"572 1st St, San Francisco, CA 94016" -215028,Google Phone,1,600,06/06/19 10:11,"583 Chestnut St, New York City, NY 10001" -215028,Bose SoundSport Headphones,1,99.99,06/06/19 10:11,"583 Chestnut St, New York City, NY 10001" -215029,USB-C Charging Cable,1,11.95,06/11/19 17:47,"208 Johnson St, Portland, OR 97035" -215030,Lightning Charging Cable,1,14.95,06/15/19 09:46,"653 Lake St, Portland, ME 04101" -215031,Macbook Pro Laptop,1,1700,06/08/19 08:46,"337 13th St, Atlanta, GA 30301" -215032,Apple Airpods Headphones,1,150,06/27/19 21:41,"154 Lake St, New York City, NY 10001" -215033,iPhone,1,700,06/01/19 12:56,"969 Lakeview St, Los Angeles, CA 90001" -215033,Lightning Charging Cable,1,14.95,06/01/19 12:56,"969 Lakeview St, Los Angeles, CA 90001" -215034,AA Batteries (4-pack),2,3.84,06/23/19 20:51,"777 7th St, Boston, MA 02215" -215035,AA Batteries (4-pack),1,3.84,06/15/19 19:27,"692 Jefferson St, Seattle, WA 98101" -215036,AA Batteries (4-pack),1,3.84,06/01/19 12:25,"828 6th St, Dallas, TX 75001" -215037,AAA Batteries (4-pack),1,2.99,06/16/19 22:23,"149 Spruce St, Los Angeles, CA 90001" -215038,Flatscreen TV,1,300,06/04/19 10:59,"898 11th St, Boston, MA 02215" -215039,27in 4K Gaming Monitor,1,389.99,06/23/19 09:33,"871 8th St, Boston, MA 02215" -215040,Macbook Pro Laptop,1,1700,06/11/19 11:34,"298 10th St, New York City, NY 10001" -215041,ThinkPad Laptop,1,999.99,06/07/19 12:48,"17 9th St, New York City, NY 10001" -215042,USB-C Charging Cable,1,11.95,06/13/19 12:03,"950 6th St, San Francisco, CA 94016" -215043,AA Batteries (4-pack),1,3.84,06/15/19 21:13,"90 Sunset St, San Francisco, CA 94016" -215044,Wired Headphones,1,11.99,06/06/19 01:16,"895 Jefferson St, Seattle, WA 98101" -215045,AAA Batteries (4-pack),1,2.99,06/02/19 19:49,"837 Park St, New York City, NY 10001" -215046,Bose SoundSport Headphones,1,99.99,06/24/19 22:43,"363 Jefferson St, New York City, NY 10001" -215047,Apple Airpods Headphones,1,150,06/20/19 06:57,"56 Pine St, Seattle, WA 98101" -215048,AA Batteries (4-pack),2,3.84,06/04/19 11:40,"731 Center St, Portland, OR 97035" -215049,AA Batteries (4-pack),1,3.84,06/02/19 13:50,"112 Lincoln St, Dallas, TX 75001" -215050,USB-C Charging Cable,1,11.95,06/24/19 09:37,"415 Elm St, San Francisco, CA 94016" -215051,Apple Airpods Headphones,1,150,06/11/19 13:49,"550 Lake St, San Francisco, CA 94016" -215052,Wired Headphones,1,11.99,06/12/19 15:01,"583 Main St, San Francisco, CA 94016" -215053,Bose SoundSport Headphones,1,99.99,06/26/19 20:58,"890 Chestnut St, San Francisco, CA 94016" -215054,Wired Headphones,2,11.99,06/05/19 15:37,"67 Jackson St, Dallas, TX 75001" -215055,34in Ultrawide Monitor,1,379.99,06/25/19 05:03,"52 5th St, Atlanta, GA 30301" -215056,Apple Airpods Headphones,1,150,06/25/19 08:42,"996 Forest St, San Francisco, CA 94016" -215057,27in 4K Gaming Monitor,1,389.99,06/02/19 11:35,"312 Forest St, San Francisco, CA 94016" -215058,AAA Batteries (4-pack),1,2.99,06/15/19 01:47,"583 West St, Dallas, TX 75001" -215059,Apple Airpods Headphones,1,150,06/27/19 22:30,"112 Cherry St, San Francisco, CA 94016" -215060,AA Batteries (4-pack),1,3.84,06/25/19 02:42,"851 Willow St, San Francisco, CA 94016" -215061,USB-C Charging Cable,1,11.95,06/25/19 09:10,"461 Forest St, New York City, NY 10001" -215062,27in 4K Gaming Monitor,1,389.99,06/20/19 05:06,"115 14th St, Los Angeles, CA 90001" -215063,Apple Airpods Headphones,1,150,06/02/19 08:20,"133 Jackson St, Boston, MA 02215" -215064,Lightning Charging Cable,1,14.95,06/05/19 00:52,"67 Washington St, San Francisco, CA 94016" -215065,AA Batteries (4-pack),1,3.84,06/03/19 11:35,"648 Cherry St, San Francisco, CA 94016" -215066,Wired Headphones,1,11.99,06/13/19 01:00,"909 Hill St, New York City, NY 10001" -215067,Wired Headphones,1,11.99,06/18/19 21:26,"475 9th St, San Francisco, CA 94016" -215068,27in FHD Monitor,1,149.99,06/04/19 11:31,"958 Walnut St, San Francisco, CA 94016" -215069,USB-C Charging Cable,1,11.95,06/13/19 08:34,"385 Madison St, San Francisco, CA 94016" -215070,Google Phone,1,600,06/07/19 12:35,"888 11th St, Austin, TX 73301" -215071,Lightning Charging Cable,1,14.95,06/28/19 22:04,"104 11th St, San Francisco, CA 94016" -215072,Lightning Charging Cable,1,14.95,06/28/19 11:34,"190 Johnson St, Los Angeles, CA 90001" -215073,Bose SoundSport Headphones,1,99.99,06/21/19 12:52,"612 Sunset St, Atlanta, GA 30301" -215074,27in FHD Monitor,1,149.99,06/23/19 16:22,"358 Johnson St, Los Angeles, CA 90001" -215075,USB-C Charging Cable,1,11.95,06/19/19 11:56,"871 Johnson St, Boston, MA 02215" -215076,Lightning Charging Cable,1,14.95,06/23/19 10:45,"350 Dogwood St, New York City, NY 10001" -215077,AAA Batteries (4-pack),1,2.99,06/09/19 10:32,"819 Church St, San Francisco, CA 94016" -215078,AA Batteries (4-pack),1,3.84,06/20/19 13:26,"269 Church St, Boston, MA 02215" -215079,AA Batteries (4-pack),1,3.84,06/15/19 18:19,"930 Main St, Los Angeles, CA 90001" -215080,Lightning Charging Cable,1,14.95,06/11/19 03:17,"529 South St, San Francisco, CA 94016" -215081,AAA Batteries (4-pack),3,2.99,06/22/19 21:26,"78 North St, Dallas, TX 75001" -215082,iPhone,1,700,06/29/19 00:12,"121 Chestnut St, Los Angeles, CA 90001" -215082,Lightning Charging Cable,1,14.95,06/29/19 00:12,"121 Chestnut St, Los Angeles, CA 90001" -215083,34in Ultrawide Monitor,1,379.99,06/29/19 14:34,"580 Johnson St, San Francisco, CA 94016" -215084,Apple Airpods Headphones,1,150,06/15/19 21:56,"669 6th St, San Francisco, CA 94016" -215085,Bose SoundSport Headphones,1,99.99,06/15/19 22:13,"947 14th St, Atlanta, GA 30301" -215086,AA Batteries (4-pack),1,3.84,06/03/19 21:45,"175 Highland St, Atlanta, GA 30301" -215087,Wired Headphones,1,11.99,06/18/19 21:49,"104 Hill St, Dallas, TX 75001" -215088,AA Batteries (4-pack),2,3.84,06/06/19 16:31,"884 14th St, Dallas, TX 75001" -215089,AAA Batteries (4-pack),2,2.99,06/21/19 13:33,"492 Elm St, Seattle, WA 98101" -215090,Bose SoundSport Headphones,1,99.99,06/23/19 21:00,"55 Ridge St, Dallas, TX 75001" -215091,AAA Batteries (4-pack),1,2.99,06/09/19 23:22,"725 Washington St, Los Angeles, CA 90001" -215092,27in FHD Monitor,1,149.99,06/17/19 00:38,"45 Pine St, San Francisco, CA 94016" -215093,AAA Batteries (4-pack),1,2.99,06/23/19 18:23,"202 1st St, Portland, OR 97035" -215094,Wired Headphones,1,11.99,06/09/19 17:28,"829 13th St, Los Angeles, CA 90001" -215095,AA Batteries (4-pack),1,3.84,06/07/19 15:14,"459 Johnson St, San Francisco, CA 94016" -215096,Lightning Charging Cable,1,14.95,06/21/19 12:44,"633 Cherry St, San Francisco, CA 94016" -215097,Wired Headphones,1,11.99,06/09/19 11:24,"746 Church St, Portland, OR 97035" -215098,Lightning Charging Cable,1,14.95,06/14/19 10:17,"959 South St, Dallas, TX 75001" -215099,AAA Batteries (4-pack),2,2.99,06/19/19 13:15,"258 Chestnut St, Austin, TX 73301" -215100,Google Phone,1,600,06/16/19 10:20,"798 North St, New York City, NY 10001" -215100,Wired Headphones,1,11.99,06/16/19 10:20,"798 North St, New York City, NY 10001" -215101,AA Batteries (4-pack),1,3.84,06/20/19 10:20,"550 Dogwood St, New York City, NY 10001" -215102,ThinkPad Laptop,1,999.99,06/01/19 11:05,"879 4th St, San Francisco, CA 94016" -215103,Google Phone,1,600,06/28/19 22:39,"478 Jefferson St, San Francisco, CA 94016" -215104,Lightning Charging Cable,1,14.95,06/21/19 19:58,"58 Center St, Los Angeles, CA 90001" -215105,Google Phone,1,600,06/18/19 18:08,"646 Cherry St, Los Angeles, CA 90001" -215105,USB-C Charging Cable,1,11.95,06/18/19 18:08,"646 Cherry St, Los Angeles, CA 90001" -215106,Lightning Charging Cable,1,14.95,06/28/19 11:02,"901 10th St, Portland, OR 97035" -215107,Lightning Charging Cable,1,14.95,06/08/19 15:59,"150 Lakeview St, Portland, OR 97035" -215108,AA Batteries (4-pack),1,3.84,06/28/19 20:30,"865 Chestnut St, Seattle, WA 98101" -215109,AAA Batteries (4-pack),1,2.99,06/03/19 12:46,"31 Madison St, Austin, TX 73301" -215110,27in FHD Monitor,1,149.99,06/04/19 10:43,"927 Maple St, Portland, OR 97035" -215111,Wired Headphones,1,11.99,06/01/19 10:51,"865 Wilson St, New York City, NY 10001" -215112,Lightning Charging Cable,1,14.95,06/07/19 18:30,"846 4th St, New York City, NY 10001" -215113,AA Batteries (4-pack),1,3.84,06/27/19 10:13,"331 1st St, Los Angeles, CA 90001" -215114,27in 4K Gaming Monitor,1,389.99,06/18/19 10:33,"601 2nd St, New York City, NY 10001" -215115,Bose SoundSport Headphones,1,99.99,06/05/19 22:38,"198 Meadow St, Los Angeles, CA 90001" -215116,Bose SoundSport Headphones,1,99.99,06/26/19 21:24,"543 Hickory St, Boston, MA 02215" -215117,USB-C Charging Cable,1,11.95,06/20/19 08:24,"786 Wilson St, San Francisco, CA 94016" -215118,AAA Batteries (4-pack),2,2.99,06/20/19 12:52,"651 6th St, San Francisco, CA 94016" -215119,Google Phone,1,600,06/01/19 22:44,"617 Main St, Seattle, WA 98101" -215120,Bose SoundSport Headphones,1,99.99,06/22/19 03:53,"640 Madison St, San Francisco, CA 94016" -215121,Apple Airpods Headphones,1,150,06/08/19 17:54,"254 Spruce St, Austin, TX 73301" -215122,Apple Airpods Headphones,1,150,06/20/19 20:05,"107 11th St, San Francisco, CA 94016" -215123,Lightning Charging Cable,1,14.95,06/25/19 12:23,"702 River St, Los Angeles, CA 90001" -215124,27in 4K Gaming Monitor,1,389.99,06/30/19 09:25,"597 12th St, Dallas, TX 75001" -215125,ThinkPad Laptop,1,999.99,06/03/19 12:23,"384 4th St, San Francisco, CA 94016" -215126,Bose SoundSport Headphones,1,99.99,06/17/19 17:40,"189 River St, New York City, NY 10001" -215127,AA Batteries (4-pack),1,3.84,06/26/19 09:39,"731 Meadow St, Austin, TX 73301" -215127,Apple Airpods Headphones,1,150,06/26/19 09:39,"731 Meadow St, Austin, TX 73301" -215128,34in Ultrawide Monitor,1,379.99,06/13/19 19:43,"659 Lake St, New York City, NY 10001" -215129,AA Batteries (4-pack),1,3.84,06/17/19 21:32,"547 Chestnut St, Boston, MA 02215" -215130,Lightning Charging Cable,1,14.95,06/30/19 09:15,"21 Ridge St, San Francisco, CA 94016" -215131,Bose SoundSport Headphones,1,99.99,06/13/19 20:32,"863 Johnson St, Atlanta, GA 30301" -215132,Apple Airpods Headphones,1,150,06/29/19 20:44,"350 4th St, Atlanta, GA 30301" -215133,AA Batteries (4-pack),1,3.84,06/20/19 12:57,"547 South St, Atlanta, GA 30301" -215134,Macbook Pro Laptop,1,1700,06/25/19 00:21,"441 4th St, Atlanta, GA 30301" -215135,27in FHD Monitor,1,149.99,06/19/19 14:54,"705 Highland St, Los Angeles, CA 90001" -215136,AAA Batteries (4-pack),1,2.99,06/03/19 00:22,"627 River St, Seattle, WA 98101" -215137,AA Batteries (4-pack),1,3.84,06/24/19 09:45,"109 Lincoln St, San Francisco, CA 94016" -215138,LG Dryer,1,600.0,06/22/19 15:58,"390 Johnson St, Boston, MA 02215" -215139,Lightning Charging Cable,1,14.95,06/05/19 13:57,"193 5th St, New York City, NY 10001" -215140,AA Batteries (4-pack),1,3.84,06/16/19 09:09,"742 Pine St, Los Angeles, CA 90001" -215141,Lightning Charging Cable,1,14.95,06/23/19 11:04,"27 Washington St, San Francisco, CA 94016" -215142,LG Washing Machine,1,600.0,06/16/19 13:35,"207 13th St, San Francisco, CA 94016" -215143,Apple Airpods Headphones,1,150,06/18/19 20:23,"272 Hill St, San Francisco, CA 94016" -215144,USB-C Charging Cable,1,11.95,06/29/19 09:07,"750 Willow St, Los Angeles, CA 90001" -215145,AA Batteries (4-pack),1,3.84,06/30/19 15:48,"226 River St, Seattle, WA 98101" -215146,AA Batteries (4-pack),1,3.84,06/08/19 18:27,"361 1st St, Portland, ME 04101" -215147,Lightning Charging Cable,1,14.95,06/07/19 15:26,"613 Jefferson St, San Francisco, CA 94016" -215148,AAA Batteries (4-pack),1,2.99,06/09/19 10:09,"209 4th St, San Francisco, CA 94016" -215149,Flatscreen TV,1,300,06/24/19 23:38,"966 Johnson St, Boston, MA 02215" -215150,27in FHD Monitor,1,149.99,06/15/19 20:22,"720 Adams St, Portland, OR 97035" -215151,USB-C Charging Cable,1,11.95,06/18/19 17:15,"630 Forest St, New York City, NY 10001" -215152,USB-C Charging Cable,1,11.95,06/26/19 15:29,"102 Ridge St, San Francisco, CA 94016" -215153,AA Batteries (4-pack),1,3.84,06/05/19 13:48,"240 Forest St, Portland, OR 97035" -215154,20in Monitor,1,109.99,06/28/19 21:54,"8 Willow St, Dallas, TX 75001" -215155,Lightning Charging Cable,1,14.95,06/07/19 14:01,"693 Meadow St, Boston, MA 02215" -215156,Lightning Charging Cable,1,14.95,06/09/19 14:45,"184 Spruce St, Seattle, WA 98101" -215157,LG Washing Machine,1,600.0,06/05/19 10:19,"211 Lake St, Atlanta, GA 30301" -215158,Google Phone,1,600,06/10/19 10:56,"195 Adams St, Los Angeles, CA 90001" -215159,Apple Airpods Headphones,1,150,06/18/19 08:04,"203 Adams St, Los Angeles, CA 90001" -215160,Apple Airpods Headphones,1,150,06/19/19 11:15,"60 Madison St, San Francisco, CA 94016" -215161,AA Batteries (4-pack),1,3.84,06/16/19 13:36,"516 Spruce St, Portland, OR 97035" -215162,AAA Batteries (4-pack),1,2.99,06/28/19 20:53,"251 Chestnut St, Atlanta, GA 30301" -215163,Wired Headphones,1,11.99,06/22/19 18:09,"186 Chestnut St, Los Angeles, CA 90001" -215163,Apple Airpods Headphones,1,150,06/22/19 18:09,"186 Chestnut St, Los Angeles, CA 90001" -215164,AAA Batteries (4-pack),1,2.99,06/26/19 18:50,"538 Maple St, Los Angeles, CA 90001" -215165,Wired Headphones,1,11.99,06/05/19 17:54,"948 Spruce St, Atlanta, GA 30301" -215166,27in 4K Gaming Monitor,1,389.99,06/08/19 10:30,"481 South St, New York City, NY 10001" -215167,Flatscreen TV,1,300,06/14/19 10:48,"804 Chestnut St, Los Angeles, CA 90001" -215168,AA Batteries (4-pack),1,3.84,06/06/19 09:31,"964 8th St, Los Angeles, CA 90001" -215169,Bose SoundSport Headphones,1,99.99,06/30/19 13:27,"239 West St, Austin, TX 73301" -215170,Wired Headphones,1,11.99,06/06/19 08:53,"858 Wilson St, Austin, TX 73301" -215171,AAA Batteries (4-pack),5,2.99,06/01/19 13:01,"853 Hill St, Boston, MA 02215" -215172,AA Batteries (4-pack),1,3.84,06/22/19 12:10,"694 North St, Portland, OR 97035" -215173,Bose SoundSport Headphones,1,99.99,06/16/19 18:41,"534 Meadow St, Seattle, WA 98101" -215174,iPhone,1,700,06/02/19 13:39,"477 11th St, San Francisco, CA 94016" -215174,34in Ultrawide Monitor,1,379.99,06/02/19 13:39,"477 11th St, San Francisco, CA 94016" -215175,AAA Batteries (4-pack),1,2.99,06/16/19 08:13,"237 10th St, Los Angeles, CA 90001" -215176,AA Batteries (4-pack),1,3.84,06/10/19 22:44,"463 North St, Seattle, WA 98101" -215177,Vareebadd Phone,1,400,06/11/19 16:17,"379 Highland St, Dallas, TX 75001" -215178,Lightning Charging Cable,1,14.95,06/06/19 13:35,"767 Elm St, Atlanta, GA 30301" -215179,Apple Airpods Headphones,1,150,06/23/19 18:55,"411 Park St, San Francisco, CA 94016" -215180,USB-C Charging Cable,1,11.95,06/29/19 21:21,"818 Willow St, Los Angeles, CA 90001" -215181,Flatscreen TV,1,300,06/11/19 19:36,"414 Sunset St, New York City, NY 10001" -215182,Wired Headphones,1,11.99,06/01/19 19:01,"153 Main St, Los Angeles, CA 90001" -215183,27in FHD Monitor,1,149.99,06/24/19 18:38,"204 Elm St, Los Angeles, CA 90001" -215184,Macbook Pro Laptop,1,1700,06/21/19 17:16,"17 Dogwood St, Austin, TX 73301" -215185,USB-C Charging Cable,2,11.95,06/17/19 10:42,"796 Pine St, San Francisco, CA 94016" -215186,USB-C Charging Cable,1,11.95,06/25/19 18:08,"743 Ridge St, Los Angeles, CA 90001" -215186,Google Phone,1,600,06/25/19 18:08,"743 Ridge St, Los Angeles, CA 90001" -215187,Flatscreen TV,1,300,06/15/19 23:09,"476 Hill St, San Francisco, CA 94016" -215188,20in Monitor,1,109.99,06/15/19 23:03,"243 Church St, Los Angeles, CA 90001" -215189,Wired Headphones,1,11.99,06/03/19 16:26,"631 Lincoln St, Portland, OR 97035" -215190,Bose SoundSport Headphones,1,99.99,06/23/19 18:22,"486 North St, Austin, TX 73301" -215191,Lightning Charging Cable,1,14.95,06/11/19 12:13,"491 Sunset St, New York City, NY 10001" -215192,AAA Batteries (4-pack),5,2.99,06/19/19 22:55,"840 10th St, Boston, MA 02215" -215193,AAA Batteries (4-pack),1,2.99,06/22/19 22:41,"314 Walnut St, San Francisco, CA 94016" -215194,Google Phone,1,600,06/05/19 13:23,"946 Walnut St, San Francisco, CA 94016" -215194,Wired Headphones,2,11.99,06/05/19 13:23,"946 Walnut St, San Francisco, CA 94016" -215195,AA Batteries (4-pack),1,3.84,06/22/19 01:56,"315 Sunset St, New York City, NY 10001" -215196,AAA Batteries (4-pack),1,2.99,06/21/19 19:18,"357 1st St, Boston, MA 02215" -215197,Bose SoundSport Headphones,1,99.99,06/19/19 12:41,"498 Sunset St, Austin, TX 73301" -215198,iPhone,1,700,06/12/19 15:09,"119 Sunset St, San Francisco, CA 94016" -215199,AA Batteries (4-pack),1,3.84,06/18/19 11:24,"407 6th St, Boston, MA 02215" -215200,Apple Airpods Headphones,1,150,06/21/19 11:08,"527 8th St, Los Angeles, CA 90001" -215201,34in Ultrawide Monitor,1,379.99,06/26/19 22:04,"380 West St, San Francisco, CA 94016" -215202,AA Batteries (4-pack),1,3.84,06/09/19 13:34,"561 Center St, New York City, NY 10001" -215203,Wired Headphones,1,11.99,06/09/19 18:59,"428 Lakeview St, Dallas, TX 75001" -215204,AA Batteries (4-pack),2,3.84,06/20/19 15:19,"261 Lincoln St, Los Angeles, CA 90001" -215205,27in FHD Monitor,1,149.99,06/15/19 14:28,"2 14th St, New York City, NY 10001" -215206,USB-C Charging Cable,1,11.95,06/13/19 01:54,"633 Lakeview St, San Francisco, CA 94016" -215207,Apple Airpods Headphones,1,150,06/01/19 15:30,"959 8th St, San Francisco, CA 94016" -215208,AAA Batteries (4-pack),1,2.99,06/24/19 01:25,"645 Spruce St, New York City, NY 10001" -215209,AAA Batteries (4-pack),1,2.99,06/14/19 09:32,"243 Cedar St, San Francisco, CA 94016" -215210,Apple Airpods Headphones,1,150,06/03/19 17:11,"307 Madison St, Dallas, TX 75001" -215211,Lightning Charging Cable,1,14.95,06/07/19 19:11,"622 Main St, New York City, NY 10001" -215212,AAA Batteries (4-pack),1,2.99,06/24/19 22:17,"238 Highland St, Boston, MA 02215" -215213,USB-C Charging Cable,1,11.95,06/02/19 11:58,"302 Meadow St, Seattle, WA 98101" -215214,AAA Batteries (4-pack),1,2.99,06/02/19 09:11,"928 5th St, San Francisco, CA 94016" -215215,27in 4K Gaming Monitor,1,389.99,06/03/19 19:39,"355 Elm St, Atlanta, GA 30301" -215216,USB-C Charging Cable,1,11.95,06/26/19 11:07,"335 Johnson St, Austin, TX 73301" -215217,Lightning Charging Cable,1,14.95,06/04/19 21:21,"977 North St, Atlanta, GA 30301" -215218,AA Batteries (4-pack),1,3.84,06/02/19 15:36,"129 Adams St, San Francisco, CA 94016" -215219,Bose SoundSport Headphones,1,99.99,06/16/19 07:24,"420 Wilson St, New York City, NY 10001" -215220,AA Batteries (4-pack),1,3.84,06/13/19 10:03,"99 Maple St, New York City, NY 10001" -215221,AA Batteries (4-pack),1,3.84,06/14/19 08:36,"250 Ridge St, Boston, MA 02215" -215222,Lightning Charging Cable,1,14.95,06/04/19 11:30,"301 Dogwood St, Portland, OR 97035" -215223,AAA Batteries (4-pack),1,2.99,06/17/19 18:04,"113 9th St, Boston, MA 02215" -215224,AA Batteries (4-pack),1,3.84,06/24/19 17:06,"743 1st St, Seattle, WA 98101" -215225,Bose SoundSport Headphones,1,99.99,06/13/19 20:10,"77 12th St, Atlanta, GA 30301" -215226,AAA Batteries (4-pack),1,2.99,06/22/19 15:33,"954 Elm St, New York City, NY 10001" -215227,Lightning Charging Cable,1,14.95,06/01/19 19:20,"577 9th St, Atlanta, GA 30301" -215228,AAA Batteries (4-pack),1,2.99,06/16/19 01:42,"620 Meadow St, Los Angeles, CA 90001" -215229,27in FHD Monitor,1,149.99,06/04/19 20:16,"911 Pine St, Boston, MA 02215" -215230,27in FHD Monitor,1,149.99,06/01/19 16:48,"416 Johnson St, Boston, MA 02215" -215231,Apple Airpods Headphones,1,150,06/11/19 12:57,"935 North St, Atlanta, GA 30301" -215232,27in FHD Monitor,1,149.99,06/26/19 16:49,"451 Washington St, New York City, NY 10001" -215233,AAA Batteries (4-pack),1,2.99,06/17/19 20:39,"728 South St, New York City, NY 10001" -215234,Bose SoundSport Headphones,1,99.99,06/08/19 16:18,"605 11th St, San Francisco, CA 94016" -215235,Bose SoundSport Headphones,1,99.99,06/13/19 19:57,"596 8th St, Dallas, TX 75001" -215236,34in Ultrawide Monitor,1,379.99,06/08/19 10:51,"700 1st St, Seattle, WA 98101" -215237,Apple Airpods Headphones,1,150,06/02/19 22:18,"620 River St, Portland, OR 97035" -215238,Lightning Charging Cable,1,14.95,06/13/19 21:43,"440 Ridge St, Portland, OR 97035" -215239,AA Batteries (4-pack),1,3.84,06/15/19 20:55,"589 Forest St, Atlanta, GA 30301" -215240,AAA Batteries (4-pack),1,2.99,06/19/19 14:32,"381 Main St, New York City, NY 10001" -215241,27in 4K Gaming Monitor,1,389.99,06/03/19 19:43,"702 Dogwood St, Dallas, TX 75001" -215242,Flatscreen TV,1,300,06/20/19 09:49,"343 4th St, Seattle, WA 98101" -215243,Bose SoundSport Headphones,1,99.99,06/10/19 16:29,"48 Washington St, Los Angeles, CA 90001" -215244,AA Batteries (4-pack),1,3.84,06/12/19 21:35,"432 Center St, San Francisco, CA 94016" -215245,Lightning Charging Cable,1,14.95,06/17/19 18:51,"534 West St, New York City, NY 10001" -215246,Apple Airpods Headphones,1,150,06/14/19 21:10,"673 Spruce St, Atlanta, GA 30301" -215247,AAA Batteries (4-pack),1,2.99,06/20/19 18:57,"362 Johnson St, Boston, MA 02215" -215248,USB-C Charging Cable,1,11.95,06/12/19 21:44,"752 Jackson St, New York City, NY 10001" -215249,AA Batteries (4-pack),2,3.84,06/20/19 08:43,"664 2nd St, New York City, NY 10001" -215250,Bose SoundSport Headphones,1,99.99,06/26/19 12:20,"571 River St, Seattle, WA 98101" -215251,USB-C Charging Cable,1,11.95,06/26/19 10:34,"821 Madison St, San Francisco, CA 94016" -215252,USB-C Charging Cable,1,11.95,06/24/19 16:29,"880 North St, Los Angeles, CA 90001" -215253,ThinkPad Laptop,1,999.99,06/13/19 11:39,"963 7th St, San Francisco, CA 94016" -215254,AA Batteries (4-pack),1,3.84,06/15/19 16:20,"594 Spruce St, Los Angeles, CA 90001" -215255,Apple Airpods Headphones,1,150,06/28/19 15:31,"300 Lincoln St, Los Angeles, CA 90001" -215256,AA Batteries (4-pack),1,3.84,06/16/19 15:24,"914 Lake St, Dallas, TX 75001" -215257,ThinkPad Laptop,1,999.99,06/15/19 22:53,"924 9th St, Los Angeles, CA 90001" -215258,Google Phone,1,600,06/21/19 21:20,"345 Main St, Atlanta, GA 30301" -,,,,, -215259,ThinkPad Laptop,1,999.99,06/30/19 22:49,"270 6th St, Austin, TX 73301" -215260,AAA Batteries (4-pack),1,2.99,06/13/19 20:18,"588 Hill St, San Francisco, CA 94016" -215261,AAA Batteries (4-pack),1,2.99,06/12/19 15:33,"149 Center St, San Francisco, CA 94016" -215262,34in Ultrawide Monitor,1,379.99,06/09/19 05:04,"315 Maple St, San Francisco, CA 94016" -215263,ThinkPad Laptop,1,999.99,06/22/19 17:53,"284 North St, Boston, MA 02215" -215264,AA Batteries (4-pack),2,3.84,06/14/19 22:35,"615 Wilson St, Los Angeles, CA 90001" -215265,iPhone,1,700,06/30/19 11:47,"416 Willow St, Boston, MA 02215" -215266,AA Batteries (4-pack),1,3.84,06/03/19 18:47,"982 12th St, New York City, NY 10001" -215267,AA Batteries (4-pack),1,3.84,06/20/19 21:33,"558 Washington St, Atlanta, GA 30301" -215268,Apple Airpods Headphones,1,150,06/02/19 14:39,"91 1st St, Los Angeles, CA 90001" -215269,Bose SoundSport Headphones,1,99.99,06/23/19 22:23,"131 2nd St, Dallas, TX 75001" -215270,Bose SoundSport Headphones,1,99.99,06/18/19 11:28,"735 North St, San Francisco, CA 94016" -215271,AA Batteries (4-pack),2,3.84,06/14/19 09:50,"391 Meadow St, New York City, NY 10001" -215272,Macbook Pro Laptop,1,1700,06/25/19 22:01,"155 Sunset St, Los Angeles, CA 90001" -215273,Wired Headphones,1,11.99,06/17/19 12:12,"143 10th St, San Francisco, CA 94016" -215274,Macbook Pro Laptop,1,1700,06/12/19 09:09,"375 1st St, Austin, TX 73301" -215275,27in FHD Monitor,1,149.99,06/08/19 12:20,"34 Cedar St, San Francisco, CA 94016" -215276,iPhone,1,700,06/12/19 12:19,"339 Dogwood St, San Francisco, CA 94016" -215276,Lightning Charging Cable,1,14.95,06/12/19 12:19,"339 Dogwood St, San Francisco, CA 94016" -215277,USB-C Charging Cable,1,11.95,06/03/19 16:16,"439 Walnut St, Portland, OR 97035" -215278,Lightning Charging Cable,2,14.95,06/06/19 19:44,"942 Main St, New York City, NY 10001" -215279,iPhone,1,700,06/23/19 14:46,"14 Johnson St, San Francisco, CA 94016" -215279,Lightning Charging Cable,1,14.95,06/23/19 14:46,"14 Johnson St, San Francisco, CA 94016" -215280,Wired Headphones,2,11.99,06/04/19 12:13,"911 1st St, Portland, ME 04101" -215281,AA Batteries (4-pack),1,3.84,06/11/19 06:23,"119 2nd St, Los Angeles, CA 90001" -215282,Google Phone,1,600,06/14/19 00:43,"234 Main St, Seattle, WA 98101" -215282,Wired Headphones,1,11.99,06/14/19 00:43,"234 Main St, Seattle, WA 98101" -215283,Apple Airpods Headphones,1,150,06/06/19 19:13,"254 Cedar St, Boston, MA 02215" -215284,AA Batteries (4-pack),1,3.84,06/09/19 04:43,"195 Cherry St, Dallas, TX 75001" -215285,Lightning Charging Cable,1,14.95,06/29/19 12:58,"615 Lake St, Los Angeles, CA 90001" -215286,iPhone,1,700,06/11/19 14:37,"435 Park St, New York City, NY 10001" -215287,Bose SoundSport Headphones,1,99.99,06/25/19 12:31,"291 2nd St, Seattle, WA 98101" -215288,Flatscreen TV,1,300,06/27/19 09:53,"367 Dogwood St, San Francisco, CA 94016" -215289,AA Batteries (4-pack),1,3.84,06/02/19 17:28,"752 Elm St, San Francisco, CA 94016" -215290,AAA Batteries (4-pack),1,2.99,06/07/19 23:06,"550 14th St, Portland, ME 04101" -215291,Flatscreen TV,1,300,06/24/19 16:25,"237 8th St, San Francisco, CA 94016" -215292,Flatscreen TV,1,300,06/08/19 17:45,"547 13th St, Boston, MA 02215" -215293,AA Batteries (4-pack),1,3.84,06/13/19 09:35,"979 Jackson St, Atlanta, GA 30301" -215294,AA Batteries (4-pack),2,3.84,06/03/19 14:40,"219 Dogwood St, Seattle, WA 98101" -215295,Bose SoundSport Headphones,1,99.99,06/24/19 10:07,"235 Lincoln St, Portland, OR 97035" -215296,AAA Batteries (4-pack),1,2.99,06/24/19 21:37,"674 9th St, Los Angeles, CA 90001" -215297,34in Ultrawide Monitor,1,379.99,06/03/19 00:41,"802 Sunset St, San Francisco, CA 94016" -215298,Apple Airpods Headphones,1,150,06/08/19 19:30,"707 Jackson St, Dallas, TX 75001" -215299,AAA Batteries (4-pack),1,2.99,06/06/19 13:58,"386 12th St, Portland, OR 97035" -215300,iPhone,1,700,06/16/19 19:47,"682 Meadow St, San Francisco, CA 94016" -215301,AA Batteries (4-pack),1,3.84,06/04/19 07:17,"752 Center St, Seattle, WA 98101" -215302,Wired Headphones,1,11.99,06/21/19 15:11,"106 Hickory St, San Francisco, CA 94016" -215303,Lightning Charging Cable,1,14.95,06/27/19 18:19,"528 Johnson St, San Francisco, CA 94016" -215304,Bose SoundSport Headphones,1,99.99,06/23/19 08:38,"296 Lake St, Dallas, TX 75001" -215305,Apple Airpods Headphones,1,150,06/23/19 21:28,"982 Dogwood St, Portland, OR 97035" -215306,USB-C Charging Cable,1,11.95,06/11/19 22:38,"130 South St, San Francisco, CA 94016" -215307,Lightning Charging Cable,1,14.95,06/10/19 11:40,"463 Walnut St, Seattle, WA 98101" -215308,Apple Airpods Headphones,1,150,06/09/19 09:30,"62 Cherry St, San Francisco, CA 94016" -215309,AA Batteries (4-pack),1,3.84,06/23/19 10:24,"317 Hill St, Los Angeles, CA 90001" -215310,AAA Batteries (4-pack),1,2.99,06/23/19 19:56,"900 Chestnut St, New York City, NY 10001" -215311,20in Monitor,1,109.99,06/09/19 19:10,"760 9th St, San Francisco, CA 94016" -215312,LG Dryer,1,600.0,06/06/19 00:58,"546 Meadow St, Portland, OR 97035" -215313,Wired Headphones,1,11.99,06/08/19 16:30,"927 Spruce St, Boston, MA 02215" -215314,Bose SoundSport Headphones,1,99.99,06/21/19 15:31,"748 Walnut St, San Francisco, CA 94016" -215315,AA Batteries (4-pack),1,3.84,06/08/19 17:53,"215 1st St, Seattle, WA 98101" -215316,AAA Batteries (4-pack),2,2.99,06/10/19 16:29,"570 1st St, New York City, NY 10001" -215317,Wired Headphones,2,11.99,06/22/19 11:27,"144 14th St, San Francisco, CA 94016" -215318,Wired Headphones,2,11.99,06/29/19 19:45,"859 Park St, Boston, MA 02215" -215319,Apple Airpods Headphones,1,150,06/19/19 14:45,"671 River St, Dallas, TX 75001" -215320,AAA Batteries (4-pack),1,2.99,06/08/19 11:06,"82 Maple St, Los Angeles, CA 90001" -215321,27in 4K Gaming Monitor,1,389.99,06/09/19 11:39,"317 Lakeview St, Seattle, WA 98101" -215322,27in FHD Monitor,1,149.99,06/21/19 21:43,"278 12th St, San Francisco, CA 94016" -215323,Wired Headphones,2,11.99,06/14/19 11:07,"948 Wilson St, Portland, OR 97035" -215324,Apple Airpods Headphones,1,150,06/14/19 14:46,"820 Jefferson St, Portland, OR 97035" -215325,Lightning Charging Cable,1,14.95,06/30/19 14:48,"475 Forest St, Seattle, WA 98101" -215326,AA Batteries (4-pack),1,3.84,06/06/19 07:46,"602 Hill St, Boston, MA 02215" -215327,Google Phone,1,600,06/29/19 06:02,"292 South St, Austin, TX 73301" -215327,Wired Headphones,1,11.99,06/29/19 06:02,"292 South St, Austin, TX 73301" -215328,34in Ultrawide Monitor,1,379.99,06/02/19 03:42,"67 Maple St, New York City, NY 10001" -215329,Wired Headphones,1,11.99,06/22/19 13:25,"982 13th St, New York City, NY 10001" -215330,LG Washing Machine,1,600.0,06/04/19 21:45,"792 Walnut St, Dallas, TX 75001" -215331,Lightning Charging Cable,1,14.95,06/08/19 08:52,"916 Chestnut St, Austin, TX 73301" -215332,Google Phone,1,600,06/16/19 13:36,"190 10th St, Boston, MA 02215" -215333,USB-C Charging Cable,1,11.95,06/29/19 16:19,"405 Lakeview St, Atlanta, GA 30301" -215334,Lightning Charging Cable,1,14.95,06/25/19 11:12,"48 6th St, Seattle, WA 98101" -215335,AAA Batteries (4-pack),1,2.99,06/01/19 15:33,"827 Center St, San Francisco, CA 94016" -215336,Vareebadd Phone,1,400,06/21/19 18:01,"408 Chestnut St, New York City, NY 10001" -215336,Bose SoundSport Headphones,1,99.99,06/21/19 18:01,"408 Chestnut St, New York City, NY 10001" -215337,AA Batteries (4-pack),2,3.84,06/12/19 20:38,"724 Elm St, San Francisco, CA 94016" -215338,Wired Headphones,1,11.99,06/04/19 21:06,"324 Elm St, Seattle, WA 98101" -215339,Apple Airpods Headphones,1,150,06/14/19 00:20,"887 Lakeview St, Seattle, WA 98101" -215340,USB-C Charging Cable,1,11.95,06/16/19 22:47,"900 Walnut St, New York City, NY 10001" -215341,USB-C Charging Cable,2,11.95,06/25/19 16:05,"712 13th St, Portland, OR 97035" -215342,34in Ultrawide Monitor,1,379.99,06/17/19 10:57,"324 Pine St, Los Angeles, CA 90001" -215343,Macbook Pro Laptop,1,1700,06/02/19 18:57,"60 10th St, Portland, OR 97035" -215344,20in Monitor,1,109.99,06/19/19 07:39,"212 Lake St, Los Angeles, CA 90001" -215345,Lightning Charging Cable,1,14.95,06/28/19 20:09,"694 11th St, New York City, NY 10001" -215346,Bose SoundSport Headphones,1,99.99,06/04/19 23:55,"122 Lake St, San Francisco, CA 94016" -215347,USB-C Charging Cable,1,11.95,06/30/19 20:25,"873 Madison St, San Francisco, CA 94016" -215348,AAA Batteries (4-pack),1,2.99,06/06/19 20:57,"81 Ridge St, Los Angeles, CA 90001" -215349,LG Dryer,1,600.0,06/23/19 11:17,"315 Lincoln St, San Francisco, CA 94016" -215350,AAA Batteries (4-pack),1,2.99,06/10/19 13:08,"16 Hill St, Seattle, WA 98101" -215351,27in 4K Gaming Monitor,1,389.99,06/10/19 23:47,"849 Dogwood St, Los Angeles, CA 90001" -215352,AA Batteries (4-pack),1,3.84,06/01/19 17:10,"384 14th St, Los Angeles, CA 90001" -215353,Bose SoundSport Headphones,1,99.99,06/19/19 22:04,"997 Johnson St, New York City, NY 10001" -215354,AA Batteries (4-pack),2,3.84,06/13/19 15:51,"555 13th St, Los Angeles, CA 90001" -215355,USB-C Charging Cable,1,11.95,06/09/19 13:23,"423 Madison St, New York City, NY 10001" -215356,20in Monitor,1,109.99,06/19/19 20:13,"804 13th St, Los Angeles, CA 90001" -215356,AA Batteries (4-pack),1,3.84,06/19/19 20:13,"804 13th St, Los Angeles, CA 90001" -215357,Wired Headphones,1,11.99,06/14/19 16:10,"632 8th St, Portland, OR 97035" -215358,USB-C Charging Cable,1,11.95,06/12/19 15:03,"973 Lake St, San Francisco, CA 94016" -215359,Lightning Charging Cable,1,14.95,06/07/19 20:44,"722 9th St, San Francisco, CA 94016" -215360,Google Phone,1,600,06/06/19 21:44,"416 Ridge St, Seattle, WA 98101" -215361,Wired Headphones,2,11.99,06/05/19 20:23,"400 Jefferson St, Dallas, TX 75001" -215362,27in FHD Monitor,1,149.99,06/03/19 14:10,"142 2nd St, Boston, MA 02215" -215363,Apple Airpods Headphones,1,150,06/25/19 09:34,"535 Highland St, Austin, TX 73301" -215364,Google Phone,1,600,06/30/19 00:04,"214 Church St, Portland, OR 97035" -215365,Apple Airpods Headphones,1,150,06/04/19 20:41,"424 Jefferson St, Portland, OR 97035" -215366,AAA Batteries (4-pack),1,2.99,06/19/19 08:30,"322 Lakeview St, Los Angeles, CA 90001" -215367,AA Batteries (4-pack),1,3.84,06/14/19 20:14,"139 4th St, Boston, MA 02215" -215368,Apple Airpods Headphones,1,150,06/23/19 09:21,"473 Main St, Dallas, TX 75001" -215369,Flatscreen TV,1,300,06/13/19 02:05,"901 Maple St, San Francisco, CA 94016" -215370,Wired Headphones,1,11.99,06/24/19 14:36,"2 North St, Los Angeles, CA 90001" -215371,AA Batteries (4-pack),1,3.84,06/25/19 08:16,"364 11th St, Los Angeles, CA 90001" -215372,AAA Batteries (4-pack),2,2.99,06/15/19 00:41,"296 12th St, San Francisco, CA 94016" -215373,AA Batteries (4-pack),1,3.84,06/02/19 16:06,"702 North St, Los Angeles, CA 90001" -215374,Lightning Charging Cable,1,14.95,06/02/19 01:38,"761 River St, Austin, TX 73301" -215375,AAA Batteries (4-pack),2,2.99,06/21/19 14:27,"912 13th St, Dallas, TX 75001" -215376,27in FHD Monitor,1,149.99,06/08/19 12:47,"746 Park St, San Francisco, CA 94016" -,,,,, -215377,AAA Batteries (4-pack),2,2.99,06/02/19 21:26,"73 Ridge St, San Francisco, CA 94016" -215378,34in Ultrawide Monitor,1,379.99,06/21/19 15:00,"291 4th St, Dallas, TX 75001" -215379,AAA Batteries (4-pack),3,2.99,06/04/19 15:12,"519 7th St, San Francisco, CA 94016" -215380,AAA Batteries (4-pack),2,2.99,06/15/19 22:47,"422 North St, Seattle, WA 98101" -215381,AAA Batteries (4-pack),1,2.99,06/12/19 19:28,"774 Adams St, Los Angeles, CA 90001" -215382,Lightning Charging Cable,1,14.95,06/14/19 11:54,"116 Washington St, Los Angeles, CA 90001" -215383,Lightning Charging Cable,1,14.95,06/17/19 22:37,"75 Willow St, Los Angeles, CA 90001" -215384,34in Ultrawide Monitor,1,379.99,06/04/19 22:19,"744 Highland St, Portland, ME 04101" -215385,USB-C Charging Cable,1,11.95,06/21/19 21:45,"618 Lake St, Portland, OR 97035" -215386,Bose SoundSport Headphones,1,99.99,06/01/19 14:49,"964 4th St, Los Angeles, CA 90001" -215387,AA Batteries (4-pack),1,3.84,06/08/19 12:16,"471 Hickory St, Los Angeles, CA 90001" -215388,ThinkPad Laptop,1,999.99,06/12/19 05:08,"59 Pine St, Atlanta, GA 30301" -215389,USB-C Charging Cable,1,11.95,06/15/19 14:39,"39 Johnson St, San Francisco, CA 94016" -215390,Wired Headphones,1,11.99,06/04/19 00:45,"236 Elm St, Portland, OR 97035" -215391,Apple Airpods Headphones,1,150,06/03/19 12:10,"500 Park St, San Francisco, CA 94016" -215392,USB-C Charging Cable,1,11.95,06/03/19 12:57,"465 Washington St, Seattle, WA 98101" -215393,AA Batteries (4-pack),1,3.84,06/02/19 02:09,"992 9th St, Portland, OR 97035" -215394,AA Batteries (4-pack),1,3.84,06/05/19 13:38,"478 Washington St, Portland, OR 97035" -215395,Bose SoundSport Headphones,1,99.99,06/25/19 12:30,"637 Hill St, Boston, MA 02215" -215396,Lightning Charging Cable,1,14.95,06/01/19 14:05,"792 5th St, New York City, NY 10001" -215397,USB-C Charging Cable,1,11.95,06/24/19 11:56,"323 Walnut St, Los Angeles, CA 90001" -215398,AA Batteries (4-pack),2,3.84,06/26/19 12:07,"109 Washington St, Los Angeles, CA 90001" -215399,Apple Airpods Headphones,1,150,06/05/19 01:18,"342 Cedar St, Portland, OR 97035" -215400,LG Washing Machine,1,600.0,06/01/19 14:34,"772 Walnut St, Los Angeles, CA 90001" -215401,Apple Airpods Headphones,1,150,06/15/19 23:43,"620 Main St, Boston, MA 02215" -215402,Flatscreen TV,1,300,06/25/19 20:32,"114 Johnson St, San Francisco, CA 94016" -215403,Flatscreen TV,1,300,06/26/19 20:05,"879 Lincoln St, Portland, OR 97035" -215404,AAA Batteries (4-pack),1,2.99,06/04/19 00:59,"157 Meadow St, San Francisco, CA 94016" -215405,27in 4K Gaming Monitor,1,389.99,06/19/19 01:52,"73 Spruce St, San Francisco, CA 94016" -215406,27in 4K Gaming Monitor,1,389.99,06/22/19 14:47,"412 10th St, Boston, MA 02215" -215407,USB-C Charging Cable,1,11.95,06/11/19 20:50,"555 Madison St, San Francisco, CA 94016" -215408,Flatscreen TV,1,300,06/29/19 20:36,"207 Hickory St, Los Angeles, CA 90001" -215409,Apple Airpods Headphones,1,150,06/04/19 12:59,"115 Pine St, San Francisco, CA 94016" -215410,27in 4K Gaming Monitor,1,389.99,06/11/19 16:15,"488 Johnson St, New York City, NY 10001" -215411,Macbook Pro Laptop,1,1700,06/15/19 02:17,"4 Lake St, Los Angeles, CA 90001" -215412,Wired Headphones,1,11.99,06/23/19 18:38,"42 8th St, San Francisco, CA 94016" -215413,27in FHD Monitor,1,149.99,06/25/19 18:26,"654 2nd St, Atlanta, GA 30301" -215414,20in Monitor,1,109.99,06/28/19 16:23,"15 Cherry St, San Francisco, CA 94016" -215415,AA Batteries (4-pack),1,3.84,06/22/19 06:41,"319 Cedar St, Seattle, WA 98101" -215416,Wired Headphones,1,11.99,06/05/19 20:31,"485 Sunset St, Boston, MA 02215" -215417,AA Batteries (4-pack),1,3.84,06/22/19 10:59,"211 Ridge St, Seattle, WA 98101" -215418,Bose SoundSport Headphones,1,99.99,06/28/19 16:44,"1 Ridge St, San Francisco, CA 94016" -215419,ThinkPad Laptop,1,999.99,06/23/19 17:39,"207 Johnson St, Boston, MA 02215" -215420,USB-C Charging Cable,1,11.95,06/26/19 16:07,"981 Wilson St, Seattle, WA 98101" -215421,Bose SoundSport Headphones,1,99.99,06/24/19 22:26,"91 Walnut St, San Francisco, CA 94016" -215422,Google Phone,1,600,06/21/19 22:34,"243 Jackson St, Los Angeles, CA 90001" -215423,AA Batteries (4-pack),1,3.84,06/15/19 11:10,"180 Jackson St, New York City, NY 10001" -215424,Wired Headphones,2,11.99,06/13/19 16:52,"521 Lake St, San Francisco, CA 94016" -215425,AAA Batteries (4-pack),1,2.99,06/02/19 11:36,"414 North St, San Francisco, CA 94016" -215426,USB-C Charging Cable,1,11.95,06/10/19 09:02,"50 11th St, New York City, NY 10001" -215427,Wired Headphones,1,11.99,06/15/19 23:50,"586 Jackson St, Los Angeles, CA 90001" -215428,27in 4K Gaming Monitor,1,389.99,06/22/19 12:24,"813 Center St, San Francisco, CA 94016" -215429,Wired Headphones,1,11.99,06/09/19 11:05,"113 River St, San Francisco, CA 94016" -215430,Wired Headphones,1,11.99,06/04/19 22:17,"530 Cherry St, Boston, MA 02215" -215431,Flatscreen TV,1,300,06/22/19 23:32,"424 14th St, San Francisco, CA 94016" -215432,Bose SoundSport Headphones,1,99.99,06/09/19 17:40,"759 Willow St, Atlanta, GA 30301" -215433,Macbook Pro Laptop,1,1700,06/17/19 16:21,"159 8th St, Portland, ME 04101" -215434,27in 4K Gaming Monitor,1,389.99,06/07/19 10:40,"842 West St, Boston, MA 02215" -215435,AA Batteries (4-pack),3,3.84,06/17/19 16:58,"86 Jefferson St, San Francisco, CA 94016" -215436,Wired Headphones,2,11.99,06/06/19 21:52,"744 Highland St, San Francisco, CA 94016" -215437,AA Batteries (4-pack),1,3.84,06/12/19 19:59,"94 Center St, Atlanta, GA 30301" -215438,AAA Batteries (4-pack),1,2.99,06/10/19 10:51,"944 11th St, Dallas, TX 75001" -215439,AAA Batteries (4-pack),1,2.99,06/26/19 18:48,"586 River St, Seattle, WA 98101" -215440,Lightning Charging Cable,1,14.95,06/04/19 14:34,"443 South St, Boston, MA 02215" -215441,Macbook Pro Laptop,1,1700,06/02/19 19:41,"667 Hill St, Los Angeles, CA 90001" -215442,Lightning Charging Cable,1,14.95,06/15/19 10:00,"909 Sunset St, San Francisco, CA 94016" -215443,Wired Headphones,1,11.99,06/21/19 21:30,"698 Hill St, Los Angeles, CA 90001" -215444,USB-C Charging Cable,1,11.95,06/27/19 11:34,"542 Hill St, San Francisco, CA 94016" -215445,Vareebadd Phone,1,400,06/16/19 14:59,"980 4th St, Dallas, TX 75001" -215446,34in Ultrawide Monitor,1,379.99,06/15/19 18:59,"477 Main St, Los Angeles, CA 90001" -215447,Apple Airpods Headphones,1,150,06/11/19 11:50,"567 5th St, Dallas, TX 75001" -215448,AA Batteries (4-pack),1,3.84,06/24/19 22:16,"187 Walnut St, Austin, TX 73301" -215449,Bose SoundSport Headphones,1,99.99,06/10/19 15:14,"937 4th St, San Francisco, CA 94016" -215450,AAA Batteries (4-pack),1,2.99,06/11/19 12:20,"640 Cedar St, Atlanta, GA 30301" -215451,Lightning Charging Cable,1,14.95,06/06/19 12:29,"634 2nd St, San Francisco, CA 94016" -215452,Bose SoundSport Headphones,1,99.99,06/29/19 13:14,"634 12th St, San Francisco, CA 94016" -215453,Apple Airpods Headphones,1,150,06/05/19 19:40,"710 Main St, San Francisco, CA 94016" -215454,Lightning Charging Cable,1,14.95,06/02/19 11:45,"356 Washington St, New York City, NY 10001" -215455,USB-C Charging Cable,1,11.95,06/02/19 11:26,"748 Elm St, Los Angeles, CA 90001" -215456,AA Batteries (4-pack),1,3.84,06/12/19 17:35,"332 Hill St, San Francisco, CA 94016" -215457,AAA Batteries (4-pack),1,2.99,06/24/19 21:54,"528 South St, Portland, OR 97035" -215458,AAA Batteries (4-pack),1,2.99,06/24/19 17:20,"994 13th St, Seattle, WA 98101" -215459,USB-C Charging Cable,1,11.95,06/03/19 18:11,"7 Washington St, Los Angeles, CA 90001" -215460,AA Batteries (4-pack),1,3.84,06/13/19 10:47,"365 Chestnut St, Los Angeles, CA 90001" -215461,AAA Batteries (4-pack),2,2.99,06/06/19 11:44,"979 5th St, Dallas, TX 75001" -215462,USB-C Charging Cable,1,11.95,06/12/19 22:12,"286 Pine St, San Francisco, CA 94016" -215463,AA Batteries (4-pack),1,3.84,06/27/19 21:36,"133 Wilson St, Boston, MA 02215" -215464,Lightning Charging Cable,1,14.95,06/10/19 20:04,"712 Johnson St, Austin, TX 73301" -215465,AA Batteries (4-pack),1,3.84,06/14/19 20:48,"794 Cedar St, Los Angeles, CA 90001" -215466,Lightning Charging Cable,1,14.95,06/09/19 10:17,"282 Center St, Portland, OR 97035" -215467,Apple Airpods Headphones,1,150,06/20/19 17:26,"962 Highland St, Seattle, WA 98101" -215468,AA Batteries (4-pack),1,3.84,06/26/19 10:54,"362 Washington St, Boston, MA 02215" -215469,AA Batteries (4-pack),3,3.84,06/15/19 13:56,"863 Park St, New York City, NY 10001" -215470,USB-C Charging Cable,1,11.95,06/11/19 18:02,"39 8th St, New York City, NY 10001" -215471,AA Batteries (4-pack),1,3.84,06/22/19 17:32,"989 Main St, New York City, NY 10001" -215472,USB-C Charging Cable,1,11.95,06/21/19 14:06,"859 Wilson St, New York City, NY 10001" -215473,Lightning Charging Cable,1,14.95,06/15/19 14:20,"38 Jefferson St, Seattle, WA 98101" -215474,USB-C Charging Cable,1,11.95,06/08/19 17:42,"22 Adams St, San Francisco, CA 94016" -215475,Lightning Charging Cable,1,14.95,06/21/19 07:09,"281 Cherry St, New York City, NY 10001" -215476,Apple Airpods Headphones,1,150,06/13/19 09:26,"122 Walnut St, San Francisco, CA 94016" -215477,USB-C Charging Cable,1,11.95,06/21/19 10:47,"407 Lake St, Dallas, TX 75001" -215478,AA Batteries (4-pack),1,3.84,06/30/19 07:32,"268 Park St, San Francisco, CA 94016" -215479,Flatscreen TV,1,300,06/10/19 22:09,"266 Lake St, Los Angeles, CA 90001" -215480,Macbook Pro Laptop,1,1700,06/30/19 12:35,"653 10th St, Seattle, WA 98101" -215481,iPhone,1,700,06/02/19 12:11,"672 Cherry St, Atlanta, GA 30301" -215482,Lightning Charging Cable,1,14.95,06/10/19 20:17,"209 North St, New York City, NY 10001" -215483,Lightning Charging Cable,1,14.95,06/21/19 09:30,"548 Highland St, Los Angeles, CA 90001" -215484,AAA Batteries (4-pack),2,2.99,06/25/19 13:34,"878 Lakeview St, Los Angeles, CA 90001" -215485,Bose SoundSport Headphones,1,99.99,06/26/19 16:05,"654 Johnson St, Los Angeles, CA 90001" -215486,Google Phone,1,600,06/20/19 11:48,"173 Maple St, Atlanta, GA 30301" -215487,Bose SoundSport Headphones,1,99.99,06/30/19 18:49,"674 Hill St, San Francisco, CA 94016" -215488,USB-C Charging Cable,1,11.95,06/23/19 21:01,"804 Lakeview St, Boston, MA 02215" -215489,USB-C Charging Cable,1,11.95,06/24/19 17:18,"120 8th St, Dallas, TX 75001" -215490,USB-C Charging Cable,1,11.95,06/20/19 16:48,"131 Lake St, Boston, MA 02215" -215491,34in Ultrawide Monitor,1,379.99,06/25/19 15:23,"980 Madison St, San Francisco, CA 94016" -215492,27in FHD Monitor,1,149.99,06/01/19 14:51,"687 Chestnut St, Atlanta, GA 30301" -215493,Lightning Charging Cable,1,14.95,06/24/19 12:48,"951 Hill St, Austin, TX 73301" -215494,27in 4K Gaming Monitor,1,389.99,06/11/19 17:18,"929 Cherry St, San Francisco, CA 94016" -215495,Wired Headphones,1,11.99,06/05/19 05:07,"640 Walnut St, Los Angeles, CA 90001" -215496,USB-C Charging Cable,1,11.95,06/18/19 22:14,"292 Cedar St, Atlanta, GA 30301" -215497,27in FHD Monitor,1,149.99,06/15/19 16:06,"173 Lake St, San Francisco, CA 94016" -215498,Wired Headphones,1,11.99,06/10/19 17:00,"423 Jefferson St, Dallas, TX 75001" -215499,27in FHD Monitor,1,149.99,06/02/19 22:00,"94 4th St, New York City, NY 10001" -215500,20in Monitor,1,109.99,06/23/19 13:32,"455 Church St, Austin, TX 73301" -215501,Apple Airpods Headphones,1,150,06/01/19 19:41,"222 Maple St, Dallas, TX 75001" -215502,Apple Airpods Headphones,1,150,06/23/19 22:48,"659 Adams St, New York City, NY 10001" -215503,AA Batteries (4-pack),1,3.84,06/22/19 15:03,"883 13th St, New York City, NY 10001" -215504,Macbook Pro Laptop,1,1700,06/02/19 15:39,"418 Meadow St, Seattle, WA 98101" -215505,34in Ultrawide Monitor,1,379.99,06/19/19 08:04,"948 Washington St, Los Angeles, CA 90001" -215506,USB-C Charging Cable,1,11.95,06/22/19 15:43,"765 4th St, Boston, MA 02215" -215507,Wired Headphones,1,11.99,06/13/19 15:01,"757 Cherry St, Seattle, WA 98101" -215508,Bose SoundSport Headphones,1,99.99,06/01/19 21:41,"296 2nd St, Austin, TX 73301" -215509,AA Batteries (4-pack),3,3.84,06/21/19 17:29,"131 5th St, Boston, MA 02215" -215510,Wired Headphones,1,11.99,06/03/19 20:01,"328 Elm St, Austin, TX 73301" -215511,Macbook Pro Laptop,1,1700,06/23/19 18:57,"901 Sunset St, San Francisco, CA 94016" -215512,AA Batteries (4-pack),1,3.84,06/06/19 11:29,"754 Walnut St, Dallas, TX 75001" -215513,AAA Batteries (4-pack),1,2.99,06/12/19 10:34,"168 Jefferson St, San Francisco, CA 94016" -215514,Lightning Charging Cable,1,14.95,06/19/19 13:09,"360 Ridge St, New York City, NY 10001" -215515,Lightning Charging Cable,1,14.95,06/07/19 12:00,"699 Walnut St, San Francisco, CA 94016" -215516,USB-C Charging Cable,1,11.95,06/21/19 18:47,"989 Ridge St, San Francisco, CA 94016" -215517,USB-C Charging Cable,1,11.95,06/09/19 13:21,"756 2nd St, Dallas, TX 75001" -215518,Lightning Charging Cable,1,14.95,06/10/19 16:49,"247 Madison St, Boston, MA 02215" -215519,Bose SoundSport Headphones,1,99.99,06/14/19 12:19,"56 11th St, Atlanta, GA 30301" -215520,AA Batteries (4-pack),1,3.84,06/02/19 20:51,"897 Dogwood St, San Francisco, CA 94016" -215521,Macbook Pro Laptop,1,1700,06/19/19 15:56,"231 Johnson St, San Francisco, CA 94016" -215522,USB-C Charging Cable,1,11.95,06/23/19 13:30,"422 Washington St, New York City, NY 10001" -215523,AA Batteries (4-pack),2,3.84,06/02/19 22:27,"106 13th St, San Francisco, CA 94016" -215524,AA Batteries (4-pack),1,3.84,06/24/19 21:05,"210 8th St, San Francisco, CA 94016" -215525,34in Ultrawide Monitor,1,379.99,06/12/19 10:09,"752 West St, New York City, NY 10001" -215526,Flatscreen TV,1,300,06/30/19 23:47,"598 9th St, Dallas, TX 75001" -215527,LG Dryer,1,600.0,06/06/19 21:55,"151 14th St, New York City, NY 10001" -215528,AAA Batteries (4-pack),1,2.99,06/04/19 13:31,"317 Jefferson St, Los Angeles, CA 90001" -215529,ThinkPad Laptop,1,999.99,06/06/19 20:51,"572 Dogwood St, Austin, TX 73301" -215530,AA Batteries (4-pack),1,3.84,06/16/19 11:35,"88 14th St, San Francisco, CA 94016" -215531,AAA Batteries (4-pack),3,2.99,06/19/19 19:43,"87 Lake St, Los Angeles, CA 90001" -215532,Apple Airpods Headphones,1,150,06/29/19 16:36,"469 Cedar St, San Francisco, CA 94016" -215533,USB-C Charging Cable,1,11.95,06/06/19 23:02,"723 Cedar St, New York City, NY 10001" -215534,AAA Batteries (4-pack),1,2.99,06/29/19 15:25,"171 13th St, New York City, NY 10001" -215535,Apple Airpods Headphones,1,150,06/17/19 19:08,"253 10th St, Atlanta, GA 30301" -215536,27in FHD Monitor,1,149.99,06/01/19 12:11,"993 9th St, Austin, TX 73301" -215537,USB-C Charging Cable,1,11.95,06/03/19 14:40,"311 Hickory St, Seattle, WA 98101" -215538,AA Batteries (4-pack),1,3.84,06/13/19 11:41,"690 14th St, New York City, NY 10001" -215539,AA Batteries (4-pack),2,3.84,06/23/19 06:49,"588 Ridge St, San Francisco, CA 94016" -215540,Bose SoundSport Headphones,1,99.99,06/11/19 07:50,"384 Lake St, San Francisco, CA 94016" -215541,AAA Batteries (4-pack),2,2.99,06/22/19 20:20,"645 Hickory St, Los Angeles, CA 90001" -215542,AA Batteries (4-pack),2,3.84,06/16/19 07:51,"594 4th St, New York City, NY 10001" -215543,Apple Airpods Headphones,1,150,06/26/19 13:49,"37 Cedar St, Boston, MA 02215" -215544,AA Batteries (4-pack),1,3.84,06/14/19 17:33,"995 Wilson St, Seattle, WA 98101" -215545,AAA Batteries (4-pack),1,2.99,06/23/19 18:55,"965 2nd St, San Francisco, CA 94016" -215546,34in Ultrawide Monitor,1,379.99,06/06/19 21:37,"385 5th St, New York City, NY 10001" -215547,USB-C Charging Cable,1,11.95,06/15/19 15:26,"508 Johnson St, San Francisco, CA 94016" -215548,AA Batteries (4-pack),1,3.84,06/30/19 18:05,"42 Adams St, Los Angeles, CA 90001" -215549,Bose SoundSport Headphones,1,99.99,06/26/19 21:13,"968 Main St, San Francisco, CA 94016" -215550,27in 4K Gaming Monitor,1,389.99,06/20/19 19:17,"599 Highland St, Los Angeles, CA 90001" -215551,iPhone,1,700,06/03/19 20:25,"728 West St, Los Angeles, CA 90001" -215551,Lightning Charging Cable,1,14.95,06/03/19 20:25,"728 West St, Los Angeles, CA 90001" -215552,Lightning Charging Cable,1,14.95,06/15/19 11:18,"362 Jackson St, Seattle, WA 98101" -215553,34in Ultrawide Monitor,1,379.99,06/18/19 14:28,"271 Washington St, New York City, NY 10001" -215554,27in FHD Monitor,1,149.99,06/16/19 16:54,"674 Wilson St, Los Angeles, CA 90001" -215555,27in 4K Gaming Monitor,1,389.99,06/21/19 14:28,"680 Madison St, New York City, NY 10001" -215556,USB-C Charging Cable,1,11.95,06/12/19 20:10,"724 Main St, Boston, MA 02215" -215557,Wired Headphones,1,11.99,06/11/19 01:16,"707 Ridge St, New York City, NY 10001" -215558,Lightning Charging Cable,1,14.95,06/19/19 10:50,"633 Pine St, New York City, NY 10001" -215559,34in Ultrawide Monitor,1,379.99,06/02/19 12:41,"92 Hill St, New York City, NY 10001" -215560,AAA Batteries (4-pack),1,2.99,06/21/19 14:24,"699 Cherry St, Los Angeles, CA 90001" -215561,AAA Batteries (4-pack),1,2.99,06/27/19 09:02,"514 14th St, Dallas, TX 75001" -215562,USB-C Charging Cable,1,11.95,06/12/19 13:31,"34 West St, Seattle, WA 98101" -215563,USB-C Charging Cable,1,11.95,06/24/19 22:50,"304 Adams St, New York City, NY 10001" -215564,AAA Batteries (4-pack),1,2.99,06/05/19 21:47,"910 Jackson St, New York City, NY 10001" -215565,AAA Batteries (4-pack),2,2.99,06/24/19 13:29,"546 8th St, San Francisco, CA 94016" -215566,Wired Headphones,1,11.99,06/04/19 10:27,"123 Highland St, New York City, NY 10001" -215567,LG Dryer,1,600.0,06/20/19 17:08,"597 7th St, San Francisco, CA 94016" -215568,USB-C Charging Cable,1,11.95,06/23/19 19:33,"859 Elm St, San Francisco, CA 94016" -215569,iPhone,1,700,06/22/19 03:14,"147 Highland St, Dallas, TX 75001" -215569,Apple Airpods Headphones,1,150,06/22/19 03:14,"147 Highland St, Dallas, TX 75001" -215570,Lightning Charging Cable,1,14.95,06/26/19 16:50,"777 Cherry St, New York City, NY 10001" -215571,Bose SoundSport Headphones,1,99.99,06/25/19 20:20,"325 Ridge St, San Francisco, CA 94016" -215572,AAA Batteries (4-pack),2,2.99,06/01/19 23:42,"381 13th St, Seattle, WA 98101" -215573,Apple Airpods Headphones,1,150,06/05/19 09:51,"172 Spruce St, Los Angeles, CA 90001" -215574,USB-C Charging Cable,1,11.95,06/11/19 16:17,"221 Lakeview St, New York City, NY 10001" -215575,AA Batteries (4-pack),1,3.84,06/04/19 00:12,"450 Jefferson St, Los Angeles, CA 90001" -215576,Wired Headphones,1,11.99,06/07/19 13:38,"769 Pine St, Seattle, WA 98101" -215577,Lightning Charging Cable,1,14.95,06/24/19 10:03,"400 Willow St, San Francisco, CA 94016" -215578,iPhone,1,700,06/18/19 10:12,"465 Cedar St, Dallas, TX 75001" -215579,Macbook Pro Laptop,1,1700,06/11/19 07:52,"234 Maple St, New York City, NY 10001" -215580,27in 4K Gaming Monitor,1,389.99,06/03/19 17:49,"643 Jefferson St, Atlanta, GA 30301" -215581,AAA Batteries (4-pack),1,2.99,06/29/19 19:51,"21 River St, New York City, NY 10001" -215582,iPhone,1,700,06/30/19 11:47,"622 Lake St, Austin, TX 73301" -215583,20in Monitor,1,109.99,06/16/19 18:14,"192 13th St, Los Angeles, CA 90001" -215584,Vareebadd Phone,1,400,06/25/19 17:57,"972 Johnson St, New York City, NY 10001" -215585,AAA Batteries (4-pack),1,2.99,06/06/19 10:07,"445 Wilson St, San Francisco, CA 94016" -215586,USB-C Charging Cable,1,11.95,06/27/19 18:23,"204 Cedar St, Portland, ME 04101" -215587,AAA Batteries (4-pack),1,2.99,06/13/19 10:07,"174 Dogwood St, Portland, OR 97035" -215588,27in FHD Monitor,1,149.99,06/08/19 14:11,"505 1st St, Boston, MA 02215" -215589,Lightning Charging Cable,1,14.95,06/23/19 13:52,"940 Spruce St, San Francisco, CA 94016" -215590,USB-C Charging Cable,1,11.95,06/22/19 08:04,"697 Washington St, New York City, NY 10001" -215591,Flatscreen TV,1,300,06/26/19 13:52,"347 Lake St, Los Angeles, CA 90001" -215592,Vareebadd Phone,1,400,06/19/19 14:34,"706 South St, San Francisco, CA 94016" -215592,Wired Headphones,1,11.99,06/19/19 14:34,"706 South St, San Francisco, CA 94016" -215593,Vareebadd Phone,1,400,06/20/19 13:44,"193 Elm St, Portland, OR 97035" -215593,USB-C Charging Cable,1,11.95,06/20/19 13:44,"193 Elm St, Portland, OR 97035" -215594,USB-C Charging Cable,1,11.95,06/22/19 15:03,"341 Jackson St, Seattle, WA 98101" -215595,Wired Headphones,1,11.99,06/30/19 23:24,"223 Lake St, New York City, NY 10001" -215596,27in 4K Gaming Monitor,1,389.99,06/11/19 09:31,"596 6th St, San Francisco, CA 94016" -215597,AAA Batteries (4-pack),2,2.99,06/01/19 10:06,"906 Washington St, Boston, MA 02215" -215598,Lightning Charging Cable,1,14.95,06/10/19 09:17,"529 Chestnut St, San Francisco, CA 94016" -215599,Wired Headphones,1,11.99,06/05/19 13:45,"384 14th St, Atlanta, GA 30301" -215600,Apple Airpods Headphones,1,150,06/08/19 10:10,"72 Elm St, San Francisco, CA 94016" -215601,Bose SoundSport Headphones,1,99.99,06/13/19 16:09,"557 6th St, New York City, NY 10001" -215602,Bose SoundSport Headphones,1,99.99,06/04/19 15:29,"168 2nd St, Los Angeles, CA 90001" -215603,27in FHD Monitor,1,149.99,06/28/19 08:06,"233 5th St, Austin, TX 73301" -215604,Apple Airpods Headphones,1,150,06/24/19 16:48,"988 Adams St, San Francisco, CA 94016" -215605,27in FHD Monitor,1,149.99,06/09/19 01:28,"679 Church St, Boston, MA 02215" -215606,Wired Headphones,1,11.99,06/02/19 08:24,"807 Cedar St, San Francisco, CA 94016" -215607,34in Ultrawide Monitor,1,379.99,06/04/19 12:50,"215 Johnson St, Los Angeles, CA 90001" -215608,AAA Batteries (4-pack),3,2.99,06/14/19 12:39,"704 Hill St, Austin, TX 73301" -215609,AA Batteries (4-pack),1,3.84,06/27/19 17:04,"3 Washington St, Austin, TX 73301" -215610,AAA Batteries (4-pack),2,2.99,06/05/19 12:57,"92 8th St, Portland, OR 97035" -215611,Google Phone,1,600,06/19/19 07:28,"120 6th St, Los Angeles, CA 90001" -215612,27in FHD Monitor,1,149.99,06/24/19 20:46,"64 Willow St, Los Angeles, CA 90001" -215613,Lightning Charging Cable,1,14.95,06/19/19 18:22,"583 1st St, Dallas, TX 75001" -215614,Lightning Charging Cable,1,14.95,06/23/19 16:54,"101 7th St, Los Angeles, CA 90001" -215615,USB-C Charging Cable,1,11.95,06/05/19 17:36,"653 Main St, New York City, NY 10001" -215616,USB-C Charging Cable,1,11.95,06/21/19 06:47,"771 2nd St, Los Angeles, CA 90001" -215617,AA Batteries (4-pack),1,3.84,06/17/19 22:42,"325 14th St, Portland, ME 04101" -215618,USB-C Charging Cable,1,11.95,06/28/19 10:49,"20 West St, San Francisco, CA 94016" -215619,USB-C Charging Cable,1,11.95,06/10/19 19:00,"631 Elm St, San Francisco, CA 94016" -215620,Lightning Charging Cable,2,14.95,06/11/19 15:04,"102 11th St, San Francisco, CA 94016" -215621,AAA Batteries (4-pack),1,2.99,06/28/19 14:34,"689 Adams St, New York City, NY 10001" -215622,USB-C Charging Cable,1,11.95,06/25/19 11:33,"440 Walnut St, Los Angeles, CA 90001" -215623,27in 4K Gaming Monitor,1,389.99,06/21/19 17:27,"978 Elm St, San Francisco, CA 94016" -215624,ThinkPad Laptop,1,999.99,06/03/19 11:25,"261 Maple St, New York City, NY 10001" -215625,iPhone,1,700,06/24/19 12:07,"513 Johnson St, Portland, ME 04101" -215626,Lightning Charging Cable,1,14.95,06/24/19 11:26,"363 8th St, San Francisco, CA 94016" -215627,USB-C Charging Cable,1,11.95,06/13/19 21:34,"521 Meadow St, San Francisco, CA 94016" -215628,Bose SoundSport Headphones,1,99.99,06/14/19 20:23,"551 7th St, Dallas, TX 75001" -215629,27in 4K Gaming Monitor,1,389.99,06/18/19 19:17,"567 13th St, San Francisco, CA 94016" -215630,Flatscreen TV,1,300,06/05/19 11:37,"858 Walnut St, Dallas, TX 75001" -215631,Google Phone,1,600,06/30/19 18:35,"767 Dogwood St, Atlanta, GA 30301" -215632,AA Batteries (4-pack),2,3.84,06/09/19 12:23,"667 Jackson St, Los Angeles, CA 90001" -215633,Apple Airpods Headphones,1,150,06/04/19 15:09,"597 Forest St, Dallas, TX 75001" -215634,Bose SoundSport Headphones,1,99.99,06/24/19 15:52,"412 Sunset St, San Francisco, CA 94016" -215635,34in Ultrawide Monitor,1,379.99,06/14/19 13:51,"521 Spruce St, Boston, MA 02215" -215636,Bose SoundSport Headphones,1,99.99,06/25/19 17:54,"228 4th St, Austin, TX 73301" -215637,USB-C Charging Cable,1,11.95,06/22/19 23:37,"909 13th St, San Francisco, CA 94016" -215638,USB-C Charging Cable,1,11.95,06/24/19 20:05,"379 9th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -215639,AA Batteries (4-pack),1,3.84,06/05/19 15:28,"186 Ridge St, San Francisco, CA 94016" -215640,Google Phone,1,600,06/04/19 17:35,"887 River St, San Francisco, CA 94016" -215640,USB-C Charging Cable,1,11.95,06/04/19 17:35,"887 River St, San Francisco, CA 94016" -215641,Wired Headphones,1,11.99,06/23/19 19:43,"659 Wilson St, Boston, MA 02215" -215642,USB-C Charging Cable,1,11.95,06/05/19 15:35,"579 Lincoln St, Boston, MA 02215" -215643,USB-C Charging Cable,1,11.95,06/26/19 19:09,"403 Center St, Boston, MA 02215" -215644,27in FHD Monitor,1,149.99,06/23/19 10:56,"810 Jefferson St, San Francisco, CA 94016" -215645,Bose SoundSport Headphones,1,99.99,06/25/19 10:21,"66 Sunset St, Los Angeles, CA 90001" -215646,AAA Batteries (4-pack),1,2.99,06/06/19 21:50,"943 Forest St, Seattle, WA 98101" -215647,USB-C Charging Cable,1,11.95,06/25/19 17:34,"56 South St, New York City, NY 10001" -215648,Bose SoundSport Headphones,1,99.99,06/06/19 09:50,"579 Highland St, Dallas, TX 75001" -215649,Wired Headphones,1,11.99,06/05/19 10:34,"894 7th St, Dallas, TX 75001" -215650,Flatscreen TV,1,300,06/12/19 08:31,"944 Jackson St, Portland, OR 97035" -215651,USB-C Charging Cable,1,11.95,06/18/19 06:08,"729 Johnson St, New York City, NY 10001" -215652,34in Ultrawide Monitor,1,379.99,06/03/19 20:19,"583 Hill St, Atlanta, GA 30301" -215653,USB-C Charging Cable,1,11.95,06/18/19 21:27,"425 Lake St, Los Angeles, CA 90001" -215653,20in Monitor,1,109.99,06/18/19 21:27,"425 Lake St, Los Angeles, CA 90001" -215654,Wired Headphones,2,11.99,06/08/19 13:06,"835 1st St, Boston, MA 02215" -215655,AA Batteries (4-pack),1,3.84,06/27/19 08:14,"866 Lincoln St, Boston, MA 02215" -215656,Bose SoundSport Headphones,1,99.99,06/12/19 19:11,"499 10th St, Los Angeles, CA 90001" -215657,27in 4K Gaming Monitor,1,389.99,06/27/19 12:45,"985 2nd St, Seattle, WA 98101" -215658,27in FHD Monitor,1,149.99,06/26/19 14:12,"263 1st St, Portland, OR 97035" -215659,Bose SoundSport Headphones,1,99.99,06/06/19 10:45,"142 12th St, Seattle, WA 98101" -215660,USB-C Charging Cable,1,11.95,06/16/19 19:11,"996 Dogwood St, Los Angeles, CA 90001" -215661,Wired Headphones,1,11.99,06/22/19 18:19,"360 West St, San Francisco, CA 94016" -215662,Lightning Charging Cable,2,14.95,06/09/19 15:15,"916 West St, New York City, NY 10001" -215663,Apple Airpods Headphones,1,150,06/03/19 08:16,"822 Madison St, San Francisco, CA 94016" -215664,34in Ultrawide Monitor,1,379.99,06/18/19 19:09,"362 14th St, Dallas, TX 75001" -215665,Apple Airpods Headphones,1,150,06/05/19 17:03,"240 Walnut St, Austin, TX 73301" -215666,27in FHD Monitor,1,149.99,06/19/19 11:22,"908 Elm St, New York City, NY 10001" -215667,Wired Headphones,4,11.99,06/26/19 21:27,"228 1st St, Los Angeles, CA 90001" -215668,Wired Headphones,1,11.99,06/10/19 09:27,"78 12th St, Atlanta, GA 30301" -215669,Apple Airpods Headphones,1,150,06/08/19 19:20,"668 7th St, Boston, MA 02215" -215670,Wired Headphones,1,11.99,06/19/19 20:38,"987 5th St, San Francisco, CA 94016" -215671,iPhone,1,700,06/07/19 13:58,"585 Forest St, New York City, NY 10001" -215672,Lightning Charging Cable,1,14.95,06/09/19 18:41,"585 Madison St, New York City, NY 10001" -215673,AAA Batteries (4-pack),1,2.99,06/27/19 17:47,"823 9th St, New York City, NY 10001" -215674,Wired Headphones,1,11.99,06/27/19 05:19,"947 Adams St, Los Angeles, CA 90001" -215675,34in Ultrawide Monitor,1,379.99,06/10/19 19:24,"702 4th St, Atlanta, GA 30301" -215676,AAA Batteries (4-pack),1,2.99,06/14/19 14:11,"707 Center St, Los Angeles, CA 90001" -215677,ThinkPad Laptop,1,999.99,06/09/19 17:44,"823 Johnson St, San Francisco, CA 94016" -215678,Lightning Charging Cable,1,14.95,06/17/19 20:32,"276 Spruce St, Dallas, TX 75001" -215679,USB-C Charging Cable,1,11.95,06/28/19 15:24,"111 9th St, Boston, MA 02215" -215680,Wired Headphones,1,11.99,06/30/19 19:29,"508 2nd St, Portland, OR 97035" -215681,Bose SoundSport Headphones,1,99.99,06/03/19 17:24,"754 Johnson St, Atlanta, GA 30301" -215682,20in Monitor,1,109.99,06/20/19 13:18,"245 6th St, Atlanta, GA 30301" -215683,Wired Headphones,1,11.99,06/24/19 12:51,"828 Willow St, San Francisco, CA 94016" -215684,USB-C Charging Cable,1,11.95,06/11/19 20:48,"753 Cedar St, San Francisco, CA 94016" -215685,Lightning Charging Cable,1,14.95,06/29/19 22:32,"747 9th St, New York City, NY 10001" -215686,AA Batteries (4-pack),2,3.84,06/19/19 10:32,"166 Lake St, San Francisco, CA 94016" -215687,AAA Batteries (4-pack),1,2.99,06/08/19 08:31,"837 1st St, Portland, OR 97035" -215688,Apple Airpods Headphones,1,150,06/05/19 14:18,"590 Hill St, Dallas, TX 75001" -215689,Google Phone,1,600,06/03/19 13:09,"836 Lincoln St, San Francisco, CA 94016" -215689,27in 4K Gaming Monitor,1,389.99,06/03/19 13:09,"836 Lincoln St, San Francisco, CA 94016" -215690,Bose SoundSport Headphones,1,99.99,06/02/19 19:13,"3 1st St, Atlanta, GA 30301" -215691,LG Dryer,1,600.0,06/19/19 08:04,"59 Maple St, Los Angeles, CA 90001" -215692,20in Monitor,1,109.99,06/01/19 17:04,"893 Lincoln St, San Francisco, CA 94016" -215693,Wired Headphones,1,11.99,06/06/19 12:20,"730 Church St, San Francisco, CA 94016" -215694,AAA Batteries (4-pack),1,2.99,06/02/19 11:02,"719 Highland St, Portland, OR 97035" -215695,AAA Batteries (4-pack),2,2.99,06/04/19 22:29,"740 Cherry St, New York City, NY 10001" -215696,Lightning Charging Cable,1,14.95,06/20/19 17:16,"947 10th St, San Francisco, CA 94016" -215697,LG Washing Machine,1,600.0,06/17/19 12:02,"753 Walnut St, Atlanta, GA 30301" -215698,USB-C Charging Cable,1,11.95,06/02/19 09:21,"203 Washington St, Atlanta, GA 30301" -215699,Bose SoundSport Headphones,1,99.99,06/04/19 20:39,"59 Meadow St, Austin, TX 73301" -215700,Apple Airpods Headphones,1,150,06/15/19 20:24,"973 14th St, Dallas, TX 75001" -215700,AA Batteries (4-pack),1,3.84,06/15/19 20:24,"973 14th St, Dallas, TX 75001" -215701,27in FHD Monitor,1,149.99,06/17/19 07:33,"178 Dogwood St, Boston, MA 02215" -215702,AAA Batteries (4-pack),1,2.99,06/14/19 13:01,"419 Hill St, Seattle, WA 98101" -215703,AA Batteries (4-pack),1,3.84,06/04/19 10:45,"497 Center St, New York City, NY 10001" -215704,USB-C Charging Cable,1,11.95,06/15/19 15:44,"489 South St, Portland, ME 04101" -215705,Lightning Charging Cable,1,14.95,06/02/19 19:52,"635 Wilson St, New York City, NY 10001" -215706,Lightning Charging Cable,1,14.95,06/15/19 09:49,"542 6th St, Atlanta, GA 30301" -215707,Lightning Charging Cable,1,14.95,06/02/19 15:06,"943 Main St, New York City, NY 10001" -215708,Vareebadd Phone,1,400,06/10/19 18:44,"654 Spruce St, Los Angeles, CA 90001" -215709,USB-C Charging Cable,1,11.95,06/09/19 20:19,"319 Chestnut St, Dallas, TX 75001" -215710,Google Phone,1,600,06/17/19 13:25,"528 12th St, San Francisco, CA 94016" -215710,USB-C Charging Cable,1,11.95,06/17/19 13:25,"528 12th St, San Francisco, CA 94016" -215710,Wired Headphones,1,11.99,06/17/19 13:25,"528 12th St, San Francisco, CA 94016" -215711,27in FHD Monitor,1,149.99,06/25/19 10:05,"734 11th St, Austin, TX 73301" -215711,AA Batteries (4-pack),1,3.84,06/25/19 10:05,"734 11th St, Austin, TX 73301" -215712,Lightning Charging Cable,1,14.95,06/04/19 06:48,"460 Johnson St, San Francisco, CA 94016" -215713,Google Phone,1,600,06/22/19 00:09,"585 5th St, Dallas, TX 75001" -215714,Bose SoundSport Headphones,1,99.99,06/27/19 17:22,"172 Hill St, San Francisco, CA 94016" -215715,AAA Batteries (4-pack),1,2.99,06/30/19 15:59,"421 Maple St, Boston, MA 02215" -215716,Lightning Charging Cable,1,14.95,06/04/19 15:39,"794 Forest St, Atlanta, GA 30301" -215717,AA Batteries (4-pack),1,3.84,06/21/19 11:11,"215 Sunset St, San Francisco, CA 94016" -215718,27in 4K Gaming Monitor,1,389.99,06/21/19 18:51,"179 Spruce St, Los Angeles, CA 90001" -215719,Macbook Pro Laptop,1,1700,06/01/19 16:43,"450 Highland St, Boston, MA 02215" -215720,Wired Headphones,1,11.99,06/21/19 08:44,"88 Center St, Atlanta, GA 30301" -215721,Apple Airpods Headphones,1,150,06/04/19 16:22,"800 Willow St, San Francisco, CA 94016" -215722,AAA Batteries (4-pack),2,2.99,06/16/19 14:56,"147 14th St, New York City, NY 10001" -215723,Flatscreen TV,1,300,06/07/19 15:22,"693 Forest St, New York City, NY 10001" -215724,Wired Headphones,1,11.99,06/16/19 16:00,"398 Center St, Austin, TX 73301" -215725,Wired Headphones,1,11.99,06/15/19 19:39,"153 Church St, Seattle, WA 98101" -215726,34in Ultrawide Monitor,1,379.99,06/13/19 22:48,"747 Meadow St, New York City, NY 10001" -215727,AA Batteries (4-pack),4,3.84,06/14/19 15:07,"404 Cherry St, Los Angeles, CA 90001" -215728,Apple Airpods Headphones,1,150,06/08/19 15:53,"96 7th St, Los Angeles, CA 90001" -215729,Apple Airpods Headphones,1,150,06/20/19 13:22,"163 Washington St, Los Angeles, CA 90001" -215730,Wired Headphones,1,11.99,06/13/19 20:40,"578 Hickory St, Boston, MA 02215" -215731,AAA Batteries (4-pack),1,2.99,06/25/19 08:38,"195 Jefferson St, Dallas, TX 75001" -215732,Apple Airpods Headphones,1,150,06/02/19 16:07,"859 14th St, Seattle, WA 98101" -215733,Flatscreen TV,1,300,06/05/19 13:49,"749 Maple St, San Francisco, CA 94016" -215734,Lightning Charging Cable,1,14.95,06/02/19 12:54,"288 Lakeview St, Austin, TX 73301" -215735,AA Batteries (4-pack),1,3.84,06/24/19 09:43,"604 Washington St, Austin, TX 73301" -215736,27in FHD Monitor,1,149.99,06/09/19 10:17,"601 Wilson St, San Francisco, CA 94016" -215737,USB-C Charging Cable,1,11.95,06/24/19 11:32,"537 Hill St, San Francisco, CA 94016" -215738,USB-C Charging Cable,1,11.95,06/10/19 20:13,"283 Center St, Los Angeles, CA 90001" -215739,27in FHD Monitor,1,149.99,06/09/19 13:34,"646 7th St, Atlanta, GA 30301" -215740,Wired Headphones,1,11.99,06/19/19 19:48,"565 10th St, Atlanta, GA 30301" -215741,Flatscreen TV,1,300,06/03/19 21:06,"791 Willow St, Los Angeles, CA 90001" -215742,Lightning Charging Cable,1,14.95,06/05/19 21:49,"159 Adams St, Los Angeles, CA 90001" -215743,USB-C Charging Cable,1,11.95,06/11/19 08:01,"635 14th St, Dallas, TX 75001" -215744,AAA Batteries (4-pack),2,2.99,06/24/19 10:23,"391 Main St, San Francisco, CA 94016" -215745,Apple Airpods Headphones,1,150,06/07/19 10:36,"31 Washington St, New York City, NY 10001" -215746,Google Phone,1,600,06/16/19 06:29,"818 Forest St, Los Angeles, CA 90001" -215747,AAA Batteries (4-pack),3,2.99,06/30/19 21:24,"988 Maple St, Dallas, TX 75001" -215748,Bose SoundSport Headphones,1,99.99,06/26/19 01:20,"46 Maple St, San Francisco, CA 94016" -215749,27in 4K Gaming Monitor,1,389.99,06/17/19 21:21,"439 River St, Los Angeles, CA 90001" -215750,Apple Airpods Headphones,1,150,06/18/19 22:20,"870 Dogwood St, Seattle, WA 98101" -215751,Macbook Pro Laptop,1,1700,06/02/19 00:03,"604 South St, Seattle, WA 98101" -215752,Flatscreen TV,1,300,06/25/19 11:37,"525 Hickory St, Los Angeles, CA 90001" -215753,AAA Batteries (4-pack),1,2.99,06/26/19 13:37,"524 Jefferson St, San Francisco, CA 94016" -215754,USB-C Charging Cable,1,11.95,06/27/19 19:26,"676 Elm St, San Francisco, CA 94016" -215755,AA Batteries (4-pack),2,3.84,06/16/19 18:50,"860 River St, Atlanta, GA 30301" -215756,27in FHD Monitor,1,149.99,06/15/19 00:36,"629 12th St, New York City, NY 10001" -215757,34in Ultrawide Monitor,1,379.99,06/22/19 17:00,"878 Willow St, Los Angeles, CA 90001" -215758,Flatscreen TV,1,300,06/30/19 21:34,"808 14th St, New York City, NY 10001" -215759,Macbook Pro Laptop,1,1700,06/28/19 22:08,"753 Adams St, Dallas, TX 75001" -215760,AAA Batteries (4-pack),2,2.99,06/13/19 08:04,"162 Jefferson St, San Francisco, CA 94016" -215761,AAA Batteries (4-pack),1,2.99,06/07/19 21:15,"71 12th St, San Francisco, CA 94016" -215762,ThinkPad Laptop,1,999.99,06/07/19 23:41,"272 Wilson St, Atlanta, GA 30301" -215763,Apple Airpods Headphones,1,150,06/20/19 19:08,"677 Lake St, Los Angeles, CA 90001" -215764,27in FHD Monitor,1,149.99,06/16/19 16:06,"492 Park St, Atlanta, GA 30301" -215765,AAA Batteries (4-pack),1,2.99,06/22/19 17:31,"256 9th St, Los Angeles, CA 90001" -215766,Lightning Charging Cable,1,14.95,06/25/19 15:13,"36 Lake St, Austin, TX 73301" -215767,ThinkPad Laptop,1,999.99,06/04/19 18:40,"551 12th St, Austin, TX 73301" -215768,20in Monitor,1,109.99,06/25/19 11:51,"623 12th St, San Francisco, CA 94016" -215769,Apple Airpods Headphones,1,150,06/21/19 12:00,"572 Forest St, Boston, MA 02215" -215770,Apple Airpods Headphones,1,150,06/27/19 00:58,"106 Johnson St, San Francisco, CA 94016" -215771,Bose SoundSport Headphones,1,99.99,06/29/19 13:12,"542 South St, Los Angeles, CA 90001" -215772,Bose SoundSport Headphones,1,99.99,06/21/19 12:11,"649 Park St, Austin, TX 73301" -215773,Wired Headphones,1,11.99,06/22/19 22:28,"477 Dogwood St, Seattle, WA 98101" -215774,Flatscreen TV,1,300,06/02/19 21:49,"142 Main St, Dallas, TX 75001" -215775,27in 4K Gaming Monitor,1,389.99,06/28/19 06:40,"948 12th St, San Francisco, CA 94016" -215776,Wired Headphones,1,11.99,06/25/19 14:48,"574 Ridge St, Seattle, WA 98101" -215777,Wired Headphones,1,11.99,06/30/19 21:55,"795 Highland St, New York City, NY 10001" -215778,USB-C Charging Cable,1,11.95,06/21/19 18:51,"477 Hickory St, Portland, OR 97035" -215779,AA Batteries (4-pack),1,3.84,06/12/19 13:07,"139 Adams St, Los Angeles, CA 90001" -215780,Flatscreen TV,1,300,06/30/19 00:41,"525 South St, Atlanta, GA 30301" -215781,Wired Headphones,1,11.99,06/07/19 13:39,"429 Park St, San Francisco, CA 94016" -215782,Wired Headphones,1,11.99,06/22/19 09:06,"507 South St, Dallas, TX 75001" -215783,20in Monitor,1,109.99,06/17/19 19:21,"521 4th St, San Francisco, CA 94016" -215784,Apple Airpods Headphones,1,150,06/27/19 07:00,"525 4th St, San Francisco, CA 94016" -215785,Lightning Charging Cable,1,14.95,06/25/19 14:53,"547 Lincoln St, Los Angeles, CA 90001" -215786,iPhone,1,700,06/06/19 22:38,"870 Chestnut St, Los Angeles, CA 90001" -215787,AA Batteries (4-pack),2,3.84,06/21/19 20:02,"652 West St, San Francisco, CA 94016" -215788,AAA Batteries (4-pack),2,2.99,06/23/19 15:01,"438 4th St, Seattle, WA 98101" -215789,Flatscreen TV,1,300,06/21/19 22:46,"972 Main St, Seattle, WA 98101" -215790,Lightning Charging Cable,1,14.95,06/24/19 11:56,"61 1st St, Seattle, WA 98101" -215791,Lightning Charging Cable,2,14.95,06/26/19 17:31,"150 Cherry St, New York City, NY 10001" -215792,20in Monitor,1,109.99,06/07/19 00:19,"217 River St, San Francisco, CA 94016" -215793,Apple Airpods Headphones,1,150,06/09/19 07:39,"217 Spruce St, San Francisco, CA 94016" -215794,34in Ultrawide Monitor,1,379.99,06/04/19 18:39,"674 9th St, Los Angeles, CA 90001" -215795,Wired Headphones,1,11.99,06/12/19 19:38,"736 2nd St, San Francisco, CA 94016" -215796,Wired Headphones,2,11.99,06/06/19 08:36,"859 Wilson St, San Francisco, CA 94016" -215797,USB-C Charging Cable,1,11.95,06/11/19 21:24,"781 Johnson St, Los Angeles, CA 90001" -215798,Flatscreen TV,1,300,06/14/19 15:14,"566 Ridge St, San Francisco, CA 94016" -215799,Bose SoundSport Headphones,1,99.99,06/12/19 00:54,"568 Jackson St, San Francisco, CA 94016" -215800,Apple Airpods Headphones,1,150,06/15/19 20:33,"967 Highland St, Atlanta, GA 30301" -215801,Wired Headphones,1,11.99,06/10/19 08:27,"716 7th St, Seattle, WA 98101" -215802,Bose SoundSport Headphones,1,99.99,06/13/19 21:05,"451 Lake St, San Francisco, CA 94016" -215803,Bose SoundSport Headphones,1,99.99,06/13/19 12:14,"527 Spruce St, Boston, MA 02215" -215804,20in Monitor,1,109.99,06/20/19 20:25,"634 Hickory St, San Francisco, CA 94016" -215805,AA Batteries (4-pack),1,3.84,06/23/19 23:30,"157 Spruce St, Los Angeles, CA 90001" -215806,Vareebadd Phone,1,400,06/12/19 15:17,"262 Church St, San Francisco, CA 94016" -215807,iPhone,1,700,06/22/19 17:03,"934 10th St, Los Angeles, CA 90001" -215808,Bose SoundSport Headphones,1,99.99,06/08/19 23:49,"984 13th St, San Francisco, CA 94016" -215809,Apple Airpods Headphones,1,150,06/05/19 21:59,"884 Main St, Seattle, WA 98101" -215810,Bose SoundSport Headphones,1,99.99,06/02/19 15:05,"658 North St, San Francisco, CA 94016" -215811,Lightning Charging Cable,1,14.95,06/04/19 16:29,"398 Cherry St, Dallas, TX 75001" -215812,USB-C Charging Cable,1,11.95,06/23/19 00:07,"800 13th St, San Francisco, CA 94016" -215813,27in FHD Monitor,1,149.99,06/25/19 22:24,"674 North St, Austin, TX 73301" -215814,Apple Airpods Headphones,1,150,06/08/19 15:11,"537 Hill St, Portland, OR 97035" -215815,USB-C Charging Cable,1,11.95,06/03/19 09:58,"270 Center St, Boston, MA 02215" -215816,Google Phone,1,600,06/26/19 17:33,"921 Adams St, New York City, NY 10001" -215816,USB-C Charging Cable,1,11.95,06/26/19 17:33,"921 Adams St, New York City, NY 10001" -215817,Apple Airpods Headphones,1,150,06/27/19 18:49,"543 Ridge St, New York City, NY 10001" -215818,Apple Airpods Headphones,1,150,06/07/19 01:03,"606 Meadow St, San Francisco, CA 94016" -215819,27in FHD Monitor,1,149.99,06/11/19 14:22,"666 Dogwood St, Seattle, WA 98101" -215820,27in 4K Gaming Monitor,1,389.99,06/08/19 00:10,"274 12th St, Seattle, WA 98101" -215821,AA Batteries (4-pack),2,3.84,06/07/19 19:31,"35 Johnson St, Atlanta, GA 30301" -215822,Wired Headphones,1,11.99,06/29/19 15:03,"481 North St, Atlanta, GA 30301" -215823,Macbook Pro Laptop,1,1700,06/08/19 14:23,"965 Lake St, Boston, MA 02215" -215824,USB-C Charging Cable,1,11.95,06/29/19 04:38,"277 14th St, Boston, MA 02215" -215825,AA Batteries (4-pack),2,3.84,06/26/19 12:25,"715 Lincoln St, Boston, MA 02215" -215826,Google Phone,1,600,06/05/19 03:53,"946 Maple St, Dallas, TX 75001" -215827,34in Ultrawide Monitor,1,379.99,06/30/19 19:09,"143 10th St, Portland, OR 97035" -215828,27in 4K Gaming Monitor,1,389.99,06/02/19 23:27,"421 Johnson St, Boston, MA 02215" -215829,AA Batteries (4-pack),1,3.84,06/02/19 19:28,"289 4th St, San Francisco, CA 94016" -,,,,, -215830,AAA Batteries (4-pack),1,2.99,06/06/19 09:31,"487 Madison St, Atlanta, GA 30301" -215831,AA Batteries (4-pack),2,3.84,06/03/19 14:39,"276 Lincoln St, San Francisco, CA 94016" -215832,Flatscreen TV,1,300,06/16/19 17:50,"179 Maple St, San Francisco, CA 94016" -215833,34in Ultrawide Monitor,1,379.99,06/15/19 16:06,"822 6th St, San Francisco, CA 94016" -215834,Wired Headphones,1,11.99,06/26/19 09:14,"47 Forest St, Seattle, WA 98101" -215835,Lightning Charging Cable,1,14.95,06/28/19 19:52,"573 Lincoln St, Atlanta, GA 30301" -215836,Macbook Pro Laptop,1,1700,06/08/19 18:44,"70 Park St, Los Angeles, CA 90001" -215837,AA Batteries (4-pack),1,3.84,06/26/19 20:35,"831 12th St, San Francisco, CA 94016" -215838,AAA Batteries (4-pack),1,2.99,06/19/19 20:06,"899 Wilson St, San Francisco, CA 94016" -215839,Wired Headphones,2,11.99,06/30/19 13:56,"726 Cedar St, Boston, MA 02215" -215840,AA Batteries (4-pack),1,3.84,06/05/19 07:53,"742 Ridge St, Boston, MA 02215" -215841,Lightning Charging Cable,1,14.95,06/25/19 18:31,"599 Walnut St, Portland, OR 97035" -215842,Bose SoundSport Headphones,1,99.99,06/25/19 11:48,"268 9th St, Los Angeles, CA 90001" -215843,Vareebadd Phone,1,400,06/28/19 09:26,"774 4th St, New York City, NY 10001" -215843,Wired Headphones,1,11.99,06/28/19 09:26,"774 4th St, New York City, NY 10001" -215844,Flatscreen TV,1,300,06/08/19 13:26,"60 10th St, San Francisco, CA 94016" -215845,AA Batteries (4-pack),1,3.84,06/29/19 06:13,"492 Hill St, San Francisco, CA 94016" -215846,iPhone,1,700,06/23/19 10:37,"563 6th St, San Francisco, CA 94016" -215846,Lightning Charging Cable,1,14.95,06/23/19 10:37,"563 6th St, San Francisco, CA 94016" -215847,34in Ultrawide Monitor,1,379.99,06/28/19 17:35,"763 Dogwood St, Austin, TX 73301" -215848,USB-C Charging Cable,1,11.95,06/18/19 19:17,"696 West St, San Francisco, CA 94016" -215849,USB-C Charging Cable,1,11.95,06/21/19 20:11,"629 Spruce St, Dallas, TX 75001" -215850,Apple Airpods Headphones,1,150,06/29/19 11:34,"957 14th St, San Francisco, CA 94016" -215851,USB-C Charging Cable,1,11.95,06/23/19 07:46,"893 Madison St, San Francisco, CA 94016" -215852,Wired Headphones,1,11.99,06/16/19 15:46,"882 South St, New York City, NY 10001" -215853,Lightning Charging Cable,1,14.95,06/06/19 16:37,"19 10th St, Los Angeles, CA 90001" -215854,USB-C Charging Cable,2,11.95,06/26/19 13:07,"39 12th St, New York City, NY 10001" -215855,AAA Batteries (4-pack),1,2.99,06/29/19 23:28,"366 Main St, Atlanta, GA 30301" -215856,iPhone,1,700,06/28/19 17:23,"530 Meadow St, San Francisco, CA 94016" -215857,Wired Headphones,1,11.99,06/29/19 16:03,"356 9th St, Boston, MA 02215" -215858,Apple Airpods Headphones,1,150,06/12/19 22:23,"262 10th St, Los Angeles, CA 90001" -215859,Lightning Charging Cable,1,14.95,06/30/19 11:38,"694 Spruce St, Dallas, TX 75001" -215860,Lightning Charging Cable,1,14.95,06/06/19 20:32,"387 5th St, Austin, TX 73301" -215861,20in Monitor,1,109.99,06/18/19 09:53,"944 Hill St, Dallas, TX 75001" -215862,27in FHD Monitor,1,149.99,06/12/19 13:31,"204 Willow St, Los Angeles, CA 90001" -215863,20in Monitor,1,109.99,06/05/19 19:51,"154 Washington St, Los Angeles, CA 90001" -215864,27in FHD Monitor,1,149.99,06/21/19 21:50,"222 11th St, San Francisco, CA 94016" -215865,20in Monitor,1,109.99,06/04/19 12:46,"913 Main St, Boston, MA 02215" -215866,34in Ultrawide Monitor,1,379.99,06/14/19 20:20,"496 Park St, Boston, MA 02215" -215867,Bose SoundSport Headphones,1,99.99,06/29/19 00:54,"558 13th St, San Francisco, CA 94016" -215868,Bose SoundSport Headphones,1,99.99,06/16/19 11:42,"699 Lake St, Portland, ME 04101" -215869,Apple Airpods Headphones,1,150,06/19/19 16:12,"245 Lincoln St, New York City, NY 10001" -215870,Wired Headphones,1,11.99,06/24/19 22:56,"617 South St, San Francisco, CA 94016" -215871,USB-C Charging Cable,1,11.95,06/08/19 22:46,"711 9th St, San Francisco, CA 94016" -215872,27in FHD Monitor,1,149.99,06/18/19 14:19,"351 13th St, Los Angeles, CA 90001" -215873,AA Batteries (4-pack),2,3.84,06/14/19 13:28,"130 2nd St, Atlanta, GA 30301" -215874,AA Batteries (4-pack),1,3.84,06/25/19 10:52,"315 Center St, Seattle, WA 98101" -215875,Wired Headphones,2,11.99,06/26/19 17:01,"737 9th St, Atlanta, GA 30301" -215876,Vareebadd Phone,1,400,06/07/19 22:25,"717 11th St, Los Angeles, CA 90001" -215877,LG Washing Machine,1,600.0,06/25/19 18:28,"878 Washington St, San Francisco, CA 94016" -215878,Lightning Charging Cable,1,14.95,06/28/19 12:52,"538 Adams St, Atlanta, GA 30301" -215879,Apple Airpods Headphones,1,150,06/29/19 09:01,"741 Maple St, Los Angeles, CA 90001" -215880,Bose SoundSport Headphones,1,99.99,06/02/19 09:52,"524 Main St, Portland, ME 04101" -215881,AAA Batteries (4-pack),1,2.99,06/29/19 14:56,"490 6th St, Los Angeles, CA 90001" -215882,AA Batteries (4-pack),1,3.84,06/09/19 00:28,"554 Park St, San Francisco, CA 94016" -215883,Apple Airpods Headphones,1,150,06/15/19 21:11,"375 Pine St, Boston, MA 02215" -215884,USB-C Charging Cable,1,11.95,06/17/19 02:21,"236 7th St, Los Angeles, CA 90001" -215885,Apple Airpods Headphones,1,150,06/21/19 07:19,"125 Lake St, Portland, OR 97035" -215886,AA Batteries (4-pack),1,3.84,06/03/19 16:57,"655 Jackson St, Atlanta, GA 30301" -215887,AA Batteries (4-pack),3,3.84,06/14/19 20:28,"542 5th St, Portland, OR 97035" -215888,Wired Headphones,1,11.99,06/12/19 14:18,"673 Johnson St, Los Angeles, CA 90001" -215889,AAA Batteries (4-pack),2,2.99,06/28/19 10:13,"777 13th St, Boston, MA 02215" -215890,AA Batteries (4-pack),1,3.84,06/28/19 21:43,"519 1st St, Los Angeles, CA 90001" -215891,Apple Airpods Headphones,1,150,06/04/19 20:03,"85 9th St, Boston, MA 02215" -215892,34in Ultrawide Monitor,1,379.99,06/24/19 18:23,"962 Lakeview St, San Francisco, CA 94016" -215893,Google Phone,1,600,06/11/19 14:41,"910 Wilson St, San Francisco, CA 94016" -215894,USB-C Charging Cable,1,11.95,06/12/19 19:47,"133 South St, San Francisco, CA 94016" -215895,Vareebadd Phone,1,400,06/07/19 14:48,"837 Elm St, Portland, OR 97035" -215896,Apple Airpods Headphones,1,150,06/04/19 12:36,"719 Johnson St, San Francisco, CA 94016" -215897,USB-C Charging Cable,1,11.95,06/16/19 16:04,"278 Pine St, San Francisco, CA 94016" -215898,USB-C Charging Cable,2,11.95,06/27/19 10:33,"222 Cherry St, San Francisco, CA 94016" -215899,Vareebadd Phone,1,400,06/07/19 15:40,"57 South St, Austin, TX 73301" -215899,Wired Headphones,1,11.99,06/07/19 15:40,"57 South St, Austin, TX 73301" -215900,Bose SoundSport Headphones,1,99.99,06/14/19 14:48,"842 10th St, Boston, MA 02215" -215901,Lightning Charging Cable,1,14.95,06/10/19 20:30,"865 Hill St, New York City, NY 10001" -215902,Lightning Charging Cable,1,14.95,06/25/19 18:27,"269 Cedar St, San Francisco, CA 94016" -215903,USB-C Charging Cable,1,11.95,06/22/19 08:24,"832 West St, Dallas, TX 75001" -215904,Google Phone,1,600,06/20/19 00:33,"611 Walnut St, Atlanta, GA 30301" -215904,Bose SoundSport Headphones,1,99.99,06/20/19 00:33,"611 Walnut St, Atlanta, GA 30301" -215905,AA Batteries (4-pack),2,3.84,06/30/19 11:42,"409 Main St, Los Angeles, CA 90001" -215906,27in 4K Gaming Monitor,1,389.99,06/16/19 11:17,"84 Spruce St, Austin, TX 73301" -215907,iPhone,1,700,06/09/19 19:24,"134 Park St, New York City, NY 10001" -215907,Lightning Charging Cable,1,14.95,06/09/19 19:24,"134 Park St, New York City, NY 10001" -215908,Lightning Charging Cable,1,14.95,06/14/19 15:48,"952 6th St, Dallas, TX 75001" -215909,Macbook Pro Laptop,1,1700,06/09/19 19:14,"377 Hill St, Dallas, TX 75001" -215910,Vareebadd Phone,1,400,06/26/19 11:27,"304 5th St, San Francisco, CA 94016" -215911,34in Ultrawide Monitor,1,379.99,06/12/19 16:34,"633 2nd St, Boston, MA 02215" -215912,ThinkPad Laptop,1,999.99,06/25/19 06:41,"690 12th St, Boston, MA 02215" -215913,USB-C Charging Cable,1,11.95,06/24/19 21:24,"293 4th St, Boston, MA 02215" -215914,Lightning Charging Cable,1,14.95,06/02/19 15:12,"22 Meadow St, Seattle, WA 98101" -215915,Wired Headphones,1,11.99,06/12/19 13:21,"480 Washington St, New York City, NY 10001" -215916,Bose SoundSport Headphones,1,99.99,06/08/19 21:23,"205 Dogwood St, Dallas, TX 75001" -215917,USB-C Charging Cable,1,11.95,06/28/19 14:31,"87 Meadow St, San Francisco, CA 94016" -215918,USB-C Charging Cable,1,11.95,06/02/19 15:13,"981 Church St, Los Angeles, CA 90001" -215919,Lightning Charging Cable,1,14.95,06/16/19 23:46,"902 Center St, Los Angeles, CA 90001" -215920,AAA Batteries (4-pack),1,2.99,06/30/19 10:08,"900 Meadow St, New York City, NY 10001" -215921,USB-C Charging Cable,1,11.95,06/21/19 21:30,"982 North St, Boston, MA 02215" -215922,27in 4K Gaming Monitor,1,389.99,06/23/19 22:45,"586 Meadow St, Boston, MA 02215" -215923,Macbook Pro Laptop,1,1700,06/04/19 20:13,"979 4th St, Boston, MA 02215" -215924,Wired Headphones,1,11.99,06/03/19 17:28,"153 Park St, Boston, MA 02215" -215925,USB-C Charging Cable,1,11.95,06/03/19 21:59,"366 7th St, San Francisco, CA 94016" -215926,Lightning Charging Cable,1,14.95,06/26/19 15:20,"520 10th St, Boston, MA 02215" -215927,Apple Airpods Headphones,1,150,06/05/19 17:01,"807 Maple St, San Francisco, CA 94016" -215928,Wired Headphones,1,11.99,06/19/19 20:51,"947 Main St, Seattle, WA 98101" -215929,AAA Batteries (4-pack),1,2.99,06/18/19 08:58,"618 Meadow St, New York City, NY 10001" -215930,Flatscreen TV,1,300,06/29/19 18:04,"940 Center St, Boston, MA 02215" -215931,iPhone,1,700,06/26/19 17:36,"455 Chestnut St, Portland, OR 97035" -215932,AAA Batteries (4-pack),1,2.99,06/06/19 12:59,"523 Elm St, San Francisco, CA 94016" -215933,AA Batteries (4-pack),2,3.84,06/01/19 09:11,"121 Hill St, Boston, MA 02215" -215934,AAA Batteries (4-pack),2,2.99,06/19/19 11:44,"234 Willow St, Seattle, WA 98101" -215935,Flatscreen TV,1,300,06/28/19 23:14,"380 7th St, Austin, TX 73301" -215936,27in FHD Monitor,1,149.99,06/30/19 18:24,"33 8th St, San Francisco, CA 94016" -215937,Bose SoundSport Headphones,1,99.99,06/03/19 20:21,"433 Walnut St, Atlanta, GA 30301" -215938,Apple Airpods Headphones,1,150,06/23/19 23:38,"11 9th St, New York City, NY 10001" -215939,27in 4K Gaming Monitor,1,389.99,06/06/19 13:52,"951 Hickory St, Boston, MA 02215" -215940,AA Batteries (4-pack),1,3.84,06/10/19 17:00,"295 Ridge St, Boston, MA 02215" -215941,Wired Headphones,1,11.99,06/15/19 10:00,"59 13th St, Dallas, TX 75001" -215942,Google Phone,1,600,06/21/19 19:47,"405 14th St, Los Angeles, CA 90001" -215943,Bose SoundSport Headphones,1,99.99,06/26/19 00:20,"995 7th St, Dallas, TX 75001" -215944,Lightning Charging Cable,1,14.95,06/21/19 01:25,"363 Lakeview St, Los Angeles, CA 90001" -215945,Bose SoundSport Headphones,1,99.99,06/04/19 09:22,"847 Jackson St, Seattle, WA 98101" -215946,iPhone,1,700,06/29/19 19:16,"349 1st St, Los Angeles, CA 90001" -215947,Flatscreen TV,1,300,06/25/19 06:44,"264 Main St, Los Angeles, CA 90001" -215948,Bose SoundSport Headphones,1,99.99,06/25/19 12:41,"761 Jackson St, Dallas, TX 75001" -215949,Lightning Charging Cable,1,14.95,06/18/19 21:31,"819 Johnson St, San Francisco, CA 94016" -215950,Bose SoundSport Headphones,1,99.99,06/26/19 19:33,"403 13th St, Dallas, TX 75001" -215951,AAA Batteries (4-pack),1,2.99,06/12/19 13:27,"335 Willow St, San Francisco, CA 94016" -215952,AA Batteries (4-pack),1,3.84,06/24/19 09:05,"609 Lakeview St, Los Angeles, CA 90001" -215953,Lightning Charging Cable,2,14.95,06/28/19 23:32,"516 Park St, Los Angeles, CA 90001" -215954,AA Batteries (4-pack),1,3.84,06/21/19 19:51,"396 Meadow St, Dallas, TX 75001" -215955,AAA Batteries (4-pack),1,2.99,06/06/19 16:20,"132 13th St, Portland, OR 97035" -215956,AAA Batteries (4-pack),2,2.99,06/15/19 23:53,"756 Ridge St, New York City, NY 10001" -215957,Bose SoundSport Headphones,1,99.99,06/03/19 13:11,"41 West St, Dallas, TX 75001" -215958,Wired Headphones,1,11.99,06/03/19 09:40,"669 2nd St, New York City, NY 10001" -215959,Lightning Charging Cable,1,14.95,06/30/19 13:55,"94 Spruce St, Los Angeles, CA 90001" -215960,AAA Batteries (4-pack),1,2.99,06/02/19 20:46,"748 13th St, San Francisco, CA 94016" -215961,Wired Headphones,1,11.99,06/10/19 07:02,"132 Cherry St, San Francisco, CA 94016" -215962,Apple Airpods Headphones,1,150,06/11/19 16:20,"309 Willow St, San Francisco, CA 94016" -215963,Flatscreen TV,1,300,06/17/19 22:45,"173 Washington St, Los Angeles, CA 90001" -215964,LG Washing Machine,1,600.0,06/19/19 07:05,"23 Johnson St, San Francisco, CA 94016" -215965,Apple Airpods Headphones,1,150,06/15/19 17:32,"627 Lake St, New York City, NY 10001" -215966,AA Batteries (4-pack),1,3.84,06/28/19 21:53,"292 Cherry St, New York City, NY 10001" -215967,Bose SoundSport Headphones,1,99.99,06/05/19 10:31,"647 13th St, San Francisco, CA 94016" -215968,Lightning Charging Cable,1,14.95,06/08/19 09:03,"174 Walnut St, Atlanta, GA 30301" -215969,Lightning Charging Cable,1,14.95,06/23/19 22:08,"177 Madison St, New York City, NY 10001" -215970,Wired Headphones,1,11.99,06/20/19 16:00,"358 2nd St, Los Angeles, CA 90001" -215971,Apple Airpods Headphones,1,150,06/25/19 20:45,"121 Chestnut St, Los Angeles, CA 90001" -215972,Wired Headphones,1,11.99,06/03/19 15:56,"236 9th St, Boston, MA 02215" -215973,Lightning Charging Cable,1,14.95,06/16/19 21:56,"313 Cedar St, Dallas, TX 75001" -215974,Lightning Charging Cable,1,14.95,06/03/19 11:39,"884 4th St, Boston, MA 02215" -215975,Wired Headphones,1,11.99,06/12/19 14:05,"547 Lincoln St, Boston, MA 02215" -215976,Macbook Pro Laptop,1,1700,06/28/19 22:23,"845 Walnut St, Seattle, WA 98101" -215977,27in 4K Gaming Monitor,1,389.99,06/11/19 21:28,"696 Highland St, New York City, NY 10001" -215978,Wired Headphones,1,11.99,06/24/19 22:17,"972 2nd St, San Francisco, CA 94016" -215979,34in Ultrawide Monitor,1,379.99,06/29/19 22:18,"879 4th St, Boston, MA 02215" -215980,USB-C Charging Cable,1,11.95,06/16/19 08:51,"824 10th St, New York City, NY 10001" -215981,Bose SoundSport Headphones,1,99.99,06/10/19 21:44,"282 South St, San Francisco, CA 94016" -215982,Macbook Pro Laptop,1,1700,06/18/19 11:56,"249 Forest St, Los Angeles, CA 90001" -215983,Macbook Pro Laptop,1,1700,06/07/19 19:23,"17 Maple St, Los Angeles, CA 90001" -215984,Flatscreen TV,1,300,06/19/19 12:08,"411 Madison St, San Francisco, CA 94016" -215985,USB-C Charging Cable,1,11.95,06/30/19 20:34,"365 South St, New York City, NY 10001" -215986,USB-C Charging Cable,1,11.95,06/25/19 15:12,"73 6th St, Atlanta, GA 30301" -215987,AA Batteries (4-pack),2,3.84,06/07/19 13:03,"914 Lakeview St, Los Angeles, CA 90001" -215988,AA Batteries (4-pack),1,3.84,06/27/19 14:44,"623 Main St, Atlanta, GA 30301" -215989,USB-C Charging Cable,1,11.95,06/15/19 09:45,"860 Lincoln St, San Francisco, CA 94016" -215990,27in 4K Gaming Monitor,1,389.99,06/02/19 13:53,"575 10th St, San Francisco, CA 94016" -215991,AA Batteries (4-pack),1,3.84,06/17/19 11:41,"937 Lake St, New York City, NY 10001" -215992,Macbook Pro Laptop,1,1700,06/09/19 17:20,"632 13th St, Seattle, WA 98101" -215993,Apple Airpods Headphones,1,150,06/14/19 12:53,"77 Lakeview St, Los Angeles, CA 90001" -215994,Vareebadd Phone,1,400,06/04/19 16:25,"270 West St, Seattle, WA 98101" -215995,Bose SoundSport Headphones,1,99.99,06/15/19 11:47,"289 13th St, San Francisco, CA 94016" -215996,34in Ultrawide Monitor,1,379.99,06/09/19 14:52,"20 1st St, Boston, MA 02215" -215997,Lightning Charging Cable,1,14.95,06/01/19 14:50,"757 Hill St, Los Angeles, CA 90001" -215998,ThinkPad Laptop,1,999.99,06/03/19 09:22,"560 4th St, Atlanta, GA 30301" -215999,34in Ultrawide Monitor,1,379.99,06/01/19 18:55,"237 Wilson St, Atlanta, GA 30301" -216000,27in FHD Monitor,2,149.99,06/09/19 23:22,"235 11th St, Atlanta, GA 30301" -216001,34in Ultrawide Monitor,1,379.99,06/16/19 19:29,"66 West St, San Francisco, CA 94016" -216002,Apple Airpods Headphones,1,150,06/16/19 23:25,"935 Johnson St, San Francisco, CA 94016" -216003,Lightning Charging Cable,1,14.95,06/22/19 09:50,"111 Dogwood St, Portland, OR 97035" -216004,USB-C Charging Cable,1,11.95,06/21/19 12:22,"288 Jackson St, Portland, OR 97035" -216005,Lightning Charging Cable,1,14.95,06/07/19 07:20,"765 Adams St, Atlanta, GA 30301" -216006,27in FHD Monitor,1,149.99,06/20/19 10:51,"504 13th St, San Francisco, CA 94016" -216007,27in FHD Monitor,1,149.99,06/11/19 21:45,"748 Meadow St, San Francisco, CA 94016" -216008,iPhone,1,700,06/06/19 17:06,"358 5th St, Boston, MA 02215" -216009,Lightning Charging Cable,1,14.95,06/10/19 12:42,"399 Madison St, Austin, TX 73301" -216010,iPhone,1,700,06/15/19 12:31,"622 Highland St, Los Angeles, CA 90001" -216011,Macbook Pro Laptop,1,1700,06/19/19 20:12,"444 Maple St, Boston, MA 02215" -216012,Wired Headphones,1,11.99,06/17/19 09:32,"491 Ridge St, San Francisco, CA 94016" -216013,Apple Airpods Headphones,1,150,06/20/19 09:33,"933 4th St, Boston, MA 02215" -216014,AAA Batteries (4-pack),1,2.99,06/26/19 20:49,"370 13th St, San Francisco, CA 94016" -216015,Apple Airpods Headphones,1,150,06/02/19 20:27,"779 Maple St, San Francisco, CA 94016" -216016,AA Batteries (4-pack),1,3.84,06/29/19 14:31,"833 Walnut St, San Francisco, CA 94016" -216017,Wired Headphones,1,11.99,06/10/19 15:41,"556 Highland St, Portland, OR 97035" -216018,Bose SoundSport Headphones,1,99.99,06/04/19 13:06,"848 Adams St, San Francisco, CA 94016" -216019,Macbook Pro Laptop,1,1700,06/08/19 08:54,"986 River St, Boston, MA 02215" -216020,Apple Airpods Headphones,1,150,06/07/19 12:33,"221 12th St, San Francisco, CA 94016" -216021,AAA Batteries (4-pack),1,2.99,06/16/19 18:44,"640 Forest St, Dallas, TX 75001" -216021,Lightning Charging Cable,1,14.95,06/16/19 18:44,"640 Forest St, Dallas, TX 75001" -216022,Bose SoundSport Headphones,1,99.99,06/22/19 14:51,"470 Maple St, San Francisco, CA 94016" -216023,Apple Airpods Headphones,1,150,06/26/19 07:16,"986 West St, Dallas, TX 75001" -216024,USB-C Charging Cable,1,11.95,06/02/19 14:07,"279 7th St, Dallas, TX 75001" -216025,USB-C Charging Cable,1,11.95,06/27/19 16:16,"662 Walnut St, Seattle, WA 98101" -216026,AA Batteries (4-pack),1,3.84,06/09/19 10:38,"228 Elm St, San Francisco, CA 94016" -216027,27in FHD Monitor,1,149.99,06/20/19 09:03,"891 Hickory St, San Francisco, CA 94016" -216028,AAA Batteries (4-pack),1,2.99,06/17/19 12:39,"345 Dogwood St, Boston, MA 02215" -216029,Apple Airpods Headphones,1,150,06/23/19 21:43,"64 Church St, San Francisco, CA 94016" -216030,USB-C Charging Cable,1,11.95,06/19/19 14:48,"859 West St, San Francisco, CA 94016" -216031,AAA Batteries (4-pack),1,2.99,06/05/19 09:22,"800 14th St, Austin, TX 73301" -216032,Lightning Charging Cable,1,14.95,06/04/19 07:39,"548 Center St, Austin, TX 73301" -216033,USB-C Charging Cable,1,11.95,06/01/19 09:17,"955 4th St, Boston, MA 02215" -216034,AA Batteries (4-pack),1,3.84,06/21/19 22:37,"292 Johnson St, Atlanta, GA 30301" -216035,Wired Headphones,1,11.99,06/28/19 17:40,"702 8th St, San Francisco, CA 94016" -216036,Bose SoundSport Headphones,1,99.99,06/05/19 16:19,"56 Johnson St, Boston, MA 02215" -216037,27in FHD Monitor,1,149.99,06/03/19 12:26,"773 Hickory St, Dallas, TX 75001" -216038,Lightning Charging Cable,1,14.95,06/24/19 18:55,"708 Main St, New York City, NY 10001" -216039,34in Ultrawide Monitor,1,379.99,06/07/19 15:18,"667 Spruce St, San Francisco, CA 94016" -216040,Lightning Charging Cable,1,14.95,06/05/19 20:14,"74 Main St, San Francisco, CA 94016" -216041,Apple Airpods Headphones,1,150,06/15/19 13:38,"883 Sunset St, Los Angeles, CA 90001" -216042,USB-C Charging Cable,1,11.95,06/23/19 10:40,"955 Church St, New York City, NY 10001" -216043,Lightning Charging Cable,1,14.95,06/19/19 12:08,"108 Park St, Dallas, TX 75001" -216044,Lightning Charging Cable,1,14.95,06/21/19 19:58,"684 8th St, New York City, NY 10001" -216045,USB-C Charging Cable,1,11.95,06/27/19 16:04,"891 Pine St, San Francisco, CA 94016" -216046,AA Batteries (4-pack),1,3.84,06/27/19 13:23,"665 Wilson St, New York City, NY 10001" -216047,Google Phone,1,600,06/09/19 13:44,"794 10th St, Seattle, WA 98101" -216047,Bose SoundSport Headphones,1,99.99,06/09/19 13:44,"794 10th St, Seattle, WA 98101" -216048,Google Phone,1,600,06/14/19 15:04,"888 Elm St, Los Angeles, CA 90001" -216049,AAA Batteries (4-pack),1,2.99,06/17/19 11:05,"166 Hickory St, New York City, NY 10001" -216050,Wired Headphones,1,11.99,06/06/19 16:01,"237 4th St, San Francisco, CA 94016" -216051,Apple Airpods Headphones,1,150,06/07/19 10:11,"250 12th St, Austin, TX 73301" -216052,Apple Airpods Headphones,1,150,06/15/19 21:19,"435 Spruce St, Los Angeles, CA 90001" -216053,iPhone,1,700,06/03/19 20:34,"777 13th St, Austin, TX 73301" -216054,Apple Airpods Headphones,1,150,06/20/19 22:20,"275 Willow St, Los Angeles, CA 90001" -216055,LG Dryer,1,600.0,06/16/19 11:06,"889 Lincoln St, Boston, MA 02215" -216056,AAA Batteries (4-pack),1,2.99,06/21/19 23:04,"656 Lake St, Los Angeles, CA 90001" -216057,iPhone,1,700,06/30/19 19:06,"328 Jefferson St, New York City, NY 10001" -216058,Vareebadd Phone,1,400,06/30/19 11:00,"91 12th St, New York City, NY 10001" -216059,Macbook Pro Laptop,1,1700,06/04/19 15:17,"373 Meadow St, New York City, NY 10001" -216060,27in FHD Monitor,2,149.99,06/25/19 20:03,"586 6th St, Los Angeles, CA 90001" -216061,USB-C Charging Cable,1,11.95,06/27/19 16:10,"736 Spruce St, New York City, NY 10001" -216062,Macbook Pro Laptop,1,1700,06/17/19 07:04,"201 Lakeview St, New York City, NY 10001" -216063,USB-C Charging Cable,1,11.95,06/01/19 15:40,"31 12th St, Boston, MA 02215" -216064,AA Batteries (4-pack),1,3.84,06/24/19 16:32,"344 13th St, San Francisco, CA 94016" -216065,20in Monitor,1,109.99,06/29/19 17:53,"979 12th St, San Francisco, CA 94016" -216066,Apple Airpods Headphones,1,150,06/29/19 21:38,"815 Church St, Los Angeles, CA 90001" -216067,USB-C Charging Cable,1,11.95,06/25/19 11:00,"972 4th St, San Francisco, CA 94016" -216067,Apple Airpods Headphones,1,150,06/25/19 11:00,"972 4th St, San Francisco, CA 94016" -216068,USB-C Charging Cable,2,11.95,06/30/19 19:32,"944 Lake St, New York City, NY 10001" -216069,AA Batteries (4-pack),2,3.84,06/23/19 17:40,"17 Ridge St, Seattle, WA 98101" -216070,Lightning Charging Cable,1,14.95,06/05/19 22:14,"879 North St, Los Angeles, CA 90001" -216071,AA Batteries (4-pack),2,3.84,06/30/19 12:59,"630 7th St, Portland, OR 97035" -216072,USB-C Charging Cable,1,11.95,06/17/19 06:23,"595 Hill St, Atlanta, GA 30301" -216073,USB-C Charging Cable,1,11.95,06/20/19 17:55,"391 Jefferson St, San Francisco, CA 94016" -216074,AAA Batteries (4-pack),3,2.99,06/10/19 20:32,"297 Maple St, San Francisco, CA 94016" -216075,Wired Headphones,1,11.99,06/08/19 12:43,"832 10th St, Dallas, TX 75001" -216076,27in FHD Monitor,1,149.99,06/17/19 15:10,"952 Spruce St, Atlanta, GA 30301" -216077,USB-C Charging Cable,1,11.95,06/09/19 11:29,"125 8th St, Boston, MA 02215" -216078,Vareebadd Phone,1,400,06/07/19 20:03,"310 Center St, Dallas, TX 75001" -216079,Bose SoundSport Headphones,1,99.99,06/05/19 23:57,"159 North St, New York City, NY 10001" -216080,Lightning Charging Cable,1,14.95,06/12/19 17:26,"61 Elm St, Atlanta, GA 30301" -216081,27in 4K Gaming Monitor,1,389.99,06/05/19 10:07,"616 2nd St, New York City, NY 10001" -216082,iPhone,1,700,06/29/19 17:00,"689 Washington St, Dallas, TX 75001" -216082,Wired Headphones,1,11.99,06/29/19 17:00,"689 Washington St, Dallas, TX 75001" -216083,AA Batteries (4-pack),2,3.84,06/14/19 19:15,"123 9th St, Dallas, TX 75001" -216084,Bose SoundSport Headphones,1,99.99,06/05/19 01:11,"638 Forest St, San Francisco, CA 94016" -216085,Lightning Charging Cable,1,14.95,06/05/19 15:30,"920 Lincoln St, Boston, MA 02215" -216086,USB-C Charging Cable,1,11.95,06/23/19 19:53,"698 Highland St, Boston, MA 02215" -216087,USB-C Charging Cable,1,11.95,06/14/19 07:46,"667 Jefferson St, San Francisco, CA 94016" -216088,Bose SoundSport Headphones,1,99.99,06/29/19 23:31,"940 7th St, San Francisco, CA 94016" -216089,Bose SoundSport Headphones,1,99.99,06/30/19 12:48,"205 Jefferson St, San Francisco, CA 94016" -216090,Macbook Pro Laptop,1,1700,06/11/19 00:31,"53 Johnson St, San Francisco, CA 94016" -216091,Bose SoundSport Headphones,1,99.99,06/13/19 23:19,"603 Ridge St, San Francisco, CA 94016" -216091,Lightning Charging Cable,1,14.95,06/13/19 23:19,"603 Ridge St, San Francisco, CA 94016" -216092,Macbook Pro Laptop,1,1700,06/25/19 14:48,"475 Hill St, San Francisco, CA 94016" -216093,LG Washing Machine,1,600.0,06/12/19 08:40,"918 Forest St, Atlanta, GA 30301" -216094,20in Monitor,1,109.99,06/14/19 14:23,"213 Lakeview St, Boston, MA 02215" -216095,20in Monitor,1,109.99,06/20/19 16:45,"250 Washington St, New York City, NY 10001" -216096,AA Batteries (4-pack),1,3.84,06/29/19 18:38,"848 Johnson St, San Francisco, CA 94016" -216097,USB-C Charging Cable,1,11.95,06/30/19 20:53,"169 Walnut St, San Francisco, CA 94016" -216098,USB-C Charging Cable,1,11.95,06/15/19 18:50,"74 Cedar St, New York City, NY 10001" -216099,Bose SoundSport Headphones,1,99.99,06/21/19 21:40,"461 Madison St, San Francisco, CA 94016" -216100,ThinkPad Laptop,1,999.99,06/15/19 11:54,"614 1st St, Dallas, TX 75001" -216101,Lightning Charging Cable,1,14.95,06/03/19 13:35,"938 Cherry St, Portland, OR 97035" -216102,Lightning Charging Cable,1,14.95,06/14/19 22:58,"801 4th St, Portland, ME 04101" -216103,AA Batteries (4-pack),2,3.84,06/03/19 10:18,"762 Spruce St, Atlanta, GA 30301" -216104,Lightning Charging Cable,2,14.95,06/21/19 21:39,"760 Maple St, Dallas, TX 75001" -216105,USB-C Charging Cable,1,11.95,06/24/19 22:07,"902 Cherry St, Los Angeles, CA 90001" -216106,34in Ultrawide Monitor,1,379.99,06/22/19 13:57,"259 Lincoln St, Dallas, TX 75001" -216107,iPhone,1,700,06/09/19 19:40,"613 Main St, Dallas, TX 75001" -216107,Wired Headphones,1,11.99,06/09/19 19:40,"613 Main St, Dallas, TX 75001" -216108,Google Phone,1,600,06/13/19 00:27,"434 Spruce St, Atlanta, GA 30301" -216109,Bose SoundSport Headphones,1,99.99,06/21/19 18:34,"264 4th St, New York City, NY 10001" -216110,Macbook Pro Laptop,1,1700,06/08/19 16:47,"698 2nd St, Boston, MA 02215" -216111,Google Phone,1,600,06/28/19 08:38,"962 Washington St, Dallas, TX 75001" -216112,Lightning Charging Cable,1,14.95,06/01/19 09:28,"752 Spruce St, New York City, NY 10001" -216113,Apple Airpods Headphones,1,150,06/27/19 22:12,"652 Wilson St, Portland, OR 97035" -216114,Wired Headphones,1,11.99,06/13/19 16:33,"358 Center St, San Francisco, CA 94016" -216114,AAA Batteries (4-pack),1,2.99,06/13/19 16:33,"358 Center St, San Francisco, CA 94016" -216115,Lightning Charging Cable,1,14.95,06/10/19 00:40,"94 Dogwood St, Los Angeles, CA 90001" -216116,iPhone,1,700,06/29/19 13:23,"384 Forest St, New York City, NY 10001" -216117,Lightning Charging Cable,1,14.95,06/18/19 14:37,"593 North St, Los Angeles, CA 90001" -216118,Apple Airpods Headphones,1,150,06/05/19 21:34,"79 Adams St, Los Angeles, CA 90001" -216119,AAA Batteries (4-pack),1,2.99,06/19/19 08:59,"105 Johnson St, Dallas, TX 75001" -216120,AAA Batteries (4-pack),1,2.99,06/20/19 12:52,"264 Lincoln St, Austin, TX 73301" -216121,Bose SoundSport Headphones,1,99.99,06/11/19 15:38,"505 Park St, Atlanta, GA 30301" -216122,AA Batteries (4-pack),1,3.84,06/16/19 22:15,"313 Maple St, San Francisco, CA 94016" -216123,Google Phone,1,600,06/19/19 16:50,"86 Maple St, Los Angeles, CA 90001" -216124,AA Batteries (4-pack),1,3.84,06/06/19 00:12,"221 1st St, Portland, OR 97035" -216125,20in Monitor,1,109.99,06/29/19 14:12,"87 Dogwood St, New York City, NY 10001" -216126,Wired Headphones,1,11.99,06/29/19 07:53,"3 12th St, New York City, NY 10001" -216126,Wired Headphones,1,11.99,06/29/19 07:53,"3 12th St, New York City, NY 10001" -216127,Flatscreen TV,1,300,06/15/19 12:22,"27 Church St, San Francisco, CA 94016" -216128,USB-C Charging Cable,1,11.95,06/14/19 15:21,"749 8th St, Boston, MA 02215" -216129,Apple Airpods Headphones,1,150,06/21/19 16:30,"802 6th St, Los Angeles, CA 90001" -216130,Apple Airpods Headphones,1,150,06/19/19 17:26,"252 Center St, Boston, MA 02215" -216131,Apple Airpods Headphones,1,150,06/10/19 21:57,"574 Willow St, Dallas, TX 75001" -216132,Wired Headphones,1,11.99,06/18/19 18:52,"254 Forest St, San Francisco, CA 94016" -216133,USB-C Charging Cable,1,11.95,06/15/19 13:35,"3 Park St, Seattle, WA 98101" -216134,Vareebadd Phone,1,400,06/02/19 10:05,"865 Lakeview St, Dallas, TX 75001" -216135,Bose SoundSport Headphones,1,99.99,06/26/19 14:52,"769 North St, Boston, MA 02215" -216136,Lightning Charging Cable,1,14.95,06/08/19 10:10,"429 Maple St, Dallas, TX 75001" -216137,Apple Airpods Headphones,1,150,06/26/19 13:34,"363 Elm St, New York City, NY 10001" -216138,Wired Headphones,1,11.99,06/08/19 22:53,"882 South St, San Francisco, CA 94016" -216139,USB-C Charging Cable,1,11.95,06/06/19 17:15,"707 Center St, Seattle, WA 98101" -216140,AAA Batteries (4-pack),1,2.99,06/09/19 15:57,"532 Cedar St, Boston, MA 02215" -216141,USB-C Charging Cable,1,11.95,06/16/19 14:58,"477 Wilson St, Atlanta, GA 30301" -216142,USB-C Charging Cable,1,11.95,06/29/19 09:06,"474 Cherry St, Dallas, TX 75001" -216143,Bose SoundSport Headphones,1,99.99,06/20/19 09:25,"196 River St, Los Angeles, CA 90001" -216144,Wired Headphones,1,11.99,06/03/19 08:50,"591 4th St, Los Angeles, CA 90001" -216145,27in FHD Monitor,1,149.99,06/14/19 22:41,"460 Center St, San Francisco, CA 94016" -216146,AA Batteries (4-pack),1,3.84,06/07/19 08:53,"905 Meadow St, Dallas, TX 75001" -216147,Google Phone,1,600,06/26/19 23:08,"71 10th St, San Francisco, CA 94016" -216148,27in 4K Gaming Monitor,1,389.99,06/05/19 18:33,"456 North St, Los Angeles, CA 90001" -216149,AA Batteries (4-pack),1,3.84,06/19/19 06:34,"113 Lincoln St, Boston, MA 02215" -216150,Flatscreen TV,1,300,06/18/19 19:38,"18 Cedar St, Dallas, TX 75001" -216151,Macbook Pro Laptop,1,1700,06/17/19 06:51,"786 Spruce St, Atlanta, GA 30301" -216152,USB-C Charging Cable,1,11.95,06/26/19 20:16,"842 Jefferson St, Atlanta, GA 30301" -216153,AA Batteries (4-pack),1,3.84,06/24/19 18:13,"439 Highland St, San Francisco, CA 94016" -216154,27in 4K Gaming Monitor,1,389.99,06/15/19 13:55,"615 Sunset St, Atlanta, GA 30301" -216155,Bose SoundSport Headphones,1,99.99,06/17/19 20:21,"582 Lake St, San Francisco, CA 94016" -216156,AAA Batteries (4-pack),1,2.99,06/03/19 08:41,"665 Jackson St, San Francisco, CA 94016" -216157,Bose SoundSport Headphones,1,99.99,06/09/19 19:51,"999 5th St, Los Angeles, CA 90001" -216158,Apple Airpods Headphones,1,150,06/17/19 18:21,"709 Ridge St, New York City, NY 10001" -216159,Google Phone,1,600,06/05/19 12:26,"212 6th St, Los Angeles, CA 90001" -216159,Wired Headphones,2,11.99,06/05/19 12:26,"212 6th St, Los Angeles, CA 90001" -216160,USB-C Charging Cable,1,11.95,06/05/19 17:11,"838 12th St, San Francisco, CA 94016" -216161,Apple Airpods Headphones,2,150,06/01/19 12:51,"676 Lincoln St, Atlanta, GA 30301" -216162,34in Ultrawide Monitor,1,379.99,06/23/19 09:49,"671 11th St, Los Angeles, CA 90001" -216163,27in FHD Monitor,1,149.99,06/26/19 15:48,"169 6th St, Portland, OR 97035" -216164,Flatscreen TV,1,300,06/27/19 15:00,"575 Washington St, Austin, TX 73301" -216165,Wired Headphones,1,11.99,06/14/19 14:16,"956 Spruce St, Los Angeles, CA 90001" -216166,AA Batteries (4-pack),1,3.84,06/21/19 12:19,"776 Ridge St, New York City, NY 10001" -216167,AA Batteries (4-pack),3,3.84,06/15/19 16:52,"478 Hickory St, Portland, OR 97035" -216168,Wired Headphones,2,11.99,06/23/19 09:09,"1 Hickory St, Los Angeles, CA 90001" -216169,Apple Airpods Headphones,1,150,06/19/19 01:47,"288 7th St, New York City, NY 10001" -216170,AA Batteries (4-pack),1,3.84,06/21/19 13:50,"3 Dogwood St, Boston, MA 02215" -216171,Apple Airpods Headphones,1,150,06/10/19 14:52,"591 North St, Los Angeles, CA 90001" -216172,USB-C Charging Cable,1,11.95,06/12/19 18:48,"836 Willow St, Seattle, WA 98101" -216173,iPhone,1,700,06/13/19 17:03,"340 Willow St, Seattle, WA 98101" -216174,Wired Headphones,1,11.99,06/08/19 00:53,"823 Highland St, Austin, TX 73301" -216175,27in 4K Gaming Monitor,1,389.99,06/13/19 20:00,"287 10th St, San Francisco, CA 94016" -216176,20in Monitor,1,109.99,06/03/19 11:21,"117 North St, Dallas, TX 75001" -216177,AAA Batteries (4-pack),1,2.99,06/30/19 11:33,"853 9th St, New York City, NY 10001" -216178,AAA Batteries (4-pack),1,2.99,06/05/19 18:20,"917 Meadow St, San Francisco, CA 94016" -216179,20in Monitor,1,109.99,06/26/19 00:29,"111 Lakeview St, Dallas, TX 75001" -216179,Wired Headphones,2,11.99,06/26/19 00:29,"111 Lakeview St, Dallas, TX 75001" -216180,Lightning Charging Cable,1,14.95,06/28/19 09:50,"205 Cedar St, Portland, ME 04101" -216181,AA Batteries (4-pack),3,3.84,06/20/19 15:16,"864 River St, Boston, MA 02215" -216182,27in FHD Monitor,1,149.99,06/24/19 15:53,"85 Adams St, Los Angeles, CA 90001" -216183,Wired Headphones,1,11.99,06/28/19 09:10,"9 Ridge St, Los Angeles, CA 90001" -216184,27in FHD Monitor,1,149.99,06/12/19 04:32,"753 7th St, San Francisco, CA 94016" -216185,Lightning Charging Cable,1,14.95,06/24/19 12:20,"904 5th St, Portland, ME 04101" -216186,AA Batteries (4-pack),1,3.84,06/21/19 23:11,"556 Maple St, Los Angeles, CA 90001" -216187,Wired Headphones,1,11.99,06/29/19 20:32,"765 11th St, Los Angeles, CA 90001" -216188,Lightning Charging Cable,1,14.95,06/10/19 19:15,"225 7th St, Austin, TX 73301" -216189,iPhone,1,700,06/05/19 22:16,"911 Highland St, Los Angeles, CA 90001" -216190,27in FHD Monitor,1,149.99,06/14/19 14:50,"403 8th St, New York City, NY 10001" -216191,Apple Airpods Headphones,1,150,06/21/19 13:49,"633 Sunset St, Atlanta, GA 30301" -216192,27in FHD Monitor,1,149.99,06/19/19 15:16,"707 Washington St, Seattle, WA 98101" -216193,Bose SoundSport Headphones,1,99.99,06/20/19 00:17,"962 Washington St, Dallas, TX 75001" -216194,34in Ultrawide Monitor,1,379.99,06/17/19 11:07,"7 Spruce St, Los Angeles, CA 90001" -216195,iPhone,1,700,06/23/19 13:04,"256 Jackson St, Seattle, WA 98101" -216196,20in Monitor,1,109.99,06/04/19 16:32,"991 Adams St, San Francisco, CA 94016" -216197,Lightning Charging Cable,1,14.95,06/02/19 20:15,"362 Adams St, Portland, OR 97035" -216198,iPhone,1,700,06/16/19 18:27,"777 5th St, Boston, MA 02215" -216198,Apple Airpods Headphones,1,150,06/16/19 18:27,"777 5th St, Boston, MA 02215" -216199,AAA Batteries (4-pack),1,2.99,06/30/19 13:08,"783 Adams St, New York City, NY 10001" -216200,iPhone,1,700,06/05/19 11:24,"886 9th St, San Francisco, CA 94016" -216201,USB-C Charging Cable,1,11.95,06/18/19 14:17,"961 North St, Los Angeles, CA 90001" -216202,AAA Batteries (4-pack),1,2.99,06/04/19 16:05,"72 Hickory St, Portland, OR 97035" -216203,Macbook Pro Laptop,1,1700,06/28/19 10:46,"581 Cedar St, Los Angeles, CA 90001" -216204,ThinkPad Laptop,1,999.99,06/19/19 08:29,"556 Willow St, Boston, MA 02215" -216205,AA Batteries (4-pack),1,3.84,06/29/19 12:34,"691 Park St, Los Angeles, CA 90001" -216206,27in 4K Gaming Monitor,1,389.99,06/15/19 13:21,"602 Lincoln St, Austin, TX 73301" -216207,Lightning Charging Cable,2,14.95,06/05/19 09:48,"506 Maple St, San Francisco, CA 94016" -216208,34in Ultrawide Monitor,1,379.99,06/27/19 12:01,"66 Church St, New York City, NY 10001" -216209,20in Monitor,1,109.99,06/14/19 09:37,"141 Cedar St, Atlanta, GA 30301" -216210,AA Batteries (4-pack),2,3.84,06/19/19 15:11,"187 Dogwood St, San Francisco, CA 94016" -216211,Wired Headphones,1,11.99,06/27/19 19:34,"677 Highland St, New York City, NY 10001" -216212,USB-C Charging Cable,1,11.95,06/02/19 12:01,"201 Cherry St, Los Angeles, CA 90001" -216213,Lightning Charging Cable,1,14.95,06/10/19 13:15,"792 Walnut St, New York City, NY 10001" -216214,AA Batteries (4-pack),1,3.84,06/18/19 19:01,"368 4th St, New York City, NY 10001" -216215,Wired Headphones,1,11.99,06/12/19 09:06,"613 Elm St, San Francisco, CA 94016" -216216,AA Batteries (4-pack),1,3.84,06/21/19 18:12,"742 1st St, Seattle, WA 98101" -216217,Wired Headphones,1,11.99,06/02/19 12:18,"316 13th St, Austin, TX 73301" -216218,AA Batteries (4-pack),1,3.84,06/24/19 05:36,"937 Madison St, Dallas, TX 75001" -216219,AAA Batteries (4-pack),1,2.99,06/14/19 17:38,"459 7th St, Austin, TX 73301" -216220,AA Batteries (4-pack),2,3.84,06/21/19 07:43,"497 Wilson St, San Francisco, CA 94016" -216221,Wired Headphones,1,11.99,06/01/19 20:43,"933 12th St, Dallas, TX 75001" -216222,USB-C Charging Cable,1,11.95,06/27/19 12:20,"771 13th St, San Francisco, CA 94016" -216223,AAA Batteries (4-pack),1,2.99,06/21/19 14:48,"563 8th St, San Francisco, CA 94016" -216224,Lightning Charging Cable,1,14.95,06/21/19 14:40,"337 Highland St, San Francisco, CA 94016" -216225,AAA Batteries (4-pack),1,2.99,06/12/19 17:18,"481 14th St, Los Angeles, CA 90001" -216226,Wired Headphones,1,11.99,06/16/19 13:08,"270 Church St, San Francisco, CA 94016" -216227,Flatscreen TV,1,300,06/10/19 14:09,"19 Wilson St, San Francisco, CA 94016" -216228,27in FHD Monitor,1,149.99,06/30/19 18:50,"88 Main St, Los Angeles, CA 90001" -216229,AA Batteries (4-pack),2,3.84,06/12/19 09:31,"182 Madison St, Atlanta, GA 30301" -216230,Bose SoundSport Headphones,1,99.99,06/09/19 21:45,"975 Walnut St, Los Angeles, CA 90001" -216231,USB-C Charging Cable,1,11.95,06/14/19 15:50,"394 Jackson St, San Francisco, CA 94016" -216232,AAA Batteries (4-pack),1,2.99,06/13/19 14:04,"336 Highland St, San Francisco, CA 94016" -216233,34in Ultrawide Monitor,1,379.99,06/01/19 17:20,"528 Cedar St, Boston, MA 02215" -216234,Lightning Charging Cable,1,14.95,06/14/19 13:09,"921 13th St, San Francisco, CA 94016" -216235,Macbook Pro Laptop,1,1700,06/21/19 22:12,"162 Cherry St, San Francisco, CA 94016" -216236,USB-C Charging Cable,1,11.95,06/10/19 02:11,"195 Jackson St, Seattle, WA 98101" -216237,AA Batteries (4-pack),1,3.84,06/20/19 15:28,"21 12th St, San Francisco, CA 94016" -216238,Apple Airpods Headphones,1,150,06/15/19 23:34,"568 Johnson St, Atlanta, GA 30301" -216239,27in FHD Monitor,1,149.99,06/29/19 20:12,"632 Dogwood St, Boston, MA 02215" -216240,AA Batteries (4-pack),1,3.84,06/10/19 00:05,"388 Wilson St, Los Angeles, CA 90001" -216241,Bose SoundSport Headphones,1,99.99,06/28/19 14:16,"163 Elm St, San Francisco, CA 94016" -216242,27in 4K Gaming Monitor,1,389.99,06/29/19 12:09,"621 Spruce St, Los Angeles, CA 90001" -216243,AAA Batteries (4-pack),1,2.99,06/04/19 14:58,"406 Elm St, Los Angeles, CA 90001" -216244,27in FHD Monitor,1,149.99,06/16/19 14:50,"272 4th St, San Francisco, CA 94016" -216245,ThinkPad Laptop,1,999.99,06/14/19 22:13,"299 Cedar St, New York City, NY 10001" -216246,Vareebadd Phone,1,400,06/19/19 00:03,"110 Washington St, San Francisco, CA 94016" -216247,27in FHD Monitor,1,149.99,06/23/19 19:30,"668 8th St, San Francisco, CA 94016" -216248,27in 4K Gaming Monitor,1,389.99,06/16/19 20:42,"994 Wilson St, Los Angeles, CA 90001" -216248,Apple Airpods Headphones,1,150,06/16/19 20:42,"994 Wilson St, Los Angeles, CA 90001" -216249,Wired Headphones,1,11.99,06/15/19 20:16,"318 14th St, Dallas, TX 75001" -216250,Bose SoundSport Headphones,1,99.99,06/05/19 15:57,"605 2nd St, San Francisco, CA 94016" -216251,Apple Airpods Headphones,1,150,06/08/19 20:50,"813 Dogwood St, Los Angeles, CA 90001" -216252,Google Phone,1,600,06/21/19 09:19,"695 Cedar St, Los Angeles, CA 90001" -216253,AAA Batteries (4-pack),1,2.99,06/13/19 08:35,"380 1st St, Austin, TX 73301" -216254,Flatscreen TV,1,300,06/21/19 21:19,"217 Lincoln St, Los Angeles, CA 90001" -216255,USB-C Charging Cable,1,11.95,06/12/19 11:11,"212 Main St, Austin, TX 73301" -216256,ThinkPad Laptop,1,999.99,06/18/19 02:05,"865 Ridge St, Los Angeles, CA 90001" -216257,Lightning Charging Cable,1,14.95,06/20/19 17:47,"83 Center St, San Francisco, CA 94016" -216258,Wired Headphones,1,11.99,06/08/19 19:29,"374 8th St, Dallas, TX 75001" -216259,Wired Headphones,1,11.99,06/15/19 16:29,"371 Church St, San Francisco, CA 94016" -216260,Wired Headphones,1,11.99,06/08/19 14:40,"94 Willow St, San Francisco, CA 94016" -216261,AAA Batteries (4-pack),1,2.99,06/15/19 07:59,"514 Adams St, San Francisco, CA 94016" -216262,34in Ultrawide Monitor,1,379.99,06/30/19 22:12,"486 River St, San Francisco, CA 94016" -216263,Wired Headphones,1,11.99,06/19/19 23:46,"937 Wilson St, Portland, OR 97035" -216264,iPhone,1,700,06/29/19 20:22,"392 Church St, Dallas, TX 75001" -216265,Wired Headphones,1,11.99,06/03/19 17:01,"100 Jefferson St, Dallas, TX 75001" -216266,AA Batteries (4-pack),2,3.84,06/06/19 18:32,"225 Washington St, Los Angeles, CA 90001" -216267,Apple Airpods Headphones,1,150,06/26/19 22:10,"884 6th St, Austin, TX 73301" -216268,27in 4K Gaming Monitor,1,389.99,06/12/19 21:41,"14 Cherry St, Portland, OR 97035" -216269,34in Ultrawide Monitor,1,379.99,06/27/19 17:59,"65 Jefferson St, New York City, NY 10001" -216270,Flatscreen TV,1,300,06/18/19 17:48,"334 Lincoln St, Dallas, TX 75001" -216271,Apple Airpods Headphones,1,150,06/28/19 00:26,"117 8th St, San Francisco, CA 94016" -216272,27in 4K Gaming Monitor,1,389.99,06/04/19 09:51,"44 5th St, Seattle, WA 98101" -216273,Apple Airpods Headphones,1,150,06/03/19 20:26,"408 Johnson St, Atlanta, GA 30301" -216274,Bose SoundSport Headphones,1,99.99,06/26/19 22:50,"620 Walnut St, Atlanta, GA 30301" -216275,Lightning Charging Cable,1,14.95,06/15/19 11:50,"482 Cedar St, San Francisco, CA 94016" -216276,Lightning Charging Cable,1,14.95,06/27/19 23:50,"21 Highland St, Atlanta, GA 30301" -216277,Lightning Charging Cable,2,14.95,06/02/19 08:48,"254 Forest St, Los Angeles, CA 90001" -216278,Lightning Charging Cable,1,14.95,06/20/19 18:05,"498 Ridge St, San Francisco, CA 94016" -216279,AA Batteries (4-pack),1,3.84,06/18/19 10:14,"73 10th St, Los Angeles, CA 90001" -216280,27in 4K Gaming Monitor,1,389.99,06/20/19 10:54,"263 Cherry St, Atlanta, GA 30301" -216281,Bose SoundSport Headphones,1,99.99,06/18/19 16:43,"304 Wilson St, Atlanta, GA 30301" -216282,USB-C Charging Cable,1,11.95,06/20/19 17:22,"625 Hill St, Dallas, TX 75001" -216283,Macbook Pro Laptop,1,1700,06/04/19 09:20,"815 Adams St, San Francisco, CA 94016" -216284,Lightning Charging Cable,1,14.95,06/11/19 18:27,"375 Wilson St, San Francisco, CA 94016" -216285,LG Washing Machine,1,600.0,06/20/19 22:55,"410 Spruce St, San Francisco, CA 94016" -216286,20in Monitor,1,109.99,06/06/19 12:00,"194 Pine St, Portland, ME 04101" -216287,Wired Headphones,1,11.99,06/29/19 21:46,"475 14th St, Seattle, WA 98101" -216288,iPhone,1,700,06/28/19 01:49,"736 North St, Boston, MA 02215" -216289,Wired Headphones,1,11.99,06/04/19 15:43,"238 Jackson St, Portland, ME 04101" -216290,27in FHD Monitor,1,149.99,06/30/19 11:46,"956 5th St, Austin, TX 73301" -216291,Apple Airpods Headphones,1,150,06/30/19 05:24,"915 2nd St, San Francisco, CA 94016" -216292,Lightning Charging Cable,1,14.95,06/08/19 17:38,"439 Spruce St, Dallas, TX 75001" -216293,AAA Batteries (4-pack),2,2.99,06/22/19 19:50,"667 Park St, New York City, NY 10001" -216294,Wired Headphones,1,11.99,06/03/19 00:15,"525 West St, Dallas, TX 75001" -216295,USB-C Charging Cable,1,11.95,06/08/19 17:48,"626 Hill St, San Francisco, CA 94016" -216296,Flatscreen TV,1,300,06/25/19 11:55,"445 11th St, Los Angeles, CA 90001" -216297,Bose SoundSport Headphones,1,99.99,06/16/19 13:23,"569 Park St, San Francisco, CA 94016" -216298,USB-C Charging Cable,1,11.95,06/10/19 19:27,"964 8th St, New York City, NY 10001" -216299,AA Batteries (4-pack),1,3.84,06/10/19 19:14,"672 Maple St, Atlanta, GA 30301" -216300,AA Batteries (4-pack),2,3.84,06/27/19 13:21,"931 Hickory St, New York City, NY 10001" -216301,AA Batteries (4-pack),3,3.84,06/07/19 11:11,"702 Madison St, Portland, ME 04101" -216302,iPhone,1,700,06/26/19 16:30,"738 8th St, New York City, NY 10001" -216303,Flatscreen TV,1,300,06/24/19 12:48,"724 12th St, New York City, NY 10001" -216304,AAA Batteries (4-pack),1,2.99,06/02/19 18:39,"434 Madison St, San Francisco, CA 94016" -216305,Bose SoundSport Headphones,1,99.99,06/30/19 05:14,"904 Main St, San Francisco, CA 94016" -216306,Wired Headphones,2,11.99,06/09/19 11:46,"797 Jefferson St, Portland, ME 04101" -216307,Bose SoundSport Headphones,1,99.99,06/12/19 17:39,"260 10th St, San Francisco, CA 94016" -216308,AA Batteries (4-pack),1,3.84,06/22/19 13:05,"809 14th St, New York City, NY 10001" -216309,Apple Airpods Headphones,1,150,06/09/19 15:05,"708 Elm St, San Francisco, CA 94016" -216310,Flatscreen TV,1,300,06/23/19 22:52,"120 Jackson St, Portland, OR 97035" -216311,USB-C Charging Cable,1,11.95,06/13/19 07:37,"95 Madison St, Los Angeles, CA 90001" -216312,27in 4K Gaming Monitor,1,389.99,06/22/19 16:02,"817 Church St, Boston, MA 02215" -216313,34in Ultrawide Monitor,1,379.99,06/20/19 10:48,"881 Pine St, Portland, OR 97035" -216314,27in 4K Gaming Monitor,1,389.99,06/29/19 20:37,"300 Willow St, Seattle, WA 98101" -216315,20in Monitor,1,109.99,06/15/19 15:48,"430 Meadow St, Los Angeles, CA 90001" -216316,Macbook Pro Laptop,1,1700,06/07/19 18:41,"564 Lincoln St, Dallas, TX 75001" -216317,AA Batteries (4-pack),1,3.84,06/02/19 12:43,"997 Wilson St, Austin, TX 73301" -216318,Macbook Pro Laptop,1,1700,06/27/19 09:16,"805 Sunset St, Los Angeles, CA 90001" -216319,Bose SoundSport Headphones,1,99.99,06/24/19 11:48,"946 7th St, Dallas, TX 75001" -216320,AAA Batteries (4-pack),1,2.99,06/27/19 19:11,"929 Main St, San Francisco, CA 94016" -216321,USB-C Charging Cable,1,11.95,06/19/19 16:11,"586 Wilson St, Seattle, WA 98101" -216321,USB-C Charging Cable,1,11.95,06/19/19 16:11,"586 Wilson St, Seattle, WA 98101" -216322,Lightning Charging Cable,1,14.95,06/19/19 13:57,"673 8th St, Seattle, WA 98101" -216323,Flatscreen TV,1,300,06/28/19 11:53,"606 Adams St, Los Angeles, CA 90001" -216324,34in Ultrawide Monitor,1,379.99,06/01/19 23:47,"785 Lincoln St, Boston, MA 02215" -216325,AAA Batteries (4-pack),1,2.99,06/14/19 05:58,"485 10th St, Boston, MA 02215" -216326,AAA Batteries (4-pack),1,2.99,06/18/19 20:59,"162 Main St, Los Angeles, CA 90001" -216327,USB-C Charging Cable,1,11.95,06/17/19 14:14,"504 Willow St, Portland, OR 97035" -216328,Lightning Charging Cable,1,14.95,06/07/19 03:04,"343 North St, Dallas, TX 75001" -216329,27in FHD Monitor,1,149.99,06/18/19 22:33,"578 Cherry St, Atlanta, GA 30301" -216330,Lightning Charging Cable,1,14.95,06/07/19 09:57,"988 Chestnut St, Dallas, TX 75001" -216331,20in Monitor,1,109.99,06/18/19 18:16,"688 Main St, Atlanta, GA 30301" -216332,AA Batteries (4-pack),1,3.84,06/07/19 16:27,"720 7th St, New York City, NY 10001" -216333,AAA Batteries (4-pack),1,2.99,06/20/19 14:21,"662 Willow St, Seattle, WA 98101" -216334,Flatscreen TV,1,300,06/15/19 14:27,"596 12th St, New York City, NY 10001" -216335,34in Ultrawide Monitor,1,379.99,06/25/19 20:24,"995 Chestnut St, New York City, NY 10001" -216336,20in Monitor,1,109.99,06/04/19 22:06,"661 Pine St, San Francisco, CA 94016" -216337,Google Phone,1,600,06/23/19 19:04,"348 South St, Los Angeles, CA 90001" -216337,USB-C Charging Cable,1,11.95,06/23/19 19:04,"348 South St, Los Angeles, CA 90001" -216338,Wired Headphones,1,11.99,06/02/19 18:49,"583 6th St, Boston, MA 02215" -216339,USB-C Charging Cable,1,11.95,06/25/19 09:59,"617 Ridge St, Dallas, TX 75001" -216340,Bose SoundSport Headphones,1,99.99,06/28/19 17:20,"570 Dogwood St, San Francisco, CA 94016" -216341,USB-C Charging Cable,2,11.95,06/03/19 05:03,"276 Wilson St, Los Angeles, CA 90001" -216342,Lightning Charging Cable,1,14.95,06/06/19 18:53,"550 Sunset St, Seattle, WA 98101" -216343,Google Phone,1,600,06/13/19 13:39,"43 Sunset St, Austin, TX 73301" -216344,Wired Headphones,1,11.99,06/03/19 09:30,"580 Willow St, Dallas, TX 75001" -216345,Lightning Charging Cable,1,14.95,06/10/19 10:31,"205 4th St, Austin, TX 73301" -216346,Vareebadd Phone,1,400,06/13/19 14:54,"730 7th St, Atlanta, GA 30301" -216347,Google Phone,1,600,06/26/19 10:58,"967 4th St, Seattle, WA 98101" -216348,Lightning Charging Cable,1,14.95,06/06/19 16:48,"577 South St, Seattle, WA 98101" -216349,Lightning Charging Cable,1,14.95,06/03/19 15:22,"444 Walnut St, San Francisco, CA 94016" -216350,USB-C Charging Cable,1,11.95,06/28/19 20:11,"270 Pine St, Dallas, TX 75001" -216351,Wired Headphones,1,11.99,06/26/19 12:14,"180 Hill St, Portland, OR 97035" -216352,Bose SoundSport Headphones,1,99.99,06/16/19 17:39,"28 Adams St, Seattle, WA 98101" -216352,Flatscreen TV,1,300,06/16/19 17:39,"28 Adams St, Seattle, WA 98101" -216353,Lightning Charging Cable,1,14.95,06/07/19 13:47,"181 Pine St, New York City, NY 10001" -216354,Vareebadd Phone,1,400,06/04/19 13:22,"577 Park St, Portland, OR 97035" -216355,iPhone,1,700,06/11/19 22:07,"427 1st St, Dallas, TX 75001" -216356,USB-C Charging Cable,1,11.95,06/11/19 18:17,"12 Center St, Los Angeles, CA 90001" -216357,Macbook Pro Laptop,1,1700,06/26/19 19:16,"447 6th St, Atlanta, GA 30301" -216358,Lightning Charging Cable,2,14.95,06/24/19 21:47,"569 Center St, Los Angeles, CA 90001" -216359,AA Batteries (4-pack),1,3.84,06/18/19 13:08,"701 Center St, San Francisco, CA 94016" -216360,AA Batteries (4-pack),1,3.84,06/07/19 20:47,"67 Cherry St, San Francisco, CA 94016" -216361,Macbook Pro Laptop,1,1700,06/12/19 13:44,"36 Wilson St, San Francisco, CA 94016" -216362,Apple Airpods Headphones,1,150,06/18/19 22:50,"226 Highland St, Dallas, TX 75001" -216363,Lightning Charging Cable,2,14.95,06/26/19 19:26,"472 Center St, San Francisco, CA 94016" -216364,20in Monitor,1,109.99,06/17/19 16:27,"263 Lake St, Los Angeles, CA 90001" -216365,Wired Headphones,2,11.99,06/07/19 17:47,"146 North St, Austin, TX 73301" -216366,Bose SoundSport Headphones,1,99.99,06/15/19 23:01,"439 1st St, Los Angeles, CA 90001" -216367,Apple Airpods Headphones,1,150,06/28/19 19:10,"748 11th St, Boston, MA 02215" -216368,Lightning Charging Cable,1,14.95,06/29/19 06:30,"91 8th St, Portland, OR 97035" -216369,Apple Airpods Headphones,1,150,06/13/19 10:33,"228 Cedar St, Los Angeles, CA 90001" -216370,AAA Batteries (4-pack),2,2.99,06/07/19 01:33,"724 Cherry St, Seattle, WA 98101" -216371,USB-C Charging Cable,1,11.95,06/21/19 16:14,"562 Park St, Los Angeles, CA 90001" -216372,AA Batteries (4-pack),1,3.84,06/22/19 19:58,"715 Jackson St, Dallas, TX 75001" -216373,Bose SoundSport Headphones,1,99.99,06/23/19 14:18,"990 Lake St, Dallas, TX 75001" -216374,27in FHD Monitor,1,149.99,06/17/19 22:21,"245 2nd St, Los Angeles, CA 90001" -216375,AAA Batteries (4-pack),1,2.99,06/20/19 19:28,"148 Walnut St, San Francisco, CA 94016" -216376,AAA Batteries (4-pack),3,2.99,06/05/19 22:39,"928 Lakeview St, New York City, NY 10001" -216377,34in Ultrawide Monitor,1,379.99,06/23/19 22:14,"322 Walnut St, Dallas, TX 75001" -216378,27in FHD Monitor,1,149.99,06/27/19 19:20,"432 Lakeview St, Los Angeles, CA 90001" -216379,Bose SoundSport Headphones,1,99.99,06/10/19 16:52,"516 Madison St, San Francisco, CA 94016" -216380,Wired Headphones,1,11.99,06/04/19 09:45,"843 Johnson St, Los Angeles, CA 90001" -216381,Wired Headphones,1,11.99,06/01/19 15:06,"856 13th St, Portland, OR 97035" -216382,27in FHD Monitor,1,149.99,06/05/19 15:38,"442 10th St, Los Angeles, CA 90001" -216383,Bose SoundSport Headphones,1,99.99,06/06/19 17:46,"193 Lake St, Boston, MA 02215" -216384,20in Monitor,1,109.99,06/02/19 20:55,"801 9th St, Los Angeles, CA 90001" -216385,USB-C Charging Cable,1,11.95,06/13/19 14:27,"586 Sunset St, New York City, NY 10001" -216386,AA Batteries (4-pack),1,3.84,06/19/19 16:16,"108 8th St, Boston, MA 02215" -216387,Lightning Charging Cable,1,14.95,06/14/19 06:50,"142 Park St, Boston, MA 02215" -216388,USB-C Charging Cable,1,11.95,06/16/19 09:03,"530 8th St, San Francisco, CA 94016" -216389,AA Batteries (4-pack),1,3.84,06/27/19 10:19,"132 Main St, New York City, NY 10001" -216390,Bose SoundSport Headphones,1,99.99,06/12/19 20:30,"207 Madison St, Los Angeles, CA 90001" -216391,Wired Headphones,1,11.99,06/12/19 15:26,"630 4th St, Boston, MA 02215" -216392,Flatscreen TV,1,300,06/09/19 14:28,"976 Washington St, New York City, NY 10001" -216393,Lightning Charging Cable,1,14.95,06/28/19 17:33,"427 Hill St, New York City, NY 10001" -216394,Bose SoundSport Headphones,1,99.99,06/02/19 15:09,"952 4th St, San Francisco, CA 94016" -216395,Macbook Pro Laptop,1,1700,06/18/19 12:20,"542 South St, Los Angeles, CA 90001" -216396,AAA Batteries (4-pack),2,2.99,06/09/19 11:18,"547 2nd St, Seattle, WA 98101" -216397,AA Batteries (4-pack),1,3.84,06/13/19 20:53,"304 Wilson St, New York City, NY 10001" -216398,Wired Headphones,1,11.99,06/30/19 11:37,"349 Hill St, Seattle, WA 98101" -216399,AA Batteries (4-pack),1,3.84,06/02/19 13:28,"325 Cedar St, San Francisco, CA 94016" -216400,34in Ultrawide Monitor,1,379.99,06/02/19 11:49,"697 Center St, Boston, MA 02215" -216401,USB-C Charging Cable,1,11.95,06/02/19 15:21,"293 Center St, New York City, NY 10001" -216402,AA Batteries (4-pack),1,3.84,06/18/19 19:11,"573 Highland St, San Francisco, CA 94016" -216403,Lightning Charging Cable,1,14.95,06/25/19 22:34,"169 Elm St, San Francisco, CA 94016" -216404,Wired Headphones,1,11.99,06/19/19 11:06,"532 Lake St, Seattle, WA 98101" -216405,Apple Airpods Headphones,1,150,06/16/19 22:58,"374 Chestnut St, Boston, MA 02215" -216406,Bose SoundSport Headphones,1,99.99,06/29/19 17:25,"196 North St, New York City, NY 10001" -216407,Wired Headphones,1,11.99,06/26/19 12:28,"232 4th St, Los Angeles, CA 90001" -216408,Flatscreen TV,1,300,06/20/19 16:52,"201 11th St, New York City, NY 10001" -216409,Lightning Charging Cable,1,14.95,06/29/19 13:00,"874 Elm St, New York City, NY 10001" -216410,Apple Airpods Headphones,1,150,06/13/19 18:32,"279 2nd St, San Francisco, CA 94016" -216411,Wired Headphones,1,11.99,06/10/19 23:54,"865 Willow St, San Francisco, CA 94016" -216412,Lightning Charging Cable,1,14.95,06/13/19 18:32,"504 Pine St, Portland, OR 97035" -216413,AAA Batteries (4-pack),2,2.99,06/14/19 16:01,"231 South St, New York City, NY 10001" -216414,Lightning Charging Cable,1,14.95,06/29/19 09:02,"522 Hill St, Atlanta, GA 30301" -216415,Bose SoundSport Headphones,1,99.99,06/27/19 22:49,"147 Pine St, San Francisco, CA 94016" -216416,USB-C Charging Cable,1,11.95,06/22/19 09:57,"518 8th St, Atlanta, GA 30301" -216417,iPhone,1,700,06/21/19 20:02,"563 Maple St, Dallas, TX 75001" -216418,Lightning Charging Cable,1,14.95,06/23/19 10:59,"482 North St, San Francisco, CA 94016" -216419,Lightning Charging Cable,1,14.95,06/01/19 18:33,"552 Washington St, New York City, NY 10001" -216420,34in Ultrawide Monitor,1,379.99,06/18/19 22:53,"751 Jefferson St, San Francisco, CA 94016" -216421,Wired Headphones,1,11.99,06/17/19 21:24,"261 12th St, San Francisco, CA 94016" -216422,Lightning Charging Cable,1,14.95,06/27/19 14:21,"534 Church St, San Francisco, CA 94016" -216423,ThinkPad Laptop,1,999.99,06/24/19 12:54,"810 Johnson St, San Francisco, CA 94016" -216424,AA Batteries (4-pack),1,3.84,06/01/19 10:27,"892 Park St, Dallas, TX 75001" -216425,Lightning Charging Cable,1,14.95,06/10/19 19:03,"203 Park St, San Francisco, CA 94016" -216426,Lightning Charging Cable,1,14.95,06/23/19 13:30,"687 Willow St, Boston, MA 02215" -216427,Lightning Charging Cable,1,14.95,06/22/19 19:47,"105 South St, San Francisco, CA 94016" -216428,AA Batteries (4-pack),1,3.84,06/26/19 11:42,"335 8th St, San Francisco, CA 94016" -216429,Wired Headphones,1,11.99,06/26/19 15:53,"260 Hickory St, Boston, MA 02215" -216430,Lightning Charging Cable,1,14.95,06/08/19 13:59,"524 5th St, San Francisco, CA 94016" -216431,Vareebadd Phone,1,400,07/01/19 02:53,"640 Cherry St, Dallas, TX 75001" -216431,Google Phone,1,600,07/01/19 02:53,"640 Cherry St, Dallas, TX 75001" -216432,34in Ultrawide Monitor,1,379.99,06/07/19 17:41,"319 Forest St, Atlanta, GA 30301" -216433,Apple Airpods Headphones,1,150,06/24/19 13:59,"158 4th St, Portland, OR 97035" -216434,Wired Headphones,1,11.99,06/01/19 21:29,"686 7th St, Dallas, TX 75001" -216435,Apple Airpods Headphones,1,150,06/21/19 17:15,"996 Lake St, Los Angeles, CA 90001" -216436,Macbook Pro Laptop,1,1700,06/13/19 17:42,"375 11th St, San Francisco, CA 94016" -216437,27in FHD Monitor,1,149.99,06/10/19 21:35,"32 South St, Boston, MA 02215" -216438,34in Ultrawide Monitor,1,379.99,06/18/19 17:12,"214 Ridge St, New York City, NY 10001" -216439,AA Batteries (4-pack),1,3.84,06/02/19 22:55,"29 1st St, Los Angeles, CA 90001" -216440,Bose SoundSport Headphones,1,99.99,06/25/19 23:08,"897 11th St, Seattle, WA 98101" -216441,AA Batteries (4-pack),3,3.84,06/03/19 23:50,"717 2nd St, San Francisco, CA 94016" -216442,Wired Headphones,1,11.99,06/06/19 13:45,"450 North St, Atlanta, GA 30301" -216443,AAA Batteries (4-pack),3,2.99,06/03/19 19:42,"322 Hickory St, Boston, MA 02215" -216444,Wired Headphones,2,11.99,06/10/19 14:07,"123 5th St, Los Angeles, CA 90001" -216445,USB-C Charging Cable,1,11.95,06/12/19 20:46,"312 Hill St, Portland, OR 97035" -216446,27in FHD Monitor,1,149.99,06/06/19 13:14,"439 Lake St, New York City, NY 10001" -216447,20in Monitor,1,109.99,06/17/19 10:38,"670 Willow St, San Francisco, CA 94016" -216448,27in FHD Monitor,1,149.99,06/08/19 23:08,"265 13th St, Los Angeles, CA 90001" -216449,Wired Headphones,2,11.99,06/04/19 10:09,"652 Cedar St, San Francisco, CA 94016" -216450,AA Batteries (4-pack),1,3.84,06/19/19 15:14,"826 11th St, San Francisco, CA 94016" -216451,AAA Batteries (4-pack),1,2.99,06/19/19 15:27,"899 Ridge St, San Francisco, CA 94016" -216452,20in Monitor,1,109.99,06/24/19 15:31,"883 Jackson St, Atlanta, GA 30301" -216453,AA Batteries (4-pack),1,3.84,06/12/19 13:18,"263 13th St, Austin, TX 73301" -216454,ThinkPad Laptop,1,999.99,06/12/19 09:29,"377 7th St, Portland, OR 97035" -216455,Lightning Charging Cable,1,14.95,06/16/19 00:18,"865 Johnson St, Dallas, TX 75001" -216456,AA Batteries (4-pack),1,3.84,06/29/19 15:06,"340 Adams St, San Francisco, CA 94016" -216457,AAA Batteries (4-pack),1,2.99,06/28/19 19:53,"299 14th St, Seattle, WA 98101" -216458,Flatscreen TV,1,300,06/15/19 14:55,"124 Park St, Atlanta, GA 30301" -216459,Lightning Charging Cable,1,14.95,06/12/19 16:24,"378 Hickory St, San Francisco, CA 94016" -216460,USB-C Charging Cable,1,11.95,06/01/19 17:11,"98 Jefferson St, Los Angeles, CA 90001" -216461,Wired Headphones,1,11.99,06/15/19 10:31,"676 6th St, Dallas, TX 75001" -216462,AA Batteries (4-pack),1,3.84,06/19/19 16:01,"686 8th St, Atlanta, GA 30301" -216463,AA Batteries (4-pack),1,3.84,06/16/19 22:49,"181 11th St, San Francisco, CA 94016" -216464,USB-C Charging Cable,1,11.95,06/14/19 14:54,"19 Jefferson St, Los Angeles, CA 90001" -216465,AA Batteries (4-pack),1,3.84,06/08/19 06:56,"231 Willow St, New York City, NY 10001" -216466,AAA Batteries (4-pack),1,2.99,06/03/19 08:58,"779 Walnut St, Seattle, WA 98101" -216467,Bose SoundSport Headphones,1,99.99,06/08/19 17:48,"844 14th St, Los Angeles, CA 90001" -216468,20in Monitor,1,109.99,06/21/19 12:38,"122 Johnson St, San Francisco, CA 94016" -216469,20in Monitor,1,109.99,06/24/19 19:54,"687 8th St, New York City, NY 10001" -216470,AAA Batteries (4-pack),1,2.99,06/08/19 09:17,"134 14th St, Austin, TX 73301" -216471,Apple Airpods Headphones,1,150,06/24/19 18:43,"42 Dogwood St, Boston, MA 02215" -216472,Bose SoundSport Headphones,1,99.99,06/19/19 19:38,"407 Main St, San Francisco, CA 94016" -216473,Apple Airpods Headphones,1,150,06/24/19 01:22,"452 Ridge St, Los Angeles, CA 90001" -216474,Lightning Charging Cable,1,14.95,06/28/19 09:14,"812 Walnut St, Seattle, WA 98101" -216475,27in FHD Monitor,1,149.99,06/30/19 01:25,"104 Wilson St, San Francisco, CA 94016" -216476,Bose SoundSport Headphones,1,99.99,06/04/19 22:27,"385 6th St, Dallas, TX 75001" -216477,Bose SoundSport Headphones,1,99.99,06/08/19 18:54,"160 Highland St, Dallas, TX 75001" -216478,USB-C Charging Cable,1,11.95,06/17/19 11:29,"118 6th St, New York City, NY 10001" -216479,Apple Airpods Headphones,1,150,06/24/19 03:49,"574 Chestnut St, San Francisco, CA 94016" -216480,Wired Headphones,1,11.99,06/12/19 10:19,"86 Elm St, New York City, NY 10001" -216481,Bose SoundSport Headphones,1,99.99,06/16/19 19:48,"332 North St, Boston, MA 02215" -216482,27in FHD Monitor,1,149.99,06/21/19 18:59,"924 1st St, Seattle, WA 98101" -216483,USB-C Charging Cable,1,11.95,06/03/19 18:35,"839 Meadow St, Boston, MA 02215" -216484,AAA Batteries (4-pack),2,2.99,06/26/19 21:50,"170 8th St, Portland, ME 04101" -216485,iPhone,1,700,06/09/19 14:58,"284 14th St, San Francisco, CA 94016" -216486,USB-C Charging Cable,1,11.95,06/28/19 20:50,"201 West St, Dallas, TX 75001" -216487,Lightning Charging Cable,1,14.95,06/07/19 15:22,"595 Pine St, New York City, NY 10001" -216488,AAA Batteries (4-pack),2,2.99,06/24/19 13:09,"544 Main St, Dallas, TX 75001" -216489,27in FHD Monitor,1,149.99,06/16/19 17:52,"845 7th St, Dallas, TX 75001" -216490,AA Batteries (4-pack),1,3.84,06/13/19 17:59,"753 Jackson St, Dallas, TX 75001" -216491,Bose SoundSport Headphones,1,99.99,06/23/19 08:53,"234 Lake St, San Francisco, CA 94016" -216492,Wired Headphones,1,11.99,06/10/19 15:38,"578 Adams St, Dallas, TX 75001" -216493,27in FHD Monitor,1,149.99,06/02/19 05:12,"636 Hill St, San Francisco, CA 94016" -216494,Bose SoundSport Headphones,1,99.99,06/04/19 13:35,"634 Center St, Dallas, TX 75001" -216495,Apple Airpods Headphones,1,150,06/24/19 06:55,"621 10th St, Portland, ME 04101" -216496,Lightning Charging Cable,1,14.95,06/05/19 17:51,"466 Forest St, Seattle, WA 98101" -216497,Bose SoundSport Headphones,1,99.99,06/01/19 19:59,"752 2nd St, San Francisco, CA 94016" -216498,AAA Batteries (4-pack),1,2.99,06/22/19 11:40,"64 West St, San Francisco, CA 94016" -216499,Apple Airpods Headphones,1,150,06/22/19 15:42,"649 Pine St, Portland, OR 97035" -216500,AA Batteries (4-pack),2,3.84,06/07/19 18:46,"486 8th St, Seattle, WA 98101" -216501,Bose SoundSport Headphones,1,99.99,06/11/19 23:47,"669 Park St, New York City, NY 10001" -216502,AA Batteries (4-pack),3,3.84,06/19/19 15:15,"280 1st St, Atlanta, GA 30301" -216503,AA Batteries (4-pack),1,3.84,06/16/19 05:27,"179 Walnut St, Austin, TX 73301" -216504,AA Batteries (4-pack),1,3.84,06/05/19 07:06,"923 Lincoln St, New York City, NY 10001" -216505,Macbook Pro Laptop,1,1700,06/23/19 19:37,"944 6th St, Los Angeles, CA 90001" -216506,27in FHD Monitor,1,149.99,06/24/19 19:03,"583 13th St, Boston, MA 02215" -216507,27in FHD Monitor,1,149.99,06/14/19 00:33,"751 10th St, San Francisco, CA 94016" -216508,AAA Batteries (4-pack),1,2.99,06/28/19 15:42,"532 Lake St, San Francisco, CA 94016" -216509,34in Ultrawide Monitor,1,379.99,06/26/19 22:27,"879 Washington St, San Francisco, CA 94016" -216510,AA Batteries (4-pack),3,3.84,06/22/19 09:13,"258 Johnson St, Seattle, WA 98101" -216511,Lightning Charging Cable,1,14.95,06/29/19 14:07,"306 Wilson St, San Francisco, CA 94016" -216512,Lightning Charging Cable,1,14.95,06/12/19 17:19,"479 North St, Los Angeles, CA 90001" -216513,Bose SoundSport Headphones,1,99.99,06/02/19 21:52,"324 Center St, New York City, NY 10001" -216514,USB-C Charging Cable,1,11.95,06/03/19 20:56,"73 Sunset St, Dallas, TX 75001" -216515,Bose SoundSport Headphones,1,99.99,06/05/19 21:22,"282 Ridge St, Atlanta, GA 30301" -216516,AA Batteries (4-pack),3,3.84,06/29/19 19:17,"230 14th St, Boston, MA 02215" -216517,Bose SoundSport Headphones,1,99.99,06/06/19 13:02,"762 Lakeview St, San Francisco, CA 94016" -216518,AA Batteries (4-pack),1,3.84,06/26/19 18:08,"862 Forest St, Seattle, WA 98101" -216519,Lightning Charging Cable,1,14.95,06/11/19 18:30,"488 Lincoln St, Dallas, TX 75001" -216520,AAA Batteries (4-pack),1,2.99,06/26/19 17:24,"965 1st St, Boston, MA 02215" -216521,Apple Airpods Headphones,1,150,06/23/19 14:55,"282 Pine St, New York City, NY 10001" -216522,AAA Batteries (4-pack),1,2.99,06/09/19 16:53,"656 Chestnut St, Atlanta, GA 30301" -216523,Lightning Charging Cable,1,14.95,06/18/19 15:58,"731 Forest St, Portland, ME 04101" -216524,ThinkPad Laptop,1,999.99,06/22/19 10:50,"474 Forest St, Seattle, WA 98101" -216525,AA Batteries (4-pack),2,3.84,06/29/19 22:42,"255 9th St, Portland, OR 97035" -216526,Flatscreen TV,1,300,06/07/19 17:28,"944 Ridge St, Los Angeles, CA 90001" -216527,Bose SoundSport Headphones,1,99.99,06/05/19 19:43,"664 Spruce St, Portland, OR 97035" -216528,Wired Headphones,1,11.99,06/08/19 12:50,"498 Ridge St, Boston, MA 02215" -216529,AAA Batteries (4-pack),1,2.99,06/05/19 22:47,"665 Maple St, San Francisco, CA 94016" -216530,USB-C Charging Cable,1,11.95,06/14/19 11:43,"648 Cedar St, Portland, OR 97035" -216531,Apple Airpods Headphones,1,150,06/14/19 09:55,"673 Highland St, Boston, MA 02215" -216532,Lightning Charging Cable,1,14.95,06/22/19 10:30,"268 West St, New York City, NY 10001" -216533,34in Ultrawide Monitor,1,379.99,06/05/19 18:08,"215 Spruce St, San Francisco, CA 94016" -216534,27in 4K Gaming Monitor,1,389.99,06/03/19 18:15,"914 South St, New York City, NY 10001" -216535,Lightning Charging Cable,1,14.95,06/25/19 13:08,"188 11th St, Los Angeles, CA 90001" -216536,AA Batteries (4-pack),1,3.84,06/29/19 18:19,"345 Jackson St, Los Angeles, CA 90001" -216537,Bose SoundSport Headphones,1,99.99,06/28/19 14:54,"860 8th St, New York City, NY 10001" -216538,Macbook Pro Laptop,1,1700,06/06/19 15:17,"936 Willow St, Portland, OR 97035" -216539,AA Batteries (4-pack),2,3.84,06/10/19 21:35,"912 Maple St, Boston, MA 02215" -216540,Bose SoundSport Headphones,1,99.99,06/08/19 21:47,"783 11th St, Los Angeles, CA 90001" -216541,iPhone,1,700,06/15/19 09:23,"373 South St, San Francisco, CA 94016" -216541,Lightning Charging Cable,1,14.95,06/15/19 09:23,"373 South St, San Francisco, CA 94016" -216542,AA Batteries (4-pack),1,3.84,06/26/19 20:35,"549 Park St, San Francisco, CA 94016" -216543,AAA Batteries (4-pack),1,2.99,06/10/19 02:44,"388 Jackson St, San Francisco, CA 94016" -216544,AA Batteries (4-pack),1,3.84,06/11/19 19:05,"302 Madison St, Seattle, WA 98101" -216545,27in 4K Gaming Monitor,1,389.99,06/02/19 23:20,"256 Center St, Seattle, WA 98101" -216546,Bose SoundSport Headphones,1,99.99,06/16/19 20:10,"963 Center St, Portland, OR 97035" -216547,USB-C Charging Cable,1,11.95,06/22/19 14:01,"64 14th St, San Francisco, CA 94016" -216548,Google Phone,1,600,06/17/19 14:50,"128 Cherry St, San Francisco, CA 94016" -216549,34in Ultrawide Monitor,1,379.99,06/01/19 18:46,"958 Lakeview St, San Francisco, CA 94016" -216550,AAA Batteries (4-pack),2,2.99,06/04/19 18:06,"550 Church St, New York City, NY 10001" -216551,Lightning Charging Cable,1,14.95,06/20/19 18:04,"909 1st St, Atlanta, GA 30301" -216552,USB-C Charging Cable,1,11.95,06/18/19 23:26,"133 4th St, San Francisco, CA 94016" -216553,27in 4K Gaming Monitor,1,389.99,06/14/19 10:41,"493 Ridge St, New York City, NY 10001" -216554,27in FHD Monitor,1,149.99,06/19/19 19:57,"72 Cedar St, Los Angeles, CA 90001" -216555,Lightning Charging Cable,1,14.95,06/13/19 14:40,"59 Dogwood St, Portland, OR 97035" -216556,AAA Batteries (4-pack),1,2.99,06/15/19 14:21,"31 Meadow St, San Francisco, CA 94016" -216557,Bose SoundSport Headphones,1,99.99,06/20/19 16:15,"196 4th St, Los Angeles, CA 90001" -216558,AAA Batteries (4-pack),2,2.99,06/07/19 22:03,"96 Johnson St, Los Angeles, CA 90001" -216558,Vareebadd Phone,1,400,06/07/19 22:03,"96 Johnson St, Los Angeles, CA 90001" -216559,20in Monitor,1,109.99,06/07/19 08:57,"861 8th St, New York City, NY 10001" -216560,AAA Batteries (4-pack),2,2.99,06/08/19 19:37,"971 Madison St, New York City, NY 10001" -216561,AA Batteries (4-pack),1,3.84,06/07/19 23:30,"29 2nd St, San Francisco, CA 94016" -216562,27in FHD Monitor,1,149.99,06/18/19 11:44,"526 Cherry St, Seattle, WA 98101" -216563,AA Batteries (4-pack),1,3.84,06/01/19 14:43,"118 Adams St, New York City, NY 10001" -216564,Wired Headphones,1,11.99,06/02/19 14:59,"862 Ridge St, New York City, NY 10001" -216565,AA Batteries (4-pack),1,3.84,06/05/19 09:20,"842 Sunset St, Atlanta, GA 30301" -216566,AAA Batteries (4-pack),1,2.99,06/11/19 08:01,"444 5th St, Portland, OR 97035" -216567,USB-C Charging Cable,1,11.95,06/15/19 12:23,"720 Main St, San Francisco, CA 94016" -216568,Bose SoundSport Headphones,1,99.99,06/15/19 09:18,"420 Hickory St, Los Angeles, CA 90001" -216569,USB-C Charging Cable,1,11.95,06/19/19 19:35,"855 Spruce St, San Francisco, CA 94016" -216570,Google Phone,1,600,06/16/19 18:22,"174 Meadow St, Los Angeles, CA 90001" -216570,USB-C Charging Cable,1,11.95,06/16/19 18:22,"174 Meadow St, Los Angeles, CA 90001" -216570,Bose SoundSport Headphones,1,99.99,06/16/19 18:22,"174 Meadow St, Los Angeles, CA 90001" -216571,Bose SoundSport Headphones,1,99.99,06/02/19 19:43,"280 Lincoln St, Boston, MA 02215" -216572,ThinkPad Laptop,1,999.99,06/27/19 21:10,"644 Walnut St, Dallas, TX 75001" -216573,Wired Headphones,1,11.99,06/28/19 00:42,"327 4th St, Los Angeles, CA 90001" -216574,34in Ultrawide Monitor,1,379.99,06/15/19 16:17,"74 Spruce St, San Francisco, CA 94016" -216575,Bose SoundSport Headphones,1,99.99,06/26/19 00:30,"263 7th St, Dallas, TX 75001" -216576,Wired Headphones,1,11.99,06/13/19 09:29,"163 Center St, New York City, NY 10001" -216577,AAA Batteries (4-pack),2,2.99,06/02/19 10:54,"979 Meadow St, Boston, MA 02215" -216578,Lightning Charging Cable,1,14.95,06/17/19 19:01,"429 Spruce St, New York City, NY 10001" -216579,iPhone,1,700,06/05/19 11:13,"333 Forest St, Los Angeles, CA 90001" -216580,Apple Airpods Headphones,1,150,06/20/19 01:09,"939 Spruce St, New York City, NY 10001" -216581,Vareebadd Phone,1,400,06/19/19 16:51,"942 Park St, New York City, NY 10001" -216582,Lightning Charging Cable,1,14.95,06/28/19 11:50,"316 Wilson St, San Francisco, CA 94016" -216582,AA Batteries (4-pack),1,3.84,06/28/19 11:50,"316 Wilson St, San Francisco, CA 94016" -216583,Lightning Charging Cable,1,14.95,06/09/19 22:35,"293 Chestnut St, Portland, OR 97035" -216584,AA Batteries (4-pack),2,3.84,06/30/19 15:04,"163 Dogwood St, Boston, MA 02215" -216585,Flatscreen TV,1,300,06/05/19 10:41,"970 9th St, Boston, MA 02215" -216586,Lightning Charging Cable,2,14.95,06/10/19 21:44,"379 Dogwood St, New York City, NY 10001" -216587,ThinkPad Laptop,1,999.99,06/15/19 16:42,"409 Cedar St, Portland, OR 97035" -216588,Wired Headphones,1,11.99,06/20/19 01:19,"18 Dogwood St, San Francisco, CA 94016" -216589,Bose SoundSport Headphones,1,99.99,06/06/19 11:05,"798 Highland St, Boston, MA 02215" -216590,Lightning Charging Cable,1,14.95,06/17/19 09:58,"973 7th St, Atlanta, GA 30301" -216591,iPhone,1,700,06/30/19 15:25,"868 Meadow St, New York City, NY 10001" -216592,Bose SoundSport Headphones,1,99.99,06/21/19 17:40,"529 Main St, Atlanta, GA 30301" -216593,Wired Headphones,1,11.99,06/03/19 13:16,"620 12th St, New York City, NY 10001" -216594,USB-C Charging Cable,1,11.95,06/23/19 18:49,"810 Meadow St, Portland, OR 97035" -216595,Wired Headphones,2,11.99,06/05/19 19:28,"419 8th St, New York City, NY 10001" -216596,Bose SoundSport Headphones,1,99.99,06/16/19 15:52,"546 Lake St, New York City, NY 10001" -216597,Wired Headphones,2,11.99,06/09/19 18:32,"901 Center St, Boston, MA 02215" -216598,Lightning Charging Cable,1,14.95,06/26/19 17:04,"561 Church St, Atlanta, GA 30301" -216599,AA Batteries (4-pack),1,3.84,06/01/19 18:27,"857 Forest St, Austin, TX 73301" -216600,AAA Batteries (4-pack),1,2.99,06/01/19 08:33,"871 Sunset St, Los Angeles, CA 90001" -216601,AA Batteries (4-pack),1,3.84,06/15/19 19:15,"382 Center St, Portland, OR 97035" -216602,34in Ultrawide Monitor,1,379.99,06/09/19 21:23,"927 Center St, Boston, MA 02215" -216603,Lightning Charging Cable,1,14.95,06/22/19 19:09,"748 Maple St, Los Angeles, CA 90001" -216604,Vareebadd Phone,1,400,06/01/19 12:35,"226 Church St, Los Angeles, CA 90001" -216605,AA Batteries (4-pack),1,3.84,06/09/19 22:29,"113 Forest St, San Francisco, CA 94016" -216606,Apple Airpods Headphones,1,150,06/19/19 21:15,"884 Hill St, Dallas, TX 75001" -216607,Bose SoundSport Headphones,1,99.99,06/15/19 19:50,"699 5th St, Dallas, TX 75001" -216608,Wired Headphones,1,11.99,06/26/19 18:51,"483 Sunset St, Portland, ME 04101" -216609,AA Batteries (4-pack),1,3.84,06/22/19 10:43,"616 12th St, San Francisco, CA 94016" -216610,AA Batteries (4-pack),2,3.84,06/21/19 15:57,"188 Park St, Los Angeles, CA 90001" -216611,Vareebadd Phone,1,400,06/19/19 18:26,"562 Ridge St, Los Angeles, CA 90001" -216612,iPhone,1,700,06/21/19 06:41,"136 Forest St, Los Angeles, CA 90001" -216613,AA Batteries (4-pack),1,3.84,06/01/19 12:48,"876 Washington St, New York City, NY 10001" -216614,Lightning Charging Cable,1,14.95,06/13/19 20:50,"8 South St, Los Angeles, CA 90001" -216615,27in 4K Gaming Monitor,1,389.99,06/13/19 16:51,"32 Hickory St, Los Angeles, CA 90001" -216616,Lightning Charging Cable,1,14.95,06/18/19 19:52,"848 Willow St, Los Angeles, CA 90001" -216617,20in Monitor,1,109.99,06/01/19 17:32,"840 14th St, New York City, NY 10001" -216618,Lightning Charging Cable,1,14.95,06/25/19 09:07,"246 Park St, New York City, NY 10001" -216619,Flatscreen TV,1,300,06/24/19 17:46,"225 6th St, Portland, OR 97035" -216620,USB-C Charging Cable,1,11.95,06/15/19 23:37,"611 Adams St, Atlanta, GA 30301" -216621,Lightning Charging Cable,1,14.95,06/20/19 14:04,"195 Jefferson St, Portland, ME 04101" -216622,AAA Batteries (4-pack),2,2.99,06/09/19 07:28,"704 Ridge St, Los Angeles, CA 90001" -216623,Wired Headphones,1,11.99,06/21/19 10:12,"612 Cherry St, San Francisco, CA 94016" -216624,Lightning Charging Cable,1,14.95,06/29/19 10:28,"831 5th St, Dallas, TX 75001" -216625,iPhone,1,700,06/12/19 17:14,"960 Maple St, Los Angeles, CA 90001" -216626,AA Batteries (4-pack),1,3.84,06/04/19 22:01,"805 Lake St, Los Angeles, CA 90001" -216627,34in Ultrawide Monitor,1,379.99,06/07/19 04:39,"489 Jackson St, New York City, NY 10001" -216628,34in Ultrawide Monitor,1,379.99,06/28/19 07:53,"774 Highland St, Los Angeles, CA 90001" -216629,Bose SoundSport Headphones,1,99.99,06/12/19 17:31,"501 Madison St, Los Angeles, CA 90001" -216630,Lightning Charging Cable,1,14.95,06/21/19 20:37,"946 4th St, Atlanta, GA 30301" -216631,27in 4K Gaming Monitor,1,389.99,06/08/19 14:28,"93 Ridge St, Los Angeles, CA 90001" -216632,AAA Batteries (4-pack),1,2.99,06/11/19 12:04,"529 1st St, New York City, NY 10001" -216633,Apple Airpods Headphones,1,150,06/05/19 15:16,"768 Hill St, Los Angeles, CA 90001" -216634,iPhone,1,700,06/26/19 15:24,"584 Lincoln St, New York City, NY 10001" -216635,Apple Airpods Headphones,1,150,06/19/19 19:44,"779 Meadow St, Atlanta, GA 30301" -216636,ThinkPad Laptop,1,999.99,06/29/19 11:43,"247 Dogwood St, Boston, MA 02215" -216637,Lightning Charging Cable,1,14.95,06/25/19 18:59,"347 14th St, Dallas, TX 75001" -216638,iPhone,1,700,06/21/19 20:49,"494 Church St, Boston, MA 02215" -216639,Apple Airpods Headphones,1,150,06/29/19 12:24,"666 13th St, Los Angeles, CA 90001" -216640,ThinkPad Laptop,1,999.99,06/06/19 20:32,"467 10th St, Los Angeles, CA 90001" -216641,34in Ultrawide Monitor,1,379.99,06/12/19 11:36,"204 14th St, Boston, MA 02215" -216642,27in FHD Monitor,1,149.99,06/21/19 13:12,"823 Pine St, Boston, MA 02215" -216643,27in 4K Gaming Monitor,1,389.99,06/23/19 11:24,"811 Elm St, Seattle, WA 98101" -216644,Lightning Charging Cable,1,14.95,06/15/19 12:25,"158 Johnson St, New York City, NY 10001" -216645,Apple Airpods Headphones,1,150,06/11/19 11:09,"602 10th St, Portland, OR 97035" -216646,Lightning Charging Cable,1,14.95,06/13/19 11:07,"190 13th St, San Francisco, CA 94016" -216647,Wired Headphones,1,11.99,06/21/19 13:18,"726 Maple St, San Francisco, CA 94016" -216648,USB-C Charging Cable,1,11.95,06/16/19 10:19,"288 Hill St, New York City, NY 10001" -216649,USB-C Charging Cable,1,11.95,06/24/19 13:01,"877 Cherry St, Boston, MA 02215" -216650,USB-C Charging Cable,1,11.95,06/15/19 16:29,"330 9th St, Dallas, TX 75001" -216651,Lightning Charging Cable,1,14.95,06/13/19 20:22,"717 Lake St, Dallas, TX 75001" -216652,Apple Airpods Headphones,1,150,06/01/19 18:51,"226 1st St, Los Angeles, CA 90001" -216653,Wired Headphones,1,11.99,06/01/19 14:42,"841 Willow St, San Francisco, CA 94016" -216654,ThinkPad Laptop,1,999.99,06/09/19 09:54,"33 Church St, San Francisco, CA 94016" -216655,USB-C Charging Cable,1,11.95,06/14/19 12:07,"132 Chestnut St, Portland, OR 97035" -216656,27in 4K Gaming Monitor,1,389.99,06/19/19 15:37,"782 Church St, Los Angeles, CA 90001" -216657,27in 4K Gaming Monitor,1,389.99,06/08/19 22:27,"686 Highland St, Portland, OR 97035" -216658,AA Batteries (4-pack),1,3.84,06/04/19 15:45,"121 14th St, San Francisco, CA 94016" -216659,Bose SoundSport Headphones,1,99.99,06/14/19 17:50,"516 13th St, Seattle, WA 98101" -216660,USB-C Charging Cable,1,11.95,06/20/19 19:58,"16 River St, Boston, MA 02215" -216661,Wired Headphones,2,11.99,06/16/19 11:14,"931 8th St, Austin, TX 73301" -216662,iPhone,1,700,06/02/19 00:58,"902 West St, Atlanta, GA 30301" -216663,Lightning Charging Cable,1,14.95,06/04/19 17:33,"261 South St, Boston, MA 02215" -216664,AAA Batteries (4-pack),1,2.99,06/27/19 19:46,"105 Park St, New York City, NY 10001" -216665,AAA Batteries (4-pack),1,2.99,06/13/19 21:15,"405 Jefferson St, New York City, NY 10001" -216666,USB-C Charging Cable,1,11.95,06/03/19 17:26,"913 Chestnut St, San Francisco, CA 94016" -216667,Macbook Pro Laptop,1,1700,06/18/19 09:53,"538 12th St, Los Angeles, CA 90001" -216668,Wired Headphones,1,11.99,06/01/19 11:16,"170 Walnut St, San Francisco, CA 94016" -216669,AAA Batteries (4-pack),1,2.99,06/09/19 16:40,"666 Cedar St, Portland, OR 97035" -216670,Flatscreen TV,1,300,06/23/19 13:24,"401 2nd St, Atlanta, GA 30301" -216671,USB-C Charging Cable,2,11.95,06/25/19 09:17,"46 North St, Portland, OR 97035" -216672,Macbook Pro Laptop,1,1700,06/01/19 15:22,"311 Johnson St, New York City, NY 10001" -216673,Wired Headphones,1,11.99,06/24/19 16:59,"243 Church St, Boston, MA 02215" -216674,AA Batteries (4-pack),3,3.84,06/16/19 07:02,"126 5th St, Boston, MA 02215" -216675,Lightning Charging Cable,1,14.95,06/05/19 08:42,"180 Cherry St, Seattle, WA 98101" -216676,AA Batteries (4-pack),1,3.84,06/11/19 19:48,"530 Cherry St, Atlanta, GA 30301" -216677,Bose SoundSport Headphones,1,99.99,06/28/19 08:58,"449 1st St, New York City, NY 10001" -216678,27in 4K Gaming Monitor,1,389.99,06/10/19 09:42,"66 Adams St, San Francisco, CA 94016" -216679,Apple Airpods Headphones,1,150,06/15/19 13:45,"560 Meadow St, Dallas, TX 75001" -216680,Apple Airpods Headphones,1,150,06/16/19 10:13,"161 10th St, Los Angeles, CA 90001" -216681,Bose SoundSport Headphones,1,99.99,06/22/19 12:07,"561 Madison St, Los Angeles, CA 90001" -216682,Lightning Charging Cable,1,14.95,06/27/19 11:54,"123 North St, San Francisco, CA 94016" -216683,USB-C Charging Cable,1,11.95,06/26/19 12:29,"490 Church St, Dallas, TX 75001" -216684,Apple Airpods Headphones,1,150,06/30/19 13:37,"676 Elm St, New York City, NY 10001" -216685,Bose SoundSport Headphones,1,99.99,06/09/19 00:56,"5 Lake St, Dallas, TX 75001" -216686,AA Batteries (4-pack),1,3.84,06/25/19 20:53,"459 Park St, Boston, MA 02215" -216687,Apple Airpods Headphones,1,150,06/30/19 08:24,"182 Adams St, New York City, NY 10001" -216688,AAA Batteries (4-pack),1,2.99,06/09/19 23:48,"97 Madison St, New York City, NY 10001" -216689,Wired Headphones,2,11.99,06/17/19 13:44,"995 West St, San Francisco, CA 94016" -216690,Flatscreen TV,1,300,06/06/19 21:47,"766 12th St, Portland, OR 97035" -216691,27in 4K Gaming Monitor,1,389.99,06/02/19 19:30,"165 Maple St, San Francisco, CA 94016" -216692,Lightning Charging Cable,1,14.95,06/26/19 22:42,"229 Pine St, New York City, NY 10001" -216693,Apple Airpods Headphones,1,150,06/05/19 20:06,"652 Lake St, Los Angeles, CA 90001" -216693,Macbook Pro Laptop,1,1700,06/05/19 20:06,"652 Lake St, Los Angeles, CA 90001" -216694,ThinkPad Laptop,1,999.99,06/05/19 22:09,"164 Willow St, Portland, OR 97035" -216695,USB-C Charging Cable,1,11.95,06/14/19 22:06,"264 Madison St, San Francisco, CA 94016" -216696,Apple Airpods Headphones,1,150,06/15/19 11:08,"39 2nd St, San Francisco, CA 94016" -216697,USB-C Charging Cable,1,11.95,06/26/19 09:26,"804 River St, Dallas, TX 75001" -216698,USB-C Charging Cable,1,11.95,06/13/19 01:22,"628 Spruce St, Atlanta, GA 30301" -216699,Google Phone,1,600,06/05/19 12:53,"560 Sunset St, Dallas, TX 75001" -216700,USB-C Charging Cable,1,11.95,06/29/19 19:46,"234 Walnut St, Boston, MA 02215" -216701,Google Phone,1,600,06/27/19 18:10,"755 Highland St, Los Angeles, CA 90001" -216702,AAA Batteries (4-pack),1,2.99,06/22/19 13:38,"805 8th St, Atlanta, GA 30301" -216702,Apple Airpods Headphones,1,150,06/22/19 13:38,"805 8th St, Atlanta, GA 30301" -216703,Wired Headphones,1,11.99,06/11/19 16:03,"24 Spruce St, Los Angeles, CA 90001" -216704,Lightning Charging Cable,1,14.95,06/13/19 14:53,"307 10th St, San Francisco, CA 94016" -216705,AAA Batteries (4-pack),1,2.99,06/20/19 18:43,"405 Jackson St, San Francisco, CA 94016" -216705,27in 4K Gaming Monitor,1,389.99,06/20/19 18:43,"405 Jackson St, San Francisco, CA 94016" -216706,AAA Batteries (4-pack),1,2.99,06/20/19 10:56,"188 Church St, San Francisco, CA 94016" -216707,Apple Airpods Headphones,1,150,06/03/19 19:37,"535 13th St, Boston, MA 02215" -216708,AAA Batteries (4-pack),1,2.99,06/29/19 11:51,"706 8th St, New York City, NY 10001" -216709,Wired Headphones,2,11.99,06/09/19 10:24,"423 Sunset St, San Francisco, CA 94016" -216710,Lightning Charging Cable,2,14.95,06/05/19 14:04,"399 Madison St, San Francisco, CA 94016" -216711,Lightning Charging Cable,2,14.95,06/08/19 07:53,"436 South St, New York City, NY 10001" -216712,Bose SoundSport Headphones,1,99.99,06/20/19 19:45,"65 Walnut St, Boston, MA 02215" -216713,Lightning Charging Cable,2,14.95,06/12/19 21:45,"760 Adams St, Atlanta, GA 30301" -216714,AA Batteries (4-pack),1,3.84,06/21/19 01:16,"87 1st St, Los Angeles, CA 90001" -216715,34in Ultrawide Monitor,1,379.99,06/02/19 15:49,"329 Adams St, Los Angeles, CA 90001" -216716,Wired Headphones,1,11.99,06/11/19 10:40,"109 Maple St, Los Angeles, CA 90001" -216717,Bose SoundSport Headphones,1,99.99,06/02/19 22:45,"291 Pine St, Los Angeles, CA 90001" -216718,Wired Headphones,1,11.99,06/29/19 23:10,"106 Jefferson St, Austin, TX 73301" -216719,Bose SoundSport Headphones,1,99.99,06/02/19 08:38,"753 Maple St, Dallas, TX 75001" -216720,Wired Headphones,1,11.99,06/22/19 20:27,"437 South St, San Francisco, CA 94016" -216721,27in FHD Monitor,1,149.99,06/28/19 20:14,"635 Hickory St, Los Angeles, CA 90001" -216722,Lightning Charging Cable,1,14.95,06/05/19 13:00,"744 Main St, Portland, OR 97035" -216723,Apple Airpods Headphones,1,150,06/18/19 19:17,"705 North St, Portland, OR 97035" -216724,AA Batteries (4-pack),1,3.84,06/12/19 19:06,"597 Chestnut St, Los Angeles, CA 90001" -216725,ThinkPad Laptop,1,999.99,06/25/19 12:46,"566 Madison St, San Francisco, CA 94016" -216726,Macbook Pro Laptop,1,1700,06/20/19 21:06,"122 West St, San Francisco, CA 94016" -216727,Flatscreen TV,1,300,06/15/19 23:18,"530 2nd St, Los Angeles, CA 90001" -216728,Wired Headphones,1,11.99,06/23/19 15:53,"778 Elm St, Dallas, TX 75001" -216729,Lightning Charging Cable,1,14.95,06/26/19 09:43,"799 7th St, New York City, NY 10001" -216730,Lightning Charging Cable,1,14.95,06/09/19 15:05,"37 Jefferson St, San Francisco, CA 94016" -216731,AA Batteries (4-pack),1,3.84,06/14/19 19:05,"560 9th St, Boston, MA 02215" -216732,27in 4K Gaming Monitor,1,389.99,06/29/19 11:46,"739 9th St, Austin, TX 73301" -216733,Vareebadd Phone,1,400,06/02/19 11:12,"881 Jefferson St, San Francisco, CA 94016" -216734,AA Batteries (4-pack),1,3.84,06/18/19 21:22,"70 5th St, San Francisco, CA 94016" -216735,Lightning Charging Cable,1,14.95,06/15/19 11:05,"605 Sunset St, Austin, TX 73301" -216735,AAA Batteries (4-pack),1,2.99,06/15/19 11:05,"605 Sunset St, Austin, TX 73301" -216736,USB-C Charging Cable,2,11.95,06/12/19 17:07,"850 Park St, New York City, NY 10001" -216737,27in 4K Gaming Monitor,1,389.99,06/21/19 14:17,"103 Pine St, Seattle, WA 98101" -216738,AA Batteries (4-pack),2,3.84,06/27/19 18:40,"61 Lake St, New York City, NY 10001" -216739,Google Phone,1,600,06/26/19 21:39,"193 Forest St, San Francisco, CA 94016" -216740,Apple Airpods Headphones,1,150,06/20/19 11:16,"243 Meadow St, Seattle, WA 98101" -216741,34in Ultrawide Monitor,1,379.99,06/23/19 10:03,"832 10th St, Los Angeles, CA 90001" -216742,Flatscreen TV,1,300,06/09/19 06:43,"479 Elm St, New York City, NY 10001" -216743,20in Monitor,1,109.99,06/18/19 08:12,"996 Dogwood St, Atlanta, GA 30301" -216744,Wired Headphones,1,11.99,06/13/19 19:07,"523 7th St, Austin, TX 73301" -216745,Apple Airpods Headphones,1,150,06/30/19 16:57,"411 Walnut St, Boston, MA 02215" -216746,AAA Batteries (4-pack),1,2.99,06/07/19 08:34,"748 Maple St, Austin, TX 73301" -216747,USB-C Charging Cable,1,11.95,06/26/19 21:26,"493 Adams St, San Francisco, CA 94016" -216748,USB-C Charging Cable,1,11.95,06/24/19 00:17,"913 11th St, San Francisco, CA 94016" -216749,Bose SoundSport Headphones,1,99.99,06/27/19 21:18,"427 Spruce St, New York City, NY 10001" -216750,Lightning Charging Cable,1,14.95,06/09/19 13:28,"592 Sunset St, New York City, NY 10001" -216751,Apple Airpods Headphones,1,150,06/21/19 13:02,"69 Jefferson St, San Francisco, CA 94016" -216752,Lightning Charging Cable,1,14.95,06/20/19 14:45,"360 6th St, Boston, MA 02215" -216753,AAA Batteries (4-pack),1,2.99,06/28/19 12:15,"979 West St, New York City, NY 10001" -216754,Lightning Charging Cable,1,14.95,06/14/19 01:58,"12 10th St, San Francisco, CA 94016" -216755,USB-C Charging Cable,1,11.95,06/20/19 17:37,"436 Madison St, San Francisco, CA 94016" -216756,AA Batteries (4-pack),1,3.84,06/25/19 21:39,"562 Madison St, New York City, NY 10001" -216757,34in Ultrawide Monitor,1,379.99,06/06/19 15:30,"445 North St, Atlanta, GA 30301" -216757,Flatscreen TV,1,300,06/06/19 15:30,"445 North St, Atlanta, GA 30301" -216758,AA Batteries (4-pack),1,3.84,06/20/19 23:29,"637 Lincoln St, New York City, NY 10001" -216759,Lightning Charging Cable,1,14.95,06/29/19 21:33,"328 Cherry St, San Francisco, CA 94016" -216760,Lightning Charging Cable,1,14.95,06/18/19 16:33,"24 Maple St, New York City, NY 10001" -216761,Wired Headphones,1,11.99,06/05/19 18:42,"517 River St, Austin, TX 73301" -216762,27in FHD Monitor,1,149.99,06/28/19 19:45,"425 Cedar St, San Francisco, CA 94016" -216763,iPhone,1,700,06/27/19 13:11,"496 Willow St, Dallas, TX 75001" -216764,USB-C Charging Cable,1,11.95,06/15/19 23:44,"413 Lake St, Seattle, WA 98101" -216765,Google Phone,1,600,06/22/19 20:07,"673 Meadow St, San Francisco, CA 94016" -216766,ThinkPad Laptop,1,999.99,06/20/19 17:17,"104 Pine St, Austin, TX 73301" -216766,Wired Headphones,1,11.99,06/20/19 17:17,"104 Pine St, Austin, TX 73301" -216767,Wired Headphones,1,11.99,06/11/19 17:58,"512 River St, Dallas, TX 75001" -216768,Bose SoundSport Headphones,1,99.99,06/01/19 13:19,"35 Cherry St, San Francisco, CA 94016" -216768,AA Batteries (4-pack),1,3.84,06/01/19 13:19,"35 Cherry St, San Francisco, CA 94016" -216769,Vareebadd Phone,1,400,06/14/19 22:00,"345 Park St, Atlanta, GA 30301" -216770,AA Batteries (4-pack),2,3.84,06/16/19 09:01,"602 Cedar St, Los Angeles, CA 90001" -216771,27in FHD Monitor,1,149.99,06/23/19 22:11,"579 Park St, Boston, MA 02215" -216771,AAA Batteries (4-pack),1,2.99,06/23/19 22:11,"579 Park St, Boston, MA 02215" -216772,34in Ultrawide Monitor,1,379.99,06/13/19 12:03,"855 Chestnut St, Austin, TX 73301" -216773,AA Batteries (4-pack),1,3.84,06/02/19 20:19,"165 Walnut St, Dallas, TX 75001" -216774,Flatscreen TV,1,300,06/05/19 19:34,"232 Adams St, Dallas, TX 75001" -216775,AAA Batteries (4-pack),1,2.99,06/30/19 19:31,"443 Maple St, San Francisco, CA 94016" -216776,Google Phone,1,600,06/07/19 19:47,"930 Willow St, Austin, TX 73301" -216776,Bose SoundSport Headphones,1,99.99,06/07/19 19:47,"930 Willow St, Austin, TX 73301" -216777,Lightning Charging Cable,1,14.95,06/14/19 19:57,"926 Wilson St, Portland, OR 97035" -216778,Wired Headphones,1,11.99,06/06/19 18:42,"68 West St, San Francisco, CA 94016" -216779,20in Monitor,1,109.99,06/25/19 13:43,"882 14th St, San Francisco, CA 94016" -216780,Bose SoundSport Headphones,1,99.99,06/16/19 17:10,"260 Elm St, New York City, NY 10001" -216781,LG Dryer,1,600.0,06/10/19 23:13,"219 12th St, Boston, MA 02215" -216782,Apple Airpods Headphones,1,150,06/14/19 11:32,"558 Park St, New York City, NY 10001" -216783,20in Monitor,1,109.99,06/23/19 01:01,"139 Park St, San Francisco, CA 94016" -216784,AA Batteries (4-pack),1,3.84,06/19/19 11:42,"904 South St, Austin, TX 73301" -216785,AAA Batteries (4-pack),1,2.99,06/17/19 19:24,"926 West St, Los Angeles, CA 90001" -216786,Google Phone,1,600,06/23/19 10:15,"822 Church St, Austin, TX 73301" -216787,Google Phone,1,600,06/06/19 01:22,"523 Church St, Austin, TX 73301" -216787,USB-C Charging Cable,1,11.95,06/06/19 01:22,"523 Church St, Austin, TX 73301" -216788,USB-C Charging Cable,2,11.95,06/04/19 06:31,"70 Lakeview St, Boston, MA 02215" -216789,27in FHD Monitor,1,149.99,06/30/19 15:00,"333 5th St, Los Angeles, CA 90001" -216790,Apple Airpods Headphones,1,150,06/18/19 16:30,"940 Highland St, Seattle, WA 98101" -216791,AA Batteries (4-pack),1,3.84,06/15/19 12:05,"368 Park St, Los Angeles, CA 90001" -216792,AAA Batteries (4-pack),6,2.99,06/04/19 17:23,"25 Jefferson St, Atlanta, GA 30301" -216793,USB-C Charging Cable,2,11.95,06/24/19 22:05,"689 Lake St, Portland, OR 97035" -216794,AAA Batteries (4-pack),1,2.99,06/14/19 10:24,"624 6th St, Boston, MA 02215" -216795,AAA Batteries (4-pack),1,2.99,06/27/19 16:08,"69 Lakeview St, San Francisco, CA 94016" -216796,34in Ultrawide Monitor,1,379.99,06/28/19 20:21,"848 Wilson St, San Francisco, CA 94016" -216797,Bose SoundSport Headphones,1,99.99,06/19/19 14:24,"841 Center St, Seattle, WA 98101" -216798,Wired Headphones,1,11.99,06/10/19 19:26,"315 Meadow St, San Francisco, CA 94016" -216799,AAA Batteries (4-pack),2,2.99,06/14/19 20:42,"90 Adams St, Los Angeles, CA 90001" -216800,AA Batteries (4-pack),1,3.84,06/15/19 22:28,"591 Lakeview St, San Francisco, CA 94016" -216801,Apple Airpods Headphones,1,150,06/18/19 11:25,"538 4th St, Atlanta, GA 30301" -216802,Lightning Charging Cable,1,14.95,06/20/19 05:57,"404 1st St, Seattle, WA 98101" -216803,Vareebadd Phone,1,400,06/18/19 14:33,"549 Highland St, Los Angeles, CA 90001" -216803,Wired Headphones,1,11.99,06/18/19 14:33,"549 Highland St, Los Angeles, CA 90001" -216804,LG Washing Machine,1,600.0,06/14/19 20:20,"660 Cedar St, Boston, MA 02215" -216804,iPhone,1,700,06/14/19 20:20,"660 Cedar St, Boston, MA 02215" -216805,Macbook Pro Laptop,1,1700,06/09/19 16:50,"524 Elm St, Seattle, WA 98101" -216806,Lightning Charging Cable,1,14.95,06/24/19 11:57,"18 Hickory St, New York City, NY 10001" -216807,20in Monitor,1,109.99,06/21/19 14:12,"939 Maple St, Austin, TX 73301" -216808,Wired Headphones,1,11.99,06/19/19 12:56,"108 12th St, Boston, MA 02215" -216809,Apple Airpods Headphones,1,150,06/16/19 19:48,"670 10th St, San Francisco, CA 94016" -216810,27in 4K Gaming Monitor,1,389.99,06/16/19 13:20,"484 Adams St, Dallas, TX 75001" -216811,Wired Headphones,1,11.99,06/06/19 09:31,"782 Willow St, Seattle, WA 98101" -216812,Lightning Charging Cable,1,14.95,06/03/19 21:28,"30 West St, Seattle, WA 98101" -216813,AAA Batteries (4-pack),3,2.99,06/04/19 07:05,"367 5th St, Los Angeles, CA 90001" -216814,Wired Headphones,1,11.99,06/07/19 11:41,"274 Main St, Los Angeles, CA 90001" -216815,AAA Batteries (4-pack),4,2.99,06/21/19 06:39,"959 1st St, New York City, NY 10001" -216816,Bose SoundSport Headphones,1,99.99,06/21/19 12:04,"879 Sunset St, Los Angeles, CA 90001" -216817,Bose SoundSport Headphones,1,99.99,06/19/19 18:12,"346 9th St, San Francisco, CA 94016" -216818,Bose SoundSport Headphones,1,99.99,06/25/19 09:20,"734 Jackson St, San Francisco, CA 94016" -216819,USB-C Charging Cable,1,11.95,06/27/19 22:58,"993 Lake St, Portland, OR 97035" -216820,Flatscreen TV,1,300,06/04/19 10:38,"666 1st St, Austin, TX 73301" -216821,Lightning Charging Cable,1,14.95,06/25/19 08:49,"336 Ridge St, Dallas, TX 75001" -216822,USB-C Charging Cable,1,11.95,06/27/19 21:41,"177 Center St, San Francisco, CA 94016" -216823,Macbook Pro Laptop,1,1700,06/25/19 20:40,"77 Lake St, Austin, TX 73301" -216824,20in Monitor,1,109.99,06/25/19 21:17,"932 Washington St, New York City, NY 10001" -216825,ThinkPad Laptop,1,999.99,06/15/19 13:19,"204 South St, Boston, MA 02215" -216826,Apple Airpods Headphones,1,150,06/09/19 16:29,"360 Hill St, New York City, NY 10001" -216827,AAA Batteries (4-pack),1,2.99,06/10/19 22:37,"524 Sunset St, San Francisco, CA 94016" -216828,Lightning Charging Cable,1,14.95,06/25/19 21:06,"836 Spruce St, San Francisco, CA 94016" -216829,AA Batteries (4-pack),1,3.84,06/12/19 12:47,"535 Park St, New York City, NY 10001" -216830,USB-C Charging Cable,1,11.95,06/14/19 20:18,"13 River St, Los Angeles, CA 90001" -216831,Bose SoundSport Headphones,1,99.99,06/17/19 09:54,"97 Center St, Los Angeles, CA 90001" -216832,AAA Batteries (4-pack),2,2.99,06/12/19 07:37,"931 2nd St, San Francisco, CA 94016" -216833,USB-C Charging Cable,1,11.95,06/22/19 19:49,"644 Willow St, Portland, ME 04101" -216834,AAA Batteries (4-pack),1,2.99,06/13/19 10:42,"850 Hickory St, Austin, TX 73301" -216835,AA Batteries (4-pack),1,3.84,06/24/19 18:05,"495 Adams St, Boston, MA 02215" -216836,Lightning Charging Cable,1,14.95,06/10/19 17:37,"811 10th St, San Francisco, CA 94016" -216837,27in FHD Monitor,1,149.99,06/12/19 12:13,"309 Park St, San Francisco, CA 94016" -216838,USB-C Charging Cable,1,11.95,06/07/19 14:50,"636 South St, Los Angeles, CA 90001" -216839,Bose SoundSport Headphones,1,99.99,06/28/19 12:56,"630 Center St, Los Angeles, CA 90001" -216840,AAA Batteries (4-pack),1,2.99,06/20/19 09:54,"276 Elm St, Atlanta, GA 30301" -216841,20in Monitor,1,109.99,06/22/19 18:34,"694 6th St, San Francisco, CA 94016" -216842,AA Batteries (4-pack),1,3.84,06/03/19 09:30,"692 Spruce St, Boston, MA 02215" -216843,Lightning Charging Cable,1,14.95,06/05/19 20:47,"644 11th St, New York City, NY 10001" -216844,Flatscreen TV,1,300,06/07/19 16:52,"370 1st St, Los Angeles, CA 90001" -216845,Apple Airpods Headphones,1,150,06/15/19 16:40,"580 North St, New York City, NY 10001" -216846,Apple Airpods Headphones,1,150,06/27/19 15:24,"238 Church St, Los Angeles, CA 90001" -216847,AAA Batteries (4-pack),5,2.99,06/11/19 00:20,"319 Lake St, Atlanta, GA 30301" -216848,Apple Airpods Headphones,1,150,06/28/19 11:51,"27 Meadow St, San Francisco, CA 94016" -216849,USB-C Charging Cable,1,11.95,06/26/19 17:33,"206 North St, Seattle, WA 98101" -216850,USB-C Charging Cable,1,11.95,06/09/19 18:36,"23 1st St, Austin, TX 73301" -216851,USB-C Charging Cable,2,11.95,06/30/19 15:35,"774 Main St, San Francisco, CA 94016" -216852,Apple Airpods Headphones,1,150,06/02/19 22:17,"427 8th St, San Francisco, CA 94016" -216853,USB-C Charging Cable,1,11.95,06/07/19 11:57,"9 Wilson St, Boston, MA 02215" -216854,Bose SoundSport Headphones,1,99.99,06/12/19 14:27,"555 Wilson St, Portland, OR 97035" -216855,Bose SoundSport Headphones,1,99.99,06/07/19 19:59,"76 Highland St, Boston, MA 02215" -216856,27in 4K Gaming Monitor,1,389.99,06/01/19 11:00,"450 5th St, Los Angeles, CA 90001" -216857,27in 4K Gaming Monitor,1,389.99,06/15/19 12:47,"62 Hickory St, Los Angeles, CA 90001" -216858,Lightning Charging Cable,1,14.95,06/01/19 10:17,"791 Adams St, Seattle, WA 98101" -216859,Apple Airpods Headphones,1,150,06/04/19 10:15,"631 11th St, Dallas, TX 75001" -216860,iPhone,1,700,06/05/19 11:07,"487 Ridge St, Boston, MA 02215" -216861,AAA Batteries (4-pack),2,2.99,06/13/19 14:36,"427 Jackson St, Dallas, TX 75001" -216862,34in Ultrawide Monitor,1,379.99,06/26/19 15:22,"998 12th St, Dallas, TX 75001" -216863,USB-C Charging Cable,1,11.95,06/10/19 17:11,"957 Dogwood St, Seattle, WA 98101" -216864,Apple Airpods Headphones,1,150,06/05/19 09:52,"663 Chestnut St, Los Angeles, CA 90001" -216865,AA Batteries (4-pack),1,3.84,06/13/19 12:53,"596 Dogwood St, Los Angeles, CA 90001" -216866,Wired Headphones,1,11.99,06/01/19 17:37,"342 Church St, Dallas, TX 75001" -216867,AAA Batteries (4-pack),3,2.99,06/17/19 17:13,"295 Maple St, Los Angeles, CA 90001" -216868,Wired Headphones,1,11.99,06/08/19 20:06,"716 South St, San Francisco, CA 94016" -216869,Lightning Charging Cable,1,14.95,06/01/19 09:13,"201 10th St, Boston, MA 02215" -216870,Lightning Charging Cable,1,14.95,06/13/19 15:39,"261 Maple St, Los Angeles, CA 90001" -216871,AA Batteries (4-pack),1,3.84,06/18/19 16:50,"621 12th St, Atlanta, GA 30301" -216872,AA Batteries (4-pack),2,3.84,06/16/19 23:59,"289 Washington St, Portland, OR 97035" -216873,Wired Headphones,1,11.99,06/21/19 19:43,"70 10th St, Atlanta, GA 30301" -216874,Google Phone,1,600,06/09/19 19:36,"92 Forest St, San Francisco, CA 94016" -216875,Wired Headphones,1,11.99,06/16/19 21:21,"789 North St, San Francisco, CA 94016" -216876,Google Phone,1,600,06/10/19 15:05,"653 River St, Seattle, WA 98101" -216877,Flatscreen TV,1,300,06/21/19 14:46,"624 7th St, Boston, MA 02215" -216878,34in Ultrawide Monitor,1,379.99,06/18/19 19:36,"109 Wilson St, Boston, MA 02215" -216879,AA Batteries (4-pack),1,3.84,06/06/19 12:48,"278 Johnson St, Dallas, TX 75001" -216880,Lightning Charging Cable,2,14.95,06/12/19 16:40,"927 5th St, Atlanta, GA 30301" -216881,AA Batteries (4-pack),2,3.84,06/09/19 17:16,"794 4th St, New York City, NY 10001" -216882,USB-C Charging Cable,1,11.95,06/29/19 15:19,"986 13th St, San Francisco, CA 94016" -216883,Wired Headphones,1,11.99,06/25/19 06:46,"292 Center St, Dallas, TX 75001" -216884,Apple Airpods Headphones,1,150,06/06/19 20:45,"347 Center St, Los Angeles, CA 90001" -216885,Google Phone,1,600,06/01/19 19:43,"126 Spruce St, San Francisco, CA 94016" -216886,Wired Headphones,1,11.99,06/25/19 16:36,"764 Adams St, San Francisco, CA 94016" -216887,27in 4K Gaming Monitor,1,389.99,06/02/19 11:47,"268 Elm St, New York City, NY 10001" -216888,Wired Headphones,1,11.99,06/07/19 19:30,"455 Park St, San Francisco, CA 94016" -216889,Apple Airpods Headphones,1,150,06/07/19 10:24,"267 6th St, Portland, OR 97035" -216890,Macbook Pro Laptop,1,1700,06/08/19 22:02,"945 4th St, Boston, MA 02215" -216891,AA Batteries (4-pack),1,3.84,06/28/19 15:09,"466 North St, Portland, ME 04101" -216892,AA Batteries (4-pack),1,3.84,06/08/19 19:14,"553 Willow St, San Francisco, CA 94016" -216893,Wired Headphones,1,11.99,06/15/19 21:21,"60 2nd St, New York City, NY 10001" -216894,27in 4K Gaming Monitor,1,389.99,06/14/19 19:08,"604 Washington St, New York City, NY 10001" -216895,AAA Batteries (4-pack),2,2.99,06/09/19 09:23,"778 Washington St, Austin, TX 73301" -216896,Google Phone,1,600,06/16/19 10:33,"678 12th St, San Francisco, CA 94016" -216897,34in Ultrawide Monitor,1,379.99,06/05/19 22:56,"504 Jackson St, Portland, OR 97035" -216898,34in Ultrawide Monitor,1,379.99,06/02/19 05:21,"186 Chestnut St, Los Angeles, CA 90001" -216899,Bose SoundSport Headphones,1,99.99,06/11/19 15:52,"796 14th St, San Francisco, CA 94016" -216900,Bose SoundSport Headphones,1,99.99,06/30/19 15:52,"938 River St, Atlanta, GA 30301" -216901,Wired Headphones,1,11.99,06/05/19 06:53,"393 4th St, New York City, NY 10001" -216902,Wired Headphones,1,11.99,06/02/19 19:32,"868 Sunset St, Dallas, TX 75001" -216903,iPhone,1,700,06/02/19 18:37,"38 12th St, San Francisco, CA 94016" -216904,iPhone,1,700,06/10/19 14:47,"686 Main St, Dallas, TX 75001" -216905,AA Batteries (4-pack),2,3.84,06/01/19 11:19,"256 Lincoln St, New York City, NY 10001" -216906,Flatscreen TV,1,300,06/06/19 21:12,"444 Spruce St, Los Angeles, CA 90001" -216907,AA Batteries (4-pack),1,3.84,06/17/19 18:44,"889 11th St, Boston, MA 02215" -216908,Google Phone,1,600,06/14/19 15:59,"77 Johnson St, San Francisco, CA 94016" -216909,Macbook Pro Laptop,1,1700,06/29/19 11:14,"284 River St, Los Angeles, CA 90001" -216910,USB-C Charging Cable,1,11.95,06/02/19 15:53,"798 Meadow St, Seattle, WA 98101" -216911,Lightning Charging Cable,1,14.95,06/04/19 03:38,"506 Madison St, Austin, TX 73301" -216912,Bose SoundSport Headphones,1,99.99,06/03/19 16:26,"291 Lincoln St, San Francisco, CA 94016" -216913,27in FHD Monitor,1,149.99,06/17/19 11:39,"676 Spruce St, Seattle, WA 98101" -216914,Lightning Charging Cable,1,14.95,06/09/19 13:18,"559 6th St, New York City, NY 10001" -216915,Lightning Charging Cable,1,14.95,06/25/19 06:22,"754 5th St, Los Angeles, CA 90001" -216916,AA Batteries (4-pack),2,3.84,06/09/19 21:50,"476 11th St, Boston, MA 02215" -216917,27in FHD Monitor,1,149.99,06/07/19 03:53,"899 Jackson St, Los Angeles, CA 90001" -216918,AAA Batteries (4-pack),1,2.99,06/21/19 18:49,"941 1st St, Atlanta, GA 30301" -216919,USB-C Charging Cable,1,11.95,06/13/19 18:38,"289 Lake St, Atlanta, GA 30301" -216920,USB-C Charging Cable,2,11.95,06/02/19 09:50,"510 Adams St, New York City, NY 10001" -216921,ThinkPad Laptop,1,999.99,06/01/19 17:11,"196 8th St, Austin, TX 73301" -216922,USB-C Charging Cable,1,11.95,06/24/19 15:48,"20 14th St, Los Angeles, CA 90001" -216923,Wired Headphones,1,11.99,06/14/19 11:08,"80 2nd St, New York City, NY 10001" -216924,Bose SoundSport Headphones,1,99.99,06/26/19 11:52,"317 Lakeview St, San Francisco, CA 94016" -216925,Macbook Pro Laptop,1,1700,06/17/19 09:27,"709 North St, San Francisco, CA 94016" -216926,ThinkPad Laptop,1,999.99,06/27/19 15:29,"66 Meadow St, Los Angeles, CA 90001" -216927,Lightning Charging Cable,1,14.95,06/24/19 23:16,"865 Willow St, Atlanta, GA 30301" -216928,USB-C Charging Cable,1,11.95,06/16/19 10:31,"504 6th St, San Francisco, CA 94016" -216929,USB-C Charging Cable,1,11.95,06/05/19 18:48,"640 West St, San Francisco, CA 94016" -216930,USB-C Charging Cable,1,11.95,06/04/19 17:52,"586 1st St, San Francisco, CA 94016" -216931,iPhone,1,700,06/28/19 18:14,"570 Park St, New York City, NY 10001" -216932,USB-C Charging Cable,1,11.95,06/29/19 18:25,"556 4th St, New York City, NY 10001" -216933,Macbook Pro Laptop,1,1700,06/01/19 22:41,"83 Wilson St, New York City, NY 10001" -216934,Flatscreen TV,1,300,06/05/19 15:48,"105 Lincoln St, Dallas, TX 75001" -216935,Lightning Charging Cable,1,14.95,06/01/19 15:23,"666 Cedar St, Atlanta, GA 30301" -216936,Bose SoundSport Headphones,1,99.99,06/30/19 15:50,"976 13th St, Dallas, TX 75001" -216937,Lightning Charging Cable,2,14.95,06/15/19 18:47,"737 Johnson St, Atlanta, GA 30301" -216938,Bose SoundSport Headphones,1,99.99,06/07/19 15:16,"335 11th St, San Francisco, CA 94016" -216939,Lightning Charging Cable,1,14.95,06/02/19 11:07,"825 Elm St, San Francisco, CA 94016" -216940,Apple Airpods Headphones,1,150,06/30/19 17:50,"654 14th St, San Francisco, CA 94016" -216941,iPhone,1,700,06/14/19 11:55,"740 Hill St, Los Angeles, CA 90001" -216941,34in Ultrawide Monitor,1,379.99,06/14/19 11:55,"740 Hill St, Los Angeles, CA 90001" -216942,AAA Batteries (4-pack),2,2.99,06/08/19 18:18,"75 Hickory St, New York City, NY 10001" -216943,iPhone,1,700,06/12/19 20:34,"674 Lakeview St, Atlanta, GA 30301" -216943,Lightning Charging Cable,1,14.95,06/12/19 20:34,"674 Lakeview St, Atlanta, GA 30301" -216944,Lightning Charging Cable,1,14.95,06/23/19 10:15,"150 Church St, San Francisco, CA 94016" -216945,Google Phone,1,600,06/21/19 13:18,"817 Wilson St, Dallas, TX 75001" -216946,iPhone,1,700,06/14/19 23:08,"701 Forest St, San Francisco, CA 94016" -216947,AAA Batteries (4-pack),1,2.99,06/25/19 17:42,"452 Forest St, Seattle, WA 98101" -216948,USB-C Charging Cable,1,11.95,06/04/19 16:54,"357 Main St, Austin, TX 73301" -216949,ThinkPad Laptop,1,999.99,06/07/19 21:37,"287 Meadow St, San Francisco, CA 94016" -216950,27in 4K Gaming Monitor,1,389.99,06/11/19 09:45,"785 2nd St, New York City, NY 10001" -216951,Wired Headphones,1,11.99,06/21/19 20:42,"469 Pine St, Los Angeles, CA 90001" -216952,20in Monitor,1,109.99,06/13/19 12:03,"617 Lake St, Portland, OR 97035" -216953,Google Phone,1,600,06/19/19 21:08,"18 1st St, San Francisco, CA 94016" -216954,Apple Airpods Headphones,1,150,06/13/19 15:50,"275 River St, New York City, NY 10001" -216955,USB-C Charging Cable,1,11.95,06/26/19 15:03,"16 Hickory St, Austin, TX 73301" -216956,27in FHD Monitor,1,149.99,06/06/19 21:31,"973 Highland St, Seattle, WA 98101" -216957,Apple Airpods Headphones,1,150,06/23/19 14:55,"470 Highland St, San Francisco, CA 94016" -216958,Flatscreen TV,1,300,06/28/19 17:38,"83 North St, Los Angeles, CA 90001" -216959,Lightning Charging Cable,1,14.95,06/08/19 23:45,"382 7th St, New York City, NY 10001" -216960,Wired Headphones,1,11.99,06/27/19 12:12,"159 6th St, Los Angeles, CA 90001" -216961,AAA Batteries (4-pack),1,2.99,06/01/19 21:11,"844 8th St, New York City, NY 10001" -216962,Flatscreen TV,1,300,06/03/19 10:41,"249 Chestnut St, Atlanta, GA 30301" -216963,AAA Batteries (4-pack),3,2.99,06/07/19 11:55,"47 Cedar St, San Francisco, CA 94016" -216964,AA Batteries (4-pack),1,3.84,06/18/19 09:31,"723 Chestnut St, San Francisco, CA 94016" -216965,Lightning Charging Cable,1,14.95,06/21/19 18:13,"889 Lake St, Atlanta, GA 30301" -216966,AAA Batteries (4-pack),1,2.99,06/24/19 11:50,"641 Hickory St, Austin, TX 73301" -216967,AA Batteries (4-pack),1,3.84,06/06/19 12:08,"558 North St, San Francisco, CA 94016" -216968,34in Ultrawide Monitor,1,379.99,06/19/19 19:04,"424 1st St, San Francisco, CA 94016" -216969,Vareebadd Phone,1,400,06/07/19 08:36,"634 Johnson St, Austin, TX 73301" -216970,ThinkPad Laptop,1,999.99,06/25/19 12:29,"663 Hill St, Seattle, WA 98101" -216971,AA Batteries (4-pack),1,3.84,06/06/19 22:31,"601 Walnut St, San Francisco, CA 94016" -216972,Lightning Charging Cable,1,14.95,06/20/19 13:37,"592 Johnson St, Dallas, TX 75001" -216973,iPhone,1,700,06/04/19 19:03,"692 Meadow St, Los Angeles, CA 90001" -216974,Google Phone,1,600,06/10/19 16:14,"379 Lakeview St, Dallas, TX 75001" -216974,USB-C Charging Cable,1,11.95,06/10/19 16:14,"379 Lakeview St, Dallas, TX 75001" -216975,Bose SoundSport Headphones,1,99.99,06/10/19 08:30,"79 Church St, Dallas, TX 75001" -216976,iPhone,1,700,06/25/19 20:39,"930 Jackson St, Boston, MA 02215" -216976,27in 4K Gaming Monitor,1,389.99,06/25/19 20:39,"930 Jackson St, Boston, MA 02215" -216977,Wired Headphones,1,11.99,06/28/19 19:49,"44 4th St, San Francisco, CA 94016" -216978,iPhone,1,700,06/09/19 13:11,"57 Washington St, San Francisco, CA 94016" -216979,AA Batteries (4-pack),1,3.84,06/09/19 11:46,"985 Highland St, New York City, NY 10001" -216980,AAA Batteries (4-pack),3,2.99,06/16/19 23:12,"209 Adams St, Seattle, WA 98101" -216981,AAA Batteries (4-pack),1,2.99,06/14/19 18:55,"20 Church St, Austin, TX 73301" -216982,Wired Headphones,1,11.99,06/29/19 01:04,"160 Sunset St, Atlanta, GA 30301" -216983,LG Dryer,1,600.0,06/02/19 19:17,"431 7th St, Austin, TX 73301" -216984,Lightning Charging Cable,1,14.95,06/07/19 23:11,"255 Wilson St, Los Angeles, CA 90001" -216985,Lightning Charging Cable,1,14.95,06/13/19 19:46,"718 Walnut St, New York City, NY 10001" -216986,Wired Headphones,1,11.99,06/28/19 22:31,"874 Washington St, Seattle, WA 98101" -216987,Bose SoundSport Headphones,1,99.99,06/17/19 15:12,"668 Chestnut St, San Francisco, CA 94016" -216988,Wired Headphones,1,11.99,06/29/19 14:52,"976 Forest St, San Francisco, CA 94016" -216989,Apple Airpods Headphones,1,150,06/10/19 20:14,"579 Park St, Dallas, TX 75001" -216990,27in 4K Gaming Monitor,1,389.99,06/01/19 11:35,"623 13th St, San Francisco, CA 94016" -216991,AAA Batteries (4-pack),1,2.99,06/04/19 18:15,"9 Highland St, Seattle, WA 98101" -216992,Lightning Charging Cable,1,14.95,06/19/19 16:38,"325 2nd St, San Francisco, CA 94016" -216993,34in Ultrawide Monitor,1,379.99,06/07/19 21:02,"382 2nd St, San Francisco, CA 94016" -216994,AA Batteries (4-pack),1,3.84,06/05/19 00:35,"555 North St, Los Angeles, CA 90001" -216995,AA Batteries (4-pack),1,3.84,06/11/19 13:06,"245 West St, Dallas, TX 75001" -216996,27in FHD Monitor,1,149.99,06/03/19 19:32,"305 4th St, San Francisco, CA 94016" -216997,Google Phone,1,600,06/16/19 21:39,"325 Spruce St, Atlanta, GA 30301" -216998,Apple Airpods Headphones,1,150,06/06/19 17:40,"351 Willow St, Portland, OR 97035" -216999,Bose SoundSport Headphones,1,99.99,06/25/19 12:53,"358 Adams St, San Francisco, CA 94016" -217000,Lightning Charging Cable,1,14.95,06/08/19 14:56,"217 7th St, Atlanta, GA 30301" -217001,ThinkPad Laptop,1,999.99,06/16/19 19:15,"261 Lincoln St, Dallas, TX 75001" -217002,27in FHD Monitor,1,149.99,06/16/19 18:49,"598 Center St, Dallas, TX 75001" -217003,AAA Batteries (4-pack),1,2.99,06/21/19 13:30,"725 West St, Dallas, TX 75001" -217004,AAA Batteries (4-pack),2,2.99,06/01/19 17:50,"363 South St, San Francisco, CA 94016" -217005,AA Batteries (4-pack),1,3.84,06/30/19 10:31,"701 Maple St, Boston, MA 02215" -217006,Lightning Charging Cable,2,14.95,06/19/19 15:23,"691 Sunset St, Los Angeles, CA 90001" -217007,USB-C Charging Cable,1,11.95,06/21/19 12:28,"331 6th St, New York City, NY 10001" -217008,Google Phone,1,600,06/11/19 17:39,"301 Wilson St, Dallas, TX 75001" -217008,USB-C Charging Cable,1,11.95,06/11/19 17:39,"301 Wilson St, Dallas, TX 75001" -217009,Wired Headphones,1,11.99,06/23/19 11:13,"334 Walnut St, Portland, OR 97035" -217010,AA Batteries (4-pack),1,3.84,06/21/19 18:31,"347 Maple St, New York City, NY 10001" -217011,Wired Headphones,2,11.99,06/03/19 14:25,"361 Washington St, Portland, OR 97035" -217012,USB-C Charging Cable,1,11.95,06/21/19 22:25,"970 Maple St, Seattle, WA 98101" -217013,Lightning Charging Cable,1,14.95,06/23/19 19:51,"198 Cedar St, Atlanta, GA 30301" -217014,Bose SoundSport Headphones,1,99.99,06/13/19 19:44,"767 Cherry St, Los Angeles, CA 90001" -217015,AA Batteries (4-pack),2,3.84,06/19/19 10:07,"749 2nd St, San Francisco, CA 94016" -217016,34in Ultrawide Monitor,1,379.99,06/27/19 14:31,"974 South St, New York City, NY 10001" -217017,Google Phone,1,600,06/08/19 19:11,"366 Chestnut St, San Francisco, CA 94016" -217018,27in 4K Gaming Monitor,1,389.99,06/07/19 20:52,"341 Main St, Los Angeles, CA 90001" -217019,iPhone,1,700,06/12/19 17:02,"315 Lakeview St, San Francisco, CA 94016" -217020,AA Batteries (4-pack),1,3.84,06/13/19 18:45,"564 Hill St, Portland, ME 04101" -217021,AAA Batteries (4-pack),1,2.99,06/23/19 16:28,"939 10th St, Seattle, WA 98101" -217022,AAA Batteries (4-pack),1,2.99,06/11/19 07:54,"649 11th St, San Francisco, CA 94016" -217023,Google Phone,1,600,06/06/19 23:31,"1 Sunset St, Seattle, WA 98101" -217023,Wired Headphones,1,11.99,06/06/19 23:31,"1 Sunset St, Seattle, WA 98101" -217024,AAA Batteries (4-pack),3,2.99,06/03/19 11:55,"996 10th St, Atlanta, GA 30301" -217025,LG Washing Machine,1,600.0,06/11/19 17:16,"652 Pine St, Atlanta, GA 30301" -217026,Lightning Charging Cable,1,14.95,06/18/19 16:23,"592 Lincoln St, Portland, OR 97035" -217027,Apple Airpods Headphones,1,150,06/17/19 12:16,"83 7th St, San Francisco, CA 94016" -217028,iPhone,1,700,06/11/19 14:56,"108 7th St, Boston, MA 02215" -217028,Apple Airpods Headphones,1,150,06/11/19 14:56,"108 7th St, Boston, MA 02215" -217029,USB-C Charging Cable,1,11.95,06/24/19 20:38,"700 10th St, Seattle, WA 98101" -217030,USB-C Charging Cable,1,11.95,06/23/19 11:59,"353 2nd St, Los Angeles, CA 90001" -217031,Apple Airpods Headphones,1,150,06/04/19 23:46,"537 Walnut St, New York City, NY 10001" -217032,34in Ultrawide Monitor,1,379.99,06/06/19 18:42,"208 9th St, San Francisco, CA 94016" -217033,AA Batteries (4-pack),1,3.84,06/05/19 12:25,"692 13th St, San Francisco, CA 94016" -217034,USB-C Charging Cable,1,11.95,06/24/19 22:01,"428 10th St, San Francisco, CA 94016" -217035,USB-C Charging Cable,1,11.95,06/16/19 16:30,"968 River St, Boston, MA 02215" -217036,USB-C Charging Cable,1,11.95,06/09/19 16:22,"878 Spruce St, Los Angeles, CA 90001" -217037,Apple Airpods Headphones,1,150,06/05/19 09:23,"543 Willow St, Los Angeles, CA 90001" -217038,Lightning Charging Cable,2,14.95,06/26/19 08:25,"460 Maple St, Portland, ME 04101" -217039,34in Ultrawide Monitor,1,379.99,06/27/19 17:39,"493 Jackson St, New York City, NY 10001" -217040,AAA Batteries (4-pack),1,2.99,06/02/19 13:06,"192 Madison St, San Francisco, CA 94016" -217041,AA Batteries (4-pack),2,3.84,06/12/19 16:12,"903 Jackson St, Seattle, WA 98101" -217042,USB-C Charging Cable,1,11.95,06/20/19 12:49,"479 6th St, Boston, MA 02215" -217042,Macbook Pro Laptop,1,1700,06/20/19 12:49,"479 6th St, Boston, MA 02215" -217043,Lightning Charging Cable,1,14.95,06/07/19 18:51,"447 12th St, New York City, NY 10001" -217044,USB-C Charging Cable,1,11.95,06/06/19 20:17,"784 8th St, Dallas, TX 75001" -217045,AA Batteries (4-pack),1,3.84,06/13/19 13:21,"163 West St, Seattle, WA 98101" -,,,,, -217046,27in FHD Monitor,1,149.99,06/17/19 23:29,"794 8th St, Austin, TX 73301" -217047,AAA Batteries (4-pack),1,2.99,06/13/19 23:34,"947 8th St, Atlanta, GA 30301" -217048,AAA Batteries (4-pack),2,2.99,06/14/19 12:39,"179 Walnut St, San Francisco, CA 94016" -217049,iPhone,1,700,06/09/19 17:47,"140 Park St, San Francisco, CA 94016" -217050,27in 4K Gaming Monitor,1,389.99,06/13/19 16:01,"316 Elm St, Boston, MA 02215" -217051,Google Phone,1,600,06/27/19 01:05,"724 South St, Boston, MA 02215" -217052,Lightning Charging Cable,1,14.95,06/12/19 13:25,"91 Spruce St, San Francisco, CA 94016" -217053,Vareebadd Phone,1,400,06/14/19 12:57,"462 Meadow St, San Francisco, CA 94016" -217054,USB-C Charging Cable,1,11.95,06/01/19 16:55,"14 2nd St, San Francisco, CA 94016" -217055,USB-C Charging Cable,1,11.95,06/29/19 20:04,"516 Adams St, San Francisco, CA 94016" -217056,27in FHD Monitor,1,149.99,06/10/19 07:05,"879 Sunset St, Portland, ME 04101" -217057,Flatscreen TV,1,300,06/28/19 13:24,"1 5th St, San Francisco, CA 94016" -217058,Lightning Charging Cable,1,14.95,06/24/19 16:03,"912 Hickory St, San Francisco, CA 94016" -217059,AA Batteries (4-pack),1,3.84,06/06/19 14:54,"443 Main St, Los Angeles, CA 90001" -217060,Lightning Charging Cable,1,14.95,06/14/19 10:44,"101 1st St, Los Angeles, CA 90001" -217061,Macbook Pro Laptop,1,1700,06/10/19 07:46,"753 Hickory St, Los Angeles, CA 90001" -217062,USB-C Charging Cable,1,11.95,06/28/19 12:03,"265 Madison St, San Francisco, CA 94016" -217063,LG Washing Machine,1,600.0,06/19/19 08:35,"705 6th St, Los Angeles, CA 90001" -217064,Lightning Charging Cable,1,14.95,06/18/19 11:39,"950 South St, Dallas, TX 75001" -217065,AAA Batteries (4-pack),1,2.99,06/26/19 20:00,"858 Jefferson St, Austin, TX 73301" -217066,Google Phone,1,600,06/29/19 14:42,"751 Pine St, San Francisco, CA 94016" -217066,Wired Headphones,1,11.99,06/29/19 14:42,"751 Pine St, San Francisco, CA 94016" -217067,Vareebadd Phone,1,400,06/04/19 09:40,"150 Washington St, San Francisco, CA 94016" -217067,USB-C Charging Cable,1,11.95,06/04/19 09:40,"150 Washington St, San Francisco, CA 94016" -217068,Bose SoundSport Headphones,1,99.99,06/01/19 18:10,"317 Center St, Boston, MA 02215" -217069,AA Batteries (4-pack),1,3.84,06/28/19 16:55,"756 Jackson St, Los Angeles, CA 90001" -217070,AA Batteries (4-pack),1,3.84,06/08/19 08:29,"549 Meadow St, Los Angeles, CA 90001" -217071,27in FHD Monitor,1,149.99,06/15/19 10:15,"841 South St, San Francisco, CA 94016" -217072,Apple Airpods Headphones,1,150,06/09/19 20:13,"723 11th St, Atlanta, GA 30301" -217073,27in FHD Monitor,1,149.99,06/13/19 09:28,"85 Jackson St, San Francisco, CA 94016" -217074,AAA Batteries (4-pack),2,2.99,06/06/19 18:38,"608 7th St, San Francisco, CA 94016" -217075,34in Ultrawide Monitor,1,379.99,06/19/19 09:13,"999 Walnut St, Atlanta, GA 30301" -217076,Lightning Charging Cable,1,14.95,06/26/19 10:42,"341 9th St, Boston, MA 02215" -217077,27in FHD Monitor,1,149.99,06/05/19 20:39,"528 Cherry St, Boston, MA 02215" -217078,iPhone,1,700,06/14/19 08:52,"834 North St, Los Angeles, CA 90001" -217079,AA Batteries (4-pack),1,3.84,06/03/19 13:41,"938 Park St, Boston, MA 02215" -217080,AA Batteries (4-pack),2,3.84,06/04/19 23:00,"436 8th St, Los Angeles, CA 90001" -217081,Apple Airpods Headphones,1,150,06/02/19 20:44,"490 5th St, Los Angeles, CA 90001" -217082,Apple Airpods Headphones,1,150,06/05/19 09:42,"809 North St, Dallas, TX 75001" -217083,AAA Batteries (4-pack),1,2.99,06/25/19 08:45,"137 Dogwood St, Atlanta, GA 30301" -217084,34in Ultrawide Monitor,2,379.99,06/29/19 19:17,"294 Hill St, Los Angeles, CA 90001" -217085,27in FHD Monitor,1,149.99,06/20/19 12:31,"393 Ridge St, San Francisco, CA 94016" -217086,Wired Headphones,1,11.99,06/29/19 10:22,"835 Maple St, Portland, ME 04101" -217087,USB-C Charging Cable,1,11.95,06/26/19 14:30,"458 Main St, Dallas, TX 75001" -217088,iPhone,1,700,06/12/19 21:06,"187 Wilson St, San Francisco, CA 94016" -217089,Bose SoundSport Headphones,1,99.99,06/28/19 22:11,"629 Park St, San Francisco, CA 94016" -217090,Lightning Charging Cable,1,14.95,06/19/19 10:57,"100 Johnson St, Dallas, TX 75001" -217091,ThinkPad Laptop,1,999.99,06/28/19 07:24,"247 Park St, Atlanta, GA 30301" -217092,Macbook Pro Laptop,1,1700,06/22/19 08:33,"85 Washington St, San Francisco, CA 94016" -217093,Wired Headphones,1,11.99,06/13/19 15:51,"247 Hill St, San Francisco, CA 94016" -217094,ThinkPad Laptop,1,999.99,06/28/19 17:47,"576 West St, San Francisco, CA 94016" -217095,Flatscreen TV,1,300,06/20/19 15:37,"897 Johnson St, Atlanta, GA 30301" -217096,Wired Headphones,1,11.99,06/14/19 18:21,"580 Lake St, Los Angeles, CA 90001" -217097,USB-C Charging Cable,1,11.95,06/21/19 19:17,"544 Washington St, San Francisco, CA 94016" -217098,27in 4K Gaming Monitor,1,389.99,06/17/19 09:53,"795 River St, Los Angeles, CA 90001" -217099,AAA Batteries (4-pack),1,2.99,06/20/19 00:35,"427 8th St, Los Angeles, CA 90001" -217100,Bose SoundSport Headphones,1,99.99,06/19/19 12:39,"623 Spruce St, Boston, MA 02215" -217101,AAA Batteries (4-pack),1,2.99,06/19/19 11:43,"883 Cherry St, Los Angeles, CA 90001" -217102,AAA Batteries (4-pack),1,2.99,06/22/19 07:59,"912 Church St, Los Angeles, CA 90001" -217103,AA Batteries (4-pack),1,3.84,06/19/19 08:28,"162 8th St, Atlanta, GA 30301" -217104,USB-C Charging Cable,1,11.95,06/26/19 16:40,"411 Main St, Atlanta, GA 30301" -217105,AAA Batteries (4-pack),1,2.99,06/04/19 12:43,"216 Cedar St, Dallas, TX 75001" -217106,Lightning Charging Cable,1,14.95,06/02/19 20:52,"25 Meadow St, San Francisco, CA 94016" -217107,Wired Headphones,1,11.99,06/07/19 00:29,"432 Maple St, San Francisco, CA 94016" -217108,USB-C Charging Cable,1,11.95,06/15/19 08:51,"617 1st St, Austin, TX 73301" -217109,USB-C Charging Cable,1,11.95,06/14/19 10:36,"587 Park St, Los Angeles, CA 90001" -217110,Lightning Charging Cable,1,14.95,06/29/19 12:31,"325 14th St, San Francisco, CA 94016" -217111,Apple Airpods Headphones,1,150,06/28/19 08:54,"314 South St, Atlanta, GA 30301" -217112,iPhone,1,700,06/27/19 17:05,"481 10th St, Los Angeles, CA 90001" -217113,AAA Batteries (4-pack),1,2.99,06/13/19 19:01,"748 Maple St, Dallas, TX 75001" -217114,AA Batteries (4-pack),1,3.84,06/01/19 07:16,"514 Jackson St, Dallas, TX 75001" -217115,Bose SoundSport Headphones,1,99.99,06/12/19 19:18,"308 Sunset St, Boston, MA 02215" -217116,AA Batteries (4-pack),1,3.84,06/21/19 07:02,"699 9th St, Austin, TX 73301" -217117,Lightning Charging Cable,1,14.95,06/27/19 11:55,"348 7th St, Los Angeles, CA 90001" -217118,USB-C Charging Cable,1,11.95,06/01/19 22:16,"873 Dogwood St, Atlanta, GA 30301" -217119,USB-C Charging Cable,1,11.95,06/12/19 17:14,"26 Wilson St, Boston, MA 02215" -217120,27in FHD Monitor,1,149.99,06/10/19 13:16,"453 North St, Atlanta, GA 30301" -217121,34in Ultrawide Monitor,1,379.99,06/09/19 16:41,"11 Church St, Dallas, TX 75001" -217122,Macbook Pro Laptop,1,1700,06/18/19 19:31,"683 Spruce St, Los Angeles, CA 90001" -217123,27in FHD Monitor,1,149.99,06/16/19 09:16,"666 South St, New York City, NY 10001" -217124,Wired Headphones,1,11.99,06/09/19 17:00,"416 Lakeview St, Seattle, WA 98101" -217125,AAA Batteries (4-pack),1,2.99,06/22/19 18:47,"738 North St, Seattle, WA 98101" -217126,Lightning Charging Cable,1,14.95,06/07/19 23:56,"667 Wilson St, Atlanta, GA 30301" -217127,Lightning Charging Cable,1,14.95,06/11/19 21:31,"188 Dogwood St, Atlanta, GA 30301" -217128,Bose SoundSport Headphones,1,99.99,06/21/19 22:30,"345 Jefferson St, Boston, MA 02215" -217129,Macbook Pro Laptop,1,1700,06/13/19 10:28,"983 13th St, San Francisco, CA 94016" -217130,Flatscreen TV,1,300,06/18/19 12:22,"220 Madison St, San Francisco, CA 94016" -217131,Vareebadd Phone,1,400,06/30/19 04:01,"445 Jefferson St, Boston, MA 02215" -217132,AAA Batteries (4-pack),1,2.99,06/03/19 21:16,"785 Park St, Dallas, TX 75001" -217133,USB-C Charging Cable,1,11.95,06/10/19 20:29,"334 Madison St, New York City, NY 10001" -217134,Flatscreen TV,1,300,06/09/19 08:06,"104 River St, San Francisco, CA 94016" -217135,Bose SoundSport Headphones,1,99.99,06/01/19 21:00,"536 Spruce St, Atlanta, GA 30301" -217136,iPhone,1,700,06/21/19 14:43,"749 Jackson St, Austin, TX 73301" -217137,Lightning Charging Cable,1,14.95,06/08/19 14:32,"378 1st St, San Francisco, CA 94016" -217138,Lightning Charging Cable,1,14.95,06/11/19 11:44,"637 Cedar St, New York City, NY 10001" -217139,20in Monitor,1,109.99,06/25/19 19:52,"310 4th St, Los Angeles, CA 90001" -217140,ThinkPad Laptop,1,999.99,06/08/19 12:21,"313 5th St, Atlanta, GA 30301" -217141,Bose SoundSport Headphones,1,99.99,06/16/19 18:01,"505 Center St, Los Angeles, CA 90001" -217142,USB-C Charging Cable,1,11.95,06/16/19 00:37,"839 Center St, Seattle, WA 98101" -217143,34in Ultrawide Monitor,1,379.99,06/14/19 17:30,"844 Madison St, Austin, TX 73301" -217144,AAA Batteries (4-pack),1,2.99,06/03/19 07:32,"268 4th St, San Francisco, CA 94016" -217145,USB-C Charging Cable,1,11.95,06/27/19 19:40,"641 4th St, Los Angeles, CA 90001" -217146,Google Phone,1,600,06/01/19 12:53,"118 Cedar St, Portland, OR 97035" -217147,Apple Airpods Headphones,1,150,06/03/19 10:03,"75 Center St, Portland, OR 97035" -217148,Lightning Charging Cable,1,14.95,06/20/19 17:48,"714 Willow St, Atlanta, GA 30301" -217149,Lightning Charging Cable,1,14.95,06/29/19 19:02,"911 South St, Austin, TX 73301" -217150,Bose SoundSport Headphones,1,99.99,06/14/19 17:56,"239 North St, Los Angeles, CA 90001" -217151,AAA Batteries (4-pack),1,2.99,06/01/19 20:23,"557 Lake St, San Francisco, CA 94016" -217152,Bose SoundSport Headphones,1,99.99,06/29/19 22:18,"710 Madison St, Dallas, TX 75001" -217153,20in Monitor,1,109.99,06/19/19 22:06,"321 4th St, San Francisco, CA 94016" -217154,27in FHD Monitor,1,149.99,06/03/19 19:13,"98 North St, Atlanta, GA 30301" -217155,iPhone,1,700,06/30/19 13:31,"869 Cedar St, Dallas, TX 75001" -217156,Apple Airpods Headphones,1,150,06/18/19 00:13,"152 Center St, New York City, NY 10001" -217157,Lightning Charging Cable,1,14.95,06/13/19 10:20,"903 Washington St, Atlanta, GA 30301" -217158,34in Ultrawide Monitor,1,379.99,06/21/19 12:46,"762 Willow St, Los Angeles, CA 90001" -217159,Bose SoundSport Headphones,1,99.99,06/24/19 19:44,"793 Hickory St, New York City, NY 10001" -217160,Bose SoundSport Headphones,1,99.99,06/28/19 22:58,"491 Park St, San Francisco, CA 94016" -217161,Bose SoundSport Headphones,1,99.99,06/16/19 15:31,"932 Washington St, San Francisco, CA 94016" -217162,AA Batteries (4-pack),5,3.84,06/12/19 21:06,"130 Dogwood St, Boston, MA 02215" -217163,Wired Headphones,2,11.99,06/08/19 22:20,"127 Hickory St, Dallas, TX 75001" -217164,Wired Headphones,1,11.99,06/29/19 09:50,"606 Highland St, San Francisco, CA 94016" -217165,27in 4K Gaming Monitor,1,389.99,06/14/19 08:10,"783 Willow St, San Francisco, CA 94016" -217166,Apple Airpods Headphones,1,150,06/15/19 19:25,"670 Church St, Boston, MA 02215" -217167,USB-C Charging Cable,2,11.95,06/21/19 23:25,"707 Hickory St, San Francisco, CA 94016" -217168,AAA Batteries (4-pack),1,2.99,06/01/19 23:37,"70 6th St, New York City, NY 10001" -217169,Apple Airpods Headphones,1,150,06/27/19 18:35,"85 Jackson St, San Francisco, CA 94016" -217169,ThinkPad Laptop,1,999.99,06/27/19 18:35,"85 Jackson St, San Francisco, CA 94016" -217170,Apple Airpods Headphones,1,150,06/12/19 16:09,"993 Lincoln St, Boston, MA 02215" -217171,iPhone,1,700,06/05/19 04:50,"104 10th St, Boston, MA 02215" -217172,27in FHD Monitor,1,149.99,06/07/19 08:17,"51 Cherry St, Austin, TX 73301" -217173,Lightning Charging Cable,1,14.95,06/23/19 01:53,"145 9th St, San Francisco, CA 94016" -217174,Lightning Charging Cable,1,14.95,06/21/19 10:18,"856 Jackson St, San Francisco, CA 94016" -217175,Flatscreen TV,1,300,06/30/19 11:24,"847 Highland St, Los Angeles, CA 90001" -217176,USB-C Charging Cable,1,11.95,06/07/19 14:55,"263 8th St, San Francisco, CA 94016" -217177,iPhone,1,700,06/24/19 03:13,"980 Meadow St, San Francisco, CA 94016" -217178,34in Ultrawide Monitor,1,379.99,06/22/19 10:48,"751 Adams St, Los Angeles, CA 90001" -217179,Bose SoundSport Headphones,1,99.99,06/16/19 13:16,"531 Ridge St, Portland, ME 04101" -217180,USB-C Charging Cable,1,11.95,06/23/19 23:05,"77 Jackson St, Boston, MA 02215" -217181,Lightning Charging Cable,1,14.95,06/26/19 13:01,"877 7th St, San Francisco, CA 94016" -217182,Wired Headphones,1,11.99,06/02/19 10:36,"79 Church St, New York City, NY 10001" -217183,AAA Batteries (4-pack),1,2.99,06/13/19 19:37,"53 8th St, San Francisco, CA 94016" -217184,Macbook Pro Laptop,1,1700,06/07/19 18:55,"688 7th St, Portland, OR 97035" -217185,AAA Batteries (4-pack),2,2.99,06/03/19 19:28,"170 6th St, San Francisco, CA 94016" -217185,Bose SoundSport Headphones,1,99.99,06/03/19 19:28,"170 6th St, San Francisco, CA 94016" -217186,Apple Airpods Headphones,1,150,06/09/19 16:19,"551 Main St, San Francisco, CA 94016" -217187,USB-C Charging Cable,1,11.95,06/05/19 13:32,"453 Highland St, San Francisco, CA 94016" -217188,Lightning Charging Cable,1,14.95,06/17/19 10:45,"236 Jackson St, Dallas, TX 75001" -217189,Lightning Charging Cable,1,14.95,06/24/19 11:53,"347 2nd St, Seattle, WA 98101" -217190,Apple Airpods Headphones,1,150,06/01/19 23:20,"543 Lakeview St, San Francisco, CA 94016" -217191,Lightning Charging Cable,1,14.95,06/17/19 12:05,"390 6th St, Los Angeles, CA 90001" -217192,AAA Batteries (4-pack),3,2.99,06/05/19 14:48,"611 Washington St, San Francisco, CA 94016" -217193,Apple Airpods Headphones,1,150,06/16/19 16:04,"612 Dogwood St, Los Angeles, CA 90001" -217194,AAA Batteries (4-pack),3,2.99,06/21/19 09:35,"687 Dogwood St, Seattle, WA 98101" -217195,AA Batteries (4-pack),1,3.84,06/26/19 22:02,"953 Meadow St, Los Angeles, CA 90001" -217196,AA Batteries (4-pack),2,3.84,06/19/19 02:46,"858 Lake St, San Francisco, CA 94016" -217197,iPhone,1,700,06/03/19 11:57,"339 14th St, Dallas, TX 75001" -217198,iPhone,1,700,06/21/19 11:13,"15 West St, Austin, TX 73301" -217199,AA Batteries (4-pack),1,3.84,06/04/19 18:45,"192 Highland St, San Francisco, CA 94016" -217200,Lightning Charging Cable,1,14.95,06/28/19 20:47,"659 Willow St, San Francisco, CA 94016" -217201,Lightning Charging Cable,1,14.95,06/13/19 21:58,"718 Forest St, Boston, MA 02215" -217202,USB-C Charging Cable,1,11.95,06/29/19 22:46,"491 7th St, Atlanta, GA 30301" -217203,Lightning Charging Cable,1,14.95,06/14/19 08:37,"768 Hickory St, Boston, MA 02215" -217204,AA Batteries (4-pack),1,3.84,06/12/19 15:53,"336 10th St, San Francisco, CA 94016" -217205,iPhone,1,700,06/01/19 13:09,"114 Lakeview St, Los Angeles, CA 90001" -217206,AAA Batteries (4-pack),1,2.99,06/13/19 10:51,"477 5th St, Dallas, TX 75001" -217207,Wired Headphones,1,11.99,06/15/19 14:06,"628 Jefferson St, Atlanta, GA 30301" -217208,Wired Headphones,1,11.99,06/13/19 22:45,"963 River St, Boston, MA 02215" -217209,Lightning Charging Cable,1,14.95,06/09/19 20:08,"342 11th St, Seattle, WA 98101" -217210,Apple Airpods Headphones,1,150,06/11/19 15:31,"258 10th St, Boston, MA 02215" -217210,Apple Airpods Headphones,1,150,06/11/19 15:31,"258 10th St, Boston, MA 02215" -217211,Lightning Charging Cable,1,14.95,06/19/19 17:48,"320 Madison St, San Francisco, CA 94016" -217212,27in FHD Monitor,1,149.99,06/21/19 15:21,"563 Center St, Portland, OR 97035" -217213,27in 4K Gaming Monitor,1,389.99,06/29/19 20:13,"575 7th St, Los Angeles, CA 90001" -217214,iPhone,1,700,06/10/19 10:26,"505 Chestnut St, Austin, TX 73301" -217215,USB-C Charging Cable,1,11.95,06/11/19 23:09,"963 14th St, New York City, NY 10001" -217216,AAA Batteries (4-pack),2,2.99,06/02/19 13:49,"742 11th St, San Francisco, CA 94016" -217217,AA Batteries (4-pack),1,3.84,06/23/19 00:00,"291 Dogwood St, San Francisco, CA 94016" -217218,Apple Airpods Headphones,1,150,06/11/19 10:32,"670 11th St, Austin, TX 73301" -217219,Lightning Charging Cable,1,14.95,06/08/19 20:47,"821 9th St, San Francisco, CA 94016" -217220,Google Phone,1,600,06/21/19 21:47,"835 Hill St, Boston, MA 02215" -217221,USB-C Charging Cable,1,11.95,06/01/19 19:00,"734 Adams St, San Francisco, CA 94016" -217222,USB-C Charging Cable,1,11.95,06/17/19 22:31,"808 River St, Dallas, TX 75001" -217223,27in 4K Gaming Monitor,1,389.99,06/12/19 20:07,"347 Willow St, Dallas, TX 75001" -217224,20in Monitor,1,109.99,06/26/19 11:02,"639 2nd St, Los Angeles, CA 90001" -217225,Apple Airpods Headphones,1,150,06/13/19 05:26,"193 Forest St, San Francisco, CA 94016" -217226,Bose SoundSport Headphones,1,99.99,06/02/19 18:07,"918 5th St, Boston, MA 02215" -217227,Bose SoundSport Headphones,1,99.99,06/17/19 19:21,"322 Hill St, New York City, NY 10001" -217228,Lightning Charging Cable,1,14.95,06/27/19 18:33,"702 Forest St, Dallas, TX 75001" -217229,AAA Batteries (4-pack),3,2.99,06/29/19 16:21,"616 Center St, San Francisco, CA 94016" -217230,Wired Headphones,1,11.99,06/13/19 18:48,"786 13th St, Boston, MA 02215" -217231,Vareebadd Phone,1,400,06/18/19 07:55,"340 Church St, Boston, MA 02215" -217232,Lightning Charging Cable,1,14.95,06/24/19 20:23,"388 Spruce St, Boston, MA 02215" -217233,27in 4K Gaming Monitor,1,389.99,06/22/19 01:58,"776 Washington St, Los Angeles, CA 90001" -217234,AA Batteries (4-pack),1,3.84,06/30/19 08:27,"567 Maple St, San Francisco, CA 94016" -217235,AAA Batteries (4-pack),3,2.99,06/17/19 23:55,"230 Pine St, San Francisco, CA 94016" -217236,AA Batteries (4-pack),1,3.84,06/27/19 11:49,"405 6th St, Boston, MA 02215" -217237,AA Batteries (4-pack),2,3.84,06/25/19 11:00,"823 Walnut St, New York City, NY 10001" -217238,27in FHD Monitor,1,149.99,06/22/19 08:26,"269 River St, Austin, TX 73301" -217239,20in Monitor,1,109.99,06/21/19 21:04,"940 Pine St, New York City, NY 10001" -217240,iPhone,1,700,06/24/19 18:55,"921 Main St, Los Angeles, CA 90001" -217241,AA Batteries (4-pack),1,3.84,06/14/19 13:52,"887 11th St, San Francisco, CA 94016" -217242,ThinkPad Laptop,1,999.99,06/28/19 14:47,"982 Main St, Los Angeles, CA 90001" -217243,Lightning Charging Cable,1,14.95,06/24/19 23:38,"340 Park St, Portland, ME 04101" -217244,USB-C Charging Cable,1,11.95,06/25/19 13:14,"746 Lincoln St, New York City, NY 10001" -217245,Bose SoundSport Headphones,1,99.99,06/30/19 16:21,"872 Center St, Los Angeles, CA 90001" -217246,AAA Batteries (4-pack),2,2.99,06/25/19 21:14,"134 Spruce St, Los Angeles, CA 90001" -217247,AAA Batteries (4-pack),1,2.99,06/29/19 22:28,"342 13th St, New York City, NY 10001" -217248,Vareebadd Phone,1,400,06/11/19 21:57,"243 Lake St, Atlanta, GA 30301" -217249,Wired Headphones,1,11.99,06/20/19 18:08,"900 Cedar St, San Francisco, CA 94016" -217250,Lightning Charging Cable,1,14.95,06/13/19 23:07,"704 Pine St, New York City, NY 10001" -217251,Bose SoundSport Headphones,1,99.99,06/24/19 04:59,"818 South St, Los Angeles, CA 90001" -217252,Apple Airpods Headphones,1,150,06/26/19 09:02,"832 Hill St, Boston, MA 02215" -217253,Bose SoundSport Headphones,1,99.99,06/12/19 21:28,"591 River St, San Francisco, CA 94016" -217254,27in 4K Gaming Monitor,1,389.99,06/05/19 16:01,"554 2nd St, Seattle, WA 98101" -217255,Wired Headphones,1,11.99,06/23/19 10:25,"50 Jackson St, Seattle, WA 98101" -217256,20in Monitor,1,109.99,06/26/19 16:06,"584 River St, Austin, TX 73301" -217257,34in Ultrawide Monitor,1,379.99,06/15/19 21:40,"705 12th St, Los Angeles, CA 90001" -217258,USB-C Charging Cable,2,11.95,06/18/19 12:25,"336 Hickory St, Los Angeles, CA 90001" -217259,Lightning Charging Cable,1,14.95,06/08/19 07:18,"632 Ridge St, Atlanta, GA 30301" -217260,Wired Headphones,1,11.99,06/19/19 21:03,"147 Cedar St, Dallas, TX 75001" -217261,AAA Batteries (4-pack),1,2.99,06/20/19 11:27,"905 Park St, Seattle, WA 98101" -217262,Apple Airpods Headphones,1,150,06/04/19 11:00,"487 Jackson St, Dallas, TX 75001" -217263,Macbook Pro Laptop,1,1700,06/18/19 17:08,"163 Maple St, Dallas, TX 75001" -217264,AA Batteries (4-pack),2,3.84,06/20/19 10:28,"452 8th St, Dallas, TX 75001" -217265,iPhone,1,700,06/06/19 00:39,"766 5th St, San Francisco, CA 94016" -217266,Lightning Charging Cable,1,14.95,06/12/19 13:30,"594 2nd St, San Francisco, CA 94016" -217267,Lightning Charging Cable,1,14.95,06/10/19 19:52,"791 10th St, Dallas, TX 75001" -217268,Vareebadd Phone,1,400,06/25/19 12:10,"147 1st St, San Francisco, CA 94016" -217269,Lightning Charging Cable,1,14.95,06/29/19 09:26,"899 7th St, Boston, MA 02215" -217270,AA Batteries (4-pack),2,3.84,06/01/19 19:22,"575 River St, New York City, NY 10001" -217271,Bose SoundSport Headphones,1,99.99,06/05/19 12:11,"231 Adams St, Portland, OR 97035" -217272,AA Batteries (4-pack),1,3.84,06/15/19 16:16,"191 Pine St, San Francisco, CA 94016" -217273,Lightning Charging Cable,2,14.95,06/21/19 14:43,"201 Washington St, San Francisco, CA 94016" -217274,AAA Batteries (4-pack),1,2.99,06/06/19 14:46,"371 River St, Los Angeles, CA 90001" -217274,Wired Headphones,1,11.99,06/06/19 14:46,"371 River St, Los Angeles, CA 90001" -217275,Wired Headphones,1,11.99,06/03/19 20:49,"174 Spruce St, Los Angeles, CA 90001" -217276,Google Phone,1,600,06/03/19 11:59,"979 Wilson St, Boston, MA 02215" -217277,AA Batteries (4-pack),1,3.84,06/14/19 16:46,"726 5th St, Dallas, TX 75001" -217278,ThinkPad Laptop,1,999.99,06/26/19 11:58,"725 Spruce St, Austin, TX 73301" -217279,Wired Headphones,1,11.99,06/10/19 01:14,"666 Hickory St, San Francisco, CA 94016" -217280,Wired Headphones,1,11.99,06/03/19 12:54,"779 Cedar St, New York City, NY 10001" -217281,Apple Airpods Headphones,1,150,06/08/19 21:13,"102 7th St, Atlanta, GA 30301" -217282,AA Batteries (4-pack),1,3.84,06/02/19 20:14,"455 Dogwood St, San Francisco, CA 94016" -217283,Apple Airpods Headphones,1,150,06/09/19 10:13,"566 Wilson St, Boston, MA 02215" -217284,Wired Headphones,1,11.99,06/26/19 12:09,"223 Cedar St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -217285,27in 4K Gaming Monitor,1,389.99,06/06/19 20:22,"72 Washington St, San Francisco, CA 94016" -217286,Bose SoundSport Headphones,1,99.99,06/29/19 08:43,"371 Elm St, San Francisco, CA 94016" -217287,Flatscreen TV,1,300,06/03/19 19:58,"10 Walnut St, Los Angeles, CA 90001" -217288,20in Monitor,1,109.99,06/05/19 19:46,"775 Cedar St, Boston, MA 02215" -217289,Wired Headphones,1,11.99,06/21/19 22:59,"487 Church St, Los Angeles, CA 90001" -217290,Wired Headphones,1,11.99,06/23/19 20:42,"170 Park St, San Francisco, CA 94016" -217291,USB-C Charging Cable,1,11.95,06/21/19 11:23,"715 8th St, San Francisco, CA 94016" -217292,Flatscreen TV,1,300,06/23/19 20:10,"461 1st St, San Francisco, CA 94016" -217293,Lightning Charging Cable,1,14.95,06/19/19 19:05,"996 Forest St, Boston, MA 02215" -217294,34in Ultrawide Monitor,1,379.99,06/05/19 09:30,"336 Washington St, Los Angeles, CA 90001" -217295,ThinkPad Laptop,1,999.99,06/13/19 17:39,"89 River St, Austin, TX 73301" -217296,Apple Airpods Headphones,1,150,06/17/19 14:00,"529 Jefferson St, Atlanta, GA 30301" -217297,USB-C Charging Cable,1,11.95,06/26/19 00:07,"899 Pine St, San Francisco, CA 94016" -217298,Bose SoundSport Headphones,1,99.99,06/07/19 23:25,"132 4th St, Boston, MA 02215" -217299,Bose SoundSport Headphones,1,99.99,06/25/19 12:01,"507 Lincoln St, Boston, MA 02215" -217300,Google Phone,1,600,06/15/19 15:35,"646 Hill St, Dallas, TX 75001" -217301,AAA Batteries (4-pack),1,2.99,06/04/19 11:48,"281 Madison St, Dallas, TX 75001" -217302,Vareebadd Phone,1,400,06/22/19 21:48,"115 North St, Boston, MA 02215" -217302,Bose SoundSport Headphones,1,99.99,06/22/19 21:48,"115 North St, Boston, MA 02215" -217303,AAA Batteries (4-pack),2,2.99,06/20/19 13:31,"319 Hickory St, Dallas, TX 75001" -217304,USB-C Charging Cable,1,11.95,06/24/19 18:49,"761 2nd St, San Francisco, CA 94016" -217305,Lightning Charging Cable,1,14.95,06/07/19 22:37,"451 Forest St, Seattle, WA 98101" -217306,AAA Batteries (4-pack),1,2.99,06/05/19 19:42,"316 River St, Atlanta, GA 30301" -217307,Lightning Charging Cable,1,14.95,06/27/19 01:52,"764 Center St, Seattle, WA 98101" -217308,Bose SoundSport Headphones,1,99.99,06/20/19 20:58,"567 Elm St, New York City, NY 10001" -217309,Lightning Charging Cable,1,14.95,06/08/19 16:54,"841 Park St, Atlanta, GA 30301" -217310,AA Batteries (4-pack),1,3.84,06/21/19 23:41,"495 Church St, Los Angeles, CA 90001" -217311,AA Batteries (4-pack),1,3.84,06/25/19 18:32,"588 Cherry St, San Francisco, CA 94016" -217312,Bose SoundSport Headphones,1,99.99,06/01/19 19:40,"473 6th St, Austin, TX 73301" -217313,Wired Headphones,1,11.99,06/29/19 20:37,"781 Madison St, San Francisco, CA 94016" -217314,Bose SoundSport Headphones,1,99.99,06/10/19 21:42,"496 Hickory St, Boston, MA 02215" -217315,Macbook Pro Laptop,1,1700,06/11/19 16:54,"578 12th St, New York City, NY 10001" -217316,Bose SoundSport Headphones,1,99.99,06/02/19 11:52,"967 Ridge St, San Francisco, CA 94016" -217317,AAA Batteries (4-pack),1,2.99,06/19/19 09:29,"223 Willow St, Los Angeles, CA 90001" -217318,Bose SoundSport Headphones,1,99.99,06/17/19 21:59,"31 13th St, Dallas, TX 75001" -217319,Wired Headphones,1,11.99,06/06/19 08:09,"571 14th St, Seattle, WA 98101" -217320,Macbook Pro Laptop,1,1700,06/03/19 19:40,"169 12th St, Boston, MA 02215" -217321,USB-C Charging Cable,1,11.95,06/22/19 01:48,"505 Walnut St, Dallas, TX 75001" -217322,Macbook Pro Laptop,1,1700,06/10/19 19:10,"744 North St, San Francisco, CA 94016" -217323,Lightning Charging Cable,1,14.95,06/16/19 22:02,"761 10th St, Boston, MA 02215" -217324,Lightning Charging Cable,1,14.95,06/15/19 01:12,"915 Meadow St, Austin, TX 73301" -217325,USB-C Charging Cable,1,11.95,06/10/19 16:52,"162 Cedar St, San Francisco, CA 94016" -217326,Flatscreen TV,1,300,06/11/19 17:29,"488 12th St, Seattle, WA 98101" -217327,AAA Batteries (4-pack),4,2.99,06/03/19 11:07,"862 Center St, Portland, OR 97035" -217328,LG Washing Machine,1,600.0,06/21/19 12:48,"136 8th St, New York City, NY 10001" -217329,Lightning Charging Cable,1,14.95,06/02/19 10:14,"429 Chestnut St, Boston, MA 02215" -217330,Apple Airpods Headphones,1,150,06/24/19 02:01,"949 Highland St, Dallas, TX 75001" -217331,USB-C Charging Cable,2,11.95,06/22/19 16:13,"413 Spruce St, San Francisco, CA 94016" -217332,AA Batteries (4-pack),1,3.84,06/27/19 14:40,"749 Dogwood St, Atlanta, GA 30301" -217333,Lightning Charging Cable,2,14.95,06/19/19 03:07,"358 Jefferson St, Boston, MA 02215" -217334,Bose SoundSport Headphones,1,99.99,06/03/19 19:14,"26 9th St, New York City, NY 10001" -217335,27in 4K Gaming Monitor,1,389.99,06/06/19 01:47,"410 Highland St, Los Angeles, CA 90001" -217336,AAA Batteries (4-pack),2,2.99,06/18/19 11:17,"997 Jackson St, Portland, OR 97035" -217337,Wired Headphones,1,11.99,06/02/19 21:14,"963 4th St, Portland, OR 97035" -217338,Wired Headphones,1,11.99,06/01/19 16:23,"893 7th St, Atlanta, GA 30301" -217339,Bose SoundSport Headphones,1,99.99,06/08/19 12:54,"376 Ridge St, Seattle, WA 98101" -217340,Apple Airpods Headphones,1,150,06/19/19 13:54,"560 Cedar St, San Francisco, CA 94016" -217341,Apple Airpods Headphones,1,150,06/28/19 19:06,"777 Walnut St, Portland, OR 97035" -217342,Flatscreen TV,1,300,06/12/19 16:56,"593 Johnson St, Dallas, TX 75001" -217343,AAA Batteries (4-pack),2,2.99,06/06/19 10:17,"706 12th St, San Francisco, CA 94016" -217344,USB-C Charging Cable,1,11.95,06/05/19 09:56,"401 4th St, Boston, MA 02215" -217345,Macbook Pro Laptop,1,1700,06/01/19 12:17,"718 Main St, Seattle, WA 98101" -217346,USB-C Charging Cable,1,11.95,06/08/19 23:39,"304 Center St, Austin, TX 73301" -217347,AAA Batteries (4-pack),3,2.99,06/05/19 08:14,"636 Dogwood St, Dallas, TX 75001" -217348,AA Batteries (4-pack),1,3.84,06/20/19 23:22,"690 Hickory St, San Francisco, CA 94016" -217349,AA Batteries (4-pack),1,3.84,06/12/19 19:20,"607 1st St, Los Angeles, CA 90001" -217350,AAA Batteries (4-pack),1,2.99,06/28/19 11:50,"184 Hill St, Portland, ME 04101" -217351,Macbook Pro Laptop,1,1700,06/27/19 06:47,"181 14th St, San Francisco, CA 94016" -217352,ThinkPad Laptop,1,999.99,06/18/19 08:36,"729 5th St, San Francisco, CA 94016" -217353,27in FHD Monitor,1,149.99,06/15/19 18:25,"206 6th St, San Francisco, CA 94016" -217354,Bose SoundSport Headphones,1,99.99,06/16/19 18:40,"260 Pine St, San Francisco, CA 94016" -217355,Wired Headphones,1,11.99,06/21/19 11:14,"262 Lakeview St, San Francisco, CA 94016" -217356,USB-C Charging Cable,1,11.95,06/23/19 19:08,"799 7th St, Boston, MA 02215" -217357,AAA Batteries (4-pack),2,2.99,06/08/19 20:06,"544 Main St, Portland, OR 97035" -217358,AAA Batteries (4-pack),3,2.99,06/04/19 17:53,"300 Pine St, Portland, OR 97035" -217359,Apple Airpods Headphones,1,150,06/03/19 23:55,"878 Lake St, Atlanta, GA 30301" -217360,iPhone,1,700,06/23/19 21:53,"602 Meadow St, Los Angeles, CA 90001" -217360,Apple Airpods Headphones,1,150,06/23/19 21:53,"602 Meadow St, Los Angeles, CA 90001" -217360,Wired Headphones,1,11.99,06/23/19 21:53,"602 Meadow St, Los Angeles, CA 90001" -217361,Lightning Charging Cable,1,14.95,06/03/19 21:16,"414 Forest St, Boston, MA 02215" -217362,iPhone,1,700,06/23/19 10:37,"652 Chestnut St, San Francisco, CA 94016" -217363,AAA Batteries (4-pack),1,2.99,06/01/19 16:14,"640 Sunset St, Portland, ME 04101" -217364,Wired Headphones,1,11.99,06/22/19 16:03,"510 Lakeview St, New York City, NY 10001" -217365,AA Batteries (4-pack),1,3.84,06/20/19 08:10,"91 5th St, Seattle, WA 98101" -217366,34in Ultrawide Monitor,1,379.99,06/20/19 18:05,"606 West St, Atlanta, GA 30301" -217367,Lightning Charging Cable,1,14.95,06/28/19 19:07,"414 Lakeview St, Dallas, TX 75001" -217368,Macbook Pro Laptop,1,1700,06/01/19 20:41,"305 14th St, Atlanta, GA 30301" -217369,AA Batteries (4-pack),2,3.84,06/21/19 11:29,"122 4th St, San Francisco, CA 94016" -217370,Lightning Charging Cable,2,14.95,06/20/19 18:11,"243 5th St, New York City, NY 10001" -217371,USB-C Charging Cable,1,11.95,06/13/19 16:00,"771 Cherry St, Atlanta, GA 30301" -217372,Bose SoundSport Headphones,1,99.99,06/19/19 12:26,"335 Spruce St, San Francisco, CA 94016" -217373,Wired Headphones,1,11.99,06/30/19 14:34,"953 Center St, Boston, MA 02215" -217374,Lightning Charging Cable,2,14.95,06/27/19 22:14,"530 12th St, Dallas, TX 75001" -217375,AA Batteries (4-pack),1,3.84,06/20/19 16:10,"843 Park St, San Francisco, CA 94016" -217376,AA Batteries (4-pack),1,3.84,06/22/19 22:09,"239 2nd St, Dallas, TX 75001" -217377,AAA Batteries (4-pack),1,2.99,06/05/19 23:28,"915 Park St, Atlanta, GA 30301" -217378,Apple Airpods Headphones,1,150,06/23/19 07:22,"370 14th St, Los Angeles, CA 90001" -217379,Apple Airpods Headphones,1,150,06/06/19 21:12,"488 Cherry St, Portland, OR 97035" -217380,AAA Batteries (4-pack),2,2.99,06/29/19 07:36,"216 7th St, Portland, ME 04101" -217381,27in 4K Gaming Monitor,1,389.99,06/25/19 12:06,"90 14th St, New York City, NY 10001" -217382,AA Batteries (4-pack),1,3.84,06/14/19 09:04,"717 West St, Boston, MA 02215" -217383,Wired Headphones,1,11.99,06/02/19 18:24,"81 Forest St, Seattle, WA 98101" -217384,20in Monitor,1,109.99,06/06/19 09:42,"502 Maple St, Los Angeles, CA 90001" -217385,Flatscreen TV,1,300,06/15/19 14:25,"899 Park St, Los Angeles, CA 90001" -217386,USB-C Charging Cable,1,11.95,06/09/19 02:13,"586 Willow St, Atlanta, GA 30301" -217387,Lightning Charging Cable,1,14.95,06/18/19 12:16,"85 Cherry St, Atlanta, GA 30301" -217388,AAA Batteries (4-pack),2,2.99,06/01/19 11:47,"13 Forest St, Portland, OR 97035" -217389,Lightning Charging Cable,1,14.95,06/07/19 15:35,"643 Elm St, Austin, TX 73301" -217390,Flatscreen TV,1,300,06/28/19 21:57,"553 Center St, San Francisco, CA 94016" -217391,27in FHD Monitor,1,149.99,06/26/19 01:01,"376 Cedar St, Los Angeles, CA 90001" -217392,27in FHD Monitor,1,149.99,06/14/19 20:44,"430 Cherry St, Portland, OR 97035" -217393,AA Batteries (4-pack),1,3.84,06/13/19 23:44,"211 South St, Boston, MA 02215" -217394,Bose SoundSport Headphones,1,99.99,06/10/19 13:00,"739 Jefferson St, Los Angeles, CA 90001" -217395,Apple Airpods Headphones,1,150,06/14/19 20:57,"209 11th St, New York City, NY 10001" -217396,Wired Headphones,1,11.99,06/05/19 21:57,"767 Cedar St, Seattle, WA 98101" -217397,AA Batteries (4-pack),1,3.84,06/30/19 09:56,"846 West St, Seattle, WA 98101" -217398,Apple Airpods Headphones,1,150,06/15/19 22:02,"30 Washington St, Boston, MA 02215" -217399,Apple Airpods Headphones,1,150,06/22/19 13:26,"264 Jefferson St, San Francisco, CA 94016" -217400,AA Batteries (4-pack),1,3.84,06/30/19 21:05,"715 Church St, Seattle, WA 98101" -217401,AA Batteries (4-pack),1,3.84,06/19/19 21:30,"918 South St, New York City, NY 10001" -217402,Flatscreen TV,1,300,06/17/19 00:29,"472 Lakeview St, New York City, NY 10001" -217403,Wired Headphones,1,11.99,06/13/19 12:29,"146 Jefferson St, San Francisco, CA 94016" -217404,AA Batteries (4-pack),1,3.84,06/28/19 23:08,"146 Ridge St, San Francisco, CA 94016" -217405,Apple Airpods Headphones,1,150,06/10/19 18:34,"528 Highland St, Boston, MA 02215" -217406,Vareebadd Phone,1,400,06/04/19 19:06,"603 Park St, Portland, OR 97035" -217407,AA Batteries (4-pack),1,3.84,06/28/19 17:34,"505 Lakeview St, San Francisco, CA 94016" -217408,Flatscreen TV,1,300,06/29/19 13:34,"354 West St, New York City, NY 10001" -217409,Apple Airpods Headphones,1,150,06/22/19 15:06,"258 Center St, New York City, NY 10001" -217410,Apple Airpods Headphones,1,150,06/05/19 01:26,"666 Wilson St, San Francisco, CA 94016" -217411,34in Ultrawide Monitor,1,379.99,06/08/19 14:06,"298 14th St, San Francisco, CA 94016" -217412,Bose SoundSport Headphones,1,99.99,06/19/19 03:36,"28 7th St, San Francisco, CA 94016" -217413,AAA Batteries (4-pack),2,2.99,06/28/19 23:06,"134 River St, Los Angeles, CA 90001" -217414,Wired Headphones,1,11.99,06/04/19 22:02,"236 Willow St, Portland, OR 97035" -217415,34in Ultrawide Monitor,1,379.99,06/29/19 21:29,"332 Maple St, New York City, NY 10001" -217416,34in Ultrawide Monitor,1,379.99,06/04/19 08:44,"271 Center St, Boston, MA 02215" -217417,AAA Batteries (4-pack),1,2.99,06/26/19 13:26,"186 Walnut St, New York City, NY 10001" -217418,AA Batteries (4-pack),1,3.84,06/10/19 10:27,"438 Sunset St, Portland, OR 97035" -217419,iPhone,1,700,06/28/19 19:38,"522 South St, Portland, OR 97035" -217420,Google Phone,1,600,06/05/19 22:28,"443 South St, San Francisco, CA 94016" -217421,Wired Headphones,1,11.99,06/04/19 11:10,"660 West St, Atlanta, GA 30301" -217422,Flatscreen TV,1,300,06/23/19 17:35,"227 Spruce St, Seattle, WA 98101" -217423,iPhone,1,700,06/03/19 01:08,"148 Dogwood St, Los Angeles, CA 90001" -217424,Lightning Charging Cable,1,14.95,06/29/19 16:20,"786 Spruce St, Los Angeles, CA 90001" -217425,Wired Headphones,1,11.99,06/05/19 19:39,"514 Jefferson St, San Francisco, CA 94016" -217426,Lightning Charging Cable,1,14.95,06/22/19 23:08,"451 Jackson St, Boston, MA 02215" -217427,USB-C Charging Cable,1,11.95,06/20/19 17:41,"427 Lake St, Boston, MA 02215" -217428,iPhone,1,700,06/25/19 07:53,"390 South St, Los Angeles, CA 90001" -217429,AA Batteries (4-pack),1,3.84,06/09/19 10:45,"865 Church St, Atlanta, GA 30301" -217430,27in 4K Gaming Monitor,1,389.99,06/03/19 19:06,"389 Adams St, Dallas, TX 75001" -217431,iPhone,1,700,06/20/19 16:04,"277 14th St, Dallas, TX 75001" -217432,AA Batteries (4-pack),4,3.84,06/07/19 00:45,"876 7th St, New York City, NY 10001" -217433,20in Monitor,1,109.99,06/08/19 15:57,"173 Center St, Boston, MA 02215" -217434,Bose SoundSport Headphones,1,99.99,06/06/19 08:37,"584 Maple St, Seattle, WA 98101" -217435,USB-C Charging Cable,1,11.95,06/29/19 20:21,"519 Park St, New York City, NY 10001" -217436,iPhone,1,700,06/17/19 15:58,"733 Ridge St, Atlanta, GA 30301" -217437,ThinkPad Laptop,1,999.99,06/28/19 18:05,"887 1st St, San Francisco, CA 94016" -217438,AA Batteries (4-pack),1,3.84,06/21/19 14:22,"860 Jackson St, Boston, MA 02215" -217439,Apple Airpods Headphones,1,150,06/26/19 15:42,"941 Adams St, Los Angeles, CA 90001" -217440,Flatscreen TV,1,300,06/27/19 17:57,"991 Jackson St, Austin, TX 73301" -217441,Apple Airpods Headphones,1,150,06/02/19 17:57,"986 6th St, New York City, NY 10001" -217442,Wired Headphones,1,11.99,06/06/19 13:15,"121 Chestnut St, Dallas, TX 75001" -217443,27in 4K Gaming Monitor,1,389.99,06/20/19 22:29,"212 Dogwood St, San Francisco, CA 94016" -217444,Apple Airpods Headphones,1,150,06/23/19 13:50,"477 12th St, San Francisco, CA 94016" -217445,27in FHD Monitor,1,149.99,06/07/19 01:17,"821 Ridge St, Los Angeles, CA 90001" -217446,AAA Batteries (4-pack),1,2.99,06/25/19 07:08,"676 Sunset St, Boston, MA 02215" -217447,Apple Airpods Headphones,1,150,06/27/19 21:06,"361 4th St, Austin, TX 73301" -217448,AA Batteries (4-pack),1,3.84,06/07/19 12:25,"228 Main St, New York City, NY 10001" -217449,AAA Batteries (4-pack),1,2.99,06/14/19 18:50,"309 Church St, Seattle, WA 98101" -217450,Bose SoundSport Headphones,1,99.99,06/25/19 13:42,"649 Spruce St, Austin, TX 73301" -217451,AAA Batteries (4-pack),1,2.99,06/28/19 22:13,"789 14th St, San Francisco, CA 94016" -217452,USB-C Charging Cable,1,11.95,06/17/19 18:21,"825 Lakeview St, Boston, MA 02215" -217453,AA Batteries (4-pack),1,3.84,06/28/19 12:01,"316 Wilson St, New York City, NY 10001" -217454,USB-C Charging Cable,1,11.95,06/05/19 14:27,"177 12th St, Boston, MA 02215" -217455,Bose SoundSport Headphones,1,99.99,06/10/19 14:51,"652 Lincoln St, San Francisco, CA 94016" -217456,AA Batteries (4-pack),2,3.84,06/13/19 22:25,"399 Cedar St, Austin, TX 73301" -217457,AA Batteries (4-pack),1,3.84,06/06/19 09:40,"777 Hickory St, Boston, MA 02215" -217458,Bose SoundSport Headphones,1,99.99,06/05/19 19:53,"665 6th St, New York City, NY 10001" -217459,Apple Airpods Headphones,1,150,06/23/19 13:22,"424 Cedar St, New York City, NY 10001" -217460,Google Phone,1,600,06/09/19 16:19,"413 8th St, San Francisco, CA 94016" -217460,USB-C Charging Cable,1,11.95,06/09/19 16:19,"413 8th St, San Francisco, CA 94016" -217461,iPhone,1,700,06/01/19 12:14,"592 1st St, Los Angeles, CA 90001" -217462,Wired Headphones,1,11.99,06/06/19 23:31,"323 11th St, Los Angeles, CA 90001" -217463,AAA Batteries (4-pack),1,2.99,06/25/19 10:59,"533 4th St, San Francisco, CA 94016" -217464,Bose SoundSport Headphones,1,99.99,06/28/19 21:16,"944 Willow St, San Francisco, CA 94016" -217465,Apple Airpods Headphones,1,150,06/24/19 15:06,"307 13th St, San Francisco, CA 94016" -217466,Wired Headphones,1,11.99,06/02/19 10:06,"723 Pine St, Los Angeles, CA 90001" -217467,27in 4K Gaming Monitor,1,389.99,06/19/19 18:52,"720 8th St, San Francisco, CA 94016" -217468,Lightning Charging Cable,1,14.95,06/24/19 19:41,"623 Sunset St, Atlanta, GA 30301" -217469,iPhone,1,700,06/15/19 10:05,"678 8th St, New York City, NY 10001" -217469,USB-C Charging Cable,1,11.95,06/15/19 10:05,"678 8th St, New York City, NY 10001" -217470,iPhone,1,700,06/07/19 19:07,"626 10th St, Atlanta, GA 30301" -217471,Macbook Pro Laptop,1,1700,06/09/19 00:00,"844 11th St, Seattle, WA 98101" -217472,iPhone,1,700,06/29/19 11:14,"315 Jackson St, Austin, TX 73301" -217473,AA Batteries (4-pack),1,3.84,06/17/19 19:40,"223 Jefferson St, San Francisco, CA 94016" -217474,AAA Batteries (4-pack),2,2.99,06/09/19 14:43,"751 Jefferson St, Los Angeles, CA 90001" -217475,AA Batteries (4-pack),1,3.84,06/27/19 17:46,"366 Maple St, Atlanta, GA 30301" -217476,USB-C Charging Cable,1,11.95,06/04/19 13:18,"831 Walnut St, San Francisco, CA 94016" -217477,Apple Airpods Headphones,1,150,06/18/19 22:10,"748 7th St, Los Angeles, CA 90001" -217478,Lightning Charging Cable,1,14.95,06/26/19 17:52,"512 12th St, Atlanta, GA 30301" -217479,Lightning Charging Cable,1,14.95,06/27/19 01:59,"969 13th St, Los Angeles, CA 90001" -217480,34in Ultrawide Monitor,1,379.99,06/12/19 19:55,"577 Highland St, Boston, MA 02215" -217481,ThinkPad Laptop,1,999.99,06/07/19 14:38,"663 Adams St, Portland, OR 97035" -217482,27in 4K Gaming Monitor,1,389.99,06/11/19 20:23,"430 Walnut St, New York City, NY 10001" -217483,20in Monitor,1,109.99,06/17/19 10:35,"965 Church St, Austin, TX 73301" -217484,AA Batteries (4-pack),1,3.84,06/26/19 19:20,"829 Cedar St, San Francisco, CA 94016" -217485,AA Batteries (4-pack),1,3.84,06/28/19 01:10,"117 4th St, Atlanta, GA 30301" -217486,USB-C Charging Cable,2,11.95,06/03/19 21:49,"171 Main St, Boston, MA 02215" -217487,USB-C Charging Cable,1,11.95,06/05/19 10:35,"376 7th St, Boston, MA 02215" -217488,AAA Batteries (4-pack),1,2.99,06/24/19 10:33,"28 Pine St, New York City, NY 10001" -217489,Wired Headphones,1,11.99,06/01/19 18:14,"189 Sunset St, Atlanta, GA 30301" -217490,20in Monitor,1,109.99,06/17/19 09:42,"652 River St, Los Angeles, CA 90001" -217491,Apple Airpods Headphones,1,150,06/14/19 12:16,"183 13th St, San Francisco, CA 94016" -217492,Apple Airpods Headphones,1,150,06/04/19 20:45,"312 Maple St, Los Angeles, CA 90001" -217493,20in Monitor,1,109.99,06/23/19 12:30,"71 Lake St, San Francisco, CA 94016" -217494,Bose SoundSport Headphones,1,99.99,06/05/19 10:15,"624 Elm St, San Francisco, CA 94016" -217495,USB-C Charging Cable,1,11.95,06/12/19 19:51,"159 Wilson St, Los Angeles, CA 90001" -217496,Lightning Charging Cable,1,14.95,06/10/19 13:58,"816 Maple St, Austin, TX 73301" -217497,Lightning Charging Cable,1,14.95,06/17/19 07:07,"324 Willow St, Portland, ME 04101" -217498,34in Ultrawide Monitor,1,379.99,06/20/19 20:49,"233 12th St, Los Angeles, CA 90001" -217499,Apple Airpods Headphones,1,150,06/26/19 21:06,"432 Willow St, Seattle, WA 98101" -217500,27in 4K Gaming Monitor,1,389.99,06/04/19 19:04,"940 West St, Los Angeles, CA 90001" -217501,Google Phone,1,600,06/04/19 14:08,"698 South St, Austin, TX 73301" -217502,USB-C Charging Cable,1,11.95,06/19/19 16:49,"156 7th St, Austin, TX 73301" -217503,AA Batteries (4-pack),1,3.84,06/26/19 13:47,"210 8th St, Los Angeles, CA 90001" -217504,USB-C Charging Cable,1,11.95,06/13/19 19:16,"586 Spruce St, Los Angeles, CA 90001" -217505,Wired Headphones,1,11.99,06/24/19 18:20,"201 Cherry St, Boston, MA 02215" -217505,Flatscreen TV,1,300,06/24/19 18:20,"201 Cherry St, Boston, MA 02215" -217506,Google Phone,1,600,06/05/19 11:34,"355 10th St, New York City, NY 10001" -217507,AAA Batteries (4-pack),1,2.99,06/01/19 18:21,"26 Ridge St, San Francisco, CA 94016" -217508,AAA Batteries (4-pack),2,2.99,06/20/19 00:56,"983 West St, Atlanta, GA 30301" -217509,AA Batteries (4-pack),1,3.84,06/10/19 09:57,"111 10th St, Atlanta, GA 30301" -217510,27in FHD Monitor,1,149.99,06/19/19 12:51,"90 Main St, Los Angeles, CA 90001" -217511,27in 4K Gaming Monitor,1,389.99,06/11/19 14:59,"187 Forest St, New York City, NY 10001" -217512,iPhone,1,700,06/12/19 07:20,"970 12th St, Los Angeles, CA 90001" -217513,Wired Headphones,1,11.99,06/10/19 16:25,"245 10th St, San Francisco, CA 94016" -217514,Wired Headphones,1,11.99,06/17/19 12:33,"546 Cedar St, Boston, MA 02215" -217515,27in FHD Monitor,1,149.99,06/10/19 20:07,"529 Sunset St, Seattle, WA 98101" -217516,Bose SoundSport Headphones,1,99.99,06/29/19 04:47,"729 Lakeview St, San Francisco, CA 94016" -217517,Lightning Charging Cable,2,14.95,06/07/19 23:37,"560 Cherry St, Seattle, WA 98101" -217518,Wired Headphones,2,11.99,06/23/19 22:19,"816 North St, Dallas, TX 75001" -217519,USB-C Charging Cable,2,11.95,06/13/19 11:31,"690 North St, Portland, OR 97035" -217520,ThinkPad Laptop,1,999.99,06/25/19 22:20,"393 13th St, Portland, OR 97035" -217521,Lightning Charging Cable,1,14.95,06/01/19 21:18,"298 Elm St, Los Angeles, CA 90001" -217521,Flatscreen TV,1,300,06/01/19 21:18,"298 Elm St, Los Angeles, CA 90001" -217522,USB-C Charging Cable,1,11.95,06/24/19 19:53,"911 Elm St, Portland, OR 97035" -217523,Vareebadd Phone,1,400,06/20/19 10:31,"547 6th St, Austin, TX 73301" -217524,Apple Airpods Headphones,1,150,06/22/19 19:52,"726 Dogwood St, San Francisco, CA 94016" -217525,ThinkPad Laptop,1,999.99,06/03/19 18:30,"137 Hill St, Seattle, WA 98101" -217526,AA Batteries (4-pack),1,3.84,06/24/19 10:37,"394 South St, Los Angeles, CA 90001" -217527,AA Batteries (4-pack),3,3.84,06/28/19 10:07,"82 Adams St, New York City, NY 10001" -217528,AAA Batteries (4-pack),2,2.99,06/30/19 10:45,"308 Walnut St, Portland, ME 04101" -217529,USB-C Charging Cable,1,11.95,06/18/19 10:06,"369 Highland St, San Francisco, CA 94016" -217530,Bose SoundSport Headphones,1,99.99,06/16/19 19:36,"809 Maple St, Boston, MA 02215" -217531,USB-C Charging Cable,1,11.95,06/16/19 22:51,"897 14th St, Boston, MA 02215" -217532,Apple Airpods Headphones,1,150,06/09/19 23:48,"758 Jefferson St, Los Angeles, CA 90001" -217533,Bose SoundSport Headphones,1,99.99,06/24/19 10:04,"101 Highland St, San Francisco, CA 94016" -217534,Wired Headphones,1,11.99,06/29/19 18:27,"360 8th St, San Francisco, CA 94016" -217535,AA Batteries (4-pack),1,3.84,06/05/19 13:46,"336 Jackson St, Dallas, TX 75001" -217536,AA Batteries (4-pack),1,3.84,06/01/19 17:57,"727 Center St, Portland, ME 04101" -217537,AA Batteries (4-pack),2,3.84,06/28/19 07:14,"578 7th St, Portland, ME 04101" -217538,AAA Batteries (4-pack),1,2.99,06/16/19 11:45,"357 South St, Boston, MA 02215" -217539,27in FHD Monitor,1,149.99,06/09/19 12:46,"853 Walnut St, Atlanta, GA 30301" -217540,iPhone,1,700,06/04/19 20:13,"87 Hill St, Los Angeles, CA 90001" -217541,AA Batteries (4-pack),1,3.84,06/03/19 10:20,"109 Sunset St, Atlanta, GA 30301" -217542,Bose SoundSport Headphones,1,99.99,06/12/19 12:16,"805 Hill St, Dallas, TX 75001" -217543,iPhone,1,700,06/22/19 12:23,"666 Hill St, Atlanta, GA 30301" -217544,Lightning Charging Cable,1,14.95,06/07/19 13:29,"457 Spruce St, New York City, NY 10001" -217545,USB-C Charging Cable,1,11.95,06/22/19 15:31,"297 River St, Los Angeles, CA 90001" -217546,Wired Headphones,1,11.99,06/09/19 16:08,"663 Madison St, Dallas, TX 75001" -217547,27in FHD Monitor,1,149.99,06/13/19 12:35,"111 Wilson St, New York City, NY 10001" -217548,AA Batteries (4-pack),3,3.84,06/10/19 12:18,"825 1st St, Los Angeles, CA 90001" -217549,USB-C Charging Cable,1,11.95,06/30/19 04:05,"61 Sunset St, New York City, NY 10001" -217550,34in Ultrawide Monitor,1,379.99,06/23/19 15:30,"711 Forest St, Boston, MA 02215" -217551,USB-C Charging Cable,1,11.95,06/13/19 13:49,"72 Hill St, San Francisco, CA 94016" -217552,Wired Headphones,1,11.99,06/24/19 15:46,"485 Jackson St, New York City, NY 10001" -217553,ThinkPad Laptop,1,999.99,06/01/19 09:15,"29 13th St, Portland, OR 97035" -217554,Apple Airpods Headphones,1,150,06/21/19 11:00,"175 13th St, San Francisco, CA 94016" -217555,Wired Headphones,1,11.99,06/30/19 10:15,"83 Elm St, Portland, OR 97035" -217556,USB-C Charging Cable,1,11.95,06/19/19 23:31,"749 Spruce St, Dallas, TX 75001" -217557,AA Batteries (4-pack),1,3.84,06/08/19 20:29,"159 Adams St, Dallas, TX 75001" -217558,USB-C Charging Cable,1,11.95,06/14/19 12:31,"809 Wilson St, New York City, NY 10001" -217559,Wired Headphones,1,11.99,06/19/19 08:53,"133 Cherry St, Los Angeles, CA 90001" -217560,USB-C Charging Cable,1,11.95,06/08/19 21:33,"142 Center St, New York City, NY 10001" -217561,iPhone,1,700,06/24/19 18:26,"937 Center St, Seattle, WA 98101" -217562,Wired Headphones,1,11.99,06/24/19 08:21,"280 North St, Seattle, WA 98101" -217563,Bose SoundSport Headphones,1,99.99,06/20/19 08:25,"814 Wilson St, Dallas, TX 75001" -217564,34in Ultrawide Monitor,1,379.99,06/06/19 18:48,"34 Maple St, Portland, OR 97035" -217565,Lightning Charging Cable,1,14.95,06/22/19 18:18,"384 12th St, San Francisco, CA 94016" -217566,Apple Airpods Headphones,1,150,06/08/19 20:54,"503 Washington St, New York City, NY 10001" -217567,USB-C Charging Cable,1,11.95,06/10/19 22:54,"963 Dogwood St, Los Angeles, CA 90001" -217568,Apple Airpods Headphones,1,150,06/30/19 17:47,"428 Johnson St, Austin, TX 73301" -217569,27in 4K Gaming Monitor,1,389.99,06/18/19 20:25,"726 Sunset St, San Francisco, CA 94016" -217570,Macbook Pro Laptop,1,1700,06/25/19 11:04,"857 Washington St, New York City, NY 10001" -217571,Apple Airpods Headphones,1,150,06/19/19 18:12,"160 Willow St, New York City, NY 10001" -217572,Apple Airpods Headphones,1,150,06/12/19 12:17,"47 11th St, Boston, MA 02215" -217573,Apple Airpods Headphones,1,150,06/17/19 16:44,"869 Cedar St, Atlanta, GA 30301" -217574,AA Batteries (4-pack),1,3.84,06/19/19 21:38,"788 Church St, Los Angeles, CA 90001" -217575,AA Batteries (4-pack),1,3.84,06/19/19 15:11,"647 Maple St, Austin, TX 73301" -217576,USB-C Charging Cable,1,11.95,06/17/19 11:18,"564 Cedar St, Austin, TX 73301" -,,,,, -217577,Bose SoundSport Headphones,1,99.99,06/18/19 09:46,"197 Pine St, Seattle, WA 98101" -217578,USB-C Charging Cable,1,11.95,06/18/19 17:35,"613 Ridge St, Dallas, TX 75001" -217579,27in 4K Gaming Monitor,1,389.99,06/30/19 19:32,"797 Madison St, Seattle, WA 98101" -217580,USB-C Charging Cable,1,11.95,06/03/19 11:53,"660 2nd St, Boston, MA 02215" -217581,AA Batteries (4-pack),1,3.84,06/29/19 11:26,"484 6th St, Los Angeles, CA 90001" -217582,iPhone,1,700,06/17/19 00:42,"657 14th St, San Francisco, CA 94016" -217583,27in 4K Gaming Monitor,1,389.99,06/19/19 18:55,"973 Hill St, Dallas, TX 75001" -217584,Macbook Pro Laptop,1,1700,06/26/19 17:41,"454 6th St, Boston, MA 02215" -217585,AA Batteries (4-pack),1,3.84,06/02/19 18:56,"114 Washington St, New York City, NY 10001" -217586,Lightning Charging Cable,1,14.95,06/24/19 12:54,"600 Cherry St, San Francisco, CA 94016" -217587,Google Phone,1,600,06/01/19 14:02,"570 Meadow St, Atlanta, GA 30301" -217588,AAA Batteries (4-pack),1,2.99,06/16/19 22:24,"644 Lake St, Atlanta, GA 30301" -217589,Apple Airpods Headphones,1,150,06/03/19 10:19,"853 Johnson St, San Francisco, CA 94016" -217590,USB-C Charging Cable,1,11.95,06/11/19 16:22,"158 Wilson St, Atlanta, GA 30301" -217591,27in 4K Gaming Monitor,1,389.99,06/11/19 20:34,"469 West St, Seattle, WA 98101" -217592,ThinkPad Laptop,1,999.99,06/21/19 18:01,"394 Willow St, San Francisco, CA 94016" -217593,27in FHD Monitor,1,149.99,06/29/19 00:54,"93 7th St, Austin, TX 73301" -217594,AAA Batteries (4-pack),1,2.99,06/24/19 22:55,"911 South St, Portland, OR 97035" -217595,USB-C Charging Cable,2,11.95,06/28/19 13:39,"540 4th St, Los Angeles, CA 90001" -217596,20in Monitor,1,109.99,06/02/19 23:04,"57 Hickory St, Atlanta, GA 30301" -217597,AAA Batteries (4-pack),2,2.99,06/02/19 18:32,"927 Cedar St, Atlanta, GA 30301" -217598,Apple Airpods Headphones,1,150,06/17/19 12:53,"907 2nd St, Portland, OR 97035" -217599,Apple Airpods Headphones,1,150,06/23/19 13:26,"456 Meadow St, Portland, OR 97035" -,,,,, -217600,USB-C Charging Cable,1,11.95,06/27/19 13:22,"48 River St, San Francisco, CA 94016" -217601,Lightning Charging Cable,1,14.95,06/24/19 06:13,"990 Hickory St, San Francisco, CA 94016" -217602,USB-C Charging Cable,1,11.95,06/11/19 13:57,"23 Lake St, Austin, TX 73301" -217603,AA Batteries (4-pack),1,3.84,06/24/19 11:15,"466 Walnut St, Boston, MA 02215" -217604,34in Ultrawide Monitor,1,379.99,06/11/19 23:18,"971 Spruce St, Los Angeles, CA 90001" -217605,Flatscreen TV,1,300,06/16/19 11:39,"877 Washington St, Dallas, TX 75001" -217606,27in FHD Monitor,1,149.99,06/11/19 10:22,"612 Wilson St, San Francisco, CA 94016" -217607,Bose SoundSport Headphones,1,99.99,06/18/19 14:47,"663 Church St, Seattle, WA 98101" -217608,Wired Headphones,1,11.99,06/07/19 20:15,"353 Dogwood St, Boston, MA 02215" -217609,AA Batteries (4-pack),2,3.84,06/20/19 18:25,"837 11th St, San Francisco, CA 94016" -217610,AA Batteries (4-pack),1,3.84,06/30/19 20:39,"67 Spruce St, Los Angeles, CA 90001" -217611,27in FHD Monitor,1,149.99,06/15/19 15:52,"990 Wilson St, Atlanta, GA 30301" -217612,Wired Headphones,1,11.99,06/17/19 16:19,"583 Elm St, Los Angeles, CA 90001" -217613,Lightning Charging Cable,1,14.95,06/13/19 23:01,"986 1st St, Los Angeles, CA 90001" -217614,34in Ultrawide Monitor,1,379.99,06/28/19 17:47,"899 8th St, Los Angeles, CA 90001" -217615,Bose SoundSport Headphones,1,99.99,06/17/19 18:33,"356 10th St, New York City, NY 10001" -217616,34in Ultrawide Monitor,1,379.99,06/25/19 20:46,"149 Spruce St, Los Angeles, CA 90001" -217617,Lightning Charging Cable,2,14.95,06/12/19 18:18,"852 Highland St, Dallas, TX 75001" -217618,iPhone,1,700,06/15/19 19:04,"223 8th St, Seattle, WA 98101" -217618,Wired Headphones,1,11.99,06/15/19 19:04,"223 8th St, Seattle, WA 98101" -217619,Apple Airpods Headphones,1,150,06/19/19 18:48,"862 Chestnut St, Boston, MA 02215" -217620,USB-C Charging Cable,1,11.95,06/20/19 09:16,"582 Maple St, San Francisco, CA 94016" -217621,AAA Batteries (4-pack),1,2.99,06/16/19 12:47,"791 Spruce St, New York City, NY 10001" -217622,Google Phone,1,600,06/24/19 18:12,"57 South St, San Francisco, CA 94016" -217623,Macbook Pro Laptop,1,1700,06/15/19 13:00,"801 Johnson St, Austin, TX 73301" -217624,USB-C Charging Cable,1,11.95,06/06/19 16:44,"318 Highland St, Portland, OR 97035" -217625,AAA Batteries (4-pack),1,2.99,06/16/19 12:06,"967 Highland St, Dallas, TX 75001" -217626,Lightning Charging Cable,1,14.95,06/04/19 18:00,"832 9th St, Los Angeles, CA 90001" -217627,AAA Batteries (4-pack),1,2.99,06/11/19 00:07,"609 Forest St, New York City, NY 10001" -217628,AAA Batteries (4-pack),1,2.99,06/07/19 22:58,"25 Church St, San Francisco, CA 94016" -217629,Lightning Charging Cable,1,14.95,06/02/19 20:17,"245 Center St, Dallas, TX 75001" -217630,iPhone,1,700,06/06/19 15:41,"266 Highland St, Dallas, TX 75001" -217631,Flatscreen TV,1,300,06/03/19 06:44,"248 10th St, Boston, MA 02215" -217632,USB-C Charging Cable,1,11.95,06/07/19 15:13,"781 Lakeview St, New York City, NY 10001" -217633,Lightning Charging Cable,1,14.95,06/11/19 16:41,"936 Jefferson St, Los Angeles, CA 90001" -217634,Wired Headphones,1,11.99,06/24/19 16:48,"322 Adams St, Atlanta, GA 30301" -217635,Wired Headphones,1,11.99,06/29/19 21:06,"53 Lincoln St, Portland, OR 97035" -217636,Lightning Charging Cable,1,14.95,06/13/19 18:23,"244 West St, Portland, ME 04101" -217637,iPhone,1,700,06/02/19 19:13,"719 Chestnut St, Los Angeles, CA 90001" -217638,20in Monitor,1,109.99,06/30/19 21:01,"502 Park St, San Francisco, CA 94016" -217639,iPhone,1,700,06/21/19 12:19,"213 Dogwood St, San Francisco, CA 94016" -217640,27in FHD Monitor,1,149.99,06/15/19 20:58,"687 1st St, Boston, MA 02215" -217641,Bose SoundSport Headphones,1,99.99,06/01/19 23:37,"483 2nd St, San Francisco, CA 94016" -217642,AA Batteries (4-pack),2,3.84,06/06/19 01:25,"201 5th St, New York City, NY 10001" -217643,USB-C Charging Cable,1,11.95,06/05/19 16:58,"251 Lake St, Los Angeles, CA 90001" -217644,AA Batteries (4-pack),2,3.84,06/10/19 15:05,"39 Lincoln St, New York City, NY 10001" -217645,20in Monitor,1,109.99,06/03/19 18:52,"89 South St, San Francisco, CA 94016" -217646,AAA Batteries (4-pack),1,2.99,06/26/19 14:11,"9 Madison St, Boston, MA 02215" -217647,ThinkPad Laptop,1,999.99,06/19/19 15:44,"539 6th St, Dallas, TX 75001" -217648,Apple Airpods Headphones,1,150,06/18/19 06:05,"232 River St, Los Angeles, CA 90001" -217649,27in FHD Monitor,2,149.99,06/30/19 16:36,"227 7th St, Los Angeles, CA 90001" -217650,27in FHD Monitor,1,149.99,06/14/19 15:46,"339 Spruce St, Seattle, WA 98101" -217651,LG Dryer,1,600.0,06/11/19 22:46,"674 Hill St, Portland, ME 04101" -217651,Wired Headphones,1,11.99,06/11/19 22:46,"674 Hill St, Portland, ME 04101" -217652,Google Phone,1,600,06/30/19 16:49,"485 4th St, San Francisco, CA 94016" -217653,Bose SoundSport Headphones,1,99.99,06/15/19 14:00,"683 Chestnut St, Dallas, TX 75001" -217654,AAA Batteries (4-pack),2,2.99,06/03/19 13:01,"480 Elm St, Los Angeles, CA 90001" -217655,AA Batteries (4-pack),2,3.84,06/17/19 07:49,"136 Park St, Atlanta, GA 30301" -217656,Google Phone,1,600,06/21/19 20:05,"18 Cedar St, Boston, MA 02215" -217657,Bose SoundSport Headphones,1,99.99,06/25/19 10:29,"739 1st St, San Francisco, CA 94016" -217658,Lightning Charging Cable,1,14.95,06/17/19 10:04,"744 14th St, San Francisco, CA 94016" -217659,USB-C Charging Cable,1,11.95,06/16/19 22:22,"802 Center St, Boston, MA 02215" -217660,Apple Airpods Headphones,1,150,06/12/19 18:20,"603 2nd St, San Francisco, CA 94016" -217661,AA Batteries (4-pack),1,3.84,06/03/19 13:11,"320 6th St, Seattle, WA 98101" -217662,34in Ultrawide Monitor,1,379.99,06/29/19 09:42,"496 Hickory St, Boston, MA 02215" -217663,AA Batteries (4-pack),1,3.84,06/06/19 22:34,"943 Spruce St, Austin, TX 73301" -217664,AAA Batteries (4-pack),1,2.99,06/01/19 19:46,"551 9th St, Boston, MA 02215" -217665,Apple Airpods Headphones,1,150,06/05/19 20:05,"660 Ridge St, San Francisco, CA 94016" -217666,Google Phone,1,600,06/30/19 06:37,"765 Highland St, San Francisco, CA 94016" -217666,USB-C Charging Cable,1,11.95,06/30/19 06:37,"765 Highland St, San Francisco, CA 94016" -217667,20in Monitor,1,109.99,06/25/19 20:46,"860 5th St, San Francisco, CA 94016" -217668,Lightning Charging Cable,1,14.95,06/23/19 20:31,"820 2nd St, San Francisco, CA 94016" -217669,Wired Headphones,1,11.99,06/26/19 21:37,"985 Walnut St, Los Angeles, CA 90001" -217670,USB-C Charging Cable,1,11.95,06/28/19 18:12,"108 Jackson St, New York City, NY 10001" -217671,Apple Airpods Headphones,1,150,06/27/19 00:01,"612 Adams St, Los Angeles, CA 90001" -217672,Lightning Charging Cable,1,14.95,06/22/19 00:54,"65 Ridge St, New York City, NY 10001" -217673,Flatscreen TV,1,300,06/04/19 22:05,"363 2nd St, San Francisco, CA 94016" -217674,Wired Headphones,1,11.99,06/07/19 17:00,"743 12th St, Boston, MA 02215" -217675,27in FHD Monitor,1,149.99,06/30/19 09:31,"442 9th St, Los Angeles, CA 90001" -,,,,, -217676,AA Batteries (4-pack),2,3.84,06/27/19 15:18,"755 Pine St, New York City, NY 10001" -217677,USB-C Charging Cable,1,11.95,06/12/19 10:56,"347 Cedar St, New York City, NY 10001" -217678,Google Phone,1,600,06/28/19 04:41,"542 8th St, New York City, NY 10001" -217679,27in FHD Monitor,1,149.99,06/14/19 16:32,"653 Church St, Los Angeles, CA 90001" -217680,Apple Airpods Headphones,1,150,06/25/19 22:31,"294 Forest St, Seattle, WA 98101" -217681,iPhone,1,700,06/22/19 11:18,"241 Elm St, Seattle, WA 98101" -217682,Wired Headphones,1,11.99,06/12/19 11:09,"435 Lake St, Atlanta, GA 30301" -217683,Flatscreen TV,1,300,06/29/19 22:38,"805 Hill St, Los Angeles, CA 90001" -217684,27in 4K Gaming Monitor,1,389.99,06/29/19 16:15,"487 North St, New York City, NY 10001" -217685,Apple Airpods Headphones,1,150,06/21/19 08:21,"821 Meadow St, Dallas, TX 75001" -217686,AAA Batteries (4-pack),1,2.99,06/17/19 17:54,"134 2nd St, Portland, OR 97035" -217687,20in Monitor,1,109.99,06/12/19 13:48,"222 Hill St, New York City, NY 10001" -217688,Wired Headphones,1,11.99,06/24/19 21:42,"118 Adams St, New York City, NY 10001" -217689,27in FHD Monitor,1,149.99,06/16/19 20:09,"665 8th St, San Francisco, CA 94016" -217690,Lightning Charging Cable,1,14.95,06/04/19 20:13,"146 Lake St, New York City, NY 10001" -217691,Wired Headphones,1,11.99,06/21/19 13:12,"78 Lakeview St, Portland, OR 97035" -217692,27in 4K Gaming Monitor,1,389.99,06/05/19 13:33,"305 6th St, Boston, MA 02215" -217693,ThinkPad Laptop,1,999.99,06/07/19 14:50,"103 8th St, San Francisco, CA 94016" -217694,Wired Headphones,1,11.99,06/19/19 13:53,"50 Lincoln St, San Francisco, CA 94016" -217695,AAA Batteries (4-pack),1,2.99,06/26/19 14:46,"257 South St, Seattle, WA 98101" -217696,iPhone,1,700,06/04/19 18:39,"659 11th St, San Francisco, CA 94016" -217697,27in FHD Monitor,1,149.99,06/11/19 16:30,"86 Adams St, San Francisco, CA 94016" -217698,Apple Airpods Headphones,1,150,06/15/19 23:56,"207 Cherry St, Los Angeles, CA 90001" -217699,Apple Airpods Headphones,1,150,06/26/19 11:00,"644 Sunset St, Dallas, TX 75001" -217700,Apple Airpods Headphones,1,150,06/07/19 19:27,"660 8th St, Boston, MA 02215" -217701,20in Monitor,1,109.99,06/29/19 20:49,"164 North St, Dallas, TX 75001" -217702,AA Batteries (4-pack),1,3.84,06/19/19 22:04,"216 6th St, New York City, NY 10001" -217703,Wired Headphones,1,11.99,06/13/19 10:52,"782 Maple St, Atlanta, GA 30301" -217704,Bose SoundSport Headphones,1,99.99,06/16/19 17:54,"118 Park St, New York City, NY 10001" -217705,AA Batteries (4-pack),1,3.84,06/17/19 18:07,"862 Lakeview St, Seattle, WA 98101" -217706,Wired Headphones,1,11.99,06/11/19 21:03,"261 Walnut St, Portland, OR 97035" -217707,AAA Batteries (4-pack),2,2.99,06/29/19 09:59,"99 Forest St, Portland, OR 97035" -217708,USB-C Charging Cable,1,11.95,06/29/19 22:13,"803 14th St, San Francisco, CA 94016" -217709,AAA Batteries (4-pack),2,2.99,06/02/19 19:57,"141 Willow St, New York City, NY 10001" -217710,AAA Batteries (4-pack),1,2.99,06/26/19 11:06,"388 Hickory St, Boston, MA 02215" -217711,27in 4K Gaming Monitor,1,389.99,06/08/19 10:47,"785 10th St, San Francisco, CA 94016" -217712,AAA Batteries (4-pack),1,2.99,06/17/19 18:08,"656 Meadow St, Austin, TX 73301" -217713,AA Batteries (4-pack),1,3.84,06/25/19 22:17,"721 Jackson St, San Francisco, CA 94016" -217714,USB-C Charging Cable,1,11.95,06/07/19 12:23,"516 Johnson St, Atlanta, GA 30301" -217715,AA Batteries (4-pack),2,3.84,06/04/19 22:03,"455 Wilson St, New York City, NY 10001" -217716,Apple Airpods Headphones,1,150,06/05/19 06:39,"334 Lincoln St, San Francisco, CA 94016" -217717,AAA Batteries (4-pack),1,2.99,06/30/19 11:10,"875 13th St, Boston, MA 02215" -217718,iPhone,1,700,06/01/19 17:26,"529 8th St, Boston, MA 02215" -217719,27in FHD Monitor,1,149.99,06/21/19 00:17,"457 5th St, Seattle, WA 98101" -217720,27in 4K Gaming Monitor,1,389.99,06/08/19 21:15,"907 Dogwood St, Seattle, WA 98101" -217721,USB-C Charging Cable,1,11.95,06/02/19 17:25,"162 8th St, New York City, NY 10001" -217722,Bose SoundSport Headphones,1,99.99,06/10/19 15:16,"548 12th St, San Francisco, CA 94016" -217723,AA Batteries (4-pack),1,3.84,06/08/19 21:19,"212 6th St, San Francisco, CA 94016" -217724,Lightning Charging Cable,1,14.95,06/23/19 10:41,"177 North St, Los Angeles, CA 90001" -217725,Lightning Charging Cable,1,14.95,06/26/19 15:26,"518 Center St, Los Angeles, CA 90001" -217726,USB-C Charging Cable,1,11.95,06/12/19 19:07,"341 14th St, Los Angeles, CA 90001" -217727,Wired Headphones,1,11.99,06/17/19 20:08,"964 Ridge St, Boston, MA 02215" -217728,27in 4K Gaming Monitor,1,389.99,06/20/19 09:38,"615 West St, Los Angeles, CA 90001" -217729,Wired Headphones,1,11.99,06/02/19 22:54,"73 Johnson St, Atlanta, GA 30301" -217730,AA Batteries (4-pack),3,3.84,06/16/19 13:52,"113 Park St, Los Angeles, CA 90001" -217731,AAA Batteries (4-pack),1,2.99,06/10/19 13:10,"837 Walnut St, San Francisco, CA 94016" -217732,AAA Batteries (4-pack),1,2.99,06/23/19 19:52,"190 Cherry St, San Francisco, CA 94016" -217733,Google Phone,1,600,06/21/19 14:04,"251 Elm St, Seattle, WA 98101" -217734,27in FHD Monitor,1,149.99,06/11/19 07:25,"893 Wilson St, Boston, MA 02215" -217735,Vareebadd Phone,1,400,06/23/19 21:50,"507 Jackson St, Boston, MA 02215" -217736,27in 4K Gaming Monitor,1,389.99,06/25/19 18:28,"331 South St, Boston, MA 02215" -217737,AA Batteries (4-pack),1,3.84,06/28/19 05:32,"978 5th St, San Francisco, CA 94016" -217738,Flatscreen TV,1,300,06/19/19 00:02,"865 Pine St, New York City, NY 10001" -217739,Macbook Pro Laptop,1,1700,06/19/19 16:41,"387 11th St, San Francisco, CA 94016" -217740,AAA Batteries (4-pack),1,2.99,06/22/19 13:40,"413 Maple St, San Francisco, CA 94016" -217741,AA Batteries (4-pack),1,3.84,06/19/19 12:43,"209 North St, Atlanta, GA 30301" -217742,iPhone,1,700,06/23/19 09:52,"658 Jackson St, Seattle, WA 98101" -217742,Lightning Charging Cable,1,14.95,06/23/19 09:52,"658 Jackson St, Seattle, WA 98101" -217743,Lightning Charging Cable,1,14.95,06/13/19 17:05,"536 West St, Austin, TX 73301" -217744,ThinkPad Laptop,1,999.99,06/26/19 15:55,"933 Hickory St, Atlanta, GA 30301" -217745,AA Batteries (4-pack),1,3.84,06/05/19 12:24,"685 Willow St, Boston, MA 02215" -217746,Flatscreen TV,1,300,06/29/19 21:05,"897 Lakeview St, Portland, OR 97035" -217747,USB-C Charging Cable,1,11.95,06/26/19 12:49,"928 Lincoln St, San Francisco, CA 94016" -217748,Wired Headphones,1,11.99,06/08/19 16:26,"813 Ridge St, Seattle, WA 98101" -217749,Flatscreen TV,1,300,06/26/19 19:44,"366 11th St, New York City, NY 10001" -217750,AAA Batteries (4-pack),2,2.99,06/27/19 14:47,"211 Maple St, New York City, NY 10001" -217751,34in Ultrawide Monitor,1,379.99,06/26/19 16:32,"12 Sunset St, Atlanta, GA 30301" -217752,Lightning Charging Cable,1,14.95,06/06/19 15:09,"179 Walnut St, Boston, MA 02215" -217753,iPhone,1,700,06/09/19 22:18,"803 Chestnut St, San Francisco, CA 94016" -217754,USB-C Charging Cable,1,11.95,06/25/19 20:56,"138 River St, San Francisco, CA 94016" -217755,34in Ultrawide Monitor,1,379.99,06/09/19 22:44,"544 8th St, New York City, NY 10001" -217756,Apple Airpods Headphones,1,150,06/29/19 11:12,"682 14th St, Austin, TX 73301" -217757,34in Ultrawide Monitor,1,379.99,06/12/19 13:17,"19 Madison St, San Francisco, CA 94016" -217758,Macbook Pro Laptop,1,1700,06/09/19 08:53,"254 Madison St, New York City, NY 10001" -217759,20in Monitor,1,109.99,06/19/19 02:29,"884 Forest St, Boston, MA 02215" -217760,iPhone,1,700,06/23/19 14:17,"45 14th St, Atlanta, GA 30301" -217761,27in FHD Monitor,1,149.99,06/23/19 09:42,"962 Chestnut St, Boston, MA 02215" -217762,Apple Airpods Headphones,1,150,06/27/19 00:19,"745 South St, San Francisco, CA 94016" -217763,Lightning Charging Cable,1,14.95,06/25/19 09:57,"133 Sunset St, New York City, NY 10001" -217764,AAA Batteries (4-pack),1,2.99,06/24/19 09:19,"856 Lincoln St, Dallas, TX 75001" -217765,27in FHD Monitor,1,149.99,06/25/19 10:47,"655 Jefferson St, Los Angeles, CA 90001" -217766,AAA Batteries (4-pack),1,2.99,06/18/19 09:00,"116 West St, San Francisco, CA 94016" -217767,Wired Headphones,1,11.99,06/19/19 15:26,"601 2nd St, Los Angeles, CA 90001" -217768,AA Batteries (4-pack),1,3.84,06/26/19 10:16,"957 Washington St, San Francisco, CA 94016" -217769,Wired Headphones,1,11.99,06/24/19 11:25,"827 Madison St, Boston, MA 02215" -217770,AAA Batteries (4-pack),2,2.99,06/10/19 16:53,"450 5th St, Los Angeles, CA 90001" -217771,Lightning Charging Cable,2,14.95,06/28/19 23:56,"545 South St, San Francisco, CA 94016" -217772,Macbook Pro Laptop,1,1700,06/14/19 16:14,"980 Walnut St, San Francisco, CA 94016" -217773,AA Batteries (4-pack),1,3.84,06/25/19 19:16,"890 Lakeview St, New York City, NY 10001" -217774,Wired Headphones,1,11.99,06/05/19 20:21,"284 Johnson St, New York City, NY 10001" -217775,Google Phone,1,600,06/25/19 18:39,"224 Spruce St, San Francisco, CA 94016" -217776,ThinkPad Laptop,1,999.99,06/18/19 12:23,"744 Jefferson St, New York City, NY 10001" -217777,34in Ultrawide Monitor,1,379.99,06/03/19 21:00,"107 14th St, Los Angeles, CA 90001" -217778,USB-C Charging Cable,1,11.95,06/22/19 12:21,"148 14th St, Portland, OR 97035" -217779,AAA Batteries (4-pack),1,2.99,06/26/19 17:54,"547 Lake St, San Francisco, CA 94016" -217780,20in Monitor,1,109.99,06/06/19 21:49,"252 Spruce St, San Francisco, CA 94016" -217781,Macbook Pro Laptop,1,1700,06/28/19 07:24,"748 Elm St, Los Angeles, CA 90001" -217782,AAA Batteries (4-pack),1,2.99,06/29/19 09:27,"682 7th St, Seattle, WA 98101" -217783,AA Batteries (4-pack),1,3.84,06/22/19 17:36,"275 4th St, New York City, NY 10001" -217784,USB-C Charging Cable,1,11.95,06/28/19 16:09,"515 South St, Portland, ME 04101" -217785,Apple Airpods Headphones,1,150,06/28/19 17:22,"625 Hickory St, Los Angeles, CA 90001" -217786,Wired Headphones,3,11.99,06/18/19 20:17,"556 Dogwood St, Seattle, WA 98101" -217787,Wired Headphones,1,11.99,06/30/19 08:39,"78 11th St, Boston, MA 02215" -217788,ThinkPad Laptop,1,999.99,06/10/19 09:24,"920 Hill St, Los Angeles, CA 90001" -217789,Bose SoundSport Headphones,1,99.99,06/27/19 00:08,"25 Pine St, Boston, MA 02215" -217790,USB-C Charging Cable,1,11.95,06/05/19 19:53,"506 Park St, Los Angeles, CA 90001" -217791,AAA Batteries (4-pack),3,2.99,06/28/19 19:37,"542 13th St, San Francisco, CA 94016" -217792,AAA Batteries (4-pack),1,2.99,06/28/19 15:54,"324 Cedar St, Seattle, WA 98101" -217793,AA Batteries (4-pack),1,3.84,06/01/19 12:58,"645 13th St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -217794,AAA Batteries (4-pack),2,2.99,06/03/19 15:43,"539 Center St, Los Angeles, CA 90001" -217795,Apple Airpods Headphones,1,150,06/06/19 14:15,"402 12th St, Dallas, TX 75001" -217795,Wired Headphones,1,11.99,06/06/19 14:15,"402 12th St, Dallas, TX 75001" -217796,Lightning Charging Cable,2,14.95,06/24/19 10:03,"562 Center St, New York City, NY 10001" -217797,Apple Airpods Headphones,1,150,06/27/19 19:48,"725 River St, San Francisco, CA 94016" -217798,27in 4K Gaming Monitor,1,389.99,06/17/19 08:28,"168 Wilson St, San Francisco, CA 94016" -217799,Wired Headphones,1,11.99,06/05/19 05:12,"120 Church St, Los Angeles, CA 90001" -217800,27in FHD Monitor,1,149.99,06/04/19 17:04,"433 Church St, San Francisco, CA 94016" -217801,AAA Batteries (4-pack),1,2.99,06/28/19 23:59,"403 Highland St, New York City, NY 10001" -217802,ThinkPad Laptop,1,999.99,06/24/19 10:20,"48 Spruce St, San Francisco, CA 94016" -217803,Lightning Charging Cable,1,14.95,06/17/19 22:31,"3 Wilson St, Los Angeles, CA 90001" -217804,Wired Headphones,1,11.99,06/14/19 09:33,"436 9th St, Los Angeles, CA 90001" -217805,34in Ultrawide Monitor,1,379.99,06/18/19 18:32,"668 West St, Portland, ME 04101" -217806,Wired Headphones,1,11.99,06/16/19 10:18,"235 Madison St, New York City, NY 10001" -217807,AAA Batteries (4-pack),1,2.99,06/11/19 13:10,"868 Pine St, Los Angeles, CA 90001" -217808,34in Ultrawide Monitor,1,379.99,06/02/19 06:31,"986 10th St, Seattle, WA 98101" -217809,AA Batteries (4-pack),1,3.84,06/04/19 21:45,"467 Forest St, Los Angeles, CA 90001" -217810,AAA Batteries (4-pack),1,2.99,06/06/19 08:12,"437 Meadow St, New York City, NY 10001" -217811,AAA Batteries (4-pack),4,2.99,06/25/19 14:23,"660 West St, Atlanta, GA 30301" -217812,34in Ultrawide Monitor,1,379.99,06/30/19 17:41,"863 Cedar St, New York City, NY 10001" -217813,Lightning Charging Cable,1,14.95,06/10/19 12:39,"640 Walnut St, Portland, OR 97035" -217814,27in 4K Gaming Monitor,1,389.99,06/21/19 21:17,"988 6th St, Atlanta, GA 30301" -217815,Wired Headphones,1,11.99,06/05/19 22:23,"74 Adams St, Austin, TX 73301" -217816,Wired Headphones,1,11.99,06/06/19 15:57,"922 Sunset St, New York City, NY 10001" -217817,AAA Batteries (4-pack),1,2.99,06/05/19 13:35,"955 1st St, Los Angeles, CA 90001" -217818,USB-C Charging Cable,1,11.95,06/26/19 15:35,"829 9th St, Seattle, WA 98101" -217819,USB-C Charging Cable,1,11.95,06/18/19 21:36,"472 Jefferson St, Boston, MA 02215" -217820,iPhone,1,700,06/23/19 14:56,"584 Adams St, Los Angeles, CA 90001" -217820,Apple Airpods Headphones,1,150,06/23/19 14:56,"584 Adams St, Los Angeles, CA 90001" -217821,34in Ultrawide Monitor,1,379.99,06/02/19 14:31,"719 Chestnut St, Atlanta, GA 30301" -217822,Lightning Charging Cable,2,14.95,06/09/19 13:22,"794 13th St, Los Angeles, CA 90001" -217823,Flatscreen TV,1,300,06/19/19 09:56,"77 6th St, San Francisco, CA 94016" -217824,Lightning Charging Cable,1,14.95,06/07/19 19:16,"741 Church St, Los Angeles, CA 90001" -217825,34in Ultrawide Monitor,1,379.99,06/18/19 16:02,"553 9th St, Portland, OR 97035" -217826,AAA Batteries (4-pack),1,2.99,06/13/19 00:13,"834 Meadow St, Atlanta, GA 30301" -217827,USB-C Charging Cable,2,11.95,06/15/19 18:14,"355 5th St, San Francisco, CA 94016" -217828,USB-C Charging Cable,2,11.95,06/02/19 11:01,"580 Hill St, New York City, NY 10001" -217829,Lightning Charging Cable,1,14.95,06/29/19 11:02,"187 14th St, Boston, MA 02215" -217830,USB-C Charging Cable,1,11.95,06/23/19 05:09,"957 West St, San Francisco, CA 94016" -217831,AAA Batteries (4-pack),1,2.99,06/13/19 14:22,"842 4th St, Dallas, TX 75001" -217832,27in 4K Gaming Monitor,1,389.99,06/14/19 21:10,"736 Dogwood St, New York City, NY 10001" -217833,Bose SoundSport Headphones,1,99.99,06/08/19 20:06,"4 Hickory St, San Francisco, CA 94016" -217834,Wired Headphones,1,11.99,06/10/19 18:50,"215 Spruce St, San Francisco, CA 94016" -217835,27in FHD Monitor,1,149.99,06/02/19 18:54,"906 2nd St, Dallas, TX 75001" -217836,USB-C Charging Cable,1,11.95,06/17/19 12:59,"837 Highland St, San Francisco, CA 94016" -217837,AA Batteries (4-pack),1,3.84,06/12/19 17:10,"541 Washington St, Los Angeles, CA 90001" -217838,Lightning Charging Cable,2,14.95,06/01/19 13:38,"557 8th St, Dallas, TX 75001" -217839,iPhone,1,700,06/09/19 14:21,"191 Cedar St, Los Angeles, CA 90001" -217840,USB-C Charging Cable,1,11.95,06/06/19 08:25,"936 Dogwood St, San Francisco, CA 94016" -217841,USB-C Charging Cable,1,11.95,06/02/19 08:47,"465 Center St, San Francisco, CA 94016" -217842,Apple Airpods Headphones,1,150,06/12/19 21:06,"268 7th St, San Francisco, CA 94016" -217843,Apple Airpods Headphones,2,150,06/13/19 03:37,"350 Wilson St, Austin, TX 73301" -217844,Macbook Pro Laptop,1,1700,06/11/19 02:26,"350 Elm St, San Francisco, CA 94016" -217845,27in FHD Monitor,1,149.99,06/30/19 01:25,"506 6th St, Los Angeles, CA 90001" -217846,ThinkPad Laptop,1,999.99,06/08/19 09:21,"692 Maple St, Boston, MA 02215" -217847,AA Batteries (4-pack),3,3.84,06/10/19 13:27,"620 Washington St, Austin, TX 73301" -217848,34in Ultrawide Monitor,1,379.99,06/09/19 09:04,"227 Forest St, Seattle, WA 98101" -217849,AA Batteries (4-pack),1,3.84,06/17/19 13:25,"385 13th St, Los Angeles, CA 90001" -217850,ThinkPad Laptop,1,999.99,06/03/19 12:54,"7 North St, Dallas, TX 75001" -217851,Flatscreen TV,1,300,06/27/19 12:52,"850 Ridge St, Los Angeles, CA 90001" -217852,Lightning Charging Cable,1,14.95,06/09/19 15:22,"687 Dogwood St, San Francisco, CA 94016" -217853,27in FHD Monitor,1,149.99,06/14/19 19:53,"329 6th St, San Francisco, CA 94016" -217854,Lightning Charging Cable,1,14.95,06/24/19 13:40,"571 Meadow St, Portland, OR 97035" -217855,USB-C Charging Cable,1,11.95,06/24/19 12:35,"776 7th St, New York City, NY 10001" -217856,Vareebadd Phone,1,400,06/15/19 15:24,"226 South St, New York City, NY 10001" -217856,Bose SoundSport Headphones,1,99.99,06/15/19 15:24,"226 South St, New York City, NY 10001" -217857,Apple Airpods Headphones,1,150,06/12/19 18:52,"675 Sunset St, San Francisco, CA 94016" -217858,AAA Batteries (4-pack),2,2.99,06/13/19 00:07,"555 Sunset St, Portland, OR 97035" -217859,27in FHD Monitor,1,149.99,06/29/19 12:11,"367 9th St, Boston, MA 02215" -217860,Apple Airpods Headphones,1,150,06/09/19 12:43,"747 North St, New York City, NY 10001" -217861,27in 4K Gaming Monitor,1,389.99,06/26/19 10:44,"391 Elm St, San Francisco, CA 94016" -217862,Lightning Charging Cable,1,14.95,06/26/19 14:27,"881 Maple St, Los Angeles, CA 90001" -217863,AA Batteries (4-pack),1,3.84,06/27/19 18:09,"903 Park St, New York City, NY 10001" -217864,ThinkPad Laptop,1,999.99,06/13/19 07:38,"320 Lakeview St, Dallas, TX 75001" -217865,Wired Headphones,1,11.99,06/01/19 14:03,"540 7th St, Boston, MA 02215" -217866,USB-C Charging Cable,1,11.95,06/18/19 01:19,"719 Maple St, San Francisco, CA 94016" -217866,Apple Airpods Headphones,1,150,06/18/19 01:19,"719 Maple St, San Francisco, CA 94016" -217867,Wired Headphones,1,11.99,06/15/19 11:28,"662 Cedar St, Portland, OR 97035" -217868,Google Phone,1,600,06/29/19 12:33,"353 1st St, New York City, NY 10001" -217868,USB-C Charging Cable,1,11.95,06/29/19 12:33,"353 1st St, New York City, NY 10001" -217869,USB-C Charging Cable,1,11.95,06/11/19 09:39,"173 Washington St, Portland, OR 97035" -217869,27in FHD Monitor,1,149.99,06/11/19 09:39,"173 Washington St, Portland, OR 97035" -217870,Wired Headphones,1,11.99,06/04/19 13:28,"792 Elm St, San Francisco, CA 94016" -217871,Wired Headphones,2,11.99,06/06/19 20:05,"893 North St, San Francisco, CA 94016" -217872,USB-C Charging Cable,2,11.95,06/26/19 12:01,"751 Hill St, New York City, NY 10001" -217873,AA Batteries (4-pack),2,3.84,06/01/19 13:25,"798 5th St, New York City, NY 10001" -217874,27in 4K Gaming Monitor,1,389.99,06/07/19 01:21,"911 1st St, Los Angeles, CA 90001" -217874,Macbook Pro Laptop,1,1700,06/07/19 01:21,"911 1st St, Los Angeles, CA 90001" -217875,20in Monitor,1,109.99,06/27/19 14:48,"664 Pine St, Seattle, WA 98101" -217876,Flatscreen TV,1,300,06/12/19 11:26,"499 Meadow St, Portland, OR 97035" -217877,Wired Headphones,1,11.99,06/15/19 14:05,"794 Chestnut St, Seattle, WA 98101" -217878,USB-C Charging Cable,1,11.95,06/22/19 22:35,"481 North St, Portland, OR 97035" -217879,AA Batteries (4-pack),1,3.84,06/11/19 09:58,"739 Park St, Los Angeles, CA 90001" -217880,AAA Batteries (4-pack),1,2.99,06/03/19 14:04,"430 Dogwood St, San Francisco, CA 94016" -217881,AA Batteries (4-pack),1,3.84,06/18/19 18:13,"220 4th St, New York City, NY 10001" -217882,USB-C Charging Cable,1,11.95,06/18/19 20:18,"456 Pine St, Atlanta, GA 30301" -217883,Macbook Pro Laptop,1,1700,06/13/19 13:00,"998 West St, Atlanta, GA 30301" -217884,AA Batteries (4-pack),1,3.84,06/24/19 18:31,"362 13th St, Portland, OR 97035" -217885,27in FHD Monitor,1,149.99,06/19/19 23:18,"399 Chestnut St, Boston, MA 02215" -217886,20in Monitor,1,109.99,06/15/19 14:26,"344 4th St, San Francisco, CA 94016" -217887,Lightning Charging Cable,1,14.95,06/13/19 21:35,"255 Walnut St, San Francisco, CA 94016" -217888,AAA Batteries (4-pack),1,2.99,06/08/19 11:58,"435 Center St, Los Angeles, CA 90001" -217889,Wired Headphones,1,11.99,06/02/19 21:06,"25 Center St, San Francisco, CA 94016" -217890,ThinkPad Laptop,1,999.99,06/23/19 15:43,"846 2nd St, New York City, NY 10001" -217891,AA Batteries (4-pack),1,3.84,06/13/19 20:03,"700 10th St, Boston, MA 02215" -217892,AA Batteries (4-pack),1,3.84,06/30/19 21:38,"826 Cherry St, Austin, TX 73301" -217893,AAA Batteries (4-pack),1,2.99,06/11/19 19:29,"47 Dogwood St, Seattle, WA 98101" -217894,Wired Headphones,1,11.99,06/12/19 13:18,"369 10th St, San Francisco, CA 94016" -217895,USB-C Charging Cable,1,11.95,06/02/19 15:13,"910 Madison St, Atlanta, GA 30301" -217896,iPhone,1,700,06/06/19 22:10,"393 Park St, San Francisco, CA 94016" -217897,20in Monitor,1,109.99,06/03/19 14:13,"251 Meadow St, Austin, TX 73301" -217898,Lightning Charging Cable,1,14.95,06/30/19 08:10,"984 Park St, Los Angeles, CA 90001" -217899,Bose SoundSport Headphones,1,99.99,06/14/19 01:58,"775 Cherry St, San Francisco, CA 94016" -217900,AA Batteries (4-pack),1,3.84,06/03/19 20:21,"515 River St, Boston, MA 02215" -217901,34in Ultrawide Monitor,1,379.99,06/14/19 16:03,"10 13th St, San Francisco, CA 94016" -217902,Google Phone,1,600,06/06/19 18:18,"161 4th St, Atlanta, GA 30301" -217903,AAA Batteries (4-pack),1,2.99,06/29/19 22:51,"960 Ridge St, Atlanta, GA 30301" -217904,AA Batteries (4-pack),1,3.84,06/15/19 17:48,"725 North St, Dallas, TX 75001" -,,,,, -217905,AA Batteries (4-pack),1,3.84,06/20/19 00:07,"365 Elm St, San Francisco, CA 94016" -217906,27in 4K Gaming Monitor,1,389.99,06/20/19 13:29,"195 West St, New York City, NY 10001" -217907,AAA Batteries (4-pack),1,2.99,06/27/19 18:41,"129 Elm St, New York City, NY 10001" -217908,Bose SoundSport Headphones,1,99.99,06/03/19 04:48,"453 West St, Los Angeles, CA 90001" -217909,AA Batteries (4-pack),1,3.84,06/05/19 17:30,"820 Sunset St, San Francisco, CA 94016" -217910,20in Monitor,1,109.99,06/27/19 20:10,"178 Cherry St, Los Angeles, CA 90001" -217911,USB-C Charging Cable,1,11.95,06/25/19 00:03,"570 10th St, San Francisco, CA 94016" -217912,ThinkPad Laptop,1,999.99,06/23/19 17:46,"974 Maple St, New York City, NY 10001" -217913,Macbook Pro Laptop,1,1700,06/07/19 00:47,"439 Jackson St, Austin, TX 73301" -217914,Lightning Charging Cable,1,14.95,06/18/19 21:28,"539 Meadow St, San Francisco, CA 94016" -217915,27in 4K Gaming Monitor,1,389.99,06/13/19 10:46,"742 Walnut St, Austin, TX 73301" -217916,Google Phone,1,600,06/02/19 20:27,"995 Dogwood St, Seattle, WA 98101" -217917,AA Batteries (4-pack),1,3.84,06/16/19 18:40,"268 Washington St, Boston, MA 02215" -217918,Lightning Charging Cable,1,14.95,06/20/19 06:55,"439 Spruce St, San Francisco, CA 94016" -217919,Bose SoundSport Headphones,1,99.99,06/27/19 12:12,"145 Cedar St, Boston, MA 02215" -217920,AAA Batteries (4-pack),2,2.99,06/01/19 08:10,"107 Park St, New York City, NY 10001" -217921,Bose SoundSport Headphones,1,99.99,06/01/19 20:41,"265 Lake St, New York City, NY 10001" -217922,Flatscreen TV,1,300,06/13/19 02:23,"933 Spruce St, Boston, MA 02215" -217923,AAA Batteries (4-pack),1,2.99,06/18/19 10:43,"861 Walnut St, San Francisco, CA 94016" -217924,AAA Batteries (4-pack),3,2.99,06/13/19 01:31,"520 Highland St, San Francisco, CA 94016" -217925,AAA Batteries (4-pack),1,2.99,06/16/19 17:33,"793 11th St, New York City, NY 10001" -217926,Lightning Charging Cable,1,14.95,06/29/19 21:14,"820 Willow St, Portland, ME 04101" -217927,AA Batteries (4-pack),2,3.84,06/20/19 18:12,"603 1st St, Atlanta, GA 30301" -217928,AA Batteries (4-pack),1,3.84,06/29/19 09:57,"318 Highland St, Seattle, WA 98101" -217929,34in Ultrawide Monitor,1,379.99,06/07/19 17:10,"140 Wilson St, San Francisco, CA 94016" -217930,AA Batteries (4-pack),1,3.84,06/08/19 12:52,"701 Highland St, Austin, TX 73301" -217931,34in Ultrawide Monitor,1,379.99,06/04/19 15:50,"606 Jackson St, Los Angeles, CA 90001" -217932,Lightning Charging Cable,2,14.95,06/01/19 04:52,"653 Forest St, Atlanta, GA 30301" -217933,Lightning Charging Cable,1,14.95,06/03/19 10:57,"29 Maple St, Los Angeles, CA 90001" -217934,AA Batteries (4-pack),1,3.84,06/08/19 09:27,"213 1st St, Los Angeles, CA 90001" -217935,Wired Headphones,1,11.99,06/05/19 07:29,"3 Forest St, Austin, TX 73301" -217936,Google Phone,1,600,06/16/19 17:02,"183 Main St, Boston, MA 02215" -217937,ThinkPad Laptop,1,999.99,06/11/19 17:51,"965 South St, San Francisco, CA 94016" -217938,USB-C Charging Cable,2,11.95,06/24/19 20:16,"599 Chestnut St, San Francisco, CA 94016" -217939,Wired Headphones,1,11.99,06/18/19 12:37,"977 Highland St, Dallas, TX 75001" -217940,USB-C Charging Cable,1,11.95,06/20/19 15:43,"586 River St, Los Angeles, CA 90001" -217941,AAA Batteries (4-pack),3,2.99,06/07/19 22:42,"203 8th St, Seattle, WA 98101" -217942,Apple Airpods Headphones,1,150,06/02/19 12:50,"722 Lakeview St, Boston, MA 02215" -217943,iPhone,1,700,06/23/19 11:37,"421 8th St, San Francisco, CA 94016" -217944,USB-C Charging Cable,1,11.95,06/25/19 15:40,"997 12th St, Seattle, WA 98101" -217945,27in 4K Gaming Monitor,1,389.99,06/09/19 16:03,"179 Elm St, Seattle, WA 98101" -217946,USB-C Charging Cable,1,11.95,06/16/19 13:37,"308 Walnut St, New York City, NY 10001" -217947,USB-C Charging Cable,1,11.95,06/07/19 15:32,"385 Church St, Los Angeles, CA 90001" -217948,Apple Airpods Headphones,1,150,06/11/19 16:05,"855 Cherry St, Atlanta, GA 30301" -217949,34in Ultrawide Monitor,1,379.99,06/08/19 18:42,"300 Hill St, New York City, NY 10001" -217950,Macbook Pro Laptop,1,1700,06/21/19 10:59,"328 Adams St, Dallas, TX 75001" -217951,Bose SoundSport Headphones,1,99.99,06/23/19 11:51,"883 Jackson St, Boston, MA 02215" -217951,Bose SoundSport Headphones,1,99.99,06/23/19 11:51,"883 Jackson St, Boston, MA 02215" -217952,Lightning Charging Cable,2,14.95,06/13/19 06:30,"891 Walnut St, Austin, TX 73301" -217953,Wired Headphones,1,11.99,06/13/19 19:39,"398 Pine St, San Francisco, CA 94016" -217954,Apple Airpods Headphones,1,150,06/04/19 21:16,"996 Walnut St, Los Angeles, CA 90001" -217955,USB-C Charging Cable,1,11.95,06/05/19 08:18,"800 6th St, Boston, MA 02215" -217956,USB-C Charging Cable,1,11.95,06/07/19 18:57,"185 1st St, Dallas, TX 75001" -217957,AAA Batteries (4-pack),1,2.99,06/18/19 14:34,"61 Lake St, Portland, OR 97035" -217958,Bose SoundSport Headphones,1,99.99,06/17/19 21:53,"197 Forest St, Dallas, TX 75001" -217959,AAA Batteries (4-pack),1,2.99,06/20/19 10:41,"518 Dogwood St, Austin, TX 73301" -217960,Bose SoundSport Headphones,1,99.99,06/12/19 18:35,"544 South St, New York City, NY 10001" -217961,AAA Batteries (4-pack),1,2.99,06/04/19 22:46,"628 Madison St, Los Angeles, CA 90001" -217962,34in Ultrawide Monitor,1,379.99,06/16/19 15:46,"404 Chestnut St, New York City, NY 10001" -217963,Lightning Charging Cable,1,14.95,06/10/19 22:16,"661 Dogwood St, Dallas, TX 75001" -217964,AAA Batteries (4-pack),1,2.99,06/10/19 09:58,"949 Lake St, Atlanta, GA 30301" -217965,Wired Headphones,1,11.99,06/29/19 22:39,"898 Washington St, Austin, TX 73301" -217966,27in FHD Monitor,1,149.99,06/03/19 01:26,"86 6th St, Seattle, WA 98101" -217967,AAA Batteries (4-pack),1,2.99,06/24/19 17:50,"183 Spruce St, San Francisco, CA 94016" -217968,Google Phone,1,600,06/04/19 14:51,"708 Main St, Austin, TX 73301" -217969,Apple Airpods Headphones,1,150,06/23/19 14:14,"503 Sunset St, San Francisco, CA 94016" -217970,Apple Airpods Headphones,1,150,06/22/19 18:02,"554 Meadow St, San Francisco, CA 94016" -217971,Wired Headphones,1,11.99,06/14/19 21:23,"324 Elm St, San Francisco, CA 94016" -217972,USB-C Charging Cable,1,11.95,06/18/19 18:37,"633 Chestnut St, San Francisco, CA 94016" -217973,27in FHD Monitor,1,149.99,06/22/19 10:45,"535 11th St, New York City, NY 10001" -217974,ThinkPad Laptop,1,999.99,06/19/19 17:50,"101 Walnut St, Seattle, WA 98101" -217975,AAA Batteries (4-pack),1,2.99,06/15/19 20:51,"47 11th St, Boston, MA 02215" -217976,iPhone,1,700,06/13/19 09:42,"620 Lincoln St, San Francisco, CA 94016" -217977,Lightning Charging Cable,1,14.95,06/30/19 23:28,"229 Church St, Dallas, TX 75001" -217978,Apple Airpods Headphones,1,150,06/28/19 16:54,"933 Highland St, Los Angeles, CA 90001" -217979,ThinkPad Laptop,1,999.99,06/12/19 08:14,"967 6th St, Dallas, TX 75001" -217980,27in 4K Gaming Monitor,1,389.99,06/20/19 19:32,"858 Washington St, Los Angeles, CA 90001" -217980,ThinkPad Laptop,1,999.99,06/20/19 19:32,"858 Washington St, Los Angeles, CA 90001" -217981,Bose SoundSport Headphones,1,99.99,06/01/19 11:53,"935 Cedar St, Boston, MA 02215" -217982,AA Batteries (4-pack),1,3.84,06/04/19 10:35,"462 Chestnut St, New York City, NY 10001" -217983,Bose SoundSport Headphones,1,99.99,06/12/19 14:32,"486 Hill St, Portland, OR 97035" -217984,AAA Batteries (4-pack),2,2.99,06/24/19 23:34,"245 Adams St, San Francisco, CA 94016" -217985,27in 4K Gaming Monitor,1,389.99,06/18/19 00:21,"645 Maple St, New York City, NY 10001" -217986,iPhone,1,700,06/25/19 22:33,"428 Ridge St, Portland, OR 97035" -217987,Apple Airpods Headphones,1,150,06/16/19 18:12,"753 North St, San Francisco, CA 94016" -217988,AA Batteries (4-pack),1,3.84,06/30/19 17:14,"682 9th St, San Francisco, CA 94016" -217989,Wired Headphones,1,11.99,06/04/19 11:28,"488 11th St, Boston, MA 02215" -217990,Wired Headphones,1,11.99,06/21/19 12:47,"408 Dogwood St, New York City, NY 10001" -217991,iPhone,1,700,06/02/19 17:17,"987 14th St, San Francisco, CA 94016" -217992,USB-C Charging Cable,1,11.95,06/16/19 11:10,"48 North St, Los Angeles, CA 90001" -217993,USB-C Charging Cable,1,11.95,06/22/19 14:05,"194 14th St, San Francisco, CA 94016" -217994,AAA Batteries (4-pack),3,2.99,06/13/19 16:42,"574 Lakeview St, Portland, ME 04101" -217995,Vareebadd Phone,1,400,06/12/19 11:42,"383 Pine St, San Francisco, CA 94016" -217995,Wired Headphones,1,11.99,06/12/19 11:42,"383 Pine St, San Francisco, CA 94016" -217996,Lightning Charging Cable,1,14.95,06/02/19 07:58,"283 Church St, Austin, TX 73301" -217997,Bose SoundSport Headphones,1,99.99,06/01/19 19:25,"767 North St, San Francisco, CA 94016" -217998,Apple Airpods Headphones,1,150,06/02/19 15:37,"554 Washington St, Dallas, TX 75001" -217999,Google Phone,1,600,06/13/19 14:54,"533 Park St, Atlanta, GA 30301" -218000,ThinkPad Laptop,1,999.99,06/12/19 15:41,"924 Wilson St, San Francisco, CA 94016" -218001,27in FHD Monitor,1,149.99,06/15/19 22:09,"33 Johnson St, Los Angeles, CA 90001" -218002,iPhone,1,700,06/28/19 09:45,"332 Jackson St, New York City, NY 10001" -218003,USB-C Charging Cable,1,11.95,06/10/19 19:44,"801 Cherry St, Boston, MA 02215" -218004,Bose SoundSport Headphones,1,99.99,06/16/19 21:48,"310 Meadow St, Seattle, WA 98101" -218005,AAA Batteries (4-pack),1,2.99,06/05/19 11:45,"550 10th St, San Francisco, CA 94016" -218006,34in Ultrawide Monitor,1,379.99,06/02/19 17:03,"473 Jefferson St, Los Angeles, CA 90001" -218007,Wired Headphones,1,11.99,06/06/19 13:23,"755 1st St, Atlanta, GA 30301" -218008,AAA Batteries (4-pack),1,2.99,06/02/19 12:42,"575 Jefferson St, San Francisco, CA 94016" -218009,AAA Batteries (4-pack),1,2.99,06/03/19 23:36,"189 Washington St, Portland, OR 97035" -218010,USB-C Charging Cable,1,11.95,06/03/19 06:43,"302 Cherry St, Portland, ME 04101" -218011,Bose SoundSport Headphones,1,99.99,06/06/19 20:56,"547 Walnut St, Atlanta, GA 30301" -218012,USB-C Charging Cable,1,11.95,06/23/19 09:47,"517 Jackson St, Los Angeles, CA 90001" -218013,Macbook Pro Laptop,1,1700,06/08/19 20:45,"891 Lakeview St, San Francisco, CA 94016" -218014,Google Phone,1,600,06/21/19 22:19,"255 River St, Los Angeles, CA 90001" -218015,Bose SoundSport Headphones,1,99.99,06/14/19 16:16,"208 Cherry St, Seattle, WA 98101" -218016,27in 4K Gaming Monitor,1,389.99,06/13/19 12:24,"325 9th St, San Francisco, CA 94016" -218017,27in 4K Gaming Monitor,1,389.99,06/06/19 13:31,"20 5th St, Dallas, TX 75001" -218018,Bose SoundSport Headphones,1,99.99,06/05/19 19:24,"43 5th St, Los Angeles, CA 90001" -218019,34in Ultrawide Monitor,1,379.99,06/08/19 16:24,"306 11th St, Dallas, TX 75001" -218020,ThinkPad Laptop,1,999.99,06/23/19 20:21,"576 Meadow St, New York City, NY 10001" -218021,Apple Airpods Headphones,1,150,06/04/19 16:24,"983 Pine St, San Francisco, CA 94016" -218022,Apple Airpods Headphones,1,150,06/19/19 12:15,"808 River St, Austin, TX 73301" -218023,iPhone,1,700,06/20/19 19:47,"960 Lakeview St, San Francisco, CA 94016" -218023,Lightning Charging Cable,2,14.95,06/20/19 19:47,"960 Lakeview St, San Francisco, CA 94016" -218024,27in 4K Gaming Monitor,1,389.99,06/20/19 14:59,"764 Elm St, New York City, NY 10001" -218025,Flatscreen TV,1,300,06/02/19 08:17,"177 Jackson St, New York City, NY 10001" -218026,AAA Batteries (4-pack),1,2.99,06/24/19 06:59,"859 Cherry St, Seattle, WA 98101" -218027,Bose SoundSport Headphones,1,99.99,06/07/19 00:40,"369 West St, New York City, NY 10001" -218028,USB-C Charging Cable,1,11.95,06/26/19 20:54,"449 South St, Seattle, WA 98101" -218029,27in 4K Gaming Monitor,1,389.99,06/15/19 10:27,"398 Chestnut St, Dallas, TX 75001" -218030,Lightning Charging Cable,1,14.95,06/10/19 17:33,"308 Chestnut St, San Francisco, CA 94016" -218031,Google Phone,1,600,06/30/19 23:56,"964 Wilson St, San Francisco, CA 94016" -218032,USB-C Charging Cable,1,11.95,06/09/19 10:08,"256 14th St, San Francisco, CA 94016" -218033,USB-C Charging Cable,1,11.95,06/09/19 08:15,"148 Highland St, Los Angeles, CA 90001" -218034,AA Batteries (4-pack),1,3.84,06/04/19 14:01,"357 Elm St, Portland, OR 97035" -218035,iPhone,1,700,06/23/19 17:48,"606 Sunset St, Seattle, WA 98101" -218036,27in FHD Monitor,1,149.99,06/22/19 14:35,"579 West St, New York City, NY 10001" -218037,34in Ultrawide Monitor,1,379.99,06/30/19 19:39,"177 11th St, Dallas, TX 75001" -218038,Wired Headphones,1,11.99,06/15/19 22:02,"655 13th St, Dallas, TX 75001" -218039,27in 4K Gaming Monitor,1,389.99,06/19/19 09:52,"8 8th St, Atlanta, GA 30301" -218040,USB-C Charging Cable,2,11.95,06/30/19 15:21,"822 Main St, San Francisco, CA 94016" -218041,Wired Headphones,1,11.99,06/03/19 18:30,"273 Highland St, San Francisco, CA 94016" -218042,Apple Airpods Headphones,1,150,06/02/19 13:51,"964 West St, San Francisco, CA 94016" -218043,Lightning Charging Cable,1,14.95,06/15/19 09:13,"695 2nd St, Dallas, TX 75001" -218044,Bose SoundSport Headphones,1,99.99,06/24/19 13:06,"485 1st St, Atlanta, GA 30301" -218045,Apple Airpods Headphones,1,150,06/26/19 23:02,"833 Washington St, Boston, MA 02215" -218046,AA Batteries (4-pack),1,3.84,06/05/19 20:00,"917 West St, Portland, ME 04101" -218047,Wired Headphones,1,11.99,06/01/19 18:12,"209 Madison St, San Francisco, CA 94016" -218048,20in Monitor,1,109.99,06/17/19 11:25,"554 Hickory St, Dallas, TX 75001" -218049,20in Monitor,1,109.99,06/19/19 14:09,"289 Lake St, San Francisco, CA 94016" -218050,Lightning Charging Cable,1,14.95,06/13/19 08:47,"312 Chestnut St, San Francisco, CA 94016" -218051,Google Phone,1,600,06/18/19 12:30,"147 Ridge St, San Francisco, CA 94016" -218051,Wired Headphones,1,11.99,06/18/19 12:30,"147 Ridge St, San Francisco, CA 94016" -218052,Bose SoundSport Headphones,1,99.99,06/15/19 23:51,"672 West St, Portland, OR 97035" -218053,ThinkPad Laptop,1,999.99,06/04/19 10:24,"665 7th St, Dallas, TX 75001" -218054,Wired Headphones,1,11.99,06/27/19 11:33,"255 13th St, Boston, MA 02215" -218055,ThinkPad Laptop,1,999.99,06/26/19 21:57,"442 7th St, Portland, OR 97035" -218056,34in Ultrawide Monitor,1,379.99,06/24/19 09:42,"497 11th St, Los Angeles, CA 90001" -218057,Apple Airpods Headphones,1,150,06/15/19 18:29,"16 Madison St, San Francisco, CA 94016" -218057,AA Batteries (4-pack),1,3.84,06/15/19 18:29,"16 Madison St, San Francisco, CA 94016" -218058,AAA Batteries (4-pack),2,2.99,06/28/19 12:12,"545 12th St, San Francisco, CA 94016" -218059,Macbook Pro Laptop,1,1700,06/18/19 11:52,"231 11th St, Atlanta, GA 30301" -218060,AAA Batteries (4-pack),2,2.99,06/14/19 18:33,"247 Main St, San Francisco, CA 94016" -218061,Apple Airpods Headphones,1,150,06/29/19 18:23,"394 Cherry St, Atlanta, GA 30301" -218062,iPhone,1,700,06/04/19 13:37,"799 Meadow St, San Francisco, CA 94016" -218062,Apple Airpods Headphones,1,150,06/04/19 13:37,"799 Meadow St, San Francisco, CA 94016" -218063,Wired Headphones,1,11.99,06/15/19 14:37,"303 Main St, San Francisco, CA 94016" -218064,AA Batteries (4-pack),1,3.84,06/28/19 20:10,"890 River St, New York City, NY 10001" -218065,USB-C Charging Cable,1,11.95,06/13/19 21:04,"108 Hickory St, New York City, NY 10001" -218066,Bose SoundSport Headphones,1,99.99,06/24/19 09:37,"135 Highland St, Los Angeles, CA 90001" -218067,AAA Batteries (4-pack),1,2.99,06/19/19 01:03,"257 2nd St, Atlanta, GA 30301" -218068,Apple Airpods Headphones,1,150,06/01/19 16:27,"186 Hickory St, Los Angeles, CA 90001" -218069,AA Batteries (4-pack),1,3.84,06/06/19 16:59,"88 Madison St, Atlanta, GA 30301" -218070,AAA Batteries (4-pack),1,2.99,06/06/19 11:03,"797 Walnut St, Los Angeles, CA 90001" -218071,Lightning Charging Cable,1,14.95,06/18/19 18:01,"25 Cherry St, Los Angeles, CA 90001" -218072,AA Batteries (4-pack),1,3.84,06/23/19 19:34,"539 10th St, San Francisco, CA 94016" -218073,Bose SoundSport Headphones,1,99.99,06/23/19 09:38,"584 Ridge St, Austin, TX 73301" -218074,iPhone,1,700,06/06/19 12:03,"708 Elm St, New York City, NY 10001" -218075,Bose SoundSport Headphones,1,99.99,06/14/19 07:24,"940 8th St, Boston, MA 02215" -218076,AA Batteries (4-pack),2,3.84,06/12/19 11:38,"224 1st St, San Francisco, CA 94016" -218077,AAA Batteries (4-pack),1,2.99,06/29/19 21:59,"843 Cherry St, New York City, NY 10001" -218078,Bose SoundSport Headphones,1,99.99,06/17/19 19:49,"26 River St, Portland, OR 97035" -218079,AAA Batteries (4-pack),1,2.99,06/25/19 03:29,"410 Cedar St, San Francisco, CA 94016" -218080,iPhone,1,700,06/15/19 12:56,"843 Johnson St, New York City, NY 10001" -218080,Lightning Charging Cable,1,14.95,06/15/19 12:56,"843 Johnson St, New York City, NY 10001" -218080,Apple Airpods Headphones,1,150,06/15/19 12:56,"843 Johnson St, New York City, NY 10001" -218081,AA Batteries (4-pack),1,3.84,06/08/19 16:36,"511 Cherry St, Atlanta, GA 30301" -218082,iPhone,1,700,06/25/19 21:12,"488 Elm St, Los Angeles, CA 90001" -218082,Lightning Charging Cable,1,14.95,06/25/19 21:12,"488 Elm St, Los Angeles, CA 90001" -218083,iPhone,1,700,06/20/19 18:55,"83 Elm St, Portland, ME 04101" -218084,AA Batteries (4-pack),1,3.84,06/29/19 18:52,"395 Walnut St, San Francisco, CA 94016" -218085,Lightning Charging Cable,1,14.95,06/08/19 18:56,"382 Willow St, Seattle, WA 98101" -218086,iPhone,1,700,06/14/19 15:53,"477 River St, Boston, MA 02215" -218087,AA Batteries (4-pack),1,3.84,06/24/19 15:56,"400 Sunset St, Los Angeles, CA 90001" -218088,27in FHD Monitor,1,149.99,06/28/19 17:56,"652 Meadow St, Los Angeles, CA 90001" -218089,USB-C Charging Cable,2,11.95,06/14/19 22:47,"342 9th St, Seattle, WA 98101" -218090,USB-C Charging Cable,2,11.95,06/01/19 21:21,"258 Jefferson St, Boston, MA 02215" -218091,AA Batteries (4-pack),1,3.84,06/09/19 17:28,"375 West St, Dallas, TX 75001" -218092,USB-C Charging Cable,1,11.95,06/02/19 22:44,"971 Chestnut St, Atlanta, GA 30301" -218093,Lightning Charging Cable,1,14.95,06/01/19 18:55,"115 Park St, Atlanta, GA 30301" -218094,Lightning Charging Cable,1,14.95,06/04/19 18:07,"852 Highland St, Portland, ME 04101" -218095,Wired Headphones,1,11.99,06/08/19 16:15,"739 Cherry St, Portland, OR 97035" -218096,Vareebadd Phone,1,400,06/25/19 16:22,"684 Dogwood St, New York City, NY 10001" -218097,Wired Headphones,1,11.99,06/24/19 16:34,"979 Sunset St, Atlanta, GA 30301" -218098,AAA Batteries (4-pack),2,2.99,06/03/19 11:39,"572 Jackson St, Los Angeles, CA 90001" -218099,AAA Batteries (4-pack),1,2.99,06/10/19 08:59,"405 Lake St, Dallas, TX 75001" -218100,Wired Headphones,1,11.99,06/06/19 11:08,"640 4th St, Atlanta, GA 30301" -218101,Bose SoundSport Headphones,1,99.99,06/15/19 11:54,"403 Wilson St, New York City, NY 10001" -218102,27in 4K Gaming Monitor,1,389.99,06/03/19 14:22,"94 4th St, Portland, OR 97035" -218103,Flatscreen TV,1,300,06/11/19 20:10,"349 Jackson St, Austin, TX 73301" -218104,iPhone,1,700,06/28/19 13:26,"877 10th St, New York City, NY 10001" -218105,AA Batteries (4-pack),1,3.84,06/22/19 00:23,"15 5th St, Austin, TX 73301" -218106,27in FHD Monitor,1,149.99,06/03/19 18:34,"85 6th St, Austin, TX 73301" -218106,Lightning Charging Cable,1,14.95,06/03/19 18:34,"85 6th St, Austin, TX 73301" -218107,AAA Batteries (4-pack),1,2.99,06/22/19 12:55,"931 Lakeview St, New York City, NY 10001" -218108,Wired Headphones,1,11.99,06/08/19 23:06,"782 4th St, San Francisco, CA 94016" -218109,iPhone,1,700,06/25/19 12:25,"382 Madison St, Boston, MA 02215" -218109,Lightning Charging Cable,1,14.95,06/25/19 12:25,"382 Madison St, Boston, MA 02215" -218109,Wired Headphones,2,11.99,06/25/19 12:25,"382 Madison St, Boston, MA 02215" -218110,AAA Batteries (4-pack),1,2.99,06/20/19 23:20,"526 Forest St, Dallas, TX 75001" -218111,Wired Headphones,1,11.99,06/05/19 22:07,"201 Ridge St, San Francisco, CA 94016" -218112,AAA Batteries (4-pack),1,2.99,06/18/19 11:29,"350 4th St, Austin, TX 73301" -218113,USB-C Charging Cable,1,11.95,06/01/19 17:27,"91 Maple St, Atlanta, GA 30301" -218114,AA Batteries (4-pack),1,3.84,06/21/19 18:23,"984 12th St, San Francisco, CA 94016" -218115,Lightning Charging Cable,1,14.95,06/17/19 11:44,"594 Jackson St, Seattle, WA 98101" -218116,iPhone,1,700,06/01/19 12:09,"163 2nd St, Seattle, WA 98101" -218116,Apple Airpods Headphones,1,150,06/01/19 12:09,"163 2nd St, Seattle, WA 98101" -218117,27in 4K Gaming Monitor,1,389.99,06/08/19 21:35,"1 4th St, Boston, MA 02215" -218118,AA Batteries (4-pack),2,3.84,06/06/19 17:22,"416 Forest St, Seattle, WA 98101" -218119,USB-C Charging Cable,1,11.95,06/13/19 11:24,"708 South St, New York City, NY 10001" -218120,iPhone,1,700,06/08/19 15:35,"266 West St, New York City, NY 10001" -218121,34in Ultrawide Monitor,1,379.99,06/30/19 20:49,"782 Lincoln St, San Francisco, CA 94016" -218122,AA Batteries (4-pack),2,3.84,06/08/19 11:59,"510 Chestnut St, Boston, MA 02215" -218123,AA Batteries (4-pack),2,3.84,06/10/19 15:25,"643 11th St, San Francisco, CA 94016" -218124,Apple Airpods Headphones,1,150,06/11/19 11:14,"592 North St, Los Angeles, CA 90001" -218125,USB-C Charging Cable,1,11.95,06/25/19 09:47,"423 Willow St, New York City, NY 10001" -218126,AA Batteries (4-pack),1,3.84,06/03/19 12:58,"851 Jefferson St, Boston, MA 02215" -218127,AA Batteries (4-pack),1,3.84,06/16/19 13:00,"149 Main St, Austin, TX 73301" -218128,USB-C Charging Cable,1,11.95,06/28/19 15:17,"642 7th St, Atlanta, GA 30301" -218129,AAA Batteries (4-pack),1,2.99,06/07/19 17:27,"478 Forest St, Los Angeles, CA 90001" -218130,Apple Airpods Headphones,1,150,06/14/19 08:48,"516 Wilson St, Boston, MA 02215" -218131,USB-C Charging Cable,1,11.95,06/23/19 11:44,"831 6th St, San Francisco, CA 94016" -218132,USB-C Charging Cable,1,11.95,06/11/19 09:11,"635 4th St, San Francisco, CA 94016" -218133,Google Phone,1,600,06/29/19 23:01,"944 14th St, San Francisco, CA 94016" -218134,Wired Headphones,1,11.99,06/27/19 13:03,"659 Walnut St, Los Angeles, CA 90001" -218135,AA Batteries (4-pack),1,3.84,06/05/19 12:13,"419 Meadow St, Boston, MA 02215" -218136,Bose SoundSport Headphones,1,99.99,06/11/19 19:14,"89 Hill St, Atlanta, GA 30301" -218137,USB-C Charging Cable,1,11.95,06/24/19 08:42,"362 Maple St, Seattle, WA 98101" -218138,27in 4K Gaming Monitor,1,389.99,06/04/19 09:12,"865 Johnson St, New York City, NY 10001" -218139,Lightning Charging Cable,1,14.95,06/02/19 14:24,"99 Ridge St, San Francisco, CA 94016" -218140,AA Batteries (4-pack),1,3.84,06/25/19 13:10,"278 Johnson St, Los Angeles, CA 90001" -218141,Apple Airpods Headphones,1,150,06/13/19 17:33,"343 5th St, Portland, OR 97035" -218142,AAA Batteries (4-pack),2,2.99,06/04/19 06:02,"407 7th St, Boston, MA 02215" -218143,AAA Batteries (4-pack),1,2.99,06/28/19 13:11,"4 1st St, New York City, NY 10001" -218144,Bose SoundSport Headphones,1,99.99,06/14/19 18:30,"444 Johnson St, Atlanta, GA 30301" -218145,AAA Batteries (4-pack),2,2.99,06/26/19 22:46,"583 Elm St, Portland, OR 97035" -218146,Macbook Pro Laptop,1,1700,06/11/19 22:08,"156 Maple St, San Francisco, CA 94016" -218147,Lightning Charging Cable,1,14.95,06/03/19 11:55,"153 13th St, Austin, TX 73301" -218148,AA Batteries (4-pack),2,3.84,06/03/19 09:52,"59 12th St, San Francisco, CA 94016" -218149,AAA Batteries (4-pack),2,2.99,06/09/19 18:07,"994 Forest St, Seattle, WA 98101" -218150,AA Batteries (4-pack),1,3.84,06/08/19 19:49,"929 Highland St, San Francisco, CA 94016" -218151,AAA Batteries (4-pack),2,2.99,06/16/19 22:38,"925 Chestnut St, San Francisco, CA 94016" -218152,USB-C Charging Cable,1,11.95,06/16/19 11:30,"841 Lake St, Austin, TX 73301" -218153,AA Batteries (4-pack),1,3.84,06/09/19 20:18,"257 Sunset St, Austin, TX 73301" -218154,Google Phone,1,600,06/10/19 14:44,"279 River St, Boston, MA 02215" -218154,USB-C Charging Cable,2,11.95,06/10/19 14:44,"279 River St, Boston, MA 02215" -218155,Apple Airpods Headphones,1,150,06/11/19 14:54,"720 Jackson St, Portland, OR 97035" -218156,27in 4K Gaming Monitor,1,389.99,06/14/19 14:03,"412 2nd St, San Francisco, CA 94016" -218157,iPhone,1,700,06/19/19 06:56,"739 Madison St, New York City, NY 10001" -218158,Bose SoundSport Headphones,1,99.99,06/27/19 10:39,"331 2nd St, Los Angeles, CA 90001" -218159,Google Phone,1,600,06/20/19 12:35,"760 2nd St, Seattle, WA 98101" -218160,Lightning Charging Cable,1,14.95,06/01/19 20:42,"938 Center St, Austin, TX 73301" -218161,Apple Airpods Headphones,1,150,06/30/19 11:05,"216 Hickory St, New York City, NY 10001" -218162,ThinkPad Laptop,1,999.99,06/04/19 16:18,"843 Adams St, New York City, NY 10001" -218163,Lightning Charging Cable,1,14.95,06/01/19 23:26,"986 11th St, Los Angeles, CA 90001" -218164,AA Batteries (4-pack),2,3.84,06/06/19 12:53,"162 Maple St, Dallas, TX 75001" -218165,Lightning Charging Cable,1,14.95,06/28/19 15:58,"449 Chestnut St, Portland, OR 97035" -218166,AAA Batteries (4-pack),2,2.99,06/15/19 19:04,"592 14th St, New York City, NY 10001" -218167,iPhone,1,700,06/18/19 03:07,"455 West St, Dallas, TX 75001" -218168,ThinkPad Laptop,1,999.99,06/08/19 21:47,"456 11th St, Portland, OR 97035" -218169,USB-C Charging Cable,1,11.95,06/15/19 16:08,"465 Sunset St, San Francisco, CA 94016" -218170,Lightning Charging Cable,1,14.95,06/20/19 13:09,"687 Forest St, Los Angeles, CA 90001" -218171,Lightning Charging Cable,1,14.95,06/02/19 17:26,"466 Wilson St, Seattle, WA 98101" -218172,34in Ultrawide Monitor,1,379.99,06/18/19 12:36,"862 Highland St, Atlanta, GA 30301" -218173,Wired Headphones,1,11.99,06/03/19 20:11,"982 Ridge St, Seattle, WA 98101" -218174,AAA Batteries (4-pack),1,2.99,06/06/19 23:08,"232 Meadow St, Los Angeles, CA 90001" -218175,Wired Headphones,1,11.99,06/09/19 11:59,"996 Hickory St, San Francisco, CA 94016" -218176,27in 4K Gaming Monitor,1,389.99,06/26/19 13:36,"771 11th St, New York City, NY 10001" -218177,AAA Batteries (4-pack),2,2.99,06/23/19 23:05,"9 11th St, Los Angeles, CA 90001" -218178,Bose SoundSport Headphones,1,99.99,06/23/19 12:46,"397 Sunset St, San Francisco, CA 94016" -218179,Wired Headphones,1,11.99,06/29/19 16:48,"960 Sunset St, Portland, OR 97035" -218180,iPhone,1,700,06/24/19 14:43,"96 13th St, New York City, NY 10001" -218181,AA Batteries (4-pack),1,3.84,06/03/19 10:05,"115 Jefferson St, Boston, MA 02215" -218182,iPhone,1,700,06/16/19 18:58,"440 Maple St, Boston, MA 02215" -218182,Apple Airpods Headphones,1,150,06/16/19 18:58,"440 Maple St, Boston, MA 02215" -218183,USB-C Charging Cable,1,11.95,06/26/19 16:15,"903 Hill St, Atlanta, GA 30301" -218184,iPhone,1,700,06/28/19 11:05,"19 2nd St, Los Angeles, CA 90001" -218185,AA Batteries (4-pack),2,3.84,06/06/19 18:13,"103 Church St, Boston, MA 02215" -218186,20in Monitor,1,109.99,06/13/19 19:00,"223 Adams St, New York City, NY 10001" -218187,27in 4K Gaming Monitor,1,389.99,06/12/19 19:20,"529 Sunset St, Boston, MA 02215" -218188,Lightning Charging Cable,1,14.95,06/13/19 12:25,"50 8th St, San Francisco, CA 94016" -218189,USB-C Charging Cable,1,11.95,06/01/19 20:52,"144 Center St, Portland, OR 97035" -218190,Wired Headphones,1,11.99,06/23/19 19:29,"745 Hill St, Dallas, TX 75001" -218191,Lightning Charging Cable,1,14.95,06/03/19 14:21,"918 Maple St, Austin, TX 73301" -218192,AAA Batteries (4-pack),1,2.99,06/25/19 19:21,"533 Adams St, San Francisco, CA 94016" -218193,AAA Batteries (4-pack),1,2.99,06/05/19 14:18,"686 Maple St, Seattle, WA 98101" -218194,Google Phone,1,600,06/06/19 10:37,"111 Meadow St, Atlanta, GA 30301" -218195,27in 4K Gaming Monitor,1,389.99,06/11/19 13:05,"665 Willow St, Seattle, WA 98101" -218196,Apple Airpods Headphones,1,150,06/22/19 11:28,"123 Highland St, Portland, ME 04101" -218197,AAA Batteries (4-pack),2,2.99,06/23/19 03:47,"772 Hill St, New York City, NY 10001" -218198,Lightning Charging Cable,1,14.95,06/18/19 16:52,"911 Spruce St, Los Angeles, CA 90001" -218199,34in Ultrawide Monitor,1,379.99,06/12/19 12:26,"35 River St, Seattle, WA 98101" -218200,AAA Batteries (4-pack),1,2.99,06/02/19 21:49,"121 Hill St, New York City, NY 10001" -218201,Apple Airpods Headphones,1,150,06/28/19 18:32,"376 Ridge St, Atlanta, GA 30301" -218202,AAA Batteries (4-pack),1,2.99,06/08/19 21:52,"499 Center St, Los Angeles, CA 90001" -218203,AA Batteries (4-pack),1,3.84,06/22/19 06:37,"73 Madison St, Atlanta, GA 30301" -218204,iPhone,1,700,06/19/19 23:12,"152 West St, Boston, MA 02215" -218205,ThinkPad Laptop,1,999.99,06/17/19 00:14,"130 Elm St, Austin, TX 73301" -218206,Macbook Pro Laptop,1,1700,06/28/19 17:04,"258 11th St, Boston, MA 02215" -218207,ThinkPad Laptop,1,999.99,06/28/19 23:32,"223 9th St, San Francisco, CA 94016" -218208,Lightning Charging Cable,1,14.95,06/29/19 06:39,"251 Meadow St, Portland, OR 97035" -218209,Apple Airpods Headphones,1,150,06/06/19 12:05,"569 5th St, Seattle, WA 98101" -218210,Apple Airpods Headphones,1,150,06/16/19 15:30,"392 12th St, Atlanta, GA 30301" -218211,Lightning Charging Cable,1,14.95,06/24/19 11:01,"814 Madison St, Portland, OR 97035" -218212,27in 4K Gaming Monitor,1,389.99,06/01/19 11:49,"350 Highland St, San Francisco, CA 94016" -218213,Bose SoundSport Headphones,1,99.99,06/12/19 23:48,"242 Center St, New York City, NY 10001" -218214,AA Batteries (4-pack),2,3.84,06/19/19 19:27,"30 10th St, Portland, OR 97035" -218215,Apple Airpods Headphones,1,150,06/09/19 14:03,"795 Walnut St, Dallas, TX 75001" -218216,27in 4K Gaming Monitor,1,389.99,06/10/19 20:20,"647 6th St, Seattle, WA 98101" -218217,AA Batteries (4-pack),2,3.84,06/13/19 20:54,"989 Park St, Boston, MA 02215" -218218,AAA Batteries (4-pack),1,2.99,06/08/19 17:33,"228 13th St, Atlanta, GA 30301" -218219,Bose SoundSport Headphones,1,99.99,06/02/19 10:08,"25 Pine St, San Francisco, CA 94016" -218220,Google Phone,1,600,06/21/19 20:20,"665 Adams St, Los Angeles, CA 90001" -218221,AAA Batteries (4-pack),1,2.99,06/14/19 22:43,"690 10th St, San Francisco, CA 94016" -218222,27in FHD Monitor,1,149.99,06/26/19 17:19,"551 Forest St, Boston, MA 02215" -218223,USB-C Charging Cable,2,11.95,06/12/19 11:53,"824 Jackson St, Boston, MA 02215" -218224,USB-C Charging Cable,1,11.95,06/29/19 08:34,"485 River St, Los Angeles, CA 90001" -218225,27in 4K Gaming Monitor,1,389.99,06/26/19 12:10,"61 Lake St, New York City, NY 10001" -218226,USB-C Charging Cable,1,11.95,06/01/19 08:37,"639 Highland St, New York City, NY 10001" -218227,iPhone,1,700,06/18/19 15:58,"742 West St, Atlanta, GA 30301" -218228,USB-C Charging Cable,1,11.95,06/04/19 20:42,"327 11th St, San Francisco, CA 94016" -218229,USB-C Charging Cable,1,11.95,06/21/19 21:38,"162 Cherry St, San Francisco, CA 94016" -218230,AA Batteries (4-pack),1,3.84,06/21/19 22:23,"965 Main St, San Francisco, CA 94016" -218231,USB-C Charging Cable,1,11.95,06/06/19 10:52,"761 Elm St, Portland, OR 97035" -218232,AAA Batteries (4-pack),2,2.99,06/26/19 21:47,"250 Sunset St, Seattle, WA 98101" -218233,USB-C Charging Cable,2,11.95,06/07/19 11:17,"893 Willow St, San Francisco, CA 94016" -218234,Apple Airpods Headphones,1,150,06/24/19 17:27,"601 Maple St, Los Angeles, CA 90001" -218235,AA Batteries (4-pack),2,3.84,06/26/19 22:12,"968 Cedar St, Dallas, TX 75001" -218236,Macbook Pro Laptop,1,1700,06/19/19 23:04,"924 7th St, Boston, MA 02215" -218237,USB-C Charging Cable,1,11.95,06/05/19 09:25,"14 Walnut St, San Francisco, CA 94016" -218238,iPhone,1,700,06/06/19 11:38,"235 Lincoln St, Boston, MA 02215" -218239,Bose SoundSport Headphones,1,99.99,06/11/19 21:33,"63 Johnson St, San Francisco, CA 94016" -218240,AA Batteries (4-pack),1,3.84,06/11/19 14:02,"202 Pine St, Los Angeles, CA 90001" -218241,USB-C Charging Cable,1,11.95,06/14/19 18:26,"423 Ridge St, San Francisco, CA 94016" -218242,Lightning Charging Cable,1,14.95,06/20/19 16:30,"650 Johnson St, Dallas, TX 75001" -218243,AA Batteries (4-pack),3,3.84,06/02/19 19:40,"463 14th St, Dallas, TX 75001" -218244,AA Batteries (4-pack),2,3.84,06/06/19 14:13,"197 11th St, Los Angeles, CA 90001" -218244,ThinkPad Laptop,1,999.99,06/06/19 14:13,"197 11th St, Los Angeles, CA 90001" -218245,iPhone,1,700,06/11/19 01:17,"703 12th St, Dallas, TX 75001" -218245,Lightning Charging Cable,1,14.95,06/11/19 01:17,"703 12th St, Dallas, TX 75001" -218246,AA Batteries (4-pack),1,3.84,06/29/19 15:09,"615 Sunset St, Los Angeles, CA 90001" -218247,Bose SoundSport Headphones,1,99.99,06/09/19 20:22,"151 6th St, Los Angeles, CA 90001" -218248,Apple Airpods Headphones,1,150,06/29/19 14:16,"721 Maple St, Los Angeles, CA 90001" -218249,Flatscreen TV,1,300,06/16/19 08:39,"825 Jackson St, San Francisco, CA 94016" -218250,AAA Batteries (4-pack),3,2.99,06/17/19 11:16,"106 Meadow St, Seattle, WA 98101" -218251,Lightning Charging Cable,2,14.95,06/12/19 11:47,"990 West St, New York City, NY 10001" -218252,AA Batteries (4-pack),1,3.84,06/26/19 18:05,"598 4th St, Dallas, TX 75001" -218253,AA Batteries (4-pack),2,3.84,06/20/19 23:22,"298 12th St, San Francisco, CA 94016" -218254,27in 4K Gaming Monitor,1,389.99,06/14/19 11:16,"738 South St, San Francisco, CA 94016" -218255,20in Monitor,1,109.99,06/19/19 11:03,"880 Pine St, Dallas, TX 75001" -218256,Bose SoundSport Headphones,1,99.99,06/26/19 14:23,"741 Highland St, New York City, NY 10001" -218257,Flatscreen TV,1,300,06/24/19 09:41,"735 12th St, Seattle, WA 98101" -218258,Wired Headphones,1,11.99,06/06/19 10:06,"838 Willow St, New York City, NY 10001" -218259,Google Phone,1,600,06/24/19 19:26,"968 12th St, San Francisco, CA 94016" -218260,Google Phone,1,600,06/23/19 19:24,"627 Lincoln St, New York City, NY 10001" -218261,ThinkPad Laptop,1,999.99,06/02/19 13:41,"588 North St, San Francisco, CA 94016" -218262,Wired Headphones,1,11.99,06/07/19 15:46,"569 Park St, Boston, MA 02215" -218263,AA Batteries (4-pack),1,3.84,06/04/19 08:45,"862 Washington St, Dallas, TX 75001" -218264,Apple Airpods Headphones,1,150,06/18/19 15:10,"515 11th St, San Francisco, CA 94016" -218265,USB-C Charging Cable,1,11.95,06/20/19 14:42,"505 Hill St, San Francisco, CA 94016" -218266,27in 4K Gaming Monitor,1,389.99,06/18/19 17:50,"413 Chestnut St, Seattle, WA 98101" -218267,USB-C Charging Cable,1,11.95,06/26/19 10:58,"58 1st St, Dallas, TX 75001" -218268,Apple Airpods Headphones,1,150,06/27/19 10:32,"884 Spruce St, Los Angeles, CA 90001" -218269,USB-C Charging Cable,1,11.95,06/03/19 22:29,"65 Wilson St, San Francisco, CA 94016" -218270,Bose SoundSport Headphones,1,99.99,06/08/19 23:42,"19 Lake St, Los Angeles, CA 90001" -218271,Wired Headphones,1,11.99,06/22/19 06:05,"91 Park St, Atlanta, GA 30301" -218272,Lightning Charging Cable,1,14.95,06/25/19 05:40,"874 Ridge St, San Francisco, CA 94016" -218273,Wired Headphones,1,11.99,06/10/19 11:44,"56 2nd St, Seattle, WA 98101" -218274,iPhone,1,700,06/30/19 20:29,"156 Church St, San Francisco, CA 94016" -218274,Lightning Charging Cable,2,14.95,06/30/19 20:29,"156 Church St, San Francisco, CA 94016" -218275,Wired Headphones,1,11.99,06/29/19 14:54,"823 Johnson St, San Francisco, CA 94016" -218276,Lightning Charging Cable,1,14.95,06/08/19 21:05,"816 South St, San Francisco, CA 94016" -218277,Wired Headphones,1,11.99,06/02/19 23:04,"178 2nd St, Atlanta, GA 30301" -218278,27in FHD Monitor,1,149.99,06/06/19 11:11,"900 2nd St, San Francisco, CA 94016" -218279,Wired Headphones,1,11.99,06/18/19 18:41,"573 Park St, Atlanta, GA 30301" -218280,Lightning Charging Cable,1,14.95,06/18/19 18:07,"544 1st St, Boston, MA 02215" -218281,27in FHD Monitor,1,149.99,06/11/19 13:22,"548 Pine St, Portland, OR 97035" -218282,34in Ultrawide Monitor,1,379.99,06/03/19 11:01,"335 4th St, Seattle, WA 98101" -218283,Apple Airpods Headphones,1,150,06/01/19 08:38,"1 Hickory St, Boston, MA 02215" -218284,Lightning Charging Cable,1,14.95,06/08/19 17:45,"443 Lake St, Portland, OR 97035" -218285,AA Batteries (4-pack),1,3.84,06/09/19 14:59,"979 Forest St, Dallas, TX 75001" -218286,Apple Airpods Headphones,1,150,06/14/19 11:10,"311 1st St, New York City, NY 10001" -218287,USB-C Charging Cable,1,11.95,06/11/19 22:17,"230 Dogwood St, Boston, MA 02215" -218288,AAA Batteries (4-pack),2,2.99,06/03/19 18:00,"278 North St, New York City, NY 10001" -218289,AA Batteries (4-pack),1,3.84,06/28/19 09:09,"989 Pine St, San Francisco, CA 94016" -218290,Lightning Charging Cable,1,14.95,06/24/19 22:02,"15 Lincoln St, San Francisco, CA 94016" -218291,Wired Headphones,1,11.99,06/14/19 10:10,"367 South St, Los Angeles, CA 90001" -218292,Flatscreen TV,1,300,06/16/19 00:03,"309 Forest St, New York City, NY 10001" -218293,AA Batteries (4-pack),2,3.84,06/12/19 20:07,"523 Lakeview St, Atlanta, GA 30301" -218294,Google Phone,1,600,06/05/19 12:03,"327 Johnson St, Seattle, WA 98101" -218294,Bose SoundSport Headphones,1,99.99,06/05/19 12:03,"327 Johnson St, Seattle, WA 98101" -218295,USB-C Charging Cable,1,11.95,06/01/19 19:02,"931 South St, Seattle, WA 98101" -218296,Apple Airpods Headphones,1,150,06/17/19 15:51,"439 Cherry St, Los Angeles, CA 90001" -218297,AAA Batteries (4-pack),3,2.99,06/04/19 21:27,"783 14th St, Dallas, TX 75001" -218298,ThinkPad Laptop,1,999.99,06/13/19 09:46,"201 Elm St, Seattle, WA 98101" -218299,AA Batteries (4-pack),2,3.84,06/10/19 12:41,"540 Forest St, Atlanta, GA 30301" -218300,Apple Airpods Headphones,1,150,06/30/19 21:21,"941 11th St, Dallas, TX 75001" -218301,Lightning Charging Cable,1,14.95,06/02/19 08:43,"129 9th St, New York City, NY 10001" -218302,Lightning Charging Cable,1,14.95,06/04/19 13:15,"664 Jefferson St, Los Angeles, CA 90001" -218303,27in FHD Monitor,1,149.99,06/07/19 20:09,"39 Jefferson St, New York City, NY 10001" -218304,Wired Headphones,1,11.99,06/07/19 13:23,"623 Washington St, Seattle, WA 98101" -218305,AA Batteries (4-pack),1,3.84,06/10/19 21:42,"959 Main St, San Francisco, CA 94016" -218306,AAA Batteries (4-pack),1,2.99,06/06/19 18:48,"30 River St, San Francisco, CA 94016" -218307,Macbook Pro Laptop,1,1700,06/27/19 07:19,"688 Willow St, Portland, OR 97035" -218308,AA Batteries (4-pack),1,3.84,06/17/19 16:02,"423 Jackson St, Seattle, WA 98101" -218309,Lightning Charging Cable,1,14.95,06/18/19 21:52,"114 Pine St, Portland, OR 97035" -218310,Lightning Charging Cable,1,14.95,06/03/19 11:57,"214 2nd St, San Francisco, CA 94016" -218311,27in FHD Monitor,1,149.99,06/16/19 18:56,"881 Dogwood St, Atlanta, GA 30301" -218312,Wired Headphones,1,11.99,06/27/19 17:50,"609 Center St, Seattle, WA 98101" -218313,AAA Batteries (4-pack),1,2.99,06/10/19 11:47,"972 Cherry St, San Francisco, CA 94016" -218314,AA Batteries (4-pack),1,3.84,06/01/19 13:26,"371 Chestnut St, Boston, MA 02215" -218315,USB-C Charging Cable,1,11.95,06/06/19 00:49,"112 North St, Austin, TX 73301" -218316,Wired Headphones,2,11.99,06/12/19 14:34,"811 10th St, New York City, NY 10001" -218317,Lightning Charging Cable,1,14.95,06/10/19 21:56,"885 14th St, San Francisco, CA 94016" -218318,27in 4K Gaming Monitor,1,389.99,06/25/19 18:23,"236 Lincoln St, Los Angeles, CA 90001" -218319,USB-C Charging Cable,1,11.95,06/15/19 17:11,"472 Church St, New York City, NY 10001" -218320,AAA Batteries (4-pack),1,2.99,06/23/19 17:44,"567 Ridge St, Los Angeles, CA 90001" -218321,27in FHD Monitor,1,149.99,06/03/19 16:18,"237 Lake St, Portland, ME 04101" -218322,Bose SoundSport Headphones,1,99.99,06/02/19 23:27,"825 West St, New York City, NY 10001" -218323,AA Batteries (4-pack),2,3.84,06/13/19 12:32,"705 Center St, Los Angeles, CA 90001" -218324,Vareebadd Phone,1,400,06/09/19 21:40,"540 Adams St, Boston, MA 02215" -218324,USB-C Charging Cable,1,11.95,06/09/19 21:40,"540 Adams St, Boston, MA 02215" -218325,Lightning Charging Cable,1,14.95,06/20/19 00:18,"661 Main St, San Francisco, CA 94016" -218326,USB-C Charging Cable,1,11.95,06/02/19 21:47,"451 Cedar St, San Francisco, CA 94016" -218327,AAA Batteries (4-pack),1,2.99,06/02/19 23:10,"377 River St, Los Angeles, CA 90001" -218328,Wired Headphones,1,11.99,06/10/19 12:36,"378 North St, Portland, OR 97035" -218329,AA Batteries (4-pack),1,3.84,06/24/19 14:07,"464 Lake St, San Francisco, CA 94016" -218330,Apple Airpods Headphones,1,150,06/12/19 20:17,"1 Adams St, Los Angeles, CA 90001" -218331,Lightning Charging Cable,1,14.95,06/21/19 09:47,"722 Walnut St, San Francisco, CA 94016" -218332,Lightning Charging Cable,1,14.95,06/12/19 13:17,"812 13th St, Los Angeles, CA 90001" -218333,USB-C Charging Cable,1,11.95,06/18/19 08:57,"512 Lincoln St, Dallas, TX 75001" -218334,AA Batteries (4-pack),1,3.84,06/12/19 12:44,"545 13th St, Austin, TX 73301" -218335,Bose SoundSport Headphones,1,99.99,06/05/19 17:43,"729 Cherry St, Seattle, WA 98101" -218336,AAA Batteries (4-pack),4,2.99,06/24/19 15:14,"775 Spruce St, Boston, MA 02215" -218337,AAA Batteries (4-pack),2,2.99,06/02/19 18:09,"598 Lakeview St, Portland, OR 97035" -218338,USB-C Charging Cable,1,11.95,06/06/19 01:48,"9 Main St, Dallas, TX 75001" -218339,AA Batteries (4-pack),1,3.84,06/20/19 11:59,"765 Walnut St, San Francisco, CA 94016" -218340,Lightning Charging Cable,1,14.95,06/09/19 00:54,"720 Center St, Seattle, WA 98101" -218341,Wired Headphones,1,11.99,06/16/19 00:12,"450 Elm St, San Francisco, CA 94016" -218342,AA Batteries (4-pack),1,3.84,06/01/19 15:05,"231 Wilson St, Los Angeles, CA 90001" -218343,Lightning Charging Cable,1,14.95,06/28/19 22:30,"206 5th St, Boston, MA 02215" -218344,Lightning Charging Cable,2,14.95,06/12/19 16:53,"560 Dogwood St, San Francisco, CA 94016" -218345,Apple Airpods Headphones,1,150,06/21/19 08:34,"382 12th St, Los Angeles, CA 90001" -218346,Macbook Pro Laptop,1,1700,06/12/19 08:38,"560 13th St, New York City, NY 10001" -218347,AAA Batteries (4-pack),2,2.99,06/06/19 19:33,"319 Center St, Portland, ME 04101" -218348,USB-C Charging Cable,1,11.95,06/13/19 12:02,"859 Spruce St, San Francisco, CA 94016" -218349,Wired Headphones,1,11.99,06/26/19 11:17,"442 Cedar St, Dallas, TX 75001" -218350,Wired Headphones,2,11.99,06/10/19 12:09,"177 10th St, Austin, TX 73301" -218351,Vareebadd Phone,1,400,06/20/19 21:40,"887 9th St, Atlanta, GA 30301" -218352,USB-C Charging Cable,1,11.95,06/24/19 16:14,"360 Jefferson St, Seattle, WA 98101" -218353,AAA Batteries (4-pack),1,2.99,06/16/19 22:01,"62 Adams St, San Francisco, CA 94016" -218354,USB-C Charging Cable,1,11.95,06/10/19 23:06,"214 Lakeview St, San Francisco, CA 94016" -218355,Macbook Pro Laptop,1,1700,06/29/19 13:20,"259 Lake St, Boston, MA 02215" -218356,Apple Airpods Headphones,1,150,06/24/19 09:28,"257 11th St, New York City, NY 10001" -218357,34in Ultrawide Monitor,1,379.99,06/03/19 12:37,"81 Johnson St, Seattle, WA 98101" -218358,AA Batteries (4-pack),1,3.84,06/18/19 12:46,"491 Wilson St, Los Angeles, CA 90001" -218359,Google Phone,1,600,06/12/19 22:50,"36 River St, New York City, NY 10001" -218360,AA Batteries (4-pack),1,3.84,06/27/19 14:43,"449 8th St, Los Angeles, CA 90001" -218361,AA Batteries (4-pack),1,3.84,06/06/19 13:09,"246 Washington St, Los Angeles, CA 90001" -218362,Lightning Charging Cable,1,14.95,06/15/19 11:49,"350 5th St, Atlanta, GA 30301" -218363,USB-C Charging Cable,1,11.95,06/13/19 22:37,"357 Pine St, Los Angeles, CA 90001" -218364,Wired Headphones,1,11.99,06/07/19 06:16,"74 Pine St, San Francisco, CA 94016" -218365,AAA Batteries (4-pack),1,2.99,06/28/19 02:15,"530 2nd St, Boston, MA 02215" -218366,USB-C Charging Cable,1,11.95,06/18/19 00:13,"943 Chestnut St, San Francisco, CA 94016" -218367,USB-C Charging Cable,1,11.95,06/11/19 14:35,"443 North St, Atlanta, GA 30301" -218368,USB-C Charging Cable,1,11.95,06/04/19 18:45,"550 Lincoln St, Los Angeles, CA 90001" -218369,ThinkPad Laptop,1,999.99,06/09/19 13:28,"882 Chestnut St, San Francisco, CA 94016" -218370,Apple Airpods Headphones,1,150,06/15/19 00:49,"409 Jackson St, Seattle, WA 98101" -218371,34in Ultrawide Monitor,1,379.99,06/18/19 10:48,"226 Church St, Austin, TX 73301" -218372,USB-C Charging Cable,1,11.95,06/20/19 15:17,"456 7th St, Dallas, TX 75001" -218373,27in FHD Monitor,1,149.99,06/15/19 20:28,"857 Jackson St, Dallas, TX 75001" -218374,27in 4K Gaming Monitor,1,389.99,06/08/19 14:43,"793 Dogwood St, Boston, MA 02215" -218375,Apple Airpods Headphones,1,150,06/03/19 12:04,"541 6th St, Los Angeles, CA 90001" -218376,AAA Batteries (4-pack),1,2.99,06/23/19 21:43,"106 Highland St, New York City, NY 10001" -218377,Macbook Pro Laptop,1,1700,06/15/19 20:26,"676 Willow St, Boston, MA 02215" -218378,ThinkPad Laptop,1,999.99,06/28/19 21:34,"942 West St, New York City, NY 10001" -218379,Wired Headphones,1,11.99,06/09/19 18:30,"714 Chestnut St, Boston, MA 02215" -218380,AA Batteries (4-pack),2,3.84,06/04/19 19:06,"4 7th St, Portland, ME 04101" -218381,USB-C Charging Cable,1,11.95,06/15/19 08:27,"600 Center St, San Francisco, CA 94016" -218382,20in Monitor,1,109.99,06/15/19 15:49,"595 7th St, Dallas, TX 75001" -218383,34in Ultrawide Monitor,1,379.99,06/17/19 19:51,"769 Hickory St, Los Angeles, CA 90001" -218383,Lightning Charging Cable,1,14.95,06/17/19 19:51,"769 Hickory St, Los Angeles, CA 90001" -218384,USB-C Charging Cable,1,11.95,06/16/19 11:58,"956 7th St, San Francisco, CA 94016" -218385,AA Batteries (4-pack),1,3.84,06/10/19 17:34,"934 13th St, Atlanta, GA 30301" -218386,AAA Batteries (4-pack),1,2.99,06/15/19 17:11,"902 Wilson St, Atlanta, GA 30301" -218387,Wired Headphones,1,11.99,06/15/19 13:45,"152 4th St, Atlanta, GA 30301" -218388,34in Ultrawide Monitor,1,379.99,06/15/19 20:41,"507 Lake St, San Francisco, CA 94016" -218389,27in FHD Monitor,1,149.99,06/11/19 10:23,"473 Adams St, New York City, NY 10001" -218390,Lightning Charging Cable,1,14.95,06/11/19 14:13,"248 Church St, San Francisco, CA 94016" -218391,AAA Batteries (4-pack),1,2.99,06/26/19 09:26,"330 Church St, Seattle, WA 98101" -218392,Wired Headphones,1,11.99,06/29/19 17:00,"415 4th St, San Francisco, CA 94016" -218393,Bose SoundSport Headphones,1,99.99,06/10/19 06:44,"418 Hill St, San Francisco, CA 94016" -218394,Flatscreen TV,1,300,06/06/19 18:16,"677 Forest St, Dallas, TX 75001" -218395,20in Monitor,1,109.99,06/15/19 14:10,"676 Washington St, San Francisco, CA 94016" -218396,Apple Airpods Headphones,1,150,06/03/19 18:55,"442 10th St, Austin, TX 73301" -218397,Wired Headphones,1,11.99,06/16/19 01:03,"653 Hill St, New York City, NY 10001" -218398,Apple Airpods Headphones,1,150,06/14/19 13:17,"325 West St, Boston, MA 02215" -218399,Macbook Pro Laptop,1,1700,06/04/19 19:37,"694 12th St, Atlanta, GA 30301" -218400,Lightning Charging Cable,1,14.95,06/21/19 12:50,"111 Washington St, Portland, OR 97035" -218401,Lightning Charging Cable,1,14.95,06/21/19 09:18,"623 West St, San Francisco, CA 94016" -218402,ThinkPad Laptop,1,999.99,06/16/19 20:51,"913 Johnson St, Atlanta, GA 30301" -218403,AAA Batteries (4-pack),2,2.99,06/14/19 11:01,"635 West St, New York City, NY 10001" -218404,AA Batteries (4-pack),1,3.84,06/27/19 15:55,"928 Washington St, San Francisco, CA 94016" -218405,Wired Headphones,1,11.99,06/13/19 08:08,"830 Maple St, San Francisco, CA 94016" -218406,AAA Batteries (4-pack),2,2.99,06/18/19 12:01,"688 7th St, Seattle, WA 98101" -218407,ThinkPad Laptop,1,999.99,06/09/19 13:21,"921 Center St, New York City, NY 10001" -218408,Apple Airpods Headphones,1,150,06/01/19 12:40,"79 6th St, Portland, ME 04101" -218409,Apple Airpods Headphones,1,150,06/27/19 09:09,"837 West St, New York City, NY 10001" -218410,34in Ultrawide Monitor,1,379.99,06/26/19 07:38,"484 Elm St, Los Angeles, CA 90001" -218411,Google Phone,1,600,06/06/19 12:06,"182 Maple St, Atlanta, GA 30301" -218412,27in FHD Monitor,1,149.99,06/14/19 21:16,"727 Spruce St, Los Angeles, CA 90001" -218413,Apple Airpods Headphones,1,150,06/13/19 19:50,"495 Lake St, Boston, MA 02215" -218414,AA Batteries (4-pack),1,3.84,06/21/19 20:41,"969 Adams St, San Francisco, CA 94016" -218415,Apple Airpods Headphones,1,150,06/06/19 07:12,"71 Maple St, Los Angeles, CA 90001" -218416,AAA Batteries (4-pack),3,2.99,06/25/19 21:55,"109 Jackson St, San Francisco, CA 94016" -218417,AA Batteries (4-pack),1,3.84,06/24/19 21:46,"776 6th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -218418,AA Batteries (4-pack),1,3.84,06/24/19 14:47,"575 Main St, Portland, ME 04101" -218419,Bose SoundSport Headphones,1,99.99,06/26/19 22:20,"217 Park St, San Francisco, CA 94016" -218420,Lightning Charging Cable,1,14.95,06/22/19 16:25,"543 North St, Boston, MA 02215" -218420,Lightning Charging Cable,1,14.95,06/22/19 16:25,"543 North St, Boston, MA 02215" -218421,AAA Batteries (4-pack),1,2.99,06/22/19 08:30,"601 7th St, Atlanta, GA 30301" -218422,Wired Headphones,1,11.99,06/19/19 22:29,"128 Jackson St, San Francisco, CA 94016" -218423,USB-C Charging Cable,1,11.95,06/18/19 18:46,"348 13th St, Los Angeles, CA 90001" -218424,20in Monitor,1,109.99,06/15/19 20:30,"194 6th St, Dallas, TX 75001" -218425,27in FHD Monitor,1,149.99,06/20/19 07:51,"9 Forest St, Seattle, WA 98101" -218426,Bose SoundSport Headphones,1,99.99,06/16/19 09:47,"281 Adams St, New York City, NY 10001" -218427,Lightning Charging Cable,1,14.95,06/02/19 05:36,"453 River St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -218428,AA Batteries (4-pack),1,3.84,06/07/19 16:50,"156 Hill St, Dallas, TX 75001" -218429,LG Washing Machine,1,600.0,06/17/19 10:11,"759 10th St, San Francisco, CA 94016" -218430,USB-C Charging Cable,1,11.95,06/03/19 11:04,"975 North St, San Francisco, CA 94016" -218431,AAA Batteries (4-pack),1,2.99,06/14/19 17:54,"102 Chestnut St, Dallas, TX 75001" -218432,Wired Headphones,2,11.99,06/06/19 16:42,"781 10th St, Portland, OR 97035" -218433,USB-C Charging Cable,2,11.95,06/16/19 01:51,"558 Chestnut St, Los Angeles, CA 90001" -218434,Bose SoundSport Headphones,1,99.99,06/26/19 20:53,"429 Cherry St, Boston, MA 02215" -218435,34in Ultrawide Monitor,1,379.99,06/26/19 13:41,"382 North St, Dallas, TX 75001" -218436,Apple Airpods Headphones,1,150,06/16/19 17:47,"203 Center St, Los Angeles, CA 90001" -218437,Wired Headphones,1,11.99,06/18/19 19:15,"32 Church St, Dallas, TX 75001" -218438,AAA Batteries (4-pack),1,2.99,06/09/19 18:20,"320 Adams St, Los Angeles, CA 90001" -218439,Macbook Pro Laptop,1,1700,06/03/19 23:55,"627 Jackson St, Los Angeles, CA 90001" -218439,27in 4K Gaming Monitor,1,389.99,06/03/19 23:55,"627 Jackson St, Los Angeles, CA 90001" -218440,Lightning Charging Cable,1,14.95,06/15/19 20:14,"924 Johnson St, San Francisco, CA 94016" -218441,Lightning Charging Cable,1,14.95,06/27/19 13:05,"263 Center St, Dallas, TX 75001" -218442,Apple Airpods Headphones,1,150,06/16/19 00:06,"347 Adams St, Seattle, WA 98101" -218443,Lightning Charging Cable,1,14.95,06/24/19 17:01,"498 Lincoln St, Los Angeles, CA 90001" -218444,AAA Batteries (4-pack),2,2.99,06/25/19 11:15,"471 Lakeview St, Boston, MA 02215" -218445,Apple Airpods Headphones,1,150,06/27/19 18:23,"556 Ridge St, Atlanta, GA 30301" -218446,Apple Airpods Headphones,1,150,06/14/19 11:28,"594 Willow St, Boston, MA 02215" -218447,Lightning Charging Cable,1,14.95,06/09/19 20:42,"124 Johnson St, Boston, MA 02215" -218448,AA Batteries (4-pack),1,3.84,06/30/19 05:33,"536 Forest St, San Francisco, CA 94016" -218449,AAA Batteries (4-pack),2,2.99,06/01/19 11:36,"745 Adams St, New York City, NY 10001" -218450,AA Batteries (4-pack),1,3.84,06/06/19 08:08,"484 Ridge St, Atlanta, GA 30301" -218451,27in 4K Gaming Monitor,1,389.99,06/03/19 10:26,"159 Sunset St, San Francisco, CA 94016" -218452,Macbook Pro Laptop,1,1700,06/24/19 20:15,"876 Cedar St, New York City, NY 10001" -218453,USB-C Charging Cable,1,11.95,06/07/19 12:24,"196 Willow St, Portland, OR 97035" -218454,Lightning Charging Cable,1,14.95,06/17/19 11:20,"641 Lakeview St, New York City, NY 10001" -218455,AAA Batteries (4-pack),1,2.99,06/04/19 16:51,"460 Dogwood St, Los Angeles, CA 90001" -218456,34in Ultrawide Monitor,1,379.99,06/28/19 22:33,"1 Maple St, New York City, NY 10001" -218457,27in 4K Gaming Monitor,1,389.99,07/01/19 03:09,"567 Forest St, San Francisco, CA 94016" -218458,AA Batteries (4-pack),2,3.84,06/23/19 10:57,"323 1st St, San Francisco, CA 94016" -218459,USB-C Charging Cable,1,11.95,06/23/19 17:54,"298 Park St, San Francisco, CA 94016" -218460,AAA Batteries (4-pack),1,2.99,06/15/19 12:39,"402 Church St, San Francisco, CA 94016" -218461,USB-C Charging Cable,1,11.95,06/04/19 08:37,"3 Washington St, Los Angeles, CA 90001" -218462,USB-C Charging Cable,2,11.95,06/04/19 17:04,"442 Dogwood St, Dallas, TX 75001" -218463,Apple Airpods Headphones,1,150,06/21/19 22:06,"279 Willow St, Los Angeles, CA 90001" -218464,Flatscreen TV,1,300,06/09/19 12:08,"495 Hickory St, Portland, OR 97035" -218465,Bose SoundSport Headphones,1,99.99,06/05/19 08:47,"966 Adams St, Los Angeles, CA 90001" -218466,Apple Airpods Headphones,1,150,06/04/19 09:51,"295 10th St, Los Angeles, CA 90001" -218467,Bose SoundSport Headphones,2,99.99,06/06/19 20:49,"799 4th St, San Francisco, CA 94016" -218468,Bose SoundSport Headphones,1,99.99,06/03/19 11:15,"203 Lake St, San Francisco, CA 94016" -218469,USB-C Charging Cable,1,11.95,06/02/19 19:48,"52 Washington St, New York City, NY 10001" -218470,Google Phone,1,600,06/21/19 15:51,"90 Cherry St, Boston, MA 02215" -218471,Lightning Charging Cable,1,14.95,06/28/19 19:38,"173 Pine St, Los Angeles, CA 90001" -218472,iPhone,1,700,06/13/19 22:26,"9 Johnson St, San Francisco, CA 94016" -218473,USB-C Charging Cable,1,11.95,06/18/19 08:38,"672 2nd St, San Francisco, CA 94016" -218474,USB-C Charging Cable,1,11.95,06/20/19 11:59,"27 Washington St, New York City, NY 10001" -218475,AAA Batteries (4-pack),1,2.99,06/10/19 19:24,"764 5th St, Los Angeles, CA 90001" -218476,AAA Batteries (4-pack),1,2.99,06/30/19 22:32,"771 North St, Portland, OR 97035" -218477,AAA Batteries (4-pack),1,2.99,06/06/19 13:33,"393 Church St, Seattle, WA 98101" -218478,AAA Batteries (4-pack),2,2.99,06/18/19 23:22,"296 Cherry St, Los Angeles, CA 90001" -218479,20in Monitor,1,109.99,06/25/19 06:30,"207 Park St, Los Angeles, CA 90001" -218480,Apple Airpods Headphones,1,150,06/14/19 12:48,"823 Pine St, Los Angeles, CA 90001" -218481,Bose SoundSport Headphones,1,99.99,06/15/19 16:19,"84 10th St, Austin, TX 73301" -218482,USB-C Charging Cable,2,11.95,07/01/19 00:48,"502 Wilson St, Austin, TX 73301" -218483,Wired Headphones,1,11.99,06/07/19 11:28,"33 Jackson St, Boston, MA 02215" -218484,Lightning Charging Cable,1,14.95,06/06/19 14:26,"612 Jefferson St, Los Angeles, CA 90001" -218485,AAA Batteries (4-pack),1,2.99,06/07/19 21:13,"858 7th St, Boston, MA 02215" -218486,Apple Airpods Headphones,1,150,06/27/19 23:22,"814 Dogwood St, San Francisco, CA 94016" -218487,Bose SoundSport Headphones,1,99.99,06/03/19 20:46,"599 6th St, Austin, TX 73301" -218488,27in FHD Monitor,1,149.99,06/27/19 20:30,"919 North St, Boston, MA 02215" -218489,Bose SoundSport Headphones,2,99.99,06/02/19 19:45,"289 Wilson St, New York City, NY 10001" -218490,Bose SoundSport Headphones,1,99.99,06/08/19 18:35,"170 Park St, Austin, TX 73301" -218491,34in Ultrawide Monitor,1,379.99,06/14/19 10:06,"702 2nd St, Austin, TX 73301" -218492,Wired Headphones,1,11.99,06/29/19 16:55,"357 Cherry St, San Francisco, CA 94016" -218493,Bose SoundSport Headphones,1,99.99,06/11/19 14:33,"432 Elm St, New York City, NY 10001" -218494,Lightning Charging Cable,2,14.95,06/26/19 13:05,"702 12th St, Boston, MA 02215" -218495,ThinkPad Laptop,1,999.99,06/14/19 09:06,"378 Center St, Los Angeles, CA 90001" -218496,USB-C Charging Cable,1,11.95,06/19/19 15:26,"612 2nd St, Los Angeles, CA 90001" -218497,Lightning Charging Cable,1,14.95,06/24/19 06:58,"522 Johnson St, Dallas, TX 75001" -218498,Bose SoundSport Headphones,1,99.99,06/24/19 08:07,"299 1st St, Atlanta, GA 30301" -218499,AA Batteries (4-pack),3,3.84,06/01/19 18:23,"246 4th St, Boston, MA 02215" -218500,AA Batteries (4-pack),1,3.84,06/10/19 09:52,"51 4th St, San Francisco, CA 94016" -218501,Lightning Charging Cable,1,14.95,06/19/19 20:09,"309 Center St, Boston, MA 02215" -218502,27in 4K Gaming Monitor,1,389.99,06/30/19 20:47,"930 10th St, Portland, OR 97035" -218503,USB-C Charging Cable,1,11.95,06/23/19 13:54,"773 14th St, Los Angeles, CA 90001" -,,,,, -218504,Flatscreen TV,1,300,06/01/19 16:20,"883 13th St, San Francisco, CA 94016" -218505,USB-C Charging Cable,1,11.95,06/29/19 14:41,"690 Cedar St, San Francisco, CA 94016" -218506,AA Batteries (4-pack),2,3.84,06/07/19 14:20,"74 Park St, Dallas, TX 75001" -218507,Macbook Pro Laptop,1,1700,06/19/19 10:15,"557 Washington St, Los Angeles, CA 90001" -218508,iPhone,1,700,06/03/19 13:02,"842 Park St, Boston, MA 02215" -218508,Lightning Charging Cable,1,14.95,06/03/19 13:02,"842 Park St, Boston, MA 02215" -218509,AA Batteries (4-pack),1,3.84,06/03/19 16:22,"201 Highland St, San Francisco, CA 94016" -218510,Wired Headphones,1,11.99,06/23/19 15:41,"380 Johnson St, Portland, OR 97035" -218511,34in Ultrawide Monitor,1,379.99,06/06/19 19:43,"294 Adams St, Seattle, WA 98101" -218512,27in FHD Monitor,1,149.99,06/22/19 17:22,"488 9th St, San Francisco, CA 94016" -218513,Wired Headphones,2,11.99,06/12/19 19:16,"334 Lake St, San Francisco, CA 94016" -218514,Wired Headphones,1,11.99,06/27/19 08:24,"412 Willow St, Atlanta, GA 30301" -218515,Wired Headphones,1,11.99,06/21/19 21:54,"585 Dogwood St, Dallas, TX 75001" -218516,AAA Batteries (4-pack),1,2.99,06/07/19 00:42,"777 Meadow St, Seattle, WA 98101" -218517,Bose SoundSport Headphones,1,99.99,06/27/19 20:32,"226 Hill St, San Francisco, CA 94016" -218518,Bose SoundSport Headphones,1,99.99,06/13/19 22:57,"274 Hickory St, Boston, MA 02215" -218519,Flatscreen TV,1,300,06/23/19 22:24,"245 Lake St, Portland, ME 04101" -218520,USB-C Charging Cable,1,11.95,06/22/19 22:24,"395 Madison St, Seattle, WA 98101" -218521,Wired Headphones,1,11.99,06/12/19 15:47,"93 Center St, Boston, MA 02215" -218522,USB-C Charging Cable,1,11.95,06/29/19 12:32,"118 10th St, Boston, MA 02215" -218523,Wired Headphones,1,11.99,06/22/19 00:50,"674 Forest St, Seattle, WA 98101" -218524,AA Batteries (4-pack),1,3.84,06/07/19 22:19,"508 Lake St, New York City, NY 10001" -218525,Wired Headphones,2,11.99,06/12/19 16:54,"585 Sunset St, Seattle, WA 98101" -218526,Lightning Charging Cable,2,14.95,06/10/19 17:46,"950 Lincoln St, Boston, MA 02215" -218527,iPhone,1,700,06/01/19 11:23,"334 Forest St, San Francisco, CA 94016" -218527,Lightning Charging Cable,1,14.95,06/01/19 11:23,"334 Forest St, San Francisco, CA 94016" -218528,USB-C Charging Cable,1,11.95,06/11/19 22:37,"601 Pine St, Los Angeles, CA 90001" -218529,Lightning Charging Cable,1,14.95,06/06/19 20:23,"82 11th St, Los Angeles, CA 90001" -218530,Vareebadd Phone,1,400,06/12/19 00:22,"199 Chestnut St, New York City, NY 10001" -218530,USB-C Charging Cable,1,11.95,06/12/19 00:22,"199 Chestnut St, New York City, NY 10001" -218530,Wired Headphones,1,11.99,06/12/19 00:22,"199 Chestnut St, New York City, NY 10001" -218531,Apple Airpods Headphones,1,150,06/13/19 21:25,"256 Pine St, Atlanta, GA 30301" -218532,Bose SoundSport Headphones,1,99.99,06/26/19 18:39,"330 South St, Austin, TX 73301" -218533,27in 4K Gaming Monitor,1,389.99,06/06/19 20:56,"495 Maple St, Dallas, TX 75001" -218534,AAA Batteries (4-pack),1,2.99,06/11/19 21:44,"541 Spruce St, San Francisco, CA 94016" -218535,Wired Headphones,1,11.99,06/22/19 18:59,"699 13th St, Seattle, WA 98101" -218536,20in Monitor,1,109.99,06/26/19 16:15,"772 Pine St, Portland, OR 97035" -218537,Wired Headphones,1,11.99,06/08/19 17:00,"989 Willow St, Boston, MA 02215" -218538,Lightning Charging Cable,1,14.95,06/15/19 14:38,"253 South St, New York City, NY 10001" -218539,AA Batteries (4-pack),1,3.84,06/15/19 15:34,"448 Wilson St, San Francisco, CA 94016" -218540,Macbook Pro Laptop,1,1700,06/18/19 09:21,"765 10th St, Boston, MA 02215" -218541,Lightning Charging Cable,1,14.95,06/28/19 23:34,"650 Adams St, Portland, OR 97035" -218542,AAA Batteries (4-pack),2,2.99,06/01/19 08:57,"193 Elm St, Los Angeles, CA 90001" -218543,Lightning Charging Cable,1,14.95,06/02/19 21:49,"298 Hickory St, San Francisco, CA 94016" -218544,Apple Airpods Headphones,1,150,06/19/19 14:50,"718 Madison St, Boston, MA 02215" -218545,Google Phone,1,600,06/15/19 20:49,"720 Jefferson St, New York City, NY 10001" -218546,iPhone,1,700,06/06/19 14:44,"642 Maple St, Boston, MA 02215" -218547,34in Ultrawide Monitor,1,379.99,06/21/19 14:24,"491 Washington St, Seattle, WA 98101" -218548,AA Batteries (4-pack),1,3.84,06/04/19 21:21,"519 Maple St, Boston, MA 02215" -218548,AA Batteries (4-pack),1,3.84,06/04/19 21:21,"519 Maple St, Boston, MA 02215" -218549,Wired Headphones,1,11.99,06/04/19 18:15,"329 Jackson St, Austin, TX 73301" -218550,USB-C Charging Cable,2,11.95,06/24/19 10:40,"824 7th St, Austin, TX 73301" -218551,USB-C Charging Cable,1,11.95,06/28/19 14:10,"245 Dogwood St, Austin, TX 73301" -218552,Vareebadd Phone,1,400,06/19/19 00:19,"385 Lincoln St, Los Angeles, CA 90001" -218553,Lightning Charging Cable,1,14.95,06/26/19 16:23,"175 Highland St, Atlanta, GA 30301" -218554,Lightning Charging Cable,1,14.95,06/01/19 12:06,"759 13th St, San Francisco, CA 94016" -218555,Wired Headphones,1,11.99,06/05/19 09:46,"265 Sunset St, San Francisco, CA 94016" -218556,Wired Headphones,1,11.99,06/22/19 20:57,"596 1st St, Dallas, TX 75001" -218557,Apple Airpods Headphones,1,150,06/12/19 13:12,"592 Pine St, San Francisco, CA 94016" -218558,27in FHD Monitor,1,149.99,06/14/19 14:15,"915 Forest St, Dallas, TX 75001" -218559,20in Monitor,1,109.99,06/15/19 20:38,"522 1st St, Los Angeles, CA 90001" -218560,Vareebadd Phone,1,400,06/27/19 14:38,"891 Lincoln St, Austin, TX 73301" -218560,USB-C Charging Cable,1,11.95,06/27/19 14:38,"891 Lincoln St, Austin, TX 73301" -218561,Lightning Charging Cable,1,14.95,06/12/19 13:01,"753 5th St, San Francisco, CA 94016" -218562,Wired Headphones,1,11.99,06/22/19 15:00,"470 Johnson St, New York City, NY 10001" -218563,Lightning Charging Cable,1,14.95,06/09/19 21:08,"221 Pine St, Dallas, TX 75001" -218564,AA Batteries (4-pack),1,3.84,06/14/19 14:44,"909 Walnut St, Seattle, WA 98101" -218565,Wired Headphones,1,11.99,06/12/19 15:53,"4 South St, Austin, TX 73301" -218566,Lightning Charging Cable,1,14.95,06/08/19 17:19,"34 North St, Dallas, TX 75001" -218567,Bose SoundSport Headphones,1,99.99,06/11/19 20:02,"688 Highland St, Seattle, WA 98101" -218568,Macbook Pro Laptop,1,1700,06/20/19 10:45,"923 Jackson St, San Francisco, CA 94016" -218569,Apple Airpods Headphones,1,150,06/07/19 20:09,"91 Willow St, Los Angeles, CA 90001" -218570,Apple Airpods Headphones,1,150,06/25/19 04:12,"32 13th St, New York City, NY 10001" -218571,AAA Batteries (4-pack),2,2.99,06/13/19 20:26,"601 Chestnut St, Los Angeles, CA 90001" -218572,Macbook Pro Laptop,1,1700,06/25/19 11:02,"66 13th St, Boston, MA 02215" -218573,iPhone,1,700,06/05/19 12:42,"729 Adams St, Atlanta, GA 30301" -218574,Lightning Charging Cable,1,14.95,06/20/19 19:35,"767 Madison St, Boston, MA 02215" -218575,27in FHD Monitor,1,149.99,06/12/19 21:25,"11 Pine St, Seattle, WA 98101" -218576,Bose SoundSport Headphones,1,99.99,06/29/19 13:53,"283 Center St, Los Angeles, CA 90001" -218577,Macbook Pro Laptop,1,1700,06/23/19 19:23,"556 9th St, Dallas, TX 75001" -218578,USB-C Charging Cable,1,11.95,06/04/19 09:56,"540 10th St, Austin, TX 73301" -218579,iPhone,1,700,06/16/19 14:15,"188 Main St, Austin, TX 73301" -218579,Lightning Charging Cable,1,14.95,06/16/19 14:15,"188 Main St, Austin, TX 73301" -218580,USB-C Charging Cable,1,11.95,06/10/19 21:21,"999 Jackson St, Boston, MA 02215" -218581,Apple Airpods Headphones,1,150,06/30/19 13:18,"111 South St, Boston, MA 02215" -218582,20in Monitor,1,109.99,06/06/19 22:18,"945 Adams St, Portland, OR 97035" -218583,Apple Airpods Headphones,1,150,06/03/19 14:51,"998 Ridge St, Portland, OR 97035" -218584,Flatscreen TV,1,300,06/16/19 22:59,"806 Willow St, San Francisco, CA 94016" -218585,AA Batteries (4-pack),2,3.84,06/11/19 15:37,"273 Chestnut St, Los Angeles, CA 90001" -218586,AAA Batteries (4-pack),1,2.99,06/04/19 23:22,"577 4th St, Atlanta, GA 30301" -218587,Apple Airpods Headphones,1,150,06/17/19 19:34,"633 10th St, Los Angeles, CA 90001" -218588,AA Batteries (4-pack),2,3.84,06/13/19 11:31,"426 Maple St, Atlanta, GA 30301" -218589,Lightning Charging Cable,1,14.95,06/09/19 17:48,"200 Ridge St, Boston, MA 02215" -218590,AAA Batteries (4-pack),3,2.99,06/02/19 16:11,"10 Cedar St, Atlanta, GA 30301" -218591,27in 4K Gaming Monitor,1,389.99,06/06/19 07:27,"252 Lakeview St, Los Angeles, CA 90001" -218592,27in FHD Monitor,1,149.99,06/26/19 00:08,"499 Chestnut St, Boston, MA 02215" -218593,AA Batteries (4-pack),1,3.84,06/26/19 07:03,"538 7th St, San Francisco, CA 94016" -218594,Flatscreen TV,1,300,06/30/19 09:49,"828 Walnut St, Los Angeles, CA 90001" -218595,Google Phone,1,600,06/11/19 17:32,"911 Park St, Dallas, TX 75001" -218595,USB-C Charging Cable,2,11.95,06/11/19 17:32,"911 Park St, Dallas, TX 75001" -218596,27in 4K Gaming Monitor,1,389.99,06/19/19 21:47,"690 12th St, Seattle, WA 98101" -218597,34in Ultrawide Monitor,1,379.99,06/11/19 13:59,"752 Spruce St, Portland, OR 97035" -218598,iPhone,1,700,06/26/19 12:36,"198 Cherry St, San Francisco, CA 94016" -218599,Macbook Pro Laptop,1,1700,06/30/19 09:17,"917 Johnson St, Seattle, WA 98101" -218600,AAA Batteries (4-pack),1,2.99,06/29/19 10:45,"799 Spruce St, New York City, NY 10001" -218601,AA Batteries (4-pack),1,3.84,06/27/19 23:33,"595 Forest St, Austin, TX 73301" -218602,Wired Headphones,1,11.99,06/24/19 15:01,"474 Meadow St, Atlanta, GA 30301" -218603,AA Batteries (4-pack),1,3.84,06/12/19 01:30,"826 Main St, Atlanta, GA 30301" -218604,34in Ultrawide Monitor,1,379.99,06/06/19 18:53,"825 8th St, Los Angeles, CA 90001" -218605,Apple Airpods Headphones,1,150,06/16/19 10:47,"767 Maple St, New York City, NY 10001" -218606,AAA Batteries (4-pack),1,2.99,06/10/19 19:00,"217 Elm St, San Francisco, CA 94016" -218607,AA Batteries (4-pack),1,3.84,06/07/19 09:19,"546 Elm St, Los Angeles, CA 90001" -218608,Lightning Charging Cable,1,14.95,06/10/19 09:37,"563 Highland St, San Francisco, CA 94016" -218609,ThinkPad Laptop,1,999.99,06/03/19 18:02,"960 5th St, Los Angeles, CA 90001" -218610,Lightning Charging Cable,1,14.95,06/28/19 13:36,"867 Willow St, Los Angeles, CA 90001" -218611,iPhone,1,700,06/10/19 21:38,"1 Highland St, Boston, MA 02215" -218611,Wired Headphones,1,11.99,06/10/19 21:38,"1 Highland St, Boston, MA 02215" -218612,ThinkPad Laptop,1,999.99,06/29/19 12:39,"919 Pine St, San Francisco, CA 94016" -218613,Apple Airpods Headphones,1,150,06/11/19 09:29,"991 Johnson St, Austin, TX 73301" -218614,AA Batteries (4-pack),4,3.84,06/30/19 11:48,"308 Madison St, Los Angeles, CA 90001" -218615,Wired Headphones,1,11.99,06/10/19 20:42,"374 South St, Los Angeles, CA 90001" -218616,iPhone,1,700,06/03/19 09:36,"846 Church St, Los Angeles, CA 90001" -218616,Lightning Charging Cable,1,14.95,06/03/19 09:36,"846 Church St, Los Angeles, CA 90001" -218617,Apple Airpods Headphones,1,150,06/26/19 11:11,"545 11th St, Dallas, TX 75001" -218618,20in Monitor,1,109.99,06/08/19 12:35,"614 Johnson St, Dallas, TX 75001" -218619,34in Ultrawide Monitor,1,379.99,06/14/19 10:42,"467 1st St, San Francisco, CA 94016" -218620,Bose SoundSport Headphones,1,99.99,06/20/19 13:07,"501 South St, Boston, MA 02215" -218621,Lightning Charging Cable,1,14.95,06/21/19 13:00,"750 Spruce St, Seattle, WA 98101" -218622,Apple Airpods Headphones,1,150,06/17/19 13:59,"209 Jefferson St, Austin, TX 73301" -218623,Wired Headphones,1,11.99,06/16/19 16:23,"954 Adams St, New York City, NY 10001" -218624,ThinkPad Laptop,1,999.99,06/28/19 20:43,"655 8th St, Boston, MA 02215" -218625,Apple Airpods Headphones,1,150,06/25/19 17:09,"857 Jackson St, San Francisco, CA 94016" -218626,Lightning Charging Cable,1,14.95,06/11/19 12:34,"126 2nd St, New York City, NY 10001" -218627,20in Monitor,1,109.99,06/15/19 19:42,"209 Sunset St, Portland, OR 97035" -218628,ThinkPad Laptop,1,999.99,06/02/19 20:35,"717 Cedar St, San Francisco, CA 94016" -218629,Apple Airpods Headphones,1,150,06/23/19 22:26,"874 13th St, Los Angeles, CA 90001" -218630,USB-C Charging Cable,1,11.95,06/04/19 21:00,"236 Main St, New York City, NY 10001" -218631,34in Ultrawide Monitor,1,379.99,06/21/19 18:22,"131 West St, San Francisco, CA 94016" -218632,Bose SoundSport Headphones,1,99.99,06/01/19 14:47,"39 Cherry St, Dallas, TX 75001" -218633,AA Batteries (4-pack),1,3.84,06/07/19 17:07,"460 Highland St, Seattle, WA 98101" -218634,USB-C Charging Cable,1,11.95,06/06/19 11:36,"917 Pine St, San Francisco, CA 94016" -218635,AAA Batteries (4-pack),2,2.99,06/06/19 18:39,"236 Ridge St, Los Angeles, CA 90001" -218636,AA Batteries (4-pack),1,3.84,06/30/19 20:56,"909 Elm St, Los Angeles, CA 90001" -218637,Wired Headphones,1,11.99,06/09/19 20:34,"330 9th St, Boston, MA 02215" -218638,Bose SoundSport Headphones,1,99.99,06/22/19 08:45,"505 Johnson St, Austin, TX 73301" -218639,AAA Batteries (4-pack),2,2.99,06/27/19 16:31,"915 1st St, Dallas, TX 75001" -218640,ThinkPad Laptop,1,999.99,06/25/19 18:35,"274 Cherry St, Austin, TX 73301" -218640,Lightning Charging Cable,1,14.95,06/25/19 18:35,"274 Cherry St, Austin, TX 73301" -218641,AA Batteries (4-pack),1,3.84,06/17/19 13:41,"894 Church St, Portland, OR 97035" -218642,USB-C Charging Cable,1,11.95,06/16/19 12:42,"594 Center St, Los Angeles, CA 90001" -218643,Wired Headphones,1,11.99,06/22/19 09:06,"534 Ridge St, Los Angeles, CA 90001" -218644,Apple Airpods Headphones,1,150,06/03/19 13:56,"558 Lincoln St, Dallas, TX 75001" -218645,Apple Airpods Headphones,1,150,06/19/19 16:42,"14 Johnson St, Austin, TX 73301" -218646,AA Batteries (4-pack),1,3.84,06/14/19 14:28,"376 Walnut St, New York City, NY 10001" -218647,AA Batteries (4-pack),1,3.84,06/03/19 17:23,"994 1st St, Los Angeles, CA 90001" -218648,27in FHD Monitor,1,149.99,06/24/19 05:51,"622 Forest St, Portland, OR 97035" -218649,iPhone,1,700,06/28/19 21:40,"684 Chestnut St, Dallas, TX 75001" -218650,34in Ultrawide Monitor,1,379.99,06/14/19 10:31,"633 9th St, Los Angeles, CA 90001" -218651,Lightning Charging Cable,1,14.95,06/29/19 17:40,"674 West St, San Francisco, CA 94016" -218652,iPhone,1,700,06/16/19 09:22,"591 5th St, San Francisco, CA 94016" -218653,AA Batteries (4-pack),1,3.84,06/06/19 16:41,"919 North St, Boston, MA 02215" -218654,AA Batteries (4-pack),1,3.84,06/29/19 05:29,"260 Dogwood St, New York City, NY 10001" -218655,iPhone,1,700,06/05/19 22:28,"597 North St, Austin, TX 73301" -218656,Apple Airpods Headphones,1,150,06/08/19 21:05,"503 Wilson St, Austin, TX 73301" -218657,Apple Airpods Headphones,1,150,06/18/19 14:42,"178 Maple St, San Francisco, CA 94016" -218658,AAA Batteries (4-pack),1,2.99,06/29/19 14:51,"895 Church St, Los Angeles, CA 90001" -218659,iPhone,1,700,06/19/19 09:51,"793 Maple St, Portland, OR 97035" -218660,20in Monitor,1,109.99,06/02/19 12:48,"988 4th St, Boston, MA 02215" -218661,AAA Batteries (4-pack),1,2.99,06/04/19 15:09,"15 Sunset St, Los Angeles, CA 90001" -218662,AA Batteries (4-pack),1,3.84,06/14/19 23:50,"96 11th St, San Francisco, CA 94016" -218663,34in Ultrawide Monitor,1,379.99,06/30/19 21:21,"849 Adams St, Atlanta, GA 30301" -218664,AAA Batteries (4-pack),2,2.99,06/06/19 00:23,"654 Adams St, New York City, NY 10001" -218665,AAA Batteries (4-pack),1,2.99,06/08/19 21:02,"87 6th St, San Francisco, CA 94016" -218666,Macbook Pro Laptop,1,1700,06/15/19 14:12,"307 10th St, San Francisco, CA 94016" -218666,Apple Airpods Headphones,1,150,06/15/19 14:12,"307 10th St, San Francisco, CA 94016" -218667,ThinkPad Laptop,1,999.99,06/19/19 09:02,"795 Cherry St, Boston, MA 02215" -218668,27in 4K Gaming Monitor,1,389.99,06/10/19 17:20,"134 13th St, Portland, OR 97035" -218669,USB-C Charging Cable,1,11.95,06/16/19 14:35,"793 Cherry St, San Francisco, CA 94016" -218670,AAA Batteries (4-pack),3,2.99,06/30/19 20:47,"833 Ridge St, Los Angeles, CA 90001" -218671,iPhone,1,700,06/14/19 16:44,"789 West St, Los Angeles, CA 90001" -218672,iPhone,1,700,06/08/19 00:24,"165 Highland St, Los Angeles, CA 90001" -218673,AAA Batteries (4-pack),1,2.99,06/18/19 11:33,"451 Madison St, San Francisco, CA 94016" -218674,Bose SoundSport Headphones,1,99.99,06/05/19 19:37,"277 Jefferson St, Boston, MA 02215" -218675,Google Phone,1,600,06/11/19 18:05,"720 7th St, San Francisco, CA 94016" -218676,Lightning Charging Cable,1,14.95,06/30/19 15:38,"70 Madison St, Dallas, TX 75001" -218677,27in 4K Gaming Monitor,1,389.99,06/22/19 15:09,"158 Church St, Austin, TX 73301" -218678,Lightning Charging Cable,1,14.95,06/05/19 14:24,"885 River St, San Francisco, CA 94016" -218679,Lightning Charging Cable,1,14.95,06/02/19 13:15,"797 10th St, New York City, NY 10001" -218680,Bose SoundSport Headphones,1,99.99,06/26/19 21:43,"593 Lakeview St, San Francisco, CA 94016" -218681,AAA Batteries (4-pack),1,2.99,06/24/19 15:47,"814 7th St, Austin, TX 73301" -218682,AAA Batteries (4-pack),3,2.99,06/18/19 00:05,"982 Highland St, New York City, NY 10001" -218683,Lightning Charging Cable,1,14.95,06/04/19 21:39,"440 Center St, Seattle, WA 98101" -218684,Macbook Pro Laptop,1,1700,06/01/19 13:00,"624 12th St, Atlanta, GA 30301" -218685,Google Phone,1,600,06/12/19 10:25,"578 9th St, Boston, MA 02215" -218685,USB-C Charging Cable,1,11.95,06/12/19 10:25,"578 9th St, Boston, MA 02215" -218686,27in FHD Monitor,1,149.99,06/24/19 19:11,"948 Pine St, Los Angeles, CA 90001" -218687,Wired Headphones,1,11.99,06/26/19 10:20,"142 13th St, Seattle, WA 98101" -218688,Apple Airpods Headphones,1,150,06/01/19 16:17,"858 Washington St, Austin, TX 73301" -218689,27in FHD Monitor,1,149.99,06/11/19 20:46,"601 Center St, Portland, OR 97035" -218690,27in FHD Monitor,1,149.99,06/27/19 23:20,"791 Main St, Los Angeles, CA 90001" -218691,34in Ultrawide Monitor,1,379.99,06/29/19 12:34,"364 Church St, San Francisco, CA 94016" -218692,AAA Batteries (4-pack),1,2.99,06/17/19 18:24,"515 Hill St, Boston, MA 02215" -218693,USB-C Charging Cable,2,11.95,06/21/19 12:21,"909 Ridge St, Seattle, WA 98101" -218694,Wired Headphones,1,11.99,06/19/19 20:11,"808 Sunset St, Boston, MA 02215" -218695,ThinkPad Laptop,1,999.99,06/07/19 17:19,"847 Chestnut St, San Francisco, CA 94016" -218696,Wired Headphones,1,11.99,06/11/19 13:01,"858 Hickory St, San Francisco, CA 94016" -218697,Apple Airpods Headphones,1,150,06/06/19 12:58,"239 North St, Los Angeles, CA 90001" -218698,27in FHD Monitor,1,149.99,06/16/19 10:23,"663 5th St, Los Angeles, CA 90001" -218699,Flatscreen TV,1,300,06/27/19 19:09,"39 Ridge St, Atlanta, GA 30301" -218700,Macbook Pro Laptop,1,1700,06/11/19 18:21,"215 4th St, New York City, NY 10001" -218701,Wired Headphones,1,11.99,06/21/19 17:43,"614 Madison St, Dallas, TX 75001" -218702,27in FHD Monitor,1,149.99,06/23/19 11:58,"358 8th St, Austin, TX 73301" -218703,27in 4K Gaming Monitor,1,389.99,06/28/19 08:05,"891 12th St, Dallas, TX 75001" -218704,AA Batteries (4-pack),1,3.84,06/03/19 22:52,"161 Park St, Atlanta, GA 30301" -218705,Macbook Pro Laptop,1,1700,06/22/19 20:52,"739 1st St, Los Angeles, CA 90001" -218706,Macbook Pro Laptop,1,1700,06/08/19 15:37,"945 Park St, Seattle, WA 98101" -218707,ThinkPad Laptop,1,999.99,06/07/19 10:41,"748 Johnson St, Portland, OR 97035" -218708,Google Phone,1,600,06/11/19 17:10,"156 11th St, Seattle, WA 98101" -218708,USB-C Charging Cable,1,11.95,06/11/19 17:10,"156 11th St, Seattle, WA 98101" -218708,Wired Headphones,1,11.99,06/11/19 17:10,"156 11th St, Seattle, WA 98101" -218709,Apple Airpods Headphones,1,150,06/07/19 09:49,"793 2nd St, New York City, NY 10001" -218710,27in FHD Monitor,1,149.99,06/02/19 23:35,"284 12th St, Atlanta, GA 30301" -218711,Macbook Pro Laptop,1,1700,06/19/19 19:15,"46 Cherry St, San Francisco, CA 94016" -218712,Vareebadd Phone,1,400,06/05/19 10:54,"680 Dogwood St, San Francisco, CA 94016" -218713,AAA Batteries (4-pack),3,2.99,06/22/19 21:20,"408 Washington St, Los Angeles, CA 90001" -218714,iPhone,1,700,06/24/19 18:11,"596 12th St, Dallas, TX 75001" -218715,USB-C Charging Cable,1,11.95,06/04/19 19:40,"97 Washington St, San Francisco, CA 94016" -218716,USB-C Charging Cable,1,11.95,06/04/19 20:57,"718 Park St, Los Angeles, CA 90001" -218717,Apple Airpods Headphones,1,150,06/26/19 23:33,"961 12th St, Boston, MA 02215" -218718,Lightning Charging Cable,1,14.95,06/11/19 14:42,"705 Highland St, Atlanta, GA 30301" -218719,USB-C Charging Cable,1,11.95,06/29/19 11:40,"969 Chestnut St, Atlanta, GA 30301" -218720,Bose SoundSport Headphones,1,99.99,06/30/19 22:46,"320 Willow St, San Francisco, CA 94016" -218721,USB-C Charging Cable,1,11.95,06/16/19 21:07,"316 River St, Atlanta, GA 30301" -218722,AAA Batteries (4-pack),1,2.99,06/12/19 23:14,"900 Dogwood St, Atlanta, GA 30301" -218723,iPhone,1,700,06/28/19 20:31,"660 6th St, Seattle, WA 98101" -218723,Lightning Charging Cable,1,14.95,06/28/19 20:31,"660 6th St, Seattle, WA 98101" -218723,Wired Headphones,1,11.99,06/28/19 20:31,"660 6th St, Seattle, WA 98101" -218724,AA Batteries (4-pack),2,3.84,06/14/19 03:36,"155 Hill St, San Francisco, CA 94016" -218725,20in Monitor,1,109.99,06/23/19 19:18,"352 Cherry St, New York City, NY 10001" -218726,AA Batteries (4-pack),1,3.84,06/25/19 22:09,"590 Washington St, San Francisco, CA 94016" -218727,Wired Headphones,1,11.99,06/15/19 10:48,"236 Lake St, San Francisco, CA 94016" -218728,27in FHD Monitor,1,149.99,06/05/19 22:30,"830 Pine St, Los Angeles, CA 90001" -218729,AA Batteries (4-pack),1,3.84,06/21/19 08:18,"867 River St, Boston, MA 02215" -218730,AA Batteries (4-pack),2,3.84,06/12/19 21:03,"128 Maple St, Boston, MA 02215" -218731,ThinkPad Laptop,1,999.99,06/02/19 14:18,"499 West St, Atlanta, GA 30301" -218732,Lightning Charging Cable,1,14.95,06/09/19 12:32,"311 5th St, New York City, NY 10001" -218733,Flatscreen TV,1,300,06/08/19 17:14,"723 Spruce St, Seattle, WA 98101" -218734,Macbook Pro Laptop,1,1700,06/02/19 18:38,"158 Lakeview St, Los Angeles, CA 90001" -218735,Wired Headphones,1,11.99,06/25/19 16:41,"880 Maple St, New York City, NY 10001" -218736,AA Batteries (4-pack),1,3.84,06/04/19 17:15,"802 Chestnut St, San Francisco, CA 94016" -218737,USB-C Charging Cable,1,11.95,06/20/19 11:25,"261 Wilson St, New York City, NY 10001" -218738,AAA Batteries (4-pack),2,2.99,06/23/19 11:12,"770 Madison St, New York City, NY 10001" -218739,Lightning Charging Cable,1,14.95,06/03/19 11:19,"740 Center St, Dallas, TX 75001" -218740,iPhone,1,700,06/11/19 14:19,"336 Willow St, Dallas, TX 75001" -218741,AA Batteries (4-pack),1,3.84,06/18/19 10:54,"35 6th St, New York City, NY 10001" -218742,27in FHD Monitor,1,149.99,06/20/19 16:32,"123 Jefferson St, Boston, MA 02215" -218743,Wired Headphones,1,11.99,06/06/19 11:27,"244 Elm St, New York City, NY 10001" -218744,Lightning Charging Cable,1,14.95,06/13/19 18:32,"726 Adams St, San Francisco, CA 94016" -218745,AA Batteries (4-pack),1,3.84,06/03/19 15:48,"16 Cherry St, Dallas, TX 75001" -218746,20in Monitor,1,109.99,06/10/19 15:37,"727 Chestnut St, New York City, NY 10001" -218747,USB-C Charging Cable,1,11.95,06/12/19 11:31,"314 Maple St, San Francisco, CA 94016" -218748,Lightning Charging Cable,1,14.95,06/17/19 19:20,"895 Cedar St, Los Angeles, CA 90001" -218749,Flatscreen TV,1,300,06/18/19 19:08,"124 Dogwood St, Portland, OR 97035" -218750,USB-C Charging Cable,1,11.95,06/30/19 16:52,"881 Forest St, New York City, NY 10001" -218751,Wired Headphones,1,11.99,06/20/19 13:35,"708 Jefferson St, Los Angeles, CA 90001" -218752,AA Batteries (4-pack),2,3.84,06/17/19 16:54,"770 12th St, San Francisco, CA 94016" -218753,AAA Batteries (4-pack),1,2.99,06/19/19 19:47,"925 West St, Atlanta, GA 30301" -218754,AA Batteries (4-pack),1,3.84,06/02/19 18:27,"24 Wilson St, Boston, MA 02215" -218755,AA Batteries (4-pack),1,3.84,06/08/19 10:42,"804 Madison St, New York City, NY 10001" -218756,AAA Batteries (4-pack),1,2.99,06/11/19 14:54,"362 Hickory St, Boston, MA 02215" -218756,AAA Batteries (4-pack),1,2.99,06/11/19 14:54,"362 Hickory St, Boston, MA 02215" -218757,27in FHD Monitor,1,149.99,06/19/19 08:29,"99 Willow St, New York City, NY 10001" -218758,AAA Batteries (4-pack),1,2.99,06/09/19 22:31,"23 Church St, Austin, TX 73301" -218759,AA Batteries (4-pack),1,3.84,06/15/19 13:06,"988 12th St, Los Angeles, CA 90001" -218760,Apple Airpods Headphones,1,150,06/30/19 14:28,"723 Highland St, Portland, OR 97035" -218761,Bose SoundSport Headphones,1,99.99,06/04/19 07:33,"910 Hill St, Austin, TX 73301" -218762,iPhone,1,700,06/18/19 14:05,"776 Cherry St, San Francisco, CA 94016" -218762,Lightning Charging Cable,1,14.95,06/18/19 14:05,"776 Cherry St, San Francisco, CA 94016" -218763,AAA Batteries (4-pack),1,2.99,06/27/19 19:03,"274 Main St, San Francisco, CA 94016" -218764,AA Batteries (4-pack),1,3.84,06/20/19 10:43,"162 2nd St, Austin, TX 73301" -218765,AA Batteries (4-pack),1,3.84,06/09/19 12:04,"508 Forest St, Boston, MA 02215" -218766,USB-C Charging Cable,1,11.95,06/10/19 18:41,"388 11th St, New York City, NY 10001" -218767,27in 4K Gaming Monitor,1,389.99,06/28/19 12:35,"913 Jackson St, Portland, ME 04101" -218768,Lightning Charging Cable,2,14.95,06/08/19 11:08,"911 Highland St, Portland, OR 97035" -218769,AA Batteries (4-pack),1,3.84,06/12/19 09:04,"786 9th St, Los Angeles, CA 90001" -218770,AA Batteries (4-pack),1,3.84,06/24/19 13:56,"187 10th St, Dallas, TX 75001" -218771,Lightning Charging Cable,2,14.95,06/24/19 21:34,"983 Pine St, New York City, NY 10001" -218772,AA Batteries (4-pack),1,3.84,06/15/19 22:12,"433 7th St, Boston, MA 02215" -218773,Lightning Charging Cable,1,14.95,06/02/19 03:50,"897 Center St, Austin, TX 73301" -218774,iPhone,1,700,06/10/19 11:19,"533 9th St, Dallas, TX 75001" -218774,Lightning Charging Cable,1,14.95,06/10/19 11:19,"533 9th St, Dallas, TX 75001" -218774,Wired Headphones,1,11.99,06/10/19 11:19,"533 9th St, Dallas, TX 75001" -218775,USB-C Charging Cable,1,11.95,06/05/19 13:17,"562 Jackson St, Los Angeles, CA 90001" -218776,Wired Headphones,1,11.99,06/24/19 19:17,"946 Maple St, New York City, NY 10001" -218777,AAA Batteries (4-pack),1,2.99,06/15/19 10:39,"107 Lake St, Boston, MA 02215" -218778,27in 4K Gaming Monitor,1,389.99,06/03/19 19:23,"352 Dogwood St, San Francisco, CA 94016" -218779,Apple Airpods Headphones,1,150,06/25/19 10:42,"199 Cherry St, Dallas, TX 75001" -218780,USB-C Charging Cable,1,11.95,06/04/19 12:26,"847 Jackson St, Boston, MA 02215" -218781,Bose SoundSport Headphones,1,99.99,06/17/19 18:28,"98 Jackson St, Seattle, WA 98101" -218782,AAA Batteries (4-pack),3,2.99,06/20/19 12:34,"649 11th St, Seattle, WA 98101" -218783,Flatscreen TV,1,300,06/05/19 13:43,"436 5th St, Atlanta, GA 30301" -218784,Lightning Charging Cable,1,14.95,06/15/19 16:37,"992 Wilson St, Portland, OR 97035" -218785,Bose SoundSport Headphones,1,99.99,06/09/19 11:54,"541 Forest St, San Francisco, CA 94016" -218786,AA Batteries (4-pack),2,3.84,06/11/19 13:27,"169 Hickory St, Seattle, WA 98101" -218787,AAA Batteries (4-pack),2,2.99,06/16/19 13:53,"986 Ridge St, Boston, MA 02215" -218788,27in 4K Gaming Monitor,1,389.99,06/30/19 15:21,"802 Lakeview St, Atlanta, GA 30301" -218789,AA Batteries (4-pack),1,3.84,06/25/19 09:32,"35 7th St, San Francisco, CA 94016" -218790,20in Monitor,1,109.99,06/13/19 15:29,"322 Hickory St, San Francisco, CA 94016" -218791,ThinkPad Laptop,1,999.99,06/08/19 00:21,"982 14th St, San Francisco, CA 94016" -218792,Bose SoundSport Headphones,1,99.99,06/29/19 21:27,"432 Spruce St, San Francisco, CA 94016" -218793,Bose SoundSport Headphones,1,99.99,06/15/19 20:38,"159 Madison St, Seattle, WA 98101" -218794,ThinkPad Laptop,1,999.99,06/14/19 20:07,"419 South St, New York City, NY 10001" -218795,Flatscreen TV,1,300,06/13/19 11:11,"929 4th St, Dallas, TX 75001" -218796,AA Batteries (4-pack),1,3.84,06/25/19 20:46,"135 Spruce St, Boston, MA 02215" -218797,AAA Batteries (4-pack),2,2.99,06/23/19 15:20,"529 Jefferson St, Portland, OR 97035" -218798,Apple Airpods Headphones,1,150,06/24/19 17:34,"61 Lakeview St, New York City, NY 10001" -218799,AA Batteries (4-pack),1,3.84,06/13/19 22:47,"82 Johnson St, San Francisco, CA 94016" -218800,USB-C Charging Cable,1,11.95,06/08/19 07:25,"774 Madison St, Boston, MA 02215" -218801,Flatscreen TV,1,300,06/11/19 14:34,"68 1st St, Dallas, TX 75001" -218802,iPhone,1,700,06/27/19 14:26,"612 Meadow St, San Francisco, CA 94016" -218802,Apple Airpods Headphones,1,150,06/27/19 14:26,"612 Meadow St, San Francisco, CA 94016" -218803,AAA Batteries (4-pack),1,2.99,06/28/19 15:43,"550 1st St, Los Angeles, CA 90001" -218804,Lightning Charging Cable,1,14.95,06/29/19 19:58,"762 Madison St, Los Angeles, CA 90001" -218805,34in Ultrawide Monitor,1,379.99,06/19/19 14:22,"619 Spruce St, Los Angeles, CA 90001" -218806,Lightning Charging Cable,1,14.95,06/06/19 16:54,"352 Cedar St, New York City, NY 10001" -218807,AAA Batteries (4-pack),2,2.99,06/11/19 13:58,"520 Chestnut St, Los Angeles, CA 90001" -218808,AA Batteries (4-pack),1,3.84,06/16/19 07:24,"128 9th St, Atlanta, GA 30301" -218809,AA Batteries (4-pack),1,3.84,06/30/19 17:40,"724 14th St, San Francisco, CA 94016" -218810,USB-C Charging Cable,2,11.95,06/24/19 20:19,"453 4th St, Los Angeles, CA 90001" -218811,iPhone,1,700,06/04/19 11:16,"422 Highland St, Portland, ME 04101" -218812,Google Phone,1,600,06/12/19 07:53,"842 Elm St, San Francisco, CA 94016" -218812,Wired Headphones,2,11.99,06/12/19 07:53,"842 Elm St, San Francisco, CA 94016" -218813,27in 4K Gaming Monitor,1,389.99,06/16/19 20:13,"98 Lincoln St, Boston, MA 02215" -218814,Lightning Charging Cable,1,14.95,06/22/19 09:06,"224 Pine St, Boston, MA 02215" -218815,27in 4K Gaming Monitor,1,389.99,06/24/19 00:52,"134 5th St, San Francisco, CA 94016" -218816,Lightning Charging Cable,1,14.95,06/01/19 09:10,"93 North St, New York City, NY 10001" -218817,Wired Headphones,1,11.99,06/21/19 13:37,"475 Meadow St, Austin, TX 73301" -218818,Wired Headphones,1,11.99,06/15/19 20:29,"85 Jackson St, Los Angeles, CA 90001" -218819,Apple Airpods Headphones,1,150,06/04/19 20:42,"881 Sunset St, Los Angeles, CA 90001" -218819,Bose SoundSport Headphones,1,99.99,06/04/19 20:42,"881 Sunset St, Los Angeles, CA 90001" -218820,27in 4K Gaming Monitor,1,389.99,06/07/19 23:12,"271 Hickory St, New York City, NY 10001" -218821,Wired Headphones,1,11.99,06/12/19 09:33,"220 6th St, Dallas, TX 75001" -218822,Google Phone,1,600,06/30/19 11:48,"624 Jefferson St, Los Angeles, CA 90001" -218823,Apple Airpods Headphones,1,150,06/06/19 09:54,"580 9th St, New York City, NY 10001" -218824,Wired Headphones,1,11.99,06/21/19 16:18,"13 7th St, Atlanta, GA 30301" -218825,Bose SoundSport Headphones,1,99.99,06/18/19 13:08,"972 Madison St, Los Angeles, CA 90001" -218826,USB-C Charging Cable,1,11.95,06/29/19 18:53,"639 Wilson St, Portland, OR 97035" -218827,Bose SoundSport Headphones,1,99.99,06/24/19 12:19,"964 Spruce St, Austin, TX 73301" -218828,34in Ultrawide Monitor,1,379.99,06/27/19 11:49,"149 Pine St, Boston, MA 02215" -218829,Google Phone,1,600,06/01/19 21:20,"443 Spruce St, San Francisco, CA 94016" -218830,Wired Headphones,1,11.99,06/15/19 09:14,"552 Lakeview St, Dallas, TX 75001" -218831,ThinkPad Laptop,1,999.99,06/10/19 08:06,"702 Main St, Los Angeles, CA 90001" -218832,USB-C Charging Cable,1,11.95,06/11/19 20:05,"990 Johnson St, Portland, OR 97035" -218833,Apple Airpods Headphones,1,150,06/28/19 11:59,"774 1st St, Boston, MA 02215" -218834,iPhone,1,700,06/10/19 15:20,"207 6th St, Seattle, WA 98101" -218834,Wired Headphones,1,11.99,06/10/19 15:20,"207 6th St, Seattle, WA 98101" -,,,,, -218835,USB-C Charging Cable,1,11.95,06/07/19 13:34,"484 9th St, Los Angeles, CA 90001" -218836,AAA Batteries (4-pack),1,2.99,06/05/19 12:20,"259 Madison St, Los Angeles, CA 90001" -218837,USB-C Charging Cable,2,11.95,06/22/19 21:47,"912 South St, Los Angeles, CA 90001" -218838,AA Batteries (4-pack),1,3.84,06/14/19 09:48,"630 Ridge St, Los Angeles, CA 90001" -218839,Apple Airpods Headphones,1,150,06/13/19 17:42,"476 Forest St, Boston, MA 02215" -218840,AAA Batteries (4-pack),1,2.99,06/24/19 16:46,"561 Adams St, San Francisco, CA 94016" -218841,Vareebadd Phone,1,400,06/03/19 13:22,"986 River St, Boston, MA 02215" -218841,USB-C Charging Cable,1,11.95,06/03/19 13:22,"986 River St, Boston, MA 02215" -218842,AAA Batteries (4-pack),2,2.99,06/17/19 22:02,"759 Forest St, Boston, MA 02215" -218843,AA Batteries (4-pack),2,3.84,06/30/19 23:13,"407 4th St, Dallas, TX 75001" -218844,Lightning Charging Cable,1,14.95,06/19/19 15:58,"841 Adams St, San Francisco, CA 94016" -218845,Lightning Charging Cable,1,14.95,06/22/19 20:12,"322 Jefferson St, Portland, OR 97035" -218846,USB-C Charging Cable,1,11.95,06/14/19 08:31,"725 7th St, Los Angeles, CA 90001" -218847,USB-C Charging Cable,1,11.95,06/17/19 07:34,"206 Lincoln St, Seattle, WA 98101" -218848,iPhone,1,700,06/23/19 20:40,"755 Jackson St, Los Angeles, CA 90001" -218848,Lightning Charging Cable,1,14.95,06/23/19 20:40,"755 Jackson St, Los Angeles, CA 90001" -218849,LG Dryer,1,600.0,06/02/19 16:29,"515 7th St, Austin, TX 73301" -218850,AAA Batteries (4-pack),1,2.99,06/26/19 10:20,"367 Washington St, Portland, OR 97035" -218851,AA Batteries (4-pack),1,3.84,06/06/19 00:23,"113 Sunset St, San Francisco, CA 94016" -218852,Lightning Charging Cable,1,14.95,06/05/19 09:23,"484 Chestnut St, San Francisco, CA 94016" -218853,27in 4K Gaming Monitor,1,389.99,06/29/19 21:57,"712 8th St, Los Angeles, CA 90001" -218854,27in FHD Monitor,1,149.99,06/05/19 10:25,"558 5th St, San Francisco, CA 94016" -218855,Wired Headphones,1,11.99,06/11/19 14:10,"657 7th St, Los Angeles, CA 90001" -218856,Wired Headphones,1,11.99,06/11/19 09:35,"397 13th St, San Francisco, CA 94016" -218857,Vareebadd Phone,1,400,06/25/19 21:08,"886 Jefferson St, Boston, MA 02215" -218858,USB-C Charging Cable,1,11.95,06/02/19 18:19,"978 Main St, Boston, MA 02215" -218859,Wired Headphones,1,11.99,06/01/19 18:11,"5 Ridge St, Portland, OR 97035" -218860,AAA Batteries (4-pack),1,2.99,06/06/19 07:33,"760 Park St, Portland, ME 04101" -218861,Macbook Pro Laptop,1,1700,06/28/19 19:59,"169 Meadow St, Dallas, TX 75001" -218862,AAA Batteries (4-pack),1,2.99,06/11/19 22:54,"344 Jackson St, Dallas, TX 75001" -218863,USB-C Charging Cable,1,11.95,06/07/19 09:52,"270 Chestnut St, Los Angeles, CA 90001" -218864,Bose SoundSport Headphones,1,99.99,06/16/19 10:25,"397 Jackson St, San Francisco, CA 94016" -218865,Wired Headphones,1,11.99,06/26/19 18:02,"953 Center St, Boston, MA 02215" -218866,27in FHD Monitor,1,149.99,06/05/19 10:58,"452 Lake St, Seattle, WA 98101" -218867,AA Batteries (4-pack),1,3.84,06/08/19 15:29,"107 Lake St, San Francisco, CA 94016" -218868,Lightning Charging Cable,1,14.95,06/04/19 23:45,"929 1st St, Dallas, TX 75001" -218869,ThinkPad Laptop,1,999.99,06/14/19 07:07,"365 Cherry St, New York City, NY 10001" -218870,USB-C Charging Cable,2,11.95,06/17/19 21:38,"781 Lakeview St, Dallas, TX 75001" -218871,AAA Batteries (4-pack),1,2.99,06/10/19 12:44,"954 13th St, San Francisco, CA 94016" -218872,27in 4K Gaming Monitor,1,389.99,06/18/19 12:21,"673 West St, Atlanta, GA 30301" -218873,34in Ultrawide Monitor,1,379.99,06/29/19 17:32,"356 14th St, Boston, MA 02215" -218874,Wired Headphones,1,11.99,06/06/19 13:28,"584 Pine St, San Francisco, CA 94016" -218875,Apple Airpods Headphones,1,150,06/11/19 21:37,"190 Wilson St, San Francisco, CA 94016" -218876,AA Batteries (4-pack),2,3.84,06/15/19 11:33,"18 Sunset St, Los Angeles, CA 90001" -218877,Lightning Charging Cable,1,14.95,06/02/19 14:57,"244 Walnut St, San Francisco, CA 94016" -218878,USB-C Charging Cable,1,11.95,06/04/19 13:53,"489 Washington St, New York City, NY 10001" -218879,AA Batteries (4-pack),2,3.84,06/09/19 12:11,"460 Lakeview St, San Francisco, CA 94016" -218880,Wired Headphones,1,11.99,06/20/19 12:41,"692 10th St, Los Angeles, CA 90001" -218881,34in Ultrawide Monitor,1,379.99,06/01/19 07:40,"410 Elm St, San Francisco, CA 94016" -218882,Flatscreen TV,1,300,06/12/19 03:14,"27 Hill St, Los Angeles, CA 90001" -218883,27in 4K Gaming Monitor,1,389.99,06/02/19 21:11,"330 9th St, Boston, MA 02215" -218884,AA Batteries (4-pack),2,3.84,06/21/19 13:37,"646 Meadow St, New York City, NY 10001" -218885,AAA Batteries (4-pack),1,2.99,06/09/19 00:15,"222 Cedar St, San Francisco, CA 94016" -218886,Macbook Pro Laptop,1,1700,06/18/19 02:32,"459 Elm St, San Francisco, CA 94016" -218887,27in FHD Monitor,1,149.99,06/21/19 14:16,"927 Johnson St, San Francisco, CA 94016" -218888,Bose SoundSport Headphones,1,99.99,06/23/19 16:14,"300 1st St, Portland, OR 97035" -218889,20in Monitor,1,109.99,06/07/19 00:16,"136 Church St, Los Angeles, CA 90001" -218890,20in Monitor,1,109.99,06/30/19 15:42,"322 Dogwood St, New York City, NY 10001" -218891,Apple Airpods Headphones,1,150,06/07/19 10:38,"786 Forest St, Dallas, TX 75001" -218892,Lightning Charging Cable,1,14.95,06/16/19 10:44,"387 Sunset St, New York City, NY 10001" -218893,USB-C Charging Cable,1,11.95,06/24/19 21:15,"314 Center St, Los Angeles, CA 90001" -218894,USB-C Charging Cable,1,11.95,06/20/19 17:09,"23 Spruce St, San Francisco, CA 94016" -218895,USB-C Charging Cable,1,11.95,06/04/19 20:10,"273 Madison St, Los Angeles, CA 90001" -218896,iPhone,1,700,06/19/19 18:07,"595 Johnson St, San Francisco, CA 94016" -218897,Lightning Charging Cable,1,14.95,06/04/19 13:45,"337 Sunset St, San Francisco, CA 94016" -218898,AA Batteries (4-pack),1,3.84,06/20/19 13:10,"968 Adams St, Los Angeles, CA 90001" -218899,Bose SoundSport Headphones,1,99.99,06/19/19 17:43,"164 Main St, Dallas, TX 75001" -218900,AAA Batteries (4-pack),2,2.99,06/12/19 21:03,"17 Dogwood St, Portland, OR 97035" -218901,Vareebadd Phone,1,400,06/22/19 13:11,"143 Chestnut St, Los Angeles, CA 90001" -218902,Bose SoundSport Headphones,1,99.99,06/28/19 14:12,"894 Lakeview St, Boston, MA 02215" -218903,USB-C Charging Cable,1,11.95,06/21/19 11:13,"410 Washington St, Boston, MA 02215" -218904,AA Batteries (4-pack),1,3.84,06/15/19 11:14,"953 6th St, San Francisco, CA 94016" -218905,Lightning Charging Cable,1,14.95,06/04/19 10:36,"578 Forest St, Seattle, WA 98101" -218906,AAA Batteries (4-pack),1,2.99,06/30/19 23:04,"512 Lakeview St, San Francisco, CA 94016" -218907,27in 4K Gaming Monitor,1,389.99,06/28/19 12:50,"828 4th St, Boston, MA 02215" -218908,Wired Headphones,1,11.99,06/11/19 17:22,"822 Hill St, Los Angeles, CA 90001" -218909,AA Batteries (4-pack),1,3.84,06/07/19 08:10,"300 Maple St, Dallas, TX 75001" -218910,AAA Batteries (4-pack),1,2.99,06/30/19 13:40,"277 Ridge St, Dallas, TX 75001" -218911,Lightning Charging Cable,1,14.95,06/08/19 11:11,"695 Church St, Los Angeles, CA 90001" -218911,Macbook Pro Laptop,1,1700,06/08/19 11:11,"695 Church St, Los Angeles, CA 90001" -218912,AAA Batteries (4-pack),1,2.99,06/02/19 10:27,"917 Madison St, Los Angeles, CA 90001" -218913,ThinkPad Laptop,1,999.99,06/01/19 18:33,"726 Lincoln St, Boston, MA 02215" -218914,27in 4K Gaming Monitor,1,389.99,06/26/19 18:14,"276 8th St, New York City, NY 10001" -218915,USB-C Charging Cable,1,11.95,06/26/19 10:44,"168 Cedar St, Austin, TX 73301" -218916,AAA Batteries (4-pack),3,2.99,06/21/19 19:35,"396 4th St, San Francisco, CA 94016" -218917,AA Batteries (4-pack),1,3.84,06/08/19 17:52,"57 Jackson St, San Francisco, CA 94016" -218918,USB-C Charging Cable,1,11.95,06/17/19 13:17,"56 11th St, New York City, NY 10001" -218919,AAA Batteries (4-pack),3,2.99,06/22/19 19:53,"244 Forest St, San Francisco, CA 94016" -218920,Bose SoundSport Headphones,1,99.99,06/24/19 21:55,"385 Willow St, Los Angeles, CA 90001" -218921,Wired Headphones,1,11.99,06/07/19 22:41,"474 Ridge St, Austin, TX 73301" -218922,Lightning Charging Cable,1,14.95,06/06/19 18:46,"137 Jefferson St, Seattle, WA 98101" -218923,USB-C Charging Cable,2,11.95,06/01/19 20:15,"846 Forest St, New York City, NY 10001" -218924,Apple Airpods Headphones,1,150,06/12/19 14:32,"760 Adams St, Los Angeles, CA 90001" -218925,AAA Batteries (4-pack),1,2.99,06/29/19 21:17,"528 5th St, Los Angeles, CA 90001" -218926,Lightning Charging Cable,1,14.95,06/04/19 22:46,"499 Cherry St, San Francisco, CA 94016" -218927,AAA Batteries (4-pack),1,2.99,06/17/19 04:09,"297 Walnut St, Los Angeles, CA 90001" -218928,AA Batteries (4-pack),1,3.84,06/17/19 13:16,"399 4th St, New York City, NY 10001" -218929,Apple Airpods Headphones,1,150,06/22/19 18:11,"491 12th St, Boston, MA 02215" -218930,Google Phone,1,600,06/23/19 23:18,"478 West St, San Francisco, CA 94016" -218931,LG Washing Machine,1,600.0,06/03/19 02:16,"742 Johnson St, San Francisco, CA 94016" -218932,Flatscreen TV,1,300,06/10/19 17:06,"283 Johnson St, Dallas, TX 75001" -218933,Lightning Charging Cable,1,14.95,06/16/19 08:38,"360 11th St, Seattle, WA 98101" -218934,Wired Headphones,1,11.99,06/08/19 20:19,"382 6th St, San Francisco, CA 94016" -218935,Flatscreen TV,1,300,06/03/19 18:10,"935 1st St, Seattle, WA 98101" -218936,Lightning Charging Cable,1,14.95,06/28/19 20:23,"504 Hill St, Austin, TX 73301" -218937,34in Ultrawide Monitor,1,379.99,06/12/19 21:15,"103 14th St, Boston, MA 02215" -218938,AA Batteries (4-pack),1,3.84,06/03/19 20:27,"150 Center St, Los Angeles, CA 90001" -218939,AA Batteries (4-pack),1,3.84,06/28/19 19:38,"961 Ridge St, San Francisco, CA 94016" -218940,AAA Batteries (4-pack),1,2.99,06/24/19 09:05,"773 Lakeview St, Portland, OR 97035" -218941,AA Batteries (4-pack),1,3.84,06/23/19 17:35,"882 River St, Seattle, WA 98101" -218942,Wired Headphones,1,11.99,06/11/19 11:25,"944 1st St, San Francisco, CA 94016" -218943,34in Ultrawide Monitor,1,379.99,06/28/19 20:04,"298 Wilson St, San Francisco, CA 94016" -218944,USB-C Charging Cable,1,11.95,06/03/19 20:16,"602 Pine St, San Francisco, CA 94016" -218945,ThinkPad Laptop,1,999.99,06/23/19 18:20,"992 Willow St, New York City, NY 10001" -218946,USB-C Charging Cable,1,11.95,06/14/19 17:39,"859 Main St, Dallas, TX 75001" -218947,27in FHD Monitor,1,149.99,06/30/19 13:19,"100 4th St, Los Angeles, CA 90001" -218948,iPhone,1,700,06/02/19 13:15,"772 4th St, New York City, NY 10001" -218949,Bose SoundSport Headphones,1,99.99,06/15/19 20:47,"109 Cedar St, New York City, NY 10001" -218950,Lightning Charging Cable,2,14.95,06/18/19 16:01,"987 Walnut St, Austin, TX 73301" -218951,Lightning Charging Cable,1,14.95,06/01/19 17:44,"725 Church St, Dallas, TX 75001" -218952,Bose SoundSport Headphones,1,99.99,06/07/19 01:50,"264 Church St, New York City, NY 10001" -218953,Apple Airpods Headphones,1,150,06/08/19 13:36,"905 Wilson St, Boston, MA 02215" -218954,Apple Airpods Headphones,1,150,06/24/19 08:57,"159 Meadow St, San Francisco, CA 94016" -218955,27in FHD Monitor,1,149.99,06/17/19 16:22,"538 Main St, San Francisco, CA 94016" -218956,34in Ultrawide Monitor,1,379.99,06/14/19 16:37,"815 10th St, Boston, MA 02215" -218957,AAA Batteries (4-pack),2,2.99,06/11/19 17:23,"837 Chestnut St, Los Angeles, CA 90001" -218958,iPhone,1,700,06/22/19 19:14,"416 2nd St, Los Angeles, CA 90001" -218959,Lightning Charging Cable,1,14.95,06/29/19 21:32,"16 7th St, New York City, NY 10001" -218960,Bose SoundSport Headphones,1,99.99,06/11/19 16:18,"625 Lakeview St, San Francisco, CA 94016" -218960,Wired Headphones,1,11.99,06/11/19 16:18,"625 Lakeview St, San Francisco, CA 94016" -218961,Google Phone,1,600,06/22/19 00:08,"577 Park St, Seattle, WA 98101" -218961,Wired Headphones,2,11.99,06/22/19 00:08,"577 Park St, Seattle, WA 98101" -218962,AA Batteries (4-pack),2,3.84,06/10/19 11:04,"96 Lake St, Dallas, TX 75001" -218963,27in 4K Gaming Monitor,1,389.99,06/10/19 13:19,"632 Forest St, New York City, NY 10001" -218964,Apple Airpods Headphones,1,150,06/20/19 23:19,"770 Johnson St, Seattle, WA 98101" -218965,Wired Headphones,2,11.99,06/08/19 15:09,"626 Dogwood St, New York City, NY 10001" -218966,iPhone,1,700,06/01/19 10:39,"296 Church St, San Francisco, CA 94016" -218967,Lightning Charging Cable,1,14.95,06/11/19 20:43,"492 4th St, Dallas, TX 75001" -218968,AA Batteries (4-pack),1,3.84,06/07/19 18:36,"698 1st St, Boston, MA 02215" -218969,Macbook Pro Laptop,1,1700,06/22/19 11:25,"377 Elm St, Dallas, TX 75001" -218970,Vareebadd Phone,1,400,06/20/19 07:52,"495 Wilson St, Atlanta, GA 30301" -218971,ThinkPad Laptop,1,999.99,06/17/19 10:31,"824 Ridge St, Atlanta, GA 30301" -218972,USB-C Charging Cable,1,11.95,06/10/19 21:35,"366 1st St, New York City, NY 10001" -218973,USB-C Charging Cable,1,11.95,06/14/19 11:37,"28 7th St, New York City, NY 10001" -218974,27in 4K Gaming Monitor,1,389.99,06/02/19 20:11,"556 Jefferson St, Portland, OR 97035" -218974,AAA Batteries (4-pack),1,2.99,06/02/19 20:11,"556 Jefferson St, Portland, OR 97035" -218975,Wired Headphones,1,11.99,06/11/19 14:22,"55 8th St, San Francisco, CA 94016" -218976,AA Batteries (4-pack),3,3.84,06/18/19 07:58,"717 Dogwood St, Boston, MA 02215" -218977,USB-C Charging Cable,1,11.95,06/13/19 10:46,"649 12th St, Boston, MA 02215" -218978,iPhone,1,700,06/28/19 13:16,"949 Ridge St, Atlanta, GA 30301" -218978,Lightning Charging Cable,2,14.95,06/28/19 13:16,"949 Ridge St, Atlanta, GA 30301" -218979,Bose SoundSport Headphones,1,99.99,06/12/19 19:28,"750 Center St, San Francisco, CA 94016" -218980,Lightning Charging Cable,1,14.95,06/27/19 08:27,"234 Center St, Atlanta, GA 30301" -218981,Wired Headphones,2,11.99,06/14/19 12:34,"967 Jefferson St, Seattle, WA 98101" -218982,USB-C Charging Cable,2,11.95,06/10/19 18:53,"781 5th St, Atlanta, GA 30301" -218983,AAA Batteries (4-pack),1,2.99,06/05/19 11:50,"894 Lake St, Los Angeles, CA 90001" -218983,Wired Headphones,1,11.99,06/05/19 11:50,"894 Lake St, Los Angeles, CA 90001" -218984,Bose SoundSport Headphones,1,99.99,06/28/19 02:02,"476 River St, San Francisco, CA 94016" -218985,Apple Airpods Headphones,1,150,06/22/19 12:04,"709 1st St, New York City, NY 10001" -218986,AAA Batteries (4-pack),2,2.99,06/16/19 19:25,"427 6th St, San Francisco, CA 94016" -218987,USB-C Charging Cable,1,11.95,06/10/19 12:07,"494 10th St, Los Angeles, CA 90001" -218988,Lightning Charging Cable,1,14.95,06/11/19 19:27,"22 Jefferson St, Austin, TX 73301" -218989,Apple Airpods Headphones,1,150,06/01/19 12:01,"551 4th St, San Francisco, CA 94016" -218990,Bose SoundSport Headphones,1,99.99,06/29/19 08:05,"967 Adams St, San Francisco, CA 94016" -218991,Wired Headphones,1,11.99,06/28/19 10:05,"712 Pine St, San Francisco, CA 94016" -218992,AA Batteries (4-pack),1,3.84,06/25/19 04:21,"186 Ridge St, Seattle, WA 98101" -218993,iPhone,1,700,06/19/19 21:09,"678 River St, Portland, OR 97035" -218994,USB-C Charging Cable,1,11.95,06/24/19 12:18,"638 Lake St, New York City, NY 10001" -218995,iPhone,1,700,06/20/19 12:51,"470 4th St, New York City, NY 10001" -218995,Lightning Charging Cable,1,14.95,06/20/19 12:51,"470 4th St, New York City, NY 10001" -218995,34in Ultrawide Monitor,1,379.99,06/20/19 12:51,"470 4th St, New York City, NY 10001" -218996,Bose SoundSport Headphones,1,99.99,06/23/19 00:44,"413 Johnson St, Boston, MA 02215" -218997,AAA Batteries (4-pack),1,2.99,06/09/19 12:11,"93 West St, Los Angeles, CA 90001" -218998,Bose SoundSport Headphones,1,99.99,06/01/19 13:59,"344 4th St, Los Angeles, CA 90001" -218999,Macbook Pro Laptop,1,1700,06/18/19 19:21,"576 Willow St, Los Angeles, CA 90001" -219000,27in 4K Gaming Monitor,1,389.99,06/21/19 09:01,"27 Washington St, Austin, TX 73301" -219001,Lightning Charging Cable,1,14.95,06/29/19 09:40,"416 8th St, San Francisco, CA 94016" -219002,AA Batteries (4-pack),2,3.84,06/12/19 12:06,"877 4th St, San Francisco, CA 94016" -219003,AAA Batteries (4-pack),1,2.99,06/26/19 22:25,"85 Main St, Boston, MA 02215" -219004,Flatscreen TV,1,300,06/19/19 21:27,"785 2nd St, San Francisco, CA 94016" -219005,iPhone,1,700,06/07/19 13:50,"902 Lincoln St, Dallas, TX 75001" -219005,Lightning Charging Cable,1,14.95,06/07/19 13:50,"902 Lincoln St, Dallas, TX 75001" -219006,Wired Headphones,1,11.99,06/20/19 08:21,"779 Jefferson St, New York City, NY 10001" -219007,AA Batteries (4-pack),1,3.84,06/24/19 11:16,"42 8th St, Los Angeles, CA 90001" -219007,AA Batteries (4-pack),1,3.84,06/24/19 11:16,"42 8th St, Los Angeles, CA 90001" -219008,AA Batteries (4-pack),2,3.84,06/05/19 18:38,"485 West St, Atlanta, GA 30301" -219009,Vareebadd Phone,1,400,06/08/19 12:38,"903 Jackson St, San Francisco, CA 94016" -219009,USB-C Charging Cable,1,11.95,06/08/19 12:38,"903 Jackson St, San Francisco, CA 94016" -219010,USB-C Charging Cable,1,11.95,06/26/19 22:00,"838 Chestnut St, Portland, ME 04101" -219011,AA Batteries (4-pack),2,3.84,06/08/19 11:47,"715 Jefferson St, San Francisco, CA 94016" -219012,iPhone,1,700,06/19/19 12:23,"54 Chestnut St, Los Angeles, CA 90001" -219013,Bose SoundSport Headphones,1,99.99,06/02/19 14:53,"267 Center St, Atlanta, GA 30301" -219014,USB-C Charging Cable,1,11.95,06/17/19 01:02,"340 2nd St, New York City, NY 10001" -219015,USB-C Charging Cable,1,11.95,06/20/19 22:10,"629 Cedar St, San Francisco, CA 94016" -219016,27in FHD Monitor,1,149.99,06/29/19 09:39,"766 Dogwood St, San Francisco, CA 94016" -219017,AA Batteries (4-pack),1,3.84,06/09/19 07:38,"253 Church St, Austin, TX 73301" -219018,Apple Airpods Headphones,1,150,06/01/19 13:01,"381 4th St, New York City, NY 10001" -219019,USB-C Charging Cable,2,11.95,06/09/19 19:23,"922 Highland St, San Francisco, CA 94016" -219020,AAA Batteries (4-pack),1,2.99,06/18/19 22:22,"237 Lincoln St, San Francisco, CA 94016" -219021,Bose SoundSport Headphones,1,99.99,06/29/19 21:59,"409 Park St, Portland, ME 04101" -219022,USB-C Charging Cable,1,11.95,06/29/19 15:36,"437 Lake St, Los Angeles, CA 90001" -219023,20in Monitor,1,109.99,06/19/19 22:17,"9 Hickory St, Dallas, TX 75001" -219024,Lightning Charging Cable,1,14.95,06/21/19 16:32,"835 Main St, Los Angeles, CA 90001" -219025,Google Phone,1,600,06/05/19 09:32,"570 8th St, Dallas, TX 75001" -219026,Apple Airpods Headphones,1,150,06/20/19 23:55,"359 Lincoln St, Seattle, WA 98101" -219027,Apple Airpods Headphones,1,150,06/29/19 11:18,"512 Washington St, San Francisco, CA 94016" -219028,27in FHD Monitor,1,149.99,06/04/19 12:55,"414 6th St, Boston, MA 02215" -219029,Bose SoundSport Headphones,1,99.99,06/29/19 19:57,"873 5th St, Dallas, TX 75001" -219030,Lightning Charging Cable,2,14.95,06/04/19 11:48,"744 Main St, Los Angeles, CA 90001" -219031,AA Batteries (4-pack),1,3.84,06/04/19 06:59,"92 Elm St, Los Angeles, CA 90001" -219032,Wired Headphones,1,11.99,06/19/19 11:42,"351 12th St, Dallas, TX 75001" -219033,Vareebadd Phone,1,400,06/30/19 08:48,"479 Center St, Boston, MA 02215" -219034,AA Batteries (4-pack),1,3.84,06/17/19 17:12,"31 Washington St, Atlanta, GA 30301" -219035,Lightning Charging Cable,1,14.95,06/25/19 13:39,"728 Cherry St, New York City, NY 10001" -219036,Apple Airpods Headphones,1,150,06/14/19 23:11,"482 Walnut St, Portland, OR 97035" -219037,Bose SoundSport Headphones,1,99.99,06/18/19 15:25,"658 Elm St, San Francisco, CA 94016" -219038,Apple Airpods Headphones,1,150,06/17/19 21:02,"789 Ridge St, New York City, NY 10001" -219039,Wired Headphones,1,11.99,06/12/19 10:21,"803 Park St, Los Angeles, CA 90001" -219040,Apple Airpods Headphones,2,150,06/13/19 15:33,"78 Madison St, San Francisco, CA 94016" -219041,iPhone,1,700,06/19/19 16:24,"540 12th St, San Francisco, CA 94016" -219042,27in FHD Monitor,1,149.99,06/06/19 19:57,"685 River St, New York City, NY 10001" -219043,Lightning Charging Cable,1,14.95,06/11/19 08:23,"257 Dogwood St, New York City, NY 10001" -219044,Flatscreen TV,1,300,06/21/19 21:42,"714 River St, Los Angeles, CA 90001" -219045,Bose SoundSport Headphones,1,99.99,06/09/19 10:31,"721 South St, San Francisco, CA 94016" -219046,Lightning Charging Cable,1,14.95,06/22/19 16:52,"310 West St, Boston, MA 02215" -219047,27in 4K Gaming Monitor,1,389.99,06/13/19 07:53,"981 Adams St, Seattle, WA 98101" -219048,AA Batteries (4-pack),1,3.84,06/22/19 15:19,"358 7th St, Los Angeles, CA 90001" -219049,USB-C Charging Cable,1,11.95,06/27/19 15:58,"389 5th St, Boston, MA 02215" -219050,Lightning Charging Cable,1,14.95,06/10/19 21:30,"174 West St, San Francisco, CA 94016" -219051,Lightning Charging Cable,1,14.95,06/26/19 22:16,"841 Hill St, Atlanta, GA 30301" -219052,Google Phone,1,600,06/28/19 21:46,"169 Ridge St, Los Angeles, CA 90001" -219053,iPhone,1,700,06/23/19 07:56,"644 Willow St, Portland, OR 97035" -219053,Apple Airpods Headphones,1,150,06/23/19 07:56,"644 Willow St, Portland, OR 97035" -219054,USB-C Charging Cable,1,11.95,06/07/19 15:58,"483 13th St, Atlanta, GA 30301" -219055,34in Ultrawide Monitor,1,379.99,06/08/19 12:47,"780 4th St, San Francisco, CA 94016" -219056,Flatscreen TV,1,300,06/16/19 11:38,"80 Lakeview St, San Francisco, CA 94016" -219057,Apple Airpods Headphones,1,150,06/24/19 17:39,"229 Sunset St, Dallas, TX 75001" -219058,Apple Airpods Headphones,1,150,06/08/19 23:18,"849 Adams St, Atlanta, GA 30301" -219059,20in Monitor,1,109.99,06/03/19 16:45,"190 Hickory St, Austin, TX 73301" -219060,AA Batteries (4-pack),1,3.84,06/27/19 19:52,"13 Walnut St, New York City, NY 10001" -219061,Apple Airpods Headphones,1,150,06/08/19 21:43,"296 2nd St, Austin, TX 73301" -219062,AAA Batteries (4-pack),2,2.99,06/10/19 20:26,"201 14th St, San Francisco, CA 94016" -219063,Wired Headphones,1,11.99,06/21/19 16:16,"968 4th St, New York City, NY 10001" -219064,Wired Headphones,1,11.99,06/19/19 18:06,"807 Pine St, Seattle, WA 98101" -219065,AAA Batteries (4-pack),1,2.99,06/03/19 22:29,"75 Main St, San Francisco, CA 94016" -219066,Apple Airpods Headphones,1,150,06/25/19 18:17,"648 Elm St, New York City, NY 10001" -219067,USB-C Charging Cable,1,11.95,06/17/19 17:59,"370 Walnut St, San Francisco, CA 94016" -219068,Bose SoundSport Headphones,1,99.99,06/28/19 22:00,"3 Jackson St, Seattle, WA 98101" -219069,AAA Batteries (4-pack),3,2.99,06/15/19 06:38,"671 Sunset St, Seattle, WA 98101" -219070,Bose SoundSport Headphones,1,99.99,06/18/19 14:28,"704 Adams St, Portland, OR 97035" -219071,Wired Headphones,1,11.99,06/20/19 15:54,"200 Ridge St, San Francisco, CA 94016" -219072,27in 4K Gaming Monitor,1,389.99,06/30/19 23:50,"506 Jefferson St, San Francisco, CA 94016" -219073,Google Phone,1,600,06/04/19 20:45,"545 1st St, Dallas, TX 75001" -219074,Macbook Pro Laptop,1,1700,06/28/19 23:25,"268 11th St, San Francisco, CA 94016" -219075,Flatscreen TV,1,300,06/09/19 10:46,"436 Sunset St, San Francisco, CA 94016" -219076,Wired Headphones,1,11.99,06/07/19 15:11,"270 River St, Los Angeles, CA 90001" -219077,Apple Airpods Headphones,2,150,06/20/19 10:53,"202 West St, Seattle, WA 98101" -219078,AAA Batteries (4-pack),2,2.99,06/13/19 06:45,"741 South St, San Francisco, CA 94016" -219079,Lightning Charging Cable,1,14.95,06/18/19 07:28,"8 4th St, Dallas, TX 75001" -219080,20in Monitor,1,109.99,06/13/19 10:19,"642 North St, Los Angeles, CA 90001" -219081,AAA Batteries (4-pack),1,2.99,06/10/19 16:01,"272 Hill St, New York City, NY 10001" -219082,20in Monitor,1,109.99,06/27/19 11:26,"509 10th St, Boston, MA 02215" -219083,Wired Headphones,1,11.99,06/22/19 11:44,"980 West St, Austin, TX 73301" -219084,Apple Airpods Headphones,1,150,06/15/19 12:35,"465 Washington St, San Francisco, CA 94016" -219085,AA Batteries (4-pack),1,3.84,06/25/19 12:06,"931 9th St, New York City, NY 10001" -219086,34in Ultrawide Monitor,1,379.99,06/18/19 21:03,"389 West St, Boston, MA 02215" -219087,iPhone,1,700,06/25/19 12:59,"423 12th St, Los Angeles, CA 90001" -219087,Lightning Charging Cable,1,14.95,06/25/19 12:59,"423 12th St, Los Angeles, CA 90001" -219088,27in 4K Gaming Monitor,1,389.99,06/12/19 11:34,"956 Madison St, Los Angeles, CA 90001" -219089,Wired Headphones,1,11.99,06/18/19 13:48,"878 12th St, Los Angeles, CA 90001" -219090,Apple Airpods Headphones,1,150,06/17/19 23:04,"995 Pine St, Los Angeles, CA 90001" -219091,Apple Airpods Headphones,1,150,06/21/19 20:18,"668 Main St, New York City, NY 10001" -219092,AA Batteries (4-pack),1,3.84,06/21/19 15:12,"205 12th St, Los Angeles, CA 90001" -219093,iPhone,1,700,06/29/19 16:29,"32 9th St, New York City, NY 10001" -219093,Apple Airpods Headphones,1,150,06/29/19 16:29,"32 9th St, New York City, NY 10001" -219094,USB-C Charging Cable,1,11.95,06/28/19 19:19,"678 13th St, Los Angeles, CA 90001" -219095,iPhone,1,700,06/01/19 20:22,"720 4th St, Los Angeles, CA 90001" -219096,USB-C Charging Cable,1,11.95,06/13/19 22:46,"646 Lakeview St, Los Angeles, CA 90001" -219097,27in FHD Monitor,1,149.99,06/07/19 20:05,"278 Sunset St, San Francisco, CA 94016" -219098,AAA Batteries (4-pack),2,2.99,06/14/19 17:07,"967 4th St, Seattle, WA 98101" -219099,Google Phone,1,600,06/23/19 21:03,"170 Spruce St, Portland, OR 97035" -219100,AAA Batteries (4-pack),2,2.99,06/20/19 11:30,"442 Lakeview St, New York City, NY 10001" -219101,Apple Airpods Headphones,1,150,06/22/19 21:58,"596 Jefferson St, Atlanta, GA 30301" -219102,iPhone,1,700,06/24/19 07:03,"470 Willow St, Seattle, WA 98101" -219103,AA Batteries (4-pack),2,3.84,06/07/19 20:25,"680 Sunset St, Dallas, TX 75001" -219104,AAA Batteries (4-pack),1,2.99,06/08/19 12:21,"939 Maple St, San Francisco, CA 94016" -219105,Wired Headphones,1,11.99,06/26/19 00:15,"229 River St, New York City, NY 10001" -219106,Flatscreen TV,1,300,06/30/19 20:47,"324 Maple St, Austin, TX 73301" -219107,USB-C Charging Cable,2,11.95,06/01/19 11:16,"85 Sunset St, Los Angeles, CA 90001" -219108,ThinkPad Laptop,1,999.99,06/18/19 19:30,"237 5th St, New York City, NY 10001" -219109,20in Monitor,1,109.99,06/06/19 15:35,"335 Jackson St, Atlanta, GA 30301" -219110,Wired Headphones,1,11.99,06/04/19 07:57,"48 7th St, New York City, NY 10001" -219111,34in Ultrawide Monitor,1,379.99,06/19/19 18:35,"178 Highland St, San Francisco, CA 94016" -219112,USB-C Charging Cable,1,11.95,06/25/19 09:32,"388 Adams St, Portland, OR 97035" -219113,AAA Batteries (4-pack),1,2.99,06/17/19 10:59,"401 11th St, Atlanta, GA 30301" -219114,USB-C Charging Cable,1,11.95,06/03/19 21:44,"565 13th St, San Francisco, CA 94016" -219115,20in Monitor,1,109.99,06/30/19 15:25,"47 Main St, Portland, OR 97035" -219116,Bose SoundSport Headphones,1,99.99,06/07/19 15:56,"61 Spruce St, Los Angeles, CA 90001" -219117,AA Batteries (4-pack),1,3.84,06/23/19 13:23,"628 Cherry St, New York City, NY 10001" -219118,USB-C Charging Cable,1,11.95,06/06/19 18:55,"458 Johnson St, New York City, NY 10001" -219119,20in Monitor,1,109.99,06/07/19 13:39,"10 North St, Los Angeles, CA 90001" -219120,Macbook Pro Laptop,1,1700,06/18/19 18:23,"76 Forest St, Los Angeles, CA 90001" -219121,AAA Batteries (4-pack),1,2.99,06/07/19 21:20,"181 4th St, San Francisco, CA 94016" -219122,USB-C Charging Cable,2,11.95,06/20/19 21:20,"217 Dogwood St, San Francisco, CA 94016" -219123,AA Batteries (4-pack),1,3.84,06/29/19 10:45,"579 Jackson St, San Francisco, CA 94016" -219124,AA Batteries (4-pack),2,3.84,06/17/19 10:28,"417 Lincoln St, New York City, NY 10001" -219125,Bose SoundSport Headphones,1,99.99,06/02/19 09:53,"24 Lakeview St, Portland, OR 97035" -219126,USB-C Charging Cable,1,11.95,06/28/19 05:38,"150 6th St, San Francisco, CA 94016" -219127,Apple Airpods Headphones,1,150,06/08/19 08:13,"573 Lakeview St, Los Angeles, CA 90001" -219128,Wired Headphones,1,11.99,06/22/19 11:29,"271 Madison St, Austin, TX 73301" -219129,Macbook Pro Laptop,1,1700,06/08/19 11:26,"35 Adams St, Atlanta, GA 30301" -219130,Lightning Charging Cable,1,14.95,06/11/19 19:47,"430 Church St, San Francisco, CA 94016" -219131,AAA Batteries (4-pack),1,2.99,06/11/19 16:07,"42 Highland St, Dallas, TX 75001" -219132,AA Batteries (4-pack),3,3.84,06/17/19 18:10,"382 Park St, Dallas, TX 75001" -219133,USB-C Charging Cable,1,11.95,06/05/19 19:15,"334 Hill St, San Francisco, CA 94016" -219134,Wired Headphones,1,11.99,06/27/19 14:46,"535 11th St, Boston, MA 02215" -219135,Lightning Charging Cable,2,14.95,06/05/19 10:08,"468 Main St, New York City, NY 10001" -219136,Apple Airpods Headphones,1,150,06/27/19 12:11,"456 9th St, Atlanta, GA 30301" -219137,Bose SoundSport Headphones,1,99.99,06/12/19 15:25,"428 Chestnut St, San Francisco, CA 94016" -219138,Lightning Charging Cable,1,14.95,06/10/19 19:47,"954 Cedar St, San Francisco, CA 94016" -219139,27in FHD Monitor,1,149.99,06/11/19 18:50,"577 Cedar St, Portland, ME 04101" -219140,27in 4K Gaming Monitor,1,389.99,06/30/19 11:47,"485 Cedar St, Los Angeles, CA 90001" -219141,Apple Airpods Headphones,1,150,06/09/19 22:26,"499 Chestnut St, Dallas, TX 75001" -219142,Apple Airpods Headphones,1,150,06/18/19 03:30,"259 4th St, Portland, OR 97035" -219143,27in 4K Gaming Monitor,1,389.99,06/29/19 15:17,"123 Cedar St, San Francisco, CA 94016" -219144,AAA Batteries (4-pack),1,2.99,06/19/19 09:06,"382 Adams St, Boston, MA 02215" -219145,Apple Airpods Headphones,1,150,06/02/19 18:04,"963 10th St, Los Angeles, CA 90001" -219146,Bose SoundSport Headphones,1,99.99,06/20/19 13:24,"95 Spruce St, Boston, MA 02215" -219147,Bose SoundSport Headphones,1,99.99,06/19/19 16:59,"315 Cherry St, San Francisco, CA 94016" -219148,Wired Headphones,1,11.99,06/06/19 15:13,"364 7th St, Los Angeles, CA 90001" -219149,Bose SoundSport Headphones,1,99.99,06/16/19 20:35,"674 Johnson St, Portland, OR 97035" -219150,USB-C Charging Cable,1,11.95,06/05/19 13:57,"166 Jackson St, Boston, MA 02215" -219151,20in Monitor,1,109.99,06/25/19 11:52,"911 5th St, New York City, NY 10001" -219152,AAA Batteries (4-pack),3,2.99,06/30/19 20:48,"89 Lake St, Atlanta, GA 30301" -219153,Google Phone,1,600,06/02/19 21:29,"323 4th St, Portland, ME 04101" -219153,USB-C Charging Cable,1,11.95,06/02/19 21:29,"323 4th St, Portland, ME 04101" -219153,Bose SoundSport Headphones,1,99.99,06/02/19 21:29,"323 4th St, Portland, ME 04101" -219154,34in Ultrawide Monitor,1,379.99,06/29/19 05:56,"267 Cedar St, Boston, MA 02215" -219155,AAA Batteries (4-pack),2,2.99,06/08/19 13:57,"930 Madison St, Los Angeles, CA 90001" -219156,Wired Headphones,1,11.99,06/28/19 07:49,"885 Pine St, Portland, ME 04101" -219157,Lightning Charging Cable,1,14.95,06/03/19 06:36,"202 Highland St, Boston, MA 02215" -219158,Wired Headphones,1,11.99,06/04/19 17:32,"588 Adams St, San Francisco, CA 94016" -219159,LG Dryer,1,600.0,06/01/19 19:06,"142 Cedar St, Dallas, TX 75001" -219160,Apple Airpods Headphones,1,150,06/28/19 08:52,"657 8th St, Dallas, TX 75001" -219161,Wired Headphones,1,11.99,06/27/19 11:30,"147 Pine St, San Francisco, CA 94016" -219162,Lightning Charging Cable,1,14.95,06/27/19 11:56,"48 Highland St, New York City, NY 10001" -219163,Flatscreen TV,1,300,06/26/19 11:17,"463 Johnson St, Portland, OR 97035" -219164,Flatscreen TV,1,300,06/06/19 01:01,"22 Chestnut St, Seattle, WA 98101" -219165,AA Batteries (4-pack),1,3.84,06/18/19 18:03,"877 Hickory St, Portland, ME 04101" -219166,AAA Batteries (4-pack),1,2.99,06/17/19 22:50,"560 8th St, San Francisco, CA 94016" -219167,34in Ultrawide Monitor,1,379.99,06/10/19 09:02,"445 Park St, San Francisco, CA 94016" -219168,Lightning Charging Cable,2,14.95,06/13/19 20:29,"856 Cherry St, Dallas, TX 75001" -219169,AA Batteries (4-pack),3,3.84,06/01/19 10:51,"233 Willow St, Portland, OR 97035" -219170,Lightning Charging Cable,1,14.95,06/19/19 12:33,"667 Chestnut St, New York City, NY 10001" -219171,AA Batteries (4-pack),1,3.84,06/17/19 22:32,"932 9th St, San Francisco, CA 94016" -219172,34in Ultrawide Monitor,1,379.99,06/26/19 20:33,"46 Maple St, Los Angeles, CA 90001" -219173,Wired Headphones,1,11.99,06/16/19 20:28,"403 Cedar St, San Francisco, CA 94016" -219174,Apple Airpods Headphones,1,150,06/01/19 19:42,"403 Jackson St, Seattle, WA 98101" -219175,27in FHD Monitor,1,149.99,06/02/19 21:27,"990 Cedar St, San Francisco, CA 94016" -219176,34in Ultrawide Monitor,1,379.99,06/20/19 16:09,"863 South St, Portland, OR 97035" -219176,Lightning Charging Cable,1,14.95,06/20/19 16:09,"863 South St, Portland, OR 97035" -219177,AAA Batteries (4-pack),2,2.99,06/13/19 22:25,"867 Washington St, Portland, ME 04101" -219178,27in FHD Monitor,1,149.99,06/28/19 08:01,"471 Park St, San Francisco, CA 94016" -219179,20in Monitor,1,109.99,06/15/19 11:46,"349 Dogwood St, Atlanta, GA 30301" -219180,USB-C Charging Cable,1,11.95,06/06/19 11:36,"422 Jackson St, Portland, OR 97035" -219181,27in 4K Gaming Monitor,1,389.99,06/13/19 17:02,"304 Lincoln St, New York City, NY 10001" -219182,AA Batteries (4-pack),1,3.84,06/06/19 15:12,"316 14th St, New York City, NY 10001" -219183,AA Batteries (4-pack),1,3.84,06/09/19 14:37,"127 Ridge St, San Francisco, CA 94016" -219184,USB-C Charging Cable,1,11.95,06/25/19 15:01,"476 Lake St, Portland, OR 97035" -219185,AAA Batteries (4-pack),1,2.99,06/17/19 16:26,"404 Cedar St, Los Angeles, CA 90001" -219186,AAA Batteries (4-pack),1,2.99,06/22/19 11:17,"650 12th St, San Francisco, CA 94016" -219187,27in 4K Gaming Monitor,1,389.99,06/29/19 10:30,"766 Ridge St, New York City, NY 10001" -219188,Lightning Charging Cable,1,14.95,06/01/19 12:07,"484 Willow St, Portland, OR 97035" -219189,Apple Airpods Headphones,1,150,06/30/19 22:45,"446 Highland St, San Francisco, CA 94016" -219190,Wired Headphones,1,11.99,06/18/19 17:59,"545 Elm St, San Francisco, CA 94016" -219191,USB-C Charging Cable,1,11.95,06/14/19 22:55,"412 Highland St, San Francisco, CA 94016" -219192,AA Batteries (4-pack),2,3.84,06/20/19 13:31,"763 Lake St, Atlanta, GA 30301" -219193,Lightning Charging Cable,1,14.95,06/16/19 18:05,"357 Church St, Los Angeles, CA 90001" -219194,Apple Airpods Headphones,1,150,06/24/19 22:43,"413 Johnson St, San Francisco, CA 94016" -219195,Wired Headphones,1,11.99,06/30/19 14:21,"593 8th St, New York City, NY 10001" -219196,AAA Batteries (4-pack),1,2.99,06/06/19 19:35,"180 Park St, New York City, NY 10001" -219197,27in 4K Gaming Monitor,1,389.99,06/29/19 07:04,"365 Wilson St, Los Angeles, CA 90001" -219198,AAA Batteries (4-pack),1,2.99,06/30/19 17:26,"699 Cherry St, Atlanta, GA 30301" -219199,AAA Batteries (4-pack),2,2.99,06/01/19 18:25,"185 Wilson St, Portland, OR 97035" -219200,USB-C Charging Cable,1,11.95,06/16/19 20:40,"868 Church St, Portland, OR 97035" -219201,Wired Headphones,1,11.99,06/27/19 21:19,"215 South St, Boston, MA 02215" -219202,AAA Batteries (4-pack),1,2.99,06/21/19 20:05,"518 Lincoln St, Portland, OR 97035" -219203,iPhone,1,700,06/05/19 13:35,"554 11th St, San Francisco, CA 94016" -219204,Lightning Charging Cable,1,14.95,06/25/19 22:42,"911 Pine St, San Francisco, CA 94016" -219205,Lightning Charging Cable,1,14.95,06/18/19 17:23,"764 Forest St, Boston, MA 02215" -219206,Bose SoundSport Headphones,1,99.99,06/29/19 17:20,"949 Sunset St, Austin, TX 73301" -219207,Lightning Charging Cable,1,14.95,06/14/19 15:04,"437 Highland St, Portland, ME 04101" -219208,AA Batteries (4-pack),1,3.84,06/25/19 13:25,"932 Cedar St, New York City, NY 10001" -219209,Wired Headphones,3,11.99,06/11/19 16:02,"85 Adams St, New York City, NY 10001" -219210,USB-C Charging Cable,1,11.95,06/11/19 18:46,"952 North St, Atlanta, GA 30301" -219211,Flatscreen TV,1,300,06/08/19 16:10,"9 Washington St, Los Angeles, CA 90001" -219212,iPhone,1,700,06/09/19 11:35,"551 Park St, San Francisco, CA 94016" -219213,USB-C Charging Cable,1,11.95,06/16/19 23:19,"734 10th St, Portland, OR 97035" -219214,iPhone,1,700,06/22/19 18:19,"959 Johnson St, Seattle, WA 98101" -219215,Lightning Charging Cable,1,14.95,06/17/19 17:07,"694 Pine St, Los Angeles, CA 90001" -219216,Bose SoundSport Headphones,1,99.99,06/17/19 18:33,"590 Dogwood St, Los Angeles, CA 90001" -219217,27in FHD Monitor,1,149.99,06/17/19 20:47,"488 Jefferson St, San Francisco, CA 94016" -219218,AAA Batteries (4-pack),1,2.99,06/29/19 13:55,"235 Chestnut St, Los Angeles, CA 90001" -219218,Wired Headphones,1,11.99,06/29/19 13:55,"235 Chestnut St, Los Angeles, CA 90001" -219219,Wired Headphones,1,11.99,06/20/19 20:49,"56 Forest St, San Francisco, CA 94016" -219220,USB-C Charging Cable,1,11.95,06/10/19 22:23,"140 9th St, Austin, TX 73301" -219221,AA Batteries (4-pack),1,3.84,06/21/19 20:52,"460 Main St, Seattle, WA 98101" -219222,27in 4K Gaming Monitor,1,389.99,06/23/19 21:12,"454 Lake St, Los Angeles, CA 90001" -219223,AA Batteries (4-pack),2,3.84,06/09/19 12:44,"61 Cedar St, Boston, MA 02215" -219224,AAA Batteries (4-pack),3,2.99,06/22/19 18:56,"502 West St, San Francisco, CA 94016" -219225,27in 4K Gaming Monitor,1,389.99,06/13/19 18:00,"566 Ridge St, Boston, MA 02215" -219226,27in 4K Gaming Monitor,1,389.99,06/26/19 09:51,"774 Chestnut St, Austin, TX 73301" -219227,AA Batteries (4-pack),1,3.84,06/19/19 16:16,"458 South St, New York City, NY 10001" -219228,Lightning Charging Cable,1,14.95,06/30/19 21:34,"281 Chestnut St, New York City, NY 10001" -219229,Wired Headphones,1,11.99,06/18/19 23:29,"411 1st St, New York City, NY 10001" -219230,AAA Batteries (4-pack),1,2.99,06/26/19 13:35,"213 Willow St, San Francisco, CA 94016" -219231,USB-C Charging Cable,1,11.95,06/12/19 11:23,"240 13th St, Los Angeles, CA 90001" -219232,Flatscreen TV,1,300,06/15/19 15:05,"454 West St, Los Angeles, CA 90001" -219233,34in Ultrawide Monitor,1,379.99,06/29/19 20:03,"457 Madison St, Seattle, WA 98101" -219234,USB-C Charging Cable,1,11.95,06/11/19 16:09,"217 Maple St, Atlanta, GA 30301" -219235,Apple Airpods Headphones,1,150,06/10/19 23:55,"843 Maple St, Seattle, WA 98101" -219236,Wired Headphones,2,11.99,06/26/19 16:29,"399 Forest St, Los Angeles, CA 90001" -219237,27in FHD Monitor,1,149.99,06/09/19 13:31,"866 Elm St, San Francisco, CA 94016" -219238,Lightning Charging Cable,1,14.95,06/04/19 15:08,"213 10th St, San Francisco, CA 94016" -219239,iPhone,1,700,06/27/19 13:44,"31 Willow St, Los Angeles, CA 90001" -219239,Lightning Charging Cable,1,14.95,06/27/19 13:44,"31 Willow St, Los Angeles, CA 90001" -219240,iPhone,1,700,06/29/19 12:45,"374 4th St, New York City, NY 10001" -219241,AAA Batteries (4-pack),2,2.99,06/28/19 20:09,"489 Hill St, San Francisco, CA 94016" -219242,Apple Airpods Headphones,1,150,06/25/19 16:11,"335 Walnut St, Dallas, TX 75001" -219243,AAA Batteries (4-pack),1,2.99,06/23/19 16:43,"241 Lincoln St, Los Angeles, CA 90001" -219244,Wired Headphones,1,11.99,06/05/19 08:18,"121 Center St, Atlanta, GA 30301" -219245,AA Batteries (4-pack),2,3.84,06/08/19 22:51,"888 Highland St, Atlanta, GA 30301" -219246,AA Batteries (4-pack),1,3.84,06/26/19 23:12,"472 Main St, San Francisco, CA 94016" -219247,USB-C Charging Cable,1,11.95,06/27/19 16:35,"979 River St, Portland, ME 04101" -219248,AAA Batteries (4-pack),1,2.99,06/30/19 16:39,"909 Sunset St, San Francisco, CA 94016" -219249,USB-C Charging Cable,1,11.95,06/02/19 19:11,"910 Hill St, San Francisco, CA 94016" -219250,Lightning Charging Cable,1,14.95,06/23/19 13:57,"273 Washington St, Los Angeles, CA 90001" -219250,Wired Headphones,1,11.99,06/23/19 13:57,"273 Washington St, Los Angeles, CA 90001" -219251,USB-C Charging Cable,1,11.95,06/19/19 21:43,"544 Johnson St, Seattle, WA 98101" -219252,AAA Batteries (4-pack),3,2.99,06/26/19 09:28,"24 Main St, Boston, MA 02215" -219253,AAA Batteries (4-pack),1,2.99,06/12/19 13:43,"526 Johnson St, San Francisco, CA 94016" -219254,Macbook Pro Laptop,1,1700,06/05/19 20:44,"114 Wilson St, New York City, NY 10001" -219255,USB-C Charging Cable,1,11.95,06/29/19 03:14,"228 14th St, Los Angeles, CA 90001" -219256,AAA Batteries (4-pack),1,2.99,06/03/19 21:55,"813 Main St, Los Angeles, CA 90001" -219257,Wired Headphones,1,11.99,06/08/19 18:25,"670 14th St, New York City, NY 10001" -219258,20in Monitor,1,109.99,06/26/19 07:34,"316 6th St, Los Angeles, CA 90001" -219259,USB-C Charging Cable,1,11.95,06/25/19 18:52,"660 Forest St, San Francisco, CA 94016" -219260,Apple Airpods Headphones,1,150,06/15/19 23:49,"346 Lincoln St, Los Angeles, CA 90001" -219261,Apple Airpods Headphones,1,150,06/23/19 09:26,"465 8th St, Los Angeles, CA 90001" -219262,AAA Batteries (4-pack),1,2.99,06/02/19 13:06,"828 North St, Seattle, WA 98101" -219263,Google Phone,1,600,06/22/19 08:59,"726 Hickory St, Atlanta, GA 30301" -219263,USB-C Charging Cable,1,11.95,06/22/19 08:59,"726 Hickory St, Atlanta, GA 30301" -219264,ThinkPad Laptop,1,999.99,06/21/19 11:52,"636 2nd St, New York City, NY 10001" -219265,Wired Headphones,1,11.99,06/09/19 12:11,"586 12th St, San Francisco, CA 94016" -219266,USB-C Charging Cable,1,11.95,06/28/19 08:19,"517 4th St, Los Angeles, CA 90001" -219267,Lightning Charging Cable,1,14.95,06/29/19 14:16,"122 Chestnut St, Austin, TX 73301" -219268,Lightning Charging Cable,1,14.95,06/14/19 15:35,"275 Highland St, Dallas, TX 75001" -219269,ThinkPad Laptop,1,999.99,06/26/19 14:15,"25 Wilson St, San Francisco, CA 94016" -219270,USB-C Charging Cable,1,11.95,06/28/19 20:50,"784 14th St, Los Angeles, CA 90001" -219271,ThinkPad Laptop,1,999.99,06/25/19 13:52,"724 Main St, Boston, MA 02215" -219272,Google Phone,1,600,06/01/19 23:41,"501 12th St, Seattle, WA 98101" -219273,LG Dryer,1,600.0,06/22/19 15:05,"320 Lincoln St, Seattle, WA 98101" -219274,27in 4K Gaming Monitor,1,389.99,06/07/19 22:03,"318 Forest St, San Francisco, CA 94016" -219275,Bose SoundSport Headphones,1,99.99,06/02/19 23:41,"854 Hickory St, San Francisco, CA 94016" -219276,Bose SoundSport Headphones,1,99.99,06/27/19 07:50,"222 Sunset St, Boston, MA 02215" -219277,27in FHD Monitor,1,149.99,06/05/19 20:10,"800 Forest St, Los Angeles, CA 90001" -219278,34in Ultrawide Monitor,1,379.99,06/25/19 16:05,"790 Cherry St, San Francisco, CA 94016" -219279,USB-C Charging Cable,1,11.95,06/26/19 11:05,"614 10th St, Los Angeles, CA 90001" -219280,Lightning Charging Cable,1,14.95,06/23/19 17:02,"982 Cherry St, Boston, MA 02215" -219281,27in 4K Gaming Monitor,1,389.99,06/17/19 09:31,"250 Cherry St, Los Angeles, CA 90001" -219282,34in Ultrawide Monitor,1,379.99,06/25/19 15:55,"932 Main St, San Francisco, CA 94016" -219283,Lightning Charging Cable,1,14.95,06/14/19 23:35,"296 5th St, Los Angeles, CA 90001" -219284,34in Ultrawide Monitor,1,379.99,06/13/19 09:28,"385 Hickory St, San Francisco, CA 94016" -219285,AAA Batteries (4-pack),2,2.99,06/19/19 13:19,"414 Park St, New York City, NY 10001" -219286,AA Batteries (4-pack),1,3.84,06/15/19 18:19,"686 Lincoln St, Los Angeles, CA 90001" -219287,34in Ultrawide Monitor,1,379.99,06/06/19 10:04,"463 Church St, San Francisco, CA 94016" -219288,Lightning Charging Cable,1,14.95,06/21/19 08:45,"652 6th St, Dallas, TX 75001" -219289,27in FHD Monitor,1,149.99,06/16/19 17:29,"596 6th St, Seattle, WA 98101" -219290,AA Batteries (4-pack),1,3.84,06/26/19 06:38,"893 North St, Seattle, WA 98101" -219291,Bose SoundSport Headphones,1,99.99,06/09/19 13:03,"561 West St, San Francisco, CA 94016" -219292,Wired Headphones,1,11.99,06/05/19 14:15,"826 Center St, Boston, MA 02215" -219293,AAA Batteries (4-pack),2,2.99,06/05/19 17:31,"906 Meadow St, New York City, NY 10001" -219294,Wired Headphones,1,11.99,06/05/19 10:21,"436 Chestnut St, Austin, TX 73301" -219295,Wired Headphones,1,11.99,06/21/19 11:55,"258 4th St, Portland, OR 97035" -219296,AAA Batteries (4-pack),1,2.99,06/04/19 15:08,"921 8th St, San Francisco, CA 94016" -219297,27in FHD Monitor,1,149.99,06/19/19 03:35,"615 5th St, Los Angeles, CA 90001" -219298,USB-C Charging Cable,1,11.95,06/14/19 08:46,"953 Highland St, Los Angeles, CA 90001" -219299,iPhone,1,700,06/27/19 20:40,"235 Hill St, San Francisco, CA 94016" -219299,Lightning Charging Cable,1,14.95,06/27/19 20:40,"235 Hill St, San Francisco, CA 94016" -219300,Apple Airpods Headphones,1,150,06/22/19 16:26,"315 Main St, Dallas, TX 75001" -219301,Apple Airpods Headphones,1,150,06/06/19 09:18,"457 North St, Portland, OR 97035" -219302,Flatscreen TV,1,300,06/05/19 17:46,"653 Madison St, San Francisco, CA 94016" -219303,27in FHD Monitor,1,149.99,06/16/19 10:07,"721 Jackson St, Austin, TX 73301" -219304,Bose SoundSport Headphones,1,99.99,06/09/19 10:46,"87 Lincoln St, San Francisco, CA 94016" -219305,USB-C Charging Cable,2,11.95,06/13/19 18:29,"17 13th St, New York City, NY 10001" -219306,AAA Batteries (4-pack),2,2.99,06/26/19 08:23,"848 Church St, Los Angeles, CA 90001" -219307,AAA Batteries (4-pack),1,2.99,06/01/19 15:12,"213 Chestnut St, Austin, TX 73301" -219308,Lightning Charging Cable,1,14.95,06/06/19 21:42,"443 Hickory St, Boston, MA 02215" -219309,Lightning Charging Cable,1,14.95,06/21/19 14:46,"506 Cherry St, Boston, MA 02215" -219310,34in Ultrawide Monitor,1,379.99,06/03/19 23:41,"115 Cherry St, Boston, MA 02215" -219311,Lightning Charging Cable,1,14.95,06/26/19 09:36,"693 7th St, Dallas, TX 75001" -219312,Lightning Charging Cable,1,14.95,06/28/19 22:05,"238 7th St, Austin, TX 73301" -219313,Apple Airpods Headphones,1,150,06/27/19 22:23,"336 Lake St, San Francisco, CA 94016" -219314,Flatscreen TV,1,300,06/03/19 10:50,"712 Madison St, Boston, MA 02215" -219315,AA Batteries (4-pack),2,3.84,06/13/19 18:42,"856 Jefferson St, Boston, MA 02215" -219316,Wired Headphones,1,11.99,06/30/19 09:46,"495 South St, Austin, TX 73301" -219317,USB-C Charging Cable,1,11.95,06/27/19 19:29,"765 North St, San Francisco, CA 94016" -219318,Bose SoundSport Headphones,1,99.99,06/21/19 22:15,"975 Lake St, New York City, NY 10001" -219319,AA Batteries (4-pack),2,3.84,06/14/19 16:24,"712 Willow St, Seattle, WA 98101" -219320,Wired Headphones,1,11.99,06/07/19 12:53,"874 Hill St, Portland, OR 97035" -219321,USB-C Charging Cable,1,11.95,06/21/19 06:41,"550 River St, New York City, NY 10001" -219322,iPhone,1,700,06/21/19 12:03,"349 Jefferson St, Portland, OR 97035" -219322,Lightning Charging Cable,1,14.95,06/21/19 12:03,"349 Jefferson St, Portland, OR 97035" -219323,Bose SoundSport Headphones,1,99.99,06/15/19 07:39,"443 South St, San Francisco, CA 94016" -219324,AAA Batteries (4-pack),1,2.99,06/15/19 04:49,"165 Park St, Dallas, TX 75001" -219325,Lightning Charging Cable,1,14.95,06/13/19 12:38,"386 9th St, New York City, NY 10001" -219326,Wired Headphones,1,11.99,06/18/19 19:02,"919 River St, New York City, NY 10001" -219327,AA Batteries (4-pack),2,3.84,06/14/19 12:47,"840 11th St, Seattle, WA 98101" -219328,20in Monitor,1,109.99,06/15/19 11:23,"785 4th St, Los Angeles, CA 90001" -219329,27in FHD Monitor,1,149.99,06/29/19 18:21,"687 10th St, Atlanta, GA 30301" -219330,27in FHD Monitor,1,149.99,06/12/19 13:45,"331 Forest St, Los Angeles, CA 90001" -219331,USB-C Charging Cable,1,11.95,06/22/19 22:17,"105 South St, Los Angeles, CA 90001" -219332,AAA Batteries (4-pack),2,2.99,06/03/19 19:31,"365 Cedar St, Atlanta, GA 30301" -219333,Wired Headphones,1,11.99,06/12/19 21:12,"228 Wilson St, New York City, NY 10001" -219334,Apple Airpods Headphones,1,150,06/21/19 13:01,"57 Park St, Portland, OR 97035" -219335,AA Batteries (4-pack),1,3.84,06/17/19 19:26,"689 Main St, San Francisco, CA 94016" -219336,27in FHD Monitor,1,149.99,06/15/19 22:17,"988 5th St, New York City, NY 10001" -219337,USB-C Charging Cable,1,11.95,06/05/19 11:32,"546 West St, Boston, MA 02215" -219338,Lightning Charging Cable,1,14.95,06/16/19 18:26,"562 Wilson St, Boston, MA 02215" -219339,USB-C Charging Cable,1,11.95,06/25/19 19:20,"803 Jefferson St, Dallas, TX 75001" -219340,Apple Airpods Headphones,1,150,06/19/19 02:37,"639 Washington St, Dallas, TX 75001" -219340,AAA Batteries (4-pack),1,2.99,06/19/19 02:37,"639 Washington St, Dallas, TX 75001" -219341,AA Batteries (4-pack),1,3.84,06/28/19 23:07,"93 8th St, Atlanta, GA 30301" -219342,LG Dryer,1,600.0,06/25/19 17:28,"580 Hill St, Atlanta, GA 30301" -219343,Wired Headphones,1,11.99,06/08/19 19:24,"703 Elm St, Seattle, WA 98101" -219344,Apple Airpods Headphones,1,150,06/06/19 05:32,"563 Lincoln St, Austin, TX 73301" -219345,Flatscreen TV,1,300,06/11/19 09:26,"972 4th St, Atlanta, GA 30301" -219346,Apple Airpods Headphones,1,150,06/29/19 13:50,"246 Jefferson St, Austin, TX 73301" -219347,Wired Headphones,1,11.99,06/02/19 11:10,"293 Willow St, Los Angeles, CA 90001" -219348,Flatscreen TV,1,300,06/26/19 14:24,"119 Maple St, New York City, NY 10001" -219349,Apple Airpods Headphones,1,150,06/07/19 19:10,"491 Pine St, Los Angeles, CA 90001" -219349,Lightning Charging Cable,1,14.95,06/07/19 19:10,"491 Pine St, Los Angeles, CA 90001" -219350,AA Batteries (4-pack),1,3.84,06/02/19 02:45,"711 11th St, Dallas, TX 75001" -219351,AA Batteries (4-pack),2,3.84,06/21/19 23:21,"824 8th St, New York City, NY 10001" -219352,34in Ultrawide Monitor,1,379.99,06/10/19 13:03,"794 9th St, Los Angeles, CA 90001" -219353,Google Phone,1,600,06/25/19 15:06,"65 Meadow St, Austin, TX 73301" -219354,Apple Airpods Headphones,1,150,06/05/19 11:34,"950 Adams St, Los Angeles, CA 90001" -219355,Wired Headphones,1,11.99,06/24/19 14:56,"980 West St, Atlanta, GA 30301" -219356,Apple Airpods Headphones,1,150,06/21/19 01:10,"866 Hickory St, New York City, NY 10001" -219357,AA Batteries (4-pack),1,3.84,06/24/19 15:58,"160 Jackson St, Seattle, WA 98101" -219358,Lightning Charging Cable,1,14.95,06/29/19 18:57,"86 Hickory St, Los Angeles, CA 90001" -219359,ThinkPad Laptop,1,999.99,06/05/19 12:39,"931 Church St, Seattle, WA 98101" -219360,27in 4K Gaming Monitor,1,389.99,06/29/19 03:24,"711 7th St, San Francisco, CA 94016" -219361,AA Batteries (4-pack),1,3.84,06/05/19 16:01,"362 2nd St, Austin, TX 73301" -219362,Vareebadd Phone,1,400,06/16/19 11:04,"812 8th St, Atlanta, GA 30301" -219363,Apple Airpods Headphones,1,150,06/12/19 19:11,"999 Wilson St, San Francisco, CA 94016" -219364,Lightning Charging Cable,1,14.95,06/19/19 19:41,"207 11th St, New York City, NY 10001" -219365,Google Phone,1,600,06/15/19 17:27,"679 14th St, Austin, TX 73301" -219366,ThinkPad Laptop,1,999.99,06/20/19 09:04,"830 Washington St, Austin, TX 73301" -219367,Bose SoundSport Headphones,1,99.99,06/24/19 17:42,"375 7th St, Los Angeles, CA 90001" -219368,Wired Headphones,1,11.99,06/08/19 10:36,"238 South St, Los Angeles, CA 90001" -219369,AAA Batteries (4-pack),1,2.99,06/18/19 11:58,"905 Church St, New York City, NY 10001" -219370,Lightning Charging Cable,1,14.95,06/30/19 21:45,"39 6th St, Los Angeles, CA 90001" -219371,USB-C Charging Cable,1,11.95,06/13/19 12:40,"136 Park St, Los Angeles, CA 90001" -219372,Lightning Charging Cable,1,14.95,06/26/19 15:11,"677 12th St, New York City, NY 10001" -219373,Apple Airpods Headphones,1,150,06/02/19 14:53,"234 Lake St, Portland, ME 04101" -219374,USB-C Charging Cable,1,11.95,06/13/19 09:51,"485 11th St, Boston, MA 02215" -219375,Lightning Charging Cable,1,14.95,06/04/19 09:49,"724 South St, San Francisco, CA 94016" -219376,Google Phone,1,600,06/20/19 17:38,"184 Ridge St, Los Angeles, CA 90001" -219377,AA Batteries (4-pack),1,3.84,06/28/19 12:08,"79 4th St, Portland, OR 97035" -219378,USB-C Charging Cable,1,11.95,06/01/19 23:16,"72 Maple St, New York City, NY 10001" -219379,34in Ultrawide Monitor,1,379.99,06/20/19 04:15,"287 6th St, Boston, MA 02215" -219380,Lightning Charging Cable,1,14.95,06/03/19 12:28,"63 Forest St, Boston, MA 02215" -219381,Lightning Charging Cable,1,14.95,06/09/19 09:28,"25 Lakeview St, San Francisco, CA 94016" -219382,ThinkPad Laptop,1,999.99,06/21/19 23:59,"798 Washington St, Los Angeles, CA 90001" -219383,Apple Airpods Headphones,1,150,06/25/19 20:51,"232 Lakeview St, Los Angeles, CA 90001" -219384,ThinkPad Laptop,1,999.99,06/11/19 07:33,"859 Walnut St, Los Angeles, CA 90001" -219385,27in 4K Gaming Monitor,1,389.99,06/24/19 23:03,"717 Dogwood St, Atlanta, GA 30301" -219386,Wired Headphones,1,11.99,06/14/19 17:39,"135 West St, Austin, TX 73301" -219387,USB-C Charging Cable,1,11.95,06/08/19 18:46,"19 Willow St, San Francisco, CA 94016" -219388,27in FHD Monitor,1,149.99,06/06/19 17:01,"917 River St, Los Angeles, CA 90001" -219389,Wired Headphones,1,11.99,06/22/19 19:17,"503 Jackson St, Dallas, TX 75001" -219390,iPhone,1,700,06/22/19 06:55,"452 11th St, San Francisco, CA 94016" -219390,Lightning Charging Cable,1,14.95,06/22/19 06:55,"452 11th St, San Francisco, CA 94016" -219391,AAA Batteries (4-pack),1,2.99,06/23/19 21:57,"559 13th St, Portland, ME 04101" -219392,Macbook Pro Laptop,1,1700,06/11/19 09:40,"235 5th St, San Francisco, CA 94016" -219393,Apple Airpods Headphones,1,150,06/02/19 12:02,"74 Johnson St, Boston, MA 02215" -219394,AA Batteries (4-pack),2,3.84,06/02/19 15:04,"260 Elm St, Boston, MA 02215" -219395,AA Batteries (4-pack),2,3.84,06/02/19 22:14,"196 Sunset St, San Francisco, CA 94016" -219396,Bose SoundSport Headphones,1,99.99,06/28/19 09:27,"45 1st St, New York City, NY 10001" -219397,27in FHD Monitor,1,149.99,06/29/19 22:31,"621 Madison St, Dallas, TX 75001" -219398,AAA Batteries (4-pack),1,2.99,06/22/19 17:09,"627 Center St, New York City, NY 10001" -219399,AAA Batteries (4-pack),1,2.99,06/06/19 04:10,"969 12th St, Seattle, WA 98101" -219400,Google Phone,1,600,06/21/19 19:53,"967 Madison St, San Francisco, CA 94016" -219401,USB-C Charging Cable,1,11.95,06/02/19 08:38,"974 Hickory St, New York City, NY 10001" -219402,USB-C Charging Cable,1,11.95,06/11/19 13:57,"897 Dogwood St, San Francisco, CA 94016" -219403,USB-C Charging Cable,1,11.95,06/28/19 08:13,"984 South St, Portland, OR 97035" -219404,Apple Airpods Headphones,1,150,06/12/19 23:32,"305 6th St, Austin, TX 73301" -219404,Vareebadd Phone,1,400,06/12/19 23:32,"305 6th St, Austin, TX 73301" -219405,AAA Batteries (4-pack),1,2.99,06/28/19 20:05,"465 10th St, San Francisco, CA 94016" -219406,Bose SoundSport Headphones,1,99.99,06/01/19 11:29,"718 Ridge St, Los Angeles, CA 90001" -219407,Wired Headphones,1,11.99,06/02/19 07:10,"229 6th St, Austin, TX 73301" -219408,USB-C Charging Cable,1,11.95,06/25/19 23:47,"758 Center St, San Francisco, CA 94016" -219409,Apple Airpods Headphones,1,150,06/05/19 16:03,"872 12th St, Atlanta, GA 30301" -219410,Lightning Charging Cable,1,14.95,06/06/19 08:54,"12 1st St, New York City, NY 10001" -219411,iPhone,1,700,06/08/19 22:37,"480 Center St, Seattle, WA 98101" -219412,Macbook Pro Laptop,1,1700,06/02/19 13:54,"587 West St, Austin, TX 73301" -219413,20in Monitor,1,109.99,06/02/19 21:34,"263 Lakeview St, Boston, MA 02215" -219414,Lightning Charging Cable,1,14.95,06/29/19 08:58,"410 Johnson St, Atlanta, GA 30301" -219415,27in 4K Gaming Monitor,1,389.99,06/18/19 21:45,"586 West St, New York City, NY 10001" -219416,Bose SoundSport Headphones,1,99.99,06/23/19 14:56,"181 Park St, Los Angeles, CA 90001" -219417,Lightning Charging Cable,1,14.95,06/11/19 10:40,"727 9th St, Los Angeles, CA 90001" -219418,Apple Airpods Headphones,1,150,06/09/19 16:28,"286 Sunset St, Los Angeles, CA 90001" -219419,Apple Airpods Headphones,1,150,06/01/19 18:54,"343 12th St, Atlanta, GA 30301" -219420,Apple Airpods Headphones,1,150,06/29/19 15:48,"479 Forest St, New York City, NY 10001" -219421,Lightning Charging Cable,1,14.95,06/04/19 13:05,"968 Washington St, Atlanta, GA 30301" -219422,Wired Headphones,1,11.99,06/20/19 11:23,"998 West St, Portland, OR 97035" -219423,AAA Batteries (4-pack),1,2.99,06/21/19 10:13,"773 Wilson St, Los Angeles, CA 90001" -219424,27in FHD Monitor,1,149.99,06/11/19 22:17,"406 Pine St, Austin, TX 73301" -219425,Lightning Charging Cable,1,14.95,06/17/19 09:21,"974 7th St, Los Angeles, CA 90001" -219426,Wired Headphones,1,11.99,06/19/19 17:45,"969 Lincoln St, Los Angeles, CA 90001" -219427,34in Ultrawide Monitor,1,379.99,06/28/19 08:25,"827 Hickory St, New York City, NY 10001" -219428,Apple Airpods Headphones,1,150,06/26/19 17:47,"821 Spruce St, San Francisco, CA 94016" -219429,Lightning Charging Cable,1,14.95,06/03/19 14:41,"637 Ridge St, New York City, NY 10001" -219430,Bose SoundSport Headphones,1,99.99,06/29/19 20:00,"678 Cherry St, New York City, NY 10001" -219431,Lightning Charging Cable,1,14.95,06/05/19 12:44,"173 11th St, San Francisco, CA 94016" -219432,Lightning Charging Cable,1,14.95,06/15/19 11:14,"213 Ridge St, New York City, NY 10001" -219433,Flatscreen TV,1,300,06/14/19 08:30,"57 Washington St, San Francisco, CA 94016" -219434,AA Batteries (4-pack),1,3.84,06/02/19 23:12,"680 Church St, Los Angeles, CA 90001" -219435,Lightning Charging Cable,1,14.95,06/16/19 15:06,"40 Main St, Austin, TX 73301" -219436,AA Batteries (4-pack),1,3.84,06/18/19 14:00,"949 Madison St, Dallas, TX 75001" -219437,LG Dryer,1,600.0,06/02/19 09:31,"62 10th St, Seattle, WA 98101" -219438,Wired Headphones,1,11.99,06/08/19 15:22,"789 13th St, Los Angeles, CA 90001" -219439,Wired Headphones,1,11.99,06/19/19 17:58,"330 Willow St, San Francisco, CA 94016" -219440,USB-C Charging Cable,1,11.95,06/05/19 21:27,"226 Wilson St, Los Angeles, CA 90001" -219441,20in Monitor,1,109.99,06/03/19 23:08,"810 Hill St, Seattle, WA 98101" -219442,27in 4K Gaming Monitor,1,389.99,06/29/19 12:28,"987 11th St, New York City, NY 10001" -219443,AA Batteries (4-pack),1,3.84,06/27/19 11:58,"283 13th St, San Francisco, CA 94016" -219444,Apple Airpods Headphones,1,150,06/08/19 19:35,"645 Cherry St, Austin, TX 73301" -219445,Bose SoundSport Headphones,1,99.99,06/02/19 20:50,"15 Lincoln St, Austin, TX 73301" -219446,Macbook Pro Laptop,1,1700,06/03/19 19:57,"306 Park St, Portland, OR 97035" -219447,USB-C Charging Cable,2,11.95,06/10/19 18:39,"589 Washington St, Seattle, WA 98101" -219448,AA Batteries (4-pack),2,3.84,06/02/19 09:20,"768 Hickory St, San Francisco, CA 94016" -219449,AA Batteries (4-pack),1,3.84,06/26/19 01:13,"621 Willow St, Los Angeles, CA 90001" -219450,27in 4K Gaming Monitor,1,389.99,06/08/19 11:00,"954 5th St, Boston, MA 02215" -219451,Lightning Charging Cable,1,14.95,06/27/19 14:55,"695 Lakeview St, Los Angeles, CA 90001" -219452,Google Phone,1,600,06/05/19 07:16,"568 Church St, San Francisco, CA 94016" -219452,USB-C Charging Cable,1,11.95,06/05/19 07:16,"568 Church St, San Francisco, CA 94016" -219453,iPhone,1,700,06/28/19 13:15,"857 Madison St, Los Angeles, CA 90001" -219454,Wired Headphones,1,11.99,06/21/19 18:10,"462 Highland St, New York City, NY 10001" -219455,iPhone,1,700,06/12/19 21:01,"814 Madison St, Seattle, WA 98101" -219456,Bose SoundSport Headphones,1,99.99,06/23/19 11:02,"261 North St, San Francisco, CA 94016" -219457,iPhone,1,700,06/18/19 08:20,"543 Johnson St, Dallas, TX 75001" -219458,ThinkPad Laptop,1,999.99,06/18/19 20:18,"257 Elm St, San Francisco, CA 94016" -219459,Bose SoundSport Headphones,1,99.99,06/02/19 19:13,"364 4th St, Seattle, WA 98101" -219460,USB-C Charging Cable,1,11.95,06/30/19 17:15,"755 2nd St, Dallas, TX 75001" -219461,USB-C Charging Cable,1,11.95,06/21/19 21:02,"640 South St, Los Angeles, CA 90001" -219462,USB-C Charging Cable,1,11.95,06/16/19 18:32,"921 Dogwood St, Los Angeles, CA 90001" -219463,Apple Airpods Headphones,1,150,06/20/19 10:56,"505 Walnut St, Boston, MA 02215" -219464,Vareebadd Phone,1,400,06/15/19 20:29,"882 South St, Boston, MA 02215" -219465,LG Washing Machine,1,600.0,06/11/19 14:34,"272 Spruce St, New York City, NY 10001" -219466,AA Batteries (4-pack),1,3.84,06/29/19 13:15,"672 Center St, Seattle, WA 98101" -219467,Wired Headphones,1,11.99,06/09/19 14:36,"952 Chestnut St, Dallas, TX 75001" -219468,Lightning Charging Cable,1,14.95,06/29/19 11:22,"752 Dogwood St, Los Angeles, CA 90001" -219469,Wired Headphones,1,11.99,06/28/19 18:33,"116 River St, San Francisco, CA 94016" -219470,Macbook Pro Laptop,1,1700,06/22/19 18:57,"414 Hickory St, Boston, MA 02215" -219471,Google Phone,1,600,06/13/19 17:57,"985 Washington St, Boston, MA 02215" -219472,AA Batteries (4-pack),1,3.84,06/15/19 21:33,"332 2nd St, New York City, NY 10001" -219473,Flatscreen TV,1,300,06/11/19 07:50,"851 Pine St, San Francisco, CA 94016" -219474,Wired Headphones,2,11.99,06/14/19 12:00,"145 South St, San Francisco, CA 94016" -219475,Wired Headphones,1,11.99,06/19/19 12:00,"839 11th St, Atlanta, GA 30301" -219476,AAA Batteries (4-pack),1,2.99,06/11/19 06:52,"146 1st St, Boston, MA 02215" -219477,Macbook Pro Laptop,1,1700,06/13/19 21:25,"205 Hill St, Portland, OR 97035" -219478,Google Phone,1,600,06/23/19 11:01,"951 Willow St, San Francisco, CA 94016" -219479,Lightning Charging Cable,1,14.95,06/29/19 01:07,"177 Washington St, Los Angeles, CA 90001" -219480,iPhone,1,700,06/17/19 12:03,"278 Dogwood St, New York City, NY 10001" -219480,USB-C Charging Cable,2,11.95,06/17/19 12:03,"278 Dogwood St, New York City, NY 10001" -219481,Lightning Charging Cable,1,14.95,06/09/19 21:51,"524 5th St, Dallas, TX 75001" -219482,Bose SoundSport Headphones,1,99.99,06/12/19 16:12,"618 Chestnut St, Dallas, TX 75001" -219483,Apple Airpods Headphones,1,150,06/19/19 10:21,"456 Lakeview St, New York City, NY 10001" -219484,34in Ultrawide Monitor,1,379.99,06/16/19 13:03,"688 Main St, San Francisco, CA 94016" -219485,Apple Airpods Headphones,1,150,06/27/19 11:58,"774 Willow St, New York City, NY 10001" -219486,Apple Airpods Headphones,1,150,06/13/19 14:24,"949 1st St, New York City, NY 10001" -219487,34in Ultrawide Monitor,1,379.99,06/26/19 11:55,"336 West St, New York City, NY 10001" -219488,USB-C Charging Cable,1,11.95,06/26/19 20:28,"52 Hill St, Los Angeles, CA 90001" -219489,ThinkPad Laptop,1,999.99,06/13/19 13:34,"350 Willow St, San Francisco, CA 94016" -219489,Flatscreen TV,1,300,06/13/19 13:34,"350 Willow St, San Francisco, CA 94016" -219490,AAA Batteries (4-pack),4,2.99,06/04/19 12:05,"88 14th St, Boston, MA 02215" -219491,USB-C Charging Cable,1,11.95,06/05/19 08:03,"742 Forest St, Portland, OR 97035" -219492,Bose SoundSport Headphones,1,99.99,06/06/19 08:37,"433 Park St, Seattle, WA 98101" -219493,AAA Batteries (4-pack),3,2.99,06/05/19 12:21,"136 Forest St, New York City, NY 10001" -219494,27in 4K Gaming Monitor,1,389.99,06/11/19 13:13,"569 Spruce St, Portland, OR 97035" -219495,Bose SoundSport Headphones,1,99.99,06/10/19 12:18,"379 4th St, Los Angeles, CA 90001" -219496,AA Batteries (4-pack),1,3.84,06/08/19 15:50,"526 Meadow St, Los Angeles, CA 90001" -219497,Lightning Charging Cable,1,14.95,06/16/19 10:00,"111 Meadow St, Los Angeles, CA 90001" -219498,Lightning Charging Cable,1,14.95,06/24/19 13:02,"700 Hill St, Atlanta, GA 30301" -219499,Lightning Charging Cable,1,14.95,06/19/19 14:37,"738 Main St, Los Angeles, CA 90001" -219500,27in FHD Monitor,1,149.99,06/01/19 14:34,"810 10th St, Dallas, TX 75001" -219501,AAA Batteries (4-pack),2,2.99,06/27/19 22:20,"290 Forest St, Boston, MA 02215" -219502,Lightning Charging Cable,1,14.95,06/07/19 20:44,"905 Wilson St, San Francisco, CA 94016" -219503,Wired Headphones,1,11.99,06/25/19 18:39,"916 Highland St, Boston, MA 02215" -219504,34in Ultrawide Monitor,1,379.99,06/25/19 19:34,"50 Johnson St, Dallas, TX 75001" -219505,USB-C Charging Cable,1,11.95,06/18/19 20:18,"128 Walnut St, San Francisco, CA 94016" -219506,ThinkPad Laptop,1,999.99,06/23/19 07:09,"216 Ridge St, Dallas, TX 75001" -219507,27in FHD Monitor,1,149.99,06/04/19 00:17,"669 14th St, Dallas, TX 75001" -219508,27in 4K Gaming Monitor,1,389.99,06/04/19 17:46,"130 Hill St, Atlanta, GA 30301" -219509,Apple Airpods Headphones,2,150,06/29/19 17:59,"697 13th St, New York City, NY 10001" -219510,Bose SoundSport Headphones,1,99.99,06/24/19 02:45,"891 Washington St, Dallas, TX 75001" -219511,Apple Airpods Headphones,1,150,06/25/19 11:53,"713 Spruce St, Austin, TX 73301" -219512,AA Batteries (4-pack),1,3.84,06/03/19 17:50,"161 Maple St, San Francisco, CA 94016" -219513,Wired Headphones,1,11.99,06/30/19 05:41,"639 8th St, Boston, MA 02215" -219514,Bose SoundSport Headphones,1,99.99,06/25/19 23:38,"945 8th St, Portland, ME 04101" -219515,LG Washing Machine,1,600.0,06/22/19 13:30,"566 5th St, Los Angeles, CA 90001" -219516,AAA Batteries (4-pack),2,2.99,06/15/19 23:13,"784 14th St, San Francisco, CA 94016" -219517,Apple Airpods Headphones,1,150,06/07/19 12:02,"643 8th St, San Francisco, CA 94016" -219518,iPhone,1,700,06/17/19 08:43,"595 Adams St, Austin, TX 73301" -219519,Lightning Charging Cable,1,14.95,06/19/19 17:48,"121 Lake St, Boston, MA 02215" -219520,AAA Batteries (4-pack),1,2.99,06/11/19 18:57,"496 River St, Los Angeles, CA 90001" -219521,Vareebadd Phone,1,400,06/05/19 00:35,"845 Highland St, San Francisco, CA 94016" -219522,AAA Batteries (4-pack),2,2.99,06/14/19 21:06,"259 North St, Austin, TX 73301" -219523,AA Batteries (4-pack),1,3.84,06/27/19 20:11,"796 7th St, New York City, NY 10001" -219524,Apple Airpods Headphones,1,150,06/09/19 11:58,"616 Ridge St, Atlanta, GA 30301" -219525,iPhone,1,700,06/22/19 19:57,"598 10th St, San Francisco, CA 94016" -219526,AAA Batteries (4-pack),1,2.99,06/10/19 20:57,"853 Pine St, San Francisco, CA 94016" -219527,AA Batteries (4-pack),2,3.84,06/28/19 07:54,"425 Main St, Seattle, WA 98101" -219528,Bose SoundSport Headphones,1,99.99,06/27/19 17:37,"92 Church St, Atlanta, GA 30301" -219529,AA Batteries (4-pack),2,3.84,06/05/19 14:23,"859 South St, Boston, MA 02215" -219530,Wired Headphones,1,11.99,06/17/19 11:58,"881 2nd St, San Francisco, CA 94016" -219531,Lightning Charging Cable,1,14.95,06/10/19 20:26,"514 Sunset St, Portland, OR 97035" -219532,AAA Batteries (4-pack),2,2.99,06/02/19 03:49,"410 South St, Atlanta, GA 30301" -219533,Lightning Charging Cable,1,14.95,06/08/19 23:47,"608 Chestnut St, Los Angeles, CA 90001" -219534,ThinkPad Laptop,1,999.99,06/07/19 12:03,"501 2nd St, Los Angeles, CA 90001" -219535,Wired Headphones,1,11.99,06/28/19 11:03,"464 Maple St, New York City, NY 10001" -219536,Flatscreen TV,1,300,06/08/19 21:36,"823 7th St, New York City, NY 10001" -219537,AAA Batteries (4-pack),1,2.99,06/19/19 12:05,"232 West St, San Francisco, CA 94016" -219538,Lightning Charging Cable,1,14.95,06/11/19 18:56,"520 Meadow St, Portland, ME 04101" -219539,27in 4K Gaming Monitor,1,389.99,06/29/19 19:36,"85 Pine St, San Francisco, CA 94016" -219540,Google Phone,1,600,06/11/19 23:53,"848 Madison St, San Francisco, CA 94016" -219541,Bose SoundSport Headphones,1,99.99,06/26/19 11:30,"201 Elm St, Austin, TX 73301" -219541,Google Phone,1,600,06/26/19 11:30,"201 Elm St, Austin, TX 73301" -219542,AA Batteries (4-pack),1,3.84,06/05/19 00:06,"33 Highland St, Los Angeles, CA 90001" -219543,USB-C Charging Cable,1,11.95,06/14/19 11:29,"224 Jefferson St, San Francisco, CA 94016" -219544,LG Washing Machine,1,600.0,06/10/19 07:29,"894 10th St, Atlanta, GA 30301" -219545,AAA Batteries (4-pack),1,2.99,06/02/19 07:01,"544 Madison St, Los Angeles, CA 90001" -219546,AA Batteries (4-pack),2,3.84,06/03/19 13:40,"266 Madison St, Boston, MA 02215" -219547,Apple Airpods Headphones,1,150,06/30/19 23:09,"410 Lake St, Portland, OR 97035" -219548,Bose SoundSport Headphones,1,99.99,06/09/19 13:27,"717 Dogwood St, Atlanta, GA 30301" -219549,Lightning Charging Cable,1,14.95,06/05/19 17:23,"367 Hill St, Dallas, TX 75001" -219550,AA Batteries (4-pack),1,3.84,06/05/19 15:12,"816 12th St, San Francisco, CA 94016" -219551,AA Batteries (4-pack),1,3.84,06/09/19 21:44,"471 12th St, Austin, TX 73301" -219552,AA Batteries (4-pack),1,3.84,06/15/19 08:18,"290 Jackson St, San Francisco, CA 94016" -219553,Wired Headphones,1,11.99,06/24/19 14:43,"127 8th St, Austin, TX 73301" -219554,27in FHD Monitor,1,149.99,06/05/19 23:36,"257 Willow St, Atlanta, GA 30301" -219555,USB-C Charging Cable,1,11.95,06/21/19 16:26,"797 Sunset St, Los Angeles, CA 90001" -219556,USB-C Charging Cable,1,11.95,06/14/19 08:56,"137 Park St, San Francisco, CA 94016" -219557,Lightning Charging Cable,1,14.95,06/19/19 13:36,"811 Main St, San Francisco, CA 94016" -219558,Google Phone,1,600,06/29/19 13:26,"827 7th St, Seattle, WA 98101" -219559,27in 4K Gaming Monitor,1,389.99,06/14/19 02:06,"550 Lakeview St, New York City, NY 10001" -219560,Macbook Pro Laptop,1,1700,06/18/19 20:37,"937 6th St, Los Angeles, CA 90001" -219561,Lightning Charging Cable,1,14.95,06/01/19 11:23,"310 Washington St, Dallas, TX 75001" -219562,27in FHD Monitor,1,149.99,06/13/19 00:27,"859 Sunset St, San Francisco, CA 94016" -219563,Bose SoundSport Headphones,1,99.99,06/05/19 18:04,"872 Lincoln St, Los Angeles, CA 90001" -219564,Bose SoundSport Headphones,1,99.99,06/03/19 17:29,"488 Johnson St, Dallas, TX 75001" -219564,USB-C Charging Cable,1,11.95,06/03/19 17:29,"488 Johnson St, Dallas, TX 75001" -219565,Lightning Charging Cable,3,14.95,06/23/19 14:39,"939 Ridge St, San Francisco, CA 94016" -219566,AA Batteries (4-pack),2,3.84,06/23/19 21:04,"88 Lakeview St, Boston, MA 02215" -219567,AA Batteries (4-pack),1,3.84,06/21/19 16:47,"989 Highland St, New York City, NY 10001" -219567,AAA Batteries (4-pack),1,2.99,06/21/19 16:47,"989 Highland St, New York City, NY 10001" -219568,Macbook Pro Laptop,1,1700,06/01/19 16:03,"955 13th St, Los Angeles, CA 90001" -219569,Bose SoundSport Headphones,1,99.99,06/10/19 22:14,"715 Meadow St, New York City, NY 10001" -219570,Lightning Charging Cable,1,14.95,06/02/19 16:05,"123 11th St, Boston, MA 02215" -219571,Wired Headphones,1,11.99,06/18/19 02:34,"368 Washington St, San Francisco, CA 94016" -219572,Wired Headphones,1,11.99,06/28/19 13:41,"388 6th St, San Francisco, CA 94016" -219573,AAA Batteries (4-pack),1,2.99,06/11/19 09:02,"908 Adams St, San Francisco, CA 94016" -219574,AAA Batteries (4-pack),1,2.99,06/01/19 14:57,"990 South St, New York City, NY 10001" -219575,LG Dryer,1,600.0,06/06/19 23:37,"849 1st St, Portland, OR 97035" -219576,USB-C Charging Cable,1,11.95,06/06/19 11:43,"229 8th St, Seattle, WA 98101" -219577,Apple Airpods Headphones,1,150,06/09/19 14:25,"256 Main St, Austin, TX 73301" -219578,iPhone,1,700,06/15/19 17:32,"568 Adams St, Austin, TX 73301" -219579,34in Ultrawide Monitor,1,379.99,06/21/19 12:59,"507 5th St, Atlanta, GA 30301" -219580,34in Ultrawide Monitor,1,379.99,06/12/19 16:31,"412 Maple St, Los Angeles, CA 90001" -219581,34in Ultrawide Monitor,1,379.99,06/18/19 20:34,"573 Johnson St, New York City, NY 10001" -219582,USB-C Charging Cable,1,11.95,06/22/19 19:23,"584 North St, San Francisco, CA 94016" -219583,Vareebadd Phone,1,400,06/22/19 09:39,"47 Johnson St, Atlanta, GA 30301" -219583,Bose SoundSport Headphones,1,99.99,06/22/19 09:39,"47 Johnson St, Atlanta, GA 30301" -219584,27in FHD Monitor,1,149.99,06/05/19 08:44,"578 Walnut St, Dallas, TX 75001" -219585,AAA Batteries (4-pack),3,2.99,06/21/19 21:41,"678 12th St, Seattle, WA 98101" -219586,Flatscreen TV,1,300,06/12/19 14:25,"941 Pine St, Dallas, TX 75001" -219587,iPhone,1,700,06/10/19 21:10,"258 Adams St, Dallas, TX 75001" -219588,34in Ultrawide Monitor,1,379.99,06/17/19 04:17,"38 8th St, Atlanta, GA 30301" -219589,iPhone,1,700,06/19/19 01:16,"502 Dogwood St, Los Angeles, CA 90001" -219589,Lightning Charging Cable,1,14.95,06/19/19 01:16,"502 Dogwood St, Los Angeles, CA 90001" -219590,AA Batteries (4-pack),1,3.84,06/21/19 10:37,"368 8th St, Portland, OR 97035" -219591,Lightning Charging Cable,1,14.95,06/18/19 13:08,"448 4th St, Portland, ME 04101" -219592,AA Batteries (4-pack),1,3.84,06/28/19 23:34,"498 13th St, Austin, TX 73301" -219593,USB-C Charging Cable,1,11.95,06/12/19 17:59,"288 South St, Portland, ME 04101" -219594,27in FHD Monitor,1,149.99,06/23/19 11:26,"969 5th St, Los Angeles, CA 90001" -219595,USB-C Charging Cable,1,11.95,06/25/19 10:54,"511 14th St, New York City, NY 10001" -219596,iPhone,1,700,06/10/19 14:57,"205 River St, New York City, NY 10001" -219596,Lightning Charging Cable,1,14.95,06/10/19 14:57,"205 River St, New York City, NY 10001" -219596,Apple Airpods Headphones,1,150,06/10/19 14:57,"205 River St, New York City, NY 10001" -219597,USB-C Charging Cable,1,11.95,06/30/19 09:58,"38 South St, San Francisco, CA 94016" -219598,Bose SoundSport Headphones,1,99.99,06/09/19 13:03,"298 Willow St, San Francisco, CA 94016" -219599,iPhone,1,700,06/25/19 23:15,"704 14th St, New York City, NY 10001" -219600,Lightning Charging Cable,2,14.95,06/28/19 02:41,"449 Meadow St, Los Angeles, CA 90001" -219601,AA Batteries (4-pack),1,3.84,06/06/19 14:47,"447 Center St, Los Angeles, CA 90001" -219602,AA Batteries (4-pack),2,3.84,06/01/19 11:28,"23 Ridge St, San Francisco, CA 94016" -219603,Apple Airpods Headphones,1,150,06/06/19 19:01,"511 7th St, San Francisco, CA 94016" -219604,34in Ultrawide Monitor,1,379.99,06/14/19 09:47,"526 Cedar St, Los Angeles, CA 90001" -219605,AAA Batteries (4-pack),2,2.99,06/02/19 19:33,"593 Johnson St, Los Angeles, CA 90001" -219606,Google Phone,1,600,06/11/19 08:51,"528 Lincoln St, Atlanta, GA 30301" -219607,AA Batteries (4-pack),1,3.84,06/01/19 17:22,"815 Meadow St, San Francisco, CA 94016" -219608,ThinkPad Laptop,1,999.99,06/03/19 14:40,"658 Sunset St, San Francisco, CA 94016" -219609,AAA Batteries (4-pack),2,2.99,06/24/19 23:14,"850 Hickory St, San Francisco, CA 94016" -219610,Flatscreen TV,1,300,06/30/19 12:10,"759 4th St, Boston, MA 02215" -219611,USB-C Charging Cable,2,11.95,06/11/19 10:32,"407 10th St, San Francisco, CA 94016" -219612,AAA Batteries (4-pack),1,2.99,06/09/19 15:39,"380 Spruce St, San Francisco, CA 94016" -219613,USB-C Charging Cable,1,11.95,06/09/19 16:15,"219 Willow St, Portland, ME 04101" -219614,AA Batteries (4-pack),1,3.84,06/05/19 21:57,"472 Adams St, Seattle, WA 98101" -219615,Bose SoundSport Headphones,1,99.99,06/02/19 14:41,"121 Cherry St, Boston, MA 02215" -219616,27in FHD Monitor,1,149.99,06/26/19 20:41,"275 Ridge St, Dallas, TX 75001" -219617,Google Phone,1,600,06/21/19 08:11,"954 South St, Atlanta, GA 30301" -219618,USB-C Charging Cable,1,11.95,06/01/19 14:04,"444 8th St, Atlanta, GA 30301" -219619,Flatscreen TV,1,300,06/25/19 12:37,"195 Washington St, Dallas, TX 75001" -219620,Flatscreen TV,1,300,06/22/19 18:06,"224 West St, Austin, TX 73301" -219621,Bose SoundSport Headphones,1,99.99,06/08/19 17:46,"102 River St, Los Angeles, CA 90001" -219622,AAA Batteries (4-pack),2,2.99,06/05/19 10:50,"649 Main St, San Francisco, CA 94016" -219623,Vareebadd Phone,1,400,06/06/19 14:46,"889 Center St, San Francisco, CA 94016" -219624,27in 4K Gaming Monitor,1,389.99,06/06/19 17:48,"757 Sunset St, San Francisco, CA 94016" -219625,USB-C Charging Cable,1,11.95,06/16/19 15:36,"785 8th St, Los Angeles, CA 90001" -219626,Bose SoundSport Headphones,1,99.99,06/02/19 12:18,"498 Park St, San Francisco, CA 94016" -219627,ThinkPad Laptop,1,999.99,06/04/19 09:56,"406 5th St, Los Angeles, CA 90001" -219627,Wired Headphones,1,11.99,06/04/19 09:56,"406 5th St, Los Angeles, CA 90001" -219628,Apple Airpods Headphones,1,150,06/12/19 13:03,"140 Church St, New York City, NY 10001" -219629,AA Batteries (4-pack),1,3.84,06/16/19 18:03,"216 14th St, Seattle, WA 98101" -219630,Lightning Charging Cable,1,14.95,06/06/19 15:36,"787 Cedar St, Austin, TX 73301" -219631,USB-C Charging Cable,2,11.95,06/12/19 17:23,"563 Ridge St, San Francisco, CA 94016" -219631,USB-C Charging Cable,1,11.95,06/12/19 17:23,"563 Ridge St, San Francisco, CA 94016" -219632,AA Batteries (4-pack),1,3.84,06/12/19 19:10,"124 Johnson St, Boston, MA 02215" -219633,Lightning Charging Cable,1,14.95,06/06/19 15:41,"455 14th St, Atlanta, GA 30301" -219634,AAA Batteries (4-pack),5,2.99,06/19/19 12:34,"191 14th St, Los Angeles, CA 90001" -219635,27in 4K Gaming Monitor,1,389.99,06/26/19 14:14,"654 Johnson St, Dallas, TX 75001" -219636,27in FHD Monitor,1,149.99,06/14/19 18:16,"366 Forest St, Dallas, TX 75001" -219637,Apple Airpods Headphones,1,150,06/04/19 15:16,"713 Washington St, New York City, NY 10001" -219638,Apple Airpods Headphones,1,150,06/17/19 13:24,"233 River St, San Francisco, CA 94016" -219639,AA Batteries (4-pack),1,3.84,06/30/19 19:35,"12 6th St, Atlanta, GA 30301" -219640,AAA Batteries (4-pack),1,2.99,06/30/19 12:58,"434 Jefferson St, Austin, TX 73301" -219641,AA Batteries (4-pack),1,3.84,06/19/19 17:34,"404 Pine St, San Francisco, CA 94016" -219642,20in Monitor,1,109.99,06/13/19 10:11,"191 Madison St, New York City, NY 10001" -219643,Lightning Charging Cable,1,14.95,06/28/19 15:34,"621 Maple St, Austin, TX 73301" -219644,Bose SoundSport Headphones,1,99.99,06/11/19 13:46,"976 2nd St, Atlanta, GA 30301" -219645,AA Batteries (4-pack),2,3.84,06/29/19 12:03,"244 Adams St, Dallas, TX 75001" -219646,27in FHD Monitor,1,149.99,06/30/19 10:38,"66 Cherry St, Atlanta, GA 30301" -219647,Lightning Charging Cable,1,14.95,06/14/19 10:41,"144 2nd St, Dallas, TX 75001" -219648,Apple Airpods Headphones,1,150,06/07/19 03:14,"103 South St, Portland, OR 97035" -219649,AA Batteries (4-pack),1,3.84,06/02/19 12:04,"119 Dogwood St, New York City, NY 10001" -219650,USB-C Charging Cable,1,11.95,06/18/19 07:46,"800 Cedar St, San Francisco, CA 94016" -219651,Lightning Charging Cable,1,14.95,06/17/19 15:28,"284 Highland St, Los Angeles, CA 90001" -219652,20in Monitor,1,109.99,06/21/19 17:42,"408 North St, Los Angeles, CA 90001" -219653,Google Phone,1,600,06/30/19 12:47,"793 Center St, Los Angeles, CA 90001" -219654,27in FHD Monitor,1,149.99,06/02/19 16:33,"967 Hill St, Austin, TX 73301" -219655,AA Batteries (4-pack),1,3.84,06/10/19 13:04,"523 6th St, Los Angeles, CA 90001" -219656,AAA Batteries (4-pack),1,2.99,06/03/19 09:18,"414 West St, Dallas, TX 75001" -219657,Apple Airpods Headphones,1,150,06/25/19 19:15,"653 Park St, New York City, NY 10001" -219658,Wired Headphones,1,11.99,06/09/19 19:43,"337 Highland St, New York City, NY 10001" -219659,AA Batteries (4-pack),2,3.84,06/25/19 12:46,"373 Madison St, San Francisco, CA 94016" -219660,Apple Airpods Headphones,1,150,06/08/19 22:04,"146 Maple St, Atlanta, GA 30301" -219661,AAA Batteries (4-pack),1,2.99,06/08/19 03:33,"637 Meadow St, Portland, ME 04101" -219662,USB-C Charging Cable,2,11.95,06/26/19 14:39,"935 North St, Boston, MA 02215" -219663,Apple Airpods Headphones,1,150,06/13/19 20:03,"219 River St, Dallas, TX 75001" -219664,AA Batteries (4-pack),1,3.84,06/26/19 16:25,"759 Jefferson St, Los Angeles, CA 90001" -219665,AA Batteries (4-pack),2,3.84,06/15/19 15:50,"940 6th St, Boston, MA 02215" -219666,AA Batteries (4-pack),1,3.84,06/03/19 16:42,"597 Washington St, Atlanta, GA 30301" -219667,Lightning Charging Cable,1,14.95,06/02/19 17:09,"429 11th St, San Francisco, CA 94016" -219668,Wired Headphones,1,11.99,06/15/19 08:55,"220 Adams St, Austin, TX 73301" -219669,ThinkPad Laptop,1,999.99,06/25/19 07:51,"965 Jackson St, Seattle, WA 98101" -219670,AAA Batteries (4-pack),1,2.99,06/12/19 18:53,"514 8th St, Atlanta, GA 30301" -219671,Bose SoundSport Headphones,1,99.99,06/20/19 22:25,"954 12th St, San Francisco, CA 94016" -219672,Apple Airpods Headphones,1,150,06/30/19 13:19,"427 Willow St, San Francisco, CA 94016" -219673,AAA Batteries (4-pack),1,2.99,06/09/19 03:31,"198 Main St, Seattle, WA 98101" -219674,Flatscreen TV,1,300,06/29/19 21:02,"506 South St, San Francisco, CA 94016" -219675,Lightning Charging Cable,1,14.95,06/04/19 23:03,"38 Washington St, San Francisco, CA 94016" -219676,AA Batteries (4-pack),1,3.84,06/11/19 17:24,"235 Lake St, New York City, NY 10001" -219677,Lightning Charging Cable,1,14.95,06/28/19 22:46,"473 12th St, Dallas, TX 75001" -219678,Flatscreen TV,1,300,06/20/19 19:12,"526 Madison St, Boston, MA 02215" -219679,USB-C Charging Cable,3,11.95,06/01/19 18:22,"610 Lake St, Los Angeles, CA 90001" -219680,Lightning Charging Cable,2,14.95,06/14/19 08:30,"313 Cherry St, San Francisco, CA 94016" -219681,USB-C Charging Cable,1,11.95,06/28/19 06:29,"538 Hill St, Los Angeles, CA 90001" -219682,27in 4K Gaming Monitor,1,389.99,06/26/19 17:51,"336 Johnson St, San Francisco, CA 94016" -219683,USB-C Charging Cable,1,11.95,06/14/19 18:38,"803 Willow St, Los Angeles, CA 90001" -219684,Wired Headphones,1,11.99,06/22/19 11:18,"15 Walnut St, Dallas, TX 75001" -219685,AAA Batteries (4-pack),1,2.99,06/22/19 19:12,"376 North St, Portland, OR 97035" -219686,AAA Batteries (4-pack),1,2.99,06/15/19 11:33,"176 Main St, San Francisco, CA 94016" -219687,Google Phone,1,600,06/05/19 00:01,"139 9th St, Portland, OR 97035" -219688,Apple Airpods Headphones,1,150,06/17/19 00:58,"229 Spruce St, Los Angeles, CA 90001" -219689,Apple Airpods Headphones,1,150,06/17/19 18:31,"492 7th St, New York City, NY 10001" -219690,AA Batteries (4-pack),2,3.84,06/21/19 12:30,"468 Hickory St, San Francisco, CA 94016" -219691,Lightning Charging Cable,1,14.95,06/27/19 14:05,"151 Lakeview St, New York City, NY 10001" -219692,Bose SoundSport Headphones,1,99.99,06/03/19 20:12,"643 River St, New York City, NY 10001" -219693,20in Monitor,1,109.99,06/27/19 15:16,"385 Cherry St, San Francisco, CA 94016" -219694,AA Batteries (4-pack),1,3.84,06/03/19 17:15,"328 Adams St, San Francisco, CA 94016" -219695,AAA Batteries (4-pack),1,2.99,06/27/19 18:38,"956 Church St, New York City, NY 10001" -219696,AA Batteries (4-pack),1,3.84,06/07/19 14:17,"398 North St, Los Angeles, CA 90001" -219697,AA Batteries (4-pack),5,3.84,06/11/19 06:53,"369 South St, New York City, NY 10001" -219698,Apple Airpods Headphones,1,150,06/21/19 01:44,"31 Dogwood St, Seattle, WA 98101" -219699,Bose SoundSport Headphones,1,99.99,06/29/19 18:27,"389 Dogwood St, Atlanta, GA 30301" -219700,Bose SoundSport Headphones,1,99.99,06/08/19 09:45,"543 8th St, San Francisco, CA 94016" -219701,AAA Batteries (4-pack),1,2.99,06/30/19 00:26,"277 Church St, New York City, NY 10001" -219702,AAA Batteries (4-pack),3,2.99,06/11/19 18:02,"476 Willow St, Portland, ME 04101" -219703,AAA Batteries (4-pack),2,2.99,06/09/19 14:13,"4 Church St, Dallas, TX 75001" -219704,iPhone,1,700,06/02/19 19:32,"399 Hill St, San Francisco, CA 94016" -219705,Apple Airpods Headphones,1,150,06/06/19 09:41,"210 Main St, Boston, MA 02215" -219706,Flatscreen TV,1,300,06/20/19 06:59,"618 2nd St, San Francisco, CA 94016" -219707,Apple Airpods Headphones,1,150,06/09/19 02:58,"477 Highland St, Atlanta, GA 30301" -219708,34in Ultrawide Monitor,1,379.99,06/03/19 19:16,"4 Cedar St, Austin, TX 73301" -219709,AA Batteries (4-pack),2,3.84,06/15/19 12:43,"329 5th St, Seattle, WA 98101" -219710,AAA Batteries (4-pack),1,2.99,06/11/19 10:48,"968 1st St, Boston, MA 02215" -219711,Apple Airpods Headphones,1,150,06/28/19 04:59,"341 Highland St, Seattle, WA 98101" -219712,Lightning Charging Cable,1,14.95,06/12/19 17:42,"379 Maple St, Los Angeles, CA 90001" -219713,AAA Batteries (4-pack),1,2.99,06/23/19 16:16,"54 Forest St, New York City, NY 10001" -219714,34in Ultrawide Monitor,1,379.99,06/09/19 20:09,"249 Highland St, Portland, OR 97035" -219715,Wired Headphones,1,11.99,06/16/19 12:44,"65 Park St, Seattle, WA 98101" -219716,27in FHD Monitor,1,149.99,06/23/19 12:26,"104 5th St, San Francisco, CA 94016" -219717,Apple Airpods Headphones,1,150,06/15/19 10:22,"350 North St, San Francisco, CA 94016" -219718,AA Batteries (4-pack),1,3.84,06/17/19 10:55,"511 Maple St, San Francisco, CA 94016" -219719,27in 4K Gaming Monitor,1,389.99,06/19/19 09:46,"841 Washington St, Los Angeles, CA 90001" -219720,Apple Airpods Headphones,1,150,06/28/19 00:13,"572 Lake St, New York City, NY 10001" -219721,Bose SoundSport Headphones,1,99.99,06/25/19 18:27,"100 11th St, Seattle, WA 98101" -219722,Bose SoundSport Headphones,1,99.99,06/22/19 15:48,"865 5th St, Atlanta, GA 30301" -219723,Lightning Charging Cable,1,14.95,06/27/19 19:02,"201 Sunset St, San Francisco, CA 94016" -219724,AAA Batteries (4-pack),1,2.99,06/23/19 06:58,"571 West St, San Francisco, CA 94016" -219725,USB-C Charging Cable,1,11.95,06/25/19 16:57,"30 14th St, Boston, MA 02215" -219726,LG Dryer,1,600.0,06/24/19 20:27,"344 4th St, Los Angeles, CA 90001" -219727,AAA Batteries (4-pack),3,2.99,06/12/19 19:26,"961 Adams St, Atlanta, GA 30301" -219728,Lightning Charging Cable,1,14.95,06/24/19 23:48,"610 Center St, Austin, TX 73301" -219729,USB-C Charging Cable,1,11.95,06/22/19 08:43,"61 West St, Austin, TX 73301" -219730,AAA Batteries (4-pack),1,2.99,06/07/19 09:27,"532 5th St, New York City, NY 10001" -219731,Apple Airpods Headphones,1,150,06/14/19 22:15,"413 Ridge St, Los Angeles, CA 90001" -219732,AAA Batteries (4-pack),2,2.99,06/09/19 12:34,"33 Ridge St, Boston, MA 02215" -219733,Apple Airpods Headphones,1,150,06/26/19 21:11,"507 8th St, Dallas, TX 75001" -219734,Bose SoundSport Headphones,1,99.99,06/28/19 11:55,"846 West St, New York City, NY 10001" -219735,Lightning Charging Cable,1,14.95,06/25/19 09:43,"156 Hickory St, Los Angeles, CA 90001" -219736,Wired Headphones,1,11.99,06/28/19 12:41,"614 Ridge St, San Francisco, CA 94016" -219737,Flatscreen TV,1,300,06/13/19 22:11,"472 4th St, Atlanta, GA 30301" -219738,AA Batteries (4-pack),2,3.84,06/06/19 11:10,"668 Wilson St, San Francisco, CA 94016" -219739,Wired Headphones,1,11.99,06/15/19 22:07,"394 Cedar St, Dallas, TX 75001" -219740,Flatscreen TV,1,300,06/08/19 12:08,"248 Forest St, Portland, ME 04101" -219741,Wired Headphones,1,11.99,06/24/19 15:44,"392 Walnut St, Atlanta, GA 30301" -219742,Lightning Charging Cable,1,14.95,06/13/19 21:56,"755 Maple St, Dallas, TX 75001" -219743,27in 4K Gaming Monitor,1,389.99,06/06/19 14:46,"990 9th St, Dallas, TX 75001" -219744,Bose SoundSport Headphones,1,99.99,06/02/19 12:15,"181 9th St, Atlanta, GA 30301" -219745,USB-C Charging Cable,1,11.95,06/03/19 10:51,"342 7th St, Portland, OR 97035" -219746,USB-C Charging Cable,1,11.95,06/17/19 20:53,"700 10th St, Portland, ME 04101" -219747,27in FHD Monitor,1,149.99,06/21/19 10:32,"20 5th St, Atlanta, GA 30301" -219748,USB-C Charging Cable,1,11.95,06/11/19 00:50,"412 9th St, New York City, NY 10001" -219749,AA Batteries (4-pack),1,3.84,06/29/19 01:23,"983 Dogwood St, Los Angeles, CA 90001" -219750,Bose SoundSport Headphones,1,99.99,06/04/19 22:07,"321 Chestnut St, New York City, NY 10001" -219751,Vareebadd Phone,1,400,06/01/19 15:44,"887 4th St, Austin, TX 73301" -219751,USB-C Charging Cable,1,11.95,06/01/19 15:44,"887 4th St, Austin, TX 73301" -219752,Lightning Charging Cable,1,14.95,06/25/19 22:52,"980 Madison St, San Francisco, CA 94016" -219753,AA Batteries (4-pack),1,3.84,06/01/19 20:11,"913 8th St, Dallas, TX 75001" -219754,Bose SoundSport Headphones,1,99.99,06/23/19 18:15,"287 Church St, New York City, NY 10001" -219755,20in Monitor,1,109.99,06/30/19 00:04,"577 West St, New York City, NY 10001" -219756,Wired Headphones,1,11.99,06/09/19 10:57,"255 Spruce St, San Francisco, CA 94016" -219757,Apple Airpods Headphones,1,150,06/08/19 10:29,"138 Cherry St, Los Angeles, CA 90001" -219758,AA Batteries (4-pack),1,3.84,06/12/19 20:07,"773 Jefferson St, San Francisco, CA 94016" -219759,USB-C Charging Cable,1,11.95,06/05/19 15:22,"651 8th St, Los Angeles, CA 90001" -219760,USB-C Charging Cable,1,11.95,06/21/19 23:26,"515 11th St, Los Angeles, CA 90001" -219761,AAA Batteries (4-pack),3,2.99,06/02/19 09:01,"770 Hill St, Boston, MA 02215" -219762,AA Batteries (4-pack),3,3.84,06/11/19 15:30,"412 Elm St, Austin, TX 73301" -219763,34in Ultrawide Monitor,1,379.99,06/01/19 22:05,"420 Center St, New York City, NY 10001" -219764,20in Monitor,1,109.99,06/14/19 14:54,"919 Meadow St, San Francisco, CA 94016" -219765,Apple Airpods Headphones,1,150,06/10/19 17:22,"122 South St, Portland, OR 97035" -219766,Google Phone,1,600,06/22/19 13:44,"323 10th St, Dallas, TX 75001" -219766,USB-C Charging Cable,1,11.95,06/22/19 13:44,"323 10th St, Dallas, TX 75001" -219767,Apple Airpods Headphones,1,150,06/03/19 07:53,"506 Main St, Dallas, TX 75001" -219768,USB-C Charging Cable,1,11.95,06/06/19 18:50,"47 Cedar St, New York City, NY 10001" -219769,Apple Airpods Headphones,1,150,06/23/19 18:51,"41 Cedar St, New York City, NY 10001" -219770,USB-C Charging Cable,1,11.95,06/03/19 07:22,"727 Park St, Atlanta, GA 30301" -219771,USB-C Charging Cable,1,11.95,06/20/19 14:03,"197 2nd St, San Francisco, CA 94016" -219772,Wired Headphones,1,11.99,06/10/19 19:24,"273 Highland St, San Francisco, CA 94016" -219773,AAA Batteries (4-pack),1,2.99,06/06/19 19:03,"196 1st St, Boston, MA 02215" -219774,34in Ultrawide Monitor,1,379.99,06/16/19 08:33,"332 9th St, San Francisco, CA 94016" -219775,AAA Batteries (4-pack),2,2.99,06/16/19 21:56,"619 Cherry St, Los Angeles, CA 90001" -219776,Bose SoundSport Headphones,1,99.99,06/19/19 11:31,"623 7th St, Seattle, WA 98101" -219777,USB-C Charging Cable,1,11.95,06/05/19 17:18,"368 5th St, San Francisco, CA 94016" -219778,Bose SoundSport Headphones,1,99.99,06/05/19 14:44,"267 Spruce St, Los Angeles, CA 90001" -219779,Lightning Charging Cable,1,14.95,06/24/19 12:48,"591 12th St, Dallas, TX 75001" -219780,34in Ultrawide Monitor,1,379.99,06/06/19 17:53,"645 Meadow St, Boston, MA 02215" -219781,27in FHD Monitor,1,149.99,06/11/19 09:42,"337 Walnut St, Los Angeles, CA 90001" -219782,iPhone,1,700,06/08/19 16:00,"376 Johnson St, Seattle, WA 98101" -219782,Lightning Charging Cable,1,14.95,06/08/19 16:00,"376 Johnson St, Seattle, WA 98101" -219783,27in FHD Monitor,1,149.99,06/28/19 00:45,"209 South St, Austin, TX 73301" -219784,Bose SoundSport Headphones,1,99.99,06/30/19 13:53,"670 Lakeview St, Austin, TX 73301" -219785,Apple Airpods Headphones,1,150,06/01/19 19:47,"189 4th St, Atlanta, GA 30301" -219786,Bose SoundSport Headphones,1,99.99,06/23/19 08:10,"98 5th St, New York City, NY 10001" -219787,27in FHD Monitor,1,149.99,06/17/19 08:24,"536 Ridge St, San Francisco, CA 94016" -219788,Apple Airpods Headphones,1,150,06/10/19 16:40,"772 14th St, Austin, TX 73301" -219789,Wired Headphones,1,11.99,06/09/19 10:36,"532 11th St, Boston, MA 02215" -219790,Flatscreen TV,1,300,06/13/19 10:05,"901 8th St, Atlanta, GA 30301" -219791,Bose SoundSport Headphones,1,99.99,06/08/19 11:31,"335 River St, Portland, OR 97035" -219792,27in 4K Gaming Monitor,1,389.99,06/24/19 15:27,"189 Lake St, San Francisco, CA 94016" -219793,Lightning Charging Cable,1,14.95,06/08/19 01:03,"166 Highland St, Dallas, TX 75001" -219794,Google Phone,1,600,06/29/19 19:31,"866 Walnut St, Atlanta, GA 30301" -219795,USB-C Charging Cable,1,11.95,06/23/19 09:16,"633 Cherry St, Los Angeles, CA 90001" -219796,Bose SoundSport Headphones,1,99.99,06/26/19 16:28,"233 Cedar St, San Francisco, CA 94016" -219797,USB-C Charging Cable,1,11.95,06/18/19 21:26,"119 West St, Portland, OR 97035" -219798,Apple Airpods Headphones,1,150,06/08/19 17:12,"76 Spruce St, Los Angeles, CA 90001" -219799,AAA Batteries (4-pack),1,2.99,06/23/19 22:47,"606 Park St, Dallas, TX 75001" -219800,AA Batteries (4-pack),1,3.84,06/22/19 21:50,"210 Willow St, Los Angeles, CA 90001" -219801,AAA Batteries (4-pack),1,2.99,06/20/19 20:48,"253 Hickory St, New York City, NY 10001" -219802,USB-C Charging Cable,1,11.95,06/20/19 22:50,"793 Hill St, San Francisco, CA 94016" -219803,Wired Headphones,1,11.99,06/08/19 07:04,"954 2nd St, Los Angeles, CA 90001" -219804,USB-C Charging Cable,1,11.95,06/04/19 09:45,"680 Pine St, San Francisco, CA 94016" -219805,USB-C Charging Cable,1,11.95,06/16/19 18:39,"143 River St, San Francisco, CA 94016" -219806,USB-C Charging Cable,1,11.95,06/30/19 08:34,"521 West St, Los Angeles, CA 90001" -219807,Lightning Charging Cable,1,14.95,06/30/19 21:00,"382 10th St, New York City, NY 10001" -219808,Lightning Charging Cable,1,14.95,06/10/19 20:01,"859 West St, San Francisco, CA 94016" -219809,AA Batteries (4-pack),1,3.84,06/16/19 19:42,"814 Jackson St, Austin, TX 73301" -219810,Apple Airpods Headphones,1,150,06/05/19 23:15,"553 7th St, Los Angeles, CA 90001" -219811,Wired Headphones,1,11.99,06/20/19 21:36,"939 Meadow St, Austin, TX 73301" -219812,Lightning Charging Cable,2,14.95,06/25/19 01:30,"250 13th St, Austin, TX 73301" -219813,Apple Airpods Headphones,1,150,06/15/19 21:48,"34 Main St, San Francisco, CA 94016" -219814,34in Ultrawide Monitor,1,379.99,06/06/19 20:55,"172 7th St, San Francisco, CA 94016" -219815,Apple Airpods Headphones,1,150,06/17/19 09:01,"819 Walnut St, New York City, NY 10001" -219816,27in FHD Monitor,1,149.99,06/09/19 07:58,"847 Dogwood St, Atlanta, GA 30301" -219817,Lightning Charging Cable,2,14.95,07/01/19 00:31,"292 Cherry St, Los Angeles, CA 90001" -219818,Google Phone,1,600,06/08/19 17:37,"619 Jefferson St, Seattle, WA 98101" -219818,USB-C Charging Cable,1,11.95,06/08/19 17:37,"619 Jefferson St, Seattle, WA 98101" -219819,USB-C Charging Cable,1,11.95,06/03/19 21:03,"71 Church St, Dallas, TX 75001" -219820,AAA Batteries (4-pack),1,2.99,06/18/19 17:59,"748 Willow St, Seattle, WA 98101" -219821,USB-C Charging Cable,2,11.95,06/13/19 17:07,"599 Elm St, San Francisco, CA 94016" -219822,27in FHD Monitor,1,149.99,06/22/19 19:11,"279 Wilson St, San Francisco, CA 94016" -219823,20in Monitor,1,109.99,06/20/19 05:31,"29 Chestnut St, New York City, NY 10001" -219824,Macbook Pro Laptop,1,1700,06/05/19 22:04,"280 Highland St, Los Angeles, CA 90001" -219825,Wired Headphones,1,11.99,06/11/19 08:25,"757 2nd St, Los Angeles, CA 90001" -219826,34in Ultrawide Monitor,1,379.99,06/21/19 20:40,"386 Spruce St, Atlanta, GA 30301" -219827,Wired Headphones,1,11.99,06/29/19 14:17,"148 Elm St, Boston, MA 02215" -219828,Macbook Pro Laptop,1,1700,06/14/19 01:15,"58 Dogwood St, Los Angeles, CA 90001" -219829,Flatscreen TV,1,300,06/09/19 17:04,"612 Main St, Dallas, TX 75001" -219830,Bose SoundSport Headphones,1,99.99,06/09/19 14:52,"360 Jackson St, San Francisco, CA 94016" -219831,iPhone,1,700,06/07/19 14:54,"425 North St, Dallas, TX 75001" -219832,AAA Batteries (4-pack),2,2.99,06/14/19 08:00,"244 Forest St, Los Angeles, CA 90001" -219833,Wired Headphones,1,11.99,06/06/19 12:06,"945 Meadow St, San Francisco, CA 94016" -219834,Wired Headphones,1,11.99,06/15/19 19:29,"41 Spruce St, Los Angeles, CA 90001" -219835,Lightning Charging Cable,1,14.95,06/29/19 15:34,"860 River St, Los Angeles, CA 90001" -219836,USB-C Charging Cable,1,11.95,06/07/19 18:12,"383 11th St, New York City, NY 10001" -219837,Flatscreen TV,1,300,06/16/19 06:59,"724 Hickory St, New York City, NY 10001" -219838,AA Batteries (4-pack),1,3.84,06/21/19 12:57,"627 Spruce St, New York City, NY 10001" -219839,27in 4K Gaming Monitor,1,389.99,06/04/19 19:22,"365 Meadow St, Boston, MA 02215" -219840,iPhone,1,700,06/15/19 11:07,"69 Chestnut St, Dallas, TX 75001" -219841,27in 4K Gaming Monitor,1,389.99,06/11/19 10:07,"440 4th St, Seattle, WA 98101" -219842,USB-C Charging Cable,1,11.95,06/08/19 18:40,"770 Maple St, New York City, NY 10001" -219843,Lightning Charging Cable,2,14.95,06/29/19 11:15,"378 Sunset St, Atlanta, GA 30301" -219844,Bose SoundSport Headphones,1,99.99,06/23/19 08:20,"153 Hill St, San Francisco, CA 94016" -219845,Apple Airpods Headphones,1,150,06/25/19 17:43,"615 8th St, New York City, NY 10001" -219846,AA Batteries (4-pack),2,3.84,06/20/19 11:07,"139 Pine St, San Francisco, CA 94016" -219847,Macbook Pro Laptop,1,1700,06/11/19 19:09,"193 1st St, Portland, OR 97035" -219848,34in Ultrawide Monitor,1,379.99,06/21/19 08:31,"911 Maple St, Seattle, WA 98101" -219849,Google Phone,1,600,06/16/19 20:39,"388 Main St, Los Angeles, CA 90001" -219850,AA Batteries (4-pack),1,3.84,06/30/19 11:58,"616 8th St, Seattle, WA 98101" -219851,Bose SoundSport Headphones,1,99.99,06/23/19 17:46,"815 River St, Austin, TX 73301" -219852,27in 4K Gaming Monitor,1,389.99,06/04/19 17:49,"157 14th St, Austin, TX 73301" -219853,ThinkPad Laptop,1,999.99,06/14/19 20:16,"531 Cherry St, Portland, OR 97035" -219854,AA Batteries (4-pack),2,3.84,06/24/19 18:24,"596 14th St, Austin, TX 73301" -219855,AA Batteries (4-pack),2,3.84,06/26/19 21:53,"800 Washington St, Los Angeles, CA 90001" -219856,Lightning Charging Cable,1,14.95,06/23/19 11:23,"954 Dogwood St, Boston, MA 02215" -219857,Wired Headphones,1,11.99,06/19/19 16:36,"106 4th St, Los Angeles, CA 90001" -219858,AAA Batteries (4-pack),1,2.99,06/10/19 22:21,"164 1st St, Los Angeles, CA 90001" -219859,iPhone,1,700,06/14/19 19:09,"794 Chestnut St, Portland, OR 97035" -219860,Lightning Charging Cable,1,14.95,06/19/19 20:02,"497 1st St, Seattle, WA 98101" -219861,Bose SoundSport Headphones,1,99.99,06/14/19 11:09,"845 Willow St, Portland, OR 97035" -219862,AAA Batteries (4-pack),1,2.99,06/22/19 12:06,"699 10th St, San Francisco, CA 94016" -219863,Bose SoundSport Headphones,1,99.99,06/30/19 19:49,"969 River St, New York City, NY 10001" -219864,AA Batteries (4-pack),1,3.84,06/24/19 22:01,"483 12th St, Los Angeles, CA 90001" -219865,AAA Batteries (4-pack),1,2.99,06/24/19 19:36,"950 North St, New York City, NY 10001" -219866,iPhone,1,700,06/30/19 14:03,"804 Church St, San Francisco, CA 94016" -219867,Apple Airpods Headphones,1,150,06/05/19 13:51,"640 Lake St, Dallas, TX 75001" -219868,Wired Headphones,1,11.99,06/25/19 09:29,"824 North St, San Francisco, CA 94016" -219869,34in Ultrawide Monitor,1,379.99,06/13/19 11:50,"978 Wilson St, San Francisco, CA 94016" -219870,USB-C Charging Cable,1,11.95,06/27/19 11:17,"797 7th St, Seattle, WA 98101" -219871,AAA Batteries (4-pack),2,2.99,06/11/19 05:44,"980 Jefferson St, New York City, NY 10001" -219872,Wired Headphones,1,11.99,06/27/19 13:49,"846 9th St, Seattle, WA 98101" -219873,AAA Batteries (4-pack),1,2.99,06/18/19 09:42,"838 12th St, Los Angeles, CA 90001" -219874,USB-C Charging Cable,1,11.95,06/13/19 06:40,"925 Chestnut St, Atlanta, GA 30301" -219875,Wired Headphones,1,11.99,06/13/19 12:07,"692 9th St, Boston, MA 02215" -219876,Apple Airpods Headphones,1,150,06/12/19 00:45,"693 Spruce St, Dallas, TX 75001" -219877,Lightning Charging Cable,1,14.95,06/19/19 12:38,"637 Park St, Dallas, TX 75001" -219878,ThinkPad Laptop,1,999.99,06/10/19 19:05,"692 Lake St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -219879,Lightning Charging Cable,1,14.95,06/10/19 13:26,"12 13th St, Boston, MA 02215" -219880,AA Batteries (4-pack),1,3.84,06/21/19 17:41,"928 12th St, San Francisco, CA 94016" -219881,Lightning Charging Cable,1,14.95,06/27/19 21:32,"45 Meadow St, San Francisco, CA 94016" -219882,AAA Batteries (4-pack),1,2.99,06/14/19 20:28,"656 9th St, Boston, MA 02215" -219883,AAA Batteries (4-pack),1,2.99,06/17/19 19:32,"305 Park St, Boston, MA 02215" -219884,Wired Headphones,2,11.99,06/03/19 11:40,"594 Hill St, Boston, MA 02215" -219885,20in Monitor,1,109.99,06/28/19 14:33,"381 Hickory St, Dallas, TX 75001" -219886,USB-C Charging Cable,1,11.95,06/26/19 14:04,"812 Hill St, Los Angeles, CA 90001" -219887,Lightning Charging Cable,1,14.95,06/18/19 20:20,"486 1st St, New York City, NY 10001" -219888,Lightning Charging Cable,1,14.95,06/29/19 23:31,"704 6th St, Austin, TX 73301" -219889,34in Ultrawide Monitor,1,379.99,06/27/19 09:08,"57 Maple St, New York City, NY 10001" -219890,Lightning Charging Cable,1,14.95,06/21/19 10:41,"829 Chestnut St, San Francisco, CA 94016" -219891,Google Phone,1,600,06/07/19 14:54,"445 River St, Dallas, TX 75001" -219892,Lightning Charging Cable,1,14.95,06/06/19 14:50,"353 Wilson St, New York City, NY 10001" -219893,USB-C Charging Cable,1,11.95,06/16/19 22:42,"338 Adams St, Austin, TX 73301" -219894,AAA Batteries (4-pack),2,2.99,06/22/19 15:50,"490 Maple St, New York City, NY 10001" -219895,27in 4K Gaming Monitor,1,389.99,06/04/19 20:32,"848 7th St, Seattle, WA 98101" -219896,Lightning Charging Cable,1,14.95,06/18/19 13:26,"636 13th St, Austin, TX 73301" -219897,Wired Headphones,1,11.99,06/29/19 15:45,"496 Sunset St, Seattle, WA 98101" -219898,Wired Headphones,1,11.99,06/15/19 08:34,"50 6th St, Boston, MA 02215" -219899,USB-C Charging Cable,1,11.95,06/14/19 11:06,"672 12th St, Atlanta, GA 30301" -219900,Apple Airpods Headphones,1,150,06/06/19 11:35,"659 7th St, Los Angeles, CA 90001" -219901,Apple Airpods Headphones,1,150,06/08/19 20:13,"899 West St, Los Angeles, CA 90001" -219902,USB-C Charging Cable,1,11.95,06/17/19 14:37,"181 Lakeview St, Boston, MA 02215" -219903,AA Batteries (4-pack),3,3.84,06/09/19 12:14,"954 Maple St, Portland, ME 04101" -219904,iPhone,1,700,06/28/19 16:28,"79 12th St, Atlanta, GA 30301" -219904,Lightning Charging Cable,1,14.95,06/28/19 16:28,"79 12th St, Atlanta, GA 30301" -219905,AA Batteries (4-pack),1,3.84,06/09/19 11:13,"843 Wilson St, San Francisco, CA 94016" -219906,Lightning Charging Cable,1,14.95,06/06/19 10:25,"338 Lincoln St, Boston, MA 02215" -219907,ThinkPad Laptop,1,999.99,06/24/19 17:55,"240 Park St, Boston, MA 02215" -219908,AAA Batteries (4-pack),2,2.99,06/05/19 09:16,"93 Ridge St, San Francisco, CA 94016" -219909,27in FHD Monitor,1,149.99,06/04/19 12:31,"926 14th St, New York City, NY 10001" -219910,USB-C Charging Cable,1,11.95,06/01/19 16:59,"296 Church St, Atlanta, GA 30301" -219911,Apple Airpods Headphones,1,150,06/01/19 23:50,"208 Center St, San Francisco, CA 94016" -219912,AA Batteries (4-pack),1,3.84,06/21/19 16:49,"981 Hill St, Austin, TX 73301" -219913,AAA Batteries (4-pack),1,2.99,06/01/19 20:17,"255 South St, San Francisco, CA 94016" -219914,Flatscreen TV,1,300,06/15/19 23:42,"471 North St, Dallas, TX 75001" -219915,Bose SoundSport Headphones,1,99.99,06/22/19 20:54,"213 10th St, Los Angeles, CA 90001" -219916,Apple Airpods Headphones,1,150,06/14/19 09:58,"416 Center St, Austin, TX 73301" -219917,USB-C Charging Cable,1,11.95,06/01/19 08:59,"905 Highland St, Portland, ME 04101" -219918,AA Batteries (4-pack),5,3.84,06/27/19 17:56,"203 River St, New York City, NY 10001" -219919,Flatscreen TV,1,300,06/23/19 20:30,"83 River St, Boston, MA 02215" -219920,34in Ultrawide Monitor,1,379.99,06/06/19 09:17,"214 Maple St, New York City, NY 10001" -219921,Wired Headphones,1,11.99,06/21/19 22:08,"384 Hill St, Atlanta, GA 30301" -219922,USB-C Charging Cable,1,11.95,06/26/19 18:49,"167 Spruce St, Seattle, WA 98101" -219923,Lightning Charging Cable,1,14.95,06/06/19 08:40,"360 Spruce St, San Francisco, CA 94016" -219924,USB-C Charging Cable,1,11.95,06/14/19 12:40,"190 Main St, Dallas, TX 75001" -219925,USB-C Charging Cable,1,11.95,06/05/19 12:37,"857 Cedar St, Atlanta, GA 30301" -219926,27in 4K Gaming Monitor,1,389.99,06/03/19 22:37,"848 Center St, Los Angeles, CA 90001" -219927,Bose SoundSport Headphones,1,99.99,06/14/19 19:09,"563 Washington St, Dallas, TX 75001" -219928,20in Monitor,1,109.99,06/23/19 12:35,"843 Forest St, Boston, MA 02215" -219929,Bose SoundSport Headphones,1,99.99,06/13/19 12:39,"671 9th St, Los Angeles, CA 90001" -219930,Apple Airpods Headphones,1,150,06/29/19 19:08,"859 11th St, Los Angeles, CA 90001" -219931,Google Phone,1,600,06/04/19 10:46,"471 Madison St, Seattle, WA 98101" -219932,USB-C Charging Cable,1,11.95,06/24/19 18:42,"848 1st St, Boston, MA 02215" -219933,iPhone,1,700,06/07/19 14:10,"347 Lakeview St, San Francisco, CA 94016" -219934,Bose SoundSport Headphones,1,99.99,06/18/19 17:42,"313 6th St, San Francisco, CA 94016" -219935,Lightning Charging Cable,1,14.95,06/17/19 15:16,"159 Willow St, Los Angeles, CA 90001" -219936,Apple Airpods Headphones,1,150,06/16/19 02:02,"716 River St, Austin, TX 73301" -219937,Apple Airpods Headphones,1,150,06/08/19 16:05,"810 6th St, Boston, MA 02215" -219938,Vareebadd Phone,1,400,06/11/19 09:22,"297 Washington St, Boston, MA 02215" -219939,27in FHD Monitor,1,149.99,06/11/19 10:52,"715 South St, New York City, NY 10001" -219940,AAA Batteries (4-pack),3,2.99,06/03/19 10:22,"999 Willow St, Boston, MA 02215" -219941,AA Batteries (4-pack),2,3.84,06/10/19 12:28,"997 Park St, San Francisco, CA 94016" -219942,USB-C Charging Cable,1,11.95,06/02/19 21:46,"83 Walnut St, Los Angeles, CA 90001" -219943,AA Batteries (4-pack),1,3.84,06/02/19 12:19,"152 Spruce St, San Francisco, CA 94016" -219944,USB-C Charging Cable,1,11.95,06/13/19 18:32,"567 North St, Seattle, WA 98101" -219945,AAA Batteries (4-pack),1,2.99,06/04/19 14:18,"151 Ridge St, San Francisco, CA 94016" -219946,Bose SoundSport Headphones,1,99.99,06/24/19 14:44,"545 6th St, New York City, NY 10001" -219947,Apple Airpods Headphones,1,150,06/19/19 22:50,"485 2nd St, New York City, NY 10001" -219948,USB-C Charging Cable,1,11.95,06/21/19 17:50,"211 Cedar St, San Francisco, CA 94016" -219949,Google Phone,1,600,06/19/19 22:54,"524 Washington St, Austin, TX 73301" -219950,Flatscreen TV,1,300,06/11/19 12:45,"357 Elm St, Austin, TX 73301" -219950,AAA Batteries (4-pack),3,2.99,06/11/19 12:45,"357 Elm St, Austin, TX 73301" -219951,AA Batteries (4-pack),2,3.84,06/25/19 20:01,"688 West St, Seattle, WA 98101" -219952,27in 4K Gaming Monitor,1,389.99,06/28/19 15:40,"580 5th St, San Francisco, CA 94016" -219953,Lightning Charging Cable,2,14.95,06/15/19 20:34,"948 Washington St, Atlanta, GA 30301" -219954,ThinkPad Laptop,1,999.99,06/17/19 20:08,"805 Spruce St, Boston, MA 02215" -219955,Bose SoundSport Headphones,1,99.99,06/04/19 11:47,"695 Ridge St, Atlanta, GA 30301" -219956,AA Batteries (4-pack),1,3.84,06/07/19 19:02,"886 Hickory St, San Francisco, CA 94016" -219956,Lightning Charging Cable,1,14.95,06/07/19 19:02,"886 Hickory St, San Francisco, CA 94016" -219957,Wired Headphones,1,11.99,06/10/19 10:11,"65 Lakeview St, Seattle, WA 98101" -219958,AA Batteries (4-pack),1,3.84,06/02/19 21:52,"307 Ridge St, New York City, NY 10001" -219959,AAA Batteries (4-pack),3,2.99,06/30/19 16:00,"945 Lake St, Portland, OR 97035" -219960,Lightning Charging Cable,1,14.95,06/18/19 14:32,"688 Lincoln St, Atlanta, GA 30301" -219961,USB-C Charging Cable,1,11.95,06/01/19 21:01,"845 10th St, Portland, ME 04101" -219962,AAA Batteries (4-pack),1,2.99,06/27/19 21:07,"8 Jefferson St, Los Angeles, CA 90001" -219963,USB-C Charging Cable,1,11.95,06/04/19 11:03,"905 South St, Boston, MA 02215" -219964,Lightning Charging Cable,1,14.95,06/19/19 00:26,"352 2nd St, San Francisco, CA 94016" -219965,iPhone,1,700,06/08/19 17:42,"170 2nd St, San Francisco, CA 94016" -219966,34in Ultrawide Monitor,1,379.99,06/12/19 10:36,"571 Walnut St, Austin, TX 73301" -219967,Bose SoundSport Headphones,1,99.99,06/15/19 09:00,"712 Highland St, Atlanta, GA 30301" -219968,27in 4K Gaming Monitor,1,389.99,06/01/19 16:34,"255 Sunset St, Portland, OR 97035" -219969,USB-C Charging Cable,1,11.95,06/10/19 11:12,"971 5th St, New York City, NY 10001" -219970,Lightning Charging Cable,1,14.95,06/08/19 12:05,"975 Highland St, New York City, NY 10001" -219971,Bose SoundSport Headphones,1,99.99,06/17/19 12:14,"919 Elm St, Boston, MA 02215" -219972,AA Batteries (4-pack),1,3.84,06/12/19 23:45,"869 River St, Los Angeles, CA 90001" -219973,Google Phone,1,600,06/01/19 19:49,"579 Jefferson St, Los Angeles, CA 90001" -219974,Apple Airpods Headphones,1,150,06/18/19 20:35,"498 Lakeview St, New York City, NY 10001" -219975,Lightning Charging Cable,1,14.95,06/20/19 01:53,"540 5th St, San Francisco, CA 94016" -219976,Vareebadd Phone,1,400,06/23/19 13:19,"439 Madison St, Seattle, WA 98101" -219977,Lightning Charging Cable,1,14.95,06/21/19 09:24,"797 8th St, San Francisco, CA 94016" -219978,Lightning Charging Cable,1,14.95,06/06/19 14:39,"805 7th St, New York City, NY 10001" -219979,27in FHD Monitor,1,149.99,06/22/19 15:58,"786 9th St, Portland, OR 97035" -219980,AAA Batteries (4-pack),1,2.99,06/06/19 20:37,"850 9th St, San Francisco, CA 94016" -219981,Bose SoundSport Headphones,1,99.99,06/28/19 09:10,"859 Hickory St, Boston, MA 02215" -219982,AAA Batteries (4-pack),3,2.99,06/03/19 11:34,"322 1st St, New York City, NY 10001" -219983,Apple Airpods Headphones,1,150,06/18/19 20:04,"807 Meadow St, Atlanta, GA 30301" -219984,Lightning Charging Cable,2,14.95,06/07/19 01:31,"474 Hickory St, Los Angeles, CA 90001" -219985,Wired Headphones,1,11.99,06/19/19 21:29,"456 Chestnut St, Boston, MA 02215" -219986,Wired Headphones,1,11.99,06/09/19 09:55,"503 5th St, Atlanta, GA 30301" -219987,Wired Headphones,1,11.99,06/05/19 11:47,"626 4th St, Seattle, WA 98101" -219988,Apple Airpods Headphones,1,150,06/15/19 14:39,"192 Washington St, Los Angeles, CA 90001" -219989,Lightning Charging Cable,1,14.95,06/21/19 15:48,"565 7th St, Dallas, TX 75001" -219990,AAA Batteries (4-pack),1,2.99,06/11/19 01:29,"757 Forest St, New York City, NY 10001" -219991,Lightning Charging Cable,1,14.95,06/29/19 22:52,"100 Church St, San Francisco, CA 94016" -219992,AA Batteries (4-pack),2,3.84,06/26/19 18:13,"829 14th St, New York City, NY 10001" -219993,iPhone,1,700,06/28/19 14:40,"528 Spruce St, Boston, MA 02215" -219994,Flatscreen TV,1,300,06/08/19 06:34,"679 Cedar St, San Francisco, CA 94016" -219995,iPhone,1,700,06/01/19 20:18,"130 Park St, Los Angeles, CA 90001" -219996,AA Batteries (4-pack),3,3.84,06/26/19 08:35,"396 Lincoln St, New York City, NY 10001" -219997,Wired Headphones,1,11.99,06/21/19 13:23,"715 Highland St, Austin, TX 73301" -219998,27in FHD Monitor,1,149.99,06/10/19 09:16,"330 Wilson St, New York City, NY 10001" -219999,Lightning Charging Cable,1,14.95,06/08/19 02:21,"477 Lake St, Atlanta, GA 30301" -220000,Lightning Charging Cable,1,14.95,06/27/19 08:31,"881 10th St, Atlanta, GA 30301" -220001,Lightning Charging Cable,1,14.95,06/26/19 21:53,"999 Jackson St, New York City, NY 10001" -220002,Lightning Charging Cable,1,14.95,06/26/19 22:57,"307 West St, New York City, NY 10001" -220003,AA Batteries (4-pack),2,3.84,06/08/19 14:48,"27 13th St, Seattle, WA 98101" -220004,27in FHD Monitor,1,149.99,06/05/19 20:09,"183 Pine St, Seattle, WA 98101" -220005,AAA Batteries (4-pack),2,2.99,06/15/19 13:40,"951 6th St, New York City, NY 10001" -220006,AA Batteries (4-pack),1,3.84,06/12/19 10:28,"86 Willow St, New York City, NY 10001" -220007,USB-C Charging Cable,1,11.95,06/22/19 08:51,"368 2nd St, New York City, NY 10001" -220008,Lightning Charging Cable,1,14.95,06/12/19 19:32,"720 Elm St, New York City, NY 10001" -220009,34in Ultrawide Monitor,1,379.99,06/02/19 17:34,"601 10th St, Seattle, WA 98101" -220010,Lightning Charging Cable,1,14.95,06/02/19 13:00,"591 Willow St, Atlanta, GA 30301" -220011,Lightning Charging Cable,1,14.95,06/07/19 07:26,"642 8th St, Boston, MA 02215" -220012,Bose SoundSport Headphones,1,99.99,06/22/19 10:32,"295 Hill St, Seattle, WA 98101" -220013,Google Phone,1,600,06/27/19 16:59,"79 4th St, San Francisco, CA 94016" -220013,Bose SoundSport Headphones,1,99.99,06/27/19 16:59,"79 4th St, San Francisco, CA 94016" -220013,27in FHD Monitor,1,149.99,06/27/19 16:59,"79 4th St, San Francisco, CA 94016" -220014,Flatscreen TV,1,300,06/02/19 22:47,"503 Madison St, Los Angeles, CA 90001" -220015,Lightning Charging Cable,1,14.95,06/17/19 14:42,"731 Forest St, Atlanta, GA 30301" -220016,AA Batteries (4-pack),3,3.84,06/25/19 08:43,"836 Pine St, Dallas, TX 75001" -220017,AAA Batteries (4-pack),1,2.99,06/22/19 12:52,"751 Jefferson St, Portland, ME 04101" -220018,AAA Batteries (4-pack),1,2.99,06/25/19 22:50,"337 11th St, Seattle, WA 98101" -220019,20in Monitor,1,109.99,06/10/19 15:25,"330 West St, Los Angeles, CA 90001" -220020,Bose SoundSport Headphones,1,99.99,06/28/19 16:10,"697 West St, Seattle, WA 98101" -220021,USB-C Charging Cable,1,11.95,06/17/19 14:32,"992 Park St, New York City, NY 10001" -220022,Lightning Charging Cable,1,14.95,06/07/19 12:19,"89 Lake St, Los Angeles, CA 90001" -220023,USB-C Charging Cable,1,11.95,06/13/19 20:31,"199 4th St, San Francisco, CA 94016" -220024,34in Ultrawide Monitor,1,379.99,06/12/19 11:03,"36 14th St, Dallas, TX 75001" -220025,Macbook Pro Laptop,1,1700,06/09/19 13:23,"35 5th St, San Francisco, CA 94016" -220026,Wired Headphones,2,11.99,06/02/19 14:33,"751 14th St, Boston, MA 02215" -220027,iPhone,1,700,06/02/19 11:38,"407 Chestnut St, Dallas, TX 75001" -220028,AA Batteries (4-pack),1,3.84,06/19/19 10:30,"519 6th St, Dallas, TX 75001" -220029,AA Batteries (4-pack),2,3.84,06/29/19 15:50,"505 Hickory St, Portland, OR 97035" -220030,AAA Batteries (4-pack),1,2.99,06/21/19 10:20,"161 11th St, Atlanta, GA 30301" -220031,Wired Headphones,1,11.99,06/15/19 20:21,"546 9th St, Dallas, TX 75001" -220032,27in 4K Gaming Monitor,1,389.99,06/09/19 20:52,"821 South St, Los Angeles, CA 90001" -220033,34in Ultrawide Monitor,1,379.99,06/29/19 20:21,"984 Meadow St, Seattle, WA 98101" -220034,34in Ultrawide Monitor,1,379.99,06/19/19 16:45,"153 West St, San Francisco, CA 94016" -220035,USB-C Charging Cable,1,11.95,06/03/19 19:39,"754 11th St, New York City, NY 10001" -220036,USB-C Charging Cable,1,11.95,06/06/19 17:22,"218 Center St, San Francisco, CA 94016" -220037,Lightning Charging Cable,1,14.95,06/22/19 17:43,"664 14th St, Austin, TX 73301" -220038,Bose SoundSport Headphones,1,99.99,06/22/19 21:41,"181 Pine St, San Francisco, CA 94016" -220039,AAA Batteries (4-pack),2,2.99,06/11/19 22:08,"748 Sunset St, New York City, NY 10001" -220040,Apple Airpods Headphones,1,150,06/23/19 09:27,"908 River St, Austin, TX 73301" -220041,Flatscreen TV,1,300,06/21/19 23:10,"475 1st St, Seattle, WA 98101" -220042,Wired Headphones,1,11.99,06/12/19 17:03,"427 Main St, Los Angeles, CA 90001" -220043,20in Monitor,1,109.99,06/03/19 22:19,"184 Lake St, Portland, OR 97035" -220044,AAA Batteries (4-pack),2,2.99,06/18/19 14:35,"612 Wilson St, Dallas, TX 75001" -220045,Lightning Charging Cable,1,14.95,06/10/19 10:25,"412 Johnson St, New York City, NY 10001" -220046,Macbook Pro Laptop,1,1700,06/10/19 21:53,"740 Hickory St, Dallas, TX 75001" -220047,27in 4K Gaming Monitor,1,389.99,06/17/19 13:00,"284 2nd St, Los Angeles, CA 90001" -220048,Bose SoundSport Headphones,1,99.99,06/15/19 16:01,"770 Chestnut St, New York City, NY 10001" -220049,Bose SoundSport Headphones,1,99.99,06/08/19 09:39,"892 10th St, San Francisco, CA 94016" -220050,20in Monitor,1,109.99,06/27/19 17:09,"875 10th St, Dallas, TX 75001" -220051,20in Monitor,1,109.99,06/09/19 21:18,"434 Highland St, Los Angeles, CA 90001" -220052,iPhone,1,700,06/11/19 22:32,"794 1st St, Boston, MA 02215" -220052,Lightning Charging Cable,1,14.95,06/11/19 22:32,"794 1st St, Boston, MA 02215" -220053,USB-C Charging Cable,1,11.95,06/25/19 16:13,"138 9th St, San Francisco, CA 94016" -220054,AAA Batteries (4-pack),2,2.99,06/13/19 15:56,"200 Highland St, New York City, NY 10001" -220055,Lightning Charging Cable,1,14.95,06/28/19 22:29,"929 10th St, Atlanta, GA 30301" -220056,Flatscreen TV,1,300,06/17/19 10:14,"189 Adams St, San Francisco, CA 94016" -220057,Lightning Charging Cable,1,14.95,06/29/19 21:17,"910 9th St, Los Angeles, CA 90001" -220058,Vareebadd Phone,1,400,06/04/19 21:44,"616 Sunset St, Dallas, TX 75001" -220059,20in Monitor,1,109.99,06/23/19 14:49,"391 Cedar St, Los Angeles, CA 90001" -220060,ThinkPad Laptop,1,999.99,06/30/19 10:21,"350 Lake St, Seattle, WA 98101" -220061,Wired Headphones,1,11.99,06/26/19 17:20,"797 4th St, Portland, OR 97035" -220062,ThinkPad Laptop,1,999.99,06/06/19 15:51,"600 Cedar St, Los Angeles, CA 90001" -220063,34in Ultrawide Monitor,1,379.99,06/27/19 10:22,"561 7th St, New York City, NY 10001" -220064,Lightning Charging Cable,1,14.95,06/06/19 17:24,"800 Jackson St, Boston, MA 02215" -220065,Apple Airpods Headphones,1,150,06/28/19 23:01,"545 River St, Seattle, WA 98101" -220066,AA Batteries (4-pack),1,3.84,06/17/19 08:46,"585 Walnut St, Austin, TX 73301" -220067,27in FHD Monitor,1,149.99,06/14/19 00:36,"694 Willow St, Seattle, WA 98101" -220068,AAA Batteries (4-pack),1,2.99,06/25/19 00:20,"232 Wilson St, San Francisco, CA 94016" -220069,Macbook Pro Laptop,1,1700,06/28/19 20:21,"715 Washington St, New York City, NY 10001" -220070,Apple Airpods Headphones,1,150,06/16/19 19:29,"87 6th St, Los Angeles, CA 90001" -220070,Bose SoundSport Headphones,1,99.99,06/16/19 19:29,"87 6th St, Los Angeles, CA 90001" -220071,Flatscreen TV,1,300,06/07/19 10:17,"639 12th St, Portland, OR 97035" -220072,iPhone,1,700,06/09/19 19:05,"585 1st St, Seattle, WA 98101" -220073,Flatscreen TV,1,300,06/23/19 22:24,"280 Meadow St, Austin, TX 73301" -220074,Apple Airpods Headphones,1,150,06/28/19 07:45,"989 Elm St, Dallas, TX 75001" -220075,Wired Headphones,1,11.99,06/01/19 11:09,"751 5th St, Dallas, TX 75001" -220076,AA Batteries (4-pack),2,3.84,06/14/19 17:57,"30 Hickory St, New York City, NY 10001" -220077,27in 4K Gaming Monitor,1,389.99,06/02/19 20:28,"49 West St, New York City, NY 10001" -220078,27in 4K Gaming Monitor,1,389.99,06/27/19 10:50,"302 Cedar St, Los Angeles, CA 90001" -220079,USB-C Charging Cable,1,11.95,06/18/19 07:49,"622 Madison St, Seattle, WA 98101" -220080,Lightning Charging Cable,1,14.95,06/19/19 14:26,"959 9th St, Austin, TX 73301" -220081,Lightning Charging Cable,1,14.95,06/12/19 10:33,"887 Sunset St, New York City, NY 10001" -220082,34in Ultrawide Monitor,1,379.99,06/13/19 18:07,"226 Cedar St, Atlanta, GA 30301" -220083,AA Batteries (4-pack),1,3.84,06/24/19 13:02,"351 Cherry St, Austin, TX 73301" -220084,USB-C Charging Cable,1,11.95,06/22/19 14:14,"994 Spruce St, Seattle, WA 98101" -220085,AAA Batteries (4-pack),2,2.99,06/04/19 16:58,"165 Dogwood St, Seattle, WA 98101" -220086,34in Ultrawide Monitor,1,379.99,06/28/19 13:53,"568 Lake St, New York City, NY 10001" -220087,Flatscreen TV,1,300,06/13/19 09:11,"216 Cherry St, Los Angeles, CA 90001" -220088,ThinkPad Laptop,1,999.99,06/30/19 11:49,"393 Forest St, Austin, TX 73301" -220089,Wired Headphones,1,11.99,06/21/19 16:06,"103 Willow St, San Francisco, CA 94016" -220090,Wired Headphones,1,11.99,06/16/19 18:26,"500 Madison St, Los Angeles, CA 90001" -220091,Lightning Charging Cable,1,14.95,06/11/19 17:11,"239 Madison St, Boston, MA 02215" -220092,27in 4K Gaming Monitor,1,389.99,06/04/19 21:33,"953 Main St, Austin, TX 73301" -220093,27in FHD Monitor,1,149.99,06/07/19 21:23,"529 Pine St, San Francisco, CA 94016" -220094,Lightning Charging Cable,1,14.95,06/03/19 21:18,"876 Dogwood St, Los Angeles, CA 90001" -220095,USB-C Charging Cable,1,11.95,06/11/19 21:02,"986 Maple St, Seattle, WA 98101" -220096,ThinkPad Laptop,1,999.99,06/12/19 08:14,"791 Church St, Dallas, TX 75001" -220097,Wired Headphones,1,11.99,06/19/19 14:25,"169 8th St, Los Angeles, CA 90001" -220098,USB-C Charging Cable,1,11.95,06/30/19 13:57,"147 Cedar St, San Francisco, CA 94016" -220099,Apple Airpods Headphones,1,150,06/27/19 17:20,"271 Adams St, San Francisco, CA 94016" -220100,Apple Airpods Headphones,1,150,06/25/19 18:18,"547 Jackson St, Atlanta, GA 30301" -220101,USB-C Charging Cable,1,11.95,06/03/19 18:18,"140 Hickory St, Los Angeles, CA 90001" -220102,ThinkPad Laptop,1,999.99,06/21/19 13:30,"507 Washington St, Los Angeles, CA 90001" -220103,Apple Airpods Headphones,1,150,06/26/19 12:18,"288 South St, Austin, TX 73301" -220104,Bose SoundSport Headphones,1,99.99,06/02/19 09:19,"280 Lakeview St, San Francisco, CA 94016" -220105,iPhone,1,700,06/21/19 11:29,"14 Washington St, Austin, TX 73301" -220106,AAA Batteries (4-pack),1,2.99,06/11/19 19:52,"285 Forest St, Los Angeles, CA 90001" -220107,USB-C Charging Cable,1,11.95,06/08/19 21:48,"327 Main St, Dallas, TX 75001" -220108,Lightning Charging Cable,1,14.95,06/05/19 12:26,"390 Lake St, New York City, NY 10001" -220109,Wired Headphones,1,11.99,06/04/19 23:34,"34 Chestnut St, Los Angeles, CA 90001" -220110,Apple Airpods Headphones,1,150,06/24/19 08:57,"179 8th St, Seattle, WA 98101" -220111,27in 4K Gaming Monitor,1,389.99,06/13/19 20:14,"356 2nd St, San Francisco, CA 94016" -220112,AAA Batteries (4-pack),1,2.99,06/22/19 19:48,"231 Sunset St, San Francisco, CA 94016" -220113,AAA Batteries (4-pack),1,2.99,06/17/19 18:38,"80 7th St, San Francisco, CA 94016" -220114,Lightning Charging Cable,1,14.95,07/01/19 01:31,"419 Walnut St, Dallas, TX 75001" -220115,Vareebadd Phone,1,400,06/16/19 09:49,"176 14th St, Dallas, TX 75001" -220116,Bose SoundSport Headphones,1,99.99,06/20/19 01:36,"575 7th St, Los Angeles, CA 90001" -220117,Lightning Charging Cable,1,14.95,06/12/19 14:05,"854 Lincoln St, New York City, NY 10001" -220118,ThinkPad Laptop,1,999.99,06/19/19 23:08,"359 14th St, New York City, NY 10001" -220119,27in 4K Gaming Monitor,1,389.99,06/14/19 09:16,"80 7th St, San Francisco, CA 94016" -220120,Bose SoundSport Headphones,1,99.99,06/06/19 14:27,"441 Chestnut St, Portland, OR 97035" -220121,20in Monitor,1,109.99,06/22/19 10:30,"41 13th St, New York City, NY 10001" -220122,Wired Headphones,1,11.99,06/27/19 17:10,"781 Cedar St, New York City, NY 10001" -220123,Wired Headphones,2,11.99,06/17/19 05:59,"522 Jackson St, Austin, TX 73301" -220124,USB-C Charging Cable,1,11.95,06/12/19 21:02,"525 Jackson St, San Francisco, CA 94016" -220125,Macbook Pro Laptop,1,1700,06/06/19 11:34,"560 Elm St, San Francisco, CA 94016" -220126,AAA Batteries (4-pack),1,2.99,06/04/19 16:07,"174 Wilson St, Dallas, TX 75001" -220127,Wired Headphones,1,11.99,06/10/19 09:25,"803 Church St, Los Angeles, CA 90001" -220128,USB-C Charging Cable,1,11.95,06/17/19 12:58,"687 Lincoln St, San Francisco, CA 94016" -220129,27in FHD Monitor,1,149.99,06/06/19 10:06,"754 11th St, San Francisco, CA 94016" -220130,AAA Batteries (4-pack),1,2.99,06/08/19 18:44,"228 South St, Atlanta, GA 30301" -220131,AA Batteries (4-pack),2,3.84,06/06/19 18:28,"214 Dogwood St, San Francisco, CA 94016" -220132,20in Monitor,1,109.99,06/02/19 12:24,"282 Cedar St, Seattle, WA 98101" -220133,Apple Airpods Headphones,1,150,06/18/19 21:36,"240 4th St, Los Angeles, CA 90001" -220134,Google Phone,1,600,06/28/19 23:32,"751 11th St, Atlanta, GA 30301" -220135,20in Monitor,1,109.99,06/21/19 13:12,"634 Chestnut St, Atlanta, GA 30301" -220136,AA Batteries (4-pack),3,3.84,06/10/19 12:19,"485 Walnut St, Los Angeles, CA 90001" -220137,20in Monitor,1,109.99,06/13/19 12:24,"76 13th St, Los Angeles, CA 90001" -220138,AA Batteries (4-pack),1,3.84,06/05/19 15:41,"655 Willow St, San Francisco, CA 94016" -220139,AAA Batteries (4-pack),1,2.99,06/04/19 10:50,"135 Highland St, Los Angeles, CA 90001" -220140,Macbook Pro Laptop,1,1700,06/07/19 07:49,"125 Park St, Austin, TX 73301" -220141,27in FHD Monitor,1,149.99,06/03/19 18:20,"116 West St, Los Angeles, CA 90001" -220142,27in FHD Monitor,1,149.99,06/23/19 20:59,"392 Cherry St, Seattle, WA 98101" -220143,Wired Headphones,1,11.99,06/12/19 10:42,"395 11th St, Boston, MA 02215" -220144,Vareebadd Phone,1,400,06/06/19 13:28,"834 Main St, Boston, MA 02215" -220145,Wired Headphones,1,11.99,06/22/19 13:43,"275 5th St, San Francisco, CA 94016" -220146,Apple Airpods Headphones,1,150,06/13/19 21:21,"288 South St, Seattle, WA 98101" -220147,Lightning Charging Cable,1,14.95,06/30/19 16:01,"103 Johnson St, San Francisco, CA 94016" -220148,AA Batteries (4-pack),1,3.84,06/13/19 20:22,"479 6th St, San Francisco, CA 94016" -220149,Apple Airpods Headphones,1,150,06/15/19 15:43,"597 Spruce St, Boston, MA 02215" -220150,AA Batteries (4-pack),2,3.84,06/16/19 17:17,"535 Spruce St, Boston, MA 02215" -220151,AAA Batteries (4-pack),1,2.99,06/04/19 19:06,"137 Chestnut St, New York City, NY 10001" -220152,Apple Airpods Headphones,1,150,06/06/19 11:18,"592 Hickory St, San Francisco, CA 94016" -220153,Lightning Charging Cable,1,14.95,06/05/19 22:08,"829 North St, San Francisco, CA 94016" -220153,Bose SoundSport Headphones,1,99.99,06/05/19 22:08,"829 North St, San Francisco, CA 94016" -220154,34in Ultrawide Monitor,1,379.99,06/22/19 17:15,"492 South St, Austin, TX 73301" -220155,iPhone,1,700,06/27/19 22:35,"163 Washington St, San Francisco, CA 94016" -220155,Apple Airpods Headphones,1,150,06/27/19 22:35,"163 Washington St, San Francisco, CA 94016" -220156,Lightning Charging Cable,1,14.95,06/04/19 20:19,"466 10th St, Dallas, TX 75001" -220157,Bose SoundSport Headphones,1,99.99,06/15/19 20:46,"423 Center St, San Francisco, CA 94016" -220158,Macbook Pro Laptop,1,1700,06/07/19 17:38,"892 Sunset St, Austin, TX 73301" -220159,AAA Batteries (4-pack),2,2.99,06/20/19 02:23,"248 Forest St, New York City, NY 10001" -220160,AA Batteries (4-pack),1,3.84,06/22/19 18:59,"720 5th St, San Francisco, CA 94016" -220161,AA Batteries (4-pack),2,3.84,06/29/19 13:56,"627 Lincoln St, San Francisco, CA 94016" -220162,AAA Batteries (4-pack),4,2.99,06/25/19 14:57,"953 1st St, Seattle, WA 98101" -220163,USB-C Charging Cable,1,11.95,06/26/19 11:12,"52 Forest St, Atlanta, GA 30301" -220164,20in Monitor,1,109.99,06/25/19 12:14,"438 5th St, San Francisco, CA 94016" -220165,27in FHD Monitor,1,149.99,06/26/19 10:49,"435 Spruce St, San Francisco, CA 94016" -220166,Bose SoundSport Headphones,1,99.99,06/18/19 11:02,"754 12th St, Seattle, WA 98101" -220167,AA Batteries (4-pack),1,3.84,06/25/19 22:14,"353 5th St, New York City, NY 10001" -220168,AA Batteries (4-pack),1,3.84,06/15/19 12:37,"88 Lincoln St, New York City, NY 10001" -220169,USB-C Charging Cable,1,11.95,06/21/19 20:57,"366 Elm St, San Francisco, CA 94016" -220170,Apple Airpods Headphones,1,150,06/03/19 12:05,"113 Meadow St, Dallas, TX 75001" -220171,AAA Batteries (4-pack),1,2.99,06/01/19 16:18,"700 Ridge St, Los Angeles, CA 90001" -220172,AAA Batteries (4-pack),1,2.99,06/29/19 12:01,"658 Washington St, Dallas, TX 75001" -220173,Bose SoundSport Headphones,1,99.99,06/26/19 16:10,"926 Chestnut St, Los Angeles, CA 90001" -220174,Apple Airpods Headphones,1,150,06/24/19 17:06,"234 12th St, Dallas, TX 75001" -220175,AAA Batteries (4-pack),1,2.99,06/04/19 20:28,"269 South St, Los Angeles, CA 90001" -220176,AAA Batteries (4-pack),2,2.99,06/23/19 23:34,"155 4th St, San Francisco, CA 94016" -220177,AA Batteries (4-pack),1,3.84,06/15/19 08:59,"410 6th St, San Francisco, CA 94016" -220178,AA Batteries (4-pack),1,3.84,06/11/19 13:02,"512 Meadow St, Portland, OR 97035" -220179,AAA Batteries (4-pack),2,2.99,06/18/19 18:58,"817 Hill St, Boston, MA 02215" -220180,Wired Headphones,1,11.99,06/24/19 01:01,"352 Main St, Portland, ME 04101" -,,,,, -220181,AAA Batteries (4-pack),1,2.99,06/14/19 20:26,"554 1st St, San Francisco, CA 94016" -220182,Flatscreen TV,1,300,06/23/19 21:02,"68 Forest St, Seattle, WA 98101" -220183,Bose SoundSport Headphones,1,99.99,06/23/19 10:53,"575 14th St, San Francisco, CA 94016" -220184,Wired Headphones,1,11.99,06/06/19 22:05,"144 8th St, New York City, NY 10001" -220185,AAA Batteries (4-pack),2,2.99,06/05/19 17:22,"257 8th St, Los Angeles, CA 90001" -220185,Wired Headphones,1,11.99,06/05/19 17:22,"257 8th St, Los Angeles, CA 90001" -220186,AA Batteries (4-pack),1,3.84,06/01/19 19:05,"431 Lincoln St, Seattle, WA 98101" -220187,Apple Airpods Headphones,1,150,06/30/19 17:30,"79 10th St, San Francisco, CA 94016" -220188,AAA Batteries (4-pack),1,2.99,06/13/19 13:30,"230 Maple St, Los Angeles, CA 90001" -220189,Apple Airpods Headphones,1,150,06/21/19 23:52,"349 Willow St, Los Angeles, CA 90001" -220190,USB-C Charging Cable,1,11.95,06/16/19 07:18,"277 Jackson St, San Francisco, CA 94016" -220191,ThinkPad Laptop,1,999.99,06/17/19 08:38,"516 13th St, Seattle, WA 98101" -220192,Apple Airpods Headphones,1,150,06/02/19 16:40,"963 Hickory St, San Francisco, CA 94016" -220193,Lightning Charging Cable,1,14.95,06/11/19 07:47,"764 Hill St, Boston, MA 02215" -220194,Bose SoundSport Headphones,1,99.99,06/02/19 14:09,"396 Maple St, San Francisco, CA 94016" -220195,Lightning Charging Cable,1,14.95,06/12/19 18:50,"230 Jackson St, San Francisco, CA 94016" -220196,Wired Headphones,1,11.99,06/07/19 19:35,"927 Forest St, Los Angeles, CA 90001" -220197,USB-C Charging Cable,1,11.95,06/01/19 16:19,"47 Walnut St, San Francisco, CA 94016" -220198,AAA Batteries (4-pack),1,2.99,06/30/19 11:05,"408 Elm St, Los Angeles, CA 90001" -220199,Lightning Charging Cable,1,14.95,06/29/19 00:11,"843 Hickory St, Los Angeles, CA 90001" -220200,AA Batteries (4-pack),1,3.84,06/22/19 11:13,"725 Adams St, Portland, OR 97035" -220201,Flatscreen TV,1,300,06/08/19 08:33,"239 11th St, San Francisco, CA 94016" -220202,AAA Batteries (4-pack),1,2.99,06/16/19 07:36,"865 Lincoln St, Los Angeles, CA 90001" -220203,AA Batteries (4-pack),1,3.84,06/24/19 20:35,"928 Ridge St, Boston, MA 02215" -220204,Lightning Charging Cable,1,14.95,06/13/19 11:05,"716 Maple St, Portland, OR 97035" -220205,Apple Airpods Headphones,1,150,06/27/19 14:35,"783 Center St, Los Angeles, CA 90001" -220206,Bose SoundSport Headphones,1,99.99,06/19/19 21:25,"315 Center St, Seattle, WA 98101" -220207,Bose SoundSport Headphones,1,99.99,06/13/19 07:24,"152 Main St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -220208,iPhone,1,700,06/19/19 10:14,"569 Hickory St, Los Angeles, CA 90001" -220208,Wired Headphones,1,11.99,06/19/19 10:14,"569 Hickory St, Los Angeles, CA 90001" -220209,Apple Airpods Headphones,1,150,06/27/19 21:15,"769 Park St, New York City, NY 10001" -220210,AAA Batteries (4-pack),2,2.99,06/01/19 09:13,"27 Pine St, San Francisco, CA 94016" -220211,Wired Headphones,1,11.99,06/14/19 23:15,"914 12th St, Portland, OR 97035" -220212,AAA Batteries (4-pack),1,2.99,06/08/19 07:53,"824 Madison St, Portland, OR 97035" -220213,AAA Batteries (4-pack),3,2.99,06/15/19 21:47,"839 Main St, New York City, NY 10001" -220214,Wired Headphones,1,11.99,06/09/19 23:05,"844 Highland St, San Francisco, CA 94016" -220215,AA Batteries (4-pack),1,3.84,06/06/19 09:54,"621 10th St, San Francisco, CA 94016" -220216,Wired Headphones,2,11.99,06/07/19 11:40,"989 7th St, San Francisco, CA 94016" -220217,AAA Batteries (4-pack),2,2.99,06/30/19 18:07,"166 South St, Boston, MA 02215" -220218,Lightning Charging Cable,1,14.95,06/15/19 08:02,"829 Pine St, Boston, MA 02215" -220219,Macbook Pro Laptop,1,1700,06/24/19 08:29,"569 12th St, Atlanta, GA 30301" -220220,Wired Headphones,2,11.99,06/01/19 14:15,"79 South St, Los Angeles, CA 90001" -220221,Bose SoundSport Headphones,1,99.99,06/01/19 12:22,"843 12th St, Seattle, WA 98101" -220222,Bose SoundSport Headphones,1,99.99,06/29/19 12:21,"755 Center St, San Francisco, CA 94016" -220223,Wired Headphones,2,11.99,06/19/19 15:20,"995 Spruce St, Austin, TX 73301" -220223,AAA Batteries (4-pack),3,2.99,06/19/19 15:20,"995 Spruce St, Austin, TX 73301" -220224,ThinkPad Laptop,1,999.99,06/18/19 14:45,"103 Lincoln St, San Francisco, CA 94016" -220225,Apple Airpods Headphones,1,150,06/17/19 09:03,"761 Park St, New York City, NY 10001" -220226,27in FHD Monitor,1,149.99,06/02/19 09:54,"704 Church St, Los Angeles, CA 90001" -220227,iPhone,1,700,06/03/19 15:04,"174 Adams St, New York City, NY 10001" -220228,AA Batteries (4-pack),1,3.84,06/03/19 18:59,"354 Lake St, Dallas, TX 75001" -220229,Bose SoundSport Headphones,1,99.99,06/12/19 11:08,"432 North St, Portland, OR 97035" -220230,Apple Airpods Headphones,1,150,06/28/19 19:29,"965 10th St, Los Angeles, CA 90001" -220231,iPhone,1,700,06/11/19 14:09,"66 Cherry St, Austin, TX 73301" -220232,Flatscreen TV,1,300,06/11/19 19:07,"294 Church St, Dallas, TX 75001" -220233,Lightning Charging Cable,1,14.95,06/18/19 14:15,"318 South St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -220234,Wired Headphones,1,11.99,06/03/19 11:23,"950 Hill St, Atlanta, GA 30301" -220235,27in FHD Monitor,1,149.99,06/06/19 18:35,"778 Elm St, New York City, NY 10001" -220236,Bose SoundSport Headphones,1,99.99,06/21/19 11:15,"985 Maple St, San Francisco, CA 94016" -220237,Apple Airpods Headphones,1,150,06/09/19 21:26,"439 Jackson St, New York City, NY 10001" -220238,ThinkPad Laptop,1,999.99,06/10/19 12:24,"986 2nd St, Portland, OR 97035" -220239,USB-C Charging Cable,1,11.95,06/08/19 17:14,"146 Hickory St, Boston, MA 02215" -220240,34in Ultrawide Monitor,1,379.99,06/27/19 20:52,"266 Johnson St, San Francisco, CA 94016" -220241,Google Phone,1,600,06/02/19 18:47,"302 West St, San Francisco, CA 94016" -220241,Bose SoundSport Headphones,1,99.99,06/02/19 18:47,"302 West St, San Francisco, CA 94016" -220242,AAA Batteries (4-pack),6,2.99,06/28/19 10:37,"121 Park St, Seattle, WA 98101" -220243,AAA Batteries (4-pack),1,2.99,06/14/19 13:41,"325 Church St, New York City, NY 10001" -220244,Google Phone,1,600,06/15/19 18:43,"957 North St, Dallas, TX 75001" -220245,Wired Headphones,1,11.99,06/17/19 21:52,"801 Jackson St, Portland, OR 97035" -220246,iPhone,1,700,06/10/19 14:11,"10 Jefferson St, Atlanta, GA 30301" -220246,Apple Airpods Headphones,1,150,06/10/19 14:11,"10 Jefferson St, Atlanta, GA 30301" -220247,Bose SoundSport Headphones,1,99.99,06/03/19 10:30,"228 13th St, Atlanta, GA 30301" -220248,Flatscreen TV,1,300,06/13/19 19:04,"971 7th St, Boston, MA 02215" -220249,Wired Headphones,1,11.99,06/29/19 16:03,"808 Highland St, Austin, TX 73301" -220250,Bose SoundSport Headphones,1,99.99,06/28/19 15:17,"934 Lakeview St, Atlanta, GA 30301" -220251,Bose SoundSport Headphones,1,99.99,06/18/19 22:37,"882 Cedar St, Los Angeles, CA 90001" -220252,Apple Airpods Headphones,1,150,06/04/19 16:17,"241 5th St, Atlanta, GA 30301" -220253,Wired Headphones,1,11.99,06/28/19 17:10,"321 Walnut St, Boston, MA 02215" -220254,Wired Headphones,2,11.99,06/10/19 16:04,"472 Elm St, Austin, TX 73301" -220255,USB-C Charging Cable,1,11.95,06/16/19 11:05,"21 Forest St, Seattle, WA 98101" -220256,AAA Batteries (4-pack),2,2.99,06/17/19 14:41,"763 Lakeview St, Atlanta, GA 30301" -220257,AAA Batteries (4-pack),1,2.99,06/08/19 00:09,"499 Walnut St, New York City, NY 10001" -220258,AA Batteries (4-pack),3,3.84,06/16/19 00:08,"880 South St, New York City, NY 10001" -220259,ThinkPad Laptop,1,999.99,06/07/19 03:23,"980 River St, San Francisco, CA 94016" -220260,AAA Batteries (4-pack),1,2.99,06/16/19 11:37,"819 Walnut St, San Francisco, CA 94016" -220261,Bose SoundSport Headphones,1,99.99,06/16/19 22:08,"958 Sunset St, San Francisco, CA 94016" -220262,27in FHD Monitor,1,149.99,06/14/19 12:58,"718 9th St, San Francisco, CA 94016" -220263,AAA Batteries (4-pack),3,2.99,06/20/19 23:37,"685 13th St, Los Angeles, CA 90001" -220264,iPhone,1,700,06/17/19 15:10,"471 Hill St, Boston, MA 02215" -220265,AA Batteries (4-pack),2,3.84,06/25/19 22:47,"396 Cedar St, Dallas, TX 75001" -220266,AA Batteries (4-pack),1,3.84,06/12/19 11:11,"839 Highland St, San Francisco, CA 94016" -220267,Google Phone,1,600,06/01/19 18:47,"78 Jackson St, Los Angeles, CA 90001" -220267,USB-C Charging Cable,1,11.95,06/01/19 18:47,"78 Jackson St, Los Angeles, CA 90001" -220268,Wired Headphones,1,11.99,06/04/19 00:32,"328 13th St, Boston, MA 02215" -220269,Bose SoundSport Headphones,1,99.99,06/13/19 20:41,"457 Spruce St, San Francisco, CA 94016" -220270,Wired Headphones,1,11.99,06/06/19 07:05,"613 7th St, Atlanta, GA 30301" -220271,Lightning Charging Cable,1,14.95,06/27/19 20:55,"747 Park St, Dallas, TX 75001" -220272,USB-C Charging Cable,1,11.95,06/13/19 13:20,"160 Church St, San Francisco, CA 94016" -220273,Lightning Charging Cable,1,14.95,06/07/19 12:12,"423 Jackson St, San Francisco, CA 94016" -220274,Lightning Charging Cable,1,14.95,06/14/19 10:57,"864 Willow St, Atlanta, GA 30301" -220275,34in Ultrawide Monitor,1,379.99,06/01/19 10:20,"290 Walnut St, Los Angeles, CA 90001" -220276,AA Batteries (4-pack),1,3.84,06/25/19 21:51,"336 9th St, Los Angeles, CA 90001" -220276,USB-C Charging Cable,1,11.95,06/25/19 21:51,"336 9th St, Los Angeles, CA 90001" -220277,ThinkPad Laptop,1,999.99,06/15/19 15:34,"499 Hickory St, Atlanta, GA 30301" -220278,iPhone,1,700,06/09/19 04:43,"473 Spruce St, Boston, MA 02215" -220279,Vareebadd Phone,1,400,06/03/19 12:38,"98 Jefferson St, San Francisco, CA 94016" -220280,Wired Headphones,1,11.99,06/26/19 01:07,"437 Chestnut St, Atlanta, GA 30301" -220281,AAA Batteries (4-pack),1,2.99,06/18/19 16:55,"243 4th St, San Francisco, CA 94016" -220282,USB-C Charging Cable,1,11.95,06/04/19 23:25,"787 8th St, Dallas, TX 75001" -220283,AAA Batteries (4-pack),1,2.99,06/16/19 11:49,"555 10th St, Atlanta, GA 30301" -220284,Lightning Charging Cable,2,14.95,06/28/19 15:19,"896 Adams St, San Francisco, CA 94016" -220285,Macbook Pro Laptop,1,1700,06/11/19 10:52,"192 10th St, San Francisco, CA 94016" -220286,Wired Headphones,1,11.99,06/07/19 14:39,"935 7th St, Boston, MA 02215" -220287,AA Batteries (4-pack),2,3.84,06/14/19 00:01,"300 Hill St, Los Angeles, CA 90001" -220288,AA Batteries (4-pack),2,3.84,06/13/19 13:36,"765 11th St, Seattle, WA 98101" -220289,Apple Airpods Headphones,1,150,06/16/19 00:03,"307 Walnut St, Los Angeles, CA 90001" -220290,AA Batteries (4-pack),2,3.84,06/09/19 20:13,"329 Elm St, San Francisco, CA 94016" -220291,Google Phone,1,600,06/17/19 13:03,"528 6th St, San Francisco, CA 94016" -220292,AA Batteries (4-pack),1,3.84,06/02/19 13:15,"892 Highland St, Dallas, TX 75001" -220293,AAA Batteries (4-pack),3,2.99,06/04/19 21:12,"687 12th St, New York City, NY 10001" -220293,iPhone,1,700,06/04/19 21:12,"687 12th St, New York City, NY 10001" -220294,Wired Headphones,1,11.99,06/23/19 10:53,"200 Maple St, Austin, TX 73301" -220295,20in Monitor,1,109.99,06/07/19 09:57,"387 Maple St, San Francisco, CA 94016" -220296,Lightning Charging Cable,1,14.95,06/13/19 09:53,"437 Meadow St, Los Angeles, CA 90001" -220297,Apple Airpods Headphones,1,150,06/12/19 22:31,"457 12th St, Austin, TX 73301" -220298,iPhone,1,700,06/10/19 10:27,"278 Center St, Los Angeles, CA 90001" -220299,ThinkPad Laptop,1,999.99,06/25/19 21:34,"417 Lakeview St, Atlanta, GA 30301" -220300,Apple Airpods Headphones,1,150,06/17/19 17:01,"450 Lake St, Dallas, TX 75001" -220301,USB-C Charging Cable,1,11.95,06/28/19 20:16,"161 6th St, Dallas, TX 75001" -220302,27in FHD Monitor,1,149.99,06/02/19 13:11,"532 Lakeview St, Atlanta, GA 30301" -220303,27in FHD Monitor,1,149.99,06/19/19 17:06,"949 West St, San Francisco, CA 94016" -220304,iPhone,1,700,06/04/19 09:15,"431 Wilson St, Portland, OR 97035" -220305,AA Batteries (4-pack),2,3.84,06/28/19 22:55,"660 Wilson St, Austin, TX 73301" -220306,34in Ultrawide Monitor,1,379.99,06/28/19 09:22,"577 River St, Seattle, WA 98101" -220307,USB-C Charging Cable,1,11.95,06/26/19 11:14,"628 Cedar St, San Francisco, CA 94016" -220308,USB-C Charging Cable,1,11.95,06/22/19 14:25,"67 Willow St, Los Angeles, CA 90001" -220309,Wired Headphones,1,11.99,06/28/19 22:06,"429 Chestnut St, San Francisco, CA 94016" -220310,iPhone,1,700,06/28/19 11:47,"190 Walnut St, San Francisco, CA 94016" -220310,Wired Headphones,1,11.99,06/28/19 11:47,"190 Walnut St, San Francisco, CA 94016" -220311,ThinkPad Laptop,1,999.99,06/05/19 07:15,"450 Center St, San Francisco, CA 94016" -220312,AA Batteries (4-pack),1,3.84,06/24/19 11:48,"6 Pine St, San Francisco, CA 94016" -220313,AAA Batteries (4-pack),1,2.99,06/02/19 14:03,"888 9th St, San Francisco, CA 94016" -220314,Apple Airpods Headphones,1,150,06/21/19 07:05,"986 Highland St, San Francisco, CA 94016" -220315,34in Ultrawide Monitor,1,379.99,06/01/19 20:07,"5 Lincoln St, Portland, OR 97035" -220316,Lightning Charging Cable,1,14.95,06/11/19 21:07,"998 Jefferson St, San Francisco, CA 94016" -220317,Wired Headphones,1,11.99,06/11/19 09:58,"550 5th St, Dallas, TX 75001" -220318,Apple Airpods Headphones,1,150,06/05/19 11:08,"819 Adams St, Austin, TX 73301" -220319,Lightning Charging Cable,1,14.95,06/19/19 20:46,"809 Walnut St, Boston, MA 02215" -220320,iPhone,1,700,06/06/19 08:49,"485 4th St, Boston, MA 02215" -220320,Lightning Charging Cable,1,14.95,06/06/19 08:49,"485 4th St, Boston, MA 02215" -220321,AAA Batteries (4-pack),1,2.99,06/17/19 09:57,"299 South St, Los Angeles, CA 90001" -220322,Lightning Charging Cable,1,14.95,06/20/19 12:35,"167 Sunset St, Seattle, WA 98101" -220323,27in FHD Monitor,1,149.99,06/15/19 13:27,"367 Meadow St, Seattle, WA 98101" -220324,Apple Airpods Headphones,1,150,06/20/19 15:39,"63 West St, Portland, ME 04101" -220325,Vareebadd Phone,1,400,06/14/19 13:00,"765 Lakeview St, San Francisco, CA 94016" -220326,Wired Headphones,1,11.99,06/16/19 15:10,"481 Church St, Seattle, WA 98101" -220327,Apple Airpods Headphones,1,150,06/12/19 22:42,"532 7th St, Los Angeles, CA 90001" -220328,AAA Batteries (4-pack),2,2.99,06/11/19 17:54,"324 Dogwood St, San Francisco, CA 94016" -220329,Macbook Pro Laptop,1,1700,06/30/19 13:24,"169 Lincoln St, Boston, MA 02215" -220330,USB-C Charging Cable,1,11.95,06/27/19 19:48,"108 5th St, Los Angeles, CA 90001" -220331,Apple Airpods Headphones,1,150,06/05/19 15:10,"562 14th St, Seattle, WA 98101" -220332,ThinkPad Laptop,1,999.99,06/06/19 18:14,"263 Lakeview St, Seattle, WA 98101" -220333,Apple Airpods Headphones,1,150,06/12/19 08:20,"954 2nd St, San Francisco, CA 94016" -220334,Google Phone,1,600,06/30/19 05:49,"633 Chestnut St, New York City, NY 10001" -220335,Flatscreen TV,1,300,06/26/19 18:20,"856 Adams St, San Francisco, CA 94016" -220336,AAA Batteries (4-pack),1,2.99,06/18/19 21:12,"949 5th St, San Francisco, CA 94016" -220337,Wired Headphones,1,11.99,06/13/19 23:52,"492 Lake St, Atlanta, GA 30301" -220338,34in Ultrawide Monitor,1,379.99,06/22/19 07:16,"243 Madison St, San Francisco, CA 94016" -220339,Wired Headphones,1,11.99,06/23/19 21:33,"404 Park St, Seattle, WA 98101" -220340,Apple Airpods Headphones,1,150,06/03/19 00:11,"905 Lakeview St, Boston, MA 02215" -220341,Apple Airpods Headphones,1,150,06/03/19 09:53,"589 1st St, Los Angeles, CA 90001" -220342,Apple Airpods Headphones,1,150,06/01/19 13:12,"229 Dogwood St, Los Angeles, CA 90001" -220343,AAA Batteries (4-pack),1,2.99,06/06/19 21:47,"969 Cherry St, Dallas, TX 75001" -220344,AAA Batteries (4-pack),1,2.99,06/22/19 08:40,"420 Willow St, San Francisco, CA 94016" -220345,Bose SoundSport Headphones,1,99.99,06/09/19 22:36,"327 9th St, Portland, OR 97035" -220346,ThinkPad Laptop,1,999.99,06/09/19 21:41,"846 Spruce St, Los Angeles, CA 90001" -220347,Wired Headphones,1,11.99,06/02/19 18:31,"760 Lincoln St, Boston, MA 02215" -220348,Bose SoundSport Headphones,1,99.99,06/24/19 10:09,"269 Chestnut St, Los Angeles, CA 90001" -220349,Macbook Pro Laptop,1,1700,06/06/19 11:28,"865 8th St, Austin, TX 73301" -220350,AA Batteries (4-pack),2,3.84,06/15/19 21:49,"995 Washington St, New York City, NY 10001" -220351,AA Batteries (4-pack),1,3.84,06/14/19 12:58,"889 Cedar St, New York City, NY 10001" -220352,Bose SoundSport Headphones,1,99.99,06/13/19 21:14,"432 Lake St, Boston, MA 02215" -220353,Bose SoundSport Headphones,1,99.99,07/01/19 02:03,"70 Pine St, New York City, NY 10001" -220354,Lightning Charging Cable,1,14.95,06/16/19 19:01,"332 Lakeview St, Seattle, WA 98101" -220355,Apple Airpods Headphones,1,150,06/09/19 22:06,"314 Highland St, San Francisco, CA 94016" -220356,AA Batteries (4-pack),1,3.84,06/06/19 14:38,"570 Center St, Austin, TX 73301" -220357,27in 4K Gaming Monitor,1,389.99,06/12/19 21:43,"972 Cedar St, Seattle, WA 98101" -220358,34in Ultrawide Monitor,1,379.99,06/27/19 08:14,"725 5th St, New York City, NY 10001" -220359,Bose SoundSport Headphones,1,99.99,06/10/19 14:36,"539 Spruce St, Boston, MA 02215" -220360,Bose SoundSport Headphones,1,99.99,06/17/19 10:40,"559 6th St, Los Angeles, CA 90001" -220361,AAA Batteries (4-pack),2,2.99,06/29/19 07:50,"579 South St, New York City, NY 10001" -220362,AA Batteries (4-pack),1,3.84,06/02/19 21:51,"417 Chestnut St, San Francisco, CA 94016" -220363,Apple Airpods Headphones,1,150,06/13/19 20:18,"618 6th St, New York City, NY 10001" -220364,Apple Airpods Headphones,1,150,06/12/19 23:50,"379 9th St, Atlanta, GA 30301" -220365,USB-C Charging Cable,1,11.95,06/24/19 18:24,"393 Forest St, Boston, MA 02215" -220366,27in FHD Monitor,1,149.99,06/30/19 19:46,"255 Johnson St, Boston, MA 02215" -220367,20in Monitor,1,109.99,06/15/19 22:22,"938 Hill St, Los Angeles, CA 90001" -220368,Wired Headphones,1,11.99,06/22/19 10:25,"631 Jefferson St, San Francisco, CA 94016" -220369,20in Monitor,1,109.99,06/07/19 16:39,"635 Jackson St, San Francisco, CA 94016" -220370,Wired Headphones,1,11.99,06/02/19 10:47,"725 7th St, San Francisco, CA 94016" -220371,Macbook Pro Laptop,1,1700,06/18/19 16:09,"637 Hickory St, New York City, NY 10001" -220372,Wired Headphones,1,11.99,06/22/19 10:25,"13 Cherry St, San Francisco, CA 94016" -220373,Apple Airpods Headphones,1,150,06/23/19 09:03,"528 Spruce St, Los Angeles, CA 90001" -220374,Lightning Charging Cable,1,14.95,06/05/19 09:56,"578 13th St, Portland, ME 04101" -220374,AAA Batteries (4-pack),2,2.99,06/05/19 09:56,"578 13th St, Portland, ME 04101" -220375,USB-C Charging Cable,1,11.95,06/15/19 20:42,"657 Adams St, Los Angeles, CA 90001" -220376,AA Batteries (4-pack),1,3.84,06/22/19 13:43,"700 Johnson St, San Francisco, CA 94016" -220377,Bose SoundSport Headphones,1,99.99,06/03/19 09:43,"498 8th St, Dallas, TX 75001" -220378,Lightning Charging Cable,1,14.95,06/18/19 09:20,"405 5th St, Los Angeles, CA 90001" -220379,27in FHD Monitor,1,149.99,06/08/19 01:24,"531 5th St, New York City, NY 10001" -220380,AAA Batteries (4-pack),1,2.99,06/01/19 16:49,"575 Ridge St, Atlanta, GA 30301" -220381,iPhone,1,700,06/26/19 21:12,"976 Walnut St, Seattle, WA 98101" -220381,Apple Airpods Headphones,1,150,06/26/19 21:12,"976 Walnut St, Seattle, WA 98101" -220382,AAA Batteries (4-pack),1,2.99,06/12/19 18:26,"895 Washington St, Los Angeles, CA 90001" -220383,27in FHD Monitor,1,149.99,06/29/19 14:50,"803 Jackson St, Atlanta, GA 30301" -220384,Lightning Charging Cable,1,14.95,06/04/19 16:44,"405 Chestnut St, San Francisco, CA 94016" -220385,Google Phone,1,600,06/18/19 15:04,"25 Main St, San Francisco, CA 94016" -220386,Lightning Charging Cable,1,14.95,06/03/19 11:09,"381 6th St, San Francisco, CA 94016" -,,,,, -220387,AA Batteries (4-pack),1,3.84,06/11/19 15:08,"509 Elm St, Austin, TX 73301" -220388,USB-C Charging Cable,1,11.95,06/13/19 00:37,"655 14th St, San Francisco, CA 94016" -220389,Lightning Charging Cable,1,14.95,06/09/19 13:27,"320 Jackson St, Boston, MA 02215" -220390,AAA Batteries (4-pack),1,2.99,06/15/19 23:12,"9 13th St, Los Angeles, CA 90001" -220391,Apple Airpods Headphones,1,150,06/02/19 12:38,"124 5th St, Portland, OR 97035" -220392,Lightning Charging Cable,1,14.95,06/08/19 17:13,"472 8th St, Portland, ME 04101" -220392,Lightning Charging Cable,1,14.95,06/08/19 17:13,"472 8th St, Portland, ME 04101" -220393,Bose SoundSport Headphones,1,99.99,06/21/19 21:01,"841 Cedar St, Los Angeles, CA 90001" -220394,AAA Batteries (4-pack),1,2.99,06/13/19 11:30,"21 Forest St, Los Angeles, CA 90001" -220395,USB-C Charging Cable,1,11.95,06/24/19 23:41,"722 13th St, Austin, TX 73301" -220396,Wired Headphones,1,11.99,06/11/19 21:26,"488 Dogwood St, Los Angeles, CA 90001" -220397,AAA Batteries (4-pack),2,2.99,06/02/19 23:26,"748 Cherry St, San Francisco, CA 94016" -220398,AA Batteries (4-pack),2,3.84,06/20/19 17:19,"402 Johnson St, Dallas, TX 75001" -220399,Apple Airpods Headphones,1,150,06/16/19 18:57,"91 South St, New York City, NY 10001" -220400,20in Monitor,1,109.99,06/25/19 18:57,"618 12th St, New York City, NY 10001" -220401,USB-C Charging Cable,1,11.95,06/11/19 04:29,"335 Willow St, San Francisco, CA 94016" -220402,Flatscreen TV,1,300,06/17/19 10:02,"444 Pine St, San Francisco, CA 94016" -220403,20in Monitor,1,109.99,06/28/19 10:05,"407 Spruce St, Boston, MA 02215" -220404,USB-C Charging Cable,1,11.95,06/11/19 09:20,"794 Cedar St, Seattle, WA 98101" -220405,USB-C Charging Cable,1,11.95,06/17/19 22:26,"488 Spruce St, Austin, TX 73301" -220406,AA Batteries (4-pack),1,3.84,06/15/19 13:21,"87 Cedar St, Los Angeles, CA 90001" -220407,Apple Airpods Headphones,1,150,06/01/19 15:11,"25 Cedar St, San Francisco, CA 94016" -220408,Lightning Charging Cable,1,14.95,06/22/19 12:43,"358 5th St, Boston, MA 02215" -220409,Lightning Charging Cable,1,14.95,06/27/19 20:56,"132 Wilson St, Los Angeles, CA 90001" -220410,AAA Batteries (4-pack),1,2.99,06/14/19 19:17,"516 Church St, Dallas, TX 75001" -220411,Bose SoundSport Headphones,1,99.99,06/02/19 12:32,"507 Highland St, Atlanta, GA 30301" -220412,Apple Airpods Headphones,1,150,06/17/19 12:41,"592 Madison St, San Francisco, CA 94016" -220413,27in FHD Monitor,1,149.99,06/13/19 12:00,"567 Chestnut St, Austin, TX 73301" -220414,Bose SoundSport Headphones,1,99.99,06/21/19 09:34,"288 Jefferson St, Boston, MA 02215" -220415,Bose SoundSport Headphones,1,99.99,06/14/19 10:59,"788 Walnut St, New York City, NY 10001" -220416,Lightning Charging Cable,1,14.95,06/01/19 18:51,"975 1st St, San Francisco, CA 94016" -220417,AAA Batteries (4-pack),1,2.99,06/27/19 10:32,"184 Park St, Boston, MA 02215" -220418,USB-C Charging Cable,1,11.95,06/28/19 10:12,"213 Lakeview St, Los Angeles, CA 90001" -220419,Macbook Pro Laptop,1,1700,06/06/19 11:12,"162 4th St, San Francisco, CA 94016" -220420,AAA Batteries (4-pack),1,2.99,06/18/19 16:14,"905 Pine St, Dallas, TX 75001" -220421,Lightning Charging Cable,1,14.95,06/09/19 18:49,"632 8th St, Seattle, WA 98101" -220422,27in 4K Gaming Monitor,1,389.99,06/19/19 20:39,"260 Dogwood St, Seattle, WA 98101" -220423,Flatscreen TV,1,300,06/23/19 12:14,"112 Hill St, Atlanta, GA 30301" -220424,AA Batteries (4-pack),1,3.84,06/25/19 12:11,"601 7th St, Atlanta, GA 30301" -220425,Apple Airpods Headphones,1,150,06/13/19 18:57,"418 Dogwood St, San Francisco, CA 94016" -220426,AA Batteries (4-pack),1,3.84,06/06/19 09:00,"417 Dogwood St, San Francisco, CA 94016" -220427,AAA Batteries (4-pack),1,2.99,06/26/19 14:11,"217 Sunset St, Dallas, TX 75001" -220428,Apple Airpods Headphones,1,150,06/18/19 19:47,"983 13th St, New York City, NY 10001" -220429,ThinkPad Laptop,1,999.99,06/18/19 17:47,"763 Washington St, San Francisco, CA 94016" -220430,ThinkPad Laptop,1,999.99,06/17/19 15:22,"997 6th St, Los Angeles, CA 90001" -220431,AA Batteries (4-pack),2,3.84,06/08/19 08:07,"518 South St, New York City, NY 10001" -220432,Wired Headphones,1,11.99,06/15/19 18:30,"45 Elm St, San Francisco, CA 94016" -220433,27in 4K Gaming Monitor,1,389.99,06/08/19 19:38,"916 7th St, Dallas, TX 75001" -220434,Wired Headphones,1,11.99,06/28/19 16:50,"891 Maple St, Boston, MA 02215" -220435,ThinkPad Laptop,1,999.99,06/18/19 20:01,"95 6th St, Los Angeles, CA 90001" -220436,AA Batteries (4-pack),1,3.84,06/23/19 17:16,"660 Meadow St, San Francisco, CA 94016" -220437,Lightning Charging Cable,1,14.95,06/21/19 11:53,"180 12th St, Boston, MA 02215" -220438,20in Monitor,1,109.99,06/07/19 08:17,"982 Chestnut St, San Francisco, CA 94016" -220439,AA Batteries (4-pack),2,3.84,06/23/19 19:03,"65 10th St, Los Angeles, CA 90001" -220440,34in Ultrawide Monitor,1,379.99,06/13/19 10:14,"845 Cedar St, Seattle, WA 98101" -220441,iPhone,1,700,06/25/19 08:36,"562 Adams St, New York City, NY 10001" -220442,Lightning Charging Cable,1,14.95,06/12/19 09:18,"885 Pine St, Seattle, WA 98101" -220443,iPhone,1,700,06/18/19 14:46,"623 Johnson St, Los Angeles, CA 90001" -220444,Vareebadd Phone,1,400,06/26/19 20:23,"666 Ridge St, New York City, NY 10001" -220445,27in FHD Monitor,1,149.99,06/29/19 12:12,"853 Lakeview St, Los Angeles, CA 90001" -220446,Bose SoundSport Headphones,1,99.99,06/29/19 18:46,"139 Pine St, San Francisco, CA 94016" -220447,ThinkPad Laptop,1,999.99,06/04/19 22:13,"647 Main St, Portland, OR 97035" -220448,Lightning Charging Cable,1,14.95,06/13/19 21:48,"640 South St, San Francisco, CA 94016" -220449,27in 4K Gaming Monitor,1,389.99,06/20/19 12:15,"580 Park St, Dallas, TX 75001" -220450,USB-C Charging Cable,1,11.95,06/16/19 10:47,"885 Dogwood St, Los Angeles, CA 90001" -220451,USB-C Charging Cable,1,11.95,06/01/19 17:23,"730 Hill St, Los Angeles, CA 90001" -220452,USB-C Charging Cable,1,11.95,06/19/19 03:59,"460 Spruce St, Boston, MA 02215" -220453,Apple Airpods Headphones,1,150,06/20/19 19:23,"425 Hickory St, Austin, TX 73301" -220454,AAA Batteries (4-pack),1,2.99,06/05/19 09:55,"864 Lincoln St, Dallas, TX 75001" -220455,Lightning Charging Cable,1,14.95,06/09/19 11:08,"259 River St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -220456,AAA Batteries (4-pack),1,2.99,06/12/19 20:46,"219 Pine St, San Francisco, CA 94016" -220457,Google Phone,1,600,06/08/19 21:05,"66 Sunset St, Los Angeles, CA 90001" -220458,Bose SoundSport Headphones,1,99.99,06/18/19 00:38,"603 River St, Atlanta, GA 30301" -220459,Lightning Charging Cable,1,14.95,06/16/19 16:49,"903 Hill St, San Francisco, CA 94016" -220460,Apple Airpods Headphones,1,150,06/01/19 10:38,"602 West St, Atlanta, GA 30301" -220461,Flatscreen TV,1,300,06/03/19 05:20,"632 1st St, San Francisco, CA 94016" -220462,Apple Airpods Headphones,1,150,06/25/19 21:11,"869 11th St, New York City, NY 10001" -220463,27in 4K Gaming Monitor,1,389.99,06/25/19 16:56,"839 Sunset St, Los Angeles, CA 90001" -220464,AAA Batteries (4-pack),2,2.99,06/07/19 19:23,"363 Lake St, Austin, TX 73301" -220465,USB-C Charging Cable,1,11.95,06/15/19 01:34,"518 Jackson St, Portland, ME 04101" -220466,iPhone,1,700,06/01/19 16:30,"233 Ridge St, Los Angeles, CA 90001" -220467,Wired Headphones,1,11.99,06/09/19 19:26,"348 Park St, San Francisco, CA 94016" -220468,ThinkPad Laptop,1,999.99,06/26/19 19:55,"487 Washington St, Seattle, WA 98101" -220469,Wired Headphones,1,11.99,06/18/19 06:16,"625 South St, Boston, MA 02215" -220470,Lightning Charging Cable,1,14.95,06/19/19 23:15,"579 2nd St, San Francisco, CA 94016" -220471,Lightning Charging Cable,1,14.95,06/26/19 16:22,"848 Park St, San Francisco, CA 94016" -220472,Bose SoundSport Headphones,1,99.99,06/18/19 14:44,"624 Dogwood St, Boston, MA 02215" -220473,USB-C Charging Cable,1,11.95,06/06/19 13:28,"315 11th St, Portland, OR 97035" -220474,Bose SoundSport Headphones,1,99.99,06/14/19 17:43,"272 North St, San Francisco, CA 94016" -220475,Lightning Charging Cable,1,14.95,06/22/19 10:13,"167 12th St, Dallas, TX 75001" -220476,Bose SoundSport Headphones,1,99.99,06/02/19 21:53,"47 Hickory St, Atlanta, GA 30301" -220477,Wired Headphones,1,11.99,06/14/19 21:35,"933 Dogwood St, Dallas, TX 75001" -220478,AAA Batteries (4-pack),3,2.99,06/20/19 21:50,"629 Dogwood St, Atlanta, GA 30301" -220479,Vareebadd Phone,1,400,06/08/19 14:05,"459 Forest St, New York City, NY 10001" -220480,AA Batteries (4-pack),2,3.84,06/03/19 03:27,"261 6th St, San Francisco, CA 94016" -220481,Lightning Charging Cable,2,14.95,06/14/19 20:43,"596 4th St, San Francisco, CA 94016" -220482,AAA Batteries (4-pack),1,2.99,06/03/19 03:04,"742 South St, New York City, NY 10001" -220483,AA Batteries (4-pack),1,3.84,06/17/19 19:46,"852 Washington St, New York City, NY 10001" -220484,Apple Airpods Headphones,1,150,06/09/19 14:36,"123 Willow St, Los Angeles, CA 90001" -220484,AAA Batteries (4-pack),2,2.99,06/09/19 14:36,"123 Willow St, Los Angeles, CA 90001" -220485,Lightning Charging Cable,1,14.95,06/17/19 17:37,"419 Johnson St, Los Angeles, CA 90001" -220486,27in FHD Monitor,1,149.99,06/30/19 14:14,"200 Center St, San Francisco, CA 94016" -220487,Apple Airpods Headphones,1,150,06/20/19 22:47,"759 Lake St, San Francisco, CA 94016" -220488,Lightning Charging Cable,1,14.95,06/04/19 17:54,"159 Church St, San Francisco, CA 94016" -220489,Bose SoundSport Headphones,1,99.99,06/19/19 09:26,"550 Hickory St, Seattle, WA 98101" -220490,Vareebadd Phone,1,400,06/03/19 21:55,"410 Jefferson St, San Francisco, CA 94016" -220491,USB-C Charging Cable,1,11.95,06/16/19 08:43,"654 8th St, New York City, NY 10001" -220492,USB-C Charging Cable,1,11.95,06/04/19 17:30,"811 Sunset St, Portland, OR 97035" -220493,USB-C Charging Cable,1,11.95,06/17/19 19:45,"299 Cedar St, San Francisco, CA 94016" -220494,Bose SoundSport Headphones,1,99.99,06/15/19 11:42,"831 5th St, San Francisco, CA 94016" -220495,ThinkPad Laptop,1,999.99,06/29/19 13:16,"613 Park St, San Francisco, CA 94016" -220496,20in Monitor,1,109.99,06/20/19 15:39,"889 Church St, Los Angeles, CA 90001" -220497,AAA Batteries (4-pack),1,2.99,06/16/19 13:48,"105 Madison St, New York City, NY 10001" -220498,Wired Headphones,1,11.99,06/13/19 06:30,"202 4th St, Boston, MA 02215" -220499,Lightning Charging Cable,1,14.95,06/12/19 06:56,"356 Maple St, Los Angeles, CA 90001" -220500,USB-C Charging Cable,1,11.95,06/05/19 18:44,"558 11th St, Los Angeles, CA 90001" -220501,AA Batteries (4-pack),1,3.84,06/08/19 19:57,"461 Wilson St, Atlanta, GA 30301" -220502,Lightning Charging Cable,2,14.95,06/12/19 19:25,"766 Spruce St, San Francisco, CA 94016" -220503,AA Batteries (4-pack),3,3.84,06/27/19 12:09,"907 Spruce St, Dallas, TX 75001" -220504,Bose SoundSport Headphones,1,99.99,06/04/19 12:00,"514 Park St, San Francisco, CA 94016" -220505,27in 4K Gaming Monitor,1,389.99,06/21/19 17:25,"650 12th St, Seattle, WA 98101" -220506,AAA Batteries (4-pack),1,2.99,06/04/19 00:22,"267 8th St, Los Angeles, CA 90001" -220507,USB-C Charging Cable,1,11.95,06/06/19 17:45,"686 Elm St, Boston, MA 02215" -220508,Flatscreen TV,1,300,06/14/19 12:41,"437 10th St, Boston, MA 02215" -220509,Lightning Charging Cable,2,14.95,06/25/19 10:26,"103 11th St, Portland, OR 97035" -220510,USB-C Charging Cable,1,11.95,06/27/19 16:20,"197 11th St, San Francisco, CA 94016" -220511,AA Batteries (4-pack),1,3.84,06/18/19 17:50,"833 Cedar St, Los Angeles, CA 90001" -220512,Lightning Charging Cable,1,14.95,06/27/19 19:19,"961 7th St, Los Angeles, CA 90001" -220513,Bose SoundSport Headphones,1,99.99,06/22/19 21:18,"947 Walnut St, Atlanta, GA 30301" -220514,AA Batteries (4-pack),1,3.84,06/23/19 15:55,"271 Madison St, Los Angeles, CA 90001" -220515,Wired Headphones,1,11.99,06/29/19 19:16,"296 Sunset St, Portland, OR 97035" -220516,27in FHD Monitor,1,149.99,06/12/19 20:49,"730 North St, San Francisco, CA 94016" -220517,iPhone,1,700,06/06/19 06:57,"592 Center St, San Francisco, CA 94016" -220518,AAA Batteries (4-pack),2,2.99,06/12/19 15:36,"265 Lake St, Boston, MA 02215" -220519,AA Batteries (4-pack),2,3.84,06/09/19 11:19,"172 2nd St, New York City, NY 10001" -220520,AA Batteries (4-pack),1,3.84,06/02/19 12:03,"244 Madison St, San Francisco, CA 94016" -220521,Apple Airpods Headphones,1,150,06/01/19 10:59,"482 9th St, New York City, NY 10001" -220522,27in 4K Gaming Monitor,1,389.99,06/03/19 15:54,"689 12th St, Atlanta, GA 30301" -220523,Apple Airpods Headphones,1,150,06/29/19 22:40,"902 Cedar St, Los Angeles, CA 90001" -220524,AA Batteries (4-pack),1,3.84,06/04/19 17:26,"670 10th St, Atlanta, GA 30301" -220525,iPhone,1,700,06/17/19 13:58,"814 9th St, Dallas, TX 75001" -220526,iPhone,1,700,06/01/19 16:23,"814 6th St, Los Angeles, CA 90001" -220526,Apple Airpods Headphones,1,150,06/01/19 16:23,"814 6th St, Los Angeles, CA 90001" -220527,AAA Batteries (4-pack),1,2.99,06/29/19 17:59,"410 Cherry St, Boston, MA 02215" -220528,Wired Headphones,1,11.99,06/10/19 11:26,"745 Forest St, San Francisco, CA 94016" -220529,USB-C Charging Cable,1,11.95,06/19/19 12:00,"936 Adams St, Dallas, TX 75001" -220530,AA Batteries (4-pack),4,3.84,06/03/19 08:28,"913 Spruce St, Los Angeles, CA 90001" -220531,27in FHD Monitor,1,149.99,06/13/19 19:14,"792 Lake St, Boston, MA 02215" -220532,Bose SoundSport Headphones,1,99.99,06/09/19 15:10,"688 Dogwood St, San Francisco, CA 94016" -220533,AA Batteries (4-pack),1,3.84,06/27/19 19:19,"539 Wilson St, New York City, NY 10001" -220534,Wired Headphones,1,11.99,06/20/19 18:56,"224 Center St, Seattle, WA 98101" -220535,ThinkPad Laptop,1,999.99,06/22/19 22:26,"901 Main St, New York City, NY 10001" -220536,Bose SoundSport Headphones,1,99.99,06/14/19 16:06,"484 Meadow St, Atlanta, GA 30301" -220537,Wired Headphones,1,11.99,06/09/19 00:00,"356 8th St, San Francisco, CA 94016" -220538,27in 4K Gaming Monitor,1,389.99,06/26/19 16:47,"86 Highland St, New York City, NY 10001" -220539,Wired Headphones,1,11.99,06/02/19 17:03,"552 Johnson St, Los Angeles, CA 90001" -220540,Lightning Charging Cable,1,14.95,06/26/19 07:45,"15 Ridge St, San Francisco, CA 94016" -220541,Lightning Charging Cable,1,14.95,06/12/19 14:41,"400 8th St, San Francisco, CA 94016" -220542,Lightning Charging Cable,2,14.95,06/21/19 17:44,"8 Spruce St, Los Angeles, CA 90001" -220543,AAA Batteries (4-pack),1,2.99,06/28/19 17:58,"387 Adams St, Los Angeles, CA 90001" -220544,Wired Headphones,1,11.99,06/20/19 11:54,"967 Center St, Portland, OR 97035" -220545,USB-C Charging Cable,1,11.95,06/11/19 09:15,"675 Elm St, Seattle, WA 98101" -220546,Apple Airpods Headphones,1,150,06/02/19 17:16,"382 Lakeview St, Atlanta, GA 30301" -220547,Google Phone,1,600,06/06/19 17:33,"650 Jackson St, San Francisco, CA 94016" -220548,Apple Airpods Headphones,1,150,06/10/19 20:47,"844 Lincoln St, San Francisco, CA 94016" -220549,Macbook Pro Laptop,1,1700,06/09/19 20:56,"209 Main St, Seattle, WA 98101" -220550,LG Dryer,1,600.0,06/17/19 16:55,"281 Church St, Boston, MA 02215" -220551,USB-C Charging Cable,1,11.95,06/05/19 18:18,"868 Washington St, Los Angeles, CA 90001" -220552,USB-C Charging Cable,2,11.95,06/04/19 10:47,"186 Hickory St, San Francisco, CA 94016" -220553,AAA Batteries (4-pack),1,2.99,06/01/19 08:26,"79 14th St, Boston, MA 02215" -220554,Bose SoundSport Headphones,1,99.99,06/26/19 14:47,"726 Meadow St, San Francisco, CA 94016" -220555,Wired Headphones,2,11.99,06/02/19 16:44,"95 Cedar St, Portland, OR 97035" -220556,Bose SoundSport Headphones,1,99.99,06/13/19 12:56,"710 South St, San Francisco, CA 94016" -220556,Lightning Charging Cable,1,14.95,06/13/19 12:56,"710 South St, San Francisco, CA 94016" -220557,AA Batteries (4-pack),2,3.84,06/16/19 16:45,"813 Washington St, San Francisco, CA 94016" -220558,Wired Headphones,1,11.99,06/15/19 09:35,"499 1st St, Atlanta, GA 30301" -220559,USB-C Charging Cable,1,11.95,06/08/19 17:12,"933 Jefferson St, San Francisco, CA 94016" -220560,Lightning Charging Cable,1,14.95,06/19/19 00:39,"993 Hill St, Portland, OR 97035" -220561,Bose SoundSport Headphones,1,99.99,06/26/19 14:51,"371 4th St, Los Angeles, CA 90001" -220562,Wired Headphones,1,11.99,06/12/19 20:50,"724 Center St, San Francisco, CA 94016" -220563,USB-C Charging Cable,1,11.95,06/07/19 16:54,"337 South St, San Francisco, CA 94016" -220564,USB-C Charging Cable,1,11.95,06/26/19 17:38,"588 Johnson St, Dallas, TX 75001" -220565,Lightning Charging Cable,1,14.95,06/22/19 08:01,"921 Washington St, Austin, TX 73301" -220566,Wired Headphones,1,11.99,06/27/19 19:23,"166 Dogwood St, Portland, OR 97035" -220567,34in Ultrawide Monitor,1,379.99,06/16/19 11:41,"950 Center St, Austin, TX 73301" -220568,Apple Airpods Headphones,1,150,06/22/19 08:27,"99 8th St, San Francisco, CA 94016" -220569,Wired Headphones,1,11.99,06/27/19 19:16,"928 Johnson St, Atlanta, GA 30301" -220570,27in FHD Monitor,1,149.99,06/20/19 14:11,"898 Lakeview St, San Francisco, CA 94016" -220571,Apple Airpods Headphones,1,150,06/03/19 21:22,"924 Adams St, Atlanta, GA 30301" -220572,AAA Batteries (4-pack),1,2.99,06/24/19 00:43,"96 Dogwood St, San Francisco, CA 94016" -220573,Wired Headphones,1,11.99,06/20/19 13:45,"538 Cedar St, San Francisco, CA 94016" -220574,Bose SoundSport Headphones,1,99.99,06/19/19 17:29,"26 Sunset St, San Francisco, CA 94016" -220575,Flatscreen TV,1,300,06/20/19 22:59,"799 7th St, Boston, MA 02215" -220576,Wired Headphones,2,11.99,06/02/19 10:27,"250 8th St, Los Angeles, CA 90001" -220577,AAA Batteries (4-pack),3,2.99,06/05/19 11:31,"140 7th St, New York City, NY 10001" -220578,AA Batteries (4-pack),2,3.84,06/18/19 15:05,"463 Willow St, Los Angeles, CA 90001" -220579,AAA Batteries (4-pack),1,2.99,06/27/19 16:01,"21 6th St, Los Angeles, CA 90001" -220580,Lightning Charging Cable,1,14.95,06/23/19 15:54,"553 Park St, San Francisco, CA 94016" -220581,AA Batteries (4-pack),1,3.84,06/19/19 11:29,"149 Washington St, San Francisco, CA 94016" -220582,Flatscreen TV,1,300,06/07/19 13:53,"311 Chestnut St, San Francisco, CA 94016" -220583,Macbook Pro Laptop,1,1700,06/29/19 19:27,"737 South St, New York City, NY 10001" -220584,Lightning Charging Cable,1,14.95,06/25/19 09:44,"13 Willow St, Atlanta, GA 30301" -220585,Apple Airpods Headphones,1,150,06/01/19 05:16,"158 Dogwood St, New York City, NY 10001" -220586,Wired Headphones,1,11.99,06/04/19 16:19,"921 Lake St, Seattle, WA 98101" -220587,Apple Airpods Headphones,1,150,06/03/19 21:47,"265 9th St, Portland, OR 97035" -220588,Apple Airpods Headphones,1,150,06/01/19 17:50,"671 5th St, Dallas, TX 75001" -220589,USB-C Charging Cable,1,11.95,06/27/19 18:06,"317 7th St, San Francisco, CA 94016" -220590,Apple Airpods Headphones,1,150,06/08/19 19:25,"117 10th St, Los Angeles, CA 90001" -220591,27in 4K Gaming Monitor,1,389.99,06/03/19 17:08,"84 Forest St, San Francisco, CA 94016" -220592,34in Ultrawide Monitor,1,379.99,06/08/19 11:43,"513 Main St, San Francisco, CA 94016" -220593,27in 4K Gaming Monitor,1,389.99,06/13/19 16:38,"25 Main St, San Francisco, CA 94016" -220594,Lightning Charging Cable,1,14.95,06/06/19 18:28,"50 Park St, Los Angeles, CA 90001" -220595,Macbook Pro Laptop,1,1700,06/03/19 06:49,"114 Pine St, Portland, OR 97035" -220596,Google Phone,1,600,06/13/19 22:35,"178 Church St, Dallas, TX 75001" -220597,AA Batteries (4-pack),1,3.84,06/11/19 07:52,"176 Hickory St, Portland, ME 04101" -220598,AAA Batteries (4-pack),1,2.99,06/01/19 18:37,"136 14th St, San Francisco, CA 94016" -220599,Wired Headphones,1,11.99,06/07/19 20:19,"882 Dogwood St, Seattle, WA 98101" -220600,27in 4K Gaming Monitor,1,389.99,06/08/19 23:20,"277 Jefferson St, Los Angeles, CA 90001" -220601,Bose SoundSport Headphones,1,99.99,06/21/19 00:13,"418 Madison St, Dallas, TX 75001" -220602,27in FHD Monitor,1,149.99,06/06/19 21:36,"755 Spruce St, San Francisco, CA 94016" -220603,USB-C Charging Cable,1,11.95,06/22/19 17:39,"677 Pine St, Boston, MA 02215" -220604,USB-C Charging Cable,1,11.95,06/21/19 17:55,"289 13th St, San Francisco, CA 94016" -220605,AA Batteries (4-pack),1,3.84,06/27/19 03:31,"994 South St, New York City, NY 10001" -220606,USB-C Charging Cable,1,11.95,06/22/19 10:29,"481 5th St, San Francisco, CA 94016" -220607,Lightning Charging Cable,1,14.95,06/01/19 16:25,"397 Hickory St, San Francisco, CA 94016" -220608,Lightning Charging Cable,1,14.95,06/24/19 18:31,"513 12th St, San Francisco, CA 94016" -220609,AAA Batteries (4-pack),1,2.99,06/19/19 05:41,"548 Madison St, New York City, NY 10001" -220610,Apple Airpods Headphones,1,150,06/17/19 13:31,"866 Adams St, New York City, NY 10001" -220611,Wired Headphones,1,11.99,06/07/19 12:44,"746 Lakeview St, Los Angeles, CA 90001" -220612,Bose SoundSport Headphones,1,99.99,06/22/19 16:23,"477 Adams St, San Francisco, CA 94016" -220613,Vareebadd Phone,1,400,06/28/19 08:29,"150 Ridge St, Dallas, TX 75001" -220614,AA Batteries (4-pack),2,3.84,06/13/19 13:33,"579 Cherry St, Los Angeles, CA 90001" -220615,AAA Batteries (4-pack),1,2.99,06/13/19 12:20,"528 Willow St, Los Angeles, CA 90001" -220616,Wired Headphones,1,11.99,06/19/19 10:45,"186 11th St, Portland, OR 97035" -220617,AAA Batteries (4-pack),1,2.99,06/28/19 21:19,"46 Hickory St, Boston, MA 02215" -220618,Apple Airpods Headphones,2,150,06/22/19 13:13,"664 Willow St, San Francisco, CA 94016" -220619,AA Batteries (4-pack),1,3.84,06/14/19 12:00,"718 Ridge St, Dallas, TX 75001" -220620,27in FHD Monitor,1,149.99,06/15/19 13:36,"671 Elm St, San Francisco, CA 94016" -220621,Bose SoundSport Headphones,1,99.99,06/07/19 18:30,"776 10th St, San Francisco, CA 94016" -220622,Wired Headphones,1,11.99,06/19/19 15:29,"972 South St, Los Angeles, CA 90001" -220623,AA Batteries (4-pack),1,3.84,06/30/19 23:12,"793 8th St, San Francisco, CA 94016" -220624,Lightning Charging Cable,1,14.95,06/23/19 16:32,"762 11th St, Los Angeles, CA 90001" -220625,USB-C Charging Cable,1,11.95,06/07/19 09:04,"475 Maple St, Seattle, WA 98101" -220626,27in FHD Monitor,1,149.99,06/06/19 05:09,"109 Spruce St, Atlanta, GA 30301" -220627,Flatscreen TV,1,300,06/11/19 12:59,"825 Walnut St, Los Angeles, CA 90001" -220628,AAA Batteries (4-pack),1,2.99,06/14/19 15:53,"623 14th St, San Francisco, CA 94016" -220629,AAA Batteries (4-pack),3,2.99,06/11/19 18:44,"13 2nd St, Portland, OR 97035" -220630,Apple Airpods Headphones,1,150,06/26/19 21:46,"630 Pine St, New York City, NY 10001" -220631,AA Batteries (4-pack),1,3.84,06/09/19 23:49,"365 Hill St, San Francisco, CA 94016" -220632,27in 4K Gaming Monitor,1,389.99,06/18/19 19:21,"252 6th St, Los Angeles, CA 90001" -220633,Vareebadd Phone,1,400,06/28/19 09:11,"608 12th St, San Francisco, CA 94016" -220634,USB-C Charging Cable,1,11.95,06/07/19 18:04,"347 14th St, San Francisco, CA 94016" -220635,USB-C Charging Cable,1,11.95,06/05/19 09:15,"578 2nd St, Boston, MA 02215" -220636,Lightning Charging Cable,1,14.95,06/05/19 09:20,"159 Jefferson St, Atlanta, GA 30301" -220637,Lightning Charging Cable,2,14.95,06/10/19 09:54,"980 7th St, Atlanta, GA 30301" -220638,Wired Headphones,2,11.99,06/17/19 22:28,"420 Walnut St, Austin, TX 73301" -220639,Apple Airpods Headphones,1,150,06/06/19 10:14,"356 South St, San Francisco, CA 94016" -220640,AAA Batteries (4-pack),1,2.99,06/17/19 10:11,"788 9th St, New York City, NY 10001" -220641,34in Ultrawide Monitor,1,379.99,06/27/19 20:51,"657 Hickory St, San Francisco, CA 94016" -220642,AA Batteries (4-pack),1,3.84,06/11/19 17:35,"485 Sunset St, Los Angeles, CA 90001" -220643,34in Ultrawide Monitor,1,379.99,06/30/19 11:37,"60 North St, Los Angeles, CA 90001" -220644,AAA Batteries (4-pack),2,2.99,06/22/19 21:19,"142 Sunset St, Portland, OR 97035" -220645,AA Batteries (4-pack),2,3.84,06/05/19 11:40,"822 4th St, Los Angeles, CA 90001" -220646,Apple Airpods Headphones,1,150,06/22/19 08:51,"440 Hill St, San Francisco, CA 94016" -220647,Macbook Pro Laptop,1,1700,06/01/19 13:11,"832 14th St, Austin, TX 73301" -220648,Bose SoundSport Headphones,1,99.99,06/13/19 20:31,"262 Church St, Seattle, WA 98101" -220649,LG Washing Machine,1,600.0,06/19/19 12:11,"490 Adams St, New York City, NY 10001" -220650,USB-C Charging Cable,1,11.95,06/15/19 10:12,"906 River St, Dallas, TX 75001" -220651,Wired Headphones,1,11.99,06/25/19 20:01,"204 11th St, San Francisco, CA 94016" -220652,USB-C Charging Cable,1,11.95,06/26/19 19:48,"5 River St, Portland, OR 97035" -220653,AA Batteries (4-pack),1,3.84,06/18/19 11:01,"111 Center St, San Francisco, CA 94016" -220654,AAA Batteries (4-pack),1,2.99,06/16/19 14:03,"399 13th St, San Francisco, CA 94016" -220655,Bose SoundSport Headphones,1,99.99,06/30/19 22:26,"889 14th St, Boston, MA 02215" -220656,Wired Headphones,1,11.99,06/30/19 16:19,"418 Church St, Dallas, TX 75001" -220657,AAA Batteries (4-pack),1,2.99,06/17/19 15:04,"765 Chestnut St, San Francisco, CA 94016" -220658,Vareebadd Phone,1,400,06/01/19 16:59,"116 Lakeview St, Dallas, TX 75001" -220659,Apple Airpods Headphones,1,150,06/11/19 09:24,"730 4th St, Atlanta, GA 30301" -220660,USB-C Charging Cable,1,11.95,06/20/19 10:32,"53 5th St, Seattle, WA 98101" -220661,USB-C Charging Cable,1,11.95,06/15/19 06:32,"765 Sunset St, Portland, OR 97035" -220662,27in FHD Monitor,1,149.99,06/11/19 10:28,"481 Washington St, New York City, NY 10001" -220663,Wired Headphones,1,11.99,06/08/19 09:31,"360 West St, Los Angeles, CA 90001" -220664,Google Phone,1,600,06/20/19 11:04,"138 Chestnut St, Portland, OR 97035" -220665,Google Phone,1,600,06/10/19 10:53,"2 7th St, Atlanta, GA 30301" -220666,Bose SoundSport Headphones,1,99.99,06/17/19 17:38,"342 Meadow St, San Francisco, CA 94016" -220667,USB-C Charging Cable,1,11.95,06/03/19 15:23,"514 Park St, Atlanta, GA 30301" -220668,USB-C Charging Cable,2,11.95,06/17/19 00:01,"120 4th St, Boston, MA 02215" -220669,Wired Headphones,1,11.99,06/30/19 07:32,"693 Adams St, New York City, NY 10001" -220670,34in Ultrawide Monitor,1,379.99,06/15/19 20:26,"17 Lakeview St, New York City, NY 10001" -220671,AA Batteries (4-pack),1,3.84,06/13/19 02:50,"788 Main St, Los Angeles, CA 90001" -220672,Lightning Charging Cable,1,14.95,06/21/19 15:13,"163 2nd St, Portland, ME 04101" -220673,USB-C Charging Cable,1,11.95,06/17/19 19:33,"878 Forest St, San Francisco, CA 94016" -220674,Bose SoundSport Headphones,1,99.99,06/12/19 10:06,"372 Lake St, Atlanta, GA 30301" -220675,Flatscreen TV,1,300,06/24/19 12:22,"884 11th St, Portland, OR 97035" -220676,AA Batteries (4-pack),2,3.84,06/18/19 16:42,"619 Walnut St, Seattle, WA 98101" -220677,27in 4K Gaming Monitor,1,389.99,06/17/19 12:50,"644 Cedar St, Los Angeles, CA 90001" -220678,iPhone,1,700,06/25/19 13:06,"848 Chestnut St, Los Angeles, CA 90001" -220678,Wired Headphones,1,11.99,06/25/19 13:06,"848 Chestnut St, Los Angeles, CA 90001" -220679,27in FHD Monitor,1,149.99,06/13/19 20:37,"727 11th St, Los Angeles, CA 90001" -220680,Lightning Charging Cable,1,14.95,06/04/19 15:35,"659 2nd St, Portland, ME 04101" -220681,iPhone,1,700,06/25/19 11:22,"70 Hickory St, New York City, NY 10001" -220682,20in Monitor,1,109.99,06/21/19 07:04,"710 8th St, New York City, NY 10001" -220683,Bose SoundSport Headphones,1,99.99,06/08/19 13:39,"433 7th St, New York City, NY 10001" -220684,Flatscreen TV,1,300,06/30/19 18:39,"264 Johnson St, Atlanta, GA 30301" -220685,Lightning Charging Cable,1,14.95,06/02/19 12:13,"659 Jefferson St, Seattle, WA 98101" -220686,USB-C Charging Cable,1,11.95,06/24/19 22:03,"754 7th St, San Francisco, CA 94016" -220687,USB-C Charging Cable,1,11.95,06/21/19 19:33,"36 Walnut St, Atlanta, GA 30301" -220688,Bose SoundSport Headphones,1,99.99,06/12/19 12:34,"145 Walnut St, San Francisco, CA 94016" -220689,USB-C Charging Cable,1,11.95,06/20/19 21:19,"651 Maple St, Los Angeles, CA 90001" -220690,USB-C Charging Cable,1,11.95,06/23/19 19:30,"414 Church St, San Francisco, CA 94016" -220691,Wired Headphones,1,11.99,06/17/19 16:52,"578 Lake St, San Francisco, CA 94016" -220692,34in Ultrawide Monitor,1,379.99,06/27/19 12:57,"169 4th St, Boston, MA 02215" -220693,AAA Batteries (4-pack),1,2.99,06/04/19 20:03,"266 Maple St, San Francisco, CA 94016" -220694,Wired Headphones,1,11.99,06/08/19 12:41,"572 8th St, San Francisco, CA 94016" -220695,20in Monitor,1,109.99,06/27/19 08:51,"945 9th St, Los Angeles, CA 90001" -220696,20in Monitor,1,109.99,06/06/19 13:33,"414 5th St, Dallas, TX 75001" -220697,20in Monitor,1,109.99,06/29/19 06:41,"840 Chestnut St, Los Angeles, CA 90001" -220698,AAA Batteries (4-pack),1,2.99,06/16/19 14:48,"779 Walnut St, San Francisco, CA 94016" -220699,27in 4K Gaming Monitor,1,389.99,06/10/19 17:30,"771 Wilson St, Los Angeles, CA 90001" -220700,Wired Headphones,1,11.99,06/28/19 00:42,"497 Chestnut St, Portland, OR 97035" -220701,USB-C Charging Cable,1,11.95,06/18/19 16:45,"424 Cedar St, Los Angeles, CA 90001" -220702,AA Batteries (4-pack),1,3.84,06/23/19 09:44,"468 South St, New York City, NY 10001" -220703,AAA Batteries (4-pack),3,2.99,06/18/19 18:29,"969 8th St, Seattle, WA 98101" -220704,AA Batteries (4-pack),2,3.84,06/06/19 21:39,"617 Lake St, Boston, MA 02215" -220705,AA Batteries (4-pack),1,3.84,06/05/19 19:29,"947 5th St, New York City, NY 10001" -220706,34in Ultrawide Monitor,1,379.99,06/08/19 19:57,"146 Cherry St, Portland, OR 97035" -220707,Bose SoundSport Headphones,1,99.99,06/26/19 02:33,"446 Jackson St, Los Angeles, CA 90001" -220708,USB-C Charging Cable,1,11.95,06/08/19 12:57,"479 Ridge St, Boston, MA 02215" -220709,Macbook Pro Laptop,1,1700,06/14/19 19:43,"187 North St, San Francisco, CA 94016" -220710,USB-C Charging Cable,1,11.95,06/21/19 08:15,"41 Cherry St, Portland, OR 97035" -220711,Wired Headphones,1,11.99,06/12/19 23:47,"144 North St, Boston, MA 02215" -220712,Apple Airpods Headphones,1,150,06/03/19 21:29,"385 Highland St, Los Angeles, CA 90001" -220713,34in Ultrawide Monitor,1,379.99,06/14/19 15:57,"566 Center St, San Francisco, CA 94016" -220714,Apple Airpods Headphones,1,150,06/11/19 13:23,"223 Park St, San Francisco, CA 94016" -220715,Wired Headphones,1,11.99,06/05/19 23:40,"967 Center St, San Francisco, CA 94016" -220716,27in 4K Gaming Monitor,1,389.99,06/24/19 20:15,"3 13th St, New York City, NY 10001" -220717,Wired Headphones,1,11.99,06/15/19 08:07,"569 Church St, Los Angeles, CA 90001" -220718,iPhone,1,700,06/25/19 10:11,"187 8th St, New York City, NY 10001" -220719,Macbook Pro Laptop,1,1700,06/23/19 11:44,"869 Church St, Dallas, TX 75001" -220720,Flatscreen TV,1,300,06/04/19 07:37,"569 Chestnut St, San Francisco, CA 94016" -220721,27in 4K Gaming Monitor,1,389.99,06/01/19 18:49,"754 Jefferson St, Austin, TX 73301" -220722,iPhone,1,700,06/16/19 19:21,"246 1st St, Los Angeles, CA 90001" -220723,Wired Headphones,1,11.99,06/11/19 20:59,"410 Highland St, New York City, NY 10001" -220724,USB-C Charging Cable,2,11.95,06/17/19 11:51,"36 6th St, Boston, MA 02215" -220725,AA Batteries (4-pack),2,3.84,06/05/19 21:00,"741 Johnson St, New York City, NY 10001" -220726,27in FHD Monitor,1,149.99,06/15/19 13:22,"106 Sunset St, Boston, MA 02215" -220727,AAA Batteries (4-pack),1,2.99,06/06/19 12:00,"687 Church St, Austin, TX 73301" -220728,Wired Headphones,2,11.99,06/20/19 10:47,"405 2nd St, New York City, NY 10001" -220729,Bose SoundSport Headphones,1,99.99,06/18/19 19:44,"975 9th St, Los Angeles, CA 90001" -220730,Wired Headphones,1,11.99,06/13/19 18:05,"150 Jackson St, Atlanta, GA 30301" -220731,Bose SoundSport Headphones,1,99.99,06/02/19 12:57,"722 8th St, New York City, NY 10001" -220732,Macbook Pro Laptop,1,1700,06/05/19 21:10,"80 Meadow St, Los Angeles, CA 90001" -220733,Lightning Charging Cable,1,14.95,06/30/19 10:54,"979 10th St, San Francisco, CA 94016" -220734,27in FHD Monitor,1,149.99,06/21/19 08:36,"484 Meadow St, San Francisco, CA 94016" -220735,Lightning Charging Cable,1,14.95,06/19/19 13:02,"485 Madison St, New York City, NY 10001" -220736,USB-C Charging Cable,1,11.95,06/30/19 10:40,"67 Meadow St, San Francisco, CA 94016" -220737,Macbook Pro Laptop,1,1700,06/09/19 13:34,"392 Madison St, Los Angeles, CA 90001" -220738,AAA Batteries (4-pack),1,2.99,06/26/19 19:29,"307 Johnson St, Atlanta, GA 30301" -220739,AAA Batteries (4-pack),2,2.99,06/09/19 12:06,"371 Lakeview St, Los Angeles, CA 90001" -220740,27in 4K Gaming Monitor,1,389.99,06/10/19 20:02,"315 Adams St, Seattle, WA 98101" -220741,USB-C Charging Cable,1,11.95,06/17/19 13:45,"620 Hill St, Austin, TX 73301" -220742,AAA Batteries (4-pack),1,2.99,06/04/19 18:55,"222 7th St, Boston, MA 02215" -220743,AA Batteries (4-pack),1,3.84,06/20/19 22:15,"988 5th St, Los Angeles, CA 90001" -220744,Apple Airpods Headphones,1,150,06/19/19 16:37,"968 13th St, Atlanta, GA 30301" -220745,27in FHD Monitor,1,149.99,06/19/19 21:04,"856 Johnson St, Los Angeles, CA 90001" -220746,Lightning Charging Cable,1,14.95,06/29/19 15:09,"580 Meadow St, Austin, TX 73301" -220747,AA Batteries (4-pack),1,3.84,06/01/19 12:00,"955 Jefferson St, San Francisco, CA 94016" -220748,27in 4K Gaming Monitor,1,389.99,06/20/19 02:23,"642 Ridge St, San Francisco, CA 94016" -220749,34in Ultrawide Monitor,1,379.99,06/27/19 11:12,"966 Wilson St, New York City, NY 10001" -220750,AAA Batteries (4-pack),2,2.99,06/16/19 20:39,"317 Chestnut St, Seattle, WA 98101" -220751,Bose SoundSport Headphones,1,99.99,06/06/19 18:36,"832 12th St, New York City, NY 10001" -220752,Wired Headphones,1,11.99,06/01/19 13:09,"260 Ridge St, Portland, OR 97035" -220753,Wired Headphones,1,11.99,06/04/19 18:34,"266 Madison St, Los Angeles, CA 90001" -220754,Flatscreen TV,1,300,06/10/19 20:01,"757 5th St, Los Angeles, CA 90001" -220755,USB-C Charging Cable,1,11.95,06/24/19 13:23,"656 Lake St, Los Angeles, CA 90001" -220756,Bose SoundSport Headphones,1,99.99,06/05/19 15:47,"792 Walnut St, Seattle, WA 98101" -220757,20in Monitor,1,109.99,06/21/19 17:52,"358 Cedar St, Dallas, TX 75001" -220758,AAA Batteries (4-pack),1,2.99,06/27/19 14:27,"666 Church St, Seattle, WA 98101" -220759,USB-C Charging Cable,1,11.95,06/07/19 20:46,"143 Jackson St, Los Angeles, CA 90001" -220760,AA Batteries (4-pack),1,3.84,06/28/19 09:37,"925 Cherry St, Los Angeles, CA 90001" -220761,Apple Airpods Headphones,1,150,06/16/19 19:44,"549 Meadow St, Portland, OR 97035" -220762,34in Ultrawide Monitor,1,379.99,06/08/19 20:57,"331 Highland St, Boston, MA 02215" -220763,Apple Airpods Headphones,1,150,06/06/19 08:48,"376 Johnson St, Dallas, TX 75001" -220764,AA Batteries (4-pack),1,3.84,06/25/19 10:22,"675 Hickory St, San Francisco, CA 94016" -220764,Apple Airpods Headphones,1,150,06/25/19 10:22,"675 Hickory St, San Francisco, CA 94016" -220765,USB-C Charging Cable,1,11.95,06/12/19 11:40,"860 5th St, Seattle, WA 98101" -220766,AAA Batteries (4-pack),1,2.99,06/29/19 12:31,"418 River St, San Francisco, CA 94016" -220767,Bose SoundSport Headphones,1,99.99,06/21/19 15:22,"330 Meadow St, Dallas, TX 75001" -220768,Wired Headphones,1,11.99,06/19/19 12:26,"899 1st St, Los Angeles, CA 90001" -220769,20in Monitor,1,109.99,06/16/19 09:29,"353 Meadow St, Los Angeles, CA 90001" -220770,Wired Headphones,1,11.99,06/26/19 21:08,"307 Chestnut St, San Francisco, CA 94016" -220771,AA Batteries (4-pack),1,3.84,06/27/19 18:51,"938 Pine St, Los Angeles, CA 90001" -220772,34in Ultrawide Monitor,1,379.99,06/05/19 16:06,"103 Washington St, Los Angeles, CA 90001" -220773,Wired Headphones,2,11.99,06/19/19 13:29,"862 Lincoln St, Dallas, TX 75001" -220774,27in FHD Monitor,1,149.99,06/24/19 06:49,"588 Walnut St, San Francisco, CA 94016" -220775,20in Monitor,1,109.99,06/04/19 16:00,"994 Main St, Austin, TX 73301" -220776,Apple Airpods Headphones,1,150,06/20/19 11:44,"991 Lake St, Los Angeles, CA 90001" -220777,27in 4K Gaming Monitor,1,389.99,06/13/19 13:10,"444 4th St, New York City, NY 10001" -220778,AA Batteries (4-pack),1,3.84,06/10/19 21:22,"749 Wilson St, New York City, NY 10001" -220779,AAA Batteries (4-pack),2,2.99,06/04/19 10:14,"683 Jefferson St, Los Angeles, CA 90001" -220779,Bose SoundSport Headphones,1,99.99,06/04/19 10:14,"683 Jefferson St, Los Angeles, CA 90001" -220780,AAA Batteries (4-pack),2,2.99,06/26/19 10:34,"520 Maple St, San Francisco, CA 94016" -220781,Lightning Charging Cable,1,14.95,06/15/19 23:02,"598 Chestnut St, Boston, MA 02215" -220782,Lightning Charging Cable,1,14.95,06/27/19 19:37,"69 Dogwood St, Dallas, TX 75001" -220783,Flatscreen TV,1,300,06/14/19 15:22,"531 13th St, Los Angeles, CA 90001" -220784,USB-C Charging Cable,1,11.95,06/11/19 20:28,"49 Forest St, Seattle, WA 98101" -220785,Lightning Charging Cable,1,14.95,06/02/19 16:58,"624 12th St, San Francisco, CA 94016" -220786,20in Monitor,1,109.99,06/28/19 13:43,"930 14th St, Austin, TX 73301" -220787,27in FHD Monitor,1,149.99,06/09/19 12:57,"683 Park St, Dallas, TX 75001" -220788,Bose SoundSport Headphones,1,99.99,06/02/19 09:48,"188 Lakeview St, New York City, NY 10001" -220789,Bose SoundSport Headphones,1,99.99,06/10/19 06:52,"449 Park St, San Francisco, CA 94016" -220790,iPhone,1,700,06/14/19 10:42,"953 8th St, San Francisco, CA 94016" -220791,34in Ultrawide Monitor,1,379.99,06/01/19 10:01,"964 Cherry St, Los Angeles, CA 90001" -220792,Google Phone,1,600,06/01/19 10:01,"381 7th St, Dallas, TX 75001" -220792,Bose SoundSport Headphones,1,99.99,06/01/19 10:01,"381 7th St, Dallas, TX 75001" -220793,AAA Batteries (4-pack),1,2.99,06/25/19 13:09,"929 Elm St, Austin, TX 73301" -220794,AAA Batteries (4-pack),1,2.99,06/15/19 12:59,"200 Ridge St, Dallas, TX 75001" -220795,iPhone,1,700,06/08/19 22:47,"687 Pine St, Portland, OR 97035" -220795,Lightning Charging Cable,1,14.95,06/08/19 22:47,"687 Pine St, Portland, OR 97035" -220796,Lightning Charging Cable,1,14.95,06/07/19 12:39,"943 13th St, San Francisco, CA 94016" -220797,Lightning Charging Cable,2,14.95,06/21/19 13:07,"282 10th St, San Francisco, CA 94016" -220798,AA Batteries (4-pack),1,3.84,06/18/19 10:35,"936 Maple St, Seattle, WA 98101" -220799,Lightning Charging Cable,1,14.95,06/10/19 21:05,"532 Hill St, Los Angeles, CA 90001" -220800,USB-C Charging Cable,1,11.95,06/23/19 06:56,"599 13th St, San Francisco, CA 94016" -220801,Bose SoundSport Headphones,1,99.99,06/09/19 09:51,"680 6th St, San Francisco, CA 94016" -220802,AAA Batteries (4-pack),1,2.99,06/03/19 16:55,"621 7th St, Portland, OR 97035" -220803,Apple Airpods Headphones,1,150,06/27/19 19:46,"367 Elm St, San Francisco, CA 94016" -220804,Lightning Charging Cable,1,14.95,06/23/19 22:06,"547 7th St, New York City, NY 10001" -220805,AAA Batteries (4-pack),3,2.99,06/02/19 17:30,"597 4th St, Los Angeles, CA 90001" -220806,Flatscreen TV,1,300,06/14/19 06:48,"653 West St, San Francisco, CA 94016" -220807,USB-C Charging Cable,1,11.95,06/17/19 15:20,"396 Maple St, Seattle, WA 98101" -220808,Apple Airpods Headphones,1,150,06/26/19 00:21,"79 Elm St, Boston, MA 02215" -220809,Apple Airpods Headphones,1,150,06/25/19 00:19,"987 Church St, New York City, NY 10001" -220810,Google Phone,1,600,06/05/19 16:18,"253 Elm St, Los Angeles, CA 90001" -220810,Wired Headphones,1,11.99,06/05/19 16:18,"253 Elm St, Los Angeles, CA 90001" -220811,USB-C Charging Cable,1,11.95,06/22/19 23:28,"615 Main St, New York City, NY 10001" -220812,AAA Batteries (4-pack),1,2.99,06/09/19 21:50,"542 6th St, San Francisco, CA 94016" -220813,Wired Headphones,1,11.99,06/26/19 18:50,"405 Spruce St, San Francisco, CA 94016" -220814,Wired Headphones,1,11.99,06/21/19 05:26,"767 Forest St, Los Angeles, CA 90001" -220815,27in 4K Gaming Monitor,1,389.99,06/26/19 16:32,"418 Elm St, New York City, NY 10001" -220816,iPhone,1,700,06/08/19 22:49,"810 Johnson St, San Francisco, CA 94016" -220817,Apple Airpods Headphones,1,150,06/12/19 12:31,"942 Pine St, San Francisco, CA 94016" -220818,USB-C Charging Cable,1,11.95,06/18/19 11:00,"499 13th St, San Francisco, CA 94016" -220819,Bose SoundSport Headphones,1,99.99,06/18/19 15:43,"183 Madison St, Los Angeles, CA 90001" -220820,AA Batteries (4-pack),3,3.84,06/11/19 18:28,"16 Sunset St, San Francisco, CA 94016" -220821,Lightning Charging Cable,1,14.95,06/28/19 19:43,"335 Forest St, Los Angeles, CA 90001" -220822,Apple Airpods Headphones,1,150,06/23/19 10:12,"44 Elm St, New York City, NY 10001" -220823,27in 4K Gaming Monitor,1,389.99,06/25/19 09:19,"346 River St, San Francisco, CA 94016" -220824,Lightning Charging Cable,1,14.95,06/06/19 03:24,"842 Spruce St, Seattle, WA 98101" -220825,AA Batteries (4-pack),1,3.84,06/24/19 22:08,"340 Dogwood St, Portland, OR 97035" -220826,Bose SoundSport Headphones,1,99.99,06/22/19 09:03,"705 1st St, Boston, MA 02215" -220827,AAA Batteries (4-pack),1,2.99,06/14/19 19:16,"853 Cherry St, San Francisco, CA 94016" -220828,AAA Batteries (4-pack),2,2.99,06/28/19 15:59,"286 Washington St, New York City, NY 10001" -220829,AA Batteries (4-pack),1,3.84,06/19/19 20:24,"348 Church St, Portland, OR 97035" -220830,USB-C Charging Cable,1,11.95,06/14/19 07:52,"954 Maple St, Atlanta, GA 30301" -220831,Wired Headphones,1,11.99,06/07/19 11:26,"431 Walnut St, Seattle, WA 98101" -220832,ThinkPad Laptop,1,999.99,06/17/19 22:29,"539 9th St, Los Angeles, CA 90001" -220833,Wired Headphones,1,11.99,06/12/19 14:21,"54 Forest St, New York City, NY 10001" -220834,Lightning Charging Cable,1,14.95,06/15/19 02:31,"600 Spruce St, San Francisco, CA 94016" -220835,Lightning Charging Cable,1,14.95,06/10/19 14:15,"453 Washington St, Austin, TX 73301" -220836,ThinkPad Laptop,1,999.99,06/10/19 18:38,"635 Main St, Atlanta, GA 30301" -220837,iPhone,1,700,06/30/19 11:51,"573 1st St, Seattle, WA 98101" -220837,Wired Headphones,1,11.99,06/30/19 11:51,"573 1st St, Seattle, WA 98101" -220838,AA Batteries (4-pack),2,3.84,06/24/19 20:06,"459 4th St, Los Angeles, CA 90001" -220839,Apple Airpods Headphones,1,150,06/07/19 16:40,"966 Park St, New York City, NY 10001" -220840,ThinkPad Laptop,1,999.99,06/10/19 23:10,"438 Jackson St, New York City, NY 10001" -220840,AAA Batteries (4-pack),1,2.99,06/10/19 23:10,"438 Jackson St, New York City, NY 10001" -220841,Vareebadd Phone,1,400,06/27/19 11:20,"528 Madison St, Austin, TX 73301" -220842,Lightning Charging Cable,1,14.95,06/25/19 22:19,"620 South St, San Francisco, CA 94016" -220843,Apple Airpods Headphones,1,150,06/13/19 15:54,"400 8th St, Atlanta, GA 30301" -220844,AA Batteries (4-pack),2,3.84,06/12/19 00:42,"407 4th St, San Francisco, CA 94016" -220845,AA Batteries (4-pack),1,3.84,06/02/19 09:02,"450 Main St, New York City, NY 10001" -220846,27in FHD Monitor,1,149.99,06/22/19 22:17,"894 Lake St, San Francisco, CA 94016" -220847,Flatscreen TV,1,300,06/08/19 18:55,"988 Jefferson St, New York City, NY 10001" -220848,Apple Airpods Headphones,1,150,06/14/19 09:21,"601 North St, Atlanta, GA 30301" -220848,Vareebadd Phone,1,400,06/14/19 09:21,"601 North St, Atlanta, GA 30301" -220849,27in FHD Monitor,1,149.99,06/28/19 20:13,"237 River St, Seattle, WA 98101" -220850,USB-C Charging Cable,1,11.95,06/20/19 20:26,"798 Forest St, Los Angeles, CA 90001" -220851,Wired Headphones,1,11.99,06/08/19 21:31,"999 13th St, Boston, MA 02215" -220852,AA Batteries (4-pack),1,3.84,06/26/19 16:42,"42 Hickory St, San Francisco, CA 94016" -220853,Apple Airpods Headphones,1,150,06/23/19 15:36,"724 Chestnut St, Seattle, WA 98101" -220854,AA Batteries (4-pack),1,3.84,06/07/19 11:02,"154 Cedar St, Seattle, WA 98101" -220855,Apple Airpods Headphones,1,150,06/06/19 16:25,"915 Ridge St, Boston, MA 02215" -220856,Bose SoundSport Headphones,1,99.99,06/04/19 12:18,"274 Spruce St, New York City, NY 10001" -220857,AAA Batteries (4-pack),1,2.99,06/05/19 13:50,"716 8th St, New York City, NY 10001" -220858,iPhone,1,700,06/14/19 17:49,"804 Maple St, New York City, NY 10001" -220859,Apple Airpods Headphones,1,150,06/09/19 18:50,"748 Willow St, Los Angeles, CA 90001" -220860,27in FHD Monitor,1,149.99,06/15/19 18:10,"381 1st St, New York City, NY 10001" -220861,AA Batteries (4-pack),1,3.84,06/16/19 19:05,"661 Pine St, Los Angeles, CA 90001" -220862,34in Ultrawide Monitor,1,379.99,06/05/19 13:38,"366 9th St, Los Angeles, CA 90001" -220863,Lightning Charging Cable,1,14.95,06/19/19 22:49,"229 Pine St, New York City, NY 10001" -220864,20in Monitor,1,109.99,06/25/19 21:50,"331 Center St, New York City, NY 10001" -220865,AAA Batteries (4-pack),2,2.99,06/12/19 21:42,"362 Highland St, Seattle, WA 98101" -220866,Macbook Pro Laptop,1,1700,06/16/19 14:38,"935 Cedar St, Los Angeles, CA 90001" -220867,AAA Batteries (4-pack),1,2.99,06/02/19 21:26,"770 Pine St, Boston, MA 02215" -220868,Apple Airpods Headphones,1,150,06/13/19 01:06,"143 Cherry St, Los Angeles, CA 90001" -220869,USB-C Charging Cable,1,11.95,06/19/19 01:10,"35 Johnson St, Los Angeles, CA 90001" -220870,Vareebadd Phone,1,400,06/22/19 08:15,"776 Washington St, Boston, MA 02215" -220871,27in 4K Gaming Monitor,1,389.99,06/30/19 23:47,"798 Park St, New York City, NY 10001" -220872,AAA Batteries (4-pack),1,2.99,06/20/19 20:19,"671 Adams St, Dallas, TX 75001" -220873,AAA Batteries (4-pack),1,2.99,06/05/19 13:32,"902 Hickory St, Seattle, WA 98101" -220874,AAA Batteries (4-pack),3,2.99,06/28/19 20:07,"491 Maple St, Portland, OR 97035" -220875,AA Batteries (4-pack),1,3.84,06/07/19 13:18,"660 Chestnut St, New York City, NY 10001" -220876,27in FHD Monitor,1,149.99,06/25/19 21:36,"521 Forest St, New York City, NY 10001" -220877,Lightning Charging Cable,1,14.95,06/05/19 21:12,"150 Sunset St, Seattle, WA 98101" -220878,Lightning Charging Cable,1,14.95,06/24/19 12:06,"446 Lake St, Dallas, TX 75001" -220879,Lightning Charging Cable,1,14.95,06/02/19 17:00,"651 Church St, San Francisco, CA 94016" -220880,Wired Headphones,1,11.99,06/16/19 03:00,"504 North St, Los Angeles, CA 90001" -220881,27in FHD Monitor,1,149.99,06/26/19 20:47,"465 Chestnut St, New York City, NY 10001" -220882,Lightning Charging Cable,1,14.95,06/13/19 17:53,"588 Lake St, Boston, MA 02215" -220882,Lightning Charging Cable,1,14.95,06/13/19 17:53,"588 Lake St, Boston, MA 02215" -220883,Lightning Charging Cable,1,14.95,06/15/19 15:54,"56 Maple St, Los Angeles, CA 90001" -220884,20in Monitor,1,109.99,06/26/19 20:42,"36 Meadow St, Los Angeles, CA 90001" -220885,27in 4K Gaming Monitor,1,389.99,06/02/19 14:57,"615 Wilson St, Portland, OR 97035" -220886,Lightning Charging Cable,1,14.95,06/25/19 17:37,"366 Washington St, San Francisco, CA 94016" -220887,Apple Airpods Headphones,1,150,06/04/19 10:23,"340 North St, Dallas, TX 75001" -220888,Wired Headphones,1,11.99,06/14/19 13:18,"817 Meadow St, Portland, OR 97035" -220889,AAA Batteries (4-pack),1,2.99,06/16/19 14:04,"466 6th St, Austin, TX 73301" -220890,AAA Batteries (4-pack),4,2.99,06/20/19 20:40,"519 13th St, Boston, MA 02215" -220891,Lightning Charging Cable,1,14.95,06/22/19 02:31,"756 North St, Boston, MA 02215" -220892,Google Phone,1,600,06/29/19 13:03,"989 11th St, San Francisco, CA 94016" -220893,Wired Headphones,1,11.99,06/26/19 16:34,"370 Church St, Austin, TX 73301" -220894,Google Phone,1,600,06/21/19 05:40,"892 Dogwood St, Boston, MA 02215" -220894,Wired Headphones,1,11.99,06/21/19 05:40,"892 Dogwood St, Boston, MA 02215" -220895,AAA Batteries (4-pack),2,2.99,06/10/19 20:30,"380 Church St, San Francisco, CA 94016" -220896,34in Ultrawide Monitor,1,379.99,06/27/19 14:49,"647 Main St, Dallas, TX 75001" -220897,34in Ultrawide Monitor,1,379.99,06/06/19 21:48,"453 Elm St, Austin, TX 73301" -220898,Google Phone,1,600,06/13/19 06:29,"945 Dogwood St, Los Angeles, CA 90001" -220899,Lightning Charging Cable,1,14.95,06/30/19 12:17,"294 8th St, Atlanta, GA 30301" -220900,iPhone,1,700,06/14/19 21:31,"2 River St, San Francisco, CA 94016" -220901,Bose SoundSport Headphones,1,99.99,06/16/19 15:09,"871 Jefferson St, Atlanta, GA 30301" -220902,AA Batteries (4-pack),2,3.84,06/12/19 12:06,"679 South St, New York City, NY 10001" -220903,Bose SoundSport Headphones,1,99.99,06/09/19 07:55,"271 Pine St, Dallas, TX 75001" -220904,Apple Airpods Headphones,1,150,06/07/19 22:55,"578 Walnut St, Portland, OR 97035" -220905,Macbook Pro Laptop,1,1700,06/23/19 13:04,"486 Chestnut St, Los Angeles, CA 90001" -220906,20in Monitor,1,109.99,06/14/19 18:48,"392 South St, Dallas, TX 75001" -220907,Flatscreen TV,1,300,06/15/19 21:41,"342 6th St, Boston, MA 02215" -220908,iPhone,1,700,06/15/19 21:11,"757 Main St, New York City, NY 10001" -220909,AA Batteries (4-pack),1,3.84,06/25/19 23:25,"315 Adams St, Portland, OR 97035" -220910,Apple Airpods Headphones,1,150,06/19/19 23:33,"935 9th St, Seattle, WA 98101" -220911,iPhone,1,700,06/17/19 18:00,"166 Walnut St, Boston, MA 02215" -220912,Flatscreen TV,1,300,06/06/19 21:41,"772 Maple St, Los Angeles, CA 90001" -220913,27in FHD Monitor,1,149.99,06/04/19 20:09,"890 Main St, Austin, TX 73301" -220913,Bose SoundSport Headphones,1,99.99,06/04/19 20:09,"890 Main St, Austin, TX 73301" -220914,Apple Airpods Headphones,1,150,06/30/19 08:37,"661 Lake St, Los Angeles, CA 90001" -220915,AAA Batteries (4-pack),2,2.99,06/14/19 19:17,"733 West St, Seattle, WA 98101" -220916,Lightning Charging Cable,1,14.95,06/07/19 17:46,"526 9th St, San Francisco, CA 94016" -220917,ThinkPad Laptop,1,999.99,06/01/19 11:19,"551 Willow St, Portland, ME 04101" -220918,34in Ultrawide Monitor,1,379.99,06/05/19 06:52,"706 Madison St, San Francisco, CA 94016" -220919,Lightning Charging Cable,1,14.95,06/20/19 22:43,"55 Wilson St, Boston, MA 02215" -220920,AA Batteries (4-pack),1,3.84,06/18/19 21:13,"69 Adams St, Austin, TX 73301" -220921,AAA Batteries (4-pack),2,2.99,06/03/19 09:47,"362 Pine St, San Francisco, CA 94016" -220922,Apple Airpods Headphones,1,150,06/05/19 11:49,"544 Ridge St, Portland, OR 97035" -220923,34in Ultrawide Monitor,1,379.99,06/20/19 00:27,"761 Pine St, Seattle, WA 98101" -220924,Google Phone,1,600,06/09/19 22:26,"77 River St, Atlanta, GA 30301" -220924,USB-C Charging Cable,1,11.95,06/09/19 22:26,"77 River St, Atlanta, GA 30301" -220925,27in 4K Gaming Monitor,1,389.99,06/18/19 00:25,"46 Forest St, San Francisco, CA 94016" -220926,Wired Headphones,1,11.99,06/17/19 21:32,"201 Forest St, San Francisco, CA 94016" -220927,AA Batteries (4-pack),4,3.84,06/15/19 18:36,"274 West St, Los Angeles, CA 90001" -220928,Wired Headphones,1,11.99,06/09/19 13:00,"519 7th St, Dallas, TX 75001" -220929,USB-C Charging Cable,1,11.95,06/26/19 10:13,"169 13th St, San Francisco, CA 94016" -220929,AA Batteries (4-pack),2,3.84,06/26/19 10:13,"169 13th St, San Francisco, CA 94016" -220930,34in Ultrawide Monitor,1,379.99,06/26/19 08:30,"700 Meadow St, San Francisco, CA 94016" -220931,AAA Batteries (4-pack),1,2.99,06/16/19 20:23,"220 Highland St, New York City, NY 10001" -220932,AA Batteries (4-pack),1,3.84,06/14/19 23:02,"986 Hill St, New York City, NY 10001" -220933,Flatscreen TV,1,300,06/19/19 12:22,"835 Lakeview St, Atlanta, GA 30301" -220934,Apple Airpods Headphones,1,150,06/03/19 21:34,"923 West St, New York City, NY 10001" -220935,Apple Airpods Headphones,1,150,06/13/19 20:21,"805 6th St, Austin, TX 73301" -,,,,, -220936,AAA Batteries (4-pack),1,2.99,06/13/19 12:47,"513 Jefferson St, Austin, TX 73301" -220937,Vareebadd Phone,1,400,06/05/19 14:41,"767 14th St, Seattle, WA 98101" -220937,USB-C Charging Cable,1,11.95,06/05/19 14:41,"767 14th St, Seattle, WA 98101" -220938,27in FHD Monitor,1,149.99,06/18/19 20:57,"141 Madison St, New York City, NY 10001" -220939,AA Batteries (4-pack),1,3.84,06/16/19 20:56,"975 7th St, Boston, MA 02215" -220940,AA Batteries (4-pack),2,3.84,06/06/19 12:26,"372 Highland St, Los Angeles, CA 90001" -220941,iPhone,1,700,06/15/19 14:18,"219 Meadow St, Atlanta, GA 30301" -220942,Wired Headphones,1,11.99,06/29/19 11:28,"182 River St, New York City, NY 10001" -220943,Apple Airpods Headphones,1,150,06/01/19 08:08,"414 12th St, Los Angeles, CA 90001" -220944,Google Phone,1,600,06/24/19 20:33,"15 Lakeview St, Boston, MA 02215" -220945,Wired Headphones,1,11.99,06/28/19 13:35,"228 Meadow St, Portland, OR 97035" -220946,Apple Airpods Headphones,1,150,06/19/19 15:57,"960 7th St, Dallas, TX 75001" -220947,27in FHD Monitor,1,149.99,06/27/19 18:07,"655 Cedar St, San Francisco, CA 94016" -220948,AAA Batteries (4-pack),1,2.99,06/30/19 20:39,"399 10th St, San Francisco, CA 94016" -220949,Lightning Charging Cable,1,14.95,06/01/19 17:46,"488 Center St, Los Angeles, CA 90001" -220950,AAA Batteries (4-pack),1,2.99,06/01/19 15:37,"664 8th St, Seattle, WA 98101" -220951,Wired Headphones,2,11.99,06/16/19 19:27,"188 River St, Atlanta, GA 30301" -220952,Bose SoundSport Headphones,1,99.99,06/28/19 20:48,"232 1st St, Seattle, WA 98101" -220953,Bose SoundSport Headphones,1,99.99,06/24/19 06:50,"516 Lake St, Portland, OR 97035" -220954,Wired Headphones,1,11.99,06/19/19 09:23,"176 North St, San Francisco, CA 94016" -220955,Lightning Charging Cable,1,14.95,06/24/19 11:13,"244 Lincoln St, Boston, MA 02215" -220956,AAA Batteries (4-pack),1,2.99,06/15/19 16:47,"869 8th St, Los Angeles, CA 90001" -220957,AAA Batteries (4-pack),2,2.99,06/10/19 13:52,"752 Highland St, New York City, NY 10001" -220958,Apple Airpods Headphones,1,150,06/24/19 07:56,"792 Spruce St, San Francisco, CA 94016" -220959,Wired Headphones,1,11.99,06/16/19 07:29,"112 Main St, San Francisco, CA 94016" -220960,Lightning Charging Cable,1,14.95,06/06/19 14:07,"64 Forest St, Atlanta, GA 30301" -220961,Macbook Pro Laptop,1,1700,06/20/19 09:46,"673 Main St, Los Angeles, CA 90001" -220962,iPhone,1,700,06/12/19 20:27,"852 8th St, San Francisco, CA 94016" -220963,AA Batteries (4-pack),1,3.84,06/28/19 17:11,"628 Lakeview St, Los Angeles, CA 90001" -220964,AAA Batteries (4-pack),1,2.99,06/30/19 15:54,"837 Lakeview St, New York City, NY 10001" -220965,27in 4K Gaming Monitor,1,389.99,06/16/19 19:54,"560 8th St, Los Angeles, CA 90001" -220966,27in 4K Gaming Monitor,1,389.99,06/09/19 12:49,"937 13th St, Portland, OR 97035" -220967,Apple Airpods Headphones,1,150,06/19/19 19:44,"638 Center St, Seattle, WA 98101" -220968,Lightning Charging Cable,1,14.95,06/28/19 18:45,"697 5th St, New York City, NY 10001" -220968,Bose SoundSport Headphones,1,99.99,06/28/19 18:45,"697 5th St, New York City, NY 10001" -220969,Apple Airpods Headphones,1,150,06/30/19 18:41,"992 Madison St, Los Angeles, CA 90001" -220970,ThinkPad Laptop,1,999.99,06/25/19 23:57,"857 West St, Atlanta, GA 30301" -220971,Wired Headphones,1,11.99,06/06/19 15:13,"323 Cherry St, Boston, MA 02215" -220972,20in Monitor,1,109.99,06/17/19 09:38,"925 Willow St, Dallas, TX 75001" -220973,Bose SoundSport Headphones,1,99.99,06/14/19 13:43,"614 Hill St, Portland, OR 97035" -220974,AAA Batteries (4-pack),4,2.99,06/09/19 07:07,"305 12th St, San Francisco, CA 94016" -220975,Lightning Charging Cable,1,14.95,06/15/19 14:17,"86 Willow St, Atlanta, GA 30301" -220976,27in 4K Gaming Monitor,1,389.99,06/18/19 11:04,"456 Cedar St, Los Angeles, CA 90001" -220977,Flatscreen TV,1,300,06/12/19 19:47,"254 South St, Dallas, TX 75001" -220978,Wired Headphones,1,11.99,06/16/19 20:13,"665 Forest St, Boston, MA 02215" -220979,AA Batteries (4-pack),2,3.84,06/27/19 11:03,"713 Lake St, San Francisco, CA 94016" -220980,27in FHD Monitor,1,149.99,06/14/19 08:55,"675 Elm St, Boston, MA 02215" -220981,Wired Headphones,1,11.99,06/10/19 16:39,"583 Church St, Los Angeles, CA 90001" -220982,LG Dryer,1,600.0,06/07/19 23:14,"997 Lincoln St, Los Angeles, CA 90001" -220983,Bose SoundSport Headphones,1,99.99,06/17/19 23:30,"790 7th St, Los Angeles, CA 90001" -220984,AA Batteries (4-pack),1,3.84,06/17/19 18:30,"687 Ridge St, Atlanta, GA 30301" -220985,Apple Airpods Headphones,1,150,06/20/19 17:14,"760 Adams St, Los Angeles, CA 90001" -220986,AAA Batteries (4-pack),1,2.99,06/10/19 14:49,"454 Wilson St, Boston, MA 02215" -220987,Macbook Pro Laptop,1,1700,06/02/19 19:27,"611 2nd St, San Francisco, CA 94016" -220988,AA Batteries (4-pack),1,3.84,06/06/19 19:46,"342 Willow St, New York City, NY 10001" -220989,27in 4K Gaming Monitor,1,389.99,06/18/19 18:17,"746 Cedar St, Los Angeles, CA 90001" -220990,USB-C Charging Cable,1,11.95,06/11/19 11:29,"908 4th St, Dallas, TX 75001" -220991,Lightning Charging Cable,1,14.95,06/30/19 19:50,"329 Walnut St, Seattle, WA 98101" -220992,34in Ultrawide Monitor,1,379.99,06/25/19 15:54,"701 10th St, Dallas, TX 75001" -220993,Lightning Charging Cable,1,14.95,06/20/19 10:01,"743 Maple St, Boston, MA 02215" -220994,AA Batteries (4-pack),1,3.84,06/21/19 16:44,"477 Ridge St, San Francisco, CA 94016" -220995,AA Batteries (4-pack),1,3.84,06/05/19 08:19,"237 Jackson St, San Francisco, CA 94016" -220996,AA Batteries (4-pack),1,3.84,06/29/19 12:01,"104 7th St, Los Angeles, CA 90001" -220997,iPhone,1,700,06/21/19 16:35,"577 Church St, Dallas, TX 75001" -220997,Lightning Charging Cable,1,14.95,06/21/19 16:35,"577 Church St, Dallas, TX 75001" -220998,Flatscreen TV,2,300,06/03/19 14:06,"953 1st St, Boston, MA 02215" -220999,Bose SoundSport Headphones,1,99.99,06/14/19 14:17,"517 Spruce St, San Francisco, CA 94016" -221000,Bose SoundSport Headphones,2,99.99,06/20/19 13:24,"703 Walnut St, Boston, MA 02215" -221001,Flatscreen TV,1,300,06/12/19 14:05,"967 11th St, Boston, MA 02215" -221002,AA Batteries (4-pack),2,3.84,06/17/19 15:31,"191 Elm St, Atlanta, GA 30301" -221003,iPhone,1,700,06/23/19 12:37,"981 Chestnut St, San Francisco, CA 94016" -221004,USB-C Charging Cable,1,11.95,06/12/19 19:34,"788 Lakeview St, Portland, OR 97035" -221005,34in Ultrawide Monitor,1,379.99,06/08/19 13:00,"366 7th St, Portland, ME 04101" -221006,AA Batteries (4-pack),1,3.84,06/16/19 18:57,"757 13th St, San Francisco, CA 94016" -221007,USB-C Charging Cable,1,11.95,06/03/19 17:09,"889 6th St, Los Angeles, CA 90001" -221008,34in Ultrawide Monitor,1,379.99,06/01/19 22:12,"619 Hickory St, Los Angeles, CA 90001" -221009,Macbook Pro Laptop,1,1700,06/13/19 21:19,"12 4th St, Seattle, WA 98101" -221010,Lightning Charging Cable,1,14.95,06/20/19 16:20,"280 Walnut St, Los Angeles, CA 90001" -221011,AA Batteries (4-pack),2,3.84,06/22/19 17:50,"398 Hickory St, San Francisco, CA 94016" -221012,AAA Batteries (4-pack),1,2.99,06/28/19 20:08,"969 Center St, Los Angeles, CA 90001" -221013,USB-C Charging Cable,1,11.95,06/14/19 15:03,"439 Sunset St, San Francisco, CA 94016" -221014,27in FHD Monitor,1,149.99,06/17/19 10:33,"920 2nd St, Atlanta, GA 30301" -221015,iPhone,1,700,06/10/19 10:01,"722 Cedar St, New York City, NY 10001" -221016,34in Ultrawide Monitor,1,379.99,06/25/19 10:22,"948 Highland St, San Francisco, CA 94016" -221017,Macbook Pro Laptop,1,1700,06/20/19 16:21,"195 Walnut St, Los Angeles, CA 90001" -221018,Wired Headphones,1,11.99,06/23/19 01:28,"20 Lincoln St, Atlanta, GA 30301" -221019,Macbook Pro Laptop,1,1700,06/02/19 12:00,"867 Elm St, Los Angeles, CA 90001" -221020,Flatscreen TV,1,300,06/22/19 11:35,"61 Hill St, Los Angeles, CA 90001" -221021,LG Washing Machine,1,600.0,06/16/19 18:11,"630 9th St, Los Angeles, CA 90001" -221022,Google Phone,1,600,06/04/19 01:33,"500 13th St, New York City, NY 10001" -221022,USB-C Charging Cable,1,11.95,06/04/19 01:33,"500 13th St, New York City, NY 10001" -221023,Wired Headphones,1,11.99,06/11/19 20:24,"60 Pine St, San Francisco, CA 94016" -221024,Bose SoundSport Headphones,1,99.99,06/30/19 17:08,"287 Dogwood St, Austin, TX 73301" -221025,Apple Airpods Headphones,1,150,06/19/19 21:20,"125 North St, Dallas, TX 75001" -221026,Bose SoundSport Headphones,1,99.99,06/29/19 09:41,"846 Pine St, Seattle, WA 98101" -221027,Apple Airpods Headphones,1,150,06/22/19 18:40,"628 8th St, San Francisco, CA 94016" -221028,Bose SoundSport Headphones,1,99.99,06/01/19 19:27,"179 West St, Los Angeles, CA 90001" -221029,27in FHD Monitor,1,149.99,06/06/19 17:25,"641 Lincoln St, Atlanta, GA 30301" -221030,AA Batteries (4-pack),1,3.84,06/05/19 07:45,"189 Johnson St, Dallas, TX 75001" -221031,AAA Batteries (4-pack),1,2.99,06/11/19 07:55,"972 Pine St, San Francisco, CA 94016" -221032,Lightning Charging Cable,1,14.95,06/07/19 18:28,"916 1st St, Los Angeles, CA 90001" -221033,Flatscreen TV,1,300,06/20/19 13:35,"337 10th St, San Francisco, CA 94016" -221034,Lightning Charging Cable,1,14.95,06/13/19 21:22,"193 Adams St, New York City, NY 10001" -221035,Google Phone,1,600,06/28/19 22:24,"160 South St, San Francisco, CA 94016" -221035,USB-C Charging Cable,1,11.95,06/28/19 22:24,"160 South St, San Francisco, CA 94016" -221035,Wired Headphones,1,11.99,06/28/19 22:24,"160 South St, San Francisco, CA 94016" -221036,Bose SoundSport Headphones,1,99.99,06/25/19 19:48,"30 Pine St, Austin, TX 73301" -221037,Macbook Pro Laptop,1,1700,06/08/19 19:21,"196 Hill St, Los Angeles, CA 90001" -221038,Bose SoundSport Headphones,1,99.99,06/14/19 20:39,"944 Meadow St, Atlanta, GA 30301" -221039,USB-C Charging Cable,1,11.95,06/24/19 23:58,"592 14th St, Austin, TX 73301" -221040,Lightning Charging Cable,1,14.95,06/04/19 08:10,"584 Hickory St, San Francisco, CA 94016" -221041,AA Batteries (4-pack),1,3.84,06/08/19 14:45,"27 13th St, Boston, MA 02215" -221042,ThinkPad Laptop,1,999.99,06/21/19 18:18,"787 1st St, Los Angeles, CA 90001" -221043,Lightning Charging Cable,1,14.95,06/06/19 16:26,"732 8th St, Seattle, WA 98101" -221044,Wired Headphones,1,11.99,06/27/19 19:13,"37 Hill St, Boston, MA 02215" -221045,27in FHD Monitor,1,149.99,06/24/19 15:24,"674 2nd St, Boston, MA 02215" -221046,Lightning Charging Cable,1,14.95,06/25/19 21:52,"864 Lincoln St, Atlanta, GA 30301" -221047,Lightning Charging Cable,1,14.95,06/17/19 07:51,"164 Meadow St, New York City, NY 10001" -221048,AAA Batteries (4-pack),1,2.99,06/08/19 15:52,"490 Chestnut St, New York City, NY 10001" -221049,Bose SoundSport Headphones,1,99.99,06/27/19 12:46,"757 4th St, Portland, ME 04101" -221050,USB-C Charging Cable,1,11.95,06/20/19 14:02,"985 5th St, Los Angeles, CA 90001" -221051,Lightning Charging Cable,1,14.95,06/16/19 15:28,"579 West St, New York City, NY 10001" -221052,iPhone,1,700,06/11/19 12:13,"600 Jackson St, San Francisco, CA 94016" -221053,AA Batteries (4-pack),1,3.84,06/29/19 09:50,"335 1st St, Los Angeles, CA 90001" -221054,Macbook Pro Laptop,1,1700,06/20/19 19:21,"558 Meadow St, Atlanta, GA 30301" -221055,Lightning Charging Cable,1,14.95,06/23/19 19:45,"878 11th St, Dallas, TX 75001" -221056,AA Batteries (4-pack),1,3.84,06/03/19 10:49,"429 Meadow St, New York City, NY 10001" -221057,Lightning Charging Cable,1,14.95,06/03/19 12:33,"258 Spruce St, San Francisco, CA 94016" -221058,USB-C Charging Cable,2,11.95,06/11/19 18:42,"953 Madison St, Seattle, WA 98101" -221059,Macbook Pro Laptop,1,1700,06/06/19 18:40,"724 8th St, Los Angeles, CA 90001" -221060,AA Batteries (4-pack),1,3.84,06/08/19 22:37,"262 14th St, Seattle, WA 98101" -221061,34in Ultrawide Monitor,1,379.99,06/24/19 17:20,"559 2nd St, Atlanta, GA 30301" -221062,AAA Batteries (4-pack),1,2.99,06/03/19 16:54,"345 Sunset St, Austin, TX 73301" -221063,AA Batteries (4-pack),1,3.84,06/30/19 15:08,"35 Wilson St, Boston, MA 02215" -221064,Apple Airpods Headphones,1,150,06/17/19 18:19,"3 Ridge St, Atlanta, GA 30301" -221065,Bose SoundSport Headphones,1,99.99,06/24/19 22:17,"649 Ridge St, Portland, ME 04101" -221066,34in Ultrawide Monitor,1,379.99,06/24/19 14:48,"160 Maple St, Boston, MA 02215" -221067,Apple Airpods Headphones,1,150,06/17/19 20:19,"234 South St, Boston, MA 02215" -221068,Apple Airpods Headphones,1,150,06/09/19 21:47,"948 Elm St, San Francisco, CA 94016" -221069,Wired Headphones,1,11.99,06/05/19 13:30,"769 Ridge St, Dallas, TX 75001" -221070,Bose SoundSport Headphones,1,99.99,06/14/19 22:27,"837 2nd St, Boston, MA 02215" -221071,Bose SoundSport Headphones,1,99.99,06/13/19 10:24,"963 River St, New York City, NY 10001" -221072,Lightning Charging Cable,2,14.95,06/01/19 19:21,"388 North St, Dallas, TX 75001" -221073,USB-C Charging Cable,1,11.95,06/06/19 13:42,"915 Highland St, San Francisco, CA 94016" -221074,Vareebadd Phone,1,400,06/23/19 07:47,"924 Jefferson St, San Francisco, CA 94016" -221075,ThinkPad Laptop,1,999.99,06/25/19 21:22,"366 Highland St, San Francisco, CA 94016" -221076,Wired Headphones,1,11.99,06/01/19 11:08,"964 Jackson St, Dallas, TX 75001" -221077,Apple Airpods Headphones,1,150,06/12/19 08:57,"519 7th St, Atlanta, GA 30301" -221078,Flatscreen TV,1,300,06/21/19 21:41,"952 Church St, Austin, TX 73301" -221079,Google Phone,1,600,06/25/19 14:30,"113 2nd St, Boston, MA 02215" -221079,USB-C Charging Cable,1,11.95,06/25/19 14:30,"113 2nd St, Boston, MA 02215" -221080,Macbook Pro Laptop,1,1700,06/18/19 19:37,"492 Cherry St, San Francisco, CA 94016" -221081,Apple Airpods Headphones,1,150,06/08/19 23:19,"909 West St, Los Angeles, CA 90001" -221082,USB-C Charging Cable,1,11.95,06/06/19 23:50,"922 Wilson St, Los Angeles, CA 90001" -221083,Apple Airpods Headphones,1,150,06/01/19 16:09,"14 Hill St, New York City, NY 10001" -221084,Bose SoundSport Headphones,1,99.99,06/22/19 17:15,"986 Sunset St, San Francisco, CA 94016" -221085,27in 4K Gaming Monitor,1,389.99,06/02/19 15:58,"601 Jefferson St, Dallas, TX 75001" -221086,AAA Batteries (4-pack),3,2.99,06/23/19 15:07,"737 10th St, Austin, TX 73301" -221087,Apple Airpods Headphones,1,150,06/09/19 07:52,"586 Forest St, Boston, MA 02215" -221088,34in Ultrawide Monitor,1,379.99,06/01/19 11:07,"776 Main St, San Francisco, CA 94016" -221089,27in FHD Monitor,1,149.99,06/09/19 13:54,"556 8th St, Boston, MA 02215" -221090,Lightning Charging Cable,1,14.95,06/06/19 18:53,"898 Highland St, Los Angeles, CA 90001" -221090,AA Batteries (4-pack),2,3.84,06/06/19 18:53,"898 Highland St, Los Angeles, CA 90001" -221091,AA Batteries (4-pack),1,3.84,06/27/19 14:01,"217 Walnut St, New York City, NY 10001" -221092,ThinkPad Laptop,1,999.99,06/23/19 16:08,"647 Forest St, San Francisco, CA 94016" -221093,Bose SoundSport Headphones,1,99.99,06/20/19 17:45,"346 Cedar St, Atlanta, GA 30301" -221094,20in Monitor,1,109.99,06/11/19 14:27,"135 7th St, Austin, TX 73301" -221095,Apple Airpods Headphones,1,150,06/09/19 17:04,"863 Jackson St, Boston, MA 02215" -221096,AAA Batteries (4-pack),1,2.99,06/15/19 10:19,"206 South St, Seattle, WA 98101" -221097,AAA Batteries (4-pack),3,2.99,06/05/19 17:53,"23 Pine St, Seattle, WA 98101" -221098,AA Batteries (4-pack),1,3.84,06/06/19 21:41,"201 8th St, San Francisco, CA 94016" -221099,Wired Headphones,1,11.99,06/29/19 21:52,"822 5th St, New York City, NY 10001" -221100,Wired Headphones,1,11.99,06/08/19 12:19,"854 Elm St, Seattle, WA 98101" -221101,USB-C Charging Cable,1,11.95,06/30/19 20:26,"39 Dogwood St, Los Angeles, CA 90001" -221101,27in 4K Gaming Monitor,1,389.99,06/30/19 20:26,"39 Dogwood St, Los Angeles, CA 90001" -221102,AA Batteries (4-pack),1,3.84,06/09/19 00:25,"377 9th St, Los Angeles, CA 90001" -221103,Macbook Pro Laptop,1,1700,06/22/19 20:16,"289 11th St, Los Angeles, CA 90001" -221104,Wired Headphones,1,11.99,06/11/19 21:41,"341 Center St, San Francisco, CA 94016" -221105,ThinkPad Laptop,1,999.99,06/05/19 19:18,"357 Walnut St, Atlanta, GA 30301" -221106,Macbook Pro Laptop,1,1700,06/16/19 09:38,"286 River St, Austin, TX 73301" -221107,AA Batteries (4-pack),1,3.84,06/25/19 11:24,"359 Church St, Dallas, TX 75001" -221108,Apple Airpods Headphones,1,150,06/09/19 07:29,"536 Hill St, Seattle, WA 98101" -221109,Bose SoundSport Headphones,1,99.99,06/17/19 21:26,"233 2nd St, Boston, MA 02215" -221110,AAA Batteries (4-pack),4,2.99,06/07/19 19:40,"319 Walnut St, Dallas, TX 75001" -221111,AA Batteries (4-pack),2,3.84,06/18/19 07:46,"45 Maple St, Portland, OR 97035" -221112,Bose SoundSport Headphones,1,99.99,06/28/19 15:58,"35 Walnut St, Los Angeles, CA 90001" -221113,Lightning Charging Cable,1,14.95,06/04/19 18:34,"503 Church St, Los Angeles, CA 90001" -221114,Bose SoundSport Headphones,1,99.99,06/09/19 23:15,"505 Hickory St, San Francisco, CA 94016" -221115,20in Monitor,1,109.99,06/02/19 16:11,"557 Hill St, Seattle, WA 98101" -221116,Lightning Charging Cable,1,14.95,06/14/19 14:10,"430 8th St, San Francisco, CA 94016" -221117,Lightning Charging Cable,2,14.95,06/20/19 00:02,"367 9th St, San Francisco, CA 94016" -221118,Flatscreen TV,1,300,06/24/19 08:33,"878 River St, New York City, NY 10001" -221119,ThinkPad Laptop,1,999.99,06/07/19 09:16,"552 7th St, San Francisco, CA 94016" -221120,Google Phone,1,600,06/14/19 12:10,"711 Cedar St, Los Angeles, CA 90001" -221121,Lightning Charging Cable,1,14.95,06/08/19 20:53,"75 Elm St, Dallas, TX 75001" -221122,20in Monitor,1,109.99,06/20/19 11:15,"574 Church St, New York City, NY 10001" -221123,Wired Headphones,1,11.99,06/27/19 10:26,"270 West St, San Francisco, CA 94016" -221124,AAA Batteries (4-pack),1,2.99,06/11/19 15:14,"7 West St, Los Angeles, CA 90001" -221125,Lightning Charging Cable,1,14.95,06/12/19 08:04,"598 North St, Dallas, TX 75001" -221126,Flatscreen TV,1,300,06/25/19 06:17,"380 Lake St, Boston, MA 02215" -221127,USB-C Charging Cable,1,11.95,06/06/19 17:59,"144 Hill St, Atlanta, GA 30301" -221128,USB-C Charging Cable,1,11.95,06/12/19 09:26,"780 5th St, Dallas, TX 75001" -221129,27in 4K Gaming Monitor,1,389.99,06/27/19 09:17,"217 Washington St, Atlanta, GA 30301" -221130,20in Monitor,1,109.99,06/27/19 12:52,"434 Pine St, Portland, ME 04101" -221131,Vareebadd Phone,1,400,06/29/19 13:57,"538 Elm St, Portland, OR 97035" -221132,Lightning Charging Cable,2,14.95,06/16/19 10:38,"940 Dogwood St, Seattle, WA 98101" -221133,iPhone,1,700,06/17/19 15:04,"647 Jefferson St, New York City, NY 10001" -221134,Lightning Charging Cable,1,14.95,06/10/19 10:48,"910 Church St, Atlanta, GA 30301" -221135,Wired Headphones,1,11.99,06/18/19 17:47,"739 West St, Seattle, WA 98101" -221136,Lightning Charging Cable,1,14.95,06/30/19 15:36,"417 South St, Atlanta, GA 30301" -221137,Flatscreen TV,1,300,06/08/19 08:58,"195 North St, Boston, MA 02215" -221138,Bose SoundSport Headphones,1,99.99,06/17/19 10:23,"586 Hill St, Atlanta, GA 30301" -221139,Wired Headphones,1,11.99,06/16/19 18:15,"893 Lincoln St, San Francisco, CA 94016" -221140,Apple Airpods Headphones,1,150,06/16/19 18:40,"46 Maple St, Atlanta, GA 30301" -221141,AAA Batteries (4-pack),4,2.99,06/02/19 18:49,"776 Main St, San Francisco, CA 94016" -221142,Apple Airpods Headphones,1,150,06/13/19 16:02,"664 Main St, San Francisco, CA 94016" -221143,USB-C Charging Cable,1,11.95,06/02/19 19:00,"173 1st St, Boston, MA 02215" -221144,AAA Batteries (4-pack),3,2.99,06/18/19 17:01,"240 South St, Atlanta, GA 30301" -221145,Bose SoundSport Headphones,1,99.99,06/19/19 10:38,"715 Highland St, Los Angeles, CA 90001" -221146,20in Monitor,1,109.99,06/17/19 04:42,"581 North St, Boston, MA 02215" -221147,Lightning Charging Cable,1,14.95,06/12/19 01:08,"360 Forest St, Los Angeles, CA 90001" -221148,Google Phone,1,600,06/12/19 11:44,"543 Dogwood St, San Francisco, CA 94016" -221149,Apple Airpods Headphones,1,150,06/17/19 15:33,"416 Center St, Dallas, TX 75001" -221150,ThinkPad Laptop,1,999.99,06/25/19 12:26,"489 Jackson St, Boston, MA 02215" -221151,Bose SoundSport Headphones,1,99.99,06/15/19 11:09,"538 11th St, Los Angeles, CA 90001" -,,,,, -221152,AA Batteries (4-pack),2,3.84,06/09/19 15:53,"625 Center St, San Francisco, CA 94016" -221153,Lightning Charging Cable,1,14.95,06/09/19 16:31,"428 Cherry St, New York City, NY 10001" -221154,Google Phone,1,600,06/15/19 09:48,"546 8th St, San Francisco, CA 94016" -221155,AA Batteries (4-pack),1,3.84,06/19/19 23:31,"27 Church St, Boston, MA 02215" -221156,Wired Headphones,1,11.99,06/12/19 08:18,"197 Elm St, Dallas, TX 75001" -221157,Bose SoundSport Headphones,1,99.99,06/20/19 21:38,"300 4th St, Portland, OR 97035" -221158,Wired Headphones,1,11.99,06/08/19 17:13,"672 Jackson St, Boston, MA 02215" -221159,iPhone,1,700,06/25/19 21:09,"63 Sunset St, San Francisco, CA 94016" -221160,Bose SoundSport Headphones,1,99.99,06/13/19 15:46,"546 Sunset St, New York City, NY 10001" -221161,Lightning Charging Cable,1,14.95,06/07/19 21:01,"576 Cedar St, Atlanta, GA 30301" -221162,34in Ultrawide Monitor,1,379.99,06/19/19 21:45,"181 Main St, Atlanta, GA 30301" -221163,Google Phone,1,600,06/26/19 11:36,"863 Adams St, Atlanta, GA 30301" -221164,LG Washing Machine,1,600.0,06/24/19 04:45,"550 Ridge St, Los Angeles, CA 90001" -221165,Google Phone,1,600,06/20/19 20:13,"769 6th St, New York City, NY 10001" -221166,AAA Batteries (4-pack),1,2.99,06/29/19 08:02,"201 14th St, Portland, OR 97035" -221167,Bose SoundSport Headphones,1,99.99,06/08/19 15:38,"611 Spruce St, San Francisco, CA 94016" -221168,iPhone,1,700,06/03/19 00:28,"865 7th St, Los Angeles, CA 90001" -221169,27in 4K Gaming Monitor,1,389.99,06/11/19 18:55,"134 Washington St, Dallas, TX 75001" -221170,AA Batteries (4-pack),1,3.84,06/30/19 10:00,"806 14th St, San Francisco, CA 94016" -221171,Lightning Charging Cable,1,14.95,06/16/19 11:07,"985 Maple St, Atlanta, GA 30301" -221172,Bose SoundSport Headphones,1,99.99,06/10/19 17:46,"531 Washington St, Dallas, TX 75001" -221173,AAA Batteries (4-pack),1,2.99,06/09/19 12:36,"407 6th St, Austin, TX 73301" -221174,AA Batteries (4-pack),1,3.84,06/17/19 22:20,"256 Maple St, Los Angeles, CA 90001" -221175,AAA Batteries (4-pack),1,2.99,06/13/19 21:28,"795 12th St, San Francisco, CA 94016" -221176,Google Phone,1,600,06/11/19 06:34,"538 Lakeview St, Los Angeles, CA 90001" -221177,USB-C Charging Cable,1,11.95,06/19/19 20:03,"64 Center St, Los Angeles, CA 90001" -221178,AAA Batteries (4-pack),2,2.99,06/09/19 20:09,"833 9th St, Los Angeles, CA 90001" -221179,AA Batteries (4-pack),1,3.84,06/27/19 11:58,"492 Jackson St, San Francisco, CA 94016" -221180,Google Phone,1,600,06/30/19 09:33,"375 Jefferson St, Atlanta, GA 30301" -221180,USB-C Charging Cable,1,11.95,06/30/19 09:33,"375 Jefferson St, Atlanta, GA 30301" -221181,ThinkPad Laptop,1,999.99,06/20/19 16:07,"191 Sunset St, Atlanta, GA 30301" -221182,Lightning Charging Cable,1,14.95,06/13/19 12:33,"416 Chestnut St, San Francisco, CA 94016" -221183,Flatscreen TV,1,300,06/21/19 08:46,"546 Elm St, Boston, MA 02215" -221184,AAA Batteries (4-pack),1,2.99,06/04/19 20:51,"576 Center St, Seattle, WA 98101" -221185,27in FHD Monitor,1,149.99,06/18/19 14:35,"57 Park St, Portland, OR 97035" -221186,AA Batteries (4-pack),1,3.84,06/25/19 10:07,"592 5th St, Austin, TX 73301" -221187,34in Ultrawide Monitor,1,379.99,06/04/19 16:22,"108 4th St, San Francisco, CA 94016" -221188,27in FHD Monitor,1,149.99,06/26/19 23:26,"942 9th St, New York City, NY 10001" -221189,Wired Headphones,1,11.99,06/21/19 09:39,"317 Ridge St, Seattle, WA 98101" -221190,Lightning Charging Cable,1,14.95,06/21/19 00:04,"470 Center St, Dallas, TX 75001" -221191,USB-C Charging Cable,1,11.95,06/21/19 11:56,"882 Willow St, San Francisco, CA 94016" -221192,USB-C Charging Cable,1,11.95,06/27/19 20:09,"608 11th St, Los Angeles, CA 90001" -221193,iPhone,1,700,06/12/19 12:38,"576 2nd St, San Francisco, CA 94016" -221194,Lightning Charging Cable,1,14.95,06/18/19 16:25,"964 Sunset St, Los Angeles, CA 90001" -221194,USB-C Charging Cable,1,11.95,06/18/19 16:25,"964 Sunset St, Los Angeles, CA 90001" -221195,AAA Batteries (4-pack),1,2.99,06/20/19 12:35,"472 Forest St, Los Angeles, CA 90001" -221196,Lightning Charging Cable,2,14.95,06/29/19 11:42,"153 Main St, San Francisco, CA 94016" -221197,LG Dryer,1,600.0,06/28/19 12:45,"475 Hickory St, Boston, MA 02215" -221198,27in 4K Gaming Monitor,1,389.99,06/24/19 19:57,"494 14th St, Los Angeles, CA 90001" -221199,AA Batteries (4-pack),1,3.84,06/24/19 18:49,"791 Sunset St, Los Angeles, CA 90001" -221200,Macbook Pro Laptop,1,1700,06/13/19 20:06,"670 Spruce St, Los Angeles, CA 90001" -221201,ThinkPad Laptop,1,999.99,06/06/19 14:56,"2 Cedar St, Los Angeles, CA 90001" -221202,AAA Batteries (4-pack),1,2.99,06/12/19 14:15,"574 Washington St, New York City, NY 10001" -221203,27in 4K Gaming Monitor,1,389.99,06/26/19 21:12,"6 Wilson St, New York City, NY 10001" -221204,Flatscreen TV,1,300,06/17/19 05:47,"170 13th St, San Francisco, CA 94016" -221205,Bose SoundSport Headphones,1,99.99,06/30/19 03:07,"783 Lincoln St, New York City, NY 10001" -221206,AAA Batteries (4-pack),1,2.99,06/16/19 11:52,"37 6th St, Seattle, WA 98101" -221207,34in Ultrawide Monitor,1,379.99,06/28/19 10:51,"483 West St, Boston, MA 02215" -221208,20in Monitor,1,109.99,06/05/19 10:23,"122 South St, Los Angeles, CA 90001" -221209,AAA Batteries (4-pack),2,2.99,06/05/19 21:40,"79 Willow St, New York City, NY 10001" -221210,Apple Airpods Headphones,1,150,06/04/19 11:32,"165 Hill St, San Francisco, CA 94016" -221211,USB-C Charging Cable,1,11.95,06/19/19 08:47,"339 2nd St, New York City, NY 10001" -221212,AA Batteries (4-pack),2,3.84,06/29/19 22:34,"567 Center St, Dallas, TX 75001" -221213,USB-C Charging Cable,1,11.95,06/20/19 17:33,"61 North St, Dallas, TX 75001" -221214,27in FHD Monitor,1,149.99,06/09/19 09:16,"731 2nd St, San Francisco, CA 94016" -221215,Apple Airpods Headphones,1,150,06/23/19 02:59,"6 Lake St, Portland, OR 97035" -221216,Wired Headphones,1,11.99,06/04/19 09:18,"235 North St, New York City, NY 10001" -221217,AAA Batteries (4-pack),1,2.99,06/05/19 08:48,"536 Forest St, Seattle, WA 98101" -221218,AA Batteries (4-pack),1,3.84,06/17/19 13:16,"191 Center St, San Francisco, CA 94016" -221219,Flatscreen TV,1,300,06/27/19 10:59,"138 11th St, Boston, MA 02215" -221220,USB-C Charging Cable,1,11.95,06/07/19 12:50,"623 River St, Atlanta, GA 30301" -221221,AA Batteries (4-pack),1,3.84,06/20/19 15:42,"157 Maple St, Boston, MA 02215" -221222,USB-C Charging Cable,1,11.95,06/17/19 11:28,"901 River St, Los Angeles, CA 90001" -221223,Google Phone,1,600,06/13/19 15:44,"756 West St, Los Angeles, CA 90001" -221224,AA Batteries (4-pack),3,3.84,06/10/19 11:54,"438 Maple St, New York City, NY 10001" -221225,AAA Batteries (4-pack),1,2.99,06/20/19 21:45,"420 Forest St, Seattle, WA 98101" -221226,iPhone,1,700,06/07/19 13:05,"594 Johnson St, Dallas, TX 75001" -221227,Apple Airpods Headphones,1,150,06/13/19 10:15,"377 4th St, San Francisco, CA 94016" -221228,AA Batteries (4-pack),2,3.84,06/19/19 19:48,"657 Park St, Austin, TX 73301" -221229,iPhone,1,700,06/26/19 20:42,"687 Lincoln St, New York City, NY 10001" -221229,Lightning Charging Cable,1,14.95,06/26/19 20:42,"687 Lincoln St, New York City, NY 10001" -221229,Apple Airpods Headphones,1,150,06/26/19 20:42,"687 Lincoln St, New York City, NY 10001" -221230,27in 4K Gaming Monitor,1,389.99,06/06/19 17:29,"534 5th St, New York City, NY 10001" -221231,AA Batteries (4-pack),1,3.84,06/28/19 17:31,"2 10th St, New York City, NY 10001" -221232,Lightning Charging Cable,2,14.95,06/02/19 18:52,"344 Pine St, New York City, NY 10001" -221233,iPhone,1,700,06/10/19 17:13,"784 Main St, San Francisco, CA 94016" -221234,Apple Airpods Headphones,1,150,06/02/19 12:56,"128 Ridge St, Los Angeles, CA 90001" -221235,27in FHD Monitor,1,149.99,06/01/19 21:35,"842 Lincoln St, Portland, OR 97035" -221236,Google Phone,1,600,06/17/19 22:57,"261 Ridge St, New York City, NY 10001" -221237,USB-C Charging Cable,1,11.95,06/04/19 13:09,"356 12th St, Boston, MA 02215" -221238,ThinkPad Laptop,1,999.99,06/25/19 10:51,"135 Wilson St, New York City, NY 10001" -221239,AAA Batteries (4-pack),3,2.99,06/16/19 11:52,"851 Cherry St, Portland, OR 97035" -221240,Bose SoundSport Headphones,1,99.99,06/26/19 16:25,"905 Hill St, Boston, MA 02215" -221241,Google Phone,1,600,06/21/19 04:57,"685 South St, Los Angeles, CA 90001" -221241,Wired Headphones,1,11.99,06/21/19 04:57,"685 South St, Los Angeles, CA 90001" -221242,AAA Batteries (4-pack),1,2.99,06/26/19 18:11,"60 14th St, Austin, TX 73301" -221243,27in 4K Gaming Monitor,1,389.99,06/29/19 09:47,"929 South St, Atlanta, GA 30301" -221244,AA Batteries (4-pack),2,3.84,06/20/19 20:22,"545 6th St, Austin, TX 73301" -221245,Flatscreen TV,1,300,06/04/19 11:27,"899 Elm St, Atlanta, GA 30301" -221246,Bose SoundSport Headphones,1,99.99,06/13/19 20:24,"755 Pine St, New York City, NY 10001" -221247,AAA Batteries (4-pack),2,2.99,06/18/19 14:02,"406 Lincoln St, Austin, TX 73301" -221248,Wired Headphones,1,11.99,06/20/19 11:55,"33 Church St, Los Angeles, CA 90001" -221249,AAA Batteries (4-pack),1,2.99,06/17/19 22:33,"168 Johnson St, Los Angeles, CA 90001" -221250,Bose SoundSport Headphones,1,99.99,06/20/19 15:00,"252 1st St, San Francisco, CA 94016" -221251,LG Dryer,1,600.0,06/28/19 14:21,"918 14th St, Dallas, TX 75001" -221252,iPhone,1,700,06/03/19 19:46,"990 4th St, Seattle, WA 98101" -221253,USB-C Charging Cable,1,11.95,06/07/19 14:01,"534 Hickory St, Los Angeles, CA 90001" -221254,AAA Batteries (4-pack),1,2.99,06/25/19 22:43,"729 Elm St, New York City, NY 10001" -221255,ThinkPad Laptop,1,999.99,06/30/19 23:06,"722 Church St, Atlanta, GA 30301" -221256,Flatscreen TV,1,300,06/11/19 13:41,"345 12th St, Los Angeles, CA 90001" -221257,AA Batteries (4-pack),3,3.84,06/27/19 00:28,"472 West St, San Francisco, CA 94016" -221258,ThinkPad Laptop,1,999.99,06/02/19 15:17,"189 13th St, Los Angeles, CA 90001" -221259,AA Batteries (4-pack),3,3.84,06/21/19 19:48,"801 10th St, Seattle, WA 98101" -221260,Wired Headphones,1,11.99,06/13/19 07:19,"340 7th St, Seattle, WA 98101" -221261,Wired Headphones,1,11.99,06/01/19 19:28,"652 Cedar St, Los Angeles, CA 90001" -221262,iPhone,1,700,06/17/19 12:36,"53 4th St, San Francisco, CA 94016" -221262,Apple Airpods Headphones,1,150,06/17/19 12:36,"53 4th St, San Francisco, CA 94016" -221262,Wired Headphones,1,11.99,06/17/19 12:36,"53 4th St, San Francisco, CA 94016" -221263,Google Phone,1,600,06/19/19 17:25,"967 9th St, Portland, OR 97035" -221264,AAA Batteries (4-pack),1,2.99,06/06/19 20:25,"199 Church St, Seattle, WA 98101" -221265,Bose SoundSport Headphones,1,99.99,06/17/19 20:51,"679 Adams St, Boston, MA 02215" -221266,AA Batteries (4-pack),1,3.84,06/14/19 09:52,"321 5th St, San Francisco, CA 94016" -221267,Wired Headphones,1,11.99,06/21/19 19:30,"375 North St, Los Angeles, CA 90001" -221268,Apple Airpods Headphones,1,150,06/06/19 23:10,"720 Willow St, New York City, NY 10001" -221269,AA Batteries (4-pack),2,3.84,06/21/19 22:29,"320 River St, New York City, NY 10001" -221269,Lightning Charging Cable,1,14.95,06/21/19 22:29,"320 River St, New York City, NY 10001" -221270,Apple Airpods Headphones,1,150,06/11/19 18:59,"445 Highland St, New York City, NY 10001" -221271,AAA Batteries (4-pack),1,2.99,06/17/19 19:13,"334 Lakeview St, Boston, MA 02215" -221272,AA Batteries (4-pack),1,3.84,06/20/19 13:09,"377 Hill St, Los Angeles, CA 90001" -221273,AAA Batteries (4-pack),3,2.99,06/06/19 11:10,"309 Chestnut St, Dallas, TX 75001" -221274,USB-C Charging Cable,1,11.95,06/20/19 00:38,"990 Park St, San Francisco, CA 94016" -221275,Lightning Charging Cable,1,14.95,06/17/19 06:46,"309 Willow St, San Francisco, CA 94016" -221276,Wired Headphones,1,11.99,06/05/19 13:54,"607 West St, San Francisco, CA 94016" -221277,Google Phone,1,600,06/06/19 09:40,"570 Jefferson St, Seattle, WA 98101" -221278,USB-C Charging Cable,2,11.95,06/27/19 14:08,"966 Cedar St, San Francisco, CA 94016" -221279,27in FHD Monitor,1,149.99,06/14/19 14:02,"302 Park St, Seattle, WA 98101" -221280,AA Batteries (4-pack),2,3.84,06/29/19 21:51,"623 Cherry St, San Francisco, CA 94016" -221281,AAA Batteries (4-pack),2,2.99,06/24/19 23:58,"594 4th St, Los Angeles, CA 90001" -221282,iPhone,1,700,06/13/19 13:39,"486 Spruce St, Boston, MA 02215" -221283,Apple Airpods Headphones,1,150,06/26/19 12:31,"180 9th St, Seattle, WA 98101" -221284,Lightning Charging Cable,1,14.95,06/01/19 22:30,"136 Walnut St, Dallas, TX 75001" -221285,Macbook Pro Laptop,1,1700,06/15/19 18:08,"564 South St, San Francisco, CA 94016" -221286,Lightning Charging Cable,1,14.95,06/03/19 22:23,"572 5th St, Los Angeles, CA 90001" -221287,AAA Batteries (4-pack),2,2.99,06/02/19 13:14,"228 Madison St, Los Angeles, CA 90001" -221288,Apple Airpods Headphones,1,150,06/25/19 20:36,"849 Johnson St, San Francisco, CA 94016" -221289,USB-C Charging Cable,1,11.95,06/06/19 18:56,"590 Elm St, San Francisco, CA 94016" -221290,iPhone,1,700,06/25/19 18:51,"306 South St, Los Angeles, CA 90001" -221291,AAA Batteries (4-pack),2,2.99,06/13/19 07:51,"298 Spruce St, Boston, MA 02215" -221292,20in Monitor,1,109.99,06/24/19 21:36,"124 Pine St, Dallas, TX 75001" -221293,AAA Batteries (4-pack),1,2.99,06/11/19 16:46,"680 5th St, Seattle, WA 98101" -221294,Macbook Pro Laptop,1,1700,06/05/19 17:13,"202 Pine St, Seattle, WA 98101" -221295,Apple Airpods Headphones,1,150,06/07/19 20:01,"653 Lake St, San Francisco, CA 94016" -221296,Lightning Charging Cable,1,14.95,06/01/19 07:41,"843 North St, Dallas, TX 75001" -221297,Google Phone,1,600,06/10/19 08:55,"569 Cedar St, Boston, MA 02215" -221297,Bose SoundSport Headphones,1,99.99,06/10/19 08:55,"569 Cedar St, Boston, MA 02215" -221298,Lightning Charging Cable,1,14.95,06/23/19 14:25,"709 Elm St, Atlanta, GA 30301" -221299,iPhone,1,700,06/14/19 10:05,"761 Park St, Boston, MA 02215" -221300,Bose SoundSport Headphones,1,99.99,06/10/19 22:45,"825 Lincoln St, Dallas, TX 75001" -221301,Wired Headphones,3,11.99,06/15/19 13:15,"785 Hill St, New York City, NY 10001" -221302,USB-C Charging Cable,1,11.95,06/12/19 22:02,"157 8th St, Dallas, TX 75001" -221303,USB-C Charging Cable,1,11.95,06/19/19 15:08,"76 10th St, New York City, NY 10001" -221304,Apple Airpods Headphones,1,150,06/15/19 09:19,"660 7th St, Austin, TX 73301" -221305,USB-C Charging Cable,1,11.95,06/05/19 15:13,"133 Lincoln St, San Francisco, CA 94016" -221306,Bose SoundSport Headphones,1,99.99,06/01/19 12:03,"882 Maple St, Los Angeles, CA 90001" -221307,Apple Airpods Headphones,1,150,06/13/19 09:00,"838 Jackson St, Dallas, TX 75001" -221308,Google Phone,1,600,06/24/19 12:50,"833 9th St, San Francisco, CA 94016" -221309,34in Ultrawide Monitor,1,379.99,06/01/19 11:39,"510 Lakeview St, Portland, OR 97035" -221310,AAA Batteries (4-pack),3,2.99,06/05/19 12:41,"589 12th St, Atlanta, GA 30301" -221311,Flatscreen TV,1,300,06/02/19 17:59,"912 West St, Boston, MA 02215" -221312,USB-C Charging Cable,1,11.95,06/13/19 07:51,"456 Lincoln St, New York City, NY 10001" -221313,Google Phone,1,600,06/01/19 12:39,"122 Cedar St, San Francisco, CA 94016" -221314,Wired Headphones,1,11.99,06/28/19 13:48,"736 South St, Atlanta, GA 30301" -221315,Lightning Charging Cable,1,14.95,06/27/19 13:48,"682 Church St, Austin, TX 73301" -221316,AAA Batteries (4-pack),3,2.99,06/05/19 11:28,"992 Meadow St, Seattle, WA 98101" -221317,Lightning Charging Cable,3,14.95,06/05/19 18:49,"14 Forest St, San Francisco, CA 94016" -221318,Apple Airpods Headphones,1,150,06/15/19 12:24,"294 Center St, Boston, MA 02215" -221319,Google Phone,1,600,06/08/19 13:27,"32 Highland St, San Francisco, CA 94016" -221320,AAA Batteries (4-pack),1,2.99,06/04/19 18:14,"576 Maple St, New York City, NY 10001" -221321,AAA Batteries (4-pack),1,2.99,06/13/19 11:07,"534 Dogwood St, San Francisco, CA 94016" -221322,USB-C Charging Cable,1,11.95,06/13/19 13:30,"220 Main St, Seattle, WA 98101" -221323,USB-C Charging Cable,2,11.95,06/28/19 22:25,"193 West St, San Francisco, CA 94016" -221324,Apple Airpods Headphones,1,150,06/21/19 13:08,"288 Park St, San Francisco, CA 94016" -221325,Wired Headphones,1,11.99,06/30/19 11:55,"864 2nd St, San Francisco, CA 94016" -221326,ThinkPad Laptop,1,999.99,06/15/19 22:14,"431 Jefferson St, Boston, MA 02215" -221327,AA Batteries (4-pack),2,3.84,06/08/19 12:40,"200 Spruce St, New York City, NY 10001" -221328,USB-C Charging Cable,1,11.95,06/25/19 11:23,"49 Forest St, Austin, TX 73301" -221329,Google Phone,1,600,06/25/19 13:55,"267 Madison St, San Francisco, CA 94016" -221329,Wired Headphones,1,11.99,06/25/19 13:55,"267 Madison St, San Francisco, CA 94016" -221330,AAA Batteries (4-pack),2,2.99,06/11/19 13:44,"647 Chestnut St, Los Angeles, CA 90001" -221331,27in 4K Gaming Monitor,1,389.99,06/18/19 16:38,"954 Johnson St, New York City, NY 10001" -221332,iPhone,1,700,06/23/19 11:40,"904 Lakeview St, Dallas, TX 75001" -221333,Flatscreen TV,1,300,06/16/19 10:48,"321 8th St, Seattle, WA 98101" -221334,34in Ultrawide Monitor,1,379.99,06/02/19 19:41,"53 Johnson St, Portland, OR 97035" -221335,AA Batteries (4-pack),1,3.84,06/19/19 10:18,"165 7th St, New York City, NY 10001" -221336,27in FHD Monitor,1,149.99,06/21/19 16:59,"440 14th St, New York City, NY 10001" -221337,Lightning Charging Cable,1,14.95,06/18/19 17:03,"717 12th St, Boston, MA 02215" -221338,AA Batteries (4-pack),2,3.84,06/26/19 21:14,"68 Johnson St, New York City, NY 10001" -221339,USB-C Charging Cable,1,11.95,06/24/19 16:40,"746 Jackson St, San Francisco, CA 94016" -221340,20in Monitor,1,109.99,06/01/19 21:33,"136 River St, Boston, MA 02215" -221341,USB-C Charging Cable,1,11.95,06/16/19 02:06,"501 4th St, San Francisco, CA 94016" -,,,,, -221342,Apple Airpods Headphones,1,150,06/24/19 08:53,"956 Cherry St, Portland, OR 97035" -221343,Flatscreen TV,1,300,06/10/19 21:14,"783 Jackson St, Seattle, WA 98101" -221344,USB-C Charging Cable,1,11.95,06/16/19 20:36,"947 Main St, New York City, NY 10001" -221345,34in Ultrawide Monitor,1,379.99,06/16/19 15:27,"471 Walnut St, Boston, MA 02215" -221346,Google Phone,1,600,06/22/19 18:39,"18 Johnson St, Atlanta, GA 30301" -221347,Bose SoundSport Headphones,1,99.99,06/28/19 21:29,"254 Main St, San Francisco, CA 94016" -221348,AAA Batteries (4-pack),1,2.99,06/09/19 13:08,"663 Willow St, New York City, NY 10001" -221349,Wired Headphones,1,11.99,06/14/19 17:08,"777 7th St, Boston, MA 02215" -221350,Flatscreen TV,1,300,06/08/19 10:33,"594 South St, Atlanta, GA 30301" -221351,Wired Headphones,1,11.99,06/23/19 14:51,"482 Jefferson St, Portland, OR 97035" -221352,USB-C Charging Cable,1,11.95,06/18/19 21:03,"95 Washington St, San Francisco, CA 94016" -221353,Wired Headphones,1,11.99,06/09/19 17:38,"294 Lincoln St, Los Angeles, CA 90001" -221354,Apple Airpods Headphones,1,150,06/07/19 11:40,"963 South St, Portland, OR 97035" -221355,34in Ultrawide Monitor,1,379.99,06/10/19 09:02,"426 South St, Seattle, WA 98101" -221356,Wired Headphones,1,11.99,06/07/19 09:33,"597 Hill St, New York City, NY 10001" -221357,Wired Headphones,2,11.99,06/29/19 15:50,"696 Elm St, New York City, NY 10001" -221358,Wired Headphones,1,11.99,06/10/19 09:43,"324 Cherry St, Atlanta, GA 30301" -221359,Bose SoundSport Headphones,1,99.99,06/04/19 19:18,"929 Forest St, New York City, NY 10001" -221360,iPhone,1,700,06/24/19 14:10,"83 Jackson St, Los Angeles, CA 90001" -221361,AAA Batteries (4-pack),1,2.99,06/14/19 16:15,"308 Lakeview St, San Francisco, CA 94016" -221362,USB-C Charging Cable,1,11.95,06/22/19 08:32,"881 Madison St, Boston, MA 02215" -221363,Lightning Charging Cable,1,14.95,06/30/19 07:43,"795 13th St, Seattle, WA 98101" -221364,27in FHD Monitor,1,149.99,06/26/19 09:08,"480 North St, Portland, OR 97035" -221365,USB-C Charging Cable,2,11.95,06/28/19 22:31,"224 Park St, Dallas, TX 75001" -221366,AA Batteries (4-pack),3,3.84,06/15/19 18:06,"2 9th St, Dallas, TX 75001" -221367,Apple Airpods Headphones,1,150,06/06/19 17:19,"657 Park St, Portland, OR 97035" -221368,Google Phone,1,600,06/28/19 09:18,"67 5th St, Boston, MA 02215" -221369,USB-C Charging Cable,1,11.95,06/18/19 00:04,"534 Dogwood St, San Francisco, CA 94016" -221370,Lightning Charging Cable,1,14.95,06/03/19 22:52,"89 Madison St, San Francisco, CA 94016" -221371,AA Batteries (4-pack),1,3.84,06/16/19 11:43,"427 Main St, Atlanta, GA 30301" -221372,USB-C Charging Cable,1,11.95,06/24/19 20:00,"716 Main St, Los Angeles, CA 90001" -221373,Vareebadd Phone,1,400,06/09/19 11:27,"163 Jefferson St, San Francisco, CA 94016" -221374,USB-C Charging Cable,1,11.95,06/11/19 08:57,"402 11th St, Los Angeles, CA 90001" -221375,USB-C Charging Cable,1,11.95,06/17/19 06:48,"842 11th St, San Francisco, CA 94016" -221376,AAA Batteries (4-pack),1,2.99,06/05/19 14:13,"152 Chestnut St, Portland, OR 97035" -221377,27in FHD Monitor,1,149.99,06/13/19 15:25,"343 7th St, San Francisco, CA 94016" -221377,Bose SoundSport Headphones,1,99.99,06/13/19 15:25,"343 7th St, San Francisco, CA 94016" -221378,27in 4K Gaming Monitor,1,389.99,06/05/19 18:25,"196 Johnson St, Los Angeles, CA 90001" -221379,Wired Headphones,1,11.99,06/02/19 13:57,"69 Washington St, Los Angeles, CA 90001" -221380,Bose SoundSport Headphones,1,99.99,06/24/19 15:31,"357 Main St, Los Angeles, CA 90001" -221381,USB-C Charging Cable,1,11.95,06/14/19 09:45,"353 Lake St, San Francisco, CA 94016" -221382,Apple Airpods Headphones,1,150,06/22/19 13:22,"760 Sunset St, Atlanta, GA 30301" -221383,27in 4K Gaming Monitor,1,389.99,06/26/19 15:41,"280 Johnson St, Atlanta, GA 30301" -221384,Apple Airpods Headphones,1,150,06/08/19 08:38,"834 Lincoln St, Boston, MA 02215" -221385,Macbook Pro Laptop,1,1700,06/03/19 21:20,"171 Wilson St, Los Angeles, CA 90001" -221386,iPhone,1,700,06/21/19 11:22,"735 Park St, Portland, OR 97035" -221387,Google Phone,1,600,06/20/19 22:47,"556 Center St, New York City, NY 10001" -221387,USB-C Charging Cable,1,11.95,06/20/19 22:47,"556 Center St, New York City, NY 10001" -221388,27in FHD Monitor,1,149.99,06/04/19 14:31,"713 Lake St, Portland, OR 97035" -221389,AA Batteries (4-pack),1,3.84,06/03/19 21:19,"935 River St, Los Angeles, CA 90001" -221390,AA Batteries (4-pack),1,3.84,06/08/19 23:08,"44 4th St, San Francisco, CA 94016" -221391,27in 4K Gaming Monitor,1,389.99,06/10/19 10:03,"458 Hickory St, San Francisco, CA 94016" -221392,27in FHD Monitor,1,149.99,06/04/19 21:19,"370 13th St, Seattle, WA 98101" -221393,AAA Batteries (4-pack),3,2.99,06/07/19 13:12,"245 Ridge St, Austin, TX 73301" -221394,USB-C Charging Cable,3,11.95,06/04/19 16:10,"146 Johnson St, San Francisco, CA 94016" -221395,Lightning Charging Cable,1,14.95,06/16/19 22:31,"598 Highland St, Seattle, WA 98101" -221396,Bose SoundSport Headphones,1,99.99,06/14/19 23:08,"577 7th St, Los Angeles, CA 90001" -221397,Wired Headphones,1,11.99,06/21/19 15:36,"613 Spruce St, Boston, MA 02215" -221398,iPhone,1,700,06/28/19 08:39,"691 Forest St, San Francisco, CA 94016" -221399,Bose SoundSport Headphones,1,99.99,06/07/19 15:43,"25 North St, San Francisco, CA 94016" -221400,Wired Headphones,1,11.99,06/28/19 17:54,"838 7th St, San Francisco, CA 94016" -221401,USB-C Charging Cable,1,11.95,06/30/19 19:24,"198 South St, Portland, OR 97035" -221402,Lightning Charging Cable,1,14.95,06/30/19 21:01,"754 Meadow St, Atlanta, GA 30301" -221403,20in Monitor,1,109.99,06/19/19 08:04,"498 Jackson St, San Francisco, CA 94016" -221404,Lightning Charging Cable,1,14.95,06/28/19 07:04,"659 8th St, San Francisco, CA 94016" -221405,Lightning Charging Cable,1,14.95,06/09/19 11:38,"435 14th St, San Francisco, CA 94016" -221406,Lightning Charging Cable,1,14.95,06/29/19 13:53,"478 Church St, Boston, MA 02215" -221407,USB-C Charging Cable,1,11.95,06/18/19 10:55,"328 Lincoln St, Portland, OR 97035" -221408,Google Phone,1,600,06/10/19 08:10,"209 Lakeview St, San Francisco, CA 94016" -221409,Lightning Charging Cable,1,14.95,06/13/19 11:25,"329 Meadow St, Los Angeles, CA 90001" -221410,27in 4K Gaming Monitor,1,389.99,06/05/19 16:51,"446 5th St, San Francisco, CA 94016" -221411,Bose SoundSport Headphones,1,99.99,06/22/19 19:36,"609 8th St, San Francisco, CA 94016" -221412,USB-C Charging Cable,1,11.95,06/19/19 22:46,"206 Adams St, New York City, NY 10001" -221413,34in Ultrawide Monitor,1,379.99,06/29/19 19:48,"982 Maple St, Los Angeles, CA 90001" -221414,iPhone,1,700,06/05/19 10:05,"517 4th St, San Francisco, CA 94016" -221415,20in Monitor,1,109.99,06/14/19 15:48,"362 13th St, San Francisco, CA 94016" -221416,Apple Airpods Headphones,1,150,06/10/19 19:48,"166 Madison St, New York City, NY 10001" -221417,Lightning Charging Cable,1,14.95,06/16/19 22:36,"537 Jefferson St, Los Angeles, CA 90001" -221418,LG Washing Machine,1,600.0,06/04/19 21:17,"729 Dogwood St, Los Angeles, CA 90001" -221419,AA Batteries (4-pack),2,3.84,06/30/19 22:05,"600 Highland St, San Francisco, CA 94016" -221420,Macbook Pro Laptop,1,1700,06/08/19 04:34,"200 Lakeview St, Boston, MA 02215" -221421,AA Batteries (4-pack),1,3.84,06/21/19 23:41,"597 Hickory St, Boston, MA 02215" -221422,27in FHD Monitor,1,149.99,06/04/19 11:21,"677 Highland St, Portland, ME 04101" -221423,USB-C Charging Cable,1,11.95,06/10/19 21:29,"885 11th St, San Francisco, CA 94016" -221424,ThinkPad Laptop,1,999.99,06/05/19 14:51,"672 River St, Atlanta, GA 30301" -221425,USB-C Charging Cable,1,11.95,06/06/19 16:15,"717 West St, Austin, TX 73301" -221426,Macbook Pro Laptop,1,1700,06/17/19 20:29,"97 Meadow St, Atlanta, GA 30301" -221427,AA Batteries (4-pack),1,3.84,06/09/19 18:14,"925 6th St, Los Angeles, CA 90001" -221428,AA Batteries (4-pack),1,3.84,06/18/19 16:11,"262 5th St, San Francisco, CA 94016" -221429,AAA Batteries (4-pack),1,2.99,06/02/19 17:56,"861 6th St, San Francisco, CA 94016" -221430,AAA Batteries (4-pack),1,2.99,06/29/19 21:00,"489 Spruce St, Boston, MA 02215" -221431,Bose SoundSport Headphones,1,99.99,06/19/19 10:26,"973 Maple St, New York City, NY 10001" -221432,Bose SoundSport Headphones,1,99.99,06/19/19 06:52,"984 7th St, San Francisco, CA 94016" -221433,ThinkPad Laptop,1,999.99,06/10/19 15:43,"386 Elm St, Los Angeles, CA 90001" -221434,AA Batteries (4-pack),2,3.84,06/06/19 13:42,"714 4th St, Atlanta, GA 30301" -221435,AAA Batteries (4-pack),2,2.99,06/26/19 19:58,"719 Lake St, Boston, MA 02215" -221436,AAA Batteries (4-pack),1,2.99,06/28/19 07:50,"269 Meadow St, San Francisco, CA 94016" -221437,34in Ultrawide Monitor,1,379.99,06/17/19 20:30,"597 Center St, San Francisco, CA 94016" -221438,AAA Batteries (4-pack),2,2.99,06/28/19 19:19,"494 Spruce St, Atlanta, GA 30301" -221439,Wired Headphones,1,11.99,06/26/19 18:07,"311 Center St, Seattle, WA 98101" -221440,Bose SoundSport Headphones,1,99.99,06/24/19 17:56,"367 Jefferson St, Portland, ME 04101" -221441,USB-C Charging Cable,1,11.95,06/16/19 11:27,"187 10th St, Los Angeles, CA 90001" -221442,AAA Batteries (4-pack),1,2.99,06/27/19 18:07,"238 4th St, Los Angeles, CA 90001" -221443,AA Batteries (4-pack),1,3.84,06/03/19 13:18,"915 Forest St, Los Angeles, CA 90001" -221444,iPhone,1,700,06/23/19 12:19,"299 Ridge St, Seattle, WA 98101" -221445,Apple Airpods Headphones,1,150,06/16/19 20:48,"837 Main St, Seattle, WA 98101" -221446,Bose SoundSport Headphones,1,99.99,06/21/19 12:53,"653 Center St, Los Angeles, CA 90001" -221447,AAA Batteries (4-pack),1,2.99,06/10/19 08:46,"247 Jefferson St, San Francisco, CA 94016" -221448,Bose SoundSport Headphones,1,99.99,06/05/19 12:20,"837 South St, New York City, NY 10001" -221449,Wired Headphones,1,11.99,06/15/19 21:09,"920 Adams St, San Francisco, CA 94016" -221450,Wired Headphones,1,11.99,06/05/19 18:44,"552 Sunset St, San Francisco, CA 94016" -221451,Wired Headphones,1,11.99,06/16/19 15:25,"275 Lakeview St, Boston, MA 02215" -221452,20in Monitor,1,109.99,06/29/19 19:03,"193 Spruce St, Dallas, TX 75001" -221453,Apple Airpods Headphones,1,150,06/25/19 19:33,"902 9th St, San Francisco, CA 94016" -221454,Apple Airpods Headphones,1,150,06/30/19 12:42,"887 12th St, Boston, MA 02215" -221455,20in Monitor,1,109.99,06/09/19 11:24,"757 River St, San Francisco, CA 94016" -221456,20in Monitor,1,109.99,06/29/19 14:50,"827 9th St, Boston, MA 02215" -221457,Bose SoundSport Headphones,1,99.99,06/26/19 15:36,"499 Johnson St, Atlanta, GA 30301" -221458,AA Batteries (4-pack),1,3.84,06/19/19 12:16,"864 Lakeview St, Boston, MA 02215" -221459,Lightning Charging Cable,1,14.95,06/13/19 14:15,"511 14th St, Boston, MA 02215" -221460,USB-C Charging Cable,1,11.95,06/03/19 17:32,"19 Sunset St, San Francisco, CA 94016" -221461,USB-C Charging Cable,1,11.95,06/01/19 21:53,"549 7th St, Los Angeles, CA 90001" -221462,Macbook Pro Laptop,1,1700,06/19/19 14:27,"827 Cedar St, San Francisco, CA 94016" -221463,AA Batteries (4-pack),2,3.84,06/26/19 12:17,"451 South St, New York City, NY 10001" -221464,Vareebadd Phone,1,400,06/04/19 00:50,"133 Spruce St, Los Angeles, CA 90001" -221465,iPhone,1,700,06/02/19 18:18,"994 River St, New York City, NY 10001" -221466,27in 4K Gaming Monitor,1,389.99,06/15/19 21:10,"873 West St, San Francisco, CA 94016" -221467,Bose SoundSport Headphones,1,99.99,06/04/19 20:01,"90 Cedar St, Atlanta, GA 30301" -221468,Wired Headphones,1,11.99,06/12/19 16:05,"384 Main St, Atlanta, GA 30301" -221469,ThinkPad Laptop,1,999.99,06/03/19 12:02,"250 Elm St, Atlanta, GA 30301" -221470,AA Batteries (4-pack),1,3.84,06/25/19 17:24,"575 12th St, Boston, MA 02215" -221471,ThinkPad Laptop,1,999.99,06/24/19 17:03,"530 Highland St, New York City, NY 10001" -221472,Wired Headphones,1,11.99,06/04/19 20:07,"110 Willow St, Seattle, WA 98101" -221473,34in Ultrawide Monitor,1,379.99,06/16/19 11:18,"127 Spruce St, New York City, NY 10001" -221474,34in Ultrawide Monitor,1,379.99,06/23/19 19:58,"158 Washington St, San Francisco, CA 94016" -221475,Apple Airpods Headphones,1,150,06/05/19 19:43,"412 Spruce St, New York City, NY 10001" -221476,27in 4K Gaming Monitor,1,389.99,06/24/19 00:22,"772 1st St, New York City, NY 10001" -221477,USB-C Charging Cable,1,11.95,06/23/19 20:25,"899 5th St, Boston, MA 02215" -221478,20in Monitor,1,109.99,06/05/19 23:26,"146 Maple St, Atlanta, GA 30301" -221479,AAA Batteries (4-pack),2,2.99,06/04/19 11:05,"653 Washington St, Dallas, TX 75001" -221480,Apple Airpods Headphones,1,150,06/30/19 07:30,"630 Church St, San Francisco, CA 94016" -221481,AAA Batteries (4-pack),1,2.99,06/08/19 11:29,"222 Walnut St, Portland, OR 97035" -221482,Lightning Charging Cable,1,14.95,06/11/19 11:01,"194 Lake St, Boston, MA 02215" -221483,Lightning Charging Cable,1,14.95,06/21/19 08:07,"448 Willow St, Austin, TX 73301" -221484,Wired Headphones,1,11.99,06/04/19 14:14,"213 Sunset St, Atlanta, GA 30301" -221484,27in 4K Gaming Monitor,1,389.99,06/04/19 14:14,"213 Sunset St, Atlanta, GA 30301" -221485,Vareebadd Phone,1,400,06/15/19 19:37,"434 12th St, Dallas, TX 75001" -221485,USB-C Charging Cable,1,11.95,06/15/19 19:37,"434 12th St, Dallas, TX 75001" -221486,USB-C Charging Cable,1,11.95,06/13/19 09:25,"432 Sunset St, Dallas, TX 75001" -221487,USB-C Charging Cable,1,11.95,06/29/19 14:49,"300 Lake St, San Francisco, CA 94016" -221488,AA Batteries (4-pack),1,3.84,06/30/19 18:06,"721 South St, Portland, OR 97035" -221489,Lightning Charging Cable,1,14.95,06/24/19 20:21,"90 Meadow St, Seattle, WA 98101" -221490,20in Monitor,1,109.99,06/19/19 13:40,"858 7th St, Los Angeles, CA 90001" -221491,AAA Batteries (4-pack),2,2.99,06/16/19 19:48,"325 Dogwood St, San Francisco, CA 94016" -221492,Bose SoundSport Headphones,1,99.99,06/10/19 02:52,"661 4th St, Los Angeles, CA 90001" -221493,27in FHD Monitor,1,149.99,06/14/19 14:22,"724 Wilson St, San Francisco, CA 94016" -221493,Apple Airpods Headphones,1,150,06/14/19 14:22,"724 Wilson St, San Francisco, CA 94016" -221494,20in Monitor,1,109.99,06/19/19 10:46,"838 Lakeview St, Dallas, TX 75001" -221495,AAA Batteries (4-pack),1,2.99,06/21/19 23:31,"347 Willow St, Austin, TX 73301" -221496,ThinkPad Laptop,1,999.99,06/12/19 14:16,"828 River St, New York City, NY 10001" -221497,AA Batteries (4-pack),1,3.84,06/16/19 09:50,"537 Cherry St, Dallas, TX 75001" -221498,Apple Airpods Headphones,1,150,06/13/19 21:16,"3 North St, Los Angeles, CA 90001" -221499,Lightning Charging Cable,1,14.95,06/26/19 09:25,"203 Chestnut St, Atlanta, GA 30301" -221500,Apple Airpods Headphones,1,150,06/10/19 17:15,"744 Walnut St, San Francisco, CA 94016" -221501,Vareebadd Phone,1,400,06/06/19 13:15,"708 Willow St, Los Angeles, CA 90001" -221502,34in Ultrawide Monitor,1,379.99,06/22/19 15:19,"496 7th St, Los Angeles, CA 90001" -221503,27in FHD Monitor,1,149.99,06/06/19 19:39,"746 Adams St, Seattle, WA 98101" -221504,Google Phone,1,600,06/18/19 15:06,"81 Lake St, San Francisco, CA 94016" -221505,AAA Batteries (4-pack),1,2.99,06/15/19 20:47,"845 Adams St, Seattle, WA 98101" -221506,USB-C Charging Cable,1,11.95,06/12/19 21:58,"816 9th St, San Francisco, CA 94016" -221507,USB-C Charging Cable,1,11.95,06/09/19 20:14,"241 8th St, Los Angeles, CA 90001" -221508,AAA Batteries (4-pack),1,2.99,06/29/19 11:59,"467 14th St, New York City, NY 10001" -221509,20in Monitor,1,109.99,06/25/19 17:17,"345 Johnson St, Dallas, TX 75001" -221510,Wired Headphones,2,11.99,06/17/19 17:12,"787 Chestnut St, Dallas, TX 75001" -221511,20in Monitor,1,109.99,06/13/19 23:01,"608 Chestnut St, Seattle, WA 98101" -221512,27in FHD Monitor,1,149.99,06/03/19 09:40,"724 14th St, New York City, NY 10001" -221513,Vareebadd Phone,1,400,06/04/19 13:59,"341 Maple St, San Francisco, CA 94016" -221514,AA Batteries (4-pack),3,3.84,06/24/19 10:35,"55 Lake St, Los Angeles, CA 90001" -221515,USB-C Charging Cable,1,11.95,06/28/19 14:52,"539 Washington St, Austin, TX 73301" -221516,Lightning Charging Cable,1,14.95,06/10/19 21:59,"718 Cedar St, Atlanta, GA 30301" -221517,iPhone,1,700,06/20/19 00:18,"876 South St, New York City, NY 10001" -221518,AA Batteries (4-pack),2,3.84,06/16/19 17:26,"2 12th St, Portland, ME 04101" -221519,AA Batteries (4-pack),1,3.84,06/17/19 20:47,"135 Walnut St, Boston, MA 02215" -221520,Lightning Charging Cable,2,14.95,06/20/19 16:32,"546 8th St, Boston, MA 02215" -221521,AAA Batteries (4-pack),1,2.99,06/21/19 13:33,"231 Chestnut St, San Francisco, CA 94016" -221522,AA Batteries (4-pack),2,3.84,06/10/19 15:36,"289 Hickory St, Atlanta, GA 30301" -221523,Apple Airpods Headphones,1,150,06/23/19 19:25,"877 Wilson St, Boston, MA 02215" -221524,Google Phone,1,600,06/01/19 15:03,"281 Johnson St, San Francisco, CA 94016" -221525,20in Monitor,1,109.99,06/12/19 23:01,"343 11th St, Austin, TX 73301" -221526,AAA Batteries (4-pack),3,2.99,06/19/19 11:46,"186 Church St, Boston, MA 02215" -221527,Flatscreen TV,1,300,06/15/19 10:55,"135 9th St, Los Angeles, CA 90001" -221528,AAA Batteries (4-pack),1,2.99,06/25/19 11:38,"130 1st St, Los Angeles, CA 90001" -221529,Wired Headphones,1,11.99,06/01/19 23:27,"335 Wilson St, Portland, OR 97035" -221530,AAA Batteries (4-pack),2,2.99,06/02/19 00:49,"191 Meadow St, San Francisco, CA 94016" -221531,Bose SoundSport Headphones,1,99.99,06/15/19 21:04,"772 Chestnut St, Boston, MA 02215" -221532,Macbook Pro Laptop,1,1700,06/13/19 22:59,"90 Cedar St, Austin, TX 73301" -221533,USB-C Charging Cable,1,11.95,06/03/19 19:24,"665 Johnson St, Dallas, TX 75001" -221534,Lightning Charging Cable,1,14.95,06/01/19 12:12,"216 1st St, Dallas, TX 75001" -221535,34in Ultrawide Monitor,1,379.99,06/12/19 00:20,"291 13th St, New York City, NY 10001" -221536,Wired Headphones,1,11.99,06/25/19 00:22,"584 Adams St, Seattle, WA 98101" -221537,iPhone,1,700,06/06/19 10:43,"492 10th St, Los Angeles, CA 90001" -221538,Apple Airpods Headphones,1,150,06/10/19 01:08,"690 8th St, Los Angeles, CA 90001" -221539,USB-C Charging Cable,1,11.95,06/14/19 18:02,"580 Lakeview St, Los Angeles, CA 90001" -221540,Apple Airpods Headphones,1,150,06/29/19 10:02,"903 Center St, Austin, TX 73301" -221541,Bose SoundSport Headphones,1,99.99,06/04/19 16:06,"507 Elm St, Portland, OR 97035" -221542,34in Ultrawide Monitor,1,379.99,06/21/19 15:23,"707 Meadow St, Boston, MA 02215" -221543,USB-C Charging Cable,1,11.95,06/02/19 19:57,"771 Church St, Portland, OR 97035" -221544,USB-C Charging Cable,1,11.95,06/13/19 14:57,"867 11th St, Seattle, WA 98101" -221545,34in Ultrawide Monitor,1,379.99,06/13/19 13:56,"865 12th St, Portland, OR 97035" -221546,Lightning Charging Cable,1,14.95,06/16/19 11:56,"312 North St, Atlanta, GA 30301" -221547,Apple Airpods Headphones,1,150,06/26/19 18:55,"464 Highland St, Boston, MA 02215" -221548,Macbook Pro Laptop,1,1700,06/14/19 15:51,"439 Hill St, Portland, ME 04101" -221549,Wired Headphones,1,11.99,06/01/19 22:52,"163 Main St, Los Angeles, CA 90001" -221550,27in FHD Monitor,1,149.99,06/07/19 19:51,"699 Forest St, Portland, OR 97035" -221551,Bose SoundSport Headphones,1,99.99,06/23/19 13:31,"591 7th St, Austin, TX 73301" -221552,AA Batteries (4-pack),2,3.84,06/06/19 22:16,"529 8th St, Boston, MA 02215" -221553,iPhone,1,700,06/14/19 08:49,"772 Sunset St, Los Angeles, CA 90001" -221553,AA Batteries (4-pack),1,3.84,06/14/19 08:49,"772 Sunset St, Los Angeles, CA 90001" -221554,34in Ultrawide Monitor,1,379.99,06/22/19 20:12,"73 Center St, Atlanta, GA 30301" -221555,Wired Headphones,1,11.99,06/05/19 00:07,"264 Sunset St, San Francisco, CA 94016" -221556,Lightning Charging Cable,1,14.95,06/27/19 02:59,"842 Cherry St, Dallas, TX 75001" -221557,Apple Airpods Headphones,1,150,06/28/19 07:59,"106 Meadow St, Boston, MA 02215" -221558,Lightning Charging Cable,1,14.95,06/01/19 12:03,"590 1st St, Boston, MA 02215" -221559,AAA Batteries (4-pack),1,2.99,06/06/19 16:36,"468 11th St, New York City, NY 10001" -221560,USB-C Charging Cable,1,11.95,06/23/19 12:04,"286 7th St, New York City, NY 10001" -221561,AA Batteries (4-pack),1,3.84,06/10/19 11:53,"407 9th St, Boston, MA 02215" -221562,Bose SoundSport Headphones,1,99.99,06/02/19 08:38,"520 Spruce St, Boston, MA 02215" -221563,AA Batteries (4-pack),1,3.84,06/21/19 18:01,"461 Washington St, Portland, OR 97035" -221564,AAA Batteries (4-pack),3,2.99,06/13/19 05:45,"871 7th St, Boston, MA 02215" -221565,AAA Batteries (4-pack),1,2.99,06/30/19 21:00,"291 Center St, Austin, TX 73301" -221566,Bose SoundSport Headphones,1,99.99,06/14/19 01:18,"165 Dogwood St, Los Angeles, CA 90001" -221567,AAA Batteries (4-pack),1,2.99,06/17/19 15:31,"426 Chestnut St, San Francisco, CA 94016" -221568,Google Phone,1,600,06/12/19 15:42,"537 Lincoln St, San Francisco, CA 94016" -221569,Google Phone,1,600,06/07/19 00:08,"724 Dogwood St, New York City, NY 10001" -221570,Bose SoundSport Headphones,1,99.99,06/24/19 21:02,"40 8th St, New York City, NY 10001" -221571,20in Monitor,1,109.99,06/28/19 10:31,"311 7th St, San Francisco, CA 94016" -221572,AAA Batteries (4-pack),1,2.99,06/04/19 17:29,"336 Lake St, Seattle, WA 98101" -221573,Lightning Charging Cable,1,14.95,06/27/19 21:05,"211 Johnson St, Los Angeles, CA 90001" -221574,AA Batteries (4-pack),1,3.84,06/21/19 09:27,"554 Adams St, Dallas, TX 75001" -221575,Apple Airpods Headphones,1,150,06/02/19 15:48,"6 Church St, Seattle, WA 98101" -221576,Wired Headphones,1,11.99,06/02/19 18:55,"18 Ridge St, San Francisco, CA 94016" -221577,Macbook Pro Laptop,1,1700,06/23/19 17:32,"293 Forest St, Atlanta, GA 30301" -221578,AA Batteries (4-pack),1,3.84,06/03/19 16:04,"576 Church St, New York City, NY 10001" -221579,Macbook Pro Laptop,1,1700,06/15/19 08:42,"132 Elm St, New York City, NY 10001" -221580,Wired Headphones,1,11.99,06/07/19 20:50,"820 Highland St, Portland, ME 04101" -221581,27in 4K Gaming Monitor,1,389.99,06/22/19 21:21,"218 11th St, New York City, NY 10001" -221582,Google Phone,1,600,06/30/19 07:34,"20 Walnut St, Los Angeles, CA 90001" -221583,Wired Headphones,1,11.99,06/22/19 19:31,"86 South St, Boston, MA 02215" -221584,USB-C Charging Cable,1,11.95,06/15/19 00:30,"500 Walnut St, Los Angeles, CA 90001" -221585,Flatscreen TV,1,300,06/19/19 21:55,"919 Cedar St, New York City, NY 10001" -221586,Lightning Charging Cable,1,14.95,06/30/19 01:52,"341 Elm St, New York City, NY 10001" -221587,Wired Headphones,1,11.99,06/18/19 14:12,"61 11th St, Portland, OR 97035" -221588,Google Phone,1,600,06/03/19 09:07,"516 Madison St, New York City, NY 10001" -221588,USB-C Charging Cable,1,11.95,06/03/19 09:07,"516 Madison St, New York City, NY 10001" -221589,Lightning Charging Cable,1,14.95,06/20/19 08:33,"136 1st St, San Francisco, CA 94016" -221590,USB-C Charging Cable,1,11.95,06/15/19 13:23,"292 Maple St, New York City, NY 10001" -221591,Apple Airpods Headphones,1,150,06/07/19 09:56,"853 River St, Portland, OR 97035" -221592,Google Phone,1,600,06/23/19 12:56,"121 Church St, San Francisco, CA 94016" -221592,USB-C Charging Cable,1,11.95,06/23/19 12:56,"121 Church St, San Francisco, CA 94016" -221593,USB-C Charging Cable,1,11.95,06/07/19 18:03,"340 2nd St, New York City, NY 10001" -221594,USB-C Charging Cable,2,11.95,06/25/19 09:21,"860 Walnut St, New York City, NY 10001" -221595,AA Batteries (4-pack),1,3.84,06/13/19 20:44,"52 Elm St, Dallas, TX 75001" -221596,Wired Headphones,1,11.99,06/27/19 11:51,"108 8th St, Los Angeles, CA 90001" -221597,AAA Batteries (4-pack),1,2.99,06/10/19 13:08,"610 Highland St, Dallas, TX 75001" -221598,27in 4K Gaming Monitor,1,389.99,06/24/19 15:33,"880 10th St, Seattle, WA 98101" -221599,Wired Headphones,2,11.99,06/03/19 08:29,"344 Elm St, Los Angeles, CA 90001" -221600,Macbook Pro Laptop,1,1700,06/27/19 17:01,"688 South St, Los Angeles, CA 90001" -221601,Google Phone,1,600,06/20/19 10:46,"771 South St, Los Angeles, CA 90001" -221602,iPhone,1,700,06/11/19 21:58,"939 Pine St, San Francisco, CA 94016" -221603,Lightning Charging Cable,1,14.95,06/09/19 16:09,"511 14th St, Austin, TX 73301" -221604,Macbook Pro Laptop,1,1700,06/09/19 23:14,"598 8th St, Seattle, WA 98101" -221605,Lightning Charging Cable,1,14.95,06/26/19 13:00,"865 Spruce St, Los Angeles, CA 90001" -221606,Wired Headphones,1,11.99,06/29/19 14:08,"249 Adams St, San Francisco, CA 94016" -221607,27in 4K Gaming Monitor,1,389.99,06/13/19 13:14,"508 Madison St, Los Angeles, CA 90001" -221608,ThinkPad Laptop,1,999.99,06/11/19 12:15,"563 Church St, Dallas, TX 75001" -221609,LG Dryer,1,600.0,06/26/19 21:21,"88 6th St, New York City, NY 10001" -221610,USB-C Charging Cable,1,11.95,06/25/19 09:25,"930 Center St, Austin, TX 73301" -221611,AAA Batteries (4-pack),1,2.99,06/13/19 13:12,"839 West St, New York City, NY 10001" -221612,AAA Batteries (4-pack),3,2.99,06/15/19 13:33,"527 Lake St, Portland, OR 97035" -221613,AAA Batteries (4-pack),2,2.99,06/11/19 02:31,"588 Pine St, Boston, MA 02215" -221614,USB-C Charging Cable,1,11.95,06/18/19 18:59,"491 Dogwood St, Portland, ME 04101" -221615,AAA Batteries (4-pack),1,2.99,06/16/19 17:11,"766 11th St, Boston, MA 02215" -221616,AAA Batteries (4-pack),1,2.99,06/19/19 16:33,"556 Meadow St, Atlanta, GA 30301" -221617,Apple Airpods Headphones,1,150,06/04/19 18:43,"778 South St, San Francisco, CA 94016" -221618,Wired Headphones,1,11.99,06/15/19 11:20,"710 Ridge St, New York City, NY 10001" -221619,20in Monitor,1,109.99,06/05/19 13:45,"206 14th St, Dallas, TX 75001" -221620,Lightning Charging Cable,1,14.95,06/23/19 13:04,"325 8th St, San Francisco, CA 94016" -221621,Flatscreen TV,1,300,06/26/19 12:27,"487 6th St, Atlanta, GA 30301" -221622,AAA Batteries (4-pack),2,2.99,06/22/19 11:12,"225 Washington St, Portland, OR 97035" -221623,Bose SoundSport Headphones,1,99.99,06/05/19 13:35,"51 Walnut St, Los Angeles, CA 90001" -221624,USB-C Charging Cable,1,11.95,06/01/19 12:32,"65 Madison St, Los Angeles, CA 90001" -221625,27in FHD Monitor,1,149.99,06/09/19 10:41,"484 North St, Seattle, WA 98101" -221626,AAA Batteries (4-pack),1,2.99,06/05/19 06:21,"384 Elm St, Boston, MA 02215" -221627,20in Monitor,1,109.99,06/16/19 21:22,"400 Lake St, New York City, NY 10001" -221628,34in Ultrawide Monitor,1,379.99,06/19/19 20:53,"829 4th St, Dallas, TX 75001" -221629,Lightning Charging Cable,1,14.95,06/22/19 17:30,"592 Hickory St, Los Angeles, CA 90001" -221630,Bose SoundSport Headphones,1,99.99,06/19/19 13:08,"418 Madison St, Austin, TX 73301" -221631,Apple Airpods Headphones,1,150,06/07/19 11:43,"196 13th St, Austin, TX 73301" -221632,AAA Batteries (4-pack),3,2.99,06/26/19 18:40,"225 Hickory St, Portland, OR 97035" -221633,Wired Headphones,1,11.99,06/16/19 18:52,"911 Park St, San Francisco, CA 94016" -,,,,, -221634,AAA Batteries (4-pack),1,2.99,06/19/19 12:28,"832 13th St, Dallas, TX 75001" -221635,Macbook Pro Laptop,1,1700,06/21/19 15:37,"698 Highland St, San Francisco, CA 94016" -221636,AA Batteries (4-pack),1,3.84,06/19/19 18:48,"385 Sunset St, Boston, MA 02215" -221637,20in Monitor,1,109.99,06/09/19 12:52,"661 8th St, Los Angeles, CA 90001" -221638,Bose SoundSport Headphones,1,99.99,06/16/19 21:42,"477 9th St, Los Angeles, CA 90001" -221639,Bose SoundSport Headphones,1,99.99,06/20/19 21:38,"125 Johnson St, Austin, TX 73301" -221640,Bose SoundSport Headphones,1,99.99,06/30/19 08:37,"837 12th St, Boston, MA 02215" -221641,USB-C Charging Cable,1,11.95,06/03/19 13:12,"751 13th St, San Francisco, CA 94016" -221642,Apple Airpods Headphones,1,150,06/19/19 17:53,"778 Washington St, Portland, ME 04101" -221643,27in 4K Gaming Monitor,1,389.99,06/29/19 12:13,"314 9th St, Austin, TX 73301" -221643,Google Phone,1,600,06/29/19 12:13,"314 9th St, Austin, TX 73301" -221644,27in FHD Monitor,1,149.99,06/28/19 18:57,"777 Adams St, New York City, NY 10001" -221645,AA Batteries (4-pack),1,3.84,06/24/19 11:01,"232 Forest St, Los Angeles, CA 90001" -221646,USB-C Charging Cable,1,11.95,06/05/19 22:30,"352 10th St, Boston, MA 02215" -221647,Lightning Charging Cable,1,14.95,06/22/19 12:28,"698 Sunset St, Los Angeles, CA 90001" -221648,Vareebadd Phone,1,400,06/21/19 17:28,"979 Cherry St, Atlanta, GA 30301" -221649,iPhone,1,700,06/27/19 18:38,"499 2nd St, Atlanta, GA 30301" -221650,Lightning Charging Cable,1,14.95,06/27/19 11:54,"546 Hickory St, Austin, TX 73301" -221651,Apple Airpods Headphones,1,150,06/17/19 12:25,"138 13th St, Austin, TX 73301" -221652,27in 4K Gaming Monitor,1,389.99,06/21/19 11:14,"667 Johnson St, San Francisco, CA 94016" -221653,Wired Headphones,1,11.99,06/26/19 10:03,"68 Elm St, New York City, NY 10001" -221654,USB-C Charging Cable,1,11.95,06/27/19 08:18,"934 Lake St, Los Angeles, CA 90001" -221655,Lightning Charging Cable,1,14.95,06/29/19 07:39,"163 13th St, New York City, NY 10001" -221656,Bose SoundSport Headphones,1,99.99,06/18/19 17:22,"852 Madison St, Boston, MA 02215" -221657,Apple Airpods Headphones,1,150,06/08/19 10:26,"657 Maple St, Austin, TX 73301" -221658,Lightning Charging Cable,1,14.95,06/09/19 20:46,"582 Church St, Boston, MA 02215" -221659,USB-C Charging Cable,1,11.95,06/19/19 22:54,"357 12th St, San Francisco, CA 94016" -221660,27in 4K Gaming Monitor,1,389.99,06/28/19 10:09,"434 Park St, Los Angeles, CA 90001" -221661,AA Batteries (4-pack),1,3.84,06/21/19 19:59,"65 Elm St, San Francisco, CA 94016" -221662,AA Batteries (4-pack),1,3.84,06/30/19 09:27,"829 9th St, San Francisco, CA 94016" -221663,Apple Airpods Headphones,1,150,06/19/19 16:04,"788 Dogwood St, Boston, MA 02215" -221664,Lightning Charging Cable,1,14.95,06/15/19 09:58,"140 7th St, Atlanta, GA 30301" -221665,iPhone,1,700,06/28/19 14:29,"547 4th St, Atlanta, GA 30301" -221665,Wired Headphones,1,11.99,06/28/19 14:29,"547 4th St, Atlanta, GA 30301" -221666,Google Phone,1,600,06/15/19 21:47,"164 North St, Boston, MA 02215" -221667,Flatscreen TV,1,300,06/27/19 09:30,"441 Hill St, Dallas, TX 75001" -221668,Wired Headphones,1,11.99,06/16/19 17:51,"843 Pine St, Dallas, TX 75001" -221669,USB-C Charging Cable,1,11.95,06/08/19 13:24,"512 Cherry St, Atlanta, GA 30301" -221670,Apple Airpods Headphones,1,150,06/12/19 10:30,"45 11th St, Boston, MA 02215" -221671,AAA Batteries (4-pack),1,2.99,06/10/19 16:46,"961 Elm St, San Francisco, CA 94016" -221672,iPhone,1,700,06/21/19 13:01,"705 Maple St, Atlanta, GA 30301" -221672,Lightning Charging Cable,1,14.95,06/21/19 13:01,"705 Maple St, Atlanta, GA 30301" -221673,USB-C Charging Cable,1,11.95,06/18/19 17:33,"724 Meadow St, San Francisco, CA 94016" -221674,27in 4K Gaming Monitor,1,389.99,06/05/19 15:05,"328 11th St, Portland, OR 97035" -221675,AA Batteries (4-pack),2,3.84,06/09/19 00:18,"545 Lakeview St, San Francisco, CA 94016" -221676,Bose SoundSport Headphones,1,99.99,06/19/19 08:21,"295 North St, Seattle, WA 98101" -221677,27in 4K Gaming Monitor,1,389.99,06/27/19 07:50,"968 Park St, San Francisco, CA 94016" -221678,AA Batteries (4-pack),1,3.84,06/28/19 21:23,"767 Main St, Boston, MA 02215" -221679,AA Batteries (4-pack),2,3.84,06/17/19 10:37,"32 River St, Los Angeles, CA 90001" -221680,Lightning Charging Cable,2,14.95,06/19/19 07:16,"459 1st St, New York City, NY 10001" -221681,Lightning Charging Cable,1,14.95,06/30/19 06:36,"933 Sunset St, San Francisco, CA 94016" -221682,34in Ultrawide Monitor,1,379.99,06/09/19 16:51,"942 Sunset St, New York City, NY 10001" -221683,Macbook Pro Laptop,1,1700,06/11/19 19:12,"281 Forest St, Austin, TX 73301" -221684,34in Ultrawide Monitor,1,379.99,06/25/19 17:20,"274 Main St, Seattle, WA 98101" -221685,AA Batteries (4-pack),1,3.84,06/13/19 20:38,"30 8th St, New York City, NY 10001" -221686,20in Monitor,1,109.99,06/13/19 11:58,"53 Chestnut St, Seattle, WA 98101" -221687,AA Batteries (4-pack),2,3.84,06/29/19 19:03,"32 13th St, Boston, MA 02215" -221688,AA Batteries (4-pack),1,3.84,06/15/19 09:41,"749 Main St, Atlanta, GA 30301" -221689,Lightning Charging Cable,1,14.95,06/08/19 13:16,"824 South St, Boston, MA 02215" -221690,AAA Batteries (4-pack),1,2.99,06/07/19 10:31,"42 2nd St, San Francisco, CA 94016" -221691,34in Ultrawide Monitor,1,379.99,06/22/19 08:44,"24 Lake St, Atlanta, GA 30301" -221692,Apple Airpods Headphones,1,150,06/08/19 16:31,"994 Dogwood St, San Francisco, CA 94016" -221693,Lightning Charging Cable,1,14.95,06/25/19 12:18,"523 2nd St, Los Angeles, CA 90001" -221694,Apple Airpods Headphones,1,150,06/06/19 14:17,"334 Dogwood St, Dallas, TX 75001" -221695,Apple Airpods Headphones,1,150,06/18/19 15:50,"610 Walnut St, New York City, NY 10001" -221696,Apple Airpods Headphones,1,150,06/20/19 13:21,"592 Meadow St, New York City, NY 10001" -221697,AA Batteries (4-pack),1,3.84,06/14/19 23:38,"818 Main St, San Francisco, CA 94016" -221698,34in Ultrawide Monitor,1,379.99,06/01/19 10:16,"171 Johnson St, San Francisco, CA 94016" -221699,27in FHD Monitor,1,149.99,06/14/19 19:45,"603 Elm St, Los Angeles, CA 90001" -221700,Flatscreen TV,1,300,06/09/19 17:38,"772 6th St, New York City, NY 10001" -221701,34in Ultrawide Monitor,1,379.99,06/20/19 02:11,"210 Washington St, Austin, TX 73301" -221702,Lightning Charging Cable,1,14.95,06/11/19 16:31,"417 Hill St, Boston, MA 02215" -221703,AAA Batteries (4-pack),1,2.99,06/24/19 18:23,"767 Willow St, San Francisco, CA 94016" -221704,Flatscreen TV,1,300,06/03/19 21:52,"712 Pine St, Seattle, WA 98101" -221705,Apple Airpods Headphones,1,150,06/18/19 22:34,"33 Johnson St, San Francisco, CA 94016" -221705,AAA Batteries (4-pack),1,2.99,06/18/19 22:34,"33 Johnson St, San Francisco, CA 94016" -221706,USB-C Charging Cable,1,11.95,06/20/19 21:49,"732 Lakeview St, Austin, TX 73301" -221707,AAA Batteries (4-pack),1,2.99,06/28/19 17:26,"692 Cedar St, Los Angeles, CA 90001" -221708,Macbook Pro Laptop,1,1700,06/27/19 16:13,"338 Cherry St, Austin, TX 73301" -221709,27in FHD Monitor,1,149.99,06/07/19 12:54,"76 River St, Boston, MA 02215" -221710,AA Batteries (4-pack),1,3.84,06/05/19 20:07,"940 Madison St, Austin, TX 73301" -221711,Bose SoundSport Headphones,1,99.99,06/15/19 16:36,"139 West St, New York City, NY 10001" -221711,Bose SoundSport Headphones,1,99.99,06/15/19 16:36,"139 West St, New York City, NY 10001" -221712,Lightning Charging Cable,1,14.95,06/27/19 12:46,"64 Center St, San Francisco, CA 94016" -221713,AA Batteries (4-pack),1,3.84,06/23/19 17:21,"191 Dogwood St, Los Angeles, CA 90001" -221714,Lightning Charging Cable,1,14.95,06/14/19 12:54,"480 4th St, New York City, NY 10001" -221715,AAA Batteries (4-pack),1,2.99,06/04/19 11:08,"752 Willow St, Austin, TX 73301" -221716,AAA Batteries (4-pack),1,2.99,06/27/19 18:55,"621 11th St, Los Angeles, CA 90001" -221717,USB-C Charging Cable,1,11.95,06/06/19 05:30,"113 Cherry St, San Francisco, CA 94016" -221718,27in FHD Monitor,1,149.99,06/29/19 20:51,"112 12th St, Seattle, WA 98101" -221719,27in 4K Gaming Monitor,1,389.99,06/25/19 09:19,"560 14th St, Dallas, TX 75001" -221720,AA Batteries (4-pack),2,3.84,06/12/19 11:17,"709 5th St, Portland, OR 97035" -221721,USB-C Charging Cable,1,11.95,06/24/19 11:08,"782 Maple St, San Francisco, CA 94016" -221722,Apple Airpods Headphones,2,150,06/25/19 19:26,"242 Pine St, San Francisco, CA 94016" -221723,AAA Batteries (4-pack),1,2.99,06/23/19 07:16,"215 14th St, New York City, NY 10001" -221723,27in 4K Gaming Monitor,1,389.99,06/23/19 07:16,"215 14th St, New York City, NY 10001" -221724,Wired Headphones,1,11.99,06/30/19 10:18,"624 Spruce St, Los Angeles, CA 90001" -221725,USB-C Charging Cable,1,11.95,06/30/19 13:01,"337 Johnson St, Los Angeles, CA 90001" -221726,Apple Airpods Headphones,1,150,06/02/19 10:17,"540 Lakeview St, Los Angeles, CA 90001" -,,,,, -221727,Bose SoundSport Headphones,1,99.99,06/14/19 17:35,"912 Jackson St, San Francisco, CA 94016" -221727,USB-C Charging Cable,1,11.95,06/14/19 17:35,"912 Jackson St, San Francisco, CA 94016" -221728,Bose SoundSport Headphones,1,99.99,06/24/19 19:19,"696 Hickory St, Boston, MA 02215" -221729,AAA Batteries (4-pack),1,2.99,06/13/19 06:00,"3 Spruce St, Los Angeles, CA 90001" -221730,27in 4K Gaming Monitor,1,389.99,06/20/19 09:19,"108 Hill St, Dallas, TX 75001" -221731,Lightning Charging Cable,1,14.95,06/13/19 12:57,"903 12th St, San Francisco, CA 94016" -221732,Lightning Charging Cable,1,14.95,06/02/19 20:25,"265 Maple St, New York City, NY 10001" -221733,27in FHD Monitor,1,149.99,06/09/19 23:19,"235 Chestnut St, Austin, TX 73301" -221734,Google Phone,1,600,06/01/19 21:51,"861 1st St, Los Angeles, CA 90001" -221735,Lightning Charging Cable,2,14.95,06/29/19 19:07,"503 Church St, Portland, OR 97035" -221736,USB-C Charging Cable,1,11.95,06/15/19 20:16,"603 12th St, Boston, MA 02215" -221736,Vareebadd Phone,1,400,06/15/19 20:16,"603 12th St, Boston, MA 02215" -221737,Lightning Charging Cable,1,14.95,06/05/19 14:12,"571 Cedar St, San Francisco, CA 94016" -221738,Macbook Pro Laptop,1,1700,06/02/19 20:54,"304 West St, Dallas, TX 75001" -221739,AA Batteries (4-pack),3,3.84,06/25/19 12:53,"303 Lake St, Dallas, TX 75001" -221740,Bose SoundSport Headphones,1,99.99,06/10/19 15:11,"327 Main St, Boston, MA 02215" -221741,Lightning Charging Cable,1,14.95,06/02/19 21:29,"255 Pine St, San Francisco, CA 94016" -221742,USB-C Charging Cable,1,11.95,06/28/19 18:43,"248 9th St, San Francisco, CA 94016" -221743,iPhone,1,700,06/29/19 14:45,"886 Willow St, Boston, MA 02215" -221744,AA Batteries (4-pack),1,3.84,06/09/19 15:20,"453 7th St, Los Angeles, CA 90001" -221745,Bose SoundSport Headphones,1,99.99,06/28/19 10:47,"721 Elm St, Seattle, WA 98101" -221746,Bose SoundSport Headphones,1,99.99,06/24/19 19:31,"958 Forest St, New York City, NY 10001" -221747,Apple Airpods Headphones,1,150,06/13/19 00:22,"330 7th St, New York City, NY 10001" -221748,Lightning Charging Cable,2,14.95,06/25/19 13:18,"726 Spruce St, Boston, MA 02215" -221749,Lightning Charging Cable,1,14.95,06/05/19 16:55,"757 Cedar St, San Francisco, CA 94016" -221750,Google Phone,1,600,06/06/19 23:15,"127 Johnson St, Los Angeles, CA 90001" -221751,Wired Headphones,1,11.99,06/23/19 16:22,"664 7th St, San Francisco, CA 94016" -221752,20in Monitor,1,109.99,06/12/19 17:33,"343 Hill St, Boston, MA 02215" -221753,AA Batteries (4-pack),1,3.84,06/25/19 19:12,"636 South St, New York City, NY 10001" -221754,27in FHD Monitor,1,149.99,06/20/19 06:30,"576 Church St, Dallas, TX 75001" -221755,Macbook Pro Laptop,1,1700,06/16/19 19:49,"498 9th St, San Francisco, CA 94016" -221756,AA Batteries (4-pack),2,3.84,06/17/19 22:07,"591 Pine St, Los Angeles, CA 90001" -221757,USB-C Charging Cable,1,11.95,06/03/19 19:11,"589 Lincoln St, Los Angeles, CA 90001" -221758,Lightning Charging Cable,1,14.95,06/15/19 17:32,"567 Church St, San Francisco, CA 94016" -221759,Lightning Charging Cable,1,14.95,06/12/19 04:31,"828 Spruce St, Boston, MA 02215" -221760,AAA Batteries (4-pack),3,2.99,06/02/19 14:51,"891 Chestnut St, Portland, OR 97035" -221761,AA Batteries (4-pack),1,3.84,06/21/19 09:43,"666 Dogwood St, San Francisco, CA 94016" -221762,Google Phone,1,600,06/23/19 20:22,"899 Adams St, Boston, MA 02215" -221763,Lightning Charging Cable,1,14.95,06/23/19 21:27,"851 Jefferson St, Los Angeles, CA 90001" -221764,AA Batteries (4-pack),2,3.84,06/20/19 14:37,"814 8th St, San Francisco, CA 94016" -221765,27in 4K Gaming Monitor,1,389.99,06/23/19 03:03,"762 8th St, Seattle, WA 98101" -221766,AAA Batteries (4-pack),2,2.99,06/18/19 13:12,"249 9th St, Atlanta, GA 30301" -221767,AA Batteries (4-pack),2,3.84,06/24/19 10:46,"856 Church St, Los Angeles, CA 90001" -221768,AA Batteries (4-pack),1,3.84,06/13/19 04:31,"599 Highland St, San Francisco, CA 94016" -221769,27in FHD Monitor,1,149.99,06/12/19 06:04,"88 Cedar St, San Francisco, CA 94016" -221770,Apple Airpods Headphones,1,150,06/29/19 11:20,"611 Lincoln St, San Francisco, CA 94016" -221771,AA Batteries (4-pack),2,3.84,06/29/19 23:36,"595 Elm St, Seattle, WA 98101" -221772,iPhone,1,700,06/21/19 12:33,"694 Adams St, Los Angeles, CA 90001" -221773,AAA Batteries (4-pack),1,2.99,06/29/19 01:47,"492 12th St, New York City, NY 10001" -221774,Apple Airpods Headphones,1,150,06/06/19 20:11,"60 Adams St, Seattle, WA 98101" -221775,Wired Headphones,1,11.99,06/03/19 09:18,"680 10th St, San Francisco, CA 94016" -221776,AAA Batteries (4-pack),1,2.99,06/19/19 21:43,"188 West St, Los Angeles, CA 90001" -221777,Bose SoundSport Headphones,1,99.99,06/16/19 11:46,"22 Sunset St, San Francisco, CA 94016" -221778,AA Batteries (4-pack),1,3.84,06/04/19 22:49,"310 Johnson St, New York City, NY 10001" -221779,AA Batteries (4-pack),1,3.84,06/14/19 11:43,"123 2nd St, Dallas, TX 75001" -221780,27in 4K Gaming Monitor,1,389.99,06/04/19 23:40,"780 Jackson St, Portland, OR 97035" -221781,34in Ultrawide Monitor,1,379.99,06/28/19 15:56,"521 Lincoln St, Los Angeles, CA 90001" -221782,USB-C Charging Cable,1,11.95,06/09/19 12:18,"113 Lincoln St, Los Angeles, CA 90001" -221783,Apple Airpods Headphones,1,150,06/13/19 03:03,"139 13th St, Boston, MA 02215" -221784,Wired Headphones,1,11.99,06/06/19 11:48,"295 Sunset St, New York City, NY 10001" -221785,USB-C Charging Cable,1,11.95,06/27/19 00:58,"786 7th St, Los Angeles, CA 90001" -221786,AAA Batteries (4-pack),2,2.99,06/02/19 09:50,"425 South St, New York City, NY 10001" -221787,20in Monitor,1,109.99,06/21/19 20:19,"479 Walnut St, San Francisco, CA 94016" -221788,Bose SoundSport Headphones,1,99.99,06/26/19 10:46,"171 Elm St, Portland, OR 97035" -221789,Bose SoundSport Headphones,1,99.99,06/26/19 23:28,"398 Hickory St, San Francisco, CA 94016" -221790,Flatscreen TV,1,300,06/19/19 21:14,"332 12th St, San Francisco, CA 94016" -221791,27in FHD Monitor,1,149.99,06/07/19 11:01,"310 Meadow St, San Francisco, CA 94016" -221791,27in 4K Gaming Monitor,1,389.99,06/07/19 11:01,"310 Meadow St, San Francisco, CA 94016" -221792,27in FHD Monitor,1,149.99,06/27/19 18:08,"919 West St, Los Angeles, CA 90001" -221793,Bose SoundSport Headphones,1,99.99,06/26/19 09:29,"990 Elm St, New York City, NY 10001" -221794,ThinkPad Laptop,1,999.99,06/06/19 11:59,"136 12th St, San Francisco, CA 94016" -221795,Bose SoundSport Headphones,1,99.99,06/29/19 08:57,"968 8th St, San Francisco, CA 94016" -221796,AA Batteries (4-pack),2,3.84,06/05/19 15:59,"392 14th St, Los Angeles, CA 90001" -221797,AAA Batteries (4-pack),1,2.99,06/13/19 16:10,"190 Walnut St, San Francisco, CA 94016" -221798,Lightning Charging Cable,1,14.95,06/11/19 18:12,"76 Spruce St, Dallas, TX 75001" -221799,27in FHD Monitor,1,149.99,06/18/19 18:58,"605 Ridge St, San Francisco, CA 94016" -221800,20in Monitor,1,109.99,06/09/19 11:43,"169 Highland St, Atlanta, GA 30301" -221801,AAA Batteries (4-pack),1,2.99,06/28/19 00:47,"136 Hickory St, Seattle, WA 98101" -221802,Lightning Charging Cable,1,14.95,06/26/19 10:15,"245 6th St, Los Angeles, CA 90001" -221803,AAA Batteries (4-pack),1,2.99,06/22/19 22:48,"465 Sunset St, Dallas, TX 75001" -221804,USB-C Charging Cable,1,11.95,06/23/19 21:38,"631 River St, Dallas, TX 75001" -221805,Apple Airpods Headphones,1,150,06/19/19 21:29,"234 Elm St, Atlanta, GA 30301" -221806,Apple Airpods Headphones,1,150,06/29/19 10:04,"324 Park St, Los Angeles, CA 90001" -221807,USB-C Charging Cable,1,11.95,06/21/19 15:29,"396 Highland St, Los Angeles, CA 90001" -221808,USB-C Charging Cable,1,11.95,06/03/19 13:39,"772 Wilson St, San Francisco, CA 94016" -221809,AA Batteries (4-pack),1,3.84,06/12/19 18:01,"536 Chestnut St, Austin, TX 73301" -221810,Lightning Charging Cable,1,14.95,06/27/19 00:50,"602 Madison St, San Francisco, CA 94016" -221811,27in 4K Gaming Monitor,1,389.99,06/13/19 22:17,"823 Pine St, Seattle, WA 98101" -221812,AAA Batteries (4-pack),1,2.99,06/24/19 11:46,"886 1st St, New York City, NY 10001" -221813,AA Batteries (4-pack),2,3.84,06/05/19 21:15,"684 1st St, Austin, TX 73301" -221814,Lightning Charging Cable,1,14.95,06/29/19 14:46,"657 2nd St, San Francisco, CA 94016" -221815,AAA Batteries (4-pack),3,2.99,06/16/19 10:24,"60 Madison St, Austin, TX 73301" -221816,AAA Batteries (4-pack),2,2.99,06/26/19 16:01,"778 5th St, Portland, OR 97035" -221817,Flatscreen TV,1,300,06/16/19 12:19,"293 6th St, Boston, MA 02215" -221818,AAA Batteries (4-pack),3,2.99,06/08/19 20:12,"489 Highland St, Boston, MA 02215" -221819,USB-C Charging Cable,1,11.95,06/04/19 11:38,"456 10th St, San Francisco, CA 94016" -221820,ThinkPad Laptop,1,999.99,06/29/19 12:11,"491 Center St, San Francisco, CA 94016" -221821,AA Batteries (4-pack),1,3.84,06/15/19 14:49,"780 Sunset St, Boston, MA 02215" -221822,Flatscreen TV,1,300,06/15/19 14:55,"853 Madison St, Los Angeles, CA 90001" -221823,AA Batteries (4-pack),1,3.84,06/30/19 17:28,"955 Madison St, Boston, MA 02215" -221824,AAA Batteries (4-pack),2,2.99,06/17/19 18:12,"374 10th St, Portland, OR 97035" -221825,iPhone,1,700,06/18/19 12:41,"694 Lake St, Los Angeles, CA 90001" -221825,Lightning Charging Cable,1,14.95,06/18/19 12:41,"694 Lake St, Los Angeles, CA 90001" -221826,Apple Airpods Headphones,1,150,06/22/19 17:46,"761 Lincoln St, Seattle, WA 98101" -221827,27in 4K Gaming Monitor,1,389.99,06/09/19 08:43,"620 Cherry St, Atlanta, GA 30301" -221828,27in 4K Gaming Monitor,1,389.99,06/29/19 16:09,"674 Cedar St, Atlanta, GA 30301" -221829,Bose SoundSport Headphones,1,99.99,06/21/19 21:34,"73 11th St, Boston, MA 02215" -221830,AA Batteries (4-pack),1,3.84,06/11/19 12:37,"665 Hickory St, Dallas, TX 75001" -221831,Google Phone,1,600,06/21/19 21:35,"546 Washington St, Dallas, TX 75001" -221832,AAA Batteries (4-pack),2,2.99,06/01/19 15:28,"657 Highland St, Boston, MA 02215" -221833,USB-C Charging Cable,1,11.95,06/28/19 18:11,"886 North St, San Francisco, CA 94016" -221834,Lightning Charging Cable,1,14.95,06/10/19 15:46,"174 9th St, San Francisco, CA 94016" -221835,iPhone,1,700,06/03/19 11:40,"162 Maple St, San Francisco, CA 94016" -221836,20in Monitor,1,109.99,06/24/19 14:59,"780 Center St, Austin, TX 73301" -221837,AA Batteries (4-pack),1,3.84,06/19/19 13:53,"97 11th St, San Francisco, CA 94016" -221838,AAA Batteries (4-pack),2,2.99,06/08/19 09:53,"197 Hill St, Portland, ME 04101" -221839,USB-C Charging Cable,1,11.95,06/16/19 12:56,"252 Dogwood St, San Francisco, CA 94016" -221840,USB-C Charging Cable,1,11.95,06/21/19 11:12,"513 Maple St, New York City, NY 10001" -221841,Lightning Charging Cable,1,14.95,06/11/19 22:39,"928 Walnut St, Portland, ME 04101" -221842,Wired Headphones,1,11.99,06/14/19 13:03,"929 Cherry St, Seattle, WA 98101" -221843,27in 4K Gaming Monitor,1,389.99,06/09/19 20:11,"421 Elm St, Seattle, WA 98101" -221844,27in FHD Monitor,1,149.99,06/26/19 17:20,"24 6th St, Atlanta, GA 30301" -221845,Wired Headphones,1,11.99,06/06/19 19:19,"925 Adams St, Los Angeles, CA 90001" -221846,Lightning Charging Cable,1,14.95,06/11/19 15:26,"972 Sunset St, San Francisco, CA 94016" -221847,USB-C Charging Cable,1,11.95,06/24/19 10:43,"356 Johnson St, Dallas, TX 75001" -221848,AAA Batteries (4-pack),1,2.99,06/29/19 12:32,"603 Lake St, Boston, MA 02215" -221849,USB-C Charging Cable,1,11.95,06/25/19 18:15,"20 Center St, Dallas, TX 75001" -221850,27in 4K Gaming Monitor,1,389.99,06/10/19 11:19,"56 Johnson St, Los Angeles, CA 90001" -221851,USB-C Charging Cable,1,11.95,06/05/19 10:31,"434 Center St, Dallas, TX 75001" -221852,27in FHD Monitor,1,149.99,06/02/19 21:33,"779 8th St, San Francisco, CA 94016" -221853,USB-C Charging Cable,1,11.95,06/23/19 15:02,"384 Main St, Dallas, TX 75001" -221854,AAA Batteries (4-pack),2,2.99,06/13/19 16:15,"473 10th St, Los Angeles, CA 90001" -221855,Apple Airpods Headphones,1,150,06/30/19 08:07,"38 Spruce St, San Francisco, CA 94016" -221856,AA Batteries (4-pack),1,3.84,07/01/19 01:39,"840 4th St, Portland, OR 97035" -221857,Lightning Charging Cable,1,14.95,06/12/19 11:27,"137 Main St, Los Angeles, CA 90001" -221858,27in FHD Monitor,1,149.99,06/14/19 03:10,"31 Cherry St, New York City, NY 10001" -221859,Apple Airpods Headphones,1,150,06/10/19 13:37,"954 Lake St, Dallas, TX 75001" -221860,AAA Batteries (4-pack),1,2.99,06/11/19 10:04,"280 Wilson St, New York City, NY 10001" -221861,Lightning Charging Cable,1,14.95,06/29/19 17:50,"806 14th St, Seattle, WA 98101" -221862,20in Monitor,1,109.99,06/07/19 12:42,"855 7th St, Seattle, WA 98101" -221862,USB-C Charging Cable,1,11.95,06/07/19 12:42,"855 7th St, Seattle, WA 98101" -221863,Bose SoundSport Headphones,1,99.99,06/07/19 11:54,"716 Cedar St, Los Angeles, CA 90001" -221864,USB-C Charging Cable,1,11.95,06/30/19 11:16,"356 5th St, Boston, MA 02215" -221865,27in 4K Gaming Monitor,1,389.99,06/05/19 14:41,"571 Cherry St, Seattle, WA 98101" -221866,iPhone,1,700,06/14/19 15:19,"561 Highland St, Atlanta, GA 30301" -221867,27in FHD Monitor,1,149.99,06/04/19 20:50,"760 South St, Los Angeles, CA 90001" -221868,AA Batteries (4-pack),1,3.84,06/03/19 21:22,"795 Dogwood St, Boston, MA 02215" -221869,Google Phone,1,600,06/06/19 22:05,"892 Lakeview St, New York City, NY 10001" -221869,USB-C Charging Cable,2,11.95,06/06/19 22:05,"892 Lakeview St, New York City, NY 10001" -221869,Wired Headphones,1,11.99,06/06/19 22:05,"892 Lakeview St, New York City, NY 10001" -221870,USB-C Charging Cable,1,11.95,06/14/19 00:01,"762 Madison St, Dallas, TX 75001" -221871,AA Batteries (4-pack),1,3.84,06/18/19 13:58,"398 Walnut St, Austin, TX 73301" -221872,Wired Headphones,1,11.99,06/04/19 13:06,"499 Park St, San Francisco, CA 94016" -221873,20in Monitor,1,109.99,06/08/19 04:19,"472 Main St, New York City, NY 10001" -221874,AA Batteries (4-pack),2,3.84,06/07/19 18:54,"7 South St, Portland, ME 04101" -221875,27in 4K Gaming Monitor,1,389.99,06/09/19 09:54,"269 Jefferson St, Atlanta, GA 30301" -221876,USB-C Charging Cable,1,11.95,06/13/19 13:05,"988 Wilson St, Los Angeles, CA 90001" -221877,34in Ultrawide Monitor,1,379.99,06/08/19 20:24,"168 6th St, Los Angeles, CA 90001" -221878,Lightning Charging Cable,1,14.95,06/26/19 15:30,"934 Ridge St, San Francisco, CA 94016" -221879,20in Monitor,1,109.99,06/05/19 16:18,"512 Lake St, New York City, NY 10001" -221880,27in 4K Gaming Monitor,1,389.99,06/10/19 15:06,"231 Park St, Los Angeles, CA 90001" -221881,USB-C Charging Cable,1,11.95,06/11/19 12:13,"867 12th St, San Francisco, CA 94016" -221882,AAA Batteries (4-pack),1,2.99,06/25/19 15:25,"843 Main St, New York City, NY 10001" -221883,Bose SoundSport Headphones,1,99.99,06/06/19 09:57,"374 West St, San Francisco, CA 94016" -221884,USB-C Charging Cable,1,11.95,06/10/19 20:51,"843 Hickory St, Los Angeles, CA 90001" -221885,Apple Airpods Headphones,1,150,06/14/19 14:13,"789 Cherry St, San Francisco, CA 94016" -221886,Wired Headphones,1,11.99,06/05/19 14:38,"204 South St, San Francisco, CA 94016" -221887,Apple Airpods Headphones,1,150,06/11/19 08:35,"25 9th St, Los Angeles, CA 90001" -221888,20in Monitor,1,109.99,06/15/19 23:14,"169 Hill St, San Francisco, CA 94016" -221889,AA Batteries (4-pack),1,3.84,06/16/19 14:09,"592 Maple St, New York City, NY 10001" -221890,Bose SoundSport Headphones,1,99.99,06/16/19 21:23,"297 North St, Boston, MA 02215" -221890,27in FHD Monitor,1,149.99,06/16/19 21:23,"297 North St, Boston, MA 02215" -221891,USB-C Charging Cable,1,11.95,06/05/19 08:06,"475 Highland St, Seattle, WA 98101" -221892,ThinkPad Laptop,1,999.99,06/27/19 18:34,"99 10th St, San Francisco, CA 94016" -221893,AA Batteries (4-pack),1,3.84,06/06/19 06:20,"208 Walnut St, Boston, MA 02215" -221894,Bose SoundSport Headphones,1,99.99,06/18/19 05:27,"655 Cedar St, New York City, NY 10001" -221895,Apple Airpods Headphones,1,150,06/20/19 10:22,"421 Highland St, Portland, OR 97035" -221896,USB-C Charging Cable,1,11.95,06/01/19 14:47,"850 Hill St, San Francisco, CA 94016" -221897,AA Batteries (4-pack),1,3.84,06/09/19 17:08,"541 Chestnut St, San Francisco, CA 94016" -221898,USB-C Charging Cable,1,11.95,06/10/19 05:42,"230 Maple St, Los Angeles, CA 90001" -221899,Vareebadd Phone,1,400,06/04/19 00:06,"814 4th St, Seattle, WA 98101" -221900,USB-C Charging Cable,1,11.95,06/03/19 09:16,"105 13th St, Portland, OR 97035" -221901,27in FHD Monitor,1,149.99,06/06/19 18:05,"634 Elm St, San Francisco, CA 94016" -221902,Lightning Charging Cable,1,14.95,06/12/19 18:26,"583 6th St, San Francisco, CA 94016" -221903,AAA Batteries (4-pack),1,2.99,06/02/19 04:49,"962 Meadow St, Los Angeles, CA 90001" -221904,Lightning Charging Cable,1,14.95,06/14/19 13:32,"667 13th St, Los Angeles, CA 90001" -221905,USB-C Charging Cable,1,11.95,06/10/19 09:12,"554 8th St, New York City, NY 10001" -221906,27in 4K Gaming Monitor,1,389.99,06/27/19 16:22,"927 West St, Portland, ME 04101" -221907,AAA Batteries (4-pack),1,2.99,06/21/19 13:13,"151 Dogwood St, Seattle, WA 98101" -221908,27in 4K Gaming Monitor,1,389.99,06/03/19 12:19,"564 8th St, Los Angeles, CA 90001" -221909,AAA Batteries (4-pack),2,2.99,06/04/19 19:03,"547 10th St, Boston, MA 02215" -221910,27in FHD Monitor,1,149.99,06/17/19 00:22,"420 Hickory St, Boston, MA 02215" -221911,AAA Batteries (4-pack),1,2.99,06/29/19 16:51,"105 8th St, San Francisco, CA 94016" -,,,,, -221912,34in Ultrawide Monitor,1,379.99,06/23/19 15:16,"980 Jefferson St, Los Angeles, CA 90001" -221913,34in Ultrawide Monitor,1,379.99,06/19/19 04:55,"355 Dogwood St, New York City, NY 10001" -221914,34in Ultrawide Monitor,1,379.99,06/04/19 12:05,"731 Forest St, Atlanta, GA 30301" -221915,Bose SoundSport Headphones,1,99.99,06/06/19 13:38,"953 8th St, Dallas, TX 75001" -221916,AAA Batteries (4-pack),1,2.99,06/14/19 13:38,"255 6th St, Los Angeles, CA 90001" -221917,Wired Headphones,1,11.99,06/26/19 23:08,"518 Cedar St, Austin, TX 73301" -221918,AA Batteries (4-pack),1,3.84,06/07/19 17:09,"298 4th St, New York City, NY 10001" -221919,Google Phone,1,600,06/30/19 18:10,"516 River St, Seattle, WA 98101" -221920,Apple Airpods Headphones,1,150,06/03/19 22:53,"578 8th St, New York City, NY 10001" -221921,ThinkPad Laptop,1,999.99,06/20/19 19:47,"230 Walnut St, New York City, NY 10001" -221922,34in Ultrawide Monitor,1,379.99,06/03/19 16:31,"26 10th St, San Francisco, CA 94016" -221923,Bose SoundSport Headphones,1,99.99,06/30/19 14:51,"304 Washington St, San Francisco, CA 94016" -221924,Google Phone,1,600,06/24/19 17:43,"85 11th St, San Francisco, CA 94016" -221925,Lightning Charging Cable,1,14.95,06/17/19 13:05,"70 Highland St, San Francisco, CA 94016" -221926,Bose SoundSport Headphones,1,99.99,06/02/19 16:14,"305 Highland St, San Francisco, CA 94016" -221927,AAA Batteries (4-pack),1,2.99,06/16/19 11:43,"764 Adams St, Los Angeles, CA 90001" -221928,AA Batteries (4-pack),1,3.84,06/10/19 10:43,"17 Adams St, Boston, MA 02215" -221929,AA Batteries (4-pack),1,3.84,06/17/19 13:37,"190 Pine St, Austin, TX 73301" -221930,AA Batteries (4-pack),2,3.84,06/05/19 10:26,"858 10th St, San Francisco, CA 94016" -221931,USB-C Charging Cable,1,11.95,06/24/19 21:16,"127 Jefferson St, Portland, OR 97035" -221932,Google Phone,1,600,06/21/19 12:10,"489 South St, Portland, OR 97035" -221932,Wired Headphones,1,11.99,06/21/19 12:10,"489 South St, Portland, OR 97035" -221933,Bose SoundSport Headphones,1,99.99,06/27/19 10:20,"876 14th St, Austin, TX 73301" -221934,LG Washing Machine,1,600.0,06/19/19 20:14,"7 Cedar St, Los Angeles, CA 90001" -221935,Wired Headphones,1,11.99,06/24/19 12:33,"295 Highland St, Dallas, TX 75001" -221936,USB-C Charging Cable,2,11.95,06/08/19 17:29,"662 4th St, Portland, OR 97035" -221937,Lightning Charging Cable,1,14.95,06/16/19 08:07,"552 West St, Atlanta, GA 30301" -221938,USB-C Charging Cable,1,11.95,06/24/19 18:53,"800 7th St, Dallas, TX 75001" -221939,AAA Batteries (4-pack),1,2.99,06/30/19 11:19,"355 12th St, New York City, NY 10001" -221940,AAA Batteries (4-pack),1,2.99,06/11/19 11:58,"806 Washington St, Los Angeles, CA 90001" -221941,34in Ultrawide Monitor,1,379.99,06/26/19 14:25,"556 Jefferson St, New York City, NY 10001" -221942,AA Batteries (4-pack),1,3.84,06/03/19 21:02,"129 Wilson St, San Francisco, CA 94016" -221943,USB-C Charging Cable,1,11.95,06/07/19 10:45,"461 North St, New York City, NY 10001" -221944,Bose SoundSport Headphones,1,99.99,06/09/19 13:52,"259 6th St, Boston, MA 02215" -221945,USB-C Charging Cable,1,11.95,06/08/19 22:53,"98 2nd St, Austin, TX 73301" -221946,Flatscreen TV,1,300,06/08/19 16:19,"177 Ridge St, San Francisco, CA 94016" -221947,Wired Headphones,1,11.99,06/12/19 16:14,"696 Maple St, San Francisco, CA 94016" -221948,Lightning Charging Cable,1,14.95,06/14/19 09:56,"365 Walnut St, Boston, MA 02215" -221949,USB-C Charging Cable,1,11.95,06/18/19 15:41,"187 Church St, Austin, TX 73301" -221950,Lightning Charging Cable,1,14.95,06/30/19 12:29,"94 Maple St, Los Angeles, CA 90001" -221951,AA Batteries (4-pack),3,3.84,06/12/19 23:26,"212 Lakeview St, Atlanta, GA 30301" -221952,Lightning Charging Cable,1,14.95,06/19/19 03:29,"556 Madison St, New York City, NY 10001" -221953,27in FHD Monitor,1,149.99,06/18/19 11:53,"51 North St, Los Angeles, CA 90001" -221954,AAA Batteries (4-pack),2,2.99,06/02/19 12:58,"917 12th St, San Francisco, CA 94016" -221955,Macbook Pro Laptop,1,1700,06/17/19 12:59,"539 4th St, Dallas, TX 75001" -221956,Apple Airpods Headphones,1,150,06/06/19 15:03,"302 1st St, New York City, NY 10001" -221957,iPhone,1,700,06/04/19 11:07,"440 Church St, Dallas, TX 75001" -221958,Bose SoundSport Headphones,1,99.99,06/15/19 11:19,"140 Madison St, Atlanta, GA 30301" -221959,USB-C Charging Cable,1,11.95,06/28/19 07:24,"607 Pine St, Los Angeles, CA 90001" -221960,Google Phone,1,600,06/24/19 21:37,"657 Lake St, Dallas, TX 75001" -221960,USB-C Charging Cable,1,11.95,06/24/19 21:37,"657 Lake St, Dallas, TX 75001" -221961,iPhone,1,700,06/01/19 11:21,"51 Hill St, Atlanta, GA 30301" -221962,Wired Headphones,1,11.99,06/29/19 21:51,"429 Hill St, Atlanta, GA 30301" -221963,AA Batteries (4-pack),1,3.84,06/14/19 16:12,"753 14th St, Los Angeles, CA 90001" -221964,Wired Headphones,1,11.99,06/18/19 03:30,"799 Highland St, Seattle, WA 98101" -221965,AAA Batteries (4-pack),1,2.99,06/26/19 21:30,"691 Ridge St, Portland, OR 97035" -221966,Flatscreen TV,1,300,06/19/19 21:07,"326 Washington St, Seattle, WA 98101" -221967,ThinkPad Laptop,1,999.99,06/13/19 00:11,"735 Chestnut St, Seattle, WA 98101" -221968,USB-C Charging Cable,1,11.95,06/28/19 18:35,"500 Jackson St, Seattle, WA 98101" -221969,ThinkPad Laptop,1,999.99,06/14/19 10:34,"336 13th St, Boston, MA 02215" -221970,AAA Batteries (4-pack),2,2.99,06/22/19 12:54,"213 Center St, Austin, TX 73301" -221971,27in FHD Monitor,1,149.99,06/16/19 17:05,"692 Highland St, Boston, MA 02215" -221972,Wired Headphones,1,11.99,06/04/19 08:05,"189 8th St, Dallas, TX 75001" -221973,Bose SoundSport Headphones,1,99.99,06/08/19 22:55,"464 Madison St, Portland, ME 04101" -221974,Apple Airpods Headphones,1,150,06/19/19 15:16,"489 9th St, New York City, NY 10001" -221975,AAA Batteries (4-pack),1,2.99,06/01/19 18:10,"985 Spruce St, San Francisco, CA 94016" -221976,Apple Airpods Headphones,1,150,06/11/19 20:21,"992 Pine St, Boston, MA 02215" -221977,USB-C Charging Cable,1,11.95,06/26/19 10:34,"739 West St, Dallas, TX 75001" -221978,USB-C Charging Cable,1,11.95,06/01/19 16:11,"84 13th St, New York City, NY 10001" -221979,27in FHD Monitor,1,149.99,06/26/19 14:53,"18 Forest St, San Francisco, CA 94016" -221980,Lightning Charging Cable,1,14.95,06/13/19 22:05,"959 Lakeview St, Los Angeles, CA 90001" -221980,Apple Airpods Headphones,1,150,06/13/19 22:05,"959 Lakeview St, Los Angeles, CA 90001" -,,,,, -221981,Wired Headphones,1,11.99,06/09/19 14:23,"31 10th St, Los Angeles, CA 90001" -221982,Wired Headphones,1,11.99,06/15/19 15:58,"887 Center St, Boston, MA 02215" -221983,Lightning Charging Cable,1,14.95,06/25/19 15:21,"797 Highland St, Los Angeles, CA 90001" -221984,Macbook Pro Laptop,1,1700,06/14/19 21:07,"658 4th St, Seattle, WA 98101" -221985,Macbook Pro Laptop,1,1700,06/14/19 21:53,"707 Adams St, Seattle, WA 98101" -221986,Lightning Charging Cable,1,14.95,06/19/19 14:19,"235 10th St, Atlanta, GA 30301" -221987,LG Dryer,1,600.0,06/29/19 00:09,"700 Maple St, Boston, MA 02215" -221988,Flatscreen TV,1,300,06/30/19 10:16,"790 5th St, Atlanta, GA 30301" -221989,USB-C Charging Cable,1,11.95,06/04/19 17:58,"207 Willow St, San Francisco, CA 94016" -221990,Macbook Pro Laptop,1,1700,06/18/19 18:12,"789 Meadow St, Boston, MA 02215" -221991,Apple Airpods Headphones,1,150,06/12/19 12:13,"510 9th St, Atlanta, GA 30301" -221992,Lightning Charging Cable,1,14.95,06/06/19 18:20,"508 Adams St, New York City, NY 10001" -221993,27in 4K Gaming Monitor,1,389.99,06/15/19 11:43,"2 Hill St, San Francisco, CA 94016" -221994,AA Batteries (4-pack),1,3.84,06/14/19 15:19,"216 9th St, New York City, NY 10001" -221995,ThinkPad Laptop,1,999.99,06/18/19 17:11,"537 Church St, San Francisco, CA 94016" -221996,iPhone,1,700,06/20/19 20:00,"217 Meadow St, Dallas, TX 75001" -221996,Apple Airpods Headphones,1,150,06/20/19 20:00,"217 Meadow St, Dallas, TX 75001" -221997,USB-C Charging Cable,1,11.95,06/30/19 10:06,"49 Jefferson St, San Francisco, CA 94016" -,,,,, -221998,Apple Airpods Headphones,1,150,06/05/19 18:27,"14 Center St, Dallas, TX 75001" -221999,27in FHD Monitor,1,149.99,06/18/19 11:59,"933 Dogwood St, Dallas, TX 75001" -222000,AAA Batteries (4-pack),1,2.99,06/03/19 18:34,"227 14th St, Boston, MA 02215" -222001,USB-C Charging Cable,1,11.95,06/19/19 23:00,"243 Jackson St, Portland, OR 97035" -222002,Macbook Pro Laptop,1,1700,06/05/19 20:56,"432 13th St, San Francisco, CA 94016" -222003,AAA Batteries (4-pack),1,2.99,06/15/19 18:32,"300 Jefferson St, Boston, MA 02215" -222004,Apple Airpods Headphones,1,150,06/02/19 21:56,"26 1st St, Dallas, TX 75001" -222005,Flatscreen TV,1,300,06/17/19 01:42,"653 5th St, Los Angeles, CA 90001" -222006,Apple Airpods Headphones,1,150,06/26/19 20:08,"885 Lake St, San Francisco, CA 94016" -222007,AAA Batteries (4-pack),1,2.99,06/22/19 20:24,"317 Chestnut St, New York City, NY 10001" -222008,Bose SoundSport Headphones,1,99.99,06/30/19 22:30,"767 Madison St, Seattle, WA 98101" -222009,Wired Headphones,1,11.99,06/08/19 20:07,"790 Church St, New York City, NY 10001" -222010,USB-C Charging Cable,1,11.95,06/21/19 15:51,"729 Johnson St, Dallas, TX 75001" -222011,AAA Batteries (4-pack),2,2.99,06/26/19 08:19,"877 Highland St, Boston, MA 02215" -222012,Bose SoundSport Headphones,1,99.99,06/21/19 12:41,"262 Sunset St, Los Angeles, CA 90001" -222013,Wired Headphones,1,11.99,06/26/19 18:32,"406 Pine St, Boston, MA 02215" -222014,AAA Batteries (4-pack),1,2.99,06/04/19 19:05,"205 Meadow St, New York City, NY 10001" -222015,Bose SoundSport Headphones,1,99.99,06/03/19 11:35,"699 10th St, Los Angeles, CA 90001" -222016,27in 4K Gaming Monitor,1,389.99,06/24/19 19:22,"12 Maple St, Los Angeles, CA 90001" -222017,AA Batteries (4-pack),1,3.84,06/20/19 10:16,"159 Forest St, San Francisco, CA 94016" -222018,Lightning Charging Cable,1,14.95,06/21/19 01:57,"955 5th St, New York City, NY 10001" -222019,Google Phone,1,600,06/08/19 05:45,"617 Highland St, Los Angeles, CA 90001" -222020,USB-C Charging Cable,1,11.95,06/06/19 21:10,"984 Jackson St, Austin, TX 73301" -222021,34in Ultrawide Monitor,1,379.99,06/17/19 16:25,"632 10th St, Los Angeles, CA 90001" -222022,20in Monitor,1,109.99,06/30/19 08:24,"238 13th St, Dallas, TX 75001" -222023,AAA Batteries (4-pack),2,2.99,06/27/19 06:20,"801 9th St, Los Angeles, CA 90001" -222024,Bose SoundSport Headphones,1,99.99,06/21/19 15:28,"485 9th St, New York City, NY 10001" -222025,27in FHD Monitor,1,149.99,06/15/19 20:06,"511 Lakeview St, Austin, TX 73301" -222026,AAA Batteries (4-pack),1,2.99,06/06/19 20:49,"61 South St, Los Angeles, CA 90001" -222027,AAA Batteries (4-pack),1,2.99,06/06/19 10:12,"654 River St, San Francisco, CA 94016" -222028,Bose SoundSport Headphones,1,99.99,06/11/19 19:10,"647 Jefferson St, Seattle, WA 98101" -222029,Lightning Charging Cable,1,14.95,06/28/19 11:01,"910 Chestnut St, San Francisco, CA 94016" -222030,AA Batteries (4-pack),1,3.84,06/21/19 19:34,"11 Adams St, San Francisco, CA 94016" -222031,AA Batteries (4-pack),1,3.84,06/01/19 15:21,"954 Madison St, Dallas, TX 75001" -222032,AA Batteries (4-pack),1,3.84,06/17/19 22:31,"46 Park St, San Francisco, CA 94016" -222033,AAA Batteries (4-pack),2,2.99,06/18/19 21:22,"204 1st St, New York City, NY 10001" -222034,AA Batteries (4-pack),3,3.84,06/21/19 13:10,"125 Johnson St, San Francisco, CA 94016" -222035,Lightning Charging Cable,2,14.95,06/23/19 23:00,"143 Walnut St, New York City, NY 10001" -222036,AAA Batteries (4-pack),1,2.99,06/12/19 14:30,"315 Hill St, San Francisco, CA 94016" -222037,AAA Batteries (4-pack),3,2.99,06/05/19 13:27,"697 Chestnut St, Seattle, WA 98101" -222038,Wired Headphones,1,11.99,06/20/19 19:45,"226 12th St, Portland, OR 97035" -222039,AA Batteries (4-pack),1,3.84,06/16/19 09:49,"698 North St, Los Angeles, CA 90001" -222040,Wired Headphones,1,11.99,06/19/19 21:24,"337 Jefferson St, New York City, NY 10001" -222041,27in FHD Monitor,1,149.99,06/18/19 21:20,"776 North St, Los Angeles, CA 90001" -222042,Google Phone,1,600,06/27/19 19:19,"175 South St, Austin, TX 73301" -222043,USB-C Charging Cable,1,11.95,06/30/19 11:52,"793 1st St, Boston, MA 02215" -222044,AA Batteries (4-pack),1,3.84,06/10/19 05:49,"446 Pine St, Atlanta, GA 30301" -222045,Wired Headphones,1,11.99,06/30/19 15:45,"308 10th St, Atlanta, GA 30301" -222046,27in FHD Monitor,1,149.99,06/19/19 09:50,"670 Highland St, San Francisco, CA 94016" -222047,LG Dryer,1,600.0,06/10/19 22:50,"223 Jefferson St, Los Angeles, CA 90001" -222048,27in 4K Gaming Monitor,1,389.99,06/15/19 08:14,"879 Sunset St, Los Angeles, CA 90001" -222049,Wired Headphones,1,11.99,06/28/19 16:08,"890 Maple St, San Francisco, CA 94016" -222050,20in Monitor,1,109.99,06/03/19 16:52,"31 Forest St, Austin, TX 73301" -222051,Apple Airpods Headphones,1,150,06/28/19 08:48,"575 Adams St, New York City, NY 10001" -222052,AA Batteries (4-pack),1,3.84,06/27/19 16:41,"254 Washington St, Boston, MA 02215" -222053,Macbook Pro Laptop,1,1700,06/29/19 17:24,"515 Lakeview St, Boston, MA 02215" -222054,AA Batteries (4-pack),1,3.84,06/13/19 19:58,"933 Johnson St, San Francisco, CA 94016" -222055,Wired Headphones,2,11.99,06/26/19 04:30,"614 9th St, Boston, MA 02215" -222056,USB-C Charging Cable,1,11.95,06/11/19 17:16,"367 Center St, Atlanta, GA 30301" -222057,USB-C Charging Cable,1,11.95,06/02/19 11:26,"452 Wilson St, Los Angeles, CA 90001" -222058,Google Phone,1,600,06/15/19 08:46,"918 14th St, New York City, NY 10001" -222058,USB-C Charging Cable,1,11.95,06/15/19 08:46,"918 14th St, New York City, NY 10001" -222059,Lightning Charging Cable,1,14.95,06/17/19 20:16,"106 Hill St, Los Angeles, CA 90001" -222060,AAA Batteries (4-pack),1,2.99,06/01/19 08:54,"44 Cedar St, New York City, NY 10001" -222061,AAA Batteries (4-pack),1,2.99,06/10/19 22:45,"163 Spruce St, Los Angeles, CA 90001" -222062,USB-C Charging Cable,1,11.95,06/28/19 16:30,"834 Park St, Dallas, TX 75001" -222063,20in Monitor,1,109.99,06/09/19 14:35,"536 Sunset St, San Francisco, CA 94016" -222064,Lightning Charging Cable,1,14.95,06/04/19 06:39,"991 Walnut St, San Francisco, CA 94016" -222065,iPhone,1,700,06/16/19 11:55,"476 8th St, Portland, OR 97035" -222065,Wired Headphones,1,11.99,06/16/19 11:55,"476 8th St, Portland, OR 97035" -222066,AA Batteries (4-pack),1,3.84,06/25/19 08:51,"108 Lincoln St, New York City, NY 10001" -222067,Wired Headphones,1,11.99,06/16/19 16:09,"393 Meadow St, Portland, OR 97035" -,,,,, -222068,USB-C Charging Cable,1,11.95,06/25/19 12:32,"144 Walnut St, Atlanta, GA 30301" -222068,Wired Headphones,1,11.99,06/25/19 12:32,"144 Walnut St, Atlanta, GA 30301" -222069,AAA Batteries (4-pack),2,2.99,06/26/19 20:03,"936 4th St, Dallas, TX 75001" -222070,USB-C Charging Cable,1,11.95,06/25/19 08:10,"126 Adams St, New York City, NY 10001" -222071,AA Batteries (4-pack),2,3.84,06/09/19 17:14,"368 13th St, Portland, OR 97035" -222072,Google Phone,1,600,06/16/19 19:44,"458 Center St, Seattle, WA 98101" -222073,AA Batteries (4-pack),1,3.84,06/19/19 16:13,"643 2nd St, San Francisco, CA 94016" -222074,27in FHD Monitor,1,149.99,06/07/19 16:40,"292 Lake St, Los Angeles, CA 90001" -222075,34in Ultrawide Monitor,1,379.99,06/02/19 22:50,"880 Johnson St, Atlanta, GA 30301" -222076,ThinkPad Laptop,1,999.99,07/01/19 00:52,"878 Park St, Dallas, TX 75001" -222077,Wired Headphones,1,11.99,06/17/19 07:13,"61 Lincoln St, Atlanta, GA 30301" -222078,USB-C Charging Cable,1,11.95,06/05/19 13:17,"71 North St, New York City, NY 10001" -222079,ThinkPad Laptop,1,999.99,06/06/19 13:00,"839 Hill St, Austin, TX 73301" -222080,AA Batteries (4-pack),1,3.84,06/01/19 13:02,"553 8th St, Los Angeles, CA 90001" -222081,Apple Airpods Headphones,1,150,06/12/19 08:18,"846 Elm St, San Francisco, CA 94016" -222082,AAA Batteries (4-pack),3,2.99,06/18/19 07:48,"320 River St, Dallas, TX 75001" -222083,AAA Batteries (4-pack),2,2.99,06/15/19 09:07,"88 Center St, Boston, MA 02215" -222084,Apple Airpods Headphones,1,150,06/03/19 13:19,"899 1st St, New York City, NY 10001" -222085,AA Batteries (4-pack),1,3.84,06/13/19 12:39,"68 Church St, San Francisco, CA 94016" -222086,Lightning Charging Cable,1,14.95,06/11/19 21:35,"721 Lakeview St, Dallas, TX 75001" -222087,Wired Headphones,1,11.99,06/29/19 06:14,"586 West St, Portland, OR 97035" -222088,USB-C Charging Cable,3,11.95,06/24/19 21:07,"975 Pine St, Los Angeles, CA 90001" -222089,iPhone,1,700,06/19/19 23:38,"195 Madison St, Los Angeles, CA 90001" -222090,Wired Headphones,2,11.99,06/05/19 09:28,"404 7th St, Atlanta, GA 30301" -222091,AAA Batteries (4-pack),1,2.99,06/13/19 12:27,"546 Adams St, New York City, NY 10001" -222092,Wired Headphones,1,11.99,06/30/19 13:49,"424 Madison St, Seattle, WA 98101" -222093,Bose SoundSport Headphones,1,99.99,06/22/19 17:55,"639 River St, Atlanta, GA 30301" -222094,Google Phone,1,600,06/02/19 17:14,"669 13th St, Los Angeles, CA 90001" -222095,AAA Batteries (4-pack),2,2.99,06/22/19 07:10,"928 Pine St, Los Angeles, CA 90001" -222096,Wired Headphones,1,11.99,06/04/19 16:29,"10 1st St, Los Angeles, CA 90001" -222097,Bose SoundSport Headphones,1,99.99,06/01/19 11:03,"129 Walnut St, San Francisco, CA 94016" -222098,27in 4K Gaming Monitor,1,389.99,06/06/19 07:47,"890 Wilson St, New York City, NY 10001" -222099,AA Batteries (4-pack),1,3.84,06/27/19 15:29,"568 Chestnut St, Boston, MA 02215" -222100,34in Ultrawide Monitor,1,379.99,06/23/19 20:59,"624 12th St, San Francisco, CA 94016" -222101,USB-C Charging Cable,1,11.95,06/01/19 17:16,"793 Spruce St, San Francisco, CA 94016" -222102,Macbook Pro Laptop,1,1700,06/29/19 18:29,"344 Meadow St, San Francisco, CA 94016" -222103,AAA Batteries (4-pack),1,2.99,06/01/19 20:04,"783 Center St, Los Angeles, CA 90001" -222104,Lightning Charging Cable,1,14.95,06/02/19 09:07,"783 Walnut St, San Francisco, CA 94016" -222104,Bose SoundSport Headphones,1,99.99,06/02/19 09:07,"783 Walnut St, San Francisco, CA 94016" -222105,Lightning Charging Cable,1,14.95,06/28/19 16:03,"40 River St, San Francisco, CA 94016" -222106,ThinkPad Laptop,1,999.99,06/25/19 10:07,"898 Jefferson St, Portland, OR 97035" -222107,Apple Airpods Headphones,1,150,06/03/19 18:48,"983 Hill St, San Francisco, CA 94016" -222108,Flatscreen TV,1,300,06/29/19 12:10,"327 8th St, Los Angeles, CA 90001" -222109,Macbook Pro Laptop,1,1700,06/20/19 13:50,"88 Johnson St, San Francisco, CA 94016" -222110,iPhone,1,700,06/10/19 21:05,"951 Hill St, Boston, MA 02215" -222110,Wired Headphones,2,11.99,06/10/19 21:05,"951 Hill St, Boston, MA 02215" -222111,27in FHD Monitor,1,149.99,06/21/19 18:20,"431 Adams St, Seattle, WA 98101" -222112,Google Phone,1,600,06/08/19 13:50,"163 4th St, San Francisco, CA 94016" -222113,Bose SoundSport Headphones,1,99.99,06/09/19 14:05,"928 Sunset St, Seattle, WA 98101" -222114,USB-C Charging Cable,1,11.95,06/12/19 12:58,"660 Pine St, Boston, MA 02215" -222115,AA Batteries (4-pack),1,3.84,06/01/19 14:33,"366 1st St, Atlanta, GA 30301" -222116,Lightning Charging Cable,1,14.95,06/21/19 13:36,"718 12th St, Los Angeles, CA 90001" -222117,Bose SoundSport Headphones,1,99.99,06/01/19 22:12,"17 Washington St, Seattle, WA 98101" -222118,27in FHD Monitor,1,149.99,06/22/19 16:09,"40 Maple St, Los Angeles, CA 90001" -222119,iPhone,1,700,06/30/19 10:13,"21 Meadow St, Seattle, WA 98101" -222119,Lightning Charging Cable,1,14.95,06/30/19 10:13,"21 Meadow St, Seattle, WA 98101" -222120,Wired Headphones,1,11.99,06/19/19 19:41,"710 Meadow St, San Francisco, CA 94016" -222121,AAA Batteries (4-pack),2,2.99,06/24/19 21:59,"245 Chestnut St, Dallas, TX 75001" -222122,ThinkPad Laptop,1,999.99,06/14/19 09:51,"270 Cherry St, San Francisco, CA 94016" -222123,AA Batteries (4-pack),2,3.84,06/20/19 14:39,"774 Cedar St, Seattle, WA 98101" -222124,USB-C Charging Cable,1,11.95,06/18/19 08:44,"324 Willow St, Los Angeles, CA 90001" -222125,USB-C Charging Cable,1,11.95,06/12/19 17:19,"72 Jackson St, Los Angeles, CA 90001" -222126,USB-C Charging Cable,1,11.95,06/13/19 23:24,"862 Lake St, Austin, TX 73301" -222127,Wired Headphones,1,11.99,06/04/19 21:20,"938 Dogwood St, San Francisco, CA 94016" -222128,AAA Batteries (4-pack),1,2.99,06/08/19 14:42,"337 10th St, Atlanta, GA 30301" -222129,27in FHD Monitor,1,149.99,06/12/19 10:16,"311 Lincoln St, Los Angeles, CA 90001" -222130,27in 4K Gaming Monitor,1,389.99,06/03/19 15:31,"179 Elm St, San Francisco, CA 94016" -222131,iPhone,1,700,06/11/19 09:30,"701 8th St, San Francisco, CA 94016" -222132,USB-C Charging Cable,1,11.95,06/27/19 18:51,"7 2nd St, Los Angeles, CA 90001" -222133,Wired Headphones,1,11.99,06/07/19 22:43,"870 8th St, Los Angeles, CA 90001" -222134,Macbook Pro Laptop,1,1700,06/03/19 15:39,"581 Adams St, Austin, TX 73301" -222135,AAA Batteries (4-pack),1,2.99,06/12/19 06:56,"530 6th St, Los Angeles, CA 90001" -222136,Wired Headphones,1,11.99,06/06/19 11:44,"797 Maple St, Dallas, TX 75001" -222137,Apple Airpods Headphones,1,150,06/21/19 11:46,"691 Cherry St, Seattle, WA 98101" -222138,Flatscreen TV,1,300,06/07/19 20:23,"287 Walnut St, San Francisco, CA 94016" -222139,USB-C Charging Cable,1,11.95,06/24/19 20:11,"525 Park St, Portland, OR 97035" -222140,Google Phone,1,600,06/09/19 15:57,"535 14th St, San Francisco, CA 94016" -222141,AAA Batteries (4-pack),1,2.99,06/10/19 21:28,"396 South St, Dallas, TX 75001" -222142,AA Batteries (4-pack),2,3.84,06/15/19 13:40,"849 Meadow St, Boston, MA 02215" -222143,Macbook Pro Laptop,1,1700,06/18/19 18:42,"425 Elm St, San Francisco, CA 94016" -222144,AAA Batteries (4-pack),1,2.99,06/27/19 16:05,"789 Ridge St, New York City, NY 10001" -222145,AA Batteries (4-pack),1,3.84,06/05/19 13:39,"952 Lakeview St, Los Angeles, CA 90001" -222146,Lightning Charging Cable,1,14.95,06/11/19 09:55,"247 Jackson St, Los Angeles, CA 90001" -222147,Lightning Charging Cable,1,14.95,06/16/19 14:38,"849 Park St, Atlanta, GA 30301" -222148,Flatscreen TV,1,300,06/07/19 13:27,"8 North St, San Francisco, CA 94016" -222149,Lightning Charging Cable,1,14.95,06/13/19 06:45,"71 North St, Austin, TX 73301" -222150,27in FHD Monitor,1,149.99,06/28/19 15:50,"579 5th St, Boston, MA 02215" -222151,Lightning Charging Cable,1,14.95,06/03/19 18:10,"101 4th St, Atlanta, GA 30301" -222152,Wired Headphones,1,11.99,06/08/19 20:34,"244 7th St, New York City, NY 10001" -222153,27in FHD Monitor,1,149.99,06/06/19 21:37,"989 Wilson St, San Francisco, CA 94016" -222154,AA Batteries (4-pack),1,3.84,06/27/19 11:05,"718 Jefferson St, Seattle, WA 98101" -222155,Lightning Charging Cable,1,14.95,06/27/19 22:17,"874 Walnut St, Los Angeles, CA 90001" -222156,Macbook Pro Laptop,1,1700,06/06/19 21:53,"277 9th St, San Francisco, CA 94016" -222157,Lightning Charging Cable,2,14.95,06/29/19 15:16,"171 10th St, Boston, MA 02215" -222157,ThinkPad Laptop,1,999.99,06/29/19 15:16,"171 10th St, Boston, MA 02215" -222158,Lightning Charging Cable,1,14.95,06/09/19 11:47,"37 Maple St, Los Angeles, CA 90001" -222159,Apple Airpods Headphones,1,150,06/23/19 13:05,"342 11th St, Los Angeles, CA 90001" -222160,Wired Headphones,1,11.99,06/11/19 17:53,"673 Spruce St, Atlanta, GA 30301" -222161,27in FHD Monitor,1,149.99,06/16/19 09:15,"565 Hickory St, San Francisco, CA 94016" -222162,AAA Batteries (4-pack),1,2.99,06/17/19 17:37,"668 5th St, Los Angeles, CA 90001" -222163,AA Batteries (4-pack),2,3.84,06/15/19 18:18,"307 Maple St, San Francisco, CA 94016" -222164,Lightning Charging Cable,1,14.95,06/05/19 05:35,"847 West St, Los Angeles, CA 90001" -222165,LG Dryer,1,600.0,06/04/19 11:12,"970 13th St, Los Angeles, CA 90001" -222166,AAA Batteries (4-pack),3,2.99,06/11/19 21:41,"642 Elm St, Austin, TX 73301" -222167,20in Monitor,1,109.99,06/16/19 19:59,"464 11th St, San Francisco, CA 94016" -222168,USB-C Charging Cable,1,11.95,06/28/19 06:04,"897 13th St, San Francisco, CA 94016" -222169,Lightning Charging Cable,1,14.95,06/05/19 22:11,"146 Sunset St, Boston, MA 02215" -222170,iPhone,1,700,06/09/19 13:22,"142 9th St, New York City, NY 10001" -222171,27in FHD Monitor,1,149.99,06/29/19 19:18,"797 Willow St, San Francisco, CA 94016" -222172,Wired Headphones,1,11.99,06/23/19 11:13,"839 12th St, Los Angeles, CA 90001" -222173,USB-C Charging Cable,1,11.95,06/16/19 21:18,"846 Center St, San Francisco, CA 94016" -222174,Macbook Pro Laptop,1,1700,06/04/19 15:59,"576 Lincoln St, Portland, OR 97035" -222175,Lightning Charging Cable,1,14.95,06/09/19 11:53,"797 13th St, Austin, TX 73301" -222176,Lightning Charging Cable,1,14.95,06/13/19 17:47,"172 Spruce St, Los Angeles, CA 90001" -222177,AAA Batteries (4-pack),1,2.99,06/06/19 16:29,"396 Willow St, San Francisco, CA 94016" -222178,27in 4K Gaming Monitor,1,389.99,06/10/19 22:06,"642 Washington St, Boston, MA 02215" -222179,Flatscreen TV,1,300,06/14/19 18:26,"857 Park St, Dallas, TX 75001" -222180,Lightning Charging Cable,1,14.95,06/30/19 15:00,"541 Park St, San Francisco, CA 94016" -222181,Wired Headphones,1,11.99,06/23/19 14:35,"589 9th St, Los Angeles, CA 90001" -222182,Macbook Pro Laptop,1,1700,06/21/19 18:47,"344 Dogwood St, San Francisco, CA 94016" -222183,Lightning Charging Cable,1,14.95,06/12/19 21:47,"646 Meadow St, Los Angeles, CA 90001" -222184,Flatscreen TV,1,300,06/25/19 11:35,"916 Center St, Los Angeles, CA 90001" -222185,USB-C Charging Cable,1,11.95,06/10/19 19:15,"547 Cedar St, San Francisco, CA 94016" -222186,AA Batteries (4-pack),1,3.84,06/21/19 15:17,"748 10th St, San Francisco, CA 94016" -222187,Macbook Pro Laptop,1,1700,06/27/19 10:15,"700 Lincoln St, Seattle, WA 98101" -222188,AAA Batteries (4-pack),2,2.99,06/19/19 19:09,"7 Walnut St, San Francisco, CA 94016" -222189,USB-C Charging Cable,1,11.95,06/02/19 11:56,"866 Lincoln St, Austin, TX 73301" -222190,Wired Headphones,1,11.99,06/19/19 19:16,"125 Wilson St, Portland, OR 97035" -222191,Apple Airpods Headphones,1,150,06/15/19 23:41,"812 West St, Dallas, TX 75001" -222192,Apple Airpods Headphones,1,150,06/26/19 08:54,"465 Meadow St, Dallas, TX 75001" -222192,AAA Batteries (4-pack),1,2.99,06/26/19 08:54,"465 Meadow St, Dallas, TX 75001" -222193,Bose SoundSport Headphones,1,99.99,06/02/19 21:40,"981 Cedar St, Portland, ME 04101" -222194,Bose SoundSport Headphones,1,99.99,06/13/19 08:54,"112 West St, San Francisco, CA 94016" -222195,Apple Airpods Headphones,1,150,06/25/19 23:03,"916 1st St, Portland, OR 97035" -222196,ThinkPad Laptop,1,999.99,06/11/19 19:35,"781 Jackson St, Boston, MA 02215" -222197,AAA Batteries (4-pack),2,2.99,06/03/19 23:24,"275 Lincoln St, San Francisco, CA 94016" -222198,Lightning Charging Cable,1,14.95,06/20/19 15:19,"978 Cedar St, San Francisco, CA 94016" -222199,Lightning Charging Cable,1,14.95,06/07/19 03:39,"871 Hill St, Los Angeles, CA 90001" -222200,Apple Airpods Headphones,1,150,06/25/19 18:18,"218 Spruce St, Boston, MA 02215" -222201,Bose SoundSport Headphones,1,99.99,06/30/19 12:21,"350 Walnut St, New York City, NY 10001" -222202,ThinkPad Laptop,1,999.99,06/30/19 12:00,"229 Cedar St, San Francisco, CA 94016" -222203,Apple Airpods Headphones,1,150,06/21/19 16:40,"890 Willow St, Dallas, TX 75001" -222204,34in Ultrawide Monitor,1,379.99,06/15/19 18:53,"921 Maple St, San Francisco, CA 94016" -222205,USB-C Charging Cable,1,11.95,06/23/19 18:22,"413 Sunset St, Boston, MA 02215" -222205,AAA Batteries (4-pack),1,2.99,06/23/19 18:22,"413 Sunset St, Boston, MA 02215" -222206,AA Batteries (4-pack),1,3.84,06/20/19 21:48,"190 Johnson St, San Francisco, CA 94016" -222207,iPhone,1,700,06/22/19 14:35,"859 Meadow St, Austin, TX 73301" -222208,Wired Headphones,1,11.99,06/08/19 21:48,"790 10th St, New York City, NY 10001" -222209,AAA Batteries (4-pack),1,2.99,06/22/19 12:58,"131 5th St, Boston, MA 02215" -222210,USB-C Charging Cable,1,11.95,06/12/19 16:22,"615 Cedar St, New York City, NY 10001" -222211,34in Ultrawide Monitor,1,379.99,06/02/19 09:59,"163 Elm St, San Francisco, CA 94016" -222212,AA Batteries (4-pack),1,3.84,06/01/19 14:27,"428 Madison St, New York City, NY 10001" -222213,AA Batteries (4-pack),1,3.84,06/23/19 11:52,"189 Ridge St, San Francisco, CA 94016" -222214,AAA Batteries (4-pack),1,2.99,06/18/19 10:54,"795 Spruce St, New York City, NY 10001" -222215,iPhone,1,700,06/21/19 11:36,"563 4th St, Los Angeles, CA 90001" -222216,Lightning Charging Cable,1,14.95,06/28/19 16:06,"451 4th St, San Francisco, CA 94016" -222217,34in Ultrawide Monitor,1,379.99,06/04/19 20:59,"823 2nd St, Austin, TX 73301" -222218,27in 4K Gaming Monitor,1,389.99,06/15/19 17:34,"737 Meadow St, Portland, OR 97035" -222219,Wired Headphones,1,11.99,06/18/19 14:50,"394 12th St, Portland, OR 97035" -222220,Lightning Charging Cable,1,14.95,06/18/19 22:40,"744 Hill St, New York City, NY 10001" -222221,Vareebadd Phone,1,400,06/07/19 16:28,"79 Washington St, Atlanta, GA 30301" -222221,USB-C Charging Cable,1,11.95,06/07/19 16:28,"79 Washington St, Atlanta, GA 30301" -222222,20in Monitor,1,109.99,06/18/19 14:10,"685 Dogwood St, Austin, TX 73301" -222223,Wired Headphones,1,11.99,06/02/19 12:10,"194 Spruce St, Los Angeles, CA 90001" -222224,27in FHD Monitor,1,149.99,06/09/19 20:26,"142 Johnson St, Los Angeles, CA 90001" -222225,Bose SoundSport Headphones,1,99.99,06/10/19 11:57,"294 Jackson St, Dallas, TX 75001" -222226,USB-C Charging Cable,2,11.95,06/07/19 15:06,"982 River St, Boston, MA 02215" -222227,Apple Airpods Headphones,1,150,06/04/19 21:16,"969 South St, San Francisco, CA 94016" -222228,Wired Headphones,1,11.99,06/02/19 16:05,"819 Hickory St, Dallas, TX 75001" -222229,AAA Batteries (4-pack),1,2.99,06/06/19 20:50,"290 13th St, Los Angeles, CA 90001" -222230,Lightning Charging Cable,1,14.95,06/20/19 11:19,"675 West St, San Francisco, CA 94016" -222231,Google Phone,1,600,06/20/19 12:35,"336 Cedar St, Dallas, TX 75001" -222232,ThinkPad Laptop,1,999.99,06/25/19 19:10,"855 Meadow St, New York City, NY 10001" -222233,USB-C Charging Cable,1,11.95,06/01/19 12:18,"273 Maple St, Austin, TX 73301" -222234,Wired Headphones,1,11.99,06/11/19 11:07,"702 Park St, Portland, OR 97035" -222235,AA Batteries (4-pack),1,3.84,06/29/19 07:40,"671 Pine St, San Francisco, CA 94016" -222236,AA Batteries (4-pack),1,3.84,06/08/19 20:03,"359 Dogwood St, Portland, OR 97035" -222237,AA Batteries (4-pack),1,3.84,06/20/19 11:09,"925 River St, Seattle, WA 98101" -222238,AA Batteries (4-pack),1,3.84,06/06/19 11:58,"406 Church St, San Francisco, CA 94016" -222239,USB-C Charging Cable,1,11.95,06/30/19 17:48,"242 8th St, San Francisco, CA 94016" -222240,Apple Airpods Headphones,1,150,06/10/19 20:22,"980 Johnson St, Austin, TX 73301" -222241,Lightning Charging Cable,1,14.95,06/21/19 13:23,"726 Ridge St, New York City, NY 10001" -222242,27in 4K Gaming Monitor,1,389.99,06/06/19 17:09,"12 Main St, Austin, TX 73301" -222243,Flatscreen TV,1,300,06/10/19 10:55,"511 Lincoln St, Dallas, TX 75001" -222244,ThinkPad Laptop,1,999.99,06/04/19 15:55,"950 Pine St, San Francisco, CA 94016" -222245,ThinkPad Laptop,1,999.99,06/29/19 04:31,"740 9th St, San Francisco, CA 94016" -222246,Wired Headphones,1,11.99,06/24/19 12:52,"455 Elm St, New York City, NY 10001" -222247,Lightning Charging Cable,1,14.95,06/04/19 16:06,"959 Jefferson St, Dallas, TX 75001" -222248,AAA Batteries (4-pack),1,2.99,06/12/19 13:32,"465 7th St, Atlanta, GA 30301" -222249,AA Batteries (4-pack),1,3.84,06/05/19 21:13,"932 Madison St, Atlanta, GA 30301" -222250,iPhone,1,700,06/06/19 13:14,"673 Elm St, Los Angeles, CA 90001" -222251,Bose SoundSport Headphones,1,99.99,06/25/19 19:26,"129 Highland St, Los Angeles, CA 90001" -222252,27in FHD Monitor,1,149.99,06/24/19 08:47,"316 Chestnut St, Dallas, TX 75001" -222253,Bose SoundSport Headphones,1,99.99,06/18/19 16:09,"897 Main St, Boston, MA 02215" -222254,Macbook Pro Laptop,1,1700,06/15/19 11:57,"259 Pine St, Los Angeles, CA 90001" -222255,USB-C Charging Cable,1,11.95,06/23/19 11:10,"916 10th St, New York City, NY 10001" -222256,Wired Headphones,1,11.99,06/30/19 19:09,"880 North St, Los Angeles, CA 90001" -222257,AA Batteries (4-pack),1,3.84,06/15/19 20:15,"929 Jackson St, Atlanta, GA 30301" -222258,Bose SoundSport Headphones,1,99.99,06/08/19 12:07,"466 Ridge St, New York City, NY 10001" -222259,27in 4K Gaming Monitor,1,389.99,06/06/19 15:30,"800 13th St, Atlanta, GA 30301" -222260,AAA Batteries (4-pack),3,2.99,06/17/19 11:07,"57 Wilson St, Los Angeles, CA 90001" -222261,Wired Headphones,1,11.99,06/30/19 14:42,"436 Highland St, New York City, NY 10001" -222262,34in Ultrawide Monitor,1,379.99,06/02/19 15:09,"218 Madison St, New York City, NY 10001" -222263,Bose SoundSport Headphones,1,99.99,06/27/19 14:23,"992 11th St, Atlanta, GA 30301" -222264,Lightning Charging Cable,1,14.95,06/30/19 16:26,"961 Church St, Seattle, WA 98101" -222265,Wired Headphones,2,11.99,06/16/19 16:45,"248 Lincoln St, New York City, NY 10001" -222266,USB-C Charging Cable,1,11.95,06/07/19 10:37,"857 Lincoln St, Boston, MA 02215" -222267,Wired Headphones,1,11.99,06/09/19 06:25,"19 Spruce St, San Francisco, CA 94016" -222268,Apple Airpods Headphones,1,150,06/14/19 18:47,"801 Sunset St, San Francisco, CA 94016" -222269,AA Batteries (4-pack),2,3.84,06/25/19 18:43,"407 Pine St, Los Angeles, CA 90001" -222270,USB-C Charging Cable,1,11.95,06/03/19 08:52,"988 Washington St, New York City, NY 10001" -222271,Lightning Charging Cable,1,14.95,06/25/19 12:48,"988 2nd St, Los Angeles, CA 90001" -222272,Apple Airpods Headphones,1,150,06/19/19 19:35,"529 Main St, Boston, MA 02215" -222273,27in FHD Monitor,1,149.99,06/27/19 16:48,"737 Jefferson St, Austin, TX 73301" -222274,Macbook Pro Laptop,1,1700,06/15/19 13:41,"95 12th St, New York City, NY 10001" -222275,Lightning Charging Cable,1,14.95,06/20/19 20:33,"837 Cherry St, San Francisco, CA 94016" -222276,Flatscreen TV,1,300,06/26/19 21:29,"567 Lincoln St, New York City, NY 10001" -222277,USB-C Charging Cable,1,11.95,06/23/19 09:10,"704 Jackson St, Portland, OR 97035" -222278,34in Ultrawide Monitor,1,379.99,06/08/19 18:45,"911 Dogwood St, Dallas, TX 75001" -222279,AA Batteries (4-pack),1,3.84,06/04/19 08:32,"875 Forest St, Boston, MA 02215" -222280,Apple Airpods Headphones,1,150,06/11/19 15:11,"78 Pine St, Los Angeles, CA 90001" -222281,AAA Batteries (4-pack),1,2.99,06/15/19 19:47,"226 Park St, Los Angeles, CA 90001" -222282,USB-C Charging Cable,1,11.95,06/29/19 21:03,"204 14th St, Boston, MA 02215" -222283,Bose SoundSport Headphones,1,99.99,06/22/19 20:39,"998 Sunset St, San Francisco, CA 94016" -222284,AA Batteries (4-pack),1,3.84,06/08/19 18:50,"36 Jefferson St, San Francisco, CA 94016" -222285,USB-C Charging Cable,1,11.95,06/07/19 10:36,"645 Sunset St, Portland, ME 04101" -222286,Apple Airpods Headphones,1,150,06/28/19 18:29,"63 Sunset St, Portland, OR 97035" -222287,Lightning Charging Cable,1,14.95,06/05/19 00:12,"387 Willow St, San Francisco, CA 94016" -222288,AAA Batteries (4-pack),3,2.99,06/28/19 19:35,"466 Lincoln St, San Francisco, CA 94016" -222289,Lightning Charging Cable,2,14.95,06/06/19 20:57,"481 Meadow St, Boston, MA 02215" -222290,Google Phone,1,600,06/20/19 17:40,"627 Highland St, San Francisco, CA 94016" -222291,iPhone,1,700,06/14/19 10:31,"848 7th St, San Francisco, CA 94016" -222292,Lightning Charging Cable,1,14.95,06/06/19 08:00,"364 Cedar St, Los Angeles, CA 90001" -222293,AAA Batteries (4-pack),1,2.99,06/05/19 21:28,"750 Chestnut St, San Francisco, CA 94016" -222294,Apple Airpods Headphones,1,150,06/18/19 00:34,"299 Jackson St, Dallas, TX 75001" -222295,Wired Headphones,2,11.99,06/04/19 18:16,"922 West St, Boston, MA 02215" -222296,34in Ultrawide Monitor,1,379.99,06/09/19 23:14,"688 Wilson St, San Francisco, CA 94016" -222297,27in FHD Monitor,1,149.99,06/16/19 12:57,"925 Maple St, San Francisco, CA 94016" -222298,Wired Headphones,1,11.99,06/07/19 20:26,"487 Sunset St, Seattle, WA 98101" -222299,AAA Batteries (4-pack),1,2.99,06/24/19 22:28,"152 13th St, San Francisco, CA 94016" -222300,Lightning Charging Cable,1,14.95,06/08/19 12:50,"122 8th St, Boston, MA 02215" -222301,ThinkPad Laptop,1,999.99,06/03/19 11:57,"906 Jackson St, Portland, OR 97035" -222302,AAA Batteries (4-pack),1,2.99,06/07/19 23:03,"912 Sunset St, Atlanta, GA 30301" -222303,Flatscreen TV,1,300,06/19/19 18:21,"586 Church St, Atlanta, GA 30301" -222304,USB-C Charging Cable,2,11.95,06/09/19 01:21,"643 Lake St, New York City, NY 10001" -222305,AAA Batteries (4-pack),1,2.99,06/11/19 21:50,"293 Lake St, Atlanta, GA 30301" -222306,AAA Batteries (4-pack),3,2.99,06/20/19 22:06,"427 14th St, San Francisco, CA 94016" -222307,Google Phone,1,600,06/05/19 14:30,"75 North St, San Francisco, CA 94016" -222308,USB-C Charging Cable,1,11.95,06/22/19 00:00,"573 8th St, San Francisco, CA 94016" -222309,Lightning Charging Cable,2,14.95,06/15/19 18:28,"288 South St, Austin, TX 73301" -222310,Lightning Charging Cable,1,14.95,06/29/19 15:46,"812 Park St, New York City, NY 10001" -222311,USB-C Charging Cable,1,11.95,06/05/19 15:12,"333 Center St, San Francisco, CA 94016" -222312,USB-C Charging Cable,1,11.95,06/08/19 09:04,"873 10th St, Los Angeles, CA 90001" -222313,Lightning Charging Cable,1,14.95,06/21/19 12:08,"658 Wilson St, Boston, MA 02215" -222314,Bose SoundSport Headphones,1,99.99,06/21/19 18:47,"317 Sunset St, New York City, NY 10001" -222315,Wired Headphones,1,11.99,06/09/19 12:32,"666 Adams St, New York City, NY 10001" -222316,iPhone,1,700,06/25/19 08:38,"456 5th St, Atlanta, GA 30301" -222317,AA Batteries (4-pack),1,3.84,06/14/19 21:58,"12 Highland St, New York City, NY 10001" -222318,Wired Headphones,1,11.99,06/03/19 14:41,"183 Park St, Boston, MA 02215" -222319,34in Ultrawide Monitor,1,379.99,06/28/19 16:29,"565 Forest St, Los Angeles, CA 90001" -222320,Bose SoundSport Headphones,1,99.99,06/11/19 18:14,"255 4th St, San Francisco, CA 94016" -222321,Lightning Charging Cable,1,14.95,06/04/19 20:27,"157 Washington St, San Francisco, CA 94016" -222322,AA Batteries (4-pack),1,3.84,06/27/19 21:33,"648 Wilson St, San Francisco, CA 94016" -222323,Bose SoundSport Headphones,1,99.99,06/24/19 19:51,"82 Jackson St, Boston, MA 02215" -222324,Bose SoundSport Headphones,1,99.99,06/20/19 22:16,"825 5th St, Dallas, TX 75001" -222325,USB-C Charging Cable,1,11.95,06/21/19 03:16,"71 Pine St, San Francisco, CA 94016" -222326,Google Phone,1,600,06/29/19 17:45,"393 2nd St, San Francisco, CA 94016" -222327,AA Batteries (4-pack),1,3.84,06/23/19 19:56,"347 North St, Seattle, WA 98101" -222328,Apple Airpods Headphones,1,150,06/15/19 14:50,"249 West St, Los Angeles, CA 90001" -222329,AAA Batteries (4-pack),1,2.99,06/12/19 12:52,"727 Jefferson St, Seattle, WA 98101" -222330,Apple Airpods Headphones,1,150,06/16/19 23:07,"25 14th St, San Francisco, CA 94016" -222331,Wired Headphones,1,11.99,06/14/19 08:25,"486 Sunset St, Dallas, TX 75001" -222332,27in FHD Monitor,1,149.99,06/04/19 14:22,"182 Lake St, Los Angeles, CA 90001" -222332,34in Ultrawide Monitor,1,379.99,06/04/19 14:22,"182 Lake St, Los Angeles, CA 90001" -222333,AA Batteries (4-pack),1,3.84,06/25/19 15:10,"578 Meadow St, Portland, OR 97035" -222334,USB-C Charging Cable,1,11.95,06/05/19 15:47,"610 Adams St, New York City, NY 10001" -222335,Wired Headphones,1,11.99,06/04/19 09:21,"225 8th St, Boston, MA 02215" -222336,USB-C Charging Cable,1,11.95,06/20/19 17:34,"732 River St, Portland, ME 04101" -222337,ThinkPad Laptop,1,999.99,06/09/19 15:07,"796 Center St, Atlanta, GA 30301" -222338,27in 4K Gaming Monitor,1,389.99,06/12/19 10:15,"857 Wilson St, San Francisco, CA 94016" -222339,27in 4K Gaming Monitor,1,389.99,06/20/19 11:21,"143 6th St, San Francisco, CA 94016" -222340,iPhone,1,700,06/28/19 00:32,"940 Hickory St, New York City, NY 10001" -222341,Lightning Charging Cable,2,14.95,06/02/19 19:08,"57 Highland St, Los Angeles, CA 90001" -222342,AAA Batteries (4-pack),2,2.99,06/13/19 09:58,"67 Lincoln St, Los Angeles, CA 90001" -222343,Lightning Charging Cable,1,14.95,06/03/19 20:13,"841 10th St, Seattle, WA 98101" -222344,27in FHD Monitor,1,149.99,06/17/19 12:04,"893 Lake St, Los Angeles, CA 90001" -222344,AAA Batteries (4-pack),2,2.99,06/17/19 12:04,"893 Lake St, Los Angeles, CA 90001" -222345,Bose SoundSport Headphones,1,99.99,06/14/19 14:36,"984 Hickory St, Seattle, WA 98101" -222346,Lightning Charging Cable,1,14.95,06/10/19 20:01,"357 Elm St, New York City, NY 10001" -222347,Apple Airpods Headphones,1,150,06/30/19 03:47,"549 Sunset St, Los Angeles, CA 90001" -222348,AA Batteries (4-pack),1,3.84,06/14/19 15:52,"225 Johnson St, Los Angeles, CA 90001" -222349,AAA Batteries (4-pack),3,2.99,06/10/19 17:47,"806 Pine St, San Francisco, CA 94016" -222350,27in 4K Gaming Monitor,1,389.99,06/06/19 17:44,"185 West St, Los Angeles, CA 90001" -222351,Apple Airpods Headphones,1,150,06/20/19 14:46,"314 Washington St, Austin, TX 73301" -222352,27in FHD Monitor,1,149.99,06/03/19 08:36,"421 12th St, San Francisco, CA 94016" -222353,LG Dryer,1,600.0,06/03/19 21:05,"834 6th St, San Francisco, CA 94016" -222354,USB-C Charging Cable,1,11.95,06/04/19 12:47,"48 1st St, Dallas, TX 75001" -222355,Google Phone,1,600,06/22/19 19:30,"804 9th St, San Francisco, CA 94016" -222355,Bose SoundSport Headphones,1,99.99,06/22/19 19:30,"804 9th St, San Francisco, CA 94016" -222356,Wired Headphones,1,11.99,06/12/19 17:02,"704 North St, Seattle, WA 98101" -222357,Lightning Charging Cable,1,14.95,06/22/19 06:59,"594 Willow St, New York City, NY 10001" -222358,Wired Headphones,1,11.99,06/09/19 07:33,"884 Walnut St, New York City, NY 10001" -222359,Bose SoundSport Headphones,1,99.99,06/06/19 11:55,"115 12th St, San Francisco, CA 94016" -222360,Wired Headphones,3,11.99,06/10/19 13:21,"569 4th St, Portland, OR 97035" -222361,27in 4K Gaming Monitor,1,389.99,06/05/19 18:54,"528 13th St, Los Angeles, CA 90001" -222362,27in 4K Gaming Monitor,1,389.99,06/02/19 09:54,"710 12th St, San Francisco, CA 94016" -222363,AAA Batteries (4-pack),3,2.99,06/14/19 10:16,"99 Walnut St, Portland, OR 97035" -222364,USB-C Charging Cable,1,11.95,06/30/19 18:12,"434 Dogwood St, Atlanta, GA 30301" -222365,AAA Batteries (4-pack),2,2.99,06/10/19 16:57,"225 Sunset St, Atlanta, GA 30301" -222366,AA Batteries (4-pack),1,3.84,06/22/19 13:48,"573 Washington St, San Francisco, CA 94016" -222367,ThinkPad Laptop,1,999.99,06/12/19 19:48,"958 Lincoln St, Portland, OR 97035" -222368,27in 4K Gaming Monitor,1,389.99,06/20/19 22:37,"744 Highland St, Boston, MA 02215" -222369,Lightning Charging Cable,1,14.95,06/01/19 15:35,"129 11th St, San Francisco, CA 94016" -222370,Apple Airpods Headphones,1,150,06/03/19 19:03,"704 4th St, Boston, MA 02215" -222371,34in Ultrawide Monitor,1,379.99,06/03/19 23:24,"164 14th St, Austin, TX 73301" -222372,Vareebadd Phone,1,400,06/28/19 19:42,"557 South St, San Francisco, CA 94016" -222373,USB-C Charging Cable,1,11.95,06/10/19 11:28,"107 9th St, Boston, MA 02215" -222374,27in FHD Monitor,1,149.99,06/21/19 14:50,"558 Lincoln St, New York City, NY 10001" -222375,27in 4K Gaming Monitor,1,389.99,06/13/19 20:52,"288 Dogwood St, Dallas, TX 75001" -222375,Wired Headphones,1,11.99,06/13/19 20:52,"288 Dogwood St, Dallas, TX 75001" -222376,Macbook Pro Laptop,1,1700,06/24/19 17:07,"729 Ridge St, Los Angeles, CA 90001" -222377,USB-C Charging Cable,2,11.95,06/29/19 17:04,"526 Johnson St, San Francisco, CA 94016" -222378,Macbook Pro Laptop,1,1700,06/21/19 17:20,"930 Ridge St, San Francisco, CA 94016" -222379,Lightning Charging Cable,1,14.95,06/18/19 14:35,"842 Ridge St, New York City, NY 10001" -222379,Wired Headphones,1,11.99,06/18/19 14:35,"842 Ridge St, New York City, NY 10001" -222380,Google Phone,1,600,06/26/19 22:17,"808 11th St, San Francisco, CA 94016" -222381,Lightning Charging Cable,1,14.95,06/02/19 15:35,"493 Jackson St, San Francisco, CA 94016" -222382,AAA Batteries (4-pack),1,2.99,06/12/19 14:57,"591 South St, Dallas, TX 75001" -222383,ThinkPad Laptop,1,999.99,06/06/19 09:09,"365 Chestnut St, New York City, NY 10001" -222384,Macbook Pro Laptop,1,1700,06/05/19 11:59,"74 8th St, San Francisco, CA 94016" -222385,ThinkPad Laptop,1,999.99,06/12/19 20:10,"110 North St, New York City, NY 10001" -222386,Wired Headphones,1,11.99,06/01/19 11:21,"898 Willow St, San Francisco, CA 94016" -222387,Apple Airpods Headphones,1,150,06/26/19 10:58,"163 10th St, Portland, OR 97035" -222388,USB-C Charging Cable,1,11.95,06/21/19 16:07,"377 Jefferson St, Atlanta, GA 30301" -222389,iPhone,1,700,06/04/19 11:43,"450 12th St, Los Angeles, CA 90001" -222390,Wired Headphones,1,11.99,06/12/19 11:16,"7 Highland St, Boston, MA 02215" -222390,20in Monitor,1,109.99,06/12/19 11:16,"7 Highland St, Boston, MA 02215" -222391,Bose SoundSport Headphones,1,99.99,06/03/19 03:41,"303 Highland St, Boston, MA 02215" -222392,Macbook Pro Laptop,1,1700,06/25/19 10:41,"76 Pine St, Dallas, TX 75001" -222393,Wired Headphones,1,11.99,06/06/19 07:54,"648 8th St, Boston, MA 02215" -222394,Bose SoundSport Headphones,1,99.99,06/16/19 18:00,"621 Jackson St, Seattle, WA 98101" -222395,AAA Batteries (4-pack),1,2.99,06/22/19 19:30,"711 Lakeview St, Seattle, WA 98101" -222396,AAA Batteries (4-pack),1,2.99,06/30/19 15:49,"944 13th St, Dallas, TX 75001" -222397,Lightning Charging Cable,1,14.95,06/22/19 19:37,"504 4th St, Los Angeles, CA 90001" -222398,LG Washing Machine,1,600.0,06/18/19 20:41,"705 Wilson St, Los Angeles, CA 90001" -222399,Lightning Charging Cable,1,14.95,06/24/19 13:27,"753 Cedar St, Seattle, WA 98101" -222400,20in Monitor,1,109.99,06/13/19 14:08,"320 River St, Los Angeles, CA 90001" -222401,Macbook Pro Laptop,1,1700,06/22/19 11:43,"167 4th St, San Francisco, CA 94016" -222402,Lightning Charging Cable,1,14.95,06/03/19 21:14,"301 Ridge St, Dallas, TX 75001" -222403,27in 4K Gaming Monitor,1,389.99,06/27/19 20:34,"449 14th St, San Francisco, CA 94016" -222404,20in Monitor,1,109.99,06/05/19 17:48,"157 Chestnut St, Dallas, TX 75001" -222405,AA Batteries (4-pack),2,3.84,06/17/19 21:48,"901 Meadow St, San Francisco, CA 94016" -222406,AAA Batteries (4-pack),1,2.99,06/21/19 01:46,"481 13th St, Atlanta, GA 30301" -222407,Wired Headphones,1,11.99,06/20/19 08:05,"415 Walnut St, Dallas, TX 75001" -222408,Macbook Pro Laptop,1,1700,06/04/19 11:40,"413 Elm St, San Francisco, CA 94016" -222409,AAA Batteries (4-pack),1,2.99,06/10/19 20:24,"78 Chestnut St, San Francisco, CA 94016" -222410,AA Batteries (4-pack),1,3.84,06/04/19 13:34,"543 Cherry St, Boston, MA 02215" -222411,Lightning Charging Cable,2,14.95,06/29/19 00:51,"148 Highland St, New York City, NY 10001" -222412,AAA Batteries (4-pack),1,2.99,06/26/19 20:11,"643 Hickory St, Portland, OR 97035" -222413,Lightning Charging Cable,1,14.95,06/03/19 16:45,"191 Ridge St, San Francisco, CA 94016" -222414,Wired Headphones,1,11.99,06/24/19 19:32,"407 Sunset St, Dallas, TX 75001" -222415,Google Phone,1,600,06/06/19 10:45,"463 7th St, Seattle, WA 98101" -222415,USB-C Charging Cable,1,11.95,06/06/19 10:45,"463 7th St, Seattle, WA 98101" -222415,Wired Headphones,1,11.99,06/06/19 10:45,"463 7th St, Seattle, WA 98101" -222416,Lightning Charging Cable,1,14.95,06/14/19 15:45,"460 Hickory St, Dallas, TX 75001" -222417,27in FHD Monitor,1,149.99,06/24/19 21:56,"960 Washington St, Portland, OR 97035" -222418,AA Batteries (4-pack),1,3.84,06/17/19 12:38,"438 Wilson St, San Francisco, CA 94016" -222419,AAA Batteries (4-pack),2,2.99,06/23/19 19:11,"257 Hill St, Portland, ME 04101" -222420,27in FHD Monitor,1,149.99,06/16/19 01:20,"21 Lincoln St, San Francisco, CA 94016" -222421,Apple Airpods Headphones,1,150,06/14/19 01:05,"990 Jackson St, San Francisco, CA 94016" -222422,AAA Batteries (4-pack),2,2.99,06/01/19 14:11,"689 4th St, San Francisco, CA 94016" -222423,Flatscreen TV,1,300,06/08/19 15:31,"655 Highland St, San Francisco, CA 94016" -222424,27in FHD Monitor,1,149.99,06/05/19 16:01,"903 Wilson St, Boston, MA 02215" -222425,34in Ultrawide Monitor,1,379.99,06/07/19 13:22,"209 2nd St, San Francisco, CA 94016" -222426,USB-C Charging Cable,1,11.95,06/01/19 16:17,"409 Cherry St, Los Angeles, CA 90001" -222427,Apple Airpods Headphones,1,150,06/14/19 12:49,"304 Chestnut St, New York City, NY 10001" -222428,Apple Airpods Headphones,1,150,06/26/19 13:08,"135 Maple St, Portland, OR 97035" -222429,Lightning Charging Cable,1,14.95,06/14/19 01:17,"49 Chestnut St, New York City, NY 10001" -222430,USB-C Charging Cable,1,11.95,06/01/19 19:08,"479 Park St, New York City, NY 10001" -222431,AA Batteries (4-pack),1,3.84,06/07/19 12:30,"668 Adams St, New York City, NY 10001" -222432,Lightning Charging Cable,1,14.95,06/20/19 00:26,"378 Center St, New York City, NY 10001" -222433,AA Batteries (4-pack),2,3.84,06/26/19 22:25,"690 North St, Seattle, WA 98101" -222434,Macbook Pro Laptop,1,1700,06/02/19 22:59,"749 Dogwood St, San Francisco, CA 94016" -222435,USB-C Charging Cable,1,11.95,06/17/19 12:39,"588 5th St, San Francisco, CA 94016" -222435,AAA Batteries (4-pack),1,2.99,06/17/19 12:39,"588 5th St, San Francisco, CA 94016" -222436,Bose SoundSport Headphones,1,99.99,06/23/19 09:34,"841 Lakeview St, Atlanta, GA 30301" -222437,AAA Batteries (4-pack),1,2.99,06/26/19 13:20,"554 2nd St, Boston, MA 02215" -222438,Lightning Charging Cable,1,14.95,06/30/19 18:24,"773 Forest St, Atlanta, GA 30301" -222438,Macbook Pro Laptop,1,1700,06/30/19 18:24,"773 Forest St, Atlanta, GA 30301" -222439,27in FHD Monitor,1,149.99,06/29/19 15:20,"896 Pine St, San Francisco, CA 94016" -222440,Apple Airpods Headphones,1,150,06/18/19 22:05,"575 Church St, New York City, NY 10001" -222441,Apple Airpods Headphones,1,150,06/11/19 03:55,"149 1st St, San Francisco, CA 94016" -222442,iPhone,1,700,06/11/19 10:55,"352 4th St, Boston, MA 02215" -222442,Lightning Charging Cable,1,14.95,06/11/19 10:55,"352 4th St, Boston, MA 02215" -222443,USB-C Charging Cable,1,11.95,06/05/19 15:07,"243 Chestnut St, New York City, NY 10001" -222444,AAA Batteries (4-pack),1,2.99,06/01/19 11:11,"352 Hickory St, Los Angeles, CA 90001" -222445,Bose SoundSport Headphones,1,99.99,06/27/19 12:53,"772 Hill St, Dallas, TX 75001" -222446,AAA Batteries (4-pack),1,2.99,06/19/19 10:11,"831 1st St, San Francisco, CA 94016" -222447,LG Dryer,1,600.0,06/20/19 13:02,"338 Willow St, Seattle, WA 98101" -222448,Lightning Charging Cable,1,14.95,06/18/19 06:10,"679 Lincoln St, San Francisco, CA 94016" -222449,Lightning Charging Cable,1,14.95,06/09/19 11:05,"323 5th St, Boston, MA 02215" -222450,27in FHD Monitor,1,149.99,06/01/19 20:53,"801 Washington St, Atlanta, GA 30301" -222451,iPhone,1,700,06/14/19 21:34,"465 12th St, Atlanta, GA 30301" -222451,Lightning Charging Cable,1,14.95,06/14/19 21:34,"465 12th St, Atlanta, GA 30301" -222452,AA Batteries (4-pack),1,3.84,06/10/19 08:44,"522 9th St, Los Angeles, CA 90001" -222453,Lightning Charging Cable,2,14.95,06/08/19 11:11,"976 Hill St, New York City, NY 10001" -222454,USB-C Charging Cable,1,11.95,06/30/19 09:51,"427 North St, San Francisco, CA 94016" -222455,Flatscreen TV,1,300,06/17/19 00:13,"308 Lake St, Seattle, WA 98101" -222456,USB-C Charging Cable,1,11.95,06/08/19 07:00,"248 5th St, Seattle, WA 98101" -222456,27in FHD Monitor,1,149.99,06/08/19 07:00,"248 5th St, Seattle, WA 98101" -222457,USB-C Charging Cable,1,11.95,06/09/19 17:58,"485 Spruce St, Austin, TX 73301" -222458,USB-C Charging Cable,1,11.95,06/09/19 20:11,"565 Sunset St, San Francisco, CA 94016" -222459,Wired Headphones,2,11.99,06/19/19 17:05,"15 Lakeview St, San Francisco, CA 94016" -222460,27in FHD Monitor,1,149.99,06/05/19 16:20,"271 Center St, Boston, MA 02215" -222461,Lightning Charging Cable,1,14.95,06/13/19 22:18,"449 Elm St, San Francisco, CA 94016" -222462,USB-C Charging Cable,1,11.95,06/13/19 21:25,"572 Park St, San Francisco, CA 94016" -222463,Apple Airpods Headphones,1,150,06/22/19 20:03,"897 Ridge St, Los Angeles, CA 90001" -222464,USB-C Charging Cable,1,11.95,06/04/19 21:56,"680 Walnut St, San Francisco, CA 94016" -222464,34in Ultrawide Monitor,1,379.99,06/04/19 21:56,"680 Walnut St, San Francisco, CA 94016" -222465,AAA Batteries (4-pack),1,2.99,06/14/19 15:59,"407 Center St, Seattle, WA 98101" -222466,Flatscreen TV,1,300,06/19/19 07:33,"118 14th St, Dallas, TX 75001" -222467,Lightning Charging Cable,1,14.95,06/19/19 02:08,"192 8th St, Portland, OR 97035" -222468,AAA Batteries (4-pack),1,2.99,06/29/19 18:18,"764 5th St, Atlanta, GA 30301" -222469,iPhone,1,700,06/01/19 06:37,"633 Center St, New York City, NY 10001" -222469,Lightning Charging Cable,1,14.95,06/01/19 06:37,"633 Center St, New York City, NY 10001" -222470,Lightning Charging Cable,1,14.95,06/14/19 19:34,"302 Jefferson St, New York City, NY 10001" -222471,Flatscreen TV,1,300,06/04/19 19:19,"549 10th St, Atlanta, GA 30301" -222472,Flatscreen TV,1,300,06/20/19 18:36,"897 Adams St, San Francisco, CA 94016" -222473,Google Phone,1,600,06/14/19 13:25,"983 North St, Seattle, WA 98101" -222473,USB-C Charging Cable,2,11.95,06/14/19 13:25,"983 North St, Seattle, WA 98101" -222474,27in 4K Gaming Monitor,1,389.99,06/11/19 19:13,"452 10th St, New York City, NY 10001" -222475,Wired Headphones,1,11.99,06/12/19 10:50,"199 Main St, Boston, MA 02215" -222476,Google Phone,1,600,06/19/19 18:18,"479 6th St, Los Angeles, CA 90001" -222477,AA Batteries (4-pack),1,3.84,06/24/19 18:48,"615 South St, Los Angeles, CA 90001" -222478,USB-C Charging Cable,1,11.95,06/16/19 13:04,"736 Madison St, New York City, NY 10001" -222479,Lightning Charging Cable,1,14.95,06/05/19 11:45,"918 Washington St, San Francisco, CA 94016" -222480,27in 4K Gaming Monitor,1,389.99,06/28/19 19:28,"218 Center St, Boston, MA 02215" -222481,AA Batteries (4-pack),1,3.84,06/04/19 21:03,"920 Center St, Boston, MA 02215" -222482,LG Dryer,1,600.0,06/28/19 14:24,"390 Spruce St, Austin, TX 73301" -222483,Flatscreen TV,1,300,06/08/19 21:46,"362 2nd St, Portland, ME 04101" -222484,AA Batteries (4-pack),1,3.84,06/15/19 09:28,"375 Forest St, San Francisco, CA 94016" -222485,Wired Headphones,1,11.99,06/06/19 00:53,"359 6th St, Portland, OR 97035" -222486,AAA Batteries (4-pack),1,2.99,06/14/19 16:50,"683 2nd St, Portland, OR 97035" -222487,Lightning Charging Cable,1,14.95,06/18/19 20:06,"368 Center St, Austin, TX 73301" -222488,Macbook Pro Laptop,1,1700,06/08/19 17:58,"63 River St, Boston, MA 02215" -222489,Wired Headphones,1,11.99,06/10/19 15:14,"68 Jefferson St, Portland, ME 04101" -222490,Macbook Pro Laptop,1,1700,06/08/19 00:17,"673 South St, New York City, NY 10001" -222491,Flatscreen TV,1,300,06/18/19 08:38,"746 Lakeview St, New York City, NY 10001" -222492,USB-C Charging Cable,1,11.95,06/19/19 21:44,"286 12th St, Los Angeles, CA 90001" -222493,ThinkPad Laptop,1,999.99,06/25/19 21:15,"273 11th St, Portland, OR 97035" -222494,27in FHD Monitor,1,149.99,06/02/19 19:23,"990 South St, Dallas, TX 75001" -222495,Bose SoundSport Headphones,1,99.99,06/24/19 08:28,"967 Spruce St, Los Angeles, CA 90001" -222496,iPhone,1,700,06/17/19 18:38,"721 5th St, Boston, MA 02215" -222496,Apple Airpods Headphones,1,150,06/17/19 18:38,"721 5th St, Boston, MA 02215" -222497,Lightning Charging Cable,1,14.95,06/30/19 15:24,"823 Lakeview St, Dallas, TX 75001" -222498,LG Washing Machine,1,600.0,06/24/19 01:15,"949 Willow St, Atlanta, GA 30301" -222499,27in 4K Gaming Monitor,1,389.99,06/24/19 22:43,"685 14th St, Los Angeles, CA 90001" -222500,Lightning Charging Cable,1,14.95,06/10/19 09:58,"716 Main St, New York City, NY 10001" -222501,Wired Headphones,1,11.99,06/02/19 11:44,"886 Walnut St, Atlanta, GA 30301" -222502,USB-C Charging Cable,2,11.95,06/09/19 22:10,"892 Dogwood St, New York City, NY 10001" -222503,27in FHD Monitor,1,149.99,06/02/19 11:42,"796 4th St, San Francisco, CA 94016" -222504,Bose SoundSport Headphones,1,99.99,06/21/19 15:12,"822 12th St, Los Angeles, CA 90001" -222505,AAA Batteries (4-pack),2,2.99,06/24/19 18:38,"573 13th St, Portland, OR 97035" -222506,Lightning Charging Cable,1,14.95,06/30/19 22:41,"982 Main St, San Francisco, CA 94016" -222507,Lightning Charging Cable,1,14.95,06/20/19 12:54,"815 North St, Atlanta, GA 30301" -222508,Wired Headphones,1,11.99,06/18/19 20:20,"366 11th St, San Francisco, CA 94016" -222509,AA Batteries (4-pack),2,3.84,06/20/19 09:01,"826 Pine St, San Francisco, CA 94016" -222510,Apple Airpods Headphones,1,150,06/01/19 13:50,"951 Elm St, San Francisco, CA 94016" -222511,iPhone,1,700,06/30/19 19:53,"412 Willow St, San Francisco, CA 94016" -222512,27in FHD Monitor,1,149.99,06/18/19 09:50,"482 14th St, Seattle, WA 98101" -222513,USB-C Charging Cable,1,11.95,06/14/19 13:49,"119 14th St, Portland, OR 97035" -222514,34in Ultrawide Monitor,1,379.99,06/28/19 14:42,"558 Highland St, San Francisco, CA 94016" -222515,20in Monitor,1,109.99,06/18/19 21:46,"936 9th St, San Francisco, CA 94016" -222516,Wired Headphones,1,11.99,06/25/19 14:43,"429 South St, Boston, MA 02215" -222517,Google Phone,1,600,06/30/19 20:37,"525 9th St, Austin, TX 73301" -222517,USB-C Charging Cable,1,11.95,06/30/19 20:37,"525 9th St, Austin, TX 73301" -222518,27in FHD Monitor,1,149.99,06/18/19 22:22,"642 Hickory St, Portland, OR 97035" -222519,USB-C Charging Cable,1,11.95,06/25/19 13:22,"997 River St, Austin, TX 73301" -222520,AAA Batteries (4-pack),2,2.99,06/12/19 13:38,"632 Walnut St, New York City, NY 10001" -222521,AAA Batteries (4-pack),1,2.99,06/09/19 17:43,"842 Jackson St, Austin, TX 73301" -222522,Wired Headphones,1,11.99,06/12/19 14:41,"306 South St, San Francisco, CA 94016" -222523,AAA Batteries (4-pack),2,2.99,06/22/19 13:18,"538 Pine St, New York City, NY 10001" -222524,27in FHD Monitor,1,149.99,06/08/19 15:05,"908 8th St, Dallas, TX 75001" -222525,Wired Headphones,1,11.99,06/25/19 09:58,"688 10th St, Los Angeles, CA 90001" -222526,27in FHD Monitor,1,149.99,06/04/19 12:32,"270 Meadow St, Los Angeles, CA 90001" -222527,Google Phone,1,600,06/05/19 13:47,"477 Jackson St, Seattle, WA 98101" -222527,USB-C Charging Cable,1,11.95,06/05/19 13:47,"477 Jackson St, Seattle, WA 98101" -222527,Bose SoundSport Headphones,1,99.99,06/05/19 13:47,"477 Jackson St, Seattle, WA 98101" -222528,AA Batteries (4-pack),1,3.84,06/12/19 15:26,"385 Main St, Los Angeles, CA 90001" -222529,Wired Headphones,1,11.99,06/18/19 09:09,"179 6th St, Austin, TX 73301" -222530,Bose SoundSport Headphones,1,99.99,06/29/19 09:53,"695 Sunset St, Austin, TX 73301" -222531,Vareebadd Phone,1,400,06/19/19 21:57,"896 1st St, Atlanta, GA 30301" -222531,USB-C Charging Cable,1,11.95,06/19/19 21:57,"896 1st St, Atlanta, GA 30301" -222532,27in FHD Monitor,1,149.99,06/18/19 20:27,"552 River St, Portland, OR 97035" -222533,AAA Batteries (4-pack),2,2.99,06/24/19 15:42,"734 Lake St, San Francisco, CA 94016" -222534,27in 4K Gaming Monitor,1,389.99,06/02/19 23:54,"780 Sunset St, Boston, MA 02215" -222535,AA Batteries (4-pack),1,3.84,06/14/19 20:16,"700 Park St, Los Angeles, CA 90001" -222536,Apple Airpods Headphones,1,150,06/27/19 13:45,"814 Washington St, Los Angeles, CA 90001" -222537,AA Batteries (4-pack),1,3.84,06/13/19 11:55,"830 14th St, Atlanta, GA 30301" -222538,Apple Airpods Headphones,1,150,06/14/19 09:45,"240 Cherry St, Seattle, WA 98101" -222539,Wired Headphones,1,11.99,06/10/19 13:39,"573 4th St, San Francisco, CA 94016" -222540,AA Batteries (4-pack),1,3.84,06/04/19 12:21,"479 1st St, New York City, NY 10001" -222541,27in FHD Monitor,1,149.99,06/12/19 21:17,"579 Willow St, Portland, OR 97035" -222542,Apple Airpods Headphones,1,150,06/25/19 20:35,"466 6th St, San Francisco, CA 94016" -222543,AA Batteries (4-pack),2,3.84,06/27/19 22:34,"934 Jackson St, San Francisco, CA 94016" -222544,Lightning Charging Cable,1,14.95,06/15/19 00:03,"222 Ridge St, Atlanta, GA 30301" -222545,AAA Batteries (4-pack),1,2.99,06/21/19 16:50,"808 Church St, Los Angeles, CA 90001" -222546,Lightning Charging Cable,1,14.95,06/21/19 11:26,"354 Forest St, Boston, MA 02215" -222547,Bose SoundSport Headphones,1,99.99,06/21/19 16:00,"282 Cedar St, Los Angeles, CA 90001" -222548,AA Batteries (4-pack),1,3.84,06/24/19 07:34,"631 West St, Portland, OR 97035" -222549,AA Batteries (4-pack),5,3.84,06/29/19 18:25,"555 South St, Los Angeles, CA 90001" -222550,Apple Airpods Headphones,1,150,06/03/19 09:22,"313 Cedar St, New York City, NY 10001" -222551,USB-C Charging Cable,1,11.95,06/20/19 21:30,"718 12th St, Los Angeles, CA 90001" -222552,Wired Headphones,1,11.99,06/11/19 23:08,"190 Main St, Seattle, WA 98101" -222553,20in Monitor,1,109.99,06/17/19 15:37,"473 Maple St, Los Angeles, CA 90001" -222554,Apple Airpods Headphones,1,150,06/08/19 10:26,"225 South St, San Francisco, CA 94016" -222555,Vareebadd Phone,1,400,06/20/19 12:23,"993 Cedar St, New York City, NY 10001" -222555,USB-C Charging Cable,1,11.95,06/20/19 12:23,"993 Cedar St, New York City, NY 10001" -222555,Wired Headphones,1,11.99,06/20/19 12:23,"993 Cedar St, New York City, NY 10001" -222556,27in FHD Monitor,1,149.99,06/07/19 23:46,"36 South St, Portland, OR 97035" -222557,Apple Airpods Headphones,1,150,06/07/19 11:51,"144 Forest St, San Francisco, CA 94016" -222558,34in Ultrawide Monitor,1,379.99,06/17/19 16:12,"658 8th St, Los Angeles, CA 90001" -222559,LG Washing Machine,1,600.0,06/04/19 18:59,"468 Madison St, San Francisco, CA 94016" -222560,Bose SoundSport Headphones,1,99.99,06/10/19 01:09,"2 Elm St, Boston, MA 02215" -222561,Apple Airpods Headphones,1,150,06/01/19 09:34,"377 Wilson St, Boston, MA 02215" -222562,iPhone,1,700,06/07/19 17:38,"374 Dogwood St, Atlanta, GA 30301" -222563,AAA Batteries (4-pack),1,2.99,06/09/19 00:09,"647 5th St, San Francisco, CA 94016" -222564,AA Batteries (4-pack),2,3.84,06/11/19 20:28,"675 10th St, Seattle, WA 98101" -222565,AAA Batteries (4-pack),1,2.99,06/23/19 09:55,"300 Johnson St, Boston, MA 02215" -222566,ThinkPad Laptop,1,999.99,06/20/19 02:34,"475 11th St, San Francisco, CA 94016" -222567,Wired Headphones,1,11.99,06/22/19 09:05,"375 Dogwood St, Boston, MA 02215" -222568,USB-C Charging Cable,1,11.95,06/03/19 20:53,"218 Church St, San Francisco, CA 94016" -222569,Bose SoundSport Headphones,1,99.99,06/15/19 06:46,"18 Pine St, Atlanta, GA 30301" -222570,USB-C Charging Cable,1,11.95,06/30/19 21:04,"213 Adams St, Los Angeles, CA 90001" -222571,Macbook Pro Laptop,1,1700,06/19/19 16:33,"501 2nd St, Seattle, WA 98101" -222572,Lightning Charging Cable,2,14.95,06/08/19 16:28,"624 Willow St, Seattle, WA 98101" -222573,34in Ultrawide Monitor,1,379.99,06/27/19 13:20,"408 Center St, New York City, NY 10001" -222574,Lightning Charging Cable,1,14.95,06/30/19 19:24,"804 Jackson St, Portland, OR 97035" -222575,USB-C Charging Cable,1,11.95,06/05/19 15:18,"920 Johnson St, Portland, ME 04101" -222576,AA Batteries (4-pack),1,3.84,06/05/19 00:12,"39 6th St, San Francisco, CA 94016" -222577,20in Monitor,1,109.99,06/11/19 08:18,"857 Jackson St, Atlanta, GA 30301" -222578,Apple Airpods Headphones,1,150,06/06/19 13:36,"735 Main St, New York City, NY 10001" -222579,Vareebadd Phone,1,400,06/14/19 22:43,"426 1st St, Seattle, WA 98101" -222580,AA Batteries (4-pack),3,3.84,06/05/19 18:41,"54 Hill St, Los Angeles, CA 90001" -222581,Bose SoundSport Headphones,1,99.99,06/20/19 23:20,"562 Main St, San Francisco, CA 94016" -222582,USB-C Charging Cable,1,11.95,06/07/19 16:04,"949 Church St, San Francisco, CA 94016" -222583,Bose SoundSport Headphones,1,99.99,06/14/19 07:39,"768 South St, New York City, NY 10001" -222584,Lightning Charging Cable,1,14.95,06/03/19 22:24,"595 Sunset St, Dallas, TX 75001" -222585,USB-C Charging Cable,1,11.95,06/06/19 10:50,"885 Walnut St, New York City, NY 10001" -222586,Wired Headphones,1,11.99,06/07/19 09:12,"342 Maple St, New York City, NY 10001" -222587,Bose SoundSport Headphones,1,99.99,06/22/19 13:36,"491 13th St, San Francisco, CA 94016" -222588,Lightning Charging Cable,1,14.95,06/02/19 23:29,"175 7th St, Los Angeles, CA 90001" -222589,Lightning Charging Cable,2,14.95,06/01/19 16:13,"567 12th St, San Francisco, CA 94016" -222590,AAA Batteries (4-pack),2,2.99,06/09/19 12:56,"484 5th St, San Francisco, CA 94016" -222591,34in Ultrawide Monitor,1,379.99,06/08/19 08:37,"853 7th St, New York City, NY 10001" -222592,Lightning Charging Cable,1,14.95,06/10/19 20:39,"608 Dogwood St, Atlanta, GA 30301" -222593,USB-C Charging Cable,1,11.95,06/16/19 13:14,"165 Dogwood St, San Francisco, CA 94016" -222594,Apple Airpods Headphones,1,150,06/04/19 12:15,"852 Forest St, Seattle, WA 98101" -222595,27in FHD Monitor,1,149.99,06/08/19 14:10,"607 7th St, Dallas, TX 75001" -222596,34in Ultrawide Monitor,1,379.99,06/05/19 14:41,"105 Jefferson St, Atlanta, GA 30301" -222597,iPhone,1,700,06/21/19 01:36,"496 10th St, New York City, NY 10001" -222598,AA Batteries (4-pack),1,3.84,06/26/19 12:39,"78 Forest St, Atlanta, GA 30301" -222599,USB-C Charging Cable,1,11.95,06/20/19 14:20,"405 14th St, San Francisco, CA 94016" -222600,Flatscreen TV,1,300,06/28/19 20:02,"985 10th St, San Francisco, CA 94016" -222601,Lightning Charging Cable,1,14.95,06/15/19 07:12,"547 Lincoln St, Boston, MA 02215" -222602,Lightning Charging Cable,1,14.95,06/14/19 13:31,"241 Johnson St, San Francisco, CA 94016" -222603,20in Monitor,1,109.99,06/22/19 12:46,"184 Adams St, San Francisco, CA 94016" -222604,Bose SoundSport Headphones,1,99.99,06/15/19 18:07,"43 Highland St, Boston, MA 02215" -222605,27in FHD Monitor,1,149.99,06/23/19 11:02,"73 11th St, Boston, MA 02215" -222606,USB-C Charging Cable,1,11.95,06/12/19 04:44,"558 8th St, Dallas, TX 75001" -222607,34in Ultrawide Monitor,1,379.99,06/10/19 22:02,"871 Spruce St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -222608,USB-C Charging Cable,1,11.95,06/02/19 17:05,"339 7th St, San Francisco, CA 94016" -222609,Lightning Charging Cable,1,14.95,06/25/19 21:32,"669 Washington St, San Francisco, CA 94016" -222610,Lightning Charging Cable,2,14.95,06/08/19 21:34,"501 Dogwood St, New York City, NY 10001" -222611,20in Monitor,1,109.99,06/03/19 16:40,"105 Highland St, New York City, NY 10001" -222612,Lightning Charging Cable,1,14.95,06/10/19 08:44,"668 Forest St, Portland, OR 97035" -222613,AAA Batteries (4-pack),1,2.99,06/25/19 13:10,"159 Hill St, Portland, OR 97035" -222614,Apple Airpods Headphones,1,150,06/18/19 10:34,"924 Maple St, New York City, NY 10001" -222615,Vareebadd Phone,1,400,06/28/19 21:20,"229 North St, Seattle, WA 98101" -222616,AAA Batteries (4-pack),3,2.99,06/08/19 14:00,"96 Forest St, San Francisco, CA 94016" -222617,ThinkPad Laptop,1,999.99,06/18/19 10:53,"761 10th St, Atlanta, GA 30301" -222618,Wired Headphones,1,11.99,06/16/19 19:46,"130 5th St, Seattle, WA 98101" -222619,Bose SoundSport Headphones,1,99.99,06/12/19 14:57,"563 Sunset St, Portland, OR 97035" -222620,AAA Batteries (4-pack),1,2.99,06/26/19 19:11,"591 Jefferson St, Atlanta, GA 30301" -222621,Wired Headphones,1,11.99,06/19/19 21:46,"188 6th St, San Francisco, CA 94016" -222622,AA Batteries (4-pack),2,3.84,06/27/19 08:25,"282 14th St, Seattle, WA 98101" -222623,AAA Batteries (4-pack),1,2.99,06/15/19 11:54,"111 West St, Boston, MA 02215" -222624,Apple Airpods Headphones,1,150,06/30/19 01:49,"966 Main St, Los Angeles, CA 90001" -222625,iPhone,1,700,06/02/19 11:20,"510 Center St, Dallas, TX 75001" -222626,Google Phone,1,600,06/26/19 15:25,"79 2nd St, Atlanta, GA 30301" -222627,Apple Airpods Headphones,1,150,06/04/19 15:07,"54 Willow St, Atlanta, GA 30301" -222628,AAA Batteries (4-pack),1,2.99,06/01/19 21:19,"303 Pine St, New York City, NY 10001" -222629,27in FHD Monitor,1,149.99,06/21/19 09:00,"748 13th St, Los Angeles, CA 90001" -222630,AAA Batteries (4-pack),2,2.99,06/11/19 14:03,"935 1st St, Boston, MA 02215" -222631,Google Phone,1,600,06/07/19 15:24,"512 Jefferson St, New York City, NY 10001" -222632,Lightning Charging Cable,2,14.95,06/27/19 16:26,"904 Chestnut St, Dallas, TX 75001" -222633,Bose SoundSport Headphones,1,99.99,06/04/19 10:52,"405 Forest St, San Francisco, CA 94016" -222634,LG Dryer,1,600.0,06/27/19 23:47,"892 West St, Seattle, WA 98101" -222635,iPhone,1,700,06/06/19 21:53,"890 Ridge St, New York City, NY 10001" -222635,Lightning Charging Cable,1,14.95,06/06/19 21:53,"890 Ridge St, New York City, NY 10001" -222636,Apple Airpods Headphones,1,150,06/07/19 21:50,"368 8th St, New York City, NY 10001" -222637,Bose SoundSport Headphones,1,99.99,06/25/19 14:23,"801 Johnson St, Boston, MA 02215" -222638,ThinkPad Laptop,1,999.99,06/20/19 11:14,"833 14th St, New York City, NY 10001" -222639,Wired Headphones,1,11.99,06/19/19 09:21,"2 Lake St, Atlanta, GA 30301" -222640,Flatscreen TV,1,300,06/08/19 10:35,"60 Hill St, Boston, MA 02215" -222641,AA Batteries (4-pack),2,3.84,06/18/19 10:55,"813 River St, Austin, TX 73301" -222642,Wired Headphones,1,11.99,06/28/19 16:04,"169 9th St, Dallas, TX 75001" -222643,Macbook Pro Laptop,1,1700,06/04/19 20:24,"226 Pine St, San Francisco, CA 94016" -222644,Bose SoundSport Headphones,1,99.99,06/09/19 18:09,"162 Lake St, Seattle, WA 98101" -222645,Apple Airpods Headphones,1,150,06/30/19 12:24,"11 11th St, New York City, NY 10001" -222646,iPhone,1,700,06/05/19 11:49,"865 Church St, New York City, NY 10001" -222647,Lightning Charging Cable,1,14.95,06/28/19 11:03,"655 Park St, Dallas, TX 75001" -222648,20in Monitor,1,109.99,06/06/19 20:50,"731 Meadow St, Los Angeles, CA 90001" -222649,AAA Batteries (4-pack),1,2.99,06/01/19 20:49,"782 2nd St, Los Angeles, CA 90001" -222650,AA Batteries (4-pack),1,3.84,06/22/19 11:45,"465 Forest St, Portland, OR 97035" -222651,Wired Headphones,1,11.99,06/06/19 14:25,"369 11th St, Dallas, TX 75001" -222652,USB-C Charging Cable,1,11.95,06/13/19 18:58,"365 Highland St, Austin, TX 73301" -222653,Macbook Pro Laptop,1,1700,06/19/19 23:42,"869 Meadow St, San Francisco, CA 94016" -,,,,, -222654,Apple Airpods Headphones,1,150,06/03/19 13:50,"96 Cedar St, San Francisco, CA 94016" -222655,USB-C Charging Cable,1,11.95,06/24/19 07:26,"214 Hill St, San Francisco, CA 94016" -222656,Bose SoundSport Headphones,1,99.99,06/23/19 17:01,"304 Sunset St, San Francisco, CA 94016" -222657,AAA Batteries (4-pack),2,2.99,06/26/19 13:02,"780 Sunset St, Portland, OR 97035" -222658,AAA Batteries (4-pack),2,2.99,06/23/19 08:12,"93 5th St, Austin, TX 73301" -222659,AAA Batteries (4-pack),1,2.99,06/19/19 14:57,"619 10th St, Austin, TX 73301" -222660,Apple Airpods Headphones,1,150,06/25/19 17:54,"944 8th St, Dallas, TX 75001" -222661,Apple Airpods Headphones,1,150,06/26/19 11:38,"383 Ridge St, Los Angeles, CA 90001" -222662,Lightning Charging Cable,1,14.95,06/11/19 13:49,"806 Jefferson St, Boston, MA 02215" -222663,AAA Batteries (4-pack),2,2.99,06/20/19 12:06,"551 Wilson St, Dallas, TX 75001" -222664,27in FHD Monitor,1,149.99,06/07/19 20:24,"904 Maple St, San Francisco, CA 94016" -222665,27in FHD Monitor,1,149.99,06/08/19 12:14,"303 Cherry St, Boston, MA 02215" -222666,USB-C Charging Cable,1,11.95,06/19/19 15:16,"524 Pine St, San Francisco, CA 94016" -222667,Vareebadd Phone,1,400,06/13/19 09:13,"749 Meadow St, Dallas, TX 75001" -222668,ThinkPad Laptop,1,999.99,06/20/19 14:18,"730 Chestnut St, New York City, NY 10001" -222669,Apple Airpods Headphones,1,150,06/14/19 23:30,"259 Dogwood St, Los Angeles, CA 90001" -222670,USB-C Charging Cable,1,11.95,06/27/19 04:38,"959 Maple St, Seattle, WA 98101" -222671,Apple Airpods Headphones,1,150,06/17/19 15:26,"27 Walnut St, Los Angeles, CA 90001" -222672,AA Batteries (4-pack),1,3.84,06/05/19 18:52,"106 Pine St, San Francisco, CA 94016" -222673,Apple Airpods Headphones,1,150,06/13/19 14:01,"946 5th St, San Francisco, CA 94016" -222674,AAA Batteries (4-pack),4,2.99,06/08/19 19:42,"220 Elm St, San Francisco, CA 94016" -222675,Lightning Charging Cable,1,14.95,06/22/19 23:28,"389 Jackson St, Los Angeles, CA 90001" -222676,AAA Batteries (4-pack),2,2.99,06/06/19 16:41,"343 2nd St, Los Angeles, CA 90001" -222677,AAA Batteries (4-pack),1,2.99,06/24/19 22:55,"636 10th St, Boston, MA 02215" -222678,AA Batteries (4-pack),3,3.84,06/07/19 18:51,"116 14th St, New York City, NY 10001" -222679,Lightning Charging Cable,1,14.95,06/08/19 12:34,"448 Park St, Seattle, WA 98101" -222680,Bose SoundSport Headphones,1,99.99,06/25/19 20:03,"129 Chestnut St, San Francisco, CA 94016" -222681,Google Phone,1,600,06/22/19 19:27,"731 Willow St, Dallas, TX 75001" -222682,iPhone,1,700,06/14/19 20:27,"235 Lakeview St, Los Angeles, CA 90001" -222683,Google Phone,1,600,06/27/19 20:56,"152 Church St, Portland, OR 97035" -222684,AAA Batteries (4-pack),1,2.99,06/02/19 13:55,"275 Forest St, Boston, MA 02215" -222685,AA Batteries (4-pack),1,3.84,06/26/19 10:45,"926 Highland St, San Francisco, CA 94016" -222686,Wired Headphones,1,11.99,06/22/19 16:50,"718 Madison St, New York City, NY 10001" -222687,27in FHD Monitor,1,149.99,06/21/19 18:21,"900 Wilson St, Boston, MA 02215" -222688,iPhone,1,700,06/29/19 09:05,"150 Chestnut St, Austin, TX 73301" -222688,Lightning Charging Cable,1,14.95,06/29/19 09:05,"150 Chestnut St, Austin, TX 73301" -222689,Wired Headphones,1,11.99,06/21/19 19:43,"498 1st St, Boston, MA 02215" -222690,Lightning Charging Cable,1,14.95,06/20/19 17:04,"43 Church St, San Francisco, CA 94016" -222691,iPhone,1,700,06/19/19 19:46,"423 Lakeview St, Portland, OR 97035" -222692,Google Phone,1,600,06/19/19 20:17,"436 Washington St, Los Angeles, CA 90001" -222693,27in 4K Gaming Monitor,1,389.99,06/06/19 14:24,"796 Willow St, San Francisco, CA 94016" -222694,AA Batteries (4-pack),1,3.84,06/29/19 09:16,"975 1st St, San Francisco, CA 94016" -222695,USB-C Charging Cable,1,11.95,06/14/19 08:48,"730 Johnson St, Los Angeles, CA 90001" -222696,Wired Headphones,1,11.99,06/12/19 20:21,"942 11th St, Boston, MA 02215" -222697,Vareebadd Phone,1,400,06/12/19 11:04,"725 Ridge St, Austin, TX 73301" -222697,USB-C Charging Cable,1,11.95,06/12/19 11:04,"725 Ridge St, Austin, TX 73301" -222698,AA Batteries (4-pack),1,3.84,06/28/19 17:35,"75 Jackson St, Seattle, WA 98101" -222699,Apple Airpods Headphones,1,150,06/11/19 20:22,"502 Church St, San Francisco, CA 94016" -222700,USB-C Charging Cable,1,11.95,06/17/19 13:35,"488 Jackson St, Seattle, WA 98101" -222701,Lightning Charging Cable,1,14.95,06/12/19 23:17,"290 Main St, Dallas, TX 75001" -222702,Lightning Charging Cable,1,14.95,06/12/19 12:43,"147 Madison St, Seattle, WA 98101" -222703,Flatscreen TV,1,300,06/05/19 00:26,"483 Hickory St, New York City, NY 10001" -222704,Wired Headphones,2,11.99,06/26/19 09:52,"652 14th St, Boston, MA 02215" -222705,USB-C Charging Cable,1,11.95,06/30/19 07:45,"627 11th St, New York City, NY 10001" -222706,Macbook Pro Laptop,1,1700,06/11/19 21:30,"374 Dogwood St, New York City, NY 10001" -222707,27in FHD Monitor,1,149.99,06/15/19 21:02,"769 Hill St, San Francisco, CA 94016" -222708,27in 4K Gaming Monitor,1,389.99,06/29/19 23:35,"692 Walnut St, Dallas, TX 75001" -222709,USB-C Charging Cable,1,11.95,06/20/19 22:53,"113 Willow St, Seattle, WA 98101" -222710,Macbook Pro Laptop,1,1700,06/29/19 19:23,"136 Spruce St, Los Angeles, CA 90001" -222711,AAA Batteries (4-pack),1,2.99,06/07/19 21:21,"743 Walnut St, New York City, NY 10001" -222712,AAA Batteries (4-pack),4,2.99,06/25/19 09:13,"936 Jackson St, Dallas, TX 75001" -222713,USB-C Charging Cable,1,11.95,06/03/19 18:23,"64 Forest St, San Francisco, CA 94016" -222714,27in 4K Gaming Monitor,1,389.99,06/20/19 12:39,"883 Main St, Los Angeles, CA 90001" -222715,AAA Batteries (4-pack),1,2.99,06/30/19 19:22,"864 Forest St, Los Angeles, CA 90001" -222716,Bose SoundSport Headphones,1,99.99,06/30/19 16:42,"739 Willow St, New York City, NY 10001" -222717,AA Batteries (4-pack),1,3.84,06/22/19 21:38,"879 2nd St, Austin, TX 73301" -222718,Wired Headphones,1,11.99,06/18/19 15:30,"30 Elm St, Atlanta, GA 30301" -222719,ThinkPad Laptop,1,999.99,06/29/19 13:43,"740 Meadow St, Atlanta, GA 30301" -222720,Flatscreen TV,1,300,06/30/19 21:17,"875 Lakeview St, New York City, NY 10001" -222721,USB-C Charging Cable,2,11.95,06/29/19 20:56,"948 Johnson St, Atlanta, GA 30301" -222722,Macbook Pro Laptop,1,1700,06/11/19 11:45,"379 Church St, Austin, TX 73301" -222723,ThinkPad Laptop,1,999.99,06/08/19 08:28,"506 South St, Los Angeles, CA 90001" -222724,AAA Batteries (4-pack),2,2.99,06/17/19 22:00,"41 Lake St, New York City, NY 10001" -222725,Macbook Pro Laptop,1,1700,06/19/19 02:17,"812 Sunset St, Atlanta, GA 30301" -222726,AAA Batteries (4-pack),2,2.99,06/30/19 23:07,"673 Sunset St, Atlanta, GA 30301" -222727,AA Batteries (4-pack),1,3.84,06/11/19 17:41,"129 Hill St, Seattle, WA 98101" -222728,Macbook Pro Laptop,1,1700,06/13/19 21:29,"657 River St, Los Angeles, CA 90001" -222729,AA Batteries (4-pack),1,3.84,06/21/19 15:24,"81 West St, San Francisco, CA 94016" -222730,Apple Airpods Headphones,1,150,06/12/19 11:31,"10 Walnut St, San Francisco, CA 94016" -222731,USB-C Charging Cable,1,11.95,06/28/19 21:35,"824 5th St, Portland, OR 97035" -222732,USB-C Charging Cable,1,11.95,06/06/19 10:56,"551 Spruce St, Seattle, WA 98101" -222733,AAA Batteries (4-pack),2,2.99,06/07/19 08:29,"469 Park St, Dallas, TX 75001" -222734,27in 4K Gaming Monitor,1,389.99,06/16/19 21:08,"759 Park St, Los Angeles, CA 90001" -222735,Google Phone,1,600,06/07/19 18:18,"274 Maple St, San Francisco, CA 94016" -222736,USB-C Charging Cable,1,11.95,06/11/19 17:03,"166 North St, San Francisco, CA 94016" -222737,Apple Airpods Headphones,1,150,06/10/19 11:39,"739 2nd St, Portland, OR 97035" -222738,ThinkPad Laptop,1,999.99,06/28/19 23:17,"821 Main St, Los Angeles, CA 90001" -222739,Vareebadd Phone,1,400,06/09/19 22:14,"736 Meadow St, Los Angeles, CA 90001" -222740,Wired Headphones,1,11.99,07/01/19 01:35,"804 Walnut St, New York City, NY 10001" -222741,27in 4K Gaming Monitor,1,389.99,06/28/19 11:36,"940 Jackson St, San Francisco, CA 94016" -222741,AAA Batteries (4-pack),1,2.99,06/28/19 11:36,"940 Jackson St, San Francisco, CA 94016" -222742,Lightning Charging Cable,2,14.95,06/11/19 22:11,"552 West St, San Francisco, CA 94016" -222743,Google Phone,1,600,06/02/19 11:21,"479 Lakeview St, Boston, MA 02215" -222743,USB-C Charging Cable,1,11.95,06/02/19 11:21,"479 Lakeview St, Boston, MA 02215" -222744,Macbook Pro Laptop,1,1700,06/11/19 07:38,"775 11th St, Los Angeles, CA 90001" -222745,Apple Airpods Headphones,1,150,06/08/19 16:12,"261 Sunset St, New York City, NY 10001" -222746,Google Phone,1,600,06/13/19 10:37,"2 2nd St, Boston, MA 02215" -222747,Lightning Charging Cable,1,14.95,06/05/19 15:29,"355 Church St, New York City, NY 10001" -222748,LG Dryer,1,600.0,06/15/19 10:14,"487 Johnson St, New York City, NY 10001" -222749,27in 4K Gaming Monitor,1,389.99,06/16/19 08:17,"634 Jackson St, Boston, MA 02215" -222750,Lightning Charging Cable,2,14.95,06/06/19 11:46,"894 Wilson St, Dallas, TX 75001" -222751,AA Batteries (4-pack),1,3.84,06/01/19 11:14,"24 12th St, Los Angeles, CA 90001" -222752,Lightning Charging Cable,1,14.95,06/15/19 19:59,"605 Pine St, Seattle, WA 98101" -222753,Google Phone,1,600,06/05/19 18:37,"38 2nd St, Dallas, TX 75001" -222754,20in Monitor,1,109.99,06/04/19 13:02,"228 2nd St, New York City, NY 10001" -222755,Flatscreen TV,1,300,06/26/19 14:24,"489 7th St, San Francisco, CA 94016" -222756,AA Batteries (4-pack),1,3.84,06/16/19 11:57,"803 6th St, Atlanta, GA 30301" -222757,AA Batteries (4-pack),1,3.84,06/11/19 23:35,"885 Elm St, New York City, NY 10001" -222758,Lightning Charging Cable,2,14.95,06/25/19 00:02,"181 North St, Dallas, TX 75001" -222759,Wired Headphones,1,11.99,06/27/19 15:48,"428 North St, New York City, NY 10001" -222760,Wired Headphones,2,11.99,06/11/19 13:58,"129 Chestnut St, Los Angeles, CA 90001" -222761,34in Ultrawide Monitor,1,379.99,06/17/19 09:45,"288 7th St, New York City, NY 10001" -222762,AA Batteries (4-pack),3,3.84,06/21/19 15:59,"204 Spruce St, Boston, MA 02215" -222763,AAA Batteries (4-pack),1,2.99,06/08/19 19:39,"159 4th St, Atlanta, GA 30301" -222764,AA Batteries (4-pack),1,3.84,06/08/19 20:19,"989 Lakeview St, Dallas, TX 75001" -222765,Macbook Pro Laptop,1,1700,06/14/19 21:33,"319 6th St, Portland, OR 97035" -222766,USB-C Charging Cable,1,11.95,06/26/19 19:26,"722 9th St, San Francisco, CA 94016" -222767,Lightning Charging Cable,1,14.95,06/26/19 13:57,"425 Willow St, Seattle, WA 98101" -222768,AA Batteries (4-pack),1,3.84,06/06/19 16:18,"493 13th St, Los Angeles, CA 90001" -222769,Apple Airpods Headphones,1,150,06/18/19 18:35,"913 Wilson St, Atlanta, GA 30301" -222770,34in Ultrawide Monitor,1,379.99,06/27/19 14:55,"34 Sunset St, San Francisco, CA 94016" -222771,20in Monitor,1,109.99,06/23/19 19:55,"512 Sunset St, Dallas, TX 75001" -222772,27in FHD Monitor,1,149.99,06/26/19 19:17,"186 North St, Portland, OR 97035" -222773,34in Ultrawide Monitor,1,379.99,06/23/19 14:35,"904 Walnut St, New York City, NY 10001" -222774,iPhone,1,700,06/17/19 19:56,"788 Madison St, Boston, MA 02215" -222775,AA Batteries (4-pack),1,3.84,06/19/19 17:30,"731 Adams St, Boston, MA 02215" -222776,Lightning Charging Cable,2,14.95,06/17/19 15:45,"380 Park St, San Francisco, CA 94016" -222777,ThinkPad Laptop,1,999.99,06/06/19 11:14,"42 Hickory St, Portland, ME 04101" -222778,USB-C Charging Cable,1,11.95,06/13/19 17:06,"9 Spruce St, New York City, NY 10001" -222779,Apple Airpods Headphones,1,150,06/14/19 11:04,"176 Ridge St, Dallas, TX 75001" -222780,20in Monitor,1,109.99,06/27/19 05:31,"66 Ridge St, Portland, OR 97035" -222781,AA Batteries (4-pack),1,3.84,06/04/19 14:43,"949 Wilson St, Austin, TX 73301" -222782,Vareebadd Phone,1,400,06/05/19 18:23,"417 Elm St, Los Angeles, CA 90001" -222783,AA Batteries (4-pack),2,3.84,06/11/19 17:30,"680 Main St, Atlanta, GA 30301" -222784,Apple Airpods Headphones,1,150,06/10/19 22:45,"230 12th St, Los Angeles, CA 90001" -222785,Wired Headphones,1,11.99,06/02/19 07:35,"247 Center St, San Francisco, CA 94016" -222786,34in Ultrawide Monitor,1,379.99,06/21/19 13:20,"875 Johnson St, New York City, NY 10001" -222787,AA Batteries (4-pack),1,3.84,06/03/19 02:22,"799 Spruce St, Seattle, WA 98101" -222787,27in 4K Gaming Monitor,1,389.99,06/03/19 02:22,"799 Spruce St, Seattle, WA 98101" -222788,27in 4K Gaming Monitor,1,389.99,06/01/19 22:08,"494 Jefferson St, Portland, ME 04101" -222789,Google Phone,1,600,06/01/19 09:23,"407 River St, New York City, NY 10001" -222790,AA Batteries (4-pack),1,3.84,06/01/19 18:11,"933 Chestnut St, Boston, MA 02215" -222791,ThinkPad Laptop,1,999.99,06/09/19 12:54,"284 Cedar St, Portland, ME 04101" -222792,USB-C Charging Cable,2,11.95,06/22/19 14:35,"703 Sunset St, Austin, TX 73301" -222793,Bose SoundSport Headphones,1,99.99,06/28/19 19:56,"132 5th St, Portland, OR 97035" -222794,Bose SoundSport Headphones,1,99.99,06/07/19 19:27,"590 Cedar St, Los Angeles, CA 90001" -222795,Lightning Charging Cable,1,14.95,06/18/19 18:55,"64 11th St, Atlanta, GA 30301" -222796,Apple Airpods Headphones,1,150,06/07/19 10:14,"200 Maple St, Seattle, WA 98101" -222797,20in Monitor,1,109.99,06/12/19 09:38,"609 Lakeview St, Boston, MA 02215" -222798,Apple Airpods Headphones,1,150,06/06/19 10:12,"47 Chestnut St, Atlanta, GA 30301" -222799,Wired Headphones,1,11.99,06/15/19 22:28,"80 Madison St, New York City, NY 10001" -222800,AA Batteries (4-pack),1,3.84,06/30/19 15:21,"220 Cedar St, Portland, OR 97035" -222801,Wired Headphones,1,11.99,06/27/19 12:13,"717 Spruce St, San Francisco, CA 94016" -222802,Bose SoundSport Headphones,1,99.99,06/27/19 10:14,"243 West St, New York City, NY 10001" -222803,Bose SoundSport Headphones,1,99.99,06/12/19 23:44,"284 Lake St, New York City, NY 10001" -222804,27in 4K Gaming Monitor,1,389.99,06/08/19 13:15,"637 Main St, Boston, MA 02215" -222805,Bose SoundSport Headphones,1,99.99,06/10/19 11:50,"701 Cedar St, San Francisco, CA 94016" -222806,AAA Batteries (4-pack),1,2.99,06/11/19 18:22,"781 Main St, San Francisco, CA 94016" -222807,34in Ultrawide Monitor,1,379.99,06/26/19 22:28,"924 Pine St, New York City, NY 10001" -222808,USB-C Charging Cable,1,11.95,06/21/19 19:20,"863 Dogwood St, Dallas, TX 75001" -222809,Wired Headphones,1,11.99,06/25/19 11:14,"371 Maple St, Portland, OR 97035" -222810,20in Monitor,1,109.99,06/15/19 10:23,"347 Adams St, San Francisco, CA 94016" -222811,Wired Headphones,1,11.99,06/04/19 18:48,"507 Johnson St, Portland, OR 97035" -222812,Vareebadd Phone,1,400,06/16/19 13:13,"567 Meadow St, Los Angeles, CA 90001" -222812,USB-C Charging Cable,1,11.95,06/16/19 13:13,"567 Meadow St, Los Angeles, CA 90001" -222812,Wired Headphones,1,11.99,06/16/19 13:13,"567 Meadow St, Los Angeles, CA 90001" -222813,AAA Batteries (4-pack),1,2.99,06/30/19 23:36,"825 7th St, Los Angeles, CA 90001" -222814,Wired Headphones,2,11.99,06/06/19 10:49,"244 Lakeview St, New York City, NY 10001" -222815,Lightning Charging Cable,2,14.95,06/06/19 23:07,"315 9th St, Boston, MA 02215" -222816,Flatscreen TV,1,300,06/27/19 21:52,"65 8th St, San Francisco, CA 94016" -222817,iPhone,1,700,06/21/19 10:27,"114 7th St, Los Angeles, CA 90001" -222817,Wired Headphones,1,11.99,06/21/19 10:27,"114 7th St, Los Angeles, CA 90001" -222818,Wired Headphones,1,11.99,06/22/19 02:35,"757 Willow St, New York City, NY 10001" -222819,Lightning Charging Cable,1,14.95,06/07/19 10:42,"926 4th St, Dallas, TX 75001" -222820,Google Phone,1,600,06/25/19 18:50,"764 Madison St, San Francisco, CA 94016" -222821,AAA Batteries (4-pack),2,2.99,06/12/19 22:08,"935 Forest St, Portland, OR 97035" -222822,Macbook Pro Laptop,1,1700,06/17/19 00:18,"393 Willow St, San Francisco, CA 94016" -222823,AA Batteries (4-pack),1,3.84,06/16/19 13:05,"994 Center St, Seattle, WA 98101" -222824,Apple Airpods Headphones,1,150,06/30/19 12:54,"293 Washington St, Seattle, WA 98101" -222825,USB-C Charging Cable,1,11.95,06/09/19 18:02,"228 Hill St, Atlanta, GA 30301" -222826,AAA Batteries (4-pack),2,2.99,06/25/19 08:33,"208 14th St, San Francisco, CA 94016" -222827,AA Batteries (4-pack),1,3.84,06/23/19 08:19,"588 Dogwood St, Austin, TX 73301" -222828,Apple Airpods Headphones,1,150,06/21/19 15:05,"92 West St, New York City, NY 10001" -222829,USB-C Charging Cable,1,11.95,06/27/19 09:00,"55 South St, San Francisco, CA 94016" -222830,AA Batteries (4-pack),1,3.84,06/10/19 17:25,"474 Madison St, Seattle, WA 98101" -222831,Flatscreen TV,1,300,06/01/19 18:06,"565 Madison St, Seattle, WA 98101" -222832,27in 4K Gaming Monitor,1,389.99,06/25/19 01:09,"910 4th St, New York City, NY 10001" -222833,AAA Batteries (4-pack),2,2.99,06/13/19 17:15,"126 Lake St, Austin, TX 73301" -222834,AAA Batteries (4-pack),2,2.99,06/22/19 12:34,"150 8th St, Los Angeles, CA 90001" -222835,LG Washing Machine,1,600.0,06/22/19 09:46,"473 Lincoln St, Atlanta, GA 30301" -222836,Bose SoundSport Headphones,1,99.99,06/25/19 10:11,"687 Ridge St, New York City, NY 10001" -222837,AAA Batteries (4-pack),1,2.99,06/11/19 13:59,"898 13th St, Atlanta, GA 30301" -222838,27in FHD Monitor,1,149.99,06/14/19 15:57,"473 10th St, San Francisco, CA 94016" -222839,LG Washing Machine,1,600.0,06/29/19 09:27,"592 8th St, Atlanta, GA 30301" -222840,AA Batteries (4-pack),2,3.84,06/22/19 00:34,"781 6th St, Austin, TX 73301" -222841,Wired Headphones,3,11.99,06/21/19 12:34,"602 River St, San Francisco, CA 94016" -222842,USB-C Charging Cable,1,11.95,06/16/19 16:32,"902 Cedar St, Boston, MA 02215" -222843,Google Phone,1,600,06/14/19 19:04,"845 River St, Los Angeles, CA 90001" -222844,27in FHD Monitor,1,149.99,06/14/19 00:26,"265 Adams St, San Francisco, CA 94016" -222845,AA Batteries (4-pack),3,3.84,06/29/19 08:58,"589 1st St, Atlanta, GA 30301" -222846,ThinkPad Laptop,1,999.99,06/15/19 16:19,"459 Johnson St, Dallas, TX 75001" -222847,Apple Airpods Headphones,1,150,06/30/19 08:49,"633 Main St, Boston, MA 02215" -222848,Bose SoundSport Headphones,1,99.99,06/22/19 21:41,"428 8th St, Los Angeles, CA 90001" -222849,USB-C Charging Cable,2,11.95,06/09/19 19:09,"26 9th St, Boston, MA 02215" -222850,Flatscreen TV,1,300,06/20/19 17:11,"221 Jackson St, Atlanta, GA 30301" -222851,Wired Headphones,1,11.99,06/08/19 15:33,"99 14th St, New York City, NY 10001" -222852,USB-C Charging Cable,1,11.95,06/26/19 20:03,"97 5th St, San Francisco, CA 94016" -222853,AA Batteries (4-pack),1,3.84,06/28/19 13:03,"267 5th St, Seattle, WA 98101" -222854,20in Monitor,1,109.99,06/30/19 01:06,"892 4th St, New York City, NY 10001" -222855,AA Batteries (4-pack),1,3.84,06/12/19 11:35,"735 Highland St, New York City, NY 10001" -222856,AAA Batteries (4-pack),2,2.99,06/03/19 13:53,"164 Johnson St, San Francisco, CA 94016" -222857,AA Batteries (4-pack),2,3.84,06/20/19 16:09,"36 West St, Atlanta, GA 30301" -222858,Apple Airpods Headphones,1,150,06/14/19 19:00,"656 Maple St, Boston, MA 02215" -222859,iPhone,1,700,06/04/19 19:38,"512 13th St, Atlanta, GA 30301" -222860,Flatscreen TV,1,300,06/11/19 12:14,"782 Elm St, Boston, MA 02215" -222861,Wired Headphones,2,11.99,06/26/19 22:16,"606 Pine St, Portland, OR 97035" -222862,27in FHD Monitor,1,149.99,06/21/19 07:33,"159 Maple St, San Francisco, CA 94016" -222863,27in FHD Monitor,1,149.99,06/07/19 11:05,"222 Walnut St, Austin, TX 73301" -222863,Bose SoundSport Headphones,1,99.99,06/07/19 11:05,"222 Walnut St, Austin, TX 73301" -222864,Apple Airpods Headphones,1,150,06/29/19 19:46,"382 11th St, San Francisco, CA 94016" -222865,Wired Headphones,1,11.99,06/14/19 20:01,"233 7th St, New York City, NY 10001" -222866,AA Batteries (4-pack),1,3.84,06/16/19 19:55,"583 Dogwood St, New York City, NY 10001" -222867,AA Batteries (4-pack),1,3.84,06/27/19 07:57,"408 Hickory St, San Francisco, CA 94016" -222868,iPhone,1,700,06/16/19 13:53,"505 North St, New York City, NY 10001" -222868,Apple Airpods Headphones,1,150,06/16/19 13:53,"505 North St, New York City, NY 10001" -222869,Flatscreen TV,1,300,06/30/19 21:03,"464 Ridge St, Boston, MA 02215" -222870,AA Batteries (4-pack),2,3.84,06/01/19 08:47,"697 Forest St, Dallas, TX 75001" -222871,Lightning Charging Cable,1,14.95,06/09/19 10:16,"317 Madison St, Los Angeles, CA 90001" -222872,USB-C Charging Cable,1,11.95,06/17/19 08:28,"402 11th St, Boston, MA 02215" -222873,Lightning Charging Cable,1,14.95,06/29/19 10:20,"18 Maple St, Boston, MA 02215" -222874,ThinkPad Laptop,1,999.99,06/09/19 11:14,"549 Adams St, Los Angeles, CA 90001" -222875,AA Batteries (4-pack),1,3.84,06/07/19 11:46,"829 Jackson St, New York City, NY 10001" -222876,LG Washing Machine,1,600.0,06/08/19 12:31,"749 Madison St, San Francisco, CA 94016" -222877,Wired Headphones,1,11.99,06/28/19 21:28,"745 8th St, Dallas, TX 75001" -222878,Lightning Charging Cable,1,14.95,06/18/19 18:56,"371 6th St, Los Angeles, CA 90001" -222879,AA Batteries (4-pack),1,3.84,06/07/19 19:38,"997 Meadow St, Dallas, TX 75001" -222880,Lightning Charging Cable,1,14.95,06/28/19 11:52,"787 Jackson St, San Francisco, CA 94016" -222881,AA Batteries (4-pack),1,3.84,06/05/19 16:06,"620 Park St, Atlanta, GA 30301" -222882,Apple Airpods Headphones,1,150,06/18/19 11:37,"990 Walnut St, Los Angeles, CA 90001" -222882,AA Batteries (4-pack),1,3.84,06/18/19 11:37,"990 Walnut St, Los Angeles, CA 90001" -222883,34in Ultrawide Monitor,1,379.99,06/14/19 09:12,"508 West St, San Francisco, CA 94016" -222884,Google Phone,1,600,06/04/19 12:06,"819 Pine St, New York City, NY 10001" -222884,USB-C Charging Cable,1,11.95,06/04/19 12:06,"819 Pine St, New York City, NY 10001" -222885,LG Dryer,1,600.0,06/01/19 13:22,"447 Spruce St, New York City, NY 10001" -222886,AA Batteries (4-pack),1,3.84,06/07/19 12:18,"703 14th St, Portland, ME 04101" -222887,USB-C Charging Cable,1,11.95,06/14/19 12:19,"801 9th St, Austin, TX 73301" -222888,USB-C Charging Cable,1,11.95,06/11/19 15:59,"615 Elm St, Boston, MA 02215" -222889,Bose SoundSport Headphones,1,99.99,06/05/19 06:19,"448 10th St, Los Angeles, CA 90001" -222890,AAA Batteries (4-pack),1,2.99,06/24/19 07:54,"665 South St, San Francisco, CA 94016" -222891,Lightning Charging Cable,1,14.95,06/04/19 23:55,"99 Lincoln St, New York City, NY 10001" -222892,AAA Batteries (4-pack),2,2.99,06/21/19 12:48,"23 1st St, New York City, NY 10001" -222893,USB-C Charging Cable,1,11.95,06/28/19 18:50,"802 Church St, Los Angeles, CA 90001" -222894,USB-C Charging Cable,1,11.95,06/15/19 16:56,"449 12th St, Seattle, WA 98101" -222895,34in Ultrawide Monitor,1,379.99,06/29/19 20:39,"497 1st St, San Francisco, CA 94016" -222896,Wired Headphones,1,11.99,06/13/19 19:54,"594 Meadow St, New York City, NY 10001" -222897,27in 4K Gaming Monitor,1,389.99,06/01/19 23:58,"350 10th St, San Francisco, CA 94016" -222898,20in Monitor,1,109.99,06/29/19 15:08,"798 Park St, San Francisco, CA 94016" -222899,AAA Batteries (4-pack),1,2.99,06/18/19 16:34,"688 1st St, New York City, NY 10001" -222900,Lightning Charging Cable,1,14.95,06/19/19 20:00,"590 Wilson St, Los Angeles, CA 90001" -222901,AAA Batteries (4-pack),1,2.99,06/11/19 04:00,"891 South St, Atlanta, GA 30301" -222902,Lightning Charging Cable,1,14.95,06/10/19 17:43,"847 Main St, Atlanta, GA 30301" -222903,iPhone,1,700,06/07/19 22:21,"685 Hickory St, New York City, NY 10001" -222903,Lightning Charging Cable,1,14.95,06/07/19 22:21,"685 Hickory St, New York City, NY 10001" -222904,Macbook Pro Laptop,1,1700,06/09/19 22:07,"975 2nd St, Los Angeles, CA 90001" -222905,AAA Batteries (4-pack),1,2.99,06/07/19 19:02,"795 Pine St, Boston, MA 02215" -222906,27in FHD Monitor,1,149.99,06/01/19 19:29,"495 North St, New York City, NY 10001" -222907,USB-C Charging Cable,1,11.95,06/22/19 18:57,"319 Ridge St, San Francisco, CA 94016" -222908,USB-C Charging Cable,1,11.95,06/26/19 18:35,"916 Main St, San Francisco, CA 94016" -222909,AAA Batteries (4-pack),1,2.99,06/25/19 14:33,"209 11th St, Atlanta, GA 30301" -162009,iPhone,1,700,03/28/19 20:59,"942 Church St, Austin, TX 73301" -162009,Lightning Charging Cable,1,14.95,03/28/19 20:59,"942 Church St, Austin, TX 73301" -162009,Wired Headphones,2,11.99,03/28/19 20:59,"942 Church St, Austin, TX 73301" -162010,Bose SoundSport Headphones,1,99.99,03/17/19 05:39,"261 10th St, San Francisco, CA 94016" -162011,34in Ultrawide Monitor,1,379.99,03/10/19 00:01,"764 13th St, San Francisco, CA 94016" -162012,AA Batteries (4-pack),1,3.84,03/20/19 21:33,"187 Ridge St, San Francisco, CA 94016" -162013,34in Ultrawide Monitor,1,379.99,03/15/19 23:05,"904 Main St, Austin, TX 73301" -162014,USB-C Charging Cable,1,11.95,03/01/19 21:33,"10 13th St, San Francisco, CA 94016" -162015,AA Batteries (4-pack),1,3.84,03/02/19 08:52,"949 Jefferson St, Boston, MA 02215" -162016,AAA Batteries (4-pack),5,2.99,03/19/19 21:10,"469 Highland St, Atlanta, GA 30301" -162017,Lightning Charging Cable,1,14.95,03/02/19 13:55,"449 River St, San Francisco, CA 94016" -162018,USB-C Charging Cable,2,11.95,03/18/19 11:07,"925 Maple St, Portland, OR 97035" -162019,AAA Batteries (4-pack),1,2.99,03/05/19 12:20,"639 4th St, Atlanta, GA 30301" -162020,LG Washing Machine,1,600.0,03/26/19 18:17,"616 Jackson St, Dallas, TX 75001" -162021,Wired Headphones,1,11.99,03/30/19 12:02,"645 Wilson St, Los Angeles, CA 90001" -162022,AA Batteries (4-pack),1,3.84,03/17/19 22:18,"473 Hill St, New York City, NY 10001" -162023,Apple Airpods Headphones,1,150,03/11/19 20:00,"404 Park St, San Francisco, CA 94016" -162024,27in 4K Gaming Monitor,1,389.99,03/17/19 09:22,"952 Willow St, Atlanta, GA 30301" -162025,AAA Batteries (4-pack),1,2.99,03/07/19 20:50,"110 7th St, Boston, MA 02215" -162026,iPhone,1,700,03/22/19 22:31,"71 Pine St, Austin, TX 73301" -162027,AAA Batteries (4-pack),1,2.99,03/16/19 20:52,"421 Main St, Los Angeles, CA 90001" -162028,AAA Batteries (4-pack),3,2.99,03/20/19 15:23,"739 1st St, San Francisco, CA 94016" -162029,AAA Batteries (4-pack),1,2.99,03/26/19 12:17,"141 North St, Atlanta, GA 30301" -162030,Google Phone,1,600,03/09/19 16:50,"463 4th St, San Francisco, CA 94016" -162031,Lightning Charging Cable,1,14.95,03/28/19 17:03,"131 Johnson St, Boston, MA 02215" -162032,Lightning Charging Cable,1,14.95,03/31/19 10:39,"498 4th St, Los Angeles, CA 90001" -162033,iPhone,1,700,03/19/19 11:06,"267 Johnson St, Dallas, TX 75001" -162034,USB-C Charging Cable,1,11.95,03/26/19 20:34,"104 Center St, Seattle, WA 98101" -162035,Macbook Pro Laptop,1,1700,03/08/19 13:07,"44 4th St, Los Angeles, CA 90001" -162036,Lightning Charging Cable,1,14.95,03/09/19 19:39,"905 Spruce St, San Francisco, CA 94016" -162037,iPhone,1,700,03/23/19 02:11,"277 Elm St, Los Angeles, CA 90001" -162037,Lightning Charging Cable,1,14.95,03/23/19 02:11,"277 Elm St, Los Angeles, CA 90001" -162038,AAA Batteries (4-pack),2,2.99,03/18/19 20:31,"53 10th St, Atlanta, GA 30301" -162039,AA Batteries (4-pack),1,3.84,03/29/19 12:01,"175 West St, San Francisco, CA 94016" -162040,USB-C Charging Cable,1,11.95,03/25/19 09:11,"973 North St, Austin, TX 73301" -162041,Apple Airpods Headphones,1,150,03/14/19 01:01,"633 13th St, Austin, TX 73301" -162042,USB-C Charging Cable,1,11.95,03/09/19 22:39,"661 7th St, San Francisco, CA 94016" -162043,AA Batteries (4-pack),1,3.84,03/29/19 10:59,"883 Walnut St, Atlanta, GA 30301" -162044,27in FHD Monitor,1,149.99,03/22/19 10:11,"469 9th St, Dallas, TX 75001" -162045,Apple Airpods Headphones,1,150,03/26/19 13:31,"906 Park St, New York City, NY 10001" -162046,AAA Batteries (4-pack),2,2.99,03/20/19 20:33,"661 1st St, San Francisco, CA 94016" -162047,Bose SoundSport Headphones,1,99.99,03/08/19 18:41,"819 9th St, Austin, TX 73301" -162048,AA Batteries (4-pack),1,3.84,03/31/19 19:24,"819 Main St, New York City, NY 10001" -162049,Lightning Charging Cable,1,14.95,03/25/19 13:35,"307 Chestnut St, Austin, TX 73301" -162050,AAA Batteries (4-pack),1,2.99,03/26/19 17:09,"870 Spruce St, Boston, MA 02215" -162051,AAA Batteries (4-pack),1,2.99,03/12/19 09:12,"565 South St, Boston, MA 02215" -162052,Wired Headphones,1,11.99,03/11/19 09:44,"971 Washington St, Los Angeles, CA 90001" -162053,iPhone,1,700,03/10/19 18:29,"660 7th St, Seattle, WA 98101" -162054,Wired Headphones,1,11.99,03/20/19 00:42,"358 5th St, San Francisco, CA 94016" -162055,AA Batteries (4-pack),1,3.84,03/29/19 09:21,"675 8th St, Los Angeles, CA 90001" -162056,Wired Headphones,1,11.99,03/17/19 10:24,"55 Adams St, San Francisco, CA 94016" -162057,Wired Headphones,1,11.99,03/30/19 18:44,"485 Maple St, Los Angeles, CA 90001" -162058,27in FHD Monitor,1,149.99,03/30/19 02:30,"510 Church St, New York City, NY 10001" -162059,USB-C Charging Cable,1,11.95,03/03/19 05:47,"602 Willow St, Seattle, WA 98101" -162060,AAA Batteries (4-pack),3,2.99,03/10/19 16:04,"703 Lake St, Seattle, WA 98101" -162061,Wired Headphones,1,11.99,03/01/19 22:07,"967 10th St, New York City, NY 10001" -162062,AAA Batteries (4-pack),1,2.99,03/24/19 03:37,"235 Park St, Portland, OR 97035" -162063,AAA Batteries (4-pack),2,2.99,03/02/19 11:58,"693 12th St, Austin, TX 73301" -162064,Macbook Pro Laptop,1,1700,03/05/19 09:00,"414 Willow St, San Francisco, CA 94016" -162065,Google Phone,1,600,03/02/19 13:18,"862 Spruce St, San Francisco, CA 94016" -162066,AA Batteries (4-pack),1,3.84,03/13/19 13:57,"602 Pine St, New York City, NY 10001" -162066,USB-C Charging Cable,2,11.95,03/13/19 13:57,"602 Pine St, New York City, NY 10001" -162067,ThinkPad Laptop,1,999.99,03/07/19 23:40,"4 Cedar St, San Francisco, CA 94016" -162068,Wired Headphones,1,11.99,03/24/19 12:25,"117 1st St, Austin, TX 73301" -162069,AA Batteries (4-pack),1,3.84,03/15/19 16:53,"853 Park St, Boston, MA 02215" -162070,27in FHD Monitor,1,149.99,03/15/19 18:19,"859 South St, Los Angeles, CA 90001" -162071,Vareebadd Phone,1,400,03/30/19 20:23,"334 Jackson St, Atlanta, GA 30301" -162071,USB-C Charging Cable,1,11.95,03/30/19 20:23,"334 Jackson St, Atlanta, GA 30301" -162072,AA Batteries (4-pack),1,3.84,03/02/19 12:04,"945 Adams St, New York City, NY 10001" -162073,Bose SoundSport Headphones,1,99.99,03/23/19 20:52,"573 Lakeview St, San Francisco, CA 94016" -162074,Apple Airpods Headphones,1,150,03/05/19 12:45,"928 Dogwood St, San Francisco, CA 94016" -162075,Apple Airpods Headphones,1,150,03/11/19 09:19,"456 7th St, New York City, NY 10001" -162076,Wired Headphones,1,11.99,03/04/19 09:12,"424 Wilson St, Dallas, TX 75001" -162077,AAA Batteries (4-pack),1,2.99,03/22/19 11:54,"783 Johnson St, New York City, NY 10001" -162078,Lightning Charging Cable,1,14.95,03/02/19 16:48,"167 North St, San Francisco, CA 94016" -162079,Google Phone,1,600,03/24/19 21:36,"144 West St, Los Angeles, CA 90001" -162080,Apple Airpods Headphones,1,150,03/24/19 09:37,"245 Chestnut St, Boston, MA 02215" -162081,Lightning Charging Cable,1,14.95,03/26/19 20:58,"183 Dogwood St, Los Angeles, CA 90001" -162082,Vareebadd Phone,1,400,03/09/19 14:15,"401 Wilson St, New York City, NY 10001" -162082,Wired Headphones,1,11.99,03/09/19 14:15,"401 Wilson St, New York City, NY 10001" -162083,Wired Headphones,1,11.99,03/27/19 19:04,"162 Lakeview St, Atlanta, GA 30301" -162084,iPhone,1,700,03/27/19 12:53,"585 14th St, Los Angeles, CA 90001" -162085,Lightning Charging Cable,1,14.95,03/24/19 19:52,"705 Highland St, San Francisco, CA 94016" -162086,Google Phone,1,600,03/18/19 09:12,"410 Chestnut St, New York City, NY 10001" -162087,Google Phone,1,600,03/18/19 13:58,"303 Chestnut St, Boston, MA 02215" -162087,USB-C Charging Cable,1,11.95,03/18/19 13:58,"303 Chestnut St, Boston, MA 02215" -162088,Google Phone,1,600,03/02/19 15:50,"231 Jackson St, Los Angeles, CA 90001" -162089,Wired Headphones,1,11.99,03/07/19 12:25,"692 13th St, New York City, NY 10001" -162090,Bose SoundSport Headphones,1,99.99,03/12/19 13:03,"747 Wilson St, Austin, TX 73301" -162091,Bose SoundSport Headphones,1,99.99,03/18/19 08:13,"926 Main St, Boston, MA 02215" -162092,Flatscreen TV,1,300,03/18/19 11:29,"477 11th St, Seattle, WA 98101" -162092,AAA Batteries (4-pack),1,2.99,03/18/19 11:29,"477 11th St, Seattle, WA 98101" -162093,Vareebadd Phone,1,400,03/19/19 11:32,"855 Lakeview St, Boston, MA 02215" -162094,ThinkPad Laptop,1,999.99,03/21/19 03:42,"959 River St, Atlanta, GA 30301" -162095,Wired Headphones,1,11.99,03/29/19 13:18,"628 Lakeview St, Seattle, WA 98101" -162096,Bose SoundSport Headphones,1,99.99,03/04/19 00:20,"323 Hill St, New York City, NY 10001" -162097,Flatscreen TV,1,300,03/28/19 13:43,"929 Elm St, New York City, NY 10001" -162098,Flatscreen TV,1,300,03/07/19 15:44,"84 Center St, New York City, NY 10001" -162099,USB-C Charging Cable,1,11.95,03/03/19 00:18,"598 Washington St, Los Angeles, CA 90001" -162100,Wired Headphones,1,11.99,03/04/19 00:17,"635 Spruce St, Boston, MA 02215" -162101,Macbook Pro Laptop,1,1700,03/30/19 10:47,"253 11th St, Seattle, WA 98101" -162102,Wired Headphones,1,11.99,03/31/19 19:51,"69 Center St, New York City, NY 10001" -162103,AAA Batteries (4-pack),1,2.99,03/18/19 20:50,"860 Main St, Portland, OR 97035" -162104,Lightning Charging Cable,1,14.95,03/05/19 15:25,"572 Walnut St, New York City, NY 10001" -162105,USB-C Charging Cable,1,11.95,03/09/19 08:45,"911 South St, Seattle, WA 98101" -162106,AA Batteries (4-pack),1,3.84,03/02/19 15:25,"484 Cedar St, Los Angeles, CA 90001" -162107,Wired Headphones,1,11.99,03/29/19 15:15,"260 14th St, Austin, TX 73301" -162108,USB-C Charging Cable,2,11.95,03/26/19 11:38,"113 7th St, Los Angeles, CA 90001" -162109,Lightning Charging Cable,1,14.95,03/25/19 11:12,"686 5th St, New York City, NY 10001" -162110,20in Monitor,1,109.99,03/15/19 09:05,"705 South St, Los Angeles, CA 90001" -162111,AA Batteries (4-pack),3,3.84,03/08/19 16:59,"561 West St, San Francisco, CA 94016" -162112,34in Ultrawide Monitor,1,379.99,03/15/19 21:52,"953 Spruce St, Boston, MA 02215" -162113,Bose SoundSport Headphones,1,99.99,03/27/19 13:09,"365 Cherry St, San Francisco, CA 94016" -162114,Lightning Charging Cable,1,14.95,03/21/19 14:29,"577 South St, Atlanta, GA 30301" -162115,Flatscreen TV,1,300,03/26/19 08:06,"93 Sunset St, San Francisco, CA 94016" -162116,USB-C Charging Cable,1,11.95,03/09/19 11:48,"446 Adams St, Dallas, TX 75001" -162117,Wired Headphones,1,11.99,03/11/19 14:12,"82 Lake St, New York City, NY 10001" -162118,iPhone,1,700,03/10/19 22:32,"888 13th St, San Francisco, CA 94016" -162119,27in FHD Monitor,1,149.99,03/06/19 13:46,"980 2nd St, Austin, TX 73301" -162120,Macbook Pro Laptop,1,1700,03/15/19 18:43,"969 Washington St, Dallas, TX 75001" -162121,USB-C Charging Cable,1,11.95,03/20/19 13:05,"355 Main St, Portland, OR 97035" -162122,AAA Batteries (4-pack),1,2.99,03/06/19 10:22,"354 9th St, Seattle, WA 98101" -162123,Bose SoundSport Headphones,1,99.99,03/13/19 18:02,"295 South St, San Francisco, CA 94016" -162124,Macbook Pro Laptop,1,1700,03/27/19 09:52,"8 West St, San Francisco, CA 94016" -162125,27in 4K Gaming Monitor,1,389.99,03/29/19 12:16,"987 Chestnut St, San Francisco, CA 94016" -162126,Apple Airpods Headphones,1,150,03/17/19 19:41,"895 Jefferson St, Los Angeles, CA 90001" -162127,Macbook Pro Laptop,1,1700,03/25/19 13:08,"603 12th St, San Francisco, CA 94016" -162128,USB-C Charging Cable,1,11.95,03/23/19 22:59,"490 Jackson St, Seattle, WA 98101" -162129,AAA Batteries (4-pack),1,2.99,03/11/19 16:14,"962 Church St, San Francisco, CA 94016" -162130,USB-C Charging Cable,1,11.95,03/08/19 12:17,"211 Pine St, Dallas, TX 75001" -162131,USB-C Charging Cable,1,11.95,03/10/19 23:29,"334 Madison St, Boston, MA 02215" -162132,AA Batteries (4-pack),1,3.84,03/15/19 06:52,"488 7th St, Boston, MA 02215" -162133,AA Batteries (4-pack),1,3.84,03/10/19 09:28,"986 6th St, Seattle, WA 98101" -162134,Vareebadd Phone,1,400,03/17/19 20:36,"186 North St, Atlanta, GA 30301" -162135,USB-C Charging Cable,1,11.95,03/23/19 22:58,"112 Madison St, New York City, NY 10001" -162136,AA Batteries (4-pack),1,3.84,03/28/19 11:13,"708 4th St, San Francisco, CA 94016" -162137,Bose SoundSport Headphones,1,99.99,03/14/19 16:05,"275 Elm St, New York City, NY 10001" -162138,20in Monitor,1,109.99,03/19/19 10:10,"628 Forest St, Seattle, WA 98101" -162139,34in Ultrawide Monitor,1,379.99,03/21/19 12:21,"869 9th St, New York City, NY 10001" -162140,ThinkPad Laptop,1,999.99,03/06/19 23:34,"622 Meadow St, Seattle, WA 98101" -162141,Lightning Charging Cable,1,14.95,03/08/19 19:03,"289 Chestnut St, New York City, NY 10001" -162142,Vareebadd Phone,1,400,03/01/19 12:57,"479 Maple St, Atlanta, GA 30301" -162142,AA Batteries (4-pack),1,3.84,03/01/19 12:57,"479 Maple St, Atlanta, GA 30301" -162143,USB-C Charging Cable,1,11.95,03/09/19 13:26,"886 12th St, San Francisco, CA 94016" -162144,Macbook Pro Laptop,1,1700,03/24/19 13:04,"342 Dogwood St, San Francisco, CA 94016" -162145,Bose SoundSport Headphones,1,99.99,03/11/19 16:56,"680 10th St, New York City, NY 10001" -162146,Apple Airpods Headphones,1,150,03/11/19 22:20,"326 Wilson St, Seattle, WA 98101" -162147,Wired Headphones,1,11.99,03/05/19 10:53,"310 Forest St, Austin, TX 73301" -162148,USB-C Charging Cable,1,11.95,03/17/19 23:55,"434 4th St, Los Angeles, CA 90001" -162149,Apple Airpods Headphones,1,150,03/05/19 00:36,"371 Forest St, Austin, TX 73301" -162150,AA Batteries (4-pack),1,3.84,03/28/19 22:21,"963 4th St, Boston, MA 02215" -162151,Bose SoundSport Headphones,1,99.99,03/25/19 20:11,"53 Washington St, Dallas, TX 75001" -162152,Lightning Charging Cable,1,14.95,03/24/19 09:42,"727 Lake St, Atlanta, GA 30301" -162153,27in FHD Monitor,1,149.99,03/08/19 08:31,"647 Madison St, New York City, NY 10001" -162154,ThinkPad Laptop,1,999.99,03/30/19 10:18,"932 Forest St, Los Angeles, CA 90001" -162155,AA Batteries (4-pack),1,3.84,03/28/19 16:35,"706 11th St, Los Angeles, CA 90001" -162156,Wired Headphones,1,11.99,03/01/19 22:47,"352 6th St, Portland, OR 97035" -162157,Flatscreen TV,1,300,03/27/19 18:56,"620 13th St, Boston, MA 02215" -162158,USB-C Charging Cable,1,11.95,03/20/19 17:50,"865 Hill St, San Francisco, CA 94016" -162159,Wired Headphones,1,11.99,03/30/19 13:29,"776 9th St, Los Angeles, CA 90001" -162160,Apple Airpods Headphones,1,150,03/12/19 19:50,"414 11th St, San Francisco, CA 94016" -162161,Wired Headphones,1,11.99,03/30/19 19:20,"853 14th St, Seattle, WA 98101" -162161,AAA Batteries (4-pack),2,2.99,03/30/19 19:20,"853 14th St, Seattle, WA 98101" -162162,Lightning Charging Cable,1,14.95,03/05/19 08:32,"435 Hill St, New York City, NY 10001" -162163,Flatscreen TV,1,300,03/25/19 07:48,"61 Sunset St, Los Angeles, CA 90001" -162164,AA Batteries (4-pack),1,3.84,03/01/19 16:05,"954 2nd St, San Francisco, CA 94016" -162165,Macbook Pro Laptop,1,1700,03/12/19 12:32,"911 Sunset St, San Francisco, CA 94016" -162166,AAA Batteries (4-pack),1,2.99,03/06/19 21:36,"989 Ridge St, Los Angeles, CA 90001" -162167,AA Batteries (4-pack),1,3.84,03/02/19 13:36,"713 13th St, Dallas, TX 75001" -162168,34in Ultrawide Monitor,1,379.99,03/20/19 10:26,"699 11th St, Boston, MA 02215" -162169,27in 4K Gaming Monitor,1,389.99,03/11/19 13:43,"500 River St, Dallas, TX 75001" -162170,Wired Headphones,2,11.99,03/16/19 11:14,"397 10th St, San Francisco, CA 94016" -162171,Lightning Charging Cable,1,14.95,03/16/19 12:10,"597 11th St, New York City, NY 10001" -162172,Wired Headphones,1,11.99,03/03/19 18:34,"176 Cherry St, San Francisco, CA 94016" -162173,Bose SoundSport Headphones,1,99.99,03/07/19 14:09,"973 14th St, Los Angeles, CA 90001" -162174,27in 4K Gaming Monitor,1,389.99,03/05/19 18:44,"844 Main St, Seattle, WA 98101" -162175,Lightning Charging Cable,1,14.95,03/02/19 11:09,"510 Forest St, Austin, TX 73301" -162176,Apple Airpods Headphones,1,150,03/31/19 19:38,"917 Chestnut St, Atlanta, GA 30301" -162177,ThinkPad Laptop,1,999.99,03/22/19 19:40,"323 14th St, Los Angeles, CA 90001" -162178,Lightning Charging Cable,1,14.95,03/11/19 18:11,"436 Wilson St, Boston, MA 02215" -162179,AAA Batteries (4-pack),1,2.99,03/25/19 12:40,"712 Maple St, Seattle, WA 98101" -162180,Flatscreen TV,1,300,03/17/19 14:55,"945 Willow St, Los Angeles, CA 90001" -162181,Macbook Pro Laptop,1,1700,03/03/19 13:15,"423 Lake St, Los Angeles, CA 90001" -162182,Google Phone,1,600,03/19/19 13:01,"455 Church St, Los Angeles, CA 90001" -162183,AA Batteries (4-pack),1,3.84,03/08/19 16:22,"427 Adams St, Los Angeles, CA 90001" -162184,AA Batteries (4-pack),1,3.84,03/23/19 16:51,"285 Ridge St, San Francisco, CA 94016" -162185,USB-C Charging Cable,1,11.95,03/03/19 07:26,"297 12th St, Los Angeles, CA 90001" -162186,AAA Batteries (4-pack),5,2.99,03/05/19 14:17,"180 Wilson St, Los Angeles, CA 90001" -162187,Google Phone,1,600,03/16/19 10:34,"964 9th St, San Francisco, CA 94016" -162187,USB-C Charging Cable,1,11.95,03/16/19 10:34,"964 9th St, San Francisco, CA 94016" -162188,AAA Batteries (4-pack),1,2.99,03/02/19 20:28,"971 7th St, New York City, NY 10001" -162189,iPhone,1,700,03/23/19 14:06,"892 11th St, San Francisco, CA 94016" -162189,Lightning Charging Cable,1,14.95,03/23/19 14:06,"892 11th St, San Francisco, CA 94016" -162189,27in 4K Gaming Monitor,1,389.99,03/23/19 14:06,"892 11th St, San Francisco, CA 94016" -162190,Wired Headphones,1,11.99,03/04/19 20:47,"478 Madison St, Boston, MA 02215" -162191,Apple Airpods Headphones,1,150,03/05/19 20:49,"6 5th St, New York City, NY 10001" -162192,AAA Batteries (4-pack),3,2.99,03/06/19 18:27,"269 Highland St, Dallas, TX 75001" -162193,Lightning Charging Cable,1,14.95,03/14/19 10:27,"29 Walnut St, San Francisco, CA 94016" -162194,27in FHD Monitor,1,149.99,03/21/19 21:22,"224 Cedar St, Austin, TX 73301" -162195,AAA Batteries (4-pack),3,2.99,03/25/19 07:23,"439 Madison St, Boston, MA 02215" -162196,AA Batteries (4-pack),1,3.84,03/24/19 09:22,"164 Johnson St, Portland, OR 97035" -162197,Macbook Pro Laptop,1,1700,03/01/19 15:30,"85 Chestnut St, San Francisco, CA 94016" -162198,Bose SoundSport Headphones,1,99.99,03/16/19 19:18,"322 Washington St, San Francisco, CA 94016" -162199,Macbook Pro Laptop,1,1700,03/03/19 17:41,"939 Dogwood St, Seattle, WA 98101" -162200,20in Monitor,1,109.99,03/15/19 14:50,"596 Meadow St, San Francisco, CA 94016" -162201,Apple Airpods Headphones,1,150,03/29/19 13:22,"608 Lincoln St, New York City, NY 10001" -162202,27in FHD Monitor,1,149.99,03/28/19 23:33,"975 North St, New York City, NY 10001" -162203,USB-C Charging Cable,1,11.95,03/21/19 10:24,"50 Hill St, San Francisco, CA 94016" -162204,Wired Headphones,1,11.99,03/08/19 12:24,"555 8th St, Los Angeles, CA 90001" -162205,AAA Batteries (4-pack),3,2.99,03/27/19 19:28,"490 Lincoln St, San Francisco, CA 94016" -162206,AA Batteries (4-pack),1,3.84,03/02/19 19:20,"482 Meadow St, New York City, NY 10001" -162207,34in Ultrawide Monitor,1,379.99,03/02/19 12:54,"69 Adams St, Atlanta, GA 30301" -162208,Lightning Charging Cable,1,14.95,03/11/19 16:08,"534 Lakeview St, San Francisco, CA 94016" -162209,AAA Batteries (4-pack),1,2.99,03/18/19 01:48,"873 Jefferson St, Atlanta, GA 30301" -162210,USB-C Charging Cable,1,11.95,03/19/19 17:42,"331 Lake St, San Francisco, CA 94016" -162211,Wired Headphones,1,11.99,03/15/19 05:02,"819 Lake St, Seattle, WA 98101" -162212,USB-C Charging Cable,2,11.95,03/31/19 12:42,"700 North St, Boston, MA 02215" -162213,AA Batteries (4-pack),1,3.84,03/21/19 09:58,"72 Highland St, Seattle, WA 98101" -162214,AA Batteries (4-pack),1,3.84,03/16/19 07:09,"688 Chestnut St, Seattle, WA 98101" -162215,AAA Batteries (4-pack),1,2.99,03/11/19 12:06,"688 Hickory St, Los Angeles, CA 90001" -162215,Macbook Pro Laptop,1,1700,03/11/19 12:06,"688 Hickory St, Los Angeles, CA 90001" -162216,ThinkPad Laptop,1,999.99,03/20/19 11:03,"406 Sunset St, Boston, MA 02215" -162217,Wired Headphones,1,11.99,03/07/19 16:30,"293 8th St, Los Angeles, CA 90001" -162218,Apple Airpods Headphones,1,150,03/05/19 19:53,"115 Madison St, Los Angeles, CA 90001" -162219,Apple Airpods Headphones,1,150,03/31/19 21:28,"63 8th St, Boston, MA 02215" -162220,Bose SoundSport Headphones,1,99.99,03/06/19 17:33,"505 Hill St, San Francisco, CA 94016" -162221,Apple Airpods Headphones,1,150,03/09/19 21:44,"927 Jackson St, New York City, NY 10001" -162222,Bose SoundSport Headphones,1,99.99,03/14/19 06:36,"300 Meadow St, Boston, MA 02215" -162223,AAA Batteries (4-pack),1,2.99,03/24/19 10:47,"248 12th St, San Francisco, CA 94016" -162224,27in FHD Monitor,1,149.99,03/23/19 07:28,"858 Pine St, Atlanta, GA 30301" -162225,AA Batteries (4-pack),2,3.84,03/30/19 17:01,"830 Hickory St, Dallas, TX 75001" -162226,AA Batteries (4-pack),2,3.84,03/25/19 21:36,"858 5th St, Boston, MA 02215" -162227,AA Batteries (4-pack),3,3.84,03/30/19 19:45,"925 Jackson St, San Francisco, CA 94016" -162228,Lightning Charging Cable,1,14.95,03/14/19 09:46,"102 Meadow St, San Francisco, CA 94016" -162229,27in FHD Monitor,1,149.99,03/27/19 13:13,"823 Lake St, San Francisco, CA 94016" -162230,Lightning Charging Cable,1,14.95,03/30/19 16:55,"819 Park St, Los Angeles, CA 90001" -162231,AA Batteries (4-pack),2,3.84,03/04/19 19:42,"123 Jefferson St, Dallas, TX 75001" -162232,27in 4K Gaming Monitor,1,389.99,03/09/19 12:45,"66 Park St, Los Angeles, CA 90001" -162233,Macbook Pro Laptop,1,1700,03/29/19 19:32,"944 Ridge St, Seattle, WA 98101" -162234,AA Batteries (4-pack),1,3.84,03/06/19 13:39,"250 Johnson St, San Francisco, CA 94016" -162235,27in FHD Monitor,1,149.99,03/11/19 22:05,"122 7th St, Dallas, TX 75001" -162236,Wired Headphones,1,11.99,03/28/19 18:33,"298 Elm St, Atlanta, GA 30301" -162237,Lightning Charging Cable,2,14.95,03/23/19 16:22,"89 Chestnut St, New York City, NY 10001" -162238,AA Batteries (4-pack),1,3.84,03/14/19 17:16,"102 Willow St, Dallas, TX 75001" -162239,ThinkPad Laptop,1,999.99,03/10/19 19:45,"543 11th St, Austin, TX 73301" -162240,Lightning Charging Cable,1,14.95,03/30/19 00:13,"572 Park St, Boston, MA 02215" -162241,Macbook Pro Laptop,1,1700,03/30/19 11:58,"162 5th St, San Francisco, CA 94016" -162242,AAA Batteries (4-pack),1,2.99,03/14/19 20:32,"712 5th St, Portland, OR 97035" -162243,Lightning Charging Cable,1,14.95,03/15/19 19:18,"301 Walnut St, San Francisco, CA 94016" -162244,Google Phone,1,600,03/23/19 23:33,"76 Center St, San Francisco, CA 94016" -162244,USB-C Charging Cable,1,11.95,03/23/19 23:33,"76 Center St, San Francisco, CA 94016" -162245,AAA Batteries (4-pack),1,2.99,03/17/19 18:18,"238 West St, San Francisco, CA 94016" -162246,27in FHD Monitor,1,149.99,03/01/19 12:12,"28 Adams St, Atlanta, GA 30301" -162247,27in FHD Monitor,1,149.99,03/22/19 15:47,"10 Elm St, Austin, TX 73301" -162248,Wired Headphones,1,11.99,03/14/19 16:03,"685 5th St, San Francisco, CA 94016" -162249,Bose SoundSport Headphones,1,99.99,03/27/19 19:50,"951 Forest St, New York City, NY 10001" -162250,Flatscreen TV,1,300,03/16/19 10:47,"984 8th St, Los Angeles, CA 90001" -162251,27in FHD Monitor,1,149.99,03/29/19 15:10,"495 Lake St, San Francisco, CA 94016" -162252,Wired Headphones,2,11.99,03/09/19 05:31,"5 Maple St, San Francisco, CA 94016" -162253,USB-C Charging Cable,1,11.95,03/07/19 22:15,"574 Walnut St, Boston, MA 02215" -162254,Macbook Pro Laptop,1,1700,03/09/19 10:48,"786 River St, San Francisco, CA 94016" -162255,27in FHD Monitor,1,149.99,03/06/19 11:21,"622 Highland St, Dallas, TX 75001" -162256,20in Monitor,1,109.99,03/15/19 11:55,"217 4th St, New York City, NY 10001" -162257,AA Batteries (4-pack),1,3.84,03/30/19 12:01,"977 Meadow St, Atlanta, GA 30301" -162258,Bose SoundSport Headphones,1,99.99,03/20/19 19:09,"874 Cherry St, New York City, NY 10001" -162259,27in 4K Gaming Monitor,1,389.99,03/14/19 10:07,"415 Wilson St, New York City, NY 10001" -162260,Apple Airpods Headphones,1,150,03/29/19 12:08,"188 North St, Seattle, WA 98101" -162261,Bose SoundSport Headphones,1,99.99,03/24/19 06:54,"825 Lakeview St, Dallas, TX 75001" -162262,Wired Headphones,1,11.99,03/08/19 22:17,"625 Main St, Atlanta, GA 30301" -162263,Wired Headphones,1,11.99,03/05/19 22:06,"230 Elm St, Dallas, TX 75001" -162264,Apple Airpods Headphones,1,150,03/13/19 18:06,"604 6th St, Portland, OR 97035" -162265,Wired Headphones,1,11.99,03/12/19 08:12,"882 Park St, Los Angeles, CA 90001" -162266,AA Batteries (4-pack),1,3.84,03/13/19 08:34,"697 Jackson St, New York City, NY 10001" -162267,Bose SoundSport Headphones,1,99.99,03/26/19 14:07,"61 10th St, Dallas, TX 75001" -162268,Lightning Charging Cable,1,14.95,03/30/19 20:26,"528 Pine St, Los Angeles, CA 90001" -162269,Wired Headphones,1,11.99,03/03/19 01:30,"99 Sunset St, San Francisco, CA 94016" -162270,Macbook Pro Laptop,1,1700,03/07/19 11:45,"98 Elm St, Los Angeles, CA 90001" -162271,Lightning Charging Cable,1,14.95,03/26/19 10:37,"557 Hickory St, San Francisco, CA 94016" -162272,Lightning Charging Cable,1,14.95,03/16/19 09:30,"322 10th St, Los Angeles, CA 90001" -162273,Google Phone,1,600,03/20/19 18:36,"368 Washington St, New York City, NY 10001" -162274,Lightning Charging Cable,1,14.95,03/07/19 09:06,"152 2nd St, Atlanta, GA 30301" -162275,Wired Headphones,1,11.99,03/12/19 20:22,"558 Cherry St, Seattle, WA 98101" -162276,Bose SoundSport Headphones,1,99.99,03/11/19 06:54,"882 Jefferson St, Los Angeles, CA 90001" -162277,27in 4K Gaming Monitor,1,389.99,03/26/19 22:06,"392 Maple St, Seattle, WA 98101" -162278,Bose SoundSport Headphones,1,99.99,03/23/19 14:02,"488 Jackson St, Boston, MA 02215" -162279,Google Phone,1,600,03/12/19 19:03,"231 Highland St, San Francisco, CA 94016" -162280,Bose SoundSport Headphones,1,99.99,03/05/19 11:48,"525 12th St, New York City, NY 10001" -162281,Lightning Charging Cable,2,14.95,03/10/19 15:31,"774 4th St, Seattle, WA 98101" -162282,USB-C Charging Cable,1,11.95,03/03/19 02:06,"6 10th St, Austin, TX 73301" -162283,AA Batteries (4-pack),1,3.84,03/05/19 20:33,"959 12th St, Boston, MA 02215" -162284,Lightning Charging Cable,1,14.95,03/05/19 22:25,"544 Elm St, Los Angeles, CA 90001" -162285,27in FHD Monitor,1,149.99,03/13/19 21:40,"491 Walnut St, San Francisco, CA 94016" -162286,iPhone,1,700,03/25/19 12:49,"805 5th St, New York City, NY 10001" -162287,Google Phone,1,600,03/30/19 10:02,"89 6th St, Atlanta, GA 30301" -162288,20in Monitor,1,109.99,03/01/19 09:19,"113 7th St, Dallas, TX 75001" -162289,USB-C Charging Cable,1,11.95,03/18/19 04:46,"528 Pine St, Seattle, WA 98101" -162290,27in 4K Gaming Monitor,1,389.99,03/13/19 20:36,"809 Ridge St, Dallas, TX 75001" -162291,Lightning Charging Cable,1,14.95,03/12/19 12:08,"72 Chestnut St, Los Angeles, CA 90001" -162292,Lightning Charging Cable,1,14.95,03/08/19 06:56,"327 Park St, Atlanta, GA 30301" -162293,20in Monitor,1,109.99,03/04/19 17:57,"332 2nd St, Dallas, TX 75001" -162294,Vareebadd Phone,1,400,03/10/19 11:57,"769 8th St, Atlanta, GA 30301" -162295,AAA Batteries (4-pack),1,2.99,03/18/19 19:17,"279 Center St, Seattle, WA 98101" -162296,Lightning Charging Cable,1,14.95,03/10/19 19:12,"884 River St, Seattle, WA 98101" -162297,Apple Airpods Headphones,1,150,03/12/19 17:48,"466 Dogwood St, Boston, MA 02215" -162297,20in Monitor,1,109.99,03/12/19 17:48,"466 Dogwood St, Boston, MA 02215" -162298,AA Batteries (4-pack),1,3.84,03/15/19 21:34,"175 Spruce St, New York City, NY 10001" -162299,27in FHD Monitor,1,149.99,03/03/19 10:40,"244 Highland St, Los Angeles, CA 90001" -162300,Lightning Charging Cable,1,14.95,03/12/19 14:47,"222 14th St, Austin, TX 73301" -162301,USB-C Charging Cable,1,11.95,03/23/19 10:49,"315 2nd St, Austin, TX 73301" -162302,USB-C Charging Cable,2,11.95,03/06/19 18:30,"456 1st St, San Francisco, CA 94016" -162303,Wired Headphones,1,11.99,03/06/19 20:38,"291 Lincoln St, Seattle, WA 98101" -162304,AA Batteries (4-pack),1,3.84,03/20/19 22:44,"215 Washington St, San Francisco, CA 94016" -162305,iPhone,1,700,03/26/19 17:08,"460 Hickory St, Dallas, TX 75001" -162306,iPhone,1,700,03/10/19 19:33,"116 Hill St, Seattle, WA 98101" -162307,Wired Headphones,1,11.99,03/29/19 06:31,"504 Highland St, San Francisco, CA 94016" -162308,ThinkPad Laptop,1,999.99,03/18/19 19:25,"814 Church St, Portland, OR 97035" -162309,USB-C Charging Cable,1,11.95,03/27/19 13:00,"678 North St, Boston, MA 02215" -162310,AAA Batteries (4-pack),2,2.99,03/12/19 11:42,"782 Adams St, Boston, MA 02215" -162311,27in FHD Monitor,2,149.99,03/29/19 09:06,"902 Jackson St, Atlanta, GA 30301" -162312,USB-C Charging Cable,1,11.95,03/09/19 14:11,"935 14th St, San Francisco, CA 94016" -162313,ThinkPad Laptop,1,999.99,03/25/19 10:52,"956 9th St, San Francisco, CA 94016" -162314,Lightning Charging Cable,1,14.95,03/22/19 08:47,"178 Dogwood St, Austin, TX 73301" -162315,27in FHD Monitor,1,149.99,03/12/19 21:36,"184 1st St, New York City, NY 10001" -162316,AAA Batteries (4-pack),1,2.99,03/08/19 13:19,"739 Lake St, New York City, NY 10001" -162317,AA Batteries (4-pack),1,3.84,03/20/19 15:31,"95 River St, Los Angeles, CA 90001" -162318,Lightning Charging Cable,2,14.95,03/13/19 05:24,"540 9th St, San Francisco, CA 94016" -162319,USB-C Charging Cable,1,11.95,03/14/19 16:50,"636 6th St, Los Angeles, CA 90001" -162320,Lightning Charging Cable,1,14.95,03/24/19 11:28,"26 West St, Boston, MA 02215" -162321,USB-C Charging Cable,1,11.95,03/04/19 12:35,"546 Church St, Los Angeles, CA 90001" -162322,AA Batteries (4-pack),1,3.84,03/23/19 20:35,"752 Sunset St, Portland, OR 97035" -162323,27in FHD Monitor,1,149.99,03/05/19 11:48,"667 Elm St, New York City, NY 10001" -162324,Apple Airpods Headphones,1,150,03/10/19 11:58,"511 Walnut St, Portland, OR 97035" -162325,iPhone,1,700,03/26/19 23:54,"789 6th St, Los Angeles, CA 90001" -162326,Bose SoundSport Headphones,2,99.99,03/30/19 19:40,"639 Church St, San Francisco, CA 94016" -162327,20in Monitor,1,109.99,03/09/19 01:51,"100 North St, New York City, NY 10001" -162328,Wired Headphones,1,11.99,03/31/19 13:06,"153 10th St, Dallas, TX 75001" -162329,Vareebadd Phone,1,400,03/26/19 14:50,"42 Sunset St, Boston, MA 02215" -162329,USB-C Charging Cable,1,11.95,03/26/19 14:50,"42 Sunset St, Boston, MA 02215" -162330,Macbook Pro Laptop,1,1700,03/25/19 06:04,"89 Elm St, New York City, NY 10001" -162331,Wired Headphones,1,11.99,03/03/19 15:40,"295 Wilson St, Portland, OR 97035" -162332,Flatscreen TV,1,300,03/20/19 14:23,"925 10th St, Atlanta, GA 30301" -162332,Flatscreen TV,1,300,03/20/19 14:23,"925 10th St, Atlanta, GA 30301" -162333,AA Batteries (4-pack),4,3.84,03/28/19 18:34,"269 2nd St, Atlanta, GA 30301" -162334,27in 4K Gaming Monitor,1,389.99,03/31/19 11:16,"342 Spruce St, San Francisco, CA 94016" -162335,AAA Batteries (4-pack),1,2.99,03/22/19 22:43,"495 Cedar St, Boston, MA 02215" -162336,AAA Batteries (4-pack),3,2.99,03/12/19 20:10,"689 Maple St, San Francisco, CA 94016" -162337,Bose SoundSport Headphones,1,99.99,03/10/19 13:10,"485 Meadow St, Los Angeles, CA 90001" -162338,iPhone,1,700,03/22/19 00:42,"516 Madison St, Los Angeles, CA 90001" -162339,Wired Headphones,1,11.99,03/22/19 16:20,"95 Hickory St, New York City, NY 10001" -162340,AAA Batteries (4-pack),2,2.99,03/13/19 19:15,"39 6th St, Portland, OR 97035" -162341,Lightning Charging Cable,1,14.95,03/26/19 19:33,"164 Spruce St, Boston, MA 02215" -162342,USB-C Charging Cable,1,11.95,03/15/19 21:32,"568 13th St, San Francisco, CA 94016" -162343,AAA Batteries (4-pack),1,2.99,03/02/19 20:38,"372 Highland St, New York City, NY 10001" -162344,27in 4K Gaming Monitor,1,389.99,03/24/19 06:41,"484 Spruce St, San Francisco, CA 94016" -162345,USB-C Charging Cable,2,11.95,03/28/19 21:32,"970 Maple St, San Francisco, CA 94016" -162346,AAA Batteries (4-pack),2,2.99,03/30/19 10:58,"179 Jefferson St, New York City, NY 10001" -162347,34in Ultrawide Monitor,1,379.99,03/31/19 19:04,"805 Jackson St, Austin, TX 73301" -162347,Lightning Charging Cable,1,14.95,03/31/19 19:04,"805 Jackson St, Austin, TX 73301" -162348,USB-C Charging Cable,1,11.95,03/18/19 13:49,"616 14th St, New York City, NY 10001" -162349,USB-C Charging Cable,1,11.95,03/08/19 13:33,"402 5th St, Los Angeles, CA 90001" -162350,Apple Airpods Headphones,1,150,03/20/19 17:16,"509 Highland St, Atlanta, GA 30301" -162351,AA Batteries (4-pack),3,3.84,03/22/19 11:25,"519 12th St, Austin, TX 73301" -162352,AAA Batteries (4-pack),6,2.99,03/24/19 22:57,"319 Cedar St, Dallas, TX 75001" -162352,Bose SoundSport Headphones,1,99.99,03/24/19 22:57,"319 Cedar St, Dallas, TX 75001" -162353,Wired Headphones,2,11.99,03/26/19 14:06,"858 Lincoln St, New York City, NY 10001" -162354,AA Batteries (4-pack),1,3.84,03/06/19 18:08,"653 Johnson St, Dallas, TX 75001" -162355,Lightning Charging Cable,1,14.95,03/04/19 18:40,"749 Park St, Los Angeles, CA 90001" -162356,Lightning Charging Cable,1,14.95,03/15/19 11:55,"456 11th St, Dallas, TX 75001" -162357,Apple Airpods Headphones,1,150,03/03/19 13:51,"300 Park St, Atlanta, GA 30301" -162358,Flatscreen TV,1,300,04/01/19 01:11,"444 12th St, New York City, NY 10001" -162359,Lightning Charging Cable,1,14.95,03/23/19 18:00,"260 Cherry St, New York City, NY 10001" -162360,AAA Batteries (4-pack),3,2.99,03/10/19 21:52,"764 Lake St, Boston, MA 02215" -162361,Vareebadd Phone,1,400,03/04/19 22:50,"594 Spruce St, Atlanta, GA 30301" -162361,Wired Headphones,1,11.99,03/04/19 22:50,"594 Spruce St, Atlanta, GA 30301" -162362,AAA Batteries (4-pack),1,2.99,03/17/19 12:44,"930 Forest St, Atlanta, GA 30301" -162363,Bose SoundSport Headphones,1,99.99,03/10/19 15:17,"196 11th St, Los Angeles, CA 90001" -162364,iPhone,1,700,03/01/19 19:42,"78 South St, Boston, MA 02215" -162364,Lightning Charging Cable,1,14.95,03/01/19 19:42,"78 South St, Boston, MA 02215" -162365,Apple Airpods Headphones,1,150,03/22/19 09:20,"633 Highland St, San Francisco, CA 94016" -162366,USB-C Charging Cable,1,11.95,03/02/19 18:36,"848 North St, Portland, OR 97035" -162367,Apple Airpods Headphones,1,150,03/23/19 14:58,"825 Walnut St, Los Angeles, CA 90001" -162368,Lightning Charging Cable,1,14.95,03/11/19 18:04,"82 Park St, San Francisco, CA 94016" -162368,Wired Headphones,1,11.99,03/11/19 18:04,"82 Park St, San Francisco, CA 94016" -162369,USB-C Charging Cable,3,11.95,03/08/19 20:00,"110 Jefferson St, Dallas, TX 75001" -162370,20in Monitor,1,109.99,03/11/19 19:53,"235 Cedar St, Dallas, TX 75001" -162371,AA Batteries (4-pack),1,3.84,03/09/19 17:57,"807 Sunset St, Los Angeles, CA 90001" -162372,AA Batteries (4-pack),1,3.84,03/07/19 15:08,"17 1st St, Dallas, TX 75001" -162373,AA Batteries (4-pack),1,3.84,03/18/19 14:41,"414 South St, New York City, NY 10001" -162374,Flatscreen TV,1,300,03/02/19 20:17,"400 13th St, Boston, MA 02215" -162375,Lightning Charging Cable,1,14.95,03/25/19 11:31,"911 Pine St, Atlanta, GA 30301" -162376,iPhone,1,700,03/02/19 21:09,"555 Cedar St, Seattle, WA 98101" -162376,Wired Headphones,1,11.99,03/02/19 21:09,"555 Cedar St, Seattle, WA 98101" -162377,ThinkPad Laptop,1,999.99,03/20/19 08:55,"557 5th St, Austin, TX 73301" -162378,Lightning Charging Cable,1,14.95,03/24/19 06:00,"116 Main St, Atlanta, GA 30301" -162379,Lightning Charging Cable,1,14.95,03/31/19 21:23,"566 Hill St, Portland, OR 97035" -162380,Lightning Charging Cable,1,14.95,03/20/19 06:54,"615 Cedar St, Los Angeles, CA 90001" -162381,AA Batteries (4-pack),1,3.84,03/31/19 18:32,"11 11th St, Boston, MA 02215" -162381,iPhone,1,700,03/31/19 18:32,"11 11th St, Boston, MA 02215" -162382,Google Phone,1,600,03/13/19 11:46,"239 Cedar St, Los Angeles, CA 90001" -162383,USB-C Charging Cable,1,11.95,03/23/19 00:45,"424 Cedar St, New York City, NY 10001" -162384,iPhone,1,700,03/17/19 06:45,"388 Madison St, San Francisco, CA 94016" -162385,Wired Headphones,1,11.99,03/24/19 17:46,"378 West St, Los Angeles, CA 90001" -162386,Lightning Charging Cable,1,14.95,03/11/19 18:30,"907 Cedar St, Seattle, WA 98101" -162387,ThinkPad Laptop,1,999.99,03/25/19 18:39,"831 River St, New York City, NY 10001" -162388,AA Batteries (4-pack),1,3.84,03/30/19 13:28,"87 5th St, San Francisco, CA 94016" -162389,USB-C Charging Cable,1,11.95,03/07/19 08:40,"322 South St, San Francisco, CA 94016" -162390,AAA Batteries (4-pack),2,2.99,03/30/19 09:29,"454 West St, Boston, MA 02215" -162391,iPhone,1,700,03/16/19 13:24,"444 Highland St, Dallas, TX 75001" -162391,Apple Airpods Headphones,1,150,03/16/19 13:24,"444 Highland St, Dallas, TX 75001" -162392,iPhone,1,700,03/09/19 10:55,"692 6th St, Dallas, TX 75001" -162393,Lightning Charging Cable,1,14.95,03/03/19 21:07,"279 Main St, Atlanta, GA 30301" -162394,Google Phone,1,600,03/04/19 18:51,"608 9th St, San Francisco, CA 94016" -162395,USB-C Charging Cable,1,11.95,03/16/19 09:52,"588 5th St, San Francisco, CA 94016" -162396,27in FHD Monitor,1,149.99,03/08/19 21:42,"345 Main St, Dallas, TX 75001" -162397,AA Batteries (4-pack),1,3.84,03/31/19 19:56,"13 Lincoln St, San Francisco, CA 94016" -162398,AA Batteries (4-pack),3,3.84,03/01/19 14:36,"242 Sunset St, Dallas, TX 75001" -162399,Google Phone,1,600,03/18/19 14:26,"91 Forest St, Austin, TX 73301" -162400,Lightning Charging Cable,1,14.95,03/06/19 21:23,"810 West St, Boston, MA 02215" -162401,Bose SoundSport Headphones,1,99.99,03/10/19 23:25,"808 Spruce St, Seattle, WA 98101" -162402,Bose SoundSport Headphones,1,99.99,03/09/19 19:15,"951 Jefferson St, Seattle, WA 98101" -162403,AA Batteries (4-pack),1,3.84,03/21/19 20:35,"53 5th St, Atlanta, GA 30301" -162404,Flatscreen TV,1,300,03/30/19 23:04,"724 Jefferson St, San Francisco, CA 94016" -162405,AAA Batteries (4-pack),1,2.99,03/27/19 17:27,"802 Forest St, Boston, MA 02215" -162406,Google Phone,1,600,03/15/19 17:12,"471 1st St, Atlanta, GA 30301" -162407,AAA Batteries (4-pack),1,2.99,03/05/19 17:51,"921 Chestnut St, Boston, MA 02215" -162408,Google Phone,1,600,03/24/19 23:45,"392 Ridge St, Los Angeles, CA 90001" -162408,Wired Headphones,1,11.99,03/24/19 23:45,"392 Ridge St, Los Angeles, CA 90001" -162409,Apple Airpods Headphones,1,150,03/17/19 19:20,"811 14th St, San Francisco, CA 94016" -162409,Wired Headphones,1,11.99,03/17/19 19:20,"811 14th St, San Francisco, CA 94016" -162410,Apple Airpods Headphones,1,150,03/05/19 12:18,"777 South St, Atlanta, GA 30301" -162411,AAA Batteries (4-pack),1,2.99,03/20/19 09:46,"704 7th St, San Francisco, CA 94016" -162412,Apple Airpods Headphones,1,150,03/22/19 19:20,"564 2nd St, New York City, NY 10001" -162413,34in Ultrawide Monitor,1,379.99,03/18/19 12:52,"210 Main St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -162414,iPhone,1,700,03/17/19 10:48,"262 9th St, Boston, MA 02215" -162415,Wired Headphones,1,11.99,03/20/19 19:40,"416 1st St, Austin, TX 73301" -162416,Wired Headphones,1,11.99,03/30/19 08:19,"542 Dogwood St, New York City, NY 10001" -162417,USB-C Charging Cable,1,11.95,03/01/19 18:46,"113 Wilson St, Los Angeles, CA 90001" -162418,Wired Headphones,1,11.99,03/04/19 11:57,"911 West St, Los Angeles, CA 90001" -162419,USB-C Charging Cable,2,11.95,03/21/19 18:20,"715 Jackson St, Los Angeles, CA 90001" -162420,Lightning Charging Cable,1,14.95,03/19/19 22:47,"396 South St, Dallas, TX 75001" -162421,AA Batteries (4-pack),2,3.84,03/31/19 14:12,"802 Lincoln St, New York City, NY 10001" -162422,Lightning Charging Cable,1,14.95,03/26/19 00:10,"477 12th St, New York City, NY 10001" -162423,Macbook Pro Laptop,1,1700,03/03/19 15:13,"552 Adams St, Portland, OR 97035" -162424,AA Batteries (4-pack),1,3.84,03/04/19 19:35,"747 Chestnut St, Austin, TX 73301" -162425,AAA Batteries (4-pack),2,2.99,03/27/19 11:41,"930 9th St, Los Angeles, CA 90001" -162426,USB-C Charging Cable,1,11.95,03/17/19 19:54,"569 Hickory St, San Francisco, CA 94016" -162427,27in FHD Monitor,1,149.99,03/27/19 20:52,"7 2nd St, San Francisco, CA 94016" -162428,Wired Headphones,1,11.99,03/15/19 17:39,"170 Madison St, Seattle, WA 98101" -162429,USB-C Charging Cable,1,11.95,03/29/19 22:54,"356 7th St, Portland, OR 97035" -162430,Apple Airpods Headphones,1,150,03/25/19 22:01,"730 2nd St, San Francisco, CA 94016" -162431,Apple Airpods Headphones,1,150,03/16/19 15:18,"454 5th St, Portland, OR 97035" -162432,AAA Batteries (4-pack),1,2.99,03/06/19 12:16,"648 13th St, Atlanta, GA 30301" -162433,iPhone,1,700,03/29/19 19:14,"857 11th St, Los Angeles, CA 90001" -162434,AA Batteries (4-pack),1,3.84,03/15/19 10:46,"554 Jefferson St, Boston, MA 02215" -162435,USB-C Charging Cable,1,11.95,03/14/19 20:16,"445 Ridge St, Boston, MA 02215" -162436,Apple Airpods Headphones,1,150,03/31/19 10:49,"406 Johnson St, Austin, TX 73301" -162437,Lightning Charging Cable,1,14.95,03/13/19 14:14,"916 13th St, Los Angeles, CA 90001" -162438,Lightning Charging Cable,1,14.95,03/11/19 22:03,"187 South St, San Francisco, CA 94016" -162439,USB-C Charging Cable,1,11.95,03/13/19 18:47,"96 Main St, San Francisco, CA 94016" -162440,Wired Headphones,1,11.99,03/04/19 23:49,"347 Cedar St, Los Angeles, CA 90001" -162441,AAA Batteries (4-pack),2,2.99,03/27/19 10:36,"939 Pine St, Los Angeles, CA 90001" -162442,Macbook Pro Laptop,1,1700,03/06/19 19:19,"512 Willow St, Los Angeles, CA 90001" -162443,Lightning Charging Cable,1,14.95,03/24/19 07:33,"600 North St, Seattle, WA 98101" -162444,AA Batteries (4-pack),1,3.84,03/10/19 22:45,"174 Adams St, San Francisco, CA 94016" -162445,Apple Airpods Headphones,1,150,03/24/19 15:42,"358 West St, New York City, NY 10001" -162446,27in FHD Monitor,1,149.99,03/28/19 10:27,"384 South St, New York City, NY 10001" -162447,34in Ultrawide Monitor,1,379.99,03/17/19 16:37,"133 South St, Los Angeles, CA 90001" -162448,Bose SoundSport Headphones,1,99.99,03/04/19 13:04,"777 Main St, Dallas, TX 75001" -162449,AA Batteries (4-pack),1,3.84,03/11/19 19:54,"995 1st St, San Francisco, CA 94016" -162450,USB-C Charging Cable,1,11.95,03/12/19 10:53,"269 1st St, Dallas, TX 75001" -162451,AA Batteries (4-pack),3,3.84,03/22/19 08:59,"25 Adams St, Seattle, WA 98101" -162452,27in FHD Monitor,1,149.99,03/02/19 07:28,"632 7th St, Portland, ME 04101" -162453,AAA Batteries (4-pack),1,2.99,03/29/19 04:37,"934 Ridge St, Atlanta, GA 30301" -162454,AAA Batteries (4-pack),1,2.99,03/02/19 14:10,"309 Sunset St, Atlanta, GA 30301" -162455,34in Ultrawide Monitor,1,379.99,03/14/19 10:52,"425 Lake St, Seattle, WA 98101" -162456,Wired Headphones,1,11.99,03/19/19 09:13,"59 Dogwood St, Atlanta, GA 30301" -162457,ThinkPad Laptop,1,999.99,03/04/19 17:32,"77 Willow St, Boston, MA 02215" -162458,Apple Airpods Headphones,1,150,03/11/19 16:15,"149 Spruce St, Portland, ME 04101" -162459,AAA Batteries (4-pack),1,2.99,03/09/19 08:17,"609 Washington St, Austin, TX 73301" -162460,Bose SoundSport Headphones,1,99.99,03/27/19 08:05,"904 Hickory St, San Francisco, CA 94016" -162461,Wired Headphones,1,11.99,03/12/19 20:19,"34 North St, Los Angeles, CA 90001" -162462,USB-C Charging Cable,1,11.95,03/18/19 11:58,"834 14th St, Portland, OR 97035" -162463,iPhone,1,700,03/26/19 20:40,"883 7th St, Boston, MA 02215" -162463,Lightning Charging Cable,1,14.95,03/26/19 20:40,"883 7th St, Boston, MA 02215" -162464,iPhone,1,700,03/23/19 17:03,"45 West St, San Francisco, CA 94016" -162465,Apple Airpods Headphones,1,150,03/08/19 21:43,"603 Willow St, New York City, NY 10001" -162466,iPhone,1,700,03/30/19 11:46,"309 Adams St, Los Angeles, CA 90001" -162467,Wired Headphones,1,11.99,03/30/19 11:02,"122 Johnson St, Seattle, WA 98101" -162468,AA Batteries (4-pack),1,3.84,03/18/19 11:24,"654 4th St, Los Angeles, CA 90001" -162469,27in FHD Monitor,1,149.99,03/30/19 23:28,"531 Spruce St, Los Angeles, CA 90001" -162470,USB-C Charging Cable,1,11.95,03/12/19 16:58,"93 Lake St, Los Angeles, CA 90001" -162471,ThinkPad Laptop,1,999.99,03/04/19 08:59,"69 Spruce St, Boston, MA 02215" -162472,Vareebadd Phone,1,400,03/05/19 23:55,"505 Hickory St, Seattle, WA 98101" -162473,Wired Headphones,1,11.99,03/23/19 12:37,"270 South St, Portland, OR 97035" -162474,AAA Batteries (4-pack),1,2.99,03/21/19 08:26,"254 Pine St, San Francisco, CA 94016" -162475,Lightning Charging Cable,1,14.95,03/29/19 15:39,"310 North St, Los Angeles, CA 90001" -162476,Flatscreen TV,1,300,03/27/19 19:09,"962 Highland St, Atlanta, GA 30301" -162477,USB-C Charging Cable,1,11.95,03/17/19 15:38,"827 Cherry St, Atlanta, GA 30301" -162478,USB-C Charging Cable,1,11.95,03/28/19 11:53,"506 Spruce St, New York City, NY 10001" -162479,27in 4K Gaming Monitor,1,389.99,03/15/19 19:09,"92 Walnut St, Los Angeles, CA 90001" -162480,USB-C Charging Cable,1,11.95,03/23/19 13:01,"597 12th St, San Francisco, CA 94016" -162481,AAA Batteries (4-pack),3,2.99,03/24/19 22:00,"556 5th St, Los Angeles, CA 90001" -162482,34in Ultrawide Monitor,1,379.99,03/23/19 20:42,"722 Church St, Los Angeles, CA 90001" -162483,34in Ultrawide Monitor,1,379.99,03/12/19 14:26,"893 Dogwood St, San Francisco, CA 94016" -162484,Bose SoundSport Headphones,1,99.99,03/05/19 08:12,"195 4th St, Portland, ME 04101" -162485,USB-C Charging Cable,1,11.95,03/25/19 09:20,"682 Cedar St, San Francisco, CA 94016" -162486,iPhone,1,700,03/04/19 11:46,"594 1st St, San Francisco, CA 94016" -162486,Lightning Charging Cable,1,14.95,03/04/19 11:46,"594 1st St, San Francisco, CA 94016" -162487,USB-C Charging Cable,3,11.95,03/09/19 14:42,"631 Church St, Portland, OR 97035" -162488,AA Batteries (4-pack),1,3.84,03/30/19 09:14,"554 West St, San Francisco, CA 94016" -162489,27in 4K Gaming Monitor,1,389.99,03/30/19 01:01,"397 Highland St, Seattle, WA 98101" -162490,Google Phone,1,600,03/12/19 00:56,"27 West St, Atlanta, GA 30301" -162490,USB-C Charging Cable,1,11.95,03/12/19 00:56,"27 West St, Atlanta, GA 30301" -162491,Bose SoundSport Headphones,1,99.99,03/05/19 20:00,"881 1st St, San Francisco, CA 94016" -162492,iPhone,1,700,03/20/19 10:00,"534 10th St, Seattle, WA 98101" -162493,AAA Batteries (4-pack),1,2.99,03/23/19 21:16,"392 Wilson St, San Francisco, CA 94016" -162494,27in FHD Monitor,1,149.99,03/31/19 19:57,"896 Spruce St, Los Angeles, CA 90001" -162495,Macbook Pro Laptop,1,1700,03/02/19 11:38,"292 Cherry St, Los Angeles, CA 90001" -162496,AA Batteries (4-pack),1,3.84,03/27/19 11:55,"68 West St, Atlanta, GA 30301" -162497,AA Batteries (4-pack),2,3.84,03/22/19 23:42,"919 Jefferson St, San Francisco, CA 94016" -162498,Wired Headphones,1,11.99,03/13/19 10:28,"743 5th St, Austin, TX 73301" -162499,AA Batteries (4-pack),3,3.84,03/28/19 12:20,"623 Chestnut St, New York City, NY 10001" -162500,Wired Headphones,1,11.99,03/27/19 21:17,"33 Elm St, San Francisco, CA 94016" -162501,Bose SoundSport Headphones,1,99.99,03/31/19 16:00,"170 6th St, Boston, MA 02215" -162502,Flatscreen TV,1,300,03/15/19 16:20,"700 South St, Boston, MA 02215" -162503,AAA Batteries (4-pack),2,2.99,03/03/19 20:31,"615 Cherry St, Dallas, TX 75001" -162504,34in Ultrawide Monitor,1,379.99,03/04/19 17:42,"146 Willow St, Atlanta, GA 30301" -162505,27in FHD Monitor,1,149.99,03/13/19 08:31,"827 Hickory St, Boston, MA 02215" -162506,USB-C Charging Cable,1,11.95,03/08/19 15:50,"718 Adams St, San Francisco, CA 94016" -162507,20in Monitor,1,109.99,03/18/19 09:00,"358 Hickory St, San Francisco, CA 94016" -162508,iPhone,1,700,03/25/19 11:21,"894 Johnson St, Seattle, WA 98101" -162508,Lightning Charging Cable,1,14.95,03/25/19 11:21,"894 Johnson St, Seattle, WA 98101" -162509,AAA Batteries (4-pack),1,2.99,03/09/19 19:21,"629 Meadow St, Boston, MA 02215" -162510,Macbook Pro Laptop,1,1700,03/13/19 13:03,"417 10th St, Portland, OR 97035" -162511,Wired Headphones,1,11.99,03/17/19 23:08,"615 Pine St, Seattle, WA 98101" -162512,USB-C Charging Cable,1,11.95,03/06/19 20:30,"433 Johnson St, San Francisco, CA 94016" -162513,Bose SoundSport Headphones,1,99.99,03/11/19 09:20,"849 Ridge St, New York City, NY 10001" -162514,Bose SoundSport Headphones,1,99.99,03/11/19 12:15,"763 Main St, Seattle, WA 98101" -162515,AA Batteries (4-pack),3,3.84,03/06/19 18:30,"976 Lake St, New York City, NY 10001" -162516,AA Batteries (4-pack),4,3.84,03/10/19 11:31,"896 Elm St, Dallas, TX 75001" -162517,Wired Headphones,1,11.99,03/16/19 15:47,"780 9th St, Los Angeles, CA 90001" -162518,USB-C Charging Cable,1,11.95,03/08/19 11:24,"281 River St, San Francisco, CA 94016" -162519,Vareebadd Phone,1,400,03/04/19 06:57,"516 Cherry St, New York City, NY 10001" -162520,AA Batteries (4-pack),1,3.84,03/24/19 11:16,"308 Johnson St, New York City, NY 10001" -162521,Flatscreen TV,1,300,03/30/19 08:12,"304 Hickory St, Seattle, WA 98101" -162522,Lightning Charging Cable,1,14.95,03/03/19 21:18,"618 Dogwood St, Seattle, WA 98101" -162523,Wired Headphones,1,11.99,03/26/19 15:23,"156 Hickory St, San Francisco, CA 94016" -162524,AA Batteries (4-pack),1,3.84,03/21/19 13:14,"372 Elm St, San Francisco, CA 94016" -162525,34in Ultrawide Monitor,1,379.99,03/10/19 19:00,"415 Forest St, San Francisco, CA 94016" -162526,Wired Headphones,2,11.99,03/30/19 15:12,"744 Wilson St, Atlanta, GA 30301" -162527,ThinkPad Laptop,1,999.99,03/03/19 14:42,"775 12th St, Dallas, TX 75001" -162528,27in FHD Monitor,1,149.99,03/11/19 08:15,"776 11th St, San Francisco, CA 94016" -162529,iPhone,1,700,03/15/19 20:25,"3 Dogwood St, Seattle, WA 98101" -162530,AAA Batteries (4-pack),1,2.99,03/24/19 12:09,"552 Main St, Boston, MA 02215" -162531,27in 4K Gaming Monitor,1,389.99,03/27/19 08:12,"383 Pine St, Atlanta, GA 30301" -162532,27in 4K Gaming Monitor,1,389.99,03/25/19 19:40,"802 Hickory St, Boston, MA 02215" -162533,iPhone,1,700,03/12/19 19:48,"361 Ridge St, San Francisco, CA 94016" -162534,Bose SoundSport Headphones,1,99.99,03/29/19 21:06,"392 13th St, Portland, OR 97035" -162535,AAA Batteries (4-pack),1,2.99,03/03/19 18:44,"749 Madison St, Atlanta, GA 30301" -162536,Wired Headphones,1,11.99,03/27/19 00:42,"899 13th St, San Francisco, CA 94016" -162537,AA Batteries (4-pack),2,3.84,03/16/19 20:00,"382 Park St, New York City, NY 10001" -162538,34in Ultrawide Monitor,1,379.99,03/22/19 19:06,"434 Elm St, Seattle, WA 98101" -162539,AA Batteries (4-pack),1,3.84,03/31/19 21:31,"279 14th St, San Francisco, CA 94016" -162540,Bose SoundSport Headphones,1,99.99,03/20/19 23:01,"376 7th St, San Francisco, CA 94016" -162541,AAA Batteries (4-pack),2,2.99,04/01/19 01:15,"672 2nd St, Atlanta, GA 30301" -162542,USB-C Charging Cable,1,11.95,03/08/19 17:50,"602 6th St, Seattle, WA 98101" -162543,AA Batteries (4-pack),2,3.84,03/06/19 13:03,"99 13th St, Atlanta, GA 30301" -162544,Apple Airpods Headphones,2,150,03/10/19 12:40,"190 Maple St, New York City, NY 10001" -162545,Google Phone,1,600,03/23/19 17:22,"466 Church St, San Francisco, CA 94016" -162546,Macbook Pro Laptop,1,1700,03/05/19 00:39,"114 1st St, New York City, NY 10001" -162547,27in 4K Gaming Monitor,1,389.99,03/18/19 21:55,"156 Forest St, Los Angeles, CA 90001" -162548,ThinkPad Laptop,1,999.99,03/11/19 11:30,"872 Church St, Austin, TX 73301" -162549,Macbook Pro Laptop,1,1700,03/26/19 08:09,"303 6th St, Portland, OR 97035" -162550,Wired Headphones,1,11.99,03/03/19 20:11,"464 Meadow St, Portland, OR 97035" -162551,iPhone,1,700,03/27/19 10:48,"510 Madison St, Boston, MA 02215" -162552,USB-C Charging Cable,1,11.95,03/10/19 17:05,"775 1st St, New York City, NY 10001" -162553,Bose SoundSport Headphones,1,99.99,03/08/19 12:01,"949 River St, Seattle, WA 98101" -162554,iPhone,1,700,03/29/19 15:30,"567 7th St, Seattle, WA 98101" -162554,Wired Headphones,1,11.99,03/29/19 15:30,"567 7th St, Seattle, WA 98101" -162555,Lightning Charging Cable,1,14.95,03/30/19 11:59,"212 Dogwood St, Seattle, WA 98101" -162556,Flatscreen TV,1,300,03/31/19 19:47,"72 2nd St, San Francisco, CA 94016" -162557,iPhone,1,700,03/22/19 12:50,"813 1st St, Atlanta, GA 30301" -162557,Lightning Charging Cable,2,14.95,03/22/19 12:50,"813 1st St, Atlanta, GA 30301" -162558,Lightning Charging Cable,1,14.95,03/03/19 18:36,"171 Washington St, Los Angeles, CA 90001" -162559,Wired Headphones,1,11.99,03/21/19 09:24,"929 Park St, Boston, MA 02215" -162560,AA Batteries (4-pack),1,3.84,03/10/19 23:56,"618 Washington St, San Francisco, CA 94016" -162561,Wired Headphones,1,11.99,03/12/19 07:58,"499 4th St, Austin, TX 73301" -162562,AA Batteries (4-pack),1,3.84,03/29/19 21:16,"96 Park St, Austin, TX 73301" -162563,27in FHD Monitor,1,149.99,03/12/19 15:51,"769 1st St, Seattle, WA 98101" -162564,Apple Airpods Headphones,1,150,03/19/19 14:55,"1 12th St, Los Angeles, CA 90001" -162565,USB-C Charging Cable,1,11.95,03/29/19 00:25,"961 10th St, Dallas, TX 75001" -162566,Macbook Pro Laptop,1,1700,03/08/19 22:13,"681 Ridge St, Boston, MA 02215" -162567,AA Batteries (4-pack),1,3.84,03/08/19 11:41,"196 10th St, San Francisco, CA 94016" -162568,USB-C Charging Cable,2,11.95,03/02/19 20:41,"628 Walnut St, San Francisco, CA 94016" -162569,34in Ultrawide Monitor,1,379.99,03/27/19 12:16,"196 Church St, New York City, NY 10001" -162570,Lightning Charging Cable,2,14.95,03/17/19 23:22,"55 Adams St, Austin, TX 73301" -162571,AA Batteries (4-pack),1,3.84,03/29/19 21:01,"422 Maple St, Los Angeles, CA 90001" -162572,Lightning Charging Cable,1,14.95,03/10/19 14:41,"732 Highland St, Boston, MA 02215" -162573,Google Phone,1,600,03/02/19 11:34,"673 2nd St, Portland, OR 97035" -162574,AAA Batteries (4-pack),3,2.99,03/08/19 12:14,"194 Jackson St, San Francisco, CA 94016" -162575,iPhone,1,700,03/25/19 12:56,"590 Park St, Los Angeles, CA 90001" -162576,Bose SoundSport Headphones,2,99.99,03/21/19 23:07,"634 Cedar St, Boston, MA 02215" -162577,AAA Batteries (4-pack),1,2.99,03/19/19 19:54,"547 Ridge St, Atlanta, GA 30301" -162578,Bose SoundSport Headphones,1,99.99,03/20/19 13:58,"56 Adams St, Atlanta, GA 30301" -162579,AA Batteries (4-pack),2,3.84,03/13/19 12:20,"40 13th St, San Francisco, CA 94016" -162580,AAA Batteries (4-pack),1,2.99,03/11/19 18:00,"680 Jefferson St, Portland, OR 97035" -162581,Flatscreen TV,1,300,03/05/19 15:07,"903 8th St, Dallas, TX 75001" -162582,Flatscreen TV,1,300,03/16/19 11:45,"97 9th St, New York City, NY 10001" -162583,Apple Airpods Headphones,1,150,03/20/19 21:52,"36 Main St, Seattle, WA 98101" -162584,34in Ultrawide Monitor,1,379.99,03/25/19 23:04,"459 Hill St, New York City, NY 10001" -162585,27in 4K Gaming Monitor,1,389.99,03/03/19 08:39,"182 Chestnut St, San Francisco, CA 94016" -162586,USB-C Charging Cable,1,11.95,03/20/19 08:50,"499 Cherry St, Austin, TX 73301" -162587,LG Washing Machine,1,600.0,03/20/19 12:58,"66 Lakeview St, San Francisco, CA 94016" -162588,AAA Batteries (4-pack),1,2.99,03/29/19 09:03,"568 Meadow St, Austin, TX 73301" -162589,AA Batteries (4-pack),2,3.84,03/23/19 00:37,"13 5th St, Boston, MA 02215" -162590,27in FHD Monitor,1,149.99,03/15/19 16:50,"611 Washington St, Boston, MA 02215" -162591,USB-C Charging Cable,1,11.95,03/30/19 19:10,"884 Pine St, Portland, ME 04101" -162592,Bose SoundSport Headphones,1,99.99,03/05/19 15:10,"595 Jefferson St, San Francisco, CA 94016" -162593,Bose SoundSport Headphones,1,99.99,03/24/19 15:06,"247 Jefferson St, San Francisco, CA 94016" -162594,Lightning Charging Cable,2,14.95,03/03/19 10:49,"504 13th St, Seattle, WA 98101" -162595,AAA Batteries (4-pack),1,2.99,03/10/19 10:07,"916 13th St, New York City, NY 10001" -162596,Wired Headphones,1,11.99,03/27/19 12:30,"698 Johnson St, Atlanta, GA 30301" -162597,34in Ultrawide Monitor,1,379.99,03/14/19 09:15,"901 Ridge St, Portland, OR 97035" -162598,USB-C Charging Cable,1,11.95,03/31/19 18:07,"353 11th St, Atlanta, GA 30301" -162599,Apple Airpods Headphones,1,150,03/09/19 19:22,"380 Maple St, San Francisco, CA 94016" -162600,34in Ultrawide Monitor,1,379.99,03/18/19 10:48,"198 Jefferson St, Dallas, TX 75001" -162601,Bose SoundSport Headphones,1,99.99,03/13/19 19:00,"465 Highland St, Boston, MA 02215" -162602,Lightning Charging Cable,1,14.95,03/19/19 13:29,"359 Lincoln St, Seattle, WA 98101" -162603,20in Monitor,1,109.99,03/30/19 13:34,"794 North St, Austin, TX 73301" -162604,Wired Headphones,1,11.99,03/03/19 13:56,"933 Willow St, New York City, NY 10001" -162605,Vareebadd Phone,1,400,03/16/19 16:43,"807 Wilson St, San Francisco, CA 94016" -162606,AA Batteries (4-pack),2,3.84,03/21/19 18:06,"446 Adams St, New York City, NY 10001" -162607,Apple Airpods Headphones,1,150,03/31/19 10:18,"485 Center St, Los Angeles, CA 90001" -162608,Google Phone,1,600,03/13/19 09:05,"925 Lake St, Boston, MA 02215" -162609,Bose SoundSport Headphones,1,99.99,03/17/19 12:32,"823 Wilson St, Atlanta, GA 30301" -162610,USB-C Charging Cable,1,11.95,03/02/19 15:59,"90 Hill St, San Francisco, CA 94016" -162611,AA Batteries (4-pack),1,3.84,03/05/19 10:21,"97 Meadow St, Los Angeles, CA 90001" -162612,Wired Headphones,1,11.99,03/11/19 11:18,"357 Hickory St, Austin, TX 73301" -162612,USB-C Charging Cable,1,11.95,03/11/19 11:18,"357 Hickory St, Austin, TX 73301" -162613,Bose SoundSport Headphones,1,99.99,03/12/19 15:21,"53 6th St, Los Angeles, CA 90001" -162614,Lightning Charging Cable,1,14.95,03/17/19 13:22,"804 6th St, Los Angeles, CA 90001" -162615,AA Batteries (4-pack),1,3.84,03/22/19 12:43,"322 11th St, Seattle, WA 98101" -162616,Vareebadd Phone,1,400,03/31/19 13:00,"287 Adams St, Dallas, TX 75001" -162617,AAA Batteries (4-pack),2,2.99,03/19/19 08:12,"809 Forest St, San Francisco, CA 94016" -162618,Lightning Charging Cable,1,14.95,03/09/19 12:08,"266 Church St, San Francisco, CA 94016" -162619,27in FHD Monitor,1,149.99,03/30/19 18:41,"349 Wilson St, Los Angeles, CA 90001" -162620,27in FHD Monitor,1,149.99,03/02/19 02:11,"60 Maple St, Boston, MA 02215" -162621,USB-C Charging Cable,1,11.95,03/07/19 09:44,"282 13th St, Austin, TX 73301" -162622,Lightning Charging Cable,1,14.95,03/17/19 14:31,"815 Cherry St, Boston, MA 02215" -162623,AAA Batteries (4-pack),1,2.99,03/25/19 17:34,"821 Dogwood St, San Francisco, CA 94016" -162623,AA Batteries (4-pack),1,3.84,03/25/19 17:34,"821 Dogwood St, San Francisco, CA 94016" -162624,USB-C Charging Cable,1,11.95,03/01/19 11:42,"878 Highland St, San Francisco, CA 94016" -162625,Lightning Charging Cable,1,14.95,03/09/19 20:49,"524 Ridge St, New York City, NY 10001" -162626,27in FHD Monitor,1,149.99,03/09/19 23:47,"113 Cherry St, San Francisco, CA 94016" -162627,Apple Airpods Headphones,1,150,03/24/19 11:42,"461 11th St, Los Angeles, CA 90001" -162628,USB-C Charging Cable,1,11.95,03/26/19 14:56,"867 Lake St, Seattle, WA 98101" -162629,27in 4K Gaming Monitor,1,389.99,03/27/19 09:58,"427 Elm St, San Francisco, CA 94016" -162630,34in Ultrawide Monitor,1,379.99,03/09/19 00:36,"418 7th St, Boston, MA 02215" -162631,Bose SoundSport Headphones,1,99.99,03/19/19 22:27,"395 Willow St, San Francisco, CA 94016" -162632,AAA Batteries (4-pack),1,2.99,03/18/19 12:10,"992 Highland St, New York City, NY 10001" -162633,27in FHD Monitor,1,149.99,03/29/19 14:42,"498 Jefferson St, Austin, TX 73301" -162634,Apple Airpods Headphones,1,150,03/13/19 16:42,"477 14th St, Portland, OR 97035" -162635,27in FHD Monitor,1,149.99,03/08/19 13:24,"99 14th St, Austin, TX 73301" -162636,USB-C Charging Cable,1,11.95,03/05/19 22:49,"510 Chestnut St, Dallas, TX 75001" -162637,Apple Airpods Headphones,1,150,03/10/19 07:17,"969 11th St, Los Angeles, CA 90001" -162638,Apple Airpods Headphones,1,150,03/19/19 14:06,"556 7th St, Seattle, WA 98101" -162639,27in 4K Gaming Monitor,1,389.99,03/07/19 23:44,"925 Willow St, Dallas, TX 75001" -162640,27in FHD Monitor,1,149.99,03/20/19 21:29,"383 Adams St, Los Angeles, CA 90001" -162641,Apple Airpods Headphones,1,150,03/10/19 11:50,"155 Wilson St, Los Angeles, CA 90001" -162642,AAA Batteries (4-pack),4,2.99,03/17/19 18:44,"962 Maple St, San Francisco, CA 94016" -162643,AAA Batteries (4-pack),1,2.99,03/09/19 14:56,"467 Center St, Atlanta, GA 30301" -162644,AAA Batteries (4-pack),1,2.99,03/20/19 02:15,"564 Johnson St, Los Angeles, CA 90001" -162645,iPhone,1,700,03/25/19 21:26,"362 Park St, San Francisco, CA 94016" -162646,Apple Airpods Headphones,1,150,03/08/19 18:11,"174 Madison St, Dallas, TX 75001" -162647,AAA Batteries (4-pack),1,2.99,03/24/19 13:47,"206 Adams St, Atlanta, GA 30301" -162648,AAA Batteries (4-pack),2,2.99,03/26/19 09:29,"576 Meadow St, San Francisco, CA 94016" -162649,AAA Batteries (4-pack),1,2.99,03/08/19 19:04,"158 Lake St, Seattle, WA 98101" -162650,USB-C Charging Cable,1,11.95,03/11/19 20:05,"187 Madison St, New York City, NY 10001" -162651,USB-C Charging Cable,1,11.95,03/04/19 19:06,"251 Ridge St, Seattle, WA 98101" -162652,Macbook Pro Laptop,1,1700,03/21/19 20:49,"165 Church St, Boston, MA 02215" -162653,AAA Batteries (4-pack),2,2.99,03/13/19 14:51,"907 Cedar St, San Francisco, CA 94016" -162654,Lightning Charging Cable,1,14.95,03/02/19 13:40,"724 Spruce St, San Francisco, CA 94016" -162655,Wired Headphones,1,11.99,03/05/19 15:54,"364 1st St, Boston, MA 02215" -162656,Apple Airpods Headphones,2,150,03/12/19 12:30,"426 Maple St, Los Angeles, CA 90001" -162657,34in Ultrawide Monitor,1,379.99,03/13/19 07:40,"326 9th St, San Francisco, CA 94016" -162658,AA Batteries (4-pack),1,3.84,03/06/19 17:53,"743 Lake St, Atlanta, GA 30301" -162659,Flatscreen TV,1,300,03/02/19 23:26,"945 13th St, San Francisco, CA 94016" -162660,AAA Batteries (4-pack),1,2.99,03/14/19 14:26,"591 Pine St, New York City, NY 10001" -162661,Lightning Charging Cable,1,14.95,03/04/19 20:53,"556 Park St, Austin, TX 73301" -162661,Apple Airpods Headphones,1,150,03/04/19 20:53,"556 Park St, Austin, TX 73301" -162662,AA Batteries (4-pack),1,3.84,03/06/19 18:06,"621 10th St, San Francisco, CA 94016" -162663,Lightning Charging Cable,1,14.95,03/28/19 15:04,"253 River St, Austin, TX 73301" -162664,Lightning Charging Cable,1,14.95,03/02/19 15:59,"48 13th St, San Francisco, CA 94016" -162665,AAA Batteries (4-pack),3,2.99,03/12/19 21:22,"515 Madison St, Los Angeles, CA 90001" -162666,USB-C Charging Cable,1,11.95,03/10/19 15:19,"184 Adams St, Dallas, TX 75001" -162667,USB-C Charging Cable,1,11.95,03/21/19 13:23,"281 Meadow St, Dallas, TX 75001" -162668,iPhone,1,700,03/06/19 20:17,"16 Hill St, Los Angeles, CA 90001" -162669,Lightning Charging Cable,1,14.95,03/28/19 15:29,"504 Jefferson St, Boston, MA 02215" -162670,AAA Batteries (4-pack),1,2.99,03/09/19 00:50,"908 5th St, New York City, NY 10001" -162671,USB-C Charging Cable,1,11.95,03/02/19 18:34,"463 13th St, Boston, MA 02215" -162672,20in Monitor,1,109.99,03/05/19 11:42,"762 Pine St, Atlanta, GA 30301" -162673,Apple Airpods Headphones,1,150,03/03/19 12:24,"543 Sunset St, New York City, NY 10001" -162674,Bose SoundSport Headphones,1,99.99,03/16/19 18:31,"593 9th St, San Francisco, CA 94016" -162675,27in FHD Monitor,1,149.99,03/28/19 12:41,"956 Lake St, Portland, OR 97035" -162676,Apple Airpods Headphones,1,150,03/06/19 20:04,"854 Park St, Boston, MA 02215" -162677,iPhone,1,700,03/31/19 21:16,"50 Park St, New York City, NY 10001" -162678,Bose SoundSport Headphones,1,99.99,03/02/19 17:01,"256 13th St, Dallas, TX 75001" -162679,Apple Airpods Headphones,1,150,03/14/19 11:53,"754 Chestnut St, San Francisco, CA 94016" -162680,USB-C Charging Cable,1,11.95,03/29/19 10:59,"413 Jefferson St, Los Angeles, CA 90001" -162681,ThinkPad Laptop,1,999.99,03/25/19 11:26,"79 Park St, Austin, TX 73301" -162682,Vareebadd Phone,1,400,03/12/19 17:04,"846 Cherry St, San Francisco, CA 94016" -162683,Google Phone,1,600,03/23/19 19:01,"587 North St, Los Angeles, CA 90001" -162684,Flatscreen TV,1,300,03/09/19 17:42,"81 5th St, Los Angeles, CA 90001" -162685,iPhone,1,700,03/31/19 16:23,"201 Highland St, San Francisco, CA 94016" -162686,AA Batteries (4-pack),1,3.84,03/28/19 11:21,"169 Meadow St, Los Angeles, CA 90001" -162687,AAA Batteries (4-pack),1,2.99,03/19/19 21:59,"207 Meadow St, Dallas, TX 75001" -162688,Wired Headphones,1,11.99,03/12/19 10:57,"849 Adams St, New York City, NY 10001" -162689,USB-C Charging Cable,1,11.95,03/13/19 12:43,"279 Walnut St, Boston, MA 02215" -162690,27in FHD Monitor,1,149.99,03/19/19 08:40,"121 7th St, San Francisco, CA 94016" -162691,Bose SoundSport Headphones,1,99.99,03/08/19 14:05,"108 Park St, Dallas, TX 75001" -162692,Lightning Charging Cable,1,14.95,03/28/19 14:54,"824 River St, Dallas, TX 75001" -162693,AAA Batteries (4-pack),2,2.99,03/05/19 18:59,"211 12th St, Boston, MA 02215" -162694,AA Batteries (4-pack),1,3.84,03/15/19 16:35,"239 Willow St, New York City, NY 10001" -162695,Apple Airpods Headphones,1,150,03/12/19 19:13,"162 Walnut St, Los Angeles, CA 90001" -162696,Macbook Pro Laptop,1,1700,03/06/19 21:47,"846 Elm St, Portland, OR 97035" -162697,Macbook Pro Laptop,1,1700,03/09/19 18:27,"186 4th St, Austin, TX 73301" -162698,Bose SoundSport Headphones,1,99.99,03/13/19 10:07,"812 8th St, New York City, NY 10001" -162699,Wired Headphones,1,11.99,03/31/19 20:22,"196 Church St, Boston, MA 02215" -162700,Lightning Charging Cable,2,14.95,03/12/19 14:52,"571 Sunset St, Boston, MA 02215" -162701,AA Batteries (4-pack),1,3.84,03/27/19 18:10,"752 8th St, Atlanta, GA 30301" -162702,Google Phone,1,600,03/17/19 15:38,"904 River St, Atlanta, GA 30301" -162703,Bose SoundSport Headphones,1,99.99,03/31/19 11:21,"980 South St, Seattle, WA 98101" -162704,Macbook Pro Laptop,1,1700,03/11/19 20:06,"587 Jackson St, Los Angeles, CA 90001" -162705,AAA Batteries (4-pack),3,2.99,03/08/19 22:09,"306 Lakeview St, New York City, NY 10001" -162706,Wired Headphones,2,11.99,03/02/19 06:33,"935 6th St, Boston, MA 02215" -162707,27in 4K Gaming Monitor,1,389.99,03/16/19 13:01,"669 Hill St, Boston, MA 02215" -162708,Lightning Charging Cable,1,14.95,03/22/19 20:28,"883 West St, Boston, MA 02215" -162709,AAA Batteries (4-pack),1,2.99,03/26/19 13:16,"456 10th St, San Francisco, CA 94016" -162710,USB-C Charging Cable,1,11.95,03/22/19 13:05,"580 Pine St, Los Angeles, CA 90001" -162711,Wired Headphones,1,11.99,03/12/19 13:10,"76 12th St, San Francisco, CA 94016" -162712,34in Ultrawide Monitor,1,379.99,03/07/19 20:33,"608 Center St, Seattle, WA 98101" -162713,AAA Batteries (4-pack),2,2.99,03/06/19 06:20,"116 Wilson St, San Francisco, CA 94016" -162714,20in Monitor,1,109.99,03/02/19 20:04,"401 11th St, Portland, OR 97035" -162715,ThinkPad Laptop,1,999.99,03/24/19 10:14,"956 Lakeview St, Seattle, WA 98101" -162716,20in Monitor,1,109.99,03/11/19 19:52,"941 Forest St, Seattle, WA 98101" -162717,AAA Batteries (4-pack),1,2.99,03/28/19 09:13,"498 Cedar St, Austin, TX 73301" -162718,Bose SoundSport Headphones,1,99.99,03/04/19 19:33,"744 7th St, Los Angeles, CA 90001" -162719,34in Ultrawide Monitor,1,379.99,03/18/19 12:25,"270 Church St, San Francisco, CA 94016" -162720,Bose SoundSport Headphones,1,99.99,03/04/19 15:50,"435 West St, Austin, TX 73301" -162721,AAA Batteries (4-pack),1,2.99,03/13/19 02:27,"682 Wilson St, Los Angeles, CA 90001" -162722,AA Batteries (4-pack),2,3.84,03/14/19 11:27,"851 Willow St, San Francisco, CA 94016" -162723,Wired Headphones,1,11.99,03/08/19 00:34,"568 11th St, Portland, ME 04101" -162724,Lightning Charging Cable,2,14.95,03/01/19 18:07,"274 Cedar St, San Francisco, CA 94016" -162725,Bose SoundSport Headphones,1,99.99,03/02/19 18:53,"199 Spruce St, San Francisco, CA 94016" -162726,Macbook Pro Laptop,1,1700,03/15/19 08:45,"180 12th St, Atlanta, GA 30301" -162727,27in FHD Monitor,1,149.99,03/12/19 18:33,"138 Chestnut St, Los Angeles, CA 90001" -162728,Google Phone,1,600,03/01/19 23:38,"836 Hill St, Boston, MA 02215" -162729,34in Ultrawide Monitor,1,379.99,03/16/19 19:21,"744 Washington St, New York City, NY 10001" -162730,Wired Headphones,1,11.99,03/01/19 10:17,"673 4th St, Los Angeles, CA 90001" -162731,Wired Headphones,1,11.99,03/25/19 11:24,"610 Sunset St, Portland, OR 97035" -162732,Bose SoundSport Headphones,1,99.99,03/01/19 22:01,"307 2nd St, Boston, MA 02215" -162733,AAA Batteries (4-pack),2,2.99,03/02/19 21:46,"517 Forest St, New York City, NY 10001" -162734,Lightning Charging Cable,1,14.95,03/07/19 22:34,"753 Dogwood St, Dallas, TX 75001" -162735,Lightning Charging Cable,1,14.95,03/11/19 11:26,"991 Lakeview St, Los Angeles, CA 90001" -162736,Apple Airpods Headphones,1,150,03/26/19 16:27,"993 River St, San Francisco, CA 94016" -162737,27in FHD Monitor,1,149.99,03/11/19 16:21,"207 Wilson St, Austin, TX 73301" -162738,Apple Airpods Headphones,1,150,03/16/19 14:15,"657 14th St, Dallas, TX 75001" -162739,Google Phone,1,600,03/18/19 11:41,"305 Madison St, Los Angeles, CA 90001" -162739,USB-C Charging Cable,1,11.95,03/18/19 11:41,"305 Madison St, Los Angeles, CA 90001" -162740,Google Phone,1,600,03/13/19 20:18,"923 Lakeview St, Boston, MA 02215" -162741,Vareebadd Phone,1,400,03/01/19 11:32,"698 Willow St, Los Angeles, CA 90001" -162741,USB-C Charging Cable,1,11.95,03/01/19 11:32,"698 Willow St, Los Angeles, CA 90001" -162742,Apple Airpods Headphones,1,150,03/17/19 10:17,"393 Pine St, San Francisco, CA 94016" -162743,LG Dryer,1,600.0,03/04/19 20:11,"162 13th St, Austin, TX 73301" -162744,Lightning Charging Cable,1,14.95,03/19/19 17:22,"733 Ridge St, San Francisco, CA 94016" -162745,Bose SoundSport Headphones,1,99.99,03/12/19 10:52,"177 Hickory St, New York City, NY 10001" -162746,AAA Batteries (4-pack),5,2.99,03/25/19 13:22,"767 Washington St, San Francisco, CA 94016" -162747,Macbook Pro Laptop,1,1700,03/28/19 12:00,"125 13th St, Portland, OR 97035" -162748,AAA Batteries (4-pack),1,2.99,03/11/19 23:13,"646 11th St, Austin, TX 73301" -162749,Wired Headphones,1,11.99,03/03/19 21:27,"155 14th St, New York City, NY 10001" -162750,AAA Batteries (4-pack),2,2.99,03/18/19 20:24,"838 Madison St, Boston, MA 02215" -162751,AAA Batteries (4-pack),1,2.99,03/24/19 23:50,"430 12th St, Portland, OR 97035" -162752,Bose SoundSport Headphones,1,99.99,03/20/19 02:06,"645 Highland St, Los Angeles, CA 90001" -162753,AA Batteries (4-pack),1,3.84,03/30/19 08:50,"141 Sunset St, Seattle, WA 98101" -162754,Wired Headphones,1,11.99,03/17/19 10:29,"880 Wilson St, Los Angeles, CA 90001" -162755,27in FHD Monitor,1,149.99,03/03/19 17:55,"10 Forest St, New York City, NY 10001" -162756,ThinkPad Laptop,1,999.99,03/21/19 10:07,"437 14th St, San Francisco, CA 94016" -162757,Google Phone,1,600,03/11/19 20:25,"843 Cherry St, Boston, MA 02215" -162758,USB-C Charging Cable,1,11.95,03/23/19 21:39,"90 5th St, San Francisco, CA 94016" -162759,Vareebadd Phone,1,400,03/31/19 19:30,"985 Madison St, Atlanta, GA 30301" -162759,Wired Headphones,1,11.99,03/31/19 19:30,"985 Madison St, Atlanta, GA 30301" -162760,Apple Airpods Headphones,1,150,03/14/19 11:03,"346 Hickory St, Boston, MA 02215" -162761,AAA Batteries (4-pack),1,2.99,03/18/19 09:49,"712 Lincoln St, Boston, MA 02215" -162762,Wired Headphones,1,11.99,03/17/19 06:50,"775 14th St, New York City, NY 10001" -162763,AA Batteries (4-pack),1,3.84,03/24/19 15:38,"825 Main St, Los Angeles, CA 90001" -162764,AAA Batteries (4-pack),2,2.99,03/07/19 18:37,"271 Ridge St, Boston, MA 02215" -162765,AAA Batteries (4-pack),1,2.99,03/01/19 20:54,"991 8th St, Los Angeles, CA 90001" -162766,AAA Batteries (4-pack),2,2.99,03/28/19 18:23,"518 10th St, New York City, NY 10001" -162767,AAA Batteries (4-pack),1,2.99,03/31/19 17:49,"667 Washington St, Atlanta, GA 30301" -162768,AAA Batteries (4-pack),1,2.99,03/31/19 10:35,"312 1st St, Portland, OR 97035" -162769,Flatscreen TV,1,300,03/07/19 10:13,"711 South St, San Francisco, CA 94016" -162770,Flatscreen TV,1,300,03/30/19 17:54,"749 2nd St, San Francisco, CA 94016" -162771,Google Phone,1,600,03/01/19 09:08,"198 Center St, San Francisco, CA 94016" -162772,Wired Headphones,1,11.99,03/03/19 09:53,"894 14th St, Boston, MA 02215" -162773,Bose SoundSport Headphones,1,99.99,03/28/19 08:17,"933 9th St, San Francisco, CA 94016" -162774,Wired Headphones,1,11.99,03/25/19 19:09,"891 4th St, Boston, MA 02215" -162775,USB-C Charging Cable,1,11.95,03/31/19 13:23,"158 7th St, Portland, OR 97035" -162776,USB-C Charging Cable,1,11.95,03/04/19 16:31,"333 Highland St, Los Angeles, CA 90001" -162777,AA Batteries (4-pack),1,3.84,03/15/19 18:56,"531 Sunset St, Dallas, TX 75001" -162778,AA Batteries (4-pack),1,3.84,03/13/19 23:39,"264 River St, Portland, OR 97035" -162779,USB-C Charging Cable,1,11.95,03/18/19 12:57,"424 Highland St, Dallas, TX 75001" -162780,AA Batteries (4-pack),1,3.84,03/20/19 12:20,"468 Jackson St, New York City, NY 10001" -162781,AAA Batteries (4-pack),1,2.99,03/28/19 12:49,"278 Hickory St, Los Angeles, CA 90001" -162782,iPhone,1,700,03/31/19 13:13,"931 Jefferson St, Dallas, TX 75001" -162783,Lightning Charging Cable,1,14.95,03/31/19 12:23,"690 Willow St, Atlanta, GA 30301" -162784,Bose SoundSport Headphones,1,99.99,03/08/19 13:25,"229 9th St, Dallas, TX 75001" -162785,Wired Headphones,1,11.99,03/02/19 19:17,"501 Wilson St, Portland, OR 97035" -162786,Lightning Charging Cable,1,14.95,03/09/19 06:00,"107 5th St, New York City, NY 10001" -162786,Bose SoundSport Headphones,1,99.99,03/09/19 06:00,"107 5th St, New York City, NY 10001" -162787,Wired Headphones,1,11.99,03/23/19 13:42,"657 Walnut St, Portland, OR 97035" -162788,Bose SoundSport Headphones,1,99.99,03/15/19 17:22,"927 13th St, Los Angeles, CA 90001" -162788,Apple Airpods Headphones,1,150,03/15/19 17:22,"927 13th St, Los Angeles, CA 90001" -162789,AA Batteries (4-pack),1,3.84,03/23/19 19:17,"362 Forest St, Dallas, TX 75001" -162790,Lightning Charging Cable,1,14.95,03/22/19 14:01,"216 River St, San Francisco, CA 94016" -162791,Lightning Charging Cable,1,14.95,03/01/19 22:54,"82 4th St, Los Angeles, CA 90001" -162792,Wired Headphones,1,11.99,03/08/19 12:48,"3 Chestnut St, San Francisco, CA 94016" -162793,USB-C Charging Cable,1,11.95,03/28/19 10:03,"159 Johnson St, Los Angeles, CA 90001" -162794,AA Batteries (4-pack),1,3.84,03/28/19 11:37,"970 6th St, Atlanta, GA 30301" -162795,AA Batteries (4-pack),1,3.84,03/03/19 11:58,"647 9th St, Seattle, WA 98101" -162796,Wired Headphones,1,11.99,03/03/19 05:45,"130 Hickory St, Los Angeles, CA 90001" -162797,Lightning Charging Cable,1,14.95,03/05/19 19:07,"918 5th St, Portland, OR 97035" -162798,20in Monitor,1,109.99,03/20/19 07:52,"591 9th St, San Francisco, CA 94016" -162799,27in 4K Gaming Monitor,1,389.99,03/01/19 12:03,"491 Ridge St, Boston, MA 02215" -162800,Lightning Charging Cable,1,14.95,03/28/19 15:36,"474 Washington St, Dallas, TX 75001" -162801,iPhone,1,700,03/19/19 17:41,"408 River St, New York City, NY 10001" -162801,Apple Airpods Headphones,1,150,03/19/19 17:41,"408 River St, New York City, NY 10001" -162802,Wired Headphones,1,11.99,03/20/19 15:29,"790 5th St, Los Angeles, CA 90001" -162803,USB-C Charging Cable,1,11.95,03/03/19 09:59,"614 7th St, Austin, TX 73301" -162804,AA Batteries (4-pack),1,3.84,03/13/19 21:30,"711 13th St, Portland, OR 97035" -162805,AAA Batteries (4-pack),2,2.99,03/11/19 23:15,"40 14th St, Boston, MA 02215" -162806,27in 4K Gaming Monitor,1,389.99,03/03/19 19:57,"773 South St, San Francisco, CA 94016" -162807,Lightning Charging Cable,1,14.95,03/19/19 17:40,"574 Maple St, San Francisco, CA 94016" -162808,AA Batteries (4-pack),1,3.84,03/20/19 09:55,"899 Main St, Portland, OR 97035" -162809,Bose SoundSport Headphones,1,99.99,03/22/19 17:34,"690 River St, San Francisco, CA 94016" -162810,Flatscreen TV,1,300,03/26/19 14:12,"503 Cherry St, Atlanta, GA 30301" -162811,20in Monitor,1,109.99,03/30/19 15:30,"147 Adams St, Boston, MA 02215" -162812,Lightning Charging Cable,1,14.95,03/23/19 13:13,"839 Center St, New York City, NY 10001" -162813,27in FHD Monitor,1,149.99,03/13/19 17:37,"865 Adams St, Portland, ME 04101" -162814,Apple Airpods Headphones,1,150,03/29/19 20:40,"742 Spruce St, Dallas, TX 75001" -162814,USB-C Charging Cable,1,11.95,03/29/19 20:40,"742 Spruce St, Dallas, TX 75001" -162815,Wired Headphones,1,11.99,03/07/19 13:21,"619 6th St, Boston, MA 02215" -162816,Wired Headphones,1,11.99,03/08/19 15:59,"650 Forest St, Los Angeles, CA 90001" -162817,AAA Batteries (4-pack),2,2.99,03/24/19 11:58,"120 Forest St, San Francisco, CA 94016" -162818,USB-C Charging Cable,1,11.95,03/30/19 18:39,"923 Center St, Seattle, WA 98101" -162819,Bose SoundSport Headphones,1,99.99,03/26/19 17:52,"936 Forest St, Atlanta, GA 30301" -162820,Wired Headphones,1,11.99,03/07/19 21:56,"6 Ridge St, Los Angeles, CA 90001" -162821,Lightning Charging Cable,1,14.95,03/10/19 16:28,"71 Spruce St, Seattle, WA 98101" -162822,Lightning Charging Cable,2,14.95,03/02/19 13:22,"61 Hill St, San Francisco, CA 94016" -162823,Lightning Charging Cable,2,14.95,03/03/19 19:30,"840 6th St, Boston, MA 02215" -162824,Lightning Charging Cable,1,14.95,03/24/19 21:26,"242 West St, Boston, MA 02215" -162825,USB-C Charging Cable,1,11.95,03/05/19 14:10,"484 1st St, New York City, NY 10001" -162826,USB-C Charging Cable,2,11.95,03/22/19 11:30,"172 Park St, Seattle, WA 98101" -162827,AA Batteries (4-pack),1,3.84,03/12/19 09:25,"91 Forest St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -162828,Apple Airpods Headphones,1,150,03/28/19 12:35,"255 Forest St, Portland, OR 97035" -162829,ThinkPad Laptop,1,999.99,03/02/19 14:53,"743 Walnut St, Los Angeles, CA 90001" -162830,Bose SoundSport Headphones,1,99.99,03/20/19 08:42,"284 Chestnut St, Boston, MA 02215" -162831,Wired Headphones,1,11.99,03/05/19 19:53,"943 Ridge St, Seattle, WA 98101" -162832,Apple Airpods Headphones,1,150,03/13/19 22:35,"946 Center St, Los Angeles, CA 90001" -162833,Flatscreen TV,1,300,03/28/19 20:49,"764 Sunset St, Boston, MA 02215" -162834,Bose SoundSport Headphones,1,99.99,03/05/19 09:24,"743 1st St, San Francisco, CA 94016" -162835,Apple Airpods Headphones,1,150,03/15/19 12:31,"190 Chestnut St, Portland, OR 97035" -162836,Google Phone,1,600,03/26/19 21:18,"562 9th St, New York City, NY 10001" -162837,USB-C Charging Cable,2,11.95,03/05/19 22:41,"63 Walnut St, Los Angeles, CA 90001" -162838,Wired Headphones,2,11.99,03/02/19 22:33,"306 Walnut St, New York City, NY 10001" -162839,USB-C Charging Cable,1,11.95,03/30/19 07:52,"201 Chestnut St, Austin, TX 73301" -162840,Wired Headphones,1,11.99,03/13/19 15:27,"137 Sunset St, San Francisco, CA 94016" -162841,Wired Headphones,1,11.99,03/12/19 12:57,"867 River St, Atlanta, GA 30301" -162842,Flatscreen TV,1,300,03/14/19 14:17,"882 South St, New York City, NY 10001" -162843,Bose SoundSport Headphones,1,99.99,03/29/19 08:53,"721 Sunset St, Dallas, TX 75001" -162844,Lightning Charging Cable,1,14.95,03/02/19 08:31,"991 Pine St, Los Angeles, CA 90001" -162845,Apple Airpods Headphones,1,150,03/04/19 18:24,"68 Park St, San Francisco, CA 94016" -162846,Bose SoundSport Headphones,1,99.99,03/17/19 12:24,"410 Lincoln St, Dallas, TX 75001" -162847,Lightning Charging Cable,1,14.95,03/03/19 19:58,"674 2nd St, Atlanta, GA 30301" -162848,Lightning Charging Cable,1,14.95,03/10/19 21:16,"685 Highland St, San Francisco, CA 94016" -162849,Macbook Pro Laptop,1,1700,03/17/19 09:13,"409 Lake St, San Francisco, CA 94016" -162850,Lightning Charging Cable,1,14.95,03/08/19 17:13,"454 Adams St, Los Angeles, CA 90001" -162851,Apple Airpods Headphones,1,150,03/07/19 11:36,"763 Highland St, Boston, MA 02215" -162852,27in FHD Monitor,1,149.99,03/17/19 15:55,"575 Johnson St, Los Angeles, CA 90001" -162853,Wired Headphones,1,11.99,03/14/19 23:10,"696 Jefferson St, Boston, MA 02215" -162854,iPhone,1,700,03/15/19 10:42,"648 Hickory St, Los Angeles, CA 90001" -162854,Lightning Charging Cable,2,14.95,03/15/19 10:42,"648 Hickory St, Los Angeles, CA 90001" -162855,Apple Airpods Headphones,1,150,03/22/19 08:56,"376 Adams St, Atlanta, GA 30301" -162856,Lightning Charging Cable,1,14.95,03/19/19 09:25,"79 Main St, Austin, TX 73301" -162857,34in Ultrawide Monitor,1,379.99,03/05/19 00:08,"15 Madison St, Los Angeles, CA 90001" -162857,AA Batteries (4-pack),1,3.84,03/05/19 00:08,"15 Madison St, Los Angeles, CA 90001" -162858,USB-C Charging Cable,1,11.95,03/19/19 23:20,"127 Chestnut St, San Francisco, CA 94016" -162859,Bose SoundSport Headphones,1,99.99,03/27/19 18:57,"969 Walnut St, Los Angeles, CA 90001" -162860,USB-C Charging Cable,1,11.95,03/04/19 14:12,"153 Chestnut St, San Francisco, CA 94016" -162861,Apple Airpods Headphones,1,150,03/19/19 19:11,"769 5th St, New York City, NY 10001" -162862,Lightning Charging Cable,1,14.95,03/23/19 07:21,"265 1st St, Boston, MA 02215" -162863,USB-C Charging Cable,2,11.95,03/08/19 16:43,"44 2nd St, New York City, NY 10001" -162864,AA Batteries (4-pack),2,3.84,03/31/19 17:46,"792 Adams St, San Francisco, CA 94016" -162865,Wired Headphones,1,11.99,03/27/19 01:36,"533 Pine St, San Francisco, CA 94016" -162866,AAA Batteries (4-pack),1,2.99,03/26/19 09:24,"43 Hickory St, San Francisco, CA 94016" -162867,USB-C Charging Cable,1,11.95,03/31/19 13:37,"880 Spruce St, Dallas, TX 75001" -162868,27in FHD Monitor,1,149.99,03/04/19 00:39,"106 Willow St, Los Angeles, CA 90001" -162869,AA Batteries (4-pack),1,3.84,03/31/19 13:27,"626 Lake St, New York City, NY 10001" -162870,Wired Headphones,1,11.99,03/23/19 08:12,"782 Adams St, Austin, TX 73301" -162871,Bose SoundSport Headphones,1,99.99,03/16/19 10:06,"606 Chestnut St, New York City, NY 10001" -162872,USB-C Charging Cable,1,11.95,03/18/19 09:22,"881 Adams St, Atlanta, GA 30301" -162873,Flatscreen TV,1,300,03/20/19 16:07,"719 2nd St, New York City, NY 10001" -162874,Apple Airpods Headphones,1,150,03/19/19 15:15,"842 10th St, San Francisco, CA 94016" -162875,Macbook Pro Laptop,1,1700,03/27/19 22:03,"896 Cedar St, Seattle, WA 98101" -162876,AAA Batteries (4-pack),1,2.99,03/11/19 08:29,"671 12th St, San Francisco, CA 94016" -162877,Google Phone,1,600,03/29/19 11:26,"305 Spruce St, New York City, NY 10001" -162877,Bose SoundSport Headphones,1,99.99,03/29/19 11:26,"305 Spruce St, New York City, NY 10001" -162878,Lightning Charging Cable,1,14.95,03/22/19 18:48,"362 Adams St, New York City, NY 10001" -162879,Apple Airpods Headphones,1,150,03/14/19 17:45,"612 Ridge St, Austin, TX 73301" -162880,Wired Headphones,1,11.99,03/17/19 15:02,"927 Pine St, Boston, MA 02215" -162881,Google Phone,1,600,03/02/19 15:07,"403 Chestnut St, Dallas, TX 75001" -162882,34in Ultrawide Monitor,1,379.99,03/12/19 23:10,"345 Forest St, Portland, OR 97035" -162883,Vareebadd Phone,1,400,03/24/19 14:19,"349 Walnut St, New York City, NY 10001" -162883,USB-C Charging Cable,1,11.95,03/24/19 14:19,"349 Walnut St, New York City, NY 10001" -162884,AAA Batteries (4-pack),2,2.99,03/12/19 19:03,"155 Hill St, Seattle, WA 98101" -162885,AAA Batteries (4-pack),3,2.99,03/31/19 23:28,"784 Elm St, Atlanta, GA 30301" -162886,USB-C Charging Cable,2,11.95,03/20/19 10:13,"231 7th St, Los Angeles, CA 90001" -162887,Lightning Charging Cable,1,14.95,03/09/19 17:04,"958 11th St, Atlanta, GA 30301" -162888,USB-C Charging Cable,3,11.95,03/24/19 08:55,"156 West St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -162889,Bose SoundSport Headphones,1,99.99,03/14/19 14:06,"199 1st St, Atlanta, GA 30301" -162890,Flatscreen TV,1,300,03/24/19 20:59,"956 Park St, San Francisco, CA 94016" -162891,AAA Batteries (4-pack),1,2.99,03/27/19 04:01,"992 Pine St, Seattle, WA 98101" -162892,AA Batteries (4-pack),1,3.84,03/12/19 10:58,"753 Adams St, Portland, ME 04101" -162893,Apple Airpods Headphones,1,150,03/19/19 12:37,"722 Jackson St, San Francisco, CA 94016" -162894,AA Batteries (4-pack),2,3.84,03/18/19 23:05,"191 Meadow St, Seattle, WA 98101" -162895,Bose SoundSport Headphones,1,99.99,03/15/19 20:06,"924 Church St, San Francisco, CA 94016" -162896,Wired Headphones,1,11.99,03/14/19 18:01,"847 Center St, Boston, MA 02215" -162897,Bose SoundSport Headphones,1,99.99,03/09/19 13:06,"883 Jackson St, San Francisco, CA 94016" -162898,USB-C Charging Cable,1,11.95,03/07/19 12:01,"272 Ridge St, Atlanta, GA 30301" -162899,34in Ultrawide Monitor,1,379.99,03/17/19 19:42,"577 Lincoln St, Dallas, TX 75001" -162900,27in FHD Monitor,1,149.99,03/27/19 05:38,"300 Church St, Seattle, WA 98101" -162901,Lightning Charging Cable,1,14.95,03/13/19 23:24,"803 12th St, Atlanta, GA 30301" -162902,Google Phone,1,600,03/20/19 10:21,"160 Pine St, San Francisco, CA 94016" -162903,AAA Batteries (4-pack),2,2.99,03/27/19 12:02,"901 Lake St, San Francisco, CA 94016" -162904,AA Batteries (4-pack),1,3.84,03/14/19 17:06,"77 River St, New York City, NY 10001" -162905,Apple Airpods Headphones,1,150,03/20/19 18:09,"842 Washington St, Boston, MA 02215" -162906,27in FHD Monitor,1,149.99,03/07/19 18:49,"993 2nd St, Boston, MA 02215" -162907,AA Batteries (4-pack),1,3.84,03/06/19 10:25,"126 Ridge St, Seattle, WA 98101" -162908,Macbook Pro Laptop,1,1700,03/23/19 09:57,"507 1st St, Los Angeles, CA 90001" -162909,27in FHD Monitor,1,149.99,03/17/19 17:50,"319 Lake St, Seattle, WA 98101" -162910,iPhone,1,700,03/10/19 12:42,"816 Pine St, Seattle, WA 98101" -162911,AAA Batteries (4-pack),1,2.99,03/28/19 13:49,"501 Pine St, Los Angeles, CA 90001" -162912,Bose SoundSport Headphones,1,99.99,03/02/19 22:56,"326 4th St, Boston, MA 02215" -162913,AA Batteries (4-pack),3,3.84,03/30/19 19:47,"701 Highland St, New York City, NY 10001" -162914,Google Phone,1,600,03/26/19 17:53,"728 Pine St, New York City, NY 10001" -162915,USB-C Charging Cable,1,11.95,03/11/19 10:09,"905 Meadow St, New York City, NY 10001" -162916,Flatscreen TV,1,300,03/10/19 19:22,"485 South St, New York City, NY 10001" -162917,Apple Airpods Headphones,1,150,03/10/19 12:07,"654 River St, Atlanta, GA 30301" -162918,AA Batteries (4-pack),1,3.84,03/16/19 08:46,"247 Lake St, Austin, TX 73301" -162919,27in FHD Monitor,1,149.99,03/02/19 14:21,"432 Chestnut St, Los Angeles, CA 90001" -162920,AA Batteries (4-pack),1,3.84,03/26/19 22:43,"723 Pine St, Austin, TX 73301" -162921,AAA Batteries (4-pack),1,2.99,03/25/19 18:59,"308 Maple St, Boston, MA 02215" -162922,Bose SoundSport Headphones,1,99.99,03/28/19 15:04,"788 Maple St, Los Angeles, CA 90001" -162923,34in Ultrawide Monitor,1,379.99,03/09/19 00:17,"746 Lakeview St, Atlanta, GA 30301" -162924,AAA Batteries (4-pack),1,2.99,03/02/19 20:27,"971 River St, San Francisco, CA 94016" -162925,Bose SoundSport Headphones,1,99.99,03/24/19 08:15,"994 West St, Los Angeles, CA 90001" -162926,Apple Airpods Headphones,1,150,03/30/19 21:34,"558 South St, Portland, OR 97035" -162927,Apple Airpods Headphones,1,150,03/24/19 19:20,"800 Sunset St, New York City, NY 10001" -162928,AA Batteries (4-pack),1,3.84,03/26/19 22:23,"292 Cedar St, San Francisco, CA 94016" -162929,AAA Batteries (4-pack),2,2.99,03/26/19 15:43,"17 Hickory St, San Francisco, CA 94016" -162930,27in FHD Monitor,1,149.99,03/22/19 14:22,"715 12th St, San Francisco, CA 94016" -162931,Wired Headphones,1,11.99,03/24/19 18:48,"867 Spruce St, Seattle, WA 98101" -162932,Apple Airpods Headphones,1,150,03/04/19 08:41,"227 5th St, Los Angeles, CA 90001" -162933,Bose SoundSport Headphones,1,99.99,03/12/19 12:05,"464 2nd St, Atlanta, GA 30301" -162934,Vareebadd Phone,1,400,03/11/19 10:10,"787 Ridge St, San Francisco, CA 94016" -162934,USB-C Charging Cable,1,11.95,03/11/19 10:10,"787 Ridge St, San Francisco, CA 94016" -162935,USB-C Charging Cable,1,11.95,03/15/19 12:47,"527 Forest St, Atlanta, GA 30301" -162936,AAA Batteries (4-pack),2,2.99,03/13/19 12:46,"900 12th St, San Francisco, CA 94016" -162937,Apple Airpods Headphones,1,150,03/10/19 12:54,"698 Lake St, Seattle, WA 98101" -162938,AAA Batteries (4-pack),1,2.99,03/25/19 06:39,"877 14th St, Los Angeles, CA 90001" -162939,34in Ultrawide Monitor,1,379.99,03/24/19 10:34,"885 4th St, Los Angeles, CA 90001" -162940,ThinkPad Laptop,1,999.99,03/04/19 16:36,"426 Highland St, San Francisco, CA 94016" -162941,AA Batteries (4-pack),2,3.84,03/07/19 07:35,"241 1st St, San Francisco, CA 94016" -162942,Wired Headphones,1,11.99,03/21/19 13:58,"623 7th St, Boston, MA 02215" -162943,iPhone,1,700,03/22/19 19:49,"746 Jefferson St, San Francisco, CA 94016" -162944,27in 4K Gaming Monitor,1,389.99,03/24/19 05:05,"799 Center St, New York City, NY 10001" -162945,Wired Headphones,1,11.99,03/15/19 17:50,"377 Chestnut St, Los Angeles, CA 90001" -162946,Google Phone,1,600,03/19/19 11:12,"709 Walnut St, San Francisco, CA 94016" -162947,Lightning Charging Cable,1,14.95,03/12/19 13:55,"213 Jefferson St, New York City, NY 10001" -162948,Google Phone,1,600,03/13/19 11:24,"508 Chestnut St, Boston, MA 02215" -162949,Flatscreen TV,1,300,03/17/19 17:16,"390 12th St, New York City, NY 10001" -162950,27in 4K Gaming Monitor,1,389.99,03/14/19 10:15,"618 West St, Austin, TX 73301" -162951,USB-C Charging Cable,1,11.95,03/19/19 09:00,"991 Cherry St, San Francisco, CA 94016" -162952,Apple Airpods Headphones,1,150,03/05/19 12:57,"95 6th St, New York City, NY 10001" -162953,Wired Headphones,1,11.99,03/19/19 15:14,"865 Chestnut St, Austin, TX 73301" -162954,USB-C Charging Cable,1,11.95,03/16/19 12:07,"102 Jackson St, San Francisco, CA 94016" -162955,iPhone,1,700,03/01/19 17:56,"151 South St, Seattle, WA 98101" -162955,Lightning Charging Cable,1,14.95,03/01/19 17:56,"151 South St, Seattle, WA 98101" -162956,AAA Batteries (4-pack),1,2.99,03/11/19 17:21,"569 Elm St, Atlanta, GA 30301" -162957,Apple Airpods Headphones,1,150,03/08/19 11:13,"399 South St, Atlanta, GA 30301" -162958,AAA Batteries (4-pack),2,2.99,03/26/19 18:01,"31 River St, Boston, MA 02215" -162959,Wired Headphones,1,11.99,03/01/19 23:21,"52 Sunset St, Atlanta, GA 30301" -162960,USB-C Charging Cable,1,11.95,03/20/19 18:17,"71 Madison St, Los Angeles, CA 90001" -162961,AAA Batteries (4-pack),2,2.99,03/17/19 14:16,"573 7th St, Portland, OR 97035" -162962,AA Batteries (4-pack),2,3.84,03/12/19 19:33,"669 Washington St, Dallas, TX 75001" -162963,Bose SoundSport Headphones,1,99.99,03/18/19 14:29,"695 1st St, Portland, OR 97035" -162964,AAA Batteries (4-pack),1,2.99,03/27/19 17:14,"395 Johnson St, New York City, NY 10001" -162965,Lightning Charging Cable,1,14.95,03/06/19 16:00,"40 Center St, San Francisco, CA 94016" -162966,Wired Headphones,1,11.99,03/20/19 18:13,"115 Center St, San Francisco, CA 94016" -162967,Bose SoundSport Headphones,1,99.99,03/29/19 13:48,"173 5th St, Seattle, WA 98101" -162968,AAA Batteries (4-pack),1,2.99,03/25/19 15:31,"891 14th St, Austin, TX 73301" -162969,Lightning Charging Cable,1,14.95,03/12/19 12:46,"903 Jackson St, San Francisco, CA 94016" -162970,USB-C Charging Cable,1,11.95,03/29/19 18:48,"43 2nd St, Los Angeles, CA 90001" -162971,AAA Batteries (4-pack),2,2.99,03/29/19 19:07,"294 Willow St, Atlanta, GA 30301" -162972,USB-C Charging Cable,1,11.95,03/03/19 18:53,"697 Lakeview St, Portland, ME 04101" -162973,AA Batteries (4-pack),5,3.84,03/04/19 00:08,"650 8th St, Portland, OR 97035" -162974,27in 4K Gaming Monitor,1,389.99,03/29/19 18:43,"879 Meadow St, Seattle, WA 98101" -162975,Lightning Charging Cable,1,14.95,03/08/19 13:53,"721 Main St, New York City, NY 10001" -162976,20in Monitor,1,109.99,03/17/19 02:54,"497 4th St, New York City, NY 10001" -162977,Flatscreen TV,1,300,03/25/19 07:24,"940 South St, Boston, MA 02215" -162978,USB-C Charging Cable,1,11.95,03/21/19 09:27,"310 5th St, Portland, OR 97035" -162979,iPhone,1,700,03/22/19 11:41,"791 13th St, Los Angeles, CA 90001" -162980,AA Batteries (4-pack),1,3.84,03/24/19 19:53,"466 West St, Austin, TX 73301" -162981,AAA Batteries (4-pack),2,2.99,03/08/19 11:08,"743 Sunset St, New York City, NY 10001" -162982,Lightning Charging Cable,1,14.95,03/09/19 05:58,"605 Main St, Portland, OR 97035" -162983,USB-C Charging Cable,1,11.95,03/30/19 14:40,"22 Forest St, Dallas, TX 75001" -162984,Flatscreen TV,1,300,03/06/19 11:51,"675 Pine St, New York City, NY 10001" -162985,Wired Headphones,1,11.99,03/22/19 16:25,"489 Forest St, Los Angeles, CA 90001" -162986,Apple Airpods Headphones,1,150,03/22/19 01:15,"269 Walnut St, Los Angeles, CA 90001" -162987,AA Batteries (4-pack),1,3.84,03/18/19 14:55,"514 River St, New York City, NY 10001" -162988,Google Phone,1,600,03/27/19 17:49,"493 Walnut St, New York City, NY 10001" -162988,Wired Headphones,1,11.99,03/27/19 17:49,"493 Walnut St, New York City, NY 10001" -162989,Wired Headphones,1,11.99,03/06/19 15:46,"683 9th St, Austin, TX 73301" -162990,Google Phone,1,600,03/21/19 10:22,"306 North St, Austin, TX 73301" -162991,Wired Headphones,3,11.99,03/03/19 09:09,"810 Center St, San Francisco, CA 94016" -162992,USB-C Charging Cable,1,11.95,03/04/19 19:19,"720 South St, Dallas, TX 75001" -162993,27in FHD Monitor,1,149.99,03/10/19 20:15,"267 6th St, San Francisco, CA 94016" -162994,Flatscreen TV,1,300,03/14/19 21:37,"981 9th St, Boston, MA 02215" -162995,USB-C Charging Cable,1,11.95,03/18/19 12:38,"178 South St, Los Angeles, CA 90001" -162996,27in 4K Gaming Monitor,1,389.99,03/27/19 16:53,"649 8th St, Atlanta, GA 30301" -162997,Lightning Charging Cable,1,14.95,03/22/19 23:45,"801 9th St, New York City, NY 10001" -162998,Lightning Charging Cable,1,14.95,03/31/19 14:32,"118 14th St, New York City, NY 10001" -162999,Lightning Charging Cable,1,14.95,03/03/19 17:37,"340 Highland St, San Francisco, CA 94016" -163000,AA Batteries (4-pack),1,3.84,03/13/19 14:29,"80 Willow St, San Francisco, CA 94016" -163001,AAA Batteries (4-pack),3,2.99,03/31/19 14:43,"433 Jefferson St, Los Angeles, CA 90001" -,,,,, -163002,Google Phone,1,600,03/08/19 13:19,"896 Church St, Los Angeles, CA 90001" -163002,USB-C Charging Cable,1,11.95,03/08/19 13:19,"896 Church St, Los Angeles, CA 90001" -163003,USB-C Charging Cable,1,11.95,03/22/19 20:42,"304 West St, Atlanta, GA 30301" -163004,AAA Batteries (4-pack),1,2.99,03/16/19 08:25,"966 Center St, Portland, OR 97035" -163005,AA Batteries (4-pack),1,3.84,03/23/19 19:26,"339 Hill St, New York City, NY 10001" -163006,Macbook Pro Laptop,1,1700,03/20/19 14:53,"792 12th St, Atlanta, GA 30301" -163007,Macbook Pro Laptop,1,1700,03/29/19 11:26,"981 Elm St, Los Angeles, CA 90001" -163008,Lightning Charging Cable,1,14.95,03/22/19 21:07,"740 11th St, Seattle, WA 98101" -163009,Wired Headphones,1,11.99,03/19/19 22:01,"181 Chestnut St, Seattle, WA 98101" -163010,AAA Batteries (4-pack),1,2.99,03/10/19 23:02,"514 Washington St, Dallas, TX 75001" -163011,Wired Headphones,3,11.99,03/05/19 18:28,"594 Forest St, Boston, MA 02215" -163012,USB-C Charging Cable,1,11.95,03/30/19 01:13,"74 Meadow St, Austin, TX 73301" -163013,Lightning Charging Cable,1,14.95,03/23/19 18:29,"885 4th St, Los Angeles, CA 90001" -163014,Flatscreen TV,1,300,03/27/19 10:12,"85 North St, San Francisco, CA 94016" -163015,AAA Batteries (4-pack),2,2.99,03/04/19 14:46,"451 Center St, Seattle, WA 98101" -163016,27in FHD Monitor,1,149.99,03/15/19 20:38,"3 West St, Portland, OR 97035" -163017,Lightning Charging Cable,1,14.95,03/23/19 22:42,"380 Highland St, Atlanta, GA 30301" -163018,AAA Batteries (4-pack),1,2.99,03/17/19 14:10,"694 Cedar St, Seattle, WA 98101" -163018,AAA Batteries (4-pack),1,2.99,03/17/19 14:10,"694 Cedar St, Seattle, WA 98101" -163019,Lightning Charging Cable,1,14.95,03/18/19 15:37,"27 Lake St, San Francisco, CA 94016" -163019,34in Ultrawide Monitor,1,379.99,03/18/19 15:37,"27 Lake St, San Francisco, CA 94016" -163020,34in Ultrawide Monitor,1,379.99,03/15/19 09:27,"851 Hill St, Los Angeles, CA 90001" -163021,Apple Airpods Headphones,1,150,03/30/19 21:40,"854 2nd St, Seattle, WA 98101" -163022,Macbook Pro Laptop,1,1700,03/26/19 21:13,"66 Johnson St, New York City, NY 10001" -163023,Flatscreen TV,1,300,03/22/19 19:49,"12 Jefferson St, Los Angeles, CA 90001" -163024,USB-C Charging Cable,1,11.95,03/29/19 14:52,"580 Lincoln St, Dallas, TX 75001" -163025,iPhone,1,700,03/19/19 14:59,"561 7th St, San Francisco, CA 94016" -163026,Google Phone,1,600,03/04/19 09:27,"976 Willow St, Dallas, TX 75001" -163027,AA Batteries (4-pack),1,3.84,03/21/19 19:31,"212 7th St, Seattle, WA 98101" -163028,27in 4K Gaming Monitor,1,389.99,03/28/19 20:45,"596 Cherry St, Dallas, TX 75001" -163029,iPhone,1,700,03/08/19 20:58,"155 Church St, New York City, NY 10001" -163030,Wired Headphones,1,11.99,03/19/19 20:13,"313 Ridge St, Los Angeles, CA 90001" -163031,27in FHD Monitor,1,149.99,03/21/19 14:56,"220 Center St, Los Angeles, CA 90001" -163032,Lightning Charging Cable,1,14.95,03/08/19 14:21,"50 Dogwood St, Boston, MA 02215" -163033,27in FHD Monitor,1,149.99,03/20/19 11:58,"253 9th St, Boston, MA 02215" -163034,Apple Airpods Headphones,1,150,03/06/19 14:38,"860 Lincoln St, San Francisco, CA 94016" -163035,AAA Batteries (4-pack),1,2.99,03/27/19 18:10,"725 Maple St, Austin, TX 73301" -163036,34in Ultrawide Monitor,1,379.99,03/01/19 22:05,"452 Meadow St, Los Angeles, CA 90001" -163037,AAA Batteries (4-pack),1,2.99,03/07/19 19:20,"264 Adams St, Dallas, TX 75001" -163038,Macbook Pro Laptop,1,1700,03/07/19 10:23,"700 Pine St, San Francisco, CA 94016" -163039,AAA Batteries (4-pack),2,2.99,03/06/19 18:10,"382 Cherry St, Boston, MA 02215" -163040,LG Washing Machine,1,600.0,03/27/19 16:01,"86 Madison St, Los Angeles, CA 90001" -163041,USB-C Charging Cable,2,11.95,03/23/19 10:13,"130 Wilson St, Seattle, WA 98101" -163042,ThinkPad Laptop,1,999.99,03/16/19 16:43,"781 Park St, San Francisco, CA 94016" -163043,Wired Headphones,1,11.99,03/19/19 08:35,"5 Main St, Portland, OR 97035" -163044,Lightning Charging Cable,1,14.95,03/21/19 15:36,"829 Dogwood St, Austin, TX 73301" -163045,USB-C Charging Cable,1,11.95,03/02/19 16:07,"761 Maple St, Los Angeles, CA 90001" -163046,AA Batteries (4-pack),2,3.84,03/11/19 11:05,"329 Wilson St, Dallas, TX 75001" -163047,AA Batteries (4-pack),1,3.84,03/13/19 21:39,"140 4th St, San Francisco, CA 94016" -163048,USB-C Charging Cable,1,11.95,03/18/19 12:22,"485 Madison St, Atlanta, GA 30301" -163049,Bose SoundSport Headphones,1,99.99,03/23/19 11:14,"806 10th St, Seattle, WA 98101" -163050,Wired Headphones,1,11.99,03/09/19 09:52,"207 Walnut St, San Francisco, CA 94016" -163051,Wired Headphones,1,11.99,03/02/19 05:40,"537 Elm St, San Francisco, CA 94016" -163052,Lightning Charging Cable,1,14.95,03/19/19 21:33,"774 Cherry St, San Francisco, CA 94016" -163053,USB-C Charging Cable,1,11.95,03/26/19 20:05,"77 Johnson St, San Francisco, CA 94016" -163054,Flatscreen TV,1,300,03/03/19 14:14,"327 13th St, San Francisco, CA 94016" -163055,Bose SoundSport Headphones,1,99.99,03/29/19 14:13,"785 Ridge St, New York City, NY 10001" -163056,iPhone,1,700,03/20/19 12:35,"357 Meadow St, San Francisco, CA 94016" -163056,Lightning Charging Cable,1,14.95,03/20/19 12:35,"357 Meadow St, San Francisco, CA 94016" -163057,Apple Airpods Headphones,1,150,03/27/19 10:17,"407 9th St, Atlanta, GA 30301" -163058,34in Ultrawide Monitor,1,379.99,03/05/19 10:43,"425 Forest St, San Francisco, CA 94016" -163059,Lightning Charging Cable,1,14.95,03/07/19 12:24,"923 Spruce St, Boston, MA 02215" -163060,USB-C Charging Cable,1,11.95,03/11/19 13:36,"220 Cedar St, Los Angeles, CA 90001" -163061,Bose SoundSport Headphones,1,99.99,03/16/19 22:29,"117 Church St, New York City, NY 10001" -163062,Bose SoundSport Headphones,1,99.99,03/13/19 13:50,"178 Sunset St, Dallas, TX 75001" -163063,AA Batteries (4-pack),1,3.84,03/10/19 12:22,"207 Main St, Portland, OR 97035" -163064,Wired Headphones,1,11.99,03/25/19 05:42,"780 Forest St, Austin, TX 73301" -163065,Bose SoundSport Headphones,1,99.99,03/29/19 09:15,"628 Madison St, Boston, MA 02215" -163066,Lightning Charging Cable,1,14.95,03/02/19 20:48,"743 Center St, Boston, MA 02215" -163067,AA Batteries (4-pack),4,3.84,03/22/19 06:29,"70 12th St, San Francisco, CA 94016" -163068,USB-C Charging Cable,1,11.95,03/03/19 21:04,"981 Lakeview St, Atlanta, GA 30301" -163069,Apple Airpods Headphones,1,150,03/26/19 21:14,"980 Church St, Seattle, WA 98101" -163070,Wired Headphones,1,11.99,03/15/19 13:03,"850 Lake St, San Francisco, CA 94016" -163071,27in 4K Gaming Monitor,1,389.99,03/31/19 20:43,"902 Lincoln St, New York City, NY 10001" -163072,USB-C Charging Cable,1,11.95,03/18/19 17:19,"224 Lake St, Seattle, WA 98101" -163073,Google Phone,1,600,03/02/19 18:28,"85 Adams St, Portland, ME 04101" -163074,AAA Batteries (4-pack),1,2.99,03/31/19 19:56,"857 Willow St, Atlanta, GA 30301" -163075,USB-C Charging Cable,1,11.95,03/27/19 16:32,"511 Highland St, San Francisco, CA 94016" -163076,USB-C Charging Cable,1,11.95,03/30/19 16:32,"73 Washington St, Los Angeles, CA 90001" -163077,AAA Batteries (4-pack),1,2.99,03/16/19 14:23,"317 Forest St, New York City, NY 10001" -163078,34in Ultrawide Monitor,1,379.99,03/14/19 11:41,"601 14th St, New York City, NY 10001" -163079,Lightning Charging Cable,1,14.95,03/12/19 20:35,"551 14th St, Los Angeles, CA 90001" -163080,Wired Headphones,1,11.99,03/23/19 15:52,"83 Main St, Dallas, TX 75001" -163081,AA Batteries (4-pack),1,3.84,03/13/19 22:45,"280 Wilson St, Portland, OR 97035" -163082,AA Batteries (4-pack),2,3.84,03/27/19 12:59,"936 Lake St, Los Angeles, CA 90001" -163083,Apple Airpods Headphones,1,150,03/24/19 17:08,"34 6th St, Boston, MA 02215" -163084,Google Phone,1,600,03/06/19 08:40,"594 South St, Boston, MA 02215" -163085,AA Batteries (4-pack),3,3.84,03/28/19 09:32,"354 Pine St, New York City, NY 10001" -163086,USB-C Charging Cable,1,11.95,03/22/19 09:39,"715 Washington St, Los Angeles, CA 90001" -163087,Lightning Charging Cable,1,14.95,03/15/19 16:22,"718 Highland St, Atlanta, GA 30301" -163088,Apple Airpods Headphones,1,150,03/12/19 07:52,"493 Elm St, Boston, MA 02215" -163089,20in Monitor,1,109.99,03/28/19 03:43,"299 Lake St, Dallas, TX 75001" -163090,27in FHD Monitor,1,149.99,03/01/19 18:05,"792 9th St, San Francisco, CA 94016" -163091,AA Batteries (4-pack),1,3.84,03/21/19 20:15,"536 Park St, San Francisco, CA 94016" -163092,AA Batteries (4-pack),1,3.84,03/04/19 23:10,"587 13th St, New York City, NY 10001" -163093,27in FHD Monitor,1,149.99,03/11/19 01:16,"610 Adams St, San Francisco, CA 94016" -163094,AA Batteries (4-pack),1,3.84,03/14/19 13:18,"734 Meadow St, New York City, NY 10001" -163095,LG Washing Machine,1,600.0,03/01/19 17:20,"317 9th St, San Francisco, CA 94016" -163096,AAA Batteries (4-pack),1,2.99,03/14/19 16:34,"254 11th St, Los Angeles, CA 90001" -163097,Macbook Pro Laptop,1,1700,03/01/19 17:55,"340 Lincoln St, New York City, NY 10001" -163098,AA Batteries (4-pack),3,3.84,03/06/19 13:36,"760 Jefferson St, Los Angeles, CA 90001" -163099,AAA Batteries (4-pack),1,2.99,03/26/19 21:21,"641 Cherry St, Dallas, TX 75001" -163100,Apple Airpods Headphones,1,150,03/30/19 07:45,"324 River St, Dallas, TX 75001" -163101,AA Batteries (4-pack),1,3.84,03/31/19 17:04,"297 Wilson St, New York City, NY 10001" -163102,Bose SoundSport Headphones,1,99.99,03/21/19 07:03,"132 7th St, Dallas, TX 75001" -163103,Apple Airpods Headphones,1,150,03/10/19 09:52,"409 Lincoln St, Boston, MA 02215" -163104,AA Batteries (4-pack),1,3.84,03/20/19 16:03,"75 North St, Los Angeles, CA 90001" -163105,Macbook Pro Laptop,1,1700,03/13/19 12:41,"433 9th St, Portland, OR 97035" -163106,USB-C Charging Cable,1,11.95,03/13/19 03:10,"46 Madison St, Austin, TX 73301" -163107,Wired Headphones,1,11.99,03/03/19 17:50,"827 Washington St, Los Angeles, CA 90001" -163108,USB-C Charging Cable,1,11.95,03/12/19 17:27,"250 Walnut St, Portland, OR 97035" -163109,Wired Headphones,1,11.99,03/22/19 19:53,"996 10th St, Portland, ME 04101" -163110,Apple Airpods Headphones,1,150,03/11/19 17:36,"866 Wilson St, Los Angeles, CA 90001" -163111,34in Ultrawide Monitor,1,379.99,03/23/19 12:19,"728 Jackson St, San Francisco, CA 94016" -163112,Macbook Pro Laptop,1,1700,03/28/19 21:14,"783 Meadow St, Atlanta, GA 30301" -163113,Flatscreen TV,1,300,03/19/19 22:18,"842 Hill St, Boston, MA 02215" -163114,Wired Headphones,1,11.99,03/16/19 08:42,"605 West St, Austin, TX 73301" -163115,Google Phone,1,600,03/21/19 18:12,"585 Center St, Boston, MA 02215" -163116,Google Phone,1,600,03/01/19 10:46,"692 North St, Boston, MA 02215" -163117,Wired Headphones,1,11.99,03/11/19 18:52,"661 Highland St, Austin, TX 73301" -163118,27in 4K Gaming Monitor,1,389.99,03/27/19 20:52,"793 4th St, Austin, TX 73301" -163119,AA Batteries (4-pack),1,3.84,03/15/19 09:19,"196 Lakeview St, San Francisco, CA 94016" -163120,Wired Headphones,1,11.99,03/31/19 11:15,"336 Park St, San Francisco, CA 94016" -163121,USB-C Charging Cable,1,11.95,03/09/19 17:19,"777 7th St, Boston, MA 02215" -163122,AAA Batteries (4-pack),1,2.99,03/21/19 05:20,"649 River St, Portland, OR 97035" -163123,AAA Batteries (4-pack),2,2.99,03/11/19 22:15,"760 Lake St, Seattle, WA 98101" -163124,Bose SoundSport Headphones,1,99.99,03/09/19 17:55,"207 8th St, Seattle, WA 98101" -163125,AA Batteries (4-pack),3,3.84,03/21/19 23:10,"991 13th St, Portland, OR 97035" -163126,AA Batteries (4-pack),1,3.84,03/23/19 20:29,"701 4th St, Portland, ME 04101" -163127,Wired Headphones,1,11.99,03/08/19 21:44,"415 Hill St, Boston, MA 02215" -163128,AA Batteries (4-pack),1,3.84,03/22/19 13:21,"344 12th St, Dallas, TX 75001" -163129,USB-C Charging Cable,1,11.95,03/07/19 03:22,"481 Willow St, San Francisco, CA 94016" -163130,Flatscreen TV,1,300,03/03/19 19:49,"341 South St, Boston, MA 02215" -163131,Macbook Pro Laptop,1,1700,03/04/19 21:51,"554 Adams St, Portland, OR 97035" -163132,AA Batteries (4-pack),1,3.84,03/29/19 18:51,"312 Meadow St, Los Angeles, CA 90001" -163133,Lightning Charging Cable,1,14.95,03/08/19 16:27,"267 Highland St, New York City, NY 10001" -163133,USB-C Charging Cable,1,11.95,03/08/19 16:27,"267 Highland St, New York City, NY 10001" -163134,AA Batteries (4-pack),1,3.84,03/02/19 08:34,"772 Willow St, San Francisco, CA 94016" -163135,34in Ultrawide Monitor,1,379.99,03/03/19 16:11,"290 13th St, Seattle, WA 98101" -163136,Lightning Charging Cable,1,14.95,03/26/19 13:17,"862 2nd St, Atlanta, GA 30301" -163137,Lightning Charging Cable,1,14.95,03/09/19 11:13,"796 Forest St, Austin, TX 73301" -163138,USB-C Charging Cable,1,11.95,03/06/19 16:14,"392 Lincoln St, Portland, OR 97035" -163139,Macbook Pro Laptop,1,1700,03/24/19 10:44,"150 Highland St, New York City, NY 10001" -163140,AA Batteries (4-pack),2,3.84,03/30/19 22:51,"892 Johnson St, San Francisco, CA 94016" -163141,AAA Batteries (4-pack),1,2.99,03/17/19 01:38,"145 Spruce St, San Francisco, CA 94016" -163142,iPhone,1,700,03/11/19 08:57,"255 Elm St, New York City, NY 10001" -163143,AA Batteries (4-pack),1,3.84,03/03/19 11:16,"699 North St, Atlanta, GA 30301" -163144,iPhone,1,700,03/27/19 23:50,"160 West St, Dallas, TX 75001" -163144,Lightning Charging Cable,1,14.95,03/27/19 23:50,"160 West St, Dallas, TX 75001" -163145,AAA Batteries (4-pack),1,2.99,03/10/19 21:43,"664 Hill St, San Francisco, CA 94016" -163146,34in Ultrawide Monitor,1,379.99,03/10/19 06:18,"184 South St, Dallas, TX 75001" -163147,AAA Batteries (4-pack),1,2.99,03/01/19 15:19,"759 7th St, Seattle, WA 98101" -163148,27in FHD Monitor,1,149.99,03/31/19 18:51,"448 Spruce St, Los Angeles, CA 90001" -163149,Google Phone,1,600,03/29/19 20:36,"426 Elm St, Boston, MA 02215" -163149,USB-C Charging Cable,1,11.95,03/29/19 20:36,"426 Elm St, Boston, MA 02215" -163149,Bose SoundSport Headphones,1,99.99,03/29/19 20:36,"426 Elm St, Boston, MA 02215" -163150,AA Batteries (4-pack),2,3.84,03/08/19 12:50,"121 Washington St, San Francisco, CA 94016" -163151,27in FHD Monitor,1,149.99,03/04/19 19:21,"609 6th St, Boston, MA 02215" -163152,Lightning Charging Cable,2,14.95,03/23/19 10:36,"849 Washington St, New York City, NY 10001" -163153,USB-C Charging Cable,1,11.95,03/19/19 17:29,"107 12th St, Dallas, TX 75001" -163154,AA Batteries (4-pack),1,3.84,03/01/19 10:20,"538 Lincoln St, Seattle, WA 98101" -163155,27in 4K Gaming Monitor,1,389.99,03/21/19 13:44,"265 1st St, Dallas, TX 75001" -163156,Macbook Pro Laptop,1,1700,03/11/19 13:25,"635 Church St, Los Angeles, CA 90001" -163157,Lightning Charging Cable,1,14.95,03/05/19 11:29,"123 Walnut St, San Francisco, CA 94016" -163158,USB-C Charging Cable,2,11.95,03/21/19 17:34,"989 5th St, San Francisco, CA 94016" -163159,USB-C Charging Cable,1,11.95,03/29/19 13:34,"849 Lakeview St, Atlanta, GA 30301" -163160,Lightning Charging Cable,1,14.95,03/27/19 19:17,"28 Spruce St, Austin, TX 73301" -163161,Google Phone,1,600,03/12/19 18:09,"259 Park St, Portland, OR 97035" -163162,USB-C Charging Cable,1,11.95,03/11/19 13:18,"823 Walnut St, San Francisco, CA 94016" -163163,Google Phone,1,600,03/14/19 18:26,"805 Lakeview St, Boston, MA 02215" -163164,Wired Headphones,1,11.99,03/26/19 01:53,"724 Lake St, San Francisco, CA 94016" -163164,ThinkPad Laptop,1,999.99,03/26/19 01:53,"724 Lake St, San Francisco, CA 94016" -163165,Wired Headphones,2,11.99,03/24/19 18:18,"206 Highland St, Atlanta, GA 30301" -163166,34in Ultrawide Monitor,1,379.99,03/19/19 23:08,"176 9th St, San Francisco, CA 94016" -163167,Lightning Charging Cable,1,14.95,03/13/19 23:02,"240 Walnut St, Atlanta, GA 30301" -163168,AAA Batteries (4-pack),1,2.99,03/24/19 14:06,"801 Johnson St, San Francisco, CA 94016" -163169,Wired Headphones,1,11.99,03/13/19 22:30,"839 Cherry St, San Francisco, CA 94016" -163170,34in Ultrawide Monitor,1,379.99,03/02/19 11:28,"575 Spruce St, San Francisco, CA 94016" -163171,Wired Headphones,2,11.99,03/29/19 08:51,"974 West St, Austin, TX 73301" -163171,Flatscreen TV,1,300,03/29/19 08:51,"974 West St, Austin, TX 73301" -163172,AA Batteries (4-pack),1,3.84,03/13/19 13:52,"411 Lincoln St, Los Angeles, CA 90001" -163173,Macbook Pro Laptop,1,1700,03/22/19 16:12,"387 1st St, San Francisco, CA 94016" -163174,34in Ultrawide Monitor,1,379.99,03/31/19 11:53,"379 Jackson St, Seattle, WA 98101" -163175,USB-C Charging Cable,1,11.95,03/24/19 17:14,"683 Meadow St, San Francisco, CA 94016" -163176,ThinkPad Laptop,1,999.99,03/21/19 20:49,"142 Hickory St, Los Angeles, CA 90001" -163177,Lightning Charging Cable,1,14.95,03/05/19 13:33,"528 Lakeview St, New York City, NY 10001" -163178,AA Batteries (4-pack),1,3.84,03/01/19 12:07,"636 6th St, Atlanta, GA 30301" -163179,AA Batteries (4-pack),1,3.84,03/01/19 19:36,"255 6th St, Austin, TX 73301" -163180,27in FHD Monitor,1,149.99,03/29/19 14:21,"482 Cherry St, New York City, NY 10001" -163181,34in Ultrawide Monitor,1,379.99,03/15/19 21:51,"45 13th St, Portland, OR 97035" -163182,Lightning Charging Cable,1,14.95,03/01/19 23:56,"331 Maple St, San Francisco, CA 94016" -163183,USB-C Charging Cable,2,11.95,03/21/19 21:35,"96 Chestnut St, San Francisco, CA 94016" -163184,Lightning Charging Cable,1,14.95,03/29/19 20:41,"883 Lakeview St, New York City, NY 10001" -163185,Lightning Charging Cable,1,14.95,03/22/19 02:25,"655 4th St, San Francisco, CA 94016" -163186,AA Batteries (4-pack),1,3.84,03/14/19 11:58,"428 2nd St, Boston, MA 02215" -163187,Flatscreen TV,1,300,03/29/19 19:37,"989 Spruce St, San Francisco, CA 94016" -163188,USB-C Charging Cable,1,11.95,03/02/19 10:58,"144 6th St, New York City, NY 10001" -163189,Bose SoundSport Headphones,1,99.99,03/03/19 11:33,"688 5th St, Dallas, TX 75001" -163190,Bose SoundSport Headphones,1,99.99,03/06/19 20:58,"22 Willow St, San Francisco, CA 94016" -163191,Apple Airpods Headphones,1,150,03/16/19 11:22,"965 7th St, Los Angeles, CA 90001" -163192,AA Batteries (4-pack),1,3.84,03/23/19 13:27,"785 9th St, Dallas, TX 75001" -163193,USB-C Charging Cable,1,11.95,03/09/19 09:01,"499 Willow St, San Francisco, CA 94016" -163194,Wired Headphones,1,11.99,03/15/19 19:24,"275 11th St, Boston, MA 02215" -163195,iPhone,1,700,03/17/19 23:34,"289 11th St, San Francisco, CA 94016" -163196,Lightning Charging Cable,1,14.95,03/25/19 12:30,"666 1st St, Boston, MA 02215" -163197,AAA Batteries (4-pack),1,2.99,03/20/19 17:06,"300 1st St, San Francisco, CA 94016" -163198,Apple Airpods Headphones,1,150,03/17/19 11:45,"944 Hickory St, Atlanta, GA 30301" -163199,Lightning Charging Cable,1,14.95,03/17/19 14:19,"963 Dogwood St, New York City, NY 10001" -163200,AA Batteries (4-pack),3,3.84,03/20/19 16:23,"788 Cedar St, New York City, NY 10001" -163201,Vareebadd Phone,1,400,03/06/19 16:37,"78 Johnson St, Seattle, WA 98101" -163201,USB-C Charging Cable,1,11.95,03/06/19 16:37,"78 Johnson St, Seattle, WA 98101" -163202,Wired Headphones,1,11.99,03/04/19 17:58,"483 13th St, San Francisco, CA 94016" -163203,27in 4K Gaming Monitor,1,389.99,03/24/19 17:15,"47 Jackson St, New York City, NY 10001" -163204,27in FHD Monitor,1,149.99,03/20/19 13:27,"325 Main St, Los Angeles, CA 90001" -163205,USB-C Charging Cable,1,11.95,03/15/19 18:00,"803 Park St, Dallas, TX 75001" -163206,AA Batteries (4-pack),2,3.84,03/15/19 08:05,"47 Cherry St, Boston, MA 02215" -163207,Lightning Charging Cable,1,14.95,03/15/19 18:28,"931 Maple St, Los Angeles, CA 90001" -163208,USB-C Charging Cable,1,11.95,03/08/19 14:28,"752 Willow St, Seattle, WA 98101" -163208,34in Ultrawide Monitor,1,379.99,03/08/19 14:28,"752 Willow St, Seattle, WA 98101" -163209,Bose SoundSport Headphones,1,99.99,03/24/19 20:17,"866 14th St, Boston, MA 02215" -163210,USB-C Charging Cable,1,11.95,03/21/19 21:54,"956 River St, Los Angeles, CA 90001" -163211,iPhone,1,700,03/31/19 18:41,"231 North St, Seattle, WA 98101" -163211,Wired Headphones,1,11.99,03/31/19 18:41,"231 North St, Seattle, WA 98101" -163212,AAA Batteries (4-pack),1,2.99,03/08/19 12:38,"218 Cedar St, Los Angeles, CA 90001" -163213,Bose SoundSport Headphones,1,99.99,03/29/19 18:18,"542 Sunset St, Dallas, TX 75001" -163213,27in FHD Monitor,1,149.99,03/29/19 18:18,"542 Sunset St, Dallas, TX 75001" -163214,Flatscreen TV,1,300,03/04/19 19:43,"3 Spruce St, New York City, NY 10001" -163215,Apple Airpods Headphones,1,150,03/18/19 14:53,"636 Wilson St, New York City, NY 10001" -163216,iPhone,1,700,03/12/19 21:10,"184 Chestnut St, Seattle, WA 98101" -163217,Wired Headphones,2,11.99,03/09/19 16:59,"467 1st St, Portland, OR 97035" -163218,USB-C Charging Cable,1,11.95,03/10/19 19:41,"589 Ridge St, San Francisco, CA 94016" -163219,AA Batteries (4-pack),2,3.84,03/09/19 23:45,"929 Spruce St, New York City, NY 10001" -163220,Google Phone,1,600,03/01/19 17:42,"380 Lakeview St, Seattle, WA 98101" -163221,AAA Batteries (4-pack),3,2.99,03/17/19 09:57,"167 Highland St, Los Angeles, CA 90001" -163222,20in Monitor,1,109.99,03/03/19 12:18,"399 South St, Seattle, WA 98101" -163223,AA Batteries (4-pack),1,3.84,03/07/19 16:07,"777 Dogwood St, Austin, TX 73301" -163224,27in 4K Gaming Monitor,1,389.99,03/10/19 22:11,"508 13th St, Boston, MA 02215" -163225,Lightning Charging Cable,1,14.95,03/13/19 21:02,"712 8th St, Austin, TX 73301" -163226,Lightning Charging Cable,1,14.95,03/10/19 18:25,"735 Cherry St, Atlanta, GA 30301" -163227,AA Batteries (4-pack),1,3.84,03/23/19 11:34,"136 Spruce St, Boston, MA 02215" -163228,Wired Headphones,2,11.99,03/17/19 08:40,"337 Ridge St, Boston, MA 02215" -163229,USB-C Charging Cable,1,11.95,03/19/19 12:58,"594 South St, Boston, MA 02215" -163230,Flatscreen TV,1,300,03/11/19 14:52,"115 Ridge St, San Francisco, CA 94016" -163231,20in Monitor,1,109.99,03/16/19 19:14,"121 North St, San Francisco, CA 94016" -163232,27in FHD Monitor,1,149.99,03/13/19 10:04,"922 Wilson St, San Francisco, CA 94016" -163233,AA Batteries (4-pack),1,3.84,03/10/19 09:16,"302 Church St, San Francisco, CA 94016" -163234,Lightning Charging Cable,1,14.95,03/28/19 12:02,"432 Pine St, San Francisco, CA 94016" -163235,Google Phone,1,600,03/17/19 03:17,"739 7th St, San Francisco, CA 94016" -163236,Google Phone,1,600,03/10/19 20:26,"663 2nd St, Portland, OR 97035" -163236,Bose SoundSport Headphones,1,99.99,03/10/19 20:26,"663 2nd St, Portland, OR 97035" -163237,AA Batteries (4-pack),1,3.84,03/17/19 04:33,"489 Park St, Boston, MA 02215" -163238,AA Batteries (4-pack),1,3.84,03/07/19 20:29,"621 10th St, Seattle, WA 98101" -163239,Bose SoundSport Headphones,1,99.99,03/04/19 00:46,"193 8th St, San Francisco, CA 94016" -163240,Bose SoundSport Headphones,1,99.99,03/14/19 15:21,"754 12th St, Seattle, WA 98101" -163241,AA Batteries (4-pack),1,3.84,03/18/19 13:48,"506 11th St, Dallas, TX 75001" -163242,USB-C Charging Cable,1,11.95,03/14/19 14:53,"76 Washington St, Seattle, WA 98101" -163243,Lightning Charging Cable,1,14.95,03/14/19 22:06,"769 Sunset St, San Francisco, CA 94016" -163244,Google Phone,1,600,03/05/19 09:09,"174 7th St, San Francisco, CA 94016" -163245,Google Phone,1,600,03/24/19 07:08,"473 13th St, New York City, NY 10001" -163246,AAA Batteries (4-pack),2,2.99,03/31/19 16:49,"614 Park St, Los Angeles, CA 90001" -163247,Flatscreen TV,1,300,03/25/19 14:58,"18 Maple St, Atlanta, GA 30301" -163248,iPhone,1,700,03/12/19 20:27,"315 14th St, Austin, TX 73301" -163249,AA Batteries (4-pack),1,3.84,03/22/19 07:55,"464 1st St, New York City, NY 10001" -163250,34in Ultrawide Monitor,1,379.99,03/10/19 16:32,"733 7th St, New York City, NY 10001" -163251,Macbook Pro Laptop,1,1700,03/14/19 15:13,"316 Cherry St, Dallas, TX 75001" -163252,USB-C Charging Cable,1,11.95,03/02/19 19:01,"105 Willow St, Atlanta, GA 30301" -163253,27in FHD Monitor,1,149.99,03/20/19 18:04,"706 Madison St, Boston, MA 02215" -163254,AAA Batteries (4-pack),1,2.99,03/06/19 19:56,"630 1st St, San Francisco, CA 94016" -163255,USB-C Charging Cable,1,11.95,03/13/19 17:44,"973 South St, San Francisco, CA 94016" -163256,Lightning Charging Cable,1,14.95,03/23/19 21:01,"669 Washington St, San Francisco, CA 94016" -163257,iPhone,1,700,03/05/19 15:18,"647 12th St, San Francisco, CA 94016" -163257,Apple Airpods Headphones,1,150,03/05/19 15:18,"647 12th St, San Francisco, CA 94016" -163257,Wired Headphones,1,11.99,03/05/19 15:18,"647 12th St, San Francisco, CA 94016" -163258,Wired Headphones,1,11.99,03/27/19 11:34,"394 14th St, San Francisco, CA 94016" -163259,Wired Headphones,1,11.99,03/17/19 18:26,"348 Washington St, Boston, MA 02215" -163260,Apple Airpods Headphones,1,150,03/11/19 11:40,"460 2nd St, New York City, NY 10001" -163261,USB-C Charging Cable,1,11.95,03/13/19 12:50,"447 Meadow St, Atlanta, GA 30301" -163262,AA Batteries (4-pack),1,3.84,03/08/19 12:41,"216 Church St, New York City, NY 10001" -163263,Apple Airpods Headphones,1,150,03/20/19 11:58,"395 Cherry St, Boston, MA 02215" -163264,USB-C Charging Cable,1,11.95,03/28/19 14:47,"732 13th St, Portland, OR 97035" -163265,AA Batteries (4-pack),1,3.84,03/04/19 16:41,"883 6th St, San Francisco, CA 94016" -163266,27in 4K Gaming Monitor,1,389.99,03/24/19 20:18,"951 Lincoln St, Seattle, WA 98101" -163267,AAA Batteries (4-pack),1,2.99,03/02/19 06:14,"857 Highland St, Austin, TX 73301" -163268,AAA Batteries (4-pack),1,2.99,03/21/19 18:24,"482 13th St, San Francisco, CA 94016" -163269,USB-C Charging Cable,1,11.95,03/16/19 20:17,"935 North St, San Francisco, CA 94016" -163270,AAA Batteries (4-pack),1,2.99,03/05/19 16:58,"943 Hickory St, New York City, NY 10001" -163271,USB-C Charging Cable,1,11.95,03/12/19 01:50,"651 11th St, Seattle, WA 98101" -163272,USB-C Charging Cable,1,11.95,03/06/19 10:54,"451 14th St, Atlanta, GA 30301" -163273,AA Batteries (4-pack),2,3.84,03/04/19 20:07,"79 Ridge St, Los Angeles, CA 90001" -163274,USB-C Charging Cable,1,11.95,03/11/19 19:07,"826 Center St, San Francisco, CA 94016" -163275,27in FHD Monitor,1,149.99,03/27/19 11:09,"618 14th St, San Francisco, CA 94016" -163276,Wired Headphones,1,11.99,03/26/19 16:52,"204 5th St, San Francisco, CA 94016" -163277,AA Batteries (4-pack),2,3.84,03/30/19 10:02,"95 Elm St, Los Angeles, CA 90001" -163278,Bose SoundSport Headphones,1,99.99,03/18/19 16:59,"457 Maple St, San Francisco, CA 94016" -163279,Wired Headphones,1,11.99,03/27/19 12:33,"332 5th St, Boston, MA 02215" -163280,USB-C Charging Cable,1,11.95,03/01/19 14:46,"526 Elm St, San Francisco, CA 94016" -163281,Lightning Charging Cable,1,14.95,03/05/19 12:34,"600 4th St, Austin, TX 73301" -163282,AAA Batteries (4-pack),1,2.99,03/25/19 21:13,"870 Lakeview St, San Francisco, CA 94016" -163283,27in 4K Gaming Monitor,1,389.99,03/29/19 19:43,"112 Lincoln St, Los Angeles, CA 90001" -163284,AA Batteries (4-pack),1,3.84,03/16/19 13:16,"671 Jefferson St, Los Angeles, CA 90001" -163285,USB-C Charging Cable,1,11.95,03/06/19 18:55,"754 13th St, Boston, MA 02215" -163286,Wired Headphones,1,11.99,03/21/19 03:17,"398 1st St, San Francisco, CA 94016" -163287,AAA Batteries (4-pack),1,2.99,03/01/19 13:10,"811 4th St, San Francisco, CA 94016" -163288,20in Monitor,1,109.99,03/07/19 12:47,"136 North St, San Francisco, CA 94016" -163289,iPhone,1,700,03/10/19 09:22,"851 6th St, Austin, TX 73301" -163290,USB-C Charging Cable,1,11.95,03/28/19 15:08,"500 10th St, San Francisco, CA 94016" -163291,AAA Batteries (4-pack),1,2.99,03/02/19 19:13,"656 Jefferson St, San Francisco, CA 94016" -163292,AAA Batteries (4-pack),1,2.99,03/23/19 11:17,"469 10th St, San Francisco, CA 94016" -163293,AAA Batteries (4-pack),1,2.99,03/29/19 11:54,"209 Jackson St, San Francisco, CA 94016" -163294,Wired Headphones,1,11.99,03/17/19 20:40,"996 Forest St, Dallas, TX 75001" -163295,AA Batteries (4-pack),1,3.84,03/16/19 11:03,"535 West St, San Francisco, CA 94016" -163296,Wired Headphones,1,11.99,03/08/19 17:03,"137 Jefferson St, Atlanta, GA 30301" -163297,AA Batteries (4-pack),1,3.84,03/07/19 01:12,"184 12th St, San Francisco, CA 94016" -163298,Macbook Pro Laptop,1,1700,03/22/19 16:10,"796 Hickory St, San Francisco, CA 94016" -163299,27in 4K Gaming Monitor,1,389.99,03/26/19 12:55,"613 7th St, Dallas, TX 75001" -163300,AA Batteries (4-pack),3,3.84,03/06/19 22:26,"651 Jackson St, Dallas, TX 75001" -163301,Bose SoundSport Headphones,1,99.99,03/31/19 09:36,"84 Washington St, Atlanta, GA 30301" -163302,AA Batteries (4-pack),1,3.84,03/03/19 12:03,"812 Park St, Atlanta, GA 30301" -163303,AAA Batteries (4-pack),2,2.99,03/05/19 11:43,"166 Lake St, Atlanta, GA 30301" -163304,AA Batteries (4-pack),1,3.84,03/24/19 19:41,"660 North St, San Francisco, CA 94016" -163305,Lightning Charging Cable,1,14.95,03/24/19 17:05,"676 12th St, Seattle, WA 98101" -163306,AA Batteries (4-pack),1,3.84,03/17/19 18:29,"75 Maple St, Los Angeles, CA 90001" -163307,AA Batteries (4-pack),1,3.84,03/14/19 10:30,"956 6th St, Los Angeles, CA 90001" -163308,AA Batteries (4-pack),2,3.84,03/05/19 12:21,"831 Lincoln St, Boston, MA 02215" -163309,AA Batteries (4-pack),1,3.84,03/23/19 08:17,"417 5th St, Dallas, TX 75001" -163310,Lightning Charging Cable,1,14.95,03/30/19 13:36,"824 1st St, Boston, MA 02215" -163311,iPhone,1,700,03/28/19 13:12,"46 Washington St, San Francisco, CA 94016" -163312,AA Batteries (4-pack),1,3.84,03/08/19 13:33,"653 Willow St, New York City, NY 10001" -163313,Lightning Charging Cable,1,14.95,03/14/19 09:15,"575 West St, San Francisco, CA 94016" -163314,Wired Headphones,1,11.99,03/06/19 21:45,"566 Sunset St, Seattle, WA 98101" -163315,Lightning Charging Cable,1,14.95,03/15/19 20:42,"312 Highland St, New York City, NY 10001" -163316,Bose SoundSport Headphones,1,99.99,03/03/19 13:49,"714 North St, Atlanta, GA 30301" -163317,Bose SoundSport Headphones,1,99.99,03/25/19 16:22,"262 Lake St, Boston, MA 02215" -163318,Macbook Pro Laptop,1,1700,03/31/19 19:19,"736 Adams St, San Francisco, CA 94016" -163319,Wired Headphones,1,11.99,03/20/19 14:23,"58 14th St, Seattle, WA 98101" -163320,USB-C Charging Cable,1,11.95,03/09/19 19:06,"459 Dogwood St, New York City, NY 10001" -163321,AAA Batteries (4-pack),1,2.99,03/22/19 08:34,"31 12th St, San Francisco, CA 94016" -163322,Bose SoundSport Headphones,1,99.99,03/14/19 13:53,"814 8th St, Dallas, TX 75001" -163323,Bose SoundSport Headphones,1,99.99,03/27/19 19:33,"539 4th St, Portland, OR 97035" -163324,Wired Headphones,2,11.99,03/15/19 17:32,"855 Washington St, Seattle, WA 98101" -163325,27in FHD Monitor,1,149.99,03/10/19 23:13,"178 Lincoln St, San Francisco, CA 94016" -163326,Lightning Charging Cable,1,14.95,03/07/19 02:25,"591 4th St, Dallas, TX 75001" -163327,Bose SoundSport Headphones,1,99.99,03/03/19 08:11,"949 Jackson St, San Francisco, CA 94016" -163328,Lightning Charging Cable,1,14.95,03/11/19 16:09,"656 Lake St, New York City, NY 10001" -163329,AA Batteries (4-pack),1,3.84,03/08/19 17:40,"556 10th St, Atlanta, GA 30301" -163330,USB-C Charging Cable,1,11.95,03/23/19 21:34,"292 12th St, Los Angeles, CA 90001" -163331,Google Phone,1,600,03/17/19 15:32,"71 Ridge St, New York City, NY 10001" -163332,USB-C Charging Cable,1,11.95,03/01/19 14:37,"114 Pine St, San Francisco, CA 94016" -163333,ThinkPad Laptop,1,999.99,03/02/19 21:03,"929 Jefferson St, San Francisco, CA 94016" -163334,iPhone,1,700,03/19/19 22:47,"213 Willow St, Boston, MA 02215" -163335,AA Batteries (4-pack),2,3.84,03/12/19 03:11,"217 Washington St, Los Angeles, CA 90001" -163336,Bose SoundSport Headphones,1,99.99,03/16/19 13:22,"349 Main St, New York City, NY 10001" -163337,34in Ultrawide Monitor,1,379.99,03/20/19 16:41,"92 Chestnut St, San Francisco, CA 94016" -163338,Lightning Charging Cable,1,14.95,03/10/19 10:35,"8 Elm St, Atlanta, GA 30301" -163339,USB-C Charging Cable,1,11.95,03/05/19 21:39,"475 Center St, Los Angeles, CA 90001" -163340,USB-C Charging Cable,1,11.95,03/18/19 13:11,"781 Washington St, New York City, NY 10001" -163341,Lightning Charging Cable,1,14.95,03/31/19 15:07,"956 Lake St, New York City, NY 10001" -163342,USB-C Charging Cable,1,11.95,03/17/19 09:20,"88 Washington St, Boston, MA 02215" -163343,Google Phone,1,600,03/21/19 06:25,"543 Elm St, San Francisco, CA 94016" -163343,USB-C Charging Cable,1,11.95,03/21/19 06:25,"543 Elm St, San Francisco, CA 94016" -163344,Lightning Charging Cable,1,14.95,03/05/19 21:18,"88 Sunset St, Los Angeles, CA 90001" -163345,Apple Airpods Headphones,1,150,03/09/19 07:41,"583 Washington St, Portland, OR 97035" -163346,Apple Airpods Headphones,1,150,03/06/19 13:25,"661 5th St, Boston, MA 02215" -163347,Apple Airpods Headphones,1,150,03/14/19 22:25,"229 Lakeview St, Portland, OR 97035" -163348,AA Batteries (4-pack),2,3.84,03/04/19 14:16,"786 Madison St, San Francisco, CA 94016" -163349,Lightning Charging Cable,1,14.95,03/14/19 18:46,"267 Center St, Dallas, TX 75001" -163350,20in Monitor,1,109.99,03/08/19 15:53,"715 Hill St, Atlanta, GA 30301" -163351,AAA Batteries (4-pack),1,2.99,03/02/19 16:52,"602 Elm St, Atlanta, GA 30301" -163352,AAA Batteries (4-pack),6,2.99,03/26/19 19:42,"439 Park St, San Francisco, CA 94016" -163353,AAA Batteries (4-pack),1,2.99,03/29/19 20:28,"104 Madison St, Seattle, WA 98101" -163354,Wired Headphones,2,11.99,03/25/19 07:48,"353 6th St, New York City, NY 10001" -163355,Bose SoundSport Headphones,1,99.99,03/20/19 18:15,"914 Lake St, Seattle, WA 98101" -163356,Apple Airpods Headphones,1,150,03/01/19 15:52,"144 Hickory St, Boston, MA 02215" -163357,AAA Batteries (4-pack),5,2.99,03/27/19 16:59,"540 2nd St, San Francisco, CA 94016" -163358,AAA Batteries (4-pack),1,2.99,03/24/19 17:43,"526 Maple St, San Francisco, CA 94016" -163359,AA Batteries (4-pack),1,3.84,03/12/19 10:29,"58 Walnut St, San Francisco, CA 94016" -163360,Macbook Pro Laptop,1,1700,03/16/19 19:30,"518 Cherry St, Boston, MA 02215" -163361,Wired Headphones,1,11.99,03/15/19 14:58,"295 Spruce St, San Francisco, CA 94016" -163362,AAA Batteries (4-pack),1,2.99,03/21/19 23:51,"988 7th St, New York City, NY 10001" -163363,AAA Batteries (4-pack),1,2.99,03/31/19 19:09,"798 10th St, Seattle, WA 98101" -163364,iPhone,1,700,03/15/19 11:26,"573 12th St, Los Angeles, CA 90001" -163365,AAA Batteries (4-pack),1,2.99,03/05/19 13:23,"496 Meadow St, Portland, ME 04101" -163366,Apple Airpods Headphones,1,150,03/11/19 12:52,"202 Cherry St, Boston, MA 02215" -163367,iPhone,1,700,03/07/19 09:44,"397 1st St, Boston, MA 02215" -163368,AAA Batteries (4-pack),1,2.99,03/14/19 16:10,"492 Church St, Los Angeles, CA 90001" -163369,AA Batteries (4-pack),2,3.84,03/09/19 14:41,"244 Jackson St, Boston, MA 02215" -163370,27in FHD Monitor,1,149.99,03/24/19 21:07,"376 Park St, New York City, NY 10001" -163371,Apple Airpods Headphones,1,150,03/20/19 08:17,"870 Jefferson St, Seattle, WA 98101" -163372,iPhone,1,700,03/09/19 00:20,"371 Main St, San Francisco, CA 94016" -163373,ThinkPad Laptop,1,999.99,03/27/19 09:08,"947 Hickory St, New York City, NY 10001" -163374,34in Ultrawide Monitor,1,379.99,03/17/19 09:39,"470 Ridge St, Boston, MA 02215" -163375,iPhone,1,700,03/06/19 22:30,"79 Lakeview St, San Francisco, CA 94016" -163375,Lightning Charging Cable,3,14.95,03/06/19 22:30,"79 Lakeview St, San Francisco, CA 94016" -163375,Apple Airpods Headphones,1,150,03/06/19 22:30,"79 Lakeview St, San Francisco, CA 94016" -163376,iPhone,1,700,03/04/19 15:51,"694 11th St, Dallas, TX 75001" -163377,Lightning Charging Cable,1,14.95,03/06/19 21:25,"538 Dogwood St, Atlanta, GA 30301" -163378,AA Batteries (4-pack),1,3.84,03/08/19 16:49,"338 Ridge St, Austin, TX 73301" -163379,Wired Headphones,1,11.99,03/23/19 20:08,"918 West St, Los Angeles, CA 90001" -163380,AA Batteries (4-pack),1,3.84,03/21/19 00:48,"394 Highland St, San Francisco, CA 94016" -163381,Lightning Charging Cable,1,14.95,03/07/19 17:24,"523 Elm St, Boston, MA 02215" -163382,USB-C Charging Cable,1,11.95,03/29/19 18:01,"21 Adams St, Austin, TX 73301" -163383,Wired Headphones,1,11.99,03/28/19 05:46,"226 Cedar St, San Francisco, CA 94016" -163384,20in Monitor,1,109.99,03/14/19 15:25,"594 9th St, Atlanta, GA 30301" -163385,Apple Airpods Headphones,1,150,03/15/19 19:54,"314 4th St, Los Angeles, CA 90001" -163386,27in FHD Monitor,1,149.99,03/21/19 04:32,"523 Spruce St, San Francisco, CA 94016" -163387,Wired Headphones,1,11.99,03/18/19 20:12,"63 1st St, New York City, NY 10001" -163388,27in 4K Gaming Monitor,1,389.99,03/27/19 08:18,"864 14th St, Los Angeles, CA 90001" -163389,Apple Airpods Headphones,1,150,03/11/19 12:24,"576 6th St, Austin, TX 73301" -163390,AA Batteries (4-pack),1,3.84,03/10/19 14:21,"307 Jefferson St, Atlanta, GA 30301" -163391,Lightning Charging Cable,1,14.95,03/31/19 07:22,"276 Forest St, Seattle, WA 98101" -163392,AAA Batteries (4-pack),1,2.99,03/13/19 11:20,"488 Spruce St, San Francisco, CA 94016" -163393,USB-C Charging Cable,1,11.95,03/23/19 22:38,"590 Hill St, San Francisco, CA 94016" -163394,AAA Batteries (4-pack),1,2.99,03/23/19 10:06,"296 Meadow St, New York City, NY 10001" -163395,27in 4K Gaming Monitor,1,389.99,03/31/19 21:32,"330 Park St, Dallas, TX 75001" -163396,Lightning Charging Cable,2,14.95,03/30/19 18:26,"867 1st St, New York City, NY 10001" -163397,Flatscreen TV,1,300,03/31/19 15:37,"208 2nd St, Los Angeles, CA 90001" -163398,Google Phone,1,600,03/16/19 17:43,"590 5th St, Boston, MA 02215" -163399,Lightning Charging Cable,1,14.95,03/09/19 08:20,"513 2nd St, Atlanta, GA 30301" -163400,Bose SoundSport Headphones,1,99.99,03/17/19 18:54,"266 6th St, New York City, NY 10001" -163401,AA Batteries (4-pack),1,3.84,03/21/19 03:32,"294 Park St, Seattle, WA 98101" -163402,USB-C Charging Cable,1,11.95,03/08/19 10:01,"873 Main St, Los Angeles, CA 90001" -163403,34in Ultrawide Monitor,1,379.99,03/30/19 10:27,"51 11th St, Los Angeles, CA 90001" -163404,AA Batteries (4-pack),1,3.84,03/11/19 21:14,"615 12th St, Dallas, TX 75001" -163405,Wired Headphones,2,11.99,03/24/19 18:55,"431 Lakeview St, New York City, NY 10001" -163406,USB-C Charging Cable,1,11.95,03/31/19 10:53,"335 Pine St, Los Angeles, CA 90001" -163407,27in 4K Gaming Monitor,1,389.99,03/05/19 04:49,"543 7th St, Boston, MA 02215" -163408,34in Ultrawide Monitor,1,379.99,03/27/19 21:57,"104 Lake St, Dallas, TX 75001" -163409,USB-C Charging Cable,1,11.95,03/10/19 13:12,"456 Dogwood St, Boston, MA 02215" -163410,27in FHD Monitor,1,149.99,03/14/19 14:40,"694 13th St, Boston, MA 02215" -163411,Lightning Charging Cable,1,14.95,03/08/19 13:36,"923 11th St, Los Angeles, CA 90001" -163412,Bose SoundSport Headphones,1,99.99,03/23/19 21:16,"679 Center St, Los Angeles, CA 90001" -163413,USB-C Charging Cable,1,11.95,03/08/19 14:04,"125 1st St, Seattle, WA 98101" -163414,iPhone,1,700,03/11/19 16:13,"630 Lake St, Dallas, TX 75001" -163415,iPhone,1,700,03/10/19 23:24,"641 Meadow St, Atlanta, GA 30301" -163416,34in Ultrawide Monitor,1,379.99,03/05/19 12:28,"557 Chestnut St, Seattle, WA 98101" -163417,AA Batteries (4-pack),2,3.84,03/25/19 11:46,"607 South St, Los Angeles, CA 90001" -163418,Lightning Charging Cable,1,14.95,03/16/19 21:45,"311 6th St, Seattle, WA 98101" -163419,27in 4K Gaming Monitor,1,389.99,03/20/19 16:33,"888 Dogwood St, New York City, NY 10001" -163420,Bose SoundSport Headphones,1,99.99,03/24/19 18:22,"685 Lake St, Los Angeles, CA 90001" -163421,Wired Headphones,1,11.99,03/20/19 18:53,"303 Johnson St, Seattle, WA 98101" -163422,USB-C Charging Cable,1,11.95,03/02/19 10:56,"479 11th St, San Francisco, CA 94016" -163423,34in Ultrawide Monitor,1,379.99,03/13/19 21:45,"15 13th St, New York City, NY 10001" -163424,20in Monitor,1,109.99,03/26/19 20:19,"87 12th St, Portland, OR 97035" -163425,Wired Headphones,1,11.99,03/20/19 01:57,"160 Elm St, San Francisco, CA 94016" -163426,Macbook Pro Laptop,1,1700,03/06/19 22:57,"619 1st St, Austin, TX 73301" -163427,Lightning Charging Cable,1,14.95,03/01/19 20:44,"441 Church St, Portland, ME 04101" -163428,Macbook Pro Laptop,1,1700,03/22/19 13:21,"432 North St, San Francisco, CA 94016" -163429,Apple Airpods Headphones,1,150,03/01/19 17:20,"382 Cedar St, San Francisco, CA 94016" -163430,Wired Headphones,1,11.99,03/12/19 13:07,"11 10th St, Portland, ME 04101" -163431,AAA Batteries (4-pack),1,2.99,03/08/19 15:50,"731 South St, Dallas, TX 75001" -163432,USB-C Charging Cable,1,11.95,03/09/19 11:48,"241 Johnson St, Los Angeles, CA 90001" -163433,Lightning Charging Cable,1,14.95,03/17/19 18:16,"885 River St, Dallas, TX 75001" -163434,Apple Airpods Headphones,1,150,03/02/19 21:42,"847 Dogwood St, Seattle, WA 98101" -163435,Apple Airpods Headphones,1,150,03/27/19 16:25,"135 Lakeview St, San Francisco, CA 94016" -163436,AAA Batteries (4-pack),1,2.99,03/09/19 19:59,"193 Church St, Los Angeles, CA 90001" -163437,Lightning Charging Cable,2,14.95,03/22/19 16:08,"20 Lakeview St, San Francisco, CA 94016" -163438,Wired Headphones,1,11.99,03/28/19 18:11,"64 14th St, Atlanta, GA 30301" -163439,AAA Batteries (4-pack),1,2.99,03/26/19 17:09,"359 Chestnut St, Boston, MA 02215" -163440,Apple Airpods Headphones,1,150,03/23/19 23:25,"236 2nd St, Los Angeles, CA 90001" -163441,iPhone,1,700,03/08/19 17:26,"360 Ridge St, Atlanta, GA 30301" -163442,Flatscreen TV,1,300,03/24/19 23:49,"393 Washington St, Seattle, WA 98101" -163443,Flatscreen TV,1,300,03/11/19 12:33,"365 Lincoln St, Portland, ME 04101" -163444,27in 4K Gaming Monitor,1,389.99,03/26/19 17:04,"896 Walnut St, Austin, TX 73301" -163445,USB-C Charging Cable,1,11.95,03/30/19 08:18,"417 Lake St, Dallas, TX 75001" -163446,Bose SoundSport Headphones,1,99.99,03/17/19 22:54,"319 14th St, New York City, NY 10001" -163447,Bose SoundSport Headphones,1,99.99,03/09/19 20:10,"833 6th St, Boston, MA 02215" -163448,Apple Airpods Headphones,1,150,03/02/19 20:43,"725 Main St, Portland, OR 97035" -163449,Wired Headphones,1,11.99,03/26/19 16:59,"11 Chestnut St, San Francisco, CA 94016" -163450,Wired Headphones,1,11.99,03/20/19 02:48,"902 Dogwood St, Atlanta, GA 30301" -163451,Lightning Charging Cable,1,14.95,03/02/19 11:47,"215 Spruce St, San Francisco, CA 94016" -163452,20in Monitor,1,109.99,03/29/19 22:55,"436 Ridge St, Los Angeles, CA 90001" -163453,Wired Headphones,1,11.99,03/03/19 14:58,"17 6th St, Los Angeles, CA 90001" -163454,34in Ultrawide Monitor,1,379.99,03/12/19 21:01,"712 South St, Los Angeles, CA 90001" -163455,AA Batteries (4-pack),1,3.84,03/04/19 20:43,"316 10th St, Austin, TX 73301" -163456,Wired Headphones,1,11.99,03/17/19 12:06,"20 11th St, New York City, NY 10001" -163457,USB-C Charging Cable,1,11.95,03/31/19 16:15,"998 9th St, Boston, MA 02215" -163458,USB-C Charging Cable,1,11.95,03/02/19 00:03,"546 Walnut St, Seattle, WA 98101" -163459,Lightning Charging Cable,1,14.95,03/31/19 18:07,"354 Main St, San Francisco, CA 94016" -163460,AAA Batteries (4-pack),3,2.99,03/23/19 13:43,"580 Wilson St, New York City, NY 10001" -163461,AAA Batteries (4-pack),1,2.99,03/21/19 12:49,"990 12th St, San Francisco, CA 94016" -163462,27in FHD Monitor,1,149.99,03/04/19 11:00,"502 Walnut St, Dallas, TX 75001" -163463,Lightning Charging Cable,1,14.95,03/05/19 00:17,"154 7th St, Los Angeles, CA 90001" -163464,34in Ultrawide Monitor,1,379.99,03/14/19 21:46,"490 8th St, Atlanta, GA 30301" -163465,Wired Headphones,1,11.99,03/21/19 12:11,"147 Meadow St, Los Angeles, CA 90001" -163466,Lightning Charging Cable,1,14.95,03/05/19 10:31,"968 8th St, Atlanta, GA 30301" -163467,27in 4K Gaming Monitor,1,389.99,03/22/19 12:24,"495 Center St, Boston, MA 02215" -163468,AA Batteries (4-pack),1,3.84,03/04/19 14:28,"312 Church St, Austin, TX 73301" -163469,USB-C Charging Cable,1,11.95,03/24/19 17:52,"84 North St, Dallas, TX 75001" -163470,AA Batteries (4-pack),1,3.84,03/29/19 14:56,"594 Walnut St, Los Angeles, CA 90001" -163471,AAA Batteries (4-pack),1,2.99,03/14/19 14:54,"78 Church St, Dallas, TX 75001" -163472,AA Batteries (4-pack),1,3.84,03/08/19 21:44,"538 2nd St, New York City, NY 10001" -163473,ThinkPad Laptop,1,999.99,03/07/19 19:29,"808 Hickory St, Boston, MA 02215" -163474,27in FHD Monitor,1,149.99,03/02/19 18:35,"32 North St, Dallas, TX 75001" -163475,34in Ultrawide Monitor,1,379.99,03/24/19 15:34,"604 4th St, San Francisco, CA 94016" -,,,,, -163476,AA Batteries (4-pack),1,3.84,03/14/19 14:39,"952 Forest St, Los Angeles, CA 90001" -163477,34in Ultrawide Monitor,1,379.99,03/30/19 01:20,"104 Cedar St, Boston, MA 02215" -163478,Bose SoundSport Headphones,1,99.99,03/26/19 20:44,"707 Park St, Portland, ME 04101" -163479,Lightning Charging Cable,1,14.95,03/06/19 13:24,"959 Lincoln St, New York City, NY 10001" -163480,iPhone,1,700,03/02/19 13:48,"206 Hill St, Seattle, WA 98101" -163480,Lightning Charging Cable,1,14.95,03/02/19 13:48,"206 Hill St, Seattle, WA 98101" -163481,Bose SoundSport Headphones,1,99.99,03/04/19 15:21,"891 Maple St, Los Angeles, CA 90001" -163482,34in Ultrawide Monitor,1,379.99,03/02/19 13:26,"636 Pine St, San Francisco, CA 94016" -163483,AA Batteries (4-pack),1,3.84,03/30/19 18:11,"120 Highland St, Los Angeles, CA 90001" -163484,20in Monitor,1,109.99,03/20/19 02:24,"784 Meadow St, San Francisco, CA 94016" -163485,USB-C Charging Cable,1,11.95,03/21/19 19:18,"800 Jackson St, Boston, MA 02215" -163486,Apple Airpods Headphones,1,150,03/23/19 16:32,"405 Lake St, Atlanta, GA 30301" -163487,Lightning Charging Cable,1,14.95,03/11/19 10:42,"747 Chestnut St, Seattle, WA 98101" -163488,Lightning Charging Cable,1,14.95,03/15/19 12:43,"122 10th St, Dallas, TX 75001" -163489,Wired Headphones,1,11.99,03/10/19 12:11,"88 Center St, New York City, NY 10001" -163490,AAA Batteries (4-pack),1,2.99,03/01/19 21:27,"858 Meadow St, Atlanta, GA 30301" -163491,Google Phone,1,600,03/14/19 11:14,"698 Jackson St, New York City, NY 10001" -163492,Bose SoundSport Headphones,1,99.99,03/27/19 10:17,"953 Park St, New York City, NY 10001" -163493,34in Ultrawide Monitor,1,379.99,03/24/19 18:29,"685 Meadow St, Los Angeles, CA 90001" -163494,Flatscreen TV,1,300,03/14/19 19:16,"758 5th St, Boston, MA 02215" -163495,27in FHD Monitor,1,149.99,03/07/19 20:33,"901 Adams St, Boston, MA 02215" -163496,Lightning Charging Cable,1,14.95,03/10/19 18:26,"841 Park St, San Francisco, CA 94016" -163497,Apple Airpods Headphones,1,150,03/18/19 12:20,"15 Spruce St, New York City, NY 10001" -163498,Bose SoundSport Headphones,1,99.99,03/30/19 23:29,"809 5th St, Los Angeles, CA 90001" -163499,USB-C Charging Cable,1,11.95,03/09/19 16:06,"418 10th St, Seattle, WA 98101" -163500,Wired Headphones,1,11.99,03/26/19 19:48,"871 Sunset St, Seattle, WA 98101" -163501,34in Ultrawide Monitor,1,379.99,03/28/19 21:19,"781 5th St, New York City, NY 10001" -163502,Vareebadd Phone,1,400,03/27/19 17:21,"195 11th St, Los Angeles, CA 90001" -163502,Bose SoundSport Headphones,1,99.99,03/27/19 17:21,"195 11th St, Los Angeles, CA 90001" -163503,Wired Headphones,1,11.99,03/01/19 21:18,"869 Forest St, New York City, NY 10001" -163504,AAA Batteries (4-pack),1,2.99,03/22/19 10:11,"310 Madison St, San Francisco, CA 94016" -163505,Lightning Charging Cable,1,14.95,03/29/19 17:21,"824 Jackson St, San Francisco, CA 94016" -163506,USB-C Charging Cable,1,11.95,03/02/19 15:07,"159 Johnson St, Los Angeles, CA 90001" -163507,Vareebadd Phone,1,400,03/22/19 14:52,"673 Maple St, Seattle, WA 98101" -163508,Bose SoundSport Headphones,1,99.99,03/06/19 18:22,"885 North St, Dallas, TX 75001" -163509,AAA Batteries (4-pack),2,2.99,03/06/19 13:17,"954 Pine St, Seattle, WA 98101" -163510,Apple Airpods Headphones,1,150,03/27/19 17:07,"55 Wilson St, San Francisco, CA 94016" -163510,Macbook Pro Laptop,1,1700,03/27/19 17:07,"55 Wilson St, San Francisco, CA 94016" -163511,34in Ultrawide Monitor,1,379.99,03/28/19 16:05,"356 Adams St, Seattle, WA 98101" -163512,AAA Batteries (4-pack),1,2.99,03/26/19 11:46,"47 6th St, Los Angeles, CA 90001" -163513,Bose SoundSport Headphones,1,99.99,03/04/19 17:45,"713 10th St, Seattle, WA 98101" -163514,Lightning Charging Cable,1,14.95,03/20/19 13:08,"871 Cherry St, Dallas, TX 75001" -163515,Apple Airpods Headphones,1,150,03/22/19 21:25,"112 2nd St, Boston, MA 02215" -163516,Wired Headphones,1,11.99,03/13/19 17:11,"715 Spruce St, Seattle, WA 98101" -163517,AAA Batteries (4-pack),1,2.99,03/26/19 16:16,"926 10th St, Atlanta, GA 30301" -163518,USB-C Charging Cable,1,11.95,03/14/19 13:09,"17 Lincoln St, San Francisco, CA 94016" -163519,AAA Batteries (4-pack),1,2.99,03/07/19 19:31,"313 Lakeview St, San Francisco, CA 94016" -163520,USB-C Charging Cable,1,11.95,03/10/19 20:14,"413 11th St, Los Angeles, CA 90001" -163521,Wired Headphones,1,11.99,03/07/19 09:58,"81 10th St, San Francisco, CA 94016" -163522,AAA Batteries (4-pack),1,2.99,03/16/19 14:39,"34 4th St, Los Angeles, CA 90001" -163523,Apple Airpods Headphones,1,150,03/23/19 11:41,"295 6th St, Atlanta, GA 30301" -163524,USB-C Charging Cable,1,11.95,03/27/19 21:53,"991 Lake St, San Francisco, CA 94016" -163525,AAA Batteries (4-pack),1,2.99,03/05/19 09:38,"866 5th St, Boston, MA 02215" -163526,Apple Airpods Headphones,1,150,03/12/19 16:22,"774 Elm St, San Francisco, CA 94016" -163527,34in Ultrawide Monitor,1,379.99,03/22/19 15:21,"542 North St, Atlanta, GA 30301" -163528,Google Phone,1,600,03/21/19 18:28,"509 North St, San Francisco, CA 94016" -163529,Apple Airpods Headphones,1,150,03/21/19 06:13,"657 Church St, San Francisco, CA 94016" -163530,AAA Batteries (4-pack),1,2.99,03/13/19 15:23,"482 Meadow St, San Francisco, CA 94016" -163531,USB-C Charging Cable,1,11.95,03/29/19 19:01,"346 9th St, Austin, TX 73301" -163532,Bose SoundSport Headphones,1,99.99,03/07/19 15:49,"120 Cedar St, Los Angeles, CA 90001" -163533,Google Phone,1,600,03/03/19 15:40,"454 11th St, Los Angeles, CA 90001" -163534,ThinkPad Laptop,1,999.99,03/23/19 18:43,"327 Ridge St, Boston, MA 02215" -163535,Apple Airpods Headphones,1,150,03/26/19 17:51,"505 9th St, Atlanta, GA 30301" -163536,Macbook Pro Laptop,1,1700,03/08/19 16:44,"413 8th St, San Francisco, CA 94016" -163537,Lightning Charging Cable,1,14.95,03/18/19 06:20,"852 10th St, San Francisco, CA 94016" -163538,Lightning Charging Cable,1,14.95,03/23/19 11:03,"882 Wilson St, San Francisco, CA 94016" -163539,Wired Headphones,1,11.99,03/04/19 15:43,"556 Main St, San Francisco, CA 94016" -163540,Apple Airpods Headphones,1,150,03/02/19 20:37,"962 10th St, Los Angeles, CA 90001" -163541,USB-C Charging Cable,1,11.95,03/21/19 09:05,"114 Pine St, Dallas, TX 75001" -163542,iPhone,1,700,03/29/19 15:50,"155 South St, San Francisco, CA 94016" -163543,USB-C Charging Cable,1,11.95,03/31/19 12:44,"93 Walnut St, Atlanta, GA 30301" -163544,Lightning Charging Cable,1,14.95,03/01/19 22:10,"739 Johnson St, Dallas, TX 75001" -163545,Google Phone,1,600,03/02/19 10:15,"302 1st St, San Francisco, CA 94016" -163546,ThinkPad Laptop,1,999.99,03/31/19 20:58,"327 Hickory St, Dallas, TX 75001" -163547,USB-C Charging Cable,2,11.95,03/04/19 18:47,"2 6th St, New York City, NY 10001" -163547,AA Batteries (4-pack),2,3.84,03/04/19 18:47,"2 6th St, New York City, NY 10001" -163548,Bose SoundSport Headphones,1,99.99,03/02/19 17:06,"650 Jackson St, Seattle, WA 98101" -163549,Macbook Pro Laptop,1,1700,03/14/19 11:23,"735 Lincoln St, New York City, NY 10001" -163550,Lightning Charging Cable,1,14.95,03/18/19 12:51,"72 Spruce St, Los Angeles, CA 90001" -163551,Lightning Charging Cable,1,14.95,03/19/19 14:26,"636 North St, Seattle, WA 98101" -163552,Lightning Charging Cable,1,14.95,03/20/19 05:19,"365 Elm St, Dallas, TX 75001" -163553,Lightning Charging Cable,1,14.95,03/27/19 23:40,"647 Johnson St, Boston, MA 02215" -163554,Apple Airpods Headphones,1,150,03/13/19 09:54,"751 Wilson St, San Francisco, CA 94016" -163555,USB-C Charging Cable,1,11.95,03/04/19 01:16,"960 Lakeview St, San Francisco, CA 94016" -163556,Apple Airpods Headphones,1,150,03/27/19 19:09,"911 Walnut St, New York City, NY 10001" -163557,Lightning Charging Cable,1,14.95,03/22/19 22:48,"998 Dogwood St, San Francisco, CA 94016" -163558,USB-C Charging Cable,1,11.95,03/03/19 20:06,"84 Cedar St, Dallas, TX 75001" -163559,Bose SoundSport Headphones,1,99.99,03/25/19 11:06,"391 Highland St, New York City, NY 10001" -163560,AA Batteries (4-pack),1,3.84,03/24/19 14:12,"500 5th St, Portland, ME 04101" -163561,Bose SoundSport Headphones,1,99.99,03/31/19 20:39,"417 River St, San Francisco, CA 94016" -163562,20in Monitor,1,109.99,03/09/19 18:28,"909 Meadow St, Seattle, WA 98101" -163563,ThinkPad Laptop,1,999.99,03/01/19 18:44,"157 South St, San Francisco, CA 94016" -163564,Bose SoundSport Headphones,1,99.99,03/30/19 18:27,"131 Washington St, San Francisco, CA 94016" -163565,AA Batteries (4-pack),1,3.84,03/19/19 22:12,"324 Sunset St, Austin, TX 73301" -163566,Bose SoundSport Headphones,1,99.99,03/14/19 20:57,"356 Cherry St, Portland, OR 97035" -163567,AA Batteries (4-pack),1,3.84,03/04/19 12:11,"904 Pine St, Austin, TX 73301" -163568,Bose SoundSport Headphones,1,99.99,03/14/19 16:33,"934 Highland St, San Francisco, CA 94016" -163569,Lightning Charging Cable,1,14.95,03/23/19 21:16,"627 Center St, Portland, OR 97035" -163570,Bose SoundSport Headphones,1,99.99,03/25/19 13:36,"291 Wilson St, New York City, NY 10001" -163571,AA Batteries (4-pack),1,3.84,03/30/19 01:05,"60 Washington St, Dallas, TX 75001" -163572,Bose SoundSport Headphones,1,99.99,03/21/19 14:33,"996 Willow St, San Francisco, CA 94016" -163573,ThinkPad Laptop,1,999.99,03/21/19 15:51,"388 Ridge St, Portland, ME 04101" -163574,AAA Batteries (4-pack),3,2.99,03/23/19 20:23,"560 Center St, Atlanta, GA 30301" -163575,Bose SoundSport Headphones,1,99.99,03/08/19 23:36,"761 Jefferson St, Seattle, WA 98101" -163576,34in Ultrawide Monitor,1,379.99,03/26/19 19:34,"633 13th St, Los Angeles, CA 90001" -163577,AA Batteries (4-pack),1,3.84,03/09/19 19:08,"801 Hill St, San Francisco, CA 94016" -163578,AA Batteries (4-pack),2,3.84,03/27/19 13:58,"57 Adams St, Boston, MA 02215" -163578,AA Batteries (4-pack),1,3.84,03/27/19 13:58,"57 Adams St, Boston, MA 02215" -163579,Lightning Charging Cable,1,14.95,03/25/19 09:23,"993 Highland St, Austin, TX 73301" -163580,AAA Batteries (4-pack),1,2.99,03/24/19 15:45,"169 Wilson St, Atlanta, GA 30301" -,,,,, -163581,Apple Airpods Headphones,1,150,03/27/19 21:37,"678 Sunset St, San Francisco, CA 94016" -163582,ThinkPad Laptop,1,999.99,03/03/19 13:12,"303 Lake St, San Francisco, CA 94016" -163583,AAA Batteries (4-pack),1,2.99,03/10/19 13:02,"36 10th St, New York City, NY 10001" -163584,Flatscreen TV,1,300,03/18/19 23:57,"634 Maple St, Austin, TX 73301" -163585,Apple Airpods Headphones,1,150,03/05/19 16:51,"128 Lincoln St, Dallas, TX 75001" -163586,Lightning Charging Cable,1,14.95,03/22/19 08:52,"960 Lakeview St, Austin, TX 73301" -163587,Wired Headphones,1,11.99,03/26/19 06:46,"367 Sunset St, New York City, NY 10001" -163588,Bose SoundSport Headphones,1,99.99,03/21/19 09:03,"4 6th St, New York City, NY 10001" -163589,AA Batteries (4-pack),1,3.84,03/01/19 09:54,"402 Lakeview St, Dallas, TX 75001" -163590,iPhone,1,700,03/27/19 20:24,"25 Jackson St, New York City, NY 10001" -163590,Lightning Charging Cable,1,14.95,03/27/19 20:24,"25 Jackson St, New York City, NY 10001" -163591,USB-C Charging Cable,1,11.95,03/23/19 14:51,"128 Meadow St, San Francisco, CA 94016" -163592,AA Batteries (4-pack),1,3.84,03/15/19 17:38,"938 Washington St, Atlanta, GA 30301" -163593,Apple Airpods Headphones,1,150,03/24/19 20:31,"44 11th St, Atlanta, GA 30301" -163594,Bose SoundSport Headphones,1,99.99,03/08/19 15:18,"380 1st St, San Francisco, CA 94016" -163595,Lightning Charging Cable,1,14.95,03/21/19 23:54,"37 Adams St, Los Angeles, CA 90001" -163596,Apple Airpods Headphones,1,150,03/19/19 19:22,"777 12th St, Seattle, WA 98101" -163597,iPhone,1,700,03/09/19 05:00,"85 13th St, Los Angeles, CA 90001" -163598,34in Ultrawide Monitor,1,379.99,03/31/19 01:46,"819 Hill St, Seattle, WA 98101" -163599,Bose SoundSport Headphones,1,99.99,03/22/19 12:43,"833 Park St, San Francisco, CA 94016" -163600,Bose SoundSport Headphones,1,99.99,03/07/19 17:27,"199 West St, Los Angeles, CA 90001" -163601,Lightning Charging Cable,1,14.95,03/11/19 19:52,"582 7th St, San Francisco, CA 94016" -163602,Flatscreen TV,1,300,03/26/19 16:39,"277 12th St, New York City, NY 10001" -163603,Macbook Pro Laptop,1,1700,03/29/19 18:48,"803 Cedar St, Seattle, WA 98101" -163604,USB-C Charging Cable,1,11.95,03/11/19 21:53,"426 12th St, Los Angeles, CA 90001" -163605,Lightning Charging Cable,1,14.95,03/11/19 13:11,"839 13th St, San Francisco, CA 94016" -163606,Google Phone,1,600,03/01/19 09:24,"598 11th St, Portland, OR 97035" -163606,USB-C Charging Cable,1,11.95,03/01/19 09:24,"598 11th St, Portland, OR 97035" -163607,AAA Batteries (4-pack),1,2.99,03/15/19 07:35,"155 Lincoln St, New York City, NY 10001" -163608,Bose SoundSport Headphones,1,99.99,03/02/19 21:16,"461 Adams St, Boston, MA 02215" -163609,LG Washing Machine,1,600.0,03/25/19 10:30,"64 Elm St, Los Angeles, CA 90001" -163610,ThinkPad Laptop,1,999.99,03/01/19 19:54,"423 Main St, Austin, TX 73301" -163611,Wired Headphones,1,11.99,03/11/19 08:55,"752 Washington St, Boston, MA 02215" -163612,AAA Batteries (4-pack),2,2.99,03/27/19 08:10,"915 4th St, New York City, NY 10001" -163613,Bose SoundSport Headphones,1,99.99,03/16/19 10:32,"830 Cedar St, Boston, MA 02215" -163614,AA Batteries (4-pack),1,3.84,03/31/19 10:38,"619 River St, Seattle, WA 98101" -163615,AAA Batteries (4-pack),1,2.99,03/19/19 16:03,"531 Washington St, Los Angeles, CA 90001" -163616,Google Phone,1,600,03/04/19 01:23,"976 4th St, New York City, NY 10001" -163617,USB-C Charging Cable,1,11.95,03/26/19 10:05,"47 Hill St, Boston, MA 02215" -163618,Apple Airpods Headphones,1,150,03/14/19 11:39,"251 South St, Los Angeles, CA 90001" -163619,LG Washing Machine,1,600.0,03/18/19 20:18,"470 12th St, Atlanta, GA 30301" -163620,USB-C Charging Cable,1,11.95,03/01/19 18:47,"685 1st St, Los Angeles, CA 90001" -163621,iPhone,1,700,03/27/19 14:20,"797 Chestnut St, New York City, NY 10001" -163622,Apple Airpods Headphones,1,150,03/18/19 22:13,"604 10th St, Dallas, TX 75001" -163623,27in FHD Monitor,1,149.99,03/08/19 06:07,"665 1st St, Portland, OR 97035" -163624,USB-C Charging Cable,1,11.95,03/05/19 14:06,"88 Jefferson St, Boston, MA 02215" -163625,Wired Headphones,1,11.99,03/02/19 14:46,"312 Madison St, San Francisco, CA 94016" -163626,AA Batteries (4-pack),1,3.84,03/27/19 23:29,"738 6th St, San Francisco, CA 94016" -163627,USB-C Charging Cable,1,11.95,03/13/19 20:56,"228 10th St, Seattle, WA 98101" -163628,AA Batteries (4-pack),1,3.84,03/03/19 21:26,"261 Dogwood St, Dallas, TX 75001" -163629,Google Phone,1,600,03/22/19 18:31,"189 9th St, Los Angeles, CA 90001" -163630,Wired Headphones,1,11.99,03/04/19 15:52,"357 Madison St, San Francisco, CA 94016" -163631,AAA Batteries (4-pack),3,2.99,03/15/19 16:02,"204 12th St, New York City, NY 10001" -163632,Macbook Pro Laptop,1,1700,03/27/19 19:08,"287 Dogwood St, Dallas, TX 75001" -163633,Apple Airpods Headphones,1,150,03/30/19 16:46,"126 Highland St, San Francisco, CA 94016" -163634,Wired Headphones,1,11.99,03/02/19 10:27,"950 West St, Austin, TX 73301" -163635,Bose SoundSport Headphones,1,99.99,03/06/19 22:48,"402 9th St, Atlanta, GA 30301" -163636,AAA Batteries (4-pack),1,2.99,03/28/19 22:31,"17 Johnson St, Dallas, TX 75001" -163637,Lightning Charging Cable,1,14.95,03/10/19 11:26,"486 West St, Seattle, WA 98101" -163638,Wired Headphones,1,11.99,03/01/19 23:45,"683 Madison St, Los Angeles, CA 90001" -163639,27in 4K Gaming Monitor,1,389.99,03/01/19 22:16,"716 Cherry St, Dallas, TX 75001" -163640,Bose SoundSport Headphones,1,99.99,03/02/19 14:46,"539 Hill St, Portland, OR 97035" -163641,ThinkPad Laptop,1,999.99,03/07/19 12:14,"707 Highland St, Austin, TX 73301" -163642,Wired Headphones,1,11.99,03/29/19 19:11,"891 2nd St, Los Angeles, CA 90001" -163643,Lightning Charging Cable,1,14.95,03/09/19 19:33,"535 Chestnut St, Los Angeles, CA 90001" -163644,27in FHD Monitor,1,149.99,03/14/19 10:17,"81 Main St, Austin, TX 73301" -163645,USB-C Charging Cable,1,11.95,03/04/19 10:38,"895 Hickory St, San Francisco, CA 94016" -163646,Wired Headphones,1,11.99,03/18/19 21:49,"532 Elm St, Dallas, TX 75001" -163647,AAA Batteries (4-pack),1,2.99,03/22/19 10:50,"101 Lake St, San Francisco, CA 94016" -163648,Wired Headphones,1,11.99,03/02/19 20:07,"410 Cedar St, Boston, MA 02215" -163649,AA Batteries (4-pack),1,3.84,03/28/19 11:41,"702 1st St, Los Angeles, CA 90001" -163650,Apple Airpods Headphones,1,150,03/09/19 20:58,"14 Willow St, Seattle, WA 98101" -163651,27in FHD Monitor,1,149.99,03/22/19 12:55,"252 Meadow St, Los Angeles, CA 90001" -163652,iPhone,1,700,03/31/19 06:28,"284 Lakeview St, San Francisco, CA 94016" -163653,iPhone,1,700,03/31/19 17:42,"845 Church St, Dallas, TX 75001" -163653,Lightning Charging Cable,1,14.95,03/31/19 17:42,"845 Church St, Dallas, TX 75001" -163654,USB-C Charging Cable,1,11.95,03/01/19 08:42,"448 Lincoln St, Boston, MA 02215" -163655,20in Monitor,1,109.99,03/16/19 14:35,"116 Madison St, Portland, OR 97035" -163656,ThinkPad Laptop,1,999.99,03/16/19 11:42,"156 8th St, Atlanta, GA 30301" -163657,Lightning Charging Cable,1,14.95,03/31/19 09:46,"576 13th St, New York City, NY 10001" -163658,Apple Airpods Headphones,1,150,03/17/19 22:29,"422 Maple St, New York City, NY 10001" -163658,iPhone,1,700,03/17/19 22:29,"422 Maple St, New York City, NY 10001" -163659,AA Batteries (4-pack),1,3.84,03/19/19 07:03,"343 Sunset St, San Francisco, CA 94016" -163660,iPhone,1,700,03/05/19 21:01,"982 6th St, San Francisco, CA 94016" -163661,34in Ultrawide Monitor,1,379.99,03/04/19 21:28,"910 7th St, San Francisco, CA 94016" -163662,27in FHD Monitor,1,149.99,03/15/19 14:50,"484 Cherry St, San Francisco, CA 94016" -163663,Lightning Charging Cable,1,14.95,03/23/19 10:08,"9 Ridge St, San Francisco, CA 94016" -163664,USB-C Charging Cable,1,11.95,03/30/19 10:49,"310 North St, Austin, TX 73301" -163665,Flatscreen TV,1,300,03/19/19 12:51,"296 Main St, Dallas, TX 75001" -163666,AAA Batteries (4-pack),1,2.99,03/27/19 21:48,"973 Washington St, New York City, NY 10001" -163667,Apple Airpods Headphones,1,150,03/04/19 18:09,"23 13th St, Atlanta, GA 30301" -163668,27in FHD Monitor,1,149.99,03/09/19 19:56,"154 Sunset St, San Francisco, CA 94016" -163669,Lightning Charging Cable,1,14.95,03/09/19 13:07,"170 6th St, New York City, NY 10001" -163670,34in Ultrawide Monitor,1,379.99,03/29/19 09:05,"67 Park St, Boston, MA 02215" -163671,Wired Headphones,1,11.99,03/12/19 11:55,"226 Maple St, Boston, MA 02215" -163672,AA Batteries (4-pack),1,3.84,03/23/19 11:06,"777 Highland St, New York City, NY 10001" -163673,Wired Headphones,1,11.99,03/14/19 10:02,"327 West St, Boston, MA 02215" -163674,AA Batteries (4-pack),1,3.84,03/04/19 11:24,"300 Pine St, Atlanta, GA 30301" -163675,Wired Headphones,1,11.99,03/29/19 19:07,"605 Lincoln St, San Francisco, CA 94016" -163676,Wired Headphones,1,11.99,03/20/19 23:24,"4 Church St, New York City, NY 10001" -163677,Apple Airpods Headphones,1,150,03/13/19 20:12,"69 Wilson St, Seattle, WA 98101" -163678,AAA Batteries (4-pack),1,2.99,03/04/19 21:50,"741 Walnut St, Boston, MA 02215" -163679,27in FHD Monitor,1,149.99,03/15/19 13:11,"710 9th St, Dallas, TX 75001" -163680,Google Phone,1,600,03/22/19 15:30,"113 North St, San Francisco, CA 94016" -163680,USB-C Charging Cable,1,11.95,03/22/19 15:30,"113 North St, San Francisco, CA 94016" -163681,Apple Airpods Headphones,1,150,03/16/19 16:00,"450 Cherry St, Atlanta, GA 30301" -163682,Vareebadd Phone,1,400,03/19/19 19:41,"356 6th St, Los Angeles, CA 90001" -163682,Wired Headphones,1,11.99,03/19/19 19:41,"356 6th St, Los Angeles, CA 90001" -163683,Bose SoundSport Headphones,1,99.99,03/30/19 03:55,"498 8th St, San Francisco, CA 94016" -163684,AA Batteries (4-pack),1,3.84,03/27/19 02:40,"237 Hill St, Dallas, TX 75001" -163685,Flatscreen TV,1,300,03/06/19 06:41,"897 14th St, San Francisco, CA 94016" -163686,AA Batteries (4-pack),1,3.84,03/19/19 18:46,"273 Dogwood St, Boston, MA 02215" -163687,Wired Headphones,1,11.99,03/29/19 21:57,"408 Walnut St, Portland, ME 04101" -163688,27in 4K Gaming Monitor,1,389.99,03/04/19 12:33,"15 Wilson St, San Francisco, CA 94016" -163689,Vareebadd Phone,1,400,03/08/19 13:24,"373 Chestnut St, Seattle, WA 98101" -163690,34in Ultrawide Monitor,1,379.99,03/05/19 20:38,"925 Dogwood St, Boston, MA 02215" -163691,USB-C Charging Cable,1,11.95,03/04/19 15:55,"236 Center St, San Francisco, CA 94016" -163692,ThinkPad Laptop,1,999.99,03/19/19 23:16,"346 9th St, San Francisco, CA 94016" -163693,20in Monitor,1,109.99,03/31/19 08:15,"523 2nd St, Los Angeles, CA 90001" -163694,AA Batteries (4-pack),1,3.84,03/17/19 10:33,"244 Hickory St, Seattle, WA 98101" -163695,Wired Headphones,1,11.99,03/12/19 16:50,"810 Center St, Atlanta, GA 30301" -163696,34in Ultrawide Monitor,1,379.99,03/07/19 18:44,"467 Chestnut St, Los Angeles, CA 90001" -163697,Wired Headphones,1,11.99,03/28/19 18:29,"7 6th St, New York City, NY 10001" -163698,USB-C Charging Cable,1,11.95,03/17/19 20:50,"85 Highland St, Los Angeles, CA 90001" -163699,20in Monitor,1,109.99,03/01/19 14:04,"434 Dogwood St, Boston, MA 02215" -163700,27in FHD Monitor,1,149.99,03/10/19 08:27,"199 Hill St, Seattle, WA 98101" -163701,Apple Airpods Headphones,1,150,03/24/19 12:43,"708 4th St, Portland, OR 97035" -163702,Google Phone,1,600,03/12/19 15:39,"713 Johnson St, Dallas, TX 75001" -163703,AA Batteries (4-pack),1,3.84,03/20/19 11:36,"50 Washington St, Atlanta, GA 30301" -163704,AA Batteries (4-pack),2,3.84,03/08/19 19:20,"401 Spruce St, Boston, MA 02215" -163705,iPhone,1,700,03/17/19 17:54,"61 Hickory St, New York City, NY 10001" -163706,27in 4K Gaming Monitor,1,389.99,03/11/19 21:16,"403 Park St, Los Angeles, CA 90001" -163707,Google Phone,1,600,03/01/19 10:26,"328 Center St, New York City, NY 10001" -163708,Flatscreen TV,1,300,03/22/19 12:38,"210 Park St, Seattle, WA 98101" -163709,USB-C Charging Cable,2,11.95,03/27/19 08:08,"261 Center St, Portland, OR 97035" -163710,Google Phone,1,600,03/26/19 14:12,"191 Cedar St, Boston, MA 02215" -163710,USB-C Charging Cable,1,11.95,03/26/19 14:12,"191 Cedar St, Boston, MA 02215" -163711,Wired Headphones,1,11.99,03/14/19 21:33,"180 Lincoln St, San Francisco, CA 94016" -163712,AA Batteries (4-pack),1,3.84,03/23/19 19:34,"967 North St, Boston, MA 02215" -163713,Bose SoundSport Headphones,1,99.99,03/24/19 18:55,"995 1st St, San Francisco, CA 94016" -163714,AA Batteries (4-pack),1,3.84,03/29/19 14:30,"941 Lakeview St, Boston, MA 02215" -163715,AAA Batteries (4-pack),2,2.99,03/01/19 15:26,"180 Lincoln St, Seattle, WA 98101" -163716,Lightning Charging Cable,1,14.95,03/09/19 18:50,"638 Main St, New York City, NY 10001" -163717,Lightning Charging Cable,1,14.95,03/14/19 20:18,"440 Hickory St, San Francisco, CA 94016" -163718,34in Ultrawide Monitor,1,379.99,03/23/19 10:58,"901 Sunset St, San Francisco, CA 94016" -163719,AA Batteries (4-pack),1,3.84,03/13/19 15:12,"776 Elm St, Austin, TX 73301" -163720,AAA Batteries (4-pack),2,2.99,03/19/19 19:32,"215 5th St, Austin, TX 73301" -163721,27in FHD Monitor,1,149.99,03/28/19 18:23,"300 Adams St, San Francisco, CA 94016" -163722,iPhone,1,700,03/16/19 07:22,"541 Dogwood St, New York City, NY 10001" -163723,USB-C Charging Cable,3,11.95,03/23/19 19:31,"359 Meadow St, San Francisco, CA 94016" -163724,AAA Batteries (4-pack),1,2.99,03/29/19 21:15,"145 Ridge St, Atlanta, GA 30301" -163725,ThinkPad Laptop,1,999.99,03/30/19 20:46,"705 Center St, Dallas, TX 75001" -163726,27in FHD Monitor,1,149.99,03/28/19 21:07,"257 Hickory St, Los Angeles, CA 90001" -163727,27in FHD Monitor,1,149.99,03/07/19 17:38,"837 Forest St, Dallas, TX 75001" -163728,AA Batteries (4-pack),1,3.84,03/08/19 09:06,"438 Center St, Dallas, TX 75001" -163729,Wired Headphones,1,11.99,03/06/19 16:39,"606 Adams St, Atlanta, GA 30301" -163730,USB-C Charging Cable,1,11.95,03/16/19 13:33,"384 Cherry St, San Francisco, CA 94016" -163731,Wired Headphones,1,11.99,03/15/19 10:49,"458 South St, New York City, NY 10001" -163732,Google Phone,1,600,03/25/19 05:13,"675 Ridge St, New York City, NY 10001" -163733,34in Ultrawide Monitor,1,379.99,03/22/19 18:40,"57 River St, New York City, NY 10001" -163734,AA Batteries (4-pack),1,3.84,03/01/19 17:31,"336 8th St, Portland, ME 04101" -163735,Lightning Charging Cable,1,14.95,03/07/19 12:41,"23 8th St, San Francisco, CA 94016" -163736,AA Batteries (4-pack),1,3.84,03/22/19 20:05,"759 North St, Los Angeles, CA 90001" -163737,Apple Airpods Headphones,1,150,03/05/19 01:05,"391 Cherry St, Atlanta, GA 30301" -163738,Apple Airpods Headphones,1,150,03/06/19 17:42,"793 South St, Austin, TX 73301" -163739,Google Phone,1,600,03/26/19 04:25,"105 Hickory St, New York City, NY 10001" -163740,Lightning Charging Cable,1,14.95,03/14/19 08:31,"856 Jefferson St, San Francisco, CA 94016" -163741,Bose SoundSport Headphones,1,99.99,03/03/19 18:48,"759 9th St, Atlanta, GA 30301" -163742,Flatscreen TV,1,300,03/03/19 12:29,"468 11th St, New York City, NY 10001" -163743,iPhone,1,700,03/31/19 11:35,"541 11th St, San Francisco, CA 94016" -163744,USB-C Charging Cable,1,11.95,03/31/19 18:48,"455 Chestnut St, New York City, NY 10001" -163745,27in FHD Monitor,1,149.99,03/20/19 08:50,"630 River St, San Francisco, CA 94016" -163746,Flatscreen TV,1,300,03/13/19 21:01,"299 Main St, New York City, NY 10001" -163747,iPhone,1,700,03/06/19 21:32,"489 6th St, San Francisco, CA 94016" -163748,USB-C Charging Cable,2,11.95,03/07/19 18:22,"754 Elm St, Los Angeles, CA 90001" -163749,Bose SoundSport Headphones,1,99.99,03/29/19 07:37,"749 Maple St, San Francisco, CA 94016" -163750,Flatscreen TV,1,300,03/28/19 20:02,"399 10th St, Boston, MA 02215" -163751,Bose SoundSport Headphones,1,99.99,03/09/19 17:00,"653 Johnson St, Seattle, WA 98101" -163752,AA Batteries (4-pack),1,3.84,03/04/19 00:28,"90 Johnson St, Dallas, TX 75001" -163753,Lightning Charging Cable,1,14.95,03/14/19 16:36,"117 9th St, San Francisco, CA 94016" -163754,Bose SoundSport Headphones,1,99.99,03/25/19 22:27,"336 North St, Boston, MA 02215" -163755,Bose SoundSport Headphones,1,99.99,03/20/19 21:31,"419 2nd St, Boston, MA 02215" -163756,ThinkPad Laptop,1,999.99,03/17/19 22:25,"392 Ridge St, New York City, NY 10001" -163757,AA Batteries (4-pack),1,3.84,03/09/19 16:11,"251 Forest St, San Francisco, CA 94016" -163758,iPhone,1,700,03/14/19 18:31,"587 2nd St, New York City, NY 10001" -163759,AAA Batteries (4-pack),1,2.99,03/21/19 15:53,"225 Hickory St, Austin, TX 73301" -163760,Lightning Charging Cable,1,14.95,03/13/19 21:49,"319 Lincoln St, Boston, MA 02215" -163761,Lightning Charging Cable,2,14.95,03/28/19 15:25,"33 Lake St, Boston, MA 02215" -163762,USB-C Charging Cable,1,11.95,03/21/19 12:05,"141 Jefferson St, Boston, MA 02215" -163763,20in Monitor,1,109.99,03/26/19 16:55,"727 2nd St, Atlanta, GA 30301" -163764,Bose SoundSport Headphones,1,99.99,03/16/19 15:36,"287 River St, Los Angeles, CA 90001" -163765,USB-C Charging Cable,1,11.95,03/30/19 11:21,"586 Meadow St, New York City, NY 10001" -163766,Apple Airpods Headphones,1,150,03/24/19 02:24,"53 1st St, San Francisco, CA 94016" -163767,AAA Batteries (4-pack),3,2.99,03/02/19 18:35,"320 10th St, Seattle, WA 98101" -163768,Flatscreen TV,1,300,03/21/19 20:23,"487 Main St, San Francisco, CA 94016" -163769,Apple Airpods Headphones,1,150,03/17/19 17:11,"180 Hickory St, San Francisco, CA 94016" -163770,AA Batteries (4-pack),2,3.84,03/01/19 12:00,"996 12th St, San Francisco, CA 94016" -163771,AAA Batteries (4-pack),2,2.99,03/23/19 14:41,"353 Maple St, Los Angeles, CA 90001" -163772,Wired Headphones,1,11.99,03/05/19 11:09,"15 Hickory St, Los Angeles, CA 90001" -163773,Google Phone,1,600,03/07/19 10:57,"615 5th St, Atlanta, GA 30301" -163774,27in FHD Monitor,1,149.99,03/01/19 22:27,"640 Elm St, San Francisco, CA 94016" -163775,iPhone,1,700,03/13/19 13:37,"635 6th St, San Francisco, CA 94016" -163776,Lightning Charging Cable,1,14.95,03/13/19 07:44,"567 Hill St, New York City, NY 10001" -163777,AAA Batteries (4-pack),2,2.99,03/15/19 01:35,"579 Church St, Atlanta, GA 30301" -163778,AAA Batteries (4-pack),2,2.99,03/23/19 21:25,"192 6th St, Dallas, TX 75001" -163779,USB-C Charging Cable,1,11.95,03/09/19 08:09,"433 Johnson St, Boston, MA 02215" -163780,ThinkPad Laptop,1,999.99,03/30/19 19:44,"732 Adams St, San Francisco, CA 94016" -163781,USB-C Charging Cable,1,11.95,03/26/19 20:49,"695 Forest St, San Francisco, CA 94016" -163782,27in FHD Monitor,1,149.99,03/10/19 17:33,"643 Elm St, New York City, NY 10001" -163783,27in FHD Monitor,1,149.99,03/10/19 08:58,"617 North St, New York City, NY 10001" -163783,Apple Airpods Headphones,1,150,03/10/19 08:58,"617 North St, New York City, NY 10001" -163784,Lightning Charging Cable,1,14.95,03/03/19 18:22,"293 South St, San Francisco, CA 94016" -163785,Lightning Charging Cable,1,14.95,03/14/19 12:03,"130 Hill St, San Francisco, CA 94016" -163786,AAA Batteries (4-pack),2,2.99,03/19/19 11:24,"284 12th St, New York City, NY 10001" -163787,ThinkPad Laptop,1,999.99,03/20/19 22:34,"358 Church St, Los Angeles, CA 90001" -163788,Lightning Charging Cable,1,14.95,03/21/19 08:14,"995 Jackson St, Los Angeles, CA 90001" -163789,27in FHD Monitor,1,149.99,03/02/19 22:17,"457 River St, Los Angeles, CA 90001" -163790,Apple Airpods Headphones,1,150,03/23/19 18:37,"611 Center St, Dallas, TX 75001" -163791,AAA Batteries (4-pack),1,2.99,03/21/19 12:10,"802 14th St, San Francisco, CA 94016" -163792,Apple Airpods Headphones,1,150,03/25/19 09:16,"456 Cedar St, Boston, MA 02215" -163793,AA Batteries (4-pack),1,3.84,03/26/19 19:53,"387 Maple St, Boston, MA 02215" -163794,AAA Batteries (4-pack),1,2.99,03/28/19 11:49,"820 Ridge St, San Francisco, CA 94016" -163795,Flatscreen TV,1,300,03/21/19 20:19,"387 Willow St, Los Angeles, CA 90001" -163796,USB-C Charging Cable,1,11.95,03/07/19 11:16,"80 14th St, Atlanta, GA 30301" -163797,USB-C Charging Cable,1,11.95,03/11/19 17:55,"669 Johnson St, Boston, MA 02215" -163798,Wired Headphones,1,11.99,03/04/19 08:19,"768 8th St, San Francisco, CA 94016" -163799,Lightning Charging Cable,1,14.95,03/04/19 16:57,"111 Lake St, San Francisco, CA 94016" -163800,Lightning Charging Cable,1,14.95,03/02/19 16:39,"930 Spruce St, Atlanta, GA 30301" -163801,Wired Headphones,2,11.99,03/11/19 09:14,"674 1st St, Seattle, WA 98101" -163802,34in Ultrawide Monitor,1,379.99,03/13/19 17:29,"888 1st St, San Francisco, CA 94016" -163802,27in FHD Monitor,1,149.99,03/13/19 17:29,"888 1st St, San Francisco, CA 94016" -163803,27in 4K Gaming Monitor,1,389.99,03/20/19 10:39,"518 14th St, Boston, MA 02215" -163804,27in FHD Monitor,1,149.99,03/13/19 10:30,"493 14th St, Boston, MA 02215" -163805,AAA Batteries (4-pack),1,2.99,03/27/19 17:46,"698 6th St, Austin, TX 73301" -163806,Wired Headphones,1,11.99,03/13/19 14:58,"253 Willow St, San Francisco, CA 94016" -163807,AAA Batteries (4-pack),1,2.99,03/23/19 18:52,"588 North St, New York City, NY 10001" -163808,AAA Batteries (4-pack),1,2.99,03/31/19 10:59,"501 Madison St, Austin, TX 73301" -163809,Wired Headphones,1,11.99,03/23/19 20:26,"172 Sunset St, Atlanta, GA 30301" -163810,AA Batteries (4-pack),1,3.84,03/04/19 13:06,"87 4th St, Atlanta, GA 30301" -163811,Lightning Charging Cable,1,14.95,03/11/19 12:25,"785 Highland St, San Francisco, CA 94016" -163812,Lightning Charging Cable,1,14.95,03/21/19 07:05,"57 Forest St, New York City, NY 10001" -163813,Apple Airpods Headphones,1,150,03/14/19 22:58,"275 Sunset St, Los Angeles, CA 90001" -163814,AAA Batteries (4-pack),2,2.99,03/26/19 21:44,"168 Church St, Atlanta, GA 30301" -163815,AA Batteries (4-pack),4,3.84,03/19/19 16:50,"679 Park St, Boston, MA 02215" -163816,Lightning Charging Cable,1,14.95,03/02/19 11:22,"480 Church St, Los Angeles, CA 90001" -163817,USB-C Charging Cable,1,11.95,03/16/19 12:17,"675 Church St, Los Angeles, CA 90001" -163818,Bose SoundSport Headphones,1,99.99,03/30/19 11:06,"673 Dogwood St, San Francisco, CA 94016" -163819,USB-C Charging Cable,1,11.95,03/07/19 12:26,"395 13th St, Los Angeles, CA 90001" -163820,iPhone,1,700,03/14/19 17:18,"578 Main St, Seattle, WA 98101" -163821,Apple Airpods Headphones,1,150,03/05/19 06:56,"496 Church St, San Francisco, CA 94016" -163822,Google Phone,1,600,03/11/19 14:19,"866 14th St, Seattle, WA 98101" -163823,Wired Headphones,1,11.99,03/22/19 16:33,"400 River St, Dallas, TX 75001" -163824,Lightning Charging Cable,1,14.95,03/17/19 16:01,"323 Washington St, Boston, MA 02215" -163825,Bose SoundSport Headphones,1,99.99,03/25/19 11:30,"338 Maple St, San Francisco, CA 94016" -163826,iPhone,1,700,03/21/19 16:02,"726 Hickory St, New York City, NY 10001" -163826,Lightning Charging Cable,1,14.95,03/21/19 16:02,"726 Hickory St, New York City, NY 10001" -163827,Lightning Charging Cable,1,14.95,03/12/19 14:02,"277 Forest St, Boston, MA 02215" -163828,iPhone,1,700,03/31/19 14:12,"999 5th St, San Francisco, CA 94016" -163829,Flatscreen TV,1,300,03/09/19 22:35,"323 7th St, New York City, NY 10001" -163830,AAA Batteries (4-pack),3,2.99,03/19/19 09:51,"951 Adams St, Los Angeles, CA 90001" -163831,AA Batteries (4-pack),1,3.84,03/27/19 21:40,"87 Main St, San Francisco, CA 94016" -163832,AA Batteries (4-pack),1,3.84,03/11/19 12:21,"625 Maple St, Los Angeles, CA 90001" -163833,AA Batteries (4-pack),1,3.84,03/10/19 09:25,"476 10th St, San Francisco, CA 94016" -163834,LG Washing Machine,1,600.0,03/04/19 18:54,"336 South St, Atlanta, GA 30301" -163835,Lightning Charging Cable,1,14.95,03/10/19 19:00,"23 14th St, Dallas, TX 75001" -163836,AA Batteries (4-pack),1,3.84,03/02/19 09:33,"959 8th St, Boston, MA 02215" -163837,AA Batteries (4-pack),2,3.84,03/29/19 23:05,"175 Pine St, Los Angeles, CA 90001" -163838,Lightning Charging Cable,1,14.95,03/21/19 21:53,"45 13th St, New York City, NY 10001" -163839,Wired Headphones,1,11.99,03/14/19 17:20,"605 12th St, San Francisco, CA 94016" -163840,34in Ultrawide Monitor,1,379.99,03/09/19 16:11,"809 4th St, Boston, MA 02215" -163841,Bose SoundSport Headphones,1,99.99,03/03/19 15:18,"196 River St, Los Angeles, CA 90001" -163842,Wired Headphones,1,11.99,03/17/19 15:04,"727 7th St, Los Angeles, CA 90001" -163843,AAA Batteries (4-pack),1,2.99,03/22/19 19:42,"977 9th St, Austin, TX 73301" -163844,AA Batteries (4-pack),1,3.84,03/18/19 14:55,"871 9th St, Dallas, TX 75001" -163845,AAA Batteries (4-pack),1,2.99,03/13/19 13:48,"154 13th St, San Francisco, CA 94016" -163846,Macbook Pro Laptop,1,1700,03/23/19 12:33,"998 13th St, Seattle, WA 98101" -163847,34in Ultrawide Monitor,1,379.99,03/13/19 18:52,"802 West St, San Francisco, CA 94016" -163848,Lightning Charging Cable,1,14.95,03/14/19 13:21,"624 Walnut St, New York City, NY 10001" -163849,AA Batteries (4-pack),1,3.84,03/03/19 21:12,"531 River St, Seattle, WA 98101" -163850,Wired Headphones,1,11.99,03/17/19 08:04,"600 7th St, Atlanta, GA 30301" -163851,Wired Headphones,1,11.99,03/01/19 15:05,"496 Forest St, Boston, MA 02215" -163852,USB-C Charging Cable,1,11.95,03/28/19 16:59,"630 South St, Los Angeles, CA 90001" -163853,Bose SoundSport Headphones,1,99.99,03/06/19 03:54,"289 Meadow St, San Francisco, CA 94016" -163854,AA Batteries (4-pack),1,3.84,03/31/19 20:42,"51 Forest St, Atlanta, GA 30301" -163855,Wired Headphones,1,11.99,03/01/19 14:35,"293 Lake St, San Francisco, CA 94016" -163856,AAA Batteries (4-pack),1,2.99,03/20/19 22:58,"687 Spruce St, New York City, NY 10001" -163857,Apple Airpods Headphones,1,150,03/28/19 09:37,"226 Highland St, New York City, NY 10001" -163858,Wired Headphones,1,11.99,03/05/19 20:24,"76 Lincoln St, Dallas, TX 75001" -163859,Apple Airpods Headphones,1,150,03/11/19 18:15,"327 5th St, Boston, MA 02215" -163860,27in 4K Gaming Monitor,1,389.99,03/24/19 21:18,"997 Pine St, Portland, OR 97035" -163861,Bose SoundSport Headphones,1,99.99,03/11/19 03:17,"508 Jackson St, New York City, NY 10001" -163862,AAA Batteries (4-pack),1,2.99,03/21/19 15:36,"175 Dogwood St, Boston, MA 02215" -163862,Lightning Charging Cable,1,14.95,03/21/19 15:36,"175 Dogwood St, Boston, MA 02215" -163863,Lightning Charging Cable,1,14.95,03/22/19 16:37,"201 Washington St, Atlanta, GA 30301" -163864,AA Batteries (4-pack),2,3.84,03/07/19 20:11,"233 River St, Portland, OR 97035" -163865,Wired Headphones,1,11.99,03/16/19 01:42,"314 14th St, New York City, NY 10001" -163866,Wired Headphones,1,11.99,03/14/19 15:00,"779 Chestnut St, San Francisco, CA 94016" -163867,AA Batteries (4-pack),1,3.84,03/24/19 19:24,"229 Johnson St, Boston, MA 02215" -163868,AA Batteries (4-pack),1,3.84,03/07/19 10:00,"807 9th St, Seattle, WA 98101" -163869,USB-C Charging Cable,1,11.95,03/31/19 08:00,"291 Chestnut St, Dallas, TX 75001" -163870,USB-C Charging Cable,1,11.95,03/03/19 17:19,"114 12th St, New York City, NY 10001" -163871,USB-C Charging Cable,1,11.95,03/23/19 10:31,"326 Chestnut St, San Francisco, CA 94016" -163872,Apple Airpods Headphones,1,150,03/15/19 08:56,"186 Lincoln St, Boston, MA 02215" -163873,AA Batteries (4-pack),1,3.84,03/26/19 16:42,"787 6th St, Boston, MA 02215" -163874,Bose SoundSport Headphones,1,99.99,03/11/19 21:38,"407 River St, San Francisco, CA 94016" -163875,Apple Airpods Headphones,1,150,03/13/19 10:23,"820 Main St, Seattle, WA 98101" -163876,AA Batteries (4-pack),1,3.84,03/19/19 11:03,"458 Ridge St, Austin, TX 73301" -163877,Bose SoundSport Headphones,1,99.99,03/17/19 06:38,"872 Center St, Seattle, WA 98101" -163878,AAA Batteries (4-pack),1,2.99,03/28/19 11:39,"349 Walnut St, Boston, MA 02215" -163879,USB-C Charging Cable,1,11.95,03/31/19 16:42,"710 Maple St, Boston, MA 02215" -163880,Lightning Charging Cable,1,14.95,03/24/19 06:03,"935 Lakeview St, Atlanta, GA 30301" -163881,ThinkPad Laptop,1,999.99,03/18/19 09:44,"692 Johnson St, Austin, TX 73301" -163882,iPhone,1,700,03/18/19 09:12,"76 Lakeview St, Portland, OR 97035" -163883,Bose SoundSport Headphones,1,99.99,03/23/19 06:09,"55 River St, Boston, MA 02215" -163884,Google Phone,1,600,03/04/19 18:44,"7 2nd St, Los Angeles, CA 90001" -163885,Bose SoundSport Headphones,1,99.99,03/24/19 18:14,"288 West St, Seattle, WA 98101" -163886,Lightning Charging Cable,1,14.95,03/09/19 11:44,"738 Willow St, Seattle, WA 98101" -163887,Bose SoundSport Headphones,1,99.99,03/30/19 16:47,"836 Lakeview St, Los Angeles, CA 90001" -163888,iPhone,1,700,03/28/19 11:14,"534 Lakeview St, Austin, TX 73301" -163889,Wired Headphones,1,11.99,03/25/19 23:21,"770 Hill St, Atlanta, GA 30301" -163890,Bose SoundSport Headphones,1,99.99,03/26/19 08:37,"706 Adams St, San Francisco, CA 94016" -163891,34in Ultrawide Monitor,1,379.99,03/17/19 15:54,"433 10th St, Portland, OR 97035" -163892,iPhone,1,700,03/03/19 23:58,"688 12th St, Seattle, WA 98101" -163893,Wired Headphones,1,11.99,03/02/19 10:23,"95 Cherry St, Portland, OR 97035" -163894,iPhone,1,700,03/01/19 08:02,"330 Adams St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -163895,Lightning Charging Cable,1,14.95,03/22/19 22:04,"91 Wilson St, San Francisco, CA 94016" -163896,USB-C Charging Cable,1,11.95,03/08/19 10:28,"557 Main St, San Francisco, CA 94016" -163897,AAA Batteries (4-pack),4,2.99,03/01/19 17:33,"635 West St, Portland, OR 97035" -163898,Lightning Charging Cable,1,14.95,03/17/19 06:45,"217 Cedar St, Los Angeles, CA 90001" -163899,LG Dryer,1,600.0,03/29/19 16:13,"781 Lakeview St, Boston, MA 02215" -163900,Apple Airpods Headphones,1,150,03/19/19 14:41,"188 8th St, San Francisco, CA 94016" -163901,Lightning Charging Cable,1,14.95,03/05/19 15:38,"457 West St, New York City, NY 10001" -163902,Vareebadd Phone,1,400,03/04/19 22:08,"185 Meadow St, San Francisco, CA 94016" -163903,Vareebadd Phone,1,400,03/10/19 16:25,"690 Lincoln St, San Francisco, CA 94016" -163904,USB-C Charging Cable,1,11.95,03/14/19 15:49,"844 Lake St, Portland, ME 04101" -163905,AA Batteries (4-pack),2,3.84,03/27/19 23:33,"922 Dogwood St, San Francisco, CA 94016" -163906,Apple Airpods Headphones,1,150,03/17/19 12:35,"195 Wilson St, San Francisco, CA 94016" -163907,Flatscreen TV,1,300,03/23/19 20:28,"164 Washington St, San Francisco, CA 94016" -163908,AAA Batteries (4-pack),2,2.99,03/11/19 19:43,"201 Lake St, New York City, NY 10001" -163909,USB-C Charging Cable,1,11.95,03/06/19 12:45,"531 Washington St, New York City, NY 10001" -163910,AAA Batteries (4-pack),1,2.99,03/28/19 20:02,"841 4th St, Portland, OR 97035" -163911,iPhone,1,700,03/20/19 08:37,"396 Hill St, New York City, NY 10001" -163912,20in Monitor,1,109.99,03/09/19 14:44,"427 Cedar St, San Francisco, CA 94016" -163913,Bose SoundSport Headphones,1,99.99,03/24/19 12:20,"131 7th St, Boston, MA 02215" -163913,Flatscreen TV,1,300,03/24/19 12:20,"131 7th St, Boston, MA 02215" -163914,iPhone,1,700,03/24/19 12:58,"232 2nd St, San Francisco, CA 94016" -163915,20in Monitor,1,109.99,03/20/19 16:42,"184 Jefferson St, Austin, TX 73301" -163916,Wired Headphones,1,11.99,03/18/19 21:35,"108 Lakeview St, San Francisco, CA 94016" -163917,Apple Airpods Headphones,1,150,03/13/19 23:10,"254 Johnson St, Atlanta, GA 30301" -163918,USB-C Charging Cable,1,11.95,03/02/19 16:40,"351 11th St, New York City, NY 10001" -163919,AAA Batteries (4-pack),1,2.99,03/25/19 14:40,"159 14th St, Atlanta, GA 30301" -163920,27in FHD Monitor,1,149.99,03/07/19 21:28,"317 Meadow St, Dallas, TX 75001" -163921,ThinkPad Laptop,1,999.99,03/06/19 23:17,"336 Lakeview St, Seattle, WA 98101" -163922,Flatscreen TV,1,300,03/30/19 11:50,"609 West St, Los Angeles, CA 90001" -163923,Flatscreen TV,1,300,03/08/19 19:25,"871 River St, Dallas, TX 75001" -163924,27in 4K Gaming Monitor,1,389.99,03/05/19 10:45,"154 10th St, Portland, OR 97035" -163925,Apple Airpods Headphones,1,150,03/15/19 20:41,"572 Church St, Austin, TX 73301" -163926,AAA Batteries (4-pack),1,2.99,03/21/19 13:33,"847 North St, New York City, NY 10001" -163927,AAA Batteries (4-pack),1,2.99,03/07/19 21:10,"825 Sunset St, Atlanta, GA 30301" -,,,,, -163928,Wired Headphones,1,11.99,03/07/19 15:23,"762 Cedar St, Boston, MA 02215" -163929,Wired Headphones,1,11.99,03/05/19 13:42,"748 North St, San Francisco, CA 94016" -163930,Lightning Charging Cable,1,14.95,03/20/19 13:13,"618 Lincoln St, Austin, TX 73301" -163931,AAA Batteries (4-pack),1,2.99,03/26/19 09:31,"735 Pine St, San Francisco, CA 94016" -163932,Flatscreen TV,1,300,03/20/19 15:32,"488 Walnut St, New York City, NY 10001" -163933,27in FHD Monitor,1,149.99,03/04/19 18:30,"627 Sunset St, Boston, MA 02215" -163934,Lightning Charging Cable,1,14.95,03/14/19 20:18,"124 Cherry St, Seattle, WA 98101" -163935,AAA Batteries (4-pack),2,2.99,03/25/19 18:22,"310 Johnson St, San Francisco, CA 94016" -163936,Apple Airpods Headphones,1,150,03/25/19 11:36,"132 Maple St, Portland, ME 04101" -163937,Google Phone,1,600,03/06/19 18:31,"860 Lakeview St, Dallas, TX 75001" -163938,AAA Batteries (4-pack),2,2.99,03/05/19 11:06,"78 Center St, Los Angeles, CA 90001" -163939,USB-C Charging Cable,1,11.95,03/29/19 13:49,"149 West St, Seattle, WA 98101" -163940,Lightning Charging Cable,1,14.95,03/25/19 20:12,"125 Walnut St, Boston, MA 02215" -163941,USB-C Charging Cable,1,11.95,03/09/19 11:35,"238 North St, Los Angeles, CA 90001" -163942,AA Batteries (4-pack),2,3.84,03/03/19 09:47,"145 Center St, Los Angeles, CA 90001" -163943,Lightning Charging Cable,1,14.95,03/04/19 09:17,"774 Dogwood St, San Francisco, CA 94016" -163944,Wired Headphones,1,11.99,03/08/19 17:16,"538 North St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -163945,20in Monitor,1,109.99,03/15/19 17:46,"11 1st St, Los Angeles, CA 90001" -163946,Lightning Charging Cable,1,14.95,03/08/19 17:23,"477 Willow St, San Francisco, CA 94016" -163947,AA Batteries (4-pack),3,3.84,03/10/19 00:19,"844 Cherry St, Seattle, WA 98101" -163948,Bose SoundSport Headphones,1,99.99,03/11/19 11:04,"499 6th St, San Francisco, CA 94016" -163949,Lightning Charging Cable,1,14.95,03/10/19 19:00,"808 River St, San Francisco, CA 94016" -163950,AA Batteries (4-pack),3,3.84,03/10/19 22:30,"404 Willow St, San Francisco, CA 94016" -163951,Vareebadd Phone,1,400,03/14/19 14:46,"572 Main St, San Francisco, CA 94016" -163952,34in Ultrawide Monitor,1,379.99,03/19/19 18:38,"463 Elm St, Los Angeles, CA 90001" -163953,Flatscreen TV,1,300,03/10/19 15:01,"132 River St, Boston, MA 02215" -163954,Lightning Charging Cable,1,14.95,03/01/19 22:28,"154 Washington St, Portland, OR 97035" -,,,,, -163955,Lightning Charging Cable,1,14.95,03/15/19 15:11,"773 Ridge St, Los Angeles, CA 90001" -163956,AAA Batteries (4-pack),2,2.99,03/28/19 12:19,"526 Meadow St, New York City, NY 10001" -163957,AA Batteries (4-pack),2,3.84,03/20/19 17:35,"993 North St, Austin, TX 73301" -163958,AAA Batteries (4-pack),1,2.99,03/06/19 13:16,"931 13th St, Austin, TX 73301" -163959,Bose SoundSport Headphones,1,99.99,03/13/19 07:51,"520 Madison St, Boston, MA 02215" -163960,iPhone,1,700,03/27/19 00:21,"658 Jackson St, New York City, NY 10001" -163961,AAA Batteries (4-pack),2,2.99,03/27/19 12:13,"860 Highland St, Portland, OR 97035" -163962,USB-C Charging Cable,1,11.95,03/27/19 21:06,"76 Pine St, Los Angeles, CA 90001" -163963,27in FHD Monitor,1,149.99,03/31/19 19:16,"213 Maple St, Austin, TX 73301" -163964,Macbook Pro Laptop,1,1700,03/05/19 23:06,"725 Park St, Los Angeles, CA 90001" -163965,USB-C Charging Cable,1,11.95,03/20/19 00:46,"687 Meadow St, Dallas, TX 75001" -163966,AAA Batteries (4-pack),2,2.99,03/12/19 13:05,"915 Elm St, Austin, TX 73301" -163967,Google Phone,1,600,03/21/19 19:33,"172 Cherry St, Los Angeles, CA 90001" -163968,AA Batteries (4-pack),2,3.84,03/25/19 07:16,"194 13th St, Los Angeles, CA 90001" -163969,AA Batteries (4-pack),1,3.84,03/26/19 06:50,"796 Main St, Seattle, WA 98101" -163970,iPhone,1,700,03/13/19 12:18,"665 Meadow St, Los Angeles, CA 90001" -163971,Macbook Pro Laptop,1,1700,03/22/19 20:11,"121 Main St, Boston, MA 02215" -163972,AA Batteries (4-pack),1,3.84,03/25/19 13:42,"793 Johnson St, San Francisco, CA 94016" -163973,AA Batteries (4-pack),2,3.84,03/26/19 10:16,"972 Willow St, Los Angeles, CA 90001" -163974,20in Monitor,1,109.99,03/25/19 03:39,"496 Wilson St, Los Angeles, CA 90001" -163975,Apple Airpods Headphones,1,150,03/22/19 13:13,"264 Highland St, San Francisco, CA 94016" -163976,Bose SoundSport Headphones,1,99.99,03/07/19 15:20,"826 Church St, Seattle, WA 98101" -163977,Apple Airpods Headphones,1,150,03/29/19 13:00,"870 5th St, San Francisco, CA 94016" -163978,Apple Airpods Headphones,1,150,03/03/19 10:14,"839 Hickory St, San Francisco, CA 94016" -163979,Apple Airpods Headphones,1,150,03/01/19 07:37,"945 Adams St, Boston, MA 02215" -163980,ThinkPad Laptop,1,999.99,03/10/19 21:21,"621 Main St, San Francisco, CA 94016" -163981,USB-C Charging Cable,1,11.95,03/14/19 16:41,"721 1st St, San Francisco, CA 94016" -163982,AA Batteries (4-pack),1,3.84,03/13/19 15:02,"328 1st St, Dallas, TX 75001" -163983,USB-C Charging Cable,1,11.95,03/05/19 10:51,"683 Hickory St, New York City, NY 10001" -163983,iPhone,1,700,03/05/19 10:51,"683 Hickory St, New York City, NY 10001" -163984,Lightning Charging Cable,1,14.95,03/13/19 19:43,"448 Dogwood St, Boston, MA 02215" -163984,USB-C Charging Cable,1,11.95,03/13/19 19:43,"448 Dogwood St, Boston, MA 02215" -163985,27in 4K Gaming Monitor,1,389.99,03/09/19 16:28,"195 10th St, Seattle, WA 98101" -163986,AAA Batteries (4-pack),2,2.99,03/27/19 16:37,"172 6th St, San Francisco, CA 94016" -163987,AA Batteries (4-pack),1,3.84,03/27/19 14:34,"21 West St, Los Angeles, CA 90001" -163988,Bose SoundSport Headphones,1,99.99,03/07/19 10:17,"227 Church St, Los Angeles, CA 90001" -163989,Lightning Charging Cable,1,14.95,03/31/19 16:12,"69 Sunset St, Dallas, TX 75001" -163990,USB-C Charging Cable,1,11.95,03/28/19 10:11,"863 Church St, Boston, MA 02215" -163991,Google Phone,1,600,03/03/19 10:46,"497 Ridge St, San Francisco, CA 94016" -163991,Wired Headphones,1,11.99,03/03/19 10:46,"497 Ridge St, San Francisco, CA 94016" -163992,USB-C Charging Cable,1,11.95,03/14/19 21:20,"566 Ridge St, Portland, OR 97035" -163993,Vareebadd Phone,1,400,03/21/19 13:16,"66 Lincoln St, San Francisco, CA 94016" -163993,27in 4K Gaming Monitor,1,389.99,03/21/19 13:16,"66 Lincoln St, San Francisco, CA 94016" -163994,Lightning Charging Cable,1,14.95,03/11/19 22:04,"658 11th St, San Francisco, CA 94016" -163995,Google Phone,1,600,03/13/19 10:57,"541 Pine St, Los Angeles, CA 90001" -163996,Bose SoundSport Headphones,1,99.99,03/09/19 17:19,"498 14th St, Boston, MA 02215" -163997,AA Batteries (4-pack),1,3.84,03/10/19 13:53,"67 6th St, San Francisco, CA 94016" -163998,LG Dryer,1,600.0,03/17/19 18:27,"452 7th St, Seattle, WA 98101" -163999,AAA Batteries (4-pack),1,2.99,03/11/19 09:09,"595 6th St, San Francisco, CA 94016" -164000,USB-C Charging Cable,2,11.95,03/19/19 22:48,"549 10th St, Dallas, TX 75001" -164001,AA Batteries (4-pack),2,3.84,03/09/19 07:35,"610 Elm St, Boston, MA 02215" -164002,27in 4K Gaming Monitor,1,389.99,03/14/19 16:18,"48 Jefferson St, Atlanta, GA 30301" -164003,AA Batteries (4-pack),3,3.84,03/06/19 21:31,"294 Wilson St, Boston, MA 02215" -164004,AA Batteries (4-pack),1,3.84,03/19/19 10:29,"463 Hill St, New York City, NY 10001" -164005,iPhone,1,700,03/04/19 22:57,"887 12th St, Los Angeles, CA 90001" -164006,Google Phone,1,600,03/07/19 00:13,"532 Cedar St, Los Angeles, CA 90001" -164006,USB-C Charging Cable,1,11.95,03/07/19 00:13,"532 Cedar St, Los Angeles, CA 90001" -164007,USB-C Charging Cable,1,11.95,03/25/19 09:08,"2 5th St, Austin, TX 73301" -164008,Apple Airpods Headphones,1,150,03/09/19 13:30,"551 Wilson St, Boston, MA 02215" -164009,34in Ultrawide Monitor,1,379.99,03/05/19 14:40,"4 Ridge St, Boston, MA 02215" -164010,Wired Headphones,1,11.99,03/10/19 17:22,"85 Chestnut St, New York City, NY 10001" -164011,Macbook Pro Laptop,1,1700,03/16/19 08:13,"884 Elm St, Seattle, WA 98101" -164012,Wired Headphones,1,11.99,03/26/19 20:52,"764 Hill St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -164013,AA Batteries (4-pack),1,3.84,03/16/19 19:19,"880 1st St, Boston, MA 02215" -164014,Wired Headphones,2,11.99,03/05/19 09:03,"685 Highland St, Los Angeles, CA 90001" -164015,Lightning Charging Cable,1,14.95,03/08/19 17:29,"633 Jefferson St, San Francisco, CA 94016" -164016,Wired Headphones,1,11.99,03/11/19 15:33,"647 Hill St, Boston, MA 02215" -164017,34in Ultrawide Monitor,1,379.99,03/01/19 18:47,"302 Lincoln St, Los Angeles, CA 90001" -164018,Wired Headphones,1,11.99,03/11/19 11:23,"541 Jackson St, Los Angeles, CA 90001" -164019,ThinkPad Laptop,1,999.99,03/24/19 15:14,"9 Jackson St, San Francisco, CA 94016" -164020,Apple Airpods Headphones,1,150,03/12/19 10:19,"785 Madison St, Seattle, WA 98101" -164021,Wired Headphones,1,11.99,03/11/19 21:54,"548 South St, Los Angeles, CA 90001" -164022,AAA Batteries (4-pack),1,2.99,03/30/19 12:37,"376 Wilson St, Los Angeles, CA 90001" -164023,USB-C Charging Cable,1,11.95,03/30/19 14:22,"236 Church St, Los Angeles, CA 90001" -164024,Bose SoundSport Headphones,1,99.99,03/24/19 11:22,"792 Hickory St, Los Angeles, CA 90001" -164025,Wired Headphones,1,11.99,03/21/19 14:10,"188 Main St, Boston, MA 02215" -164026,Apple Airpods Headphones,1,150,03/14/19 19:09,"927 11th St, Portland, OR 97035" -164027,USB-C Charging Cable,1,11.95,03/29/19 19:45,"919 1st St, San Francisco, CA 94016" -164028,USB-C Charging Cable,1,11.95,03/27/19 21:04,"877 River St, Seattle, WA 98101" -164029,Wired Headphones,1,11.99,03/10/19 12:05,"303 Lake St, San Francisco, CA 94016" -164030,Apple Airpods Headphones,1,150,03/26/19 11:26,"393 13th St, Boston, MA 02215" -164031,Wired Headphones,1,11.99,03/03/19 02:12,"334 Lincoln St, New York City, NY 10001" -164032,34in Ultrawide Monitor,1,379.99,03/31/19 17:33,"329 Johnson St, San Francisco, CA 94016" -164033,20in Monitor,1,109.99,03/19/19 10:32,"778 6th St, Austin, TX 73301" -164034,USB-C Charging Cable,1,11.95,03/26/19 23:33,"534 11th St, Austin, TX 73301" -164035,Wired Headphones,1,11.99,03/03/19 22:57,"808 Lake St, Seattle, WA 98101" -164036,Apple Airpods Headphones,1,150,03/18/19 18:11,"612 Walnut St, Los Angeles, CA 90001" -164037,Lightning Charging Cable,1,14.95,03/30/19 14:42,"327 Church St, Los Angeles, CA 90001" -164038,Wired Headphones,1,11.99,03/24/19 10:21,"749 Hill St, Seattle, WA 98101" -164039,Wired Headphones,1,11.99,03/31/19 01:00,"995 Lincoln St, Los Angeles, CA 90001" -164040,Apple Airpods Headphones,1,150,03/24/19 12:09,"185 Park St, New York City, NY 10001" -164041,Bose SoundSport Headphones,1,99.99,03/01/19 22:56,"860 Washington St, Austin, TX 73301" -164042,ThinkPad Laptop,1,999.99,03/18/19 21:20,"965 6th St, Portland, OR 97035" -164043,Lightning Charging Cable,1,14.95,03/14/19 19:58,"690 Dogwood St, Seattle, WA 98101" -164044,ThinkPad Laptop,1,999.99,03/10/19 19:46,"911 Ridge St, Boston, MA 02215" -164045,AA Batteries (4-pack),1,3.84,03/19/19 11:16,"226 Jefferson St, San Francisco, CA 94016" -164046,Bose SoundSport Headphones,1,99.99,03/17/19 20:44,"837 Dogwood St, San Francisco, CA 94016" -164046,Bose SoundSport Headphones,1,99.99,03/17/19 20:44,"837 Dogwood St, San Francisco, CA 94016" -164047,Apple Airpods Headphones,1,150,03/26/19 19:41,"154 Forest St, Los Angeles, CA 90001" -164048,Lightning Charging Cable,1,14.95,03/28/19 19:31,"420 River St, Atlanta, GA 30301" -164049,34in Ultrawide Monitor,1,379.99,03/25/19 21:06,"772 Jackson St, San Francisco, CA 94016" -164050,27in 4K Gaming Monitor,1,389.99,03/30/19 17:00,"955 6th St, Seattle, WA 98101" -164051,Wired Headphones,1,11.99,03/28/19 19:18,"812 Maple St, Boston, MA 02215" -164052,34in Ultrawide Monitor,1,379.99,03/10/19 11:33,"927 Dogwood St, San Francisco, CA 94016" -164053,20in Monitor,1,109.99,03/19/19 17:37,"491 Spruce St, Seattle, WA 98101" -164054,Wired Headphones,1,11.99,03/11/19 15:41,"122 Ridge St, Portland, OR 97035" -164055,AAA Batteries (4-pack),1,2.99,03/02/19 22:32,"450 Forest St, Austin, TX 73301" -164056,Wired Headphones,1,11.99,03/09/19 19:13,"91 13th St, Los Angeles, CA 90001" -164057,AAA Batteries (4-pack),1,2.99,03/06/19 06:50,"149 Hickory St, Seattle, WA 98101" -164058,USB-C Charging Cable,1,11.95,03/19/19 14:56,"320 West St, Austin, TX 73301" -164059,Wired Headphones,1,11.99,03/23/19 18:18,"556 Main St, Los Angeles, CA 90001" -164060,USB-C Charging Cable,1,11.95,03/05/19 14:49,"679 South St, New York City, NY 10001" -164061,Lightning Charging Cable,1,14.95,03/22/19 15:35,"424 Center St, Portland, ME 04101" -164061,AAA Batteries (4-pack),2,2.99,03/22/19 15:35,"424 Center St, Portland, ME 04101" -164062,Lightning Charging Cable,1,14.95,03/07/19 16:32,"623 Wilson St, San Francisco, CA 94016" -164063,AAA Batteries (4-pack),3,2.99,03/02/19 20:38,"48 Ridge St, San Francisco, CA 94016" -164064,Macbook Pro Laptop,1,1700,03/12/19 00:22,"875 10th St, New York City, NY 10001" -164065,34in Ultrawide Monitor,1,379.99,03/10/19 23:16,"217 4th St, New York City, NY 10001" -164066,AA Batteries (4-pack),1,3.84,03/09/19 08:37,"471 Park St, New York City, NY 10001" -164067,Apple Airpods Headphones,1,150,03/30/19 13:15,"601 Spruce St, Austin, TX 73301" -164068,Wired Headphones,1,11.99,03/22/19 20:58,"413 Pine St, Seattle, WA 98101" -164069,20in Monitor,1,109.99,03/18/19 08:18,"181 2nd St, Boston, MA 02215" -164070,Wired Headphones,1,11.99,03/16/19 16:21,"830 Jackson St, Boston, MA 02215" -164071,AA Batteries (4-pack),1,3.84,03/16/19 14:56,"758 Hickory St, New York City, NY 10001" -164072,AA Batteries (4-pack),1,3.84,03/14/19 11:02,"575 Jackson St, San Francisco, CA 94016" -164072,USB-C Charging Cable,1,11.95,03/14/19 11:02,"575 Jackson St, San Francisco, CA 94016" -164073,iPhone,1,700,03/24/19 17:34,"628 6th St, Boston, MA 02215" -164074,AAA Batteries (4-pack),2,2.99,03/12/19 20:09,"921 West St, San Francisco, CA 94016" -164075,AA Batteries (4-pack),1,3.84,03/17/19 12:12,"1 9th St, San Francisco, CA 94016" -164076,Macbook Pro Laptop,1,1700,03/09/19 11:21,"908 Forest St, San Francisco, CA 94016" -164077,AAA Batteries (4-pack),1,2.99,03/31/19 14:06,"80 4th St, San Francisco, CA 94016" -164078,Lightning Charging Cable,1,14.95,03/23/19 12:24,"906 Lakeview St, San Francisco, CA 94016" -164079,AAA Batteries (4-pack),1,2.99,03/16/19 10:08,"222 Washington St, Seattle, WA 98101" -164080,Lightning Charging Cable,1,14.95,03/25/19 14:01,"543 9th St, San Francisco, CA 94016" -164081,Flatscreen TV,1,300,03/22/19 11:18,"202 Wilson St, New York City, NY 10001" -164082,USB-C Charging Cable,1,11.95,03/12/19 14:24,"246 Ridge St, San Francisco, CA 94016" -164083,Apple Airpods Headphones,1,150,03/03/19 09:24,"136 Center St, Austin, TX 73301" -164084,Lightning Charging Cable,1,14.95,03/21/19 18:17,"95 Lake St, Dallas, TX 75001" -164085,AAA Batteries (4-pack),1,2.99,03/11/19 22:04,"243 Elm St, Austin, TX 73301" -164086,USB-C Charging Cable,1,11.95,03/31/19 15:00,"29 Park St, Dallas, TX 75001" -164087,Wired Headphones,1,11.99,03/31/19 22:03,"450 5th St, Los Angeles, CA 90001" -164088,USB-C Charging Cable,1,11.95,03/18/19 18:13,"304 6th St, Los Angeles, CA 90001" -164089,AAA Batteries (4-pack),1,2.99,03/22/19 16:49,"96 Johnson St, San Francisco, CA 94016" -164090,Lightning Charging Cable,1,14.95,03/03/19 22:45,"898 Lincoln St, Los Angeles, CA 90001" -164091,Apple Airpods Headphones,1,150,03/05/19 20:25,"244 Pine St, Boston, MA 02215" -164092,Lightning Charging Cable,1,14.95,03/20/19 19:42,"710 Madison St, Los Angeles, CA 90001" -164093,AA Batteries (4-pack),1,3.84,03/11/19 22:04,"55 Walnut St, New York City, NY 10001" -164094,AAA Batteries (4-pack),1,2.99,03/29/19 10:45,"160 Jackson St, New York City, NY 10001" -164095,AA Batteries (4-pack),2,3.84,03/07/19 16:34,"795 Hill St, Portland, OR 97035" -164096,34in Ultrawide Monitor,1,379.99,03/22/19 20:36,"707 Center St, New York City, NY 10001" -164097,AA Batteries (4-pack),1,3.84,03/26/19 19:28,"384 4th St, Dallas, TX 75001" -164098,Lightning Charging Cable,1,14.95,03/16/19 10:36,"86 Maple St, Los Angeles, CA 90001" -164099,27in 4K Gaming Monitor,1,389.99,03/01/19 21:58,"374 Hill St, San Francisco, CA 94016" -164100,27in 4K Gaming Monitor,1,389.99,03/13/19 11:32,"571 Church St, Atlanta, GA 30301" -164101,AAA Batteries (4-pack),3,2.99,03/26/19 00:14,"154 Cherry St, San Francisco, CA 94016" -164102,34in Ultrawide Monitor,1,379.99,03/11/19 08:26,"508 West St, New York City, NY 10001" -164103,27in FHD Monitor,1,149.99,03/21/19 09:30,"62 Lake St, Los Angeles, CA 90001" -164104,AAA Batteries (4-pack),2,2.99,03/10/19 11:05,"802 Adams St, Los Angeles, CA 90001" -164105,iPhone,1,700,03/02/19 15:54,"374 Cherry St, Seattle, WA 98101" -164106,Flatscreen TV,1,300,03/31/19 13:37,"414 Wilson St, New York City, NY 10001" -164107,Apple Airpods Headphones,1,150,03/16/19 20:41,"874 Main St, Boston, MA 02215" -164108,USB-C Charging Cable,1,11.95,03/15/19 10:48,"872 Meadow St, Atlanta, GA 30301" -164109,AA Batteries (4-pack),1,3.84,03/23/19 09:48,"572 Center St, San Francisco, CA 94016" -164110,AA Batteries (4-pack),1,3.84,03/06/19 12:24,"744 Wilson St, Los Angeles, CA 90001" -164111,Wired Headphones,1,11.99,03/12/19 16:19,"838 Spruce St, Boston, MA 02215" -164112,Lightning Charging Cable,1,14.95,03/11/19 09:07,"660 Spruce St, Seattle, WA 98101" -164113,Wired Headphones,1,11.99,03/21/19 16:50,"688 Elm St, San Francisco, CA 94016" -164114,Lightning Charging Cable,1,14.95,03/16/19 18:36,"144 South St, New York City, NY 10001" -164115,AA Batteries (4-pack),1,3.84,03/28/19 11:57,"134 Lincoln St, New York City, NY 10001" -164116,iPhone,1,700,03/20/19 12:18,"607 Spruce St, New York City, NY 10001" -164117,27in 4K Gaming Monitor,1,389.99,03/30/19 11:40,"857 Madison St, Boston, MA 02215" -164118,Macbook Pro Laptop,1,1700,03/13/19 20:39,"167 Hill St, Portland, OR 97035" -164119,Wired Headphones,1,11.99,03/29/19 22:01,"372 Johnson St, Los Angeles, CA 90001" -164120,AAA Batteries (4-pack),1,2.99,03/05/19 14:11,"359 Willow St, San Francisco, CA 94016" -164121,Google Phone,1,600,03/07/19 21:30,"581 1st St, San Francisco, CA 94016" -164122,Lightning Charging Cable,1,14.95,03/25/19 00:10,"918 Lake St, San Francisco, CA 94016" -164123,Lightning Charging Cable,1,14.95,03/18/19 21:57,"908 Spruce St, Dallas, TX 75001" -164124,Lightning Charging Cable,1,14.95,03/20/19 18:47,"613 Forest St, Boston, MA 02215" -164125,Wired Headphones,1,11.99,03/12/19 10:57,"160 Park St, New York City, NY 10001" -164126,Lightning Charging Cable,1,14.95,03/23/19 18:13,"226 1st St, Austin, TX 73301" -164127,Apple Airpods Headphones,1,150,03/20/19 17:14,"255 Highland St, Austin, TX 73301" -164128,AA Batteries (4-pack),1,3.84,03/29/19 17:45,"703 9th St, Portland, OR 97035" -164129,USB-C Charging Cable,1,11.95,03/26/19 12:48,"827 North St, Los Angeles, CA 90001" -164130,AAA Batteries (4-pack),1,2.99,03/19/19 07:01,"338 Lakeview St, Atlanta, GA 30301" -164131,Lightning Charging Cable,1,14.95,03/16/19 16:28,"628 Lakeview St, Dallas, TX 75001" -164132,AA Batteries (4-pack),1,3.84,03/20/19 16:19,"636 Lakeview St, San Francisco, CA 94016" -164133,Macbook Pro Laptop,1,1700,03/21/19 14:07,"685 Lakeview St, Dallas, TX 75001" -164134,AA Batteries (4-pack),1,3.84,03/26/19 21:16,"255 Madison St, Los Angeles, CA 90001" -164135,iPhone,1,700,03/06/19 18:22,"885 12th St, San Francisco, CA 94016" -164136,27in FHD Monitor,1,149.99,03/08/19 11:20,"670 Johnson St, Seattle, WA 98101" -164137,34in Ultrawide Monitor,1,379.99,03/05/19 22:09,"181 Dogwood St, Los Angeles, CA 90001" -164138,AA Batteries (4-pack),1,3.84,03/02/19 05:59,"646 Spruce St, New York City, NY 10001" -164139,Bose SoundSport Headphones,1,99.99,03/06/19 11:03,"741 14th St, San Francisco, CA 94016" -164140,ThinkPad Laptop,1,999.99,03/16/19 21:59,"875 Chestnut St, Austin, TX 73301" -164141,Apple Airpods Headphones,1,150,03/17/19 21:07,"18 14th St, Boston, MA 02215" -164142,USB-C Charging Cable,1,11.95,03/12/19 14:26,"770 Church St, San Francisco, CA 94016" -164143,AAA Batteries (4-pack),1,2.99,03/02/19 13:23,"719 14th St, Austin, TX 73301" -164144,Apple Airpods Headphones,1,150,03/13/19 21:16,"696 Washington St, Portland, ME 04101" -164145,USB-C Charging Cable,1,11.95,03/16/19 21:33,"368 Lake St, Los Angeles, CA 90001" -164146,27in FHD Monitor,1,149.99,03/09/19 11:26,"44 Cherry St, Boston, MA 02215" -164147,Bose SoundSport Headphones,1,99.99,03/06/19 14:16,"217 Sunset St, Portland, OR 97035" -164148,AAA Batteries (4-pack),2,2.99,03/20/19 23:15,"710 7th St, Boston, MA 02215" -164149,AAA Batteries (4-pack),1,2.99,03/11/19 19:10,"707 9th St, Boston, MA 02215" -164150,AA Batteries (4-pack),1,3.84,03/30/19 08:49,"456 Johnson St, Austin, TX 73301" -164151,iPhone,1,700,03/19/19 19:56,"718 South St, Atlanta, GA 30301" -164152,27in FHD Monitor,1,149.99,03/20/19 20:34,"438 Cedar St, New York City, NY 10001" -164153,Wired Headphones,1,11.99,03/11/19 22:28,"184 Pine St, New York City, NY 10001" -164154,Wired Headphones,1,11.99,03/06/19 08:34,"521 Lakeview St, Los Angeles, CA 90001" -164155,AA Batteries (4-pack),1,3.84,03/28/19 12:53,"88 Sunset St, San Francisco, CA 94016" -164156,Wired Headphones,2,11.99,03/29/19 13:08,"447 Lake St, Los Angeles, CA 90001" -164157,Wired Headphones,1,11.99,03/29/19 06:44,"965 Cedar St, Portland, ME 04101" -164158,USB-C Charging Cable,1,11.95,03/17/19 20:07,"860 Forest St, New York City, NY 10001" -164159,AA Batteries (4-pack),2,3.84,03/21/19 19:55,"747 Park St, Los Angeles, CA 90001" -164160,34in Ultrawide Monitor,1,379.99,03/30/19 16:25,"493 Sunset St, Los Angeles, CA 90001" -164161,AAA Batteries (4-pack),1,2.99,03/05/19 12:27,"193 Cherry St, San Francisco, CA 94016" -164162,27in FHD Monitor,1,149.99,03/16/19 17:48,"472 Cedar St, New York City, NY 10001" -164163,27in FHD Monitor,1,149.99,03/22/19 11:03,"249 Sunset St, Boston, MA 02215" -164164,Bose SoundSport Headphones,1,99.99,03/18/19 11:10,"215 Highland St, New York City, NY 10001" -164165,Vareebadd Phone,1,400,03/15/19 15:54,"720 Meadow St, San Francisco, CA 94016" -164166,Macbook Pro Laptop,1,1700,03/26/19 13:49,"899 Sunset St, San Francisco, CA 94016" -164167,USB-C Charging Cable,1,11.95,03/07/19 20:57,"26 14th St, San Francisco, CA 94016" -164168,AAA Batteries (4-pack),3,2.99,03/31/19 00:07,"398 Center St, Austin, TX 73301" -164169,USB-C Charging Cable,1,11.95,03/05/19 21:28,"983 Cherry St, San Francisco, CA 94016" -164170,27in 4K Gaming Monitor,1,389.99,03/17/19 11:47,"2 Hill St, San Francisco, CA 94016" -164171,Wired Headphones,1,11.99,03/30/19 09:17,"54 Hickory St, Los Angeles, CA 90001" -164172,Bose SoundSport Headphones,1,99.99,03/14/19 14:17,"385 Lincoln St, New York City, NY 10001" -164173,LG Dryer,1,600.0,03/24/19 14:46,"388 Lake St, New York City, NY 10001" -164174,iPhone,1,700,03/27/19 22:16,"483 Cherry St, Dallas, TX 75001" -164175,Lightning Charging Cable,1,14.95,03/04/19 16:25,"89 4th St, Austin, TX 73301" -164176,USB-C Charging Cable,1,11.95,03/02/19 22:34,"4 Wilson St, Seattle, WA 98101" -164177,AA Batteries (4-pack),1,3.84,03/05/19 18:04,"121 Chestnut St, Los Angeles, CA 90001" -164178,AA Batteries (4-pack),1,3.84,03/02/19 11:52,"742 2nd St, Portland, ME 04101" -164179,AA Batteries (4-pack),1,3.84,03/07/19 19:23,"527 Washington St, Austin, TX 73301" -164180,Lightning Charging Cable,1,14.95,03/01/19 07:57,"150 Hickory St, Atlanta, GA 30301" -164181,Apple Airpods Headphones,1,150,03/23/19 10:28,"319 14th St, San Francisco, CA 94016" -164182,Wired Headphones,1,11.99,03/30/19 12:54,"376 Meadow St, Boston, MA 02215" -164183,AA Batteries (4-pack),1,3.84,03/07/19 14:26,"120 Center St, San Francisco, CA 94016" -164184,20in Monitor,1,109.99,03/04/19 19:19,"452 5th St, Los Angeles, CA 90001" -164185,Wired Headphones,1,11.99,03/15/19 11:26,"168 14th St, Boston, MA 02215" -164186,iPhone,1,700,03/15/19 22:25,"297 12th St, Los Angeles, CA 90001" -164187,USB-C Charging Cable,1,11.95,03/26/19 13:40,"780 13th St, Seattle, WA 98101" -164188,USB-C Charging Cable,1,11.95,03/02/19 18:16,"947 Center St, Los Angeles, CA 90001" -164189,Lightning Charging Cable,1,14.95,03/22/19 10:57,"5 13th St, Austin, TX 73301" -164190,Wired Headphones,1,11.99,03/28/19 22:57,"225 Cedar St, Atlanta, GA 30301" -164191,Lightning Charging Cable,1,14.95,03/17/19 18:35,"208 Maple St, Seattle, WA 98101" -164192,ThinkPad Laptop,1,999.99,03/28/19 20:11,"79 Ridge St, San Francisco, CA 94016" -164193,Bose SoundSport Headphones,1,99.99,03/03/19 12:08,"742 Spruce St, San Francisco, CA 94016" -164194,Lightning Charging Cable,1,14.95,03/05/19 23:11,"443 10th St, San Francisco, CA 94016" -164195,Apple Airpods Headphones,1,150,03/26/19 12:28,"658 Sunset St, Boston, MA 02215" -164196,AAA Batteries (4-pack),1,2.99,03/03/19 12:57,"354 Lakeview St, San Francisco, CA 94016" -164197,USB-C Charging Cable,1,11.95,03/05/19 13:29,"637 Park St, San Francisco, CA 94016" -164198,34in Ultrawide Monitor,1,379.99,03/15/19 13:12,"156 7th St, San Francisco, CA 94016" -164199,Bose SoundSport Headphones,1,99.99,03/08/19 21:02,"550 Cedar St, Los Angeles, CA 90001" -164200,AA Batteries (4-pack),2,3.84,03/14/19 22:58,"871 Cherry St, San Francisco, CA 94016" -164201,Apple Airpods Headphones,1,150,03/02/19 11:24,"962 8th St, New York City, NY 10001" -164202,AA Batteries (4-pack),1,3.84,03/11/19 11:00,"755 Cedar St, Boston, MA 02215" -164203,AA Batteries (4-pack),1,3.84,03/20/19 01:56,"495 12th St, San Francisco, CA 94016" -164204,Apple Airpods Headphones,1,150,03/21/19 13:02,"217 9th St, Atlanta, GA 30301" -164205,27in FHD Monitor,1,149.99,03/08/19 18:35,"700 Pine St, Los Angeles, CA 90001" -164206,Wired Headphones,1,11.99,03/03/19 15:54,"971 11th St, San Francisco, CA 94016" -164207,AA Batteries (4-pack),1,3.84,03/08/19 19:20,"107 Hill St, San Francisco, CA 94016" -164208,AA Batteries (4-pack),1,3.84,03/29/19 13:16,"995 Dogwood St, Portland, ME 04101" -164209,Bose SoundSport Headphones,1,99.99,03/15/19 07:56,"766 Johnson St, San Francisco, CA 94016" -164210,iPhone,1,700,03/07/19 16:44,"914 Meadow St, San Francisco, CA 94016" -164211,27in FHD Monitor,1,149.99,03/11/19 20:10,"541 10th St, Portland, OR 97035" -164212,Bose SoundSport Headphones,1,99.99,03/22/19 18:08,"55 Spruce St, Portland, OR 97035" -164213,AAA Batteries (4-pack),1,2.99,03/06/19 13:25,"800 Maple St, Dallas, TX 75001" -164214,Lightning Charging Cable,1,14.95,03/23/19 15:16,"78 Washington St, Seattle, WA 98101" -164215,iPhone,1,700,03/03/19 19:46,"951 Maple St, Portland, OR 97035" -164216,AA Batteries (4-pack),1,3.84,03/24/19 20:14,"761 Willow St, Atlanta, GA 30301" -164217,AA Batteries (4-pack),1,3.84,03/21/19 19:46,"363 Wilson St, Boston, MA 02215" -164218,Wired Headphones,1,11.99,03/15/19 10:40,"841 2nd St, Los Angeles, CA 90001" -164219,Macbook Pro Laptop,1,1700,03/09/19 11:28,"153 6th St, Los Angeles, CA 90001" -164220,Bose SoundSport Headphones,1,99.99,03/28/19 21:54,"816 Center St, Seattle, WA 98101" -164221,USB-C Charging Cable,1,11.95,03/10/19 16:54,"71 Chestnut St, Atlanta, GA 30301" -164222,AAA Batteries (4-pack),2,2.99,03/15/19 13:28,"52 Elm St, Seattle, WA 98101" -164223,20in Monitor,1,109.99,03/05/19 17:30,"507 8th St, Atlanta, GA 30301" -164224,Wired Headphones,1,11.99,03/08/19 20:06,"904 1st St, Boston, MA 02215" -164225,Bose SoundSport Headphones,1,99.99,03/29/19 16:15,"52 Pine St, Portland, OR 97035" -164226,AAA Batteries (4-pack),1,2.99,03/01/19 13:25,"378 Johnson St, Atlanta, GA 30301" -164227,AA Batteries (4-pack),3,3.84,03/25/19 23:29,"890 Forest St, Atlanta, GA 30301" -164228,Wired Headphones,1,11.99,03/05/19 14:53,"808 Chestnut St, Seattle, WA 98101" -164229,Google Phone,1,600,03/30/19 14:12,"787 Lakeview St, Dallas, TX 75001" -164230,27in 4K Gaming Monitor,1,389.99,03/30/19 10:41,"971 8th St, Los Angeles, CA 90001" -164231,34in Ultrawide Monitor,1,379.99,03/14/19 10:38,"598 8th St, Los Angeles, CA 90001" -164232,Wired Headphones,1,11.99,03/21/19 08:58,"771 Hill St, Boston, MA 02215" -164233,Google Phone,1,600,03/21/19 19:59,"30 Lincoln St, New York City, NY 10001" -164233,USB-C Charging Cable,1,11.95,03/21/19 19:59,"30 Lincoln St, New York City, NY 10001" -164234,AAA Batteries (4-pack),2,2.99,03/09/19 21:54,"226 5th St, New York City, NY 10001" -164235,AA Batteries (4-pack),2,3.84,03/23/19 11:01,"329 9th St, Seattle, WA 98101" -164236,USB-C Charging Cable,1,11.95,03/07/19 06:49,"931 12th St, Seattle, WA 98101" -164237,AAA Batteries (4-pack),1,2.99,03/16/19 09:51,"905 Cherry St, Atlanta, GA 30301" -164238,USB-C Charging Cable,1,11.95,03/30/19 20:55,"969 Cedar St, Los Angeles, CA 90001" -164239,Lightning Charging Cable,1,14.95,03/24/19 14:28,"34 Park St, San Francisco, CA 94016" -164240,Apple Airpods Headphones,1,150,03/13/19 18:45,"521 5th St, Dallas, TX 75001" -164241,USB-C Charging Cable,1,11.95,03/24/19 09:43,"118 Park St, Boston, MA 02215" -164242,34in Ultrawide Monitor,1,379.99,03/25/19 21:26,"373 4th St, Portland, ME 04101" -164242,AA Batteries (4-pack),1,3.84,03/25/19 21:26,"373 4th St, Portland, ME 04101" -164243,Lightning Charging Cable,1,14.95,03/31/19 22:08,"335 10th St, Boston, MA 02215" -164244,Lightning Charging Cable,1,14.95,03/04/19 11:47,"427 9th St, San Francisco, CA 94016" -164245,34in Ultrawide Monitor,1,379.99,03/12/19 13:29,"447 Cedar St, San Francisco, CA 94016" -,,,,, -164246,AAA Batteries (4-pack),5,2.99,03/17/19 15:45,"673 Willow St, Los Angeles, CA 90001" -164247,34in Ultrawide Monitor,1,379.99,03/18/19 18:18,"215 14th St, San Francisco, CA 94016" -164248,27in 4K Gaming Monitor,1,389.99,03/28/19 18:01,"155 Lakeview St, Los Angeles, CA 90001" -164249,USB-C Charging Cable,1,11.95,03/20/19 09:35,"495 Jackson St, Atlanta, GA 30301" -164250,Apple Airpods Headphones,1,150,03/31/19 08:56,"109 Jackson St, Atlanta, GA 30301" -164251,USB-C Charging Cable,1,11.95,03/09/19 15:39,"658 13th St, Los Angeles, CA 90001" -164252,AA Batteries (4-pack),3,3.84,03/11/19 18:51,"745 Lakeview St, Dallas, TX 75001" -164253,Apple Airpods Headphones,1,150,03/01/19 16:01,"615 Forest St, San Francisco, CA 94016" -164254,34in Ultrawide Monitor,1,379.99,03/26/19 08:44,"885 South St, Seattle, WA 98101" -164255,20in Monitor,1,109.99,03/25/19 22:33,"44 12th St, Boston, MA 02215" -164256,34in Ultrawide Monitor,1,379.99,03/25/19 09:46,"325 Maple St, Los Angeles, CA 90001" -164257,USB-C Charging Cable,2,11.95,03/23/19 21:22,"544 Willow St, Boston, MA 02215" -164258,Wired Headphones,1,11.99,03/23/19 14:08,"951 Sunset St, Los Angeles, CA 90001" -164259,27in 4K Gaming Monitor,1,389.99,03/25/19 22:54,"384 5th St, Austin, TX 73301" -164260,AAA Batteries (4-pack),3,2.99,03/21/19 11:31,"749 Highland St, San Francisco, CA 94016" -164261,27in 4K Gaming Monitor,1,389.99,03/13/19 14:30,"797 Jefferson St, Los Angeles, CA 90001" -164262,Lightning Charging Cable,1,14.95,03/08/19 14:05,"331 Sunset St, Los Angeles, CA 90001" -164263,Lightning Charging Cable,1,14.95,03/08/19 21:31,"8 5th St, Seattle, WA 98101" -164264,27in 4K Gaming Monitor,1,389.99,03/25/19 19:24,"328 2nd St, San Francisco, CA 94016" -164265,Lightning Charging Cable,1,14.95,03/31/19 00:42,"362 Hill St, Los Angeles, CA 90001" -164265,Flatscreen TV,1,300,03/31/19 00:42,"362 Hill St, Los Angeles, CA 90001" -164266,Macbook Pro Laptop,1,1700,03/22/19 22:51,"887 Hickory St, Boston, MA 02215" -164267,Lightning Charging Cable,1,14.95,03/18/19 06:37,"343 River St, Los Angeles, CA 90001" -164268,34in Ultrawide Monitor,1,379.99,03/19/19 11:23,"656 14th St, New York City, NY 10001" -164269,Wired Headphones,1,11.99,03/07/19 08:34,"662 4th St, Los Angeles, CA 90001" -164270,iPhone,1,700,03/31/19 15:54,"228 River St, San Francisco, CA 94016" -164271,Google Phone,1,600,03/19/19 09:47,"350 7th St, Portland, OR 97035" -164272,LG Washing Machine,1,600.0,03/20/19 12:51,"707 11th St, San Francisco, CA 94016" -164273,iPhone,1,700,03/15/19 10:57,"915 Highland St, San Francisco, CA 94016" -164273,Lightning Charging Cable,1,14.95,03/15/19 10:57,"915 Highland St, San Francisco, CA 94016" -164274,Wired Headphones,1,11.99,03/25/19 20:29,"597 4th St, Los Angeles, CA 90001" -164275,AA Batteries (4-pack),2,3.84,03/29/19 22:51,"580 7th St, Los Angeles, CA 90001" -164276,27in FHD Monitor,1,149.99,03/31/19 23:13,"961 Spruce St, Austin, TX 73301" -164277,AAA Batteries (4-pack),1,2.99,03/22/19 19:36,"410 Hickory St, San Francisco, CA 94016" -164278,34in Ultrawide Monitor,1,379.99,03/14/19 08:31,"26 Hickory St, Boston, MA 02215" -164279,USB-C Charging Cable,1,11.95,03/12/19 11:09,"709 12th St, Dallas, TX 75001" -164280,34in Ultrawide Monitor,1,379.99,03/01/19 23:46,"476 Park St, Los Angeles, CA 90001" -164281,Wired Headphones,1,11.99,03/05/19 11:28,"700 4th St, Portland, OR 97035" -164282,Lightning Charging Cable,2,14.95,03/31/19 13:27,"223 West St, San Francisco, CA 94016" -164283,AA Batteries (4-pack),1,3.84,03/15/19 14:17,"118 Elm St, Atlanta, GA 30301" -164284,27in FHD Monitor,1,149.99,03/21/19 11:16,"963 Spruce St, New York City, NY 10001" -164285,20in Monitor,1,109.99,03/24/19 18:56,"132 Lincoln St, Portland, ME 04101" -164286,USB-C Charging Cable,1,11.95,03/18/19 22:55,"199 Jackson St, San Francisco, CA 94016" -164287,34in Ultrawide Monitor,1,379.99,03/23/19 16:29,"706 Church St, Dallas, TX 75001" -164288,AAA Batteries (4-pack),1,2.99,03/19/19 17:47,"196 Chestnut St, New York City, NY 10001" -164289,USB-C Charging Cable,1,11.95,03/19/19 11:33,"168 4th St, Austin, TX 73301" -164290,Bose SoundSport Headphones,1,99.99,03/29/19 05:38,"878 Johnson St, Los Angeles, CA 90001" -164291,USB-C Charging Cable,1,11.95,03/06/19 12:18,"294 South St, Portland, OR 97035" -164292,Apple Airpods Headphones,1,150,03/28/19 21:34,"209 6th St, New York City, NY 10001" -164293,20in Monitor,1,109.99,03/28/19 07:58,"397 Jackson St, Los Angeles, CA 90001" -164294,Lightning Charging Cable,1,14.95,03/18/19 20:31,"928 Park St, San Francisco, CA 94016" -164295,AA Batteries (4-pack),2,3.84,03/07/19 18:36,"838 Hickory St, Portland, OR 97035" -164296,Wired Headphones,1,11.99,03/25/19 20:40,"923 Main St, San Francisco, CA 94016" -164297,Google Phone,1,600,03/03/19 18:23,"699 Forest St, Austin, TX 73301" -164298,ThinkPad Laptop,1,999.99,03/05/19 19:46,"693 Pine St, Los Angeles, CA 90001" -164299,Apple Airpods Headphones,1,150,03/18/19 03:43,"720 Main St, Seattle, WA 98101" -164300,AA Batteries (4-pack),1,3.84,03/28/19 16:52,"386 Ridge St, San Francisco, CA 94016" -164301,Wired Headphones,1,11.99,03/22/19 08:48,"624 8th St, San Francisco, CA 94016" -164302,Lightning Charging Cable,1,14.95,03/26/19 20:41,"722 2nd St, Portland, OR 97035" -164303,Lightning Charging Cable,1,14.95,03/25/19 15:09,"216 North St, Los Angeles, CA 90001" -164304,AA Batteries (4-pack),1,3.84,03/06/19 17:47,"495 6th St, San Francisco, CA 94016" -164305,Apple Airpods Headphones,1,150,03/16/19 11:06,"435 Cedar St, Atlanta, GA 30301" -164306,Apple Airpods Headphones,1,150,03/01/19 17:02,"827 Chestnut St, Boston, MA 02215" -164307,Apple Airpods Headphones,1,150,03/15/19 12:12,"762 Johnson St, Los Angeles, CA 90001" -164308,Bose SoundSport Headphones,1,99.99,03/21/19 17:43,"719 North St, San Francisco, CA 94016" -164309,Wired Headphones,1,11.99,03/06/19 17:27,"239 10th St, New York City, NY 10001" -164309,AAA Batteries (4-pack),3,2.99,03/06/19 17:27,"239 10th St, New York City, NY 10001" -164310,AAA Batteries (4-pack),1,2.99,03/01/19 17:29,"158 13th St, Austin, TX 73301" -164311,AA Batteries (4-pack),1,3.84,03/19/19 18:35,"504 Highland St, San Francisco, CA 94016" -164312,Apple Airpods Headphones,1,150,03/13/19 18:34,"111 Walnut St, San Francisco, CA 94016" -164313,AAA Batteries (4-pack),1,2.99,03/26/19 09:24,"998 Lincoln St, Los Angeles, CA 90001" -164314,Bose SoundSport Headphones,1,99.99,03/24/19 19:26,"799 2nd St, San Francisco, CA 94016" -164315,27in 4K Gaming Monitor,1,389.99,03/19/19 19:53,"929 Meadow St, New York City, NY 10001" -164316,Wired Headphones,1,11.99,03/02/19 17:28,"385 Johnson St, Portland, OR 97035" -164317,USB-C Charging Cable,1,11.95,03/02/19 13:47,"234 Jefferson St, Dallas, TX 75001" -164318,Wired Headphones,1,11.99,03/22/19 21:38,"888 Ridge St, Dallas, TX 75001" -164319,Apple Airpods Headphones,1,150,03/06/19 13:53,"479 Lake St, Atlanta, GA 30301" -164320,Bose SoundSport Headphones,1,99.99,03/23/19 14:24,"598 Hill St, Los Angeles, CA 90001" -164321,Google Phone,1,600,03/24/19 07:36,"492 Johnson St, San Francisco, CA 94016" -164322,AAA Batteries (4-pack),1,2.99,03/02/19 16:33,"42 Adams St, San Francisco, CA 94016" -164323,USB-C Charging Cable,1,11.95,03/15/19 21:08,"14 Lincoln St, Dallas, TX 75001" -164324,AAA Batteries (4-pack),2,2.99,03/28/19 20:03,"196 2nd St, San Francisco, CA 94016" -164325,27in 4K Gaming Monitor,1,389.99,03/17/19 18:40,"561 Ridge St, Seattle, WA 98101" -164326,Bose SoundSport Headphones,1,99.99,03/19/19 12:52,"220 Elm St, New York City, NY 10001" -164327,AA Batteries (4-pack),1,3.84,03/10/19 14:27,"715 14th St, Portland, OR 97035" -164328,Lightning Charging Cable,1,14.95,03/23/19 15:05,"572 7th St, San Francisco, CA 94016" -164329,LG Washing Machine,1,600.0,03/17/19 16:20,"387 Ridge St, Boston, MA 02215" -164330,AA Batteries (4-pack),2,3.84,03/20/19 18:37,"353 South St, Los Angeles, CA 90001" -164331,Apple Airpods Headphones,1,150,03/27/19 17:42,"496 7th St, San Francisco, CA 94016" -164331,20in Monitor,1,109.99,03/27/19 17:42,"496 7th St, San Francisco, CA 94016" -164332,AA Batteries (4-pack),2,3.84,03/20/19 16:51,"742 Cherry St, Dallas, TX 75001" -164333,27in FHD Monitor,1,149.99,03/31/19 10:01,"203 11th St, San Francisco, CA 94016" -164334,34in Ultrawide Monitor,1,379.99,03/18/19 10:27,"468 Chestnut St, San Francisco, CA 94016" -164335,Apple Airpods Headphones,1,150,03/21/19 11:56,"654 4th St, Los Angeles, CA 90001" -164336,ThinkPad Laptop,1,999.99,03/22/19 14:23,"233 2nd St, San Francisco, CA 94016" -164337,iPhone,1,700,03/08/19 09:26,"460 Willow St, San Francisco, CA 94016" -164337,Lightning Charging Cable,1,14.95,03/08/19 09:26,"460 Willow St, San Francisco, CA 94016" -164338,AA Batteries (4-pack),2,3.84,03/03/19 11:54,"541 Sunset St, Austin, TX 73301" -164339,Google Phone,1,600,03/08/19 13:28,"914 5th St, San Francisco, CA 94016" -164340,Apple Airpods Headphones,1,150,03/28/19 21:21,"545 Center St, Boston, MA 02215" -164341,AA Batteries (4-pack),3,3.84,03/19/19 10:52,"864 Pine St, New York City, NY 10001" -164342,Wired Headphones,1,11.99,03/07/19 08:17,"988 Jefferson St, Boston, MA 02215" -164343,Bose SoundSport Headphones,1,99.99,03/05/19 18:04,"92 Lincoln St, New York City, NY 10001" -164344,27in FHD Monitor,1,149.99,03/13/19 17:36,"11 Lincoln St, San Francisco, CA 94016" -164345,Flatscreen TV,1,300,03/13/19 18:49,"698 Pine St, Boston, MA 02215" -164346,27in FHD Monitor,1,149.99,03/25/19 11:21,"865 Center St, San Francisco, CA 94016" -164347,Bose SoundSport Headphones,1,99.99,03/02/19 19:06,"175 Maple St, New York City, NY 10001" -164348,iPhone,1,700,03/02/19 09:27,"570 Johnson St, Dallas, TX 75001" -164348,Wired Headphones,1,11.99,03/02/19 09:27,"570 Johnson St, Dallas, TX 75001" -164349,USB-C Charging Cable,1,11.95,03/14/19 18:54,"943 West St, Los Angeles, CA 90001" -164350,Lightning Charging Cable,1,14.95,03/24/19 10:26,"334 Willow St, Dallas, TX 75001" -164351,iPhone,1,700,03/14/19 14:55,"32 Dogwood St, San Francisco, CA 94016" -164351,Lightning Charging Cable,1,14.95,03/14/19 14:55,"32 Dogwood St, San Francisco, CA 94016" -164351,Wired Headphones,1,11.99,03/14/19 14:55,"32 Dogwood St, San Francisco, CA 94016" -164352,Bose SoundSport Headphones,1,99.99,03/23/19 12:00,"524 Main St, Dallas, TX 75001" -164353,Apple Airpods Headphones,1,150,03/10/19 14:31,"736 Madison St, Atlanta, GA 30301" -164354,USB-C Charging Cable,1,11.95,03/11/19 00:02,"657 North St, Los Angeles, CA 90001" -164355,Lightning Charging Cable,1,14.95,03/15/19 22:20,"694 Hill St, New York City, NY 10001" -164356,ThinkPad Laptop,1,999.99,03/05/19 11:41,"352 Meadow St, New York City, NY 10001" -164357,USB-C Charging Cable,1,11.95,03/23/19 19:14,"188 Forest St, San Francisco, CA 94016" -164358,Lightning Charging Cable,1,14.95,03/25/19 13:34,"379 Madison St, Boston, MA 02215" -164359,Apple Airpods Headphones,1,150,03/10/19 16:50,"140 Wilson St, Atlanta, GA 30301" -164360,Wired Headphones,2,11.99,03/09/19 12:56,"880 6th St, San Francisco, CA 94016" -164361,iPhone,1,700,03/11/19 00:13,"670 South St, Seattle, WA 98101" -164361,Wired Headphones,1,11.99,03/11/19 00:13,"670 South St, Seattle, WA 98101" -164362,Wired Headphones,1,11.99,03/24/19 14:32,"132 Adams St, Boston, MA 02215" -164363,Lightning Charging Cable,1,14.95,03/22/19 22:57,"449 River St, Boston, MA 02215" -164363,Bose SoundSport Headphones,1,99.99,03/22/19 22:57,"449 River St, Boston, MA 02215" -164364,Lightning Charging Cable,1,14.95,03/29/19 21:53,"608 Cedar St, Los Angeles, CA 90001" -164365,34in Ultrawide Monitor,1,379.99,03/13/19 00:54,"687 7th St, Los Angeles, CA 90001" -164366,27in FHD Monitor,1,149.99,03/30/19 18:30,"806 Center St, Atlanta, GA 30301" -164367,20in Monitor,1,109.99,03/16/19 14:08,"950 7th St, Los Angeles, CA 90001" -164368,AA Batteries (4-pack),1,3.84,03/16/19 20:05,"966 West St, Los Angeles, CA 90001" -164369,34in Ultrawide Monitor,1,379.99,03/10/19 20:40,"182 Adams St, San Francisco, CA 94016" -164370,ThinkPad Laptop,1,999.99,03/05/19 08:15,"403 Johnson St, Los Angeles, CA 90001" -164371,AA Batteries (4-pack),2,3.84,03/24/19 21:33,"157 11th St, Boston, MA 02215" -164372,Bose SoundSport Headphones,1,99.99,03/28/19 13:09,"605 Spruce St, New York City, NY 10001" -164373,USB-C Charging Cable,1,11.95,03/18/19 19:11,"445 7th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -164374,AAA Batteries (4-pack),2,2.99,03/29/19 11:28,"772 Pine St, New York City, NY 10001" -164375,Apple Airpods Headphones,1,150,03/28/19 14:26,"563 River St, San Francisco, CA 94016" -164376,Lightning Charging Cable,1,14.95,03/19/19 07:25,"373 North St, Seattle, WA 98101" -164377,USB-C Charging Cable,1,11.95,03/19/19 20:35,"49 South St, Dallas, TX 75001" -164378,Macbook Pro Laptop,1,1700,03/03/19 14:13,"80 Maple St, Portland, OR 97035" -164379,Lightning Charging Cable,1,14.95,03/10/19 21:48,"857 Hill St, Boston, MA 02215" -164380,Flatscreen TV,1,300,03/31/19 13:10,"947 Church St, San Francisco, CA 94016" -164381,USB-C Charging Cable,1,11.95,03/09/19 14:05,"702 6th St, San Francisco, CA 94016" -164382,Wired Headphones,1,11.99,03/29/19 18:45,"976 10th St, Boston, MA 02215" -164383,USB-C Charging Cable,1,11.95,03/15/19 20:54,"734 4th St, Boston, MA 02215" -164384,Macbook Pro Laptop,1,1700,03/18/19 18:18,"734 8th St, Los Angeles, CA 90001" -164385,27in 4K Gaming Monitor,1,389.99,03/05/19 22:57,"605 Wilson St, Dallas, TX 75001" -164386,USB-C Charging Cable,1,11.95,03/29/19 21:12,"518 Adams St, Los Angeles, CA 90001" -164387,AAA Batteries (4-pack),1,2.99,03/08/19 14:47,"251 2nd St, New York City, NY 10001" -164388,Bose SoundSport Headphones,1,99.99,03/17/19 20:39,"348 2nd St, Boston, MA 02215" -164389,AA Batteries (4-pack),1,3.84,03/31/19 13:24,"411 6th St, Dallas, TX 75001" -164390,AA Batteries (4-pack),1,3.84,03/15/19 13:57,"13 Madison St, New York City, NY 10001" -164391,iPhone,1,700,03/28/19 21:06,"675 Pine St, Dallas, TX 75001" -164392,USB-C Charging Cable,1,11.95,03/13/19 22:05,"295 Madison St, Boston, MA 02215" -164393,Apple Airpods Headphones,1,150,03/25/19 09:33,"912 Maple St, Atlanta, GA 30301" -164394,Bose SoundSport Headphones,1,99.99,03/08/19 09:08,"647 12th St, San Francisco, CA 94016" -164395,Bose SoundSport Headphones,1,99.99,03/09/19 21:30,"351 Meadow St, San Francisco, CA 94016" -164396,Wired Headphones,1,11.99,03/15/19 23:16,"617 Lakeview St, Dallas, TX 75001" -164397,Google Phone,1,600,03/03/19 19:56,"170 Church St, Los Angeles, CA 90001" -164398,Macbook Pro Laptop,1,1700,03/07/19 19:07,"791 North St, San Francisco, CA 94016" -164399,AA Batteries (4-pack),2,3.84,03/21/19 22:09,"585 Walnut St, Seattle, WA 98101" -164400,Bose SoundSport Headphones,1,99.99,03/31/19 05:53,"43 Chestnut St, New York City, NY 10001" -164401,iPhone,1,700,03/01/19 14:04,"69 13th St, Los Angeles, CA 90001" -164402,AA Batteries (4-pack),1,3.84,03/19/19 00:34,"435 Madison St, Atlanta, GA 30301" -164403,Wired Headphones,1,11.99,03/09/19 19:04,"438 12th St, Boston, MA 02215" -164404,AA Batteries (4-pack),1,3.84,03/29/19 16:14,"771 12th St, San Francisco, CA 94016" -164405,AAA Batteries (4-pack),1,2.99,03/11/19 19:19,"837 Lake St, Los Angeles, CA 90001" -164406,AA Batteries (4-pack),1,3.84,03/24/19 19:32,"882 12th St, Dallas, TX 75001" -164407,27in FHD Monitor,1,149.99,03/09/19 13:42,"850 Jefferson St, New York City, NY 10001" -164408,AAA Batteries (4-pack),1,2.99,03/02/19 11:56,"965 Willow St, Atlanta, GA 30301" -164409,Google Phone,1,600,03/26/19 19:43,"841 River St, Los Angeles, CA 90001" -164410,iPhone,1,700,03/08/19 17:00,"623 7th St, San Francisco, CA 94016" -164411,iPhone,1,700,03/14/19 18:41,"907 Jackson St, San Francisco, CA 94016" -164412,Apple Airpods Headphones,1,150,03/01/19 17:48,"758 2nd St, Los Angeles, CA 90001" -164413,AA Batteries (4-pack),1,3.84,03/29/19 21:07,"994 South St, Portland, OR 97035" -164414,USB-C Charging Cable,1,11.95,03/06/19 14:03,"194 Lakeview St, Los Angeles, CA 90001" -164415,USB-C Charging Cable,1,11.95,03/28/19 19:48,"200 8th St, New York City, NY 10001" -164416,USB-C Charging Cable,1,11.95,03/04/19 03:21,"777 West St, Seattle, WA 98101" -164417,USB-C Charging Cable,1,11.95,03/07/19 01:25,"634 4th St, Boston, MA 02215" -164418,34in Ultrawide Monitor,1,379.99,03/26/19 10:23,"336 Dogwood St, Atlanta, GA 30301" -164419,AA Batteries (4-pack),1,3.84,03/31/19 00:24,"316 Johnson St, San Francisco, CA 94016" -164420,Bose SoundSport Headphones,1,99.99,03/14/19 12:01,"251 Walnut St, Los Angeles, CA 90001" -164421,27in FHD Monitor,1,149.99,03/28/19 12:04,"726 7th St, Portland, OR 97035" -164422,AA Batteries (4-pack),1,3.84,03/10/19 14:43,"55 10th St, Atlanta, GA 30301" -164423,27in 4K Gaming Monitor,1,389.99,03/15/19 20:33,"496 South St, New York City, NY 10001" -164424,27in FHD Monitor,1,149.99,03/02/19 10:44,"903 10th St, Los Angeles, CA 90001" -164425,Lightning Charging Cable,1,14.95,03/09/19 17:42,"917 Lincoln St, New York City, NY 10001" -164426,Wired Headphones,1,11.99,03/27/19 08:02,"879 Madison St, San Francisco, CA 94016" -164427,ThinkPad Laptop,1,999.99,03/08/19 19:04,"587 Main St, San Francisco, CA 94016" -164428,ThinkPad Laptop,1,999.99,03/21/19 13:47,"314 Park St, New York City, NY 10001" -164429,AAA Batteries (4-pack),1,2.99,03/27/19 13:43,"619 Ridge St, Boston, MA 02215" -164430,Bose SoundSport Headphones,1,99.99,03/14/19 06:39,"629 Madison St, San Francisco, CA 94016" -164431,USB-C Charging Cable,2,11.95,03/08/19 00:02,"534 Jefferson St, Portland, ME 04101" -164432,AA Batteries (4-pack),1,3.84,03/18/19 09:50,"125 Lake St, Atlanta, GA 30301" -164433,USB-C Charging Cable,1,11.95,03/19/19 19:01,"571 1st St, San Francisco, CA 94016" -164434,AAA Batteries (4-pack),1,2.99,03/21/19 11:47,"888 Pine St, Los Angeles, CA 90001" -164435,Apple Airpods Headphones,1,150,03/24/19 12:37,"112 Adams St, Atlanta, GA 30301" -164436,Macbook Pro Laptop,1,1700,03/12/19 09:51,"503 Walnut St, Atlanta, GA 30301" -164437,27in FHD Monitor,1,149.99,03/02/19 21:00,"826 14th St, San Francisco, CA 94016" -164438,AA Batteries (4-pack),2,3.84,03/29/19 11:08,"834 Park St, Dallas, TX 75001" -164439,USB-C Charging Cable,1,11.95,03/23/19 20:49,"994 North St, Los Angeles, CA 90001" -164440,Lightning Charging Cable,1,14.95,03/09/19 20:37,"901 Johnson St, San Francisco, CA 94016" -164441,iPhone,1,700,03/19/19 19:54,"990 Willow St, New York City, NY 10001" -164441,Lightning Charging Cable,1,14.95,03/19/19 19:54,"990 Willow St, New York City, NY 10001" -164442,AA Batteries (4-pack),1,3.84,03/27/19 10:32,"674 Cherry St, Atlanta, GA 30301" -164443,USB-C Charging Cable,1,11.95,03/27/19 19:08,"624 Park St, Los Angeles, CA 90001" -164444,USB-C Charging Cable,1,11.95,03/22/19 11:59,"640 Pine St, Dallas, TX 75001" -164445,AAA Batteries (4-pack),2,2.99,03/26/19 07:33,"838 6th St, San Francisco, CA 94016" -164446,Wired Headphones,1,11.99,03/01/19 09:51,"27 Church St, San Francisco, CA 94016" -164447,USB-C Charging Cable,1,11.95,03/08/19 20:47,"182 Pine St, Seattle, WA 98101" -164448,34in Ultrawide Monitor,1,379.99,03/04/19 20:43,"555 5th St, Seattle, WA 98101" -164449,USB-C Charging Cable,1,11.95,03/13/19 22:16,"305 Walnut St, New York City, NY 10001" -164450,USB-C Charging Cable,1,11.95,03/11/19 07:45,"332 Walnut St, New York City, NY 10001" -164451,Apple Airpods Headphones,1,150,03/09/19 01:40,"210 6th St, San Francisco, CA 94016" -164452,USB-C Charging Cable,1,11.95,03/20/19 00:48,"143 Jackson St, San Francisco, CA 94016" -164453,USB-C Charging Cable,1,11.95,03/01/19 20:03,"183 7th St, Los Angeles, CA 90001" -164454,Google Phone,1,600,03/23/19 07:11,"42 11th St, Atlanta, GA 30301" -164454,Bose SoundSport Headphones,1,99.99,03/23/19 07:11,"42 11th St, Atlanta, GA 30301" -164455,Lightning Charging Cable,1,14.95,03/09/19 08:49,"890 Highland St, Los Angeles, CA 90001" -164456,27in FHD Monitor,1,149.99,03/17/19 19:37,"677 Hickory St, New York City, NY 10001" -164457,Wired Headphones,1,11.99,03/27/19 21:24,"835 West St, New York City, NY 10001" -164458,Lightning Charging Cable,1,14.95,03/01/19 10:16,"598 4th St, New York City, NY 10001" -164459,AAA Batteries (4-pack),1,2.99,03/29/19 16:00,"520 Adams St, San Francisco, CA 94016" -164460,Wired Headphones,1,11.99,03/15/19 10:11,"553 13th St, Seattle, WA 98101" -164461,AAA Batteries (4-pack),1,2.99,03/10/19 21:27,"932 14th St, San Francisco, CA 94016" -164462,Bose SoundSport Headphones,1,99.99,03/04/19 08:27,"520 Sunset St, Portland, OR 97035" -164463,USB-C Charging Cable,2,11.95,03/07/19 21:39,"657 8th St, New York City, NY 10001" -164464,Lightning Charging Cable,1,14.95,03/13/19 10:42,"787 Dogwood St, San Francisco, CA 94016" -164465,USB-C Charging Cable,1,11.95,03/05/19 16:48,"628 Lakeview St, San Francisco, CA 94016" -164466,AA Batteries (4-pack),1,3.84,03/09/19 17:42,"799 Elm St, Atlanta, GA 30301" -164467,Lightning Charging Cable,1,14.95,03/31/19 14:08,"149 Cedar St, Los Angeles, CA 90001" -164468,Google Phone,1,600,03/06/19 19:06,"572 4th St, Los Angeles, CA 90001" -164468,Wired Headphones,1,11.99,03/06/19 19:06,"572 4th St, Los Angeles, CA 90001" -164469,Wired Headphones,1,11.99,03/29/19 18:32,"412 9th St, Dallas, TX 75001" -164470,AA Batteries (4-pack),2,3.84,03/12/19 15:48,"19 2nd St, Boston, MA 02215" -164471,USB-C Charging Cable,1,11.95,03/07/19 21:26,"691 Washington St, San Francisco, CA 94016" -164472,34in Ultrawide Monitor,1,379.99,03/27/19 21:07,"618 River St, Seattle, WA 98101" -164473,AAA Batteries (4-pack),2,2.99,03/14/19 20:08,"708 Sunset St, Los Angeles, CA 90001" -164474,Apple Airpods Headphones,1,150,03/25/19 21:32,"727 River St, Dallas, TX 75001" -164475,Bose SoundSport Headphones,1,99.99,03/23/19 21:59,"627 12th St, San Francisco, CA 94016" -164476,27in 4K Gaming Monitor,1,389.99,03/12/19 09:07,"680 Madison St, Dallas, TX 75001" -164477,AAA Batteries (4-pack),1,2.99,03/11/19 22:10,"452 Chestnut St, Portland, OR 97035" -164477,Wired Headphones,1,11.99,03/11/19 22:10,"452 Chestnut St, Portland, OR 97035" -164478,Apple Airpods Headphones,1,150,03/23/19 13:45,"284 Washington St, Atlanta, GA 30301" -164479,LG Washing Machine,1,600.0,03/10/19 10:26,"855 13th St, San Francisco, CA 94016" -164480,Lightning Charging Cable,1,14.95,03/29/19 18:28,"593 Ridge St, Austin, TX 73301" -164481,AAA Batteries (4-pack),1,2.99,03/01/19 14:36,"547 Center St, Boston, MA 02215" -164482,Apple Airpods Headphones,1,150,03/22/19 16:53,"564 6th St, Austin, TX 73301" -164483,AA Batteries (4-pack),1,3.84,03/05/19 21:59,"524 Walnut St, Los Angeles, CA 90001" -164484,Google Phone,1,600,03/31/19 16:10,"214 14th St, Los Angeles, CA 90001" -164484,USB-C Charging Cable,1,11.95,03/31/19 16:10,"214 14th St, Los Angeles, CA 90001" -164485,AA Batteries (4-pack),2,3.84,03/17/19 13:57,"770 Main St, Austin, TX 73301" -164486,Bose SoundSport Headphones,1,99.99,03/04/19 21:03,"753 Johnson St, Atlanta, GA 30301" -164487,AA Batteries (4-pack),1,3.84,03/14/19 20:43,"320 Chestnut St, New York City, NY 10001" -164488,34in Ultrawide Monitor,1,379.99,03/26/19 20:35,"460 Hill St, Seattle, WA 98101" -164489,Flatscreen TV,1,300,03/14/19 15:08,"655 Cherry St, San Francisco, CA 94016" -164490,Bose SoundSport Headphones,1,99.99,03/17/19 18:35,"835 14th St, Los Angeles, CA 90001" -164491,ThinkPad Laptop,1,999.99,03/04/19 11:45,"147 Highland St, Boston, MA 02215" -164492,AA Batteries (4-pack),2,3.84,03/24/19 14:51,"974 Jefferson St, San Francisco, CA 94016" -164493,Bose SoundSport Headphones,1,99.99,03/25/19 18:33,"986 Forest St, New York City, NY 10001" -164494,AA Batteries (4-pack),1,3.84,03/30/19 16:46,"612 11th St, San Francisco, CA 94016" -164495,Lightning Charging Cable,1,14.95,03/23/19 15:10,"606 Hill St, Seattle, WA 98101" -164496,Wired Headphones,1,11.99,03/10/19 07:30,"99 Main St, Portland, ME 04101" -164497,34in Ultrawide Monitor,1,379.99,03/29/19 10:11,"82 Hickory St, Atlanta, GA 30301" -164498,Lightning Charging Cable,1,14.95,03/26/19 12:53,"642 Park St, San Francisco, CA 94016" -164499,Google Phone,1,600,03/09/19 22:42,"900 Hickory St, Boston, MA 02215" -164500,AA Batteries (4-pack),1,3.84,03/06/19 21:44,"557 8th St, Los Angeles, CA 90001" -164501,20in Monitor,1,109.99,03/22/19 14:28,"263 2nd St, Los Angeles, CA 90001" -164502,Apple Airpods Headphones,1,150,03/30/19 19:48,"791 Park St, San Francisco, CA 94016" -164503,Lightning Charging Cable,1,14.95,03/06/19 20:02,"664 North St, San Francisco, CA 94016" -164504,Bose SoundSport Headphones,1,99.99,03/21/19 03:10,"302 Cedar St, Los Angeles, CA 90001" -164505,20in Monitor,1,109.99,03/19/19 12:53,"257 Maple St, Dallas, TX 75001" -164506,Bose SoundSport Headphones,1,99.99,03/09/19 11:54,"128 Sunset St, Boston, MA 02215" -164507,USB-C Charging Cable,1,11.95,03/09/19 17:16,"357 Adams St, Atlanta, GA 30301" -164508,27in 4K Gaming Monitor,1,389.99,03/23/19 09:18,"352 Center St, San Francisco, CA 94016" -164509,27in 4K Gaming Monitor,1,389.99,03/22/19 10:08,"467 11th St, Austin, TX 73301" -164510,AA Batteries (4-pack),1,3.84,03/12/19 13:04,"128 Hill St, San Francisco, CA 94016" -164511,Lightning Charging Cable,2,14.95,03/07/19 11:46,"972 River St, San Francisco, CA 94016" -164512,27in FHD Monitor,1,149.99,03/14/19 16:30,"783 Hickory St, New York City, NY 10001" -164513,AAA Batteries (4-pack),1,2.99,03/03/19 16:51,"930 Maple St, Los Angeles, CA 90001" -164514,27in FHD Monitor,1,149.99,03/16/19 09:55,"854 12th St, New York City, NY 10001" -164515,Macbook Pro Laptop,1,1700,03/02/19 17:07,"995 West St, San Francisco, CA 94016" -164516,Apple Airpods Headphones,1,150,03/16/19 18:06,"250 River St, Dallas, TX 75001" -164517,AAA Batteries (4-pack),1,2.99,03/15/19 18:12,"522 13th St, Austin, TX 73301" -164518,AAA Batteries (4-pack),2,2.99,03/15/19 20:10,"670 Adams St, San Francisco, CA 94016" -164519,Macbook Pro Laptop,1,1700,03/07/19 12:44,"247 1st St, San Francisco, CA 94016" -164520,Bose SoundSport Headphones,1,99.99,03/13/19 12:47,"890 10th St, Los Angeles, CA 90001" -164521,Bose SoundSport Headphones,1,99.99,03/04/19 11:25,"565 Main St, San Francisco, CA 94016" -164521,Flatscreen TV,1,300,03/04/19 11:25,"565 Main St, San Francisco, CA 94016" -164522,20in Monitor,1,109.99,03/29/19 23:20,"201 Lincoln St, Los Angeles, CA 90001" -164523,Apple Airpods Headphones,1,150,03/16/19 11:42,"395 11th St, Los Angeles, CA 90001" -164524,34in Ultrawide Monitor,1,379.99,03/15/19 12:32,"462 West St, Boston, MA 02215" -164525,USB-C Charging Cable,1,11.95,03/28/19 18:57,"493 Highland St, San Francisco, CA 94016" -164526,Lightning Charging Cable,1,14.95,03/30/19 21:08,"349 10th St, Seattle, WA 98101" -164527,USB-C Charging Cable,1,11.95,03/13/19 05:28,"257 Madison St, Dallas, TX 75001" -164528,Vareebadd Phone,1,400,03/16/19 06:52,"723 7th St, Los Angeles, CA 90001" -164529,Lightning Charging Cable,1,14.95,03/30/19 20:21,"923 Willow St, New York City, NY 10001" -164530,Bose SoundSport Headphones,1,99.99,03/01/19 20:32,"406 Pine St, San Francisco, CA 94016" -164531,AAA Batteries (4-pack),2,2.99,03/06/19 22:24,"426 12th St, San Francisco, CA 94016" -164532,Flatscreen TV,1,300,03/10/19 21:47,"929 Cedar St, Atlanta, GA 30301" -164533,AAA Batteries (4-pack),1,2.99,03/03/19 12:42,"369 Church St, Portland, OR 97035" -164534,USB-C Charging Cable,1,11.95,03/18/19 18:40,"625 Ridge St, Los Angeles, CA 90001" -164535,AA Batteries (4-pack),1,3.84,03/30/19 10:21,"801 Lincoln St, Dallas, TX 75001" -164536,AAA Batteries (4-pack),3,2.99,03/27/19 09:38,"913 Ridge St, Boston, MA 02215" -164537,27in 4K Gaming Monitor,1,389.99,03/04/19 10:06,"550 Adams St, San Francisco, CA 94016" -164538,USB-C Charging Cable,1,11.95,03/27/19 14:21,"425 Adams St, Atlanta, GA 30301" -164539,iPhone,1,700,03/01/19 13:21,"74 Elm St, San Francisco, CA 94016" -164540,27in 4K Gaming Monitor,1,389.99,03/30/19 15:16,"556 Spruce St, Boston, MA 02215" -164541,Google Phone,1,600,03/11/19 20:22,"987 7th St, Atlanta, GA 30301" -164541,USB-C Charging Cable,2,11.95,03/11/19 20:22,"987 7th St, Atlanta, GA 30301" -164542,27in 4K Gaming Monitor,1,389.99,03/15/19 12:33,"965 River St, Boston, MA 02215" -164543,27in 4K Gaming Monitor,1,389.99,03/31/19 13:34,"776 7th St, New York City, NY 10001" -164544,AA Batteries (4-pack),1,3.84,03/25/19 16:08,"596 Madison St, Boston, MA 02215" -164545,AAA Batteries (4-pack),1,2.99,03/12/19 22:20,"629 7th St, Boston, MA 02215" -164546,27in 4K Gaming Monitor,1,389.99,03/17/19 21:58,"268 11th St, San Francisco, CA 94016" -164547,AA Batteries (4-pack),2,3.84,03/13/19 08:41,"536 7th St, Portland, ME 04101" -164548,AA Batteries (4-pack),1,3.84,03/23/19 09:02,"503 Cherry St, Los Angeles, CA 90001" -164549,27in 4K Gaming Monitor,1,389.99,03/19/19 14:25,"237 Elm St, San Francisco, CA 94016" -164550,AAA Batteries (4-pack),2,2.99,03/15/19 17:22,"577 North St, Portland, OR 97035" -164551,Bose SoundSport Headphones,1,99.99,03/20/19 22:13,"547 Center St, San Francisco, CA 94016" -164552,27in FHD Monitor,1,149.99,03/12/19 01:37,"756 Lincoln St, Portland, ME 04101" -164553,AA Batteries (4-pack),1,3.84,03/06/19 11:35,"523 Washington St, Los Angeles, CA 90001" -164553,Bose SoundSport Headphones,1,99.99,03/06/19 11:35,"523 Washington St, Los Angeles, CA 90001" -164554,Lightning Charging Cable,1,14.95,03/09/19 11:49,"160 5th St, San Francisco, CA 94016" -164555,AAA Batteries (4-pack),2,2.99,03/12/19 07:55,"854 Maple St, San Francisco, CA 94016" -164555,USB-C Charging Cable,1,11.95,03/12/19 07:55,"854 Maple St, San Francisco, CA 94016" -164556,Lightning Charging Cable,1,14.95,03/04/19 18:05,"318 13th St, Boston, MA 02215" -164557,34in Ultrawide Monitor,1,379.99,03/07/19 17:20,"855 Church St, San Francisco, CA 94016" -164558,USB-C Charging Cable,1,11.95,03/17/19 18:39,"359 Lakeview St, Atlanta, GA 30301" -164559,AAA Batteries (4-pack),4,2.99,03/25/19 17:20,"585 Hickory St, Los Angeles, CA 90001" -164560,Google Phone,1,600,03/30/19 22:22,"215 Johnson St, Boston, MA 02215" -164561,34in Ultrawide Monitor,1,379.99,03/01/19 14:25,"548 13th St, New York City, NY 10001" -164562,34in Ultrawide Monitor,1,379.99,03/03/19 12:51,"305 Meadow St, Boston, MA 02215" -164563,Macbook Pro Laptop,1,1700,03/25/19 23:46,"122 Main St, Seattle, WA 98101" -164564,Bose SoundSport Headphones,1,99.99,03/12/19 19:45,"501 14th St, New York City, NY 10001" -164565,34in Ultrawide Monitor,1,379.99,03/30/19 10:49,"194 Willow St, San Francisco, CA 94016" -164566,Google Phone,1,600,03/17/19 14:39,"803 14th St, Dallas, TX 75001" -164567,USB-C Charging Cable,1,11.95,03/18/19 13:22,"105 Sunset St, Los Angeles, CA 90001" -164568,Lightning Charging Cable,1,14.95,03/27/19 20:09,"525 Spruce St, San Francisco, CA 94016" -164569,USB-C Charging Cable,1,11.95,03/18/19 09:21,"760 Lakeview St, New York City, NY 10001" -164570,Lightning Charging Cable,2,14.95,03/31/19 19:32,"359 11th St, New York City, NY 10001" -164571,27in FHD Monitor,1,149.99,03/02/19 16:13,"209 Pine St, San Francisco, CA 94016" -164572,27in FHD Monitor,1,149.99,03/05/19 20:48,"828 Jefferson St, Boston, MA 02215" -164573,27in 4K Gaming Monitor,1,389.99,03/20/19 13:51,"712 North St, New York City, NY 10001" -164574,Lightning Charging Cable,3,14.95,03/29/19 11:51,"503 9th St, Dallas, TX 75001" -164575,USB-C Charging Cable,1,11.95,03/27/19 19:12,"435 2nd St, Austin, TX 73301" -164576,Apple Airpods Headphones,1,150,03/21/19 16:52,"121 Jefferson St, San Francisco, CA 94016" -164577,USB-C Charging Cable,1,11.95,03/10/19 18:57,"728 6th St, Austin, TX 73301" -164578,20in Monitor,1,109.99,03/10/19 23:45,"313 11th St, San Francisco, CA 94016" -164579,27in FHD Monitor,1,149.99,03/01/19 12:31,"12 1st St, Atlanta, GA 30301" -164580,27in 4K Gaming Monitor,1,389.99,03/13/19 18:16,"987 Highland St, Los Angeles, CA 90001" -164581,Wired Headphones,1,11.99,03/15/19 22:37,"942 South St, San Francisco, CA 94016" -164582,34in Ultrawide Monitor,1,379.99,03/17/19 18:48,"114 13th St, San Francisco, CA 94016" -164583,Wired Headphones,1,11.99,03/24/19 22:03,"232 Main St, Boston, MA 02215" -164584,USB-C Charging Cable,1,11.95,03/20/19 09:19,"147 Main St, Austin, TX 73301" -164585,Lightning Charging Cable,1,14.95,03/12/19 12:20,"167 Wilson St, Atlanta, GA 30301" -164586,Apple Airpods Headphones,1,150,03/24/19 16:34,"343 Hill St, New York City, NY 10001" -164587,Lightning Charging Cable,1,14.95,03/16/19 16:36,"565 Hill St, Los Angeles, CA 90001" -164588,Bose SoundSport Headphones,1,99.99,03/04/19 16:52,"445 Jackson St, Boston, MA 02215" -164589,Lightning Charging Cable,1,14.95,03/13/19 11:40,"662 4th St, Seattle, WA 98101" -164590,Lightning Charging Cable,1,14.95,03/27/19 16:48,"963 Church St, Los Angeles, CA 90001" -164591,Flatscreen TV,1,300,03/21/19 20:39,"51 Wilson St, Los Angeles, CA 90001" -164592,AA Batteries (4-pack),1,3.84,03/21/19 22:13,"251 1st St, San Francisco, CA 94016" -164593,Bose SoundSport Headphones,1,99.99,03/16/19 11:49,"188 Center St, San Francisco, CA 94016" -164594,USB-C Charging Cable,1,11.95,03/06/19 21:53,"651 Cherry St, Los Angeles, CA 90001" -164595,Apple Airpods Headphones,1,150,03/10/19 22:15,"718 Walnut St, Austin, TX 73301" -164596,AA Batteries (4-pack),1,3.84,03/21/19 13:31,"140 Spruce St, Los Angeles, CA 90001" -164597,AA Batteries (4-pack),1,3.84,03/19/19 08:28,"19 Wilson St, Atlanta, GA 30301" -164598,iPhone,1,700,03/13/19 08:50,"124 Lakeview St, Boston, MA 02215" -164599,AA Batteries (4-pack),1,3.84,03/23/19 22:28,"662 2nd St, San Francisco, CA 94016" -164600,Lightning Charging Cable,1,14.95,03/01/19 12:07,"406 Hill St, Dallas, TX 75001" -164601,Lightning Charging Cable,1,14.95,03/10/19 19:38,"511 Sunset St, San Francisco, CA 94016" -164602,USB-C Charging Cable,1,11.95,03/02/19 22:27,"35 8th St, Atlanta, GA 30301" -164603,Apple Airpods Headphones,1,150,03/22/19 08:37,"943 Maple St, Los Angeles, CA 90001" -164604,Flatscreen TV,1,300,03/03/19 03:48,"154 2nd St, Portland, OR 97035" -164605,AA Batteries (4-pack),1,3.84,03/29/19 14:14,"237 1st St, Los Angeles, CA 90001" -164606,20in Monitor,1,109.99,03/01/19 13:05,"630 Spruce St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -164607,iPhone,1,700,03/06/19 15:34,"242 Maple St, New York City, NY 10001" -164608,Bose SoundSport Headphones,1,99.99,03/24/19 17:38,"584 Dogwood St, Dallas, TX 75001" -164609,AA Batteries (4-pack),1,3.84,03/30/19 16:55,"539 7th St, San Francisco, CA 94016" -164610,27in FHD Monitor,1,149.99,03/24/19 22:42,"966 Main St, Los Angeles, CA 90001" -164611,AAA Batteries (4-pack),1,2.99,03/08/19 15:30,"749 Ridge St, Atlanta, GA 30301" -164611,USB-C Charging Cable,1,11.95,03/08/19 15:30,"749 Ridge St, Atlanta, GA 30301" -164612,iPhone,1,700,03/22/19 16:14,"747 Elm St, New York City, NY 10001" -164613,USB-C Charging Cable,1,11.95,03/29/19 15:02,"63 14th St, Los Angeles, CA 90001" -164614,AA Batteries (4-pack),1,3.84,03/01/19 09:23,"801 Chestnut St, Los Angeles, CA 90001" -164615,USB-C Charging Cable,1,11.95,03/17/19 18:19,"498 Park St, San Francisco, CA 94016" -164616,AAA Batteries (4-pack),1,2.99,03/22/19 19:57,"577 Wilson St, Los Angeles, CA 90001" -164617,Flatscreen TV,1,300,03/16/19 16:35,"362 Hickory St, San Francisco, CA 94016" -164618,Bose SoundSport Headphones,1,99.99,03/01/19 13:18,"537 14th St, Dallas, TX 75001" -164619,iPhone,1,700,03/26/19 06:42,"859 Highland St, Atlanta, GA 30301" -164620,iPhone,1,700,03/25/19 18:02,"841 2nd St, Dallas, TX 75001" -164621,AAA Batteries (4-pack),2,2.99,03/30/19 14:46,"273 Willow St, Seattle, WA 98101" -164622,34in Ultrawide Monitor,1,379.99,03/28/19 18:54,"802 11th St, Atlanta, GA 30301" -164623,AA Batteries (4-pack),2,3.84,03/20/19 13:04,"243 Johnson St, Portland, OR 97035" -164624,AAA Batteries (4-pack),2,2.99,03/31/19 21:01,"690 11th St, New York City, NY 10001" -164625,Apple Airpods Headphones,1,150,03/28/19 19:43,"404 Walnut St, San Francisco, CA 94016" -164626,Lightning Charging Cable,1,14.95,03/10/19 16:44,"218 River St, Atlanta, GA 30301" -164627,AAA Batteries (4-pack),1,2.99,03/03/19 09:22,"90 Jackson St, New York City, NY 10001" -164628,20in Monitor,1,109.99,03/24/19 13:06,"925 Cherry St, San Francisco, CA 94016" -164629,27in 4K Gaming Monitor,1,389.99,03/13/19 09:37,"972 Washington St, San Francisco, CA 94016" -164630,20in Monitor,1,109.99,03/08/19 10:34,"761 Adams St, Los Angeles, CA 90001" -164631,Wired Headphones,1,11.99,03/16/19 08:14,"90 Center St, Los Angeles, CA 90001" -164632,Bose SoundSport Headphones,1,99.99,03/23/19 10:32,"83 Meadow St, Portland, OR 97035" -164633,USB-C Charging Cable,1,11.95,03/08/19 21:13,"445 Lincoln St, San Francisco, CA 94016" -164634,Wired Headphones,1,11.99,03/07/19 21:18,"124 Hill St, Atlanta, GA 30301" -164635,Lightning Charging Cable,1,14.95,03/03/19 20:35,"892 Pine St, New York City, NY 10001" -164635,34in Ultrawide Monitor,1,379.99,03/03/19 20:35,"892 Pine St, New York City, NY 10001" -164636,Macbook Pro Laptop,1,1700,03/22/19 21:40,"893 Madison St, Boston, MA 02215" -164637,AAA Batteries (4-pack),1,2.99,03/26/19 18:21,"804 6th St, Los Angeles, CA 90001" -164638,USB-C Charging Cable,1,11.95,03/19/19 13:25,"83 Forest St, San Francisco, CA 94016" -164639,Vareebadd Phone,1,400,03/12/19 19:45,"857 Center St, Boston, MA 02215" -164640,Apple Airpods Headphones,1,150,03/24/19 11:23,"277 Spruce St, Austin, TX 73301" -164641,USB-C Charging Cable,1,11.95,03/20/19 11:06,"218 Cedar St, Los Angeles, CA 90001" -164642,Vareebadd Phone,1,400,03/17/19 11:11,"147 Center St, Atlanta, GA 30301" -164643,Wired Headphones,1,11.99,03/04/19 15:22,"91 West St, Los Angeles, CA 90001" -164644,Macbook Pro Laptop,1,1700,03/08/19 16:37,"963 Park St, Austin, TX 73301" -164645,AAA Batteries (4-pack),1,2.99,03/14/19 22:17,"83 Madison St, New York City, NY 10001" -164646,AAA Batteries (4-pack),1,2.99,03/06/19 16:17,"512 Johnson St, Boston, MA 02215" -164647,USB-C Charging Cable,1,11.95,03/23/19 03:51,"922 Willow St, Portland, OR 97035" -164648,AA Batteries (4-pack),1,3.84,03/15/19 18:29,"732 9th St, New York City, NY 10001" -164649,AAA Batteries (4-pack),1,2.99,03/31/19 13:49,"171 Dogwood St, Austin, TX 73301" -164650,Lightning Charging Cable,2,14.95,03/26/19 10:20,"871 Highland St, Los Angeles, CA 90001" -164651,Apple Airpods Headphones,1,150,03/17/19 18:55,"147 9th St, San Francisco, CA 94016" -164652,USB-C Charging Cable,1,11.95,03/16/19 17:31,"899 Meadow St, Seattle, WA 98101" -164653,Lightning Charging Cable,1,14.95,03/17/19 18:46,"82 Sunset St, Portland, OR 97035" -164654,Bose SoundSport Headphones,1,99.99,03/22/19 04:28,"307 Johnson St, San Francisco, CA 94016" -164655,27in FHD Monitor,1,149.99,03/22/19 11:06,"334 9th St, Atlanta, GA 30301" -164656,Lightning Charging Cable,1,14.95,03/10/19 19:45,"357 West St, Los Angeles, CA 90001" -164657,AA Batteries (4-pack),1,3.84,03/27/19 11:34,"946 8th St, San Francisco, CA 94016" -164658,USB-C Charging Cable,1,11.95,03/21/19 00:03,"99 Washington St, San Francisco, CA 94016" -164659,AAA Batteries (4-pack),2,2.99,03/25/19 10:05,"625 West St, New York City, NY 10001" -164659,USB-C Charging Cable,1,11.95,03/25/19 10:05,"625 West St, New York City, NY 10001" -164660,20in Monitor,1,109.99,03/02/19 18:56,"397 Cedar St, San Francisco, CA 94016" -164661,Apple Airpods Headphones,1,150,03/31/19 14:21,"15 Adams St, New York City, NY 10001" -164662,AAA Batteries (4-pack),2,2.99,03/11/19 22:58,"170 5th St, Atlanta, GA 30301" -164663,AA Batteries (4-pack),1,3.84,03/25/19 14:41,"228 11th St, Boston, MA 02215" -164664,Bose SoundSport Headphones,1,99.99,03/27/19 07:20,"380 Hill St, Seattle, WA 98101" -164665,Wired Headphones,1,11.99,03/13/19 08:28,"618 Chestnut St, San Francisco, CA 94016" -164666,Lightning Charging Cable,1,14.95,03/20/19 17:19,"299 7th St, Boston, MA 02215" -164667,Lightning Charging Cable,2,14.95,03/21/19 09:32,"989 West St, San Francisco, CA 94016" -164668,iPhone,1,700,03/21/19 21:06,"344 Hill St, San Francisco, CA 94016" -164669,AAA Batteries (4-pack),2,2.99,03/01/19 13:56,"505 10th St, Boston, MA 02215" -164670,AA Batteries (4-pack),1,3.84,03/07/19 12:33,"623 Sunset St, Austin, TX 73301" -164671,Lightning Charging Cable,1,14.95,03/12/19 21:39,"516 14th St, Los Angeles, CA 90001" -164672,Apple Airpods Headphones,1,150,03/18/19 08:51,"8 Pine St, Atlanta, GA 30301" -164673,LG Dryer,1,600.0,03/29/19 19:02,"895 Meadow St, Seattle, WA 98101" -164674,AAA Batteries (4-pack),1,2.99,03/29/19 17:21,"941 Wilson St, New York City, NY 10001" -164675,Flatscreen TV,1,300,03/28/19 19:56,"337 Hill St, San Francisco, CA 94016" -164676,20in Monitor,1,109.99,03/14/19 10:45,"970 Church St, Atlanta, GA 30301" -164677,Google Phone,1,600,03/04/19 12:32,"578 Washington St, New York City, NY 10001" -164677,USB-C Charging Cable,1,11.95,03/04/19 12:32,"578 Washington St, New York City, NY 10001" -164678,27in 4K Gaming Monitor,1,389.99,03/07/19 11:14,"617 Center St, Seattle, WA 98101" -164679,Google Phone,1,600,03/04/19 20:14,"604 Cherry St, San Francisco, CA 94016" -164680,20in Monitor,1,109.99,03/06/19 17:35,"387 Walnut St, San Francisco, CA 94016" -164681,Wired Headphones,1,11.99,03/27/19 19:13,"451 Highland St, Portland, OR 97035" -164682,Apple Airpods Headphones,1,150,03/22/19 18:27,"544 Church St, Austin, TX 73301" -164683,Apple Airpods Headphones,1,150,03/28/19 14:19,"983 Center St, Los Angeles, CA 90001" -164684,AA Batteries (4-pack),1,3.84,03/25/19 18:26,"13 13th St, Seattle, WA 98101" -164685,34in Ultrawide Monitor,1,379.99,03/31/19 11:06,"691 10th St, Los Angeles, CA 90001" -164686,20in Monitor,1,109.99,03/29/19 19:38,"266 Maple St, Seattle, WA 98101" -164687,Apple Airpods Headphones,1,150,03/05/19 15:00,"796 Elm St, San Francisco, CA 94016" -164688,AAA Batteries (4-pack),2,2.99,03/12/19 14:10,"331 Johnson St, Portland, OR 97035" -164689,Google Phone,1,600,03/03/19 21:46,"478 Highland St, Los Angeles, CA 90001" -164689,USB-C Charging Cable,1,11.95,03/03/19 21:46,"478 Highland St, Los Angeles, CA 90001" -164689,Bose SoundSport Headphones,1,99.99,03/03/19 21:46,"478 Highland St, Los Angeles, CA 90001" -164690,Lightning Charging Cable,1,14.95,03/11/19 16:02,"309 13th St, Dallas, TX 75001" -164691,Lightning Charging Cable,1,14.95,03/03/19 23:45,"774 1st St, Boston, MA 02215" -164692,34in Ultrawide Monitor,1,379.99,03/10/19 13:23,"828 Church St, Dallas, TX 75001" -164693,Lightning Charging Cable,1,14.95,03/08/19 13:32,"243 Washington St, San Francisco, CA 94016" -164694,Macbook Pro Laptop,1,1700,03/10/19 11:57,"195 Park St, San Francisco, CA 94016" -164695,Wired Headphones,1,11.99,03/28/19 09:51,"568 Adams St, Boston, MA 02215" -164696,Wired Headphones,1,11.99,03/15/19 19:36,"829 Dogwood St, Atlanta, GA 30301" -164697,20in Monitor,1,109.99,03/24/19 08:51,"544 Elm St, Dallas, TX 75001" -164698,USB-C Charging Cable,1,11.95,03/07/19 09:55,"911 Lincoln St, Atlanta, GA 30301" -164699,Wired Headphones,1,11.99,03/13/19 10:50,"555 Forest St, Dallas, TX 75001" -164700,Bose SoundSport Headphones,1,99.99,03/09/19 23:02,"988 Johnson St, Dallas, TX 75001" -164701,USB-C Charging Cable,1,11.95,03/16/19 17:06,"227 North St, Los Angeles, CA 90001" -164702,20in Monitor,1,109.99,03/11/19 09:56,"59 1st St, Boston, MA 02215" -164703,Wired Headphones,1,11.99,03/19/19 14:19,"72 Elm St, Austin, TX 73301" -164704,USB-C Charging Cable,1,11.95,03/26/19 15:19,"703 Hickory St, Seattle, WA 98101" -164705,Flatscreen TV,1,300,03/26/19 02:09,"900 Madison St, San Francisco, CA 94016" -164706,USB-C Charging Cable,1,11.95,03/06/19 00:58,"220 Cedar St, Seattle, WA 98101" -164707,USB-C Charging Cable,1,11.95,03/03/19 18:09,"554 9th St, Los Angeles, CA 90001" -164708,USB-C Charging Cable,2,11.95,03/25/19 14:12,"752 Sunset St, Los Angeles, CA 90001" -164709,AA Batteries (4-pack),2,3.84,03/13/19 06:58,"210 14th St, Seattle, WA 98101" -164710,Apple Airpods Headphones,1,150,03/23/19 11:49,"846 13th St, San Francisco, CA 94016" -164710,Bose SoundSport Headphones,1,99.99,03/23/19 11:49,"846 13th St, San Francisco, CA 94016" -164711,Wired Headphones,2,11.99,03/09/19 14:26,"671 14th St, Dallas, TX 75001" -164712,AAA Batteries (4-pack),3,2.99,03/29/19 13:49,"930 2nd St, Austin, TX 73301" -164713,Google Phone,1,600,03/31/19 20:01,"474 1st St, San Francisco, CA 94016" -164713,Bose SoundSport Headphones,1,99.99,03/31/19 20:01,"474 1st St, San Francisco, CA 94016" -164714,Apple Airpods Headphones,1,150,03/11/19 11:33,"681 13th St, Atlanta, GA 30301" -164715,Flatscreen TV,1,300,03/04/19 13:54,"476 Jackson St, San Francisco, CA 94016" -164716,AAA Batteries (4-pack),2,2.99,03/13/19 09:23,"82 Sunset St, Portland, OR 97035" -164717,AA Batteries (4-pack),1,3.84,03/10/19 15:24,"433 Highland St, San Francisco, CA 94016" -164717,AAA Batteries (4-pack),1,2.99,03/10/19 15:24,"433 Highland St, San Francisco, CA 94016" -164718,USB-C Charging Cable,1,11.95,03/04/19 17:23,"978 Church St, Dallas, TX 75001" -164719,AA Batteries (4-pack),2,3.84,03/08/19 09:01,"777 2nd St, Boston, MA 02215" -164720,Wired Headphones,1,11.99,03/14/19 17:15,"134 Lakeview St, San Francisco, CA 94016" -164721,Lightning Charging Cable,1,14.95,03/01/19 20:32,"647 6th St, Boston, MA 02215" -164722,27in 4K Gaming Monitor,1,389.99,03/04/19 07:23,"318 North St, Los Angeles, CA 90001" -164723,Macbook Pro Laptop,1,1700,03/31/19 08:55,"303 Highland St, San Francisco, CA 94016" -164724,AAA Batteries (4-pack),1,2.99,03/18/19 18:49,"538 Walnut St, San Francisco, CA 94016" -164725,Wired Headphones,1,11.99,03/27/19 21:19,"279 Center St, Seattle, WA 98101" -164726,AAA Batteries (4-pack),1,2.99,03/06/19 09:39,"413 Lake St, San Francisco, CA 94016" -164727,Lightning Charging Cable,1,14.95,03/31/19 11:10,"257 Jackson St, Boston, MA 02215" -164728,USB-C Charging Cable,3,11.95,03/25/19 16:16,"863 Forest St, San Francisco, CA 94016" -164729,Bose SoundSport Headphones,1,99.99,03/25/19 17:43,"29 5th St, Seattle, WA 98101" -164730,USB-C Charging Cable,1,11.95,03/27/19 22:57,"152 Johnson St, San Francisco, CA 94016" -164731,Wired Headphones,1,11.99,03/10/19 16:17,"373 Johnson St, Portland, OR 97035" -164732,20in Monitor,1,109.99,03/22/19 06:18,"95 6th St, Dallas, TX 75001" -164733,USB-C Charging Cable,1,11.95,03/09/19 11:40,"749 Washington St, Boston, MA 02215" -164734,20in Monitor,1,109.99,03/27/19 18:38,"195 12th St, Boston, MA 02215" -164735,USB-C Charging Cable,1,11.95,03/04/19 17:33,"367 Maple St, Atlanta, GA 30301" -164736,AAA Batteries (4-pack),1,2.99,03/18/19 11:10,"509 2nd St, Seattle, WA 98101" -164737,Google Phone,1,600,03/14/19 22:16,"275 Spruce St, Los Angeles, CA 90001" -164737,USB-C Charging Cable,1,11.95,03/14/19 22:16,"275 Spruce St, Los Angeles, CA 90001" -164738,Wired Headphones,1,11.99,03/19/19 23:14,"615 Highland St, New York City, NY 10001" -164739,27in 4K Gaming Monitor,1,389.99,03/25/19 19:15,"416 Church St, San Francisco, CA 94016" -164740,AA Batteries (4-pack),1,3.84,03/24/19 14:54,"950 Cedar St, San Francisco, CA 94016" -164741,Google Phone,1,600,03/25/19 17:18,"507 Johnson St, San Francisco, CA 94016" -164742,Google Phone,1,600,03/23/19 14:56,"93 Johnson St, San Francisco, CA 94016" -164743,Wired Headphones,1,11.99,03/20/19 01:10,"249 Forest St, Austin, TX 73301" -164744,Vareebadd Phone,1,400,03/07/19 16:44,"320 North St, Los Angeles, CA 90001" -164745,Apple Airpods Headphones,1,150,03/10/19 11:13,"608 14th St, Dallas, TX 75001" -164746,Wired Headphones,1,11.99,03/14/19 16:17,"737 Main St, New York City, NY 10001" -164747,Wired Headphones,1,11.99,03/06/19 14:52,"206 Willow St, San Francisco, CA 94016" -164748,USB-C Charging Cable,1,11.95,03/09/19 17:10,"23 Walnut St, New York City, NY 10001" -164749,Wired Headphones,2,11.99,03/28/19 20:06,"46 Park St, Los Angeles, CA 90001" -164750,34in Ultrawide Monitor,1,379.99,03/31/19 17:14,"243 Walnut St, Los Angeles, CA 90001" -164750,AA Batteries (4-pack),1,3.84,03/31/19 17:14,"243 Walnut St, Los Angeles, CA 90001" -164751,AA Batteries (4-pack),1,3.84,03/22/19 19:01,"408 Main St, Los Angeles, CA 90001" -164752,27in FHD Monitor,1,149.99,03/11/19 12:49,"255 1st St, San Francisco, CA 94016" -164753,USB-C Charging Cable,1,11.95,03/10/19 11:44,"188 6th St, San Francisco, CA 94016" -164754,LG Dryer,1,600.0,03/18/19 15:38,"131 7th St, Los Angeles, CA 90001" -164755,Google Phone,1,600,03/29/19 13:29,"918 West St, New York City, NY 10001" -164755,USB-C Charging Cable,1,11.95,03/29/19 13:29,"918 West St, New York City, NY 10001" -164756,ThinkPad Laptop,1,999.99,03/04/19 20:55,"265 North St, Portland, OR 97035" -164757,USB-C Charging Cable,1,11.95,03/02/19 19:32,"437 West St, Dallas, TX 75001" -164758,Wired Headphones,1,11.99,03/21/19 23:49,"485 7th St, Boston, MA 02215" -164759,Google Phone,1,600,03/04/19 19:29,"693 River St, Atlanta, GA 30301" -164759,USB-C Charging Cable,1,11.95,03/04/19 19:29,"693 River St, Atlanta, GA 30301" -164760,Wired Headphones,1,11.99,03/19/19 10:18,"504 Lakeview St, Los Angeles, CA 90001" -164761,Lightning Charging Cable,1,14.95,03/15/19 10:00,"890 Park St, Los Angeles, CA 90001" -164762,AAA Batteries (4-pack),1,2.99,03/05/19 08:57,"631 South St, Los Angeles, CA 90001" -164763,Google Phone,1,600,03/11/19 18:43,"944 Main St, San Francisco, CA 94016" -164764,Wired Headphones,1,11.99,03/23/19 19:29,"972 14th St, Seattle, WA 98101" -164765,20in Monitor,1,109.99,03/25/19 10:15,"747 8th St, San Francisco, CA 94016" -164766,Macbook Pro Laptop,1,1700,03/08/19 12:31,"434 Ridge St, Austin, TX 73301" -164767,USB-C Charging Cable,1,11.95,03/20/19 18:22,"567 Jefferson St, Los Angeles, CA 90001" -164768,Apple Airpods Headphones,1,150,03/20/19 16:34,"376 6th St, Atlanta, GA 30301" -164769,34in Ultrawide Monitor,1,379.99,03/27/19 08:57,"765 Park St, Portland, OR 97035" -164770,Google Phone,1,600,03/26/19 17:59,"211 Elm St, Atlanta, GA 30301" -164770,USB-C Charging Cable,1,11.95,03/26/19 17:59,"211 Elm St, Atlanta, GA 30301" -164771,iPhone,1,700,03/17/19 18:20,"574 9th St, San Francisco, CA 94016" -164772,AA Batteries (4-pack),2,3.84,03/08/19 16:12,"938 Hickory St, Portland, OR 97035" -164773,Bose SoundSport Headphones,1,99.99,03/30/19 21:15,"141 4th St, San Francisco, CA 94016" -164774,USB-C Charging Cable,1,11.95,03/14/19 20:14,"696 Sunset St, Los Angeles, CA 90001" -164775,Apple Airpods Headphones,1,150,03/08/19 08:17,"790 Lincoln St, Boston, MA 02215" -164776,34in Ultrawide Monitor,1,379.99,03/13/19 13:23,"512 Church St, Seattle, WA 98101" -164777,Lightning Charging Cable,1,14.95,03/18/19 08:03,"453 Walnut St, Dallas, TX 75001" -164778,AA Batteries (4-pack),1,3.84,03/03/19 11:39,"653 14th St, Los Angeles, CA 90001" -164779,Apple Airpods Headphones,1,150,03/02/19 14:40,"443 2nd St, Los Angeles, CA 90001" -164780,27in 4K Gaming Monitor,1,389.99,03/07/19 17:17,"137 North St, Austin, TX 73301" -164781,Apple Airpods Headphones,1,150,03/04/19 19:48,"461 Dogwood St, San Francisco, CA 94016" -164782,AAA Batteries (4-pack),1,2.99,03/24/19 08:02,"375 8th St, Los Angeles, CA 90001" -164783,Google Phone,1,600,03/22/19 13:59,"897 Jackson St, Atlanta, GA 30301" -164784,USB-C Charging Cable,1,11.95,03/01/19 12:30,"998 Park St, Seattle, WA 98101" -164785,ThinkPad Laptop,1,999.99,03/14/19 21:05,"649 2nd St, New York City, NY 10001" -164786,Wired Headphones,1,11.99,03/27/19 20:04,"170 Jefferson St, Boston, MA 02215" -164787,Wired Headphones,1,11.99,03/22/19 02:15,"133 Madison St, San Francisco, CA 94016" -164788,Lightning Charging Cable,1,14.95,03/22/19 07:25,"652 Cedar St, Atlanta, GA 30301" -164789,AA Batteries (4-pack),1,3.84,03/16/19 17:42,"790 4th St, New York City, NY 10001" -164790,Lightning Charging Cable,1,14.95,03/03/19 20:25,"627 Elm St, Boston, MA 02215" -164791,USB-C Charging Cable,2,11.95,03/26/19 09:20,"816 12th St, Boston, MA 02215" -164792,Vareebadd Phone,1,400,03/28/19 22:52,"410 Chestnut St, Atlanta, GA 30301" -164793,Google Phone,1,600,03/09/19 10:58,"207 Wilson St, Boston, MA 02215" -164793,USB-C Charging Cable,2,11.95,03/09/19 10:58,"207 Wilson St, Boston, MA 02215" -164794,USB-C Charging Cable,1,11.95,03/27/19 18:55,"692 River St, San Francisco, CA 94016" -164795,AA Batteries (4-pack),3,3.84,03/06/19 20:12,"41 Lincoln St, Los Angeles, CA 90001" -164796,USB-C Charging Cable,1,11.95,03/04/19 14:23,"300 Meadow St, Boston, MA 02215" -164797,Google Phone,1,600,03/22/19 13:03,"545 12th St, Seattle, WA 98101" -164798,AA Batteries (4-pack),1,3.84,03/07/19 08:23,"691 8th St, Los Angeles, CA 90001" -164799,Lightning Charging Cable,1,14.95,03/02/19 12:05,"779 Sunset St, Atlanta, GA 30301" -164800,AA Batteries (4-pack),1,3.84,03/23/19 08:00,"993 14th St, San Francisco, CA 94016" -164801,Apple Airpods Headphones,1,150,03/23/19 12:25,"406 Center St, New York City, NY 10001" -164802,Apple Airpods Headphones,1,150,03/09/19 12:07,"978 Adams St, Los Angeles, CA 90001" -164803,AA Batteries (4-pack),1,3.84,03/21/19 01:07,"443 North St, Portland, ME 04101" -164804,Google Phone,1,600,03/25/19 18:08,"944 Jackson St, Seattle, WA 98101" -164804,USB-C Charging Cable,1,11.95,03/25/19 18:08,"944 Jackson St, Seattle, WA 98101" -164805,Apple Airpods Headphones,1,150,03/15/19 18:59,"983 Maple St, Austin, TX 73301" -164806,Bose SoundSport Headphones,1,99.99,03/03/19 12:20,"804 Forest St, Dallas, TX 75001" -164807,Google Phone,1,600,03/07/19 21:07,"680 Chestnut St, Austin, TX 73301" -164808,Lightning Charging Cable,1,14.95,03/26/19 10:18,"915 Lake St, Boston, MA 02215" -164809,AA Batteries (4-pack),3,3.84,03/19/19 20:09,"513 Lake St, Boston, MA 02215" -164810,Lightning Charging Cable,1,14.95,03/20/19 02:31,"689 Dogwood St, Los Angeles, CA 90001" -164811,Lightning Charging Cable,1,14.95,03/28/19 14:41,"219 Washington St, New York City, NY 10001" -164812,iPhone,1,700,03/08/19 11:59,"892 Forest St, San Francisco, CA 94016" -164812,Wired Headphones,1,11.99,03/08/19 11:59,"892 Forest St, San Francisco, CA 94016" -164813,AAA Batteries (4-pack),1,2.99,03/10/19 23:41,"694 West St, Dallas, TX 75001" -164814,Wired Headphones,1,11.99,03/23/19 20:16,"438 5th St, Boston, MA 02215" -164815,34in Ultrawide Monitor,1,379.99,03/06/19 12:09,"296 Church St, San Francisco, CA 94016" -164816,USB-C Charging Cable,1,11.95,03/18/19 11:55,"481 Sunset St, Seattle, WA 98101" -164817,Bose SoundSport Headphones,1,99.99,03/18/19 00:51,"183 2nd St, New York City, NY 10001" -164817,Apple Airpods Headphones,1,150,03/18/19 00:51,"183 2nd St, New York City, NY 10001" -164818,Lightning Charging Cable,1,14.95,03/11/19 06:09,"750 6th St, San Francisco, CA 94016" -164819,USB-C Charging Cable,1,11.95,03/28/19 20:12,"742 Highland St, Boston, MA 02215" -164820,Apple Airpods Headphones,1,150,03/20/19 12:31,"663 Dogwood St, Seattle, WA 98101" -164821,AA Batteries (4-pack),1,3.84,03/08/19 10:49,"220 Dogwood St, Los Angeles, CA 90001" -164822,AA Batteries (4-pack),4,3.84,03/11/19 10:58,"81 6th St, San Francisco, CA 94016" -164823,34in Ultrawide Monitor,1,379.99,03/04/19 07:51,"567 11th St, Dallas, TX 75001" -164824,Wired Headphones,2,11.99,03/14/19 17:28,"221 Elm St, New York City, NY 10001" -164825,Lightning Charging Cable,1,14.95,03/23/19 18:51,"34 Pine St, San Francisco, CA 94016" -164825,Lightning Charging Cable,1,14.95,03/23/19 18:51,"34 Pine St, San Francisco, CA 94016" -164826,Bose SoundSport Headphones,1,99.99,03/02/19 18:00,"336 Jackson St, New York City, NY 10001" -164827,Apple Airpods Headphones,1,150,03/14/19 21:06,"431 Center St, Los Angeles, CA 90001" -164828,ThinkPad Laptop,1,999.99,03/16/19 13:30,"600 Maple St, Seattle, WA 98101" -164829,Apple Airpods Headphones,1,150,03/06/19 00:58,"279 Chestnut St, Seattle, WA 98101" -164830,AAA Batteries (4-pack),1,2.99,03/25/19 10:31,"326 10th St, Portland, OR 97035" -164831,Apple Airpods Headphones,1,150,03/15/19 12:17,"746 Highland St, San Francisco, CA 94016" -164832,AAA Batteries (4-pack),1,2.99,03/09/19 10:36,"803 North St, Los Angeles, CA 90001" -164833,USB-C Charging Cable,1,11.95,03/24/19 00:43,"580 Ridge St, Los Angeles, CA 90001" -164834,Lightning Charging Cable,1,14.95,03/25/19 01:42,"454 Church St, New York City, NY 10001" -164835,Bose SoundSport Headphones,1,99.99,03/29/19 16:07,"861 Washington St, San Francisco, CA 94016" -164836,AA Batteries (4-pack),2,3.84,03/24/19 10:41,"96 11th St, Atlanta, GA 30301" -164837,Wired Headphones,1,11.99,03/30/19 23:20,"361 Madison St, Los Angeles, CA 90001" -164838,Bose SoundSport Headphones,1,99.99,03/18/19 12:53,"847 12th St, Atlanta, GA 30301" -164839,Wired Headphones,1,11.99,03/20/19 21:35,"565 Maple St, San Francisco, CA 94016" -164840,20in Monitor,1,109.99,03/04/19 18:45,"463 Ridge St, San Francisco, CA 94016" -164841,AAA Batteries (4-pack),1,2.99,03/18/19 12:59,"163 4th St, San Francisco, CA 94016" -164842,USB-C Charging Cable,1,11.95,03/04/19 19:38,"713 7th St, Dallas, TX 75001" -,,,,, -164843,34in Ultrawide Monitor,1,379.99,03/02/19 08:50,"158 Lakeview St, Boston, MA 02215" -164844,AAA Batteries (4-pack),1,2.99,03/11/19 22:23,"309 Hickory St, Portland, OR 97035" -164845,Lightning Charging Cable,1,14.95,03/27/19 06:41,"322 Jackson St, San Francisco, CA 94016" -164846,Lightning Charging Cable,1,14.95,03/07/19 18:57,"443 4th St, Austin, TX 73301" -164847,iPhone,1,700,03/09/19 07:16,"263 Spruce St, San Francisco, CA 94016" -164848,USB-C Charging Cable,1,11.95,03/08/19 09:23,"905 Willow St, Atlanta, GA 30301" -164849,AA Batteries (4-pack),1,3.84,03/08/19 16:01,"194 Hickory St, Los Angeles, CA 90001" -164850,AAA Batteries (4-pack),1,2.99,03/10/19 19:58,"236 Walnut St, Atlanta, GA 30301" -164851,ThinkPad Laptop,1,999.99,03/04/19 09:01,"738 6th St, Boston, MA 02215" -164852,Lightning Charging Cable,1,14.95,03/20/19 14:06,"646 Madison St, Atlanta, GA 30301" -164853,AA Batteries (4-pack),3,3.84,03/07/19 14:48,"35 Elm St, New York City, NY 10001" -164854,AA Batteries (4-pack),1,3.84,03/08/19 08:40,"608 9th St, Boston, MA 02215" -164855,AA Batteries (4-pack),1,3.84,03/10/19 00:41,"390 Madison St, San Francisco, CA 94016" -164856,Lightning Charging Cable,1,14.95,03/02/19 11:08,"994 South St, New York City, NY 10001" -164857,Lightning Charging Cable,1,14.95,03/22/19 19:54,"520 Walnut St, San Francisco, CA 94016" -164857,Macbook Pro Laptop,1,1700,03/22/19 19:54,"520 Walnut St, San Francisco, CA 94016" -164858,AAA Batteries (4-pack),1,2.99,03/30/19 20:35,"444 11th St, Los Angeles, CA 90001" -164859,Wired Headphones,1,11.99,03/19/19 02:40,"4 6th St, Los Angeles, CA 90001" -164860,AA Batteries (4-pack),1,3.84,03/16/19 15:00,"288 Center St, Los Angeles, CA 90001" -164861,Apple Airpods Headphones,1,150,03/30/19 20:07,"796 4th St, Dallas, TX 75001" -164862,iPhone,1,700,03/17/19 10:05,"234 Cedar St, San Francisco, CA 94016" -164863,USB-C Charging Cable,1,11.95,03/11/19 20:30,"143 Hill St, San Francisco, CA 94016" -164864,20in Monitor,1,109.99,03/15/19 16:54,"166 Walnut St, Los Angeles, CA 90001" -164865,Macbook Pro Laptop,1,1700,03/27/19 09:50,"770 Spruce St, Portland, OR 97035" -164866,LG Washing Machine,1,600.0,03/07/19 20:51,"849 4th St, Austin, TX 73301" -164867,AAA Batteries (4-pack),2,2.99,03/16/19 18:12,"710 9th St, Atlanta, GA 30301" -164868,USB-C Charging Cable,1,11.95,03/01/19 21:35,"83 Sunset St, Los Angeles, CA 90001" -164869,USB-C Charging Cable,1,11.95,03/15/19 21:47,"91 10th St, San Francisco, CA 94016" -164870,20in Monitor,1,109.99,03/01/19 19:03,"102 Lake St, Los Angeles, CA 90001" -164871,AAA Batteries (4-pack),1,2.99,03/24/19 22:16,"951 Elm St, Boston, MA 02215" -164872,Macbook Pro Laptop,1,1700,03/15/19 11:08,"462 Johnson St, Atlanta, GA 30301" -164873,AA Batteries (4-pack),1,3.84,03/15/19 17:55,"668 12th St, Seattle, WA 98101" -164874,Flatscreen TV,1,300,03/04/19 08:13,"750 5th St, San Francisco, CA 94016" -164875,Flatscreen TV,1,300,03/29/19 15:20,"349 13th St, Austin, TX 73301" -164876,Wired Headphones,1,11.99,03/15/19 17:36,"632 South St, San Francisco, CA 94016" -164877,Bose SoundSport Headphones,1,99.99,03/26/19 07:46,"327 Dogwood St, Portland, OR 97035" -164878,AA Batteries (4-pack),5,3.84,03/05/19 14:49,"661 Madison St, Dallas, TX 75001" -164879,Apple Airpods Headphones,1,150,03/07/19 19:21,"199 4th St, Atlanta, GA 30301" -164880,Wired Headphones,1,11.99,03/10/19 22:21,"533 9th St, Seattle, WA 98101" -164880,Vareebadd Phone,1,400,03/10/19 22:21,"533 9th St, Seattle, WA 98101" -164881,Apple Airpods Headphones,1,150,03/13/19 19:36,"80 Walnut St, San Francisco, CA 94016" -164882,Bose SoundSport Headphones,1,99.99,03/20/19 16:59,"156 Ridge St, New York City, NY 10001" -164883,Bose SoundSport Headphones,1,99.99,03/02/19 05:43,"280 9th St, Los Angeles, CA 90001" -164884,Lightning Charging Cable,1,14.95,03/05/19 18:41,"600 Pine St, Atlanta, GA 30301" -164885,AA Batteries (4-pack),1,3.84,03/02/19 17:01,"189 Jackson St, New York City, NY 10001" -,,,,, -164886,Lightning Charging Cable,1,14.95,03/12/19 09:48,"826 Church St, Seattle, WA 98101" -164887,Bose SoundSport Headphones,1,99.99,03/28/19 15:25,"358 2nd St, New York City, NY 10001" -164888,Wired Headphones,1,11.99,03/06/19 12:35,"825 Hickory St, Boston, MA 02215" -164889,ThinkPad Laptop,1,999.99,03/10/19 15:49,"676 River St, San Francisco, CA 94016" -164890,USB-C Charging Cable,1,11.95,03/15/19 18:19,"340 Washington St, Los Angeles, CA 90001" -164891,Apple Airpods Headphones,1,150,03/23/19 15:58,"137 Maple St, San Francisco, CA 94016" -164892,Wired Headphones,1,11.99,03/31/19 22:59,"467 Spruce St, New York City, NY 10001" -164893,Flatscreen TV,1,300,03/08/19 19:29,"926 Main St, Austin, TX 73301" -164894,Bose SoundSport Headphones,1,99.99,03/05/19 06:44,"920 Chestnut St, Los Angeles, CA 90001" -164895,20in Monitor,1,109.99,03/13/19 18:13,"339 12th St, New York City, NY 10001" -164896,AA Batteries (4-pack),2,3.84,03/15/19 13:15,"570 Park St, Boston, MA 02215" -164897,AA Batteries (4-pack),1,3.84,03/12/19 22:20,"755 Main St, New York City, NY 10001" -164898,AAA Batteries (4-pack),2,2.99,03/25/19 17:55,"991 Church St, Los Angeles, CA 90001" -164899,AAA Batteries (4-pack),1,2.99,03/04/19 19:33,"517 5th St, San Francisco, CA 94016" -164900,Lightning Charging Cable,1,14.95,03/09/19 20:27,"135 Center St, New York City, NY 10001" -164901,20in Monitor,1,109.99,03/26/19 22:07,"488 10th St, San Francisco, CA 94016" -164902,Google Phone,1,600,03/05/19 07:44,"450 Elm St, San Francisco, CA 94016" -164903,Apple Airpods Headphones,1,150,03/02/19 05:11,"360 Washington St, San Francisco, CA 94016" -164903,AA Batteries (4-pack),2,3.84,03/02/19 05:11,"360 Washington St, San Francisco, CA 94016" -164904,Bose SoundSport Headphones,1,99.99,03/14/19 22:17,"771 11th St, Los Angeles, CA 90001" -164905,Lightning Charging Cable,1,14.95,03/31/19 19:34,"325 Hickory St, San Francisco, CA 94016" -164906,USB-C Charging Cable,1,11.95,03/21/19 20:47,"406 Dogwood St, San Francisco, CA 94016" -164907,AA Batteries (4-pack),2,3.84,03/01/19 18:16,"333 Hill St, Dallas, TX 75001" -164908,27in FHD Monitor,1,149.99,03/13/19 18:42,"648 Walnut St, Seattle, WA 98101" -164909,Apple Airpods Headphones,1,150,03/03/19 10:40,"454 Forest St, San Francisco, CA 94016" -164910,AAA Batteries (4-pack),1,2.99,03/31/19 01:05,"951 10th St, San Francisco, CA 94016" -164911,Wired Headphones,1,11.99,03/04/19 11:39,"861 Ridge St, Los Angeles, CA 90001" -164912,Apple Airpods Headphones,1,150,03/15/19 08:54,"384 5th St, New York City, NY 10001" -164913,Bose SoundSport Headphones,1,99.99,03/18/19 14:55,"27 13th St, Austin, TX 73301" -164914,AAA Batteries (4-pack),1,2.99,03/22/19 16:44,"911 12th St, Austin, TX 73301" -164915,Wired Headphones,1,11.99,03/07/19 07:27,"704 6th St, Seattle, WA 98101" -164916,20in Monitor,1,109.99,03/09/19 21:10,"546 Pine St, San Francisco, CA 94016" -164917,USB-C Charging Cable,1,11.95,03/10/19 20:52,"448 Jackson St, Austin, TX 73301" -164918,Lightning Charging Cable,1,14.95,03/06/19 22:57,"544 13th St, San Francisco, CA 94016" -164919,Flatscreen TV,1,300,03/14/19 09:18,"437 Center St, San Francisco, CA 94016" -164920,Wired Headphones,1,11.99,03/10/19 18:11,"304 14th St, San Francisco, CA 94016" -164921,Flatscreen TV,1,300,03/24/19 17:36,"125 Lincoln St, San Francisco, CA 94016" -164922,AAA Batteries (4-pack),2,2.99,03/28/19 13:03,"684 11th St, Los Angeles, CA 90001" -164923,ThinkPad Laptop,1,999.99,03/24/19 10:06,"781 South St, New York City, NY 10001" -164924,AAA Batteries (4-pack),1,2.99,03/20/19 13:25,"30 Elm St, Seattle, WA 98101" -164925,Lightning Charging Cable,1,14.95,03/19/19 14:59,"335 Maple St, San Francisco, CA 94016" -164926,Macbook Pro Laptop,1,1700,03/12/19 17:46,"232 7th St, Portland, OR 97035" -164927,Lightning Charging Cable,1,14.95,03/11/19 07:24,"447 Maple St, Los Angeles, CA 90001" -164928,Lightning Charging Cable,1,14.95,03/06/19 14:52,"212 Walnut St, Boston, MA 02215" -164928,AA Batteries (4-pack),2,3.84,03/06/19 14:52,"212 Walnut St, Boston, MA 02215" -164929,AAA Batteries (4-pack),1,2.99,03/15/19 13:11,"145 Dogwood St, Austin, TX 73301" -164930,34in Ultrawide Monitor,1,379.99,03/06/19 07:00,"780 Washington St, San Francisco, CA 94016" -164931,Wired Headphones,1,11.99,03/09/19 19:27,"474 11th St, Boston, MA 02215" -164932,34in Ultrawide Monitor,1,379.99,03/05/19 18:24,"895 Madison St, Seattle, WA 98101" -164933,Wired Headphones,2,11.99,03/26/19 17:01,"271 Main St, Seattle, WA 98101" -164934,Apple Airpods Headphones,1,150,03/05/19 12:51,"370 12th St, Atlanta, GA 30301" -164935,Apple Airpods Headphones,1,150,03/09/19 13:12,"431 6th St, Portland, OR 97035" -164936,Wired Headphones,1,11.99,03/22/19 13:22,"87 Pine St, Los Angeles, CA 90001" -164937,Macbook Pro Laptop,1,1700,03/08/19 13:12,"290 Washington St, Los Angeles, CA 90001" -164938,AAA Batteries (4-pack),1,2.99,03/07/19 09:40,"122 South St, Dallas, TX 75001" -164939,Wired Headphones,1,11.99,03/17/19 02:15,"975 5th St, Los Angeles, CA 90001" -164940,ThinkPad Laptop,1,999.99,03/06/19 15:25,"447 North St, Los Angeles, CA 90001" -164941,USB-C Charging Cable,1,11.95,03/07/19 21:19,"249 Lakeview St, Boston, MA 02215" -164942,Lightning Charging Cable,1,14.95,03/14/19 17:33,"636 Lincoln St, New York City, NY 10001" -164943,Apple Airpods Headphones,1,150,03/05/19 21:37,"942 Sunset St, Dallas, TX 75001" -164944,USB-C Charging Cable,2,11.95,03/21/19 12:48,"738 Sunset St, Los Angeles, CA 90001" -164945,Google Phone,1,600,03/20/19 09:38,"914 Lakeview St, San Francisco, CA 94016" -164946,Macbook Pro Laptop,1,1700,03/01/19 19:28,"229 Johnson St, Portland, OR 97035" -164947,iPhone,1,700,03/28/19 12:21,"704 8th St, Seattle, WA 98101" -164948,Macbook Pro Laptop,1,1700,03/22/19 11:02,"753 4th St, Dallas, TX 75001" -164949,Wired Headphones,2,11.99,03/06/19 05:38,"666 Meadow St, New York City, NY 10001" -164950,AA Batteries (4-pack),1,3.84,03/20/19 14:42,"81 5th St, Dallas, TX 75001" -164951,Lightning Charging Cable,1,14.95,03/25/19 12:28,"994 Walnut St, Los Angeles, CA 90001" -164952,Wired Headphones,1,11.99,03/12/19 08:56,"829 Maple St, San Francisco, CA 94016" -164953,27in FHD Monitor,1,149.99,03/26/19 16:21,"19 13th St, Portland, OR 97035" -164954,AAA Batteries (4-pack),2,2.99,03/29/19 05:41,"956 Jackson St, Atlanta, GA 30301" -164955,Bose SoundSport Headphones,1,99.99,03/12/19 18:42,"6 14th St, New York City, NY 10001" -164956,USB-C Charging Cable,1,11.95,03/09/19 12:27,"633 Cherry St, New York City, NY 10001" -164957,Flatscreen TV,1,300,03/13/19 20:07,"586 Park St, Atlanta, GA 30301" -164958,AAA Batteries (4-pack),1,2.99,03/07/19 14:50,"620 14th St, Los Angeles, CA 90001" -164959,AAA Batteries (4-pack),1,2.99,03/13/19 22:19,"330 Adams St, Los Angeles, CA 90001" -164960,AA Batteries (4-pack),1,3.84,03/06/19 16:53,"657 South St, San Francisco, CA 94016" -164961,AAA Batteries (4-pack),1,2.99,03/05/19 06:42,"816 Cherry St, New York City, NY 10001" -164962,LG Washing Machine,1,600.0,03/26/19 21:04,"817 Washington St, Seattle, WA 98101" -164963,Wired Headphones,1,11.99,03/21/19 10:07,"801 Center St, Seattle, WA 98101" -164964,Wired Headphones,1,11.99,03/07/19 23:27,"379 Spruce St, Atlanta, GA 30301" -164965,27in FHD Monitor,1,149.99,03/02/19 12:14,"930 Pine St, Seattle, WA 98101" -164966,AA Batteries (4-pack),2,3.84,03/10/19 12:01,"18 Dogwood St, Atlanta, GA 30301" -164967,Apple Airpods Headphones,1,150,03/30/19 23:23,"755 Chestnut St, Dallas, TX 75001" -164968,LG Washing Machine,1,600.0,03/07/19 10:00,"627 Pine St, Atlanta, GA 30301" -164969,AAA Batteries (4-pack),1,2.99,03/03/19 08:14,"488 Walnut St, New York City, NY 10001" -164970,AA Batteries (4-pack),1,3.84,03/07/19 18:37,"785 Lincoln St, Dallas, TX 75001" -164971,AAA Batteries (4-pack),1,2.99,03/09/19 23:04,"308 1st St, Los Angeles, CA 90001" -164972,20in Monitor,1,109.99,03/14/19 22:45,"343 10th St, San Francisco, CA 94016" -164973,AAA Batteries (4-pack),2,2.99,03/21/19 08:49,"71 Cedar St, Los Angeles, CA 90001" -164974,Lightning Charging Cable,1,14.95,03/24/19 14:37,"180 Hickory St, New York City, NY 10001" -164975,Lightning Charging Cable,1,14.95,03/17/19 22:29,"986 North St, Los Angeles, CA 90001" -164976,Wired Headphones,1,11.99,03/18/19 19:02,"875 Madison St, Austin, TX 73301" -164977,iPhone,1,700,03/23/19 17:19,"283 Meadow St, San Francisco, CA 94016" -164977,Lightning Charging Cable,1,14.95,03/23/19 17:19,"283 Meadow St, San Francisco, CA 94016" -164978,Apple Airpods Headphones,1,150,03/04/19 13:40,"535 South St, Atlanta, GA 30301" -164979,AAA Batteries (4-pack),2,2.99,03/06/19 05:27,"222 2nd St, Atlanta, GA 30301" -164980,USB-C Charging Cable,1,11.95,03/02/19 03:17,"918 Jackson St, Portland, OR 97035" -164981,Wired Headphones,1,11.99,03/18/19 23:15,"55 Walnut St, Los Angeles, CA 90001" -164982,Macbook Pro Laptop,1,1700,03/16/19 17:20,"353 Washington St, San Francisco, CA 94016" -164983,27in FHD Monitor,1,149.99,03/17/19 21:33,"161 Church St, Boston, MA 02215" -164984,Bose SoundSport Headphones,1,99.99,03/04/19 22:59,"41 River St, Los Angeles, CA 90001" -164985,Google Phone,1,600,03/21/19 14:27,"247 7th St, Los Angeles, CA 90001" -164985,Wired Headphones,1,11.99,03/21/19 14:27,"247 7th St, Los Angeles, CA 90001" -164986,LG Dryer,1,600.0,03/06/19 08:40,"731 13th St, Portland, OR 97035" -164987,Lightning Charging Cable,2,14.95,03/13/19 14:39,"553 Washington St, Seattle, WA 98101" -164988,AAA Batteries (4-pack),2,2.99,03/30/19 19:49,"627 Pine St, New York City, NY 10001" -164989,ThinkPad Laptop,1,999.99,03/30/19 14:46,"796 Maple St, Dallas, TX 75001" -164990,AA Batteries (4-pack),1,3.84,03/10/19 21:19,"348 14th St, New York City, NY 10001" -164991,Flatscreen TV,1,300,03/07/19 18:25,"983 Willow St, San Francisco, CA 94016" -164992,Flatscreen TV,1,300,03/22/19 19:20,"256 Spruce St, Los Angeles, CA 90001" -164993,USB-C Charging Cable,1,11.95,03/09/19 19:39,"473 14th St, Portland, OR 97035" -164994,Bose SoundSport Headphones,1,99.99,03/21/19 11:29,"335 Hickory St, Portland, ME 04101" -164995,Bose SoundSport Headphones,1,99.99,03/26/19 04:47,"824 Washington St, San Francisco, CA 94016" -164996,Lightning Charging Cable,1,14.95,03/21/19 09:19,"360 Hickory St, Portland, OR 97035" -164997,Vareebadd Phone,1,400,03/05/19 22:09,"25 Cedar St, Seattle, WA 98101" -164998,iPhone,1,700,03/31/19 12:17,"54 Adams St, Los Angeles, CA 90001" -164999,34in Ultrawide Monitor,1,379.99,03/11/19 14:07,"651 Cedar St, Portland, OR 97035" -165000,Macbook Pro Laptop,1,1700,03/24/19 20:07,"630 Washington St, New York City, NY 10001" -165001,34in Ultrawide Monitor,1,379.99,03/25/19 11:51,"733 11th St, Seattle, WA 98101" -165002,ThinkPad Laptop,1,999.99,03/22/19 23:36,"456 Lincoln St, Seattle, WA 98101" -165003,27in 4K Gaming Monitor,1,389.99,03/21/19 12:09,"241 1st St, Los Angeles, CA 90001" -165004,USB-C Charging Cable,1,11.95,03/23/19 20:48,"421 11th St, Atlanta, GA 30301" -165005,LG Washing Machine,1,600.0,03/25/19 16:22,"964 Willow St, Boston, MA 02215" -165006,Wired Headphones,1,11.99,03/15/19 17:45,"158 Wilson St, New York City, NY 10001" -165007,34in Ultrawide Monitor,1,379.99,04/01/19 00:12,"389 Willow St, New York City, NY 10001" -165008,Apple Airpods Headphones,1,150,03/23/19 20:04,"89 Cedar St, New York City, NY 10001" -165009,Wired Headphones,1,11.99,03/25/19 11:23,"370 Church St, San Francisco, CA 94016" -165010,Lightning Charging Cable,1,14.95,03/28/19 11:35,"548 Center St, Austin, TX 73301" -165011,Apple Airpods Headphones,1,150,03/12/19 10:44,"250 Park St, San Francisco, CA 94016" -165012,iPhone,1,700,03/25/19 13:22,"375 Willow St, New York City, NY 10001" -165013,AAA Batteries (4-pack),2,2.99,03/12/19 18:17,"860 Hickory St, San Francisco, CA 94016" -165014,Apple Airpods Headphones,1,150,03/23/19 20:09,"798 South St, San Francisco, CA 94016" -165015,Apple Airpods Headphones,1,150,03/17/19 00:40,"370 Jackson St, New York City, NY 10001" -165016,Lightning Charging Cable,1,14.95,03/30/19 10:57,"104 Willow St, San Francisco, CA 94016" -165017,27in FHD Monitor,1,149.99,03/22/19 21:45,"294 South St, New York City, NY 10001" -165018,Wired Headphones,1,11.99,03/29/19 18:25,"909 Lincoln St, San Francisco, CA 94016" -165019,USB-C Charging Cable,1,11.95,03/20/19 20:08,"538 Main St, San Francisco, CA 94016" -165020,Google Phone,1,600,03/02/19 10:33,"840 1st St, Dallas, TX 75001" -165021,ThinkPad Laptop,1,999.99,03/19/19 13:01,"225 Church St, New York City, NY 10001" -165022,AAA Batteries (4-pack),1,2.99,03/17/19 11:53,"586 Washington St, San Francisco, CA 94016" -165023,Apple Airpods Headphones,1,150,03/10/19 21:05,"102 Sunset St, New York City, NY 10001" -165024,AAA Batteries (4-pack),2,2.99,03/15/19 18:13,"121 Park St, San Francisco, CA 94016" -165025,AAA Batteries (4-pack),1,2.99,03/19/19 16:28,"61 Highland St, San Francisco, CA 94016" -165026,AAA Batteries (4-pack),3,2.99,03/21/19 13:06,"629 Chestnut St, New York City, NY 10001" -165027,Lightning Charging Cable,1,14.95,03/03/19 11:10,"411 North St, Los Angeles, CA 90001" -165028,Apple Airpods Headphones,1,150,03/13/19 16:37,"806 Maple St, Los Angeles, CA 90001" -165029,AA Batteries (4-pack),1,3.84,03/04/19 16:44,"157 Willow St, Los Angeles, CA 90001" -165030,AAA Batteries (4-pack),1,2.99,03/13/19 17:21,"478 West St, Austin, TX 73301" -165031,AAA Batteries (4-pack),2,2.99,03/04/19 11:50,"270 Meadow St, Seattle, WA 98101" -165032,Apple Airpods Headphones,1,150,03/26/19 11:40,"109 Willow St, Dallas, TX 75001" -165033,iPhone,1,700,03/20/19 00:38,"889 7th St, San Francisco, CA 94016" -165034,AA Batteries (4-pack),2,3.84,03/27/19 13:57,"406 Elm St, Boston, MA 02215" -165035,ThinkPad Laptop,1,999.99,03/02/19 08:48,"337 8th St, Dallas, TX 75001" -165036,27in 4K Gaming Monitor,1,389.99,03/21/19 21:13,"112 Johnson St, Austin, TX 73301" -165037,Lightning Charging Cable,1,14.95,03/01/19 09:00,"965 Washington St, San Francisco, CA 94016" -165038,USB-C Charging Cable,1,11.95,03/09/19 18:26,"397 Lake St, Austin, TX 73301" -165039,34in Ultrawide Monitor,1,379.99,03/08/19 20:44,"802 Chestnut St, Boston, MA 02215" -165040,AA Batteries (4-pack),1,3.84,03/15/19 22:41,"430 Meadow St, Dallas, TX 75001" -165041,LG Washing Machine,1,600.0,03/18/19 09:31,"848 Elm St, Atlanta, GA 30301" -165042,Apple Airpods Headphones,1,150,03/04/19 21:35,"419 Hill St, Dallas, TX 75001" -165043,27in FHD Monitor,1,149.99,03/04/19 14:29,"654 Chestnut St, San Francisco, CA 94016" -165044,Google Phone,1,600,03/24/19 08:25,"471 Park St, New York City, NY 10001" -165045,USB-C Charging Cable,1,11.95,03/10/19 20:03,"772 2nd St, Portland, OR 97035" -165046,Bose SoundSport Headphones,1,99.99,03/18/19 13:23,"328 Center St, Atlanta, GA 30301" -165047,Bose SoundSport Headphones,1,99.99,03/03/19 19:11,"351 Hill St, Boston, MA 02215" -165048,AA Batteries (4-pack),1,3.84,03/16/19 11:23,"486 Jefferson St, Portland, OR 97035" -165049,AAA Batteries (4-pack),2,2.99,03/22/19 22:28,"993 Hickory St, New York City, NY 10001" -165050,Google Phone,1,600,03/25/19 21:31,"15 Jackson St, Los Angeles, CA 90001" -165051,Vareebadd Phone,1,400,03/16/19 00:07,"554 Chestnut St, San Francisco, CA 94016" -165051,USB-C Charging Cable,1,11.95,03/16/19 00:07,"554 Chestnut St, San Francisco, CA 94016" -165052,Apple Airpods Headphones,1,150,03/07/19 10:51,"368 North St, Los Angeles, CA 90001" -165053,20in Monitor,1,109.99,03/11/19 13:23,"809 Hill St, Los Angeles, CA 90001" -165054,USB-C Charging Cable,1,11.95,03/27/19 12:09,"227 8th St, Boston, MA 02215" -165055,Lightning Charging Cable,1,14.95,03/04/19 20:44,"382 1st St, Los Angeles, CA 90001" -165056,AA Batteries (4-pack),2,3.84,03/24/19 23:31,"945 14th St, San Francisco, CA 94016" -165057,ThinkPad Laptop,1,999.99,03/21/19 23:09,"930 Dogwood St, New York City, NY 10001" -165058,27in 4K Gaming Monitor,1,389.99,03/31/19 10:17,"796 10th St, San Francisco, CA 94016" -165059,AAA Batteries (4-pack),3,2.99,03/11/19 09:52,"140 Sunset St, Portland, ME 04101" -165060,Bose SoundSport Headphones,1,99.99,03/17/19 17:42,"859 Main St, Seattle, WA 98101" -165061,Wired Headphones,1,11.99,03/29/19 10:40,"83 Adams St, San Francisco, CA 94016" -165062,AA Batteries (4-pack),1,3.84,03/31/19 20:46,"601 Maple St, San Francisco, CA 94016" -165063,AAA Batteries (4-pack),1,2.99,03/13/19 20:43,"156 Cherry St, San Francisco, CA 94016" -165064,Wired Headphones,1,11.99,03/08/19 19:36,"938 4th St, San Francisco, CA 94016" -165065,27in FHD Monitor,1,149.99,03/17/19 09:54,"558 Cherry St, Austin, TX 73301" -165066,AA Batteries (4-pack),1,3.84,03/10/19 12:24,"495 11th St, San Francisco, CA 94016" -165067,AA Batteries (4-pack),2,3.84,03/17/19 20:54,"184 Cherry St, Los Angeles, CA 90001" -165068,Apple Airpods Headphones,1,150,03/17/19 20:58,"623 11th St, Los Angeles, CA 90001" -165069,AAA Batteries (4-pack),1,2.99,03/22/19 16:20,"357 South St, Boston, MA 02215" -165070,AA Batteries (4-pack),3,3.84,03/29/19 17:37,"679 Ridge St, New York City, NY 10001" -165071,AA Batteries (4-pack),1,3.84,03/31/19 13:02,"142 Forest St, New York City, NY 10001" -165072,USB-C Charging Cable,1,11.95,03/28/19 20:22,"412 West St, Atlanta, GA 30301" -165073,27in FHD Monitor,1,149.99,03/14/19 21:37,"953 13th St, San Francisco, CA 94016" -165074,AAA Batteries (4-pack),1,2.99,03/04/19 16:40,"761 Cherry St, Los Angeles, CA 90001" -165075,34in Ultrawide Monitor,1,379.99,03/22/19 23:09,"495 South St, Seattle, WA 98101" -165076,USB-C Charging Cable,1,11.95,03/13/19 11:47,"149 Church St, San Francisco, CA 94016" -165077,Wired Headphones,1,11.99,03/21/19 23:38,"393 South St, Atlanta, GA 30301" -165078,Wired Headphones,1,11.99,03/26/19 14:08,"957 Adams St, Los Angeles, CA 90001" -165079,AA Batteries (4-pack),1,3.84,03/24/19 19:17,"953 Johnson St, Boston, MA 02215" -165080,AAA Batteries (4-pack),1,2.99,03/05/19 15:37,"826 Walnut St, Austin, TX 73301" -165081,iPhone,1,700,03/08/19 14:42,"549 Lake St, Austin, TX 73301" -165082,AAA Batteries (4-pack),1,2.99,03/13/19 11:31,"697 2nd St, Boston, MA 02215" -165083,Google Phone,1,600,03/12/19 18:38,"914 Willow St, Los Angeles, CA 90001" -165084,Bose SoundSport Headphones,1,99.99,03/10/19 15:12,"134 Ridge St, Boston, MA 02215" -165085,Wired Headphones,1,11.99,03/07/19 14:31,"239 Elm St, Atlanta, GA 30301" -165086,AAA Batteries (4-pack),1,2.99,03/02/19 18:02,"617 Jackson St, San Francisco, CA 94016" -165087,AA Batteries (4-pack),1,3.84,03/22/19 12:31,"689 1st St, Los Angeles, CA 90001" -165088,Vareebadd Phone,1,400,03/26/19 18:24,"158 Madison St, San Francisco, CA 94016" -165089,Wired Headphones,1,11.99,03/18/19 04:42,"128 South St, New York City, NY 10001" -165090,Google Phone,1,600,03/05/19 13:59,"607 Center St, San Francisco, CA 94016" -165091,Bose SoundSport Headphones,1,99.99,03/15/19 19:38,"958 South St, San Francisco, CA 94016" -165092,USB-C Charging Cable,2,11.95,03/26/19 12:25,"15 Ridge St, Atlanta, GA 30301" -165093,27in FHD Monitor,1,149.99,03/06/19 14:17,"389 Elm St, Los Angeles, CA 90001" -165094,USB-C Charging Cable,1,11.95,03/08/19 18:50,"449 Maple St, Boston, MA 02215" -165095,Apple Airpods Headphones,1,150,03/09/19 19:52,"670 Chestnut St, Austin, TX 73301" -165096,Wired Headphones,1,11.99,03/08/19 16:13,"854 Walnut St, Portland, OR 97035" -165097,Wired Headphones,1,11.99,03/03/19 18:46,"975 Center St, Boston, MA 02215" -165098,AAA Batteries (4-pack),2,2.99,03/16/19 10:01,"991 Madison St, Atlanta, GA 30301" -165099,Apple Airpods Headphones,1,150,03/07/19 19:29,"218 10th St, Atlanta, GA 30301" -165100,ThinkPad Laptop,1,999.99,03/12/19 21:31,"870 Center St, New York City, NY 10001" -165101,Bose SoundSport Headphones,1,99.99,03/17/19 13:40,"795 Pine St, Los Angeles, CA 90001" -165102,AAA Batteries (4-pack),1,2.99,03/01/19 12:25,"588 Main St, Los Angeles, CA 90001" -165103,AA Batteries (4-pack),1,3.84,03/06/19 19:20,"140 Cherry St, Dallas, TX 75001" -165103,Google Phone,1,600,03/06/19 19:20,"140 Cherry St, Dallas, TX 75001" -165104,Macbook Pro Laptop,1,1700,03/29/19 23:58,"437 North St, San Francisco, CA 94016" -165105,AAA Batteries (4-pack),1,2.99,03/09/19 13:06,"653 Jackson St, Los Angeles, CA 90001" -165106,AAA Batteries (4-pack),1,2.99,03/22/19 20:36,"839 Elm St, Los Angeles, CA 90001" -165107,AA Batteries (4-pack),2,3.84,03/12/19 07:58,"665 Lakeview St, Austin, TX 73301" -165108,Wired Headphones,1,11.99,03/05/19 16:00,"855 Madison St, San Francisco, CA 94016" -165109,Bose SoundSport Headphones,1,99.99,03/08/19 08:05,"403 10th St, Seattle, WA 98101" -165110,AAA Batteries (4-pack),2,2.99,03/10/19 11:23,"133 Walnut St, Boston, MA 02215" -165111,27in FHD Monitor,1,149.99,03/08/19 11:37,"849 13th St, Atlanta, GA 30301" -165112,AAA Batteries (4-pack),2,2.99,03/01/19 18:48,"232 Hill St, Los Angeles, CA 90001" -165113,AAA Batteries (4-pack),1,2.99,03/12/19 15:12,"755 Spruce St, San Francisco, CA 94016" -165114,27in 4K Gaming Monitor,1,389.99,03/09/19 23:14,"977 West St, Portland, OR 97035" -165115,Google Phone,1,600,03/22/19 22:37,"52 6th St, New York City, NY 10001" -165115,Bose SoundSport Headphones,1,99.99,03/22/19 22:37,"52 6th St, New York City, NY 10001" -165116,AAA Batteries (4-pack),1,2.99,03/08/19 10:52,"607 4th St, Portland, OR 97035" -165117,AAA Batteries (4-pack),1,2.99,03/01/19 09:15,"29 7th St, New York City, NY 10001" -165118,AA Batteries (4-pack),1,3.84,03/07/19 23:24,"68 Lincoln St, Austin, TX 73301" -165119,Macbook Pro Laptop,1,1700,03/11/19 09:58,"770 Cedar St, Los Angeles, CA 90001" -165120,Lightning Charging Cable,1,14.95,03/22/19 09:48,"117 5th St, New York City, NY 10001" -165121,iPhone,1,700,03/30/19 16:20,"597 11th St, Dallas, TX 75001" -165122,USB-C Charging Cable,1,11.95,03/29/19 21:29,"87 Adams St, Seattle, WA 98101" -165122,Apple Airpods Headphones,1,150,03/29/19 21:29,"87 Adams St, Seattle, WA 98101" -165123,Wired Headphones,2,11.99,03/18/19 14:42,"748 Meadow St, San Francisco, CA 94016" -165123,Lightning Charging Cable,1,14.95,03/18/19 14:42,"748 Meadow St, San Francisco, CA 94016" -165124,ThinkPad Laptop,1,999.99,03/27/19 20:29,"546 Wilson St, New York City, NY 10001" -165125,AA Batteries (4-pack),1,3.84,03/27/19 07:10,"278 Cherry St, Los Angeles, CA 90001" -165126,AAA Batteries (4-pack),1,2.99,03/21/19 22:20,"138 River St, Seattle, WA 98101" -165127,AAA Batteries (4-pack),3,2.99,03/23/19 19:34,"857 8th St, San Francisco, CA 94016" -165128,27in FHD Monitor,1,149.99,03/07/19 18:30,"926 West St, Atlanta, GA 30301" -165129,USB-C Charging Cable,1,11.95,03/02/19 09:11,"772 Wilson St, San Francisco, CA 94016" -165129,iPhone,1,700,03/02/19 09:11,"772 Wilson St, San Francisco, CA 94016" -165130,AA Batteries (4-pack),2,3.84,03/26/19 06:28,"538 River St, Boston, MA 02215" -165131,Flatscreen TV,1,300,03/12/19 11:00,"187 4th St, Los Angeles, CA 90001" -165132,iPhone,1,700,03/16/19 20:27,"443 11th St, San Francisco, CA 94016" -165133,Wired Headphones,1,11.99,03/29/19 13:58,"190 12th St, Portland, OR 97035" -165134,Google Phone,1,600,03/22/19 22:55,"82 South St, Boston, MA 02215" -165135,LG Dryer,1,600.0,03/12/19 13:19,"274 Center St, San Francisco, CA 94016" -165136,USB-C Charging Cable,1,11.95,03/16/19 06:20,"720 Highland St, San Francisco, CA 94016" -165137,27in FHD Monitor,1,149.99,03/21/19 22:28,"82 Church St, Seattle, WA 98101" -165138,Bose SoundSport Headphones,1,99.99,03/15/19 17:07,"141 4th St, Dallas, TX 75001" -165139,AA Batteries (4-pack),1,3.84,03/25/19 12:51,"724 7th St, Atlanta, GA 30301" -165140,Lightning Charging Cable,1,14.95,03/16/19 12:29,"654 Elm St, New York City, NY 10001" -165141,Wired Headphones,1,11.99,03/23/19 10:59,"10 5th St, Austin, TX 73301" -,,,,, -165142,AA Batteries (4-pack),1,3.84,03/31/19 19:44,"211 Johnson St, Dallas, TX 75001" -165143,AAA Batteries (4-pack),2,2.99,03/31/19 02:46,"754 Lincoln St, New York City, NY 10001" -165144,AAA Batteries (4-pack),2,2.99,03/26/19 20:46,"875 Elm St, Atlanta, GA 30301" -165145,20in Monitor,1,109.99,03/24/19 13:02,"992 Cedar St, San Francisco, CA 94016" -165146,iPhone,1,700,03/04/19 18:39,"319 Wilson St, Atlanta, GA 30301" -165147,Lightning Charging Cable,1,14.95,03/19/19 19:36,"884 12th St, Seattle, WA 98101" -165148,iPhone,1,700,03/02/19 22:42,"112 Cedar St, San Francisco, CA 94016" -165149,Apple Airpods Headphones,1,150,03/18/19 21:57,"707 Lincoln St, New York City, NY 10001" -165150,USB-C Charging Cable,1,11.95,03/29/19 14:34,"173 9th St, Los Angeles, CA 90001" -165151,AA Batteries (4-pack),2,3.84,03/01/19 09:21,"923 Park St, Portland, OR 97035" -165152,Apple Airpods Headphones,1,150,03/12/19 00:10,"508 12th St, Los Angeles, CA 90001" -165153,Lightning Charging Cable,1,14.95,03/08/19 15:04,"4 Lakeview St, Los Angeles, CA 90001" -165154,AAA Batteries (4-pack),1,2.99,03/17/19 09:34,"699 14th St, San Francisco, CA 94016" -165155,USB-C Charging Cable,1,11.95,03/28/19 23:01,"409 11th St, San Francisco, CA 94016" -165156,Lightning Charging Cable,1,14.95,03/16/19 12:53,"562 Highland St, Los Angeles, CA 90001" -165157,Bose SoundSport Headphones,1,99.99,03/14/19 13:09,"390 8th St, New York City, NY 10001" -165158,iPhone,1,700,03/11/19 11:58,"91 Sunset St, New York City, NY 10001" -165158,Lightning Charging Cable,1,14.95,03/11/19 11:58,"91 Sunset St, New York City, NY 10001" -165159,Google Phone,1,600,03/21/19 18:40,"254 4th St, Austin, TX 73301" -165160,Apple Airpods Headphones,1,150,03/03/19 19:06,"976 2nd St, Portland, OR 97035" -165161,Wired Headphones,1,11.99,03/19/19 23:31,"322 Center St, Seattle, WA 98101" -165162,Lightning Charging Cable,1,14.95,03/21/19 10:49,"50 14th St, Seattle, WA 98101" -165163,Lightning Charging Cable,1,14.95,03/09/19 13:46,"225 Park St, San Francisco, CA 94016" -165164,AAA Batteries (4-pack),1,2.99,03/08/19 00:47,"523 2nd St, New York City, NY 10001" -165165,27in FHD Monitor,1,149.99,03/22/19 20:15,"476 South St, Austin, TX 73301" -165166,AA Batteries (4-pack),2,3.84,03/17/19 15:50,"918 Forest St, Los Angeles, CA 90001" -165167,Bose SoundSport Headphones,1,99.99,03/08/19 19:32,"492 Johnson St, Dallas, TX 75001" -165168,Apple Airpods Headphones,1,150,03/01/19 12:51,"384 Dogwood St, Dallas, TX 75001" -165169,27in 4K Gaming Monitor,1,389.99,03/26/19 20:48,"273 Main St, Atlanta, GA 30301" -165170,Vareebadd Phone,1,400,03/13/19 18:07,"690 Park St, San Francisco, CA 94016" -165171,Lightning Charging Cable,1,14.95,03/12/19 14:38,"927 Elm St, San Francisco, CA 94016" -165172,Lightning Charging Cable,1,14.95,03/18/19 21:28,"307 Elm St, New York City, NY 10001" -165173,AA Batteries (4-pack),1,3.84,03/19/19 16:47,"345 2nd St, New York City, NY 10001" -165174,LG Dryer,1,600.0,03/24/19 18:03,"714 1st St, San Francisco, CA 94016" -165175,Apple Airpods Headphones,1,150,03/14/19 12:50,"942 Dogwood St, Seattle, WA 98101" -165176,AAA Batteries (4-pack),1,2.99,03/15/19 20:38,"33 2nd St, Los Angeles, CA 90001" -165177,LG Dryer,1,600.0,03/07/19 18:41,"428 Pine St, San Francisco, CA 94016" -165178,Lightning Charging Cable,1,14.95,03/06/19 18:45,"690 Maple St, San Francisco, CA 94016" -165179,USB-C Charging Cable,1,11.95,03/30/19 13:25,"311 Walnut St, Atlanta, GA 30301" -165180,Lightning Charging Cable,1,14.95,03/24/19 12:57,"597 5th St, Seattle, WA 98101" -165180,Lightning Charging Cable,1,14.95,03/24/19 12:57,"597 5th St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -165181,Bose SoundSport Headphones,1,99.99,03/06/19 20:37,"722 North St, Boston, MA 02215" -165182,AAA Batteries (4-pack),1,2.99,03/10/19 10:24,"477 Main St, Austin, TX 73301" -165183,iPhone,1,700,03/15/19 13:49,"206 Forest St, New York City, NY 10001" -165184,USB-C Charging Cable,1,11.95,03/08/19 19:03,"696 Forest St, Boston, MA 02215" -165185,27in 4K Gaming Monitor,1,389.99,03/18/19 09:32,"71 Chestnut St, Dallas, TX 75001" -165186,Wired Headphones,1,11.99,03/03/19 14:07,"481 6th St, Portland, OR 97035" -165187,Wired Headphones,1,11.99,03/12/19 19:38,"446 Jackson St, Seattle, WA 98101" -165188,iPhone,1,700,03/20/19 18:48,"253 Ridge St, Boston, MA 02215" -165189,Apple Airpods Headphones,1,150,03/06/19 19:41,"323 Sunset St, Atlanta, GA 30301" -165190,AA Batteries (4-pack),3,3.84,03/31/19 17:48,"799 Center St, Dallas, TX 75001" -165191,AA Batteries (4-pack),1,3.84,03/04/19 09:26,"288 Adams St, San Francisco, CA 94016" -165192,34in Ultrawide Monitor,1,379.99,03/18/19 10:37,"283 Jefferson St, Portland, OR 97035" -165193,AA Batteries (4-pack),1,3.84,03/29/19 08:35,"436 West St, Dallas, TX 75001" -165194,AAA Batteries (4-pack),1,2.99,03/13/19 12:53,"646 Park St, New York City, NY 10001" -165195,27in FHD Monitor,1,149.99,03/04/19 13:48,"355 Pine St, Atlanta, GA 30301" -165196,Lightning Charging Cable,2,14.95,03/29/19 08:31,"305 Pine St, Austin, TX 73301" -165197,Apple Airpods Headphones,1,150,03/22/19 22:44,"653 River St, Atlanta, GA 30301" -165197,Macbook Pro Laptop,1,1700,03/22/19 22:44,"653 River St, Atlanta, GA 30301" -165198,AAA Batteries (4-pack),1,2.99,03/13/19 18:43,"718 11th St, Los Angeles, CA 90001" -165199,USB-C Charging Cable,1,11.95,03/23/19 11:33,"428 Walnut St, San Francisco, CA 94016" -165200,USB-C Charging Cable,2,11.95,03/25/19 14:41,"329 Washington St, Austin, TX 73301" -165201,iPhone,1,700,03/11/19 10:19,"741 5th St, San Francisco, CA 94016" -165202,Bose SoundSport Headphones,1,99.99,03/04/19 20:20,"316 Jackson St, San Francisco, CA 94016" -165203,27in 4K Gaming Monitor,1,389.99,03/07/19 22:11,"586 Elm St, San Francisco, CA 94016" -165204,Bose SoundSport Headphones,1,99.99,03/21/19 12:16,"728 West St, Los Angeles, CA 90001" -165205,27in FHD Monitor,1,149.99,03/13/19 12:07,"500 Johnson St, Seattle, WA 98101" -165206,USB-C Charging Cable,1,11.95,03/07/19 23:41,"530 Center St, San Francisco, CA 94016" -165207,Lightning Charging Cable,1,14.95,03/20/19 09:25,"317 West St, Seattle, WA 98101" -165208,Flatscreen TV,1,300,03/27/19 18:13,"292 Forest St, San Francisco, CA 94016" -165209,Flatscreen TV,1,300,03/08/19 00:53,"539 Church St, Atlanta, GA 30301" -165210,34in Ultrawide Monitor,1,379.99,03/29/19 16:15,"383 Cedar St, Boston, MA 02215" -165211,Wired Headphones,1,11.99,03/03/19 13:37,"270 Cherry St, San Francisco, CA 94016" -165212,AA Batteries (4-pack),1,3.84,03/29/19 21:09,"33 Cedar St, San Francisco, CA 94016" -165213,Wired Headphones,1,11.99,03/18/19 17:21,"86 Main St, San Francisco, CA 94016" -165214,AA Batteries (4-pack),2,3.84,03/16/19 15:37,"958 Meadow St, Los Angeles, CA 90001" -165215,AAA Batteries (4-pack),1,2.99,03/08/19 23:21,"434 Chestnut St, Seattle, WA 98101" -165216,USB-C Charging Cable,1,11.95,03/17/19 20:24,"538 Lakeview St, Los Angeles, CA 90001" -165217,USB-C Charging Cable,2,11.95,03/10/19 12:56,"245 Willow St, Boston, MA 02215" -165217,ThinkPad Laptop,1,999.99,03/10/19 12:56,"245 Willow St, Boston, MA 02215" -165218,Bose SoundSport Headphones,1,99.99,03/23/19 10:29,"566 Hill St, New York City, NY 10001" -165219,34in Ultrawide Monitor,1,379.99,03/03/19 19:20,"919 13th St, San Francisco, CA 94016" -165220,AAA Batteries (4-pack),3,2.99,03/08/19 09:46,"169 Lake St, Los Angeles, CA 90001" -165221,Apple Airpods Headphones,1,150,03/12/19 07:39,"599 8th St, San Francisco, CA 94016" -165222,Apple Airpods Headphones,1,150,03/15/19 12:44,"877 5th St, San Francisco, CA 94016" -165223,iPhone,1,700,03/04/19 06:01,"917 12th St, San Francisco, CA 94016" -165224,AAA Batteries (4-pack),1,2.99,03/21/19 20:50,"584 Main St, Boston, MA 02215" -165225,USB-C Charging Cable,1,11.95,03/17/19 07:00,"948 1st St, Los Angeles, CA 90001" -165226,Wired Headphones,1,11.99,03/03/19 10:54,"214 Spruce St, Portland, ME 04101" -165227,Bose SoundSport Headphones,1,99.99,03/03/19 15:17,"376 10th St, Dallas, TX 75001" -165228,AAA Batteries (4-pack),3,2.99,03/27/19 09:28,"812 Sunset St, Boston, MA 02215" -165229,Wired Headphones,1,11.99,03/03/19 16:00,"374 Washington St, Los Angeles, CA 90001" -165230,Apple Airpods Headphones,1,150,03/16/19 02:16,"403 Wilson St, Los Angeles, CA 90001" -165231,USB-C Charging Cable,2,11.95,03/15/19 14:36,"696 River St, Boston, MA 02215" -165232,27in FHD Monitor,1,149.99,03/09/19 04:58,"551 10th St, San Francisco, CA 94016" -165233,USB-C Charging Cable,1,11.95,03/14/19 07:57,"1 11th St, Atlanta, GA 30301" -165234,AAA Batteries (4-pack),1,2.99,03/07/19 23:40,"218 Ridge St, Portland, OR 97035" -165235,Lightning Charging Cable,1,14.95,03/23/19 11:02,"796 South St, Atlanta, GA 30301" -165236,Lightning Charging Cable,1,14.95,03/09/19 15:28,"432 Hickory St, New York City, NY 10001" -165237,Lightning Charging Cable,1,14.95,03/16/19 19:26,"218 9th St, Atlanta, GA 30301" -165238,AAA Batteries (4-pack),1,2.99,03/19/19 01:27,"620 Willow St, Los Angeles, CA 90001" -165239,Apple Airpods Headphones,1,150,03/22/19 14:49,"232 Lake St, Seattle, WA 98101" -165240,Lightning Charging Cable,1,14.95,03/14/19 08:20,"504 Church St, Los Angeles, CA 90001" -165241,Google Phone,1,600,03/07/19 19:47,"396 8th St, Los Angeles, CA 90001" -165241,USB-C Charging Cable,2,11.95,03/07/19 19:47,"396 8th St, Los Angeles, CA 90001" -165242,Bose SoundSport Headphones,1,99.99,03/28/19 08:50,"41 5th St, Portland, OR 97035" -165243,AAA Batteries (4-pack),1,2.99,03/23/19 06:25,"283 13th St, San Francisco, CA 94016" -165244,iPhone,1,700,03/15/19 20:10,"382 13th St, Atlanta, GA 30301" -165244,AA Batteries (4-pack),1,3.84,03/15/19 20:10,"382 13th St, Atlanta, GA 30301" -165245,AAA Batteries (4-pack),1,2.99,03/17/19 12:02,"287 5th St, Austin, TX 73301" -165246,USB-C Charging Cable,1,11.95,03/19/19 11:14,"173 Chestnut St, Austin, TX 73301" -165247,AA Batteries (4-pack),2,3.84,03/24/19 09:21,"644 South St, San Francisco, CA 94016" -165248,27in FHD Monitor,1,149.99,03/11/19 12:45,"782 Spruce St, Dallas, TX 75001" -165248,Lightning Charging Cable,1,14.95,03/11/19 12:45,"782 Spruce St, Dallas, TX 75001" -165249,Bose SoundSport Headphones,1,99.99,03/18/19 11:29,"637 4th St, Boston, MA 02215" -165250,USB-C Charging Cable,1,11.95,03/03/19 05:23,"430 South St, San Francisco, CA 94016" -165251,AA Batteries (4-pack),1,3.84,03/10/19 11:20,"880 Hill St, San Francisco, CA 94016" -165252,USB-C Charging Cable,1,11.95,03/13/19 15:31,"960 12th St, Austin, TX 73301" -165253,iPhone,1,700,03/15/19 21:17,"704 Church St, Los Angeles, CA 90001" -165254,AA Batteries (4-pack),1,3.84,03/30/19 20:53,"872 West St, Portland, OR 97035" -165255,Vareebadd Phone,1,400,03/09/19 18:46,"400 Center St, San Francisco, CA 94016" -165256,Macbook Pro Laptop,1,1700,03/05/19 17:41,"808 8th St, Boston, MA 02215" -165257,USB-C Charging Cable,1,11.95,03/05/19 10:20,"583 6th St, San Francisco, CA 94016" -165258,AA Batteries (4-pack),1,3.84,03/18/19 13:39,"64 Church St, Portland, OR 97035" -165259,Apple Airpods Headphones,1,150,03/11/19 19:51,"214 10th St, Atlanta, GA 30301" -165260,34in Ultrawide Monitor,1,379.99,03/03/19 17:22,"716 Washington St, San Francisco, CA 94016" -165261,AA Batteries (4-pack),3,3.84,03/27/19 01:01,"627 Jackson St, San Francisco, CA 94016" -165262,Wired Headphones,1,11.99,03/08/19 19:05,"642 Cedar St, New York City, NY 10001" -165263,AA Batteries (4-pack),2,3.84,03/13/19 19:06,"711 Highland St, New York City, NY 10001" -165264,iPhone,1,700,03/27/19 13:33,"926 Spruce St, Dallas, TX 75001" -165265,27in 4K Gaming Monitor,1,389.99,03/06/19 02:10,"115 South St, San Francisco, CA 94016" -165266,27in 4K Gaming Monitor,1,389.99,03/01/19 21:37,"941 Main St, San Francisco, CA 94016" -165267,AA Batteries (4-pack),1,3.84,03/23/19 10:46,"812 12th St, San Francisco, CA 94016" -165268,Wired Headphones,2,11.99,03/17/19 22:48,"72 13th St, San Francisco, CA 94016" -165269,AAA Batteries (4-pack),1,2.99,03/24/19 12:01,"465 Willow St, Portland, ME 04101" -165270,Google Phone,1,600,03/27/19 03:04,"192 Cherry St, Los Angeles, CA 90001" -165270,USB-C Charging Cable,1,11.95,03/27/19 03:04,"192 Cherry St, Los Angeles, CA 90001" -165271,Flatscreen TV,1,300,03/12/19 21:45,"244 South St, New York City, NY 10001" -165272,AAA Batteries (4-pack),1,2.99,03/03/19 13:57,"688 10th St, Austin, TX 73301" -165273,AAA Batteries (4-pack),1,2.99,03/29/19 00:38,"212 Hill St, Los Angeles, CA 90001" -165274,Flatscreen TV,1,300,03/21/19 17:45,"397 South St, San Francisco, CA 94016" -165275,Wired Headphones,1,11.99,03/22/19 10:47,"794 Johnson St, San Francisco, CA 94016" -165276,AA Batteries (4-pack),1,3.84,03/23/19 15:44,"60 Washington St, Los Angeles, CA 90001" -165277,USB-C Charging Cable,1,11.95,03/01/19 23:43,"222 Washington St, Boston, MA 02215" -165278,Google Phone,1,600,03/05/19 15:48,"224 5th St, New York City, NY 10001" -165279,Macbook Pro Laptop,1,1700,03/16/19 13:21,"761 Pine St, Austin, TX 73301" -165280,AA Batteries (4-pack),1,3.84,03/19/19 19:49,"510 Ridge St, Los Angeles, CA 90001" -165281,AA Batteries (4-pack),1,3.84,03/30/19 16:50,"629 Willow St, Atlanta, GA 30301" -165282,AAA Batteries (4-pack),1,2.99,03/17/19 17:50,"128 2nd St, Los Angeles, CA 90001" -165283,27in FHD Monitor,1,149.99,03/15/19 12:22,"334 Elm St, San Francisco, CA 94016" -165284,Wired Headphones,1,11.99,03/17/19 13:07,"884 2nd St, Seattle, WA 98101" -165285,Wired Headphones,1,11.99,03/05/19 08:57,"982 Walnut St, Boston, MA 02215" -165286,20in Monitor,1,109.99,03/26/19 18:00,"133 9th St, San Francisco, CA 94016" -165287,AA Batteries (4-pack),1,3.84,03/17/19 00:22,"791 South St, San Francisco, CA 94016" -165288,AAA Batteries (4-pack),3,2.99,03/11/19 22:41,"700 6th St, San Francisco, CA 94016" -165289,AA Batteries (4-pack),1,3.84,03/22/19 11:13,"308 6th St, Portland, OR 97035" -165290,34in Ultrawide Monitor,1,379.99,03/20/19 16:49,"616 9th St, San Francisco, CA 94016" -165291,Bose SoundSport Headphones,1,99.99,03/25/19 12:47,"730 Chestnut St, San Francisco, CA 94016" -165292,Lightning Charging Cable,2,14.95,03/08/19 11:33,"934 Spruce St, Boston, MA 02215" -165293,Wired Headphones,1,11.99,03/16/19 21:57,"670 11th St, Dallas, TX 75001" -165294,USB-C Charging Cable,1,11.95,03/26/19 13:13,"436 Lakeview St, Boston, MA 02215" -165295,AAA Batteries (4-pack),2,2.99,03/23/19 08:54,"752 14th St, Los Angeles, CA 90001" -165296,AAA Batteries (4-pack),1,2.99,03/12/19 15:52,"733 Sunset St, San Francisco, CA 94016" -165297,AAA Batteries (4-pack),2,2.99,03/08/19 11:34,"623 Madison St, San Francisco, CA 94016" -165298,Apple Airpods Headphones,1,150,03/19/19 17:46,"409 Jackson St, Seattle, WA 98101" -165299,Lightning Charging Cable,1,14.95,03/18/19 19:22,"7 Cherry St, Dallas, TX 75001" -165300,Google Phone,1,600,03/19/19 14:05,"816 Adams St, Portland, OR 97035" -165301,AAA Batteries (4-pack),3,2.99,03/08/19 15:42,"767 Cedar St, San Francisco, CA 94016" -,,,,, -165302,27in 4K Gaming Monitor,1,389.99,03/14/19 11:55,"489 Lakeview St, Atlanta, GA 30301" -165303,USB-C Charging Cable,1,11.95,03/03/19 23:02,"678 Lake St, Atlanta, GA 30301" -165304,ThinkPad Laptop,1,999.99,03/30/19 20:39,"562 River St, San Francisco, CA 94016" -165305,Vareebadd Phone,1,400,03/05/19 19:24,"393 Highland St, San Francisco, CA 94016" -165306,USB-C Charging Cable,1,11.95,03/02/19 22:58,"444 4th St, Dallas, TX 75001" -165307,Wired Headphones,2,11.99,03/22/19 12:42,"74 8th St, Dallas, TX 75001" -165308,Wired Headphones,1,11.99,03/30/19 19:56,"867 9th St, San Francisco, CA 94016" -165309,27in 4K Gaming Monitor,1,389.99,03/26/19 20:49,"399 Center St, Boston, MA 02215" -165310,Apple Airpods Headphones,1,150,03/03/19 04:47,"105 West St, Boston, MA 02215" -165311,AAA Batteries (4-pack),1,2.99,03/23/19 20:52,"268 Walnut St, Los Angeles, CA 90001" -165312,Lightning Charging Cable,1,14.95,03/06/19 19:17,"479 6th St, Austin, TX 73301" -165313,USB-C Charging Cable,1,11.95,03/28/19 13:05,"525 Spruce St, Seattle, WA 98101" -165314,Lightning Charging Cable,1,14.95,03/23/19 17:35,"886 11th St, Los Angeles, CA 90001" -165315,USB-C Charging Cable,1,11.95,03/14/19 20:22,"354 Hill St, San Francisco, CA 94016" -165316,iPhone,1,700,03/29/19 04:42,"886 North St, Boston, MA 02215" -165317,Lightning Charging Cable,1,14.95,03/24/19 08:50,"848 Cherry St, Seattle, WA 98101" -165318,Macbook Pro Laptop,1,1700,03/29/19 21:08,"676 Madison St, Boston, MA 02215" -165319,Bose SoundSport Headphones,1,99.99,03/18/19 19:19,"797 Johnson St, Dallas, TX 75001" -165320,34in Ultrawide Monitor,1,379.99,03/30/19 23:45,"541 Hickory St, Dallas, TX 75001" -165321,Apple Airpods Headphones,1,150,03/09/19 10:04,"128 8th St, Atlanta, GA 30301" -165322,34in Ultrawide Monitor,1,379.99,03/24/19 13:59,"854 Chestnut St, Seattle, WA 98101" -165323,Bose SoundSport Headphones,1,99.99,03/21/19 09:05,"183 2nd St, Boston, MA 02215" -165324,USB-C Charging Cable,1,11.95,03/31/19 09:21,"572 4th St, Los Angeles, CA 90001" -165325,34in Ultrawide Monitor,1,379.99,03/20/19 19:41,"156 Pine St, San Francisco, CA 94016" -165326,Bose SoundSport Headphones,1,99.99,03/29/19 06:06,"787 Lakeview St, New York City, NY 10001" -165327,Lightning Charging Cable,1,14.95,03/18/19 19:12,"300 Highland St, Austin, TX 73301" -165328,AAA Batteries (4-pack),1,2.99,03/29/19 13:42,"576 Meadow St, Austin, TX 73301" -165329,AAA Batteries (4-pack),1,2.99,03/17/19 20:20,"695 10th St, Atlanta, GA 30301" -165330,Flatscreen TV,1,300,03/07/19 03:54,"313 Sunset St, Los Angeles, CA 90001" -165331,Lightning Charging Cable,1,14.95,03/10/19 10:50,"534 North St, San Francisco, CA 94016" -165332,27in 4K Gaming Monitor,1,389.99,03/18/19 16:28,"190 River St, Portland, OR 97035" -165333,Bose SoundSport Headphones,1,99.99,03/04/19 10:45,"832 Forest St, Austin, TX 73301" -165334,34in Ultrawide Monitor,1,379.99,03/31/19 21:55,"484 Highland St, Los Angeles, CA 90001" -165335,AAA Batteries (4-pack),1,2.99,03/29/19 18:08,"753 7th St, New York City, NY 10001" -165336,Lightning Charging Cable,1,14.95,03/10/19 12:20,"567 Cherry St, Los Angeles, CA 90001" -165337,ThinkPad Laptop,1,999.99,03/12/19 23:00,"357 Willow St, Los Angeles, CA 90001" -165338,Vareebadd Phone,1,400,03/19/19 20:23,"152 1st St, Atlanta, GA 30301" -165339,27in FHD Monitor,1,149.99,03/09/19 15:37,"845 Lake St, New York City, NY 10001" -165340,34in Ultrawide Monitor,1,379.99,03/26/19 19:15,"762 Lake St, New York City, NY 10001" -165341,27in FHD Monitor,1,149.99,03/15/19 18:23,"699 Cherry St, Dallas, TX 75001" -165342,USB-C Charging Cable,1,11.95,03/21/19 07:14,"219 North St, New York City, NY 10001" -165343,USB-C Charging Cable,1,11.95,03/31/19 06:31,"435 Spruce St, Seattle, WA 98101" -165344,Macbook Pro Laptop,1,1700,03/19/19 21:53,"942 Cherry St, Atlanta, GA 30301" -165345,AAA Batteries (4-pack),1,2.99,03/16/19 19:14,"598 Jackson St, Seattle, WA 98101" -165346,Apple Airpods Headphones,1,150,03/30/19 17:34,"336 Lincoln St, Boston, MA 02215" -165347,Lightning Charging Cable,1,14.95,03/25/19 12:34,"717 Jefferson St, Portland, OR 97035" -165348,Flatscreen TV,1,300,03/31/19 18:03,"786 Cedar St, Portland, OR 97035" -165349,Wired Headphones,1,11.99,03/02/19 08:28,"942 Hill St, Austin, TX 73301" -165350,USB-C Charging Cable,1,11.95,03/31/19 17:43,"429 5th St, New York City, NY 10001" -165351,AAA Batteries (4-pack),1,2.99,03/22/19 15:08,"241 10th St, Seattle, WA 98101" -165352,USB-C Charging Cable,1,11.95,03/25/19 22:58,"486 Lakeview St, New York City, NY 10001" -165353,Wired Headphones,1,11.99,03/10/19 14:18,"690 Ridge St, Seattle, WA 98101" -165354,Lightning Charging Cable,1,14.95,03/02/19 00:12,"175 River St, Boston, MA 02215" -165355,AAA Batteries (4-pack),1,2.99,03/28/19 06:05,"881 Hill St, Dallas, TX 75001" -165356,iPhone,1,700,03/22/19 20:32,"282 7th St, Atlanta, GA 30301" -165357,Wired Headphones,1,11.99,03/01/19 10:24,"570 Walnut St, Portland, OR 97035" -165358,Apple Airpods Headphones,1,150,03/08/19 12:48,"502 Sunset St, Dallas, TX 75001" -165359,Lightning Charging Cable,1,14.95,03/11/19 18:57,"185 Hill St, Seattle, WA 98101" -165360,AAA Batteries (4-pack),2,2.99,03/08/19 17:32,"515 Washington St, San Francisco, CA 94016" -165361,Lightning Charging Cable,2,14.95,03/04/19 10:41,"40 Hickory St, Dallas, TX 75001" -165362,Lightning Charging Cable,1,14.95,03/14/19 00:39,"208 Cedar St, New York City, NY 10001" -165363,27in 4K Gaming Monitor,1,389.99,03/07/19 09:53,"915 11th St, New York City, NY 10001" -165364,iPhone,1,700,03/15/19 19:08,"541 Cedar St, San Francisco, CA 94016" -165365,AAA Batteries (4-pack),1,2.99,03/28/19 20:06,"626 13th St, San Francisco, CA 94016" -165366,27in 4K Gaming Monitor,1,389.99,03/07/19 18:24,"520 Willow St, San Francisco, CA 94016" -165367,AA Batteries (4-pack),1,3.84,03/05/19 22:29,"89 6th St, Boston, MA 02215" -165368,34in Ultrawide Monitor,1,379.99,03/17/19 23:18,"596 Lake St, Los Angeles, CA 90001" -165369,27in FHD Monitor,1,149.99,03/07/19 16:52,"240 Washington St, New York City, NY 10001" -165370,USB-C Charging Cable,1,11.95,03/14/19 12:03,"237 River St, Austin, TX 73301" -165371,USB-C Charging Cable,1,11.95,03/03/19 19:39,"640 Main St, Seattle, WA 98101" -165372,Macbook Pro Laptop,1,1700,03/20/19 21:50,"258 Elm St, San Francisco, CA 94016" -165373,iPhone,1,700,03/24/19 13:00,"214 12th St, Seattle, WA 98101" -165374,Wired Headphones,1,11.99,03/26/19 13:34,"145 10th St, San Francisco, CA 94016" -165375,Bose SoundSport Headphones,2,99.99,03/13/19 11:07,"874 Adams St, San Francisco, CA 94016" -165376,USB-C Charging Cable,1,11.95,03/13/19 11:42,"61 Pine St, Austin, TX 73301" -165377,34in Ultrawide Monitor,1,379.99,03/02/19 17:25,"913 Madison St, San Francisco, CA 94016" -165378,AAA Batteries (4-pack),1,2.99,03/13/19 15:37,"981 West St, Portland, OR 97035" -165379,Apple Airpods Headphones,1,150,03/27/19 23:26,"812 14th St, Portland, OR 97035" -165380,AA Batteries (4-pack),1,3.84,03/03/19 20:11,"281 14th St, Portland, OR 97035" -165381,AA Batteries (4-pack),1,3.84,03/07/19 18:05,"640 4th St, Los Angeles, CA 90001" -165382,Bose SoundSport Headphones,1,99.99,03/16/19 09:57,"659 Cedar St, San Francisco, CA 94016" -165383,Lightning Charging Cable,1,14.95,03/16/19 17:10,"344 Adams St, San Francisco, CA 94016" -165384,AAA Batteries (4-pack),1,2.99,03/18/19 14:13,"586 Adams St, New York City, NY 10001" -165385,Lightning Charging Cable,1,14.95,03/04/19 12:10,"589 Cedar St, Atlanta, GA 30301" -165386,27in FHD Monitor,1,149.99,03/17/19 17:12,"668 Madison St, Los Angeles, CA 90001" -165387,Flatscreen TV,1,300,03/24/19 17:17,"17 Lake St, San Francisco, CA 94016" -165388,Wired Headphones,1,11.99,03/10/19 12:01,"205 South St, New York City, NY 10001" -165389,20in Monitor,1,109.99,03/04/19 16:43,"633 West St, Atlanta, GA 30301" -165390,ThinkPad Laptop,1,999.99,03/12/19 02:01,"5 Hickory St, San Francisco, CA 94016" -165391,Lightning Charging Cable,1,14.95,03/02/19 04:36,"64 Hill St, Los Angeles, CA 90001" -165392,Wired Headphones,1,11.99,03/18/19 09:31,"157 Spruce St, Los Angeles, CA 90001" -165393,USB-C Charging Cable,1,11.95,03/17/19 09:27,"523 Center St, Atlanta, GA 30301" -165394,AAA Batteries (4-pack),1,2.99,03/13/19 12:25,"53 Madison St, Boston, MA 02215" -165395,Google Phone,1,600,03/26/19 14:36,"419 Pine St, Los Angeles, CA 90001" -165396,Apple Airpods Headphones,1,150,03/19/19 10:00,"357 Pine St, Boston, MA 02215" -165397,20in Monitor,1,109.99,03/24/19 11:37,"16 4th St, San Francisco, CA 94016" -165398,ThinkPad Laptop,1,999.99,03/30/19 13:51,"572 Cedar St, Atlanta, GA 30301" -165399,Bose SoundSport Headphones,2,99.99,03/11/19 18:56,"510 Maple St, New York City, NY 10001" -165400,USB-C Charging Cable,2,11.95,03/12/19 23:49,"794 Lake St, Portland, OR 97035" -165401,AA Batteries (4-pack),1,3.84,03/01/19 09:55,"114 Ridge St, New York City, NY 10001" -165402,27in FHD Monitor,1,149.99,03/20/19 18:17,"720 Washington St, Boston, MA 02215" -165403,Bose SoundSport Headphones,1,99.99,03/08/19 17:09,"100 Highland St, Austin, TX 73301" -165404,Lightning Charging Cable,1,14.95,03/12/19 13:07,"295 8th St, Dallas, TX 75001" -165405,AA Batteries (4-pack),1,3.84,03/31/19 11:30,"754 8th St, San Francisco, CA 94016" -165406,27in FHD Monitor,1,149.99,03/23/19 18:50,"939 North St, Los Angeles, CA 90001" -165407,20in Monitor,1,109.99,03/08/19 18:16,"62 Center St, San Francisco, CA 94016" -165408,Wired Headphones,1,11.99,03/09/19 13:00,"116 Church St, Boston, MA 02215" -165409,27in 4K Gaming Monitor,1,389.99,03/09/19 12:02,"274 Lincoln St, Los Angeles, CA 90001" -165410,USB-C Charging Cable,1,11.95,03/20/19 14:42,"422 Spruce St, Atlanta, GA 30301" -165410,AAA Batteries (4-pack),1,2.99,03/20/19 14:42,"422 Spruce St, Atlanta, GA 30301" -165411,USB-C Charging Cable,1,11.95,03/10/19 21:20,"343 Walnut St, Los Angeles, CA 90001" -165412,Lightning Charging Cable,1,14.95,03/02/19 13:48,"471 Johnson St, Dallas, TX 75001" -165413,USB-C Charging Cable,1,11.95,03/27/19 07:25,"290 12th St, Portland, OR 97035" -165414,AAA Batteries (4-pack),1,2.99,03/30/19 00:09,"640 1st St, Boston, MA 02215" -165415,AAA Batteries (4-pack),2,2.99,03/28/19 10:25,"567 2nd St, Dallas, TX 75001" -165416,ThinkPad Laptop,1,999.99,03/22/19 14:21,"178 Willow St, Austin, TX 73301" -165417,AA Batteries (4-pack),1,3.84,03/28/19 19:13,"10 6th St, San Francisco, CA 94016" -165418,AAA Batteries (4-pack),1,2.99,03/22/19 20:20,"911 Jackson St, New York City, NY 10001" -165419,USB-C Charging Cable,1,11.95,03/21/19 08:55,"959 Johnson St, Seattle, WA 98101" -165420,27in FHD Monitor,1,149.99,03/06/19 15:59,"242 10th St, Seattle, WA 98101" -165421,AAA Batteries (4-pack),1,2.99,03/27/19 12:58,"174 Jefferson St, Portland, ME 04101" -165422,Lightning Charging Cable,1,14.95,03/03/19 23:24,"465 7th St, Austin, TX 73301" -165423,USB-C Charging Cable,1,11.95,03/05/19 09:42,"123 Willow St, Atlanta, GA 30301" -165424,USB-C Charging Cable,1,11.95,03/03/19 19:03,"641 Forest St, New York City, NY 10001" -165425,AAA Batteries (4-pack),2,2.99,03/25/19 16:49,"828 Highland St, Los Angeles, CA 90001" -165426,AA Batteries (4-pack),1,3.84,03/04/19 18:07,"348 7th St, Dallas, TX 75001" -165427,Macbook Pro Laptop,1,1700,03/01/19 18:50,"670 Madison St, Portland, OR 97035" -165428,20in Monitor,1,109.99,03/23/19 12:32,"535 Madison St, San Francisco, CA 94016" -165429,Lightning Charging Cable,1,14.95,03/25/19 20:30,"167 Elm St, Boston, MA 02215" -165430,AA Batteries (4-pack),1,3.84,03/21/19 22:41,"633 Cherry St, Austin, TX 73301" -165431,Apple Airpods Headphones,1,150,03/13/19 10:34,"343 Main St, Los Angeles, CA 90001" -165432,AA Batteries (4-pack),1,3.84,03/27/19 19:20,"653 Center St, Seattle, WA 98101" -165433,Lightning Charging Cable,3,14.95,03/13/19 18:51,"130 Forest St, Los Angeles, CA 90001" -165434,AA Batteries (4-pack),3,3.84,03/04/19 09:50,"596 Spruce St, Boston, MA 02215" -165435,27in FHD Monitor,1,149.99,03/10/19 20:02,"668 Center St, San Francisco, CA 94016" -165436,Apple Airpods Headphones,1,150,03/07/19 04:19,"607 Adams St, New York City, NY 10001" -165437,Lightning Charging Cable,1,14.95,03/19/19 14:12,"865 Sunset St, New York City, NY 10001" -165438,Apple Airpods Headphones,1,150,03/10/19 19:16,"69 5th St, New York City, NY 10001" -165439,Apple Airpods Headphones,1,150,03/23/19 11:53,"444 Center St, San Francisco, CA 94016" -165440,Google Phone,1,600,03/15/19 18:02,"557 7th St, Dallas, TX 75001" -165441,AA Batteries (4-pack),2,3.84,03/29/19 21:49,"908 Maple St, Dallas, TX 75001" -165442,Wired Headphones,1,11.99,03/25/19 22:03,"312 Sunset St, San Francisco, CA 94016" -165443,Lightning Charging Cable,1,14.95,03/18/19 01:34,"309 Maple St, Seattle, WA 98101" -165444,Apple Airpods Headphones,1,150,03/22/19 06:53,"147 8th St, San Francisco, CA 94016" -165445,AA Batteries (4-pack),2,3.84,03/17/19 11:13,"686 13th St, San Francisco, CA 94016" -165446,AAA Batteries (4-pack),3,2.99,03/04/19 00:03,"694 Lincoln St, Boston, MA 02215" -165447,Wired Headphones,1,11.99,03/25/19 15:14,"828 Cedar St, San Francisco, CA 94016" -165448,Wired Headphones,1,11.99,03/17/19 23:13,"670 Hill St, Seattle, WA 98101" -165449,USB-C Charging Cable,1,11.95,03/06/19 19:36,"335 Walnut St, Los Angeles, CA 90001" -165450,34in Ultrawide Monitor,1,379.99,03/20/19 14:45,"174 Park St, Austin, TX 73301" -165451,AAA Batteries (4-pack),1,2.99,03/27/19 19:13,"440 Walnut St, Atlanta, GA 30301" -165452,Apple Airpods Headphones,1,150,03/12/19 15:10,"270 West St, Boston, MA 02215" -165453,34in Ultrawide Monitor,1,379.99,03/27/19 00:10,"46 Hickory St, Seattle, WA 98101" -165454,34in Ultrawide Monitor,1,379.99,03/14/19 21:22,"605 12th St, San Francisco, CA 94016" -165455,27in 4K Gaming Monitor,1,389.99,03/11/19 18:13,"240 2nd St, New York City, NY 10001" -165456,Wired Headphones,1,11.99,03/13/19 20:11,"739 Lake St, Los Angeles, CA 90001" -165457,AAA Batteries (4-pack),3,2.99,03/24/19 23:01,"276 2nd St, Seattle, WA 98101" -165458,Wired Headphones,1,11.99,03/20/19 11:14,"419 6th St, San Francisco, CA 94016" -165459,27in 4K Gaming Monitor,1,389.99,03/08/19 19:31,"331 Dogwood St, Los Angeles, CA 90001" -165460,LG Washing Machine,1,600.0,03/06/19 11:38,"814 Lincoln St, Los Angeles, CA 90001" -165461,ThinkPad Laptop,1,999.99,03/09/19 18:40,"498 Ridge St, San Francisco, CA 94016" -165462,Google Phone,1,600,03/14/19 16:56,"238 Main St, Atlanta, GA 30301" -165462,Wired Headphones,2,11.99,03/14/19 16:56,"238 Main St, Atlanta, GA 30301" -165463,AA Batteries (4-pack),1,3.84,03/27/19 23:21,"930 13th St, San Francisco, CA 94016" -165464,Bose SoundSport Headphones,1,99.99,03/18/19 09:12,"471 Main St, San Francisco, CA 94016" -165465,27in 4K Gaming Monitor,1,389.99,03/23/19 16:52,"117 Spruce St, Portland, OR 97035" -165466,AA Batteries (4-pack),1,3.84,03/22/19 15:39,"796 Meadow St, Boston, MA 02215" -165467,20in Monitor,1,109.99,03/23/19 13:01,"222 South St, New York City, NY 10001" -165468,AA Batteries (4-pack),1,3.84,03/10/19 09:21,"540 Dogwood St, Dallas, TX 75001" -165469,Bose SoundSport Headphones,1,99.99,03/23/19 15:59,"903 Cedar St, San Francisco, CA 94016" -165470,Lightning Charging Cable,1,14.95,03/28/19 15:02,"167 Chestnut St, Boston, MA 02215" -165471,Wired Headphones,1,11.99,03/25/19 22:58,"232 Washington St, Los Angeles, CA 90001" -165471,AAA Batteries (4-pack),1,2.99,03/25/19 22:58,"232 Washington St, Los Angeles, CA 90001" -165472,AAA Batteries (4-pack),2,2.99,03/09/19 22:29,"124 9th St, Portland, OR 97035" -165473,Wired Headphones,1,11.99,03/02/19 22:43,"339 2nd St, Portland, OR 97035" -165474,Bose SoundSport Headphones,1,99.99,03/28/19 13:07,"788 Hill St, San Francisco, CA 94016" -165475,AA Batteries (4-pack),1,3.84,03/01/19 05:41,"344 1st St, San Francisco, CA 94016" -165476,iPhone,1,700,03/26/19 17:24,"957 6th St, San Francisco, CA 94016" -165477,Apple Airpods Headphones,1,150,03/05/19 15:38,"85 Wilson St, Boston, MA 02215" -165478,Flatscreen TV,1,300,03/10/19 17:11,"350 Cedar St, Seattle, WA 98101" -165479,Google Phone,1,600,03/31/19 16:42,"193 West St, New York City, NY 10001" -165480,USB-C Charging Cable,1,11.95,03/09/19 08:54,"988 Cedar St, New York City, NY 10001" -165481,Apple Airpods Headphones,1,150,03/19/19 18:55,"422 4th St, Los Angeles, CA 90001" -165481,Apple Airpods Headphones,1,150,03/19/19 18:55,"422 4th St, Los Angeles, CA 90001" -165482,AA Batteries (4-pack),2,3.84,03/16/19 18:13,"247 Lake St, Boston, MA 02215" -165483,Apple Airpods Headphones,1,150,03/10/19 21:01,"169 Johnson St, San Francisco, CA 94016" -165484,USB-C Charging Cable,1,11.95,03/05/19 18:09,"238 2nd St, San Francisco, CA 94016" -165485,Lightning Charging Cable,1,14.95,03/17/19 11:28,"689 Walnut St, San Francisco, CA 94016" -165486,Bose SoundSport Headphones,1,99.99,03/25/19 17:16,"198 Park St, Seattle, WA 98101" -165487,USB-C Charging Cable,1,11.95,03/01/19 09:15,"475 Lake St, New York City, NY 10001" -165488,AAA Batteries (4-pack),2,2.99,03/11/19 12:02,"755 Meadow St, Los Angeles, CA 90001" -165489,Wired Headphones,1,11.99,03/02/19 19:17,"677 Church St, Seattle, WA 98101" -165490,Wired Headphones,1,11.99,03/27/19 18:04,"330 Cedar St, San Francisco, CA 94016" -165491,Lightning Charging Cable,1,14.95,03/20/19 07:39,"301 River St, San Francisco, CA 94016" -165492,20in Monitor,1,109.99,03/16/19 11:46,"839 8th St, Portland, ME 04101" -165493,AA Batteries (4-pack),1,3.84,03/15/19 19:49,"427 5th St, Portland, OR 97035" -165494,AAA Batteries (4-pack),2,2.99,03/03/19 13:19,"684 Spruce St, Atlanta, GA 30301" -165495,Bose SoundSport Headphones,1,99.99,03/16/19 10:27,"543 Park St, Los Angeles, CA 90001" -165496,AA Batteries (4-pack),2,3.84,03/22/19 21:56,"792 West St, Dallas, TX 75001" -165497,Flatscreen TV,1,300,03/04/19 19:34,"931 13th St, Los Angeles, CA 90001" -165498,AA Batteries (4-pack),1,3.84,03/13/19 07:53,"227 South St, San Francisco, CA 94016" -165499,27in 4K Gaming Monitor,1,389.99,03/07/19 20:35,"150 Main St, Los Angeles, CA 90001" -165500,Wired Headphones,1,11.99,03/03/19 20:51,"835 Center St, Atlanta, GA 30301" -165501,USB-C Charging Cable,1,11.95,03/01/19 10:35,"797 Spruce St, New York City, NY 10001" -165502,AA Batteries (4-pack),1,3.84,03/14/19 20:04,"824 Lincoln St, San Francisco, CA 94016" -165503,Apple Airpods Headphones,1,150,03/18/19 14:38,"615 Highland St, Dallas, TX 75001" -165504,34in Ultrawide Monitor,1,379.99,03/26/19 06:44,"299 Ridge St, Los Angeles, CA 90001" -165505,AA Batteries (4-pack),2,3.84,03/17/19 09:09,"69 River St, Portland, OR 97035" -165506,AA Batteries (4-pack),1,3.84,03/17/19 11:00,"459 1st St, San Francisco, CA 94016" -165507,AA Batteries (4-pack),2,3.84,03/31/19 19:56,"130 Wilson St, Austin, TX 73301" -165508,Lightning Charging Cable,1,14.95,03/14/19 03:09,"673 Willow St, Los Angeles, CA 90001" -165509,Vareebadd Phone,1,400,03/30/19 14:59,"987 Lake St, San Francisco, CA 94016" -165510,Lightning Charging Cable,1,14.95,03/23/19 15:37,"872 North St, Los Angeles, CA 90001" -165511,iPhone,1,700,03/08/19 19:10,"750 Forest St, Los Angeles, CA 90001" -165511,Lightning Charging Cable,1,14.95,03/08/19 19:10,"750 Forest St, Los Angeles, CA 90001" -165512,Wired Headphones,1,11.99,03/03/19 07:10,"270 Jackson St, Portland, ME 04101" -165513,34in Ultrawide Monitor,1,379.99,03/19/19 02:18,"610 11th St, Atlanta, GA 30301" -165514,AA Batteries (4-pack),1,3.84,03/07/19 09:23,"467 Adams St, Los Angeles, CA 90001" -165514,Lightning Charging Cable,1,14.95,03/07/19 09:23,"467 Adams St, Los Angeles, CA 90001" -165515,AAA Batteries (4-pack),1,2.99,03/13/19 10:44,"633 Willow St, Portland, OR 97035" -165516,Lightning Charging Cable,1,14.95,03/09/19 22:26,"922 Ridge St, New York City, NY 10001" -165517,AAA Batteries (4-pack),1,2.99,03/26/19 18:57,"288 Adams St, San Francisco, CA 94016" -165518,AA Batteries (4-pack),1,3.84,03/28/19 15:53,"104 Chestnut St, Boston, MA 02215" -165519,USB-C Charging Cable,1,11.95,03/19/19 14:16,"328 Lincoln St, San Francisco, CA 94016" -165520,Apple Airpods Headphones,1,150,03/20/19 10:52,"849 Chestnut St, New York City, NY 10001" -165521,USB-C Charging Cable,1,11.95,03/04/19 20:16,"365 Walnut St, Boston, MA 02215" -165522,AAA Batteries (4-pack),2,2.99,03/02/19 08:01,"446 Main St, Boston, MA 02215" -165523,20in Monitor,1,109.99,03/05/19 15:44,"783 Jackson St, San Francisco, CA 94016" -165524,Wired Headphones,1,11.99,03/03/19 15:47,"518 4th St, Los Angeles, CA 90001" -165525,AAA Batteries (4-pack),1,2.99,03/08/19 13:33,"527 Church St, Seattle, WA 98101" -165526,AA Batteries (4-pack),1,3.84,03/12/19 16:52,"335 Cherry St, Dallas, TX 75001" -165527,Lightning Charging Cable,1,14.95,03/29/19 18:31,"187 14th St, Boston, MA 02215" -165528,AA Batteries (4-pack),1,3.84,03/23/19 19:50,"660 6th St, New York City, NY 10001" -165529,Apple Airpods Headphones,1,150,03/28/19 18:35,"244 Meadow St, New York City, NY 10001" -165530,ThinkPad Laptop,1,999.99,03/04/19 11:58,"159 7th St, Seattle, WA 98101" -165531,Apple Airpods Headphones,1,150,03/16/19 17:51,"494 Wilson St, Los Angeles, CA 90001" -165532,AA Batteries (4-pack),1,3.84,03/02/19 20:52,"111 Adams St, San Francisco, CA 94016" -165533,Google Phone,1,600,03/29/19 08:55,"653 Maple St, Austin, TX 73301" -165534,Lightning Charging Cable,1,14.95,03/13/19 07:23,"35 Park St, Portland, OR 97035" -165535,AAA Batteries (4-pack),1,2.99,03/16/19 12:11,"470 Ridge St, San Francisco, CA 94016" -165536,Bose SoundSport Headphones,1,99.99,03/01/19 14:36,"440 12th St, San Francisco, CA 94016" -165537,Wired Headphones,4,11.99,03/13/19 18:02,"472 Cherry St, Seattle, WA 98101" -165538,Apple Airpods Headphones,1,150,03/17/19 04:31,"204 Ridge St, Los Angeles, CA 90001" -165539,Wired Headphones,1,11.99,03/22/19 10:38,"154 7th St, San Francisco, CA 94016" -165540,iPhone,1,700,03/10/19 10:25,"880 Ridge St, Los Angeles, CA 90001" -165541,iPhone,1,700,03/22/19 12:21,"91 1st St, San Francisco, CA 94016" -165542,Apple Airpods Headphones,1,150,03/12/19 19:15,"685 Wilson St, Seattle, WA 98101" -165543,Google Phone,1,600,03/26/19 19:55,"367 Washington St, Atlanta, GA 30301" -165544,USB-C Charging Cable,3,11.95,03/20/19 14:44,"360 Jackson St, San Francisco, CA 94016" -165545,AA Batteries (4-pack),1,3.84,03/23/19 13:15,"612 Adams St, Austin, TX 73301" -165546,Lightning Charging Cable,1,14.95,03/05/19 10:51,"618 11th St, New York City, NY 10001" -165547,Apple Airpods Headphones,1,150,03/18/19 03:19,"796 Wilson St, Atlanta, GA 30301" -165548,AAA Batteries (4-pack),3,2.99,03/11/19 13:30,"777 Willow St, Portland, OR 97035" -165549,27in FHD Monitor,1,149.99,03/21/19 11:15,"691 Lake St, Portland, ME 04101" -165550,Bose SoundSport Headphones,1,99.99,03/10/19 12:40,"88 Jackson St, Austin, TX 73301" -165551,Lightning Charging Cable,1,14.95,03/30/19 16:59,"98 Elm St, Boston, MA 02215" -165552,Flatscreen TV,1,300,03/30/19 08:41,"247 Madison St, New York City, NY 10001" -165553,Lightning Charging Cable,1,14.95,03/03/19 22:05,"471 Cedar St, Portland, OR 97035" -165554,Apple Airpods Headphones,1,150,03/10/19 11:25,"104 Hill St, Boston, MA 02215" -165555,AA Batteries (4-pack),1,3.84,03/31/19 15:03,"736 10th St, Boston, MA 02215" -165556,Apple Airpods Headphones,1,150,03/29/19 17:36,"934 Chestnut St, Boston, MA 02215" -165557,Wired Headphones,1,11.99,03/29/19 21:16,"783 Sunset St, Boston, MA 02215" -165558,AA Batteries (4-pack),2,3.84,03/11/19 05:30,"811 Walnut St, Seattle, WA 98101" -165559,AA Batteries (4-pack),1,3.84,03/16/19 10:51,"239 Wilson St, Seattle, WA 98101" -165560,Apple Airpods Headphones,1,150,03/20/19 09:41,"666 Pine St, San Francisco, CA 94016" -165561,Flatscreen TV,1,300,03/07/19 11:58,"134 11th St, New York City, NY 10001" -165562,Lightning Charging Cable,1,14.95,03/29/19 19:39,"547 Park St, Los Angeles, CA 90001" -165563,Apple Airpods Headphones,1,150,03/08/19 20:37,"728 Hill St, Boston, MA 02215" -165564,27in FHD Monitor,1,149.99,03/25/19 03:34,"277 Dogwood St, Los Angeles, CA 90001" -165565,USB-C Charging Cable,1,11.95,03/06/19 11:14,"995 Hill St, Seattle, WA 98101" -165566,Apple Airpods Headphones,1,150,03/16/19 20:17,"951 5th St, Los Angeles, CA 90001" -165567,34in Ultrawide Monitor,1,379.99,03/21/19 08:53,"729 Ridge St, Portland, ME 04101" -165568,Apple Airpods Headphones,1,150,03/05/19 11:01,"736 Maple St, Dallas, TX 75001" -165569,AA Batteries (4-pack),1,3.84,03/13/19 07:27,"741 Highland St, Boston, MA 02215" -165570,Lightning Charging Cable,1,14.95,03/08/19 04:07,"829 Forest St, Seattle, WA 98101" -165571,20in Monitor,1,109.99,03/23/19 22:26,"71 Wilson St, Los Angeles, CA 90001" -165572,Lightning Charging Cable,1,14.95,03/12/19 17:14,"14 River St, Los Angeles, CA 90001" -165573,AAA Batteries (4-pack),1,2.99,03/03/19 12:27,"901 Pine St, San Francisco, CA 94016" -165574,Wired Headphones,1,11.99,03/23/19 11:35,"818 Maple St, Los Angeles, CA 90001" -165575,ThinkPad Laptop,1,999.99,03/08/19 22:29,"705 Highland St, Atlanta, GA 30301" -165576,AAA Batteries (4-pack),1,2.99,03/05/19 14:18,"410 Park St, Portland, OR 97035" -165577,USB-C Charging Cable,1,11.95,03/23/19 08:04,"399 Ridge St, San Francisco, CA 94016" -165578,Google Phone,1,600,03/24/19 21:41,"51 Johnson St, San Francisco, CA 94016" -165579,AAA Batteries (4-pack),1,2.99,03/15/19 14:04,"627 North St, Boston, MA 02215" -165580,AAA Batteries (4-pack),2,2.99,03/13/19 18:13,"651 2nd St, Dallas, TX 75001" -165581,Apple Airpods Headphones,1,150,03/11/19 22:28,"550 13th St, Los Angeles, CA 90001" -165582,Lightning Charging Cable,1,14.95,03/03/19 16:41,"187 Park St, Los Angeles, CA 90001" -165583,AA Batteries (4-pack),1,3.84,03/28/19 16:39,"363 Dogwood St, Seattle, WA 98101" -165584,Lightning Charging Cable,1,14.95,03/13/19 17:19,"310 Lake St, Austin, TX 73301" -165584,Apple Airpods Headphones,1,150,03/13/19 17:19,"310 Lake St, Austin, TX 73301" -165585,34in Ultrawide Monitor,1,379.99,03/11/19 07:44,"549 9th St, New York City, NY 10001" -165586,Wired Headphones,1,11.99,03/16/19 20:51,"206 North St, Atlanta, GA 30301" -165587,27in 4K Gaming Monitor,1,389.99,03/27/19 19:49,"244 Hill St, San Francisco, CA 94016" -165588,34in Ultrawide Monitor,1,379.99,03/28/19 22:16,"231 Cherry St, San Francisco, CA 94016" -165589,27in FHD Monitor,1,149.99,03/29/19 15:17,"402 Lakeview St, Seattle, WA 98101" -165590,Wired Headphones,1,11.99,03/01/19 11:32,"43 Main St, Dallas, TX 75001" -165591,Apple Airpods Headphones,1,150,03/03/19 21:03,"920 14th St, Atlanta, GA 30301" -165592,Flatscreen TV,1,300,03/01/19 16:40,"852 Cherry St, Los Angeles, CA 90001" -165593,AA Batteries (4-pack),1,3.84,03/06/19 07:02,"87 Lakeview St, Atlanta, GA 30301" -165594,Wired Headphones,1,11.99,03/04/19 22:37,"503 Sunset St, Los Angeles, CA 90001" -165595,AA Batteries (4-pack),1,3.84,03/14/19 12:48,"424 Madison St, San Francisco, CA 94016" -165596,20in Monitor,1,109.99,03/09/19 18:45,"368 1st St, New York City, NY 10001" -165597,AAA Batteries (4-pack),1,2.99,03/25/19 22:11,"607 Lincoln St, Seattle, WA 98101" -165598,27in FHD Monitor,1,149.99,03/08/19 17:53,"229 River St, Austin, TX 73301" -165599,AAA Batteries (4-pack),1,2.99,03/05/19 21:18,"541 10th St, Boston, MA 02215" -165600,Lightning Charging Cable,1,14.95,03/04/19 10:41,"398 Washington St, Portland, OR 97035" -165601,iPhone,1,700,03/13/19 15:19,"817 Center St, New York City, NY 10001" -165601,Apple Airpods Headphones,1,150,03/13/19 15:19,"817 Center St, New York City, NY 10001" -165602,Google Phone,1,600,03/19/19 20:37,"477 13th St, San Francisco, CA 94016" -165603,Apple Airpods Headphones,1,150,03/02/19 14:22,"897 Adams St, Atlanta, GA 30301" -165604,ThinkPad Laptop,1,999.99,03/28/19 20:35,"621 6th St, San Francisco, CA 94016" -165605,AA Batteries (4-pack),4,3.84,03/15/19 21:06,"232 1st St, Los Angeles, CA 90001" -165606,20in Monitor,1,109.99,03/11/19 14:03,"884 Dogwood St, Boston, MA 02215" -165607,USB-C Charging Cable,1,11.95,03/11/19 23:15,"165 Lake St, New York City, NY 10001" -165608,Wired Headphones,1,11.99,03/06/19 12:01,"917 Jefferson St, New York City, NY 10001" -165609,Lightning Charging Cable,1,14.95,03/12/19 20:10,"494 Cedar St, Boston, MA 02215" -165610,Wired Headphones,1,11.99,03/14/19 15:20,"144 Chestnut St, Seattle, WA 98101" -165611,USB-C Charging Cable,1,11.95,03/20/19 11:22,"209 Lincoln St, San Francisco, CA 94016" -165612,Bose SoundSport Headphones,1,99.99,03/11/19 23:03,"269 Johnson St, Austin, TX 73301" -165613,34in Ultrawide Monitor,1,379.99,03/27/19 15:16,"913 Hickory St, New York City, NY 10001" -165614,AAA Batteries (4-pack),2,2.99,03/31/19 11:24,"762 5th St, Portland, OR 97035" -165615,USB-C Charging Cable,1,11.95,03/28/19 11:57,"825 Johnson St, Dallas, TX 75001" -165616,USB-C Charging Cable,1,11.95,03/12/19 15:09,"905 Madison St, San Francisco, CA 94016" -165617,AA Batteries (4-pack),2,3.84,03/12/19 07:34,"166 West St, Portland, ME 04101" -165618,iPhone,1,700,03/07/19 20:02,"350 South St, Atlanta, GA 30301" -165618,Lightning Charging Cable,1,14.95,03/07/19 20:02,"350 South St, Atlanta, GA 30301" -165619,Lightning Charging Cable,1,14.95,03/19/19 19:40,"805 Washington St, San Francisco, CA 94016" -165620,USB-C Charging Cable,1,11.95,03/15/19 13:34,"257 Wilson St, Los Angeles, CA 90001" -165621,USB-C Charging Cable,1,11.95,03/11/19 12:07,"577 Adams St, San Francisco, CA 94016" -165622,Lightning Charging Cable,1,14.95,04/01/19 02:59,"65 Madison St, Boston, MA 02215" -165623,LG Dryer,1,600.0,03/26/19 09:22,"969 Cherry St, San Francisco, CA 94016" -165624,ThinkPad Laptop,1,999.99,03/04/19 16:07,"103 West St, Boston, MA 02215" -165625,Lightning Charging Cable,1,14.95,03/02/19 18:02,"7 Highland St, Boston, MA 02215" -165626,Apple Airpods Headphones,1,150,03/01/19 20:02,"338 Adams St, San Francisco, CA 94016" -165627,20in Monitor,1,109.99,03/11/19 12:21,"685 Madison St, Atlanta, GA 30301" -165628,Lightning Charging Cable,1,14.95,03/17/19 02:01,"135 Dogwood St, Boston, MA 02215" -165629,ThinkPad Laptop,1,999.99,03/14/19 16:55,"489 Forest St, San Francisco, CA 94016" -165630,AA Batteries (4-pack),1,3.84,03/03/19 20:44,"460 2nd St, Dallas, TX 75001" -165631,AA Batteries (4-pack),1,3.84,03/27/19 06:41,"419 13th St, Dallas, TX 75001" -165632,ThinkPad Laptop,1,999.99,03/13/19 12:34,"610 14th St, Los Angeles, CA 90001" -165633,Bose SoundSport Headphones,1,99.99,03/20/19 10:37,"543 7th St, Austin, TX 73301" -165634,20in Monitor,1,109.99,03/04/19 00:10,"524 Walnut St, New York City, NY 10001" -165635,Apple Airpods Headphones,1,150,03/24/19 22:41,"212 Center St, San Francisco, CA 94016" -165636,Lightning Charging Cable,1,14.95,03/07/19 16:18,"341 South St, Atlanta, GA 30301" -165637,Lightning Charging Cable,1,14.95,03/18/19 20:34,"670 Adams St, San Francisco, CA 94016" -165638,Lightning Charging Cable,1,14.95,03/31/19 12:56,"486 13th St, Los Angeles, CA 90001" -165639,27in FHD Monitor,1,149.99,03/14/19 11:15,"599 Lakeview St, Los Angeles, CA 90001" -165640,27in 4K Gaming Monitor,1,389.99,03/28/19 06:04,"241 4th St, Los Angeles, CA 90001" -165641,AA Batteries (4-pack),1,3.84,03/08/19 19:38,"569 River St, Los Angeles, CA 90001" -165642,Flatscreen TV,1,300,03/19/19 08:03,"85 1st St, New York City, NY 10001" -165643,Bose SoundSport Headphones,1,99.99,03/13/19 14:02,"960 Meadow St, Austin, TX 73301" -165644,Apple Airpods Headphones,1,150,03/20/19 08:17,"861 Highland St, Los Angeles, CA 90001" -165645,Wired Headphones,1,11.99,03/26/19 17:13,"667 Church St, Seattle, WA 98101" -165646,Lightning Charging Cable,1,14.95,03/01/19 08:56,"611 Hickory St, Seattle, WA 98101" -165647,Google Phone,1,600,03/21/19 13:33,"132 6th St, Atlanta, GA 30301" -165648,AA Batteries (4-pack),1,3.84,03/20/19 20:54,"764 Elm St, Boston, MA 02215" -165649,USB-C Charging Cable,1,11.95,03/29/19 22:16,"179 Jackson St, Atlanta, GA 30301" -,,,,, -165650,Lightning Charging Cable,1,14.95,03/06/19 13:58,"963 Jackson St, Boston, MA 02215" -165651,Lightning Charging Cable,1,14.95,03/09/19 14:36,"831 Dogwood St, Portland, OR 97035" -165652,Lightning Charging Cable,1,14.95,03/26/19 22:13,"329 Hill St, New York City, NY 10001" -165653,Apple Airpods Headphones,1,150,03/24/19 17:23,"634 Pine St, New York City, NY 10001" -165654,Lightning Charging Cable,1,14.95,03/23/19 21:21,"919 8th St, New York City, NY 10001" -165655,AA Batteries (4-pack),1,3.84,03/02/19 23:30,"345 Madison St, New York City, NY 10001" -165656,AA Batteries (4-pack),3,3.84,03/08/19 20:25,"140 Wilson St, New York City, NY 10001" -165657,27in 4K Gaming Monitor,1,389.99,03/14/19 03:09,"227 7th St, Dallas, TX 75001" -165658,AAA Batteries (4-pack),1,2.99,03/12/19 23:48,"232 13th St, Boston, MA 02215" -165659,Google Phone,1,600,03/06/19 12:38,"479 Dogwood St, Los Angeles, CA 90001" -165660,27in 4K Gaming Monitor,1,389.99,03/16/19 14:11,"921 Chestnut St, San Francisco, CA 94016" -165661,Lightning Charging Cable,1,14.95,03/26/19 16:44,"296 5th St, Los Angeles, CA 90001" -165662,Google Phone,1,600,03/31/19 09:20,"118 Hill St, New York City, NY 10001" -165663,Bose SoundSport Headphones,1,99.99,03/02/19 09:27,"606 Elm St, Boston, MA 02215" -165664,iPhone,1,700,03/13/19 19:42,"138 Lakeview St, Atlanta, GA 30301" -165665,Google Phone,1,600,03/01/19 17:48,"755 Main St, Los Angeles, CA 90001" -165665,USB-C Charging Cable,1,11.95,03/01/19 17:48,"755 Main St, Los Angeles, CA 90001" -165665,Wired Headphones,1,11.99,03/01/19 17:48,"755 Main St, Los Angeles, CA 90001" -165665,AA Batteries (4-pack),1,3.84,03/01/19 17:48,"755 Main St, Los Angeles, CA 90001" -165666,Apple Airpods Headphones,1,150,03/03/19 10:24,"475 Sunset St, San Francisco, CA 94016" -165667,27in 4K Gaming Monitor,1,389.99,03/29/19 04:57,"72 11th St, Los Angeles, CA 90001" -165668,34in Ultrawide Monitor,1,379.99,03/27/19 11:28,"386 Jackson St, San Francisco, CA 94016" -165668,34in Ultrawide Monitor,1,379.99,03/27/19 11:28,"386 Jackson St, San Francisco, CA 94016" -165669,USB-C Charging Cable,1,11.95,03/15/19 13:23,"973 Madison St, New York City, NY 10001" -165670,Google Phone,1,600,03/12/19 09:32,"588 2nd St, San Francisco, CA 94016" -165671,AAA Batteries (4-pack),1,2.99,03/22/19 16:44,"696 Willow St, Los Angeles, CA 90001" -165672,Lightning Charging Cable,1,14.95,03/07/19 23:55,"853 Church St, Boston, MA 02215" -165673,AAA Batteries (4-pack),1,2.99,03/09/19 10:59,"290 Pine St, San Francisco, CA 94016" -165674,AAA Batteries (4-pack),1,2.99,03/24/19 06:53,"700 Hill St, Boston, MA 02215" -165675,Wired Headphones,1,11.99,03/23/19 18:34,"390 Church St, Atlanta, GA 30301" -165676,USB-C Charging Cable,1,11.95,03/30/19 16:27,"898 Cherry St, Los Angeles, CA 90001" -165677,34in Ultrawide Monitor,1,379.99,03/11/19 11:44,"902 11th St, Seattle, WA 98101" -165678,USB-C Charging Cable,1,11.95,03/30/19 11:53,"296 5th St, Boston, MA 02215" -165679,Apple Airpods Headphones,1,150,03/27/19 16:19,"734 Walnut St, Austin, TX 73301" -165680,AAA Batteries (4-pack),1,2.99,03/22/19 19:47,"565 12th St, Los Angeles, CA 90001" -165681,27in 4K Gaming Monitor,1,389.99,03/26/19 17:22,"839 Ridge St, Los Angeles, CA 90001" -165682,USB-C Charging Cable,1,11.95,03/31/19 09:41,"666 8th St, Seattle, WA 98101" -165683,Lightning Charging Cable,1,14.95,03/24/19 14:28,"456 Washington St, San Francisco, CA 94016" -165684,27in FHD Monitor,1,149.99,03/20/19 13:13,"944 Forest St, San Francisco, CA 94016" -165685,Macbook Pro Laptop,1,1700,03/24/19 14:04,"328 Park St, San Francisco, CA 94016" -165686,AAA Batteries (4-pack),1,2.99,03/12/19 19:43,"204 14th St, Boston, MA 02215" -165687,27in 4K Gaming Monitor,1,389.99,03/27/19 14:40,"933 Sunset St, New York City, NY 10001" -165688,Lightning Charging Cable,2,14.95,03/15/19 12:04,"450 2nd St, New York City, NY 10001" -165689,USB-C Charging Cable,1,11.95,03/21/19 21:22,"899 9th St, New York City, NY 10001" -165690,USB-C Charging Cable,1,11.95,03/28/19 23:12,"489 Lake St, Dallas, TX 75001" -165691,Lightning Charging Cable,1,14.95,03/07/19 22:40,"256 Pine St, Boston, MA 02215" -165692,USB-C Charging Cable,1,11.95,03/21/19 13:16,"345 6th St, San Francisco, CA 94016" -165693,Google Phone,1,600,03/12/19 14:34,"967 11th St, Los Angeles, CA 90001" -165694,27in FHD Monitor,1,149.99,03/25/19 16:12,"830 North St, San Francisco, CA 94016" -165695,USB-C Charging Cable,1,11.95,03/10/19 18:43,"248 Cherry St, San Francisco, CA 94016" -165696,Wired Headphones,1,11.99,03/17/19 16:36,"824 Hickory St, Los Angeles, CA 90001" -165697,USB-C Charging Cable,1,11.95,03/20/19 19:51,"539 Church St, Los Angeles, CA 90001" -165698,Apple Airpods Headphones,1,150,03/02/19 23:37,"151 Maple St, Seattle, WA 98101" -165699,AAA Batteries (4-pack),1,2.99,03/04/19 17:38,"928 Ridge St, Boston, MA 02215" -165700,Lightning Charging Cable,1,14.95,03/01/19 12:18,"3 Ridge St, San Francisco, CA 94016" -165701,Wired Headphones,1,11.99,03/17/19 18:32,"119 Walnut St, San Francisco, CA 94016" -165702,Apple Airpods Headphones,1,150,03/13/19 16:38,"771 Forest St, Austin, TX 73301" -165703,USB-C Charging Cable,1,11.95,03/26/19 21:02,"732 Lincoln St, San Francisco, CA 94016" -165704,Wired Headphones,1,11.99,03/01/19 15:20,"682 Hickory St, Boston, MA 02215" -165705,Macbook Pro Laptop,1,1700,03/10/19 19:00,"172 Hill St, New York City, NY 10001" -165706,Wired Headphones,1,11.99,03/24/19 08:30,"152 Washington St, Dallas, TX 75001" -165707,Apple Airpods Headphones,1,150,03/04/19 20:48,"731 North St, San Francisco, CA 94016" -165708,AA Batteries (4-pack),1,3.84,03/16/19 13:34,"717 West St, San Francisco, CA 94016" -165709,Bose SoundSport Headphones,1,99.99,03/17/19 16:44,"314 Dogwood St, Dallas, TX 75001" -165710,Flatscreen TV,1,300,03/18/19 00:56,"413 North St, Portland, OR 97035" -165711,iPhone,1,700,03/12/19 23:49,"891 14th St, Austin, TX 73301" -165712,Wired Headphones,1,11.99,03/16/19 08:35,"302 Hickory St, Boston, MA 02215" -165713,Wired Headphones,2,11.99,03/07/19 17:21,"417 Spruce St, Boston, MA 02215" -165714,Wired Headphones,1,11.99,03/02/19 10:06,"302 North St, New York City, NY 10001" -165715,AA Batteries (4-pack),1,3.84,03/02/19 23:21,"290 14th St, Austin, TX 73301" -165716,Bose SoundSport Headphones,1,99.99,03/27/19 09:42,"978 12th St, New York City, NY 10001" -165717,34in Ultrawide Monitor,1,379.99,03/23/19 09:05,"476 Ridge St, New York City, NY 10001" -165718,34in Ultrawide Monitor,1,379.99,03/14/19 20:47,"152 Madison St, Portland, OR 97035" -165719,Apple Airpods Headphones,1,150,03/01/19 18:04,"976 Washington St, New York City, NY 10001" -165720,AAA Batteries (4-pack),1,2.99,03/09/19 00:25,"254 Hill St, San Francisco, CA 94016" -165721,20in Monitor,1,109.99,03/01/19 20:35,"746 6th St, San Francisco, CA 94016" -165722,Wired Headphones,2,11.99,03/10/19 20:58,"196 Washington St, Boston, MA 02215" -165723,20in Monitor,1,109.99,03/03/19 14:38,"786 4th St, San Francisco, CA 94016" -165724,iPhone,1,700,03/27/19 15:47,"776 Church St, New York City, NY 10001" -165725,AAA Batteries (4-pack),1,2.99,03/12/19 19:57,"944 Adams St, San Francisco, CA 94016" -165726,Lightning Charging Cable,2,14.95,03/10/19 23:43,"564 Willow St, New York City, NY 10001" -165727,Apple Airpods Headphones,1,150,03/18/19 11:32,"601 Walnut St, Atlanta, GA 30301" -165728,USB-C Charging Cable,1,11.95,03/21/19 16:43,"974 Elm St, New York City, NY 10001" -165729,34in Ultrawide Monitor,1,379.99,03/23/19 19:24,"217 Walnut St, Los Angeles, CA 90001" -165730,34in Ultrawide Monitor,1,379.99,03/08/19 21:16,"769 Meadow St, New York City, NY 10001" -165731,Apple Airpods Headphones,1,150,03/08/19 18:57,"352 Hill St, Seattle, WA 98101" -165732,AAA Batteries (4-pack),2,2.99,03/25/19 11:05,"408 Park St, Boston, MA 02215" -165732,AAA Batteries (4-pack),1,2.99,03/25/19 11:05,"408 Park St, Boston, MA 02215" -165733,Apple Airpods Headphones,1,150,03/16/19 21:22,"893 Forest St, San Francisco, CA 94016" -165734,AA Batteries (4-pack),4,3.84,03/21/19 16:47,"142 River St, Austin, TX 73301" -165735,Wired Headphones,1,11.99,03/17/19 18:29,"234 Jefferson St, Seattle, WA 98101" -165736,Bose SoundSport Headphones,1,99.99,03/02/19 16:09,"944 14th St, Portland, OR 97035" -165737,AA Batteries (4-pack),1,3.84,03/23/19 11:25,"222 Hill St, New York City, NY 10001" -165738,AAA Batteries (4-pack),1,2.99,03/17/19 11:21,"185 Ridge St, New York City, NY 10001" -165739,AA Batteries (4-pack),1,3.84,03/28/19 15:10,"600 Meadow St, New York City, NY 10001" -165740,Wired Headphones,1,11.99,03/22/19 14:35,"712 Main St, New York City, NY 10001" -165741,Bose SoundSport Headphones,1,99.99,03/10/19 15:31,"421 West St, Portland, OR 97035" -165742,Bose SoundSport Headphones,1,99.99,03/27/19 20:11,"502 Jackson St, Boston, MA 02215" -165743,AAA Batteries (4-pack),2,2.99,03/05/19 13:00,"184 Jefferson St, Los Angeles, CA 90001" -165744,Wired Headphones,1,11.99,03/15/19 13:46,"112 8th St, San Francisco, CA 94016" -165745,Apple Airpods Headphones,1,150,03/13/19 11:50,"607 Chestnut St, Seattle, WA 98101" -165746,AA Batteries (4-pack),1,3.84,03/06/19 18:06,"479 Lake St, Los Angeles, CA 90001" -165747,Wired Headphones,1,11.99,03/10/19 14:07,"196 4th St, Boston, MA 02215" -165748,Lightning Charging Cable,1,14.95,03/11/19 22:47,"374 5th St, Boston, MA 02215" -165749,AA Batteries (4-pack),3,3.84,03/12/19 10:10,"614 9th St, Seattle, WA 98101" -165750,Bose SoundSport Headphones,1,99.99,03/08/19 07:03,"931 Lake St, New York City, NY 10001" -165751,Bose SoundSport Headphones,1,99.99,03/04/19 16:18,"591 South St, Portland, ME 04101" -165752,ThinkPad Laptop,1,999.99,03/01/19 10:13,"697 Spruce St, New York City, NY 10001" -165753,20in Monitor,1,109.99,03/26/19 08:21,"994 13th St, New York City, NY 10001" -165754,Google Phone,1,600,03/09/19 13:38,"329 Sunset St, Atlanta, GA 30301" -165754,Wired Headphones,1,11.99,03/09/19 13:38,"329 Sunset St, Atlanta, GA 30301" -165755,AA Batteries (4-pack),3,3.84,03/27/19 07:07,"350 Church St, Atlanta, GA 30301" -165756,Wired Headphones,1,11.99,03/25/19 13:19,"223 Elm St, Los Angeles, CA 90001" -165756,AAA Batteries (4-pack),3,2.99,03/25/19 13:19,"223 Elm St, Los Angeles, CA 90001" -165757,Flatscreen TV,1,300,03/02/19 11:10,"980 Lincoln St, Boston, MA 02215" -165758,USB-C Charging Cable,1,11.95,03/14/19 11:55,"390 Wilson St, San Francisco, CA 94016" -165759,AAA Batteries (4-pack),2,2.99,03/04/19 06:57,"595 Washington St, San Francisco, CA 94016" -165760,AA Batteries (4-pack),1,3.84,03/17/19 07:12,"895 Hickory St, Los Angeles, CA 90001" -165761,Wired Headphones,1,11.99,03/20/19 21:54,"6 8th St, Atlanta, GA 30301" -165762,Wired Headphones,1,11.99,03/15/19 14:41,"717 West St, New York City, NY 10001" -165763,Vareebadd Phone,1,400,03/08/19 21:12,"585 Chestnut St, San Francisco, CA 94016" -165764,27in FHD Monitor,1,149.99,03/13/19 09:53,"898 Chestnut St, Atlanta, GA 30301" -165765,Wired Headphones,1,11.99,03/19/19 20:43,"244 2nd St, San Francisco, CA 94016" -165766,AAA Batteries (4-pack),1,2.99,03/09/19 12:15,"181 Madison St, San Francisco, CA 94016" -165767,ThinkPad Laptop,1,999.99,03/01/19 20:05,"775 Maple St, San Francisco, CA 94016" -165768,iPhone,1,700,03/17/19 12:49,"888 7th St, Austin, TX 73301" -165768,Lightning Charging Cable,1,14.95,03/17/19 12:49,"888 7th St, Austin, TX 73301" -165769,AAA Batteries (4-pack),1,2.99,03/24/19 18:42,"940 11th St, Atlanta, GA 30301" -165770,USB-C Charging Cable,1,11.95,03/13/19 10:11,"461 2nd St, San Francisco, CA 94016" -165771,Macbook Pro Laptop,1,1700,03/11/19 18:40,"659 Church St, New York City, NY 10001" -165772,AAA Batteries (4-pack),1,2.99,03/19/19 12:31,"414 Lincoln St, New York City, NY 10001" -165773,Wired Headphones,2,11.99,03/09/19 14:05,"948 Jefferson St, Austin, TX 73301" -165774,AAA Batteries (4-pack),2,2.99,03/07/19 16:54,"837 11th St, Los Angeles, CA 90001" -165775,Wired Headphones,1,11.99,03/24/19 00:36,"602 Walnut St, San Francisco, CA 94016" -165776,27in FHD Monitor,1,149.99,03/28/19 20:41,"470 Willow St, Atlanta, GA 30301" -165777,AAA Batteries (4-pack),1,2.99,03/02/19 11:04,"183 Lincoln St, Boston, MA 02215" -165778,Lightning Charging Cable,1,14.95,03/01/19 12:14,"753 Center St, New York City, NY 10001" -165779,Macbook Pro Laptop,1,1700,03/21/19 18:54,"227 Jefferson St, Portland, ME 04101" -165780,AAA Batteries (4-pack),1,2.99,03/28/19 13:47,"746 Forest St, Los Angeles, CA 90001" -165781,20in Monitor,1,109.99,03/24/19 12:45,"99 10th St, Atlanta, GA 30301" -165782,Vareebadd Phone,1,400,03/27/19 21:25,"712 Meadow St, Boston, MA 02215" -165782,AA Batteries (4-pack),1,3.84,03/27/19 21:25,"712 Meadow St, Boston, MA 02215" -165783,iPhone,1,700,03/23/19 11:40,"361 Spruce St, San Francisco, CA 94016" -165784,Flatscreen TV,1,300,03/06/19 19:07,"975 7th St, Austin, TX 73301" -165785,USB-C Charging Cable,1,11.95,03/04/19 14:37,"896 Cedar St, Atlanta, GA 30301" -165786,AAA Batteries (4-pack),1,2.99,03/07/19 09:59,"842 Meadow St, New York City, NY 10001" -165787,LG Dryer,1,600.0,03/19/19 19:40,"282 Wilson St, San Francisco, CA 94016" -165788,20in Monitor,1,109.99,03/21/19 16:37,"878 Spruce St, San Francisco, CA 94016" -165789,Bose SoundSport Headphones,1,99.99,03/18/19 15:51,"708 Lakeview St, Seattle, WA 98101" -165790,AA Batteries (4-pack),1,3.84,03/09/19 20:45,"226 Lincoln St, Portland, OR 97035" -165791,Apple Airpods Headphones,1,150,03/15/19 15:33,"78 Chestnut St, Boston, MA 02215" -165792,Bose SoundSport Headphones,1,99.99,03/22/19 15:05,"765 Lake St, Dallas, TX 75001" -165792,Wired Headphones,1,11.99,03/22/19 15:05,"765 Lake St, Dallas, TX 75001" -165793,AAA Batteries (4-pack),4,2.99,03/31/19 22:30,"741 12th St, San Francisco, CA 94016" -165794,Lightning Charging Cable,1,14.95,03/12/19 17:11,"411 Jefferson St, New York City, NY 10001" -165795,iPhone,1,700,03/07/19 15:49,"41 11th St, Atlanta, GA 30301" -165796,USB-C Charging Cable,1,11.95,03/23/19 07:21,"779 Meadow St, Los Angeles, CA 90001" -165797,Lightning Charging Cable,1,14.95,03/03/19 16:47,"328 Adams St, Dallas, TX 75001" -165798,Vareebadd Phone,1,400,03/03/19 10:22,"184 West St, Dallas, TX 75001" -165799,LG Dryer,1,600.0,03/08/19 13:13,"155 1st St, Atlanta, GA 30301" -165800,Bose SoundSport Headphones,1,99.99,03/09/19 10:35,"175 Willow St, Boston, MA 02215" -165801,27in 4K Gaming Monitor,1,389.99,03/06/19 13:49,"808 Washington St, Portland, OR 97035" -165802,Lightning Charging Cable,1,14.95,03/02/19 11:48,"180 7th St, Los Angeles, CA 90001" -165803,AAA Batteries (4-pack),2,2.99,03/02/19 10:21,"174 6th St, Atlanta, GA 30301" -165804,AAA Batteries (4-pack),1,2.99,03/03/19 18:04,"447 8th St, San Francisco, CA 94016" -165805,20in Monitor,1,109.99,03/28/19 06:15,"771 4th St, New York City, NY 10001" -165806,USB-C Charging Cable,1,11.95,03/01/19 19:35,"701 Hickory St, Los Angeles, CA 90001" -165807,Flatscreen TV,1,300,03/12/19 17:42,"610 12th St, Dallas, TX 75001" -165808,USB-C Charging Cable,1,11.95,03/10/19 20:29,"237 14th St, Dallas, TX 75001" -165809,Wired Headphones,1,11.99,03/31/19 11:57,"777 West St, Los Angeles, CA 90001" -165810,Bose SoundSport Headphones,1,99.99,03/24/19 12:15,"748 4th St, Boston, MA 02215" -165811,Google Phone,1,600,03/26/19 08:35,"8 6th St, San Francisco, CA 94016" -165812,iPhone,1,700,03/30/19 19:18,"313 Jefferson St, Portland, OR 97035" -165812,Lightning Charging Cable,1,14.95,03/30/19 19:18,"313 Jefferson St, Portland, OR 97035" -165813,AAA Batteries (4-pack),1,2.99,03/06/19 19:47,"486 6th St, Seattle, WA 98101" -165814,AAA Batteries (4-pack),1,2.99,03/18/19 11:35,"866 11th St, San Francisco, CA 94016" -165815,Apple Airpods Headphones,1,150,03/05/19 15:50,"158 Willow St, San Francisco, CA 94016" -165816,AA Batteries (4-pack),1,3.84,03/31/19 17:02,"804 1st St, Portland, OR 97035" -165817,AAA Batteries (4-pack),3,2.99,03/23/19 13:03,"706 North St, New York City, NY 10001" -165818,Bose SoundSport Headphones,1,99.99,03/14/19 14:19,"936 River St, Portland, ME 04101" -165819,AA Batteries (4-pack),1,3.84,03/13/19 11:23,"979 Maple St, San Francisco, CA 94016" -165820,Apple Airpods Headphones,1,150,03/20/19 01:02,"925 Main St, Los Angeles, CA 90001" -165821,USB-C Charging Cable,1,11.95,03/21/19 18:09,"924 7th St, Atlanta, GA 30301" -165822,USB-C Charging Cable,1,11.95,03/18/19 23:31,"426 Forest St, Seattle, WA 98101" -165823,Bose SoundSport Headphones,1,99.99,03/09/19 16:34,"150 Lincoln St, Seattle, WA 98101" -165824,Bose SoundSport Headphones,1,99.99,03/05/19 17:38,"818 River St, Los Angeles, CA 90001" -165825,Wired Headphones,1,11.99,03/21/19 17:25,"204 13th St, San Francisco, CA 94016" -165826,Flatscreen TV,1,300,03/02/19 11:55,"876 5th St, Boston, MA 02215" -165827,Vareebadd Phone,1,400,03/02/19 00:16,"6 Hill St, New York City, NY 10001" -165828,Bose SoundSport Headphones,1,99.99,03/22/19 14:15,"945 Church St, New York City, NY 10001" -165829,Apple Airpods Headphones,1,150,03/28/19 19:12,"674 13th St, New York City, NY 10001" -165830,AAA Batteries (4-pack),1,2.99,03/22/19 11:59,"827 Cherry St, Austin, TX 73301" -165831,AAA Batteries (4-pack),2,2.99,03/30/19 21:29,"544 North St, Los Angeles, CA 90001" -165832,Bose SoundSport Headphones,1,99.99,03/08/19 19:22,"342 Wilson St, San Francisco, CA 94016" -165833,AAA Batteries (4-pack),2,2.99,03/23/19 15:15,"415 Cedar St, San Francisco, CA 94016" -165834,USB-C Charging Cable,1,11.95,03/08/19 13:15,"150 7th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -165835,27in FHD Monitor,1,149.99,03/16/19 16:57,"266 West St, Boston, MA 02215" -165836,AA Batteries (4-pack),1,3.84,03/29/19 21:56,"249 West St, San Francisco, CA 94016" -165837,iPhone,1,700,03/26/19 16:30,"677 Sunset St, Boston, MA 02215" -165838,USB-C Charging Cable,1,11.95,03/14/19 21:10,"942 Lakeview St, Boston, MA 02215" -165839,AAA Batteries (4-pack),1,2.99,03/26/19 12:05,"35 11th St, Atlanta, GA 30301" -165840,Flatscreen TV,1,300,03/01/19 08:59,"223 4th St, Atlanta, GA 30301" -165841,Apple Airpods Headphones,1,150,03/12/19 09:45,"525 Spruce St, San Francisco, CA 94016" -165842,20in Monitor,1,109.99,03/19/19 10:38,"722 Cherry St, San Francisco, CA 94016" -165843,Wired Headphones,1,11.99,03/30/19 12:20,"865 Center St, Atlanta, GA 30301" -165844,Wired Headphones,1,11.99,03/26/19 11:32,"954 11th St, Boston, MA 02215" -165845,AA Batteries (4-pack),1,3.84,03/01/19 17:17,"575 Meadow St, Boston, MA 02215" -165846,USB-C Charging Cable,1,11.95,03/21/19 17:46,"535 14th St, San Francisco, CA 94016" -165847,ThinkPad Laptop,1,999.99,03/17/19 19:19,"981 Sunset St, New York City, NY 10001" -165848,27in 4K Gaming Monitor,1,389.99,03/22/19 11:21,"512 Elm St, Seattle, WA 98101" -165849,AA Batteries (4-pack),1,3.84,03/30/19 07:47,"962 2nd St, Atlanta, GA 30301" -165850,Bose SoundSport Headphones,1,99.99,03/19/19 14:47,"626 Highland St, Los Angeles, CA 90001" -165851,20in Monitor,1,109.99,03/16/19 16:39,"804 Hickory St, Los Angeles, CA 90001" -165852,AAA Batteries (4-pack),1,2.99,03/30/19 14:24,"664 Jackson St, San Francisco, CA 94016" -165853,USB-C Charging Cable,1,11.95,03/31/19 22:27,"988 9th St, Austin, TX 73301" -165854,Google Phone,1,600,03/11/19 14:18,"775 Main St, Atlanta, GA 30301" -165855,USB-C Charging Cable,1,11.95,03/03/19 10:10,"852 Maple St, Dallas, TX 75001" -165856,AAA Batteries (4-pack),2,2.99,03/01/19 10:43,"271 13th St, New York City, NY 10001" -165857,AAA Batteries (4-pack),1,2.99,03/20/19 10:16,"128 Dogwood St, New York City, NY 10001" -165858,27in 4K Gaming Monitor,1,389.99,03/06/19 21:35,"95 Center St, Boston, MA 02215" -165859,Google Phone,1,600,03/12/19 10:09,"354 2nd St, New York City, NY 10001" -165859,27in FHD Monitor,1,149.99,03/12/19 10:09,"354 2nd St, New York City, NY 10001" -165860,iPhone,1,700,03/27/19 21:01,"118 11th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -165861,AA Batteries (4-pack),1,3.84,03/07/19 10:54,"751 Jefferson St, Atlanta, GA 30301" -165862,Wired Headphones,1,11.99,03/09/19 11:10,"935 5th St, Los Angeles, CA 90001" -165862,Apple Airpods Headphones,1,150,03/09/19 11:10,"935 5th St, Los Angeles, CA 90001" -165863,Wired Headphones,1,11.99,03/16/19 10:50,"385 Cherry St, San Francisco, CA 94016" -165864,Apple Airpods Headphones,1,150,03/03/19 20:28,"426 Forest St, Dallas, TX 75001" -165865,AAA Batteries (4-pack),2,2.99,03/25/19 21:25,"856 Washington St, Portland, OR 97035" -165866,Apple Airpods Headphones,1,150,03/11/19 16:29,"538 4th St, Boston, MA 02215" -165867,27in 4K Gaming Monitor,1,389.99,03/31/19 19:56,"715 South St, Seattle, WA 98101" -165868,20in Monitor,1,109.99,03/06/19 10:46,"464 Forest St, San Francisco, CA 94016" -165869,Wired Headphones,1,11.99,03/22/19 06:57,"787 1st St, New York City, NY 10001" -165870,ThinkPad Laptop,1,999.99,03/19/19 17:07,"916 Lakeview St, Los Angeles, CA 90001" -165871,Lightning Charging Cable,1,14.95,03/10/19 00:38,"543 Elm St, San Francisco, CA 94016" -165872,Lightning Charging Cable,1,14.95,03/14/19 21:47,"888 Spruce St, San Francisco, CA 94016" -165873,AA Batteries (4-pack),2,3.84,03/18/19 19:39,"799 Hill St, Seattle, WA 98101" -165874,27in 4K Gaming Monitor,1,389.99,03/27/19 07:59,"544 Maple St, Atlanta, GA 30301" -165875,USB-C Charging Cable,1,11.95,03/09/19 18:53,"488 Jackson St, Seattle, WA 98101" -165876,27in FHD Monitor,1,149.99,03/06/19 08:10,"601 4th St, Seattle, WA 98101" -165877,Bose SoundSport Headphones,1,99.99,03/08/19 14:47,"410 6th St, San Francisco, CA 94016" -165878,Flatscreen TV,1,300,03/23/19 20:24,"786 Ridge St, Portland, OR 97035" -165879,Apple Airpods Headphones,1,150,03/03/19 10:46,"979 11th St, Seattle, WA 98101" -165880,iPhone,1,700,03/03/19 12:32,"895 West St, Los Angeles, CA 90001" -165881,USB-C Charging Cable,2,11.95,03/31/19 15:35,"730 North St, San Francisco, CA 94016" -165882,ThinkPad Laptop,1,999.99,03/14/19 21:01,"353 1st St, New York City, NY 10001" -165883,27in FHD Monitor,1,149.99,03/04/19 22:27,"677 Pine St, Los Angeles, CA 90001" -165884,27in FHD Monitor,1,149.99,03/29/19 05:39,"541 River St, Dallas, TX 75001" -165885,USB-C Charging Cable,3,11.95,03/21/19 05:38,"964 Lincoln St, San Francisco, CA 94016" -165886,AAA Batteries (4-pack),1,2.99,03/10/19 12:47,"58 Forest St, Portland, OR 97035" -165887,iPhone,1,700,03/26/19 20:26,"589 11th St, Austin, TX 73301" -165888,Bose SoundSport Headphones,1,99.99,03/06/19 18:02,"557 Center St, New York City, NY 10001" -165889,Apple Airpods Headphones,1,150,03/10/19 08:06,"932 Dogwood St, San Francisco, CA 94016" -165890,AA Batteries (4-pack),1,3.84,03/31/19 18:39,"955 12th St, San Francisco, CA 94016" -165890,Wired Headphones,1,11.99,03/31/19 18:39,"955 12th St, San Francisco, CA 94016" -165891,Bose SoundSport Headphones,1,99.99,03/04/19 11:19,"446 West St, San Francisco, CA 94016" -165892,iPhone,1,700,03/07/19 17:57,"418 1st St, Los Angeles, CA 90001" -165893,Wired Headphones,1,11.99,03/17/19 19:55,"337 Madison St, San Francisco, CA 94016" -165894,LG Washing Machine,1,600.0,03/22/19 15:12,"272 11th St, New York City, NY 10001" -165895,34in Ultrawide Monitor,1,379.99,03/05/19 12:53,"781 Center St, New York City, NY 10001" -165896,Apple Airpods Headphones,1,150,03/13/19 19:14,"63 2nd St, Los Angeles, CA 90001" -165897,Apple Airpods Headphones,1,150,03/28/19 08:21,"312 Lakeview St, Atlanta, GA 30301" -165898,Flatscreen TV,1,300,03/18/19 14:32,"918 Lincoln St, Boston, MA 02215" -165899,AAA Batteries (4-pack),1,2.99,03/31/19 11:16,"796 Cherry St, San Francisco, CA 94016" -165900,Lightning Charging Cable,1,14.95,03/23/19 19:42,"883 Wilson St, Portland, OR 97035" -165901,Lightning Charging Cable,1,14.95,03/25/19 07:05,"476 Jackson St, New York City, NY 10001" -165902,Lightning Charging Cable,1,14.95,03/11/19 21:53,"337 10th St, Portland, OR 97035" -165903,AAA Batteries (4-pack),2,2.99,03/09/19 09:50,"625 8th St, Seattle, WA 98101" -165904,USB-C Charging Cable,1,11.95,03/11/19 19:00,"404 1st St, Boston, MA 02215" -165905,USB-C Charging Cable,1,11.95,03/29/19 21:22,"67 West St, Austin, TX 73301" -165906,AA Batteries (4-pack),1,3.84,03/28/19 09:48,"637 Walnut St, Atlanta, GA 30301" -165907,AA Batteries (4-pack),4,3.84,03/28/19 07:52,"273 Hill St, Los Angeles, CA 90001" -165908,27in FHD Monitor,1,149.99,03/29/19 23:19,"962 Pine St, Atlanta, GA 30301" -165909,AA Batteries (4-pack),1,3.84,03/09/19 22:50,"645 Johnson St, San Francisco, CA 94016" -165910,USB-C Charging Cable,1,11.95,03/20/19 15:02,"317 River St, Los Angeles, CA 90001" -165911,iPhone,1,700,03/15/19 12:52,"232 Forest St, San Francisco, CA 94016" -165911,Lightning Charging Cable,1,14.95,03/15/19 12:52,"232 Forest St, San Francisco, CA 94016" -165912,USB-C Charging Cable,1,11.95,03/15/19 07:33,"328 Park St, New York City, NY 10001" -165913,USB-C Charging Cable,1,11.95,03/24/19 20:28,"342 Main St, San Francisco, CA 94016" -165914,Vareebadd Phone,1,400,03/04/19 11:20,"910 Johnson St, Seattle, WA 98101" -165914,Wired Headphones,1,11.99,03/04/19 11:20,"910 Johnson St, Seattle, WA 98101" -165915,Macbook Pro Laptop,1,1700,03/17/19 21:25,"613 Maple St, Atlanta, GA 30301" -165916,Apple Airpods Headphones,1,150,03/21/19 22:17,"375 Lincoln St, New York City, NY 10001" -165917,Wired Headphones,1,11.99,03/08/19 20:59,"403 Meadow St, Los Angeles, CA 90001" -165918,Bose SoundSport Headphones,1,99.99,03/09/19 15:31,"150 West St, Boston, MA 02215" -165919,27in FHD Monitor,1,149.99,03/19/19 12:11,"470 Hill St, Atlanta, GA 30301" -165920,AA Batteries (4-pack),1,3.84,03/05/19 08:50,"472 2nd St, Seattle, WA 98101" -165921,Wired Headphones,1,11.99,03/30/19 10:15,"498 Park St, Boston, MA 02215" -165922,Bose SoundSport Headphones,1,99.99,03/31/19 23:38,"948 Willow St, San Francisco, CA 94016" -165923,Wired Headphones,2,11.99,03/15/19 19:24,"343 South St, Boston, MA 02215" -165924,Apple Airpods Headphones,1,150,03/14/19 16:27,"466 8th St, Los Angeles, CA 90001" -165925,AAA Batteries (4-pack),1,2.99,03/05/19 20:45,"155 Washington St, Dallas, TX 75001" -165926,Apple Airpods Headphones,1,150,03/31/19 13:50,"962 4th St, Seattle, WA 98101" -165927,iPhone,1,700,03/21/19 22:48,"610 Cedar St, Atlanta, GA 30301" -165928,Vareebadd Phone,1,400,03/25/19 19:31,"33 Maple St, Los Angeles, CA 90001" -165928,USB-C Charging Cable,2,11.95,03/25/19 19:31,"33 Maple St, Los Angeles, CA 90001" -165929,AAA Batteries (4-pack),1,2.99,03/28/19 13:33,"498 Highland St, San Francisco, CA 94016" -165930,Wired Headphones,1,11.99,03/29/19 12:08,"34 5th St, Los Angeles, CA 90001" -165931,Apple Airpods Headphones,1,150,03/09/19 11:39,"126 Johnson St, Seattle, WA 98101" -165932,Lightning Charging Cable,1,14.95,03/31/19 10:02,"574 12th St, Dallas, TX 75001" -165933,AAA Batteries (4-pack),1,2.99,03/09/19 23:12,"292 Pine St, Seattle, WA 98101" -165934,USB-C Charging Cable,1,11.95,03/24/19 08:25,"521 Forest St, Seattle, WA 98101" -165934,USB-C Charging Cable,1,11.95,03/24/19 08:25,"521 Forest St, Seattle, WA 98101" -165935,Apple Airpods Headphones,1,150,03/11/19 17:49,"243 West St, Atlanta, GA 30301" -165936,USB-C Charging Cable,1,11.95,03/15/19 21:23,"658 10th St, Atlanta, GA 30301" -165937,AA Batteries (4-pack),1,3.84,03/25/19 22:14,"938 West St, Seattle, WA 98101" -165938,Google Phone,1,600,03/30/19 11:51,"761 Forest St, Dallas, TX 75001" -165938,USB-C Charging Cable,1,11.95,03/30/19 11:51,"761 Forest St, Dallas, TX 75001" -165938,Wired Headphones,1,11.99,03/30/19 11:51,"761 Forest St, Dallas, TX 75001" -165939,AA Batteries (4-pack),1,3.84,03/15/19 19:32,"870 Chestnut St, Atlanta, GA 30301" -165940,Apple Airpods Headphones,1,150,03/31/19 13:32,"739 River St, New York City, NY 10001" -165941,Bose SoundSport Headphones,1,99.99,03/14/19 13:58,"543 Dogwood St, New York City, NY 10001" -165942,AA Batteries (4-pack),1,3.84,03/02/19 18:57,"854 Cherry St, Boston, MA 02215" -165943,Bose SoundSport Headphones,1,99.99,03/03/19 09:33,"40 Jefferson St, Los Angeles, CA 90001" -165944,Wired Headphones,1,11.99,03/19/19 08:19,"163 Sunset St, San Francisco, CA 94016" -165945,Wired Headphones,1,11.99,03/19/19 16:38,"532 Ridge St, Dallas, TX 75001" -165946,Apple Airpods Headphones,1,150,03/21/19 02:53,"480 14th St, Los Angeles, CA 90001" -165947,27in FHD Monitor,1,149.99,03/12/19 01:04,"525 Willow St, San Francisco, CA 94016" -165948,34in Ultrawide Monitor,1,379.99,03/24/19 18:01,"663 Center St, San Francisco, CA 94016" -165948,Bose SoundSport Headphones,1,99.99,03/24/19 18:01,"663 Center St, San Francisco, CA 94016" -165949,Google Phone,1,600,03/11/19 09:56,"52 Chestnut St, Dallas, TX 75001" -165950,Apple Airpods Headphones,1,150,03/12/19 19:49,"212 Adams St, Los Angeles, CA 90001" -165951,AAA Batteries (4-pack),1,2.99,03/18/19 09:48,"271 Main St, Boston, MA 02215" -165952,Apple Airpods Headphones,1,150,03/13/19 20:03,"514 North St, Los Angeles, CA 90001" -165953,Bose SoundSport Headphones,1,99.99,03/04/19 11:47,"954 River St, Seattle, WA 98101" -165954,Flatscreen TV,1,300,03/07/19 18:26,"310 14th St, Atlanta, GA 30301" -165955,USB-C Charging Cable,1,11.95,03/05/19 13:30,"119 1st St, San Francisco, CA 94016" -165956,Lightning Charging Cable,1,14.95,03/12/19 17:52,"153 12th St, Austin, TX 73301" -165957,27in FHD Monitor,1,149.99,03/26/19 13:00,"101 Jefferson St, Atlanta, GA 30301" -165958,Bose SoundSport Headphones,1,99.99,03/03/19 12:27,"14 11th St, San Francisco, CA 94016" -165959,AAA Batteries (4-pack),1,2.99,03/15/19 17:04,"574 Highland St, Portland, OR 97035" -165960,Apple Airpods Headphones,1,150,03/17/19 22:31,"583 7th St, Austin, TX 73301" -165961,Lightning Charging Cable,1,14.95,03/11/19 11:00,"589 7th St, San Francisco, CA 94016" -165962,Lightning Charging Cable,1,14.95,03/29/19 09:35,"350 South St, Portland, OR 97035" -165963,Wired Headphones,1,11.99,03/25/19 21:05,"522 Meadow St, Atlanta, GA 30301" -165964,USB-C Charging Cable,1,11.95,03/28/19 17:25,"51 Cherry St, Dallas, TX 75001" -165965,Bose SoundSport Headphones,1,99.99,03/21/19 18:20,"838 12th St, Dallas, TX 75001" -165966,AAA Batteries (4-pack),1,2.99,03/17/19 19:42,"989 Ridge St, Dallas, TX 75001" -165967,USB-C Charging Cable,1,11.95,03/30/19 20:41,"692 1st St, Boston, MA 02215" -165968,USB-C Charging Cable,1,11.95,03/19/19 21:03,"52 Park St, San Francisco, CA 94016" -165969,Apple Airpods Headphones,1,150,03/02/19 11:13,"448 Spruce St, Los Angeles, CA 90001" -165970,34in Ultrawide Monitor,1,379.99,03/26/19 12:32,"842 2nd St, San Francisco, CA 94016" -165971,20in Monitor,1,109.99,03/11/19 13:59,"486 Ridge St, San Francisco, CA 94016" -165972,Lightning Charging Cable,1,14.95,03/10/19 09:28,"349 Chestnut St, Los Angeles, CA 90001" -165973,Apple Airpods Headphones,1,150,03/27/19 15:02,"944 Washington St, San Francisco, CA 94016" -165974,Apple Airpods Headphones,1,150,03/16/19 18:42,"95 South St, Dallas, TX 75001" -165975,Lightning Charging Cable,1,14.95,03/26/19 16:10,"331 Center St, San Francisco, CA 94016" -165976,Lightning Charging Cable,1,14.95,03/11/19 12:32,"804 North St, Dallas, TX 75001" -165977,Bose SoundSport Headphones,1,99.99,03/21/19 10:26,"491 Ridge St, Austin, TX 73301" -165978,USB-C Charging Cable,1,11.95,03/07/19 23:31,"203 9th St, Boston, MA 02215" -165979,Wired Headphones,1,11.99,03/09/19 14:02,"357 13th St, Portland, OR 97035" -165980,Apple Airpods Headphones,1,150,03/18/19 10:44,"199 Hill St, Austin, TX 73301" -165981,Apple Airpods Headphones,1,150,03/28/19 20:04,"281 14th St, San Francisco, CA 94016" -165982,20in Monitor,1,109.99,03/17/19 12:09,"53 Lakeview St, San Francisco, CA 94016" -165983,Macbook Pro Laptop,1,1700,03/14/19 13:28,"38 9th St, San Francisco, CA 94016" -165984,USB-C Charging Cable,1,11.95,03/25/19 23:09,"126 Church St, Dallas, TX 75001" -165985,Apple Airpods Headphones,1,150,03/19/19 19:19,"832 Cherry St, Austin, TX 73301" -165986,AAA Batteries (4-pack),1,2.99,03/13/19 19:41,"103 Dogwood St, Boston, MA 02215" -165987,USB-C Charging Cable,1,11.95,03/11/19 00:05,"95 North St, Portland, ME 04101" -165988,AA Batteries (4-pack),1,3.84,03/07/19 17:22,"645 11th St, Los Angeles, CA 90001" -165989,AA Batteries (4-pack),1,3.84,03/08/19 23:18,"972 5th St, Portland, ME 04101" -165990,USB-C Charging Cable,1,11.95,03/06/19 17:56,"235 Chestnut St, New York City, NY 10001" -165991,27in 4K Gaming Monitor,1,389.99,03/25/19 16:37,"503 Lincoln St, Los Angeles, CA 90001" -165992,Wired Headphones,1,11.99,03/02/19 09:39,"317 Chestnut St, New York City, NY 10001" -165993,Lightning Charging Cable,1,14.95,03/19/19 11:41,"627 Elm St, San Francisco, CA 94016" -165994,USB-C Charging Cable,1,11.95,03/18/19 11:06,"630 Pine St, Seattle, WA 98101" -165995,AAA Batteries (4-pack),3,2.99,03/16/19 23:11,"757 7th St, Los Angeles, CA 90001" -165996,AAA Batteries (4-pack),2,2.99,03/03/19 11:17,"937 12th St, Atlanta, GA 30301" -165997,20in Monitor,1,109.99,03/19/19 10:35,"604 Meadow St, Boston, MA 02215" -165998,AA Batteries (4-pack),1,3.84,03/02/19 14:30,"320 Main St, San Francisco, CA 94016" -165999,Wired Headphones,2,11.99,03/02/19 16:25,"500 2nd St, Portland, OR 97035" -166000,Wired Headphones,1,11.99,03/16/19 08:24,"540 Chestnut St, San Francisco, CA 94016" -166001,Vareebadd Phone,1,400,03/15/19 13:19,"316 Center St, New York City, NY 10001" -166001,USB-C Charging Cable,1,11.95,03/15/19 13:19,"316 Center St, New York City, NY 10001" -166002,Macbook Pro Laptop,1,1700,03/03/19 17:25,"552 Johnson St, San Francisco, CA 94016" -166003,Flatscreen TV,1,300,03/18/19 11:11,"225 Pine St, Dallas, TX 75001" -166004,LG Dryer,1,600.0,03/30/19 12:49,"555 Lincoln St, San Francisco, CA 94016" -166005,AAA Batteries (4-pack),1,2.99,03/27/19 15:30,"882 4th St, San Francisco, CA 94016" -166006,Lightning Charging Cable,1,14.95,03/06/19 11:40,"357 14th St, San Francisco, CA 94016" -166007,AAA Batteries (4-pack),1,2.99,03/31/19 13:56,"760 Cherry St, San Francisco, CA 94016" -166008,AAA Batteries (4-pack),1,2.99,03/30/19 12:38,"978 7th St, Atlanta, GA 30301" -166009,Bose SoundSport Headphones,1,99.99,03/26/19 20:00,"710 2nd St, Boston, MA 02215" -166010,AA Batteries (4-pack),1,3.84,03/30/19 22:12,"178 North St, Seattle, WA 98101" -166011,Lightning Charging Cable,1,14.95,03/30/19 15:44,"325 South St, Austin, TX 73301" -166012,Bose SoundSport Headphones,1,99.99,03/02/19 23:52,"765 9th St, Los Angeles, CA 90001" -166013,Bose SoundSport Headphones,1,99.99,03/01/19 13:24,"846 Hill St, New York City, NY 10001" -166014,34in Ultrawide Monitor,1,379.99,03/28/19 06:59,"853 Madison St, Dallas, TX 75001" -166015,Apple Airpods Headphones,1,150,03/18/19 17:12,"247 Spruce St, Atlanta, GA 30301" -166016,iPhone,1,700,03/04/19 19:26,"684 Washington St, San Francisco, CA 94016" -166017,LG Washing Machine,1,600.0,03/18/19 06:16,"459 Spruce St, New York City, NY 10001" -166018,USB-C Charging Cable,1,11.95,03/21/19 07:46,"451 Sunset St, Boston, MA 02215" -166019,USB-C Charging Cable,1,11.95,03/14/19 22:13,"821 Maple St, Seattle, WA 98101" -166020,USB-C Charging Cable,1,11.95,03/04/19 16:53,"701 Madison St, Dallas, TX 75001" -166021,USB-C Charging Cable,1,11.95,03/24/19 12:02,"661 Wilson St, Atlanta, GA 30301" -166022,Macbook Pro Laptop,1,1700,03/18/19 11:59,"889 Chestnut St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -166023,Bose SoundSport Headphones,1,99.99,03/06/19 08:23,"485 Jefferson St, Boston, MA 02215" -166024,Wired Headphones,1,11.99,03/09/19 09:36,"119 Cherry St, New York City, NY 10001" -166025,27in 4K Gaming Monitor,1,389.99,03/03/19 13:21,"423 Hill St, Boston, MA 02215" -166026,AAA Batteries (4-pack),2,2.99,03/13/19 21:30,"903 Hill St, New York City, NY 10001" -166027,Lightning Charging Cable,1,14.95,03/22/19 14:16,"376 Spruce St, Portland, OR 97035" -166028,AA Batteries (4-pack),1,3.84,03/17/19 17:34,"471 Cedar St, Atlanta, GA 30301" -166029,Vareebadd Phone,1,400,03/28/19 17:47,"236 Church St, Los Angeles, CA 90001" -166030,Lightning Charging Cable,1,14.95,03/25/19 12:12,"372 12th St, San Francisco, CA 94016" -166031,AAA Batteries (4-pack),1,2.99,03/14/19 13:31,"156 Adams St, San Francisco, CA 94016" -166032,AAA Batteries (4-pack),1,2.99,03/30/19 16:47,"390 13th St, San Francisco, CA 94016" -166033,Wired Headphones,1,11.99,03/30/19 11:56,"841 5th St, Atlanta, GA 30301" -166034,Lightning Charging Cable,2,14.95,03/24/19 16:24,"39 Hill St, Los Angeles, CA 90001" -166035,Lightning Charging Cable,1,14.95,03/22/19 09:39,"403 River St, Atlanta, GA 30301" -166036,27in FHD Monitor,1,149.99,03/18/19 21:38,"771 Maple St, San Francisco, CA 94016" -166037,27in 4K Gaming Monitor,1,389.99,03/16/19 17:08,"393 10th St, Portland, OR 97035" -166038,AAA Batteries (4-pack),2,2.99,03/23/19 13:02,"577 Jackson St, Boston, MA 02215" -166039,Apple Airpods Headphones,1,150,03/26/19 12:16,"923 7th St, Austin, TX 73301" -166040,AAA Batteries (4-pack),1,2.99,03/19/19 14:04,"166 10th St, New York City, NY 10001" -166041,Lightning Charging Cable,1,14.95,03/03/19 18:08,"312 Highland St, Los Angeles, CA 90001" -166042,27in 4K Gaming Monitor,1,389.99,03/07/19 21:07,"923 Lincoln St, Boston, MA 02215" -166043,27in FHD Monitor,1,149.99,03/11/19 09:21,"76 Jefferson St, New York City, NY 10001" -166044,Lightning Charging Cable,1,14.95,03/08/19 14:12,"179 River St, New York City, NY 10001" -166045,LG Washing Machine,1,600.0,03/15/19 19:56,"425 7th St, Los Angeles, CA 90001" -166046,Wired Headphones,1,11.99,03/17/19 21:03,"112 Washington St, Los Angeles, CA 90001" -166047,20in Monitor,1,109.99,03/14/19 20:15,"356 Forest St, Portland, OR 97035" -166048,Wired Headphones,1,11.99,03/11/19 17:45,"970 9th St, Dallas, TX 75001" -166049,Wired Headphones,1,11.99,03/15/19 21:36,"798 Highland St, Atlanta, GA 30301" -166050,Apple Airpods Headphones,1,150,03/13/19 11:04,"865 5th St, San Francisco, CA 94016" -166051,AAA Batteries (4-pack),1,2.99,03/26/19 22:32,"730 Meadow St, Atlanta, GA 30301" -166052,27in FHD Monitor,1,149.99,03/10/19 08:41,"433 Walnut St, New York City, NY 10001" -166053,Wired Headphones,2,11.99,03/15/19 16:51,"935 Jefferson St, Los Angeles, CA 90001" -166054,USB-C Charging Cable,1,11.95,03/28/19 13:26,"791 4th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -166055,USB-C Charging Cable,1,11.95,03/19/19 10:13,"551 12th St, New York City, NY 10001" -166056,USB-C Charging Cable,1,11.95,03/15/19 11:06,"822 Park St, New York City, NY 10001" -166057,Apple Airpods Headphones,1,150,03/28/19 08:46,"109 12th St, Boston, MA 02215" -166058,Flatscreen TV,1,300,03/19/19 12:31,"77 2nd St, Portland, OR 97035" -166059,AA Batteries (4-pack),1,3.84,03/29/19 12:23,"96 Cherry St, Dallas, TX 75001" -166060,Wired Headphones,1,11.99,03/14/19 18:01,"282 Sunset St, Los Angeles, CA 90001" -166061,20in Monitor,1,109.99,03/19/19 03:48,"30 Hickory St, Los Angeles, CA 90001" -166062,Wired Headphones,1,11.99,03/29/19 21:25,"523 Cherry St, Dallas, TX 75001" -166063,Flatscreen TV,1,300,03/24/19 17:13,"491 North St, Atlanta, GA 30301" -166064,Lightning Charging Cable,1,14.95,03/05/19 20:10,"785 Church St, San Francisco, CA 94016" -166065,27in FHD Monitor,1,149.99,03/18/19 11:48,"658 Pine St, San Francisco, CA 94016" -166066,Bose SoundSport Headphones,1,99.99,03/20/19 00:35,"229 Center St, San Francisco, CA 94016" -166067,AA Batteries (4-pack),1,3.84,03/07/19 00:26,"982 Hill St, San Francisco, CA 94016" -166068,Bose SoundSport Headphones,1,99.99,03/27/19 16:19,"588 11th St, San Francisco, CA 94016" -166069,27in FHD Monitor,1,149.99,03/25/19 18:21,"707 5th St, San Francisco, CA 94016" -166070,AA Batteries (4-pack),1,3.84,03/19/19 20:00,"845 Sunset St, San Francisco, CA 94016" -166071,USB-C Charging Cable,1,11.95,03/03/19 11:31,"497 10th St, Portland, OR 97035" -166072,Macbook Pro Laptop,1,1700,03/19/19 20:03,"860 Forest St, San Francisco, CA 94016" -166073,Lightning Charging Cable,1,14.95,03/07/19 21:27,"497 6th St, San Francisco, CA 94016" -166074,Wired Headphones,1,11.99,03/09/19 15:58,"533 Pine St, New York City, NY 10001" -166075,Bose SoundSport Headphones,1,99.99,03/23/19 08:21,"451 Johnson St, Portland, OR 97035" -166076,USB-C Charging Cable,1,11.95,03/06/19 10:27,"337 4th St, San Francisco, CA 94016" -166077,AAA Batteries (4-pack),1,2.99,03/22/19 18:29,"938 Highland St, Los Angeles, CA 90001" -166078,Bose SoundSport Headphones,1,99.99,03/20/19 19:26,"853 Center St, Atlanta, GA 30301" -166079,AAA Batteries (4-pack),1,2.99,03/04/19 11:58,"544 Lake St, Los Angeles, CA 90001" -166080,ThinkPad Laptop,1,999.99,03/01/19 23:22,"19 Wilson St, San Francisco, CA 94016" -166081,AA Batteries (4-pack),1,3.84,03/06/19 21:32,"429 Lake St, Los Angeles, CA 90001" -166082,iPhone,1,700,03/28/19 20:05,"823 Highland St, San Francisco, CA 94016" -166082,Apple Airpods Headphones,1,150,03/28/19 20:05,"823 Highland St, San Francisco, CA 94016" -166083,LG Dryer,1,600.0,03/12/19 15:18,"958 Sunset St, Portland, OR 97035" -166084,Bose SoundSport Headphones,1,99.99,03/04/19 22:17,"833 Washington St, San Francisco, CA 94016" -166085,Bose SoundSport Headphones,1,99.99,03/17/19 18:37,"275 Jackson St, San Francisco, CA 94016" -166086,Apple Airpods Headphones,1,150,03/15/19 19:17,"102 7th St, Atlanta, GA 30301" -166087,34in Ultrawide Monitor,1,379.99,03/27/19 15:49,"133 Johnson St, Austin, TX 73301" -166088,Wired Headphones,1,11.99,03/14/19 18:38,"627 Hickory St, New York City, NY 10001" -166089,USB-C Charging Cable,1,11.95,03/08/19 00:21,"501 Jackson St, Portland, OR 97035" -166090,Lightning Charging Cable,1,14.95,03/28/19 18:50,"836 14th St, New York City, NY 10001" -166091,Wired Headphones,2,11.99,03/06/19 22:14,"942 Wilson St, Atlanta, GA 30301" -166092,Apple Airpods Headphones,1,150,03/13/19 07:15,"92 Center St, Portland, OR 97035" -166093,iPhone,1,700,03/11/19 12:44,"677 Elm St, New York City, NY 10001" -166094,27in 4K Gaming Monitor,1,389.99,03/26/19 18:54,"868 Highland St, Los Angeles, CA 90001" -166095,27in 4K Gaming Monitor,1,389.99,03/19/19 16:10,"717 Spruce St, Dallas, TX 75001" -166096,ThinkPad Laptop,1,999.99,03/18/19 17:57,"453 Adams St, San Francisco, CA 94016" -166097,AAA Batteries (4-pack),2,2.99,03/24/19 14:40,"442 Elm St, Los Angeles, CA 90001" -166098,USB-C Charging Cable,2,11.95,03/30/19 15:58,"434 Pine St, San Francisco, CA 94016" -166099,Lightning Charging Cable,1,14.95,03/08/19 01:05,"210 14th St, San Francisco, CA 94016" -166100,Apple Airpods Headphones,1,150,03/27/19 09:05,"79 Forest St, New York City, NY 10001" -166101,Apple Airpods Headphones,1,150,03/06/19 20:48,"321 Lake St, Los Angeles, CA 90001" -166102,Bose SoundSport Headphones,1,99.99,03/18/19 20:39,"313 8th St, Los Angeles, CA 90001" -166103,27in 4K Gaming Monitor,1,389.99,03/28/19 18:20,"986 Chestnut St, Los Angeles, CA 90001" -166104,AA Batteries (4-pack),2,3.84,03/29/19 00:19,"20 Main St, New York City, NY 10001" -166105,Google Phone,1,600,03/19/19 11:07,"15 Meadow St, Los Angeles, CA 90001" -166105,Wired Headphones,1,11.99,03/19/19 11:07,"15 Meadow St, Los Angeles, CA 90001" -166106,Apple Airpods Headphones,1,150,03/13/19 22:14,"231 River St, Seattle, WA 98101" -166107,Vareebadd Phone,1,400,03/06/19 11:49,"113 Meadow St, New York City, NY 10001" -166108,AA Batteries (4-pack),3,3.84,03/23/19 12:54,"642 12th St, Boston, MA 02215" -166109,USB-C Charging Cable,1,11.95,03/29/19 14:50,"530 Ridge St, Boston, MA 02215" -166110,Wired Headphones,1,11.99,03/08/19 19:01,"689 Dogwood St, Dallas, TX 75001" -166111,Bose SoundSport Headphones,1,99.99,03/23/19 15:19,"657 Dogwood St, Boston, MA 02215" -166112,Flatscreen TV,1,300,03/06/19 13:17,"54 Elm St, Atlanta, GA 30301" -166113,27in 4K Gaming Monitor,1,389.99,03/11/19 23:20,"885 Jackson St, Los Angeles, CA 90001" -166114,27in 4K Gaming Monitor,1,389.99,03/15/19 10:22,"969 7th St, Los Angeles, CA 90001" -166115,USB-C Charging Cable,1,11.95,03/18/19 20:03,"433 Church St, San Francisco, CA 94016" -166116,USB-C Charging Cable,1,11.95,03/29/19 18:10,"64 8th St, New York City, NY 10001" -166117,27in FHD Monitor,1,149.99,03/27/19 19:30,"248 6th St, Atlanta, GA 30301" -166118,Lightning Charging Cable,1,14.95,03/02/19 08:35,"452 Chestnut St, Portland, OR 97035" -166119,USB-C Charging Cable,1,11.95,03/05/19 11:08,"276 6th St, San Francisco, CA 94016" -166120,AA Batteries (4-pack),1,3.84,03/16/19 13:22,"378 Main St, New York City, NY 10001" -166121,27in FHD Monitor,1,149.99,03/27/19 11:20,"33 Willow St, Seattle, WA 98101" -166122,AA Batteries (4-pack),1,3.84,03/21/19 23:36,"479 Highland St, Seattle, WA 98101" -166123,Bose SoundSport Headphones,1,99.99,03/21/19 22:04,"611 Washington St, New York City, NY 10001" -166124,Wired Headphones,1,11.99,03/12/19 20:45,"341 1st St, Los Angeles, CA 90001" -166125,AAA Batteries (4-pack),1,2.99,03/13/19 11:16,"518 South St, San Francisco, CA 94016" -166126,Wired Headphones,1,11.99,03/18/19 10:52,"598 Lakeview St, Dallas, TX 75001" -166127,iPhone,1,700,03/14/19 15:21,"536 Meadow St, San Francisco, CA 94016" -166127,Lightning Charging Cable,1,14.95,03/14/19 15:21,"536 Meadow St, San Francisco, CA 94016" -166128,Bose SoundSport Headphones,1,99.99,03/25/19 21:26,"133 Willow St, San Francisco, CA 94016" -166129,Bose SoundSport Headphones,1,99.99,03/28/19 13:32,"792 Lakeview St, Austin, TX 73301" -166130,27in 4K Gaming Monitor,1,389.99,03/30/19 23:33,"461 Lake St, New York City, NY 10001" -166131,Wired Headphones,1,11.99,03/15/19 11:14,"54 Cedar St, Dallas, TX 75001" -166132,Lightning Charging Cable,2,14.95,03/13/19 21:55,"531 Elm St, Dallas, TX 75001" -166133,Lightning Charging Cable,1,14.95,03/20/19 14:02,"636 4th St, San Francisco, CA 94016" -166134,Macbook Pro Laptop,1,1700,03/09/19 21:35,"957 Highland St, Seattle, WA 98101" -166135,27in 4K Gaming Monitor,1,389.99,03/02/19 21:46,"765 Cherry St, San Francisco, CA 94016" -166136,Macbook Pro Laptop,1,1700,03/18/19 18:44,"623 South St, Boston, MA 02215" -166137,27in FHD Monitor,1,149.99,03/15/19 13:18,"898 Lakeview St, Los Angeles, CA 90001" -166138,27in 4K Gaming Monitor,1,389.99,03/07/19 14:02,"540 13th St, New York City, NY 10001" -166139,AAA Batteries (4-pack),1,2.99,03/04/19 17:03,"132 Chestnut St, Los Angeles, CA 90001" -166140,Bose SoundSport Headphones,1,99.99,03/08/19 13:55,"739 Dogwood St, Atlanta, GA 30301" -166141,Wired Headphones,1,11.99,03/07/19 14:13,"637 Ridge St, Atlanta, GA 30301" -166142,34in Ultrawide Monitor,1,379.99,03/11/19 13:35,"387 14th St, Atlanta, GA 30301" -166143,Flatscreen TV,2,300,03/01/19 15:07,"781 Johnson St, San Francisco, CA 94016" -166144,Wired Headphones,1,11.99,03/02/19 17:23,"257 8th St, Austin, TX 73301" -166145,USB-C Charging Cable,1,11.95,03/15/19 11:23,"76 Madison St, New York City, NY 10001" -166146,Lightning Charging Cable,1,14.95,03/05/19 16:07,"142 1st St, Atlanta, GA 30301" -166147,Lightning Charging Cable,1,14.95,03/16/19 18:39,"619 5th St, New York City, NY 10001" -166148,Apple Airpods Headphones,1,150,03/18/19 10:29,"502 Adams St, Boston, MA 02215" -166149,27in FHD Monitor,1,149.99,03/26/19 09:15,"970 Meadow St, Los Angeles, CA 90001" -166150,USB-C Charging Cable,1,11.95,03/07/19 21:27,"144 North St, Portland, OR 97035" -166151,Lightning Charging Cable,1,14.95,03/05/19 13:54,"801 Hickory St, Boston, MA 02215" -166152,34in Ultrawide Monitor,1,379.99,03/28/19 11:53,"337 Johnson St, Dallas, TX 75001" -166153,Apple Airpods Headphones,1,150,03/01/19 18:37,"817 Sunset St, Atlanta, GA 30301" -166154,Macbook Pro Laptop,1,1700,03/15/19 12:49,"727 Wilson St, San Francisco, CA 94016" -166155,AAA Batteries (4-pack),1,2.99,03/30/19 18:49,"965 6th St, Portland, OR 97035" -166156,AA Batteries (4-pack),2,3.84,03/12/19 04:51,"219 Lake St, Atlanta, GA 30301" -166157,USB-C Charging Cable,1,11.95,03/25/19 18:36,"334 4th St, San Francisco, CA 94016" -166158,USB-C Charging Cable,1,11.95,03/02/19 11:50,"8 Willow St, Dallas, TX 75001" -166159,USB-C Charging Cable,1,11.95,03/20/19 19:49,"468 Park St, Seattle, WA 98101" -166160,ThinkPad Laptop,1,999.99,03/25/19 22:53,"820 13th St, San Francisco, CA 94016" -166161,Google Phone,1,600,03/29/19 18:07,"857 8th St, Los Angeles, CA 90001" -166161,Wired Headphones,1,11.99,03/29/19 18:07,"857 8th St, Los Angeles, CA 90001" -166162,Bose SoundSport Headphones,1,99.99,03/01/19 19:19,"131 1st St, Seattle, WA 98101" -166163,AAA Batteries (4-pack),1,2.99,03/20/19 20:20,"622 West St, Dallas, TX 75001" -166163,Lightning Charging Cable,1,14.95,03/20/19 20:20,"622 West St, Dallas, TX 75001" -166164,USB-C Charging Cable,1,11.95,03/04/19 20:57,"240 River St, Los Angeles, CA 90001" -166165,ThinkPad Laptop,1,999.99,03/04/19 16:17,"657 Highland St, San Francisco, CA 94016" -166166,34in Ultrawide Monitor,1,379.99,03/23/19 16:25,"614 Forest St, San Francisco, CA 94016" -166167,USB-C Charging Cable,2,11.95,03/16/19 20:40,"37 Main St, Portland, OR 97035" -166168,USB-C Charging Cable,1,11.95,03/22/19 11:18,"581 Jefferson St, Los Angeles, CA 90001" -166169,Bose SoundSport Headphones,1,99.99,03/30/19 18:27,"385 Jefferson St, San Francisco, CA 94016" -166170,AA Batteries (4-pack),1,3.84,03/09/19 08:12,"878 Main St, Portland, ME 04101" -166171,USB-C Charging Cable,1,11.95,03/17/19 14:29,"811 North St, Austin, TX 73301" -166172,27in FHD Monitor,1,149.99,03/03/19 03:41,"874 Forest St, San Francisco, CA 94016" -166173,AA Batteries (4-pack),1,3.84,03/24/19 13:19,"378 Wilson St, Los Angeles, CA 90001" -166174,Apple Airpods Headphones,1,150,03/01/19 10:44,"910 Walnut St, Los Angeles, CA 90001" -166175,Lightning Charging Cable,1,14.95,03/23/19 09:19,"618 Main St, Atlanta, GA 30301" -166176,USB-C Charging Cable,2,11.95,03/16/19 17:35,"899 Dogwood St, Austin, TX 73301" -166177,Apple Airpods Headphones,1,150,03/25/19 16:04,"348 North St, Austin, TX 73301" -166178,Bose SoundSport Headphones,1,99.99,03/29/19 17:56,"705 1st St, San Francisco, CA 94016" -166179,AAA Batteries (4-pack),1,2.99,03/27/19 12:16,"433 Forest St, Portland, OR 97035" -166180,ThinkPad Laptop,1,999.99,03/14/19 11:00,"779 4th St, New York City, NY 10001" -166181,USB-C Charging Cable,1,11.95,03/02/19 13:50,"65 11th St, Portland, ME 04101" -166182,AA Batteries (4-pack),1,3.84,03/12/19 11:35,"629 2nd St, Seattle, WA 98101" -166183,ThinkPad Laptop,1,999.99,03/21/19 17:52,"848 2nd St, Atlanta, GA 30301" -166184,27in FHD Monitor,1,149.99,03/09/19 22:10,"111 Wilson St, San Francisco, CA 94016" -166185,20in Monitor,1,109.99,03/24/19 20:38,"945 Meadow St, San Francisco, CA 94016" -166186,AA Batteries (4-pack),2,3.84,03/01/19 21:07,"534 Sunset St, Atlanta, GA 30301" -166187,AA Batteries (4-pack),2,3.84,03/31/19 12:54,"37 Sunset St, Los Angeles, CA 90001" -166188,Google Phone,1,600,03/11/19 23:37,"416 Lake St, San Francisco, CA 94016" -166189,Apple Airpods Headphones,1,150,03/04/19 14:35,"872 Adams St, San Francisco, CA 94016" -166190,Wired Headphones,1,11.99,03/20/19 16:16,"988 Lincoln St, New York City, NY 10001" -166191,USB-C Charging Cable,2,11.95,03/01/19 11:00,"15 Highland St, Boston, MA 02215" -166192,Wired Headphones,2,11.99,03/02/19 14:39,"337 Chestnut St, Dallas, TX 75001" -166193,Lightning Charging Cable,1,14.95,03/03/19 09:12,"224 Chestnut St, Los Angeles, CA 90001" -166194,Wired Headphones,1,11.99,03/20/19 18:26,"749 Center St, Austin, TX 73301" -166195,USB-C Charging Cable,1,11.95,03/25/19 23:46,"761 7th St, San Francisco, CA 94016" -166196,Google Phone,1,600,03/31/19 15:31,"355 6th St, Los Angeles, CA 90001" -166197,USB-C Charging Cable,1,11.95,03/09/19 20:14,"607 Madison St, San Francisco, CA 94016" -166198,AA Batteries (4-pack),3,3.84,03/16/19 08:39,"396 Hill St, Portland, OR 97035" -166199,AAA Batteries (4-pack),2,2.99,03/17/19 12:27,"926 4th St, Los Angeles, CA 90001" -166200,Wired Headphones,1,11.99,03/05/19 09:41,"305 Forest St, Los Angeles, CA 90001" -166201,20in Monitor,1,109.99,03/18/19 08:47,"323 South St, San Francisco, CA 94016" -166202,iPhone,1,700,03/29/19 17:52,"572 14th St, Boston, MA 02215" -166203,USB-C Charging Cable,1,11.95,03/07/19 13:44,"830 Cedar St, Atlanta, GA 30301" -166204,Wired Headphones,2,11.99,03/04/19 16:02,"553 Hickory St, San Francisco, CA 94016" -166205,Wired Headphones,1,11.99,03/12/19 16:49,"692 Elm St, Austin, TX 73301" -166206,Wired Headphones,1,11.99,03/09/19 16:16,"247 11th St, New York City, NY 10001" -166207,20in Monitor,1,109.99,03/12/19 10:22,"57 Highland St, Los Angeles, CA 90001" -166208,AA Batteries (4-pack),1,3.84,03/11/19 18:09,"582 9th St, Los Angeles, CA 90001" -166209,Lightning Charging Cable,1,14.95,03/19/19 11:32,"878 Jefferson St, Seattle, WA 98101" -166210,AA Batteries (4-pack),1,3.84,03/13/19 20:21,"699 10th St, Austin, TX 73301" -166211,Flatscreen TV,1,300,03/30/19 02:44,"444 Wilson St, Atlanta, GA 30301" -166212,Lightning Charging Cable,1,14.95,03/16/19 23:25,"348 Maple St, San Francisco, CA 94016" -166213,ThinkPad Laptop,1,999.99,03/25/19 09:27,"796 Ridge St, Seattle, WA 98101" -166214,USB-C Charging Cable,1,11.95,03/25/19 13:51,"356 Center St, San Francisco, CA 94016" -166215,Wired Headphones,1,11.99,03/18/19 01:46,"658 10th St, Portland, OR 97035" -166216,Lightning Charging Cable,1,14.95,03/05/19 17:03,"460 11th St, Austin, TX 73301" -166217,Vareebadd Phone,1,400,03/30/19 20:50,"950 Main St, San Francisco, CA 94016" -166218,AAA Batteries (4-pack),1,2.99,03/10/19 09:49,"84 5th St, Austin, TX 73301" -166219,Apple Airpods Headphones,1,150,03/30/19 21:00,"984 Spruce St, Atlanta, GA 30301" -166220,27in 4K Gaming Monitor,1,389.99,03/11/19 13:06,"956 Dogwood St, Portland, OR 97035" -166221,iPhone,1,700,03/10/19 10:50,"229 13th St, Los Angeles, CA 90001" -166222,AA Batteries (4-pack),1,3.84,03/29/19 09:55,"257 South St, Boston, MA 02215" -166223,Lightning Charging Cable,1,14.95,03/26/19 12:41,"509 2nd St, San Francisco, CA 94016" -166224,Bose SoundSport Headphones,1,99.99,03/27/19 23:27,"116 Main St, Dallas, TX 75001" -166225,34in Ultrawide Monitor,1,379.99,03/01/19 11:05,"587 West St, San Francisco, CA 94016" -166226,ThinkPad Laptop,1,999.99,03/15/19 12:20,"331 Forest St, Los Angeles, CA 90001" -166227,Lightning Charging Cable,1,14.95,03/14/19 22:50,"849 Wilson St, Atlanta, GA 30301" -166228,Lightning Charging Cable,1,14.95,03/30/19 11:28,"22 Highland St, Los Angeles, CA 90001" -166229,Bose SoundSport Headphones,1,99.99,03/09/19 16:23,"832 Willow St, New York City, NY 10001" -166230,Wired Headphones,1,11.99,03/14/19 19:56,"881 Lakeview St, Boston, MA 02215" -166231,AA Batteries (4-pack),1,3.84,03/04/19 11:18,"759 Lakeview St, Los Angeles, CA 90001" -166232,Wired Headphones,1,11.99,03/25/19 08:00,"906 West St, Portland, ME 04101" -166233,Wired Headphones,1,11.99,03/29/19 10:01,"889 Sunset St, New York City, NY 10001" -166234,AAA Batteries (4-pack),3,2.99,03/16/19 13:50,"319 River St, Boston, MA 02215" -166235,Bose SoundSport Headphones,1,99.99,03/16/19 11:16,"573 12th St, Boston, MA 02215" -166236,AAA Batteries (4-pack),1,2.99,03/15/19 09:34,"639 Forest St, Portland, OR 97035" -166237,Flatscreen TV,1,300,03/29/19 14:17,"884 Forest St, Atlanta, GA 30301" -166238,USB-C Charging Cable,1,11.95,03/27/19 20:06,"468 1st St, San Francisco, CA 94016" -166239,34in Ultrawide Monitor,1,379.99,03/19/19 14:30,"860 Hill St, Atlanta, GA 30301" -166240,iPhone,1,700,03/03/19 10:42,"536 Center St, Los Angeles, CA 90001" -166241,27in FHD Monitor,1,149.99,03/19/19 17:23,"952 Maple St, Dallas, TX 75001" -166242,Wired Headphones,1,11.99,03/26/19 08:51,"169 1st St, Boston, MA 02215" -166243,34in Ultrawide Monitor,1,379.99,03/12/19 17:46,"910 7th St, Boston, MA 02215" -166244,Bose SoundSport Headphones,1,99.99,03/24/19 10:06,"340 5th St, Los Angeles, CA 90001" -166245,AA Batteries (4-pack),1,3.84,03/23/19 18:42,"236 9th St, Seattle, WA 98101" -166246,Apple Airpods Headphones,1,150,03/31/19 09:14,"824 Center St, San Francisco, CA 94016" -166247,iPhone,1,700,03/03/19 11:43,"455 7th St, San Francisco, CA 94016" -166248,Apple Airpods Headphones,1,150,03/15/19 22:48,"244 13th St, Los Angeles, CA 90001" -166249,Wired Headphones,1,11.99,03/26/19 16:48,"970 Spruce St, Los Angeles, CA 90001" -166250,Lightning Charging Cable,1,14.95,04/01/19 00:11,"159 Walnut St, Los Angeles, CA 90001" -166251,Apple Airpods Headphones,1,150,03/11/19 10:58,"874 Maple St, New York City, NY 10001" -166252,Apple Airpods Headphones,1,150,03/04/19 08:26,"918 12th St, New York City, NY 10001" -166253,AA Batteries (4-pack),1,3.84,03/29/19 08:46,"445 Jackson St, Los Angeles, CA 90001" -166254,34in Ultrawide Monitor,1,379.99,03/11/19 15:44,"487 10th St, Atlanta, GA 30301" -166255,Lightning Charging Cable,1,14.95,03/27/19 11:10,"716 5th St, San Francisco, CA 94016" -166256,Apple Airpods Headphones,1,150,03/26/19 21:08,"784 Chestnut St, San Francisco, CA 94016" -166257,iPhone,1,700,03/28/19 20:56,"528 Forest St, Boston, MA 02215" -166258,Apple Airpods Headphones,1,150,03/27/19 18:29,"795 Cherry St, New York City, NY 10001" -166259,Bose SoundSport Headphones,1,99.99,03/13/19 22:49,"752 Ridge St, New York City, NY 10001" -166260,USB-C Charging Cable,3,11.95,03/12/19 11:58,"259 Center St, Portland, OR 97035" -166260,Lightning Charging Cable,1,14.95,03/12/19 11:58,"259 Center St, Portland, OR 97035" -166261,AA Batteries (4-pack),2,3.84,03/09/19 13:06,"773 Chestnut St, Portland, ME 04101" -166262,USB-C Charging Cable,2,11.95,03/12/19 18:15,"388 12th St, Atlanta, GA 30301" -166263,Bose SoundSport Headphones,1,99.99,03/06/19 22:22,"328 Park St, Atlanta, GA 30301" -166264,Bose SoundSport Headphones,1,99.99,03/27/19 13:00,"74 Maple St, Los Angeles, CA 90001" -166265,34in Ultrawide Monitor,1,379.99,03/23/19 11:31,"134 South St, Los Angeles, CA 90001" -166266,AAA Batteries (4-pack),1,2.99,03/07/19 21:19,"851 Pine St, Atlanta, GA 30301" -166267,USB-C Charging Cable,1,11.95,03/08/19 07:47,"565 Center St, Portland, ME 04101" -166268,LG Washing Machine,1,600.0,03/23/19 12:52,"807 12th St, Seattle, WA 98101" -166269,Apple Airpods Headphones,1,150,03/27/19 12:02,"496 Johnson St, Seattle, WA 98101" -166270,Lightning Charging Cable,1,14.95,03/05/19 06:11,"612 Center St, Atlanta, GA 30301" -166271,27in 4K Gaming Monitor,1,389.99,03/30/19 09:05,"548 8th St, Portland, OR 97035" -166272,USB-C Charging Cable,1,11.95,03/04/19 18:54,"322 8th St, Dallas, TX 75001" -166273,20in Monitor,1,109.99,03/28/19 01:02,"29 West St, Los Angeles, CA 90001" -166274,AAA Batteries (4-pack),1,2.99,03/13/19 09:32,"240 North St, San Francisco, CA 94016" -166275,Flatscreen TV,1,300,03/19/19 18:14,"771 Church St, San Francisco, CA 94016" -166276,27in FHD Monitor,1,149.99,03/11/19 17:35,"791 2nd St, Boston, MA 02215" -166277,Wired Headphones,1,11.99,03/01/19 13:26,"874 North St, San Francisco, CA 94016" -166278,ThinkPad Laptop,1,999.99,03/20/19 16:57,"622 Johnson St, Los Angeles, CA 90001" -166279,27in FHD Monitor,1,149.99,03/11/19 12:57,"269 Johnson St, San Francisco, CA 94016" -166280,AAA Batteries (4-pack),2,2.99,03/05/19 22:54,"499 South St, Los Angeles, CA 90001" -166281,USB-C Charging Cable,1,11.95,03/16/19 23:52,"424 5th St, Boston, MA 02215" -166282,Wired Headphones,1,11.99,03/19/19 10:09,"528 8th St, Dallas, TX 75001" -166283,Bose SoundSport Headphones,1,99.99,03/21/19 07:42,"395 West St, Los Angeles, CA 90001" -166284,ThinkPad Laptop,1,999.99,03/05/19 11:46,"723 1st St, Dallas, TX 75001" -166284,Lightning Charging Cable,1,14.95,03/05/19 11:46,"723 1st St, Dallas, TX 75001" -166285,AA Batteries (4-pack),1,3.84,03/13/19 09:53,"725 Washington St, Los Angeles, CA 90001" -166286,USB-C Charging Cable,1,11.95,03/09/19 15:09,"38 Chestnut St, Boston, MA 02215" -166287,USB-C Charging Cable,1,11.95,03/30/19 20:17,"830 Madison St, Los Angeles, CA 90001" -166288,AA Batteries (4-pack),1,3.84,03/04/19 10:31,"566 Highland St, Portland, OR 97035" -166289,USB-C Charging Cable,1,11.95,03/29/19 09:14,"592 Washington St, New York City, NY 10001" -166290,AA Batteries (4-pack),1,3.84,03/01/19 08:57,"89 4th St, New York City, NY 10001" -166291,20in Monitor,1,109.99,03/25/19 18:08,"566 North St, Los Angeles, CA 90001" -166292,Bose SoundSport Headphones,1,99.99,03/29/19 22:07,"242 Spruce St, Atlanta, GA 30301" -166293,USB-C Charging Cable,1,11.95,03/13/19 21:08,"345 Church St, Portland, OR 97035" -166294,20in Monitor,1,109.99,03/02/19 12:32,"545 1st St, Austin, TX 73301" -166295,Apple Airpods Headphones,1,150,03/10/19 21:07,"638 Spruce St, Los Angeles, CA 90001" -166296,AAA Batteries (4-pack),4,2.99,03/08/19 06:07,"389 Sunset St, Los Angeles, CA 90001" -166297,Apple Airpods Headphones,1,150,03/08/19 00:49,"940 Johnson St, Los Angeles, CA 90001" -166298,AA Batteries (4-pack),1,3.84,03/08/19 11:57,"916 11th St, San Francisco, CA 94016" -166299,27in FHD Monitor,1,149.99,03/25/19 19:24,"311 Park St, San Francisco, CA 94016" -166300,Wired Headphones,1,11.99,03/18/19 11:33,"999 Pine St, Seattle, WA 98101" -166301,AAA Batteries (4-pack),1,2.99,03/21/19 22:23,"941 6th St, Los Angeles, CA 90001" -166302,iPhone,1,700,03/25/19 07:34,"647 6th St, Seattle, WA 98101" -166302,Wired Headphones,1,11.99,03/25/19 07:34,"647 6th St, Seattle, WA 98101" -166303,Bose SoundSport Headphones,1,99.99,03/02/19 16:00,"828 South St, Atlanta, GA 30301" -166304,AA Batteries (4-pack),1,3.84,03/30/19 14:23,"396 North St, New York City, NY 10001" -166305,Bose SoundSport Headphones,1,99.99,03/12/19 21:41,"510 13th St, Atlanta, GA 30301" -166306,AA Batteries (4-pack),2,3.84,03/12/19 13:44,"411 1st St, San Francisco, CA 94016" -166307,Lightning Charging Cable,1,14.95,03/18/19 23:46,"507 Lake St, Los Angeles, CA 90001" -166308,AAA Batteries (4-pack),1,2.99,03/21/19 00:01,"514 Johnson St, Los Angeles, CA 90001" -166309,AA Batteries (4-pack),1,3.84,04/01/19 01:32,"2 Church St, Seattle, WA 98101" -166310,Lightning Charging Cable,1,14.95,03/23/19 14:00,"695 9th St, New York City, NY 10001" -166311,USB-C Charging Cable,1,11.95,03/26/19 18:13,"648 10th St, Portland, OR 97035" -166312,AA Batteries (4-pack),2,3.84,03/21/19 20:19,"784 Cedar St, Boston, MA 02215" -166313,AAA Batteries (4-pack),1,2.99,03/24/19 19:05,"198 11th St, Atlanta, GA 30301" -166314,Wired Headphones,1,11.99,03/16/19 02:10,"408 8th St, Seattle, WA 98101" -166315,ThinkPad Laptop,1,999.99,03/31/19 13:58,"212 Johnson St, Atlanta, GA 30301" -166316,34in Ultrawide Monitor,1,379.99,03/17/19 17:35,"369 Park St, New York City, NY 10001" -166317,AAA Batteries (4-pack),1,2.99,03/22/19 17:02,"908 6th St, San Francisco, CA 94016" -166318,Wired Headphones,1,11.99,03/22/19 08:27,"539 Adams St, New York City, NY 10001" -166319,Wired Headphones,1,11.99,03/11/19 19:28,"723 Pine St, New York City, NY 10001" -166320,Wired Headphones,1,11.99,03/14/19 14:05,"945 Jackson St, Portland, OR 97035" -166321,27in FHD Monitor,1,149.99,03/28/19 21:04,"701 12th St, Seattle, WA 98101" -166322,Apple Airpods Headphones,1,150,03/23/19 13:26,"572 Cherry St, Boston, MA 02215" -166323,AA Batteries (4-pack),1,3.84,03/23/19 16:49,"589 Dogwood St, Atlanta, GA 30301" -166324,27in FHD Monitor,1,149.99,03/15/19 20:18,"342 Lake St, Los Angeles, CA 90001" -166325,AAA Batteries (4-pack),1,2.99,03/15/19 12:58,"620 Lake St, Austin, TX 73301" -166326,27in FHD Monitor,1,149.99,03/11/19 23:13,"884 Sunset St, Los Angeles, CA 90001" -166326,Vareebadd Phone,1,400,03/11/19 23:13,"884 Sunset St, Los Angeles, CA 90001" -166327,Bose SoundSport Headphones,1,99.99,03/25/19 16:34,"439 Cherry St, Dallas, TX 75001" -166328,USB-C Charging Cable,1,11.95,03/18/19 09:20,"295 Spruce St, Los Angeles, CA 90001" -166329,Macbook Pro Laptop,1,1700,03/17/19 23:50,"821 Chestnut St, Atlanta, GA 30301" -166330,Bose SoundSport Headphones,1,99.99,03/12/19 06:11,"527 North St, San Francisco, CA 94016" -166331,Bose SoundSport Headphones,1,99.99,03/17/19 14:23,"151 South St, Seattle, WA 98101" -166332,Lightning Charging Cable,1,14.95,03/31/19 17:53,"170 Lincoln St, Dallas, TX 75001" -166333,AA Batteries (4-pack),1,3.84,03/01/19 16:27,"16 Hill St, Seattle, WA 98101" -166334,Google Phone,1,600,03/03/19 12:50,"702 Elm St, New York City, NY 10001" -166334,Bose SoundSport Headphones,1,99.99,03/03/19 12:50,"702 Elm St, New York City, NY 10001" -166335,Apple Airpods Headphones,1,150,03/17/19 12:12,"58 Elm St, Portland, ME 04101" -166336,AA Batteries (4-pack),1,3.84,03/30/19 01:24,"797 10th St, New York City, NY 10001" -166337,Google Phone,1,600,03/03/19 19:48,"107 Willow St, San Francisco, CA 94016" -166337,USB-C Charging Cable,1,11.95,03/03/19 19:48,"107 Willow St, San Francisco, CA 94016" -166338,Wired Headphones,1,11.99,03/03/19 10:13,"868 Johnson St, New York City, NY 10001" -166339,27in 4K Gaming Monitor,1,389.99,03/23/19 09:21,"67 Pine St, San Francisco, CA 94016" -166340,34in Ultrawide Monitor,1,379.99,03/25/19 11:25,"377 Jackson St, Boston, MA 02215" -166341,AAA Batteries (4-pack),1,2.99,03/02/19 00:27,"747 Highland St, Los Angeles, CA 90001" -166342,USB-C Charging Cable,1,11.95,03/31/19 13:40,"130 Washington St, San Francisco, CA 94016" -166343,Wired Headphones,1,11.99,03/28/19 09:55,"745 Lincoln St, San Francisco, CA 94016" -166344,Lightning Charging Cable,1,14.95,03/20/19 17:14,"245 13th St, San Francisco, CA 94016" -166345,AA Batteries (4-pack),1,3.84,03/26/19 10:31,"558 Spruce St, New York City, NY 10001" -166346,Wired Headphones,1,11.99,03/26/19 21:25,"560 Willow St, Boston, MA 02215" -166347,Lightning Charging Cable,1,14.95,03/27/19 11:46,"234 Cherry St, Seattle, WA 98101" -166348,Apple Airpods Headphones,1,150,03/04/19 08:00,"289 Forest St, San Francisco, CA 94016" -166349,AA Batteries (4-pack),1,3.84,03/25/19 14:48,"74 Dogwood St, Los Angeles, CA 90001" -166350,iPhone,1,700,03/24/19 03:53,"263 Lincoln St, San Francisco, CA 94016" -166351,34in Ultrawide Monitor,1,379.99,03/15/19 10:42,"457 Elm St, Atlanta, GA 30301" -166352,20in Monitor,1,109.99,03/11/19 18:56,"138 River St, Austin, TX 73301" -166353,AAA Batteries (4-pack),1,2.99,03/13/19 14:33,"907 Washington St, San Francisco, CA 94016" -166354,Lightning Charging Cable,1,14.95,03/24/19 14:08,"14 Church St, Seattle, WA 98101" -166355,Lightning Charging Cable,1,14.95,03/29/19 14:12,"143 5th St, San Francisco, CA 94016" -166356,34in Ultrawide Monitor,1,379.99,03/24/19 17:01,"394 Main St, Seattle, WA 98101" -166357,Lightning Charging Cable,1,14.95,03/10/19 23:23,"845 Forest St, Dallas, TX 75001" -166358,AA Batteries (4-pack),1,3.84,03/14/19 22:15,"721 Hickory St, Los Angeles, CA 90001" -166359,27in 4K Gaming Monitor,1,389.99,03/08/19 14:17,"568 11th St, San Francisco, CA 94016" -166360,Lightning Charging Cable,1,14.95,03/28/19 22:04,"286 Cedar St, San Francisco, CA 94016" -166361,Wired Headphones,1,11.99,03/10/19 06:11,"408 Adams St, Portland, ME 04101" -166362,27in FHD Monitor,1,149.99,03/10/19 10:00,"156 Hill St, New York City, NY 10001" -166363,20in Monitor,1,109.99,03/28/19 07:37,"280 Jackson St, New York City, NY 10001" -166364,Google Phone,1,600,03/07/19 12:06,"475 Cherry St, Dallas, TX 75001" -166365,USB-C Charging Cable,1,11.95,03/04/19 20:52,"292 Wilson St, Seattle, WA 98101" -166366,USB-C Charging Cable,1,11.95,03/23/19 16:18,"594 5th St, San Francisco, CA 94016" -166367,Apple Airpods Headphones,1,150,03/16/19 18:04,"508 Madison St, Austin, TX 73301" -166368,Wired Headphones,1,11.99,03/26/19 11:54,"340 14th St, San Francisco, CA 94016" -166369,ThinkPad Laptop,1,999.99,03/10/19 17:02,"123 Hill St, Dallas, TX 75001" -166370,27in FHD Monitor,1,149.99,03/30/19 19:58,"173 13th St, New York City, NY 10001" -166371,AA Batteries (4-pack),1,3.84,03/20/19 10:56,"846 Dogwood St, San Francisco, CA 94016" -166372,USB-C Charging Cable,1,11.95,03/17/19 12:36,"835 2nd St, Seattle, WA 98101" -166373,Lightning Charging Cable,1,14.95,03/03/19 07:46,"180 River St, Boston, MA 02215" -166374,iPhone,1,700,03/06/19 01:02,"208 Walnut St, Boston, MA 02215" -166375,Bose SoundSport Headphones,1,99.99,03/28/19 07:14,"908 9th St, Boston, MA 02215" -166376,AA Batteries (4-pack),1,3.84,03/09/19 00:31,"527 Forest St, Seattle, WA 98101" -166377,Lightning Charging Cable,1,14.95,03/24/19 17:10,"500 Spruce St, San Francisco, CA 94016" -166378,Wired Headphones,1,11.99,03/30/19 09:18,"120 Willow St, Seattle, WA 98101" -166379,USB-C Charging Cable,1,11.95,03/02/19 19:05,"279 Cherry St, Boston, MA 02215" -166380,27in FHD Monitor,1,149.99,03/13/19 10:50,"737 7th St, Boston, MA 02215" -166381,AAA Batteries (4-pack),1,2.99,03/23/19 09:02,"702 2nd St, Boston, MA 02215" -166382,Apple Airpods Headphones,1,150,03/09/19 13:48,"873 Elm St, Dallas, TX 75001" -166383,Macbook Pro Laptop,1,1700,03/04/19 12:30,"250 Dogwood St, Dallas, TX 75001" -166384,AA Batteries (4-pack),1,3.84,03/02/19 00:37,"80 Main St, Los Angeles, CA 90001" -166385,USB-C Charging Cable,1,11.95,03/02/19 07:19,"724 Main St, Atlanta, GA 30301" -166386,Google Phone,1,600,03/29/19 16:00,"997 Chestnut St, Portland, OR 97035" -166387,Apple Airpods Headphones,1,150,03/17/19 19:49,"753 Sunset St, San Francisco, CA 94016" -166388,Lightning Charging Cable,2,14.95,03/15/19 22:03,"289 14th St, San Francisco, CA 94016" -166389,AAA Batteries (4-pack),1,2.99,03/05/19 18:30,"980 Cherry St, Seattle, WA 98101" -166390,USB-C Charging Cable,1,11.95,03/11/19 10:48,"284 West St, Seattle, WA 98101" -166391,27in FHD Monitor,1,149.99,03/27/19 01:07,"419 Center St, San Francisco, CA 94016" -166392,AAA Batteries (4-pack),1,2.99,03/18/19 19:31,"299 South St, Atlanta, GA 30301" -166393,Vareebadd Phone,1,400,03/04/19 13:26,"42 North St, Portland, ME 04101" -166393,Wired Headphones,1,11.99,03/04/19 13:26,"42 North St, Portland, ME 04101" -166394,27in 4K Gaming Monitor,1,389.99,03/08/19 21:48,"844 1st St, San Francisco, CA 94016" -166395,AAA Batteries (4-pack),2,2.99,03/30/19 18:17,"648 Washington St, Boston, MA 02215" -166396,Bose SoundSport Headphones,1,99.99,03/09/19 21:12,"817 2nd St, Atlanta, GA 30301" -166397,Apple Airpods Headphones,1,150,03/31/19 21:02,"20 11th St, Dallas, TX 75001" -166398,Wired Headphones,1,11.99,03/09/19 15:12,"36 4th St, Boston, MA 02215" -166399,27in 4K Gaming Monitor,1,389.99,03/28/19 14:59,"706 Park St, Los Angeles, CA 90001" -166400,USB-C Charging Cable,2,11.95,03/01/19 23:19,"907 7th St, Los Angeles, CA 90001" -166401,Macbook Pro Laptop,1,1700,03/31/19 10:12,"792 Spruce St, Los Angeles, CA 90001" -166402,Apple Airpods Headphones,1,150,03/27/19 18:49,"583 Wilson St, San Francisco, CA 94016" -166403,20in Monitor,1,109.99,03/23/19 11:18,"105 Lake St, New York City, NY 10001" -166404,Wired Headphones,1,11.99,03/31/19 14:12,"78 River St, New York City, NY 10001" -166405,AA Batteries (4-pack),1,3.84,03/18/19 19:18,"875 Adams St, New York City, NY 10001" -166406,AAA Batteries (4-pack),1,2.99,03/08/19 10:01,"933 Madison St, Los Angeles, CA 90001" -166407,Wired Headphones,2,11.99,03/30/19 23:03,"891 Lincoln St, Dallas, TX 75001" -166408,Bose SoundSport Headphones,1,99.99,03/07/19 09:27,"135 West St, San Francisco, CA 94016" -166409,iPhone,1,700,03/09/19 19:15,"506 Church St, Los Angeles, CA 90001" -166410,AAA Batteries (4-pack),2,2.99,03/22/19 15:57,"129 4th St, Los Angeles, CA 90001" -166411,USB-C Charging Cable,1,11.95,03/12/19 13:48,"780 Johnson St, Seattle, WA 98101" -166412,USB-C Charging Cable,1,11.95,03/11/19 11:08,"250 Pine St, Atlanta, GA 30301" -166413,Wired Headphones,1,11.99,03/27/19 07:42,"676 Willow St, Atlanta, GA 30301" -166414,Apple Airpods Headphones,1,150,03/12/19 19:23,"625 7th St, San Francisco, CA 94016" -166415,Apple Airpods Headphones,1,150,03/20/19 11:14,"142 Chestnut St, Seattle, WA 98101" -166416,27in FHD Monitor,1,149.99,03/17/19 16:50,"541 Lincoln St, Los Angeles, CA 90001" -166417,20in Monitor,1,109.99,03/09/19 11:22,"915 Sunset St, Boston, MA 02215" -166418,Wired Headphones,1,11.99,03/28/19 18:35,"132 2nd St, Seattle, WA 98101" -166419,Bose SoundSport Headphones,1,99.99,03/14/19 22:51,"127 9th St, Boston, MA 02215" -166420,Wired Headphones,1,11.99,03/27/19 19:36,"362 2nd St, San Francisco, CA 94016" -166421,Macbook Pro Laptop,1,1700,03/01/19 17:23,"333 Johnson St, San Francisco, CA 94016" -166422,iPhone,1,700,03/12/19 18:50,"997 5th St, Seattle, WA 98101" -166423,27in FHD Monitor,1,149.99,03/07/19 11:28,"308 West St, San Francisco, CA 94016" -166424,USB-C Charging Cable,1,11.95,03/21/19 13:10,"508 Washington St, San Francisco, CA 94016" -166425,AAA Batteries (4-pack),1,2.99,03/03/19 13:10,"817 Hickory St, Boston, MA 02215" -166426,27in 4K Gaming Monitor,1,389.99,03/07/19 17:41,"427 11th St, New York City, NY 10001" -166427,Apple Airpods Headphones,1,150,03/25/19 16:09,"29 Lakeview St, Boston, MA 02215" -166428,Apple Airpods Headphones,1,150,03/16/19 00:14,"802 Chestnut St, Seattle, WA 98101" -166429,Lightning Charging Cable,1,14.95,03/29/19 22:10,"804 Washington St, San Francisco, CA 94016" -166430,Google Phone,1,600,03/31/19 12:05,"994 Pine St, Los Angeles, CA 90001" -166430,USB-C Charging Cable,1,11.95,03/31/19 12:05,"994 Pine St, Los Angeles, CA 90001" -166431,Vareebadd Phone,1,400,03/12/19 08:46,"940 9th St, Dallas, TX 75001" -166432,Wired Headphones,1,11.99,03/15/19 23:21,"990 Elm St, San Francisco, CA 94016" -166433,Apple Airpods Headphones,1,150,03/06/19 12:04,"614 10th St, Austin, TX 73301" -166434,Apple Airpods Headphones,1,150,03/17/19 17:13,"586 11th St, New York City, NY 10001" -166435,Wired Headphones,1,11.99,03/13/19 15:45,"268 Dogwood St, Austin, TX 73301" -166436,Lightning Charging Cable,2,14.95,03/13/19 12:40,"168 Adams St, Portland, OR 97035" -166437,Lightning Charging Cable,1,14.95,03/07/19 12:30,"464 Adams St, Los Angeles, CA 90001" -166438,Wired Headphones,2,11.99,03/30/19 20:42,"223 Maple St, Austin, TX 73301" -166439,USB-C Charging Cable,3,11.95,03/23/19 12:31,"898 River St, Atlanta, GA 30301" -166440,USB-C Charging Cable,1,11.95,03/01/19 19:57,"22 Hill St, Portland, OR 97035" -166441,Apple Airpods Headphones,1,150,03/13/19 08:09,"99 7th St, San Francisco, CA 94016" -166442,AAA Batteries (4-pack),1,2.99,03/10/19 17:46,"620 2nd St, Boston, MA 02215" -166443,27in FHD Monitor,1,149.99,03/25/19 10:55,"784 Willow St, Dallas, TX 75001" -166444,20in Monitor,1,109.99,03/23/19 09:48,"103 Wilson St, Portland, OR 97035" -166445,27in 4K Gaming Monitor,1,389.99,03/23/19 12:47,"439 West St, Los Angeles, CA 90001" -166446,LG Washing Machine,1,600.0,03/14/19 15:46,"142 Sunset St, San Francisco, CA 94016" -166447,AAA Batteries (4-pack),3,2.99,03/17/19 19:01,"356 Johnson St, New York City, NY 10001" -166448,Wired Headphones,1,11.99,03/17/19 20:12,"153 Jefferson St, San Francisco, CA 94016" -166448,Lightning Charging Cable,1,14.95,03/17/19 20:12,"153 Jefferson St, San Francisco, CA 94016" -166449,Wired Headphones,1,11.99,03/30/19 09:16,"403 13th St, New York City, NY 10001" -166450,Lightning Charging Cable,1,14.95,03/15/19 02:03,"425 Wilson St, Dallas, TX 75001" -166451,USB-C Charging Cable,1,11.95,03/15/19 21:25,"372 North St, Austin, TX 73301" -166452,USB-C Charging Cable,2,11.95,03/11/19 15:12,"754 Meadow St, New York City, NY 10001" -166453,27in 4K Gaming Monitor,1,389.99,03/08/19 14:05,"806 Jefferson St, Boston, MA 02215" -166454,AA Batteries (4-pack),1,3.84,03/29/19 01:25,"316 12th St, Los Angeles, CA 90001" -166455,Lightning Charging Cable,1,14.95,03/24/19 12:26,"164 Main St, San Francisco, CA 94016" -166456,27in FHD Monitor,1,149.99,03/25/19 08:59,"924 Chestnut St, Boston, MA 02215" -166457,Wired Headphones,1,11.99,03/03/19 10:06,"792 Lakeview St, Los Angeles, CA 90001" -166458,ThinkPad Laptop,1,999.99,03/25/19 00:02,"434 Lincoln St, Los Angeles, CA 90001" -166459,Lightning Charging Cable,1,14.95,03/07/19 12:12,"322 Hill St, Dallas, TX 75001" -166460,AAA Batteries (4-pack),4,2.99,03/11/19 20:05,"275 Madison St, New York City, NY 10001" -166461,Vareebadd Phone,1,400,03/11/19 14:45,"332 Spruce St, Boston, MA 02215" -166462,Lightning Charging Cable,1,14.95,03/12/19 14:20,"670 Main St, Austin, TX 73301" -166463,Wired Headphones,1,11.99,03/22/19 12:13,"275 Ridge St, Boston, MA 02215" -166464,AAA Batteries (4-pack),2,2.99,03/28/19 20:23,"478 Cedar St, San Francisco, CA 94016" -166465,Apple Airpods Headphones,1,150,03/03/19 16:48,"306 Meadow St, Boston, MA 02215" -166466,AAA Batteries (4-pack),1,2.99,03/26/19 21:36,"347 Park St, Los Angeles, CA 90001" -166467,iPhone,1,700,03/13/19 15:02,"530 Maple St, San Francisco, CA 94016" -166468,20in Monitor,1,109.99,03/01/19 21:20,"313 River St, Portland, ME 04101" -166469,Wired Headphones,1,11.99,03/30/19 20:43,"40 Johnson St, Los Angeles, CA 90001" -166470,Vareebadd Phone,1,400,03/21/19 15:02,"986 Washington St, Atlanta, GA 30301" -166471,Google Phone,1,600,03/09/19 19:21,"301 North St, San Francisco, CA 94016" -166472,Bose SoundSport Headphones,1,99.99,03/12/19 23:38,"307 Highland St, San Francisco, CA 94016" -166473,27in 4K Gaming Monitor,1,389.99,03/13/19 17:37,"557 Highland St, New York City, NY 10001" -166474,Lightning Charging Cable,1,14.95,03/02/19 20:19,"201 Lakeview St, San Francisco, CA 94016" -166475,ThinkPad Laptop,1,999.99,03/19/19 10:03,"432 2nd St, San Francisco, CA 94016" -166476,27in FHD Monitor,1,149.99,03/03/19 16:01,"437 1st St, Austin, TX 73301" -166477,Macbook Pro Laptop,1,1700,03/05/19 20:28,"424 Hickory St, Los Angeles, CA 90001" -166478,Macbook Pro Laptop,1,1700,03/27/19 20:11,"506 8th St, San Francisco, CA 94016" -166479,Lightning Charging Cable,1,14.95,03/31/19 09:24,"112 Jackson St, Atlanta, GA 30301" -166480,USB-C Charging Cable,1,11.95,03/07/19 10:07,"451 Hill St, San Francisco, CA 94016" -166481,Bose SoundSport Headphones,1,99.99,03/23/19 16:33,"216 Ridge St, San Francisco, CA 94016" -166482,AAA Batteries (4-pack),2,2.99,03/06/19 15:20,"928 Willow St, San Francisco, CA 94016" -166483,USB-C Charging Cable,1,11.95,03/15/19 03:51,"875 10th St, San Francisco, CA 94016" -166484,34in Ultrawide Monitor,1,379.99,03/29/19 09:02,"761 Cedar St, Atlanta, GA 30301" -166485,Macbook Pro Laptop,1,1700,03/12/19 10:39,"552 Church St, Los Angeles, CA 90001" -166486,Bose SoundSport Headphones,1,99.99,03/03/19 14:21,"951 Sunset St, Portland, OR 97035" -166487,Macbook Pro Laptop,1,1700,03/05/19 14:38,"724 Dogwood St, Portland, OR 97035" -166488,USB-C Charging Cable,1,11.95,03/26/19 09:50,"361 Dogwood St, Los Angeles, CA 90001" -166489,Apple Airpods Headphones,1,150,03/29/19 13:06,"322 Spruce St, Atlanta, GA 30301" -166490,27in FHD Monitor,1,149.99,03/09/19 09:46,"100 8th St, Los Angeles, CA 90001" -166491,Bose SoundSport Headphones,1,99.99,03/28/19 14:05,"605 River St, Dallas, TX 75001" -166492,27in FHD Monitor,1,149.99,03/28/19 20:15,"781 10th St, San Francisco, CA 94016" -166493,Flatscreen TV,1,300,03/20/19 13:51,"430 Jefferson St, Austin, TX 73301" -166494,Wired Headphones,1,11.99,03/15/19 12:54,"941 Sunset St, San Francisco, CA 94016" -166495,Lightning Charging Cable,1,14.95,03/16/19 08:32,"286 Lakeview St, Portland, OR 97035" -166496,AAA Batteries (4-pack),2,2.99,03/15/19 11:46,"268 8th St, San Francisco, CA 94016" -166497,Lightning Charging Cable,1,14.95,03/14/19 14:00,"399 Main St, San Francisco, CA 94016" -166498,27in FHD Monitor,1,149.99,03/14/19 18:28,"743 Cherry St, San Francisco, CA 94016" -166499,AAA Batteries (4-pack),1,2.99,03/01/19 13:50,"809 9th St, Austin, TX 73301" -166500,Lightning Charging Cable,1,14.95,03/05/19 18:47,"816 Church St, Dallas, TX 75001" -166501,Wired Headphones,1,11.99,03/21/19 08:11,"948 South St, Austin, TX 73301" -166502,27in FHD Monitor,1,149.99,03/21/19 13:45,"764 14th St, Los Angeles, CA 90001" -166503,Lightning Charging Cable,1,14.95,03/10/19 08:45,"407 6th St, New York City, NY 10001" -166504,20in Monitor,1,109.99,03/07/19 19:59,"81 8th St, Seattle, WA 98101" -166505,Apple Airpods Headphones,1,150,03/19/19 12:13,"415 Lakeview St, New York City, NY 10001" -166506,AA Batteries (4-pack),2,3.84,03/22/19 08:17,"96 Ridge St, Seattle, WA 98101" -166507,Wired Headphones,1,11.99,03/28/19 19:26,"707 Maple St, Los Angeles, CA 90001" -166508,Bose SoundSport Headphones,1,99.99,03/30/19 20:30,"324 South St, Atlanta, GA 30301" -166509,20in Monitor,1,109.99,03/06/19 17:39,"400 Park St, Austin, TX 73301" -166510,20in Monitor,1,109.99,03/15/19 23:18,"45 Hickory St, New York City, NY 10001" -166511,Wired Headphones,2,11.99,03/16/19 19:58,"246 Jefferson St, Atlanta, GA 30301" -166512,20in Monitor,1,109.99,03/17/19 22:17,"560 Lakeview St, Boston, MA 02215" -166513,AA Batteries (4-pack),1,3.84,03/07/19 23:37,"266 Ridge St, New York City, NY 10001" -166514,27in 4K Gaming Monitor,1,389.99,03/12/19 11:10,"830 Highland St, San Francisco, CA 94016" -166515,Wired Headphones,1,11.99,03/07/19 00:52,"332 West St, Los Angeles, CA 90001" -166516,34in Ultrawide Monitor,1,379.99,03/05/19 20:38,"195 Hickory St, New York City, NY 10001" -166517,Bose SoundSport Headphones,1,99.99,03/22/19 15:28,"352 Adams St, New York City, NY 10001" -166518,Macbook Pro Laptop,1,1700,03/26/19 15:53,"177 Sunset St, Austin, TX 73301" -166519,34in Ultrawide Monitor,1,379.99,03/13/19 12:44,"219 Church St, Seattle, WA 98101" -166520,USB-C Charging Cable,1,11.95,03/06/19 17:51,"891 Main St, San Francisco, CA 94016" -166521,Flatscreen TV,1,300,03/03/19 15:43,"642 Pine St, Atlanta, GA 30301" -166522,Lightning Charging Cable,1,14.95,03/21/19 08:10,"10 Walnut St, Boston, MA 02215" -166523,iPhone,1,700,03/13/19 23:27,"582 6th St, Boston, MA 02215" -166524,AAA Batteries (4-pack),2,2.99,03/10/19 13:51,"494 Spruce St, Los Angeles, CA 90001" -166525,Macbook Pro Laptop,1,1700,03/27/19 01:23,"501 Church St, New York City, NY 10001" -166526,USB-C Charging Cable,1,11.95,03/26/19 12:19,"122 Cherry St, Los Angeles, CA 90001" -166527,Bose SoundSport Headphones,1,99.99,03/19/19 09:34,"137 Wilson St, Boston, MA 02215" -166528,Apple Airpods Headphones,1,150,03/10/19 06:14,"393 North St, Portland, OR 97035" -166529,Bose SoundSport Headphones,1,99.99,03/22/19 07:32,"102 Park St, Portland, OR 97035" -166530,AAA Batteries (4-pack),2,2.99,03/03/19 00:01,"475 Madison St, Boston, MA 02215" -166531,27in FHD Monitor,1,149.99,03/29/19 09:12,"322 Highland St, New York City, NY 10001" -166532,Wired Headphones,1,11.99,03/05/19 11:28,"684 Dogwood St, Dallas, TX 75001" -166533,AAA Batteries (4-pack),1,2.99,03/26/19 10:07,"167 13th St, Los Angeles, CA 90001" -166534,Lightning Charging Cable,1,14.95,03/13/19 12:36,"913 4th St, San Francisco, CA 94016" -166535,AAA Batteries (4-pack),1,2.99,03/13/19 15:53,"672 9th St, San Francisco, CA 94016" -166536,USB-C Charging Cable,1,11.95,03/21/19 18:42,"833 West St, San Francisco, CA 94016" -166537,27in 4K Gaming Monitor,1,389.99,03/15/19 01:15,"116 Church St, Seattle, WA 98101" -166538,USB-C Charging Cable,1,11.95,03/29/19 06:27,"687 West St, Boston, MA 02215" -166539,Wired Headphones,2,11.99,03/19/19 21:01,"430 Jackson St, Austin, TX 73301" -166540,iPhone,1,700,03/11/19 21:07,"164 West St, Portland, OR 97035" -166541,USB-C Charging Cable,1,11.95,03/17/19 19:37,"868 Adams St, Atlanta, GA 30301" -166542,27in FHD Monitor,1,149.99,03/09/19 03:01,"130 13th St, New York City, NY 10001" -166543,AAA Batteries (4-pack),1,2.99,03/06/19 13:27,"56 Johnson St, Los Angeles, CA 90001" -166544,Lightning Charging Cable,1,14.95,03/28/19 06:37,"45 Chestnut St, Atlanta, GA 30301" -166545,27in FHD Monitor,1,149.99,03/30/19 13:09,"49 Lake St, Dallas, TX 75001" -166546,Bose SoundSport Headphones,1,99.99,03/03/19 15:15,"517 Meadow St, Boston, MA 02215" -166547,Lightning Charging Cable,1,14.95,03/10/19 22:02,"399 Washington St, Atlanta, GA 30301" -166548,Apple Airpods Headphones,1,150,03/16/19 12:19,"873 Cedar St, Austin, TX 73301" -166549,Bose SoundSport Headphones,1,99.99,03/07/19 20:13,"248 7th St, San Francisco, CA 94016" -166550,Macbook Pro Laptop,1,1700,03/21/19 10:16,"407 Washington St, Portland, OR 97035" -166551,Apple Airpods Headphones,1,150,03/08/19 10:20,"709 13th St, New York City, NY 10001" -166552,27in 4K Gaming Monitor,1,389.99,03/21/19 14:19,"840 1st St, San Francisco, CA 94016" -166553,USB-C Charging Cable,1,11.95,03/25/19 22:07,"501 Church St, San Francisco, CA 94016" -166554,USB-C Charging Cable,1,11.95,03/14/19 18:09,"933 Hill St, Seattle, WA 98101" -166555,Vareebadd Phone,1,400,03/03/19 13:46,"780 West St, San Francisco, CA 94016" -166556,Wired Headphones,1,11.99,03/22/19 23:49,"227 Hill St, Los Angeles, CA 90001" -166557,iPhone,1,700,03/13/19 18:05,"303 10th St, Seattle, WA 98101" -166558,Flatscreen TV,1,300,03/20/19 10:04,"921 Wilson St, Seattle, WA 98101" -166559,Google Phone,1,600,03/05/19 23:16,"366 West St, Dallas, TX 75001" -166560,USB-C Charging Cable,1,11.95,03/15/19 20:54,"882 Park St, Boston, MA 02215" -166561,Google Phone,1,600,03/18/19 22:11,"584 13th St, Boston, MA 02215" -166562,AA Batteries (4-pack),1,3.84,03/22/19 10:44,"947 Elm St, New York City, NY 10001" -166563,AA Batteries (4-pack),1,3.84,03/24/19 09:15,"604 Cherry St, Atlanta, GA 30301" -166564,Vareebadd Phone,1,400,03/27/19 13:34,"405 South St, Boston, MA 02215" -166565,AA Batteries (4-pack),2,3.84,03/07/19 18:11,"418 Walnut St, Atlanta, GA 30301" -166566,AA Batteries (4-pack),1,3.84,03/09/19 15:52,"613 Ridge St, Seattle, WA 98101" -166567,34in Ultrawide Monitor,1,379.99,04/01/19 00:12,"937 Cedar St, New York City, NY 10001" -166568,Apple Airpods Headphones,1,150,03/15/19 09:28,"518 4th St, San Francisco, CA 94016" -166569,Lightning Charging Cable,1,14.95,03/10/19 13:56,"793 Ridge St, Seattle, WA 98101" -166570,AAA Batteries (4-pack),1,2.99,03/28/19 06:13,"585 8th St, San Francisco, CA 94016" -166571,AAA Batteries (4-pack),1,2.99,03/26/19 11:51,"153 9th St, Atlanta, GA 30301" -166572,Apple Airpods Headphones,1,150,03/02/19 03:57,"971 West St, San Francisco, CA 94016" -166573,AA Batteries (4-pack),1,3.84,03/15/19 12:03,"901 10th St, San Francisco, CA 94016" -166574,27in 4K Gaming Monitor,1,389.99,03/21/19 07:30,"263 River St, San Francisco, CA 94016" -166575,Lightning Charging Cable,1,14.95,03/21/19 20:27,"11 13th St, New York City, NY 10001" -166576,AAA Batteries (4-pack),4,2.99,03/03/19 11:24,"531 Cedar St, Dallas, TX 75001" -166577,Lightning Charging Cable,1,14.95,03/31/19 07:45,"468 Meadow St, San Francisco, CA 94016" -166578,Bose SoundSport Headphones,1,99.99,03/29/19 18:36,"561 4th St, San Francisco, CA 94016" -166579,USB-C Charging Cable,1,11.95,03/16/19 12:21,"343 Madison St, Los Angeles, CA 90001" -166580,27in FHD Monitor,1,149.99,03/13/19 20:21,"161 13th St, Atlanta, GA 30301" -166581,Lightning Charging Cable,1,14.95,03/05/19 18:31,"471 Walnut St, New York City, NY 10001" -166582,Vareebadd Phone,1,400,03/23/19 20:02,"905 Highland St, Dallas, TX 75001" -166583,Wired Headphones,1,11.99,03/25/19 21:11,"822 7th St, Austin, TX 73301" -166584,27in 4K Gaming Monitor,1,389.99,03/10/19 13:48,"420 14th St, San Francisco, CA 94016" -166585,AAA Batteries (4-pack),3,2.99,03/30/19 16:53,"304 7th St, Portland, OR 97035" -166586,Wired Headphones,1,11.99,03/02/19 18:47,"595 Forest St, San Francisco, CA 94016" -166587,Apple Airpods Headphones,1,150,03/14/19 22:57,"536 Cherry St, San Francisco, CA 94016" -166588,Bose SoundSport Headphones,1,99.99,03/19/19 06:06,"586 Pine St, San Francisco, CA 94016" -166589,AA Batteries (4-pack),1,3.84,03/20/19 15:19,"958 Elm St, Los Angeles, CA 90001" -166590,Lightning Charging Cable,1,14.95,03/04/19 19:49,"136 Wilson St, Seattle, WA 98101" -166591,Apple Airpods Headphones,1,150,03/04/19 19:14,"464 West St, Los Angeles, CA 90001" -166592,Lightning Charging Cable,1,14.95,03/11/19 18:21,"47 Chestnut St, Austin, TX 73301" -166593,AA Batteries (4-pack),1,3.84,03/05/19 12:23,"435 Washington St, Seattle, WA 98101" -166594,20in Monitor,1,109.99,03/20/19 17:03,"564 Lakeview St, New York City, NY 10001" -166595,Apple Airpods Headphones,1,150,03/31/19 20:40,"480 Pine St, San Francisco, CA 94016" -166595,Wired Headphones,3,11.99,03/31/19 20:40,"480 Pine St, San Francisco, CA 94016" -166596,Bose SoundSport Headphones,1,99.99,03/01/19 14:36,"130 Adams St, New York City, NY 10001" -166597,ThinkPad Laptop,1,999.99,03/19/19 20:37,"913 13th St, San Francisco, CA 94016" -166598,Wired Headphones,2,11.99,03/17/19 16:21,"444 5th St, New York City, NY 10001" -166599,AAA Batteries (4-pack),1,2.99,03/24/19 15:13,"956 Lake St, Dallas, TX 75001" -166600,34in Ultrawide Monitor,1,379.99,03/12/19 08:56,"532 Hickory St, Dallas, TX 75001" -166601,34in Ultrawide Monitor,1,379.99,03/29/19 16:21,"779 Hill St, Los Angeles, CA 90001" -166602,Lightning Charging Cable,1,14.95,03/10/19 12:20,"490 Hill St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -166603,Wired Headphones,1,11.99,03/29/19 11:20,"336 Adams St, San Francisco, CA 94016" -166604,USB-C Charging Cable,1,11.95,03/01/19 10:01,"475 Walnut St, New York City, NY 10001" -166605,Bose SoundSport Headphones,1,99.99,03/22/19 10:49,"370 Jackson St, Boston, MA 02215" -166606,AA Batteries (4-pack),1,3.84,03/27/19 08:50,"559 Hill St, Los Angeles, CA 90001" -166607,Wired Headphones,1,11.99,03/11/19 06:54,"469 Johnson St, Atlanta, GA 30301" -166608,Apple Airpods Headphones,1,150,03/22/19 09:09,"365 Jackson St, New York City, NY 10001" -166609,USB-C Charging Cable,1,11.95,03/10/19 12:30,"900 Main St, Atlanta, GA 30301" -166610,USB-C Charging Cable,1,11.95,03/22/19 11:57,"880 Cherry St, San Francisco, CA 94016" -166611,iPhone,1,700,03/29/19 12:25,"758 9th St, Seattle, WA 98101" -166612,USB-C Charging Cable,1,11.95,03/26/19 12:34,"700 Willow St, New York City, NY 10001" -166613,Bose SoundSport Headphones,1,99.99,03/13/19 14:07,"440 Lake St, Seattle, WA 98101" -166614,27in 4K Gaming Monitor,1,389.99,03/07/19 12:13,"501 Lincoln St, Portland, OR 97035" -166615,USB-C Charging Cable,1,11.95,03/25/19 19:29,"278 North St, Boston, MA 02215" -166616,USB-C Charging Cable,1,11.95,03/18/19 00:44,"34 Highland St, Atlanta, GA 30301" -166617,Bose SoundSport Headphones,1,99.99,03/29/19 17:23,"240 9th St, Los Angeles, CA 90001" -166618,34in Ultrawide Monitor,1,379.99,03/22/19 14:12,"490 Wilson St, Austin, TX 73301" -166619,Google Phone,1,600,03/31/19 11:51,"126 2nd St, Atlanta, GA 30301" -166620,Wired Headphones,1,11.99,03/13/19 02:36,"203 10th St, Los Angeles, CA 90001" -166621,Wired Headphones,1,11.99,03/19/19 09:01,"864 Lakeview St, New York City, NY 10001" -166622,USB-C Charging Cable,1,11.95,03/18/19 13:31,"721 Forest St, San Francisco, CA 94016" -166623,USB-C Charging Cable,1,11.95,03/04/19 11:08,"785 Sunset St, Boston, MA 02215" -166624,ThinkPad Laptop,1,999.99,03/23/19 13:29,"372 Chestnut St, New York City, NY 10001" -166625,Wired Headphones,1,11.99,03/06/19 15:16,"921 Forest St, New York City, NY 10001" -166626,Wired Headphones,1,11.99,03/15/19 13:37,"380 Meadow St, San Francisco, CA 94016" -166627,Bose SoundSport Headphones,1,99.99,03/18/19 08:21,"95 2nd St, New York City, NY 10001" -166628,AA Batteries (4-pack),1,3.84,03/15/19 07:57,"72 Johnson St, San Francisco, CA 94016" -166629,AA Batteries (4-pack),1,3.84,03/07/19 17:17,"576 Lincoln St, Los Angeles, CA 90001" -166630,AAA Batteries (4-pack),1,2.99,03/17/19 00:27,"688 9th St, Los Angeles, CA 90001" -166631,Bose SoundSport Headphones,1,99.99,03/01/19 16:33,"336 7th St, Dallas, TX 75001" -166632,Apple Airpods Headphones,1,150,03/26/19 21:16,"461 Park St, Boston, MA 02215" -166633,27in FHD Monitor,1,149.99,03/29/19 17:33,"477 Cedar St, New York City, NY 10001" -166634,Wired Headphones,1,11.99,03/03/19 11:40,"650 9th St, Dallas, TX 75001" -166635,AA Batteries (4-pack),1,3.84,03/21/19 14:27,"859 Jackson St, New York City, NY 10001" -166636,Lightning Charging Cable,1,14.95,03/17/19 14:41,"830 1st St, Portland, OR 97035" -166637,AA Batteries (4-pack),1,3.84,03/02/19 13:29,"332 Sunset St, Portland, ME 04101" -166638,27in 4K Gaming Monitor,1,389.99,03/22/19 15:38,"516 8th St, San Francisco, CA 94016" -166639,Wired Headphones,1,11.99,03/05/19 19:03,"782 Main St, Los Angeles, CA 90001" -166639,27in FHD Monitor,1,149.99,03/05/19 19:03,"782 Main St, Los Angeles, CA 90001" -166640,Wired Headphones,1,11.99,03/02/19 15:28,"563 Wilson St, Boston, MA 02215" -166641,USB-C Charging Cable,1,11.95,03/11/19 20:30,"24 2nd St, San Francisco, CA 94016" -166642,34in Ultrawide Monitor,1,379.99,03/22/19 13:55,"375 Lake St, Los Angeles, CA 90001" -166643,USB-C Charging Cable,1,11.95,03/24/19 01:57,"937 4th St, Los Angeles, CA 90001" -166644,AAA Batteries (4-pack),3,2.99,03/22/19 01:35,"115 Dogwood St, Austin, TX 73301" -166645,ThinkPad Laptop,1,999.99,03/19/19 10:02,"189 Sunset St, Los Angeles, CA 90001" -166645,Bose SoundSport Headphones,1,99.99,03/19/19 10:02,"189 Sunset St, Los Angeles, CA 90001" -166646,27in 4K Gaming Monitor,1,389.99,03/02/19 18:01,"883 West St, Seattle, WA 98101" -166647,USB-C Charging Cable,1,11.95,03/31/19 12:23,"639 10th St, Dallas, TX 75001" -166648,Bose SoundSport Headphones,1,99.99,03/18/19 11:09,"388 4th St, Austin, TX 73301" -166649,AA Batteries (4-pack),1,3.84,03/21/19 13:18,"806 Washington St, Portland, OR 97035" -166650,AAA Batteries (4-pack),1,2.99,03/31/19 21:32,"332 West St, San Francisco, CA 94016" -166651,27in FHD Monitor,1,149.99,03/28/19 01:26,"415 Hickory St, San Francisco, CA 94016" -166652,Bose SoundSport Headphones,1,99.99,03/12/19 20:59,"341 8th St, Portland, OR 97035" -166653,27in FHD Monitor,1,149.99,03/27/19 21:51,"798 8th St, New York City, NY 10001" -166654,27in 4K Gaming Monitor,1,389.99,03/01/19 06:13,"803 Madison St, Los Angeles, CA 90001" -166655,AAA Batteries (4-pack),1,2.99,03/19/19 12:16,"415 Hickory St, Dallas, TX 75001" -166656,Apple Airpods Headphones,1,150,03/16/19 07:42,"423 Wilson St, New York City, NY 10001" -166657,34in Ultrawide Monitor,1,379.99,03/19/19 08:50,"940 Willow St, Los Angeles, CA 90001" -166658,USB-C Charging Cable,1,11.95,03/05/19 14:01,"275 7th St, Seattle, WA 98101" -166659,27in FHD Monitor,1,149.99,03/04/19 10:13,"891 8th St, New York City, NY 10001" -166660,Apple Airpods Headphones,1,150,03/31/19 19:38,"469 Main St, New York City, NY 10001" -166661,AA Batteries (4-pack),1,3.84,03/01/19 09:32,"581 14th St, San Francisco, CA 94016" -166662,AA Batteries (4-pack),1,3.84,03/19/19 09:44,"357 10th St, Atlanta, GA 30301" -166663,Macbook Pro Laptop,1,1700,03/29/19 21:17,"411 Highland St, Los Angeles, CA 90001" -166664,AA Batteries (4-pack),1,3.84,03/22/19 20:00,"436 Meadow St, Los Angeles, CA 90001" -166665,Bose SoundSport Headphones,1,99.99,03/30/19 19:51,"271 Highland St, Portland, OR 97035" -166666,Lightning Charging Cable,1,14.95,03/18/19 20:16,"789 13th St, San Francisco, CA 94016" -166666,Apple Airpods Headphones,1,150,03/18/19 20:16,"789 13th St, San Francisco, CA 94016" -166667,AAA Batteries (4-pack),1,2.99,03/03/19 06:53,"249 8th St, Portland, OR 97035" -166668,Google Phone,1,600,03/10/19 21:22,"861 Jefferson St, Seattle, WA 98101" -166669,USB-C Charging Cable,1,11.95,03/12/19 22:07,"556 South St, Los Angeles, CA 90001" -166670,Lightning Charging Cable,1,14.95,03/06/19 19:04,"828 2nd St, San Francisco, CA 94016" -166671,Bose SoundSport Headphones,1,99.99,03/27/19 12:03,"894 11th St, Boston, MA 02215" -166672,Lightning Charging Cable,1,14.95,03/09/19 03:18,"415 14th St, Seattle, WA 98101" -166673,Lightning Charging Cable,1,14.95,03/19/19 19:15,"274 2nd St, Los Angeles, CA 90001" -166674,Lightning Charging Cable,1,14.95,03/23/19 19:59,"633 6th St, New York City, NY 10001" -166675,Lightning Charging Cable,1,14.95,03/20/19 14:03,"924 13th St, San Francisco, CA 94016" -166676,34in Ultrawide Monitor,1,379.99,03/07/19 10:27,"349 Wilson St, San Francisco, CA 94016" -166677,Lightning Charging Cable,1,14.95,03/13/19 19:02,"630 Madison St, Dallas, TX 75001" -166678,Flatscreen TV,1,300,03/20/19 12:15,"579 River St, Los Angeles, CA 90001" -166679,Wired Headphones,1,11.99,03/09/19 09:46,"218 Walnut St, San Francisco, CA 94016" -166680,27in 4K Gaming Monitor,1,389.99,03/20/19 21:30,"582 13th St, New York City, NY 10001" -166681,Wired Headphones,1,11.99,03/21/19 22:33,"511 13th St, Los Angeles, CA 90001" -166682,Flatscreen TV,1,300,03/04/19 08:53,"679 Lakeview St, Seattle, WA 98101" -166683,Apple Airpods Headphones,1,150,03/21/19 11:37,"125 4th St, San Francisco, CA 94016" -166684,AA Batteries (4-pack),2,3.84,03/29/19 10:15,"883 Lincoln St, Austin, TX 73301" -166685,Apple Airpods Headphones,1,150,03/22/19 02:05,"924 Hickory St, New York City, NY 10001" -166686,USB-C Charging Cable,1,11.95,03/08/19 14:50,"480 Maple St, Atlanta, GA 30301" -166687,Apple Airpods Headphones,1,150,03/28/19 21:13,"320 Hill St, Dallas, TX 75001" -166688,Bose SoundSport Headphones,1,99.99,03/18/19 16:25,"254 Maple St, Dallas, TX 75001" -166689,27in FHD Monitor,1,149.99,03/26/19 07:42,"841 10th St, Los Angeles, CA 90001" -166690,AA Batteries (4-pack),1,3.84,03/14/19 14:19,"376 Hill St, New York City, NY 10001" -166691,Wired Headphones,1,11.99,03/05/19 12:06,"372 14th St, Boston, MA 02215" -166692,20in Monitor,1,109.99,03/15/19 21:53,"423 Church St, San Francisco, CA 94016" -166693,Wired Headphones,1,11.99,03/07/19 17:37,"713 Maple St, San Francisco, CA 94016" -166694,Apple Airpods Headphones,1,150,03/10/19 13:43,"930 Sunset St, Austin, TX 73301" -166695,Lightning Charging Cable,1,14.95,03/23/19 23:15,"570 Forest St, San Francisco, CA 94016" -166696,AAA Batteries (4-pack),1,2.99,03/23/19 10:22,"93 Highland St, Los Angeles, CA 90001" -166697,USB-C Charging Cable,1,11.95,03/25/19 20:11,"200 West St, Atlanta, GA 30301" -166698,27in FHD Monitor,1,149.99,03/02/19 19:31,"839 14th St, Boston, MA 02215" -166699,AAA Batteries (4-pack),2,2.99,03/19/19 23:03,"297 Forest St, Los Angeles, CA 90001" -166700,iPhone,1,700,03/17/19 09:08,"682 4th St, Boston, MA 02215" -166701,Lightning Charging Cable,1,14.95,03/06/19 15:22,"365 Madison St, San Francisco, CA 94016" -166702,AAA Batteries (4-pack),1,2.99,03/15/19 17:27,"879 Wilson St, Atlanta, GA 30301" -166703,Lightning Charging Cable,1,14.95,03/24/19 00:16,"929 5th St, Los Angeles, CA 90001" -166704,34in Ultrawide Monitor,1,379.99,03/03/19 11:51,"550 Lincoln St, Seattle, WA 98101" -166705,AAA Batteries (4-pack),3,2.99,03/31/19 14:27,"154 Spruce St, Atlanta, GA 30301" -166706,Lightning Charging Cable,1,14.95,03/25/19 12:08,"376 11th St, Austin, TX 73301" -166707,ThinkPad Laptop,1,999.99,03/20/19 14:39,"719 Lake St, San Francisco, CA 94016" -166708,Apple Airpods Headphones,1,150,03/15/19 19:50,"393 Lakeview St, Dallas, TX 75001" -166709,LG Washing Machine,1,600.0,03/23/19 21:04,"271 Ridge St, New York City, NY 10001" -166710,Google Phone,1,600,03/11/19 17:56,"732 Main St, Atlanta, GA 30301" -166710,USB-C Charging Cable,1,11.95,03/11/19 17:56,"732 Main St, Atlanta, GA 30301" -166711,Bose SoundSport Headphones,1,99.99,03/23/19 17:43,"51 2nd St, New York City, NY 10001" -166712,Vareebadd Phone,1,400,03/16/19 18:48,"755 1st St, San Francisco, CA 94016" -166713,USB-C Charging Cable,1,11.95,03/08/19 11:18,"141 North St, Atlanta, GA 30301" -166714,AAA Batteries (4-pack),1,2.99,03/14/19 16:38,"7 Sunset St, Los Angeles, CA 90001" -166715,USB-C Charging Cable,1,11.95,03/31/19 19:18,"865 2nd St, Boston, MA 02215" -166716,Wired Headphones,1,11.99,03/06/19 11:42,"55 Park St, New York City, NY 10001" -166717,USB-C Charging Cable,1,11.95,03/27/19 09:05,"601 5th St, Portland, OR 97035" -166718,Bose SoundSport Headphones,1,99.99,03/05/19 10:26,"223 7th St, San Francisco, CA 94016" -166719,AAA Batteries (4-pack),1,2.99,03/27/19 10:56,"845 6th St, Seattle, WA 98101" -166720,Apple Airpods Headphones,1,150,03/11/19 22:01,"117 Jackson St, Seattle, WA 98101" -166721,Google Phone,1,600,03/13/19 13:38,"209 Church St, Dallas, TX 75001" -166722,Lightning Charging Cable,1,14.95,03/10/19 18:58,"895 Washington St, Dallas, TX 75001" -166723,AA Batteries (4-pack),1,3.84,03/30/19 13:17,"390 14th St, Atlanta, GA 30301" -166724,Vareebadd Phone,1,400,03/02/19 16:45,"673 Forest St, Atlanta, GA 30301" -166725,iPhone,1,700,03/09/19 15:07,"907 13th St, Los Angeles, CA 90001" -166726,Macbook Pro Laptop,1,1700,03/07/19 20:19,"573 7th St, Seattle, WA 98101" -166727,34in Ultrawide Monitor,1,379.99,03/23/19 19:14,"148 Dogwood St, Seattle, WA 98101" -166728,Lightning Charging Cable,1,14.95,03/16/19 19:59,"578 4th St, Los Angeles, CA 90001" -166729,Wired Headphones,1,11.99,03/02/19 00:52,"691 Madison St, San Francisco, CA 94016" -166730,ThinkPad Laptop,1,999.99,03/10/19 12:16,"20 14th St, Portland, OR 97035" -166731,Apple Airpods Headphones,1,150,03/24/19 21:00,"73 2nd St, San Francisco, CA 94016" -166732,Macbook Pro Laptop,1,1700,03/02/19 18:03,"895 Jefferson St, Los Angeles, CA 90001" -166733,USB-C Charging Cable,1,11.95,03/05/19 12:36,"558 Hickory St, New York City, NY 10001" -166734,Wired Headphones,1,11.99,03/31/19 08:22,"44 2nd St, Atlanta, GA 30301" -166735,Wired Headphones,1,11.99,03/12/19 07:21,"193 Center St, San Francisco, CA 94016" -166736,Lightning Charging Cable,1,14.95,03/09/19 00:00,"104 Cedar St, Los Angeles, CA 90001" -166737,iPhone,1,700,03/14/19 14:31,"625 Cedar St, Portland, OR 97035" -166737,Lightning Charging Cable,1,14.95,03/14/19 14:31,"625 Cedar St, Portland, OR 97035" -166738,Wired Headphones,1,11.99,03/23/19 10:31,"209 2nd St, Los Angeles, CA 90001" -166739,Lightning Charging Cable,1,14.95,03/05/19 09:12,"659 Main St, San Francisco, CA 94016" -166740,iPhone,1,700,03/04/19 21:36,"399 Sunset St, San Francisco, CA 94016" -166740,AAA Batteries (4-pack),3,2.99,03/04/19 21:36,"399 Sunset St, San Francisco, CA 94016" -166741,Lightning Charging Cable,1,14.95,03/24/19 09:04,"433 7th St, Austin, TX 73301" -166742,AAA Batteries (4-pack),1,2.99,03/02/19 19:59,"856 Elm St, San Francisco, CA 94016" -166743,AA Batteries (4-pack),1,3.84,03/09/19 15:00,"300 4th St, Los Angeles, CA 90001" -166744,USB-C Charging Cable,1,11.95,03/15/19 10:41,"60 4th St, San Francisco, CA 94016" -166745,AAA Batteries (4-pack),1,2.99,03/17/19 07:28,"258 Hill St, San Francisco, CA 94016" -166745,AA Batteries (4-pack),1,3.84,03/17/19 07:28,"258 Hill St, San Francisco, CA 94016" -166746,Apple Airpods Headphones,1,150,03/14/19 12:49,"180 Church St, Los Angeles, CA 90001" -166747,AA Batteries (4-pack),1,3.84,03/17/19 22:36,"908 12th St, San Francisco, CA 94016" -166748,AA Batteries (4-pack),2,3.84,03/29/19 20:43,"969 Main St, Portland, OR 97035" -166749,Bose SoundSport Headphones,1,99.99,03/08/19 18:33,"330 Lakeview St, Boston, MA 02215" -166750,Bose SoundSport Headphones,1,99.99,03/27/19 20:44,"694 1st St, Los Angeles, CA 90001" -166751,iPhone,1,700,03/09/19 17:13,"988 Hill St, Austin, TX 73301" -166752,AAA Batteries (4-pack),1,2.99,03/09/19 15:02,"488 Adams St, New York City, NY 10001" -166752,Wired Headphones,1,11.99,03/09/19 15:02,"488 Adams St, New York City, NY 10001" -166753,Bose SoundSport Headphones,1,99.99,03/29/19 16:35,"248 8th St, San Francisco, CA 94016" -166754,AA Batteries (4-pack),1,3.84,03/13/19 16:34,"376 Lincoln St, Los Angeles, CA 90001" -166755,Apple Airpods Headphones,1,150,03/24/19 11:10,"64 North St, Atlanta, GA 30301" -166756,AA Batteries (4-pack),2,3.84,03/30/19 14:00,"684 Lake St, Austin, TX 73301" -166757,AA Batteries (4-pack),1,3.84,03/08/19 00:00,"637 Pine St, Portland, OR 97035" -166758,AA Batteries (4-pack),1,3.84,03/11/19 14:01,"537 South St, Seattle, WA 98101" -166759,AA Batteries (4-pack),1,3.84,03/25/19 19:56,"83 Center St, Los Angeles, CA 90001" -166760,27in 4K Gaming Monitor,1,389.99,03/09/19 18:13,"848 Highland St, Boston, MA 02215" -166761,AAA Batteries (4-pack),1,2.99,03/29/19 19:37,"711 11th St, Austin, TX 73301" -166762,AA Batteries (4-pack),1,3.84,03/16/19 17:17,"507 8th St, Austin, TX 73301" -166763,USB-C Charging Cable,1,11.95,03/02/19 11:20,"870 Hickory St, Portland, OR 97035" -166764,20in Monitor,1,109.99,03/10/19 14:20,"580 5th St, Los Angeles, CA 90001" -166765,USB-C Charging Cable,1,11.95,03/10/19 11:39,"897 Church St, New York City, NY 10001" -166766,Bose SoundSport Headphones,1,99.99,03/08/19 10:48,"6 Willow St, San Francisco, CA 94016" -166767,Apple Airpods Headphones,1,150,03/10/19 11:14,"329 Center St, Los Angeles, CA 90001" -166768,Google Phone,1,600,03/01/19 16:40,"440 Adams St, Portland, OR 97035" -166769,USB-C Charging Cable,1,11.95,03/28/19 21:09,"894 Cherry St, Los Angeles, CA 90001" -166770,iPhone,1,700,03/04/19 20:17,"430 Chestnut St, Boston, MA 02215" -166771,27in FHD Monitor,1,149.99,03/17/19 22:45,"263 Walnut St, San Francisco, CA 94016" -166772,27in FHD Monitor,1,149.99,03/26/19 20:11,"950 Elm St, San Francisco, CA 94016" -166773,AA Batteries (4-pack),1,3.84,03/06/19 13:22,"443 Highland St, Los Angeles, CA 90001" -166774,Lightning Charging Cable,1,14.95,03/18/19 23:40,"59 Johnson St, Austin, TX 73301" -166775,Lightning Charging Cable,1,14.95,03/01/19 20:30,"909 Highland St, Seattle, WA 98101" -166776,iPhone,1,700,03/20/19 15:25,"753 Willow St, Austin, TX 73301" -166776,Lightning Charging Cable,1,14.95,03/20/19 15:25,"753 Willow St, Austin, TX 73301" -166777,Wired Headphones,1,11.99,03/28/19 06:41,"180 Spruce St, San Francisco, CA 94016" -166778,iPhone,1,700,03/18/19 11:26,"28 12th St, Portland, OR 97035" -166779,USB-C Charging Cable,1,11.95,03/07/19 13:07,"409 Johnson St, Boston, MA 02215" -166780,27in 4K Gaming Monitor,1,389.99,03/28/19 19:32,"348 Adams St, San Francisco, CA 94016" -166781,Apple Airpods Headphones,1,150,03/30/19 09:58,"448 Elm St, New York City, NY 10001" -166782,Wired Headphones,1,11.99,03/01/19 10:40,"633 West St, Atlanta, GA 30301" -166783,Bose SoundSport Headphones,1,99.99,03/05/19 19:32,"18 Walnut St, Los Angeles, CA 90001" -166784,Wired Headphones,1,11.99,03/13/19 00:46,"139 Johnson St, Boston, MA 02215" -166785,Lightning Charging Cable,1,14.95,03/03/19 18:22,"690 4th St, Atlanta, GA 30301" -166786,AA Batteries (4-pack),1,3.84,03/28/19 22:35,"740 South St, San Francisco, CA 94016" -166787,USB-C Charging Cable,1,11.95,03/09/19 18:24,"651 Sunset St, San Francisco, CA 94016" -166788,Wired Headphones,1,11.99,03/15/19 20:30,"998 Lake St, Dallas, TX 75001" -166789,Lightning Charging Cable,1,14.95,03/12/19 07:44,"965 Highland St, Austin, TX 73301" -166790,Flatscreen TV,1,300,03/25/19 16:03,"437 7th St, Seattle, WA 98101" -166791,AA Batteries (4-pack),6,3.84,03/30/19 08:50,"118 Madison St, Dallas, TX 75001" -166792,34in Ultrawide Monitor,1,379.99,03/24/19 18:16,"60 Madison St, Seattle, WA 98101" -166793,Lightning Charging Cable,1,14.95,03/01/19 14:08,"117 Center St, New York City, NY 10001" -166794,iPhone,1,700,03/09/19 14:48,"893 Adams St, Los Angeles, CA 90001" -166794,Lightning Charging Cable,2,14.95,03/09/19 14:48,"893 Adams St, Los Angeles, CA 90001" -166795,Wired Headphones,1,11.99,03/31/19 12:23,"373 Park St, Boston, MA 02215" -166796,Bose SoundSport Headphones,1,99.99,03/14/19 16:04,"879 6th St, Seattle, WA 98101" -166797,Wired Headphones,1,11.99,03/20/19 22:35,"487 Lake St, Portland, ME 04101" -166798,AAA Batteries (4-pack),1,2.99,03/02/19 13:04,"456 South St, Los Angeles, CA 90001" -166799,Apple Airpods Headphones,1,150,03/08/19 15:21,"448 Adams St, Seattle, WA 98101" -166800,Lightning Charging Cable,1,14.95,03/26/19 11:52,"750 River St, Dallas, TX 75001" -166801,AAA Batteries (4-pack),1,2.99,03/29/19 14:21,"352 2nd St, Austin, TX 73301" -166802,27in FHD Monitor,1,149.99,03/30/19 16:08,"476 5th St, Austin, TX 73301" -166803,AAA Batteries (4-pack),1,2.99,03/07/19 17:19,"712 Hickory St, Dallas, TX 75001" -166804,Lightning Charging Cable,1,14.95,03/02/19 10:39,"789 Willow St, Portland, OR 97035" -166805,AAA Batteries (4-pack),1,2.99,03/27/19 16:40,"996 West St, New York City, NY 10001" -166806,AA Batteries (4-pack),1,3.84,03/28/19 11:35,"103 Meadow St, Los Angeles, CA 90001" -166807,ThinkPad Laptop,1,999.99,03/08/19 09:51,"269 Spruce St, San Francisco, CA 94016" -166808,Lightning Charging Cable,1,14.95,03/17/19 07:32,"461 Walnut St, Seattle, WA 98101" -166809,Wired Headphones,1,11.99,03/06/19 16:05,"927 Willow St, San Francisco, CA 94016" -166810,Lightning Charging Cable,1,14.95,03/13/19 04:54,"434 Chestnut St, San Francisco, CA 94016" -166811,Apple Airpods Headphones,1,150,03/27/19 19:26,"757 Pine St, Los Angeles, CA 90001" -166812,27in 4K Gaming Monitor,1,389.99,03/01/19 18:01,"102 Chestnut St, Dallas, TX 75001" -166813,27in FHD Monitor,1,149.99,03/30/19 20:15,"961 Church St, New York City, NY 10001" -166814,Lightning Charging Cable,1,14.95,03/13/19 14:40,"210 11th St, Seattle, WA 98101" -166815,ThinkPad Laptop,1,999.99,03/08/19 12:32,"285 Pine St, San Francisco, CA 94016" -166816,Lightning Charging Cable,1,14.95,03/10/19 18:02,"867 10th St, Atlanta, GA 30301" -166817,iPhone,1,700,03/28/19 12:35,"782 13th St, San Francisco, CA 94016" -166818,Bose SoundSport Headphones,1,99.99,03/12/19 20:44,"24 Wilson St, Seattle, WA 98101" -166819,Lightning Charging Cable,1,14.95,03/25/19 13:43,"722 7th St, Seattle, WA 98101" -166820,Apple Airpods Headphones,1,150,03/16/19 01:09,"572 Hickory St, Boston, MA 02215" -166821,Wired Headphones,1,11.99,03/11/19 23:52,"804 River St, Boston, MA 02215" -166822,Apple Airpods Headphones,1,150,03/26/19 08:49,"398 Madison St, Seattle, WA 98101" -166823,AAA Batteries (4-pack),1,2.99,03/20/19 13:08,"151 South St, San Francisco, CA 94016" -166824,iPhone,1,700,03/25/19 12:54,"934 Johnson St, New York City, NY 10001" -166824,Apple Airpods Headphones,1,150,03/25/19 12:54,"934 Johnson St, New York City, NY 10001" -166825,ThinkPad Laptop,1,999.99,03/17/19 16:38,"470 West St, Los Angeles, CA 90001" -166826,USB-C Charging Cable,1,11.95,03/09/19 11:41,"366 8th St, New York City, NY 10001" -166827,AA Batteries (4-pack),2,3.84,03/08/19 12:53,"222 Center St, San Francisco, CA 94016" -166828,AA Batteries (4-pack),1,3.84,03/24/19 19:39,"147 Johnson St, San Francisco, CA 94016" -166829,Lightning Charging Cable,1,14.95,03/20/19 13:37,"182 Madison St, Dallas, TX 75001" -166830,27in 4K Gaming Monitor,1,389.99,03/12/19 15:36,"321 Hill St, New York City, NY 10001" -166831,Apple Airpods Headphones,1,150,03/13/19 19:42,"109 Lincoln St, New York City, NY 10001" -166832,Lightning Charging Cable,1,14.95,03/30/19 19:32,"202 Johnson St, Boston, MA 02215" -166833,Lightning Charging Cable,1,14.95,03/09/19 22:55,"744 Park St, Los Angeles, CA 90001" -166834,Apple Airpods Headphones,1,150,03/05/19 13:53,"224 Elm St, New York City, NY 10001" -166835,ThinkPad Laptop,1,999.99,03/17/19 11:43,"826 Sunset St, Dallas, TX 75001" -166836,Macbook Pro Laptop,1,1700,03/19/19 12:06,"848 West St, Boston, MA 02215" -166837,Apple Airpods Headphones,1,150,03/24/19 19:50,"181 Highland St, Seattle, WA 98101" -166838,Wired Headphones,1,11.99,03/18/19 22:46,"369 Church St, Los Angeles, CA 90001" -166839,Lightning Charging Cable,1,14.95,03/04/19 15:20,"483 10th St, New York City, NY 10001" -166840,27in FHD Monitor,1,149.99,03/15/19 23:19,"727 Meadow St, Dallas, TX 75001" -166841,Apple Airpods Headphones,1,150,03/09/19 12:56,"979 Dogwood St, San Francisco, CA 94016" -166842,27in 4K Gaming Monitor,1,389.99,03/12/19 17:35,"817 Ridge St, Atlanta, GA 30301" -166842,AA Batteries (4-pack),1,3.84,03/12/19 17:35,"817 Ridge St, Atlanta, GA 30301" -166843,AA Batteries (4-pack),1,3.84,03/01/19 15:43,"418 Willow St, Austin, TX 73301" -166844,AA Batteries (4-pack),1,3.84,03/05/19 10:28,"804 10th St, Los Angeles, CA 90001" -166845,USB-C Charging Cable,1,11.95,03/27/19 11:05,"820 Main St, San Francisco, CA 94016" -166846,AAA Batteries (4-pack),1,2.99,03/15/19 15:07,"526 Chestnut St, Dallas, TX 75001" -166847,Apple Airpods Headphones,1,150,03/14/19 17:59,"211 9th St, Boston, MA 02215" -166848,AA Batteries (4-pack),1,3.84,03/11/19 20:27,"902 Elm St, San Francisco, CA 94016" -166849,AA Batteries (4-pack),1,3.84,03/05/19 07:34,"96 Jackson St, Portland, OR 97035" -166850,AAA Batteries (4-pack),1,2.99,03/09/19 06:47,"876 River St, New York City, NY 10001" -166851,ThinkPad Laptop,1,999.99,03/20/19 08:18,"471 Lakeview St, Seattle, WA 98101" -166852,Wired Headphones,1,11.99,03/18/19 15:56,"149 Ridge St, Austin, TX 73301" -166853,34in Ultrawide Monitor,1,379.99,03/13/19 06:09,"384 River St, Seattle, WA 98101" -166854,20in Monitor,1,109.99,03/09/19 07:05,"284 10th St, San Francisco, CA 94016" -166855,34in Ultrawide Monitor,1,379.99,03/30/19 18:27,"782 7th St, San Francisco, CA 94016" -166856,34in Ultrawide Monitor,1,379.99,03/14/19 07:06,"908 Park St, Atlanta, GA 30301" -166857,AAA Batteries (4-pack),1,2.99,03/13/19 15:56,"713 Ridge St, San Francisco, CA 94016" -166858,Wired Headphones,1,11.99,03/21/19 07:36,"788 2nd St, Los Angeles, CA 90001" -166859,Lightning Charging Cable,1,14.95,03/08/19 22:05,"436 Johnson St, Seattle, WA 98101" -166860,27in FHD Monitor,1,149.99,03/10/19 20:02,"998 5th St, San Francisco, CA 94016" -166861,AA Batteries (4-pack),1,3.84,03/08/19 19:32,"465 Chestnut St, Boston, MA 02215" -166862,ThinkPad Laptop,1,999.99,03/06/19 20:13,"163 Hill St, Dallas, TX 75001" -166863,Lightning Charging Cable,1,14.95,03/28/19 15:29,"295 South St, Los Angeles, CA 90001" -166864,USB-C Charging Cable,1,11.95,03/24/19 08:00,"759 Sunset St, San Francisco, CA 94016" -166865,34in Ultrawide Monitor,1,379.99,03/01/19 08:46,"638 Dogwood St, Seattle, WA 98101" -166866,Flatscreen TV,1,300,03/25/19 20:16,"927 13th St, Seattle, WA 98101" -166867,Lightning Charging Cable,1,14.95,03/13/19 20:47,"381 River St, Seattle, WA 98101" -166868,34in Ultrawide Monitor,1,379.99,03/28/19 19:02,"916 Center St, San Francisco, CA 94016" -166869,Apple Airpods Headphones,1,150,03/23/19 23:06,"105 River St, Los Angeles, CA 90001" -166870,Google Phone,1,600,03/17/19 17:47,"494 13th St, New York City, NY 10001" -166871,LG Dryer,1,600.0,03/04/19 12:01,"793 Johnson St, Seattle, WA 98101" -166872,AAA Batteries (4-pack),1,2.99,03/04/19 05:46,"930 Dogwood St, Seattle, WA 98101" -166873,AAA Batteries (4-pack),1,2.99,03/30/19 18:41,"110 Washington St, Portland, OR 97035" -166874,USB-C Charging Cable,1,11.95,03/16/19 13:19,"73 Church St, Dallas, TX 75001" -166875,AA Batteries (4-pack),1,3.84,03/13/19 00:04,"918 6th St, Atlanta, GA 30301" -166876,AA Batteries (4-pack),1,3.84,03/05/19 11:20,"494 Lakeview St, Boston, MA 02215" -166877,Wired Headphones,1,11.99,03/09/19 16:09,"688 Jackson St, San Francisco, CA 94016" -166878,20in Monitor,1,109.99,03/21/19 10:02,"840 7th St, Dallas, TX 75001" -166878,USB-C Charging Cable,1,11.95,03/21/19 10:02,"840 7th St, Dallas, TX 75001" -166879,USB-C Charging Cable,1,11.95,03/11/19 02:54,"393 North St, San Francisco, CA 94016" -166880,27in FHD Monitor,1,149.99,03/22/19 15:28,"861 Main St, Atlanta, GA 30301" -166881,34in Ultrawide Monitor,1,379.99,03/07/19 15:44,"137 Center St, Los Angeles, CA 90001" -166882,Apple Airpods Headphones,1,150,03/08/19 00:29,"333 Maple St, Boston, MA 02215" -166883,Wired Headphones,1,11.99,03/07/19 14:37,"108 Meadow St, San Francisco, CA 94016" -166884,USB-C Charging Cable,1,11.95,03/10/19 16:38,"342 9th St, San Francisco, CA 94016" -166885,Lightning Charging Cable,1,14.95,03/16/19 12:22,"590 Pine St, San Francisco, CA 94016" -166886,USB-C Charging Cable,1,11.95,03/08/19 17:35,"32 West St, New York City, NY 10001" -166887,27in FHD Monitor,1,149.99,03/13/19 16:21,"532 Adams St, Dallas, TX 75001" -166888,AA Batteries (4-pack),1,3.84,03/17/19 21:07,"23 Maple St, Dallas, TX 75001" -166889,27in 4K Gaming Monitor,1,389.99,03/02/19 12:03,"809 Walnut St, Los Angeles, CA 90001" -166890,Macbook Pro Laptop,1,1700,03/27/19 20:07,"933 Walnut St, New York City, NY 10001" -166891,Bose SoundSport Headphones,1,99.99,03/02/19 09:42,"176 Forest St, New York City, NY 10001" -166892,34in Ultrawide Monitor,1,379.99,03/30/19 19:47,"853 Sunset St, Portland, OR 97035" -166893,AAA Batteries (4-pack),1,2.99,03/11/19 22:07,"367 West St, New York City, NY 10001" -166894,USB-C Charging Cable,1,11.95,03/15/19 20:30,"87 Jackson St, Austin, TX 73301" -166895,Google Phone,1,600,03/17/19 10:24,"22 Highland St, New York City, NY 10001" -166896,Lightning Charging Cable,1,14.95,03/29/19 08:49,"694 Church St, San Francisco, CA 94016" -166897,USB-C Charging Cable,1,11.95,03/09/19 20:49,"79 Spruce St, Boston, MA 02215" -166898,20in Monitor,1,109.99,03/03/19 15:26,"915 Main St, San Francisco, CA 94016" -166899,AAA Batteries (4-pack),1,2.99,03/15/19 18:48,"1 4th St, Seattle, WA 98101" -166900,27in 4K Gaming Monitor,1,389.99,03/12/19 21:24,"349 Willow St, San Francisco, CA 94016" -166901,USB-C Charging Cable,1,11.95,03/07/19 21:38,"153 Willow St, Seattle, WA 98101" -166902,Wired Headphones,1,11.99,03/20/19 21:18,"844 Highland St, San Francisco, CA 94016" -166903,Flatscreen TV,1,300,03/31/19 01:48,"402 Forest St, Boston, MA 02215" -166904,Wired Headphones,2,11.99,03/12/19 10:04,"654 Chestnut St, Seattle, WA 98101" -166905,AAA Batteries (4-pack),1,2.99,03/27/19 21:46,"610 Forest St, Los Angeles, CA 90001" -166906,27in FHD Monitor,1,149.99,03/19/19 12:07,"899 Chestnut St, San Francisco, CA 94016" -166907,ThinkPad Laptop,1,999.99,03/08/19 13:44,"271 Adams St, San Francisco, CA 94016" -166908,Bose SoundSport Headphones,1,99.99,03/16/19 14:17,"153 Park St, New York City, NY 10001" -166909,Macbook Pro Laptop,1,1700,03/18/19 18:50,"995 Wilson St, Boston, MA 02215" -166910,AA Batteries (4-pack),1,3.84,03/02/19 13:59,"673 Lakeview St, San Francisco, CA 94016" -166911,27in 4K Gaming Monitor,1,389.99,03/21/19 16:20,"964 Lake St, Dallas, TX 75001" -166912,Wired Headphones,1,11.99,03/06/19 10:57,"549 Maple St, Dallas, TX 75001" -166913,Macbook Pro Laptop,1,1700,03/21/19 20:32,"780 Hickory St, Los Angeles, CA 90001" -166914,Bose SoundSport Headphones,1,99.99,03/19/19 13:41,"264 Lincoln St, New York City, NY 10001" -166915,Wired Headphones,1,11.99,03/13/19 14:31,"431 Madison St, Atlanta, GA 30301" -166916,27in 4K Gaming Monitor,1,389.99,03/11/19 14:24,"647 Center St, San Francisco, CA 94016" -166917,Google Phone,1,600,03/15/19 12:44,"262 Maple St, Los Angeles, CA 90001" -166918,AA Batteries (4-pack),2,3.84,03/14/19 10:50,"226 Jackson St, Seattle, WA 98101" -166919,Wired Headphones,1,11.99,03/24/19 21:23,"130 Jackson St, San Francisco, CA 94016" -166920,Google Phone,1,600,03/03/19 16:44,"460 Jackson St, Boston, MA 02215" -166921,USB-C Charging Cable,1,11.95,03/24/19 10:47,"319 Willow St, Dallas, TX 75001" -166922,AA Batteries (4-pack),1,3.84,03/02/19 19:21,"73 Madison St, Los Angeles, CA 90001" -166923,AA Batteries (4-pack),1,3.84,03/31/19 17:07,"947 13th St, San Francisco, CA 94016" -166924,Apple Airpods Headphones,1,150,03/19/19 10:43,"314 Dogwood St, Atlanta, GA 30301" -166925,27in FHD Monitor,1,149.99,03/08/19 17:18,"453 Meadow St, Atlanta, GA 30301" -166926,AAA Batteries (4-pack),1,2.99,03/13/19 13:55,"606 Lakeview St, San Francisco, CA 94016" -166927,Macbook Pro Laptop,1,1700,03/20/19 18:05,"994 Lincoln St, Seattle, WA 98101" -166928,Lightning Charging Cable,1,14.95,03/26/19 21:45,"857 2nd St, Los Angeles, CA 90001" -166929,Wired Headphones,1,11.99,03/18/19 14:37,"792 Elm St, San Francisco, CA 94016" -166930,AAA Batteries (4-pack),2,2.99,03/25/19 00:16,"332 Jackson St, Dallas, TX 75001" -166931,USB-C Charging Cable,1,11.95,03/01/19 15:44,"543 Meadow St, San Francisco, CA 94016" -166932,AAA Batteries (4-pack),1,2.99,03/02/19 19:46,"168 10th St, Portland, OR 97035" -166933,Wired Headphones,2,11.99,03/26/19 10:11,"150 14th St, Boston, MA 02215" -166934,AAA Batteries (4-pack),1,2.99,03/21/19 07:47,"389 Walnut St, San Francisco, CA 94016" -166935,Wired Headphones,1,11.99,03/03/19 19:38,"975 Cherry St, Dallas, TX 75001" -166936,Lightning Charging Cable,1,14.95,03/17/19 21:51,"322 9th St, San Francisco, CA 94016" -166937,Vareebadd Phone,1,400,03/17/19 22:21,"320 Lakeview St, San Francisco, CA 94016" -166938,USB-C Charging Cable,1,11.95,03/25/19 16:47,"301 4th St, Los Angeles, CA 90001" -166939,Bose SoundSport Headphones,1,99.99,03/07/19 10:10,"558 Hickory St, Boston, MA 02215" -166940,Lightning Charging Cable,1,14.95,03/02/19 13:47,"762 Pine St, Boston, MA 02215" -166941,AA Batteries (4-pack),3,3.84,03/04/19 08:01,"404 North St, Los Angeles, CA 90001" -166942,iPhone,1,700,03/01/19 19:56,"472 Adams St, San Francisco, CA 94016" -166942,Apple Airpods Headphones,1,150,03/01/19 19:56,"472 Adams St, San Francisco, CA 94016" -166943,Apple Airpods Headphones,1,150,03/25/19 16:50,"760 Park St, Los Angeles, CA 90001" -166944,USB-C Charging Cable,1,11.95,03/08/19 19:56,"782 2nd St, Atlanta, GA 30301" -166945,USB-C Charging Cable,1,11.95,03/25/19 19:56,"691 6th St, Boston, MA 02215" -166946,USB-C Charging Cable,1,11.95,03/06/19 00:07,"555 9th St, Seattle, WA 98101" -166947,iPhone,1,700,03/15/19 11:53,"535 Washington St, Atlanta, GA 30301" -166948,34in Ultrawide Monitor,1,379.99,03/18/19 15:02,"401 Walnut St, Austin, TX 73301" -166949,34in Ultrawide Monitor,1,379.99,03/21/19 01:05,"85 Jackson St, Boston, MA 02215" -166950,Wired Headphones,1,11.99,03/05/19 11:38,"237 5th St, Austin, TX 73301" -166951,AA Batteries (4-pack),1,3.84,03/19/19 12:25,"374 Highland St, San Francisco, CA 94016" -166952,34in Ultrawide Monitor,1,379.99,03/14/19 08:19,"571 Jackson St, New York City, NY 10001" -166953,AAA Batteries (4-pack),4,2.99,03/24/19 11:30,"337 Main St, San Francisco, CA 94016" -166954,Macbook Pro Laptop,1,1700,03/14/19 22:25,"802 Madison St, San Francisco, CA 94016" -166955,Apple Airpods Headphones,1,150,03/30/19 12:36,"462 River St, Seattle, WA 98101" -166956,Wired Headphones,1,11.99,03/30/19 06:47,"281 11th St, Los Angeles, CA 90001" -166957,27in FHD Monitor,1,149.99,03/27/19 09:28,"168 Washington St, Atlanta, GA 30301" -166958,Apple Airpods Headphones,1,150,03/27/19 11:40,"573 13th St, Los Angeles, CA 90001" -166959,Apple Airpods Headphones,1,150,03/26/19 17:10,"963 Highland St, San Francisco, CA 94016" -166960,Wired Headphones,1,11.99,03/17/19 08:42,"901 Meadow St, San Francisco, CA 94016" -166961,27in 4K Gaming Monitor,1,389.99,03/17/19 19:40,"159 Wilson St, San Francisco, CA 94016" -166962,USB-C Charging Cable,1,11.95,03/16/19 18:03,"530 10th St, Austin, TX 73301" -166963,Apple Airpods Headphones,1,150,03/30/19 17:43,"235 Willow St, Seattle, WA 98101" -166964,Lightning Charging Cable,1,14.95,03/15/19 13:36,"376 2nd St, Portland, OR 97035" -166965,Apple Airpods Headphones,1,150,03/24/19 18:54,"948 5th St, San Francisco, CA 94016" -166966,AAA Batteries (4-pack),1,2.99,03/08/19 21:29,"293 9th St, Los Angeles, CA 90001" -166967,AA Batteries (4-pack),1,3.84,03/06/19 22:36,"542 Forest St, New York City, NY 10001" -166968,LG Washing Machine,1,600.0,03/27/19 22:16,"782 Lincoln St, Portland, OR 97035" -166968,27in 4K Gaming Monitor,1,389.99,03/27/19 22:16,"782 Lincoln St, Portland, OR 97035" -166969,iPhone,1,700,03/18/19 22:07,"919 Walnut St, Boston, MA 02215" -166970,Apple Airpods Headphones,1,150,03/24/19 17:08,"622 Pine St, Dallas, TX 75001" -166971,Lightning Charging Cable,1,14.95,03/21/19 14:09,"246 Elm St, Dallas, TX 75001" -166972,Macbook Pro Laptop,1,1700,03/17/19 14:40,"615 Pine St, New York City, NY 10001" -166973,AA Batteries (4-pack),1,3.84,03/25/19 16:54,"168 Ridge St, Boston, MA 02215" -166974,Macbook Pro Laptop,1,1700,03/28/19 08:50,"983 12th St, Atlanta, GA 30301" -166975,USB-C Charging Cable,1,11.95,03/27/19 16:04,"489 Lincoln St, Los Angeles, CA 90001" -166976,AAA Batteries (4-pack),5,2.99,03/25/19 12:18,"333 7th St, Los Angeles, CA 90001" -166977,27in FHD Monitor,1,149.99,03/20/19 17:12,"269 Center St, New York City, NY 10001" -166978,iPhone,1,700,03/25/19 17:08,"201 Jefferson St, Austin, TX 73301" -166979,AA Batteries (4-pack),1,3.84,03/15/19 09:41,"333 7th St, Boston, MA 02215" -166980,Flatscreen TV,1,300,03/25/19 20:28,"533 9th St, Atlanta, GA 30301" -166981,AAA Batteries (4-pack),1,2.99,03/31/19 01:40,"557 Wilson St, Dallas, TX 75001" -166981,AAA Batteries (4-pack),1,2.99,03/31/19 01:40,"557 Wilson St, Dallas, TX 75001" -166982,Lightning Charging Cable,1,14.95,03/29/19 20:00,"691 8th St, New York City, NY 10001" -166983,Bose SoundSport Headphones,1,99.99,03/13/19 15:48,"956 Chestnut St, San Francisco, CA 94016" -166984,AAA Batteries (4-pack),3,2.99,03/03/19 10:01,"513 Highland St, Seattle, WA 98101" -166985,AA Batteries (4-pack),1,3.84,03/03/19 00:15,"927 Lakeview St, San Francisco, CA 94016" -166986,Bose SoundSport Headphones,1,99.99,03/20/19 20:22,"583 11th St, San Francisco, CA 94016" -166987,Lightning Charging Cable,1,14.95,03/12/19 23:17,"654 Church St, Portland, OR 97035" -166988,Lightning Charging Cable,1,14.95,03/17/19 18:47,"90 River St, New York City, NY 10001" -166989,Google Phone,1,600,03/28/19 10:35,"239 9th St, Boston, MA 02215" -166990,AA Batteries (4-pack),1,3.84,03/23/19 19:11,"29 South St, New York City, NY 10001" -166991,Flatscreen TV,1,300,03/15/19 12:02,"745 6th St, Boston, MA 02215" -166992,Apple Airpods Headphones,1,150,03/26/19 10:28,"639 10th St, Seattle, WA 98101" -166993,Lightning Charging Cable,1,14.95,03/28/19 21:27,"373 Ridge St, Atlanta, GA 30301" -166994,34in Ultrawide Monitor,1,379.99,03/17/19 17:37,"992 Maple St, New York City, NY 10001" -166995,AAA Batteries (4-pack),2,2.99,03/27/19 22:05,"172 4th St, San Francisco, CA 94016" -166996,Apple Airpods Headphones,1,150,03/27/19 14:44,"910 10th St, New York City, NY 10001" -166997,USB-C Charging Cable,1,11.95,03/23/19 20:02,"14 11th St, Los Angeles, CA 90001" -166998,USB-C Charging Cable,1,11.95,03/31/19 13:26,"786 Jefferson St, Atlanta, GA 30301" -166999,USB-C Charging Cable,1,11.95,03/01/19 07:39,"948 Jefferson St, San Francisco, CA 94016" -167000,Wired Headphones,1,11.99,03/23/19 11:41,"650 Pine St, Boston, MA 02215" -167001,Lightning Charging Cable,1,14.95,03/29/19 14:47,"590 Jefferson St, Seattle, WA 98101" -167002,Wired Headphones,1,11.99,03/20/19 15:51,"422 13th St, New York City, NY 10001" -167003,27in FHD Monitor,1,149.99,03/07/19 20:58,"477 Hill St, Portland, OR 97035" -167004,USB-C Charging Cable,1,11.95,03/31/19 13:22,"818 South St, Los Angeles, CA 90001" -167005,Wired Headphones,1,11.99,03/27/19 13:33,"136 Elm St, Boston, MA 02215" -167006,Flatscreen TV,1,300,03/24/19 15:34,"975 1st St, Portland, OR 97035" -167007,27in 4K Gaming Monitor,1,389.99,03/22/19 10:10,"506 North St, San Francisco, CA 94016" -167008,AA Batteries (4-pack),1,3.84,03/21/19 15:06,"679 Dogwood St, Los Angeles, CA 90001" -167009,Flatscreen TV,1,300,03/25/19 18:23,"540 Dogwood St, Boston, MA 02215" -167010,USB-C Charging Cable,1,11.95,03/11/19 02:48,"249 Sunset St, New York City, NY 10001" -167011,USB-C Charging Cable,1,11.95,03/15/19 19:51,"988 Hickory St, San Francisco, CA 94016" -167012,AA Batteries (4-pack),1,3.84,03/16/19 12:48,"115 11th St, Seattle, WA 98101" -167013,AAA Batteries (4-pack),1,2.99,03/05/19 17:18,"67 Jefferson St, Los Angeles, CA 90001" -167014,iPhone,1,700,03/09/19 22:04,"560 6th St, San Francisco, CA 94016" -167014,Apple Airpods Headphones,1,150,03/09/19 22:04,"560 6th St, San Francisco, CA 94016" -167015,Lightning Charging Cable,1,14.95,03/20/19 10:56,"20 8th St, Atlanta, GA 30301" -167016,Apple Airpods Headphones,1,150,03/27/19 17:22,"775 Wilson St, Seattle, WA 98101" -167017,ThinkPad Laptop,1,999.99,03/13/19 20:23,"629 Walnut St, Portland, OR 97035" -167018,34in Ultrawide Monitor,1,379.99,03/22/19 12:37,"963 Washington St, San Francisco, CA 94016" -167019,LG Washing Machine,1,600.0,03/06/19 22:51,"203 9th St, New York City, NY 10001" -167020,Lightning Charging Cable,1,14.95,03/16/19 20:41,"976 7th St, Dallas, TX 75001" -167021,Apple Airpods Headphones,1,150,03/14/19 16:52,"233 Lincoln St, New York City, NY 10001" -167022,Wired Headphones,1,11.99,03/03/19 19:54,"7 Chestnut St, San Francisco, CA 94016" -167023,iPhone,1,700,03/17/19 21:02,"662 Ridge St, Los Angeles, CA 90001" -167023,Lightning Charging Cable,1,14.95,03/17/19 21:02,"662 Ridge St, Los Angeles, CA 90001" -167024,Wired Headphones,1,11.99,03/02/19 15:06,"298 Elm St, Portland, OR 97035" -167025,Apple Airpods Headphones,1,150,03/11/19 15:13,"615 Jackson St, Boston, MA 02215" -167026,iPhone,1,700,03/21/19 22:30,"217 Highland St, Boston, MA 02215" -167026,Lightning Charging Cable,1,14.95,03/21/19 22:30,"217 Highland St, Boston, MA 02215" -167027,iPhone,1,700,03/05/19 22:55,"108 Chestnut St, San Francisco, CA 94016" -167028,AA Batteries (4-pack),1,3.84,03/17/19 08:27,"807 5th St, Austin, TX 73301" -167029,Macbook Pro Laptop,1,1700,03/28/19 15:40,"802 Meadow St, San Francisco, CA 94016" -167030,Apple Airpods Headphones,1,150,03/14/19 11:29,"442 5th St, San Francisco, CA 94016" -167031,27in 4K Gaming Monitor,1,389.99,03/12/19 16:39,"196 Highland St, Boston, MA 02215" -167032,Bose SoundSport Headphones,1,99.99,03/23/19 22:37,"784 Dogwood St, San Francisco, CA 94016" -167033,Lightning Charging Cable,1,14.95,03/13/19 12:32,"563 Highland St, Atlanta, GA 30301" -167034,USB-C Charging Cable,1,11.95,03/21/19 10:35,"747 Jackson St, Seattle, WA 98101" -167035,Apple Airpods Headphones,1,150,03/07/19 19:13,"8 Highland St, San Francisco, CA 94016" -167036,27in 4K Gaming Monitor,1,389.99,03/31/19 16:39,"595 Jackson St, Dallas, TX 75001" -167037,Bose SoundSport Headphones,1,99.99,03/18/19 13:02,"214 4th St, Seattle, WA 98101" -167038,AA Batteries (4-pack),1,3.84,03/16/19 18:48,"620 Dogwood St, Seattle, WA 98101" -167039,AAA Batteries (4-pack),1,2.99,03/09/19 17:19,"767 Dogwood St, San Francisco, CA 94016" -167040,iPhone,1,700,03/02/19 10:31,"467 Maple St, San Francisco, CA 94016" -167041,34in Ultrawide Monitor,1,379.99,03/23/19 18:50,"779 Hill St, Atlanta, GA 30301" -167042,Lightning Charging Cable,1,14.95,03/16/19 07:57,"218 11th St, Dallas, TX 75001" -167043,Wired Headphones,1,11.99,03/28/19 10:45,"452 Cherry St, San Francisco, CA 94016" -167044,20in Monitor,1,109.99,03/24/19 09:43,"39 Meadow St, Los Angeles, CA 90001" -167045,AAA Batteries (4-pack),2,2.99,03/07/19 02:30,"970 6th St, Austin, TX 73301" -167046,Google Phone,1,600,03/31/19 21:53,"407 Hickory St, San Francisco, CA 94016" -167047,Flatscreen TV,1,300,03/09/19 16:09,"252 Main St, San Francisco, CA 94016" -167048,Google Phone,1,600,03/22/19 15:48,"402 Adams St, San Francisco, CA 94016" -167049,AAA Batteries (4-pack),3,2.99,03/12/19 14:02,"632 South St, Austin, TX 73301" -167050,Lightning Charging Cable,1,14.95,03/13/19 19:33,"967 Park St, San Francisco, CA 94016" -167051,20in Monitor,1,109.99,03/15/19 04:59,"373 13th St, New York City, NY 10001" -167052,Lightning Charging Cable,1,14.95,03/21/19 21:18,"782 Main St, Portland, OR 97035" -167053,Wired Headphones,1,11.99,03/27/19 20:54,"381 10th St, Los Angeles, CA 90001" -167054,Wired Headphones,1,11.99,03/31/19 19:36,"961 Jefferson St, Seattle, WA 98101" -167055,Flatscreen TV,1,300,03/11/19 00:08,"535 Cedar St, Dallas, TX 75001" -167056,Bose SoundSport Headphones,1,99.99,03/30/19 14:22,"457 4th St, Dallas, TX 75001" -167057,Wired Headphones,1,11.99,03/28/19 10:21,"296 8th St, Dallas, TX 75001" -167058,Wired Headphones,1,11.99,03/05/19 10:28,"595 14th St, Boston, MA 02215" -167059,27in 4K Gaming Monitor,1,389.99,03/29/19 10:29,"429 9th St, Atlanta, GA 30301" -167060,Macbook Pro Laptop,1,1700,03/04/19 11:55,"266 Walnut St, Los Angeles, CA 90001" -167061,AA Batteries (4-pack),1,3.84,03/31/19 13:33,"949 Jefferson St, New York City, NY 10001" -167062,AAA Batteries (4-pack),1,2.99,03/22/19 03:56,"143 11th St, Los Angeles, CA 90001" -167063,USB-C Charging Cable,1,11.95,03/09/19 13:25,"605 Lincoln St, Los Angeles, CA 90001" -167064,AA Batteries (4-pack),1,3.84,03/21/19 20:14,"381 Johnson St, Dallas, TX 75001" -167065,34in Ultrawide Monitor,1,379.99,03/15/19 18:11,"403 Park St, Austin, TX 73301" -167066,USB-C Charging Cable,1,11.95,03/02/19 18:28,"253 2nd St, New York City, NY 10001" -167067,AA Batteries (4-pack),2,3.84,03/21/19 16:42,"559 Highland St, San Francisco, CA 94016" -167068,USB-C Charging Cable,1,11.95,03/05/19 07:29,"100 7th St, Los Angeles, CA 90001" -167069,USB-C Charging Cable,1,11.95,03/20/19 17:45,"990 14th St, San Francisco, CA 94016" -167070,Wired Headphones,1,11.99,03/16/19 19:48,"389 Chestnut St, Boston, MA 02215" -167071,34in Ultrawide Monitor,1,379.99,03/04/19 19:21,"383 Johnson St, Los Angeles, CA 90001" -167072,AA Batteries (4-pack),1,3.84,03/08/19 15:56,"608 Adams St, Atlanta, GA 30301" -167073,Bose SoundSport Headphones,1,99.99,03/06/19 14:47,"250 2nd St, San Francisco, CA 94016" -167074,Lightning Charging Cable,1,14.95,03/30/19 18:04,"390 Meadow St, Seattle, WA 98101" -167075,Bose SoundSport Headphones,1,99.99,03/10/19 01:32,"852 5th St, Seattle, WA 98101" -167076,Flatscreen TV,1,300,03/31/19 18:41,"796 Johnson St, Los Angeles, CA 90001" -167077,Wired Headphones,1,11.99,03/08/19 19:09,"406 Cedar St, San Francisco, CA 94016" -167078,Wired Headphones,1,11.99,03/19/19 23:57,"400 12th St, Atlanta, GA 30301" -167079,Bose SoundSport Headphones,1,99.99,03/14/19 10:11,"427 Highland St, Austin, TX 73301" -167080,USB-C Charging Cable,1,11.95,03/23/19 11:17,"552 Ridge St, San Francisco, CA 94016" -167081,Macbook Pro Laptop,1,1700,03/17/19 19:28,"796 Park St, San Francisco, CA 94016" -167082,Macbook Pro Laptop,1,1700,03/06/19 23:37,"561 Cherry St, San Francisco, CA 94016" -167083,AAA Batteries (4-pack),3,2.99,03/11/19 21:03,"491 Jefferson St, New York City, NY 10001" -167084,AA Batteries (4-pack),1,3.84,03/16/19 15:11,"15 Jefferson St, Los Angeles, CA 90001" -167084,Bose SoundSport Headphones,1,99.99,03/16/19 15:11,"15 Jefferson St, Los Angeles, CA 90001" -167085,AAA Batteries (4-pack),2,2.99,03/18/19 11:39,"969 Johnson St, San Francisco, CA 94016" -167086,USB-C Charging Cable,1,11.95,03/25/19 14:00,"805 Madison St, Los Angeles, CA 90001" -167087,Apple Airpods Headphones,1,150,03/19/19 16:22,"524 Chestnut St, New York City, NY 10001" -167088,USB-C Charging Cable,1,11.95,03/17/19 23:01,"962 South St, Los Angeles, CA 90001" -167089,USB-C Charging Cable,1,11.95,03/28/19 10:06,"990 Lake St, Boston, MA 02215" -167090,Lightning Charging Cable,1,14.95,03/24/19 13:30,"963 Elm St, San Francisco, CA 94016" -167091,Apple Airpods Headphones,1,150,03/19/19 16:00,"861 Madison St, Los Angeles, CA 90001" -167092,27in FHD Monitor,1,149.99,03/10/19 12:35,"637 6th St, Dallas, TX 75001" -167093,Google Phone,1,600,03/22/19 08:57,"467 Madison St, Seattle, WA 98101" -167094,Lightning Charging Cable,1,14.95,03/09/19 13:15,"972 11th St, New York City, NY 10001" -167095,Bose SoundSport Headphones,1,99.99,03/14/19 13:25,"154 Jackson St, Seattle, WA 98101" -167096,Bose SoundSport Headphones,1,99.99,03/22/19 14:12,"196 Jefferson St, San Francisco, CA 94016" -167097,Apple Airpods Headphones,1,150,03/16/19 19:05,"138 8th St, San Francisco, CA 94016" -167098,AA Batteries (4-pack),1,3.84,03/03/19 20:16,"949 9th St, Los Angeles, CA 90001" -167099,Apple Airpods Headphones,1,150,03/02/19 19:34,"705 Chestnut St, Los Angeles, CA 90001" -167100,27in 4K Gaming Monitor,1,389.99,03/04/19 20:43,"33 Jackson St, Seattle, WA 98101" -167101,27in 4K Gaming Monitor,1,389.99,03/12/19 01:53,"861 Madison St, Boston, MA 02215" -167102,Macbook Pro Laptop,1,1700,03/30/19 12:46,"222 Dogwood St, Austin, TX 73301" -167103,AA Batteries (4-pack),1,3.84,03/30/19 12:33,"605 Hickory St, Seattle, WA 98101" -167104,Bose SoundSport Headphones,1,99.99,03/17/19 15:36,"455 4th St, San Francisco, CA 94016" -167105,iPhone,1,700,03/14/19 13:00,"605 North St, New York City, NY 10001" -167106,Macbook Pro Laptop,1,1700,03/10/19 15:26,"947 Sunset St, San Francisco, CA 94016" -167107,iPhone,1,700,03/27/19 18:43,"493 1st St, San Francisco, CA 94016" -167108,USB-C Charging Cable,1,11.95,03/30/19 16:40,"409 Lakeview St, Los Angeles, CA 90001" -167109,ThinkPad Laptop,1,999.99,03/03/19 14:34,"187 Adams St, New York City, NY 10001" -167110,AA Batteries (4-pack),1,3.84,03/10/19 14:55,"338 7th St, Seattle, WA 98101" -167111,iPhone,1,700,03/19/19 13:41,"863 Wilson St, Dallas, TX 75001" -,,,,, -167112,Bose SoundSport Headphones,1,99.99,03/18/19 00:35,"872 Cherry St, Portland, OR 97035" -167113,Lightning Charging Cable,1,14.95,03/02/19 22:55,"612 7th St, Portland, OR 97035" -167114,Wired Headphones,1,11.99,03/24/19 17:37,"450 Park St, Dallas, TX 75001" -167115,Apple Airpods Headphones,1,150,03/06/19 19:02,"188 Church St, Los Angeles, CA 90001" -167116,Wired Headphones,1,11.99,03/24/19 23:37,"517 6th St, San Francisco, CA 94016" -167117,Wired Headphones,1,11.99,03/06/19 17:26,"279 Sunset St, Los Angeles, CA 90001" -167118,Flatscreen TV,1,300,03/25/19 13:34,"118 Church St, Los Angeles, CA 90001" -167119,LG Dryer,1,600.0,03/22/19 08:48,"857 North St, Dallas, TX 75001" -167120,Lightning Charging Cable,1,14.95,03/31/19 09:47,"947 12th St, San Francisco, CA 94016" -167121,Macbook Pro Laptop,1,1700,03/08/19 08:24,"439 Lincoln St, Atlanta, GA 30301" -167122,AA Batteries (4-pack),1,3.84,03/11/19 22:32,"166 Center St, Los Angeles, CA 90001" -167123,Wired Headphones,1,11.99,03/10/19 09:04,"220 Forest St, Portland, OR 97035" -167124,Flatscreen TV,1,300,03/20/19 09:20,"666 Adams St, Seattle, WA 98101" -167124,ThinkPad Laptop,1,999.99,03/20/19 09:20,"666 Adams St, Seattle, WA 98101" -167125,Lightning Charging Cable,1,14.95,03/05/19 22:17,"516 12th St, Los Angeles, CA 90001" -167126,LG Washing Machine,1,600.0,03/13/19 12:58,"628 North St, Seattle, WA 98101" -167127,Lightning Charging Cable,1,14.95,03/02/19 13:56,"150 Washington St, Atlanta, GA 30301" -167128,Apple Airpods Headphones,1,150,03/03/19 15:54,"610 Main St, Atlanta, GA 30301" -167129,27in FHD Monitor,1,149.99,03/02/19 18:47,"211 Main St, Boston, MA 02215" -167130,Lightning Charging Cable,1,14.95,03/11/19 20:07,"129 Spruce St, Atlanta, GA 30301" -167131,AA Batteries (4-pack),3,3.84,03/05/19 13:11,"594 Lincoln St, San Francisco, CA 94016" -167132,34in Ultrawide Monitor,1,379.99,03/24/19 09:25,"566 Church St, Seattle, WA 98101" -167133,Macbook Pro Laptop,1,1700,03/25/19 17:10,"407 Walnut St, Atlanta, GA 30301" -167134,Wired Headphones,2,11.99,03/07/19 19:32,"753 5th St, Atlanta, GA 30301" -167135,27in FHD Monitor,1,149.99,03/07/19 19:43,"175 8th St, San Francisco, CA 94016" -167136,Bose SoundSport Headphones,1,99.99,03/24/19 19:17,"85 Hickory St, San Francisco, CA 94016" -167137,Lightning Charging Cable,1,14.95,03/16/19 12:34,"105 12th St, Portland, OR 97035" -167138,Apple Airpods Headphones,1,150,03/14/19 15:58,"219 Main St, Boston, MA 02215" -167139,AAA Batteries (4-pack),1,2.99,03/19/19 15:34,"782 Willow St, San Francisco, CA 94016" -167140,Bose SoundSport Headphones,1,99.99,03/15/19 12:48,"206 6th St, New York City, NY 10001" -167141,Bose SoundSport Headphones,1,99.99,03/29/19 11:17,"871 Ridge St, New York City, NY 10001" -167142,AAA Batteries (4-pack),1,2.99,03/20/19 09:44,"452 9th St, Portland, OR 97035" -167143,Bose SoundSport Headphones,1,99.99,03/04/19 13:16,"709 Lakeview St, Portland, OR 97035" -167144,AAA Batteries (4-pack),1,2.99,03/01/19 17:07,"947 Walnut St, Boston, MA 02215" -167145,Wired Headphones,1,11.99,03/19/19 14:00,"817 6th St, San Francisco, CA 94016" -167146,Bose SoundSport Headphones,1,99.99,03/21/19 22:03,"861 Willow St, Austin, TX 73301" -167147,iPhone,1,700,03/22/19 21:39,"218 Willow St, Atlanta, GA 30301" -167148,Apple Airpods Headphones,1,150,03/15/19 12:11,"835 North St, New York City, NY 10001" -167149,20in Monitor,1,109.99,03/04/19 01:59,"241 Meadow St, San Francisco, CA 94016" -167150,LG Dryer,1,600.0,03/30/19 05:15,"414 1st St, Austin, TX 73301" -167151,AA Batteries (4-pack),1,3.84,03/13/19 08:48,"104 Walnut St, New York City, NY 10001" -167152,USB-C Charging Cable,1,11.95,03/19/19 13:22,"189 Adams St, Dallas, TX 75001" -167153,34in Ultrawide Monitor,1,379.99,03/28/19 20:06,"129 Jefferson St, Boston, MA 02215" -167154,34in Ultrawide Monitor,1,379.99,03/06/19 10:40,"264 Johnson St, San Francisco, CA 94016" -167155,AAA Batteries (4-pack),2,2.99,03/16/19 19:23,"319 West St, Dallas, TX 75001" -167156,AAA Batteries (4-pack),2,2.99,03/01/19 11:44,"485 4th St, Los Angeles, CA 90001" -167157,USB-C Charging Cable,1,11.95,03/18/19 11:33,"924 Center St, San Francisco, CA 94016" -167158,Lightning Charging Cable,1,14.95,03/12/19 13:33,"493 13th St, Los Angeles, CA 90001" -167159,Google Phone,1,600,03/31/19 19:52,"406 Forest St, San Francisco, CA 94016" -167159,AA Batteries (4-pack),1,3.84,03/31/19 19:52,"406 Forest St, San Francisco, CA 94016" -167160,Apple Airpods Headphones,1,150,03/26/19 17:34,"365 West St, San Francisco, CA 94016" -167161,AAA Batteries (4-pack),2,2.99,03/25/19 21:29,"268 Forest St, Atlanta, GA 30301" -167162,AA Batteries (4-pack),2,3.84,03/10/19 22:46,"833 Spruce St, New York City, NY 10001" -167163,AA Batteries (4-pack),1,3.84,03/03/19 12:49,"350 12th St, San Francisco, CA 94016" -167164,USB-C Charging Cable,1,11.95,03/23/19 00:53,"400 Hickory St, New York City, NY 10001" -167165,27in FHD Monitor,1,149.99,03/26/19 23:56,"749 Chestnut St, Seattle, WA 98101" -167166,Lightning Charging Cable,1,14.95,03/28/19 00:35,"199 Pine St, Atlanta, GA 30301" -167167,USB-C Charging Cable,1,11.95,03/18/19 16:37,"416 Sunset St, Portland, OR 97035" -167168,AA Batteries (4-pack),1,3.84,03/27/19 12:14,"759 6th St, Atlanta, GA 30301" -167169,AA Batteries (4-pack),1,3.84,03/31/19 13:12,"256 12th St, San Francisco, CA 94016" -167170,AAA Batteries (4-pack),1,2.99,03/14/19 14:15,"529 Church St, San Francisco, CA 94016" -167171,Vareebadd Phone,1,400,03/20/19 19:00,"992 1st St, New York City, NY 10001" -167172,Wired Headphones,1,11.99,03/03/19 10:06,"195 Cherry St, Dallas, TX 75001" -167173,Google Phone,1,600,03/29/19 19:10,"371 Spruce St, Boston, MA 02215" -167174,Apple Airpods Headphones,1,150,03/27/19 11:04,"545 South St, Boston, MA 02215" -167175,Lightning Charging Cable,1,14.95,03/13/19 22:01,"803 Pine St, San Francisco, CA 94016" -167176,Lightning Charging Cable,1,14.95,03/21/19 15:20,"183 Meadow St, Boston, MA 02215" -167177,Apple Airpods Headphones,1,150,03/24/19 15:26,"510 Meadow St, Los Angeles, CA 90001" -167178,Lightning Charging Cable,1,14.95,03/02/19 22:26,"892 Jefferson St, San Francisco, CA 94016" -167179,USB-C Charging Cable,1,11.95,03/05/19 18:13,"180 13th St, Atlanta, GA 30301" -167180,Wired Headphones,1,11.99,03/22/19 11:47,"700 Ridge St, Portland, ME 04101" -167181,AA Batteries (4-pack),1,3.84,03/16/19 19:28,"388 Spruce St, Portland, ME 04101" -167182,Wired Headphones,1,11.99,03/16/19 21:52,"708 Washington St, New York City, NY 10001" -167183,Apple Airpods Headphones,1,150,03/25/19 00:42,"72 5th St, San Francisco, CA 94016" -167184,27in 4K Gaming Monitor,1,389.99,03/20/19 20:27,"807 8th St, New York City, NY 10001" -167185,Lightning Charging Cable,1,14.95,03/20/19 20:49,"487 10th St, San Francisco, CA 94016" -167186,Apple Airpods Headphones,1,150,03/06/19 16:50,"663 Chestnut St, San Francisco, CA 94016" -167187,Wired Headphones,1,11.99,03/21/19 12:28,"873 Main St, San Francisco, CA 94016" -167188,Lightning Charging Cable,1,14.95,03/20/19 10:43,"655 Elm St, San Francisco, CA 94016" -167189,AAA Batteries (4-pack),1,2.99,03/02/19 13:41,"903 Adams St, Los Angeles, CA 90001" -167190,Lightning Charging Cable,1,14.95,03/21/19 19:02,"495 1st St, Los Angeles, CA 90001" -167191,Lightning Charging Cable,1,14.95,03/22/19 17:46,"159 Sunset St, Boston, MA 02215" -167192,Google Phone,1,600,03/17/19 14:09,"74 South St, Atlanta, GA 30301" -167193,AA Batteries (4-pack),1,3.84,03/09/19 11:08,"464 9th St, Austin, TX 73301" -167194,20in Monitor,1,109.99,03/30/19 14:21,"491 Lincoln St, San Francisco, CA 94016" -167195,iPhone,1,700,03/22/19 18:35,"42 Meadow St, Portland, OR 97035" -167196,AA Batteries (4-pack),1,3.84,03/06/19 23:09,"517 6th St, Dallas, TX 75001" -167197,USB-C Charging Cable,1,11.95,03/16/19 00:03,"789 Sunset St, Dallas, TX 75001" -167198,34in Ultrawide Monitor,1,379.99,03/31/19 22:35,"464 South St, New York City, NY 10001" -167199,AA Batteries (4-pack),1,3.84,03/03/19 17:13,"417 10th St, Los Angeles, CA 90001" -167200,27in FHD Monitor,1,149.99,03/24/19 20:57,"838 2nd St, Los Angeles, CA 90001" -167201,34in Ultrawide Monitor,1,379.99,03/14/19 15:49,"643 Pine St, Atlanta, GA 30301" -167202,Bose SoundSport Headphones,1,99.99,03/21/19 18:31,"606 Madison St, Los Angeles, CA 90001" -167203,27in 4K Gaming Monitor,1,389.99,03/01/19 11:12,"110 Johnson St, New York City, NY 10001" -167204,Flatscreen TV,1,300,03/08/19 19:28,"156 Maple St, Portland, OR 97035" -167205,AAA Batteries (4-pack),1,2.99,03/10/19 18:48,"133 Dogwood St, San Francisco, CA 94016" -167206,20in Monitor,1,109.99,03/07/19 12:40,"521 Forest St, Los Angeles, CA 90001" -167207,Wired Headphones,1,11.99,03/17/19 09:57,"211 Main St, Atlanta, GA 30301" -167208,Bose SoundSport Headphones,1,99.99,03/27/19 13:43,"353 11th St, Portland, ME 04101" -167209,AA Batteries (4-pack),1,3.84,03/18/19 19:38,"253 Forest St, San Francisco, CA 94016" -167210,27in FHD Monitor,1,149.99,03/31/19 14:41,"246 Center St, Portland, OR 97035" -167211,AAA Batteries (4-pack),1,2.99,03/23/19 14:29,"196 Highland St, New York City, NY 10001" -167212,AA Batteries (4-pack),1,3.84,03/26/19 20:36,"204 Madison St, Austin, TX 73301" -167213,AA Batteries (4-pack),1,3.84,03/18/19 20:26,"823 Johnson St, Dallas, TX 75001" -167214,AAA Batteries (4-pack),3,2.99,03/28/19 18:39,"528 9th St, San Francisco, CA 94016" -167215,USB-C Charging Cable,1,11.95,03/19/19 08:53,"494 10th St, San Francisco, CA 94016" -167216,Lightning Charging Cable,1,14.95,03/15/19 23:08,"498 12th St, Los Angeles, CA 90001" -167217,AAA Batteries (4-pack),1,2.99,03/21/19 15:28,"396 Forest St, Seattle, WA 98101" -167218,ThinkPad Laptop,1,999.99,03/06/19 17:32,"153 Madison St, Los Angeles, CA 90001" -167219,AA Batteries (4-pack),1,3.84,03/30/19 16:18,"308 Johnson St, New York City, NY 10001" -167220,AA Batteries (4-pack),1,3.84,03/30/19 21:36,"853 Spruce St, Portland, OR 97035" -167220,iPhone,1,700,03/30/19 21:36,"853 Spruce St, Portland, OR 97035" -167221,27in 4K Gaming Monitor,1,389.99,03/17/19 17:53,"234 12th St, San Francisco, CA 94016" -167222,AAA Batteries (4-pack),2,2.99,03/30/19 15:36,"662 Center St, New York City, NY 10001" -167222,ThinkPad Laptop,1,999.99,03/30/19 15:36,"662 Center St, New York City, NY 10001" -167223,Lightning Charging Cable,1,14.95,03/29/19 22:36,"300 Madison St, Atlanta, GA 30301" -167224,Wired Headphones,1,11.99,03/07/19 22:05,"21 Ridge St, New York City, NY 10001" -167225,LG Dryer,1,600.0,03/10/19 23:02,"809 West St, San Francisco, CA 94016" -167226,Vareebadd Phone,1,400,03/05/19 19:01,"978 Meadow St, Portland, OR 97035" -167227,27in 4K Gaming Monitor,1,389.99,03/18/19 19:19,"884 Spruce St, Los Angeles, CA 90001" -167228,Lightning Charging Cable,1,14.95,03/19/19 19:33,"860 Lakeview St, Portland, OR 97035" -167229,Bose SoundSport Headphones,1,99.99,03/08/19 21:23,"565 Ridge St, San Francisco, CA 94016" -167230,ThinkPad Laptop,1,999.99,03/19/19 11:56,"53 Hill St, New York City, NY 10001" -167231,AAA Batteries (4-pack),1,2.99,04/01/19 01:19,"689 Hill St, San Francisco, CA 94016" -167232,AA Batteries (4-pack),1,3.84,03/27/19 19:16,"181 Park St, San Francisco, CA 94016" -167233,Apple Airpods Headphones,1,150,03/11/19 01:14,"886 Lake St, Portland, OR 97035" -167234,Wired Headphones,1,11.99,03/24/19 22:00,"460 Church St, Los Angeles, CA 90001" -167235,LG Dryer,1,600.0,03/19/19 22:25,"146 Willow St, San Francisco, CA 94016" -167236,AAA Batteries (4-pack),1,2.99,03/15/19 19:15,"505 Main St, Portland, OR 97035" -167237,27in FHD Monitor,1,149.99,03/03/19 19:41,"781 Meadow St, Boston, MA 02215" -167238,Lightning Charging Cable,1,14.95,03/23/19 19:57,"404 6th St, Boston, MA 02215" -167239,Bose SoundSport Headphones,1,99.99,03/12/19 12:07,"893 6th St, New York City, NY 10001" -167240,Google Phone,1,600,03/06/19 10:26,"790 Highland St, San Francisco, CA 94016" -167241,AAA Batteries (4-pack),1,2.99,03/04/19 15:24,"999 10th St, Boston, MA 02215" -167242,AA Batteries (4-pack),1,3.84,03/19/19 19:01,"123 10th St, New York City, NY 10001" -167243,AAA Batteries (4-pack),1,2.99,03/07/19 03:00,"797 Hickory St, New York City, NY 10001" -167244,Vareebadd Phone,1,400,03/17/19 12:38,"920 Sunset St, San Francisco, CA 94016" -167245,AAA Batteries (4-pack),1,2.99,03/05/19 17:08,"194 Elm St, Boston, MA 02215" -167246,Bose SoundSport Headphones,1,99.99,03/15/19 12:41,"486 4th St, New York City, NY 10001" -167247,AA Batteries (4-pack),2,3.84,03/26/19 14:43,"218 Cedar St, Seattle, WA 98101" -167248,AAA Batteries (4-pack),2,2.99,03/03/19 16:54,"621 Willow St, Dallas, TX 75001" -167249,Wired Headphones,1,11.99,03/30/19 23:02,"268 7th St, New York City, NY 10001" -167250,20in Monitor,1,109.99,03/26/19 20:45,"302 8th St, San Francisco, CA 94016" -167251,AA Batteries (4-pack),1,3.84,03/01/19 12:06,"242 Elm St, Atlanta, GA 30301" -167252,Apple Airpods Headphones,1,150,03/24/19 09:43,"177 Spruce St, Austin, TX 73301" -167253,Apple Airpods Headphones,1,150,03/16/19 18:31,"181 Maple St, Seattle, WA 98101" -167254,Apple Airpods Headphones,1,150,03/24/19 11:31,"379 West St, New York City, NY 10001" -167255,USB-C Charging Cable,1,11.95,03/15/19 17:50,"487 Spruce St, San Francisco, CA 94016" -167256,AA Batteries (4-pack),1,3.84,03/15/19 22:22,"693 South St, Portland, OR 97035" -167257,AAA Batteries (4-pack),1,2.99,03/15/19 11:03,"820 Lake St, San Francisco, CA 94016" -167258,Google Phone,1,600,03/28/19 13:20,"520 Washington St, San Francisco, CA 94016" -167258,USB-C Charging Cable,1,11.95,03/28/19 13:20,"520 Washington St, San Francisco, CA 94016" -167259,Lightning Charging Cable,1,14.95,03/02/19 07:03,"678 8th St, Los Angeles, CA 90001" -167260,Apple Airpods Headphones,1,150,03/22/19 21:25,"431 Ridge St, Seattle, WA 98101" -167261,Google Phone,1,600,03/22/19 14:42,"900 West St, New York City, NY 10001" -167261,USB-C Charging Cable,1,11.95,03/22/19 14:42,"900 West St, New York City, NY 10001" -167261,Wired Headphones,1,11.99,03/22/19 14:42,"900 West St, New York City, NY 10001" -167262,Apple Airpods Headphones,1,150,03/03/19 18:46,"447 Willow St, Boston, MA 02215" -167263,AA Batteries (4-pack),1,3.84,03/08/19 11:36,"971 Jefferson St, San Francisco, CA 94016" -167264,AA Batteries (4-pack),1,3.84,03/22/19 02:27,"857 Jefferson St, Los Angeles, CA 90001" -167265,USB-C Charging Cable,1,11.95,03/06/19 13:48,"630 West St, Boston, MA 02215" -167266,27in FHD Monitor,1,149.99,03/08/19 20:13,"512 Walnut St, Boston, MA 02215" -167267,AAA Batteries (4-pack),2,2.99,03/25/19 13:52,"362 Lakeview St, Boston, MA 02215" -167268,AA Batteries (4-pack),1,3.84,03/25/19 17:36,"692 Adams St, Atlanta, GA 30301" -167269,Lightning Charging Cable,1,14.95,03/17/19 11:24,"846 14th St, New York City, NY 10001" -167270,Wired Headphones,1,11.99,03/07/19 14:19,"584 Hickory St, Dallas, TX 75001" -167271,27in FHD Monitor,1,149.99,03/06/19 20:23,"507 1st St, Dallas, TX 75001" -167272,Lightning Charging Cable,1,14.95,03/17/19 12:44,"739 7th St, Dallas, TX 75001" -167273,USB-C Charging Cable,1,11.95,03/06/19 19:29,"715 Walnut St, Los Angeles, CA 90001" -167274,AAA Batteries (4-pack),1,2.99,03/05/19 21:19,"146 Hill St, Austin, TX 73301" -167275,iPhone,1,700,03/30/19 14:32,"227 Sunset St, Seattle, WA 98101" -167275,ThinkPad Laptop,1,999.99,03/30/19 14:32,"227 Sunset St, Seattle, WA 98101" -167276,Flatscreen TV,1,300,03/12/19 13:08,"63 Wilson St, Los Angeles, CA 90001" -167277,Wired Headphones,1,11.99,03/21/19 19:56,"604 Cedar St, Austin, TX 73301" -167278,AAA Batteries (4-pack),1,2.99,03/31/19 10:41,"426 Ridge St, San Francisco, CA 94016" -167279,Wired Headphones,1,11.99,03/10/19 22:48,"778 Main St, Los Angeles, CA 90001" -167280,Apple Airpods Headphones,1,150,03/29/19 14:39,"483 North St, Seattle, WA 98101" -167281,AA Batteries (4-pack),2,3.84,03/19/19 22:00,"916 Adams St, Atlanta, GA 30301" -167282,Wired Headphones,1,11.99,03/16/19 19:58,"634 Adams St, Atlanta, GA 30301" -167283,27in FHD Monitor,1,149.99,03/17/19 17:25,"542 8th St, Dallas, TX 75001" -167284,Vareebadd Phone,1,400,03/06/19 19:33,"977 River St, San Francisco, CA 94016" -167284,USB-C Charging Cable,1,11.95,03/06/19 19:33,"977 River St, San Francisco, CA 94016" -167285,AA Batteries (4-pack),2,3.84,03/19/19 21:19,"997 Highland St, New York City, NY 10001" -167286,ThinkPad Laptop,1,999.99,03/01/19 14:14,"822 Church St, Atlanta, GA 30301" -167287,Apple Airpods Headphones,1,150,03/04/19 16:05,"342 5th St, Los Angeles, CA 90001" -167288,AA Batteries (4-pack),1,3.84,03/20/19 08:41,"747 Lakeview St, New York City, NY 10001" -167289,AA Batteries (4-pack),2,3.84,03/05/19 01:04,"963 Adams St, Austin, TX 73301" -167290,AA Batteries (4-pack),2,3.84,03/23/19 10:16,"796 1st St, Atlanta, GA 30301" -167291,Flatscreen TV,1,300,03/05/19 08:50,"308 Forest St, Los Angeles, CA 90001" -167292,Bose SoundSport Headphones,1,99.99,03/10/19 00:10,"456 Main St, San Francisco, CA 94016" -167293,Macbook Pro Laptop,1,1700,03/30/19 17:54,"790 Adams St, Portland, OR 97035" -167294,iPhone,1,700,03/04/19 01:01,"762 Maple St, San Francisco, CA 94016" -167294,Wired Headphones,1,11.99,03/04/19 01:01,"762 Maple St, San Francisco, CA 94016" -167295,Wired Headphones,1,11.99,03/25/19 19:18,"50 Lake St, New York City, NY 10001" -167296,Apple Airpods Headphones,1,150,03/13/19 14:04,"929 Washington St, New York City, NY 10001" -167297,Wired Headphones,1,11.99,03/01/19 10:25,"180 Spruce St, Los Angeles, CA 90001" -167298,Apple Airpods Headphones,1,150,03/03/19 14:14,"904 10th St, San Francisco, CA 94016" -167299,Flatscreen TV,1,300,03/28/19 15:07,"158 Willow St, Boston, MA 02215" -167300,Apple Airpods Headphones,1,150,03/19/19 15:38,"426 Washington St, Dallas, TX 75001" -167301,Apple Airpods Headphones,1,150,03/21/19 10:52,"463 North St, New York City, NY 10001" -167302,Wired Headphones,1,11.99,03/11/19 18:23,"975 1st St, Seattle, WA 98101" -167303,Bose SoundSport Headphones,1,99.99,03/06/19 15:10,"753 4th St, New York City, NY 10001" -167304,USB-C Charging Cable,1,11.95,03/07/19 21:32,"925 Lakeview St, Dallas, TX 75001" -167305,USB-C Charging Cable,1,11.95,03/12/19 09:13,"330 Madison St, New York City, NY 10001" -167306,Wired Headphones,1,11.99,03/04/19 10:36,"451 13th St, San Francisco, CA 94016" -167307,Lightning Charging Cable,1,14.95,03/02/19 11:17,"14 Highland St, Austin, TX 73301" -167308,27in 4K Gaming Monitor,1,389.99,03/11/19 19:55,"473 7th St, San Francisco, CA 94016" -167309,Lightning Charging Cable,1,14.95,03/31/19 11:47,"667 Meadow St, Seattle, WA 98101" -167310,34in Ultrawide Monitor,1,379.99,03/21/19 09:58,"156 Jefferson St, Dallas, TX 75001" -167311,iPhone,1,700,03/24/19 17:36,"980 Main St, Atlanta, GA 30301" -167312,Bose SoundSport Headphones,1,99.99,03/06/19 16:07,"181 10th St, New York City, NY 10001" -167313,Bose SoundSport Headphones,1,99.99,03/03/19 20:18,"805 Washington St, Dallas, TX 75001" -167314,AA Batteries (4-pack),1,3.84,03/28/19 18:19,"220 Dogwood St, Dallas, TX 75001" -167315,AA Batteries (4-pack),1,3.84,03/23/19 16:57,"456 Cedar St, Austin, TX 73301" -167316,Flatscreen TV,1,300,03/02/19 14:07,"436 9th St, Boston, MA 02215" -,,,,, -167317,Apple Airpods Headphones,1,150,03/30/19 14:19,"555 Jefferson St, Boston, MA 02215" -167318,Wired Headphones,4,11.99,03/16/19 17:09,"462 13th St, Austin, TX 73301" -167319,Wired Headphones,1,11.99,03/15/19 22:50,"510 Highland St, Boston, MA 02215" -167320,AAA Batteries (4-pack),1,2.99,03/15/19 09:40,"15 Cherry St, San Francisco, CA 94016" -167321,Vareebadd Phone,1,400,03/26/19 00:13,"689 Washington St, Austin, TX 73301" -167322,Wired Headphones,1,11.99,03/31/19 20:00,"381 Washington St, Seattle, WA 98101" -167323,34in Ultrawide Monitor,1,379.99,03/14/19 09:14,"252 Park St, Dallas, TX 75001" -167324,AA Batteries (4-pack),1,3.84,03/12/19 18:33,"308 Elm St, New York City, NY 10001" -167324,Lightning Charging Cable,1,14.95,03/12/19 18:33,"308 Elm St, New York City, NY 10001" -167325,Wired Headphones,1,11.99,03/13/19 21:50,"97 Adams St, New York City, NY 10001" -167326,Flatscreen TV,1,300,03/20/19 21:34,"119 Madison St, Seattle, WA 98101" -167327,Lightning Charging Cable,1,14.95,03/13/19 09:03,"104 9th St, New York City, NY 10001" -167328,USB-C Charging Cable,1,11.95,03/07/19 19:14,"603 Sunset St, Los Angeles, CA 90001" -167329,Bose SoundSport Headphones,1,99.99,03/09/19 17:54,"825 6th St, San Francisco, CA 94016" -167330,Lightning Charging Cable,1,14.95,03/11/19 18:09,"376 Lincoln St, Austin, TX 73301" -167331,AAA Batteries (4-pack),1,2.99,03/14/19 17:32,"146 6th St, Boston, MA 02215" -167332,27in 4K Gaming Monitor,1,389.99,03/27/19 17:11,"925 Walnut St, Dallas, TX 75001" -167333,27in 4K Gaming Monitor,1,389.99,03/03/19 10:27,"717 Church St, Dallas, TX 75001" -167334,34in Ultrawide Monitor,1,379.99,03/20/19 17:02,"852 Johnson St, San Francisco, CA 94016" -167335,27in 4K Gaming Monitor,1,389.99,03/31/19 14:23,"338 5th St, New York City, NY 10001" -167336,Wired Headphones,1,11.99,03/27/19 10:46,"340 Madison St, San Francisco, CA 94016" -167337,27in 4K Gaming Monitor,1,389.99,03/15/19 12:38,"374 Adams St, Austin, TX 73301" -167338,34in Ultrawide Monitor,1,379.99,03/08/19 17:51,"457 Willow St, Los Angeles, CA 90001" -167339,Lightning Charging Cable,2,14.95,03/23/19 16:40,"748 South St, New York City, NY 10001" -167340,Bose SoundSport Headphones,1,99.99,03/13/19 19:29,"651 Elm St, San Francisco, CA 94016" -167341,Apple Airpods Headphones,1,150,03/14/19 15:21,"266 Lincoln St, Los Angeles, CA 90001" -167342,ThinkPad Laptop,1,999.99,03/27/19 13:17,"267 Washington St, Dallas, TX 75001" -167343,Apple Airpods Headphones,1,150,03/02/19 16:19,"257 5th St, New York City, NY 10001" -167344,Bose SoundSport Headphones,1,99.99,03/27/19 21:00,"912 6th St, Los Angeles, CA 90001" -167345,20in Monitor,1,109.99,03/03/19 19:09,"11 5th St, Los Angeles, CA 90001" -167346,AA Batteries (4-pack),1,3.84,03/15/19 09:17,"806 Center St, Los Angeles, CA 90001" -167347,27in FHD Monitor,1,149.99,03/20/19 11:56,"774 Church St, Seattle, WA 98101" -167348,Bose SoundSport Headphones,1,99.99,03/07/19 18:50,"661 13th St, Boston, MA 02215" -167348,AA Batteries (4-pack),1,3.84,03/07/19 18:50,"661 13th St, Boston, MA 02215" -167349,27in FHD Monitor,1,149.99,03/29/19 12:45,"95 Jefferson St, Seattle, WA 98101" -167350,AA Batteries (4-pack),2,3.84,03/24/19 13:54,"61 4th St, Seattle, WA 98101" -167351,27in 4K Gaming Monitor,1,389.99,03/04/19 07:48,"409 West St, Boston, MA 02215" -167352,Wired Headphones,1,11.99,03/13/19 18:03,"598 Jackson St, New York City, NY 10001" -167353,AAA Batteries (4-pack),1,2.99,03/20/19 21:53,"557 Lakeview St, Los Angeles, CA 90001" -167354,USB-C Charging Cable,1,11.95,03/19/19 09:42,"118 Washington St, Atlanta, GA 30301" -167355,Macbook Pro Laptop,1,1700,03/01/19 10:14,"399 Pine St, Los Angeles, CA 90001" -167356,Wired Headphones,1,11.99,03/06/19 15:18,"508 West St, Seattle, WA 98101" -167357,Apple Airpods Headphones,1,150,03/11/19 20:49,"62 Forest St, New York City, NY 10001" -167358,iPhone,1,700,03/19/19 09:35,"606 Maple St, New York City, NY 10001" -167359,Flatscreen TV,1,300,03/07/19 22:02,"110 13th St, Austin, TX 73301" -167360,iPhone,1,700,03/12/19 23:13,"392 North St, San Francisco, CA 94016" -167360,Wired Headphones,1,11.99,03/12/19 23:13,"392 North St, San Francisco, CA 94016" -167361,34in Ultrawide Monitor,1,379.99,03/27/19 18:54,"971 Lake St, San Francisco, CA 94016" -167362,27in FHD Monitor,1,149.99,03/22/19 22:54,"559 Main St, Dallas, TX 75001" -167363,27in FHD Monitor,1,149.99,03/01/19 19:09,"989 5th St, Los Angeles, CA 90001" -167364,Apple Airpods Headphones,1,150,03/25/19 15:49,"616 10th St, San Francisco, CA 94016" -167365,Google Phone,1,600,03/21/19 07:51,"899 7th St, San Francisco, CA 94016" -167366,27in 4K Gaming Monitor,1,389.99,03/14/19 21:27,"10 4th St, Los Angeles, CA 90001" -167367,Apple Airpods Headphones,1,150,03/10/19 18:21,"176 Park St, Los Angeles, CA 90001" -167368,Wired Headphones,1,11.99,03/09/19 12:22,"686 9th St, Dallas, TX 75001" -167369,iPhone,1,700,03/22/19 05:30,"626 Dogwood St, Atlanta, GA 30301" -167370,AAA Batteries (4-pack),1,2.99,03/11/19 19:57,"132 Johnson St, New York City, NY 10001" -167371,Lightning Charging Cable,3,14.95,03/03/19 16:03,"916 Highland St, Atlanta, GA 30301" -167372,Macbook Pro Laptop,1,1700,03/31/19 22:25,"225 Maple St, Boston, MA 02215" -167373,AAA Batteries (4-pack),1,2.99,03/25/19 10:50,"832 14th St, Austin, TX 73301" -167374,Flatscreen TV,1,300,03/27/19 08:02,"57 Maple St, New York City, NY 10001" -167375,27in FHD Monitor,1,149.99,03/07/19 07:07,"482 Lincoln St, San Francisco, CA 94016" -,,,,, -167376,34in Ultrawide Monitor,1,379.99,03/31/19 18:48,"301 5th St, Boston, MA 02215" -167377,27in 4K Gaming Monitor,1,389.99,03/28/19 09:19,"68 Washington St, Atlanta, GA 30301" -167378,Apple Airpods Headphones,1,150,03/28/19 14:19,"942 Jackson St, Dallas, TX 75001" -167379,USB-C Charging Cable,1,11.95,03/02/19 18:35,"680 6th St, New York City, NY 10001" -167380,Bose SoundSport Headphones,1,99.99,03/14/19 11:39,"424 1st St, Portland, OR 97035" -167381,Apple Airpods Headphones,1,150,03/03/19 21:44,"342 South St, Dallas, TX 75001" -167382,Flatscreen TV,1,300,03/29/19 04:54,"523 Sunset St, San Francisco, CA 94016" -167383,USB-C Charging Cable,1,11.95,03/12/19 12:00,"259 Jackson St, San Francisco, CA 94016" -167384,Bose SoundSport Headphones,2,99.99,03/26/19 12:05,"875 Center St, San Francisco, CA 94016" -167385,AAA Batteries (4-pack),3,2.99,03/13/19 13:56,"323 Cherry St, Seattle, WA 98101" -167386,20in Monitor,1,109.99,03/10/19 18:35,"423 Jackson St, San Francisco, CA 94016" -167387,Wired Headphones,1,11.99,03/06/19 11:01,"241 Cherry St, Boston, MA 02215" -167388,Apple Airpods Headphones,1,150,03/24/19 17:34,"117 Dogwood St, Boston, MA 02215" -167388,27in 4K Gaming Monitor,1,389.99,03/24/19 17:34,"117 Dogwood St, Boston, MA 02215" -167389,Wired Headphones,1,11.99,03/12/19 18:35,"631 Willow St, Austin, TX 73301" -167390,AAA Batteries (4-pack),1,2.99,03/02/19 08:26,"484 Walnut St, Atlanta, GA 30301" -167391,iPhone,1,700,03/02/19 15:47,"2 Lakeview St, New York City, NY 10001" -167392,AAA Batteries (4-pack),1,2.99,03/26/19 16:11,"102 South St, New York City, NY 10001" -167393,Lightning Charging Cable,1,14.95,03/29/19 09:27,"79 2nd St, New York City, NY 10001" -167394,34in Ultrawide Monitor,1,379.99,03/07/19 19:27,"796 Sunset St, Los Angeles, CA 90001" -167395,USB-C Charging Cable,1,11.95,03/16/19 15:43,"80 Center St, Atlanta, GA 30301" -167396,USB-C Charging Cable,2,11.95,03/09/19 14:05,"876 Hill St, Los Angeles, CA 90001" -167397,Macbook Pro Laptop,1,1700,03/22/19 12:49,"130 Center St, New York City, NY 10001" -167398,AA Batteries (4-pack),1,3.84,03/20/19 20:19,"7 Lincoln St, Los Angeles, CA 90001" -167399,USB-C Charging Cable,1,11.95,03/24/19 15:09,"977 Lakeview St, Dallas, TX 75001" -167400,USB-C Charging Cable,1,11.95,03/09/19 23:02,"10 12th St, San Francisco, CA 94016" -167401,USB-C Charging Cable,1,11.95,03/17/19 00:08,"723 River St, Boston, MA 02215" -167402,Apple Airpods Headphones,1,150,03/14/19 19:22,"567 Park St, New York City, NY 10001" -167403,Macbook Pro Laptop,1,1700,03/13/19 07:41,"343 Sunset St, Boston, MA 02215" -167404,AAA Batteries (4-pack),3,2.99,03/12/19 03:38,"406 River St, New York City, NY 10001" -167405,Lightning Charging Cable,2,14.95,03/07/19 10:07,"119 Center St, Boston, MA 02215" -167406,USB-C Charging Cable,1,11.95,03/08/19 18:03,"549 9th St, San Francisco, CA 94016" -167407,27in FHD Monitor,1,149.99,03/11/19 10:04,"898 Meadow St, Dallas, TX 75001" -167408,Lightning Charging Cable,1,14.95,03/28/19 21:53,"397 Forest St, Seattle, WA 98101" -167409,AA Batteries (4-pack),1,3.84,03/06/19 19:23,"528 6th St, San Francisco, CA 94016" -167410,Lightning Charging Cable,1,14.95,03/08/19 04:37,"566 Highland St, San Francisco, CA 94016" -167411,Wired Headphones,1,11.99,03/24/19 17:20,"963 1st St, Los Angeles, CA 90001" -167412,USB-C Charging Cable,1,11.95,03/20/19 12:16,"991 8th St, Boston, MA 02215" -167413,Lightning Charging Cable,1,14.95,03/06/19 17:09,"502 Johnson St, Dallas, TX 75001" -167414,AAA Batteries (4-pack),1,2.99,03/29/19 18:59,"409 6th St, Austin, TX 73301" -167415,27in FHD Monitor,1,149.99,03/06/19 12:27,"26 Walnut St, Dallas, TX 75001" -167416,AAA Batteries (4-pack),2,2.99,03/13/19 22:13,"551 7th St, Boston, MA 02215" -167417,ThinkPad Laptop,1,999.99,03/26/19 13:23,"36 Willow St, San Francisco, CA 94016" -167418,Macbook Pro Laptop,1,1700,03/18/19 09:01,"463 11th St, Dallas, TX 75001" -167419,AA Batteries (4-pack),1,3.84,03/18/19 13:32,"297 Elm St, San Francisco, CA 94016" -167420,Bose SoundSport Headphones,1,99.99,03/29/19 21:15,"82 Ridge St, New York City, NY 10001" -167421,Apple Airpods Headphones,1,150,03/12/19 00:05,"410 River St, Seattle, WA 98101" -167422,AAA Batteries (4-pack),1,2.99,03/09/19 17:06,"801 Ridge St, Boston, MA 02215" -167423,Lightning Charging Cable,1,14.95,03/25/19 22:01,"279 West St, Boston, MA 02215" -167424,USB-C Charging Cable,1,11.95,03/18/19 15:13,"611 Lakeview St, San Francisco, CA 94016" -167425,Vareebadd Phone,1,400,03/22/19 12:25,"174 Ridge St, San Francisco, CA 94016" -167426,Bose SoundSport Headphones,1,99.99,03/17/19 22:36,"236 10th St, Boston, MA 02215" -167427,Wired Headphones,1,11.99,03/22/19 18:06,"18 Walnut St, Los Angeles, CA 90001" -167428,AAA Batteries (4-pack),2,2.99,03/23/19 13:29,"492 Lakeview St, New York City, NY 10001" -167429,Lightning Charging Cable,1,14.95,03/27/19 05:05,"430 Lake St, San Francisco, CA 94016" -167429,Lightning Charging Cable,1,14.95,03/27/19 05:05,"430 Lake St, San Francisco, CA 94016" -167430,Lightning Charging Cable,1,14.95,03/06/19 19:42,"900 14th St, Dallas, TX 75001" -167431,Lightning Charging Cable,1,14.95,03/19/19 20:47,"904 Meadow St, Portland, ME 04101" -167432,34in Ultrawide Monitor,1,379.99,03/24/19 19:14,"515 Cedar St, Dallas, TX 75001" -167433,27in 4K Gaming Monitor,1,389.99,03/15/19 07:48,"391 2nd St, Atlanta, GA 30301" -167433,Lightning Charging Cable,1,14.95,03/15/19 07:48,"391 2nd St, Atlanta, GA 30301" -167434,Apple Airpods Headphones,1,150,03/19/19 07:28,"836 West St, San Francisco, CA 94016" -167435,USB-C Charging Cable,2,11.95,03/31/19 08:52,"608 Wilson St, San Francisco, CA 94016" -167436,Bose SoundSport Headphones,1,99.99,03/02/19 20:03,"13 Main St, Portland, OR 97035" -167437,USB-C Charging Cable,1,11.95,03/08/19 19:06,"713 1st St, San Francisco, CA 94016" -167438,USB-C Charging Cable,1,11.95,03/15/19 11:47,"115 2nd St, San Francisco, CA 94016" -167439,Lightning Charging Cable,1,14.95,03/23/19 14:00,"39 South St, Boston, MA 02215" -167440,Lightning Charging Cable,1,14.95,03/23/19 20:24,"512 Washington St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -167441,27in 4K Gaming Monitor,1,389.99,03/11/19 16:31,"384 Lakeview St, Dallas, TX 75001" -167441,Flatscreen TV,1,300,03/11/19 16:31,"384 Lakeview St, Dallas, TX 75001" -167442,Wired Headphones,1,11.99,03/24/19 19:56,"997 1st St, San Francisco, CA 94016" -167443,AA Batteries (4-pack),1,3.84,03/05/19 09:44,"944 Park St, San Francisco, CA 94016" -167444,Wired Headphones,1,11.99,03/10/19 18:44,"20 2nd St, Atlanta, GA 30301" -167445,Wired Headphones,1,11.99,03/11/19 20:45,"137 Pine St, Portland, OR 97035" -167446,AA Batteries (4-pack),1,3.84,03/29/19 17:11,"465 Cherry St, San Francisco, CA 94016" -167447,iPhone,1,700,03/24/19 23:17,"707 Washington St, Boston, MA 02215" -167447,Wired Headphones,1,11.99,03/24/19 23:17,"707 Washington St, Boston, MA 02215" -167448,Flatscreen TV,1,300,03/03/19 20:41,"918 Lake St, New York City, NY 10001" -167449,Lightning Charging Cable,1,14.95,03/05/19 11:44,"484 River St, Seattle, WA 98101" -167450,Apple Airpods Headphones,1,150,03/12/19 12:49,"712 Elm St, Austin, TX 73301" -167451,Wired Headphones,1,11.99,03/21/19 15:53,"306 1st St, San Francisco, CA 94016" -167452,AA Batteries (4-pack),1,3.84,03/02/19 11:32,"93 13th St, New York City, NY 10001" -167453,Lightning Charging Cable,1,14.95,03/05/19 06:58,"389 Main St, Portland, OR 97035" -167454,27in 4K Gaming Monitor,1,389.99,03/04/19 12:00,"611 Wilson St, Austin, TX 73301" -167455,Apple Airpods Headphones,1,150,03/23/19 00:19,"478 Park St, Atlanta, GA 30301" -167456,AAA Batteries (4-pack),1,2.99,03/30/19 23:20,"732 7th St, San Francisco, CA 94016" -167457,ThinkPad Laptop,1,999.99,03/29/19 15:07,"867 12th St, Los Angeles, CA 90001" -167458,Apple Airpods Headphones,1,150,03/03/19 17:54,"176 5th St, Boston, MA 02215" -167459,ThinkPad Laptop,1,999.99,03/26/19 11:59,"659 Lakeview St, Atlanta, GA 30301" -167460,AAA Batteries (4-pack),2,2.99,03/06/19 19:19,"142 Jackson St, San Francisco, CA 94016" -167461,34in Ultrawide Monitor,1,379.99,03/30/19 19:32,"241 2nd St, Atlanta, GA 30301" -167462,Lightning Charging Cable,1,14.95,03/14/19 01:28,"527 Forest St, Austin, TX 73301" -167463,AA Batteries (4-pack),2,3.84,03/08/19 13:39,"835 Hickory St, Seattle, WA 98101" -167464,20in Monitor,1,109.99,03/19/19 18:59,"791 10th St, Dallas, TX 75001" -167465,AA Batteries (4-pack),1,3.84,03/23/19 20:53,"765 2nd St, Dallas, TX 75001" -167466,USB-C Charging Cable,1,11.95,03/10/19 00:43,"654 Jackson St, Dallas, TX 75001" -167467,Google Phone,1,600,03/18/19 10:13,"190 Wilson St, Atlanta, GA 30301" -167468,Apple Airpods Headphones,1,150,03/31/19 11:24,"697 Hill St, Atlanta, GA 30301" -167469,Google Phone,1,600,03/03/19 11:22,"603 Highland St, New York City, NY 10001" -167469,USB-C Charging Cable,1,11.95,03/03/19 11:22,"603 Highland St, New York City, NY 10001" -167470,AA Batteries (4-pack),1,3.84,03/22/19 18:16,"22 Cherry St, Los Angeles, CA 90001" -167471,27in FHD Monitor,1,149.99,03/04/19 20:39,"935 Maple St, San Francisco, CA 94016" -167472,AA Batteries (4-pack),1,3.84,03/30/19 11:28,"25 Willow St, Portland, OR 97035" -167473,Macbook Pro Laptop,1,1700,03/18/19 07:18,"833 Park St, Dallas, TX 75001" -167474,Wired Headphones,1,11.99,03/06/19 19:55,"278 Jackson St, Austin, TX 73301" -167475,iPhone,1,700,03/25/19 12:37,"400 Lincoln St, San Francisco, CA 94016" -167476,Bose SoundSport Headphones,1,99.99,03/28/19 19:18,"923 Maple St, Dallas, TX 75001" -167477,AA Batteries (4-pack),1,3.84,03/14/19 19:15,"780 Meadow St, Boston, MA 02215" -167478,Google Phone,1,600,03/02/19 07:46,"426 North St, Boston, MA 02215" -167479,Wired Headphones,1,11.99,03/15/19 17:45,"323 13th St, Atlanta, GA 30301" -167480,Lightning Charging Cable,1,14.95,03/07/19 20:05,"86 Adams St, New York City, NY 10001" -167481,Lightning Charging Cable,1,14.95,03/23/19 10:12,"360 Forest St, Seattle, WA 98101" -167482,USB-C Charging Cable,1,11.95,03/01/19 16:36,"249 Center St, Atlanta, GA 30301" -167483,Bose SoundSport Headphones,1,99.99,03/23/19 22:16,"934 1st St, San Francisco, CA 94016" -167484,27in FHD Monitor,1,149.99,03/11/19 14:52,"790 Pine St, Boston, MA 02215" -167485,LG Washing Machine,1,600.0,03/31/19 23:28,"549 Ridge St, San Francisco, CA 94016" -167486,AAA Batteries (4-pack),1,2.99,03/27/19 00:02,"826 7th St, New York City, NY 10001" -167487,AAA Batteries (4-pack),4,2.99,03/13/19 07:22,"218 Madison St, Los Angeles, CA 90001" -167488,iPhone,1,700,03/19/19 18:21,"687 Elm St, New York City, NY 10001" -167488,Lightning Charging Cable,1,14.95,03/19/19 18:21,"687 Elm St, New York City, NY 10001" -167489,Apple Airpods Headphones,1,150,03/10/19 11:47,"352 8th St, San Francisco, CA 94016" -167490,LG Dryer,1,600.0,03/02/19 14:32,"565 Jackson St, San Francisco, CA 94016" -167491,USB-C Charging Cable,1,11.95,03/29/19 15:03,"430 5th St, Portland, OR 97035" -167492,Bose SoundSport Headphones,1,99.99,03/19/19 12:11,"628 Wilson St, Atlanta, GA 30301" -167493,Bose SoundSport Headphones,1,99.99,03/21/19 14:50,"324 Jackson St, San Francisco, CA 94016" -167494,USB-C Charging Cable,1,11.95,03/16/19 19:36,"998 West St, Los Angeles, CA 90001" -167495,ThinkPad Laptop,1,999.99,03/27/19 10:16,"524 Walnut St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -167496,34in Ultrawide Monitor,1,379.99,03/27/19 16:13,"569 14th St, Seattle, WA 98101" -167497,AAA Batteries (4-pack),2,2.99,03/29/19 10:41,"351 Highland St, Los Angeles, CA 90001" -167498,Wired Headphones,1,11.99,03/17/19 10:46,"465 Main St, Portland, OR 97035" -167499,34in Ultrawide Monitor,1,379.99,03/11/19 08:56,"766 12th St, Portland, OR 97035" -167500,AA Batteries (4-pack),1,3.84,03/27/19 10:07,"774 Spruce St, Los Angeles, CA 90001" -167501,Bose SoundSport Headphones,1,99.99,03/20/19 18:59,"525 14th St, New York City, NY 10001" -167502,27in FHD Monitor,1,149.99,03/12/19 13:38,"60 6th St, Atlanta, GA 30301" -167503,USB-C Charging Cable,1,11.95,03/26/19 14:06,"970 Wilson St, Dallas, TX 75001" -167504,AA Batteries (4-pack),1,3.84,03/25/19 17:39,"853 Hickory St, Seattle, WA 98101" -167505,AAA Batteries (4-pack),1,2.99,03/19/19 10:39,"26 Ridge St, San Francisco, CA 94016" -167506,Lightning Charging Cable,1,14.95,03/26/19 21:30,"885 13th St, Los Angeles, CA 90001" -167507,USB-C Charging Cable,1,11.95,03/13/19 22:34,"268 Willow St, San Francisco, CA 94016" -167508,Lightning Charging Cable,1,14.95,03/29/19 18:32,"257 Willow St, Dallas, TX 75001" -167509,USB-C Charging Cable,1,11.95,03/24/19 20:26,"809 Sunset St, Austin, TX 73301" -167510,Lightning Charging Cable,2,14.95,03/06/19 22:11,"88 Willow St, Portland, OR 97035" -167511,Macbook Pro Laptop,1,1700,03/12/19 09:16,"150 12th St, Seattle, WA 98101" -167512,AA Batteries (4-pack),1,3.84,03/17/19 21:29,"542 Jackson St, San Francisco, CA 94016" -167513,AAA Batteries (4-pack),1,2.99,03/15/19 09:46,"548 Walnut St, San Francisco, CA 94016" -167514,20in Monitor,1,109.99,03/14/19 09:18,"34 Willow St, Seattle, WA 98101" -167515,34in Ultrawide Monitor,1,379.99,03/02/19 16:34,"86 Cedar St, Atlanta, GA 30301" -167516,Lightning Charging Cable,1,14.95,03/11/19 04:39,"334 Dogwood St, San Francisco, CA 94016" -167517,Lightning Charging Cable,1,14.95,03/19/19 22:01,"270 Adams St, Portland, OR 97035" -167518,Lightning Charging Cable,1,14.95,03/05/19 20:54,"801 13th St, Los Angeles, CA 90001" -167519,Lightning Charging Cable,1,14.95,03/30/19 18:23,"978 Adams St, San Francisco, CA 94016" -167520,Wired Headphones,2,11.99,03/03/19 18:17,"332 Hickory St, San Francisco, CA 94016" -167521,Apple Airpods Headphones,1,150,03/23/19 17:23,"300 Washington St, New York City, NY 10001" -167522,27in FHD Monitor,1,149.99,03/23/19 14:40,"980 Chestnut St, Seattle, WA 98101" -167523,AA Batteries (4-pack),1,3.84,03/02/19 01:42,"640 West St, Atlanta, GA 30301" -167524,Wired Headphones,1,11.99,03/29/19 11:38,"174 Lincoln St, Los Angeles, CA 90001" -167525,AAA Batteries (4-pack),4,2.99,03/16/19 11:52,"143 Dogwood St, San Francisco, CA 94016" -167526,Macbook Pro Laptop,1,1700,03/09/19 16:10,"725 Park St, Boston, MA 02215" -167527,USB-C Charging Cable,1,11.95,03/29/19 12:52,"726 Johnson St, Seattle, WA 98101" -167528,Apple Airpods Headphones,1,150,03/11/19 14:01,"794 Chestnut St, San Francisco, CA 94016" -167529,USB-C Charging Cable,1,11.95,03/19/19 06:54,"100 Hickory St, Dallas, TX 75001" -167530,Lightning Charging Cable,1,14.95,03/09/19 12:01,"427 West St, Austin, TX 73301" -167531,Lightning Charging Cable,1,14.95,03/18/19 23:12,"266 Washington St, Austin, TX 73301" -167532,iPhone,1,700,03/05/19 08:02,"952 Main St, San Francisco, CA 94016" -167532,Apple Airpods Headphones,1,150,03/05/19 08:02,"952 Main St, San Francisco, CA 94016" -167533,27in FHD Monitor,1,149.99,03/05/19 21:24,"260 Dogwood St, San Francisco, CA 94016" -167534,Bose SoundSport Headphones,1,99.99,03/31/19 20:51,"551 Maple St, San Francisco, CA 94016" -167535,Lightning Charging Cable,1,14.95,03/11/19 19:05,"498 1st St, Los Angeles, CA 90001" -167536,Apple Airpods Headphones,1,150,03/25/19 18:59,"284 Highland St, San Francisco, CA 94016" -167537,20in Monitor,1,109.99,03/03/19 09:47,"620 Main St, Los Angeles, CA 90001" -167538,Lightning Charging Cable,1,14.95,03/20/19 10:30,"161 Meadow St, San Francisco, CA 94016" -167539,Apple Airpods Headphones,1,150,03/17/19 11:16,"805 Meadow St, Austin, TX 73301" -167540,USB-C Charging Cable,1,11.95,03/13/19 12:44,"117 Lincoln St, Dallas, TX 75001" -167541,Bose SoundSport Headphones,1,99.99,03/29/19 17:56,"96 Lincoln St, Los Angeles, CA 90001" -167542,Lightning Charging Cable,1,14.95,03/20/19 08:37,"716 River St, Seattle, WA 98101" -167543,Apple Airpods Headphones,1,150,03/05/19 13:09,"921 Washington St, Portland, OR 97035" -167544,Lightning Charging Cable,1,14.95,03/15/19 20:08,"245 Forest St, Seattle, WA 98101" -167545,27in FHD Monitor,1,149.99,03/14/19 17:45,"599 Hill St, San Francisco, CA 94016" -167546,Google Phone,1,600,03/27/19 18:00,"252 Elm St, New York City, NY 10001" -167547,AA Batteries (4-pack),2,3.84,03/04/19 23:30,"835 West St, Atlanta, GA 30301" -167548,AA Batteries (4-pack),1,3.84,03/27/19 13:16,"322 14th St, New York City, NY 10001" -167549,Flatscreen TV,1,300,03/27/19 08:47,"30 8th St, Portland, OR 97035" -167550,34in Ultrawide Monitor,1,379.99,03/20/19 10:45,"310 Madison St, San Francisco, CA 94016" -167551,AA Batteries (4-pack),1,3.84,03/31/19 20:22,"884 Hill St, Los Angeles, CA 90001" -167552,Lightning Charging Cable,1,14.95,03/28/19 16:27,"796 Chestnut St, Seattle, WA 98101" -167553,Wired Headphones,1,11.99,03/16/19 12:27,"632 Center St, San Francisco, CA 94016" -167554,AA Batteries (4-pack),1,3.84,03/25/19 14:01,"264 Johnson St, New York City, NY 10001" -167555,Apple Airpods Headphones,1,150,03/14/19 10:54,"619 5th St, San Francisco, CA 94016" -167556,Wired Headphones,2,11.99,03/13/19 06:37,"376 12th St, Seattle, WA 98101" -167557,AA Batteries (4-pack),2,3.84,03/13/19 20:03,"114 12th St, Boston, MA 02215" -167558,Lightning Charging Cable,1,14.95,03/09/19 19:00,"355 Cherry St, Portland, OR 97035" -167559,USB-C Charging Cable,1,11.95,03/31/19 19:41,"270 4th St, New York City, NY 10001" -167560,AA Batteries (4-pack),1,3.84,03/06/19 22:09,"535 Dogwood St, San Francisco, CA 94016" -167561,AA Batteries (4-pack),1,3.84,03/26/19 21:55,"532 4th St, Dallas, TX 75001" -167562,USB-C Charging Cable,1,11.95,03/31/19 12:06,"292 North St, Dallas, TX 75001" -167563,USB-C Charging Cable,1,11.95,03/09/19 13:35,"856 Cedar St, Los Angeles, CA 90001" -167564,27in FHD Monitor,1,149.99,03/23/19 10:08,"357 Lakeview St, San Francisco, CA 94016" -167565,34in Ultrawide Monitor,1,379.99,03/18/19 06:06,"468 Forest St, Dallas, TX 75001" -167566,27in FHD Monitor,1,149.99,03/07/19 09:18,"590 9th St, San Francisco, CA 94016" -167567,Macbook Pro Laptop,1,1700,03/03/19 15:42,"787 Sunset St, New York City, NY 10001" -167567,Lightning Charging Cable,1,14.95,03/03/19 15:42,"787 Sunset St, New York City, NY 10001" -167568,Apple Airpods Headphones,1,150,03/07/19 22:11,"843 Ridge St, Los Angeles, CA 90001" -167569,USB-C Charging Cable,1,11.95,03/16/19 20:28,"713 Elm St, Atlanta, GA 30301" -167570,USB-C Charging Cable,1,11.95,03/22/19 09:54,"207 Hickory St, San Francisco, CA 94016" -167571,AAA Batteries (4-pack),1,2.99,03/21/19 19:50,"781 Wilson St, Los Angeles, CA 90001" -167572,Apple Airpods Headphones,1,150,03/18/19 12:54,"88 Wilson St, Los Angeles, CA 90001" -167573,Wired Headphones,1,11.99,03/15/19 16:39,"681 Main St, San Francisco, CA 94016" -167574,Lightning Charging Cable,1,14.95,03/14/19 09:02,"894 12th St, Los Angeles, CA 90001" -167575,AA Batteries (4-pack),1,3.84,03/20/19 11:20,"596 Forest St, San Francisco, CA 94016" -167576,ThinkPad Laptop,1,999.99,03/18/19 19:18,"821 North St, New York City, NY 10001" -167577,AAA Batteries (4-pack),1,2.99,03/27/19 14:10,"229 2nd St, San Francisco, CA 94016" -167578,ThinkPad Laptop,1,999.99,03/04/19 10:01,"987 Lake St, Los Angeles, CA 90001" -167579,Wired Headphones,1,11.99,03/10/19 16:16,"295 Church St, Seattle, WA 98101" -167580,Wired Headphones,1,11.99,03/08/19 13:39,"632 Main St, New York City, NY 10001" -167581,AA Batteries (4-pack),1,3.84,03/30/19 20:24,"663 5th St, Dallas, TX 75001" -167582,Wired Headphones,1,11.99,03/26/19 15:28,"268 Dogwood St, Los Angeles, CA 90001" -167583,Google Phone,1,600,03/15/19 09:51,"612 Madison St, San Francisco, CA 94016" -167584,Lightning Charging Cable,1,14.95,03/01/19 13:05,"150 Maple St, New York City, NY 10001" -167585,34in Ultrawide Monitor,1,379.99,03/02/19 01:43,"25 South St, Portland, OR 97035" -167586,Apple Airpods Headphones,1,150,03/30/19 21:27,"5 Willow St, New York City, NY 10001" -167587,Lightning Charging Cable,1,14.95,03/25/19 16:05,"807 10th St, New York City, NY 10001" -167588,Lightning Charging Cable,1,14.95,03/24/19 22:24,"527 Cherry St, Portland, OR 97035" -167589,USB-C Charging Cable,1,11.95,03/10/19 21:29,"192 Elm St, Portland, ME 04101" -167590,USB-C Charging Cable,1,11.95,03/06/19 12:49,"144 1st St, New York City, NY 10001" -167591,Lightning Charging Cable,1,14.95,03/18/19 22:24,"138 Cedar St, Boston, MA 02215" -167591,Apple Airpods Headphones,1,150,03/18/19 22:24,"138 Cedar St, Boston, MA 02215" -167592,Lightning Charging Cable,1,14.95,03/16/19 15:48,"632 Adams St, San Francisco, CA 94016" -167593,Flatscreen TV,1,300,03/09/19 19:21,"797 10th St, Portland, OR 97035" -167594,AA Batteries (4-pack),1,3.84,03/04/19 18:29,"993 Cherry St, San Francisco, CA 94016" -167595,34in Ultrawide Monitor,1,379.99,03/24/19 13:14,"351 North St, San Francisco, CA 94016" -167596,34in Ultrawide Monitor,1,379.99,03/31/19 20:19,"206 Washington St, Los Angeles, CA 90001" -167597,USB-C Charging Cable,1,11.95,03/15/19 13:18,"885 Main St, Seattle, WA 98101" -167598,Vareebadd Phone,1,400,03/28/19 22:29,"105 River St, San Francisco, CA 94016" -167598,Wired Headphones,1,11.99,03/28/19 22:29,"105 River St, San Francisco, CA 94016" -167599,USB-C Charging Cable,1,11.95,03/18/19 11:00,"259 Jefferson St, Dallas, TX 75001" -167600,AAA Batteries (4-pack),2,2.99,03/18/19 19:38,"903 Hickory St, New York City, NY 10001" -167601,Bose SoundSport Headphones,1,99.99,03/23/19 16:18,"528 Jackson St, Dallas, TX 75001" -167602,USB-C Charging Cable,1,11.95,03/15/19 14:41,"471 Willow St, Los Angeles, CA 90001" -167603,Wired Headphones,2,11.99,03/28/19 11:33,"63 6th St, Los Angeles, CA 90001" -167604,Wired Headphones,1,11.99,03/05/19 13:03,"984 Elm St, Los Angeles, CA 90001" -167605,27in FHD Monitor,1,149.99,03/26/19 11:10,"452 Spruce St, Dallas, TX 75001" -167606,USB-C Charging Cable,1,11.95,03/30/19 14:05,"904 South St, Atlanta, GA 30301" -167607,AAA Batteries (4-pack),2,2.99,03/15/19 10:44,"766 Adams St, San Francisco, CA 94016" -167608,Google Phone,1,600,03/09/19 17:25,"703 Spruce St, New York City, NY 10001" -167609,Wired Headphones,1,11.99,03/14/19 08:12,"80 Walnut St, Dallas, TX 75001" -167610,USB-C Charging Cable,1,11.95,03/09/19 11:30,"352 Pine St, San Francisco, CA 94016" -167611,AA Batteries (4-pack),1,3.84,03/19/19 20:27,"203 North St, San Francisco, CA 94016" -167612,Wired Headphones,1,11.99,03/08/19 12:51,"697 Spruce St, New York City, NY 10001" -167613,Lightning Charging Cable,1,14.95,03/24/19 13:42,"443 Willow St, Los Angeles, CA 90001" -167614,Google Phone,1,600,03/24/19 18:47,"659 13th St, Boston, MA 02215" -167615,Apple Airpods Headphones,1,150,03/22/19 11:13,"786 Main St, Seattle, WA 98101" -167616,USB-C Charging Cable,1,11.95,03/27/19 14:57,"286 5th St, Boston, MA 02215" -167617,AA Batteries (4-pack),1,3.84,03/16/19 18:25,"136 Walnut St, Seattle, WA 98101" -167618,AAA Batteries (4-pack),1,2.99,03/25/19 18:34,"842 Elm St, Boston, MA 02215" -167619,AAA Batteries (4-pack),1,2.99,03/05/19 15:04,"235 5th St, New York City, NY 10001" -167620,Wired Headphones,1,11.99,03/16/19 13:55,"239 9th St, Los Angeles, CA 90001" -167621,Wired Headphones,1,11.99,03/07/19 08:03,"959 5th St, Seattle, WA 98101" -167622,34in Ultrawide Monitor,1,379.99,03/26/19 20:59,"680 10th St, Dallas, TX 75001" -167623,AAA Batteries (4-pack),1,2.99,03/26/19 12:13,"369 South St, Dallas, TX 75001" -167624,Lightning Charging Cable,1,14.95,03/14/19 18:13,"388 North St, Boston, MA 02215" -167625,LG Dryer,1,600.0,03/20/19 17:38,"877 Dogwood St, Los Angeles, CA 90001" -167626,Macbook Pro Laptop,1,1700,03/21/19 17:26,"820 Johnson St, Seattle, WA 98101" -167627,Lightning Charging Cable,1,14.95,03/12/19 12:37,"914 Johnson St, San Francisco, CA 94016" -167628,Lightning Charging Cable,1,14.95,03/15/19 20:03,"757 Main St, Los Angeles, CA 90001" -167629,iPhone,1,700,03/30/19 22:03,"302 Hickory St, Seattle, WA 98101" -167630,AAA Batteries (4-pack),1,2.99,03/08/19 16:25,"305 5th St, Los Angeles, CA 90001" -167631,AA Batteries (4-pack),1,3.84,03/21/19 20:31,"26 1st St, San Francisco, CA 94016" -167632,27in FHD Monitor,2,149.99,03/18/19 10:19,"534 Church St, Dallas, TX 75001" -167633,AAA Batteries (4-pack),1,2.99,03/07/19 11:48,"367 1st St, Boston, MA 02215" -167634,Wired Headphones,1,11.99,03/25/19 20:06,"810 Sunset St, Los Angeles, CA 90001" -167635,Macbook Pro Laptop,1,1700,03/29/19 22:02,"14 13th St, Austin, TX 73301" -167636,iPhone,1,700,03/18/19 00:46,"208 Lakeview St, Los Angeles, CA 90001" -167637,AA Batteries (4-pack),1,3.84,03/11/19 22:22,"774 Spruce St, New York City, NY 10001" -167638,USB-C Charging Cable,1,11.95,03/29/19 10:21,"416 Meadow St, Dallas, TX 75001" -167639,Wired Headphones,1,11.99,03/06/19 18:53,"86 Walnut St, San Francisco, CA 94016" -167640,Apple Airpods Headphones,1,150,03/17/19 15:04,"370 Hickory St, San Francisco, CA 94016" -167641,27in FHD Monitor,1,149.99,03/05/19 09:04,"367 Church St, Portland, OR 97035" -167642,Lightning Charging Cable,1,14.95,03/26/19 20:08,"90 Jefferson St, New York City, NY 10001" -167643,Google Phone,1,600,03/30/19 11:31,"811 4th St, Los Angeles, CA 90001" -167643,USB-C Charging Cable,1,11.95,03/30/19 11:31,"811 4th St, Los Angeles, CA 90001" -167644,Google Phone,1,600,03/27/19 20:49,"12 9th St, Atlanta, GA 30301" -167645,AA Batteries (4-pack),2,3.84,03/11/19 19:23,"856 Maple St, Los Angeles, CA 90001" -167646,Bose SoundSport Headphones,1,99.99,03/18/19 05:39,"346 West St, Atlanta, GA 30301" -167647,Wired Headphones,1,11.99,03/06/19 12:00,"394 5th St, Los Angeles, CA 90001" -167648,Apple Airpods Headphones,1,150,03/18/19 23:33,"75 6th St, Dallas, TX 75001" -167649,Wired Headphones,1,11.99,03/19/19 17:59,"996 7th St, Portland, OR 97035" -167650,Wired Headphones,1,11.99,03/30/19 05:14,"319 Forest St, San Francisco, CA 94016" -167651,27in 4K Gaming Monitor,1,389.99,03/24/19 12:02,"385 Forest St, Dallas, TX 75001" -167652,AA Batteries (4-pack),1,3.84,03/31/19 11:05,"387 Walnut St, Boston, MA 02215" -167653,Vareebadd Phone,1,400,03/11/19 03:06,"639 Lake St, San Francisco, CA 94016" -167654,27in FHD Monitor,1,149.99,03/29/19 15:10,"654 5th St, Portland, OR 97035" -167654,27in FHD Monitor,1,149.99,03/29/19 15:10,"654 5th St, Portland, OR 97035" -167655,Lightning Charging Cable,1,14.95,03/15/19 01:11,"249 11th St, Los Angeles, CA 90001" -167656,AA Batteries (4-pack),1,3.84,03/31/19 15:57,"93 Park St, Seattle, WA 98101" -167657,20in Monitor,1,109.99,03/26/19 20:15,"329 11th St, San Francisco, CA 94016" -167658,AA Batteries (4-pack),1,3.84,03/14/19 14:37,"63 7th St, San Francisco, CA 94016" -167659,Vareebadd Phone,1,400,03/12/19 07:28,"11 Park St, Austin, TX 73301" -167659,USB-C Charging Cable,1,11.95,03/12/19 07:28,"11 Park St, Austin, TX 73301" -167660,27in FHD Monitor,1,149.99,03/11/19 14:09,"679 11th St, Los Angeles, CA 90001" -167661,20in Monitor,1,109.99,03/12/19 12:50,"316 Hill St, Boston, MA 02215" -167662,AA Batteries (4-pack),1,3.84,03/08/19 23:04,"735 South St, Seattle, WA 98101" -167663,Bose SoundSport Headphones,1,99.99,03/28/19 11:52,"386 Elm St, New York City, NY 10001" -167664,27in 4K Gaming Monitor,1,389.99,03/31/19 13:50,"274 Main St, San Francisco, CA 94016" -167665,iPhone,1,700,03/10/19 23:00,"967 4th St, San Francisco, CA 94016" -167666,AAA Batteries (4-pack),1,2.99,03/13/19 21:32,"865 Willow St, Atlanta, GA 30301" -167667,AAA Batteries (4-pack),1,2.99,03/15/19 17:57,"852 8th St, Dallas, TX 75001" -167668,Google Phone,1,600,03/25/19 15:55,"981 Jackson St, Boston, MA 02215" -167669,AA Batteries (4-pack),1,3.84,03/21/19 08:59,"265 7th St, San Francisco, CA 94016" -167670,27in FHD Monitor,1,149.99,03/27/19 19:35,"556 Madison St, Austin, TX 73301" -167671,Lightning Charging Cable,1,14.95,03/29/19 12:26,"277 Lincoln St, New York City, NY 10001" -167672,Bose SoundSport Headphones,1,99.99,03/30/19 11:12,"865 Cedar St, New York City, NY 10001" -167673,Wired Headphones,1,11.99,03/13/19 10:23,"973 Meadow St, New York City, NY 10001" -167674,27in FHD Monitor,1,149.99,03/14/19 10:23,"875 Cedar St, Seattle, WA 98101" -167675,Apple Airpods Headphones,1,150,03/04/19 14:39,"600 North St, New York City, NY 10001" -167676,27in 4K Gaming Monitor,1,389.99,03/04/19 16:58,"73 West St, San Francisco, CA 94016" -167677,Lightning Charging Cable,1,14.95,03/24/19 11:29,"262 1st St, Los Angeles, CA 90001" -167678,Lightning Charging Cable,1,14.95,03/16/19 13:08,"880 Adams St, Portland, OR 97035" -167679,AAA Batteries (4-pack),1,2.99,03/10/19 19:33,"442 7th St, San Francisco, CA 94016" -167680,iPhone,1,700,03/27/19 10:39,"848 South St, Los Angeles, CA 90001" -167681,AAA Batteries (4-pack),2,2.99,03/02/19 08:27,"50 Dogwood St, Atlanta, GA 30301" -167682,Vareebadd Phone,1,400,03/09/19 18:08,"837 Hickory St, Los Angeles, CA 90001" -167683,Bose SoundSport Headphones,1,99.99,03/04/19 21:58,"670 Madison St, Portland, OR 97035" -167684,AA Batteries (4-pack),2,3.84,03/12/19 12:27,"636 Hill St, Dallas, TX 75001" -167685,Lightning Charging Cable,1,14.95,03/17/19 21:32,"78 Walnut St, Atlanta, GA 30301" -167686,27in FHD Monitor,1,149.99,03/05/19 17:37,"505 Jackson St, Portland, ME 04101" -167687,Wired Headphones,1,11.99,03/17/19 19:18,"611 Madison St, Portland, OR 97035" -167688,Lightning Charging Cable,1,14.95,03/13/19 08:46,"394 Highland St, Austin, TX 73301" -167689,AA Batteries (4-pack),3,3.84,03/22/19 08:44,"155 Lincoln St, Boston, MA 02215" -167690,Flatscreen TV,1,300,03/29/19 21:54,"18 2nd St, New York City, NY 10001" -167691,Wired Headphones,1,11.99,03/14/19 22:20,"809 Forest St, New York City, NY 10001" -167692,Bose SoundSport Headphones,1,99.99,03/17/19 10:49,"102 Main St, Portland, OR 97035" -167693,Apple Airpods Headphones,1,150,03/14/19 18:18,"689 10th St, Austin, TX 73301" -167694,LG Washing Machine,1,600.0,03/30/19 19:59,"893 Cedar St, Dallas, TX 75001" -167695,AAA Batteries (4-pack),1,2.99,03/24/19 21:43,"279 Sunset St, San Francisco, CA 94016" -167696,AAA Batteries (4-pack),1,2.99,03/21/19 14:42,"236 North St, Los Angeles, CA 90001" -167697,Bose SoundSport Headphones,1,99.99,03/07/19 15:36,"356 Maple St, Austin, TX 73301" -167698,AA Batteries (4-pack),1,3.84,03/22/19 09:56,"5 6th St, Atlanta, GA 30301" -167699,AA Batteries (4-pack),1,3.84,03/23/19 18:48,"998 Willow St, Portland, OR 97035" -167700,Bose SoundSport Headphones,1,99.99,03/10/19 23:03,"839 North St, San Francisco, CA 94016" -167701,Apple Airpods Headphones,1,150,03/27/19 21:34,"679 4th St, Portland, OR 97035" -167702,Wired Headphones,1,11.99,03/22/19 19:35,"404 12th St, Portland, OR 97035" -167702,AA Batteries (4-pack),1,3.84,03/22/19 19:35,"404 12th St, Portland, OR 97035" -167703,Wired Headphones,1,11.99,03/24/19 20:40,"469 Center St, Boston, MA 02215" -167704,27in 4K Gaming Monitor,1,389.99,03/20/19 09:18,"14 Willow St, Dallas, TX 75001" -167705,Lightning Charging Cable,1,14.95,03/07/19 11:59,"900 Wilson St, San Francisco, CA 94016" -167706,Apple Airpods Headphones,1,150,03/03/19 11:14,"112 Madison St, Los Angeles, CA 90001" -167707,Wired Headphones,1,11.99,03/10/19 19:07,"272 Elm St, Boston, MA 02215" -167708,Wired Headphones,1,11.99,03/30/19 18:48,"697 13th St, Seattle, WA 98101" -167709,Google Phone,1,600,03/28/19 17:13,"397 River St, San Francisco, CA 94016" -167709,USB-C Charging Cable,1,11.95,03/28/19 17:13,"397 River St, San Francisco, CA 94016" -167710,iPhone,1,700,03/24/19 11:51,"268 Center St, New York City, NY 10001" -167711,Lightning Charging Cable,1,14.95,03/13/19 23:59,"574 9th St, Austin, TX 73301" -167712,Macbook Pro Laptop,1,1700,03/05/19 00:57,"651 North St, Atlanta, GA 30301" -167713,USB-C Charging Cable,1,11.95,03/02/19 15:56,"711 Forest St, Boston, MA 02215" -167714,Apple Airpods Headphones,1,150,03/01/19 09:59,"948 11th St, San Francisco, CA 94016" -167715,Apple Airpods Headphones,1,150,03/05/19 01:05,"774 Chestnut St, San Francisco, CA 94016" -167716,34in Ultrawide Monitor,1,379.99,03/23/19 09:46,"864 Spruce St, New York City, NY 10001" -167717,Bose SoundSport Headphones,1,99.99,03/03/19 09:12,"391 9th St, New York City, NY 10001" -167718,AA Batteries (4-pack),1,3.84,03/20/19 23:08,"155 1st St, Austin, TX 73301" -167719,USB-C Charging Cable,1,11.95,03/12/19 22:53,"610 Hill St, New York City, NY 10001" -167720,AAA Batteries (4-pack),2,2.99,03/17/19 17:52,"617 River St, Dallas, TX 75001" -167721,Google Phone,1,600,03/18/19 22:15,"344 Spruce St, Los Angeles, CA 90001" -167721,USB-C Charging Cable,1,11.95,03/18/19 22:15,"344 Spruce St, Los Angeles, CA 90001" -167722,iPhone,1,700,03/31/19 18:39,"394 South St, San Francisco, CA 94016" -167723,AA Batteries (4-pack),1,3.84,03/02/19 14:51,"25 Ridge St, Atlanta, GA 30301" -167724,Apple Airpods Headphones,1,150,03/26/19 15:53,"243 Center St, San Francisco, CA 94016" -167725,iPhone,1,700,03/22/19 20:33,"597 Wilson St, Los Angeles, CA 90001" -167726,34in Ultrawide Monitor,1,379.99,03/24/19 15:09,"706 Dogwood St, Seattle, WA 98101" -167727,AAA Batteries (4-pack),1,2.99,03/10/19 12:10,"671 Ridge St, New York City, NY 10001" -167728,Vareebadd Phone,1,400,03/27/19 15:33,"328 13th St, Austin, TX 73301" -167729,Lightning Charging Cable,1,14.95,03/16/19 14:23,"814 Maple St, Los Angeles, CA 90001" -167730,Lightning Charging Cable,1,14.95,03/22/19 06:38,"235 Hickory St, New York City, NY 10001" -167731,Apple Airpods Headphones,1,150,03/23/19 10:32,"581 Maple St, San Francisco, CA 94016" -167732,AAA Batteries (4-pack),5,2.99,03/16/19 21:33,"701 Adams St, Portland, OR 97035" -167733,AA Batteries (4-pack),1,3.84,03/28/19 22:25,"307 1st St, San Francisco, CA 94016" -167734,USB-C Charging Cable,1,11.95,03/10/19 09:38,"295 Maple St, New York City, NY 10001" -167735,iPhone,1,700,03/23/19 17:46,"29 Spruce St, San Francisco, CA 94016" -167736,Lightning Charging Cable,1,14.95,03/07/19 23:50,"169 11th St, Dallas, TX 75001" -167737,AAA Batteries (4-pack),1,2.99,03/28/19 16:48,"385 2nd St, Dallas, TX 75001" -167738,USB-C Charging Cable,1,11.95,03/22/19 20:22,"179 Meadow St, San Francisco, CA 94016" -167739,Bose SoundSport Headphones,1,99.99,03/07/19 20:51,"784 8th St, Boston, MA 02215" -167740,Bose SoundSport Headphones,1,99.99,03/31/19 15:48,"608 10th St, Los Angeles, CA 90001" -167741,iPhone,1,700,03/21/19 23:47,"664 North St, New York City, NY 10001" -167742,Google Phone,1,600,03/03/19 19:26,"164 Cherry St, Los Angeles, CA 90001" -167743,Bose SoundSport Headphones,1,99.99,03/03/19 22:01,"490 Church St, Boston, MA 02215" -167744,27in 4K Gaming Monitor,1,389.99,03/31/19 20:45,"670 Ridge St, San Francisco, CA 94016" -167745,Macbook Pro Laptop,1,1700,03/01/19 19:27,"995 2nd St, Austin, TX 73301" -167746,iPhone,1,700,03/06/19 15:54,"773 5th St, Portland, OR 97035" -167747,AA Batteries (4-pack),1,3.84,03/09/19 07:14,"926 Lincoln St, San Francisco, CA 94016" -167748,Lightning Charging Cable,1,14.95,03/03/19 10:31,"916 2nd St, Los Angeles, CA 90001" -167749,iPhone,1,700,03/11/19 21:41,"361 Main St, Los Angeles, CA 90001" -167750,Apple Airpods Headphones,1,150,03/04/19 22:15,"745 Center St, Dallas, TX 75001" -167751,34in Ultrawide Monitor,1,379.99,03/05/19 10:19,"559 Washington St, Atlanta, GA 30301" -167752,Lightning Charging Cable,2,14.95,03/14/19 11:56,"708 Lincoln St, Los Angeles, CA 90001" -167753,Macbook Pro Laptop,1,1700,03/31/19 15:42,"498 Washington St, Portland, ME 04101" -167754,AA Batteries (4-pack),2,3.84,03/19/19 15:13,"594 10th St, New York City, NY 10001" -167755,USB-C Charging Cable,1,11.95,03/30/19 19:13,"969 North St, Los Angeles, CA 90001" -167756,34in Ultrawide Monitor,1,379.99,03/16/19 01:15,"127 Dogwood St, Los Angeles, CA 90001" -167757,AAA Batteries (4-pack),2,2.99,03/22/19 15:53,"755 Cherry St, Boston, MA 02215" -167758,Wired Headphones,1,11.99,03/08/19 13:58,"607 South St, San Francisco, CA 94016" -167759,Bose SoundSport Headphones,1,99.99,03/05/19 18:20,"701 8th St, Austin, TX 73301" -167760,Bose SoundSport Headphones,1,99.99,03/12/19 10:45,"681 Highland St, Dallas, TX 75001" -167761,iPhone,1,700,03/07/19 17:48,"530 Center St, Dallas, TX 75001" -167762,Bose SoundSport Headphones,1,99.99,03/06/19 19:27,"756 Lakeview St, Los Angeles, CA 90001" -167763,Bose SoundSport Headphones,1,99.99,03/24/19 01:30,"411 1st St, San Francisco, CA 94016" -167764,Wired Headphones,1,11.99,03/01/19 18:15,"696 Willow St, Boston, MA 02215" -167765,Bose SoundSport Headphones,1,99.99,03/18/19 12:25,"365 Johnson St, Boston, MA 02215" -167766,27in 4K Gaming Monitor,1,389.99,03/11/19 22:11,"873 Adams St, San Francisco, CA 94016" -167767,AA Batteries (4-pack),1,3.84,03/18/19 10:45,"201 Meadow St, Portland, ME 04101" -167768,Lightning Charging Cable,2,14.95,03/28/19 19:35,"520 Lakeview St, New York City, NY 10001" -167769,27in 4K Gaming Monitor,1,389.99,03/16/19 15:15,"485 Highland St, Austin, TX 73301" -167770,AAA Batteries (4-pack),2,2.99,03/20/19 19:00,"488 Walnut St, Seattle, WA 98101" -167771,ThinkPad Laptop,1,999.99,03/14/19 13:21,"495 Wilson St, Boston, MA 02215" -167772,34in Ultrawide Monitor,1,379.99,03/16/19 17:34,"670 West St, Dallas, TX 75001" -167773,iPhone,1,700,03/26/19 09:19,"444 Maple St, Atlanta, GA 30301" -167774,USB-C Charging Cable,1,11.95,03/04/19 22:46,"635 Chestnut St, Seattle, WA 98101" -167775,AAA Batteries (4-pack),1,2.99,03/07/19 23:02,"585 West St, Los Angeles, CA 90001" -167776,AA Batteries (4-pack),1,3.84,03/13/19 14:58,"718 Adams St, San Francisco, CA 94016" -167777,Apple Airpods Headphones,1,150,03/08/19 11:23,"650 6th St, New York City, NY 10001" -167778,Lightning Charging Cable,1,14.95,03/01/19 18:23,"76 Park St, Dallas, TX 75001" -167779,AAA Batteries (4-pack),1,2.99,03/10/19 11:34,"289 Pine St, Los Angeles, CA 90001" -167780,Lightning Charging Cable,1,14.95,03/17/19 10:55,"992 8th St, Atlanta, GA 30301" -167781,USB-C Charging Cable,2,11.95,03/26/19 14:36,"868 Madison St, New York City, NY 10001" -167782,AA Batteries (4-pack),1,3.84,03/05/19 14:25,"511 Madison St, San Francisco, CA 94016" -167783,Lightning Charging Cable,1,14.95,03/10/19 17:32,"965 Maple St, Portland, OR 97035" -167784,Bose SoundSport Headphones,1,99.99,03/16/19 13:30,"539 South St, Boston, MA 02215" -167785,Bose SoundSport Headphones,1,99.99,03/16/19 00:57,"637 Chestnut St, Dallas, TX 75001" -167786,Bose SoundSport Headphones,1,99.99,03/07/19 21:27,"291 Jefferson St, Los Angeles, CA 90001" -167787,AA Batteries (4-pack),2,3.84,03/25/19 07:47,"118 Church St, Austin, TX 73301" -167788,Macbook Pro Laptop,1,1700,03/18/19 09:18,"685 Elm St, Los Angeles, CA 90001" -167789,AAA Batteries (4-pack),5,2.99,03/26/19 14:09,"661 Madison St, Boston, MA 02215" -167790,Apple Airpods Headphones,1,150,03/24/19 06:24,"86 10th St, San Francisco, CA 94016" -167791,AAA Batteries (4-pack),1,2.99,03/31/19 20:57,"512 Johnson St, Boston, MA 02215" -167792,USB-C Charging Cable,1,11.95,03/12/19 11:42,"608 Lakeview St, San Francisco, CA 94016" -167793,Apple Airpods Headphones,1,150,03/09/19 15:29,"509 Meadow St, San Francisco, CA 94016" -167794,Bose SoundSport Headphones,1,99.99,03/19/19 23:27,"560 Main St, New York City, NY 10001" -167795,27in FHD Monitor,1,149.99,03/23/19 22:04,"734 8th St, Boston, MA 02215" -167796,27in FHD Monitor,1,149.99,03/11/19 13:22,"281 Ridge St, Atlanta, GA 30301" -167797,USB-C Charging Cable,1,11.95,03/20/19 10:15,"483 11th St, San Francisco, CA 94016" -167798,AAA Batteries (4-pack),2,2.99,03/31/19 06:28,"464 Cedar St, Boston, MA 02215" -167799,AAA Batteries (4-pack),2,2.99,03/04/19 05:54,"708 Meadow St, New York City, NY 10001" -167800,27in 4K Gaming Monitor,1,389.99,03/08/19 19:30,"863 North St, San Francisco, CA 94016" -167801,USB-C Charging Cable,1,11.95,03/28/19 21:15,"415 Hickory St, Dallas, TX 75001" -167802,Flatscreen TV,1,300,03/31/19 22:37,"538 Spruce St, Los Angeles, CA 90001" -167803,Lightning Charging Cable,1,14.95,03/21/19 22:03,"276 5th St, San Francisco, CA 94016" -167804,Lightning Charging Cable,1,14.95,03/08/19 11:16,"583 Johnson St, San Francisco, CA 94016" -167805,USB-C Charging Cable,1,11.95,03/23/19 09:00,"857 Maple St, Los Angeles, CA 90001" -167806,Flatscreen TV,1,300,03/03/19 12:21,"46 Wilson St, Boston, MA 02215" -167807,AA Batteries (4-pack),1,3.84,03/05/19 22:27,"892 13th St, San Francisco, CA 94016" -167808,USB-C Charging Cable,1,11.95,03/07/19 12:47,"471 1st St, Boston, MA 02215" -167809,AAA Batteries (4-pack),1,2.99,03/20/19 10:58,"110 South St, San Francisco, CA 94016" -167810,Vareebadd Phone,1,400,03/20/19 17:01,"222 Chestnut St, Atlanta, GA 30301" -167811,Bose SoundSport Headphones,1,99.99,03/03/19 10:52,"465 Cedar St, New York City, NY 10001" -167812,iPhone,1,700,03/18/19 09:57,"537 Wilson St, Portland, OR 97035" -167813,27in 4K Gaming Monitor,1,389.99,04/01/19 02:42,"840 11th St, Seattle, WA 98101" -167814,20in Monitor,1,109.99,03/17/19 18:13,"400 Dogwood St, New York City, NY 10001" -167815,USB-C Charging Cable,1,11.95,03/01/19 11:05,"29 Dogwood St, Dallas, TX 75001" -167816,AA Batteries (4-pack),1,3.84,03/02/19 12:24,"845 Ridge St, Los Angeles, CA 90001" -167817,USB-C Charging Cable,2,11.95,03/18/19 22:59,"574 Dogwood St, New York City, NY 10001" -167818,iPhone,1,700,03/30/19 10:22,"965 Meadow St, Austin, TX 73301" -167819,27in 4K Gaming Monitor,1,389.99,03/07/19 13:39,"397 11th St, Dallas, TX 75001" -167820,34in Ultrawide Monitor,1,379.99,03/11/19 23:39,"310 Lincoln St, New York City, NY 10001" -167821,Lightning Charging Cable,1,14.95,03/04/19 12:57,"91 Cedar St, Boston, MA 02215" -167822,Lightning Charging Cable,1,14.95,03/18/19 11:49,"377 10th St, Boston, MA 02215" -167823,AA Batteries (4-pack),1,3.84,03/20/19 19:21,"268 Elm St, Seattle, WA 98101" -167824,Wired Headphones,1,11.99,03/12/19 17:04,"767 Chestnut St, Los Angeles, CA 90001" -167825,AA Batteries (4-pack),1,3.84,03/26/19 08:48,"267 Lakeview St, San Francisco, CA 94016" -167826,AAA Batteries (4-pack),1,2.99,03/07/19 20:15,"198 14th St, New York City, NY 10001" -167827,Wired Headphones,1,11.99,03/15/19 14:02,"472 Church St, Los Angeles, CA 90001" -167828,AAA Batteries (4-pack),5,2.99,03/17/19 19:13,"622 Lakeview St, Los Angeles, CA 90001" -167829,USB-C Charging Cable,1,11.95,03/24/19 20:56,"748 1st St, Austin, TX 73301" -167830,AA Batteries (4-pack),1,3.84,03/16/19 11:37,"629 Highland St, New York City, NY 10001" -167831,Lightning Charging Cable,1,14.95,03/22/19 15:46,"578 Maple St, San Francisco, CA 94016" -167832,Lightning Charging Cable,3,14.95,03/29/19 09:29,"90 Highland St, Los Angeles, CA 90001" -167833,iPhone,1,700,03/11/19 12:59,"977 Pine St, Austin, TX 73301" -167833,Apple Airpods Headphones,1,150,03/11/19 12:59,"977 Pine St, Austin, TX 73301" -167834,Lightning Charging Cable,1,14.95,03/11/19 20:27,"176 Church St, New York City, NY 10001" -167835,Lightning Charging Cable,1,14.95,03/28/19 19:14,"154 Walnut St, Atlanta, GA 30301" -167836,Wired Headphones,1,11.99,03/10/19 11:34,"620 7th St, New York City, NY 10001" -167837,Google Phone,1,600,03/26/19 11:52,"552 West St, Los Angeles, CA 90001" -167837,USB-C Charging Cable,1,11.95,03/26/19 11:52,"552 West St, Los Angeles, CA 90001" -167838,USB-C Charging Cable,1,11.95,03/11/19 09:10,"756 Ridge St, Los Angeles, CA 90001" -167839,Vareebadd Phone,1,400,03/28/19 11:31,"408 Jackson St, Austin, TX 73301" -167839,Bose SoundSport Headphones,1,99.99,03/28/19 11:31,"408 Jackson St, Austin, TX 73301" -167840,USB-C Charging Cable,1,11.95,03/02/19 16:11,"503 Elm St, Los Angeles, CA 90001" -167841,AA Batteries (4-pack),1,3.84,03/21/19 12:27,"548 West St, Los Angeles, CA 90001" -167842,34in Ultrawide Monitor,1,379.99,03/28/19 10:33,"771 Lincoln St, Los Angeles, CA 90001" -167843,Lightning Charging Cable,1,14.95,03/20/19 09:10,"800 4th St, San Francisco, CA 94016" -167844,Apple Airpods Headphones,1,150,03/26/19 20:37,"963 Hill St, Los Angeles, CA 90001" -167845,AAA Batteries (4-pack),2,2.99,03/03/19 17:57,"518 6th St, Seattle, WA 98101" -167846,Wired Headphones,1,11.99,03/11/19 22:44,"464 Center St, San Francisco, CA 94016" -167847,Apple Airpods Headphones,1,150,03/04/19 22:21,"113 Ridge St, San Francisco, CA 94016" -167848,Macbook Pro Laptop,1,1700,03/08/19 17:11,"124 Pine St, Los Angeles, CA 90001" -167849,AAA Batteries (4-pack),1,2.99,03/22/19 12:37,"852 Adams St, San Francisco, CA 94016" -167850,AA Batteries (4-pack),1,3.84,03/21/19 09:56,"552 Highland St, Los Angeles, CA 90001" -167851,Lightning Charging Cable,2,14.95,03/03/19 13:50,"983 River St, San Francisco, CA 94016" -167852,Google Phone,1,600,03/11/19 05:43,"873 Johnson St, Dallas, TX 75001" -167853,USB-C Charging Cable,1,11.95,03/11/19 17:40,"104 North St, Los Angeles, CA 90001" -167854,Google Phone,1,600,03/09/19 15:40,"240 North St, San Francisco, CA 94016" -167855,Flatscreen TV,1,300,03/14/19 17:12,"503 Adams St, New York City, NY 10001" -167856,Apple Airpods Headphones,1,150,03/09/19 23:08,"999 Lincoln St, New York City, NY 10001" -167857,AA Batteries (4-pack),1,3.84,03/26/19 21:54,"612 Hickory St, Atlanta, GA 30301" -167858,USB-C Charging Cable,1,11.95,03/13/19 23:44,"729 Forest St, San Francisco, CA 94016" -167859,USB-C Charging Cable,1,11.95,03/16/19 10:57,"472 6th St, Los Angeles, CA 90001" -167860,Lightning Charging Cable,1,14.95,03/19/19 13:50,"930 Dogwood St, San Francisco, CA 94016" -167861,Bose SoundSport Headphones,1,99.99,03/20/19 10:18,"989 Wilson St, New York City, NY 10001" -167862,AA Batteries (4-pack),1,3.84,03/12/19 08:31,"276 Hickory St, Los Angeles, CA 90001" -167863,LG Dryer,1,600.0,03/16/19 15:44,"421 Meadow St, New York City, NY 10001" -167864,Lightning Charging Cable,1,14.95,03/27/19 13:34,"236 Walnut St, San Francisco, CA 94016" -167865,AA Batteries (4-pack),1,3.84,03/23/19 16:09,"571 Ridge St, Los Angeles, CA 90001" -167866,34in Ultrawide Monitor,1,379.99,03/06/19 15:37,"710 Elm St, San Francisco, CA 94016" -167867,Wired Headphones,1,11.99,03/08/19 11:36,"975 Hickory St, San Francisco, CA 94016" -167868,AAA Batteries (4-pack),1,2.99,03/07/19 08:28,"20 North St, San Francisco, CA 94016" -167869,LG Washing Machine,1,600.0,03/29/19 20:44,"811 13th St, San Francisco, CA 94016" -167870,AA Batteries (4-pack),1,3.84,03/02/19 12:41,"126 11th St, Boston, MA 02215" -167871,Wired Headphones,1,11.99,03/31/19 17:47,"810 5th St, Los Angeles, CA 90001" -167872,Lightning Charging Cable,1,14.95,03/10/19 22:02,"566 5th St, San Francisco, CA 94016" -167873,LG Washing Machine,1,600.0,03/31/19 12:56,"761 Forest St, San Francisco, CA 94016" -167874,Lightning Charging Cable,1,14.95,03/05/19 17:19,"959 Chestnut St, New York City, NY 10001" -167875,Wired Headphones,1,11.99,03/03/19 14:29,"642 Washington St, Austin, TX 73301" -167876,ThinkPad Laptop,1,999.99,03/03/19 23:10,"18 Lincoln St, Austin, TX 73301" -167877,AA Batteries (4-pack),1,3.84,03/10/19 11:55,"689 Johnson St, Boston, MA 02215" -167878,Lightning Charging Cable,1,14.95,03/11/19 18:42,"765 Washington St, Seattle, WA 98101" -167879,USB-C Charging Cable,1,11.95,03/24/19 02:35,"410 8th St, New York City, NY 10001" -167880,AA Batteries (4-pack),1,3.84,03/05/19 22:53,"631 Park St, Dallas, TX 75001" -167881,27in FHD Monitor,1,149.99,03/02/19 11:18,"114 1st St, Seattle, WA 98101" -167882,Macbook Pro Laptop,1,1700,03/05/19 21:26,"418 Sunset St, San Francisco, CA 94016" -167883,Macbook Pro Laptop,1,1700,03/05/19 21:25,"356 2nd St, New York City, NY 10001" -167884,Lightning Charging Cable,1,14.95,03/16/19 19:09,"903 River St, Dallas, TX 75001" -167885,27in FHD Monitor,1,149.99,03/27/19 22:24,"756 Park St, Dallas, TX 75001" -167886,AAA Batteries (4-pack),2,2.99,03/16/19 19:53,"481 Meadow St, Los Angeles, CA 90001" -167887,AAA Batteries (4-pack),1,2.99,03/03/19 16:19,"773 Meadow St, New York City, NY 10001" -167888,Lightning Charging Cable,2,14.95,03/10/19 08:42,"665 Forest St, Los Angeles, CA 90001" -167889,USB-C Charging Cable,1,11.95,03/11/19 20:14,"702 North St, Los Angeles, CA 90001" -167890,Apple Airpods Headphones,1,150,03/13/19 11:02,"168 Ridge St, Portland, OR 97035" -167891,Google Phone,1,600,03/10/19 08:59,"28 9th St, San Francisco, CA 94016" -167891,USB-C Charging Cable,1,11.95,03/10/19 08:59,"28 9th St, San Francisco, CA 94016" -167892,Lightning Charging Cable,1,14.95,03/04/19 14:15,"704 13th St, Atlanta, GA 30301" -167893,Lightning Charging Cable,1,14.95,03/30/19 16:20,"529 8th St, Atlanta, GA 30301" -167894,34in Ultrawide Monitor,1,379.99,03/17/19 18:44,"407 8th St, Seattle, WA 98101" -167895,Lightning Charging Cable,1,14.95,03/25/19 15:29,"922 Jackson St, New York City, NY 10001" -167896,Lightning Charging Cable,1,14.95,03/26/19 20:01,"677 Walnut St, San Francisco, CA 94016" -167897,iPhone,1,700,03/29/19 00:09,"235 11th St, San Francisco, CA 94016" -167898,27in FHD Monitor,1,149.99,03/15/19 15:25,"940 Center St, San Francisco, CA 94016" -167899,AAA Batteries (4-pack),1,2.99,03/14/19 14:28,"247 Chestnut St, Seattle, WA 98101" -167900,AAA Batteries (4-pack),3,2.99,03/05/19 16:57,"431 Sunset St, Atlanta, GA 30301" -167901,USB-C Charging Cable,2,11.95,03/25/19 18:28,"478 Washington St, San Francisco, CA 94016" -167902,Google Phone,1,600,03/06/19 15:43,"480 Lincoln St, Los Angeles, CA 90001" -167903,Flatscreen TV,1,300,03/11/19 12:56,"967 4th St, Los Angeles, CA 90001" -167904,Lightning Charging Cable,1,14.95,03/30/19 06:03,"753 8th St, San Francisco, CA 94016" -167905,Lightning Charging Cable,1,14.95,03/03/19 19:37,"658 Wilson St, San Francisco, CA 94016" -167906,Apple Airpods Headphones,1,150,03/04/19 13:17,"461 Maple St, Portland, OR 97035" -167907,iPhone,1,700,03/09/19 19:10,"543 7th St, Atlanta, GA 30301" -167908,Wired Headphones,1,11.99,03/30/19 08:22,"749 Dogwood St, Los Angeles, CA 90001" -167909,34in Ultrawide Monitor,1,379.99,03/06/19 23:00,"861 Hill St, Dallas, TX 75001" -167910,Wired Headphones,1,11.99,03/04/19 22:40,"596 Church St, Austin, TX 73301" -167911,AAA Batteries (4-pack),2,2.99,03/12/19 10:39,"334 Jefferson St, Boston, MA 02215" -167912,34in Ultrawide Monitor,1,379.99,03/01/19 18:34,"298 Hill St, Dallas, TX 75001" -167913,Bose SoundSport Headphones,1,99.99,03/11/19 21:24,"710 Cedar St, Boston, MA 02215" -167914,ThinkPad Laptop,1,999.99,03/25/19 15:46,"816 Hickory St, San Francisco, CA 94016" -167915,27in 4K Gaming Monitor,1,389.99,03/16/19 16:43,"354 7th St, Los Angeles, CA 90001" -167916,USB-C Charging Cable,1,11.95,03/10/19 12:04,"150 Walnut St, San Francisco, CA 94016" -167917,Bose SoundSport Headphones,1,99.99,03/14/19 10:50,"258 11th St, Dallas, TX 75001" -167918,USB-C Charging Cable,1,11.95,03/27/19 19:16,"823 River St, San Francisco, CA 94016" -167919,Flatscreen TV,1,300,03/08/19 16:43,"82 Jefferson St, San Francisco, CA 94016" -167920,Lightning Charging Cable,1,14.95,03/11/19 10:36,"638 Elm St, Los Angeles, CA 90001" -167921,Wired Headphones,1,11.99,03/08/19 09:37,"898 Cedar St, San Francisco, CA 94016" -167922,AAA Batteries (4-pack),1,2.99,03/03/19 21:38,"679 5th St, New York City, NY 10001" -167923,AA Batteries (4-pack),1,3.84,03/25/19 22:57,"398 Meadow St, Los Angeles, CA 90001" -167924,Google Phone,1,600,03/29/19 06:01,"95 Ridge St, New York City, NY 10001" -167924,USB-C Charging Cable,1,11.95,03/29/19 06:01,"95 Ridge St, New York City, NY 10001" -167925,AA Batteries (4-pack),1,3.84,03/28/19 16:23,"94 Highland St, San Francisco, CA 94016" -167926,20in Monitor,1,109.99,03/24/19 17:01,"241 Dogwood St, Seattle, WA 98101" -167927,AA Batteries (4-pack),2,3.84,03/28/19 21:39,"335 Wilson St, New York City, NY 10001" -167928,Wired Headphones,1,11.99,03/19/19 10:49,"603 Cedar St, Dallas, TX 75001" -167929,Apple Airpods Headphones,1,150,03/16/19 17:00,"848 Elm St, Austin, TX 73301" -167930,Apple Airpods Headphones,1,150,03/11/19 09:20,"780 Walnut St, New York City, NY 10001" -167931,Bose SoundSport Headphones,1,99.99,03/22/19 16:07,"428 Main St, Austin, TX 73301" -167931,USB-C Charging Cable,1,11.95,03/22/19 16:07,"428 Main St, Austin, TX 73301" -167932,Flatscreen TV,1,300,03/15/19 22:20,"525 Jackson St, San Francisco, CA 94016" -167933,USB-C Charging Cable,1,11.95,03/05/19 13:24,"418 Adams St, San Francisco, CA 94016" -167934,Google Phone,1,600,03/31/19 11:36,"918 9th St, Dallas, TX 75001" -167934,USB-C Charging Cable,1,11.95,03/31/19 11:36,"918 9th St, Dallas, TX 75001" -167935,Apple Airpods Headphones,1,150,03/25/19 08:15,"216 Highland St, Portland, OR 97035" -167936,Apple Airpods Headphones,1,150,03/13/19 19:20,"331 Dogwood St, Dallas, TX 75001" -167937,27in 4K Gaming Monitor,1,389.99,03/20/19 13:49,"253 Highland St, Austin, TX 73301" -167938,Apple Airpods Headphones,1,150,03/21/19 15:27,"54 South St, Los Angeles, CA 90001" -167939,USB-C Charging Cable,1,11.95,03/18/19 13:48,"773 Spruce St, Boston, MA 02215" -167940,Macbook Pro Laptop,1,1700,03/05/19 09:48,"947 7th St, Los Angeles, CA 90001" -167941,AAA Batteries (4-pack),1,2.99,03/21/19 19:22,"194 Cedar St, Boston, MA 02215" -167942,AA Batteries (4-pack),1,3.84,03/23/19 14:51,"62 River St, Portland, OR 97035" -167943,AA Batteries (4-pack),2,3.84,03/02/19 14:42,"707 Center St, Boston, MA 02215" -167944,Lightning Charging Cable,1,14.95,03/15/19 18:14,"705 Jackson St, Los Angeles, CA 90001" -167945,ThinkPad Laptop,1,999.99,03/11/19 06:36,"880 Jefferson St, Boston, MA 02215" -167946,AA Batteries (4-pack),2,3.84,03/15/19 18:05,"77 Center St, Austin, TX 73301" -167947,Macbook Pro Laptop,1,1700,03/18/19 11:00,"920 9th St, Dallas, TX 75001" -167948,Lightning Charging Cable,1,14.95,03/05/19 13:49,"702 Chestnut St, Boston, MA 02215" -167949,Google Phone,1,600,03/12/19 09:35,"757 Church St, San Francisco, CA 94016" -167950,34in Ultrawide Monitor,1,379.99,03/12/19 19:41,"336 South St, Atlanta, GA 30301" -167951,Apple Airpods Headphones,1,150,03/18/19 09:47,"937 4th St, San Francisco, CA 94016" -167952,27in 4K Gaming Monitor,1,389.99,03/14/19 17:49,"648 14th St, New York City, NY 10001" -167953,Wired Headphones,1,11.99,03/19/19 18:18,"62 North St, Los Angeles, CA 90001" -167954,USB-C Charging Cable,1,11.95,03/04/19 16:08,"867 Spruce St, Dallas, TX 75001" -167955,iPhone,1,700,03/29/19 14:11,"945 Spruce St, Portland, ME 04101" -167955,Apple Airpods Headphones,1,150,03/29/19 14:11,"945 Spruce St, Portland, ME 04101" -167956,Lightning Charging Cable,1,14.95,03/02/19 18:56,"212 8th St, Dallas, TX 75001" -167957,Lightning Charging Cable,1,14.95,03/02/19 20:39,"761 13th St, San Francisco, CA 94016" -167958,Google Phone,1,600,03/18/19 14:06,"747 14th St, Atlanta, GA 30301" -167958,USB-C Charging Cable,1,11.95,03/18/19 14:06,"747 14th St, Atlanta, GA 30301" -167959,AA Batteries (4-pack),1,3.84,03/04/19 21:24,"282 7th St, Dallas, TX 75001" -167960,USB-C Charging Cable,1,11.95,03/18/19 21:24,"61 Park St, Austin, TX 73301" -167961,Bose SoundSport Headphones,1,99.99,03/31/19 06:48,"370 2nd St, Boston, MA 02215" -167962,USB-C Charging Cable,1,11.95,03/20/19 05:49,"196 Adams St, San Francisco, CA 94016" -167963,27in 4K Gaming Monitor,1,389.99,03/02/19 08:04,"309 9th St, Los Angeles, CA 90001" -167964,AA Batteries (4-pack),1,3.84,03/09/19 15:13,"969 North St, San Francisco, CA 94016" -167965,AA Batteries (4-pack),2,3.84,03/02/19 14:24,"551 Hill St, Boston, MA 02215" -167966,AAA Batteries (4-pack),1,2.99,03/30/19 20:15,"881 9th St, San Francisco, CA 94016" -167967,Bose SoundSport Headphones,1,99.99,03/20/19 18:36,"997 1st St, Los Angeles, CA 90001" -167968,Wired Headphones,1,11.99,03/27/19 21:37,"499 Pine St, San Francisco, CA 94016" -167969,Apple Airpods Headphones,1,150,03/09/19 01:16,"134 Sunset St, San Francisco, CA 94016" -167970,AA Batteries (4-pack),1,3.84,03/15/19 17:21,"945 Jackson St, Los Angeles, CA 90001" -167971,Bose SoundSport Headphones,1,99.99,03/19/19 16:40,"664 10th St, Boston, MA 02215" -167972,USB-C Charging Cable,2,11.95,03/09/19 22:00,"183 Pine St, Boston, MA 02215" -167973,Lightning Charging Cable,1,14.95,03/13/19 18:44,"977 Madison St, Los Angeles, CA 90001" -167974,Google Phone,1,600,03/22/19 20:34,"890 Hill St, San Francisco, CA 94016" -167975,AAA Batteries (4-pack),4,2.99,03/31/19 20:48,"113 West St, New York City, NY 10001" -167976,Apple Airpods Headphones,1,150,03/30/19 10:49,"397 Park St, New York City, NY 10001" -167977,Google Phone,1,600,03/10/19 01:29,"476 Wilson St, New York City, NY 10001" -167977,Wired Headphones,1,11.99,03/10/19 01:29,"476 Wilson St, New York City, NY 10001" -167978,Apple Airpods Headphones,1,150,03/07/19 19:09,"24 Meadow St, Austin, TX 73301" -167979,Wired Headphones,1,11.99,03/25/19 08:32,"448 Main St, San Francisco, CA 94016" -167980,Wired Headphones,1,11.99,03/10/19 18:22,"697 9th St, Los Angeles, CA 90001" -167981,AA Batteries (4-pack),1,3.84,03/31/19 13:55,"41 Willow St, Atlanta, GA 30301" -167982,Wired Headphones,1,11.99,03/13/19 15:41,"831 9th St, New York City, NY 10001" -167983,27in 4K Gaming Monitor,1,389.99,03/31/19 11:16,"643 7th St, New York City, NY 10001" -167984,Macbook Pro Laptop,1,1700,03/29/19 11:00,"269 9th St, San Francisco, CA 94016" -167985,Apple Airpods Headphones,1,150,03/08/19 23:44,"531 Pine St, Portland, OR 97035" -167986,Wired Headphones,1,11.99,03/30/19 21:31,"479 Main St, Seattle, WA 98101" -167987,27in 4K Gaming Monitor,1,389.99,03/04/19 16:22,"726 Ridge St, Dallas, TX 75001" -167988,Lightning Charging Cable,1,14.95,03/19/19 11:33,"362 West St, San Francisco, CA 94016" -167989,Wired Headphones,1,11.99,03/14/19 18:15,"223 Elm St, Los Angeles, CA 90001" -167990,Wired Headphones,1,11.99,03/10/19 14:43,"263 6th St, San Francisco, CA 94016" -167991,27in FHD Monitor,1,149.99,03/19/19 11:51,"871 Jackson St, Boston, MA 02215" -167992,AA Batteries (4-pack),1,3.84,03/18/19 21:52,"16 Ridge St, New York City, NY 10001" -167993,Wired Headphones,2,11.99,03/28/19 21:13,"826 1st St, San Francisco, CA 94016" -167994,AAA Batteries (4-pack),1,2.99,03/01/19 07:15,"620 Lakeview St, San Francisco, CA 94016" -167995,Apple Airpods Headphones,1,150,03/06/19 21:57,"269 Madison St, Dallas, TX 75001" -167996,Lightning Charging Cable,1,14.95,03/21/19 18:00,"489 10th St, San Francisco, CA 94016" -167997,USB-C Charging Cable,1,11.95,03/19/19 16:48,"386 Wilson St, San Francisco, CA 94016" -167998,Lightning Charging Cable,1,14.95,03/02/19 19:38,"239 2nd St, Los Angeles, CA 90001" -167999,Wired Headphones,1,11.99,03/03/19 12:06,"232 Park St, New York City, NY 10001" -168000,Lightning Charging Cable,1,14.95,03/18/19 20:37,"49 Hill St, Seattle, WA 98101" -168001,AA Batteries (4-pack),1,3.84,03/28/19 15:43,"158 Sunset St, Los Angeles, CA 90001" -168002,USB-C Charging Cable,2,11.95,03/28/19 10:18,"771 River St, San Francisco, CA 94016" -168003,Lightning Charging Cable,1,14.95,03/30/19 00:20,"360 Lakeview St, Los Angeles, CA 90001" -168004,AAA Batteries (4-pack),1,2.99,03/15/19 12:40,"952 Lakeview St, San Francisco, CA 94016" -168005,27in 4K Gaming Monitor,1,389.99,03/13/19 12:22,"396 Center St, Los Angeles, CA 90001" -168006,Apple Airpods Headphones,1,150,03/06/19 15:42,"966 Forest St, San Francisco, CA 94016" -168007,Lightning Charging Cable,1,14.95,03/01/19 14:03,"705 4th St, Portland, ME 04101" -168008,Bose SoundSport Headphones,1,99.99,03/23/19 06:57,"653 Pine St, Dallas, TX 75001" -168009,Wired Headphones,2,11.99,03/24/19 20:59,"672 Cedar St, Seattle, WA 98101" -168010,AAA Batteries (4-pack),1,2.99,03/12/19 16:17,"568 Main St, Los Angeles, CA 90001" -168011,Flatscreen TV,1,300,03/15/19 11:51,"102 North St, San Francisco, CA 94016" -168012,20in Monitor,1,109.99,03/20/19 12:03,"515 Hickory St, San Francisco, CA 94016" -168013,34in Ultrawide Monitor,1,379.99,03/24/19 19:53,"248 Jefferson St, Seattle, WA 98101" -168014,Flatscreen TV,1,300,03/25/19 03:55,"333 Madison St, New York City, NY 10001" -168015,AAA Batteries (4-pack),1,2.99,03/05/19 17:10,"330 Jackson St, San Francisco, CA 94016" -168016,ThinkPad Laptop,1,999.99,03/16/19 13:17,"76 Lakeview St, Seattle, WA 98101" -168017,Apple Airpods Headphones,1,150,03/12/19 07:16,"248 Park St, Dallas, TX 75001" -168018,Apple Airpods Headphones,2,150,03/21/19 18:50,"119 Lake St, Los Angeles, CA 90001" -168019,AA Batteries (4-pack),1,3.84,03/15/19 20:47,"20 10th St, Atlanta, GA 30301" -168020,27in FHD Monitor,1,149.99,03/08/19 16:54,"739 Adams St, Los Angeles, CA 90001" -168021,Lightning Charging Cable,1,14.95,03/15/19 19:09,"321 Adams St, Boston, MA 02215" -168022,AA Batteries (4-pack),1,3.84,03/06/19 19:42,"3 Ridge St, Los Angeles, CA 90001" -168023,27in 4K Gaming Monitor,1,389.99,03/05/19 04:29,"731 4th St, Dallas, TX 75001" -168024,Flatscreen TV,1,300,03/29/19 00:30,"801 Pine St, New York City, NY 10001" -168025,AA Batteries (4-pack),2,3.84,03/18/19 17:11,"266 West St, Los Angeles, CA 90001" -168026,Wired Headphones,2,11.99,03/13/19 09:54,"863 Lakeview St, San Francisco, CA 94016" -168027,Apple Airpods Headphones,1,150,03/18/19 12:40,"897 Walnut St, San Francisco, CA 94016" -168028,USB-C Charging Cable,1,11.95,03/29/19 21:23,"965 Cherry St, Boston, MA 02215" -168029,Wired Headphones,1,11.99,03/21/19 18:22,"420 Ridge St, Seattle, WA 98101" -168030,AA Batteries (4-pack),1,3.84,03/07/19 21:51,"524 Center St, Los Angeles, CA 90001" -168031,Lightning Charging Cable,1,14.95,03/01/19 19:49,"471 Hill St, Austin, TX 73301" -168032,Bose SoundSport Headphones,1,99.99,03/12/19 14:27,"933 Lincoln St, Boston, MA 02215" -168033,27in 4K Gaming Monitor,1,389.99,03/20/19 07:53,"293 9th St, Los Angeles, CA 90001" -168034,Macbook Pro Laptop,1,1700,03/01/19 22:24,"522 Ridge St, Dallas, TX 75001" -168035,Vareebadd Phone,1,400,03/08/19 23:51,"394 6th St, Boston, MA 02215" -168036,LG Washing Machine,1,600.0,03/02/19 10:44,"123 6th St, Los Angeles, CA 90001" -168037,Lightning Charging Cable,1,14.95,03/02/19 10:16,"616 Meadow St, New York City, NY 10001" -168037,USB-C Charging Cable,1,11.95,03/02/19 10:16,"616 Meadow St, New York City, NY 10001" -168038,AAA Batteries (4-pack),1,2.99,03/04/19 06:46,"847 Washington St, Los Angeles, CA 90001" -168039,AAA Batteries (4-pack),2,2.99,03/07/19 21:16,"971 Johnson St, San Francisco, CA 94016" -168040,Bose SoundSport Headphones,1,99.99,03/10/19 18:30,"211 Park St, Boston, MA 02215" -168041,Lightning Charging Cable,1,14.95,03/15/19 18:12,"564 Cedar St, Boston, MA 02215" -168042,USB-C Charging Cable,1,11.95,03/03/19 11:23,"215 5th St, Austin, TX 73301" -168043,27in FHD Monitor,1,149.99,03/14/19 23:17,"158 1st St, Dallas, TX 75001" -168044,Wired Headphones,1,11.99,03/25/19 19:40,"918 8th St, Boston, MA 02215" -168045,Wired Headphones,1,11.99,03/05/19 13:07,"753 Cherry St, Los Angeles, CA 90001" -168046,AAA Batteries (4-pack),1,2.99,03/31/19 18:11,"972 Lincoln St, Austin, TX 73301" -168047,20in Monitor,1,109.99,03/06/19 10:56,"423 Madison St, Austin, TX 73301" -168048,USB-C Charging Cable,1,11.95,03/10/19 22:23,"162 Pine St, Los Angeles, CA 90001" -168049,USB-C Charging Cable,1,11.95,03/08/19 23:30,"256 West St, Seattle, WA 98101" -168050,USB-C Charging Cable,1,11.95,03/01/19 20:52,"544 Highland St, Boston, MA 02215" -168051,Wired Headphones,1,11.99,03/21/19 23:31,"353 Main St, New York City, NY 10001" -168052,34in Ultrawide Monitor,1,379.99,03/21/19 10:17,"945 Highland St, Dallas, TX 75001" -168053,AAA Batteries (4-pack),1,2.99,03/18/19 12:51,"906 Main St, Atlanta, GA 30301" -168054,AA Batteries (4-pack),2,3.84,03/13/19 20:13,"138 Johnson St, Boston, MA 02215" -168055,Lightning Charging Cable,1,14.95,03/21/19 04:02,"527 10th St, San Francisco, CA 94016" -168056,Apple Airpods Headphones,1,150,03/12/19 20:45,"795 12th St, San Francisco, CA 94016" -168057,34in Ultrawide Monitor,1,379.99,03/10/19 16:59,"741 Lake St, San Francisco, CA 94016" -168058,Wired Headphones,1,11.99,03/23/19 20:19,"236 Cedar St, Los Angeles, CA 90001" -168059,Lightning Charging Cable,1,14.95,03/31/19 01:06,"744 5th St, San Francisco, CA 94016" -168060,Wired Headphones,1,11.99,03/18/19 13:52,"222 Hill St, Austin, TX 73301" -168061,Lightning Charging Cable,1,14.95,03/16/19 12:29,"542 9th St, Dallas, TX 75001" -168062,Apple Airpods Headphones,1,150,03/24/19 18:42,"271 Elm St, Los Angeles, CA 90001" -168063,Bose SoundSport Headphones,1,99.99,03/25/19 22:18,"468 Hill St, San Francisco, CA 94016" -168064,Google Phone,1,600,03/31/19 10:15,"213 West St, Dallas, TX 75001" -168065,Wired Headphones,1,11.99,03/04/19 13:32,"537 South St, Austin, TX 73301" -168066,Apple Airpods Headphones,1,150,03/16/19 22:16,"118 South St, Boston, MA 02215" -168067,27in FHD Monitor,1,149.99,03/21/19 16:03,"258 North St, New York City, NY 10001" -168068,Bose SoundSport Headphones,1,99.99,03/18/19 13:10,"427 7th St, Dallas, TX 75001" -168069,Lightning Charging Cable,1,14.95,03/07/19 10:59,"57 Elm St, San Francisco, CA 94016" -168070,AAA Batteries (4-pack),1,2.99,03/16/19 14:42,"992 5th St, Los Angeles, CA 90001" -168071,Wired Headphones,1,11.99,03/04/19 16:36,"555 South St, Boston, MA 02215" -168072,ThinkPad Laptop,1,999.99,03/03/19 18:50,"907 North St, Boston, MA 02215" -168073,Lightning Charging Cable,1,14.95,03/19/19 10:47,"294 Spruce St, San Francisco, CA 94016" -168074,27in 4K Gaming Monitor,1,389.99,03/19/19 12:19,"546 Madison St, San Francisco, CA 94016" -168075,iPhone,1,700,03/24/19 12:40,"419 13th St, Los Angeles, CA 90001" -168076,AAA Batteries (4-pack),4,2.99,03/16/19 08:30,"25 13th St, Boston, MA 02215" -168077,27in FHD Monitor,1,149.99,03/10/19 20:52,"627 Jackson St, San Francisco, CA 94016" -168078,Bose SoundSport Headphones,1,99.99,03/18/19 19:07,"643 13th St, Portland, OR 97035" -168079,iPhone,1,700,03/30/19 19:17,"403 8th St, San Francisco, CA 94016" -168080,Google Phone,1,600,03/05/19 00:25,"951 7th St, Boston, MA 02215" -168080,USB-C Charging Cable,1,11.95,03/05/19 00:25,"951 7th St, Boston, MA 02215" -168081,USB-C Charging Cable,1,11.95,03/01/19 14:55,"536 Maple St, San Francisco, CA 94016" -168082,AA Batteries (4-pack),2,3.84,03/29/19 11:27,"684 Meadow St, Los Angeles, CA 90001" -168083,USB-C Charging Cable,1,11.95,03/30/19 11:02,"689 12th St, Boston, MA 02215" -168084,Wired Headphones,1,11.99,03/02/19 07:14,"366 Sunset St, Atlanta, GA 30301" -168085,USB-C Charging Cable,1,11.95,03/01/19 10:35,"796 Wilson St, Portland, OR 97035" -168086,Apple Airpods Headphones,1,150,03/30/19 20:01,"47 Lincoln St, Atlanta, GA 30301" -168087,iPhone,1,700,03/26/19 15:24,"726 11th St, Austin, TX 73301" -168088,Wired Headphones,1,11.99,03/25/19 14:32,"361 Jefferson St, Los Angeles, CA 90001" -168089,Wired Headphones,1,11.99,03/07/19 21:09,"909 11th St, Atlanta, GA 30301" -168090,Apple Airpods Headphones,1,150,03/21/19 11:58,"692 4th St, Boston, MA 02215" -168091,Bose SoundSport Headphones,1,99.99,03/01/19 12:55,"769 Madison St, Los Angeles, CA 90001" -168092,Bose SoundSport Headphones,1,99.99,03/29/19 12:04,"849 Jefferson St, Portland, OR 97035" -168093,AA Batteries (4-pack),1,3.84,03/11/19 14:05,"589 10th St, New York City, NY 10001" -168094,Apple Airpods Headphones,1,150,03/02/19 11:04,"869 6th St, Austin, TX 73301" -168095,AA Batteries (4-pack),1,3.84,03/21/19 12:39,"143 6th St, New York City, NY 10001" -168096,AAA Batteries (4-pack),3,2.99,03/31/19 11:14,"886 1st St, Dallas, TX 75001" -168097,AA Batteries (4-pack),1,3.84,03/11/19 19:18,"812 Dogwood St, Atlanta, GA 30301" -168098,USB-C Charging Cable,1,11.95,03/01/19 11:25,"432 South St, New York City, NY 10001" -168099,27in 4K Gaming Monitor,1,389.99,03/26/19 11:01,"63 Cherry St, San Francisco, CA 94016" -168100,Google Phone,1,600,03/16/19 12:32,"249 Madison St, Boston, MA 02215" -168101,Flatscreen TV,1,300,03/19/19 11:40,"593 Maple St, Atlanta, GA 30301" -168102,Lightning Charging Cable,1,14.95,03/10/19 13:35,"800 South St, Los Angeles, CA 90001" -168103,27in FHD Monitor,1,149.99,03/07/19 17:15,"293 7th St, Seattle, WA 98101" -168104,USB-C Charging Cable,1,11.95,03/30/19 22:11,"175 14th St, Dallas, TX 75001" -168105,27in 4K Gaming Monitor,1,389.99,03/12/19 12:06,"865 North St, Austin, TX 73301" -168106,20in Monitor,1,109.99,03/08/19 12:59,"414 12th St, San Francisco, CA 94016" -168107,Apple Airpods Headphones,1,150,03/04/19 16:18,"173 River St, Atlanta, GA 30301" -168108,Apple Airpods Headphones,1,150,03/02/19 18:07,"575 Lincoln St, Dallas, TX 75001" -168109,Vareebadd Phone,1,400,03/24/19 14:17,"415 Dogwood St, San Francisco, CA 94016" -168110,AA Batteries (4-pack),1,3.84,03/14/19 21:48,"321 Jackson St, Los Angeles, CA 90001" -168111,Vareebadd Phone,1,400,03/20/19 13:32,"850 Wilson St, Dallas, TX 75001" -168112,Wired Headphones,1,11.99,03/18/19 20:39,"547 Cherry St, San Francisco, CA 94016" -168113,34in Ultrawide Monitor,1,379.99,03/26/19 23:10,"290 12th St, Boston, MA 02215" -168114,Lightning Charging Cable,1,14.95,03/10/19 15:00,"659 Main St, San Francisco, CA 94016" -168115,Apple Airpods Headphones,1,150,03/14/19 09:44,"282 Cherry St, Austin, TX 73301" -168116,Bose SoundSport Headphones,1,99.99,03/19/19 16:52,"819 7th St, Atlanta, GA 30301" -168117,Wired Headphones,1,11.99,03/04/19 10:55,"448 Highland St, Portland, OR 97035" -168118,USB-C Charging Cable,1,11.95,03/07/19 10:03,"953 Willow St, San Francisco, CA 94016" -168119,USB-C Charging Cable,1,11.95,03/18/19 14:11,"110 Hill St, San Francisco, CA 94016" -168120,AA Batteries (4-pack),2,3.84,03/16/19 09:24,"560 11th St, Austin, TX 73301" -168121,iPhone,1,700,03/02/19 22:55,"258 Church St, San Francisco, CA 94016" -168122,AA Batteries (4-pack),1,3.84,03/11/19 18:27,"951 Pine St, New York City, NY 10001" -168123,AA Batteries (4-pack),1,3.84,03/06/19 07:53,"689 11th St, Seattle, WA 98101" -168124,Wired Headphones,1,11.99,03/20/19 20:40,"197 Pine St, Los Angeles, CA 90001" -168125,Flatscreen TV,1,300,03/18/19 07:10,"341 Ridge St, Austin, TX 73301" -168126,AAA Batteries (4-pack),1,2.99,03/28/19 20:25,"470 Pine St, Boston, MA 02215" -168127,Lightning Charging Cable,1,14.95,03/29/19 22:26,"894 7th St, San Francisco, CA 94016" -168128,27in 4K Gaming Monitor,1,389.99,03/14/19 09:58,"115 11th St, San Francisco, CA 94016" -168129,Wired Headphones,1,11.99,03/03/19 12:15,"78 Jackson St, New York City, NY 10001" -168130,USB-C Charging Cable,1,11.95,03/04/19 19:25,"155 Willow St, Boston, MA 02215" -168131,iPhone,1,700,03/28/19 19:22,"424 Meadow St, San Francisco, CA 94016" -168132,Bose SoundSport Headphones,1,99.99,03/13/19 20:44,"820 River St, Seattle, WA 98101" -168133,USB-C Charging Cable,1,11.95,03/27/19 11:50,"963 Pine St, Portland, OR 97035" -168134,Macbook Pro Laptop,1,1700,03/29/19 12:16,"499 Pine St, San Francisco, CA 94016" -168135,Wired Headphones,1,11.99,03/28/19 06:57,"100 Ridge St, San Francisco, CA 94016" -168136,Apple Airpods Headphones,1,150,03/29/19 07:25,"492 Hill St, New York City, NY 10001" -168137,Lightning Charging Cable,1,14.95,03/08/19 15:48,"533 Willow St, Seattle, WA 98101" -168138,Wired Headphones,1,11.99,03/09/19 16:22,"996 1st St, San Francisco, CA 94016" -168139,34in Ultrawide Monitor,1,379.99,03/01/19 21:59,"51 Lake St, Atlanta, GA 30301" -168140,Macbook Pro Laptop,1,1700,03/01/19 11:04,"636 Wilson St, Austin, TX 73301" -168141,AAA Batteries (4-pack),1,2.99,03/30/19 23:21,"876 Lake St, New York City, NY 10001" -168142,USB-C Charging Cable,1,11.95,03/23/19 18:41,"664 Jefferson St, San Francisco, CA 94016" -168143,Apple Airpods Headphones,1,150,03/10/19 17:23,"270 14th St, San Francisco, CA 94016" -168144,Bose SoundSport Headphones,1,99.99,03/10/19 14:46,"681 Cedar St, San Francisco, CA 94016" -168145,ThinkPad Laptop,1,999.99,03/29/19 02:54,"902 4th St, Atlanta, GA 30301" -168146,Bose SoundSport Headphones,1,99.99,03/14/19 23:13,"419 West St, San Francisco, CA 94016" -168147,27in FHD Monitor,1,149.99,03/22/19 22:30,"843 West St, New York City, NY 10001" -168148,Wired Headphones,1,11.99,03/07/19 09:07,"697 6th St, San Francisco, CA 94016" -168149,Lightning Charging Cable,1,14.95,03/06/19 11:20,"745 4th St, San Francisco, CA 94016" -168150,Apple Airpods Headphones,1,150,03/14/19 15:17,"793 Church St, Portland, OR 97035" -168151,34in Ultrawide Monitor,1,379.99,03/01/19 12:29,"435 Spruce St, Boston, MA 02215" -168152,USB-C Charging Cable,1,11.95,03/04/19 08:44,"580 Lincoln St, Boston, MA 02215" -168153,Lightning Charging Cable,1,14.95,03/17/19 22:11,"229 Hickory St, San Francisco, CA 94016" -168154,Wired Headphones,1,11.99,03/08/19 21:13,"872 Jefferson St, Boston, MA 02215" -168155,Wired Headphones,1,11.99,03/28/19 20:02,"508 Center St, New York City, NY 10001" -168156,Flatscreen TV,1,300,03/16/19 11:47,"236 7th St, Atlanta, GA 30301" -168157,USB-C Charging Cable,1,11.95,03/17/19 22:35,"796 14th St, San Francisco, CA 94016" -168158,Apple Airpods Headphones,1,150,03/07/19 16:54,"549 Adams St, Boston, MA 02215" -168159,Apple Airpods Headphones,1,150,03/26/19 10:16,"265 Park St, San Francisco, CA 94016" -168160,USB-C Charging Cable,1,11.95,03/06/19 08:44,"418 Lincoln St, San Francisco, CA 94016" -168161,Google Phone,1,600,03/25/19 20:33,"155 Walnut St, Boston, MA 02215" -168162,USB-C Charging Cable,1,11.95,03/06/19 22:51,"356 Jefferson St, Boston, MA 02215" -168163,Lightning Charging Cable,1,14.95,03/02/19 10:02,"775 Lakeview St, New York City, NY 10001" -168164,27in 4K Gaming Monitor,1,389.99,03/06/19 08:59,"531 10th St, San Francisco, CA 94016" -168165,Lightning Charging Cable,1,14.95,03/29/19 11:01,"619 14th St, Boston, MA 02215" -168166,USB-C Charging Cable,1,11.95,03/10/19 14:33,"782 12th St, Boston, MA 02215" -168167,Apple Airpods Headphones,1,150,03/24/19 04:39,"783 Elm St, New York City, NY 10001" -168168,AA Batteries (4-pack),1,3.84,03/09/19 11:23,"316 Center St, San Francisco, CA 94016" -168169,Bose SoundSport Headphones,1,99.99,03/04/19 11:15,"285 13th St, San Francisco, CA 94016" -168170,27in FHD Monitor,1,149.99,03/19/19 12:49,"898 Adams St, San Francisco, CA 94016" -168171,AAA Batteries (4-pack),1,2.99,03/16/19 10:31,"400 Cedar St, New York City, NY 10001" -168172,USB-C Charging Cable,2,11.95,03/06/19 23:25,"422 Church St, San Francisco, CA 94016" -168173,34in Ultrawide Monitor,1,379.99,03/24/19 16:51,"930 Wilson St, Boston, MA 02215" -168173,AAA Batteries (4-pack),1,2.99,03/24/19 16:51,"930 Wilson St, Boston, MA 02215" -168174,Bose SoundSport Headphones,1,99.99,03/28/19 07:15,"258 13th St, Seattle, WA 98101" -168175,AAA Batteries (4-pack),1,2.99,03/17/19 20:22,"203 12th St, Atlanta, GA 30301" -168176,ThinkPad Laptop,1,999.99,03/02/19 19:05,"803 12th St, Boston, MA 02215" -168177,AA Batteries (4-pack),3,3.84,03/12/19 09:58,"180 Park St, Los Angeles, CA 90001" -168178,34in Ultrawide Monitor,1,379.99,03/22/19 07:52,"6 10th St, Boston, MA 02215" -168179,USB-C Charging Cable,1,11.95,03/21/19 09:40,"36 Jefferson St, Portland, OR 97035" -168180,Lightning Charging Cable,1,14.95,03/18/19 20:50,"201 1st St, Austin, TX 73301" -168181,ThinkPad Laptop,1,999.99,03/25/19 19:42,"798 Ridge St, San Francisco, CA 94016" -168182,Wired Headphones,1,11.99,03/17/19 21:21,"463 9th St, Los Angeles, CA 90001" -168183,Apple Airpods Headphones,1,150,03/30/19 19:59,"500 5th St, Dallas, TX 75001" -168184,Wired Headphones,1,11.99,03/01/19 20:20,"377 Chestnut St, San Francisco, CA 94016" -168185,USB-C Charging Cable,1,11.95,03/02/19 21:01,"391 Lincoln St, Portland, ME 04101" -168186,Wired Headphones,1,11.99,03/23/19 11:08,"452 Pine St, New York City, NY 10001" -168187,iPhone,1,700,03/23/19 02:59,"396 Lake St, Portland, OR 97035" -168187,Lightning Charging Cable,1,14.95,03/23/19 02:59,"396 Lake St, Portland, OR 97035" -168188,USB-C Charging Cable,1,11.95,03/20/19 00:39,"391 Cherry St, New York City, NY 10001" -168189,AAA Batteries (4-pack),1,2.99,03/31/19 02:31,"30 Dogwood St, Austin, TX 73301" -168190,USB-C Charging Cable,1,11.95,03/17/19 11:27,"663 Forest St, San Francisco, CA 94016" -168191,USB-C Charging Cable,1,11.95,03/16/19 23:31,"928 Lakeview St, Boston, MA 02215" -168192,Lightning Charging Cable,1,14.95,03/31/19 00:22,"191 Cedar St, Portland, OR 97035" -168193,AAA Batteries (4-pack),2,2.99,03/20/19 20:27,"996 South St, New York City, NY 10001" -168194,Bose SoundSport Headphones,1,99.99,03/28/19 20:00,"328 Elm St, Atlanta, GA 30301" -168195,Apple Airpods Headphones,1,150,03/26/19 10:14,"772 Meadow St, Dallas, TX 75001" -168196,34in Ultrawide Monitor,1,379.99,03/03/19 20:11,"157 Lakeview St, Portland, OR 97035" -168197,20in Monitor,1,109.99,03/30/19 21:43,"107 1st St, San Francisco, CA 94016" -168198,34in Ultrawide Monitor,1,379.99,03/29/19 20:59,"436 Lincoln St, Portland, OR 97035" -168199,USB-C Charging Cable,1,11.95,03/04/19 10:19,"221 Wilson St, New York City, NY 10001" -168200,iPhone,1,700,03/18/19 17:11,"238 Adams St, San Francisco, CA 94016" -168201,USB-C Charging Cable,2,11.95,03/06/19 20:02,"158 6th St, San Francisco, CA 94016" -168202,Wired Headphones,1,11.99,03/18/19 15:16,"761 Pine St, Dallas, TX 75001" -168203,AAA Batteries (4-pack),1,2.99,03/16/19 13:32,"726 Park St, San Francisco, CA 94016" -168204,20in Monitor,1,109.99,03/31/19 13:20,"813 10th St, Los Angeles, CA 90001" -168205,AA Batteries (4-pack),1,3.84,03/20/19 10:21,"979 Main St, Los Angeles, CA 90001" -168206,Flatscreen TV,1,300,03/19/19 09:08,"382 Willow St, San Francisco, CA 94016" -168207,Flatscreen TV,1,300,03/04/19 09:32,"184 Cedar St, San Francisco, CA 94016" -168208,Lightning Charging Cable,1,14.95,03/14/19 12:10,"874 4th St, Boston, MA 02215" -168209,Lightning Charging Cable,1,14.95,03/28/19 21:48,"565 8th St, Boston, MA 02215" -168210,27in FHD Monitor,1,149.99,03/18/19 00:13,"705 13th St, Dallas, TX 75001" -168211,AA Batteries (4-pack),1,3.84,03/30/19 13:07,"63 Ridge St, Los Angeles, CA 90001" -168212,AA Batteries (4-pack),1,3.84,03/03/19 10:43,"175 10th St, Dallas, TX 75001" -168213,iPhone,1,700,03/03/19 17:31,"283 2nd St, Atlanta, GA 30301" -168213,Lightning Charging Cable,1,14.95,03/03/19 17:31,"283 2nd St, Atlanta, GA 30301" -168214,Lightning Charging Cable,1,14.95,03/08/19 15:53,"459 Jefferson St, Atlanta, GA 30301" -168215,USB-C Charging Cable,1,11.95,03/01/19 14:04,"293 8th St, Atlanta, GA 30301" -168215,AA Batteries (4-pack),1,3.84,03/01/19 14:04,"293 8th St, Atlanta, GA 30301" -168216,Lightning Charging Cable,1,14.95,03/09/19 15:14,"473 Park St, Portland, OR 97035" -168217,Bose SoundSport Headphones,1,99.99,03/25/19 01:46,"525 Madison St, San Francisco, CA 94016" -168218,Lightning Charging Cable,1,14.95,03/19/19 13:00,"437 14th St, San Francisco, CA 94016" -168219,USB-C Charging Cable,1,11.95,03/20/19 07:51,"991 1st St, Los Angeles, CA 90001" -168220,AAA Batteries (4-pack),2,2.99,03/20/19 17:39,"451 Park St, New York City, NY 10001" -168221,AA Batteries (4-pack),1,3.84,03/27/19 12:36,"485 Elm St, San Francisco, CA 94016" -168222,Lightning Charging Cable,1,14.95,03/26/19 10:11,"271 Jackson St, Austin, TX 73301" -168223,Wired Headphones,1,11.99,03/22/19 18:28,"144 Jefferson St, Seattle, WA 98101" -168224,AA Batteries (4-pack),1,3.84,03/26/19 13:56,"789 Park St, Atlanta, GA 30301" -168225,Lightning Charging Cable,1,14.95,03/02/19 15:59,"609 Highland St, New York City, NY 10001" -168226,AAA Batteries (4-pack),1,2.99,03/20/19 11:24,"620 4th St, New York City, NY 10001" -168227,AAA Batteries (4-pack),2,2.99,03/04/19 12:38,"507 West St, Boston, MA 02215" -168228,Macbook Pro Laptop,1,1700,03/03/19 16:44,"100 8th St, Dallas, TX 75001" -168229,Bose SoundSport Headphones,1,99.99,03/22/19 11:37,"126 Washington St, Boston, MA 02215" -168230,USB-C Charging Cable,1,11.95,03/20/19 19:58,"790 1st St, Dallas, TX 75001" -168231,27in 4K Gaming Monitor,1,389.99,03/03/19 16:37,"681 Hill St, San Francisco, CA 94016" -168232,Lightning Charging Cable,1,14.95,03/22/19 07:07,"702 Park St, New York City, NY 10001" -168233,34in Ultrawide Monitor,1,379.99,03/19/19 19:50,"792 West St, Los Angeles, CA 90001" -168234,20in Monitor,1,109.99,03/16/19 11:42,"826 Lake St, New York City, NY 10001" -168235,Lightning Charging Cable,2,14.95,03/12/19 16:17,"853 12th St, Dallas, TX 75001" -168236,Google Phone,1,600,03/04/19 10:01,"237 Maple St, Los Angeles, CA 90001" -168236,Wired Headphones,2,11.99,03/04/19 10:01,"237 Maple St, Los Angeles, CA 90001" -168237,Wired Headphones,1,11.99,03/07/19 19:18,"490 Church St, San Francisco, CA 94016" -168238,Lightning Charging Cable,1,14.95,03/04/19 12:02,"646 13th St, San Francisco, CA 94016" -168239,LG Washing Machine,1,600.0,03/07/19 19:00,"500 North St, Boston, MA 02215" -168240,AA Batteries (4-pack),1,3.84,03/11/19 21:36,"745 Hill St, Portland, OR 97035" -168241,Lightning Charging Cable,1,14.95,03/27/19 19:11,"385 2nd St, San Francisco, CA 94016" -168242,27in 4K Gaming Monitor,1,389.99,03/25/19 11:13,"233 Elm St, Los Angeles, CA 90001" -168243,AAA Batteries (4-pack),1,2.99,03/06/19 21:09,"79 6th St, New York City, NY 10001" -168244,34in Ultrawide Monitor,1,379.99,03/30/19 20:51,"828 Madison St, New York City, NY 10001" -168245,34in Ultrawide Monitor,1,379.99,03/01/19 09:10,"102 Main St, Atlanta, GA 30301" -168246,Google Phone,1,600,03/30/19 00:17,"500 Elm St, San Francisco, CA 94016" -168247,Bose SoundSport Headphones,1,99.99,03/31/19 18:32,"618 North St, San Francisco, CA 94016" -168248,AAA Batteries (4-pack),1,2.99,03/21/19 17:24,"200 8th St, Los Angeles, CA 90001" -168249,Flatscreen TV,1,300,03/07/19 18:12,"65 Lincoln St, Dallas, TX 75001" -168250,USB-C Charging Cable,1,11.95,03/21/19 23:35,"980 7th St, San Francisco, CA 94016" -168251,Flatscreen TV,1,300,03/11/19 18:32,"505 Wilson St, Seattle, WA 98101" -,,,,, -168252,AA Batteries (4-pack),1,3.84,03/23/19 17:14,"483 River St, San Francisco, CA 94016" -168253,Wired Headphones,1,11.99,03/29/19 11:25,"33 Adams St, New York City, NY 10001" -168254,20in Monitor,1,109.99,03/01/19 16:09,"390 Madison St, Boston, MA 02215" -168255,iPhone,1,700,03/23/19 12:47,"110 Highland St, Los Angeles, CA 90001" -168256,AA Batteries (4-pack),2,3.84,03/07/19 00:12,"693 Dogwood St, New York City, NY 10001" -168257,USB-C Charging Cable,1,11.95,03/10/19 12:18,"377 Jefferson St, Dallas, TX 75001" -168258,AAA Batteries (4-pack),1,2.99,03/22/19 20:30,"47 River St, Austin, TX 73301" -168259,Apple Airpods Headphones,1,150,03/30/19 14:34,"396 11th St, San Francisco, CA 94016" -168260,Lightning Charging Cable,1,14.95,03/18/19 22:30,"508 Sunset St, San Francisco, CA 94016" -168261,34in Ultrawide Monitor,1,379.99,03/15/19 20:54,"12 South St, San Francisco, CA 94016" -168262,AAA Batteries (4-pack),1,2.99,03/15/19 16:46,"400 2nd St, Austin, TX 73301" -168263,Macbook Pro Laptop,1,1700,03/12/19 20:54,"990 Wilson St, San Francisco, CA 94016" -168264,27in FHD Monitor,1,149.99,03/31/19 13:35,"204 Jackson St, Boston, MA 02215" -168265,iPhone,1,700,03/01/19 07:55,"185 Lakeview St, Atlanta, GA 30301" -168266,AA Batteries (4-pack),1,3.84,03/17/19 14:33,"367 Adams St, San Francisco, CA 94016" -168267,Apple Airpods Headphones,1,150,03/16/19 16:34,"581 Center St, Atlanta, GA 30301" -168268,Lightning Charging Cable,1,14.95,03/06/19 10:09,"491 Maple St, Boston, MA 02215" -168269,Apple Airpods Headphones,1,150,03/29/19 20:53,"160 Chestnut St, New York City, NY 10001" -168270,Bose SoundSport Headphones,1,99.99,03/01/19 05:46,"343 Chestnut St, San Francisco, CA 94016" -168271,AA Batteries (4-pack),1,3.84,03/29/19 22:00,"842 Madison St, Austin, TX 73301" -168272,27in FHD Monitor,1,149.99,03/05/19 17:42,"339 Forest St, Portland, OR 97035" -168273,Wired Headphones,2,11.99,03/15/19 08:29,"901 12th St, Atlanta, GA 30301" -168274,Apple Airpods Headphones,1,150,03/18/19 15:57,"59 14th St, Boston, MA 02215" -168275,AA Batteries (4-pack),1,3.84,03/11/19 15:26,"175 Washington St, Dallas, TX 75001" -168276,Bose SoundSport Headphones,1,99.99,03/11/19 09:16,"438 Willow St, Atlanta, GA 30301" -168277,Apple Airpods Headphones,1,150,03/18/19 16:01,"458 Willow St, San Francisco, CA 94016" -168278,Wired Headphones,1,11.99,03/14/19 20:04,"332 11th St, Seattle, WA 98101" -168279,34in Ultrawide Monitor,1,379.99,03/19/19 19:25,"18 Center St, Los Angeles, CA 90001" -168280,Lightning Charging Cable,1,14.95,03/23/19 16:52,"317 Lincoln St, Seattle, WA 98101" -168281,Apple Airpods Headphones,1,150,03/03/19 16:22,"985 Lincoln St, San Francisco, CA 94016" -168282,USB-C Charging Cable,1,11.95,03/16/19 11:58,"198 Madison St, Boston, MA 02215" -168282,Flatscreen TV,2,300,03/16/19 11:58,"198 Madison St, Boston, MA 02215" -168283,Apple Airpods Headphones,1,150,03/15/19 13:11,"632 Willow St, Boston, MA 02215" -168284,Wired Headphones,1,11.99,03/25/19 19:27,"654 Center St, Seattle, WA 98101" -168285,ThinkPad Laptop,1,999.99,03/08/19 18:52,"580 Adams St, Los Angeles, CA 90001" -168286,Bose SoundSport Headphones,1,99.99,03/15/19 13:04,"781 Adams St, Atlanta, GA 30301" -168287,AAA Batteries (4-pack),1,2.99,03/06/19 17:55,"795 South St, Boston, MA 02215" -168288,USB-C Charging Cable,1,11.95,03/27/19 21:47,"470 Main St, Los Angeles, CA 90001" -168289,AA Batteries (4-pack),1,3.84,03/24/19 08:58,"452 Lakeview St, Boston, MA 02215" -168290,AAA Batteries (4-pack),1,2.99,03/19/19 16:12,"660 Center St, Los Angeles, CA 90001" -168291,Bose SoundSport Headphones,1,99.99,03/15/19 22:08,"337 Dogwood St, Seattle, WA 98101" -168292,Lightning Charging Cable,1,14.95,03/20/19 17:00,"706 Hickory St, Los Angeles, CA 90001" -168293,34in Ultrawide Monitor,1,379.99,03/14/19 00:54,"379 Sunset St, Portland, ME 04101" -168294,AA Batteries (4-pack),1,3.84,03/30/19 16:21,"234 Park St, Boston, MA 02215" -168295,Lightning Charging Cable,1,14.95,03/10/19 21:17,"275 Jefferson St, San Francisco, CA 94016" -168296,AAA Batteries (4-pack),1,2.99,03/02/19 21:14,"409 Willow St, San Francisco, CA 94016" -168297,Bose SoundSport Headphones,1,99.99,03/06/19 11:57,"903 North St, San Francisco, CA 94016" -168298,USB-C Charging Cable,1,11.95,03/20/19 14:31,"372 6th St, Dallas, TX 75001" -168299,AAA Batteries (4-pack),1,2.99,03/31/19 10:38,"212 Jefferson St, Los Angeles, CA 90001" -168300,AA Batteries (4-pack),1,3.84,03/06/19 11:01,"617 1st St, Boston, MA 02215" -168301,USB-C Charging Cable,1,11.95,03/15/19 10:26,"18 Maple St, Seattle, WA 98101" -168302,Wired Headphones,1,11.99,03/25/19 20:52,"10 Sunset St, New York City, NY 10001" -168303,USB-C Charging Cable,1,11.95,03/06/19 15:11,"68 Main St, Atlanta, GA 30301" -168304,Bose SoundSport Headphones,1,99.99,03/17/19 09:00,"229 Hickory St, Portland, OR 97035" -168305,AAA Batteries (4-pack),1,2.99,03/01/19 14:54,"281 Park St, Los Angeles, CA 90001" -168306,AA Batteries (4-pack),1,3.84,03/25/19 12:39,"445 Pine St, Los Angeles, CA 90001" -168307,AAA Batteries (4-pack),2,2.99,03/16/19 19:57,"140 5th St, Los Angeles, CA 90001" -168308,Lightning Charging Cable,1,14.95,03/04/19 17:52,"344 14th St, Boston, MA 02215" -168309,Apple Airpods Headphones,1,150,03/26/19 21:32,"86 Ridge St, New York City, NY 10001" -168310,Vareebadd Phone,1,400,03/12/19 10:07,"400 Adams St, Los Angeles, CA 90001" -168311,USB-C Charging Cable,1,11.95,03/28/19 12:26,"243 5th St, Los Angeles, CA 90001" -168312,Wired Headphones,1,11.99,03/31/19 22:26,"580 Washington St, Los Angeles, CA 90001" -168313,Flatscreen TV,1,300,03/09/19 10:44,"914 12th St, San Francisco, CA 94016" -168314,USB-C Charging Cable,1,11.95,03/09/19 11:06,"403 2nd St, San Francisco, CA 94016" -168315,AA Batteries (4-pack),2,3.84,03/15/19 14:18,"80 Pine St, Portland, OR 97035" -168316,AAA Batteries (4-pack),2,2.99,03/06/19 02:20,"982 Walnut St, Austin, TX 73301" -168317,Lightning Charging Cable,1,14.95,03/27/19 22:18,"660 Main St, New York City, NY 10001" -168318,Lightning Charging Cable,1,14.95,03/01/19 09:20,"478 Lake St, Boston, MA 02215" -168319,27in 4K Gaming Monitor,1,389.99,03/02/19 17:04,"818 Dogwood St, Seattle, WA 98101" -168320,27in FHD Monitor,1,149.99,03/02/19 19:32,"530 13th St, Los Angeles, CA 90001" -168321,AA Batteries (4-pack),1,3.84,03/31/19 21:51,"410 Ridge St, San Francisco, CA 94016" -168322,AAA Batteries (4-pack),1,2.99,03/28/19 13:56,"400 Madison St, Los Angeles, CA 90001" -168323,AAA Batteries (4-pack),1,2.99,03/11/19 13:15,"691 Chestnut St, Los Angeles, CA 90001" -168324,27in FHD Monitor,1,149.99,03/27/19 14:29,"528 7th St, Los Angeles, CA 90001" -168325,AA Batteries (4-pack),1,3.84,03/23/19 20:56,"589 2nd St, San Francisco, CA 94016" -168326,Bose SoundSport Headphones,1,99.99,03/01/19 16:19,"404 Dogwood St, Dallas, TX 75001" -168327,Apple Airpods Headphones,1,150,03/19/19 13:23,"956 Madison St, San Francisco, CA 94016" -168328,USB-C Charging Cable,1,11.95,03/11/19 13:46,"595 Walnut St, San Francisco, CA 94016" -168329,USB-C Charging Cable,1,11.95,03/10/19 12:10,"231 Willow St, Portland, OR 97035" -168330,Flatscreen TV,1,300,03/02/19 01:14,"274 4th St, Los Angeles, CA 90001" -168331,AAA Batteries (4-pack),2,2.99,03/16/19 16:05,"62 12th St, Los Angeles, CA 90001" -168332,Lightning Charging Cable,1,14.95,03/11/19 10:30,"280 Sunset St, San Francisco, CA 94016" -168333,Apple Airpods Headphones,1,150,03/28/19 17:54,"422 Jackson St, San Francisco, CA 94016" -168333,AAA Batteries (4-pack),1,2.99,03/28/19 17:54,"422 Jackson St, San Francisco, CA 94016" -168334,USB-C Charging Cable,2,11.95,03/18/19 15:32,"300 Cherry St, Austin, TX 73301" -168335,Wired Headphones,1,11.99,03/29/19 18:37,"457 Wilson St, Los Angeles, CA 90001" -168336,Apple Airpods Headphones,1,150,03/20/19 22:54,"184 Ridge St, New York City, NY 10001" -168337,Lightning Charging Cable,1,14.95,03/01/19 12:38,"40 2nd St, San Francisco, CA 94016" -168338,27in 4K Gaming Monitor,1,389.99,03/29/19 14:17,"872 Lincoln St, Austin, TX 73301" -168339,Lightning Charging Cable,1,14.95,03/30/19 13:32,"955 9th St, Boston, MA 02215" -168340,Bose SoundSport Headphones,1,99.99,03/02/19 13:42,"19 5th St, Dallas, TX 75001" -168341,Bose SoundSport Headphones,1,99.99,03/02/19 14:26,"117 Meadow St, San Francisco, CA 94016" -168342,AAA Batteries (4-pack),2,2.99,03/14/19 16:30,"374 Church St, Boston, MA 02215" -168343,Lightning Charging Cable,1,14.95,03/08/19 09:57,"107 Walnut St, San Francisco, CA 94016" -168344,AA Batteries (4-pack),1,3.84,03/19/19 13:52,"41 Madison St, Atlanta, GA 30301" -168345,AA Batteries (4-pack),1,3.84,03/26/19 20:53,"747 Walnut St, San Francisco, CA 94016" -168346,USB-C Charging Cable,1,11.95,03/01/19 23:45,"319 Washington St, San Francisco, CA 94016" -168347,AAA Batteries (4-pack),4,2.99,03/16/19 02:07,"476 Walnut St, Los Angeles, CA 90001" -168348,AAA Batteries (4-pack),1,2.99,03/10/19 11:18,"943 Jefferson St, Atlanta, GA 30301" -168349,AAA Batteries (4-pack),2,2.99,03/03/19 08:56,"113 Center St, Boston, MA 02215" -168350,USB-C Charging Cable,1,11.95,03/31/19 23:03,"863 River St, San Francisco, CA 94016" -168351,USB-C Charging Cable,1,11.95,03/25/19 15:06,"325 Wilson St, San Francisco, CA 94016" -168352,27in FHD Monitor,1,149.99,03/10/19 07:49,"76 1st St, New York City, NY 10001" -168353,Macbook Pro Laptop,1,1700,03/20/19 12:49,"915 Spruce St, Atlanta, GA 30301" -168354,Apple Airpods Headphones,1,150,03/23/19 19:01,"784 5th St, Los Angeles, CA 90001" -168355,ThinkPad Laptop,1,999.99,03/11/19 20:26,"383 South St, Seattle, WA 98101" -168356,Apple Airpods Headphones,1,150,03/04/19 16:44,"239 Cherry St, Austin, TX 73301" -168357,AAA Batteries (4-pack),1,2.99,03/13/19 14:39,"511 Maple St, San Francisco, CA 94016" -168358,Macbook Pro Laptop,1,1700,03/06/19 10:58,"53 Pine St, San Francisco, CA 94016" -168359,iPhone,1,700,03/12/19 17:10,"520 Washington St, Atlanta, GA 30301" -168360,Lightning Charging Cable,1,14.95,03/19/19 13:50,"618 Maple St, Los Angeles, CA 90001" -168361,27in FHD Monitor,1,149.99,03/13/19 12:08,"237 Jackson St, New York City, NY 10001" -168362,Bose SoundSport Headphones,1,99.99,03/11/19 20:56,"338 North St, New York City, NY 10001" -168363,Wired Headphones,2,11.99,03/05/19 21:28,"49 Main St, Atlanta, GA 30301" -168364,Bose SoundSport Headphones,1,99.99,03/11/19 16:39,"832 Jackson St, Boston, MA 02215" -168365,AAA Batteries (4-pack),1,2.99,03/10/19 17:25,"777 Lakeview St, Portland, OR 97035" -168366,iPhone,1,700,03/12/19 15:41,"258 5th St, Dallas, TX 75001" -168367,Wired Headphones,2,11.99,03/03/19 17:28,"8 11th St, Seattle, WA 98101" -168368,Apple Airpods Headphones,1,150,03/05/19 13:51,"653 10th St, Seattle, WA 98101" -168369,Lightning Charging Cable,2,14.95,03/10/19 18:12,"680 Chestnut St, San Francisco, CA 94016" -168370,Wired Headphones,1,11.99,03/08/19 18:11,"959 Washington St, Boston, MA 02215" -168371,ThinkPad Laptop,1,999.99,03/05/19 21:02,"699 12th St, Los Angeles, CA 90001" -168372,Apple Airpods Headphones,1,150,03/16/19 18:18,"629 12th St, Dallas, TX 75001" -168373,USB-C Charging Cable,1,11.95,03/23/19 16:00,"251 Wilson St, San Francisco, CA 94016" -168374,Flatscreen TV,1,300,03/25/19 12:09,"611 Wilson St, Boston, MA 02215" -168375,Apple Airpods Headphones,1,150,03/24/19 13:00,"673 Willow St, San Francisco, CA 94016" -168376,iPhone,1,700,03/28/19 22:42,"625 Cherry St, Los Angeles, CA 90001" -168376,Apple Airpods Headphones,1,150,03/28/19 22:42,"625 Cherry St, Los Angeles, CA 90001" -168377,Macbook Pro Laptop,1,1700,03/09/19 21:37,"585 Ridge St, Los Angeles, CA 90001" -168378,Wired Headphones,1,11.99,03/03/19 21:10,"489 Willow St, Dallas, TX 75001" -168379,AA Batteries (4-pack),2,3.84,03/08/19 15:09,"281 Elm St, Los Angeles, CA 90001" -168380,Lightning Charging Cable,1,14.95,03/29/19 17:03,"829 Hickory St, Seattle, WA 98101" -168380,AAA Batteries (4-pack),2,2.99,03/29/19 17:03,"829 Hickory St, Seattle, WA 98101" -168381,27in 4K Gaming Monitor,1,389.99,03/29/19 19:55,"435 Adams St, San Francisco, CA 94016" -168382,Vareebadd Phone,1,400,03/04/19 16:31,"339 Pine St, Seattle, WA 98101" -168382,USB-C Charging Cable,1,11.95,03/04/19 16:31,"339 Pine St, Seattle, WA 98101" -168383,USB-C Charging Cable,1,11.95,03/28/19 06:51,"214 Church St, Boston, MA 02215" -168384,Lightning Charging Cable,2,14.95,03/09/19 22:01,"784 Johnson St, Boston, MA 02215" -168385,AA Batteries (4-pack),2,3.84,03/23/19 11:47,"734 South St, Los Angeles, CA 90001" -168386,Macbook Pro Laptop,1,1700,03/02/19 23:59,"865 West St, Los Angeles, CA 90001" -168387,AA Batteries (4-pack),1,3.84,03/20/19 05:51,"791 Main St, New York City, NY 10001" -168388,Lightning Charging Cable,1,14.95,03/24/19 13:35,"886 2nd St, San Francisco, CA 94016" -168389,USB-C Charging Cable,1,11.95,03/17/19 20:42,"925 Willow St, San Francisco, CA 94016" -168390,Lightning Charging Cable,1,14.95,03/24/19 16:46,"239 Madison St, Seattle, WA 98101" -168391,Bose SoundSport Headphones,1,99.99,03/16/19 12:15,"558 Madison St, Atlanta, GA 30301" -168392,Bose SoundSport Headphones,1,99.99,03/09/19 09:30,"583 Jefferson St, San Francisco, CA 94016" -168393,27in 4K Gaming Monitor,1,389.99,03/02/19 17:52,"864 10th St, San Francisco, CA 94016" -168394,Apple Airpods Headphones,1,150,03/28/19 11:16,"731 Adams St, Boston, MA 02215" -168395,AAA Batteries (4-pack),3,2.99,03/15/19 20:11,"946 10th St, Austin, TX 73301" -168396,Macbook Pro Laptop,1,1700,03/13/19 16:17,"252 Cherry St, Boston, MA 02215" -168397,USB-C Charging Cable,1,11.95,03/26/19 18:27,"258 Chestnut St, Los Angeles, CA 90001" -168398,USB-C Charging Cable,1,11.95,03/03/19 13:07,"920 5th St, San Francisco, CA 94016" -168399,Lightning Charging Cable,1,14.95,03/20/19 15:40,"516 8th St, Portland, OR 97035" -168400,Flatscreen TV,1,300,03/24/19 23:27,"10 Spruce St, Dallas, TX 75001" -168401,Google Phone,1,600,03/24/19 16:55,"162 Cherry St, Austin, TX 73301" -168402,Apple Airpods Headphones,1,150,03/09/19 13:31,"224 Highland St, Los Angeles, CA 90001" -168403,Lightning Charging Cable,1,14.95,03/29/19 14:37,"758 Johnson St, Los Angeles, CA 90001" -168404,AA Batteries (4-pack),1,3.84,03/05/19 08:13,"997 Forest St, Boston, MA 02215" -168405,USB-C Charging Cable,1,11.95,03/11/19 16:57,"10 10th St, Atlanta, GA 30301" -168406,AA Batteries (4-pack),1,3.84,03/12/19 10:20,"489 Hill St, San Francisco, CA 94016" -168407,USB-C Charging Cable,1,11.95,03/12/19 12:02,"717 South St, Seattle, WA 98101" -168408,Lightning Charging Cable,1,14.95,03/30/19 19:06,"639 Hickory St, San Francisco, CA 94016" -168409,Apple Airpods Headphones,1,150,03/15/19 12:26,"754 Spruce St, San Francisco, CA 94016" -168410,AAA Batteries (4-pack),1,2.99,03/21/19 10:07,"198 11th St, Austin, TX 73301" -168411,Google Phone,1,600,03/07/19 18:19,"281 7th St, Los Angeles, CA 90001" -168412,AA Batteries (4-pack),1,3.84,03/10/19 21:46,"24 Main St, New York City, NY 10001" -168413,Apple Airpods Headphones,1,150,03/10/19 22:54,"154 West St, Seattle, WA 98101" -168414,Bose SoundSport Headphones,1,99.99,03/23/19 12:01,"948 4th St, San Francisco, CA 94016" -168415,Lightning Charging Cable,1,14.95,03/13/19 12:19,"719 North St, New York City, NY 10001" -168416,USB-C Charging Cable,1,11.95,03/12/19 17:13,"741 Maple St, San Francisco, CA 94016" -168417,iPhone,1,700,03/15/19 01:20,"398 Pine St, New York City, NY 10001" -168418,USB-C Charging Cable,1,11.95,03/14/19 15:28,"377 6th St, Boston, MA 02215" -168419,27in 4K Gaming Monitor,1,389.99,03/04/19 15:34,"380 Dogwood St, San Francisco, CA 94016" -168420,Bose SoundSport Headphones,1,99.99,03/27/19 07:22,"993 Wilson St, Austin, TX 73301" -168421,AA Batteries (4-pack),1,3.84,03/07/19 12:18,"477 6th St, Los Angeles, CA 90001" -168422,34in Ultrawide Monitor,1,379.99,03/28/19 06:42,"535 Lakeview St, Atlanta, GA 30301" -168423,Lightning Charging Cable,1,14.95,03/15/19 19:33,"671 Ridge St, New York City, NY 10001" -168424,Flatscreen TV,1,300,03/05/19 16:30,"487 2nd St, Atlanta, GA 30301" -168425,27in 4K Gaming Monitor,1,389.99,03/08/19 22:52,"942 2nd St, Dallas, TX 75001" -168426,USB-C Charging Cable,1,11.95,03/11/19 20:37,"812 Walnut St, Seattle, WA 98101" -168427,Wired Headphones,1,11.99,03/31/19 20:44,"766 River St, Los Angeles, CA 90001" -168428,27in 4K Gaming Monitor,1,389.99,03/09/19 17:03,"106 Hickory St, San Francisco, CA 94016" -168429,27in FHD Monitor,1,149.99,03/14/19 20:27,"682 Washington St, Austin, TX 73301" -168430,Lightning Charging Cable,1,14.95,03/05/19 11:24,"467 South St, San Francisco, CA 94016" -168431,AAA Batteries (4-pack),2,2.99,03/20/19 09:33,"638 13th St, Seattle, WA 98101" -168432,AAA Batteries (4-pack),1,2.99,03/24/19 17:00,"479 Sunset St, San Francisco, CA 94016" -168433,Bose SoundSport Headphones,1,99.99,03/01/19 22:11,"132 Meadow St, San Francisco, CA 94016" -168434,34in Ultrawide Monitor,1,379.99,03/22/19 10:11,"787 Park St, San Francisco, CA 94016" -168435,AAA Batteries (4-pack),2,2.99,03/20/19 14:36,"907 Cherry St, Seattle, WA 98101" -168436,Lightning Charging Cable,1,14.95,03/16/19 11:56,"621 2nd St, San Francisco, CA 94016" -168436,Bose SoundSport Headphones,1,99.99,03/16/19 11:56,"621 2nd St, San Francisco, CA 94016" -168437,Bose SoundSport Headphones,1,99.99,03/26/19 22:03,"906 Meadow St, Boston, MA 02215" -168438,Google Phone,1,600,03/13/19 21:27,"570 Lake St, New York City, NY 10001" -168439,Lightning Charging Cable,1,14.95,03/18/19 21:20,"878 6th St, Portland, OR 97035" -168440,34in Ultrawide Monitor,1,379.99,03/19/19 17:06,"334 5th St, Atlanta, GA 30301" -168441,27in FHD Monitor,1,149.99,03/16/19 22:09,"135 1st St, San Francisco, CA 94016" -168442,Wired Headphones,1,11.99,03/13/19 16:16,"642 4th St, Boston, MA 02215" -168443,27in 4K Gaming Monitor,1,389.99,03/13/19 21:46,"145 Ridge St, San Francisco, CA 94016" -168444,Apple Airpods Headphones,1,150,03/04/19 21:56,"547 Lakeview St, Los Angeles, CA 90001" -168445,Apple Airpods Headphones,1,150,03/15/19 10:41,"832 West St, Portland, OR 97035" -168446,ThinkPad Laptop,1,999.99,03/06/19 20:50,"398 Center St, San Francisco, CA 94016" -168447,Wired Headphones,2,11.99,03/30/19 21:08,"514 Center St, Los Angeles, CA 90001" -168448,AA Batteries (4-pack),1,3.84,03/10/19 14:19,"645 8th St, Seattle, WA 98101" -168449,Wired Headphones,2,11.99,03/23/19 18:08,"798 8th St, Austin, TX 73301" -168450,27in 4K Gaming Monitor,1,389.99,03/26/19 13:06,"577 13th St, New York City, NY 10001" -168451,34in Ultrawide Monitor,1,379.99,03/27/19 11:03,"969 Ridge St, New York City, NY 10001" -168452,Macbook Pro Laptop,1,1700,03/18/19 23:10,"212 Walnut St, Austin, TX 73301" -168453,Lightning Charging Cable,2,14.95,03/23/19 10:15,"277 Lake St, New York City, NY 10001" -168454,iPhone,1,700,03/27/19 20:22,"492 9th St, San Francisco, CA 94016" -168455,Google Phone,1,600,03/04/19 08:19,"987 5th St, New York City, NY 10001" -168456,AA Batteries (4-pack),2,3.84,03/14/19 20:43,"965 Highland St, Portland, OR 97035" -168457,34in Ultrawide Monitor,1,379.99,03/27/19 20:21,"799 Wilson St, New York City, NY 10001" -168458,Apple Airpods Headphones,1,150,03/05/19 14:10,"240 14th St, San Francisco, CA 94016" -168459,Apple Airpods Headphones,1,150,03/10/19 12:25,"692 Spruce St, Dallas, TX 75001" -168460,Google Phone,1,600,03/03/19 21:38,"268 Ridge St, San Francisco, CA 94016" -168461,27in 4K Gaming Monitor,1,389.99,03/26/19 23:11,"953 11th St, Los Angeles, CA 90001" -168462,iPhone,1,700,03/01/19 20:59,"406 River St, San Francisco, CA 94016" -168463,Lightning Charging Cable,1,14.95,03/15/19 22:20,"700 River St, New York City, NY 10001" -168464,AAA Batteries (4-pack),1,2.99,03/24/19 21:26,"842 10th St, San Francisco, CA 94016" -168465,iPhone,1,700,03/11/19 16:57,"975 4th St, Seattle, WA 98101" -168466,AA Batteries (4-pack),1,3.84,03/06/19 13:56,"675 6th St, New York City, NY 10001" -168467,AAA Batteries (4-pack),1,2.99,03/02/19 02:40,"60 Lakeview St, San Francisco, CA 94016" -168468,Flatscreen TV,1,300,03/19/19 18:39,"886 Sunset St, San Francisco, CA 94016" -168469,27in FHD Monitor,1,149.99,03/19/19 20:30,"899 Church St, Portland, ME 04101" -168470,AAA Batteries (4-pack),2,2.99,03/05/19 10:45,"165 Park St, Seattle, WA 98101" -168471,27in FHD Monitor,1,149.99,03/20/19 22:17,"730 Spruce St, Atlanta, GA 30301" -168472,Wired Headphones,1,11.99,03/03/19 19:52,"805 13th St, Portland, OR 97035" -168473,USB-C Charging Cable,1,11.95,03/20/19 23:41,"889 Walnut St, Los Angeles, CA 90001" -168474,USB-C Charging Cable,1,11.95,03/11/19 20:48,"144 Cherry St, Seattle, WA 98101" -168475,27in 4K Gaming Monitor,1,389.99,03/17/19 13:02,"174 1st St, San Francisco, CA 94016" -168476,Google Phone,1,600,03/27/19 12:41,"633 Adams St, Los Angeles, CA 90001" -168477,34in Ultrawide Monitor,1,379.99,03/06/19 09:10,"471 Johnson St, Los Angeles, CA 90001" -168478,AAA Batteries (4-pack),1,2.99,03/06/19 15:47,"947 8th St, Portland, OR 97035" -168479,AA Batteries (4-pack),1,3.84,03/20/19 23:05,"952 Madison St, Portland, OR 97035" -168480,27in FHD Monitor,1,149.99,03/17/19 17:04,"346 Meadow St, San Francisco, CA 94016" -168481,Apple Airpods Headphones,1,150,03/16/19 11:08,"105 4th St, Seattle, WA 98101" -168482,27in FHD Monitor,1,149.99,03/08/19 14:15,"466 Lake St, Boston, MA 02215" -168483,Wired Headphones,1,11.99,03/27/19 19:06,"421 Park St, Los Angeles, CA 90001" -168484,27in FHD Monitor,1,149.99,03/15/19 23:21,"74 Cedar St, New York City, NY 10001" -168485,20in Monitor,1,109.99,03/02/19 21:38,"742 Forest St, Atlanta, GA 30301" -168486,Apple Airpods Headphones,1,150,03/16/19 21:24,"321 4th St, Atlanta, GA 30301" -168487,AA Batteries (4-pack),1,3.84,03/25/19 22:57,"939 Hickory St, Portland, OR 97035" -168488,Bose SoundSport Headphones,1,99.99,03/06/19 18:40,"7 Church St, San Francisco, CA 94016" -168489,USB-C Charging Cable,1,11.95,03/18/19 14:48,"466 9th St, Los Angeles, CA 90001" -168490,Lightning Charging Cable,1,14.95,03/22/19 20:51,"97 Church St, Los Angeles, CA 90001" -168491,20in Monitor,1,109.99,03/05/19 16:25,"243 1st St, Seattle, WA 98101" -168492,AAA Batteries (4-pack),2,2.99,03/17/19 22:17,"965 Center St, Los Angeles, CA 90001" -168493,Lightning Charging Cable,1,14.95,03/16/19 11:03,"850 2nd St, Los Angeles, CA 90001" -168494,AAA Batteries (4-pack),1,2.99,03/04/19 17:39,"396 Church St, Atlanta, GA 30301" -168495,USB-C Charging Cable,1,11.95,03/07/19 09:55,"552 13th St, Seattle, WA 98101" -168496,Google Phone,1,600,03/07/19 09:57,"368 Adams St, San Francisco, CA 94016" -168497,AAA Batteries (4-pack),3,2.99,03/09/19 18:26,"630 4th St, Portland, OR 97035" -168498,Lightning Charging Cable,1,14.95,03/12/19 15:17,"360 2nd St, San Francisco, CA 94016" -168499,Wired Headphones,1,11.99,03/21/19 18:02,"638 Spruce St, New York City, NY 10001" -168500,Lightning Charging Cable,1,14.95,03/31/19 12:08,"718 Church St, San Francisco, CA 94016" -168501,Bose SoundSport Headphones,1,99.99,03/12/19 08:25,"46 Johnson St, San Francisco, CA 94016" -168502,AAA Batteries (4-pack),1,2.99,03/24/19 11:57,"16 Pine St, San Francisco, CA 94016" -168503,AA Batteries (4-pack),1,3.84,03/02/19 23:20,"774 Spruce St, San Francisco, CA 94016" -168504,Apple Airpods Headphones,1,150,03/11/19 16:00,"688 Lakeview St, Dallas, TX 75001" -168505,AA Batteries (4-pack),1,3.84,03/11/19 14:04,"249 11th St, Boston, MA 02215" -168506,AA Batteries (4-pack),2,3.84,03/19/19 15:38,"957 Walnut St, Los Angeles, CA 90001" -168507,AA Batteries (4-pack),1,3.84,03/29/19 13:24,"481 Lakeview St, Dallas, TX 75001" -168508,Wired Headphones,1,11.99,03/13/19 15:23,"630 Washington St, San Francisco, CA 94016" -168509,AA Batteries (4-pack),1,3.84,03/10/19 12:42,"351 Cherry St, Austin, TX 73301" -168510,AAA Batteries (4-pack),1,2.99,03/02/19 20:14,"227 Meadow St, San Francisco, CA 94016" -168511,USB-C Charging Cable,1,11.95,03/13/19 22:43,"184 Ridge St, Boston, MA 02215" -168512,Apple Airpods Headphones,1,150,03/30/19 17:35,"982 Lakeview St, Austin, TX 73301" -168513,Macbook Pro Laptop,1,1700,03/28/19 15:08,"172 4th St, Los Angeles, CA 90001" -168514,Apple Airpods Headphones,1,150,03/25/19 18:23,"290 Church St, Austin, TX 73301" -168515,Wired Headphones,1,11.99,03/12/19 18:59,"88 Highland St, San Francisco, CA 94016" -168516,LG Dryer,1,600.0,03/31/19 13:15,"699 11th St, Atlanta, GA 30301" -168517,Apple Airpods Headphones,2,150,03/25/19 11:33,"408 Walnut St, New York City, NY 10001" -168518,Lightning Charging Cable,1,14.95,03/25/19 22:05,"511 5th St, New York City, NY 10001" -168519,AA Batteries (4-pack),1,3.84,03/19/19 15:48,"504 Spruce St, Boston, MA 02215" -168520,Lightning Charging Cable,1,14.95,03/07/19 12:11,"432 1st St, Los Angeles, CA 90001" -168521,AAA Batteries (4-pack),1,2.99,03/24/19 02:10,"389 West St, Dallas, TX 75001" -168522,AA Batteries (4-pack),2,3.84,03/14/19 20:36,"537 Sunset St, Portland, OR 97035" -168523,Lightning Charging Cable,1,14.95,03/31/19 12:46,"385 Lincoln St, Boston, MA 02215" -168524,27in FHD Monitor,1,149.99,03/21/19 19:58,"41 Highland St, Atlanta, GA 30301" -168525,Lightning Charging Cable,1,14.95,03/06/19 19:27,"14 2nd St, New York City, NY 10001" -168526,Bose SoundSport Headphones,1,99.99,03/14/19 11:05,"10 Pine St, San Francisco, CA 94016" -168527,iPhone,1,700,03/02/19 19:43,"67 Jackson St, Boston, MA 02215" -168528,AAA Batteries (4-pack),3,2.99,03/24/19 17:48,"264 Cedar St, Los Angeles, CA 90001" -168529,Bose SoundSport Headphones,1,99.99,03/23/19 19:32,"609 6th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -168530,Lightning Charging Cable,1,14.95,03/12/19 10:56,"206 Adams St, Seattle, WA 98101" -168531,20in Monitor,1,109.99,03/03/19 13:55,"913 Park St, New York City, NY 10001" -168532,20in Monitor,1,109.99,03/04/19 10:30,"527 Cedar St, Dallas, TX 75001" -168533,34in Ultrawide Monitor,1,379.99,03/28/19 18:16,"107 13th St, San Francisco, CA 94016" -168534,ThinkPad Laptop,1,999.99,03/05/19 19:48,"449 Church St, San Francisco, CA 94016" -168535,Wired Headphones,2,11.99,03/20/19 16:47,"129 8th St, Atlanta, GA 30301" -168536,AA Batteries (4-pack),1,3.84,03/25/19 23:54,"688 Hill St, Los Angeles, CA 90001" -168537,Macbook Pro Laptop,1,1700,03/06/19 20:18,"161 North St, San Francisco, CA 94016" -168538,Apple Airpods Headphones,1,150,03/30/19 07:32,"901 Wilson St, Los Angeles, CA 90001" -168539,AA Batteries (4-pack),1,3.84,03/01/19 13:27,"101 12th St, San Francisco, CA 94016" -168540,Lightning Charging Cable,1,14.95,03/06/19 08:17,"657 6th St, Portland, OR 97035" -168541,Google Phone,1,600,03/28/19 13:34,"644 Wilson St, San Francisco, CA 94016" -168542,34in Ultrawide Monitor,1,379.99,03/09/19 01:16,"740 7th St, Austin, TX 73301" -168543,AAA Batteries (4-pack),1,2.99,03/09/19 03:28,"923 North St, San Francisco, CA 94016" -168544,AAA Batteries (4-pack),1,2.99,03/17/19 22:04,"315 Washington St, Boston, MA 02215" -168545,USB-C Charging Cable,1,11.95,03/18/19 12:57,"185 Adams St, Atlanta, GA 30301" -168546,Flatscreen TV,1,300,03/19/19 07:56,"670 Hickory St, Dallas, TX 75001" -168547,Bose SoundSport Headphones,1,99.99,03/20/19 11:49,"577 4th St, Dallas, TX 75001" -168548,Wired Headphones,1,11.99,03/20/19 16:41,"201 Lincoln St, Dallas, TX 75001" -168549,Apple Airpods Headphones,1,150,03/05/19 21:35,"612 West St, San Francisco, CA 94016" -168550,34in Ultrawide Monitor,1,379.99,03/21/19 15:00,"358 Ridge St, Seattle, WA 98101" -168551,Google Phone,1,600,03/06/19 15:16,"429 13th St, Los Angeles, CA 90001" -168552,AAA Batteries (4-pack),1,2.99,03/08/19 17:17,"223 Madison St, Boston, MA 02215" -168553,ThinkPad Laptop,1,999.99,03/17/19 12:10,"746 Johnson St, San Francisco, CA 94016" -168554,iPhone,1,700,03/22/19 22:52,"857 Pine St, Atlanta, GA 30301" -168555,Wired Headphones,1,11.99,03/01/19 08:47,"751 Elm St, San Francisco, CA 94016" -168556,20in Monitor,1,109.99,03/10/19 09:03,"528 Hickory St, Boston, MA 02215" -168557,Apple Airpods Headphones,1,150,03/12/19 20:18,"787 Dogwood St, New York City, NY 10001" -168558,Apple Airpods Headphones,1,150,03/03/19 18:09,"205 Center St, Boston, MA 02215" -168559,AA Batteries (4-pack),1,3.84,03/12/19 08:07,"782 Cherry St, Seattle, WA 98101" -168560,iPhone,1,700,03/09/19 07:52,"214 5th St, Atlanta, GA 30301" -168561,iPhone,1,700,03/27/19 22:23,"702 5th St, San Francisco, CA 94016" -168561,Lightning Charging Cable,1,14.95,03/27/19 22:23,"702 5th St, San Francisco, CA 94016" -168562,Lightning Charging Cable,1,14.95,03/03/19 20:10,"448 Hickory St, Austin, TX 73301" -168563,Wired Headphones,2,11.99,03/27/19 13:45,"914 South St, Boston, MA 02215" -168564,AA Batteries (4-pack),1,3.84,03/11/19 19:51,"120 Willow St, San Francisco, CA 94016" -168565,Wired Headphones,1,11.99,03/17/19 13:54,"160 Meadow St, San Francisco, CA 94016" -168566,Lightning Charging Cable,1,14.95,03/30/19 17:05,"748 Ridge St, Seattle, WA 98101" -168567,Apple Airpods Headphones,1,150,03/26/19 12:30,"828 Cherry St, Portland, OR 97035" -168568,20in Monitor,1,109.99,03/31/19 02:01,"262 Elm St, Austin, TX 73301" -168569,iPhone,1,700,03/27/19 13:31,"241 Hill St, Austin, TX 73301" -168570,27in FHD Monitor,1,149.99,03/22/19 00:30,"956 Dogwood St, Atlanta, GA 30301" -168571,Apple Airpods Headphones,1,150,03/25/19 11:00,"472 Johnson St, Portland, OR 97035" -168572,AA Batteries (4-pack),1,3.84,03/10/19 17:33,"183 Spruce St, Seattle, WA 98101" -168573,Lightning Charging Cable,1,14.95,03/27/19 06:41,"516 Walnut St, New York City, NY 10001" -168574,Lightning Charging Cable,1,14.95,03/13/19 12:01,"362 4th St, San Francisco, CA 94016" -168575,AA Batteries (4-pack),1,3.84,03/12/19 10:13,"818 Johnson St, San Francisco, CA 94016" -168576,AA Batteries (4-pack),4,3.84,03/06/19 10:44,"165 4th St, Los Angeles, CA 90001" -168577,Apple Airpods Headphones,1,150,03/11/19 15:07,"809 Adams St, San Francisco, CA 94016" -168578,Macbook Pro Laptop,1,1700,03/25/19 09:11,"848 Church St, Los Angeles, CA 90001" -168579,Bose SoundSport Headphones,1,99.99,03/04/19 12:32,"876 Hickory St, Portland, OR 97035" -168580,USB-C Charging Cable,1,11.95,03/12/19 11:29,"745 9th St, New York City, NY 10001" -168581,USB-C Charging Cable,1,11.95,03/21/19 15:54,"558 Willow St, Los Angeles, CA 90001" -168582,27in FHD Monitor,1,149.99,03/27/19 14:42,"202 Chestnut St, Los Angeles, CA 90001" -168583,Wired Headphones,1,11.99,03/30/19 09:20,"19 Walnut St, San Francisco, CA 94016" -,,,,, -168584,AAA Batteries (4-pack),3,2.99,03/14/19 19:56,"631 9th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -168585,AAA Batteries (4-pack),2,2.99,03/01/19 10:51,"171 5th St, Atlanta, GA 30301" -168586,AA Batteries (4-pack),1,3.84,03/12/19 01:00,"367 Lake St, Atlanta, GA 30301" -168587,27in FHD Monitor,1,149.99,03/22/19 00:26,"54 7th St, San Francisco, CA 94016" -168588,Apple Airpods Headphones,1,150,03/20/19 21:28,"829 4th St, Boston, MA 02215" -168589,AAA Batteries (4-pack),1,2.99,03/04/19 11:09,"877 13th St, Austin, TX 73301" -168590,Google Phone,1,600,03/16/19 10:21,"521 Main St, New York City, NY 10001" -168591,Wired Headphones,1,11.99,03/20/19 21:33,"955 Spruce St, Los Angeles, CA 90001" -168592,Wired Headphones,2,11.99,03/21/19 21:01,"602 Jackson St, Los Angeles, CA 90001" -168593,Bose SoundSport Headphones,1,99.99,03/22/19 07:46,"804 Hickory St, Boston, MA 02215" -168594,Google Phone,1,600,03/16/19 08:47,"569 Walnut St, Los Angeles, CA 90001" -168595,27in FHD Monitor,1,149.99,03/09/19 15:39,"944 14th St, Boston, MA 02215" -168596,27in FHD Monitor,1,149.99,03/21/19 18:29,"987 13th St, Los Angeles, CA 90001" -168597,Google Phone,1,600,03/03/19 12:22,"802 River St, San Francisco, CA 94016" -168598,USB-C Charging Cable,1,11.95,03/18/19 15:39,"339 14th St, San Francisco, CA 94016" -168599,Lightning Charging Cable,1,14.95,03/02/19 13:53,"387 Wilson St, Atlanta, GA 30301" -168600,USB-C Charging Cable,1,11.95,03/23/19 19:09,"593 Spruce St, Seattle, WA 98101" -168601,Lightning Charging Cable,1,14.95,03/06/19 11:09,"881 Hickory St, Boston, MA 02215" -168602,Wired Headphones,1,11.99,03/30/19 12:28,"165 River St, Portland, OR 97035" -168603,Google Phone,1,600,03/15/19 15:38,"380 Cherry St, San Francisco, CA 94016" -168604,Google Phone,1,600,03/25/19 11:10,"762 4th St, Los Angeles, CA 90001" -168604,USB-C Charging Cable,1,11.95,03/25/19 11:10,"762 4th St, Los Angeles, CA 90001" -168605,Apple Airpods Headphones,1,150,03/17/19 23:40,"625 Chestnut St, San Francisco, CA 94016" -168606,USB-C Charging Cable,1,11.95,03/05/19 20:25,"775 Highland St, Portland, OR 97035" -168607,iPhone,1,700,03/20/19 08:42,"68 Pine St, Dallas, TX 75001" -168607,Apple Airpods Headphones,1,150,03/20/19 08:42,"68 Pine St, Dallas, TX 75001" -168607,Bose SoundSport Headphones,1,99.99,03/20/19 08:42,"68 Pine St, Dallas, TX 75001" -168608,AA Batteries (4-pack),1,3.84,03/25/19 21:32,"999 2nd St, Portland, OR 97035" -168609,Vareebadd Phone,1,400,03/11/19 14:03,"26 Spruce St, Atlanta, GA 30301" -168610,Bose SoundSport Headphones,1,99.99,03/04/19 16:08,"512 11th St, Boston, MA 02215" -168611,AA Batteries (4-pack),1,3.84,03/24/19 06:12,"408 West St, Boston, MA 02215" -168612,AA Batteries (4-pack),2,3.84,03/07/19 16:19,"47 6th St, New York City, NY 10001" -168613,27in FHD Monitor,1,149.99,03/13/19 18:46,"74 7th St, Portland, OR 97035" -168614,Flatscreen TV,1,300,03/15/19 16:51,"944 Wilson St, Boston, MA 02215" -168615,ThinkPad Laptop,1,999.99,03/12/19 10:33,"236 Meadow St, Atlanta, GA 30301" -168616,Wired Headphones,1,11.99,03/06/19 18:34,"481 12th St, Dallas, TX 75001" -168617,27in 4K Gaming Monitor,1,389.99,03/18/19 06:02,"73 Madison St, New York City, NY 10001" -168618,Lightning Charging Cable,1,14.95,03/25/19 22:10,"39 Wilson St, New York City, NY 10001" -168619,Vareebadd Phone,1,400,03/21/19 11:25,"185 Jefferson St, Los Angeles, CA 90001" -168619,USB-C Charging Cable,1,11.95,03/21/19 11:25,"185 Jefferson St, Los Angeles, CA 90001" -168620,USB-C Charging Cable,1,11.95,03/03/19 16:12,"262 South St, Atlanta, GA 30301" -168621,ThinkPad Laptop,1,999.99,03/23/19 17:53,"574 6th St, San Francisco, CA 94016" -168622,AAA Batteries (4-pack),2,2.99,03/09/19 09:35,"945 Church St, Portland, OR 97035" -168623,Wired Headphones,1,11.99,03/28/19 09:37,"356 Lincoln St, San Francisco, CA 94016" -168624,AAA Batteries (4-pack),1,2.99,03/03/19 14:33,"757 Cedar St, Atlanta, GA 30301" -168625,USB-C Charging Cable,1,11.95,03/19/19 17:02,"452 Sunset St, Dallas, TX 75001" -168626,27in FHD Monitor,1,149.99,03/03/19 11:07,"510 Center St, New York City, NY 10001" -168627,AA Batteries (4-pack),1,3.84,03/13/19 19:58,"242 8th St, San Francisco, CA 94016" -168628,Flatscreen TV,1,300,03/14/19 18:08,"542 Meadow St, San Francisco, CA 94016" -168629,27in FHD Monitor,1,149.99,03/17/19 14:52,"406 Center St, Seattle, WA 98101" -168630,27in 4K Gaming Monitor,1,389.99,03/21/19 16:06,"657 Cedar St, Seattle, WA 98101" -168631,Lightning Charging Cable,1,14.95,03/07/19 21:15,"533 1st St, Los Angeles, CA 90001" -168631,20in Monitor,1,109.99,03/07/19 21:15,"533 1st St, Los Angeles, CA 90001" -168632,AAA Batteries (4-pack),1,2.99,03/31/19 20:22,"776 13th St, Los Angeles, CA 90001" -168633,Flatscreen TV,1,300,03/27/19 22:41,"751 Park St, Atlanta, GA 30301" -168634,Google Phone,1,600,03/08/19 15:02,"251 8th St, San Francisco, CA 94016" -168635,Macbook Pro Laptop,1,1700,03/29/19 14:50,"605 Johnson St, Los Angeles, CA 90001" -168636,ThinkPad Laptop,1,999.99,03/06/19 12:43,"756 Sunset St, New York City, NY 10001" -168637,AAA Batteries (4-pack),1,2.99,03/31/19 21:39,"41 Center St, Boston, MA 02215" -168638,AAA Batteries (4-pack),1,2.99,03/12/19 18:27,"448 9th St, Los Angeles, CA 90001" -168639,AA Batteries (4-pack),1,3.84,03/13/19 15:32,"61 Dogwood St, Los Angeles, CA 90001" -168640,ThinkPad Laptop,1,999.99,03/15/19 12:29,"287 11th St, Los Angeles, CA 90001" -168641,USB-C Charging Cable,1,11.95,03/28/19 20:52,"441 West St, Boston, MA 02215" -168642,Lightning Charging Cable,1,14.95,03/26/19 19:12,"380 Wilson St, San Francisco, CA 94016" -168643,34in Ultrawide Monitor,1,379.99,03/29/19 09:51,"840 Spruce St, New York City, NY 10001" -168644,27in FHD Monitor,1,149.99,03/15/19 03:00,"295 10th St, Boston, MA 02215" -168645,Bose SoundSport Headphones,1,99.99,03/19/19 22:46,"463 Madison St, Portland, OR 97035" -168646,Bose SoundSport Headphones,1,99.99,03/08/19 23:57,"500 Elm St, San Francisco, CA 94016" -168647,AAA Batteries (4-pack),4,2.99,03/10/19 01:03,"806 Johnson St, San Francisco, CA 94016" -168648,AAA Batteries (4-pack),1,2.99,03/19/19 08:11,"93 13th St, San Francisco, CA 94016" -168649,Lightning Charging Cable,1,14.95,03/19/19 19:37,"861 Johnson St, Los Angeles, CA 90001" -168650,AAA Batteries (4-pack),1,2.99,03/15/19 23:59,"999 Center St, Los Angeles, CA 90001" -168651,AA Batteries (4-pack),5,3.84,03/07/19 21:07,"219 Elm St, Seattle, WA 98101" -168652,Bose SoundSport Headphones,1,99.99,03/06/19 09:22,"647 Willow St, Atlanta, GA 30301" -168653,Macbook Pro Laptop,1,1700,03/26/19 21:52,"369 Chestnut St, Seattle, WA 98101" -168654,Lightning Charging Cable,1,14.95,03/22/19 11:41,"106 Hickory St, Atlanta, GA 30301" -168655,Bose SoundSport Headphones,1,99.99,03/28/19 10:56,"840 Spruce St, Atlanta, GA 30301" -168656,34in Ultrawide Monitor,1,379.99,03/25/19 19:34,"109 12th St, New York City, NY 10001" -168657,USB-C Charging Cable,1,11.95,03/19/19 22:28,"968 Spruce St, Los Angeles, CA 90001" -168658,Lightning Charging Cable,1,14.95,03/08/19 17:42,"890 Lincoln St, New York City, NY 10001" -168659,USB-C Charging Cable,1,11.95,03/25/19 20:06,"607 Cherry St, San Francisco, CA 94016" -168660,Lightning Charging Cable,1,14.95,03/07/19 18:02,"704 Lake St, New York City, NY 10001" -168661,AAA Batteries (4-pack),1,2.99,03/26/19 18:11,"753 Walnut St, San Francisco, CA 94016" -168662,Apple Airpods Headphones,1,150,03/26/19 10:06,"939 Lincoln St, Los Angeles, CA 90001" -168663,27in FHD Monitor,1,149.99,03/16/19 05:55,"702 10th St, Portland, OR 97035" -168664,ThinkPad Laptop,1,999.99,03/10/19 08:37,"672 Maple St, San Francisco, CA 94016" -168665,AAA Batteries (4-pack),1,2.99,03/17/19 23:23,"706 Lincoln St, Atlanta, GA 30301" -168666,USB-C Charging Cable,1,11.95,03/17/19 19:09,"244 Walnut St, Boston, MA 02215" -168667,Bose SoundSport Headphones,1,99.99,03/29/19 18:02,"587 7th St, San Francisco, CA 94016" -168668,Lightning Charging Cable,1,14.95,03/05/19 15:13,"695 Ridge St, Atlanta, GA 30301" -168669,AAA Batteries (4-pack),1,2.99,03/29/19 13:35,"834 Chestnut St, Los Angeles, CA 90001" -168670,USB-C Charging Cable,1,11.95,03/17/19 19:34,"786 Lakeview St, Atlanta, GA 30301" -168671,Wired Headphones,1,11.99,03/30/19 09:56,"358 10th St, Seattle, WA 98101" -168672,Apple Airpods Headphones,1,150,03/03/19 00:08,"626 Adams St, San Francisco, CA 94016" -168673,Bose SoundSport Headphones,1,99.99,03/07/19 10:31,"468 Spruce St, Los Angeles, CA 90001" -168674,Google Phone,1,600,03/03/19 09:48,"658 Cedar St, Seattle, WA 98101" -168674,USB-C Charging Cable,1,11.95,03/03/19 09:48,"658 Cedar St, Seattle, WA 98101" -168675,Flatscreen TV,1,300,03/30/19 13:20,"110 Chestnut St, Seattle, WA 98101" -168676,27in FHD Monitor,1,149.99,03/02/19 18:36,"708 Johnson St, Seattle, WA 98101" -168677,USB-C Charging Cable,1,11.95,03/23/19 12:46,"300 8th St, San Francisco, CA 94016" -168678,AA Batteries (4-pack),2,3.84,03/20/19 15:39,"212 Highland St, Seattle, WA 98101" -168679,Lightning Charging Cable,1,14.95,03/18/19 20:46,"166 Cedar St, Austin, TX 73301" -168680,Wired Headphones,1,11.99,03/26/19 19:27,"711 Adams St, San Francisco, CA 94016" -168681,iPhone,1,700,03/22/19 18:39,"308 Washington St, New York City, NY 10001" -168682,20in Monitor,1,109.99,03/20/19 23:49,"147 14th St, New York City, NY 10001" -168683,Bose SoundSport Headphones,1,99.99,03/14/19 20:33,"817 Sunset St, Seattle, WA 98101" -168684,AA Batteries (4-pack),2,3.84,03/20/19 00:12,"206 Willow St, New York City, NY 10001" -168685,AAA Batteries (4-pack),1,2.99,03/22/19 13:26,"217 6th St, San Francisco, CA 94016" -168686,USB-C Charging Cable,1,11.95,03/03/19 20:34,"881 Lake St, Los Angeles, CA 90001" -168687,Apple Airpods Headphones,1,150,03/11/19 16:35,"111 Willow St, Dallas, TX 75001" -168688,AA Batteries (4-pack),1,3.84,03/26/19 21:12,"15 Elm St, Los Angeles, CA 90001" -168689,Wired Headphones,1,11.99,03/25/19 07:24,"658 Cherry St, Boston, MA 02215" -168690,AAA Batteries (4-pack),1,2.99,03/23/19 17:22,"750 13th St, San Francisco, CA 94016" -168691,AA Batteries (4-pack),1,3.84,03/14/19 17:06,"363 Madison St, San Francisco, CA 94016" -168692,34in Ultrawide Monitor,1,379.99,03/22/19 12:17,"953 Pine St, Atlanta, GA 30301" -168693,Flatscreen TV,1,300,03/08/19 19:16,"332 Maple St, San Francisco, CA 94016" -168694,Bose SoundSport Headphones,1,99.99,03/16/19 18:21,"629 Elm St, Seattle, WA 98101" -168694,Wired Headphones,1,11.99,03/16/19 18:21,"629 Elm St, Seattle, WA 98101" -168695,USB-C Charging Cable,1,11.95,03/06/19 12:43,"820 Church St, Los Angeles, CA 90001" -168696,Wired Headphones,1,11.99,03/30/19 21:22,"657 5th St, Dallas, TX 75001" -168697,27in 4K Gaming Monitor,1,389.99,03/08/19 12:12,"322 Adams St, Boston, MA 02215" -168698,iPhone,1,700,03/30/19 10:35,"562 Church St, Dallas, TX 75001" -168699,Apple Airpods Headphones,1,150,03/02/19 15:51,"657 Adams St, Los Angeles, CA 90001" -168700,Macbook Pro Laptop,1,1700,03/06/19 19:50,"186 Sunset St, Portland, OR 97035" -168701,ThinkPad Laptop,1,999.99,03/01/19 11:25,"706 6th St, Austin, TX 73301" -168702,27in 4K Gaming Monitor,1,389.99,03/14/19 09:54,"541 11th St, Los Angeles, CA 90001" -168703,AA Batteries (4-pack),1,3.84,03/15/19 14:17,"936 Center St, Boston, MA 02215" -168704,Google Phone,1,600,03/01/19 13:27,"34 Spruce St, Boston, MA 02215" -168705,AAA Batteries (4-pack),1,2.99,03/02/19 15:28,"346 Jefferson St, Dallas, TX 75001" -168706,AAA Batteries (4-pack),1,2.99,03/09/19 12:48,"754 1st St, Los Angeles, CA 90001" -168707,iPhone,1,700,03/13/19 23:53,"729 12th St, New York City, NY 10001" -168708,34in Ultrawide Monitor,1,379.99,03/07/19 08:21,"741 Adams St, San Francisco, CA 94016" -168709,AA Batteries (4-pack),5,3.84,03/13/19 18:28,"243 8th St, Los Angeles, CA 90001" -168710,Bose SoundSport Headphones,1,99.99,03/01/19 15:39,"413 Highland St, Dallas, TX 75001" -168711,AAA Batteries (4-pack),1,2.99,03/02/19 21:10,"877 Dogwood St, Los Angeles, CA 90001" -168712,AAA Batteries (4-pack),1,2.99,03/26/19 16:25,"627 6th St, San Francisco, CA 94016" -168713,Wired Headphones,1,11.99,03/15/19 20:13,"642 North St, Dallas, TX 75001" -168714,AAA Batteries (4-pack),2,2.99,03/02/19 11:25,"465 South St, Boston, MA 02215" -168715,AA Batteries (4-pack),1,3.84,03/22/19 17:52,"518 Highland St, New York City, NY 10001" -168716,Wired Headphones,1,11.99,03/10/19 18:36,"388 Park St, Atlanta, GA 30301" -168717,27in FHD Monitor,1,149.99,03/23/19 22:10,"316 Johnson St, Boston, MA 02215" -168718,AAA Batteries (4-pack),2,2.99,03/05/19 13:39,"708 River St, San Francisco, CA 94016" -168719,AAA Batteries (4-pack),1,2.99,03/22/19 20:54,"168 Washington St, Seattle, WA 98101" -168720,USB-C Charging Cable,1,11.95,03/02/19 07:54,"237 West St, San Francisco, CA 94016" -168721,Apple Airpods Headphones,1,150,03/31/19 16:28,"6 Hill St, San Francisco, CA 94016" -168722,USB-C Charging Cable,1,11.95,03/18/19 12:36,"785 Lincoln St, New York City, NY 10001" -168723,USB-C Charging Cable,1,11.95,03/08/19 22:18,"979 Washington St, Boston, MA 02215" -168724,Apple Airpods Headphones,1,150,03/13/19 11:25,"552 Park St, Los Angeles, CA 90001" -168724,Apple Airpods Headphones,1,150,03/13/19 11:25,"552 Park St, Los Angeles, CA 90001" -168725,USB-C Charging Cable,1,11.95,03/04/19 22:18,"571 Cherry St, New York City, NY 10001" -168726,Bose SoundSport Headphones,1,99.99,03/15/19 15:06,"641 4th St, Dallas, TX 75001" -168727,34in Ultrawide Monitor,1,379.99,03/22/19 00:34,"693 14th St, Los Angeles, CA 90001" -168728,Lightning Charging Cable,1,14.95,03/18/19 17:53,"227 4th St, New York City, NY 10001" -168729,AAA Batteries (4-pack),1,2.99,03/31/19 13:56,"377 Madison St, New York City, NY 10001" -168730,27in 4K Gaming Monitor,1,389.99,03/19/19 12:36,"636 Hill St, Dallas, TX 75001" -168731,27in FHD Monitor,1,149.99,03/20/19 05:05,"257 South St, San Francisco, CA 94016" -168732,27in 4K Gaming Monitor,1,389.99,03/31/19 11:35,"95 Madison St, Seattle, WA 98101" -168733,Macbook Pro Laptop,1,1700,03/22/19 19:30,"970 4th St, Los Angeles, CA 90001" -168734,Lightning Charging Cable,1,14.95,03/13/19 15:33,"987 Cedar St, Austin, TX 73301" -168735,Lightning Charging Cable,1,14.95,03/24/19 17:33,"429 Church St, Seattle, WA 98101" -168736,Apple Airpods Headphones,1,150,03/27/19 15:03,"407 Maple St, New York City, NY 10001" -168737,Lightning Charging Cable,1,14.95,03/17/19 20:53,"616 2nd St, Los Angeles, CA 90001" -168738,Wired Headphones,1,11.99,03/20/19 18:15,"9 Cedar St, Atlanta, GA 30301" -168739,AA Batteries (4-pack),1,3.84,03/13/19 19:39,"991 Chestnut St, New York City, NY 10001" -168740,27in FHD Monitor,1,149.99,03/29/19 23:28,"181 Elm St, San Francisco, CA 94016" -168741,Bose SoundSport Headphones,1,99.99,03/13/19 14:30,"707 Sunset St, Portland, OR 97035" -168742,34in Ultrawide Monitor,1,379.99,03/07/19 22:34,"953 Lincoln St, Dallas, TX 75001" -168743,Wired Headphones,1,11.99,03/17/19 18:39,"194 Hill St, Boston, MA 02215" -168744,AA Batteries (4-pack),1,3.84,03/19/19 21:39,"112 Adams St, Boston, MA 02215" -168745,AA Batteries (4-pack),1,3.84,03/01/19 18:44,"176 River St, Boston, MA 02215" -168746,USB-C Charging Cable,1,11.95,03/23/19 12:14,"112 14th St, Atlanta, GA 30301" -168747,AA Batteries (4-pack),1,3.84,03/18/19 01:33,"785 Wilson St, Boston, MA 02215" -168748,Macbook Pro Laptop,1,1700,03/20/19 17:45,"251 Main St, Los Angeles, CA 90001" -168749,Apple Airpods Headphones,1,150,03/24/19 14:11,"603 Cedar St, Seattle, WA 98101" -168750,Wired Headphones,1,11.99,03/18/19 17:07,"312 9th St, New York City, NY 10001" -168751,Lightning Charging Cable,1,14.95,03/16/19 09:47,"199 Chestnut St, Los Angeles, CA 90001" -168752,USB-C Charging Cable,1,11.95,03/11/19 15:58,"939 Cherry St, San Francisco, CA 94016" -168753,Lightning Charging Cable,1,14.95,03/15/19 23:53,"650 Lincoln St, Portland, OR 97035" -168754,Wired Headphones,1,11.99,03/24/19 09:42,"526 Spruce St, San Francisco, CA 94016" -168755,Vareebadd Phone,1,400,03/16/19 10:23,"790 Hill St, Portland, OR 97035" -168756,34in Ultrawide Monitor,1,379.99,03/14/19 19:59,"247 Lincoln St, San Francisco, CA 94016" -168757,ThinkPad Laptop,1,999.99,03/18/19 20:08,"609 Main St, San Francisco, CA 94016" -168758,AAA Batteries (4-pack),3,2.99,03/30/19 10:57,"134 Elm St, Los Angeles, CA 90001" -168759,Wired Headphones,1,11.99,03/26/19 10:03,"238 Jackson St, Atlanta, GA 30301" -168760,AA Batteries (4-pack),1,3.84,03/08/19 10:09,"75 Spruce St, San Francisco, CA 94016" -168761,Google Phone,1,600,03/04/19 23:40,"128 Wilson St, San Francisco, CA 94016" -168762,Lightning Charging Cable,1,14.95,03/30/19 16:27,"863 Chestnut St, New York City, NY 10001" -168763,Wired Headphones,1,11.99,03/27/19 21:30,"336 Park St, San Francisco, CA 94016" -168764,Bose SoundSport Headphones,1,99.99,03/23/19 20:52,"961 North St, Dallas, TX 75001" -168765,AA Batteries (4-pack),2,3.84,03/04/19 11:42,"343 6th St, Los Angeles, CA 90001" -168766,Wired Headphones,1,11.99,03/13/19 19:38,"310 Ridge St, Austin, TX 73301" -168767,Wired Headphones,1,11.99,03/03/19 23:10,"107 Lake St, Seattle, WA 98101" -168768,27in FHD Monitor,1,149.99,03/10/19 00:52,"474 Madison St, Los Angeles, CA 90001" -168769,Apple Airpods Headphones,1,150,03/28/19 19:17,"442 West St, Atlanta, GA 30301" -168770,Bose SoundSport Headphones,1,99.99,03/20/19 15:01,"165 Walnut St, Los Angeles, CA 90001" -168771,20in Monitor,1,109.99,03/02/19 18:25,"396 Sunset St, Los Angeles, CA 90001" -168772,Bose SoundSport Headphones,1,99.99,03/13/19 20:46,"88 Lakeview St, Boston, MA 02215" -168773,Lightning Charging Cable,1,14.95,03/11/19 20:44,"720 Madison St, Los Angeles, CA 90001" -168774,AA Batteries (4-pack),1,3.84,03/09/19 16:54,"983 Maple St, Boston, MA 02215" -168775,Lightning Charging Cable,1,14.95,03/25/19 09:33,"290 Hill St, New York City, NY 10001" -168776,Lightning Charging Cable,1,14.95,03/21/19 08:54,"450 Jackson St, Dallas, TX 75001" -168777,iPhone,1,700,03/07/19 14:55,"247 Pine St, San Francisco, CA 94016" -168777,Lightning Charging Cable,1,14.95,03/07/19 14:55,"247 Pine St, San Francisco, CA 94016" -168777,Lightning Charging Cable,1,14.95,03/07/19 14:55,"247 Pine St, San Francisco, CA 94016" -168778,Bose SoundSport Headphones,1,99.99,03/08/19 15:31,"874 Church St, Seattle, WA 98101" -168778,27in FHD Monitor,1,149.99,03/08/19 15:31,"874 Church St, Seattle, WA 98101" -168779,AAA Batteries (4-pack),1,2.99,03/05/19 19:53,"908 North St, New York City, NY 10001" -168780,LG Washing Machine,1,600.0,03/08/19 12:16,"766 Pine St, Portland, OR 97035" -168781,27in 4K Gaming Monitor,1,389.99,03/30/19 10:35,"581 Hickory St, Boston, MA 02215" -168782,AA Batteries (4-pack),1,3.84,03/31/19 21:37,"956 Dogwood St, Boston, MA 02215" -168783,Wired Headphones,1,11.99,03/14/19 18:30,"35 South St, Atlanta, GA 30301" -168784,USB-C Charging Cable,1,11.95,03/07/19 09:29,"43 Johnson St, Austin, TX 73301" -168785,Bose SoundSport Headphones,1,99.99,03/24/19 20:48,"366 Hickory St, New York City, NY 10001" -168786,Lightning Charging Cable,1,14.95,03/20/19 01:18,"55 Wilson St, San Francisco, CA 94016" -168787,USB-C Charging Cable,1,11.95,03/13/19 18:55,"877 Dogwood St, San Francisco, CA 94016" -168788,AAA Batteries (4-pack),2,2.99,03/26/19 14:16,"902 5th St, Boston, MA 02215" -168789,AA Batteries (4-pack),3,3.84,03/22/19 11:26,"555 11th St, New York City, NY 10001" -168790,Apple Airpods Headphones,1,150,03/26/19 20:14,"121 West St, Boston, MA 02215" -168791,ThinkPad Laptop,1,999.99,03/22/19 14:28,"665 Maple St, San Francisco, CA 94016" -168792,27in FHD Monitor,1,149.99,03/17/19 12:44,"325 South St, San Francisco, CA 94016" -168793,Wired Headphones,1,11.99,03/27/19 07:37,"484 River St, Los Angeles, CA 90001" -168794,27in FHD Monitor,1,149.99,03/26/19 13:54,"124 Highland St, Dallas, TX 75001" -168795,iPhone,1,700,03/24/19 16:57,"807 9th St, New York City, NY 10001" -168796,Google Phone,1,600,03/07/19 01:17,"947 Main St, Dallas, TX 75001" -168797,Bose SoundSport Headphones,1,99.99,03/02/19 18:45,"211 12th St, Portland, OR 97035" -168798,Apple Airpods Headphones,1,150,03/08/19 14:07,"155 Forest St, New York City, NY 10001" -168799,Apple Airpods Headphones,1,150,03/04/19 13:41,"285 Center St, Austin, TX 73301" -168800,AAA Batteries (4-pack),1,2.99,03/07/19 18:18,"422 North St, Los Angeles, CA 90001" -168801,Apple Airpods Headphones,1,150,03/12/19 23:18,"749 Meadow St, New York City, NY 10001" -168802,Lightning Charging Cable,1,14.95,03/09/19 20:25,"197 Forest St, Atlanta, GA 30301" -168803,AAA Batteries (4-pack),1,2.99,03/15/19 16:26,"395 Madison St, Seattle, WA 98101" -168804,Lightning Charging Cable,1,14.95,03/19/19 19:24,"282 Forest St, Los Angeles, CA 90001" -168805,AA Batteries (4-pack),1,3.84,03/20/19 13:09,"29 Spruce St, Austin, TX 73301" -168806,iPhone,1,700,03/31/19 16:55,"81 Center St, Los Angeles, CA 90001" -168806,Lightning Charging Cable,1,14.95,03/31/19 16:55,"81 Center St, Los Angeles, CA 90001" -168807,AAA Batteries (4-pack),1,2.99,03/24/19 19:05,"872 8th St, New York City, NY 10001" -168808,USB-C Charging Cable,1,11.95,03/17/19 22:22,"830 12th St, San Francisco, CA 94016" -168809,AA Batteries (4-pack),1,3.84,03/12/19 19:19,"623 14th St, San Francisco, CA 94016" -168810,Bose SoundSport Headphones,1,99.99,03/26/19 14:45,"664 Forest St, Los Angeles, CA 90001" -168811,34in Ultrawide Monitor,1,379.99,03/17/19 18:18,"723 River St, San Francisco, CA 94016" -168812,27in FHD Monitor,1,149.99,03/29/19 18:53,"775 Elm St, San Francisco, CA 94016" -168813,AA Batteries (4-pack),4,3.84,03/21/19 14:09,"430 Pine St, New York City, NY 10001" -168814,Apple Airpods Headphones,1,150,03/13/19 10:04,"155 Hill St, Portland, OR 97035" -168815,Apple Airpods Headphones,1,150,03/06/19 17:27,"156 Dogwood St, Boston, MA 02215" -168816,Bose SoundSport Headphones,1,99.99,03/16/19 15:57,"485 Hill St, New York City, NY 10001" -168817,AA Batteries (4-pack),1,3.84,03/19/19 18:04,"757 8th St, San Francisco, CA 94016" -168818,AAA Batteries (4-pack),1,2.99,03/15/19 01:05,"762 River St, Los Angeles, CA 90001" -168818,AA Batteries (4-pack),1,3.84,03/15/19 01:05,"762 River St, Los Angeles, CA 90001" -168819,Bose SoundSport Headphones,1,99.99,03/27/19 12:43,"288 Chestnut St, San Francisco, CA 94016" -168820,Wired Headphones,4,11.99,03/16/19 00:02,"591 14th St, Atlanta, GA 30301" -168821,27in FHD Monitor,1,149.99,03/05/19 12:07,"852 Madison St, New York City, NY 10001" -168822,Macbook Pro Laptop,1,1700,03/16/19 14:01,"502 6th St, Los Angeles, CA 90001" -168823,USB-C Charging Cable,1,11.95,03/22/19 10:57,"101 Highland St, San Francisco, CA 94016" -168824,AA Batteries (4-pack),1,3.84,03/27/19 10:10,"57 Adams St, Dallas, TX 75001" -168825,USB-C Charging Cable,1,11.95,03/15/19 15:02,"900 Meadow St, New York City, NY 10001" -168826,USB-C Charging Cable,1,11.95,03/25/19 22:20,"991 Johnson St, Los Angeles, CA 90001" -168827,27in 4K Gaming Monitor,1,389.99,03/29/19 13:53,"52 Cedar St, Dallas, TX 75001" -168828,Apple Airpods Headphones,1,150,03/02/19 08:50,"195 6th St, New York City, NY 10001" -168829,Vareebadd Phone,1,400,03/17/19 10:09,"337 Cedar St, Boston, MA 02215" -168830,USB-C Charging Cable,1,11.95,03/19/19 07:44,"572 10th St, San Francisco, CA 94016" -168831,Bose SoundSport Headphones,2,99.99,03/23/19 08:44,"594 Washington St, Austin, TX 73301" -168832,AA Batteries (4-pack),1,3.84,03/23/19 13:03,"483 Pine St, Dallas, TX 75001" -168833,AA Batteries (4-pack),1,3.84,03/10/19 15:11,"352 North St, San Francisco, CA 94016" -168834,Google Phone,1,600,03/01/19 23:04,"166 Lincoln St, Dallas, TX 75001" -168835,USB-C Charging Cable,1,11.95,03/31/19 10:40,"388 Madison St, San Francisco, CA 94016" -168836,AA Batteries (4-pack),2,3.84,03/31/19 11:13,"146 Cherry St, New York City, NY 10001" -168837,Apple Airpods Headphones,1,150,03/30/19 21:05,"886 Maple St, Seattle, WA 98101" -168838,Bose SoundSport Headphones,1,99.99,03/20/19 11:24,"497 Wilson St, Dallas, TX 75001" -168839,iPhone,1,700,03/18/19 21:31,"810 Jefferson St, Austin, TX 73301" -168840,USB-C Charging Cable,1,11.95,03/17/19 11:59,"724 South St, Boston, MA 02215" -168841,USB-C Charging Cable,1,11.95,03/03/19 11:58,"206 Washington St, San Francisco, CA 94016" -168842,AA Batteries (4-pack),3,3.84,03/24/19 16:38,"598 Dogwood St, Boston, MA 02215" -168843,27in 4K Gaming Monitor,1,389.99,03/26/19 21:15,"409 Spruce St, New York City, NY 10001" -168844,Wired Headphones,1,11.99,03/06/19 13:27,"871 Washington St, Dallas, TX 75001" -168845,AA Batteries (4-pack),1,3.84,03/16/19 09:08,"328 Center St, Los Angeles, CA 90001" -168846,Macbook Pro Laptop,1,1700,03/26/19 19:39,"589 10th St, San Francisco, CA 94016" -168847,Flatscreen TV,1,300,03/04/19 13:16,"645 Chestnut St, San Francisco, CA 94016" -168848,AA Batteries (4-pack),1,3.84,03/16/19 09:23,"171 Forest St, New York City, NY 10001" -168849,27in FHD Monitor,1,149.99,03/16/19 19:47,"320 10th St, New York City, NY 10001" -168850,Flatscreen TV,1,300,03/04/19 14:50,"877 Cherry St, San Francisco, CA 94016" -168851,USB-C Charging Cable,1,11.95,03/17/19 12:47,"423 4th St, New York City, NY 10001" -168852,Bose SoundSport Headphones,1,99.99,03/17/19 13:39,"443 Hill St, New York City, NY 10001" -168853,Bose SoundSport Headphones,1,99.99,03/28/19 17:03,"848 12th St, San Francisco, CA 94016" -168854,27in 4K Gaming Monitor,1,389.99,03/20/19 15:45,"175 Hickory St, Los Angeles, CA 90001" -168855,Lightning Charging Cable,1,14.95,03/01/19 21:48,"49 1st St, New York City, NY 10001" -168856,Macbook Pro Laptop,1,1700,03/16/19 13:11,"848 Church St, Portland, OR 97035" -168857,LG Washing Machine,1,600.0,03/07/19 18:15,"118 North St, Portland, ME 04101" -168858,USB-C Charging Cable,1,11.95,03/15/19 22:58,"175 Jackson St, Atlanta, GA 30301" -168859,AA Batteries (4-pack),1,3.84,03/28/19 19:19,"890 6th St, Los Angeles, CA 90001" -168860,AA Batteries (4-pack),1,3.84,03/23/19 09:16,"212 Hickory St, Seattle, WA 98101" -168861,34in Ultrawide Monitor,1,379.99,03/03/19 09:13,"92 Jackson St, New York City, NY 10001" -168862,Flatscreen TV,1,300,03/13/19 15:36,"153 Cedar St, New York City, NY 10001" -168863,USB-C Charging Cable,1,11.95,03/20/19 12:59,"702 Washington St, San Francisco, CA 94016" -168864,27in 4K Gaming Monitor,1,389.99,03/06/19 19:28,"632 Willow St, Austin, TX 73301" -168865,34in Ultrawide Monitor,1,379.99,03/01/19 15:33,"414 2nd St, San Francisco, CA 94016" -168866,Wired Headphones,1,11.99,03/16/19 21:48,"458 Park St, Boston, MA 02215" -168867,iPhone,1,700,03/23/19 06:41,"994 Park St, Los Angeles, CA 90001" -168868,Apple Airpods Headphones,1,150,03/09/19 18:35,"476 12th St, Boston, MA 02215" -168869,AAA Batteries (4-pack),4,2.99,03/27/19 10:15,"501 Main St, San Francisco, CA 94016" -168870,Bose SoundSport Headphones,1,99.99,03/15/19 19:37,"931 West St, Dallas, TX 75001" -168871,Lightning Charging Cable,2,14.95,03/14/19 22:16,"609 Highland St, New York City, NY 10001" -168872,Google Phone,1,600,03/15/19 17:11,"314 7th St, Atlanta, GA 30301" -168873,AA Batteries (4-pack),2,3.84,03/24/19 13:15,"139 Adams St, Austin, TX 73301" -168874,AA Batteries (4-pack),1,3.84,03/25/19 19:45,"869 2nd St, Los Angeles, CA 90001" -168875,Apple Airpods Headphones,1,150,03/01/19 22:30,"445 Church St, Boston, MA 02215" -168876,AAA Batteries (4-pack),1,2.99,03/15/19 20:36,"748 River St, San Francisco, CA 94016" -168877,USB-C Charging Cable,1,11.95,03/12/19 15:59,"303 Lincoln St, New York City, NY 10001" -168878,iPhone,1,700,03/29/19 14:48,"490 2nd St, Portland, OR 97035" -168879,Apple Airpods Headphones,1,150,03/15/19 12:30,"703 10th St, San Francisco, CA 94016" -168880,Macbook Pro Laptop,1,1700,03/28/19 07:36,"835 14th St, Dallas, TX 75001" -168881,ThinkPad Laptop,1,999.99,03/13/19 22:51,"423 2nd St, New York City, NY 10001" -168882,Wired Headphones,1,11.99,03/11/19 18:04,"52 13th St, San Francisco, CA 94016" -168883,USB-C Charging Cable,1,11.95,03/24/19 09:28,"877 Sunset St, New York City, NY 10001" -168884,Bose SoundSport Headphones,1,99.99,03/15/19 09:00,"22 7th St, Austin, TX 73301" -168885,USB-C Charging Cable,1,11.95,03/30/19 19:17,"522 Spruce St, San Francisco, CA 94016" -168886,Wired Headphones,2,11.99,03/08/19 13:28,"946 Lincoln St, Los Angeles, CA 90001" -168887,Apple Airpods Headphones,1,150,03/22/19 18:19,"666 10th St, Seattle, WA 98101" -168888,AA Batteries (4-pack),1,3.84,03/18/19 14:26,"815 Hill St, Los Angeles, CA 90001" -168888,AA Batteries (4-pack),1,3.84,03/18/19 14:26,"815 Hill St, Los Angeles, CA 90001" -168889,Bose SoundSport Headphones,1,99.99,03/09/19 01:10,"362 Hill St, Los Angeles, CA 90001" -168890,AAA Batteries (4-pack),1,2.99,03/05/19 15:27,"827 1st St, Atlanta, GA 30301" -168890,Wired Headphones,3,11.99,03/05/19 15:27,"827 1st St, Atlanta, GA 30301" -168891,Google Phone,1,600,03/28/19 12:44,"506 West St, San Francisco, CA 94016" -168892,USB-C Charging Cable,1,11.95,03/31/19 12:58,"640 11th St, Austin, TX 73301" -168893,Apple Airpods Headphones,1,150,03/10/19 21:56,"538 Chestnut St, Portland, OR 97035" -168894,34in Ultrawide Monitor,1,379.99,03/08/19 15:02,"534 Pine St, Seattle, WA 98101" -168895,Bose SoundSport Headphones,1,99.99,03/28/19 14:34,"101 Maple St, New York City, NY 10001" -168896,27in 4K Gaming Monitor,1,389.99,03/12/19 11:08,"411 Cherry St, New York City, NY 10001" -168897,Bose SoundSport Headphones,1,99.99,03/29/19 09:17,"452 5th St, Portland, OR 97035" -168898,20in Monitor,1,109.99,03/08/19 12:02,"617 Maple St, Los Angeles, CA 90001" -168899,AAA Batteries (4-pack),1,2.99,03/04/19 16:48,"796 5th St, Portland, OR 97035" -168900,AAA Batteries (4-pack),1,2.99,03/25/19 15:55,"623 West St, Los Angeles, CA 90001" -168900,Lightning Charging Cable,1,14.95,03/25/19 15:55,"623 West St, Los Angeles, CA 90001" -168901,Macbook Pro Laptop,1,1700,03/18/19 10:30,"502 13th St, Los Angeles, CA 90001" -168902,AAA Batteries (4-pack),2,2.99,03/02/19 07:50,"208 Ridge St, Dallas, TX 75001" -168903,USB-C Charging Cable,2,11.95,03/12/19 07:46,"949 Highland St, San Francisco, CA 94016" -168904,AA Batteries (4-pack),1,3.84,03/25/19 10:05,"490 9th St, San Francisco, CA 94016" -168905,USB-C Charging Cable,1,11.95,04/01/19 01:00,"241 Spruce St, Boston, MA 02215" -168905,ThinkPad Laptop,1,999.99,04/01/19 01:00,"241 Spruce St, Boston, MA 02215" -168906,Macbook Pro Laptop,1,1700,03/30/19 21:05,"417 North St, Los Angeles, CA 90001" -168907,Bose SoundSport Headphones,1,99.99,03/11/19 17:42,"427 Elm St, San Francisco, CA 94016" -168908,AA Batteries (4-pack),1,3.84,03/26/19 22:23,"413 Main St, Austin, TX 73301" -168909,Lightning Charging Cable,1,14.95,03/28/19 16:14,"692 2nd St, Atlanta, GA 30301" -168910,27in 4K Gaming Monitor,1,389.99,03/22/19 15:40,"682 Dogwood St, Dallas, TX 75001" -168910,Lightning Charging Cable,1,14.95,03/22/19 15:40,"682 Dogwood St, Dallas, TX 75001" -168911,AA Batteries (4-pack),2,3.84,03/02/19 12:31,"109 2nd St, Boston, MA 02215" -168912,Wired Headphones,1,11.99,03/24/19 17:02,"559 2nd St, Seattle, WA 98101" -168913,27in FHD Monitor,1,149.99,03/16/19 23:49,"200 4th St, Los Angeles, CA 90001" -168914,AAA Batteries (4-pack),1,2.99,03/14/19 16:36,"865 Center St, New York City, NY 10001" -168915,Apple Airpods Headphones,1,150,03/12/19 22:14,"819 14th St, New York City, NY 10001" -168916,Macbook Pro Laptop,1,1700,03/27/19 15:30,"220 Forest St, San Francisco, CA 94016" -168917,Bose SoundSport Headphones,1,99.99,03/03/19 14:02,"238 Adams St, New York City, NY 10001" -168918,AA Batteries (4-pack),1,3.84,03/23/19 10:22,"31 5th St, Boston, MA 02215" -168919,Flatscreen TV,1,300,03/19/19 06:49,"293 Lakeview St, Los Angeles, CA 90001" -168920,Lightning Charging Cable,1,14.95,03/16/19 22:39,"189 Center St, New York City, NY 10001" -168921,AAA Batteries (4-pack),1,2.99,03/12/19 18:31,"590 7th St, Boston, MA 02215" -168922,USB-C Charging Cable,1,11.95,03/06/19 22:49,"207 Ridge St, San Francisco, CA 94016" -168923,Flatscreen TV,1,300,03/01/19 12:28,"862 Spruce St, Los Angeles, CA 90001" -168924,USB-C Charging Cable,1,11.95,03/14/19 11:05,"82 Elm St, San Francisco, CA 94016" -168925,iPhone,1,700,03/17/19 11:53,"499 Lincoln St, Los Angeles, CA 90001" -168926,iPhone,1,700,03/19/19 14:42,"212 Spruce St, Los Angeles, CA 90001" -168927,iPhone,1,700,03/25/19 21:12,"93 Spruce St, Atlanta, GA 30301" -168928,AAA Batteries (4-pack),1,2.99,03/31/19 14:44,"578 Lake St, San Francisco, CA 94016" -168929,ThinkPad Laptop,1,999.99,03/31/19 22:20,"253 North St, Austin, TX 73301" -168930,Lightning Charging Cable,1,14.95,03/17/19 12:08,"697 North St, San Francisco, CA 94016" -168931,AA Batteries (4-pack),2,3.84,03/20/19 18:30,"284 Center St, San Francisco, CA 94016" -168932,Apple Airpods Headphones,1,150,03/22/19 16:10,"521 Hickory St, San Francisco, CA 94016" -168933,Apple Airpods Headphones,1,150,03/24/19 12:11,"67 Church St, New York City, NY 10001" -168934,Flatscreen TV,1,300,03/06/19 04:39,"627 Chestnut St, Los Angeles, CA 90001" -168935,AAA Batteries (4-pack),2,2.99,03/05/19 00:14,"182 Madison St, San Francisco, CA 94016" -168936,ThinkPad Laptop,1,999.99,03/18/19 10:31,"749 Madison St, Boston, MA 02215" -168937,AAA Batteries (4-pack),3,2.99,03/09/19 14:39,"867 Main St, New York City, NY 10001" -168938,iPhone,1,700,03/02/19 14:42,"203 South St, San Francisco, CA 94016" -168938,Lightning Charging Cable,1,14.95,03/02/19 14:42,"203 South St, San Francisco, CA 94016" -168938,Wired Headphones,1,11.99,03/02/19 14:42,"203 South St, San Francisco, CA 94016" -168939,USB-C Charging Cable,1,11.95,03/11/19 13:45,"740 Main St, Los Angeles, CA 90001" -168940,USB-C Charging Cable,1,11.95,03/10/19 13:04,"427 Maple St, New York City, NY 10001" -168941,Apple Airpods Headphones,1,150,03/19/19 09:40,"409 1st St, New York City, NY 10001" -168942,Flatscreen TV,1,300,03/20/19 09:08,"826 Spruce St, Seattle, WA 98101" -168943,ThinkPad Laptop,1,999.99,03/30/19 09:30,"277 North St, Los Angeles, CA 90001" -168944,27in FHD Monitor,1,149.99,03/18/19 08:28,"830 Lincoln St, Austin, TX 73301" -168945,Apple Airpods Headphones,1,150,03/03/19 01:14,"105 Lincoln St, Boston, MA 02215" -168946,Lightning Charging Cable,1,14.95,03/20/19 11:07,"906 Park St, Los Angeles, CA 90001" -168947,20in Monitor,1,109.99,03/28/19 15:53,"485 10th St, Atlanta, GA 30301" -168948,USB-C Charging Cable,1,11.95,03/26/19 06:33,"206 Lake St, Boston, MA 02215" -168949,Bose SoundSport Headphones,1,99.99,03/26/19 17:02,"895 5th St, Portland, OR 97035" -168950,AAA Batteries (4-pack),3,2.99,03/05/19 17:25,"810 Pine St, San Francisco, CA 94016" -168951,27in FHD Monitor,1,149.99,03/01/19 13:56,"822 Willow St, Portland, OR 97035" -168952,AAA Batteries (4-pack),2,2.99,03/12/19 20:10,"986 Hill St, Portland, OR 97035" -168953,AAA Batteries (4-pack),1,2.99,03/19/19 13:58,"675 Willow St, Los Angeles, CA 90001" -168954,AA Batteries (4-pack),2,3.84,03/30/19 20:47,"99 11th St, Los Angeles, CA 90001" -168955,USB-C Charging Cable,1,11.95,03/03/19 19:14,"230 Ridge St, San Francisco, CA 94016" -168956,Google Phone,1,600,03/11/19 16:56,"410 Spruce St, Dallas, TX 75001" -168957,Lightning Charging Cable,1,14.95,03/19/19 19:00,"301 Spruce St, Dallas, TX 75001" -168958,Apple Airpods Headphones,1,150,03/24/19 11:48,"280 1st St, Atlanta, GA 30301" -168959,USB-C Charging Cable,1,11.95,03/23/19 20:37,"625 13th St, Los Angeles, CA 90001" -168960,20in Monitor,1,109.99,03/26/19 15:27,"110 Adams St, New York City, NY 10001" -168961,AAA Batteries (4-pack),1,2.99,03/17/19 16:52,"800 Meadow St, Dallas, TX 75001" -168962,AA Batteries (4-pack),2,3.84,03/21/19 17:13,"935 Lincoln St, San Francisco, CA 94016" -168963,USB-C Charging Cable,1,11.95,03/29/19 13:39,"452 4th St, New York City, NY 10001" -168964,34in Ultrawide Monitor,1,379.99,03/17/19 14:11,"545 Hill St, Los Angeles, CA 90001" -168965,27in FHD Monitor,1,149.99,03/05/19 18:22,"544 Cherry St, San Francisco, CA 94016" -168966,34in Ultrawide Monitor,1,379.99,03/03/19 21:57,"216 Wilson St, Austin, TX 73301" -168967,USB-C Charging Cable,1,11.95,03/01/19 10:26,"480 Center St, Boston, MA 02215" -168968,20in Monitor,1,109.99,03/26/19 19:49,"264 Cedar St, Boston, MA 02215" -168969,34in Ultrawide Monitor,1,379.99,03/20/19 16:57,"129 Walnut St, San Francisco, CA 94016" -168970,Bose SoundSport Headphones,1,99.99,03/07/19 13:34,"340 Hill St, Dallas, TX 75001" -168971,Flatscreen TV,1,300,03/28/19 22:45,"481 Ridge St, San Francisco, CA 94016" -168972,Wired Headphones,1,11.99,03/09/19 09:00,"533 8th St, New York City, NY 10001" -168973,27in 4K Gaming Monitor,1,389.99,03/29/19 19:41,"821 Jackson St, Seattle, WA 98101" -168974,27in FHD Monitor,1,149.99,03/23/19 12:47,"191 Sunset St, Los Angeles, CA 90001" -168975,USB-C Charging Cable,2,11.95,03/17/19 16:08,"375 4th St, Atlanta, GA 30301" -168976,USB-C Charging Cable,1,11.95,03/14/19 08:46,"400 Spruce St, Seattle, WA 98101" -168977,Lightning Charging Cable,1,14.95,03/07/19 08:50,"302 River St, New York City, NY 10001" -168978,Wired Headphones,1,11.99,03/30/19 12:27,"52 5th St, San Francisco, CA 94016" -168979,Lightning Charging Cable,1,14.95,03/14/19 16:41,"260 5th St, Seattle, WA 98101" -168980,Apple Airpods Headphones,1,150,03/10/19 12:03,"526 Walnut St, San Francisco, CA 94016" -168981,AAA Batteries (4-pack),1,2.99,03/22/19 00:28,"483 Jackson St, Los Angeles, CA 90001" -168982,AA Batteries (4-pack),2,3.84,03/26/19 11:20,"265 12th St, Boston, MA 02215" -168983,AAA Batteries (4-pack),1,2.99,03/10/19 20:36,"670 Chestnut St, Boston, MA 02215" -168984,Lightning Charging Cable,1,14.95,03/16/19 17:36,"317 11th St, Los Angeles, CA 90001" -168985,Bose SoundSport Headphones,1,99.99,03/18/19 12:08,"460 8th St, San Francisco, CA 94016" -168986,AA Batteries (4-pack),2,3.84,03/16/19 18:26,"670 Forest St, New York City, NY 10001" -168987,Apple Airpods Headphones,1,150,03/20/19 02:02,"896 Hill St, Portland, OR 97035" -168988,USB-C Charging Cable,1,11.95,03/20/19 12:07,"69 Cedar St, San Francisco, CA 94016" -168989,AA Batteries (4-pack),1,3.84,03/07/19 21:42,"804 Adams St, Seattle, WA 98101" -168990,Wired Headphones,1,11.99,04/01/19 00:00,"790 10th St, Boston, MA 02215" -168991,ThinkPad Laptop,1,999.99,03/05/19 10:47,"536 5th St, Boston, MA 02215" -168992,AA Batteries (4-pack),1,3.84,03/11/19 18:20,"575 10th St, Seattle, WA 98101" -168993,USB-C Charging Cable,2,11.95,03/24/19 13:45,"345 Sunset St, San Francisco, CA 94016" -168994,27in 4K Gaming Monitor,1,389.99,03/22/19 20:38,"298 Madison St, Portland, OR 97035" -168995,Bose SoundSport Headphones,1,99.99,03/31/19 18:01,"251 Maple St, San Francisco, CA 94016" -168996,34in Ultrawide Monitor,1,379.99,03/15/19 14:34,"723 River St, Dallas, TX 75001" -168997,20in Monitor,1,109.99,03/29/19 20:45,"856 2nd St, New York City, NY 10001" -168998,iPhone,1,700,03/07/19 20:44,"242 Johnson St, San Francisco, CA 94016" -168999,iPhone,1,700,03/11/19 17:37,"221 5th St, New York City, NY 10001" -169000,Apple Airpods Headphones,1,150,03/27/19 07:56,"708 Highland St, San Francisco, CA 94016" -169001,Apple Airpods Headphones,1,150,03/22/19 14:05,"843 Washington St, Los Angeles, CA 90001" -169002,27in FHD Monitor,1,149.99,03/29/19 14:20,"749 Lake St, Los Angeles, CA 90001" -169003,USB-C Charging Cable,1,11.95,03/17/19 13:04,"620 Lakeview St, Los Angeles, CA 90001" -169004,USB-C Charging Cable,1,11.95,03/18/19 13:04,"592 Park St, San Francisco, CA 94016" -169005,USB-C Charging Cable,1,11.95,03/07/19 20:55,"143 7th St, Atlanta, GA 30301" -169006,Flatscreen TV,1,300,03/05/19 07:55,"287 Lincoln St, Boston, MA 02215" -169007,Apple Airpods Headphones,1,150,03/20/19 19:10,"891 Park St, Austin, TX 73301" -169008,AAA Batteries (4-pack),3,2.99,03/20/19 20:23,"891 Chestnut St, San Francisco, CA 94016" -169009,Vareebadd Phone,1,400,03/12/19 14:59,"30 Walnut St, Dallas, TX 75001" -169010,Lightning Charging Cable,1,14.95,03/04/19 20:57,"395 Meadow St, Boston, MA 02215" -169011,Lightning Charging Cable,1,14.95,03/16/19 18:25,"23 Lincoln St, New York City, NY 10001" -169012,ThinkPad Laptop,1,999.99,03/12/19 16:47,"8 Church St, Seattle, WA 98101" -169013,ThinkPad Laptop,1,999.99,03/03/19 18:42,"744 Elm St, San Francisco, CA 94016" -169014,Bose SoundSport Headphones,1,99.99,03/28/19 15:23,"871 Hickory St, Los Angeles, CA 90001" -169015,Lightning Charging Cable,1,14.95,03/17/19 12:32,"690 Church St, Seattle, WA 98101" -169016,27in 4K Gaming Monitor,1,389.99,03/17/19 13:33,"372 Lake St, New York City, NY 10001" -169017,Apple Airpods Headphones,1,150,03/25/19 12:17,"360 Wilson St, Boston, MA 02215" -169018,27in 4K Gaming Monitor,1,389.99,03/27/19 15:18,"34 5th St, Dallas, TX 75001" -169019,USB-C Charging Cable,1,11.95,03/28/19 15:06,"654 Hickory St, Portland, OR 97035" -169020,USB-C Charging Cable,1,11.95,03/02/19 12:38,"97 Pine St, San Francisco, CA 94016" -169021,Bose SoundSport Headphones,1,99.99,03/09/19 11:45,"214 Highland St, Seattle, WA 98101" -169022,Google Phone,1,600,03/05/19 00:27,"805 Spruce St, Los Angeles, CA 90001" -169022,USB-C Charging Cable,1,11.95,03/05/19 00:27,"805 Spruce St, Los Angeles, CA 90001" -169023,20in Monitor,1,109.99,03/31/19 22:02,"404 Chestnut St, San Francisco, CA 94016" -169024,Apple Airpods Headphones,1,150,03/30/19 16:58,"603 8th St, San Francisco, CA 94016" -169025,AA Batteries (4-pack),1,3.84,03/02/19 20:44,"787 Meadow St, Dallas, TX 75001" -169026,27in 4K Gaming Monitor,1,389.99,03/02/19 21:55,"182 South St, San Francisco, CA 94016" -169027,Apple Airpods Headphones,1,150,03/08/19 11:28,"528 Lincoln St, Dallas, TX 75001" -169028,Lightning Charging Cable,1,14.95,03/20/19 07:15,"241 Elm St, San Francisco, CA 94016" -169029,ThinkPad Laptop,1,999.99,03/13/19 19:57,"83 North St, Boston, MA 02215" -169030,Apple Airpods Headphones,1,150,03/23/19 12:00,"424 South St, Seattle, WA 98101" -169031,Wired Headphones,1,11.99,03/17/19 22:13,"696 Wilson St, Dallas, TX 75001" -169032,AAA Batteries (4-pack),1,2.99,03/13/19 13:02,"203 Church St, Los Angeles, CA 90001" -169033,USB-C Charging Cable,1,11.95,03/26/19 21:56,"192 14th St, Los Angeles, CA 90001" -169034,AAA Batteries (4-pack),1,2.99,03/17/19 18:14,"949 4th St, Los Angeles, CA 90001" -169035,Wired Headphones,1,11.99,03/21/19 16:50,"700 Park St, San Francisco, CA 94016" -169036,AA Batteries (4-pack),1,3.84,03/16/19 13:49,"471 Sunset St, Atlanta, GA 30301" -169037,AA Batteries (4-pack),1,3.84,03/12/19 16:18,"917 Lincoln St, Boston, MA 02215" -169038,20in Monitor,1,109.99,03/28/19 13:01,"841 Adams St, Seattle, WA 98101" -169039,iPhone,1,700,03/26/19 23:16,"2 Lake St, New York City, NY 10001" -169040,Lightning Charging Cable,1,14.95,03/04/19 02:46,"576 Jackson St, Atlanta, GA 30301" -169041,USB-C Charging Cable,1,11.95,03/23/19 10:21,"76 Cherry St, San Francisco, CA 94016" -169042,Wired Headphones,1,11.99,03/03/19 09:39,"366 Pine St, Austin, TX 73301" -169043,Google Phone,1,600,03/21/19 20:30,"948 River St, Seattle, WA 98101" -169044,Wired Headphones,1,11.99,03/19/19 19:53,"313 9th St, Boston, MA 02215" -169045,AA Batteries (4-pack),1,3.84,03/13/19 12:41,"948 7th St, Portland, OR 97035" -169046,Bose SoundSport Headphones,1,99.99,03/29/19 03:39,"221 South St, Los Angeles, CA 90001" -169047,Lightning Charging Cable,1,14.95,03/21/19 15:49,"96 Adams St, Dallas, TX 75001" -169048,USB-C Charging Cable,1,11.95,03/05/19 16:37,"178 Maple St, Seattle, WA 98101" -169049,Flatscreen TV,1,300,03/10/19 11:31,"706 Maple St, Atlanta, GA 30301" -169050,Apple Airpods Headphones,1,150,03/29/19 11:09,"418 Center St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -169051,Wired Headphones,1,11.99,03/07/19 14:41,"333 South St, San Francisco, CA 94016" -169052,USB-C Charging Cable,1,11.95,03/28/19 13:10,"960 Jackson St, San Francisco, CA 94016" -169053,AA Batteries (4-pack),1,3.84,03/13/19 01:26,"956 11th St, Boston, MA 02215" -169054,Lightning Charging Cable,1,14.95,03/18/19 17:16,"326 14th St, San Francisco, CA 94016" -169055,Lightning Charging Cable,1,14.95,03/27/19 10:37,"177 Park St, New York City, NY 10001" -169056,AAA Batteries (4-pack),1,2.99,03/15/19 00:40,"733 Highland St, Atlanta, GA 30301" -169057,Apple Airpods Headphones,1,150,03/25/19 09:44,"238 North St, Austin, TX 73301" -169058,USB-C Charging Cable,1,11.95,03/16/19 17:26,"383 West St, New York City, NY 10001" -169059,USB-C Charging Cable,1,11.95,03/01/19 21:40,"681 Center St, New York City, NY 10001" -169060,Google Phone,1,600,03/05/19 09:09,"162 Madison St, Atlanta, GA 30301" -169061,Wired Headphones,1,11.99,03/31/19 19:15,"723 West St, New York City, NY 10001" -169062,AA Batteries (4-pack),1,3.84,03/25/19 12:35,"205 South St, Portland, OR 97035" -169063,Apple Airpods Headphones,2,150,03/20/19 09:46,"379 14th St, Portland, ME 04101" -169064,27in FHD Monitor,1,149.99,03/24/19 10:58,"794 11th St, Los Angeles, CA 90001" -169065,USB-C Charging Cable,1,11.95,03/13/19 22:36,"985 Ridge St, New York City, NY 10001" -169066,Wired Headphones,1,11.99,03/21/19 08:47,"169 North St, New York City, NY 10001" -169067,27in 4K Gaming Monitor,1,389.99,03/17/19 13:33,"838 Madison St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -169068,20in Monitor,1,109.99,03/07/19 13:09,"697 Jackson St, Boston, MA 02215" -169069,34in Ultrawide Monitor,1,379.99,03/19/19 06:22,"503 Johnson St, Dallas, TX 75001" -169070,34in Ultrawide Monitor,1,379.99,03/11/19 21:05,"96 5th St, Boston, MA 02215" -169071,Wired Headphones,1,11.99,03/22/19 20:42,"250 Maple St, Los Angeles, CA 90001" -169072,Apple Airpods Headphones,1,150,03/20/19 16:19,"362 Forest St, Boston, MA 02215" -169073,34in Ultrawide Monitor,1,379.99,03/20/19 12:26,"797 Church St, Seattle, WA 98101" -169074,Wired Headphones,1,11.99,03/15/19 14:53,"53 Willow St, Portland, OR 97035" -169075,USB-C Charging Cable,1,11.95,03/09/19 19:53,"492 11th St, Boston, MA 02215" -169076,Apple Airpods Headphones,1,150,03/20/19 23:24,"884 Jackson St, Austin, TX 73301" -169076,AA Batteries (4-pack),1,3.84,03/20/19 23:24,"884 Jackson St, Austin, TX 73301" -169077,USB-C Charging Cable,4,11.95,03/07/19 15:10,"975 Chestnut St, Boston, MA 02215" -169078,Apple Airpods Headphones,1,150,03/19/19 21:48,"452 Lake St, Portland, OR 97035" -169079,Apple Airpods Headphones,1,150,03/29/19 07:39,"12 Lake St, San Francisco, CA 94016" -169080,Lightning Charging Cable,1,14.95,03/21/19 17:46,"586 Jefferson St, Boston, MA 02215" -169081,Google Phone,1,600,03/25/19 16:03,"608 Lincoln St, San Francisco, CA 94016" -169082,AAA Batteries (4-pack),1,2.99,03/23/19 11:04,"886 9th St, Los Angeles, CA 90001" -169083,Apple Airpods Headphones,1,150,03/17/19 12:27,"933 12th St, Seattle, WA 98101" -169084,Lightning Charging Cable,1,14.95,03/05/19 16:54,"135 Meadow St, San Francisco, CA 94016" -169085,20in Monitor,1,109.99,03/07/19 18:34,"249 South St, San Francisco, CA 94016" -169086,34in Ultrawide Monitor,1,379.99,03/24/19 20:03,"272 River St, New York City, NY 10001" -169087,Apple Airpods Headphones,1,150,03/04/19 18:44,"586 Jackson St, Portland, OR 97035" -169088,USB-C Charging Cable,1,11.95,03/22/19 13:51,"278 Sunset St, San Francisco, CA 94016" -169089,AA Batteries (4-pack),1,3.84,03/28/19 13:07,"350 5th St, Boston, MA 02215" -169090,USB-C Charging Cable,1,11.95,03/12/19 13:57,"312 13th St, Austin, TX 73301" -169091,Macbook Pro Laptop,1,1700,03/19/19 00:54,"44 Johnson St, Los Angeles, CA 90001" -169092,Wired Headphones,1,11.99,03/20/19 14:54,"170 Jackson St, Los Angeles, CA 90001" -169093,AAA Batteries (4-pack),2,2.99,03/10/19 19:56,"959 14th St, Atlanta, GA 30301" -169094,27in 4K Gaming Monitor,1,389.99,03/15/19 23:45,"672 5th St, Dallas, TX 75001" -169095,Bose SoundSport Headphones,1,99.99,03/18/19 20:48,"709 Center St, Portland, OR 97035" -169096,USB-C Charging Cable,1,11.95,03/05/19 18:31,"253 14th St, San Francisco, CA 94016" -169097,27in FHD Monitor,1,149.99,03/20/19 11:16,"2 2nd St, Portland, OR 97035" -169098,Bose SoundSport Headphones,1,99.99,03/12/19 20:53,"148 Hill St, San Francisco, CA 94016" -169099,20in Monitor,1,109.99,03/12/19 15:53,"636 Park St, Portland, ME 04101" -169100,34in Ultrawide Monitor,1,379.99,03/21/19 21:42,"5 7th St, Dallas, TX 75001" -169101,AA Batteries (4-pack),2,3.84,03/05/19 10:53,"983 10th St, Atlanta, GA 30301" -169102,AAA Batteries (4-pack),1,2.99,03/01/19 06:00,"554 North St, Dallas, TX 75001" -169103,Flatscreen TV,1,300,03/26/19 16:08,"8 4th St, Los Angeles, CA 90001" -169104,AA Batteries (4-pack),1,3.84,03/28/19 23:49,"858 Spruce St, Austin, TX 73301" -169105,USB-C Charging Cable,1,11.95,03/24/19 15:13,"345 Hickory St, Portland, OR 97035" -169106,AAA Batteries (4-pack),1,2.99,03/10/19 23:36,"148 2nd St, New York City, NY 10001" -169107,Macbook Pro Laptop,1,1700,03/15/19 01:34,"507 Willow St, Atlanta, GA 30301" -169108,Lightning Charging Cable,1,14.95,03/30/19 12:06,"226 Washington St, Austin, TX 73301" -169109,LG Dryer,1,600.0,03/29/19 04:54,"870 Dogwood St, San Francisco, CA 94016" -169110,Wired Headphones,1,11.99,03/18/19 15:55,"290 Chestnut St, San Francisco, CA 94016" -169111,USB-C Charging Cable,1,11.95,03/14/19 12:15,"993 West St, New York City, NY 10001" -169112,USB-C Charging Cable,1,11.95,03/02/19 14:06,"777 Cedar St, New York City, NY 10001" -169113,Lightning Charging Cable,1,14.95,03/14/19 01:27,"460 River St, San Francisco, CA 94016" -169114,Apple Airpods Headphones,1,150,03/20/19 21:29,"92 Madison St, Atlanta, GA 30301" -169115,34in Ultrawide Monitor,1,379.99,03/20/19 12:43,"22 Spruce St, Los Angeles, CA 90001" -169116,Bose SoundSport Headphones,1,99.99,03/08/19 14:43,"463 Highland St, Atlanta, GA 30301" -169116,Lightning Charging Cable,1,14.95,03/08/19 14:43,"463 Highland St, Atlanta, GA 30301" -169117,Google Phone,1,600,03/04/19 09:13,"511 1st St, New York City, NY 10001" -169118,Apple Airpods Headphones,1,150,03/10/19 00:25,"445 West St, Los Angeles, CA 90001" -169119,AA Batteries (4-pack),2,3.84,03/05/19 03:22,"589 7th St, Dallas, TX 75001" -169120,AAA Batteries (4-pack),2,2.99,03/31/19 12:20,"85 11th St, Seattle, WA 98101" -169121,AAA Batteries (4-pack),1,2.99,03/16/19 21:23,"756 Wilson St, Dallas, TX 75001" -169122,AA Batteries (4-pack),1,3.84,03/20/19 18:51,"584 Lake St, New York City, NY 10001" -169123,Lightning Charging Cable,1,14.95,03/10/19 20:01,"345 Cherry St, Los Angeles, CA 90001" -169124,27in 4K Gaming Monitor,1,389.99,03/06/19 01:49,"330 West St, Atlanta, GA 30301" -169125,27in FHD Monitor,1,149.99,03/05/19 18:23,"374 Johnson St, Boston, MA 02215" -169126,34in Ultrawide Monitor,1,379.99,03/09/19 20:53,"202 Park St, Portland, OR 97035" -169127,AA Batteries (4-pack),2,3.84,03/26/19 11:34,"12 West St, Los Angeles, CA 90001" -169128,Macbook Pro Laptop,1,1700,03/07/19 13:13,"422 Center St, Boston, MA 02215" -169129,AAA Batteries (4-pack),1,2.99,03/21/19 18:14,"77 11th St, New York City, NY 10001" -169130,AAA Batteries (4-pack),1,2.99,03/20/19 18:46,"685 Walnut St, Seattle, WA 98101" -169131,Flatscreen TV,1,300,03/27/19 19:43,"358 Madison St, Dallas, TX 75001" -169132,27in FHD Monitor,1,149.99,03/23/19 09:58,"54 Chestnut St, Boston, MA 02215" -169133,AAA Batteries (4-pack),1,2.99,03/24/19 12:33,"66 North St, Seattle, WA 98101" -169134,27in FHD Monitor,1,149.99,03/27/19 15:25,"739 4th St, Boston, MA 02215" -169135,USB-C Charging Cable,1,11.95,03/08/19 13:06,"903 Johnson St, Atlanta, GA 30301" -169136,Bose SoundSport Headphones,1,99.99,03/18/19 20:00,"675 13th St, Austin, TX 73301" -169137,USB-C Charging Cable,3,11.95,03/03/19 10:12,"732 5th St, Boston, MA 02215" -169138,AA Batteries (4-pack),1,3.84,03/13/19 20:18,"361 Highland St, Boston, MA 02215" -169139,Bose SoundSport Headphones,1,99.99,03/06/19 18:09,"219 12th St, Seattle, WA 98101" -169140,USB-C Charging Cable,3,11.95,03/02/19 19:29,"851 Washington St, Dallas, TX 75001" -169141,AAA Batteries (4-pack),1,2.99,03/28/19 12:35,"275 Washington St, Atlanta, GA 30301" -169142,Wired Headphones,1,11.99,03/02/19 13:28,"896 9th St, Boston, MA 02215" -169143,AA Batteries (4-pack),1,3.84,03/11/19 08:15,"31 North St, San Francisco, CA 94016" -169144,iPhone,1,700,03/18/19 08:00,"908 Main St, Portland, ME 04101" -169145,20in Monitor,1,109.99,03/07/19 16:07,"920 11th St, Dallas, TX 75001" -169146,iPhone,1,700,03/08/19 05:49,"375 Hill St, Atlanta, GA 30301" -169147,Wired Headphones,1,11.99,03/27/19 07:33,"480 Pine St, Los Angeles, CA 90001" -169148,Bose SoundSport Headphones,1,99.99,03/28/19 09:53,"267 South St, Seattle, WA 98101" -169149,Wired Headphones,1,11.99,03/24/19 02:07,"385 1st St, San Francisco, CA 94016" -169150,Vareebadd Phone,1,400,03/17/19 18:44,"344 Lake St, Dallas, TX 75001" -169151,Vareebadd Phone,1,400,03/31/19 20:44,"389 Forest St, Dallas, TX 75001" -169152,Lightning Charging Cable,1,14.95,03/14/19 16:10,"317 North St, Atlanta, GA 30301" -169153,Bose SoundSport Headphones,1,99.99,03/22/19 11:54,"931 Jefferson St, Atlanta, GA 30301" -169154,34in Ultrawide Monitor,1,379.99,03/06/19 16:56,"21 Johnson St, San Francisco, CA 94016" -169155,Wired Headphones,1,11.99,03/10/19 08:26,"764 5th St, San Francisco, CA 94016" -169156,Lightning Charging Cable,2,14.95,03/21/19 15:13,"727 7th St, Austin, TX 73301" -169157,iPhone,1,700,03/06/19 18:28,"714 4th St, New York City, NY 10001" -169158,27in FHD Monitor,1,149.99,03/01/19 08:55,"688 Sunset St, New York City, NY 10001" -169159,AA Batteries (4-pack),1,3.84,03/28/19 16:38,"419 13th St, Portland, ME 04101" -169160,Vareebadd Phone,1,400,03/07/19 17:44,"426 14th St, San Francisco, CA 94016" -169160,ThinkPad Laptop,1,999.99,03/07/19 17:44,"426 14th St, San Francisco, CA 94016" -169161,Apple Airpods Headphones,1,150,03/31/19 15:33,"976 Walnut St, San Francisco, CA 94016" -169162,20in Monitor,1,109.99,03/18/19 10:54,"692 13th St, Portland, OR 97035" -169163,34in Ultrawide Monitor,1,379.99,03/17/19 07:37,"372 Jackson St, Seattle, WA 98101" -169164,USB-C Charging Cable,1,11.95,03/17/19 02:15,"785 Chestnut St, Los Angeles, CA 90001" -169165,Lightning Charging Cable,1,14.95,03/12/19 06:40,"962 Pine St, New York City, NY 10001" -169166,Apple Airpods Headphones,1,150,03/02/19 11:34,"509 Lincoln St, Atlanta, GA 30301" -169167,Google Phone,1,600,03/28/19 17:01,"836 10th St, New York City, NY 10001" -169167,USB-C Charging Cable,2,11.95,03/28/19 17:01,"836 10th St, New York City, NY 10001" -169168,AA Batteries (4-pack),1,3.84,03/08/19 10:16,"175 Ridge St, Atlanta, GA 30301" -169169,AAA Batteries (4-pack),1,2.99,03/20/19 10:09,"742 9th St, Portland, OR 97035" -169170,34in Ultrawide Monitor,1,379.99,03/28/19 14:13,"566 13th St, New York City, NY 10001" -169171,Apple Airpods Headphones,1,150,03/28/19 13:24,"936 Church St, San Francisco, CA 94016" -169172,USB-C Charging Cable,1,11.95,03/08/19 18:10,"105 Center St, Atlanta, GA 30301" -169173,20in Monitor,1,109.99,03/02/19 21:45,"889 Center St, Dallas, TX 75001" -169174,20in Monitor,1,109.99,03/16/19 16:10,"117 Lincoln St, San Francisco, CA 94016" -169175,Bose SoundSport Headphones,1,99.99,03/27/19 14:05,"791 Cedar St, New York City, NY 10001" -169176,Google Phone,1,600,03/25/19 22:21,"98 6th St, Austin, TX 73301" -169177,Macbook Pro Laptop,1,1700,04/01/19 01:20,"220 1st St, New York City, NY 10001" -169178,Lightning Charging Cable,1,14.95,03/14/19 11:40,"835 Jefferson St, Los Angeles, CA 90001" -169179,34in Ultrawide Monitor,1,379.99,03/30/19 15:01,"677 12th St, San Francisco, CA 94016" -169180,Wired Headphones,1,11.99,03/20/19 01:16,"757 Willow St, San Francisco, CA 94016" -169181,AAA Batteries (4-pack),1,2.99,03/29/19 20:24,"355 Main St, San Francisco, CA 94016" -169182,ThinkPad Laptop,1,999.99,03/21/19 11:46,"771 9th St, Atlanta, GA 30301" -169183,Wired Headphones,1,11.99,03/06/19 20:53,"750 2nd St, Atlanta, GA 30301" -169184,AAA Batteries (4-pack),1,2.99,03/06/19 16:38,"127 8th St, Los Angeles, CA 90001" -169185,AA Batteries (4-pack),1,3.84,03/26/19 12:09,"631 North St, San Francisco, CA 94016" -169186,AAA Batteries (4-pack),3,2.99,03/03/19 15:47,"999 6th St, New York City, NY 10001" -169187,ThinkPad Laptop,1,999.99,03/05/19 11:40,"319 Adams St, Seattle, WA 98101" -169188,20in Monitor,1,109.99,03/14/19 19:28,"170 14th St, Atlanta, GA 30301" -169189,Bose SoundSport Headphones,1,99.99,03/08/19 01:15,"3 Park St, Atlanta, GA 30301" -169190,34in Ultrawide Monitor,1,379.99,03/26/19 10:02,"600 1st St, Boston, MA 02215" -169191,27in FHD Monitor,1,149.99,04/01/19 00:42,"310 Cherry St, Los Angeles, CA 90001" -169192,iPhone,1,700,03/28/19 09:38,"344 Washington St, Dallas, TX 75001" -169192,Lightning Charging Cable,1,14.95,03/28/19 09:38,"344 Washington St, Dallas, TX 75001" -169193,AA Batteries (4-pack),3,3.84,03/31/19 05:52,"829 Cedar St, Portland, OR 97035" -169194,Lightning Charging Cable,1,14.95,03/29/19 13:14,"672 South St, New York City, NY 10001" -169195,34in Ultrawide Monitor,1,379.99,03/29/19 22:31,"76 Cherry St, San Francisco, CA 94016" -169196,AA Batteries (4-pack),1,3.84,03/14/19 21:33,"720 Ridge St, Dallas, TX 75001" -169197,Bose SoundSport Headphones,1,99.99,03/24/19 23:02,"997 12th St, San Francisco, CA 94016" -169198,27in 4K Gaming Monitor,1,389.99,03/15/19 20:33,"810 Chestnut St, Los Angeles, CA 90001" -169199,Bose SoundSport Headphones,1,99.99,03/19/19 17:23,"154 Ridge St, San Francisco, CA 94016" -169200,Wired Headphones,1,11.99,03/11/19 20:22,"828 Cedar St, Dallas, TX 75001" -169201,AAA Batteries (4-pack),1,2.99,03/02/19 20:23,"794 13th St, Portland, OR 97035" -169202,Bose SoundSport Headphones,1,99.99,03/10/19 00:22,"445 10th St, Austin, TX 73301" -169203,Apple Airpods Headphones,1,150,03/10/19 17:41,"336 Hill St, San Francisco, CA 94016" -169204,Macbook Pro Laptop,1,1700,03/05/19 02:20,"790 8th St, Portland, OR 97035" -169205,20in Monitor,1,109.99,03/04/19 18:08,"225 Lakeview St, San Francisco, CA 94016" -169206,Apple Airpods Headphones,1,150,03/09/19 08:24,"69 West St, Seattle, WA 98101" -169207,iPhone,1,700,03/04/19 11:31,"572 13th St, New York City, NY 10001" -169207,Lightning Charging Cable,1,14.95,03/04/19 11:31,"572 13th St, New York City, NY 10001" -169208,Apple Airpods Headphones,1,150,03/28/19 23:57,"968 South St, New York City, NY 10001" -169209,AAA Batteries (4-pack),1,2.99,03/07/19 12:38,"123 Chestnut St, Dallas, TX 75001" -169210,Macbook Pro Laptop,1,1700,03/26/19 17:26,"750 West St, Austin, TX 73301" -169211,27in FHD Monitor,1,149.99,03/15/19 15:54,"283 Church St, San Francisco, CA 94016" -169212,Wired Headphones,1,11.99,03/30/19 08:46,"419 Church St, Austin, TX 73301" -169213,ThinkPad Laptop,1,999.99,03/29/19 12:11,"658 Hickory St, Boston, MA 02215" -169214,USB-C Charging Cable,2,11.95,03/25/19 22:34,"357 Cherry St, San Francisco, CA 94016" -169215,USB-C Charging Cable,1,11.95,03/20/19 21:06,"442 14th St, Seattle, WA 98101" -169216,Bose SoundSport Headphones,1,99.99,03/01/19 17:47,"441 Lake St, San Francisco, CA 94016" -169217,Wired Headphones,1,11.99,03/17/19 13:50,"507 Meadow St, San Francisco, CA 94016" -169218,Apple Airpods Headphones,1,150,03/21/19 10:49,"836 Dogwood St, San Francisco, CA 94016" -169219,20in Monitor,1,109.99,03/02/19 08:58,"527 Ridge St, Boston, MA 02215" -169220,ThinkPad Laptop,1,999.99,03/30/19 12:53,"467 7th St, Atlanta, GA 30301" -169221,Wired Headphones,1,11.99,03/12/19 19:24,"513 Forest St, Boston, MA 02215" -169221,Lightning Charging Cable,1,14.95,03/12/19 19:24,"513 Forest St, Boston, MA 02215" -169222,Flatscreen TV,1,300,03/02/19 15:12,"309 12th St, San Francisco, CA 94016" -169223,LG Washing Machine,1,600.0,03/21/19 16:26,"164 8th St, San Francisco, CA 94016" -169224,Bose SoundSport Headphones,1,99.99,03/08/19 09:52,"531 7th St, Atlanta, GA 30301" -169225,Lightning Charging Cable,1,14.95,03/21/19 21:24,"988 Hill St, Los Angeles, CA 90001" -169226,USB-C Charging Cable,1,11.95,03/23/19 16:38,"456 Church St, New York City, NY 10001" -169227,AAA Batteries (4-pack),5,2.99,03/12/19 02:08,"147 Adams St, Seattle, WA 98101" -169228,Google Phone,1,600,03/22/19 00:19,"124 Sunset St, Austin, TX 73301" -169229,AA Batteries (4-pack),1,3.84,03/26/19 15:32,"600 Elm St, Portland, OR 97035" -169230,AA Batteries (4-pack),1,3.84,03/07/19 22:43,"625 Cherry St, Austin, TX 73301" -169231,USB-C Charging Cable,1,11.95,03/16/19 09:17,"311 6th St, New York City, NY 10001" -169232,Lightning Charging Cable,1,14.95,03/08/19 17:15,"623 Adams St, New York City, NY 10001" -169233,27in FHD Monitor,1,149.99,03/05/19 16:25,"558 Ridge St, Portland, OR 97035" -169234,AA Batteries (4-pack),1,3.84,03/30/19 13:40,"787 14th St, Boston, MA 02215" -169235,USB-C Charging Cable,1,11.95,03/07/19 14:11,"865 10th St, Los Angeles, CA 90001" -169236,Wired Headphones,1,11.99,03/08/19 19:53,"317 Lakeview St, Los Angeles, CA 90001" -169237,34in Ultrawide Monitor,1,379.99,03/14/19 21:56,"681 Lincoln St, San Francisco, CA 94016" -169238,Bose SoundSport Headphones,1,99.99,03/04/19 18:35,"136 Elm St, Boston, MA 02215" -169239,AAA Batteries (4-pack),6,2.99,03/19/19 18:43,"329 Hill St, Boston, MA 02215" -169240,Apple Airpods Headphones,1,150,03/19/19 10:20,"785 River St, San Francisco, CA 94016" -169241,AA Batteries (4-pack),2,3.84,03/10/19 23:49,"477 Park St, Los Angeles, CA 90001" -169242,USB-C Charging Cable,1,11.95,03/12/19 14:50,"817 Center St, Boston, MA 02215" -169243,Bose SoundSport Headphones,1,99.99,03/10/19 18:52,"443 5th St, San Francisco, CA 94016" -169244,Lightning Charging Cable,1,14.95,03/04/19 12:44,"483 Washington St, Portland, OR 97035" -169245,AA Batteries (4-pack),1,3.84,03/18/19 17:35,"277 Lincoln St, New York City, NY 10001" -169246,AA Batteries (4-pack),1,3.84,03/29/19 21:46,"889 5th St, Portland, OR 97035" -169247,AA Batteries (4-pack),1,3.84,03/18/19 14:23,"713 5th St, Los Angeles, CA 90001" -169248,AAA Batteries (4-pack),1,2.99,03/04/19 12:09,"59 Maple St, Seattle, WA 98101" -169249,AA Batteries (4-pack),2,3.84,03/16/19 19:37,"182 Jackson St, Los Angeles, CA 90001" -169250,USB-C Charging Cable,1,11.95,03/07/19 10:51,"467 Spruce St, Los Angeles, CA 90001" -169251,USB-C Charging Cable,1,11.95,03/01/19 09:18,"623 1st St, Los Angeles, CA 90001" -169252,AA Batteries (4-pack),2,3.84,03/17/19 06:32,"298 Park St, Boston, MA 02215" -169253,Apple Airpods Headphones,1,150,03/22/19 22:35,"410 Park St, Seattle, WA 98101" -169254,AA Batteries (4-pack),1,3.84,03/31/19 14:53,"926 6th St, Portland, OR 97035" -169255,Wired Headphones,1,11.99,03/29/19 17:49,"297 Spruce St, Los Angeles, CA 90001" -169256,USB-C Charging Cable,1,11.95,03/07/19 09:08,"199 Wilson St, New York City, NY 10001" -169257,Lightning Charging Cable,2,14.95,03/04/19 23:30,"131 7th St, San Francisco, CA 94016" -169258,iPhone,1,700,03/02/19 20:53,"537 Walnut St, Atlanta, GA 30301" -169259,Wired Headphones,1,11.99,03/15/19 19:45,"978 Lakeview St, New York City, NY 10001" -169259,USB-C Charging Cable,1,11.95,03/15/19 19:45,"978 Lakeview St, New York City, NY 10001" -169260,USB-C Charging Cable,1,11.95,03/06/19 19:40,"191 Ridge St, New York City, NY 10001" -169261,27in 4K Gaming Monitor,1,389.99,03/02/19 15:19,"618 Jackson St, Boston, MA 02215" -169262,Apple Airpods Headphones,1,150,03/01/19 21:15,"63 Meadow St, Los Angeles, CA 90001" -169263,ThinkPad Laptop,1,999.99,03/30/19 06:26,"351 Ridge St, Boston, MA 02215" -169264,Google Phone,1,600,03/01/19 15:00,"100 9th St, Atlanta, GA 30301" -169265,27in FHD Monitor,1,149.99,03/03/19 13:29,"561 Forest St, Dallas, TX 75001" -169266,iPhone,1,700,03/10/19 19:58,"182 Chestnut St, Dallas, TX 75001" -169266,Lightning Charging Cable,1,14.95,03/10/19 19:58,"182 Chestnut St, Dallas, TX 75001" -169266,Google Phone,1,600,03/10/19 19:58,"182 Chestnut St, Dallas, TX 75001" -169267,Lightning Charging Cable,1,14.95,03/01/19 15:55,"915 Pine St, Portland, OR 97035" -169268,Apple Airpods Headphones,1,150,03/28/19 18:09,"718 7th St, Boston, MA 02215" -169268,Bose SoundSport Headphones,2,99.99,03/28/19 18:09,"718 7th St, Boston, MA 02215" -169269,34in Ultrawide Monitor,1,379.99,03/29/19 19:47,"740 Cedar St, Seattle, WA 98101" -169270,Bose SoundSport Headphones,1,99.99,03/13/19 08:40,"713 River St, Atlanta, GA 30301" -169271,27in FHD Monitor,1,149.99,03/24/19 11:18,"475 Pine St, New York City, NY 10001" -169272,LG Dryer,1,600.0,03/23/19 11:26,"455 South St, San Francisco, CA 94016" -169273,Wired Headphones,1,11.99,03/28/19 14:45,"595 13th St, San Francisco, CA 94016" -169274,Apple Airpods Headphones,1,150,03/06/19 21:11,"268 Maple St, Dallas, TX 75001" -169275,Lightning Charging Cable,1,14.95,03/22/19 18:28,"154 Wilson St, Los Angeles, CA 90001" -169276,USB-C Charging Cable,1,11.95,03/11/19 20:33,"757 Cedar St, Boston, MA 02215" -169277,AA Batteries (4-pack),2,3.84,03/14/19 20:47,"338 Park St, New York City, NY 10001" -169278,Vareebadd Phone,1,400,03/29/19 13:18,"699 Chestnut St, New York City, NY 10001" -169279,Bose SoundSport Headphones,1,99.99,03/30/19 09:12,"142 Willow St, San Francisco, CA 94016" -169280,Wired Headphones,1,11.99,03/21/19 21:39,"821 Jackson St, San Francisco, CA 94016" -169281,AAA Batteries (4-pack),1,2.99,03/01/19 17:14,"197 Elm St, Portland, ME 04101" -169282,Wired Headphones,1,11.99,03/30/19 11:05,"507 6th St, Portland, OR 97035" -169283,AAA Batteries (4-pack),1,2.99,03/03/19 13:17,"586 River St, New York City, NY 10001" -169284,34in Ultrawide Monitor,1,379.99,03/06/19 23:44,"136 1st St, Los Angeles, CA 90001" -169285,ThinkPad Laptop,1,999.99,03/04/19 22:41,"745 Hickory St, Atlanta, GA 30301" -169286,Apple Airpods Headphones,1,150,03/13/19 07:24,"191 Jackson St, San Francisco, CA 94016" -169287,iPhone,1,700,03/15/19 16:40,"455 Center St, New York City, NY 10001" -169288,Wired Headphones,1,11.99,03/25/19 09:20,"996 Maple St, Portland, OR 97035" -169289,LG Dryer,1,600.0,03/11/19 17:01,"59 Hill St, Seattle, WA 98101" -169290,34in Ultrawide Monitor,1,379.99,03/28/19 05:22,"957 5th St, Los Angeles, CA 90001" -169291,Lightning Charging Cable,2,14.95,03/08/19 02:12,"425 Lake St, Seattle, WA 98101" -169292,34in Ultrawide Monitor,1,379.99,03/03/19 09:56,"656 Jackson St, San Francisco, CA 94016" -169293,Lightning Charging Cable,1,14.95,03/10/19 10:30,"259 Forest St, Dallas, TX 75001" -169294,AAA Batteries (4-pack),1,2.99,03/29/19 00:26,"926 Walnut St, New York City, NY 10001" -169295,Bose SoundSport Headphones,1,99.99,03/26/19 15:39,"976 5th St, San Francisco, CA 94016" -169296,USB-C Charging Cable,1,11.95,03/28/19 15:45,"349 Madison St, Los Angeles, CA 90001" -169297,Google Phone,1,600,03/24/19 22:26,"460 Elm St, Los Angeles, CA 90001" -169297,Wired Headphones,1,11.99,03/24/19 22:26,"460 Elm St, Los Angeles, CA 90001" -169298,AAA Batteries (4-pack),1,2.99,03/22/19 10:33,"697 1st St, New York City, NY 10001" -169299,USB-C Charging Cable,1,11.95,03/22/19 09:36,"847 Church St, Portland, OR 97035" -169300,AA Batteries (4-pack),2,3.84,03/28/19 11:19,"48 10th St, Los Angeles, CA 90001" -169301,USB-C Charging Cable,1,11.95,03/25/19 21:46,"547 Dogwood St, New York City, NY 10001" -169302,Bose SoundSport Headphones,1,99.99,03/04/19 14:44,"190 Lake St, Dallas, TX 75001" -169303,USB-C Charging Cable,1,11.95,03/26/19 15:53,"96 Forest St, Seattle, WA 98101" -169304,Lightning Charging Cable,1,14.95,03/01/19 22:53,"243 1st St, New York City, NY 10001" -169305,AAA Batteries (4-pack),1,2.99,03/24/19 00:13,"516 6th St, Portland, OR 97035" -169306,Apple Airpods Headphones,1,150,03/07/19 11:53,"533 Elm St, New York City, NY 10001" -169307,Bose SoundSport Headphones,1,99.99,03/28/19 22:35,"263 Pine St, Atlanta, GA 30301" -169308,Lightning Charging Cable,1,14.95,03/31/19 19:37,"8 Park St, Dallas, TX 75001" -169309,Google Phone,1,600,03/23/19 21:41,"465 Center St, San Francisco, CA 94016" -169310,Lightning Charging Cable,1,14.95,03/08/19 11:40,"75 4th St, Portland, OR 97035" -169311,20in Monitor,1,109.99,03/29/19 15:42,"115 Lincoln St, Los Angeles, CA 90001" -169312,Apple Airpods Headphones,1,150,03/11/19 09:09,"982 Johnson St, New York City, NY 10001" -169313,Wired Headphones,2,11.99,03/03/19 10:23,"271 Park St, San Francisco, CA 94016" -169314,AAA Batteries (4-pack),1,2.99,03/14/19 14:50,"229 North St, San Francisco, CA 94016" -169315,USB-C Charging Cable,1,11.95,03/16/19 17:49,"56 5th St, San Francisco, CA 94016" -169316,Bose SoundSport Headphones,1,99.99,03/15/19 12:17,"392 North St, Atlanta, GA 30301" -169317,AA Batteries (4-pack),1,3.84,03/06/19 22:30,"186 Sunset St, Austin, TX 73301" -169318,Wired Headphones,1,11.99,03/21/19 11:37,"521 Main St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -169319,AAA Batteries (4-pack),1,2.99,03/21/19 20:12,"527 14th St, Boston, MA 02215" -169320,AA Batteries (4-pack),1,3.84,03/08/19 16:59,"87 5th St, San Francisco, CA 94016" -169321,ThinkPad Laptop,1,999.99,03/05/19 00:13,"577 Hickory St, Los Angeles, CA 90001" -169322,Lightning Charging Cable,1,14.95,03/01/19 21:13,"92 Madison St, New York City, NY 10001" -169323,Apple Airpods Headphones,1,150,03/14/19 23:48,"370 Maple St, Los Angeles, CA 90001" -169324,iPhone,1,700,03/27/19 16:28,"418 9th St, Boston, MA 02215" -169324,Lightning Charging Cable,1,14.95,03/27/19 16:28,"418 9th St, Boston, MA 02215" -169325,Vareebadd Phone,1,400,03/02/19 13:31,"555 Cedar St, Los Angeles, CA 90001" -169326,Bose SoundSport Headphones,1,99.99,03/29/19 02:43,"156 South St, Dallas, TX 75001" -169327,AAA Batteries (4-pack),3,2.99,03/25/19 17:56,"984 West St, Los Angeles, CA 90001" -169328,AAA Batteries (4-pack),2,2.99,03/20/19 16:41,"81 Lake St, New York City, NY 10001" -169329,AAA Batteries (4-pack),1,2.99,03/20/19 22:06,"3 8th St, Boston, MA 02215" -169330,Vareebadd Phone,1,400,03/22/19 16:34,"352 13th St, Dallas, TX 75001" -169331,Google Phone,1,600,03/24/19 18:56,"624 River St, San Francisco, CA 94016" -169332,34in Ultrawide Monitor,1,379.99,03/09/19 23:42,"458 14th St, New York City, NY 10001" -169333,AA Batteries (4-pack),1,3.84,03/17/19 11:44,"526 Forest St, Boston, MA 02215" -169334,Wired Headphones,1,11.99,03/07/19 13:13,"39 Adams St, Los Angeles, CA 90001" -,,,,, -169335,Wired Headphones,1,11.99,03/22/19 11:32,"457 Washington St, Atlanta, GA 30301" -169336,Wired Headphones,1,11.99,03/24/19 18:20,"822 Center St, San Francisco, CA 94016" -169337,Apple Airpods Headphones,1,150,03/31/19 21:20,"898 10th St, New York City, NY 10001" -169338,Lightning Charging Cable,1,14.95,03/31/19 18:11,"897 Lakeview St, Boston, MA 02215" -169339,Apple Airpods Headphones,1,150,03/15/19 22:37,"630 River St, New York City, NY 10001" -169340,AA Batteries (4-pack),1,3.84,03/02/19 20:01,"551 Main St, Seattle, WA 98101" -169341,Apple Airpods Headphones,1,150,03/29/19 11:34,"615 7th St, Seattle, WA 98101" -169342,USB-C Charging Cable,1,11.95,03/12/19 09:33,"956 Main St, Seattle, WA 98101" -169343,AAA Batteries (4-pack),1,2.99,03/27/19 17:22,"127 Hill St, Los Angeles, CA 90001" -169344,Google Phone,1,600,03/20/19 11:02,"712 West St, Seattle, WA 98101" -169344,34in Ultrawide Monitor,1,379.99,03/20/19 11:02,"712 West St, Seattle, WA 98101" -169345,Lightning Charging Cable,1,14.95,03/28/19 15:03,"781 South St, Dallas, TX 75001" -169346,AA Batteries (4-pack),1,3.84,03/21/19 19:40,"630 Church St, Portland, OR 97035" -169347,iPhone,1,700,03/11/19 11:46,"547 9th St, Atlanta, GA 30301" -169348,Wired Headphones,1,11.99,03/31/19 15:59,"762 Chestnut St, Portland, OR 97035" -169349,AA Batteries (4-pack),1,3.84,03/15/19 17:13,"661 West St, Los Angeles, CA 90001" -169350,AAA Batteries (4-pack),1,2.99,03/12/19 22:42,"522 Lincoln St, Los Angeles, CA 90001" -169351,Lightning Charging Cable,3,14.95,03/01/19 21:16,"294 Adams St, San Francisco, CA 94016" -169352,LG Dryer,1,600.0,03/07/19 22:01,"55 Main St, Seattle, WA 98101" -169353,Apple Airpods Headphones,1,150,03/12/19 12:39,"16 Ridge St, Portland, OR 97035" -169354,USB-C Charging Cable,1,11.95,03/29/19 16:04,"333 14th St, Dallas, TX 75001" -169355,USB-C Charging Cable,1,11.95,03/09/19 11:35,"921 10th St, Los Angeles, CA 90001" -169356,Apple Airpods Headphones,1,150,03/19/19 18:59,"657 8th St, Seattle, WA 98101" -169357,Wired Headphones,2,11.99,03/20/19 19:30,"337 Washington St, Atlanta, GA 30301" -169358,AAA Batteries (4-pack),2,2.99,03/08/19 19:40,"663 Elm St, San Francisco, CA 94016" -169359,AAA Batteries (4-pack),2,2.99,03/20/19 11:42,"310 Jefferson St, Dallas, TX 75001" -169360,AAA Batteries (4-pack),7,2.99,03/10/19 14:34,"724 13th St, Boston, MA 02215" -169361,Apple Airpods Headphones,1,150,03/14/19 11:07,"97 Wilson St, New York City, NY 10001" -169362,Wired Headphones,1,11.99,03/05/19 19:28,"959 Chestnut St, New York City, NY 10001" -,,,,, -169363,USB-C Charging Cable,1,11.95,03/01/19 15:37,"349 6th St, Los Angeles, CA 90001" -169364,Bose SoundSport Headphones,1,99.99,03/17/19 20:01,"72 Chestnut St, Boston, MA 02215" -169365,AA Batteries (4-pack),1,3.84,03/08/19 14:44,"703 Johnson St, New York City, NY 10001" -169366,Wired Headphones,1,11.99,03/21/19 21:52,"872 Forest St, Austin, TX 73301" -169367,Apple Airpods Headphones,1,150,03/28/19 07:48,"530 Adams St, Los Angeles, CA 90001" -169368,Google Phone,1,600,03/17/19 10:02,"784 9th St, Portland, ME 04101" -169369,Macbook Pro Laptop,1,1700,03/30/19 18:34,"986 Cedar St, Austin, TX 73301" -169370,Apple Airpods Headphones,1,150,03/15/19 19:55,"65 Center St, San Francisco, CA 94016" -169371,Wired Headphones,1,11.99,03/11/19 15:33,"58 11th St, New York City, NY 10001" -169372,USB-C Charging Cable,1,11.95,03/21/19 16:19,"258 5th St, Boston, MA 02215" -169373,AAA Batteries (4-pack),1,2.99,03/16/19 19:13,"509 Dogwood St, New York City, NY 10001" -169374,Macbook Pro Laptop,1,1700,03/06/19 13:15,"692 Willow St, San Francisco, CA 94016" -169375,Lightning Charging Cable,1,14.95,03/13/19 15:26,"508 2nd St, San Francisco, CA 94016" -169376,iPhone,1,700,03/10/19 16:45,"435 Willow St, Atlanta, GA 30301" -169377,AAA Batteries (4-pack),1,2.99,03/30/19 11:02,"635 Johnson St, San Francisco, CA 94016" -169378,Apple Airpods Headphones,1,150,03/13/19 20:12,"369 Walnut St, Seattle, WA 98101" -169379,ThinkPad Laptop,1,999.99,03/12/19 12:17,"176 Lincoln St, San Francisco, CA 94016" -169380,AAA Batteries (4-pack),1,2.99,03/20/19 00:36,"229 Lake St, New York City, NY 10001" -169381,USB-C Charging Cable,1,11.95,03/30/19 21:51,"741 Hill St, New York City, NY 10001" -169382,27in FHD Monitor,1,149.99,03/20/19 13:41,"208 13th St, Los Angeles, CA 90001" -169383,Wired Headphones,3,11.99,03/30/19 16:21,"591 Hickory St, New York City, NY 10001" -169384,Google Phone,1,600,03/21/19 11:28,"712 Center St, Atlanta, GA 30301" -169385,Macbook Pro Laptop,1,1700,03/08/19 19:08,"725 11th St, Dallas, TX 75001" -169386,ThinkPad Laptop,1,999.99,03/13/19 12:33,"330 Hickory St, Seattle, WA 98101" -169387,Bose SoundSport Headphones,1,99.99,03/10/19 15:22,"6 Chestnut St, San Francisco, CA 94016" -169388,Bose SoundSport Headphones,1,99.99,03/17/19 16:45,"473 Church St, Seattle, WA 98101" -169389,LG Dryer,1,600.0,03/06/19 15:55,"327 Johnson St, San Francisco, CA 94016" -169390,Bose SoundSport Headphones,1,99.99,03/13/19 12:40,"320 Highland St, San Francisco, CA 94016" -169391,AA Batteries (4-pack),2,3.84,03/05/19 09:11,"611 14th St, Austin, TX 73301" -169392,Lightning Charging Cable,1,14.95,03/31/19 06:32,"29 Pine St, Los Angeles, CA 90001" -169393,USB-C Charging Cable,1,11.95,03/04/19 10:57,"758 Chestnut St, San Francisco, CA 94016" -169394,AA Batteries (4-pack),1,3.84,03/12/19 13:26,"223 Church St, Dallas, TX 75001" -169395,Wired Headphones,1,11.99,03/21/19 17:05,"812 12th St, Los Angeles, CA 90001" -169396,USB-C Charging Cable,1,11.95,03/22/19 10:03,"839 Hill St, Dallas, TX 75001" -169397,USB-C Charging Cable,3,11.95,03/16/19 13:40,"240 Dogwood St, Seattle, WA 98101" -169398,USB-C Charging Cable,1,11.95,03/17/19 12:46,"595 Washington St, Dallas, TX 75001" -169399,Wired Headphones,2,11.99,03/29/19 23:24,"747 14th St, Atlanta, GA 30301" -169400,iPhone,1,700,03/01/19 19:13,"412 River St, New York City, NY 10001" -169401,Flatscreen TV,1,300,03/21/19 11:42,"256 7th St, Los Angeles, CA 90001" -169402,Wired Headphones,1,11.99,03/18/19 15:15,"529 12th St, Los Angeles, CA 90001" -169403,USB-C Charging Cable,1,11.95,03/12/19 09:47,"757 Sunset St, Los Angeles, CA 90001" -169404,AAA Batteries (4-pack),3,2.99,03/02/19 22:25,"312 8th St, Dallas, TX 75001" -169405,Bose SoundSport Headphones,1,99.99,03/20/19 21:23,"396 5th St, New York City, NY 10001" -169406,Bose SoundSport Headphones,1,99.99,03/08/19 10:26,"892 Walnut St, New York City, NY 10001" -169407,27in FHD Monitor,1,149.99,03/09/19 19:37,"210 Washington St, Boston, MA 02215" -169408,Wired Headphones,1,11.99,03/02/19 23:15,"65 Forest St, Boston, MA 02215" -169409,AA Batteries (4-pack),1,3.84,03/08/19 10:31,"115 Lake St, Austin, TX 73301" -169410,Lightning Charging Cable,1,14.95,03/06/19 16:10,"180 Elm St, Atlanta, GA 30301" -169411,Wired Headphones,1,11.99,03/28/19 11:26,"874 Chestnut St, San Francisco, CA 94016" -169412,AA Batteries (4-pack),1,3.84,03/29/19 21:46,"558 14th St, New York City, NY 10001" -169413,Google Phone,1,600,03/29/19 11:00,"559 5th St, Dallas, TX 75001" -169414,AA Batteries (4-pack),2,3.84,03/20/19 16:23,"388 4th St, Los Angeles, CA 90001" -169415,AAA Batteries (4-pack),1,2.99,03/15/19 09:48,"458 Pine St, Los Angeles, CA 90001" -169416,Flatscreen TV,1,300,03/19/19 14:09,"311 Washington St, Boston, MA 02215" -169417,Bose SoundSport Headphones,1,99.99,03/13/19 20:21,"782 Washington St, Los Angeles, CA 90001" -169418,USB-C Charging Cable,1,11.95,03/28/19 13:21,"842 1st St, New York City, NY 10001" -169419,Wired Headphones,1,11.99,03/23/19 09:17,"831 Cedar St, Boston, MA 02215" -169420,Macbook Pro Laptop,1,1700,03/07/19 19:46,"88 1st St, Atlanta, GA 30301" -169421,Apple Airpods Headphones,1,150,03/05/19 19:01,"723 Madison St, Boston, MA 02215" -169421,USB-C Charging Cable,1,11.95,03/05/19 19:01,"723 Madison St, Boston, MA 02215" -169422,Macbook Pro Laptop,1,1700,03/18/19 15:17,"510 8th St, New York City, NY 10001" -169423,34in Ultrawide Monitor,1,379.99,03/18/19 22:58,"26 Lincoln St, Austin, TX 73301" -169424,AAA Batteries (4-pack),1,2.99,03/16/19 20:46,"15 Wilson St, Seattle, WA 98101" -169424,Apple Airpods Headphones,1,150,03/16/19 20:46,"15 Wilson St, Seattle, WA 98101" -169425,Bose SoundSport Headphones,1,99.99,03/28/19 09:39,"439 2nd St, Atlanta, GA 30301" -169426,AA Batteries (4-pack),1,3.84,03/18/19 12:26,"218 12th St, Seattle, WA 98101" -169427,AAA Batteries (4-pack),2,2.99,03/30/19 12:05,"492 Washington St, Los Angeles, CA 90001" -169428,Lightning Charging Cable,1,14.95,03/07/19 17:27,"210 Meadow St, Boston, MA 02215" -169429,Bose SoundSport Headphones,1,99.99,03/29/19 18:45,"553 Hill St, New York City, NY 10001" -169430,AAA Batteries (4-pack),1,2.99,03/05/19 11:24,"660 Adams St, Seattle, WA 98101" -169431,USB-C Charging Cable,1,11.95,03/30/19 19:42,"222 1st St, Seattle, WA 98101" -169432,Google Phone,1,600,03/14/19 09:23,"744 Pine St, Portland, OR 97035" -169433,Wired Headphones,1,11.99,03/11/19 12:49,"583 Dogwood St, Los Angeles, CA 90001" -169434,Wired Headphones,1,11.99,03/25/19 17:00,"644 6th St, Los Angeles, CA 90001" -169435,AA Batteries (4-pack),1,3.84,03/23/19 11:23,"277 Ridge St, Boston, MA 02215" -169436,USB-C Charging Cable,1,11.95,03/19/19 00:42,"889 Cherry St, Los Angeles, CA 90001" -169437,Wired Headphones,1,11.99,03/18/19 18:42,"879 Pine St, San Francisco, CA 94016" -169438,Lightning Charging Cable,1,14.95,03/01/19 14:00,"421 South St, Atlanta, GA 30301" -169439,USB-C Charging Cable,1,11.95,03/10/19 23:50,"845 8th St, New York City, NY 10001" -169440,USB-C Charging Cable,2,11.95,03/11/19 21:51,"314 Dogwood St, Dallas, TX 75001" -169441,iPhone,1,700,03/17/19 19:15,"131 Hickory St, Boston, MA 02215" -169442,Bose SoundSport Headphones,1,99.99,03/28/19 16:03,"58 Ridge St, Boston, MA 02215" -169443,Lightning Charging Cable,1,14.95,03/29/19 01:04,"978 Jefferson St, Boston, MA 02215" -169444,20in Monitor,1,109.99,03/07/19 12:19,"744 South St, Seattle, WA 98101" -169445,Lightning Charging Cable,1,14.95,03/11/19 14:50,"705 Johnson St, San Francisco, CA 94016" -169446,USB-C Charging Cable,1,11.95,03/18/19 13:31,"698 Hill St, San Francisco, CA 94016" -169447,Apple Airpods Headphones,1,150,03/04/19 10:54,"111 Willow St, New York City, NY 10001" -169448,iPhone,1,700,03/25/19 15:12,"818 1st St, Atlanta, GA 30301" -169449,Lightning Charging Cable,1,14.95,03/12/19 15:52,"187 Willow St, Atlanta, GA 30301" -169450,Wired Headphones,1,11.99,03/22/19 19:59,"842 1st St, San Francisco, CA 94016" -169451,Bose SoundSport Headphones,1,99.99,03/30/19 11:21,"628 South St, Los Angeles, CA 90001" -169452,AA Batteries (4-pack),2,3.84,03/29/19 11:24,"270 Walnut St, Atlanta, GA 30301" -169453,Lightning Charging Cable,1,14.95,03/21/19 10:32,"528 North St, San Francisco, CA 94016" -169454,AA Batteries (4-pack),1,3.84,03/18/19 18:46,"35 4th St, Los Angeles, CA 90001" -169455,AA Batteries (4-pack),2,3.84,03/06/19 06:43,"120 7th St, Austin, TX 73301" -169456,Apple Airpods Headphones,1,150,03/13/19 22:07,"887 Wilson St, Dallas, TX 75001" -169457,USB-C Charging Cable,1,11.95,03/25/19 09:55,"447 Park St, San Francisco, CA 94016" -169458,20in Monitor,1,109.99,03/22/19 16:38,"810 7th St, Portland, OR 97035" -169459,Lightning Charging Cable,1,14.95,03/29/19 08:49,"680 Lake St, Boston, MA 02215" -169460,Wired Headphones,1,11.99,03/17/19 11:21,"651 4th St, New York City, NY 10001" -169461,27in FHD Monitor,1,149.99,03/14/19 19:10,"1 Cedar St, Portland, OR 97035" -169462,Apple Airpods Headphones,1,150,03/21/19 19:41,"333 River St, New York City, NY 10001" -169463,AA Batteries (4-pack),1,3.84,03/26/19 09:28,"522 Main St, Los Angeles, CA 90001" -169464,Wired Headphones,1,11.99,03/11/19 14:14,"530 12th St, Boston, MA 02215" -169465,Apple Airpods Headphones,1,150,03/11/19 18:24,"776 14th St, San Francisco, CA 94016" -169466,Apple Airpods Headphones,1,150,03/15/19 13:53,"603 Lake St, San Francisco, CA 94016" -169467,Apple Airpods Headphones,1,150,03/11/19 21:08,"72 Forest St, New York City, NY 10001" -169468,ThinkPad Laptop,1,999.99,03/05/19 18:40,"641 Adams St, New York City, NY 10001" -169469,34in Ultrawide Monitor,1,379.99,03/06/19 23:11,"20 Cedar St, Seattle, WA 98101" -169470,USB-C Charging Cable,2,11.95,03/06/19 18:22,"881 11th St, San Francisco, CA 94016" -169471,Flatscreen TV,1,300,03/24/19 21:33,"72 Lakeview St, San Francisco, CA 94016" -169472,AA Batteries (4-pack),1,3.84,03/23/19 19:48,"810 7th St, Portland, OR 97035" -169473,AA Batteries (4-pack),1,3.84,03/12/19 10:58,"2 13th St, Los Angeles, CA 90001" -169474,Lightning Charging Cable,1,14.95,03/22/19 15:24,"533 Jackson St, Seattle, WA 98101" -169475,AA Batteries (4-pack),1,3.84,03/07/19 21:05,"283 13th St, Seattle, WA 98101" -169476,Wired Headphones,1,11.99,03/18/19 16:25,"68 Cedar St, Los Angeles, CA 90001" -169477,Lightning Charging Cable,1,14.95,03/09/19 11:57,"623 Sunset St, Dallas, TX 75001" -169478,USB-C Charging Cable,1,11.95,03/16/19 23:43,"280 Wilson St, Dallas, TX 75001" -169479,USB-C Charging Cable,1,11.95,03/17/19 14:25,"800 Willow St, San Francisco, CA 94016" -169480,AAA Batteries (4-pack),1,2.99,03/05/19 07:48,"66 Walnut St, Los Angeles, CA 90001" -169481,AA Batteries (4-pack),2,3.84,03/06/19 07:12,"875 Center St, San Francisco, CA 94016" -169482,AA Batteries (4-pack),2,3.84,03/04/19 10:44,"50 Dogwood St, Seattle, WA 98101" -169483,Wired Headphones,1,11.99,03/24/19 10:55,"348 Elm St, San Francisco, CA 94016" -169484,Apple Airpods Headphones,1,150,03/29/19 07:15,"478 Forest St, Portland, OR 97035" -169485,AA Batteries (4-pack),1,3.84,03/11/19 11:14,"110 Hickory St, San Francisco, CA 94016" -169486,Apple Airpods Headphones,1,150,03/05/19 00:16,"395 Washington St, San Francisco, CA 94016" -169487,Bose SoundSport Headphones,1,99.99,03/26/19 21:03,"648 Church St, Dallas, TX 75001" -169488,34in Ultrawide Monitor,1,379.99,03/04/19 15:36,"554 North St, Seattle, WA 98101" -169489,Lightning Charging Cable,1,14.95,03/24/19 18:10,"309 North St, Los Angeles, CA 90001" -169490,Wired Headphones,2,11.99,03/07/19 15:03,"889 Pine St, San Francisco, CA 94016" -169491,AA Batteries (4-pack),1,3.84,03/01/19 08:50,"984 Sunset St, San Francisco, CA 94016" -169492,27in FHD Monitor,1,149.99,03/04/19 10:51,"782 Hickory St, Austin, TX 73301" -169493,AAA Batteries (4-pack),3,2.99,03/22/19 12:54,"883 North St, New York City, NY 10001" -169494,AA Batteries (4-pack),2,3.84,03/18/19 22:54,"23 West St, Seattle, WA 98101" -169495,Flatscreen TV,1,300,03/15/19 13:58,"652 Madison St, San Francisco, CA 94016" -169496,AA Batteries (4-pack),4,3.84,03/04/19 21:17,"135 Adams St, Los Angeles, CA 90001" -169497,20in Monitor,1,109.99,03/23/19 06:54,"485 Lakeview St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -169498,AA Batteries (4-pack),1,3.84,03/02/19 18:19,"806 8th St, San Francisco, CA 94016" -169499,20in Monitor,1,109.99,03/21/19 19:57,"733 Madison St, Los Angeles, CA 90001" -169500,Apple Airpods Headphones,1,150,03/22/19 13:34,"185 7th St, Seattle, WA 98101" -169501,Lightning Charging Cable,1,14.95,03/01/19 11:10,"981 6th St, Dallas, TX 75001" -169502,27in 4K Gaming Monitor,1,389.99,03/28/19 01:41,"4 Lincoln St, Portland, OR 97035" -169503,AAA Batteries (4-pack),1,2.99,03/10/19 13:14,"809 River St, San Francisco, CA 94016" -169504,20in Monitor,1,109.99,03/31/19 19:38,"338 Meadow St, Los Angeles, CA 90001" -169505,Wired Headphones,1,11.99,03/10/19 15:21,"779 South St, Boston, MA 02215" -169506,AA Batteries (4-pack),2,3.84,03/13/19 15:43,"987 1st St, Austin, TX 73301" -169507,USB-C Charging Cable,1,11.95,03/15/19 22:55,"784 9th St, New York City, NY 10001" -169508,iPhone,1,700,03/05/19 11:52,"654 Cedar St, Los Angeles, CA 90001" -169509,AA Batteries (4-pack),1,3.84,03/07/19 12:53,"76 West St, Boston, MA 02215" -169510,AAA Batteries (4-pack),1,2.99,03/12/19 17:18,"371 Washington St, Los Angeles, CA 90001" -169511,AAA Batteries (4-pack),3,2.99,03/28/19 00:00,"387 Lincoln St, San Francisco, CA 94016" -169512,ThinkPad Laptop,1,999.99,03/13/19 11:00,"336 River St, Austin, TX 73301" -169513,Apple Airpods Headphones,1,150,03/09/19 09:53,"727 10th St, New York City, NY 10001" -169514,AAA Batteries (4-pack),5,2.99,03/15/19 21:15,"26 9th St, Portland, OR 97035" -169515,Apple Airpods Headphones,1,150,03/03/19 13:03,"467 Madison St, Seattle, WA 98101" -169516,Bose SoundSport Headphones,1,99.99,03/02/19 13:19,"572 Forest St, San Francisco, CA 94016" -169517,Bose SoundSport Headphones,1,99.99,03/29/19 14:14,"187 Spruce St, Austin, TX 73301" -169518,Bose SoundSport Headphones,1,99.99,03/19/19 11:58,"558 Cedar St, New York City, NY 10001" -169519,AAA Batteries (4-pack),1,2.99,03/18/19 11:12,"774 Forest St, New York City, NY 10001" -169520,Lightning Charging Cable,1,14.95,03/24/19 13:44,"406 Wilson St, Portland, OR 97035" -169521,ThinkPad Laptop,1,999.99,03/04/19 22:07,"185 Main St, New York City, NY 10001" -169522,AAA Batteries (4-pack),1,2.99,03/27/19 10:29,"67 Johnson St, Los Angeles, CA 90001" -169523,Macbook Pro Laptop,1,1700,03/23/19 06:36,"870 12th St, Los Angeles, CA 90001" -169524,AA Batteries (4-pack),1,3.84,03/16/19 16:17,"837 Maple St, San Francisco, CA 94016" -169525,34in Ultrawide Monitor,1,379.99,03/29/19 13:03,"655 Forest St, New York City, NY 10001" -169526,Wired Headphones,1,11.99,03/20/19 12:06,"732 Hickory St, Portland, OR 97035" -169527,AAA Batteries (4-pack),2,2.99,03/06/19 21:45,"495 Chestnut St, Dallas, TX 75001" -169528,34in Ultrawide Monitor,1,379.99,03/07/19 20:50,"265 Ridge St, Portland, ME 04101" -169529,Lightning Charging Cable,1,14.95,03/12/19 14:54,"566 6th St, Portland, OR 97035" -169530,AAA Batteries (4-pack),1,2.99,03/23/19 14:59,"369 1st St, Austin, TX 73301" -169531,AA Batteries (4-pack),1,3.84,03/22/19 23:01,"792 Walnut St, Dallas, TX 75001" -169532,USB-C Charging Cable,1,11.95,03/10/19 13:21,"867 Spruce St, Dallas, TX 75001" -169533,Apple Airpods Headphones,1,150,03/28/19 18:12,"573 Sunset St, Austin, TX 73301" -169534,Apple Airpods Headphones,1,150,03/27/19 09:27,"164 10th St, Los Angeles, CA 90001" -169535,Bose SoundSport Headphones,1,99.99,03/05/19 17:39,"426 8th St, San Francisco, CA 94016" -169536,AAA Batteries (4-pack),1,2.99,03/12/19 18:47,"87 11th St, Portland, ME 04101" -169537,Lightning Charging Cable,1,14.95,03/19/19 19:57,"654 Elm St, San Francisco, CA 94016" -169538,Apple Airpods Headphones,2,150,03/13/19 09:27,"848 Elm St, Dallas, TX 75001" -169539,Bose SoundSport Headphones,1,99.99,03/15/19 15:15,"162 Lincoln St, New York City, NY 10001" -169540,AA Batteries (4-pack),1,3.84,03/05/19 02:57,"62 13th St, Portland, OR 97035" -169541,AAA Batteries (4-pack),2,2.99,03/12/19 10:06,"743 Jefferson St, Boston, MA 02215" -169542,20in Monitor,1,109.99,03/05/19 15:39,"964 Hill St, Boston, MA 02215" -169543,Apple Airpods Headphones,1,150,03/28/19 20:43,"733 12th St, San Francisco, CA 94016" -169544,AA Batteries (4-pack),1,3.84,03/11/19 10:31,"320 Pine St, Los Angeles, CA 90001" -169545,Google Phone,1,600,03/13/19 18:34,"320 Hill St, Los Angeles, CA 90001" -169545,USB-C Charging Cable,1,11.95,03/13/19 18:34,"320 Hill St, Los Angeles, CA 90001" -169545,Wired Headphones,1,11.99,03/13/19 18:34,"320 Hill St, Los Angeles, CA 90001" -169546,USB-C Charging Cable,2,11.95,03/27/19 22:05,"66 Maple St, Dallas, TX 75001" -169547,Macbook Pro Laptop,1,1700,03/19/19 22:33,"825 Wilson St, New York City, NY 10001" -169548,20in Monitor,1,109.99,03/31/19 05:39,"345 Main St, Austin, TX 73301" -169549,Bose SoundSport Headphones,1,99.99,03/29/19 17:47,"828 Center St, Dallas, TX 75001" -169550,27in 4K Gaming Monitor,1,389.99,03/28/19 22:43,"843 Highland St, Boston, MA 02215" -169550,iPhone,1,700,03/28/19 22:43,"843 Highland St, Boston, MA 02215" -169551,Google Phone,1,600,03/16/19 10:31,"40 12th St, Austin, TX 73301" -169551,USB-C Charging Cable,1,11.95,03/16/19 10:31,"40 12th St, Austin, TX 73301" -169552,Bose SoundSport Headphones,1,99.99,03/24/19 00:29,"856 Lincoln St, Austin, TX 73301" -169553,Flatscreen TV,2,300,03/18/19 13:42,"455 Washington St, San Francisco, CA 94016" -169554,34in Ultrawide Monitor,1,379.99,03/09/19 18:43,"637 11th St, Atlanta, GA 30301" -169555,AA Batteries (4-pack),1,3.84,03/06/19 15:27,"526 Sunset St, Boston, MA 02215" -169556,AA Batteries (4-pack),2,3.84,03/18/19 13:40,"654 6th St, San Francisco, CA 94016" -169557,Bose SoundSport Headphones,1,99.99,03/08/19 10:44,"953 Jackson St, Los Angeles, CA 90001" -169558,USB-C Charging Cable,1,11.95,03/05/19 21:38,"751 Pine St, San Francisco, CA 94016" -169559,Flatscreen TV,1,300,03/20/19 07:29,"814 13th St, San Francisco, CA 94016" -169560,ThinkPad Laptop,1,999.99,03/12/19 11:56,"537 7th St, Los Angeles, CA 90001" -169561,Flatscreen TV,1,300,03/11/19 19:44,"629 Madison St, San Francisco, CA 94016" -169562,Wired Headphones,1,11.99,03/30/19 13:16,"80 Church St, Los Angeles, CA 90001" -169563,Lightning Charging Cable,2,14.95,03/23/19 14:28,"879 Hill St, Dallas, TX 75001" -169564,iPhone,1,700,03/27/19 05:08,"96 6th St, San Francisco, CA 94016" -169564,Apple Airpods Headphones,1,150,03/27/19 05:08,"96 6th St, San Francisco, CA 94016" -169565,Wired Headphones,1,11.99,03/05/19 07:03,"928 Hill St, Portland, OR 97035" -169566,34in Ultrawide Monitor,1,379.99,03/28/19 22:27,"340 2nd St, Atlanta, GA 30301" -169567,34in Ultrawide Monitor,1,379.99,03/01/19 18:36,"916 Forest St, San Francisco, CA 94016" -169568,AA Batteries (4-pack),2,3.84,03/28/19 16:37,"381 Lake St, Los Angeles, CA 90001" -169569,Bose SoundSport Headphones,1,99.99,03/31/19 21:26,"725 Willow St, Austin, TX 73301" -169570,LG Washing Machine,1,600.0,03/09/19 17:51,"535 Hickory St, Austin, TX 73301" -169571,34in Ultrawide Monitor,1,379.99,03/19/19 19:34,"929 Madison St, San Francisco, CA 94016" -169572,27in FHD Monitor,1,149.99,03/09/19 02:32,"818 Meadow St, San Francisco, CA 94016" -169573,Lightning Charging Cable,1,14.95,03/27/19 14:44,"733 Wilson St, Portland, OR 97035" -169574,AAA Batteries (4-pack),1,2.99,03/10/19 17:12,"126 Willow St, Boston, MA 02215" -169575,34in Ultrawide Monitor,1,379.99,03/09/19 19:54,"764 14th St, Austin, TX 73301" -169576,Wired Headphones,1,11.99,03/04/19 19:56,"158 4th St, San Francisco, CA 94016" -169577,USB-C Charging Cable,1,11.95,03/25/19 16:48,"177 8th St, San Francisco, CA 94016" -169578,iPhone,1,700,03/08/19 15:25,"848 11th St, Boston, MA 02215" -169579,Lightning Charging Cable,1,14.95,03/07/19 16:59,"994 Elm St, Los Angeles, CA 90001" -169580,Google Phone,1,600,03/09/19 21:49,"231 South St, Boston, MA 02215" -169581,AA Batteries (4-pack),2,3.84,03/17/19 19:15,"785 Cedar St, San Francisco, CA 94016" -169582,USB-C Charging Cable,1,11.95,03/19/19 09:00,"866 Hill St, Seattle, WA 98101" -169583,Bose SoundSport Headphones,1,99.99,03/21/19 11:01,"363 Church St, Seattle, WA 98101" -169584,AA Batteries (4-pack),1,3.84,03/14/19 17:56,"706 North St, Los Angeles, CA 90001" -169585,Bose SoundSport Headphones,1,99.99,03/28/19 15:02,"136 South St, Los Angeles, CA 90001" -169586,AA Batteries (4-pack),1,3.84,03/11/19 20:36,"121 Cherry St, Portland, OR 97035" -169587,Lightning Charging Cable,1,14.95,03/03/19 00:30,"357 11th St, Los Angeles, CA 90001" -169588,AAA Batteries (4-pack),1,2.99,03/19/19 12:59,"474 8th St, Los Angeles, CA 90001" -169589,Apple Airpods Headphones,1,150,03/20/19 06:39,"433 Jefferson St, Atlanta, GA 30301" -169590,Bose SoundSport Headphones,1,99.99,03/04/19 17:10,"982 6th St, Los Angeles, CA 90001" -169591,Wired Headphones,1,11.99,03/24/19 19:32,"945 Cherry St, Los Angeles, CA 90001" -169592,Macbook Pro Laptop,1,1700,03/28/19 20:30,"304 Sunset St, New York City, NY 10001" -169593,Bose SoundSport Headphones,1,99.99,03/18/19 16:27,"913 Sunset St, New York City, NY 10001" -169594,AA Batteries (4-pack),1,3.84,03/06/19 19:03,"978 Madison St, New York City, NY 10001" -169595,Bose SoundSport Headphones,1,99.99,03/06/19 10:08,"575 14th St, Boston, MA 02215" -169596,Lightning Charging Cable,1,14.95,03/24/19 14:54,"561 Elm St, Austin, TX 73301" -169597,Lightning Charging Cable,1,14.95,03/07/19 11:48,"769 Lakeview St, Los Angeles, CA 90001" -169598,Apple Airpods Headphones,1,150,03/31/19 21:16,"63 Adams St, San Francisco, CA 94016" -169599,27in 4K Gaming Monitor,1,389.99,03/11/19 18:22,"905 Willow St, San Francisco, CA 94016" -169600,Wired Headphones,1,11.99,03/10/19 11:12,"839 Cedar St, New York City, NY 10001" -169600,Wired Headphones,1,11.99,03/10/19 11:12,"839 Cedar St, New York City, NY 10001" -169601,Wired Headphones,3,11.99,03/22/19 16:02,"94 Hickory St, Boston, MA 02215" -169602,AAA Batteries (4-pack),4,2.99,03/25/19 12:12,"590 Madison St, Boston, MA 02215" -169603,AAA Batteries (4-pack),2,2.99,03/20/19 11:51,"185 7th St, San Francisco, CA 94016" -169604,AAA Batteries (4-pack),5,2.99,03/08/19 20:47,"940 Park St, Portland, OR 97035" -169605,27in 4K Gaming Monitor,1,389.99,03/16/19 10:20,"11 12th St, Los Angeles, CA 90001" -169606,Bose SoundSport Headphones,1,99.99,03/06/19 23:23,"399 Jefferson St, Portland, OR 97035" -169607,AA Batteries (4-pack),1,3.84,03/01/19 20:01,"846 River St, New York City, NY 10001" -169608,Lightning Charging Cable,1,14.95,03/13/19 18:29,"61 Pine St, Boston, MA 02215" -169609,Lightning Charging Cable,1,14.95,03/18/19 21:23,"825 Lincoln St, San Francisco, CA 94016" -169610,LG Washing Machine,1,600.0,03/13/19 11:43,"101 Madison St, San Francisco, CA 94016" -169611,Flatscreen TV,1,300,03/17/19 11:33,"498 Wilson St, New York City, NY 10001" -169612,Flatscreen TV,1,300,03/18/19 16:07,"125 Cherry St, Seattle, WA 98101" -169613,AAA Batteries (4-pack),2,2.99,03/24/19 17:20,"984 Church St, Los Angeles, CA 90001" -169614,AA Batteries (4-pack),4,3.84,03/10/19 12:29,"914 Chestnut St, Boston, MA 02215" -169615,USB-C Charging Cable,1,11.95,03/13/19 21:29,"981 Lincoln St, Los Angeles, CA 90001" -169616,USB-C Charging Cable,2,11.95,03/03/19 11:25,"893 Jefferson St, Los Angeles, CA 90001" -169617,Bose SoundSport Headphones,1,99.99,03/17/19 12:08,"106 Walnut St, San Francisco, CA 94016" -169618,AA Batteries (4-pack),1,3.84,03/03/19 14:37,"931 Lake St, San Francisco, CA 94016" -169619,USB-C Charging Cable,1,11.95,03/12/19 21:36,"995 Wilson St, Atlanta, GA 30301" -169620,Wired Headphones,2,11.99,03/24/19 12:40,"994 Adams St, Boston, MA 02215" -169621,AA Batteries (4-pack),3,3.84,03/22/19 14:20,"784 Chestnut St, Seattle, WA 98101" -169622,20in Monitor,1,109.99,03/22/19 09:57,"111 Elm St, Portland, OR 97035" -169623,Flatscreen TV,1,300,03/16/19 19:26,"779 2nd St, San Francisco, CA 94016" -169624,Bose SoundSport Headphones,1,99.99,03/22/19 09:46,"524 Forest St, Los Angeles, CA 90001" -169625,Bose SoundSport Headphones,1,99.99,03/20/19 16:21,"540 Cedar St, Dallas, TX 75001" -169626,USB-C Charging Cable,1,11.95,03/20/19 22:43,"665 Main St, Los Angeles, CA 90001" -169627,AAA Batteries (4-pack),4,2.99,03/26/19 17:33,"289 Lakeview St, Los Angeles, CA 90001" -169628,AA Batteries (4-pack),1,3.84,03/05/19 13:05,"842 Willow St, San Francisco, CA 94016" -169629,AA Batteries (4-pack),1,3.84,03/07/19 11:48,"316 8th St, San Francisco, CA 94016" -169630,USB-C Charging Cable,1,11.95,03/18/19 11:00,"418 Forest St, Austin, TX 73301" -169631,Bose SoundSport Headphones,1,99.99,03/08/19 19:41,"868 Washington St, Seattle, WA 98101" -169632,Apple Airpods Headphones,1,150,03/19/19 16:29,"645 River St, Los Angeles, CA 90001" -169633,USB-C Charging Cable,1,11.95,03/30/19 12:20,"269 Forest St, New York City, NY 10001" -169634,Apple Airpods Headphones,1,150,03/06/19 07:51,"817 West St, New York City, NY 10001" -169635,Bose SoundSport Headphones,1,99.99,03/18/19 17:35,"191 Meadow St, San Francisco, CA 94016" -169636,AA Batteries (4-pack),1,3.84,03/17/19 10:54,"291 9th St, New York City, NY 10001" -169637,Wired Headphones,1,11.99,03/15/19 23:24,"684 Madison St, New York City, NY 10001" -169638,USB-C Charging Cable,1,11.95,03/01/19 19:43,"151 Washington St, New York City, NY 10001" -169639,AA Batteries (4-pack),2,3.84,03/09/19 21:30,"294 South St, Los Angeles, CA 90001" -169640,27in 4K Gaming Monitor,1,389.99,03/09/19 17:33,"168 Adams St, Atlanta, GA 30301" -169641,Wired Headphones,1,11.99,03/18/19 13:29,"523 Lakeview St, Atlanta, GA 30301" -169642,Bose SoundSport Headphones,1,99.99,03/10/19 00:08,"193 Jefferson St, San Francisco, CA 94016" -169643,Google Phone,1,600,03/19/19 21:18,"79 10th St, San Francisco, CA 94016" -169643,Bose SoundSport Headphones,1,99.99,03/19/19 21:18,"79 10th St, San Francisco, CA 94016" -169644,Lightning Charging Cable,1,14.95,03/19/19 14:45,"613 Madison St, San Francisco, CA 94016" -169645,Flatscreen TV,1,300,03/02/19 10:13,"543 Main St, San Francisco, CA 94016" -169646,Google Phone,1,600,03/29/19 09:24,"627 9th St, Seattle, WA 98101" -169647,Apple Airpods Headphones,1,150,03/16/19 12:41,"153 South St, Portland, OR 97035" -169648,AA Batteries (4-pack),1,3.84,03/15/19 14:45,"646 7th St, Dallas, TX 75001" -169649,AA Batteries (4-pack),1,3.84,03/17/19 18:35,"940 Dogwood St, Los Angeles, CA 90001" -169650,AAA Batteries (4-pack),2,2.99,03/28/19 20:12,"315 Park St, New York City, NY 10001" -169651,AAA Batteries (4-pack),1,2.99,03/20/19 20:21,"657 11th St, Los Angeles, CA 90001" -169652,AAA Batteries (4-pack),1,2.99,03/29/19 00:04,"388 South St, San Francisco, CA 94016" -169653,Flatscreen TV,1,300,03/01/19 15:13,"483 Church St, Los Angeles, CA 90001" -169654,AAA Batteries (4-pack),1,2.99,03/04/19 07:00,"459 2nd St, Portland, OR 97035" -169655,AAA Batteries (4-pack),2,2.99,03/25/19 16:08,"738 Spruce St, San Francisco, CA 94016" -169656,34in Ultrawide Monitor,1,379.99,03/09/19 12:22,"682 Forest St, Dallas, TX 75001" -169657,Apple Airpods Headphones,1,150,03/10/19 07:20,"32 Maple St, Seattle, WA 98101" -169658,Lightning Charging Cable,1,14.95,03/17/19 23:23,"140 Hill St, San Francisco, CA 94016" -169659,Bose SoundSport Headphones,1,99.99,03/22/19 16:56,"680 Forest St, Seattle, WA 98101" -169659,Bose SoundSport Headphones,1,99.99,03/22/19 16:56,"680 Forest St, Seattle, WA 98101" -169660,USB-C Charging Cable,1,11.95,03/30/19 16:38,"331 Meadow St, Los Angeles, CA 90001" -169661,27in 4K Gaming Monitor,1,389.99,03/29/19 21:48,"23 12th St, Seattle, WA 98101" -169662,Google Phone,1,600,03/05/19 11:36,"350 River St, San Francisco, CA 94016" -169663,Vareebadd Phone,1,400,03/19/19 08:13,"155 Highland St, New York City, NY 10001" -169664,Wired Headphones,1,11.99,03/18/19 23:18,"483 Maple St, New York City, NY 10001" -169665,27in 4K Gaming Monitor,1,389.99,03/24/19 09:44,"303 10th St, San Francisco, CA 94016" -169666,Google Phone,1,600,03/28/19 08:05,"513 4th St, Atlanta, GA 30301" -169666,Bose SoundSport Headphones,1,99.99,03/28/19 08:05,"513 4th St, Atlanta, GA 30301" -169667,AA Batteries (4-pack),1,3.84,03/13/19 20:29,"752 Center St, Los Angeles, CA 90001" -169668,Bose SoundSport Headphones,1,99.99,03/31/19 23:20,"924 13th St, San Francisco, CA 94016" -169668,Lightning Charging Cable,1,14.95,03/31/19 23:20,"924 13th St, San Francisco, CA 94016" -169669,USB-C Charging Cable,1,11.95,03/06/19 22:15,"824 Dogwood St, Los Angeles, CA 90001" -169670,Lightning Charging Cable,1,14.95,03/05/19 18:46,"949 Jefferson St, Boston, MA 02215" -169671,Wired Headphones,1,11.99,03/14/19 09:12,"209 Washington St, San Francisco, CA 94016" -169672,Wired Headphones,1,11.99,03/12/19 15:30,"729 Hill St, New York City, NY 10001" -169673,ThinkPad Laptop,1,999.99,03/05/19 14:08,"411 13th St, San Francisco, CA 94016" -169674,Apple Airpods Headphones,1,150,03/18/19 06:51,"808 Park St, Atlanta, GA 30301" -169675,AAA Batteries (4-pack),1,2.99,03/28/19 11:53,"908 2nd St, Austin, TX 73301" -169676,27in FHD Monitor,1,149.99,03/10/19 22:56,"540 Lakeview St, Dallas, TX 75001" -169677,27in 4K Gaming Monitor,1,389.99,03/08/19 08:22,"777 Johnson St, Atlanta, GA 30301" -169678,Lightning Charging Cable,1,14.95,03/07/19 19:29,"831 Ridge St, San Francisco, CA 94016" -169679,Google Phone,1,600,03/11/19 16:24,"102 Ridge St, Dallas, TX 75001" -169680,USB-C Charging Cable,2,11.95,03/30/19 15:49,"312 Church St, Boston, MA 02215" -169681,ThinkPad Laptop,1,999.99,03/07/19 10:16,"7 Spruce St, Los Angeles, CA 90001" -169681,Apple Airpods Headphones,1,150,03/07/19 10:16,"7 Spruce St, Los Angeles, CA 90001" -169682,27in 4K Gaming Monitor,1,389.99,03/03/19 02:00,"109 Lincoln St, San Francisco, CA 94016" -169683,Google Phone,1,600,03/10/19 11:51,"403 South St, Seattle, WA 98101" -169683,USB-C Charging Cable,1,11.95,03/10/19 11:51,"403 South St, Seattle, WA 98101" -169684,Bose SoundSport Headphones,1,99.99,03/19/19 12:02,"111 Walnut St, Dallas, TX 75001" -169685,Wired Headphones,1,11.99,03/29/19 14:18,"661 Church St, San Francisco, CA 94016" -169686,Lightning Charging Cable,1,14.95,03/09/19 21:51,"863 Lakeview St, San Francisco, CA 94016" -169687,AAA Batteries (4-pack),1,2.99,03/24/19 14:37,"976 Hill St, Seattle, WA 98101" -169687,Lightning Charging Cable,1,14.95,03/24/19 14:37,"976 Hill St, Seattle, WA 98101" -169688,AAA Batteries (4-pack),1,2.99,03/10/19 20:32,"352 Willow St, Los Angeles, CA 90001" -169689,27in FHD Monitor,1,149.99,03/25/19 09:57,"843 Madison St, Dallas, TX 75001" -169690,Apple Airpods Headphones,1,150,03/10/19 11:37,"168 Ridge St, Dallas, TX 75001" -169691,iPhone,1,700,03/03/19 09:24,"439 Highland St, New York City, NY 10001" -169692,34in Ultrawide Monitor,1,379.99,03/16/19 11:51,"738 Elm St, Atlanta, GA 30301" -169693,Wired Headphones,1,11.99,03/10/19 12:24,"38 Elm St, San Francisco, CA 94016" -169694,Wired Headphones,1,11.99,03/07/19 17:18,"868 Jefferson St, Boston, MA 02215" -169695,Flatscreen TV,1,300,03/21/19 10:50,"248 Wilson St, Boston, MA 02215" -169696,20in Monitor,1,109.99,03/05/19 11:21,"128 Cherry St, Dallas, TX 75001" -,,,,, -169697,Wired Headphones,1,11.99,03/06/19 19:49,"22 Adams St, San Francisco, CA 94016" -169698,iPhone,1,700,03/13/19 22:44,"363 Lake St, Boston, MA 02215" -169698,Lightning Charging Cable,1,14.95,03/13/19 22:44,"363 Lake St, Boston, MA 02215" -169699,34in Ultrawide Monitor,1,379.99,03/28/19 12:57,"268 Lake St, New York City, NY 10001" -169700,34in Ultrawide Monitor,1,379.99,03/10/19 11:55,"35 Ridge St, Seattle, WA 98101" -169701,Flatscreen TV,1,300,03/29/19 19:02,"351 Forest St, Atlanta, GA 30301" -169702,Lightning Charging Cable,1,14.95,03/01/19 17:47,"926 Sunset St, San Francisco, CA 94016" -169703,Lightning Charging Cable,1,14.95,03/28/19 12:52,"228 Madison St, Los Angeles, CA 90001" -169704,Lightning Charging Cable,1,14.95,03/12/19 04:51,"822 North St, Los Angeles, CA 90001" -169705,USB-C Charging Cable,1,11.95,03/05/19 12:11,"989 Hickory St, Austin, TX 73301" -169706,Flatscreen TV,1,300,03/28/19 11:11,"700 12th St, Boston, MA 02215" -169707,Apple Airpods Headphones,1,150,03/01/19 18:47,"127 Ridge St, Portland, OR 97035" -169708,AA Batteries (4-pack),1,3.84,03/22/19 09:03,"626 Cherry St, Boston, MA 02215" -169709,USB-C Charging Cable,1,11.95,03/05/19 19:29,"576 River St, Dallas, TX 75001" -169710,Flatscreen TV,1,300,03/17/19 12:03,"461 Pine St, Seattle, WA 98101" -169711,AAA Batteries (4-pack),1,2.99,03/15/19 07:41,"75 Sunset St, Austin, TX 73301" -169712,Lightning Charging Cable,1,14.95,03/23/19 09:49,"212 Cherry St, Atlanta, GA 30301" -169713,Vareebadd Phone,1,400,03/24/19 16:19,"219 Chestnut St, Los Angeles, CA 90001" -169714,Lightning Charging Cable,1,14.95,03/27/19 19:27,"907 Walnut St, Seattle, WA 98101" -169715,Bose SoundSport Headphones,1,99.99,03/19/19 16:49,"21 Center St, Boston, MA 02215" -169716,USB-C Charging Cable,1,11.95,03/26/19 11:52,"331 River St, San Francisco, CA 94016" -169717,USB-C Charging Cable,1,11.95,03/24/19 13:10,"89 Jefferson St, New York City, NY 10001" -169718,Macbook Pro Laptop,1,1700,03/18/19 10:09,"289 12th St, Los Angeles, CA 90001" -169719,Wired Headphones,1,11.99,03/25/19 18:35,"183 Meadow St, Austin, TX 73301" -169720,iPhone,1,700,03/01/19 13:33,"566 North St, Portland, ME 04101" -169720,Lightning Charging Cable,1,14.95,03/01/19 13:33,"566 North St, Portland, ME 04101" -169721,Wired Headphones,3,11.99,03/15/19 18:46,"490 Lake St, Atlanta, GA 30301" -169722,USB-C Charging Cable,1,11.95,03/24/19 10:47,"545 Main St, Atlanta, GA 30301" -169723,AA Batteries (4-pack),1,3.84,03/28/19 20:23,"362 Hill St, Los Angeles, CA 90001" -169724,AAA Batteries (4-pack),1,2.99,03/18/19 13:30,"599 10th St, San Francisco, CA 94016" -169725,Lightning Charging Cable,1,14.95,03/06/19 10:39,"477 Adams St, San Francisco, CA 94016" -169726,AAA Batteries (4-pack),2,2.99,03/13/19 19:34,"50 South St, Atlanta, GA 30301" -169727,AA Batteries (4-pack),1,3.84,03/23/19 16:39,"194 4th St, Austin, TX 73301" -169728,Apple Airpods Headphones,1,150,03/03/19 21:27,"97 Chestnut St, Seattle, WA 98101" -169729,Bose SoundSport Headphones,1,99.99,03/08/19 20:59,"363 West St, Boston, MA 02215" -169730,USB-C Charging Cable,1,11.95,03/12/19 11:10,"768 Pine St, Austin, TX 73301" -169731,AA Batteries (4-pack),1,3.84,03/11/19 21:19,"655 Ridge St, San Francisco, CA 94016" -169732,AAA Batteries (4-pack),1,2.99,03/31/19 20:12,"437 Forest St, Los Angeles, CA 90001" -169733,Flatscreen TV,1,300,03/11/19 01:45,"400 4th St, Austin, TX 73301" -169734,Lightning Charging Cable,1,14.95,03/25/19 14:51,"535 Adams St, Boston, MA 02215" -169735,27in FHD Monitor,1,149.99,03/02/19 08:32,"504 Center St, Austin, TX 73301" -169736,Lightning Charging Cable,1,14.95,03/17/19 18:56,"707 5th St, Austin, TX 73301" -169737,AA Batteries (4-pack),1,3.84,03/11/19 19:07,"204 Johnson St, Dallas, TX 75001" -169738,iPhone,1,700,03/02/19 13:12,"962 11th St, San Francisco, CA 94016" -169738,Lightning Charging Cable,1,14.95,03/02/19 13:12,"962 11th St, San Francisco, CA 94016" -169739,AA Batteries (4-pack),1,3.84,03/25/19 15:27,"143 8th St, Atlanta, GA 30301" -169740,USB-C Charging Cable,1,11.95,03/01/19 16:15,"936 Center St, Los Angeles, CA 90001" -169741,Wired Headphones,1,11.99,03/23/19 14:26,"493 Spruce St, Seattle, WA 98101" -169742,Flatscreen TV,1,300,03/01/19 20:19,"394 Cherry St, Portland, OR 97035" -169743,Lightning Charging Cable,1,14.95,03/11/19 21:21,"772 12th St, Portland, OR 97035" -169744,Lightning Charging Cable,2,14.95,03/20/19 19:20,"211 7th St, Seattle, WA 98101" -169745,Lightning Charging Cable,2,14.95,03/13/19 09:14,"514 Center St, Dallas, TX 75001" -169746,Bose SoundSport Headphones,1,99.99,03/03/19 21:37,"167 Park St, New York City, NY 10001" -169747,Bose SoundSport Headphones,1,99.99,03/21/19 09:11,"198 6th St, Portland, ME 04101" -169748,27in FHD Monitor,1,149.99,03/08/19 00:30,"815 12th St, Dallas, TX 75001" -169749,AA Batteries (4-pack),2,3.84,03/06/19 00:07,"477 Walnut St, Boston, MA 02215" -169750,Lightning Charging Cable,1,14.95,03/24/19 17:52,"176 Forest St, San Francisco, CA 94016" -169751,AAA Batteries (4-pack),1,2.99,03/16/19 11:06,"911 Madison St, New York City, NY 10001" -169752,Lightning Charging Cable,1,14.95,03/21/19 17:21,"731 6th St, Los Angeles, CA 90001" -169753,Apple Airpods Headphones,1,150,03/02/19 16:32,"105 Church St, Boston, MA 02215" -169754,ThinkPad Laptop,1,999.99,03/28/19 16:21,"228 Willow St, Seattle, WA 98101" -169755,27in FHD Monitor,1,149.99,03/06/19 21:18,"305 6th St, San Francisco, CA 94016" -169756,AA Batteries (4-pack),1,3.84,03/22/19 12:02,"500 14th St, Atlanta, GA 30301" -169757,Bose SoundSport Headphones,1,99.99,03/21/19 10:45,"667 Cherry St, Los Angeles, CA 90001" -169758,20in Monitor,1,109.99,03/04/19 17:33,"63 Cedar St, San Francisco, CA 94016" -169759,Apple Airpods Headphones,1,150,03/18/19 15:23,"815 Walnut St, San Francisco, CA 94016" -169760,Apple Airpods Headphones,1,150,03/03/19 22:27,"172 5th St, San Francisco, CA 94016" -169761,Wired Headphones,1,11.99,03/05/19 15:19,"289 Walnut St, Atlanta, GA 30301" -169762,Apple Airpods Headphones,1,150,03/25/19 10:14,"727 Cedar St, New York City, NY 10001" -169763,AAA Batteries (4-pack),2,2.99,03/02/19 12:59,"487 Church St, San Francisco, CA 94016" -169764,Lightning Charging Cable,1,14.95,03/13/19 20:38,"691 Lake St, Seattle, WA 98101" -169765,USB-C Charging Cable,1,11.95,03/20/19 22:54,"597 Walnut St, Dallas, TX 75001" -169765,Wired Headphones,1,11.99,03/20/19 22:54,"597 Walnut St, Dallas, TX 75001" -169766,AAA Batteries (4-pack),1,2.99,03/17/19 22:16,"785 5th St, Boston, MA 02215" -169767,USB-C Charging Cable,1,11.95,03/18/19 22:19,"248 Main St, San Francisco, CA 94016" -169768,AAA Batteries (4-pack),1,2.99,03/15/19 19:55,"246 Forest St, Los Angeles, CA 90001" -169769,AA Batteries (4-pack),1,3.84,03/30/19 10:14,"43 Park St, Los Angeles, CA 90001" -169770,34in Ultrawide Monitor,1,379.99,03/12/19 21:17,"404 Main St, Dallas, TX 75001" -169771,Flatscreen TV,1,300,03/05/19 19:45,"168 Chestnut St, Boston, MA 02215" -169772,Apple Airpods Headphones,1,150,03/28/19 20:22,"899 1st St, Atlanta, GA 30301" -169773,AA Batteries (4-pack),1,3.84,03/13/19 11:54,"530 12th St, Boston, MA 02215" -169774,ThinkPad Laptop,1,999.99,03/15/19 17:11,"415 Cedar St, New York City, NY 10001" -169775,27in FHD Monitor,1,149.99,03/11/19 14:45,"216 6th St, Los Angeles, CA 90001" -169776,Google Phone,1,600,03/31/19 09:26,"840 Adams St, New York City, NY 10001" -169777,Google Phone,1,600,03/21/19 15:06,"270 Chestnut St, San Francisco, CA 94016" -169778,Apple Airpods Headphones,1,150,03/14/19 23:13,"304 Maple St, Portland, OR 97035" -169779,AAA Batteries (4-pack),1,2.99,03/05/19 19:10,"824 2nd St, San Francisco, CA 94016" -169780,Apple Airpods Headphones,1,150,03/01/19 21:35,"467 Lakeview St, Seattle, WA 98101" -169780,Lightning Charging Cable,1,14.95,03/01/19 21:35,"467 Lakeview St, Seattle, WA 98101" -169781,Apple Airpods Headphones,1,150,03/03/19 11:37,"549 9th St, Seattle, WA 98101" -169782,AA Batteries (4-pack),1,3.84,03/24/19 08:33,"831 12th St, San Francisco, CA 94016" -169783,20in Monitor,1,109.99,03/23/19 09:58,"668 Lake St, Los Angeles, CA 90001" -169784,34in Ultrawide Monitor,1,379.99,03/11/19 17:07,"544 South St, San Francisco, CA 94016" -169785,Google Phone,1,600,03/06/19 13:52,"449 8th St, San Francisco, CA 94016" -169786,Wired Headphones,1,11.99,03/26/19 23:08,"143 Adams St, Boston, MA 02215" -169787,USB-C Charging Cable,1,11.95,03/15/19 19:24,"411 Johnson St, Boston, MA 02215" -169788,Lightning Charging Cable,1,14.95,03/21/19 11:05,"918 Forest St, Los Angeles, CA 90001" -169789,Apple Airpods Headphones,1,150,03/22/19 08:27,"762 Adams St, San Francisco, CA 94016" -169790,Lightning Charging Cable,1,14.95,03/14/19 15:52,"979 Wilson St, Los Angeles, CA 90001" -169791,Apple Airpods Headphones,1,150,03/27/19 23:34,"96 7th St, Boston, MA 02215" -169792,AA Batteries (4-pack),2,3.84,03/27/19 13:40,"677 North St, Boston, MA 02215" -169793,20in Monitor,1,109.99,03/09/19 12:43,"3 Maple St, Atlanta, GA 30301" -169794,USB-C Charging Cable,1,11.95,03/08/19 15:10,"57 8th St, Los Angeles, CA 90001" -169795,Wired Headphones,1,11.99,03/11/19 21:26,"151 Lincoln St, Boston, MA 02215" -169796,AA Batteries (4-pack),1,3.84,03/15/19 10:24,"75 9th St, San Francisco, CA 94016" -169797,Apple Airpods Headphones,1,150,03/29/19 12:55,"139 South St, Dallas, TX 75001" -169798,27in FHD Monitor,1,149.99,03/27/19 14:16,"854 11th St, New York City, NY 10001" -169799,Google Phone,1,600,03/24/19 19:27,"129 Elm St, San Francisco, CA 94016" -169800,iPhone,1,700,03/26/19 15:30,"682 4th St, New York City, NY 10001" -169800,Apple Airpods Headphones,1,150,03/26/19 15:30,"682 4th St, New York City, NY 10001" -169801,USB-C Charging Cable,1,11.95,03/27/19 19:24,"450 Lakeview St, San Francisco, CA 94016" -169802,Bose SoundSport Headphones,1,99.99,03/09/19 10:46,"241 Johnson St, Los Angeles, CA 90001" -169803,AA Batteries (4-pack),1,3.84,03/09/19 17:39,"188 4th St, Portland, OR 97035" -169804,Google Phone,1,600,03/26/19 00:16,"793 Walnut St, Austin, TX 73301" -169805,Bose SoundSport Headphones,1,99.99,03/08/19 20:41,"844 Ridge St, Portland, OR 97035" -169806,AA Batteries (4-pack),1,3.84,03/23/19 21:25,"920 Cherry St, New York City, NY 10001" -169807,Apple Airpods Headphones,1,150,03/10/19 22:34,"674 Ridge St, Boston, MA 02215" -169808,AAA Batteries (4-pack),2,2.99,03/17/19 06:37,"724 12th St, Los Angeles, CA 90001" -169809,Bose SoundSport Headphones,1,99.99,03/06/19 23:30,"696 Ridge St, Seattle, WA 98101" -169810,27in FHD Monitor,1,149.99,03/05/19 19:37,"937 Chestnut St, San Francisco, CA 94016" -169811,27in 4K Gaming Monitor,1,389.99,03/12/19 14:47,"258 8th St, Seattle, WA 98101" -169812,27in 4K Gaming Monitor,1,389.99,03/28/19 17:42,"14 Highland St, Boston, MA 02215" -169813,AA Batteries (4-pack),1,3.84,03/31/19 05:21,"999 2nd St, Atlanta, GA 30301" -169814,Lightning Charging Cable,1,14.95,03/18/19 00:23,"179 Cedar St, Los Angeles, CA 90001" -169815,Bose SoundSport Headphones,1,99.99,03/30/19 23:08,"295 Dogwood St, Seattle, WA 98101" -169816,ThinkPad Laptop,1,999.99,03/13/19 10:46,"258 2nd St, San Francisco, CA 94016" -169817,Wired Headphones,1,11.99,03/13/19 22:10,"791 11th St, San Francisco, CA 94016" -169818,AA Batteries (4-pack),1,3.84,03/20/19 22:07,"572 8th St, San Francisco, CA 94016" -169819,AA Batteries (4-pack),1,3.84,03/21/19 09:18,"88 Willow St, Los Angeles, CA 90001" -169820,AAA Batteries (4-pack),1,2.99,03/11/19 12:27,"117 Willow St, Boston, MA 02215" -169821,AAA Batteries (4-pack),1,2.99,03/19/19 09:52,"390 Johnson St, Austin, TX 73301" -169822,AAA Batteries (4-pack),2,2.99,03/02/19 06:43,"964 Johnson St, Austin, TX 73301" -169823,Wired Headphones,1,11.99,03/19/19 20:22,"847 Washington St, Austin, TX 73301" -169824,Macbook Pro Laptop,1,1700,03/08/19 18:39,"8 West St, San Francisco, CA 94016" -169825,Wired Headphones,2,11.99,03/12/19 09:48,"606 Hickory St, Portland, OR 97035" -169826,Lightning Charging Cable,1,14.95,03/13/19 11:19,"318 Adams St, Boston, MA 02215" -169827,27in 4K Gaming Monitor,1,389.99,03/06/19 20:32,"170 7th St, San Francisco, CA 94016" -169828,AAA Batteries (4-pack),1,2.99,03/14/19 18:44,"371 12th St, Austin, TX 73301" -169829,Flatscreen TV,1,300,03/16/19 13:35,"412 Hickory St, Los Angeles, CA 90001" -169830,Google Phone,1,600,03/30/19 14:56,"879 West St, New York City, NY 10001" -169830,USB-C Charging Cable,2,11.95,03/30/19 14:56,"879 West St, New York City, NY 10001" -169831,USB-C Charging Cable,1,11.95,03/09/19 12:07,"611 North St, Atlanta, GA 30301" -169832,Bose SoundSport Headphones,1,99.99,03/21/19 19:26,"365 Elm St, Atlanta, GA 30301" -169833,Macbook Pro Laptop,1,1700,03/30/19 10:47,"659 Jackson St, San Francisco, CA 94016" -169834,Wired Headphones,1,11.99,03/19/19 11:31,"301 Willow St, New York City, NY 10001" -169835,Apple Airpods Headphones,1,150,03/14/19 14:46,"560 South St, New York City, NY 10001" -169836,34in Ultrawide Monitor,1,379.99,03/22/19 15:58,"726 11th St, Dallas, TX 75001" -169837,Lightning Charging Cable,1,14.95,03/22/19 10:15,"238 Church St, Boston, MA 02215" -169838,AA Batteries (4-pack),1,3.84,03/14/19 20:33,"724 West St, Los Angeles, CA 90001" -169839,Lightning Charging Cable,1,14.95,03/13/19 20:44,"511 Willow St, San Francisco, CA 94016" -169840,Flatscreen TV,1,300,03/23/19 15:30,"744 Wilson St, Atlanta, GA 30301" -169841,USB-C Charging Cable,1,11.95,03/07/19 13:17,"461 Chestnut St, New York City, NY 10001" -169842,Lightning Charging Cable,1,14.95,03/14/19 22:19,"870 Highland St, San Francisco, CA 94016" -169843,USB-C Charging Cable,1,11.95,03/02/19 21:34,"188 Ridge St, Portland, ME 04101" -169844,USB-C Charging Cable,1,11.95,03/04/19 12:22,"259 Washington St, Atlanta, GA 30301" -169845,Bose SoundSport Headphones,1,99.99,03/02/19 18:56,"488 Hill St, San Francisco, CA 94016" -169846,Apple Airpods Headphones,1,150,03/23/19 17:43,"411 Cherry St, New York City, NY 10001" -169847,AA Batteries (4-pack),2,3.84,03/31/19 06:59,"658 Lakeview St, San Francisco, CA 94016" -169848,AAA Batteries (4-pack),2,2.99,03/23/19 15:55,"851 Pine St, Boston, MA 02215" -169849,Lightning Charging Cable,3,14.95,03/03/19 19:00,"628 Center St, New York City, NY 10001" -169850,34in Ultrawide Monitor,1,379.99,03/26/19 16:15,"904 Main St, Seattle, WA 98101" -169851,Google Phone,1,600,03/22/19 21:40,"35 Lincoln St, San Francisco, CA 94016" -169852,AA Batteries (4-pack),1,3.84,03/24/19 17:37,"397 North St, Dallas, TX 75001" -169853,AA Batteries (4-pack),1,3.84,03/24/19 18:04,"156 Church St, Los Angeles, CA 90001" -169854,AA Batteries (4-pack),1,3.84,03/05/19 20:55,"181 Maple St, Austin, TX 73301" -169855,Vareebadd Phone,1,400,03/21/19 14:05,"536 Madison St, Boston, MA 02215" -169856,Lightning Charging Cable,1,14.95,03/05/19 20:34,"387 Main St, San Francisco, CA 94016" -169857,AAA Batteries (4-pack),1,2.99,03/12/19 23:52,"763 Jefferson St, San Francisco, CA 94016" -169858,Lightning Charging Cable,1,14.95,03/04/19 09:40,"824 Washington St, Los Angeles, CA 90001" -169859,27in FHD Monitor,1,149.99,03/14/19 11:00,"748 Church St, New York City, NY 10001" -169860,AA Batteries (4-pack),2,3.84,03/03/19 03:17,"404 Elm St, Seattle, WA 98101" -169861,USB-C Charging Cable,1,11.95,03/18/19 09:53,"561 Chestnut St, Dallas, TX 75001" -169862,27in 4K Gaming Monitor,1,389.99,03/24/19 18:59,"537 5th St, Dallas, TX 75001" -169863,AAA Batteries (4-pack),1,2.99,03/19/19 02:48,"927 Elm St, San Francisco, CA 94016" -169864,20in Monitor,1,109.99,03/11/19 20:39,"517 9th St, San Francisco, CA 94016" -169865,Bose SoundSport Headphones,1,99.99,03/23/19 19:42,"455 2nd St, Los Angeles, CA 90001" -169866,Wired Headphones,1,11.99,03/25/19 12:02,"379 Maple St, Seattle, WA 98101" -169867,Google Phone,1,600,03/25/19 18:28,"570 Hill St, Dallas, TX 75001" -169868,Wired Headphones,1,11.99,03/30/19 10:01,"213 Cherry St, Seattle, WA 98101" -169869,Bose SoundSport Headphones,1,99.99,03/08/19 19:28,"296 Meadow St, San Francisco, CA 94016" -169870,AA Batteries (4-pack),1,3.84,03/05/19 19:54,"858 Lakeview St, San Francisco, CA 94016" -169871,AAA Batteries (4-pack),1,2.99,03/18/19 00:42,"140 Spruce St, San Francisco, CA 94016" -169872,27in 4K Gaming Monitor,1,389.99,03/18/19 14:14,"215 Main St, Austin, TX 73301" -169873,AAA Batteries (4-pack),1,2.99,03/15/19 11:22,"441 Lake St, Atlanta, GA 30301" -169874,iPhone,1,700,03/27/19 16:48,"53 Main St, San Francisco, CA 94016" -169875,27in FHD Monitor,1,149.99,03/25/19 21:44,"801 Pine St, Los Angeles, CA 90001" -169876,ThinkPad Laptop,1,999.99,03/29/19 11:09,"401 Sunset St, Portland, OR 97035" -169877,Bose SoundSport Headphones,1,99.99,03/29/19 16:03,"80 1st St, San Francisco, CA 94016" -169878,Bose SoundSport Headphones,1,99.99,03/22/19 09:57,"789 Wilson St, Dallas, TX 75001" -169879,Lightning Charging Cable,1,14.95,03/19/19 07:03,"34 Highland St, San Francisco, CA 94016" -169880,USB-C Charging Cable,1,11.95,03/18/19 13:15,"335 Ridge St, San Francisco, CA 94016" -169881,AA Batteries (4-pack),1,3.84,03/18/19 00:57,"663 Madison St, Los Angeles, CA 90001" -169882,USB-C Charging Cable,1,11.95,03/12/19 21:24,"750 Lincoln St, San Francisco, CA 94016" -169883,Google Phone,1,600,03/02/19 11:10,"285 Ridge St, Boston, MA 02215" -169883,Bose SoundSport Headphones,1,99.99,03/02/19 11:10,"285 Ridge St, Boston, MA 02215" -169884,Wired Headphones,2,11.99,03/04/19 07:35,"302 8th St, Los Angeles, CA 90001" -169885,Google Phone,1,600,03/03/19 18:55,"916 Lincoln St, Boston, MA 02215" -169886,20in Monitor,1,109.99,03/27/19 14:29,"677 12th St, Seattle, WA 98101" -169887,AA Batteries (4-pack),1,3.84,03/09/19 20:58,"275 Highland St, Los Angeles, CA 90001" -169888,USB-C Charging Cable,1,11.95,03/23/19 00:11,"681 Sunset St, Portland, OR 97035" -169889,AA Batteries (4-pack),1,3.84,03/11/19 14:05,"591 5th St, San Francisco, CA 94016" -169890,USB-C Charging Cable,1,11.95,03/22/19 21:56,"582 2nd St, Austin, TX 73301" -169891,AA Batteries (4-pack),1,3.84,03/08/19 18:13,"668 8th St, Seattle, WA 98101" -169892,AAA Batteries (4-pack),1,2.99,03/11/19 10:02,"955 Lake St, New York City, NY 10001" -169893,ThinkPad Laptop,1,999.99,03/25/19 10:04,"40 2nd St, Los Angeles, CA 90001" -169894,Wired Headphones,1,11.99,03/27/19 09:13,"107 8th St, Dallas, TX 75001" -169895,Flatscreen TV,1,300,03/10/19 19:18,"913 12th St, Portland, OR 97035" -169896,AA Batteries (4-pack),1,3.84,03/31/19 21:28,"857 Main St, New York City, NY 10001" -169897,AAA Batteries (4-pack),2,2.99,03/27/19 14:54,"239 Hickory St, Dallas, TX 75001" -169898,Flatscreen TV,1,300,03/27/19 19:27,"618 Sunset St, Boston, MA 02215" -169899,Macbook Pro Laptop,1,1700,03/23/19 08:28,"604 Lakeview St, Boston, MA 02215" -169900,Lightning Charging Cable,1,14.95,03/25/19 13:09,"594 Willow St, San Francisco, CA 94016" -169901,27in 4K Gaming Monitor,1,389.99,03/14/19 19:38,"659 4th St, San Francisco, CA 94016" -169902,Flatscreen TV,1,300,03/16/19 13:52,"545 2nd St, Atlanta, GA 30301" -169903,USB-C Charging Cable,1,11.95,03/03/19 05:15,"844 Forest St, San Francisco, CA 94016" -169904,AAA Batteries (4-pack),1,2.99,03/18/19 18:43,"911 Hickory St, Los Angeles, CA 90001" -169905,Apple Airpods Headphones,1,150,03/01/19 18:42,"135 9th St, San Francisco, CA 94016" -169906,Apple Airpods Headphones,1,150,03/21/19 21:04,"926 North St, Portland, OR 97035" -169907,USB-C Charging Cable,1,11.95,03/23/19 08:47,"276 Hill St, Los Angeles, CA 90001" -169908,Apple Airpods Headphones,1,150,03/17/19 00:29,"130 Pine St, Dallas, TX 75001" -169909,Wired Headphones,1,11.99,03/11/19 20:42,"837 12th St, Los Angeles, CA 90001" -169910,Lightning Charging Cable,2,14.95,03/14/19 12:29,"809 West St, Los Angeles, CA 90001" -169911,Apple Airpods Headphones,1,150,03/28/19 14:33,"789 Jackson St, Boston, MA 02215" -169912,Lightning Charging Cable,1,14.95,03/26/19 13:02,"866 Sunset St, Dallas, TX 75001" -169913,USB-C Charging Cable,1,11.95,03/19/19 14:33,"28 8th St, New York City, NY 10001" -169914,Macbook Pro Laptop,1,1700,03/23/19 10:34,"706 Hill St, Dallas, TX 75001" -169915,AA Batteries (4-pack),1,3.84,03/31/19 08:19,"935 Hickory St, Los Angeles, CA 90001" -169916,AA Batteries (4-pack),1,3.84,03/14/19 07:20,"936 Lincoln St, Seattle, WA 98101" -169917,Google Phone,1,600,03/04/19 21:05,"571 6th St, New York City, NY 10001" -169918,27in FHD Monitor,1,149.99,03/22/19 20:30,"429 Center St, New York City, NY 10001" -169919,ThinkPad Laptop,1,999.99,03/16/19 10:36,"626 Lincoln St, Portland, OR 97035" -169920,27in FHD Monitor,1,149.99,03/06/19 12:00,"805 North St, San Francisco, CA 94016" -169921,AA Batteries (4-pack),2,3.84,03/20/19 18:16,"52 Park St, Dallas, TX 75001" -169922,LG Washing Machine,1,600.0,03/08/19 12:41,"309 Maple St, Dallas, TX 75001" -169923,AA Batteries (4-pack),1,3.84,03/17/19 16:43,"532 5th St, Atlanta, GA 30301" -169924,AAA Batteries (4-pack),1,2.99,03/09/19 17:40,"796 Walnut St, New York City, NY 10001" -169925,Lightning Charging Cable,1,14.95,03/29/19 18:45,"899 Park St, Seattle, WA 98101" -169926,AAA Batteries (4-pack),2,2.99,03/05/19 19:49,"714 River St, Los Angeles, CA 90001" -169927,AA Batteries (4-pack),1,3.84,03/09/19 16:07,"655 Dogwood St, Los Angeles, CA 90001" -169928,USB-C Charging Cable,1,11.95,03/11/19 20:44,"300 Dogwood St, Boston, MA 02215" -169929,Apple Airpods Headphones,1,150,03/29/19 21:56,"665 Jackson St, Atlanta, GA 30301" -169930,AA Batteries (4-pack),1,3.84,03/13/19 12:55,"397 4th St, Seattle, WA 98101" -169931,Bose SoundSport Headphones,1,99.99,03/21/19 21:54,"363 Highland St, Portland, OR 97035" -169932,Apple Airpods Headphones,1,150,03/22/19 20:26,"631 South St, San Francisco, CA 94016" -169933,Macbook Pro Laptop,1,1700,03/28/19 18:11,"848 4th St, Los Angeles, CA 90001" -169934,USB-C Charging Cable,1,11.95,03/05/19 13:28,"30 8th St, Boston, MA 02215" -169935,Apple Airpods Headphones,1,150,03/24/19 22:45,"274 14th St, San Francisco, CA 94016" -169936,Vareebadd Phone,1,400,03/07/19 19:29,"546 River St, New York City, NY 10001" -169937,ThinkPad Laptop,1,999.99,03/23/19 12:33,"24 Madison St, New York City, NY 10001" -169938,Wired Headphones,1,11.99,03/15/19 17:43,"222 Adams St, Atlanta, GA 30301" -169939,27in 4K Gaming Monitor,1,389.99,03/28/19 17:53,"781 Maple St, Seattle, WA 98101" -169940,Apple Airpods Headphones,1,150,03/11/19 22:28,"481 Jackson St, Los Angeles, CA 90001" -169941,Apple Airpods Headphones,1,150,03/10/19 09:43,"934 Highland St, Seattle, WA 98101" -169942,AA Batteries (4-pack),1,3.84,03/30/19 20:31,"817 Madison St, Portland, ME 04101" -169943,Apple Airpods Headphones,1,150,03/27/19 22:43,"512 Park St, Seattle, WA 98101" -169944,Macbook Pro Laptop,1,1700,03/05/19 15:42,"311 Maple St, San Francisco, CA 94016" -169945,AA Batteries (4-pack),1,3.84,03/10/19 19:27,"472 North St, Seattle, WA 98101" -169946,20in Monitor,1,109.99,03/28/19 21:04,"499 Pine St, Boston, MA 02215" -169947,Bose SoundSport Headphones,1,99.99,03/28/19 13:05,"414 4th St, New York City, NY 10001" -169948,Apple Airpods Headphones,1,150,03/12/19 08:51,"943 12th St, New York City, NY 10001" -169949,LG Washing Machine,1,600.0,03/30/19 14:28,"856 Spruce St, Boston, MA 02215" -169949,AAA Batteries (4-pack),1,2.99,03/30/19 14:28,"856 Spruce St, Boston, MA 02215" -169950,Lightning Charging Cable,1,14.95,03/17/19 16:07,"651 8th St, Los Angeles, CA 90001" -169951,iPhone,1,700,03/10/19 17:12,"730 14th St, San Francisco, CA 94016" -169952,AAA Batteries (4-pack),1,2.99,03/19/19 21:37,"442 Dogwood St, Seattle, WA 98101" -169953,Bose SoundSport Headphones,1,99.99,03/29/19 14:56,"44 11th St, Dallas, TX 75001" -169954,LG Washing Machine,1,600.0,03/03/19 20:53,"57 Ridge St, San Francisco, CA 94016" -169955,USB-C Charging Cable,1,11.95,03/07/19 12:13,"498 Meadow St, Boston, MA 02215" -169956,Google Phone,1,600,03/28/19 23:16,"663 10th St, Atlanta, GA 30301" -169956,iPhone,1,700,03/28/19 23:16,"663 10th St, Atlanta, GA 30301" -169957,AA Batteries (4-pack),1,3.84,03/07/19 14:17,"843 Hill St, Los Angeles, CA 90001" -169958,AA Batteries (4-pack),1,3.84,03/01/19 20:54,"887 Pine St, Seattle, WA 98101" -169959,iPhone,1,700,03/23/19 09:51,"420 1st St, Atlanta, GA 30301" -169959,Wired Headphones,2,11.99,03/23/19 09:51,"420 1st St, Atlanta, GA 30301" -169960,Wired Headphones,1,11.99,03/06/19 14:26,"772 7th St, Portland, OR 97035" -169961,Google Phone,1,600,03/05/19 17:38,"115 Church St, Los Angeles, CA 90001" -169961,Wired Headphones,1,11.99,03/05/19 17:38,"115 Church St, Los Angeles, CA 90001" -169962,ThinkPad Laptop,1,999.99,03/12/19 16:59,"724 Main St, Boston, MA 02215" -169963,Wired Headphones,2,11.99,03/09/19 21:40,"194 13th St, San Francisco, CA 94016" -169964,Wired Headphones,1,11.99,03/28/19 21:30,"583 North St, Seattle, WA 98101" -169965,Bose SoundSport Headphones,1,99.99,03/04/19 11:48,"593 Center St, New York City, NY 10001" -169966,Flatscreen TV,1,300,03/08/19 21:47,"327 Elm St, Boston, MA 02215" -169967,AAA Batteries (4-pack),1,2.99,03/08/19 09:14,"908 Lake St, Dallas, TX 75001" -169968,iPhone,1,700,03/12/19 00:20,"9 Lincoln St, New York City, NY 10001" -169969,AA Batteries (4-pack),2,3.84,03/12/19 13:56,"282 2nd St, Dallas, TX 75001" -169970,Apple Airpods Headphones,1,150,03/25/19 12:55,"945 Park St, San Francisco, CA 94016" -169971,USB-C Charging Cable,1,11.95,03/24/19 18:17,"776 1st St, San Francisco, CA 94016" -169972,AA Batteries (4-pack),2,3.84,03/09/19 15:49,"806 10th St, San Francisco, CA 94016" -169973,34in Ultrawide Monitor,1,379.99,03/22/19 14:41,"654 Meadow St, San Francisco, CA 94016" -169974,USB-C Charging Cable,2,11.95,03/28/19 15:42,"176 5th St, Dallas, TX 75001" -169975,27in 4K Gaming Monitor,1,389.99,03/17/19 10:47,"219 Main St, Atlanta, GA 30301" -169976,LG Washing Machine,1,600.0,03/05/19 23:25,"486 2nd St, Los Angeles, CA 90001" -169977,27in FHD Monitor,1,149.99,03/04/19 23:19,"776 8th St, Seattle, WA 98101" -169978,USB-C Charging Cable,1,11.95,03/24/19 18:51,"856 Cherry St, New York City, NY 10001" -169979,Apple Airpods Headphones,1,150,03/28/19 11:34,"218 Adams St, Portland, ME 04101" -169980,iPhone,1,700,03/16/19 13:51,"135 1st St, San Francisco, CA 94016" -169981,34in Ultrawide Monitor,1,379.99,03/11/19 21:14,"693 9th St, Portland, ME 04101" -169982,USB-C Charging Cable,1,11.95,03/04/19 14:42,"169 Cedar St, Los Angeles, CA 90001" -169983,Google Phone,1,600,03/16/19 22:48,"311 Lakeview St, Dallas, TX 75001" -169983,Bose SoundSport Headphones,1,99.99,03/16/19 22:48,"311 Lakeview St, Dallas, TX 75001" -169984,Bose SoundSport Headphones,1,99.99,03/06/19 11:42,"371 South St, Portland, ME 04101" -169985,Lightning Charging Cable,1,14.95,03/27/19 14:23,"171 Chestnut St, San Francisco, CA 94016" -169986,AA Batteries (4-pack),1,3.84,03/02/19 14:28,"875 North St, New York City, NY 10001" -169987,Wired Headphones,1,11.99,03/21/19 16:44,"868 13th St, New York City, NY 10001" -169988,Wired Headphones,1,11.99,03/21/19 16:31,"217 7th St, Los Angeles, CA 90001" -169989,USB-C Charging Cable,1,11.95,03/13/19 23:39,"888 Forest St, Boston, MA 02215" -169990,34in Ultrawide Monitor,1,379.99,03/08/19 17:06,"391 Maple St, Seattle, WA 98101" -169991,Lightning Charging Cable,1,14.95,03/21/19 08:09,"596 Highland St, Dallas, TX 75001" -169992,Lightning Charging Cable,1,14.95,03/07/19 21:20,"2 Meadow St, Boston, MA 02215" -169993,AAA Batteries (4-pack),1,2.99,03/10/19 13:48,"517 4th St, Atlanta, GA 30301" -169994,Wired Headphones,1,11.99,03/23/19 10:53,"901 Johnson St, Los Angeles, CA 90001" -169995,AA Batteries (4-pack),1,3.84,03/08/19 08:20,"162 Church St, San Francisco, CA 94016" -169996,USB-C Charging Cable,1,11.95,03/12/19 20:47,"19 Elm St, San Francisco, CA 94016" -169997,AAA Batteries (4-pack),1,2.99,03/20/19 08:48,"76 Spruce St, Boston, MA 02215" -169998,USB-C Charging Cable,1,11.95,03/07/19 09:03,"67 Maple St, Los Angeles, CA 90001" -169999,Lightning Charging Cable,1,14.95,03/28/19 18:58,"132 Washington St, Boston, MA 02215" -170000,20in Monitor,1,109.99,03/06/19 17:12,"398 Adams St, Portland, ME 04101" -170001,AAA Batteries (4-pack),1,2.99,03/13/19 13:43,"847 Ridge St, Atlanta, GA 30301" -170002,Bose SoundSport Headphones,1,99.99,03/17/19 05:59,"609 Elm St, San Francisco, CA 94016" -170003,AAA Batteries (4-pack),1,2.99,03/24/19 20:59,"214 Wilson St, San Francisco, CA 94016" -170004,34in Ultrawide Monitor,1,379.99,03/12/19 14:57,"61 Maple St, Boston, MA 02215" -170005,34in Ultrawide Monitor,1,379.99,03/07/19 16:11,"252 South St, Austin, TX 73301" -170006,Bose SoundSport Headphones,1,99.99,03/29/19 00:28,"44 7th St, Boston, MA 02215" -170007,Lightning Charging Cable,1,14.95,03/31/19 21:55,"342 Cedar St, New York City, NY 10001" -170008,27in FHD Monitor,1,149.99,03/29/19 23:40,"906 Main St, Seattle, WA 98101" -170009,Wired Headphones,2,11.99,03/04/19 23:54,"296 11th St, Seattle, WA 98101" -170010,Wired Headphones,1,11.99,03/04/19 09:18,"205 4th St, San Francisco, CA 94016" -170011,Apple Airpods Headphones,1,150,03/05/19 21:41,"5 South St, Atlanta, GA 30301" -170012,27in FHD Monitor,1,149.99,03/10/19 20:32,"244 Elm St, Los Angeles, CA 90001" -170013,27in FHD Monitor,1,149.99,03/30/19 13:21,"755 Cedar St, New York City, NY 10001" -170014,27in 4K Gaming Monitor,1,389.99,03/25/19 15:16,"76 14th St, San Francisco, CA 94016" -170015,ThinkPad Laptop,1,999.99,03/02/19 15:59,"654 Ridge St, Portland, OR 97035" -170016,Lightning Charging Cable,1,14.95,03/15/19 08:35,"522 Adams St, Los Angeles, CA 90001" -170017,Wired Headphones,1,11.99,03/23/19 11:54,"96 11th St, San Francisco, CA 94016" -170018,AA Batteries (4-pack),2,3.84,03/29/19 18:20,"234 11th St, Atlanta, GA 30301" -170019,AAA Batteries (4-pack),1,2.99,03/18/19 11:17,"939 Highland St, New York City, NY 10001" -170020,USB-C Charging Cable,1,11.95,03/18/19 17:30,"749 Hickory St, Los Angeles, CA 90001" -170021,Vareebadd Phone,1,400,03/13/19 18:15,"917 Cherry St, Seattle, WA 98101" -170022,USB-C Charging Cable,3,11.95,03/26/19 12:14,"616 Walnut St, Dallas, TX 75001" -170023,AA Batteries (4-pack),2,3.84,03/10/19 14:19,"984 Pine St, San Francisco, CA 94016" -170024,USB-C Charging Cable,1,11.95,03/15/19 13:49,"438 9th St, San Francisco, CA 94016" -170025,Wired Headphones,1,11.99,03/22/19 23:42,"700 Sunset St, Dallas, TX 75001" -170026,USB-C Charging Cable,1,11.95,03/24/19 23:37,"551 Willow St, Los Angeles, CA 90001" -170027,LG Washing Machine,1,600.0,03/26/19 09:47,"924 Adams St, Los Angeles, CA 90001" -170027,Apple Airpods Headphones,1,150,03/26/19 09:47,"924 Adams St, Los Angeles, CA 90001" -170028,27in FHD Monitor,1,149.99,03/16/19 10:33,"689 Madison St, New York City, NY 10001" -170029,Apple Airpods Headphones,1,150,03/31/19 21:47,"629 13th St, New York City, NY 10001" -170030,AA Batteries (4-pack),1,3.84,03/12/19 07:35,"168 North St, San Francisco, CA 94016" -170031,USB-C Charging Cable,1,11.95,03/16/19 20:09,"65 Madison St, Los Angeles, CA 90001" -170032,USB-C Charging Cable,1,11.95,03/12/19 15:55,"132 Chestnut St, San Francisco, CA 94016" -170033,USB-C Charging Cable,1,11.95,03/08/19 18:39,"949 Dogwood St, Austin, TX 73301" -170034,Lightning Charging Cable,1,14.95,03/04/19 06:32,"18 Hill St, San Francisco, CA 94016" -170035,34in Ultrawide Monitor,1,379.99,03/09/19 15:16,"43 Meadow St, Los Angeles, CA 90001" -170036,Vareebadd Phone,1,400,03/28/19 09:01,"342 Maple St, Boston, MA 02215" -170036,USB-C Charging Cable,1,11.95,03/28/19 09:01,"342 Maple St, Boston, MA 02215" -170037,Lightning Charging Cable,1,14.95,03/10/19 16:54,"448 14th St, Los Angeles, CA 90001" -170038,AAA Batteries (4-pack),1,2.99,03/31/19 19:41,"46 Meadow St, San Francisco, CA 94016" -170039,34in Ultrawide Monitor,1,379.99,03/26/19 12:22,"727 Washington St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -170040,Bose SoundSport Headphones,1,99.99,03/12/19 16:02,"614 7th St, San Francisco, CA 94016" -170041,USB-C Charging Cable,1,11.95,03/25/19 17:31,"274 7th St, New York City, NY 10001" -170042,Macbook Pro Laptop,1,1700,03/13/19 13:02,"190 5th St, New York City, NY 10001" -170043,Apple Airpods Headphones,1,150,03/21/19 12:37,"658 Cedar St, Boston, MA 02215" -170044,34in Ultrawide Monitor,1,379.99,03/17/19 20:19,"559 Ridge St, Portland, OR 97035" -170045,AA Batteries (4-pack),1,3.84,03/31/19 00:23,"405 Johnson St, Boston, MA 02215" -170046,AAA Batteries (4-pack),4,2.99,03/22/19 17:25,"182 Sunset St, Boston, MA 02215" -170047,Apple Airpods Headphones,1,150,03/21/19 02:08,"402 Lakeview St, San Francisco, CA 94016" -170048,AAA Batteries (4-pack),1,2.99,03/26/19 19:16,"513 13th St, Seattle, WA 98101" -170049,AAA Batteries (4-pack),1,2.99,03/15/19 13:07,"49 2nd St, San Francisco, CA 94016" -170050,AAA Batteries (4-pack),2,2.99,03/24/19 02:21,"680 12th St, San Francisco, CA 94016" -170051,Bose SoundSport Headphones,1,99.99,03/01/19 11:57,"996 Pine St, Boston, MA 02215" -170052,Apple Airpods Headphones,1,150,03/08/19 13:41,"812 8th St, Seattle, WA 98101" -170053,AAA Batteries (4-pack),1,2.99,03/27/19 08:54,"209 Cedar St, Portland, OR 97035" -,,,,, -170054,AAA Batteries (4-pack),1,2.99,03/07/19 17:02,"998 Meadow St, Austin, TX 73301" -170055,AAA Batteries (4-pack),1,2.99,03/22/19 19:48,"761 North St, Boston, MA 02215" -170056,Lightning Charging Cable,1,14.95,03/17/19 23:48,"453 Lincoln St, Atlanta, GA 30301" -170057,AAA Batteries (4-pack),3,2.99,03/05/19 07:42,"899 12th St, Los Angeles, CA 90001" -170058,27in 4K Gaming Monitor,1,389.99,03/05/19 17:41,"475 Wilson St, Boston, MA 02215" -170059,Lightning Charging Cable,1,14.95,03/05/19 08:24,"416 Lakeview St, Los Angeles, CA 90001" -170060,Lightning Charging Cable,1,14.95,03/12/19 16:43,"76 Sunset St, Austin, TX 73301" -170061,AA Batteries (4-pack),1,3.84,03/17/19 18:18,"10 1st St, Boston, MA 02215" -170062,AAA Batteries (4-pack),2,2.99,03/28/19 16:37,"361 Wilson St, New York City, NY 10001" -170063,AA Batteries (4-pack),1,3.84,03/06/19 10:56,"672 West St, Seattle, WA 98101" -170064,AAA Batteries (4-pack),1,2.99,03/13/19 21:20,"367 2nd St, Atlanta, GA 30301" -170065,ThinkPad Laptop,1,999.99,03/31/19 09:33,"319 Dogwood St, San Francisco, CA 94016" -170066,USB-C Charging Cable,1,11.95,03/29/19 10:20,"926 7th St, New York City, NY 10001" -170067,AAA Batteries (4-pack),2,2.99,03/15/19 12:59,"780 West St, Los Angeles, CA 90001" -170068,AAA Batteries (4-pack),1,2.99,03/09/19 19:49,"257 Hickory St, San Francisco, CA 94016" -170069,iPhone,1,700,03/17/19 11:09,"659 River St, Atlanta, GA 30301" -170069,Apple Airpods Headphones,1,150,03/17/19 11:09,"659 River St, Atlanta, GA 30301" -170070,iPhone,1,700,03/02/19 12:11,"623 South St, Los Angeles, CA 90001" -170071,Wired Headphones,1,11.99,03/17/19 00:12,"757 4th St, New York City, NY 10001" -170072,27in 4K Gaming Monitor,1,389.99,03/20/19 05:13,"156 Cedar St, Boston, MA 02215" -170073,AA Batteries (4-pack),2,3.84,03/24/19 18:09,"818 Walnut St, New York City, NY 10001" -170074,Lightning Charging Cable,1,14.95,03/01/19 18:05,"307 5th St, Dallas, TX 75001" -170075,Lightning Charging Cable,1,14.95,03/09/19 18:40,"398 Ridge St, New York City, NY 10001" -170076,iPhone,1,700,03/25/19 20:36,"647 4th St, San Francisco, CA 94016" -170077,AAA Batteries (4-pack),1,2.99,03/04/19 17:55,"59 Center St, San Francisco, CA 94016" -170078,Apple Airpods Headphones,1,150,03/27/19 12:51,"269 Madison St, San Francisco, CA 94016" -170079,Wired Headphones,1,11.99,03/21/19 19:19,"351 Forest St, Boston, MA 02215" -170080,iPhone,1,700,03/20/19 16:05,"386 South St, Los Angeles, CA 90001" -170081,AAA Batteries (4-pack),2,2.99,03/23/19 06:51,"956 5th St, Los Angeles, CA 90001" -170082,Bose SoundSport Headphones,1,99.99,03/10/19 18:43,"958 14th St, New York City, NY 10001" -170082,Google Phone,1,600,03/10/19 18:43,"958 14th St, New York City, NY 10001" -170083,Lightning Charging Cable,1,14.95,03/03/19 19:59,"811 1st St, New York City, NY 10001" -170084,Wired Headphones,2,11.99,03/16/19 10:23,"666 11th St, Austin, TX 73301" -170085,27in 4K Gaming Monitor,1,389.99,03/12/19 14:21,"485 14th St, Los Angeles, CA 90001" -170086,27in FHD Monitor,1,149.99,03/02/19 18:11,"884 Meadow St, Los Angeles, CA 90001" -170087,iPhone,1,700,03/25/19 20:52,"22 5th St, Boston, MA 02215" -170088,27in 4K Gaming Monitor,1,389.99,03/23/19 10:27,"442 Adams St, Dallas, TX 75001" -170089,USB-C Charging Cable,2,11.95,03/03/19 10:46,"538 13th St, Dallas, TX 75001" -170090,27in 4K Gaming Monitor,1,389.99,03/04/19 21:27,"787 Chestnut St, Los Angeles, CA 90001" -170091,AA Batteries (4-pack),1,3.84,03/23/19 09:26,"580 North St, Portland, OR 97035" -170092,Lightning Charging Cable,1,14.95,03/19/19 10:37,"610 Main St, Austin, TX 73301" -170093,AAA Batteries (4-pack),1,2.99,03/04/19 12:15,"217 Dogwood St, San Francisco, CA 94016" -170094,USB-C Charging Cable,1,11.95,03/13/19 22:47,"823 Walnut St, New York City, NY 10001" -170095,Bose SoundSport Headphones,1,99.99,03/22/19 02:13,"395 River St, San Francisco, CA 94016" -170096,Wired Headphones,2,11.99,03/29/19 11:37,"542 Washington St, San Francisco, CA 94016" -170097,Google Phone,1,600,03/04/19 18:50,"872 1st St, Dallas, TX 75001" -170098,Apple Airpods Headphones,1,150,03/22/19 12:46,"449 11th St, Dallas, TX 75001" -170099,ThinkPad Laptop,1,999.99,03/25/19 18:06,"82 1st St, Austin, TX 73301" -170100,AAA Batteries (4-pack),1,2.99,03/07/19 23:52,"401 12th St, Seattle, WA 98101" -170101,Wired Headphones,1,11.99,03/02/19 19:09,"783 8th St, New York City, NY 10001" -170102,USB-C Charging Cable,2,11.95,03/20/19 22:26,"353 West St, San Francisco, CA 94016" -170103,Lightning Charging Cable,1,14.95,03/11/19 21:17,"409 Ridge St, Portland, OR 97035" -170104,ThinkPad Laptop,1,999.99,03/16/19 06:27,"77 14th St, San Francisco, CA 94016" -170105,Flatscreen TV,1,300,03/15/19 20:43,"662 Forest St, San Francisco, CA 94016" -170106,Vareebadd Phone,1,400,03/11/19 18:54,"992 Center St, Los Angeles, CA 90001" -170107,AA Batteries (4-pack),1,3.84,03/05/19 18:26,"431 Jackson St, San Francisco, CA 94016" -170108,Lightning Charging Cable,1,14.95,03/06/19 20:49,"863 2nd St, Boston, MA 02215" -170109,Apple Airpods Headphones,1,150,03/16/19 13:35,"462 Meadow St, Seattle, WA 98101" -170109,Apple Airpods Headphones,1,150,03/16/19 13:35,"462 Meadow St, Seattle, WA 98101" -170110,20in Monitor,1,109.99,03/27/19 13:18,"739 Center St, San Francisco, CA 94016" -170111,AA Batteries (4-pack),1,3.84,03/22/19 00:59,"160 Cherry St, San Francisco, CA 94016" -170112,USB-C Charging Cable,1,11.95,03/04/19 10:52,"185 Main St, New York City, NY 10001" -170113,Apple Airpods Headphones,1,150,03/08/19 14:19,"952 Elm St, New York City, NY 10001" -170114,AA Batteries (4-pack),1,3.84,03/15/19 22:05,"424 5th St, Portland, OR 97035" -170115,Google Phone,1,600,03/12/19 11:35,"636 Center St, Boston, MA 02215" -170116,USB-C Charging Cable,1,11.95,03/05/19 17:10,"555 River St, Portland, OR 97035" -170117,Apple Airpods Headphones,1,150,03/28/19 10:59,"856 13th St, Portland, OR 97035" -170118,USB-C Charging Cable,1,11.95,03/04/19 19:43,"265 Lincoln St, Los Angeles, CA 90001" -170119,Wired Headphones,1,11.99,03/09/19 23:00,"199 Lincoln St, Atlanta, GA 30301" -170120,Bose SoundSport Headphones,1,99.99,03/29/19 21:18,"113 Lincoln St, Los Angeles, CA 90001" -170121,Lightning Charging Cable,1,14.95,03/13/19 17:18,"628 2nd St, New York City, NY 10001" -170122,ThinkPad Laptop,1,999.99,03/19/19 09:10,"496 Jefferson St, Dallas, TX 75001" -170123,Bose SoundSport Headphones,1,99.99,03/05/19 12:27,"869 Jefferson St, New York City, NY 10001" -170124,Lightning Charging Cable,1,14.95,03/14/19 12:51,"986 Cedar St, San Francisco, CA 94016" -170125,iPhone,1,700,03/02/19 12:36,"814 6th St, Dallas, TX 75001" -170126,27in FHD Monitor,1,149.99,03/10/19 15:13,"569 7th St, Los Angeles, CA 90001" -170127,Bose SoundSport Headphones,1,99.99,03/10/19 22:33,"609 12th St, Los Angeles, CA 90001" -170128,Wired Headphones,1,11.99,03/29/19 19:33,"352 Cherry St, San Francisco, CA 94016" -170129,Bose SoundSport Headphones,1,99.99,03/12/19 00:36,"58 Lakeview St, Portland, OR 97035" -170130,ThinkPad Laptop,1,999.99,03/15/19 02:15,"121 Cherry St, San Francisco, CA 94016" -170131,34in Ultrawide Monitor,1,379.99,03/29/19 15:21,"860 4th St, Los Angeles, CA 90001" -170132,Apple Airpods Headphones,1,150,03/26/19 20:24,"329 9th St, Atlanta, GA 30301" -170133,iPhone,1,700,03/09/19 09:50,"815 Chestnut St, Atlanta, GA 30301" -170134,AAA Batteries (4-pack),2,2.99,03/22/19 17:42,"310 Main St, Dallas, TX 75001" -170135,Flatscreen TV,1,300,03/26/19 12:23,"607 Hickory St, Los Angeles, CA 90001" -170136,Wired Headphones,1,11.99,03/02/19 13:34,"67 2nd St, San Francisco, CA 94016" -170137,Bose SoundSport Headphones,1,99.99,03/22/19 13:05,"275 Jefferson St, San Francisco, CA 94016" -170138,27in 4K Gaming Monitor,1,389.99,03/07/19 11:41,"728 Forest St, Atlanta, GA 30301" -170138,34in Ultrawide Monitor,1,379.99,03/07/19 11:41,"728 Forest St, Atlanta, GA 30301" -170139,Wired Headphones,1,11.99,03/07/19 11:16,"328 1st St, San Francisco, CA 94016" -170140,AAA Batteries (4-pack),1,2.99,03/07/19 23:50,"904 2nd St, Dallas, TX 75001" -170141,Wired Headphones,1,11.99,03/13/19 20:58,"190 Wilson St, San Francisco, CA 94016" -170142,AA Batteries (4-pack),1,3.84,03/28/19 14:56,"173 Pine St, Dallas, TX 75001" -170143,Lightning Charging Cable,1,14.95,03/15/19 11:07,"228 Lake St, Los Angeles, CA 90001" -170144,Lightning Charging Cable,1,14.95,03/26/19 13:08,"230 Center St, San Francisco, CA 94016" -170145,AAA Batteries (4-pack),1,2.99,03/03/19 08:42,"626 River St, San Francisco, CA 94016" -170146,Bose SoundSport Headphones,1,99.99,03/19/19 23:04,"861 River St, San Francisco, CA 94016" -170147,AA Batteries (4-pack),1,3.84,03/13/19 15:27,"317 Lincoln St, Los Angeles, CA 90001" -170148,USB-C Charging Cable,1,11.95,03/09/19 11:29,"706 West St, San Francisco, CA 94016" -170149,iPhone,1,700,03/12/19 18:16,"399 Jackson St, Boston, MA 02215" -170150,AA Batteries (4-pack),1,3.84,03/15/19 16:12,"112 Church St, New York City, NY 10001" -170151,USB-C Charging Cable,1,11.95,03/15/19 20:13,"455 Wilson St, Portland, OR 97035" -170152,Lightning Charging Cable,1,14.95,03/13/19 12:27,"538 Washington St, San Francisco, CA 94016" -170153,34in Ultrawide Monitor,1,379.99,03/23/19 12:47,"42 Washington St, New York City, NY 10001" -170154,Apple Airpods Headphones,1,150,03/21/19 13:16,"936 11th St, Dallas, TX 75001" -170155,Bose SoundSport Headphones,1,99.99,03/22/19 16:47,"60 River St, Boston, MA 02215" -170156,AA Batteries (4-pack),1,3.84,03/09/19 11:40,"244 13th St, Seattle, WA 98101" -170156,USB-C Charging Cable,1,11.95,03/09/19 11:40,"244 13th St, Seattle, WA 98101" -170157,USB-C Charging Cable,1,11.95,03/01/19 17:50,"824 Forest St, Atlanta, GA 30301" -170158,Lightning Charging Cable,1,14.95,03/18/19 20:30,"126 Elm St, Austin, TX 73301" -170159,USB-C Charging Cable,1,11.95,03/17/19 19:24,"813 Johnson St, San Francisco, CA 94016" -170160,USB-C Charging Cable,1,11.95,03/05/19 17:31,"817 9th St, Los Angeles, CA 90001" -170161,AA Batteries (4-pack),1,3.84,03/20/19 12:45,"912 Lake St, Austin, TX 73301" -170162,AAA Batteries (4-pack),1,2.99,03/19/19 18:12,"560 Lakeview St, Seattle, WA 98101" -170163,20in Monitor,1,109.99,03/09/19 14:23,"31 Ridge St, Los Angeles, CA 90001" -170164,27in FHD Monitor,1,149.99,03/28/19 10:14,"218 Meadow St, Dallas, TX 75001" -170165,Google Phone,1,600,03/23/19 17:47,"370 Ridge St, Boston, MA 02215" -170166,AA Batteries (4-pack),2,3.84,03/12/19 10:41,"967 River St, Seattle, WA 98101" -170167,27in 4K Gaming Monitor,1,389.99,03/01/19 17:55,"104 9th St, New York City, NY 10001" -170168,USB-C Charging Cable,1,11.95,03/09/19 16:58,"923 13th St, Los Angeles, CA 90001" -170168,USB-C Charging Cable,1,11.95,03/09/19 16:58,"923 13th St, Los Angeles, CA 90001" -170169,34in Ultrawide Monitor,1,379.99,03/17/19 22:04,"482 Chestnut St, Atlanta, GA 30301" -170170,Apple Airpods Headphones,1,150,03/22/19 23:32,"113 Lakeview St, Austin, TX 73301" -170171,AA Batteries (4-pack),1,3.84,03/07/19 22:40,"227 14th St, Boston, MA 02215" -170172,Bose SoundSport Headphones,1,99.99,03/01/19 14:12,"776 6th St, San Francisco, CA 94016" -170173,34in Ultrawide Monitor,1,379.99,03/20/19 23:21,"285 Hickory St, Seattle, WA 98101" -170174,Lightning Charging Cable,1,14.95,03/09/19 13:27,"654 11th St, New York City, NY 10001" -170175,Bose SoundSport Headphones,1,99.99,03/27/19 21:38,"703 14th St, San Francisco, CA 94016" -170176,Flatscreen TV,1,300,03/02/19 21:33,"948 Forest St, New York City, NY 10001" -170177,AAA Batteries (4-pack),1,2.99,03/26/19 23:16,"501 Hickory St, Dallas, TX 75001" -170178,USB-C Charging Cable,1,11.95,03/13/19 18:37,"251 10th St, Boston, MA 02215" -170179,AAA Batteries (4-pack),1,2.99,03/17/19 14:23,"418 Park St, Austin, TX 73301" -170180,AAA Batteries (4-pack),1,2.99,03/23/19 18:43,"234 6th St, New York City, NY 10001" -170181,Apple Airpods Headphones,1,150,03/18/19 13:45,"354 4th St, New York City, NY 10001" -170182,Apple Airpods Headphones,1,150,03/10/19 21:27,"332 9th St, Austin, TX 73301" -170183,Bose SoundSport Headphones,1,99.99,03/06/19 17:11,"605 Washington St, San Francisco, CA 94016" -170184,Apple Airpods Headphones,1,150,03/18/19 18:25,"498 Meadow St, Los Angeles, CA 90001" -170185,USB-C Charging Cable,1,11.95,03/08/19 13:00,"774 Hill St, San Francisco, CA 94016" -170186,Apple Airpods Headphones,1,150,03/02/19 20:49,"532 7th St, Atlanta, GA 30301" -170187,ThinkPad Laptop,1,999.99,03/03/19 13:06,"315 Hickory St, Boston, MA 02215" -170188,20in Monitor,1,109.99,03/14/19 10:40,"466 Ridge St, Portland, OR 97035" -170189,AA Batteries (4-pack),1,3.84,03/03/19 23:28,"494 North St, Portland, OR 97035" -170190,ThinkPad Laptop,1,999.99,03/24/19 13:36,"24 13th St, Atlanta, GA 30301" -170191,AA Batteries (4-pack),1,3.84,03/11/19 21:42,"916 Elm St, Los Angeles, CA 90001" -170192,AA Batteries (4-pack),1,3.84,03/27/19 13:23,"448 Cedar St, Los Angeles, CA 90001" -170193,AAA Batteries (4-pack),1,2.99,03/17/19 11:59,"937 Walnut St, New York City, NY 10001" -170194,Apple Airpods Headphones,1,150,03/30/19 16:22,"178 4th St, Austin, TX 73301" -170195,27in 4K Gaming Monitor,1,389.99,03/06/19 14:21,"194 Sunset St, New York City, NY 10001" -170196,LG Washing Machine,1,600.0,03/23/19 17:20,"67 Church St, Seattle, WA 98101" -170196,AAA Batteries (4-pack),1,2.99,03/23/19 17:20,"67 Church St, Seattle, WA 98101" -170197,Apple Airpods Headphones,1,150,03/07/19 14:00,"87 Hickory St, Portland, OR 97035" -170198,ThinkPad Laptop,1,999.99,03/01/19 08:28,"29 Ridge St, San Francisco, CA 94016" -170199,Lightning Charging Cable,1,14.95,03/16/19 13:46,"535 Maple St, Seattle, WA 98101" -170200,Bose SoundSport Headphones,1,99.99,03/03/19 08:40,"217 4th St, Atlanta, GA 30301" -170201,AAA Batteries (4-pack),1,2.99,03/10/19 02:43,"659 1st St, New York City, NY 10001" -170202,34in Ultrawide Monitor,1,379.99,03/20/19 18:32,"58 Pine St, Seattle, WA 98101" -170203,USB-C Charging Cable,1,11.95,03/17/19 17:05,"913 West St, Los Angeles, CA 90001" -170204,Wired Headphones,1,11.99,03/22/19 23:14,"854 Madison St, Seattle, WA 98101" -170205,Wired Headphones,1,11.99,03/27/19 15:10,"487 9th St, New York City, NY 10001" -170206,Wired Headphones,1,11.99,03/15/19 17:12,"910 2nd St, Seattle, WA 98101" -170207,iPhone,1,700,03/23/19 13:19,"701 Sunset St, Dallas, TX 75001" -170207,Lightning Charging Cable,1,14.95,03/23/19 13:19,"701 Sunset St, Dallas, TX 75001" -170208,Lightning Charging Cable,1,14.95,03/09/19 06:18,"842 South St, San Francisco, CA 94016" -170209,Bose SoundSport Headphones,1,99.99,03/31/19 20:02,"628 Maple St, Atlanta, GA 30301" -170210,Vareebadd Phone,1,400,03/23/19 23:48,"761 Pine St, Boston, MA 02215" -170211,Lightning Charging Cable,1,14.95,03/27/19 16:42,"576 Ridge St, San Francisco, CA 94016" -170212,Wired Headphones,1,11.99,03/17/19 06:13,"506 Forest St, San Francisco, CA 94016" -170213,USB-C Charging Cable,1,11.95,03/21/19 19:48,"548 9th St, New York City, NY 10001" -170214,AAA Batteries (4-pack),1,2.99,03/28/19 13:54,"352 1st St, Los Angeles, CA 90001" -170215,Google Phone,1,600,03/04/19 10:57,"3 Cherry St, San Francisco, CA 94016" -170215,USB-C Charging Cable,2,11.95,03/04/19 10:57,"3 Cherry St, San Francisco, CA 94016" -170216,27in 4K Gaming Monitor,1,389.99,03/16/19 20:21,"68 Forest St, San Francisco, CA 94016" -170216,Lightning Charging Cable,1,14.95,03/16/19 20:21,"68 Forest St, San Francisco, CA 94016" -170217,34in Ultrawide Monitor,1,379.99,03/13/19 14:12,"795 14th St, New York City, NY 10001" -170218,USB-C Charging Cable,1,11.95,03/25/19 17:30,"527 Ridge St, Boston, MA 02215" -170219,Wired Headphones,1,11.99,03/06/19 19:26,"814 Washington St, New York City, NY 10001" -170220,Apple Airpods Headphones,1,150,03/22/19 09:40,"283 Center St, San Francisco, CA 94016" -170221,USB-C Charging Cable,1,11.95,03/18/19 07:57,"840 West St, Los Angeles, CA 90001" -170222,Lightning Charging Cable,1,14.95,03/13/19 16:37,"172 Adams St, Los Angeles, CA 90001" -170223,AA Batteries (4-pack),1,3.84,03/11/19 12:19,"936 Johnson St, New York City, NY 10001" -170224,Apple Airpods Headphones,1,150,03/07/19 19:12,"303 Hill St, New York City, NY 10001" -170225,AA Batteries (4-pack),2,3.84,03/14/19 10:11,"923 Jefferson St, New York City, NY 10001" -170226,USB-C Charging Cable,1,11.95,03/08/19 23:41,"933 Jackson St, San Francisco, CA 94016" -170227,AA Batteries (4-pack),1,3.84,03/19/19 19:32,"193 River St, Atlanta, GA 30301" -170228,Apple Airpods Headphones,1,150,03/13/19 22:12,"921 Ridge St, San Francisco, CA 94016" -170229,AAA Batteries (4-pack),2,2.99,03/23/19 21:47,"345 12th St, Atlanta, GA 30301" -170230,Flatscreen TV,1,300,03/27/19 13:19,"405 Lake St, New York City, NY 10001" -170231,AAA Batteries (4-pack),1,2.99,03/23/19 13:17,"547 12th St, Los Angeles, CA 90001" -170232,Vareebadd Phone,1,400,03/30/19 11:47,"899 14th St, New York City, NY 10001" -170233,USB-C Charging Cable,1,11.95,03/12/19 23:45,"882 Walnut St, San Francisco, CA 94016" -170234,Bose SoundSport Headphones,1,99.99,03/02/19 18:01,"921 7th St, Los Angeles, CA 90001" -170235,27in FHD Monitor,1,149.99,03/09/19 19:53,"111 Johnson St, Boston, MA 02215" -170236,USB-C Charging Cable,1,11.95,03/06/19 12:44,"288 Sunset St, New York City, NY 10001" -170237,27in 4K Gaming Monitor,1,389.99,03/31/19 10:09,"677 5th St, Los Angeles, CA 90001" -170238,Apple Airpods Headphones,1,150,03/15/19 21:23,"538 North St, New York City, NY 10001" -170239,AA Batteries (4-pack),1,3.84,03/30/19 23:37,"553 Walnut St, Portland, OR 97035" -170240,Wired Headphones,1,11.99,03/19/19 10:33,"522 Main St, San Francisco, CA 94016" -170241,iPhone,1,700,03/12/19 17:32,"581 Adams St, San Francisco, CA 94016" -170241,Lightning Charging Cable,1,14.95,03/12/19 17:32,"581 Adams St, San Francisco, CA 94016" -170241,Wired Headphones,1,11.99,03/12/19 17:32,"581 Adams St, San Francisco, CA 94016" -170242,Apple Airpods Headphones,1,150,03/25/19 18:48,"383 Hickory St, San Francisco, CA 94016" -170243,Lightning Charging Cable,1,14.95,03/15/19 01:24,"622 Wilson St, Atlanta, GA 30301" -170244,Wired Headphones,1,11.99,03/05/19 05:03,"21 Dogwood St, Atlanta, GA 30301" -170245,USB-C Charging Cable,1,11.95,03/15/19 08:53,"519 River St, Seattle, WA 98101" -170246,USB-C Charging Cable,1,11.95,03/03/19 20:04,"615 Main St, San Francisco, CA 94016" -170247,Google Phone,1,600,03/14/19 19:30,"588 Church St, San Francisco, CA 94016" -170247,USB-C Charging Cable,1,11.95,03/14/19 19:30,"588 Church St, San Francisco, CA 94016" -170248,Wired Headphones,2,11.99,03/28/19 10:59,"213 9th St, New York City, NY 10001" -170249,Bose SoundSport Headphones,1,99.99,03/16/19 10:28,"899 Washington St, Atlanta, GA 30301" -170250,AA Batteries (4-pack),1,3.84,03/21/19 20:17,"253 Lake St, Portland, OR 97035" -170251,Bose SoundSport Headphones,1,99.99,03/04/19 15:21,"502 1st St, Los Angeles, CA 90001" -170252,USB-C Charging Cable,1,11.95,03/10/19 08:39,"365 Park St, New York City, NY 10001" -170253,USB-C Charging Cable,1,11.95,03/08/19 18:59,"862 West St, Boston, MA 02215" -170254,27in FHD Monitor,1,149.99,03/08/19 11:00,"567 6th St, Los Angeles, CA 90001" -170255,iPhone,1,700,03/23/19 23:47,"117 1st St, Boston, MA 02215" -170256,USB-C Charging Cable,1,11.95,03/30/19 10:08,"818 Main St, New York City, NY 10001" -170257,AA Batteries (4-pack),1,3.84,03/30/19 22:20,"511 Cherry St, San Francisco, CA 94016" -170258,Google Phone,1,600,03/07/19 12:46,"248 4th St, Boston, MA 02215" -170259,Vareebadd Phone,1,400,03/06/19 08:57,"893 Spruce St, Dallas, TX 75001" -170260,Macbook Pro Laptop,1,1700,03/02/19 07:16,"181 Johnson St, San Francisco, CA 94016" -170261,Lightning Charging Cable,1,14.95,03/12/19 12:40,"313 South St, Dallas, TX 75001" -170262,Bose SoundSport Headphones,1,99.99,03/07/19 16:05,"141 South St, Los Angeles, CA 90001" -170263,AAA Batteries (4-pack),1,2.99,03/11/19 14:47,"941 Johnson St, Portland, OR 97035" -170264,AA Batteries (4-pack),3,3.84,03/03/19 15:31,"437 Center St, San Francisco, CA 94016" -170265,USB-C Charging Cable,1,11.95,03/31/19 09:45,"638 9th St, San Francisco, CA 94016" -170266,AA Batteries (4-pack),1,3.84,03/16/19 19:29,"281 7th St, Portland, OR 97035" -170267,USB-C Charging Cable,1,11.95,03/08/19 09:51,"633 Lake St, Seattle, WA 98101" -170268,27in 4K Gaming Monitor,1,389.99,03/02/19 13:10,"877 Adams St, San Francisco, CA 94016" -170269,Apple Airpods Headphones,1,150,03/06/19 20:44,"967 5th St, Boston, MA 02215" -170270,Google Phone,1,600,03/19/19 07:21,"645 7th St, New York City, NY 10001" -170271,iPhone,1,700,03/16/19 09:55,"221 Hickory St, Boston, MA 02215" -170272,ThinkPad Laptop,1,999.99,03/03/19 11:19,"790 Church St, Los Angeles, CA 90001" -170273,Wired Headphones,2,11.99,03/07/19 16:33,"175 Maple St, San Francisco, CA 94016" -170274,AAA Batteries (4-pack),3,2.99,03/01/19 16:48,"337 South St, Austin, TX 73301" -170275,Wired Headphones,1,11.99,03/13/19 13:58,"206 14th St, Austin, TX 73301" -170276,AAA Batteries (4-pack),1,2.99,03/17/19 14:37,"520 Ridge St, San Francisco, CA 94016" -170277,Apple Airpods Headphones,1,150,03/28/19 13:38,"316 4th St, Los Angeles, CA 90001" -170278,iPhone,1,700,03/08/19 22:36,"589 Main St, New York City, NY 10001" -170278,Lightning Charging Cable,1,14.95,03/08/19 22:36,"589 Main St, New York City, NY 10001" -170279,AA Batteries (4-pack),1,3.84,03/26/19 22:57,"591 11th St, New York City, NY 10001" -170280,Lightning Charging Cable,1,14.95,03/14/19 20:32,"311 Lakeview St, Dallas, TX 75001" -170281,AAA Batteries (4-pack),1,2.99,03/21/19 19:16,"164 Johnson St, San Francisco, CA 94016" -170282,Bose SoundSport Headphones,1,99.99,03/30/19 22:49,"817 Church St, San Francisco, CA 94016" -170283,27in 4K Gaming Monitor,1,389.99,03/09/19 18:53,"292 Highland St, Boston, MA 02215" -170284,27in FHD Monitor,1,149.99,03/08/19 21:55,"246 Johnson St, Dallas, TX 75001" -170285,Bose SoundSport Headphones,1,99.99,03/13/19 16:32,"575 North St, Los Angeles, CA 90001" -170286,AAA Batteries (4-pack),1,2.99,03/11/19 15:17,"859 4th St, San Francisco, CA 94016" -170287,iPhone,2,700,03/30/19 14:33,"408 Madison St, Portland, OR 97035" -170288,Lightning Charging Cable,1,14.95,03/25/19 22:50,"379 Sunset St, San Francisco, CA 94016" -170289,AA Batteries (4-pack),1,3.84,03/06/19 19:11,"83 Ridge St, New York City, NY 10001" -170290,Bose SoundSport Headphones,1,99.99,03/13/19 16:05,"910 Forest St, San Francisco, CA 94016" -170291,Apple Airpods Headphones,1,150,03/30/19 19:43,"405 Jackson St, Boston, MA 02215" -170292,Bose SoundSport Headphones,2,99.99,03/30/19 13:28,"230 11th St, New York City, NY 10001" -170293,Macbook Pro Laptop,1,1700,03/15/19 00:08,"887 Wilson St, Portland, OR 97035" -170294,Apple Airpods Headphones,1,150,03/06/19 18:20,"24 Hill St, Los Angeles, CA 90001" -170295,Wired Headphones,1,11.99,03/09/19 08:35,"218 Main St, San Francisco, CA 94016" -170296,ThinkPad Laptop,1,999.99,03/02/19 08:41,"590 Lake St, San Francisco, CA 94016" -170297,AA Batteries (4-pack),1,3.84,03/16/19 17:30,"481 Jefferson St, New York City, NY 10001" -170298,27in 4K Gaming Monitor,1,389.99,03/27/19 09:20,"906 9th St, New York City, NY 10001" -170299,AA Batteries (4-pack),1,3.84,03/23/19 08:59,"448 Wilson St, Boston, MA 02215" -170300,Apple Airpods Headphones,1,150,03/18/19 15:54,"138 River St, Dallas, TX 75001" -170301,AAA Batteries (4-pack),1,2.99,03/20/19 14:16,"996 Forest St, New York City, NY 10001" -170302,AA Batteries (4-pack),1,3.84,03/01/19 16:31,"984 13th St, Los Angeles, CA 90001" -170303,Wired Headphones,1,11.99,03/30/19 19:53,"177 Elm St, Austin, TX 73301" -170304,Bose SoundSport Headphones,1,99.99,03/05/19 17:57,"934 Chestnut St, New York City, NY 10001" -170305,USB-C Charging Cable,2,11.95,03/02/19 10:07,"142 Sunset St, Austin, TX 73301" -170306,Apple Airpods Headphones,1,150,03/09/19 12:33,"726 Center St, Los Angeles, CA 90001" -170307,iPhone,1,700,03/05/19 20:22,"179 Hickory St, Los Angeles, CA 90001" -170308,Wired Headphones,2,11.99,03/30/19 08:53,"946 14th St, San Francisco, CA 94016" -170309,27in FHD Monitor,1,149.99,03/11/19 15:34,"879 Sunset St, San Francisco, CA 94016" -170310,Lightning Charging Cable,1,14.95,03/26/19 18:03,"308 Meadow St, Los Angeles, CA 90001" -170311,AA Batteries (4-pack),1,3.84,03/24/19 08:03,"141 Jackson St, San Francisco, CA 94016" -170312,Apple Airpods Headphones,1,150,03/24/19 14:51,"348 Sunset St, Dallas, TX 75001" -170313,AAA Batteries (4-pack),1,2.99,03/31/19 20:42,"361 Walnut St, San Francisco, CA 94016" -170314,34in Ultrawide Monitor,1,379.99,03/28/19 20:59,"768 Jackson St, San Francisco, CA 94016" -170315,Lightning Charging Cable,1,14.95,03/28/19 14:29,"554 Church St, San Francisco, CA 94016" -170316,AA Batteries (4-pack),1,3.84,03/25/19 17:15,"713 Spruce St, San Francisco, CA 94016" -170317,Lightning Charging Cable,1,14.95,03/20/19 09:47,"933 Sunset St, New York City, NY 10001" -170318,Apple Airpods Headphones,1,150,03/11/19 15:47,"481 9th St, Los Angeles, CA 90001" -170319,USB-C Charging Cable,1,11.95,03/30/19 13:13,"626 13th St, Los Angeles, CA 90001" -170319,Google Phone,1,600,03/30/19 13:13,"626 13th St, Los Angeles, CA 90001" -170320,Lightning Charging Cable,1,14.95,03/02/19 17:39,"364 Adams St, San Francisco, CA 94016" -170321,Macbook Pro Laptop,1,1700,03/23/19 10:17,"892 Highland St, Dallas, TX 75001" -170322,Bose SoundSport Headphones,1,99.99,03/05/19 19:57,"701 Jackson St, Los Angeles, CA 90001" -170323,Bose SoundSport Headphones,1,99.99,03/04/19 11:41,"212 Dogwood St, Portland, OR 97035" -170324,iPhone,1,700,03/01/19 19:53,"275 Willow St, Atlanta, GA 30301" -170325,Lightning Charging Cable,1,14.95,03/09/19 20:27,"500 Lincoln St, Seattle, WA 98101" -170326,USB-C Charging Cable,1,11.95,03/24/19 23:38,"969 Meadow St, Los Angeles, CA 90001" -170327,34in Ultrawide Monitor,1,379.99,03/08/19 17:08,"745 10th St, Boston, MA 02215" -170328,27in FHD Monitor,1,149.99,03/01/19 16:26,"292 River St, Los Angeles, CA 90001" -170329,AAA Batteries (4-pack),1,2.99,03/02/19 09:08,"69 Park St, Boston, MA 02215" -170330,27in FHD Monitor,1,149.99,03/17/19 06:06,"498 Spruce St, Seattle, WA 98101" -170331,Lightning Charging Cable,1,14.95,03/27/19 21:09,"296 13th St, San Francisco, CA 94016" -170332,Bose SoundSport Headphones,1,99.99,03/23/19 14:13,"659 1st St, San Francisco, CA 94016" -170333,27in FHD Monitor,1,149.99,03/19/19 10:39,"811 Forest St, Atlanta, GA 30301" -170334,Bose SoundSport Headphones,1,99.99,03/20/19 12:58,"604 Hickory St, Boston, MA 02215" -170335,AA Batteries (4-pack),1,3.84,03/12/19 12:16,"937 Meadow St, Dallas, TX 75001" -170336,Macbook Pro Laptop,1,1700,03/08/19 09:06,"111 Johnson St, Boston, MA 02215" -170337,USB-C Charging Cable,1,11.95,03/18/19 16:35,"352 Lakeview St, Atlanta, GA 30301" -170338,Lightning Charging Cable,1,14.95,03/02/19 04:46,"583 7th St, San Francisco, CA 94016" -170339,Apple Airpods Headphones,1,150,03/21/19 23:56,"249 Walnut St, Portland, ME 04101" -170340,27in 4K Gaming Monitor,1,389.99,03/09/19 06:32,"191 11th St, Boston, MA 02215" -170341,Wired Headphones,2,11.99,03/25/19 21:35,"635 10th St, Atlanta, GA 30301" -170342,Apple Airpods Headphones,1,150,03/30/19 11:43,"125 Jackson St, New York City, NY 10001" -170343,LG Dryer,1,600.0,03/16/19 09:43,"99 6th St, New York City, NY 10001" -170344,ThinkPad Laptop,1,999.99,03/16/19 14:30,"33 Center St, New York City, NY 10001" -170345,Bose SoundSport Headphones,1,99.99,03/25/19 09:54,"189 Maple St, Los Angeles, CA 90001" -170346,Bose SoundSport Headphones,1,99.99,03/16/19 16:26,"807 Park St, Boston, MA 02215" -170347,Lightning Charging Cable,1,14.95,03/21/19 00:16,"248 Pine St, Los Angeles, CA 90001" -170348,USB-C Charging Cable,1,11.95,03/29/19 11:44,"686 13th St, Los Angeles, CA 90001" -170349,LG Washing Machine,1,600.0,03/30/19 12:29,"436 Johnson St, San Francisco, CA 94016" -170350,USB-C Charging Cable,1,11.95,03/02/19 15:53,"661 12th St, San Francisco, CA 94016" -170351,AA Batteries (4-pack),1,3.84,03/19/19 09:40,"457 Maple St, Atlanta, GA 30301" -170352,34in Ultrawide Monitor,1,379.99,03/31/19 22:07,"48 Pine St, San Francisco, CA 94016" -170353,Flatscreen TV,1,300,03/30/19 17:39,"617 Walnut St, Los Angeles, CA 90001" -170354,Macbook Pro Laptop,1,1700,03/30/19 17:31,"692 Sunset St, Austin, TX 73301" -170355,iPhone,1,700,03/06/19 19:44,"829 9th St, Boston, MA 02215" -170356,34in Ultrawide Monitor,1,379.99,03/27/19 19:37,"483 North St, San Francisco, CA 94016" -170357,Bose SoundSport Headphones,1,99.99,03/29/19 17:47,"109 Spruce St, Atlanta, GA 30301" -170358,AA Batteries (4-pack),1,3.84,03/26/19 14:49,"246 Spruce St, New York City, NY 10001" -170359,iPhone,1,700,03/26/19 19:34,"925 7th St, Austin, TX 73301" -170360,USB-C Charging Cable,1,11.95,03/11/19 08:40,"214 Hill St, New York City, NY 10001" -170361,Flatscreen TV,1,300,03/15/19 12:29,"474 Highland St, Dallas, TX 75001" -170361,Lightning Charging Cable,1,14.95,03/15/19 12:29,"474 Highland St, Dallas, TX 75001" -170362,Wired Headphones,1,11.99,03/19/19 12:57,"326 6th St, Boston, MA 02215" -170363,USB-C Charging Cable,1,11.95,03/03/19 00:19,"799 Maple St, Austin, TX 73301" -170364,27in FHD Monitor,1,149.99,03/09/19 19:34,"801 Cedar St, Portland, OR 97035" -170365,AA Batteries (4-pack),1,3.84,03/08/19 11:38,"514 Elm St, San Francisco, CA 94016" -170366,Lightning Charging Cable,1,14.95,03/25/19 11:08,"541 Lake St, New York City, NY 10001" -170367,Bose SoundSport Headphones,1,99.99,03/29/19 11:31,"961 8th St, Seattle, WA 98101" -170368,USB-C Charging Cable,1,11.95,03/15/19 21:49,"812 River St, Los Angeles, CA 90001" -170369,Lightning Charging Cable,1,14.95,03/10/19 20:40,"716 11th St, Atlanta, GA 30301" -170370,AAA Batteries (4-pack),1,2.99,03/30/19 12:33,"916 West St, San Francisco, CA 94016" -170371,Bose SoundSport Headphones,1,99.99,03/14/19 15:47,"560 South St, Dallas, TX 75001" -170372,Macbook Pro Laptop,1,1700,03/14/19 13:36,"192 Highland St, San Francisco, CA 94016" -170373,AAA Batteries (4-pack),1,2.99,03/23/19 19:27,"735 Johnson St, Dallas, TX 75001" -170374,Google Phone,1,600,03/04/19 05:59,"337 7th St, San Francisco, CA 94016" -170375,Wired Headphones,1,11.99,03/07/19 11:30,"982 South St, Dallas, TX 75001" -170376,Apple Airpods Headphones,1,150,03/20/19 07:53,"916 Lakeview St, San Francisco, CA 94016" -170377,AA Batteries (4-pack),1,3.84,03/10/19 20:36,"787 6th St, New York City, NY 10001" -170378,Lightning Charging Cable,1,14.95,03/09/19 22:26,"904 Madison St, Atlanta, GA 30301" -170379,Bose SoundSport Headphones,1,99.99,03/19/19 12:41,"232 Pine St, Los Angeles, CA 90001" -170380,iPhone,1,700,03/03/19 10:14,"701 Lake St, Los Angeles, CA 90001" -170381,Wired Headphones,1,11.99,03/22/19 10:36,"992 South St, Los Angeles, CA 90001" -170382,20in Monitor,1,109.99,03/20/19 21:32,"209 River St, New York City, NY 10001" -170383,Wired Headphones,1,11.99,03/19/19 19:03,"6 6th St, Austin, TX 73301" -170384,Wired Headphones,1,11.99,03/02/19 22:18,"901 2nd St, Los Angeles, CA 90001" -170385,Wired Headphones,1,11.99,03/24/19 10:18,"567 Maple St, Los Angeles, CA 90001" -170386,Macbook Pro Laptop,1,1700,03/03/19 12:17,"3 Park St, New York City, NY 10001" -170387,AAA Batteries (4-pack),1,2.99,03/19/19 09:39,"98 Cherry St, Dallas, TX 75001" -170388,AA Batteries (4-pack),1,3.84,03/06/19 12:08,"795 Highland St, Los Angeles, CA 90001" -170389,Wired Headphones,1,11.99,03/05/19 08:27,"93 2nd St, Dallas, TX 75001" -170390,Bose SoundSport Headphones,1,99.99,03/05/19 11:18,"645 West St, Los Angeles, CA 90001" -170391,AA Batteries (4-pack),1,3.84,03/22/19 08:07,"132 Cedar St, Los Angeles, CA 90001" -170392,iPhone,1,700,03/26/19 11:57,"361 1st St, Seattle, WA 98101" -170393,AAA Batteries (4-pack),1,2.99,03/07/19 13:11,"645 North St, New York City, NY 10001" -170394,27in FHD Monitor,1,149.99,03/16/19 11:22,"206 Church St, Los Angeles, CA 90001" -170395,Bose SoundSport Headphones,1,99.99,03/05/19 21:35,"957 Lakeview St, San Francisco, CA 94016" -170396,AA Batteries (4-pack),1,3.84,03/23/19 15:54,"124 Pine St, Los Angeles, CA 90001" -170397,AAA Batteries (4-pack),1,2.99,03/27/19 19:38,"450 Lincoln St, New York City, NY 10001" -170398,USB-C Charging Cable,3,11.95,03/06/19 08:24,"918 Hickory St, New York City, NY 10001" -170399,Apple Airpods Headphones,1,150,03/16/19 16:59,"700 13th St, San Francisco, CA 94016" -170400,AAA Batteries (4-pack),2,2.99,03/21/19 14:21,"168 Johnson St, San Francisco, CA 94016" -170401,USB-C Charging Cable,1,11.95,03/18/19 16:14,"608 Forest St, Austin, TX 73301" -170402,AA Batteries (4-pack),1,3.84,03/22/19 20:55,"529 Chestnut St, Dallas, TX 75001" -170403,27in 4K Gaming Monitor,1,389.99,03/12/19 19:25,"555 West St, Boston, MA 02215" -170404,27in 4K Gaming Monitor,1,389.99,03/28/19 01:53,"644 10th St, New York City, NY 10001" -170405,Flatscreen TV,1,300,03/09/19 14:15,"992 Johnson St, San Francisco, CA 94016" -170406,Apple Airpods Headphones,1,150,03/13/19 08:10,"909 West St, San Francisco, CA 94016" -170407,USB-C Charging Cable,1,11.95,03/14/19 12:39,"102 10th St, Austin, TX 73301" -170408,Wired Headphones,1,11.99,03/17/19 08:14,"41 Center St, San Francisco, CA 94016" -170409,Wired Headphones,2,11.99,03/20/19 13:26,"819 Chestnut St, New York City, NY 10001" -170410,AAA Batteries (4-pack),1,2.99,03/27/19 14:32,"865 Forest St, San Francisco, CA 94016" -170411,Wired Headphones,1,11.99,03/01/19 04:23,"427 Wilson St, Los Angeles, CA 90001" -170412,ThinkPad Laptop,1,999.99,03/04/19 13:15,"883 Lincoln St, Atlanta, GA 30301" -170413,34in Ultrawide Monitor,1,379.99,03/21/19 00:23,"733 Madison St, Los Angeles, CA 90001" -170414,Lightning Charging Cable,1,14.95,03/05/19 12:50,"41 Highland St, Dallas, TX 75001" -170415,USB-C Charging Cable,1,11.95,03/08/19 13:34,"187 Willow St, Atlanta, GA 30301" -170416,Lightning Charging Cable,1,14.95,03/27/19 14:42,"290 Lincoln St, Portland, OR 97035" -170417,Lightning Charging Cable,1,14.95,03/09/19 12:38,"595 7th St, New York City, NY 10001" -170418,Lightning Charging Cable,1,14.95,03/28/19 21:50,"575 Hill St, Los Angeles, CA 90001" -170419,ThinkPad Laptop,1,999.99,03/17/19 22:05,"372 Center St, San Francisco, CA 94016" -170420,AA Batteries (4-pack),2,3.84,03/08/19 23:29,"973 Pine St, Austin, TX 73301" -170421,USB-C Charging Cable,1,11.95,03/01/19 15:25,"951 9th St, Seattle, WA 98101" -170422,AA Batteries (4-pack),1,3.84,03/10/19 15:47,"265 West St, Dallas, TX 75001" -170423,Bose SoundSport Headphones,1,99.99,03/01/19 09:10,"61 Washington St, Austin, TX 73301" -170424,USB-C Charging Cable,1,11.95,03/17/19 21:05,"727 River St, Atlanta, GA 30301" -170425,AA Batteries (4-pack),1,3.84,03/04/19 14:29,"224 6th St, Boston, MA 02215" -170426,Lightning Charging Cable,1,14.95,03/07/19 22:01,"655 Lincoln St, New York City, NY 10001" -170427,27in 4K Gaming Monitor,1,389.99,03/07/19 18:58,"991 5th St, San Francisco, CA 94016" -170428,Bose SoundSport Headphones,1,99.99,03/31/19 23:26,"860 10th St, New York City, NY 10001" -170429,Lightning Charging Cable,2,14.95,03/30/19 16:29,"602 4th St, Seattle, WA 98101" -170430,Flatscreen TV,1,300,03/06/19 17:49,"192 Wilson St, Dallas, TX 75001" -170431,AA Batteries (4-pack),1,3.84,03/12/19 06:41,"844 14th St, San Francisco, CA 94016" -170432,Bose SoundSport Headphones,1,99.99,03/06/19 09:46,"517 Main St, San Francisco, CA 94016" -170432,20in Monitor,1,109.99,03/06/19 09:46,"517 Main St, San Francisco, CA 94016" -170433,USB-C Charging Cable,1,11.95,03/11/19 13:36,"63 1st St, New York City, NY 10001" -170434,AAA Batteries (4-pack),1,2.99,03/22/19 18:48,"557 West St, Los Angeles, CA 90001" -170435,Bose SoundSport Headphones,1,99.99,03/10/19 13:37,"891 4th St, Atlanta, GA 30301" -170436,AA Batteries (4-pack),1,3.84,03/25/19 23:59,"882 Sunset St, Austin, TX 73301" -170437,34in Ultrawide Monitor,1,379.99,03/06/19 21:13,"9 Lakeview St, Dallas, TX 75001" -170438,Lightning Charging Cable,2,14.95,03/07/19 15:43,"567 10th St, New York City, NY 10001" -170439,Wired Headphones,1,11.99,03/12/19 10:30,"557 Willow St, Dallas, TX 75001" -170440,AA Batteries (4-pack),2,3.84,03/29/19 17:05,"114 6th St, Los Angeles, CA 90001" -170441,Apple Airpods Headphones,1,150,03/09/19 13:22,"336 9th St, Portland, OR 97035" -170442,Lightning Charging Cable,1,14.95,03/18/19 20:26,"824 5th St, Seattle, WA 98101" -170443,Lightning Charging Cable,1,14.95,03/25/19 11:30,"638 Center St, Dallas, TX 75001" -170444,Apple Airpods Headphones,1,150,03/06/19 00:21,"495 Center St, Los Angeles, CA 90001" -170445,Apple Airpods Headphones,1,150,03/23/19 15:50,"406 Walnut St, San Francisco, CA 94016" -170446,USB-C Charging Cable,1,11.95,03/13/19 22:03,"137 11th St, Portland, OR 97035" -170447,AAA Batteries (4-pack),2,2.99,03/21/19 20:48,"944 Maple St, Los Angeles, CA 90001" -170448,USB-C Charging Cable,1,11.95,03/20/19 17:45,"49 Ridge St, San Francisco, CA 94016" -170449,Lightning Charging Cable,1,14.95,03/12/19 21:24,"237 2nd St, Portland, ME 04101" -170450,Wired Headphones,1,11.99,03/31/19 23:24,"767 Forest St, San Francisco, CA 94016" -170451,Apple Airpods Headphones,1,150,03/06/19 10:16,"836 Maple St, Los Angeles, CA 90001" -170452,Apple Airpods Headphones,1,150,03/25/19 13:59,"172 Lakeview St, New York City, NY 10001" -170453,Lightning Charging Cable,1,14.95,03/28/19 19:41,"624 Main St, Austin, TX 73301" -170454,AA Batteries (4-pack),1,3.84,03/16/19 14:29,"125 Forest St, Atlanta, GA 30301" -170455,LG Dryer,1,600.0,03/14/19 06:12,"556 Center St, Boston, MA 02215" -170456,34in Ultrawide Monitor,1,379.99,03/03/19 22:27,"540 Wilson St, San Francisco, CA 94016" -170457,AA Batteries (4-pack),1,3.84,03/28/19 09:33,"196 Ridge St, Los Angeles, CA 90001" -170458,AAA Batteries (4-pack),1,2.99,03/30/19 13:29,"388 6th St, San Francisco, CA 94016" -170459,27in FHD Monitor,1,149.99,03/08/19 12:43,"535 6th St, Atlanta, GA 30301" -170460,AAA Batteries (4-pack),1,2.99,03/19/19 12:36,"21 Jefferson St, Los Angeles, CA 90001" -170461,AA Batteries (4-pack),1,3.84,03/22/19 12:46,"811 5th St, Atlanta, GA 30301" -170462,iPhone,1,700,03/06/19 16:10,"614 Meadow St, Seattle, WA 98101" -170463,Wired Headphones,1,11.99,03/24/19 15:08,"609 Adams St, Portland, OR 97035" -170464,iPhone,1,700,03/19/19 15:52,"92 Park St, Seattle, WA 98101" -170465,AAA Batteries (4-pack),4,2.99,03/13/19 17:43,"903 7th St, Dallas, TX 75001" -170466,27in 4K Gaming Monitor,1,389.99,03/03/19 16:37,"494 11th St, San Francisco, CA 94016" -170467,Bose SoundSport Headphones,1,99.99,03/10/19 17:04,"512 Lake St, Portland, OR 97035" -170468,34in Ultrawide Monitor,1,379.99,03/11/19 17:23,"561 Madison St, San Francisco, CA 94016" -170469,20in Monitor,1,109.99,03/06/19 13:33,"555 Madison St, New York City, NY 10001" -170470,Lightning Charging Cable,1,14.95,03/25/19 17:46,"239 Dogwood St, Boston, MA 02215" -170471,Wired Headphones,1,11.99,03/23/19 20:52,"451 Meadow St, Los Angeles, CA 90001" -170472,USB-C Charging Cable,1,11.95,03/19/19 01:49,"336 Park St, Austin, TX 73301" -170473,Wired Headphones,1,11.99,03/23/19 20:52,"765 Willow St, San Francisco, CA 94016" -170474,Apple Airpods Headphones,1,150,03/29/19 20:21,"846 10th St, Los Angeles, CA 90001" -170475,Lightning Charging Cable,1,14.95,03/22/19 11:02,"700 Maple St, Portland, OR 97035" -170476,Wired Headphones,2,11.99,03/02/19 15:03,"174 Cedar St, Dallas, TX 75001" -170477,Lightning Charging Cable,1,14.95,03/06/19 22:35,"140 Sunset St, Boston, MA 02215" -170478,AAA Batteries (4-pack),3,2.99,03/10/19 08:35,"771 Sunset St, Seattle, WA 98101" -170479,Wired Headphones,1,11.99,03/11/19 21:39,"772 Washington St, Los Angeles, CA 90001" -170480,Apple Airpods Headphones,1,150,03/01/19 11:45,"413 Adams St, Seattle, WA 98101" -170481,AAA Batteries (4-pack),2,2.99,03/21/19 14:12,"164 Highland St, San Francisco, CA 94016" -170482,Wired Headphones,1,11.99,03/07/19 10:44,"963 Forest St, Los Angeles, CA 90001" -170483,Wired Headphones,1,11.99,03/10/19 09:49,"658 Jefferson St, San Francisco, CA 94016" -170484,Apple Airpods Headphones,1,150,03/09/19 13:38,"801 8th St, Los Angeles, CA 90001" -170485,20in Monitor,1,109.99,03/21/19 02:49,"88 Park St, Boston, MA 02215" -170486,Flatscreen TV,1,300,03/30/19 21:56,"504 1st St, Austin, TX 73301" -170487,27in FHD Monitor,1,149.99,03/13/19 15:14,"89 8th St, Atlanta, GA 30301" -170488,Apple Airpods Headphones,1,150,03/17/19 17:56,"252 Washington St, San Francisco, CA 94016" -170489,USB-C Charging Cable,1,11.95,03/17/19 13:09,"302 12th St, New York City, NY 10001" -170490,AA Batteries (4-pack),1,3.84,03/13/19 03:51,"234 Cedar St, Portland, OR 97035" -170491,Flatscreen TV,1,300,03/24/19 16:23,"617 River St, San Francisco, CA 94016" -170492,AA Batteries (4-pack),1,3.84,03/21/19 06:59,"622 Lake St, Portland, ME 04101" -170493,Bose SoundSport Headphones,1,99.99,03/13/19 11:19,"217 6th St, San Francisco, CA 94016" -170494,Apple Airpods Headphones,1,150,03/10/19 11:11,"414 1st St, Boston, MA 02215" -170495,AAA Batteries (4-pack),4,2.99,03/20/19 18:29,"707 Adams St, Portland, OR 97035" -170496,Wired Headphones,1,11.99,03/11/19 13:09,"983 13th St, San Francisco, CA 94016" -170497,Wired Headphones,1,11.99,03/29/19 05:48,"253 Wilson St, Portland, OR 97035" -170498,AAA Batteries (4-pack),1,2.99,03/06/19 06:25,"425 Hickory St, Los Angeles, CA 90001" -170499,Bose SoundSport Headphones,1,99.99,03/10/19 21:20,"241 Johnson St, Seattle, WA 98101" -170500,Wired Headphones,1,11.99,03/31/19 21:35,"117 9th St, Boston, MA 02215" -170501,AAA Batteries (4-pack),1,2.99,03/17/19 21:56,"3 Park St, Boston, MA 02215" -170502,AAA Batteries (4-pack),1,2.99,03/02/19 18:54,"82 Jefferson St, Boston, MA 02215" -170503,USB-C Charging Cable,1,11.95,03/13/19 18:05,"681 West St, San Francisco, CA 94016" -170504,27in FHD Monitor,1,149.99,03/28/19 22:01,"535 Highland St, Dallas, TX 75001" -170505,iPhone,1,700,03/16/19 16:36,"374 Jackson St, Atlanta, GA 30301" -170505,Lightning Charging Cable,1,14.95,03/16/19 16:36,"374 Jackson St, Atlanta, GA 30301" -170506,Lightning Charging Cable,1,14.95,03/16/19 23:02,"145 5th St, Los Angeles, CA 90001" -170507,Bose SoundSport Headphones,1,99.99,03/24/19 11:06,"308 Johnson St, New York City, NY 10001" -170508,Lightning Charging Cable,1,14.95,03/24/19 10:28,"109 Wilson St, San Francisco, CA 94016" -170508,Bose SoundSport Headphones,1,99.99,03/24/19 10:28,"109 Wilson St, San Francisco, CA 94016" -170509,Google Phone,1,600,03/23/19 16:46,"838 Spruce St, San Francisco, CA 94016" -170510,USB-C Charging Cable,1,11.95,03/28/19 14:06,"240 11th St, San Francisco, CA 94016" -170511,Flatscreen TV,1,300,03/18/19 15:56,"562 Wilson St, Seattle, WA 98101" -170512,34in Ultrawide Monitor,1,379.99,03/09/19 13:13,"592 Jefferson St, Boston, MA 02215" -170513,Lightning Charging Cable,1,14.95,03/17/19 22:29,"234 Lake St, Atlanta, GA 30301" -170514,Bose SoundSport Headphones,1,99.99,03/25/19 19:04,"376 Ridge St, San Francisco, CA 94016" -170515,AA Batteries (4-pack),1,3.84,03/18/19 19:19,"576 Lincoln St, Seattle, WA 98101" -170516,27in 4K Gaming Monitor,1,389.99,03/24/19 12:59,"61 Willow St, Atlanta, GA 30301" -170517,Lightning Charging Cable,1,14.95,03/09/19 12:40,"625 11th St, San Francisco, CA 94016" -170518,USB-C Charging Cable,1,11.95,03/04/19 19:13,"27 Wilson St, New York City, NY 10001" -170519,34in Ultrawide Monitor,1,379.99,03/03/19 11:45,"301 9th St, Boston, MA 02215" -170520,USB-C Charging Cable,1,11.95,03/28/19 16:30,"675 7th St, Austin, TX 73301" -170521,USB-C Charging Cable,1,11.95,03/12/19 10:17,"953 Hill St, San Francisco, CA 94016" -170522,Wired Headphones,1,11.99,03/16/19 21:27,"882 Walnut St, Seattle, WA 98101" -170523,iPhone,1,700,03/07/19 14:51,"523 4th St, San Francisco, CA 94016" -170524,AA Batteries (4-pack),1,3.84,03/11/19 18:28,"345 Dogwood St, Seattle, WA 98101" -170525,Apple Airpods Headphones,1,150,03/15/19 13:31,"416 Jackson St, San Francisco, CA 94016" -170526,Lightning Charging Cable,1,14.95,03/10/19 20:25,"584 11th St, Atlanta, GA 30301" -170527,AAA Batteries (4-pack),1,2.99,03/18/19 13:26,"970 Jackson St, San Francisco, CA 94016" -170528,iPhone,1,700,03/29/19 16:54,"148 Maple St, Austin, TX 73301" -170529,34in Ultrawide Monitor,1,379.99,03/25/19 14:46,"892 Adams St, Los Angeles, CA 90001" -170530,Lightning Charging Cable,1,14.95,03/13/19 12:06,"555 Willow St, New York City, NY 10001" -170531,ThinkPad Laptop,1,999.99,03/18/19 13:36,"410 Meadow St, New York City, NY 10001" -170532,Bose SoundSport Headphones,1,99.99,03/25/19 18:09,"321 Center St, Los Angeles, CA 90001" -170533,Bose SoundSport Headphones,1,99.99,03/16/19 14:23,"58 Adams St, Seattle, WA 98101" -170534,AA Batteries (4-pack),2,3.84,03/04/19 22:20,"120 River St, Boston, MA 02215" -170534,Flatscreen TV,1,300,03/04/19 22:20,"120 River St, Boston, MA 02215" -170535,Lightning Charging Cable,1,14.95,03/17/19 13:48,"870 Jefferson St, Los Angeles, CA 90001" -170536,USB-C Charging Cable,1,11.95,03/25/19 22:00,"233 Madison St, San Francisco, CA 94016" -170537,Apple Airpods Headphones,1,150,03/11/19 19:57,"224 Johnson St, San Francisco, CA 94016" -170538,Apple Airpods Headphones,1,150,03/13/19 19:09,"259 5th St, New York City, NY 10001" -170539,USB-C Charging Cable,1,11.95,03/07/19 07:35,"371 Ridge St, Boston, MA 02215" -170540,AAA Batteries (4-pack),1,2.99,03/19/19 18:04,"24 Adams St, Dallas, TX 75001" -170541,27in FHD Monitor,1,149.99,03/15/19 15:54,"450 Jefferson St, San Francisco, CA 94016" -170542,Bose SoundSport Headphones,1,99.99,03/23/19 20:19,"646 North St, Boston, MA 02215" -170543,AA Batteries (4-pack),1,3.84,03/06/19 18:32,"587 West St, San Francisco, CA 94016" -170544,34in Ultrawide Monitor,1,379.99,03/05/19 16:25,"732 10th St, Los Angeles, CA 90001" -170545,Lightning Charging Cable,1,14.95,03/26/19 13:23,"740 14th St, San Francisco, CA 94016" -170546,AAA Batteries (4-pack),2,2.99,03/25/19 14:52,"978 Madison St, Austin, TX 73301" -170547,Wired Headphones,1,11.99,03/07/19 12:52,"169 Washington St, Los Angeles, CA 90001" -170548,AAA Batteries (4-pack),1,2.99,03/03/19 15:02,"807 Chestnut St, Austin, TX 73301" -170549,AA Batteries (4-pack),1,3.84,03/15/19 21:31,"522 2nd St, San Francisco, CA 94016" -170550,Apple Airpods Headphones,1,150,03/31/19 01:19,"19 14th St, Dallas, TX 75001" -170551,Google Phone,1,600,03/27/19 18:53,"229 Sunset St, Atlanta, GA 30301" -170552,USB-C Charging Cable,1,11.95,03/12/19 08:52,"891 11th St, San Francisco, CA 94016" -170553,AA Batteries (4-pack),1,3.84,03/06/19 19:15,"127 South St, New York City, NY 10001" -170554,AA Batteries (4-pack),1,3.84,03/04/19 12:19,"955 1st St, New York City, NY 10001" -170555,Apple Airpods Headphones,1,150,03/15/19 09:39,"210 14th St, San Francisco, CA 94016" -170556,Bose SoundSport Headphones,1,99.99,03/20/19 18:34,"938 4th St, Boston, MA 02215" -170557,AA Batteries (4-pack),2,3.84,03/03/19 10:46,"520 Main St, Portland, OR 97035" -170558,AAA Batteries (4-pack),1,2.99,03/22/19 16:03,"99 Forest St, Dallas, TX 75001" -170559,Flatscreen TV,1,300,03/10/19 00:29,"863 Park St, Atlanta, GA 30301" -170560,AA Batteries (4-pack),1,3.84,03/27/19 10:53,"2 Madison St, Atlanta, GA 30301" -170561,Apple Airpods Headphones,1,150,03/30/19 19:02,"229 Wilson St, New York City, NY 10001" -170562,AA Batteries (4-pack),1,3.84,03/20/19 10:34,"912 12th St, San Francisco, CA 94016" -170563,Google Phone,1,600,03/28/19 20:06,"694 Willow St, New York City, NY 10001" -170564,Flatscreen TV,1,300,03/02/19 14:48,"785 Pine St, Austin, TX 73301" -170565,27in FHD Monitor,1,149.99,03/09/19 18:38,"363 Cedar St, Los Angeles, CA 90001" -170566,Macbook Pro Laptop,1,1700,03/25/19 20:09,"247 2nd St, Austin, TX 73301" -170567,Macbook Pro Laptop,1,1700,03/09/19 15:13,"226 9th St, San Francisco, CA 94016" -170568,USB-C Charging Cable,1,11.95,03/31/19 17:14,"210 Ridge St, Boston, MA 02215" -170569,USB-C Charging Cable,1,11.95,03/23/19 10:52,"999 Maple St, Los Angeles, CA 90001" -170570,AA Batteries (4-pack),2,3.84,03/01/19 10:24,"706 6th St, San Francisco, CA 94016" -170571,Apple Airpods Headphones,1,150,03/01/19 13:20,"767 7th St, San Francisco, CA 94016" -170572,27in FHD Monitor,1,149.99,03/05/19 21:23,"123 7th St, Los Angeles, CA 90001" -170573,USB-C Charging Cable,1,11.95,03/18/19 19:10,"493 Jackson St, Los Angeles, CA 90001" -170574,34in Ultrawide Monitor,1,379.99,03/23/19 09:05,"690 Adams St, Seattle, WA 98101" -170575,AAA Batteries (4-pack),1,2.99,03/09/19 10:28,"518 Washington St, San Francisco, CA 94016" -170576,AAA Batteries (4-pack),1,2.99,03/15/19 14:21,"515 Spruce St, Los Angeles, CA 90001" -170577,Wired Headphones,1,11.99,03/10/19 11:03,"298 Highland St, San Francisco, CA 94016" -170578,Apple Airpods Headphones,1,150,03/11/19 13:25,"869 Cedar St, San Francisco, CA 94016" -170579,20in Monitor,1,109.99,03/23/19 07:10,"443 River St, New York City, NY 10001" -170580,AAA Batteries (4-pack),1,2.99,03/11/19 12:08,"830 14th St, New York City, NY 10001" -170581,34in Ultrawide Monitor,1,379.99,03/25/19 22:07,"182 Walnut St, Atlanta, GA 30301" -170582,Bose SoundSport Headphones,1,99.99,03/08/19 18:20,"366 Cherry St, San Francisco, CA 94016" -170583,AA Batteries (4-pack),1,3.84,03/01/19 12:19,"760 Chestnut St, New York City, NY 10001" -170584,Google Phone,1,600,03/08/19 12:03,"652 Chestnut St, Austin, TX 73301" -170585,Wired Headphones,2,11.99,03/31/19 12:02,"458 12th St, Atlanta, GA 30301" -170586,ThinkPad Laptop,1,999.99,03/11/19 10:35,"20 Hickory St, Austin, TX 73301" -170587,34in Ultrawide Monitor,1,379.99,03/18/19 12:39,"494 Maple St, San Francisco, CA 94016" -170588,Apple Airpods Headphones,1,150,03/11/19 19:51,"833 Hickory St, San Francisco, CA 94016" -170589,iPhone,1,700,03/25/19 13:16,"170 Johnson St, San Francisco, CA 94016" -170589,Lightning Charging Cable,1,14.95,03/25/19 13:16,"170 Johnson St, San Francisco, CA 94016" -170590,iPhone,1,700,03/14/19 07:16,"764 12th St, Los Angeles, CA 90001" -170591,Lightning Charging Cable,1,14.95,03/15/19 08:40,"925 Elm St, Dallas, TX 75001" -170592,USB-C Charging Cable,1,11.95,03/22/19 22:44,"512 1st St, Los Angeles, CA 90001" -170593,Wired Headphones,1,11.99,03/28/19 08:24,"534 Cherry St, Seattle, WA 98101" -170594,Vareebadd Phone,1,400,03/23/19 07:10,"502 Jefferson St, Dallas, TX 75001" -170595,Vareebadd Phone,1,400,03/31/19 18:06,"458 Highland St, New York City, NY 10001" -170596,27in FHD Monitor,1,149.99,03/06/19 21:11,"356 Jefferson St, Portland, OR 97035" -170597,AAA Batteries (4-pack),2,2.99,03/08/19 14:46,"244 7th St, San Francisco, CA 94016" -170598,Lightning Charging Cable,1,14.95,03/23/19 11:52,"161 Forest St, New York City, NY 10001" -170599,USB-C Charging Cable,1,11.95,03/10/19 21:32,"513 Ridge St, San Francisco, CA 94016" -170600,AAA Batteries (4-pack),1,2.99,03/09/19 07:51,"385 South St, San Francisco, CA 94016" -170601,27in FHD Monitor,1,149.99,03/18/19 11:29,"788 8th St, San Francisco, CA 94016" -170602,AAA Batteries (4-pack),2,2.99,03/09/19 01:54,"107 4th St, Boston, MA 02215" -170603,AAA Batteries (4-pack),1,2.99,03/11/19 21:20,"705 12th St, San Francisco, CA 94016" -170604,Macbook Pro Laptop,1,1700,03/05/19 19:59,"316 Sunset St, Los Angeles, CA 90001" -170605,AAA Batteries (4-pack),2,2.99,03/05/19 09:46,"572 14th St, Dallas, TX 75001" -170606,Google Phone,1,600,03/27/19 23:37,"218 Hickory St, Seattle, WA 98101" -170607,Vareebadd Phone,1,400,03/24/19 10:09,"236 Sunset St, New York City, NY 10001" -170607,USB-C Charging Cable,1,11.95,03/24/19 10:09,"236 Sunset St, New York City, NY 10001" -170608,Lightning Charging Cable,1,14.95,03/27/19 06:07,"658 River St, Seattle, WA 98101" -170609,AAA Batteries (4-pack),1,2.99,03/03/19 22:37,"36 14th St, San Francisco, CA 94016" -170610,Wired Headphones,1,11.99,03/05/19 19:36,"409 Johnson St, New York City, NY 10001" -170611,Bose SoundSport Headphones,1,99.99,03/30/19 21:33,"910 5th St, San Francisco, CA 94016" -170612,27in 4K Gaming Monitor,1,389.99,03/13/19 23:08,"197 Washington St, San Francisco, CA 94016" -170613,AA Batteries (4-pack),1,3.84,03/19/19 18:33,"858 14th St, Dallas, TX 75001" -170614,Lightning Charging Cable,1,14.95,03/18/19 18:45,"142 Madison St, New York City, NY 10001" -170615,Lightning Charging Cable,1,14.95,03/05/19 12:51,"949 Ridge St, Atlanta, GA 30301" -170616,Bose SoundSport Headphones,1,99.99,03/06/19 14:04,"362 14th St, New York City, NY 10001" -170617,USB-C Charging Cable,1,11.95,03/30/19 07:28,"145 13th St, Seattle, WA 98101" -170618,iPhone,1,700,03/18/19 13:34,"917 7th St, Boston, MA 02215" -170619,AA Batteries (4-pack),1,3.84,03/14/19 10:59,"769 Washington St, Boston, MA 02215" -170620,USB-C Charging Cable,1,11.95,03/26/19 12:31,"446 Wilson St, San Francisco, CA 94016" -170621,Flatscreen TV,1,300,03/20/19 12:20,"669 Meadow St, San Francisco, CA 94016" -170622,Apple Airpods Headphones,1,150,03/23/19 13:11,"579 Walnut St, Atlanta, GA 30301" -170623,Lightning Charging Cable,1,14.95,03/18/19 14:13,"90 Lake St, New York City, NY 10001" -170623,Apple Airpods Headphones,1,150,03/18/19 14:13,"90 Lake St, New York City, NY 10001" -170624,AAA Batteries (4-pack),3,2.99,03/29/19 13:38,"664 Spruce St, Seattle, WA 98101" -170625,Lightning Charging Cable,1,14.95,03/15/19 15:25,"326 Highland St, Los Angeles, CA 90001" -170626,AAA Batteries (4-pack),1,2.99,03/29/19 12:42,"764 13th St, Seattle, WA 98101" -170627,27in 4K Gaming Monitor,1,389.99,03/07/19 23:01,"426 Center St, San Francisco, CA 94016" -170628,Wired Headphones,1,11.99,03/20/19 15:41,"242 7th St, Boston, MA 02215" -170629,USB-C Charging Cable,1,11.95,03/27/19 11:59,"643 Pine St, New York City, NY 10001" -170630,Lightning Charging Cable,1,14.95,03/31/19 15:18,"398 13th St, Los Angeles, CA 90001" -170631,AAA Batteries (4-pack),1,2.99,03/31/19 23:35,"59 River St, Los Angeles, CA 90001" -170632,Wired Headphones,1,11.99,03/18/19 00:42,"551 Madison St, New York City, NY 10001" -170633,AAA Batteries (4-pack),2,2.99,03/04/19 18:46,"80 11th St, Seattle, WA 98101" -170634,Wired Headphones,1,11.99,03/09/19 12:40,"708 Washington St, Dallas, TX 75001" -170635,USB-C Charging Cable,1,11.95,03/12/19 20:41,"212 Lakeview St, Los Angeles, CA 90001" -170636,Apple Airpods Headphones,1,150,03/26/19 15:19,"162 Jackson St, Atlanta, GA 30301" -170637,AAA Batteries (4-pack),1,2.99,03/24/19 13:11,"396 Lakeview St, Dallas, TX 75001" -170638,Wired Headphones,1,11.99,03/14/19 13:49,"618 Wilson St, Atlanta, GA 30301" -170639,Bose SoundSport Headphones,1,99.99,03/19/19 12:29,"310 Jefferson St, Los Angeles, CA 90001" -170640,20in Monitor,1,109.99,03/23/19 16:05,"181 Pine St, San Francisco, CA 94016" -170641,34in Ultrawide Monitor,1,379.99,03/28/19 01:30,"879 14th St, Seattle, WA 98101" -170642,34in Ultrawide Monitor,1,379.99,03/20/19 19:48,"686 West St, New York City, NY 10001" -170643,AAA Batteries (4-pack),1,2.99,03/14/19 09:55,"615 Cherry St, Los Angeles, CA 90001" -170644,AAA Batteries (4-pack),2,2.99,03/06/19 15:42,"19 Main St, Dallas, TX 75001" -170645,27in 4K Gaming Monitor,1,389.99,03/29/19 17:57,"672 Hill St, San Francisco, CA 94016" -170646,20in Monitor,1,109.99,03/29/19 21:23,"197 Adams St, San Francisco, CA 94016" -170647,AAA Batteries (4-pack),1,2.99,03/07/19 06:29,"778 Wilson St, New York City, NY 10001" -170647,Lightning Charging Cable,1,14.95,03/07/19 06:29,"778 Wilson St, New York City, NY 10001" -170648,20in Monitor,1,109.99,03/21/19 22:37,"808 Chestnut St, Boston, MA 02215" -170649,AAA Batteries (4-pack),1,2.99,03/11/19 20:37,"805 Spruce St, San Francisco, CA 94016" -170650,USB-C Charging Cable,1,11.95,03/12/19 11:52,"470 West St, San Francisco, CA 94016" -170651,Wired Headphones,1,11.99,03/14/19 15:12,"597 Church St, Boston, MA 02215" -170652,Wired Headphones,1,11.99,03/14/19 10:55,"221 Hill St, San Francisco, CA 94016" -170653,Bose SoundSport Headphones,1,99.99,03/24/19 14:38,"149 10th St, Atlanta, GA 30301" -170654,Lightning Charging Cable,1,14.95,03/31/19 10:23,"133 Cedar St, Portland, ME 04101" -170655,27in FHD Monitor,1,149.99,03/06/19 10:53,"724 Meadow St, San Francisco, CA 94016" -170656,Apple Airpods Headphones,1,150,03/10/19 00:20,"734 Meadow St, Boston, MA 02215" -170657,Lightning Charging Cable,1,14.95,03/20/19 18:47,"910 Madison St, Austin, TX 73301" -170658,AA Batteries (4-pack),3,3.84,03/03/19 22:38,"980 Lakeview St, Boston, MA 02215" -170659,Wired Headphones,1,11.99,03/26/19 20:02,"373 Lakeview St, Los Angeles, CA 90001" -170660,Flatscreen TV,1,300,03/03/19 22:49,"279 Jackson St, Atlanta, GA 30301" -170661,Lightning Charging Cable,1,14.95,03/19/19 13:45,"922 Cherry St, Atlanta, GA 30301" -170662,Apple Airpods Headphones,1,150,03/28/19 18:55,"829 Park St, Dallas, TX 75001" -170663,USB-C Charging Cable,1,11.95,03/14/19 19:59,"668 5th St, San Francisco, CA 94016" -170664,Macbook Pro Laptop,1,1700,03/24/19 16:59,"629 8th St, Dallas, TX 75001" -170665,AA Batteries (4-pack),1,3.84,03/02/19 18:39,"590 8th St, New York City, NY 10001" -170666,Lightning Charging Cable,1,14.95,03/16/19 00:31,"319 Meadow St, Seattle, WA 98101" -170667,AA Batteries (4-pack),1,3.84,03/06/19 13:05,"734 North St, Atlanta, GA 30301" -170668,Apple Airpods Headphones,1,150,03/14/19 14:32,"180 South St, Austin, TX 73301" -170669,Bose SoundSport Headphones,1,99.99,03/28/19 14:53,"403 Adams St, Los Angeles, CA 90001" -170670,USB-C Charging Cable,1,11.95,03/18/19 09:21,"921 South St, San Francisco, CA 94016" -170671,Lightning Charging Cable,1,14.95,03/28/19 17:04,"58 Lakeview St, Atlanta, GA 30301" -170672,USB-C Charging Cable,1,11.95,03/05/19 09:32,"144 Lakeview St, San Francisco, CA 94016" -170673,AAA Batteries (4-pack),1,2.99,03/10/19 22:43,"176 Willow St, Seattle, WA 98101" -170674,USB-C Charging Cable,1,11.95,03/12/19 16:01,"734 2nd St, Boston, MA 02215" -170675,Macbook Pro Laptop,1,1700,03/31/19 15:44,"758 Spruce St, Boston, MA 02215" -170676,Lightning Charging Cable,1,14.95,03/07/19 17:29,"464 Sunset St, Seattle, WA 98101" -170677,AAA Batteries (4-pack),1,2.99,03/28/19 13:32,"379 1st St, Dallas, TX 75001" -170678,Lightning Charging Cable,1,14.95,03/19/19 20:14,"127 Park St, Dallas, TX 75001" -170679,Apple Airpods Headphones,1,150,03/22/19 12:26,"28 Sunset St, Dallas, TX 75001" -170680,Google Phone,1,600,03/14/19 16:38,"722 Chestnut St, Los Angeles, CA 90001" -170681,Macbook Pro Laptop,1,1700,03/20/19 11:57,"760 West St, New York City, NY 10001" -170682,AA Batteries (4-pack),1,3.84,03/30/19 11:27,"27 Elm St, New York City, NY 10001" -170683,Lightning Charging Cable,1,14.95,03/22/19 23:39,"223 5th St, Austin, TX 73301" -170684,Apple Airpods Headphones,1,150,03/01/19 19:51,"297 1st St, New York City, NY 10001" -170685,Wired Headphones,1,11.99,03/13/19 16:39,"903 Lake St, Los Angeles, CA 90001" -170686,Macbook Pro Laptop,1,1700,03/09/19 08:09,"872 2nd St, Boston, MA 02215" -170687,iPhone,1,700,03/21/19 23:11,"538 6th St, San Francisco, CA 94016" -170688,Lightning Charging Cable,1,14.95,03/28/19 15:41,"937 Walnut St, Seattle, WA 98101" -170689,Lightning Charging Cable,1,14.95,03/22/19 18:03,"703 4th St, San Francisco, CA 94016" -170690,34in Ultrawide Monitor,1,379.99,03/16/19 20:39,"215 South St, Atlanta, GA 30301" -170691,AA Batteries (4-pack),1,3.84,03/10/19 16:59,"401 Hickory St, San Francisco, CA 94016" -170692,Apple Airpods Headphones,1,150,03/04/19 23:57,"606 5th St, Boston, MA 02215" -170693,34in Ultrawide Monitor,1,379.99,03/16/19 10:41,"556 Main St, New York City, NY 10001" -170694,Wired Headphones,1,11.99,03/21/19 18:02,"694 North St, Seattle, WA 98101" -170695,Apple Airpods Headphones,1,150,03/08/19 11:46,"484 Willow St, Los Angeles, CA 90001" -170696,Lightning Charging Cable,1,14.95,03/20/19 12:58,"862 Meadow St, New York City, NY 10001" -170697,AA Batteries (4-pack),1,3.84,03/26/19 05:35,"929 10th St, Boston, MA 02215" -170698,Apple Airpods Headphones,1,150,03/13/19 10:51,"446 Main St, San Francisco, CA 94016" -170699,20in Monitor,1,109.99,03/25/19 12:17,"855 Madison St, Los Angeles, CA 90001" -170700,Bose SoundSport Headphones,1,99.99,03/24/19 18:52,"579 Highland St, Atlanta, GA 30301" -170701,Wired Headphones,1,11.99,03/28/19 20:11,"435 Church St, Los Angeles, CA 90001" -170702,iPhone,1,700,03/02/19 12:16,"914 Wilson St, San Francisco, CA 94016" -170703,Flatscreen TV,1,300,03/27/19 17:51,"155 13th St, Los Angeles, CA 90001" -170704,27in 4K Gaming Monitor,1,389.99,03/26/19 12:49,"230 West St, Austin, TX 73301" -170705,34in Ultrawide Monitor,1,379.99,03/22/19 21:53,"743 Center St, Boston, MA 02215" -170706,27in FHD Monitor,1,149.99,03/21/19 19:12,"614 9th St, Los Angeles, CA 90001" -170707,AAA Batteries (4-pack),1,2.99,03/28/19 19:12,"704 West St, Atlanta, GA 30301" -170707,USB-C Charging Cable,1,11.95,03/28/19 19:12,"704 West St, Atlanta, GA 30301" -170708,USB-C Charging Cable,1,11.95,03/25/19 00:43,"255 6th St, Atlanta, GA 30301" -170709,USB-C Charging Cable,1,11.95,03/22/19 11:08,"442 South St, New York City, NY 10001" -170710,Flatscreen TV,1,300,03/27/19 13:05,"65 Ridge St, Los Angeles, CA 90001" -170711,AAA Batteries (4-pack),1,2.99,03/11/19 12:50,"819 Ridge St, Boston, MA 02215" -170712,AAA Batteries (4-pack),4,2.99,03/06/19 19:18,"932 Spruce St, San Francisco, CA 94016" -170713,AAA Batteries (4-pack),3,2.99,03/30/19 11:22,"316 Cherry St, San Francisco, CA 94016" -170714,AA Batteries (4-pack),2,3.84,03/05/19 11:17,"442 Highland St, Austin, TX 73301" -170715,AAA Batteries (4-pack),1,2.99,03/09/19 18:29,"99 Meadow St, New York City, NY 10001" -170716,ThinkPad Laptop,1,999.99,03/20/19 13:11,"681 Pine St, Dallas, TX 75001" -170717,AA Batteries (4-pack),1,3.84,03/15/19 14:59,"253 Jefferson St, Atlanta, GA 30301" -170718,34in Ultrawide Monitor,1,379.99,03/04/19 18:56,"669 Hickory St, Boston, MA 02215" -170719,ThinkPad Laptop,1,999.99,03/07/19 12:03,"714 Main St, Seattle, WA 98101" -170720,Lightning Charging Cable,1,14.95,03/11/19 13:40,"247 Walnut St, San Francisco, CA 94016" -170721,Apple Airpods Headphones,1,150,03/05/19 20:28,"953 Wilson St, Atlanta, GA 30301" -170721,Wired Headphones,1,11.99,03/05/19 20:28,"953 Wilson St, Atlanta, GA 30301" -170722,AA Batteries (4-pack),1,3.84,03/16/19 21:22,"35 Chestnut St, Los Angeles, CA 90001" -170723,Wired Headphones,1,11.99,03/21/19 13:20,"167 Church St, Los Angeles, CA 90001" -170724,Apple Airpods Headphones,1,150,03/14/19 18:39,"726 2nd St, Portland, ME 04101" -170725,USB-C Charging Cable,1,11.95,03/24/19 16:23,"137 Willow St, Boston, MA 02215" -170726,AAA Batteries (4-pack),4,2.99,03/02/19 12:02,"593 Spruce St, San Francisco, CA 94016" -170727,Lightning Charging Cable,1,14.95,03/23/19 12:25,"98 Lakeview St, Los Angeles, CA 90001" -170728,Lightning Charging Cable,1,14.95,03/15/19 15:09,"426 13th St, New York City, NY 10001" -170729,ThinkPad Laptop,1,999.99,03/10/19 13:23,"566 North St, Austin, TX 73301" -170730,AA Batteries (4-pack),1,3.84,03/17/19 18:09,"288 13th St, Los Angeles, CA 90001" -170731,AAA Batteries (4-pack),1,2.99,03/07/19 13:23,"28 Hickory St, Atlanta, GA 30301" -170732,Lightning Charging Cable,1,14.95,03/25/19 17:22,"646 Center St, Portland, OR 97035" -170733,Apple Airpods Headphones,1,150,03/24/19 16:05,"184 Walnut St, Boston, MA 02215" -170734,AA Batteries (4-pack),1,3.84,03/14/19 23:16,"748 Adams St, New York City, NY 10001" -170735,USB-C Charging Cable,1,11.95,03/27/19 00:12,"104 Washington St, Los Angeles, CA 90001" -170736,Vareebadd Phone,1,400,03/13/19 09:14,"751 Pine St, Portland, OR 97035" -170737,Wired Headphones,1,11.99,03/23/19 13:48,"387 1st St, Austin, TX 73301" -170738,20in Monitor,1,109.99,03/09/19 18:35,"789 River St, Atlanta, GA 30301" -170739,USB-C Charging Cable,1,11.95,03/15/19 20:16,"224 Main St, San Francisco, CA 94016" -170740,AA Batteries (4-pack),1,3.84,03/26/19 01:13,"332 Adams St, Atlanta, GA 30301" -170741,Flatscreen TV,1,300,03/22/19 23:59,"303 Johnson St, Seattle, WA 98101" -170742,AAA Batteries (4-pack),1,2.99,03/26/19 18:14,"809 Washington St, San Francisco, CA 94016" -170742,Apple Airpods Headphones,1,150,03/26/19 18:14,"809 Washington St, San Francisco, CA 94016" -170743,iPhone,1,700,03/02/19 09:49,"407 Sunset St, San Francisco, CA 94016" -170744,27in 4K Gaming Monitor,1,389.99,03/07/19 02:52,"23 10th St, Atlanta, GA 30301" -170745,Wired Headphones,1,11.99,03/29/19 15:28,"324 Hickory St, San Francisco, CA 94016" -170746,Vareebadd Phone,1,400,03/05/19 19:30,"979 West St, San Francisco, CA 94016" -170746,USB-C Charging Cable,1,11.95,03/05/19 19:30,"979 West St, San Francisco, CA 94016" -170747,Bose SoundSport Headphones,1,99.99,03/08/19 20:26,"905 River St, Austin, TX 73301" -170748,USB-C Charging Cable,2,11.95,03/02/19 21:17,"475 Dogwood St, San Francisco, CA 94016" -170749,AAA Batteries (4-pack),2,2.99,03/22/19 13:58,"359 North St, San Francisco, CA 94016" -170749,USB-C Charging Cable,1,11.95,03/22/19 13:58,"359 North St, San Francisco, CA 94016" -170750,Wired Headphones,1,11.99,03/23/19 14:59,"530 Ridge St, San Francisco, CA 94016" -170751,Flatscreen TV,1,300,03/25/19 11:04,"157 Hickory St, San Francisco, CA 94016" -170752,Bose SoundSport Headphones,1,99.99,03/23/19 13:23,"502 12th St, Boston, MA 02215" -170753,27in 4K Gaming Monitor,1,389.99,03/18/19 11:28,"736 11th St, Boston, MA 02215" -170754,27in FHD Monitor,1,149.99,03/06/19 10:06,"652 West St, San Francisco, CA 94016" -170755,Lightning Charging Cable,1,14.95,03/11/19 15:04,"544 Washington St, Austin, TX 73301" -170756,USB-C Charging Cable,1,11.95,03/13/19 20:30,"352 West St, Dallas, TX 75001" -170757,USB-C Charging Cable,1,11.95,03/27/19 20:07,"822 Hickory St, Boston, MA 02215" -170758,AAA Batteries (4-pack),4,2.99,03/25/19 21:10,"117 1st St, San Francisco, CA 94016" -170759,AAA Batteries (4-pack),1,2.99,03/03/19 22:06,"432 Hickory St, San Francisco, CA 94016" -170760,Lightning Charging Cable,1,14.95,03/19/19 15:52,"891 13th St, Seattle, WA 98101" -170761,USB-C Charging Cable,1,11.95,03/08/19 20:32,"700 12th St, Portland, OR 97035" -170762,ThinkPad Laptop,1,999.99,03/21/19 13:37,"255 14th St, Portland, OR 97035" -170763,AAA Batteries (4-pack),1,2.99,03/28/19 18:30,"820 Jackson St, San Francisco, CA 94016" -170764,Lightning Charging Cable,1,14.95,03/17/19 20:14,"225 West St, Dallas, TX 75001" -170765,Apple Airpods Headphones,1,150,03/06/19 17:46,"774 Center St, Atlanta, GA 30301" -170765,AAA Batteries (4-pack),1,2.99,03/06/19 17:46,"774 Center St, Atlanta, GA 30301" -170766,Lightning Charging Cable,1,14.95,03/12/19 08:31,"671 13th St, San Francisco, CA 94016" -170767,AA Batteries (4-pack),1,3.84,03/07/19 18:01,"165 14th St, Los Angeles, CA 90001" -170768,AA Batteries (4-pack),1,3.84,03/06/19 09:17,"816 Spruce St, Atlanta, GA 30301" -170769,Wired Headphones,1,11.99,03/07/19 02:09,"502 Hickory St, New York City, NY 10001" -170770,Lightning Charging Cable,2,14.95,03/21/19 08:15,"31 Johnson St, Los Angeles, CA 90001" -170771,iPhone,1,700,03/23/19 07:03,"76 Lakeview St, New York City, NY 10001" -170771,Lightning Charging Cable,1,14.95,03/23/19 07:03,"76 Lakeview St, New York City, NY 10001" -170772,AAA Batteries (4-pack),1,2.99,03/14/19 13:51,"170 11th St, San Francisco, CA 94016" -170773,27in 4K Gaming Monitor,1,389.99,03/05/19 21:26,"78 Maple St, Los Angeles, CA 90001" -170774,Apple Airpods Headphones,1,150,03/28/19 23:37,"764 Walnut St, Boston, MA 02215" -170775,27in FHD Monitor,1,149.99,03/20/19 20:53,"112 Lake St, San Francisco, CA 94016" -170776,USB-C Charging Cable,1,11.95,03/01/19 09:58,"338 7th St, New York City, NY 10001" -170777,Apple Airpods Headphones,1,150,03/24/19 15:07,"199 Johnson St, Los Angeles, CA 90001" -170778,Bose SoundSport Headphones,1,99.99,03/22/19 15:26,"806 Meadow St, New York City, NY 10001" -170779,Wired Headphones,1,11.99,03/22/19 20:13,"991 Church St, San Francisco, CA 94016" -170780,Bose SoundSport Headphones,1,99.99,03/27/19 21:16,"500 6th St, San Francisco, CA 94016" -170781,Lightning Charging Cable,1,14.95,03/19/19 21:56,"319 Cherry St, Austin, TX 73301" -170781,AA Batteries (4-pack),2,3.84,03/19/19 21:56,"319 Cherry St, Austin, TX 73301" -170782,ThinkPad Laptop,1,999.99,03/01/19 15:50,"57 Forest St, San Francisco, CA 94016" -170783,20in Monitor,1,109.99,03/20/19 10:08,"366 Lake St, Los Angeles, CA 90001" -170784,AA Batteries (4-pack),2,3.84,03/15/19 12:01,"18 South St, Atlanta, GA 30301" -170785,Lightning Charging Cable,1,14.95,03/06/19 12:46,"323 Walnut St, New York City, NY 10001" -170786,27in FHD Monitor,1,149.99,03/02/19 18:24,"129 Johnson St, Boston, MA 02215" -170786,34in Ultrawide Monitor,1,379.99,03/02/19 18:24,"129 Johnson St, Boston, MA 02215" -170787,Google Phone,1,600,03/07/19 10:16,"195 8th St, Los Angeles, CA 90001" -170788,Bose SoundSport Headphones,1,99.99,03/31/19 07:39,"369 North St, San Francisco, CA 94016" -170789,Wired Headphones,1,11.99,03/06/19 13:32,"399 Cherry St, Los Angeles, CA 90001" -170790,USB-C Charging Cable,1,11.95,03/13/19 22:08,"141 Lincoln St, New York City, NY 10001" -170791,Bose SoundSport Headphones,1,99.99,03/19/19 21:04,"927 11th St, Atlanta, GA 30301" -170792,AA Batteries (4-pack),1,3.84,03/22/19 15:49,"473 6th St, New York City, NY 10001" -170793,Flatscreen TV,1,300,03/06/19 18:59,"577 Spruce St, Boston, MA 02215" -170794,Bose SoundSport Headphones,1,99.99,03/09/19 16:17,"934 2nd St, Los Angeles, CA 90001" -170795,AAA Batteries (4-pack),2,2.99,03/20/19 07:31,"567 13th St, San Francisco, CA 94016" -170796,AAA Batteries (4-pack),1,2.99,03/19/19 11:32,"576 Church St, San Francisco, CA 94016" -170797,Apple Airpods Headphones,1,150,03/13/19 10:51,"400 1st St, New York City, NY 10001" -170798,Wired Headphones,1,11.99,03/07/19 11:42,"689 7th St, Portland, OR 97035" -170799,AA Batteries (4-pack),1,3.84,03/06/19 13:05,"813 10th St, San Francisco, CA 94016" -170800,Wired Headphones,1,11.99,03/07/19 16:42,"682 West St, Los Angeles, CA 90001" -170801,Wired Headphones,1,11.99,03/24/19 10:59,"261 1st St, Dallas, TX 75001" -170802,Google Phone,1,600,03/23/19 21:05,"844 Meadow St, Dallas, TX 75001" -170803,27in FHD Monitor,1,149.99,03/30/19 23:34,"414 Jefferson St, San Francisco, CA 94016" -170804,AA Batteries (4-pack),1,3.84,03/02/19 10:29,"303 Madison St, Seattle, WA 98101" -170805,Lightning Charging Cable,2,14.95,03/03/19 08:18,"474 10th St, Los Angeles, CA 90001" -170806,Bose SoundSport Headphones,1,99.99,03/11/19 13:39,"900 Lakeview St, Los Angeles, CA 90001" -170807,Wired Headphones,1,11.99,03/08/19 08:45,"967 Adams St, Atlanta, GA 30301" -170808,AAA Batteries (4-pack),1,2.99,03/13/19 20:05,"321 13th St, Boston, MA 02215" -170809,Lightning Charging Cable,1,14.95,03/10/19 10:14,"383 Elm St, Los Angeles, CA 90001" -170810,Apple Airpods Headphones,1,150,03/31/19 23:21,"177 Madison St, New York City, NY 10001" -170811,AAA Batteries (4-pack),1,2.99,03/13/19 21:33,"396 Main St, San Francisco, CA 94016" -170812,iPhone,1,700,03/06/19 19:43,"353 Walnut St, Los Angeles, CA 90001" -170813,Lightning Charging Cable,1,14.95,03/09/19 11:14,"616 Forest St, Seattle, WA 98101" -170814,Apple Airpods Headphones,1,150,03/19/19 17:03,"476 12th St, Los Angeles, CA 90001" -170815,LG Washing Machine,1,600.0,03/23/19 15:40,"743 Hickory St, San Francisco, CA 94016" -170816,AAA Batteries (4-pack),1,2.99,03/31/19 23:17,"739 Jefferson St, Boston, MA 02215" -170817,USB-C Charging Cable,2,11.95,03/10/19 10:29,"961 1st St, New York City, NY 10001" -170818,Macbook Pro Laptop,1,1700,03/13/19 20:54,"587 North St, Austin, TX 73301" -170819,USB-C Charging Cable,1,11.95,03/18/19 14:47,"610 1st St, San Francisco, CA 94016" -170819,Google Phone,1,600,03/18/19 14:47,"610 1st St, San Francisco, CA 94016" -170820,Apple Airpods Headphones,1,150,03/29/19 17:48,"96 North St, New York City, NY 10001" -170821,AAA Batteries (4-pack),1,2.99,03/17/19 09:05,"16 4th St, San Francisco, CA 94016" -170822,Lightning Charging Cable,1,14.95,03/11/19 10:55,"700 Washington St, Atlanta, GA 30301" -170823,Wired Headphones,1,11.99,03/12/19 14:19,"499 8th St, San Francisco, CA 94016" -170824,iPhone,1,700,03/10/19 14:26,"649 12th St, Los Angeles, CA 90001" -170825,AA Batteries (4-pack),1,3.84,03/25/19 13:23,"240 Park St, Boston, MA 02215" -170826,Apple Airpods Headphones,1,150,03/06/19 14:35,"574 Hickory St, San Francisco, CA 94016" -170827,Lightning Charging Cable,1,14.95,03/08/19 12:17,"939 7th St, Los Angeles, CA 90001" -170828,Wired Headphones,1,11.99,03/07/19 10:33,"288 Lakeview St, Atlanta, GA 30301" -170829,USB-C Charging Cable,1,11.95,03/20/19 15:44,"922 Maple St, Dallas, TX 75001" -170830,Lightning Charging Cable,1,14.95,03/25/19 18:10,"617 13th St, Boston, MA 02215" -170831,Apple Airpods Headphones,1,150,03/12/19 13:39,"378 Meadow St, San Francisco, CA 94016" -170832,Lightning Charging Cable,1,14.95,03/02/19 11:46,"902 Elm St, New York City, NY 10001" -170833,AAA Batteries (4-pack),1,2.99,03/05/19 13:15,"346 Johnson St, New York City, NY 10001" -170834,34in Ultrawide Monitor,1,379.99,03/26/19 20:50,"170 Meadow St, Portland, OR 97035" -170835,USB-C Charging Cable,1,11.95,03/20/19 22:19,"471 Cedar St, Boston, MA 02215" -170836,Macbook Pro Laptop,1,1700,03/26/19 14:51,"932 Sunset St, Seattle, WA 98101" -170837,Bose SoundSport Headphones,1,99.99,03/03/19 12:16,"929 Walnut St, New York City, NY 10001" -170838,Lightning Charging Cable,1,14.95,03/07/19 23:23,"787 Wilson St, Atlanta, GA 30301" -170839,AAA Batteries (4-pack),1,2.99,03/29/19 18:55,"452 8th St, New York City, NY 10001" -170840,27in 4K Gaming Monitor,1,389.99,03/10/19 18:11,"926 7th St, Boston, MA 02215" -170841,27in FHD Monitor,1,149.99,03/08/19 16:18,"954 Lake St, San Francisco, CA 94016" -170842,Bose SoundSport Headphones,1,99.99,03/19/19 22:07,"745 5th St, New York City, NY 10001" -170843,AAA Batteries (4-pack),1,2.99,03/25/19 13:46,"426 Lake St, New York City, NY 10001" -170844,Wired Headphones,1,11.99,03/16/19 18:16,"946 Cedar St, Los Angeles, CA 90001" -170845,Bose SoundSport Headphones,1,99.99,03/29/19 16:44,"662 Lake St, Austin, TX 73301" -170846,27in FHD Monitor,1,149.99,03/24/19 09:22,"921 12th St, New York City, NY 10001" -170847,27in FHD Monitor,1,149.99,03/04/19 19:00,"200 Washington St, New York City, NY 10001" -170848,Apple Airpods Headphones,1,150,03/27/19 12:39,"61 Wilson St, New York City, NY 10001" -170849,Lightning Charging Cable,1,14.95,03/31/19 06:45,"675 7th St, Boston, MA 02215" -170850,Wired Headphones,1,11.99,03/17/19 05:54,"83 Hickory St, San Francisco, CA 94016" -170851,USB-C Charging Cable,1,11.95,03/12/19 21:46,"554 Lincoln St, Seattle, WA 98101" -170852,USB-C Charging Cable,1,11.95,03/26/19 22:23,"707 Washington St, Portland, OR 97035" -170853,USB-C Charging Cable,1,11.95,03/10/19 00:22,"75 Spruce St, Los Angeles, CA 90001" -170854,ThinkPad Laptop,1,999.99,03/07/19 08:44,"908 Spruce St, San Francisco, CA 94016" -170855,Flatscreen TV,1,300,03/28/19 15:52,"451 Pine St, Atlanta, GA 30301" -170856,USB-C Charging Cable,1,11.95,03/08/19 15:50,"500 South St, Seattle, WA 98101" -170857,Macbook Pro Laptop,1,1700,03/31/19 17:38,"232 5th St, Los Angeles, CA 90001" -170858,USB-C Charging Cable,1,11.95,03/16/19 19:16,"853 Center St, Portland, ME 04101" -170859,Lightning Charging Cable,1,14.95,03/11/19 19:48,"414 4th St, Los Angeles, CA 90001" -170860,AAA Batteries (4-pack),1,2.99,03/08/19 23:42,"14 Jackson St, Boston, MA 02215" -170861,AA Batteries (4-pack),1,3.84,03/15/19 00:25,"932 Church St, Los Angeles, CA 90001" -170862,Macbook Pro Laptop,1,1700,03/26/19 20:58,"791 Wilson St, Los Angeles, CA 90001" -170863,Lightning Charging Cable,1,14.95,03/25/19 15:03,"112 Center St, San Francisco, CA 94016" -170864,AAA Batteries (4-pack),1,2.99,03/19/19 21:26,"485 Spruce St, Austin, TX 73301" -170865,iPhone,1,700,03/02/19 10:23,"43 Jefferson St, Los Angeles, CA 90001" -170866,Bose SoundSport Headphones,2,99.99,03/12/19 19:22,"500 Hill St, Boston, MA 02215" -170867,AA Batteries (4-pack),1,3.84,03/18/19 20:26,"357 Cherry St, Austin, TX 73301" -170868,ThinkPad Laptop,1,999.99,03/14/19 18:35,"331 Sunset St, San Francisco, CA 94016" -170869,Lightning Charging Cable,2,14.95,03/26/19 11:22,"138 Lakeview St, New York City, NY 10001" -170870,20in Monitor,1,109.99,03/10/19 12:39,"908 Elm St, Boston, MA 02215" -170871,USB-C Charging Cable,1,11.95,03/06/19 17:04,"943 Wilson St, San Francisco, CA 94016" -170872,27in 4K Gaming Monitor,1,389.99,03/19/19 12:45,"590 Ridge St, Austin, TX 73301" -170873,Flatscreen TV,1,300,03/21/19 10:21,"559 Lincoln St, Los Angeles, CA 90001" -170874,20in Monitor,1,109.99,03/05/19 13:45,"136 Adams St, Dallas, TX 75001" -170875,Macbook Pro Laptop,1,1700,03/19/19 18:46,"745 1st St, Dallas, TX 75001" -170876,27in 4K Gaming Monitor,1,389.99,03/01/19 21:20,"869 Hickory St, Portland, OR 97035" -170877,27in 4K Gaming Monitor,1,389.99,03/11/19 13:29,"729 Madison St, Atlanta, GA 30301" -170878,Wired Headphones,1,11.99,03/20/19 12:07,"985 13th St, San Francisco, CA 94016" -170879,AA Batteries (4-pack),3,3.84,03/10/19 09:09,"192 7th St, Boston, MA 02215" -170880,ThinkPad Laptop,1,999.99,03/07/19 21:59,"540 North St, San Francisco, CA 94016" -170881,Wired Headphones,1,11.99,03/28/19 14:07,"736 8th St, Los Angeles, CA 90001" -170882,USB-C Charging Cable,1,11.95,03/17/19 21:21,"231 Walnut St, Seattle, WA 98101" -170883,Google Phone,1,600,03/31/19 21:10,"931 Chestnut St, Boston, MA 02215" -170884,ThinkPad Laptop,1,999.99,03/28/19 16:17,"925 Elm St, San Francisco, CA 94016" -170885,ThinkPad Laptop,1,999.99,03/25/19 08:32,"37 5th St, Portland, OR 97035" -170886,27in 4K Gaming Monitor,1,389.99,03/28/19 08:07,"762 Elm St, Los Angeles, CA 90001" -170887,AA Batteries (4-pack),1,3.84,03/15/19 18:43,"261 Wilson St, Atlanta, GA 30301" -170888,AA Batteries (4-pack),2,3.84,03/17/19 21:32,"944 Chestnut St, Boston, MA 02215" -170889,Macbook Pro Laptop,1,1700,03/22/19 07:28,"909 1st St, Seattle, WA 98101" -170890,USB-C Charging Cable,1,11.95,03/02/19 19:27,"50 1st St, Austin, TX 73301" -170891,ThinkPad Laptop,1,999.99,03/22/19 01:15,"884 Johnson St, San Francisco, CA 94016" -170892,LG Dryer,1,600.0,03/10/19 10:42,"824 Maple St, Dallas, TX 75001" -170893,27in FHD Monitor,1,149.99,03/06/19 13:59,"222 Highland St, Dallas, TX 75001" -170894,ThinkPad Laptop,1,999.99,03/13/19 12:02,"65 8th St, Los Angeles, CA 90001" -170895,Apple Airpods Headphones,1,150,03/29/19 20:06,"98 Wilson St, Portland, OR 97035" -170896,Lightning Charging Cable,1,14.95,03/07/19 05:13,"761 Jefferson St, San Francisco, CA 94016" -170897,Google Phone,1,600,03/17/19 18:12,"355 Pine St, Los Angeles, CA 90001" -170898,27in 4K Gaming Monitor,1,389.99,03/26/19 15:39,"986 Elm St, San Francisco, CA 94016" -170899,Apple Airpods Headphones,1,150,03/02/19 12:55,"742 South St, Dallas, TX 75001" -170900,AA Batteries (4-pack),2,3.84,03/05/19 20:36,"790 West St, Portland, ME 04101" -170901,Lightning Charging Cable,1,14.95,03/21/19 12:02,"145 Jefferson St, Austin, TX 73301" -170902,AAA Batteries (4-pack),3,2.99,03/31/19 13:29,"57 Pine St, Atlanta, GA 30301" -170903,AAA Batteries (4-pack),1,2.99,03/27/19 18:11,"683 12th St, Dallas, TX 75001" -170904,Google Phone,1,600,03/16/19 16:48,"927 Lakeview St, Boston, MA 02215" -170904,Bose SoundSport Headphones,1,99.99,03/16/19 16:48,"927 Lakeview St, Boston, MA 02215" -170905,Bose SoundSport Headphones,1,99.99,03/11/19 02:05,"265 1st St, San Francisco, CA 94016" -170906,AAA Batteries (4-pack),1,2.99,03/22/19 17:38,"436 Park St, Dallas, TX 75001" -170907,Wired Headphones,1,11.99,03/07/19 20:12,"396 Lincoln St, Austin, TX 73301" -170908,Apple Airpods Headphones,1,150,03/19/19 21:48,"461 Lincoln St, Boston, MA 02215" -170909,20in Monitor,1,109.99,03/27/19 12:20,"365 North St, Portland, OR 97035" -170910,Apple Airpods Headphones,1,150,03/26/19 11:09,"894 9th St, Portland, OR 97035" -170911,AA Batteries (4-pack),1,3.84,03/30/19 21:08,"989 8th St, Seattle, WA 98101" -170912,Wired Headphones,1,11.99,03/09/19 10:39,"137 11th St, Portland, ME 04101" -170913,Bose SoundSport Headphones,1,99.99,03/18/19 21:42,"249 Lake St, Portland, OR 97035" -170914,AAA Batteries (4-pack),1,2.99,03/11/19 17:48,"381 Jefferson St, Austin, TX 73301" -170915,Wired Headphones,1,11.99,03/19/19 09:01,"262 Willow St, Boston, MA 02215" -170916,USB-C Charging Cable,1,11.95,03/13/19 10:20,"857 Hill St, New York City, NY 10001" -170917,ThinkPad Laptop,1,999.99,03/18/19 14:29,"79 Wilson St, San Francisco, CA 94016" -170918,Lightning Charging Cable,2,14.95,03/29/19 12:05,"750 8th St, Boston, MA 02215" -170919,Wired Headphones,1,11.99,03/25/19 07:51,"562 Johnson St, San Francisco, CA 94016" -170920,Wired Headphones,1,11.99,03/09/19 06:17,"195 Elm St, Seattle, WA 98101" -170921,27in 4K Gaming Monitor,1,389.99,03/16/19 13:15,"143 Madison St, New York City, NY 10001" -170922,27in FHD Monitor,1,149.99,03/25/19 21:34,"491 7th St, Los Angeles, CA 90001" -170923,Bose SoundSport Headphones,1,99.99,03/20/19 13:39,"272 12th St, Atlanta, GA 30301" -170924,USB-C Charging Cable,1,11.95,03/26/19 17:29,"695 Lakeview St, Dallas, TX 75001" -170925,Lightning Charging Cable,1,14.95,03/01/19 11:15,"328 Center St, Boston, MA 02215" -170926,Macbook Pro Laptop,1,1700,03/11/19 10:12,"260 Walnut St, Austin, TX 73301" -170927,Lightning Charging Cable,1,14.95,03/18/19 20:42,"136 Center St, Seattle, WA 98101" -170928,34in Ultrawide Monitor,1,379.99,03/18/19 13:50,"173 Lakeview St, Los Angeles, CA 90001" -170929,AAA Batteries (4-pack),1,2.99,03/28/19 07:37,"822 Highland St, San Francisco, CA 94016" -170930,Apple Airpods Headphones,1,150,03/01/19 13:21,"554 Forest St, San Francisco, CA 94016" -170931,Bose SoundSport Headphones,1,99.99,03/30/19 05:49,"522 Sunset St, Los Angeles, CA 90001" -170932,Macbook Pro Laptop,1,1700,03/05/19 11:52,"330 Lake St, Atlanta, GA 30301" -170933,AAA Batteries (4-pack),1,2.99,03/06/19 08:26,"703 Adams St, Atlanta, GA 30301" -170934,AAA Batteries (4-pack),1,2.99,03/10/19 16:49,"694 5th St, Seattle, WA 98101" -170935,Lightning Charging Cable,1,14.95,03/20/19 20:44,"511 Chestnut St, New York City, NY 10001" -170936,AA Batteries (4-pack),1,3.84,03/01/19 09:09,"512 Meadow St, New York City, NY 10001" -170937,AA Batteries (4-pack),1,3.84,03/14/19 20:04,"683 10th St, Seattle, WA 98101" -170938,AAA Batteries (4-pack),1,2.99,03/04/19 03:17,"708 7th St, San Francisco, CA 94016" -170939,Lightning Charging Cable,1,14.95,03/18/19 22:05,"139 7th St, New York City, NY 10001" -170940,iPhone,1,700,03/20/19 17:33,"251 Spruce St, Dallas, TX 75001" -170941,Lightning Charging Cable,1,14.95,03/31/19 14:30,"400 Hill St, Los Angeles, CA 90001" -170942,Lightning Charging Cable,1,14.95,03/10/19 20:55,"265 West St, San Francisco, CA 94016" -170943,AA Batteries (4-pack),1,3.84,03/18/19 09:33,"163 Cherry St, Atlanta, GA 30301" -170944,USB-C Charging Cable,1,11.95,03/20/19 08:46,"95 Lakeview St, San Francisco, CA 94016" -170945,USB-C Charging Cable,1,11.95,03/02/19 18:06,"17 Center St, Los Angeles, CA 90001" -170946,AA Batteries (4-pack),1,3.84,03/23/19 19:51,"346 Hill St, Portland, OR 97035" -170947,Apple Airpods Headphones,1,150,03/07/19 00:26,"404 Adams St, Los Angeles, CA 90001" -170948,Wired Headphones,1,11.99,03/20/19 13:54,"444 Spruce St, Atlanta, GA 30301" -170949,Bose SoundSport Headphones,1,99.99,03/09/19 10:12,"162 Spruce St, Seattle, WA 98101" -170950,Lightning Charging Cable,1,14.95,03/18/19 12:33,"761 Jackson St, Los Angeles, CA 90001" -170951,Apple Airpods Headphones,1,150,03/20/19 18:41,"488 14th St, Los Angeles, CA 90001" -170952,Macbook Pro Laptop,1,1700,03/25/19 20:13,"96 Hickory St, Dallas, TX 75001" -170953,Google Phone,1,600,03/04/19 21:49,"85 Washington St, San Francisco, CA 94016" -170954,AAA Batteries (4-pack),1,2.99,03/19/19 21:50,"335 Washington St, San Francisco, CA 94016" -170955,USB-C Charging Cable,1,11.95,03/22/19 18:32,"149 Main St, Austin, TX 73301" -170956,Wired Headphones,1,11.99,03/13/19 10:55,"870 Church St, Atlanta, GA 30301" -170957,Bose SoundSport Headphones,1,99.99,03/06/19 19:08,"364 Cherry St, Seattle, WA 98101" -170958,AA Batteries (4-pack),1,3.84,03/25/19 22:36,"993 Washington St, Los Angeles, CA 90001" -170959,Wired Headphones,1,11.99,03/29/19 17:29,"176 Center St, Boston, MA 02215" -170960,USB-C Charging Cable,1,11.95,03/05/19 23:21,"117 River St, Boston, MA 02215" -170961,27in FHD Monitor,1,149.99,03/27/19 17:18,"862 Washington St, Portland, OR 97035" -170962,AAA Batteries (4-pack),1,2.99,03/05/19 15:10,"805 12th St, New York City, NY 10001" -170963,Apple Airpods Headphones,1,150,03/27/19 09:54,"497 7th St, Boston, MA 02215" -170964,Apple Airpods Headphones,1,150,03/13/19 22:53,"322 Lincoln St, San Francisco, CA 94016" -170964,Google Phone,1,600,03/13/19 22:53,"322 Lincoln St, San Francisco, CA 94016" -170965,Apple Airpods Headphones,1,150,03/26/19 11:23,"128 Park St, Los Angeles, CA 90001" -170966,27in FHD Monitor,1,149.99,03/02/19 11:35,"562 4th St, Dallas, TX 75001" -170967,Bose SoundSport Headphones,1,99.99,03/22/19 06:45,"884 South St, New York City, NY 10001" -170968,ThinkPad Laptop,1,999.99,03/18/19 19:21,"555 13th St, New York City, NY 10001" -170969,Wired Headphones,1,11.99,03/12/19 15:09,"161 Cedar St, Los Angeles, CA 90001" -170970,Flatscreen TV,1,300,03/12/19 11:41,"58 8th St, New York City, NY 10001" -170971,Lightning Charging Cable,1,14.95,03/29/19 16:09,"593 8th St, San Francisco, CA 94016" -170972,27in FHD Monitor,1,149.99,03/11/19 18:25,"155 12th St, Portland, ME 04101" -170973,Apple Airpods Headphones,1,150,03/22/19 00:27,"223 Jefferson St, Boston, MA 02215" -170974,AAA Batteries (4-pack),2,2.99,03/31/19 11:35,"102 Cherry St, San Francisco, CA 94016" -170975,AA Batteries (4-pack),2,3.84,03/10/19 06:58,"808 12th St, San Francisco, CA 94016" -170976,27in FHD Monitor,1,149.99,03/01/19 20:05,"879 Church St, Seattle, WA 98101" -170977,USB-C Charging Cable,1,11.95,03/18/19 13:03,"229 Jackson St, Boston, MA 02215" -170978,USB-C Charging Cable,1,11.95,03/12/19 22:55,"909 Adams St, Austin, TX 73301" -170979,AA Batteries (4-pack),1,3.84,03/29/19 11:18,"351 Walnut St, Boston, MA 02215" -170979,Macbook Pro Laptop,1,1700,03/29/19 11:18,"351 Walnut St, Boston, MA 02215" -170980,Lightning Charging Cable,1,14.95,03/21/19 20:03,"638 Forest St, Atlanta, GA 30301" -170981,USB-C Charging Cable,1,11.95,03/31/19 19:53,"63 Elm St, Los Angeles, CA 90001" -170982,AAA Batteries (4-pack),3,2.99,03/07/19 15:30,"676 West St, New York City, NY 10001" -170983,Wired Headphones,1,11.99,03/10/19 10:30,"737 Forest St, Dallas, TX 75001" -170984,34in Ultrawide Monitor,1,379.99,03/24/19 15:38,"254 8th St, Austin, TX 73301" -170984,USB-C Charging Cable,1,11.95,03/24/19 15:38,"254 8th St, Austin, TX 73301" -170985,USB-C Charging Cable,1,11.95,03/14/19 06:13,"2 Pine St, Seattle, WA 98101" -170986,Google Phone,1,600,03/08/19 13:05,"499 Lakeview St, San Francisco, CA 94016" -170986,USB-C Charging Cable,1,11.95,03/08/19 13:05,"499 Lakeview St, San Francisco, CA 94016" -170987,Lightning Charging Cable,1,14.95,03/30/19 01:50,"986 6th St, Austin, TX 73301" -170988,Apple Airpods Headphones,1,150,03/20/19 17:27,"984 Walnut St, San Francisco, CA 94016" -170989,34in Ultrawide Monitor,1,379.99,03/17/19 17:12,"435 Jackson St, Los Angeles, CA 90001" -170990,AA Batteries (4-pack),1,3.84,03/17/19 13:30,"830 Pine St, New York City, NY 10001" -170991,iPhone,1,700,03/18/19 18:11,"493 Sunset St, New York City, NY 10001" -170992,Apple Airpods Headphones,1,150,03/01/19 15:39,"133 Cherry St, Austin, TX 73301" -170993,USB-C Charging Cable,1,11.95,03/23/19 18:53,"839 Cherry St, Los Angeles, CA 90001" -170994,AA Batteries (4-pack),2,3.84,03/04/19 23:26,"539 South St, San Francisco, CA 94016" -170995,Wired Headphones,1,11.99,03/30/19 15:39,"402 Hickory St, San Francisco, CA 94016" -170996,27in 4K Gaming Monitor,1,389.99,03/08/19 14:28,"572 5th St, New York City, NY 10001" -170997,USB-C Charging Cable,1,11.95,03/20/19 11:38,"653 11th St, Atlanta, GA 30301" -170998,Bose SoundSport Headphones,1,99.99,03/02/19 20:38,"369 Meadow St, Los Angeles, CA 90001" -170999,Bose SoundSport Headphones,1,99.99,03/09/19 09:52,"885 Cherry St, Dallas, TX 75001" -171000,27in 4K Gaming Monitor,1,389.99,03/05/19 06:22,"225 Adams St, San Francisco, CA 94016" -171001,AAA Batteries (4-pack),1,2.99,03/27/19 19:06,"914 Dogwood St, Boston, MA 02215" -171002,AAA Batteries (4-pack),1,2.99,03/04/19 09:15,"125 1st St, Los Angeles, CA 90001" -171003,Lightning Charging Cable,1,14.95,03/18/19 10:51,"747 7th St, Portland, OR 97035" -171004,Bose SoundSport Headphones,1,99.99,03/07/19 20:37,"440 Church St, Los Angeles, CA 90001" -171005,Google Phone,1,600,03/16/19 13:07,"713 Ridge St, Los Angeles, CA 90001" -171006,AA Batteries (4-pack),1,3.84,03/23/19 08:28,"573 2nd St, Austin, TX 73301" -171007,iPhone,1,700,03/22/19 16:12,"512 Elm St, San Francisco, CA 94016" -171008,AA Batteries (4-pack),2,3.84,03/03/19 10:01,"754 9th St, San Francisco, CA 94016" -171009,Apple Airpods Headphones,1,150,03/25/19 08:58,"735 Walnut St, Austin, TX 73301" -171010,Wired Headphones,1,11.99,03/23/19 08:57,"788 South St, Los Angeles, CA 90001" -171011,USB-C Charging Cable,1,11.95,03/07/19 14:36,"32 Cedar St, San Francisco, CA 94016" -171012,Wired Headphones,1,11.99,03/13/19 22:15,"477 5th St, San Francisco, CA 94016" -171013,Apple Airpods Headphones,1,150,03/25/19 23:52,"610 Church St, San Francisco, CA 94016" -171014,AA Batteries (4-pack),1,3.84,03/02/19 08:47,"634 1st St, Boston, MA 02215" -171015,27in FHD Monitor,1,149.99,03/19/19 14:17,"930 Pine St, Atlanta, GA 30301" -171016,Flatscreen TV,1,300,03/05/19 02:36,"393 8th St, San Francisco, CA 94016" -171017,Apple Airpods Headphones,1,150,03/14/19 13:20,"611 Wilson St, San Francisco, CA 94016" -171017,Lightning Charging Cable,1,14.95,03/14/19 13:20,"611 Wilson St, San Francisco, CA 94016" -171018,Wired Headphones,2,11.99,03/22/19 09:37,"616 2nd St, Austin, TX 73301" -171019,Flatscreen TV,1,300,03/14/19 23:02,"959 Willow St, Portland, OR 97035" -171020,AAA Batteries (4-pack),2,2.99,03/15/19 09:52,"137 River St, Dallas, TX 75001" -171021,iPhone,1,700,03/16/19 21:02,"582 West St, Los Angeles, CA 90001" -171022,Lightning Charging Cable,1,14.95,03/21/19 19:07,"244 Adams St, New York City, NY 10001" -171023,USB-C Charging Cable,1,11.95,03/13/19 12:37,"189 1st St, Los Angeles, CA 90001" -171024,AAA Batteries (4-pack),3,2.99,03/25/19 15:32,"980 Lake St, Austin, TX 73301" -171025,Apple Airpods Headphones,1,150,03/29/19 20:19,"238 West St, Dallas, TX 75001" -171026,USB-C Charging Cable,1,11.95,03/07/19 12:34,"736 Cedar St, Los Angeles, CA 90001" -171026,AAA Batteries (4-pack),2,2.99,03/07/19 12:34,"736 Cedar St, Los Angeles, CA 90001" -171027,Macbook Pro Laptop,1,1700,03/22/19 08:12,"840 Hickory St, San Francisco, CA 94016" -171028,Lightning Charging Cable,1,14.95,03/17/19 18:55,"849 Center St, Los Angeles, CA 90001" -171029,AAA Batteries (4-pack),1,2.99,03/08/19 19:35,"816 Lakeview St, San Francisco, CA 94016" -171030,AAA Batteries (4-pack),1,2.99,03/18/19 19:20,"560 Chestnut St, Los Angeles, CA 90001" -171031,Lightning Charging Cable,1,14.95,03/31/19 09:49,"472 Pine St, San Francisco, CA 94016" -171032,Macbook Pro Laptop,1,1700,03/25/19 14:40,"825 Jefferson St, Portland, ME 04101" -171033,AA Batteries (4-pack),1,3.84,03/23/19 14:56,"886 Ridge St, Dallas, TX 75001" -171034,27in FHD Monitor,1,149.99,03/06/19 19:47,"945 4th St, San Francisco, CA 94016" -171035,AAA Batteries (4-pack),1,2.99,03/21/19 18:41,"224 7th St, New York City, NY 10001" -171036,Bose SoundSport Headphones,1,99.99,03/23/19 11:47,"771 7th St, Los Angeles, CA 90001" -171037,AAA Batteries (4-pack),1,2.99,03/16/19 12:29,"719 Main St, Portland, OR 97035" -171038,iPhone,1,700,03/15/19 17:15,"828 South St, Austin, TX 73301" -171039,Lightning Charging Cable,1,14.95,03/16/19 15:32,"377 Park St, San Francisco, CA 94016" -171040,LG Washing Machine,1,600.0,03/27/19 19:48,"170 14th St, Los Angeles, CA 90001" -171041,iPhone,1,700,03/11/19 12:23,"581 Jackson St, Portland, OR 97035" -171042,USB-C Charging Cable,2,11.95,03/19/19 20:46,"763 West St, New York City, NY 10001" -171043,Bose SoundSport Headphones,1,99.99,03/23/19 21:52,"208 12th St, Seattle, WA 98101" -171044,Lightning Charging Cable,1,14.95,03/02/19 18:51,"750 Church St, New York City, NY 10001" -171045,Lightning Charging Cable,1,14.95,03/28/19 15:59,"423 Meadow St, Boston, MA 02215" -171046,27in FHD Monitor,1,149.99,03/03/19 14:32,"196 6th St, San Francisco, CA 94016" -171047,Bose SoundSport Headphones,1,99.99,03/09/19 19:38,"764 4th St, Austin, TX 73301" -171048,Wired Headphones,1,11.99,03/04/19 12:38,"227 South St, Dallas, TX 75001" -171049,USB-C Charging Cable,1,11.95,03/04/19 18:05,"220 1st St, Portland, OR 97035" -171050,27in FHD Monitor,1,149.99,03/04/19 12:53,"895 Cherry St, Seattle, WA 98101" -171051,Wired Headphones,2,11.99,03/15/19 14:56,"459 Dogwood St, Atlanta, GA 30301" -171052,USB-C Charging Cable,1,11.95,03/15/19 13:58,"526 6th St, Los Angeles, CA 90001" -171053,USB-C Charging Cable,1,11.95,03/09/19 20:14,"995 11th St, Dallas, TX 75001" -171054,iPhone,1,700,03/13/19 13:34,"748 Jackson St, New York City, NY 10001" -171055,Lightning Charging Cable,1,14.95,03/04/19 20:20,"964 10th St, Los Angeles, CA 90001" -171056,AAA Batteries (4-pack),3,2.99,03/30/19 21:16,"369 Spruce St, San Francisco, CA 94016" -171057,27in 4K Gaming Monitor,1,389.99,03/28/19 00:07,"179 Park St, New York City, NY 10001" -171058,USB-C Charging Cable,1,11.95,03/20/19 10:31,"526 Sunset St, San Francisco, CA 94016" -171059,Wired Headphones,1,11.99,03/07/19 11:53,"720 Lakeview St, Boston, MA 02215" -171060,Lightning Charging Cable,1,14.95,03/27/19 12:04,"419 Ridge St, Los Angeles, CA 90001" -171061,Apple Airpods Headphones,1,150,03/24/19 09:23,"657 Forest St, Portland, OR 97035" -171062,USB-C Charging Cable,1,11.95,03/09/19 21:24,"640 6th St, Austin, TX 73301" -171063,Vareebadd Phone,1,400,03/13/19 11:26,"726 South St, San Francisco, CA 94016" -171064,Bose SoundSport Headphones,1,99.99,03/02/19 12:59,"310 North St, Los Angeles, CA 90001" -171065,Bose SoundSport Headphones,1,99.99,03/27/19 22:19,"885 10th St, Atlanta, GA 30301" -171066,Lightning Charging Cable,1,14.95,03/23/19 10:32,"523 Maple St, San Francisco, CA 94016" -171067,27in 4K Gaming Monitor,1,389.99,03/04/19 10:38,"794 13th St, Atlanta, GA 30301" -171068,USB-C Charging Cable,1,11.95,03/26/19 10:19,"817 Chestnut St, Atlanta, GA 30301" -171069,AAA Batteries (4-pack),1,2.99,03/07/19 14:01,"558 Madison St, New York City, NY 10001" -171070,AAA Batteries (4-pack),2,2.99,03/06/19 10:05,"760 Lakeview St, Boston, MA 02215" -171071,USB-C Charging Cable,1,11.95,03/06/19 23:41,"311 9th St, New York City, NY 10001" -171072,Lightning Charging Cable,1,14.95,03/08/19 23:11,"790 Johnson St, Los Angeles, CA 90001" -171073,Lightning Charging Cable,1,14.95,03/24/19 02:16,"59 River St, Portland, OR 97035" -171074,Google Phone,1,600,03/29/19 20:58,"408 Pine St, Los Angeles, CA 90001" -171074,USB-C Charging Cable,1,11.95,03/29/19 20:58,"408 Pine St, Los Angeles, CA 90001" -171075,Wired Headphones,1,11.99,03/11/19 06:28,"692 Dogwood St, San Francisco, CA 94016" -171076,Apple Airpods Headphones,1,150,03/04/19 14:39,"164 13th St, Los Angeles, CA 90001" -171076,iPhone,1,700,03/04/19 14:39,"164 13th St, Los Angeles, CA 90001" -171077,27in 4K Gaming Monitor,1,389.99,03/04/19 20:33,"791 Jackson St, Seattle, WA 98101" -171078,Lightning Charging Cable,1,14.95,03/19/19 15:54,"376 Highland St, San Francisco, CA 94016" -171079,Lightning Charging Cable,2,14.95,03/22/19 19:18,"774 10th St, Austin, TX 73301" -171080,AAA Batteries (4-pack),5,2.99,03/26/19 15:38,"858 Ridge St, Boston, MA 02215" -171081,AA Batteries (4-pack),3,3.84,03/12/19 12:42,"622 Pine St, Los Angeles, CA 90001" -171082,USB-C Charging Cable,2,11.95,03/18/19 11:12,"809 Johnson St, Dallas, TX 75001" -171083,Wired Headphones,1,11.99,03/13/19 07:54,"196 Jackson St, Austin, TX 73301" -171084,Apple Airpods Headphones,1,150,03/21/19 13:08,"642 North St, Portland, ME 04101" -171085,Bose SoundSport Headphones,1,99.99,03/25/19 12:40,"439 Ridge St, Los Angeles, CA 90001" -171086,Wired Headphones,1,11.99,03/23/19 22:20,"203 9th St, New York City, NY 10001" -171087,AA Batteries (4-pack),2,3.84,03/11/19 17:15,"221 Spruce St, Los Angeles, CA 90001" -171088,AA Batteries (4-pack),1,3.84,03/31/19 20:17,"704 Johnson St, San Francisco, CA 94016" -171089,Lightning Charging Cable,2,14.95,03/16/19 16:21,"390 13th St, San Francisco, CA 94016" -171090,27in FHD Monitor,1,149.99,03/12/19 16:58,"23 Johnson St, Seattle, WA 98101" -171091,USB-C Charging Cable,1,11.95,03/08/19 00:30,"839 Center St, Portland, ME 04101" -171092,34in Ultrawide Monitor,1,379.99,03/27/19 10:05,"538 Jackson St, Seattle, WA 98101" -171093,USB-C Charging Cable,1,11.95,03/20/19 12:01,"176 Sunset St, Los Angeles, CA 90001" -171094,27in 4K Gaming Monitor,1,389.99,03/16/19 21:25,"734 Walnut St, New York City, NY 10001" -171094,Flatscreen TV,1,300,03/16/19 21:25,"734 Walnut St, New York City, NY 10001" -171095,Wired Headphones,1,11.99,03/31/19 09:33,"285 Jefferson St, Los Angeles, CA 90001" -171096,USB-C Charging Cable,1,11.95,03/11/19 17:04,"446 Forest St, Dallas, TX 75001" -171097,AAA Batteries (4-pack),1,2.99,03/17/19 10:04,"716 Main St, San Francisco, CA 94016" -171098,27in 4K Gaming Monitor,1,389.99,03/07/19 14:24,"983 Adams St, San Francisco, CA 94016" -171099,Wired Headphones,1,11.99,03/25/19 12:13,"855 Meadow St, New York City, NY 10001" -171100,USB-C Charging Cable,1,11.95,03/04/19 18:39,"523 4th St, San Francisco, CA 94016" -,,,,, -171101,Bose SoundSport Headphones,1,99.99,03/30/19 21:02,"426 9th St, Boston, MA 02215" -171102,27in 4K Gaming Monitor,1,389.99,03/21/19 14:19,"339 Dogwood St, San Francisco, CA 94016" -171103,Wired Headphones,1,11.99,03/22/19 20:48,"75 Adams St, Los Angeles, CA 90001" -171104,USB-C Charging Cable,1,11.95,03/29/19 23:24,"527 Chestnut St, Seattle, WA 98101" -171105,AAA Batteries (4-pack),1,2.99,03/20/19 23:22,"711 Ridge St, San Francisco, CA 94016" -171106,34in Ultrawide Monitor,1,379.99,03/15/19 12:27,"110 14th St, Dallas, TX 75001" -171107,Lightning Charging Cable,1,14.95,03/21/19 13:01,"268 Maple St, New York City, NY 10001" -171108,AAA Batteries (4-pack),1,2.99,03/03/19 09:23,"691 2nd St, New York City, NY 10001" -171109,AAA Batteries (4-pack),1,2.99,03/21/19 14:00,"245 Sunset St, Portland, OR 97035" -171110,AA Batteries (4-pack),1,3.84,03/03/19 19:41,"82 7th St, Los Angeles, CA 90001" -171111,Lightning Charging Cable,1,14.95,03/29/19 13:21,"650 River St, San Francisco, CA 94016" -171112,AA Batteries (4-pack),1,3.84,03/02/19 16:59,"47 12th St, Atlanta, GA 30301" -171113,Flatscreen TV,1,300,03/04/19 10:02,"512 River St, San Francisco, CA 94016" -171114,iPhone,1,700,03/07/19 09:14,"458 Church St, Dallas, TX 75001" -171114,Lightning Charging Cable,1,14.95,03/07/19 09:14,"458 Church St, Dallas, TX 75001" -171115,27in 4K Gaming Monitor,1,389.99,03/19/19 15:33,"937 Washington St, Seattle, WA 98101" -171116,Bose SoundSport Headphones,1,99.99,03/27/19 20:22,"86 Hill St, San Francisco, CA 94016" -171117,AAA Batteries (4-pack),1,2.99,03/26/19 18:23,"265 Lake St, New York City, NY 10001" -171118,AA Batteries (4-pack),3,3.84,03/28/19 19:18,"863 Willow St, Los Angeles, CA 90001" -171119,iPhone,1,700,03/31/19 16:00,"723 6th St, Los Angeles, CA 90001" -171120,AA Batteries (4-pack),1,3.84,03/29/19 22:57,"994 Lincoln St, Seattle, WA 98101" -171121,AAA Batteries (4-pack),1,2.99,03/31/19 18:11,"652 Highland St, Seattle, WA 98101" -171122,Lightning Charging Cable,1,14.95,03/08/19 13:07,"861 Chestnut St, San Francisco, CA 94016" -171123,Wired Headphones,1,11.99,03/14/19 21:27,"766 North St, Portland, ME 04101" -171124,LG Washing Machine,1,600.0,03/22/19 22:45,"425 Center St, Atlanta, GA 30301" -171125,USB-C Charging Cable,2,11.95,03/13/19 11:39,"741 12th St, Dallas, TX 75001" -171126,Bose SoundSport Headphones,1,99.99,03/09/19 10:22,"41 2nd St, Seattle, WA 98101" -171127,Lightning Charging Cable,1,14.95,03/01/19 23:46,"231 11th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -171128,USB-C Charging Cable,1,11.95,03/19/19 12:07,"492 Hickory St, San Francisco, CA 94016" -171129,AA Batteries (4-pack),1,3.84,03/31/19 16:57,"296 9th St, Austin, TX 73301" -171130,iPhone,1,700,03/25/19 11:32,"956 Hill St, Seattle, WA 98101" -171131,USB-C Charging Cable,1,11.95,03/23/19 14:32,"2 14th St, Los Angeles, CA 90001" -171132,AAA Batteries (4-pack),2,2.99,03/11/19 15:14,"118 Washington St, San Francisco, CA 94016" -171133,Macbook Pro Laptop,1,1700,03/26/19 13:18,"207 Church St, Portland, ME 04101" -171134,Wired Headphones,1,11.99,03/09/19 03:45,"883 River St, Los Angeles, CA 90001" -171135,USB-C Charging Cable,1,11.95,03/30/19 13:24,"73 Wilson St, New York City, NY 10001" -171136,USB-C Charging Cable,1,11.95,03/01/19 18:57,"401 Dogwood St, New York City, NY 10001" -171137,iPhone,1,700,03/19/19 16:28,"211 Chestnut St, Portland, OR 97035" -171138,AAA Batteries (4-pack),2,2.99,03/19/19 16:33,"459 Cherry St, New York City, NY 10001" -171139,Bose SoundSport Headphones,1,99.99,03/11/19 21:28,"972 Willow St, Austin, TX 73301" -171140,AAA Batteries (4-pack),1,2.99,03/05/19 15:33,"633 Center St, Dallas, TX 75001" -171141,USB-C Charging Cable,1,11.95,03/29/19 19:22,"156 10th St, San Francisco, CA 94016" -171142,USB-C Charging Cable,2,11.95,03/01/19 10:34,"464 Lake St, Los Angeles, CA 90001" -171143,27in 4K Gaming Monitor,1,389.99,03/19/19 20:41,"843 12th St, Los Angeles, CA 90001" -171144,Wired Headphones,1,11.99,03/11/19 14:19,"883 Hickory St, Boston, MA 02215" -171145,Wired Headphones,1,11.99,03/27/19 23:09,"818 River St, Portland, OR 97035" -171146,USB-C Charging Cable,1,11.95,03/25/19 19:05,"679 Hill St, New York City, NY 10001" -171147,Apple Airpods Headphones,1,150,03/27/19 09:05,"317 Ridge St, Dallas, TX 75001" -171148,Bose SoundSport Headphones,1,99.99,03/30/19 13:15,"505 14th St, New York City, NY 10001" -171149,34in Ultrawide Monitor,1,379.99,03/01/19 11:52,"756 Center St, Dallas, TX 75001" -171150,iPhone,1,700,03/03/19 10:45,"931 13th St, Los Angeles, CA 90001" -171151,27in 4K Gaming Monitor,1,389.99,03/21/19 10:55,"236 Dogwood St, Boston, MA 02215" -171152,AA Batteries (4-pack),1,3.84,03/14/19 20:54,"931 Lincoln St, Portland, OR 97035" -171153,Lightning Charging Cable,1,14.95,03/27/19 23:13,"510 Spruce St, San Francisco, CA 94016" -171154,27in FHD Monitor,1,149.99,03/10/19 20:56,"482 Lincoln St, Boston, MA 02215" -171155,Bose SoundSport Headphones,1,99.99,03/14/19 13:13,"827 South St, Austin, TX 73301" -171156,Bose SoundSport Headphones,1,99.99,03/27/19 09:50,"977 1st St, Los Angeles, CA 90001" -171157,Wired Headphones,1,11.99,03/29/19 12:05,"10 Center St, Atlanta, GA 30301" -171158,27in 4K Gaming Monitor,1,389.99,03/13/19 09:20,"454 Church St, Seattle, WA 98101" -171159,AAA Batteries (4-pack),1,2.99,03/19/19 10:27,"899 7th St, New York City, NY 10001" -171160,Flatscreen TV,1,300,03/22/19 21:44,"528 10th St, San Francisco, CA 94016" -171161,AAA Batteries (4-pack),1,2.99,03/23/19 13:38,"300 Forest St, Dallas, TX 75001" -171162,AA Batteries (4-pack),3,3.84,03/24/19 19:49,"738 Madison St, Los Angeles, CA 90001" -171163,iPhone,1,700,03/05/19 16:29,"162 North St, San Francisco, CA 94016" -171164,AA Batteries (4-pack),3,3.84,03/21/19 13:54,"344 Main St, San Francisco, CA 94016" -171165,Flatscreen TV,1,300,03/01/19 22:26,"157 Chestnut St, Los Angeles, CA 90001" -171166,AA Batteries (4-pack),2,3.84,03/13/19 09:11,"828 Church St, Atlanta, GA 30301" -171167,Lightning Charging Cable,1,14.95,03/03/19 11:07,"585 Main St, San Francisco, CA 94016" -171168,Bose SoundSport Headphones,1,99.99,03/09/19 14:23,"149 Church St, Dallas, TX 75001" -171169,Bose SoundSport Headphones,1,99.99,03/13/19 13:27,"218 Lakeview St, Atlanta, GA 30301" -171170,27in 4K Gaming Monitor,1,389.99,03/23/19 18:12,"234 6th St, Seattle, WA 98101" -171171,iPhone,1,700,03/24/19 11:32,"737 Lakeview St, Boston, MA 02215" -171171,Apple Airpods Headphones,1,150,03/24/19 11:32,"737 Lakeview St, Boston, MA 02215" -171172,Bose SoundSport Headphones,1,99.99,03/29/19 18:26,"140 Cherry St, Boston, MA 02215" -171173,Lightning Charging Cable,1,14.95,03/17/19 13:47,"612 Wilson St, San Francisco, CA 94016" -171174,AA Batteries (4-pack),1,3.84,03/16/19 08:49,"851 River St, San Francisco, CA 94016" -171175,Wired Headphones,1,11.99,03/07/19 11:39,"101 Main St, Dallas, TX 75001" -171176,27in FHD Monitor,1,149.99,03/11/19 00:13,"700 Madison St, San Francisco, CA 94016" -171176,27in 4K Gaming Monitor,1,389.99,03/11/19 00:13,"700 Madison St, San Francisco, CA 94016" -171177,Macbook Pro Laptop,1,1700,03/29/19 19:04,"362 1st St, San Francisco, CA 94016" -171178,USB-C Charging Cable,1,11.95,03/17/19 01:04,"655 11th St, San Francisco, CA 94016" -171179,Lightning Charging Cable,1,14.95,03/04/19 11:35,"336 4th St, Seattle, WA 98101" -171180,Bose SoundSport Headphones,1,99.99,03/29/19 13:58,"868 Chestnut St, Atlanta, GA 30301" -171181,Vareebadd Phone,1,400,03/15/19 12:33,"44 Madison St, Atlanta, GA 30301" -171182,Macbook Pro Laptop,1,1700,03/18/19 18:03,"952 14th St, Seattle, WA 98101" -171183,AAA Batteries (4-pack),1,2.99,03/27/19 11:04,"864 14th St, Atlanta, GA 30301" -171184,Lightning Charging Cable,1,14.95,03/21/19 21:18,"879 Center St, Atlanta, GA 30301" -171185,Wired Headphones,1,11.99,03/27/19 12:33,"930 Meadow St, Dallas, TX 75001" -171186,ThinkPad Laptop,1,999.99,03/01/19 10:25,"736 North St, Dallas, TX 75001" -171187,27in 4K Gaming Monitor,1,389.99,03/16/19 15:11,"633 Maple St, San Francisco, CA 94016" -171188,AA Batteries (4-pack),1,3.84,03/11/19 20:44,"153 9th St, San Francisco, CA 94016" -171189,Lightning Charging Cable,1,14.95,03/09/19 18:40,"774 10th St, Los Angeles, CA 90001" -171190,Lightning Charging Cable,1,14.95,03/25/19 13:54,"971 2nd St, Los Angeles, CA 90001" -171191,AAA Batteries (4-pack),4,2.99,03/27/19 18:17,"376 Spruce St, San Francisco, CA 94016" -171192,34in Ultrawide Monitor,1,379.99,03/26/19 20:29,"193 Johnson St, San Francisco, CA 94016" -171193,20in Monitor,1,109.99,03/20/19 20:16,"556 Wilson St, Seattle, WA 98101" -171194,AA Batteries (4-pack),1,3.84,03/15/19 06:37,"471 Lake St, San Francisco, CA 94016" -171195,Wired Headphones,1,11.99,03/26/19 21:11,"413 2nd St, Dallas, TX 75001" -171196,AA Batteries (4-pack),1,3.84,03/06/19 19:15,"783 Johnson St, Seattle, WA 98101" -171197,USB-C Charging Cable,1,11.95,03/23/19 20:44,"567 Main St, New York City, NY 10001" -171198,AAA Batteries (4-pack),3,2.99,03/17/19 15:39,"991 4th St, Austin, TX 73301" -171199,Lightning Charging Cable,1,14.95,03/31/19 16:07,"772 Jackson St, Los Angeles, CA 90001" -171200,Wired Headphones,1,11.99,03/21/19 01:06,"542 Chestnut St, San Francisco, CA 94016" -171201,Apple Airpods Headphones,1,150,03/20/19 10:08,"358 Dogwood St, Boston, MA 02215" -171202,Lightning Charging Cable,1,14.95,03/28/19 20:37,"748 Adams St, San Francisco, CA 94016" -171203,USB-C Charging Cable,1,11.95,03/06/19 09:43,"169 Jackson St, San Francisco, CA 94016" -171204,USB-C Charging Cable,1,11.95,03/19/19 14:34,"719 Walnut St, Los Angeles, CA 90001" -171205,iPhone,1,700,03/19/19 16:20,"249 6th St, San Francisco, CA 94016" -171206,27in 4K Gaming Monitor,1,389.99,03/13/19 16:09,"374 Cedar St, Boston, MA 02215" -171207,Apple Airpods Headphones,1,150,03/25/19 12:11,"514 6th St, Dallas, TX 75001" -171208,34in Ultrawide Monitor,1,379.99,03/19/19 19:49,"752 Center St, Los Angeles, CA 90001" -171209,USB-C Charging Cable,1,11.95,03/17/19 14:37,"806 12th St, Los Angeles, CA 90001" -171210,Google Phone,1,600,03/11/19 13:28,"928 10th St, San Francisco, CA 94016" -171211,34in Ultrawide Monitor,1,379.99,03/10/19 11:35,"337 Meadow St, San Francisco, CA 94016" -171212,Lightning Charging Cable,1,14.95,03/24/19 22:33,"207 Washington St, Atlanta, GA 30301" -171213,USB-C Charging Cable,1,11.95,03/21/19 17:52,"343 14th St, Los Angeles, CA 90001" -171214,AA Batteries (4-pack),1,3.84,03/06/19 17:39,"907 Willow St, Boston, MA 02215" -171215,27in FHD Monitor,1,149.99,03/22/19 18:36,"752 Wilson St, San Francisco, CA 94016" -171216,Wired Headphones,1,11.99,03/19/19 20:30,"392 Elm St, Boston, MA 02215" -171217,USB-C Charging Cable,3,11.95,03/19/19 18:46,"737 North St, Los Angeles, CA 90001" -171218,USB-C Charging Cable,1,11.95,03/01/19 04:42,"498 5th St, Austin, TX 73301" -171219,USB-C Charging Cable,1,11.95,03/20/19 20:50,"879 Dogwood St, Los Angeles, CA 90001" -171220,AAA Batteries (4-pack),1,2.99,03/05/19 14:59,"776 11th St, New York City, NY 10001" -171221,AAA Batteries (4-pack),1,2.99,03/18/19 13:56,"609 Spruce St, Seattle, WA 98101" -171222,Wired Headphones,1,11.99,03/25/19 08:28,"961 Pine St, Atlanta, GA 30301" -171223,ThinkPad Laptop,1,999.99,03/08/19 23:49,"818 Jefferson St, Dallas, TX 75001" -171224,AAA Batteries (4-pack),2,2.99,03/02/19 01:43,"440 Spruce St, Atlanta, GA 30301" -171225,Macbook Pro Laptop,1,1700,03/31/19 08:28,"425 Forest St, Austin, TX 73301" -171226,Google Phone,1,600,03/15/19 21:05,"738 1st St, San Francisco, CA 94016" -171226,USB-C Charging Cable,1,11.95,03/15/19 21:05,"738 1st St, San Francisco, CA 94016" -171227,USB-C Charging Cable,1,11.95,03/21/19 18:03,"791 Madison St, Portland, OR 97035" -171228,AAA Batteries (4-pack),1,2.99,03/09/19 20:20,"491 Chestnut St, Boston, MA 02215" -171229,27in FHD Monitor,1,149.99,03/28/19 20:26,"419 8th St, Atlanta, GA 30301" -171230,34in Ultrawide Monitor,1,379.99,03/30/19 23:18,"682 Park St, San Francisco, CA 94016" -171231,AAA Batteries (4-pack),1,2.99,03/17/19 16:59,"996 Jackson St, Seattle, WA 98101" -171232,27in FHD Monitor,1,149.99,03/27/19 16:44,"842 Church St, Los Angeles, CA 90001" -171233,AAA Batteries (4-pack),2,2.99,03/20/19 06:59,"867 West St, San Francisco, CA 94016" -171234,AAA Batteries (4-pack),1,2.99,03/16/19 17:17,"448 Walnut St, New York City, NY 10001" -171235,AAA Batteries (4-pack),1,2.99,03/16/19 18:28,"305 14th St, Boston, MA 02215" -171236,Bose SoundSport Headphones,1,99.99,03/07/19 10:21,"395 1st St, Dallas, TX 75001" -171237,AA Batteries (4-pack),1,3.84,03/19/19 00:12,"969 Hickory St, Los Angeles, CA 90001" -171238,Google Phone,1,600,03/23/19 06:32,"555 North St, Dallas, TX 75001" -171239,27in FHD Monitor,1,149.99,03/30/19 15:12,"582 Elm St, Atlanta, GA 30301" -171240,Apple Airpods Headphones,1,150,03/23/19 06:45,"971 Highland St, Portland, OR 97035" -171241,AAA Batteries (4-pack),2,2.99,03/26/19 21:07,"751 5th St, Boston, MA 02215" -171242,AAA Batteries (4-pack),2,2.99,03/25/19 20:28,"662 10th St, Los Angeles, CA 90001" -171243,Apple Airpods Headphones,1,150,03/17/19 09:25,"527 Main St, Seattle, WA 98101" -171244,Google Phone,1,600,03/11/19 19:25,"176 14th St, Portland, ME 04101" -171245,USB-C Charging Cable,1,11.95,03/10/19 20:19,"622 Wilson St, Los Angeles, CA 90001" -171246,Lightning Charging Cable,1,14.95,03/30/19 04:37,"864 Cherry St, Portland, OR 97035" -171247,Lightning Charging Cable,1,14.95,03/20/19 01:03,"686 Ridge St, San Francisco, CA 94016" -171248,Wired Headphones,1,11.99,03/03/19 18:44,"400 9th St, San Francisco, CA 94016" -171249,27in 4K Gaming Monitor,1,389.99,03/17/19 06:15,"183 11th St, New York City, NY 10001" -171250,34in Ultrawide Monitor,1,379.99,03/14/19 22:19,"148 Spruce St, Dallas, TX 75001" -171251,Apple Airpods Headphones,1,150,03/13/19 14:01,"281 10th St, San Francisco, CA 94016" -171252,AAA Batteries (4-pack),1,2.99,03/11/19 17:19,"60 Washington St, Dallas, TX 75001" -171253,Lightning Charging Cable,1,14.95,03/25/19 23:40,"782 12th St, San Francisco, CA 94016" -171254,AAA Batteries (4-pack),1,2.99,03/31/19 08:57,"322 Main St, San Francisco, CA 94016" -171255,AAA Batteries (4-pack),1,2.99,03/14/19 13:44,"850 Chestnut St, Portland, OR 97035" -171256,Wired Headphones,1,11.99,03/02/19 20:45,"804 Park St, Dallas, TX 75001" -171257,Bose SoundSport Headphones,1,99.99,03/04/19 08:07,"706 South St, Boston, MA 02215" -171258,AAA Batteries (4-pack),1,2.99,03/14/19 09:16,"280 South St, Los Angeles, CA 90001" -171259,AAA Batteries (4-pack),1,2.99,03/16/19 08:39,"217 Lincoln St, Boston, MA 02215" -171260,AAA Batteries (4-pack),1,2.99,03/30/19 16:57,"963 Washington St, San Francisco, CA 94016" -171261,Apple Airpods Headphones,1,150,03/31/19 19:53,"704 9th St, Los Angeles, CA 90001" -171262,iPhone,1,700,03/06/19 20:15,"579 11th St, San Francisco, CA 94016" -171263,Lightning Charging Cable,1,14.95,03/29/19 17:30,"385 6th St, Los Angeles, CA 90001" -171264,iPhone,1,700,03/08/19 19:04,"48 Washington St, New York City, NY 10001" -171265,Bose SoundSport Headphones,1,99.99,03/27/19 13:22,"468 Park St, Austin, TX 73301" -171266,Macbook Pro Laptop,1,1700,03/31/19 08:01,"554 Ridge St, San Francisco, CA 94016" -171267,Apple Airpods Headphones,1,150,03/16/19 12:35,"74 Lakeview St, New York City, NY 10001" -171268,AA Batteries (4-pack),1,3.84,03/23/19 15:50,"617 Ridge St, Seattle, WA 98101" -171269,AA Batteries (4-pack),1,3.84,03/23/19 13:31,"539 Washington St, New York City, NY 10001" -171270,USB-C Charging Cable,1,11.95,03/05/19 13:38,"346 7th St, New York City, NY 10001" -171271,Wired Headphones,1,11.99,03/02/19 07:25,"822 2nd St, Los Angeles, CA 90001" -171272,AAA Batteries (4-pack),1,2.99,03/11/19 13:15,"644 Willow St, Los Angeles, CA 90001" -171273,Apple Airpods Headphones,1,150,03/26/19 00:01,"454 Willow St, Atlanta, GA 30301" -171274,34in Ultrawide Monitor,1,379.99,03/17/19 16:27,"839 Walnut St, San Francisco, CA 94016" -171275,27in FHD Monitor,1,149.99,03/22/19 12:17,"775 Cedar St, Los Angeles, CA 90001" -171276,AAA Batteries (4-pack),1,2.99,03/20/19 23:17,"303 River St, San Francisco, CA 94016" -171277,iPhone,1,700,03/19/19 20:57,"566 Hill St, San Francisco, CA 94016" -171277,Lightning Charging Cable,1,14.95,03/19/19 20:57,"566 Hill St, San Francisco, CA 94016" -171278,Bose SoundSport Headphones,1,99.99,03/08/19 05:59,"149 13th St, New York City, NY 10001" -171279,27in FHD Monitor,1,149.99,03/17/19 16:35,"362 Cherry St, San Francisco, CA 94016" -171280,Wired Headphones,1,11.99,03/04/19 17:43,"919 Johnson St, San Francisco, CA 94016" -171281,USB-C Charging Cable,1,11.95,03/31/19 21:10,"37 Lake St, Portland, OR 97035" -171282,Flatscreen TV,1,300,03/11/19 13:31,"719 Willow St, San Francisco, CA 94016" -171283,Google Phone,1,600,03/21/19 11:06,"614 North St, Atlanta, GA 30301" -171284,AA Batteries (4-pack),1,3.84,03/26/19 09:15,"397 Cedar St, San Francisco, CA 94016" -171285,Wired Headphones,1,11.99,03/27/19 18:40,"878 Pine St, Boston, MA 02215" -171286,27in 4K Gaming Monitor,1,389.99,03/31/19 19:48,"775 Spruce St, Atlanta, GA 30301" -171287,LG Washing Machine,1,600.0,03/30/19 22:33,"181 Lakeview St, San Francisco, CA 94016" -171288,AAA Batteries (4-pack),1,2.99,03/03/19 01:05,"180 Washington St, Portland, OR 97035" -171289,Bose SoundSport Headphones,1,99.99,03/13/19 20:30,"481 9th St, Seattle, WA 98101" -171290,Wired Headphones,1,11.99,03/12/19 15:43,"28 Maple St, Los Angeles, CA 90001" -171291,Bose SoundSport Headphones,1,99.99,03/04/19 14:45,"883 8th St, Dallas, TX 75001" -171292,20in Monitor,1,109.99,03/18/19 15:50,"257 14th St, San Francisco, CA 94016" -171293,Lightning Charging Cable,2,14.95,03/31/19 09:03,"236 2nd St, Dallas, TX 75001" -171294,27in FHD Monitor,1,149.99,03/14/19 10:10,"177 13th St, Portland, ME 04101" -171295,Lightning Charging Cable,1,14.95,03/31/19 11:19,"633 Hickory St, San Francisco, CA 94016" -171296,Macbook Pro Laptop,1,1700,03/04/19 14:49,"751 6th St, Portland, OR 97035" -171297,Apple Airpods Headphones,1,150,03/30/19 10:25,"228 Walnut St, San Francisco, CA 94016" -171298,AA Batteries (4-pack),1,3.84,03/21/19 16:42,"609 Wilson St, Seattle, WA 98101" -171299,Apple Airpods Headphones,1,150,03/02/19 16:23,"387 Wilson St, Seattle, WA 98101" -171300,27in 4K Gaming Monitor,1,389.99,03/08/19 13:46,"600 Jefferson St, Seattle, WA 98101" -171301,27in 4K Gaming Monitor,1,389.99,03/31/19 19:11,"666 Hickory St, New York City, NY 10001" -171302,Lightning Charging Cable,1,14.95,03/31/19 22:17,"840 Pine St, Los Angeles, CA 90001" -171303,Wired Headphones,1,11.99,03/20/19 18:31,"379 West St, Seattle, WA 98101" -171304,AAA Batteries (4-pack),1,2.99,03/12/19 13:07,"941 Lincoln St, Portland, OR 97035" -171305,Macbook Pro Laptop,1,1700,03/07/19 22:07,"147 Main St, Seattle, WA 98101" -171306,Bose SoundSport Headphones,1,99.99,03/06/19 13:19,"142 8th St, New York City, NY 10001" -171307,AA Batteries (4-pack),1,3.84,03/18/19 20:02,"649 Cherry St, Boston, MA 02215" -171308,Apple Airpods Headphones,1,150,03/02/19 11:11,"483 Adams St, Boston, MA 02215" -171309,Lightning Charging Cable,1,14.95,03/15/19 13:35,"215 Meadow St, San Francisco, CA 94016" -171310,Wired Headphones,2,11.99,03/15/19 11:43,"129 Spruce St, Seattle, WA 98101" -171311,Apple Airpods Headphones,1,150,03/07/19 13:45,"626 Dogwood St, San Francisco, CA 94016" -171312,ThinkPad Laptop,1,999.99,03/11/19 12:07,"354 Dogwood St, San Francisco, CA 94016" -171313,Google Phone,1,600,03/27/19 13:24,"999 Spruce St, New York City, NY 10001" -171314,Bose SoundSport Headphones,1,99.99,03/18/19 22:48,"506 Park St, New York City, NY 10001" -171315,ThinkPad Laptop,1,999.99,03/22/19 20:12,"973 9th St, Los Angeles, CA 90001" -171316,AA Batteries (4-pack),2,3.84,03/01/19 16:35,"835 South St, Atlanta, GA 30301" -171317,Bose SoundSport Headphones,1,99.99,03/21/19 04:02,"125 Lake St, Boston, MA 02215" -171318,Bose SoundSport Headphones,1,99.99,03/11/19 13:05,"478 Cherry St, Austin, TX 73301" -171319,Apple Airpods Headphones,1,150,03/19/19 14:50,"824 River St, Los Angeles, CA 90001" -171320,AAA Batteries (4-pack),1,2.99,03/22/19 12:28,"563 9th St, Los Angeles, CA 90001" -171321,USB-C Charging Cable,1,11.95,03/20/19 20:05,"592 2nd St, New York City, NY 10001" -171322,20in Monitor,1,109.99,03/15/19 13:45,"357 Meadow St, Portland, ME 04101" -171322,20in Monitor,1,109.99,03/15/19 13:45,"357 Meadow St, Portland, ME 04101" -171323,USB-C Charging Cable,1,11.95,03/10/19 08:50,"66 Meadow St, New York City, NY 10001" -171324,USB-C Charging Cable,1,11.95,03/11/19 15:37,"393 Chestnut St, New York City, NY 10001" -171325,Wired Headphones,1,11.99,03/17/19 19:20,"196 Church St, Dallas, TX 75001" -171326,Bose SoundSport Headphones,1,99.99,03/27/19 22:08,"815 Park St, Boston, MA 02215" -171327,Lightning Charging Cable,1,14.95,03/14/19 05:08,"518 Forest St, Atlanta, GA 30301" -171328,Google Phone,1,600,03/14/19 16:40,"489 4th St, Los Angeles, CA 90001" -171329,USB-C Charging Cable,2,11.95,03/22/19 11:54,"720 Church St, Boston, MA 02215" -171330,27in FHD Monitor,1,149.99,03/27/19 00:47,"552 8th St, Austin, TX 73301" -171331,AAA Batteries (4-pack),2,2.99,03/19/19 13:05,"60 Highland St, San Francisco, CA 94016" -171332,AA Batteries (4-pack),1,3.84,03/23/19 11:29,"943 Spruce St, Los Angeles, CA 90001" -171333,Macbook Pro Laptop,1,1700,03/25/19 16:50,"198 Spruce St, Portland, ME 04101" -171334,iPhone,1,700,03/17/19 12:10,"611 Center St, Dallas, TX 75001" -171335,Apple Airpods Headphones,1,150,03/17/19 01:30,"16 Highland St, Los Angeles, CA 90001" -171336,USB-C Charging Cable,1,11.95,03/28/19 20:05,"783 Forest St, Los Angeles, CA 90001" -171337,Apple Airpods Headphones,1,150,03/20/19 12:33,"781 Wilson St, San Francisco, CA 94016" -171338,Lightning Charging Cable,1,14.95,03/17/19 17:28,"973 Maple St, Atlanta, GA 30301" -171339,AA Batteries (4-pack),1,3.84,03/05/19 14:22,"738 4th St, Portland, ME 04101" -171340,Bose SoundSport Headphones,1,99.99,03/06/19 17:13,"9 6th St, San Francisco, CA 94016" -171341,27in FHD Monitor,1,149.99,03/05/19 14:19,"395 Wilson St, Los Angeles, CA 90001" -171342,Bose SoundSport Headphones,1,99.99,03/13/19 15:02,"745 Walnut St, Seattle, WA 98101" -171343,Wired Headphones,1,11.99,03/06/19 17:16,"773 10th St, Los Angeles, CA 90001" -171344,AA Batteries (4-pack),1,3.84,03/29/19 15:41,"895 Cherry St, Portland, OR 97035" -171345,USB-C Charging Cable,1,11.95,03/02/19 10:55,"839 Forest St, San Francisco, CA 94016" -171346,AA Batteries (4-pack),1,3.84,03/20/19 12:57,"613 Willow St, Los Angeles, CA 90001" -171347,AAA Batteries (4-pack),1,2.99,03/15/19 19:12,"210 Johnson St, Dallas, TX 75001" -171348,Google Phone,1,600,03/26/19 22:33,"419 Willow St, Los Angeles, CA 90001" -171349,Wired Headphones,1,11.99,03/29/19 10:59,"378 Wilson St, Los Angeles, CA 90001" -171350,AAA Batteries (4-pack),1,2.99,03/25/19 11:16,"701 7th St, New York City, NY 10001" -171351,Lightning Charging Cable,1,14.95,03/18/19 14:07,"505 Washington St, Atlanta, GA 30301" -171352,AA Batteries (4-pack),1,3.84,03/11/19 20:14,"148 Church St, Boston, MA 02215" -171353,27in 4K Gaming Monitor,1,389.99,03/29/19 14:49,"700 6th St, Dallas, TX 75001" -171354,Bose SoundSport Headphones,1,99.99,03/08/19 18:30,"87 10th St, Boston, MA 02215" -171355,Apple Airpods Headphones,1,150,03/26/19 16:28,"255 11th St, Atlanta, GA 30301" -171356,Apple Airpods Headphones,1,150,03/07/19 22:36,"74 Lakeview St, Los Angeles, CA 90001" -171357,Wired Headphones,1,11.99,03/03/19 10:42,"676 Cedar St, Seattle, WA 98101" -171358,Lightning Charging Cable,1,14.95,03/07/19 11:28,"735 1st St, San Francisco, CA 94016" -171359,Lightning Charging Cable,1,14.95,03/30/19 19:48,"981 River St, San Francisco, CA 94016" -171360,Vareebadd Phone,1,400,03/26/19 13:10,"124 Spruce St, San Francisco, CA 94016" -171361,Macbook Pro Laptop,1,1700,03/26/19 17:08,"431 Main St, New York City, NY 10001" -171362,USB-C Charging Cable,1,11.95,03/01/19 08:45,"810 North St, San Francisco, CA 94016" -171363,Bose SoundSport Headphones,1,99.99,03/05/19 10:36,"69 Jackson St, Los Angeles, CA 90001" -171364,Bose SoundSport Headphones,1,99.99,03/06/19 20:14,"420 Main St, Atlanta, GA 30301" -171365,Lightning Charging Cable,1,14.95,03/25/19 13:25,"40 Wilson St, Seattle, WA 98101" -171366,iPhone,1,700,03/29/19 14:51,"170 Ridge St, Atlanta, GA 30301" -171367,USB-C Charging Cable,1,11.95,03/13/19 17:44,"245 8th St, Seattle, WA 98101" -171368,USB-C Charging Cable,1,11.95,03/17/19 14:43,"882 13th St, Los Angeles, CA 90001" -171369,USB-C Charging Cable,1,11.95,03/02/19 01:03,"821 2nd St, New York City, NY 10001" -171370,27in FHD Monitor,1,149.99,03/27/19 16:53,"945 Cedar St, New York City, NY 10001" -171371,Lightning Charging Cable,1,14.95,03/01/19 19:28,"59 Adams St, Austin, TX 73301" -171372,34in Ultrawide Monitor,1,379.99,03/18/19 21:22,"180 10th St, Los Angeles, CA 90001" -171373,AA Batteries (4-pack),2,3.84,03/23/19 22:20,"49 Sunset St, Austin, TX 73301" -171373,AA Batteries (4-pack),2,3.84,03/23/19 22:20,"49 Sunset St, Austin, TX 73301" -171374,AA Batteries (4-pack),2,3.84,03/31/19 18:00,"482 Center St, San Francisco, CA 94016" -171375,Google Phone,1,600,03/19/19 21:14,"598 Lakeview St, San Francisco, CA 94016" -171375,USB-C Charging Cable,1,11.95,03/19/19 21:14,"598 Lakeview St, San Francisco, CA 94016" -171376,Apple Airpods Headphones,1,150,03/31/19 07:50,"789 River St, Atlanta, GA 30301" -171377,Wired Headphones,1,11.99,03/04/19 17:46,"114 Lincoln St, San Francisco, CA 94016" -171378,Apple Airpods Headphones,1,150,03/06/19 15:48,"53 Pine St, Los Angeles, CA 90001" -171379,AA Batteries (4-pack),1,3.84,03/21/19 21:55,"174 Adams St, Los Angeles, CA 90001" -171380,USB-C Charging Cable,1,11.95,03/22/19 15:21,"401 South St, Portland, OR 97035" -171381,AA Batteries (4-pack),1,3.84,03/02/19 13:48,"624 Jefferson St, Portland, OR 97035" -171382,AAA Batteries (4-pack),1,2.99,03/19/19 09:10,"592 14th St, San Francisco, CA 94016" -171383,27in FHD Monitor,1,149.99,03/12/19 11:17,"962 West St, New York City, NY 10001" -171384,AAA Batteries (4-pack),1,2.99,03/29/19 07:34,"827 Cedar St, Los Angeles, CA 90001" -171385,34in Ultrawide Monitor,1,379.99,03/24/19 23:41,"653 6th St, Seattle, WA 98101" -171386,Lightning Charging Cable,1,14.95,03/03/19 13:21,"547 Wilson St, Boston, MA 02215" -171387,AA Batteries (4-pack),1,3.84,03/25/19 16:34,"404 Hickory St, New York City, NY 10001" -171388,iPhone,1,700,03/30/19 10:51,"448 Forest St, San Francisco, CA 94016" -171389,AAA Batteries (4-pack),1,2.99,03/03/19 09:14,"643 Elm St, Boston, MA 02215" -171390,Apple Airpods Headphones,1,150,03/29/19 09:00,"44 Chestnut St, New York City, NY 10001" -171391,Wired Headphones,1,11.99,03/21/19 14:07,"449 Forest St, San Francisco, CA 94016" -171392,AA Batteries (4-pack),2,3.84,03/24/19 18:42,"973 2nd St, San Francisco, CA 94016" -171393,27in FHD Monitor,1,149.99,03/01/19 19:06,"806 2nd St, San Francisco, CA 94016" -171394,Wired Headphones,1,11.99,03/07/19 13:59,"457 Church St, New York City, NY 10001" -171395,Macbook Pro Laptop,1,1700,03/09/19 14:20,"636 Lake St, Atlanta, GA 30301" -171396,27in FHD Monitor,1,149.99,03/28/19 21:00,"787 Center St, Seattle, WA 98101" -171397,AAA Batteries (4-pack),1,2.99,03/08/19 11:53,"80 Park St, Austin, TX 73301" -171398,AA Batteries (4-pack),1,3.84,03/28/19 12:35,"373 Dogwood St, Los Angeles, CA 90001" -171399,Bose SoundSport Headphones,1,99.99,03/23/19 09:02,"608 Highland St, New York City, NY 10001" -171400,iPhone,1,700,03/08/19 19:20,"267 7th St, San Francisco, CA 94016" -171400,Apple Airpods Headphones,1,150,03/08/19 19:20,"267 7th St, San Francisco, CA 94016" -171401,iPhone,1,700,03/16/19 13:40,"457 North St, Boston, MA 02215" -171402,27in FHD Monitor,1,149.99,03/01/19 22:49,"282 Center St, San Francisco, CA 94016" -171403,AA Batteries (4-pack),1,3.84,03/14/19 21:33,"437 Cherry St, New York City, NY 10001" -171404,20in Monitor,1,109.99,03/18/19 00:09,"146 Lake St, Atlanta, GA 30301" -171405,AA Batteries (4-pack),1,3.84,03/23/19 22:27,"102 Chestnut St, Boston, MA 02215" -171406,AAA Batteries (4-pack),1,2.99,03/18/19 22:18,"758 River St, Boston, MA 02215" -171407,27in 4K Gaming Monitor,1,389.99,03/07/19 10:46,"985 Johnson St, San Francisco, CA 94016" -171408,27in 4K Gaming Monitor,1,389.99,03/08/19 02:33,"276 7th St, Los Angeles, CA 90001" -171409,Lightning Charging Cable,1,14.95,03/30/19 12:06,"777 Pine St, Seattle, WA 98101" -171410,AAA Batteries (4-pack),1,2.99,03/18/19 23:13,"762 5th St, Seattle, WA 98101" -171411,USB-C Charging Cable,1,11.95,03/02/19 06:49,"659 Dogwood St, Los Angeles, CA 90001" -171412,Bose SoundSport Headphones,1,99.99,03/15/19 19:03,"948 Lake St, Los Angeles, CA 90001" -171413,Google Phone,1,600,03/07/19 20:43,"336 Sunset St, New York City, NY 10001" -171414,Apple Airpods Headphones,1,150,03/30/19 14:49,"153 Hill St, Dallas, TX 75001" -171415,iPhone,1,700,03/09/19 14:57,"454 Spruce St, New York City, NY 10001" -171416,34in Ultrawide Monitor,1,379.99,03/31/19 06:48,"575 Church St, Boston, MA 02215" -171417,AA Batteries (4-pack),1,3.84,03/09/19 10:57,"213 Lake St, San Francisco, CA 94016" -171417,34in Ultrawide Monitor,1,379.99,03/09/19 10:57,"213 Lake St, San Francisco, CA 94016" -171418,Apple Airpods Headphones,1,150,03/11/19 19:09,"729 Wilson St, Los Angeles, CA 90001" -171419,USB-C Charging Cable,1,11.95,03/24/19 13:13,"108 14th St, San Francisco, CA 94016" -171420,27in FHD Monitor,1,149.99,03/23/19 17:57,"872 12th St, Dallas, TX 75001" -171421,20in Monitor,1,109.99,03/04/19 13:04,"544 Pine St, Atlanta, GA 30301" -171422,Wired Headphones,1,11.99,03/08/19 14:59,"540 Sunset St, Portland, OR 97035" -171423,iPhone,1,700,03/15/19 15:12,"80 Cedar St, New York City, NY 10001" -171424,USB-C Charging Cable,1,11.95,03/01/19 21:54,"213 Cherry St, Seattle, WA 98101" -171425,AA Batteries (4-pack),1,3.84,03/23/19 08:42,"568 8th St, New York City, NY 10001" -171426,Lightning Charging Cable,1,14.95,03/25/19 15:48,"470 Hill St, Austin, TX 73301" -171427,AA Batteries (4-pack),2,3.84,03/29/19 22:21,"577 7th St, Los Angeles, CA 90001" -171428,34in Ultrawide Monitor,1,379.99,03/09/19 10:19,"211 Adams St, Los Angeles, CA 90001" -171429,AA Batteries (4-pack),2,3.84,03/01/19 15:18,"547 9th St, Los Angeles, CA 90001" -171430,Google Phone,1,600,03/16/19 22:16,"533 13th St, Los Angeles, CA 90001" -171431,Bose SoundSport Headphones,1,99.99,03/29/19 13:02,"540 Meadow St, Los Angeles, CA 90001" -171432,Wired Headphones,1,11.99,03/06/19 12:02,"932 Elm St, San Francisco, CA 94016" -171433,Wired Headphones,1,11.99,03/27/19 12:06,"845 Johnson St, San Francisco, CA 94016" -171434,20in Monitor,1,109.99,03/17/19 14:23,"630 4th St, San Francisco, CA 94016" -171435,Lightning Charging Cable,1,14.95,03/18/19 09:42,"780 9th St, Boston, MA 02215" -171436,Apple Airpods Headphones,1,150,03/26/19 16:37,"519 Park St, Dallas, TX 75001" -171437,27in FHD Monitor,1,149.99,03/05/19 17:57,"175 Madison St, Boston, MA 02215" -171438,AA Batteries (4-pack),2,3.84,03/18/19 23:25,"480 West St, Boston, MA 02215" -171439,AA Batteries (4-pack),1,3.84,03/15/19 21:10,"168 Lakeview St, Seattle, WA 98101" -171440,USB-C Charging Cable,1,11.95,03/07/19 14:27,"281 Cedar St, Austin, TX 73301" -171441,iPhone,1,700,03/26/19 20:29,"707 6th St, San Francisco, CA 94016" -171442,ThinkPad Laptop,1,999.99,03/11/19 14:51,"519 Meadow St, Los Angeles, CA 90001" -171443,20in Monitor,1,109.99,03/19/19 12:07,"136 Spruce St, New York City, NY 10001" -171444,Macbook Pro Laptop,1,1700,03/29/19 15:26,"860 Walnut St, New York City, NY 10001" -171445,Google Phone,1,600,03/24/19 18:32,"387 Dogwood St, Los Angeles, CA 90001" -171446,USB-C Charging Cable,1,11.95,03/27/19 21:24,"115 North St, Seattle, WA 98101" -171447,Bose SoundSport Headphones,1,99.99,03/28/19 18:13,"241 Sunset St, Dallas, TX 75001" -171448,AA Batteries (4-pack),1,3.84,03/20/19 21:13,"317 7th St, New York City, NY 10001" -171449,Apple Airpods Headphones,1,150,03/30/19 21:25,"156 Lincoln St, Atlanta, GA 30301" -171450,Wired Headphones,1,11.99,03/22/19 09:23,"387 Park St, San Francisco, CA 94016" -171451,Flatscreen TV,1,300,03/06/19 14:51,"735 River St, Dallas, TX 75001" -171452,27in FHD Monitor,1,149.99,03/21/19 19:10,"774 Elm St, Boston, MA 02215" -171453,Apple Airpods Headphones,1,150,03/06/19 08:41,"895 13th St, San Francisco, CA 94016" -171454,AAA Batteries (4-pack),1,2.99,03/23/19 00:33,"239 8th St, San Francisco, CA 94016" -171455,Vareebadd Phone,1,400,03/06/19 08:39,"641 Pine St, Los Angeles, CA 90001" -171456,Wired Headphones,1,11.99,03/02/19 21:33,"20 Ridge St, Seattle, WA 98101" -171457,Wired Headphones,1,11.99,03/03/19 22:27,"785 Park St, Portland, OR 97035" -171458,Lightning Charging Cable,1,14.95,03/09/19 01:05,"819 Johnson St, San Francisco, CA 94016" -171459,Lightning Charging Cable,1,14.95,03/13/19 10:57,"427 Elm St, San Francisco, CA 94016" -171460,Apple Airpods Headphones,1,150,03/18/19 05:48,"334 Jackson St, San Francisco, CA 94016" -171461,Lightning Charging Cable,1,14.95,03/07/19 06:39,"855 8th St, Austin, TX 73301" -171462,Lightning Charging Cable,1,14.95,03/06/19 16:20,"622 Cedar St, Atlanta, GA 30301" -171463,ThinkPad Laptop,1,999.99,03/21/19 14:21,"178 South St, Austin, TX 73301" -171464,AAA Batteries (4-pack),2,2.99,03/06/19 08:16,"169 Jackson St, San Francisco, CA 94016" -171465,Lightning Charging Cable,1,14.95,03/21/19 19:50,"822 Washington St, Atlanta, GA 30301" -171466,Bose SoundSport Headphones,1,99.99,03/05/19 15:45,"594 Lakeview St, San Francisco, CA 94016" -171467,Apple Airpods Headphones,1,150,03/22/19 12:04,"776 Chestnut St, Portland, ME 04101" -171468,Wired Headphones,1,11.99,03/07/19 13:42,"519 Cherry St, Boston, MA 02215" -171469,Wired Headphones,1,11.99,03/22/19 21:00,"811 Pine St, San Francisco, CA 94016" -171470,AA Batteries (4-pack),1,3.84,03/31/19 09:18,"34 14th St, Boston, MA 02215" -171471,USB-C Charging Cable,2,11.95,03/25/19 18:34,"820 Hickory St, San Francisco, CA 94016" -171472,Google Phone,1,600,03/06/19 19:43,"422 River St, Dallas, TX 75001" -171473,Bose SoundSport Headphones,1,99.99,03/17/19 16:31,"594 4th St, New York City, NY 10001" -171474,Lightning Charging Cable,1,14.95,03/28/19 08:45,"411 Walnut St, Los Angeles, CA 90001" -171475,AAA Batteries (4-pack),1,2.99,03/11/19 09:22,"75 Hickory St, San Francisco, CA 94016" -171476,Wired Headphones,1,11.99,03/17/19 12:17,"872 Johnson St, San Francisco, CA 94016" -171477,Lightning Charging Cable,1,14.95,03/21/19 03:04,"149 14th St, Los Angeles, CA 90001" -171478,ThinkPad Laptop,1,999.99,03/17/19 10:59,"731 Washington St, Dallas, TX 75001" -171479,Lightning Charging Cable,1,14.95,03/20/19 19:36,"987 11th St, Boston, MA 02215" -171480,AAA Batteries (4-pack),1,2.99,03/22/19 16:03,"182 Sunset St, Boston, MA 02215" -171481,Apple Airpods Headphones,1,150,03/28/19 23:40,"423 Chestnut St, Atlanta, GA 30301" -171482,Lightning Charging Cable,1,14.95,03/05/19 22:42,"2 Willow St, Dallas, TX 75001" -171483,Wired Headphones,1,11.99,03/16/19 20:08,"690 Johnson St, San Francisco, CA 94016" -171484,USB-C Charging Cable,1,11.95,03/21/19 07:22,"333 4th St, Dallas, TX 75001" -171485,Apple Airpods Headphones,1,150,03/28/19 08:00,"852 11th St, Atlanta, GA 30301" -171486,Flatscreen TV,1,300,03/13/19 18:38,"968 7th St, New York City, NY 10001" -171487,ThinkPad Laptop,1,999.99,03/20/19 12:54,"351 Spruce St, Austin, TX 73301" -171488,27in FHD Monitor,1,149.99,03/30/19 20:35,"777 Hill St, Portland, OR 97035" -171489,Google Phone,1,600,03/06/19 11:39,"281 8th St, Boston, MA 02215" -171490,USB-C Charging Cable,1,11.95,03/12/19 07:42,"613 Lakeview St, San Francisco, CA 94016" -171491,Apple Airpods Headphones,1,150,03/03/19 15:16,"139 Lincoln St, Atlanta, GA 30301" -171492,Google Phone,1,600,03/21/19 21:57,"425 Chestnut St, New York City, NY 10001" -171493,AA Batteries (4-pack),3,3.84,03/12/19 18:05,"811 4th St, New York City, NY 10001" -171494,20in Monitor,1,109.99,03/10/19 23:24,"263 5th St, Atlanta, GA 30301" -171495,27in FHD Monitor,1,149.99,03/13/19 11:19,"40 Chestnut St, San Francisco, CA 94016" -171496,USB-C Charging Cable,1,11.95,03/31/19 08:25,"487 Ridge St, Boston, MA 02215" -171497,34in Ultrawide Monitor,1,379.99,03/24/19 12:37,"656 9th St, Austin, TX 73301" -171498,Wired Headphones,1,11.99,03/16/19 17:38,"630 Center St, San Francisco, CA 94016" -171499,Wired Headphones,1,11.99,03/11/19 20:14,"229 Spruce St, Los Angeles, CA 90001" -171500,Flatscreen TV,1,300,03/09/19 18:40,"474 Elm St, New York City, NY 10001" -171501,AA Batteries (4-pack),1,3.84,03/27/19 16:44,"2 Hickory St, Boston, MA 02215" -171502,Wired Headphones,1,11.99,03/18/19 17:56,"998 Ridge St, New York City, NY 10001" -171503,AA Batteries (4-pack),1,3.84,03/11/19 14:20,"729 Washington St, Los Angeles, CA 90001" -171504,Wired Headphones,1,11.99,03/01/19 17:29,"595 4th St, Los Angeles, CA 90001" -171505,Lightning Charging Cable,1,14.95,03/26/19 21:02,"536 Lincoln St, New York City, NY 10001" -171506,AAA Batteries (4-pack),1,2.99,03/24/19 12:35,"986 8th St, Seattle, WA 98101" -171506,Wired Headphones,1,11.99,03/24/19 12:35,"986 8th St, Seattle, WA 98101" -171507,27in FHD Monitor,1,149.99,03/09/19 14:37,"735 12th St, New York City, NY 10001" -171508,iPhone,1,700,03/03/19 11:31,"103 Dogwood St, San Francisco, CA 94016" -171509,AA Batteries (4-pack),1,3.84,03/26/19 22:26,"251 West St, Portland, ME 04101" -171510,Apple Airpods Headphones,1,150,03/09/19 22:45,"234 Cherry St, New York City, NY 10001" -171511,USB-C Charging Cable,1,11.95,03/17/19 17:59,"747 Willow St, Dallas, TX 75001" -171512,20in Monitor,1,109.99,03/11/19 14:50,"663 Lake St, New York City, NY 10001" -171513,iPhone,1,700,03/06/19 13:12,"200 Spruce St, Atlanta, GA 30301" -171514,Macbook Pro Laptop,1,1700,03/31/19 07:21,"741 Church St, New York City, NY 10001" -171515,AA Batteries (4-pack),3,3.84,03/20/19 14:45,"862 7th St, New York City, NY 10001" -171516,20in Monitor,1,109.99,03/05/19 21:10,"926 Maple St, Los Angeles, CA 90001" -171517,AAA Batteries (4-pack),1,2.99,03/29/19 18:54,"969 Lakeview St, Los Angeles, CA 90001" -171518,ThinkPad Laptop,1,999.99,03/30/19 12:59,"143 Johnson St, Los Angeles, CA 90001" -171519,34in Ultrawide Monitor,1,379.99,03/19/19 15:17,"799 Hill St, San Francisco, CA 94016" -171520,AA Batteries (4-pack),1,3.84,03/29/19 23:29,"91 Walnut St, San Francisco, CA 94016" -171521,Apple Airpods Headphones,1,150,03/22/19 13:35,"735 Pine St, San Francisco, CA 94016" -171521,34in Ultrawide Monitor,1,379.99,03/22/19 13:35,"735 Pine St, San Francisco, CA 94016" -171522,Bose SoundSport Headphones,1,99.99,03/22/19 23:07,"350 Johnson St, San Francisco, CA 94016" -171523,Wired Headphones,1,11.99,03/11/19 01:06,"594 12th St, Atlanta, GA 30301" -171524,AA Batteries (4-pack),3,3.84,03/19/19 22:29,"719 Center St, Boston, MA 02215" -171525,iPhone,1,700,03/29/19 09:46,"635 Spruce St, Austin, TX 73301" -171526,AAA Batteries (4-pack),1,2.99,03/02/19 17:20,"750 Walnut St, Boston, MA 02215" -171527,Lightning Charging Cable,1,14.95,03/27/19 15:40,"203 Adams St, Atlanta, GA 30301" -171528,Macbook Pro Laptop,1,1700,03/09/19 16:43,"16 Willow St, San Francisco, CA 94016" -171529,27in FHD Monitor,1,149.99,03/14/19 16:58,"296 8th St, Portland, OR 97035" -171530,Lightning Charging Cable,1,14.95,03/22/19 13:33,"790 Church St, Dallas, TX 75001" -171531,Lightning Charging Cable,1,14.95,03/06/19 09:48,"463 Cherry St, Portland, OR 97035" -171532,Wired Headphones,1,11.99,03/08/19 12:49,"390 Meadow St, San Francisco, CA 94016" -171533,Wired Headphones,1,11.99,03/26/19 20:41,"298 Willow St, Portland, OR 97035" -171534,34in Ultrawide Monitor,1,379.99,03/26/19 12:14,"534 Park St, Portland, OR 97035" -171535,Lightning Charging Cable,1,14.95,03/13/19 12:21,"315 Johnson St, Portland, OR 97035" -171536,Lightning Charging Cable,1,14.95,03/18/19 16:07,"444 South St, Atlanta, GA 30301" -171537,Apple Airpods Headphones,1,150,03/30/19 22:53,"5 Lakeview St, San Francisco, CA 94016" -171538,Google Phone,1,600,03/08/19 19:56,"494 Wilson St, Atlanta, GA 30301" -171539,Apple Airpods Headphones,1,150,03/06/19 10:05,"168 Elm St, Los Angeles, CA 90001" -171540,Flatscreen TV,1,300,03/31/19 18:41,"94 Washington St, Atlanta, GA 30301" -171541,USB-C Charging Cable,1,11.95,03/06/19 18:30,"897 Forest St, Atlanta, GA 30301" -171542,USB-C Charging Cable,1,11.95,03/14/19 15:14,"436 Lake St, Los Angeles, CA 90001" -171543,27in FHD Monitor,1,149.99,03/31/19 15:24,"777 Highland St, Dallas, TX 75001" -171544,USB-C Charging Cable,1,11.95,03/07/19 22:42,"961 Johnson St, San Francisco, CA 94016" -171545,27in 4K Gaming Monitor,1,389.99,03/13/19 19:30,"743 Highland St, San Francisco, CA 94016" -171546,AA Batteries (4-pack),1,3.84,03/09/19 14:02,"411 Lake St, Boston, MA 02215" -171547,Vareebadd Phone,1,400,03/25/19 11:51,"610 8th St, New York City, NY 10001" -171548,Bose SoundSport Headphones,1,99.99,03/07/19 20:35,"347 9th St, Dallas, TX 75001" -171549,AAA Batteries (4-pack),1,2.99,03/19/19 10:06,"995 Willow St, New York City, NY 10001" -171550,Apple Airpods Headphones,1,150,03/17/19 11:41,"61 Chestnut St, Boston, MA 02215" -171551,AAA Batteries (4-pack),1,2.99,03/29/19 02:32,"108 1st St, Seattle, WA 98101" -171552,AAA Batteries (4-pack),1,2.99,03/25/19 12:05,"323 6th St, San Francisco, CA 94016" -171553,Google Phone,1,600,03/25/19 18:56,"865 Johnson St, Austin, TX 73301" -171553,USB-C Charging Cable,3,11.95,03/25/19 18:56,"865 Johnson St, Austin, TX 73301" -171554,AAA Batteries (4-pack),1,2.99,03/22/19 19:45,"253 Pine St, Los Angeles, CA 90001" -171555,ThinkPad Laptop,1,999.99,03/08/19 18:21,"577 Meadow St, Los Angeles, CA 90001" -171556,Lightning Charging Cable,1,14.95,03/20/19 14:33,"179 Dogwood St, San Francisco, CA 94016" -171557,27in FHD Monitor,1,149.99,03/10/19 07:50,"916 River St, San Francisco, CA 94016" -171558,Lightning Charging Cable,1,14.95,03/03/19 08:31,"563 Forest St, Dallas, TX 75001" -171559,27in FHD Monitor,1,149.99,03/26/19 20:18,"973 Meadow St, Dallas, TX 75001" -171560,Wired Headphones,1,11.99,03/01/19 18:53,"449 South St, San Francisco, CA 94016" -171561,AA Batteries (4-pack),2,3.84,03/04/19 10:03,"413 West St, San Francisco, CA 94016" -171562,USB-C Charging Cable,1,11.95,03/19/19 13:22,"529 Chestnut St, San Francisco, CA 94016" -171563,Bose SoundSport Headphones,1,99.99,03/04/19 21:53,"728 Dogwood St, Seattle, WA 98101" -171564,ThinkPad Laptop,1,999.99,03/18/19 00:10,"936 Madison St, San Francisco, CA 94016" -171565,AAA Batteries (4-pack),3,2.99,03/19/19 15:56,"485 Cedar St, Boston, MA 02215" -171566,USB-C Charging Cable,1,11.95,03/24/19 23:14,"277 North St, San Francisco, CA 94016" -171567,Flatscreen TV,1,300,03/03/19 10:45,"96 Highland St, San Francisco, CA 94016" -171568,AAA Batteries (4-pack),1,2.99,03/09/19 22:30,"156 Elm St, New York City, NY 10001" -171569,Apple Airpods Headphones,1,150,03/22/19 01:09,"531 North St, San Francisco, CA 94016" -171570,AAA Batteries (4-pack),1,2.99,03/14/19 13:27,"677 Meadow St, New York City, NY 10001" -171571,34in Ultrawide Monitor,1,379.99,03/13/19 14:44,"649 Meadow St, San Francisco, CA 94016" -171572,Wired Headphones,2,11.99,03/30/19 17:39,"19 Maple St, Boston, MA 02215" -171573,AAA Batteries (4-pack),3,2.99,03/12/19 17:44,"996 Wilson St, San Francisco, CA 94016" -171574,Lightning Charging Cable,3,14.95,03/27/19 20:23,"976 Lincoln St, Seattle, WA 98101" -171575,Apple Airpods Headphones,1,150,03/13/19 19:43,"458 Madison St, New York City, NY 10001" -171576,Bose SoundSport Headphones,1,99.99,03/30/19 12:44,"981 Hickory St, New York City, NY 10001" -171577,AAA Batteries (4-pack),1,2.99,03/07/19 06:14,"926 Chestnut St, Los Angeles, CA 90001" -171578,Bose SoundSport Headphones,1,99.99,03/04/19 05:14,"786 Wilson St, Los Angeles, CA 90001" -171579,Lightning Charging Cable,2,14.95,03/12/19 10:43,"803 Center St, Los Angeles, CA 90001" -171580,AAA Batteries (4-pack),3,2.99,03/09/19 12:42,"704 Forest St, New York City, NY 10001" -171581,Bose SoundSport Headphones,1,99.99,03/08/19 12:46,"836 Spruce St, Boston, MA 02215" -171582,Bose SoundSport Headphones,1,99.99,03/21/19 11:38,"119 Sunset St, Austin, TX 73301" -171583,USB-C Charging Cable,1,11.95,03/14/19 13:41,"476 North St, Portland, OR 97035" -171584,iPhone,1,700,03/08/19 20:12,"253 Willow St, San Francisco, CA 94016" -171585,Google Phone,1,600,03/12/19 21:42,"761 Adams St, Atlanta, GA 30301" -171586,Bose SoundSport Headphones,1,99.99,03/11/19 11:43,"678 Lincoln St, Seattle, WA 98101" -171587,Flatscreen TV,1,300,03/25/19 13:46,"779 1st St, Dallas, TX 75001" -171588,Vareebadd Phone,1,400,03/25/19 10:03,"946 2nd St, Portland, ME 04101" -171589,iPhone,1,700,03/03/19 12:07,"901 Madison St, Los Angeles, CA 90001" -171589,Lightning Charging Cable,1,14.95,03/03/19 12:07,"901 Madison St, Los Angeles, CA 90001" -171590,USB-C Charging Cable,1,11.95,03/15/19 10:35,"512 13th St, San Francisco, CA 94016" -171591,USB-C Charging Cable,1,11.95,03/29/19 11:31,"630 Highland St, San Francisco, CA 94016" -171592,USB-C Charging Cable,2,11.95,03/02/19 18:34,"129 Spruce St, San Francisco, CA 94016" -171593,Bose SoundSport Headphones,1,99.99,03/28/19 11:29,"486 Cedar St, San Francisco, CA 94016" -171594,27in 4K Gaming Monitor,1,389.99,03/03/19 18:49,"684 4th St, New York City, NY 10001" -171595,Flatscreen TV,1,300,03/04/19 12:23,"816 Spruce St, San Francisco, CA 94016" -171596,iPhone,1,700,03/14/19 05:52,"822 Willow St, Seattle, WA 98101" -171597,27in 4K Gaming Monitor,1,389.99,03/07/19 20:23,"1 Church St, San Francisco, CA 94016" -171598,USB-C Charging Cable,1,11.95,03/26/19 13:55,"586 10th St, New York City, NY 10001" -171599,Macbook Pro Laptop,1,1700,03/23/19 13:22,"945 West St, Los Angeles, CA 90001" -171600,27in FHD Monitor,1,149.99,03/12/19 20:35,"32 Park St, Dallas, TX 75001" -171601,Lightning Charging Cable,1,14.95,03/29/19 20:18,"553 South St, San Francisco, CA 94016" -171602,Lightning Charging Cable,1,14.95,03/01/19 18:36,"662 Hickory St, San Francisco, CA 94016" -171603,Bose SoundSport Headphones,1,99.99,03/31/19 11:12,"317 Park St, Boston, MA 02215" -171604,AA Batteries (4-pack),1,3.84,03/18/19 17:33,"336 Wilson St, Los Angeles, CA 90001" -171605,Apple Airpods Headphones,1,150,03/05/19 19:10,"708 South St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -171606,USB-C Charging Cable,1,11.95,03/12/19 16:24,"780 Walnut St, Portland, OR 97035" -171607,Apple Airpods Headphones,1,150,03/24/19 01:03,"653 West St, Dallas, TX 75001" -171608,Bose SoundSport Headphones,1,99.99,03/28/19 10:15,"921 Hickory St, Atlanta, GA 30301" -171609,20in Monitor,1,109.99,03/29/19 22:09,"52 Park St, Los Angeles, CA 90001" -171610,AA Batteries (4-pack),1,3.84,03/29/19 19:12,"337 Lake St, Los Angeles, CA 90001" -171611,Lightning Charging Cable,1,14.95,03/23/19 18:31,"170 Lakeview St, Portland, ME 04101" -171612,Lightning Charging Cable,1,14.95,03/22/19 19:55,"949 Madison St, San Francisco, CA 94016" -171613,Macbook Pro Laptop,1,1700,03/09/19 07:42,"778 Highland St, Los Angeles, CA 90001" -171614,Wired Headphones,1,11.99,03/27/19 18:33,"984 Lake St, Los Angeles, CA 90001" -171615,AAA Batteries (4-pack),2,2.99,03/20/19 19:26,"71 Meadow St, Los Angeles, CA 90001" -171616,AA Batteries (4-pack),1,3.84,03/07/19 23:19,"894 1st St, Atlanta, GA 30301" -171617,34in Ultrawide Monitor,1,379.99,03/10/19 17:40,"205 Main St, New York City, NY 10001" -171618,20in Monitor,1,109.99,03/14/19 04:44,"258 Spruce St, San Francisco, CA 94016" -171619,27in FHD Monitor,1,149.99,03/08/19 21:43,"899 West St, Atlanta, GA 30301" -171620,Lightning Charging Cable,1,14.95,03/05/19 10:33,"703 2nd St, Boston, MA 02215" -171621,Bose SoundSport Headphones,1,99.99,03/17/19 12:27,"928 13th St, New York City, NY 10001" -171622,Google Phone,1,600,03/04/19 15:58,"402 2nd St, Los Angeles, CA 90001" -171622,USB-C Charging Cable,1,11.95,03/04/19 15:58,"402 2nd St, Los Angeles, CA 90001" -171623,Flatscreen TV,1,300,03/16/19 15:04,"623 Lakeview St, Dallas, TX 75001" -171624,Wired Headphones,1,11.99,03/01/19 16:46,"381 Sunset St, Seattle, WA 98101" -171625,34in Ultrawide Monitor,1,379.99,03/31/19 10:22,"398 Walnut St, Dallas, TX 75001" -171626,AAA Batteries (4-pack),1,2.99,03/25/19 12:57,"260 Sunset St, Austin, TX 73301" -171627,Lightning Charging Cable,1,14.95,03/13/19 15:38,"274 Washington St, New York City, NY 10001" -171628,34in Ultrawide Monitor,1,379.99,03/06/19 17:39,"130 1st St, Seattle, WA 98101" -171629,Lightning Charging Cable,1,14.95,03/08/19 07:04,"168 8th St, Boston, MA 02215" -171630,AAA Batteries (4-pack),1,2.99,03/04/19 09:53,"682 South St, Atlanta, GA 30301" -171631,ThinkPad Laptop,1,999.99,03/18/19 11:26,"979 12th St, Seattle, WA 98101" -171632,Bose SoundSport Headphones,1,99.99,03/13/19 07:41,"473 Johnson St, Portland, OR 97035" -171633,Bose SoundSport Headphones,1,99.99,03/27/19 17:21,"493 Cedar St, Los Angeles, CA 90001" -171634,Wired Headphones,1,11.99,03/02/19 11:44,"35 4th St, New York City, NY 10001" -171635,Apple Airpods Headphones,1,150,03/30/19 15:31,"738 Johnson St, Seattle, WA 98101" -171636,27in 4K Gaming Monitor,1,389.99,03/09/19 18:55,"345 Hill St, San Francisco, CA 94016" -171637,AA Batteries (4-pack),1,3.84,03/24/19 13:59,"47 5th St, Boston, MA 02215" -171638,Apple Airpods Headphones,1,150,03/17/19 12:50,"480 Forest St, San Francisco, CA 94016" -171639,AAA Batteries (4-pack),5,2.99,03/19/19 06:54,"486 Center St, Boston, MA 02215" -171639,AA Batteries (4-pack),1,3.84,03/19/19 06:54,"486 Center St, Boston, MA 02215" -171640,34in Ultrawide Monitor,1,379.99,03/28/19 12:18,"624 Lakeview St, New York City, NY 10001" -171641,AA Batteries (4-pack),4,3.84,03/23/19 11:45,"301 South St, San Francisco, CA 94016" -171642,Lightning Charging Cable,1,14.95,03/12/19 22:54,"709 Ridge St, New York City, NY 10001" -171643,27in 4K Gaming Monitor,1,389.99,03/03/19 23:04,"665 Hill St, Atlanta, GA 30301" -171644,ThinkPad Laptop,1,999.99,03/11/19 09:38,"991 Main St, Boston, MA 02215" -171645,iPhone,1,700,03/17/19 20:40,"869 Hickory St, Atlanta, GA 30301" -171645,Lightning Charging Cable,1,14.95,03/17/19 20:40,"869 Hickory St, Atlanta, GA 30301" -171646,27in 4K Gaming Monitor,1,389.99,03/22/19 16:06,"599 Meadow St, Boston, MA 02215" -171647,Wired Headphones,1,11.99,03/26/19 17:55,"321 5th St, Los Angeles, CA 90001" -171648,Wired Headphones,2,11.99,03/17/19 14:28,"339 9th St, Seattle, WA 98101" -171649,Lightning Charging Cable,1,14.95,03/18/19 18:04,"622 10th St, New York City, NY 10001" -171650,27in 4K Gaming Monitor,1,389.99,03/28/19 14:17,"465 10th St, Dallas, TX 75001" -171651,Apple Airpods Headphones,1,150,03/10/19 21:07,"119 Willow St, Los Angeles, CA 90001" -171652,Apple Airpods Headphones,1,150,03/29/19 02:09,"206 Lincoln St, Los Angeles, CA 90001" -171653,Wired Headphones,2,11.99,03/22/19 08:40,"196 Madison St, San Francisco, CA 94016" -171654,AA Batteries (4-pack),2,3.84,03/24/19 09:44,"402 River St, Los Angeles, CA 90001" -171655,USB-C Charging Cable,1,11.95,03/07/19 23:01,"646 River St, Boston, MA 02215" -171656,Wired Headphones,1,11.99,03/16/19 21:30,"709 Park St, Austin, TX 73301" -171657,Vareebadd Phone,1,400,03/30/19 17:55,"687 Sunset St, Portland, OR 97035" -171658,Google Phone,1,600,03/23/19 18:35,"766 Center St, San Francisco, CA 94016" -171658,Wired Headphones,1,11.99,03/23/19 18:35,"766 Center St, San Francisco, CA 94016" -171659,AAA Batteries (4-pack),2,2.99,03/25/19 14:02,"728 Pine St, Austin, TX 73301" -171660,USB-C Charging Cable,1,11.95,03/28/19 12:14,"395 7th St, San Francisco, CA 94016" -171661,20in Monitor,1,109.99,03/29/19 11:35,"857 6th St, Atlanta, GA 30301" -171662,Flatscreen TV,1,300,03/26/19 10:33,"413 Johnson St, Austin, TX 73301" -171663,27in 4K Gaming Monitor,1,389.99,03/28/19 04:18,"496 West St, Los Angeles, CA 90001" -171664,27in FHD Monitor,1,149.99,03/27/19 19:06,"75 Ridge St, Portland, OR 97035" -171665,Flatscreen TV,1,300,03/27/19 23:23,"581 River St, Seattle, WA 98101" -171666,Bose SoundSport Headphones,1,99.99,03/09/19 13:35,"946 Hill St, Dallas, TX 75001" -171667,AAA Batteries (4-pack),2,2.99,03/18/19 13:37,"550 South St, San Francisco, CA 94016" -171668,USB-C Charging Cable,1,11.95,03/03/19 06:55,"777 8th St, New York City, NY 10001" -171669,Wired Headphones,1,11.99,03/18/19 17:07,"369 Church St, Los Angeles, CA 90001" -171670,USB-C Charging Cable,1,11.95,03/10/19 13:42,"853 Washington St, New York City, NY 10001" -171671,34in Ultrawide Monitor,1,379.99,03/09/19 02:23,"438 North St, San Francisco, CA 94016" -171672,AA Batteries (4-pack),1,3.84,03/04/19 14:19,"496 Lake St, New York City, NY 10001" -171673,AAA Batteries (4-pack),1,2.99,03/11/19 11:33,"667 11th St, Atlanta, GA 30301" -171674,Lightning Charging Cable,1,14.95,03/13/19 16:45,"142 Park St, Los Angeles, CA 90001" -171675,USB-C Charging Cable,1,11.95,03/12/19 09:15,"723 2nd St, Boston, MA 02215" -171676,USB-C Charging Cable,1,11.95,03/25/19 15:46,"875 Maple St, Austin, TX 73301" -171677,AAA Batteries (4-pack),1,2.99,03/12/19 15:40,"52 Spruce St, New York City, NY 10001" -171678,27in FHD Monitor,1,149.99,03/05/19 16:27,"168 Washington St, San Francisco, CA 94016" -171679,ThinkPad Laptop,1,999.99,03/09/19 13:15,"930 2nd St, Los Angeles, CA 90001" -171680,27in 4K Gaming Monitor,2,389.99,03/09/19 13:26,"697 River St, Atlanta, GA 30301" -171681,Bose SoundSport Headphones,1,99.99,03/08/19 14:05,"238 6th St, Boston, MA 02215" -171682,Wired Headphones,1,11.99,03/30/19 23:23,"987 13th St, Atlanta, GA 30301" -171683,Wired Headphones,1,11.99,03/07/19 09:42,"647 Highland St, New York City, NY 10001" -171684,USB-C Charging Cable,1,11.95,03/04/19 16:16,"721 10th St, San Francisco, CA 94016" -171685,Wired Headphones,1,11.99,03/17/19 20:45,"725 Chestnut St, Los Angeles, CA 90001" -171686,USB-C Charging Cable,1,11.95,03/08/19 11:58,"13 Jackson St, Los Angeles, CA 90001" -171687,27in FHD Monitor,1,149.99,03/30/19 18:54,"430 South St, New York City, NY 10001" -171688,USB-C Charging Cable,2,11.95,03/14/19 20:44,"173 Sunset St, New York City, NY 10001" -171689,Bose SoundSport Headphones,1,99.99,03/23/19 13:09,"549 Spruce St, Boston, MA 02215" -171690,AAA Batteries (4-pack),6,2.99,03/14/19 19:58,"965 Washington St, San Francisco, CA 94016" -171691,AA Batteries (4-pack),1,3.84,03/07/19 01:29,"73 1st St, Atlanta, GA 30301" -171692,27in FHD Monitor,1,149.99,03/23/19 21:34,"968 Washington St, San Francisco, CA 94016" -171693,Bose SoundSport Headphones,1,99.99,03/04/19 12:42,"380 South St, Dallas, TX 75001" -171694,iPhone,1,700,03/02/19 18:12,"283 Church St, San Francisco, CA 94016" -171695,Lightning Charging Cable,1,14.95,03/08/19 17:30,"971 7th St, Boston, MA 02215" -171696,Lightning Charging Cable,1,14.95,03/21/19 12:33,"548 River St, Los Angeles, CA 90001" -171697,20in Monitor,1,109.99,03/13/19 17:25,"330 Cherry St, San Francisco, CA 94016" -171698,Bose SoundSport Headphones,1,99.99,03/25/19 18:29,"824 8th St, San Francisco, CA 94016" -171699,27in 4K Gaming Monitor,1,389.99,03/19/19 13:06,"480 12th St, Dallas, TX 75001" -171700,AAA Batteries (4-pack),2,2.99,03/29/19 14:50,"209 1st St, San Francisco, CA 94016" -171701,USB-C Charging Cable,1,11.95,03/10/19 15:23,"70 Adams St, New York City, NY 10001" -171702,Macbook Pro Laptop,1,1700,03/24/19 13:06,"757 Washington St, Seattle, WA 98101" -171703,Apple Airpods Headphones,1,150,03/19/19 09:51,"413 Forest St, Seattle, WA 98101" -171704,Lightning Charging Cable,1,14.95,03/12/19 20:51,"385 Dogwood St, Boston, MA 02215" -171705,iPhone,1,700,03/01/19 20:30,"161 8th St, San Francisco, CA 94016" -171706,AA Batteries (4-pack),3,3.84,03/16/19 17:46,"886 Meadow St, San Francisco, CA 94016" -171707,Macbook Pro Laptop,1,1700,03/30/19 20:45,"614 Ridge St, San Francisco, CA 94016" -171708,Bose SoundSport Headphones,1,99.99,03/09/19 10:30,"189 Walnut St, Austin, TX 73301" -171709,27in FHD Monitor,1,149.99,03/01/19 06:39,"436 Maple St, Portland, OR 97035" -171710,Lightning Charging Cable,1,14.95,03/10/19 12:58,"694 9th St, San Francisco, CA 94016" -171711,Google Phone,1,600,03/02/19 12:31,"63 Main St, Seattle, WA 98101" -171711,Wired Headphones,1,11.99,03/02/19 12:31,"63 Main St, Seattle, WA 98101" -171712,Bose SoundSport Headphones,1,99.99,03/23/19 01:17,"466 Maple St, Seattle, WA 98101" -171713,AAA Batteries (4-pack),5,2.99,03/12/19 13:43,"601 Park St, San Francisco, CA 94016" -171714,Wired Headphones,1,11.99,03/05/19 18:23,"732 Highland St, Portland, OR 97035" -171715,AAA Batteries (4-pack),1,2.99,03/28/19 00:18,"170 11th St, Portland, OR 97035" -171716,Macbook Pro Laptop,1,1700,03/18/19 16:30,"77 5th St, Los Angeles, CA 90001" -171717,AAA Batteries (4-pack),1,2.99,03/18/19 21:34,"692 Lincoln St, Los Angeles, CA 90001" -171718,AA Batteries (4-pack),1,3.84,03/26/19 19:10,"236 12th St, Portland, OR 97035" -171719,34in Ultrawide Monitor,1,379.99,03/28/19 00:28,"223 Lake St, Austin, TX 73301" -171720,27in 4K Gaming Monitor,1,389.99,03/21/19 22:25,"929 Willow St, San Francisco, CA 94016" -171721,Lightning Charging Cable,1,14.95,03/11/19 16:14,"623 Maple St, San Francisco, CA 94016" -171722,Lightning Charging Cable,1,14.95,03/15/19 12:58,"177 Center St, Atlanta, GA 30301" -171723,Bose SoundSport Headphones,1,99.99,03/06/19 11:20,"469 13th St, Atlanta, GA 30301" -171724,Vareebadd Phone,1,400,03/20/19 22:03,"729 Main St, Dallas, TX 75001" -171725,iPhone,1,700,03/14/19 15:54,"821 Jefferson St, San Francisco, CA 94016" -171726,34in Ultrawide Monitor,1,379.99,03/27/19 13:29,"771 12th St, Dallas, TX 75001" -171727,Lightning Charging Cable,1,14.95,03/07/19 15:25,"954 4th St, Austin, TX 73301" -171728,27in 4K Gaming Monitor,1,389.99,03/09/19 19:20,"350 7th St, Austin, TX 73301" -171729,Lightning Charging Cable,1,14.95,03/08/19 10:11,"540 Meadow St, Los Angeles, CA 90001" -171730,ThinkPad Laptop,1,999.99,03/30/19 19:09,"525 Adams St, Boston, MA 02215" -171731,Apple Airpods Headphones,1,150,03/20/19 12:10,"236 Forest St, Los Angeles, CA 90001" -171732,AAA Batteries (4-pack),1,2.99,03/25/19 12:51,"99 Maple St, Seattle, WA 98101" -171733,Apple Airpods Headphones,1,150,03/26/19 00:15,"152 Ridge St, Seattle, WA 98101" -171734,27in FHD Monitor,1,149.99,03/19/19 21:37,"405 11th St, Austin, TX 73301" -171735,27in 4K Gaming Monitor,1,389.99,03/13/19 23:34,"652 Ridge St, Seattle, WA 98101" -171736,AA Batteries (4-pack),3,3.84,03/14/19 11:34,"560 Main St, San Francisco, CA 94016" -171737,34in Ultrawide Monitor,1,379.99,03/09/19 20:05,"60 6th St, Portland, OR 97035" -171738,Bose SoundSport Headphones,1,99.99,03/21/19 21:35,"885 Meadow St, San Francisco, CA 94016" -171739,Google Phone,1,600,03/29/19 15:20,"899 Adams St, New York City, NY 10001" -171740,Wired Headphones,1,11.99,03/27/19 15:27,"744 Lake St, Portland, ME 04101" -171741,Bose SoundSport Headphones,1,99.99,03/09/19 12:48,"396 8th St, Los Angeles, CA 90001" -171742,AA Batteries (4-pack),1,3.84,03/25/19 22:46,"240 2nd St, Boston, MA 02215" -171743,20in Monitor,1,109.99,03/23/19 18:50,"965 Madison St, Portland, OR 97035" -171744,AAA Batteries (4-pack),2,2.99,03/24/19 14:21,"597 Jackson St, Seattle, WA 98101" -171745,Apple Airpods Headphones,1,150,03/31/19 17:45,"341 Center St, Atlanta, GA 30301" -171746,AA Batteries (4-pack),2,3.84,03/19/19 13:09,"535 Adams St, Los Angeles, CA 90001" -171747,AAA Batteries (4-pack),1,2.99,03/20/19 13:02,"867 Madison St, Los Angeles, CA 90001" -171748,34in Ultrawide Monitor,1,379.99,03/10/19 22:44,"697 Jackson St, Seattle, WA 98101" -171749,AAA Batteries (4-pack),1,2.99,03/07/19 19:34,"965 Lincoln St, Dallas, TX 75001" -171750,AAA Batteries (4-pack),1,2.99,03/15/19 19:07,"215 Cherry St, Dallas, TX 75001" -171751,Lightning Charging Cable,1,14.95,03/17/19 13:05,"245 Highland St, Portland, OR 97035" -,,,,, -171752,AAA Batteries (4-pack),1,2.99,03/31/19 17:37,"681 Pine St, Atlanta, GA 30301" -171753,Wired Headphones,1,11.99,03/24/19 19:04,"743 8th St, Atlanta, GA 30301" -171754,Apple Airpods Headphones,1,150,03/08/19 21:01,"353 Hill St, Boston, MA 02215" -171755,Lightning Charging Cable,1,14.95,03/23/19 14:05,"353 Jefferson St, Los Angeles, CA 90001" -171756,Bose SoundSport Headphones,1,99.99,03/30/19 13:00,"90 Pine St, Dallas, TX 75001" -171757,Apple Airpods Headphones,1,150,03/06/19 23:31,"403 Madison St, Austin, TX 73301" -171758,Apple Airpods Headphones,2,150,03/05/19 19:41,"668 4th St, Boston, MA 02215" -171759,Lightning Charging Cable,1,14.95,03/26/19 09:17,"148 11th St, San Francisco, CA 94016" -171760,AA Batteries (4-pack),1,3.84,03/07/19 23:54,"923 Chestnut St, New York City, NY 10001" -171761,Apple Airpods Headphones,1,150,03/06/19 17:12,"711 Main St, New York City, NY 10001" -171762,AAA Batteries (4-pack),1,2.99,03/23/19 14:33,"21 11th St, Los Angeles, CA 90001" -171763,20in Monitor,1,109.99,03/26/19 18:55,"113 North St, New York City, NY 10001" -171764,Lightning Charging Cable,1,14.95,03/02/19 11:06,"265 Church St, San Francisco, CA 94016" -171765,AAA Batteries (4-pack),1,2.99,03/24/19 16:35,"811 Cherry St, Seattle, WA 98101" -171766,ThinkPad Laptop,1,999.99,03/04/19 16:18,"382 Willow St, San Francisco, CA 94016" -171767,27in FHD Monitor,1,149.99,03/09/19 19:34,"301 Park St, New York City, NY 10001" -171768,USB-C Charging Cable,1,11.95,03/07/19 19:54,"252 6th St, Seattle, WA 98101" -171769,Lightning Charging Cable,1,14.95,03/23/19 14:50,"616 Park St, Seattle, WA 98101" -171770,AA Batteries (4-pack),1,3.84,03/19/19 13:07,"193 9th St, Los Angeles, CA 90001" -171771,Bose SoundSport Headphones,1,99.99,03/01/19 12:54,"24 Highland St, San Francisco, CA 94016" -171772,Vareebadd Phone,1,400,03/23/19 08:27,"722 Chestnut St, Portland, OR 97035" -171773,AAA Batteries (4-pack),1,2.99,03/29/19 19:44,"515 Johnson St, Portland, ME 04101" -171774,AA Batteries (4-pack),1,3.84,03/19/19 20:11,"495 Willow St, San Francisco, CA 94016" -171775,USB-C Charging Cable,1,11.95,03/27/19 04:19,"554 Johnson St, Seattle, WA 98101" -171776,USB-C Charging Cable,1,11.95,03/08/19 19:24,"338 4th St, Seattle, WA 98101" -171777,Lightning Charging Cable,1,14.95,03/24/19 08:59,"163 Sunset St, Los Angeles, CA 90001" -171778,Bose SoundSport Headphones,1,99.99,03/08/19 19:29,"898 10th St, New York City, NY 10001" -171779,Apple Airpods Headphones,1,150,03/14/19 17:40,"17 11th St, Los Angeles, CA 90001" -171780,Apple Airpods Headphones,1,150,03/21/19 16:27,"543 12th St, San Francisco, CA 94016" -171781,27in 4K Gaming Monitor,1,389.99,03/15/19 09:14,"516 Meadow St, New York City, NY 10001" -171782,AAA Batteries (4-pack),3,2.99,03/19/19 08:38,"868 7th St, Dallas, TX 75001" -171783,Wired Headphones,1,11.99,03/23/19 15:55,"776 Church St, Boston, MA 02215" -171784,Apple Airpods Headphones,1,150,03/16/19 13:04,"85 Lincoln St, San Francisco, CA 94016" -171785,AA Batteries (4-pack),1,3.84,03/12/19 11:52,"951 Main St, Atlanta, GA 30301" -171786,34in Ultrawide Monitor,1,379.99,03/16/19 21:41,"199 River St, Boston, MA 02215" -171787,AAA Batteries (4-pack),1,2.99,03/14/19 04:12,"873 Jackson St, Atlanta, GA 30301" -171788,Lightning Charging Cable,1,14.95,03/06/19 18:47,"225 Park St, New York City, NY 10001" -171789,Wired Headphones,1,11.99,03/12/19 21:26,"957 Park St, Boston, MA 02215" -171790,AAA Batteries (4-pack),2,2.99,03/21/19 20:30,"925 Johnson St, Atlanta, GA 30301" -171791,Apple Airpods Headphones,1,150,03/27/19 07:42,"371 Adams St, Boston, MA 02215" -171792,Bose SoundSport Headphones,1,99.99,03/12/19 17:29,"313 Hill St, San Francisco, CA 94016" -171793,USB-C Charging Cable,1,11.95,03/12/19 12:19,"212 Cherry St, Dallas, TX 75001" -171794,Macbook Pro Laptop,1,1700,03/17/19 14:08,"438 Meadow St, San Francisco, CA 94016" -171795,Bose SoundSport Headphones,1,99.99,03/20/19 08:49,"568 1st St, Seattle, WA 98101" -171796,Lightning Charging Cable,1,14.95,03/31/19 12:55,"959 Walnut St, Portland, OR 97035" -171797,Wired Headphones,1,11.99,03/01/19 12:21,"463 Cherry St, San Francisco, CA 94016" -171798,Apple Airpods Headphones,1,150,03/27/19 17:13,"301 9th St, Boston, MA 02215" -171799,USB-C Charging Cable,1,11.95,03/04/19 03:02,"360 Washington St, Boston, MA 02215" -171800,AAA Batteries (4-pack),1,2.99,03/01/19 17:41,"11 Highland St, Los Angeles, CA 90001" -171801,iPhone,1,700,03/31/19 07:15,"599 Cedar St, San Francisco, CA 94016" -171801,Apple Airpods Headphones,1,150,03/31/19 07:15,"599 Cedar St, San Francisco, CA 94016" -171802,Apple Airpods Headphones,1,150,03/11/19 22:12,"664 Cherry St, Austin, TX 73301" -171803,Apple Airpods Headphones,1,150,03/03/19 13:31,"677 Jefferson St, San Francisco, CA 94016" -171804,AA Batteries (4-pack),1,3.84,03/26/19 07:19,"872 Chestnut St, Dallas, TX 75001" -171805,AA Batteries (4-pack),1,3.84,03/15/19 21:54,"313 Jefferson St, San Francisco, CA 94016" -171806,iPhone,1,700,03/06/19 11:29,"98 4th St, San Francisco, CA 94016" -171806,Lightning Charging Cable,1,14.95,03/06/19 11:29,"98 4th St, San Francisco, CA 94016" -171807,USB-C Charging Cable,1,11.95,03/22/19 12:33,"621 Forest St, Boston, MA 02215" -171808,Bose SoundSport Headphones,1,99.99,03/07/19 20:59,"945 Main St, Boston, MA 02215" -171809,USB-C Charging Cable,1,11.95,03/10/19 21:56,"305 7th St, New York City, NY 10001" -171810,USB-C Charging Cable,2,11.95,03/12/19 14:12,"546 Spruce St, Austin, TX 73301" -171811,Lightning Charging Cable,1,14.95,03/05/19 10:03,"67 Pine St, Atlanta, GA 30301" -171812,USB-C Charging Cable,1,11.95,03/03/19 07:12,"839 Maple St, San Francisco, CA 94016" -171813,27in FHD Monitor,1,149.99,03/06/19 15:44,"863 River St, Portland, OR 97035" -171814,Apple Airpods Headphones,1,150,03/10/19 16:53,"830 Jefferson St, Boston, MA 02215" -171815,iPhone,1,700,03/18/19 18:47,"266 Hickory St, New York City, NY 10001" -171816,AA Batteries (4-pack),1,3.84,03/24/19 13:17,"439 Madison St, San Francisco, CA 94016" -171817,Vareebadd Phone,1,400,03/27/19 14:04,"73 14th St, San Francisco, CA 94016" -171818,AAA Batteries (4-pack),1,2.99,03/19/19 09:09,"5 Lakeview St, New York City, NY 10001" -171819,AAA Batteries (4-pack),1,2.99,03/12/19 15:23,"284 Wilson St, Boston, MA 02215" -171820,AA Batteries (4-pack),2,3.84,03/05/19 15:20,"325 Forest St, Atlanta, GA 30301" -171821,AA Batteries (4-pack),1,3.84,03/27/19 14:19,"293 13th St, Dallas, TX 75001" -171822,Lightning Charging Cable,1,14.95,03/12/19 10:57,"979 Chestnut St, San Francisco, CA 94016" -171823,Wired Headphones,2,11.99,03/27/19 16:46,"961 8th St, New York City, NY 10001" -171824,AAA Batteries (4-pack),1,2.99,03/02/19 18:59,"747 12th St, Seattle, WA 98101" -171825,iPhone,1,700,03/03/19 20:57,"442 Hickory St, San Francisco, CA 94016" -171825,Lightning Charging Cable,1,14.95,03/03/19 20:57,"442 Hickory St, San Francisco, CA 94016" -171826,27in 4K Gaming Monitor,1,389.99,03/21/19 12:54,"887 Spruce St, San Francisco, CA 94016" -171827,Bose SoundSport Headphones,1,99.99,03/03/19 05:45,"160 Highland St, New York City, NY 10001" -171828,AA Batteries (4-pack),3,3.84,03/13/19 19:54,"875 Cedar St, Portland, ME 04101" -171829,AAA Batteries (4-pack),1,2.99,03/11/19 13:58,"494 Johnson St, Dallas, TX 75001" -171830,Wired Headphones,1,11.99,03/08/19 13:25,"711 Hill St, Dallas, TX 75001" -171831,AAA Batteries (4-pack),4,2.99,03/11/19 11:22,"352 6th St, San Francisco, CA 94016" -171832,Lightning Charging Cable,1,14.95,03/05/19 12:23,"941 Jefferson St, San Francisco, CA 94016" -171833,27in 4K Gaming Monitor,1,389.99,03/21/19 10:47,"672 Lake St, New York City, NY 10001" -171834,AAA Batteries (4-pack),1,2.99,03/15/19 16:35,"40 Walnut St, Dallas, TX 75001" -171835,Apple Airpods Headphones,1,150,03/08/19 12:23,"657 Main St, Seattle, WA 98101" -171836,Flatscreen TV,1,300,03/15/19 19:28,"364 13th St, New York City, NY 10001" -171837,AA Batteries (4-pack),1,3.84,03/27/19 11:10,"935 River St, New York City, NY 10001" -171838,USB-C Charging Cable,1,11.95,03/14/19 16:28,"960 Chestnut St, Portland, OR 97035" -171839,Apple Airpods Headphones,1,150,03/13/19 07:09,"994 Johnson St, Los Angeles, CA 90001" -171840,USB-C Charging Cable,1,11.95,03/08/19 14:53,"287 Forest St, Seattle, WA 98101" -171841,Lightning Charging Cable,1,14.95,03/15/19 19:47,"242 Highland St, Atlanta, GA 30301" -171842,ThinkPad Laptop,1,999.99,03/16/19 17:33,"241 13th St, Boston, MA 02215" -171843,Google Phone,1,600,03/05/19 07:34,"159 Wilson St, New York City, NY 10001" -171843,Bose SoundSport Headphones,1,99.99,03/05/19 07:34,"159 Wilson St, New York City, NY 10001" -171844,Lightning Charging Cable,1,14.95,03/19/19 18:19,"170 Adams St, Los Angeles, CA 90001" -171845,Apple Airpods Headphones,1,150,03/31/19 09:44,"819 6th St, San Francisco, CA 94016" -171846,Google Phone,1,600,03/21/19 00:20,"575 Adams St, Austin, TX 73301" -171847,Apple Airpods Headphones,1,150,03/03/19 08:31,"581 Cedar St, Boston, MA 02215" -,,,,, -171848,Apple Airpods Headphones,1,150,03/30/19 21:25,"745 Main St, Portland, OR 97035" -171849,ThinkPad Laptop,1,999.99,03/25/19 13:31,"529 12th St, San Francisco, CA 94016" -171850,AAA Batteries (4-pack),2,2.99,03/05/19 13:45,"801 Johnson St, Los Angeles, CA 90001" -171851,ThinkPad Laptop,1,999.99,03/02/19 16:50,"370 Adams St, Boston, MA 02215" -171852,27in 4K Gaming Monitor,1,389.99,03/15/19 09:51,"332 10th St, San Francisco, CA 94016" -171853,AAA Batteries (4-pack),2,2.99,03/09/19 19:36,"846 Main St, New York City, NY 10001" -171854,Bose SoundSport Headphones,1,99.99,03/31/19 10:20,"452 South St, Boston, MA 02215" -171855,USB-C Charging Cable,2,11.95,03/28/19 21:51,"269 West St, Dallas, TX 75001" -171856,Bose SoundSport Headphones,1,99.99,03/13/19 23:16,"960 Lakeview St, Los Angeles, CA 90001" -171857,USB-C Charging Cable,2,11.95,03/31/19 16:14,"829 Highland St, San Francisco, CA 94016" -171858,27in 4K Gaming Monitor,1,389.99,03/26/19 13:12,"412 6th St, Los Angeles, CA 90001" -171859,27in 4K Gaming Monitor,1,389.99,03/20/19 12:27,"486 Hickory St, San Francisco, CA 94016" -171860,USB-C Charging Cable,1,11.95,03/13/19 23:00,"218 Ridge St, San Francisco, CA 94016" -171861,AAA Batteries (4-pack),1,2.99,03/23/19 23:16,"62 Hickory St, Los Angeles, CA 90001" -171862,AAA Batteries (4-pack),2,2.99,03/11/19 14:32,"567 6th St, Los Angeles, CA 90001" -171863,27in FHD Monitor,1,149.99,03/13/19 11:16,"912 Chestnut St, Atlanta, GA 30301" -171864,27in 4K Gaming Monitor,1,389.99,03/21/19 17:11,"750 2nd St, New York City, NY 10001" -171865,USB-C Charging Cable,1,11.95,03/25/19 18:26,"350 Church St, San Francisco, CA 94016" -171866,AA Batteries (4-pack),2,3.84,03/25/19 02:26,"803 10th St, Los Angeles, CA 90001" -171867,Bose SoundSport Headphones,1,99.99,03/10/19 21:29,"143 Hill St, Atlanta, GA 30301" -171868,Lightning Charging Cable,1,14.95,03/13/19 14:00,"74 Cedar St, San Francisco, CA 94016" -171869,ThinkPad Laptop,1,999.99,03/25/19 18:22,"736 North St, Los Angeles, CA 90001" -171870,AAA Batteries (4-pack),2,2.99,03/23/19 15:27,"573 9th St, San Francisco, CA 94016" -171871,Lightning Charging Cable,1,14.95,03/07/19 10:04,"207 Lake St, Dallas, TX 75001" -171872,20in Monitor,1,109.99,03/31/19 13:57,"466 Pine St, San Francisco, CA 94016" -171873,20in Monitor,1,109.99,03/02/19 20:52,"937 Forest St, Los Angeles, CA 90001" -171874,AA Batteries (4-pack),1,3.84,03/24/19 11:27,"438 Pine St, Boston, MA 02215" -171875,USB-C Charging Cable,1,11.95,03/10/19 12:51,"697 9th St, San Francisco, CA 94016" -171876,Lightning Charging Cable,1,14.95,03/14/19 15:43,"760 2nd St, San Francisco, CA 94016" -171877,AAA Batteries (4-pack),1,2.99,03/05/19 06:26,"141 Jackson St, Austin, TX 73301" -171878,Wired Headphones,1,11.99,03/21/19 21:29,"736 Jefferson St, Dallas, TX 75001" -171879,Wired Headphones,1,11.99,03/27/19 10:10,"613 14th St, Seattle, WA 98101" -171880,Flatscreen TV,1,300,03/22/19 22:15,"288 Madison St, Atlanta, GA 30301" -171881,AA Batteries (4-pack),1,3.84,03/19/19 11:22,"961 1st St, New York City, NY 10001" -171882,AAA Batteries (4-pack),2,2.99,03/05/19 15:16,"895 5th St, Austin, TX 73301" -171883,34in Ultrawide Monitor,1,379.99,03/23/19 08:10,"883 North St, Atlanta, GA 30301" -171884,34in Ultrawide Monitor,1,379.99,03/18/19 15:49,"899 Willow St, Dallas, TX 75001" -171885,Wired Headphones,1,11.99,03/26/19 19:10,"400 Park St, Atlanta, GA 30301" -171886,Bose SoundSport Headphones,1,99.99,03/01/19 18:04,"779 7th St, Boston, MA 02215" -171887,27in 4K Gaming Monitor,1,389.99,03/20/19 09:58,"900 Center St, Atlanta, GA 30301" -171888,USB-C Charging Cable,1,11.95,03/09/19 09:13,"730 13th St, New York City, NY 10001" -171889,AA Batteries (4-pack),1,3.84,03/23/19 17:56,"102 Madison St, Los Angeles, CA 90001" -171890,iPhone,1,700,03/08/19 00:52,"162 Sunset St, New York City, NY 10001" -171891,Macbook Pro Laptop,1,1700,03/12/19 20:36,"502 Maple St, New York City, NY 10001" -171892,Macbook Pro Laptop,1,1700,03/05/19 17:53,"353 Jefferson St, Boston, MA 02215" -171893,27in FHD Monitor,1,149.99,03/08/19 10:59,"797 4th St, San Francisco, CA 94016" -171894,AAA Batteries (4-pack),3,2.99,03/01/19 12:01,"825 Church St, San Francisco, CA 94016" -171895,Bose SoundSport Headphones,1,99.99,03/29/19 21:03,"724 14th St, San Francisco, CA 94016" -171896,Vareebadd Phone,1,400,03/18/19 05:03,"77 Lincoln St, San Francisco, CA 94016" -171896,USB-C Charging Cable,1,11.95,03/18/19 05:03,"77 Lincoln St, San Francisco, CA 94016" -171897,USB-C Charging Cable,1,11.95,03/28/19 13:08,"432 Adams St, Boston, MA 02215" -171898,USB-C Charging Cable,1,11.95,03/27/19 02:17,"55 South St, San Francisco, CA 94016" -171899,Wired Headphones,1,11.99,03/12/19 13:12,"235 Jefferson St, Portland, OR 97035" -171900,ThinkPad Laptop,1,999.99,03/23/19 23:09,"945 12th St, New York City, NY 10001" -171901,Bose SoundSport Headphones,1,99.99,03/30/19 08:01,"479 11th St, Portland, OR 97035" -171902,USB-C Charging Cable,2,11.95,03/03/19 23:18,"287 Chestnut St, San Francisco, CA 94016" -171903,AA Batteries (4-pack),2,3.84,03/13/19 20:23,"318 Forest St, Seattle, WA 98101" -171904,27in 4K Gaming Monitor,1,389.99,03/04/19 14:32,"74 North St, Boston, MA 02215" -171904,Lightning Charging Cable,1,14.95,03/04/19 14:32,"74 North St, Boston, MA 02215" -171905,Bose SoundSport Headphones,1,99.99,03/07/19 10:43,"975 9th St, New York City, NY 10001" -171906,27in 4K Gaming Monitor,1,389.99,03/12/19 14:10,"136 Spruce St, Los Angeles, CA 90001" -171907,Lightning Charging Cable,2,14.95,03/16/19 16:53,"582 Church St, Los Angeles, CA 90001" -171908,20in Monitor,2,109.99,03/06/19 14:38,"864 Lincoln St, Austin, TX 73301" -171909,Bose SoundSport Headphones,1,99.99,03/26/19 22:41,"239 5th St, New York City, NY 10001" -171910,Flatscreen TV,1,300,03/12/19 12:46,"760 Washington St, Boston, MA 02215" -171911,AA Batteries (4-pack),2,3.84,03/19/19 10:29,"23 Dogwood St, San Francisco, CA 94016" -171912,Bose SoundSport Headphones,1,99.99,03/19/19 16:16,"68 Cedar St, San Francisco, CA 94016" -171912,USB-C Charging Cable,1,11.95,03/19/19 16:16,"68 Cedar St, San Francisco, CA 94016" -171913,27in FHD Monitor,1,149.99,03/31/19 07:52,"887 West St, New York City, NY 10001" -171914,Flatscreen TV,1,300,03/13/19 18:06,"662 Park St, Los Angeles, CA 90001" -171915,27in 4K Gaming Monitor,1,389.99,03/24/19 17:07,"388 Center St, Portland, ME 04101" -171916,Lightning Charging Cable,1,14.95,03/12/19 12:39,"318 Sunset St, New York City, NY 10001" -171917,Wired Headphones,2,11.99,03/24/19 13:03,"812 Washington St, Dallas, TX 75001" -171918,AA Batteries (4-pack),1,3.84,03/06/19 11:21,"921 7th St, San Francisco, CA 94016" -171919,AA Batteries (4-pack),1,3.84,03/07/19 19:09,"280 6th St, New York City, NY 10001" -171920,27in FHD Monitor,1,149.99,03/16/19 19:24,"990 Spruce St, Dallas, TX 75001" -171921,Bose SoundSport Headphones,1,99.99,03/09/19 00:34,"344 13th St, Portland, OR 97035" -171922,20in Monitor,1,109.99,03/17/19 11:32,"762 Hickory St, San Francisco, CA 94016" -171923,Flatscreen TV,1,300,03/18/19 11:25,"922 North St, Dallas, TX 75001" -171924,AA Batteries (4-pack),1,3.84,03/04/19 11:48,"669 Maple St, Austin, TX 73301" -171925,AA Batteries (4-pack),1,3.84,03/24/19 16:57,"484 Jefferson St, Boston, MA 02215" -171926,AA Batteries (4-pack),1,3.84,03/08/19 09:58,"491 Hickory St, Seattle, WA 98101" -171927,27in 4K Gaming Monitor,1,389.99,03/15/19 08:44,"130 Center St, New York City, NY 10001" -171928,AAA Batteries (4-pack),1,2.99,03/20/19 11:33,"426 Pine St, Los Angeles, CA 90001" -171929,AA Batteries (4-pack),1,3.84,03/07/19 19:30,"870 Walnut St, New York City, NY 10001" -171930,Wired Headphones,1,11.99,03/22/19 08:09,"843 9th St, New York City, NY 10001" -171931,Vareebadd Phone,1,400,03/19/19 21:02,"364 Lincoln St, New York City, NY 10001" -171932,USB-C Charging Cable,1,11.95,03/24/19 15:04,"736 Walnut St, New York City, NY 10001" -171933,Apple Airpods Headphones,1,150,03/24/19 11:57,"221 5th St, Los Angeles, CA 90001" -171934,AA Batteries (4-pack),1,3.84,03/08/19 11:56,"60 North St, San Francisco, CA 94016" -171935,LG Washing Machine,1,600.0,03/14/19 16:42,"871 South St, Los Angeles, CA 90001" -171935,AAA Batteries (4-pack),2,2.99,03/14/19 16:42,"871 South St, Los Angeles, CA 90001" -171936,34in Ultrawide Monitor,1,379.99,03/18/19 19:26,"585 9th St, Portland, OR 97035" -171937,AA Batteries (4-pack),1,3.84,03/24/19 20:11,"632 Lake St, Seattle, WA 98101" -171938,Lightning Charging Cable,1,14.95,03/02/19 13:39,"894 Hill St, Boston, MA 02215" -171939,AA Batteries (4-pack),1,3.84,03/13/19 22:02,"606 Chestnut St, Seattle, WA 98101" -171940,Wired Headphones,3,11.99,03/12/19 19:03,"233 Church St, Dallas, TX 75001" -171941,ThinkPad Laptop,1,999.99,03/31/19 11:39,"19 Wilson St, Boston, MA 02215" -171942,27in 4K Gaming Monitor,1,389.99,03/20/19 14:15,"998 Highland St, Los Angeles, CA 90001" -171943,AA Batteries (4-pack),2,3.84,03/06/19 15:10,"789 Main St, Seattle, WA 98101" -171944,Lightning Charging Cable,1,14.95,03/31/19 11:17,"281 12th St, Austin, TX 73301" -171945,Lightning Charging Cable,2,14.95,03/29/19 21:17,"803 10th St, Atlanta, GA 30301" -171945,Macbook Pro Laptop,1,1700,03/29/19 21:17,"803 10th St, Atlanta, GA 30301" -171946,Apple Airpods Headphones,1,150,03/07/19 10:39,"503 Lincoln St, Austin, TX 73301" -171947,34in Ultrawide Monitor,1,379.99,03/25/19 00:43,"783 1st St, Seattle, WA 98101" -171948,USB-C Charging Cable,1,11.95,03/31/19 06:13,"728 North St, San Francisco, CA 94016" -171949,Apple Airpods Headphones,1,150,03/17/19 13:25,"707 Cedar St, Dallas, TX 75001" -171950,Apple Airpods Headphones,1,150,03/05/19 11:27,"924 Washington St, Los Angeles, CA 90001" -171951,34in Ultrawide Monitor,1,379.99,03/03/19 18:18,"184 Lincoln St, Los Angeles, CA 90001" -171952,AA Batteries (4-pack),1,3.84,03/27/19 16:25,"307 Pine St, Seattle, WA 98101" -171953,Wired Headphones,4,11.99,03/31/19 10:11,"787 Sunset St, Austin, TX 73301" -171954,AA Batteries (4-pack),1,3.84,03/19/19 11:30,"924 5th St, San Francisco, CA 94016" -171955,iPhone,1,700,03/27/19 14:43,"353 Dogwood St, Austin, TX 73301" -171956,34in Ultrawide Monitor,1,379.99,03/23/19 13:35,"442 Hill St, New York City, NY 10001" -171957,34in Ultrawide Monitor,1,379.99,03/27/19 06:28,"46 Lake St, Dallas, TX 75001" -171958,AA Batteries (4-pack),2,3.84,03/14/19 19:06,"684 Wilson St, Los Angeles, CA 90001" -171959,Wired Headphones,1,11.99,03/29/19 16:53,"472 Washington St, New York City, NY 10001" -171960,Lightning Charging Cable,1,14.95,03/01/19 08:30,"66 2nd St, New York City, NY 10001" -171961,AAA Batteries (4-pack),1,2.99,03/11/19 19:02,"300 Walnut St, San Francisco, CA 94016" -171962,Apple Airpods Headphones,1,150,03/01/19 12:35,"715 Willow St, San Francisco, CA 94016" -171963,Bose SoundSport Headphones,1,99.99,03/17/19 15:48,"848 South St, New York City, NY 10001" -171964,Wired Headphones,1,11.99,03/08/19 18:13,"871 Dogwood St, Dallas, TX 75001" -171965,AAA Batteries (4-pack),1,2.99,03/25/19 22:17,"890 14th St, Atlanta, GA 30301" -171966,AAA Batteries (4-pack),1,2.99,03/19/19 22:50,"210 Church St, Boston, MA 02215" -171967,Vareebadd Phone,1,400,03/14/19 14:59,"344 Main St, San Francisco, CA 94016" -171968,AA Batteries (4-pack),1,3.84,03/07/19 08:52,"397 1st St, San Francisco, CA 94016" -171969,USB-C Charging Cable,1,11.95,03/03/19 07:04,"411 Pine St, Los Angeles, CA 90001" -171970,Lightning Charging Cable,1,14.95,03/22/19 16:15,"730 South St, Los Angeles, CA 90001" -171971,USB-C Charging Cable,1,11.95,03/13/19 15:40,"681 Wilson St, Dallas, TX 75001" -171972,Lightning Charging Cable,1,14.95,03/28/19 18:46,"451 Wilson St, Austin, TX 73301" -171973,Macbook Pro Laptop,1,1700,03/15/19 17:33,"959 Forest St, Atlanta, GA 30301" -171974,AA Batteries (4-pack),1,3.84,03/24/19 00:06,"477 Wilson St, Portland, ME 04101" -171975,27in 4K Gaming Monitor,1,389.99,03/10/19 00:46,"512 Dogwood St, Austin, TX 73301" -171976,AA Batteries (4-pack),1,3.84,03/28/19 11:09,"708 Jackson St, Boston, MA 02215" -171977,Apple Airpods Headphones,1,150,03/17/19 21:57,"656 Meadow St, New York City, NY 10001" -171978,Wired Headphones,1,11.99,03/10/19 21:58,"476 13th St, San Francisco, CA 94016" -171979,34in Ultrawide Monitor,1,379.99,03/13/19 16:12,"980 South St, Dallas, TX 75001" -171980,USB-C Charging Cable,1,11.95,03/21/19 20:16,"67 River St, Los Angeles, CA 90001" -171981,Lightning Charging Cable,1,14.95,03/01/19 09:37,"282 River St, Seattle, WA 98101" -171982,Bose SoundSport Headphones,1,99.99,03/17/19 09:21,"140 Park St, Dallas, TX 75001" -171983,USB-C Charging Cable,1,11.95,03/25/19 14:20,"623 Center St, Portland, OR 97035" -171984,Flatscreen TV,1,300,03/14/19 20:15,"961 Spruce St, Seattle, WA 98101" -171985,Macbook Pro Laptop,1,1700,03/29/19 22:25,"81 South St, San Francisco, CA 94016" -171986,iPhone,1,700,03/23/19 10:00,"403 Church St, San Francisco, CA 94016" -171987,27in 4K Gaming Monitor,1,389.99,03/10/19 12:30,"859 Madison St, New York City, NY 10001" -171988,AAA Batteries (4-pack),2,2.99,03/03/19 22:39,"846 6th St, Los Angeles, CA 90001" -171989,iPhone,1,700,03/19/19 21:47,"182 7th St, Seattle, WA 98101" -171990,27in FHD Monitor,1,149.99,03/16/19 20:33,"612 Dogwood St, San Francisco, CA 94016" -171991,USB-C Charging Cable,1,11.95,03/21/19 03:31,"323 10th St, Atlanta, GA 30301" -171992,ThinkPad Laptop,1,999.99,03/17/19 11:44,"539 Wilson St, Los Angeles, CA 90001" -171993,AAA Batteries (4-pack),1,2.99,03/04/19 23:01,"58 Main St, Dallas, TX 75001" -171994,AA Batteries (4-pack),1,3.84,03/19/19 09:04,"792 Sunset St, Los Angeles, CA 90001" -171995,AA Batteries (4-pack),1,3.84,03/22/19 19:43,"352 Maple St, Seattle, WA 98101" -171996,Lightning Charging Cable,1,14.95,03/28/19 17:28,"980 6th St, New York City, NY 10001" -171997,Apple Airpods Headphones,1,150,03/07/19 02:25,"97 11th St, Portland, ME 04101" -171998,Bose SoundSport Headphones,1,99.99,03/23/19 11:50,"234 West St, San Francisco, CA 94016" -171999,AA Batteries (4-pack),1,3.84,03/23/19 14:56,"766 River St, New York City, NY 10001" -172000,27in 4K Gaming Monitor,1,389.99,03/31/19 14:50,"222 Main St, New York City, NY 10001" -172001,Bose SoundSport Headphones,1,99.99,03/31/19 00:48,"752 Elm St, San Francisco, CA 94016" -172002,Wired Headphones,1,11.99,03/20/19 18:25,"152 Adams St, San Francisco, CA 94016" -172003,AAA Batteries (4-pack),2,2.99,03/19/19 17:28,"966 West St, Los Angeles, CA 90001" -172004,Apple Airpods Headphones,1,150,03/04/19 00:40,"942 Church St, Los Angeles, CA 90001" -172005,USB-C Charging Cable,1,11.95,03/06/19 12:24,"212 Jefferson St, San Francisco, CA 94016" -172006,Apple Airpods Headphones,1,150,03/23/19 14:01,"494 Pine St, Atlanta, GA 30301" -172007,27in FHD Monitor,1,149.99,03/03/19 13:12,"27 4th St, Los Angeles, CA 90001" -172008,Lightning Charging Cable,1,14.95,03/01/19 21:22,"935 West St, Boston, MA 02215" -172009,iPhone,1,700,03/25/19 22:55,"956 River St, Dallas, TX 75001" -172010,Bose SoundSport Headphones,1,99.99,03/22/19 21:52,"880 13th St, San Francisco, CA 94016" -172011,Bose SoundSport Headphones,1,99.99,03/09/19 19:43,"531 6th St, New York City, NY 10001" -172012,AAA Batteries (4-pack),1,2.99,03/26/19 18:25,"752 Madison St, Seattle, WA 98101" -172013,Wired Headphones,2,11.99,03/03/19 18:03,"596 Center St, San Francisco, CA 94016" -172014,Flatscreen TV,1,300,03/10/19 14:45,"45 Willow St, San Francisco, CA 94016" -172015,Bose SoundSport Headphones,1,99.99,03/22/19 15:12,"183 Main St, New York City, NY 10001" -172016,AAA Batteries (4-pack),1,2.99,03/02/19 15:42,"640 Hill St, Seattle, WA 98101" -172017,USB-C Charging Cable,1,11.95,03/17/19 09:06,"187 Hill St, New York City, NY 10001" -172018,USB-C Charging Cable,1,11.95,03/02/19 19:26,"704 Church St, New York City, NY 10001" -172019,AA Batteries (4-pack),1,3.84,03/25/19 21:41,"694 Madison St, Los Angeles, CA 90001" -172020,USB-C Charging Cable,1,11.95,03/31/19 16:47,"972 Walnut St, Dallas, TX 75001" -172021,Lightning Charging Cable,1,14.95,03/14/19 18:12,"585 13th St, Dallas, TX 75001" -172022,USB-C Charging Cable,1,11.95,03/15/19 08:21,"767 Main St, New York City, NY 10001" -172023,USB-C Charging Cable,1,11.95,03/11/19 16:21,"723 Park St, Los Angeles, CA 90001" -172024,Lightning Charging Cable,1,14.95,03/26/19 13:44,"142 Church St, Los Angeles, CA 90001" -172025,Lightning Charging Cable,1,14.95,03/05/19 12:39,"922 Sunset St, San Francisco, CA 94016" -172026,AA Batteries (4-pack),1,3.84,03/03/19 12:56,"974 Dogwood St, Boston, MA 02215" -172027,27in 4K Gaming Monitor,1,389.99,03/05/19 11:09,"193 Jefferson St, New York City, NY 10001" -172028,Apple Airpods Headphones,1,150,03/07/19 13:49,"421 Center St, San Francisco, CA 94016" -172029,iPhone,1,700,03/14/19 11:40,"191 Sunset St, San Francisco, CA 94016" -172029,Wired Headphones,1,11.99,03/14/19 11:40,"191 Sunset St, San Francisco, CA 94016" -172030,Lightning Charging Cable,1,14.95,03/09/19 21:22,"497 Cherry St, Seattle, WA 98101" -172031,Flatscreen TV,1,300,03/14/19 18:43,"423 2nd St, New York City, NY 10001" -172032,Google Phone,1,600,03/22/19 14:17,"954 13th St, Los Angeles, CA 90001" -172033,USB-C Charging Cable,1,11.95,03/05/19 21:28,"35 10th St, Boston, MA 02215" -172034,AAA Batteries (4-pack),3,2.99,03/20/19 18:36,"431 Highland St, San Francisco, CA 94016" -172035,Bose SoundSport Headphones,1,99.99,03/21/19 14:24,"510 Lincoln St, Los Angeles, CA 90001" -172036,AA Batteries (4-pack),1,3.84,03/29/19 17:58,"55 Hill St, Portland, OR 97035" -172037,AA Batteries (4-pack),1,3.84,03/27/19 12:39,"250 Wilson St, Los Angeles, CA 90001" -172038,27in FHD Monitor,1,149.99,03/03/19 14:14,"705 Lincoln St, San Francisco, CA 94016" -172039,AA Batteries (4-pack),2,3.84,03/10/19 18:48,"789 South St, San Francisco, CA 94016" -172040,AAA Batteries (4-pack),1,2.99,03/09/19 18:47,"600 Lincoln St, San Francisco, CA 94016" -172040,Wired Headphones,1,11.99,03/09/19 18:47,"600 Lincoln St, San Francisco, CA 94016" -172041,AAA Batteries (4-pack),2,2.99,03/15/19 10:34,"81 North St, San Francisco, CA 94016" -172042,27in 4K Gaming Monitor,1,389.99,03/03/19 07:57,"268 Lincoln St, Boston, MA 02215" -172043,AA Batteries (4-pack),1,3.84,03/16/19 11:20,"566 12th St, New York City, NY 10001" -172044,ThinkPad Laptop,1,999.99,03/19/19 18:58,"260 Jackson St, New York City, NY 10001" -172045,Bose SoundSport Headphones,1,99.99,03/22/19 11:56,"318 8th St, San Francisco, CA 94016" -172046,AA Batteries (4-pack),1,3.84,03/24/19 21:14,"553 13th St, New York City, NY 10001" -172047,27in 4K Gaming Monitor,1,389.99,03/15/19 13:00,"729 Johnson St, New York City, NY 10001" -172048,AAA Batteries (4-pack),3,2.99,03/20/19 19:25,"211 Maple St, Portland, ME 04101" -172049,Lightning Charging Cable,1,14.95,03/14/19 23:39,"218 Hill St, Seattle, WA 98101" -172050,AA Batteries (4-pack),2,3.84,03/21/19 03:04,"701 11th St, San Francisco, CA 94016" -172051,Wired Headphones,2,11.99,03/15/19 21:35,"563 West St, Boston, MA 02215" -172052,ThinkPad Laptop,1,999.99,03/22/19 15:15,"102 Wilson St, New York City, NY 10001" -172053,Lightning Charging Cable,1,14.95,03/26/19 21:46,"770 Adams St, San Francisco, CA 94016" -172054,USB-C Charging Cable,1,11.95,03/04/19 13:44,"925 6th St, Los Angeles, CA 90001" -172055,Lightning Charging Cable,1,14.95,03/10/19 13:14,"330 West St, Los Angeles, CA 90001" -172056,20in Monitor,1,109.99,03/10/19 23:31,"476 Chestnut St, New York City, NY 10001" -172057,AA Batteries (4-pack),1,3.84,03/25/19 08:27,"198 Washington St, Atlanta, GA 30301" -172058,LG Washing Machine,1,600.0,03/07/19 14:27,"923 6th St, Dallas, TX 75001" -172059,AA Batteries (4-pack),1,3.84,03/30/19 10:48,"331 Forest St, Dallas, TX 75001" -172060,USB-C Charging Cable,1,11.95,03/27/19 14:03,"64 Forest St, Boston, MA 02215" -172061,27in 4K Gaming Monitor,1,389.99,03/28/19 14:34,"592 Forest St, San Francisco, CA 94016" -172062,Wired Headphones,1,11.99,03/23/19 11:53,"824 9th St, San Francisco, CA 94016" -172063,AA Batteries (4-pack),1,3.84,03/03/19 16:42,"314 2nd St, San Francisco, CA 94016" -172064,Wired Headphones,1,11.99,03/24/19 09:30,"52 12th St, Los Angeles, CA 90001" -172065,AAA Batteries (4-pack),1,2.99,03/28/19 09:53,"698 Cedar St, Atlanta, GA 30301" -172066,Bose SoundSport Headphones,1,99.99,03/19/19 12:42,"561 Jefferson St, Portland, OR 97035" -172067,Apple Airpods Headphones,1,150,03/21/19 16:28,"694 Highland St, Austin, TX 73301" -172068,27in 4K Gaming Monitor,1,389.99,03/18/19 19:29,"582 Pine St, San Francisco, CA 94016" -172069,Wired Headphones,1,11.99,03/10/19 13:04,"507 1st St, Portland, OR 97035" -172070,20in Monitor,1,109.99,03/08/19 22:32,"51 14th St, Los Angeles, CA 90001" -172070,Lightning Charging Cable,1,14.95,03/08/19 22:32,"51 14th St, Los Angeles, CA 90001" -172071,34in Ultrawide Monitor,1,379.99,03/19/19 08:21,"463 North St, Portland, OR 97035" -172072,USB-C Charging Cable,1,11.95,03/05/19 09:44,"947 Cedar St, Boston, MA 02215" -172073,AAA Batteries (4-pack),1,2.99,03/08/19 00:18,"706 2nd St, Atlanta, GA 30301" -172074,AAA Batteries (4-pack),1,2.99,03/10/19 10:37,"969 11th St, San Francisco, CA 94016" -172075,Lightning Charging Cable,1,14.95,03/13/19 19:17,"626 11th St, Seattle, WA 98101" -172076,AAA Batteries (4-pack),5,2.99,03/28/19 18:03,"851 Center St, Portland, OR 97035" -172077,AA Batteries (4-pack),2,3.84,03/11/19 19:53,"135 Church St, New York City, NY 10001" -172078,27in FHD Monitor,1,149.99,03/12/19 11:34,"222 5th St, Seattle, WA 98101" -172079,Lightning Charging Cable,1,14.95,03/12/19 11:06,"839 Lincoln St, Los Angeles, CA 90001" -172080,Bose SoundSport Headphones,1,99.99,03/07/19 17:38,"973 5th St, Boston, MA 02215" -172081,ThinkPad Laptop,1,999.99,03/26/19 22:27,"761 11th St, San Francisco, CA 94016" -172082,USB-C Charging Cable,1,11.95,03/25/19 19:13,"285 4th St, Atlanta, GA 30301" -172083,Lightning Charging Cable,1,14.95,03/10/19 16:40,"101 14th St, Dallas, TX 75001" -172084,Apple Airpods Headphones,1,150,03/13/19 12:36,"337 Pine St, Dallas, TX 75001" -172085,Apple Airpods Headphones,1,150,03/21/19 16:20,"787 9th St, San Francisco, CA 94016" -172086,Wired Headphones,1,11.99,03/13/19 12:30,"713 Walnut St, New York City, NY 10001" -172087,Lightning Charging Cable,1,14.95,03/14/19 19:23,"419 North St, Los Angeles, CA 90001" -172088,Apple Airpods Headphones,1,150,03/09/19 12:15,"163 Center St, Los Angeles, CA 90001" -172089,Apple Airpods Headphones,1,150,03/09/19 09:35,"794 Pine St, San Francisco, CA 94016" -172090,Bose SoundSport Headphones,1,99.99,03/12/19 13:30,"105 1st St, Austin, TX 73301" -172091,Bose SoundSport Headphones,1,99.99,03/29/19 18:41,"694 Main St, New York City, NY 10001" -172092,ThinkPad Laptop,1,999.99,03/29/19 16:54,"627 1st St, San Francisco, CA 94016" -172093,USB-C Charging Cable,1,11.95,03/31/19 19:50,"394 Johnson St, Atlanta, GA 30301" -172094,AAA Batteries (4-pack),1,2.99,03/22/19 19:24,"947 Chestnut St, Austin, TX 73301" -172095,AAA Batteries (4-pack),2,2.99,03/03/19 23:36,"689 2nd St, San Francisco, CA 94016" -172096,USB-C Charging Cable,1,11.95,03/05/19 16:24,"884 6th St, Seattle, WA 98101" -172097,USB-C Charging Cable,1,11.95,03/12/19 15:05,"582 Meadow St, Los Angeles, CA 90001" -172098,AA Batteries (4-pack),1,3.84,03/17/19 12:10,"683 8th St, Los Angeles, CA 90001" -172099,AA Batteries (4-pack),1,3.84,03/18/19 16:38,"782 6th St, New York City, NY 10001" -172100,Lightning Charging Cable,1,14.95,03/28/19 20:26,"648 Meadow St, San Francisco, CA 94016" -172101,AAA Batteries (4-pack),2,2.99,03/13/19 08:55,"975 Johnson St, Los Angeles, CA 90001" -172102,USB-C Charging Cable,2,11.95,03/16/19 13:21,"232 1st St, Portland, OR 97035" -172103,Apple Airpods Headphones,1,150,03/06/19 20:06,"72 4th St, Seattle, WA 98101" -172104,Wired Headphones,1,11.99,03/24/19 18:26,"708 6th St, Dallas, TX 75001" -172105,Bose SoundSport Headphones,1,99.99,03/15/19 12:59,"254 9th St, Boston, MA 02215" -172106,USB-C Charging Cable,1,11.95,03/15/19 20:30,"949 Wilson St, New York City, NY 10001" -172107,20in Monitor,1,109.99,03/16/19 20:45,"226 Hill St, Seattle, WA 98101" -172108,Lightning Charging Cable,1,14.95,03/29/19 17:56,"499 Church St, Dallas, TX 75001" -172109,Bose SoundSport Headphones,1,99.99,03/14/19 14:16,"199 Lakeview St, San Francisco, CA 94016" -172110,Google Phone,1,600,03/27/19 21:28,"608 Center St, Atlanta, GA 30301" -172111,Lightning Charging Cable,1,14.95,03/03/19 10:10,"845 Lincoln St, San Francisco, CA 94016" -172112,Wired Headphones,1,11.99,03/26/19 10:40,"747 North St, San Francisco, CA 94016" -172113,USB-C Charging Cable,1,11.95,03/23/19 14:44,"784 Church St, Dallas, TX 75001" -172114,AA Batteries (4-pack),1,3.84,03/03/19 18:34,"70 Willow St, San Francisco, CA 94016" -172115,Lightning Charging Cable,1,14.95,03/05/19 16:26,"549 Main St, San Francisco, CA 94016" -172116,20in Monitor,1,109.99,03/15/19 16:15,"720 4th St, New York City, NY 10001" -172117,USB-C Charging Cable,1,11.95,03/02/19 07:05,"693 Meadow St, San Francisco, CA 94016" -,,,,, -172118,USB-C Charging Cable,1,11.95,03/21/19 03:24,"199 13th St, San Francisco, CA 94016" -172119,Apple Airpods Headphones,1,150,03/05/19 16:41,"631 North St, San Francisco, CA 94016" -172120,Lightning Charging Cable,1,14.95,03/02/19 21:45,"202 Forest St, Atlanta, GA 30301" -172121,USB-C Charging Cable,1,11.95,03/06/19 18:19,"113 Cedar St, San Francisco, CA 94016" -172122,USB-C Charging Cable,1,11.95,03/19/19 20:37,"929 7th St, Los Angeles, CA 90001" -172123,AAA Batteries (4-pack),2,2.99,03/14/19 23:13,"594 Spruce St, Boston, MA 02215" -172123,Wired Headphones,1,11.99,03/14/19 23:13,"594 Spruce St, Boston, MA 02215" -172124,Wired Headphones,1,11.99,03/28/19 20:01,"462 Jackson St, Seattle, WA 98101" -172125,Lightning Charging Cable,1,14.95,03/12/19 11:47,"885 Jackson St, Los Angeles, CA 90001" -172126,Bose SoundSport Headphones,1,99.99,03/15/19 19:31,"362 Elm St, San Francisco, CA 94016" -172127,USB-C Charging Cable,1,11.95,03/28/19 17:58,"128 9th St, Boston, MA 02215" -172128,20in Monitor,1,109.99,03/04/19 18:00,"657 Johnson St, San Francisco, CA 94016" -172129,iPhone,1,700,03/20/19 05:59,"132 14th St, Los Angeles, CA 90001" -172130,AA Batteries (4-pack),1,3.84,03/02/19 07:15,"45 9th St, Seattle, WA 98101" -172131,Bose SoundSport Headphones,1,99.99,03/05/19 12:55,"671 Jackson St, San Francisco, CA 94016" -172132,USB-C Charging Cable,1,11.95,03/19/19 20:51,"260 Chestnut St, Seattle, WA 98101" -172133,AA Batteries (4-pack),1,3.84,03/29/19 21:53,"541 Wilson St, Los Angeles, CA 90001" -172134,27in FHD Monitor,1,149.99,03/19/19 10:44,"882 2nd St, Dallas, TX 75001" -172135,Apple Airpods Headphones,1,150,03/02/19 11:42,"609 South St, Boston, MA 02215" -172136,Apple Airpods Headphones,1,150,03/22/19 00:09,"258 Willow St, Los Angeles, CA 90001" -172137,Wired Headphones,1,11.99,03/11/19 14:41,"28 Lakeview St, New York City, NY 10001" -172138,AAA Batteries (4-pack),1,2.99,03/30/19 08:49,"965 Dogwood St, New York City, NY 10001" -172139,AAA Batteries (4-pack),1,2.99,03/10/19 18:36,"466 West St, Boston, MA 02215" -172140,USB-C Charging Cable,1,11.95,03/06/19 13:19,"493 Lakeview St, Dallas, TX 75001" -172141,27in 4K Gaming Monitor,1,389.99,03/19/19 14:40,"227 Lincoln St, Atlanta, GA 30301" -172142,AA Batteries (4-pack),1,3.84,03/30/19 14:57,"754 Dogwood St, San Francisco, CA 94016" -172143,Lightning Charging Cable,1,14.95,03/24/19 20:02,"231 Willow St, Atlanta, GA 30301" -172144,USB-C Charging Cable,1,11.95,03/20/19 15:26,"86 Jackson St, Portland, ME 04101" -172145,ThinkPad Laptop,1,999.99,03/07/19 19:22,"458 Lincoln St, New York City, NY 10001" -172146,AA Batteries (4-pack),1,3.84,03/21/19 14:54,"21 Pine St, Dallas, TX 75001" -172147,Wired Headphones,1,11.99,03/23/19 10:34,"582 Wilson St, New York City, NY 10001" -172148,27in FHD Monitor,1,149.99,03/27/19 22:32,"988 Center St, New York City, NY 10001" -172149,Bose SoundSport Headphones,1,99.99,03/01/19 22:34,"967 6th St, Los Angeles, CA 90001" -172150,Apple Airpods Headphones,1,150,03/27/19 00:09,"349 Ridge St, Austin, TX 73301" -172151,Bose SoundSport Headphones,1,99.99,03/26/19 11:28,"469 Lakeview St, Los Angeles, CA 90001" -172152,Vareebadd Phone,1,400,03/16/19 12:25,"123 Jefferson St, Boston, MA 02215" -172153,USB-C Charging Cable,1,11.95,03/01/19 18:58,"387 Johnson St, Portland, OR 97035" -172154,Lightning Charging Cable,1,14.95,03/14/19 21:56,"747 Church St, New York City, NY 10001" -172155,USB-C Charging Cable,1,11.95,03/11/19 23:08,"712 1st St, New York City, NY 10001" -172155,USB-C Charging Cable,1,11.95,03/11/19 23:08,"712 1st St, New York City, NY 10001" -172156,iPhone,1,700,03/16/19 04:16,"463 Center St, San Francisco, CA 94016" -172157,27in FHD Monitor,1,149.99,03/17/19 19:27,"759 Main St, Portland, OR 97035" -172158,USB-C Charging Cable,1,11.95,03/13/19 18:18,"528 Spruce St, Los Angeles, CA 90001" -172159,34in Ultrawide Monitor,1,379.99,03/06/19 19:58,"23 Willow St, San Francisco, CA 94016" -172160,Lightning Charging Cable,1,14.95,03/17/19 19:34,"936 Cedar St, Los Angeles, CA 90001" -172161,USB-C Charging Cable,1,11.95,03/21/19 02:56,"853 7th St, Atlanta, GA 30301" -172162,Bose SoundSport Headphones,1,99.99,03/16/19 08:27,"605 14th St, Los Angeles, CA 90001" -172163,Flatscreen TV,1,300,03/03/19 11:36,"70 Washington St, Los Angeles, CA 90001" -172164,AAA Batteries (4-pack),1,2.99,03/21/19 10:29,"941 Hill St, Los Angeles, CA 90001" -172165,AA Batteries (4-pack),1,3.84,03/24/19 17:48,"157 Dogwood St, Seattle, WA 98101" -172166,Wired Headphones,1,11.99,03/02/19 09:06,"895 11th St, Boston, MA 02215" -172167,AA Batteries (4-pack),2,3.84,03/29/19 15:56,"288 Adams St, Dallas, TX 75001" -172168,Wired Headphones,1,11.99,03/19/19 05:50,"25 Highland St, Boston, MA 02215" -172169,AA Batteries (4-pack),1,3.84,03/13/19 12:22,"793 Hickory St, San Francisco, CA 94016" -172170,Vareebadd Phone,1,400,03/14/19 13:33,"196 South St, Atlanta, GA 30301" -172171,Flatscreen TV,1,300,03/23/19 20:39,"3 Ridge St, San Francisco, CA 94016" -172171,27in FHD Monitor,1,149.99,03/23/19 20:39,"3 Ridge St, San Francisco, CA 94016" -172172,Macbook Pro Laptop,1,1700,03/07/19 13:37,"528 Johnson St, Boston, MA 02215" -172173,Bose SoundSport Headphones,1,99.99,03/26/19 13:21,"220 Center St, Dallas, TX 75001" -172174,27in 4K Gaming Monitor,1,389.99,03/23/19 10:17,"483 Highland St, New York City, NY 10001" -172175,Google Phone,1,600,03/02/19 15:34,"131 Chestnut St, Los Angeles, CA 90001" -172175,USB-C Charging Cable,1,11.95,03/02/19 15:34,"131 Chestnut St, Los Angeles, CA 90001" -172176,Google Phone,1,600,03/26/19 08:49,"983 Hill St, Boston, MA 02215" -172176,USB-C Charging Cable,1,11.95,03/26/19 08:49,"983 Hill St, Boston, MA 02215" -172177,AAA Batteries (4-pack),1,2.99,03/08/19 18:08,"225 Cedar St, San Francisco, CA 94016" -172177,Wired Headphones,1,11.99,03/08/19 18:08,"225 Cedar St, San Francisco, CA 94016" -172178,Lightning Charging Cable,1,14.95,03/29/19 19:25,"383 Lincoln St, Los Angeles, CA 90001" -172179,iPhone,1,700,03/24/19 13:04,"72 Lakeview St, New York City, NY 10001" -172180,Apple Airpods Headphones,1,150,03/03/19 04:52,"623 Lake St, San Francisco, CA 94016" -172181,AA Batteries (4-pack),1,3.84,03/27/19 20:10,"753 7th St, Boston, MA 02215" -172182,USB-C Charging Cable,1,11.95,03/23/19 16:05,"650 Wilson St, Los Angeles, CA 90001" -172183,Bose SoundSport Headphones,1,99.99,03/27/19 13:58,"488 West St, Dallas, TX 75001" -172183,AAA Batteries (4-pack),3,2.99,03/27/19 13:58,"488 West St, Dallas, TX 75001" -172184,Flatscreen TV,1,300,03/03/19 18:36,"45 Spruce St, Austin, TX 73301" -172185,Wired Headphones,1,11.99,03/13/19 23:59,"261 Hill St, Dallas, TX 75001" -172186,27in 4K Gaming Monitor,1,389.99,03/01/19 10:19,"842 Dogwood St, San Francisco, CA 94016" -172187,Lightning Charging Cable,1,14.95,03/07/19 14:28,"512 12th St, Boston, MA 02215" -172188,Bose SoundSport Headphones,1,99.99,03/17/19 15:44,"6 12th St, Austin, TX 73301" -172189,AA Batteries (4-pack),1,3.84,03/12/19 08:51,"716 Johnson St, San Francisco, CA 94016" -172190,Lightning Charging Cable,1,14.95,03/13/19 14:38,"358 Cedar St, New York City, NY 10001" -172191,34in Ultrawide Monitor,1,379.99,03/18/19 13:04,"908 5th St, Los Angeles, CA 90001" -172192,27in FHD Monitor,1,149.99,03/05/19 22:17,"157 Lake St, Boston, MA 02215" -172193,34in Ultrawide Monitor,1,379.99,03/01/19 21:31,"132 Johnson St, Los Angeles, CA 90001" -172194,Bose SoundSport Headphones,1,99.99,03/17/19 13:07,"490 5th St, New York City, NY 10001" -172195,AA Batteries (4-pack),1,3.84,03/11/19 18:46,"253 Hickory St, Los Angeles, CA 90001" -172196,27in FHD Monitor,1,149.99,03/23/19 02:11,"91 Maple St, San Francisco, CA 94016" -172197,Apple Airpods Headphones,1,150,03/05/19 22:27,"889 Jackson St, Los Angeles, CA 90001" -172198,AAA Batteries (4-pack),1,2.99,03/13/19 16:40,"504 10th St, Boston, MA 02215" -172199,Bose SoundSport Headphones,1,99.99,03/14/19 19:18,"73 Walnut St, Atlanta, GA 30301" -172200,Apple Airpods Headphones,1,150,03/30/19 11:03,"109 Meadow St, San Francisco, CA 94016" -172201,Google Phone,1,600,03/17/19 12:24,"987 13th St, Atlanta, GA 30301" -172201,Wired Headphones,1,11.99,03/17/19 12:24,"987 13th St, Atlanta, GA 30301" -172202,Apple Airpods Headphones,1,150,03/18/19 21:44,"818 Main St, Boston, MA 02215" -172203,27in FHD Monitor,1,149.99,03/29/19 15:38,"544 Lakeview St, Boston, MA 02215" -172204,Bose SoundSport Headphones,1,99.99,03/18/19 08:23,"267 Hill St, Boston, MA 02215" -172205,iPhone,1,700,03/20/19 19:07,"751 Lakeview St, Austin, TX 73301" -172205,Apple Airpods Headphones,1,150,03/20/19 19:07,"751 Lakeview St, Austin, TX 73301" -172206,AA Batteries (4-pack),1,3.84,03/15/19 15:31,"132 5th St, Atlanta, GA 30301" -172207,ThinkPad Laptop,1,999.99,03/20/19 23:53,"581 Hill St, New York City, NY 10001" -172208,Google Phone,1,600,03/30/19 15:47,"451 11th St, Atlanta, GA 30301" -172208,USB-C Charging Cable,1,11.95,03/30/19 15:47,"451 11th St, Atlanta, GA 30301" -172209,AAA Batteries (4-pack),2,2.99,03/30/19 08:38,"484 Elm St, Portland, OR 97035" -172210,Lightning Charging Cable,1,14.95,03/18/19 21:18,"671 Johnson St, Austin, TX 73301" -172211,AA Batteries (4-pack),1,3.84,03/16/19 20:13,"818 Center St, San Francisco, CA 94016" -172212,AAA Batteries (4-pack),2,2.99,03/06/19 15:58,"540 Maple St, San Francisco, CA 94016" -172213,Lightning Charging Cable,1,14.95,03/17/19 09:23,"948 Meadow St, San Francisco, CA 94016" -172214,27in FHD Monitor,1,149.99,03/07/19 23:42,"670 Maple St, San Francisco, CA 94016" -172215,20in Monitor,1,109.99,03/14/19 16:11,"101 River St, San Francisco, CA 94016" -172216,AAA Batteries (4-pack),1,2.99,03/16/19 09:49,"843 7th St, Atlanta, GA 30301" -172217,ThinkPad Laptop,1,999.99,03/27/19 12:02,"623 Walnut St, New York City, NY 10001" -172218,AAA Batteries (4-pack),1,2.99,03/03/19 21:03,"622 Center St, Boston, MA 02215" -172219,Lightning Charging Cable,1,14.95,03/30/19 01:57,"524 Forest St, New York City, NY 10001" -172220,USB-C Charging Cable,1,11.95,03/27/19 12:21,"992 Church St, Seattle, WA 98101" -172221,AA Batteries (4-pack),1,3.84,03/06/19 12:59,"367 2nd St, San Francisco, CA 94016" -172222,Apple Airpods Headphones,1,150,03/23/19 10:43,"741 Wilson St, San Francisco, CA 94016" -172223,iPhone,1,700,03/27/19 06:38,"678 Chestnut St, Boston, MA 02215" -172223,Lightning Charging Cable,1,14.95,03/27/19 06:38,"678 Chestnut St, Boston, MA 02215" -172224,AAA Batteries (4-pack),1,2.99,03/08/19 08:55,"35 Elm St, Los Angeles, CA 90001" -172225,20in Monitor,1,109.99,03/08/19 11:01,"64 River St, Atlanta, GA 30301" -172226,ThinkPad Laptop,1,999.99,03/09/19 09:10,"37 Park St, Boston, MA 02215" -172227,USB-C Charging Cable,1,11.95,03/06/19 16:19,"319 Sunset St, Seattle, WA 98101" -172228,Apple Airpods Headphones,1,150,03/09/19 21:59,"950 2nd St, Los Angeles, CA 90001" -172229,Google Phone,1,600,03/20/19 20:19,"773 Park St, San Francisco, CA 94016" -172230,Apple Airpods Headphones,1,150,03/26/19 16:02,"329 6th St, New York City, NY 10001" -172231,Bose SoundSport Headphones,1,99.99,03/16/19 18:21,"505 River St, Portland, OR 97035" -172232,Bose SoundSport Headphones,1,99.99,03/29/19 23:00,"832 Jackson St, New York City, NY 10001" -172233,27in FHD Monitor,1,149.99,03/09/19 19:52,"271 Hickory St, Portland, OR 97035" -172234,27in 4K Gaming Monitor,1,389.99,03/27/19 13:32,"250 Hickory St, Dallas, TX 75001" -172235,Macbook Pro Laptop,1,1700,03/09/19 18:46,"826 6th St, San Francisco, CA 94016" -172236,iPhone,1,700,03/02/19 08:07,"975 Willow St, Los Angeles, CA 90001" -172237,AA Batteries (4-pack),1,3.84,03/01/19 18:49,"114 9th St, Dallas, TX 75001" -172238,20in Monitor,1,109.99,03/20/19 15:01,"653 11th St, Los Angeles, CA 90001" -172239,Wired Headphones,1,11.99,03/04/19 16:11,"686 Maple St, New York City, NY 10001" -172240,Bose SoundSport Headphones,1,99.99,03/31/19 17:45,"284 Hill St, Seattle, WA 98101" -172241,20in Monitor,1,109.99,03/13/19 12:11,"498 Madison St, New York City, NY 10001" -172241,Wired Headphones,1,11.99,03/13/19 12:11,"498 Madison St, New York City, NY 10001" -172242,AA Batteries (4-pack),1,3.84,03/17/19 09:39,"936 Forest St, Seattle, WA 98101" -172243,34in Ultrawide Monitor,1,379.99,03/30/19 18:43,"564 1st St, Boston, MA 02215" -172244,Bose SoundSport Headphones,1,99.99,03/05/19 09:02,"282 Pine St, Boston, MA 02215" -172245,Wired Headphones,1,11.99,03/27/19 17:52,"948 Church St, New York City, NY 10001" -172246,AA Batteries (4-pack),2,3.84,03/13/19 11:02,"308 Cherry St, Atlanta, GA 30301" -172247,USB-C Charging Cable,1,11.95,03/09/19 13:27,"922 Madison St, Dallas, TX 75001" -172248,USB-C Charging Cable,1,11.95,03/23/19 18:34,"850 Willow St, Austin, TX 73301" -172249,AAA Batteries (4-pack),1,2.99,03/09/19 20:37,"679 10th St, San Francisco, CA 94016" -172250,Lightning Charging Cable,1,14.95,03/01/19 20:54,"264 6th St, Atlanta, GA 30301" -172251,Wired Headphones,1,11.99,03/29/19 20:52,"600 Lake St, Boston, MA 02215" -172252,Bose SoundSport Headphones,1,99.99,03/24/19 16:41,"529 Jackson St, Boston, MA 02215" -172253,Wired Headphones,1,11.99,03/26/19 07:42,"862 14th St, New York City, NY 10001" -172254,AAA Batteries (4-pack),1,2.99,03/11/19 10:37,"415 11th St, San Francisco, CA 94016" -172255,Bose SoundSport Headphones,1,99.99,03/18/19 20:01,"271 1st St, New York City, NY 10001" -172256,Apple Airpods Headphones,1,150,03/19/19 11:58,"311 Park St, San Francisco, CA 94016" -172257,AA Batteries (4-pack),2,3.84,03/04/19 09:49,"851 1st St, Los Angeles, CA 90001" -172258,AA Batteries (4-pack),1,3.84,03/01/19 22:10,"584 Jackson St, New York City, NY 10001" -172259,AA Batteries (4-pack),1,3.84,03/03/19 11:55,"192 West St, New York City, NY 10001" -172260,Google Phone,1,600,03/05/19 15:12,"672 14th St, Los Angeles, CA 90001" -172261,Bose SoundSport Headphones,2,99.99,03/20/19 20:51,"349 Wilson St, Seattle, WA 98101" -172262,AA Batteries (4-pack),1,3.84,03/14/19 16:40,"31 2nd St, Seattle, WA 98101" -172263,USB-C Charging Cable,2,11.95,03/21/19 12:55,"839 5th St, Dallas, TX 75001" -172264,AAA Batteries (4-pack),1,2.99,03/21/19 13:19,"52 Adams St, New York City, NY 10001" -172265,Google Phone,1,600,03/02/19 17:25,"999 South St, Boston, MA 02215" -172265,Bose SoundSport Headphones,1,99.99,03/02/19 17:25,"999 South St, Boston, MA 02215" -172266,USB-C Charging Cable,1,11.95,03/31/19 09:10,"920 13th St, San Francisco, CA 94016" -172267,Wired Headphones,1,11.99,03/25/19 10:12,"473 Ridge St, Atlanta, GA 30301" -172267,Macbook Pro Laptop,1,1700,03/25/19 10:12,"473 Ridge St, Atlanta, GA 30301" -172268,Lightning Charging Cable,1,14.95,03/06/19 12:02,"936 Wilson St, Seattle, WA 98101" -172269,AAA Batteries (4-pack),1,2.99,03/11/19 11:36,"299 Pine St, Seattle, WA 98101" -172270,27in FHD Monitor,1,149.99,03/09/19 18:58,"205 Meadow St, Dallas, TX 75001" -172271,Apple Airpods Headphones,1,150,03/09/19 20:20,"512 Meadow St, Dallas, TX 75001" -172272,AA Batteries (4-pack),1,3.84,03/19/19 14:57,"866 Spruce St, San Francisco, CA 94016" -172273,Bose SoundSport Headphones,1,99.99,03/08/19 19:24,"979 7th St, Los Angeles, CA 90001" -172274,Bose SoundSport Headphones,1,99.99,03/29/19 13:16,"904 River St, San Francisco, CA 94016" -172275,Lightning Charging Cable,1,14.95,03/21/19 15:09,"813 13th St, New York City, NY 10001" -172276,AAA Batteries (4-pack),2,2.99,03/07/19 16:47,"175 Elm St, San Francisco, CA 94016" -172277,AA Batteries (4-pack),3,3.84,03/05/19 12:03,"118 Ridge St, Los Angeles, CA 90001" -172278,AAA Batteries (4-pack),3,2.99,03/09/19 13:29,"648 Main St, New York City, NY 10001" -172279,Flatscreen TV,1,300,03/27/19 13:52,"487 Willow St, Los Angeles, CA 90001" -172280,USB-C Charging Cable,2,11.95,03/16/19 21:13,"365 Chestnut St, New York City, NY 10001" -172281,34in Ultrawide Monitor,1,379.99,03/18/19 17:09,"940 6th St, Portland, OR 97035" -172282,Vareebadd Phone,1,400,03/27/19 17:16,"526 Cedar St, New York City, NY 10001" -172283,Bose SoundSport Headphones,1,99.99,03/09/19 17:14,"340 West St, Seattle, WA 98101" -172284,AA Batteries (4-pack),1,3.84,03/20/19 16:31,"941 12th St, Austin, TX 73301" -172285,ThinkPad Laptop,1,999.99,03/22/19 12:41,"540 Ridge St, Los Angeles, CA 90001" -172286,Wired Headphones,1,11.99,03/13/19 21:25,"285 Lake St, Los Angeles, CA 90001" -172287,Wired Headphones,1,11.99,03/07/19 23:55,"918 2nd St, New York City, NY 10001" -172288,Bose SoundSport Headphones,1,99.99,03/15/19 13:28,"236 Chestnut St, San Francisco, CA 94016" -172289,Vareebadd Phone,1,400,03/02/19 10:10,"999 Sunset St, Los Angeles, CA 90001" -172290,Wired Headphones,1,11.99,03/22/19 23:07,"57 Wilson St, Los Angeles, CA 90001" -172291,Apple Airpods Headphones,1,150,03/05/19 19:37,"130 Ridge St, New York City, NY 10001" -172292,Lightning Charging Cable,1,14.95,03/03/19 21:15,"365 Church St, New York City, NY 10001" -172293,Google Phone,1,600,03/01/19 11:05,"397 Hickory St, Boston, MA 02215" -172293,USB-C Charging Cable,1,11.95,03/01/19 11:05,"397 Hickory St, Boston, MA 02215" -172294,Lightning Charging Cable,1,14.95,03/16/19 16:58,"220 6th St, Atlanta, GA 30301" -172295,Bose SoundSport Headphones,1,99.99,03/21/19 09:30,"783 Main St, Dallas, TX 75001" -172296,Lightning Charging Cable,1,14.95,03/29/19 19:12,"36 13th St, Dallas, TX 75001" -172297,Wired Headphones,1,11.99,03/20/19 07:39,"863 Main St, Los Angeles, CA 90001" -172298,USB-C Charging Cable,1,11.95,03/02/19 08:16,"893 Forest St, Dallas, TX 75001" -172299,Lightning Charging Cable,1,14.95,03/27/19 13:58,"879 Washington St, Boston, MA 02215" -172300,AAA Batteries (4-pack),1,2.99,03/17/19 14:09,"805 12th St, Los Angeles, CA 90001" -172301,USB-C Charging Cable,1,11.95,03/14/19 16:50,"115 12th St, Boston, MA 02215" -172302,USB-C Charging Cable,1,11.95,03/15/19 22:15,"771 14th St, New York City, NY 10001" -172303,Lightning Charging Cable,1,14.95,03/21/19 12:30,"456 1st St, Austin, TX 73301" -172304,Wired Headphones,1,11.99,03/07/19 14:52,"462 Jefferson St, Atlanta, GA 30301" -172305,Apple Airpods Headphones,1,150,03/22/19 11:41,"865 West St, San Francisco, CA 94016" -172306,USB-C Charging Cable,1,11.95,03/31/19 09:05,"559 Johnson St, San Francisco, CA 94016" -172307,34in Ultrawide Monitor,1,379.99,03/02/19 17:50,"745 North St, Atlanta, GA 30301" -172308,Macbook Pro Laptop,1,1700,03/07/19 16:38,"79 Lake St, San Francisco, CA 94016" -172309,Apple Airpods Headphones,1,150,03/31/19 10:16,"258 Pine St, Boston, MA 02215" -172310,Lightning Charging Cable,1,14.95,03/04/19 11:03,"781 4th St, Boston, MA 02215" -172311,Lightning Charging Cable,1,14.95,03/24/19 13:01,"407 Highland St, Dallas, TX 75001" -172312,Apple Airpods Headphones,1,150,03/02/19 12:59,"675 Park St, Dallas, TX 75001" -172313,27in FHD Monitor,1,149.99,03/04/19 21:50,"267 12th St, New York City, NY 10001" -172314,AAA Batteries (4-pack),1,2.99,03/18/19 10:06,"818 Center St, Los Angeles, CA 90001" -172315,Apple Airpods Headphones,1,150,03/26/19 14:57,"530 Forest St, Austin, TX 73301" -172316,Flatscreen TV,1,300,03/06/19 21:13,"917 Meadow St, New York City, NY 10001" -172317,AAA Batteries (4-pack),2,2.99,03/23/19 11:49,"933 10th St, San Francisco, CA 94016" -172318,Lightning Charging Cable,1,14.95,03/23/19 12:31,"718 8th St, Seattle, WA 98101" -172319,AA Batteries (4-pack),1,3.84,03/27/19 18:21,"650 Chestnut St, Los Angeles, CA 90001" -172320,27in FHD Monitor,1,149.99,03/07/19 18:23,"794 Spruce St, San Francisco, CA 94016" -172321,AAA Batteries (4-pack),1,2.99,03/20/19 23:25,"619 Pine St, New York City, NY 10001" -172322,Lightning Charging Cable,1,14.95,03/03/19 19:26,"981 Jackson St, New York City, NY 10001" -172323,USB-C Charging Cable,1,11.95,03/27/19 16:25,"833 Willow St, San Francisco, CA 94016" -172324,AA Batteries (4-pack),3,3.84,03/21/19 08:38,"995 13th St, Los Angeles, CA 90001" -172325,Apple Airpods Headphones,1,150,03/10/19 00:41,"116 Center St, New York City, NY 10001" -172326,AAA Batteries (4-pack),1,2.99,03/17/19 12:04,"498 Hickory St, San Francisco, CA 94016" -172327,USB-C Charging Cable,1,11.95,03/24/19 18:12,"697 2nd St, Seattle, WA 98101" -172327,Lightning Charging Cable,1,14.95,03/24/19 18:12,"697 2nd St, Seattle, WA 98101" -172328,AAA Batteries (4-pack),1,2.99,03/09/19 12:42,"94 Elm St, San Francisco, CA 94016" -172329,AA Batteries (4-pack),1,3.84,03/11/19 20:56,"520 South St, Boston, MA 02215" -172330,Lightning Charging Cable,2,14.95,03/04/19 11:47,"486 Chestnut St, Atlanta, GA 30301" -172331,Macbook Pro Laptop,1,1700,03/24/19 15:15,"959 4th St, Austin, TX 73301" -172332,USB-C Charging Cable,1,11.95,03/08/19 12:51,"842 2nd St, Los Angeles, CA 90001" -172333,Flatscreen TV,1,300,03/05/19 19:44,"483 North St, New York City, NY 10001" -172334,Wired Headphones,1,11.99,03/31/19 22:39,"996 North St, Seattle, WA 98101" -172335,Wired Headphones,1,11.99,03/30/19 00:20,"163 Hill St, Atlanta, GA 30301" -172336,27in 4K Gaming Monitor,1,389.99,03/29/19 18:09,"932 Wilson St, San Francisco, CA 94016" -172337,20in Monitor,1,109.99,03/27/19 18:55,"587 1st St, New York City, NY 10001" -172338,Bose SoundSport Headphones,1,99.99,03/01/19 09:26,"224 Lake St, San Francisco, CA 94016" -172339,Lightning Charging Cable,1,14.95,03/19/19 23:11,"968 Willow St, New York City, NY 10001" -172340,Lightning Charging Cable,1,14.95,03/08/19 23:26,"62 Chestnut St, Boston, MA 02215" -172341,Apple Airpods Headphones,1,150,03/10/19 16:55,"818 Center St, Portland, OR 97035" -172342,AAA Batteries (4-pack),3,2.99,03/21/19 19:56,"560 7th St, Los Angeles, CA 90001" -172343,Wired Headphones,1,11.99,03/27/19 16:11,"491 South St, New York City, NY 10001" -172344,Apple Airpods Headphones,1,150,03/18/19 02:21,"206 7th St, Atlanta, GA 30301" -172345,27in 4K Gaming Monitor,1,389.99,03/05/19 11:02,"260 Cedar St, Los Angeles, CA 90001" -172346,Apple Airpods Headphones,1,150,03/26/19 11:55,"441 Dogwood St, New York City, NY 10001" -172347,Bose SoundSport Headphones,1,99.99,03/29/19 20:08,"718 Jefferson St, San Francisco, CA 94016" -172348,27in 4K Gaming Monitor,1,389.99,03/04/19 16:35,"221 Spruce St, Atlanta, GA 30301" -,,,,, -172349,Wired Headphones,1,11.99,03/02/19 23:00,"128 6th St, Los Angeles, CA 90001" -172350,Lightning Charging Cable,1,14.95,03/18/19 09:35,"249 14th St, San Francisco, CA 94016" -172351,Flatscreen TV,1,300,03/05/19 16:06,"577 South St, San Francisco, CA 94016" -172352,Lightning Charging Cable,1,14.95,03/31/19 08:27,"795 River St, Los Angeles, CA 90001" -172353,27in FHD Monitor,1,149.99,03/01/19 21:34,"254 North St, New York City, NY 10001" -172354,Lightning Charging Cable,1,14.95,03/05/19 11:17,"475 Jefferson St, San Francisco, CA 94016" -172355,Wired Headphones,1,11.99,03/19/19 13:23,"589 Lake St, Dallas, TX 75001" -172356,AA Batteries (4-pack),1,3.84,03/14/19 18:01,"589 9th St, New York City, NY 10001" -172357,Vareebadd Phone,1,400,03/02/19 21:33,"244 5th St, Portland, OR 97035" -172357,USB-C Charging Cable,1,11.95,03/02/19 21:33,"244 5th St, Portland, OR 97035" -172358,Apple Airpods Headphones,1,150,03/30/19 07:39,"78 Jackson St, Seattle, WA 98101" -172359,AA Batteries (4-pack),1,3.84,03/08/19 13:20,"979 Madison St, Austin, TX 73301" -172360,AA Batteries (4-pack),1,3.84,03/27/19 03:25,"416 Church St, Austin, TX 73301" -172361,Lightning Charging Cable,1,14.95,03/25/19 17:16,"269 5th St, Los Angeles, CA 90001" -172362,iPhone,1,700,03/20/19 19:46,"555 Elm St, Boston, MA 02215" -172362,Lightning Charging Cable,1,14.95,03/20/19 19:46,"555 Elm St, Boston, MA 02215" -172363,AAA Batteries (4-pack),1,2.99,03/13/19 17:05,"303 Meadow St, San Francisco, CA 94016" -172364,Bose SoundSport Headphones,1,99.99,03/26/19 21:37,"222 Elm St, Seattle, WA 98101" -172365,Apple Airpods Headphones,1,150,03/26/19 01:24,"110 2nd St, San Francisco, CA 94016" -172366,Wired Headphones,1,11.99,03/17/19 18:00,"536 Meadow St, San Francisco, CA 94016" -172367,Bose SoundSport Headphones,1,99.99,03/19/19 19:41,"985 Church St, San Francisco, CA 94016" -172368,27in 4K Gaming Monitor,1,389.99,03/30/19 22:22,"368 Hill St, San Francisco, CA 94016" -172369,Vareebadd Phone,1,400,03/15/19 14:13,"375 2nd St, San Francisco, CA 94016" -172369,USB-C Charging Cable,1,11.95,03/15/19 14:13,"375 2nd St, San Francisco, CA 94016" -172370,USB-C Charging Cable,1,11.95,03/16/19 18:47,"602 14th St, San Francisco, CA 94016" -172371,Bose SoundSport Headphones,1,99.99,03/10/19 11:17,"277 Chestnut St, Seattle, WA 98101" -172372,Lightning Charging Cable,1,14.95,03/10/19 22:53,"199 6th St, San Francisco, CA 94016" -172373,USB-C Charging Cable,1,11.95,03/24/19 19:51,"346 Hickory St, San Francisco, CA 94016" -172374,AA Batteries (4-pack),1,3.84,03/24/19 19:23,"807 Walnut St, San Francisco, CA 94016" -172375,AA Batteries (4-pack),1,3.84,03/27/19 18:28,"160 12th St, Atlanta, GA 30301" -172376,27in FHD Monitor,1,149.99,03/11/19 12:43,"595 South St, Atlanta, GA 30301" -172377,AA Batteries (4-pack),1,3.84,03/22/19 07:46,"271 Elm St, Los Angeles, CA 90001" -172378,Lightning Charging Cable,1,14.95,03/27/19 01:15,"248 River St, Boston, MA 02215" -172379,AAA Batteries (4-pack),6,2.99,03/08/19 18:09,"919 8th St, Austin, TX 73301" -172380,Lightning Charging Cable,1,14.95,03/20/19 01:35,"31 4th St, Los Angeles, CA 90001" -172381,Lightning Charging Cable,1,14.95,03/24/19 18:09,"253 River St, Los Angeles, CA 90001" -172382,Apple Airpods Headphones,1,150,03/28/19 10:34,"434 Wilson St, Dallas, TX 75001" -172383,27in 4K Gaming Monitor,1,389.99,03/14/19 22:15,"901 6th St, San Francisco, CA 94016" -172384,USB-C Charging Cable,1,11.95,03/18/19 22:46,"112 Wilson St, Seattle, WA 98101" -172385,AA Batteries (4-pack),1,3.84,03/20/19 16:27,"662 Chestnut St, Portland, OR 97035" -172386,Wired Headphones,1,11.99,03/20/19 03:56,"239 Lincoln St, Dallas, TX 75001" -172387,AAA Batteries (4-pack),1,2.99,03/06/19 11:49,"162 Elm St, Austin, TX 73301" -172387,Wired Headphones,1,11.99,03/06/19 11:49,"162 Elm St, Austin, TX 73301" -172388,AAA Batteries (4-pack),3,2.99,03/22/19 07:39,"3 Wilson St, Los Angeles, CA 90001" -172389,Wired Headphones,1,11.99,03/28/19 12:11,"594 12th St, Los Angeles, CA 90001" -172390,iPhone,1,700,03/14/19 20:04,"449 9th St, San Francisco, CA 94016" -172391,USB-C Charging Cable,1,11.95,03/09/19 17:44,"831 Spruce St, Portland, OR 97035" -172392,Bose SoundSport Headphones,1,99.99,03/20/19 10:39,"566 Park St, Los Angeles, CA 90001" -172393,Google Phone,1,600,03/19/19 18:14,"121 Park St, San Francisco, CA 94016" -172394,Google Phone,1,600,03/08/19 09:58,"809 Hill St, Seattle, WA 98101" -172395,AA Batteries (4-pack),1,3.84,03/12/19 13:53,"862 Adams St, New York City, NY 10001" -172396,AAA Batteries (4-pack),1,2.99,03/14/19 13:49,"586 8th St, Boston, MA 02215" -172397,Macbook Pro Laptop,1,1700,03/21/19 12:54,"599 11th St, San Francisco, CA 94016" -172398,AA Batteries (4-pack),2,3.84,03/31/19 20:16,"56 North St, San Francisco, CA 94016" -172399,AA Batteries (4-pack),1,3.84,03/02/19 22:22,"115 Meadow St, San Francisco, CA 94016" -172400,Apple Airpods Headphones,1,150,03/31/19 16:29,"257 Highland St, San Francisco, CA 94016" -172401,Macbook Pro Laptop,1,1700,03/19/19 12:23,"753 Washington St, Los Angeles, CA 90001" -172402,27in FHD Monitor,1,149.99,03/04/19 09:35,"718 Walnut St, Dallas, TX 75001" -172403,Wired Headphones,1,11.99,03/09/19 06:57,"945 Hill St, Seattle, WA 98101" -172404,Lightning Charging Cable,1,14.95,03/30/19 13:46,"577 Cedar St, Los Angeles, CA 90001" -172404,USB-C Charging Cable,1,11.95,03/30/19 13:46,"577 Cedar St, Los Angeles, CA 90001" -172405,Bose SoundSport Headphones,1,99.99,03/21/19 18:25,"537 Dogwood St, New York City, NY 10001" -172406,Lightning Charging Cable,1,14.95,03/31/19 16:11,"362 Cedar St, Los Angeles, CA 90001" -172407,AAA Batteries (4-pack),1,2.99,03/08/19 12:14,"883 5th St, New York City, NY 10001" -172408,Macbook Pro Laptop,1,1700,03/25/19 08:41,"649 Ridge St, Boston, MA 02215" -172409,Apple Airpods Headphones,1,150,03/22/19 19:39,"451 Dogwood St, Portland, OR 97035" -172410,Vareebadd Phone,1,400,03/14/19 08:37,"282 6th St, Boston, MA 02215" -172411,USB-C Charging Cable,1,11.95,03/30/19 19:43,"280 North St, Dallas, TX 75001" -172412,AA Batteries (4-pack),1,3.84,03/16/19 13:04,"92 Willow St, San Francisco, CA 94016" -172413,iPhone,1,700,03/23/19 14:08,"71 Hickory St, Boston, MA 02215" -172414,Lightning Charging Cable,1,14.95,03/06/19 17:37,"690 Spruce St, New York City, NY 10001" -172415,Wired Headphones,1,11.99,03/14/19 16:56,"653 River St, New York City, NY 10001" -172416,Wired Headphones,1,11.99,03/06/19 09:49,"956 Lincoln St, Los Angeles, CA 90001" -172417,AA Batteries (4-pack),2,3.84,03/02/19 13:01,"520 North St, Dallas, TX 75001" -172418,Lightning Charging Cable,1,14.95,03/12/19 19:02,"562 Spruce St, Dallas, TX 75001" -172419,iPhone,1,700,03/14/19 19:25,"278 Adams St, Seattle, WA 98101" -172420,27in FHD Monitor,1,149.99,03/23/19 19:28,"373 Chestnut St, Dallas, TX 75001" -172421,AAA Batteries (4-pack),1,2.99,03/03/19 17:24,"394 Ridge St, San Francisco, CA 94016" -172422,AAA Batteries (4-pack),1,2.99,03/05/19 20:34,"690 Madison St, Los Angeles, CA 90001" -172423,27in FHD Monitor,1,149.99,03/24/19 16:20,"756 1st St, New York City, NY 10001" -172424,27in 4K Gaming Monitor,1,389.99,03/12/19 19:58,"983 Chestnut St, Atlanta, GA 30301" -172425,AA Batteries (4-pack),2,3.84,03/08/19 18:26,"373 Chestnut St, San Francisco, CA 94016" -172426,Google Phone,1,600,03/18/19 12:49,"655 Johnson St, San Francisco, CA 94016" -172426,USB-C Charging Cable,1,11.95,03/18/19 12:49,"655 Johnson St, San Francisco, CA 94016" -172427,27in 4K Gaming Monitor,1,389.99,03/29/19 23:17,"683 13th St, Atlanta, GA 30301" -172428,AAA Batteries (4-pack),1,2.99,03/05/19 17:52,"536 Hill St, Seattle, WA 98101" -172429,Vareebadd Phone,1,400,03/18/19 12:33,"779 11th St, San Francisco, CA 94016" -172430,Bose SoundSport Headphones,1,99.99,03/16/19 19:09,"600 7th St, San Francisco, CA 94016" -172431,Flatscreen TV,1,300,03/29/19 08:58,"494 4th St, Atlanta, GA 30301" -172432,AA Batteries (4-pack),1,3.84,03/24/19 21:15,"309 Hill St, New York City, NY 10001" -172433,20in Monitor,1,109.99,03/02/19 15:13,"80 Lincoln St, Austin, TX 73301" -172434,Google Phone,1,600,03/08/19 21:12,"373 Madison St, Atlanta, GA 30301" -172435,USB-C Charging Cable,1,11.95,03/29/19 15:00,"84 Lakeview St, Dallas, TX 75001" -172436,Bose SoundSport Headphones,1,99.99,03/19/19 16:11,"28 Wilson St, Dallas, TX 75001" -172437,AA Batteries (4-pack),1,3.84,03/20/19 18:12,"927 4th St, Atlanta, GA 30301" -172438,AAA Batteries (4-pack),1,2.99,03/19/19 21:40,"217 8th St, Los Angeles, CA 90001" -172439,27in 4K Gaming Monitor,1,389.99,03/11/19 02:24,"90 Center St, New York City, NY 10001" -172440,AA Batteries (4-pack),2,3.84,03/14/19 16:48,"750 Hill St, San Francisco, CA 94016" -172441,27in FHD Monitor,1,149.99,03/07/19 16:38,"236 Spruce St, San Francisco, CA 94016" -172442,AAA Batteries (4-pack),2,2.99,03/04/19 07:35,"831 Adams St, Los Angeles, CA 90001" -172443,Lightning Charging Cable,1,14.95,03/29/19 16:20,"963 Adams St, Seattle, WA 98101" -172444,AA Batteries (4-pack),1,3.84,03/23/19 18:22,"546 Chestnut St, Austin, TX 73301" -172445,AAA Batteries (4-pack),1,2.99,03/09/19 11:07,"317 Jefferson St, San Francisco, CA 94016" -172446,USB-C Charging Cable,1,11.95,03/21/19 19:36,"186 1st St, Boston, MA 02215" -172447,27in FHD Monitor,1,149.99,03/15/19 19:37,"516 11th St, Los Angeles, CA 90001" -172448,AA Batteries (4-pack),1,3.84,03/23/19 06:32,"442 Washington St, San Francisco, CA 94016" -172449,ThinkPad Laptop,1,999.99,03/29/19 16:40,"278 8th St, Boston, MA 02215" -172450,Bose SoundSport Headphones,1,99.99,03/20/19 14:41,"398 South St, San Francisco, CA 94016" -172451,AAA Batteries (4-pack),1,2.99,03/20/19 09:41,"742 Johnson St, New York City, NY 10001" -172452,Wired Headphones,1,11.99,03/13/19 17:12,"339 Lakeview St, New York City, NY 10001" -172453,AA Batteries (4-pack),1,3.84,03/29/19 17:11,"672 Cedar St, Boston, MA 02215" -172454,AA Batteries (4-pack),1,3.84,03/23/19 11:36,"206 Hill St, Dallas, TX 75001" -172455,Vareebadd Phone,1,400,03/31/19 16:30,"555 1st St, Seattle, WA 98101" -172456,USB-C Charging Cable,1,11.95,03/17/19 12:30,"702 Church St, San Francisco, CA 94016" -172457,USB-C Charging Cable,1,11.95,03/14/19 07:54,"810 14th St, Los Angeles, CA 90001" -172458,iPhone,1,700,03/16/19 05:05,"399 Lincoln St, Boston, MA 02215" -172459,27in 4K Gaming Monitor,1,389.99,03/20/19 22:29,"766 Jefferson St, New York City, NY 10001" -172460,AA Batteries (4-pack),1,3.84,03/08/19 20:00,"457 Center St, Dallas, TX 75001" -172461,Lightning Charging Cable,1,14.95,03/05/19 19:17,"441 4th St, New York City, NY 10001" -172462,AAA Batteries (4-pack),1,2.99,03/16/19 13:11,"649 North St, Atlanta, GA 30301" -172463,AAA Batteries (4-pack),1,2.99,03/26/19 18:57,"235 Ridge St, San Francisco, CA 94016" -172464,Bose SoundSport Headphones,1,99.99,03/14/19 10:57,"192 13th St, San Francisco, CA 94016" -172465,USB-C Charging Cable,1,11.95,03/26/19 22:12,"134 Lake St, San Francisco, CA 94016" -172466,Flatscreen TV,1,300,03/29/19 11:47,"993 12th St, Los Angeles, CA 90001" -172467,AAA Batteries (4-pack),1,2.99,03/18/19 20:16,"776 5th St, Portland, OR 97035" -172468,AA Batteries (4-pack),3,3.84,03/04/19 10:36,"500 Willow St, Dallas, TX 75001" -172469,AA Batteries (4-pack),1,3.84,03/13/19 12:42,"734 Chestnut St, Dallas, TX 75001" -172470,Google Phone,1,600,03/26/19 15:17,"413 Elm St, San Francisco, CA 94016" -172471,Wired Headphones,1,11.99,03/01/19 11:35,"176 Cedar St, Los Angeles, CA 90001" -172472,Wired Headphones,1,11.99,03/18/19 19:21,"616 Johnson St, New York City, NY 10001" -172473,20in Monitor,1,109.99,03/02/19 12:58,"12 Cedar St, Los Angeles, CA 90001" -172474,Bose SoundSport Headphones,1,99.99,03/13/19 08:44,"279 Madison St, San Francisco, CA 94016" -172475,34in Ultrawide Monitor,1,379.99,03/02/19 16:55,"784 Adams St, San Francisco, CA 94016" -172476,AA Batteries (4-pack),1,3.84,03/26/19 14:33,"381 Jackson St, Los Angeles, CA 90001" -172477,34in Ultrawide Monitor,1,379.99,03/14/19 14:00,"617 Highland St, Austin, TX 73301" -172478,Macbook Pro Laptop,1,1700,03/28/19 12:13,"773 6th St, New York City, NY 10001" -172479,AAA Batteries (4-pack),1,2.99,03/28/19 21:25,"369 7th St, Los Angeles, CA 90001" -172480,Apple Airpods Headphones,1,150,03/07/19 17:15,"28 Forest St, San Francisco, CA 94016" -172481,Apple Airpods Headphones,1,150,03/13/19 01:56,"855 6th St, San Francisco, CA 94016" -172482,Macbook Pro Laptop,1,1700,03/25/19 23:07,"127 Park St, Los Angeles, CA 90001" -172483,20in Monitor,1,109.99,03/03/19 22:31,"853 Center St, San Francisco, CA 94016" -172484,34in Ultrawide Monitor,1,379.99,03/15/19 20:57,"917 Johnson St, New York City, NY 10001" -172485,Lightning Charging Cable,1,14.95,03/16/19 18:00,"40 Church St, Boston, MA 02215" -172486,Apple Airpods Headphones,1,150,03/16/19 11:22,"740 North St, Los Angeles, CA 90001" -172487,Apple Airpods Headphones,1,150,03/07/19 19:46,"388 13th St, San Francisco, CA 94016" -172488,27in 4K Gaming Monitor,1,389.99,03/02/19 14:33,"105 2nd St, Atlanta, GA 30301" -172489,Lightning Charging Cable,1,14.95,03/05/19 18:49,"587 14th St, Dallas, TX 75001" -172490,Bose SoundSport Headphones,1,99.99,03/05/19 20:39,"25 Lincoln St, Boston, MA 02215" -172491,AAA Batteries (4-pack),1,2.99,03/08/19 00:52,"762 8th St, Los Angeles, CA 90001" -172492,USB-C Charging Cable,1,11.95,03/06/19 20:32,"993 Chestnut St, San Francisco, CA 94016" -172492,Wired Headphones,1,11.99,03/06/19 20:32,"993 Chestnut St, San Francisco, CA 94016" -172493,iPhone,1,700,03/26/19 12:27,"372 Madison St, Boston, MA 02215" -172493,Wired Headphones,1,11.99,03/26/19 12:27,"372 Madison St, Boston, MA 02215" -172494,20in Monitor,1,109.99,03/01/19 21:08,"184 1st St, New York City, NY 10001" -172495,Lightning Charging Cable,1,14.95,03/08/19 14:05,"916 Chestnut St, Boston, MA 02215" -172495,USB-C Charging Cable,1,11.95,03/08/19 14:05,"916 Chestnut St, Boston, MA 02215" -172496,Wired Headphones,1,11.99,03/27/19 00:35,"540 2nd St, San Francisco, CA 94016" -172497,AAA Batteries (4-pack),1,2.99,03/22/19 21:47,"933 West St, Atlanta, GA 30301" -172498,Apple Airpods Headphones,1,150,03/13/19 13:27,"155 Lake St, Austin, TX 73301" -172499,Macbook Pro Laptop,1,1700,03/03/19 22:08,"427 Cedar St, Seattle, WA 98101" -172500,Lightning Charging Cable,1,14.95,03/05/19 19:42,"639 9th St, New York City, NY 10001" -172501,Bose SoundSport Headphones,1,99.99,03/05/19 15:46,"993 Jefferson St, Dallas, TX 75001" -172502,AA Batteries (4-pack),2,3.84,03/13/19 16:55,"318 7th St, San Francisco, CA 94016" -172503,Wired Headphones,1,11.99,03/28/19 16:46,"854 Church St, Seattle, WA 98101" -172504,Lightning Charging Cable,1,14.95,03/25/19 20:36,"703 Dogwood St, Los Angeles, CA 90001" -172505,Bose SoundSport Headphones,1,99.99,03/05/19 15:16,"130 Sunset St, Boston, MA 02215" -172506,Apple Airpods Headphones,1,150,03/08/19 16:17,"74 West St, San Francisco, CA 94016" -172507,27in FHD Monitor,1,149.99,03/03/19 10:32,"165 Jackson St, Portland, OR 97035" -172508,AA Batteries (4-pack),2,3.84,03/18/19 21:45,"41 Pine St, Los Angeles, CA 90001" -172509,Wired Headphones,1,11.99,03/29/19 10:49,"213 Ridge St, San Francisco, CA 94016" -172510,AA Batteries (4-pack),1,3.84,03/28/19 15:56,"737 Park St, Atlanta, GA 30301" -,,,,, -172511,Macbook Pro Laptop,1,1700,03/10/19 17:36,"99 Wilson St, Los Angeles, CA 90001" -172512,AA Batteries (4-pack),1,3.84,03/14/19 19:10,"355 13th St, San Francisco, CA 94016" -172513,AAA Batteries (4-pack),1,2.99,03/24/19 20:57,"117 Jackson St, Seattle, WA 98101" -172514,AAA Batteries (4-pack),1,2.99,03/12/19 14:05,"837 8th St, Boston, MA 02215" -172515,27in 4K Gaming Monitor,1,389.99,03/10/19 16:35,"383 2nd St, Los Angeles, CA 90001" -172516,AA Batteries (4-pack),1,3.84,03/19/19 16:48,"793 9th St, San Francisco, CA 94016" -172516,Wired Headphones,1,11.99,03/19/19 16:48,"793 9th St, San Francisco, CA 94016" -172517,USB-C Charging Cable,1,11.95,03/12/19 17:21,"283 Sunset St, Los Angeles, CA 90001" -172518,Apple Airpods Headphones,1,150,03/31/19 17:20,"827 Chestnut St, San Francisco, CA 94016" -172519,Lightning Charging Cable,1,14.95,03/31/19 13:04,"955 1st St, Atlanta, GA 30301" -172520,Wired Headphones,1,11.99,03/14/19 13:14,"554 7th St, Los Angeles, CA 90001" -172521,27in FHD Monitor,1,149.99,03/01/19 12:30,"136 8th St, Austin, TX 73301" -172522,27in FHD Monitor,1,149.99,03/09/19 21:25,"140 Cherry St, New York City, NY 10001" -172523,Apple Airpods Headphones,1,150,03/24/19 01:07,"174 10th St, New York City, NY 10001" -172524,AAA Batteries (4-pack),1,2.99,03/19/19 13:46,"766 Church St, Seattle, WA 98101" -172525,ThinkPad Laptop,1,999.99,03/11/19 13:45,"823 7th St, Austin, TX 73301" -172526,AA Batteries (4-pack),1,3.84,03/13/19 11:25,"358 Hickory St, Dallas, TX 75001" -172527,Wired Headphones,1,11.99,03/09/19 17:51,"912 Elm St, San Francisco, CA 94016" -172528,AA Batteries (4-pack),1,3.84,03/25/19 18:40,"874 Adams St, Portland, OR 97035" -172528,LG Dryer,1,600.0,03/25/19 18:40,"874 Adams St, Portland, OR 97035" -172529,AAA Batteries (4-pack),1,2.99,03/16/19 13:25,"724 Highland St, New York City, NY 10001" -172530,Macbook Pro Laptop,1,1700,03/02/19 08:11,"377 Park St, Austin, TX 73301" -172531,AAA Batteries (4-pack),1,2.99,03/06/19 07:22,"127 2nd St, San Francisco, CA 94016" -172532,USB-C Charging Cable,1,11.95,03/27/19 12:18,"635 Wilson St, New York City, NY 10001" -172533,Apple Airpods Headphones,1,150,03/08/19 13:32,"141 Jefferson St, Dallas, TX 75001" -172534,AA Batteries (4-pack),1,3.84,03/21/19 12:35,"650 Spruce St, Atlanta, GA 30301" -172535,Lightning Charging Cable,1,14.95,03/20/19 10:33,"88 Jefferson St, Los Angeles, CA 90001" -172536,iPhone,1,700,03/12/19 21:19,"660 Lake St, San Francisco, CA 94016" -172537,AAA Batteries (4-pack),1,2.99,03/19/19 11:53,"591 11th St, Austin, TX 73301" -172538,Bose SoundSport Headphones,1,99.99,03/01/19 16:18,"211 11th St, Seattle, WA 98101" -172539,iPhone,1,700,03/20/19 11:45,"975 2nd St, New York City, NY 10001" -172540,Bose SoundSport Headphones,1,99.99,03/25/19 12:08,"419 Forest St, San Francisco, CA 94016" -172541,20in Monitor,1,109.99,03/04/19 10:59,"936 Willow St, San Francisco, CA 94016" -172542,AA Batteries (4-pack),1,3.84,03/09/19 21:10,"450 Center St, Los Angeles, CA 90001" -172543,27in 4K Gaming Monitor,1,389.99,03/12/19 13:05,"308 Cedar St, San Francisco, CA 94016" -172544,AAA Batteries (4-pack),2,2.99,03/02/19 18:52,"140 Center St, San Francisco, CA 94016" -172545,USB-C Charging Cable,1,11.95,03/21/19 09:27,"244 10th St, Dallas, TX 75001" -172546,Flatscreen TV,1,300,03/03/19 18:21,"957 11th St, Boston, MA 02215" -172547,27in 4K Gaming Monitor,1,389.99,03/11/19 02:17,"226 Spruce St, Seattle, WA 98101" -172548,Apple Airpods Headphones,1,150,03/02/19 17:57,"523 1st St, New York City, NY 10001" -172549,AAA Batteries (4-pack),1,2.99,03/21/19 11:07,"200 South St, San Francisco, CA 94016" -172550,USB-C Charging Cable,1,11.95,03/30/19 11:28,"111 Hickory St, Austin, TX 73301" -172551,USB-C Charging Cable,1,11.95,03/12/19 14:29,"680 North St, San Francisco, CA 94016" -172552,AA Batteries (4-pack),1,3.84,03/23/19 14:18,"222 Hickory St, Los Angeles, CA 90001" -172553,34in Ultrawide Monitor,1,379.99,03/27/19 00:41,"949 Maple St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -172554,USB-C Charging Cable,2,11.95,03/21/19 22:13,"914 10th St, Atlanta, GA 30301" -172555,Wired Headphones,1,11.99,03/09/19 10:10,"831 Lake St, Portland, OR 97035" -172556,AAA Batteries (4-pack),2,2.99,03/03/19 19:12,"751 14th St, Dallas, TX 75001" -172557,Google Phone,1,600,03/08/19 10:58,"367 8th St, Dallas, TX 75001" -172557,USB-C Charging Cable,1,11.95,03/08/19 10:58,"367 8th St, Dallas, TX 75001" -172557,Bose SoundSport Headphones,1,99.99,03/08/19 10:58,"367 8th St, Dallas, TX 75001" -172558,USB-C Charging Cable,1,11.95,03/27/19 12:13,"410 14th St, Seattle, WA 98101" -172559,Apple Airpods Headphones,1,150,03/08/19 05:48,"551 Center St, Dallas, TX 75001" -172560,USB-C Charging Cable,1,11.95,03/23/19 06:10,"792 River St, San Francisco, CA 94016" -172561,AAA Batteries (4-pack),2,2.99,03/08/19 21:22,"238 Lake St, San Francisco, CA 94016" -172562,Wired Headphones,1,11.99,03/19/19 19:19,"993 Jefferson St, San Francisco, CA 94016" -172563,Macbook Pro Laptop,1,1700,03/15/19 17:25,"398 13th St, Los Angeles, CA 90001" -172564,USB-C Charging Cable,1,11.95,03/21/19 21:20,"315 West St, New York City, NY 10001" -172565,Wired Headphones,1,11.99,03/02/19 16:06,"12 8th St, Austin, TX 73301" -172566,Wired Headphones,1,11.99,03/10/19 09:18,"465 8th St, San Francisco, CA 94016" -172567,iPhone,1,700,03/26/19 19:37,"996 Center St, San Francisco, CA 94016" -172568,Apple Airpods Headphones,1,150,03/03/19 12:35,"575 Dogwood St, Atlanta, GA 30301" -172569,USB-C Charging Cable,1,11.95,03/22/19 17:02,"259 2nd St, San Francisco, CA 94016" -172570,Wired Headphones,1,11.99,03/17/19 18:20,"97 Pine St, Portland, OR 97035" -172571,Bose SoundSport Headphones,1,99.99,03/03/19 18:09,"352 River St, San Francisco, CA 94016" -172572,Apple Airpods Headphones,1,150,03/17/19 09:10,"160 7th St, Boston, MA 02215" -172573,Lightning Charging Cable,1,14.95,03/10/19 16:21,"542 12th St, Los Angeles, CA 90001" -172574,AAA Batteries (4-pack),2,2.99,03/14/19 12:34,"928 Lincoln St, Austin, TX 73301" -172575,Wired Headphones,1,11.99,03/01/19 11:05,"510 Pine St, Seattle, WA 98101" -172576,27in FHD Monitor,1,149.99,03/15/19 17:20,"275 Elm St, Los Angeles, CA 90001" -172577,USB-C Charging Cable,1,11.95,03/09/19 15:58,"317 Spruce St, San Francisco, CA 94016" -172578,Google Phone,1,600,03/13/19 11:26,"969 7th St, Boston, MA 02215" -172579,Macbook Pro Laptop,1,1700,03/24/19 18:43,"755 Lakeview St, Los Angeles, CA 90001" -172580,34in Ultrawide Monitor,1,379.99,03/14/19 13:35,"807 Washington St, Los Angeles, CA 90001" -172581,Google Phone,1,600,03/30/19 13:37,"211 Church St, Portland, OR 97035" -172582,Lightning Charging Cable,1,14.95,03/07/19 17:41,"407 Main St, Los Angeles, CA 90001" -172583,34in Ultrawide Monitor,1,379.99,03/10/19 18:50,"799 11th St, San Francisco, CA 94016" -172584,Lightning Charging Cable,1,14.95,03/17/19 17:20,"768 Ridge St, New York City, NY 10001" -172585,Wired Headphones,1,11.99,03/14/19 17:39,"843 Church St, San Francisco, CA 94016" -172586,27in 4K Gaming Monitor,1,389.99,03/04/19 01:29,"862 Pine St, Los Angeles, CA 90001" -172587,Bose SoundSport Headphones,1,99.99,03/19/19 17:29,"895 8th St, San Francisco, CA 94016" -172588,Lightning Charging Cable,1,14.95,03/17/19 09:31,"326 Dogwood St, New York City, NY 10001" -172589,AAA Batteries (4-pack),1,2.99,03/13/19 09:57,"306 South St, Los Angeles, CA 90001" -172590,USB-C Charging Cable,1,11.95,03/17/19 16:52,"273 South St, San Francisco, CA 94016" -172591,34in Ultrawide Monitor,1,379.99,03/16/19 09:33,"382 North St, Portland, OR 97035" -172592,Wired Headphones,2,11.99,03/13/19 16:25,"263 Hickory St, Atlanta, GA 30301" -172593,Macbook Pro Laptop,1,1700,03/25/19 19:13,"81 Lakeview St, San Francisco, CA 94016" -172594,Bose SoundSport Headphones,1,99.99,03/10/19 18:11,"522 6th St, Los Angeles, CA 90001" -172595,ThinkPad Laptop,1,999.99,03/11/19 09:38,"273 Lincoln St, Boston, MA 02215" -172596,Lightning Charging Cable,1,14.95,03/19/19 13:42,"467 Center St, Dallas, TX 75001" -172597,Macbook Pro Laptop,1,1700,03/03/19 14:41,"276 9th St, Boston, MA 02215" -172598,Lightning Charging Cable,1,14.95,03/28/19 08:36,"625 Main St, Atlanta, GA 30301" -172599,27in FHD Monitor,1,149.99,03/11/19 21:03,"453 Cherry St, San Francisco, CA 94016" -172600,LG Washing Machine,1,600.0,03/24/19 14:42,"448 Lakeview St, Austin, TX 73301" -172601,Lightning Charging Cable,1,14.95,03/16/19 07:46,"683 2nd St, San Francisco, CA 94016" -172602,Apple Airpods Headphones,1,150,03/29/19 01:37,"461 Church St, San Francisco, CA 94016" -172603,Apple Airpods Headphones,1,150,03/10/19 16:27,"542 Elm St, Atlanta, GA 30301" -172604,Wired Headphones,1,11.99,03/21/19 09:09,"166 South St, Portland, OR 97035" -172605,27in FHD Monitor,1,149.99,03/24/19 15:34,"156 6th St, Los Angeles, CA 90001" -172606,27in FHD Monitor,1,149.99,03/10/19 12:31,"595 Walnut St, Atlanta, GA 30301" -172607,Lightning Charging Cable,1,14.95,03/22/19 07:18,"396 14th St, San Francisco, CA 94016" -172608,USB-C Charging Cable,1,11.95,03/30/19 19:46,"277 Johnson St, Portland, OR 97035" -172609,USB-C Charging Cable,1,11.95,03/10/19 21:04,"986 4th St, Boston, MA 02215" -172610,Google Phone,1,600,03/19/19 13:16,"567 Madison St, Boston, MA 02215" -172611,Lightning Charging Cable,1,14.95,03/22/19 13:17,"210 Highland St, Portland, OR 97035" -172612,iPhone,1,700,03/26/19 07:53,"741 Jefferson St, Los Angeles, CA 90001" -172613,Google Phone,1,600,03/29/19 12:52,"246 Highland St, Atlanta, GA 30301" -172614,Wired Headphones,1,11.99,03/14/19 15:52,"213 Dogwood St, Atlanta, GA 30301" -172615,Lightning Charging Cable,1,14.95,03/29/19 20:14,"225 Willow St, San Francisco, CA 94016" -172616,Bose SoundSport Headphones,1,99.99,03/13/19 20:26,"106 Main St, Boston, MA 02215" -172617,Wired Headphones,1,11.99,03/09/19 08:46,"618 Maple St, Portland, OR 97035" -172618,Apple Airpods Headphones,1,150,03/16/19 15:42,"127 Dogwood St, Los Angeles, CA 90001" -172619,AAA Batteries (4-pack),1,2.99,03/29/19 16:52,"719 South St, San Francisco, CA 94016" -172620,Bose SoundSport Headphones,1,99.99,03/21/19 16:12,"343 5th St, San Francisco, CA 94016" -172621,Wired Headphones,1,11.99,03/03/19 23:35,"546 9th St, Los Angeles, CA 90001" -172622,34in Ultrawide Monitor,1,379.99,03/12/19 07:25,"72 4th St, Portland, OR 97035" -172623,Lightning Charging Cable,1,14.95,03/11/19 22:47,"991 Adams St, Los Angeles, CA 90001" -172624,USB-C Charging Cable,1,11.95,03/13/19 10:11,"145 Sunset St, New York City, NY 10001" -172625,USB-C Charging Cable,1,11.95,03/08/19 11:53,"668 Main St, San Francisco, CA 94016" -172626,USB-C Charging Cable,1,11.95,03/16/19 14:51,"460 West St, Seattle, WA 98101" -172627,Wired Headphones,1,11.99,03/15/19 23:47,"662 Cedar St, Los Angeles, CA 90001" -172628,Wired Headphones,1,11.99,03/16/19 13:18,"375 Chestnut St, Austin, TX 73301" -172629,AA Batteries (4-pack),1,3.84,03/20/19 08:22,"416 Pine St, Boston, MA 02215" -172630,AAA Batteries (4-pack),2,2.99,03/08/19 12:00,"197 North St, Atlanta, GA 30301" -172631,Apple Airpods Headphones,1,150,03/26/19 10:20,"696 Walnut St, Dallas, TX 75001" -172632,AAA Batteries (4-pack),1,2.99,03/07/19 17:33,"615 Willow St, Los Angeles, CA 90001" -172633,Bose SoundSport Headphones,1,99.99,03/19/19 12:34,"967 9th St, Atlanta, GA 30301" -172634,AAA Batteries (4-pack),1,2.99,03/28/19 23:28,"138 4th St, Los Angeles, CA 90001" -172635,27in 4K Gaming Monitor,1,389.99,03/15/19 12:39,"413 Sunset St, Los Angeles, CA 90001" -172636,Bose SoundSport Headphones,1,99.99,03/17/19 17:49,"944 Madison St, Portland, ME 04101" -172637,ThinkPad Laptop,1,999.99,03/31/19 11:41,"210 12th St, Boston, MA 02215" -172638,Lightning Charging Cable,1,14.95,03/06/19 15:07,"949 Spruce St, Seattle, WA 98101" -172639,AAA Batteries (4-pack),3,2.99,03/05/19 12:35,"125 Lake St, San Francisco, CA 94016" -172640,USB-C Charging Cable,1,11.95,03/22/19 22:32,"535 Cherry St, Boston, MA 02215" -172641,34in Ultrawide Monitor,1,379.99,03/04/19 20:24,"890 Sunset St, Atlanta, GA 30301" -172642,LG Dryer,1,600.0,03/24/19 11:08,"294 Ridge St, San Francisco, CA 94016" -172643,Wired Headphones,1,11.99,03/09/19 19:03,"925 Center St, New York City, NY 10001" -172644,Lightning Charging Cable,1,14.95,03/29/19 20:48,"92 1st St, Dallas, TX 75001" -172645,Lightning Charging Cable,1,14.95,03/24/19 13:38,"926 Highland St, Austin, TX 73301" -172646,Bose SoundSport Headphones,1,99.99,03/09/19 12:29,"490 Jefferson St, Los Angeles, CA 90001" -172647,iPhone,1,700,03/07/19 15:15,"14 West St, San Francisco, CA 94016" -172648,AAA Batteries (4-pack),3,2.99,03/02/19 18:14,"822 Hickory St, San Francisco, CA 94016" -172649,AAA Batteries (4-pack),1,2.99,03/03/19 11:18,"654 Elm St, Portland, OR 97035" -172650,Lightning Charging Cable,1,14.95,03/16/19 10:52,"689 South St, Los Angeles, CA 90001" -172651,Wired Headphones,1,11.99,03/26/19 15:11,"471 Wilson St, Boston, MA 02215" -172652,27in 4K Gaming Monitor,1,389.99,03/17/19 07:36,"899 Pine St, Atlanta, GA 30301" -172653,Apple Airpods Headphones,1,150,03/05/19 15:04,"320 Pine St, San Francisco, CA 94016" -172654,iPhone,1,700,03/05/19 21:20,"615 Meadow St, Austin, TX 73301" -172654,Lightning Charging Cable,1,14.95,03/05/19 21:20,"615 Meadow St, Austin, TX 73301" -172655,Apple Airpods Headphones,1,150,03/08/19 10:59,"227 Main St, San Francisco, CA 94016" -172656,Bose SoundSport Headphones,1,99.99,03/05/19 12:53,"668 Lakeview St, Dallas, TX 75001" -172657,AAA Batteries (4-pack),2,2.99,03/13/19 12:15,"898 North St, Los Angeles, CA 90001" -172658,AA Batteries (4-pack),1,3.84,03/22/19 20:44,"719 Maple St, Boston, MA 02215" -172659,Apple Airpods Headphones,1,150,03/03/19 17:51,"358 2nd St, Seattle, WA 98101" -172660,AA Batteries (4-pack),1,3.84,03/11/19 08:25,"142 Church St, Los Angeles, CA 90001" -172661,Wired Headphones,1,11.99,03/07/19 13:34,"223 Willow St, San Francisco, CA 94016" -172662,AAA Batteries (4-pack),1,2.99,03/25/19 16:57,"357 13th St, Los Angeles, CA 90001" -172663,Apple Airpods Headphones,2,150,03/15/19 10:50,"637 Adams St, San Francisco, CA 94016" -172664,Wired Headphones,1,11.99,03/28/19 20:21,"481 West St, Los Angeles, CA 90001" -172665,iPhone,1,700,03/25/19 11:12,"612 Park St, Boston, MA 02215" -172666,Apple Airpods Headphones,1,150,03/14/19 09:42,"53 4th St, Los Angeles, CA 90001" -172667,27in 4K Gaming Monitor,1,389.99,03/22/19 16:04,"685 West St, Atlanta, GA 30301" -172668,AAA Batteries (4-pack),1,2.99,03/05/19 23:00,"790 Lakeview St, Atlanta, GA 30301" -172669,20in Monitor,1,109.99,03/03/19 21:29,"926 Pine St, Boston, MA 02215" -172670,Bose SoundSport Headphones,1,99.99,03/03/19 20:57,"457 Center St, New York City, NY 10001" -172671,Apple Airpods Headphones,1,150,03/18/19 15:31,"457 Meadow St, Los Angeles, CA 90001" -,,,,, -172672,USB-C Charging Cable,1,11.95,03/02/19 14:55,"590 Cedar St, New York City, NY 10001" -172673,AA Batteries (4-pack),1,3.84,03/25/19 14:24,"83 2nd St, Atlanta, GA 30301" -172674,Bose SoundSport Headphones,1,99.99,03/09/19 12:07,"605 2nd St, Dallas, TX 75001" -172675,iPhone,1,700,03/07/19 14:13,"942 Park St, Boston, MA 02215" -172676,AAA Batteries (4-pack),1,2.99,03/09/19 11:05,"224 7th St, Boston, MA 02215" -172677,Bose SoundSport Headphones,1,99.99,03/10/19 22:04,"270 Hill St, Portland, OR 97035" -172678,AA Batteries (4-pack),2,3.84,03/01/19 18:15,"760 Wilson St, San Francisco, CA 94016" -172679,Bose SoundSport Headphones,1,99.99,03/14/19 16:32,"388 Wilson St, New York City, NY 10001" -172680,iPhone,1,700,03/09/19 13:30,"192 Chestnut St, Los Angeles, CA 90001" -172681,Flatscreen TV,1,300,03/21/19 18:10,"175 1st St, San Francisco, CA 94016" -172682,Bose SoundSport Headphones,1,99.99,03/11/19 17:35,"734 Spruce St, Dallas, TX 75001" -172683,20in Monitor,1,109.99,03/25/19 19:46,"688 2nd St, Atlanta, GA 30301" -172684,Wired Headphones,1,11.99,03/16/19 18:55,"253 Madison St, New York City, NY 10001" -172685,AAA Batteries (4-pack),1,2.99,03/23/19 20:24,"191 Church St, Boston, MA 02215" -172686,Bose SoundSport Headphones,1,99.99,03/17/19 20:23,"12 Madison St, New York City, NY 10001" -172687,Wired Headphones,1,11.99,03/18/19 12:31,"730 Lincoln St, New York City, NY 10001" -172688,Apple Airpods Headphones,1,150,03/05/19 10:25,"927 Cherry St, Boston, MA 02215" -172689,27in 4K Gaming Monitor,1,389.99,03/11/19 18:20,"866 Dogwood St, New York City, NY 10001" -172690,Lightning Charging Cable,1,14.95,03/11/19 18:07,"611 Spruce St, Seattle, WA 98101" -172691,34in Ultrawide Monitor,1,379.99,03/14/19 11:21,"510 Spruce St, San Francisco, CA 94016" -172692,Vareebadd Phone,1,400,03/23/19 16:53,"109 River St, Los Angeles, CA 90001" -172692,Wired Headphones,1,11.99,03/23/19 16:53,"109 River St, Los Angeles, CA 90001" -172693,Google Phone,1,600,03/22/19 05:54,"880 Hickory St, Portland, ME 04101" -172694,Bose SoundSport Headphones,1,99.99,03/16/19 18:40,"981 Maple St, New York City, NY 10001" -172695,Apple Airpods Headphones,1,150,03/31/19 12:03,"499 11th St, San Francisco, CA 94016" -172696,Apple Airpods Headphones,1,150,03/12/19 17:07,"594 West St, Boston, MA 02215" -172697,Bose SoundSport Headphones,1,99.99,03/22/19 09:24,"819 Wilson St, Los Angeles, CA 90001" -172698,USB-C Charging Cable,1,11.95,03/21/19 14:48,"928 Ridge St, San Francisco, CA 94016" -172699,Lightning Charging Cable,1,14.95,03/04/19 08:14,"948 Walnut St, Seattle, WA 98101" -172700,34in Ultrawide Monitor,1,379.99,03/18/19 12:19,"612 Maple St, Dallas, TX 75001" -172701,Lightning Charging Cable,1,14.95,03/18/19 07:21,"113 Johnson St, Seattle, WA 98101" -172702,20in Monitor,1,109.99,03/02/19 20:54,"5 Walnut St, Portland, OR 97035" -172703,Lightning Charging Cable,1,14.95,03/23/19 13:07,"930 River St, Los Angeles, CA 90001" -172704,Bose SoundSport Headphones,1,99.99,03/12/19 13:37,"990 Hickory St, San Francisco, CA 94016" -172705,Lightning Charging Cable,1,14.95,03/03/19 13:00,"550 12th St, Boston, MA 02215" -172706,iPhone,1,700,03/14/19 14:33,"462 5th St, San Francisco, CA 94016" -172706,Apple Airpods Headphones,1,150,03/14/19 14:33,"462 5th St, San Francisco, CA 94016" -172707,Lightning Charging Cable,1,14.95,03/16/19 10:00,"101 Meadow St, Austin, TX 73301" -172708,AA Batteries (4-pack),1,3.84,03/02/19 00:29,"147 5th St, Los Angeles, CA 90001" -172709,27in 4K Gaming Monitor,1,389.99,03/17/19 22:10,"151 12th St, San Francisco, CA 94016" -,,,,, -172710,Wired Headphones,1,11.99,03/03/19 22:52,"117 Lake St, New York City, NY 10001" -172711,AAA Batteries (4-pack),1,2.99,03/17/19 08:26,"712 14th St, Seattle, WA 98101" -172712,Apple Airpods Headphones,1,150,03/20/19 10:38,"227 Lake St, Austin, TX 73301" -172713,Wired Headphones,1,11.99,03/16/19 18:05,"217 Hickory St, Boston, MA 02215" -172714,20in Monitor,1,109.99,03/25/19 10:14,"807 West St, San Francisco, CA 94016" -172715,Wired Headphones,1,11.99,03/30/19 19:29,"987 2nd St, Seattle, WA 98101" -172716,iPhone,1,700,03/07/19 08:34,"392 Hill St, Atlanta, GA 30301" -172716,Lightning Charging Cable,1,14.95,03/07/19 08:34,"392 Hill St, Atlanta, GA 30301" -172717,AAA Batteries (4-pack),1,2.99,03/04/19 09:56,"36 Wilson St, Los Angeles, CA 90001" -172718,Lightning Charging Cable,1,14.95,03/23/19 08:26,"912 Lincoln St, Atlanta, GA 30301" -172719,AA Batteries (4-pack),1,3.84,03/07/19 21:26,"156 5th St, Atlanta, GA 30301" -172720,34in Ultrawide Monitor,1,379.99,03/15/19 09:42,"617 Jefferson St, New York City, NY 10001" -172721,Bose SoundSport Headphones,1,99.99,03/22/19 18:06,"135 Spruce St, Portland, OR 97035" -172722,AAA Batteries (4-pack),1,2.99,03/13/19 12:24,"878 10th St, New York City, NY 10001" -172723,Apple Airpods Headphones,1,150,03/24/19 20:37,"278 Sunset St, San Francisco, CA 94016" -172724,27in 4K Gaming Monitor,1,389.99,03/20/19 22:58,"19 Madison St, Austin, TX 73301" -172725,34in Ultrawide Monitor,1,379.99,03/19/19 09:32,"192 1st St, San Francisco, CA 94016" -172725,AA Batteries (4-pack),1,3.84,03/19/19 09:32,"192 1st St, San Francisco, CA 94016" -172726,AAA Batteries (4-pack),1,2.99,03/23/19 12:54,"876 12th St, San Francisco, CA 94016" -172727,Google Phone,1,600,03/12/19 12:34,"704 River St, San Francisco, CA 94016" -172728,Apple Airpods Headphones,1,150,03/16/19 11:53,"520 1st St, San Francisco, CA 94016" -172729,Wired Headphones,1,11.99,03/02/19 00:40,"145 Main St, Atlanta, GA 30301" -172730,AA Batteries (4-pack),2,3.84,03/08/19 12:34,"88 Hickory St, San Francisco, CA 94016" -172731,USB-C Charging Cable,1,11.95,03/29/19 15:47,"895 Adams St, Portland, OR 97035" -172732,Lightning Charging Cable,1,14.95,03/28/19 12:32,"301 Wilson St, Atlanta, GA 30301" -172733,Wired Headphones,1,11.99,03/05/19 17:44,"563 Lakeview St, Austin, TX 73301" -172734,AA Batteries (4-pack),3,3.84,03/25/19 15:08,"481 10th St, Boston, MA 02215" -172735,27in 4K Gaming Monitor,1,389.99,03/20/19 22:14,"335 Hickory St, Boston, MA 02215" -172736,AA Batteries (4-pack),1,3.84,03/13/19 18:30,"317 10th St, Boston, MA 02215" -172737,ThinkPad Laptop,1,999.99,03/20/19 10:58,"770 Highland St, Seattle, WA 98101" -172738,Apple Airpods Headphones,1,150,03/20/19 19:50,"197 Hill St, Boston, MA 02215" -172739,Wired Headphones,1,11.99,03/18/19 21:55,"96 Chestnut St, Dallas, TX 75001" -172740,AAA Batteries (4-pack),2,2.99,03/16/19 19:22,"824 Main St, Boston, MA 02215" -172741,Lightning Charging Cable,2,14.95,03/07/19 11:00,"681 Forest St, Austin, TX 73301" -172742,Wired Headphones,1,11.99,03/23/19 08:46,"874 10th St, New York City, NY 10001" -172743,Apple Airpods Headphones,1,150,03/22/19 18:00,"625 Cherry St, New York City, NY 10001" -172744,20in Monitor,1,109.99,03/31/19 16:37,"476 Jefferson St, San Francisco, CA 94016" -172745,AA Batteries (4-pack),2,3.84,03/30/19 13:17,"56 4th St, San Francisco, CA 94016" -172746,34in Ultrawide Monitor,1,379.99,03/05/19 18:40,"742 Lincoln St, Seattle, WA 98101" -172747,Lightning Charging Cable,1,14.95,03/10/19 13:40,"103 Hickory St, Portland, OR 97035" -172748,AAA Batteries (4-pack),4,2.99,03/03/19 08:04,"453 9th St, San Francisco, CA 94016" -172749,USB-C Charging Cable,1,11.95,03/27/19 08:56,"766 Cedar St, San Francisco, CA 94016" -172750,Wired Headphones,1,11.99,03/02/19 22:33,"339 Lake St, Los Angeles, CA 90001" -172751,Bose SoundSport Headphones,1,99.99,03/23/19 19:04,"82 4th St, Los Angeles, CA 90001" -172752,27in FHD Monitor,1,149.99,03/26/19 10:05,"354 6th St, San Francisco, CA 94016" -172753,Lightning Charging Cable,1,14.95,03/25/19 14:30,"450 Madison St, Dallas, TX 75001" -172754,AAA Batteries (4-pack),3,2.99,03/15/19 21:27,"89 South St, Portland, OR 97035" -172755,Flatscreen TV,1,300,03/18/19 13:11,"409 12th St, Dallas, TX 75001" -172756,AA Batteries (4-pack),1,3.84,03/09/19 07:54,"180 12th St, San Francisco, CA 94016" -172757,AAA Batteries (4-pack),3,2.99,03/01/19 16:04,"181 8th St, Los Angeles, CA 90001" -172758,20in Monitor,1,109.99,03/22/19 17:06,"684 Pine St, Atlanta, GA 30301" -172759,Bose SoundSport Headphones,1,99.99,03/22/19 00:11,"475 Willow St, San Francisco, CA 94016" -172760,AA Batteries (4-pack),1,3.84,03/26/19 21:21,"506 Cedar St, Los Angeles, CA 90001" -172761,AA Batteries (4-pack),1,3.84,03/29/19 18:08,"822 5th St, Atlanta, GA 30301" -172762,Apple Airpods Headphones,1,150,03/26/19 08:42,"317 10th St, Portland, OR 97035" -172763,USB-C Charging Cable,1,11.95,03/01/19 11:52,"673 13th St, Boston, MA 02215" -172764,Macbook Pro Laptop,1,1700,03/07/19 14:22,"74 Lake St, San Francisco, CA 94016" -172765,Wired Headphones,2,11.99,03/27/19 22:14,"119 Washington St, Boston, MA 02215" -172766,Apple Airpods Headphones,1,150,03/23/19 15:42,"984 14th St, San Francisco, CA 94016" -172767,Bose SoundSport Headphones,1,99.99,03/27/19 20:40,"344 Church St, Boston, MA 02215" -172768,Apple Airpods Headphones,1,150,03/13/19 21:09,"309 Madison St, San Francisco, CA 94016" -172769,Wired Headphones,1,11.99,03/28/19 21:44,"97 Sunset St, Los Angeles, CA 90001" -172770,USB-C Charging Cable,1,11.95,03/02/19 10:07,"917 10th St, Los Angeles, CA 90001" -172771,AA Batteries (4-pack),1,3.84,03/29/19 21:03,"629 Park St, Seattle, WA 98101" -172772,27in 4K Gaming Monitor,1,389.99,03/17/19 12:01,"962 14th St, Los Angeles, CA 90001" -172773,27in 4K Gaming Monitor,1,389.99,03/14/19 10:37,"323 Ridge St, San Francisco, CA 94016" -172774,ThinkPad Laptop,1,999.99,03/21/19 11:56,"351 Walnut St, Seattle, WA 98101" -172775,Lightning Charging Cable,1,14.95,03/08/19 22:37,"421 5th St, Boston, MA 02215" -172776,Apple Airpods Headphones,1,150,03/06/19 12:51,"757 2nd St, Dallas, TX 75001" -172777,AA Batteries (4-pack),2,3.84,03/28/19 20:02,"433 Meadow St, Seattle, WA 98101" -172778,Wired Headphones,2,11.99,03/06/19 07:41,"695 8th St, Austin, TX 73301" -172779,20in Monitor,1,109.99,03/15/19 22:46,"851 Chestnut St, San Francisco, CA 94016" -172780,USB-C Charging Cable,2,11.95,03/18/19 16:25,"994 Pine St, Atlanta, GA 30301" -172781,USB-C Charging Cable,1,11.95,03/04/19 01:13,"957 Center St, Atlanta, GA 30301" -172782,USB-C Charging Cable,1,11.95,03/16/19 19:20,"707 Highland St, San Francisco, CA 94016" -172782,AA Batteries (4-pack),2,3.84,03/16/19 19:20,"707 Highland St, San Francisco, CA 94016" -172783,USB-C Charging Cable,1,11.95,03/04/19 22:14,"363 Hill St, Boston, MA 02215" -172784,Macbook Pro Laptop,1,1700,03/18/19 23:28,"80 Johnson St, San Francisco, CA 94016" -172785,AA Batteries (4-pack),1,3.84,03/23/19 18:08,"2 Highland St, San Francisco, CA 94016" -172786,Bose SoundSport Headphones,1,99.99,03/05/19 09:40,"318 Madison St, Los Angeles, CA 90001" -172787,USB-C Charging Cable,1,11.95,03/25/19 19:11,"254 Wilson St, Seattle, WA 98101" -172788,Wired Headphones,1,11.99,03/19/19 10:03,"998 9th St, Atlanta, GA 30301" -172788,27in 4K Gaming Monitor,1,389.99,03/19/19 10:03,"998 9th St, Atlanta, GA 30301" -172789,Lightning Charging Cable,1,14.95,03/08/19 13:20,"692 Jefferson St, Los Angeles, CA 90001" -172790,Wired Headphones,1,11.99,03/21/19 18:41,"144 Maple St, Los Angeles, CA 90001" -172791,Wired Headphones,1,11.99,03/08/19 14:20,"542 South St, Boston, MA 02215" -172792,AAA Batteries (4-pack),1,2.99,03/12/19 15:50,"512 South St, San Francisco, CA 94016" -172793,27in 4K Gaming Monitor,1,389.99,03/09/19 20:13,"732 Lake St, Seattle, WA 98101" -172794,Apple Airpods Headphones,1,150,03/11/19 15:13,"246 Lakeview St, San Francisco, CA 94016" -172795,Wired Headphones,1,11.99,03/06/19 22:59,"727 14th St, Atlanta, GA 30301" -172796,USB-C Charging Cable,1,11.95,03/09/19 10:09,"440 8th St, Boston, MA 02215" -172797,Wired Headphones,1,11.99,03/23/19 13:43,"377 Forest St, San Francisco, CA 94016" -172798,Lightning Charging Cable,1,14.95,03/29/19 11:01,"866 12th St, Austin, TX 73301" -172799,AAA Batteries (4-pack),1,2.99,03/02/19 12:04,"280 Main St, San Francisco, CA 94016" -172800,Google Phone,1,600,03/13/19 21:07,"321 Hill St, Austin, TX 73301" -172800,USB-C Charging Cable,1,11.95,03/13/19 21:07,"321 Hill St, Austin, TX 73301" -172801,Lightning Charging Cable,2,14.95,03/17/19 02:49,"354 Walnut St, Seattle, WA 98101" -172802,Wired Headphones,1,11.99,03/17/19 13:04,"839 Pine St, Los Angeles, CA 90001" -172803,Bose SoundSport Headphones,1,99.99,03/19/19 09:40,"306 13th St, Seattle, WA 98101" -172804,Apple Airpods Headphones,1,150,03/15/19 10:11,"319 Chestnut St, New York City, NY 10001" -172805,AA Batteries (4-pack),2,3.84,03/14/19 19:20,"453 Hill St, Atlanta, GA 30301" -172805,Bose SoundSport Headphones,1,99.99,03/14/19 19:20,"453 Hill St, Atlanta, GA 30301" -172806,20in Monitor,1,109.99,03/06/19 16:12,"97 9th St, San Francisco, CA 94016" -172807,Apple Airpods Headphones,1,150,03/24/19 16:33,"76 West St, San Francisco, CA 94016" -172808,Macbook Pro Laptop,1,1700,03/08/19 05:43,"906 12th St, San Francisco, CA 94016" -172809,27in FHD Monitor,1,149.99,03/09/19 19:52,"529 Jefferson St, New York City, NY 10001" -172810,Lightning Charging Cable,1,14.95,03/10/19 23:40,"133 8th St, Portland, OR 97035" -172811,Macbook Pro Laptop,1,1700,03/25/19 14:53,"483 Jackson St, Los Angeles, CA 90001" -172812,Google Phone,1,600,03/01/19 10:53,"40 Adams St, Austin, TX 73301" -172813,Bose SoundSport Headphones,1,99.99,03/13/19 11:27,"196 2nd St, Portland, OR 97035" -172814,AAA Batteries (4-pack),1,2.99,03/10/19 17:47,"11 Johnson St, Los Angeles, CA 90001" -172815,Lightning Charging Cable,1,14.95,03/24/19 11:08,"281 Madison St, Portland, OR 97035" -172816,Bose SoundSport Headphones,1,99.99,03/06/19 13:33,"531 Hill St, Seattle, WA 98101" -172817,Apple Airpods Headphones,1,150,03/07/19 18:25,"158 Meadow St, Dallas, TX 75001" -172818,Lightning Charging Cable,1,14.95,03/10/19 01:44,"684 South St, Dallas, TX 75001" -172819,Wired Headphones,1,11.99,03/30/19 16:15,"325 River St, Seattle, WA 98101" -172820,Apple Airpods Headphones,1,150,03/15/19 12:14,"798 9th St, Austin, TX 73301" -172821,Lightning Charging Cable,1,14.95,03/25/19 22:36,"859 5th St, Seattle, WA 98101" -172822,27in FHD Monitor,1,149.99,03/09/19 11:10,"530 Center St, Dallas, TX 75001" -172823,Lightning Charging Cable,2,14.95,03/22/19 06:52,"36 Hickory St, New York City, NY 10001" -172824,20in Monitor,1,109.99,03/28/19 21:19,"370 Willow St, Atlanta, GA 30301" -172825,AAA Batteries (4-pack),1,2.99,03/10/19 10:37,"778 Elm St, New York City, NY 10001" -172826,Bose SoundSport Headphones,1,99.99,03/21/19 23:16,"40 Ridge St, Los Angeles, CA 90001" -172827,USB-C Charging Cable,1,11.95,03/01/19 17:17,"938 10th St, Seattle, WA 98101" -172828,Apple Airpods Headphones,1,150,03/29/19 21:44,"389 14th St, San Francisco, CA 94016" -172828,Lightning Charging Cable,1,14.95,03/29/19 21:44,"389 14th St, San Francisco, CA 94016" -172829,USB-C Charging Cable,1,11.95,03/25/19 21:56,"727 West St, New York City, NY 10001" -172830,USB-C Charging Cable,1,11.95,03/05/19 23:49,"5 South St, Los Angeles, CA 90001" -172831,USB-C Charging Cable,1,11.95,03/30/19 11:58,"270 Lakeview St, Atlanta, GA 30301" -172832,Lightning Charging Cable,1,14.95,03/12/19 19:01,"35 Cherry St, San Francisco, CA 94016" -172833,27in FHD Monitor,1,149.99,03/02/19 16:04,"69 Dogwood St, Boston, MA 02215" -172834,AAA Batteries (4-pack),2,2.99,03/09/19 12:49,"945 Lincoln St, Boston, MA 02215" -172835,27in 4K Gaming Monitor,1,389.99,03/21/19 23:12,"859 Walnut St, Seattle, WA 98101" -172836,ThinkPad Laptop,1,999.99,03/23/19 23:35,"305 North St, San Francisco, CA 94016" -172837,USB-C Charging Cable,1,11.95,03/04/19 13:09,"407 Walnut St, Seattle, WA 98101" -172838,Wired Headphones,1,11.99,03/05/19 18:53,"193 River St, San Francisco, CA 94016" -172839,AA Batteries (4-pack),2,3.84,03/18/19 13:49,"372 Elm St, Seattle, WA 98101" -172840,Lightning Charging Cable,1,14.95,03/01/19 11:06,"172 Dogwood St, Dallas, TX 75001" -172841,Bose SoundSport Headphones,1,99.99,03/24/19 17:02,"809 9th St, Austin, TX 73301" -172842,AA Batteries (4-pack),1,3.84,03/26/19 21:44,"793 9th St, Portland, ME 04101" -172843,Bose SoundSport Headphones,1,99.99,03/25/19 09:40,"102 Highland St, Los Angeles, CA 90001" -172844,AA Batteries (4-pack),1,3.84,03/23/19 09:06,"588 Spruce St, Austin, TX 73301" -172845,AA Batteries (4-pack),1,3.84,03/02/19 16:24,"135 Center St, Dallas, TX 75001" -172846,AAA Batteries (4-pack),2,2.99,03/14/19 11:28,"675 Cherry St, Atlanta, GA 30301" -172847,Google Phone,1,600,03/30/19 17:06,"828 Lake St, New York City, NY 10001" -172847,Wired Headphones,1,11.99,03/30/19 17:06,"828 Lake St, New York City, NY 10001" -172848,Lightning Charging Cable,1,14.95,03/22/19 19:10,"75 Lincoln St, San Francisco, CA 94016" -172849,USB-C Charging Cable,1,11.95,03/03/19 16:28,"774 13th St, San Francisco, CA 94016" -172850,AA Batteries (4-pack),1,3.84,03/07/19 07:48,"344 2nd St, Austin, TX 73301" -172851,Wired Headphones,1,11.99,03/19/19 17:11,"821 Spruce St, San Francisco, CA 94016" -172852,Lightning Charging Cable,1,14.95,03/23/19 03:03,"339 Forest St, San Francisco, CA 94016" -172853,AAA Batteries (4-pack),1,2.99,03/06/19 10:02,"163 Highland St, Dallas, TX 75001" -172854,Wired Headphones,1,11.99,03/14/19 15:26,"979 2nd St, Atlanta, GA 30301" -172855,27in 4K Gaming Monitor,1,389.99,03/23/19 15:23,"208 Sunset St, San Francisco, CA 94016" -172856,AA Batteries (4-pack),2,3.84,03/07/19 17:17,"934 4th St, Portland, OR 97035" -172857,Lightning Charging Cable,1,14.95,03/29/19 17:51,"439 Willow St, Boston, MA 02215" -172858,AAA Batteries (4-pack),1,2.99,03/03/19 11:30,"318 Meadow St, New York City, NY 10001" -172859,USB-C Charging Cable,1,11.95,03/18/19 10:59,"249 River St, Boston, MA 02215" -172860,iPhone,1,700,03/15/19 03:45,"408 Maple St, Boston, MA 02215" -172861,Vareebadd Phone,1,400,03/06/19 11:42,"212 Lake St, Boston, MA 02215" -172861,Wired Headphones,2,11.99,03/06/19 11:42,"212 Lake St, Boston, MA 02215" -172862,Apple Airpods Headphones,1,150,03/26/19 10:15,"493 Johnson St, San Francisco, CA 94016" -172863,AAA Batteries (4-pack),1,2.99,03/09/19 17:35,"589 Jefferson St, Boston, MA 02215" -172864,Apple Airpods Headphones,1,150,03/23/19 08:02,"308 Chestnut St, San Francisco, CA 94016" -172865,20in Monitor,1,109.99,03/22/19 00:14,"347 10th St, Los Angeles, CA 90001" -172866,iPhone,1,700,03/27/19 20:07,"765 9th St, Los Angeles, CA 90001" -172867,Apple Airpods Headphones,1,150,03/19/19 23:25,"823 Walnut St, Boston, MA 02215" -172867,Google Phone,1,600,03/19/19 23:25,"823 Walnut St, Boston, MA 02215" -172868,Google Phone,1,600,03/24/19 01:43,"692 6th St, Dallas, TX 75001" -172869,USB-C Charging Cable,1,11.95,03/07/19 07:34,"738 Lake St, Seattle, WA 98101" -172870,Bose SoundSport Headphones,1,99.99,03/27/19 10:05,"191 10th St, Portland, OR 97035" -172871,Bose SoundSport Headphones,1,99.99,03/14/19 12:43,"597 6th St, New York City, NY 10001" -172872,Wired Headphones,1,11.99,03/11/19 15:48,"755 6th St, New York City, NY 10001" -172873,27in FHD Monitor,1,149.99,03/02/19 19:32,"144 Jefferson St, San Francisco, CA 94016" -172874,Apple Airpods Headphones,1,150,03/03/19 10:33,"552 2nd St, Atlanta, GA 30301" -172875,Macbook Pro Laptop,1,1700,03/02/19 22:07,"306 Spruce St, Los Angeles, CA 90001" -172876,iPhone,1,700,03/02/19 06:40,"972 Center St, Austin, TX 73301" -172877,Wired Headphones,1,11.99,03/29/19 20:16,"972 10th St, Los Angeles, CA 90001" -172878,20in Monitor,1,109.99,03/25/19 02:11,"69 Madison St, New York City, NY 10001" -172879,20in Monitor,1,109.99,03/04/19 15:17,"970 12th St, Atlanta, GA 30301" -172880,AA Batteries (4-pack),1,3.84,03/18/19 10:25,"541 Adams St, Portland, OR 97035" -172881,AAA Batteries (4-pack),1,2.99,03/04/19 21:14,"999 14th St, Seattle, WA 98101" -172882,AA Batteries (4-pack),2,3.84,03/16/19 20:56,"868 Washington St, Dallas, TX 75001" -172883,Apple Airpods Headphones,1,150,03/28/19 12:54,"587 7th St, Austin, TX 73301" -172884,Apple Airpods Headphones,1,150,03/08/19 15:49,"894 Highland St, Dallas, TX 75001" -172885,Wired Headphones,1,11.99,03/03/19 09:41,"916 Willow St, Dallas, TX 75001" -172886,Apple Airpods Headphones,1,150,03/16/19 16:24,"849 Sunset St, Seattle, WA 98101" -172887,Lightning Charging Cable,1,14.95,03/28/19 23:35,"200 Washington St, Austin, TX 73301" -172888,Google Phone,1,600,03/03/19 14:45,"656 Hickory St, San Francisco, CA 94016" -172889,iPhone,1,700,03/15/19 14:57,"10 Dogwood St, Seattle, WA 98101" -172890,USB-C Charging Cable,1,11.95,03/14/19 10:07,"224 Willow St, Boston, MA 02215" -172891,AAA Batteries (4-pack),1,2.99,03/16/19 21:30,"931 Highland St, New York City, NY 10001" -172892,Vareebadd Phone,1,400,03/30/19 20:38,"511 13th St, Dallas, TX 75001" -172892,Bose SoundSport Headphones,1,99.99,03/30/19 20:38,"511 13th St, Dallas, TX 75001" -172893,Lightning Charging Cable,1,14.95,03/05/19 13:59,"323 Chestnut St, San Francisco, CA 94016" -172894,USB-C Charging Cable,1,11.95,03/01/19 16:45,"862 Center St, San Francisco, CA 94016" -172895,Wired Headphones,2,11.99,03/22/19 13:03,"383 North St, San Francisco, CA 94016" -172896,34in Ultrawide Monitor,1,379.99,03/22/19 12:58,"182 Ridge St, Atlanta, GA 30301" -172897,AAA Batteries (4-pack),1,2.99,03/04/19 14:34,"448 Madison St, New York City, NY 10001" -172898,iPhone,1,700,03/12/19 15:19,"140 12th St, Los Angeles, CA 90001" -172898,Lightning Charging Cable,1,14.95,03/12/19 15:19,"140 12th St, Los Angeles, CA 90001" -172899,AAA Batteries (4-pack),1,2.99,03/21/19 11:33,"322 9th St, San Francisco, CA 94016" -172900,27in 4K Gaming Monitor,1,389.99,03/15/19 19:58,"808 5th St, New York City, NY 10001" -172901,AAA Batteries (4-pack),1,2.99,03/25/19 20:44,"808 11th St, San Francisco, CA 94016" -172902,Lightning Charging Cable,1,14.95,03/26/19 18:20,"339 Chestnut St, San Francisco, CA 94016" -172903,27in FHD Monitor,1,149.99,03/11/19 06:48,"850 Elm St, Austin, TX 73301" -172904,AAA Batteries (4-pack),1,2.99,03/02/19 13:51,"746 Madison St, Los Angeles, CA 90001" -172905,USB-C Charging Cable,1,11.95,03/19/19 21:46,"601 Maple St, San Francisco, CA 94016" -172906,Bose SoundSport Headphones,1,99.99,03/04/19 07:01,"8 5th St, San Francisco, CA 94016" -172907,Apple Airpods Headphones,1,150,03/28/19 10:11,"749 Pine St, San Francisco, CA 94016" -172908,USB-C Charging Cable,1,11.95,03/17/19 11:57,"857 Main St, San Francisco, CA 94016" -172909,AA Batteries (4-pack),1,3.84,03/09/19 22:57,"660 Willow St, New York City, NY 10001" -172910,Apple Airpods Headphones,1,150,03/21/19 10:43,"661 4th St, San Francisco, CA 94016" -172911,Apple Airpods Headphones,1,150,03/21/19 10:46,"379 6th St, Seattle, WA 98101" -172912,iPhone,1,700,03/06/19 07:43,"656 Main St, San Francisco, CA 94016" -172912,Lightning Charging Cable,1,14.95,03/06/19 07:43,"656 Main St, San Francisco, CA 94016" -172913,Lightning Charging Cable,1,14.95,03/11/19 12:27,"288 Washington St, San Francisco, CA 94016" -172914,27in 4K Gaming Monitor,1,389.99,03/08/19 22:45,"295 Cherry St, New York City, NY 10001" -172915,Lightning Charging Cable,1,14.95,03/28/19 15:52,"191 Jackson St, Austin, TX 73301" -172916,Macbook Pro Laptop,1,1700,03/23/19 04:15,"159 Dogwood St, Boston, MA 02215" -172917,Google Phone,1,600,03/13/19 16:18,"896 14th St, Los Angeles, CA 90001" -172918,USB-C Charging Cable,1,11.95,03/04/19 18:24,"771 Sunset St, Seattle, WA 98101" -172919,Bose SoundSport Headphones,1,99.99,03/04/19 13:17,"627 North St, Boston, MA 02215" -172920,AAA Batteries (4-pack),3,2.99,03/22/19 08:29,"737 Cherry St, Dallas, TX 75001" -172921,Lightning Charging Cable,1,14.95,03/23/19 20:28,"550 Hill St, Portland, OR 97035" -172922,AAA Batteries (4-pack),1,2.99,03/12/19 11:26,"903 Adams St, New York City, NY 10001" -172923,Google Phone,1,600,03/06/19 14:35,"472 Walnut St, Portland, OR 97035" -172924,AAA Batteries (4-pack),1,2.99,03/15/19 18:22,"541 Ridge St, New York City, NY 10001" -172925,Lightning Charging Cable,1,14.95,03/11/19 15:02,"813 Main St, Portland, OR 97035" -172926,Lightning Charging Cable,1,14.95,03/31/19 17:46,"600 Highland St, San Francisco, CA 94016" -172927,AAA Batteries (4-pack),1,2.99,03/27/19 19:51,"776 12th St, New York City, NY 10001" -172928,34in Ultrawide Monitor,1,379.99,03/23/19 17:47,"294 Walnut St, San Francisco, CA 94016" -172929,AA Batteries (4-pack),1,3.84,03/24/19 11:03,"86 Willow St, Portland, OR 97035" -172930,Bose SoundSport Headphones,1,99.99,03/05/19 10:36,"95 4th St, Los Angeles, CA 90001" -172931,Wired Headphones,1,11.99,03/31/19 13:29,"132 13th St, Seattle, WA 98101" -172932,Lightning Charging Cable,1,14.95,03/01/19 08:22,"449 Madison St, Boston, MA 02215" -172933,Wired Headphones,1,11.99,03/04/19 14:49,"975 13th St, Los Angeles, CA 90001" -172934,Google Phone,1,600,03/23/19 20:07,"170 Hickory St, New York City, NY 10001" -172935,iPhone,1,700,03/05/19 17:48,"969 11th St, Seattle, WA 98101" -172935,Apple Airpods Headphones,1,150,03/05/19 17:48,"969 11th St, Seattle, WA 98101" -172936,Wired Headphones,1,11.99,03/13/19 17:01,"663 Sunset St, Boston, MA 02215" -172937,USB-C Charging Cable,1,11.95,03/11/19 17:49,"93 10th St, San Francisco, CA 94016" -172938,27in FHD Monitor,1,149.99,03/30/19 20:10,"397 Adams St, Los Angeles, CA 90001" -172939,Apple Airpods Headphones,1,150,03/31/19 05:10,"546 4th St, New York City, NY 10001" -172940,AA Batteries (4-pack),1,3.84,03/11/19 11:40,"68 2nd St, Los Angeles, CA 90001" -172941,Lightning Charging Cable,1,14.95,03/29/19 18:30,"152 14th St, San Francisco, CA 94016" -172942,AA Batteries (4-pack),1,3.84,03/09/19 12:23,"858 8th St, San Francisco, CA 94016" -172943,AAA Batteries (4-pack),1,2.99,03/17/19 18:06,"313 Pine St, San Francisco, CA 94016" -172944,iPhone,1,700,03/09/19 22:43,"603 Church St, San Francisco, CA 94016" -172945,Lightning Charging Cable,1,14.95,03/10/19 10:29,"705 Lake St, New York City, NY 10001" -172946,USB-C Charging Cable,1,11.95,03/11/19 19:28,"209 4th St, Atlanta, GA 30301" -172947,Lightning Charging Cable,1,14.95,03/02/19 11:43,"919 River St, Seattle, WA 98101" -172948,Wired Headphones,1,11.99,03/05/19 12:07,"567 Hickory St, San Francisco, CA 94016" -172949,ThinkPad Laptop,1,999.99,03/30/19 12:44,"848 10th St, New York City, NY 10001" -172950,AA Batteries (4-pack),1,3.84,03/25/19 16:45,"603 13th St, Austin, TX 73301" -172951,AAA Batteries (4-pack),1,2.99,03/26/19 12:32,"317 11th St, San Francisco, CA 94016" -172952,Bose SoundSport Headphones,1,99.99,03/22/19 08:18,"346 Jefferson St, New York City, NY 10001" -172953,AA Batteries (4-pack),1,3.84,03/25/19 18:42,"809 9th St, Los Angeles, CA 90001" -172954,34in Ultrawide Monitor,1,379.99,03/13/19 07:15,"500 Madison St, Atlanta, GA 30301" -172955,Wired Headphones,1,11.99,03/28/19 13:06,"149 Jackson St, San Francisco, CA 94016" -172956,USB-C Charging Cable,1,11.95,03/16/19 12:08,"989 Spruce St, Atlanta, GA 30301" -172957,Wired Headphones,1,11.99,03/17/19 15:54,"370 Meadow St, New York City, NY 10001" -172958,27in 4K Gaming Monitor,1,389.99,03/09/19 19:44,"471 2nd St, New York City, NY 10001" -172959,Wired Headphones,1,11.99,03/23/19 18:20,"351 Madison St, Los Angeles, CA 90001" -172960,Lightning Charging Cable,2,14.95,03/03/19 12:25,"612 Cherry St, Los Angeles, CA 90001" -172961,Google Phone,1,600,03/08/19 14:10,"605 South St, Los Angeles, CA 90001" -172962,Apple Airpods Headphones,1,150,03/26/19 15:10,"488 Chestnut St, San Francisco, CA 94016" -172963,USB-C Charging Cable,1,11.95,03/07/19 23:09,"140 6th St, Seattle, WA 98101" -172964,Wired Headphones,1,11.99,03/20/19 23:01,"519 North St, Los Angeles, CA 90001" -172965,AA Batteries (4-pack),2,3.84,03/24/19 18:10,"631 13th St, San Francisco, CA 94016" -172966,Apple Airpods Headphones,1,150,03/10/19 13:51,"826 Ridge St, Los Angeles, CA 90001" -172967,USB-C Charging Cable,1,11.95,03/15/19 14:33,"916 Madison St, San Francisco, CA 94016" -172968,Bose SoundSport Headphones,1,99.99,03/19/19 20:34,"546 Wilson St, San Francisco, CA 94016" -172969,Flatscreen TV,1,300,03/08/19 13:42,"887 Cedar St, San Francisco, CA 94016" -172970,USB-C Charging Cable,1,11.95,03/19/19 17:45,"171 14th St, Portland, OR 97035" -172971,AAA Batteries (4-pack),1,2.99,03/06/19 14:33,"610 7th St, New York City, NY 10001" -172972,34in Ultrawide Monitor,1,379.99,03/01/19 08:04,"92 Church St, New York City, NY 10001" -172973,USB-C Charging Cable,1,11.95,03/27/19 20:57,"72 Cherry St, Portland, OR 97035" -172974,AA Batteries (4-pack),1,3.84,03/16/19 12:18,"803 Park St, Dallas, TX 75001" -172975,Wired Headphones,1,11.99,03/30/19 09:45,"295 Highland St, New York City, NY 10001" -172976,iPhone,1,700,03/07/19 17:15,"659 South St, San Francisco, CA 94016" -172977,27in FHD Monitor,1,149.99,03/15/19 22:24,"415 12th St, Boston, MA 02215" -172978,Lightning Charging Cable,1,14.95,03/29/19 12:34,"550 Lake St, Boston, MA 02215" -172979,Lightning Charging Cable,1,14.95,03/14/19 14:43,"953 Elm St, San Francisco, CA 94016" -172980,Lightning Charging Cable,1,14.95,03/01/19 11:14,"279 4th St, Boston, MA 02215" -172981,Lightning Charging Cable,1,14.95,03/11/19 13:37,"528 Church St, Los Angeles, CA 90001" -172982,Apple Airpods Headphones,1,150,03/28/19 07:45,"819 Jackson St, Boston, MA 02215" -172983,AA Batteries (4-pack),1,3.84,03/22/19 10:37,"480 4th St, San Francisco, CA 94016" -172984,27in 4K Gaming Monitor,1,389.99,03/09/19 17:16,"497 Cedar St, San Francisco, CA 94016" -172985,AA Batteries (4-pack),1,3.84,03/09/19 20:58,"671 South St, Dallas, TX 75001" -172986,USB-C Charging Cable,1,11.95,03/14/19 00:13,"462 South St, New York City, NY 10001" -,,,,, -172987,Wired Headphones,1,11.99,03/02/19 11:29,"981 South St, Los Angeles, CA 90001" -172988,27in 4K Gaming Monitor,1,389.99,03/31/19 14:25,"297 1st St, New York City, NY 10001" -172989,Apple Airpods Headphones,1,150,03/09/19 11:36,"543 7th St, Dallas, TX 75001" -172990,AA Batteries (4-pack),2,3.84,03/18/19 16:28,"772 11th St, San Francisco, CA 94016" -172991,Lightning Charging Cable,1,14.95,03/19/19 01:38,"217 Cherry St, San Francisco, CA 94016" -172992,Lightning Charging Cable,1,14.95,03/24/19 15:51,"602 Cedar St, San Francisco, CA 94016" -172993,Lightning Charging Cable,1,14.95,03/20/19 20:26,"456 Hickory St, Portland, OR 97035" -172994,AAA Batteries (4-pack),1,2.99,03/26/19 10:32,"994 5th St, Dallas, TX 75001" -172995,USB-C Charging Cable,1,11.95,03/02/19 14:05,"241 Walnut St, Los Angeles, CA 90001" -172996,Lightning Charging Cable,1,14.95,03/20/19 11:06,"926 Hickory St, New York City, NY 10001" -172997,Apple Airpods Headphones,1,150,03/03/19 18:49,"115 North St, New York City, NY 10001" -172998,Lightning Charging Cable,1,14.95,03/14/19 17:23,"970 Sunset St, Austin, TX 73301" -172999,AA Batteries (4-pack),1,3.84,03/05/19 20:43,"211 Lakeview St, Boston, MA 02215" -173000,27in 4K Gaming Monitor,1,389.99,03/06/19 23:28,"155 Lake St, San Francisco, CA 94016" -173001,20in Monitor,1,109.99,03/21/19 01:10,"670 8th St, New York City, NY 10001" -173002,Vareebadd Phone,1,400,03/07/19 05:32,"235 West St, Los Angeles, CA 90001" -173002,Wired Headphones,1,11.99,03/07/19 05:32,"235 West St, Los Angeles, CA 90001" -173003,34in Ultrawide Monitor,1,379.99,03/16/19 16:33,"222 Spruce St, New York City, NY 10001" -173004,AAA Batteries (4-pack),1,2.99,03/01/19 20:57,"628 Jackson St, Seattle, WA 98101" -173005,Lightning Charging Cable,1,14.95,03/25/19 12:38,"227 Elm St, Boston, MA 02215" -173006,Bose SoundSport Headphones,1,99.99,03/21/19 16:44,"166 West St, New York City, NY 10001" -173007,Flatscreen TV,1,300,03/02/19 08:53,"856 Washington St, New York City, NY 10001" -173008,AA Batteries (4-pack),1,3.84,03/18/19 10:33,"580 12th St, Atlanta, GA 30301" -173009,Apple Airpods Headphones,1,150,03/01/19 19:46,"142 Spruce St, San Francisco, CA 94016" -173010,Macbook Pro Laptop,1,1700,03/26/19 20:19,"222 West St, Seattle, WA 98101" -173011,AA Batteries (4-pack),3,3.84,03/02/19 15:42,"18 Chestnut St, Seattle, WA 98101" -173012,20in Monitor,1,109.99,03/04/19 13:32,"189 Center St, Seattle, WA 98101" -173013,Flatscreen TV,1,300,03/21/19 23:52,"670 Washington St, San Francisco, CA 94016" -173014,Google Phone,1,600,03/12/19 11:23,"44 Cedar St, Boston, MA 02215" -173015,Lightning Charging Cable,2,14.95,03/05/19 12:20,"567 Lake St, San Francisco, CA 94016" -173016,AA Batteries (4-pack),2,3.84,03/10/19 12:08,"355 8th St, Seattle, WA 98101" -173017,Apple Airpods Headphones,1,150,03/10/19 02:04,"804 Meadow St, Austin, TX 73301" -173018,Lightning Charging Cable,1,14.95,03/30/19 09:47,"497 Lincoln St, Portland, OR 97035" -173019,AA Batteries (4-pack),2,3.84,03/06/19 15:43,"338 Willow St, San Francisco, CA 94016" -173020,Bose SoundSport Headphones,1,99.99,03/25/19 16:30,"429 Willow St, New York City, NY 10001" -173021,Flatscreen TV,1,300,03/25/19 20:05,"595 Walnut St, New York City, NY 10001" -173022,USB-C Charging Cable,1,11.95,03/14/19 16:26,"2 West St, Los Angeles, CA 90001" -173023,Lightning Charging Cable,2,14.95,03/09/19 09:49,"159 13th St, Austin, TX 73301" -173024,Lightning Charging Cable,1,14.95,03/23/19 16:14,"611 Hickory St, Atlanta, GA 30301" -173025,Lightning Charging Cable,1,14.95,03/22/19 20:16,"203 Elm St, Los Angeles, CA 90001" -173026,Wired Headphones,1,11.99,03/13/19 05:16,"341 West St, Dallas, TX 75001" -173027,Lightning Charging Cable,1,14.95,03/06/19 12:10,"784 Ridge St, Dallas, TX 75001" -173028,Wired Headphones,1,11.99,03/16/19 13:47,"595 Highland St, New York City, NY 10001" -173029,Google Phone,1,600,03/11/19 19:34,"566 Lakeview St, Los Angeles, CA 90001" -173030,ThinkPad Laptop,1,999.99,03/28/19 23:56,"370 Madison St, Boston, MA 02215" -173031,Bose SoundSport Headphones,1,99.99,03/10/19 20:12,"783 River St, New York City, NY 10001" -173032,Wired Headphones,1,11.99,03/11/19 07:47,"239 Johnson St, New York City, NY 10001" -173033,Apple Airpods Headphones,1,150,03/04/19 17:29,"950 10th St, Austin, TX 73301" -173034,USB-C Charging Cable,1,11.95,03/23/19 23:52,"479 Jackson St, Los Angeles, CA 90001" -173035,AAA Batteries (4-pack),1,2.99,03/01/19 21:05,"623 4th St, San Francisco, CA 94016" -173036,AAA Batteries (4-pack),3,2.99,03/08/19 14:19,"587 Forest St, Portland, ME 04101" -173037,Bose SoundSport Headphones,1,99.99,03/31/19 13:08,"934 Willow St, San Francisco, CA 94016" -173038,Lightning Charging Cable,1,14.95,03/11/19 10:45,"463 Cedar St, San Francisco, CA 94016" -173039,Lightning Charging Cable,1,14.95,03/30/19 08:50,"764 Hill St, San Francisco, CA 94016" -173040,USB-C Charging Cable,1,11.95,03/24/19 18:03,"969 Johnson St, Seattle, WA 98101" -173041,Lightning Charging Cable,1,14.95,03/06/19 22:15,"716 Highland St, San Francisco, CA 94016" -173042,27in 4K Gaming Monitor,1,389.99,03/31/19 22:38,"815 13th St, Austin, TX 73301" -173043,Wired Headphones,1,11.99,03/23/19 13:16,"457 Center St, Boston, MA 02215" -173044,27in FHD Monitor,1,149.99,03/22/19 19:10,"591 2nd St, San Francisco, CA 94016" -173045,27in FHD Monitor,1,149.99,03/05/19 19:44,"68 Madison St, Los Angeles, CA 90001" -173046,27in FHD Monitor,1,149.99,03/03/19 18:18,"872 7th St, Los Angeles, CA 90001" -173047,USB-C Charging Cable,1,11.95,03/08/19 18:02,"228 6th St, Seattle, WA 98101" -173048,Wired Headphones,1,11.99,03/16/19 20:31,"346 Cedar St, Los Angeles, CA 90001" -173049,Bose SoundSport Headphones,1,99.99,03/13/19 09:07,"329 6th St, Austin, TX 73301" -173050,AA Batteries (4-pack),1,3.84,03/15/19 22:08,"651 Madison St, Seattle, WA 98101" -173051,USB-C Charging Cable,1,11.95,03/19/19 10:26,"984 10th St, New York City, NY 10001" -173052,27in FHD Monitor,1,149.99,03/16/19 09:32,"889 Main St, Austin, TX 73301" -173053,Flatscreen TV,1,300,03/16/19 22:16,"767 Cherry St, Boston, MA 02215" -,,,,, -173054,ThinkPad Laptop,1,999.99,03/30/19 20:21,"78 Spruce St, Portland, OR 97035" -173055,Apple Airpods Headphones,1,150,03/23/19 15:33,"269 1st St, New York City, NY 10001" -173055,Wired Headphones,1,11.99,03/23/19 15:33,"269 1st St, New York City, NY 10001" -173056,AA Batteries (4-pack),3,3.84,03/12/19 19:22,"421 9th St, Atlanta, GA 30301" -173056,Wired Headphones,1,11.99,03/12/19 19:22,"421 9th St, Atlanta, GA 30301" -173057,iPhone,1,700,03/01/19 05:40,"256 1st St, Atlanta, GA 30301" -173058,Bose SoundSport Headphones,1,99.99,03/10/19 15:52,"474 14th St, San Francisco, CA 94016" -173059,Bose SoundSport Headphones,1,99.99,03/03/19 10:30,"705 12th St, Portland, OR 97035" -173060,USB-C Charging Cable,1,11.95,03/09/19 14:09,"704 Pine St, Seattle, WA 98101" -173061,AA Batteries (4-pack),2,3.84,03/03/19 13:09,"520 Washington St, New York City, NY 10001" -173062,AAA Batteries (4-pack),1,2.99,03/02/19 09:50,"933 2nd St, San Francisco, CA 94016" -173063,Wired Headphones,2,11.99,03/25/19 15:07,"355 North St, San Francisco, CA 94016" -173064,27in FHD Monitor,1,149.99,03/08/19 23:59,"982 Cedar St, San Francisco, CA 94016" -173065,AAA Batteries (4-pack),2,2.99,03/23/19 21:59,"101 Jackson St, Atlanta, GA 30301" -173066,Vareebadd Phone,1,400,03/11/19 13:50,"380 10th St, New York City, NY 10001" -173066,USB-C Charging Cable,1,11.95,03/11/19 13:50,"380 10th St, New York City, NY 10001" -173066,Wired Headphones,1,11.99,03/11/19 13:50,"380 10th St, New York City, NY 10001" -173067,Bose SoundSport Headphones,1,99.99,03/13/19 17:55,"771 Cedar St, Los Angeles, CA 90001" -173068,AAA Batteries (4-pack),1,2.99,03/04/19 09:08,"266 West St, San Francisco, CA 94016" -173069,27in FHD Monitor,1,149.99,03/01/19 13:34,"571 13th St, New York City, NY 10001" -173070,Lightning Charging Cable,2,14.95,03/22/19 16:09,"977 Highland St, Atlanta, GA 30301" -173071,AAA Batteries (4-pack),2,2.99,03/03/19 18:49,"188 Chestnut St, New York City, NY 10001" -173072,Bose SoundSport Headphones,1,99.99,03/30/19 14:38,"875 Hill St, Boston, MA 02215" -173073,Wired Headphones,1,11.99,03/17/19 05:51,"903 Cedar St, Portland, OR 97035" -173074,AA Batteries (4-pack),1,3.84,03/24/19 18:22,"620 Sunset St, Austin, TX 73301" -173075,AAA Batteries (4-pack),2,2.99,03/11/19 18:35,"758 Highland St, New York City, NY 10001" -173076,AAA Batteries (4-pack),2,2.99,03/29/19 16:48,"129 Madison St, New York City, NY 10001" -173077,USB-C Charging Cable,1,11.95,03/26/19 07:10,"268 8th St, San Francisco, CA 94016" -173078,USB-C Charging Cable,1,11.95,03/03/19 09:54,"512 14th St, Portland, OR 97035" -173079,Apple Airpods Headphones,1,150,03/21/19 20:30,"542 Lakeview St, Dallas, TX 75001" -173080,Lightning Charging Cable,1,14.95,03/11/19 12:09,"533 Jackson St, Los Angeles, CA 90001" -173081,Apple Airpods Headphones,1,150,03/26/19 21:22,"771 9th St, Dallas, TX 75001" -173082,Wired Headphones,1,11.99,03/30/19 19:37,"774 Hill St, Los Angeles, CA 90001" -173083,Bose SoundSport Headphones,1,99.99,03/29/19 17:36,"682 8th St, Los Angeles, CA 90001" -173084,iPhone,1,700,03/04/19 22:40,"289 7th St, Atlanta, GA 30301" -173084,Lightning Charging Cable,1,14.95,03/04/19 22:40,"289 7th St, Atlanta, GA 30301" -173085,Wired Headphones,1,11.99,03/21/19 08:30,"537 Lakeview St, Portland, OR 97035" -173086,Lightning Charging Cable,1,14.95,03/07/19 12:06,"870 Forest St, Los Angeles, CA 90001" -173086,34in Ultrawide Monitor,1,379.99,03/07/19 12:06,"870 Forest St, Los Angeles, CA 90001" -173087,Lightning Charging Cable,1,14.95,03/06/19 21:05,"275 Jackson St, Los Angeles, CA 90001" -173088,Wired Headphones,1,11.99,03/23/19 17:20,"493 11th St, Dallas, TX 75001" -173089,USB-C Charging Cable,3,11.95,03/13/19 13:51,"209 Ridge St, Seattle, WA 98101" -173090,AAA Batteries (4-pack),1,2.99,03/31/19 00:07,"10 9th St, New York City, NY 10001" -173091,AA Batteries (4-pack),2,3.84,03/22/19 13:21,"368 Maple St, New York City, NY 10001" -173092,AAA Batteries (4-pack),1,2.99,03/24/19 12:14,"835 5th St, Los Angeles, CA 90001" -173093,34in Ultrawide Monitor,1,379.99,03/02/19 15:05,"882 Ridge St, Austin, TX 73301" -173094,AA Batteries (4-pack),1,3.84,03/31/19 22:03,"65 Maple St, Boston, MA 02215" -173095,AA Batteries (4-pack),4,3.84,03/22/19 22:53,"599 12th St, Austin, TX 73301" -173096,Apple Airpods Headphones,1,150,03/04/19 06:51,"526 2nd St, San Francisco, CA 94016" -173097,AAA Batteries (4-pack),1,2.99,03/06/19 16:12,"882 Maple St, Boston, MA 02215" -173098,Bose SoundSport Headphones,1,99.99,03/12/19 19:13,"567 Madison St, San Francisco, CA 94016" -173099,Apple Airpods Headphones,1,150,03/02/19 00:55,"673 Elm St, Los Angeles, CA 90001" -173100,USB-C Charging Cable,1,11.95,03/07/19 14:01,"992 Center St, San Francisco, CA 94016" -173101,Vareebadd Phone,1,400,03/09/19 12:46,"90 Lakeview St, Dallas, TX 75001" -173102,20in Monitor,1,109.99,03/25/19 14:27,"249 Lincoln St, New York City, NY 10001" -173103,Bose SoundSport Headphones,1,99.99,03/03/19 19:53,"336 Lake St, Boston, MA 02215" -173104,USB-C Charging Cable,1,11.95,03/26/19 14:41,"46 9th St, San Francisco, CA 94016" -173105,AAA Batteries (4-pack),2,2.99,03/24/19 18:56,"348 Meadow St, New York City, NY 10001" -173106,Lightning Charging Cable,1,14.95,03/04/19 11:30,"916 14th St, New York City, NY 10001" -173107,Lightning Charging Cable,1,14.95,03/21/19 14:13,"234 Washington St, New York City, NY 10001" -173108,Wired Headphones,2,11.99,03/05/19 16:17,"269 Highland St, Dallas, TX 75001" -173109,Apple Airpods Headphones,1,150,03/25/19 19:16,"27 Washington St, Boston, MA 02215" -173110,AA Batteries (4-pack),1,3.84,03/11/19 14:36,"411 Adams St, Austin, TX 73301" -173111,34in Ultrawide Monitor,1,379.99,03/06/19 07:22,"34 12th St, San Francisco, CA 94016" -173112,ThinkPad Laptop,1,999.99,03/01/19 15:31,"457 Forest St, New York City, NY 10001" -173113,AAA Batteries (4-pack),2,2.99,03/18/19 16:52,"999 Church St, San Francisco, CA 94016" -173114,AA Batteries (4-pack),2,3.84,03/15/19 12:12,"33 7th St, San Francisco, CA 94016" -173115,Flatscreen TV,1,300,03/13/19 09:02,"420 12th St, Seattle, WA 98101" -173116,AA Batteries (4-pack),1,3.84,03/01/19 06:45,"61 8th St, San Francisco, CA 94016" -173117,Apple Airpods Headphones,1,150,03/07/19 20:33,"5 Forest St, Seattle, WA 98101" -173118,Apple Airpods Headphones,1,150,03/04/19 07:45,"197 Lake St, Seattle, WA 98101" -173118,27in FHD Monitor,1,149.99,03/04/19 07:45,"197 Lake St, Seattle, WA 98101" -173119,27in FHD Monitor,1,149.99,03/07/19 18:46,"148 7th St, New York City, NY 10001" -173120,27in 4K Gaming Monitor,1,389.99,03/01/19 10:41,"551 West St, Seattle, WA 98101" -173121,20in Monitor,1,109.99,03/28/19 19:29,"889 Cedar St, Atlanta, GA 30301" -173122,USB-C Charging Cable,2,11.95,03/19/19 18:49,"553 9th St, Los Angeles, CA 90001" -173123,USB-C Charging Cable,1,11.95,03/10/19 07:45,"912 Lakeview St, Boston, MA 02215" -173124,AA Batteries (4-pack),1,3.84,03/19/19 11:10,"159 9th St, New York City, NY 10001" -173125,Wired Headphones,1,11.99,03/25/19 04:14,"469 River St, Seattle, WA 98101" -173126,USB-C Charging Cable,1,11.95,03/01/19 14:10,"62 Adams St, Boston, MA 02215" -173127,Bose SoundSport Headphones,1,99.99,03/18/19 16:54,"478 6th St, San Francisco, CA 94016" -173128,Macbook Pro Laptop,1,1700,03/02/19 14:45,"86 Chestnut St, Los Angeles, CA 90001" -173129,Apple Airpods Headphones,1,150,03/11/19 01:06,"734 Cedar St, Dallas, TX 75001" -173130,AAA Batteries (4-pack),1,2.99,03/29/19 15:11,"436 Ridge St, Los Angeles, CA 90001" -173131,AA Batteries (4-pack),1,3.84,03/26/19 13:02,"456 Church St, San Francisco, CA 94016" -173132,Apple Airpods Headphones,1,150,03/23/19 08:49,"615 Center St, San Francisco, CA 94016" -173133,Apple Airpods Headphones,1,150,03/15/19 21:19,"481 Jackson St, Boston, MA 02215" -173134,27in 4K Gaming Monitor,1,389.99,03/11/19 19:55,"205 Elm St, Los Angeles, CA 90001" -173134,Lightning Charging Cable,1,14.95,03/11/19 19:55,"205 Elm St, Los Angeles, CA 90001" -173135,Lightning Charging Cable,2,14.95,03/21/19 23:34,"711 12th St, Seattle, WA 98101" -173136,AAA Batteries (4-pack),6,2.99,03/25/19 04:51,"759 10th St, New York City, NY 10001" -173137,Bose SoundSport Headphones,1,99.99,03/15/19 21:14,"35 7th St, Portland, OR 97035" -173138,USB-C Charging Cable,1,11.95,03/25/19 15:14,"624 7th St, Los Angeles, CA 90001" -173139,Google Phone,1,600,03/11/19 22:09,"593 Willow St, San Francisco, CA 94016" -173139,USB-C Charging Cable,1,11.95,03/11/19 22:09,"593 Willow St, San Francisco, CA 94016" -173140,Lightning Charging Cable,1,14.95,03/02/19 20:43,"902 Dogwood St, Atlanta, GA 30301" -173141,Bose SoundSport Headphones,1,99.99,03/03/19 18:51,"431 Park St, San Francisco, CA 94016" -173142,Lightning Charging Cable,1,14.95,03/08/19 18:46,"652 Hickory St, Portland, OR 97035" -173143,27in 4K Gaming Monitor,1,389.99,03/04/19 12:07,"272 Cherry St, San Francisco, CA 94016" -173144,ThinkPad Laptop,1,999.99,03/23/19 20:54,"540 2nd St, Portland, OR 97035" -173145,Bose SoundSport Headphones,1,99.99,03/24/19 11:03,"899 Pine St, Boston, MA 02215" -173146,USB-C Charging Cable,2,11.95,03/14/19 12:26,"358 Dogwood St, San Francisco, CA 94016" -173147,Bose SoundSport Headphones,1,99.99,03/09/19 12:04,"602 Center St, Los Angeles, CA 90001" -173148,USB-C Charging Cable,1,11.95,03/26/19 22:56,"714 Dogwood St, Los Angeles, CA 90001" -173149,Macbook Pro Laptop,1,1700,03/26/19 17:34,"705 Center St, Boston, MA 02215" -173150,Lightning Charging Cable,1,14.95,03/03/19 23:11,"13 10th St, Portland, ME 04101" -173151,Lightning Charging Cable,1,14.95,03/31/19 14:29,"638 Ridge St, San Francisco, CA 94016" -173152,Lightning Charging Cable,1,14.95,03/25/19 11:52,"493 2nd St, San Francisco, CA 94016" -173153,ThinkPad Laptop,1,999.99,03/29/19 22:26,"409 South St, Seattle, WA 98101" -173154,AA Batteries (4-pack),1,3.84,03/12/19 20:00,"197 Walnut St, New York City, NY 10001" -173155,27in FHD Monitor,1,149.99,03/04/19 20:15,"2 Jefferson St, San Francisco, CA 94016" -173156,USB-C Charging Cable,1,11.95,03/12/19 17:38,"969 10th St, Los Angeles, CA 90001" -173157,Wired Headphones,1,11.99,03/22/19 13:11,"195 10th St, New York City, NY 10001" -173158,Macbook Pro Laptop,1,1700,03/22/19 19:48,"339 Lake St, San Francisco, CA 94016" -173159,USB-C Charging Cable,1,11.95,03/02/19 18:52,"592 Lincoln St, New York City, NY 10001" -173160,Flatscreen TV,1,300,03/29/19 21:16,"394 Chestnut St, Portland, ME 04101" -173161,Bose SoundSport Headphones,1,99.99,03/13/19 15:57,"582 Park St, Los Angeles, CA 90001" -173162,ThinkPad Laptop,1,999.99,03/31/19 21:18,"960 Highland St, New York City, NY 10001" -173163,Lightning Charging Cable,1,14.95,03/07/19 22:53,"220 River St, San Francisco, CA 94016" -173164,Flatscreen TV,1,300,03/24/19 11:30,"171 Washington St, Los Angeles, CA 90001" -173165,27in 4K Gaming Monitor,1,389.99,03/13/19 20:10,"627 Washington St, Dallas, TX 75001" -173166,Wired Headphones,1,11.99,03/16/19 21:39,"484 Washington St, Portland, ME 04101" -173167,AAA Batteries (4-pack),1,2.99,03/03/19 20:42,"997 Lake St, Los Angeles, CA 90001" -173168,Lightning Charging Cable,1,14.95,03/11/19 20:42,"579 South St, Boston, MA 02215" -173169,AAA Batteries (4-pack),1,2.99,03/24/19 10:55,"947 Church St, Portland, OR 97035" -173170,27in 4K Gaming Monitor,1,389.99,03/10/19 17:34,"305 Willow St, San Francisco, CA 94016" -173171,Apple Airpods Headphones,1,150,03/21/19 17:58,"956 7th St, Portland, OR 97035" -173172,Bose SoundSport Headphones,1,99.99,03/26/19 19:01,"908 Sunset St, Boston, MA 02215" -173173,ThinkPad Laptop,1,999.99,03/06/19 06:17,"938 Johnson St, Los Angeles, CA 90001" -173174,27in 4K Gaming Monitor,1,389.99,03/19/19 22:30,"385 Willow St, Seattle, WA 98101" -173175,34in Ultrawide Monitor,1,379.99,03/06/19 18:55,"914 11th St, Austin, TX 73301" -173176,Lightning Charging Cable,1,14.95,03/21/19 11:03,"770 9th St, New York City, NY 10001" -173177,USB-C Charging Cable,1,11.95,03/24/19 15:21,"787 North St, Dallas, TX 75001" -173178,Bose SoundSport Headphones,1,99.99,03/07/19 14:03,"828 6th St, San Francisco, CA 94016" -173179,Apple Airpods Headphones,1,150,03/14/19 22:08,"68 7th St, Portland, OR 97035" -173179,AA Batteries (4-pack),2,3.84,03/14/19 22:08,"68 7th St, Portland, OR 97035" -173180,Google Phone,1,600,03/15/19 18:36,"559 Dogwood St, Austin, TX 73301" -173181,34in Ultrawide Monitor,1,379.99,03/28/19 19:29,"894 Jefferson St, Dallas, TX 75001" -173182,Wired Headphones,1,11.99,03/05/19 12:29,"871 9th St, San Francisco, CA 94016" -173183,Wired Headphones,1,11.99,03/20/19 17:53,"712 Main St, Los Angeles, CA 90001" -173184,Wired Headphones,1,11.99,03/14/19 17:18,"577 North St, San Francisco, CA 94016" -173185,Bose SoundSport Headphones,1,99.99,03/18/19 20:29,"459 Hill St, New York City, NY 10001" -173186,AA Batteries (4-pack),1,3.84,03/13/19 11:18,"155 6th St, Atlanta, GA 30301" -173187,AA Batteries (4-pack),1,3.84,03/15/19 15:00,"436 Maple St, Portland, OR 97035" -173188,AA Batteries (4-pack),2,3.84,03/07/19 14:29,"272 Hickory St, New York City, NY 10001" -173189,Google Phone,1,600,03/20/19 11:47,"614 Johnson St, Portland, OR 97035" -173190,Apple Airpods Headphones,1,150,03/05/19 15:10,"839 Madison St, New York City, NY 10001" -173191,Apple Airpods Headphones,1,150,03/07/19 15:50,"46 9th St, Seattle, WA 98101" -173192,Apple Airpods Headphones,1,150,03/13/19 12:01,"990 Maple St, San Francisco, CA 94016" -173193,AA Batteries (4-pack),1,3.84,03/26/19 21:30,"509 10th St, Seattle, WA 98101" -173194,AAA Batteries (4-pack),3,2.99,03/17/19 23:33,"892 9th St, New York City, NY 10001" -173195,Wired Headphones,1,11.99,03/28/19 08:20,"379 Sunset St, New York City, NY 10001" -173196,Apple Airpods Headphones,1,150,03/12/19 10:13,"984 Lake St, Seattle, WA 98101" -173197,AA Batteries (4-pack),1,3.84,03/19/19 08:29,"717 6th St, Seattle, WA 98101" -173198,Wired Headphones,1,11.99,03/10/19 14:01,"66 Washington St, Seattle, WA 98101" -173199,USB-C Charging Cable,1,11.95,03/16/19 10:11,"490 Lincoln St, Dallas, TX 75001" -173200,Wired Headphones,1,11.99,03/14/19 03:55,"142 8th St, Los Angeles, CA 90001" -173201,USB-C Charging Cable,1,11.95,03/04/19 20:45,"163 Main St, Austin, TX 73301" -173202,AAA Batteries (4-pack),1,2.99,03/19/19 01:43,"968 Lake St, Austin, TX 73301" -173203,Wired Headphones,1,11.99,03/02/19 14:27,"650 Jackson St, Los Angeles, CA 90001" -173204,Wired Headphones,1,11.99,03/09/19 20:55,"366 Chestnut St, Los Angeles, CA 90001" -173205,iPhone,1,700,03/27/19 08:46,"227 Hickory St, Atlanta, GA 30301" -173206,Lightning Charging Cable,1,14.95,03/04/19 11:19,"837 Sunset St, Portland, OR 97035" -173207,Vareebadd Phone,1,400,03/05/19 22:07,"176 14th St, Los Angeles, CA 90001" -173208,Lightning Charging Cable,1,14.95,03/21/19 23:14,"385 2nd St, San Francisco, CA 94016" -173209,Bose SoundSport Headphones,1,99.99,03/09/19 17:16,"443 Maple St, Los Angeles, CA 90001" -173210,USB-C Charging Cable,1,11.95,03/18/19 14:44,"385 Spruce St, Portland, OR 97035" -173211,USB-C Charging Cable,1,11.95,03/12/19 14:35,"179 Cherry St, San Francisco, CA 94016" -173212,Wired Headphones,1,11.99,03/18/19 13:43,"619 Hill St, Portland, OR 97035" -173213,Wired Headphones,2,11.99,03/29/19 07:09,"853 Main St, Boston, MA 02215" -173214,AA Batteries (4-pack),1,3.84,03/20/19 18:01,"942 Maple St, San Francisco, CA 94016" -173215,ThinkPad Laptop,1,999.99,03/10/19 18:12,"815 Hill St, Atlanta, GA 30301" -173216,ThinkPad Laptop,1,999.99,03/07/19 12:43,"678 Lincoln St, Dallas, TX 75001" -173217,34in Ultrawide Monitor,1,379.99,03/14/19 00:14,"118 Hill St, San Francisco, CA 94016" -173218,USB-C Charging Cable,1,11.95,03/26/19 16:34,"19 Church St, Atlanta, GA 30301" -173219,AA Batteries (4-pack),3,3.84,03/07/19 23:19,"438 6th St, Atlanta, GA 30301" -173220,Bose SoundSport Headphones,1,99.99,03/03/19 17:17,"320 Main St, Los Angeles, CA 90001" -173221,Lightning Charging Cable,1,14.95,03/17/19 22:48,"309 Main St, Atlanta, GA 30301" -173222,Apple Airpods Headphones,1,150,03/01/19 17:04,"744 11th St, New York City, NY 10001" -173223,Wired Headphones,1,11.99,03/20/19 22:56,"63 Johnson St, San Francisco, CA 94016" -173224,Wired Headphones,1,11.99,03/24/19 09:08,"614 1st St, Austin, TX 73301" -173225,iPhone,1,700,03/27/19 14:01,"755 Madison St, San Francisco, CA 94016" -173225,Lightning Charging Cable,1,14.95,03/27/19 14:01,"755 Madison St, San Francisco, CA 94016" -173226,Lightning Charging Cable,1,14.95,03/08/19 00:04,"15 Adams St, San Francisco, CA 94016" -173227,Wired Headphones,1,11.99,03/16/19 20:16,"173 Jefferson St, New York City, NY 10001" -173228,20in Monitor,1,109.99,03/09/19 19:28,"261 14th St, Seattle, WA 98101" -173229,Wired Headphones,1,11.99,03/04/19 22:07,"392 10th St, San Francisco, CA 94016" -173230,USB-C Charging Cable,1,11.95,03/09/19 10:42,"818 Lakeview St, Austin, TX 73301" -173231,AA Batteries (4-pack),1,3.84,03/03/19 08:47,"43 Maple St, San Francisco, CA 94016" -173232,AA Batteries (4-pack),2,3.84,03/07/19 03:13,"29 4th St, Austin, TX 73301" -173233,Bose SoundSport Headphones,1,99.99,03/15/19 13:30,"746 Lake St, Portland, OR 97035" -173234,iPhone,1,700,03/27/19 12:50,"256 Church St, San Francisco, CA 94016" -173235,27in FHD Monitor,1,149.99,03/22/19 06:22,"489 9th St, Dallas, TX 75001" -173236,Apple Airpods Headphones,1,150,03/10/19 08:34,"789 12th St, Dallas, TX 75001" -173237,Macbook Pro Laptop,1,1700,03/18/19 15:42,"941 River St, Boston, MA 02215" -173238,ThinkPad Laptop,1,999.99,03/05/19 11:01,"619 Lake St, Atlanta, GA 30301" -173239,Wired Headphones,1,11.99,03/01/19 19:59,"279 6th St, Boston, MA 02215" -173240,27in 4K Gaming Monitor,1,389.99,03/05/19 07:39,"817 11th St, San Francisco, CA 94016" -173241,USB-C Charging Cable,1,11.95,03/24/19 20:28,"89 11th St, San Francisco, CA 94016" -173242,Bose SoundSport Headphones,1,99.99,03/05/19 20:05,"461 4th St, Atlanta, GA 30301" -173243,AAA Batteries (4-pack),1,2.99,03/03/19 13:42,"443 Walnut St, San Francisco, CA 94016" -173244,Macbook Pro Laptop,1,1700,03/31/19 10:12,"726 9th St, Seattle, WA 98101" -173245,USB-C Charging Cable,2,11.95,03/13/19 14:35,"159 Lake St, San Francisco, CA 94016" -173246,Apple Airpods Headphones,1,150,03/16/19 15:46,"940 Main St, New York City, NY 10001" -173247,Lightning Charging Cable,1,14.95,03/28/19 05:35,"272 Sunset St, Atlanta, GA 30301" -173248,iPhone,1,700,03/19/19 21:19,"175 Forest St, Los Angeles, CA 90001" -173248,Lightning Charging Cable,1,14.95,03/19/19 21:19,"175 Forest St, Los Angeles, CA 90001" -173249,USB-C Charging Cable,2,11.95,03/30/19 09:29,"496 South St, New York City, NY 10001" -173250,AAA Batteries (4-pack),1,2.99,03/22/19 21:19,"139 Elm St, San Francisco, CA 94016" -173251,ThinkPad Laptop,1,999.99,03/26/19 18:42,"896 Adams St, Portland, OR 97035" -173252,Lightning Charging Cable,1,14.95,03/23/19 18:39,"154 8th St, Boston, MA 02215" -173253,Wired Headphones,1,11.99,03/04/19 13:58,"699 Johnson St, Seattle, WA 98101" -173254,AAA Batteries (4-pack),3,2.99,03/12/19 09:32,"395 11th St, Portland, OR 97035" -173255,Wired Headphones,1,11.99,03/08/19 19:17,"339 Wilson St, San Francisco, CA 94016" -173256,AAA Batteries (4-pack),1,2.99,03/16/19 22:15,"889 Lake St, Atlanta, GA 30301" -173257,AA Batteries (4-pack),2,3.84,03/29/19 22:02,"679 South St, New York City, NY 10001" -173258,Lightning Charging Cable,1,14.95,03/31/19 20:06,"499 12th St, Dallas, TX 75001" -173259,AA Batteries (4-pack),3,3.84,03/21/19 11:29,"588 10th St, New York City, NY 10001" -173260,AAA Batteries (4-pack),1,2.99,03/30/19 17:31,"714 Main St, Los Angeles, CA 90001" -173261,AAA Batteries (4-pack),1,2.99,03/27/19 16:12,"276 6th St, Atlanta, GA 30301" -173262,Apple Airpods Headphones,1,150,03/10/19 20:01,"949 Pine St, San Francisco, CA 94016" -173263,34in Ultrawide Monitor,1,379.99,03/16/19 13:01,"622 Lakeview St, Los Angeles, CA 90001" -173264,AA Batteries (4-pack),1,3.84,03/03/19 22:56,"10 Elm St, Seattle, WA 98101" -173265,Apple Airpods Headphones,1,150,03/25/19 13:36,"189 Dogwood St, Los Angeles, CA 90001" -173266,AAA Batteries (4-pack),1,2.99,03/26/19 21:06,"45 Lake St, Austin, TX 73301" -173267,AAA Batteries (4-pack),1,2.99,03/30/19 18:00,"949 Lincoln St, Los Angeles, CA 90001" -173268,34in Ultrawide Monitor,1,379.99,03/26/19 08:48,"258 5th St, San Francisco, CA 94016" -173269,AA Batteries (4-pack),1,3.84,03/19/19 13:17,"159 Willow St, Boston, MA 02215" -173270,AAA Batteries (4-pack),2,2.99,03/28/19 18:18,"995 Lake St, Portland, OR 97035" -173271,Lightning Charging Cable,3,14.95,03/28/19 22:06,"547 1st St, San Francisco, CA 94016" -173272,Wired Headphones,2,11.99,03/13/19 18:04,"311 Forest St, Atlanta, GA 30301" -173273,Bose SoundSport Headphones,1,99.99,03/06/19 14:17,"264 Adams St, San Francisco, CA 94016" -173274,Bose SoundSport Headphones,1,99.99,03/06/19 21:07,"197 Meadow St, Los Angeles, CA 90001" -173275,USB-C Charging Cable,1,11.95,03/13/19 21:44,"339 Lake St, Los Angeles, CA 90001" -173276,iPhone,1,700,03/15/19 08:35,"460 Park St, Dallas, TX 75001" -173277,USB-C Charging Cable,2,11.95,03/02/19 12:00,"645 12th St, San Francisco, CA 94016" -173278,Apple Airpods Headphones,1,150,03/19/19 07:42,"975 Forest St, San Francisco, CA 94016" -173279,AAA Batteries (4-pack),3,2.99,03/14/19 16:10,"827 10th St, San Francisco, CA 94016" -173280,USB-C Charging Cable,1,11.95,03/24/19 11:01,"332 Jefferson St, San Francisco, CA 94016" -173281,Lightning Charging Cable,1,14.95,03/16/19 21:29,"4 Spruce St, San Francisco, CA 94016" -173282,AAA Batteries (4-pack),1,2.99,03/08/19 15:19,"355 Washington St, Atlanta, GA 30301" -173283,Macbook Pro Laptop,1,1700,03/09/19 22:37,"485 Church St, Boston, MA 02215" -173284,Apple Airpods Headphones,1,150,03/17/19 00:32,"135 7th St, Los Angeles, CA 90001" -173285,AAA Batteries (4-pack),2,2.99,03/14/19 23:16,"799 Lake St, Los Angeles, CA 90001" -173286,Bose SoundSport Headphones,1,99.99,03/11/19 14:51,"378 Cedar St, New York City, NY 10001" -173287,USB-C Charging Cable,1,11.95,03/27/19 20:17,"850 Maple St, Los Angeles, CA 90001" -173288,Lightning Charging Cable,1,14.95,03/29/19 17:16,"267 12th St, Seattle, WA 98101" -173289,AA Batteries (4-pack),3,3.84,03/01/19 22:59,"567 7th St, Los Angeles, CA 90001" -173290,Wired Headphones,1,11.99,03/07/19 11:15,"707 Church St, Atlanta, GA 30301" -173290,Lightning Charging Cable,1,14.95,03/07/19 11:15,"707 Church St, Atlanta, GA 30301" -173291,USB-C Charging Cable,1,11.95,03/03/19 14:55,"81 Willow St, Atlanta, GA 30301" -,,,,, -173292,AAA Batteries (4-pack),2,2.99,03/25/19 20:19,"785 Johnson St, Boston, MA 02215" -173293,USB-C Charging Cable,1,11.95,03/04/19 18:02,"298 Highland St, Boston, MA 02215" -173294,Lightning Charging Cable,1,14.95,03/02/19 17:47,"389 Elm St, Los Angeles, CA 90001" -173294,Bose SoundSport Headphones,1,99.99,03/02/19 17:47,"389 Elm St, Los Angeles, CA 90001" -173295,USB-C Charging Cable,1,11.95,03/02/19 16:14,"636 Johnson St, Los Angeles, CA 90001" -173296,AA Batteries (4-pack),1,3.84,03/23/19 13:09,"584 Park St, Los Angeles, CA 90001" -173297,Lightning Charging Cable,1,14.95,03/19/19 11:52,"22 7th St, Atlanta, GA 30301" -173298,Bose SoundSport Headphones,1,99.99,03/29/19 10:42,"264 Center St, Dallas, TX 75001" -173299,AA Batteries (4-pack),2,3.84,03/10/19 11:20,"584 Ridge St, Boston, MA 02215" -173300,Lightning Charging Cable,1,14.95,03/06/19 16:15,"390 2nd St, Dallas, TX 75001" -173301,34in Ultrawide Monitor,1,379.99,03/19/19 15:20,"902 Adams St, Los Angeles, CA 90001" -173302,Bose SoundSport Headphones,1,99.99,03/17/19 21:58,"944 4th St, Seattle, WA 98101" -173303,Wired Headphones,1,11.99,03/25/19 16:58,"42 Pine St, New York City, NY 10001" -173304,Apple Airpods Headphones,1,150,03/06/19 19:20,"588 Cherry St, Boston, MA 02215" -173305,AAA Batteries (4-pack),1,2.99,03/07/19 14:03,"827 Cherry St, Dallas, TX 75001" -173306,Apple Airpods Headphones,1,150,03/04/19 17:28,"175 Highland St, Los Angeles, CA 90001" -173307,USB-C Charging Cable,1,11.95,03/11/19 21:43,"981 10th St, San Francisco, CA 94016" -173308,Lightning Charging Cable,1,14.95,03/30/19 01:43,"339 9th St, Los Angeles, CA 90001" -173309,27in 4K Gaming Monitor,1,389.99,03/29/19 12:24,"976 Johnson St, Seattle, WA 98101" -173310,Wired Headphones,1,11.99,03/09/19 06:46,"264 Hill St, San Francisco, CA 94016" -173311,Wired Headphones,1,11.99,03/21/19 20:28,"332 Church St, San Francisco, CA 94016" -173312,ThinkPad Laptop,1,999.99,03/26/19 06:05,"744 6th St, Los Angeles, CA 90001" -173313,USB-C Charging Cable,1,11.95,03/04/19 22:41,"538 9th St, Portland, OR 97035" -173314,27in 4K Gaming Monitor,1,389.99,03/05/19 14:28,"603 Park St, New York City, NY 10001" -173315,Lightning Charging Cable,1,14.95,03/05/19 18:44,"152 Washington St, San Francisco, CA 94016" -173316,AAA Batteries (4-pack),1,2.99,03/05/19 15:00,"206 Adams St, New York City, NY 10001" -173317,Wired Headphones,1,11.99,03/08/19 23:48,"377 Adams St, Boston, MA 02215" -173318,ThinkPad Laptop,1,999.99,03/19/19 17:12,"846 West St, Atlanta, GA 30301" -173319,Wired Headphones,1,11.99,03/25/19 07:34,"681 Forest St, Dallas, TX 75001" -173320,Apple Airpods Headphones,1,150,03/16/19 17:12,"248 12th St, San Francisco, CA 94016" -173320,Lightning Charging Cable,1,14.95,03/16/19 17:12,"248 12th St, San Francisco, CA 94016" -173321,Wired Headphones,1,11.99,03/21/19 20:00,"159 Chestnut St, Portland, OR 97035" -173322,AA Batteries (4-pack),2,3.84,03/11/19 17:46,"784 Cedar St, San Francisco, CA 94016" -173323,AAA Batteries (4-pack),3,2.99,03/21/19 22:46,"669 Sunset St, New York City, NY 10001" -173324,AA Batteries (4-pack),1,3.84,03/03/19 13:39,"128 7th St, San Francisco, CA 94016" -173325,Apple Airpods Headphones,1,150,03/04/19 08:48,"682 Madison St, Atlanta, GA 30301" -173326,Wired Headphones,2,11.99,03/20/19 11:34,"664 Cherry St, Boston, MA 02215" -173327,AAA Batteries (4-pack),2,2.99,03/01/19 21:16,"38 Sunset St, Seattle, WA 98101" -173328,Apple Airpods Headphones,1,150,03/24/19 23:39,"677 4th St, Dallas, TX 75001" -173329,AA Batteries (4-pack),2,3.84,03/24/19 13:44,"798 Ridge St, San Francisco, CA 94016" -173330,Wired Headphones,1,11.99,03/10/19 19:20,"529 Willow St, Portland, ME 04101" -173331,Vareebadd Phone,1,400,03/30/19 15:02,"673 Wilson St, Dallas, TX 75001" -173332,iPhone,1,700,03/19/19 13:46,"544 River St, Los Angeles, CA 90001" -173333,Lightning Charging Cable,1,14.95,03/08/19 19:31,"318 8th St, Los Angeles, CA 90001" -173334,27in FHD Monitor,1,149.99,03/02/19 23:42,"844 Main St, Los Angeles, CA 90001" -173335,AA Batteries (4-pack),1,3.84,03/01/19 15:43,"801 Pine St, Dallas, TX 75001" -173336,27in FHD Monitor,1,149.99,03/10/19 18:12,"460 Park St, Portland, OR 97035" -173337,Macbook Pro Laptop,1,1700,03/24/19 14:14,"749 6th St, New York City, NY 10001" -173338,AA Batteries (4-pack),3,3.84,03/24/19 19:20,"621 Johnson St, Los Angeles, CA 90001" -173339,34in Ultrawide Monitor,1,379.99,03/22/19 19:27,"641 12th St, Los Angeles, CA 90001" -173340,iPhone,1,700,03/07/19 14:03,"780 Forest St, Boston, MA 02215" -173341,Google Phone,1,600,03/29/19 20:06,"947 1st St, Austin, TX 73301" -173342,USB-C Charging Cable,1,11.95,03/15/19 10:29,"168 Johnson St, San Francisco, CA 94016" -173343,Lightning Charging Cable,1,14.95,03/28/19 13:22,"822 Spruce St, San Francisco, CA 94016" -173344,Lightning Charging Cable,1,14.95,03/18/19 23:01,"763 Pine St, Boston, MA 02215" -173345,AAA Batteries (4-pack),1,2.99,03/14/19 12:33,"251 Forest St, Portland, OR 97035" -173346,ThinkPad Laptop,1,999.99,03/22/19 11:55,"289 Chestnut St, Los Angeles, CA 90001" -173347,AA Batteries (4-pack),1,3.84,03/01/19 19:56,"483 13th St, New York City, NY 10001" -173348,Lightning Charging Cable,1,14.95,03/05/19 21:27,"285 Main St, Los Angeles, CA 90001" -173349,27in FHD Monitor,1,149.99,03/02/19 21:14,"140 Lincoln St, Atlanta, GA 30301" -173350,34in Ultrawide Monitor,1,379.99,03/05/19 09:30,"578 Cedar St, Dallas, TX 75001" -173351,Apple Airpods Headphones,1,150,03/29/19 22:15,"352 Jefferson St, Seattle, WA 98101" -173352,AA Batteries (4-pack),1,3.84,03/03/19 20:23,"429 Highland St, Portland, ME 04101" -173353,Lightning Charging Cable,1,14.95,03/17/19 20:05,"232 Johnson St, San Francisco, CA 94016" -173354,AA Batteries (4-pack),1,3.84,03/08/19 19:43,"8 Church St, San Francisco, CA 94016" -173355,Wired Headphones,1,11.99,03/24/19 19:36,"809 Main St, Portland, OR 97035" -173356,27in FHD Monitor,1,149.99,03/19/19 09:19,"753 Center St, Los Angeles, CA 90001" -173357,USB-C Charging Cable,1,11.95,03/25/19 13:26,"462 Washington St, Seattle, WA 98101" -173358,AA Batteries (4-pack),1,3.84,03/17/19 09:04,"204 Willow St, New York City, NY 10001" -173359,AA Batteries (4-pack),1,3.84,03/31/19 18:11,"121 Adams St, San Francisco, CA 94016" -173360,AAA Batteries (4-pack),1,2.99,03/22/19 10:16,"702 Lincoln St, Dallas, TX 75001" -173361,USB-C Charging Cable,1,11.95,03/23/19 09:16,"429 14th St, Boston, MA 02215" -173362,20in Monitor,1,109.99,03/30/19 18:28,"767 River St, San Francisco, CA 94016" -173363,AAA Batteries (4-pack),1,2.99,03/23/19 11:06,"920 Washington St, New York City, NY 10001" -173364,Google Phone,1,600,03/23/19 15:57,"47 North St, Atlanta, GA 30301" -173365,Bose SoundSport Headphones,1,99.99,03/01/19 17:52,"615 Hill St, San Francisco, CA 94016" -173366,ThinkPad Laptop,1,999.99,03/02/19 17:46,"816 Chestnut St, Boston, MA 02215" -173367,AA Batteries (4-pack),1,3.84,03/25/19 23:37,"775 Walnut St, San Francisco, CA 94016" -173368,Lightning Charging Cable,1,14.95,03/04/19 11:29,"158 Hickory St, Los Angeles, CA 90001" -173369,Wired Headphones,1,11.99,03/18/19 16:18,"192 6th St, Austin, TX 73301" -173370,Lightning Charging Cable,1,14.95,03/28/19 09:22,"579 Park St, San Francisco, CA 94016" -173371,USB-C Charging Cable,1,11.95,03/15/19 11:56,"862 Maple St, San Francisco, CA 94016" -173372,AA Batteries (4-pack),1,3.84,03/26/19 07:20,"680 Jackson St, Atlanta, GA 30301" -173373,iPhone,1,700,03/06/19 17:24,"695 9th St, Los Angeles, CA 90001" -173373,Wired Headphones,1,11.99,03/06/19 17:24,"695 9th St, Los Angeles, CA 90001" -173374,Lightning Charging Cable,1,14.95,03/28/19 22:53,"798 Ridge St, Atlanta, GA 30301" -173375,AA Batteries (4-pack),1,3.84,03/09/19 13:43,"569 West St, Portland, OR 97035" -173376,27in 4K Gaming Monitor,1,389.99,03/27/19 11:49,"484 Wilson St, San Francisco, CA 94016" -173377,Wired Headphones,1,11.99,03/02/19 21:59,"136 6th St, Portland, OR 97035" -173377,USB-C Charging Cable,1,11.95,03/02/19 21:59,"136 6th St, Portland, OR 97035" -173378,AAA Batteries (4-pack),1,2.99,03/22/19 01:23,"389 14th St, New York City, NY 10001" -173379,USB-C Charging Cable,1,11.95,03/29/19 22:53,"90 Ridge St, San Francisco, CA 94016" -173380,Apple Airpods Headphones,1,150,03/10/19 20:41,"150 River St, San Francisco, CA 94016" -173381,AAA Batteries (4-pack),4,2.99,03/21/19 14:59,"505 South St, Los Angeles, CA 90001" -173382,AA Batteries (4-pack),1,3.84,03/31/19 13:57,"833 8th St, Los Angeles, CA 90001" -173383,USB-C Charging Cable,1,11.95,03/10/19 10:44,"114 12th St, Los Angeles, CA 90001" -173384,Apple Airpods Headphones,1,150,03/28/19 23:50,"181 Highland St, Los Angeles, CA 90001" -173385,Wired Headphones,1,11.99,03/09/19 18:41,"875 Highland St, Seattle, WA 98101" -173386,ThinkPad Laptop,1,999.99,03/01/19 12:17,"803 Willow St, San Francisco, CA 94016" -173387,USB-C Charging Cable,1,11.95,03/06/19 16:02,"182 11th St, Los Angeles, CA 90001" -173388,Bose SoundSport Headphones,1,99.99,03/21/19 15:31,"96 Cherry St, San Francisco, CA 94016" -173388,Bose SoundSport Headphones,1,99.99,03/21/19 15:31,"96 Cherry St, San Francisco, CA 94016" -173389,Wired Headphones,1,11.99,03/23/19 19:45,"488 Madison St, Los Angeles, CA 90001" -173390,Bose SoundSport Headphones,1,99.99,03/09/19 18:50,"939 Highland St, Los Angeles, CA 90001" -173391,USB-C Charging Cable,1,11.95,03/18/19 18:31,"891 Cherry St, New York City, NY 10001" -173392,AA Batteries (4-pack),1,3.84,03/03/19 15:22,"110 West St, San Francisco, CA 94016" -173393,AA Batteries (4-pack),4,3.84,03/21/19 10:50,"744 Madison St, San Francisco, CA 94016" -173394,AA Batteries (4-pack),1,3.84,03/09/19 18:26,"184 6th St, New York City, NY 10001" -173395,Bose SoundSport Headphones,1,99.99,03/16/19 15:47,"489 River St, Los Angeles, CA 90001" -173396,USB-C Charging Cable,1,11.95,03/10/19 13:52,"270 Lakeview St, San Francisco, CA 94016" -173397,Apple Airpods Headphones,1,150,03/29/19 23:42,"969 Madison St, Portland, OR 97035" -173398,Wired Headphones,1,11.99,03/17/19 19:17,"721 West St, Los Angeles, CA 90001" -173399,Lightning Charging Cable,1,14.95,03/23/19 23:47,"54 Jackson St, Los Angeles, CA 90001" -173400,AAA Batteries (4-pack),2,2.99,03/17/19 22:00,"72 Willow St, Atlanta, GA 30301" -173401,AAA Batteries (4-pack),1,2.99,03/15/19 09:57,"331 Washington St, San Francisco, CA 94016" -173402,Vareebadd Phone,1,400,03/03/19 08:18,"672 10th St, Portland, OR 97035" -173403,USB-C Charging Cable,1,11.95,03/15/19 09:34,"857 Lakeview St, San Francisco, CA 94016" -173404,Vareebadd Phone,1,400,03/13/19 11:04,"676 Jefferson St, Boston, MA 02215" -173404,Bose SoundSport Headphones,1,99.99,03/13/19 11:04,"676 Jefferson St, Boston, MA 02215" -173405,Lightning Charging Cable,1,14.95,03/17/19 08:23,"841 Willow St, Portland, OR 97035" -,,,,, -173406,Apple Airpods Headphones,1,150,03/13/19 19:24,"775 Elm St, San Francisco, CA 94016" -173407,Wired Headphones,1,11.99,03/02/19 16:23,"135 Hickory St, Los Angeles, CA 90001" -173408,Wired Headphones,1,11.99,03/22/19 13:34,"926 Willow St, Boston, MA 02215" -173409,AA Batteries (4-pack),1,3.84,03/19/19 22:49,"814 Madison St, Dallas, TX 75001" -173410,Lightning Charging Cable,3,14.95,03/08/19 08:57,"458 Adams St, San Francisco, CA 94016" -173411,iPhone,1,700,03/08/19 08:44,"399 Washington St, San Francisco, CA 94016" -173412,AA Batteries (4-pack),1,3.84,03/06/19 16:55,"42 Washington St, Portland, OR 97035" -173413,Wired Headphones,1,11.99,03/12/19 23:52,"704 Cherry St, Atlanta, GA 30301" -173414,AA Batteries (4-pack),1,3.84,03/21/19 11:05,"682 5th St, Seattle, WA 98101" -173415,AA Batteries (4-pack),1,3.84,03/16/19 11:49,"152 Lakeview St, Portland, OR 97035" -173416,Apple Airpods Headphones,1,150,03/11/19 10:49,"382 Spruce St, Los Angeles, CA 90001" -173417,USB-C Charging Cable,1,11.95,03/07/19 10:06,"531 North St, San Francisco, CA 94016" -173418,Lightning Charging Cable,1,14.95,03/17/19 17:37,"667 Sunset St, San Francisco, CA 94016" -173419,34in Ultrawide Monitor,1,379.99,03/07/19 17:35,"888 7th St, San Francisco, CA 94016" -173420,Google Phone,1,600,03/08/19 21:57,"559 Lake St, Atlanta, GA 30301" -173421,Bose SoundSport Headphones,2,99.99,03/22/19 10:27,"520 2nd St, Portland, OR 97035" -173421,iPhone,1,700,03/22/19 10:27,"520 2nd St, Portland, OR 97035" -173422,AA Batteries (4-pack),2,3.84,03/22/19 15:36,"90 Johnson St, Austin, TX 73301" -173423,AA Batteries (4-pack),1,3.84,03/17/19 11:01,"824 Johnson St, Los Angeles, CA 90001" -173424,Apple Airpods Headphones,1,150,03/15/19 20:06,"455 2nd St, Boston, MA 02215" -173425,Macbook Pro Laptop,1,1700,03/02/19 08:03,"123 Madison St, Dallas, TX 75001" -173426,Google Phone,1,600,03/17/19 21:58,"262 7th St, Boston, MA 02215" -173427,Macbook Pro Laptop,1,1700,03/13/19 16:33,"654 Hill St, Los Angeles, CA 90001" -173428,Vareebadd Phone,1,400,03/08/19 00:01,"183 Hill St, Portland, OR 97035" -173428,USB-C Charging Cable,1,11.95,03/08/19 00:01,"183 Hill St, Portland, OR 97035" -173429,USB-C Charging Cable,1,11.95,03/01/19 11:22,"156 Elm St, San Francisco, CA 94016" -173430,USB-C Charging Cable,1,11.95,03/09/19 09:16,"917 River St, San Francisco, CA 94016" -173431,USB-C Charging Cable,1,11.95,03/03/19 20:24,"347 Dogwood St, San Francisco, CA 94016" -173432,USB-C Charging Cable,1,11.95,03/08/19 16:13,"47 2nd St, Austin, TX 73301" -173433,Bose SoundSport Headphones,1,99.99,03/25/19 22:36,"580 Lakeview St, San Francisco, CA 94016" -173434,AAA Batteries (4-pack),1,2.99,03/13/19 11:55,"551 Pine St, Boston, MA 02215" -173435,Google Phone,1,600,03/08/19 19:02,"729 Cherry St, Dallas, TX 75001" -173436,Apple Airpods Headphones,1,150,03/25/19 21:17,"899 10th St, Atlanta, GA 30301" -173437,Lightning Charging Cable,1,14.95,03/10/19 09:55,"445 9th St, Boston, MA 02215" -173438,AA Batteries (4-pack),1,3.84,03/10/19 14:36,"162 Adams St, Portland, ME 04101" -173438,AAA Batteries (4-pack),2,2.99,03/10/19 14:36,"162 Adams St, Portland, ME 04101" -173439,Vareebadd Phone,1,400,03/16/19 11:59,"902 Center St, Boston, MA 02215" -173440,AA Batteries (4-pack),1,3.84,03/25/19 07:55,"463 6th St, Portland, OR 97035" -173441,Lightning Charging Cable,1,14.95,03/27/19 04:48,"54 Elm St, New York City, NY 10001" -173442,Bose SoundSport Headphones,1,99.99,03/10/19 14:09,"495 Forest St, Boston, MA 02215" -173443,Lightning Charging Cable,1,14.95,03/30/19 12:21,"91 Church St, San Francisco, CA 94016" -173444,Wired Headphones,1,11.99,03/16/19 22:31,"50 Maple St, Seattle, WA 98101" -173445,27in FHD Monitor,1,149.99,03/04/19 12:49,"715 South St, San Francisco, CA 94016" -173446,Lightning Charging Cable,1,14.95,03/04/19 08:32,"608 14th St, Dallas, TX 75001" -173447,Apple Airpods Headphones,1,150,03/02/19 15:43,"713 2nd St, San Francisco, CA 94016" -173448,Lightning Charging Cable,1,14.95,03/20/19 06:28,"997 South St, Boston, MA 02215" -173449,AA Batteries (4-pack),3,3.84,03/15/19 08:00,"990 Cherry St, Austin, TX 73301" -173450,Lightning Charging Cable,1,14.95,03/23/19 13:42,"576 Walnut St, Los Angeles, CA 90001" -173451,20in Monitor,1,109.99,03/22/19 18:23,"834 South St, Austin, TX 73301" -173452,34in Ultrawide Monitor,1,379.99,03/11/19 18:08,"158 Lake St, Dallas, TX 75001" -173453,USB-C Charging Cable,1,11.95,03/10/19 23:09,"625 North St, New York City, NY 10001" -173454,USB-C Charging Cable,2,11.95,03/29/19 21:10,"604 Wilson St, San Francisco, CA 94016" -173455,Apple Airpods Headphones,1,150,03/24/19 12:20,"569 4th St, San Francisco, CA 94016" -173456,iPhone,1,700,03/29/19 00:52,"235 6th St, New York City, NY 10001" -173457,AA Batteries (4-pack),1,3.84,03/13/19 13:02,"76 Dogwood St, Boston, MA 02215" -173458,Macbook Pro Laptop,1,1700,03/13/19 08:22,"307 Church St, San Francisco, CA 94016" -173459,AA Batteries (4-pack),2,3.84,03/29/19 14:40,"720 Church St, Dallas, TX 75001" -173460,Apple Airpods Headphones,1,150,03/29/19 22:49,"585 Walnut St, San Francisco, CA 94016" -173461,AA Batteries (4-pack),2,3.84,03/15/19 16:40,"82 Chestnut St, Boston, MA 02215" -173462,Google Phone,1,600,03/05/19 21:35,"109 Chestnut St, Seattle, WA 98101" -173463,Lightning Charging Cable,2,14.95,03/27/19 11:27,"362 Washington St, Seattle, WA 98101" -173464,27in FHD Monitor,1,149.99,03/19/19 19:52,"53 North St, Dallas, TX 75001" -173465,ThinkPad Laptop,1,999.99,03/15/19 12:34,"792 Chestnut St, Los Angeles, CA 90001" -173466,27in 4K Gaming Monitor,1,389.99,03/22/19 06:50,"158 8th St, Boston, MA 02215" -173467,Apple Airpods Headphones,1,150,03/08/19 13:22,"994 Maple St, Boston, MA 02215" -173468,AA Batteries (4-pack),1,3.84,03/27/19 10:49,"847 Hickory St, Austin, TX 73301" -173469,USB-C Charging Cable,2,11.95,03/14/19 18:11,"884 Church St, Seattle, WA 98101" -173470,27in 4K Gaming Monitor,1,389.99,03/15/19 13:43,"96 Park St, Boston, MA 02215" -173471,Wired Headphones,2,11.99,03/16/19 15:22,"625 Washington St, Austin, TX 73301" -173472,iPhone,1,700,03/08/19 23:10,"145 5th St, San Francisco, CA 94016" -173472,Wired Headphones,1,11.99,03/08/19 23:10,"145 5th St, San Francisco, CA 94016" -173473,27in 4K Gaming Monitor,1,389.99,03/15/19 11:33,"843 Cherry St, San Francisco, CA 94016" -173474,USB-C Charging Cable,1,11.95,03/02/19 19:43,"518 4th St, Dallas, TX 75001" -173475,Apple Airpods Headphones,1,150,03/13/19 18:32,"438 Jefferson St, Portland, OR 97035" -173476,USB-C Charging Cable,1,11.95,03/19/19 00:18,"223 14th St, San Francisco, CA 94016" -173477,Macbook Pro Laptop,1,1700,03/15/19 19:23,"262 2nd St, Atlanta, GA 30301" -173478,Wired Headphones,1,11.99,03/01/19 21:10,"747 Highland St, Los Angeles, CA 90001" -173479,USB-C Charging Cable,1,11.95,03/26/19 14:29,"604 Jackson St, Los Angeles, CA 90001" -173480,34in Ultrawide Monitor,1,379.99,03/13/19 09:08,"553 5th St, San Francisco, CA 94016" -173481,Google Phone,1,600,03/01/19 14:50,"676 11th St, Seattle, WA 98101" -173482,Apple Airpods Headphones,1,150,03/21/19 11:45,"86 5th St, Los Angeles, CA 90001" -173483,Google Phone,1,600,03/09/19 12:34,"716 6th St, San Francisco, CA 94016" -173484,Apple Airpods Headphones,1,150,03/05/19 18:26,"922 7th St, Seattle, WA 98101" -173485,Google Phone,1,600,03/02/19 11:20,"415 Meadow St, Boston, MA 02215" -173485,Wired Headphones,1,11.99,03/02/19 11:20,"415 Meadow St, Boston, MA 02215" -173486,Wired Headphones,1,11.99,03/22/19 19:37,"639 6th St, San Francisco, CA 94016" -173486,USB-C Charging Cable,2,11.95,03/22/19 19:37,"639 6th St, San Francisco, CA 94016" -173487,iPhone,1,700,03/25/19 12:11,"948 Ridge St, Portland, OR 97035" -173488,Macbook Pro Laptop,1,1700,03/10/19 19:05,"627 Main St, New York City, NY 10001" -173489,Flatscreen TV,1,300,03/12/19 01:21,"98 10th St, New York City, NY 10001" -173489,Bose SoundSport Headphones,1,99.99,03/12/19 01:21,"98 10th St, New York City, NY 10001" -173490,USB-C Charging Cable,1,11.95,03/16/19 18:51,"134 9th St, San Francisco, CA 94016" -173491,iPhone,1,700,03/15/19 17:51,"738 Center St, San Francisco, CA 94016" -173492,Lightning Charging Cable,1,14.95,03/31/19 09:56,"284 Cherry St, Los Angeles, CA 90001" -173493,Wired Headphones,1,11.99,03/27/19 23:32,"2 Pine St, Los Angeles, CA 90001" -173493,27in 4K Gaming Monitor,1,389.99,03/27/19 23:32,"2 Pine St, Los Angeles, CA 90001" -173494,Apple Airpods Headphones,1,150,03/24/19 02:22,"200 Church St, Boston, MA 02215" -173495,34in Ultrawide Monitor,1,379.99,03/13/19 19:39,"639 Lincoln St, Los Angeles, CA 90001" -173496,Lightning Charging Cable,1,14.95,03/31/19 18:41,"641 Adams St, San Francisco, CA 94016" -173497,iPhone,1,700,03/18/19 13:43,"690 Hill St, Portland, ME 04101" -173498,iPhone,1,700,03/08/19 23:36,"411 Washington St, New York City, NY 10001" -173499,27in FHD Monitor,1,149.99,03/23/19 13:38,"509 Jackson St, Boston, MA 02215" -173500,Wired Headphones,1,11.99,03/31/19 19:28,"839 14th St, Atlanta, GA 30301" -173501,AAA Batteries (4-pack),1,2.99,03/08/19 13:14,"508 Lakeview St, Los Angeles, CA 90001" -173502,AAA Batteries (4-pack),1,2.99,03/19/19 13:36,"261 Lincoln St, Los Angeles, CA 90001" -173503,AA Batteries (4-pack),1,3.84,03/07/19 07:24,"155 Pine St, San Francisco, CA 94016" -173504,iPhone,1,700,03/28/19 11:15,"983 Elm St, Boston, MA 02215" -173504,Lightning Charging Cable,1,14.95,03/28/19 11:15,"983 Elm St, Boston, MA 02215" -173505,Apple Airpods Headphones,1,150,03/31/19 17:52,"254 Lakeview St, San Francisco, CA 94016" -173506,AAA Batteries (4-pack),1,2.99,03/22/19 21:00,"369 Lake St, Austin, TX 73301" -173507,AA Batteries (4-pack),1,3.84,03/03/19 06:53,"542 Walnut St, New York City, NY 10001" -173508,Bose SoundSport Headphones,1,99.99,03/22/19 13:20,"968 Madison St, San Francisco, CA 94016" -173509,AA Batteries (4-pack),1,3.84,03/30/19 02:23,"367 Forest St, San Francisco, CA 94016" -173510,27in FHD Monitor,1,149.99,03/05/19 19:36,"937 Madison St, Portland, ME 04101" -173511,27in 4K Gaming Monitor,1,389.99,03/04/19 22:22,"983 South St, San Francisco, CA 94016" -173512,Lightning Charging Cable,1,14.95,03/28/19 20:48,"854 Adams St, Dallas, TX 75001" -173513,AAA Batteries (4-pack),2,2.99,03/26/19 18:33,"152 Spruce St, Austin, TX 73301" -173514,Lightning Charging Cable,1,14.95,03/30/19 18:15,"584 Ridge St, Seattle, WA 98101" -173515,Wired Headphones,1,11.99,03/14/19 12:55,"977 Elm St, Portland, ME 04101" -173516,Macbook Pro Laptop,1,1700,03/19/19 21:28,"921 13th St, Atlanta, GA 30301" -173517,Lightning Charging Cable,1,14.95,03/12/19 22:15,"708 Meadow St, San Francisco, CA 94016" -173518,Wired Headphones,1,11.99,03/14/19 18:29,"478 9th St, Los Angeles, CA 90001" -173519,Bose SoundSport Headphones,1,99.99,03/09/19 15:15,"765 River St, San Francisco, CA 94016" -173520,Google Phone,1,600,03/16/19 17:58,"776 Adams St, San Francisco, CA 94016" -173521,AA Batteries (4-pack),2,3.84,03/28/19 11:35,"222 Cherry St, Los Angeles, CA 90001" -173522,AAA Batteries (4-pack),1,2.99,03/31/19 10:24,"325 Willow St, Portland, OR 97035" -173523,27in FHD Monitor,1,149.99,03/24/19 21:50,"615 Maple St, New York City, NY 10001" -173524,AAA Batteries (4-pack),1,2.99,03/30/19 21:55,"744 Forest St, Dallas, TX 75001" -173525,Lightning Charging Cable,1,14.95,03/22/19 12:12,"666 Pine St, Atlanta, GA 30301" -173526,AAA Batteries (4-pack),1,2.99,03/22/19 05:33,"125 7th St, Dallas, TX 75001" -173526,AA Batteries (4-pack),1,3.84,03/22/19 05:33,"125 7th St, Dallas, TX 75001" -173527,AAA Batteries (4-pack),1,2.99,03/24/19 19:08,"346 Elm St, San Francisco, CA 94016" -173528,Apple Airpods Headphones,1,150,03/07/19 22:02,"294 Jefferson St, Boston, MA 02215" -173529,Apple Airpods Headphones,1,150,03/15/19 00:38,"96 Highland St, Atlanta, GA 30301" -173530,Bose SoundSport Headphones,1,99.99,03/05/19 20:10,"193 7th St, Los Angeles, CA 90001" -173531,Wired Headphones,1,11.99,03/03/19 11:03,"27 River St, New York City, NY 10001" -173532,Apple Airpods Headphones,1,150,03/12/19 17:14,"72 Hill St, San Francisco, CA 94016" -173533,ThinkPad Laptop,1,999.99,03/23/19 12:44,"288 8th St, Boston, MA 02215" -173533,AAA Batteries (4-pack),1,2.99,03/23/19 12:44,"288 8th St, Boston, MA 02215" -173534,AAA Batteries (4-pack),1,2.99,03/04/19 10:48,"254 Wilson St, Los Angeles, CA 90001" -173535,ThinkPad Laptop,1,999.99,03/04/19 21:03,"96 Hickory St, San Francisco, CA 94016" -173536,AA Batteries (4-pack),3,3.84,03/15/19 14:39,"780 Jefferson St, Los Angeles, CA 90001" -173537,AA Batteries (4-pack),1,3.84,03/04/19 20:39,"610 Jefferson St, San Francisco, CA 94016" -173538,Vareebadd Phone,1,400,03/05/19 09:45,"757 Cedar St, Boston, MA 02215" -173539,Apple Airpods Headphones,1,150,03/31/19 16:43,"501 4th St, Seattle, WA 98101" -173540,Wired Headphones,2,11.99,03/05/19 20:48,"899 Pine St, New York City, NY 10001" -173541,Apple Airpods Headphones,1,150,03/12/19 03:40,"226 Ridge St, San Francisco, CA 94016" -173542,USB-C Charging Cable,1,11.95,03/13/19 10:10,"304 Sunset St, San Francisco, CA 94016" -173543,USB-C Charging Cable,1,11.95,03/07/19 16:36,"665 Chestnut St, Dallas, TX 75001" -173544,Lightning Charging Cable,1,14.95,03/28/19 14:24,"602 Meadow St, Los Angeles, CA 90001" -173545,AA Batteries (4-pack),1,3.84,03/04/19 22:12,"987 Hickory St, Los Angeles, CA 90001" -173546,Wired Headphones,2,11.99,03/14/19 10:27,"370 South St, Atlanta, GA 30301" -173547,USB-C Charging Cable,1,11.95,03/21/19 10:16,"156 7th St, New York City, NY 10001" -173548,Bose SoundSport Headphones,1,99.99,03/27/19 13:53,"448 Jackson St, San Francisco, CA 94016" -173549,USB-C Charging Cable,2,11.95,03/12/19 13:04,"21 Wilson St, Portland, OR 97035" -173550,Google Phone,1,600,03/02/19 13:41,"504 14th St, Boston, MA 02215" -173551,AA Batteries (4-pack),3,3.84,03/18/19 08:28,"841 9th St, New York City, NY 10001" -173552,Apple Airpods Headphones,1,150,03/08/19 19:52,"868 Wilson St, Boston, MA 02215" -173553,Lightning Charging Cable,2,14.95,03/10/19 11:58,"241 Washington St, Los Angeles, CA 90001" -173554,Apple Airpods Headphones,1,150,03/28/19 21:15,"159 Jefferson St, New York City, NY 10001" -173555,AA Batteries (4-pack),1,3.84,03/19/19 16:53,"915 Chestnut St, San Francisco, CA 94016" -173556,Bose SoundSport Headphones,1,99.99,03/17/19 16:29,"71 Madison St, Dallas, TX 75001" -173557,AAA Batteries (4-pack),1,2.99,03/30/19 15:14,"888 Cedar St, Boston, MA 02215" -173558,AA Batteries (4-pack),3,3.84,03/27/19 19:21,"680 Madison St, Dallas, TX 75001" -173559,USB-C Charging Cable,1,11.95,03/12/19 07:16,"366 Dogwood St, Los Angeles, CA 90001" -173559,Bose SoundSport Headphones,1,99.99,03/12/19 07:16,"366 Dogwood St, Los Angeles, CA 90001" -173560,USB-C Charging Cable,1,11.95,03/28/19 12:35,"762 1st St, Seattle, WA 98101" -173561,LG Washing Machine,1,600.0,03/21/19 10:54,"284 Dogwood St, Los Angeles, CA 90001" -173562,Lightning Charging Cable,1,14.95,03/19/19 22:12,"449 4th St, New York City, NY 10001" -173563,AAA Batteries (4-pack),1,2.99,03/18/19 16:14,"725 9th St, New York City, NY 10001" -173564,AAA Batteries (4-pack),1,2.99,03/01/19 14:00,"500 Main St, New York City, NY 10001" -173565,Bose SoundSport Headphones,1,99.99,03/16/19 02:39,"473 Hickory St, Boston, MA 02215" -173566,Lightning Charging Cable,1,14.95,03/30/19 21:42,"639 Meadow St, Los Angeles, CA 90001" -173567,AAA Batteries (4-pack),1,2.99,03/08/19 01:38,"855 Main St, New York City, NY 10001" -173568,27in FHD Monitor,1,149.99,03/18/19 21:56,"86 Dogwood St, New York City, NY 10001" -173569,AAA Batteries (4-pack),1,2.99,03/29/19 00:09,"516 14th St, Seattle, WA 98101" -173570,Wired Headphones,1,11.99,03/09/19 17:16,"698 Center St, San Francisco, CA 94016" -173571,Bose SoundSport Headphones,1,99.99,03/07/19 19:31,"362 Dogwood St, San Francisco, CA 94016" -173572,Wired Headphones,1,11.99,03/04/19 21:33,"329 11th St, Seattle, WA 98101" -173573,USB-C Charging Cable,1,11.95,03/12/19 19:40,"544 4th St, Portland, ME 04101" -173574,Flatscreen TV,1,300,03/23/19 08:48,"92 Adams St, Boston, MA 02215" -173575,Bose SoundSport Headphones,1,99.99,03/03/19 22:40,"790 Jefferson St, San Francisco, CA 94016" -173576,Wired Headphones,2,11.99,03/22/19 16:34,"986 Willow St, New York City, NY 10001" -173577,Macbook Pro Laptop,1,1700,03/14/19 14:43,"76 10th St, Dallas, TX 75001" -173578,AAA Batteries (4-pack),3,2.99,03/09/19 12:28,"517 Highland St, Boston, MA 02215" -173579,20in Monitor,1,109.99,03/22/19 00:58,"920 Elm St, San Francisco, CA 94016" -173580,USB-C Charging Cable,1,11.95,03/15/19 13:03,"329 Maple St, Austin, TX 73301" -173581,AA Batteries (4-pack),1,3.84,03/13/19 23:17,"54 8th St, Dallas, TX 75001" -173582,iPhone,1,700,03/02/19 22:26,"936 Meadow St, New York City, NY 10001" -173583,USB-C Charging Cable,1,11.95,03/15/19 22:10,"63 Lake St, New York City, NY 10001" -173584,AAA Batteries (4-pack),1,2.99,03/09/19 20:37,"637 13th St, San Francisco, CA 94016" -173585,Bose SoundSport Headphones,1,99.99,03/09/19 15:15,"640 Adams St, New York City, NY 10001" -173586,27in FHD Monitor,1,149.99,03/07/19 12:17,"706 1st St, Austin, TX 73301" -173587,Bose SoundSport Headphones,1,99.99,03/23/19 21:08,"729 West St, San Francisco, CA 94016" -173588,AA Batteries (4-pack),1,3.84,03/03/19 17:31,"415 Lake St, San Francisco, CA 94016" -173589,Lightning Charging Cable,2,14.95,03/07/19 14:37,"972 South St, Atlanta, GA 30301" -173590,Lightning Charging Cable,1,14.95,03/27/19 13:02,"563 Cherry St, San Francisco, CA 94016" -173591,AA Batteries (4-pack),2,3.84,03/08/19 21:42,"246 Dogwood St, San Francisco, CA 94016" -173592,27in 4K Gaming Monitor,1,389.99,03/23/19 10:13,"659 5th St, New York City, NY 10001" -173593,AA Batteries (4-pack),1,3.84,03/21/19 00:16,"492 Cedar St, San Francisco, CA 94016" -173594,Apple Airpods Headphones,1,150,03/04/19 13:11,"599 Adams St, Seattle, WA 98101" -173595,27in FHD Monitor,1,149.99,03/10/19 15:41,"347 Maple St, Los Angeles, CA 90001" -173596,Lightning Charging Cable,1,14.95,03/20/19 02:57,"489 7th St, Dallas, TX 75001" -173597,AAA Batteries (4-pack),3,2.99,03/18/19 20:56,"355 Sunset St, New York City, NY 10001" -173598,Lightning Charging Cable,1,14.95,03/04/19 11:45,"611 Wilson St, Los Angeles, CA 90001" -173599,Apple Airpods Headphones,1,150,03/28/19 17:27,"892 Lincoln St, San Francisco, CA 94016" -173600,Google Phone,1,600,03/10/19 23:05,"552 Jefferson St, Atlanta, GA 30301" -173601,Lightning Charging Cable,1,14.95,03/26/19 12:11,"712 Hill St, Atlanta, GA 30301" -173602,iPhone,1,700,03/09/19 11:13,"695 Wilson St, Atlanta, GA 30301" -173603,27in 4K Gaming Monitor,1,389.99,03/20/19 13:38,"708 7th St, Los Angeles, CA 90001" -173604,Apple Airpods Headphones,1,150,03/18/19 22:07,"262 Main St, Dallas, TX 75001" -173605,AA Batteries (4-pack),1,3.84,03/20/19 16:40,"55 Jackson St, San Francisco, CA 94016" -173606,Wired Headphones,1,11.99,03/29/19 10:47,"536 11th St, Atlanta, GA 30301" -173607,34in Ultrawide Monitor,1,379.99,03/21/19 19:08,"262 Lake St, New York City, NY 10001" -173608,Lightning Charging Cable,1,14.95,03/19/19 10:13,"32 Pine St, Los Angeles, CA 90001" -173609,USB-C Charging Cable,1,11.95,03/08/19 18:08,"758 Lake St, Los Angeles, CA 90001" -173610,Apple Airpods Headphones,1,150,03/20/19 16:48,"103 7th St, San Francisco, CA 94016" -173611,Lightning Charging Cable,1,14.95,03/16/19 14:32,"424 5th St, Los Angeles, CA 90001" -173612,27in FHD Monitor,1,149.99,03/02/19 18:44,"15 South St, Dallas, TX 75001" -173613,AAA Batteries (4-pack),1,2.99,03/11/19 10:53,"568 Lincoln St, Los Angeles, CA 90001" -173614,Google Phone,1,600,03/13/19 12:50,"322 Pine St, New York City, NY 10001" -173615,Apple Airpods Headphones,1,150,03/18/19 13:56,"237 Park St, San Francisco, CA 94016" -173616,Apple Airpods Headphones,1,150,03/23/19 10:11,"570 River St, Austin, TX 73301" -173617,Lightning Charging Cable,1,14.95,03/03/19 19:35,"569 9th St, Los Angeles, CA 90001" -173618,Google Phone,1,600,03/20/19 23:44,"582 Walnut St, New York City, NY 10001" -173619,AAA Batteries (4-pack),1,2.99,03/12/19 19:50,"25 11th St, Austin, TX 73301" -173620,AAA Batteries (4-pack),1,2.99,03/18/19 10:50,"922 South St, San Francisco, CA 94016" -173621,Macbook Pro Laptop,1,1700,03/15/19 16:13,"806 Wilson St, New York City, NY 10001" -173622,Wired Headphones,1,11.99,03/20/19 08:58,"988 South St, San Francisco, CA 94016" -173623,Lightning Charging Cable,1,14.95,03/28/19 18:01,"322 Dogwood St, Dallas, TX 75001" -173624,Macbook Pro Laptop,1,1700,03/07/19 10:59,"639 9th St, New York City, NY 10001" -173625,Wired Headphones,1,11.99,03/16/19 12:11,"30 Dogwood St, Austin, TX 73301" -173626,USB-C Charging Cable,2,11.95,03/09/19 20:10,"205 2nd St, San Francisco, CA 94016" -173627,Wired Headphones,1,11.99,03/22/19 19:22,"959 Church St, San Francisco, CA 94016" -173628,Apple Airpods Headphones,1,150,03/15/19 12:58,"257 Highland St, Atlanta, GA 30301" -173629,Lightning Charging Cable,1,14.95,03/12/19 19:50,"214 5th St, New York City, NY 10001" -173630,AA Batteries (4-pack),1,3.84,03/06/19 00:13,"668 Main St, Los Angeles, CA 90001" -173631,Macbook Pro Laptop,1,1700,03/03/19 11:05,"852 Pine St, Los Angeles, CA 90001" -173632,Lightning Charging Cable,1,14.95,03/11/19 19:54,"253 South St, Dallas, TX 75001" -173633,Bose SoundSport Headphones,1,99.99,03/30/19 00:23,"227 Ridge St, Atlanta, GA 30301" -173634,Lightning Charging Cable,1,14.95,03/23/19 17:38,"114 Meadow St, Los Angeles, CA 90001" -173635,Lightning Charging Cable,1,14.95,03/19/19 15:10,"509 11th St, Dallas, TX 75001" -173636,USB-C Charging Cable,1,11.95,03/17/19 13:12,"346 Lakeview St, New York City, NY 10001" -173637,27in FHD Monitor,1,149.99,03/23/19 17:13,"153 Wilson St, San Francisco, CA 94016" -173638,AA Batteries (4-pack),2,3.84,03/10/19 19:02,"550 Forest St, Dallas, TX 75001" -173639,Apple Airpods Headphones,1,150,03/07/19 01:56,"716 Madison St, Atlanta, GA 30301" -173640,Wired Headphones,1,11.99,03/07/19 18:52,"157 Cedar St, New York City, NY 10001" -173641,USB-C Charging Cable,1,11.95,03/17/19 21:47,"728 14th St, San Francisco, CA 94016" -173642,ThinkPad Laptop,1,999.99,03/17/19 19:25,"503 6th St, New York City, NY 10001" -173643,Lightning Charging Cable,1,14.95,03/14/19 15:53,"685 Lincoln St, Boston, MA 02215" -173644,Apple Airpods Headphones,1,150,03/29/19 21:14,"149 12th St, Atlanta, GA 30301" -173645,Bose SoundSport Headphones,1,99.99,03/17/19 19:17,"457 Lakeview St, New York City, NY 10001" -173646,27in 4K Gaming Monitor,1,389.99,03/21/19 09:06,"659 Adams St, San Francisco, CA 94016" -173647,Vareebadd Phone,1,400,03/14/19 14:21,"310 Cedar St, Atlanta, GA 30301" -173647,Bose SoundSport Headphones,1,99.99,03/14/19 14:21,"310 Cedar St, Atlanta, GA 30301" -173647,Wired Headphones,1,11.99,03/14/19 14:21,"310 Cedar St, Atlanta, GA 30301" -173648,Wired Headphones,1,11.99,03/29/19 22:13,"95 2nd St, Atlanta, GA 30301" -173649,Flatscreen TV,1,300,03/18/19 10:17,"303 Johnson St, San Francisco, CA 94016" -173650,Lightning Charging Cable,1,14.95,03/04/19 21:31,"725 Sunset St, San Francisco, CA 94016" -173651,AAA Batteries (4-pack),1,2.99,03/23/19 20:47,"878 Ridge St, Los Angeles, CA 90001" -173652,27in 4K Gaming Monitor,1,389.99,03/28/19 22:01,"42 Cherry St, Seattle, WA 98101" -173653,AAA Batteries (4-pack),2,2.99,03/27/19 22:23,"820 5th St, New York City, NY 10001" -173654,AAA Batteries (4-pack),2,2.99,03/07/19 21:59,"230 Elm St, Seattle, WA 98101" -173655,Apple Airpods Headphones,1,150,03/17/19 05:43,"204 12th St, Los Angeles, CA 90001" -173656,Lightning Charging Cable,4,14.95,03/03/19 13:45,"705 River St, Boston, MA 02215" -173657,USB-C Charging Cable,1,11.95,03/27/19 15:59,"932 Forest St, San Francisco, CA 94016" -173658,ThinkPad Laptop,1,999.99,03/30/19 06:31,"228 Forest St, New York City, NY 10001" -173659,AAA Batteries (4-pack),1,2.99,03/28/19 16:59,"375 Madison St, New York City, NY 10001" -173660,Apple Airpods Headphones,1,150,03/27/19 23:56,"887 9th St, Boston, MA 02215" -173661,Macbook Pro Laptop,1,1700,03/28/19 12:31,"613 9th St, Atlanta, GA 30301" -173662,AAA Batteries (4-pack),1,2.99,03/08/19 19:50,"882 12th St, Dallas, TX 75001" -173663,Wired Headphones,1,11.99,03/23/19 13:58,"279 Dogwood St, Los Angeles, CA 90001" -173664,AAA Batteries (4-pack),1,2.99,03/27/19 21:13,"710 11th St, Atlanta, GA 30301" -173665,Wired Headphones,1,11.99,03/17/19 13:35,"785 West St, Dallas, TX 75001" -173666,Apple Airpods Headphones,1,150,03/26/19 13:30,"351 9th St, San Francisco, CA 94016" -173667,20in Monitor,1,109.99,03/09/19 20:43,"25 Meadow St, Los Angeles, CA 90001" -173668,Lightning Charging Cable,1,14.95,03/20/19 21:06,"29 Church St, Boston, MA 02215" -173669,USB-C Charging Cable,1,11.95,03/07/19 13:24,"779 Hill St, New York City, NY 10001" -173670,AA Batteries (4-pack),1,3.84,03/23/19 23:04,"410 Ridge St, New York City, NY 10001" -173671,AAA Batteries (4-pack),3,2.99,03/28/19 21:48,"895 Main St, Austin, TX 73301" -173672,Wired Headphones,1,11.99,03/16/19 16:41,"881 Main St, Seattle, WA 98101" -173673,Bose SoundSport Headphones,1,99.99,03/20/19 18:16,"408 Sunset St, Los Angeles, CA 90001" -173674,Apple Airpods Headphones,1,150,03/02/19 16:01,"353 9th St, Los Angeles, CA 90001" -173675,AAA Batteries (4-pack),5,2.99,03/26/19 18:14,"897 9th St, Boston, MA 02215" -173676,AAA Batteries (4-pack),1,2.99,03/01/19 10:56,"516 Jackson St, Seattle, WA 98101" -173677,Wired Headphones,1,11.99,03/19/19 20:23,"647 Pine St, New York City, NY 10001" -173678,Bose SoundSport Headphones,1,99.99,03/02/19 07:27,"771 South St, Los Angeles, CA 90001" -173679,Vareebadd Phone,1,400,03/28/19 13:43,"801 1st St, San Francisco, CA 94016" -173680,AA Batteries (4-pack),1,3.84,03/16/19 15:49,"973 Wilson St, San Francisco, CA 94016" -173681,Wired Headphones,1,11.99,03/30/19 11:49,"905 Willow St, Atlanta, GA 30301" -173682,Lightning Charging Cable,1,14.95,03/01/19 18:50,"451 Adams St, New York City, NY 10001" -173683,USB-C Charging Cable,1,11.95,03/14/19 16:38,"681 Ridge St, Boston, MA 02215" -173684,AA Batteries (4-pack),2,3.84,03/03/19 19:01,"769 North St, Dallas, TX 75001" -173685,iPhone,1,700,03/11/19 12:39,"743 11th St, San Francisco, CA 94016" -173686,27in FHD Monitor,1,149.99,03/30/19 16:15,"747 Church St, New York City, NY 10001" -173687,34in Ultrawide Monitor,1,379.99,03/19/19 12:35,"600 Madison St, New York City, NY 10001" -173688,Lightning Charging Cable,1,14.95,03/11/19 00:31,"258 Ridge St, Atlanta, GA 30301" -173689,27in 4K Gaming Monitor,1,389.99,03/17/19 12:51,"270 14th St, New York City, NY 10001" -173690,USB-C Charging Cable,1,11.95,03/31/19 19:18,"579 Jackson St, Atlanta, GA 30301" -173691,Google Phone,1,600,03/28/19 22:42,"562 Dogwood St, San Francisco, CA 94016" -173692,USB-C Charging Cable,1,11.95,03/24/19 11:30,"507 South St, Austin, TX 73301" -173693,USB-C Charging Cable,2,11.95,03/12/19 09:17,"459 Ridge St, San Francisco, CA 94016" -173694,Lightning Charging Cable,1,14.95,03/18/19 10:49,"768 Hill St, Dallas, TX 75001" -173695,AA Batteries (4-pack),1,3.84,03/27/19 12:51,"350 Main St, Dallas, TX 75001" -173695,Wired Headphones,1,11.99,03/27/19 12:51,"350 Main St, Dallas, TX 75001" -173696,Apple Airpods Headphones,1,150,03/20/19 12:50,"460 Forest St, Atlanta, GA 30301" -173697,AAA Batteries (4-pack),1,2.99,03/23/19 01:03,"377 Pine St, Atlanta, GA 30301" -173698,USB-C Charging Cable,1,11.95,03/28/19 11:06,"990 Jackson St, San Francisco, CA 94016" -173699,Macbook Pro Laptop,1,1700,03/08/19 13:45,"593 7th St, Portland, OR 97035" -173700,iPhone,1,700,03/14/19 07:06,"269 Walnut St, New York City, NY 10001" -173700,Lightning Charging Cable,1,14.95,03/14/19 07:06,"269 Walnut St, New York City, NY 10001" -173701,AAA Batteries (4-pack),1,2.99,03/12/19 14:04,"92 12th St, Atlanta, GA 30301" -173702,Wired Headphones,1,11.99,03/10/19 18:36,"534 Ridge St, Atlanta, GA 30301" -173703,AAA Batteries (4-pack),2,2.99,03/21/19 02:25,"789 Jackson St, Los Angeles, CA 90001" -173704,34in Ultrawide Monitor,1,379.99,03/25/19 22:00,"4 South St, Boston, MA 02215" -173705,USB-C Charging Cable,1,11.95,03/25/19 23:41,"900 Cherry St, Austin, TX 73301" -173706,AA Batteries (4-pack),2,3.84,03/11/19 20:08,"36 Walnut St, Boston, MA 02215" -173707,AA Batteries (4-pack),1,3.84,03/05/19 19:42,"265 Lake St, Austin, TX 73301" -173708,27in FHD Monitor,1,149.99,03/17/19 10:51,"863 6th St, Seattle, WA 98101" -173709,27in FHD Monitor,1,149.99,03/03/19 20:59,"198 River St, Boston, MA 02215" -173710,USB-C Charging Cable,1,11.95,03/05/19 14:44,"350 Ridge St, Dallas, TX 75001" -173711,Apple Airpods Headphones,1,150,03/21/19 20:07,"844 Church St, New York City, NY 10001" -173712,USB-C Charging Cable,1,11.95,03/20/19 06:46,"208 Sunset St, Austin, TX 73301" -173713,Apple Airpods Headphones,1,150,03/13/19 05:10,"27 11th St, Atlanta, GA 30301" -173714,AA Batteries (4-pack),1,3.84,03/21/19 18:16,"357 Pine St, San Francisco, CA 94016" -173715,Flatscreen TV,1,300,03/02/19 07:28,"117 Park St, San Francisco, CA 94016" -173716,Apple Airpods Headphones,1,150,03/06/19 11:27,"303 Center St, Dallas, TX 75001" -173716,iPhone,1,700,03/06/19 11:27,"303 Center St, Dallas, TX 75001" -173717,AA Batteries (4-pack),2,3.84,03/16/19 17:00,"893 14th St, Portland, OR 97035" -173718,USB-C Charging Cable,1,11.95,03/08/19 07:49,"115 Washington St, New York City, NY 10001" -173719,Lightning Charging Cable,1,14.95,03/05/19 20:12,"873 Lincoln St, Seattle, WA 98101" -173720,Wired Headphones,1,11.99,03/16/19 03:26,"191 Adams St, Seattle, WA 98101" -173721,Bose SoundSport Headphones,1,99.99,03/19/19 16:53,"871 West St, Portland, OR 97035" -173722,Apple Airpods Headphones,1,150,03/20/19 19:37,"709 Madison St, New York City, NY 10001" -173723,USB-C Charging Cable,1,11.95,03/11/19 11:46,"597 Spruce St, Los Angeles, CA 90001" -173724,AAA Batteries (4-pack),1,2.99,03/22/19 10:31,"38 Lake St, San Francisco, CA 94016" -173725,USB-C Charging Cable,1,11.95,03/20/19 13:07,"325 Jefferson St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -173726,AAA Batteries (4-pack),1,2.99,03/11/19 14:57,"407 River St, Austin, TX 73301" -173727,Apple Airpods Headphones,1,150,03/13/19 21:55,"598 Pine St, New York City, NY 10001" -173728,Wired Headphones,1,11.99,03/26/19 14:13,"284 Elm St, San Francisco, CA 94016" -173729,20in Monitor,1,109.99,03/06/19 07:17,"25 Meadow St, Atlanta, GA 30301" -173730,Wired Headphones,1,11.99,03/05/19 15:55,"965 Chestnut St, New York City, NY 10001" -173731,AAA Batteries (4-pack),3,2.99,03/16/19 18:14,"471 Madison St, Austin, TX 73301" -173732,AAA Batteries (4-pack),3,2.99,03/30/19 19:51,"125 Washington St, San Francisco, CA 94016" -173733,Vareebadd Phone,1,400,03/08/19 10:07,"799 Wilson St, San Francisco, CA 94016" -173733,USB-C Charging Cable,1,11.95,03/08/19 10:07,"799 Wilson St, San Francisco, CA 94016" -173734,USB-C Charging Cable,1,11.95,03/15/19 11:00,"656 7th St, Portland, OR 97035" -173735,Wired Headphones,1,11.99,03/03/19 16:33,"421 Elm St, Los Angeles, CA 90001" -173736,AA Batteries (4-pack),1,3.84,03/07/19 20:21,"986 Highland St, Portland, OR 97035" -173737,Wired Headphones,1,11.99,03/14/19 21:23,"273 Lincoln St, New York City, NY 10001" -173738,Flatscreen TV,1,300,03/23/19 16:42,"630 Church St, Boston, MA 02215" -173739,Apple Airpods Headphones,1,150,03/26/19 23:34,"27 11th St, New York City, NY 10001" -173740,Bose SoundSport Headphones,1,99.99,03/11/19 20:17,"725 Ridge St, San Francisco, CA 94016" -173740,Apple Airpods Headphones,1,150,03/11/19 20:17,"725 Ridge St, San Francisco, CA 94016" -173741,Apple Airpods Headphones,1,150,03/15/19 20:28,"805 Walnut St, Austin, TX 73301" -173742,AA Batteries (4-pack),1,3.84,03/24/19 18:13,"560 Main St, Los Angeles, CA 90001" -173743,LG Dryer,1,600.0,03/09/19 11:18,"261 Hill St, San Francisco, CA 94016" -173744,Apple Airpods Headphones,1,150,03/06/19 18:39,"126 Hill St, Portland, ME 04101" -173745,AAA Batteries (4-pack),1,2.99,03/04/19 16:08,"81 Hickory St, San Francisco, CA 94016" -173746,Macbook Pro Laptop,1,1700,03/20/19 17:30,"621 11th St, New York City, NY 10001" -173747,Lightning Charging Cable,1,14.95,03/27/19 10:36,"466 4th St, Dallas, TX 75001" -173748,ThinkPad Laptop,1,999.99,03/09/19 21:08,"68 Hickory St, New York City, NY 10001" -173749,AA Batteries (4-pack),1,3.84,03/21/19 16:00,"46 1st St, Atlanta, GA 30301" -173750,AAA Batteries (4-pack),2,2.99,03/12/19 18:48,"307 Maple St, Boston, MA 02215" -173751,AAA Batteries (4-pack),1,2.99,03/20/19 18:30,"712 West St, San Francisco, CA 94016" -173752,AAA Batteries (4-pack),1,2.99,03/04/19 21:27,"323 Lakeview St, New York City, NY 10001" -173753,Lightning Charging Cable,1,14.95,03/08/19 16:48,"216 4th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -173754,34in Ultrawide Monitor,1,379.99,03/24/19 22:05,"901 12th St, Portland, OR 97035" -173755,AA Batteries (4-pack),2,3.84,03/24/19 18:08,"889 7th St, Dallas, TX 75001" -173756,27in FHD Monitor,1,149.99,03/05/19 16:29,"216 Ridge St, San Francisco, CA 94016" -173757,Apple Airpods Headphones,1,150,03/14/19 22:33,"98 Sunset St, Seattle, WA 98101" -173758,Lightning Charging Cable,1,14.95,03/20/19 12:34,"100 Johnson St, Los Angeles, CA 90001" -173759,USB-C Charging Cable,1,11.95,03/05/19 17:53,"225 Walnut St, Boston, MA 02215" -173760,20in Monitor,1,109.99,03/18/19 15:34,"279 4th St, San Francisco, CA 94016" -173761,AA Batteries (4-pack),1,3.84,03/24/19 22:47,"906 Park St, Boston, MA 02215" -173762,Wired Headphones,1,11.99,03/19/19 23:01,"560 Ridge St, San Francisco, CA 94016" -173763,Lightning Charging Cable,1,14.95,03/13/19 09:31,"300 Lake St, Austin, TX 73301" -173764,Bose SoundSport Headphones,1,99.99,03/17/19 10:21,"682 West St, Boston, MA 02215" -173765,USB-C Charging Cable,1,11.95,03/07/19 13:16,"441 Lakeview St, Los Angeles, CA 90001" -173766,AAA Batteries (4-pack),1,2.99,03/13/19 04:03,"428 Madison St, New York City, NY 10001" -173767,Wired Headphones,1,11.99,03/09/19 10:28,"750 Lincoln St, San Francisco, CA 94016" -173768,AAA Batteries (4-pack),1,2.99,03/03/19 21:27,"356 Hickory St, Los Angeles, CA 90001" -173769,Bose SoundSport Headphones,1,99.99,03/14/19 01:14,"782 Cedar St, San Francisco, CA 94016" -173770,Google Phone,1,600,03/02/19 13:24,"425 Meadow St, Los Angeles, CA 90001" -173770,Wired Headphones,1,11.99,03/02/19 13:24,"425 Meadow St, Los Angeles, CA 90001" -173771,AA Batteries (4-pack),1,3.84,03/06/19 12:52,"619 Church St, Atlanta, GA 30301" -173772,AAA Batteries (4-pack),2,2.99,03/26/19 21:51,"291 Spruce St, San Francisco, CA 94016" -173773,27in FHD Monitor,1,149.99,03/04/19 18:31,"555 Jackson St, Los Angeles, CA 90001" -173774,Apple Airpods Headphones,1,150,03/17/19 20:33,"519 Walnut St, San Francisco, CA 94016" -173775,Apple Airpods Headphones,1,150,03/16/19 01:27,"359 Park St, San Francisco, CA 94016" -173776,iPhone,1,700,03/04/19 10:23,"116 Lincoln St, San Francisco, CA 94016" -173777,Apple Airpods Headphones,1,150,03/13/19 09:08,"99 4th St, Los Angeles, CA 90001" -173778,AA Batteries (4-pack),3,3.84,03/01/19 14:24,"444 Madison St, San Francisco, CA 94016" -173779,AAA Batteries (4-pack),1,2.99,03/03/19 10:34,"713 11th St, New York City, NY 10001" -173780,27in FHD Monitor,1,149.99,03/08/19 12:33,"600 12th St, Austin, TX 73301" -173781,iPhone,1,700,03/14/19 20:08,"981 Wilson St, Atlanta, GA 30301" -173781,Lightning Charging Cable,1,14.95,03/14/19 20:08,"981 Wilson St, Atlanta, GA 30301" -173782,Macbook Pro Laptop,1,1700,03/26/19 17:35,"855 Jefferson St, Atlanta, GA 30301" -173783,iPhone,1,700,03/03/19 21:23,"439 Lake St, San Francisco, CA 94016" -173784,Apple Airpods Headphones,1,150,03/27/19 23:20,"419 Maple St, Seattle, WA 98101" -173785,USB-C Charging Cable,1,11.95,03/26/19 14:41,"154 Walnut St, Dallas, TX 75001" -173786,Lightning Charging Cable,1,14.95,03/24/19 21:17,"850 13th St, New York City, NY 10001" -173787,Apple Airpods Headphones,1,150,03/12/19 14:37,"623 Meadow St, Portland, OR 97035" -173788,AA Batteries (4-pack),2,3.84,03/23/19 00:17,"748 5th St, New York City, NY 10001" -173789,ThinkPad Laptop,1,999.99,03/01/19 20:30,"885 13th St, Boston, MA 02215" -173790,27in FHD Monitor,1,149.99,03/22/19 07:33,"16 2nd St, San Francisco, CA 94016" -173791,Apple Airpods Headphones,1,150,03/17/19 11:43,"415 Washington St, New York City, NY 10001" -173792,Apple Airpods Headphones,1,150,03/12/19 02:15,"400 Center St, Atlanta, GA 30301" -173793,USB-C Charging Cable,1,11.95,03/05/19 18:26,"617 Chestnut St, Boston, MA 02215" -173794,Google Phone,1,600,03/25/19 07:21,"579 7th St, Seattle, WA 98101" -173795,Bose SoundSport Headphones,1,99.99,03/17/19 20:35,"673 Walnut St, Los Angeles, CA 90001" -173796,Macbook Pro Laptop,1,1700,03/31/19 17:03,"519 5th St, New York City, NY 10001" -173797,AA Batteries (4-pack),1,3.84,03/16/19 22:25,"738 Adams St, San Francisco, CA 94016" -173798,Bose SoundSport Headphones,1,99.99,03/28/19 09:05,"859 Lincoln St, Los Angeles, CA 90001" -173799,Wired Headphones,2,11.99,03/31/19 15:09,"52 Hill St, Los Angeles, CA 90001" -173800,ThinkPad Laptop,1,999.99,03/11/19 13:14,"518 1st St, San Francisco, CA 94016" -173801,34in Ultrawide Monitor,1,379.99,03/20/19 15:35,"434 9th St, Atlanta, GA 30301" -173802,Wired Headphones,2,11.99,03/14/19 00:21,"803 Hill St, San Francisco, CA 94016" -173803,USB-C Charging Cable,2,11.95,03/24/19 15:29,"791 4th St, San Francisco, CA 94016" -173803,USB-C Charging Cable,1,11.95,03/24/19 15:29,"791 4th St, San Francisco, CA 94016" -173804,27in 4K Gaming Monitor,1,389.99,03/26/19 14:17,"769 Willow St, Los Angeles, CA 90001" -173805,Lightning Charging Cable,1,14.95,03/30/19 03:25,"686 11th St, Boston, MA 02215" -173806,AAA Batteries (4-pack),1,2.99,03/02/19 20:09,"806 Meadow St, Atlanta, GA 30301" -173807,Lightning Charging Cable,1,14.95,03/05/19 21:55,"387 Pine St, Austin, TX 73301" -173808,AAA Batteries (4-pack),1,2.99,03/18/19 23:09,"945 Jackson St, Los Angeles, CA 90001" -173809,ThinkPad Laptop,1,999.99,03/22/19 11:55,"215 Center St, New York City, NY 10001" -173810,AAA Batteries (4-pack),1,2.99,03/05/19 18:27,"51 6th St, Los Angeles, CA 90001" -173811,Wired Headphones,1,11.99,03/27/19 12:44,"932 Jefferson St, San Francisco, CA 94016" -173812,20in Monitor,1,109.99,03/08/19 13:32,"320 Maple St, Los Angeles, CA 90001" -173813,Lightning Charging Cable,1,14.95,03/04/19 18:39,"538 2nd St, Los Angeles, CA 90001" -173814,USB-C Charging Cable,1,11.95,03/24/19 18:09,"71 Highland St, Los Angeles, CA 90001" -173815,Lightning Charging Cable,1,14.95,03/17/19 18:27,"921 14th St, Los Angeles, CA 90001" -173816,USB-C Charging Cable,1,11.95,03/23/19 13:50,"784 Washington St, Boston, MA 02215" -173817,27in FHD Monitor,1,149.99,03/10/19 15:13,"22 Chestnut St, Portland, OR 97035" -173818,USB-C Charging Cable,2,11.95,03/05/19 19:31,"52 Madison St, Boston, MA 02215" -173819,USB-C Charging Cable,1,11.95,03/22/19 16:21,"283 River St, San Francisco, CA 94016" -173820,AAA Batteries (4-pack),2,2.99,03/05/19 17:48,"486 Chestnut St, New York City, NY 10001" -173821,AAA Batteries (4-pack),1,2.99,03/26/19 11:34,"290 6th St, Austin, TX 73301" -173822,Wired Headphones,1,11.99,03/22/19 13:31,"693 2nd St, Atlanta, GA 30301" -173823,USB-C Charging Cable,1,11.95,03/17/19 22:01,"369 Dogwood St, New York City, NY 10001" -173824,AAA Batteries (4-pack),1,2.99,03/25/19 09:48,"799 Wilson St, New York City, NY 10001" -173825,USB-C Charging Cable,1,11.95,03/27/19 18:07,"228 4th St, San Francisco, CA 94016" -173826,Macbook Pro Laptop,1,1700,03/06/19 13:46,"263 Lincoln St, San Francisco, CA 94016" -173827,Wired Headphones,1,11.99,03/07/19 09:21,"527 13th St, Los Angeles, CA 90001" -173828,USB-C Charging Cable,1,11.95,03/09/19 17:32,"71 Ridge St, Austin, TX 73301" -173829,AA Batteries (4-pack),1,3.84,03/03/19 19:02,"510 10th St, San Francisco, CA 94016" -173830,ThinkPad Laptop,1,999.99,03/29/19 11:26,"755 Hill St, Portland, OR 97035" -173831,USB-C Charging Cable,1,11.95,03/08/19 20:36,"462 Adams St, Dallas, TX 75001" -173832,Bose SoundSport Headphones,1,99.99,03/30/19 18:10,"617 Cedar St, Dallas, TX 75001" -173833,Lightning Charging Cable,1,14.95,03/14/19 09:45,"348 11th St, Los Angeles, CA 90001" -173834,Flatscreen TV,1,300,03/23/19 18:35,"726 Forest St, San Francisco, CA 94016" -173835,AAA Batteries (4-pack),2,2.99,03/01/19 17:58,"61 10th St, Portland, ME 04101" -173836,AA Batteries (4-pack),1,3.84,03/16/19 12:29,"601 Spruce St, Portland, OR 97035" -173837,AA Batteries (4-pack),2,3.84,03/30/19 20:14,"704 Jackson St, New York City, NY 10001" -173838,Apple Airpods Headphones,1,150,03/13/19 19:16,"95 Ridge St, San Francisco, CA 94016" -173839,iPhone,1,700,03/12/19 13:19,"216 Meadow St, San Francisco, CA 94016" -173840,USB-C Charging Cable,1,11.95,03/27/19 11:24,"298 8th St, Los Angeles, CA 90001" -173841,AAA Batteries (4-pack),4,2.99,03/18/19 20:18,"927 7th St, Dallas, TX 75001" -173842,USB-C Charging Cable,1,11.95,03/13/19 23:39,"773 Walnut St, Los Angeles, CA 90001" -173843,AA Batteries (4-pack),1,3.84,03/28/19 08:03,"646 Forest St, Portland, OR 97035" -173844,Apple Airpods Headphones,1,150,03/05/19 17:27,"460 Cherry St, San Francisco, CA 94016" -173845,Bose SoundSport Headphones,1,99.99,03/30/19 13:48,"207 11th St, New York City, NY 10001" -173846,20in Monitor,1,109.99,03/31/19 10:52,"190 Willow St, Dallas, TX 75001" -173847,LG Dryer,1,600.0,03/21/19 15:41,"625 11th St, Atlanta, GA 30301" -173848,Apple Airpods Headphones,1,150,03/26/19 11:29,"46 Meadow St, Dallas, TX 75001" -173849,Bose SoundSport Headphones,1,99.99,03/28/19 16:07,"602 Forest St, Los Angeles, CA 90001" -173850,Lightning Charging Cable,1,14.95,03/03/19 13:16,"544 West St, Los Angeles, CA 90001" -173851,AAA Batteries (4-pack),4,2.99,03/23/19 18:23,"71 Church St, Dallas, TX 75001" -173852,Flatscreen TV,1,300,03/25/19 15:10,"164 1st St, San Francisco, CA 94016" -173853,AA Batteries (4-pack),2,3.84,03/24/19 23:07,"290 Cedar St, San Francisco, CA 94016" -173854,Lightning Charging Cable,1,14.95,03/21/19 17:39,"872 North St, New York City, NY 10001" -173855,Apple Airpods Headphones,1,150,03/16/19 12:48,"30 Walnut St, Boston, MA 02215" -173856,AA Batteries (4-pack),2,3.84,03/12/19 06:30,"955 Spruce St, Boston, MA 02215" -173857,AAA Batteries (4-pack),1,2.99,03/06/19 12:33,"687 Meadow St, Los Angeles, CA 90001" -173858,AAA Batteries (4-pack),2,2.99,03/06/19 19:39,"636 Lakeview St, Boston, MA 02215" -173859,Bose SoundSport Headphones,1,99.99,03/02/19 15:11,"47 Washington St, Portland, OR 97035" -173860,27in FHD Monitor,1,149.99,03/28/19 07:54,"669 Walnut St, Los Angeles, CA 90001" -173861,Lightning Charging Cable,1,14.95,03/14/19 18:30,"316 Main St, Los Angeles, CA 90001" -173862,Lightning Charging Cable,1,14.95,03/24/19 11:44,"316 6th St, Los Angeles, CA 90001" -173863,AAA Batteries (4-pack),2,2.99,03/13/19 15:59,"156 Lake St, New York City, NY 10001" -173864,Bose SoundSport Headphones,1,99.99,03/24/19 09:12,"243 Sunset St, Portland, OR 97035" -173865,AAA Batteries (4-pack),1,2.99,03/14/19 17:39,"308 Wilson St, San Francisco, CA 94016" -173866,AAA Batteries (4-pack),1,2.99,03/24/19 12:57,"770 Dogwood St, San Francisco, CA 94016" -173867,Lightning Charging Cable,1,14.95,03/13/19 00:41,"729 Meadow St, Seattle, WA 98101" -173868,Lightning Charging Cable,1,14.95,03/15/19 22:51,"169 1st St, Los Angeles, CA 90001" -173869,Google Phone,1,600,03/04/19 11:29,"28 Dogwood St, Seattle, WA 98101" -173869,USB-C Charging Cable,1,11.95,03/04/19 11:29,"28 Dogwood St, Seattle, WA 98101" -173870,USB-C Charging Cable,1,11.95,03/27/19 13:59,"824 Jefferson St, Seattle, WA 98101" -173871,USB-C Charging Cable,1,11.95,03/30/19 10:49,"797 Walnut St, Boston, MA 02215" -173872,Wired Headphones,1,11.99,03/14/19 21:19,"381 2nd St, Dallas, TX 75001" -173873,USB-C Charging Cable,1,11.95,03/22/19 08:19,"870 10th St, San Francisco, CA 94016" -173874,Lightning Charging Cable,1,14.95,03/03/19 10:45,"423 Johnson St, New York City, NY 10001" -173875,Macbook Pro Laptop,1,1700,03/27/19 11:03,"387 1st St, Portland, OR 97035" -173876,USB-C Charging Cable,1,11.95,03/13/19 09:43,"740 Main St, Austin, TX 73301" -173877,27in FHD Monitor,1,149.99,03/23/19 10:41,"812 12th St, Los Angeles, CA 90001" -173878,Google Phone,1,600,03/29/19 11:48,"305 Forest St, Dallas, TX 75001" -173879,Wired Headphones,1,11.99,03/03/19 00:03,"487 13th St, Atlanta, GA 30301" -173880,AAA Batteries (4-pack),1,2.99,03/06/19 12:02,"429 Washington St, San Francisco, CA 94016" -173881,Flatscreen TV,1,300,03/26/19 17:29,"960 Dogwood St, Seattle, WA 98101" -173882,Bose SoundSport Headphones,1,99.99,03/23/19 11:55,"396 Jackson St, San Francisco, CA 94016" -173883,iPhone,1,700,03/27/19 11:58,"85 5th St, Seattle, WA 98101" -173884,Lightning Charging Cable,1,14.95,03/13/19 09:54,"229 Center St, Portland, OR 97035" -173885,AAA Batteries (4-pack),1,2.99,03/08/19 20:11,"724 Willow St, New York City, NY 10001" -173886,34in Ultrawide Monitor,1,379.99,03/31/19 15:53,"855 Wilson St, San Francisco, CA 94016" -173887,Bose SoundSport Headphones,1,99.99,03/29/19 11:21,"126 Church St, Dallas, TX 75001" -173888,LG Dryer,1,600.0,03/21/19 13:56,"716 6th St, Los Angeles, CA 90001" -173889,Macbook Pro Laptop,1,1700,03/06/19 12:00,"167 North St, San Francisco, CA 94016" -173890,AAA Batteries (4-pack),2,2.99,03/18/19 09:05,"350 Lake St, Boston, MA 02215" -173891,AA Batteries (4-pack),1,3.84,03/02/19 21:28,"662 Willow St, Atlanta, GA 30301" -173892,Lightning Charging Cable,1,14.95,03/13/19 22:25,"623 5th St, Los Angeles, CA 90001" -173893,Flatscreen TV,1,300,03/29/19 22:53,"139 Johnson St, New York City, NY 10001" -173894,Macbook Pro Laptop,1,1700,03/05/19 09:46,"333 Sunset St, Portland, OR 97035" -173895,Wired Headphones,1,11.99,03/28/19 16:17,"316 9th St, Austin, TX 73301" -173896,20in Monitor,1,109.99,03/07/19 17:41,"743 Hill St, Dallas, TX 75001" -173897,AA Batteries (4-pack),1,3.84,03/28/19 09:45,"801 Wilson St, Portland, ME 04101" -173898,Bose SoundSport Headphones,1,99.99,03/27/19 08:25,"992 6th St, New York City, NY 10001" -173899,Flatscreen TV,1,300,03/04/19 16:47,"409 1st St, Dallas, TX 75001" -173900,Wired Headphones,1,11.99,03/24/19 11:27,"416 Jackson St, San Francisco, CA 94016" -173901,AAA Batteries (4-pack),1,2.99,03/23/19 13:11,"316 1st St, New York City, NY 10001" -173902,AAA Batteries (4-pack),2,2.99,03/28/19 20:29,"319 7th St, San Francisco, CA 94016" -173903,USB-C Charging Cable,2,11.95,03/29/19 09:12,"88 6th St, Los Angeles, CA 90001" -173904,Wired Headphones,1,11.99,03/04/19 21:45,"520 Main St, San Francisco, CA 94016" -173905,34in Ultrawide Monitor,1,379.99,03/09/19 17:19,"48 Lincoln St, San Francisco, CA 94016" -173906,USB-C Charging Cable,1,11.95,03/28/19 08:11,"451 7th St, San Francisco, CA 94016" -173907,USB-C Charging Cable,1,11.95,03/29/19 15:17,"579 8th St, Atlanta, GA 30301" -173908,USB-C Charging Cable,1,11.95,03/13/19 10:50,"814 1st St, Seattle, WA 98101" -173909,AA Batteries (4-pack),2,3.84,03/05/19 09:19,"278 Meadow St, Austin, TX 73301" -173910,LG Dryer,1,600.0,03/18/19 12:47,"535 13th St, Portland, ME 04101" -173911,Apple Airpods Headphones,1,150,03/04/19 20:04,"505 Washington St, Seattle, WA 98101" -173912,Lightning Charging Cable,1,14.95,03/13/19 22:54,"354 Cedar St, Seattle, WA 98101" -173913,Bose SoundSport Headphones,1,99.99,03/30/19 12:33,"333 Elm St, New York City, NY 10001" -173914,AAA Batteries (4-pack),1,2.99,03/15/19 09:24,"876 Johnson St, Austin, TX 73301" -173915,AA Batteries (4-pack),2,3.84,03/02/19 18:40,"4 Cedar St, Portland, OR 97035" -173916,Wired Headphones,1,11.99,03/19/19 13:13,"844 2nd St, Los Angeles, CA 90001" -173917,20in Monitor,1,109.99,03/23/19 19:23,"600 Adams St, Portland, ME 04101" -173918,Bose SoundSport Headphones,1,99.99,03/21/19 22:15,"42 Elm St, San Francisco, CA 94016" -173918,Wired Headphones,1,11.99,03/21/19 22:15,"42 Elm St, San Francisco, CA 94016" -173919,27in FHD Monitor,1,149.99,03/26/19 17:46,"113 9th St, Los Angeles, CA 90001" -173920,Lightning Charging Cable,1,14.95,03/07/19 16:02,"130 7th St, Portland, OR 97035" -173921,Wired Headphones,1,11.99,03/30/19 19:33,"564 13th St, Boston, MA 02215" -173922,Lightning Charging Cable,1,14.95,03/10/19 19:46,"631 7th St, Portland, OR 97035" -173923,Lightning Charging Cable,1,14.95,03/14/19 17:24,"741 Forest St, Dallas, TX 75001" -173924,Wired Headphones,1,11.99,03/12/19 21:20,"105 7th St, New York City, NY 10001" -173925,AA Batteries (4-pack),1,3.84,03/27/19 20:55,"874 Wilson St, San Francisco, CA 94016" -173926,AAA Batteries (4-pack),1,2.99,03/29/19 19:08,"884 8th St, Los Angeles, CA 90001" -173927,20in Monitor,1,109.99,03/27/19 19:50,"134 Johnson St, Los Angeles, CA 90001" -173928,iPhone,1,700,03/21/19 00:23,"208 Highland St, Atlanta, GA 30301" -173929,Flatscreen TV,1,300,03/04/19 18:17,"553 Madison St, Dallas, TX 75001" -173930,Wired Headphones,1,11.99,03/17/19 11:27,"211 4th St, Los Angeles, CA 90001" -173931,Lightning Charging Cable,1,14.95,03/19/19 13:59,"542 Cherry St, New York City, NY 10001" -173932,USB-C Charging Cable,1,11.95,03/11/19 18:51,"1 Madison St, Atlanta, GA 30301" -173933,AA Batteries (4-pack),1,3.84,03/05/19 07:36,"146 Jefferson St, Seattle, WA 98101" -173934,Lightning Charging Cable,1,14.95,03/01/19 12:55,"674 12th St, Los Angeles, CA 90001" -173935,Flatscreen TV,1,300,03/17/19 11:39,"139 2nd St, Atlanta, GA 30301" -173936,AAA Batteries (4-pack),1,2.99,03/08/19 15:42,"724 Ridge St, Dallas, TX 75001" -173936,Apple Airpods Headphones,1,150,03/08/19 15:42,"724 Ridge St, Dallas, TX 75001" -173937,27in 4K Gaming Monitor,1,389.99,03/29/19 17:06,"273 7th St, Los Angeles, CA 90001" -173937,LG Dryer,1,600.0,03/29/19 17:06,"273 7th St, Los Angeles, CA 90001" -173938,Lightning Charging Cable,2,14.95,03/20/19 09:20,"482 North St, New York City, NY 10001" -173939,AA Batteries (4-pack),1,3.84,03/05/19 16:54,"705 River St, San Francisco, CA 94016" -173940,ThinkPad Laptop,1,999.99,03/21/19 18:26,"658 Jackson St, Seattle, WA 98101" -173941,27in 4K Gaming Monitor,1,389.99,03/22/19 20:47,"127 Church St, San Francisco, CA 94016" -173942,USB-C Charging Cable,1,11.95,03/27/19 19:03,"75 5th St, San Francisco, CA 94016" -173943,USB-C Charging Cable,1,11.95,03/13/19 19:44,"556 North St, Boston, MA 02215" -173944,AA Batteries (4-pack),1,3.84,03/15/19 18:04,"715 Cherry St, Atlanta, GA 30301" -173945,Wired Headphones,1,11.99,03/08/19 10:59,"726 Adams St, San Francisco, CA 94016" -173946,27in 4K Gaming Monitor,1,389.99,03/24/19 20:30,"560 Center St, San Francisco, CA 94016" -173947,AA Batteries (4-pack),1,3.84,03/07/19 18:54,"616 6th St, Dallas, TX 75001" -173948,Apple Airpods Headphones,1,150,03/26/19 21:23,"454 6th St, Dallas, TX 75001" -173949,Bose SoundSport Headphones,1,99.99,03/28/19 21:46,"840 Park St, Boston, MA 02215" -173950,iPhone,1,700,03/03/19 23:07,"767 6th St, San Francisco, CA 94016" -173951,USB-C Charging Cable,1,11.95,03/07/19 21:38,"834 10th St, New York City, NY 10001" -173952,20in Monitor,1,109.99,03/12/19 12:17,"301 Church St, Atlanta, GA 30301" -173953,Lightning Charging Cable,1,14.95,03/21/19 13:29,"745 Maple St, New York City, NY 10001" -173954,Wired Headphones,1,11.99,03/22/19 11:59,"78 Maple St, San Francisco, CA 94016" -173955,AAA Batteries (4-pack),1,2.99,03/17/19 07:32,"254 8th St, Austin, TX 73301" -173956,Lightning Charging Cable,1,14.95,03/22/19 08:59,"687 Adams St, Los Angeles, CA 90001" -173957,Google Phone,1,600,03/24/19 18:02,"285 2nd St, New York City, NY 10001" -173958,AAA Batteries (4-pack),1,2.99,03/21/19 17:34,"214 1st St, Seattle, WA 98101" -173959,20in Monitor,1,109.99,03/19/19 08:22,"642 Elm St, New York City, NY 10001" -173960,Apple Airpods Headphones,1,150,03/05/19 12:48,"77 Hickory St, Portland, OR 97035" -173961,Lightning Charging Cable,1,14.95,03/17/19 00:33,"52 1st St, New York City, NY 10001" -173962,Lightning Charging Cable,1,14.95,03/10/19 17:26,"198 Cedar St, Boston, MA 02215" -173963,27in FHD Monitor,1,149.99,03/21/19 19:15,"460 Forest St, New York City, NY 10001" -173964,Bose SoundSport Headphones,1,99.99,03/22/19 00:08,"705 Dogwood St, Seattle, WA 98101" -173965,Lightning Charging Cable,1,14.95,03/26/19 06:44,"41 Main St, Dallas, TX 75001" -173966,Wired Headphones,1,11.99,03/27/19 21:08,"741 Church St, Dallas, TX 75001" -173967,AAA Batteries (4-pack),1,2.99,03/09/19 09:29,"488 Maple St, Atlanta, GA 30301" -173968,27in 4K Gaming Monitor,1,389.99,03/03/19 20:05,"443 River St, Boston, MA 02215" -173969,Wired Headphones,1,11.99,03/04/19 17:28,"477 Jackson St, San Francisco, CA 94016" -173969,27in FHD Monitor,1,149.99,03/04/19 17:28,"477 Jackson St, San Francisco, CA 94016" -173970,Wired Headphones,2,11.99,03/14/19 19:21,"635 Hill St, Los Angeles, CA 90001" -173971,USB-C Charging Cable,1,11.95,03/29/19 07:56,"249 Wilson St, San Francisco, CA 94016" -173972,Macbook Pro Laptop,1,1700,03/04/19 11:39,"896 6th St, Dallas, TX 75001" -173973,AAA Batteries (4-pack),3,2.99,03/10/19 21:12,"461 Forest St, Los Angeles, CA 90001" -173974,AA Batteries (4-pack),1,3.84,03/13/19 12:31,"338 Johnson St, Portland, OR 97035" -173975,Wired Headphones,1,11.99,03/18/19 06:49,"561 Spruce St, Portland, ME 04101" -173976,Apple Airpods Headphones,1,150,03/22/19 22:03,"236 11th St, Portland, ME 04101" -173977,Apple Airpods Headphones,1,150,03/20/19 13:43,"941 8th St, Los Angeles, CA 90001" -173978,USB-C Charging Cable,1,11.95,03/09/19 08:38,"652 1st St, Los Angeles, CA 90001" -173979,AAA Batteries (4-pack),1,2.99,03/28/19 17:45,"305 Lincoln St, Dallas, TX 75001" -173980,Google Phone,1,600,03/29/19 06:28,"903 Forest St, Boston, MA 02215" -173980,USB-C Charging Cable,1,11.95,03/29/19 06:28,"903 Forest St, Boston, MA 02215" -173981,USB-C Charging Cable,1,11.95,03/01/19 12:24,"755 Sunset St, New York City, NY 10001" -173982,USB-C Charging Cable,1,11.95,03/16/19 11:03,"425 Church St, San Francisco, CA 94016" -173983,Lightning Charging Cable,1,14.95,03/03/19 19:46,"238 Cherry St, Portland, OR 97035" -173984,Apple Airpods Headphones,1,150,03/05/19 08:33,"397 Meadow St, New York City, NY 10001" -173985,ThinkPad Laptop,1,999.99,03/08/19 18:20,"741 South St, Atlanta, GA 30301" -173986,Flatscreen TV,1,300,03/28/19 19:38,"123 12th St, Dallas, TX 75001" -173987,AAA Batteries (4-pack),1,2.99,03/29/19 17:31,"279 Meadow St, Los Angeles, CA 90001" -173988,AA Batteries (4-pack),1,3.84,03/09/19 17:53,"865 Hickory St, Los Angeles, CA 90001" -173989,AAA Batteries (4-pack),1,2.99,03/25/19 11:56,"556 8th St, Austin, TX 73301" -173990,LG Dryer,1,600.0,03/30/19 22:10,"449 Ridge St, Dallas, TX 75001" -173991,AA Batteries (4-pack),1,3.84,03/09/19 19:25,"85 10th St, Los Angeles, CA 90001" -173992,AA Batteries (4-pack),1,3.84,03/11/19 18:25,"787 Walnut St, San Francisco, CA 94016" -173993,AAA Batteries (4-pack),1,2.99,03/29/19 11:23,"640 Ridge St, New York City, NY 10001" -173994,AA Batteries (4-pack),1,3.84,03/09/19 18:47,"904 5th St, Los Angeles, CA 90001" -173995,Wired Headphones,1,11.99,03/03/19 22:20,"548 4th St, Dallas, TX 75001" -173996,AAA Batteries (4-pack),1,2.99,03/06/19 21:05,"205 Highland St, Boston, MA 02215" -173997,27in FHD Monitor,1,149.99,03/06/19 00:27,"272 Meadow St, New York City, NY 10001" -173998,AAA Batteries (4-pack),1,2.99,03/19/19 08:11,"795 Highland St, San Francisco, CA 94016" -173999,iPhone,1,700,03/04/19 13:56,"951 Meadow St, Austin, TX 73301" -174000,Google Phone,1,600,03/31/19 10:59,"541 Washington St, San Francisco, CA 94016" -174001,USB-C Charging Cable,1,11.95,03/13/19 05:51,"141 River St, New York City, NY 10001" -174002,AAA Batteries (4-pack),1,2.99,03/13/19 15:41,"879 Main St, San Francisco, CA 94016" -174003,AA Batteries (4-pack),1,3.84,03/07/19 08:45,"559 Hickory St, San Francisco, CA 94016" -174004,Apple Airpods Headphones,1,150,03/23/19 11:19,"611 Sunset St, Los Angeles, CA 90001" -174005,20in Monitor,1,109.99,03/30/19 12:55,"899 8th St, Los Angeles, CA 90001" -174006,AAA Batteries (4-pack),1,2.99,03/19/19 09:33,"641 Highland St, Seattle, WA 98101" -174007,34in Ultrawide Monitor,1,379.99,03/04/19 13:22,"621 Walnut St, San Francisco, CA 94016" -174008,AA Batteries (4-pack),1,3.84,03/03/19 21:23,"284 Madison St, Dallas, TX 75001" -174009,AAA Batteries (4-pack),1,2.99,03/14/19 20:14,"190 13th St, Los Angeles, CA 90001" -174010,AAA Batteries (4-pack),2,2.99,03/16/19 12:16,"839 Wilson St, New York City, NY 10001" -174011,AAA Batteries (4-pack),1,2.99,03/08/19 22:18,"147 Madison St, San Francisco, CA 94016" -174012,Google Phone,1,600,03/19/19 13:32,"291 Hill St, San Francisco, CA 94016" -174013,USB-C Charging Cable,1,11.95,03/23/19 22:07,"690 South St, Dallas, TX 75001" -174014,AA Batteries (4-pack),1,3.84,03/19/19 03:55,"17 Spruce St, Dallas, TX 75001" -174015,Lightning Charging Cable,1,14.95,03/06/19 11:51,"452 Willow St, Atlanta, GA 30301" -174016,AA Batteries (4-pack),1,3.84,03/08/19 16:01,"108 8th St, Dallas, TX 75001" -174017,AAA Batteries (4-pack),1,2.99,03/19/19 15:10,"316 7th St, San Francisco, CA 94016" -174018,AA Batteries (4-pack),2,3.84,03/27/19 16:46,"174 Elm St, Atlanta, GA 30301" -174019,USB-C Charging Cable,1,11.95,03/14/19 10:22,"203 Meadow St, Los Angeles, CA 90001" -174020,Wired Headphones,1,11.99,03/31/19 06:04,"389 Jackson St, Dallas, TX 75001" -174021,AA Batteries (4-pack),3,3.84,03/15/19 21:22,"518 Highland St, San Francisco, CA 94016" -174022,27in FHD Monitor,1,149.99,03/16/19 10:58,"247 Elm St, Los Angeles, CA 90001" -174023,USB-C Charging Cable,1,11.95,03/20/19 15:09,"664 2nd St, San Francisco, CA 94016" -174024,AAA Batteries (4-pack),1,2.99,03/08/19 11:39,"730 Walnut St, Boston, MA 02215" -174025,AA Batteries (4-pack),2,3.84,03/19/19 08:47,"532 Church St, Dallas, TX 75001" -174026,Apple Airpods Headphones,1,150,03/13/19 19:26,"19 Walnut St, Boston, MA 02215" -174027,Wired Headphones,1,11.99,03/13/19 11:41,"201 12th St, San Francisco, CA 94016" -174028,USB-C Charging Cable,2,11.95,03/30/19 17:47,"431 West St, San Francisco, CA 94016" -174029,34in Ultrawide Monitor,1,379.99,03/12/19 12:22,"151 Lakeview St, Boston, MA 02215" -174030,USB-C Charging Cable,1,11.95,03/02/19 12:31,"849 12th St, Seattle, WA 98101" -174031,Apple Airpods Headphones,1,150,03/09/19 19:02,"196 River St, Los Angeles, CA 90001" -174032,Bose SoundSport Headphones,1,99.99,03/14/19 06:13,"954 Cherry St, Boston, MA 02215" -174033,Apple Airpods Headphones,1,150,03/07/19 15:50,"217 Wilson St, Austin, TX 73301" -174034,Wired Headphones,1,11.99,03/28/19 20:19,"989 Hill St, Dallas, TX 75001" -174035,AA Batteries (4-pack),2,3.84,03/02/19 10:27,"178 Dogwood St, Boston, MA 02215" -174036,Wired Headphones,1,11.99,03/08/19 11:29,"223 Lake St, San Francisco, CA 94016" -174037,Lightning Charging Cable,1,14.95,03/30/19 18:16,"375 Lake St, Atlanta, GA 30301" -174038,Wired Headphones,1,11.99,03/15/19 13:52,"321 West St, Los Angeles, CA 90001" -174039,Bose SoundSport Headphones,1,99.99,03/16/19 20:05,"81 14th St, Atlanta, GA 30301" -174040,ThinkPad Laptop,1,999.99,03/04/19 15:28,"456 Lincoln St, San Francisco, CA 94016" -174041,Wired Headphones,1,11.99,03/15/19 20:55,"883 River St, Austin, TX 73301" -174042,USB-C Charging Cable,1,11.95,03/19/19 20:05,"523 Cedar St, New York City, NY 10001" -174043,AAA Batteries (4-pack),2,2.99,03/19/19 09:08,"372 1st St, New York City, NY 10001" -174044,Google Phone,1,600,03/30/19 17:07,"176 Jefferson St, New York City, NY 10001" -174045,USB-C Charging Cable,3,11.95,03/26/19 22:29,"936 4th St, New York City, NY 10001" -174046,AA Batteries (4-pack),1,3.84,03/15/19 00:04,"589 Forest St, Seattle, WA 98101" -174047,AA Batteries (4-pack),1,3.84,03/25/19 20:33,"155 North St, Atlanta, GA 30301" -174048,ThinkPad Laptop,1,999.99,03/13/19 10:51,"960 Highland St, New York City, NY 10001" -174049,Apple Airpods Headphones,1,150,03/24/19 15:43,"611 Ridge St, Austin, TX 73301" -174050,AA Batteries (4-pack),1,3.84,03/31/19 13:34,"50 9th St, San Francisco, CA 94016" -174051,Apple Airpods Headphones,1,150,03/08/19 16:22,"755 12th St, Seattle, WA 98101" -174052,AAA Batteries (4-pack),2,2.99,03/17/19 13:27,"293 2nd St, Dallas, TX 75001" -174053,Bose SoundSport Headphones,1,99.99,03/10/19 10:57,"246 Wilson St, New York City, NY 10001" -174054,USB-C Charging Cable,1,11.95,03/23/19 19:49,"96 10th St, Boston, MA 02215" -174055,Lightning Charging Cable,1,14.95,03/19/19 09:41,"405 Jefferson St, Dallas, TX 75001" -174056,AAA Batteries (4-pack),2,2.99,03/25/19 00:00,"147 6th St, Los Angeles, CA 90001" -174057,AAA Batteries (4-pack),1,2.99,03/22/19 09:29,"799 4th St, Boston, MA 02215" -174058,AAA Batteries (4-pack),1,2.99,03/06/19 17:50,"43 Elm St, Los Angeles, CA 90001" -174059,AA Batteries (4-pack),1,3.84,03/22/19 20:25,"4 7th St, New York City, NY 10001" -174060,AA Batteries (4-pack),3,3.84,03/18/19 16:45,"712 Chestnut St, San Francisco, CA 94016" -174061,AA Batteries (4-pack),1,3.84,03/23/19 17:33,"888 Church St, Los Angeles, CA 90001" -174062,AA Batteries (4-pack),1,3.84,03/31/19 12:02,"176 Meadow St, San Francisco, CA 94016" -174063,AA Batteries (4-pack),1,3.84,03/24/19 18:01,"406 River St, New York City, NY 10001" -174064,Macbook Pro Laptop,1,1700,03/20/19 17:05,"525 Elm St, San Francisco, CA 94016" -174065,27in 4K Gaming Monitor,1,389.99,03/21/19 22:06,"184 Dogwood St, San Francisco, CA 94016" -174066,Flatscreen TV,1,300,03/22/19 10:04,"217 Park St, San Francisco, CA 94016" -174067,AA Batteries (4-pack),1,3.84,03/18/19 19:14,"447 Jefferson St, Dallas, TX 75001" -174068,Lightning Charging Cable,1,14.95,03/20/19 19:23,"840 Washington St, Dallas, TX 75001" -174069,AA Batteries (4-pack),2,3.84,03/18/19 18:29,"162 Sunset St, Seattle, WA 98101" -174070,Lightning Charging Cable,1,14.95,03/23/19 16:16,"321 Dogwood St, Portland, OR 97035" -174071,Apple Airpods Headphones,1,150,03/30/19 14:12,"482 Madison St, Boston, MA 02215" -174072,ThinkPad Laptop,1,999.99,03/14/19 16:21,"758 Forest St, Seattle, WA 98101" -174073,Wired Headphones,1,11.99,03/22/19 14:22,"994 Forest St, New York City, NY 10001" -174074,AA Batteries (4-pack),1,3.84,03/10/19 16:40,"81 Willow St, Dallas, TX 75001" -174075,USB-C Charging Cable,1,11.95,03/10/19 14:17,"984 Walnut St, Boston, MA 02215" -174076,Wired Headphones,1,11.99,03/03/19 18:47,"155 14th St, Boston, MA 02215" -174077,Bose SoundSport Headphones,1,99.99,03/02/19 04:48,"104 North St, Seattle, WA 98101" -174078,Wired Headphones,1,11.99,03/18/19 20:12,"545 River St, Atlanta, GA 30301" -174079,Bose SoundSport Headphones,1,99.99,03/11/19 07:46,"459 1st St, San Francisco, CA 94016" -174080,Wired Headphones,1,11.99,03/23/19 12:31,"623 South St, New York City, NY 10001" -174081,AAA Batteries (4-pack),1,2.99,03/27/19 15:20,"406 Lakeview St, Boston, MA 02215" -174082,AAA Batteries (4-pack),1,2.99,03/25/19 12:34,"850 4th St, Los Angeles, CA 90001" -174083,Bose SoundSport Headphones,1,99.99,03/09/19 14:36,"745 Walnut St, Boston, MA 02215" -174084,AA Batteries (4-pack),2,3.84,03/27/19 15:56,"721 6th St, Los Angeles, CA 90001" -174085,Lightning Charging Cable,1,14.95,03/07/19 19:26,"142 Adams St, Los Angeles, CA 90001" -174086,34in Ultrawide Monitor,1,379.99,03/09/19 20:15,"595 Main St, Los Angeles, CA 90001" -174087,AAA Batteries (4-pack),2,2.99,03/05/19 22:28,"530 5th St, Los Angeles, CA 90001" -174088,Lightning Charging Cable,1,14.95,03/10/19 10:40,"589 Hickory St, Atlanta, GA 30301" -174089,Macbook Pro Laptop,1,1700,03/18/19 00:28,"606 Wilson St, San Francisco, CA 94016" -174090,AAA Batteries (4-pack),2,2.99,03/18/19 12:13,"153 Wilson St, Los Angeles, CA 90001" -174091,Wired Headphones,1,11.99,03/17/19 19:56,"205 Washington St, San Francisco, CA 94016" -174092,Bose SoundSport Headphones,1,99.99,03/02/19 09:44,"87 River St, Los Angeles, CA 90001" -174093,AA Batteries (4-pack),1,3.84,03/30/19 10:30,"385 8th St, Portland, ME 04101" -174094,Flatscreen TV,1,300,03/15/19 00:05,"788 9th St, Los Angeles, CA 90001" -174095,AA Batteries (4-pack),1,3.84,03/27/19 10:17,"660 Hill St, New York City, NY 10001" -174096,Lightning Charging Cable,1,14.95,03/07/19 23:18,"83 11th St, Boston, MA 02215" -174097,AAA Batteries (4-pack),1,2.99,03/05/19 16:05,"201 11th St, Portland, OR 97035" -174098,USB-C Charging Cable,2,11.95,03/30/19 18:54,"96 Wilson St, Boston, MA 02215" -174099,20in Monitor,1,109.99,03/07/19 11:45,"275 Maple St, Dallas, TX 75001" -174100,USB-C Charging Cable,2,11.95,03/11/19 09:58,"448 Chestnut St, San Francisco, CA 94016" -174101,Bose SoundSport Headphones,1,99.99,03/14/19 21:39,"35 Lakeview St, Atlanta, GA 30301" -174102,ThinkPad Laptop,1,999.99,03/17/19 08:27,"790 Lake St, Boston, MA 02215" -174103,27in FHD Monitor,1,149.99,03/20/19 20:41,"719 Lake St, Dallas, TX 75001" -174104,Apple Airpods Headphones,1,150,03/28/19 20:55,"846 8th St, Portland, OR 97035" -174105,Apple Airpods Headphones,1,150,03/25/19 08:37,"900 Center St, Boston, MA 02215" -174106,Apple Airpods Headphones,1,150,03/29/19 12:49,"761 Jackson St, San Francisco, CA 94016" -174107,Lightning Charging Cable,1,14.95,03/02/19 18:05,"260 2nd St, San Francisco, CA 94016" -174108,34in Ultrawide Monitor,1,379.99,03/05/19 09:51,"705 Jefferson St, San Francisco, CA 94016" -174109,AAA Batteries (4-pack),1,2.99,03/01/19 20:59,"114 Walnut St, San Francisco, CA 94016" -174110,Wired Headphones,1,11.99,03/13/19 19:12,"57 14th St, Boston, MA 02215" -174111,20in Monitor,1,109.99,03/23/19 22:38,"824 8th St, Portland, OR 97035" -174112,34in Ultrawide Monitor,1,379.99,03/07/19 19:49,"788 Madison St, Seattle, WA 98101" -174113,Apple Airpods Headphones,1,150,03/25/19 10:59,"689 Cedar St, San Francisco, CA 94016" -174114,Lightning Charging Cable,1,14.95,03/02/19 20:38,"487 Main St, Seattle, WA 98101" -174115,Flatscreen TV,1,300,03/27/19 15:25,"728 Jackson St, Seattle, WA 98101" -174116,Wired Headphones,1,11.99,03/30/19 08:43,"503 12th St, Los Angeles, CA 90001" -174117,AAA Batteries (4-pack),1,2.99,03/15/19 09:42,"542 14th St, Austin, TX 73301" -174118,AAA Batteries (4-pack),1,2.99,03/29/19 12:49,"256 Church St, Dallas, TX 75001" -174119,Lightning Charging Cable,2,14.95,03/10/19 12:24,"170 Cedar St, New York City, NY 10001" -174120,AA Batteries (4-pack),1,3.84,03/22/19 14:47,"57 Main St, San Francisco, CA 94016" -174121,AA Batteries (4-pack),1,3.84,03/16/19 22:56,"898 Forest St, Los Angeles, CA 90001" -174122,Apple Airpods Headphones,1,150,03/08/19 08:48,"221 Pine St, Austin, TX 73301" -174123,34in Ultrawide Monitor,1,379.99,03/25/19 14:16,"583 Walnut St, Boston, MA 02215" -174124,Apple Airpods Headphones,1,150,03/31/19 14:49,"141 Madison St, Dallas, TX 75001" -174125,27in 4K Gaming Monitor,1,389.99,03/12/19 14:52,"721 Highland St, Los Angeles, CA 90001" -174126,27in 4K Gaming Monitor,1,389.99,03/15/19 19:38,"362 9th St, San Francisco, CA 94016" -174127,27in FHD Monitor,1,149.99,03/03/19 17:36,"919 11th St, Dallas, TX 75001" -174128,AAA Batteries (4-pack),1,2.99,03/15/19 22:39,"181 Pine St, Atlanta, GA 30301" -174129,USB-C Charging Cable,1,11.95,03/30/19 15:03,"676 7th St, San Francisco, CA 94016" -174130,Bose SoundSport Headphones,1,99.99,03/18/19 19:25,"742 Lake St, San Francisco, CA 94016" -174131,AA Batteries (4-pack),1,3.84,03/30/19 12:13,"214 Ridge St, Atlanta, GA 30301" -174132,Apple Airpods Headphones,1,150,03/07/19 20:35,"262 Johnson St, Boston, MA 02215" -174133,Google Phone,1,600,03/17/19 16:30,"133 14th St, San Francisco, CA 94016" -174134,20in Monitor,1,109.99,03/03/19 14:27,"859 Hill St, Los Angeles, CA 90001" -174135,Lightning Charging Cable,1,14.95,03/26/19 14:20,"233 Sunset St, San Francisco, CA 94016" -174136,USB-C Charging Cable,1,11.95,03/24/19 14:16,"436 Church St, Los Angeles, CA 90001" -174137,20in Monitor,1,109.99,03/04/19 08:18,"78 Lake St, Seattle, WA 98101" -174137,LG Washing Machine,1,600.0,03/04/19 08:18,"78 Lake St, Seattle, WA 98101" -174138,AAA Batteries (4-pack),1,2.99,03/21/19 09:45,"7 Hill St, Dallas, TX 75001" -174139,Wired Headphones,1,11.99,03/11/19 11:18,"907 Lakeview St, San Francisco, CA 94016" -174140,Lightning Charging Cable,1,14.95,03/31/19 12:28,"758 Sunset St, Austin, TX 73301" -174141,Lightning Charging Cable,1,14.95,03/19/19 17:05,"901 Wilson St, San Francisco, CA 94016" -174142,AA Batteries (4-pack),2,3.84,03/21/19 13:08,"206 Washington St, Portland, ME 04101" -174143,AAA Batteries (4-pack),1,2.99,03/12/19 13:02,"987 Church St, Boston, MA 02215" -174144,AA Batteries (4-pack),2,3.84,03/15/19 12:28,"911 Hill St, New York City, NY 10001" -174145,20in Monitor,1,109.99,03/07/19 06:36,"99 Pine St, Seattle, WA 98101" -174146,iPhone,1,700,03/01/19 21:47,"516 1st St, New York City, NY 10001" -174147,Lightning Charging Cable,1,14.95,03/01/19 11:32,"226 9th St, San Francisco, CA 94016" -174148,AA Batteries (4-pack),1,3.84,03/14/19 06:35,"699 2nd St, Austin, TX 73301" -174149,Apple Airpods Headphones,1,150,03/31/19 01:40,"823 8th St, Los Angeles, CA 90001" -174150,34in Ultrawide Monitor,1,379.99,03/22/19 21:57,"966 2nd St, San Francisco, CA 94016" -174151,ThinkPad Laptop,1,999.99,03/11/19 07:03,"316 Wilson St, Dallas, TX 75001" -174152,Wired Headphones,1,11.99,03/16/19 13:02,"904 Church St, Los Angeles, CA 90001" -174152,LG Washing Machine,1,600.0,03/16/19 13:02,"904 Church St, Los Angeles, CA 90001" -174153,Apple Airpods Headphones,1,150,03/22/19 23:29,"320 5th St, Seattle, WA 98101" -174154,Wired Headphones,1,11.99,03/11/19 08:33,"369 Maple St, Los Angeles, CA 90001" -174155,Bose SoundSport Headphones,1,99.99,03/27/19 20:27,"488 1st St, San Francisco, CA 94016" -174156,AAA Batteries (4-pack),2,2.99,03/09/19 15:47,"684 Ridge St, Austin, TX 73301" -174157,Bose SoundSport Headphones,1,99.99,03/10/19 00:26,"348 Center St, Atlanta, GA 30301" -174158,ThinkPad Laptop,1,999.99,03/06/19 12:05,"164 Lake St, Dallas, TX 75001" -174159,AA Batteries (4-pack),3,3.84,03/04/19 19:25,"698 11th St, San Francisco, CA 94016" -174160,USB-C Charging Cable,1,11.95,03/02/19 16:59,"812 Johnson St, New York City, NY 10001" -174161,Wired Headphones,1,11.99,03/29/19 11:28,"3 Walnut St, San Francisco, CA 94016" -174162,27in 4K Gaming Monitor,1,389.99,03/10/19 10:10,"919 Pine St, Seattle, WA 98101" -174163,Google Phone,1,600,03/06/19 18:46,"518 4th St, Los Angeles, CA 90001" -174164,AA Batteries (4-pack),2,3.84,03/03/19 09:31,"349 West St, Portland, OR 97035" -174165,Apple Airpods Headphones,1,150,03/23/19 06:35,"503 West St, New York City, NY 10001" -174166,Wired Headphones,1,11.99,03/09/19 19:03,"953 8th St, Boston, MA 02215" -174167,AA Batteries (4-pack),1,3.84,03/02/19 13:34,"361 Highland St, Boston, MA 02215" -174168,Lightning Charging Cable,1,14.95,03/19/19 13:09,"37 Elm St, San Francisco, CA 94016" -174169,Lightning Charging Cable,3,14.95,03/10/19 17:43,"975 9th St, San Francisco, CA 94016" -174170,AAA Batteries (4-pack),1,2.99,03/16/19 01:04,"778 North St, Portland, ME 04101" -174171,Lightning Charging Cable,1,14.95,03/18/19 23:48,"458 10th St, Boston, MA 02215" -174172,Flatscreen TV,1,300,03/13/19 19:14,"131 Lincoln St, San Francisco, CA 94016" -174173,27in FHD Monitor,1,149.99,03/12/19 12:19,"612 Center St, Seattle, WA 98101" -174174,Lightning Charging Cable,1,14.95,03/23/19 13:29,"251 Church St, Los Angeles, CA 90001" -174175,Lightning Charging Cable,1,14.95,03/13/19 14:10,"405 Washington St, Portland, ME 04101" -174176,AAA Batteries (4-pack),1,2.99,03/09/19 20:58,"637 10th St, Dallas, TX 75001" -174177,Bose SoundSport Headphones,1,99.99,03/14/19 16:56,"845 North St, Los Angeles, CA 90001" -174178,Apple Airpods Headphones,1,150,03/22/19 14:35,"582 2nd St, Los Angeles, CA 90001" -174179,USB-C Charging Cable,1,11.95,03/14/19 22:26,"430 8th St, Seattle, WA 98101" -174180,20in Monitor,1,109.99,03/25/19 07:37,"395 Madison St, Austin, TX 73301" -174181,Wired Headphones,1,11.99,03/14/19 11:20,"792 Highland St, Dallas, TX 75001" -174182,Lightning Charging Cable,1,14.95,03/08/19 11:03,"331 West St, New York City, NY 10001" -174183,USB-C Charging Cable,2,11.95,03/13/19 20:14,"232 West St, Boston, MA 02215" -174184,Wired Headphones,2,11.99,03/19/19 18:16,"396 11th St, Los Angeles, CA 90001" -174185,Lightning Charging Cable,1,14.95,03/31/19 13:55,"694 River St, Atlanta, GA 30301" -174186,Lightning Charging Cable,1,14.95,03/29/19 09:53,"263 Center St, Seattle, WA 98101" -174187,Macbook Pro Laptop,1,1700,03/03/19 12:24,"717 Madison St, Boston, MA 02215" -174188,Wired Headphones,1,11.99,03/25/19 15:13,"894 Willow St, San Francisco, CA 94016" -174189,AA Batteries (4-pack),2,3.84,03/21/19 13:31,"454 14th St, Atlanta, GA 30301" -174190,34in Ultrawide Monitor,1,379.99,03/21/19 01:07,"385 13th St, San Francisco, CA 94016" -174191,ThinkPad Laptop,1,999.99,03/13/19 19:21,"610 4th St, Boston, MA 02215" -174192,AAA Batteries (4-pack),1,2.99,03/05/19 09:18,"123 Spruce St, Boston, MA 02215" -174193,AA Batteries (4-pack),1,3.84,03/17/19 18:24,"825 West St, Los Angeles, CA 90001" -174194,USB-C Charging Cable,1,11.95,03/07/19 14:00,"370 Hickory St, San Francisco, CA 94016" -174195,LG Washing Machine,1,600.0,03/23/19 16:41,"442 Madison St, San Francisco, CA 94016" -174196,Macbook Pro Laptop,1,1700,03/10/19 20:48,"964 Madison St, San Francisco, CA 94016" -174197,USB-C Charging Cable,1,11.95,03/16/19 11:40,"202 Chestnut St, Austin, TX 73301" -174198,Google Phone,1,600,03/03/19 12:12,"115 Cedar St, Seattle, WA 98101" -174199,27in FHD Monitor,1,149.99,03/30/19 16:45,"908 Sunset St, San Francisco, CA 94016" -174200,USB-C Charging Cable,1,11.95,03/22/19 23:15,"623 Jefferson St, Seattle, WA 98101" -174201,Bose SoundSport Headphones,1,99.99,03/07/19 16:08,"848 Main St, New York City, NY 10001" -174202,Wired Headphones,1,11.99,03/19/19 15:54,"850 Adams St, New York City, NY 10001" -174203,AAA Batteries (4-pack),1,2.99,03/20/19 15:47,"250 Hickory St, San Francisco, CA 94016" -174204,Wired Headphones,1,11.99,03/25/19 07:00,"417 Lakeview St, Austin, TX 73301" -174205,Flatscreen TV,1,300,03/29/19 19:17,"22 Washington St, Boston, MA 02215" -174206,Wired Headphones,1,11.99,03/09/19 16:42,"673 Park St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -174207,USB-C Charging Cable,1,11.95,03/24/19 00:42,"129 Main St, San Francisco, CA 94016" -174208,27in FHD Monitor,1,149.99,03/23/19 19:43,"286 North St, New York City, NY 10001" -174209,USB-C Charging Cable,1,11.95,03/28/19 22:55,"827 Lakeview St, San Francisco, CA 94016" -174210,Bose SoundSport Headphones,1,99.99,03/20/19 08:12,"762 Maple St, Austin, TX 73301" -174211,Lightning Charging Cable,1,14.95,03/30/19 10:41,"285 Jefferson St, Los Angeles, CA 90001" -174212,USB-C Charging Cable,1,11.95,03/22/19 09:09,"639 Cedar St, San Francisco, CA 94016" -174213,Lightning Charging Cable,1,14.95,03/22/19 19:45,"946 5th St, San Francisco, CA 94016" -174213,iPhone,1,700,03/22/19 19:45,"946 5th St, San Francisco, CA 94016" -174214,iPhone,1,700,03/20/19 18:38,"822 Lake St, San Francisco, CA 94016" -174215,AA Batteries (4-pack),1,3.84,03/17/19 16:57,"256 6th St, Los Angeles, CA 90001" -174216,Lightning Charging Cable,1,14.95,03/03/19 14:18,"50 8th St, Portland, OR 97035" -174217,27in 4K Gaming Monitor,1,389.99,03/12/19 04:59,"392 Elm St, San Francisco, CA 94016" -174218,Lightning Charging Cable,1,14.95,03/15/19 17:42,"25 Wilson St, Boston, MA 02215" -174219,AAA Batteries (4-pack),3,2.99,03/05/19 15:24,"589 Sunset St, Atlanta, GA 30301" -174220,AAA Batteries (4-pack),1,2.99,03/27/19 08:34,"75 10th St, Boston, MA 02215" -174221,Google Phone,1,600,03/10/19 15:48,"291 Center St, Los Angeles, CA 90001" -174222,AA Batteries (4-pack),1,3.84,03/11/19 09:37,"98 Madison St, Boston, MA 02215" -174223,USB-C Charging Cable,1,11.95,03/27/19 16:09,"936 8th St, Los Angeles, CA 90001" -174224,Wired Headphones,1,11.99,03/28/19 15:10,"896 Jefferson St, Portland, ME 04101" -174225,ThinkPad Laptop,1,999.99,03/27/19 00:04,"754 Wilson St, Seattle, WA 98101" -174226,20in Monitor,1,109.99,03/26/19 20:53,"666 11th St, Los Angeles, CA 90001" -174227,iPhone,1,700,03/28/19 14:16,"639 8th St, Dallas, TX 75001" -174227,Lightning Charging Cable,1,14.95,03/28/19 14:16,"639 8th St, Dallas, TX 75001" -174228,34in Ultrawide Monitor,1,379.99,03/26/19 08:19,"64 Spruce St, Los Angeles, CA 90001" -174229,AAA Batteries (4-pack),1,2.99,03/19/19 19:42,"25 Park St, Portland, ME 04101" -174230,Google Phone,1,600,03/12/19 14:49,"469 6th St, New York City, NY 10001" -174231,Wired Headphones,1,11.99,03/27/19 10:55,"31 14th St, Austin, TX 73301" -174232,AA Batteries (4-pack),1,3.84,03/08/19 20:21,"830 Pine St, Boston, MA 02215" -174233,AAA Batteries (4-pack),1,2.99,03/11/19 19:31,"111 West St, Seattle, WA 98101" -174234,Bose SoundSport Headphones,1,99.99,03/22/19 17:37,"797 Cherry St, Portland, OR 97035" -174235,AA Batteries (4-pack),1,3.84,03/22/19 13:16,"855 River St, Portland, OR 97035" -174236,Lightning Charging Cable,1,14.95,03/10/19 08:57,"271 Highland St, Los Angeles, CA 90001" -174237,Wired Headphones,1,11.99,03/20/19 21:31,"885 14th St, Boston, MA 02215" -174238,27in 4K Gaming Monitor,1,389.99,03/11/19 21:22,"648 Madison St, Dallas, TX 75001" -174239,AA Batteries (4-pack),1,3.84,03/19/19 13:27,"637 Wilson St, Los Angeles, CA 90001" -174240,Lightning Charging Cable,1,14.95,03/28/19 11:57,"528 2nd St, Atlanta, GA 30301" -174241,Google Phone,1,600,03/01/19 09:10,"602 Park St, Dallas, TX 75001" -174241,USB-C Charging Cable,1,11.95,03/01/19 09:10,"602 Park St, Dallas, TX 75001" -174242,AAA Batteries (4-pack),1,2.99,03/13/19 00:28,"614 11th St, Dallas, TX 75001" -174243,iPhone,1,700,03/03/19 21:28,"806 Church St, Austin, TX 73301" -174243,Wired Headphones,1,11.99,03/03/19 21:28,"806 Church St, Austin, TX 73301" -174244,20in Monitor,1,109.99,03/12/19 14:02,"710 Hickory St, San Francisco, CA 94016" -174245,Lightning Charging Cable,1,14.95,03/02/19 13:01,"924 Sunset St, San Francisco, CA 94016" -174246,Lightning Charging Cable,2,14.95,03/02/19 11:38,"97 7th St, Dallas, TX 75001" -174247,34in Ultrawide Monitor,1,379.99,03/16/19 19:51,"392 Hickory St, Atlanta, GA 30301" -174248,Bose SoundSport Headphones,1,99.99,03/29/19 20:45,"62 13th St, New York City, NY 10001" -174249,34in Ultrawide Monitor,1,379.99,03/20/19 09:08,"795 Washington St, Portland, OR 97035" -174250,Lightning Charging Cable,1,14.95,03/30/19 15:09,"413 Ridge St, San Francisco, CA 94016" -174251,AAA Batteries (4-pack),2,2.99,03/30/19 22:05,"356 Walnut St, New York City, NY 10001" -174252,34in Ultrawide Monitor,1,379.99,03/16/19 22:42,"382 Jackson St, Boston, MA 02215" -174253,AAA Batteries (4-pack),1,2.99,03/06/19 21:12,"471 Highland St, Dallas, TX 75001" -174254,Bose SoundSport Headphones,1,99.99,03/23/19 15:42,"692 Adams St, Los Angeles, CA 90001" -174255,Macbook Pro Laptop,1,1700,03/24/19 19:51,"315 1st St, Dallas, TX 75001" -174256,Apple Airpods Headphones,1,150,03/25/19 19:03,"247 Johnson St, New York City, NY 10001" -174257,AAA Batteries (4-pack),2,2.99,03/26/19 01:48,"710 Washington St, Boston, MA 02215" -174258,Bose SoundSport Headphones,1,99.99,03/05/19 07:59,"149 13th St, San Francisco, CA 94016" -174259,AA Batteries (4-pack),1,3.84,03/17/19 10:16,"626 Sunset St, San Francisco, CA 94016" -174260,USB-C Charging Cable,1,11.95,03/03/19 11:37,"788 Lakeview St, New York City, NY 10001" -174261,Wired Headphones,1,11.99,03/22/19 07:52,"980 Walnut St, Seattle, WA 98101" -174262,34in Ultrawide Monitor,1,379.99,03/11/19 22:06,"243 11th St, New York City, NY 10001" -174263,USB-C Charging Cable,1,11.95,03/17/19 19:52,"918 Main St, Seattle, WA 98101" -174264,Lightning Charging Cable,1,14.95,03/30/19 21:45,"959 North St, New York City, NY 10001" -174265,34in Ultrawide Monitor,1,379.99,03/24/19 10:12,"258 South St, Seattle, WA 98101" -174266,Bose SoundSport Headphones,1,99.99,03/24/19 18:56,"997 Park St, New York City, NY 10001" -174267,27in 4K Gaming Monitor,1,389.99,03/11/19 09:50,"80 North St, San Francisco, CA 94016" -174268,Wired Headphones,1,11.99,03/07/19 17:42,"611 Forest St, Dallas, TX 75001" -174269,Macbook Pro Laptop,1,1700,03/15/19 18:40,"279 Park St, Dallas, TX 75001" -174270,34in Ultrawide Monitor,1,379.99,03/21/19 11:20,"215 Center St, Atlanta, GA 30301" -174271,AA Batteries (4-pack),2,3.84,03/19/19 17:16,"216 12th St, Austin, TX 73301" -174272,Wired Headphones,1,11.99,03/22/19 11:43,"674 13th St, Dallas, TX 75001" -174273,LG Dryer,1,600.0,03/17/19 08:46,"295 Spruce St, Austin, TX 73301" -174274,AAA Batteries (4-pack),2,2.99,03/21/19 10:59,"741 Lake St, Los Angeles, CA 90001" -174275,Lightning Charging Cable,1,14.95,03/26/19 10:06,"936 Elm St, Austin, TX 73301" -174276,27in FHD Monitor,1,149.99,03/05/19 21:26,"370 Lake St, San Francisco, CA 94016" -174277,27in 4K Gaming Monitor,1,389.99,03/19/19 23:06,"836 Lakeview St, Dallas, TX 75001" -174278,Google Phone,1,600,03/19/19 20:35,"696 Madison St, Portland, OR 97035" -174278,USB-C Charging Cable,1,11.95,03/19/19 20:35,"696 Madison St, Portland, OR 97035" -174279,Apple Airpods Headphones,1,150,03/28/19 18:42,"67 Park St, Los Angeles, CA 90001" -174280,Bose SoundSport Headphones,1,99.99,03/27/19 12:08,"636 Cherry St, Los Angeles, CA 90001" -174281,Wired Headphones,1,11.99,03/27/19 01:02,"620 Sunset St, San Francisco, CA 94016" -174282,AA Batteries (4-pack),1,3.84,03/27/19 12:32,"839 River St, San Francisco, CA 94016" -174283,27in 4K Gaming Monitor,1,389.99,03/05/19 13:58,"668 Highland St, Atlanta, GA 30301" -174284,Bose SoundSport Headphones,1,99.99,03/10/19 22:14,"417 Church St, San Francisco, CA 94016" -174285,AA Batteries (4-pack),1,3.84,03/22/19 18:06,"617 Washington St, Dallas, TX 75001" -174286,USB-C Charging Cable,1,11.95,03/03/19 21:35,"163 Chestnut St, San Francisco, CA 94016" -174287,AA Batteries (4-pack),1,3.84,03/29/19 13:35,"870 5th St, New York City, NY 10001" -174288,Macbook Pro Laptop,1,1700,03/26/19 16:13,"458 Willow St, San Francisco, CA 94016" -174289,Wired Headphones,1,11.99,03/10/19 20:39,"49 Church St, Boston, MA 02215" -174290,AAA Batteries (4-pack),2,2.99,03/05/19 19:43,"226 Dogwood St, San Francisco, CA 94016" -174291,Apple Airpods Headphones,1,150,03/07/19 00:09,"882 Dogwood St, New York City, NY 10001" -174292,Apple Airpods Headphones,1,150,03/18/19 03:25,"554 11th St, Dallas, TX 75001" -174293,AA Batteries (4-pack),1,3.84,03/09/19 02:23,"74 Adams St, Portland, OR 97035" -174294,Wired Headphones,1,11.99,03/04/19 17:41,"776 Hickory St, Atlanta, GA 30301" -174294,Google Phone,1,600,03/04/19 17:41,"776 Hickory St, Atlanta, GA 30301" -174295,Bose SoundSport Headphones,1,99.99,03/27/19 12:18,"301 14th St, Los Angeles, CA 90001" -174296,ThinkPad Laptop,1,999.99,03/08/19 22:02,"405 Madison St, Los Angeles, CA 90001" -174297,Lightning Charging Cable,1,14.95,03/23/19 20:05,"555 Center St, Seattle, WA 98101" -174298,AA Batteries (4-pack),2,3.84,03/27/19 12:20,"464 5th St, Los Angeles, CA 90001" -174299,Lightning Charging Cable,1,14.95,03/22/19 15:30,"22 South St, New York City, NY 10001" -174300,AAA Batteries (4-pack),2,2.99,03/21/19 11:01,"339 13th St, Los Angeles, CA 90001" -174301,USB-C Charging Cable,1,11.95,03/28/19 23:03,"800 14th St, San Francisco, CA 94016" -174302,27in FHD Monitor,1,149.99,03/08/19 20:50,"882 5th St, New York City, NY 10001" -174303,Flatscreen TV,1,300,03/13/19 18:36,"601 Hill St, Los Angeles, CA 90001" -174304,USB-C Charging Cable,3,11.95,03/29/19 22:59,"513 Elm St, Boston, MA 02215" -174305,AA Batteries (4-pack),1,3.84,03/29/19 11:11,"939 Cherry St, Atlanta, GA 30301" -174306,AAA Batteries (4-pack),2,2.99,03/17/19 09:47,"651 Church St, Boston, MA 02215" -174307,Lightning Charging Cable,1,14.95,03/28/19 08:03,"68 West St, New York City, NY 10001" -174308,Lightning Charging Cable,1,14.95,03/07/19 10:28,"642 Willow St, Portland, OR 97035" -174309,34in Ultrawide Monitor,1,379.99,03/12/19 17:14,"733 Center St, San Francisco, CA 94016" -174310,Wired Headphones,1,11.99,03/15/19 16:46,"975 13th St, Atlanta, GA 30301" -174311,USB-C Charging Cable,1,11.95,03/24/19 15:16,"102 West St, San Francisco, CA 94016" -174312,27in FHD Monitor,1,149.99,03/26/19 21:39,"177 Lake St, Los Angeles, CA 90001" -174313,27in FHD Monitor,1,149.99,03/08/19 01:36,"550 Madison St, San Francisco, CA 94016" -174314,27in 4K Gaming Monitor,1,389.99,03/22/19 00:47,"253 6th St, Seattle, WA 98101" -174315,Lightning Charging Cable,1,14.95,03/19/19 23:39,"83 Adams St, San Francisco, CA 94016" -174316,AAA Batteries (4-pack),2,2.99,03/12/19 14:35,"485 Jefferson St, Dallas, TX 75001" -174317,Lightning Charging Cable,1,14.95,03/12/19 10:45,"627 Johnson St, Dallas, TX 75001" -174318,Flatscreen TV,1,300,03/17/19 11:09,"79 Center St, Dallas, TX 75001" -174319,USB-C Charging Cable,1,11.95,03/02/19 10:41,"243 Lakeview St, New York City, NY 10001" -174320,LG Washing Machine,1,600.0,03/22/19 15:07,"376 River St, New York City, NY 10001" -174321,USB-C Charging Cable,1,11.95,03/16/19 12:43,"513 Main St, San Francisco, CA 94016" -174322,Bose SoundSport Headphones,1,99.99,03/21/19 18:35,"154 Pine St, New York City, NY 10001" -174323,Apple Airpods Headphones,1,150,03/25/19 12:59,"351 11th St, Boston, MA 02215" -174324,AA Batteries (4-pack),1,3.84,03/15/19 01:10,"61 2nd St, New York City, NY 10001" -174325,Lightning Charging Cable,2,14.95,03/11/19 19:29,"594 Highland St, Seattle, WA 98101" -174326,27in FHD Monitor,1,149.99,03/29/19 20:38,"539 13th St, San Francisco, CA 94016" -174327,34in Ultrawide Monitor,1,379.99,03/19/19 18:50,"668 6th St, New York City, NY 10001" -174328,AA Batteries (4-pack),1,3.84,03/17/19 15:02,"973 Elm St, Los Angeles, CA 90001" -174329,AA Batteries (4-pack),4,3.84,03/11/19 11:25,"782 Walnut St, San Francisco, CA 94016" -174330,Bose SoundSport Headphones,1,99.99,03/28/19 15:32,"722 Elm St, Austin, TX 73301" -174331,Flatscreen TV,1,300,03/10/19 17:00,"151 Washington St, New York City, NY 10001" -174332,Wired Headphones,1,11.99,03/03/19 17:36,"626 Cedar St, San Francisco, CA 94016" -174333,USB-C Charging Cable,1,11.95,03/04/19 00:14,"591 8th St, San Francisco, CA 94016" -174334,Bose SoundSport Headphones,1,99.99,03/04/19 14:48,"63 Cherry St, Los Angeles, CA 90001" -174335,Apple Airpods Headphones,1,150,03/08/19 07:06,"521 North St, Seattle, WA 98101" -174336,Lightning Charging Cable,1,14.95,03/15/19 18:15,"535 Lakeview St, San Francisco, CA 94016" -174337,Vareebadd Phone,1,400,03/02/19 16:15,"635 6th St, Boston, MA 02215" -174338,34in Ultrawide Monitor,1,379.99,03/03/19 20:31,"464 Wilson St, Atlanta, GA 30301" -174339,Apple Airpods Headphones,1,150,03/20/19 13:56,"738 Highland St, Boston, MA 02215" -174340,AAA Batteries (4-pack),1,2.99,03/12/19 07:48,"661 12th St, San Francisco, CA 94016" -174341,iPhone,1,700,03/31/19 18:20,"124 Maple St, Los Angeles, CA 90001" -174342,AAA Batteries (4-pack),2,2.99,03/28/19 13:27,"687 12th St, Boston, MA 02215" -174343,AAA Batteries (4-pack),3,2.99,03/17/19 15:36,"764 6th St, Boston, MA 02215" -174344,AA Batteries (4-pack),1,3.84,03/29/19 22:40,"560 Ridge St, San Francisco, CA 94016" -174345,Lightning Charging Cable,1,14.95,03/13/19 09:57,"789 South St, San Francisco, CA 94016" -174346,Wired Headphones,1,11.99,03/13/19 11:42,"713 Lakeview St, New York City, NY 10001" -174347,Wired Headphones,1,11.99,03/14/19 09:44,"644 Forest St, Los Angeles, CA 90001" -174348,Google Phone,1,600,03/30/19 07:04,"53 8th St, New York City, NY 10001" -174349,USB-C Charging Cable,1,11.95,03/25/19 20:50,"120 Madison St, San Francisco, CA 94016" -174350,Bose SoundSport Headphones,1,99.99,03/31/19 17:09,"256 Spruce St, San Francisco, CA 94016" -174351,USB-C Charging Cable,1,11.95,03/06/19 11:23,"7 Pine St, Seattle, WA 98101" -174352,27in FHD Monitor,1,149.99,03/02/19 03:47,"381 Sunset St, San Francisco, CA 94016" -174353,ThinkPad Laptop,1,999.99,03/13/19 20:37,"44 Cherry St, Los Angeles, CA 90001" -174354,Macbook Pro Laptop,1,1700,03/14/19 20:27,"611 Wilson St, San Francisco, CA 94016" -174355,Bose SoundSport Headphones,1,99.99,03/19/19 20:31,"806 Jefferson St, Atlanta, GA 30301" -174356,Wired Headphones,1,11.99,03/01/19 09:45,"14 Cherry St, Seattle, WA 98101" -174357,Wired Headphones,1,11.99,03/20/19 15:00,"53 Dogwood St, Dallas, TX 75001" -174358,Macbook Pro Laptop,1,1700,03/28/19 20:20,"290 14th St, Boston, MA 02215" -174359,USB-C Charging Cable,1,11.95,03/17/19 14:04,"336 West St, Los Angeles, CA 90001" -174360,iPhone,1,700,03/12/19 19:05,"362 Washington St, Atlanta, GA 30301" -174360,Apple Airpods Headphones,1,150,03/12/19 19:05,"362 Washington St, Atlanta, GA 30301" -174361,Macbook Pro Laptop,1,1700,03/09/19 14:16,"170 Lakeview St, Los Angeles, CA 90001" -174362,USB-C Charging Cable,2,11.95,03/12/19 18:07,"157 Church St, Portland, OR 97035" -174363,AA Batteries (4-pack),2,3.84,03/12/19 16:31,"746 Johnson St, Boston, MA 02215" -174364,AA Batteries (4-pack),1,3.84,03/26/19 13:29,"285 Adams St, Boston, MA 02215" -174365,AA Batteries (4-pack),1,3.84,03/09/19 16:44,"43 North St, San Francisco, CA 94016" -174366,AA Batteries (4-pack),2,3.84,03/04/19 11:03,"499 Jefferson St, San Francisco, CA 94016" -174367,AAA Batteries (4-pack),2,2.99,03/20/19 11:06,"597 Adams St, Los Angeles, CA 90001" -174368,34in Ultrawide Monitor,1,379.99,03/10/19 16:09,"702 9th St, Portland, OR 97035" -174369,AA Batteries (4-pack),1,3.84,03/13/19 20:46,"542 Maple St, Atlanta, GA 30301" -174370,Bose SoundSport Headphones,1,99.99,03/12/19 14:03,"604 Lincoln St, Seattle, WA 98101" -,,,,, -174371,Wired Headphones,1,11.99,03/22/19 13:38,"303 4th St, Atlanta, GA 30301" -174372,ThinkPad Laptop,1,999.99,03/28/19 20:58,"423 Cedar St, Los Angeles, CA 90001" -174373,Wired Headphones,1,11.99,03/06/19 07:52,"718 Washington St, Dallas, TX 75001" -174374,AAA Batteries (4-pack),1,2.99,03/28/19 14:52,"900 Adams St, New York City, NY 10001" -174375,AA Batteries (4-pack),1,3.84,03/23/19 10:04,"154 1st St, Los Angeles, CA 90001" -174376,AAA Batteries (4-pack),2,2.99,03/25/19 13:06,"635 Madison St, Dallas, TX 75001" -174377,20in Monitor,1,109.99,03/21/19 12:56,"123 Hickory St, Atlanta, GA 30301" -174378,USB-C Charging Cable,1,11.95,03/01/19 14:55,"545 Maple St, Boston, MA 02215" -174379,USB-C Charging Cable,1,11.95,03/19/19 21:57,"969 Lincoln St, Los Angeles, CA 90001" -174380,Wired Headphones,1,11.99,03/26/19 16:08,"117 Chestnut St, Boston, MA 02215" -174381,iPhone,1,700,03/26/19 16:36,"448 6th St, Austin, TX 73301" -174382,Macbook Pro Laptop,1,1700,03/17/19 13:06,"967 Forest St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -174383,Bose SoundSport Headphones,1,99.99,03/01/19 23:12,"345 Ridge St, Seattle, WA 98101" -174384,ThinkPad Laptop,1,999.99,03/11/19 16:27,"203 North St, New York City, NY 10001" -174385,20in Monitor,1,109.99,03/25/19 12:39,"226 North St, San Francisco, CA 94016" -174386,AA Batteries (4-pack),1,3.84,03/17/19 18:59,"403 South St, New York City, NY 10001" -174387,20in Monitor,1,109.99,03/18/19 12:19,"539 11th St, Boston, MA 02215" -174388,USB-C Charging Cable,1,11.95,03/28/19 12:28,"326 Sunset St, San Francisco, CA 94016" -174389,27in FHD Monitor,1,149.99,03/04/19 15:45,"166 Lincoln St, Dallas, TX 75001" -174390,USB-C Charging Cable,1,11.95,03/14/19 13:37,"65 Lakeview St, Austin, TX 73301" -174391,USB-C Charging Cable,1,11.95,03/26/19 13:31,"306 7th St, Los Angeles, CA 90001" -174392,Wired Headphones,1,11.99,03/25/19 17:30,"415 Adams St, Austin, TX 73301" -174393,Wired Headphones,1,11.99,03/14/19 20:33,"348 2nd St, Boston, MA 02215" -174394,Lightning Charging Cable,1,14.95,03/16/19 16:49,"24 Highland St, Dallas, TX 75001" -174395,Bose SoundSport Headphones,1,99.99,03/01/19 11:01,"776 Lincoln St, Dallas, TX 75001" -174396,Lightning Charging Cable,1,14.95,03/22/19 15:33,"512 North St, San Francisco, CA 94016" -174397,Macbook Pro Laptop,1,1700,03/21/19 13:45,"476 6th St, San Francisco, CA 94016" -174398,Bose SoundSport Headphones,1,99.99,03/27/19 10:15,"331 Ridge St, Boston, MA 02215" -174398,Wired Headphones,1,11.99,03/27/19 10:15,"331 Ridge St, Boston, MA 02215" -174399,34in Ultrawide Monitor,1,379.99,03/13/19 11:56,"734 Pine St, Austin, TX 73301" -174400,AAA Batteries (4-pack),2,2.99,03/06/19 15:23,"623 10th St, Austin, TX 73301" -174401,Bose SoundSport Headphones,1,99.99,03/11/19 17:49,"848 Dogwood St, Portland, ME 04101" -174402,Lightning Charging Cable,1,14.95,03/23/19 06:31,"365 13th St, New York City, NY 10001" -174403,iPhone,1,700,03/23/19 09:57,"711 Jefferson St, Boston, MA 02215" -174403,Lightning Charging Cable,1,14.95,03/23/19 09:57,"711 Jefferson St, Boston, MA 02215" -174404,Lightning Charging Cable,2,14.95,03/22/19 19:14,"48 11th St, Portland, OR 97035" -174404,Wired Headphones,1,11.99,03/22/19 19:14,"48 11th St, Portland, OR 97035" -174405,27in 4K Gaming Monitor,1,389.99,03/26/19 10:58,"498 Lake St, Boston, MA 02215" -174406,USB-C Charging Cable,3,11.95,03/18/19 10:35,"452 Washington St, New York City, NY 10001" -174407,Apple Airpods Headphones,1,150,03/19/19 15:11,"281 Hill St, Austin, TX 73301" -174408,Lightning Charging Cable,1,14.95,03/27/19 13:07,"289 7th St, New York City, NY 10001" -174409,AA Batteries (4-pack),1,3.84,03/05/19 07:40,"648 Park St, New York City, NY 10001" -174410,Apple Airpods Headphones,1,150,03/15/19 09:43,"751 14th St, Atlanta, GA 30301" -174411,Bose SoundSport Headphones,1,99.99,03/17/19 19:54,"416 6th St, Boston, MA 02215" -174412,Apple Airpods Headphones,1,150,03/03/19 23:52,"89 Sunset St, Los Angeles, CA 90001" -174413,USB-C Charging Cable,1,11.95,03/17/19 17:42,"553 Johnson St, San Francisco, CA 94016" -174414,Google Phone,1,600,03/24/19 18:09,"540 River St, Boston, MA 02215" -174415,Apple Airpods Headphones,1,150,03/02/19 00:53,"326 Adams St, Dallas, TX 75001" -174416,Bose SoundSport Headphones,2,99.99,03/13/19 19:59,"4 1st St, New York City, NY 10001" -174417,34in Ultrawide Monitor,1,379.99,03/30/19 15:15,"423 Church St, Dallas, TX 75001" -174418,27in FHD Monitor,1,149.99,03/28/19 14:06,"717 Cedar St, Seattle, WA 98101" -174419,27in FHD Monitor,1,149.99,03/25/19 13:08,"691 12th St, San Francisco, CA 94016" -174420,ThinkPad Laptop,1,999.99,03/30/19 16:43,"447 12th St, San Francisco, CA 94016" -174421,AA Batteries (4-pack),1,3.84,03/31/19 17:24,"525 Willow St, San Francisco, CA 94016" -174422,Apple Airpods Headphones,1,150,03/06/19 12:15,"575 11th St, New York City, NY 10001" -174423,Vareebadd Phone,1,400,03/14/19 15:25,"373 Dogwood St, Dallas, TX 75001" -174423,Wired Headphones,1,11.99,03/14/19 15:25,"373 Dogwood St, Dallas, TX 75001" -174424,AAA Batteries (4-pack),3,2.99,03/05/19 13:22,"21 Cedar St, Atlanta, GA 30301" -174425,27in FHD Monitor,1,149.99,03/15/19 13:02,"291 Spruce St, Los Angeles, CA 90001" -174426,iPhone,1,700,03/01/19 12:40,"497 Johnson St, Atlanta, GA 30301" -174427,Lightning Charging Cable,1,14.95,03/23/19 22:14,"975 Church St, Dallas, TX 75001" -174428,USB-C Charging Cable,1,11.95,03/25/19 01:37,"569 Forest St, New York City, NY 10001" -174429,USB-C Charging Cable,1,11.95,03/26/19 20:16,"518 2nd St, Los Angeles, CA 90001" -174430,AA Batteries (4-pack),1,3.84,03/05/19 09:05,"174 Ridge St, Dallas, TX 75001" -174431,Wired Headphones,1,11.99,03/06/19 17:25,"578 Hill St, Seattle, WA 98101" -174432,Bose SoundSport Headphones,1,99.99,03/10/19 20:29,"926 Adams St, Boston, MA 02215" -174433,Apple Airpods Headphones,1,150,03/01/19 10:34,"250 6th St, New York City, NY 10001" -174434,Wired Headphones,1,11.99,03/26/19 14:39,"213 Center St, Los Angeles, CA 90001" -174435,Google Phone,1,600,03/22/19 11:50,"812 Willow St, Austin, TX 73301" -174435,Bose SoundSport Headphones,1,99.99,03/22/19 11:50,"812 Willow St, Austin, TX 73301" -174436,Lightning Charging Cable,1,14.95,03/31/19 17:34,"814 Chestnut St, New York City, NY 10001" -174437,Wired Headphones,1,11.99,03/27/19 07:48,"286 Washington St, Portland, ME 04101" -174438,AAA Batteries (4-pack),1,2.99,03/14/19 17:22,"575 Main St, New York City, NY 10001" -174439,USB-C Charging Cable,1,11.95,03/19/19 19:09,"4 Lake St, Portland, OR 97035" -174440,27in FHD Monitor,1,149.99,03/04/19 21:56,"122 Elm St, Dallas, TX 75001" -174441,AAA Batteries (4-pack),2,2.99,03/10/19 11:03,"636 Dogwood St, Seattle, WA 98101" -174442,AAA Batteries (4-pack),2,2.99,03/29/19 15:08,"376 13th St, New York City, NY 10001" -174443,iPhone,1,700,03/06/19 17:53,"230 Wilson St, San Francisco, CA 94016" -174444,27in 4K Gaming Monitor,1,389.99,03/27/19 18:09,"983 River St, Los Angeles, CA 90001" -174445,AA Batteries (4-pack),1,3.84,03/31/19 15:59,"961 Maple St, Dallas, TX 75001" -174446,Lightning Charging Cable,1,14.95,03/03/19 09:33,"941 5th St, Boston, MA 02215" -174447,Wired Headphones,1,11.99,03/26/19 08:33,"773 Church St, Seattle, WA 98101" -174448,Bose SoundSport Headphones,1,99.99,03/16/19 11:24,"118 7th St, San Francisco, CA 94016" -174449,Flatscreen TV,1,300,03/05/19 21:50,"603 Jefferson St, San Francisco, CA 94016" -174450,Apple Airpods Headphones,1,150,03/14/19 14:00,"205 1st St, New York City, NY 10001" -174451,LG Washing Machine,1,600.0,03/02/19 09:48,"412 4th St, Austin, TX 73301" -174452,34in Ultrawide Monitor,1,379.99,03/30/19 20:27,"517 7th St, San Francisco, CA 94016" -174453,Lightning Charging Cable,1,14.95,03/27/19 13:34,"161 4th St, San Francisco, CA 94016" -174454,Wired Headphones,1,11.99,03/24/19 10:44,"945 Madison St, Los Angeles, CA 90001" -174455,34in Ultrawide Monitor,1,379.99,03/15/19 13:39,"357 4th St, San Francisco, CA 94016" -174456,27in FHD Monitor,1,149.99,03/20/19 13:13,"607 Chestnut St, Dallas, TX 75001" -174457,27in FHD Monitor,1,149.99,03/30/19 02:46,"473 1st St, Dallas, TX 75001" -174458,27in FHD Monitor,1,149.99,03/11/19 11:54,"834 13th St, New York City, NY 10001" -174459,Wired Headphones,1,11.99,03/27/19 22:07,"267 Johnson St, New York City, NY 10001" -174460,Bose SoundSport Headphones,1,99.99,03/12/19 21:08,"575 Forest St, Seattle, WA 98101" -174461,27in 4K Gaming Monitor,1,389.99,03/21/19 15:59,"531 Cedar St, Seattle, WA 98101" -174462,AA Batteries (4-pack),1,3.84,03/29/19 09:53,"471 Main St, Dallas, TX 75001" -174463,Lightning Charging Cable,1,14.95,03/15/19 12:15,"848 Willow St, Boston, MA 02215" -174464,USB-C Charging Cable,1,11.95,03/14/19 19:28,"974 South St, San Francisco, CA 94016" -174465,Apple Airpods Headphones,1,150,03/14/19 16:42,"300 Center St, New York City, NY 10001" -174466,AAA Batteries (4-pack),2,2.99,03/30/19 20:56,"935 Jefferson St, San Francisco, CA 94016" -174467,AA Batteries (4-pack),1,3.84,03/06/19 18:39,"793 Walnut St, San Francisco, CA 94016" -174468,AA Batteries (4-pack),1,3.84,03/10/19 06:00,"237 Hickory St, New York City, NY 10001" -174469,AAA Batteries (4-pack),1,2.99,03/16/19 12:56,"774 2nd St, Seattle, WA 98101" -174470,Lightning Charging Cable,1,14.95,03/14/19 21:34,"892 Walnut St, Dallas, TX 75001" -174471,27in 4K Gaming Monitor,1,389.99,03/09/19 17:22,"18 North St, San Francisco, CA 94016" -174472,27in 4K Gaming Monitor,1,389.99,03/04/19 15:50,"713 Ridge St, Boston, MA 02215" -174473,iPhone,1,700,03/09/19 17:31,"100 11th St, Austin, TX 73301" -174474,27in FHD Monitor,1,149.99,03/31/19 13:00,"462 River St, Atlanta, GA 30301" -174475,AAA Batteries (4-pack),1,2.99,03/12/19 12:06,"562 Adams St, Seattle, WA 98101" -174476,Flatscreen TV,1,300,03/09/19 22:16,"481 7th St, Atlanta, GA 30301" -174477,34in Ultrawide Monitor,1,379.99,03/01/19 17:31,"570 Meadow St, San Francisco, CA 94016" -174478,USB-C Charging Cable,1,11.95,03/17/19 22:17,"935 Adams St, Los Angeles, CA 90001" -174479,Flatscreen TV,1,300,03/22/19 13:36,"687 Ridge St, Boston, MA 02215" -174480,Bose SoundSport Headphones,1,99.99,03/31/19 22:29,"527 10th St, Los Angeles, CA 90001" -174481,USB-C Charging Cable,1,11.95,03/22/19 20:08,"267 Center St, Austin, TX 73301" -174482,Lightning Charging Cable,1,14.95,03/16/19 09:22,"109 12th St, Atlanta, GA 30301" -174483,AA Batteries (4-pack),1,3.84,03/12/19 21:34,"275 13th St, Seattle, WA 98101" -174484,Bose SoundSport Headphones,1,99.99,03/11/19 16:28,"739 Spruce St, Los Angeles, CA 90001" -174485,AAA Batteries (4-pack),4,2.99,03/16/19 21:09,"793 Meadow St, New York City, NY 10001" -174486,Apple Airpods Headphones,1,150,03/08/19 10:01,"460 Forest St, Los Angeles, CA 90001" -174487,27in 4K Gaming Monitor,1,389.99,03/23/19 23:41,"94 Hill St, Los Angeles, CA 90001" -174488,Apple Airpods Headphones,1,150,03/06/19 20:37,"843 12th St, Los Angeles, CA 90001" -174489,Bose SoundSport Headphones,1,99.99,03/06/19 01:42,"426 Cedar St, San Francisco, CA 94016" -174490,Wired Headphones,1,11.99,03/21/19 21:05,"946 13th St, New York City, NY 10001" -174491,Lightning Charging Cable,1,14.95,03/02/19 18:30,"587 Spruce St, San Francisco, CA 94016" -174492,27in FHD Monitor,1,149.99,03/10/19 17:37,"493 Sunset St, Boston, MA 02215" -174493,Wired Headphones,1,11.99,03/19/19 07:55,"109 Sunset St, New York City, NY 10001" -174494,Bose SoundSport Headphones,1,99.99,03/11/19 10:58,"55 14th St, Seattle, WA 98101" -174495,ThinkPad Laptop,1,999.99,03/12/19 21:22,"622 Elm St, San Francisco, CA 94016" -174496,Google Phone,1,600,03/19/19 19:33,"346 Meadow St, San Francisco, CA 94016" -174496,USB-C Charging Cable,1,11.95,03/19/19 19:33,"346 Meadow St, San Francisco, CA 94016" -174497,AA Batteries (4-pack),2,3.84,03/01/19 17:37,"857 West St, Boston, MA 02215" -174498,Macbook Pro Laptop,1,1700,03/25/19 12:30,"38 Walnut St, New York City, NY 10001" -174499,27in FHD Monitor,1,149.99,03/19/19 10:20,"689 Wilson St, Boston, MA 02215" -174500,USB-C Charging Cable,1,11.95,03/10/19 20:42,"757 Cedar St, Boston, MA 02215" -174501,Wired Headphones,1,11.99,03/01/19 21:45,"307 Willow St, Seattle, WA 98101" -174502,AAA Batteries (4-pack),2,2.99,03/24/19 16:27,"182 Church St, Portland, OR 97035" -174503,AA Batteries (4-pack),1,3.84,03/13/19 20:48,"224 Sunset St, Portland, OR 97035" -174504,USB-C Charging Cable,1,11.95,03/23/19 10:51,"934 Johnson St, Boston, MA 02215" -174505,Bose SoundSport Headphones,1,99.99,03/05/19 09:13,"413 Dogwood St, Los Angeles, CA 90001" -174506,Lightning Charging Cable,1,14.95,03/11/19 12:27,"353 Jefferson St, Portland, OR 97035" -174506,20in Monitor,1,109.99,03/11/19 12:27,"353 Jefferson St, Portland, OR 97035" -174507,Lightning Charging Cable,1,14.95,03/06/19 22:20,"495 Wilson St, Dallas, TX 75001" -174508,USB-C Charging Cable,1,11.95,03/10/19 22:56,"789 Washington St, San Francisco, CA 94016" -174509,Wired Headphones,1,11.99,03/30/19 19:29,"442 Jefferson St, New York City, NY 10001" -174509,USB-C Charging Cable,1,11.95,03/30/19 19:29,"442 Jefferson St, New York City, NY 10001" -174510,Lightning Charging Cable,1,14.95,03/23/19 21:36,"655 Pine St, Atlanta, GA 30301" -174511,Apple Airpods Headphones,1,150,03/04/19 11:31,"63 Lake St, Seattle, WA 98101" -174512,AA Batteries (4-pack),1,3.84,03/12/19 22:28,"890 Jackson St, Seattle, WA 98101" -174513,USB-C Charging Cable,1,11.95,03/16/19 12:53,"632 North St, New York City, NY 10001" -174514,Lightning Charging Cable,1,14.95,03/05/19 15:10,"972 Hill St, San Francisco, CA 94016" -174515,Vareebadd Phone,1,400,03/22/19 10:19,"829 Sunset St, San Francisco, CA 94016" -174515,USB-C Charging Cable,1,11.95,03/22/19 10:19,"829 Sunset St, San Francisco, CA 94016" -174516,iPhone,1,700,03/08/19 10:33,"647 Hill St, Portland, OR 97035" -174517,Flatscreen TV,1,300,03/11/19 17:11,"187 Lakeview St, Dallas, TX 75001" -174518,iPhone,1,700,03/05/19 20:43,"95 Main St, New York City, NY 10001" -174519,Lightning Charging Cable,1,14.95,03/26/19 15:53,"575 9th St, Boston, MA 02215" -174520,Wired Headphones,1,11.99,03/23/19 10:59,"197 Jackson St, Los Angeles, CA 90001" -174521,27in FHD Monitor,1,149.99,03/04/19 14:04,"778 8th St, Boston, MA 02215" -174522,Apple Airpods Headphones,1,150,03/14/19 23:43,"450 Walnut St, Los Angeles, CA 90001" -174523,Bose SoundSport Headphones,1,99.99,03/29/19 11:50,"19 Hill St, San Francisco, CA 94016" -174524,iPhone,1,700,03/14/19 15:24,"277 River St, Los Angeles, CA 90001" -174525,USB-C Charging Cable,1,11.95,03/05/19 11:13,"786 Lakeview St, New York City, NY 10001" -174526,AAA Batteries (4-pack),1,2.99,03/21/19 13:34,"920 Jefferson St, San Francisco, CA 94016" -174527,USB-C Charging Cable,1,11.95,03/21/19 18:26,"547 Chestnut St, New York City, NY 10001" -174527,27in FHD Monitor,1,149.99,03/21/19 18:26,"547 Chestnut St, New York City, NY 10001" -174528,27in FHD Monitor,1,149.99,03/01/19 16:53,"985 11th St, New York City, NY 10001" -174529,Lightning Charging Cable,1,14.95,03/18/19 19:58,"888 4th St, Los Angeles, CA 90001" -174530,Macbook Pro Laptop,1,1700,03/22/19 00:00,"428 Lakeview St, Dallas, TX 75001" -174531,Lightning Charging Cable,2,14.95,03/23/19 17:44,"481 South St, Dallas, TX 75001" -174531,20in Monitor,1,109.99,03/23/19 17:44,"481 South St, Dallas, TX 75001" -174532,Wired Headphones,1,11.99,03/09/19 20:13,"501 Chestnut St, Boston, MA 02215" -174533,AAA Batteries (4-pack),1,2.99,03/20/19 22:25,"661 Highland St, San Francisco, CA 94016" -174534,Wired Headphones,1,11.99,03/01/19 09:37,"526 2nd St, Boston, MA 02215" -174535,AA Batteries (4-pack),1,3.84,03/20/19 11:39,"840 9th St, Atlanta, GA 30301" -174536,AA Batteries (4-pack),1,3.84,03/07/19 21:29,"455 Lakeview St, New York City, NY 10001" -174537,Apple Airpods Headphones,1,150,03/23/19 11:12,"520 Forest St, San Francisco, CA 94016" -174538,USB-C Charging Cable,1,11.95,03/13/19 13:46,"499 Madison St, Atlanta, GA 30301" -174539,AAA Batteries (4-pack),1,2.99,03/22/19 22:26,"109 Spruce St, San Francisco, CA 94016" -174540,34in Ultrawide Monitor,1,379.99,03/07/19 09:14,"171 Lake St, Austin, TX 73301" -174541,AA Batteries (4-pack),1,3.84,03/04/19 15:19,"567 8th St, Atlanta, GA 30301" -174542,Wired Headphones,1,11.99,03/12/19 14:31,"448 Ridge St, Portland, OR 97035" -174543,USB-C Charging Cable,1,11.95,03/01/19 20:26,"928 Church St, Boston, MA 02215" -174544,Wired Headphones,1,11.99,03/26/19 16:15,"450 Madison St, Austin, TX 73301" -174545,Flatscreen TV,1,300,03/09/19 17:00,"90 Spruce St, Boston, MA 02215" -174546,Apple Airpods Headphones,1,150,03/21/19 14:37,"869 Chestnut St, San Francisco, CA 94016" -174547,Apple Airpods Headphones,1,150,03/20/19 16:35,"599 13th St, New York City, NY 10001" -174548,27in FHD Monitor,1,149.99,03/09/19 11:27,"344 Spruce St, Dallas, TX 75001" -174549,27in FHD Monitor,1,149.99,03/21/19 09:08,"960 Meadow St, New York City, NY 10001" -174550,Bose SoundSport Headphones,1,99.99,03/11/19 14:31,"845 Meadow St, Boston, MA 02215" -174551,Vareebadd Phone,1,400,03/19/19 10:16,"35 Chestnut St, Portland, OR 97035" -174552,27in 4K Gaming Monitor,1,389.99,03/14/19 11:05,"652 Ridge St, Portland, OR 97035" -174553,AA Batteries (4-pack),1,3.84,03/05/19 01:08,"323 10th St, Dallas, TX 75001" -174554,Apple Airpods Headphones,1,150,03/22/19 12:10,"579 5th St, New York City, NY 10001" -174555,Google Phone,1,600,03/09/19 18:57,"214 Hill St, Seattle, WA 98101" -174555,USB-C Charging Cable,1,11.95,03/09/19 18:57,"214 Hill St, Seattle, WA 98101" -174556,Apple Airpods Headphones,1,150,03/31/19 17:50,"85 10th St, Boston, MA 02215" -174557,Wired Headphones,1,11.99,03/11/19 16:26,"838 Lincoln St, Dallas, TX 75001" -174558,Lightning Charging Cable,1,14.95,03/31/19 14:18,"641 Church St, San Francisco, CA 94016" -174558,Bose SoundSport Headphones,1,99.99,03/31/19 14:18,"641 Church St, San Francisco, CA 94016" -174559,AA Batteries (4-pack),1,3.84,03/23/19 14:49,"959 11th St, Los Angeles, CA 90001" -174560,USB-C Charging Cable,2,11.95,03/29/19 19:36,"596 Park St, Portland, OR 97035" -174561,20in Monitor,1,109.99,03/31/19 19:38,"337 River St, Portland, OR 97035" -174562,Apple Airpods Headphones,1,150,03/02/19 18:09,"425 Highland St, Portland, OR 97035" -174563,27in FHD Monitor,1,149.99,03/25/19 13:38,"628 Jefferson St, Seattle, WA 98101" -174564,Lightning Charging Cable,1,14.95,03/25/19 14:31,"748 Maple St, Portland, OR 97035" -174565,27in 4K Gaming Monitor,1,389.99,03/18/19 18:19,"736 4th St, Atlanta, GA 30301" -174566,Apple Airpods Headphones,1,150,03/08/19 19:42,"220 11th St, Los Angeles, CA 90001" -174567,20in Monitor,1,109.99,03/21/19 09:45,"664 Hill St, San Francisco, CA 94016" -174568,Apple Airpods Headphones,1,150,03/10/19 10:26,"647 Highland St, Seattle, WA 98101" -174569,Wired Headphones,1,11.99,03/17/19 13:00,"231 9th St, Seattle, WA 98101" -174570,Wired Headphones,1,11.99,03/31/19 12:44,"57 Adams St, Atlanta, GA 30301" -174571,AAA Batteries (4-pack),1,2.99,03/31/19 23:46,"58 River St, Seattle, WA 98101" -174572,Flatscreen TV,1,300,03/09/19 17:40,"697 Lake St, New York City, NY 10001" -174573,Apple Airpods Headphones,1,150,03/30/19 12:41,"52 South St, Boston, MA 02215" -174574,27in 4K Gaming Monitor,1,389.99,03/19/19 15:57,"36 Wilson St, Austin, TX 73301" -174575,AA Batteries (4-pack),1,3.84,04/01/19 03:21,"969 Adams St, Boston, MA 02215" -174576,AA Batteries (4-pack),1,3.84,03/10/19 11:24,"92 Chestnut St, Portland, OR 97035" -174577,AAA Batteries (4-pack),1,2.99,03/27/19 08:07,"68 Maple St, Los Angeles, CA 90001" -174578,Macbook Pro Laptop,1,1700,03/28/19 08:06,"663 Hill St, New York City, NY 10001" -174579,AA Batteries (4-pack),1,3.84,03/27/19 09:18,"201 Lincoln St, New York City, NY 10001" -174580,Vareebadd Phone,1,400,03/13/19 21:37,"35 Spruce St, San Francisco, CA 94016" -174581,20in Monitor,1,109.99,03/14/19 09:50,"46 Wilson St, New York City, NY 10001" -174582,Wired Headphones,1,11.99,03/10/19 22:17,"28 Walnut St, Los Angeles, CA 90001" -174583,27in FHD Monitor,1,149.99,03/22/19 00:21,"925 Pine St, San Francisco, CA 94016" -174584,Wired Headphones,1,11.99,03/10/19 13:58,"155 Wilson St, Dallas, TX 75001" -174585,AAA Batteries (4-pack),3,2.99,03/24/19 13:31,"423 4th St, San Francisco, CA 94016" -174586,AA Batteries (4-pack),3,3.84,03/26/19 16:48,"94 Washington St, Austin, TX 73301" -174587,AA Batteries (4-pack),1,3.84,03/19/19 07:34,"497 Lincoln St, San Francisco, CA 94016" -174588,AA Batteries (4-pack),2,3.84,03/10/19 22:31,"88 Ridge St, San Francisco, CA 94016" -174589,27in FHD Monitor,1,149.99,03/23/19 10:25,"38 Lincoln St, New York City, NY 10001" -174590,Lightning Charging Cable,1,14.95,03/03/19 16:17,"885 9th St, Boston, MA 02215" -174591,USB-C Charging Cable,4,11.95,03/27/19 20:10,"437 Main St, New York City, NY 10001" -174592,AA Batteries (4-pack),2,3.84,03/09/19 21:37,"518 4th St, San Francisco, CA 94016" -174593,Apple Airpods Headphones,1,150,03/23/19 09:34,"28 12th St, Atlanta, GA 30301" -174594,ThinkPad Laptop,1,999.99,03/25/19 18:39,"644 Lakeview St, Boston, MA 02215" -174595,Lightning Charging Cable,2,14.95,03/01/19 16:22,"447 Highland St, Dallas, TX 75001" -174596,Lightning Charging Cable,2,14.95,03/26/19 10:15,"936 11th St, Seattle, WA 98101" -174597,AA Batteries (4-pack),2,3.84,03/31/19 13:25,"403 Main St, San Francisco, CA 94016" -174598,Bose SoundSport Headphones,1,99.99,03/16/19 13:47,"40 Sunset St, Los Angeles, CA 90001" -174599,Lightning Charging Cable,1,14.95,03/10/19 16:45,"602 West St, Atlanta, GA 30301" -174600,Macbook Pro Laptop,1,1700,03/22/19 12:38,"697 Sunset St, Portland, ME 04101" -174601,LG Washing Machine,1,600.0,03/08/19 12:54,"373 12th St, New York City, NY 10001" -174602,ThinkPad Laptop,1,999.99,03/07/19 20:50,"821 North St, Portland, OR 97035" -174603,Google Phone,1,600,03/14/19 14:48,"514 Main St, Los Angeles, CA 90001" -174604,AAA Batteries (4-pack),2,2.99,03/17/19 23:08,"289 14th St, New York City, NY 10001" -174605,Bose SoundSport Headphones,1,99.99,03/28/19 14:37,"978 Lincoln St, Boston, MA 02215" -174606,Lightning Charging Cable,1,14.95,03/02/19 22:52,"910 9th St, San Francisco, CA 94016" -174607,Bose SoundSport Headphones,1,99.99,03/01/19 18:52,"890 14th St, San Francisco, CA 94016" -174608,AA Batteries (4-pack),1,3.84,03/07/19 04:12,"537 Jefferson St, Los Angeles, CA 90001" -174609,Macbook Pro Laptop,1,1700,03/07/19 18:26,"100 Spruce St, Dallas, TX 75001" -174610,Wired Headphones,2,11.99,03/04/19 16:28,"18 Lakeview St, Portland, ME 04101" -174611,Lightning Charging Cable,1,14.95,03/06/19 22:08,"812 8th St, San Francisco, CA 94016" -174612,Apple Airpods Headphones,1,150,03/28/19 01:11,"588 5th St, Los Angeles, CA 90001" -174613,USB-C Charging Cable,1,11.95,03/24/19 20:44,"341 13th St, Atlanta, GA 30301" -174614,Wired Headphones,1,11.99,03/04/19 21:24,"780 Adams St, Los Angeles, CA 90001" -174615,27in FHD Monitor,1,149.99,03/29/19 11:42,"130 5th St, New York City, NY 10001" -174616,USB-C Charging Cable,2,11.95,03/22/19 11:20,"269 11th St, San Francisco, CA 94016" -174617,AAA Batteries (4-pack),1,2.99,03/26/19 15:30,"352 9th St, New York City, NY 10001" -174618,USB-C Charging Cable,1,11.95,03/22/19 14:05,"411 6th St, Boston, MA 02215" -174619,Vareebadd Phone,1,400,03/05/19 12:40,"118 2nd St, Dallas, TX 75001" -174620,Apple Airpods Headphones,1,150,03/31/19 18:13,"92 7th St, Atlanta, GA 30301" -174621,Wired Headphones,1,11.99,03/13/19 22:34,"127 Adams St, San Francisco, CA 94016" -174622,20in Monitor,1,109.99,03/12/19 15:21,"18 Maple St, Los Angeles, CA 90001" -174623,Wired Headphones,1,11.99,03/08/19 19:41,"229 Highland St, Dallas, TX 75001" -174624,Apple Airpods Headphones,1,150,03/12/19 22:54,"101 River St, San Francisco, CA 94016" -174625,Lightning Charging Cable,1,14.95,03/18/19 09:49,"439 14th St, San Francisco, CA 94016" -174626,AAA Batteries (4-pack),2,2.99,03/23/19 16:30,"968 Lake St, Atlanta, GA 30301" -174627,Apple Airpods Headphones,1,150,03/20/19 07:37,"600 4th St, Seattle, WA 98101" -174628,Lightning Charging Cable,1,14.95,03/03/19 13:21,"483 9th St, Los Angeles, CA 90001" -174629,AAA Batteries (4-pack),1,2.99,03/21/19 19:55,"508 12th St, Los Angeles, CA 90001" -174630,20in Monitor,1,109.99,03/21/19 18:06,"296 Hill St, San Francisco, CA 94016" -174631,AAA Batteries (4-pack),2,2.99,03/12/19 10:52,"734 Pine St, Boston, MA 02215" -174632,Lightning Charging Cable,1,14.95,03/10/19 20:16,"407 Willow St, Seattle, WA 98101" -174633,Lightning Charging Cable,1,14.95,03/15/19 16:28,"376 8th St, Austin, TX 73301" -174634,Google Phone,1,600,03/21/19 15:15,"688 Ridge St, San Francisco, CA 94016" -174635,Lightning Charging Cable,1,14.95,03/04/19 07:50,"91 10th St, New York City, NY 10001" -174636,Lightning Charging Cable,1,14.95,03/22/19 11:41,"170 Washington St, San Francisco, CA 94016" -174637,Apple Airpods Headphones,1,150,03/06/19 11:23,"817 Hickory St, Atlanta, GA 30301" -174638,Macbook Pro Laptop,1,1700,03/10/19 01:07,"701 Pine St, Atlanta, GA 30301" -174639,Apple Airpods Headphones,1,150,03/18/19 17:58,"217 Church St, San Francisco, CA 94016" -174640,Lightning Charging Cable,1,14.95,03/06/19 09:02,"636 2nd St, San Francisco, CA 94016" -174641,Lightning Charging Cable,1,14.95,03/23/19 13:51,"636 Pine St, San Francisco, CA 94016" -174642,Macbook Pro Laptop,1,1700,03/30/19 09:18,"78 7th St, Portland, OR 97035" -174643,AA Batteries (4-pack),5,3.84,03/03/19 11:06,"408 Elm St, Atlanta, GA 30301" -174644,Bose SoundSport Headphones,1,99.99,03/29/19 18:48,"702 Main St, Dallas, TX 75001" -174645,AA Batteries (4-pack),1,3.84,03/20/19 20:46,"824 5th St, Los Angeles, CA 90001" -174646,Apple Airpods Headphones,1,150,03/07/19 18:31,"876 14th St, Los Angeles, CA 90001" -174647,AA Batteries (4-pack),1,3.84,03/19/19 19:59,"869 North St, Boston, MA 02215" -174648,Bose SoundSport Headphones,1,99.99,03/25/19 23:00,"92 10th St, Los Angeles, CA 90001" -174649,Apple Airpods Headphones,1,150,03/07/19 19:56,"576 Elm St, San Francisco, CA 94016" -174650,Lightning Charging Cable,1,14.95,03/30/19 07:56,"52 Madison St, Los Angeles, CA 90001" -174651,Bose SoundSport Headphones,1,99.99,03/28/19 11:51,"204 Jackson St, Los Angeles, CA 90001" -174652,Wired Headphones,1,11.99,03/05/19 16:42,"65 River St, Boston, MA 02215" -174653,27in 4K Gaming Monitor,1,389.99,03/13/19 03:36,"78 4th St, Seattle, WA 98101" -174654,Apple Airpods Headphones,1,150,03/11/19 11:13,"108 Highland St, Los Angeles, CA 90001" -174655,Bose SoundSport Headphones,1,99.99,03/19/19 14:23,"24 Main St, Boston, MA 02215" -174655,USB-C Charging Cable,1,11.95,03/19/19 14:23,"24 Main St, Boston, MA 02215" -174656,Wired Headphones,1,11.99,03/11/19 13:35,"878 Jefferson St, Los Angeles, CA 90001" -174657,Wired Headphones,2,11.99,03/28/19 01:22,"45 Adams St, Los Angeles, CA 90001" -174658,Lightning Charging Cable,1,14.95,03/07/19 13:20,"207 2nd St, Boston, MA 02215" -174659,Wired Headphones,3,11.99,03/21/19 21:50,"179 Lincoln St, Boston, MA 02215" -174660,Apple Airpods Headphones,1,150,03/21/19 09:21,"336 10th St, San Francisco, CA 94016" -174661,USB-C Charging Cable,1,11.95,03/10/19 22:19,"308 Wilson St, Los Angeles, CA 90001" -174662,iPhone,1,700,03/29/19 08:56,"517 Ridge St, San Francisco, CA 94016" -174662,Wired Headphones,1,11.99,03/29/19 08:56,"517 Ridge St, San Francisco, CA 94016" -174663,AA Batteries (4-pack),1,3.84,03/13/19 19:02,"632 Lake St, Boston, MA 02215" -174663,Lightning Charging Cable,1,14.95,03/13/19 19:02,"632 Lake St, Boston, MA 02215" -174664,USB-C Charging Cable,1,11.95,03/22/19 11:18,"564 Wilson St, Portland, OR 97035" -174665,Bose SoundSport Headphones,1,99.99,03/11/19 14:40,"578 Elm St, Dallas, TX 75001" -174666,AAA Batteries (4-pack),1,2.99,03/14/19 17:46,"590 11th St, Boston, MA 02215" -174667,Google Phone,1,600,03/25/19 18:02,"270 Wilson St, Atlanta, GA 30301" -174667,USB-C Charging Cable,1,11.95,03/25/19 18:02,"270 Wilson St, Atlanta, GA 30301" -174668,USB-C Charging Cable,1,11.95,03/27/19 15:56,"602 Lakeview St, San Francisco, CA 94016" -174669,USB-C Charging Cable,1,11.95,03/22/19 00:56,"755 6th St, Atlanta, GA 30301" -174670,Flatscreen TV,1,300,03/09/19 11:42,"157 Willow St, San Francisco, CA 94016" -174671,Vareebadd Phone,1,400,03/27/19 23:36,"969 Meadow St, Atlanta, GA 30301" -174672,Lightning Charging Cable,1,14.95,03/13/19 12:19,"26 5th St, Boston, MA 02215" -174673,Bose SoundSport Headphones,1,99.99,03/10/19 07:41,"4 Meadow St, San Francisco, CA 94016" -174674,AAA Batteries (4-pack),1,2.99,03/29/19 20:10,"453 Madison St, San Francisco, CA 94016" -174675,Flatscreen TV,1,300,03/22/19 17:14,"76 1st St, Seattle, WA 98101" -174676,27in FHD Monitor,1,149.99,03/11/19 17:50,"274 4th St, Boston, MA 02215" -174677,Bose SoundSport Headphones,1,99.99,03/04/19 17:51,"488 5th St, Los Angeles, CA 90001" -174678,AAA Batteries (4-pack),1,2.99,03/21/19 13:56,"596 6th St, Atlanta, GA 30301" -174679,AA Batteries (4-pack),1,3.84,03/10/19 19:15,"643 Adams St, Los Angeles, CA 90001" -174680,Flatscreen TV,1,300,03/09/19 09:13,"840 Hill St, Austin, TX 73301" -174681,iPhone,1,700,03/15/19 20:27,"652 Hill St, New York City, NY 10001" -174682,Flatscreen TV,1,300,03/29/19 18:52,"197 7th St, Los Angeles, CA 90001" -174683,Google Phone,1,600,03/19/19 16:16,"503 Meadow St, Dallas, TX 75001" -174683,Bose SoundSport Headphones,1,99.99,03/19/19 16:16,"503 Meadow St, Dallas, TX 75001" -174684,Flatscreen TV,1,300,03/02/19 21:56,"756 Hill St, Atlanta, GA 30301" -174685,27in 4K Gaming Monitor,1,389.99,03/18/19 13:21,"469 5th St, Los Angeles, CA 90001" -174686,AA Batteries (4-pack),1,3.84,03/11/19 20:40,"541 Main St, San Francisco, CA 94016" -174687,USB-C Charging Cable,1,11.95,03/09/19 20:27,"937 1st St, Atlanta, GA 30301" -174688,AAA Batteries (4-pack),3,2.99,03/17/19 12:37,"760 Jefferson St, Dallas, TX 75001" -174689,27in 4K Gaming Monitor,1,389.99,03/16/19 13:43,"4 Washington St, Boston, MA 02215" -174690,AA Batteries (4-pack),1,3.84,03/10/19 22:38,"834 Sunset St, San Francisco, CA 94016" -174691,Apple Airpods Headphones,1,150,03/17/19 13:22,"672 Highland St, Seattle, WA 98101" -174691,Apple Airpods Headphones,1,150,03/17/19 13:22,"672 Highland St, Seattle, WA 98101" -174692,USB-C Charging Cable,2,11.95,03/25/19 12:54,"819 Lincoln St, Los Angeles, CA 90001" -174693,27in FHD Monitor,1,149.99,03/25/19 10:08,"605 Wilson St, San Francisco, CA 94016" -174694,34in Ultrawide Monitor,1,379.99,03/11/19 15:47,"689 Lincoln St, Austin, TX 73301" -174695,AAA Batteries (4-pack),1,2.99,03/06/19 17:48,"429 Cherry St, San Francisco, CA 94016" -174696,Wired Headphones,1,11.99,03/08/19 14:59,"583 11th St, Seattle, WA 98101" -174697,Apple Airpods Headphones,1,150,03/12/19 13:37,"558 Cherry St, San Francisco, CA 94016" -174698,Apple Airpods Headphones,1,150,03/11/19 19:45,"483 South St, New York City, NY 10001" -174699,Bose SoundSport Headphones,1,99.99,03/14/19 09:38,"621 Johnson St, San Francisco, CA 94016" -174700,Lightning Charging Cable,1,14.95,03/11/19 15:20,"188 8th St, Dallas, TX 75001" -174701,Macbook Pro Laptop,1,1700,03/18/19 21:52,"936 Cherry St, San Francisco, CA 94016" -174702,AAA Batteries (4-pack),1,2.99,03/16/19 13:45,"416 6th St, Atlanta, GA 30301" -174703,AA Batteries (4-pack),1,3.84,03/15/19 11:34,"766 Walnut St, Dallas, TX 75001" -174704,Wired Headphones,1,11.99,03/16/19 18:08,"893 2nd St, Boston, MA 02215" -174705,20in Monitor,1,109.99,03/29/19 12:04,"235 Jefferson St, Boston, MA 02215" -174706,ThinkPad Laptop,1,999.99,03/31/19 20:05,"700 Cherry St, Los Angeles, CA 90001" -174707,Apple Airpods Headphones,1,150,03/19/19 21:13,"800 Main St, Los Angeles, CA 90001" -174708,34in Ultrawide Monitor,1,379.99,03/28/19 15:44,"54 4th St, Boston, MA 02215" -174709,AA Batteries (4-pack),1,3.84,03/06/19 21:39,"312 4th St, San Francisco, CA 94016" -174710,Wired Headphones,1,11.99,03/11/19 16:34,"660 Lincoln St, Boston, MA 02215" -174710,Lightning Charging Cable,1,14.95,03/11/19 16:34,"660 Lincoln St, Boston, MA 02215" -174711,AA Batteries (4-pack),1,3.84,03/05/19 17:41,"344 13th St, Los Angeles, CA 90001" -174712,AAA Batteries (4-pack),1,2.99,03/27/19 20:24,"127 5th St, Dallas, TX 75001" -174713,AAA Batteries (4-pack),1,2.99,03/06/19 19:42,"465 2nd St, San Francisco, CA 94016" -174714,iPhone,1,700,03/09/19 09:20,"743 Lakeview St, New York City, NY 10001" -174715,Lightning Charging Cable,1,14.95,03/31/19 22:02,"877 Chestnut St, Dallas, TX 75001" -174716,Wired Headphones,1,11.99,03/06/19 12:06,"539 8th St, San Francisco, CA 94016" -174717,Bose SoundSport Headphones,2,99.99,03/30/19 12:34,"868 Park St, Los Angeles, CA 90001" -174718,AAA Batteries (4-pack),1,2.99,03/23/19 13:40,"691 West St, Atlanta, GA 30301" -174719,LG Washing Machine,1,600.0,03/14/19 15:01,"147 5th St, San Francisco, CA 94016" -174720,USB-C Charging Cable,1,11.95,03/22/19 19:05,"467 North St, Austin, TX 73301" -174721,AA Batteries (4-pack),1,3.84,03/27/19 18:49,"633 Elm St, Los Angeles, CA 90001" -174722,Bose SoundSport Headphones,1,99.99,03/27/19 14:23,"961 Chestnut St, Boston, MA 02215" -174723,USB-C Charging Cable,1,11.95,03/11/19 02:06,"727 Church St, New York City, NY 10001" -174724,34in Ultrawide Monitor,1,379.99,03/31/19 20:04,"228 Spruce St, Austin, TX 73301" -174725,Apple Airpods Headphones,1,150,03/22/19 10:03,"940 Cedar St, Dallas, TX 75001" -174726,Wired Headphones,1,11.99,03/23/19 20:22,"941 Lakeview St, Atlanta, GA 30301" -174727,AA Batteries (4-pack),2,3.84,03/11/19 09:01,"308 Highland St, San Francisco, CA 94016" -174728,AA Batteries (4-pack),1,3.84,03/20/19 08:41,"469 Jefferson St, San Francisco, CA 94016" -174729,Wired Headphones,1,11.99,03/01/19 07:14,"825 Dogwood St, Dallas, TX 75001" -174730,USB-C Charging Cable,1,11.95,03/01/19 19:35,"528 Elm St, San Francisco, CA 94016" -174731,34in Ultrawide Monitor,1,379.99,03/27/19 12:33,"431 Chestnut St, San Francisco, CA 94016" -174732,Lightning Charging Cable,1,14.95,03/24/19 23:42,"466 Hill St, Austin, TX 73301" -174733,34in Ultrawide Monitor,1,379.99,03/18/19 23:00,"576 Hill St, San Francisco, CA 94016" -174734,Bose SoundSport Headphones,1,99.99,03/01/19 15:31,"291 1st St, Boston, MA 02215" -174735,USB-C Charging Cable,1,11.95,03/21/19 17:27,"728 12th St, Portland, OR 97035" -174736,AAA Batteries (4-pack),4,2.99,03/23/19 19:10,"568 Maple St, Seattle, WA 98101" -174737,AA Batteries (4-pack),1,3.84,03/21/19 16:41,"780 Pine St, Boston, MA 02215" -174738,Bose SoundSport Headphones,1,99.99,03/30/19 16:01,"768 Lincoln St, Atlanta, GA 30301" -174739,AAA Batteries (4-pack),1,2.99,03/12/19 11:15,"247 Pine St, Boston, MA 02215" -174740,Wired Headphones,1,11.99,03/12/19 22:48,"299 Ridge St, Atlanta, GA 30301" -174741,Apple Airpods Headphones,1,150,03/24/19 17:50,"314 4th St, San Francisco, CA 94016" -174742,Google Phone,1,600,03/14/19 17:02,"506 10th St, Seattle, WA 98101" -174742,USB-C Charging Cable,1,11.95,03/14/19 17:02,"506 10th St, Seattle, WA 98101" -174743,AAA Batteries (4-pack),1,2.99,03/09/19 12:41,"338 Cherry St, Los Angeles, CA 90001" -174744,Bose SoundSport Headphones,1,99.99,03/06/19 17:52,"478 Jackson St, Portland, OR 97035" -174745,USB-C Charging Cable,1,11.95,03/18/19 10:18,"292 4th St, Los Angeles, CA 90001" -174746,Google Phone,1,600,03/08/19 09:05,"872 Wilson St, New York City, NY 10001" -174746,USB-C Charging Cable,3,11.95,03/08/19 09:05,"872 Wilson St, New York City, NY 10001" -174747,Lightning Charging Cable,1,14.95,03/07/19 08:09,"720 Chestnut St, San Francisco, CA 94016" -174748,Apple Airpods Headphones,1,150,03/04/19 20:45,"471 North St, Austin, TX 73301" -174748,LG Dryer,1,600.0,03/04/19 20:45,"471 North St, Austin, TX 73301" -174749,Macbook Pro Laptop,1,1700,03/23/19 18:00,"51 6th St, San Francisco, CA 94016" -174750,Apple Airpods Headphones,1,150,03/08/19 13:51,"354 Adams St, San Francisco, CA 94016" -174751,AAA Batteries (4-pack),2,2.99,03/22/19 08:43,"861 2nd St, Seattle, WA 98101" -174752,USB-C Charging Cable,1,11.95,03/04/19 17:48,"222 Adams St, Los Angeles, CA 90001" -174753,AAA Batteries (4-pack),4,2.99,03/22/19 23:02,"647 10th St, Los Angeles, CA 90001" -174754,Google Phone,1,600,03/02/19 18:54,"124 Sunset St, Austin, TX 73301" -174755,AAA Batteries (4-pack),1,2.99,03/08/19 09:26,"138 Park St, Portland, ME 04101" -174756,Lightning Charging Cable,2,14.95,03/15/19 10:47,"915 Maple St, Boston, MA 02215" -174757,AAA Batteries (4-pack),1,2.99,03/09/19 08:53,"22 Center St, Los Angeles, CA 90001" -174758,iPhone,1,700,03/30/19 11:06,"55 Chestnut St, New York City, NY 10001" -174759,Apple Airpods Headphones,1,150,03/07/19 09:17,"741 9th St, San Francisco, CA 94016" -174760,Lightning Charging Cable,1,14.95,03/24/19 22:44,"272 Johnson St, San Francisco, CA 94016" -174761,Lightning Charging Cable,1,14.95,03/24/19 15:37,"844 1st St, Portland, OR 97035" -174762,Google Phone,1,600,03/11/19 21:14,"423 Lakeview St, Dallas, TX 75001" -174763,27in 4K Gaming Monitor,1,389.99,03/07/19 19:37,"462 Jackson St, San Francisco, CA 94016" -174764,AAA Batteries (4-pack),1,2.99,03/02/19 22:02,"847 Forest St, Los Angeles, CA 90001" -174765,ThinkPad Laptop,1,999.99,03/04/19 13:19,"9 Church St, San Francisco, CA 94016" -174766,Lightning Charging Cable,2,14.95,03/13/19 01:49,"385 1st St, San Francisco, CA 94016" -174767,AAA Batteries (4-pack),1,2.99,03/21/19 20:27,"815 Highland St, New York City, NY 10001" -174768,27in 4K Gaming Monitor,1,389.99,03/31/19 00:11,"992 North St, Seattle, WA 98101" -174769,AAA Batteries (4-pack),1,2.99,03/22/19 17:27,"384 Main St, New York City, NY 10001" -174770,iPhone,1,700,03/29/19 18:47,"636 Johnson St, San Francisco, CA 94016" -174770,Lightning Charging Cable,1,14.95,03/29/19 18:47,"636 Johnson St, San Francisco, CA 94016" -174771,AA Batteries (4-pack),1,3.84,03/02/19 18:51,"821 8th St, San Francisco, CA 94016" -174772,Lightning Charging Cable,1,14.95,03/31/19 14:29,"206 6th St, Boston, MA 02215" -174773,Bose SoundSport Headphones,1,99.99,03/19/19 18:17,"387 9th St, Boston, MA 02215" -174774,Apple Airpods Headphones,1,150,03/09/19 17:46,"102 Walnut St, Los Angeles, CA 90001" -174775,AAA Batteries (4-pack),1,2.99,03/27/19 14:12,"340 Jefferson St, New York City, NY 10001" -174776,Bose SoundSport Headphones,1,99.99,03/11/19 12:36,"196 Jackson St, Dallas, TX 75001" -174777,27in FHD Monitor,1,149.99,03/27/19 18:10,"915 Maple St, Los Angeles, CA 90001" -174778,34in Ultrawide Monitor,1,379.99,03/12/19 00:27,"579 Church St, San Francisco, CA 94016" -174779,USB-C Charging Cable,1,11.95,03/07/19 16:46,"645 Center St, Austin, TX 73301" -174780,27in FHD Monitor,1,149.99,03/18/19 18:39,"627 7th St, New York City, NY 10001" -174781,Lightning Charging Cable,1,14.95,03/07/19 20:22,"613 14th St, Austin, TX 73301" -174782,34in Ultrawide Monitor,1,379.99,03/13/19 18:50,"411 Jackson St, Atlanta, GA 30301" -174783,USB-C Charging Cable,1,11.95,03/18/19 18:47,"440 7th St, San Francisco, CA 94016" -174784,Apple Airpods Headphones,1,150,03/26/19 16:50,"988 Cedar St, San Francisco, CA 94016" -174785,USB-C Charging Cable,1,11.95,03/24/19 19:11,"467 Wilson St, Dallas, TX 75001" -174786,AAA Batteries (4-pack),1,2.99,03/26/19 15:00,"913 6th St, Los Angeles, CA 90001" -174787,AAA Batteries (4-pack),1,2.99,03/28/19 19:48,"752 Willow St, San Francisco, CA 94016" -174788,Bose SoundSport Headphones,1,99.99,03/22/19 08:45,"457 2nd St, New York City, NY 10001" -174789,Google Phone,1,600,03/05/19 13:18,"340 1st St, Atlanta, GA 30301" -174790,Wired Headphones,1,11.99,03/25/19 09:18,"375 West St, Dallas, TX 75001" -174791,Apple Airpods Headphones,1,150,03/17/19 11:02,"253 2nd St, New York City, NY 10001" -174792,LG Dryer,1,600.0,03/24/19 14:34,"53 9th St, New York City, NY 10001" -174793,USB-C Charging Cable,1,11.95,03/20/19 16:09,"911 Lake St, San Francisco, CA 94016" -174794,Lightning Charging Cable,1,14.95,03/23/19 23:09,"130 4th St, Atlanta, GA 30301" -174795,USB-C Charging Cable,1,11.95,03/13/19 10:06,"342 14th St, Boston, MA 02215" -174796,Apple Airpods Headphones,1,150,03/14/19 12:05,"359 13th St, San Francisco, CA 94016" -174797,Apple Airpods Headphones,1,150,03/07/19 13:21,"68 Willow St, Los Angeles, CA 90001" -174798,Google Phone,1,600,03/06/19 08:49,"317 Hickory St, San Francisco, CA 94016" -174799,ThinkPad Laptop,1,999.99,03/23/19 15:09,"422 Chestnut St, Portland, ME 04101" -174800,USB-C Charging Cable,1,11.95,03/18/19 19:03,"77 Highland St, Boston, MA 02215" -174801,Vareebadd Phone,1,400,03/10/19 02:28,"913 River St, San Francisco, CA 94016" -174802,Lightning Charging Cable,1,14.95,03/21/19 07:52,"568 Church St, San Francisco, CA 94016" -174803,Wired Headphones,1,11.99,03/07/19 10:32,"504 Pine St, San Francisco, CA 94016" -174804,34in Ultrawide Monitor,1,379.99,03/27/19 09:27,"872 North St, Atlanta, GA 30301" -174805,Lightning Charging Cable,1,14.95,03/20/19 15:05,"566 Sunset St, Boston, MA 02215" -174806,USB-C Charging Cable,2,11.95,03/19/19 19:50,"46 Meadow St, Dallas, TX 75001" -174807,Lightning Charging Cable,1,14.95,03/20/19 14:00,"428 4th St, Austin, TX 73301" -174808,Lightning Charging Cable,1,14.95,03/30/19 20:33,"271 Cedar St, New York City, NY 10001" -174809,AA Batteries (4-pack),2,3.84,03/08/19 12:09,"635 14th St, San Francisco, CA 94016" -174810,ThinkPad Laptop,1,999.99,03/10/19 01:07,"744 Pine St, New York City, NY 10001" -174811,Bose SoundSport Headphones,1,99.99,03/12/19 09:28,"802 Center St, Atlanta, GA 30301" -174812,Apple Airpods Headphones,1,150,03/02/19 15:01,"821 Hickory St, San Francisco, CA 94016" -174813,AAA Batteries (4-pack),1,2.99,03/29/19 19:58,"704 Jackson St, Los Angeles, CA 90001" -174814,Wired Headphones,1,11.99,03/02/19 20:15,"735 7th St, San Francisco, CA 94016" -174815,Macbook Pro Laptop,1,1700,03/01/19 15:25,"397 Elm St, New York City, NY 10001" -174816,AA Batteries (4-pack),5,3.84,03/25/19 21:15,"156 Jefferson St, San Francisco, CA 94016" -174817,34in Ultrawide Monitor,1,379.99,03/16/19 11:07,"241 Willow St, Portland, OR 97035" -174818,AA Batteries (4-pack),1,3.84,03/26/19 21:35,"611 Lake St, Portland, ME 04101" -174819,34in Ultrawide Monitor,1,379.99,03/25/19 13:13,"890 Lincoln St, Portland, OR 97035" -174820,USB-C Charging Cable,1,11.95,03/29/19 19:16,"181 Madison St, San Francisco, CA 94016" -174821,34in Ultrawide Monitor,1,379.99,03/30/19 19:54,"349 8th St, Los Angeles, CA 90001" -174822,Apple Airpods Headphones,1,150,03/13/19 10:27,"47 9th St, Austin, TX 73301" -174823,AA Batteries (4-pack),1,3.84,03/16/19 09:39,"804 5th St, San Francisco, CA 94016" -174824,Bose SoundSport Headphones,1,99.99,03/15/19 20:51,"729 11th St, Dallas, TX 75001" -174825,27in FHD Monitor,1,149.99,03/03/19 15:09,"665 Sunset St, San Francisco, CA 94016" -174826,Lightning Charging Cable,1,14.95,03/22/19 17:39,"633 Washington St, New York City, NY 10001" -174827,Wired Headphones,2,11.99,03/18/19 05:58,"928 5th St, New York City, NY 10001" -174828,AAA Batteries (4-pack),1,2.99,03/03/19 08:40,"922 North St, Seattle, WA 98101" -174829,27in FHD Monitor,1,149.99,03/31/19 18:39,"793 Lakeview St, San Francisco, CA 94016" -174830,Lightning Charging Cable,1,14.95,03/02/19 18:25,"456 Johnson St, Boston, MA 02215" -174831,Apple Airpods Headphones,1,150,03/15/19 13:11,"296 Walnut St, San Francisco, CA 94016" -174832,USB-C Charging Cable,1,11.95,03/26/19 19:42,"479 Lakeview St, Boston, MA 02215" -174833,AAA Batteries (4-pack),1,2.99,03/30/19 10:51,"648 13th St, Austin, TX 73301" -174834,27in 4K Gaming Monitor,1,389.99,03/17/19 21:45,"333 Highland St, Portland, OR 97035" -174835,USB-C Charging Cable,1,11.95,03/19/19 10:30,"601 Hickory St, Dallas, TX 75001" -174836,AAA Batteries (4-pack),2,2.99,03/19/19 21:58,"409 10th St, Dallas, TX 75001" -174837,Bose SoundSport Headphones,1,99.99,03/10/19 15:12,"912 13th St, Los Angeles, CA 90001" -174838,USB-C Charging Cable,2,11.95,03/01/19 05:52,"129 7th St, Boston, MA 02215" -174839,Vareebadd Phone,1,400,03/10/19 16:39,"136 Chestnut St, Boston, MA 02215" -174840,Flatscreen TV,1,300,03/22/19 14:30,"951 Lake St, Los Angeles, CA 90001" -174841,Wired Headphones,1,11.99,03/01/19 23:54,"396 Center St, Los Angeles, CA 90001" -174842,Bose SoundSport Headphones,1,99.99,03/07/19 08:26,"258 2nd St, San Francisco, CA 94016" -174843,Wired Headphones,1,11.99,03/10/19 04:39,"294 11th St, Los Angeles, CA 90001" -174844,Bose SoundSport Headphones,1,99.99,03/14/19 13:28,"788 Center St, Austin, TX 73301" -174845,34in Ultrawide Monitor,1,379.99,03/28/19 18:58,"912 West St, Dallas, TX 75001" -174846,Apple Airpods Headphones,1,150,03/07/19 20:12,"37 Washington St, Boston, MA 02215" -174847,ThinkPad Laptop,1,999.99,03/20/19 11:06,"936 Wilson St, Boston, MA 02215" -174848,34in Ultrawide Monitor,1,379.99,03/09/19 22:42,"628 Lakeview St, San Francisco, CA 94016" -174849,Flatscreen TV,1,300,03/22/19 17:45,"870 Johnson St, New York City, NY 10001" -174850,Bose SoundSport Headphones,1,99.99,03/05/19 21:16,"337 North St, San Francisco, CA 94016" -174851,AA Batteries (4-pack),1,3.84,03/14/19 16:51,"827 4th St, San Francisco, CA 94016" -174852,USB-C Charging Cable,1,11.95,03/28/19 16:33,"662 Cedar St, Dallas, TX 75001" -174853,AAA Batteries (4-pack),1,2.99,03/10/19 22:07,"464 Washington St, Boston, MA 02215" -174854,AA Batteries (4-pack),1,3.84,03/28/19 11:02,"179 Cedar St, Los Angeles, CA 90001" -174855,34in Ultrawide Monitor,1,379.99,03/25/19 14:37,"659 Cherry St, Seattle, WA 98101" -174856,Apple Airpods Headphones,1,150,03/26/19 12:11,"723 Johnson St, Dallas, TX 75001" -174857,27in FHD Monitor,1,149.99,03/29/19 20:35,"205 13th St, New York City, NY 10001" -174858,Wired Headphones,1,11.99,03/03/19 15:25,"937 South St, Los Angeles, CA 90001" -174859,Lightning Charging Cable,1,14.95,03/13/19 20:49,"167 Elm St, San Francisco, CA 94016" -174860,Apple Airpods Headphones,1,150,03/09/19 06:48,"228 Walnut St, New York City, NY 10001" -174861,Macbook Pro Laptop,1,1700,03/07/19 14:28,"338 Church St, San Francisco, CA 94016" -174862,Google Phone,1,600,03/02/19 18:02,"173 13th St, Boston, MA 02215" -174863,Apple Airpods Headphones,1,150,03/06/19 10:46,"272 7th St, Dallas, TX 75001" -174864,34in Ultrawide Monitor,1,379.99,03/19/19 08:39,"329 Johnson St, San Francisco, CA 94016" -174865,AAA Batteries (4-pack),1,2.99,03/26/19 08:34,"901 Lakeview St, San Francisco, CA 94016" -174866,AAA Batteries (4-pack),1,2.99,03/29/19 16:30,"109 Willow St, Seattle, WA 98101" -174867,AAA Batteries (4-pack),1,2.99,03/04/19 18:31,"219 West St, San Francisco, CA 94016" -174868,USB-C Charging Cable,1,11.95,03/27/19 15:32,"191 Church St, Los Angeles, CA 90001" -174869,20in Monitor,1,109.99,03/04/19 19:11,"240 River St, Austin, TX 73301" -174870,LG Dryer,1,600.0,03/16/19 00:00,"310 Sunset St, Seattle, WA 98101" -174871,Flatscreen TV,1,300,03/26/19 17:42,"151 North St, San Francisco, CA 94016" -174872,ThinkPad Laptop,1,999.99,03/03/19 12:31,"235 Lake St, Seattle, WA 98101" -174873,Vareebadd Phone,1,400,03/18/19 13:52,"685 Maple St, San Francisco, CA 94016" -174873,USB-C Charging Cable,1,11.95,03/18/19 13:52,"685 Maple St, San Francisco, CA 94016" -174874,USB-C Charging Cable,2,11.95,03/21/19 17:23,"165 5th St, Los Angeles, CA 90001" -174875,AAA Batteries (4-pack),1,2.99,03/10/19 08:07,"520 Hill St, New York City, NY 10001" -174876,iPhone,1,700,03/12/19 16:31,"804 8th St, San Francisco, CA 94016" -174877,Lightning Charging Cable,1,14.95,03/02/19 15:17,"188 Spruce St, Los Angeles, CA 90001" -174878,Macbook Pro Laptop,1,1700,03/16/19 20:22,"849 Church St, Portland, OR 97035" -174879,AA Batteries (4-pack),2,3.84,03/05/19 09:24,"684 Highland St, Dallas, TX 75001" -174880,AA Batteries (4-pack),1,3.84,03/04/19 07:12,"408 Spruce St, San Francisco, CA 94016" -174881,Bose SoundSport Headphones,1,99.99,03/29/19 10:03,"108 Willow St, Los Angeles, CA 90001" -174882,Bose SoundSport Headphones,1,99.99,03/04/19 09:37,"924 Adams St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -174883,Apple Airpods Headphones,1,150,03/17/19 21:04,"236 Elm St, Portland, OR 97035" -174884,USB-C Charging Cable,1,11.95,03/29/19 06:15,"528 River St, New York City, NY 10001" -174885,Apple Airpods Headphones,1,150,03/04/19 18:26,"57 Cherry St, Boston, MA 02215" -174886,USB-C Charging Cable,1,11.95,03/02/19 15:32,"6 7th St, Dallas, TX 75001" -174887,AAA Batteries (4-pack),2,2.99,03/31/19 11:42,"31 Highland St, Portland, OR 97035" -174888,Wired Headphones,1,11.99,03/02/19 20:50,"717 Willow St, Los Angeles, CA 90001" -174889,27in 4K Gaming Monitor,1,389.99,03/18/19 11:47,"934 12th St, Seattle, WA 98101" -174890,27in 4K Gaming Monitor,1,389.99,03/10/19 22:31,"529 Wilson St, Austin, TX 73301" -174891,Lightning Charging Cable,1,14.95,03/20/19 09:38,"730 Willow St, Atlanta, GA 30301" -174892,Macbook Pro Laptop,1,1700,03/12/19 09:06,"349 Lincoln St, San Francisco, CA 94016" -174893,Apple Airpods Headphones,1,150,03/12/19 13:39,"769 Dogwood St, Austin, TX 73301" -174894,iPhone,1,700,03/30/19 22:53,"971 Johnson St, Los Angeles, CA 90001" -174895,Flatscreen TV,1,300,03/26/19 17:56,"129 River St, Boston, MA 02215" -174896,USB-C Charging Cable,2,11.95,03/09/19 21:22,"209 8th St, San Francisco, CA 94016" -174897,USB-C Charging Cable,1,11.95,03/18/19 12:39,"231 Washington St, Los Angeles, CA 90001" -174898,27in FHD Monitor,1,149.99,03/10/19 15:04,"61 Sunset St, Portland, OR 97035" -174899,Lightning Charging Cable,1,14.95,03/19/19 13:02,"729 Chestnut St, San Francisco, CA 94016" -174900,Flatscreen TV,1,300,03/22/19 12:55,"649 Center St, Boston, MA 02215" -174901,iPhone,1,700,03/02/19 14:41,"689 12th St, San Francisco, CA 94016" -174902,Apple Airpods Headphones,1,150,03/20/19 19:24,"972 Spruce St, Los Angeles, CA 90001" -174903,Google Phone,1,600,03/12/19 18:37,"796 Chestnut St, New York City, NY 10001" -174904,AAA Batteries (4-pack),1,2.99,03/08/19 14:01,"280 Ridge St, Los Angeles, CA 90001" -174905,20in Monitor,1,109.99,03/23/19 01:35,"792 Chestnut St, Austin, TX 73301" -174906,34in Ultrawide Monitor,1,379.99,03/26/19 16:07,"621 Dogwood St, Dallas, TX 75001" -174907,Wired Headphones,1,11.99,03/01/19 23:12,"282 Elm St, Dallas, TX 75001" -174908,27in 4K Gaming Monitor,1,389.99,03/19/19 15:41,"644 West St, San Francisco, CA 94016" -174909,Apple Airpods Headphones,1,150,03/17/19 08:35,"140 Elm St, San Francisco, CA 94016" -174910,AAA Batteries (4-pack),1,2.99,03/05/19 15:03,"764 14th St, San Francisco, CA 94016" -174911,AAA Batteries (4-pack),1,2.99,03/25/19 19:31,"394 Church St, Atlanta, GA 30301" -174912,Wired Headphones,1,11.99,03/15/19 14:50,"815 10th St, Los Angeles, CA 90001" -174913,AA Batteries (4-pack),1,3.84,03/25/19 16:28,"203 Lakeview St, Los Angeles, CA 90001" -174914,Bose SoundSport Headphones,1,99.99,03/06/19 19:00,"145 Ridge St, Dallas, TX 75001" -174915,USB-C Charging Cable,1,11.95,03/05/19 17:20,"267 West St, Portland, OR 97035" -174916,USB-C Charging Cable,1,11.95,03/18/19 20:17,"31 Lake St, Dallas, TX 75001" -174917,27in FHD Monitor,1,149.99,03/30/19 12:02,"531 Main St, New York City, NY 10001" -174918,AA Batteries (4-pack),1,3.84,03/26/19 21:07,"940 Johnson St, Seattle, WA 98101" -174919,Wired Headphones,1,11.99,03/01/19 23:48,"57 Church St, Los Angeles, CA 90001" -174920,Apple Airpods Headphones,1,150,03/13/19 15:21,"599 Cherry St, San Francisco, CA 94016" -174921,Apple Airpods Headphones,1,150,03/28/19 13:28,"325 Elm St, San Francisco, CA 94016" -174922,Bose SoundSport Headphones,1,99.99,03/12/19 23:50,"339 1st St, San Francisco, CA 94016" -174923,USB-C Charging Cable,1,11.95,03/11/19 18:38,"373 Spruce St, New York City, NY 10001" -174924,AAA Batteries (4-pack),1,2.99,03/17/19 15:26,"134 Hickory St, Seattle, WA 98101" -174925,USB-C Charging Cable,1,11.95,03/02/19 18:18,"931 West St, Austin, TX 73301" -174926,27in FHD Monitor,1,149.99,03/18/19 19:56,"720 West St, Boston, MA 02215" -174927,Bose SoundSport Headphones,1,99.99,03/02/19 22:11,"293 Cedar St, San Francisco, CA 94016" -174928,Bose SoundSport Headphones,1,99.99,03/30/19 14:35,"568 Main St, San Francisco, CA 94016" -174929,AAA Batteries (4-pack),4,2.99,03/17/19 17:32,"70 West St, Atlanta, GA 30301" -174930,iPhone,1,700,03/06/19 10:42,"237 Adams St, San Francisco, CA 94016" -174930,Lightning Charging Cable,1,14.95,03/06/19 10:42,"237 Adams St, San Francisco, CA 94016" -,,,,, -174931,Apple Airpods Headphones,1,150,03/02/19 22:01,"904 Washington St, Los Angeles, CA 90001" -174932,Google Phone,1,600,03/15/19 19:32,"10 Lake St, Boston, MA 02215" -174932,Bose SoundSport Headphones,1,99.99,03/15/19 19:32,"10 Lake St, Boston, MA 02215" -174933,Wired Headphones,1,11.99,03/16/19 19:56,"727 South St, Atlanta, GA 30301" -174933,Lightning Charging Cable,1,14.95,03/16/19 19:56,"727 South St, Atlanta, GA 30301" -174934,ThinkPad Laptop,1,999.99,03/08/19 23:48,"536 Willow St, Atlanta, GA 30301" -174935,Google Phone,1,600,03/10/19 19:42,"83 2nd St, San Francisco, CA 94016" -174936,AA Batteries (4-pack),1,3.84,03/18/19 20:38,"373 Chestnut St, San Francisco, CA 94016" -174937,iPhone,1,700,03/23/19 00:26,"284 14th St, Austin, TX 73301" -174938,Lightning Charging Cable,1,14.95,03/13/19 21:56,"417 Washington St, Portland, OR 97035" -174939,Flatscreen TV,1,300,03/10/19 15:11,"822 9th St, Los Angeles, CA 90001" -174940,Bose SoundSport Headphones,1,99.99,03/24/19 17:02,"113 Pine St, Boston, MA 02215" -174941,Wired Headphones,1,11.99,03/27/19 15:43,"14 West St, Atlanta, GA 30301" -174942,27in FHD Monitor,1,149.99,03/01/19 18:32,"219 River St, New York City, NY 10001" -174943,Wired Headphones,1,11.99,03/02/19 15:06,"617 Willow St, Boston, MA 02215" -174944,Lightning Charging Cable,1,14.95,03/30/19 12:02,"569 Dogwood St, Los Angeles, CA 90001" -174945,27in 4K Gaming Monitor,1,389.99,03/25/19 17:26,"543 Highland St, San Francisco, CA 94016" -174946,AA Batteries (4-pack),1,3.84,03/19/19 20:11,"304 14th St, Atlanta, GA 30301" -174947,AAA Batteries (4-pack),2,2.99,03/30/19 21:02,"534 Cedar St, Dallas, TX 75001" -174948,AA Batteries (4-pack),1,3.84,03/22/19 20:42,"766 10th St, Atlanta, GA 30301" -174949,Bose SoundSport Headphones,1,99.99,03/26/19 14:07,"360 2nd St, Boston, MA 02215" -174950,27in 4K Gaming Monitor,1,389.99,03/11/19 20:46,"476 Meadow St, Los Angeles, CA 90001" -174951,Wired Headphones,1,11.99,03/19/19 18:13,"584 14th St, New York City, NY 10001" -174952,34in Ultrawide Monitor,1,379.99,03/10/19 17:28,"233 12th St, Austin, TX 73301" -174953,Vareebadd Phone,1,400,03/14/19 20:55,"394 Church St, Portland, OR 97035" -174954,34in Ultrawide Monitor,1,379.99,03/16/19 11:36,"30 Cedar St, Los Angeles, CA 90001" -174955,AAA Batteries (4-pack),1,2.99,03/05/19 18:54,"762 Spruce St, San Francisco, CA 94016" -174956,AA Batteries (4-pack),1,3.84,03/02/19 12:15,"463 9th St, New York City, NY 10001" -174957,27in FHD Monitor,1,149.99,03/26/19 10:32,"562 4th St, Seattle, WA 98101" -174958,Lightning Charging Cable,1,14.95,03/11/19 08:17,"778 Park St, Dallas, TX 75001" -174959,Bose SoundSport Headphones,1,99.99,04/01/19 00:52,"288 Lincoln St, New York City, NY 10001" -174960,USB-C Charging Cable,1,11.95,03/12/19 08:52,"389 9th St, Austin, TX 73301" -174961,Bose SoundSport Headphones,1,99.99,03/29/19 19:44,"875 Highland St, Atlanta, GA 30301" -174962,AAA Batteries (4-pack),2,2.99,03/10/19 16:30,"630 Walnut St, Dallas, TX 75001" -174963,27in FHD Monitor,1,149.99,03/06/19 19:08,"251 Hill St, Los Angeles, CA 90001" -174964,AAA Batteries (4-pack),1,2.99,03/16/19 10:28,"45 Elm St, San Francisco, CA 94016" -174965,USB-C Charging Cable,1,11.95,03/14/19 21:50,"276 South St, San Francisco, CA 94016" -174966,AA Batteries (4-pack),1,3.84,03/07/19 15:58,"3 Maple St, Los Angeles, CA 90001" -174967,USB-C Charging Cable,1,11.95,03/17/19 22:58,"2 Adams St, San Francisco, CA 94016" -174968,Apple Airpods Headphones,1,150,03/24/19 14:37,"474 Willow St, San Francisco, CA 94016" -174969,Apple Airpods Headphones,1,150,03/10/19 12:20,"719 1st St, Atlanta, GA 30301" -174970,AAA Batteries (4-pack),1,2.99,03/14/19 16:35,"6 North St, Los Angeles, CA 90001" -174971,Wired Headphones,1,11.99,03/31/19 14:25,"584 11th St, Los Angeles, CA 90001" -174972,USB-C Charging Cable,1,11.95,03/26/19 23:02,"389 10th St, New York City, NY 10001" -174972,USB-C Charging Cable,1,11.95,03/26/19 23:02,"389 10th St, New York City, NY 10001" -174973,Wired Headphones,1,11.99,03/16/19 21:48,"396 Sunset St, Boston, MA 02215" -174974,AAA Batteries (4-pack),1,2.99,03/20/19 08:36,"626 River St, San Francisco, CA 94016" -174975,AAA Batteries (4-pack),2,2.99,03/24/19 07:19,"953 Sunset St, Portland, OR 97035" -174976,LG Dryer,1,600.0,03/26/19 17:53,"134 Highland St, New York City, NY 10001" -174976,Google Phone,1,600,03/26/19 17:53,"134 Highland St, New York City, NY 10001" -174977,AAA Batteries (4-pack),1,2.99,03/25/19 18:09,"380 Chestnut St, San Francisco, CA 94016" -174978,Lightning Charging Cable,1,14.95,03/30/19 13:24,"592 Park St, Los Angeles, CA 90001" -174979,ThinkPad Laptop,1,999.99,03/07/19 11:12,"274 Meadow St, New York City, NY 10001" -174980,USB-C Charging Cable,1,11.95,03/09/19 08:17,"557 Highland St, Los Angeles, CA 90001" -174981,27in FHD Monitor,1,149.99,03/07/19 12:04,"50 Lake St, New York City, NY 10001" -174982,AAA Batteries (4-pack),1,2.99,03/02/19 11:08,"149 1st St, Los Angeles, CA 90001" -174983,AAA Batteries (4-pack),1,2.99,03/08/19 14:21,"666 Willow St, Dallas, TX 75001" -174984,Bose SoundSport Headphones,1,99.99,03/21/19 11:55,"805 Washington St, San Francisco, CA 94016" -174985,AAA Batteries (4-pack),1,2.99,03/29/19 21:02,"698 Wilson St, Portland, ME 04101" -174986,AA Batteries (4-pack),1,3.84,03/07/19 21:20,"649 River St, Austin, TX 73301" -174987,AAA Batteries (4-pack),1,2.99,03/16/19 16:39,"608 6th St, Portland, OR 97035" -174988,AAA Batteries (4-pack),1,2.99,03/06/19 10:15,"544 6th St, New York City, NY 10001" -174989,AA Batteries (4-pack),1,3.84,03/15/19 22:05,"274 11th St, San Francisco, CA 94016" -174990,Bose SoundSport Headphones,1,99.99,03/26/19 09:00,"474 12th St, San Francisco, CA 94016" -174991,AA Batteries (4-pack),1,3.84,03/23/19 15:41,"151 2nd St, Dallas, TX 75001" -174992,AAA Batteries (4-pack),1,2.99,03/20/19 16:33,"363 Forest St, San Francisco, CA 94016" -174993,Wired Headphones,1,11.99,03/13/19 10:10,"217 Ridge St, San Francisco, CA 94016" -174993,Apple Airpods Headphones,1,150,03/13/19 10:10,"217 Ridge St, San Francisco, CA 94016" -174994,Lightning Charging Cable,1,14.95,03/01/19 06:59,"209 13th St, Los Angeles, CA 90001" -174995,Wired Headphones,1,11.99,03/08/19 23:03,"200 Willow St, Austin, TX 73301" -174996,AAA Batteries (4-pack),1,2.99,03/16/19 23:08,"111 Cherry St, New York City, NY 10001" -174997,USB-C Charging Cable,1,11.95,03/07/19 13:49,"77 Highland St, New York City, NY 10001" -174998,27in 4K Gaming Monitor,1,389.99,03/19/19 22:13,"99 8th St, San Francisco, CA 94016" -174999,Apple Airpods Headphones,1,150,03/28/19 16:02,"757 Spruce St, San Francisco, CA 94016" -175000,USB-C Charging Cable,2,11.95,03/03/19 17:07,"341 12th St, San Francisco, CA 94016" -175001,ThinkPad Laptop,1,999.99,03/23/19 18:07,"928 9th St, San Francisco, CA 94016" -175002,27in 4K Gaming Monitor,1,389.99,03/13/19 17:45,"947 6th St, Seattle, WA 98101" -175003,USB-C Charging Cable,1,11.95,03/15/19 12:31,"483 Spruce St, San Francisco, CA 94016" -175004,USB-C Charging Cable,1,11.95,03/07/19 20:22,"908 Cherry St, Boston, MA 02215" -175005,iPhone,1,700,03/10/19 07:01,"912 Ridge St, San Francisco, CA 94016" -175006,Wired Headphones,1,11.99,03/29/19 17:49,"290 Forest St, Austin, TX 73301" -175007,Apple Airpods Headphones,1,150,03/18/19 16:56,"835 Washington St, New York City, NY 10001" -175008,27in 4K Gaming Monitor,1,389.99,03/05/19 18:25,"218 Johnson St, Dallas, TX 75001" -175008,Lightning Charging Cable,1,14.95,03/05/19 18:25,"218 Johnson St, Dallas, TX 75001" -,,,,, -175009,AA Batteries (4-pack),1,3.84,03/30/19 11:34,"935 Park St, Los Angeles, CA 90001" -175010,27in FHD Monitor,1,149.99,03/14/19 04:35,"326 4th St, Seattle, WA 98101" -175011,Apple Airpods Headphones,1,150,03/09/19 14:13,"854 2nd St, Los Angeles, CA 90001" -175012,Bose SoundSport Headphones,1,99.99,03/24/19 10:32,"38 7th St, Portland, ME 04101" -175013,USB-C Charging Cable,1,11.95,03/03/19 21:30,"829 13th St, Portland, ME 04101" -175014,Macbook Pro Laptop,1,1700,03/20/19 13:42,"424 Jefferson St, New York City, NY 10001" -175015,iPhone,1,700,03/12/19 16:56,"161 Lake St, San Francisco, CA 94016" -175016,Bose SoundSport Headphones,1,99.99,03/14/19 11:09,"717 Dogwood St, Los Angeles, CA 90001" -175017,Macbook Pro Laptop,1,1700,03/30/19 12:50,"16 Cedar St, San Francisco, CA 94016" -175018,USB-C Charging Cable,1,11.95,03/06/19 05:34,"731 Wilson St, Los Angeles, CA 90001" -175019,AA Batteries (4-pack),1,3.84,03/06/19 01:21,"91 Church St, New York City, NY 10001" -175020,USB-C Charging Cable,1,11.95,03/31/19 17:11,"76 Highland St, San Francisco, CA 94016" -175021,AA Batteries (4-pack),1,3.84,03/14/19 18:59,"780 Walnut St, San Francisco, CA 94016" -175022,Macbook Pro Laptop,1,1700,03/21/19 13:09,"646 North St, Los Angeles, CA 90001" -175023,AA Batteries (4-pack),1,3.84,03/12/19 09:45,"809 River St, San Francisco, CA 94016" -175024,Apple Airpods Headphones,1,150,03/24/19 10:30,"618 10th St, San Francisco, CA 94016" -175025,USB-C Charging Cable,1,11.95,03/08/19 10:29,"889 Ridge St, Seattle, WA 98101" -175026,USB-C Charging Cable,1,11.95,03/02/19 18:47,"610 Chestnut St, Los Angeles, CA 90001" -175027,USB-C Charging Cable,1,11.95,03/15/19 15:46,"599 Forest St, Dallas, TX 75001" -175028,Lightning Charging Cable,1,14.95,03/10/19 22:00,"997 River St, Boston, MA 02215" -175029,Wired Headphones,1,11.99,03/19/19 21:26,"563 South St, Boston, MA 02215" -175030,Wired Headphones,1,11.99,03/11/19 10:02,"830 Cherry St, Los Angeles, CA 90001" -175031,Google Phone,1,600,03/10/19 19:29,"900 8th St, San Francisco, CA 94016" -175031,Bose SoundSport Headphones,1,99.99,03/10/19 19:29,"900 8th St, San Francisco, CA 94016" -175032,Flatscreen TV,1,300,03/06/19 17:58,"730 Sunset St, Los Angeles, CA 90001" -175033,Wired Headphones,1,11.99,03/25/19 23:53,"482 Cedar St, Boston, MA 02215" -175034,Lightning Charging Cable,1,14.95,03/29/19 22:30,"773 11th St, Austin, TX 73301" -175035,Lightning Charging Cable,1,14.95,03/23/19 07:53,"840 Main St, Austin, TX 73301" -175036,Apple Airpods Headphones,1,150,03/13/19 18:04,"749 6th St, Boston, MA 02215" -175037,AAA Batteries (4-pack),3,2.99,03/07/19 18:46,"616 Church St, Los Angeles, CA 90001" -175038,iPhone,1,700,03/15/19 20:04,"997 4th St, New York City, NY 10001" -175039,iPhone,1,700,03/26/19 18:19,"205 West St, Seattle, WA 98101" -175040,AAA Batteries (4-pack),1,2.99,03/28/19 05:48,"387 Park St, Seattle, WA 98101" -175041,iPhone,1,700,03/27/19 15:23,"996 Church St, Atlanta, GA 30301" -175041,Lightning Charging Cable,1,14.95,03/27/19 15:23,"996 Church St, Atlanta, GA 30301" -175042,Lightning Charging Cable,1,14.95,03/04/19 02:22,"618 Wilson St, San Francisco, CA 94016" -175043,Apple Airpods Headphones,1,150,03/01/19 09:43,"886 Main St, San Francisco, CA 94016" -175044,Bose SoundSport Headphones,1,99.99,03/28/19 17:03,"304 North St, Portland, OR 97035" -175045,USB-C Charging Cable,1,11.95,03/01/19 03:15,"233 Jefferson St, New York City, NY 10001" -175046,Lightning Charging Cable,1,14.95,03/26/19 15:13,"84 River St, San Francisco, CA 94016" -175047,AAA Batteries (4-pack),2,2.99,03/10/19 20:55,"98 Church St, Los Angeles, CA 90001" -175048,27in FHD Monitor,1,149.99,03/18/19 14:51,"729 Elm St, New York City, NY 10001" -175049,27in FHD Monitor,1,149.99,03/23/19 12:14,"98 Johnson St, Dallas, TX 75001" -175050,Google Phone,1,600,03/28/19 00:42,"142 9th St, Dallas, TX 75001" -175051,Google Phone,1,600,03/11/19 23:53,"81 6th St, New York City, NY 10001" -175052,Wired Headphones,1,11.99,03/27/19 10:38,"261 Center St, Atlanta, GA 30301" -175053,AAA Batteries (4-pack),3,2.99,03/27/19 11:14,"135 Dogwood St, Portland, ME 04101" -175054,Wired Headphones,1,11.99,03/15/19 00:18,"805 Jackson St, Dallas, TX 75001" -175055,ThinkPad Laptop,1,999.99,03/08/19 23:58,"990 2nd St, Austin, TX 73301" -175056,34in Ultrawide Monitor,1,379.99,03/08/19 15:17,"579 Dogwood St, Boston, MA 02215" -175057,Lightning Charging Cable,1,14.95,03/25/19 13:28,"421 Walnut St, San Francisco, CA 94016" -175058,Bose SoundSport Headphones,1,99.99,03/03/19 01:03,"952 Jefferson St, Boston, MA 02215" -175059,Google Phone,1,600,03/18/19 05:40,"776 Willow St, Los Angeles, CA 90001" -175060,Bose SoundSport Headphones,1,99.99,03/23/19 17:09,"826 Johnson St, Los Angeles, CA 90001" -175061,AAA Batteries (4-pack),1,2.99,03/14/19 23:21,"397 6th St, Atlanta, GA 30301" -175062,AA Batteries (4-pack),2,3.84,03/14/19 13:12,"632 Hickory St, Los Angeles, CA 90001" -175063,USB-C Charging Cable,1,11.95,03/07/19 14:24,"799 River St, San Francisco, CA 94016" -175064,USB-C Charging Cable,1,11.95,03/20/19 15:54,"595 Cherry St, San Francisco, CA 94016" -175065,AAA Batteries (4-pack),1,2.99,03/05/19 17:59,"911 Dogwood St, Atlanta, GA 30301" -175066,Flatscreen TV,1,300,03/04/19 15:10,"652 11th St, San Francisco, CA 94016" -175067,Wired Headphones,1,11.99,03/09/19 13:17,"348 2nd St, New York City, NY 10001" -175068,Apple Airpods Headphones,1,150,03/01/19 21:02,"932 Willow St, Seattle, WA 98101" -175069,Google Phone,1,600,03/08/19 15:50,"565 4th St, Boston, MA 02215" -175070,Bose SoundSport Headphones,1,99.99,03/01/19 16:47,"583 Adams St, San Francisco, CA 94016" -175071,Wired Headphones,1,11.99,03/18/19 15:30,"74 2nd St, Los Angeles, CA 90001" -175072,Bose SoundSport Headphones,1,99.99,03/13/19 22:40,"812 8th St, San Francisco, CA 94016" -175073,27in FHD Monitor,1,149.99,03/05/19 19:29,"625 Lake St, Los Angeles, CA 90001" -175074,USB-C Charging Cable,1,11.95,03/28/19 21:43,"896 Madison St, San Francisco, CA 94016" -175075,Lightning Charging Cable,1,14.95,03/09/19 09:27,"851 Hill St, Seattle, WA 98101" -175076,AA Batteries (4-pack),1,3.84,03/27/19 19:06,"338 Sunset St, San Francisco, CA 94016" -175077,Lightning Charging Cable,1,14.95,03/21/19 14:30,"573 7th St, Austin, TX 73301" -175078,Lightning Charging Cable,1,14.95,03/24/19 12:51,"468 South St, Boston, MA 02215" -175079,27in 4K Gaming Monitor,1,389.99,03/05/19 16:54,"430 Willow St, San Francisco, CA 94016" -175080,AAA Batteries (4-pack),1,2.99,03/28/19 18:34,"157 Forest St, Los Angeles, CA 90001" -175081,AA Batteries (4-pack),4,3.84,03/29/19 17:39,"868 8th St, Portland, ME 04101" -175082,AAA Batteries (4-pack),1,2.99,03/14/19 13:40,"549 Main St, Atlanta, GA 30301" -175083,AA Batteries (4-pack),1,3.84,03/20/19 19:12,"6 Main St, Los Angeles, CA 90001" -175084,Wired Headphones,1,11.99,03/09/19 07:51,"455 5th St, Los Angeles, CA 90001" -175085,Wired Headphones,1,11.99,03/11/19 12:59,"640 11th St, Portland, ME 04101" -175086,Lightning Charging Cable,2,14.95,03/07/19 10:24,"25 Sunset St, Boston, MA 02215" -175087,Bose SoundSport Headphones,1,99.99,03/14/19 09:40,"75 7th St, San Francisco, CA 94016" -175088,Lightning Charging Cable,1,14.95,03/21/19 10:49,"925 10th St, Los Angeles, CA 90001" -175089,AA Batteries (4-pack),1,3.84,03/20/19 23:46,"413 4th St, Austin, TX 73301" -175090,Bose SoundSport Headphones,1,99.99,03/15/19 18:21,"430 Jackson St, Boston, MA 02215" -175091,Apple Airpods Headphones,1,150,03/09/19 19:09,"143 North St, San Francisco, CA 94016" -175092,USB-C Charging Cable,1,11.95,03/09/19 01:12,"844 Sunset St, San Francisco, CA 94016" -175093,AA Batteries (4-pack),2,3.84,03/21/19 14:30,"149 7th St, San Francisco, CA 94016" -175094,Lightning Charging Cable,1,14.95,03/21/19 23:03,"276 Elm St, Austin, TX 73301" -175095,Google Phone,1,600,03/22/19 13:42,"301 13th St, San Francisco, CA 94016" -175096,AAA Batteries (4-pack),2,2.99,03/12/19 21:07,"510 Jefferson St, New York City, NY 10001" -175097,AAA Batteries (4-pack),2,2.99,03/05/19 18:36,"954 14th St, New York City, NY 10001" -175098,20in Monitor,1,109.99,03/03/19 13:56,"388 Lake St, Atlanta, GA 30301" -175099,AAA Batteries (4-pack),1,2.99,03/16/19 13:03,"61 Cedar St, San Francisco, CA 94016" -175100,Flatscreen TV,1,300,03/24/19 12:37,"505 14th St, San Francisco, CA 94016" -175101,USB-C Charging Cable,1,11.95,03/13/19 14:53,"634 Jefferson St, San Francisco, CA 94016" -175102,USB-C Charging Cable,1,11.95,03/11/19 19:16,"68 Sunset St, Atlanta, GA 30301" -175103,AAA Batteries (4-pack),3,2.99,03/08/19 20:36,"777 Park St, New York City, NY 10001" -175104,iPhone,1,700,03/21/19 21:27,"885 Church St, Austin, TX 73301" -175105,Macbook Pro Laptop,1,1700,03/03/19 15:56,"758 7th St, San Francisco, CA 94016" -175106,AAA Batteries (4-pack),1,2.99,03/30/19 13:00,"272 12th St, San Francisco, CA 94016" -175107,Macbook Pro Laptop,1,1700,03/01/19 16:47,"992 Pine St, Los Angeles, CA 90001" -175108,USB-C Charging Cable,1,11.95,03/19/19 19:25,"245 Center St, Boston, MA 02215" -175109,iPhone,1,700,03/30/19 11:13,"459 11th St, Los Angeles, CA 90001" -175109,Lightning Charging Cable,1,14.95,03/30/19 11:13,"459 11th St, Los Angeles, CA 90001" -175110,Apple Airpods Headphones,1,150,03/09/19 22:16,"160 Washington St, New York City, NY 10001" -175111,Bose SoundSport Headphones,1,99.99,03/20/19 12:02,"794 8th St, Dallas, TX 75001" -175112,Google Phone,1,600,03/05/19 09:41,"621 Adams St, Dallas, TX 75001" -175113,20in Monitor,1,109.99,03/14/19 12:16,"669 Jefferson St, San Francisco, CA 94016" -175114,AA Batteries (4-pack),2,3.84,03/18/19 19:36,"270 Meadow St, San Francisco, CA 94016" -175115,27in 4K Gaming Monitor,1,389.99,03/13/19 14:25,"933 1st St, Portland, OR 97035" -175116,Lightning Charging Cable,1,14.95,03/25/19 13:02,"953 Hill St, New York City, NY 10001" -175117,AAA Batteries (4-pack),1,2.99,03/29/19 20:25,"161 Cedar St, Los Angeles, CA 90001" -175118,Apple Airpods Headphones,1,150,03/22/19 19:20,"535 4th St, Los Angeles, CA 90001" -175119,Apple Airpods Headphones,1,150,03/24/19 17:02,"385 Spruce St, Los Angeles, CA 90001" -175120,Bose SoundSport Headphones,1,99.99,03/22/19 17:37,"745 South St, Austin, TX 73301" -175121,Apple Airpods Headphones,1,150,03/17/19 17:08,"97 12th St, Atlanta, GA 30301" -175122,Macbook Pro Laptop,1,1700,03/22/19 19:31,"149 13th St, Los Angeles, CA 90001" -175123,Wired Headphones,1,11.99,03/08/19 10:52,"328 Washington St, Los Angeles, CA 90001" -175124,Vareebadd Phone,1,400,03/01/19 20:06,"328 4th St, San Francisco, CA 94016" -175125,Apple Airpods Headphones,1,150,03/20/19 10:43,"947 2nd St, San Francisco, CA 94016" -175126,Bose SoundSport Headphones,1,99.99,03/02/19 08:22,"461 West St, Atlanta, GA 30301" -175127,Lightning Charging Cable,1,14.95,03/07/19 08:57,"600 14th St, Boston, MA 02215" -175128,Bose SoundSport Headphones,1,99.99,03/28/19 14:45,"956 2nd St, Los Angeles, CA 90001" -175129,Lightning Charging Cable,1,14.95,03/22/19 16:24,"212 South St, Los Angeles, CA 90001" -175130,USB-C Charging Cable,1,11.95,03/02/19 17:29,"709 5th St, New York City, NY 10001" -175131,Bose SoundSport Headphones,1,99.99,03/27/19 21:04,"302 Lakeview St, Atlanta, GA 30301" -175132,20in Monitor,1,109.99,03/24/19 00:15,"327 Willow St, Los Angeles, CA 90001" -175133,AA Batteries (4-pack),1,3.84,03/31/19 19:13,"484 Ridge St, Boston, MA 02215" -175134,Lightning Charging Cable,1,14.95,03/25/19 14:10,"901 Adams St, Los Angeles, CA 90001" -175135,AAA Batteries (4-pack),1,2.99,03/05/19 22:28,"587 Hill St, Austin, TX 73301" -175136,27in FHD Monitor,1,149.99,03/07/19 16:46,"415 Spruce St, Los Angeles, CA 90001" -175137,Lightning Charging Cable,1,14.95,03/07/19 14:41,"651 River St, Seattle, WA 98101" -175138,27in FHD Monitor,1,149.99,03/11/19 08:37,"663 Lincoln St, Dallas, TX 75001" -175139,AA Batteries (4-pack),1,3.84,03/14/19 21:25,"798 7th St, New York City, NY 10001" -175140,USB-C Charging Cable,1,11.95,03/01/19 13:14,"947 Cherry St, Seattle, WA 98101" -175141,Google Phone,1,600,03/26/19 14:58,"785 West St, Austin, TX 73301" -175142,Lightning Charging Cable,1,14.95,03/22/19 21:34,"688 4th St, Atlanta, GA 30301" -175143,Wired Headphones,1,11.99,03/16/19 01:30,"104 Lincoln St, San Francisco, CA 94016" -175144,Flatscreen TV,1,300,03/13/19 15:20,"764 Hickory St, Boston, MA 02215" -175145,20in Monitor,1,109.99,03/24/19 09:07,"460 West St, Seattle, WA 98101" -175146,Wired Headphones,1,11.99,03/25/19 20:07,"456 Church St, Austin, TX 73301" -175147,Lightning Charging Cable,1,14.95,03/11/19 20:34,"925 Maple St, New York City, NY 10001" -175148,AA Batteries (4-pack),1,3.84,03/21/19 22:36,"692 Lakeview St, Dallas, TX 75001" -175149,Wired Headphones,1,11.99,03/23/19 10:07,"667 8th St, San Francisco, CA 94016" -175150,Google Phone,1,600,03/18/19 18:02,"179 9th St, Dallas, TX 75001" -175151,27in FHD Monitor,1,149.99,03/02/19 00:24,"786 River St, San Francisco, CA 94016" -175152,27in FHD Monitor,1,149.99,03/25/19 06:05,"495 Lake St, Los Angeles, CA 90001" -175153,Google Phone,1,600,03/28/19 21:06,"895 9th St, San Francisco, CA 94016" -175154,AA Batteries (4-pack),1,3.84,03/14/19 08:34,"860 Highland St, Los Angeles, CA 90001" -175155,Apple Airpods Headphones,1,150,03/09/19 18:54,"74 Hickory St, San Francisco, CA 94016" -175156,USB-C Charging Cable,1,11.95,03/31/19 18:11,"276 6th St, Austin, TX 73301" -175157,AAA Batteries (4-pack),2,2.99,03/16/19 15:20,"664 Willow St, Portland, OR 97035" -175158,AA Batteries (4-pack),2,3.84,03/16/19 11:19,"23 Lakeview St, Austin, TX 73301" -175159,Wired Headphones,1,11.99,03/03/19 10:05,"900 Main St, Los Angeles, CA 90001" -175160,Google Phone,1,600,03/07/19 17:32,"826 9th St, Dallas, TX 75001" -175161,Flatscreen TV,1,300,03/04/19 00:38,"847 Highland St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -175162,USB-C Charging Cable,1,11.95,03/12/19 21:32,"613 4th St, San Francisco, CA 94016" -175163,Bose SoundSport Headphones,1,99.99,03/04/19 09:42,"466 4th St, New York City, NY 10001" -175164,27in FHD Monitor,1,149.99,03/08/19 22:10,"359 Spruce St, Boston, MA 02215" -175165,USB-C Charging Cable,1,11.95,03/15/19 13:58,"195 4th St, Dallas, TX 75001" -175166,Bose SoundSport Headphones,1,99.99,03/03/19 08:46,"263 8th St, San Francisco, CA 94016" -175167,Google Phone,1,600,03/31/19 11:30,"475 Dogwood St, Portland, OR 97035" -175168,27in FHD Monitor,1,149.99,03/24/19 09:30,"837 Main St, San Francisco, CA 94016" -175169,Apple Airpods Headphones,1,150,03/12/19 11:40,"183 West St, Portland, ME 04101" -175170,AA Batteries (4-pack),3,3.84,03/02/19 16:10,"661 Madison St, San Francisco, CA 94016" -175171,Macbook Pro Laptop,1,1700,03/25/19 13:45,"737 Jefferson St, Dallas, TX 75001" -175172,ThinkPad Laptop,1,999.99,03/09/19 01:52,"718 8th St, Seattle, WA 98101" -175173,27in FHD Monitor,1,149.99,03/16/19 00:12,"975 Hickory St, San Francisco, CA 94016" -175174,Bose SoundSport Headphones,1,99.99,03/19/19 18:50,"575 Jefferson St, Austin, TX 73301" -175175,Lightning Charging Cable,1,14.95,03/24/19 13:14,"452 North St, Seattle, WA 98101" -175176,Bose SoundSport Headphones,1,99.99,03/10/19 22:10,"328 Chestnut St, Austin, TX 73301" -175177,AA Batteries (4-pack),1,3.84,03/28/19 20:27,"796 2nd St, San Francisco, CA 94016" -175178,USB-C Charging Cable,1,11.95,03/12/19 07:23,"116 13th St, San Francisco, CA 94016" -175179,27in FHD Monitor,1,149.99,03/09/19 14:02,"273 14th St, San Francisco, CA 94016" -175180,27in FHD Monitor,1,149.99,03/06/19 17:10,"979 Washington St, San Francisco, CA 94016" -175181,Wired Headphones,1,11.99,03/11/19 14:03,"5 Main St, New York City, NY 10001" -175182,AA Batteries (4-pack),1,3.84,03/10/19 18:01,"975 Jackson St, San Francisco, CA 94016" -175183,Lightning Charging Cable,1,14.95,03/18/19 12:41,"133 Chestnut St, Boston, MA 02215" -175184,Flatscreen TV,1,300,03/10/19 20:16,"640 Wilson St, Boston, MA 02215" -175185,34in Ultrawide Monitor,1,379.99,03/27/19 20:14,"596 1st St, Boston, MA 02215" -175186,Lightning Charging Cable,1,14.95,03/17/19 11:01,"978 14th St, New York City, NY 10001" -175187,AAA Batteries (4-pack),2,2.99,03/01/19 14:57,"522 Main St, New York City, NY 10001" -175188,Wired Headphones,1,11.99,03/23/19 22:14,"606 Chestnut St, Los Angeles, CA 90001" -175188,AAA Batteries (4-pack),1,2.99,03/23/19 22:14,"606 Chestnut St, Los Angeles, CA 90001" -175189,iPhone,1,700,03/15/19 11:50,"727 13th St, Seattle, WA 98101" -175190,USB-C Charging Cable,1,11.95,03/07/19 17:13,"316 13th St, Portland, OR 97035" -175191,34in Ultrawide Monitor,1,379.99,03/03/19 10:25,"625 7th St, Portland, OR 97035" -175192,AAA Batteries (4-pack),1,2.99,03/12/19 09:27,"802 Wilson St, New York City, NY 10001" -175193,27in FHD Monitor,1,149.99,03/20/19 08:50,"469 Forest St, San Francisco, CA 94016" -175194,AA Batteries (4-pack),1,3.84,03/18/19 15:55,"849 Park St, Seattle, WA 98101" -175195,AAA Batteries (4-pack),2,2.99,03/07/19 10:18,"126 10th St, Boston, MA 02215" -175196,Macbook Pro Laptop,1,1700,03/17/19 15:30,"644 10th St, Dallas, TX 75001" -175197,AAA Batteries (4-pack),1,2.99,03/27/19 08:56,"168 North St, Portland, OR 97035" -175198,USB-C Charging Cable,1,11.95,03/06/19 13:15,"206 Johnson St, San Francisco, CA 94016" -175199,Lightning Charging Cable,1,14.95,03/27/19 19:22,"185 Pine St, New York City, NY 10001" -175200,Apple Airpods Headphones,1,150,03/23/19 12:06,"594 Park St, Los Angeles, CA 90001" -175201,Macbook Pro Laptop,1,1700,03/29/19 13:58,"75 Chestnut St, Boston, MA 02215" -175202,Lightning Charging Cable,1,14.95,03/01/19 07:10,"217 North St, Portland, OR 97035" -175203,Lightning Charging Cable,2,14.95,03/29/19 15:09,"567 Cedar St, Austin, TX 73301" -175204,Apple Airpods Headphones,1,150,03/19/19 06:36,"67 12th St, Los Angeles, CA 90001" -175205,Lightning Charging Cable,1,14.95,03/19/19 18:43,"699 Willow St, New York City, NY 10001" -175206,USB-C Charging Cable,1,11.95,03/15/19 11:03,"749 Chestnut St, Boston, MA 02215" -175207,Lightning Charging Cable,1,14.95,03/20/19 15:49,"593 Cedar St, Seattle, WA 98101" -175208,AAA Batteries (4-pack),2,2.99,03/15/19 13:16,"956 Center St, New York City, NY 10001" -175209,27in 4K Gaming Monitor,1,389.99,03/24/19 15:08,"250 Center St, Seattle, WA 98101" -175210,Bose SoundSport Headphones,1,99.99,03/19/19 10:40,"187 Main St, Los Angeles, CA 90001" -175211,Flatscreen TV,1,300,03/09/19 15:27,"91 14th St, Atlanta, GA 30301" -175212,AA Batteries (4-pack),2,3.84,03/14/19 21:46,"498 Highland St, Dallas, TX 75001" -175213,AA Batteries (4-pack),1,3.84,03/23/19 13:57,"263 9th St, San Francisco, CA 94016" -175214,27in FHD Monitor,1,149.99,03/08/19 22:45,"202 Maple St, Atlanta, GA 30301" -175215,AAA Batteries (4-pack),3,2.99,03/08/19 18:43,"158 4th St, Los Angeles, CA 90001" -175216,Apple Airpods Headphones,1,150,03/28/19 04:52,"910 Cedar St, Dallas, TX 75001" -175217,Google Phone,1,600,03/25/19 10:45,"870 Lake St, Los Angeles, CA 90001" -175217,USB-C Charging Cable,1,11.95,03/25/19 10:45,"870 Lake St, Los Angeles, CA 90001" -175218,Lightning Charging Cable,1,14.95,03/17/19 11:31,"908 Madison St, San Francisco, CA 94016" -175219,USB-C Charging Cable,2,11.95,03/21/19 10:35,"907 South St, New York City, NY 10001" -175220,Wired Headphones,1,11.99,03/03/19 09:46,"854 Jefferson St, Dallas, TX 75001" -175221,Bose SoundSport Headphones,1,99.99,03/04/19 01:07,"7 Hill St, San Francisco, CA 94016" -175222,Vareebadd Phone,1,400,03/23/19 06:44,"916 Forest St, San Francisco, CA 94016" -175223,AA Batteries (4-pack),1,3.84,03/20/19 12:45,"208 Park St, Los Angeles, CA 90001" -175224,USB-C Charging Cable,1,11.95,03/31/19 12:57,"372 West St, New York City, NY 10001" -175225,AAA Batteries (4-pack),1,2.99,03/26/19 20:50,"507 5th St, Seattle, WA 98101" -175226,AAA Batteries (4-pack),1,2.99,03/01/19 13:44,"696 6th St, Atlanta, GA 30301" -175227,27in FHD Monitor,1,149.99,03/19/19 02:39,"99 West St, Dallas, TX 75001" -175228,AA Batteries (4-pack),1,3.84,03/15/19 21:36,"868 River St, Los Angeles, CA 90001" -175229,Apple Airpods Headphones,1,150,03/02/19 07:00,"271 North St, Atlanta, GA 30301" -175230,Wired Headphones,1,11.99,03/09/19 22:28,"594 Cherry St, San Francisco, CA 94016" -175231,AA Batteries (4-pack),1,3.84,03/01/19 18:18,"893 4th St, Boston, MA 02215" -175232,iPhone,1,700,03/28/19 22:49,"572 Johnson St, Seattle, WA 98101" -175233,Wired Headphones,1,11.99,03/12/19 14:55,"481 Adams St, Atlanta, GA 30301" -175234,Apple Airpods Headphones,1,150,03/29/19 11:28,"573 Pine St, Seattle, WA 98101" -175235,AA Batteries (4-pack),1,3.84,03/01/19 11:32,"634 Adams St, Boston, MA 02215" -175236,Apple Airpods Headphones,1,150,03/11/19 15:33,"998 Jefferson St, Boston, MA 02215" -175237,AA Batteries (4-pack),1,3.84,03/31/19 18:38,"732 Lake St, New York City, NY 10001" -175238,USB-C Charging Cable,1,11.95,03/15/19 09:31,"243 Lakeview St, San Francisco, CA 94016" -175239,Lightning Charging Cable,1,14.95,03/10/19 13:04,"646 Washington St, Austin, TX 73301" -175240,USB-C Charging Cable,1,11.95,03/15/19 16:02,"208 Sunset St, Los Angeles, CA 90001" -175241,Lightning Charging Cable,1,14.95,03/01/19 12:48,"762 Highland St, Los Angeles, CA 90001" -175242,USB-C Charging Cable,1,11.95,03/12/19 10:20,"560 Main St, San Francisco, CA 94016" -175243,Google Phone,1,600,03/17/19 19:22,"601 Washington St, Boston, MA 02215" -175244,Wired Headphones,1,11.99,03/29/19 13:22,"37 Ridge St, Dallas, TX 75001" -175245,34in Ultrawide Monitor,1,379.99,03/12/19 19:25,"907 Forest St, Portland, OR 97035" -175246,AAA Batteries (4-pack),1,2.99,03/17/19 09:09,"391 Maple St, Atlanta, GA 30301" -175247,Bose SoundSport Headphones,1,99.99,03/07/19 12:16,"626 5th St, Dallas, TX 75001" -175248,AA Batteries (4-pack),3,3.84,03/06/19 10:20,"605 Madison St, Atlanta, GA 30301" -175249,Macbook Pro Laptop,1,1700,03/15/19 13:10,"554 13th St, San Francisco, CA 94016" -175250,USB-C Charging Cable,1,11.95,03/01/19 15:57,"599 Lakeview St, San Francisco, CA 94016" -175251,Bose SoundSport Headphones,1,99.99,03/05/19 12:38,"962 Ridge St, New York City, NY 10001" -175252,USB-C Charging Cable,2,11.95,03/10/19 09:57,"491 Meadow St, Dallas, TX 75001" -175253,27in FHD Monitor,1,149.99,03/26/19 14:15,"271 Meadow St, San Francisco, CA 94016" -175254,AA Batteries (4-pack),3,3.84,03/08/19 13:14,"827 Washington St, San Francisco, CA 94016" -175255,27in 4K Gaming Monitor,1,389.99,03/02/19 06:56,"859 West St, Boston, MA 02215" -175256,USB-C Charging Cable,1,11.95,03/04/19 05:14,"763 10th St, Los Angeles, CA 90001" -175257,Bose SoundSport Headphones,1,99.99,03/04/19 21:10,"687 Jefferson St, Boston, MA 02215" -175258,Apple Airpods Headphones,1,150,03/01/19 07:01,"786 4th St, Boston, MA 02215" -175259,Lightning Charging Cable,1,14.95,03/28/19 13:28,"90 14th St, San Francisco, CA 94016" -175260,Macbook Pro Laptop,1,1700,03/12/19 11:10,"65 Cherry St, San Francisco, CA 94016" -175261,Lightning Charging Cable,1,14.95,03/20/19 11:36,"153 Dogwood St, Los Angeles, CA 90001" -175262,Bose SoundSport Headphones,1,99.99,03/19/19 20:41,"187 Hill St, Los Angeles, CA 90001" -175263,ThinkPad Laptop,1,999.99,03/28/19 21:21,"602 River St, San Francisco, CA 94016" -175264,Apple Airpods Headphones,1,150,03/23/19 12:11,"230 Lakeview St, Los Angeles, CA 90001" -175265,Wired Headphones,1,11.99,03/20/19 23:24,"29 Ridge St, New York City, NY 10001" -175266,Bose SoundSport Headphones,1,99.99,03/10/19 16:24,"759 2nd St, New York City, NY 10001" -175267,iPhone,1,700,03/05/19 14:45,"254 Hickory St, Atlanta, GA 30301" -175267,Wired Headphones,1,11.99,03/05/19 14:45,"254 Hickory St, Atlanta, GA 30301" -175268,USB-C Charging Cable,1,11.95,03/27/19 01:42,"114 Willow St, San Francisco, CA 94016" -175269,Bose SoundSport Headphones,1,99.99,03/03/19 17:57,"66 Cherry St, Boston, MA 02215" -175270,Lightning Charging Cable,1,14.95,03/15/19 13:28,"348 Highland St, Los Angeles, CA 90001" -175271,Wired Headphones,1,11.99,03/30/19 14:54,"107 Forest St, Portland, OR 97035" -175272,USB-C Charging Cable,1,11.95,03/13/19 12:29,"570 Madison St, Los Angeles, CA 90001" -175273,USB-C Charging Cable,2,11.95,03/01/19 19:56,"893 Washington St, Seattle, WA 98101" -175274,ThinkPad Laptop,1,999.99,03/05/19 21:58,"634 8th St, Seattle, WA 98101" -175275,34in Ultrawide Monitor,1,379.99,03/07/19 10:27,"933 Chestnut St, Boston, MA 02215" -175276,USB-C Charging Cable,1,11.95,03/15/19 14:43,"819 Highland St, Los Angeles, CA 90001" -175277,Macbook Pro Laptop,1,1700,03/15/19 22:04,"629 Forest St, Seattle, WA 98101" -175278,Apple Airpods Headphones,1,150,03/08/19 16:48,"808 Hill St, Dallas, TX 75001" -175279,27in 4K Gaming Monitor,1,389.99,03/12/19 18:08,"65 Church St, New York City, NY 10001" -175280,USB-C Charging Cable,1,11.95,03/26/19 23:37,"961 Church St, Boston, MA 02215" -175281,LG Dryer,1,600.0,03/23/19 12:11,"312 Madison St, Portland, OR 97035" -175282,Apple Airpods Headphones,1,150,03/16/19 22:22,"629 8th St, Los Angeles, CA 90001" -175283,Wired Headphones,1,11.99,03/03/19 12:14,"4 Lakeview St, San Francisco, CA 94016" -175284,AA Batteries (4-pack),1,3.84,03/29/19 15:47,"798 12th St, San Francisco, CA 94016" -175285,AAA Batteries (4-pack),1,2.99,03/03/19 22:28,"761 Center St, San Francisco, CA 94016" -175286,iPhone,1,700,03/26/19 23:16,"987 Madison St, San Francisco, CA 94016" -175286,Lightning Charging Cable,1,14.95,03/26/19 23:16,"987 Madison St, San Francisco, CA 94016" -,,,,, -175287,Bose SoundSport Headphones,1,99.99,03/14/19 06:44,"967 Center St, Boston, MA 02215" -175288,USB-C Charging Cable,1,11.95,03/15/19 10:17,"780 9th St, Atlanta, GA 30301" -175289,ThinkPad Laptop,1,999.99,03/19/19 12:53,"698 Cedar St, Portland, OR 97035" -175290,AA Batteries (4-pack),1,3.84,03/15/19 19:38,"548 2nd St, Seattle, WA 98101" -175291,USB-C Charging Cable,1,11.95,03/10/19 20:01,"581 Lakeview St, Los Angeles, CA 90001" -175292,AA Batteries (4-pack),1,3.84,03/08/19 11:55,"988 Johnson St, Austin, TX 73301" -175293,20in Monitor,1,109.99,03/03/19 09:44,"510 Church St, Seattle, WA 98101" -175294,27in FHD Monitor,1,149.99,03/29/19 21:44,"920 11th St, San Francisco, CA 94016" -175295,AA Batteries (4-pack),1,3.84,03/04/19 18:50,"701 13th St, New York City, NY 10001" -175296,AAA Batteries (4-pack),1,2.99,03/23/19 20:56,"323 4th St, Dallas, TX 75001" -175297,Apple Airpods Headphones,1,150,03/17/19 19:40,"830 Adams St, Atlanta, GA 30301" -175298,Lightning Charging Cable,1,14.95,03/16/19 11:09,"7 Chestnut St, San Francisco, CA 94016" -175299,USB-C Charging Cable,2,11.95,03/25/19 23:39,"375 Lincoln St, Dallas, TX 75001" -175299,AAA Batteries (4-pack),2,2.99,03/25/19 23:39,"375 Lincoln St, Dallas, TX 75001" -175300,Apple Airpods Headphones,1,150,03/20/19 09:06,"94 11th St, Los Angeles, CA 90001" -175301,Lightning Charging Cable,1,14.95,03/13/19 19:22,"397 Johnson St, New York City, NY 10001" -175302,27in 4K Gaming Monitor,1,389.99,03/15/19 23:18,"249 Maple St, Seattle, WA 98101" -175303,ThinkPad Laptop,1,999.99,03/13/19 14:22,"957 Lincoln St, New York City, NY 10001" -175304,20in Monitor,1,109.99,03/18/19 22:09,"720 Cherry St, Atlanta, GA 30301" -175305,Wired Headphones,1,11.99,03/26/19 22:00,"413 1st St, Los Angeles, CA 90001" -175306,Wired Headphones,1,11.99,03/02/19 15:20,"585 Center St, Atlanta, GA 30301" -175307,Flatscreen TV,1,300,03/15/19 15:41,"361 Lake St, New York City, NY 10001" -175308,Lightning Charging Cable,1,14.95,03/30/19 20:16,"138 Forest St, Portland, OR 97035" -175309,Wired Headphones,1,11.99,03/07/19 14:13,"621 2nd St, Atlanta, GA 30301" -175310,AAA Batteries (4-pack),1,2.99,03/29/19 16:19,"891 11th St, San Francisco, CA 94016" -175311,Google Phone,1,600,03/01/19 22:18,"233 5th St, Dallas, TX 75001" -175312,Bose SoundSport Headphones,1,99.99,03/24/19 17:36,"664 Jackson St, Austin, TX 73301" -175313,Bose SoundSport Headphones,1,99.99,03/27/19 18:19,"446 10th St, San Francisco, CA 94016" -175314,USB-C Charging Cable,1,11.95,03/01/19 09:56,"142 Sunset St, Atlanta, GA 30301" -175315,Wired Headphones,1,11.99,03/12/19 11:49,"973 Hickory St, Los Angeles, CA 90001" -175316,AAA Batteries (4-pack),1,2.99,03/26/19 11:37,"475 Ridge St, San Francisco, CA 94016" -175317,Wired Headphones,1,11.99,03/16/19 17:05,"858 Jefferson St, Boston, MA 02215" -175318,USB-C Charging Cable,1,11.95,03/03/19 19:23,"52 6th St, San Francisco, CA 94016" -175319,AA Batteries (4-pack),2,3.84,03/16/19 23:20,"323 South St, Los Angeles, CA 90001" -175320,Wired Headphones,1,11.99,03/16/19 09:50,"547 Willow St, Boston, MA 02215" -175321,Bose SoundSport Headphones,1,99.99,03/28/19 22:30,"429 Madison St, San Francisco, CA 94016" -175322,USB-C Charging Cable,1,11.95,03/03/19 19:27,"11 2nd St, Los Angeles, CA 90001" -175323,Wired Headphones,1,11.99,03/26/19 17:25,"643 Highland St, Austin, TX 73301" -175324,AAA Batteries (4-pack),2,2.99,03/01/19 19:33,"819 River St, Los Angeles, CA 90001" -175325,Wired Headphones,1,11.99,03/13/19 12:00,"919 Cherry St, Boston, MA 02215" -175326,AA Batteries (4-pack),1,3.84,03/31/19 13:58,"14 Maple St, Seattle, WA 98101" -175327,Bose SoundSport Headphones,1,99.99,03/05/19 20:52,"574 Main St, San Francisco, CA 94016" -175328,34in Ultrawide Monitor,1,379.99,03/28/19 15:22,"318 South St, Los Angeles, CA 90001" -175329,Bose SoundSport Headphones,1,99.99,03/04/19 11:48,"305 7th St, San Francisco, CA 94016" -175330,AA Batteries (4-pack),1,3.84,03/29/19 10:13,"789 Jackson St, San Francisco, CA 94016" -175331,USB-C Charging Cable,1,11.95,03/31/19 07:46,"158 Washington St, Atlanta, GA 30301" -175332,iPhone,1,700,03/21/19 20:40,"622 Wilson St, San Francisco, CA 94016" -175332,Lightning Charging Cable,2,14.95,03/21/19 20:40,"622 Wilson St, San Francisco, CA 94016" -175333,34in Ultrawide Monitor,1,379.99,03/05/19 18:53,"761 Highland St, Austin, TX 73301" -175334,Bose SoundSport Headphones,1,99.99,03/19/19 13:38,"208 Washington St, Seattle, WA 98101" -175335,ThinkPad Laptop,1,999.99,03/11/19 06:55,"279 Forest St, Los Angeles, CA 90001" -175336,Wired Headphones,1,11.99,03/16/19 17:48,"268 South St, Dallas, TX 75001" -175337,Google Phone,1,600,03/06/19 15:58,"236 5th St, New York City, NY 10001" -175338,AAA Batteries (4-pack),3,2.99,03/20/19 21:18,"615 10th St, Boston, MA 02215" -175339,Macbook Pro Laptop,1,1700,03/29/19 01:17,"332 Willow St, San Francisco, CA 94016" -175340,AA Batteries (4-pack),1,3.84,03/16/19 04:47,"211 Highland St, Dallas, TX 75001" -175341,Google Phone,1,600,03/28/19 19:24,"843 Jefferson St, Austin, TX 73301" -175342,Bose SoundSport Headphones,1,99.99,03/05/19 01:01,"304 Walnut St, Seattle, WA 98101" -175343,USB-C Charging Cable,1,11.95,03/10/19 14:49,"342 Hill St, Seattle, WA 98101" -175344,34in Ultrawide Monitor,1,379.99,03/13/19 13:32,"936 Lake St, Atlanta, GA 30301" -175345,27in FHD Monitor,1,149.99,03/19/19 12:26,"452 Hickory St, Portland, OR 97035" -175346,AAA Batteries (4-pack),2,2.99,03/30/19 18:46,"709 Elm St, Portland, ME 04101" -175347,Bose SoundSport Headphones,1,99.99,03/04/19 11:08,"998 Willow St, Dallas, TX 75001" -175348,Bose SoundSport Headphones,1,99.99,03/30/19 12:56,"348 Spruce St, San Francisco, CA 94016" -175349,Apple Airpods Headphones,1,150,03/25/19 18:17,"123 6th St, New York City, NY 10001" -175350,Apple Airpods Headphones,1,150,03/06/19 09:15,"103 Washington St, Atlanta, GA 30301" -175351,AA Batteries (4-pack),1,3.84,03/23/19 16:43,"791 Jackson St, Boston, MA 02215" -175352,Bose SoundSport Headphones,1,99.99,03/03/19 16:39,"224 Washington St, Austin, TX 73301" -175353,Lightning Charging Cable,1,14.95,03/24/19 15:35,"868 Park St, San Francisco, CA 94016" -175354,ThinkPad Laptop,1,999.99,03/02/19 17:31,"410 1st St, San Francisco, CA 94016" -175355,Wired Headphones,1,11.99,03/30/19 17:05,"738 Sunset St, New York City, NY 10001" -175356,iPhone,1,700,03/22/19 13:41,"117 Sunset St, Atlanta, GA 30301" -175357,AA Batteries (4-pack),1,3.84,03/10/19 12:03,"680 Jefferson St, Los Angeles, CA 90001" -175358,Bose SoundSport Headphones,1,99.99,03/09/19 11:19,"715 14th St, Boston, MA 02215" -175359,AA Batteries (4-pack),1,3.84,03/23/19 11:07,"93 Pine St, Boston, MA 02215" -175360,Google Phone,1,600,03/23/19 21:12,"72 Lake St, Boston, MA 02215" -175361,Bose SoundSport Headphones,1,99.99,03/24/19 01:52,"36 7th St, Los Angeles, CA 90001" -175362,AA Batteries (4-pack),1,3.84,03/23/19 16:18,"144 4th St, Boston, MA 02215" -175363,Bose SoundSport Headphones,1,99.99,03/20/19 23:28,"708 14th St, Atlanta, GA 30301" -175364,AAA Batteries (4-pack),3,2.99,03/17/19 14:51,"636 Church St, Seattle, WA 98101" -175365,Apple Airpods Headphones,1,150,03/30/19 13:47,"280 Wilson St, Atlanta, GA 30301" -175366,AA Batteries (4-pack),1,3.84,03/13/19 16:36,"354 Church St, Los Angeles, CA 90001" -175366,Macbook Pro Laptop,1,1700,03/13/19 16:36,"354 Church St, Los Angeles, CA 90001" -175367,Lightning Charging Cable,1,14.95,03/28/19 16:36,"199 Chestnut St, Los Angeles, CA 90001" -175367,AAA Batteries (4-pack),1,2.99,03/28/19 16:36,"199 Chestnut St, Los Angeles, CA 90001" -175368,Bose SoundSport Headphones,1,99.99,03/18/19 09:00,"105 Wilson St, Portland, ME 04101" -175369,AA Batteries (4-pack),1,3.84,03/10/19 21:55,"86 Cherry St, Austin, TX 73301" -175370,Lightning Charging Cable,1,14.95,03/15/19 20:25,"134 Lakeview St, Atlanta, GA 30301" -175371,Lightning Charging Cable,1,14.95,03/18/19 10:37,"493 12th St, Los Angeles, CA 90001" -175372,Wired Headphones,1,11.99,03/17/19 09:45,"975 Dogwood St, San Francisco, CA 94016" -175373,27in FHD Monitor,1,149.99,03/16/19 16:40,"340 Center St, Los Angeles, CA 90001" -175374,USB-C Charging Cable,1,11.95,03/27/19 07:44,"427 9th St, Boston, MA 02215" -175375,AAA Batteries (4-pack),2,2.99,03/28/19 12:22,"768 Johnson St, San Francisco, CA 94016" -175376,Bose SoundSport Headphones,1,99.99,03/26/19 17:02,"448 Elm St, San Francisco, CA 94016" -175377,iPhone,1,700,03/29/19 13:11,"853 5th St, Dallas, TX 75001" -175378,27in 4K Gaming Monitor,1,389.99,03/02/19 18:35,"748 Adams St, Los Angeles, CA 90001" -175379,USB-C Charging Cable,1,11.95,03/16/19 14:42,"445 Lakeview St, Seattle, WA 98101" -175380,Google Phone,1,600,03/27/19 19:15,"318 River St, Portland, OR 97035" -175381,Wired Headphones,1,11.99,03/05/19 16:39,"719 Pine St, San Francisco, CA 94016" -175382,Lightning Charging Cable,1,14.95,03/28/19 15:38,"987 1st St, San Francisco, CA 94016" -175383,USB-C Charging Cable,1,11.95,03/26/19 13:17,"731 12th St, San Francisco, CA 94016" -175384,USB-C Charging Cable,1,11.95,03/07/19 18:25,"938 Lake St, Austin, TX 73301" -175385,USB-C Charging Cable,1,11.95,03/11/19 10:54,"161 Hickory St, Seattle, WA 98101" -175386,Lightning Charging Cable,1,14.95,03/29/19 11:13,"32 Lakeview St, Austin, TX 73301" -175387,AA Batteries (4-pack),1,3.84,03/08/19 16:19,"308 Maple St, Dallas, TX 75001" -175388,Wired Headphones,1,11.99,03/13/19 15:47,"601 Pine St, Los Angeles, CA 90001" -175389,34in Ultrawide Monitor,1,379.99,03/30/19 11:21,"315 Elm St, San Francisco, CA 94016" -175390,Bose SoundSport Headphones,1,99.99,03/18/19 23:44,"170 Jackson St, San Francisco, CA 94016" -175391,AA Batteries (4-pack),1,3.84,03/23/19 13:40,"144 Hickory St, Dallas, TX 75001" -175392,34in Ultrawide Monitor,1,379.99,03/11/19 11:42,"187 Church St, Atlanta, GA 30301" -175393,USB-C Charging Cable,1,11.95,03/12/19 14:46,"486 11th St, Boston, MA 02215" -175394,Google Phone,1,600,03/07/19 18:48,"674 Wilson St, Boston, MA 02215" -175395,Vareebadd Phone,1,400,03/16/19 14:09,"761 Willow St, San Francisco, CA 94016" -175396,Apple Airpods Headphones,1,150,03/18/19 10:07,"708 Hickory St, New York City, NY 10001" -175397,Apple Airpods Headphones,1,150,03/02/19 20:19,"313 Spruce St, San Francisco, CA 94016" -175398,USB-C Charging Cable,1,11.95,03/18/19 08:39,"481 1st St, Portland, ME 04101" -175399,Macbook Pro Laptop,1,1700,03/31/19 08:36,"605 2nd St, Dallas, TX 75001" -175400,USB-C Charging Cable,2,11.95,03/13/19 14:20,"192 Lake St, Austin, TX 73301" -175401,20in Monitor,2,109.99,03/05/19 11:15,"214 West St, Los Angeles, CA 90001" -175402,USB-C Charging Cable,1,11.95,03/01/19 16:11,"901 Dogwood St, Atlanta, GA 30301" -175403,Apple Airpods Headphones,1,150,03/15/19 15:58,"694 4th St, New York City, NY 10001" -175404,Flatscreen TV,1,300,03/24/19 19:42,"195 Spruce St, Los Angeles, CA 90001" -175405,Flatscreen TV,1,300,03/04/19 20:05,"726 Elm St, San Francisco, CA 94016" -175406,AA Batteries (4-pack),1,3.84,03/28/19 12:17,"675 8th St, San Francisco, CA 94016" -175407,Google Phone,1,600,03/16/19 10:58,"104 2nd St, New York City, NY 10001" -175407,USB-C Charging Cable,1,11.95,03/16/19 10:58,"104 2nd St, New York City, NY 10001" -175407,Bose SoundSport Headphones,1,99.99,03/16/19 10:58,"104 2nd St, New York City, NY 10001" -175408,20in Monitor,1,109.99,03/07/19 14:20,"371 6th St, Los Angeles, CA 90001" -175409,USB-C Charging Cable,1,11.95,03/10/19 19:40,"992 North St, Atlanta, GA 30301" -175410,ThinkPad Laptop,1,999.99,03/19/19 21:12,"776 Jefferson St, New York City, NY 10001" -175411,34in Ultrawide Monitor,1,379.99,03/27/19 19:30,"713 Dogwood St, Los Angeles, CA 90001" -175412,Wired Headphones,1,11.99,03/14/19 08:14,"476 9th St, San Francisco, CA 94016" -175413,AA Batteries (4-pack),1,3.84,03/14/19 14:37,"529 7th St, Boston, MA 02215" -175414,Lightning Charging Cable,1,14.95,03/24/19 17:38,"313 Walnut St, Atlanta, GA 30301" -175415,Bose SoundSport Headphones,1,99.99,03/09/19 11:27,"768 Park St, New York City, NY 10001" -175416,AA Batteries (4-pack),1,3.84,03/31/19 19:14,"946 2nd St, Boston, MA 02215" -175417,Wired Headphones,1,11.99,03/22/19 16:37,"158 Lincoln St, Los Angeles, CA 90001" -175418,Lightning Charging Cable,1,14.95,03/12/19 15:15,"27 Washington St, San Francisco, CA 94016" -175419,Macbook Pro Laptop,1,1700,03/09/19 14:06,"343 Lakeview St, New York City, NY 10001" -175420,AAA Batteries (4-pack),1,2.99,03/09/19 12:22,"587 Elm St, San Francisco, CA 94016" -175421,Lightning Charging Cable,2,14.95,03/24/19 09:34,"612 5th St, New York City, NY 10001" -175422,AA Batteries (4-pack),1,3.84,03/02/19 14:18,"238 Cherry St, San Francisco, CA 94016" -175423,AAA Batteries (4-pack),1,2.99,03/11/19 13:45,"240 2nd St, Boston, MA 02215" -175424,USB-C Charging Cable,1,11.95,03/07/19 22:20,"420 Washington St, Los Angeles, CA 90001" -175425,iPhone,1,700,03/25/19 16:19,"568 5th St, Los Angeles, CA 90001" -175426,AA Batteries (4-pack),1,3.84,03/02/19 07:43,"8 13th St, Dallas, TX 75001" -175427,USB-C Charging Cable,1,11.95,03/10/19 15:20,"351 10th St, Austin, TX 73301" -175428,ThinkPad Laptop,1,999.99,03/27/19 15:34,"28 Walnut St, Boston, MA 02215" -175429,AAA Batteries (4-pack),1,2.99,03/16/19 19:00,"724 Hill St, San Francisco, CA 94016" -175430,AAA Batteries (4-pack),1,2.99,03/06/19 13:01,"114 Meadow St, San Francisco, CA 94016" -175431,USB-C Charging Cable,1,11.95,03/16/19 04:54,"55 Maple St, Seattle, WA 98101" -175432,USB-C Charging Cable,1,11.95,03/12/19 22:20,"9 Wilson St, Dallas, TX 75001" -175433,Apple Airpods Headphones,1,150,03/28/19 11:04,"87 Cherry St, Boston, MA 02215" -175434,USB-C Charging Cable,1,11.95,03/11/19 11:53,"404 Church St, Boston, MA 02215" -175435,27in 4K Gaming Monitor,1,389.99,03/18/19 17:14,"678 Highland St, Dallas, TX 75001" -175436,Wired Headphones,1,11.99,03/07/19 13:41,"691 Willow St, Boston, MA 02215" -175437,Lightning Charging Cable,1,14.95,03/01/19 08:50,"861 Meadow St, Seattle, WA 98101" -175438,Lightning Charging Cable,1,14.95,03/17/19 11:30,"546 Highland St, Atlanta, GA 30301" -175439,AAA Batteries (4-pack),1,2.99,03/14/19 08:46,"784 Walnut St, Los Angeles, CA 90001" -175440,34in Ultrawide Monitor,2,379.99,03/24/19 13:19,"300 2nd St, Atlanta, GA 30301" -175441,AA Batteries (4-pack),1,3.84,03/23/19 15:24,"830 Main St, Los Angeles, CA 90001" -175442,Apple Airpods Headphones,1,150,03/26/19 14:19,"767 Adams St, New York City, NY 10001" -175443,Wired Headphones,1,11.99,03/28/19 15:01,"409 6th St, Boston, MA 02215" -175444,27in 4K Gaming Monitor,1,389.99,03/03/19 12:48,"518 Cherry St, Atlanta, GA 30301" -175445,20in Monitor,1,109.99,03/15/19 19:05,"949 Elm St, Dallas, TX 75001" -175446,USB-C Charging Cable,1,11.95,03/09/19 19:28,"422 Park St, Boston, MA 02215" -175447,Macbook Pro Laptop,1,1700,03/25/19 07:00,"325 Center St, San Francisco, CA 94016" -175448,USB-C Charging Cable,1,11.95,03/06/19 16:45,"381 14th St, Dallas, TX 75001" -175449,Bose SoundSport Headphones,1,99.99,03/01/19 13:54,"629 Walnut St, Boston, MA 02215" -175450,AAA Batteries (4-pack),2,2.99,03/29/19 20:32,"96 Meadow St, Los Angeles, CA 90001" -175451,USB-C Charging Cable,1,11.95,03/01/19 17:17,"688 10th St, Dallas, TX 75001" -175452,Lightning Charging Cable,1,14.95,03/21/19 00:16,"995 Cedar St, Portland, OR 97035" -175453,Bose SoundSport Headphones,1,99.99,03/09/19 16:18,"227 11th St, Portland, ME 04101" -175454,AAA Batteries (4-pack),1,2.99,03/11/19 23:49,"223 Main St, Boston, MA 02215" -175455,Wired Headphones,1,11.99,03/15/19 11:33,"764 7th St, San Francisco, CA 94016" -175456,Wired Headphones,1,11.99,03/13/19 15:04,"398 Dogwood St, Los Angeles, CA 90001" -175457,Bose SoundSport Headphones,1,99.99,03/30/19 12:28,"262 Madison St, Los Angeles, CA 90001" -175458,Wired Headphones,1,11.99,03/05/19 10:27,"596 Dogwood St, Los Angeles, CA 90001" -175459,20in Monitor,1,109.99,03/10/19 10:36,"496 Park St, New York City, NY 10001" -175460,Wired Headphones,1,11.99,03/09/19 21:44,"772 Park St, Los Angeles, CA 90001" -175461,Wired Headphones,1,11.99,03/22/19 08:48,"67 13th St, San Francisco, CA 94016" -175462,20in Monitor,1,109.99,03/19/19 17:08,"542 West St, San Francisco, CA 94016" -175463,Bose SoundSport Headphones,1,99.99,03/27/19 18:23,"208 South St, San Francisco, CA 94016" -175464,USB-C Charging Cable,1,11.95,03/25/19 16:40,"292 1st St, New York City, NY 10001" -175465,27in FHD Monitor,1,149.99,03/12/19 07:47,"924 14th St, Los Angeles, CA 90001" -175466,AA Batteries (4-pack),2,3.84,03/15/19 14:55,"691 River St, San Francisco, CA 94016" -175467,34in Ultrawide Monitor,1,379.99,03/03/19 11:45,"130 14th St, Los Angeles, CA 90001" -175468,Apple Airpods Headphones,1,150,03/05/19 09:34,"154 Cherry St, San Francisco, CA 94016" -175469,AAA Batteries (4-pack),2,2.99,03/05/19 09:32,"374 Church St, Boston, MA 02215" -175470,Wired Headphones,1,11.99,03/11/19 18:02,"279 14th St, Atlanta, GA 30301" -175471,Google Phone,1,600,03/29/19 21:31,"104 Spruce St, San Francisco, CA 94016" -175472,27in 4K Gaming Monitor,1,389.99,03/11/19 19:48,"696 Madison St, Seattle, WA 98101" -175473,USB-C Charging Cable,1,11.95,03/06/19 13:15,"321 Johnson St, Boston, MA 02215" -175474,iPhone,1,700,03/19/19 22:20,"585 10th St, Boston, MA 02215" -175475,AAA Batteries (4-pack),2,2.99,03/30/19 20:55,"971 14th St, Los Angeles, CA 90001" -175476,AAA Batteries (4-pack),1,2.99,03/19/19 14:08,"325 Chestnut St, Portland, OR 97035" -175477,Lightning Charging Cable,2,14.95,03/16/19 08:10,"444 Maple St, New York City, NY 10001" -175478,Bose SoundSport Headphones,1,99.99,03/13/19 12:09,"752 8th St, San Francisco, CA 94016" -175479,Lightning Charging Cable,1,14.95,03/22/19 18:31,"951 Jackson St, San Francisco, CA 94016" -175480,27in FHD Monitor,1,149.99,03/03/19 17:18,"842 9th St, Portland, ME 04101" -175481,Flatscreen TV,1,300,03/20/19 15:03,"90 Cherry St, New York City, NY 10001" -175482,Vareebadd Phone,1,400,03/16/19 12:39,"223 Hill St, New York City, NY 10001" -175483,Flatscreen TV,1,300,03/04/19 10:11,"284 Ridge St, Los Angeles, CA 90001" -175484,Bose SoundSport Headphones,1,99.99,03/08/19 02:52,"464 2nd St, Atlanta, GA 30301" -175485,ThinkPad Laptop,1,999.99,03/23/19 13:59,"258 Highland St, Portland, OR 97035" -175486,AAA Batteries (4-pack),1,2.99,03/01/19 07:56,"195 12th St, Los Angeles, CA 90001" -175487,Lightning Charging Cable,1,14.95,03/31/19 10:58,"229 South St, San Francisco, CA 94016" -175488,Wired Headphones,1,11.99,03/17/19 19:33,"528 2nd St, Los Angeles, CA 90001" -175489,Wired Headphones,1,11.99,03/30/19 11:50,"663 8th St, San Francisco, CA 94016" -175490,Apple Airpods Headphones,1,150,03/31/19 16:31,"97 North St, Austin, TX 73301" -175491,Wired Headphones,1,11.99,03/21/19 13:32,"1 13th St, San Francisco, CA 94016" -175492,Apple Airpods Headphones,1,150,03/03/19 11:33,"804 Madison St, Portland, OR 97035" -175493,27in 4K Gaming Monitor,1,389.99,03/24/19 19:46,"703 Johnson St, Los Angeles, CA 90001" -175494,Lightning Charging Cable,1,14.95,03/24/19 21:22,"955 Elm St, Dallas, TX 75001" -175495,Bose SoundSport Headphones,1,99.99,03/24/19 21:28,"780 10th St, San Francisco, CA 94016" -175496,iPhone,1,700,03/12/19 12:36,"370 10th St, Los Angeles, CA 90001" -175497,Bose SoundSport Headphones,1,99.99,03/25/19 19:10,"117 Hill St, New York City, NY 10001" -175498,Wired Headphones,1,11.99,03/11/19 07:24,"241 Chestnut St, Atlanta, GA 30301" -175499,iPhone,1,700,03/10/19 09:50,"775 Center St, San Francisco, CA 94016" -175500,Wired Headphones,1,11.99,03/01/19 17:54,"804 Elm St, Boston, MA 02215" -175501,AAA Batteries (4-pack),1,2.99,03/08/19 01:08,"717 Cherry St, San Francisco, CA 94016" -175502,USB-C Charging Cable,1,11.95,03/08/19 18:43,"91 Dogwood St, Dallas, TX 75001" -175503,20in Monitor,1,109.99,03/02/19 15:14,"615 Church St, San Francisco, CA 94016" -175504,USB-C Charging Cable,2,11.95,03/04/19 16:58,"189 Chestnut St, San Francisco, CA 94016" -175505,Lightning Charging Cable,1,14.95,03/18/19 11:26,"787 Cedar St, San Francisco, CA 94016" -175506,Macbook Pro Laptop,1,1700,03/12/19 11:44,"15 Highland St, San Francisco, CA 94016" -175507,Vareebadd Phone,1,400,03/25/19 17:32,"971 Dogwood St, New York City, NY 10001" -175507,USB-C Charging Cable,1,11.95,03/25/19 17:32,"971 Dogwood St, New York City, NY 10001" -175508,Macbook Pro Laptop,1,1700,03/27/19 16:34,"309 Sunset St, San Francisco, CA 94016" -175509,Bose SoundSport Headphones,1,99.99,03/17/19 20:30,"74 Cherry St, Atlanta, GA 30301" -175510,Wired Headphones,2,11.99,03/28/19 18:16,"197 4th St, Boston, MA 02215" -175511,AAA Batteries (4-pack),1,2.99,03/23/19 08:49,"43 Jefferson St, Portland, OR 97035" -175511,USB-C Charging Cable,1,11.95,03/23/19 08:49,"43 Jefferson St, Portland, OR 97035" -175512,USB-C Charging Cable,1,11.95,03/20/19 17:17,"213 Park St, Los Angeles, CA 90001" -175513,Flatscreen TV,1,300,03/15/19 19:57,"325 12th St, Dallas, TX 75001" -175514,Lightning Charging Cable,1,14.95,03/11/19 12:55,"624 Hill St, Los Angeles, CA 90001" -175515,Lightning Charging Cable,1,14.95,03/18/19 22:42,"357 Forest St, San Francisco, CA 94016" -175516,Bose SoundSport Headphones,1,99.99,03/13/19 17:47,"333 Hill St, Dallas, TX 75001" -175517,iPhone,1,700,03/24/19 19:51,"222 12th St, San Francisco, CA 94016" -175518,AAA Batteries (4-pack),1,2.99,03/03/19 19:39,"193 4th St, Seattle, WA 98101" -175519,AA Batteries (4-pack),1,3.84,03/02/19 17:07,"737 River St, Dallas, TX 75001" -175520,AA Batteries (4-pack),1,3.84,03/30/19 09:24,"314 Hill St, Dallas, TX 75001" -175521,27in 4K Gaming Monitor,1,389.99,03/24/19 21:09,"42 Pine St, Boston, MA 02215" -175522,Flatscreen TV,1,300,03/05/19 11:11,"312 Maple St, San Francisco, CA 94016" -175523,27in FHD Monitor,1,149.99,03/09/19 16:57,"176 Dogwood St, Los Angeles, CA 90001" -175524,Apple Airpods Headphones,1,150,03/02/19 10:57,"763 Elm St, Los Angeles, CA 90001" -175525,AA Batteries (4-pack),1,3.84,03/29/19 14:48,"166 Dogwood St, San Francisco, CA 94016" -175526,Lightning Charging Cable,1,14.95,03/02/19 10:57,"486 Walnut St, San Francisco, CA 94016" -175527,AAA Batteries (4-pack),1,2.99,03/27/19 13:44,"972 12th St, New York City, NY 10001" -175528,27in FHD Monitor,1,149.99,03/23/19 08:44,"755 Ridge St, Boston, MA 02215" -175529,Lightning Charging Cable,1,14.95,03/27/19 23:11,"481 Hickory St, Dallas, TX 75001" -175530,AA Batteries (4-pack),1,3.84,03/20/19 22:18,"818 Jefferson St, San Francisco, CA 94016" -175531,Macbook Pro Laptop,1,1700,03/16/19 13:32,"124 Lake St, Seattle, WA 98101" -175532,AAA Batteries (4-pack),2,2.99,03/07/19 21:09,"243 7th St, Los Angeles, CA 90001" -175533,Lightning Charging Cable,1,14.95,03/09/19 18:01,"434 Maple St, New York City, NY 10001" -175534,Lightning Charging Cable,1,14.95,03/30/19 13:38,"768 Walnut St, Boston, MA 02215" -175535,Vareebadd Phone,1,400,03/10/19 19:49,"572 Pine St, Austin, TX 73301" -175536,iPhone,1,700,03/14/19 12:59,"845 10th St, San Francisco, CA 94016" -175537,20in Monitor,1,109.99,03/18/19 23:11,"457 Meadow St, San Francisco, CA 94016" -175538,AAA Batteries (4-pack),1,2.99,03/28/19 21:50,"512 Cedar St, Seattle, WA 98101" -175539,AAA Batteries (4-pack),1,2.99,03/23/19 11:48,"235 Chestnut St, Atlanta, GA 30301" -175540,Macbook Pro Laptop,1,1700,03/05/19 21:25,"628 Meadow St, Portland, OR 97035" -175541,USB-C Charging Cable,1,11.95,03/02/19 12:16,"315 Ridge St, Los Angeles, CA 90001" -175542,iPhone,1,700,03/27/19 01:51,"979 Madison St, Boston, MA 02215" -175543,Macbook Pro Laptop,1,1700,03/11/19 18:20,"220 Main St, Seattle, WA 98101" -175544,AAA Batteries (4-pack),1,2.99,03/12/19 09:33,"13 Meadow St, Atlanta, GA 30301" -175545,USB-C Charging Cable,1,11.95,03/11/19 23:30,"242 2nd St, Boston, MA 02215" -175545,Lightning Charging Cable,1,14.95,03/11/19 23:30,"242 2nd St, Boston, MA 02215" -175546,AA Batteries (4-pack),1,3.84,03/28/19 07:59,"231 Lakeview St, Dallas, TX 75001" -175547,Bose SoundSport Headphones,1,99.99,03/26/19 12:17,"361 Maple St, San Francisco, CA 94016" -175548,iPhone,1,700,03/31/19 19:03,"886 13th St, Portland, OR 97035" -175549,Wired Headphones,1,11.99,03/28/19 17:19,"518 5th St, Los Angeles, CA 90001" -175550,AA Batteries (4-pack),2,3.84,03/10/19 20:19,"703 Hickory St, New York City, NY 10001" -175551,AAA Batteries (4-pack),2,2.99,03/27/19 14:14,"608 2nd St, Atlanta, GA 30301" -175552,USB-C Charging Cable,1,11.95,03/22/19 19:36,"74 Hill St, San Francisco, CA 94016" -175553,ThinkPad Laptop,1,999.99,03/18/19 19:42,"399 Cedar St, Boston, MA 02215" -175554,ThinkPad Laptop,1,999.99,03/11/19 21:57,"613 Sunset St, Austin, TX 73301" -175555,iPhone,1,700,03/03/19 11:51,"496 Hill St, Portland, ME 04101" -175556,AA Batteries (4-pack),1,3.84,03/02/19 17:53,"291 Center St, San Francisco, CA 94016" -175557,Wired Headphones,1,11.99,03/27/19 05:28,"818 Madison St, Los Angeles, CA 90001" -175558,Wired Headphones,1,11.99,03/21/19 20:37,"882 6th St, Portland, OR 97035" -175559,Google Phone,1,600,03/26/19 22:49,"142 Dogwood St, Austin, TX 73301" -175559,USB-C Charging Cable,1,11.95,03/26/19 22:49,"142 Dogwood St, Austin, TX 73301" -175560,Lightning Charging Cable,1,14.95,03/07/19 16:52,"770 Park St, Dallas, TX 75001" -175561,Lightning Charging Cable,1,14.95,03/27/19 22:12,"937 Walnut St, Los Angeles, CA 90001" -175562,Apple Airpods Headphones,1,150,03/07/19 19:20,"775 Maple St, Seattle, WA 98101" -175563,Apple Airpods Headphones,1,150,03/17/19 07:35,"240 2nd St, Austin, TX 73301" -175564,USB-C Charging Cable,1,11.95,03/02/19 16:36,"583 Park St, San Francisco, CA 94016" -175565,Wired Headphones,1,11.99,03/30/19 14:16,"451 Elm St, Dallas, TX 75001" -175566,AA Batteries (4-pack),1,3.84,03/03/19 15:59,"421 Dogwood St, San Francisco, CA 94016" -175567,20in Monitor,1,109.99,03/06/19 13:33,"553 2nd St, San Francisco, CA 94016" -175568,iPhone,1,700,03/23/19 02:39,"155 2nd St, Los Angeles, CA 90001" -175569,Apple Airpods Headphones,1,150,03/29/19 12:36,"661 Lincoln St, San Francisco, CA 94016" -175570,Wired Headphones,2,11.99,03/18/19 17:53,"935 Church St, Dallas, TX 75001" -175571,USB-C Charging Cable,2,11.95,03/09/19 15:09,"824 9th St, San Francisco, CA 94016" -175572,Bose SoundSport Headphones,1,99.99,03/13/19 05:44,"926 6th St, Dallas, TX 75001" -175573,Bose SoundSport Headphones,1,99.99,03/13/19 20:29,"355 1st St, New York City, NY 10001" -175574,Bose SoundSport Headphones,1,99.99,03/03/19 22:41,"551 Main St, San Francisco, CA 94016" -175575,Bose SoundSport Headphones,1,99.99,03/26/19 10:16,"545 Jackson St, Portland, ME 04101" -175576,Apple Airpods Headphones,1,150,03/04/19 18:59,"833 6th St, Los Angeles, CA 90001" -175577,Lightning Charging Cable,1,14.95,03/14/19 14:36,"731 River St, San Francisco, CA 94016" -175578,Wired Headphones,1,11.99,03/07/19 17:02,"664 5th St, Dallas, TX 75001" -175579,Lightning Charging Cable,1,14.95,03/12/19 17:19,"241 Church St, Seattle, WA 98101" -175580,Bose SoundSport Headphones,1,99.99,03/21/19 16:07,"546 Lincoln St, Seattle, WA 98101" -175581,Vareebadd Phone,1,400,03/12/19 16:48,"760 Center St, Los Angeles, CA 90001" -175582,AA Batteries (4-pack),1,3.84,03/03/19 15:19,"807 Cedar St, Los Angeles, CA 90001" -175583,Apple Airpods Headphones,1,150,03/21/19 10:56,"18 1st St, Los Angeles, CA 90001" -175584,Wired Headphones,1,11.99,03/09/19 15:49,"143 7th St, Dallas, TX 75001" -175585,Apple Airpods Headphones,1,150,03/26/19 20:44,"250 Willow St, Atlanta, GA 30301" -175586,Bose SoundSport Headphones,1,99.99,03/04/19 11:32,"243 Pine St, Los Angeles, CA 90001" -175587,AAA Batteries (4-pack),1,2.99,03/31/19 13:31,"301 Hill St, San Francisco, CA 94016" -175588,Bose SoundSport Headphones,1,99.99,03/13/19 19:51,"142 Elm St, New York City, NY 10001" -175589,Apple Airpods Headphones,1,150,03/17/19 14:02,"823 Lakeview St, San Francisco, CA 94016" -175590,Apple Airpods Headphones,1,150,03/04/19 09:51,"566 Dogwood St, Atlanta, GA 30301" -175591,iPhone,1,700,03/20/19 12:47,"903 South St, Los Angeles, CA 90001" -175592,Google Phone,1,600,03/29/19 22:12,"177 Johnson St, Los Angeles, CA 90001" -175592,USB-C Charging Cable,1,11.95,03/29/19 22:12,"177 Johnson St, Los Angeles, CA 90001" -175592,Bose SoundSport Headphones,1,99.99,03/29/19 22:12,"177 Johnson St, Los Angeles, CA 90001" -175593,AAA Batteries (4-pack),2,2.99,03/14/19 00:36,"526 Spruce St, Boston, MA 02215" -175594,iPhone,1,700,03/07/19 16:26,"246 Dogwood St, Dallas, TX 75001" -175595,Apple Airpods Headphones,1,150,03/09/19 16:14,"293 Adams St, New York City, NY 10001" -175596,Lightning Charging Cable,1,14.95,03/26/19 23:18,"51 2nd St, San Francisco, CA 94016" -175597,27in 4K Gaming Monitor,1,389.99,03/24/19 16:14,"930 Jackson St, Seattle, WA 98101" -175598,Bose SoundSport Headphones,1,99.99,03/20/19 11:12,"412 11th St, Portland, OR 97035" -175599,ThinkPad Laptop,1,999.99,03/25/19 13:52,"482 5th St, Atlanta, GA 30301" -175600,Wired Headphones,1,11.99,03/15/19 08:16,"970 Lakeview St, Los Angeles, CA 90001" -175601,AA Batteries (4-pack),1,3.84,03/25/19 21:35,"31 Lakeview St, Boston, MA 02215" -175602,AA Batteries (4-pack),1,3.84,03/18/19 13:59,"983 Jackson St, San Francisco, CA 94016" -175603,USB-C Charging Cable,1,11.95,03/20/19 00:56,"177 13th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -175604,AAA Batteries (4-pack),1,2.99,03/02/19 14:36,"7 9th St, San Francisco, CA 94016" -175605,Google Phone,1,600,03/23/19 11:44,"54 Sunset St, New York City, NY 10001" -175606,27in FHD Monitor,1,149.99,03/20/19 11:39,"160 13th St, Los Angeles, CA 90001" -175607,Apple Airpods Headphones,1,150,03/01/19 09:13,"884 River St, Boston, MA 02215" -175608,USB-C Charging Cable,1,11.95,03/23/19 18:00,"952 2nd St, Portland, OR 97035" -175609,Apple Airpods Headphones,1,150,03/28/19 07:06,"467 River St, San Francisco, CA 94016" -175610,USB-C Charging Cable,1,11.95,03/02/19 14:50,"883 Center St, Portland, OR 97035" -175611,Macbook Pro Laptop,1,1700,03/20/19 12:41,"619 7th St, Boston, MA 02215" -175612,AA Batteries (4-pack),1,3.84,03/15/19 12:21,"566 Adams St, San Francisco, CA 94016" -175613,USB-C Charging Cable,1,11.95,03/14/19 11:59,"89 11th St, San Francisco, CA 94016" -175614,Lightning Charging Cable,1,14.95,03/21/19 19:12,"756 Jefferson St, Los Angeles, CA 90001" -175615,27in FHD Monitor,1,149.99,03/20/19 20:30,"25 Lakeview St, New York City, NY 10001" -175616,20in Monitor,1,109.99,03/23/19 17:41,"545 9th St, Portland, ME 04101" -175617,AAA Batteries (4-pack),3,2.99,03/05/19 11:06,"955 Walnut St, San Francisco, CA 94016" -175618,AAA Batteries (4-pack),1,2.99,03/11/19 00:34,"175 Cedar St, Dallas, TX 75001" -175619,Wired Headphones,1,11.99,03/09/19 21:32,"949 10th St, Dallas, TX 75001" -175620,Wired Headphones,1,11.99,03/22/19 01:32,"883 6th St, Los Angeles, CA 90001" -175621,AAA Batteries (4-pack),3,2.99,03/19/19 11:43,"385 2nd St, Los Angeles, CA 90001" -175622,AA Batteries (4-pack),1,3.84,03/19/19 15:59,"368 6th St, Dallas, TX 75001" -175623,AA Batteries (4-pack),1,3.84,03/09/19 00:33,"814 8th St, Boston, MA 02215" -175624,AAA Batteries (4-pack),1,2.99,03/28/19 01:18,"195 Dogwood St, Boston, MA 02215" -175625,Apple Airpods Headphones,2,150,03/05/19 10:35,"854 4th St, New York City, NY 10001" -175626,Apple Airpods Headphones,1,150,03/03/19 13:57,"249 Forest St, New York City, NY 10001" -175627,Lightning Charging Cable,1,14.95,03/25/19 08:49,"830 6th St, San Francisco, CA 94016" -175628,AA Batteries (4-pack),1,3.84,03/04/19 09:15,"319 Cedar St, San Francisco, CA 94016" -175629,AA Batteries (4-pack),3,3.84,03/09/19 21:18,"362 Cedar St, Portland, OR 97035" -175630,USB-C Charging Cable,1,11.95,03/02/19 10:41,"954 Highland St, Seattle, WA 98101" -175631,20in Monitor,1,109.99,03/16/19 02:43,"144 Madison St, San Francisco, CA 94016" -175632,Lightning Charging Cable,1,14.95,03/24/19 13:47,"111 6th St, Seattle, WA 98101" -175633,Flatscreen TV,1,300,03/19/19 14:36,"209 Spruce St, Portland, OR 97035" -175634,USB-C Charging Cable,1,11.95,03/12/19 12:01,"639 5th St, Boston, MA 02215" -175635,USB-C Charging Cable,1,11.95,03/04/19 15:40,"634 Walnut St, Los Angeles, CA 90001" -175636,27in 4K Gaming Monitor,1,389.99,03/25/19 17:40,"588 Willow St, Portland, OR 97035" -175637,USB-C Charging Cable,1,11.95,03/21/19 21:15,"172 Sunset St, San Francisco, CA 94016" -175638,27in FHD Monitor,1,149.99,03/16/19 19:00,"57 12th St, Boston, MA 02215" -175639,Lightning Charging Cable,1,14.95,03/15/19 21:56,"331 Chestnut St, Seattle, WA 98101" -175640,27in FHD Monitor,1,149.99,03/08/19 09:51,"858 Forest St, Boston, MA 02215" -175641,Macbook Pro Laptop,1,1700,03/21/19 07:24,"811 9th St, New York City, NY 10001" -175642,AAA Batteries (4-pack),1,2.99,03/07/19 17:16,"253 South St, New York City, NY 10001" -175643,Apple Airpods Headphones,1,150,03/22/19 19:08,"479 Lake St, Austin, TX 73301" -175644,Macbook Pro Laptop,1,1700,03/23/19 13:39,"517 11th St, Boston, MA 02215" -175645,Apple Airpods Headphones,1,150,03/27/19 15:44,"394 Wilson St, San Francisco, CA 94016" -175646,AAA Batteries (4-pack),2,2.99,03/14/19 12:45,"873 Lakeview St, Boston, MA 02215" -175647,AAA Batteries (4-pack),1,2.99,03/12/19 18:12,"497 6th St, San Francisco, CA 94016" -175648,Apple Airpods Headphones,1,150,03/04/19 15:56,"751 Dogwood St, San Francisco, CA 94016" -175649,Apple Airpods Headphones,1,150,03/15/19 10:49,"404 Madison St, New York City, NY 10001" -175650,Flatscreen TV,1,300,03/14/19 12:45,"766 Dogwood St, Dallas, TX 75001" -175651,Macbook Pro Laptop,1,1700,03/13/19 21:21,"764 South St, Dallas, TX 75001" -175652,27in 4K Gaming Monitor,1,389.99,03/28/19 09:45,"647 2nd St, Dallas, TX 75001" -175653,Wired Headphones,1,11.99,03/19/19 16:02,"462 11th St, San Francisco, CA 94016" -175654,Wired Headphones,3,11.99,03/03/19 19:37,"147 Hill St, Atlanta, GA 30301" -175655,AAA Batteries (4-pack),2,2.99,03/12/19 10:16,"319 Dogwood St, San Francisco, CA 94016" -175656,Apple Airpods Headphones,1,150,03/03/19 23:05,"885 11th St, Austin, TX 73301" -175657,34in Ultrawide Monitor,1,379.99,03/26/19 21:09,"878 Ridge St, Los Angeles, CA 90001" -175658,AAA Batteries (4-pack),1,2.99,03/02/19 22:34,"142 West St, Boston, MA 02215" -175659,Flatscreen TV,1,300,03/10/19 18:58,"505 Hickory St, New York City, NY 10001" -175660,ThinkPad Laptop,1,999.99,03/01/19 09:01,"127 Main St, Boston, MA 02215" -175661,Apple Airpods Headphones,1,150,03/22/19 18:46,"850 Maple St, Austin, TX 73301" -175662,27in FHD Monitor,1,149.99,03/18/19 23:15,"663 1st St, Seattle, WA 98101" -175663,USB-C Charging Cable,1,11.95,03/12/19 13:28,"404 1st St, San Francisco, CA 94016" -175664,34in Ultrawide Monitor,1,379.99,03/27/19 18:33,"76 1st St, Los Angeles, CA 90001" -175665,20in Monitor,1,109.99,03/20/19 18:38,"895 9th St, New York City, NY 10001" -175666,USB-C Charging Cable,1,11.95,03/24/19 09:55,"47 13th St, Boston, MA 02215" -175667,Lightning Charging Cable,1,14.95,03/25/19 08:20,"605 Spruce St, Dallas, TX 75001" -175668,Apple Airpods Headphones,1,150,03/14/19 16:07,"50 Hickory St, Boston, MA 02215" -175669,AAA Batteries (4-pack),2,2.99,03/27/19 20:33,"885 Lakeview St, Seattle, WA 98101" -175670,Google Phone,1,600,03/29/19 15:23,"325 2nd St, New York City, NY 10001" -175671,AAA Batteries (4-pack),2,2.99,03/12/19 08:18,"407 5th St, San Francisco, CA 94016" -175672,AAA Batteries (4-pack),2,2.99,03/14/19 14:57,"942 6th St, New York City, NY 10001" -175673,ThinkPad Laptop,1,999.99,03/06/19 17:07,"537 Lincoln St, Boston, MA 02215" -175673,Apple Airpods Headphones,1,150,03/06/19 17:07,"537 Lincoln St, Boston, MA 02215" -175674,Bose SoundSport Headphones,1,99.99,03/30/19 23:26,"789 North St, Seattle, WA 98101" -175675,USB-C Charging Cable,1,11.95,03/30/19 07:11,"74 10th St, Los Angeles, CA 90001" -175676,Wired Headphones,1,11.99,03/05/19 12:16,"997 9th St, Seattle, WA 98101" -175677,Lightning Charging Cable,1,14.95,03/19/19 10:50,"549 12th St, Los Angeles, CA 90001" -175678,AA Batteries (4-pack),1,3.84,03/01/19 12:15,"686 Maple St, Los Angeles, CA 90001" -175679,27in FHD Monitor,1,149.99,03/04/19 15:04,"651 North St, Atlanta, GA 30301" -175680,AA Batteries (4-pack),1,3.84,03/17/19 15:37,"923 Adams St, New York City, NY 10001" -175681,Google Phone,1,600,03/29/19 23:08,"867 Jefferson St, Dallas, TX 75001" -175681,USB-C Charging Cable,1,11.95,03/29/19 23:08,"867 Jefferson St, Dallas, TX 75001" -175682,AAA Batteries (4-pack),1,2.99,03/30/19 20:44,"931 Madison St, Los Angeles, CA 90001" -175683,USB-C Charging Cable,1,11.95,03/07/19 20:54,"108 Spruce St, New York City, NY 10001" -175684,USB-C Charging Cable,1,11.95,03/25/19 00:17,"14 9th St, Boston, MA 02215" -175685,AAA Batteries (4-pack),5,2.99,03/09/19 04:33,"977 Maple St, San Francisco, CA 94016" -175686,AAA Batteries (4-pack),1,2.99,03/16/19 18:11,"607 12th St, Los Angeles, CA 90001" -175687,Bose SoundSport Headphones,1,99.99,03/30/19 16:47,"285 Jefferson St, Los Angeles, CA 90001" -175688,AAA Batteries (4-pack),2,2.99,03/07/19 08:16,"335 Main St, Seattle, WA 98101" -175689,Lightning Charging Cable,1,14.95,03/29/19 19:23,"38 Lincoln St, Boston, MA 02215" -175690,USB-C Charging Cable,1,11.95,03/04/19 20:30,"275 Dogwood St, Los Angeles, CA 90001" -175691,Apple Airpods Headphones,1,150,03/02/19 16:22,"797 13th St, Los Angeles, CA 90001" -175692,AAA Batteries (4-pack),1,2.99,03/26/19 16:35,"935 Ridge St, New York City, NY 10001" -175693,Apple Airpods Headphones,1,150,03/27/19 15:03,"915 Ridge St, Atlanta, GA 30301" -175694,Macbook Pro Laptop,1,1700,03/28/19 11:22,"882 1st St, San Francisco, CA 94016" -175695,AAA Batteries (4-pack),2,2.99,03/12/19 20:14,"503 Madison St, Boston, MA 02215" -175696,Vareebadd Phone,1,400,03/16/19 22:55,"561 6th St, San Francisco, CA 94016" -175697,Apple Airpods Headphones,1,150,03/25/19 13:11,"939 Adams St, New York City, NY 10001" -175698,Bose SoundSport Headphones,1,99.99,03/03/19 21:51,"658 Hickory St, New York City, NY 10001" -175699,AAA Batteries (4-pack),2,2.99,03/30/19 19:16,"967 Spruce St, Boston, MA 02215" -175700,Wired Headphones,1,11.99,03/31/19 03:36,"848 Ridge St, Atlanta, GA 30301" -175701,USB-C Charging Cable,1,11.95,03/26/19 20:50,"522 South St, Dallas, TX 75001" -175702,USB-C Charging Cable,1,11.95,03/02/19 22:05,"97 Madison St, San Francisco, CA 94016" -175703,Lightning Charging Cable,1,14.95,03/04/19 10:34,"970 Main St, Boston, MA 02215" -175704,27in FHD Monitor,1,149.99,03/07/19 08:29,"206 4th St, Seattle, WA 98101" -175705,Bose SoundSport Headphones,1,99.99,03/27/19 23:09,"355 Center St, Austin, TX 73301" -175706,AAA Batteries (4-pack),1,2.99,03/27/19 11:41,"300 Main St, San Francisco, CA 94016" -175707,Bose SoundSport Headphones,1,99.99,03/30/19 15:20,"626 Meadow St, Seattle, WA 98101" -175708,AA Batteries (4-pack),1,3.84,03/21/19 11:36,"859 2nd St, Portland, OR 97035" -175709,USB-C Charging Cable,1,11.95,03/30/19 11:22,"486 1st St, San Francisco, CA 94016" -175710,Apple Airpods Headphones,1,150,03/24/19 10:58,"810 12th St, Los Angeles, CA 90001" -175711,34in Ultrawide Monitor,1,379.99,03/02/19 11:19,"222 Wilson St, New York City, NY 10001" -175712,USB-C Charging Cable,1,11.95,03/29/19 19:36,"321 West St, Boston, MA 02215" -175713,Lightning Charging Cable,1,14.95,03/22/19 23:12,"3 Meadow St, Atlanta, GA 30301" -175714,USB-C Charging Cable,1,11.95,03/18/19 10:58,"460 Church St, Los Angeles, CA 90001" -175715,USB-C Charging Cable,1,11.95,03/16/19 12:55,"10 West St, Boston, MA 02215" -175716,Lightning Charging Cable,1,14.95,03/10/19 09:06,"469 12th St, San Francisco, CA 94016" -175717,Vareebadd Phone,1,400,03/02/19 18:20,"123 Washington St, Boston, MA 02215" -175718,27in FHD Monitor,1,149.99,03/13/19 19:17,"439 Madison St, San Francisco, CA 94016" -175719,27in FHD Monitor,1,149.99,03/29/19 19:07,"969 1st St, Atlanta, GA 30301" -175720,USB-C Charging Cable,1,11.95,03/15/19 16:04,"542 1st St, Los Angeles, CA 90001" -175721,Lightning Charging Cable,1,14.95,03/15/19 11:43,"443 Lakeview St, Los Angeles, CA 90001" -175722,Lightning Charging Cable,1,14.95,03/05/19 12:22,"168 Park St, New York City, NY 10001" -175723,Apple Airpods Headphones,1,150,03/21/19 17:06,"633 Hill St, Dallas, TX 75001" -175724,34in Ultrawide Monitor,1,379.99,03/10/19 13:50,"638 Park St, San Francisco, CA 94016" -175725,Google Phone,1,600,03/30/19 20:21,"217 4th St, Atlanta, GA 30301" -175726,34in Ultrawide Monitor,1,379.99,03/14/19 09:58,"625 River St, Dallas, TX 75001" -175727,AA Batteries (4-pack),2,3.84,03/03/19 19:33,"451 Cherry St, Austin, TX 73301" -175728,AAA Batteries (4-pack),2,2.99,03/20/19 22:01,"158 12th St, Los Angeles, CA 90001" -175729,Lightning Charging Cable,1,14.95,03/26/19 11:01,"935 6th St, San Francisco, CA 94016" -175730,AA Batteries (4-pack),1,3.84,03/03/19 21:27,"658 Lake St, Los Angeles, CA 90001" -175731,Bose SoundSport Headphones,1,99.99,03/20/19 15:18,"463 Highland St, Atlanta, GA 30301" -175732,Macbook Pro Laptop,1,1700,03/08/19 21:22,"741 Washington St, New York City, NY 10001" -175733,Lightning Charging Cable,1,14.95,03/01/19 11:26,"711 Cherry St, Los Angeles, CA 90001" -175734,Flatscreen TV,1,300,03/15/19 11:48,"727 Forest St, Atlanta, GA 30301" -175735,AA Batteries (4-pack),1,3.84,03/03/19 19:56,"85 2nd St, Seattle, WA 98101" -175736,ThinkPad Laptop,1,999.99,03/08/19 09:39,"396 1st St, Portland, OR 97035" -175737,Lightning Charging Cable,1,14.95,03/13/19 11:58,"906 Forest St, Atlanta, GA 30301" -175737,AAA Batteries (4-pack),1,2.99,03/13/19 11:58,"906 Forest St, Atlanta, GA 30301" -175738,Wired Headphones,1,11.99,03/11/19 15:15,"722 North St, New York City, NY 10001" -175739,Bose SoundSport Headphones,1,99.99,03/08/19 17:48,"692 Meadow St, San Francisco, CA 94016" -175740,AA Batteries (4-pack),1,3.84,03/25/19 16:01,"427 Lincoln St, Los Angeles, CA 90001" -175741,Bose SoundSport Headphones,1,99.99,03/09/19 17:23,"973 9th St, Boston, MA 02215" -175742,34in Ultrawide Monitor,1,379.99,03/20/19 17:14,"281 Adams St, Los Angeles, CA 90001" -175743,Apple Airpods Headphones,1,150,03/12/19 21:45,"383 Adams St, Seattle, WA 98101" -175744,AA Batteries (4-pack),1,3.84,03/03/19 17:07,"407 Ridge St, Seattle, WA 98101" -175745,Bose SoundSport Headphones,1,99.99,03/21/19 01:48,"63 Ridge St, Los Angeles, CA 90001" -175746,Lightning Charging Cable,1,14.95,03/05/19 20:27,"344 Hickory St, Austin, TX 73301" -175747,34in Ultrawide Monitor,1,379.99,03/12/19 19:27,"62 Hill St, Boston, MA 02215" -175748,Apple Airpods Headphones,1,150,03/12/19 21:55,"322 Lincoln St, Austin, TX 73301" -175749,USB-C Charging Cable,1,11.95,03/12/19 21:27,"314 1st St, Portland, OR 97035" -175750,USB-C Charging Cable,1,11.95,03/21/19 21:54,"402 Walnut St, San Francisco, CA 94016" -175751,USB-C Charging Cable,1,11.95,03/08/19 17:09,"312 Adams St, Atlanta, GA 30301" -175752,20in Monitor,1,109.99,03/23/19 13:33,"132 North St, Seattle, WA 98101" -175753,AAA Batteries (4-pack),3,2.99,03/18/19 22:17,"728 Jackson St, Boston, MA 02215" -,,,,, -175754,USB-C Charging Cable,1,11.95,03/13/19 22:30,"753 Madison St, Dallas, TX 75001" -175755,USB-C Charging Cable,1,11.95,03/16/19 12:11,"520 8th St, Boston, MA 02215" -175756,AA Batteries (4-pack),1,3.84,03/07/19 16:26,"124 8th St, Portland, ME 04101" -175757,Lightning Charging Cable,1,14.95,03/03/19 12:27,"400 Willow St, San Francisco, CA 94016" -175758,Lightning Charging Cable,2,14.95,03/05/19 13:21,"267 4th St, San Francisco, CA 94016" -175759,20in Monitor,1,109.99,03/11/19 22:59,"800 Jefferson St, New York City, NY 10001" -175760,AAA Batteries (4-pack),1,2.99,03/31/19 17:37,"70 Church St, Portland, OR 97035" -175761,iPhone,1,700,03/13/19 05:25,"356 North St, Portland, OR 97035" -175761,Wired Headphones,1,11.99,03/13/19 05:25,"356 North St, Portland, OR 97035" -175762,USB-C Charging Cable,1,11.95,03/01/19 20:57,"475 Johnson St, Austin, TX 73301" -175763,20in Monitor,1,109.99,03/05/19 14:19,"918 Hill St, Dallas, TX 75001" -175764,Apple Airpods Headphones,1,150,03/11/19 13:41,"485 West St, Portland, OR 97035" -175765,Apple Airpods Headphones,1,150,03/09/19 08:20,"537 Wilson St, Boston, MA 02215" -175766,Apple Airpods Headphones,1,150,03/22/19 11:58,"832 Ridge St, Seattle, WA 98101" -175767,Lightning Charging Cable,1,14.95,03/09/19 22:06,"489 Sunset St, Seattle, WA 98101" -175768,Lightning Charging Cable,1,14.95,03/05/19 08:30,"114 4th St, Boston, MA 02215" -175769,Bose SoundSport Headphones,1,99.99,04/01/19 02:22,"974 13th St, New York City, NY 10001" -175770,20in Monitor,1,109.99,03/04/19 22:57,"146 13th St, Portland, OR 97035" -175771,AAA Batteries (4-pack),2,2.99,03/14/19 09:48,"420 Chestnut St, San Francisco, CA 94016" -175772,AA Batteries (4-pack),1,3.84,03/03/19 19:27,"360 Maple St, New York City, NY 10001" -175773,Lightning Charging Cable,2,14.95,03/11/19 13:35,"107 6th St, Los Angeles, CA 90001" -175774,USB-C Charging Cable,1,11.95,03/22/19 17:29,"656 Pine St, New York City, NY 10001" -175775,Bose SoundSport Headphones,1,99.99,03/17/19 15:06,"492 Walnut St, Boston, MA 02215" -175776,Bose SoundSport Headphones,1,99.99,03/13/19 12:32,"232 Main St, Seattle, WA 98101" -175777,AA Batteries (4-pack),1,3.84,03/05/19 10:30,"416 Hill St, Los Angeles, CA 90001" -175778,Lightning Charging Cable,1,14.95,03/14/19 22:10,"189 Jefferson St, Portland, OR 97035" -175779,AAA Batteries (4-pack),1,2.99,03/17/19 19:00,"100 Elm St, Los Angeles, CA 90001" -175780,Macbook Pro Laptop,1,1700,03/31/19 11:47,"790 Ridge St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -175781,Apple Airpods Headphones,1,150,03/02/19 11:18,"958 Center St, Los Angeles, CA 90001" -175782,Apple Airpods Headphones,1,150,03/23/19 08:01,"627 1st St, New York City, NY 10001" -175783,AA Batteries (4-pack),1,3.84,03/01/19 18:34,"658 5th St, San Francisco, CA 94016" -175784,LG Washing Machine,1,600.0,03/31/19 16:27,"293 14th St, San Francisco, CA 94016" -175785,AAA Batteries (4-pack),1,2.99,03/27/19 15:04,"993 9th St, Boston, MA 02215" -175786,20in Monitor,1,109.99,03/01/19 18:52,"886 South St, San Francisco, CA 94016" -175787,Bose SoundSport Headphones,1,99.99,03/15/19 13:45,"140 Lake St, San Francisco, CA 94016" -175788,Wired Headphones,1,11.99,03/27/19 10:57,"278 Dogwood St, Austin, TX 73301" -175789,Apple Airpods Headphones,1,150,03/06/19 16:16,"631 Madison St, Boston, MA 02215" -175790,AA Batteries (4-pack),1,3.84,03/10/19 12:31,"418 14th St, San Francisco, CA 94016" -175791,Lightning Charging Cable,1,14.95,03/10/19 22:23,"432 Lake St, Seattle, WA 98101" -175792,AAA Batteries (4-pack),1,2.99,03/29/19 16:26,"724 Johnson St, San Francisco, CA 94016" -175793,Wired Headphones,2,11.99,03/19/19 22:53,"801 12th St, Seattle, WA 98101" -175794,Google Phone,1,600,03/01/19 20:28,"534 Highland St, Seattle, WA 98101" -175794,USB-C Charging Cable,1,11.95,03/01/19 20:28,"534 Highland St, Seattle, WA 98101" -175795,AAA Batteries (4-pack),1,2.99,03/20/19 09:21,"996 5th St, Boston, MA 02215" -175796,Lightning Charging Cable,1,14.95,03/19/19 16:52,"510 Jefferson St, Dallas, TX 75001" -175797,ThinkPad Laptop,1,999.99,03/02/19 02:44,"529 Washington St, Atlanta, GA 30301" -175798,ThinkPad Laptop,1,999.99,03/31/19 22:20,"9 Hickory St, San Francisco, CA 94016" -175799,AA Batteries (4-pack),1,3.84,03/25/19 23:48,"658 Forest St, San Francisco, CA 94016" -175800,Google Phone,1,600,03/16/19 06:29,"126 7th St, Boston, MA 02215" -175800,Bose SoundSport Headphones,1,99.99,03/16/19 06:29,"126 7th St, Boston, MA 02215" -175801,ThinkPad Laptop,1,999.99,03/10/19 19:07,"99 Lake St, Boston, MA 02215" -175802,Apple Airpods Headphones,1,150,03/16/19 18:56,"721 South St, New York City, NY 10001" -175803,Wired Headphones,1,11.99,03/27/19 07:35,"208 Lincoln St, Austin, TX 73301" -175804,27in 4K Gaming Monitor,1,389.99,03/05/19 17:46,"673 Main St, New York City, NY 10001" -175805,Wired Headphones,1,11.99,03/14/19 18:06,"337 River St, New York City, NY 10001" -175806,Macbook Pro Laptop,1,1700,03/27/19 17:37,"7 Johnson St, New York City, NY 10001" -175807,Vareebadd Phone,1,400,03/16/19 15:08,"5 11th St, Atlanta, GA 30301" -175807,USB-C Charging Cable,1,11.95,03/16/19 15:08,"5 11th St, Atlanta, GA 30301" -175808,USB-C Charging Cable,1,11.95,03/04/19 21:39,"764 Maple St, Atlanta, GA 30301" -175809,Flatscreen TV,1,300,03/21/19 19:22,"120 8th St, San Francisco, CA 94016" -175810,Wired Headphones,1,11.99,03/17/19 17:49,"586 Lake St, San Francisco, CA 94016" -175811,AA Batteries (4-pack),1,3.84,03/05/19 17:41,"500 12th St, Seattle, WA 98101" -175812,Apple Airpods Headphones,1,150,03/27/19 14:01,"967 13th St, New York City, NY 10001" -175813,20in Monitor,1,109.99,03/22/19 14:24,"433 West St, San Francisco, CA 94016" -175814,USB-C Charging Cable,1,11.95,03/04/19 12:25,"389 2nd St, Boston, MA 02215" -175815,Wired Headphones,1,11.99,03/19/19 16:37,"498 14th St, Boston, MA 02215" -175816,ThinkPad Laptop,1,999.99,03/28/19 12:20,"676 Spruce St, San Francisco, CA 94016" -175817,Lightning Charging Cable,1,14.95,03/12/19 19:16,"123 Cherry St, Seattle, WA 98101" -175818,Apple Airpods Headphones,1,150,03/07/19 10:59,"884 Chestnut St, San Francisco, CA 94016" -175819,LG Washing Machine,1,600.0,03/02/19 16:10,"918 13th St, Dallas, TX 75001" -175820,Flatscreen TV,1,300,03/02/19 17:28,"895 11th St, Seattle, WA 98101" -175821,Bose SoundSport Headphones,1,99.99,03/31/19 20:03,"525 Main St, New York City, NY 10001" -175822,Bose SoundSport Headphones,1,99.99,03/30/19 18:45,"514 Cherry St, Dallas, TX 75001" -175823,27in 4K Gaming Monitor,1,389.99,03/02/19 13:04,"906 Chestnut St, Los Angeles, CA 90001" -175824,Macbook Pro Laptop,1,1700,03/05/19 09:55,"277 Hill St, San Francisco, CA 94016" -175825,Apple Airpods Headphones,1,150,03/06/19 16:20,"74 Church St, New York City, NY 10001" -175826,Apple Airpods Headphones,1,150,03/07/19 11:12,"775 Madison St, Boston, MA 02215" -175827,Apple Airpods Headphones,1,150,03/31/19 08:17,"499 Willow St, Boston, MA 02215" -175828,USB-C Charging Cable,1,11.95,03/14/19 16:11,"754 Jefferson St, Los Angeles, CA 90001" -175829,Bose SoundSport Headphones,1,99.99,03/12/19 11:30,"135 South St, San Francisco, CA 94016" -175830,AAA Batteries (4-pack),1,2.99,03/20/19 11:34,"161 4th St, New York City, NY 10001" -175831,Apple Airpods Headphones,1,150,03/03/19 20:03,"975 Center St, New York City, NY 10001" -175832,iPhone,1,700,03/26/19 16:59,"626 13th St, Dallas, TX 75001" -175833,Flatscreen TV,1,300,03/11/19 21:14,"727 6th St, New York City, NY 10001" -175833,Wired Headphones,1,11.99,03/11/19 21:14,"727 6th St, New York City, NY 10001" -175834,Lightning Charging Cable,1,14.95,03/09/19 20:57,"547 Walnut St, San Francisco, CA 94016" -175835,Lightning Charging Cable,1,14.95,03/16/19 13:36,"257 Jackson St, New York City, NY 10001" -175836,AAA Batteries (4-pack),2,2.99,03/28/19 16:55,"357 Madison St, Boston, MA 02215" -175837,Google Phone,1,600,03/30/19 18:23,"326 7th St, San Francisco, CA 94016" -175838,AAA Batteries (4-pack),3,2.99,03/16/19 13:25,"383 Main St, Los Angeles, CA 90001" -175839,Flatscreen TV,1,300,03/01/19 16:16,"819 Highland St, New York City, NY 10001" -175840,27in FHD Monitor,1,149.99,03/24/19 04:31,"603 West St, New York City, NY 10001" -175841,Bose SoundSport Headphones,1,99.99,03/07/19 20:20,"990 Main St, Austin, TX 73301" -175842,Lightning Charging Cable,1,14.95,03/02/19 17:18,"466 Hill St, Los Angeles, CA 90001" -175843,AAA Batteries (4-pack),1,2.99,03/23/19 23:39,"404 5th St, Portland, OR 97035" -175844,USB-C Charging Cable,1,11.95,03/07/19 05:54,"683 4th St, San Francisco, CA 94016" -175845,AA Batteries (4-pack),1,3.84,03/14/19 19:21,"141 11th St, Seattle, WA 98101" -175846,AA Batteries (4-pack),2,3.84,03/22/19 19:14,"794 Ridge St, San Francisco, CA 94016" -175847,Lightning Charging Cable,1,14.95,03/31/19 10:16,"768 Wilson St, New York City, NY 10001" -175848,Wired Headphones,1,11.99,03/12/19 11:46,"475 1st St, Atlanta, GA 30301" -175849,Wired Headphones,1,11.99,03/17/19 22:24,"103 Jefferson St, Dallas, TX 75001" -175850,27in FHD Monitor,1,149.99,03/15/19 20:17,"1 Dogwood St, New York City, NY 10001" -175851,27in FHD Monitor,1,149.99,03/21/19 16:04,"767 Washington St, San Francisco, CA 94016" -175852,ThinkPad Laptop,1,999.99,03/11/19 00:59,"978 13th St, Los Angeles, CA 90001" -175853,Google Phone,1,600,03/23/19 11:17,"775 Wilson St, Atlanta, GA 30301" -175854,AA Batteries (4-pack),1,3.84,03/03/19 14:00,"745 Lincoln St, Seattle, WA 98101" -175855,27in FHD Monitor,1,149.99,03/21/19 21:12,"629 Cherry St, New York City, NY 10001" -175856,Google Phone,1,600,03/12/19 16:52,"734 11th St, Los Angeles, CA 90001" -175857,AA Batteries (4-pack),1,3.84,03/28/19 23:54,"805 Center St, Austin, TX 73301" -175858,Apple Airpods Headphones,1,150,03/23/19 17:53,"977 Jefferson St, Seattle, WA 98101" -175859,Apple Airpods Headphones,1,150,03/14/19 21:46,"939 Hickory St, Seattle, WA 98101" -175860,Vareebadd Phone,1,400,03/06/19 22:20,"773 6th St, San Francisco, CA 94016" -175861,Wired Headphones,1,11.99,03/22/19 16:12,"595 River St, Atlanta, GA 30301" -175862,Wired Headphones,1,11.99,03/14/19 10:54,"928 Cherry St, Atlanta, GA 30301" -175863,iPhone,1,700,03/09/19 22:53,"842 9th St, Portland, OR 97035" -175864,AAA Batteries (4-pack),3,2.99,03/23/19 23:42,"320 Park St, Seattle, WA 98101" -175865,Bose SoundSport Headphones,1,99.99,03/16/19 17:24,"855 10th St, New York City, NY 10001" -175866,iPhone,1,700,03/26/19 18:07,"133 Adams St, New York City, NY 10001" -175867,AA Batteries (4-pack),1,3.84,03/14/19 22:36,"360 Sunset St, Boston, MA 02215" -175868,27in 4K Gaming Monitor,1,389.99,03/11/19 21:19,"840 Lakeview St, Los Angeles, CA 90001" -175868,Bose SoundSport Headphones,1,99.99,03/11/19 21:19,"840 Lakeview St, Los Angeles, CA 90001" -175869,27in 4K Gaming Monitor,1,389.99,03/18/19 18:44,"681 Lake St, San Francisco, CA 94016" -175870,LG Dryer,1,600.0,03/08/19 14:55,"740 Lakeview St, Seattle, WA 98101" -175871,USB-C Charging Cable,1,11.95,03/30/19 19:46,"19 Hickory St, Dallas, TX 75001" -175872,iPhone,1,700,03/21/19 08:30,"36 Park St, Los Angeles, CA 90001" -175873,Wired Headphones,1,11.99,03/03/19 07:46,"789 Meadow St, New York City, NY 10001" -175874,Wired Headphones,1,11.99,03/27/19 17:18,"479 West St, Los Angeles, CA 90001" -175875,Apple Airpods Headphones,1,150,03/13/19 13:28,"630 4th St, Los Angeles, CA 90001" -175876,Lightning Charging Cable,1,14.95,03/25/19 13:54,"24 11th St, Dallas, TX 75001" -175877,AAA Batteries (4-pack),1,2.99,03/03/19 14:51,"719 12th St, Los Angeles, CA 90001" -175878,AAA Batteries (4-pack),3,2.99,03/15/19 18:49,"8 Lincoln St, Portland, OR 97035" -175879,Macbook Pro Laptop,1,1700,03/18/19 02:12,"759 Cedar St, Dallas, TX 75001" -175880,Bose SoundSport Headphones,1,99.99,03/19/19 05:36,"507 13th St, Portland, OR 97035" -175881,Flatscreen TV,1,300,03/07/19 08:23,"68 Main St, San Francisco, CA 94016" -175882,Lightning Charging Cable,1,14.95,03/28/19 18:58,"555 2nd St, San Francisco, CA 94016" -175883,27in FHD Monitor,1,149.99,03/16/19 17:40,"818 12th St, Boston, MA 02215" -175884,Lightning Charging Cable,1,14.95,03/15/19 13:52,"873 Maple St, New York City, NY 10001" -175885,Flatscreen TV,1,300,03/11/19 08:49,"259 7th St, Atlanta, GA 30301" -175886,Macbook Pro Laptop,1,1700,03/21/19 13:20,"855 1st St, San Francisco, CA 94016" -175887,Lightning Charging Cable,1,14.95,03/11/19 22:10,"559 Dogwood St, Portland, ME 04101" -175888,AA Batteries (4-pack),1,3.84,03/22/19 18:50,"652 Center St, Los Angeles, CA 90001" -175889,Lightning Charging Cable,1,14.95,03/01/19 15:14,"516 Walnut St, New York City, NY 10001" -175890,ThinkPad Laptop,1,999.99,03/10/19 18:18,"140 Madison St, New York City, NY 10001" -175891,USB-C Charging Cable,1,11.95,03/28/19 11:25,"191 South St, Seattle, WA 98101" -175892,Bose SoundSport Headphones,1,99.99,03/12/19 06:16,"173 4th St, Dallas, TX 75001" -175893,AAA Batteries (4-pack),1,2.99,03/17/19 10:27,"333 Hill St, Seattle, WA 98101" -175894,ThinkPad Laptop,1,999.99,03/17/19 23:34,"849 12th St, Boston, MA 02215" -175895,Wired Headphones,1,11.99,03/01/19 15:14,"560 9th St, San Francisco, CA 94016" -175896,Lightning Charging Cable,1,14.95,03/26/19 16:57,"182 2nd St, San Francisco, CA 94016" -175897,27in FHD Monitor,1,149.99,03/06/19 21:38,"448 Pine St, New York City, NY 10001" -175898,34in Ultrawide Monitor,1,379.99,03/13/19 14:01,"176 Church St, Boston, MA 02215" -175899,27in FHD Monitor,1,149.99,03/31/19 06:23,"293 9th St, San Francisco, CA 94016" -175900,Lightning Charging Cable,1,14.95,03/13/19 09:20,"478 Ridge St, New York City, NY 10001" -175901,AAA Batteries (4-pack),1,2.99,03/20/19 21:09,"766 13th St, Los Angeles, CA 90001" -175902,Apple Airpods Headphones,1,150,03/07/19 22:06,"13 Lake St, Atlanta, GA 30301" -175903,AA Batteries (4-pack),2,3.84,03/23/19 14:50,"870 Dogwood St, Atlanta, GA 30301" -175904,Apple Airpods Headphones,1,150,03/08/19 06:40,"479 2nd St, Los Angeles, CA 90001" -175905,ThinkPad Laptop,1,999.99,03/02/19 18:21,"678 Johnson St, Boston, MA 02215" -175906,34in Ultrawide Monitor,1,379.99,03/12/19 15:39,"79 1st St, Boston, MA 02215" -175907,Wired Headphones,1,11.99,03/16/19 00:11,"573 Hickory St, Los Angeles, CA 90001" -175908,Bose SoundSport Headphones,1,99.99,03/27/19 07:21,"797 11th St, Dallas, TX 75001" -175909,AA Batteries (4-pack),1,3.84,03/11/19 11:56,"951 South St, Dallas, TX 75001" -175910,27in 4K Gaming Monitor,1,389.99,03/30/19 13:40,"205 Meadow St, Boston, MA 02215" -175911,Wired Headphones,2,11.99,03/25/19 16:15,"683 6th St, Austin, TX 73301" -175912,USB-C Charging Cable,1,11.95,03/18/19 18:25,"957 5th St, San Francisco, CA 94016" -175913,Lightning Charging Cable,1,14.95,03/13/19 01:04,"525 9th St, Los Angeles, CA 90001" -175914,Wired Headphones,1,11.99,03/20/19 14:58,"195 Willow St, Atlanta, GA 30301" -175915,Bose SoundSport Headphones,1,99.99,03/19/19 13:09,"145 River St, San Francisco, CA 94016" -175916,Bose SoundSport Headphones,1,99.99,03/28/19 15:34,"273 Main St, Portland, OR 97035" -175916,AA Batteries (4-pack),1,3.84,03/28/19 15:34,"273 Main St, Portland, OR 97035" -175917,Google Phone,1,600,03/21/19 19:49,"532 7th St, San Francisco, CA 94016" -175917,Wired Headphones,1,11.99,03/21/19 19:49,"532 7th St, San Francisco, CA 94016" -175918,Apple Airpods Headphones,1,150,03/28/19 06:02,"421 Hill St, Austin, TX 73301" -175919,USB-C Charging Cable,1,11.95,03/15/19 16:07,"275 11th St, Austin, TX 73301" -175920,Bose SoundSport Headphones,1,99.99,03/26/19 13:21,"498 Sunset St, Seattle, WA 98101" -175921,Apple Airpods Headphones,1,150,03/11/19 19:40,"213 Spruce St, Los Angeles, CA 90001" -175922,Macbook Pro Laptop,1,1700,03/12/19 08:54,"467 14th St, San Francisco, CA 94016" -175923,34in Ultrawide Monitor,1,379.99,03/18/19 21:48,"520 1st St, Los Angeles, CA 90001" -175924,Lightning Charging Cable,1,14.95,03/27/19 09:24,"850 Meadow St, San Francisco, CA 94016" -175925,AAA Batteries (4-pack),1,2.99,03/03/19 14:10,"654 Maple St, Los Angeles, CA 90001" -175926,Wired Headphones,1,11.99,03/22/19 20:15,"340 Maple St, New York City, NY 10001" -175927,Wired Headphones,1,11.99,03/24/19 15:43,"598 Cedar St, San Francisco, CA 94016" -175928,Flatscreen TV,1,300,03/24/19 15:11,"108 Maple St, Boston, MA 02215" -175929,USB-C Charging Cable,1,11.95,03/07/19 14:42,"867 Church St, Dallas, TX 75001" -175930,27in FHD Monitor,1,149.99,03/18/19 21:23,"685 4th St, New York City, NY 10001" -175931,27in FHD Monitor,1,149.99,03/29/19 21:32,"757 14th St, Austin, TX 73301" -175932,Wired Headphones,1,11.99,03/13/19 11:52,"604 Walnut St, San Francisco, CA 94016" -175933,iPhone,1,700,03/17/19 15:23,"653 Meadow St, Portland, OR 97035" -175933,27in 4K Gaming Monitor,1,389.99,03/17/19 15:23,"653 Meadow St, Portland, OR 97035" -175934,AAA Batteries (4-pack),2,2.99,03/18/19 19:26,"120 5th St, San Francisco, CA 94016" -175935,Bose SoundSport Headphones,1,99.99,03/12/19 12:15,"410 Spruce St, Los Angeles, CA 90001" -175936,Bose SoundSport Headphones,1,99.99,03/08/19 16:28,"378 Spruce St, San Francisco, CA 94016" -175937,AAA Batteries (4-pack),2,2.99,03/30/19 22:22,"786 Elm St, Los Angeles, CA 90001" -175938,Vareebadd Phone,1,400,03/03/19 13:44,"962 South St, Los Angeles, CA 90001" -175939,27in 4K Gaming Monitor,1,389.99,03/14/19 11:20,"61 Jackson St, Los Angeles, CA 90001" -175940,Wired Headphones,1,11.99,03/04/19 10:54,"951 Meadow St, Seattle, WA 98101" -175941,Google Phone,1,600,03/26/19 18:53,"44 Highland St, Dallas, TX 75001" -175942,Wired Headphones,1,11.99,03/09/19 16:07,"740 Elm St, Seattle, WA 98101" -175943,iPhone,1,700,03/25/19 19:34,"904 Sunset St, San Francisco, CA 94016" -175944,Vareebadd Phone,1,400,03/18/19 11:00,"209 Johnson St, Austin, TX 73301" -175945,Lightning Charging Cable,2,14.95,03/11/19 23:49,"611 11th St, New York City, NY 10001" -175946,Lightning Charging Cable,1,14.95,03/28/19 11:16,"678 4th St, San Francisco, CA 94016" -175947,Flatscreen TV,1,300,03/19/19 11:52,"250 Dogwood St, San Francisco, CA 94016" -175948,Apple Airpods Headphones,1,150,03/23/19 14:50,"298 Hickory St, Boston, MA 02215" -175949,27in FHD Monitor,1,149.99,03/03/19 16:04,"547 Meadow St, San Francisco, CA 94016" -175950,27in FHD Monitor,1,149.99,03/09/19 20:56,"677 Madison St, Boston, MA 02215" -175951,LG Dryer,1,600.0,04/01/19 00:04,"469 Walnut St, Dallas, TX 75001" -175952,27in 4K Gaming Monitor,1,389.99,03/21/19 19:28,"434 Jackson St, Austin, TX 73301" -175953,Lightning Charging Cable,1,14.95,03/27/19 02:42,"247 Highland St, Seattle, WA 98101" -175954,AA Batteries (4-pack),1,3.84,03/20/19 11:40,"959 Hill St, Atlanta, GA 30301" -175955,USB-C Charging Cable,1,11.95,03/30/19 22:59,"101 7th St, San Francisco, CA 94016" -175956,AA Batteries (4-pack),2,3.84,03/11/19 22:07,"856 Adams St, Atlanta, GA 30301" -175957,USB-C Charging Cable,1,11.95,03/16/19 18:17,"286 11th St, Dallas, TX 75001" -175958,Lightning Charging Cable,1,14.95,03/18/19 11:40,"492 Chestnut St, San Francisco, CA 94016" -175959,Lightning Charging Cable,1,14.95,03/02/19 14:59,"289 7th St, New York City, NY 10001" -175960,Wired Headphones,1,11.99,03/16/19 13:46,"271 Pine St, Los Angeles, CA 90001" -175961,Google Phone,1,600,03/15/19 23:09,"936 Maple St, Dallas, TX 75001" -175962,USB-C Charging Cable,1,11.95,03/13/19 15:52,"750 Hill St, New York City, NY 10001" -175963,USB-C Charging Cable,1,11.95,03/06/19 20:42,"276 14th St, Portland, ME 04101" -175964,AA Batteries (4-pack),1,3.84,03/05/19 13:10,"861 Maple St, San Francisco, CA 94016" -175965,iPhone,1,700,03/14/19 19:18,"912 Park St, San Francisco, CA 94016" -175965,Lightning Charging Cable,1,14.95,03/14/19 19:18,"912 Park St, San Francisco, CA 94016" -175966,Wired Headphones,1,11.99,03/29/19 13:22,"269 Maple St, Austin, TX 73301" -175967,Lightning Charging Cable,1,14.95,03/06/19 10:56,"126 Lakeview St, Boston, MA 02215" -175968,Wired Headphones,1,11.99,03/17/19 11:21,"324 Adams St, Seattle, WA 98101" -175969,iPhone,1,700,03/01/19 14:30,"551 Lincoln St, New York City, NY 10001" -175970,AAA Batteries (4-pack),1,2.99,03/28/19 07:07,"47 Main St, Boston, MA 02215" -175971,USB-C Charging Cable,1,11.95,03/05/19 19:16,"713 1st St, Boston, MA 02215" -175972,Wired Headphones,1,11.99,03/23/19 23:23,"240 Park St, Boston, MA 02215" -175973,Bose SoundSport Headphones,1,99.99,03/13/19 18:03,"378 Walnut St, Atlanta, GA 30301" -175974,ThinkPad Laptop,1,999.99,03/16/19 01:37,"281 Pine St, Los Angeles, CA 90001" -175975,AA Batteries (4-pack),1,3.84,03/25/19 20:15,"175 Park St, Portland, ME 04101" -175976,Apple Airpods Headphones,1,150,03/17/19 09:15,"544 1st St, Dallas, TX 75001" -175977,USB-C Charging Cable,1,11.95,03/20/19 19:26,"94 7th St, Los Angeles, CA 90001" -175978,Bose SoundSport Headphones,1,99.99,03/06/19 22:11,"479 Johnson St, Los Angeles, CA 90001" -175979,Wired Headphones,1,11.99,03/09/19 13:45,"130 Sunset St, Portland, ME 04101" -175980,Apple Airpods Headphones,1,150,03/12/19 07:38,"418 13th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -175981,AAA Batteries (4-pack),1,2.99,03/23/19 17:56,"783 Pine St, San Francisco, CA 94016" -175982,Wired Headphones,1,11.99,03/06/19 19:41,"319 Willow St, San Francisco, CA 94016" -175983,Macbook Pro Laptop,1,1700,03/20/19 14:04,"200 Hill St, Austin, TX 73301" -175984,Lightning Charging Cable,1,14.95,03/22/19 21:53,"684 Willow St, Boston, MA 02215" -175985,Bose SoundSport Headphones,1,99.99,03/21/19 21:35,"885 Maple St, Portland, OR 97035" -175986,ThinkPad Laptop,1,999.99,03/25/19 09:55,"141 Walnut St, New York City, NY 10001" -175987,Apple Airpods Headphones,1,150,03/17/19 17:03,"208 Hill St, Atlanta, GA 30301" -175988,Lightning Charging Cable,1,14.95,03/10/19 06:18,"859 Sunset St, Austin, TX 73301" -175989,Wired Headphones,1,11.99,03/17/19 04:16,"524 7th St, Los Angeles, CA 90001" -175990,20in Monitor,1,109.99,03/10/19 14:25,"620 Willow St, San Francisco, CA 94016" -175991,AAA Batteries (4-pack),1,2.99,03/23/19 11:48,"29 Cherry St, Los Angeles, CA 90001" -175992,Apple Airpods Headphones,1,150,03/30/19 14:53,"88 Main St, New York City, NY 10001" -175993,Flatscreen TV,1,300,03/11/19 07:18,"956 Jefferson St, Austin, TX 73301" -175994,Bose SoundSport Headphones,1,99.99,03/08/19 13:13,"715 Park St, Los Angeles, CA 90001" -175995,USB-C Charging Cable,2,11.95,03/01/19 12:50,"571 10th St, Atlanta, GA 30301" -175996,AAA Batteries (4-pack),1,2.99,03/15/19 18:42,"241 Hickory St, Portland, OR 97035" -175997,Wired Headphones,2,11.99,03/07/19 18:30,"832 11th St, Boston, MA 02215" -175998,Lightning Charging Cable,1,14.95,03/01/19 12:44,"948 14th St, New York City, NY 10001" -175999,AAA Batteries (4-pack),2,2.99,03/25/19 20:50,"600 Madison St, Dallas, TX 75001" -176000,AAA Batteries (4-pack),4,2.99,03/20/19 12:48,"852 Sunset St, Los Angeles, CA 90001" -176001,USB-C Charging Cable,1,11.95,03/26/19 21:11,"257 Ridge St, San Francisco, CA 94016" -176002,Bose SoundSport Headphones,1,99.99,03/10/19 22:16,"475 Highland St, San Francisco, CA 94016" -176003,AAA Batteries (4-pack),1,2.99,03/13/19 16:18,"574 Meadow St, New York City, NY 10001" -176004,Google Phone,1,600,03/08/19 11:41,"653 Park St, Seattle, WA 98101" -176005,USB-C Charging Cable,1,11.95,03/02/19 23:36,"810 Pine St, New York City, NY 10001" -176006,LG Dryer,1,600.0,03/05/19 15:48,"988 5th St, San Francisco, CA 94016" -176007,Wired Headphones,1,11.99,03/15/19 21:03,"362 1st St, Boston, MA 02215" -176008,Macbook Pro Laptop,1,1700,03/09/19 20:05,"122 Chestnut St, Portland, OR 97035" -176009,Bose SoundSport Headphones,1,99.99,03/05/19 13:36,"80 Madison St, Dallas, TX 75001" -176010,20in Monitor,1,109.99,03/07/19 20:10,"557 Meadow St, Austin, TX 73301" -176011,AA Batteries (4-pack),1,3.84,03/31/19 15:43,"942 Highland St, Los Angeles, CA 90001" -176012,Wired Headphones,1,11.99,03/31/19 19:02,"760 River St, Boston, MA 02215" -176013,AA Batteries (4-pack),1,3.84,03/11/19 13:19,"924 5th St, Los Angeles, CA 90001" -176014,Bose SoundSport Headphones,1,99.99,03/27/19 19:44,"60 Jackson St, Austin, TX 73301" -176015,AA Batteries (4-pack),3,3.84,03/23/19 13:26,"589 8th St, Seattle, WA 98101" -176016,AA Batteries (4-pack),1,3.84,03/08/19 18:31,"659 4th St, San Francisco, CA 94016" -176017,Wired Headphones,1,11.99,03/16/19 14:19,"916 Jefferson St, Portland, OR 97035" -176018,Lightning Charging Cable,1,14.95,03/27/19 00:40,"547 Ridge St, Portland, ME 04101" -176019,USB-C Charging Cable,1,11.95,03/25/19 17:37,"387 14th St, New York City, NY 10001" -176020,AA Batteries (4-pack),1,3.84,03/24/19 19:30,"940 9th St, New York City, NY 10001" -176021,Lightning Charging Cable,1,14.95,03/26/19 11:45,"12 Maple St, San Francisco, CA 94016" -176022,Wired Headphones,1,11.99,03/04/19 14:37,"59 5th St, Seattle, WA 98101" -176023,Apple Airpods Headphones,1,150,03/17/19 14:09,"805 Lake St, San Francisco, CA 94016" -176024,AAA Batteries (4-pack),1,2.99,03/05/19 20:34,"366 14th St, San Francisco, CA 94016" -176025,AAA Batteries (4-pack),1,2.99,03/20/19 19:39,"795 13th St, Atlanta, GA 30301" -176026,Macbook Pro Laptop,1,1700,03/12/19 18:05,"503 14th St, New York City, NY 10001" -176027,AAA Batteries (4-pack),1,2.99,03/12/19 11:34,"234 Main St, Boston, MA 02215" -176028,AA Batteries (4-pack),1,3.84,03/03/19 18:08,"681 10th St, San Francisco, CA 94016" -176029,Lightning Charging Cable,1,14.95,03/04/19 13:24,"902 Meadow St, Dallas, TX 75001" -176030,AAA Batteries (4-pack),1,2.99,03/12/19 05:16,"951 Cedar St, Seattle, WA 98101" -176031,AA Batteries (4-pack),1,3.84,03/07/19 13:24,"74 1st St, Portland, ME 04101" -176032,AA Batteries (4-pack),1,3.84,03/26/19 01:34,"598 Cherry St, Seattle, WA 98101" -176033,Macbook Pro Laptop,1,1700,03/10/19 11:33,"332 South St, Los Angeles, CA 90001" -176034,27in 4K Gaming Monitor,1,389.99,03/20/19 15:05,"740 Meadow St, Austin, TX 73301" -176035,Apple Airpods Headphones,1,150,03/14/19 13:55,"401 Main St, San Francisco, CA 94016" -176036,Macbook Pro Laptop,1,1700,03/16/19 19:21,"504 11th St, Portland, OR 97035" -176037,27in 4K Gaming Monitor,1,389.99,03/26/19 21:22,"332 10th St, New York City, NY 10001" -176038,Lightning Charging Cable,1,14.95,03/18/19 10:33,"945 5th St, Atlanta, GA 30301" -176039,Macbook Pro Laptop,1,1700,03/28/19 15:20,"521 Forest St, New York City, NY 10001" -176040,Wired Headphones,1,11.99,03/06/19 13:27,"23 Ridge St, New York City, NY 10001" -176041,34in Ultrawide Monitor,1,379.99,03/16/19 23:46,"541 7th St, Dallas, TX 75001" -176042,27in FHD Monitor,1,149.99,03/09/19 22:01,"795 9th St, San Francisco, CA 94016" -176043,Google Phone,1,600,03/21/19 22:07,"795 Washington St, New York City, NY 10001" -176044,AAA Batteries (4-pack),2,2.99,03/11/19 13:25,"504 Center St, San Francisco, CA 94016" -176045,Bose SoundSport Headphones,1,99.99,03/11/19 13:07,"675 Chestnut St, Atlanta, GA 30301" -176046,Wired Headphones,1,11.99,03/16/19 16:09,"865 7th St, Boston, MA 02215" -176047,AA Batteries (4-pack),1,3.84,03/17/19 15:19,"871 Pine St, San Francisco, CA 94016" -176048,Wired Headphones,1,11.99,03/24/19 12:12,"623 5th St, Portland, ME 04101" -176049,Wired Headphones,2,11.99,03/28/19 12:24,"773 Main St, Boston, MA 02215" -176050,USB-C Charging Cable,1,11.95,03/21/19 23:03,"511 West St, New York City, NY 10001" -176051,USB-C Charging Cable,1,11.95,03/02/19 09:22,"119 Hickory St, Los Angeles, CA 90001" -176052,Macbook Pro Laptop,1,1700,03/01/19 20:25,"849 Park St, San Francisco, CA 94016" -176053,iPhone,1,700,03/18/19 13:41,"797 8th St, Boston, MA 02215" -176054,AA Batteries (4-pack),1,3.84,03/23/19 13:19,"955 9th St, San Francisco, CA 94016" -176055,Flatscreen TV,1,300,03/16/19 13:41,"943 South St, Austin, TX 73301" -176056,AA Batteries (4-pack),1,3.84,03/18/19 08:08,"406 Willow St, Boston, MA 02215" -176057,Wired Headphones,1,11.99,03/29/19 17:26,"781 4th St, Dallas, TX 75001" -176058,Bose SoundSport Headphones,2,99.99,03/17/19 16:00,"929 8th St, Los Angeles, CA 90001" -176059,Apple Airpods Headphones,1,150,03/12/19 19:22,"974 Walnut St, San Francisco, CA 94016" -176060,AA Batteries (4-pack),3,3.84,03/24/19 13:04,"893 Walnut St, New York City, NY 10001" -176060,AAA Batteries (4-pack),1,2.99,03/24/19 13:04,"893 Walnut St, New York City, NY 10001" -176061,AAA Batteries (4-pack),4,2.99,03/20/19 22:54,"985 Maple St, San Francisco, CA 94016" -176062,Apple Airpods Headphones,1,150,03/17/19 13:40,"158 Maple St, San Francisco, CA 94016" -176063,Wired Headphones,1,11.99,03/03/19 17:21,"687 Hill St, New York City, NY 10001" -176064,AA Batteries (4-pack),1,3.84,03/13/19 16:39,"198 Johnson St, Los Angeles, CA 90001" -176065,Bose SoundSport Headphones,1,99.99,03/22/19 21:57,"60 7th St, San Francisco, CA 94016" -176066,AAA Batteries (4-pack),1,2.99,03/07/19 22:45,"910 13th St, San Francisco, CA 94016" -176067,Wired Headphones,1,11.99,03/27/19 11:24,"64 Adams St, New York City, NY 10001" -176068,Macbook Pro Laptop,1,1700,03/04/19 13:28,"94 Meadow St, New York City, NY 10001" -176069,27in 4K Gaming Monitor,1,389.99,03/07/19 20:03,"804 South St, Seattle, WA 98101" -176070,AAA Batteries (4-pack),2,2.99,03/28/19 19:51,"331 Forest St, San Francisco, CA 94016" -176071,AAA Batteries (4-pack),1,2.99,03/02/19 18:47,"194 Dogwood St, Atlanta, GA 30301" -176072,Google Phone,1,600,03/09/19 18:36,"784 14th St, Los Angeles, CA 90001" -176073,Vareebadd Phone,1,400,03/06/19 14:07,"631 9th St, Los Angeles, CA 90001" -176074,Bose SoundSport Headphones,1,99.99,03/02/19 17:55,"473 Walnut St, Boston, MA 02215" -176075,AA Batteries (4-pack),1,3.84,03/23/19 16:22,"329 Spruce St, Seattle, WA 98101" -176076,USB-C Charging Cable,1,11.95,03/06/19 14:50,"76 Madison St, Austin, TX 73301" -176077,Lightning Charging Cable,1,14.95,03/16/19 16:02,"225 Jackson St, Dallas, TX 75001" -176078,Vareebadd Phone,1,400,03/27/19 12:25,"698 Chestnut St, Portland, OR 97035" -176079,27in FHD Monitor,1,149.99,03/25/19 14:05,"154 Main St, New York City, NY 10001" -176080,AA Batteries (4-pack),3,3.84,03/05/19 12:55,"766 Ridge St, Atlanta, GA 30301" -176081,Wired Headphones,1,11.99,03/22/19 19:47,"525 11th St, San Francisco, CA 94016" -176082,Google Phone,1,600,03/14/19 11:27,"713 Lincoln St, Portland, OR 97035" -176083,AA Batteries (4-pack),1,3.84,03/06/19 17:33,"735 Lincoln St, Boston, MA 02215" -176084,AA Batteries (4-pack),1,3.84,03/15/19 21:42,"385 Adams St, Seattle, WA 98101" -176085,ThinkPad Laptop,1,999.99,03/02/19 23:50,"534 Lakeview St, Los Angeles, CA 90001" -176086,Flatscreen TV,1,300,03/15/19 21:26,"291 Jackson St, San Francisco, CA 94016" -176087,Google Phone,1,600,03/18/19 10:17,"500 Cedar St, Los Angeles, CA 90001" -176087,Wired Headphones,1,11.99,03/18/19 10:17,"500 Cedar St, Los Angeles, CA 90001" -176088,USB-C Charging Cable,1,11.95,03/14/19 11:13,"629 Lincoln St, Los Angeles, CA 90001" -176089,USB-C Charging Cable,1,11.95,03/03/19 08:41,"64 14th St, Los Angeles, CA 90001" -176090,USB-C Charging Cable,1,11.95,03/18/19 00:18,"546 Dogwood St, Seattle, WA 98101" -176091,Bose SoundSport Headphones,1,99.99,03/07/19 18:13,"279 Spruce St, Los Angeles, CA 90001" -176092,Bose SoundSport Headphones,1,99.99,03/24/19 22:27,"240 Wilson St, Atlanta, GA 30301" -176093,Wired Headphones,1,11.99,03/09/19 18:36,"478 4th St, Los Angeles, CA 90001" -176094,27in FHD Monitor,1,149.99,03/01/19 09:34,"779 12th St, San Francisco, CA 94016" -176095,Bose SoundSport Headphones,1,99.99,03/08/19 21:48,"743 West St, New York City, NY 10001" -176096,Lightning Charging Cable,1,14.95,03/22/19 10:59,"486 10th St, Seattle, WA 98101" -176096,AA Batteries (4-pack),1,3.84,03/22/19 10:59,"486 10th St, Seattle, WA 98101" -176097,Bose SoundSport Headphones,1,99.99,03/17/19 09:54,"502 North St, Los Angeles, CA 90001" -176098,Google Phone,1,600,03/06/19 16:17,"499 Walnut St, San Francisco, CA 94016" -176098,USB-C Charging Cable,1,11.95,03/06/19 16:17,"499 Walnut St, San Francisco, CA 94016" -176099,AA Batteries (4-pack),1,3.84,03/22/19 13:14,"675 9th St, San Francisco, CA 94016" -176100,USB-C Charging Cable,1,11.95,03/14/19 11:29,"282 Cedar St, New York City, NY 10001" -176101,Vareebadd Phone,1,400,03/18/19 18:25,"796 Cedar St, Seattle, WA 98101" -176102,iPhone,1,700,03/21/19 09:04,"813 7th St, San Francisco, CA 94016" -176103,AAA Batteries (4-pack),2,2.99,03/31/19 17:05,"478 11th St, Los Angeles, CA 90001" -176104,LG Washing Machine,1,600.0,03/12/19 10:54,"297 River St, Boston, MA 02215" -176105,ThinkPad Laptop,1,999.99,03/05/19 12:33,"290 Lake St, Boston, MA 02215" -176106,Vareebadd Phone,1,400,03/03/19 14:31,"107 Spruce St, Dallas, TX 75001" -176107,Apple Airpods Headphones,1,150,03/22/19 10:50,"935 Pine St, San Francisco, CA 94016" -176108,27in FHD Monitor,1,149.99,03/20/19 09:40,"982 Lincoln St, New York City, NY 10001" -176109,Google Phone,1,600,03/30/19 11:45,"477 Hill St, Boston, MA 02215" -176110,Lightning Charging Cable,1,14.95,03/22/19 06:24,"916 Sunset St, Boston, MA 02215" -176111,USB-C Charging Cable,1,11.95,03/01/19 18:50,"699 1st St, New York City, NY 10001" -176112,USB-C Charging Cable,1,11.95,03/02/19 10:35,"317 Hill St, New York City, NY 10001" -176113,Wired Headphones,1,11.99,03/10/19 17:30,"426 Park St, San Francisco, CA 94016" -176114,USB-C Charging Cable,1,11.95,03/03/19 13:17,"407 Spruce St, San Francisco, CA 94016" -176115,AAA Batteries (4-pack),1,2.99,03/18/19 23:12,"946 12th St, Portland, OR 97035" -176116,USB-C Charging Cable,1,11.95,03/10/19 11:59,"644 Park St, San Francisco, CA 94016" -176117,Wired Headphones,1,11.99,03/31/19 18:08,"279 Chestnut St, Los Angeles, CA 90001" -176118,Bose SoundSport Headphones,1,99.99,03/11/19 19:18,"914 Sunset St, Boston, MA 02215" -176119,AAA Batteries (4-pack),2,2.99,03/06/19 16:04,"398 West St, Los Angeles, CA 90001" -176120,Lightning Charging Cable,1,14.95,03/01/19 22:07,"245 Chestnut St, Los Angeles, CA 90001" -176121,20in Monitor,1,109.99,03/14/19 17:30,"412 Forest St, San Francisco, CA 94016" -176122,Bose SoundSport Headphones,1,99.99,03/19/19 14:45,"530 Meadow St, San Francisco, CA 94016" -176123,Bose SoundSport Headphones,1,99.99,03/27/19 21:37,"278 South St, New York City, NY 10001" -176124,Bose SoundSport Headphones,1,99.99,03/12/19 17:39,"21 Forest St, Atlanta, GA 30301" -176125,Lightning Charging Cable,1,14.95,03/05/19 12:10,"717 Park St, San Francisco, CA 94016" -176126,USB-C Charging Cable,1,11.95,03/09/19 23:37,"820 Lincoln St, San Francisco, CA 94016" -176127,Lightning Charging Cable,1,14.95,03/18/19 09:30,"828 10th St, San Francisco, CA 94016" -176128,AA Batteries (4-pack),2,3.84,03/23/19 11:21,"979 Sunset St, Atlanta, GA 30301" -176129,iPhone,1,700,03/16/19 17:44,"546 Highland St, Los Angeles, CA 90001" -176130,AAA Batteries (4-pack),1,2.99,03/11/19 19:41,"468 11th St, Portland, OR 97035" -176131,AAA Batteries (4-pack),1,2.99,03/16/19 23:09,"888 Hickory St, Los Angeles, CA 90001" -176132,Apple Airpods Headphones,1,150,03/24/19 17:36,"328 Madison St, New York City, NY 10001" -176133,Bose SoundSport Headphones,1,99.99,03/07/19 16:47,"107 Hickory St, Portland, OR 97035" -176134,Lightning Charging Cable,1,14.95,03/22/19 13:48,"852 Sunset St, Los Angeles, CA 90001" -176135,AAA Batteries (4-pack),2,2.99,03/05/19 18:29,"431 Adams St, Seattle, WA 98101" -176136,27in FHD Monitor,1,149.99,03/18/19 19:35,"468 Cedar St, Los Angeles, CA 90001" -176137,AA Batteries (4-pack),2,3.84,03/14/19 20:48,"502 Dogwood St, San Francisco, CA 94016" -176138,Apple Airpods Headphones,1,150,03/01/19 20:36,"582 Cherry St, San Francisco, CA 94016" -176139,USB-C Charging Cable,1,11.95,03/10/19 11:54,"825 Hickory St, Dallas, TX 75001" -176140,34in Ultrawide Monitor,1,379.99,03/25/19 13:46,"475 Chestnut St, New York City, NY 10001" -176141,Apple Airpods Headphones,1,150,03/11/19 02:03,"881 8th St, Seattle, WA 98101" -176142,Lightning Charging Cable,1,14.95,03/15/19 14:04,"618 Park St, Atlanta, GA 30301" -176143,USB-C Charging Cable,2,11.95,03/31/19 09:35,"158 4th St, Seattle, WA 98101" -176143,iPhone,1,700,03/31/19 09:35,"158 4th St, Seattle, WA 98101" -176144,Apple Airpods Headphones,1,150,03/22/19 10:40,"205 Center St, Los Angeles, CA 90001" -176145,Bose SoundSport Headphones,1,99.99,03/07/19 12:05,"301 1st St, Boston, MA 02215" -176146,iPhone,1,700,03/16/19 21:41,"31 Wilson St, New York City, NY 10001" -176147,Lightning Charging Cable,1,14.95,03/08/19 18:02,"62 Church St, Los Angeles, CA 90001" -176148,Apple Airpods Headphones,1,150,03/06/19 00:16,"714 Park St, San Francisco, CA 94016" -176149,Bose SoundSport Headphones,1,99.99,03/13/19 22:29,"109 Chestnut St, Los Angeles, CA 90001" -176150,AA Batteries (4-pack),1,3.84,03/07/19 00:42,"183 13th St, Seattle, WA 98101" -176151,Lightning Charging Cable,1,14.95,03/12/19 13:46,"483 6th St, New York City, NY 10001" -176152,Lightning Charging Cable,1,14.95,03/08/19 11:11,"453 Maple St, Austin, TX 73301" -176153,AA Batteries (4-pack),1,3.84,03/21/19 23:27,"694 Center St, Austin, TX 73301" -176154,AA Batteries (4-pack),1,3.84,03/06/19 09:19,"877 Jackson St, Seattle, WA 98101" -176155,iPhone,1,700,03/25/19 11:38,"73 11th St, Seattle, WA 98101" -176155,Wired Headphones,1,11.99,03/25/19 11:38,"73 11th St, Seattle, WA 98101" -176156,Google Phone,1,600,03/14/19 16:02,"934 2nd St, Boston, MA 02215" -176157,34in Ultrawide Monitor,1,379.99,03/11/19 01:12,"35 Washington St, Portland, OR 97035" -176158,Bose SoundSport Headphones,1,99.99,03/23/19 17:25,"853 West St, Portland, OR 97035" -176159,AAA Batteries (4-pack),3,2.99,03/27/19 05:39,"741 6th St, San Francisco, CA 94016" -176160,AAA Batteries (4-pack),1,2.99,03/24/19 23:00,"904 Cherry St, Atlanta, GA 30301" -176161,Wired Headphones,1,11.99,03/04/19 05:01,"995 13th St, New York City, NY 10001" -176162,AAA Batteries (4-pack),2,2.99,03/30/19 20:30,"551 Jackson St, New York City, NY 10001" -176163,Lightning Charging Cable,1,14.95,03/09/19 19:45,"597 10th St, Los Angeles, CA 90001" -176164,AA Batteries (4-pack),1,3.84,03/31/19 18:15,"951 Pine St, Seattle, WA 98101" -176165,AAA Batteries (4-pack),1,2.99,03/12/19 21:56,"426 Washington St, Dallas, TX 75001" -176166,Bose SoundSport Headphones,1,99.99,03/05/19 19:07,"576 Elm St, Portland, ME 04101" -176167,Wired Headphones,1,11.99,03/03/19 16:25,"486 Cherry St, New York City, NY 10001" -176168,27in FHD Monitor,1,149.99,03/19/19 21:14,"765 10th St, San Francisco, CA 94016" -176169,USB-C Charging Cable,1,11.95,03/17/19 12:45,"906 Hill St, Los Angeles, CA 90001" -176170,Bose SoundSport Headphones,1,99.99,03/18/19 21:35,"562 Maple St, San Francisco, CA 94016" -176171,Wired Headphones,1,11.99,03/09/19 15:39,"612 11th St, Los Angeles, CA 90001" -176172,Apple Airpods Headphones,1,150,03/26/19 08:39,"78 Wilson St, Austin, TX 73301" -176173,USB-C Charging Cable,1,11.95,03/10/19 20:46,"156 5th St, Seattle, WA 98101" -176174,USB-C Charging Cable,1,11.95,03/05/19 12:30,"1 Dogwood St, Boston, MA 02215" -176175,Wired Headphones,1,11.99,03/05/19 18:54,"638 Jackson St, Atlanta, GA 30301" -176176,AA Batteries (4-pack),2,3.84,03/12/19 23:28,"788 Cedar St, Boston, MA 02215" -176177,Lightning Charging Cable,1,14.95,03/17/19 21:15,"819 Meadow St, Los Angeles, CA 90001" -176178,AA Batteries (4-pack),1,3.84,03/10/19 17:01,"685 Highland St, Atlanta, GA 30301" -176179,Macbook Pro Laptop,1,1700,03/22/19 13:58,"742 North St, Los Angeles, CA 90001" -176180,Google Phone,1,600,03/22/19 18:34,"221 11th St, New York City, NY 10001" -176181,Google Phone,1,600,03/18/19 19:52,"701 9th St, New York City, NY 10001" -176182,AA Batteries (4-pack),1,3.84,03/28/19 18:18,"211 North St, New York City, NY 10001" -176183,34in Ultrawide Monitor,1,379.99,03/02/19 12:47,"511 Main St, Atlanta, GA 30301" -176184,Apple Airpods Headphones,1,150,03/13/19 19:55,"608 River St, San Francisco, CA 94016" -176185,USB-C Charging Cable,1,11.95,03/21/19 00:20,"467 Washington St, Boston, MA 02215" -176186,USB-C Charging Cable,1,11.95,03/23/19 13:58,"58 Elm St, San Francisco, CA 94016" -176187,27in FHD Monitor,1,149.99,03/29/19 18:14,"660 5th St, Austin, TX 73301" -176188,Wired Headphones,1,11.99,03/06/19 16:26,"589 North St, New York City, NY 10001" -176189,ThinkPad Laptop,1,999.99,03/28/19 12:28,"739 Sunset St, Atlanta, GA 30301" -176190,Macbook Pro Laptop,1,1700,03/02/19 20:26,"246 Church St, Boston, MA 02215" -176191,AA Batteries (4-pack),2,3.84,03/05/19 21:06,"488 Chestnut St, Austin, TX 73301" -176192,iPhone,1,700,03/07/19 22:40,"315 River St, Los Angeles, CA 90001" -176192,Lightning Charging Cable,1,14.95,03/07/19 22:40,"315 River St, Los Angeles, CA 90001" -176193,iPhone,1,700,03/10/19 01:11,"443 4th St, Dallas, TX 75001" -176194,34in Ultrawide Monitor,1,379.99,03/23/19 18:20,"157 Park St, Austin, TX 73301" -176195,27in FHD Monitor,1,149.99,03/09/19 05:52,"249 Highland St, New York City, NY 10001" -176195,AAA Batteries (4-pack),1,2.99,03/09/19 05:52,"249 Highland St, New York City, NY 10001" -176196,AA Batteries (4-pack),1,3.84,03/15/19 15:56,"686 Jefferson St, Seattle, WA 98101" -176197,AA Batteries (4-pack),1,3.84,03/28/19 19:33,"198 13th St, New York City, NY 10001" -176198,34in Ultrawide Monitor,1,379.99,03/11/19 09:44,"974 8th St, Boston, MA 02215" -176199,Wired Headphones,1,11.99,03/02/19 16:35,"435 Main St, New York City, NY 10001" -176200,Apple Airpods Headphones,1,150,03/06/19 14:55,"419 Jackson St, Seattle, WA 98101" -176201,Lightning Charging Cable,1,14.95,03/29/19 07:56,"367 14th St, San Francisco, CA 94016" -176202,AA Batteries (4-pack),2,3.84,03/12/19 21:22,"868 9th St, San Francisco, CA 94016" -176203,Lightning Charging Cable,1,14.95,03/04/19 17:16,"800 Elm St, San Francisco, CA 94016" -176204,Wired Headphones,1,11.99,03/23/19 01:06,"137 Hickory St, Boston, MA 02215" -176205,Apple Airpods Headphones,1,150,03/04/19 02:16,"21 12th St, San Francisco, CA 94016" -176206,AAA Batteries (4-pack),1,2.99,03/27/19 13:33,"164 2nd St, San Francisco, CA 94016" -176207,Flatscreen TV,1,300,03/25/19 19:06,"868 South St, New York City, NY 10001" -176208,Bose SoundSport Headphones,1,99.99,03/02/19 23:48,"595 Adams St, New York City, NY 10001" -176209,AAA Batteries (4-pack),2,2.99,03/20/19 08:35,"250 Meadow St, Los Angeles, CA 90001" -176210,Bose SoundSport Headphones,1,99.99,03/21/19 15:37,"989 Hill St, Dallas, TX 75001" -176211,Bose SoundSport Headphones,1,99.99,03/21/19 10:51,"641 Johnson St, Los Angeles, CA 90001" -176212,USB-C Charging Cable,1,11.95,03/09/19 19:19,"746 Cherry St, New York City, NY 10001" -176213,Bose SoundSport Headphones,1,99.99,03/14/19 03:49,"668 Jefferson St, Atlanta, GA 30301" -176214,27in FHD Monitor,1,149.99,03/05/19 16:31,"223 Willow St, New York City, NY 10001" -176215,AAA Batteries (4-pack),1,2.99,03/03/19 12:37,"866 Sunset St, San Francisco, CA 94016" -176216,AA Batteries (4-pack),1,3.84,03/06/19 15:34,"576 Main St, San Francisco, CA 94016" -176217,iPhone,1,700,03/09/19 12:25,"633 Center St, San Francisco, CA 94016" -176217,Lightning Charging Cable,1,14.95,03/09/19 12:25,"633 Center St, San Francisco, CA 94016" -176218,USB-C Charging Cable,2,11.95,03/07/19 12:44,"827 Adams St, San Francisco, CA 94016" -176219,Bose SoundSport Headphones,1,99.99,03/23/19 21:25,"260 Main St, Boston, MA 02215" -176220,AA Batteries (4-pack),2,3.84,03/18/19 00:19,"491 River St, San Francisco, CA 94016" -176221,AA Batteries (4-pack),1,3.84,03/11/19 21:44,"182 8th St, Los Angeles, CA 90001" -176222,Lightning Charging Cable,1,14.95,03/07/19 14:56,"379 Park St, Los Angeles, CA 90001" -176223,Bose SoundSport Headphones,1,99.99,03/15/19 20:26,"861 Cherry St, New York City, NY 10001" -176224,Google Phone,1,600,03/15/19 11:10,"592 River St, Atlanta, GA 30301" -176224,USB-C Charging Cable,1,11.95,03/15/19 11:10,"592 River St, Atlanta, GA 30301" -176225,Vareebadd Phone,1,400,03/25/19 22:41,"650 13th St, San Francisco, CA 94016" -176226,AA Batteries (4-pack),1,3.84,03/17/19 10:19,"928 6th St, Dallas, TX 75001" -176227,34in Ultrawide Monitor,1,379.99,03/15/19 14:55,"823 North St, Dallas, TX 75001" -176228,LG Dryer,1,600.0,03/31/19 08:54,"281 Johnson St, Boston, MA 02215" -176229,ThinkPad Laptop,1,999.99,03/31/19 14:44,"62 8th St, Seattle, WA 98101" -176230,34in Ultrawide Monitor,1,379.99,03/27/19 06:43,"873 Dogwood St, Atlanta, GA 30301" -176231,AAA Batteries (4-pack),1,2.99,03/17/19 22:48,"739 Hickory St, San Francisco, CA 94016" -176232,27in 4K Gaming Monitor,1,389.99,03/24/19 23:24,"202 10th St, Boston, MA 02215" -176233,Google Phone,1,600,03/30/19 20:39,"275 Center St, Dallas, TX 75001" -176234,Apple Airpods Headphones,1,150,03/23/19 07:28,"457 7th St, Portland, ME 04101" -176235,Wired Headphones,1,11.99,03/24/19 17:08,"72 1st St, New York City, NY 10001" -176236,USB-C Charging Cable,1,11.95,03/16/19 02:05,"888 7th St, San Francisco, CA 94016" -176237,USB-C Charging Cable,1,11.95,03/30/19 18:34,"850 Madison St, San Francisco, CA 94016" -176238,Apple Airpods Headphones,1,150,03/17/19 12:36,"129 Lakeview St, Los Angeles, CA 90001" -176239,Lightning Charging Cable,1,14.95,03/19/19 16:56,"480 Johnson St, Los Angeles, CA 90001" -176240,USB-C Charging Cable,1,11.95,03/24/19 23:53,"230 Madison St, Austin, TX 73301" -176241,iPhone,1,700,03/18/19 10:28,"117 Meadow St, Boston, MA 02215" -176241,Wired Headphones,1,11.99,03/18/19 10:28,"117 Meadow St, Boston, MA 02215" -176242,Apple Airpods Headphones,1,150,03/24/19 19:41,"860 Elm St, Los Angeles, CA 90001" -176243,Apple Airpods Headphones,1,150,03/25/19 19:44,"387 Jackson St, Los Angeles, CA 90001" -176244,AAA Batteries (4-pack),2,2.99,03/27/19 15:50,"935 14th St, New York City, NY 10001" -176245,Wired Headphones,1,11.99,03/08/19 19:25,"399 Johnson St, Atlanta, GA 30301" -176246,Apple Airpods Headphones,1,150,03/23/19 14:44,"301 5th St, Portland, OR 97035" -176247,iPhone,1,700,03/12/19 00:07,"845 Forest St, Los Angeles, CA 90001" -176248,AAA Batteries (4-pack),1,2.99,03/27/19 11:01,"945 12th St, San Francisco, CA 94016" -176249,AA Batteries (4-pack),2,3.84,03/23/19 00:11,"687 Johnson St, Portland, OR 97035" -176250,AAA Batteries (4-pack),2,2.99,03/21/19 16:28,"123 Pine St, San Francisco, CA 94016" -176251,AAA Batteries (4-pack),1,2.99,03/31/19 00:29,"965 Church St, New York City, NY 10001" -176251,20in Monitor,1,109.99,03/31/19 00:29,"965 Church St, New York City, NY 10001" -176252,34in Ultrawide Monitor,1,379.99,03/14/19 11:51,"396 2nd St, Los Angeles, CA 90001" -176253,ThinkPad Laptop,1,999.99,03/21/19 18:31,"767 Willow St, San Francisco, CA 94016" -176254,AA Batteries (4-pack),1,3.84,03/08/19 19:17,"333 Cherry St, Boston, MA 02215" -176255,USB-C Charging Cable,1,11.95,03/13/19 12:22,"231 Elm St, San Francisco, CA 94016" -176256,Vareebadd Phone,1,400,03/25/19 20:43,"430 9th St, Atlanta, GA 30301" -176257,Bose SoundSport Headphones,1,99.99,03/16/19 11:07,"757 Sunset St, San Francisco, CA 94016" -176258,Bose SoundSport Headphones,1,99.99,03/05/19 13:41,"777 9th St, San Francisco, CA 94016" -176259,Bose SoundSport Headphones,1,99.99,03/02/19 21:12,"53 Cherry St, Dallas, TX 75001" -176260,AA Batteries (4-pack),1,3.84,03/30/19 20:05,"84 Spruce St, Boston, MA 02215" -176261,USB-C Charging Cable,1,11.95,03/16/19 20:22,"37 Madison St, Portland, OR 97035" -176262,Wired Headphones,1,11.99,03/18/19 12:08,"333 Chestnut St, San Francisco, CA 94016" -176263,Bose SoundSport Headphones,1,99.99,03/22/19 18:33,"236 Wilson St, Atlanta, GA 30301" -176264,Wired Headphones,1,11.99,03/29/19 13:43,"799 Lincoln St, New York City, NY 10001" -176265,AAA Batteries (4-pack),2,2.99,03/03/19 18:51,"241 Meadow St, San Francisco, CA 94016" -176266,Wired Headphones,1,11.99,03/21/19 04:27,"503 Ridge St, Portland, OR 97035" -176267,USB-C Charging Cable,1,11.95,03/04/19 20:07,"126 Church St, Atlanta, GA 30301" -176268,USB-C Charging Cable,1,11.95,03/05/19 07:06,"399 West St, Austin, TX 73301" -176269,Bose SoundSport Headphones,1,99.99,03/03/19 00:10,"378 Spruce St, Dallas, TX 75001" -176270,AAA Batteries (4-pack),1,2.99,03/05/19 18:31,"762 Hill St, Boston, MA 02215" -176271,ThinkPad Laptop,1,999.99,03/23/19 06:56,"949 14th St, Boston, MA 02215" -176271,Lightning Charging Cable,1,14.95,03/23/19 06:56,"949 14th St, Boston, MA 02215" -176272,AAA Batteries (4-pack),2,2.99,03/19/19 14:28,"265 Washington St, Portland, ME 04101" -176273,Wired Headphones,1,11.99,03/20/19 07:30,"359 Cedar St, Portland, OR 97035" -176274,34in Ultrawide Monitor,1,379.99,03/20/19 19:55,"740 Lakeview St, San Francisco, CA 94016" -176275,27in 4K Gaming Monitor,1,389.99,03/07/19 10:18,"830 Chestnut St, Seattle, WA 98101" -176276,AAA Batteries (4-pack),1,2.99,03/09/19 09:43,"296 Dogwood St, San Francisco, CA 94016" -176277,Google Phone,1,600,03/14/19 19:21,"647 Dogwood St, New York City, NY 10001" -176278,USB-C Charging Cable,2,11.95,03/23/19 07:58,"286 10th St, New York City, NY 10001" -176279,Wired Headphones,1,11.99,03/10/19 09:48,"141 Hickory St, Los Angeles, CA 90001" -176280,Lightning Charging Cable,1,14.95,03/17/19 12:51,"426 Forest St, Los Angeles, CA 90001" -176281,27in 4K Gaming Monitor,1,389.99,03/21/19 23:59,"135 Jefferson St, New York City, NY 10001" -176282,Flatscreen TV,1,300,03/16/19 10:26,"968 14th St, Dallas, TX 75001" -176283,Macbook Pro Laptop,1,1700,03/14/19 18:19,"724 Cedar St, Dallas, TX 75001" -176284,USB-C Charging Cable,1,11.95,03/08/19 17:55,"991 Jackson St, Seattle, WA 98101" -176285,AA Batteries (4-pack),1,3.84,03/20/19 20:30,"966 North St, Seattle, WA 98101" -176286,Bose SoundSport Headphones,1,99.99,03/09/19 16:33,"469 7th St, San Francisco, CA 94016" -176287,AA Batteries (4-pack),1,3.84,03/11/19 18:55,"341 12th St, Boston, MA 02215" -176288,Wired Headphones,1,11.99,03/05/19 21:45,"199 River St, San Francisco, CA 94016" -176289,Wired Headphones,1,11.99,03/25/19 09:35,"854 Park St, New York City, NY 10001" -176290,Google Phone,1,600,03/30/19 11:06,"860 Johnson St, New York City, NY 10001" -176290,USB-C Charging Cable,1,11.95,03/30/19 11:06,"860 Johnson St, New York City, NY 10001" -176291,Google Phone,1,600,03/10/19 15:15,"289 Forest St, Atlanta, GA 30301" -176292,ThinkPad Laptop,1,999.99,03/16/19 13:17,"754 Wilson St, New York City, NY 10001" -176292,Apple Airpods Headphones,1,150,03/16/19 13:17,"754 Wilson St, New York City, NY 10001" -176293,Lightning Charging Cable,2,14.95,03/30/19 13:40,"877 Pine St, San Francisco, CA 94016" -176294,Lightning Charging Cable,1,14.95,03/21/19 14:32,"113 Jackson St, Austin, TX 73301" -176295,Apple Airpods Headphones,1,150,03/08/19 07:31,"879 Main St, Los Angeles, CA 90001" -176296,Lightning Charging Cable,1,14.95,03/11/19 08:09,"23 4th St, Los Angeles, CA 90001" -176297,34in Ultrawide Monitor,1,379.99,03/17/19 19:27,"718 Maple St, New York City, NY 10001" -176298,Apple Airpods Headphones,1,150,03/19/19 23:02,"723 Elm St, Los Angeles, CA 90001" -176299,USB-C Charging Cable,1,11.95,03/11/19 16:04,"691 Ridge St, New York City, NY 10001" -176300,Apple Airpods Headphones,1,150,03/23/19 05:16,"488 Adams St, New York City, NY 10001" -176301,LG Washing Machine,1,600.0,03/12/19 19:28,"863 Lincoln St, Boston, MA 02215" -176302,Bose SoundSport Headphones,1,99.99,03/27/19 10:16,"391 1st St, San Francisco, CA 94016" -176303,AAA Batteries (4-pack),3,2.99,03/02/19 23:23,"598 Dogwood St, Portland, OR 97035" -176304,Lightning Charging Cable,1,14.95,03/25/19 07:50,"233 Adams St, Los Angeles, CA 90001" -176305,Bose SoundSport Headphones,1,99.99,03/10/19 11:28,"166 Main St, San Francisco, CA 94016" -176306,Apple Airpods Headphones,1,150,03/22/19 09:26,"474 2nd St, San Francisco, CA 94016" -176307,Lightning Charging Cable,1,14.95,03/23/19 21:44,"966 Cedar St, New York City, NY 10001" -176308,Lightning Charging Cable,1,14.95,03/28/19 17:14,"226 Cherry St, Los Angeles, CA 90001" -176309,AAA Batteries (4-pack),1,2.99,03/17/19 22:18,"622 Sunset St, New York City, NY 10001" -176310,Bose SoundSport Headphones,1,99.99,03/15/19 21:36,"233 11th St, Atlanta, GA 30301" -176311,34in Ultrawide Monitor,1,379.99,03/29/19 21:02,"451 West St, Boston, MA 02215" -176312,AAA Batteries (4-pack),1,2.99,03/16/19 13:08,"666 6th St, San Francisco, CA 94016" -176313,AAA Batteries (4-pack),2,2.99,03/16/19 08:40,"42 North St, San Francisco, CA 94016" -176314,27in 4K Gaming Monitor,1,389.99,03/27/19 14:58,"143 Jefferson St, San Francisco, CA 94016" -176315,Flatscreen TV,1,300,03/11/19 09:47,"335 North St, Atlanta, GA 30301" -176316,AAA Batteries (4-pack),2,2.99,03/14/19 12:05,"691 7th St, San Francisco, CA 94016" -176317,Wired Headphones,1,11.99,03/18/19 21:13,"794 Willow St, Portland, OR 97035" -176318,34in Ultrawide Monitor,1,379.99,03/13/19 22:13,"433 Main St, Los Angeles, CA 90001" -176319,Wired Headphones,2,11.99,03/30/19 19:30,"867 Dogwood St, Boston, MA 02215" -176320,iPhone,1,700,03/01/19 11:57,"385 Spruce St, Atlanta, GA 30301" -176320,Lightning Charging Cable,1,14.95,03/01/19 11:57,"385 Spruce St, Atlanta, GA 30301" -176321,Bose SoundSport Headphones,1,99.99,03/13/19 19:36,"598 Chestnut St, San Francisco, CA 94016" -176322,Wired Headphones,1,11.99,03/04/19 13:25,"247 Jefferson St, Los Angeles, CA 90001" -176323,27in FHD Monitor,1,149.99,03/03/19 09:29,"140 Washington St, Atlanta, GA 30301" -176324,Lightning Charging Cable,1,14.95,03/17/19 22:23,"488 9th St, San Francisco, CA 94016" -176325,Wired Headphones,1,11.99,03/10/19 14:59,"405 Dogwood St, New York City, NY 10001" -176326,USB-C Charging Cable,1,11.95,03/30/19 22:43,"777 6th St, Austin, TX 73301" -176327,USB-C Charging Cable,1,11.95,03/22/19 11:13,"345 Johnson St, Dallas, TX 75001" -176328,34in Ultrawide Monitor,1,379.99,03/09/19 15:55,"446 Jefferson St, Seattle, WA 98101" -176329,AA Batteries (4-pack),3,3.84,03/12/19 08:00,"561 Jackson St, New York City, NY 10001" -176330,Apple Airpods Headphones,1,150,03/10/19 20:20,"970 12th St, Atlanta, GA 30301" -176331,AA Batteries (4-pack),2,3.84,03/23/19 17:57,"291 Lincoln St, Los Angeles, CA 90001" -176332,AA Batteries (4-pack),2,3.84,03/22/19 13:09,"330 4th St, Atlanta, GA 30301" -176333,AA Batteries (4-pack),2,3.84,03/19/19 15:34,"809 Spruce St, Seattle, WA 98101" -176334,Wired Headphones,1,11.99,03/10/19 10:37,"682 5th St, Los Angeles, CA 90001" -176335,AAA Batteries (4-pack),1,2.99,03/27/19 11:17,"113 5th St, San Francisco, CA 94016" -176336,AAA Batteries (4-pack),3,2.99,03/05/19 20:20,"107 14th St, Portland, OR 97035" -176337,Lightning Charging Cable,1,14.95,03/24/19 17:42,"410 Forest St, Los Angeles, CA 90001" -176338,AA Batteries (4-pack),1,3.84,03/09/19 15:37,"761 7th St, Atlanta, GA 30301" -176339,Lightning Charging Cable,1,14.95,03/07/19 12:39,"526 Hickory St, Austin, TX 73301" -176340,USB-C Charging Cable,1,11.95,03/10/19 14:41,"708 Walnut St, San Francisco, CA 94016" -176341,Lightning Charging Cable,1,14.95,03/21/19 15:04,"178 9th St, Boston, MA 02215" -176342,Apple Airpods Headphones,1,150,03/29/19 02:50,"865 Lincoln St, Portland, OR 97035" -176343,USB-C Charging Cable,1,11.95,03/03/19 08:26,"462 Maple St, San Francisco, CA 94016" -176344,USB-C Charging Cable,1,11.95,03/30/19 20:55,"33 Park St, Boston, MA 02215" -176345,27in 4K Gaming Monitor,1,389.99,03/09/19 16:50,"33 11th St, New York City, NY 10001" -176346,USB-C Charging Cable,1,11.95,03/18/19 16:55,"726 2nd St, Atlanta, GA 30301" -176347,Lightning Charging Cable,1,14.95,03/09/19 16:52,"830 South St, Boston, MA 02215" -176348,AAA Batteries (4-pack),2,2.99,03/15/19 20:40,"940 Meadow St, Seattle, WA 98101" -176349,Wired Headphones,1,11.99,03/11/19 11:07,"47 4th St, Boston, MA 02215" -176350,USB-C Charging Cable,1,11.95,03/09/19 12:43,"676 2nd St, Boston, MA 02215" -176351,AAA Batteries (4-pack),2,2.99,03/02/19 20:59,"957 1st St, Portland, OR 97035" -176352,Wired Headphones,1,11.99,03/15/19 14:36,"347 Willow St, San Francisco, CA 94016" -176353,USB-C Charging Cable,1,11.95,03/25/19 17:21,"258 Center St, New York City, NY 10001" -176354,ThinkPad Laptop,1,999.99,03/28/19 21:09,"836 Main St, Portland, OR 97035" -176355,AA Batteries (4-pack),1,3.84,03/26/19 11:24,"336 Dogwood St, New York City, NY 10001" -176356,27in 4K Gaming Monitor,1,389.99,03/20/19 11:29,"207 Jackson St, Seattle, WA 98101" -176357,USB-C Charging Cable,1,11.95,03/12/19 12:42,"299 River St, Los Angeles, CA 90001" -176358,AAA Batteries (4-pack),1,2.99,03/26/19 08:24,"146 14th St, Dallas, TX 75001" -176359,USB-C Charging Cable,1,11.95,03/13/19 17:57,"5 Park St, Atlanta, GA 30301" -176360,27in FHD Monitor,1,149.99,03/11/19 10:00,"117 4th St, San Francisco, CA 94016" -176361,34in Ultrawide Monitor,1,379.99,03/20/19 16:39,"937 Johnson St, Seattle, WA 98101" -176362,Wired Headphones,1,11.99,03/02/19 23:39,"499 River St, Dallas, TX 75001" -176363,AA Batteries (4-pack),1,3.84,03/31/19 12:59,"795 Sunset St, Dallas, TX 75001" -176364,Wired Headphones,1,11.99,03/11/19 19:54,"525 9th St, New York City, NY 10001" -176365,Apple Airpods Headphones,1,150,03/01/19 19:40,"732 North St, San Francisco, CA 94016" -176366,Bose SoundSport Headphones,1,99.99,03/01/19 21:25,"758 Hickory St, San Francisco, CA 94016" -176367,Bose SoundSport Headphones,1,99.99,03/01/19 13:48,"935 Highland St, Dallas, TX 75001" -176368,USB-C Charging Cable,1,11.95,03/11/19 05:22,"3 Pine St, Atlanta, GA 30301" -176369,AA Batteries (4-pack),1,3.84,03/01/19 13:17,"767 Lincoln St, Atlanta, GA 30301" -176370,ThinkPad Laptop,1,999.99,03/30/19 19:02,"713 West St, Seattle, WA 98101" -176371,AA Batteries (4-pack),1,3.84,03/18/19 14:00,"404 Ridge St, Boston, MA 02215" -176372,USB-C Charging Cable,1,11.95,03/29/19 00:31,"56 10th St, Portland, OR 97035" -176373,Google Phone,1,600,03/05/19 07:08,"650 Johnson St, Dallas, TX 75001" -176374,Apple Airpods Headphones,1,150,03/18/19 10:12,"98 8th St, Boston, MA 02215" -176375,Wired Headphones,1,11.99,03/04/19 22:57,"541 4th St, San Francisco, CA 94016" -176376,AAA Batteries (4-pack),2,2.99,03/22/19 11:35,"294 Ridge St, Los Angeles, CA 90001" -176377,USB-C Charging Cable,1,11.95,03/27/19 11:51,"649 Ridge St, New York City, NY 10001" -176378,USB-C Charging Cable,1,11.95,03/30/19 05:16,"909 12th St, Los Angeles, CA 90001" -176379,Wired Headphones,1,11.99,03/11/19 20:16,"748 Sunset St, Portland, OR 97035" -176380,USB-C Charging Cable,1,11.95,03/31/19 11:16,"229 2nd St, Los Angeles, CA 90001" -176381,AAA Batteries (4-pack),1,2.99,03/30/19 08:24,"65 Spruce St, San Francisco, CA 94016" -176382,AA Batteries (4-pack),1,3.84,03/30/19 08:00,"787 Washington St, Dallas, TX 75001" -176383,Flatscreen TV,1,300,03/10/19 12:48,"70 North St, Dallas, TX 75001" -176384,AAA Batteries (4-pack),1,2.99,03/05/19 20:19,"274 Chestnut St, Los Angeles, CA 90001" -176385,AA Batteries (4-pack),1,3.84,03/19/19 14:23,"375 10th St, Seattle, WA 98101" -176386,AAA Batteries (4-pack),1,2.99,03/11/19 13:35,"134 12th St, Atlanta, GA 30301" -176387,Lightning Charging Cable,1,14.95,03/19/19 19:30,"591 Park St, Los Angeles, CA 90001" -176388,iPhone,1,700,03/17/19 15:49,"212 Walnut St, New York City, NY 10001" -176389,34in Ultrawide Monitor,1,379.99,03/23/19 15:44,"936 12th St, San Francisco, CA 94016" -176390,USB-C Charging Cable,1,11.95,03/07/19 11:22,"948 9th St, New York City, NY 10001" -176391,AA Batteries (4-pack),1,3.84,03/27/19 09:41,"774 Cedar St, Dallas, TX 75001" -176392,Apple Airpods Headphones,1,150,03/14/19 11:11,"269 Main St, San Francisco, CA 94016" -176393,Wired Headphones,1,11.99,03/31/19 22:26,"367 Willow St, Portland, OR 97035" -176394,AAA Batteries (4-pack),3,2.99,03/16/19 13:00,"462 Hickory St, San Francisco, CA 94016" -176395,USB-C Charging Cable,1,11.95,03/22/19 22:09,"207 Lincoln St, Austin, TX 73301" -176396,AA Batteries (4-pack),4,3.84,03/23/19 07:19,"344 14th St, Boston, MA 02215" -176397,AA Batteries (4-pack),1,3.84,03/01/19 18:44,"967 Adams St, Los Angeles, CA 90001" -176398,Bose SoundSport Headphones,1,99.99,03/16/19 10:56,"696 Main St, San Francisco, CA 94016" -176399,USB-C Charging Cable,1,11.95,03/25/19 09:49,"645 8th St, Los Angeles, CA 90001" -176400,Lightning Charging Cable,1,14.95,03/02/19 13:23,"725 Lincoln St, Los Angeles, CA 90001" -176401,34in Ultrawide Monitor,1,379.99,03/22/19 18:20,"709 1st St, San Francisco, CA 94016" -176402,34in Ultrawide Monitor,1,379.99,03/18/19 12:03,"340 Jackson St, Los Angeles, CA 90001" -176403,Wired Headphones,1,11.99,03/02/19 14:00,"782 8th St, Los Angeles, CA 90001" -176404,20in Monitor,1,109.99,03/07/19 17:42,"741 Forest St, Los Angeles, CA 90001" -176405,Lightning Charging Cable,1,14.95,03/14/19 22:18,"159 12th St, Atlanta, GA 30301" -176406,AA Batteries (4-pack),1,3.84,03/01/19 07:49,"849 Madison St, Los Angeles, CA 90001" -176407,Lightning Charging Cable,1,14.95,03/15/19 11:59,"321 7th St, San Francisco, CA 94016" -176408,Bose SoundSport Headphones,1,99.99,03/27/19 20:23,"512 Pine St, Portland, OR 97035" -176409,Wired Headphones,1,11.99,03/19/19 13:19,"728 1st St, Seattle, WA 98101" -176410,Apple Airpods Headphones,1,150,03/02/19 23:51,"336 4th St, San Francisco, CA 94016" -176411,34in Ultrawide Monitor,1,379.99,03/25/19 06:55,"76 Chestnut St, Boston, MA 02215" -176412,ThinkPad Laptop,1,999.99,03/01/19 18:57,"679 West St, Seattle, WA 98101" -176413,AA Batteries (4-pack),1,3.84,03/15/19 20:26,"2 Sunset St, New York City, NY 10001" -176414,AA Batteries (4-pack),1,3.84,03/12/19 19:15,"507 Park St, Atlanta, GA 30301" -176415,AAA Batteries (4-pack),4,2.99,03/15/19 20:12,"804 Wilson St, New York City, NY 10001" -176416,AA Batteries (4-pack),1,3.84,03/27/19 22:47,"924 West St, Seattle, WA 98101" -176417,AAA Batteries (4-pack),1,2.99,03/11/19 17:24,"619 1st St, Dallas, TX 75001" -176418,27in FHD Monitor,1,149.99,03/12/19 09:10,"450 7th St, Los Angeles, CA 90001" -176419,AAA Batteries (4-pack),1,2.99,03/08/19 16:51,"224 Wilson St, New York City, NY 10001" -176420,USB-C Charging Cable,1,11.95,03/10/19 09:50,"810 Elm St, New York City, NY 10001" -176421,Apple Airpods Headphones,1,150,03/12/19 06:16,"958 Lake St, Portland, OR 97035" -176422,Wired Headphones,1,11.99,03/05/19 16:29,"669 Washington St, Los Angeles, CA 90001" -176423,27in FHD Monitor,1,149.99,03/14/19 19:09,"898 Maple St, Atlanta, GA 30301" -176424,Apple Airpods Headphones,1,150,03/11/19 19:22,"830 Pine St, Los Angeles, CA 90001" -176425,Flatscreen TV,1,300,03/31/19 12:23,"70 Highland St, San Francisco, CA 94016" -176426,Wired Headphones,1,11.99,03/08/19 21:55,"349 Sunset St, Los Angeles, CA 90001" -176427,Google Phone,1,600,03/06/19 08:41,"425 Cherry St, Austin, TX 73301" -176428,27in FHD Monitor,1,149.99,03/06/19 08:28,"607 10th St, San Francisco, CA 94016" -176429,Lightning Charging Cable,1,14.95,03/27/19 11:22,"481 Main St, Portland, OR 97035" -176430,Wired Headphones,1,11.99,03/14/19 17:53,"909 6th St, New York City, NY 10001" -176431,AAA Batteries (4-pack),1,2.99,03/02/19 23:32,"944 South St, Seattle, WA 98101" -176432,27in FHD Monitor,1,149.99,03/27/19 10:16,"51 Maple St, Seattle, WA 98101" -176433,USB-C Charging Cable,2,11.95,03/23/19 19:30,"676 Pine St, San Francisco, CA 94016" -176434,Lightning Charging Cable,1,14.95,03/14/19 20:11,"528 Willow St, Los Angeles, CA 90001" -176435,Wired Headphones,1,11.99,03/19/19 17:07,"177 Sunset St, Seattle, WA 98101" -176436,Lightning Charging Cable,1,14.95,03/31/19 22:04,"23 5th St, Boston, MA 02215" -176437,Wired Headphones,1,11.99,03/03/19 12:19,"949 12th St, Los Angeles, CA 90001" -176438,USB-C Charging Cable,1,11.95,03/19/19 11:49,"382 Washington St, Los Angeles, CA 90001" -176439,AAA Batteries (4-pack),2,2.99,03/12/19 19:42,"405 Lake St, San Francisco, CA 94016" -176440,Bose SoundSport Headphones,1,99.99,03/20/19 21:21,"253 Cherry St, Boston, MA 02215" -176441,Flatscreen TV,1,300,03/16/19 16:22,"751 Sunset St, Dallas, TX 75001" -176442,iPhone,1,700,03/26/19 10:11,"809 13th St, San Francisco, CA 94016" -176442,Lightning Charging Cable,1,14.95,03/26/19 10:11,"809 13th St, San Francisco, CA 94016" -176443,USB-C Charging Cable,1,11.95,03/18/19 12:05,"943 Hill St, New York City, NY 10001" -176444,27in FHD Monitor,1,149.99,03/13/19 13:25,"725 7th St, New York City, NY 10001" -176445,AAA Batteries (4-pack),2,2.99,03/30/19 14:52,"400 Sunset St, Seattle, WA 98101" -176446,AA Batteries (4-pack),1,3.84,03/03/19 21:53,"306 7th St, Dallas, TX 75001" -176447,Lightning Charging Cable,1,14.95,03/27/19 09:33,"476 Wilson St, New York City, NY 10001" -176448,27in FHD Monitor,1,149.99,03/28/19 15:15,"237 Spruce St, Boston, MA 02215" -176449,AA Batteries (4-pack),1,3.84,03/01/19 22:39,"413 West St, San Francisco, CA 94016" -176450,AA Batteries (4-pack),1,3.84,03/14/19 16:58,"706 Lincoln St, Portland, OR 97035" -176451,iPhone,1,700,03/10/19 16:51,"651 11th St, Austin, TX 73301" -176452,AA Batteries (4-pack),3,3.84,03/04/19 12:31,"20 Maple St, San Francisco, CA 94016" -176453,27in FHD Monitor,1,149.99,03/30/19 15:22,"397 14th St, New York City, NY 10001" -176454,Bose SoundSport Headphones,1,99.99,03/30/19 13:13,"793 Washington St, Los Angeles, CA 90001" -176455,34in Ultrawide Monitor,1,379.99,03/16/19 19:55,"601 River St, Austin, TX 73301" -176456,Bose SoundSport Headphones,1,99.99,03/23/19 15:40,"489 1st St, Seattle, WA 98101" -176457,Bose SoundSport Headphones,1,99.99,03/22/19 16:35,"265 Pine St, San Francisco, CA 94016" -176458,27in FHD Monitor,1,149.99,03/11/19 11:44,"213 Chestnut St, Los Angeles, CA 90001" -176459,Lightning Charging Cable,1,14.95,03/01/19 18:51,"33 Highland St, Austin, TX 73301" -176460,Macbook Pro Laptop,1,1700,03/26/19 14:12,"159 Highland St, Atlanta, GA 30301" -176461,iPhone,1,700,03/26/19 07:46,"136 7th St, Atlanta, GA 30301" -176462,AA Batteries (4-pack),1,3.84,03/02/19 20:12,"941 Washington St, Dallas, TX 75001" -176463,USB-C Charging Cable,1,11.95,03/28/19 08:38,"728 14th St, Portland, OR 97035" -176464,AAA Batteries (4-pack),3,2.99,03/25/19 20:45,"281 Hill St, Los Angeles, CA 90001" -176465,AAA Batteries (4-pack),1,2.99,03/17/19 17:17,"228 Johnson St, Seattle, WA 98101" -176466,Apple Airpods Headphones,1,150,03/06/19 18:54,"547 Cedar St, San Francisco, CA 94016" -176467,USB-C Charging Cable,1,11.95,03/26/19 21:02,"465 2nd St, Seattle, WA 98101" -176468,20in Monitor,1,109.99,03/23/19 11:33,"491 Lakeview St, Atlanta, GA 30301" -176469,AA Batteries (4-pack),1,3.84,03/18/19 11:28,"104 Maple St, Los Angeles, CA 90001" -176470,AAA Batteries (4-pack),1,2.99,03/15/19 00:33,"97 Chestnut St, New York City, NY 10001" -176471,AA Batteries (4-pack),1,3.84,03/24/19 13:27,"565 5th St, Boston, MA 02215" -176472,AAA Batteries (4-pack),3,2.99,03/06/19 17:30,"98 Jackson St, San Francisco, CA 94016" -176473,Lightning Charging Cable,2,14.95,03/11/19 12:00,"481 14th St, New York City, NY 10001" -176474,Lightning Charging Cable,1,14.95,03/09/19 19:43,"100 Highland St, Austin, TX 73301" -176475,Apple Airpods Headphones,1,150,03/01/19 21:06,"303 14th St, Austin, TX 73301" -176476,USB-C Charging Cable,1,11.95,03/01/19 09:39,"446 Elm St, San Francisco, CA 94016" -176477,27in 4K Gaming Monitor,1,389.99,03/04/19 13:13,"64 9th St, Los Angeles, CA 90001" -176478,Apple Airpods Headphones,1,150,03/01/19 14:37,"585 Center St, Boston, MA 02215" -176479,iPhone,1,700,03/29/19 14:42,"666 Lake St, Los Angeles, CA 90001" -176480,27in 4K Gaming Monitor,1,389.99,03/14/19 10:53,"859 7th St, Portland, OR 97035" -176481,AAA Batteries (4-pack),2,2.99,03/09/19 12:48,"131 Church St, Seattle, WA 98101" -176482,Bose SoundSport Headphones,1,99.99,03/12/19 12:28,"261 6th St, Seattle, WA 98101" -176483,Lightning Charging Cable,1,14.95,03/19/19 23:12,"217 Johnson St, New York City, NY 10001" -176484,iPhone,1,700,03/17/19 15:59,"985 Willow St, San Francisco, CA 94016" -176484,Wired Headphones,1,11.99,03/17/19 15:59,"985 Willow St, San Francisco, CA 94016" -176485,Flatscreen TV,1,300,03/01/19 22:25,"870 Ridge St, Boston, MA 02215" -176486,Bose SoundSport Headphones,1,99.99,03/02/19 20:37,"94 Lincoln St, Boston, MA 02215" -176486,Apple Airpods Headphones,1,150,03/02/19 20:37,"94 Lincoln St, Boston, MA 02215" -176487,iPhone,1,700,03/14/19 14:46,"92 Johnson St, Los Angeles, CA 90001" -176487,Lightning Charging Cable,1,14.95,03/14/19 14:46,"92 Johnson St, Los Angeles, CA 90001" -176488,Apple Airpods Headphones,1,150,03/30/19 13:25,"281 Chestnut St, San Francisco, CA 94016" -176489,Google Phone,1,600,03/10/19 19:19,"880 Hickory St, New York City, NY 10001" -176490,USB-C Charging Cable,1,11.95,03/01/19 07:06,"583 South St, New York City, NY 10001" -176491,27in FHD Monitor,1,149.99,03/03/19 19:02,"285 11th St, New York City, NY 10001" -176492,Apple Airpods Headphones,1,150,03/24/19 21:30,"802 River St, San Francisco, CA 94016" -176493,20in Monitor,1,109.99,03/19/19 10:17,"127 Highland St, Los Angeles, CA 90001" -176494,USB-C Charging Cable,1,11.95,03/28/19 19:51,"215 North St, Dallas, TX 75001" -176495,20in Monitor,1,109.99,03/19/19 18:48,"493 Cedar St, Portland, OR 97035" -176496,AAA Batteries (4-pack),2,2.99,03/25/19 12:22,"551 Cedar St, Seattle, WA 98101" -176497,20in Monitor,1,109.99,03/12/19 17:37,"95 Dogwood St, New York City, NY 10001" -176498,27in 4K Gaming Monitor,1,389.99,03/08/19 13:24,"292 Walnut St, New York City, NY 10001" -176499,AAA Batteries (4-pack),2,2.99,03/11/19 19:56,"511 Main St, Dallas, TX 75001" -176500,20in Monitor,1,109.99,03/15/19 23:22,"866 9th St, Atlanta, GA 30301" -176501,Wired Headphones,2,11.99,03/08/19 14:29,"110 Maple St, Los Angeles, CA 90001" -176502,20in Monitor,1,109.99,03/08/19 21:31,"413 Adams St, Portland, OR 97035" -176503,Bose SoundSport Headphones,1,99.99,03/15/19 21:33,"763 Sunset St, Boston, MA 02215" -176504,27in FHD Monitor,1,149.99,03/01/19 16:58,"851 Wilson St, San Francisco, CA 94016" -176505,Lightning Charging Cable,1,14.95,03/16/19 16:55,"887 Cedar St, San Francisco, CA 94016" -176506,Bose SoundSport Headphones,1,99.99,03/11/19 15:50,"120 West St, Boston, MA 02215" -176507,USB-C Charging Cable,1,11.95,03/06/19 14:18,"266 Johnson St, Los Angeles, CA 90001" -176508,USB-C Charging Cable,1,11.95,03/14/19 14:42,"603 Elm St, San Francisco, CA 94016" -176509,Apple Airpods Headphones,1,150,03/27/19 19:50,"707 Hickory St, Dallas, TX 75001" -176510,Bose SoundSport Headphones,1,99.99,03/25/19 16:14,"929 Lakeview St, San Francisco, CA 94016" -176511,USB-C Charging Cable,1,11.95,03/31/19 07:57,"929 Elm St, Seattle, WA 98101" -176512,Apple Airpods Headphones,1,150,03/12/19 12:36,"554 5th St, Boston, MA 02215" -176513,USB-C Charging Cable,1,11.95,03/06/19 21:08,"485 Madison St, Dallas, TX 75001" -176514,LG Washing Machine,1,600.0,03/13/19 19:35,"567 Main St, New York City, NY 10001" -176515,Lightning Charging Cable,1,14.95,03/07/19 19:00,"317 Lake St, Austin, TX 73301" -176516,34in Ultrawide Monitor,1,379.99,03/27/19 06:58,"277 2nd St, Portland, OR 97035" -176517,AAA Batteries (4-pack),2,2.99,03/25/19 02:25,"233 North St, Atlanta, GA 30301" -176518,Bose SoundSport Headphones,1,99.99,03/20/19 18:25,"222 Jackson St, San Francisco, CA 94016" -176519,27in 4K Gaming Monitor,1,389.99,03/26/19 19:41,"708 Church St, Portland, OR 97035" -176520,AAA Batteries (4-pack),1,2.99,03/24/19 22:12,"652 Meadow St, Los Angeles, CA 90001" -176521,27in 4K Gaming Monitor,1,389.99,03/11/19 12:58,"101 2nd St, Dallas, TX 75001" -176522,ThinkPad Laptop,1,999.99,03/06/19 08:22,"919 Spruce St, Seattle, WA 98101" -176523,USB-C Charging Cable,1,11.95,03/24/19 19:30,"874 9th St, New York City, NY 10001" -176524,20in Monitor,1,109.99,03/26/19 19:22,"710 River St, Seattle, WA 98101" -176525,AAA Batteries (4-pack),1,2.99,03/03/19 13:37,"698 9th St, New York City, NY 10001" -176526,AAA Batteries (4-pack),2,2.99,03/25/19 10:41,"577 13th St, Los Angeles, CA 90001" -176527,USB-C Charging Cable,1,11.95,03/11/19 14:29,"873 Dogwood St, Austin, TX 73301" -176528,USB-C Charging Cable,1,11.95,03/23/19 20:16,"268 Park St, Boston, MA 02215" -176529,AA Batteries (4-pack),1,3.84,03/04/19 21:40,"227 4th St, San Francisco, CA 94016" -176530,34in Ultrawide Monitor,1,379.99,03/30/19 19:17,"652 Spruce St, San Francisco, CA 94016" -176531,27in FHD Monitor,1,149.99,03/30/19 10:21,"890 Willow St, Atlanta, GA 30301" -176532,27in 4K Gaming Monitor,1,389.99,03/25/19 21:46,"492 12th St, Portland, OR 97035" -176533,USB-C Charging Cable,1,11.95,03/31/19 09:49,"997 Highland St, Dallas, TX 75001" -176534,Lightning Charging Cable,1,14.95,03/31/19 13:06,"963 Wilson St, Los Angeles, CA 90001" -176535,USB-C Charging Cable,1,11.95,03/23/19 18:43,"892 Walnut St, Dallas, TX 75001" -176536,Lightning Charging Cable,1,14.95,03/31/19 17:31,"645 Spruce St, Atlanta, GA 30301" -176537,Apple Airpods Headphones,1,150,03/12/19 07:33,"80 Church St, Austin, TX 73301" -176537,Apple Airpods Headphones,1,150,03/12/19 07:33,"80 Church St, Austin, TX 73301" -176538,USB-C Charging Cable,1,11.95,03/13/19 10:22,"962 Lake St, Portland, OR 97035" -176539,AAA Batteries (4-pack),3,2.99,03/23/19 09:46,"460 4th St, Dallas, TX 75001" -176540,Lightning Charging Cable,1,14.95,03/23/19 15:16,"142 4th St, Austin, TX 73301" -176541,Bose SoundSport Headphones,1,99.99,03/11/19 17:44,"674 Hickory St, Boston, MA 02215" -176542,Apple Airpods Headphones,1,150,03/26/19 15:34,"802 Lakeview St, Los Angeles, CA 90001" -176543,Flatscreen TV,1,300,03/09/19 15:49,"776 Spruce St, Los Angeles, CA 90001" -176544,Lightning Charging Cable,2,14.95,03/15/19 11:08,"436 8th St, Dallas, TX 75001" -176545,AAA Batteries (4-pack),2,2.99,03/21/19 10:59,"515 Center St, San Francisco, CA 94016" -176546,Wired Headphones,1,11.99,03/21/19 16:06,"3 Church St, Los Angeles, CA 90001" -176547,Wired Headphones,2,11.99,03/01/19 16:39,"998 Pine St, Boston, MA 02215" -176548,AAA Batteries (4-pack),1,2.99,03/16/19 15:36,"9 Sunset St, Portland, OR 97035" -176549,iPhone,1,700,03/20/19 01:24,"604 Park St, Los Angeles, CA 90001" -176550,Wired Headphones,1,11.99,03/01/19 22:30,"16 Sunset St, San Francisco, CA 94016" -176551,LG Washing Machine,1,600.0,03/20/19 23:49,"567 River St, San Francisco, CA 94016" -176552,Apple Airpods Headphones,1,150,03/08/19 14:07,"578 Main St, Los Angeles, CA 90001" -176553,USB-C Charging Cable,1,11.95,03/02/19 22:27,"437 Washington St, New York City, NY 10001" -176554,Lightning Charging Cable,1,14.95,03/24/19 11:14,"672 12th St, San Francisco, CA 94016" -176555,27in FHD Monitor,1,149.99,03/22/19 20:27,"42 4th St, San Francisco, CA 94016" -176556,AAA Batteries (4-pack),3,2.99,03/14/19 10:29,"871 7th St, Los Angeles, CA 90001" -176557,iPhone,1,700,03/30/19 12:32,"83 Washington St, San Francisco, CA 94016" -176557,Lightning Charging Cable,1,14.95,03/30/19 12:32,"83 Washington St, San Francisco, CA 94016" -194095,Wired Headphones,1,11.99,05/16/19 17:14,"669 2nd St, New York City, NY 10001" -194096,AA Batteries (4-pack),1,3.84,05/19/19 14:43,"844 Walnut St, Dallas, TX 75001" -194097,27in FHD Monitor,1,149.99,05/24/19 11:36,"164 Madison St, New York City, NY 10001" -194098,Wired Headphones,1,11.99,05/02/19 20:40,"622 Meadow St, Dallas, TX 75001" -194099,AAA Batteries (4-pack),2,2.99,05/11/19 22:55,"17 Church St, Seattle, WA 98101" -194100,iPhone,1,700.0,05/10/19 19:44,"81 Jefferson St, San Francisco, CA 94016" -194101,USB-C Charging Cable,1,11.95,05/11/19 22:44,"354 Meadow St, Boston, MA 02215" -194102,Lightning Charging Cable,1,14.95,05/07/19 12:49,"166 4th St, Dallas, TX 75001" -194103,27in FHD Monitor,1,149.99,05/24/19 18:28,"759 Pine St, Seattle, WA 98101" -194104,Wired Headphones,1,11.99,05/04/19 18:38,"330 1st St, Seattle, WA 98101" -194105,ThinkPad Laptop,1,999.99,05/13/19 09:07,"928 Hill St, Atlanta, GA 30301" -194106,USB-C Charging Cable,1,11.95,05/12/19 10:07,"261 Jackson St, San Francisco, CA 94016" -194107,34in Ultrawide Monitor,1,379.99,05/19/19 17:52,"451 Walnut St, New York City, NY 10001" -194108,AA Batteries (4-pack),1,3.84,05/22/19 18:15,"832 Lakeview St, Austin, TX 73301" -194109,AAA Batteries (4-pack),1,2.99,05/15/19 14:00,"202 11th St, Los Angeles, CA 90001" -194110,Google Phone,1,600.0,05/31/19 18:07,"498 14th St, Los Angeles, CA 90001" -194110,Wired Headphones,1,11.99,05/31/19 18:07,"498 14th St, Los Angeles, CA 90001" -194111,27in FHD Monitor,1,149.99,05/04/19 15:08,"99 Dogwood St, Dallas, TX 75001" -194112,Google Phone,1,600.0,05/29/19 21:13,"853 West St, Austin, TX 73301" -194113,Apple Airpods Headphones,1,150.0,05/10/19 22:33,"29 Adams St, Los Angeles, CA 90001" -194114,Wired Headphones,1,11.99,05/20/19 01:57,"857 River St, Atlanta, GA 30301" -194115,AAA Batteries (4-pack),1,2.99,05/30/19 20:29,"159 Lincoln St, Los Angeles, CA 90001" -194116,Lightning Charging Cable,1,14.95,05/19/19 23:19,"486 6th St, Boston, MA 02215" -194117,Lightning Charging Cable,1,14.95,05/12/19 08:44,"239 Madison St, Austin, TX 73301" -194118,AA Batteries (4-pack),1,3.84,05/18/19 22:54,"762 Maple St, Boston, MA 02215" -194119,Wired Headphones,3,11.99,05/07/19 07:15,"531 Jackson St, New York City, NY 10001" -194120,AAA Batteries (4-pack),1,2.99,05/11/19 21:53,"492 Washington St, Los Angeles, CA 90001" -194121,LG Dryer,1,600.0,05/10/19 20:41,"911 Hill St, Los Angeles, CA 90001" -194122,Wired Headphones,1,11.99,05/27/19 16:18,"573 Spruce St, Dallas, TX 75001" -194123,Apple Airpods Headphones,1,150.0,05/24/19 00:34,"546 Meadow St, Atlanta, GA 30301" -194124,iPhone,1,700.0,05/04/19 23:40,"937 North St, Portland, OR 97035" -194125,Bose SoundSport Headphones,1,99.99,05/19/19 21:33,"613 Lake St, San Francisco, CA 94016" -194126,AAA Batteries (4-pack),2,2.99,05/19/19 21:28,"549 Willow St, Los Angeles, CA 90001" -194127,Wired Headphones,1,11.99,05/15/19 14:46,"320 River St, Seattle, WA 98101" -194128,AAA Batteries (4-pack),2,2.99,05/03/19 18:15,"851 Wilson St, San Francisco, CA 94016" -194129,AA Batteries (4-pack),2,3.84,05/05/19 11:51,"487 Dogwood St, Seattle, WA 98101" -194130,34in Ultrawide Monitor,1,379.99,05/09/19 15:57,"847 Lakeview St, San Francisco, CA 94016" -194131,Bose SoundSport Headphones,1,99.99,05/07/19 10:44,"742 Jackson St, Seattle, WA 98101" -194132,iPhone,1,700.0,05/22/19 21:35,"478 Pine St, Seattle, WA 98101" -194133,Bose SoundSport Headphones,1,99.99,05/03/19 09:45,"776 Hill St, San Francisco, CA 94016" -194134,USB-C Charging Cable,1,11.95,05/27/19 18:22,"190 1st St, Los Angeles, CA 90001" -194135,Bose SoundSport Headphones,1,99.99,05/09/19 20:06,"589 10th St, Seattle, WA 98101" -194136,Wired Headphones,1,11.99,05/23/19 19:58,"702 14th St, Dallas, TX 75001" -194137,27in FHD Monitor,1,149.99,05/14/19 04:13,"666 Adams St, San Francisco, CA 94016" -194138,Lightning Charging Cable,1,14.95,05/01/19 21:55,"259 Center St, San Francisco, CA 94016" -194139,Apple Airpods Headphones,1,150.0,05/12/19 23:13,"362 2nd St, San Francisco, CA 94016" -194140,Lightning Charging Cable,1,14.95,05/07/19 23:57,"870 4th St, Austin, TX 73301" -194141,Wired Headphones,1,11.99,05/13/19 14:09,"807 Highland St, Boston, MA 02215" -194142,27in FHD Monitor,1,149.99,05/11/19 19:08,"48 Hickory St, Los Angeles, CA 90001" -194143,Apple Airpods Headphones,1,150.0,05/09/19 21:58,"87 Park St, San Francisco, CA 94016" -194144,USB-C Charging Cable,1,11.95,05/11/19 20:12,"550 5th St, Portland, OR 97035" -194145,AA Batteries (4-pack),1,3.84,05/23/19 12:27,"393 South St, New York City, NY 10001" -194146,AAA Batteries (4-pack),2,2.99,05/23/19 20:31,"164 Maple St, Atlanta, GA 30301" -194147,Flatscreen TV,1,300.0,05/18/19 10:18,"963 2nd St, New York City, NY 10001" -194148,27in 4K Gaming Monitor,1,389.99,05/21/19 07:37,"312 Church St, San Francisco, CA 94016" -194149,27in FHD Monitor,1,149.99,05/23/19 21:32,"585 8th St, San Francisco, CA 94016" -194150,Google Phone,1,600.0,05/04/19 20:34,"35 Willow St, Atlanta, GA 30301" -194151,AA Batteries (4-pack),1,3.84,05/28/19 23:03,"660 12th St, Los Angeles, CA 90001" -,,,,, -194152,USB-C Charging Cable,1,11.95,05/06/19 11:27,"859 Park St, Dallas, TX 75001" -194153,iPhone,1,700,05/12/19 11:11,"274 Sunset St, New York City, NY 10001" -194154,Bose SoundSport Headphones,1,99.99,05/20/19 10:38,"33 Wilson St, Austin, TX 73301" -194155,Apple Airpods Headphones,1,150,05/22/19 10:53,"50 11th St, San Francisco, CA 94016" -194156,Macbook Pro Laptop,1,1700,05/20/19 18:32,"67 12th St, Boston, MA 02215" -194157,AA Batteries (4-pack),1,3.84,05/30/19 00:21,"622 West St, Dallas, TX 75001" -194158,Lightning Charging Cable,1,14.95,05/13/19 15:47,"667 Jefferson St, Portland, OR 97035" -194159,Lightning Charging Cable,1,14.95,05/24/19 07:30,"976 1st St, Portland, OR 97035" -194160,Bose SoundSport Headphones,1,99.99,05/29/19 15:23,"31 Main St, Austin, TX 73301" -194161,Bose SoundSport Headphones,1,99.99,05/31/19 10:46,"643 Jackson St, Los Angeles, CA 90001" -194162,AA Batteries (4-pack),1,3.84,05/07/19 23:12,"956 Main St, Dallas, TX 75001" -194163,20in Monitor,1,109.99,05/03/19 12:51,"268 River St, Atlanta, GA 30301" -194164,34in Ultrawide Monitor,1,379.99,05/28/19 14:00,"755 Dogwood St, New York City, NY 10001" -194165,Apple Airpods Headphones,1,150,05/29/19 20:16,"725 Church St, San Francisco, CA 94016" -194166,Macbook Pro Laptop,1,1700,05/06/19 13:30,"435 North St, San Francisco, CA 94016" -194167,AA Batteries (4-pack),1,3.84,05/24/19 22:36,"187 Dogwood St, San Francisco, CA 94016" -194168,USB-C Charging Cable,2,11.95,05/20/19 13:16,"583 12th St, Portland, OR 97035" -194169,USB-C Charging Cable,1,11.95,05/01/19 18:01,"49 Lake St, Atlanta, GA 30301" -194170,Google Phone,1,600,05/30/19 12:30,"711 Maple St, San Francisco, CA 94016" -194170,USB-C Charging Cable,2,11.95,05/30/19 12:30,"711 Maple St, San Francisco, CA 94016" -194171,Vareebadd Phone,1,400,05/06/19 15:18,"498 Elm St, Atlanta, GA 30301" -194172,USB-C Charging Cable,2,11.95,05/08/19 09:21,"728 5th St, San Francisco, CA 94016" -194173,USB-C Charging Cable,1,11.95,05/30/19 14:09,"960 Lakeview St, Portland, OR 97035" -194174,iPhone,1,700,05/04/19 23:08,"37 North St, Seattle, WA 98101" -194174,Lightning Charging Cable,1,14.95,05/04/19 23:08,"37 North St, Seattle, WA 98101" -194174,Wired Headphones,2,11.99,05/04/19 23:08,"37 North St, Seattle, WA 98101" -194175,20in Monitor,1,109.99,05/26/19 17:08,"651 Cedar St, Austin, TX 73301" -194176,AA Batteries (4-pack),1,3.84,05/05/19 18:30,"154 Center St, San Francisco, CA 94016" -194177,Apple Airpods Headphones,1,150,05/22/19 20:51,"2 Highland St, New York City, NY 10001" -194178,Lightning Charging Cable,1,14.95,05/15/19 07:35,"441 Dogwood St, New York City, NY 10001" -194179,Flatscreen TV,1,300,05/10/19 22:51,"143 Spruce St, Boston, MA 02215" -194179,AAA Batteries (4-pack),2,2.99,05/10/19 22:51,"143 Spruce St, Boston, MA 02215" -194180,Bose SoundSport Headphones,1,99.99,05/06/19 17:21,"909 Ridge St, San Francisco, CA 94016" -194181,Macbook Pro Laptop,1,1700,05/21/19 21:50,"99 Jefferson St, New York City, NY 10001" -194182,Lightning Charging Cable,1,14.95,05/22/19 12:11,"272 11th St, Los Angeles, CA 90001" -194183,USB-C Charging Cable,1,11.95,05/20/19 16:48,"669 Lakeview St, Dallas, TX 75001" -194184,Lightning Charging Cable,1,14.95,05/18/19 10:57,"709 Center St, Dallas, TX 75001" -194185,Google Phone,1,600,05/05/19 20:34,"709 West St, San Francisco, CA 94016" -194186,iPhone,1,700,05/10/19 22:44,"495 Wilson St, Seattle, WA 98101" -194187,Macbook Pro Laptop,1,1700,05/09/19 18:06,"227 Hickory St, San Francisco, CA 94016" -194188,Apple Airpods Headphones,1,150,05/26/19 11:17,"622 Chestnut St, Los Angeles, CA 90001" -194189,AAA Batteries (4-pack),1,2.99,05/20/19 18:34,"684 Ridge St, New York City, NY 10001" -194190,27in FHD Monitor,1,149.99,05/05/19 12:29,"184 Jefferson St, New York City, NY 10001" -194191,27in 4K Gaming Monitor,1,389.99,05/22/19 10:20,"576 Willow St, San Francisco, CA 94016" -194192,Wired Headphones,1,11.99,05/14/19 18:00,"137 Jackson St, San Francisco, CA 94016" -194192,Bose SoundSport Headphones,1,99.99,05/14/19 18:00,"137 Jackson St, San Francisco, CA 94016" -194193,Bose SoundSport Headphones,1,99.99,05/04/19 11:32,"613 Sunset St, New York City, NY 10001" -194194,Wired Headphones,1,11.99,05/14/19 19:38,"110 Jackson St, Seattle, WA 98101" -194195,AAA Batteries (4-pack),1,2.99,05/06/19 10:01,"996 Jefferson St, Los Angeles, CA 90001" -194196,Wired Headphones,1,11.99,05/29/19 21:27,"741 Walnut St, Boston, MA 02215" -194197,AA Batteries (4-pack),3,3.84,05/28/19 20:20,"523 Spruce St, Los Angeles, CA 90001" -194198,Lightning Charging Cable,1,14.95,05/03/19 21:24,"370 10th St, Los Angeles, CA 90001" -,,,,, -194199,Lightning Charging Cable,1,14.95,05/18/19 11:51,"597 12th St, Seattle, WA 98101" -194200,AA Batteries (4-pack),1,3.84,05/22/19 20:33,"491 9th St, San Francisco, CA 94016" -194201,USB-C Charging Cable,1,11.95,05/03/19 17:06,"298 6th St, Portland, OR 97035" -194202,Apple Airpods Headphones,1,150,05/25/19 13:22,"341 4th St, Seattle, WA 98101" -194203,iPhone,1,700,05/10/19 16:38,"339 Cedar St, Portland, OR 97035" -194203,Lightning Charging Cable,1,14.95,05/10/19 16:38,"339 Cedar St, Portland, OR 97035" -194204,iPhone,1,700,05/07/19 21:18,"53 Highland St, Portland, OR 97035" -194205,iPhone,1,700,05/26/19 20:35,"920 Madison St, San Francisco, CA 94016" -194205,Wired Headphones,1,11.99,05/26/19 20:35,"920 Madison St, San Francisco, CA 94016" -194206,AA Batteries (4-pack),1,3.84,05/29/19 14:52,"853 Ridge St, Austin, TX 73301" -194207,USB-C Charging Cable,1,11.95,05/04/19 10:38,"728 Walnut St, New York City, NY 10001" -194208,Apple Airpods Headphones,1,150,05/16/19 10:40,"203 Madison St, Boston, MA 02215" -194209,ThinkPad Laptop,1,999.99,05/09/19 21:06,"800 Sunset St, Dallas, TX 75001" -194210,AAA Batteries (4-pack),2,2.99,05/23/19 18:37,"728 Dogwood St, New York City, NY 10001" -194211,Lightning Charging Cable,1,14.95,05/08/19 13:40,"107 Jackson St, Los Angeles, CA 90001" -194212,LG Washing Machine,1,600.0,05/22/19 20:40,"665 2nd St, Portland, ME 04101" -194213,Google Phone,1,600,05/09/19 10:18,"941 7th St, Dallas, TX 75001" -194214,AAA Batteries (4-pack),4,2.99,05/05/19 09:21,"866 9th St, Los Angeles, CA 90001" -194215,AAA Batteries (4-pack),1,2.99,05/16/19 23:11,"795 Pine St, Boston, MA 02215" -194216,Vareebadd Phone,1,400,05/26/19 15:02,"972 7th St, New York City, NY 10001" -194217,Flatscreen TV,1,300,05/11/19 19:50,"562 13th St, New York City, NY 10001" -194218,ThinkPad Laptop,1,999.99,05/31/19 14:38,"981 Washington St, Boston, MA 02215" -194219,Lightning Charging Cable,2,14.95,05/31/19 06:45,"276 Walnut St, San Francisco, CA 94016" -194220,Bose SoundSport Headphones,1,99.99,05/24/19 23:47,"990 10th St, Austin, TX 73301" -194221,27in 4K Gaming Monitor,1,389.99,05/23/19 09:59,"431 8th St, Los Angeles, CA 90001" -194222,AA Batteries (4-pack),2,3.84,05/14/19 16:02,"297 Johnson St, San Francisco, CA 94016" -194223,Flatscreen TV,1,300,05/16/19 04:53,"228 Wilson St, Portland, ME 04101" -194224,20in Monitor,1,109.99,05/27/19 16:25,"360 Highland St, San Francisco, CA 94016" -194225,Bose SoundSport Headphones,1,99.99,05/09/19 17:22,"958 Maple St, Boston, MA 02215" -194226,USB-C Charging Cable,1,11.95,05/16/19 00:10,"883 Sunset St, New York City, NY 10001" -194227,AAA Batteries (4-pack),1,2.99,05/29/19 19:36,"680 Johnson St, New York City, NY 10001" -194228,iPhone,1,700,05/20/19 11:52,"558 1st St, New York City, NY 10001" -194229,Vareebadd Phone,1,400,05/09/19 18:22,"815 Chestnut St, New York City, NY 10001" -194230,USB-C Charging Cable,1,11.95,05/30/19 20:03,"605 Hickory St, San Francisco, CA 94016" -194231,Wired Headphones,1,11.99,05/02/19 13:41,"949 10th St, Portland, OR 97035" -194232,27in 4K Gaming Monitor,1,389.99,05/07/19 07:53,"145 9th St, New York City, NY 10001" -194233,Apple Airpods Headphones,1,150,05/04/19 17:16,"616 Sunset St, San Francisco, CA 94016" -194234,AA Batteries (4-pack),1,3.84,05/04/19 17:21,"949 Cedar St, San Francisco, CA 94016" -194235,Apple Airpods Headphones,1,150,05/16/19 12:51,"506 Chestnut St, Seattle, WA 98101" -194236,USB-C Charging Cable,1,11.95,05/16/19 16:44,"95 7th St, Seattle, WA 98101" -194237,USB-C Charging Cable,1,11.95,05/29/19 16:29,"342 8th St, Austin, TX 73301" -194238,27in FHD Monitor,1,149.99,05/14/19 13:11,"816 Forest St, San Francisco, CA 94016" -194239,USB-C Charging Cable,1,11.95,05/17/19 20:22,"349 Walnut St, San Francisco, CA 94016" -194240,USB-C Charging Cable,1,11.95,05/21/19 20:36,"909 11th St, New York City, NY 10001" -194241,USB-C Charging Cable,1,11.95,05/16/19 13:55,"104 South St, New York City, NY 10001" -194242,20in Monitor,1,109.99,05/24/19 20:18,"252 Johnson St, San Francisco, CA 94016" -194243,Apple Airpods Headphones,1,150,05/06/19 21:33,"206 Forest St, Los Angeles, CA 90001" -194244,Wired Headphones,1,11.99,05/18/19 12:04,"610 Ridge St, Portland, OR 97035" -194245,Macbook Pro Laptop,1,1700,05/26/19 16:50,"93 Hickory St, Los Angeles, CA 90001" -194246,27in 4K Gaming Monitor,1,389.99,05/10/19 17:34,"675 Main St, San Francisco, CA 94016" -194247,USB-C Charging Cable,1,11.95,05/23/19 17:26,"661 Sunset St, Los Angeles, CA 90001" -194248,AA Batteries (4-pack),2,3.84,05/04/19 11:56,"484 6th St, San Francisco, CA 94016" -194249,AAA Batteries (4-pack),1,2.99,05/30/19 23:53,"400 Washington St, San Francisco, CA 94016" -194250,AAA Batteries (4-pack),1,2.99,05/11/19 01:10,"991 Cherry St, Austin, TX 73301" -194251,Bose SoundSport Headphones,1,99.99,05/17/19 22:25,"100 Washington St, Seattle, WA 98101" -194252,Apple Airpods Headphones,1,150,05/09/19 08:53,"172 Elm St, New York City, NY 10001" -194253,iPhone,1,700,05/07/19 09:42,"108 Adams St, Austin, TX 73301" -194253,Lightning Charging Cable,1,14.95,05/07/19 09:42,"108 Adams St, Austin, TX 73301" -194253,Wired Headphones,1,11.99,05/07/19 09:42,"108 Adams St, Austin, TX 73301" -194253,USB-C Charging Cable,1,11.95,05/07/19 09:42,"108 Adams St, Austin, TX 73301" -194254,AAA Batteries (4-pack),1,2.99,05/13/19 13:17,"899 Main St, San Francisco, CA 94016" -194255,AA Batteries (4-pack),1,3.84,05/29/19 21:45,"127 Lake St, Austin, TX 73301" -194256,Bose SoundSport Headphones,1,99.99,05/03/19 13:11,"89 Pine St, Dallas, TX 75001" -194257,27in 4K Gaming Monitor,1,389.99,05/19/19 15:19,"317 Forest St, San Francisco, CA 94016" -194258,Macbook Pro Laptop,1,1700,05/24/19 18:17,"454 12th St, New York City, NY 10001" -194259,USB-C Charging Cable,1,11.95,05/28/19 16:24,"356 Park St, Los Angeles, CA 90001" -194260,Apple Airpods Headphones,1,150,05/21/19 11:07,"252 Dogwood St, Los Angeles, CA 90001" -194261,Bose SoundSport Headphones,1,99.99,05/14/19 16:48,"689 10th St, New York City, NY 10001" -194262,Wired Headphones,1,11.99,05/04/19 20:50,"888 Hill St, Seattle, WA 98101" -194263,USB-C Charging Cable,2,11.95,05/29/19 19:53,"865 Center St, Seattle, WA 98101" -194264,Wired Headphones,1,11.99,05/28/19 23:01,"996 Johnson St, Portland, OR 97035" -194265,AAA Batteries (4-pack),1,2.99,05/18/19 12:24,"65 Pine St, New York City, NY 10001" -194266,USB-C Charging Cable,1,11.95,05/22/19 21:15,"187 Park St, Atlanta, GA 30301" -194267,27in 4K Gaming Monitor,1,389.99,05/17/19 22:08,"299 Adams St, Atlanta, GA 30301" -194268,Lightning Charging Cable,1,14.95,05/13/19 11:18,"711 10th St, Austin, TX 73301" -194269,Lightning Charging Cable,1,14.95,05/08/19 13:03,"750 Pine St, Los Angeles, CA 90001" -194270,27in FHD Monitor,1,149.99,05/30/19 19:20,"902 Cherry St, New York City, NY 10001" -194271,Wired Headphones,1,11.99,05/28/19 22:37,"673 Jackson St, Los Angeles, CA 90001" -194272,Apple Airpods Headphones,1,150,05/06/19 14:23,"817 2nd St, Los Angeles, CA 90001" -194273,AAA Batteries (4-pack),4,2.99,05/22/19 20:14,"789 Cherry St, Seattle, WA 98101" -194274,AA Batteries (4-pack),1,3.84,05/04/19 11:04,"626 Spruce St, Los Angeles, CA 90001" -194275,Lightning Charging Cable,1,14.95,05/14/19 17:49,"258 4th St, Dallas, TX 75001" -194276,34in Ultrawide Monitor,1,379.99,05/02/19 17:21,"632 Church St, New York City, NY 10001" -194277,27in FHD Monitor,1,149.99,05/10/19 09:41,"751 8th St, New York City, NY 10001" -194278,20in Monitor,1,109.99,05/18/19 21:27,"553 Walnut St, Portland, ME 04101" -194279,USB-C Charging Cable,1,11.95,05/06/19 15:51,"739 Center St, Los Angeles, CA 90001" -194280,AA Batteries (4-pack),1,3.84,05/08/19 09:20,"905 7th St, New York City, NY 10001" -194281,Lightning Charging Cable,1,14.95,05/13/19 12:08,"71 Adams St, Boston, MA 02215" -194282,34in Ultrawide Monitor,1,379.99,05/25/19 06:32,"319 Walnut St, Boston, MA 02215" -194283,USB-C Charging Cable,1,11.95,05/13/19 19:09,"395 5th St, San Francisco, CA 94016" -194284,Apple Airpods Headphones,1,150,05/21/19 09:46,"345 Spruce St, Seattle, WA 98101" -194285,Apple Airpods Headphones,1,150,05/30/19 22:18,"838 Elm St, San Francisco, CA 94016" -194286,20in Monitor,1,109.99,05/20/19 10:17,"629 Washington St, Dallas, TX 75001" -194287,Apple Airpods Headphones,1,150,05/12/19 21:04,"899 Elm St, Seattle, WA 98101" -194288,AA Batteries (4-pack),1,3.84,05/25/19 20:16,"164 4th St, Los Angeles, CA 90001" -194289,iPhone,1,700,05/28/19 21:05,"974 Cedar St, Dallas, TX 75001" -194290,Lightning Charging Cable,1,14.95,05/01/19 17:00,"884 West St, Los Angeles, CA 90001" -194291,Apple Airpods Headphones,1,150,05/23/19 07:54,"589 Walnut St, Seattle, WA 98101" -194292,USB-C Charging Cable,1,11.95,05/27/19 11:19,"223 Maple St, San Francisco, CA 94016" -194293,34in Ultrawide Monitor,1,379.99,05/16/19 19:09,"910 Madison St, Boston, MA 02215" -194294,Macbook Pro Laptop,1,1700,05/31/19 20:44,"365 Ridge St, New York City, NY 10001" -194294,Bose SoundSport Headphones,1,99.99,05/31/19 20:44,"365 Ridge St, New York City, NY 10001" -194295,Wired Headphones,1,11.99,05/20/19 21:02,"547 9th St, Atlanta, GA 30301" -194296,AAA Batteries (4-pack),1,2.99,05/24/19 16:59,"678 Chestnut St, New York City, NY 10001" -194297,Lightning Charging Cable,1,14.95,05/29/19 13:20,"779 Washington St, San Francisco, CA 94016" -194298,Lightning Charging Cable,1,14.95,05/14/19 20:28,"628 Jefferson St, Seattle, WA 98101" -194299,USB-C Charging Cable,1,11.95,05/08/19 21:21,"826 Dogwood St, Seattle, WA 98101" -194300,Bose SoundSport Headphones,1,99.99,05/12/19 10:06,"989 Hill St, New York City, NY 10001" -194301,Wired Headphones,1,11.99,05/10/19 18:17,"397 Cedar St, Los Angeles, CA 90001" -194302,Apple Airpods Headphones,1,150,05/06/19 05:41,"834 Adams St, San Francisco, CA 94016" -194303,iPhone,1,700,05/07/19 19:31,"596 West St, New York City, NY 10001" -194304,LG Dryer,1,600.0,05/27/19 16:59,"796 West St, Dallas, TX 75001" -194305,AAA Batteries (4-pack),4,2.99,05/25/19 11:04,"818 Wilson St, Los Angeles, CA 90001" -194306,Bose SoundSport Headphones,1,99.99,05/28/19 14:49,"918 1st St, San Francisco, CA 94016" -194307,Macbook Pro Laptop,1,1700,05/25/19 15:30,"300 Elm St, San Francisco, CA 94016" -194308,USB-C Charging Cable,1,11.95,05/18/19 08:02,"980 Willow St, Los Angeles, CA 90001" -194309,27in 4K Gaming Monitor,1,389.99,05/14/19 18:28,"450 Church St, Atlanta, GA 30301" -194310,AA Batteries (4-pack),2,3.84,05/05/19 09:57,"126 Church St, Seattle, WA 98101" -194311,Apple Airpods Headphones,1,150,05/19/19 12:06,"631 14th St, New York City, NY 10001" -194312,AAA Batteries (4-pack),1,2.99,05/08/19 19:09,"658 Church St, Portland, OR 97035" -194313,Wired Headphones,1,11.99,05/30/19 18:24,"39 5th St, Seattle, WA 98101" -194314,Google Phone,1,600,05/04/19 11:11,"941 8th St, New York City, NY 10001" -194314,USB-C Charging Cable,1,11.95,05/04/19 11:11,"941 8th St, New York City, NY 10001" -194314,Wired Headphones,1,11.99,05/04/19 11:11,"941 8th St, New York City, NY 10001" -194315,iPhone,1,700,05/16/19 00:50,"2 Center St, Austin, TX 73301" -194316,34in Ultrawide Monitor,1,379.99,05/20/19 15:06,"663 Elm St, Los Angeles, CA 90001" -194317,Flatscreen TV,1,300,05/31/19 21:30,"493 Lincoln St, New York City, NY 10001" -194318,AA Batteries (4-pack),1,3.84,05/18/19 21:53,"342 1st St, San Francisco, CA 94016" -194319,AAA Batteries (4-pack),1,2.99,05/14/19 21:00,"68 12th St, Seattle, WA 98101" -194320,iPhone,1,700,05/17/19 05:53,"180 Adams St, New York City, NY 10001" -194320,Lightning Charging Cable,1,14.95,05/17/19 05:53,"180 Adams St, New York City, NY 10001" -194321,LG Washing Machine,1,600.0,05/14/19 06:59,"761 Lakeview St, Portland, OR 97035" -194322,Bose SoundSport Headphones,1,99.99,05/10/19 10:58,"793 5th St, Boston, MA 02215" -194323,Apple Airpods Headphones,1,150,05/08/19 14:48,"185 River St, Austin, TX 73301" -194324,Wired Headphones,1,11.99,05/11/19 08:39,"141 1st St, Boston, MA 02215" -194325,Wired Headphones,1,11.99,05/23/19 18:18,"960 Park St, San Francisco, CA 94016" -194326,AA Batteries (4-pack),1,3.84,05/14/19 21:37,"428 13th St, Boston, MA 02215" -194327,iPhone,1,700,05/10/19 17:42,"984 6th St, Austin, TX 73301" -194328,LG Dryer,1,600.0,05/31/19 14:01,"844 Cedar St, Atlanta, GA 30301" -194329,AAA Batteries (4-pack),1,2.99,05/22/19 14:15,"515 Church St, San Francisco, CA 94016" -194330,Wired Headphones,1,11.99,05/25/19 22:35,"273 Walnut St, San Francisco, CA 94016" -194331,USB-C Charging Cable,1,11.95,05/17/19 20:35,"526 Lake St, Boston, MA 02215" -194332,Lightning Charging Cable,1,14.95,05/27/19 15:10,"912 Willow St, San Francisco, CA 94016" -194333,Google Phone,1,600,05/23/19 21:40,"383 2nd St, Portland, OR 97035" -194334,AA Batteries (4-pack),1,3.84,05/04/19 15:48,"494 2nd St, Atlanta, GA 30301" -194335,Macbook Pro Laptop,1,1700,05/16/19 12:05,"53 Ridge St, Portland, OR 97035" -194336,Wired Headphones,1,11.99,05/30/19 05:04,"361 11th St, Los Angeles, CA 90001" -194337,34in Ultrawide Monitor,1,379.99,05/30/19 12:45,"176 7th St, Atlanta, GA 30301" -194338,AA Batteries (4-pack),1,3.84,05/01/19 16:38,"139 11th St, New York City, NY 10001" -194339,27in 4K Gaming Monitor,1,389.99,05/04/19 14:57,"910 Lincoln St, New York City, NY 10001" -194340,USB-C Charging Cable,1,11.95,05/22/19 17:35,"597 Washington St, San Francisco, CA 94016" -194341,20in Monitor,1,109.99,05/21/19 11:30,"659 Highland St, Atlanta, GA 30301" -194342,27in 4K Gaming Monitor,1,389.99,05/23/19 17:01,"460 Wilson St, Los Angeles, CA 90001" -194343,AAA Batteries (4-pack),2,2.99,05/28/19 17:26,"21 Highland St, San Francisco, CA 94016" -194343,AA Batteries (4-pack),1,3.84,05/28/19 17:26,"21 Highland St, San Francisco, CA 94016" -194344,Wired Headphones,1,11.99,05/08/19 08:44,"287 Church St, New York City, NY 10001" -194345,AA Batteries (4-pack),2,3.84,05/16/19 09:25,"734 Hickory St, New York City, NY 10001" -194346,Wired Headphones,1,11.99,05/29/19 18:00,"366 Jackson St, Los Angeles, CA 90001" -194347,Wired Headphones,1,11.99,05/26/19 00:22,"196 Jefferson St, Atlanta, GA 30301" -194348,20in Monitor,1,109.99,05/18/19 20:03,"153 10th St, New York City, NY 10001" -194349,ThinkPad Laptop,1,999.99,05/11/19 21:09,"186 Jackson St, Dallas, TX 75001" -194350,AAA Batteries (4-pack),2,2.99,05/10/19 12:00,"564 Sunset St, San Francisco, CA 94016" -194351,Macbook Pro Laptop,1,1700,05/01/19 13:23,"853 Willow St, Austin, TX 73301" -194352,ThinkPad Laptop,1,999.99,05/21/19 16:09,"11 6th St, San Francisco, CA 94016" -194353,27in FHD Monitor,1,149.99,05/05/19 12:58,"297 12th St, Austin, TX 73301" -194354,Bose SoundSport Headphones,1,99.99,05/06/19 12:49,"844 Madison St, New York City, NY 10001" -194355,27in FHD Monitor,1,149.99,05/27/19 15:55,"196 Cherry St, Portland, OR 97035" -194356,Bose SoundSport Headphones,1,99.99,05/07/19 22:16,"773 Cherry St, Austin, TX 73301" -194357,USB-C Charging Cable,1,11.95,05/08/19 10:24,"601 West St, San Francisco, CA 94016" -194358,ThinkPad Laptop,1,999.99,05/30/19 12:02,"135 Jackson St, Seattle, WA 98101" -194359,AAA Batteries (4-pack),1,2.99,05/07/19 12:53,"442 Park St, Dallas, TX 75001" -194360,AA Batteries (4-pack),1,3.84,05/17/19 07:32,"768 Walnut St, Los Angeles, CA 90001" -194361,USB-C Charging Cable,1,11.95,05/14/19 18:54,"316 11th St, New York City, NY 10001" -194362,iPhone,1,700,05/22/19 18:56,"988 Cherry St, New York City, NY 10001" -194363,Wired Headphones,1,11.99,05/23/19 15:27,"841 Lincoln St, Boston, MA 02215" -194364,Flatscreen TV,1,300,05/01/19 12:01,"672 5th St, San Francisco, CA 94016" -194365,AA Batteries (4-pack),3,3.84,05/14/19 20:57,"924 13th St, Los Angeles, CA 90001" -194366,34in Ultrawide Monitor,1,379.99,05/16/19 23:43,"642 Elm St, Atlanta, GA 30301" -194367,Lightning Charging Cable,1,14.95,05/02/19 20:03,"99 Jackson St, San Francisco, CA 94016" -194368,AA Batteries (4-pack),2,3.84,05/08/19 16:36,"831 Walnut St, Los Angeles, CA 90001" -194369,AAA Batteries (4-pack),3,2.99,05/22/19 07:29,"298 4th St, Austin, TX 73301" -194370,iPhone,1,700,05/29/19 08:41,"697 Maple St, Los Angeles, CA 90001" -194370,ThinkPad Laptop,1,999.99,05/29/19 08:41,"697 Maple St, Los Angeles, CA 90001" -194371,Wired Headphones,1,11.99,05/04/19 19:37,"817 Dogwood St, San Francisco, CA 94016" -194372,iPhone,1,700,05/27/19 07:58,"240 Spruce St, Austin, TX 73301" -194373,AAA Batteries (4-pack),1,2.99,05/07/19 22:51,"500 Chestnut St, Seattle, WA 98101" -194374,AA Batteries (4-pack),1,3.84,05/20/19 20:03,"215 Hill St, Atlanta, GA 30301" -194375,20in Monitor,1,109.99,05/25/19 16:05,"602 Washington St, New York City, NY 10001" -194376,Bose SoundSport Headphones,1,99.99,05/02/19 14:32,"304 7th St, Los Angeles, CA 90001" -194377,iPhone,1,700,05/27/19 19:21,"565 Wilson St, San Francisco, CA 94016" -194378,Google Phone,1,600,05/23/19 16:07,"865 Jackson St, San Francisco, CA 94016" -194378,Bose SoundSport Headphones,1,99.99,05/23/19 16:07,"865 Jackson St, San Francisco, CA 94016" -194379,Wired Headphones,1,11.99,05/03/19 18:46,"197 Dogwood St, Los Angeles, CA 90001" -194380,Apple Airpods Headphones,1,150,05/05/19 12:05,"589 2nd St, Los Angeles, CA 90001" -194381,USB-C Charging Cable,1,11.95,05/23/19 01:57,"853 Hickory St, San Francisco, CA 94016" -194382,Vareebadd Phone,1,400,05/20/19 14:54,"897 Wilson St, San Francisco, CA 94016" -194382,Bose SoundSport Headphones,1,99.99,05/20/19 14:54,"897 Wilson St, San Francisco, CA 94016" -194383,USB-C Charging Cable,1,11.95,05/09/19 20:31,"384 Ridge St, San Francisco, CA 94016" -194384,Lightning Charging Cable,1,14.95,05/07/19 04:18,"181 Meadow St, Boston, MA 02215" -194385,Bose SoundSport Headphones,1,99.99,05/31/19 19:13,"399 12th St, San Francisco, CA 94016" -194386,Lightning Charging Cable,1,14.95,05/13/19 19:10,"110 Church St, Boston, MA 02215" -194387,Bose SoundSport Headphones,1,99.99,05/25/19 11:31,"477 Highland St, Los Angeles, CA 90001" -194388,27in 4K Gaming Monitor,1,389.99,05/19/19 13:24,"724 Wilson St, Los Angeles, CA 90001" -194389,AA Batteries (4-pack),2,3.84,05/30/19 10:13,"7 9th St, Seattle, WA 98101" -194390,Lightning Charging Cable,1,14.95,05/20/19 18:51,"83 Chestnut St, New York City, NY 10001" -194391,iPhone,1,700,05/01/19 13:38,"906 4th St, New York City, NY 10001" -194392,Bose SoundSport Headphones,1,99.99,05/06/19 18:11,"640 South St, Boston, MA 02215" -194393,Lightning Charging Cable,1,14.95,05/24/19 18:45,"852 Center St, Boston, MA 02215" -194394,iPhone,1,700,05/10/19 17:14,"888 Spruce St, San Francisco, CA 94016" -194395,Wired Headphones,1,11.99,05/20/19 09:57,"434 Pine St, Seattle, WA 98101" -194396,Apple Airpods Headphones,1,150,05/14/19 02:41,"788 8th St, San Francisco, CA 94016" -194397,AA Batteries (4-pack),1,3.84,05/16/19 03:03,"542 North St, San Francisco, CA 94016" -194398,AAA Batteries (4-pack),1,2.99,05/07/19 20:03,"513 Washington St, Portland, OR 97035" -194399,Lightning Charging Cable,2,14.95,05/22/19 18:58,"569 Forest St, San Francisco, CA 94016" -194400,AAA Batteries (4-pack),2,2.99,05/31/19 11:37,"860 Cherry St, Los Angeles, CA 90001" -194401,Apple Airpods Headphones,1,150,05/22/19 09:47,"475 9th St, Los Angeles, CA 90001" -194402,AAA Batteries (4-pack),1,2.99,05/29/19 09:28,"408 Lake St, San Francisco, CA 94016" -194403,iPhone,1,700,05/08/19 20:21,"197 11th St, Los Angeles, CA 90001" -194404,AA Batteries (4-pack),1,3.84,05/10/19 20:59,"744 Lincoln St, Austin, TX 73301" -194405,Lightning Charging Cable,1,14.95,05/25/19 10:19,"91 Lake St, Dallas, TX 75001" -194406,AA Batteries (4-pack),3,3.84,05/15/19 16:06,"127 Johnson St, San Francisco, CA 94016" -194407,Lightning Charging Cable,1,14.95,05/11/19 09:47,"191 Center St, Portland, OR 97035" -194408,Bose SoundSport Headphones,1,99.99,05/24/19 15:59,"523 Park St, Boston, MA 02215" -194409,AAA Batteries (4-pack),2,2.99,05/15/19 20:19,"325 North St, Los Angeles, CA 90001" -194410,AAA Batteries (4-pack),1,2.99,05/14/19 17:07,"702 Elm St, Seattle, WA 98101" -194411,27in 4K Gaming Monitor,1,389.99,05/08/19 10:45,"593 4th St, Seattle, WA 98101" -194412,AA Batteries (4-pack),1,3.84,05/12/19 10:32,"942 6th St, Dallas, TX 75001" -194413,27in FHD Monitor,1,149.99,05/14/19 11:55,"612 2nd St, Los Angeles, CA 90001" -194414,USB-C Charging Cable,3,11.95,05/22/19 09:06,"609 Meadow St, Los Angeles, CA 90001" -194415,AA Batteries (4-pack),1,3.84,05/17/19 13:44,"824 Pine St, San Francisco, CA 94016" -194416,Google Phone,1,600,05/03/19 08:35,"992 Sunset St, New York City, NY 10001" -194416,USB-C Charging Cable,1,11.95,05/03/19 08:35,"992 Sunset St, New York City, NY 10001" -194417,27in FHD Monitor,1,149.99,05/04/19 06:27,"87 Cherry St, San Francisco, CA 94016" -194418,USB-C Charging Cable,2,11.95,05/25/19 17:32,"651 Pine St, Portland, ME 04101" -194419,Wired Headphones,1,11.99,05/23/19 06:51,"360 Cedar St, New York City, NY 10001" -194420,Apple Airpods Headphones,1,150,05/09/19 11:05,"27 South St, New York City, NY 10001" -194421,AAA Batteries (4-pack),1,2.99,05/12/19 07:45,"823 Jefferson St, Austin, TX 73301" -194422,Apple Airpods Headphones,1,150,05/31/19 14:01,"319 Walnut St, Dallas, TX 75001" -194423,27in FHD Monitor,1,149.99,05/22/19 19:54,"212 Chestnut St, New York City, NY 10001" -194424,Apple Airpods Headphones,1,150,05/30/19 08:17,"228 Pine St, Portland, OR 97035" -194425,Wired Headphones,1,11.99,05/15/19 15:02,"577 South St, Atlanta, GA 30301" -194426,Google Phone,1,600,05/04/19 14:40,"783 Sunset St, Dallas, TX 75001" -194426,Bose SoundSport Headphones,1,99.99,05/04/19 14:40,"783 Sunset St, Dallas, TX 75001" -194427,Bose SoundSport Headphones,1,99.99,05/01/19 15:33,"467 Meadow St, Portland, OR 97035" -194428,Macbook Pro Laptop,1,1700,05/04/19 16:37,"699 Elm St, Boston, MA 02215" -194429,AA Batteries (4-pack),1,3.84,05/29/19 19:21,"563 2nd St, Los Angeles, CA 90001" -194430,Vareebadd Phone,1,400,05/04/19 10:35,"234 Main St, Seattle, WA 98101" -194431,Bose SoundSport Headphones,1,99.99,05/02/19 13:15,"902 Adams St, Boston, MA 02215" -194432,Lightning Charging Cable,1,14.95,05/05/19 08:27,"569 Church St, New York City, NY 10001" -194433,Flatscreen TV,1,300,05/31/19 16:36,"611 Madison St, San Francisco, CA 94016" -194434,Apple Airpods Headphones,1,150,05/30/19 19:10,"309 8th St, New York City, NY 10001" -194435,Apple Airpods Headphones,1,150,05/08/19 15:43,"865 9th St, San Francisco, CA 94016" -194436,Bose SoundSport Headphones,1,99.99,05/29/19 13:27,"115 West St, Boston, MA 02215" -194437,AAA Batteries (4-pack),4,2.99,05/27/19 21:50,"963 Willow St, New York City, NY 10001" -194438,AAA Batteries (4-pack),2,2.99,05/10/19 08:29,"321 11th St, Seattle, WA 98101" -194439,27in 4K Gaming Monitor,1,389.99,05/13/19 13:59,"105 8th St, San Francisco, CA 94016" -194440,AAA Batteries (4-pack),2,2.99,05/01/19 18:58,"741 Hill St, Boston, MA 02215" -194441,Bose SoundSport Headphones,1,99.99,05/14/19 19:48,"996 Meadow St, Boston, MA 02215" -194442,Google Phone,1,600,05/14/19 21:17,"179 9th St, Atlanta, GA 30301" -194443,20in Monitor,1,109.99,05/05/19 16:10,"109 Ridge St, Dallas, TX 75001" -194444,AA Batteries (4-pack),1,3.84,05/15/19 08:50,"251 Sunset St, Austin, TX 73301" -194445,USB-C Charging Cable,1,11.95,05/15/19 08:07,"950 12th St, Austin, TX 73301" -194446,Flatscreen TV,1,300,05/02/19 07:54,"383 5th St, Los Angeles, CA 90001" -194447,USB-C Charging Cable,1,11.95,05/14/19 09:55,"562 Hill St, New York City, NY 10001" -194448,USB-C Charging Cable,1,11.95,05/01/19 12:39,"10 Jefferson St, Boston, MA 02215" -194449,Bose SoundSport Headphones,1,99.99,05/08/19 12:05,"379 Walnut St, San Francisco, CA 94016" -194450,Wired Headphones,2,11.99,05/06/19 12:36,"404 Forest St, San Francisco, CA 94016" -194451,Wired Headphones,1,11.99,05/22/19 04:37,"779 Spruce St, Atlanta, GA 30301" -194452,iPhone,1,700,05/19/19 23:02,"188 12th St, Portland, OR 97035" -194453,USB-C Charging Cable,1,11.95,05/13/19 10:35,"904 Maple St, Boston, MA 02215" -194454,USB-C Charging Cable,2,11.95,05/05/19 15:45,"890 Cherry St, Los Angeles, CA 90001" -194455,AAA Batteries (4-pack),3,2.99,05/31/19 19:31,"527 8th St, Boston, MA 02215" -194456,AAA Batteries (4-pack),3,2.99,05/04/19 14:18,"139 Hickory St, Seattle, WA 98101" -194457,Lightning Charging Cable,1,14.95,05/28/19 13:59,"800 Walnut St, San Francisco, CA 94016" -194458,AA Batteries (4-pack),1,3.84,05/04/19 08:56,"846 Spruce St, New York City, NY 10001" -194459,Lightning Charging Cable,1,14.95,05/29/19 22:07,"389 Church St, San Francisco, CA 94016" -194460,Vareebadd Phone,1,400,05/08/19 11:17,"936 Elm St, Atlanta, GA 30301" -194461,Bose SoundSport Headphones,1,99.99,05/08/19 10:24,"646 8th St, San Francisco, CA 94016" -194462,Bose SoundSport Headphones,1,99.99,05/31/19 18:35,"796 Jefferson St, Atlanta, GA 30301" -194463,USB-C Charging Cable,1,11.95,05/22/19 11:33,"244 Lincoln St, San Francisco, CA 94016" -194464,27in 4K Gaming Monitor,1,389.99,05/26/19 15:41,"281 Dogwood St, Austin, TX 73301" -194465,Flatscreen TV,1,300,05/06/19 23:19,"944 Lakeview St, Atlanta, GA 30301" -194466,Flatscreen TV,1,300,05/24/19 19:22,"29 11th St, Seattle, WA 98101" -194467,Bose SoundSport Headphones,1,99.99,05/25/19 22:37,"440 Washington St, Los Angeles, CA 90001" -194468,Apple Airpods Headphones,1,150,05/01/19 20:57,"565 West St, Boston, MA 02215" -194469,27in FHD Monitor,1,149.99,05/09/19 16:33,"187 12th St, New York City, NY 10001" -194470,27in FHD Monitor,1,149.99,05/31/19 06:40,"99 Meadow St, Dallas, TX 75001" -194471,USB-C Charging Cable,1,11.95,05/05/19 13:38,"348 Highland St, Boston, MA 02215" -194472,Lightning Charging Cable,1,14.95,05/08/19 13:48,"937 North St, Seattle, WA 98101" -194473,Wired Headphones,1,11.99,05/28/19 16:47,"702 Lakeview St, San Francisco, CA 94016" -194474,Wired Headphones,1,11.99,05/09/19 07:49,"281 Chestnut St, San Francisco, CA 94016" -194474,USB-C Charging Cable,1,11.95,05/09/19 07:49,"281 Chestnut St, San Francisco, CA 94016" -194475,AAA Batteries (4-pack),3,2.99,05/24/19 23:09,"413 Hill St, Austin, TX 73301" -194476,Wired Headphones,1,11.99,05/24/19 20:21,"320 Park St, San Francisco, CA 94016" -194477,Flatscreen TV,1,300,05/09/19 15:20,"717 12th St, Seattle, WA 98101" -194478,Lightning Charging Cable,1,14.95,05/08/19 18:29,"509 Lincoln St, New York City, NY 10001" -194479,USB-C Charging Cable,1,11.95,05/04/19 10:05,"947 Jefferson St, Boston, MA 02215" -194480,iPhone,1,700,05/19/19 06:34,"27 7th St, Atlanta, GA 30301" -194481,USB-C Charging Cable,1,11.95,05/25/19 20:07,"532 Church St, Dallas, TX 75001" -194482,LG Dryer,1,600.0,05/01/19 19:31,"316 2nd St, Los Angeles, CA 90001" -194483,Bose SoundSport Headphones,1,99.99,05/20/19 23:05,"671 Church St, Atlanta, GA 30301" -194484,27in 4K Gaming Monitor,1,389.99,05/07/19 17:11,"4 11th St, Atlanta, GA 30301" -194485,Lightning Charging Cable,2,14.95,05/08/19 20:08,"841 River St, Los Angeles, CA 90001" -194486,Wired Headphones,1,11.99,05/11/19 17:12,"344 Lincoln St, San Francisco, CA 94016" -194487,Apple Airpods Headphones,1,150,05/25/19 12:17,"62 Madison St, New York City, NY 10001" -194488,AA Batteries (4-pack),2,3.84,05/09/19 15:55,"878 1st St, Atlanta, GA 30301" -194489,AAA Batteries (4-pack),2,2.99,05/20/19 06:52,"229 Cedar St, Boston, MA 02215" -194490,Lightning Charging Cable,1,14.95,05/29/19 15:31,"344 Ridge St, Los Angeles, CA 90001" -194491,Lightning Charging Cable,1,14.95,05/02/19 23:35,"776 8th St, San Francisco, CA 94016" -194492,USB-C Charging Cable,2,11.95,05/16/19 12:11,"112 South St, San Francisco, CA 94016" -194493,27in 4K Gaming Monitor,1,389.99,05/21/19 18:24,"601 Maple St, Los Angeles, CA 90001" -194494,Google Phone,1,600,05/22/19 13:48,"903 Center St, Boston, MA 02215" -194494,Wired Headphones,1,11.99,05/22/19 13:48,"903 Center St, Boston, MA 02215" -194495,LG Washing Machine,1,600.0,05/30/19 21:43,"911 South St, San Francisco, CA 94016" -194496,Google Phone,1,600,05/02/19 11:07,"577 Spruce St, San Francisco, CA 94016" -194497,AAA Batteries (4-pack),3,2.99,05/28/19 15:23,"954 Lincoln St, Los Angeles, CA 90001" -194498,AAA Batteries (4-pack),1,2.99,05/15/19 16:36,"287 Wilson St, San Francisco, CA 94016" -194499,USB-C Charging Cable,1,11.95,05/13/19 18:37,"653 5th St, Seattle, WA 98101" -194500,20in Monitor,1,109.99,05/03/19 13:02,"414 Dogwood St, Portland, OR 97035" -194501,34in Ultrawide Monitor,1,379.99,05/09/19 15:50,"1 Chestnut St, San Francisco, CA 94016" -194502,AAA Batteries (4-pack),2,2.99,05/14/19 19:47,"471 Forest St, Dallas, TX 75001" -194503,34in Ultrawide Monitor,1,379.99,05/09/19 23:17,"947 Madison St, Portland, OR 97035" -194504,AAA Batteries (4-pack),2,2.99,05/26/19 12:47,"709 Ridge St, Los Angeles, CA 90001" -194505,AAA Batteries (4-pack),1,2.99,05/04/19 07:07,"850 Highland St, Austin, TX 73301" -194506,AAA Batteries (4-pack),2,2.99,05/17/19 14:17,"470 Spruce St, New York City, NY 10001" -194507,Bose SoundSport Headphones,1,99.99,05/10/19 10:53,"222 Jefferson St, Austin, TX 73301" -194508,34in Ultrawide Monitor,1,379.99,05/08/19 14:40,"503 River St, New York City, NY 10001" -194509,Apple Airpods Headphones,1,150,05/24/19 18:32,"609 Center St, Boston, MA 02215" -194509,Lightning Charging Cable,1,14.95,05/24/19 18:32,"609 Center St, Boston, MA 02215" -194510,20in Monitor,1,109.99,05/25/19 12:49,"566 Forest St, Los Angeles, CA 90001" -194511,Google Phone,1,600,05/26/19 19:13,"956 Walnut St, New York City, NY 10001" -194511,USB-C Charging Cable,1,11.95,05/26/19 19:13,"956 Walnut St, New York City, NY 10001" -194512,Wired Headphones,1,11.99,05/15/19 07:34,"268 Maple St, Boston, MA 02215" -194513,AAA Batteries (4-pack),3,2.99,05/31/19 13:20,"45 Wilson St, Austin, TX 73301" -194514,Bose SoundSport Headphones,1,99.99,05/28/19 12:39,"368 South St, San Francisco, CA 94016" -194515,Apple Airpods Headphones,1,150,05/29/19 18:34,"918 Lakeview St, Los Angeles, CA 90001" -194516,27in FHD Monitor,1,149.99,05/09/19 18:50,"156 Dogwood St, Los Angeles, CA 90001" -194517,AAA Batteries (4-pack),1,2.99,05/14/19 10:14,"80 1st St, Los Angeles, CA 90001" -194518,27in 4K Gaming Monitor,1,389.99,05/26/19 14:17,"190 North St, Portland, ME 04101" -194519,Google Phone,1,600,05/23/19 13:13,"70 4th St, Los Angeles, CA 90001" -194520,USB-C Charging Cable,1,11.95,05/29/19 22:31,"841 Ridge St, Dallas, TX 75001" -194521,Wired Headphones,1,11.99,05/14/19 18:14,"606 Johnson St, New York City, NY 10001" -194522,USB-C Charging Cable,1,11.95,05/26/19 20:12,"346 Maple St, San Francisco, CA 94016" -194523,Wired Headphones,1,11.99,05/03/19 13:19,"439 Maple St, Boston, MA 02215" -194524,Lightning Charging Cable,1,14.95,05/30/19 12:02,"258 8th St, Boston, MA 02215" -194525,AAA Batteries (4-pack),1,2.99,05/15/19 13:36,"608 Jefferson St, San Francisco, CA 94016" -194526,AAA Batteries (4-pack),1,2.99,05/14/19 12:04,"983 11th St, San Francisco, CA 94016" -194527,AAA Batteries (4-pack),1,2.99,05/25/19 11:32,"770 Jackson St, Seattle, WA 98101" -194528,27in FHD Monitor,1,149.99,05/26/19 17:15,"79 8th St, Dallas, TX 75001" -194529,AA Batteries (4-pack),2,3.84,05/13/19 13:07,"928 Willow St, Dallas, TX 75001" -194530,AAA Batteries (4-pack),1,2.99,05/24/19 20:59,"43 Cedar St, San Francisco, CA 94016" -194531,USB-C Charging Cable,1,11.95,05/31/19 23:49,"716 North St, Austin, TX 73301" -194532,Google Phone,1,600,05/19/19 13:19,"516 Chestnut St, San Francisco, CA 94016" -194533,AA Batteries (4-pack),1,3.84,05/16/19 14:39,"830 Meadow St, San Francisco, CA 94016" -194534,AA Batteries (4-pack),1,3.84,05/27/19 11:58,"482 Pine St, Boston, MA 02215" -194535,AA Batteries (4-pack),1,3.84,05/14/19 14:45,"26 Meadow St, San Francisco, CA 94016" -194536,USB-C Charging Cable,1,11.95,05/19/19 10:19,"74 Lincoln St, New York City, NY 10001" -194537,USB-C Charging Cable,2,11.95,05/21/19 18:44,"822 2nd St, Boston, MA 02215" -194538,Wired Headphones,1,11.99,05/28/19 23:56,"212 Lakeview St, Atlanta, GA 30301" -194539,Apple Airpods Headphones,1,150,05/15/19 04:38,"738 Willow St, Portland, ME 04101" -194540,USB-C Charging Cable,1,11.95,05/08/19 10:20,"498 Washington St, Seattle, WA 98101" -194541,ThinkPad Laptop,1,999.99,05/07/19 19:44,"736 5th St, Portland, ME 04101" -194542,Bose SoundSport Headphones,1,99.99,05/24/19 15:44,"311 4th St, Los Angeles, CA 90001" -194543,Wired Headphones,1,11.99,05/04/19 20:46,"280 West St, San Francisco, CA 94016" -194544,20in Monitor,1,109.99,05/12/19 11:14,"876 Highland St, San Francisco, CA 94016" -194545,Wired Headphones,1,11.99,05/23/19 11:35,"310 West St, Los Angeles, CA 90001" -194546,Apple Airpods Headphones,1,150,05/25/19 11:57,"438 11th St, Los Angeles, CA 90001" -194547,USB-C Charging Cable,1,11.95,05/26/19 15:01,"573 Johnson St, Portland, OR 97035" -194548,AAA Batteries (4-pack),1,2.99,05/25/19 01:49,"810 Jackson St, Dallas, TX 75001" -194549,AA Batteries (4-pack),1,3.84,05/26/19 07:17,"807 North St, Seattle, WA 98101" -194550,Bose SoundSport Headphones,1,99.99,05/05/19 00:19,"98 12th St, San Francisco, CA 94016" -194551,USB-C Charging Cable,1,11.95,05/24/19 13:51,"180 8th St, Boston, MA 02215" -194552,Vareebadd Phone,1,400,05/14/19 15:25,"651 Madison St, Dallas, TX 75001" -194553,Flatscreen TV,1,300,05/31/19 13:16,"150 Dogwood St, Los Angeles, CA 90001" -194554,AA Batteries (4-pack),1,3.84,05/17/19 15:03,"944 North St, New York City, NY 10001" -194555,LG Washing Machine,1,600.0,05/06/19 10:31,"583 South St, San Francisco, CA 94016" -194556,Flatscreen TV,1,300,05/15/19 00:05,"711 Hill St, Portland, ME 04101" -194557,AA Batteries (4-pack),1,3.84,05/28/19 07:03,"762 Willow St, New York City, NY 10001" -194558,27in FHD Monitor,1,149.99,05/10/19 11:54,"791 9th St, San Francisco, CA 94016" -194559,ThinkPad Laptop,1,999.99,05/22/19 19:38,"746 Pine St, Austin, TX 73301" -194560,USB-C Charging Cable,1,11.95,05/19/19 10:08,"370 Maple St, Atlanta, GA 30301" -194561,Bose SoundSport Headphones,1,99.99,05/31/19 13:05,"73 Meadow St, Portland, OR 97035" -194562,USB-C Charging Cable,2,11.95,05/20/19 12:24,"500 Pine St, San Francisco, CA 94016" -194563,27in 4K Gaming Monitor,1,389.99,05/01/19 20:50,"333 Highland St, Los Angeles, CA 90001" -194564,AA Batteries (4-pack),1,3.84,05/27/19 09:58,"945 5th St, New York City, NY 10001" -194565,Wired Headphones,1,11.99,05/08/19 19:58,"200 Madison St, New York City, NY 10001" -194566,Google Phone,1,600,05/02/19 18:12,"680 Church St, San Francisco, CA 94016" -194566,Bose SoundSport Headphones,1,99.99,05/02/19 18:12,"680 Church St, San Francisco, CA 94016" -194567,Apple Airpods Headphones,1,150,05/09/19 10:03,"521 Park St, San Francisco, CA 94016" -194568,Apple Airpods Headphones,1,150,05/10/19 23:12,"91 Walnut St, Atlanta, GA 30301" -194569,Macbook Pro Laptop,1,1700,05/12/19 21:08,"407 Walnut St, Austin, TX 73301" -194570,Lightning Charging Cable,1,14.95,05/08/19 12:23,"517 North St, Boston, MA 02215" -194571,AAA Batteries (4-pack),1,2.99,05/22/19 12:34,"153 14th St, Boston, MA 02215" -194572,Macbook Pro Laptop,1,1700,05/18/19 12:07,"213 6th St, Portland, OR 97035" -194573,ThinkPad Laptop,1,999.99,05/21/19 21:42,"706 Chestnut St, San Francisco, CA 94016" -194574,Vareebadd Phone,1,400,05/26/19 09:32,"369 North St, Los Angeles, CA 90001" -194575,AA Batteries (4-pack),2,3.84,05/10/19 11:24,"474 Forest St, Los Angeles, CA 90001" -194575,AAA Batteries (4-pack),2,2.99,05/10/19 11:24,"474 Forest St, Los Angeles, CA 90001" -194576,34in Ultrawide Monitor,1,379.99,05/26/19 20:54,"622 Church St, Seattle, WA 98101" -194577,AA Batteries (4-pack),1,3.84,05/02/19 20:19,"222 14th St, Seattle, WA 98101" -194578,Lightning Charging Cable,1,14.95,05/09/19 17:57,"243 Ridge St, Boston, MA 02215" -194579,Bose SoundSport Headphones,1,99.99,05/26/19 15:50,"130 1st St, Atlanta, GA 30301" -194580,AAA Batteries (4-pack),3,2.99,05/28/19 08:13,"516 6th St, San Francisco, CA 94016" -194581,Lightning Charging Cable,1,14.95,05/10/19 14:31,"463 1st St, San Francisco, CA 94016" -194582,AA Batteries (4-pack),1,3.84,05/01/19 10:22,"271 Walnut St, Atlanta, GA 30301" -194583,Lightning Charging Cable,1,14.95,05/15/19 11:50,"497 Hickory St, Boston, MA 02215" -194584,Bose SoundSport Headphones,1,99.99,05/02/19 18:26,"587 North St, Los Angeles, CA 90001" -194585,20in Monitor,1,109.99,05/12/19 20:29,"186 Jackson St, San Francisco, CA 94016" -194586,AA Batteries (4-pack),2,3.84,05/25/19 20:57,"852 Cedar St, San Francisco, CA 94016" -194587,AAA Batteries (4-pack),1,2.99,05/26/19 17:26,"433 Center St, Dallas, TX 75001" -,,,,, -194588,ThinkPad Laptop,1,999.99,05/27/19 07:57,"87 Jefferson St, San Francisco, CA 94016" -194588,AAA Batteries (4-pack),2,2.99,05/27/19 07:57,"87 Jefferson St, San Francisco, CA 94016" -194589,AAA Batteries (4-pack),1,2.99,05/12/19 01:48,"395 River St, Los Angeles, CA 90001" -194590,USB-C Charging Cable,2,11.95,05/25/19 12:42,"320 1st St, Atlanta, GA 30301" -194591,Bose SoundSport Headphones,1,99.99,05/19/19 19:30,"368 4th St, Los Angeles, CA 90001" -194592,AAA Batteries (4-pack),1,2.99,05/08/19 23:17,"249 10th St, Los Angeles, CA 90001" -194593,AAA Batteries (4-pack),1,2.99,05/30/19 12:37,"72 Lincoln St, San Francisco, CA 94016" -194594,iPhone,1,700,05/08/19 14:34,"689 Meadow St, Dallas, TX 75001" -194595,AAA Batteries (4-pack),1,2.99,05/29/19 15:42,"329 Hickory St, Los Angeles, CA 90001" -194596,AAA Batteries (4-pack),1,2.99,05/30/19 20:54,"413 Jackson St, San Francisco, CA 94016" -194597,Macbook Pro Laptop,1,1700,05/20/19 13:17,"873 South St, New York City, NY 10001" -194598,AAA Batteries (4-pack),3,2.99,05/29/19 21:14,"210 Sunset St, San Francisco, CA 94016" -194599,27in 4K Gaming Monitor,1,389.99,05/11/19 20:44,"561 12th St, Dallas, TX 75001" -194600,Lightning Charging Cable,1,14.95,05/22/19 11:57,"310 Spruce St, Dallas, TX 75001" -194600,27in FHD Monitor,1,149.99,05/22/19 11:57,"310 Spruce St, Dallas, TX 75001" -194601,Wired Headphones,1,11.99,05/31/19 19:28,"559 9th St, San Francisco, CA 94016" -194602,27in FHD Monitor,1,149.99,05/05/19 16:37,"755 Sunset St, New York City, NY 10001" -194603,Lightning Charging Cable,1,14.95,05/28/19 21:28,"81 Ridge St, Los Angeles, CA 90001" -194604,27in 4K Gaming Monitor,1,389.99,05/22/19 13:00,"469 Ridge St, Seattle, WA 98101" -194605,USB-C Charging Cable,1,11.95,05/05/19 20:49,"874 Maple St, San Francisco, CA 94016" -194606,AA Batteries (4-pack),1,3.84,05/31/19 17:01,"54 11th St, Boston, MA 02215" -194607,Bose SoundSport Headphones,1,99.99,05/16/19 22:26,"691 Spruce St, Los Angeles, CA 90001" -194608,Lightning Charging Cable,1,14.95,05/22/19 23:35,"258 Walnut St, San Francisco, CA 94016" -194609,Lightning Charging Cable,1,14.95,05/13/19 05:47,"268 Main St, San Francisco, CA 94016" -194610,34in Ultrawide Monitor,1,379.99,05/22/19 13:45,"297 14th St, New York City, NY 10001" -194611,Wired Headphones,1,11.99,05/02/19 04:46,"996 Jefferson St, San Francisco, CA 94016" -194612,Bose SoundSport Headphones,1,99.99,05/30/19 11:35,"180 Willow St, Los Angeles, CA 90001" -194613,Apple Airpods Headphones,1,150,05/27/19 23:58,"538 7th St, San Francisco, CA 94016" -194614,AAA Batteries (4-pack),2,2.99,05/31/19 17:23,"940 Hill St, Portland, OR 97035" -194615,Lightning Charging Cable,1,14.95,05/26/19 00:51,"28 Walnut St, New York City, NY 10001" -194616,Google Phone,1,600,05/15/19 22:48,"521 Ridge St, New York City, NY 10001" -194617,Flatscreen TV,1,300,05/30/19 16:39,"783 Jefferson St, Portland, ME 04101" -194618,27in FHD Monitor,1,149.99,05/03/19 18:48,"329 Maple St, Boston, MA 02215" -194619,Wired Headphones,1,11.99,05/30/19 18:36,"312 13th St, San Francisco, CA 94016" -194620,Lightning Charging Cable,1,14.95,05/01/19 12:16,"932 Hickory St, San Francisco, CA 94016" -194621,AA Batteries (4-pack),1,3.84,05/07/19 20:39,"967 Lake St, San Francisco, CA 94016" -194622,AAA Batteries (4-pack),3,2.99,05/04/19 20:19,"187 Lincoln St, Los Angeles, CA 90001" -194623,Apple Airpods Headphones,1,150,05/14/19 13:54,"824 West St, Los Angeles, CA 90001" -194624,Bose SoundSport Headphones,1,99.99,05/16/19 10:54,"550 Hickory St, Los Angeles, CA 90001" -194625,Lightning Charging Cable,1,14.95,05/09/19 21:26,"178 10th St, Boston, MA 02215" -194626,AAA Batteries (4-pack),1,2.99,05/06/19 19:29,"137 Washington St, San Francisco, CA 94016" -194627,Bose SoundSport Headphones,1,99.99,05/24/19 21:06,"905 North St, Seattle, WA 98101" -194628,AA Batteries (4-pack),1,3.84,05/02/19 18:16,"203 Hickory St, Boston, MA 02215" -194629,AA Batteries (4-pack),3,3.84,05/18/19 22:22,"140 Spruce St, Portland, ME 04101" -194630,Bose SoundSport Headphones,1,99.99,05/10/19 19:29,"534 Cherry St, Dallas, TX 75001" -194631,Bose SoundSport Headphones,1,99.99,05/19/19 21:38,"232 1st St, Atlanta, GA 30301" -194632,USB-C Charging Cable,1,11.95,05/14/19 21:03,"897 Jackson St, Boston, MA 02215" -194633,AA Batteries (4-pack),1,3.84,05/17/19 19:00,"581 Spruce St, Portland, OR 97035" -194634,Bose SoundSport Headphones,1,99.99,05/14/19 13:18,"545 Hickory St, Atlanta, GA 30301" -194635,AA Batteries (4-pack),2,3.84,05/05/19 10:04,"976 Cedar St, Boston, MA 02215" -194636,AAA Batteries (4-pack),1,2.99,05/04/19 11:42,"603 Dogwood St, New York City, NY 10001" -194637,USB-C Charging Cable,1,11.95,05/16/19 09:15,"534 Lakeview St, Boston, MA 02215" -194638,AA Batteries (4-pack),1,3.84,05/08/19 19:03,"250 Cherry St, Atlanta, GA 30301" -194639,Google Phone,1,600,05/04/19 13:25,"34 Sunset St, Portland, OR 97035" -194640,ThinkPad Laptop,1,999.99,05/04/19 01:05,"852 Hickory St, San Francisco, CA 94016" -194641,Lightning Charging Cable,1,14.95,05/28/19 20:33,"892 North St, Atlanta, GA 30301" -194642,Lightning Charging Cable,1,14.95,05/06/19 13:29,"836 Cherry St, Boston, MA 02215" -194643,34in Ultrawide Monitor,1,379.99,05/08/19 01:03,"422 Church St, Seattle, WA 98101" -194644,Google Phone,1,600,05/17/19 20:58,"381 Cedar St, Los Angeles, CA 90001" -194645,AA Batteries (4-pack),1,3.84,05/22/19 11:40,"783 Cedar St, Portland, OR 97035" -194646,AAA Batteries (4-pack),1,2.99,05/08/19 11:42,"779 5th St, Los Angeles, CA 90001" -194647,Wired Headphones,1,11.99,05/08/19 17:38,"336 14th St, Austin, TX 73301" -194648,AA Batteries (4-pack),1,3.84,05/31/19 20:15,"959 Chestnut St, Dallas, TX 75001" -194649,Bose SoundSport Headphones,1,99.99,05/12/19 13:31,"737 Lincoln St, Boston, MA 02215" -194650,Wired Headphones,1,11.99,05/10/19 13:21,"24 2nd St, Portland, ME 04101" -194651,Macbook Pro Laptop,1,1700,05/07/19 14:46,"695 Lakeview St, New York City, NY 10001" -194652,AAA Batteries (4-pack),4,2.99,05/25/19 12:19,"480 Forest St, Atlanta, GA 30301" -194653,Apple Airpods Headphones,1,150,05/27/19 07:42,"739 5th St, San Francisco, CA 94016" -194654,iPhone,1,700,05/05/19 02:28,"314 Jackson St, Los Angeles, CA 90001" -194655,Apple Airpods Headphones,2,150,05/11/19 19:19,"878 Cedar St, Boston, MA 02215" -194656,Wired Headphones,1,11.99,05/15/19 14:32,"166 Walnut St, Atlanta, GA 30301" -194657,ThinkPad Laptop,1,999.99,05/25/19 08:51,"476 Center St, Boston, MA 02215" -194658,Google Phone,1,600,05/06/19 14:32,"837 Madison St, Atlanta, GA 30301" -194659,Apple Airpods Headphones,1,150,05/07/19 15:02,"328 11th St, San Francisco, CA 94016" -194660,AAA Batteries (4-pack),1,2.99,05/14/19 14:59,"727 Madison St, Los Angeles, CA 90001" -194661,Apple Airpods Headphones,1,150,05/18/19 21:04,"927 Dogwood St, Austin, TX 73301" -194662,USB-C Charging Cable,1,11.95,05/06/19 21:44,"544 5th St, New York City, NY 10001" -194663,AAA Batteries (4-pack),2,2.99,05/17/19 17:32,"19 2nd St, New York City, NY 10001" -194664,USB-C Charging Cable,1,11.95,05/22/19 08:03,"681 13th St, New York City, NY 10001" -194665,AA Batteries (4-pack),1,3.84,05/10/19 20:15,"81 Lakeview St, Boston, MA 02215" -194666,AAA Batteries (4-pack),4,2.99,05/14/19 08:53,"717 Dogwood St, Los Angeles, CA 90001" -194667,27in FHD Monitor,1,149.99,05/17/19 19:06,"14 Willow St, Atlanta, GA 30301" -194668,AA Batteries (4-pack),1,3.84,05/07/19 21:04,"247 Jackson St, Portland, OR 97035" -194669,34in Ultrawide Monitor,1,379.99,05/16/19 18:01,"678 Johnson St, Los Angeles, CA 90001" -194670,AA Batteries (4-pack),1,3.84,05/20/19 10:49,"228 1st St, Los Angeles, CA 90001" -194671,Macbook Pro Laptop,1,1700,05/09/19 11:36,"221 10th St, San Francisco, CA 94016" -194672,Macbook Pro Laptop,1,1700,05/18/19 07:01,"555 North St, Austin, TX 73301" -194673,LG Washing Machine,1,600.0,05/12/19 12:50,"963 Maple St, Seattle, WA 98101" -194674,Lightning Charging Cable,1,14.95,05/16/19 08:29,"533 7th St, Dallas, TX 75001" -194675,AA Batteries (4-pack),1,3.84,05/14/19 21:13,"688 Highland St, San Francisco, CA 94016" -194676,AAA Batteries (4-pack),1,2.99,05/27/19 17:15,"794 6th St, San Francisco, CA 94016" -194677,Bose SoundSport Headphones,1,99.99,05/24/19 10:16,"529 North St, Los Angeles, CA 90001" -194678,Lightning Charging Cable,1,14.95,05/04/19 21:00,"506 Jackson St, New York City, NY 10001" -194679,AA Batteries (4-pack),1,3.84,05/23/19 14:28,"184 4th St, Los Angeles, CA 90001" -194680,Lightning Charging Cable,1,14.95,05/16/19 22:45,"100 North St, Boston, MA 02215" -194681,Google Phone,1,600,05/14/19 19:16,"926 14th St, Atlanta, GA 30301" -194682,AAA Batteries (4-pack),4,2.99,05/25/19 21:45,"413 Lake St, San Francisco, CA 94016" -194683,AA Batteries (4-pack),2,3.84,05/25/19 16:04,"601 West St, Boston, MA 02215" -194684,AA Batteries (4-pack),1,3.84,05/21/19 09:10,"646 14th St, New York City, NY 10001" -194685,27in 4K Gaming Monitor,1,389.99,05/09/19 01:17,"687 Walnut St, Seattle, WA 98101" -194686,Lightning Charging Cable,1,14.95,05/21/19 12:24,"305 10th St, San Francisco, CA 94016" -194687,Apple Airpods Headphones,1,150,05/06/19 10:16,"119 14th St, Atlanta, GA 30301" -194688,Macbook Pro Laptop,1,1700,05/28/19 11:16,"635 Washington St, San Francisco, CA 94016" -194689,Lightning Charging Cable,1,14.95,05/18/19 22:00,"443 7th St, Los Angeles, CA 90001" -194690,Wired Headphones,1,11.99,05/09/19 19:40,"256 Church St, Seattle, WA 98101" -194691,Google Phone,1,600,05/01/19 14:22,"130 5th St, Boston, MA 02215" -194692,AAA Batteries (4-pack),1,2.99,05/20/19 16:12,"360 Maple St, Boston, MA 02215" -194693,USB-C Charging Cable,1,11.95,05/03/19 18:49,"453 Maple St, Portland, OR 97035" -194694,USB-C Charging Cable,1,11.95,05/20/19 23:32,"378 5th St, Atlanta, GA 30301" -194695,Wired Headphones,1,11.99,05/08/19 12:38,"716 Jefferson St, Los Angeles, CA 90001" -194696,Lightning Charging Cable,1,14.95,05/15/19 22:23,"148 7th St, Atlanta, GA 30301" -194697,Apple Airpods Headphones,1,150,05/11/19 14:52,"627 Park St, Portland, OR 97035" -194698,Macbook Pro Laptop,1,1700,05/09/19 14:20,"946 Highland St, Los Angeles, CA 90001" -194699,20in Monitor,1,109.99,05/09/19 15:36,"65 12th St, Los Angeles, CA 90001" -194700,AA Batteries (4-pack),2,3.84,05/19/19 12:22,"961 Lincoln St, Seattle, WA 98101" -194701,Google Phone,1,600,05/17/19 22:35,"957 11th St, Los Angeles, CA 90001" -194702,Wired Headphones,1,11.99,05/16/19 06:59,"876 2nd St, San Francisco, CA 94016" -194703,AAA Batteries (4-pack),2,2.99,05/28/19 19:20,"454 Cedar St, Austin, TX 73301" -194704,USB-C Charging Cable,1,11.95,05/06/19 23:24,"570 7th St, Los Angeles, CA 90001" -194705,AAA Batteries (4-pack),2,2.99,05/15/19 18:24,"738 Hill St, Boston, MA 02215" -194706,Apple Airpods Headphones,1,150,05/26/19 16:22,"614 12th St, Los Angeles, CA 90001" -194707,Bose SoundSport Headphones,1,99.99,05/07/19 19:20,"843 Johnson St, Los Angeles, CA 90001" -194708,AAA Batteries (4-pack),1,2.99,05/31/19 18:47,"64 Main St, Boston, MA 02215" -194709,27in 4K Gaming Monitor,1,389.99,05/06/19 11:08,"804 10th St, Los Angeles, CA 90001" -194710,AA Batteries (4-pack),1,3.84,05/20/19 18:18,"750 Hickory St, Boston, MA 02215" -194710,Wired Headphones,1,11.99,05/20/19 18:18,"750 Hickory St, Boston, MA 02215" -194711,Bose SoundSport Headphones,1,99.99,05/04/19 20:50,"308 2nd St, Dallas, TX 75001" -194712,AAA Batteries (4-pack),1,2.99,05/19/19 19:27,"670 2nd St, Los Angeles, CA 90001" -194713,Wired Headphones,1,11.99,05/30/19 17:35,"987 Washington St, Dallas, TX 75001" -194714,Wired Headphones,1,11.99,05/07/19 14:45,"629 4th St, San Francisco, CA 94016" -194715,AAA Batteries (4-pack),1,2.99,05/29/19 12:20,"645 Wilson St, Boston, MA 02215" -194716,Lightning Charging Cable,1,14.95,05/20/19 08:34,"169 10th St, Seattle, WA 98101" -194717,AA Batteries (4-pack),2,3.84,05/21/19 15:55,"174 7th St, New York City, NY 10001" -194718,AAA Batteries (4-pack),1,2.99,05/19/19 09:15,"826 Church St, Los Angeles, CA 90001" -194719,Apple Airpods Headphones,1,150,05/21/19 15:02,"206 11th St, Boston, MA 02215" -194720,AAA Batteries (4-pack),3,2.99,05/03/19 05:42,"961 Willow St, Portland, OR 97035" -194721,AAA Batteries (4-pack),1,2.99,05/22/19 18:44,"206 12th St, Boston, MA 02215" -194722,iPhone,1,700,05/29/19 14:46,"184 Adams St, Austin, TX 73301" -194723,Lightning Charging Cable,1,14.95,05/21/19 11:59,"920 Center St, San Francisco, CA 94016" -194724,Wired Headphones,1,11.99,05/26/19 16:32,"472 Chestnut St, New York City, NY 10001" -194725,27in 4K Gaming Monitor,1,389.99,05/16/19 11:50,"90 11th St, San Francisco, CA 94016" -194726,AA Batteries (4-pack),1,3.84,05/09/19 14:00,"635 Walnut St, Portland, OR 97035" -194727,Bose SoundSport Headphones,1,99.99,05/17/19 11:19,"262 Meadow St, San Francisco, CA 94016" -194728,AAA Batteries (4-pack),1,2.99,05/09/19 15:05,"399 13th St, Atlanta, GA 30301" -194729,Wired Headphones,1,11.99,05/06/19 18:30,"199 Cherry St, Los Angeles, CA 90001" -194730,27in 4K Gaming Monitor,1,389.99,05/25/19 14:19,"48 Washington St, San Francisco, CA 94016" -194731,Wired Headphones,1,11.99,05/09/19 21:25,"401 Main St, Dallas, TX 75001" -194731,AAA Batteries (4-pack),1,2.99,05/09/19 21:25,"401 Main St, Dallas, TX 75001" -194732,20in Monitor,1,109.99,05/18/19 18:12,"264 9th St, New York City, NY 10001" -194733,20in Monitor,1,109.99,05/11/19 21:12,"914 13th St, Los Angeles, CA 90001" -194734,Lightning Charging Cable,1,14.95,05/16/19 21:17,"404 Maple St, New York City, NY 10001" -194735,AA Batteries (4-pack),1,3.84,05/14/19 22:20,"178 Park St, Austin, TX 73301" -194736,AAA Batteries (4-pack),2,2.99,05/24/19 20:04,"360 Lakeview St, Atlanta, GA 30301" -194737,Apple Airpods Headphones,1,150,05/24/19 08:05,"246 10th St, New York City, NY 10001" -194738,Apple Airpods Headphones,1,150,05/24/19 13:54,"387 Cedar St, Los Angeles, CA 90001" -194739,Flatscreen TV,1,300,05/17/19 13:59,"92 Pine St, Los Angeles, CA 90001" -194740,Apple Airpods Headphones,1,150,05/22/19 22:07,"823 12th St, Los Angeles, CA 90001" -194741,USB-C Charging Cable,1,11.95,05/12/19 08:44,"73 Elm St, San Francisco, CA 94016" -194742,AA Batteries (4-pack),1,3.84,05/17/19 01:20,"296 Cherry St, San Francisco, CA 94016" -194743,Lightning Charging Cable,1,14.95,05/12/19 00:25,"559 Walnut St, Boston, MA 02215" -194744,Lightning Charging Cable,1,14.95,05/01/19 21:34,"665 Wilson St, Dallas, TX 75001" -194745,34in Ultrawide Monitor,1,379.99,05/28/19 16:59,"164 6th St, Los Angeles, CA 90001" -194746,AA Batteries (4-pack),1,3.84,05/19/19 08:59,"398 11th St, Atlanta, GA 30301" -194747,Lightning Charging Cable,1,14.95,05/24/19 17:19,"562 Johnson St, Dallas, TX 75001" -194748,Bose SoundSport Headphones,1,99.99,05/21/19 18:31,"184 1st St, Dallas, TX 75001" -194749,Wired Headphones,1,11.99,05/31/19 22:24,"555 Hill St, Los Angeles, CA 90001" -194749,Lightning Charging Cable,1,14.95,05/31/19 22:24,"555 Hill St, Los Angeles, CA 90001" -194750,Wired Headphones,1,11.99,05/04/19 14:20,"349 Cedar St, Atlanta, GA 30301" -194751,20in Monitor,1,109.99,05/30/19 14:44,"494 Center St, San Francisco, CA 94016" -194752,Wired Headphones,1,11.99,05/04/19 20:36,"68 North St, Seattle, WA 98101" -194753,Wired Headphones,1,11.99,05/20/19 16:06,"439 5th St, Los Angeles, CA 90001" -194754,Bose SoundSport Headphones,1,99.99,05/26/19 17:18,"942 10th St, Los Angeles, CA 90001" -194754,34in Ultrawide Monitor,1,379.99,05/26/19 17:18,"942 10th St, Los Angeles, CA 90001" -194755,Vareebadd Phone,1,400,05/08/19 12:44,"681 Ridge St, Boston, MA 02215" -194756,27in FHD Monitor,1,149.99,05/31/19 10:20,"686 14th St, New York City, NY 10001" -194757,AAA Batteries (4-pack),1,2.99,05/29/19 23:03,"631 Hill St, Austin, TX 73301" -194758,Apple Airpods Headphones,1,150,05/15/19 23:20,"23 9th St, Seattle, WA 98101" -194759,27in FHD Monitor,1,149.99,05/27/19 18:49,"486 4th St, San Francisco, CA 94016" -194760,34in Ultrawide Monitor,1,379.99,05/04/19 16:36,"964 Hill St, Seattle, WA 98101" -194761,USB-C Charging Cable,1,11.95,05/17/19 18:38,"429 Jackson St, Los Angeles, CA 90001" -194762,20in Monitor,1,109.99,05/20/19 17:20,"202 8th St, New York City, NY 10001" -194762,AAA Batteries (4-pack),1,2.99,05/20/19 17:20,"202 8th St, New York City, NY 10001" -194763,27in FHD Monitor,1,149.99,05/25/19 18:58,"401 Johnson St, San Francisco, CA 94016" -194764,Apple Airpods Headphones,1,150,05/24/19 08:30,"774 Madison St, Los Angeles, CA 90001" -194765,27in 4K Gaming Monitor,1,389.99,05/10/19 12:12,"335 North St, Dallas, TX 75001" -194766,AA Batteries (4-pack),1,3.84,05/15/19 16:49,"45 Meadow St, New York City, NY 10001" -194767,Lightning Charging Cable,1,14.95,05/05/19 14:02,"373 Meadow St, New York City, NY 10001" -194768,AA Batteries (4-pack),2,3.84,05/25/19 20:14,"822 Jefferson St, San Francisco, CA 94016" -194769,Apple Airpods Headphones,1,150,05/24/19 16:00,"84 11th St, Los Angeles, CA 90001" -194770,USB-C Charging Cable,1,11.95,05/10/19 10:50,"673 Willow St, Los Angeles, CA 90001" -194771,Apple Airpods Headphones,1,150,05/19/19 12:09,"222 West St, San Francisco, CA 94016" -194772,34in Ultrawide Monitor,1,379.99,05/04/19 12:14,"340 Lincoln St, Seattle, WA 98101" -194773,27in 4K Gaming Monitor,1,389.99,05/21/19 18:23,"321 Wilson St, Los Angeles, CA 90001" -194774,Vareebadd Phone,1,400,05/30/19 17:37,"961 Ridge St, New York City, NY 10001" -194774,27in FHD Monitor,2,149.99,05/30/19 17:37,"961 Ridge St, New York City, NY 10001" -194775,27in 4K Gaming Monitor,1,389.99,05/30/19 19:48,"468 Dogwood St, New York City, NY 10001" -194776,iPhone,1,700,05/16/19 18:55,"808 Elm St, Los Angeles, CA 90001" -194777,Wired Headphones,1,11.99,05/21/19 11:56,"28 Highland St, Seattle, WA 98101" -194778,Wired Headphones,1,11.99,05/20/19 19:36,"182 Ridge St, Boston, MA 02215" -194779,AAA Batteries (4-pack),2,2.99,05/27/19 08:29,"402 Cherry St, San Francisco, CA 94016" -194780,Google Phone,1,600,05/29/19 12:26,"997 Forest St, Los Angeles, CA 90001" -194780,Wired Headphones,1,11.99,05/29/19 12:26,"997 Forest St, Los Angeles, CA 90001" -194781,AA Batteries (4-pack),1,3.84,05/25/19 07:38,"933 Elm St, Los Angeles, CA 90001" -194782,USB-C Charging Cable,1,11.95,05/10/19 11:09,"230 Cedar St, San Francisco, CA 94016" -194783,Bose SoundSport Headphones,1,99.99,05/27/19 18:49,"114 Chestnut St, New York City, NY 10001" -194784,Apple Airpods Headphones,1,150,05/08/19 14:34,"303 13th St, Austin, TX 73301" -194785,Lightning Charging Cable,1,14.95,05/11/19 14:24,"295 Meadow St, Atlanta, GA 30301" -194786,Apple Airpods Headphones,1,150,05/17/19 19:58,"257 Main St, San Francisco, CA 94016" -194786,27in 4K Gaming Monitor,1,389.99,05/17/19 19:58,"257 Main St, San Francisco, CA 94016" -194787,Lightning Charging Cable,1,14.95,05/12/19 12:12,"970 Madison St, Portland, OR 97035" -194788,Apple Airpods Headphones,1,150,05/11/19 13:45,"928 Chestnut St, New York City, NY 10001" -194789,Macbook Pro Laptop,1,1700,05/10/19 17:39,"737 4th St, Boston, MA 02215" -194790,AA Batteries (4-pack),1,3.84,05/01/19 20:26,"442 Madison St, New York City, NY 10001" -194791,Wired Headphones,1,11.99,05/09/19 13:09,"28 11th St, Boston, MA 02215" -194791,20in Monitor,1,109.99,05/09/19 13:09,"28 11th St, Boston, MA 02215" -194792,Wired Headphones,1,11.99,05/01/19 21:44,"246 11th St, Dallas, TX 75001" -194793,Lightning Charging Cable,1,14.95,05/29/19 19:02,"863 Spruce St, Los Angeles, CA 90001" -194794,AA Batteries (4-pack),4,3.84,05/30/19 19:17,"185 Lincoln St, Los Angeles, CA 90001" -194795,Bose SoundSport Headphones,1,99.99,05/28/19 10:24,"690 12th St, Atlanta, GA 30301" -194796,Apple Airpods Headphones,1,150,05/06/19 12:56,"268 Cherry St, San Francisco, CA 94016" -194797,AA Batteries (4-pack),1,3.84,05/13/19 13:19,"594 Willow St, Los Angeles, CA 90001" -194798,27in FHD Monitor,1,149.99,05/22/19 22:41,"601 Chestnut St, Portland, ME 04101" -194799,20in Monitor,1,109.99,05/30/19 08:05,"863 Center St, San Francisco, CA 94016" -194800,Macbook Pro Laptop,1,1700,05/25/19 21:26,"143 Hill St, Seattle, WA 98101" -194801,AA Batteries (4-pack),1,3.84,05/16/19 07:27,"889 Forest St, Boston, MA 02215" -194802,Vareebadd Phone,1,400,05/02/19 12:57,"971 Jefferson St, San Francisco, CA 94016" -194803,AA Batteries (4-pack),1,3.84,05/16/19 13:43,"712 Park St, Portland, OR 97035" -194804,AAA Batteries (4-pack),3,2.99,05/13/19 11:16,"312 Church St, New York City, NY 10001" -194805,27in FHD Monitor,1,149.99,05/20/19 22:09,"600 4th St, San Francisco, CA 94016" -194806,Wired Headphones,1,11.99,05/11/19 02:21,"329 Pine St, Seattle, WA 98101" -194807,Lightning Charging Cable,1,14.95,05/17/19 17:02,"882 Forest St, San Francisco, CA 94016" -194808,Bose SoundSport Headphones,1,99.99,05/08/19 15:13,"626 Willow St, Dallas, TX 75001" -194809,Wired Headphones,1,11.99,05/03/19 17:13,"617 Jackson St, Atlanta, GA 30301" -194810,Lightning Charging Cable,1,14.95,05/26/19 17:22,"139 Madison St, Dallas, TX 75001" -194811,Flatscreen TV,1,300,05/20/19 06:17,"875 Maple St, Seattle, WA 98101" -194812,AA Batteries (4-pack),1,3.84,05/27/19 19:47,"905 Lincoln St, Los Angeles, CA 90001" -194813,USB-C Charging Cable,1,11.95,05/07/19 22:58,"99 Madison St, San Francisco, CA 94016" -194814,Wired Headphones,1,11.99,05/09/19 21:23,"696 Highland St, Dallas, TX 75001" -194815,AA Batteries (4-pack),4,3.84,05/23/19 14:27,"440 Center St, New York City, NY 10001" -194815,USB-C Charging Cable,1,11.95,05/23/19 14:27,"440 Center St, New York City, NY 10001" -194816,Apple Airpods Headphones,1,150,05/18/19 07:46,"29 Lake St, San Francisco, CA 94016" -194817,USB-C Charging Cable,1,11.95,05/24/19 13:14,"635 Walnut St, Los Angeles, CA 90001" -194818,AA Batteries (4-pack),1,3.84,05/22/19 19:51,"945 Washington St, New York City, NY 10001" -194819,USB-C Charging Cable,1,11.95,05/03/19 07:15,"267 South St, Boston, MA 02215" -194820,Flatscreen TV,1,300,05/05/19 10:18,"497 7th St, Portland, ME 04101" -194821,AA Batteries (4-pack),1,3.84,05/08/19 21:18,"738 Wilson St, Austin, TX 73301" -194822,Wired Headphones,1,11.99,05/06/19 23:05,"482 Hickory St, San Francisco, CA 94016" -194823,iPhone,1,700,05/13/19 08:54,"949 Elm St, San Francisco, CA 94016" -194823,Lightning Charging Cable,1,14.95,05/13/19 08:54,"949 Elm St, San Francisco, CA 94016" -194824,AA Batteries (4-pack),1,3.84,05/18/19 08:54,"690 Lakeview St, Los Angeles, CA 90001" -194825,27in FHD Monitor,1,149.99,05/11/19 13:39,"126 Madison St, Dallas, TX 75001" -194826,Lightning Charging Cable,1,14.95,05/29/19 14:05,"139 4th St, San Francisco, CA 94016" -194827,USB-C Charging Cable,1,11.95,05/29/19 16:25,"480 Maple St, San Francisco, CA 94016" -194828,ThinkPad Laptop,1,999.99,05/11/19 19:13,"844 Lincoln St, San Francisco, CA 94016" -194829,USB-C Charging Cable,1,11.95,05/30/19 08:56,"749 Spruce St, San Francisco, CA 94016" -194830,AA Batteries (4-pack),1,3.84,05/10/19 17:32,"289 Elm St, New York City, NY 10001" -194831,Lightning Charging Cable,1,14.95,05/16/19 13:00,"494 8th St, New York City, NY 10001" -194832,Lightning Charging Cable,1,14.95,05/14/19 22:50,"220 Sunset St, San Francisco, CA 94016" -194833,ThinkPad Laptop,1,999.99,05/24/19 18:31,"341 9th St, San Francisco, CA 94016" -194834,AA Batteries (4-pack),1,3.84,05/01/19 08:21,"374 Forest St, Portland, OR 97035" -194835,Flatscreen TV,1,300,05/21/19 11:07,"70 Adams St, Los Angeles, CA 90001" -194836,AAA Batteries (4-pack),3,2.99,05/24/19 17:15,"667 Hickory St, New York City, NY 10001" -194837,Flatscreen TV,1,300,05/14/19 11:31,"405 4th St, Dallas, TX 75001" -194838,Wired Headphones,1,11.99,05/22/19 20:48,"824 Maple St, Portland, OR 97035" -194839,27in 4K Gaming Monitor,1,389.99,05/05/19 01:01,"353 14th St, Los Angeles, CA 90001" -194840,Google Phone,1,600,05/04/19 21:39,"917 Church St, New York City, NY 10001" -194840,Wired Headphones,1,11.99,05/04/19 21:39,"917 Church St, New York City, NY 10001" -194841,AAA Batteries (4-pack),1,2.99,05/27/19 07:06,"939 Madison St, Boston, MA 02215" -194842,Wired Headphones,1,11.99,05/14/19 09:47,"732 Highland St, New York City, NY 10001" -194843,USB-C Charging Cable,1,11.95,05/10/19 08:17,"986 Forest St, Los Angeles, CA 90001" -194844,USB-C Charging Cable,1,11.95,05/30/19 16:12,"335 Main St, Dallas, TX 75001" -194845,Macbook Pro Laptop,1,1700,05/26/19 20:38,"550 Meadow St, Atlanta, GA 30301" -194846,AAA Batteries (4-pack),1,2.99,05/27/19 08:26,"899 Walnut St, San Francisco, CA 94016" -194847,USB-C Charging Cable,1,11.95,05/29/19 12:49,"293 Lincoln St, San Francisco, CA 94016" -194848,iPhone,1,700,05/14/19 14:56,"696 12th St, Dallas, TX 75001" -194849,AA Batteries (4-pack),1,3.84,05/23/19 08:13,"651 Ridge St, Atlanta, GA 30301" -194850,AA Batteries (4-pack),1,3.84,05/26/19 12:34,"901 Lincoln St, Boston, MA 02215" -194851,Wired Headphones,2,11.99,05/05/19 12:30,"558 Ridge St, New York City, NY 10001" -194852,AAA Batteries (4-pack),2,2.99,05/14/19 08:36,"625 Hickory St, San Francisco, CA 94016" -194853,Bose SoundSport Headphones,1,99.99,05/18/19 13:42,"868 1st St, New York City, NY 10001" -194854,Google Phone,1,600,05/27/19 19:42,"447 West St, New York City, NY 10001" -194854,Wired Headphones,1,11.99,05/27/19 19:42,"447 West St, New York City, NY 10001" -194855,Lightning Charging Cable,1,14.95,05/22/19 18:23,"862 Center St, Austin, TX 73301" -194856,USB-C Charging Cable,2,11.95,05/11/19 21:26,"835 Johnson St, Dallas, TX 75001" -194857,Wired Headphones,1,11.99,05/19/19 17:47,"322 Johnson St, San Francisco, CA 94016" -194858,iPhone,1,700,05/12/19 09:17,"733 Hickory St, Portland, ME 04101" -194859,34in Ultrawide Monitor,1,379.99,05/23/19 09:37,"866 Cedar St, New York City, NY 10001" -194860,USB-C Charging Cable,1,11.95,05/13/19 23:22,"292 South St, Austin, TX 73301" -194861,ThinkPad Laptop,1,999.99,05/12/19 11:19,"227 Jefferson St, New York City, NY 10001" -194862,Vareebadd Phone,1,400,05/19/19 09:01,"466 Dogwood St, San Francisco, CA 94016" -194863,USB-C Charging Cable,1,11.95,05/06/19 20:31,"927 Meadow St, Portland, OR 97035" -194864,USB-C Charging Cable,1,11.95,05/28/19 19:48,"905 West St, Austin, TX 73301" -194865,USB-C Charging Cable,1,11.95,05/28/19 16:55,"624 11th St, San Francisco, CA 94016" -194866,Apple Airpods Headphones,1,150,05/08/19 14:29,"200 Lakeview St, Boston, MA 02215" -194867,ThinkPad Laptop,1,999.99,05/11/19 11:36,"939 River St, San Francisco, CA 94016" -194868,AAA Batteries (4-pack),3,2.99,05/14/19 16:43,"182 Lincoln St, Dallas, TX 75001" -194869,USB-C Charging Cable,1,11.95,05/28/19 12:31,"871 7th St, Austin, TX 73301" -194870,20in Monitor,1,109.99,05/20/19 19:14,"820 12th St, Los Angeles, CA 90001" -194871,27in 4K Gaming Monitor,1,389.99,05/11/19 21:44,"852 13th St, Portland, ME 04101" -194872,Wired Headphones,1,11.99,05/18/19 10:03,"723 9th St, Austin, TX 73301" -194873,LG Washing Machine,1,600.0,05/29/19 13:44,"56 5th St, Atlanta, GA 30301" -194874,AAA Batteries (4-pack),1,2.99,05/14/19 17:24,"204 Center St, New York City, NY 10001" -194875,27in 4K Gaming Monitor,1,389.99,05/07/19 14:23,"960 Adams St, San Francisco, CA 94016" -194876,USB-C Charging Cable,1,11.95,05/22/19 13:26,"715 11th St, Boston, MA 02215" -194877,USB-C Charging Cable,1,11.95,05/20/19 11:50,"879 Johnson St, Boston, MA 02215" -194878,Lightning Charging Cable,1,14.95,05/24/19 19:45,"456 4th St, Atlanta, GA 30301" -194879,Bose SoundSport Headphones,1,99.99,05/11/19 20:00,"365 Jackson St, Boston, MA 02215" -194880,Lightning Charging Cable,1,14.95,05/24/19 15:00,"804 Chestnut St, Boston, MA 02215" -194881,AAA Batteries (4-pack),1,2.99,05/18/19 17:22,"273 6th St, Portland, OR 97035" -194882,Wired Headphones,2,11.99,05/18/19 06:52,"973 Jefferson St, New York City, NY 10001" -194883,USB-C Charging Cable,1,11.95,05/15/19 13:04,"743 Lincoln St, Boston, MA 02215" -194884,USB-C Charging Cable,1,11.95,05/17/19 14:02,"698 5th St, Dallas, TX 75001" -194885,Apple Airpods Headphones,1,150,05/06/19 10:01,"728 North St, Austin, TX 73301" -194886,Apple Airpods Headphones,1,150,05/07/19 08:26,"960 Sunset St, Dallas, TX 75001" -194887,AAA Batteries (4-pack),5,2.99,05/16/19 15:07,"923 Jackson St, San Francisco, CA 94016" -194888,iPhone,1,700,05/01/19 19:39,"713 14th St, Dallas, TX 75001" -,,,,, -194889,Macbook Pro Laptop,1,1700,05/11/19 12:53,"581 4th St, Austin, TX 73301" -194890,Lightning Charging Cable,1,14.95,05/15/19 20:52,"266 7th St, Los Angeles, CA 90001" -194891,Wired Headphones,1,11.99,05/04/19 22:09,"978 2nd St, Portland, OR 97035" -194892,Apple Airpods Headphones,1,150,05/18/19 01:25,"572 Madison St, Los Angeles, CA 90001" -194893,USB-C Charging Cable,1,11.95,05/13/19 18:41,"793 11th St, Los Angeles, CA 90001" -194894,iPhone,1,700,05/15/19 15:20,"528 Dogwood St, San Francisco, CA 94016" -194894,Lightning Charging Cable,1,14.95,05/15/19 15:20,"528 Dogwood St, San Francisco, CA 94016" -194895,Vareebadd Phone,1,400,05/01/19 14:53,"547 8th St, Seattle, WA 98101" -194896,Apple Airpods Headphones,1,150,05/13/19 14:02,"432 4th St, New York City, NY 10001" -194897,AA Batteries (4-pack),1,3.84,05/03/19 14:58,"479 Forest St, Seattle, WA 98101" -194898,AA Batteries (4-pack),1,3.84,05/24/19 18:16,"942 North St, Austin, TX 73301" -194899,Bose SoundSport Headphones,1,99.99,05/14/19 10:29,"21 Lake St, Los Angeles, CA 90001" -194900,27in 4K Gaming Monitor,1,389.99,05/18/19 12:27,"237 Lincoln St, New York City, NY 10001" -194901,AA Batteries (4-pack),1,3.84,05/28/19 19:21,"450 1st St, San Francisco, CA 94016" -194902,USB-C Charging Cable,1,11.95,05/27/19 17:19,"72 6th St, Austin, TX 73301" -194903,USB-C Charging Cable,1,11.95,05/29/19 20:27,"283 Madison St, San Francisco, CA 94016" -194904,AA Batteries (4-pack),1,3.84,05/08/19 15:04,"11 Ridge St, Atlanta, GA 30301" -194905,Wired Headphones,1,11.99,05/04/19 22:59,"955 Main St, Austin, TX 73301" -194906,AA Batteries (4-pack),2,3.84,05/27/19 20:57,"767 5th St, Los Angeles, CA 90001" -194907,Google Phone,1,600,05/30/19 00:22,"341 Ridge St, Atlanta, GA 30301" -194908,Flatscreen TV,1,300,05/31/19 17:25,"731 Church St, Los Angeles, CA 90001" -194909,iPhone,1,700,05/14/19 18:17,"261 Lakeview St, New York City, NY 10001" -194909,Lightning Charging Cable,1,14.95,05/14/19 18:17,"261 Lakeview St, New York City, NY 10001" -194910,Apple Airpods Headphones,1,150,05/02/19 20:53,"997 Adams St, Boston, MA 02215" -194911,iPhone,1,700,05/13/19 14:38,"539 1st St, Seattle, WA 98101" -194912,AAA Batteries (4-pack),1,2.99,05/22/19 18:36,"797 10th St, Dallas, TX 75001" -194913,Bose SoundSport Headphones,1,99.99,05/26/19 12:18,"143 12th St, Dallas, TX 75001" -194914,27in 4K Gaming Monitor,1,389.99,05/01/19 18:22,"97 1st St, New York City, NY 10001" -194915,AA Batteries (4-pack),1,3.84,05/19/19 16:32,"670 Highland St, Los Angeles, CA 90001" -194916,34in Ultrawide Monitor,1,379.99,05/30/19 17:41,"7 4th St, Seattle, WA 98101" -194917,LG Dryer,1,600.0,05/22/19 20:22,"767 Walnut St, San Francisco, CA 94016" -194918,AAA Batteries (4-pack),2,2.99,05/18/19 20:54,"767 Lincoln St, San Francisco, CA 94016" -194919,Apple Airpods Headphones,1,150,05/24/19 20:12,"602 Cedar St, Seattle, WA 98101" -194920,AAA Batteries (4-pack),1,2.99,05/10/19 14:11,"839 Dogwood St, Los Angeles, CA 90001" -194921,ThinkPad Laptop,1,999.99,05/10/19 00:04,"257 Willow St, San Francisco, CA 94016" -194922,Wired Headphones,1,11.99,05/03/19 12:57,"511 Church St, New York City, NY 10001" -194923,Google Phone,1,600,05/30/19 14:43,"544 Meadow St, San Francisco, CA 94016" -194924,Bose SoundSport Headphones,1,99.99,05/16/19 10:58,"707 Highland St, New York City, NY 10001" -194925,AA Batteries (4-pack),1,3.84,05/09/19 12:16,"179 Johnson St, San Francisco, CA 94016" -194926,Bose SoundSport Headphones,1,99.99,05/28/19 11:57,"805 River St, Los Angeles, CA 90001" -194927,Wired Headphones,1,11.99,05/22/19 11:22,"570 6th St, San Francisco, CA 94016" -194927,AAA Batteries (4-pack),1,2.99,05/22/19 11:22,"570 6th St, San Francisco, CA 94016" -194928,Lightning Charging Cable,1,14.95,05/09/19 06:13,"504 Spruce St, San Francisco, CA 94016" -194929,iPhone,1,700,05/27/19 22:04,"348 Spruce St, Los Angeles, CA 90001" -194930,Wired Headphones,1,11.99,05/31/19 22:51,"741 Maple St, Los Angeles, CA 90001" -194931,AAA Batteries (4-pack),1,2.99,05/07/19 12:00,"159 Highland St, Dallas, TX 75001" -194932,20in Monitor,1,109.99,05/22/19 18:13,"889 Washington St, Boston, MA 02215" -194933,Flatscreen TV,1,300,05/05/19 16:00,"895 Walnut St, Atlanta, GA 30301" -194934,Macbook Pro Laptop,1,1700,05/12/19 12:13,"66 Jackson St, San Francisco, CA 94016" -194935,iPhone,1,700,05/04/19 10:00,"491 Jackson St, Dallas, TX 75001" -194935,Lightning Charging Cable,1,14.95,05/04/19 10:00,"491 Jackson St, Dallas, TX 75001" -194936,34in Ultrawide Monitor,1,379.99,05/02/19 17:33,"930 Hickory St, Seattle, WA 98101" -194937,Apple Airpods Headphones,1,150,05/28/19 07:11,"552 Washington St, Austin, TX 73301" -194938,Apple Airpods Headphones,1,150,05/09/19 16:35,"560 9th St, San Francisco, CA 94016" -194939,Wired Headphones,1,11.99,05/14/19 18:03,"447 Spruce St, Portland, OR 97035" -194940,AA Batteries (4-pack),2,3.84,05/01/19 14:37,"342 Adams St, Atlanta, GA 30301" -194941,20in Monitor,1,109.99,05/29/19 02:02,"311 Hill St, Atlanta, GA 30301" -194942,Vareebadd Phone,1,400,05/22/19 17:20,"428 Spruce St, San Francisco, CA 94016" -194943,27in 4K Gaming Monitor,1,389.99,05/06/19 16:14,"889 Dogwood St, Atlanta, GA 30301" -194944,Apple Airpods Headphones,1,150,05/19/19 12:36,"186 9th St, Atlanta, GA 30301" -194945,Wired Headphones,1,11.99,05/02/19 18:48,"280 Willow St, Los Angeles, CA 90001" -194946,USB-C Charging Cable,1,11.95,05/13/19 20:52,"589 North St, Los Angeles, CA 90001" -194947,Apple Airpods Headphones,1,150,05/15/19 15:44,"94 Meadow St, San Francisco, CA 94016" -194948,Wired Headphones,1,11.99,05/08/19 22:22,"2 14th St, San Francisco, CA 94016" -194949,AAA Batteries (4-pack),3,2.99,05/25/19 11:05,"110 River St, Boston, MA 02215" -194950,27in 4K Gaming Monitor,1,389.99,05/13/19 21:19,"590 Walnut St, Boston, MA 02215" -194951,Lightning Charging Cable,1,14.95,05/24/19 20:02,"484 12th St, San Francisco, CA 94016" -194952,AAA Batteries (4-pack),1,2.99,05/15/19 10:37,"725 Adams St, Los Angeles, CA 90001" -194953,AA Batteries (4-pack),2,3.84,05/16/19 17:30,"424 Ridge St, Los Angeles, CA 90001" -194954,Wired Headphones,1,11.99,05/01/19 14:02,"269 Willow St, Los Angeles, CA 90001" -194955,AAA Batteries (4-pack),2,2.99,05/08/19 14:26,"500 Spruce St, San Francisco, CA 94016" -194956,AA Batteries (4-pack),1,3.84,05/21/19 14:07,"494 Wilson St, Atlanta, GA 30301" -194957,AA Batteries (4-pack),1,3.84,05/14/19 11:53,"198 Jackson St, Boston, MA 02215" -194958,AA Batteries (4-pack),1,3.84,05/18/19 20:17,"774 Jefferson St, Seattle, WA 98101" -194959,Apple Airpods Headphones,1,150,05/20/19 11:20,"641 8th St, New York City, NY 10001" -194960,Lightning Charging Cable,1,14.95,05/13/19 10:39,"793 4th St, Seattle, WA 98101" -194961,AAA Batteries (4-pack),1,2.99,05/16/19 19:53,"636 Maple St, Los Angeles, CA 90001" -194962,AA Batteries (4-pack),2,3.84,05/24/19 11:05,"509 Johnson St, Boston, MA 02215" -194963,Lightning Charging Cable,1,14.95,05/18/19 09:40,"620 Highland St, Los Angeles, CA 90001" -194964,Flatscreen TV,1,300,05/08/19 18:39,"14 14th St, Boston, MA 02215" -194965,USB-C Charging Cable,1,11.95,05/21/19 15:10,"768 Center St, New York City, NY 10001" -194966,AA Batteries (4-pack),1,3.84,05/01/19 13:45,"843 9th St, San Francisco, CA 94016" -194967,USB-C Charging Cable,1,11.95,05/08/19 08:52,"90 Cherry St, San Francisco, CA 94016" -194968,Apple Airpods Headphones,1,150,05/09/19 19:31,"951 Dogwood St, Atlanta, GA 30301" -194969,Lightning Charging Cable,1,14.95,05/22/19 12:41,"180 Lincoln St, Atlanta, GA 30301" -194970,USB-C Charging Cable,1,11.95,05/17/19 20:49,"612 Cedar St, Boston, MA 02215" -194971,Macbook Pro Laptop,1,1700,05/20/19 07:17,"29 Church St, San Francisco, CA 94016" -194972,AA Batteries (4-pack),2,3.84,05/19/19 20:21,"171 River St, San Francisco, CA 94016" -194973,Vareebadd Phone,1,400,05/16/19 19:18,"12 13th St, New York City, NY 10001" -194974,AA Batteries (4-pack),1,3.84,05/12/19 18:43,"508 North St, Boston, MA 02215" -194974,Apple Airpods Headphones,1,150,05/12/19 18:43,"508 North St, Boston, MA 02215" -194975,AA Batteries (4-pack),1,3.84,05/23/19 00:54,"671 7th St, Dallas, TX 75001" -194976,AAA Batteries (4-pack),1,2.99,05/26/19 22:04,"867 Elm St, San Francisco, CA 94016" -194977,Bose SoundSport Headphones,1,99.99,05/21/19 19:34,"623 Sunset St, San Francisco, CA 94016" -194978,Wired Headphones,1,11.99,05/14/19 15:40,"950 Washington St, Boston, MA 02215" -194979,USB-C Charging Cable,1,11.95,05/29/19 12:13,"623 West St, Boston, MA 02215" -194980,AA Batteries (4-pack),2,3.84,05/29/19 13:09,"711 6th St, New York City, NY 10001" -194981,Lightning Charging Cable,1,14.95,05/21/19 11:39,"40 10th St, Los Angeles, CA 90001" -194982,LG Washing Machine,1,600.0,05/16/19 13:09,"652 Meadow St, New York City, NY 10001" -194983,LG Dryer,1,600.0,05/08/19 09:51,"424 1st St, New York City, NY 10001" -194984,27in 4K Gaming Monitor,1,389.99,05/09/19 05:52,"230 Park St, Los Angeles, CA 90001" -194985,Lightning Charging Cable,2,14.95,05/16/19 10:44,"4 14th St, San Francisco, CA 94016" -194986,Apple Airpods Headphones,1,150,05/26/19 00:26,"438 Pine St, Austin, TX 73301" -194987,AAA Batteries (4-pack),1,2.99,05/22/19 12:45,"923 Madison St, Seattle, WA 98101" -194988,Lightning Charging Cable,1,14.95,05/30/19 16:29,"218 8th St, Los Angeles, CA 90001" -194989,Bose SoundSport Headphones,1,99.99,05/17/19 01:19,"559 Highland St, Portland, OR 97035" -194990,AA Batteries (4-pack),1,3.84,05/06/19 19:39,"995 13th St, Austin, TX 73301" -194991,34in Ultrawide Monitor,1,379.99,05/26/19 12:19,"504 Lincoln St, New York City, NY 10001" -194992,Bose SoundSport Headphones,1,99.99,05/21/19 20:33,"144 North St, Los Angeles, CA 90001" -194993,Lightning Charging Cable,1,14.95,05/29/19 13:39,"98 Highland St, Dallas, TX 75001" -194994,Lightning Charging Cable,1,14.95,05/11/19 13:18,"259 Lincoln St, Portland, ME 04101" -194995,USB-C Charging Cable,1,11.95,05/08/19 21:38,"144 Park St, San Francisco, CA 94016" -194996,AAA Batteries (4-pack),1,2.99,05/17/19 10:15,"769 Sunset St, Los Angeles, CA 90001" -194997,AAA Batteries (4-pack),2,2.99,05/28/19 05:42,"279 13th St, Los Angeles, CA 90001" -194998,34in Ultrawide Monitor,1,379.99,05/30/19 11:43,"272 Cherry St, Los Angeles, CA 90001" -194999,AA Batteries (4-pack),1,3.84,05/15/19 10:14,"143 12th St, Los Angeles, CA 90001" -195000,AA Batteries (4-pack),1,3.84,05/29/19 20:33,"275 14th St, Atlanta, GA 30301" -195001,Lightning Charging Cable,1,14.95,05/12/19 13:08,"339 Hill St, Los Angeles, CA 90001" -195002,USB-C Charging Cable,2,11.95,05/04/19 12:49,"267 Elm St, Boston, MA 02215" -195003,AA Batteries (4-pack),1,3.84,05/17/19 16:39,"166 Hickory St, Atlanta, GA 30301" -195004,iPhone,1,700,05/28/19 11:54,"576 Park St, Los Angeles, CA 90001" -195005,Vareebadd Phone,1,400,05/08/19 05:32,"939 Walnut St, Portland, OR 97035" -195005,Wired Headphones,1,11.99,05/08/19 05:32,"939 Walnut St, Portland, OR 97035" -195006,USB-C Charging Cable,1,11.95,05/07/19 17:23,"618 Spruce St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -195007,iPhone,1,700,05/14/19 08:45,"757 Meadow St, Portland, OR 97035" -195008,iPhone,1,700,05/09/19 10:29,"305 Lake St, Seattle, WA 98101" -195009,Bose SoundSport Headphones,1,99.99,05/05/19 07:54,"688 Cherry St, San Francisco, CA 94016" -195010,USB-C Charging Cable,2,11.95,05/05/19 22:29,"543 River St, Los Angeles, CA 90001" -195011,Wired Headphones,1,11.99,05/13/19 13:43,"440 Walnut St, New York City, NY 10001" -195012,Bose SoundSport Headphones,1,99.99,05/15/19 16:53,"365 Hill St, New York City, NY 10001" -195013,USB-C Charging Cable,1,11.95,05/17/19 10:26,"162 Wilson St, San Francisco, CA 94016" -195014,Flatscreen TV,1,300,05/27/19 13:47,"852 Johnson St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -195015,Lightning Charging Cable,1,14.95,05/06/19 10:28,"219 Sunset St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -195016,Lightning Charging Cable,1,14.95,05/01/19 22:29,"282 West St, Los Angeles, CA 90001" -195017,AAA Batteries (4-pack),2,2.99,05/14/19 07:16,"804 Lincoln St, San Francisco, CA 94016" -195018,AAA Batteries (4-pack),1,2.99,05/08/19 11:22,"389 River St, Seattle, WA 98101" -195019,27in FHD Monitor,1,149.99,05/06/19 12:18,"842 14th St, Seattle, WA 98101" -195019,Lightning Charging Cable,1,14.95,05/06/19 12:18,"842 14th St, Seattle, WA 98101" -195020,USB-C Charging Cable,1,11.95,05/15/19 19:32,"228 Maple St, Los Angeles, CA 90001" -195021,Apple Airpods Headphones,1,150,05/31/19 22:42,"566 Highland St, Los Angeles, CA 90001" -195022,AA Batteries (4-pack),1,3.84,05/23/19 19:54,"804 Elm St, San Francisco, CA 94016" -195023,27in FHD Monitor,1,149.99,05/19/19 19:07,"846 Wilson St, Portland, OR 97035" -195024,AAA Batteries (4-pack),3,2.99,05/24/19 14:44,"930 West St, Boston, MA 02215" -195025,Wired Headphones,1,11.99,05/26/19 12:29,"376 North St, Dallas, TX 75001" -195026,Apple Airpods Headphones,1,150,05/05/19 12:08,"587 Maple St, Los Angeles, CA 90001" -195027,Google Phone,1,600,05/15/19 21:05,"189 12th St, San Francisco, CA 94016" -195028,20in Monitor,1,109.99,05/07/19 20:19,"747 Johnson St, San Francisco, CA 94016" -195029,Lightning Charging Cable,1,14.95,05/04/19 10:42,"702 West St, Austin, TX 73301" -195030,Wired Headphones,1,11.99,05/25/19 12:45,"553 12th St, Los Angeles, CA 90001" -195031,34in Ultrawide Monitor,1,379.99,05/21/19 08:26,"323 Jackson St, Dallas, TX 75001" -195032,USB-C Charging Cable,1,11.95,05/09/19 23:41,"471 11th St, New York City, NY 10001" -195033,Lightning Charging Cable,1,14.95,05/04/19 15:35,"962 Cedar St, San Francisco, CA 94016" -195034,Wired Headphones,1,11.99,05/30/19 08:46,"889 9th St, Los Angeles, CA 90001" -195035,27in FHD Monitor,1,149.99,05/26/19 11:16,"812 Lakeview St, San Francisco, CA 94016" -195036,Apple Airpods Headphones,1,150,05/23/19 21:40,"756 Walnut St, Seattle, WA 98101" -195037,AAA Batteries (4-pack),1,2.99,05/26/19 19:15,"234 Adams St, New York City, NY 10001" -195038,AAA Batteries (4-pack),2,2.99,05/19/19 19:14,"890 Madison St, New York City, NY 10001" -195039,AA Batteries (4-pack),2,3.84,05/18/19 07:56,"534 Cherry St, New York City, NY 10001" -195040,AAA Batteries (4-pack),1,2.99,05/14/19 08:48,"173 Cedar St, Seattle, WA 98101" -195041,AAA Batteries (4-pack),1,2.99,05/07/19 18:31,"177 Chestnut St, New York City, NY 10001" -195042,AAA Batteries (4-pack),1,2.99,05/13/19 20:02,"763 Maple St, Los Angeles, CA 90001" -195043,34in Ultrawide Monitor,1,379.99,05/02/19 10:29,"508 West St, San Francisco, CA 94016" -195044,Wired Headphones,1,11.99,05/23/19 13:54,"389 10th St, Boston, MA 02215" -195045,Wired Headphones,1,11.99,05/24/19 02:22,"95 Jefferson St, Atlanta, GA 30301" -195045,Wired Headphones,1,11.99,05/24/19 02:22,"95 Jefferson St, Atlanta, GA 30301" -195046,AAA Batteries (4-pack),2,2.99,05/29/19 14:04,"616 13th St, San Francisco, CA 94016" -195047,AA Batteries (4-pack),2,3.84,05/12/19 21:18,"129 1st St, Seattle, WA 98101" -195048,AA Batteries (4-pack),1,3.84,05/19/19 18:01,"815 Chestnut St, San Francisco, CA 94016" -195049,Wired Headphones,1,11.99,05/08/19 13:36,"124 Main St, Seattle, WA 98101" -195050,Wired Headphones,1,11.99,05/08/19 08:44,"469 5th St, Los Angeles, CA 90001" -195051,AAA Batteries (4-pack),3,2.99,05/14/19 20:20,"146 Hill St, San Francisco, CA 94016" -195052,AAA Batteries (4-pack),2,2.99,05/17/19 15:20,"568 Jefferson St, New York City, NY 10001" -195053,Flatscreen TV,1,300,05/22/19 22:24,"404 Highland St, Los Angeles, CA 90001" -195054,AAA Batteries (4-pack),1,2.99,05/12/19 20:22,"503 Lakeview St, Dallas, TX 75001" -195055,AA Batteries (4-pack),1,3.84,05/17/19 22:23,"979 Center St, San Francisco, CA 94016" -195056,Lightning Charging Cable,1,14.95,05/17/19 11:54,"239 Elm St, Boston, MA 02215" -195057,AAA Batteries (4-pack),2,2.99,05/21/19 09:46,"155 West St, Portland, OR 97035" -195058,USB-C Charging Cable,1,11.95,05/28/19 16:09,"887 Hickory St, San Francisco, CA 94016" -195059,Wired Headphones,2,11.99,05/27/19 18:25,"856 12th St, New York City, NY 10001" -195059,27in FHD Monitor,1,149.99,05/27/19 18:25,"856 12th St, New York City, NY 10001" -195060,USB-C Charging Cable,2,11.95,05/31/19 14:39,"306 Cherry St, San Francisco, CA 94016" -195061,27in FHD Monitor,1,149.99,05/16/19 09:39,"626 Johnson St, San Francisco, CA 94016" -195062,Google Phone,1,600,05/02/19 17:03,"514 Walnut St, Boston, MA 02215" -195063,Apple Airpods Headphones,1,150,05/07/19 21:33,"306 14th St, San Francisco, CA 94016" -195064,USB-C Charging Cable,1,11.95,05/18/19 23:46,"393 Wilson St, San Francisco, CA 94016" -195065,Lightning Charging Cable,1,14.95,05/08/19 14:31,"270 Meadow St, New York City, NY 10001" -195066,iPhone,1,700,05/16/19 11:01,"195 North St, Atlanta, GA 30301" -195066,Lightning Charging Cable,1,14.95,05/16/19 11:01,"195 North St, Atlanta, GA 30301" -195067,USB-C Charging Cable,1,11.95,05/20/19 14:42,"306 Dogwood St, Atlanta, GA 30301" -195068,USB-C Charging Cable,1,11.95,05/01/19 14:28,"42 1st St, Austin, TX 73301" -195069,Bose SoundSport Headphones,1,99.99,05/17/19 18:53,"347 Highland St, San Francisco, CA 94016" -195070,Apple Airpods Headphones,1,150,05/03/19 23:27,"964 West St, Atlanta, GA 30301" -195071,ThinkPad Laptop,1,999.99,05/20/19 17:04,"858 Chestnut St, Los Angeles, CA 90001" -195072,AAA Batteries (4-pack),1,2.99,05/22/19 07:43,"926 Church St, New York City, NY 10001" -195073,ThinkPad Laptop,1,999.99,05/07/19 11:32,"779 Meadow St, Los Angeles, CA 90001" -195074,Apple Airpods Headphones,1,150,05/23/19 10:03,"993 11th St, Portland, OR 97035" -195075,Vareebadd Phone,1,400,05/13/19 10:43,"85 South St, New York City, NY 10001" -195076,20in Monitor,1,109.99,05/02/19 17:38,"179 Hickory St, Portland, OR 97035" -195077,20in Monitor,1,109.99,05/10/19 20:16,"541 Park St, Seattle, WA 98101" -195078,Flatscreen TV,1,300,05/25/19 22:08,"629 Meadow St, San Francisco, CA 94016" -195079,USB-C Charging Cable,1,11.95,05/29/19 22:06,"586 14th St, Los Angeles, CA 90001" -195080,AAA Batteries (4-pack),1,2.99,05/14/19 11:17,"368 Spruce St, Los Angeles, CA 90001" -195081,27in FHD Monitor,1,149.99,05/13/19 10:00,"526 Spruce St, Boston, MA 02215" -195082,Apple Airpods Headphones,1,150,05/25/19 12:50,"616 Maple St, Boston, MA 02215" -195083,Lightning Charging Cable,1,14.95,05/28/19 18:39,"968 8th St, Dallas, TX 75001" -195084,AA Batteries (4-pack),1,3.84,05/02/19 07:36,"678 River St, Boston, MA 02215" -195085,Flatscreen TV,1,300,05/05/19 09:15,"244 Highland St, San Francisco, CA 94016" -195086,Wired Headphones,1,11.99,05/07/19 16:11,"5 Spruce St, Seattle, WA 98101" -195087,Lightning Charging Cable,1,14.95,05/18/19 08:16,"481 Dogwood St, San Francisco, CA 94016" -195088,Bose SoundSport Headphones,1,99.99,05/06/19 17:49,"753 Forest St, New York City, NY 10001" -195089,Flatscreen TV,1,300,05/28/19 21:53,"177 Center St, New York City, NY 10001" -195090,USB-C Charging Cable,1,11.95,05/06/19 01:53,"680 13th St, Seattle, WA 98101" -195091,Apple Airpods Headphones,2,150,05/15/19 17:44,"189 South St, New York City, NY 10001" -195092,Bose SoundSport Headphones,1,99.99,05/06/19 08:43,"405 Wilson St, Los Angeles, CA 90001" -195093,Google Phone,1,600,05/07/19 09:29,"200 Walnut St, Seattle, WA 98101" -195094,Macbook Pro Laptop,1,1700,05/05/19 06:01,"501 8th St, San Francisco, CA 94016" -195095,Wired Headphones,1,11.99,05/05/19 16:07,"241 Wilson St, Portland, OR 97035" -195096,Bose SoundSport Headphones,1,99.99,05/27/19 11:45,"795 4th St, Los Angeles, CA 90001" -195097,iPhone,1,700,05/23/19 08:52,"78 Forest St, Dallas, TX 75001" -195097,Lightning Charging Cable,1,14.95,05/23/19 08:52,"78 Forest St, Dallas, TX 75001" -195097,Apple Airpods Headphones,1,150,05/23/19 08:52,"78 Forest St, Dallas, TX 75001" -195098,AAA Batteries (4-pack),1,2.99,05/21/19 14:35,"487 11th St, New York City, NY 10001" -195099,iPhone,1,700,05/30/19 18:51,"233 Cherry St, San Francisco, CA 94016" -195100,Google Phone,1,600,05/22/19 21:20,"822 Main St, Los Angeles, CA 90001" -195101,Google Phone,1,600,05/17/19 21:16,"978 Sunset St, Atlanta, GA 30301" -195102,USB-C Charging Cable,2,11.95,05/14/19 07:33,"681 14th St, Portland, OR 97035" -195103,AA Batteries (4-pack),1,3.84,05/29/19 22:59,"128 Elm St, Portland, OR 97035" -195104,iPhone,1,700,05/07/19 20:29,"897 Lake St, Austin, TX 73301" -195104,Lightning Charging Cable,1,14.95,05/07/19 20:29,"897 Lake St, Austin, TX 73301" -195105,Apple Airpods Headphones,1,150,05/16/19 13:07,"374 Highland St, San Francisco, CA 94016" -195106,Apple Airpods Headphones,1,150,05/31/19 20:54,"908 Chestnut St, San Francisco, CA 94016" -195107,AAA Batteries (4-pack),1,2.99,05/15/19 19:38,"386 Pine St, Los Angeles, CA 90001" -195108,Apple Airpods Headphones,1,150,05/12/19 17:52,"25 Cherry St, Atlanta, GA 30301" -195109,Bose SoundSport Headphones,1,99.99,05/31/19 17:32,"971 Highland St, Portland, OR 97035" -195110,27in 4K Gaming Monitor,1,389.99,05/21/19 13:18,"841 Ridge St, Los Angeles, CA 90001" -195111,34in Ultrawide Monitor,1,379.99,05/25/19 08:05,"328 Elm St, Austin, TX 73301" -195112,Wired Headphones,1,11.99,05/21/19 17:08,"799 Elm St, Boston, MA 02215" -195113,Wired Headphones,1,11.99,05/22/19 00:16,"267 Madison St, Los Angeles, CA 90001" -195114,Lightning Charging Cable,1,14.95,05/05/19 14:15,"943 7th St, Portland, OR 97035" -195115,Flatscreen TV,1,300,05/27/19 21:31,"607 Wilson St, New York City, NY 10001" -195116,AAA Batteries (4-pack),1,2.99,05/25/19 14:15,"584 Forest St, San Francisco, CA 94016" -195117,Lightning Charging Cable,1,14.95,05/30/19 21:16,"707 Cedar St, Los Angeles, CA 90001" -195118,USB-C Charging Cable,2,11.95,05/19/19 06:34,"794 Cherry St, Seattle, WA 98101" -195119,Lightning Charging Cable,1,14.95,05/31/19 09:12,"107 Johnson St, San Francisco, CA 94016" -195120,Apple Airpods Headphones,1,150,05/08/19 13:54,"596 Cedar St, Austin, TX 73301" -195121,AA Batteries (4-pack),1,3.84,05/25/19 22:45,"105 Maple St, Atlanta, GA 30301" -195122,27in FHD Monitor,1,149.99,05/30/19 09:39,"6 Forest St, San Francisco, CA 94016" -195123,27in 4K Gaming Monitor,1,389.99,05/17/19 23:36,"597 North St, San Francisco, CA 94016" -195123,AAA Batteries (4-pack),1,2.99,05/17/19 23:36,"597 North St, San Francisco, CA 94016" -195124,iPhone,1,700,05/29/19 14:37,"540 Maple St, Portland, OR 97035" -195124,Wired Headphones,1,11.99,05/29/19 14:37,"540 Maple St, Portland, OR 97035" -195125,Bose SoundSport Headphones,1,99.99,05/03/19 15:58,"935 Chestnut St, Austin, TX 73301" -195126,USB-C Charging Cable,2,11.95,05/24/19 12:35,"212 Jackson St, San Francisco, CA 94016" -195127,LG Dryer,1,600.0,05/20/19 15:50,"999 Park St, Los Angeles, CA 90001" -195128,20in Monitor,1,109.99,05/05/19 13:17,"904 Sunset St, Seattle, WA 98101" -195129,27in FHD Monitor,1,149.99,05/01/19 13:29,"885 Jefferson St, San Francisco, CA 94016" -195130,AAA Batteries (4-pack),1,2.99,05/08/19 15:38,"444 Hill St, New York City, NY 10001" -195131,Lightning Charging Cable,2,14.95,05/06/19 17:16,"655 Elm St, New York City, NY 10001" -195132,Apple Airpods Headphones,2,150,05/19/19 22:36,"260 4th St, Los Angeles, CA 90001" -195133,Google Phone,1,600,05/12/19 18:18,"683 West St, New York City, NY 10001" -195134,Wired Headphones,1,11.99,05/14/19 20:37,"880 Lake St, Portland, OR 97035" -195135,AAA Batteries (4-pack),2,2.99,05/07/19 22:00,"424 South St, Los Angeles, CA 90001" -195136,AA Batteries (4-pack),2,3.84,05/31/19 15:07,"213 Park St, San Francisco, CA 94016" -195136,Vareebadd Phone,1,400,05/31/19 15:07,"213 Park St, San Francisco, CA 94016" -195137,AA Batteries (4-pack),1,3.84,05/29/19 09:32,"623 Willow St, New York City, NY 10001" -195138,27in 4K Gaming Monitor,1,389.99,05/02/19 09:23,"376 7th St, Los Angeles, CA 90001" -195139,USB-C Charging Cable,1,11.95,05/15/19 21:45,"410 9th St, Los Angeles, CA 90001" -195140,Macbook Pro Laptop,1,1700,05/07/19 21:35,"308 12th St, Dallas, TX 75001" -195141,Lightning Charging Cable,1,14.95,05/22/19 22:25,"677 Hill St, Seattle, WA 98101" -195142,USB-C Charging Cable,1,11.95,05/13/19 18:43,"924 Hickory St, San Francisco, CA 94016" -195143,AAA Batteries (4-pack),1,2.99,05/14/19 08:42,"613 Forest St, Los Angeles, CA 90001" -195144,Vareebadd Phone,1,400,05/29/19 11:52,"814 Center St, San Francisco, CA 94016" -195145,AA Batteries (4-pack),1,3.84,05/16/19 07:32,"242 10th St, Los Angeles, CA 90001" -195146,AAA Batteries (4-pack),3,2.99,05/04/19 16:09,"137 7th St, Boston, MA 02215" -195147,Macbook Pro Laptop,1,1700,05/02/19 09:48,"247 Lake St, San Francisco, CA 94016" -195148,Apple Airpods Headphones,1,150,05/07/19 13:33,"145 Park St, New York City, NY 10001" -195149,Lightning Charging Cable,1,14.95,05/23/19 06:55,"831 Main St, San Francisco, CA 94016" -195150,AA Batteries (4-pack),1,3.84,05/02/19 21:17,"748 Center St, San Francisco, CA 94016" -195151,27in FHD Monitor,1,149.99,05/06/19 07:32,"287 Elm St, Los Angeles, CA 90001" -195152,27in 4K Gaming Monitor,1,389.99,05/19/19 09:05,"449 Adams St, Austin, TX 73301" -195153,AAA Batteries (4-pack),2,2.99,05/28/19 15:45,"424 Walnut St, Dallas, TX 75001" -195154,Bose SoundSport Headphones,1,99.99,05/17/19 13:30,"828 Walnut St, New York City, NY 10001" -195155,AAA Batteries (4-pack),1,2.99,05/23/19 08:40,"674 Highland St, Boston, MA 02215" -195156,AA Batteries (4-pack),4,3.84,05/07/19 11:49,"250 Meadow St, San Francisco, CA 94016" -195157,AAA Batteries (4-pack),1,2.99,05/30/19 09:50,"272 Park St, San Francisco, CA 94016" -195158,AAA Batteries (4-pack),2,2.99,05/01/19 23:43,"290 Johnson St, San Francisco, CA 94016" -195159,27in FHD Monitor,1,149.99,05/25/19 18:32,"968 Center St, New York City, NY 10001" -195160,Bose SoundSport Headphones,1,99.99,05/14/19 15:00,"218 Lincoln St, New York City, NY 10001" -195161,USB-C Charging Cable,1,11.95,05/03/19 15:37,"697 Cedar St, New York City, NY 10001" -195162,Google Phone,1,600,05/21/19 17:44,"587 13th St, Austin, TX 73301" -195163,USB-C Charging Cable,1,11.95,05/07/19 13:52,"115 Jackson St, Atlanta, GA 30301" -195164,Bose SoundSport Headphones,1,99.99,05/09/19 10:47,"546 Ridge St, Portland, OR 97035" -195165,Bose SoundSport Headphones,1,99.99,05/10/19 13:10,"708 Hickory St, Austin, TX 73301" -195166,AAA Batteries (4-pack),1,2.99,05/13/19 07:44,"528 7th St, Los Angeles, CA 90001" -195167,ThinkPad Laptop,1,999.99,05/21/19 07:15,"747 Church St, Atlanta, GA 30301" -195168,USB-C Charging Cable,1,11.95,05/16/19 17:07,"664 2nd St, New York City, NY 10001" -195169,Lightning Charging Cable,1,14.95,05/22/19 19:48,"637 Park St, Portland, OR 97035" -195170,Macbook Pro Laptop,1,1700,05/10/19 13:13,"963 9th St, San Francisco, CA 94016" -195171,Wired Headphones,2,11.99,05/20/19 22:46,"30 9th St, Atlanta, GA 30301" -195172,Apple Airpods Headphones,1,150,05/15/19 20:19,"294 Pine St, Los Angeles, CA 90001" -195173,Apple Airpods Headphones,1,150,05/02/19 21:33,"256 10th St, Seattle, WA 98101" -195174,Bose SoundSport Headphones,1,99.99,05/22/19 08:43,"951 Chestnut St, Los Angeles, CA 90001" -195175,Bose SoundSport Headphones,1,99.99,05/14/19 17:06,"633 1st St, Los Angeles, CA 90001" -195176,Google Phone,1,600,05/09/19 07:46,"554 Highland St, Los Angeles, CA 90001" -195177,AA Batteries (4-pack),1,3.84,05/29/19 14:05,"104 14th St, Atlanta, GA 30301" -195178,Lightning Charging Cable,1,14.95,05/12/19 22:13,"103 6th St, Austin, TX 73301" -195179,20in Monitor,1,109.99,05/29/19 14:12,"993 Willow St, New York City, NY 10001" -195180,Bose SoundSport Headphones,1,99.99,05/31/19 20:05,"949 7th St, Atlanta, GA 30301" -195181,Bose SoundSport Headphones,1,99.99,05/18/19 12:12,"258 Chestnut St, New York City, NY 10001" -195182,Macbook Pro Laptop,1,1700,05/27/19 22:14,"826 7th St, Dallas, TX 75001" -195183,AA Batteries (4-pack),1,3.84,05/22/19 12:06,"184 Jackson St, New York City, NY 10001" -195184,AA Batteries (4-pack),1,3.84,05/13/19 08:38,"410 Lincoln St, Dallas, TX 75001" -195185,iPhone,1,700,05/27/19 19:37,"355 Jackson St, Los Angeles, CA 90001" -195186,AA Batteries (4-pack),1,3.84,05/29/19 09:25,"824 1st St, Austin, TX 73301" -195187,Lightning Charging Cable,1,14.95,05/15/19 10:25,"872 Forest St, Dallas, TX 75001" -195188,AAA Batteries (4-pack),1,2.99,05/05/19 13:13,"9 West St, San Francisco, CA 94016" -195188,Bose SoundSport Headphones,1,99.99,05/05/19 13:13,"9 West St, San Francisco, CA 94016" -195189,USB-C Charging Cable,1,11.95,05/16/19 18:43,"584 8th St, Boston, MA 02215" -195190,Wired Headphones,1,11.99,05/25/19 12:21,"653 North St, Seattle, WA 98101" -195191,AA Batteries (4-pack),2,3.84,05/28/19 11:29,"430 Hill St, Los Angeles, CA 90001" -195192,Macbook Pro Laptop,1,1700,05/21/19 12:17,"510 West St, Los Angeles, CA 90001" -195192,AA Batteries (4-pack),3,3.84,05/21/19 12:17,"510 West St, Los Angeles, CA 90001" -195193,Lightning Charging Cable,1,14.95,05/24/19 11:38,"42 Walnut St, Seattle, WA 98101" -195194,Apple Airpods Headphones,1,150,05/16/19 03:41,"16 Washington St, Los Angeles, CA 90001" -195195,AAA Batteries (4-pack),2,2.99,05/19/19 22:55,"913 4th St, San Francisco, CA 94016" -195196,AA Batteries (4-pack),1,3.84,05/02/19 12:13,"877 Sunset St, New York City, NY 10001" -195197,AAA Batteries (4-pack),2,2.99,05/22/19 23:56,"279 Jefferson St, Los Angeles, CA 90001" -195198,ThinkPad Laptop,1,999.99,05/22/19 12:31,"632 Sunset St, Los Angeles, CA 90001" -195199,Lightning Charging Cable,1,14.95,05/09/19 22:16,"560 Walnut St, Dallas, TX 75001" -195200,Lightning Charging Cable,1,14.95,05/30/19 12:53,"14 Main St, Atlanta, GA 30301" -195201,Wired Headphones,1,11.99,05/30/19 16:54,"964 11th St, New York City, NY 10001" -195202,Wired Headphones,1,11.99,05/15/19 18:58,"194 Sunset St, New York City, NY 10001" -195203,USB-C Charging Cable,1,11.95,05/23/19 21:38,"411 6th St, San Francisco, CA 94016" -195204,Google Phone,1,600,05/04/19 14:47,"447 Hickory St, Boston, MA 02215" -195205,Apple Airpods Headphones,1,150,05/24/19 14:06,"856 1st St, Atlanta, GA 30301" -195206,Apple Airpods Headphones,1,150,05/22/19 10:53,"158 Cherry St, Los Angeles, CA 90001" -195207,Bose SoundSport Headphones,1,99.99,05/18/19 00:08,"574 8th St, Boston, MA 02215" -195208,Bose SoundSport Headphones,1,99.99,05/11/19 19:11,"354 14th St, San Francisco, CA 94016" -195209,Bose SoundSport Headphones,1,99.99,05/12/19 13:19,"255 Elm St, Austin, TX 73301" -195210,AAA Batteries (4-pack),2,2.99,05/23/19 08:46,"197 8th St, Dallas, TX 75001" -195211,AA Batteries (4-pack),1,3.84,05/28/19 21:15,"12 Cherry St, San Francisco, CA 94016" -195212,Google Phone,1,600,05/23/19 01:07,"87 Wilson St, New York City, NY 10001" -195213,Wired Headphones,1,11.99,05/01/19 17:29,"996 Ridge St, Atlanta, GA 30301" -195214,Flatscreen TV,1,300,05/24/19 23:15,"725 Chestnut St, Dallas, TX 75001" -195215,AA Batteries (4-pack),1,3.84,05/12/19 15:28,"566 11th St, San Francisco, CA 94016" -195216,AA Batteries (4-pack),1,3.84,05/07/19 15:48,"47 Wilson St, Dallas, TX 75001" -195217,Lightning Charging Cable,1,14.95,05/12/19 20:10,"733 Lakeview St, Portland, OR 97035" -195218,Lightning Charging Cable,1,14.95,05/26/19 14:43,"203 Main St, Los Angeles, CA 90001" -195219,Bose SoundSport Headphones,1,99.99,05/23/19 14:34,"418 6th St, New York City, NY 10001" -195220,AAA Batteries (4-pack),1,2.99,05/21/19 10:37,"810 Lake St, Dallas, TX 75001" -195221,20in Monitor,1,109.99,05/12/19 13:35,"411 Church St, New York City, NY 10001" -195222,AA Batteries (4-pack),1,3.84,05/03/19 19:32,"530 Jackson St, Portland, OR 97035" -195223,AA Batteries (4-pack),1,3.84,05/12/19 10:06,"166 Lake St, Seattle, WA 98101" -195224,iPhone,1,700,05/13/19 14:00,"463 10th St, Dallas, TX 75001" -195224,Lightning Charging Cable,1,14.95,05/13/19 14:00,"463 10th St, Dallas, TX 75001" -195225,AAA Batteries (4-pack),1,2.99,05/24/19 05:40,"719 Maple St, New York City, NY 10001" -195226,Google Phone,1,600,05/29/19 12:22,"875 Park St, San Francisco, CA 94016" -195227,Lightning Charging Cable,1,14.95,05/29/19 18:56,"810 Dogwood St, Austin, TX 73301" -195228,USB-C Charging Cable,1,11.95,05/01/19 11:19,"739 7th St, Los Angeles, CA 90001" -195229,Bose SoundSport Headphones,1,99.99,05/22/19 21:57,"728 Walnut St, Boston, MA 02215" -195230,iPhone,1,700,05/05/19 10:23,"535 9th St, Boston, MA 02215" -195231,ThinkPad Laptop,1,999.99,05/29/19 23:06,"49 Lakeview St, Boston, MA 02215" -195232,Apple Airpods Headphones,1,150,05/30/19 11:11,"736 Spruce St, Los Angeles, CA 90001" -195233,AA Batteries (4-pack),1,3.84,05/18/19 22:03,"571 14th St, Atlanta, GA 30301" -195234,Bose SoundSport Headphones,1,99.99,05/21/19 12:25,"63 12th St, Dallas, TX 75001" -195235,27in 4K Gaming Monitor,1,389.99,05/21/19 11:55,"597 River St, New York City, NY 10001" -195236,AA Batteries (4-pack),1,3.84,05/26/19 01:46,"264 Ridge St, Dallas, TX 75001" -195237,Apple Airpods Headphones,1,150,05/09/19 23:57,"841 Forest St, San Francisco, CA 94016" -195238,USB-C Charging Cable,1,11.95,05/29/19 15:18,"497 8th St, San Francisco, CA 94016" -195239,Google Phone,1,600,05/15/19 09:39,"331 14th St, Dallas, TX 75001" -195240,Lightning Charging Cable,1,14.95,05/20/19 10:36,"911 4th St, Boston, MA 02215" -195241,AA Batteries (4-pack),1,3.84,05/31/19 17:07,"917 Dogwood St, Boston, MA 02215" -195242,Lightning Charging Cable,1,14.95,05/13/19 15:44,"277 Wilson St, Seattle, WA 98101" -195243,Lightning Charging Cable,1,14.95,05/23/19 16:08,"635 8th St, Portland, OR 97035" -195244,AA Batteries (4-pack),1,3.84,05/18/19 04:29,"378 Elm St, Los Angeles, CA 90001" -195245,34in Ultrawide Monitor,1,379.99,05/04/19 18:21,"274 Meadow St, Los Angeles, CA 90001" -195246,AA Batteries (4-pack),1,3.84,05/16/19 21:02,"722 Chestnut St, Dallas, TX 75001" -195247,iPhone,1,700,05/11/19 14:46,"473 11th St, San Francisco, CA 94016" -195247,Lightning Charging Cable,1,14.95,05/11/19 14:46,"473 11th St, San Francisco, CA 94016" -195248,Flatscreen TV,1,300,05/03/19 01:14,"194 Elm St, Boston, MA 02215" -195249,AA Batteries (4-pack),2,3.84,05/23/19 14:57,"28 Hickory St, Seattle, WA 98101" -195250,34in Ultrawide Monitor,1,379.99,05/16/19 11:05,"722 Washington St, San Francisco, CA 94016" -195251,Apple Airpods Headphones,1,150,05/19/19 14:36,"401 Maple St, Atlanta, GA 30301" -195252,Apple Airpods Headphones,1,150,05/01/19 11:29,"731 7th St, Seattle, WA 98101" -195253,Lightning Charging Cable,1,14.95,05/11/19 00:11,"811 Park St, Portland, ME 04101" -195254,Apple Airpods Headphones,1,150,05/04/19 20:09,"628 Main St, Dallas, TX 75001" -195255,Flatscreen TV,1,300,05/09/19 19:16,"856 Jackson St, Dallas, TX 75001" -195256,Google Phone,1,600,05/04/19 20:40,"621 Hill St, Los Angeles, CA 90001" -195256,USB-C Charging Cable,1,11.95,05/04/19 20:40,"621 Hill St, Los Angeles, CA 90001" -195257,Lightning Charging Cable,1,14.95,05/22/19 09:39,"518 Hill St, Dallas, TX 75001" -195258,Apple Airpods Headphones,1,150,05/06/19 17:26,"242 Center St, Dallas, TX 75001" -195259,iPhone,1,700,05/02/19 11:19,"949 Adams St, Seattle, WA 98101" -195260,Apple Airpods Headphones,1,150,05/29/19 10:34,"823 Cedar St, Los Angeles, CA 90001" -195261,Wired Headphones,1,11.99,05/18/19 18:01,"563 Washington St, Boston, MA 02215" -195262,AA Batteries (4-pack),1,3.84,05/13/19 22:41,"287 Walnut St, New York City, NY 10001" -195263,Lightning Charging Cable,1,14.95,05/19/19 21:58,"415 Lakeview St, Atlanta, GA 30301" -195264,AA Batteries (4-pack),2,3.84,05/05/19 14:47,"453 9th St, Atlanta, GA 30301" -195265,AA Batteries (4-pack),1,3.84,05/27/19 22:15,"751 Cedar St, Austin, TX 73301" -195266,USB-C Charging Cable,2,11.95,05/17/19 10:12,"648 Meadow St, Boston, MA 02215" -195267,Bose SoundSport Headphones,1,99.99,05/06/19 11:49,"322 Pine St, New York City, NY 10001" -195268,Google Phone,1,600,05/31/19 22:15,"726 Walnut St, Seattle, WA 98101" -195269,Google Phone,1,600,05/07/19 08:35,"181 Hickory St, New York City, NY 10001" -195270,Wired Headphones,1,11.99,05/01/19 21:56,"126 Washington St, Los Angeles, CA 90001" -195271,AA Batteries (4-pack),1,3.84,05/11/19 14:44,"323 9th St, Boston, MA 02215" -195272,Bose SoundSport Headphones,1,99.99,05/01/19 10:32,"301 South St, San Francisco, CA 94016" -195273,USB-C Charging Cable,1,11.95,05/18/19 14:40,"205 Cherry St, Dallas, TX 75001" -195274,ThinkPad Laptop,1,999.99,05/03/19 15:23,"543 Church St, San Francisco, CA 94016" -195275,27in FHD Monitor,1,149.99,05/10/19 11:27,"828 5th St, Portland, OR 97035" -195276,Wired Headphones,2,11.99,05/13/19 06:52,"654 Highland St, Austin, TX 73301" -195277,Apple Airpods Headphones,1,150,05/20/19 23:25,"104 6th St, San Francisco, CA 94016" -195278,Wired Headphones,1,11.99,05/11/19 17:14,"437 Maple St, Seattle, WA 98101" -195279,Wired Headphones,1,11.99,05/09/19 20:01,"445 West St, Atlanta, GA 30301" -195280,34in Ultrawide Monitor,1,379.99,05/21/19 13:47,"531 1st St, San Francisco, CA 94016" -195281,Google Phone,1,600,05/10/19 09:15,"709 Maple St, San Francisco, CA 94016" -195282,USB-C Charging Cable,1,11.95,05/28/19 20:51,"117 Main St, New York City, NY 10001" -195283,iPhone,1,700,05/28/19 12:45,"514 2nd St, Seattle, WA 98101" -195283,Lightning Charging Cable,1,14.95,05/28/19 12:45,"514 2nd St, Seattle, WA 98101" -195284,Macbook Pro Laptop,1,1700,05/18/19 12:27,"386 Madison St, Portland, ME 04101" -195285,Google Phone,1,600,05/30/19 11:15,"974 12th St, Austin, TX 73301" -195286,20in Monitor,1,109.99,05/28/19 20:00,"775 5th St, Atlanta, GA 30301" -195287,ThinkPad Laptop,1,999.99,05/06/19 14:27,"407 Church St, Portland, OR 97035" -195288,Macbook Pro Laptop,1,1700,05/12/19 18:57,"176 Lakeview St, San Francisco, CA 94016" -195289,Lightning Charging Cable,1,14.95,05/31/19 10:12,"417 Elm St, Boston, MA 02215" -195290,AAA Batteries (4-pack),1,2.99,05/05/19 18:59,"318 Lincoln St, New York City, NY 10001" -195291,USB-C Charging Cable,1,11.95,05/23/19 12:52,"304 Chestnut St, Seattle, WA 98101" -195292,Lightning Charging Cable,1,14.95,05/06/19 20:40,"112 Hickory St, Boston, MA 02215" -195293,AA Batteries (4-pack),1,3.84,05/05/19 00:13,"852 Jefferson St, Seattle, WA 98101" -195294,AA Batteries (4-pack),1,3.84,05/21/19 18:48,"803 Main St, Boston, MA 02215" -195295,Flatscreen TV,1,300,05/10/19 12:47,"821 South St, Dallas, TX 75001" -195296,ThinkPad Laptop,1,999.99,05/16/19 11:27,"55 Lakeview St, San Francisco, CA 94016" -195296,Bose SoundSport Headphones,1,99.99,05/16/19 11:27,"55 Lakeview St, San Francisco, CA 94016" -195297,27in FHD Monitor,1,149.99,05/30/19 17:49,"298 Church St, Dallas, TX 75001" -195298,AA Batteries (4-pack),1,3.84,05/11/19 20:04,"245 Hickory St, Boston, MA 02215" -195299,Lightning Charging Cable,1,14.95,05/30/19 19:33,"237 North St, Dallas, TX 75001" -195299,Lightning Charging Cable,1,14.95,05/30/19 19:33,"237 North St, Dallas, TX 75001" -195300,AA Batteries (4-pack),1,3.84,05/30/19 22:20,"380 5th St, San Francisco, CA 94016" -195301,Lightning Charging Cable,1,14.95,05/09/19 15:01,"878 Ridge St, San Francisco, CA 94016" -195302,AAA Batteries (4-pack),2,2.99,05/30/19 07:05,"610 Meadow St, Dallas, TX 75001" -195303,AA Batteries (4-pack),1,3.84,05/22/19 18:54,"169 Johnson St, San Francisco, CA 94016" -195304,iPhone,1,700,05/01/19 12:28,"922 Washington St, San Francisco, CA 94016" -195305,AAA Batteries (4-pack),2,2.99,05/29/19 10:20,"320 Cedar St, Boston, MA 02215" -195306,Wired Headphones,1,11.99,05/02/19 11:08,"347 Chestnut St, New York City, NY 10001" -195307,USB-C Charging Cable,1,11.95,05/25/19 17:23,"762 Jackson St, Dallas, TX 75001" -195308,iPhone,1,700,05/05/19 12:05,"180 Willow St, New York City, NY 10001" -195309,Wired Headphones,1,11.99,05/22/19 23:03,"823 2nd St, Los Angeles, CA 90001" -195310,34in Ultrawide Monitor,2,379.99,05/14/19 19:27,"612 Jackson St, New York City, NY 10001" -195311,AAA Batteries (4-pack),1,2.99,05/01/19 15:47,"393 Center St, Dallas, TX 75001" -195312,Macbook Pro Laptop,1,1700,05/25/19 19:32,"419 Hickory St, Dallas, TX 75001" -195313,AAA Batteries (4-pack),4,2.99,05/09/19 13:45,"182 10th St, Dallas, TX 75001" -195314,Apple Airpods Headphones,1,150,05/14/19 10:35,"636 14th St, Atlanta, GA 30301" -195315,27in FHD Monitor,1,149.99,05/26/19 13:31,"850 Maple St, Los Angeles, CA 90001" -195316,Lightning Charging Cable,1,14.95,05/21/19 12:57,"395 6th St, San Francisco, CA 94016" -195317,iPhone,1,700,05/10/19 16:03,"845 Willow St, Atlanta, GA 30301" -195318,Apple Airpods Headphones,1,150,05/26/19 18:58,"924 Center St, Portland, OR 97035" -195319,AAA Batteries (4-pack),1,2.99,05/10/19 12:46,"275 Chestnut St, Dallas, TX 75001" -195320,20in Monitor,1,109.99,05/03/19 16:48,"172 2nd St, San Francisco, CA 94016" -195321,27in 4K Gaming Monitor,1,389.99,05/08/19 09:56,"646 5th St, Seattle, WA 98101" -195322,USB-C Charging Cable,1,11.95,05/29/19 14:40,"879 10th St, New York City, NY 10001" -195323,34in Ultrawide Monitor,1,379.99,05/11/19 10:17,"236 Walnut St, Portland, OR 97035" -195324,Wired Headphones,1,11.99,05/01/19 20:59,"784 Ridge St, Seattle, WA 98101" -195325,AA Batteries (4-pack),1,3.84,05/11/19 14:02,"274 Pine St, Atlanta, GA 30301" -195326,Apple Airpods Headphones,1,150,05/20/19 17:23,"784 Lakeview St, San Francisco, CA 94016" -195327,AA Batteries (4-pack),2,3.84,05/17/19 20:01,"875 Main St, Austin, TX 73301" -195328,Google Phone,1,600,05/03/19 13:30,"589 Walnut St, Boston, MA 02215" -195328,USB-C Charging Cable,1,11.95,05/03/19 13:30,"589 Walnut St, Boston, MA 02215" -195329,Flatscreen TV,1,300,05/23/19 08:05,"121 13th St, San Francisco, CA 94016" -195330,Lightning Charging Cable,1,14.95,05/17/19 09:37,"370 8th St, Portland, OR 97035" -195331,AAA Batteries (4-pack),1,2.99,05/01/19 16:15,"224 Hickory St, Los Angeles, CA 90001" -195332,Apple Airpods Headphones,1,150,05/11/19 11:54,"438 9th St, Los Angeles, CA 90001" -195333,AA Batteries (4-pack),1,3.84,05/14/19 22:12,"745 Walnut St, Portland, OR 97035" -195334,USB-C Charging Cable,1,11.95,05/02/19 12:44,"398 4th St, San Francisco, CA 94016" -195335,AA Batteries (4-pack),3,3.84,05/07/19 13:09,"740 North St, New York City, NY 10001" -195336,iPhone,1,700,05/27/19 14:12,"399 11th St, Boston, MA 02215" -195337,USB-C Charging Cable,1,11.95,05/09/19 18:20,"926 Cherry St, San Francisco, CA 94016" -195338,Bose SoundSport Headphones,1,99.99,05/17/19 18:29,"630 9th St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -195339,27in FHD Monitor,1,149.99,05/13/19 18:54,"886 1st St, Boston, MA 02215" -195340,AAA Batteries (4-pack),2,2.99,05/06/19 14:19,"354 6th St, Los Angeles, CA 90001" -195341,USB-C Charging Cable,1,11.95,05/20/19 20:59,"974 1st St, Dallas, TX 75001" -195342,Bose SoundSport Headphones,1,99.99,05/23/19 17:08,"290 11th St, Los Angeles, CA 90001" -195343,AA Batteries (4-pack),1,3.84,05/27/19 22:25,"627 Jefferson St, Dallas, TX 75001" -195344,27in FHD Monitor,1,149.99,05/08/19 09:27,"968 Hill St, Los Angeles, CA 90001" -195345,AAA Batteries (4-pack),2,2.99,05/15/19 21:26,"299 Willow St, Dallas, TX 75001" -195346,Apple Airpods Headphones,1,150,05/06/19 13:34,"267 6th St, Austin, TX 73301" -195347,ThinkPad Laptop,1,999.99,05/29/19 11:44,"425 Hickory St, Los Angeles, CA 90001" -195348,Lightning Charging Cable,1,14.95,05/08/19 20:07,"160 West St, Atlanta, GA 30301" -195349,27in FHD Monitor,1,149.99,05/27/19 12:03,"60 West St, San Francisco, CA 94016" -195350,Bose SoundSport Headphones,1,99.99,05/10/19 17:12,"204 Lincoln St, Dallas, TX 75001" -195351,Lightning Charging Cable,1,14.95,05/11/19 07:59,"853 Main St, San Francisco, CA 94016" -195352,27in FHD Monitor,1,149.99,05/28/19 18:51,"826 South St, Los Angeles, CA 90001" -195353,USB-C Charging Cable,1,11.95,05/19/19 20:51,"939 Cedar St, Portland, ME 04101" -195354,AA Batteries (4-pack),1,3.84,05/07/19 21:13,"920 Jackson St, Boston, MA 02215" -195355,Bose SoundSport Headphones,1,99.99,05/28/19 20:17,"789 North St, Portland, OR 97035" -195356,Lightning Charging Cable,1,14.95,05/16/19 22:22,"93 Chestnut St, Boston, MA 02215" -195357,AA Batteries (4-pack),1,3.84,05/22/19 19:03,"501 Jackson St, Portland, OR 97035" -195358,Google Phone,1,600,05/15/19 18:17,"103 13th St, Boston, MA 02215" -195359,AA Batteries (4-pack),1,3.84,05/09/19 12:56,"676 Jefferson St, San Francisco, CA 94016" -195360,Wired Headphones,1,11.99,05/13/19 16:45,"48 Adams St, Los Angeles, CA 90001" -195361,Wired Headphones,1,11.99,05/16/19 13:10,"67 Adams St, Los Angeles, CA 90001" -195362,27in 4K Gaming Monitor,1,389.99,05/25/19 13:37,"763 Lakeview St, Dallas, TX 75001" -195363,AAA Batteries (4-pack),2,2.99,05/22/19 14:32,"876 Church St, Boston, MA 02215" -195364,AA Batteries (4-pack),1,3.84,05/15/19 15:22,"564 Cedar St, Seattle, WA 98101" -195365,AAA Batteries (4-pack),3,2.99,05/30/19 13:39,"569 Center St, San Francisco, CA 94016" -195366,27in 4K Gaming Monitor,1,389.99,05/25/19 23:50,"131 Wilson St, New York City, NY 10001" -195367,Macbook Pro Laptop,1,1700,05/11/19 17:19,"269 Sunset St, Seattle, WA 98101" -195368,Wired Headphones,1,11.99,05/13/19 11:49,"454 8th St, New York City, NY 10001" -195369,Lightning Charging Cable,1,14.95,05/01/19 21:38,"120 Lake St, San Francisco, CA 94016" -195370,ThinkPad Laptop,1,999.99,05/20/19 18:40,"806 5th St, San Francisco, CA 94016" -195371,AAA Batteries (4-pack),1,2.99,05/11/19 10:12,"924 Forest St, San Francisco, CA 94016" -195372,Lightning Charging Cable,1,14.95,05/27/19 15:15,"376 West St, Boston, MA 02215" -195373,AAA Batteries (4-pack),1,2.99,05/27/19 16:36,"279 Lakeview St, New York City, NY 10001" -195374,27in 4K Gaming Monitor,1,389.99,05/25/19 12:45,"996 River St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -195375,34in Ultrawide Monitor,1,379.99,05/28/19 08:43,"215 Chestnut St, New York City, NY 10001" -195376,20in Monitor,1,109.99,05/22/19 16:02,"727 South St, Seattle, WA 98101" -195377,Google Phone,1,600,05/29/19 14:32,"97 5th St, Los Angeles, CA 90001" -195377,USB-C Charging Cable,1,11.95,05/29/19 14:32,"97 5th St, Los Angeles, CA 90001" -195378,AAA Batteries (4-pack),2,2.99,05/12/19 13:54,"361 Church St, San Francisco, CA 94016" -195379,USB-C Charging Cable,1,11.95,05/23/19 21:04,"759 Forest St, Atlanta, GA 30301" -195380,27in 4K Gaming Monitor,1,389.99,05/02/19 17:43,"614 12th St, Dallas, TX 75001" -195381,AAA Batteries (4-pack),1,2.99,05/08/19 17:08,"893 5th St, Boston, MA 02215" -195382,Wired Headphones,1,11.99,05/28/19 11:17,"27 South St, Los Angeles, CA 90001" -195383,USB-C Charging Cable,1,11.95,05/19/19 16:14,"64 8th St, Boston, MA 02215" -195384,Lightning Charging Cable,1,14.95,05/23/19 22:53,"910 Highland St, Boston, MA 02215" -195385,USB-C Charging Cable,1,11.95,05/04/19 08:36,"325 Madison St, Portland, OR 97035" -195386,Lightning Charging Cable,1,14.95,05/07/19 22:26,"501 Maple St, San Francisco, CA 94016" -195387,AA Batteries (4-pack),1,3.84,05/08/19 18:51,"985 Jefferson St, Portland, ME 04101" -195388,Wired Headphones,1,11.99,05/02/19 18:20,"512 13th St, Boston, MA 02215" -195389,USB-C Charging Cable,1,11.95,05/13/19 13:53,"492 South St, New York City, NY 10001" -195390,USB-C Charging Cable,1,11.95,05/09/19 19:25,"485 Park St, Dallas, TX 75001" -195391,iPhone,1,700,05/28/19 10:01,"338 Hickory St, San Francisco, CA 94016" -195392,AA Batteries (4-pack),1,3.84,05/24/19 20:55,"727 9th St, San Francisco, CA 94016" -195393,AAA Batteries (4-pack),1,2.99,05/28/19 14:21,"933 Washington St, San Francisco, CA 94016" -195394,27in 4K Gaming Monitor,1,389.99,05/16/19 22:13,"316 Cherry St, San Francisco, CA 94016" -195395,AAA Batteries (4-pack),2,2.99,05/03/19 13:39,"563 Hill St, Boston, MA 02215" -195396,AAA Batteries (4-pack),1,2.99,05/29/19 04:01,"509 Main St, San Francisco, CA 94016" -195397,20in Monitor,1,109.99,05/24/19 08:42,"724 4th St, San Francisco, CA 94016" -195398,USB-C Charging Cable,1,11.95,05/01/19 23:58,"527 Lakeview St, Boston, MA 02215" -195399,USB-C Charging Cable,1,11.95,05/10/19 13:42,"329 Forest St, Atlanta, GA 30301" -195400,iPhone,1,700,05/01/19 23:31,"10 Maple St, Los Angeles, CA 90001" -195400,Lightning Charging Cable,1,14.95,05/01/19 23:31,"10 Maple St, Los Angeles, CA 90001" -195401,27in 4K Gaming Monitor,1,389.99,05/05/19 09:08,"126 Hill St, San Francisco, CA 94016" -195402,Apple Airpods Headphones,1,150,05/14/19 13:26,"279 Pine St, Atlanta, GA 30301" -195403,Bose SoundSport Headphones,1,99.99,05/12/19 09:31,"985 Spruce St, Dallas, TX 75001" -195404,Apple Airpods Headphones,1,150,05/02/19 22:02,"401 Chestnut St, Atlanta, GA 30301" -195404,Google Phone,1,600,05/02/19 22:02,"401 Chestnut St, Atlanta, GA 30301" -195405,iPhone,1,700,05/28/19 15:25,"869 Dogwood St, Atlanta, GA 30301" -195405,Lightning Charging Cable,1,14.95,05/28/19 15:25,"869 Dogwood St, Atlanta, GA 30301" -195406,iPhone,1,700,05/09/19 12:12,"202 Church St, Los Angeles, CA 90001" -195407,Bose SoundSport Headphones,1,99.99,05/08/19 13:15,"583 9th St, Los Angeles, CA 90001" -195408,ThinkPad Laptop,1,999.99,05/11/19 23:02,"35 Chestnut St, Atlanta, GA 30301" -195409,27in 4K Gaming Monitor,1,389.99,05/22/19 18:46,"668 Park St, Atlanta, GA 30301" -195410,AA Batteries (4-pack),3,3.84,05/09/19 12:59,"380 Main St, New York City, NY 10001" -195411,34in Ultrawide Monitor,1,379.99,05/02/19 20:38,"345 Walnut St, Seattle, WA 98101" -195412,Bose SoundSport Headphones,1,99.99,05/25/19 20:16,"980 West St, Austin, TX 73301" -195413,LG Dryer,1,600.0,05/17/19 12:49,"70 Lakeview St, San Francisco, CA 94016" -195414,AA Batteries (4-pack),1,3.84,05/14/19 13:55,"641 10th St, Los Angeles, CA 90001" -195415,AAA Batteries (4-pack),1,2.99,05/19/19 10:38,"79 Dogwood St, San Francisco, CA 94016" -195416,Apple Airpods Headphones,1,150,05/22/19 13:33,"44 South St, Atlanta, GA 30301" -195417,Vareebadd Phone,1,400,05/05/19 09:51,"510 11th St, San Francisco, CA 94016" -195417,Bose SoundSport Headphones,1,99.99,05/05/19 09:51,"510 11th St, San Francisco, CA 94016" -195418,Wired Headphones,1,11.99,05/10/19 08:05,"516 12th St, Dallas, TX 75001" -195419,Lightning Charging Cable,2,14.95,05/21/19 18:04,"135 Chestnut St, San Francisco, CA 94016" -195420,Wired Headphones,1,11.99,05/29/19 23:21,"56 Walnut St, Seattle, WA 98101" -195421,27in FHD Monitor,1,149.99,05/24/19 00:02,"978 Sunset St, Boston, MA 02215" -195422,Lightning Charging Cable,1,14.95,05/06/19 10:32,"493 Chestnut St, Atlanta, GA 30301" -195423,34in Ultrawide Monitor,1,379.99,05/06/19 10:26,"517 Pine St, Los Angeles, CA 90001" -195424,LG Washing Machine,1,600.0,05/05/19 17:56,"692 13th St, Atlanta, GA 30301" -195425,AAA Batteries (4-pack),1,2.99,05/28/19 21:40,"22 Dogwood St, Portland, OR 97035" -195426,iPhone,1,700,05/05/19 14:08,"17 Lakeview St, Boston, MA 02215" -195426,Lightning Charging Cable,1,14.95,05/05/19 14:08,"17 Lakeview St, Boston, MA 02215" -195427,Wired Headphones,1,11.99,05/12/19 10:08,"79 Meadow St, New York City, NY 10001" -195428,Apple Airpods Headphones,1,150,05/26/19 10:55,"528 Pine St, Los Angeles, CA 90001" -195429,USB-C Charging Cable,1,11.95,05/17/19 12:53,"590 Adams St, Boston, MA 02215" -195430,AAA Batteries (4-pack),2,2.99,05/11/19 14:04,"542 Johnson St, Los Angeles, CA 90001" -195431,Apple Airpods Headphones,1,150,05/12/19 12:51,"740 Ridge St, New York City, NY 10001" -195432,AAA Batteries (4-pack),3,2.99,05/13/19 12:31,"881 13th St, Atlanta, GA 30301" -195433,AAA Batteries (4-pack),1,2.99,05/26/19 13:02,"513 West St, Dallas, TX 75001" -195434,Lightning Charging Cable,1,14.95,05/07/19 23:01,"957 1st St, Atlanta, GA 30301" -195435,Google Phone,1,600,05/16/19 18:39,"164 Jackson St, Los Angeles, CA 90001" -195436,20in Monitor,1,109.99,05/14/19 18:18,"240 6th St, Boston, MA 02215" -195437,Wired Headphones,1,11.99,05/04/19 11:14,"856 7th St, Boston, MA 02215" -195438,AAA Batteries (4-pack),1,2.99,05/21/19 14:03,"96 Walnut St, Seattle, WA 98101" -195439,LG Dryer,1,600.0,05/20/19 21:13,"176 12th St, Seattle, WA 98101" -195440,Macbook Pro Laptop,1,1700,05/05/19 22:49,"986 13th St, San Francisco, CA 94016" -195441,Lightning Charging Cable,1,14.95,05/05/19 22:32,"401 Cherry St, New York City, NY 10001" -195442,Lightning Charging Cable,2,14.95,05/30/19 04:34,"102 Meadow St, Los Angeles, CA 90001" -195443,Bose SoundSport Headphones,2,99.99,05/19/19 13:47,"587 Elm St, San Francisco, CA 94016" -195444,Lightning Charging Cable,1,14.95,05/26/19 21:50,"382 Jefferson St, San Francisco, CA 94016" -195445,Google Phone,1,600,05/30/19 19:35,"298 Lincoln St, New York City, NY 10001" -195446,USB-C Charging Cable,1,11.95,05/06/19 11:07,"488 Walnut St, Los Angeles, CA 90001" -195447,AA Batteries (4-pack),1,3.84,05/03/19 21:10,"831 14th St, San Francisco, CA 94016" -195448,Lightning Charging Cable,1,14.95,05/18/19 17:44,"529 Maple St, New York City, NY 10001" -195449,34in Ultrawide Monitor,1,379.99,05/21/19 06:08,"696 5th St, San Francisco, CA 94016" -195450,Bose SoundSport Headphones,1,99.99,05/18/19 09:01,"204 5th St, Dallas, TX 75001" -195451,LG Dryer,1,600.0,05/28/19 15:52,"498 Chestnut St, Los Angeles, CA 90001" -195452,iPhone,1,700,05/16/19 09:24,"760 Hickory St, Los Angeles, CA 90001" -195453,Bose SoundSport Headphones,1,99.99,05/02/19 20:04,"371 Center St, Los Angeles, CA 90001" -195454,Wired Headphones,1,11.99,05/16/19 00:52,"243 Park St, Dallas, TX 75001" -195455,iPhone,1,700,05/01/19 14:52,"804 Spruce St, San Francisco, CA 94016" -195456,USB-C Charging Cable,1,11.95,05/25/19 00:31,"114 Willow St, Seattle, WA 98101" -195457,Lightning Charging Cable,1,14.95,05/30/19 10:27,"938 Park St, San Francisco, CA 94016" -195458,Apple Airpods Headphones,1,150,05/02/19 11:26,"292 Willow St, Los Angeles, CA 90001" -195459,Wired Headphones,2,11.99,05/31/19 21:53,"531 Cedar St, Portland, OR 97035" -195460,34in Ultrawide Monitor,1,379.99,05/23/19 14:33,"125 Jackson St, San Francisco, CA 94016" -195461,iPhone,1,700,05/08/19 15:50,"972 Sunset St, Los Angeles, CA 90001" -195461,Wired Headphones,1,11.99,05/08/19 15:50,"972 Sunset St, Los Angeles, CA 90001" -195462,27in FHD Monitor,1,149.99,05/10/19 13:15,"222 11th St, New York City, NY 10001" -195463,AA Batteries (4-pack),1,3.84,05/21/19 19:25,"110 South St, Dallas, TX 75001" -195464,AA Batteries (4-pack),1,3.84,05/28/19 20:33,"606 2nd St, Dallas, TX 75001" -195465,AAA Batteries (4-pack),3,2.99,05/27/19 23:45,"366 River St, New York City, NY 10001" -195466,AAA Batteries (4-pack),1,2.99,05/19/19 20:06,"463 10th St, Seattle, WA 98101" -195467,USB-C Charging Cable,3,11.95,05/20/19 20:42,"656 Ridge St, Portland, OR 97035" -195468,AAA Batteries (4-pack),1,2.99,05/30/19 19:28,"941 West St, Seattle, WA 98101" -195468,27in FHD Monitor,1,149.99,05/30/19 19:28,"941 West St, Seattle, WA 98101" -195469,Lightning Charging Cable,1,14.95,05/14/19 22:18,"146 Highland St, New York City, NY 10001" -195470,Lightning Charging Cable,2,14.95,05/22/19 13:14,"388 River St, Los Angeles, CA 90001" -195471,AA Batteries (4-pack),1,3.84,05/01/19 19:45,"416 Hill St, Atlanta, GA 30301" -195472,27in 4K Gaming Monitor,1,389.99,05/31/19 17:00,"916 Madison St, Dallas, TX 75001" -195473,Bose SoundSport Headphones,1,99.99,05/05/19 12:36,"302 Washington St, Dallas, TX 75001" -195474,USB-C Charging Cable,1,11.95,05/15/19 12:16,"308 River St, New York City, NY 10001" -195475,iPhone,1,700,05/19/19 09:30,"566 2nd St, San Francisco, CA 94016" -195475,Lightning Charging Cable,1,14.95,05/19/19 09:30,"566 2nd St, San Francisco, CA 94016" -195475,Wired Headphones,2,11.99,05/19/19 09:30,"566 2nd St, San Francisco, CA 94016" -195476,USB-C Charging Cable,1,11.95,05/09/19 08:45,"804 13th St, San Francisco, CA 94016" -195477,LG Washing Machine,1,600.0,05/24/19 19:55,"474 13th St, Dallas, TX 75001" -195478,20in Monitor,1,109.99,05/29/19 09:56,"424 Elm St, Austin, TX 73301" -195479,Lightning Charging Cable,1,14.95,05/28/19 16:33,"672 River St, San Francisco, CA 94016" -195480,Macbook Pro Laptop,1,1700,05/15/19 20:44,"546 11th St, Austin, TX 73301" -195481,AA Batteries (4-pack),1,3.84,05/10/19 21:34,"527 Hill St, Seattle, WA 98101" -195482,Bose SoundSport Headphones,1,99.99,05/27/19 11:59,"231 9th St, San Francisco, CA 94016" -195483,Wired Headphones,1,11.99,05/27/19 12:40,"636 Wilson St, Atlanta, GA 30301" -195484,Lightning Charging Cable,1,14.95,05/29/19 07:02,"885 Madison St, New York City, NY 10001" -195485,AAA Batteries (4-pack),4,2.99,05/26/19 19:17,"119 Center St, San Francisco, CA 94016" -195486,Google Phone,1,600,05/08/19 16:23,"40 Washington St, Austin, TX 73301" -195486,USB-C Charging Cable,1,11.95,05/08/19 16:23,"40 Washington St, Austin, TX 73301" -195487,iPhone,1,700,05/24/19 05:50,"256 Highland St, San Francisco, CA 94016" -195487,Lightning Charging Cable,4,14.95,05/24/19 05:50,"256 Highland St, San Francisco, CA 94016" -195488,USB-C Charging Cable,1,11.95,05/25/19 22:15,"621 7th St, Portland, OR 97035" -195489,ThinkPad Laptop,1,999.99,05/26/19 19:06,"996 Pine St, Seattle, WA 98101" -195490,Bose SoundSport Headphones,1,99.99,05/14/19 12:19,"286 6th St, San Francisco, CA 94016" -195491,Wired Headphones,1,11.99,05/06/19 19:49,"779 Pine St, Boston, MA 02215" -195492,AA Batteries (4-pack),2,3.84,05/17/19 08:16,"757 West St, Dallas, TX 75001" -195493,27in 4K Gaming Monitor,1,389.99,05/26/19 18:53,"458 Church St, Boston, MA 02215" -195494,AA Batteries (4-pack),1,3.84,05/19/19 09:41,"116 Chestnut St, New York City, NY 10001" -195495,Bose SoundSport Headphones,1,99.99,05/04/19 14:28,"541 North St, Atlanta, GA 30301" -195496,27in FHD Monitor,1,149.99,05/12/19 21:02,"392 8th St, San Francisco, CA 94016" -195497,Lightning Charging Cable,1,14.95,05/18/19 13:25,"87 Lakeview St, Austin, TX 73301" -195498,20in Monitor,1,109.99,05/01/19 16:14,"51 11th St, New York City, NY 10001" -195499,AAA Batteries (4-pack),3,2.99,05/01/19 16:06,"190 Sunset St, San Francisco, CA 94016" -195500,AA Batteries (4-pack),1,3.84,05/05/19 10:49,"761 11th St, San Francisco, CA 94016" -195501,34in Ultrawide Monitor,1,379.99,05/06/19 13:08,"278 11th St, Dallas, TX 75001" -195502,Apple Airpods Headphones,1,150,05/09/19 18:21,"200 Johnson St, Portland, OR 97035" -195503,Wired Headphones,1,11.99,05/09/19 13:31,"930 Church St, San Francisco, CA 94016" -195504,Bose SoundSport Headphones,1,99.99,05/23/19 11:22,"462 Lake St, Portland, OR 97035" -195505,AAA Batteries (4-pack),4,2.99,05/25/19 14:27,"388 5th St, Austin, TX 73301" -195506,Lightning Charging Cable,1,14.95,05/16/19 15:24,"626 Chestnut St, San Francisco, CA 94016" -195507,Bose SoundSport Headphones,1,99.99,05/17/19 23:12,"576 Adams St, New York City, NY 10001" -195508,AA Batteries (4-pack),1,3.84,05/13/19 16:55,"633 7th St, Portland, OR 97035" -195509,Lightning Charging Cable,1,14.95,05/06/19 23:09,"461 Lincoln St, Dallas, TX 75001" -195510,27in FHD Monitor,1,149.99,05/15/19 01:51,"991 Maple St, Dallas, TX 75001" -195511,Vareebadd Phone,1,400,05/04/19 14:58,"769 Church St, Los Angeles, CA 90001" -195512,Google Phone,1,600,05/20/19 19:46,"336 13th St, San Francisco, CA 94016" -195513,34in Ultrawide Monitor,1,379.99,05/04/19 22:03,"619 Dogwood St, Los Angeles, CA 90001" -195514,ThinkPad Laptop,1,999.99,05/19/19 16:40,"796 Church St, Boston, MA 02215" -195515,AA Batteries (4-pack),2,3.84,05/17/19 10:38,"607 13th St, Austin, TX 73301" -195516,AAA Batteries (4-pack),1,2.99,05/05/19 18:42,"296 5th St, Los Angeles, CA 90001" -195517,AA Batteries (4-pack),1,3.84,05/24/19 19:50,"224 Adams St, San Francisco, CA 94016" -195518,Flatscreen TV,1,300,05/25/19 22:49,"507 River St, Los Angeles, CA 90001" -195519,Lightning Charging Cable,1,14.95,05/06/19 09:31,"519 Cherry St, Los Angeles, CA 90001" -195520,Bose SoundSport Headphones,1,99.99,05/04/19 13:59,"377 13th St, San Francisco, CA 94016" -195521,Macbook Pro Laptop,1,1700,05/14/19 10:18,"729 5th St, Austin, TX 73301" -195522,Bose SoundSport Headphones,1,99.99,05/27/19 12:16,"483 Chestnut St, Los Angeles, CA 90001" -195523,AA Batteries (4-pack),2,3.84,05/19/19 19:31,"105 2nd St, New York City, NY 10001" -195524,Wired Headphones,2,11.99,05/20/19 19:01,"853 West St, Boston, MA 02215" -195525,AAA Batteries (4-pack),1,2.99,05/26/19 02:57,"647 1st St, San Francisco, CA 94016" -195526,AA Batteries (4-pack),2,3.84,05/29/19 10:57,"760 Ridge St, Seattle, WA 98101" -195527,Apple Airpods Headphones,1,150,05/11/19 15:39,"347 Meadow St, San Francisco, CA 94016" -195528,Wired Headphones,1,11.99,05/03/19 18:09,"245 Park St, Boston, MA 02215" -195529,Lightning Charging Cable,1,14.95,05/01/19 16:52,"984 Dogwood St, Boston, MA 02215" -195530,AA Batteries (4-pack),1,3.84,05/01/19 16:44,"641 Willow St, Dallas, TX 75001" -195531,AAA Batteries (4-pack),1,2.99,05/02/19 12:03,"163 4th St, New York City, NY 10001" -195532,AA Batteries (4-pack),1,3.84,05/04/19 17:24,"765 Pine St, Los Angeles, CA 90001" -195533,Lightning Charging Cable,2,14.95,05/09/19 22:11,"68 Hill St, Boston, MA 02215" -195534,Bose SoundSport Headphones,1,99.99,05/17/19 13:05,"541 6th St, San Francisco, CA 94016" -195535,Lightning Charging Cable,1,14.95,05/02/19 12:34,"991 Wilson St, San Francisco, CA 94016" -195536,34in Ultrawide Monitor,1,379.99,05/27/19 08:49,"263 Lake St, San Francisco, CA 94016" -195537,Wired Headphones,1,11.99,05/01/19 12:59,"95 Center St, Los Angeles, CA 90001" -195538,LG Dryer,1,600.0,05/24/19 06:28,"220 Adams St, Atlanta, GA 30301" -195539,AAA Batteries (4-pack),2,2.99,05/13/19 11:40,"450 Willow St, New York City, NY 10001" -195540,USB-C Charging Cable,2,11.95,05/19/19 10:43,"293 12th St, San Francisco, CA 94016" -195541,34in Ultrawide Monitor,1,379.99,05/06/19 14:56,"683 Pine St, Seattle, WA 98101" -195542,Lightning Charging Cable,1,14.95,05/14/19 16:38,"216 Adams St, Boston, MA 02215" -195543,Wired Headphones,1,11.99,05/27/19 22:19,"929 14th St, Dallas, TX 75001" -195544,AAA Batteries (4-pack),1,2.99,05/28/19 11:00,"957 Wilson St, Portland, OR 97035" -195545,USB-C Charging Cable,1,11.95,05/26/19 20:41,"265 Walnut St, Los Angeles, CA 90001" -195546,34in Ultrawide Monitor,1,379.99,05/24/19 22:03,"837 8th St, Seattle, WA 98101" -195547,27in 4K Gaming Monitor,1,389.99,05/19/19 10:04,"951 Washington St, Los Angeles, CA 90001" -195548,AA Batteries (4-pack),1,3.84,05/03/19 20:42,"127 Sunset St, San Francisco, CA 94016" -195549,AA Batteries (4-pack),1,3.84,05/28/19 15:41,"590 Willow St, Atlanta, GA 30301" -195550,27in 4K Gaming Monitor,1,389.99,05/21/19 23:02,"345 Pine St, Seattle, WA 98101" -195551,20in Monitor,1,109.99,05/24/19 15:03,"693 Meadow St, Los Angeles, CA 90001" -195552,AAA Batteries (4-pack),1,2.99,05/19/19 22:17,"856 Wilson St, Seattle, WA 98101" -195553,34in Ultrawide Monitor,1,379.99,05/01/19 07:00,"908 Lake St, Dallas, TX 75001" -195554,Apple Airpods Headphones,1,150,05/22/19 19:44,"222 River St, Atlanta, GA 30301" -195555,AA Batteries (4-pack),1,3.84,05/27/19 09:53,"177 1st St, Seattle, WA 98101" -195556,34in Ultrawide Monitor,1,379.99,05/23/19 13:50,"237 Hickory St, New York City, NY 10001" -195557,iPhone,1,700,05/20/19 12:04,"566 Forest St, Portland, OR 97035" -195557,Lightning Charging Cable,1,14.95,05/20/19 12:04,"566 Forest St, Portland, OR 97035" -195557,Wired Headphones,1,11.99,05/20/19 12:04,"566 Forest St, Portland, OR 97035" -195558,34in Ultrawide Monitor,1,379.99,05/22/19 12:39,"732 12th St, Portland, OR 97035" -195559,Wired Headphones,1,11.99,05/13/19 11:04,"780 Highland St, San Francisco, CA 94016" -195560,Lightning Charging Cable,1,14.95,05/19/19 13:40,"134 Cherry St, Los Angeles, CA 90001" -195561,34in Ultrawide Monitor,1,379.99,05/24/19 17:28,"111 Hill St, New York City, NY 10001" -195562,USB-C Charging Cable,1,11.95,05/14/19 17:40,"160 9th St, San Francisco, CA 94016" -195563,Bose SoundSport Headphones,1,99.99,05/03/19 19:23,"439 Hill St, San Francisco, CA 94016" -195564,Wired Headphones,2,11.99,05/28/19 01:13,"34 Willow St, San Francisco, CA 94016" -195565,AA Batteries (4-pack),1,3.84,05/06/19 14:19,"460 Jefferson St, Austin, TX 73301" -195566,Apple Airpods Headphones,1,150,05/04/19 17:24,"20 7th St, Dallas, TX 75001" -195567,Wired Headphones,1,11.99,05/17/19 10:07,"863 Elm St, Los Angeles, CA 90001" -195568,AAA Batteries (4-pack),1,2.99,05/19/19 07:52,"622 North St, San Francisco, CA 94016" -195569,Wired Headphones,1,11.99,05/31/19 12:36,"70 Maple St, Portland, OR 97035" -195570,Wired Headphones,1,11.99,05/25/19 13:45,"511 Jefferson St, Los Angeles, CA 90001" -195571,Lightning Charging Cable,2,14.95,05/29/19 09:18,"625 11th St, Dallas, TX 75001" -195572,Bose SoundSport Headphones,1,99.99,05/03/19 12:11,"578 North St, San Francisco, CA 94016" -195573,Lightning Charging Cable,1,14.95,05/27/19 23:10,"247 6th St, Austin, TX 73301" -195574,Wired Headphones,1,11.99,05/23/19 19:51,"270 Forest St, Austin, TX 73301" -195575,USB-C Charging Cable,1,11.95,05/08/19 14:32,"868 Jackson St, New York City, NY 10001" -195576,AA Batteries (4-pack),1,3.84,05/07/19 20:11,"454 Main St, Los Angeles, CA 90001" -195577,Lightning Charging Cable,1,14.95,05/19/19 09:20,"293 Highland St, New York City, NY 10001" -195578,Wired Headphones,1,11.99,05/30/19 20:48,"585 Madison St, Austin, TX 73301" -195579,Bose SoundSport Headphones,1,99.99,05/19/19 16:46,"913 14th St, Los Angeles, CA 90001" -195580,iPhone,1,700,05/05/19 15:08,"478 10th St, Seattle, WA 98101" -195581,Lightning Charging Cable,1,14.95,05/27/19 16:59,"804 South St, Dallas, TX 75001" -195582,Lightning Charging Cable,1,14.95,05/03/19 19:08,"555 Forest St, Dallas, TX 75001" -195583,USB-C Charging Cable,1,11.95,05/19/19 10:08,"422 Walnut St, Los Angeles, CA 90001" -195584,Lightning Charging Cable,1,14.95,05/19/19 18:33,"772 Maple St, Dallas, TX 75001" -195585,Apple Airpods Headphones,1,150,05/24/19 00:58,"735 Spruce St, Seattle, WA 98101" -195586,Bose SoundSport Headphones,1,99.99,05/19/19 11:59,"785 North St, Boston, MA 02215" -195587,AA Batteries (4-pack),1,3.84,05/06/19 18:19,"660 Lincoln St, Seattle, WA 98101" -195588,AAA Batteries (4-pack),1,2.99,05/07/19 10:42,"261 Maple St, San Francisco, CA 94016" -195589,AAA Batteries (4-pack),1,2.99,05/27/19 08:32,"927 Lincoln St, New York City, NY 10001" -195590,AAA Batteries (4-pack),1,2.99,05/20/19 17:55,"795 1st St, Portland, OR 97035" -195591,USB-C Charging Cable,1,11.95,05/23/19 12:15,"180 8th St, Boston, MA 02215" -195592,Google Phone,1,600,05/07/19 17:55,"567 14th St, New York City, NY 10001" -195593,AAA Batteries (4-pack),1,2.99,05/28/19 19:06,"213 River St, New York City, NY 10001" -195594,AAA Batteries (4-pack),1,2.99,05/29/19 19:26,"529 Jackson St, Los Angeles, CA 90001" -,,,,, -195595,Wired Headphones,1,11.99,05/01/19 15:45,"975 Jackson St, Austin, TX 73301" -195596,AA Batteries (4-pack),1,3.84,05/22/19 21:54,"717 Willow St, Atlanta, GA 30301" -195597,34in Ultrawide Monitor,1,379.99,05/22/19 17:38,"812 Main St, Dallas, TX 75001" -195598,AAA Batteries (4-pack),1,2.99,05/22/19 19:44,"326 Cherry St, San Francisco, CA 94016" -195599,27in 4K Gaming Monitor,1,389.99,05/09/19 14:45,"991 Jackson St, Dallas, TX 75001" -195600,USB-C Charging Cable,1,11.95,05/28/19 19:18,"26 Sunset St, Boston, MA 02215" -195601,Wired Headphones,2,11.99,05/16/19 09:37,"429 Willow St, New York City, NY 10001" -195602,iPhone,1,700,05/22/19 12:11,"37 1st St, San Francisco, CA 94016" -195603,Lightning Charging Cable,1,14.95,05/01/19 22:42,"569 Dogwood St, Austin, TX 73301" -195604,AAA Batteries (4-pack),1,2.99,05/24/19 14:30,"54 5th St, Dallas, TX 75001" -195605,20in Monitor,1,109.99,05/01/19 11:11,"737 Maple St, Los Angeles, CA 90001" -195606,USB-C Charging Cable,1,11.95,05/09/19 22:04,"374 5th St, Boston, MA 02215" -195607,AAA Batteries (4-pack),1,2.99,05/03/19 20:53,"654 Maple St, New York City, NY 10001" -195608,AAA Batteries (4-pack),2,2.99,05/02/19 19:16,"845 Wilson St, Dallas, TX 75001" -195609,AAA Batteries (4-pack),1,2.99,05/26/19 13:01,"140 Maple St, New York City, NY 10001" -195610,Macbook Pro Laptop,1,1700,05/20/19 11:51,"176 10th St, Boston, MA 02215" -195611,Wired Headphones,2,11.99,05/09/19 19:04,"907 Jackson St, Atlanta, GA 30301" -195612,27in FHD Monitor,1,149.99,05/22/19 17:48,"918 Center St, Los Angeles, CA 90001" -195613,Flatscreen TV,1,300,05/24/19 19:36,"248 Lake St, Austin, TX 73301" -195614,Macbook Pro Laptop,1,1700,05/31/19 17:07,"590 Pine St, Portland, OR 97035" -195615,Lightning Charging Cable,1,14.95,05/13/19 22:17,"574 River St, Boston, MA 02215" -195616,34in Ultrawide Monitor,1,379.99,05/07/19 11:59,"212 Washington St, Dallas, TX 75001" -195617,Apple Airpods Headphones,1,150,05/13/19 23:00,"909 Elm St, New York City, NY 10001" -195618,AAA Batteries (4-pack),2,2.99,05/31/19 00:46,"290 9th St, Los Angeles, CA 90001" -195619,AAA Batteries (4-pack),3,2.99,05/18/19 09:25,"58 Hill St, Dallas, TX 75001" -195619,Apple Airpods Headphones,1,150,05/18/19 09:25,"58 Hill St, Dallas, TX 75001" -195620,AA Batteries (4-pack),1,3.84,05/13/19 09:52,"744 Madison St, San Francisco, CA 94016" -195621,Wired Headphones,1,11.99,05/13/19 20:26,"296 9th St, San Francisco, CA 94016" -195622,Wired Headphones,1,11.99,05/09/19 08:56,"814 4th St, New York City, NY 10001" -195623,34in Ultrawide Monitor,1,379.99,05/25/19 09:55,"83 10th St, New York City, NY 10001" -195624,AA Batteries (4-pack),3,3.84,05/14/19 11:19,"443 Forest St, San Francisco, CA 94016" -195625,Apple Airpods Headphones,1,150,05/23/19 17:52,"84 Jefferson St, San Francisco, CA 94016" -195626,AA Batteries (4-pack),1,3.84,05/12/19 22:34,"836 Spruce St, Atlanta, GA 30301" -195627,AA Batteries (4-pack),2,3.84,05/11/19 11:09,"948 Elm St, Dallas, TX 75001" -195628,27in 4K Gaming Monitor,1,389.99,05/14/19 08:59,"634 Lake St, Los Angeles, CA 90001" -195629,34in Ultrawide Monitor,1,379.99,05/17/19 15:44,"215 5th St, Los Angeles, CA 90001" -195630,Lightning Charging Cable,1,14.95,05/24/19 20:36,"346 North St, Dallas, TX 75001" -195631,27in FHD Monitor,1,149.99,05/21/19 00:22,"348 Hickory St, Boston, MA 02215" -195632,Wired Headphones,1,11.99,05/02/19 09:40,"550 Elm St, San Francisco, CA 94016" -195633,34in Ultrawide Monitor,1,379.99,05/13/19 20:29,"501 Jackson St, Seattle, WA 98101" -195634,20in Monitor,1,109.99,05/06/19 12:31,"126 Church St, San Francisco, CA 94016" -195635,USB-C Charging Cable,1,11.95,05/23/19 14:11,"6 4th St, Austin, TX 73301" -195636,ThinkPad Laptop,1,999.99,05/27/19 21:58,"502 Dogwood St, Portland, ME 04101" -195637,Apple Airpods Headphones,1,150,05/07/19 17:26,"148 Lakeview St, Portland, OR 97035" -195638,AA Batteries (4-pack),2,3.84,05/04/19 19:19,"820 1st St, Boston, MA 02215" -195639,Lightning Charging Cable,1,14.95,05/14/19 15:04,"29 River St, New York City, NY 10001" -195640,Macbook Pro Laptop,1,1700,05/11/19 19:16,"715 Park St, Dallas, TX 75001" -195641,iPhone,1,700,05/17/19 15:03,"697 Willow St, Dallas, TX 75001" -195642,27in FHD Monitor,1,149.99,05/08/19 22:42,"420 Lakeview St, San Francisco, CA 94016" -195643,Apple Airpods Headphones,1,150,05/04/19 19:08,"583 Cherry St, Seattle, WA 98101" -195644,Lightning Charging Cable,1,14.95,05/24/19 17:41,"411 Sunset St, Seattle, WA 98101" -195645,AAA Batteries (4-pack),1,2.99,05/17/19 13:54,"770 Wilson St, Los Angeles, CA 90001" -195646,Lightning Charging Cable,1,14.95,05/22/19 10:09,"174 10th St, Portland, OR 97035" -195646,Bose SoundSport Headphones,1,99.99,05/22/19 10:09,"174 10th St, Portland, OR 97035" -195647,iPhone,1,700,05/12/19 16:25,"131 6th St, San Francisco, CA 94016" -195648,27in FHD Monitor,1,149.99,05/03/19 21:33,"938 10th St, Los Angeles, CA 90001" -195649,USB-C Charging Cable,1,11.95,05/14/19 15:37,"183 Hill St, Atlanta, GA 30301" -195650,Bose SoundSport Headphones,1,99.99,05/28/19 18:27,"529 7th St, San Francisco, CA 94016" -195651,Lightning Charging Cable,1,14.95,05/25/19 03:05,"604 Elm St, Seattle, WA 98101" -195652,27in FHD Monitor,1,149.99,05/25/19 15:56,"867 Dogwood St, New York City, NY 10001" -195653,27in FHD Monitor,1,149.99,05/18/19 15:29,"207 14th St, New York City, NY 10001" -195654,27in 4K Gaming Monitor,1,389.99,05/13/19 09:53,"111 Ridge St, Atlanta, GA 30301" -195655,Lightning Charging Cable,1,14.95,05/18/19 10:50,"751 12th St, Los Angeles, CA 90001" -195656,USB-C Charging Cable,3,11.95,05/02/19 10:38,"632 Lake St, Los Angeles, CA 90001" -195657,Bose SoundSport Headphones,1,99.99,05/17/19 08:50,"69 1st St, Portland, OR 97035" -195658,USB-C Charging Cable,1,11.95,05/15/19 20:15,"352 Chestnut St, Dallas, TX 75001" -195659,USB-C Charging Cable,1,11.95,05/15/19 17:24,"32 9th St, Austin, TX 73301" -195660,iPhone,1,700,05/20/19 09:17,"67 10th St, New York City, NY 10001" -195661,AA Batteries (4-pack),1,3.84,05/28/19 09:50,"354 Jefferson St, Portland, OR 97035" -195662,USB-C Charging Cable,1,11.95,05/31/19 20:59,"840 North St, New York City, NY 10001" -195663,34in Ultrawide Monitor,1,379.99,05/17/19 20:36,"485 Washington St, New York City, NY 10001" -195664,Lightning Charging Cable,1,14.95,05/07/19 12:20,"256 Maple St, Seattle, WA 98101" -195665,Lightning Charging Cable,1,14.95,05/30/19 13:48,"840 Cedar St, Dallas, TX 75001" -195666,Lightning Charging Cable,1,14.95,05/24/19 09:11,"820 Chestnut St, Dallas, TX 75001" -195667,20in Monitor,1,109.99,05/20/19 18:27,"169 Lake St, Seattle, WA 98101" -195668,iPhone,1,700,05/16/19 01:52,"735 6th St, Austin, TX 73301" -195669,USB-C Charging Cable,1,11.95,05/04/19 09:03,"350 8th St, San Francisco, CA 94016" -195670,LG Dryer,1,600.0,05/04/19 13:25,"364 Adams St, Los Angeles, CA 90001" -195671,Wired Headphones,1,11.99,05/15/19 23:29,"309 Johnson St, Los Angeles, CA 90001" -195672,Flatscreen TV,1,300,05/25/19 12:30,"498 Adams St, Los Angeles, CA 90001" -195673,Google Phone,1,600,05/10/19 12:23,"684 6th St, Portland, OR 97035" -195674,AA Batteries (4-pack),1,3.84,05/29/19 19:29,"980 5th St, Los Angeles, CA 90001" -195675,Wired Headphones,1,11.99,05/06/19 15:45,"396 Willow St, Seattle, WA 98101" -195676,Apple Airpods Headphones,1,150,05/29/19 22:12,"809 9th St, Seattle, WA 98101" -195677,Wired Headphones,1,11.99,05/13/19 13:00,"348 Elm St, Los Angeles, CA 90001" -195678,USB-C Charging Cable,1,11.95,05/28/19 21:38,"321 Washington St, Portland, OR 97035" -195679,Bose SoundSport Headphones,1,99.99,05/26/19 13:21,"92 Wilson St, Boston, MA 02215" -195680,Apple Airpods Headphones,1,150,05/30/19 22:40,"688 Willow St, New York City, NY 10001" -195681,AAA Batteries (4-pack),2,2.99,05/29/19 22:50,"520 8th St, Dallas, TX 75001" -195682,Lightning Charging Cable,1,14.95,05/16/19 11:08,"998 Maple St, New York City, NY 10001" -195683,20in Monitor,1,109.99,05/02/19 20:31,"999 River St, New York City, NY 10001" -195684,AAA Batteries (4-pack),1,2.99,05/21/19 14:21,"962 Center St, Los Angeles, CA 90001" -195685,Google Phone,1,600,05/30/19 18:06,"728 Maple St, Los Angeles, CA 90001" -195686,Wired Headphones,1,11.99,05/13/19 10:23,"388 4th St, New York City, NY 10001" -195686,Apple Airpods Headphones,1,150,05/13/19 10:23,"388 4th St, New York City, NY 10001" -195687,USB-C Charging Cable,1,11.95,05/29/19 14:09,"749 Madison St, San Francisco, CA 94016" -195688,Macbook Pro Laptop,1,1700,05/21/19 04:10,"345 Park St, Los Angeles, CA 90001" -195689,AAA Batteries (4-pack),2,2.99,05/10/19 16:54,"168 10th St, Dallas, TX 75001" -195690,AA Batteries (4-pack),1,3.84,05/17/19 20:13,"519 West St, San Francisco, CA 94016" -195691,Macbook Pro Laptop,1,1700,05/10/19 10:44,"330 Main St, New York City, NY 10001" -195692,AA Batteries (4-pack),1,3.84,05/13/19 16:23,"415 Forest St, Los Angeles, CA 90001" -195693,Bose SoundSport Headphones,1,99.99,05/21/19 20:42,"790 Main St, New York City, NY 10001" -195694,USB-C Charging Cable,1,11.95,05/30/19 19:58,"880 Walnut St, Los Angeles, CA 90001" -195695,AA Batteries (4-pack),1,3.84,05/11/19 23:25,"693 Spruce St, San Francisco, CA 94016" -195696,USB-C Charging Cable,1,11.95,05/04/19 18:52,"627 Hickory St, San Francisco, CA 94016" -195697,Apple Airpods Headphones,1,150,05/18/19 11:03,"758 6th St, New York City, NY 10001" -195698,AAA Batteries (4-pack),2,2.99,05/17/19 14:52,"420 2nd St, Los Angeles, CA 90001" -195699,Lightning Charging Cable,1,14.95,05/08/19 15:06,"18 Center St, San Francisco, CA 94016" -195700,Google Phone,1,600,05/22/19 00:05,"378 Hickory St, San Francisco, CA 94016" -195700,USB-C Charging Cable,2,11.95,05/22/19 00:05,"378 Hickory St, San Francisco, CA 94016" -195701,Google Phone,1,600,05/30/19 19:42,"997 Walnut St, Los Angeles, CA 90001" -195702,Wired Headphones,1,11.99,05/27/19 10:51,"150 Maple St, Dallas, TX 75001" -195703,Bose SoundSport Headphones,1,99.99,05/30/19 13:25,"382 13th St, New York City, NY 10001" -195704,Flatscreen TV,1,300,05/19/19 19:37,"428 Hill St, Los Angeles, CA 90001" -195705,ThinkPad Laptop,1,999.99,05/28/19 08:39,"653 4th St, Austin, TX 73301" -195706,AA Batteries (4-pack),1,3.84,05/25/19 12:20,"111 Pine St, Seattle, WA 98101" -195707,AA Batteries (4-pack),1,3.84,05/15/19 00:11,"551 6th St, San Francisco, CA 94016" -195708,Wired Headphones,1,11.99,05/09/19 10:13,"860 Madison St, San Francisco, CA 94016" -195709,Lightning Charging Cable,1,14.95,05/25/19 16:17,"400 Walnut St, San Francisco, CA 94016" -195710,27in FHD Monitor,1,149.99,05/20/19 13:28,"643 Willow St, Boston, MA 02215" -195711,27in FHD Monitor,1,149.99,05/14/19 09:51,"105 Ridge St, New York City, NY 10001" -195712,Lightning Charging Cable,1,14.95,05/12/19 00:15,"348 Dogwood St, Boston, MA 02215" -195713,Wired Headphones,1,11.99,05/28/19 16:28,"242 Sunset St, Dallas, TX 75001" -195714,27in FHD Monitor,1,149.99,05/05/19 22:36,"756 Ridge St, San Francisco, CA 94016" -195714,AAA Batteries (4-pack),1,2.99,05/05/19 22:36,"756 Ridge St, San Francisco, CA 94016" -195715,USB-C Charging Cable,1,11.95,05/13/19 10:22,"794 South St, Atlanta, GA 30301" -195716,34in Ultrawide Monitor,1,379.99,05/15/19 08:19,"624 9th St, Boston, MA 02215" -195717,USB-C Charging Cable,1,11.95,05/13/19 18:19,"800 Dogwood St, Austin, TX 73301" -195718,Lightning Charging Cable,1,14.95,05/16/19 13:04,"411 Center St, Boston, MA 02215" -195719,Lightning Charging Cable,1,14.95,05/11/19 07:53,"241 Park St, Boston, MA 02215" -195720,Bose SoundSport Headphones,1,99.99,05/15/19 10:17,"241 Hickory St, Los Angeles, CA 90001" -195721,Bose SoundSport Headphones,1,99.99,05/31/19 11:54,"134 South St, San Francisco, CA 94016" -195722,Bose SoundSport Headphones,1,99.99,05/24/19 18:24,"79 Wilson St, Los Angeles, CA 90001" -195723,USB-C Charging Cable,1,11.95,05/20/19 20:43,"987 Wilson St, San Francisco, CA 94016" -195724,AA Batteries (4-pack),1,3.84,05/18/19 12:36,"942 South St, New York City, NY 10001" -195725,Vareebadd Phone,1,400,05/21/19 09:47,"280 Dogwood St, San Francisco, CA 94016" -195726,Bose SoundSport Headphones,1,99.99,05/24/19 15:52,"550 Washington St, Portland, ME 04101" -195727,AAA Batteries (4-pack),1,2.99,05/13/19 22:25,"977 Forest St, Dallas, TX 75001" -195728,Lightning Charging Cable,1,14.95,05/25/19 02:18,"747 Highland St, Austin, TX 73301" -195729,AAA Batteries (4-pack),1,2.99,05/29/19 00:16,"9 13th St, Atlanta, GA 30301" -195730,Wired Headphones,1,11.99,05/30/19 15:35,"394 Wilson St, Boston, MA 02215" -195731,AAA Batteries (4-pack),2,2.99,05/18/19 20:24,"51 Center St, New York City, NY 10001" -195732,34in Ultrawide Monitor,1,379.99,05/25/19 11:49,"35 10th St, San Francisco, CA 94016" -195733,AA Batteries (4-pack),1,3.84,05/23/19 21:01,"930 Lakeview St, Seattle, WA 98101" -195734,27in FHD Monitor,1,149.99,05/21/19 08:37,"414 10th St, Los Angeles, CA 90001" -195735,AA Batteries (4-pack),1,3.84,05/06/19 18:07,"131 Cedar St, Los Angeles, CA 90001" -195736,Macbook Pro Laptop,1,1700,05/14/19 09:37,"333 14th St, Atlanta, GA 30301" -,,,,, -195737,Apple Airpods Headphones,1,150,05/10/19 07:55,"959 Hill St, Boston, MA 02215" -195738,20in Monitor,1,109.99,05/24/19 17:28,"736 10th St, Los Angeles, CA 90001" -195739,USB-C Charging Cable,1,11.95,05/19/19 15:12,"534 Dogwood St, Austin, TX 73301" -195740,Lightning Charging Cable,1,14.95,05/17/19 18:43,"557 7th St, Atlanta, GA 30301" -195741,AAA Batteries (4-pack),2,2.99,05/08/19 09:07,"245 Chestnut St, Austin, TX 73301" -195742,Macbook Pro Laptop,1,1700,05/17/19 16:36,"17 9th St, New York City, NY 10001" -195743,Apple Airpods Headphones,1,150,05/08/19 15:20,"984 Walnut St, Atlanta, GA 30301" -195744,iPhone,1,700,05/25/19 02:19,"480 Main St, San Francisco, CA 94016" -195745,27in FHD Monitor,1,149.99,05/23/19 07:35,"422 14th St, New York City, NY 10001" -195746,AAA Batteries (4-pack),1,2.99,05/22/19 23:02,"388 Lake St, Los Angeles, CA 90001" -195747,AAA Batteries (4-pack),1,2.99,05/11/19 09:27,"366 Spruce St, Dallas, TX 75001" -195748,27in FHD Monitor,1,149.99,06/01/19 03:26,"856 Elm St, San Francisco, CA 94016" -195749,AA Batteries (4-pack),2,3.84,05/01/19 07:30,"462 Washington St, Atlanta, GA 30301" -195750,AAA Batteries (4-pack),1,2.99,05/25/19 23:43,"181 Center St, San Francisco, CA 94016" -195751,AA Batteries (4-pack),1,3.84,05/24/19 18:12,"549 14th St, Dallas, TX 75001" -195752,AAA Batteries (4-pack),1,2.99,05/01/19 20:38,"44 Cedar St, San Francisco, CA 94016" -195753,Google Phone,1,600,05/12/19 08:25,"647 North St, Seattle, WA 98101" -195753,USB-C Charging Cable,1,11.95,05/12/19 08:25,"647 North St, Seattle, WA 98101" -195753,Wired Headphones,1,11.99,05/12/19 08:25,"647 North St, Seattle, WA 98101" -195754,27in FHD Monitor,1,149.99,05/06/19 11:49,"11 West St, San Francisco, CA 94016" -195755,Apple Airpods Headphones,1,150,05/14/19 12:23,"351 Walnut St, Dallas, TX 75001" -195756,Wired Headphones,1,11.99,05/13/19 14:23,"460 12th St, Boston, MA 02215" -195756,Bose SoundSport Headphones,1,99.99,05/13/19 14:23,"460 12th St, Boston, MA 02215" -195757,Apple Airpods Headphones,1,150,05/15/19 08:25,"97 Wilson St, Austin, TX 73301" -195758,Vareebadd Phone,1,400,05/10/19 23:35,"112 6th St, Portland, OR 97035" -195758,Wired Headphones,1,11.99,05/10/19 23:35,"112 6th St, Portland, OR 97035" -195759,Google Phone,1,600,05/11/19 18:37,"3 Wilson St, New York City, NY 10001" -195759,USB-C Charging Cable,1,11.95,05/11/19 18:37,"3 Wilson St, New York City, NY 10001" -195760,Apple Airpods Headphones,1,150,05/19/19 11:09,"314 Meadow St, San Francisco, CA 94016" -195761,Apple Airpods Headphones,1,150,05/16/19 12:39,"87 Ridge St, Los Angeles, CA 90001" -195762,Macbook Pro Laptop,1,1700,05/06/19 07:11,"213 Willow St, San Francisco, CA 94016" -195763,Apple Airpods Headphones,1,150,05/28/19 17:48,"96 Maple St, Atlanta, GA 30301" -195764,34in Ultrawide Monitor,1,379.99,05/01/19 11:27,"680 1st St, Seattle, WA 98101" -195765,AA Batteries (4-pack),2,3.84,05/14/19 10:52,"173 River St, New York City, NY 10001" -195766,iPhone,1,700,05/31/19 20:30,"699 11th St, Portland, ME 04101" -195767,Bose SoundSport Headphones,1,99.99,05/17/19 15:18,"176 Madison St, New York City, NY 10001" -195768,USB-C Charging Cable,1,11.95,05/27/19 22:24,"641 13th St, Boston, MA 02215" -195769,iPhone,1,700,05/25/19 10:36,"839 Cherry St, San Francisco, CA 94016" -195770,27in FHD Monitor,1,149.99,05/16/19 14:26,"708 7th St, New York City, NY 10001" -195771,iPhone,1,700,05/30/19 12:20,"816 Lake St, New York City, NY 10001" -195771,Wired Headphones,1,11.99,05/30/19 12:20,"816 Lake St, New York City, NY 10001" -195772,Wired Headphones,1,11.99,05/16/19 12:14,"835 Johnson St, San Francisco, CA 94016" -195773,AA Batteries (4-pack),1,3.84,05/14/19 14:59,"646 Dogwood St, Dallas, TX 75001" -195774,27in 4K Gaming Monitor,1,389.99,05/11/19 09:50,"374 River St, Boston, MA 02215" -195775,AAA Batteries (4-pack),1,2.99,05/13/19 22:24,"160 Walnut St, New York City, NY 10001" -195776,iPhone,1,700,05/21/19 18:32,"544 Forest St, Seattle, WA 98101" -195777,Google Phone,1,600,05/09/19 01:47,"332 Johnson St, Austin, TX 73301" -195778,Bose SoundSport Headphones,1,99.99,05/24/19 06:51,"495 Park St, Dallas, TX 75001" -195779,34in Ultrawide Monitor,1,379.99,05/02/19 17:18,"378 Walnut St, Portland, ME 04101" -195780,AA Batteries (4-pack),2,3.84,05/07/19 18:23,"5 Forest St, Boston, MA 02215" -195781,AAA Batteries (4-pack),1,2.99,05/08/19 21:55,"399 Maple St, San Francisco, CA 94016" -195782,34in Ultrawide Monitor,1,379.99,05/10/19 20:42,"951 Park St, New York City, NY 10001" -195783,USB-C Charging Cable,1,11.95,05/07/19 12:36,"37 Hill St, San Francisco, CA 94016" -195784,AA Batteries (4-pack),3,3.84,05/31/19 19:06,"488 Hickory St, Portland, OR 97035" -195785,USB-C Charging Cable,1,11.95,05/15/19 13:36,"752 Lake St, New York City, NY 10001" -195785,Lightning Charging Cable,1,14.95,05/15/19 13:36,"752 Lake St, New York City, NY 10001" -195786,AA Batteries (4-pack),1,3.84,05/21/19 15:03,"921 Lake St, Seattle, WA 98101" -195787,27in 4K Gaming Monitor,1,389.99,05/04/19 11:36,"230 Ridge St, New York City, NY 10001" -195787,Lightning Charging Cable,1,14.95,05/04/19 11:36,"230 Ridge St, New York City, NY 10001" -195788,Flatscreen TV,1,300,05/13/19 11:48,"834 Madison St, Atlanta, GA 30301" -195789,Wired Headphones,1,11.99,05/28/19 11:49,"931 Johnson St, Portland, OR 97035" -195790,Macbook Pro Laptop,1,1700,05/22/19 21:35,"427 South St, San Francisco, CA 94016" -195791,Lightning Charging Cable,1,14.95,05/02/19 12:03,"877 Sunset St, Dallas, TX 75001" -195792,Apple Airpods Headphones,1,150,05/25/19 12:04,"352 Jackson St, Atlanta, GA 30301" -195793,ThinkPad Laptop,1,999.99,05/18/19 17:29,"911 4th St, Seattle, WA 98101" -195794,AA Batteries (4-pack),1,3.84,05/26/19 00:10,"145 Cedar St, Atlanta, GA 30301" -195795,20in Monitor,1,109.99,05/11/19 10:05,"583 Meadow St, Dallas, TX 75001" -195796,USB-C Charging Cable,2,11.95,05/26/19 23:30,"890 2nd St, San Francisco, CA 94016" -195797,Wired Headphones,1,11.99,05/17/19 13:51,"907 Pine St, Boston, MA 02215" -195798,AAA Batteries (4-pack),1,2.99,05/09/19 11:37,"701 Highland St, Boston, MA 02215" -195799,Apple Airpods Headphones,1,150,05/21/19 22:47,"484 Main St, Dallas, TX 75001" -195800,AA Batteries (4-pack),1,3.84,05/24/19 11:32,"379 Jackson St, New York City, NY 10001" -195801,iPhone,1,700,05/24/19 12:06,"458 8th St, Los Angeles, CA 90001" -195802,Apple Airpods Headphones,1,150,05/23/19 22:23,"159 Washington St, Los Angeles, CA 90001" -195803,USB-C Charging Cable,2,11.95,05/16/19 21:57,"918 13th St, New York City, NY 10001" -195804,Apple Airpods Headphones,1,150,05/14/19 19:01,"388 Willow St, Boston, MA 02215" -195805,34in Ultrawide Monitor,1,379.99,05/20/19 12:38,"805 Willow St, Austin, TX 73301" -195806,AAA Batteries (4-pack),1,2.99,05/04/19 23:22,"729 Hickory St, Portland, ME 04101" -195807,Macbook Pro Laptop,1,1700,05/28/19 20:41,"639 4th St, Portland, ME 04101" -195808,Lightning Charging Cable,1,14.95,05/17/19 13:54,"244 River St, Atlanta, GA 30301" -195809,Flatscreen TV,1,300,05/17/19 08:23,"375 Maple St, Atlanta, GA 30301" -195810,AA Batteries (4-pack),2,3.84,05/24/19 19:37,"498 Madison St, San Francisco, CA 94016" -195811,USB-C Charging Cable,1,11.95,05/21/19 10:49,"953 Johnson St, New York City, NY 10001" -195812,USB-C Charging Cable,1,11.95,05/01/19 22:03,"724 11th St, New York City, NY 10001" -195813,Wired Headphones,1,11.99,05/11/19 09:24,"644 9th St, Boston, MA 02215" -195814,AAA Batteries (4-pack),1,2.99,05/10/19 00:27,"466 Jefferson St, San Francisco, CA 94016" -195815,AAA Batteries (4-pack),6,2.99,05/24/19 14:02,"483 Wilson St, Atlanta, GA 30301" -195816,Wired Headphones,1,11.99,05/09/19 15:36,"302 9th St, Los Angeles, CA 90001" -195817,27in FHD Monitor,1,149.99,05/07/19 14:32,"334 Adams St, San Francisco, CA 94016" -195818,Apple Airpods Headphones,1,150,05/15/19 15:19,"588 Church St, Dallas, TX 75001" -195819,AA Batteries (4-pack),1,3.84,05/15/19 12:37,"333 10th St, Dallas, TX 75001" -195820,Flatscreen TV,1,300,05/24/19 02:24,"442 West St, Los Angeles, CA 90001" -195821,AAA Batteries (4-pack),2,2.99,05/23/19 10:07,"112 8th St, Los Angeles, CA 90001" -195822,Apple Airpods Headphones,1,150,05/26/19 10:23,"705 2nd St, San Francisco, CA 94016" -195823,Apple Airpods Headphones,1,150,05/21/19 06:49,"431 Cherry St, Austin, TX 73301" -195824,AAA Batteries (4-pack),3,2.99,05/15/19 19:18,"82 8th St, Dallas, TX 75001" -195825,27in FHD Monitor,1,149.99,05/20/19 22:02,"198 11th St, Boston, MA 02215" -195826,27in FHD Monitor,1,149.99,05/23/19 01:33,"104 Cherry St, Los Angeles, CA 90001" -195827,Wired Headphones,1,11.99,05/18/19 12:50,"673 West St, Portland, OR 97035" -195828,iPhone,1,700,05/23/19 23:12,"3 Main St, Los Angeles, CA 90001" -195829,Bose SoundSport Headphones,1,99.99,05/06/19 20:53,"551 Jackson St, Boston, MA 02215" -195830,Wired Headphones,1,11.99,05/03/19 11:34,"566 Pine St, San Francisco, CA 94016" -195831,AA Batteries (4-pack),1,3.84,05/06/19 19:14,"518 5th St, Los Angeles, CA 90001" -195832,iPhone,1,700,05/16/19 23:49,"973 River St, Boston, MA 02215" -195832,Google Phone,1,600,05/16/19 23:49,"973 River St, Boston, MA 02215" -195833,Macbook Pro Laptop,1,1700,05/27/19 17:01,"914 Elm St, Boston, MA 02215" -195834,Apple Airpods Headphones,1,150,05/20/19 10:39,"282 River St, Portland, OR 97035" -195835,AAA Batteries (4-pack),1,2.99,05/10/19 08:18,"505 1st St, San Francisco, CA 94016" -195836,Lightning Charging Cable,1,14.95,05/22/19 14:25,"81 Maple St, Dallas, TX 75001" -195837,Wired Headphones,1,11.99,05/29/19 12:46,"498 Madison St, Boston, MA 02215" -195838,Wired Headphones,1,11.99,05/13/19 11:07,"775 Elm St, Atlanta, GA 30301" -195839,USB-C Charging Cable,1,11.95,05/18/19 14:41,"313 Park St, Atlanta, GA 30301" -195840,AAA Batteries (4-pack),1,2.99,05/11/19 10:19,"764 Jackson St, Atlanta, GA 30301" -195841,AAA Batteries (4-pack),5,2.99,05/16/19 10:03,"321 Church St, Dallas, TX 75001" -195842,AAA Batteries (4-pack),1,2.99,05/29/19 21:04,"349 2nd St, Boston, MA 02215" -195843,Bose SoundSport Headphones,1,99.99,05/18/19 18:32,"692 North St, Los Angeles, CA 90001" -195844,Lightning Charging Cable,1,14.95,05/25/19 09:40,"622 Wilson St, San Francisco, CA 94016" -195845,AA Batteries (4-pack),1,3.84,05/30/19 13:12,"857 Sunset St, Atlanta, GA 30301" -195846,Apple Airpods Headphones,1,150,05/03/19 12:13,"107 Center St, Seattle, WA 98101" -195847,Lightning Charging Cable,1,14.95,05/13/19 19:35,"434 7th St, San Francisco, CA 94016" -195848,Google Phone,1,600,05/09/19 14:51,"394 12th St, Atlanta, GA 30301" -195849,27in 4K Gaming Monitor,1,389.99,05/20/19 16:56,"781 Main St, Portland, OR 97035" -195850,Apple Airpods Headphones,1,150,05/27/19 00:26,"316 Sunset St, Austin, TX 73301" -195851,Wired Headphones,1,11.99,05/19/19 19:58,"419 North St, San Francisco, CA 94016" -195852,iPhone,1,700,05/13/19 19:34,"799 Dogwood St, New York City, NY 10001" -195853,Macbook Pro Laptop,1,1700,05/13/19 17:16,"887 14th St, New York City, NY 10001" -195854,Wired Headphones,1,11.99,05/18/19 12:33,"845 Lincoln St, San Francisco, CA 94016" -195855,USB-C Charging Cable,1,11.95,05/20/19 07:20,"534 2nd St, Los Angeles, CA 90001" -195856,iPhone,1,700,05/10/19 18:23,"649 Main St, Los Angeles, CA 90001" -195857,AAA Batteries (4-pack),1,2.99,05/07/19 14:49,"54 Maple St, Los Angeles, CA 90001" -195858,AA Batteries (4-pack),1,3.84,05/29/19 08:14,"378 Willow St, San Francisco, CA 94016" -195859,27in 4K Gaming Monitor,1,389.99,05/04/19 09:58,"981 10th St, New York City, NY 10001" -195860,Bose SoundSport Headphones,1,99.99,05/31/19 17:00,"778 Church St, New York City, NY 10001" -195861,USB-C Charging Cable,1,11.95,05/07/19 11:38,"382 Lincoln St, Seattle, WA 98101" -195862,USB-C Charging Cable,1,11.95,05/16/19 12:18,"987 1st St, New York City, NY 10001" -195863,iPhone,1,700,05/29/19 11:26,"560 1st St, Los Angeles, CA 90001" -195864,20in Monitor,1,109.99,05/17/19 16:35,"365 Willow St, Seattle, WA 98101" -195865,Wired Headphones,1,11.99,05/21/19 21:52,"423 13th St, Atlanta, GA 30301" -195866,Lightning Charging Cable,1,14.95,05/25/19 10:17,"755 Lakeview St, Portland, OR 97035" -195867,USB-C Charging Cable,1,11.95,05/22/19 23:02,"570 Main St, New York City, NY 10001" -195868,Apple Airpods Headphones,1,150,05/10/19 21:25,"728 Forest St, Austin, TX 73301" -195869,AAA Batteries (4-pack),1,2.99,06/01/19 01:06,"877 Center St, Dallas, TX 75001" -195870,iPhone,1,700,05/24/19 12:06,"639 Madison St, New York City, NY 10001" -195870,Apple Airpods Headphones,1,150,05/24/19 12:06,"639 Madison St, New York City, NY 10001" -195871,Lightning Charging Cable,1,14.95,05/28/19 20:06,"49 Park St, Austin, TX 73301" -195872,USB-C Charging Cable,1,11.95,05/13/19 20:02,"483 Cedar St, New York City, NY 10001" -195873,AAA Batteries (4-pack),2,2.99,05/01/19 12:48,"376 Hickory St, San Francisco, CA 94016" -195874,Google Phone,1,600,05/20/19 00:44,"910 Church St, San Francisco, CA 94016" -195875,USB-C Charging Cable,1,11.95,05/09/19 19:51,"142 14th St, Boston, MA 02215" -195876,AA Batteries (4-pack),1,3.84,05/25/19 10:06,"872 Ridge St, San Francisco, CA 94016" -195877,Bose SoundSport Headphones,1,99.99,05/27/19 13:13,"389 Meadow St, Atlanta, GA 30301" -195877,Wired Headphones,1,11.99,05/27/19 13:13,"389 Meadow St, Atlanta, GA 30301" -195878,Lightning Charging Cable,3,14.95,05/22/19 16:28,"974 Wilson St, Los Angeles, CA 90001" -195879,AA Batteries (4-pack),2,3.84,05/09/19 22:04,"63 Ridge St, New York City, NY 10001" -195880,Lightning Charging Cable,1,14.95,05/20/19 21:04,"824 Willow St, Boston, MA 02215" -195881,AA Batteries (4-pack),2,3.84,05/21/19 13:01,"640 West St, Los Angeles, CA 90001" -195882,AAA Batteries (4-pack),2,2.99,05/16/19 20:47,"492 Elm St, Los Angeles, CA 90001" -195883,Google Phone,1,600,05/03/19 08:45,"283 West St, San Francisco, CA 94016" -195883,USB-C Charging Cable,1,11.95,05/03/19 08:45,"283 West St, San Francisco, CA 94016" -195884,Bose SoundSport Headphones,1,99.99,05/01/19 17:24,"704 13th St, San Francisco, CA 94016" -195885,Bose SoundSport Headphones,1,99.99,05/28/19 09:25,"620 Meadow St, Portland, OR 97035" -195886,Vareebadd Phone,1,400,05/07/19 22:20,"85 Lake St, Los Angeles, CA 90001" -195887,AA Batteries (4-pack),1,3.84,05/22/19 11:29,"75 11th St, Boston, MA 02215" -195888,27in 4K Gaming Monitor,1,389.99,05/01/19 18:46,"462 Cedar St, Dallas, TX 75001" -195889,Lightning Charging Cable,1,14.95,05/04/19 09:21,"145 Hill St, New York City, NY 10001" -195890,Bose SoundSport Headphones,1,99.99,05/15/19 20:45,"628 Maple St, Austin, TX 73301" -195891,Lightning Charging Cable,1,14.95,05/28/19 17:01,"610 Jefferson St, New York City, NY 10001" -195892,Bose SoundSport Headphones,1,99.99,05/29/19 19:23,"47 Adams St, Los Angeles, CA 90001" -195893,AA Batteries (4-pack),2,3.84,05/26/19 12:47,"845 8th St, Atlanta, GA 30301" -195894,AAA Batteries (4-pack),1,2.99,05/24/19 12:25,"561 8th St, Los Angeles, CA 90001" -195895,USB-C Charging Cable,1,11.95,05/17/19 14:46,"34 Lakeview St, San Francisco, CA 94016" -195896,Wired Headphones,2,11.99,05/24/19 13:05,"118 Hickory St, Boston, MA 02215" -195897,AA Batteries (4-pack),2,3.84,05/11/19 10:06,"320 Madison St, Los Angeles, CA 90001" -195898,USB-C Charging Cable,1,11.95,05/11/19 07:54,"848 5th St, Boston, MA 02215" -195899,AAA Batteries (4-pack),1,2.99,05/25/19 09:37,"2 Dogwood St, San Francisco, CA 94016" -195900,Apple Airpods Headphones,1,150,05/02/19 10:16,"470 Sunset St, Los Angeles, CA 90001" -195901,AAA Batteries (4-pack),1,2.99,05/01/19 10:51,"6 2nd St, Atlanta, GA 30301" -195902,Lightning Charging Cable,1,14.95,05/14/19 13:01,"7 Walnut St, New York City, NY 10001" -195903,ThinkPad Laptop,1,999.99,05/13/19 19:36,"655 2nd St, San Francisco, CA 94016" -195904,Wired Headphones,1,11.99,05/02/19 14:07,"134 Highland St, Dallas, TX 75001" -195905,Macbook Pro Laptop,1,1700,05/23/19 22:43,"309 Center St, New York City, NY 10001" -195906,AAA Batteries (4-pack),1,2.99,05/05/19 11:55,"739 Main St, Los Angeles, CA 90001" -195907,AA Batteries (4-pack),1,3.84,05/11/19 12:57,"128 Hill St, Boston, MA 02215" -195908,ThinkPad Laptop,1,999.99,05/25/19 16:55,"682 1st St, New York City, NY 10001" -195908,27in 4K Gaming Monitor,1,389.99,05/25/19 16:55,"682 1st St, New York City, NY 10001" -195909,AA Batteries (4-pack),1,3.84,05/10/19 20:29,"422 Center St, Boston, MA 02215" -195910,27in FHD Monitor,1,149.99,05/12/19 19:27,"339 Chestnut St, New York City, NY 10001" -195910,AA Batteries (4-pack),1,3.84,05/12/19 19:27,"339 Chestnut St, New York City, NY 10001" -195911,Bose SoundSport Headphones,1,99.99,05/11/19 09:47,"845 Lincoln St, Los Angeles, CA 90001" -195912,Apple Airpods Headphones,1,150,05/22/19 12:50,"78 Washington St, Los Angeles, CA 90001" -195913,27in FHD Monitor,1,149.99,05/23/19 17:19,"388 13th St, Los Angeles, CA 90001" -195914,27in 4K Gaming Monitor,1,389.99,05/18/19 13:58,"750 14th St, Los Angeles, CA 90001" -195915,Wired Headphones,1,11.99,05/11/19 12:29,"60 Jefferson St, Dallas, TX 75001" -195916,AA Batteries (4-pack),1,3.84,05/05/19 13:17,"458 Spruce St, San Francisco, CA 94016" -195917,AAA Batteries (4-pack),1,2.99,05/05/19 14:42,"349 Willow St, San Francisco, CA 94016" -195918,27in 4K Gaming Monitor,1,389.99,05/08/19 12:03,"250 11th St, Boston, MA 02215" -195919,AA Batteries (4-pack),1,3.84,05/10/19 12:00,"199 Highland St, Seattle, WA 98101" -195920,Vareebadd Phone,1,400,05/02/19 20:40,"328 9th St, San Francisco, CA 94016" -195920,USB-C Charging Cable,1,11.95,05/02/19 20:40,"328 9th St, San Francisco, CA 94016" -195921,Apple Airpods Headphones,1,150,05/16/19 21:52,"280 Willow St, Dallas, TX 75001" -195922,AA Batteries (4-pack),1,3.84,05/03/19 05:15,"239 Walnut St, Los Angeles, CA 90001" -195923,Wired Headphones,1,11.99,05/15/19 10:53,"973 6th St, Los Angeles, CA 90001" -195924,USB-C Charging Cable,1,11.95,05/28/19 16:16,"245 Ridge St, Los Angeles, CA 90001" -195925,Bose SoundSport Headphones,1,99.99,05/31/19 13:03,"312 Hill St, New York City, NY 10001" -195926,AAA Batteries (4-pack),1,2.99,05/19/19 16:13,"297 13th St, Austin, TX 73301" -195927,AAA Batteries (4-pack),1,2.99,05/04/19 22:15,"89 Lake St, Atlanta, GA 30301" -195928,Lightning Charging Cable,1,14.95,05/09/19 16:38,"117 Walnut St, Boston, MA 02215" -195929,Bose SoundSport Headphones,1,99.99,05/20/19 07:23,"878 Lake St, Los Angeles, CA 90001" -195930,USB-C Charging Cable,1,11.95,05/14/19 15:59,"997 Walnut St, San Francisco, CA 94016" -195931,34in Ultrawide Monitor,1,379.99,05/07/19 12:04,"831 Chestnut St, Portland, OR 97035" -195932,USB-C Charging Cable,1,11.95,05/11/19 23:42,"799 7th St, Seattle, WA 98101" -195933,20in Monitor,1,109.99,05/03/19 07:19,"229 Park St, Dallas, TX 75001" -195934,USB-C Charging Cable,1,11.95,05/12/19 18:16,"250 Lake St, Portland, ME 04101" -195935,Lightning Charging Cable,1,14.95,05/19/19 10:20,"584 14th St, Portland, OR 97035" -195936,Bose SoundSport Headphones,1,99.99,05/31/19 15:18,"332 Park St, Portland, OR 97035" -195937,AA Batteries (4-pack),1,3.84,05/26/19 20:42,"92 8th St, San Francisco, CA 94016" -195938,ThinkPad Laptop,1,999.99,05/03/19 18:05,"965 Chestnut St, San Francisco, CA 94016" -195939,34in Ultrawide Monitor,1,379.99,05/27/19 17:33,"739 Sunset St, San Francisco, CA 94016" -195940,Bose SoundSport Headphones,1,99.99,05/27/19 06:38,"331 6th St, Dallas, TX 75001" -195941,Flatscreen TV,1,300,05/31/19 19:18,"349 Cedar St, Portland, OR 97035" -195942,ThinkPad Laptop,1,999.99,05/22/19 12:08,"554 Wilson St, San Francisco, CA 94016" -195943,AAA Batteries (4-pack),3,2.99,05/16/19 08:40,"573 Main St, San Francisco, CA 94016" -195944,AA Batteries (4-pack),2,3.84,05/27/19 18:43,"284 North St, San Francisco, CA 94016" -195945,AAA Batteries (4-pack),1,2.99,05/13/19 14:13,"223 Hill St, Portland, OR 97035" -,,,,, -195946,Bose SoundSport Headphones,1,99.99,05/05/19 19:04,"673 Meadow St, New York City, NY 10001" -195947,Wired Headphones,1,11.99,05/22/19 19:54,"824 Willow St, San Francisco, CA 94016" -195948,Lightning Charging Cable,1,14.95,05/18/19 15:34,"654 11th St, New York City, NY 10001" -195949,Macbook Pro Laptop,1,1700,05/06/19 11:11,"300 Madison St, Boston, MA 02215" -195950,Flatscreen TV,1,300,05/19/19 17:24,"997 Spruce St, Los Angeles, CA 90001" -195951,Google Phone,1,600,05/14/19 08:18,"629 South St, San Francisco, CA 94016" -195952,AA Batteries (4-pack),1,3.84,05/08/19 12:03,"949 Sunset St, Boston, MA 02215" -195953,Lightning Charging Cable,1,14.95,05/27/19 20:40,"559 Dogwood St, San Francisco, CA 94016" -195954,Wired Headphones,1,11.99,05/23/19 11:51,"945 5th St, Seattle, WA 98101" -195955,Wired Headphones,1,11.99,05/20/19 21:16,"20 Sunset St, Los Angeles, CA 90001" -195956,AAA Batteries (4-pack),1,2.99,05/17/19 19:37,"246 Lakeview St, New York City, NY 10001" -195957,Apple Airpods Headphones,1,150,05/31/19 15:18,"972 Meadow St, Portland, OR 97035" -195958,Lightning Charging Cable,1,14.95,05/08/19 17:45,"334 13th St, Dallas, TX 75001" -195959,Bose SoundSport Headphones,1,99.99,05/30/19 08:35,"126 10th St, Los Angeles, CA 90001" -195960,27in 4K Gaming Monitor,1,389.99,05/24/19 10:59,"68 North St, Dallas, TX 75001" -195961,Bose SoundSport Headphones,1,99.99,05/06/19 22:19,"369 11th St, Dallas, TX 75001" -195962,20in Monitor,1,109.99,05/14/19 16:47,"884 Spruce St, Seattle, WA 98101" -195963,USB-C Charging Cable,1,11.95,05/04/19 19:45,"933 6th St, New York City, NY 10001" -195964,ThinkPad Laptop,1,999.99,05/08/19 19:16,"614 14th St, New York City, NY 10001" -195965,USB-C Charging Cable,1,11.95,05/08/19 11:24,"558 Elm St, Boston, MA 02215" -195966,Apple Airpods Headphones,1,150,05/19/19 09:15,"322 Jackson St, Boston, MA 02215" -195967,AAA Batteries (4-pack),1,2.99,05/23/19 17:49,"695 7th St, Atlanta, GA 30301" -195968,Apple Airpods Headphones,1,150,05/11/19 08:10,"412 9th St, Seattle, WA 98101" -195969,Lightning Charging Cable,1,14.95,05/24/19 22:34,"556 Park St, Boston, MA 02215" -195970,Bose SoundSport Headphones,1,99.99,05/08/19 22:24,"476 Jefferson St, Los Angeles, CA 90001" -195971,27in FHD Monitor,1,149.99,05/06/19 15:52,"401 Lake St, New York City, NY 10001" -195972,USB-C Charging Cable,1,11.95,05/18/19 23:52,"211 Lakeview St, Dallas, TX 75001" -195973,Lightning Charging Cable,1,14.95,05/14/19 21:04,"352 6th St, Dallas, TX 75001" -195974,27in 4K Gaming Monitor,1,389.99,05/14/19 08:44,"186 13th St, Los Angeles, CA 90001" -195975,Wired Headphones,1,11.99,05/05/19 11:26,"136 Pine St, Austin, TX 73301" -195976,Wired Headphones,1,11.99,05/31/19 19:40,"517 Lakeview St, Dallas, TX 75001" -195977,Macbook Pro Laptop,1,1700,05/30/19 16:42,"948 Church St, San Francisco, CA 94016" -195978,AA Batteries (4-pack),1,3.84,05/20/19 21:41,"729 Lincoln St, San Francisco, CA 94016" -195979,ThinkPad Laptop,1,999.99,05/30/19 19:04,"706 Hill St, San Francisco, CA 94016" -195980,USB-C Charging Cable,1,11.95,05/25/19 22:17,"211 Main St, New York City, NY 10001" -195981,iPhone,1,700,05/21/19 15:02,"451 5th St, Atlanta, GA 30301" -195982,AAA Batteries (4-pack),1,2.99,05/19/19 03:34,"429 5th St, Los Angeles, CA 90001" -195983,Bose SoundSport Headphones,1,99.99,05/25/19 18:32,"488 Park St, Los Angeles, CA 90001" -195984,ThinkPad Laptop,1,999.99,05/22/19 19:21,"646 13th St, Portland, OR 97035" -195985,AA Batteries (4-pack),1,3.84,05/11/19 15:36,"452 Meadow St, San Francisco, CA 94016" -195986,Lightning Charging Cable,1,14.95,05/25/19 17:38,"431 Maple St, Boston, MA 02215" -195987,Lightning Charging Cable,1,14.95,05/07/19 18:49,"656 River St, Boston, MA 02215" -195988,27in 4K Gaming Monitor,1,389.99,05/22/19 04:26,"442 Hill St, San Francisco, CA 94016" -195989,AA Batteries (4-pack),1,3.84,05/10/19 19:34,"795 Washington St, San Francisco, CA 94016" -195990,Bose SoundSport Headphones,1,99.99,05/07/19 20:42,"855 11th St, San Francisco, CA 94016" -195991,AAA Batteries (4-pack),1,2.99,05/21/19 03:52,"295 10th St, Seattle, WA 98101" -195992,Wired Headphones,1,11.99,05/27/19 14:22,"929 Dogwood St, New York City, NY 10001" -195993,Wired Headphones,1,11.99,05/20/19 20:22,"67 4th St, Seattle, WA 98101" -195994,USB-C Charging Cable,1,11.95,05/06/19 20:37,"267 Meadow St, San Francisco, CA 94016" -195995,Bose SoundSport Headphones,1,99.99,05/07/19 06:33,"256 Madison St, San Francisco, CA 94016" -195996,27in 4K Gaming Monitor,1,389.99,05/13/19 15:38,"531 14th St, Dallas, TX 75001" -195997,ThinkPad Laptop,1,999.99,05/27/19 15:58,"676 Chestnut St, New York City, NY 10001" -195998,AAA Batteries (4-pack),1,2.99,05/03/19 11:40,"196 Center St, Atlanta, GA 30301" -195999,iPhone,1,700,05/11/19 16:39,"297 Main St, Atlanta, GA 30301" -196000,AA Batteries (4-pack),1,3.84,05/04/19 09:42,"873 Johnson St, San Francisco, CA 94016" -196001,AAA Batteries (4-pack),2,2.99,05/23/19 21:51,"577 Walnut St, Los Angeles, CA 90001" -196002,AA Batteries (4-pack),1,3.84,05/07/19 19:55,"517 Cherry St, Boston, MA 02215" -196003,iPhone,1,700,05/03/19 14:29,"33 13th St, San Francisco, CA 94016" -196004,USB-C Charging Cable,1,11.95,05/31/19 22:41,"408 6th St, San Francisco, CA 94016" -196005,USB-C Charging Cable,1,11.95,05/23/19 18:53,"828 West St, Boston, MA 02215" -196006,27in 4K Gaming Monitor,1,389.99,05/15/19 10:06,"111 West St, Los Angeles, CA 90001" -196007,Bose SoundSport Headphones,1,99.99,05/29/19 14:49,"156 South St, New York City, NY 10001" -196008,ThinkPad Laptop,1,999.99,05/22/19 22:33,"795 13th St, Austin, TX 73301" -196009,20in Monitor,1,109.99,05/25/19 12:07,"337 Jackson St, Los Angeles, CA 90001" -196010,Wired Headphones,1,11.99,05/26/19 20:02,"718 Lincoln St, San Francisco, CA 94016" -196011,USB-C Charging Cable,1,11.95,05/10/19 13:15,"868 Madison St, Los Angeles, CA 90001" -196012,Lightning Charging Cable,2,14.95,05/10/19 20:39,"772 5th St, San Francisco, CA 94016" -196013,34in Ultrawide Monitor,1,379.99,05/29/19 14:39,"186 Jefferson St, New York City, NY 10001" -196014,iPhone,1,700,05/16/19 11:49,"872 Wilson St, Atlanta, GA 30301" -196014,Lightning Charging Cable,1,14.95,05/16/19 11:49,"872 Wilson St, Atlanta, GA 30301" -196014,Apple Airpods Headphones,1,150,05/16/19 11:49,"872 Wilson St, Atlanta, GA 30301" -196015,USB-C Charging Cable,1,11.95,05/17/19 18:35,"93 7th St, San Francisco, CA 94016" -196016,27in FHD Monitor,1,149.99,05/04/19 08:43,"492 11th St, San Francisco, CA 94016" -196017,27in FHD Monitor,1,149.99,05/05/19 12:16,"239 12th St, New York City, NY 10001" -196018,Apple Airpods Headphones,1,150,05/18/19 19:05,"591 9th St, New York City, NY 10001" -196019,AA Batteries (4-pack),1,3.84,05/19/19 22:09,"546 Washington St, Boston, MA 02215" -196020,Vareebadd Phone,1,400,05/26/19 16:25,"543 Washington St, Boston, MA 02215" -196021,AAA Batteries (4-pack),1,2.99,05/04/19 16:55,"174 Chestnut St, Seattle, WA 98101" -196022,Bose SoundSport Headphones,1,99.99,05/29/19 10:25,"330 South St, Boston, MA 02215" -196023,Wired Headphones,1,11.99,05/15/19 10:02,"668 1st St, Dallas, TX 75001" -196024,iPhone,1,700,05/07/19 21:15,"489 14th St, Seattle, WA 98101" -196024,Lightning Charging Cable,1,14.95,05/07/19 21:15,"489 14th St, Seattle, WA 98101" -196025,27in FHD Monitor,1,149.99,05/13/19 11:01,"253 Sunset St, New York City, NY 10001" -196026,34in Ultrawide Monitor,1,379.99,05/06/19 18:04,"158 11th St, Portland, OR 97035" -196027,Bose SoundSport Headphones,1,99.99,05/07/19 08:35,"796 Sunset St, New York City, NY 10001" -196028,Apple Airpods Headphones,1,150,05/21/19 11:37,"254 Wilson St, Austin, TX 73301" -196029,Flatscreen TV,1,300,05/09/19 16:20,"415 Jackson St, San Francisco, CA 94016" -196030,Wired Headphones,1,11.99,05/02/19 13:55,"181 South St, Portland, OR 97035" -196031,AAA Batteries (4-pack),1,2.99,05/28/19 08:14,"689 5th St, Dallas, TX 75001" -196032,AAA Batteries (4-pack),2,2.99,05/08/19 10:04,"391 14th St, Atlanta, GA 30301" -196033,AAA Batteries (4-pack),1,2.99,05/19/19 14:36,"269 Ridge St, Seattle, WA 98101" -196034,USB-C Charging Cable,1,11.95,05/15/19 12:58,"570 5th St, San Francisco, CA 94016" -196035,AA Batteries (4-pack),1,3.84,05/27/19 12:12,"987 Adams St, Los Angeles, CA 90001" -196036,USB-C Charging Cable,1,11.95,05/03/19 20:48,"83 Lincoln St, Los Angeles, CA 90001" -196037,Flatscreen TV,1,300,05/18/19 21:25,"689 Sunset St, New York City, NY 10001" -196038,34in Ultrawide Monitor,1,379.99,05/18/19 13:32,"469 Willow St, Atlanta, GA 30301" -196039,Wired Headphones,1,11.99,05/24/19 20:46,"685 Adams St, Portland, OR 97035" -196040,USB-C Charging Cable,1,11.95,05/24/19 21:07,"701 Hickory St, San Francisco, CA 94016" -196041,AA Batteries (4-pack),1,3.84,05/19/19 11:11,"370 Jefferson St, San Francisco, CA 94016" -196042,27in FHD Monitor,1,149.99,05/03/19 22:50,"214 South St, Los Angeles, CA 90001" -196043,Apple Airpods Headphones,1,150,05/18/19 20:08,"720 Center St, San Francisco, CA 94016" -196044,AAA Batteries (4-pack),1,2.99,05/18/19 10:22,"541 Church St, San Francisco, CA 94016" -196045,20in Monitor,1,109.99,05/02/19 07:18,"617 7th St, San Francisco, CA 94016" -196046,Lightning Charging Cable,1,14.95,05/03/19 15:24,"505 Chestnut St, Boston, MA 02215" -196047,Apple Airpods Headphones,1,150,05/30/19 23:47,"612 Madison St, Los Angeles, CA 90001" -196048,Flatscreen TV,1,300,05/12/19 13:47,"518 Wilson St, Seattle, WA 98101" -196049,AA Batteries (4-pack),1,3.84,05/02/19 20:33,"514 9th St, New York City, NY 10001" -196050,Bose SoundSport Headphones,1,99.99,05/24/19 22:57,"650 9th St, Dallas, TX 75001" -196051,34in Ultrawide Monitor,1,379.99,05/15/19 23:17,"267 8th St, Portland, OR 97035" -196052,Bose SoundSport Headphones,1,99.99,05/21/19 16:28,"288 8th St, Seattle, WA 98101" -196053,Google Phone,1,600,05/25/19 19:23,"639 5th St, San Francisco, CA 94016" -196054,34in Ultrawide Monitor,1,379.99,05/30/19 18:48,"920 Meadow St, Dallas, TX 75001" -196055,Bose SoundSport Headphones,1,99.99,05/08/19 00:05,"587 Dogwood St, Los Angeles, CA 90001" -196056,Wired Headphones,1,11.99,05/20/19 16:15,"679 10th St, Austin, TX 73301" -196057,AAA Batteries (4-pack),1,2.99,05/16/19 16:18,"719 Jackson St, New York City, NY 10001" -196058,Bose SoundSport Headphones,1,99.99,05/21/19 18:32,"24 Elm St, Los Angeles, CA 90001" -196059,Apple Airpods Headphones,1,150,05/10/19 16:45,"237 Main St, Boston, MA 02215" -196060,Apple Airpods Headphones,1,150,05/02/19 18:29,"396 Jefferson St, Los Angeles, CA 90001" -196061,Google Phone,1,600,05/19/19 19:56,"238 Hickory St, Atlanta, GA 30301" -196061,USB-C Charging Cable,1,11.95,05/19/19 19:56,"238 Hickory St, Atlanta, GA 30301" -196062,Lightning Charging Cable,1,14.95,05/21/19 10:42,"360 6th St, Boston, MA 02215" -196063,USB-C Charging Cable,1,11.95,05/14/19 00:29,"235 Dogwood St, San Francisco, CA 94016" -196064,Wired Headphones,1,11.99,05/09/19 12:04,"98 Park St, New York City, NY 10001" -196065,Bose SoundSport Headphones,1,99.99,05/16/19 12:50,"241 Ridge St, Atlanta, GA 30301" -196066,27in FHD Monitor,1,149.99,05/12/19 21:24,"486 8th St, Seattle, WA 98101" -196067,Vareebadd Phone,1,400,05/23/19 21:03,"309 Washington St, Los Angeles, CA 90001" -196068,Lightning Charging Cable,1,14.95,05/27/19 20:54,"234 West St, Austin, TX 73301" -196069,Apple Airpods Headphones,1,150,05/09/19 14:23,"771 Jackson St, San Francisco, CA 94016" -196070,USB-C Charging Cable,1,11.95,05/06/19 10:30,"221 1st St, Atlanta, GA 30301" -196071,Apple Airpods Headphones,1,150,05/07/19 09:16,"313 Johnson St, Seattle, WA 98101" -196072,Lightning Charging Cable,1,14.95,06/01/19 00:18,"594 Willow St, San Francisco, CA 94016" -196073,Bose SoundSport Headphones,1,99.99,05/20/19 21:21,"78 Highland St, San Francisco, CA 94016" -196074,AA Batteries (4-pack),2,3.84,05/07/19 12:16,"4 Church St, Seattle, WA 98101" -196075,34in Ultrawide Monitor,1,379.99,05/05/19 12:04,"639 Willow St, Los Angeles, CA 90001" -196076,USB-C Charging Cable,1,11.95,05/07/19 22:22,"733 Cedar St, San Francisco, CA 94016" -196077,Lightning Charging Cable,1,14.95,05/26/19 10:15,"808 Jefferson St, Los Angeles, CA 90001" -196078,AA Batteries (4-pack),1,3.84,05/01/19 06:54,"422 Madison St, Los Angeles, CA 90001" -196079,27in 4K Gaming Monitor,1,389.99,05/12/19 10:56,"84 Spruce St, Los Angeles, CA 90001" -196080,USB-C Charging Cable,1,11.95,05/22/19 14:26,"463 Wilson St, San Francisco, CA 94016" -196081,AAA Batteries (4-pack),1,2.99,05/28/19 16:41,"701 1st St, New York City, NY 10001" -196082,iPhone,1,700,05/06/19 16:58,"888 Spruce St, Los Angeles, CA 90001" -196083,iPhone,1,700,05/19/19 20:38,"428 4th St, Portland, OR 97035" -196084,Flatscreen TV,1,300,05/17/19 09:51,"100 South St, San Francisco, CA 94016" -196085,USB-C Charging Cable,1,11.95,05/25/19 10:10,"920 South St, Austin, TX 73301" -196086,AAA Batteries (4-pack),1,2.99,05/14/19 14:02,"855 13th St, San Francisco, CA 94016" -196087,iPhone,1,700,05/12/19 20:41,"449 Johnson St, San Francisco, CA 94016" -196088,27in 4K Gaming Monitor,1,389.99,05/08/19 17:41,"739 Washington St, Los Angeles, CA 90001" -196089,Lightning Charging Cable,1,14.95,05/02/19 20:34,"991 Lakeview St, Dallas, TX 75001" -196090,iPhone,1,700,05/15/19 19:41,"518 Park St, San Francisco, CA 94016" -196090,Apple Airpods Headphones,1,150,05/15/19 19:41,"518 Park St, San Francisco, CA 94016" -196091,27in 4K Gaming Monitor,1,389.99,05/14/19 14:38,"802 Main St, Boston, MA 02215" -196092,27in FHD Monitor,1,149.99,05/23/19 17:45,"980 Jefferson St, Los Angeles, CA 90001" -196093,USB-C Charging Cable,1,11.95,05/05/19 15:37,"488 North St, Boston, MA 02215" -196094,AAA Batteries (4-pack),1,2.99,05/04/19 16:30,"839 Adams St, Seattle, WA 98101" -196095,Bose SoundSport Headphones,1,99.99,05/03/19 14:19,"690 Chestnut St, San Francisco, CA 94016" -196096,Lightning Charging Cable,1,14.95,05/30/19 23:16,"255 Pine St, San Francisco, CA 94016" -196097,USB-C Charging Cable,1,11.95,05/23/19 18:46,"53 12th St, Atlanta, GA 30301" -196098,27in 4K Gaming Monitor,1,389.99,05/02/19 08:10,"675 Church St, Boston, MA 02215" -196099,AA Batteries (4-pack),1,3.84,05/19/19 12:14,"833 13th St, Los Angeles, CA 90001" -196100,iPhone,1,700,05/21/19 13:06,"69 Main St, Atlanta, GA 30301" -196101,Bose SoundSport Headphones,1,99.99,05/11/19 22:07,"848 2nd St, Austin, TX 73301" -196102,iPhone,1,700,05/06/19 19:30,"432 Lakeview St, Atlanta, GA 30301" -196103,AAA Batteries (4-pack),2,2.99,05/22/19 12:27,"724 Chestnut St, Seattle, WA 98101" -196104,27in FHD Monitor,1,149.99,05/02/19 00:05,"333 12th St, New York City, NY 10001" -196105,AAA Batteries (4-pack),1,2.99,05/16/19 05:29,"64 Main St, New York City, NY 10001" -196106,Flatscreen TV,1,300,05/03/19 04:57,"67 Madison St, Seattle, WA 98101" -196107,Lightning Charging Cable,1,14.95,05/01/19 09:36,"539 Maple St, San Francisco, CA 94016" -196108,34in Ultrawide Monitor,1,379.99,05/30/19 21:00,"638 8th St, New York City, NY 10001" -196109,27in 4K Gaming Monitor,1,389.99,05/25/19 18:19,"759 11th St, Dallas, TX 75001" -196110,Wired Headphones,1,11.99,05/23/19 12:10,"454 West St, Los Angeles, CA 90001" -196111,Wired Headphones,1,11.99,05/21/19 16:13,"333 Johnson St, Los Angeles, CA 90001" -196112,27in FHD Monitor,1,149.99,05/16/19 23:21,"816 Forest St, New York City, NY 10001" -196113,27in FHD Monitor,1,149.99,05/19/19 21:43,"868 North St, San Francisco, CA 94016" -196114,AAA Batteries (4-pack),1,2.99,05/30/19 23:36,"172 Forest St, Dallas, TX 75001" -196115,Wired Headphones,1,11.99,05/28/19 12:20,"903 South St, New York City, NY 10001" -196116,Bose SoundSport Headphones,1,99.99,05/16/19 10:47,"879 Jackson St, Austin, TX 73301" -196117,Lightning Charging Cable,1,14.95,05/24/19 20:22,"805 Lakeview St, Los Angeles, CA 90001" -196118,USB-C Charging Cable,1,11.95,05/24/19 17:36,"504 Johnson St, Portland, OR 97035" -196119,Wired Headphones,1,11.99,05/17/19 09:21,"101 Ridge St, New York City, NY 10001" -196120,AA Batteries (4-pack),2,3.84,05/28/19 06:37,"296 Wilson St, San Francisco, CA 94016" -196121,AAA Batteries (4-pack),1,2.99,05/13/19 23:11,"740 7th St, Atlanta, GA 30301" -196122,USB-C Charging Cable,1,11.95,05/01/19 14:05,"677 13th St, San Francisco, CA 94016" -196123,Vareebadd Phone,1,400,05/12/19 19:14,"898 Willow St, San Francisco, CA 94016" -196123,USB-C Charging Cable,1,11.95,05/12/19 19:14,"898 Willow St, San Francisco, CA 94016" -196124,Apple Airpods Headphones,1,150,05/09/19 19:53,"19 South St, San Francisco, CA 94016" -196125,USB-C Charging Cable,2,11.95,05/17/19 16:50,"935 Lakeview St, New York City, NY 10001" -196126,Macbook Pro Laptop,1,1700,05/08/19 16:51,"510 Cedar St, Los Angeles, CA 90001" -196127,27in 4K Gaming Monitor,1,389.99,05/19/19 11:30,"931 Washington St, San Francisco, CA 94016" -196128,Google Phone,1,600,05/06/19 18:37,"848 2nd St, San Francisco, CA 94016" -196128,USB-C Charging Cable,1,11.95,05/06/19 18:37,"848 2nd St, San Francisco, CA 94016" -196129,iPhone,1,700,05/09/19 15:02,"401 14th St, San Francisco, CA 94016" -196130,AA Batteries (4-pack),1,3.84,05/30/19 22:07,"927 Lake St, Dallas, TX 75001" -196131,USB-C Charging Cable,1,11.95,05/05/19 14:34,"635 Johnson St, Los Angeles, CA 90001" -196132,Lightning Charging Cable,1,14.95,06/01/19 02:48,"998 10th St, San Francisco, CA 94016" -196133,AAA Batteries (4-pack),1,2.99,05/07/19 21:20,"5 13th St, Boston, MA 02215" -196134,Wired Headphones,1,11.99,05/23/19 16:07,"737 Hickory St, Los Angeles, CA 90001" -196135,Apple Airpods Headphones,1,150,05/16/19 19:53,"263 Pine St, Boston, MA 02215" -196136,iPhone,1,700,05/23/19 20:50,"748 1st St, Los Angeles, CA 90001" -196136,Lightning Charging Cable,2,14.95,05/23/19 20:50,"748 1st St, Los Angeles, CA 90001" -196137,Apple Airpods Headphones,1,150,05/30/19 15:52,"285 Madison St, Los Angeles, CA 90001" -196138,AAA Batteries (4-pack),1,2.99,05/05/19 17:33,"167 Highland St, New York City, NY 10001" -196139,AAA Batteries (4-pack),1,2.99,05/06/19 14:56,"633 Hickory St, Austin, TX 73301" -196140,Lightning Charging Cable,1,14.95,05/19/19 20:44,"954 10th St, New York City, NY 10001" -196141,USB-C Charging Cable,1,11.95,05/28/19 07:09,"158 River St, Portland, OR 97035" -196142,Bose SoundSport Headphones,1,99.99,05/05/19 12:32,"180 2nd St, New York City, NY 10001" -196143,Flatscreen TV,1,300,05/11/19 20:01,"134 Jefferson St, New York City, NY 10001" -196144,Lightning Charging Cable,1,14.95,05/01/19 19:08,"385 6th St, Boston, MA 02215" -196145,Lightning Charging Cable,2,14.95,05/12/19 18:29,"966 Center St, Portland, OR 97035" -196146,20in Monitor,1,109.99,05/05/19 17:26,"7 Main St, San Francisco, CA 94016" -196147,AAA Batteries (4-pack),1,2.99,05/08/19 21:21,"719 Pine St, Boston, MA 02215" -196148,USB-C Charging Cable,2,11.95,05/27/19 03:02,"752 Church St, San Francisco, CA 94016" -196149,USB-C Charging Cable,1,11.95,05/19/19 16:15,"154 Lakeview St, Atlanta, GA 30301" -196150,USB-C Charging Cable,1,11.95,05/04/19 15:17,"595 Spruce St, Dallas, TX 75001" -196151,LG Dryer,1,600.0,05/24/19 11:43,"2 5th St, Los Angeles, CA 90001" -196152,Bose SoundSport Headphones,1,99.99,05/16/19 16:11,"240 5th St, Dallas, TX 75001" -196153,USB-C Charging Cable,1,11.95,05/06/19 19:48,"889 Dogwood St, Dallas, TX 75001" -196154,AA Batteries (4-pack),1,3.84,05/11/19 21:16,"956 1st St, San Francisco, CA 94016" -196155,USB-C Charging Cable,1,11.95,05/14/19 09:50,"986 Main St, Los Angeles, CA 90001" -196156,AAA Batteries (4-pack),1,2.99,05/19/19 09:27,"102 Church St, Seattle, WA 98101" -196157,27in FHD Monitor,1,149.99,05/12/19 22:22,"901 Pine St, New York City, NY 10001" -196158,Apple Airpods Headphones,1,150,05/21/19 22:45,"784 5th St, Boston, MA 02215" -196159,AAA Batteries (4-pack),1,2.99,05/10/19 07:59,"529 Hill St, San Francisco, CA 94016" -196160,AA Batteries (4-pack),1,3.84,05/19/19 13:27,"700 Church St, Los Angeles, CA 90001" -196161,Apple Airpods Headphones,1,150,05/31/19 08:05,"403 River St, Los Angeles, CA 90001" -196162,Bose SoundSport Headphones,1,99.99,05/05/19 10:26,"283 4th St, San Francisco, CA 94016" -196163,AA Batteries (4-pack),2,3.84,05/29/19 11:49,"912 Madison St, Seattle, WA 98101" -196164,Lightning Charging Cable,1,14.95,05/22/19 11:34,"8 Madison St, Boston, MA 02215" -196165,Google Phone,1,600,05/07/19 23:19,"107 Highland St, San Francisco, CA 94016" -196165,USB-C Charging Cable,1,11.95,05/07/19 23:19,"107 Highland St, San Francisco, CA 94016" -196166,Lightning Charging Cable,1,14.95,05/19/19 16:50,"326 Hickory St, Boston, MA 02215" -196167,USB-C Charging Cable,1,11.95,05/20/19 18:00,"536 Willow St, San Francisco, CA 94016" -196168,USB-C Charging Cable,1,11.95,05/27/19 16:32,"870 Lakeview St, New York City, NY 10001" -196169,USB-C Charging Cable,1,11.95,05/16/19 18:49,"734 14th St, Boston, MA 02215" -196170,USB-C Charging Cable,1,11.95,05/23/19 20:21,"667 Jefferson St, Atlanta, GA 30301" -196171,Lightning Charging Cable,1,14.95,05/06/19 21:02,"179 Main St, Atlanta, GA 30301" -196172,AAA Batteries (4-pack),2,2.99,05/26/19 15:05,"508 River St, Austin, TX 73301" -196173,AA Batteries (4-pack),1,3.84,05/21/19 15:31,"426 Hill St, Dallas, TX 75001" -196174,34in Ultrawide Monitor,1,379.99,05/29/19 17:01,"758 5th St, Los Angeles, CA 90001" -196175,Wired Headphones,1,11.99,05/02/19 08:06,"176 Meadow St, San Francisco, CA 94016" -196176,AAA Batteries (4-pack),1,2.99,05/23/19 23:51,"680 2nd St, Portland, OR 97035" -196177,Lightning Charging Cable,1,14.95,05/16/19 13:23,"882 Forest St, New York City, NY 10001" -196178,Wired Headphones,1,11.99,05/13/19 12:08,"765 Walnut St, Dallas, TX 75001" -196179,AA Batteries (4-pack),1,3.84,05/03/19 18:10,"373 Highland St, Austin, TX 73301" -196180,AA Batteries (4-pack),1,3.84,05/23/19 00:30,"283 11th St, Los Angeles, CA 90001" -196181,AA Batteries (4-pack),1,3.84,05/26/19 10:14,"400 4th St, Los Angeles, CA 90001" -196182,Apple Airpods Headphones,1,150,05/21/19 20:02,"645 Forest St, New York City, NY 10001" -196183,Apple Airpods Headphones,1,150,05/04/19 23:45,"155 Lincoln St, Portland, OR 97035" -196184,USB-C Charging Cable,1,11.95,05/27/19 14:29,"895 7th St, Seattle, WA 98101" -196185,ThinkPad Laptop,1,999.99,05/05/19 10:43,"43 Cherry St, San Francisco, CA 94016" -196186,27in 4K Gaming Monitor,1,389.99,05/30/19 19:35,"607 Highland St, New York City, NY 10001" -196187,AAA Batteries (4-pack),1,2.99,05/13/19 08:24,"215 12th St, Los Angeles, CA 90001" -196188,USB-C Charging Cable,1,11.95,05/23/19 19:24,"445 Elm St, San Francisco, CA 94016" -196189,LG Washing Machine,1,600.0,05/30/19 13:48,"894 10th St, Los Angeles, CA 90001" -196190,AAA Batteries (4-pack),2,2.99,05/26/19 10:46,"167 Elm St, Austin, TX 73301" -196191,AA Batteries (4-pack),2,3.84,05/26/19 10:58,"335 Lakeview St, Los Angeles, CA 90001" -196192,iPhone,1,700,05/09/19 16:24,"240 Main St, New York City, NY 10001" -196193,USB-C Charging Cable,1,11.95,05/08/19 20:40,"698 Church St, Boston, MA 02215" -196194,27in 4K Gaming Monitor,1,389.99,05/21/19 13:54,"605 Adams St, New York City, NY 10001" -196195,AA Batteries (4-pack),1,3.84,05/25/19 15:00,"573 Elm St, San Francisco, CA 94016" -196196,20in Monitor,1,109.99,05/28/19 22:49,"614 Lake St, San Francisco, CA 94016" -196197,Lightning Charging Cable,1,14.95,05/03/19 18:47,"657 Center St, Boston, MA 02215" -196198,Apple Airpods Headphones,1,150,05/02/19 18:35,"916 10th St, San Francisco, CA 94016" -196199,AA Batteries (4-pack),1,3.84,05/29/19 16:46,"822 Forest St, San Francisco, CA 94016" -196200,Apple Airpods Headphones,1,150,05/13/19 22:57,"848 Maple St, Los Angeles, CA 90001" -196201,USB-C Charging Cable,1,11.95,05/26/19 18:46,"52 Adams St, San Francisco, CA 94016" -196202,27in FHD Monitor,1,149.99,05/27/19 17:02,"744 8th St, Atlanta, GA 30301" -196203,Google Phone,1,600,05/22/19 11:09,"542 Jefferson St, New York City, NY 10001" -196204,Wired Headphones,1,11.99,05/31/19 11:25,"18 13th St, New York City, NY 10001" -196205,Lightning Charging Cable,1,14.95,05/22/19 19:41,"532 Center St, Atlanta, GA 30301" -196206,AA Batteries (4-pack),1,3.84,05/09/19 10:36,"393 Maple St, Boston, MA 02215" -196207,Bose SoundSport Headphones,1,99.99,05/21/19 23:55,"241 Johnson St, Los Angeles, CA 90001" -196208,Lightning Charging Cable,1,14.95,05/20/19 19:19,"563 Main St, Atlanta, GA 30301" -196209,Bose SoundSport Headphones,1,99.99,05/17/19 13:19,"537 Spruce St, Dallas, TX 75001" -196210,iPhone,1,700,05/07/19 18:45,"634 6th St, Los Angeles, CA 90001" -196211,Apple Airpods Headphones,1,150,05/18/19 07:30,"247 6th St, Austin, TX 73301" -196212,AA Batteries (4-pack),1,3.84,05/12/19 15:52,"804 Sunset St, San Francisco, CA 94016" -196213,20in Monitor,1,109.99,05/17/19 10:01,"98 9th St, New York City, NY 10001" -196214,AAA Batteries (4-pack),1,2.99,05/10/19 22:11,"996 14th St, San Francisco, CA 94016" -196215,AA Batteries (4-pack),1,3.84,05/09/19 15:07,"778 River St, Los Angeles, CA 90001" -196216,USB-C Charging Cable,1,11.95,05/20/19 15:40,"874 Main St, San Francisco, CA 94016" -196217,AA Batteries (4-pack),1,3.84,05/28/19 19:23,"420 Johnson St, Atlanta, GA 30301" -196218,USB-C Charging Cable,1,11.95,05/19/19 13:05,"681 Lake St, San Francisco, CA 94016" -196219,AAA Batteries (4-pack),2,2.99,05/14/19 10:46,"564 Chestnut St, Los Angeles, CA 90001" -196220,Apple Airpods Headphones,1,150,05/03/19 13:00,"654 Chestnut St, Boston, MA 02215" -196221,Bose SoundSport Headphones,1,99.99,05/23/19 12:34,"735 Madison St, Dallas, TX 75001" -196222,Lightning Charging Cable,1,14.95,05/08/19 09:06,"135 Johnson St, San Francisco, CA 94016" -196223,Wired Headphones,1,11.99,05/16/19 11:56,"546 7th St, San Francisco, CA 94016" -196224,AA Batteries (4-pack),1,3.84,05/25/19 22:35,"606 Washington St, New York City, NY 10001" -196225,USB-C Charging Cable,1,11.95,05/21/19 18:30,"210 10th St, Los Angeles, CA 90001" -196226,34in Ultrawide Monitor,1,379.99,05/21/19 18:37,"179 Church St, Portland, OR 97035" -196227,Lightning Charging Cable,2,14.95,05/23/19 09:40,"373 11th St, Atlanta, GA 30301" -196228,iPhone,1,700,05/19/19 09:02,"370 13th St, New York City, NY 10001" -196229,AA Batteries (4-pack),1,3.84,05/21/19 23:46,"531 Meadow St, San Francisco, CA 94016" -196230,27in 4K Gaming Monitor,1,389.99,05/02/19 12:29,"937 Chestnut St, Seattle, WA 98101" -196231,Lightning Charging Cable,1,14.95,05/17/19 13:14,"89 Hill St, Dallas, TX 75001" -196232,Wired Headphones,1,11.99,05/25/19 17:11,"330 Church St, Dallas, TX 75001" -196233,AA Batteries (4-pack),1,3.84,05/13/19 17:17,"79 10th St, San Francisco, CA 94016" -196234,Bose SoundSport Headphones,1,99.99,05/12/19 08:50,"442 Church St, Boston, MA 02215" -196235,Wired Headphones,1,11.99,05/18/19 08:30,"841 1st St, Boston, MA 02215" -196236,AA Batteries (4-pack),2,3.84,05/13/19 14:13,"59 Ridge St, Boston, MA 02215" -196237,Wired Headphones,1,11.99,05/14/19 13:39,"97 Washington St, Los Angeles, CA 90001" -196238,AA Batteries (4-pack),1,3.84,05/05/19 17:01,"356 11th St, San Francisco, CA 94016" -196239,Wired Headphones,1,11.99,05/05/19 18:28,"112 Johnson St, Seattle, WA 98101" -196240,Lightning Charging Cable,1,14.95,05/02/19 13:47,"597 Wilson St, Boston, MA 02215" -196241,AAA Batteries (4-pack),3,2.99,05/20/19 18:04,"399 North St, Boston, MA 02215" -196242,AAA Batteries (4-pack),1,2.99,05/16/19 18:49,"308 Washington St, San Francisco, CA 94016" -196243,Lightning Charging Cable,1,14.95,05/10/19 12:30,"137 8th St, Los Angeles, CA 90001" -196244,AAA Batteries (4-pack),1,2.99,05/06/19 22:57,"843 Forest St, Dallas, TX 75001" -196245,AA Batteries (4-pack),1,3.84,05/01/19 12:54,"247 8th St, San Francisco, CA 94016" -196246,USB-C Charging Cable,1,11.95,05/11/19 20:38,"243 10th St, San Francisco, CA 94016" -196247,Wired Headphones,1,11.99,05/20/19 21:08,"336 Wilson St, Los Angeles, CA 90001" -196248,Lightning Charging Cable,1,14.95,05/25/19 10:44,"365 Sunset St, San Francisco, CA 94016" -196249,Lightning Charging Cable,1,14.95,05/04/19 19:18,"489 14th St, San Francisco, CA 94016" -196250,Wired Headphones,1,11.99,05/26/19 14:10,"370 2nd St, San Francisco, CA 94016" -196251,Apple Airpods Headphones,1,150,05/25/19 22:01,"723 Johnson St, Dallas, TX 75001" -196252,USB-C Charging Cable,1,11.95,05/25/19 23:21,"562 South St, Atlanta, GA 30301" -196253,AAA Batteries (4-pack),1,2.99,05/01/19 13:16,"730 1st St, San Francisco, CA 94016" -196254,Google Phone,1,600,05/28/19 09:21,"575 8th St, Los Angeles, CA 90001" -196255,Bose SoundSport Headphones,1,99.99,05/20/19 10:49,"544 Dogwood St, San Francisco, CA 94016" -196256,AAA Batteries (4-pack),3,2.99,05/17/19 17:40,"108 11th St, San Francisco, CA 94016" -196257,27in FHD Monitor,1,149.99,05/14/19 14:02,"773 Cedar St, San Francisco, CA 94016" -196258,AAA Batteries (4-pack),1,2.99,05/12/19 17:19,"940 12th St, Boston, MA 02215" -196259,34in Ultrawide Monitor,1,379.99,05/29/19 17:40,"425 Highland St, Seattle, WA 98101" -196260,AA Batteries (4-pack),2,3.84,05/29/19 15:51,"422 8th St, San Francisco, CA 94016" -196260,Wired Headphones,1,11.99,05/29/19 15:51,"422 8th St, San Francisco, CA 94016" -196261,AAA Batteries (4-pack),1,2.99,05/01/19 11:21,"597 9th St, San Francisco, CA 94016" -196262,Apple Airpods Headphones,1,150,05/04/19 16:22,"482 Lincoln St, New York City, NY 10001" -196263,AAA Batteries (4-pack),1,2.99,05/07/19 10:59,"805 Walnut St, Atlanta, GA 30301" -196264,USB-C Charging Cable,1,11.95,05/21/19 19:41,"923 Main St, Los Angeles, CA 90001" -196265,AAA Batteries (4-pack),2,2.99,05/11/19 21:27,"402 Wilson St, Los Angeles, CA 90001" -196266,USB-C Charging Cable,1,11.95,05/07/19 19:32,"325 Adams St, Atlanta, GA 30301" -196267,Bose SoundSport Headphones,1,99.99,05/08/19 22:15,"663 4th St, Los Angeles, CA 90001" -196268,AAA Batteries (4-pack),2,2.99,05/11/19 02:17,"743 12th St, San Francisco, CA 94016" -196269,USB-C Charging Cable,1,11.95,05/30/19 12:47,"93 Hill St, New York City, NY 10001" -196270,34in Ultrawide Monitor,1,379.99,05/20/19 14:45,"925 Hill St, New York City, NY 10001" -196271,iPhone,1,700,05/09/19 21:24,"619 Hill St, Portland, OR 97035" -196272,Apple Airpods Headphones,1,150,05/14/19 19:43,"524 Sunset St, Atlanta, GA 30301" -196273,20in Monitor,1,109.99,05/11/19 10:39,"563 Jefferson St, San Francisco, CA 94016" -196274,20in Monitor,1,109.99,05/01/19 09:37,"784 South St, San Francisco, CA 94016" -196275,AA Batteries (4-pack),1,3.84,05/14/19 09:31,"865 Hill St, Boston, MA 02215" -196276,34in Ultrawide Monitor,1,379.99,05/16/19 00:28,"171 Cherry St, Austin, TX 73301" -196277,Lightning Charging Cable,1,14.95,05/13/19 20:36,"866 13th St, Boston, MA 02215" -196278,AAA Batteries (4-pack),1,2.99,05/04/19 12:24,"201 10th St, San Francisco, CA 94016" -196279,Bose SoundSport Headphones,1,99.99,05/03/19 11:43,"210 Jackson St, Portland, ME 04101" -196280,AAA Batteries (4-pack),2,2.99,05/19/19 15:57,"781 14th St, San Francisco, CA 94016" -196281,USB-C Charging Cable,1,11.95,05/10/19 23:21,"227 Church St, Boston, MA 02215" -196282,AAA Batteries (4-pack),1,2.99,05/19/19 17:52,"533 Ridge St, Atlanta, GA 30301" -196283,Wired Headphones,1,11.99,05/31/19 11:07,"731 Hill St, Boston, MA 02215" -196284,Lightning Charging Cable,1,14.95,05/15/19 11:02,"828 South St, Los Angeles, CA 90001" -196285,Lightning Charging Cable,1,14.95,05/17/19 19:31,"122 Washington St, Boston, MA 02215" -196286,AA Batteries (4-pack),1,3.84,05/15/19 09:49,"365 Chestnut St, San Francisco, CA 94016" -196287,iPhone,1,700,05/17/19 09:50,"827 8th St, San Francisco, CA 94016" -196288,27in 4K Gaming Monitor,1,389.99,05/09/19 07:28,"318 12th St, Atlanta, GA 30301" -196289,AAA Batteries (4-pack),2,2.99,05/07/19 11:10,"297 Dogwood St, Dallas, TX 75001" -196290,USB-C Charging Cable,1,11.95,05/03/19 19:24,"169 5th St, Atlanta, GA 30301" -196291,Wired Headphones,1,11.99,05/12/19 16:11,"444 North St, San Francisco, CA 94016" -196292,iPhone,1,700,05/07/19 10:08,"530 5th St, Boston, MA 02215" -196293,AA Batteries (4-pack),1,3.84,05/15/19 14:21,"984 12th St, Los Angeles, CA 90001" -196294,USB-C Charging Cable,2,11.95,05/12/19 18:28,"658 Spruce St, San Francisco, CA 94016" -196295,iPhone,1,700,05/02/19 10:14,"485 Center St, San Francisco, CA 94016" -196296,27in FHD Monitor,1,149.99,05/29/19 12:29,"731 Spruce St, Boston, MA 02215" -196297,AA Batteries (4-pack),1,3.84,05/24/19 22:04,"86 Highland St, San Francisco, CA 94016" -196298,Bose SoundSport Headphones,1,99.99,05/16/19 21:04,"380 Main St, Boston, MA 02215" -196299,AAA Batteries (4-pack),1,2.99,05/04/19 08:02,"191 Lakeview St, Seattle, WA 98101" -196300,iPhone,1,700,05/01/19 19:27,"131 10th St, San Francisco, CA 94016" -196301,Lightning Charging Cable,1,14.95,05/21/19 12:00,"595 Center St, San Francisco, CA 94016" -196302,AA Batteries (4-pack),1,3.84,05/21/19 12:03,"732 Washington St, San Francisco, CA 94016" -196303,Wired Headphones,1,11.99,05/20/19 13:24,"902 Wilson St, New York City, NY 10001" -196304,Wired Headphones,1,11.99,05/15/19 15:10,"480 10th St, Los Angeles, CA 90001" -196305,Wired Headphones,2,11.99,05/31/19 16:04,"569 Center St, New York City, NY 10001" -196306,AAA Batteries (4-pack),3,2.99,05/05/19 01:10,"1 Adams St, San Francisco, CA 94016" -196307,AA Batteries (4-pack),1,3.84,05/24/19 11:06,"583 Hill St, San Francisco, CA 94016" -196308,AA Batteries (4-pack),1,3.84,05/10/19 09:18,"356 South St, Portland, OR 97035" -196309,34in Ultrawide Monitor,1,379.99,05/23/19 19:54,"831 Lincoln St, San Francisco, CA 94016" -196310,AA Batteries (4-pack),1,3.84,05/01/19 19:48,"51 Hickory St, San Francisco, CA 94016" -196311,Google Phone,1,600,05/25/19 13:15,"413 13th St, Portland, OR 97035" -196311,Wired Headphones,1,11.99,05/25/19 13:15,"413 13th St, Portland, OR 97035" -196312,Lightning Charging Cable,1,14.95,05/04/19 14:08,"290 Walnut St, Boston, MA 02215" -196313,Apple Airpods Headphones,1,150,05/18/19 10:01,"299 Lincoln St, Portland, OR 97035" -196314,Google Phone,1,600,05/13/19 10:40,"512 Lakeview St, Los Angeles, CA 90001" -196315,AA Batteries (4-pack),1,3.84,05/06/19 17:52,"895 South St, Austin, TX 73301" -196316,AAA Batteries (4-pack),1,2.99,05/31/19 11:07,"54 Johnson St, Los Angeles, CA 90001" -196317,Wired Headphones,1,11.99,05/23/19 21:06,"663 Highland St, Austin, TX 73301" -196318,Google Phone,1,600,05/17/19 14:36,"729 Dogwood St, Seattle, WA 98101" -196319,AA Batteries (4-pack),2,3.84,05/04/19 12:13,"926 Cedar St, Portland, ME 04101" -196320,Lightning Charging Cable,1,14.95,05/26/19 18:34,"432 Johnson St, Seattle, WA 98101" -196321,Apple Airpods Headphones,1,150,05/01/19 23:30,"370 Jefferson St, New York City, NY 10001" -196322,AA Batteries (4-pack),1,3.84,05/05/19 09:33,"210 Jefferson St, San Francisco, CA 94016" -196323,Bose SoundSport Headphones,1,99.99,05/06/19 09:16,"544 Main St, Los Angeles, CA 90001" -196324,USB-C Charging Cable,1,11.95,05/24/19 01:40,"96 2nd St, San Francisco, CA 94016" -196325,Apple Airpods Headphones,1,150,05/19/19 00:30,"606 Sunset St, Atlanta, GA 30301" -196326,AAA Batteries (4-pack),1,2.99,05/01/19 07:14,"369 Main St, San Francisco, CA 94016" -196327,Google Phone,1,600,05/13/19 14:08,"793 River St, Portland, OR 97035" -196327,Wired Headphones,1,11.99,05/13/19 14:08,"793 River St, Portland, OR 97035" -196328,27in FHD Monitor,1,149.99,05/15/19 10:46,"706 Chestnut St, New York City, NY 10001" -196329,Bose SoundSport Headphones,1,99.99,05/17/19 21:52,"680 10th St, Seattle, WA 98101" -196330,27in FHD Monitor,1,149.99,05/12/19 19:49,"277 River St, Atlanta, GA 30301" -196331,AA Batteries (4-pack),1,3.84,05/17/19 15:22,"862 14th St, San Francisco, CA 94016" -196332,iPhone,1,700,05/11/19 10:04,"653 Cherry St, Austin, TX 73301" -196333,AA Batteries (4-pack),2,3.84,05/16/19 20:09,"692 Adams St, Austin, TX 73301" -196334,AAA Batteries (4-pack),1,2.99,05/24/19 20:46,"58 Forest St, San Francisco, CA 94016" -196335,Apple Airpods Headphones,1,150,05/16/19 09:10,"264 Elm St, Seattle, WA 98101" -196336,AAA Batteries (4-pack),1,2.99,05/30/19 19:25,"753 6th St, San Francisco, CA 94016" -196337,Wired Headphones,1,11.99,05/20/19 19:54,"15 2nd St, New York City, NY 10001" -196338,AA Batteries (4-pack),1,3.84,05/30/19 11:19,"732 Meadow St, Austin, TX 73301" -196339,Bose SoundSport Headphones,1,99.99,05/01/19 18:00,"159 12th St, Los Angeles, CA 90001" -196340,AAA Batteries (4-pack),2,2.99,05/22/19 21:45,"795 Hickory St, Atlanta, GA 30301" -196341,USB-C Charging Cable,1,11.95,05/09/19 12:55,"136 Meadow St, San Francisco, CA 94016" -196342,Wired Headphones,1,11.99,05/06/19 15:32,"242 13th St, Boston, MA 02215" -196343,Wired Headphones,1,11.99,05/10/19 19:07,"165 Sunset St, Atlanta, GA 30301" -196344,Wired Headphones,1,11.99,05/21/19 22:11,"369 River St, Dallas, TX 75001" -196345,AA Batteries (4-pack),1,3.84,05/12/19 17:28,"319 11th St, Boston, MA 02215" -196346,AA Batteries (4-pack),1,3.84,05/15/19 21:12,"861 Forest St, San Francisco, CA 94016" -196347,USB-C Charging Cable,1,11.95,05/12/19 18:51,"732 Cedar St, Seattle, WA 98101" -196348,34in Ultrawide Monitor,1,379.99,05/25/19 11:31,"825 Elm St, San Francisco, CA 94016" -196349,27in FHD Monitor,1,149.99,05/01/19 13:16,"172 Pine St, New York City, NY 10001" -196350,AAA Batteries (4-pack),1,2.99,05/17/19 11:09,"234 Hill St, San Francisco, CA 94016" -196351,USB-C Charging Cable,1,11.95,05/17/19 16:40,"766 Washington St, Portland, OR 97035" -196352,USB-C Charging Cable,1,11.95,05/02/19 14:51,"162 Cedar St, Atlanta, GA 30301" -196353,AAA Batteries (4-pack),1,2.99,05/03/19 09:11,"725 Hickory St, San Francisco, CA 94016" -196354,Wired Headphones,1,11.99,05/17/19 12:47,"690 Johnson St, New York City, NY 10001" -196355,20in Monitor,1,109.99,05/29/19 20:31,"719 Adams St, Atlanta, GA 30301" -196356,Apple Airpods Headphones,1,150,05/14/19 07:55,"432 Park St, Los Angeles, CA 90001" -196357,Apple Airpods Headphones,1,150,05/08/19 12:56,"987 10th St, Dallas, TX 75001" -196358,Wired Headphones,1,11.99,05/23/19 18:42,"165 5th St, San Francisco, CA 94016" -196359,Wired Headphones,2,11.99,05/01/19 10:19,"336 5th St, Dallas, TX 75001" -196360,Wired Headphones,1,11.99,05/22/19 12:18,"984 Lincoln St, Los Angeles, CA 90001" -196361,AAA Batteries (4-pack),2,2.99,05/17/19 19:44,"60 Madison St, New York City, NY 10001" -196362,Apple Airpods Headphones,1,150,05/29/19 23:54,"386 Center St, San Francisco, CA 94016" -196363,USB-C Charging Cable,2,11.95,05/26/19 13:46,"350 Highland St, San Francisco, CA 94016" -196364,Wired Headphones,1,11.99,05/29/19 01:24,"534 Jefferson St, San Francisco, CA 94016" -196365,Lightning Charging Cable,1,14.95,05/15/19 20:57,"725 Walnut St, Boston, MA 02215" -196366,USB-C Charging Cable,1,11.95,05/13/19 16:50,"266 Ridge St, Boston, MA 02215" -196367,USB-C Charging Cable,1,11.95,05/22/19 12:32,"655 Chestnut St, Portland, OR 97035" -196368,Google Phone,1,600,05/17/19 16:14,"446 Park St, Atlanta, GA 30301" -196368,Bose SoundSport Headphones,1,99.99,05/17/19 16:14,"446 Park St, Atlanta, GA 30301" -196369,Lightning Charging Cable,1,14.95,05/07/19 11:33,"971 Adams St, Atlanta, GA 30301" -196370,USB-C Charging Cable,1,11.95,05/09/19 08:29,"285 2nd St, Dallas, TX 75001" -196371,Apple Airpods Headphones,1,150,05/07/19 07:49,"653 Highland St, Boston, MA 02215" -196372,Apple Airpods Headphones,1,150,05/10/19 13:03,"514 Highland St, Boston, MA 02215" -196373,Apple Airpods Headphones,1,150,05/17/19 10:30,"597 14th St, San Francisco, CA 94016" -196374,AA Batteries (4-pack),1,3.84,05/29/19 10:58,"386 Jefferson St, Portland, ME 04101" -196375,LG Washing Machine,1,600.0,05/28/19 07:12,"400 Ridge St, Los Angeles, CA 90001" -,,,,, -196376,Lightning Charging Cable,1,14.95,05/21/19 11:52,"908 4th St, Boston, MA 02215" -196377,Flatscreen TV,1,300,05/30/19 20:27,"50 Walnut St, New York City, NY 10001" -196378,AAA Batteries (4-pack),4,2.99,05/20/19 21:01,"671 Hill St, San Francisco, CA 94016" -196379,27in FHD Monitor,1,149.99,05/19/19 12:36,"687 Maple St, New York City, NY 10001" -196380,Wired Headphones,1,11.99,05/02/19 15:05,"268 Hickory St, Los Angeles, CA 90001" -196381,AA Batteries (4-pack),1,3.84,05/27/19 14:09,"44 Chestnut St, Atlanta, GA 30301" -196382,AA Batteries (4-pack),1,3.84,05/30/19 22:05,"594 Lake St, Boston, MA 02215" -196383,27in FHD Monitor,1,149.99,05/23/19 15:11,"338 13th St, San Francisco, CA 94016" -196384,AA Batteries (4-pack),1,3.84,05/05/19 14:43,"770 7th St, San Francisco, CA 94016" -196385,Lightning Charging Cable,1,14.95,05/25/19 07:21,"868 11th St, Austin, TX 73301" -196386,USB-C Charging Cable,1,11.95,05/26/19 12:31,"692 Adams St, Dallas, TX 75001" -196386,34in Ultrawide Monitor,1,379.99,05/26/19 12:31,"692 Adams St, Dallas, TX 75001" -196387,27in FHD Monitor,1,149.99,05/19/19 18:07,"951 1st St, San Francisco, CA 94016" -196388,27in FHD Monitor,1,149.99,05/25/19 11:27,"831 Hickory St, San Francisco, CA 94016" -196389,AAA Batteries (4-pack),3,2.99,05/01/19 20:52,"759 North St, Dallas, TX 75001" -196390,Lightning Charging Cable,1,14.95,05/31/19 12:01,"874 Main St, Seattle, WA 98101" -196391,27in FHD Monitor,1,149.99,05/25/19 16:57,"457 Spruce St, San Francisco, CA 94016" -196392,Lightning Charging Cable,3,14.95,05/07/19 21:52,"411 Park St, San Francisco, CA 94016" -196393,27in FHD Monitor,1,149.99,05/25/19 16:21,"965 Park St, San Francisco, CA 94016" -196394,Bose SoundSport Headphones,1,99.99,05/22/19 14:20,"980 Maple St, Los Angeles, CA 90001" -196395,Google Phone,1,600,05/24/19 16:36,"391 Ridge St, Los Angeles, CA 90001" -196395,USB-C Charging Cable,1,11.95,05/24/19 16:36,"391 Ridge St, Los Angeles, CA 90001" -196396,Google Phone,1,600,05/27/19 14:22,"233 Chestnut St, Dallas, TX 75001" -196397,Apple Airpods Headphones,1,150,05/27/19 10:31,"563 12th St, Portland, ME 04101" -196398,Lightning Charging Cable,1,14.95,05/22/19 18:45,"449 Forest St, San Francisco, CA 94016" -196399,27in FHD Monitor,1,149.99,05/12/19 14:41,"324 6th St, Seattle, WA 98101" -196400,USB-C Charging Cable,1,11.95,05/07/19 06:01,"757 Chestnut St, Boston, MA 02215" -196401,Apple Airpods Headphones,1,150,05/18/19 09:52,"85 7th St, New York City, NY 10001" -196402,Lightning Charging Cable,1,14.95,05/28/19 14:12,"240 2nd St, New York City, NY 10001" -196403,Apple Airpods Headphones,1,150,05/04/19 12:03,"590 Main St, San Francisco, CA 94016" -196404,USB-C Charging Cable,1,11.95,05/15/19 10:17,"370 Center St, Boston, MA 02215" -196405,USB-C Charging Cable,1,11.95,05/27/19 00:31,"44 Park St, New York City, NY 10001" -196406,USB-C Charging Cable,1,11.95,05/10/19 09:21,"681 4th St, Los Angeles, CA 90001" -196407,Lightning Charging Cable,1,14.95,05/02/19 10:58,"837 Cedar St, San Francisco, CA 94016" -196408,Wired Headphones,1,11.99,05/09/19 21:59,"711 Wilson St, San Francisco, CA 94016" -196409,Apple Airpods Headphones,1,150,05/16/19 13:00,"110 Wilson St, Boston, MA 02215" -196410,Wired Headphones,2,11.99,05/07/19 09:48,"680 Pine St, San Francisco, CA 94016" -196411,Lightning Charging Cable,1,14.95,05/24/19 11:37,"623 Sunset St, Boston, MA 02215" -196412,Apple Airpods Headphones,1,150,05/16/19 21:05,"212 Pine St, San Francisco, CA 94016" -196413,AAA Batteries (4-pack),3,2.99,05/22/19 18:03,"339 River St, Dallas, TX 75001" -196414,AA Batteries (4-pack),1,3.84,05/27/19 22:41,"506 Elm St, Seattle, WA 98101" -196415,Lightning Charging Cable,1,14.95,05/01/19 14:49,"32 Ridge St, Austin, TX 73301" -196416,Wired Headphones,1,11.99,05/31/19 09:16,"115 River St, Seattle, WA 98101" -196417,USB-C Charging Cable,1,11.95,05/13/19 16:26,"322 Lake St, San Francisco, CA 94016" -196418,AAA Batteries (4-pack),1,2.99,05/13/19 09:53,"152 Willow St, New York City, NY 10001" -196419,27in 4K Gaming Monitor,1,389.99,05/01/19 08:09,"628 Chestnut St, Seattle, WA 98101" -196420,AAA Batteries (4-pack),1,2.99,05/09/19 17:45,"10 Jackson St, Los Angeles, CA 90001" -196421,USB-C Charging Cable,1,11.95,05/27/19 14:05,"25 Willow St, Los Angeles, CA 90001" -196422,Apple Airpods Headphones,1,150,05/10/19 19:11,"541 7th St, Portland, OR 97035" -196423,AAA Batteries (4-pack),1,2.99,05/11/19 18:38,"135 10th St, Los Angeles, CA 90001" -196424,Lightning Charging Cable,1,14.95,05/21/19 12:09,"780 Cedar St, San Francisco, CA 94016" -196425,Bose SoundSport Headphones,1,99.99,05/04/19 17:31,"501 Hickory St, Los Angeles, CA 90001" -196426,Lightning Charging Cable,1,14.95,05/04/19 15:04,"630 Hill St, San Francisco, CA 94016" -196427,USB-C Charging Cable,1,11.95,05/23/19 14:01,"703 Willow St, San Francisco, CA 94016" -196428,USB-C Charging Cable,1,11.95,05/24/19 16:06,"318 Highland St, New York City, NY 10001" -196429,AAA Batteries (4-pack),1,2.99,05/30/19 17:30,"966 11th St, New York City, NY 10001" -196429,AAA Batteries (4-pack),1,2.99,05/30/19 17:30,"966 11th St, New York City, NY 10001" -196430,Apple Airpods Headphones,1,150,05/02/19 10:53,"903 12th St, Los Angeles, CA 90001" -196431,Apple Airpods Headphones,1,150,05/05/19 14:09,"317 West St, Portland, OR 97035" -196432,AAA Batteries (4-pack),1,2.99,05/25/19 10:50,"150 Hill St, Atlanta, GA 30301" -196433,Lightning Charging Cable,1,14.95,05/31/19 22:26,"80 10th St, Austin, TX 73301" -196434,Lightning Charging Cable,1,14.95,05/30/19 10:32,"967 13th St, Dallas, TX 75001" -196435,27in FHD Monitor,1,149.99,05/28/19 10:39,"710 Wilson St, San Francisco, CA 94016" -196436,AA Batteries (4-pack),3,3.84,05/13/19 16:47,"58 West St, New York City, NY 10001" -196437,Wired Headphones,1,11.99,05/25/19 18:31,"587 Spruce St, San Francisco, CA 94016" -196438,Lightning Charging Cable,2,14.95,05/11/19 18:13,"515 Spruce St, New York City, NY 10001" -196439,AA Batteries (4-pack),1,3.84,05/28/19 10:59,"572 14th St, San Francisco, CA 94016" -196440,Google Phone,1,600,05/29/19 19:08,"691 Wilson St, San Francisco, CA 94016" -196441,AAA Batteries (4-pack),1,2.99,05/01/19 19:18,"4 Spruce St, Los Angeles, CA 90001" -196442,USB-C Charging Cable,1,11.95,05/27/19 18:36,"240 13th St, Los Angeles, CA 90001" -196443,Apple Airpods Headphones,1,150,05/15/19 14:50,"847 11th St, San Francisco, CA 94016" -196444,AA Batteries (4-pack),2,3.84,05/13/19 17:23,"977 Ridge St, San Francisco, CA 94016" -196445,Lightning Charging Cable,1,14.95,05/11/19 10:45,"92 Meadow St, Atlanta, GA 30301" -196446,Wired Headphones,1,11.99,05/26/19 20:00,"758 Walnut St, Dallas, TX 75001" -196447,iPhone,1,700,05/12/19 13:24,"786 Cedar St, Seattle, WA 98101" -196447,Lightning Charging Cable,1,14.95,05/12/19 13:24,"786 Cedar St, Seattle, WA 98101" -196448,USB-C Charging Cable,1,11.95,05/17/19 10:07,"978 Pine St, Los Angeles, CA 90001" -196449,Bose SoundSport Headphones,1,99.99,05/29/19 14:47,"64 Forest St, San Francisco, CA 94016" -196450,Macbook Pro Laptop,1,1700,05/26/19 12:05,"318 Main St, Los Angeles, CA 90001" -196451,Apple Airpods Headphones,1,150,05/29/19 09:44,"790 Jackson St, New York City, NY 10001" -196452,USB-C Charging Cable,1,11.95,05/12/19 14:24,"651 8th St, San Francisco, CA 94016" -196453,AAA Batteries (4-pack),1,2.99,05/27/19 18:18,"398 Maple St, Atlanta, GA 30301" -196454,Lightning Charging Cable,1,14.95,05/16/19 15:13,"812 Willow St, Atlanta, GA 30301" -196455,Macbook Pro Laptop,1,1700,05/26/19 16:48,"566 Maple St, Los Angeles, CA 90001" -196456,Lightning Charging Cable,1,14.95,05/28/19 02:49,"576 Cherry St, San Francisco, CA 94016" -196457,Bose SoundSport Headphones,1,99.99,05/18/19 10:30,"597 8th St, Seattle, WA 98101" -196458,Apple Airpods Headphones,1,150,05/30/19 19:28,"780 Hill St, San Francisco, CA 94016" -196459,Wired Headphones,1,11.99,05/30/19 18:06,"118 North St, Boston, MA 02215" -196460,iPhone,1,700,05/23/19 07:45,"97 Sunset St, Dallas, TX 75001" -196461,iPhone,1,700,05/19/19 21:26,"297 8th St, New York City, NY 10001" -196462,Wired Headphones,1,11.99,05/04/19 21:47,"965 North St, New York City, NY 10001" -196463,Lightning Charging Cable,1,14.95,05/15/19 14:21,"854 Adams St, Portland, OR 97035" -196464,Wired Headphones,1,11.99,05/05/19 19:46,"787 Adams St, Dallas, TX 75001" -196465,Flatscreen TV,1,300,05/30/19 20:20,"467 Willow St, New York City, NY 10001" -196466,Lightning Charging Cable,1,14.95,05/31/19 06:25,"241 Spruce St, San Francisco, CA 94016" -196467,ThinkPad Laptop,1,999.99,05/30/19 01:23,"520 Cherry St, New York City, NY 10001" -196468,AAA Batteries (4-pack),1,2.99,05/28/19 21:11,"709 Main St, Boston, MA 02215" -196469,USB-C Charging Cable,1,11.95,05/10/19 21:04,"845 South St, Seattle, WA 98101" -196469,Wired Headphones,2,11.99,05/10/19 21:04,"845 South St, Seattle, WA 98101" -196470,AA Batteries (4-pack),2,3.84,05/02/19 16:40,"260 7th St, Los Angeles, CA 90001" -196471,27in FHD Monitor,1,149.99,05/04/19 18:07,"550 9th St, San Francisco, CA 94016" -196472,27in 4K Gaming Monitor,1,389.99,05/06/19 10:25,"31 Willow St, San Francisco, CA 94016" -196473,Lightning Charging Cable,1,14.95,05/28/19 22:33,"962 Hickory St, San Francisco, CA 94016" -196474,AAA Batteries (4-pack),1,2.99,05/18/19 00:29,"948 Cherry St, Los Angeles, CA 90001" -196475,Wired Headphones,1,11.99,05/11/19 21:30,"574 Lake St, Boston, MA 02215" -196476,AA Batteries (4-pack),2,3.84,05/05/19 21:02,"265 4th St, San Francisco, CA 94016" -196477,ThinkPad Laptop,1,999.99,05/10/19 14:16,"144 8th St, New York City, NY 10001" -196478,Wired Headphones,3,11.99,05/09/19 09:13,"193 Chestnut St, Dallas, TX 75001" -196478,ThinkPad Laptop,1,999.99,05/09/19 09:13,"193 Chestnut St, Dallas, TX 75001" -196479,Bose SoundSport Headphones,1,99.99,05/24/19 18:10,"868 Hickory St, Los Angeles, CA 90001" -196480,Vareebadd Phone,1,400,05/28/19 19:23,"196 Forest St, Boston, MA 02215" -196481,20in Monitor,1,109.99,05/21/19 23:59,"779 1st St, Los Angeles, CA 90001" -196482,Lightning Charging Cable,1,14.95,05/11/19 15:47,"117 South St, Boston, MA 02215" -196483,ThinkPad Laptop,1,999.99,05/09/19 08:46,"671 Main St, Dallas, TX 75001" -196484,USB-C Charging Cable,1,11.95,05/14/19 14:19,"961 Lakeview St, Atlanta, GA 30301" -196485,AAA Batteries (4-pack),1,2.99,05/04/19 12:45,"175 13th St, New York City, NY 10001" -196486,ThinkPad Laptop,1,999.99,05/31/19 14:07,"865 Jefferson St, San Francisco, CA 94016" -196487,Lightning Charging Cable,1,14.95,05/31/19 10:29,"168 Washington St, Seattle, WA 98101" -196488,Lightning Charging Cable,1,14.95,05/06/19 18:20,"168 Adams St, Portland, OR 97035" -196489,Wired Headphones,1,11.99,05/28/19 23:11,"932 Hill St, San Francisco, CA 94016" -196490,Wired Headphones,1,11.99,05/29/19 14:48,"302 Johnson St, Dallas, TX 75001" -196491,AA Batteries (4-pack),1,3.84,05/30/19 15:32,"53 Sunset St, Seattle, WA 98101" -196492,AAA Batteries (4-pack),4,2.99,05/17/19 12:12,"508 West St, Los Angeles, CA 90001" -196493,Lightning Charging Cable,1,14.95,05/01/19 18:10,"848 9th St, New York City, NY 10001" -196493,AAA Batteries (4-pack),1,2.99,05/01/19 18:10,"848 9th St, New York City, NY 10001" -196494,Lightning Charging Cable,1,14.95,05/24/19 22:07,"346 Lincoln St, New York City, NY 10001" -196495,Bose SoundSport Headphones,1,99.99,05/26/19 17:38,"769 Hill St, Los Angeles, CA 90001" -196496,Flatscreen TV,1,300,05/20/19 18:43,"369 11th St, Portland, OR 97035" -196497,Wired Headphones,1,11.99,05/27/19 13:30,"971 West St, Austin, TX 73301" -196498,Wired Headphones,1,11.99,05/28/19 15:19,"30 6th St, New York City, NY 10001" -196499,AA Batteries (4-pack),1,3.84,05/24/19 08:23,"556 Forest St, San Francisco, CA 94016" -196500,Macbook Pro Laptop,1,1700,05/10/19 18:33,"871 Church St, Portland, OR 97035" -196501,Lightning Charging Cable,1,14.95,05/01/19 13:25,"310 Lake St, San Francisco, CA 94016" -196502,AAA Batteries (4-pack),1,2.99,05/28/19 16:18,"968 Pine St, Atlanta, GA 30301" -196503,Wired Headphones,1,11.99,05/28/19 13:28,"366 Jackson St, San Francisco, CA 94016" -196504,20in Monitor,1,109.99,05/22/19 19:33,"539 Spruce St, Boston, MA 02215" -196505,USB-C Charging Cable,1,11.95,05/09/19 18:30,"353 Pine St, Seattle, WA 98101" -196506,34in Ultrawide Monitor,1,379.99,05/14/19 11:03,"129 Sunset St, Austin, TX 73301" -196507,27in 4K Gaming Monitor,1,389.99,05/01/19 18:05,"562 Jackson St, San Francisco, CA 94016" -196508,LG Dryer,1,600.0,05/08/19 15:39,"35 Meadow St, San Francisco, CA 94016" -196509,LG Dryer,1,600.0,05/07/19 14:19,"343 1st St, Dallas, TX 75001" -196510,Wired Headphones,1,11.99,05/11/19 17:38,"889 14th St, New York City, NY 10001" -196511,Lightning Charging Cable,1,14.95,05/20/19 13:38,"706 Lincoln St, Los Angeles, CA 90001" -196512,27in 4K Gaming Monitor,1,389.99,05/24/19 13:21,"548 2nd St, San Francisco, CA 94016" -196513,Apple Airpods Headphones,1,150,05/24/19 11:39,"746 12th St, New York City, NY 10001" -196514,AA Batteries (4-pack),1,3.84,05/23/19 18:11,"363 Sunset St, Seattle, WA 98101" -196515,Bose SoundSport Headphones,1,99.99,05/17/19 13:04,"582 7th St, San Francisco, CA 94016" -196516,27in FHD Monitor,1,149.99,05/18/19 15:41,"925 4th St, New York City, NY 10001" -196517,AA Batteries (4-pack),1,3.84,05/23/19 10:38,"288 North St, San Francisco, CA 94016" -196518,Macbook Pro Laptop,1,1700,05/31/19 09:47,"299 Ridge St, San Francisco, CA 94016" -196519,Apple Airpods Headphones,1,150,05/14/19 11:25,"246 7th St, New York City, NY 10001" -196520,AAA Batteries (4-pack),1,2.99,05/02/19 18:43,"91 13th St, Seattle, WA 98101" -196521,Bose SoundSport Headphones,1,99.99,05/31/19 19:29,"211 Hill St, San Francisco, CA 94016" -196522,Bose SoundSport Headphones,1,99.99,05/22/19 20:44,"983 Hickory St, San Francisco, CA 94016" -196523,iPhone,1,700,05/18/19 20:49,"12 Ridge St, San Francisco, CA 94016" -196524,USB-C Charging Cable,1,11.95,05/20/19 02:22,"106 2nd St, Los Angeles, CA 90001" -196525,ThinkPad Laptop,1,999.99,05/18/19 16:02,"269 6th St, Boston, MA 02215" -196526,Google Phone,1,600,05/29/19 19:24,"829 5th St, Boston, MA 02215" -196527,USB-C Charging Cable,1,11.95,05/02/19 09:11,"925 Lincoln St, Atlanta, GA 30301" -196528,USB-C Charging Cable,1,11.95,05/02/19 08:38,"882 Jefferson St, Boston, MA 02215" -196529,AAA Batteries (4-pack),1,2.99,05/20/19 02:14,"648 2nd St, San Francisco, CA 94016" -196530,34in Ultrawide Monitor,1,379.99,05/22/19 14:54,"64 4th St, Boston, MA 02215" -,,,,, -196531,AAA Batteries (4-pack),1,2.99,05/06/19 20:50,"269 Jackson St, Los Angeles, CA 90001" -196532,Macbook Pro Laptop,1,1700,05/11/19 12:37,"828 Lake St, Dallas, TX 75001" -196533,USB-C Charging Cable,1,11.95,05/21/19 19:58,"761 Madison St, Dallas, TX 75001" -,,,,, -196534,USB-C Charging Cable,1,11.95,05/02/19 18:55,"422 Park St, Seattle, WA 98101" -196535,AAA Batteries (4-pack),1,2.99,05/07/19 16:25,"541 1st St, Dallas, TX 75001" -196536,27in FHD Monitor,1,149.99,05/13/19 13:03,"214 Cedar St, Seattle, WA 98101" -196537,34in Ultrawide Monitor,1,379.99,05/28/19 20:50,"986 Park St, New York City, NY 10001" -196538,27in FHD Monitor,1,149.99,05/27/19 13:17,"954 11th St, Seattle, WA 98101" -196539,AA Batteries (4-pack),1,3.84,05/04/19 16:06,"630 1st St, Boston, MA 02215" -196540,Flatscreen TV,1,300,05/15/19 18:23,"800 11th St, Portland, OR 97035" -196541,USB-C Charging Cable,2,11.95,05/25/19 20:49,"961 2nd St, Atlanta, GA 30301" -196542,34in Ultrawide Monitor,1,379.99,05/18/19 18:59,"573 Walnut St, Los Angeles, CA 90001" -196543,USB-C Charging Cable,1,11.95,05/21/19 14:12,"446 River St, San Francisco, CA 94016" -196544,Wired Headphones,1,11.99,05/04/19 20:46,"178 Johnson St, Austin, TX 73301" -196545,Wired Headphones,1,11.99,05/19/19 13:40,"93 12th St, Seattle, WA 98101" -196546,Wired Headphones,1,11.99,05/23/19 02:44,"652 Cherry St, New York City, NY 10001" -196547,Macbook Pro Laptop,1,1700,05/18/19 12:40,"722 Elm St, Seattle, WA 98101" -196548,AA Batteries (4-pack),2,3.84,05/22/19 09:32,"127 7th St, Atlanta, GA 30301" -196549,USB-C Charging Cable,1,11.95,05/23/19 09:46,"237 Dogwood St, Seattle, WA 98101" -196550,AAA Batteries (4-pack),1,2.99,05/31/19 14:50,"60 Lakeview St, San Francisco, CA 94016" -196551,AA Batteries (4-pack),1,3.84,05/30/19 10:32,"426 Church St, San Francisco, CA 94016" -196552,27in 4K Gaming Monitor,1,389.99,05/20/19 08:47,"619 Dogwood St, New York City, NY 10001" -196553,27in 4K Gaming Monitor,1,389.99,05/23/19 19:03,"553 Jefferson St, Atlanta, GA 30301" -196554,Wired Headphones,1,11.99,05/27/19 17:12,"879 Wilson St, San Francisco, CA 94016" -196555,Apple Airpods Headphones,1,150,05/28/19 12:11,"518 Hickory St, Atlanta, GA 30301" -196556,USB-C Charging Cable,1,11.95,05/16/19 17:59,"110 River St, New York City, NY 10001" -196557,Bose SoundSport Headphones,1,99.99,05/05/19 18:59,"453 Hickory St, San Francisco, CA 94016" -196558,Lightning Charging Cable,1,14.95,05/10/19 13:09,"252 Walnut St, Dallas, TX 75001" -196559,Macbook Pro Laptop,1,1700,05/19/19 19:45,"589 9th St, Los Angeles, CA 90001" -196560,Flatscreen TV,1,300,05/18/19 17:02,"463 Main St, Boston, MA 02215" -196561,USB-C Charging Cable,1,11.95,05/03/19 12:51,"347 Lincoln St, New York City, NY 10001" -196562,AAA Batteries (4-pack),2,2.99,05/17/19 12:00,"834 Cherry St, Los Angeles, CA 90001" -196563,Wired Headphones,1,11.99,05/03/19 17:52,"104 Cedar St, Los Angeles, CA 90001" -196564,27in FHD Monitor,1,149.99,05/18/19 14:32,"898 5th St, Boston, MA 02215" -196565,Wired Headphones,1,11.99,05/02/19 19:12,"967 5th St, Dallas, TX 75001" -196566,AA Batteries (4-pack),1,3.84,05/21/19 21:11,"513 Adams St, Boston, MA 02215" -196567,Flatscreen TV,1,300,05/14/19 10:24,"480 6th St, Portland, ME 04101" -196568,20in Monitor,1,109.99,05/05/19 20:27,"84 10th St, Austin, TX 73301" -196569,Bose SoundSport Headphones,1,99.99,05/03/19 20:20,"231 Washington St, San Francisco, CA 94016" -196570,Macbook Pro Laptop,1,1700,05/09/19 20:44,"965 Adams St, Portland, ME 04101" -196571,Bose SoundSport Headphones,1,99.99,05/09/19 16:58,"295 Madison St, Seattle, WA 98101" -196572,iPhone,1,700,05/21/19 12:08,"43 2nd St, Seattle, WA 98101" -196573,Lightning Charging Cable,1,14.95,05/09/19 22:17,"368 Walnut St, San Francisco, CA 94016" -196574,27in 4K Gaming Monitor,1,389.99,05/18/19 18:05,"914 South St, Los Angeles, CA 90001" -196575,ThinkPad Laptop,1,999.99,05/04/19 10:48,"144 Lakeview St, Dallas, TX 75001" -196576,Apple Airpods Headphones,1,150,05/02/19 00:15,"425 5th St, Los Angeles, CA 90001" -196577,Apple Airpods Headphones,1,150,05/13/19 13:36,"398 10th St, Portland, ME 04101" -196578,Apple Airpods Headphones,1,150,05/09/19 13:01,"439 8th St, Boston, MA 02215" -196579,Lightning Charging Cable,2,14.95,05/26/19 21:52,"242 Johnson St, Los Angeles, CA 90001" -196580,iPhone,1,700,05/27/19 04:55,"429 Jackson St, San Francisco, CA 94016" -196581,AAA Batteries (4-pack),1,2.99,05/21/19 14:11,"68 Elm St, Austin, TX 73301" -196582,AAA Batteries (4-pack),3,2.99,05/23/19 20:55,"972 1st St, Dallas, TX 75001" -196583,Flatscreen TV,1,300,05/11/19 12:17,"401 Church St, San Francisco, CA 94016" -196584,iPhone,1,700,05/15/19 19:47,"500 Forest St, New York City, NY 10001" -196584,Wired Headphones,1,11.99,05/15/19 19:47,"500 Forest St, New York City, NY 10001" -196585,LG Dryer,1,600.0,05/06/19 00:22,"782 River St, Seattle, WA 98101" -196586,Bose SoundSport Headphones,1,99.99,05/01/19 14:02,"83 River St, New York City, NY 10001" -196587,Wired Headphones,1,11.99,05/19/19 13:01,"406 Ridge St, San Francisco, CA 94016" -196588,ThinkPad Laptop,1,999.99,05/26/19 09:14,"875 Dogwood St, Boston, MA 02215" -196589,AA Batteries (4-pack),1,3.84,05/06/19 14:08,"775 South St, Boston, MA 02215" -196590,20in Monitor,1,109.99,05/24/19 23:22,"988 12th St, San Francisco, CA 94016" -196591,AA Batteries (4-pack),1,3.84,05/02/19 15:01,"945 Cherry St, Austin, TX 73301" -196592,USB-C Charging Cable,1,11.95,05/30/19 22:10,"297 Adams St, New York City, NY 10001" -196593,USB-C Charging Cable,1,11.95,05/19/19 12:04,"154 Main St, San Francisco, CA 94016" -196594,34in Ultrawide Monitor,1,379.99,05/07/19 15:59,"327 Park St, New York City, NY 10001" -196595,AAA Batteries (4-pack),1,2.99,05/22/19 12:09,"794 River St, New York City, NY 10001" -196596,Bose SoundSport Headphones,1,99.99,05/10/19 09:51,"761 13th St, Seattle, WA 98101" -196597,Apple Airpods Headphones,1,150,05/23/19 10:26,"276 Sunset St, Seattle, WA 98101" -196598,ThinkPad Laptop,1,999.99,05/06/19 09:50,"393 Cedar St, Los Angeles, CA 90001" -196599,27in FHD Monitor,1,149.99,05/25/19 18:39,"280 14th St, Dallas, TX 75001" -196600,34in Ultrawide Monitor,1,379.99,05/14/19 00:31,"582 Lake St, Portland, OR 97035" -196601,AA Batteries (4-pack),1,3.84,05/25/19 15:24,"694 Sunset St, San Francisco, CA 94016" -196602,AAA Batteries (4-pack),3,2.99,05/29/19 19:17,"63 Ridge St, San Francisco, CA 94016" -196603,34in Ultrawide Monitor,1,379.99,05/05/19 21:02,"375 Main St, Los Angeles, CA 90001" -196604,Lightning Charging Cable,1,14.95,05/16/19 13:38,"941 Highland St, San Francisco, CA 94016" -196605,Macbook Pro Laptop,1,1700,05/11/19 22:19,"201 Park St, Boston, MA 02215" -196606,Lightning Charging Cable,1,14.95,05/19/19 06:34,"318 Main St, San Francisco, CA 94016" -196607,34in Ultrawide Monitor,1,379.99,05/15/19 17:48,"150 Lakeview St, Los Angeles, CA 90001" -196607,Lightning Charging Cable,1,14.95,05/15/19 17:48,"150 Lakeview St, Los Angeles, CA 90001" -196608,27in 4K Gaming Monitor,1,389.99,05/21/19 18:41,"803 Cedar St, Los Angeles, CA 90001" -196609,ThinkPad Laptop,1,999.99,05/26/19 15:40,"81 4th St, San Francisco, CA 94016" -196610,AAA Batteries (4-pack),1,2.99,05/02/19 19:22,"176 1st St, Portland, OR 97035" -196611,Wired Headphones,1,11.99,05/15/19 15:03,"383 Cedar St, Portland, OR 97035" -196612,USB-C Charging Cable,1,11.95,05/21/19 16:46,"512 2nd St, Los Angeles, CA 90001" -196613,27in 4K Gaming Monitor,1,389.99,05/11/19 08:18,"898 11th St, San Francisco, CA 94016" -196614,Lightning Charging Cable,1,14.95,05/17/19 22:30,"196 12th St, Los Angeles, CA 90001" -196615,Google Phone,1,600,05/08/19 19:29,"656 Spruce St, San Francisco, CA 94016" -196615,USB-C Charging Cable,1,11.95,05/08/19 19:29,"656 Spruce St, San Francisco, CA 94016" -196615,Bose SoundSport Headphones,1,99.99,05/08/19 19:29,"656 Spruce St, San Francisco, CA 94016" -196615,Wired Headphones,1,11.99,05/08/19 19:29,"656 Spruce St, San Francisco, CA 94016" -196616,Apple Airpods Headphones,1,150,05/22/19 11:39,"718 Main St, Atlanta, GA 30301" -196617,AA Batteries (4-pack),1,3.84,05/28/19 11:37,"575 10th St, Los Angeles, CA 90001" -196618,Wired Headphones,1,11.99,05/31/19 14:31,"735 South St, Atlanta, GA 30301" -196619,ThinkPad Laptop,1,999.99,05/10/19 20:52,"495 Main St, Los Angeles, CA 90001" -196620,USB-C Charging Cable,1,11.95,05/31/19 09:44,"270 Elm St, Portland, OR 97035" -196621,Apple Airpods Headphones,1,150,05/26/19 16:23,"501 Forest St, Atlanta, GA 30301" -196622,Apple Airpods Headphones,1,150,05/25/19 20:45,"752 Wilson St, Boston, MA 02215" -196623,Apple Airpods Headphones,1,150,05/11/19 20:43,"458 Lake St, Dallas, TX 75001" -196624,Apple Airpods Headphones,1,150,05/12/19 13:05,"231 10th St, San Francisco, CA 94016" -196625,Bose SoundSport Headphones,1,99.99,05/12/19 22:50,"207 Lakeview St, San Francisco, CA 94016" -196626,27in FHD Monitor,1,149.99,05/28/19 14:09,"121 13th St, Atlanta, GA 30301" -196627,Wired Headphones,1,11.99,05/31/19 11:50,"243 River St, San Francisco, CA 94016" -196628,LG Washing Machine,1,600.0,05/08/19 08:56,"990 5th St, Atlanta, GA 30301" -196629,iPhone,1,700,05/24/19 17:19,"569 4th St, San Francisco, CA 94016" -196630,AAA Batteries (4-pack),1,2.99,05/12/19 03:44,"41 7th St, Los Angeles, CA 90001" -196631,Flatscreen TV,1,300,05/29/19 14:53,"449 Spruce St, San Francisco, CA 94016" -196632,27in 4K Gaming Monitor,1,389.99,05/13/19 17:05,"969 7th St, Austin, TX 73301" -196633,Vareebadd Phone,1,400,05/15/19 20:28,"20 Lincoln St, New York City, NY 10001" -196634,Macbook Pro Laptop,1,1700,05/28/19 20:45,"865 12th St, Los Angeles, CA 90001" -196635,Wired Headphones,1,11.99,05/04/19 13:04,"49 Walnut St, Los Angeles, CA 90001" -196636,Wired Headphones,1,11.99,05/02/19 15:54,"845 Cherry St, Boston, MA 02215" -196637,Apple Airpods Headphones,1,150,05/19/19 07:33,"8 13th St, Los Angeles, CA 90001" -196638,Vareebadd Phone,1,400,06/01/19 01:51,"612 North St, Atlanta, GA 30301" -196639,USB-C Charging Cable,1,11.95,06/01/19 00:18,"972 13th St, New York City, NY 10001" -196640,27in 4K Gaming Monitor,1,389.99,05/17/19 13:30,"513 Center St, San Francisco, CA 94016" -196641,Flatscreen TV,1,300,05/02/19 21:12,"763 1st St, Los Angeles, CA 90001" -196642,Wired Headphones,1,11.99,05/27/19 14:18,"347 Hill St, Los Angeles, CA 90001" -196643,Bose SoundSport Headphones,1,99.99,05/31/19 00:45,"465 Chestnut St, Dallas, TX 75001" -196644,USB-C Charging Cable,4,11.95,05/22/19 12:17,"52 Main St, New York City, NY 10001" -196644,USB-C Charging Cable,1,11.95,05/22/19 12:17,"52 Main St, New York City, NY 10001" -196645,Bose SoundSport Headphones,1,99.99,05/23/19 19:56,"791 Center St, Atlanta, GA 30301" -196646,27in FHD Monitor,1,149.99,05/30/19 18:23,"716 11th St, Portland, OR 97035" -196647,27in 4K Gaming Monitor,1,389.99,05/21/19 11:10,"667 Wilson St, New York City, NY 10001" -196648,Flatscreen TV,1,300,05/31/19 21:10,"103 Washington St, Boston, MA 02215" -196649,iPhone,1,700,05/16/19 14:11,"600 Forest St, San Francisco, CA 94016" -196650,AAA Batteries (4-pack),2,2.99,05/11/19 20:33,"535 4th St, Dallas, TX 75001" -196651,AA Batteries (4-pack),2,3.84,05/28/19 14:12,"309 12th St, Portland, OR 97035" -196652,AAA Batteries (4-pack),1,2.99,05/11/19 15:21,"198 Spruce St, Boston, MA 02215" -196653,AAA Batteries (4-pack),2,2.99,05/27/19 00:14,"672 Dogwood St, New York City, NY 10001" -196654,Wired Headphones,1,11.99,05/05/19 13:56,"479 5th St, Los Angeles, CA 90001" -196654,iPhone,1,700,05/05/19 13:56,"479 5th St, Los Angeles, CA 90001" -196655,20in Monitor,1,109.99,05/08/19 12:16,"140 Wilson St, Dallas, TX 75001" -196656,Lightning Charging Cable,1,14.95,05/08/19 00:23,"192 Main St, New York City, NY 10001" -196657,27in 4K Gaming Monitor,1,389.99,05/14/19 11:55,"946 Sunset St, San Francisco, CA 94016" -196658,Bose SoundSport Headphones,1,99.99,05/09/19 20:43,"310 Johnson St, Los Angeles, CA 90001" -196659,Apple Airpods Headphones,1,150,05/28/19 18:00,"391 1st St, Atlanta, GA 30301" -196660,AAA Batteries (4-pack),1,2.99,05/31/19 07:08,"49 Church St, Los Angeles, CA 90001" -196661,Apple Airpods Headphones,1,150,05/28/19 19:25,"451 Church St, San Francisco, CA 94016" -196662,AA Batteries (4-pack),1,3.84,05/08/19 08:24,"2 North St, Boston, MA 02215" -196663,AAA Batteries (4-pack),1,2.99,05/18/19 18:03,"702 South St, Austin, TX 73301" -196664,Bose SoundSport Headphones,1,99.99,05/31/19 20:19,"427 Madison St, Dallas, TX 75001" -196665,iPhone,1,700,05/04/19 16:59,"439 5th St, New York City, NY 10001" -196666,Macbook Pro Laptop,1,1700,05/22/19 11:30,"33 Ridge St, Boston, MA 02215" -196667,Lightning Charging Cable,1,14.95,05/09/19 19:48,"114 Jefferson St, New York City, NY 10001" -196668,Macbook Pro Laptop,1,1700,05/24/19 15:58,"93 12th St, San Francisco, CA 94016" -196669,34in Ultrawide Monitor,1,379.99,05/31/19 11:44,"793 11th St, Atlanta, GA 30301" -196670,Wired Headphones,1,11.99,05/17/19 20:46,"992 12th St, Dallas, TX 75001" -196671,AA Batteries (4-pack),2,3.84,05/03/19 00:20,"839 Chestnut St, San Francisco, CA 94016" -196672,Apple Airpods Headphones,2,150,05/08/19 17:31,"79 Jefferson St, Los Angeles, CA 90001" -196673,Wired Headphones,2,11.99,05/20/19 16:20,"599 West St, New York City, NY 10001" -196674,AAA Batteries (4-pack),1,2.99,05/21/19 07:40,"359 Johnson St, New York City, NY 10001" -196675,Apple Airpods Headphones,1,150,05/18/19 12:24,"408 9th St, San Francisco, CA 94016" -196676,Wired Headphones,1,11.99,05/18/19 20:12,"104 North St, Seattle, WA 98101" -196677,Wired Headphones,1,11.99,05/12/19 21:31,"893 Hill St, Austin, TX 73301" -196678,Wired Headphones,1,11.99,05/05/19 11:41,"358 14th St, San Francisco, CA 94016" -196679,Wired Headphones,1,11.99,05/24/19 12:21,"400 Park St, Portland, ME 04101" -196680,Lightning Charging Cable,2,14.95,05/21/19 14:42,"931 1st St, Los Angeles, CA 90001" -196681,USB-C Charging Cable,1,11.95,05/30/19 20:06,"265 14th St, Seattle, WA 98101" -196682,Lightning Charging Cable,1,14.95,05/18/19 20:18,"227 Walnut St, New York City, NY 10001" -196683,Bose SoundSport Headphones,1,99.99,05/06/19 23:07,"606 Chestnut St, New York City, NY 10001" -196684,27in FHD Monitor,1,149.99,05/14/19 12:11,"949 Dogwood St, Atlanta, GA 30301" -196685,Wired Headphones,1,11.99,05/19/19 21:24,"226 Forest St, Dallas, TX 75001" -196686,AA Batteries (4-pack),2,3.84,05/21/19 19:17,"33 Hill St, Austin, TX 73301" -196687,Wired Headphones,1,11.99,05/03/19 03:03,"659 Center St, Boston, MA 02215" -196688,USB-C Charging Cable,1,11.95,05/12/19 20:28,"846 Lakeview St, San Francisco, CA 94016" -196689,USB-C Charging Cable,1,11.95,05/15/19 16:00,"818 13th St, Portland, OR 97035" -196690,Apple Airpods Headphones,1,150,05/12/19 13:30,"280 Walnut St, Dallas, TX 75001" -196691,27in FHD Monitor,1,149.99,05/06/19 00:31,"50 9th St, San Francisco, CA 94016" -196692,Apple Airpods Headphones,1,150,05/02/19 15:41,"744 10th St, Austin, TX 73301" -196693,USB-C Charging Cable,1,11.95,05/12/19 13:23,"233 Ridge St, Los Angeles, CA 90001" -196694,Wired Headphones,1,11.99,05/14/19 17:35,"427 Lakeview St, Boston, MA 02215" -196695,Lightning Charging Cable,1,14.95,05/05/19 19:35,"736 5th St, Boston, MA 02215" -196696,Lightning Charging Cable,1,14.95,05/12/19 20:59,"263 Ridge St, New York City, NY 10001" -196697,Google Phone,1,600,05/23/19 15:54,"846 7th St, San Francisco, CA 94016" -196697,USB-C Charging Cable,1,11.95,05/23/19 15:54,"846 7th St, San Francisco, CA 94016" -196698,Wired Headphones,1,11.99,05/28/19 10:14,"767 Washington St, Dallas, TX 75001" -196699,AA Batteries (4-pack),1,3.84,05/06/19 14:27,"375 1st St, Los Angeles, CA 90001" -196700,27in FHD Monitor,1,149.99,05/16/19 12:52,"795 Ridge St, Los Angeles, CA 90001" -196701,Wired Headphones,1,11.99,05/08/19 22:15,"354 Dogwood St, Boston, MA 02215" -196702,Lightning Charging Cable,1,14.95,05/16/19 13:38,"523 13th St, New York City, NY 10001" -196703,iPhone,1,700,05/31/19 14:33,"921 River St, Portland, OR 97035" -196704,USB-C Charging Cable,1,11.95,05/10/19 16:55,"677 Elm St, Seattle, WA 98101" -196705,Lightning Charging Cable,1,14.95,05/03/19 08:29,"379 11th St, Boston, MA 02215" -196706,Lightning Charging Cable,1,14.95,05/30/19 15:47,"65 Washington St, Atlanta, GA 30301" -196707,Lightning Charging Cable,1,14.95,05/27/19 11:12,"903 10th St, San Francisco, CA 94016" -196708,Google Phone,1,600,05/19/19 00:30,"144 Cherry St, New York City, NY 10001" -196709,Bose SoundSport Headphones,1,99.99,05/14/19 09:46,"678 Willow St, New York City, NY 10001" -196710,27in 4K Gaming Monitor,1,389.99,05/20/19 15:28,"660 Chestnut St, Seattle, WA 98101" -196711,AA Batteries (4-pack),1,3.84,05/31/19 09:50,"114 12th St, Seattle, WA 98101" -196712,Lightning Charging Cable,1,14.95,05/02/19 17:02,"89 14th St, Boston, MA 02215" -196713,USB-C Charging Cable,1,11.95,05/13/19 18:49,"53 Main St, Dallas, TX 75001" -196714,Macbook Pro Laptop,1,1700,05/24/19 12:56,"957 Park St, New York City, NY 10001" -196715,AA Batteries (4-pack),2,3.84,05/05/19 15:57,"921 11th St, Dallas, TX 75001" -196716,Lightning Charging Cable,2,14.95,05/01/19 08:16,"83 Lakeview St, Atlanta, GA 30301" -196717,Flatscreen TV,1,300,05/21/19 14:24,"992 4th St, Los Angeles, CA 90001" -196718,USB-C Charging Cable,1,11.95,05/04/19 21:48,"47 9th St, Dallas, TX 75001" -196719,iPhone,1,700,05/24/19 13:45,"586 Jackson St, Portland, ME 04101" -196720,Lightning Charging Cable,1,14.95,05/29/19 09:27,"627 Cedar St, New York City, NY 10001" -196721,Google Phone,1,600,05/09/19 20:59,"419 11th St, New York City, NY 10001" -196721,Wired Headphones,1,11.99,05/09/19 20:59,"419 11th St, New York City, NY 10001" -196722,Wired Headphones,2,11.99,05/23/19 19:35,"887 Highland St, Los Angeles, CA 90001" -196723,Lightning Charging Cable,1,14.95,05/05/19 16:22,"922 Maple St, Los Angeles, CA 90001" -196724,27in 4K Gaming Monitor,1,389.99,05/09/19 12:10,"461 Church St, San Francisco, CA 94016" -196725,27in FHD Monitor,1,149.99,05/06/19 18:42,"651 Hickory St, Boston, MA 02215" -196726,20in Monitor,1,109.99,05/25/19 20:28,"566 Sunset St, San Francisco, CA 94016" -196727,Lightning Charging Cable,1,14.95,05/02/19 19:25,"134 4th St, Portland, OR 97035" -196728,Macbook Pro Laptop,1,1700,05/13/19 09:31,"748 Church St, New York City, NY 10001" -196729,AA Batteries (4-pack),1,3.84,05/02/19 12:13,"253 Walnut St, San Francisco, CA 94016" -196730,27in 4K Gaming Monitor,1,389.99,05/09/19 12:22,"671 Washington St, San Francisco, CA 94016" -196731,AA Batteries (4-pack),1,3.84,05/07/19 14:13,"359 Jefferson St, Dallas, TX 75001" -196732,USB-C Charging Cable,2,11.95,05/07/19 21:06,"911 6th St, Portland, OR 97035" -196733,AAA Batteries (4-pack),2,2.99,05/30/19 10:20,"792 River St, New York City, NY 10001" -196734,27in FHD Monitor,1,149.99,05/19/19 16:06,"543 Main St, San Francisco, CA 94016" -196735,AAA Batteries (4-pack),1,2.99,05/21/19 19:18,"594 Hill St, Boston, MA 02215" -196736,Lightning Charging Cable,1,14.95,05/13/19 20:22,"695 Lakeview St, New York City, NY 10001" -196737,iPhone,1,700,05/05/19 21:14,"309 Wilson St, San Francisco, CA 94016" -196737,Lightning Charging Cable,1,14.95,05/05/19 21:14,"309 Wilson St, San Francisco, CA 94016" -196738,Flatscreen TV,1,300,05/30/19 12:47,"988 Forest St, New York City, NY 10001" -196739,Vareebadd Phone,1,400,05/28/19 01:01,"956 Sunset St, San Francisco, CA 94016" -196740,AAA Batteries (4-pack),3,2.99,05/31/19 13:36,"155 Willow St, Atlanta, GA 30301" -196741,AA Batteries (4-pack),1,3.84,05/12/19 23:42,"755 2nd St, Dallas, TX 75001" -196742,USB-C Charging Cable,1,11.95,05/05/19 17:37,"177 Lincoln St, New York City, NY 10001" -196743,Bose SoundSport Headphones,1,99.99,05/19/19 20:03,"722 Elm St, Boston, MA 02215" -196744,Bose SoundSport Headphones,1,99.99,05/13/19 12:23,"758 1st St, Atlanta, GA 30301" -196745,Apple Airpods Headphones,1,150,05/07/19 10:27,"365 Madison St, Austin, TX 73301" -196746,USB-C Charging Cable,1,11.95,05/19/19 02:09,"279 Center St, Austin, TX 73301" -196747,34in Ultrawide Monitor,1,379.99,05/28/19 10:52,"194 1st St, San Francisco, CA 94016" -196748,Apple Airpods Headphones,1,150,05/17/19 09:15,"682 14th St, San Francisco, CA 94016" -196749,Wired Headphones,1,11.99,05/24/19 15:51,"58 Maple St, Boston, MA 02215" -196750,AAA Batteries (4-pack),1,2.99,05/05/19 18:21,"521 Pine St, Atlanta, GA 30301" -196751,AAA Batteries (4-pack),1,2.99,05/15/19 15:49,"820 Park St, New York City, NY 10001" -196752,LG Washing Machine,1,600.0,05/06/19 20:21,"728 10th St, Boston, MA 02215" -196753,27in 4K Gaming Monitor,1,389.99,05/18/19 17:12,"568 Ridge St, New York City, NY 10001" -196754,27in 4K Gaming Monitor,1,389.99,05/13/19 14:08,"874 Wilson St, Atlanta, GA 30301" -196755,27in FHD Monitor,1,149.99,05/28/19 12:29,"514 Cedar St, Boston, MA 02215" -196756,Bose SoundSport Headphones,1,99.99,05/04/19 10:41,"373 Jefferson St, Dallas, TX 75001" -196757,Apple Airpods Headphones,1,150,05/07/19 20:50,"554 Johnson St, San Francisco, CA 94016" -196758,iPhone,1,700,05/21/19 09:27,"815 Hill St, Dallas, TX 75001" -196759,AAA Batteries (4-pack),1,2.99,05/06/19 12:34,"626 Church St, Los Angeles, CA 90001" -196760,Apple Airpods Headphones,1,150,05/16/19 09:39,"346 Cherry St, San Francisco, CA 94016" -196761,Apple Airpods Headphones,1,150,05/04/19 21:52,"826 North St, Portland, OR 97035" -196762,Lightning Charging Cable,1,14.95,05/28/19 20:50,"742 Elm St, Boston, MA 02215" -196763,iPhone,1,700,05/17/19 21:40,"514 1st St, Atlanta, GA 30301" -196764,20in Monitor,1,109.99,05/29/19 22:47,"730 Church St, San Francisco, CA 94016" -196765,27in 4K Gaming Monitor,1,389.99,05/19/19 12:59,"585 Jackson St, San Francisco, CA 94016" -196766,34in Ultrawide Monitor,1,379.99,05/03/19 12:04,"131 12th St, San Francisco, CA 94016" -196767,AA Batteries (4-pack),3,3.84,05/21/19 14:34,"458 13th St, Atlanta, GA 30301" -196768,LG Dryer,1,600.0,05/29/19 17:17,"158 12th St, New York City, NY 10001" -196769,Lightning Charging Cable,1,14.95,05/05/19 23:16,"509 Cedar St, Portland, OR 97035" -196770,27in 4K Gaming Monitor,1,389.99,05/11/19 14:02,"502 Chestnut St, Portland, ME 04101" -196771,Bose SoundSport Headphones,1,99.99,05/10/19 17:13,"863 4th St, Los Angeles, CA 90001" -196772,Apple Airpods Headphones,1,150,05/16/19 18:44,"553 2nd St, Seattle, WA 98101" -196773,Apple Airpods Headphones,1,150,05/25/19 23:27,"668 Washington St, San Francisco, CA 94016" -196774,Lightning Charging Cable,1,14.95,05/28/19 17:53,"761 Madison St, New York City, NY 10001" -196775,Wired Headphones,1,11.99,05/18/19 19:32,"811 Washington St, Austin, TX 73301" -196776,Flatscreen TV,1,300,05/20/19 13:30,"149 Cherry St, Dallas, TX 75001" -196777,20in Monitor,1,109.99,05/09/19 17:59,"665 7th St, Boston, MA 02215" -196777,Bose SoundSport Headphones,1,99.99,05/09/19 17:59,"665 7th St, Boston, MA 02215" -196778,Apple Airpods Headphones,1,150,05/18/19 22:05,"724 11th St, San Francisco, CA 94016" -196778,Flatscreen TV,1,300,05/18/19 22:05,"724 11th St, San Francisco, CA 94016" -196779,Lightning Charging Cable,1,14.95,05/31/19 12:55,"180 Adams St, Portland, OR 97035" -196780,Macbook Pro Laptop,1,1700,05/31/19 10:42,"265 Adams St, Boston, MA 02215" -196781,ThinkPad Laptop,1,999.99,05/10/19 00:24,"658 Ridge St, New York City, NY 10001" -196782,Google Phone,1,600,05/10/19 00:23,"952 4th St, Boston, MA 02215" -196783,iPhone,1,700,05/02/19 08:33,"279 Lakeview St, San Francisco, CA 94016" -196784,AAA Batteries (4-pack),2,2.99,05/31/19 01:03,"213 Maple St, Atlanta, GA 30301" -196785,27in 4K Gaming Monitor,1,389.99,05/22/19 23:36,"710 7th St, Los Angeles, CA 90001" -196786,Lightning Charging Cable,1,14.95,05/02/19 20:55,"531 7th St, San Francisco, CA 94016" -196787,Bose SoundSport Headphones,1,99.99,05/01/19 18:50,"835 Hickory St, San Francisco, CA 94016" -196788,USB-C Charging Cable,1,11.95,05/07/19 09:25,"276 12th St, Boston, MA 02215" -196789,AA Batteries (4-pack),1,3.84,05/11/19 12:33,"168 Madison St, San Francisco, CA 94016" -196790,Lightning Charging Cable,1,14.95,05/08/19 18:08,"901 Main St, San Francisco, CA 94016" -196791,Apple Airpods Headphones,1,150,05/27/19 13:36,"648 Meadow St, Boston, MA 02215" -196792,Google Phone,1,600,05/19/19 21:24,"865 Elm St, New York City, NY 10001" -196792,USB-C Charging Cable,1,11.95,05/19/19 21:24,"865 Elm St, New York City, NY 10001" -196793,Google Phone,1,600,05/04/19 22:19,"48 Walnut St, Los Angeles, CA 90001" -196794,Macbook Pro Laptop,1,1700,05/02/19 22:19,"104 Walnut St, San Francisco, CA 94016" -196795,Apple Airpods Headphones,1,150,05/26/19 13:54,"22 Ridge St, San Francisco, CA 94016" -196796,Wired Headphones,1,11.99,05/21/19 18:49,"475 Jackson St, Atlanta, GA 30301" -196797,USB-C Charging Cable,1,11.95,05/11/19 14:12,"355 Washington St, San Francisco, CA 94016" -196798,AA Batteries (4-pack),1,3.84,05/24/19 14:54,"364 Sunset St, San Francisco, CA 94016" -196799,Bose SoundSport Headphones,1,99.99,05/22/19 14:58,"381 14th St, Boston, MA 02215" -196800,ThinkPad Laptop,1,999.99,05/26/19 15:43,"194 Johnson St, New York City, NY 10001" -196801,34in Ultrawide Monitor,1,379.99,05/16/19 10:48,"204 7th St, San Francisco, CA 94016" -196801,Apple Airpods Headphones,1,150,05/16/19 10:48,"204 7th St, San Francisco, CA 94016" -196802,AA Batteries (4-pack),2,3.84,05/15/19 10:35,"978 Hickory St, Los Angeles, CA 90001" -196803,AAA Batteries (4-pack),1,2.99,05/02/19 11:58,"145 2nd St, Boston, MA 02215" -196804,Flatscreen TV,1,300,05/20/19 09:12,"680 Park St, Boston, MA 02215" -196805,34in Ultrawide Monitor,1,379.99,05/15/19 10:47,"286 Highland St, Austin, TX 73301" -196806,Lightning Charging Cable,1,14.95,05/11/19 20:36,"185 West St, San Francisco, CA 94016" -196807,ThinkPad Laptop,1,999.99,05/28/19 16:27,"293 South St, New York City, NY 10001" -196808,Bose SoundSport Headphones,1,99.99,05/30/19 20:54,"32 6th St, Los Angeles, CA 90001" -196809,27in 4K Gaming Monitor,1,389.99,05/15/19 12:38,"242 Center St, Portland, OR 97035" -196810,27in 4K Gaming Monitor,1,389.99,05/14/19 17:35,"899 4th St, Los Angeles, CA 90001" -196811,Apple Airpods Headphones,1,150,05/04/19 18:40,"241 Willow St, New York City, NY 10001" -196812,Apple Airpods Headphones,1,150,05/02/19 15:07,"357 10th St, Atlanta, GA 30301" -196813,Lightning Charging Cable,1,14.95,05/28/19 13:20,"491 Jefferson St, San Francisco, CA 94016" -196814,34in Ultrawide Monitor,1,379.99,05/03/19 09:51,"745 Sunset St, Dallas, TX 75001" -196815,Google Phone,1,600,05/09/19 19:14,"863 Cherry St, Los Angeles, CA 90001" -196816,USB-C Charging Cable,1,11.95,05/13/19 00:23,"986 Jefferson St, San Francisco, CA 94016" -196817,27in 4K Gaming Monitor,1,389.99,05/10/19 17:22,"64 Church St, Los Angeles, CA 90001" -196818,Wired Headphones,2,11.99,05/03/19 11:52,"441 Center St, Portland, ME 04101" -196819,Wired Headphones,1,11.99,05/12/19 17:33,"801 14th St, San Francisco, CA 94016" -196820,Lightning Charging Cable,1,14.95,05/17/19 13:08,"464 10th St, San Francisco, CA 94016" -196821,Apple Airpods Headphones,1,150,05/05/19 09:46,"983 4th St, Atlanta, GA 30301" -196822,Bose SoundSport Headphones,1,99.99,05/23/19 23:18,"84 Church St, Dallas, TX 75001" -196823,AAA Batteries (4-pack),1,2.99,05/21/19 21:28,"892 Chestnut St, San Francisco, CA 94016" -196824,20in Monitor,1,109.99,05/06/19 20:00,"487 Highland St, Los Angeles, CA 90001" -196825,USB-C Charging Cable,1,11.95,05/14/19 08:33,"250 9th St, Atlanta, GA 30301" -196826,Lightning Charging Cable,1,14.95,05/10/19 19:50,"54 Main St, San Francisco, CA 94016" -196827,Apple Airpods Headphones,1,150,05/01/19 09:03,"68 Jefferson St, Los Angeles, CA 90001" -196828,USB-C Charging Cable,1,11.95,05/05/19 15:24,"100 Willow St, Los Angeles, CA 90001" -196829,AAA Batteries (4-pack),1,2.99,05/05/19 21:12,"813 Wilson St, Austin, TX 73301" -196830,Lightning Charging Cable,1,14.95,05/13/19 13:24,"144 Pine St, Los Angeles, CA 90001" -196831,Wired Headphones,1,11.99,05/24/19 21:39,"835 Washington St, San Francisco, CA 94016" -196832,AAA Batteries (4-pack),1,2.99,05/30/19 09:34,"389 8th St, Los Angeles, CA 90001" -196833,Lightning Charging Cable,1,14.95,05/20/19 00:57,"332 8th St, Seattle, WA 98101" -196834,AAA Batteries (4-pack),1,2.99,05/11/19 20:16,"400 Madison St, New York City, NY 10001" -196835,Wired Headphones,1,11.99,05/23/19 09:23,"518 11th St, Atlanta, GA 30301" -196836,Lightning Charging Cable,1,14.95,05/08/19 19:35,"334 6th St, Dallas, TX 75001" -196837,AA Batteries (4-pack),1,3.84,05/17/19 08:53,"928 Hickory St, Los Angeles, CA 90001" -196838,34in Ultrawide Monitor,1,379.99,05/25/19 00:35,"725 9th St, San Francisco, CA 94016" -196839,27in FHD Monitor,1,149.99,05/19/19 12:01,"626 Ridge St, New York City, NY 10001" -196840,20in Monitor,1,109.99,05/12/19 09:02,"505 6th St, New York City, NY 10001" -196841,Macbook Pro Laptop,1,1700,05/28/19 15:36,"117 7th St, San Francisco, CA 94016" -196842,USB-C Charging Cable,1,11.95,05/05/19 23:18,"283 Lake St, New York City, NY 10001" -196843,34in Ultrawide Monitor,1,379.99,05/05/19 17:36,"37 Forest St, Atlanta, GA 30301" -196844,Wired Headphones,1,11.99,05/30/19 20:22,"959 8th St, Los Angeles, CA 90001" -196845,USB-C Charging Cable,1,11.95,05/09/19 17:07,"752 Lakeview St, Dallas, TX 75001" -196846,34in Ultrawide Monitor,1,379.99,05/02/19 20:18,"52 Dogwood St, Atlanta, GA 30301" -196847,AAA Batteries (4-pack),1,2.99,05/12/19 13:07,"739 Spruce St, San Francisco, CA 94016" -196848,Flatscreen TV,1,300,05/10/19 16:07,"252 Lincoln St, Los Angeles, CA 90001" -196849,Google Phone,1,600,05/13/19 22:31,"617 River St, Seattle, WA 98101" -196850,AAA Batteries (4-pack),1,2.99,05/25/19 14:42,"466 River St, San Francisco, CA 94016" -196851,USB-C Charging Cable,1,11.95,05/18/19 16:42,"175 Wilson St, Los Angeles, CA 90001" -196852,Apple Airpods Headphones,1,150,05/15/19 21:09,"238 Adams St, Seattle, WA 98101" -196853,Wired Headphones,1,11.99,05/13/19 18:08,"40 Washington St, Los Angeles, CA 90001" -196854,iPhone,1,700,05/14/19 11:32,"326 Wilson St, Boston, MA 02215" -196855,27in 4K Gaming Monitor,1,389.99,05/04/19 10:27,"334 Park St, Los Angeles, CA 90001" -196856,AAA Batteries (4-pack),1,2.99,05/13/19 20:06,"398 11th St, San Francisco, CA 94016" -196857,27in FHD Monitor,1,149.99,05/18/19 17:17,"302 Willow St, Atlanta, GA 30301" -196858,AA Batteries (4-pack),1,3.84,05/09/19 10:05,"553 Center St, Atlanta, GA 30301" -196859,Flatscreen TV,1,300,05/15/19 10:44,"936 Sunset St, Dallas, TX 75001" -196860,Wired Headphones,2,11.99,05/29/19 13:26,"132 West St, Atlanta, GA 30301" -196861,Lightning Charging Cable,1,14.95,05/31/19 18:38,"754 Lake St, Dallas, TX 75001" -196862,ThinkPad Laptop,1,999.99,05/09/19 22:25,"324 South St, Atlanta, GA 30301" -196863,27in FHD Monitor,1,149.99,05/23/19 15:51,"833 Cedar St, San Francisco, CA 94016" -196864,Macbook Pro Laptop,1,1700,05/06/19 11:39,"553 South St, San Francisco, CA 94016" -196865,Google Phone,1,600,05/17/19 20:27,"404 Elm St, Austin, TX 73301" -196866,27in FHD Monitor,1,149.99,05/11/19 21:07,"180 Park St, Dallas, TX 75001" -196867,USB-C Charging Cable,1,11.95,05/19/19 13:01,"161 Lincoln St, New York City, NY 10001" -196868,27in 4K Gaming Monitor,1,389.99,05/12/19 10:01,"790 6th St, Seattle, WA 98101" -196868,Macbook Pro Laptop,1,1700,05/12/19 10:01,"790 6th St, Seattle, WA 98101" -196869,Macbook Pro Laptop,1,1700,05/12/19 15:09,"925 Meadow St, Seattle, WA 98101" -196870,Flatscreen TV,1,300,05/22/19 15:23,"901 8th St, Seattle, WA 98101" -196871,Bose SoundSport Headphones,1,99.99,05/15/19 17:22,"287 5th St, Portland, ME 04101" -196872,Apple Airpods Headphones,1,150,05/22/19 17:52,"279 11th St, Los Angeles, CA 90001" -196872,27in FHD Monitor,1,149.99,05/22/19 17:52,"279 11th St, Los Angeles, CA 90001" -196873,27in FHD Monitor,1,149.99,05/03/19 16:16,"931 Park St, New York City, NY 10001" -196874,34in Ultrawide Monitor,1,379.99,05/23/19 19:26,"337 1st St, Portland, OR 97035" -196875,USB-C Charging Cable,1,11.95,05/16/19 15:22,"304 1st St, San Francisco, CA 94016" -196875,Apple Airpods Headphones,1,150,05/16/19 15:22,"304 1st St, San Francisco, CA 94016" -196876,Lightning Charging Cable,1,14.95,05/26/19 00:22,"558 7th St, Los Angeles, CA 90001" -196877,USB-C Charging Cable,1,11.95,05/23/19 09:59,"448 6th St, New York City, NY 10001" -196878,Wired Headphones,1,11.99,05/31/19 18:36,"255 Adams St, Dallas, TX 75001" -196879,Wired Headphones,1,11.99,05/18/19 13:32,"223 Willow St, New York City, NY 10001" -196880,Macbook Pro Laptop,1,1700,05/10/19 10:31,"991 Dogwood St, Portland, OR 97035" -196881,AA Batteries (4-pack),1,3.84,05/20/19 21:16,"358 Willow St, San Francisco, CA 94016" -196882,Bose SoundSport Headphones,1,99.99,05/05/19 21:05,"460 Johnson St, Atlanta, GA 30301" -196883,USB-C Charging Cable,1,11.95,05/16/19 07:42,"560 4th St, Portland, OR 97035" -196884,Lightning Charging Cable,1,14.95,05/15/19 13:02,"133 Park St, Boston, MA 02215" -196885,AA Batteries (4-pack),1,3.84,05/20/19 09:47,"261 5th St, New York City, NY 10001" -196886,Wired Headphones,1,11.99,05/27/19 13:51,"484 Park St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -196887,Macbook Pro Laptop,1,1700,05/03/19 17:20,"432 Hickory St, San Francisco, CA 94016" -196888,Macbook Pro Laptop,1,1700,05/04/19 15:23,"973 Johnson St, New York City, NY 10001" -196889,ThinkPad Laptop,1,999.99,05/31/19 00:05,"938 Cherry St, Portland, OR 97035" -196890,Wired Headphones,1,11.99,05/25/19 11:30,"969 12th St, Austin, TX 73301" -196891,Apple Airpods Headphones,1,150,05/31/19 00:19,"995 Willow St, New York City, NY 10001" -196892,27in 4K Gaming Monitor,1,389.99,05/30/19 20:45,"845 Cedar St, Los Angeles, CA 90001" -196893,AAA Batteries (4-pack),2,2.99,05/05/19 10:12,"831 Hickory St, Los Angeles, CA 90001" -196894,Bose SoundSport Headphones,1,99.99,05/22/19 09:47,"528 Hill St, Dallas, TX 75001" -196895,USB-C Charging Cable,2,11.95,05/31/19 17:15,"301 Lakeview St, Boston, MA 02215" -196896,27in FHD Monitor,1,149.99,05/20/19 14:38,"870 Highland St, New York City, NY 10001" -196897,Bose SoundSport Headphones,1,99.99,05/08/19 16:54,"454 North St, San Francisco, CA 94016" -196898,Wired Headphones,1,11.99,05/30/19 18:16,"818 Lakeview St, Austin, TX 73301" -196899,AA Batteries (4-pack),1,3.84,05/26/19 20:20,"431 Center St, Austin, TX 73301" -196900,Bose SoundSport Headphones,1,99.99,05/27/19 11:50,"887 6th St, Atlanta, GA 30301" -196901,Lightning Charging Cable,2,14.95,05/07/19 20:41,"680 Spruce St, Los Angeles, CA 90001" -196902,Lightning Charging Cable,1,14.95,05/19/19 15:01,"436 Willow St, San Francisco, CA 94016" -196903,Google Phone,1,600,05/16/19 08:33,"764 River St, Boston, MA 02215" -196904,Lightning Charging Cable,1,14.95,05/23/19 13:37,"804 South St, Los Angeles, CA 90001" -196905,Wired Headphones,1,11.99,05/15/19 20:15,"294 1st St, San Francisco, CA 94016" -196906,27in 4K Gaming Monitor,1,389.99,05/22/19 17:12,"738 Chestnut St, San Francisco, CA 94016" -196907,ThinkPad Laptop,1,999.99,05/02/19 15:45,"239 Hill St, Dallas, TX 75001" -196908,USB-C Charging Cable,1,11.95,05/08/19 09:54,"19 Lake St, Seattle, WA 98101" -196909,Lightning Charging Cable,1,14.95,05/23/19 08:58,"365 Dogwood St, San Francisco, CA 94016" -196910,USB-C Charging Cable,1,11.95,05/08/19 15:35,"537 Jefferson St, Portland, OR 97035" -196911,AAA Batteries (4-pack),3,2.99,05/31/19 09:51,"879 13th St, Boston, MA 02215" -196912,USB-C Charging Cable,1,11.95,05/02/19 20:03,"998 Church St, Atlanta, GA 30301" -196913,Macbook Pro Laptop,1,1700,05/15/19 21:16,"919 West St, Seattle, WA 98101" -196914,Wired Headphones,1,11.99,05/28/19 16:04,"803 4th St, Boston, MA 02215" -196915,Google Phone,1,600,05/20/19 16:39,"235 Park St, Atlanta, GA 30301" -196916,AAA Batteries (4-pack),1,2.99,05/27/19 22:44,"842 Johnson St, Dallas, TX 75001" -196917,USB-C Charging Cable,1,11.95,05/24/19 23:33,"94 Center St, San Francisco, CA 94016" -196917,AA Batteries (4-pack),1,3.84,05/24/19 23:33,"94 Center St, San Francisco, CA 94016" -196918,AAA Batteries (4-pack),2,2.99,05/08/19 12:59,"76 Park St, Dallas, TX 75001" -196919,Wired Headphones,1,11.99,05/26/19 10:19,"209 12th St, San Francisco, CA 94016" -196920,USB-C Charging Cable,1,11.95,05/10/19 15:15,"110 Center St, Los Angeles, CA 90001" -196920,Lightning Charging Cable,1,14.95,05/10/19 15:15,"110 Center St, Los Angeles, CA 90001" -196921,USB-C Charging Cable,1,11.95,05/20/19 08:54,"248 Jackson St, Austin, TX 73301" -196922,27in 4K Gaming Monitor,1,389.99,05/16/19 19:34,"928 Forest St, Austin, TX 73301" -196923,AA Batteries (4-pack),1,3.84,05/24/19 18:40,"750 West St, Dallas, TX 75001" -196924,AA Batteries (4-pack),1,3.84,05/08/19 17:20,"335 6th St, Seattle, WA 98101" -196925,AAA Batteries (4-pack),2,2.99,05/23/19 17:06,"154 Johnson St, San Francisco, CA 94016" -196926,USB-C Charging Cable,1,11.95,05/03/19 17:37,"334 Maple St, San Francisco, CA 94016" -196927,Lightning Charging Cable,1,14.95,05/05/19 20:47,"878 South St, Portland, OR 97035" -196928,Apple Airpods Headphones,1,150,05/28/19 16:22,"404 Dogwood St, Dallas, TX 75001" -196929,USB-C Charging Cable,1,11.95,05/23/19 21:27,"622 Jackson St, Atlanta, GA 30301" -196930,Bose SoundSport Headphones,1,99.99,05/20/19 20:50,"542 Lake St, Atlanta, GA 30301" -196931,Lightning Charging Cable,1,14.95,05/16/19 01:09,"367 2nd St, Los Angeles, CA 90001" -196932,Wired Headphones,1,11.99,05/10/19 18:31,"367 Ridge St, New York City, NY 10001" -196933,Lightning Charging Cable,1,14.95,05/04/19 16:52,"231 Lincoln St, Austin, TX 73301" -196934,34in Ultrawide Monitor,1,379.99,05/17/19 22:50,"477 River St, Portland, ME 04101" -196935,USB-C Charging Cable,1,11.95,05/18/19 11:34,"197 Highland St, Los Angeles, CA 90001" -196936,ThinkPad Laptop,1,999.99,05/16/19 12:56,"148 Center St, San Francisco, CA 94016" -196937,34in Ultrawide Monitor,1,379.99,05/02/19 12:00,"344 Meadow St, Los Angeles, CA 90001" -196938,Lightning Charging Cable,1,14.95,05/18/19 22:22,"663 Lake St, Boston, MA 02215" -196939,Lightning Charging Cable,1,14.95,05/21/19 15:19,"570 Lake St, San Francisco, CA 94016" -196940,27in FHD Monitor,1,149.99,05/11/19 07:52,"326 Jefferson St, New York City, NY 10001" -196941,AA Batteries (4-pack),2,3.84,05/02/19 22:46,"23 Church St, Boston, MA 02215" -196942,Wired Headphones,1,11.99,05/31/19 20:31,"724 Spruce St, Los Angeles, CA 90001" -196943,Wired Headphones,1,11.99,05/09/19 14:50,"961 Meadow St, Dallas, TX 75001" -196944,27in FHD Monitor,1,149.99,05/26/19 11:09,"784 Madison St, Los Angeles, CA 90001" -196945,Google Phone,1,600,05/30/19 15:55,"133 Ridge St, Austin, TX 73301" -196946,USB-C Charging Cable,1,11.95,05/23/19 16:03,"957 Meadow St, Dallas, TX 75001" -196947,USB-C Charging Cable,1,11.95,05/28/19 20:31,"510 Lincoln St, New York City, NY 10001" -196948,27in 4K Gaming Monitor,1,389.99,05/08/19 22:41,"252 6th St, Boston, MA 02215" -196949,AAA Batteries (4-pack),2,2.99,05/26/19 15:11,"730 13th St, San Francisco, CA 94016" -196950,Wired Headphones,1,11.99,05/07/19 14:47,"402 Main St, New York City, NY 10001" -196951,Apple Airpods Headphones,1,150,05/28/19 10:27,"214 Meadow St, San Francisco, CA 94016" -196952,USB-C Charging Cable,1,11.95,05/03/19 10:53,"244 Main St, Los Angeles, CA 90001" -196953,iPhone,1,700,05/03/19 01:30,"264 13th St, New York City, NY 10001" -196954,Bose SoundSport Headphones,1,99.99,05/16/19 12:45,"595 Elm St, San Francisco, CA 94016" -196955,34in Ultrawide Monitor,1,379.99,05/14/19 11:26,"842 Walnut St, Dallas, TX 75001" -196956,AAA Batteries (4-pack),2,2.99,05/14/19 21:28,"949 West St, Atlanta, GA 30301" -196957,AAA Batteries (4-pack),2,2.99,05/27/19 12:00,"299 Cherry St, Los Angeles, CA 90001" -196958,Apple Airpods Headphones,1,150,05/01/19 23:29,"620 Madison St, Dallas, TX 75001" -196959,Lightning Charging Cable,1,14.95,05/04/19 17:18,"360 South St, Portland, OR 97035" -196960,Wired Headphones,1,11.99,05/02/19 22:56,"635 Hickory St, Los Angeles, CA 90001" -196961,Apple Airpods Headphones,1,150,05/18/19 06:58,"637 Adams St, Los Angeles, CA 90001" -196962,Lightning Charging Cable,1,14.95,05/31/19 10:12,"659 6th St, Austin, TX 73301" -196963,Macbook Pro Laptop,1,1700,05/20/19 07:34,"987 10th St, New York City, NY 10001" -196964,27in FHD Monitor,1,149.99,05/09/19 18:39,"692 7th St, San Francisco, CA 94016" -196965,Macbook Pro Laptop,1,1700,05/19/19 20:03,"937 Johnson St, San Francisco, CA 94016" -196966,AA Batteries (4-pack),2,3.84,05/09/19 14:06,"333 Forest St, Boston, MA 02215" -196967,Bose SoundSport Headphones,1,99.99,05/16/19 21:29,"365 11th St, Boston, MA 02215" -196968,AA Batteries (4-pack),1,3.84,05/06/19 12:11,"47 Main St, Seattle, WA 98101" -196969,Wired Headphones,1,11.99,05/21/19 15:18,"234 Johnson St, San Francisco, CA 94016" -196970,AAA Batteries (4-pack),1,2.99,05/28/19 22:24,"137 Elm St, Los Angeles, CA 90001" -196971,Macbook Pro Laptop,1,1700,05/23/19 22:47,"561 North St, Los Angeles, CA 90001" -196972,Apple Airpods Headphones,1,150,05/22/19 16:56,"682 Pine St, Boston, MA 02215" -196973,Wired Headphones,1,11.99,05/25/19 10:29,"794 Chestnut St, Boston, MA 02215" -196974,AA Batteries (4-pack),1,3.84,05/09/19 13:51,"319 Adams St, Atlanta, GA 30301" -196975,Apple Airpods Headphones,1,150,05/27/19 11:48,"781 Hickory St, Portland, ME 04101" -196976,AAA Batteries (4-pack),2,2.99,05/17/19 21:18,"742 8th St, San Francisco, CA 94016" -196977,USB-C Charging Cable,1,11.95,05/04/19 22:40,"190 Cherry St, New York City, NY 10001" -196978,Google Phone,1,600,05/14/19 09:51,"76 9th St, Atlanta, GA 30301" -196979,Bose SoundSport Headphones,1,99.99,05/12/19 19:34,"273 Adams St, New York City, NY 10001" -196980,USB-C Charging Cable,1,11.95,05/04/19 12:15,"543 Wilson St, Los Angeles, CA 90001" -196981,iPhone,1,700,05/01/19 10:15,"703 Sunset St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -196982,Wired Headphones,1,11.99,05/03/19 18:48,"533 Spruce St, San Francisco, CA 94016" -196983,Wired Headphones,2,11.99,05/02/19 13:34,"370 Washington St, Dallas, TX 75001" -196984,AA Batteries (4-pack),1,3.84,05/12/19 16:13,"602 Walnut St, San Francisco, CA 94016" -196985,Google Phone,1,600,05/03/19 18:56,"99 Center St, New York City, NY 10001" -196985,Wired Headphones,1,11.99,05/03/19 18:56,"99 Center St, New York City, NY 10001" -196986,Apple Airpods Headphones,1,150,05/05/19 22:05,"43 Pine St, Seattle, WA 98101" -196987,Macbook Pro Laptop,1,1700,05/06/19 11:23,"157 10th St, San Francisco, CA 94016" -196988,AA Batteries (4-pack),4,3.84,05/05/19 18:06,"376 Highland St, Seattle, WA 98101" -196989,AA Batteries (4-pack),1,3.84,05/15/19 19:46,"568 Johnson St, New York City, NY 10001" -196990,AA Batteries (4-pack),1,3.84,05/29/19 08:32,"126 Ridge St, Atlanta, GA 30301" -196990,iPhone,1,700,05/29/19 08:32,"126 Ridge St, Atlanta, GA 30301" -196991,AAA Batteries (4-pack),1,2.99,05/23/19 21:21,"62 Jackson St, San Francisco, CA 94016" -196992,Macbook Pro Laptop,1,1700,05/21/19 03:09,"722 Lakeview St, Boston, MA 02215" -196993,Apple Airpods Headphones,1,150,05/07/19 12:26,"360 Cherry St, Austin, TX 73301" -196994,AA Batteries (4-pack),1,3.84,05/11/19 11:54,"598 Spruce St, San Francisco, CA 94016" -196995,iPhone,1,700,05/17/19 10:30,"487 Jefferson St, Los Angeles, CA 90001" -196996,AA Batteries (4-pack),1,3.84,05/31/19 21:10,"994 Sunset St, Dallas, TX 75001" -196997,Apple Airpods Headphones,1,150,05/03/19 20:49,"246 Wilson St, San Francisco, CA 94016" -196998,Bose SoundSport Headphones,1,99.99,05/02/19 12:42,"957 Main St, San Francisco, CA 94016" -196999,USB-C Charging Cable,1,11.95,05/12/19 15:24,"850 6th St, New York City, NY 10001" -197000,AAA Batteries (4-pack),1,2.99,05/02/19 12:00,"549 Sunset St, San Francisco, CA 94016" -197001,AAA Batteries (4-pack),1,2.99,05/22/19 12:13,"163 12th St, San Francisco, CA 94016" -197002,Wired Headphones,2,11.99,05/10/19 11:56,"749 Highland St, New York City, NY 10001" -197003,27in FHD Monitor,1,149.99,05/11/19 14:00,"509 Pine St, Los Angeles, CA 90001" -197004,AA Batteries (4-pack),1,3.84,05/31/19 02:06,"544 Main St, New York City, NY 10001" -197004,20in Monitor,1,109.99,05/31/19 02:06,"544 Main St, New York City, NY 10001" -197005,20in Monitor,1,109.99,05/02/19 11:56,"682 Sunset St, Portland, OR 97035" -197006,Apple Airpods Headphones,1,150,05/04/19 15:27,"240 8th St, Austin, TX 73301" -197007,USB-C Charging Cable,1,11.95,05/24/19 23:01,"333 North St, Portland, OR 97035" -197008,Lightning Charging Cable,2,14.95,05/09/19 19:41,"375 13th St, New York City, NY 10001" -197009,LG Washing Machine,1,600.0,05/04/19 19:08,"152 River St, Austin, TX 73301" -197010,27in 4K Gaming Monitor,1,389.99,05/30/19 20:41,"610 Walnut St, New York City, NY 10001" -197011,Lightning Charging Cable,1,14.95,05/26/19 09:32,"886 Main St, Seattle, WA 98101" -197012,AA Batteries (4-pack),2,3.84,05/18/19 11:27,"371 Chestnut St, Boston, MA 02215" -197013,Google Phone,1,600,05/30/19 09:05,"470 South St, New York City, NY 10001" -197014,AAA Batteries (4-pack),1,2.99,05/15/19 12:27,"517 Cedar St, Dallas, TX 75001" -197015,27in FHD Monitor,1,149.99,05/15/19 08:14,"396 Jefferson St, Austin, TX 73301" -197016,Lightning Charging Cable,1,14.95,05/24/19 19:08,"348 Johnson St, Seattle, WA 98101" -197017,Google Phone,1,600,05/04/19 21:12,"439 Forest St, San Francisco, CA 94016" -197018,AA Batteries (4-pack),1,3.84,05/30/19 15:00,"48 Chestnut St, San Francisco, CA 94016" -197019,Wired Headphones,1,11.99,05/31/19 13:13,"14 8th St, San Francisco, CA 94016" -197020,27in FHD Monitor,1,149.99,05/04/19 14:57,"428 1st St, New York City, NY 10001" -197021,AAA Batteries (4-pack),1,2.99,05/30/19 18:45,"553 11th St, Dallas, TX 75001" -197022,Wired Headphones,1,11.99,05/12/19 20:17,"3 Chestnut St, Austin, TX 73301" -197023,LG Washing Machine,1,600.0,05/05/19 12:38,"783 2nd St, Los Angeles, CA 90001" -197024,Flatscreen TV,1,300,05/23/19 12:36,"217 Chestnut St, San Francisco, CA 94016" -197025,AA Batteries (4-pack),1,3.84,05/01/19 12:51,"370 River St, Los Angeles, CA 90001" -197026,Flatscreen TV,1,300,05/04/19 12:59,"577 8th St, Dallas, TX 75001" -197027,iPhone,1,700,05/31/19 10:24,"906 Lake St, Los Angeles, CA 90001" -197028,AA Batteries (4-pack),1,3.84,05/25/19 11:34,"551 8th St, New York City, NY 10001" -197029,Lightning Charging Cable,1,14.95,05/09/19 23:52,"345 Lincoln St, Atlanta, GA 30301" -197030,27in FHD Monitor,1,149.99,05/07/19 17:27,"654 13th St, Portland, OR 97035" -197031,AA Batteries (4-pack),1,3.84,05/21/19 14:46,"908 North St, Portland, OR 97035" -197032,27in 4K Gaming Monitor,1,389.99,05/29/19 15:54,"557 North St, Austin, TX 73301" -197033,AAA Batteries (4-pack),1,2.99,05/04/19 15:45,"209 Meadow St, New York City, NY 10001" -197034,Apple Airpods Headphones,1,150,05/10/19 18:37,"626 Jackson St, Portland, ME 04101" -197035,Apple Airpods Headphones,1,150,05/10/19 18:35,"473 Jefferson St, San Francisco, CA 94016" -197036,Bose SoundSport Headphones,1,99.99,05/31/19 00:35,"849 Sunset St, Portland, OR 97035" -197037,Bose SoundSport Headphones,1,99.99,05/03/19 10:24,"613 South St, Los Angeles, CA 90001" -197038,AAA Batteries (4-pack),1,2.99,05/26/19 08:54,"331 Maple St, Dallas, TX 75001" -197039,AA Batteries (4-pack),2,3.84,05/18/19 19:32,"865 Elm St, San Francisco, CA 94016" -197040,34in Ultrawide Monitor,1,379.99,05/22/19 19:02,"986 Jefferson St, New York City, NY 10001" -197041,Google Phone,1,600,05/09/19 16:34,"824 9th St, Dallas, TX 75001" -197041,USB-C Charging Cable,1,11.95,05/09/19 16:34,"824 9th St, Dallas, TX 75001" -197042,USB-C Charging Cable,1,11.95,05/14/19 08:21,"531 Church St, Portland, ME 04101" -197043,Bose SoundSport Headphones,1,99.99,05/12/19 19:20,"549 1st St, Los Angeles, CA 90001" -197044,AA Batteries (4-pack),1,3.84,05/31/19 19:18,"301 South St, Seattle, WA 98101" -197045,Bose SoundSport Headphones,1,99.99,05/25/19 09:02,"537 Spruce St, Dallas, TX 75001" -197046,AAA Batteries (4-pack),1,2.99,05/29/19 11:22,"734 Park St, Boston, MA 02215" -197047,AAA Batteries (4-pack),3,2.99,05/20/19 01:52,"934 Elm St, New York City, NY 10001" -197048,Lightning Charging Cable,1,14.95,05/18/19 01:22,"267 2nd St, Dallas, TX 75001" -197049,Flatscreen TV,1,300,05/27/19 15:08,"77 South St, New York City, NY 10001" -197050,Lightning Charging Cable,1,14.95,05/21/19 09:12,"423 Lincoln St, San Francisco, CA 94016" -197051,ThinkPad Laptop,1,999.99,05/04/19 15:35,"231 Willow St, Dallas, TX 75001" -197052,iPhone,1,700,05/11/19 18:52,"380 13th St, Los Angeles, CA 90001" -197053,AA Batteries (4-pack),1,3.84,05/21/19 13:09,"443 Madison St, Los Angeles, CA 90001" -197054,ThinkPad Laptop,1,999.99,05/13/19 19:28,"750 Sunset St, Los Angeles, CA 90001" -197055,Lightning Charging Cable,1,14.95,05/22/19 23:57,"118 5th St, Los Angeles, CA 90001" -197056,27in 4K Gaming Monitor,1,389.99,05/12/19 21:30,"904 Spruce St, Los Angeles, CA 90001" -197057,AAA Batteries (4-pack),2,2.99,05/19/19 13:06,"302 2nd St, New York City, NY 10001" -197058,Bose SoundSport Headphones,1,99.99,05/05/19 18:21,"463 Hickory St, San Francisco, CA 94016" -197059,Bose SoundSport Headphones,1,99.99,05/16/19 14:33,"775 Wilson St, Atlanta, GA 30301" -197060,Apple Airpods Headphones,1,150,05/21/19 16:24,"509 2nd St, Boston, MA 02215" -197061,USB-C Charging Cable,1,11.95,05/31/19 18:51,"726 Lincoln St, Los Angeles, CA 90001" -197062,Wired Headphones,1,11.99,05/31/19 13:39,"801 Maple St, Dallas, TX 75001" -197063,Apple Airpods Headphones,1,150,05/31/19 20:52,"164 Church St, Boston, MA 02215" -197064,USB-C Charging Cable,1,11.95,05/27/19 11:07,"965 Willow St, New York City, NY 10001" -197065,USB-C Charging Cable,1,11.95,05/04/19 20:55,"737 4th St, Seattle, WA 98101" -197066,27in FHD Monitor,1,149.99,05/31/19 17:13,"293 Cherry St, Portland, ME 04101" -197067,AAA Batteries (4-pack),1,2.99,05/02/19 19:11,"258 Park St, New York City, NY 10001" -197068,AA Batteries (4-pack),2,3.84,05/03/19 17:44,"582 Pine St, New York City, NY 10001" -197069,Vareebadd Phone,1,400,05/18/19 13:14,"71 Center St, San Francisco, CA 94016" -197070,USB-C Charging Cable,1,11.95,05/22/19 12:42,"480 Meadow St, Los Angeles, CA 90001" -197071,AA Batteries (4-pack),4,3.84,05/15/19 23:34,"594 Walnut St, San Francisco, CA 94016" -197072,Lightning Charging Cable,1,14.95,05/20/19 17:12,"737 Dogwood St, San Francisco, CA 94016" -197073,Google Phone,1,600,05/24/19 19:25,"853 Johnson St, New York City, NY 10001" -197074,Lightning Charging Cable,1,14.95,05/31/19 09:04,"165 South St, New York City, NY 10001" -197075,Bose SoundSport Headphones,1,99.99,05/01/19 14:04,"375 Chestnut St, San Francisco, CA 94016" -197076,AAA Batteries (4-pack),2,2.99,05/09/19 12:07,"760 River St, Portland, OR 97035" -197076,AAA Batteries (4-pack),1,2.99,05/09/19 12:07,"760 River St, Portland, OR 97035" -197077,Apple Airpods Headphones,1,150,05/10/19 08:51,"749 Hickory St, Boston, MA 02215" -197078,Bose SoundSport Headphones,1,99.99,05/19/19 17:49,"758 West St, New York City, NY 10001" -197079,Lightning Charging Cable,1,14.95,05/02/19 13:51,"79 Meadow St, Seattle, WA 98101" -197080,AA Batteries (4-pack),1,3.84,05/06/19 12:20,"625 6th St, Seattle, WA 98101" -197081,Lightning Charging Cable,1,14.95,05/15/19 15:05,"228 11th St, New York City, NY 10001" -197082,Google Phone,1,600,05/14/19 21:24,"226 Wilson St, Los Angeles, CA 90001" -197082,Bose SoundSport Headphones,1,99.99,05/14/19 21:24,"226 Wilson St, Los Angeles, CA 90001" -197082,Wired Headphones,1,11.99,05/14/19 21:24,"226 Wilson St, Los Angeles, CA 90001" -197083,AA Batteries (4-pack),1,3.84,05/22/19 03:50,"792 Chestnut St, Dallas, TX 75001" -197084,27in FHD Monitor,1,149.99,05/06/19 22:46,"581 Elm St, Dallas, TX 75001" -197085,Wired Headphones,1,11.99,05/02/19 11:09,"109 Walnut St, San Francisco, CA 94016" -197086,Apple Airpods Headphones,1,150,05/16/19 14:32,"808 Johnson St, Los Angeles, CA 90001" -197087,Apple Airpods Headphones,1,150,05/07/19 09:05,"443 12th St, Dallas, TX 75001" -197088,USB-C Charging Cable,1,11.95,05/31/19 22:01,"240 10th St, Dallas, TX 75001" -197089,Macbook Pro Laptop,1,1700,05/09/19 12:54,"179 Willow St, San Francisco, CA 94016" -197090,Flatscreen TV,1,300,05/07/19 10:19,"415 River St, Seattle, WA 98101" -197091,AAA Batteries (4-pack),1,2.99,05/29/19 10:47,"207 Dogwood St, New York City, NY 10001" -197092,Wired Headphones,1,11.99,05/16/19 15:04,"559 Chestnut St, Dallas, TX 75001" -197093,AA Batteries (4-pack),1,3.84,05/10/19 22:09,"764 Sunset St, Portland, OR 97035" -197094,Bose SoundSport Headphones,1,99.99,05/27/19 18:19,"924 Lincoln St, Dallas, TX 75001" -197095,Wired Headphones,1,11.99,05/09/19 22:24,"640 River St, San Francisco, CA 94016" -197096,Macbook Pro Laptop,1,1700,05/06/19 13:32,"908 Lake St, Dallas, TX 75001" -197097,Flatscreen TV,1,300,05/06/19 14:38,"587 Forest St, San Francisco, CA 94016" -197098,Apple Airpods Headphones,1,150,05/15/19 19:22,"966 11th St, Atlanta, GA 30301" -197099,Google Phone,1,600,05/29/19 07:15,"437 2nd St, Atlanta, GA 30301" -197099,USB-C Charging Cable,1,11.95,05/29/19 07:15,"437 2nd St, Atlanta, GA 30301" -197100,34in Ultrawide Monitor,1,379.99,05/20/19 21:14,"352 8th St, Portland, OR 97035" -197101,Lightning Charging Cable,1,14.95,05/08/19 12:45,"7 Maple St, San Francisco, CA 94016" -197102,Wired Headphones,1,11.99,05/26/19 22:21,"964 Elm St, New York City, NY 10001" -197103,iPhone,1,700,05/09/19 15:48,"50 13th St, Dallas, TX 75001" -197104,Wired Headphones,1,11.99,05/23/19 07:37,"927 Pine St, Seattle, WA 98101" -197105,USB-C Charging Cable,1,11.95,05/30/19 15:39,"976 13th St, San Francisco, CA 94016" -197106,AA Batteries (4-pack),1,3.84,05/11/19 21:19,"582 Johnson St, Dallas, TX 75001" -197107,Wired Headphones,1,11.99,05/24/19 15:30,"386 Lincoln St, Seattle, WA 98101" -197108,Bose SoundSport Headphones,1,99.99,05/20/19 12:45,"300 10th St, Dallas, TX 75001" -197109,Macbook Pro Laptop,1,1700,05/15/19 19:33,"803 11th St, Atlanta, GA 30301" -197110,Lightning Charging Cable,1,14.95,05/16/19 07:43,"427 Cedar St, Portland, OR 97035" -197111,Wired Headphones,1,11.99,05/07/19 18:10,"275 Lake St, Seattle, WA 98101" -197112,Lightning Charging Cable,2,14.95,05/01/19 16:12,"95 10th St, San Francisco, CA 94016" -197113,Lightning Charging Cable,1,14.95,05/02/19 18:05,"317 Center St, Boston, MA 02215" -197114,Lightning Charging Cable,1,14.95,05/10/19 21:08,"734 14th St, Portland, ME 04101" -197115,AAA Batteries (4-pack),4,2.99,05/21/19 17:14,"524 1st St, Los Angeles, CA 90001" -197116,Vareebadd Phone,1,400,05/28/19 16:21,"132 10th St, San Francisco, CA 94016" -197117,AAA Batteries (4-pack),1,2.99,05/09/19 19:36,"335 Lakeview St, Dallas, TX 75001" -197118,Google Phone,1,600,05/16/19 15:08,"47 2nd St, Austin, TX 73301" -197118,Bose SoundSport Headphones,1,99.99,05/16/19 15:08,"47 2nd St, Austin, TX 73301" -197119,AA Batteries (4-pack),1,3.84,05/06/19 13:47,"15 9th St, New York City, NY 10001" -197120,AA Batteries (4-pack),1,3.84,05/04/19 08:39,"409 Hill St, New York City, NY 10001" -197121,Bose SoundSport Headphones,1,99.99,05/29/19 06:39,"359 Cedar St, Dallas, TX 75001" -197122,AA Batteries (4-pack),1,3.84,05/08/19 16:52,"489 Johnson St, New York City, NY 10001" -197123,ThinkPad Laptop,1,999.99,05/26/19 16:43,"758 Jefferson St, New York City, NY 10001" -197124,Vareebadd Phone,1,400,05/23/19 12:13,"124 Sunset St, Seattle, WA 98101" -197124,Wired Headphones,1,11.99,05/23/19 12:13,"124 Sunset St, Seattle, WA 98101" -197125,Wired Headphones,1,11.99,05/11/19 16:39,"377 2nd St, Boston, MA 02215" -197126,27in 4K Gaming Monitor,1,389.99,05/19/19 09:53,"313 Church St, San Francisco, CA 94016" -197127,ThinkPad Laptop,1,999.99,05/14/19 23:15,"638 Jackson St, Los Angeles, CA 90001" -197128,AAA Batteries (4-pack),1,2.99,05/18/19 19:55,"433 Dogwood St, San Francisco, CA 94016" -197129,Bose SoundSport Headphones,1,99.99,05/12/19 19:20,"670 10th St, Los Angeles, CA 90001" -197130,Wired Headphones,1,11.99,05/17/19 10:11,"342 5th St, San Francisco, CA 94016" -197131,AAA Batteries (4-pack),2,2.99,05/13/19 13:25,"862 Lake St, Dallas, TX 75001" -197132,AAA Batteries (4-pack),2,2.99,05/27/19 14:13,"479 10th St, San Francisco, CA 94016" -197133,AA Batteries (4-pack),1,3.84,05/12/19 14:24,"718 South St, Los Angeles, CA 90001" -197134,Lightning Charging Cable,1,14.95,05/20/19 13:54,"399 Willow St, New York City, NY 10001" -197135,34in Ultrawide Monitor,1,379.99,05/27/19 16:00,"976 2nd St, New York City, NY 10001" -197136,USB-C Charging Cable,1,11.95,05/12/19 09:26,"627 Main St, Seattle, WA 98101" -197137,iPhone,1,700,05/11/19 09:09,"135 Cherry St, Los Angeles, CA 90001" -197138,Apple Airpods Headphones,1,150,05/09/19 13:31,"169 Main St, San Francisco, CA 94016" -197139,ThinkPad Laptop,1,999.99,05/05/19 12:27,"674 Hill St, Dallas, TX 75001" -197140,Apple Airpods Headphones,1,150,05/31/19 18:16,"342 West St, San Francisco, CA 94016" -197141,Macbook Pro Laptop,1,1700,05/01/19 10:40,"227 6th St, Dallas, TX 75001" -197142,ThinkPad Laptop,1,999.99,05/02/19 19:58,"381 Main St, New York City, NY 10001" -197143,Wired Headphones,1,11.99,05/29/19 19:20,"591 2nd St, New York City, NY 10001" -197144,Bose SoundSport Headphones,1,99.99,05/05/19 13:23,"638 1st St, Boston, MA 02215" -197145,Lightning Charging Cable,1,14.95,05/19/19 20:26,"421 Madison St, Los Angeles, CA 90001" -197146,Lightning Charging Cable,1,14.95,05/20/19 22:05,"761 Spruce St, Boston, MA 02215" -197147,AAA Batteries (4-pack),1,2.99,05/28/19 11:38,"81 9th St, San Francisco, CA 94016" -197148,Lightning Charging Cable,1,14.95,05/11/19 10:39,"285 Cedar St, Portland, OR 97035" -197149,AAA Batteries (4-pack),1,2.99,05/13/19 16:36,"873 Hill St, San Francisco, CA 94016" -197150,Google Phone,1,600,05/21/19 21:04,"956 13th St, Los Angeles, CA 90001" -197151,USB-C Charging Cable,1,11.95,05/15/19 11:11,"131 Ridge St, Atlanta, GA 30301" -197152,27in 4K Gaming Monitor,1,389.99,05/02/19 18:18,"812 4th St, San Francisco, CA 94016" -197153,Lightning Charging Cable,1,14.95,05/12/19 22:03,"454 Park St, Dallas, TX 75001" -197154,Lightning Charging Cable,1,14.95,05/10/19 18:11,"134 Meadow St, New York City, NY 10001" -197155,Wired Headphones,1,11.99,05/24/19 08:07,"459 Center St, Atlanta, GA 30301" -197156,ThinkPad Laptop,1,999.99,05/01/19 10:07,"430 Cedar St, Dallas, TX 75001" -197157,27in FHD Monitor,1,149.99,05/15/19 21:54,"461 Madison St, San Francisco, CA 94016" -197158,Wired Headphones,1,11.99,05/03/19 06:58,"691 Jackson St, New York City, NY 10001" -197159,34in Ultrawide Monitor,1,379.99,05/16/19 09:38,"330 6th St, Los Angeles, CA 90001" -197160,Bose SoundSport Headphones,1,99.99,05/08/19 20:52,"509 Johnson St, San Francisco, CA 94016" -197161,Wired Headphones,1,11.99,05/13/19 10:09,"162 Willow St, Seattle, WA 98101" -197162,Lightning Charging Cable,1,14.95,05/21/19 08:38,"41 Park St, Portland, OR 97035" -197163,USB-C Charging Cable,1,11.95,05/28/19 10:09,"842 Maple St, New York City, NY 10001" -197164,AA Batteries (4-pack),1,3.84,05/15/19 20:33,"331 9th St, Dallas, TX 75001" -197165,Apple Airpods Headphones,1,150,05/30/19 23:01,"515 5th St, Atlanta, GA 30301" -197166,AA Batteries (4-pack),1,3.84,05/29/19 18:04,"989 4th St, San Francisco, CA 94016" -197167,iPhone,1,700,05/07/19 12:06,"758 Adams St, San Francisco, CA 94016" -197168,27in 4K Gaming Monitor,1,389.99,05/30/19 16:48,"928 Wilson St, New York City, NY 10001" -197169,Macbook Pro Laptop,1,1700,05/13/19 17:49,"468 6th St, Boston, MA 02215" -197170,AAA Batteries (4-pack),1,2.99,05/16/19 21:07,"79 7th St, New York City, NY 10001" -197171,Wired Headphones,1,11.99,05/11/19 20:56,"370 Elm St, Dallas, TX 75001" -197172,Apple Airpods Headphones,1,150,05/27/19 08:52,"475 Lincoln St, Portland, OR 97035" -197173,Macbook Pro Laptop,1,1700,05/18/19 18:19,"593 River St, San Francisco, CA 94016" -197174,LG Dryer,1,600.0,05/08/19 01:04,"912 11th St, Los Angeles, CA 90001" -197175,USB-C Charging Cable,1,11.95,05/31/19 17:20,"578 10th St, San Francisco, CA 94016" -197176,Lightning Charging Cable,1,14.95,05/26/19 22:08,"746 Highland St, New York City, NY 10001" -197177,Wired Headphones,1,11.99,05/16/19 22:53,"512 Jackson St, Dallas, TX 75001" -197178,Lightning Charging Cable,1,14.95,05/26/19 11:52,"401 River St, New York City, NY 10001" -197179,ThinkPad Laptop,1,999.99,05/30/19 00:20,"228 Highland St, Los Angeles, CA 90001" -197180,Wired Headphones,1,11.99,05/15/19 13:41,"820 South St, Seattle, WA 98101" -197181,Bose SoundSport Headphones,1,99.99,05/23/19 23:03,"210 Ridge St, San Francisco, CA 94016" -197181,iPhone,1,700,05/23/19 23:03,"210 Ridge St, San Francisco, CA 94016" -,,,,, -197182,AA Batteries (4-pack),1,3.84,05/08/19 13:12,"603 Lake St, San Francisco, CA 94016" -197183,Wired Headphones,1,11.99,05/13/19 11:52,"442 North St, San Francisco, CA 94016" -197184,AA Batteries (4-pack),1,3.84,05/10/19 07:59,"619 11th St, Dallas, TX 75001" -197185,AA Batteries (4-pack),2,3.84,05/07/19 09:53,"219 Main St, Atlanta, GA 30301" -197186,Lightning Charging Cable,1,14.95,05/30/19 12:16,"913 7th St, Portland, OR 97035" -197187,Lightning Charging Cable,1,14.95,05/21/19 14:30,"791 Hickory St, New York City, NY 10001" -197188,Lightning Charging Cable,1,14.95,05/27/19 19:33,"119 Hickory St, San Francisco, CA 94016" -197189,AA Batteries (4-pack),1,3.84,05/16/19 07:20,"368 Jackson St, San Francisco, CA 94016" -197190,AA Batteries (4-pack),1,3.84,05/11/19 09:54,"979 Washington St, Seattle, WA 98101" -197191,Wired Headphones,1,11.99,05/31/19 10:02,"721 1st St, San Francisco, CA 94016" -197192,AA Batteries (4-pack),2,3.84,05/21/19 15:28,"323 9th St, Boston, MA 02215" -197193,AAA Batteries (4-pack),4,2.99,05/05/19 12:03,"441 8th St, Atlanta, GA 30301" -197194,AAA Batteries (4-pack),2,2.99,05/26/19 15:22,"553 2nd St, Los Angeles, CA 90001" -197195,Wired Headphones,1,11.99,05/04/19 16:20,"462 River St, Los Angeles, CA 90001" -197196,Lightning Charging Cable,1,14.95,05/24/19 15:40,"370 7th St, San Francisco, CA 94016" -197197,AAA Batteries (4-pack),1,2.99,05/25/19 11:44,"455 Ridge St, Portland, OR 97035" -197198,34in Ultrawide Monitor,1,379.99,05/14/19 14:28,"959 North St, San Francisco, CA 94016" -197199,AAA Batteries (4-pack),1,2.99,05/31/19 13:51,"831 Washington St, Austin, TX 73301" -197200,AAA Batteries (4-pack),2,2.99,05/03/19 09:31,"732 River St, San Francisco, CA 94016" -197201,ThinkPad Laptop,1,999.99,05/26/19 17:43,"631 Willow St, New York City, NY 10001" -197202,Lightning Charging Cable,1,14.95,05/27/19 10:00,"717 4th St, New York City, NY 10001" -197203,AA Batteries (4-pack),1,3.84,05/17/19 22:43,"876 12th St, Atlanta, GA 30301" -197204,34in Ultrawide Monitor,1,379.99,05/12/19 09:58,"703 9th St, Seattle, WA 98101" -197205,Bose SoundSport Headphones,1,99.99,05/22/19 16:16,"582 13th St, New York City, NY 10001" -197206,Bose SoundSport Headphones,1,99.99,05/07/19 21:45,"83 Walnut St, Austin, TX 73301" -197207,Lightning Charging Cable,1,14.95,05/30/19 16:51,"655 Elm St, Los Angeles, CA 90001" -197208,Wired Headphones,1,11.99,05/18/19 12:41,"416 11th St, Portland, OR 97035" -197209,iPhone,1,700,05/24/19 07:49,"314 Hickory St, San Francisco, CA 94016" -197209,Lightning Charging Cable,1,14.95,05/24/19 07:49,"314 Hickory St, San Francisco, CA 94016" -197210,AA Batteries (4-pack),1,3.84,05/21/19 12:41,"650 11th St, Los Angeles, CA 90001" -197211,27in 4K Gaming Monitor,1,389.99,05/25/19 15:43,"975 13th St, San Francisco, CA 94016" -197212,Wired Headphones,2,11.99,05/29/19 15:19,"760 Lake St, San Francisco, CA 94016" -197213,AA Batteries (4-pack),1,3.84,05/09/19 17:24,"328 Meadow St, Dallas, TX 75001" -197214,Apple Airpods Headphones,1,150,05/22/19 21:02,"288 Johnson St, Portland, ME 04101" -197215,AAA Batteries (4-pack),1,2.99,05/20/19 12:18,"901 Center St, Seattle, WA 98101" -197216,iPhone,1,700,05/09/19 16:50,"34 1st St, Portland, ME 04101" -197217,AAA Batteries (4-pack),1,2.99,05/17/19 18:10,"391 Meadow St, San Francisco, CA 94016" -197218,Wired Headphones,1,11.99,05/28/19 10:25,"288 Hill St, San Francisco, CA 94016" -197219,Flatscreen TV,1,300,05/17/19 14:07,"957 9th St, New York City, NY 10001" -197220,AA Batteries (4-pack),1,3.84,05/08/19 21:24,"54 6th St, Dallas, TX 75001" -197221,AAA Batteries (4-pack),1,2.99,05/15/19 12:02,"515 Meadow St, Dallas, TX 75001" -197222,iPhone,1,700,05/10/19 07:55,"401 12th St, Atlanta, GA 30301" -197223,AAA Batteries (4-pack),2,2.99,05/28/19 07:42,"200 North St, Dallas, TX 75001" -197224,USB-C Charging Cable,1,11.95,05/12/19 20:48,"587 1st St, Austin, TX 73301" -197225,Macbook Pro Laptop,1,1700,05/22/19 14:13,"467 Park St, Atlanta, GA 30301" -197226,Apple Airpods Headphones,1,150,05/05/19 17:54,"797 Ridge St, San Francisco, CA 94016" -197227,34in Ultrawide Monitor,1,379.99,05/14/19 20:24,"110 Walnut St, New York City, NY 10001" -197228,Apple Airpods Headphones,1,150,05/19/19 21:53,"67 Dogwood St, Seattle, WA 98101" -197229,Bose SoundSport Headphones,1,99.99,05/12/19 11:28,"259 Washington St, New York City, NY 10001" -197230,AAA Batteries (4-pack),1,2.99,05/25/19 20:11,"591 Spruce St, Boston, MA 02215" -197231,Flatscreen TV,1,300,05/26/19 22:58,"648 Jackson St, San Francisco, CA 94016" -197232,Lightning Charging Cable,1,14.95,05/29/19 08:45,"295 9th St, Los Angeles, CA 90001" -197233,USB-C Charging Cable,1,11.95,05/29/19 15:52,"616 Park St, San Francisco, CA 94016" -197234,34in Ultrawide Monitor,1,379.99,05/26/19 13:26,"837 5th St, Atlanta, GA 30301" -197235,Apple Airpods Headphones,1,150,05/02/19 18:45,"230 14th St, Boston, MA 02215" -197236,34in Ultrawide Monitor,1,379.99,05/30/19 07:18,"660 Dogwood St, Dallas, TX 75001" -197237,Macbook Pro Laptop,1,1700,05/29/19 16:21,"900 4th St, San Francisco, CA 94016" -197238,Apple Airpods Headphones,1,150,05/28/19 14:11,"543 Chestnut St, Seattle, WA 98101" -197239,AA Batteries (4-pack),2,3.84,05/13/19 12:38,"10 Hill St, Boston, MA 02215" -197240,27in FHD Monitor,1,149.99,05/12/19 11:28,"672 Cherry St, Seattle, WA 98101" -197241,Google Phone,1,600,05/28/19 19:05,"553 Jackson St, Portland, OR 97035" -197242,AA Batteries (4-pack),2,3.84,05/12/19 18:38,"132 11th St, Portland, OR 97035" -197243,iPhone,1,700,05/27/19 13:46,"803 6th St, Atlanta, GA 30301" -197244,Bose SoundSport Headphones,1,99.99,05/27/19 00:17,"170 Spruce St, Atlanta, GA 30301" -197245,AA Batteries (4-pack),1,3.84,05/01/19 15:49,"983 8th St, Portland, OR 97035" -197246,USB-C Charging Cable,1,11.95,05/04/19 15:56,"195 6th St, Boston, MA 02215" -197247,Lightning Charging Cable,1,14.95,05/10/19 05:11,"880 South St, San Francisco, CA 94016" -197248,USB-C Charging Cable,1,11.95,05/23/19 09:19,"261 2nd St, San Francisco, CA 94016" -197249,Bose SoundSport Headphones,1,99.99,05/04/19 19:21,"420 2nd St, Boston, MA 02215" -197250,Macbook Pro Laptop,1,1700,05/02/19 20:24,"931 13th St, San Francisco, CA 94016" -197251,Bose SoundSport Headphones,1,99.99,05/06/19 00:23,"566 Dogwood St, Los Angeles, CA 90001" -197252,Macbook Pro Laptop,1,1700,05/28/19 15:49,"725 Forest St, San Francisco, CA 94016" -197253,AAA Batteries (4-pack),1,2.99,05/20/19 21:57,"257 Dogwood St, Los Angeles, CA 90001" -197254,27in 4K Gaming Monitor,1,389.99,05/12/19 09:57,"819 Lake St, New York City, NY 10001" -197255,AAA Batteries (4-pack),2,2.99,05/13/19 18:09,"226 8th St, Los Angeles, CA 90001" -197256,USB-C Charging Cable,1,11.95,05/30/19 23:46,"103 1st St, Seattle, WA 98101" -197257,Apple Airpods Headphones,1,150,05/19/19 20:37,"820 West St, Seattle, WA 98101" -197258,Wired Headphones,1,11.99,05/10/19 00:21,"270 Adams St, Boston, MA 02215" -197259,Wired Headphones,1,11.99,05/09/19 17:08,"949 Highland St, Dallas, TX 75001" -197260,Google Phone,1,600,05/24/19 10:47,"870 Lake St, Seattle, WA 98101" -197261,USB-C Charging Cable,1,11.95,05/31/19 16:27,"715 Elm St, San Francisco, CA 94016" -197262,Bose SoundSport Headphones,1,99.99,05/26/19 09:14,"713 11th St, New York City, NY 10001" -197263,USB-C Charging Cable,1,11.95,05/14/19 13:41,"446 Elm St, New York City, NY 10001" -197264,20in Monitor,1,109.99,05/30/19 21:59,"84 Main St, New York City, NY 10001" -197265,Apple Airpods Headphones,1,150,05/13/19 23:10,"82 Johnson St, Boston, MA 02215" -197266,USB-C Charging Cable,1,11.95,05/16/19 09:16,"200 Cedar St, Atlanta, GA 30301" -197267,Google Phone,1,600,05/19/19 12:24,"10 Lincoln St, San Francisco, CA 94016" -197268,AAA Batteries (4-pack),1,2.99,05/22/19 17:42,"330 Johnson St, Los Angeles, CA 90001" -197269,LG Washing Machine,1,600.0,05/08/19 20:55,"89 12th St, Los Angeles, CA 90001" -197270,Wired Headphones,1,11.99,05/03/19 08:17,"375 Cedar St, Dallas, TX 75001" -197271,Macbook Pro Laptop,1,1700,05/07/19 15:44,"574 Forest St, Atlanta, GA 30301" -197272,ThinkPad Laptop,1,999.99,05/15/19 10:39,"910 Main St, Portland, OR 97035" -197273,iPhone,1,700,05/25/19 19:42,"407 Chestnut St, Seattle, WA 98101" -197273,Lightning Charging Cable,1,14.95,05/25/19 19:42,"407 Chestnut St, Seattle, WA 98101" -197274,27in 4K Gaming Monitor,1,389.99,05/23/19 14:53,"795 12th St, San Francisco, CA 94016" -197275,AA Batteries (4-pack),1,3.84,05/28/19 22:59,"697 Spruce St, Dallas, TX 75001" -197276,AAA Batteries (4-pack),2,2.99,05/27/19 14:08,"313 5th St, Atlanta, GA 30301" -197277,34in Ultrawide Monitor,1,379.99,05/17/19 02:16,"688 Willow St, Dallas, TX 75001" -197278,AA Batteries (4-pack),2,3.84,05/12/19 15:36,"679 Johnson St, Dallas, TX 75001" -197279,34in Ultrawide Monitor,1,379.99,05/02/19 18:24,"135 Chestnut St, Seattle, WA 98101" -197280,iPhone,1,700,05/09/19 15:59,"395 7th St, Atlanta, GA 30301" -197280,Apple Airpods Headphones,1,150,05/09/19 15:59,"395 7th St, Atlanta, GA 30301" -197281,AAA Batteries (4-pack),2,2.99,05/29/19 09:33,"100 13th St, San Francisco, CA 94016" -197282,LG Washing Machine,1,600.0,05/23/19 20:42,"775 North St, Los Angeles, CA 90001" -197283,Apple Airpods Headphones,1,150,05/10/19 17:28,"277 Wilson St, Atlanta, GA 30301" -197284,Lightning Charging Cable,1,14.95,05/14/19 21:53,"286 Elm St, New York City, NY 10001" -197285,Lightning Charging Cable,1,14.95,05/02/19 22:27,"204 Walnut St, San Francisco, CA 94016" -197286,Google Phone,1,600,05/19/19 21:38,"275 Meadow St, San Francisco, CA 94016" -197287,Wired Headphones,1,11.99,05/17/19 23:06,"522 14th St, San Francisco, CA 94016" -197288,iPhone,1,700,05/03/19 08:52,"182 Forest St, Seattle, WA 98101" -197288,Apple Airpods Headphones,1,150,05/03/19 08:52,"182 Forest St, Seattle, WA 98101" -197289,ThinkPad Laptop,1,999.99,05/22/19 11:53,"85 West St, Atlanta, GA 30301" -197290,Lightning Charging Cable,1,14.95,05/08/19 15:37,"69 Jackson St, Dallas, TX 75001" -197291,27in FHD Monitor,1,149.99,05/05/19 15:02,"109 West St, San Francisco, CA 94016" -197292,Wired Headphones,1,11.99,05/08/19 17:36,"918 Madison St, Los Angeles, CA 90001" -197293,AAA Batteries (4-pack),3,2.99,05/15/19 22:32,"291 Meadow St, Portland, OR 97035" -197294,AA Batteries (4-pack),1,3.84,05/12/19 17:36,"986 2nd St, San Francisco, CA 94016" -197295,ThinkPad Laptop,1,999.99,05/26/19 10:32,"916 Walnut St, San Francisco, CA 94016" -197296,Lightning Charging Cable,1,14.95,05/21/19 02:02,"977 Park St, San Francisco, CA 94016" -197297,Lightning Charging Cable,1,14.95,05/20/19 15:03,"97 Forest St, San Francisco, CA 94016" -197298,Wired Headphones,1,11.99,05/30/19 15:47,"486 7th St, Boston, MA 02215" -197299,Apple Airpods Headphones,1,150,05/01/19 20:10,"434 River St, Dallas, TX 75001" -197300,Lightning Charging Cable,1,14.95,05/31/19 11:12,"854 Madison St, Dallas, TX 75001" -197301,Apple Airpods Headphones,1,150,05/04/19 19:14,"565 1st St, Portland, ME 04101" -197302,27in FHD Monitor,1,149.99,05/10/19 17:52,"261 South St, Boston, MA 02215" -197303,Lightning Charging Cable,1,14.95,05/24/19 10:24,"695 Lake St, Dallas, TX 75001" -197304,AA Batteries (4-pack),1,3.84,05/12/19 21:47,"47 Johnson St, Seattle, WA 98101" -197305,Vareebadd Phone,1,400,05/03/19 12:31,"761 North St, Portland, OR 97035" -197306,Apple Airpods Headphones,1,150,05/21/19 16:34,"750 Hickory St, Atlanta, GA 30301" -197307,Wired Headphones,1,11.99,05/12/19 19:11,"459 9th St, Austin, TX 73301" -197308,Wired Headphones,1,11.99,05/08/19 21:49,"328 Highland St, San Francisco, CA 94016" -197309,USB-C Charging Cable,1,11.95,05/25/19 16:43,"913 Lakeview St, San Francisco, CA 94016" -197310,Wired Headphones,1,11.99,05/20/19 19:41,"938 9th St, Boston, MA 02215" -197311,USB-C Charging Cable,1,11.95,05/30/19 19:09,"697 Lake St, Los Angeles, CA 90001" -197312,27in FHD Monitor,1,149.99,05/06/19 09:18,"373 Maple St, Boston, MA 02215" -197313,AA Batteries (4-pack),1,3.84,05/09/19 13:35,"620 Jackson St, San Francisco, CA 94016" -197314,USB-C Charging Cable,1,11.95,05/16/19 22:00,"944 Johnson St, Los Angeles, CA 90001" -197315,27in FHD Monitor,1,149.99,05/16/19 17:13,"103 6th St, Los Angeles, CA 90001" -197316,Lightning Charging Cable,1,14.95,05/15/19 13:57,"996 12th St, San Francisco, CA 94016" -197317,AAA Batteries (4-pack),1,2.99,05/08/19 19:09,"345 Hickory St, San Francisco, CA 94016" -197318,AA Batteries (4-pack),1,3.84,05/19/19 09:51,"896 1st St, Portland, OR 97035" -197318,Wired Headphones,1,11.99,05/19/19 09:51,"896 1st St, Portland, OR 97035" -197319,Apple Airpods Headphones,1,150,05/06/19 21:09,"796 6th St, Austin, TX 73301" -197320,27in FHD Monitor,1,149.99,05/02/19 15:22,"93 West St, Portland, OR 97035" -197321,Apple Airpods Headphones,1,150,05/22/19 19:11,"154 Dogwood St, San Francisco, CA 94016" -197322,Lightning Charging Cable,1,14.95,05/31/19 11:45,"958 Chestnut St, San Francisco, CA 94016" -197323,Wired Headphones,1,11.99,05/24/19 16:02,"280 Cedar St, San Francisco, CA 94016" -197324,ThinkPad Laptop,1,999.99,05/11/19 23:49,"773 1st St, Boston, MA 02215" -197325,Lightning Charging Cable,1,14.95,05/14/19 08:01,"614 13th St, Boston, MA 02215" -197326,AA Batteries (4-pack),1,3.84,05/12/19 13:26,"663 Walnut St, Atlanta, GA 30301" -197327,Apple Airpods Headphones,1,150,05/10/19 19:03,"849 Lincoln St, San Francisco, CA 94016" -197328,Google Phone,1,600,05/16/19 09:59,"181 Wilson St, New York City, NY 10001" -197329,Lightning Charging Cable,1,14.95,05/07/19 12:31,"726 Highland St, Atlanta, GA 30301" -197330,AAA Batteries (4-pack),1,2.99,05/15/19 11:20,"423 Main St, Austin, TX 73301" -197331,Wired Headphones,1,11.99,05/17/19 07:21,"962 13th St, New York City, NY 10001" -197332,AAA Batteries (4-pack),2,2.99,05/24/19 20:37,"798 14th St, San Francisco, CA 94016" -197333,Flatscreen TV,1,300,05/18/19 12:27,"592 14th St, Los Angeles, CA 90001" -197334,34in Ultrawide Monitor,1,379.99,05/25/19 06:05,"840 Hill St, San Francisco, CA 94016" -197335,Lightning Charging Cable,1,14.95,05/12/19 13:31,"462 Elm St, Los Angeles, CA 90001" -197336,Flatscreen TV,1,300,05/16/19 08:52,"923 Forest St, New York City, NY 10001" -197337,AA Batteries (4-pack),1,3.84,05/24/19 12:09,"878 Adams St, San Francisco, CA 94016" -197338,Wired Headphones,1,11.99,05/09/19 06:01,"456 6th St, New York City, NY 10001" -197339,Bose SoundSport Headphones,1,99.99,05/03/19 19:51,"280 Walnut St, Dallas, TX 75001" -197340,AA Batteries (4-pack),1,3.84,05/23/19 15:26,"844 Adams St, Boston, MA 02215" -197341,Flatscreen TV,1,300,05/04/19 12:56,"483 Lakeview St, Atlanta, GA 30301" -197342,AA Batteries (4-pack),1,3.84,05/25/19 10:40,"3 1st St, Dallas, TX 75001" -197343,USB-C Charging Cable,1,11.95,05/28/19 22:12,"774 North St, Austin, TX 73301" -197344,Apple Airpods Headphones,1,150,05/04/19 12:09,"748 Washington St, Los Angeles, CA 90001" -197345,27in FHD Monitor,1,149.99,05/06/19 23:20,"951 4th St, San Francisco, CA 94016" -197346,Macbook Pro Laptop,1,1700,05/12/19 22:32,"955 Wilson St, Los Angeles, CA 90001" -197347,AA Batteries (4-pack),1,3.84,05/31/19 12:11,"610 Maple St, San Francisco, CA 94016" -197348,Lightning Charging Cable,1,14.95,05/08/19 20:59,"711 14th St, San Francisco, CA 94016" -197349,AAA Batteries (4-pack),1,2.99,05/17/19 07:11,"982 Willow St, Boston, MA 02215" -197350,USB-C Charging Cable,1,11.95,05/01/19 14:49,"126 12th St, Los Angeles, CA 90001" -197351,USB-C Charging Cable,1,11.95,05/24/19 10:38,"660 Hill St, Dallas, TX 75001" -197352,27in FHD Monitor,1,149.99,05/20/19 09:51,"858 Cherry St, San Francisco, CA 94016" -197353,Google Phone,1,600,05/25/19 13:53,"237 Ridge St, Los Angeles, CA 90001" -197354,Bose SoundSport Headphones,1,99.99,05/27/19 11:49,"340 Dogwood St, San Francisco, CA 94016" -197355,USB-C Charging Cable,1,11.95,05/05/19 22:58,"521 Lake St, Los Angeles, CA 90001" -197356,Google Phone,1,600,05/04/19 09:22,"178 Main St, Atlanta, GA 30301" -197356,USB-C Charging Cable,1,11.95,05/04/19 09:22,"178 Main St, Atlanta, GA 30301" -197357,Google Phone,1,600,05/16/19 22:28,"487 Washington St, Boston, MA 02215" -197358,Wired Headphones,2,11.99,05/01/19 19:50,"452 Lincoln St, Los Angeles, CA 90001" -197359,Bose SoundSport Headphones,1,99.99,05/01/19 19:39,"342 9th St, Los Angeles, CA 90001" -197360,Lightning Charging Cable,1,14.95,05/03/19 10:24,"780 7th St, Seattle, WA 98101" -197361,Google Phone,1,600,05/12/19 12:05,"611 Willow St, San Francisco, CA 94016" -197362,Wired Headphones,1,11.99,05/12/19 10:44,"209 Maple St, Atlanta, GA 30301" -197363,USB-C Charging Cable,1,11.95,05/28/19 15:27,"208 Park St, San Francisco, CA 94016" -197364,USB-C Charging Cable,1,11.95,05/24/19 13:57,"859 Hickory St, Dallas, TX 75001" -197365,Bose SoundSport Headphones,1,99.99,05/13/19 21:48,"92 Madison St, New York City, NY 10001" -197366,Lightning Charging Cable,1,14.95,05/24/19 10:21,"108 North St, Los Angeles, CA 90001" -197367,Vareebadd Phone,1,400,05/01/19 14:22,"60 10th St, New York City, NY 10001" -197367,USB-C Charging Cable,1,11.95,05/01/19 14:22,"60 10th St, New York City, NY 10001" -197368,iPhone,1,700,05/15/19 10:30,"827 Sunset St, Los Angeles, CA 90001" -197369,Wired Headphones,1,11.99,05/17/19 10:49,"700 11th St, Los Angeles, CA 90001" -197370,AAA Batteries (4-pack),1,2.99,05/28/19 12:49,"319 Highland St, Atlanta, GA 30301" -197371,iPhone,1,700,05/08/19 18:35,"493 4th St, Dallas, TX 75001" -197372,Lightning Charging Cable,1,14.95,05/10/19 23:11,"731 11th St, New York City, NY 10001" -197372,Bose SoundSport Headphones,1,99.99,05/10/19 23:11,"731 11th St, New York City, NY 10001" -197373,Apple Airpods Headphones,1,150,05/24/19 21:05,"473 Sunset St, San Francisco, CA 94016" -197374,Wired Headphones,1,11.99,05/02/19 20:46,"743 Ridge St, San Francisco, CA 94016" -197375,Apple Airpods Headphones,1,150,05/21/19 10:01,"73 Madison St, Dallas, TX 75001" -197376,USB-C Charging Cable,1,11.95,05/24/19 07:45,"382 8th St, Los Angeles, CA 90001" -197377,iPhone,1,700,05/19/19 09:59,"795 8th St, Boston, MA 02215" -197378,Lightning Charging Cable,1,14.95,05/24/19 10:45,"102 Cedar St, New York City, NY 10001" -197379,Apple Airpods Headphones,1,150,05/02/19 18:20,"204 Lake St, San Francisco, CA 94016" -197380,AAA Batteries (4-pack),1,2.99,05/29/19 14:50,"534 Willow St, Seattle, WA 98101" -197381,Apple Airpods Headphones,2,150,05/20/19 16:31,"208 8th St, Atlanta, GA 30301" -197382,Lightning Charging Cable,1,14.95,05/30/19 12:46,"391 13th St, Dallas, TX 75001" -197383,Wired Headphones,1,11.99,05/15/19 22:58,"189 Washington St, New York City, NY 10001" -197384,AAA Batteries (4-pack),2,2.99,05/30/19 06:49,"418 Highland St, Los Angeles, CA 90001" -197385,Bose SoundSport Headphones,1,99.99,05/07/19 23:43,"16 1st St, New York City, NY 10001" -197386,34in Ultrawide Monitor,1,379.99,05/19/19 13:36,"995 Lake St, Dallas, TX 75001" -197387,Flatscreen TV,1,300,05/19/19 21:02,"764 11th St, San Francisco, CA 94016" -197388,Bose SoundSport Headphones,1,99.99,05/14/19 11:37,"439 2nd St, San Francisco, CA 94016" -197389,AAA Batteries (4-pack),1,2.99,05/12/19 13:18,"948 Cherry St, Dallas, TX 75001" -197390,AAA Batteries (4-pack),1,2.99,05/02/19 01:42,"251 Cedar St, New York City, NY 10001" -197391,AAA Batteries (4-pack),1,2.99,05/31/19 10:00,"102 Meadow St, Seattle, WA 98101" -197392,Vareebadd Phone,1,400,05/02/19 19:33,"478 4th St, Atlanta, GA 30301" -197393,AAA Batteries (4-pack),1,2.99,05/07/19 21:04,"234 Meadow St, Los Angeles, CA 90001" -197394,Macbook Pro Laptop,1,1700,05/05/19 21:24,"993 Highland St, Boston, MA 02215" -197395,AA Batteries (4-pack),1,3.84,05/19/19 07:04,"208 12th St, Los Angeles, CA 90001" -197396,27in FHD Monitor,1,149.99,05/29/19 14:25,"913 Cedar St, San Francisco, CA 94016" -197397,Lightning Charging Cable,1,14.95,05/29/19 13:50,"907 Maple St, Los Angeles, CA 90001" -197398,iPhone,1,700,05/22/19 18:16,"170 Pine St, Dallas, TX 75001" -197399,27in 4K Gaming Monitor,1,389.99,05/01/19 22:12,"65 Maple St, Dallas, TX 75001" -197400,27in 4K Gaming Monitor,1,389.99,05/17/19 20:43,"65 4th St, Boston, MA 02215" -197401,27in FHD Monitor,1,149.99,05/19/19 13:31,"615 Adams St, Los Angeles, CA 90001" -197402,34in Ultrawide Monitor,1,379.99,05/01/19 19:30,"306 Lakeview St, San Francisco, CA 94016" -197403,AAA Batteries (4-pack),2,2.99,05/08/19 11:13,"609 1st St, San Francisco, CA 94016" -197404,Apple Airpods Headphones,1,150,05/12/19 20:32,"560 13th St, San Francisco, CA 94016" -197405,AAA Batteries (4-pack),3,2.99,05/12/19 22:38,"130 West St, Dallas, TX 75001" -197406,20in Monitor,1,109.99,05/27/19 21:20,"294 Ridge St, San Francisco, CA 94016" -197407,Google Phone,1,600,05/04/19 11:53,"169 Main St, Boston, MA 02215" -197408,AA Batteries (4-pack),1,3.84,05/11/19 13:14,"501 2nd St, Atlanta, GA 30301" -197409,AA Batteries (4-pack),3,3.84,05/31/19 18:38,"203 Main St, San Francisco, CA 94016" -197410,USB-C Charging Cable,1,11.95,05/13/19 22:28,"518 6th St, Dallas, TX 75001" -197411,AA Batteries (4-pack),1,3.84,05/31/19 14:51,"4 Johnson St, Austin, TX 73301" -197412,AA Batteries (4-pack),1,3.84,05/14/19 17:52,"476 Park St, Seattle, WA 98101" -197413,34in Ultrawide Monitor,1,379.99,05/30/19 10:51,"229 Park St, Boston, MA 02215" -197414,Wired Headphones,1,11.99,05/10/19 12:43,"665 Jefferson St, Los Angeles, CA 90001" -197415,Apple Airpods Headphones,1,150,05/30/19 09:22,"53 South St, Seattle, WA 98101" -197416,AA Batteries (4-pack),1,3.84,05/14/19 13:37,"426 Jackson St, Los Angeles, CA 90001" -197417,USB-C Charging Cable,1,11.95,05/12/19 11:07,"636 4th St, Seattle, WA 98101" -197418,AAA Batteries (4-pack),1,2.99,05/23/19 07:08,"554 4th St, Atlanta, GA 30301" -197419,Lightning Charging Cable,1,14.95,05/28/19 22:11,"669 Church St, Los Angeles, CA 90001" -197420,AA Batteries (4-pack),1,3.84,05/11/19 20:52,"154 10th St, Boston, MA 02215" -197421,AAA Batteries (4-pack),1,2.99,05/01/19 17:32,"500 Washington St, New York City, NY 10001" -197422,USB-C Charging Cable,2,11.95,05/13/19 09:18,"985 Jackson St, Los Angeles, CA 90001" -197423,Lightning Charging Cable,1,14.95,05/15/19 22:01,"667 Hickory St, Seattle, WA 98101" -197424,Wired Headphones,1,11.99,05/07/19 19:27,"177 Cedar St, Los Angeles, CA 90001" -197425,34in Ultrawide Monitor,1,379.99,05/28/19 20:00,"466 14th St, Austin, TX 73301" -197426,Google Phone,1,600,05/17/19 12:07,"499 Elm St, San Francisco, CA 94016" -197427,Macbook Pro Laptop,1,1700,05/18/19 17:18,"703 Pine St, San Francisco, CA 94016" -197428,Wired Headphones,1,11.99,05/31/19 11:56,"197 Highland St, Atlanta, GA 30301" -197429,Apple Airpods Headphones,1,150,05/18/19 18:41,"165 Sunset St, San Francisco, CA 94016" -197430,AAA Batteries (4-pack),1,2.99,05/03/19 11:40,"952 Cedar St, Seattle, WA 98101" -197431,Bose SoundSport Headphones,1,99.99,05/16/19 20:45,"848 Center St, Seattle, WA 98101" -197432,Apple Airpods Headphones,1,150,05/03/19 18:59,"387 10th St, Boston, MA 02215" -197433,AA Batteries (4-pack),2,3.84,05/14/19 20:49,"576 Washington St, Boston, MA 02215" -197434,AA Batteries (4-pack),2,3.84,05/30/19 13:39,"59 Hill St, Boston, MA 02215" -197435,34in Ultrawide Monitor,1,379.99,05/05/19 19:22,"882 Highland St, Atlanta, GA 30301" -197436,Bose SoundSport Headphones,1,99.99,05/14/19 17:37,"638 Pine St, Los Angeles, CA 90001" -197437,AAA Batteries (4-pack),4,2.99,05/20/19 11:21,"606 Johnson St, San Francisco, CA 94016" -197438,Google Phone,1,600,05/22/19 12:14,"964 Walnut St, San Francisco, CA 94016" -197439,Wired Headphones,1,11.99,05/20/19 14:35,"386 Forest St, San Francisco, CA 94016" -197440,Apple Airpods Headphones,1,150,05/07/19 12:25,"16 West St, Los Angeles, CA 90001" -197441,USB-C Charging Cable,1,11.95,05/01/19 14:52,"601 South St, New York City, NY 10001" -197442,Google Phone,1,600,05/16/19 21:49,"352 4th St, Boston, MA 02215" -197443,AAA Batteries (4-pack),2,2.99,05/22/19 19:15,"740 Hill St, Dallas, TX 75001" -197444,AAA Batteries (4-pack),2,2.99,05/19/19 11:46,"480 14th St, Los Angeles, CA 90001" -197445,USB-C Charging Cable,1,11.95,05/02/19 17:51,"682 Jackson St, Los Angeles, CA 90001" -197446,AAA Batteries (4-pack),1,2.99,05/01/19 19:59,"894 12th St, Atlanta, GA 30301" -197447,USB-C Charging Cable,2,11.95,05/05/19 17:59,"966 Madison St, Austin, TX 73301" -197448,Apple Airpods Headphones,1,150,05/11/19 20:14,"665 Cherry St, Seattle, WA 98101" -197449,Macbook Pro Laptop,1,1700,05/12/19 09:39,"957 Wilson St, Los Angeles, CA 90001" -197450,iPhone,1,700,05/23/19 13:46,"116 8th St, Seattle, WA 98101" -197451,Wired Headphones,1,11.99,05/02/19 12:13,"678 Hickory St, San Francisco, CA 94016" -197452,27in 4K Gaming Monitor,1,389.99,05/09/19 20:30,"969 Lake St, Seattle, WA 98101" -197453,Apple Airpods Headphones,1,150,05/14/19 01:36,"540 1st St, Austin, TX 73301" -197453,Vareebadd Phone,1,400,05/14/19 01:36,"540 1st St, Austin, TX 73301" -197454,Lightning Charging Cable,1,14.95,05/11/19 09:01,"674 Lincoln St, Seattle, WA 98101" -197455,Bose SoundSport Headphones,1,99.99,05/09/19 21:48,"440 Lake St, San Francisco, CA 94016" -197456,34in Ultrawide Monitor,1,379.99,05/03/19 19:49,"865 Lakeview St, Boston, MA 02215" -197457,AAA Batteries (4-pack),2,2.99,05/11/19 13:00,"636 12th St, Austin, TX 73301" -197458,AA Batteries (4-pack),3,3.84,05/12/19 22:28,"406 South St, New York City, NY 10001" -197459,Lightning Charging Cable,1,14.95,05/10/19 12:52,"526 4th St, San Francisco, CA 94016" -197460,Lightning Charging Cable,1,14.95,05/22/19 14:50,"258 13th St, San Francisco, CA 94016" -197461,AA Batteries (4-pack),2,3.84,05/01/19 12:24,"696 Highland St, Los Angeles, CA 90001" -197462,Bose SoundSport Headphones,1,99.99,05/29/19 18:51,"435 8th St, Atlanta, GA 30301" -197463,ThinkPad Laptop,1,999.99,05/03/19 14:37,"311 Park St, New York City, NY 10001" -197464,27in 4K Gaming Monitor,1,389.99,05/24/19 18:45,"41 North St, New York City, NY 10001" -197465,Lightning Charging Cable,1,14.95,05/15/19 19:52,"493 5th St, Atlanta, GA 30301" -197466,27in 4K Gaming Monitor,1,389.99,05/08/19 09:56,"699 Lake St, Boston, MA 02215" -197466,AAA Batteries (4-pack),4,2.99,05/08/19 09:56,"699 Lake St, Boston, MA 02215" -197467,USB-C Charging Cable,1,11.95,05/13/19 14:51,"300 2nd St, Boston, MA 02215" -197468,Wired Headphones,1,11.99,05/31/19 19:21,"665 Adams St, San Francisco, CA 94016" -197469,Flatscreen TV,1,300,05/05/19 01:18,"524 North St, Atlanta, GA 30301" -197470,AA Batteries (4-pack),1,3.84,05/04/19 12:38,"735 West St, Austin, TX 73301" -197471,27in FHD Monitor,1,149.99,05/05/19 11:06,"975 Ridge St, Dallas, TX 75001" -197472,Apple Airpods Headphones,1,150,05/06/19 20:34,"626 West St, Los Angeles, CA 90001" -197473,Vareebadd Phone,1,400,05/30/19 20:21,"617 Dogwood St, Boston, MA 02215" -197473,USB-C Charging Cable,1,11.95,05/30/19 20:21,"617 Dogwood St, Boston, MA 02215" -197474,27in 4K Gaming Monitor,1,389.99,05/02/19 11:52,"683 5th St, Atlanta, GA 30301" -197475,Apple Airpods Headphones,1,150,05/28/19 13:09,"182 Wilson St, Los Angeles, CA 90001" -197476,27in 4K Gaming Monitor,1,389.99,05/09/19 10:41,"318 Lincoln St, San Francisco, CA 94016" -197477,Wired Headphones,1,11.99,05/30/19 16:41,"359 Spruce St, Boston, MA 02215" -197478,Macbook Pro Laptop,1,1700,05/21/19 19:03,"90 Chestnut St, San Francisco, CA 94016" -197479,ThinkPad Laptop,1,999.99,05/03/19 11:37,"862 Wilson St, Portland, OR 97035" -197480,AA Batteries (4-pack),1,3.84,05/09/19 14:52,"868 Willow St, Seattle, WA 98101" -197481,Wired Headphones,1,11.99,05/17/19 12:32,"35 Highland St, Boston, MA 02215" -197482,27in FHD Monitor,1,149.99,05/16/19 20:01,"72 Hickory St, San Francisco, CA 94016" -197483,ThinkPad Laptop,1,999.99,05/23/19 11:01,"874 Walnut St, Atlanta, GA 30301" -197484,USB-C Charging Cable,1,11.95,05/24/19 15:01,"808 Sunset St, New York City, NY 10001" -197485,LG Washing Machine,1,600.0,05/11/19 19:34,"199 Cedar St, Portland, ME 04101" -197486,AA Batteries (4-pack),1,3.84,05/23/19 14:45,"805 11th St, Boston, MA 02215" -197487,AAA Batteries (4-pack),1,2.99,05/10/19 17:49,"701 Lakeview St, Atlanta, GA 30301" -197488,AAA Batteries (4-pack),2,2.99,05/27/19 20:18,"862 Willow St, Los Angeles, CA 90001" -197489,USB-C Charging Cable,1,11.95,05/17/19 12:52,"850 11th St, San Francisco, CA 94016" -197490,Wired Headphones,1,11.99,05/06/19 18:43,"903 Elm St, San Francisco, CA 94016" -197491,AAA Batteries (4-pack),2,2.99,05/17/19 14:31,"239 Ridge St, San Francisco, CA 94016" -197492,34in Ultrawide Monitor,1,379.99,05/02/19 16:00,"143 Willow St, San Francisco, CA 94016" -197493,iPhone,1,700,05/06/19 10:13,"239 South St, San Francisco, CA 94016" -197493,Lightning Charging Cable,1,14.95,05/06/19 10:13,"239 South St, San Francisco, CA 94016" -197494,AAA Batteries (4-pack),1,2.99,05/09/19 13:21,"411 Spruce St, Boston, MA 02215" -197495,Lightning Charging Cable,1,14.95,05/06/19 14:59,"72 Church St, Los Angeles, CA 90001" -197496,27in FHD Monitor,1,149.99,05/15/19 20:46,"305 Washington St, Los Angeles, CA 90001" -197497,Lightning Charging Cable,1,14.95,05/17/19 07:38,"242 Jackson St, Dallas, TX 75001" -197498,Lightning Charging Cable,1,14.95,05/24/19 20:13,"511 5th St, San Francisco, CA 94016" -197499,Wired Headphones,1,11.99,05/16/19 19:32,"24 7th St, Seattle, WA 98101" -197500,Wired Headphones,1,11.99,05/14/19 15:10,"337 10th St, Seattle, WA 98101" -197501,Lightning Charging Cable,1,14.95,05/22/19 16:12,"878 North St, Boston, MA 02215" -197502,AAA Batteries (4-pack),1,2.99,05/28/19 15:40,"131 Lakeview St, San Francisco, CA 94016" -197503,20in Monitor,1,109.99,05/08/19 20:16,"423 Spruce St, Portland, OR 97035" -197504,AA Batteries (4-pack),1,3.84,05/12/19 19:46,"835 West St, Los Angeles, CA 90001" -,,,,, -197505,AAA Batteries (4-pack),1,2.99,05/07/19 00:16,"327 8th St, Los Angeles, CA 90001" -197506,AAA Batteries (4-pack),1,2.99,05/02/19 12:31,"895 Lincoln St, Portland, OR 97035" -197507,Google Phone,1,600,05/05/19 13:55,"249 2nd St, New York City, NY 10001" -197507,USB-C Charging Cable,1,11.95,05/05/19 13:55,"249 2nd St, New York City, NY 10001" -197508,27in FHD Monitor,1,149.99,05/01/19 20:32,"691 Hickory St, San Francisco, CA 94016" -197509,LG Washing Machine,1,600.0,05/26/19 14:36,"185 Main St, San Francisco, CA 94016" -197510,AAA Batteries (4-pack),1,2.99,05/03/19 11:50,"706 Forest St, San Francisco, CA 94016" -197511,USB-C Charging Cable,2,11.95,05/12/19 10:59,"695 Lake St, Dallas, TX 75001" -197512,Lightning Charging Cable,1,14.95,05/07/19 06:58,"999 12th St, Portland, OR 97035" -197513,Vareebadd Phone,1,400,05/21/19 14:50,"483 Dogwood St, Los Angeles, CA 90001" -197514,AA Batteries (4-pack),1,3.84,05/01/19 15:25,"587 River St, San Francisco, CA 94016" -197515,AA Batteries (4-pack),2,3.84,05/06/19 12:32,"467 Willow St, Los Angeles, CA 90001" -197516,27in FHD Monitor,1,149.99,05/09/19 10:09,"20 Lake St, Atlanta, GA 30301" -197517,Lightning Charging Cable,2,14.95,05/19/19 17:58,"211 Adams St, Atlanta, GA 30301" -197518,AAA Batteries (4-pack),1,2.99,05/06/19 14:19,"678 2nd St, Los Angeles, CA 90001" -197519,USB-C Charging Cable,1,11.95,05/14/19 08:02,"30 Highland St, Seattle, WA 98101" -197520,27in 4K Gaming Monitor,1,389.99,05/23/19 14:33,"582 Washington St, Seattle, WA 98101" -197521,Wired Headphones,1,11.99,05/02/19 20:38,"487 Spruce St, San Francisco, CA 94016" -197522,Wired Headphones,1,11.99,05/06/19 21:21,"718 Center St, Atlanta, GA 30301" -197523,Bose SoundSport Headphones,1,99.99,05/17/19 18:37,"761 Highland St, Atlanta, GA 30301" -197524,AA Batteries (4-pack),1,3.84,05/28/19 10:20,"459 River St, Los Angeles, CA 90001" -197525,iPhone,1,700,05/03/19 14:50,"973 Lake St, San Francisco, CA 94016" -197525,Lightning Charging Cable,1,14.95,05/03/19 14:50,"973 Lake St, San Francisco, CA 94016" -197526,Wired Headphones,1,11.99,05/07/19 06:08,"221 Johnson St, New York City, NY 10001" -197527,Wired Headphones,1,11.99,05/12/19 17:10,"361 Spruce St, Boston, MA 02215" -197528,USB-C Charging Cable,1,11.95,05/22/19 08:53,"31 1st St, Atlanta, GA 30301" -197529,AA Batteries (4-pack),1,3.84,05/08/19 20:14,"909 West St, San Francisco, CA 94016" -197530,Lightning Charging Cable,1,14.95,05/16/19 17:02,"718 West St, New York City, NY 10001" -197531,Lightning Charging Cable,1,14.95,05/25/19 08:18,"922 2nd St, New York City, NY 10001" -197532,AA Batteries (4-pack),1,3.84,05/09/19 08:57,"542 West St, Seattle, WA 98101" -197533,Lightning Charging Cable,1,14.95,05/17/19 07:49,"644 8th St, San Francisco, CA 94016" -197534,Wired Headphones,1,11.99,05/26/19 18:00,"818 Madison St, Portland, OR 97035" -197535,Lightning Charging Cable,1,14.95,05/31/19 22:10,"156 Cherry St, Atlanta, GA 30301" -197536,Wired Headphones,1,11.99,05/31/19 16:52,"169 Ridge St, San Francisco, CA 94016" -197537,AAA Batteries (4-pack),2,2.99,05/22/19 07:42,"154 14th St, Boston, MA 02215" -197538,34in Ultrawide Monitor,1,379.99,05/04/19 12:08,"119 River St, San Francisco, CA 94016" -197539,27in 4K Gaming Monitor,1,389.99,05/17/19 20:57,"741 Pine St, San Francisco, CA 94016" -197540,34in Ultrawide Monitor,1,379.99,05/21/19 13:49,"383 Madison St, Austin, TX 73301" -197541,34in Ultrawide Monitor,1,379.99,05/04/19 16:28,"904 14th St, San Francisco, CA 94016" -197542,AA Batteries (4-pack),1,3.84,05/27/19 22:42,"379 1st St, Los Angeles, CA 90001" -197543,AAA Batteries (4-pack),1,2.99,05/05/19 01:11,"473 2nd St, New York City, NY 10001" -197544,AA Batteries (4-pack),2,3.84,05/03/19 16:15,"523 5th St, Los Angeles, CA 90001" -197545,Google Phone,1,600,05/06/19 19:14,"923 11th St, Atlanta, GA 30301" -197546,USB-C Charging Cable,1,11.95,05/26/19 22:00,"162 1st St, New York City, NY 10001" -197547,Vareebadd Phone,1,400,05/15/19 04:00,"666 12th St, San Francisco, CA 94016" -197548,34in Ultrawide Monitor,1,379.99,05/09/19 12:34,"650 Ridge St, New York City, NY 10001" -197549,AAA Batteries (4-pack),2,2.99,05/02/19 16:10,"162 Johnson St, Boston, MA 02215" -197550,AAA Batteries (4-pack),1,2.99,05/26/19 16:42,"240 River St, Seattle, WA 98101" -197551,USB-C Charging Cable,1,11.95,05/14/19 12:50,"465 Ridge St, Atlanta, GA 30301" -197552,Bose SoundSport Headphones,1,99.99,05/21/19 11:19,"740 Chestnut St, Seattle, WA 98101" -197553,27in FHD Monitor,1,149.99,05/15/19 06:51,"269 Cedar St, Seattle, WA 98101" -197554,AAA Batteries (4-pack),1,2.99,05/28/19 05:10,"244 5th St, Seattle, WA 98101" -197555,AA Batteries (4-pack),2,3.84,05/19/19 18:25,"401 7th St, Los Angeles, CA 90001" -197556,Wired Headphones,1,11.99,05/27/19 09:18,"102 1st St, Boston, MA 02215" -197557,USB-C Charging Cable,1,11.95,05/13/19 00:01,"131 Forest St, New York City, NY 10001" -197558,34in Ultrawide Monitor,1,379.99,05/13/19 17:01,"587 Elm St, Los Angeles, CA 90001" -197559,Macbook Pro Laptop,1,1700,05/20/19 12:44,"48 South St, Atlanta, GA 30301" -197560,AAA Batteries (4-pack),3,2.99,05/22/19 01:46,"262 Pine St, San Francisco, CA 94016" -197561,AAA Batteries (4-pack),1,2.99,05/22/19 17:02,"696 Lakeview St, Dallas, TX 75001" -197562,USB-C Charging Cable,1,11.95,05/15/19 15:28,"693 Lake St, New York City, NY 10001" -197563,Google Phone,1,600,05/16/19 19:29,"161 12th St, Seattle, WA 98101" -197564,Macbook Pro Laptop,1,1700,05/06/19 19:54,"832 Wilson St, San Francisco, CA 94016" -197565,27in 4K Gaming Monitor,1,389.99,05/28/19 16:40,"233 Lakeview St, Los Angeles, CA 90001" -197566,LG Washing Machine,1,600.0,05/11/19 21:34,"710 Sunset St, Portland, OR 97035" -197567,AAA Batteries (4-pack),2,2.99,05/30/19 18:11,"614 Walnut St, San Francisco, CA 94016" -197568,Lightning Charging Cable,2,14.95,05/03/19 23:27,"104 Jackson St, Atlanta, GA 30301" -197569,USB-C Charging Cable,1,11.95,05/31/19 21:17,"982 12th St, San Francisco, CA 94016" -197570,AA Batteries (4-pack),1,3.84,05/08/19 16:06,"364 Jackson St, San Francisco, CA 94016" -197571,Wired Headphones,2,11.99,05/13/19 13:39,"756 Madison St, Atlanta, GA 30301" -197572,AA Batteries (4-pack),3,3.84,05/14/19 23:13,"769 6th St, New York City, NY 10001" -197573,AA Batteries (4-pack),1,3.84,05/26/19 18:34,"387 Washington St, San Francisco, CA 94016" -197574,AAA Batteries (4-pack),1,2.99,05/16/19 20:35,"449 Washington St, Atlanta, GA 30301" -197575,iPhone,1,700,05/26/19 21:44,"515 6th St, Seattle, WA 98101" -197576,AAA Batteries (4-pack),1,2.99,05/14/19 05:40,"468 River St, San Francisco, CA 94016" -197577,34in Ultrawide Monitor,1,379.99,05/25/19 20:28,"897 Hickory St, San Francisco, CA 94016" -197578,Google Phone,1,600,05/27/19 23:36,"62 Hickory St, Boston, MA 02215" -197578,Wired Headphones,1,11.99,05/27/19 23:36,"62 Hickory St, Boston, MA 02215" -197579,AAA Batteries (4-pack),3,2.99,05/03/19 20:01,"999 Jackson St, San Francisco, CA 94016" -197580,27in FHD Monitor,1,149.99,05/14/19 10:33,"164 Hickory St, Atlanta, GA 30301" -197581,AAA Batteries (4-pack),1,2.99,05/10/19 11:13,"647 Main St, Portland, ME 04101" -197581,USB-C Charging Cable,1,11.95,05/10/19 11:13,"647 Main St, Portland, ME 04101" -197582,USB-C Charging Cable,2,11.95,05/27/19 12:06,"291 Highland St, Boston, MA 02215" -197583,Wired Headphones,1,11.99,05/14/19 14:09,"391 Main St, San Francisco, CA 94016" -197584,27in 4K Gaming Monitor,1,389.99,05/09/19 07:58,"274 Lincoln St, Los Angeles, CA 90001" -197585,Apple Airpods Headphones,1,150,05/10/19 10:34,"438 Main St, Austin, TX 73301" -197586,AA Batteries (4-pack),1,3.84,05/13/19 21:23,"449 Lakeview St, San Francisco, CA 94016" -197587,AAA Batteries (4-pack),1,2.99,05/15/19 15:50,"940 Elm St, Dallas, TX 75001" -197588,34in Ultrawide Monitor,1,379.99,05/25/19 13:52,"32 Church St, San Francisco, CA 94016" -197589,AA Batteries (4-pack),1,3.84,05/01/19 14:42,"69 Church St, Dallas, TX 75001" -197590,Wired Headphones,1,11.99,05/22/19 18:03,"276 8th St, Boston, MA 02215" -197591,USB-C Charging Cable,1,11.95,05/24/19 09:17,"465 7th St, Los Angeles, CA 90001" -197592,Apple Airpods Headphones,1,150,05/06/19 07:14,"128 9th St, Los Angeles, CA 90001" -197593,Vareebadd Phone,1,400,05/26/19 22:21,"135 River St, San Francisco, CA 94016" -197594,Lightning Charging Cable,1,14.95,05/06/19 06:19,"865 Ridge St, Dallas, TX 75001" -197595,USB-C Charging Cable,1,11.95,05/12/19 09:40,"216 5th St, Boston, MA 02215" -197596,AAA Batteries (4-pack),1,2.99,05/04/19 09:17,"230 Park St, San Francisco, CA 94016" -197597,AAA Batteries (4-pack),3,2.99,05/28/19 16:05,"579 Sunset St, Los Angeles, CA 90001" -197598,Wired Headphones,1,11.99,05/16/19 14:25,"520 Jefferson St, New York City, NY 10001" -197599,Macbook Pro Laptop,1,1700,05/23/19 12:21,"489 Johnson St, Los Angeles, CA 90001" -197600,USB-C Charging Cable,1,11.95,05/21/19 21:05,"203 10th St, New York City, NY 10001" -197601,iPhone,1,700,05/19/19 19:15,"171 Dogwood St, Boston, MA 02215" -197601,Apple Airpods Headphones,1,150,05/19/19 19:15,"171 Dogwood St, Boston, MA 02215" -197602,AAA Batteries (4-pack),1,2.99,05/11/19 13:45,"789 Madison St, San Francisco, CA 94016" -197603,Apple Airpods Headphones,1,150,05/26/19 19:55,"393 River St, Los Angeles, CA 90001" -197604,AAA Batteries (4-pack),2,2.99,05/05/19 11:58,"914 6th St, Boston, MA 02215" -197605,Wired Headphones,1,11.99,05/11/19 12:34,"405 South St, San Francisco, CA 94016" -197606,AAA Batteries (4-pack),3,2.99,05/12/19 00:21,"450 Highland St, San Francisco, CA 94016" -197607,AA Batteries (4-pack),1,3.84,05/10/19 16:58,"423 Willow St, Austin, TX 73301" -197608,Wired Headphones,1,11.99,05/22/19 12:43,"80 South St, San Francisco, CA 94016" -197609,AA Batteries (4-pack),1,3.84,05/04/19 06:24,"565 Lincoln St, Austin, TX 73301" -197610,AAA Batteries (4-pack),5,2.99,05/26/19 09:44,"813 Lake St, Dallas, TX 75001" -197611,AAA Batteries (4-pack),1,2.99,05/24/19 18:29,"122 4th St, San Francisco, CA 94016" -197612,USB-C Charging Cable,1,11.95,05/19/19 11:13,"978 Spruce St, Portland, OR 97035" -197613,AA Batteries (4-pack),1,3.84,05/25/19 10:12,"185 13th St, San Francisco, CA 94016" -197614,Wired Headphones,1,11.99,05/04/19 20:55,"547 12th St, Los Angeles, CA 90001" -197615,AA Batteries (4-pack),1,3.84,05/17/19 23:00,"163 10th St, San Francisco, CA 94016" -197616,34in Ultrawide Monitor,1,379.99,05/07/19 11:21,"489 Cedar St, San Francisco, CA 94016" -197617,Google Phone,1,600,05/14/19 23:17,"653 7th St, Boston, MA 02215" -197618,Flatscreen TV,1,300,05/30/19 20:44,"879 Johnson St, Portland, OR 97035" -197619,Apple Airpods Headphones,1,150,05/20/19 19:01,"67 Ridge St, Boston, MA 02215" -197620,Flatscreen TV,1,300,05/09/19 19:53,"589 Spruce St, Boston, MA 02215" -197621,Google Phone,1,600,05/24/19 10:18,"344 8th St, Portland, OR 97035" -197622,USB-C Charging Cable,1,11.95,05/09/19 19:36,"221 Park St, San Francisco, CA 94016" -197623,AA Batteries (4-pack),1,3.84,05/19/19 22:49,"367 Walnut St, New York City, NY 10001" -197624,AA Batteries (4-pack),2,3.84,05/23/19 22:05,"611 Spruce St, Los Angeles, CA 90001" -197625,Wired Headphones,1,11.99,05/28/19 01:03,"125 14th St, Dallas, TX 75001" -197626,USB-C Charging Cable,1,11.95,05/29/19 12:37,"325 13th St, New York City, NY 10001" -197627,Vareebadd Phone,1,400,05/02/19 09:41,"734 Madison St, Atlanta, GA 30301" -197628,Wired Headphones,1,11.99,05/24/19 13:41,"71 8th St, Austin, TX 73301" -197629,Wired Headphones,2,11.99,05/04/19 23:44,"544 Cherry St, San Francisco, CA 94016" -197630,AA Batteries (4-pack),1,3.84,05/02/19 19:21,"715 Madison St, Los Angeles, CA 90001" -197631,Flatscreen TV,1,300,05/11/19 21:05,"65 Church St, Portland, ME 04101" -197632,Google Phone,1,600,05/05/19 01:11,"891 West St, Los Angeles, CA 90001" -197633,USB-C Charging Cable,2,11.95,05/19/19 00:16,"760 Adams St, Atlanta, GA 30301" -197634,Wired Headphones,1,11.99,05/12/19 14:45,"235 Chestnut St, Los Angeles, CA 90001" -197635,ThinkPad Laptop,1,999.99,05/21/19 20:13,"686 1st St, Portland, OR 97035" -197636,Lightning Charging Cable,1,14.95,05/29/19 16:04,"586 Lake St, Los Angeles, CA 90001" -197637,Apple Airpods Headphones,1,150,05/24/19 13:47,"317 10th St, San Francisco, CA 94016" -197638,27in 4K Gaming Monitor,1,389.99,05/20/19 22:19,"264 Hill St, Boston, MA 02215" -197639,AA Batteries (4-pack),1,3.84,05/16/19 11:30,"885 Hickory St, Austin, TX 73301" -197640,AA Batteries (4-pack),1,3.84,05/15/19 19:53,"741 Forest St, San Francisco, CA 94016" -197641,AAA Batteries (4-pack),1,2.99,05/09/19 11:55,"589 Church St, Los Angeles, CA 90001" -197642,USB-C Charging Cable,1,11.95,05/29/19 19:36,"530 Forest St, San Francisco, CA 94016" -197643,USB-C Charging Cable,1,11.95,05/23/19 16:58,"307 West St, Seattle, WA 98101" -197644,27in FHD Monitor,1,149.99,05/24/19 19:03,"224 River St, Atlanta, GA 30301" -197645,34in Ultrawide Monitor,1,379.99,05/03/19 16:33,"927 14th St, Portland, OR 97035" -197646,USB-C Charging Cable,1,11.95,05/28/19 00:40,"155 9th St, Boston, MA 02215" -197647,USB-C Charging Cable,2,11.95,05/07/19 11:05,"872 Lakeview St, San Francisco, CA 94016" -197648,Macbook Pro Laptop,1,1700,05/24/19 21:51,"14 4th St, New York City, NY 10001" -197649,USB-C Charging Cable,1,11.95,05/28/19 15:54,"73 North St, Portland, OR 97035" -197650,27in FHD Monitor,1,149.99,05/25/19 09:44,"908 Highland St, Boston, MA 02215" -197651,Wired Headphones,1,11.99,05/03/19 01:25,"419 1st St, Dallas, TX 75001" -197652,USB-C Charging Cable,1,11.95,05/20/19 15:43,"541 14th St, San Francisco, CA 94016" -197653,Bose SoundSport Headphones,1,99.99,05/30/19 08:11,"678 2nd St, San Francisco, CA 94016" -197654,Apple Airpods Headphones,1,150,05/25/19 14:58,"36 Ridge St, Boston, MA 02215" -197655,AA Batteries (4-pack),1,3.84,05/08/19 13:02,"450 Cedar St, Dallas, TX 75001" -197656,iPhone,1,700,05/22/19 05:49,"183 Park St, New York City, NY 10001" -197656,Lightning Charging Cable,1,14.95,05/22/19 05:49,"183 Park St, New York City, NY 10001" -197657,AAA Batteries (4-pack),2,2.99,05/17/19 12:25,"31 Washington St, San Francisco, CA 94016" -197658,27in FHD Monitor,1,149.99,05/29/19 16:50,"98 12th St, Los Angeles, CA 90001" -197659,AA Batteries (4-pack),2,3.84,05/05/19 12:15,"789 Adams St, Los Angeles, CA 90001" -197660,Wired Headphones,1,11.99,05/18/19 09:02,"198 5th St, New York City, NY 10001" -197661,Flatscreen TV,1,300,05/27/19 15:49,"692 11th St, Boston, MA 02215" -197662,Bose SoundSport Headphones,1,99.99,05/23/19 01:04,"453 Madison St, New York City, NY 10001" -197663,Lightning Charging Cable,1,14.95,05/03/19 22:18,"954 Madison St, Portland, OR 97035" -197664,Apple Airpods Headphones,1,150,05/16/19 11:18,"978 12th St, Boston, MA 02215" -197665,Lightning Charging Cable,1,14.95,05/14/19 19:50,"68 2nd St, San Francisco, CA 94016" -197666,USB-C Charging Cable,1,11.95,05/11/19 11:41,"15 Lake St, Boston, MA 02215" -197667,AA Batteries (4-pack),2,3.84,05/02/19 08:38,"967 Spruce St, Dallas, TX 75001" -197668,AAA Batteries (4-pack),3,2.99,05/16/19 17:16,"140 Spruce St, New York City, NY 10001" -197669,Apple Airpods Headphones,1,150,05/20/19 09:40,"460 1st St, San Francisco, CA 94016" -197670,Wired Headphones,1,11.99,05/31/19 11:38,"836 Jackson St, San Francisco, CA 94016" -197671,Bose SoundSport Headphones,1,99.99,05/15/19 14:02,"919 Dogwood St, Los Angeles, CA 90001" -197672,Flatscreen TV,1,300,05/11/19 16:17,"953 Lincoln St, Los Angeles, CA 90001" -197673,Wired Headphones,1,11.99,05/24/19 10:50,"783 Wilson St, Seattle, WA 98101" -197674,ThinkPad Laptop,1,999.99,05/08/19 09:01,"322 Ridge St, Los Angeles, CA 90001" -197675,AAA Batteries (4-pack),3,2.99,05/17/19 10:45,"813 Sunset St, Los Angeles, CA 90001" -197676,34in Ultrawide Monitor,1,379.99,05/09/19 17:56,"621 Ridge St, San Francisco, CA 94016" -197677,iPhone,1,700,05/07/19 14:58,"906 Cherry St, Los Angeles, CA 90001" -197677,Wired Headphones,1,11.99,05/07/19 14:58,"906 Cherry St, Los Angeles, CA 90001" -197678,Apple Airpods Headphones,1,150,05/28/19 20:23,"238 Elm St, New York City, NY 10001" -197679,Macbook Pro Laptop,1,1700,05/06/19 16:25,"415 Lincoln St, Portland, ME 04101" -197680,Google Phone,1,600,05/29/19 09:51,"667 North St, San Francisco, CA 94016" -197681,Macbook Pro Laptop,1,1700,05/15/19 13:24,"270 6th St, New York City, NY 10001" -197682,AA Batteries (4-pack),1,3.84,05/15/19 12:53,"401 Spruce St, Atlanta, GA 30301" -197683,Lightning Charging Cable,1,14.95,05/20/19 23:23,"590 River St, San Francisco, CA 94016" -197684,Bose SoundSport Headphones,1,99.99,05/07/19 00:30,"705 Main St, Austin, TX 73301" -197685,USB-C Charging Cable,2,11.95,05/24/19 19:47,"622 6th St, Austin, TX 73301" -197686,USB-C Charging Cable,1,11.95,05/12/19 05:50,"483 Hickory St, Atlanta, GA 30301" -197687,Lightning Charging Cable,1,14.95,05/07/19 12:45,"605 Cedar St, Portland, OR 97035" -197688,AA Batteries (4-pack),2,3.84,05/11/19 20:05,"501 Maple St, Portland, OR 97035" -197689,Wired Headphones,1,11.99,05/08/19 17:32,"592 2nd St, Dallas, TX 75001" -197690,Lightning Charging Cable,1,14.95,05/10/19 16:03,"612 Cedar St, Dallas, TX 75001" -197691,34in Ultrawide Monitor,1,379.99,05/26/19 18:43,"342 Park St, Boston, MA 02215" -197692,Google Phone,1,600,05/29/19 21:51,"326 Lincoln St, New York City, NY 10001" -197693,ThinkPad Laptop,1,999.99,05/09/19 20:22,"303 Dogwood St, San Francisco, CA 94016" -197694,Macbook Pro Laptop,1,1700,05/27/19 13:20,"52 Center St, San Francisco, CA 94016" -197695,Bose SoundSport Headphones,1,99.99,05/22/19 18:34,"501 Wilson St, Los Angeles, CA 90001" -197696,Wired Headphones,1,11.99,05/19/19 10:29,"725 Madison St, Dallas, TX 75001" -197697,Wired Headphones,2,11.99,05/17/19 13:53,"660 Hickory St, Los Angeles, CA 90001" -197698,Google Phone,1,600,06/01/19 01:03,"399 Cedar St, Los Angeles, CA 90001" -197699,27in FHD Monitor,1,149.99,05/19/19 23:06,"940 Maple St, Portland, ME 04101" -197700,USB-C Charging Cable,1,11.95,05/05/19 19:35,"570 7th St, Los Angeles, CA 90001" -197701,USB-C Charging Cable,1,11.95,05/21/19 22:36,"115 10th St, New York City, NY 10001" -197702,USB-C Charging Cable,1,11.95,05/12/19 13:40,"56 Spruce St, Los Angeles, CA 90001" -197703,Apple Airpods Headphones,1,150,05/09/19 08:40,"960 2nd St, Los Angeles, CA 90001" -197704,Wired Headphones,1,11.99,05/14/19 22:30,"678 Lakeview St, Atlanta, GA 30301" -197705,USB-C Charging Cable,1,11.95,05/29/19 06:08,"988 14th St, San Francisco, CA 94016" -197706,AAA Batteries (4-pack),2,2.99,05/12/19 12:40,"484 6th St, Dallas, TX 75001" -197707,Apple Airpods Headphones,2,150,05/09/19 12:18,"873 Chestnut St, San Francisco, CA 94016" -197708,Wired Headphones,1,11.99,05/29/19 23:22,"313 Main St, New York City, NY 10001" -197709,AAA Batteries (4-pack),1,2.99,05/09/19 11:50,"648 Chestnut St, San Francisco, CA 94016" -197710,Apple Airpods Headphones,1,150,05/06/19 20:00,"401 10th St, Austin, TX 73301" -197711,AA Batteries (4-pack),1,3.84,05/27/19 20:11,"8 Chestnut St, San Francisco, CA 94016" -197712,AAA Batteries (4-pack),2,2.99,05/09/19 13:40,"543 Church St, Los Angeles, CA 90001" -197713,Lightning Charging Cable,1,14.95,05/07/19 09:51,"433 Cedar St, Atlanta, GA 30301" -197714,USB-C Charging Cable,1,11.95,05/25/19 14:22,"530 4th St, San Francisco, CA 94016" -197715,AA Batteries (4-pack),1,3.84,05/14/19 10:47,"295 Adams St, Seattle, WA 98101" -197716,Vareebadd Phone,1,400,05/24/19 07:02,"923 Lakeview St, New York City, NY 10001" -197717,Apple Airpods Headphones,1,150,05/01/19 20:26,"436 Lakeview St, San Francisco, CA 94016" -197718,27in 4K Gaming Monitor,1,389.99,05/16/19 20:57,"800 Cherry St, New York City, NY 10001" -197719,Apple Airpods Headphones,1,150,05/16/19 21:11,"714 7th St, San Francisco, CA 94016" -197720,Macbook Pro Laptop,1,1700,05/01/19 19:05,"572 Cedar St, New York City, NY 10001" -197721,27in FHD Monitor,1,149.99,05/31/19 18:10,"964 6th St, Los Angeles, CA 90001" -197722,iPhone,1,700,05/17/19 18:56,"92 Center St, San Francisco, CA 94016" -197722,Lightning Charging Cable,1,14.95,05/17/19 18:56,"92 Center St, San Francisco, CA 94016" -197723,iPhone,1,700,05/17/19 12:43,"897 12th St, Seattle, WA 98101" -197724,27in FHD Monitor,1,149.99,05/29/19 22:57,"972 7th St, Atlanta, GA 30301" -197725,Apple Airpods Headphones,1,150,05/09/19 05:20,"57 12th St, New York City, NY 10001" -197726,34in Ultrawide Monitor,1,379.99,05/08/19 23:22,"828 Maple St, Austin, TX 73301" -197726,Macbook Pro Laptop,1,1700,05/08/19 23:22,"828 Maple St, Austin, TX 73301" -197727,Macbook Pro Laptop,1,1700,05/17/19 15:30,"786 Sunset St, New York City, NY 10001" -197728,Flatscreen TV,1,300,05/04/19 17:50,"996 14th St, San Francisco, CA 94016" -197729,Google Phone,1,600,05/29/19 10:45,"664 11th St, San Francisco, CA 94016" -197730,AA Batteries (4-pack),2,3.84,05/04/19 08:47,"597 Willow St, San Francisco, CA 94016" -197731,AAA Batteries (4-pack),1,2.99,05/27/19 17:28,"181 West St, New York City, NY 10001" -197732,27in 4K Gaming Monitor,1,389.99,05/20/19 19:14,"266 Meadow St, San Francisco, CA 94016" -197733,AAA Batteries (4-pack),1,2.99,05/15/19 09:57,"299 Sunset St, Portland, ME 04101" -197734,Flatscreen TV,1,300,05/05/19 16:00,"158 Washington St, Dallas, TX 75001" -197735,Bose SoundSport Headphones,1,99.99,05/27/19 10:45,"965 8th St, Portland, OR 97035" -197736,USB-C Charging Cable,1,11.95,05/16/19 19:30,"419 Highland St, Atlanta, GA 30301" -197737,AAA Batteries (4-pack),5,2.99,05/17/19 16:20,"779 9th St, San Francisco, CA 94016" -197738,Bose SoundSport Headphones,1,99.99,05/04/19 07:17,"407 Madison St, New York City, NY 10001" -197739,Macbook Pro Laptop,1,1700,05/30/19 13:46,"359 Park St, Portland, OR 97035" -197740,Bose SoundSport Headphones,1,99.99,05/29/19 08:16,"198 Lincoln St, Seattle, WA 98101" -197741,Google Phone,1,600,05/14/19 13:15,"568 Jackson St, Los Angeles, CA 90001" -197742,AAA Batteries (4-pack),1,2.99,05/26/19 13:29,"779 Jefferson St, Boston, MA 02215" -197743,Wired Headphones,1,11.99,05/23/19 01:05,"868 Willow St, Los Angeles, CA 90001" -197744,34in Ultrawide Monitor,1,379.99,05/22/19 16:26,"176 10th St, Atlanta, GA 30301" -197745,20in Monitor,1,109.99,05/22/19 23:31,"3 River St, Los Angeles, CA 90001" -197746,USB-C Charging Cable,1,11.95,05/08/19 12:54,"502 Chestnut St, Portland, OR 97035" -197747,Lightning Charging Cable,1,14.95,05/04/19 11:56,"843 Spruce St, New York City, NY 10001" -197748,iPhone,1,700,05/03/19 08:07,"644 North St, Portland, ME 04101" -197749,Wired Headphones,1,11.99,05/13/19 22:26,"19 Chestnut St, Los Angeles, CA 90001" -197750,Lightning Charging Cable,1,14.95,05/02/19 15:52,"919 13th St, Boston, MA 02215" -197751,AA Batteries (4-pack),1,3.84,05/23/19 09:18,"284 Walnut St, San Francisco, CA 94016" -197752,Lightning Charging Cable,2,14.95,05/12/19 14:49,"505 10th St, San Francisco, CA 94016" -197753,AAA Batteries (4-pack),1,2.99,05/10/19 22:51,"914 Lake St, Los Angeles, CA 90001" -197754,AA Batteries (4-pack),1,3.84,05/27/19 19:26,"554 West St, Atlanta, GA 30301" -197755,Flatscreen TV,1,300,05/01/19 15:16,"766 Center St, Portland, ME 04101" -197756,Lightning Charging Cable,1,14.95,05/24/19 20:05,"698 2nd St, Los Angeles, CA 90001" -197757,AAA Batteries (4-pack),2,2.99,05/29/19 10:49,"922 14th St, San Francisco, CA 94016" -197758,USB-C Charging Cable,1,11.95,05/18/19 23:00,"597 Sunset St, Dallas, TX 75001" -197759,Wired Headphones,1,11.99,05/25/19 14:48,"997 6th St, Portland, OR 97035" -197760,Apple Airpods Headphones,1,150,05/18/19 22:42,"282 11th St, Seattle, WA 98101" -197761,USB-C Charging Cable,1,11.95,05/08/19 15:15,"615 14th St, San Francisco, CA 94016" -197762,AA Batteries (4-pack),1,3.84,05/25/19 13:17,"407 Willow St, Austin, TX 73301" -197763,AA Batteries (4-pack),1,3.84,05/23/19 11:12,"226 Chestnut St, Portland, ME 04101" -197764,ThinkPad Laptop,1,999.99,05/22/19 18:46,"868 Main St, San Francisco, CA 94016" -197765,USB-C Charging Cable,1,11.95,05/03/19 08:03,"143 Hickory St, Dallas, TX 75001" -197766,Vareebadd Phone,1,400,05/27/19 14:39,"768 Walnut St, San Francisco, CA 94016" -197767,USB-C Charging Cable,1,11.95,05/06/19 13:38,"452 9th St, Portland, OR 97035" -197768,Flatscreen TV,1,300,05/04/19 19:25,"812 Cedar St, San Francisco, CA 94016" -197769,Apple Airpods Headphones,1,150,05/03/19 17:34,"830 2nd St, San Francisco, CA 94016" -197770,AAA Batteries (4-pack),4,2.99,05/02/19 15:12,"438 9th St, Atlanta, GA 30301" -197771,AAA Batteries (4-pack),1,2.99,05/10/19 09:15,"870 Jackson St, Boston, MA 02215" -197772,ThinkPad Laptop,1,999.99,05/21/19 14:50,"545 Madison St, Los Angeles, CA 90001" -197773,Apple Airpods Headphones,1,150,05/03/19 12:18,"16 Jackson St, Dallas, TX 75001" -197774,Wired Headphones,1,11.99,05/04/19 12:10,"979 10th St, Los Angeles, CA 90001" -197775,Apple Airpods Headphones,1,150,05/02/19 12:12,"382 South St, New York City, NY 10001" -197776,Lightning Charging Cable,1,14.95,05/25/19 21:35,"887 Lake St, Atlanta, GA 30301" -197777,Bose SoundSport Headphones,1,99.99,05/09/19 21:26,"415 14th St, San Francisco, CA 94016" -197778,Wired Headphones,1,11.99,05/25/19 10:43,"859 12th St, Atlanta, GA 30301" -197779,AA Batteries (4-pack),1,3.84,05/15/19 18:45,"677 Hill St, Los Angeles, CA 90001" -197780,AA Batteries (4-pack),1,3.84,05/27/19 21:15,"55 Washington St, Atlanta, GA 30301" -197781,Apple Airpods Headphones,1,150,05/07/19 19:29,"561 Ridge St, Austin, TX 73301" -197782,20in Monitor,1,109.99,05/27/19 22:09,"335 North St, Dallas, TX 75001" -197783,27in FHD Monitor,1,149.99,05/30/19 19:06,"714 5th St, Atlanta, GA 30301" -197784,USB-C Charging Cable,1,11.95,05/17/19 22:24,"628 11th St, Austin, TX 73301" -197785,Apple Airpods Headphones,1,150,05/29/19 13:35,"962 8th St, San Francisco, CA 94016" -197786,Google Phone,1,600,05/30/19 13:12,"386 13th St, San Francisco, CA 94016" -197786,USB-C Charging Cable,1,11.95,05/30/19 13:12,"386 13th St, San Francisco, CA 94016" -197787,AAA Batteries (4-pack),1,2.99,05/13/19 20:16,"272 Ridge St, New York City, NY 10001" -197788,iPhone,1,700,05/07/19 12:36,"458 Meadow St, San Francisco, CA 94016" -197789,Wired Headphones,1,11.99,05/21/19 16:00,"221 Madison St, San Francisco, CA 94016" -197790,Apple Airpods Headphones,1,150,05/13/19 12:01,"36 6th St, San Francisco, CA 94016" -197791,20in Monitor,1,109.99,05/05/19 09:25,"299 5th St, Atlanta, GA 30301" -197792,AAA Batteries (4-pack),1,2.99,05/25/19 13:29,"97 5th St, San Francisco, CA 94016" -197793,27in 4K Gaming Monitor,1,389.99,05/21/19 12:44,"858 Cedar St, New York City, NY 10001" -197794,AAA Batteries (4-pack),1,2.99,05/07/19 10:20,"380 Walnut St, Atlanta, GA 30301" -197795,AAA Batteries (4-pack),1,2.99,05/13/19 17:29,"797 Johnson St, San Francisco, CA 94016" -197796,Flatscreen TV,1,300,05/21/19 21:00,"254 Chestnut St, Los Angeles, CA 90001" -197797,Wired Headphones,1,11.99,05/17/19 21:32,"575 Jefferson St, San Francisco, CA 94016" -197798,Google Phone,1,600,05/23/19 13:26,"387 7th St, San Francisco, CA 94016" -197798,USB-C Charging Cable,1,11.95,05/23/19 13:26,"387 7th St, San Francisco, CA 94016" -197799,Google Phone,1,600,05/21/19 08:35,"763 Jefferson St, San Francisco, CA 94016" -197800,27in 4K Gaming Monitor,1,389.99,05/27/19 15:11,"172 Spruce St, Boston, MA 02215" -197801,Wired Headphones,1,11.99,05/20/19 20:38,"179 Washington St, New York City, NY 10001" -197802,Apple Airpods Headphones,1,150,05/05/19 20:29,"642 Hickory St, San Francisco, CA 94016" -197803,AA Batteries (4-pack),3,3.84,05/19/19 20:27,"321 Meadow St, Atlanta, GA 30301" -197804,USB-C Charging Cable,1,11.95,05/23/19 22:11,"664 Jackson St, Los Angeles, CA 90001" -197805,34in Ultrawide Monitor,1,379.99,05/10/19 21:50,"67 Hickory St, Los Angeles, CA 90001" -197806,Lightning Charging Cable,1,14.95,05/15/19 15:49,"305 2nd St, San Francisco, CA 94016" -197807,Google Phone,1,600,05/24/19 12:43,"845 6th St, New York City, NY 10001" -197808,Apple Airpods Headphones,1,150,05/23/19 11:13,"756 Hill St, San Francisco, CA 94016" -197809,Lightning Charging Cable,1,14.95,05/06/19 09:05,"97 Spruce St, Los Angeles, CA 90001" -197810,Lightning Charging Cable,1,14.95,05/31/19 12:58,"361 Jefferson St, San Francisco, CA 94016" -197811,Lightning Charging Cable,2,14.95,05/26/19 11:20,"222 Chestnut St, Atlanta, GA 30301" -197812,iPhone,1,700,05/16/19 12:37,"837 Dogwood St, Boston, MA 02215" -197812,Apple Airpods Headphones,1,150,05/16/19 12:37,"837 Dogwood St, Boston, MA 02215" -197813,Apple Airpods Headphones,1,150,05/07/19 15:48,"173 Meadow St, Seattle, WA 98101" -197813,27in FHD Monitor,1,149.99,05/07/19 15:48,"173 Meadow St, Seattle, WA 98101" -197814,Google Phone,1,600,05/22/19 12:00,"507 River St, San Francisco, CA 94016" -197815,27in FHD Monitor,1,149.99,05/28/19 08:57,"555 2nd St, San Francisco, CA 94016" -197816,USB-C Charging Cable,1,11.95,05/05/19 18:56,"63 Willow St, New York City, NY 10001" -197817,Apple Airpods Headphones,1,150,05/21/19 22:29,"176 Ridge St, San Francisco, CA 94016" -197818,USB-C Charging Cable,1,11.95,05/02/19 12:21,"814 Adams St, Dallas, TX 75001" -197819,iPhone,1,700,05/12/19 18:37,"478 Dogwood St, Dallas, TX 75001" -197820,ThinkPad Laptop,1,999.99,05/31/19 07:53,"519 Maple St, San Francisco, CA 94016" -197821,Lightning Charging Cable,1,14.95,05/26/19 08:15,"33 Adams St, Los Angeles, CA 90001" -197822,Bose SoundSport Headphones,1,99.99,05/03/19 21:18,"350 13th St, Portland, OR 97035" -197823,AAA Batteries (4-pack),1,2.99,05/30/19 15:03,"150 Johnson St, Los Angeles, CA 90001" -197824,Lightning Charging Cable,1,14.95,05/12/19 14:54,"577 7th St, Boston, MA 02215" -197825,USB-C Charging Cable,1,11.95,05/09/19 19:21,"297 7th St, Los Angeles, CA 90001" -197826,USB-C Charging Cable,1,11.95,05/16/19 11:32,"79 Jefferson St, Boston, MA 02215" -197827,Apple Airpods Headphones,1,150,05/07/19 17:14,"300 River St, Austin, TX 73301" -197828,Vareebadd Phone,1,400,05/25/19 19:18,"414 Park St, Dallas, TX 75001" -197829,AAA Batteries (4-pack),1,2.99,05/05/19 13:56,"201 Pine St, San Francisco, CA 94016" -197830,Wired Headphones,1,11.99,05/16/19 16:52,"629 Jackson St, Austin, TX 73301" -197831,iPhone,1,700,05/12/19 12:36,"261 Jackson St, New York City, NY 10001" -197832,Vareebadd Phone,1,400,05/05/19 22:13,"250 Cedar St, Seattle, WA 98101" -197833,Apple Airpods Headphones,1,150,05/24/19 22:12,"88 13th St, San Francisco, CA 94016" -197834,USB-C Charging Cable,1,11.95,05/18/19 11:21,"159 Hill St, New York City, NY 10001" -197835,Bose SoundSport Headphones,1,99.99,05/11/19 13:53,"550 Madison St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -197836,AA Batteries (4-pack),3,3.84,05/04/19 14:55,"301 Willow St, Portland, OR 97035" -197837,Bose SoundSport Headphones,1,99.99,05/05/19 09:19,"350 Hill St, Atlanta, GA 30301" -197838,27in FHD Monitor,1,149.99,05/22/19 14:56,"615 Johnson St, Portland, OR 97035" -197839,27in FHD Monitor,1,149.99,05/16/19 17:00,"295 Hickory St, New York City, NY 10001" -197840,AA Batteries (4-pack),1,3.84,05/25/19 12:04,"592 Cedar St, Boston, MA 02215" -197841,Apple Airpods Headphones,1,150,05/17/19 08:23,"21 West St, Dallas, TX 75001" -197841,AAA Batteries (4-pack),2,2.99,05/17/19 08:23,"21 West St, Dallas, TX 75001" -197842,Macbook Pro Laptop,1,1700,05/01/19 21:54,"621 7th St, San Francisco, CA 94016" -197843,AA Batteries (4-pack),1,3.84,05/22/19 11:19,"488 Main St, New York City, NY 10001" -197844,Wired Headphones,1,11.99,05/10/19 17:26,"389 10th St, New York City, NY 10001" -197845,USB-C Charging Cable,1,11.95,05/09/19 15:23,"95 Willow St, Dallas, TX 75001" -197845,USB-C Charging Cable,1,11.95,05/09/19 15:23,"95 Willow St, Dallas, TX 75001" -197846,AA Batteries (4-pack),1,3.84,05/31/19 09:31,"17 Wilson St, Austin, TX 73301" -197847,27in FHD Monitor,1,149.99,05/25/19 00:22,"251 Forest St, Dallas, TX 75001" -197848,Lightning Charging Cable,1,14.95,05/09/19 13:13,"530 Sunset St, Austin, TX 73301" -197849,AA Batteries (4-pack),1,3.84,05/16/19 03:22,"537 Hickory St, Atlanta, GA 30301" -197850,Wired Headphones,1,11.99,05/16/19 11:42,"513 Walnut St, San Francisco, CA 94016" -197851,Wired Headphones,1,11.99,05/22/19 12:50,"515 Hickory St, Los Angeles, CA 90001" -197852,Google Phone,1,600,05/03/19 12:47,"848 Meadow St, Seattle, WA 98101" -197852,USB-C Charging Cable,1,11.95,05/03/19 12:47,"848 Meadow St, Seattle, WA 98101" -197852,AAA Batteries (4-pack),2,2.99,05/03/19 12:47,"848 Meadow St, Seattle, WA 98101" -197853,Apple Airpods Headphones,1,150,05/25/19 20:45,"515 Willow St, San Francisco, CA 94016" -197854,Bose SoundSport Headphones,1,99.99,05/28/19 13:17,"918 Elm St, San Francisco, CA 94016" -197855,AA Batteries (4-pack),1,3.84,05/07/19 20:41,"263 13th St, Atlanta, GA 30301" -197856,34in Ultrawide Monitor,1,379.99,05/28/19 14:48,"609 Johnson St, Los Angeles, CA 90001" -197857,27in FHD Monitor,1,149.99,05/04/19 06:28,"334 River St, Boston, MA 02215" -197858,AA Batteries (4-pack),1,3.84,05/04/19 16:45,"881 Meadow St, Los Angeles, CA 90001" -197859,Google Phone,1,600,05/20/19 10:28,"66 5th St, Los Angeles, CA 90001" -,,,,, -197860,AA Batteries (4-pack),1,3.84,05/21/19 09:00,"781 Church St, Dallas, TX 75001" -197861,20in Monitor,1,109.99,05/03/19 19:53,"565 Spruce St, San Francisco, CA 94016" -197862,iPhone,1,700,05/11/19 12:32,"416 5th St, Boston, MA 02215" -197863,27in FHD Monitor,1,149.99,05/19/19 17:38,"379 Center St, New York City, NY 10001" -197864,USB-C Charging Cable,1,11.95,05/15/19 08:11,"123 North St, New York City, NY 10001" -197865,27in FHD Monitor,1,149.99,05/05/19 11:53,"584 12th St, Dallas, TX 75001" -197866,Macbook Pro Laptop,1,1700,05/14/19 22:18,"631 Washington St, New York City, NY 10001" -197867,Bose SoundSport Headphones,1,99.99,05/31/19 08:06,"451 1st St, San Francisco, CA 94016" -197868,Wired Headphones,1,11.99,05/23/19 19:23,"912 10th St, New York City, NY 10001" -197869,ThinkPad Laptop,1,999.99,05/18/19 22:12,"898 5th St, Portland, ME 04101" -197870,USB-C Charging Cable,1,11.95,05/19/19 15:39,"167 Adams St, San Francisco, CA 94016" -197871,Bose SoundSport Headphones,1,99.99,05/17/19 13:56,"313 Park St, New York City, NY 10001" -197872,Wired Headphones,1,11.99,05/01/19 17:55,"530 10th St, Seattle, WA 98101" -197873,Wired Headphones,1,11.99,05/23/19 13:42,"339 Center St, New York City, NY 10001" -197874,34in Ultrawide Monitor,1,379.99,05/18/19 16:25,"6 12th St, Dallas, TX 75001" -197875,AAA Batteries (4-pack),2,2.99,05/20/19 22:29,"374 4th St, San Francisco, CA 94016" -197876,USB-C Charging Cable,1,11.95,05/29/19 18:35,"710 Lincoln St, San Francisco, CA 94016" -197877,Wired Headphones,1,11.99,05/11/19 08:04,"178 Walnut St, New York City, NY 10001" -197878,27in 4K Gaming Monitor,1,389.99,05/30/19 09:34,"558 8th St, San Francisco, CA 94016" -197879,AA Batteries (4-pack),1,3.84,05/13/19 08:01,"387 7th St, New York City, NY 10001" -197880,LG Washing Machine,1,600.0,05/31/19 17:08,"114 Ridge St, San Francisco, CA 94016" -197881,Macbook Pro Laptop,1,1700,05/29/19 01:35,"511 Wilson St, Atlanta, GA 30301" -197882,Wired Headphones,1,11.99,05/19/19 14:59,"56 Johnson St, Dallas, TX 75001" -197883,Lightning Charging Cable,1,14.95,05/15/19 15:08,"746 Jefferson St, Los Angeles, CA 90001" -197884,iPhone,1,700,05/21/19 14:18,"543 Center St, Atlanta, GA 30301" -197885,Macbook Pro Laptop,1,1700,05/26/19 12:36,"930 Church St, Portland, OR 97035" -197886,27in 4K Gaming Monitor,1,389.99,05/30/19 13:22,"297 South St, Los Angeles, CA 90001" -197887,USB-C Charging Cable,1,11.95,05/01/19 20:32,"401 Adams St, San Francisco, CA 94016" -197888,Wired Headphones,1,11.99,05/04/19 10:59,"881 14th St, San Francisco, CA 94016" -197889,AAA Batteries (4-pack),1,2.99,05/30/19 12:51,"827 9th St, Boston, MA 02215" -197890,Wired Headphones,1,11.99,05/30/19 20:47,"373 Dogwood St, Boston, MA 02215" -197891,Bose SoundSport Headphones,1,99.99,05/14/19 14:46,"593 Wilson St, Los Angeles, CA 90001" -197892,20in Monitor,1,109.99,05/28/19 07:23,"283 Chestnut St, Austin, TX 73301" -197893,27in 4K Gaming Monitor,1,389.99,05/02/19 14:26,"538 4th St, Los Angeles, CA 90001" -197894,27in FHD Monitor,1,149.99,05/16/19 13:32,"98 Main St, Austin, TX 73301" -197895,iPhone,1,700,05/03/19 16:27,"282 South St, San Francisco, CA 94016" -197896,AA Batteries (4-pack),2,3.84,05/01/19 08:55,"222 Johnson St, New York City, NY 10001" -197897,20in Monitor,1,109.99,05/10/19 17:52,"137 12th St, Los Angeles, CA 90001" -197898,34in Ultrawide Monitor,1,379.99,05/30/19 07:19,"109 Walnut St, Seattle, WA 98101" -197899,Bose SoundSport Headphones,1,99.99,05/13/19 20:19,"170 13th St, San Francisco, CA 94016" -197900,27in FHD Monitor,1,149.99,05/01/19 10:20,"750 Lincoln St, New York City, NY 10001" -197900,AA Batteries (4-pack),1,3.84,05/01/19 10:20,"750 Lincoln St, New York City, NY 10001" -197901,Google Phone,1,600,05/12/19 09:03,"947 Meadow St, San Francisco, CA 94016" -197901,USB-C Charging Cable,1,11.95,05/12/19 09:03,"947 Meadow St, San Francisco, CA 94016" -197902,AAA Batteries (4-pack),2,2.99,05/24/19 12:55,"552 Wilson St, Boston, MA 02215" -197903,Bose SoundSport Headphones,1,99.99,05/29/19 09:58,"592 Madison St, Los Angeles, CA 90001" -197904,Lightning Charging Cable,1,14.95,05/21/19 13:27,"688 Jackson St, Dallas, TX 75001" -197905,20in Monitor,1,109.99,05/10/19 17:10,"964 12th St, Atlanta, GA 30301" -197905,Lightning Charging Cable,1,14.95,05/10/19 17:10,"964 12th St, Atlanta, GA 30301" -197906,iPhone,1,700,05/18/19 23:46,"24 Madison St, Seattle, WA 98101" -197907,AAA Batteries (4-pack),1,2.99,05/23/19 23:58,"966 Church St, Atlanta, GA 30301" -197908,Lightning Charging Cable,1,14.95,05/20/19 10:03,"122 Dogwood St, Atlanta, GA 30301" -197909,Apple Airpods Headphones,1,150,05/21/19 15:06,"186 Johnson St, San Francisco, CA 94016" -197910,27in FHD Monitor,1,149.99,05/16/19 21:12,"744 Main St, San Francisco, CA 94016" -197911,USB-C Charging Cable,1,11.95,05/04/19 14:32,"611 Lincoln St, Dallas, TX 75001" -197912,27in FHD Monitor,1,149.99,05/13/19 19:52,"157 Hickory St, New York City, NY 10001" -197913,Flatscreen TV,1,300,05/20/19 10:21,"424 2nd St, San Francisco, CA 94016" -197914,Wired Headphones,1,11.99,05/26/19 00:00,"116 Willow St, San Francisco, CA 94016" -197915,Bose SoundSport Headphones,1,99.99,05/09/19 02:00,"420 Ridge St, Portland, OR 97035" -197916,AA Batteries (4-pack),2,3.84,05/13/19 09:33,"313 2nd St, Los Angeles, CA 90001" -197917,Lightning Charging Cable,1,14.95,05/02/19 22:27,"979 6th St, Portland, OR 97035" -197918,Wired Headphones,1,11.99,05/12/19 10:02,"179 Chestnut St, Austin, TX 73301" -197919,Bose SoundSport Headphones,1,99.99,05/22/19 22:40,"810 13th St, New York City, NY 10001" -197920,27in 4K Gaming Monitor,1,389.99,05/31/19 19:44,"830 4th St, Los Angeles, CA 90001" -197921,iPhone,1,700,05/18/19 08:27,"956 Pine St, Portland, ME 04101" -197922,AA Batteries (4-pack),1,3.84,05/02/19 15:51,"817 Lake St, San Francisco, CA 94016" -197923,USB-C Charging Cable,1,11.95,05/12/19 09:31,"884 4th St, Dallas, TX 75001" -197924,Wired Headphones,1,11.99,05/26/19 09:55,"602 Chestnut St, Boston, MA 02215" -197925,Apple Airpods Headphones,1,150,05/30/19 23:47,"57 Walnut St, New York City, NY 10001" -197926,Apple Airpods Headphones,1,150,05/17/19 22:30,"251 Washington St, New York City, NY 10001" -197927,Google Phone,1,600,05/13/19 10:12,"321 Adams St, San Francisco, CA 94016" -197928,27in 4K Gaming Monitor,1,389.99,05/20/19 11:49,"89 Willow St, San Francisco, CA 94016" -197929,Bose SoundSport Headphones,1,99.99,05/31/19 14:09,"843 Cedar St, Austin, TX 73301" -197930,27in FHD Monitor,1,149.99,05/15/19 18:28,"810 13th St, Boston, MA 02215" -197931,Apple Airpods Headphones,1,150,05/13/19 09:07,"746 Church St, Los Angeles, CA 90001" -,,,,, -197932,AAA Batteries (4-pack),1,2.99,05/19/19 21:18,"200 Park St, New York City, NY 10001" -197933,USB-C Charging Cable,1,11.95,05/03/19 17:35,"783 Hill St, New York City, NY 10001" -197934,AAA Batteries (4-pack),1,2.99,05/19/19 21:29,"997 Adams St, Atlanta, GA 30301" -197935,AAA Batteries (4-pack),2,2.99,05/05/19 15:12,"170 9th St, Dallas, TX 75001" -197936,AAA Batteries (4-pack),1,2.99,05/14/19 17:02,"160 11th St, San Francisco, CA 94016" -197937,AAA Batteries (4-pack),1,2.99,05/30/19 08:54,"663 13th St, New York City, NY 10001" -197938,Apple Airpods Headphones,1,150,05/31/19 14:32,"484 North St, San Francisco, CA 94016" -197939,AA Batteries (4-pack),1,3.84,05/12/19 21:51,"734 Lincoln St, Atlanta, GA 30301" -197940,Apple Airpods Headphones,1,150,05/19/19 11:19,"984 River St, Seattle, WA 98101" -197941,LG Dryer,1,600.0,05/12/19 10:41,"255 11th St, San Francisco, CA 94016" -197942,27in FHD Monitor,1,149.99,05/12/19 18:56,"254 6th St, New York City, NY 10001" -197943,Wired Headphones,1,11.99,05/14/19 06:44,"158 2nd St, San Francisco, CA 94016" -197944,Google Phone,1,600,05/02/19 22:53,"657 Walnut St, Atlanta, GA 30301" -197945,AA Batteries (4-pack),1,3.84,05/28/19 12:55,"797 Cherry St, San Francisco, CA 94016" -197946,Google Phone,1,600,05/11/19 11:26,"228 Main St, Boston, MA 02215" -197947,AA Batteries (4-pack),1,3.84,05/19/19 00:28,"736 Dogwood St, Portland, OR 97035" -197948,Lightning Charging Cable,1,14.95,05/13/19 10:39,"594 Dogwood St, San Francisco, CA 94016" -197949,iPhone,1,700,05/28/19 13:26,"493 Jefferson St, San Francisco, CA 94016" -197950,Bose SoundSport Headphones,1,99.99,05/08/19 16:26,"455 West St, Dallas, TX 75001" -197951,Lightning Charging Cable,1,14.95,05/03/19 00:36,"558 7th St, Boston, MA 02215" -197952,27in 4K Gaming Monitor,1,389.99,05/10/19 20:03,"161 Elm St, San Francisco, CA 94016" -197953,Wired Headphones,1,11.99,05/22/19 08:31,"931 Park St, Los Angeles, CA 90001" -197954,Google Phone,1,600,05/07/19 22:02,"522 Lakeview St, Dallas, TX 75001" -197954,USB-C Charging Cable,1,11.95,05/07/19 22:02,"522 Lakeview St, Dallas, TX 75001" -197955,AAA Batteries (4-pack),1,2.99,05/06/19 15:22,"819 Park St, New York City, NY 10001" -197956,Apple Airpods Headphones,1,150,05/14/19 19:40,"784 Elm St, New York City, NY 10001" -197957,Wired Headphones,1,11.99,05/12/19 15:44,"647 Center St, Boston, MA 02215" -197958,iPhone,1,700,05/11/19 08:02,"420 7th St, New York City, NY 10001" -197959,Bose SoundSport Headphones,1,99.99,05/07/19 14:14,"818 South St, New York City, NY 10001" -197960,Lightning Charging Cable,1,14.95,05/16/19 15:25,"161 Cherry St, New York City, NY 10001" -197961,34in Ultrawide Monitor,1,379.99,05/29/19 17:52,"126 Main St, Dallas, TX 75001" -197962,Bose SoundSport Headphones,1,99.99,05/21/19 21:18,"383 North St, San Francisco, CA 94016" -197963,Bose SoundSport Headphones,1,99.99,05/03/19 13:25,"780 8th St, San Francisco, CA 94016" -197964,Bose SoundSport Headphones,1,99.99,05/05/19 17:12,"368 12th St, Portland, OR 97035" -197965,Flatscreen TV,1,300,05/26/19 14:39,"362 Jackson St, Los Angeles, CA 90001" -197966,20in Monitor,1,109.99,05/13/19 14:22,"354 West St, Seattle, WA 98101" -197967,AAA Batteries (4-pack),1,2.99,05/11/19 20:40,"120 Church St, Los Angeles, CA 90001" -197968,27in 4K Gaming Monitor,1,389.99,05/23/19 22:54,"714 North St, San Francisco, CA 94016" -197969,LG Washing Machine,1,600.0,05/03/19 21:24,"623 Lake St, Seattle, WA 98101" -197970,Wired Headphones,1,11.99,05/17/19 20:06,"956 6th St, Los Angeles, CA 90001" -197971,27in FHD Monitor,1,149.99,05/29/19 15:32,"271 Cherry St, San Francisco, CA 94016" -197972,Apple Airpods Headphones,1,150,05/11/19 22:55,"31 Highland St, Dallas, TX 75001" -197973,Wired Headphones,1,11.99,05/18/19 22:10,"167 Wilson St, Dallas, TX 75001" -197974,AA Batteries (4-pack),1,3.84,05/27/19 11:26,"985 Hill St, Los Angeles, CA 90001" -197975,AAA Batteries (4-pack),1,2.99,05/08/19 19:41,"865 12th St, New York City, NY 10001" -197976,Wired Headphones,1,11.99,05/07/19 09:18,"624 10th St, Dallas, TX 75001" -197977,Wired Headphones,1,11.99,05/20/19 19:32,"275 Cedar St, Los Angeles, CA 90001" -197977,AA Batteries (4-pack),2,3.84,05/20/19 19:32,"275 Cedar St, Los Angeles, CA 90001" -197978,Google Phone,1,600,05/17/19 23:23,"263 10th St, Dallas, TX 75001" -197978,Wired Headphones,1,11.99,05/17/19 23:23,"263 10th St, Dallas, TX 75001" -197979,Bose SoundSport Headphones,1,99.99,05/30/19 13:20,"307 Hill St, New York City, NY 10001" -197980,Lightning Charging Cable,1,14.95,05/09/19 11:39,"950 Lake St, Austin, TX 73301" -197981,ThinkPad Laptop,1,999.99,05/07/19 04:06,"582 Cherry St, New York City, NY 10001" -197982,AA Batteries (4-pack),1,3.84,05/10/19 12:52,"552 Maple St, San Francisco, CA 94016" -197983,USB-C Charging Cable,1,11.95,05/17/19 20:50,"980 Madison St, New York City, NY 10001" -197984,AAA Batteries (4-pack),1,2.99,05/14/19 16:32,"839 Lake St, Dallas, TX 75001" -197985,Bose SoundSport Headphones,1,99.99,05/15/19 10:51,"257 Cherry St, Los Angeles, CA 90001" -197986,USB-C Charging Cable,1,11.95,05/10/19 19:42,"202 4th St, Seattle, WA 98101" -197987,USB-C Charging Cable,1,11.95,05/21/19 17:07,"308 Spruce St, Boston, MA 02215" -197987,34in Ultrawide Monitor,1,379.99,05/21/19 17:07,"308 Spruce St, Boston, MA 02215" -197988,Macbook Pro Laptop,1,1700,05/18/19 07:58,"926 14th St, Portland, OR 97035" -197989,USB-C Charging Cable,2,11.95,05/17/19 10:55,"877 Sunset St, San Francisco, CA 94016" -197990,USB-C Charging Cable,1,11.95,05/23/19 19:48,"858 Jackson St, Los Angeles, CA 90001" -197991,Macbook Pro Laptop,1,1700,05/29/19 00:40,"583 7th St, Los Angeles, CA 90001" -197992,USB-C Charging Cable,1,11.95,05/17/19 17:20,"203 Center St, Atlanta, GA 30301" -197993,USB-C Charging Cable,1,11.95,05/05/19 15:48,"679 11th St, New York City, NY 10001" -197994,USB-C Charging Cable,1,11.95,05/07/19 00:48,"868 Highland St, New York City, NY 10001" -197995,Vareebadd Phone,1,400,05/21/19 02:09,"536 Lakeview St, Atlanta, GA 30301" -197995,Wired Headphones,1,11.99,05/21/19 02:09,"536 Lakeview St, Atlanta, GA 30301" -197996,27in FHD Monitor,1,149.99,05/21/19 20:04,"325 Jefferson St, Atlanta, GA 30301" -197997,USB-C Charging Cable,1,11.95,05/19/19 15:13,"338 Lincoln St, Los Angeles, CA 90001" -197998,27in FHD Monitor,1,149.99,05/21/19 19:31,"123 Forest St, Boston, MA 02215" -197999,Macbook Pro Laptop,1,1700,05/12/19 15:48,"161 Jackson St, Dallas, TX 75001" -198000,ThinkPad Laptop,1,999.99,05/20/19 18:15,"358 6th St, Los Angeles, CA 90001" -198001,ThinkPad Laptop,1,999.99,05/09/19 15:50,"978 Elm St, Austin, TX 73301" -198002,Apple Airpods Headphones,2,150,05/16/19 19:19,"583 Adams St, Seattle, WA 98101" -198003,Lightning Charging Cable,1,14.95,05/10/19 12:30,"591 Lakeview St, San Francisco, CA 94016" -198004,AA Batteries (4-pack),1,3.84,05/11/19 14:21,"215 Ridge St, Los Angeles, CA 90001" -198005,Bose SoundSport Headphones,1,99.99,05/11/19 08:20,"49 Center St, Atlanta, GA 30301" -198005,AAA Batteries (4-pack),2,2.99,05/11/19 08:20,"49 Center St, Atlanta, GA 30301" -198006,Bose SoundSport Headphones,1,99.99,05/01/19 22:45,"144 7th St, Atlanta, GA 30301" -198007,USB-C Charging Cable,1,11.95,05/30/19 08:01,"684 Lake St, Dallas, TX 75001" -198008,USB-C Charging Cable,1,11.95,05/06/19 10:57,"367 Washington St, Dallas, TX 75001" -198009,Macbook Pro Laptop,1,1700,05/20/19 11:10,"565 Lake St, Boston, MA 02215" -198010,27in 4K Gaming Monitor,1,389.99,05/12/19 13:41,"789 Sunset St, Los Angeles, CA 90001" -198011,AAA Batteries (4-pack),1,2.99,05/12/19 22:26,"779 Adams St, Boston, MA 02215" -198012,LG Washing Machine,1,600.0,05/16/19 05:41,"805 6th St, San Francisco, CA 94016" -198013,ThinkPad Laptop,1,999.99,05/24/19 21:48,"681 Maple St, Dallas, TX 75001" -198014,Macbook Pro Laptop,1,1700,05/20/19 15:34,"329 Pine St, Los Angeles, CA 90001" -198015,ThinkPad Laptop,1,999.99,05/26/19 14:12,"629 Hill St, Los Angeles, CA 90001" -198016,27in 4K Gaming Monitor,1,389.99,05/13/19 17:41,"789 Main St, Los Angeles, CA 90001" -198016,Apple Airpods Headphones,1,150,05/13/19 17:41,"789 Main St, Los Angeles, CA 90001" -198017,Bose SoundSport Headphones,1,99.99,05/15/19 18:07,"771 Chestnut St, Seattle, WA 98101" -198018,USB-C Charging Cable,2,11.95,05/03/19 12:02,"825 North St, San Francisco, CA 94016" -198019,USB-C Charging Cable,1,11.95,05/12/19 10:22,"611 Walnut St, Boston, MA 02215" -198020,20in Monitor,1,109.99,05/13/19 20:10,"471 Jefferson St, San Francisco, CA 94016" -198021,AAA Batteries (4-pack),2,2.99,05/14/19 23:54,"713 Ridge St, Los Angeles, CA 90001" -198022,AA Batteries (4-pack),3,3.84,05/29/19 16:37,"446 7th St, San Francisco, CA 94016" -198023,USB-C Charging Cable,1,11.95,05/24/19 00:30,"133 Forest St, New York City, NY 10001" -198024,AAA Batteries (4-pack),1,2.99,05/06/19 12:13,"191 12th St, Boston, MA 02215" -198025,Google Phone,1,600,05/16/19 00:56,"372 Johnson St, New York City, NY 10001" -198025,USB-C Charging Cable,1,11.95,05/16/19 00:56,"372 Johnson St, New York City, NY 10001" -198026,AAA Batteries (4-pack),1,2.99,05/22/19 18:33,"466 Elm St, San Francisco, CA 94016" -,,,,, -198027,AAA Batteries (4-pack),2,2.99,05/02/19 07:10,"477 Sunset St, Los Angeles, CA 90001" -198028,27in FHD Monitor,1,149.99,05/30/19 16:50,"204 Chestnut St, San Francisco, CA 94016" -198029,Bose SoundSport Headphones,1,99.99,05/10/19 19:12,"833 12th St, Dallas, TX 75001" -198030,iPhone,1,700,05/09/19 08:44,"430 8th St, Atlanta, GA 30301" -198031,USB-C Charging Cable,1,11.95,05/03/19 20:50,"144 Dogwood St, Boston, MA 02215" -198032,Wired Headphones,1,11.99,05/03/19 11:09,"912 River St, San Francisco, CA 94016" -198033,ThinkPad Laptop,1,999.99,05/12/19 22:07,"705 River St, New York City, NY 10001" -198034,ThinkPad Laptop,1,999.99,05/15/19 21:03,"376 Jackson St, San Francisco, CA 94016" -198035,USB-C Charging Cable,1,11.95,05/05/19 20:51,"858 Chestnut St, San Francisco, CA 94016" -198036,AAA Batteries (4-pack),1,2.99,05/18/19 16:51,"483 12th St, Boston, MA 02215" -198037,USB-C Charging Cable,1,11.95,05/29/19 02:30,"729 Main St, Dallas, TX 75001" -198038,USB-C Charging Cable,1,11.95,05/01/19 11:51,"873 Elm St, Los Angeles, CA 90001" -198039,AAA Batteries (4-pack),1,2.99,05/20/19 14:02,"74 Highland St, Los Angeles, CA 90001" -198040,AA Batteries (4-pack),2,3.84,05/29/19 13:17,"11 Hickory St, Boston, MA 02215" -198041,AAA Batteries (4-pack),1,2.99,05/06/19 19:13,"304 Hill St, Los Angeles, CA 90001" -198042,Google Phone,1,600,05/08/19 18:39,"826 Cedar St, Boston, MA 02215" -198042,USB-C Charging Cable,1,11.95,05/08/19 18:39,"826 Cedar St, Boston, MA 02215" -198043,AAA Batteries (4-pack),1,2.99,05/05/19 14:34,"109 Maple St, San Francisco, CA 94016" -198044,34in Ultrawide Monitor,1,379.99,05/05/19 23:04,"860 Jackson St, San Francisco, CA 94016" -198045,Wired Headphones,1,11.99,05/14/19 11:14,"294 Park St, Los Angeles, CA 90001" -198046,Lightning Charging Cable,1,14.95,05/07/19 20:25,"244 7th St, Boston, MA 02215" -198046,Bose SoundSport Headphones,1,99.99,05/07/19 20:25,"244 7th St, Boston, MA 02215" -198047,AAA Batteries (4-pack),2,2.99,05/25/19 17:34,"535 Forest St, Boston, MA 02215" -198048,AA Batteries (4-pack),1,3.84,05/10/19 16:51,"552 Dogwood St, Dallas, TX 75001" -198049,USB-C Charging Cable,2,11.95,05/26/19 22:44,"383 Meadow St, Austin, TX 73301" -198050,AA Batteries (4-pack),2,3.84,05/17/19 17:36,"152 South St, San Francisco, CA 94016" -198051,AA Batteries (4-pack),1,3.84,05/23/19 11:42,"351 Adams St, Portland, OR 97035" -198052,AA Batteries (4-pack),1,3.84,05/04/19 00:20,"265 Madison St, Atlanta, GA 30301" -198053,Lightning Charging Cable,1,14.95,05/01/19 21:13,"150 Hickory St, San Francisco, CA 94016" -198054,Lightning Charging Cable,1,14.95,05/10/19 10:13,"661 North St, Los Angeles, CA 90001" -198054,iPhone,1,700,05/10/19 10:13,"661 North St, Los Angeles, CA 90001" -198055,AA Batteries (4-pack),2,3.84,05/14/19 04:54,"737 Lincoln St, New York City, NY 10001" -198056,USB-C Charging Cable,1,11.95,05/12/19 11:07,"521 Center St, Los Angeles, CA 90001" -198057,AAA Batteries (4-pack),1,2.99,05/16/19 00:38,"381 13th St, Boston, MA 02215" -198058,AA Batteries (4-pack),1,3.84,05/04/19 08:15,"883 Jefferson St, Austin, TX 73301" -198059,Vareebadd Phone,1,400,05/26/19 16:31,"474 9th St, Atlanta, GA 30301" -198059,Wired Headphones,1,11.99,05/26/19 16:31,"474 9th St, Atlanta, GA 30301" -198060,Lightning Charging Cable,1,14.95,05/16/19 14:44,"370 Maple St, Atlanta, GA 30301" -198060,USB-C Charging Cable,1,11.95,05/16/19 14:44,"370 Maple St, Atlanta, GA 30301" -198061,AA Batteries (4-pack),3,3.84,05/07/19 21:23,"74 Willow St, Atlanta, GA 30301" -198062,AA Batteries (4-pack),1,3.84,05/31/19 23:09,"206 Elm St, San Francisco, CA 94016" -198063,Bose SoundSport Headphones,1,99.99,05/02/19 11:47,"893 9th St, Los Angeles, CA 90001" -198064,AA Batteries (4-pack),1,3.84,05/19/19 08:12,"847 Willow St, Seattle, WA 98101" -198065,USB-C Charging Cable,1,11.95,05/30/19 12:43,"912 Dogwood St, Portland, ME 04101" -198066,AAA Batteries (4-pack),1,2.99,05/03/19 09:22,"356 Maple St, San Francisco, CA 94016" -198067,AA Batteries (4-pack),2,3.84,05/27/19 20:05,"891 10th St, San Francisco, CA 94016" -198068,27in FHD Monitor,1,149.99,05/25/19 19:58,"935 Pine St, San Francisco, CA 94016" -198069,27in 4K Gaming Monitor,1,389.99,05/18/19 09:42,"894 13th St, Boston, MA 02215" -198070,AA Batteries (4-pack),2,3.84,05/12/19 15:59,"905 4th St, Boston, MA 02215" -198071,Apple Airpods Headphones,1,150,05/24/19 10:53,"305 Jefferson St, New York City, NY 10001" -198072,Bose SoundSport Headphones,1,99.99,05/25/19 20:12,"291 Cedar St, San Francisco, CA 94016" -198073,27in FHD Monitor,1,149.99,05/22/19 22:34,"231 6th St, Atlanta, GA 30301" -198074,34in Ultrawide Monitor,1,379.99,05/30/19 20:18,"127 West St, San Francisco, CA 94016" -198075,iPhone,1,700,05/13/19 18:45,"747 Walnut St, Dallas, TX 75001" -198075,Lightning Charging Cable,1,14.95,05/13/19 18:45,"747 Walnut St, Dallas, TX 75001" -198076,Wired Headphones,1,11.99,05/20/19 18:25,"227 Washington St, San Francisco, CA 94016" -198077,AA Batteries (4-pack),1,3.84,05/15/19 10:01,"149 5th St, Boston, MA 02215" -198078,Bose SoundSport Headphones,1,99.99,05/16/19 18:41,"924 1st St, San Francisco, CA 94016" -198078,USB-C Charging Cable,1,11.95,05/16/19 18:41,"924 1st St, San Francisco, CA 94016" -198079,Google Phone,1,600,05/03/19 16:39,"189 Wilson St, New York City, NY 10001" -198080,Apple Airpods Headphones,1,150,05/21/19 17:51,"600 Pine St, New York City, NY 10001" -198081,AAA Batteries (4-pack),4,2.99,05/27/19 09:27,"529 Center St, New York City, NY 10001" -198082,iPhone,1,700,05/14/19 17:41,"785 13th St, Los Angeles, CA 90001" -198083,Bose SoundSport Headphones,1,99.99,05/15/19 13:59,"712 Dogwood St, Austin, TX 73301" -198084,AAA Batteries (4-pack),1,2.99,05/20/19 09:31,"806 Washington St, Atlanta, GA 30301" -198085,iPhone,1,700,05/02/19 19:05,"422 11th St, San Francisco, CA 94016" -198086,34in Ultrawide Monitor,1,379.99,05/21/19 14:19,"215 Washington St, Dallas, TX 75001" -198087,AA Batteries (4-pack),2,3.84,05/13/19 21:08,"815 Adams St, Seattle, WA 98101" -198088,AAA Batteries (4-pack),3,2.99,05/26/19 14:56,"964 Cherry St, Austin, TX 73301" -198089,Bose SoundSport Headphones,1,99.99,05/22/19 00:51,"108 13th St, Los Angeles, CA 90001" -198090,Lightning Charging Cable,1,14.95,05/30/19 01:01,"901 Jefferson St, Boston, MA 02215" -198091,Flatscreen TV,1,300,05/03/19 13:44,"665 South St, New York City, NY 10001" -198092,USB-C Charging Cable,1,11.95,05/06/19 14:14,"562 Park St, San Francisco, CA 94016" -198093,27in 4K Gaming Monitor,1,389.99,05/11/19 15:39,"582 8th St, New York City, NY 10001" -198094,Vareebadd Phone,1,400,05/29/19 20:35,"406 River St, Portland, OR 97035" -198094,USB-C Charging Cable,1,11.95,05/29/19 20:35,"406 River St, Portland, OR 97035" -198095,USB-C Charging Cable,1,11.95,05/07/19 13:51,"467 14th St, Seattle, WA 98101" -198096,Wired Headphones,1,11.99,05/13/19 12:41,"646 Dogwood St, San Francisco, CA 94016" -198097,Lightning Charging Cable,1,14.95,05/21/19 16:36,"782 10th St, Dallas, TX 75001" -198098,AAA Batteries (4-pack),1,2.99,05/02/19 10:54,"517 2nd St, San Francisco, CA 94016" -198099,Apple Airpods Headphones,1,150,05/26/19 13:38,"63 13th St, New York City, NY 10001" -198100,Bose SoundSport Headphones,1,99.99,05/24/19 23:28,"166 10th St, Portland, OR 97035" -198101,Lightning Charging Cable,1,14.95,05/06/19 20:49,"509 Hickory St, Atlanta, GA 30301" -198102,Lightning Charging Cable,1,14.95,05/08/19 01:15,"370 Cedar St, San Francisco, CA 94016" -198103,27in FHD Monitor,1,149.99,05/14/19 15:55,"106 Hickory St, Los Angeles, CA 90001" -198104,LG Dryer,1,600.0,05/14/19 19:29,"929 Center St, Austin, TX 73301" -198105,Lightning Charging Cable,1,14.95,05/14/19 12:10,"721 Lincoln St, Atlanta, GA 30301" -198106,Apple Airpods Headphones,1,150,05/29/19 13:55,"199 Washington St, San Francisco, CA 94016" -198107,27in 4K Gaming Monitor,1,389.99,05/31/19 10:27,"262 Main St, Portland, OR 97035" -198108,Bose SoundSport Headphones,1,99.99,05/09/19 12:55,"941 8th St, Los Angeles, CA 90001" -198109,AAA Batteries (4-pack),2,2.99,05/18/19 16:25,"330 2nd St, New York City, NY 10001" -198110,Lightning Charging Cable,1,14.95,05/13/19 07:06,"856 7th St, San Francisco, CA 94016" -198111,34in Ultrawide Monitor,1,379.99,05/15/19 08:33,"323 Highland St, New York City, NY 10001" -198112,Lightning Charging Cable,1,14.95,05/10/19 11:56,"459 Cedar St, Atlanta, GA 30301" -198113,AA Batteries (4-pack),1,3.84,05/11/19 23:42,"460 Sunset St, Portland, OR 97035" -198114,20in Monitor,1,109.99,05/24/19 19:17,"897 Maple St, San Francisco, CA 94016" -198115,AA Batteries (4-pack),1,3.84,05/31/19 10:39,"351 Park St, Dallas, TX 75001" -198116,USB-C Charging Cable,1,11.95,05/27/19 18:47,"296 Jefferson St, Dallas, TX 75001" -198117,20in Monitor,1,109.99,05/06/19 15:32,"498 Walnut St, Atlanta, GA 30301" -198118,AAA Batteries (4-pack),1,2.99,05/16/19 14:06,"941 Maple St, San Francisco, CA 94016" -198119,USB-C Charging Cable,1,11.95,05/18/19 14:50,"154 Hill St, Portland, OR 97035" -198120,27in 4K Gaming Monitor,1,389.99,05/10/19 20:10,"403 7th St, Boston, MA 02215" -198121,Apple Airpods Headphones,1,150,05/27/19 23:21,"301 Willow St, New York City, NY 10001" -198122,Lightning Charging Cable,1,14.95,05/05/19 12:46,"231 Adams St, San Francisco, CA 94016" -198123,Lightning Charging Cable,1,14.95,05/22/19 08:42,"692 9th St, Portland, OR 97035" -198124,Bose SoundSport Headphones,1,99.99,05/06/19 18:35,"681 Church St, Austin, TX 73301" -198125,Apple Airpods Headphones,1,150,05/26/19 15:25,"129 Lakeview St, New York City, NY 10001" -198126,LG Washing Machine,1,600.0,05/15/19 01:53,"811 11th St, Los Angeles, CA 90001" -198127,AA Batteries (4-pack),1,3.84,05/09/19 09:05,"40 Main St, Los Angeles, CA 90001" -198128,Apple Airpods Headphones,1,150,05/06/19 08:11,"869 5th St, New York City, NY 10001" -198129,AAA Batteries (4-pack),1,2.99,05/08/19 19:18,"725 Chestnut St, Boston, MA 02215" -198130,Lightning Charging Cable,1,14.95,05/16/19 14:33,"582 Cherry St, Austin, TX 73301" -198131,Lightning Charging Cable,1,14.95,05/04/19 04:46,"414 12th St, Dallas, TX 75001" -198132,AA Batteries (4-pack),1,3.84,05/30/19 15:12,"431 Forest St, San Francisco, CA 94016" -198133,AA Batteries (4-pack),1,3.84,05/29/19 23:01,"208 Meadow St, New York City, NY 10001" -198134,Bose SoundSport Headphones,1,99.99,05/24/19 08:49,"931 Dogwood St, Dallas, TX 75001" -198135,ThinkPad Laptop,1,999.99,05/12/19 08:58,"233 South St, Los Angeles, CA 90001" -198136,AA Batteries (4-pack),1,3.84,05/13/19 18:55,"209 Jefferson St, New York City, NY 10001" -198137,USB-C Charging Cable,1,11.95,05/23/19 23:07,"361 Lake St, Los Angeles, CA 90001" -198138,AAA Batteries (4-pack),2,2.99,05/23/19 12:47,"435 West St, Atlanta, GA 30301" -198139,Lightning Charging Cable,1,14.95,05/29/19 12:13,"638 Park St, Atlanta, GA 30301" -198140,Wired Headphones,1,11.99,05/09/19 13:25,"344 Spruce St, Boston, MA 02215" -198141,USB-C Charging Cable,1,11.95,05/18/19 09:41,"211 Lake St, San Francisco, CA 94016" -198141,Apple Airpods Headphones,1,150,05/18/19 09:41,"211 Lake St, San Francisco, CA 94016" -198142,Wired Headphones,2,11.99,05/06/19 18:19,"642 Hickory St, Seattle, WA 98101" -198143,AAA Batteries (4-pack),3,2.99,05/27/19 02:03,"593 Highland St, Boston, MA 02215" -198144,Google Phone,1,600,05/26/19 20:13,"333 Cedar St, Austin, TX 73301" -198145,Apple Airpods Headphones,1,150,05/07/19 10:50,"682 Cherry St, San Francisco, CA 94016" -198146,Bose SoundSport Headphones,1,99.99,05/18/19 22:35,"296 Lakeview St, Boston, MA 02215" -198147,27in FHD Monitor,1,149.99,05/27/19 00:19,"78 11th St, San Francisco, CA 94016" -198148,Flatscreen TV,1,300,05/23/19 23:59,"26 2nd St, Portland, OR 97035" -198149,Vareebadd Phone,1,400,05/26/19 11:53,"583 West St, Los Angeles, CA 90001" -198150,Bose SoundSport Headphones,1,99.99,05/08/19 17:51,"144 10th St, Seattle, WA 98101" -198151,USB-C Charging Cable,1,11.95,05/22/19 10:54,"965 Park St, Boston, MA 02215" -198152,iPhone,1,700,05/14/19 23:01,"471 Maple St, Portland, OR 97035" -198153,Bose SoundSport Headphones,1,99.99,05/15/19 13:50,"559 1st St, Seattle, WA 98101" -198154,AA Batteries (4-pack),1,3.84,05/24/19 10:47,"84 Lakeview St, New York City, NY 10001" -198155,Bose SoundSport Headphones,1,99.99,05/23/19 17:44,"775 4th St, New York City, NY 10001" -198156,Macbook Pro Laptop,1,1700,05/22/19 22:19,"420 Main St, New York City, NY 10001" -198157,Google Phone,1,600,05/18/19 15:56,"452 Lincoln St, Seattle, WA 98101" -198158,Wired Headphones,1,11.99,05/30/19 21:05,"775 5th St, Los Angeles, CA 90001" -198159,Bose SoundSport Headphones,1,99.99,05/11/19 15:37,"867 4th St, Atlanta, GA 30301" -198160,iPhone,1,700,05/03/19 12:57,"352 Lincoln St, San Francisco, CA 94016" -198161,Bose SoundSport Headphones,1,99.99,05/20/19 19:21,"889 Wilson St, San Francisco, CA 94016" -198162,iPhone,1,700,05/27/19 01:03,"356 7th St, San Francisco, CA 94016" -198163,USB-C Charging Cable,1,11.95,05/23/19 19:53,"215 Jackson St, San Francisco, CA 94016" -198164,34in Ultrawide Monitor,1,379.99,05/29/19 20:52,"985 South St, San Francisco, CA 94016" -198165,Lightning Charging Cable,2,14.95,05/27/19 20:03,"945 Lincoln St, Dallas, TX 75001" -198166,Lightning Charging Cable,1,14.95,05/23/19 08:26,"235 1st St, San Francisco, CA 94016" -198167,USB-C Charging Cable,1,11.95,05/06/19 02:36,"754 Meadow St, New York City, NY 10001" -198168,AA Batteries (4-pack),1,3.84,05/17/19 22:19,"271 Elm St, San Francisco, CA 94016" -198169,27in FHD Monitor,1,149.99,05/19/19 20:38,"2 1st St, San Francisco, CA 94016" -198170,Apple Airpods Headphones,1,150,05/03/19 08:22,"114 Cedar St, New York City, NY 10001" -198171,Lightning Charging Cable,2,14.95,05/28/19 11:31,"943 Main St, Los Angeles, CA 90001" -198172,AAA Batteries (4-pack),1,2.99,05/27/19 17:30,"834 14th St, Austin, TX 73301" -198173,Wired Headphones,1,11.99,05/05/19 20:32,"625 Adams St, Los Angeles, CA 90001" -198174,Flatscreen TV,1,300,05/13/19 17:54,"81 Maple St, San Francisco, CA 94016" -198175,AAA Batteries (4-pack),1,2.99,05/19/19 13:21,"406 Lincoln St, Seattle, WA 98101" -198176,Wired Headphones,2,11.99,05/09/19 12:23,"39 River St, San Francisco, CA 94016" -198177,AAA Batteries (4-pack),2,2.99,05/16/19 22:24,"567 9th St, Seattle, WA 98101" -198178,AA Batteries (4-pack),1,3.84,05/18/19 17:10,"42 12th St, Atlanta, GA 30301" -198179,Google Phone,1,600,05/25/19 07:02,"747 Cherry St, Atlanta, GA 30301" -198180,Apple Airpods Headphones,1,150,05/23/19 22:12,"222 Johnson St, Portland, OR 97035" -198181,34in Ultrawide Monitor,1,379.99,05/08/19 20:34,"887 North St, Portland, OR 97035" -198182,Apple Airpods Headphones,1,150,05/14/19 00:56,"742 Lakeview St, Boston, MA 02215" -198183,Vareebadd Phone,1,400,05/22/19 18:55,"112 7th St, San Francisco, CA 94016" -198184,Lightning Charging Cable,1,14.95,05/21/19 22:04,"108 Forest St, Dallas, TX 75001" -198185,27in FHD Monitor,1,149.99,05/04/19 12:59,"260 Elm St, Boston, MA 02215" -198186,AAA Batteries (4-pack),1,2.99,05/30/19 11:16,"872 Cherry St, Boston, MA 02215" -198187,AA Batteries (4-pack),1,3.84,05/24/19 08:47,"156 Lake St, Austin, TX 73301" -198188,AAA Batteries (4-pack),1,2.99,05/28/19 18:25,"149 Jackson St, Atlanta, GA 30301" -198189,USB-C Charging Cable,1,11.95,05/07/19 11:19,"443 Lakeview St, San Francisco, CA 94016" -198190,Wired Headphones,2,11.99,05/06/19 22:13,"635 Center St, San Francisco, CA 94016" -198190,iPhone,1,700,05/06/19 22:13,"635 Center St, San Francisco, CA 94016" -198191,iPhone,1,700,05/10/19 20:55,"751 7th St, Boston, MA 02215" -198192,USB-C Charging Cable,1,11.95,05/02/19 16:40,"401 5th St, San Francisco, CA 94016" -198193,ThinkPad Laptop,1,999.99,05/08/19 22:08,"581 Ridge St, Portland, OR 97035" -198194,Lightning Charging Cable,1,14.95,05/16/19 09:30,"809 Walnut St, San Francisco, CA 94016" -198195,AAA Batteries (4-pack),1,2.99,05/06/19 14:34,"266 Meadow St, New York City, NY 10001" -198196,27in FHD Monitor,1,149.99,05/28/19 12:15,"317 Dogwood St, Dallas, TX 75001" -198197,Wired Headphones,1,11.99,05/02/19 18:19,"91 14th St, San Francisco, CA 94016" -198198,Bose SoundSport Headphones,1,99.99,05/04/19 17:30,"483 Madison St, Seattle, WA 98101" -198199,Bose SoundSport Headphones,1,99.99,05/30/19 13:44,"388 Chestnut St, Los Angeles, CA 90001" -198200,34in Ultrawide Monitor,1,379.99,05/11/19 19:19,"953 14th St, Atlanta, GA 30301" -198201,AA Batteries (4-pack),2,3.84,05/27/19 01:14,"192 1st St, San Francisco, CA 94016" -198202,Lightning Charging Cable,1,14.95,05/12/19 20:40,"685 1st St, Los Angeles, CA 90001" -198203,27in FHD Monitor,1,149.99,05/13/19 15:32,"622 Jackson St, San Francisco, CA 94016" -198204,AA Batteries (4-pack),1,3.84,05/06/19 11:09,"399 North St, San Francisco, CA 94016" -198204,Lightning Charging Cable,1,14.95,05/06/19 11:09,"399 North St, San Francisco, CA 94016" -198205,USB-C Charging Cable,1,11.95,05/02/19 17:13,"173 11th St, Portland, ME 04101" -198206,Bose SoundSport Headphones,1,99.99,05/18/19 20:43,"69 West St, Portland, OR 97035" -198207,27in 4K Gaming Monitor,1,389.99,05/12/19 20:39,"297 Center St, Los Angeles, CA 90001" -198208,27in FHD Monitor,1,149.99,05/25/19 11:30,"410 River St, Austin, TX 73301" -198209,Bose SoundSport Headphones,1,99.99,05/20/19 12:03,"166 Lincoln St, Atlanta, GA 30301" -198210,Apple Airpods Headphones,1,150,05/31/19 20:57,"533 4th St, Seattle, WA 98101" -198211,Google Phone,1,600,05/27/19 19:34,"587 12th St, Seattle, WA 98101" -198212,Bose SoundSport Headphones,1,99.99,05/03/19 00:23,"603 Wilson St, San Francisco, CA 94016" -198213,USB-C Charging Cable,1,11.95,05/13/19 15:37,"306 Cedar St, Seattle, WA 98101" -198214,Macbook Pro Laptop,1,1700,05/04/19 13:33,"644 River St, Boston, MA 02215" -198215,AAA Batteries (4-pack),2,2.99,05/24/19 01:38,"920 Washington St, New York City, NY 10001" -198215,Google Phone,1,600,05/24/19 01:38,"920 Washington St, New York City, NY 10001" -198216,Lightning Charging Cable,1,14.95,05/07/19 13:29,"281 7th St, San Francisco, CA 94016" -198217,Bose SoundSport Headphones,1,99.99,05/24/19 00:21,"343 Madison St, Atlanta, GA 30301" -198218,USB-C Charging Cable,2,11.95,05/27/19 21:32,"683 Jackson St, Atlanta, GA 30301" -198219,Macbook Pro Laptop,1,1700,05/08/19 09:56,"445 Center St, Los Angeles, CA 90001" -198220,AAA Batteries (4-pack),3,2.99,05/23/19 11:43,"28 Ridge St, New York City, NY 10001" -198221,20in Monitor,1,109.99,05/25/19 18:51,"906 Lake St, Seattle, WA 98101" -198222,Wired Headphones,1,11.99,05/05/19 20:26,"872 Sunset St, New York City, NY 10001" -198223,Lightning Charging Cable,1,14.95,05/25/19 18:20,"891 Main St, San Francisco, CA 94016" -198224,Wired Headphones,1,11.99,05/01/19 19:53,"308 Church St, New York City, NY 10001" -198225,34in Ultrawide Monitor,1,379.99,05/05/19 21:49,"504 14th St, New York City, NY 10001" -198226,20in Monitor,1,109.99,05/05/19 14:09,"436 10th St, Seattle, WA 98101" -198227,Lightning Charging Cable,1,14.95,05/27/19 16:07,"481 Main St, Dallas, TX 75001" -198228,34in Ultrawide Monitor,1,379.99,05/22/19 23:29,"12 14th St, Dallas, TX 75001" -198229,USB-C Charging Cable,1,11.95,05/10/19 05:55,"560 Pine St, New York City, NY 10001" -198230,Lightning Charging Cable,1,14.95,05/12/19 09:52,"380 Wilson St, San Francisco, CA 94016" -198231,USB-C Charging Cable,1,11.95,05/23/19 19:07,"310 Cedar St, San Francisco, CA 94016" -198232,AA Batteries (4-pack),1,3.84,05/16/19 20:21,"868 Park St, San Francisco, CA 94016" -198233,iPhone,1,700,05/14/19 12:36,"653 River St, Portland, ME 04101" -198234,Bose SoundSport Headphones,1,99.99,05/27/19 19:46,"191 Walnut St, Los Angeles, CA 90001" -198235,Apple Airpods Headphones,1,150,05/08/19 21:28,"554 Hill St, San Francisco, CA 94016" -198236,Flatscreen TV,1,300,05/16/19 16:52,"293 1st St, Los Angeles, CA 90001" -198237,AA Batteries (4-pack),1,3.84,05/13/19 10:10,"133 Park St, Los Angeles, CA 90001" -198238,AA Batteries (4-pack),1,3.84,05/29/19 18:58,"32 13th St, Los Angeles, CA 90001" -198238,27in FHD Monitor,1,149.99,05/29/19 18:58,"32 13th St, Los Angeles, CA 90001" -198239,Lightning Charging Cable,1,14.95,05/20/19 10:25,"687 14th St, Boston, MA 02215" -198240,34in Ultrawide Monitor,1,379.99,05/08/19 16:42,"588 Willow St, San Francisco, CA 94016" -198241,AA Batteries (4-pack),1,3.84,05/23/19 19:21,"363 Jackson St, San Francisco, CA 94016" -198242,Lightning Charging Cable,1,14.95,05/06/19 19:25,"384 9th St, New York City, NY 10001" -198243,20in Monitor,1,109.99,05/14/19 13:00,"435 Forest St, Los Angeles, CA 90001" -198244,USB-C Charging Cable,1,11.95,05/21/19 20:32,"754 Cedar St, San Francisco, CA 94016" -198245,Bose SoundSport Headphones,1,99.99,05/25/19 14:13,"64 Park St, Los Angeles, CA 90001" -198246,Lightning Charging Cable,1,14.95,05/02/19 17:32,"131 10th St, Los Angeles, CA 90001" -198247,27in FHD Monitor,1,149.99,05/21/19 17:03,"51 Meadow St, San Francisco, CA 94016" -198248,Wired Headphones,1,11.99,05/31/19 10:24,"467 South St, New York City, NY 10001" -198249,27in 4K Gaming Monitor,1,389.99,05/16/19 14:56,"458 Madison St, New York City, NY 10001" -198250,27in FHD Monitor,1,149.99,05/29/19 18:14,"701 11th St, Boston, MA 02215" -198251,Google Phone,1,600,05/21/19 14:24,"36 Park St, New York City, NY 10001" -198251,Wired Headphones,1,11.99,05/21/19 14:24,"36 Park St, New York City, NY 10001" -198252,USB-C Charging Cable,1,11.95,05/29/19 10:41,"713 River St, Austin, TX 73301" -,,,,, -198253,AA Batteries (4-pack),1,3.84,05/17/19 18:00,"582 Lake St, New York City, NY 10001" -198254,USB-C Charging Cable,1,11.95,05/25/19 14:02,"833 Ridge St, San Francisco, CA 94016" -198255,LG Washing Machine,1,600.0,05/21/19 22:50,"239 Washington St, New York City, NY 10001" -198256,Apple Airpods Headphones,1,150,05/29/19 17:07,"116 Center St, Boston, MA 02215" -198257,Lightning Charging Cable,1,14.95,05/05/19 15:34,"860 Willow St, New York City, NY 10001" -198258,USB-C Charging Cable,1,11.95,05/28/19 22:11,"893 9th St, Atlanta, GA 30301" -198259,AA Batteries (4-pack),2,3.84,05/09/19 13:58,"156 Church St, Dallas, TX 75001" -198260,Bose SoundSport Headphones,1,99.99,05/22/19 06:58,"172 14th St, Los Angeles, CA 90001" -198261,Lightning Charging Cable,1,14.95,05/23/19 11:32,"333 9th St, San Francisco, CA 94016" -198262,27in FHD Monitor,1,149.99,05/19/19 14:25,"17 Pine St, Los Angeles, CA 90001" -198263,AA Batteries (4-pack),3,3.84,05/09/19 12:01,"856 Park St, San Francisco, CA 94016" -198264,Bose SoundSport Headphones,1,99.99,05/12/19 17:26,"353 Chestnut St, Los Angeles, CA 90001" -198265,AAA Batteries (4-pack),1,2.99,05/18/19 18:10,"771 Meadow St, Dallas, TX 75001" -198266,USB-C Charging Cable,1,11.95,05/15/19 12:22,"982 Main St, Portland, OR 97035" -198267,Macbook Pro Laptop,1,1700,05/21/19 05:38,"848 1st St, Portland, OR 97035" -198268,Bose SoundSport Headphones,1,99.99,05/22/19 10:29,"723 11th St, New York City, NY 10001" -198269,Apple Airpods Headphones,1,150,05/28/19 12:35,"380 Spruce St, Austin, TX 73301" -198270,AAA Batteries (4-pack),2,2.99,05/20/19 17:35,"721 Meadow St, Los Angeles, CA 90001" -198271,Flatscreen TV,1,300,05/17/19 19:29,"513 North St, Austin, TX 73301" -198272,USB-C Charging Cable,1,11.95,05/13/19 09:42,"58 Wilson St, Austin, TX 73301" -198273,iPhone,1,700,05/14/19 13:46,"598 11th St, Los Angeles, CA 90001" -198274,Lightning Charging Cable,1,14.95,05/28/19 15:36,"644 River St, Los Angeles, CA 90001" -198275,Wired Headphones,1,11.99,05/29/19 08:06,"375 12th St, Boston, MA 02215" -198276,Vareebadd Phone,1,400,05/28/19 01:53,"324 Center St, San Francisco, CA 94016" -198277,AA Batteries (4-pack),2,3.84,05/01/19 09:46,"283 South St, Seattle, WA 98101" -198278,Lightning Charging Cable,1,14.95,05/20/19 18:05,"843 Lakeview St, Los Angeles, CA 90001" -198279,AAA Batteries (4-pack),1,2.99,05/16/19 02:41,"449 Willow St, Austin, TX 73301" -198280,Google Phone,1,600,05/18/19 18:01,"92 Wilson St, San Francisco, CA 94016" -198281,AA Batteries (4-pack),1,3.84,05/03/19 09:54,"644 8th St, Dallas, TX 75001" -198282,Lightning Charging Cable,1,14.95,05/22/19 18:55,"85 Spruce St, Dallas, TX 75001" -198283,Wired Headphones,1,11.99,05/30/19 22:01,"601 South St, San Francisco, CA 94016" -198284,USB-C Charging Cable,1,11.95,05/27/19 11:14,"460 Cedar St, San Francisco, CA 94016" -198285,27in 4K Gaming Monitor,1,389.99,05/19/19 23:56,"88 Elm St, San Francisco, CA 94016" -198286,USB-C Charging Cable,1,11.95,05/12/19 19:41,"129 Church St, Austin, TX 73301" -198287,iPhone,1,700,05/20/19 01:18,"992 Adams St, Dallas, TX 75001" -198288,Wired Headphones,2,11.99,05/21/19 07:38,"994 Jackson St, Dallas, TX 75001" -198289,AA Batteries (4-pack),1,3.84,05/01/19 22:24,"575 5th St, San Francisco, CA 94016" -198290,Lightning Charging Cable,1,14.95,05/05/19 01:31,"338 Walnut St, Atlanta, GA 30301" -198291,USB-C Charging Cable,3,11.95,05/25/19 14:06,"450 1st St, Boston, MA 02215" -198292,Lightning Charging Cable,1,14.95,05/12/19 17:32,"546 Main St, San Francisco, CA 94016" -198293,Google Phone,1,600,05/03/19 18:51,"327 10th St, Portland, ME 04101" -198294,AA Batteries (4-pack),2,3.84,05/27/19 10:59,"233 Dogwood St, New York City, NY 10001" -198295,Lightning Charging Cable,1,14.95,05/12/19 01:59,"57 Spruce St, Dallas, TX 75001" -198296,Wired Headphones,1,11.99,05/06/19 12:31,"769 Forest St, Boston, MA 02215" -198297,Bose SoundSport Headphones,1,99.99,05/10/19 09:14,"845 Washington St, Seattle, WA 98101" -198298,Google Phone,1,600,05/22/19 00:28,"341 1st St, New York City, NY 10001" -198299,27in 4K Gaming Monitor,1,389.99,05/30/19 08:48,"341 Spruce St, Seattle, WA 98101" -198300,Flatscreen TV,1,300,05/13/19 13:54,"671 Cedar St, San Francisco, CA 94016" -198300,iPhone,1,700,05/13/19 13:54,"671 Cedar St, San Francisco, CA 94016" -198301,Macbook Pro Laptop,1,1700,05/26/19 19:37,"625 Adams St, Seattle, WA 98101" -198302,USB-C Charging Cable,1,11.95,05/17/19 16:36,"358 10th St, Portland, OR 97035" -198303,ThinkPad Laptop,1,999.99,05/29/19 18:49,"103 Madison St, Los Angeles, CA 90001" -198304,Apple Airpods Headphones,1,150,05/25/19 10:17,"569 6th St, San Francisco, CA 94016" -198305,Wired Headphones,1,11.99,05/20/19 18:26,"937 South St, Los Angeles, CA 90001" -198306,Google Phone,1,600,05/02/19 18:15,"506 Center St, San Francisco, CA 94016" -198307,iPhone,1,700,05/07/19 14:45,"838 1st St, San Francisco, CA 94016" -198307,Lightning Charging Cable,1,14.95,05/07/19 14:45,"838 1st St, San Francisco, CA 94016" -198308,Wired Headphones,1,11.99,05/13/19 18:44,"182 Chestnut St, San Francisco, CA 94016" -198309,Bose SoundSport Headphones,1,99.99,05/23/19 16:25,"975 2nd St, Dallas, TX 75001" -198310,Bose SoundSport Headphones,1,99.99,05/30/19 09:43,"487 Center St, Los Angeles, CA 90001" -198311,Wired Headphones,1,11.99,05/04/19 22:26,"344 12th St, Portland, OR 97035" -198312,Apple Airpods Headphones,1,150,05/20/19 09:34,"298 Pine St, New York City, NY 10001" -198313,iPhone,1,700,05/08/19 16:45,"33 Maple St, Boston, MA 02215" -198313,Lightning Charging Cable,1,14.95,05/08/19 16:45,"33 Maple St, Boston, MA 02215" -198314,20in Monitor,1,109.99,05/23/19 12:30,"50 Maple St, Austin, TX 73301" -198315,AAA Batteries (4-pack),2,2.99,05/13/19 00:41,"181 8th St, Seattle, WA 98101" -198316,Lightning Charging Cable,1,14.95,05/04/19 23:07,"876 8th St, Los Angeles, CA 90001" -198317,Bose SoundSport Headphones,1,99.99,05/01/19 18:33,"982 Lake St, San Francisco, CA 94016" -198318,Apple Airpods Headphones,1,150,05/18/19 19:18,"732 Park St, Portland, OR 97035" -198319,Wired Headphones,1,11.99,05/12/19 17:23,"78 Highland St, San Francisco, CA 94016" -198320,Lightning Charging Cable,1,14.95,05/09/19 17:32,"353 5th St, Austin, TX 73301" -198321,27in FHD Monitor,1,149.99,05/05/19 20:31,"709 2nd St, Portland, OR 97035" -198322,Wired Headphones,1,11.99,05/04/19 23:15,"158 Ridge St, Dallas, TX 75001" -198323,Apple Airpods Headphones,1,150,05/25/19 10:29,"931 Jefferson St, Portland, OR 97035" -198324,Wired Headphones,1,11.99,05/16/19 11:39,"233 Main St, Seattle, WA 98101" -198325,AAA Batteries (4-pack),5,2.99,05/12/19 18:43,"510 South St, San Francisco, CA 94016" -198326,USB-C Charging Cable,1,11.95,05/30/19 19:43,"820 River St, San Francisco, CA 94016" -198327,Flatscreen TV,1,300,05/07/19 19:39,"139 Walnut St, Boston, MA 02215" -198328,USB-C Charging Cable,1,11.95,05/25/19 02:22,"253 7th St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -198329,AAA Batteries (4-pack),1,2.99,05/22/19 22:49,"714 Lincoln St, San Francisco, CA 94016" -198330,Google Phone,1,600,05/18/19 12:06,"247 Cherry St, Atlanta, GA 30301" -198331,USB-C Charging Cable,1,11.95,05/28/19 21:05,"452 7th St, Los Angeles, CA 90001" -198332,Wired Headphones,1,11.99,05/28/19 21:09,"242 Highland St, San Francisco, CA 94016" -198333,AAA Batteries (4-pack),1,2.99,05/14/19 12:16,"800 Johnson St, New York City, NY 10001" -198334,Flatscreen TV,1,300,05/21/19 14:10,"627 10th St, New York City, NY 10001" -198335,AA Batteries (4-pack),2,3.84,05/03/19 13:03,"390 Adams St, Boston, MA 02215" -198336,Apple Airpods Headphones,1,150,05/27/19 00:15,"817 River St, Austin, TX 73301" -198337,Apple Airpods Headphones,1,150,05/03/19 12:09,"340 Spruce St, Los Angeles, CA 90001" -198338,iPhone,1,700,05/20/19 20:47,"391 River St, New York City, NY 10001" -198339,AAA Batteries (4-pack),2,2.99,05/23/19 16:10,"500 Lake St, Dallas, TX 75001" -198340,USB-C Charging Cable,1,11.95,05/17/19 15:45,"806 Adams St, Atlanta, GA 30301" -198341,USB-C Charging Cable,1,11.95,05/12/19 10:47,"851 Cherry St, Los Angeles, CA 90001" -198342,Google Phone,1,600,05/07/19 12:23,"286 Madison St, Portland, ME 04101" -198343,AA Batteries (4-pack),1,3.84,05/04/19 13:37,"200 Jackson St, Atlanta, GA 30301" -198344,34in Ultrawide Monitor,1,379.99,05/21/19 18:14,"594 Maple St, Atlanta, GA 30301" -198345,Lightning Charging Cable,1,14.95,05/30/19 19:16,"122 Walnut St, Los Angeles, CA 90001" -198346,Wired Headphones,1,11.99,05/12/19 12:00,"784 Washington St, San Francisco, CA 94016" -198347,AA Batteries (4-pack),2,3.84,05/04/19 13:56,"2 Forest St, Los Angeles, CA 90001" -198348,Wired Headphones,1,11.99,05/14/19 11:54,"678 Main St, Portland, OR 97035" -198349,ThinkPad Laptop,1,999.99,05/25/19 15:31,"544 Ridge St, Dallas, TX 75001" -198350,Wired Headphones,1,11.99,05/04/19 11:22,"345 8th St, New York City, NY 10001" -198351,Bose SoundSport Headphones,1,99.99,05/10/19 05:34,"940 1st St, Atlanta, GA 30301" -198352,USB-C Charging Cable,1,11.95,05/31/19 11:11,"5 Meadow St, San Francisco, CA 94016" -198353,USB-C Charging Cable,1,11.95,05/21/19 12:32,"438 Highland St, Los Angeles, CA 90001" -198354,USB-C Charging Cable,1,11.95,05/15/19 00:38,"746 Spruce St, Portland, OR 97035" -198355,Wired Headphones,1,11.99,05/28/19 14:03,"628 4th St, Boston, MA 02215" -198356,27in FHD Monitor,1,149.99,05/04/19 17:18,"135 Park St, San Francisco, CA 94016" -198357,Bose SoundSport Headphones,1,99.99,05/25/19 20:40,"72 9th St, Austin, TX 73301" -198358,Wired Headphones,1,11.99,05/08/19 14:37,"736 9th St, San Francisco, CA 94016" -198359,AAA Batteries (4-pack),1,2.99,05/06/19 17:51,"281 Hill St, Seattle, WA 98101" -198360,Lightning Charging Cable,1,14.95,05/20/19 10:22,"561 Adams St, Dallas, TX 75001" -198361,AAA Batteries (4-pack),2,2.99,05/29/19 19:22,"132 Adams St, Los Angeles, CA 90001" -198362,Lightning Charging Cable,1,14.95,05/26/19 08:44,"765 Hill St, Dallas, TX 75001" -198363,Vareebadd Phone,1,400,05/16/19 10:31,"191 1st St, Portland, ME 04101" -198364,Apple Airpods Headphones,1,150,05/23/19 15:32,"182 South St, Atlanta, GA 30301" -198365,USB-C Charging Cable,1,11.95,05/22/19 14:53,"83 Park St, Boston, MA 02215" -198366,Lightning Charging Cable,1,14.95,05/22/19 16:23,"332 Jefferson St, San Francisco, CA 94016" -198367,Apple Airpods Headphones,1,150,05/24/19 10:36,"581 Hill St, New York City, NY 10001" -198368,ThinkPad Laptop,1,999.99,05/08/19 13:03,"280 River St, Portland, ME 04101" -198368,27in FHD Monitor,1,149.99,05/08/19 13:03,"280 River St, Portland, ME 04101" -198369,USB-C Charging Cable,1,11.95,05/04/19 12:58,"43 Center St, Los Angeles, CA 90001" -198370,ThinkPad Laptop,1,999.99,05/31/19 21:03,"277 Ridge St, San Francisco, CA 94016" -198371,USB-C Charging Cable,1,11.95,05/07/19 17:26,"910 Dogwood St, Portland, ME 04101" -198372,Lightning Charging Cable,1,14.95,05/17/19 13:35,"751 Elm St, Boston, MA 02215" -198373,AA Batteries (4-pack),1,3.84,05/30/19 02:04,"73 Walnut St, San Francisco, CA 94016" -198374,Apple Airpods Headphones,1,150,05/04/19 14:28,"238 2nd St, Dallas, TX 75001" -198375,AA Batteries (4-pack),2,3.84,05/19/19 12:42,"57 11th St, Dallas, TX 75001" -198376,Lightning Charging Cable,1,14.95,05/14/19 13:41,"171 5th St, San Francisco, CA 94016" -198377,Lightning Charging Cable,1,14.95,05/08/19 15:16,"677 4th St, Boston, MA 02215" -198378,Wired Headphones,1,11.99,05/15/19 00:57,"435 Park St, Austin, TX 73301" -198379,Apple Airpods Headphones,1,150,05/30/19 23:39,"587 12th St, San Francisco, CA 94016" -198380,Wired Headphones,1,11.99,05/03/19 00:00,"803 Church St, Dallas, TX 75001" -198381,27in FHD Monitor,1,149.99,05/21/19 14:15,"699 Walnut St, San Francisco, CA 94016" -198382,Bose SoundSport Headphones,1,99.99,05/05/19 11:02,"975 West St, San Francisco, CA 94016" -198383,AA Batteries (4-pack),1,3.84,05/14/19 16:55,"975 Center St, Seattle, WA 98101" -198384,27in FHD Monitor,1,149.99,05/22/19 12:52,"871 Hickory St, Dallas, TX 75001" -198385,Apple Airpods Headphones,1,150,05/22/19 17:15,"410 Johnson St, Dallas, TX 75001" -198386,27in FHD Monitor,1,149.99,05/06/19 19:59,"907 Ridge St, Dallas, TX 75001" -198387,27in FHD Monitor,1,149.99,05/04/19 14:55,"660 Church St, Atlanta, GA 30301" -198388,Lightning Charging Cable,1,14.95,05/10/19 18:26,"734 Maple St, Austin, TX 73301" -198389,AA Batteries (4-pack),1,3.84,05/30/19 17:35,"137 Johnson St, Seattle, WA 98101" -198390,27in FHD Monitor,1,149.99,05/09/19 16:18,"539 West St, Boston, MA 02215" -198391,34in Ultrawide Monitor,1,379.99,05/19/19 19:37,"405 Lakeview St, New York City, NY 10001" -198392,iPhone,1,700,05/17/19 19:39,"983 Hill St, San Francisco, CA 94016" -198393,27in FHD Monitor,1,149.99,05/20/19 17:48,"582 Willow St, San Francisco, CA 94016" -198394,Macbook Pro Laptop,1,1700,05/04/19 14:12,"640 6th St, Atlanta, GA 30301" -198395,AAA Batteries (4-pack),1,2.99,05/31/19 18:34,"678 2nd St, San Francisco, CA 94016" -198396,Google Phone,1,600,05/23/19 16:09,"178 Washington St, Austin, TX 73301" -198397,USB-C Charging Cable,1,11.95,05/15/19 13:01,"571 Forest St, Portland, OR 97035" -198398,Lightning Charging Cable,1,14.95,05/18/19 21:06,"670 10th St, Portland, OR 97035" -198399,iPhone,1,700,05/14/19 14:23,"174 11th St, Los Angeles, CA 90001" -198400,Wired Headphones,1,11.99,05/17/19 20:55,"595 Hill St, Portland, OR 97035" -198401,Wired Headphones,1,11.99,05/16/19 14:10,"812 Spruce St, Seattle, WA 98101" -198402,27in 4K Gaming Monitor,1,389.99,05/06/19 14:05,"24 Wilson St, San Francisco, CA 94016" -198403,Bose SoundSport Headphones,1,99.99,05/30/19 21:14,"558 South St, Los Angeles, CA 90001" -198404,AA Batteries (4-pack),1,3.84,05/25/19 15:33,"245 Jackson St, San Francisco, CA 94016" -198405,Apple Airpods Headphones,1,150,05/09/19 04:30,"834 6th St, San Francisco, CA 94016" -198406,Macbook Pro Laptop,1,1700,05/03/19 23:44,"416 11th St, San Francisco, CA 94016" -198407,AA Batteries (4-pack),3,3.84,05/22/19 10:03,"837 Adams St, Los Angeles, CA 90001" -198408,Lightning Charging Cable,1,14.95,05/03/19 14:22,"368 Main St, Los Angeles, CA 90001" -198409,Lightning Charging Cable,1,14.95,05/14/19 10:43,"514 West St, Los Angeles, CA 90001" -198410,Google Phone,1,600,05/05/19 12:03,"543 Main St, San Francisco, CA 94016" -198411,Lightning Charging Cable,1,14.95,05/29/19 11:33,"512 Church St, New York City, NY 10001" -198412,USB-C Charging Cable,1,11.95,05/31/19 21:04,"828 Sunset St, Portland, ME 04101" -198413,USB-C Charging Cable,1,11.95,05/30/19 12:47,"49 4th St, Dallas, TX 75001" -198414,Lightning Charging Cable,1,14.95,05/20/19 20:30,"382 7th St, Atlanta, GA 30301" -198415,Google Phone,1,600,05/01/19 14:12,"356 2nd St, San Francisco, CA 94016" -198416,AAA Batteries (4-pack),1,2.99,05/10/19 15:49,"653 Lakeview St, New York City, NY 10001" -198417,Bose SoundSport Headphones,1,99.99,05/26/19 10:58,"749 Hickory St, San Francisco, CA 94016" -198418,Bose SoundSport Headphones,1,99.99,05/30/19 15:45,"959 Chestnut St, San Francisco, CA 94016" -198419,USB-C Charging Cable,1,11.95,05/01/19 09:23,"30 Madison St, Dallas, TX 75001" -198420,AA Batteries (4-pack),1,3.84,05/02/19 09:37,"742 6th St, Atlanta, GA 30301" -198421,Macbook Pro Laptop,1,1700,05/29/19 18:44,"199 Sunset St, Los Angeles, CA 90001" -198422,AAA Batteries (4-pack),1,2.99,05/21/19 18:56,"450 Jefferson St, New York City, NY 10001" -198423,Wired Headphones,1,11.99,05/07/19 17:33,"74 9th St, New York City, NY 10001" -198424,20in Monitor,1,109.99,05/31/19 11:00,"378 13th St, Los Angeles, CA 90001" -198425,Flatscreen TV,1,300,05/23/19 10:29,"519 Meadow St, San Francisco, CA 94016" -198426,AAA Batteries (4-pack),1,2.99,05/24/19 20:34,"986 5th St, San Francisco, CA 94016" -198427,USB-C Charging Cable,1,11.95,05/29/19 21:22,"798 7th St, Boston, MA 02215" -198428,AA Batteries (4-pack),1,3.84,05/25/19 02:55,"809 Jefferson St, Boston, MA 02215" -198429,Lightning Charging Cable,1,14.95,05/04/19 16:12,"960 Wilson St, Los Angeles, CA 90001" -198430,AAA Batteries (4-pack),2,2.99,05/28/19 12:46,"56 9th St, Seattle, WA 98101" -198431,Lightning Charging Cable,1,14.95,05/15/19 12:10,"53 Chestnut St, New York City, NY 10001" -198432,AAA Batteries (4-pack),1,2.99,05/24/19 11:12,"294 Hill St, San Francisco, CA 94016" -198433,AA Batteries (4-pack),1,3.84,05/27/19 20:06,"68 Cedar St, San Francisco, CA 94016" -198434,Bose SoundSport Headphones,1,99.99,05/24/19 08:46,"365 Wilson St, Boston, MA 02215" -198435,AA Batteries (4-pack),1,3.84,05/19/19 19:13,"627 North St, San Francisco, CA 94016" -198436,34in Ultrawide Monitor,1,379.99,05/16/19 15:02,"485 4th St, Seattle, WA 98101" -198437,27in FHD Monitor,1,149.99,05/29/19 12:09,"141 Church St, New York City, NY 10001" -198438,AA Batteries (4-pack),1,3.84,05/03/19 13:16,"903 Adams St, Dallas, TX 75001" -198439,Apple Airpods Headphones,1,150,05/16/19 22:12,"38 West St, Seattle, WA 98101" -198440,Wired Headphones,1,11.99,05/13/19 14:54,"1 Hill St, Portland, OR 97035" -198441,Lightning Charging Cable,1,14.95,05/15/19 13:09,"749 Meadow St, New York City, NY 10001" -198442,27in FHD Monitor,1,149.99,05/21/19 11:08,"668 Highland St, Boston, MA 02215" -198443,AA Batteries (4-pack),1,3.84,05/26/19 01:14,"377 4th St, New York City, NY 10001" -198444,Wired Headphones,1,11.99,05/15/19 00:20,"632 Maple St, San Francisco, CA 94016" -198445,Apple Airpods Headphones,1,150,05/20/19 22:45,"954 Meadow St, Los Angeles, CA 90001" -198446,Macbook Pro Laptop,1,1700,05/31/19 14:17,"866 8th St, Seattle, WA 98101" -198447,27in 4K Gaming Monitor,1,389.99,05/06/19 19:46,"567 Jackson St, San Francisco, CA 94016" -198448,AAA Batteries (4-pack),2,2.99,05/12/19 17:19,"212 Church St, Portland, OR 97035" -198449,AAA Batteries (4-pack),1,2.99,05/15/19 08:20,"182 10th St, San Francisco, CA 94016" -198450,AA Batteries (4-pack),1,3.84,05/23/19 21:00,"692 11th St, Austin, TX 73301" -198451,Lightning Charging Cable,1,14.95,05/14/19 11:52,"2 11th St, Dallas, TX 75001" -198452,Wired Headphones,1,11.99,05/06/19 20:52,"500 Main St, San Francisco, CA 94016" -198453,AAA Batteries (4-pack),2,2.99,05/20/19 19:49,"633 Hickory St, Atlanta, GA 30301" -198453,Bose SoundSport Headphones,1,99.99,05/20/19 19:49,"633 Hickory St, Atlanta, GA 30301" -198454,AA Batteries (4-pack),1,3.84,05/19/19 18:15,"514 Cedar St, New York City, NY 10001" -198455,Bose SoundSport Headphones,1,99.99,05/02/19 21:36,"50 Cedar St, New York City, NY 10001" -198456,Google Phone,1,600,05/11/19 14:58,"938 Highland St, Los Angeles, CA 90001" -198457,Wired Headphones,1,11.99,05/18/19 12:17,"287 Spruce St, New York City, NY 10001" -198458,AAA Batteries (4-pack),1,2.99,05/07/19 14:09,"320 Lake St, Atlanta, GA 30301" -198459,AAA Batteries (4-pack),1,2.99,05/19/19 20:38,"521 Meadow St, Los Angeles, CA 90001" -198460,Lightning Charging Cable,1,14.95,05/18/19 18:11,"516 Jackson St, San Francisco, CA 94016" -198460,AAA Batteries (4-pack),5,2.99,05/18/19 18:11,"516 Jackson St, San Francisco, CA 94016" -198461,USB-C Charging Cable,1,11.95,05/22/19 17:16,"405 Forest St, Portland, OR 97035" -198461,27in 4K Gaming Monitor,1,389.99,05/22/19 17:16,"405 Forest St, Portland, OR 97035" -198462,Lightning Charging Cable,1,14.95,05/02/19 21:06,"829 Sunset St, Los Angeles, CA 90001" -198463,Apple Airpods Headphones,1,150,05/04/19 22:06,"993 10th St, Boston, MA 02215" -198464,USB-C Charging Cable,1,11.95,05/26/19 10:00,"931 Lake St, San Francisco, CA 94016" -198465,Lightning Charging Cable,2,14.95,05/06/19 13:17,"451 Dogwood St, Los Angeles, CA 90001" -198466,Google Phone,1,600,05/14/19 17:45,"246 Lakeview St, Portland, ME 04101" -198467,AAA Batteries (4-pack),2,2.99,05/07/19 11:13,"231 Willow St, Portland, OR 97035" -198468,Lightning Charging Cable,1,14.95,05/20/19 17:58,"561 Center St, Austin, TX 73301" -198469,Apple Airpods Headphones,1,150,05/14/19 23:03,"317 Lake St, San Francisco, CA 94016" -198470,Bose SoundSport Headphones,1,99.99,05/18/19 15:04,"39 Center St, Dallas, TX 75001" -198471,AA Batteries (4-pack),1,3.84,05/22/19 11:40,"75 11th St, Dallas, TX 75001" -198472,USB-C Charging Cable,1,11.95,05/18/19 21:07,"826 Chestnut St, San Francisco, CA 94016" -198473,Google Phone,1,600,05/09/19 19:15,"859 6th St, Dallas, TX 75001" -198474,ThinkPad Laptop,1,999.99,05/30/19 04:49,"296 Jackson St, Portland, OR 97035" -198475,iPhone,1,700,05/02/19 19:51,"514 Pine St, Austin, TX 73301" -198476,Wired Headphones,1,11.99,05/29/19 19:36,"723 Washington St, Los Angeles, CA 90001" -198477,Lightning Charging Cable,1,14.95,05/01/19 12:05,"767 Center St, New York City, NY 10001" -198478,Vareebadd Phone,1,400,05/21/19 09:08,"56 Jefferson St, Los Angeles, CA 90001" -198479,Flatscreen TV,1,300,05/17/19 20:36,"388 Washington St, Los Angeles, CA 90001" -198480,iPhone,1,700,05/01/19 13:10,"500 7th St, Los Angeles, CA 90001" -198480,Lightning Charging Cable,1,14.95,05/01/19 13:10,"500 7th St, Los Angeles, CA 90001" -198481,Macbook Pro Laptop,1,1700,05/11/19 13:18,"275 Cedar St, Dallas, TX 75001" -198482,AAA Batteries (4-pack),1,2.99,05/05/19 13:47,"577 Highland St, Dallas, TX 75001" -198483,USB-C Charging Cable,1,11.95,05/25/19 12:00,"484 11th St, Boston, MA 02215" -198484,Wired Headphones,1,11.99,05/05/19 16:36,"269 4th St, Boston, MA 02215" -198485,ThinkPad Laptop,1,999.99,05/06/19 14:05,"584 Jefferson St, San Francisco, CA 94016" -198486,AAA Batteries (4-pack),2,2.99,05/23/19 08:03,"373 Church St, Portland, OR 97035" -198487,Macbook Pro Laptop,1,1700,05/11/19 00:14,"600 Lincoln St, Atlanta, GA 30301" -198488,AA Batteries (4-pack),1,3.84,05/29/19 21:24,"584 Hill St, Los Angeles, CA 90001" -198489,iPhone,1,700,05/04/19 09:16,"801 12th St, Dallas, TX 75001" -198490,AAA Batteries (4-pack),1,2.99,05/30/19 12:03,"336 12th St, Seattle, WA 98101" -198491,Macbook Pro Laptop,1,1700,05/09/19 07:13,"870 11th St, New York City, NY 10001" -198492,AAA Batteries (4-pack),1,2.99,05/16/19 22:56,"794 1st St, Austin, TX 73301" -198493,AA Batteries (4-pack),1,3.84,05/14/19 21:16,"62 Maple St, Atlanta, GA 30301" -198494,Macbook Pro Laptop,1,1700,05/23/19 22:17,"687 Washington St, Dallas, TX 75001" -198495,Wired Headphones,1,11.99,05/31/19 11:02,"191 7th St, San Francisco, CA 94016" -198496,Bose SoundSport Headphones,1,99.99,05/29/19 23:37,"619 Washington St, Dallas, TX 75001" -198497,Flatscreen TV,1,300,05/11/19 12:43,"283 Johnson St, New York City, NY 10001" -198498,Macbook Pro Laptop,1,1700,05/24/19 08:22,"333 Washington St, San Francisco, CA 94016" -198499,Apple Airpods Headphones,1,150,05/22/19 18:48,"901 Forest St, Portland, ME 04101" -198500,Wired Headphones,1,11.99,05/16/19 08:46,"881 11th St, New York City, NY 10001" -198501,USB-C Charging Cable,1,11.95,05/03/19 22:17,"951 Lakeview St, Dallas, TX 75001" -198502,Bose SoundSport Headphones,1,99.99,05/07/19 20:16,"12 11th St, Atlanta, GA 30301" -198503,Google Phone,1,600,05/16/19 05:28,"790 Chestnut St, Boston, MA 02215" -198504,Bose SoundSport Headphones,1,99.99,05/08/19 20:37,"101 11th St, Seattle, WA 98101" -198505,Apple Airpods Headphones,1,150,05/25/19 09:23,"401 Elm St, Boston, MA 02215" -198506,Lightning Charging Cable,1,14.95,05/26/19 06:05,"137 4th St, Boston, MA 02215" -198507,Flatscreen TV,1,300,05/31/19 13:06,"18 Willow St, San Francisco, CA 94016" -198508,Apple Airpods Headphones,1,150,05/05/19 15:14,"799 10th St, Los Angeles, CA 90001" -198509,USB-C Charging Cable,1,11.95,05/03/19 09:48,"979 Washington St, San Francisco, CA 94016" -198509,Wired Headphones,1,11.99,05/03/19 09:48,"979 Washington St, San Francisco, CA 94016" -198510,USB-C Charging Cable,1,11.95,05/01/19 12:03,"410 Walnut St, San Francisco, CA 94016" -198511,AA Batteries (4-pack),1,3.84,05/28/19 15:31,"149 8th St, Dallas, TX 75001" -198512,AA Batteries (4-pack),2,3.84,05/17/19 08:28,"920 14th St, New York City, NY 10001" -198513,USB-C Charging Cable,1,11.95,05/09/19 01:12,"264 Ridge St, Atlanta, GA 30301" -198514,Google Phone,1,600,05/13/19 18:56,"171 Jackson St, Seattle, WA 98101" -198514,USB-C Charging Cable,1,11.95,05/13/19 18:56,"171 Jackson St, Seattle, WA 98101" -198514,USB-C Charging Cable,1,11.95,05/13/19 18:56,"171 Jackson St, Seattle, WA 98101" -198515,Lightning Charging Cable,1,14.95,05/22/19 12:44,"71 12th St, Austin, TX 73301" -198516,AA Batteries (4-pack),1,3.84,05/01/19 16:22,"802 Sunset St, Portland, OR 97035" -198517,USB-C Charging Cable,1,11.95,05/27/19 22:38,"475 South St, San Francisco, CA 94016" -198517,Bose SoundSport Headphones,1,99.99,05/27/19 22:38,"475 South St, San Francisco, CA 94016" -198518,Lightning Charging Cable,2,14.95,05/08/19 00:43,"503 1st St, San Francisco, CA 94016" -198519,USB-C Charging Cable,1,11.95,05/22/19 16:42,"758 Sunset St, New York City, NY 10001" -198520,Bose SoundSport Headphones,1,99.99,05/13/19 19:17,"660 North St, Austin, TX 73301" -198521,27in FHD Monitor,1,149.99,05/09/19 16:34,"255 Forest St, New York City, NY 10001" -198522,Lightning Charging Cable,2,14.95,05/31/19 11:49,"802 8th St, Austin, TX 73301" -198523,USB-C Charging Cable,1,11.95,05/24/19 00:03,"663 Madison St, San Francisco, CA 94016" -198524,27in FHD Monitor,1,149.99,05/06/19 09:55,"196 Spruce St, Austin, TX 73301" -198525,Wired Headphones,1,11.99,05/11/19 13:06,"856 Wilson St, Dallas, TX 75001" -198526,34in Ultrawide Monitor,1,379.99,05/31/19 11:35,"649 South St, San Francisco, CA 94016" -198527,Apple Airpods Headphones,1,150,05/24/19 14:59,"368 West St, San Francisco, CA 94016" -198528,Google Phone,1,600,05/11/19 21:04,"880 Madison St, Austin, TX 73301" -198529,AAA Batteries (4-pack),1,2.99,05/16/19 22:13,"101 Ridge St, New York City, NY 10001" -,,,,, -198530,USB-C Charging Cable,1,11.95,05/04/19 13:13,"16 10th St, San Francisco, CA 94016" -198531,Bose SoundSport Headphones,1,99.99,05/29/19 18:01,"171 5th St, New York City, NY 10001" -198532,Lightning Charging Cable,1,14.95,05/30/19 19:05,"680 Wilson St, Los Angeles, CA 90001" -198533,AAA Batteries (4-pack),4,2.99,05/01/19 19:53,"945 Madison St, Los Angeles, CA 90001" -198534,AA Batteries (4-pack),1,3.84,05/28/19 22:20,"130 Chestnut St, Seattle, WA 98101" -198535,Lightning Charging Cable,1,14.95,05/07/19 19:53,"481 1st St, San Francisco, CA 94016" -198536,AAA Batteries (4-pack),2,2.99,05/28/19 20:05,"669 2nd St, San Francisco, CA 94016" -198537,AAA Batteries (4-pack),1,2.99,05/06/19 11:29,"9 4th St, Boston, MA 02215" -198538,AAA Batteries (4-pack),1,2.99,05/01/19 13:22,"311 Wilson St, Austin, TX 73301" -198539,Bose SoundSport Headphones,1,99.99,05/25/19 12:36,"148 Adams St, New York City, NY 10001" -198540,AAA Batteries (4-pack),1,2.99,05/16/19 18:59,"576 North St, Portland, OR 97035" -198541,27in FHD Monitor,1,149.99,05/31/19 17:59,"208 5th St, Boston, MA 02215" -198542,ThinkPad Laptop,1,999.99,05/19/19 12:40,"784 Cherry St, New York City, NY 10001" -198543,AA Batteries (4-pack),1,3.84,05/15/19 21:09,"121 6th St, Portland, OR 97035" -198544,27in FHD Monitor,1,149.99,05/02/19 19:32,"626 Lakeview St, Boston, MA 02215" -198545,AA Batteries (4-pack),1,3.84,05/17/19 13:29,"103 Lakeview St, Atlanta, GA 30301" -198546,AA Batteries (4-pack),1,3.84,05/24/19 17:17,"40 Wilson St, New York City, NY 10001" -198547,Bose SoundSport Headphones,1,99.99,05/26/19 10:15,"487 Hickory St, Atlanta, GA 30301" -198548,USB-C Charging Cable,1,11.95,05/18/19 22:34,"707 West St, Seattle, WA 98101" -198549,Macbook Pro Laptop,1,1700,05/04/19 11:26,"682 Adams St, Seattle, WA 98101" -198550,Bose SoundSport Headphones,1,99.99,05/26/19 14:10,"179 Johnson St, San Francisco, CA 94016" -198551,Apple Airpods Headphones,1,150,05/04/19 14:33,"462 Chestnut St, New York City, NY 10001" -198552,AA Batteries (4-pack),1,3.84,05/23/19 13:31,"691 River St, Los Angeles, CA 90001" -198553,Apple Airpods Headphones,1,150,05/04/19 05:55,"911 Center St, Boston, MA 02215" -198554,AA Batteries (4-pack),1,3.84,05/19/19 17:27,"972 Park St, New York City, NY 10001" -198555,USB-C Charging Cable,1,11.95,05/25/19 22:57,"16 9th St, New York City, NY 10001" -198556,34in Ultrawide Monitor,1,379.99,05/04/19 14:09,"866 North St, Portland, OR 97035" -198557,AA Batteries (4-pack),3,3.84,05/26/19 10:44,"158 Adams St, Boston, MA 02215" -198558,Bose SoundSport Headphones,1,99.99,05/01/19 20:38,"405 5th St, New York City, NY 10001" -198559,Apple Airpods Headphones,1,150,05/23/19 09:56,"472 Cedar St, Atlanta, GA 30301" -198560,Google Phone,1,600,05/28/19 14:13,"122 South St, San Francisco, CA 94016" -198561,iPhone,1,700,05/31/19 15:06,"633 Spruce St, Los Angeles, CA 90001" -198562,USB-C Charging Cable,1,11.95,05/12/19 21:09,"557 5th St, Austin, TX 73301" -198563,20in Monitor,1,109.99,05/03/19 12:29,"952 Spruce St, Los Angeles, CA 90001" -198564,AA Batteries (4-pack),1,3.84,05/06/19 13:19,"858 Park St, Los Angeles, CA 90001" -198565,Bose SoundSport Headphones,1,99.99,05/16/19 10:10,"271 River St, Boston, MA 02215" -198566,27in 4K Gaming Monitor,1,389.99,05/30/19 17:29,"556 8th St, San Francisco, CA 94016" -198567,34in Ultrawide Monitor,1,379.99,05/15/19 13:51,"992 Highland St, Atlanta, GA 30301" -198568,Vareebadd Phone,1,400,05/26/19 08:16,"543 13th St, Austin, TX 73301" -198569,34in Ultrawide Monitor,1,379.99,05/13/19 20:37,"216 9th St, San Francisco, CA 94016" -198570,27in 4K Gaming Monitor,1,389.99,05/18/19 04:53,"505 Meadow St, Atlanta, GA 30301" -198571,Apple Airpods Headphones,1,150,05/02/19 13:31,"359 Cherry St, Dallas, TX 75001" -198572,USB-C Charging Cable,1,11.95,05/21/19 23:03,"304 Dogwood St, New York City, NY 10001" -198573,AAA Batteries (4-pack),1,2.99,05/21/19 15:19,"198 2nd St, Austin, TX 73301" -198574,Lightning Charging Cable,1,14.95,05/15/19 16:17,"391 6th St, Boston, MA 02215" -198575,27in FHD Monitor,1,149.99,05/02/19 22:42,"291 1st St, New York City, NY 10001" -198576,Bose SoundSport Headphones,1,99.99,05/10/19 14:33,"260 Forest St, New York City, NY 10001" -198577,USB-C Charging Cable,1,11.95,05/28/19 08:14,"221 Main St, New York City, NY 10001" -198578,AAA Batteries (4-pack),2,2.99,05/22/19 20:18,"983 Park St, Dallas, TX 75001" -198579,Wired Headphones,1,11.99,05/06/19 19:28,"728 Jefferson St, Austin, TX 73301" -198580,USB-C Charging Cable,1,11.95,05/28/19 21:04,"76 Chestnut St, Atlanta, GA 30301" -198581,AAA Batteries (4-pack),1,2.99,05/07/19 12:48,"684 Spruce St, Austin, TX 73301" -198582,27in FHD Monitor,1,149.99,05/12/19 21:03,"959 6th St, San Francisco, CA 94016" -198583,Macbook Pro Laptop,1,1700,05/27/19 11:03,"113 Ridge St, Los Angeles, CA 90001" -198584,AA Batteries (4-pack),1,3.84,05/11/19 23:52,"606 Maple St, San Francisco, CA 94016" -198585,AA Batteries (4-pack),1,3.84,05/29/19 21:38,"788 Willow St, Boston, MA 02215" -198586,AAA Batteries (4-pack),1,2.99,05/19/19 06:24,"138 Jackson St, New York City, NY 10001" -198587,Apple Airpods Headphones,1,150,05/14/19 10:05,"222 Ridge St, San Francisco, CA 94016" -198588,Lightning Charging Cable,1,14.95,05/29/19 09:33,"554 River St, Boston, MA 02215" -198589,Apple Airpods Headphones,1,150,05/25/19 18:27,"941 Washington St, San Francisco, CA 94016" -198590,Apple Airpods Headphones,1,150,05/01/19 17:19,"67 Dogwood St, San Francisco, CA 94016" -198591,Wired Headphones,1,11.99,05/23/19 13:34,"469 Church St, San Francisco, CA 94016" -198592,27in 4K Gaming Monitor,1,389.99,05/13/19 11:39,"35 Hill St, Portland, OR 97035" -198593,ThinkPad Laptop,1,999.99,05/02/19 15:00,"774 12th St, San Francisco, CA 94016" -198594,Wired Headphones,1,11.99,05/26/19 22:46,"97 Spruce St, Atlanta, GA 30301" -198595,AA Batteries (4-pack),3,3.84,05/22/19 20:27,"466 Lakeview St, Portland, OR 97035" -198596,AAA Batteries (4-pack),1,2.99,05/19/19 18:54,"677 Cedar St, New York City, NY 10001" -198597,34in Ultrawide Monitor,1,379.99,05/28/19 15:34,"280 Hickory St, San Francisco, CA 94016" -198598,Flatscreen TV,1,300,05/28/19 10:18,"932 North St, New York City, NY 10001" -198599,ThinkPad Laptop,1,999.99,05/28/19 17:10,"237 Johnson St, Atlanta, GA 30301" -198600,Apple Airpods Headphones,1,150,05/25/19 13:08,"570 Cedar St, New York City, NY 10001" -198601,27in FHD Monitor,1,149.99,05/16/19 16:25,"744 Washington St, Los Angeles, CA 90001" -198602,Google Phone,1,600,05/18/19 10:05,"568 Adams St, Los Angeles, CA 90001" -198602,USB-C Charging Cable,1,11.95,05/18/19 10:05,"568 Adams St, Los Angeles, CA 90001" -198603,Bose SoundSport Headphones,1,99.99,05/01/19 04:15,"394 Adams St, Portland, OR 97035" -198604,USB-C Charging Cable,1,11.95,05/22/19 20:21,"359 2nd St, Atlanta, GA 30301" -198605,Apple Airpods Headphones,1,150,05/20/19 21:22,"680 Walnut St, San Francisco, CA 94016" -198606,iPhone,1,700,05/20/19 19:54,"106 Center St, San Francisco, CA 94016" -198606,Lightning Charging Cable,1,14.95,05/20/19 19:54,"106 Center St, San Francisco, CA 94016" -198607,Wired Headphones,1,11.99,05/01/19 14:06,"231 Church St, Los Angeles, CA 90001" -198608,Bose SoundSport Headphones,1,99.99,05/09/19 17:25,"277 Washington St, Austin, TX 73301" -198609,AA Batteries (4-pack),3,3.84,05/10/19 15:39,"578 Meadow St, Boston, MA 02215" -198610,iPhone,1,700,05/17/19 20:11,"151 7th St, New York City, NY 10001" -198611,Bose SoundSport Headphones,1,99.99,05/06/19 15:39,"67 Lakeview St, Los Angeles, CA 90001" -198612,27in FHD Monitor,1,149.99,05/19/19 20:15,"761 Park St, Austin, TX 73301" -198613,Bose SoundSport Headphones,1,99.99,05/30/19 14:16,"901 6th St, San Francisco, CA 94016" -198614,Bose SoundSport Headphones,1,99.99,05/25/19 16:37,"924 North St, Dallas, TX 75001" -198615,USB-C Charging Cable,1,11.95,05/29/19 23:30,"779 5th St, Los Angeles, CA 90001" -198616,20in Monitor,1,109.99,05/29/19 09:41,"371 6th St, San Francisco, CA 94016" -198617,USB-C Charging Cable,1,11.95,05/17/19 17:01,"298 7th St, Atlanta, GA 30301" -198618,AA Batteries (4-pack),1,3.84,05/12/19 10:06,"362 Hickory St, Los Angeles, CA 90001" -198619,Lightning Charging Cable,1,14.95,05/31/19 16:26,"130 River St, Portland, OR 97035" -198620,27in FHD Monitor,1,149.99,05/04/19 18:09,"679 Adams St, San Francisco, CA 94016" -198621,Apple Airpods Headphones,1,150,05/18/19 15:45,"62 West St, Los Angeles, CA 90001" -198622,AAA Batteries (4-pack),2,2.99,05/04/19 12:52,"339 Pine St, Los Angeles, CA 90001" -198623,AA Batteries (4-pack),1,3.84,05/08/19 11:35,"888 Church St, New York City, NY 10001" -198624,Wired Headphones,1,11.99,05/28/19 17:30,"312 12th St, San Francisco, CA 94016" -198625,AAA Batteries (4-pack),1,2.99,05/18/19 20:14,"122 Elm St, Los Angeles, CA 90001" -198626,LG Dryer,1,600.0,05/26/19 12:28,"760 Elm St, Austin, TX 73301" -198627,Bose SoundSport Headphones,2,99.99,05/20/19 01:33,"752 Dogwood St, Los Angeles, CA 90001" -198628,34in Ultrawide Monitor,1,379.99,05/04/19 07:49,"739 Lakeview St, Boston, MA 02215" -198629,34in Ultrawide Monitor,1,379.99,05/15/19 15:56,"621 Center St, San Francisco, CA 94016" -198630,Apple Airpods Headphones,1,150,05/14/19 20:09,"881 Center St, New York City, NY 10001" -198631,Wired Headphones,1,11.99,05/11/19 19:49,"141 Hickory St, San Francisco, CA 94016" -198632,Lightning Charging Cable,1,14.95,05/25/19 05:31,"912 Hickory St, Portland, OR 97035" -198633,Wired Headphones,2,11.99,05/10/19 21:11,"4 Main St, Atlanta, GA 30301" -198634,AAA Batteries (4-pack),1,2.99,05/11/19 14:11,"212 Johnson St, Austin, TX 73301" -198635,27in 4K Gaming Monitor,1,389.99,05/02/19 12:21,"951 Willow St, New York City, NY 10001" -198636,USB-C Charging Cable,1,11.95,05/20/19 21:23,"669 Willow St, San Francisco, CA 94016" -198637,iPhone,1,700,05/05/19 16:30,"998 Meadow St, Los Angeles, CA 90001" -198638,Bose SoundSport Headphones,1,99.99,05/11/19 16:41,"690 Dogwood St, Dallas, TX 75001" -198639,USB-C Charging Cable,1,11.95,05/12/19 11:51,"824 4th St, San Francisco, CA 94016" -198640,27in FHD Monitor,1,149.99,05/24/19 07:48,"554 Highland St, San Francisco, CA 94016" -198641,Apple Airpods Headphones,1,150,05/24/19 22:58,"384 Maple St, Dallas, TX 75001" -198642,Lightning Charging Cable,1,14.95,05/13/19 19:54,"755 Adams St, Portland, OR 97035" -198643,USB-C Charging Cable,2,11.95,05/17/19 17:38,"821 Ridge St, Los Angeles, CA 90001" -198644,Bose SoundSport Headphones,1,99.99,05/20/19 04:02,"992 Chestnut St, New York City, NY 10001" -198645,AAA Batteries (4-pack),1,2.99,05/16/19 14:18,"34 Lincoln St, Boston, MA 02215" -198646,USB-C Charging Cable,1,11.95,05/13/19 09:59,"17 13th St, Los Angeles, CA 90001" -198647,Apple Airpods Headphones,1,150,05/26/19 09:40,"976 12th St, San Francisco, CA 94016" -198648,Wired Headphones,1,11.99,05/04/19 13:57,"916 Lake St, Atlanta, GA 30301" -198649,Lightning Charging Cable,1,14.95,05/30/19 09:51,"960 2nd St, Los Angeles, CA 90001" -198650,Wired Headphones,1,11.99,05/03/19 15:57,"272 Sunset St, Boston, MA 02215" -198651,Wired Headphones,1,11.99,05/17/19 21:40,"697 Johnson St, New York City, NY 10001" -198652,USB-C Charging Cable,1,11.95,05/30/19 13:05,"643 4th St, New York City, NY 10001" -198653,AA Batteries (4-pack),1,3.84,05/07/19 16:41,"953 South St, Portland, OR 97035" -198654,27in FHD Monitor,1,149.99,05/07/19 08:49,"964 Jackson St, Dallas, TX 75001" -198655,Wired Headphones,1,11.99,05/21/19 09:17,"65 Church St, New York City, NY 10001" -198656,Bose SoundSport Headphones,1,99.99,05/16/19 22:05,"302 Jackson St, Portland, OR 97035" -198657,Flatscreen TV,1,300,05/24/19 09:32,"330 Madison St, Portland, OR 97035" -198658,iPhone,1,700,05/27/19 18:53,"705 1st St, Portland, OR 97035" -198659,AA Batteries (4-pack),1,3.84,05/11/19 21:42,"875 11th St, Boston, MA 02215" -198660,34in Ultrawide Monitor,1,379.99,05/14/19 19:27,"86 Meadow St, New York City, NY 10001" -198661,Google Phone,1,600,05/28/19 21:48,"208 11th St, San Francisco, CA 94016" -198661,AAA Batteries (4-pack),1,2.99,05/28/19 21:48,"208 11th St, San Francisco, CA 94016" -198662,Wired Headphones,1,11.99,05/03/19 19:56,"107 Wilson St, New York City, NY 10001" -198663,Bose SoundSport Headphones,1,99.99,05/19/19 17:09,"367 Jackson St, Portland, OR 97035" -198664,Lightning Charging Cable,1,14.95,05/24/19 11:58,"720 Maple St, Los Angeles, CA 90001" -198665,Apple Airpods Headphones,1,150,05/11/19 07:11,"594 Forest St, San Francisco, CA 94016" -198666,AAA Batteries (4-pack),1,2.99,05/10/19 12:25,"387 2nd St, Portland, OR 97035" -198667,AA Batteries (4-pack),1,3.84,05/15/19 14:21,"321 Pine St, Atlanta, GA 30301" -198668,Wired Headphones,2,11.99,05/11/19 17:57,"814 13th St, Los Angeles, CA 90001" -198669,ThinkPad Laptop,1,999.99,05/22/19 13:58,"751 Hill St, Boston, MA 02215" -198670,AAA Batteries (4-pack),2,2.99,05/22/19 17:29,"795 Sunset St, Atlanta, GA 30301" -198671,ThinkPad Laptop,1,999.99,05/29/19 11:08,"112 Hill St, Seattle, WA 98101" -198672,AAA Batteries (4-pack),1,2.99,05/06/19 20:37,"598 Cedar St, Los Angeles, CA 90001" -198673,USB-C Charging Cable,1,11.95,05/29/19 17:29,"833 Park St, New York City, NY 10001" -198674,Lightning Charging Cable,1,14.95,05/17/19 14:10,"340 Lincoln St, San Francisco, CA 94016" -198675,USB-C Charging Cable,1,11.95,05/16/19 18:26,"638 5th St, Los Angeles, CA 90001" -198676,Lightning Charging Cable,1,14.95,05/25/19 18:16,"897 Meadow St, Boston, MA 02215" -198677,iPhone,1,700,05/27/19 10:20,"23 8th St, San Francisco, CA 94016" -198677,Lightning Charging Cable,1,14.95,05/27/19 10:20,"23 8th St, San Francisco, CA 94016" -198678,Wired Headphones,1,11.99,05/24/19 22:13,"87 Washington St, New York City, NY 10001" -198679,Wired Headphones,2,11.99,05/13/19 08:44,"306 Dogwood St, Atlanta, GA 30301" -198680,AAA Batteries (4-pack),2,2.99,05/31/19 03:33,"402 Spruce St, New York City, NY 10001" -198681,iPhone,1,700,05/06/19 16:59,"53 Maple St, Portland, OR 97035" -198682,Vareebadd Phone,1,400,05/16/19 19:02,"749 Johnson St, Boston, MA 02215" -198682,USB-C Charging Cable,1,11.95,05/16/19 19:02,"749 Johnson St, Boston, MA 02215" -198683,USB-C Charging Cable,1,11.95,05/15/19 22:38,"590 Cherry St, Boston, MA 02215" -198684,34in Ultrawide Monitor,1,379.99,05/07/19 15:23,"893 Main St, San Francisco, CA 94016" -198685,AAA Batteries (4-pack),1,2.99,05/26/19 13:15,"88 Ridge St, San Francisco, CA 94016" -198686,AAA Batteries (4-pack),1,2.99,05/02/19 12:08,"902 2nd St, San Francisco, CA 94016" -198687,Wired Headphones,1,11.99,05/02/19 21:17,"301 Spruce St, Los Angeles, CA 90001" -198688,Lightning Charging Cable,1,14.95,05/13/19 07:26,"138 Sunset St, Boston, MA 02215" -198689,AAA Batteries (4-pack),1,2.99,05/17/19 10:38,"664 Pine St, New York City, NY 10001" -198690,USB-C Charging Cable,1,11.95,05/27/19 17:17,"411 Washington St, New York City, NY 10001" -198691,AA Batteries (4-pack),1,3.84,05/03/19 13:41,"582 Chestnut St, San Francisco, CA 94016" -198692,USB-C Charging Cable,1,11.95,05/06/19 19:34,"753 Jackson St, Los Angeles, CA 90001" -198693,USB-C Charging Cable,1,11.95,05/20/19 12:21,"585 Hill St, San Francisco, CA 94016" -198694,USB-C Charging Cable,1,11.95,05/22/19 12:38,"392 12th St, Portland, OR 97035" -198695,Google Phone,1,600,05/09/19 11:05,"212 Maple St, Atlanta, GA 30301" -198696,Bose SoundSport Headphones,1,99.99,05/12/19 19:08,"453 Cedar St, New York City, NY 10001" -198697,27in 4K Gaming Monitor,1,389.99,05/10/19 14:22,"990 Maple St, New York City, NY 10001" -198698,AA Batteries (4-pack),1,3.84,05/27/19 11:33,"300 8th St, Dallas, TX 75001" -198699,Google Phone,1,600,05/02/19 20:38,"240 Church St, New York City, NY 10001" -198699,Bose SoundSport Headphones,1,99.99,05/02/19 20:38,"240 Church St, New York City, NY 10001" -198700,USB-C Charging Cable,1,11.95,05/28/19 10:15,"758 13th St, Seattle, WA 98101" -198701,USB-C Charging Cable,1,11.95,05/22/19 13:29,"729 Adams St, Boston, MA 02215" -198702,USB-C Charging Cable,1,11.95,05/15/19 15:28,"563 8th St, Atlanta, GA 30301" -198703,Lightning Charging Cable,1,14.95,05/14/19 10:23,"69 Walnut St, Portland, OR 97035" -198704,Wired Headphones,1,11.99,05/25/19 20:31,"373 North St, Boston, MA 02215" -198705,Lightning Charging Cable,1,14.95,05/10/19 13:27,"168 Park St, Austin, TX 73301" -198706,Apple Airpods Headphones,1,150,05/10/19 06:03,"242 Spruce St, San Francisco, CA 94016" -198707,Wired Headphones,2,11.99,05/03/19 23:19,"29 Pine St, Seattle, WA 98101" -198707,AA Batteries (4-pack),1,3.84,05/03/19 23:19,"29 Pine St, Seattle, WA 98101" -198708,USB-C Charging Cable,1,11.95,05/08/19 19:22,"406 Spruce St, Dallas, TX 75001" -198709,Apple Airpods Headphones,1,150,05/24/19 10:11,"698 12th St, Boston, MA 02215" -198710,AAA Batteries (4-pack),1,2.99,05/09/19 17:37,"350 Dogwood St, Atlanta, GA 30301" -198711,AA Batteries (4-pack),1,3.84,05/26/19 02:17,"498 5th St, Portland, ME 04101" -198712,Lightning Charging Cable,1,14.95,05/01/19 13:01,"918 Church St, Los Angeles, CA 90001" -198713,AAA Batteries (4-pack),1,2.99,05/06/19 20:59,"442 14th St, Boston, MA 02215" -198714,Wired Headphones,1,11.99,05/19/19 22:45,"710 9th St, Atlanta, GA 30301" -198715,USB-C Charging Cable,1,11.95,05/30/19 07:51,"859 13th St, New York City, NY 10001" -198715,Google Phone,1,600,05/30/19 07:51,"859 13th St, New York City, NY 10001" -198716,iPhone,1,700,05/18/19 10:49,"822 Church St, Los Angeles, CA 90001" -198717,Flatscreen TV,1,300,05/27/19 16:54,"621 River St, San Francisco, CA 94016" -198718,Apple Airpods Headphones,1,150,05/29/19 19:57,"958 Maple St, San Francisco, CA 94016" -198719,Wired Headphones,2,11.99,05/16/19 22:44,"735 Church St, San Francisco, CA 94016" -198720,Bose SoundSport Headphones,1,99.99,05/27/19 16:28,"806 Washington St, San Francisco, CA 94016" -198721,AA Batteries (4-pack),2,3.84,05/15/19 14:04,"328 Church St, Dallas, TX 75001" -198722,USB-C Charging Cable,2,11.95,05/27/19 16:28,"807 4th St, Atlanta, GA 30301" -198723,USB-C Charging Cable,1,11.95,05/27/19 12:25,"846 Adams St, Austin, TX 73301" -198724,Flatscreen TV,1,300,05/11/19 05:12,"900 Cherry St, New York City, NY 10001" -198725,Google Phone,1,600,05/26/19 17:20,"758 Willow St, New York City, NY 10001" -198726,27in FHD Monitor,1,149.99,05/20/19 16:45,"251 Walnut St, Seattle, WA 98101" -198727,AA Batteries (4-pack),1,3.84,05/24/19 14:45,"526 Pine St, Los Angeles, CA 90001" -198728,iPhone,1,700,05/18/19 19:05,"876 Willow St, Los Angeles, CA 90001" -198729,AAA Batteries (4-pack),2,2.99,05/11/19 13:04,"290 14th St, Los Angeles, CA 90001" -198730,Wired Headphones,2,11.99,05/01/19 15:05,"792 Main St, San Francisco, CA 94016" -198731,27in FHD Monitor,1,149.99,05/02/19 14:12,"618 Hickory St, Boston, MA 02215" -198732,Bose SoundSport Headphones,1,99.99,05/29/19 10:57,"27 Lakeview St, Atlanta, GA 30301" -198733,Lightning Charging Cable,1,14.95,05/23/19 15:43,"659 8th St, Austin, TX 73301" -198734,Lightning Charging Cable,1,14.95,05/21/19 13:42,"115 Hickory St, Los Angeles, CA 90001" -198735,iPhone,1,700,05/09/19 16:32,"830 13th St, Boston, MA 02215" -198736,USB-C Charging Cable,1,11.95,05/18/19 08:22,"844 Elm St, San Francisco, CA 94016" -198737,USB-C Charging Cable,1,11.95,05/05/19 23:08,"637 5th St, Dallas, TX 75001" -198738,Macbook Pro Laptop,1,1700,05/26/19 21:12,"84 5th St, Dallas, TX 75001" -198739,ThinkPad Laptop,1,999.99,05/05/19 22:05,"529 Park St, Los Angeles, CA 90001" -198740,27in FHD Monitor,1,149.99,05/26/19 12:34,"434 Ridge St, San Francisco, CA 94016" -198741,Wired Headphones,1,11.99,05/22/19 16:15,"248 7th St, Los Angeles, CA 90001" -198742,Apple Airpods Headphones,1,150,05/17/19 12:49,"715 Church St, New York City, NY 10001" -198743,AA Batteries (4-pack),1,3.84,05/18/19 03:54,"464 Ridge St, San Francisco, CA 94016" -198744,34in Ultrawide Monitor,1,379.99,05/17/19 00:03,"506 Madison St, Seattle, WA 98101" -198745,Apple Airpods Headphones,1,150,05/03/19 06:53,"154 South St, San Francisco, CA 94016" -198746,Wired Headphones,1,11.99,05/01/19 18:58,"339 Dogwood St, San Francisco, CA 94016" -198747,Bose SoundSport Headphones,1,99.99,05/31/19 20:09,"626 Willow St, New York City, NY 10001" -198748,Apple Airpods Headphones,1,150,05/11/19 09:24,"12 Jefferson St, Seattle, WA 98101" -198749,Bose SoundSport Headphones,1,99.99,05/29/19 18:18,"951 North St, Los Angeles, CA 90001" -198750,AAA Batteries (4-pack),3,2.99,05/02/19 11:24,"40 Church St, New York City, NY 10001" -198751,USB-C Charging Cable,1,11.95,05/08/19 14:55,"819 14th St, Boston, MA 02215" -198752,USB-C Charging Cable,1,11.95,05/09/19 20:41,"650 7th St, Boston, MA 02215" -198752,AAA Batteries (4-pack),1,2.99,05/09/19 20:41,"650 7th St, Boston, MA 02215" -198753,USB-C Charging Cable,1,11.95,05/16/19 20:41,"691 Washington St, New York City, NY 10001" -198754,Apple Airpods Headphones,1,150,05/29/19 21:38,"374 Sunset St, San Francisco, CA 94016" -198755,Apple Airpods Headphones,1,150,05/12/19 13:25,"195 Willow St, New York City, NY 10001" -198756,ThinkPad Laptop,1,999.99,05/09/19 14:08,"905 North St, San Francisco, CA 94016" -198757,USB-C Charging Cable,1,11.95,05/23/19 20:04,"702 1st St, New York City, NY 10001" -198758,Apple Airpods Headphones,1,150,05/01/19 21:40,"658 Cedar St, Boston, MA 02215" -198759,AAA Batteries (4-pack),2,2.99,05/27/19 17:58,"561 6th St, Atlanta, GA 30301" -198760,USB-C Charging Cable,1,11.95,05/25/19 17:20,"229 4th St, San Francisco, CA 94016" -198761,Google Phone,1,600,05/18/19 19:56,"376 4th St, San Francisco, CA 94016" -198762,27in FHD Monitor,1,149.99,05/26/19 12:34,"30 Cherry St, San Francisco, CA 94016" -198763,AA Batteries (4-pack),2,3.84,05/17/19 11:11,"405 Jackson St, San Francisco, CA 94016" -198764,27in FHD Monitor,1,149.99,05/28/19 12:16,"592 Main St, Los Angeles, CA 90001" -198765,AA Batteries (4-pack),1,3.84,05/18/19 18:39,"258 Lincoln St, Dallas, TX 75001" -198766,27in FHD Monitor,1,149.99,05/23/19 19:40,"799 Park St, Boston, MA 02215" -198767,27in 4K Gaming Monitor,1,389.99,05/06/19 11:00,"890 9th St, New York City, NY 10001" -198768,USB-C Charging Cable,1,11.95,05/26/19 18:18,"837 South St, San Francisco, CA 94016" -198769,Wired Headphones,1,11.99,05/15/19 21:18,"6 Maple St, Los Angeles, CA 90001" -198770,20in Monitor,1,109.99,05/21/19 00:17,"902 12th St, Boston, MA 02215" -198771,iPhone,1,700,05/07/19 10:07,"614 Spruce St, New York City, NY 10001" -198772,34in Ultrawide Monitor,1,379.99,05/06/19 13:20,"478 Lakeview St, San Francisco, CA 94016" -198773,Lightning Charging Cable,1,14.95,05/09/19 19:12,"853 10th St, New York City, NY 10001" -198774,Lightning Charging Cable,1,14.95,05/20/19 20:03,"360 5th St, Portland, OR 97035" -198775,Apple Airpods Headphones,1,150,05/03/19 22:01,"516 Chestnut St, Boston, MA 02215" -198775,AA Batteries (4-pack),1,3.84,05/03/19 22:01,"516 Chestnut St, Boston, MA 02215" -198776,Lightning Charging Cable,1,14.95,05/26/19 17:32,"841 Cedar St, San Francisco, CA 94016" -198777,27in FHD Monitor,1,149.99,05/05/19 19:19,"941 5th St, New York City, NY 10001" -198778,AAA Batteries (4-pack),1,2.99,05/26/19 20:38,"9 North St, San Francisco, CA 94016" -198779,iPhone,1,700,05/10/19 16:53,"265 Willow St, San Francisco, CA 94016" -198780,Macbook Pro Laptop,1,1700,05/13/19 22:55,"868 4th St, Los Angeles, CA 90001" -198781,AA Batteries (4-pack),1,3.84,05/16/19 07:27,"195 Willow St, San Francisco, CA 94016" -198782,20in Monitor,1,109.99,05/09/19 23:05,"679 Hickory St, Atlanta, GA 30301" -198783,AAA Batteries (4-pack),1,2.99,05/24/19 06:06,"722 Highland St, Boston, MA 02215" -198784,Lightning Charging Cable,1,14.95,05/25/19 11:13,"227 Washington St, Los Angeles, CA 90001" -198785,Google Phone,1,600,05/20/19 11:01,"662 2nd St, Austin, TX 73301" -198786,Bose SoundSport Headphones,1,99.99,05/11/19 01:10,"300 Meadow St, San Francisco, CA 94016" -198787,27in FHD Monitor,1,149.99,05/13/19 13:15,"347 Forest St, Los Angeles, CA 90001" -198788,Lightning Charging Cable,2,14.95,05/24/19 17:53,"313 8th St, San Francisco, CA 94016" -198789,USB-C Charging Cable,1,11.95,05/05/19 19:52,"439 2nd St, San Francisco, CA 94016" -198790,Macbook Pro Laptop,1,1700,05/11/19 08:45,"709 Highland St, Dallas, TX 75001" -198791,iPhone,1,700,05/26/19 17:58,"27 Meadow St, New York City, NY 10001" -198792,iPhone,1,700,05/19/19 08:58,"622 Pine St, Seattle, WA 98101" -198793,20in Monitor,1,109.99,05/07/19 08:58,"672 West St, San Francisco, CA 94016" -198794,AAA Batteries (4-pack),1,2.99,05/03/19 14:46,"337 River St, San Francisco, CA 94016" -198795,Google Phone,1,600,05/08/19 12:58,"547 River St, Dallas, TX 75001" -198795,AAA Batteries (4-pack),1,2.99,05/08/19 12:58,"547 River St, Dallas, TX 75001" -198796,USB-C Charging Cable,1,11.95,05/04/19 00:03,"224 Madison St, Portland, OR 97035" -198797,Bose SoundSport Headphones,1,99.99,05/11/19 20:05,"599 11th St, Atlanta, GA 30301" -198798,Lightning Charging Cable,1,14.95,05/25/19 13:23,"532 Jefferson St, Atlanta, GA 30301" -198799,AA Batteries (4-pack),1,3.84,05/11/19 20:48,"425 Hill St, Austin, TX 73301" -198800,Macbook Pro Laptop,1,1700,05/01/19 06:39,"659 Jefferson St, Seattle, WA 98101" -198801,Lightning Charging Cable,1,14.95,05/22/19 14:13,"727 Lake St, Dallas, TX 75001" -198802,Apple Airpods Headphones,1,150,05/16/19 10:17,"769 2nd St, Los Angeles, CA 90001" -198803,AAA Batteries (4-pack),1,2.99,05/10/19 09:12,"884 Lincoln St, San Francisco, CA 94016" -198804,Lightning Charging Cable,1,14.95,05/07/19 12:52,"63 Walnut St, New York City, NY 10001" -198805,Vareebadd Phone,1,400,05/08/19 04:45,"811 9th St, Seattle, WA 98101" -198806,Lightning Charging Cable,1,14.95,05/18/19 12:10,"234 Ridge St, San Francisco, CA 94016" -198807,Google Phone,1,600,05/30/19 11:33,"656 Hill St, Los Angeles, CA 90001" -198808,USB-C Charging Cable,1,11.95,05/06/19 12:43,"655 Forest St, New York City, NY 10001" -198809,ThinkPad Laptop,1,999.99,05/10/19 16:48,"259 Spruce St, San Francisco, CA 94016" -198810,Apple Airpods Headphones,1,150,05/04/19 08:32,"915 11th St, New York City, NY 10001" -198811,Apple Airpods Headphones,1,150,05/28/19 09:05,"357 Cedar St, Los Angeles, CA 90001" -198811,27in 4K Gaming Monitor,1,389.99,05/28/19 09:05,"357 Cedar St, Los Angeles, CA 90001" -198812,Lightning Charging Cable,1,14.95,05/24/19 12:47,"72 North St, Boston, MA 02215" -198813,USB-C Charging Cable,1,11.95,05/23/19 16:23,"697 Jackson St, San Francisco, CA 94016" -198814,Lightning Charging Cable,1,14.95,05/22/19 15:37,"458 Ridge St, San Francisco, CA 94016" -198815,Wired Headphones,1,11.99,05/12/19 09:08,"695 Elm St, New York City, NY 10001" -198816,AA Batteries (4-pack),1,3.84,05/29/19 13:28,"538 Adams St, Boston, MA 02215" -198817,AAA Batteries (4-pack),1,2.99,05/05/19 19:19,"575 Chestnut St, San Francisco, CA 94016" -198818,USB-C Charging Cable,1,11.95,05/14/19 22:06,"499 5th St, Austin, TX 73301" -198819,Macbook Pro Laptop,1,1700,05/18/19 18:53,"805 Cedar St, Atlanta, GA 30301" -198820,Wired Headphones,1,11.99,05/09/19 10:38,"277 Ridge St, San Francisco, CA 94016" -198821,AAA Batteries (4-pack),2,2.99,05/19/19 22:19,"597 Center St, Boston, MA 02215" -198822,Lightning Charging Cable,1,14.95,05/25/19 07:40,"869 Adams St, Atlanta, GA 30301" -198823,AA Batteries (4-pack),1,3.84,05/01/19 18:35,"375 Cherry St, Boston, MA 02215" -198824,ThinkPad Laptop,1,999.99,05/13/19 17:48,"993 4th St, New York City, NY 10001" -198825,20in Monitor,1,109.99,05/19/19 06:29,"581 Adams St, Dallas, TX 75001" -198826,AAA Batteries (4-pack),1,2.99,05/14/19 18:56,"678 13th St, Austin, TX 73301" -198827,AA Batteries (4-pack),1,3.84,05/25/19 17:22,"825 Madison St, San Francisco, CA 94016" -198828,27in FHD Monitor,1,149.99,05/02/19 18:52,"673 Church St, San Francisco, CA 94016" -198829,USB-C Charging Cable,1,11.95,05/20/19 21:36,"68 Lincoln St, Dallas, TX 75001" -198830,Apple Airpods Headphones,1,150,05/13/19 18:50,"816 Willow St, Boston, MA 02215" -198831,Lightning Charging Cable,1,14.95,05/31/19 17:41,"911 Pine St, New York City, NY 10001" -198832,Bose SoundSport Headphones,1,99.99,05/15/19 10:08,"443 Pine St, San Francisco, CA 94016" -198833,27in 4K Gaming Monitor,1,389.99,05/13/19 20:45,"879 6th St, New York City, NY 10001" -198834,ThinkPad Laptop,1,999.99,05/11/19 09:35,"926 Elm St, San Francisco, CA 94016" -198835,Wired Headphones,1,11.99,05/25/19 14:12,"861 Pine St, San Francisco, CA 94016" -198836,AAA Batteries (4-pack),1,2.99,05/15/19 16:23,"746 Lake St, New York City, NY 10001" -198837,27in FHD Monitor,1,149.99,05/02/19 20:45,"143 12th St, New York City, NY 10001" -198838,20in Monitor,1,109.99,05/25/19 17:25,"212 North St, Portland, OR 97035" -198839,AAA Batteries (4-pack),2,2.99,05/06/19 17:48,"303 6th St, Boston, MA 02215" -198840,AA Batteries (4-pack),1,3.84,05/07/19 15:35,"865 South St, Portland, OR 97035" -198841,Wired Headphones,1,11.99,05/16/19 20:36,"431 Wilson St, Seattle, WA 98101" -198842,Lightning Charging Cable,1,14.95,05/19/19 21:35,"275 Jackson St, Boston, MA 02215" -198843,USB-C Charging Cable,1,11.95,05/20/19 13:08,"726 6th St, Portland, OR 97035" -198844,Wired Headphones,1,11.99,05/17/19 10:04,"403 River St, San Francisco, CA 94016" -198845,AA Batteries (4-pack),1,3.84,05/02/19 16:09,"390 Chestnut St, Los Angeles, CA 90001" -198846,USB-C Charging Cable,1,11.95,05/09/19 13:01,"452 14th St, Seattle, WA 98101" -198847,Apple Airpods Headphones,1,150,05/04/19 00:54,"1 North St, Boston, MA 02215" -198847,Wired Headphones,1,11.99,05/04/19 00:54,"1 North St, Boston, MA 02215" -198848,AAA Batteries (4-pack),1,2.99,05/16/19 07:32,"398 13th St, San Francisco, CA 94016" -198849,AA Batteries (4-pack),2,3.84,05/08/19 23:04,"852 Main St, Seattle, WA 98101" -198850,Lightning Charging Cable,1,14.95,05/16/19 21:36,"422 West St, New York City, NY 10001" -198851,AA Batteries (4-pack),2,3.84,05/10/19 21:09,"965 4th St, Atlanta, GA 30301" -198852,AA Batteries (4-pack),1,3.84,05/28/19 12:50,"621 River St, Portland, OR 97035" -198853,Lightning Charging Cable,1,14.95,05/14/19 20:06,"448 Hill St, Atlanta, GA 30301" -198854,Wired Headphones,1,11.99,05/10/19 07:38,"976 Cherry St, Portland, OR 97035" -198855,Lightning Charging Cable,1,14.95,05/05/19 20:44,"946 12th St, Dallas, TX 75001" -198856,Apple Airpods Headphones,1,150,05/20/19 09:07,"874 13th St, Portland, ME 04101" -198857,Bose SoundSport Headphones,1,99.99,05/03/19 21:05,"223 Elm St, Los Angeles, CA 90001" -198858,USB-C Charging Cable,1,11.95,05/27/19 19:40,"834 Adams St, Atlanta, GA 30301" -198859,34in Ultrawide Monitor,1,379.99,05/27/19 12:45,"267 6th St, San Francisco, CA 94016" -198860,AA Batteries (4-pack),1,3.84,05/22/19 02:26,"70 Adams St, San Francisco, CA 94016" -198861,AA Batteries (4-pack),1,3.84,05/14/19 12:38,"367 Park St, Los Angeles, CA 90001" -198862,20in Monitor,1,109.99,05/12/19 22:50,"508 13th St, Boston, MA 02215" -198863,Bose SoundSport Headphones,1,99.99,05/14/19 23:37,"743 Adams St, Atlanta, GA 30301" -198864,Bose SoundSport Headphones,1,99.99,05/24/19 05:47,"494 Cedar St, Boston, MA 02215" -198865,Wired Headphones,1,11.99,05/25/19 17:47,"844 4th St, Boston, MA 02215" -198866,USB-C Charging Cable,1,11.95,05/04/19 22:17,"145 Main St, Austin, TX 73301" -198867,USB-C Charging Cable,2,11.95,05/15/19 10:09,"874 13th St, New York City, NY 10001" -198868,Bose SoundSport Headphones,1,99.99,05/29/19 03:58,"558 4th St, Boston, MA 02215" -198869,Apple Airpods Headphones,1,150,05/08/19 15:29,"627 Washington St, Austin, TX 73301" -198870,AAA Batteries (4-pack),2,2.99,05/02/19 22:51,"771 West St, Portland, OR 97035" -198871,ThinkPad Laptop,1,999.99,05/01/19 16:19,"510 12th St, Portland, OR 97035" -198872,AAA Batteries (4-pack),1,2.99,05/08/19 12:40,"998 Hickory St, San Francisco, CA 94016" -198873,Lightning Charging Cable,1,14.95,05/09/19 03:01,"459 5th St, Portland, OR 97035" -198874,AAA Batteries (4-pack),1,2.99,05/03/19 12:28,"306 West St, Portland, OR 97035" -198875,Wired Headphones,1,11.99,05/31/19 22:30,"638 2nd St, Boston, MA 02215" -198876,AA Batteries (4-pack),1,3.84,05/25/19 13:42,"546 Ridge St, San Francisco, CA 94016" -198877,Lightning Charging Cable,1,14.95,05/10/19 15:08,"83 Meadow St, Dallas, TX 75001" -198878,USB-C Charging Cable,1,11.95,05/11/19 16:56,"239 Lakeview St, New York City, NY 10001" -198879,Wired Headphones,2,11.99,05/24/19 12:42,"12 Pine St, Portland, OR 97035" -198880,Wired Headphones,1,11.99,05/06/19 19:02,"146 7th St, Los Angeles, CA 90001" -198881,AAA Batteries (4-pack),1,2.99,05/16/19 11:56,"981 Forest St, Los Angeles, CA 90001" -198882,Macbook Pro Laptop,1,1700,05/28/19 12:57,"787 Park St, Los Angeles, CA 90001" -198883,AAA Batteries (4-pack),1,2.99,05/18/19 09:01,"963 West St, Seattle, WA 98101" -198884,Google Phone,1,600,05/31/19 20:04,"919 Cedar St, Boston, MA 02215" -198885,ThinkPad Laptop,1,999.99,05/18/19 16:13,"671 12th St, San Francisco, CA 94016" -198886,ThinkPad Laptop,1,999.99,05/18/19 14:10,"226 Meadow St, Atlanta, GA 30301" -198887,AA Batteries (4-pack),1,3.84,05/30/19 10:51,"722 Dogwood St, Boston, MA 02215" -198888,Google Phone,1,600,05/30/19 14:44,"427 Adams St, New York City, NY 10001" -198889,AAA Batteries (4-pack),2,2.99,05/10/19 19:35,"573 Wilson St, Austin, TX 73301" -198890,AAA Batteries (4-pack),1,2.99,05/26/19 13:47,"509 Elm St, Portland, OR 97035" -198891,Lightning Charging Cable,1,14.95,05/13/19 11:43,"356 Lakeview St, Los Angeles, CA 90001" -198892,Apple Airpods Headphones,1,150,05/12/19 14:06,"662 Washington St, San Francisco, CA 94016" -198893,Google Phone,1,600,05/02/19 21:44,"945 Chestnut St, Boston, MA 02215" -198894,ThinkPad Laptop,1,999.99,05/30/19 19:29,"971 5th St, New York City, NY 10001" -198895,Lightning Charging Cable,1,14.95,05/02/19 01:13,"343 14th St, Dallas, TX 75001" -198896,Wired Headphones,1,11.99,05/04/19 00:46,"615 Meadow St, San Francisco, CA 94016" -198897,USB-C Charging Cable,3,11.95,05/31/19 15:39,"401 Chestnut St, Dallas, TX 75001" -198898,Apple Airpods Headphones,1,150,05/16/19 18:24,"796 Cedar St, San Francisco, CA 94016" -198899,Apple Airpods Headphones,1,150,05/13/19 13:28,"654 Lincoln St, Los Angeles, CA 90001" -198900,AA Batteries (4-pack),2,3.84,05/15/19 21:07,"441 South St, Los Angeles, CA 90001" -198901,Bose SoundSport Headphones,1,99.99,05/14/19 14:06,"179 Adams St, Austin, TX 73301" -198902,ThinkPad Laptop,1,999.99,05/03/19 17:26,"721 Chestnut St, Los Angeles, CA 90001" -198903,AA Batteries (4-pack),2,3.84,05/11/19 20:42,"536 Ridge St, Boston, MA 02215" -198904,USB-C Charging Cable,1,11.95,05/27/19 22:33,"266 Church St, Portland, OR 97035" -198905,Lightning Charging Cable,1,14.95,05/21/19 20:46,"953 5th St, San Francisco, CA 94016" -198906,AAA Batteries (4-pack),1,2.99,05/02/19 13:29,"796 2nd St, New York City, NY 10001" -198907,AA Batteries (4-pack),1,3.84,05/09/19 20:11,"894 South St, San Francisco, CA 94016" -198908,AAA Batteries (4-pack),2,2.99,05/30/19 10:41,"202 South St, San Francisco, CA 94016" -198909,Lightning Charging Cable,1,14.95,05/14/19 19:18,"949 Cedar St, San Francisco, CA 94016" -198910,Wired Headphones,1,11.99,05/19/19 08:47,"375 5th St, New York City, NY 10001" -198911,Apple Airpods Headphones,1,150,05/07/19 09:41,"508 Chestnut St, Dallas, TX 75001" -198912,Apple Airpods Headphones,1,150,05/08/19 09:02,"85 Jackson St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -198913,Google Phone,1,600,05/24/19 10:41,"286 10th St, Seattle, WA 98101" -198914,AA Batteries (4-pack),1,3.84,05/15/19 14:56,"815 Wilson St, Seattle, WA 98101" -198915,USB-C Charging Cable,1,11.95,05/09/19 15:39,"207 Willow St, Los Angeles, CA 90001" -198916,USB-C Charging Cable,1,11.95,05/09/19 20:39,"203 1st St, Dallas, TX 75001" -198917,ThinkPad Laptop,1,999.99,05/03/19 15:39,"404 12th St, San Francisco, CA 94016" -198918,AA Batteries (4-pack),1,3.84,05/22/19 11:25,"499 Center St, Los Angeles, CA 90001" -198919,Flatscreen TV,1,300,05/18/19 09:12,"84 Hill St, Boston, MA 02215" -198920,Bose SoundSport Headphones,1,99.99,05/22/19 20:48,"378 South St, Dallas, TX 75001" -198921,Bose SoundSport Headphones,1,99.99,05/31/19 13:03,"888 Chestnut St, Dallas, TX 75001" -198922,Wired Headphones,1,11.99,05/13/19 07:00,"411 Elm St, Austin, TX 73301" -198923,AA Batteries (4-pack),1,3.84,05/07/19 19:17,"695 6th St, Seattle, WA 98101" -198924,USB-C Charging Cable,1,11.95,05/13/19 21:17,"946 6th St, New York City, NY 10001" -198925,27in FHD Monitor,1,149.99,05/10/19 17:17,"135 Lakeview St, New York City, NY 10001" -198926,USB-C Charging Cable,2,11.95,05/06/19 00:20,"827 Pine St, San Francisco, CA 94016" -198927,AA Batteries (4-pack),1,3.84,05/25/19 16:19,"521 Cedar St, San Francisco, CA 94016" -198928,34in Ultrawide Monitor,1,379.99,05/08/19 22:46,"31 Pine St, Boston, MA 02215" -198929,AAA Batteries (4-pack),5,2.99,05/22/19 00:41,"934 Forest St, Seattle, WA 98101" -198930,AAA Batteries (4-pack),2,2.99,05/17/19 18:40,"236 7th St, San Francisco, CA 94016" -198931,AA Batteries (4-pack),1,3.84,05/24/19 05:45,"462 7th St, Portland, OR 97035" -198932,USB-C Charging Cable,1,11.95,05/08/19 20:48,"528 North St, San Francisco, CA 94016" -198933,Lightning Charging Cable,1,14.95,05/25/19 20:09,"822 Forest St, San Francisco, CA 94016" -198934,27in 4K Gaming Monitor,1,389.99,05/20/19 14:17,"592 10th St, San Francisco, CA 94016" -198935,Lightning Charging Cable,2,14.95,05/02/19 19:20,"528 Johnson St, Los Angeles, CA 90001" -198936,Lightning Charging Cable,1,14.95,05/03/19 05:50,"919 Meadow St, Atlanta, GA 30301" -198937,27in 4K Gaming Monitor,1,389.99,05/05/19 19:42,"820 Jackson St, Los Angeles, CA 90001" -198938,Wired Headphones,1,11.99,05/04/19 08:34,"768 Wilson St, Atlanta, GA 30301" -198939,27in 4K Gaming Monitor,1,389.99,05/18/19 12:41,"365 Jackson St, San Francisco, CA 94016" -198940,USB-C Charging Cable,1,11.95,05/27/19 15:50,"92 6th St, Dallas, TX 75001" -198941,AA Batteries (4-pack),1,3.84,05/07/19 21:56,"291 Hill St, Los Angeles, CA 90001" -198942,Bose SoundSport Headphones,1,99.99,05/17/19 21:03,"232 12th St, Austin, TX 73301" -198943,Bose SoundSport Headphones,1,99.99,05/16/19 10:50,"118 Madison St, San Francisco, CA 94016" -198944,USB-C Charging Cable,1,11.95,05/05/19 01:36,"430 Park St, San Francisco, CA 94016" -198945,27in FHD Monitor,1,149.99,05/20/19 13:59,"162 2nd St, New York City, NY 10001" -198946,27in 4K Gaming Monitor,1,389.99,05/31/19 16:54,"421 Elm St, Boston, MA 02215" -198947,27in 4K Gaming Monitor,1,389.99,05/10/19 14:22,"509 River St, San Francisco, CA 94016" -198948,Apple Airpods Headphones,2,150,05/18/19 00:22,"862 Cherry St, San Francisco, CA 94016" -198949,Lightning Charging Cable,1,14.95,05/28/19 15:54,"138 North St, New York City, NY 10001" -198950,USB-C Charging Cable,1,11.95,05/25/19 13:01,"548 Church St, Seattle, WA 98101" -198951,AA Batteries (4-pack),2,3.84,05/18/19 11:56,"377 Elm St, New York City, NY 10001" -198952,Wired Headphones,1,11.99,05/18/19 13:37,"951 Willow St, Atlanta, GA 30301" -198953,Lightning Charging Cable,1,14.95,05/29/19 18:53,"476 Wilson St, Atlanta, GA 30301" -198954,AA Batteries (4-pack),1,3.84,05/30/19 10:23,"72 5th St, San Francisco, CA 94016" -198955,Lightning Charging Cable,1,14.95,05/08/19 01:42,"437 5th St, Boston, MA 02215" -198956,AA Batteries (4-pack),3,3.84,05/15/19 06:39,"561 Madison St, New York City, NY 10001" -198957,AA Batteries (4-pack),1,3.84,05/22/19 12:41,"895 Madison St, San Francisco, CA 94016" -198958,Lightning Charging Cable,1,14.95,05/12/19 02:14,"556 Lincoln St, New York City, NY 10001" -198959,AAA Batteries (4-pack),2,2.99,05/06/19 16:14,"69 Jefferson St, San Francisco, CA 94016" -198960,Bose SoundSport Headphones,1,99.99,05/06/19 10:57,"597 Jackson St, Los Angeles, CA 90001" -198961,Vareebadd Phone,1,400,05/14/19 13:56,"301 Cherry St, Atlanta, GA 30301" -198962,Apple Airpods Headphones,1,150,05/29/19 13:58,"670 14th St, Seattle, WA 98101" -198963,USB-C Charging Cable,1,11.95,05/30/19 14:39,"293 Highland St, San Francisco, CA 94016" -198964,AAA Batteries (4-pack),2,2.99,05/30/19 15:56,"238 14th St, Austin, TX 73301" -198965,Lightning Charging Cable,1,14.95,05/15/19 19:13,"147 Center St, Los Angeles, CA 90001" -198966,AA Batteries (4-pack),2,3.84,05/26/19 11:25,"489 Willow St, Boston, MA 02215" -198967,Bose SoundSport Headphones,1,99.99,05/07/19 10:04,"82 West St, Portland, OR 97035" -198968,Lightning Charging Cable,1,14.95,05/25/19 18:34,"578 Adams St, Los Angeles, CA 90001" -198969,AA Batteries (4-pack),2,3.84,05/20/19 13:23,"202 14th St, San Francisco, CA 94016" -198970,USB-C Charging Cable,1,11.95,05/27/19 13:50,"763 Cherry St, Los Angeles, CA 90001" -198971,27in FHD Monitor,1,149.99,05/01/19 22:20,"244 9th St, Los Angeles, CA 90001" -198972,AAA Batteries (4-pack),1,2.99,05/19/19 19:44,"519 Lakeview St, San Francisco, CA 94016" -198973,Bose SoundSport Headphones,1,99.99,05/14/19 17:31,"379 Hickory St, San Francisco, CA 94016" -198974,27in FHD Monitor,1,149.99,05/13/19 08:34,"868 Park St, Dallas, TX 75001" -198975,Apple Airpods Headphones,1,150,05/05/19 18:09,"876 Lakeview St, Los Angeles, CA 90001" -198976,27in FHD Monitor,1,149.99,05/26/19 19:31,"692 9th St, Seattle, WA 98101" -198977,27in FHD Monitor,1,149.99,05/22/19 16:15,"38 13th St, Dallas, TX 75001" -198978,AA Batteries (4-pack),1,3.84,05/02/19 11:06,"602 South St, San Francisco, CA 94016" -198979,AA Batteries (4-pack),1,3.84,05/25/19 21:54,"376 8th St, Dallas, TX 75001" -198980,Apple Airpods Headphones,1,150,05/25/19 16:47,"532 7th St, Seattle, WA 98101" -198981,Wired Headphones,1,11.99,05/15/19 10:51,"102 Hickory St, San Francisco, CA 94016" -198982,iPhone,1,700,05/26/19 19:19,"761 Willow St, Austin, TX 73301" -198982,Lightning Charging Cable,1,14.95,05/26/19 19:19,"761 Willow St, Austin, TX 73301" -198983,AA Batteries (4-pack),1,3.84,05/09/19 10:53,"192 Meadow St, San Francisco, CA 94016" -198984,AAA Batteries (4-pack),1,2.99,05/01/19 07:32,"596 Elm St, San Francisco, CA 94016" -198985,USB-C Charging Cable,1,11.95,05/15/19 12:03,"162 Chestnut St, Seattle, WA 98101" -198986,USB-C Charging Cable,1,11.95,05/13/19 10:15,"320 Washington St, Dallas, TX 75001" -,,,,, -198987,Wired Headphones,1,11.99,05/25/19 15:25,"601 Sunset St, Boston, MA 02215" -198988,USB-C Charging Cable,1,11.95,05/15/19 17:45,"148 Lincoln St, Atlanta, GA 30301" -198989,USB-C Charging Cable,1,11.95,05/01/19 16:55,"54 Center St, New York City, NY 10001" -198990,Lightning Charging Cable,1,14.95,05/13/19 07:04,"596 Ridge St, New York City, NY 10001" -198991,Bose SoundSport Headphones,1,99.99,05/12/19 13:09,"31 Lake St, Dallas, TX 75001" -198992,Bose SoundSport Headphones,1,99.99,05/27/19 12:07,"430 8th St, Seattle, WA 98101" -198993,Bose SoundSport Headphones,1,99.99,05/09/19 19:36,"368 Cedar St, Los Angeles, CA 90001" -198994,USB-C Charging Cable,1,11.95,05/30/19 11:21,"912 Spruce St, Los Angeles, CA 90001" -198995,AA Batteries (4-pack),1,3.84,05/23/19 00:29,"895 Dogwood St, Boston, MA 02215" -198996,iPhone,1,700,05/30/19 13:49,"283 Lakeview St, San Francisco, CA 94016" -198996,Wired Headphones,1,11.99,05/30/19 13:49,"283 Lakeview St, San Francisco, CA 94016" -198997,Wired Headphones,1,11.99,05/09/19 19:15,"466 6th St, Boston, MA 02215" -198998,USB-C Charging Cable,1,11.95,05/09/19 17:43,"541 Dogwood St, San Francisco, CA 94016" -198999,Macbook Pro Laptop,1,1700,05/16/19 06:11,"273 5th St, Los Angeles, CA 90001" -199000,AA Batteries (4-pack),1,3.84,05/31/19 14:55,"882 Lake St, San Francisco, CA 94016" -199001,Lightning Charging Cable,1,14.95,05/31/19 13:27,"330 2nd St, Boston, MA 02215" -199002,Lightning Charging Cable,1,14.95,05/29/19 11:03,"105 Jefferson St, New York City, NY 10001" -199003,Lightning Charging Cable,1,14.95,05/16/19 18:34,"208 West St, San Francisco, CA 94016" -199004,USB-C Charging Cable,1,11.95,05/29/19 01:21,"503 6th St, Atlanta, GA 30301" -199005,Apple Airpods Headphones,1,150,05/19/19 10:58,"685 1st St, New York City, NY 10001" -199006,Macbook Pro Laptop,1,1700,05/04/19 20:59,"465 11th St, Seattle, WA 98101" -199007,LG Washing Machine,1,600.0,05/02/19 20:47,"967 Walnut St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -199008,USB-C Charging Cable,2,11.95,05/07/19 19:01,"870 1st St, Los Angeles, CA 90001" -199009,USB-C Charging Cable,1,11.95,05/28/19 10:31,"938 10th St, Los Angeles, CA 90001" -199010,USB-C Charging Cable,1,11.95,05/10/19 08:18,"668 10th St, Los Angeles, CA 90001" -199011,USB-C Charging Cable,1,11.95,05/19/19 12:26,"89 Pine St, Seattle, WA 98101" -199012,Macbook Pro Laptop,1,1700,05/05/19 00:51,"422 2nd St, Los Angeles, CA 90001" -199013,USB-C Charging Cable,1,11.95,05/29/19 11:31,"691 Center St, Los Angeles, CA 90001" -199014,27in FHD Monitor,1,149.99,05/14/19 11:45,"823 Pine St, Los Angeles, CA 90001" -199015,27in 4K Gaming Monitor,1,389.99,05/24/19 10:43,"182 Johnson St, San Francisco, CA 94016" -199016,Apple Airpods Headphones,1,150,05/02/19 13:33,"579 Washington St, New York City, NY 10001" -199017,AAA Batteries (4-pack),1,2.99,05/15/19 19:04,"323 North St, New York City, NY 10001" -199017,Apple Airpods Headphones,1,150,05/15/19 19:04,"323 North St, New York City, NY 10001" -199018,iPhone,1,700,05/11/19 13:15,"363 Jefferson St, Los Angeles, CA 90001" -199018,Wired Headphones,1,11.99,05/11/19 13:15,"363 Jefferson St, Los Angeles, CA 90001" -199019,AA Batteries (4-pack),1,3.84,05/18/19 10:52,"431 Sunset St, San Francisco, CA 94016" -199020,AAA Batteries (4-pack),4,2.99,05/13/19 13:58,"689 Chestnut St, Austin, TX 73301" -199021,Bose SoundSport Headphones,1,99.99,05/24/19 02:33,"713 Washington St, New York City, NY 10001" -199022,ThinkPad Laptop,1,999.99,05/06/19 23:37,"251 Cherry St, San Francisco, CA 94016" -199023,20in Monitor,1,109.99,05/22/19 19:12,"204 West St, Los Angeles, CA 90001" -199024,27in 4K Gaming Monitor,1,389.99,05/22/19 11:24,"143 Willow St, Dallas, TX 75001" -199025,Apple Airpods Headphones,1,150,05/13/19 10:59,"606 11th St, Los Angeles, CA 90001" -199026,20in Monitor,1,109.99,05/22/19 17:29,"418 7th St, San Francisco, CA 94016" -199027,Vareebadd Phone,1,400,05/18/19 12:46,"140 Jefferson St, San Francisco, CA 94016" -199028,Google Phone,1,600,05/18/19 18:43,"386 Park St, Atlanta, GA 30301" -199029,34in Ultrawide Monitor,1,379.99,05/15/19 15:38,"793 Hickory St, Portland, OR 97035" -199030,AAA Batteries (4-pack),1,2.99,05/02/19 20:46,"276 12th St, Los Angeles, CA 90001" -199031,34in Ultrawide Monitor,1,379.99,05/05/19 11:55,"71 Madison St, Boston, MA 02215" -199032,Wired Headphones,1,11.99,05/23/19 14:02,"880 Madison St, San Francisco, CA 94016" -199033,27in FHD Monitor,1,149.99,05/25/19 10:24,"772 Sunset St, San Francisco, CA 94016" -199034,Bose SoundSport Headphones,1,99.99,05/25/19 19:30,"702 Jackson St, San Francisco, CA 94016" -199035,Lightning Charging Cable,1,14.95,05/08/19 23:14,"300 Lakeview St, Atlanta, GA 30301" -199036,27in FHD Monitor,1,149.99,05/04/19 18:22,"925 Elm St, New York City, NY 10001" -199037,Flatscreen TV,1,300,05/03/19 14:24,"292 North St, Boston, MA 02215" -199038,Google Phone,1,600,05/31/19 16:50,"238 1st St, Seattle, WA 98101" -199039,AA Batteries (4-pack),1,3.84,05/17/19 17:25,"728 Cherry St, Atlanta, GA 30301" -199040,Bose SoundSport Headphones,1,99.99,05/11/19 19:45,"267 Washington St, Los Angeles, CA 90001" -199041,AA Batteries (4-pack),1,3.84,05/30/19 11:06,"519 Pine St, Boston, MA 02215" -199042,iPhone,1,700,05/12/19 09:40,"130 Chestnut St, New York City, NY 10001" -199043,Wired Headphones,1,11.99,05/01/19 20:48,"904 West St, Austin, TX 73301" -199044,Lightning Charging Cable,1,14.95,05/11/19 17:49,"666 13th St, Boston, MA 02215" -199045,Apple Airpods Headphones,1,150,05/02/19 17:28,"581 2nd St, San Francisco, CA 94016" -199046,AA Batteries (4-pack),1,3.84,05/29/19 15:59,"189 6th St, San Francisco, CA 94016" -199047,34in Ultrawide Monitor,1,379.99,05/26/19 17:35,"182 Center St, New York City, NY 10001" -199048,Lightning Charging Cable,1,14.95,05/23/19 16:55,"175 Maple St, San Francisco, CA 94016" -199049,Wired Headphones,1,11.99,05/02/19 23:00,"853 7th St, Seattle, WA 98101" -199050,34in Ultrawide Monitor,1,379.99,05/06/19 19:55,"176 Lincoln St, Boston, MA 02215" -199051,20in Monitor,1,109.99,05/06/19 12:04,"435 Willow St, Seattle, WA 98101" -199052,AAA Batteries (4-pack),1,2.99,05/11/19 06:36,"703 Maple St, Portland, OR 97035" -199053,Apple Airpods Headphones,1,150,05/11/19 15:15,"905 1st St, San Francisco, CA 94016" -199054,AAA Batteries (4-pack),1,2.99,05/27/19 11:43,"308 1st St, San Francisco, CA 94016" -199055,Wired Headphones,1,11.99,05/04/19 15:04,"684 11th St, Dallas, TX 75001" -199056,27in FHD Monitor,1,149.99,05/10/19 14:23,"139 Main St, Atlanta, GA 30301" -199057,27in 4K Gaming Monitor,1,389.99,05/31/19 20:09,"240 Jackson St, Portland, ME 04101" -199058,Wired Headphones,1,11.99,05/23/19 15:36,"899 Ridge St, Los Angeles, CA 90001" -199059,iPhone,1,700,05/29/19 12:53,"496 Elm St, Atlanta, GA 30301" -199060,Bose SoundSport Headphones,1,99.99,05/28/19 11:37,"75 Washington St, Boston, MA 02215" -199061,Bose SoundSport Headphones,1,99.99,05/26/19 19:28,"744 Park St, Boston, MA 02215" -199062,27in 4K Gaming Monitor,1,389.99,05/10/19 17:58,"413 Walnut St, New York City, NY 10001" -199063,USB-C Charging Cable,1,11.95,05/18/19 18:54,"316 Wilson St, Los Angeles, CA 90001" -199064,Google Phone,1,600,05/12/19 14:08,"984 Cherry St, Los Angeles, CA 90001" -199064,USB-C Charging Cable,1,11.95,05/12/19 14:08,"984 Cherry St, Los Angeles, CA 90001" -199065,Apple Airpods Headphones,1,150,05/30/19 23:23,"824 9th St, San Francisco, CA 94016" -199066,27in FHD Monitor,1,149.99,05/14/19 21:44,"667 Center St, Los Angeles, CA 90001" -199067,AAA Batteries (4-pack),2,2.99,05/17/19 13:25,"483 Church St, Dallas, TX 75001" -199068,Wired Headphones,1,11.99,05/17/19 19:50,"165 Lakeview St, New York City, NY 10001" -199069,Bose SoundSport Headphones,1,99.99,05/28/19 09:51,"758 Maple St, Los Angeles, CA 90001" -199070,20in Monitor,1,109.99,05/04/19 19:19,"198 Lincoln St, Los Angeles, CA 90001" -199071,AA Batteries (4-pack),1,3.84,05/27/19 20:23,"604 Park St, Dallas, TX 75001" -199072,Bose SoundSport Headphones,1,99.99,05/22/19 14:40,"315 Lake St, Portland, ME 04101" -199073,Wired Headphones,1,11.99,05/04/19 11:09,"584 Center St, Los Angeles, CA 90001" -199074,AAA Batteries (4-pack),3,2.99,05/01/19 14:29,"62 Jefferson St, New York City, NY 10001" -199075,Apple Airpods Headphones,1,150,05/19/19 21:07,"240 Adams St, New York City, NY 10001" -199076,27in FHD Monitor,1,149.99,05/29/19 12:48,"599 Cedar St, Los Angeles, CA 90001" -199077,27in 4K Gaming Monitor,1,389.99,05/30/19 22:47,"257 Ridge St, New York City, NY 10001" -199078,27in 4K Gaming Monitor,1,389.99,05/23/19 11:01,"459 Cedar St, San Francisco, CA 94016" -199079,Bose SoundSport Headphones,1,99.99,05/21/19 01:44,"612 Jefferson St, Los Angeles, CA 90001" -199080,AA Batteries (4-pack),1,3.84,05/05/19 18:42,"87 Hickory St, San Francisco, CA 94016" -199081,Wired Headphones,1,11.99,05/29/19 12:04,"576 Meadow St, Portland, OR 97035" -199082,Apple Airpods Headphones,1,150,05/13/19 19:55,"751 Pine St, Dallas, TX 75001" -199083,Lightning Charging Cable,1,14.95,05/23/19 09:49,"754 14th St, New York City, NY 10001" -199084,USB-C Charging Cable,1,11.95,05/22/19 19:52,"786 Madison St, New York City, NY 10001" -199085,Wired Headphones,1,11.99,05/01/19 21:51,"936 Sunset St, Austin, TX 73301" -199086,Bose SoundSport Headphones,1,99.99,05/22/19 13:24,"184 13th St, San Francisco, CA 94016" -199087,AAA Batteries (4-pack),2,2.99,05/09/19 18:09,"429 9th St, Seattle, WA 98101" -199088,AAA Batteries (4-pack),2,2.99,05/29/19 22:06,"29 Lake St, San Francisco, CA 94016" -199089,Lightning Charging Cable,1,14.95,05/05/19 23:31,"593 Cedar St, Boston, MA 02215" -199090,Lightning Charging Cable,1,14.95,05/06/19 11:40,"591 Lakeview St, New York City, NY 10001" -199091,27in 4K Gaming Monitor,1,389.99,05/11/19 14:57,"910 Maple St, Los Angeles, CA 90001" -199092,Lightning Charging Cable,1,14.95,05/31/19 10:54,"104 Church St, Dallas, TX 75001" -199093,USB-C Charging Cable,1,11.95,05/29/19 12:08,"611 Cedar St, Los Angeles, CA 90001" -199094,iPhone,1,700,05/17/19 08:35,"213 Wilson St, Portland, OR 97035" -199095,ThinkPad Laptop,1,999.99,05/20/19 22:13,"122 Forest St, Atlanta, GA 30301" -199096,iPhone,1,700,05/23/19 16:07,"547 5th St, Austin, TX 73301" -199097,AAA Batteries (4-pack),1,2.99,05/04/19 04:57,"579 Sunset St, New York City, NY 10001" -199098,AA Batteries (4-pack),2,3.84,06/01/19 00:50,"924 1st St, Los Angeles, CA 90001" -199099,AA Batteries (4-pack),1,3.84,05/08/19 17:10,"149 11th St, Atlanta, GA 30301" -199100,USB-C Charging Cable,1,11.95,05/26/19 14:23,"804 Walnut St, Los Angeles, CA 90001" -199101,Lightning Charging Cable,1,14.95,05/13/19 17:32,"181 Hickory St, Austin, TX 73301" -199102,Lightning Charging Cable,1,14.95,05/20/19 08:52,"428 Madison St, San Francisco, CA 94016" -199103,Wired Headphones,1,11.99,05/06/19 10:38,"211 Willow St, Los Angeles, CA 90001" -199104,USB-C Charging Cable,1,11.95,05/26/19 10:24,"192 Maple St, Boston, MA 02215" -199105,27in FHD Monitor,1,149.99,05/28/19 08:45,"536 14th St, San Francisco, CA 94016" -199106,Flatscreen TV,1,300,05/10/19 12:36,"82 Lakeview St, Portland, OR 97035" -199107,USB-C Charging Cable,1,11.95,05/13/19 09:20,"252 Jackson St, San Francisco, CA 94016" -199108,Macbook Pro Laptop,1,1700,05/21/19 17:53,"373 South St, San Francisco, CA 94016" -199109,Wired Headphones,1,11.99,05/07/19 14:46,"586 Spruce St, San Francisco, CA 94016" -199110,Wired Headphones,1,11.99,05/28/19 12:26,"763 Willow St, New York City, NY 10001" -199111,Lightning Charging Cable,1,14.95,05/17/19 15:10,"642 North St, San Francisco, CA 94016" -199112,Apple Airpods Headphones,1,150,05/13/19 14:48,"716 Adams St, New York City, NY 10001" -199113,27in FHD Monitor,1,149.99,05/26/19 14:37,"769 Lakeview St, San Francisco, CA 94016" -199114,Apple Airpods Headphones,1,150,05/23/19 22:46,"3 Ridge St, Boston, MA 02215" -199115,AAA Batteries (4-pack),1,2.99,05/07/19 12:32,"506 Forest St, San Francisco, CA 94016" -199116,Lightning Charging Cable,2,14.95,05/29/19 17:46,"117 1st St, San Francisco, CA 94016" -199117,AAA Batteries (4-pack),1,2.99,05/02/19 15:58,"789 Spruce St, San Francisco, CA 94016" -199118,Wired Headphones,1,11.99,05/11/19 13:11,"324 5th St, Boston, MA 02215" -199119,USB-C Charging Cable,1,11.95,05/10/19 21:06,"716 Washington St, Boston, MA 02215" -199120,Flatscreen TV,1,300,05/30/19 22:37,"78 Spruce St, Los Angeles, CA 90001" -199121,Bose SoundSport Headphones,1,99.99,05/07/19 21:07,"606 Cherry St, Boston, MA 02215" -199122,USB-C Charging Cable,1,11.95,05/09/19 15:02,"549 Willow St, Portland, OR 97035" -199123,27in 4K Gaming Monitor,1,389.99,05/05/19 08:31,"917 Church St, Los Angeles, CA 90001" -199124,Apple Airpods Headphones,1,150,05/31/19 18:15,"686 12th St, San Francisco, CA 94016" -199125,Lightning Charging Cable,1,14.95,05/12/19 06:49,"191 9th St, Portland, ME 04101" -199126,27in FHD Monitor,1,149.99,05/02/19 00:20,"816 4th St, Atlanta, GA 30301" -199127,AA Batteries (4-pack),1,3.84,05/02/19 11:47,"853 Church St, Los Angeles, CA 90001" -199128,Lightning Charging Cable,1,14.95,05/01/19 23:13,"781 14th St, San Francisco, CA 94016" -199129,20in Monitor,1,109.99,05/13/19 14:58,"958 Cedar St, Los Angeles, CA 90001" -199130,34in Ultrawide Monitor,1,379.99,05/26/19 00:23,"538 12th St, San Francisco, CA 94016" -199131,Lightning Charging Cable,1,14.95,05/26/19 15:15,"859 Johnson St, Los Angeles, CA 90001" -199132,USB-C Charging Cable,1,11.95,05/13/19 18:01,"493 Washington St, San Francisco, CA 94016" -199133,AAA Batteries (4-pack),1,2.99,05/11/19 13:22,"136 North St, San Francisco, CA 94016" -199134,20in Monitor,1,109.99,05/24/19 08:34,"355 Madison St, Boston, MA 02215" -199135,Macbook Pro Laptop,1,1700,05/15/19 19:18,"564 Church St, Boston, MA 02215" -199136,Apple Airpods Headphones,1,150,05/29/19 02:06,"839 Park St, Los Angeles, CA 90001" -199137,AA Batteries (4-pack),1,3.84,05/05/19 10:18,"370 Cedar St, San Francisco, CA 94016" -199138,Google Phone,1,600,05/22/19 05:00,"265 Dogwood St, Dallas, TX 75001" -199139,Lightning Charging Cable,1,14.95,05/23/19 19:05,"390 Jefferson St, Portland, OR 97035" -199140,Bose SoundSport Headphones,1,99.99,05/04/19 18:37,"731 Lincoln St, Seattle, WA 98101" -199141,AA Batteries (4-pack),1,3.84,05/22/19 14:27,"743 Maple St, San Francisco, CA 94016" -199142,AA Batteries (4-pack),1,3.84,05/10/19 17:57,"939 Jackson St, Atlanta, GA 30301" -199143,AAA Batteries (4-pack),2,2.99,05/21/19 14:02,"798 Willow St, San Francisco, CA 94016" -199144,20in Monitor,1,109.99,05/25/19 18:28,"977 6th St, San Francisco, CA 94016" -199145,20in Monitor,1,109.99,05/29/19 18:11,"775 10th St, Boston, MA 02215" -199146,AA Batteries (4-pack),1,3.84,05/10/19 09:00,"255 4th St, San Francisco, CA 94016" -199147,AAA Batteries (4-pack),1,2.99,05/25/19 20:56,"621 10th St, San Francisco, CA 94016" -199148,Lightning Charging Cable,1,14.95,05/24/19 16:26,"824 Adams St, Los Angeles, CA 90001" -199149,Lightning Charging Cable,1,14.95,05/14/19 19:55,"548 Maple St, New York City, NY 10001" -199150,AAA Batteries (4-pack),2,2.99,05/08/19 19:12,"717 9th St, San Francisco, CA 94016" -199151,Bose SoundSport Headphones,1,99.99,05/23/19 19:03,"997 Lincoln St, San Francisco, CA 94016" -199152,27in FHD Monitor,1,149.99,05/10/19 19:56,"635 Adams St, New York City, NY 10001" -199153,Bose SoundSport Headphones,1,99.99,05/25/19 17:24,"487 Hickory St, Los Angeles, CA 90001" -199154,Wired Headphones,1,11.99,05/20/19 13:41,"960 Meadow St, San Francisco, CA 94016" -199155,USB-C Charging Cable,1,11.95,05/21/19 10:36,"166 Highland St, San Francisco, CA 94016" -199156,34in Ultrawide Monitor,1,379.99,05/13/19 21:58,"57 8th St, Atlanta, GA 30301" -199157,Bose SoundSport Headphones,1,99.99,05/15/19 00:33,"661 Center St, San Francisco, CA 94016" -199158,Lightning Charging Cable,1,14.95,05/13/19 12:31,"834 12th St, San Francisco, CA 94016" -199159,AA Batteries (4-pack),2,3.84,05/06/19 20:47,"972 Maple St, Atlanta, GA 30301" -199160,Bose SoundSport Headphones,1,99.99,05/04/19 22:44,"650 Sunset St, Seattle, WA 98101" -199161,AAA Batteries (4-pack),1,2.99,05/25/19 16:46,"813 Jefferson St, Portland, OR 97035" -199162,Google Phone,1,600,05/20/19 21:22,"132 Adams St, Seattle, WA 98101" -199163,Bose SoundSport Headphones,1,99.99,05/18/19 21:44,"48 Adams St, Los Angeles, CA 90001" -199164,Bose SoundSport Headphones,1,99.99,05/16/19 14:54,"146 Ridge St, San Francisco, CA 94016" -199165,AA Batteries (4-pack),1,3.84,05/22/19 06:36,"116 Meadow St, New York City, NY 10001" -199166,Apple Airpods Headphones,1,150,05/10/19 22:54,"86 Chestnut St, Los Angeles, CA 90001" -199167,ThinkPad Laptop,1,999.99,05/29/19 20:44,"648 Adams St, San Francisco, CA 94016" -199168,Bose SoundSport Headphones,1,99.99,05/16/19 17:41,"196 Jefferson St, San Francisco, CA 94016" -199169,34in Ultrawide Monitor,1,379.99,05/03/19 09:06,"596 Johnson St, Portland, OR 97035" -199170,Bose SoundSport Headphones,1,99.99,05/14/19 15:03,"374 1st St, Austin, TX 73301" -199171,Apple Airpods Headphones,1,150,05/02/19 15:36,"984 Washington St, Seattle, WA 98101" -199172,Wired Headphones,1,11.99,05/08/19 12:18,"318 Hill St, Los Angeles, CA 90001" -199173,AA Batteries (4-pack),1,3.84,05/23/19 16:03,"57 Johnson St, New York City, NY 10001" -199174,iPhone,1,700,05/22/19 10:29,"997 Willow St, San Francisco, CA 94016" -199175,20in Monitor,1,109.99,05/28/19 22:25,"900 Pine St, Los Angeles, CA 90001" -199176,27in 4K Gaming Monitor,1,389.99,05/01/19 20:31,"634 7th St, Boston, MA 02215" -199177,Lightning Charging Cable,1,14.95,05/18/19 10:31,"137 8th St, New York City, NY 10001" -199178,27in FHD Monitor,1,149.99,05/14/19 09:13,"456 Willow St, Los Angeles, CA 90001" -199179,Lightning Charging Cable,1,14.95,05/04/19 11:52,"452 North St, Portland, OR 97035" -199180,iPhone,1,700,05/08/19 01:14,"786 Elm St, New York City, NY 10001" -199181,AAA Batteries (4-pack),1,2.99,05/30/19 16:59,"739 Ridge St, Dallas, TX 75001" -199182,AAA Batteries (4-pack),1,2.99,05/22/19 20:17,"32 8th St, San Francisco, CA 94016" -199183,Lightning Charging Cable,1,14.95,05/05/19 13:50,"239 Church St, Atlanta, GA 30301" -199184,27in 4K Gaming Monitor,1,389.99,05/17/19 21:57,"914 7th St, Los Angeles, CA 90001" -199185,AA Batteries (4-pack),1,3.84,05/07/19 10:53,"713 River St, Los Angeles, CA 90001" -199186,AA Batteries (4-pack),1,3.84,05/13/19 17:40,"971 Johnson St, San Francisco, CA 94016" -199187,AAA Batteries (4-pack),1,2.99,05/12/19 17:09,"788 Cherry St, Dallas, TX 75001" -199188,USB-C Charging Cable,1,11.95,05/09/19 20:26,"262 River St, Los Angeles, CA 90001" -199189,Apple Airpods Headphones,1,150,05/22/19 22:01,"523 Willow St, San Francisco, CA 94016" -199190,Bose SoundSport Headphones,1,99.99,05/26/19 18:10,"505 12th St, San Francisco, CA 94016" -199191,AAA Batteries (4-pack),3,2.99,05/29/19 21:33,"377 12th St, Portland, OR 97035" -199192,Google Phone,2,600,05/27/19 18:22,"290 Highland St, San Francisco, CA 94016" -199193,Wired Headphones,1,11.99,05/29/19 22:59,"710 Cherry St, San Francisco, CA 94016" -199194,Flatscreen TV,1,300,05/06/19 07:24,"965 Hill St, Boston, MA 02215" -199195,Bose SoundSport Headphones,1,99.99,05/18/19 15:55,"279 Wilson St, Los Angeles, CA 90001" -199196,Google Phone,1,600,05/13/19 22:03,"577 South St, Seattle, WA 98101" -199197,AA Batteries (4-pack),1,3.84,05/20/19 20:16,"397 Elm St, Los Angeles, CA 90001" -199198,USB-C Charging Cable,1,11.95,05/25/19 21:28,"857 Dogwood St, San Francisco, CA 94016" -199199,34in Ultrawide Monitor,1,379.99,05/26/19 12:01,"190 2nd St, Boston, MA 02215" -199200,AAA Batteries (4-pack),3,2.99,05/05/19 11:13,"876 Pine St, San Francisco, CA 94016" -199201,AA Batteries (4-pack),1,3.84,05/08/19 11:44,"766 Lincoln St, New York City, NY 10001" -199202,Macbook Pro Laptop,1,1700,05/21/19 09:13,"466 Spruce St, San Francisco, CA 94016" -199203,Flatscreen TV,1,300,05/01/19 11:46,"298 Ridge St, Los Angeles, CA 90001" -199204,AA Batteries (4-pack),2,3.84,05/16/19 09:29,"948 Jackson St, Los Angeles, CA 90001" -199205,34in Ultrawide Monitor,1,379.99,05/31/19 14:18,"383 Ridge St, San Francisco, CA 94016" -199206,Wired Headphones,1,11.99,05/25/19 19:16,"103 Dogwood St, Portland, OR 97035" -199207,Bose SoundSport Headphones,1,99.99,05/15/19 11:41,"691 Jackson St, Portland, OR 97035" -199208,USB-C Charging Cable,2,11.95,05/12/19 12:09,"504 Dogwood St, Dallas, TX 75001" -199209,USB-C Charging Cable,1,11.95,05/05/19 08:43,"983 Lincoln St, New York City, NY 10001" -199210,AA Batteries (4-pack),3,3.84,05/28/19 21:39,"399 South St, Portland, OR 97035" -199211,iPhone,1,700,05/25/19 11:45,"120 Lakeview St, San Francisco, CA 94016" -199211,Lightning Charging Cable,1,14.95,05/25/19 11:45,"120 Lakeview St, San Francisco, CA 94016" -199212,Lightning Charging Cable,1,14.95,05/06/19 17:47,"93 12th St, Los Angeles, CA 90001" -199213,Bose SoundSport Headphones,1,99.99,05/10/19 12:58,"216 6th St, San Francisco, CA 94016" -199214,Lightning Charging Cable,1,14.95,05/21/19 20:39,"190 Jefferson St, Boston, MA 02215" -199215,Vareebadd Phone,1,400,05/18/19 14:00,"311 Wilson St, Seattle, WA 98101" -199216,AAA Batteries (4-pack),1,2.99,05/28/19 20:34,"772 7th St, Atlanta, GA 30301" -199217,USB-C Charging Cable,1,11.95,05/21/19 14:15,"153 Hill St, Austin, TX 73301" -199218,27in FHD Monitor,1,149.99,05/04/19 18:15,"89 Walnut St, New York City, NY 10001" -199219,Wired Headphones,1,11.99,05/07/19 21:46,"394 Forest St, Austin, TX 73301" -199220,AAA Batteries (4-pack),1,2.99,05/20/19 21:14,"966 Chestnut St, San Francisco, CA 94016" -199221,USB-C Charging Cable,1,11.95,05/02/19 16:10,"443 Washington St, San Francisco, CA 94016" -199222,Bose SoundSport Headphones,1,99.99,05/28/19 13:54,"2 6th St, New York City, NY 10001" -199223,Flatscreen TV,1,300,05/03/19 19:50,"807 6th St, San Francisco, CA 94016" -199224,USB-C Charging Cable,1,11.95,05/23/19 13:02,"669 12th St, San Francisco, CA 94016" -199225,Apple Airpods Headphones,1,150,05/19/19 18:10,"845 Hickory St, Seattle, WA 98101" -199226,AA Batteries (4-pack),1,3.84,05/19/19 12:40,"140 Park St, Seattle, WA 98101" -199227,27in FHD Monitor,1,149.99,05/02/19 13:23,"146 Elm St, Seattle, WA 98101" -199228,Bose SoundSport Headphones,1,99.99,05/15/19 15:06,"685 Center St, Dallas, TX 75001" -199229,Bose SoundSport Headphones,1,99.99,05/22/19 11:18,"823 2nd St, San Francisco, CA 94016" -199230,iPhone,1,700,05/08/19 09:09,"398 Cedar St, Portland, OR 97035" -199230,Vareebadd Phone,1,400,05/08/19 09:09,"398 Cedar St, Portland, OR 97035" -199231,Macbook Pro Laptop,1,1700,05/08/19 12:23,"169 14th St, Dallas, TX 75001" -,,,,, -199232,Lightning Charging Cable,1,14.95,05/10/19 17:42,"105 Sunset St, Los Angeles, CA 90001" -199233,Wired Headphones,1,11.99,05/22/19 12:24,"57 Church St, New York City, NY 10001" -199234,Vareebadd Phone,1,400,05/11/19 13:09,"944 8th St, San Francisco, CA 94016" -199235,27in FHD Monitor,1,149.99,05/23/19 14:30,"626 12th St, Dallas, TX 75001" -199236,Google Phone,1,600,05/05/19 20:57,"733 6th St, Los Angeles, CA 90001" -199237,Lightning Charging Cable,1,14.95,05/31/19 11:54,"483 Wilson St, Seattle, WA 98101" -199238,Wired Headphones,1,11.99,05/17/19 10:54,"740 Park St, New York City, NY 10001" -199239,ThinkPad Laptop,1,999.99,05/19/19 18:26,"743 Pine St, San Francisco, CA 94016" -199240,Macbook Pro Laptop,1,1700,05/16/19 19:12,"555 10th St, New York City, NY 10001" -199241,AA Batteries (4-pack),2,3.84,05/12/19 04:23,"297 Lake St, Los Angeles, CA 90001" -199242,Apple Airpods Headphones,1,150,05/12/19 18:47,"869 Maple St, Seattle, WA 98101" -199243,ThinkPad Laptop,1,999.99,05/07/19 17:42,"983 Cherry St, Boston, MA 02215" -199244,AA Batteries (4-pack),1,3.84,05/05/19 08:40,"882 Elm St, San Francisco, CA 94016" -199245,AAA Batteries (4-pack),1,2.99,05/05/19 12:17,"467 Madison St, Seattle, WA 98101" -199246,ThinkPad Laptop,1,999.99,05/08/19 14:51,"310 1st St, Atlanta, GA 30301" -199247,Wired Headphones,1,11.99,05/30/19 20:26,"728 Ridge St, Atlanta, GA 30301" -199248,AA Batteries (4-pack),1,3.84,05/16/19 11:24,"771 6th St, Boston, MA 02215" -199249,AA Batteries (4-pack),1,3.84,05/03/19 22:50,"237 5th St, Portland, OR 97035" -199250,34in Ultrawide Monitor,1,379.99,05/03/19 14:06,"845 Madison St, Boston, MA 02215" -199251,Bose SoundSport Headphones,1,99.99,05/05/19 09:23,"418 5th St, San Francisco, CA 94016" -199252,AA Batteries (4-pack),1,3.84,05/23/19 15:15,"399 Lakeview St, San Francisco, CA 94016" -199253,20in Monitor,1,109.99,05/22/19 18:10,"69 Main St, Boston, MA 02215" -199254,AA Batteries (4-pack),2,3.84,05/12/19 10:57,"535 Willow St, Boston, MA 02215" -199255,Bose SoundSport Headphones,1,99.99,05/26/19 10:52,"930 Lake St, San Francisco, CA 94016" -199256,USB-C Charging Cable,1,11.95,05/21/19 22:04,"359 Pine St, Portland, OR 97035" -199257,AAA Batteries (4-pack),1,2.99,05/08/19 18:14,"88 Lake St, Los Angeles, CA 90001" -199258,AA Batteries (4-pack),1,3.84,05/15/19 13:56,"191 North St, Atlanta, GA 30301" -199259,Apple Airpods Headphones,1,150,05/25/19 06:10,"490 Highland St, San Francisco, CA 94016" -199260,27in 4K Gaming Monitor,1,389.99,05/17/19 16:09,"916 Madison St, Portland, OR 97035" -199261,AAA Batteries (4-pack),1,2.99,05/12/19 14:24,"178 Park St, Seattle, WA 98101" -199262,AAA Batteries (4-pack),3,2.99,05/06/19 12:16,"925 Ridge St, Dallas, TX 75001" -199263,Vareebadd Phone,1,400,05/28/19 20:44,"563 5th St, San Francisco, CA 94016" -199264,AAA Batteries (4-pack),2,2.99,05/08/19 14:45,"719 13th St, Boston, MA 02215" -199265,LG Dryer,1,600.0,05/30/19 18:23,"777 Church St, Austin, TX 73301" -199266,Flatscreen TV,1,300,05/26/19 08:35,"950 Hill St, Boston, MA 02215" -199267,AA Batteries (4-pack),1,3.84,05/17/19 01:46,"444 Johnson St, Los Angeles, CA 90001" -199268,Flatscreen TV,1,300,05/12/19 09:59,"655 Sunset St, Boston, MA 02215" -199269,AA Batteries (4-pack),1,3.84,05/09/19 15:12,"717 13th St, Portland, ME 04101" -199270,ThinkPad Laptop,1,999.99,05/05/19 04:31,"458 Ridge St, San Francisco, CA 94016" -199271,Apple Airpods Headphones,1,150,05/30/19 00:40,"938 6th St, New York City, NY 10001" -199272,27in 4K Gaming Monitor,1,389.99,05/31/19 11:44,"37 7th St, Dallas, TX 75001" -199273,AAA Batteries (4-pack),1,2.99,05/07/19 12:34,"948 6th St, Boston, MA 02215" -199274,Wired Headphones,1,11.99,05/17/19 18:02,"312 10th St, San Francisco, CA 94016" -199275,Google Phone,1,600,05/01/19 18:31,"776 Center St, Boston, MA 02215" -199275,USB-C Charging Cable,1,11.95,05/01/19 18:31,"776 Center St, Boston, MA 02215" -199276,20in Monitor,1,109.99,05/04/19 13:45,"889 Lakeview St, San Francisco, CA 94016" -199277,Wired Headphones,1,11.99,05/16/19 08:29,"610 Lincoln St, Atlanta, GA 30301" -199278,Vareebadd Phone,1,400,05/28/19 12:33,"715 Dogwood St, Atlanta, GA 30301" -199279,AA Batteries (4-pack),1,3.84,05/31/19 15:50,"408 Cedar St, San Francisco, CA 94016" -199280,iPhone,1,700,05/15/19 13:14,"324 Washington St, Boston, MA 02215" -199281,Wired Headphones,1,11.99,05/13/19 11:28,"304 11th St, San Francisco, CA 94016" -199282,Google Phone,1,600,05/27/19 18:53,"931 Lakeview St, Seattle, WA 98101" -199282,USB-C Charging Cable,1,11.95,05/27/19 18:53,"931 Lakeview St, Seattle, WA 98101" -199282,Bose SoundSport Headphones,1,99.99,05/27/19 18:53,"931 Lakeview St, Seattle, WA 98101" -199283,AAA Batteries (4-pack),1,2.99,05/18/19 19:20,"672 South St, San Francisco, CA 94016" -199284,Flatscreen TV,1,300,05/04/19 12:35,"96 Church St, Boston, MA 02215" -199285,Lightning Charging Cable,1,14.95,05/05/19 12:00,"412 7th St, Los Angeles, CA 90001" -199286,Wired Headphones,1,11.99,05/15/19 07:52,"699 Hickory St, Austin, TX 73301" -199287,27in FHD Monitor,1,149.99,05/07/19 10:43,"205 Wilson St, Seattle, WA 98101" -199288,Flatscreen TV,1,300,05/10/19 06:53,"733 Park St, San Francisco, CA 94016" -199289,Lightning Charging Cable,2,14.95,05/04/19 07:59,"425 Hickory St, New York City, NY 10001" -199290,Wired Headphones,1,11.99,05/29/19 10:09,"749 Walnut St, Boston, MA 02215" -199291,AAA Batteries (4-pack),2,2.99,05/31/19 19:06,"833 South St, San Francisco, CA 94016" -199292,27in FHD Monitor,1,149.99,05/29/19 14:37,"404 5th St, San Francisco, CA 94016" -199293,34in Ultrawide Monitor,1,379.99,05/18/19 19:22,"302 Jackson St, San Francisco, CA 94016" -199294,AAA Batteries (4-pack),2,2.99,05/11/19 18:34,"852 Main St, Los Angeles, CA 90001" -199295,Apple Airpods Headphones,1,150,05/19/19 09:46,"96 Church St, Boston, MA 02215" -199296,Wired Headphones,1,11.99,05/17/19 08:25,"977 11th St, San Francisco, CA 94016" -199297,USB-C Charging Cable,2,11.95,05/15/19 20:42,"614 2nd St, Los Angeles, CA 90001" -199298,AAA Batteries (4-pack),2,2.99,05/16/19 15:00,"483 Johnson St, Los Angeles, CA 90001" -199299,USB-C Charging Cable,1,11.95,05/29/19 18:55,"752 Meadow St, Atlanta, GA 30301" -199300,AAA Batteries (4-pack),4,2.99,05/07/19 20:48,"413 1st St, New York City, NY 10001" -199301,Lightning Charging Cable,1,14.95,05/03/19 12:02,"164 14th St, San Francisco, CA 94016" -199302,AAA Batteries (4-pack),4,2.99,05/05/19 19:25,"83 Wilson St, New York City, NY 10001" -199303,AA Batteries (4-pack),1,3.84,05/04/19 16:50,"556 Lakeview St, Boston, MA 02215" -199304,Bose SoundSport Headphones,1,99.99,05/28/19 18:24,"754 Hill St, Boston, MA 02215" -199304,Lightning Charging Cable,1,14.95,05/28/19 18:24,"754 Hill St, Boston, MA 02215" -199305,Lightning Charging Cable,1,14.95,05/02/19 10:49,"393 Chestnut St, Los Angeles, CA 90001" -199306,AAA Batteries (4-pack),1,2.99,05/03/19 02:01,"285 5th St, New York City, NY 10001" -199307,Wired Headphones,1,11.99,05/19/19 17:20,"844 5th St, New York City, NY 10001" -199308,AA Batteries (4-pack),1,3.84,05/10/19 14:46,"147 Willow St, Los Angeles, CA 90001" -199309,USB-C Charging Cable,1,11.95,05/14/19 11:13,"396 13th St, New York City, NY 10001" -199310,Bose SoundSport Headphones,1,99.99,05/27/19 19:00,"238 South St, San Francisco, CA 94016" -199311,Apple Airpods Headphones,1,150,05/19/19 00:18,"993 Church St, Atlanta, GA 30301" -199312,Lightning Charging Cable,1,14.95,05/28/19 14:48,"853 Chestnut St, Portland, OR 97035" -199313,34in Ultrawide Monitor,1,379.99,05/09/19 19:26,"255 North St, Atlanta, GA 30301" -199314,iPhone,1,700,05/17/19 00:09,"773 8th St, New York City, NY 10001" -199314,Lightning Charging Cable,1,14.95,05/17/19 00:09,"773 8th St, New York City, NY 10001" -199314,Apple Airpods Headphones,1,150,05/17/19 00:09,"773 8th St, New York City, NY 10001" -199315,AA Batteries (4-pack),1,3.84,05/02/19 09:12,"146 1st St, New York City, NY 10001" -199316,Bose SoundSport Headphones,1,99.99,05/23/19 09:36,"119 Main St, Atlanta, GA 30301" -199317,Wired Headphones,1,11.99,05/11/19 12:25,"571 Willow St, San Francisco, CA 94016" -199318,AAA Batteries (4-pack),1,2.99,05/06/19 14:11,"195 Jefferson St, Los Angeles, CA 90001" -199319,Lightning Charging Cable,1,14.95,05/28/19 08:28,"997 Jefferson St, Portland, OR 97035" -199320,Bose SoundSport Headphones,1,99.99,05/24/19 22:13,"788 North St, Dallas, TX 75001" -199321,LG Dryer,1,600.0,05/23/19 05:45,"718 Main St, Atlanta, GA 30301" -199322,34in Ultrawide Monitor,1,379.99,05/11/19 12:50,"704 Lake St, New York City, NY 10001" -199323,AAA Batteries (4-pack),1,2.99,05/24/19 21:04,"356 Jefferson St, New York City, NY 10001" -199324,27in 4K Gaming Monitor,1,389.99,05/27/19 13:03,"607 5th St, Atlanta, GA 30301" -199325,AAA Batteries (4-pack),2,2.99,05/14/19 20:24,"767 Cherry St, New York City, NY 10001" -199326,Lightning Charging Cable,1,14.95,05/28/19 13:54,"277 10th St, San Francisco, CA 94016" -199327,AA Batteries (4-pack),1,3.84,05/10/19 13:13,"386 Lakeview St, New York City, NY 10001" -199328,AA Batteries (4-pack),2,3.84,05/24/19 10:31,"423 Main St, Boston, MA 02215" -199329,AAA Batteries (4-pack),1,2.99,05/23/19 07:26,"250 Highland St, San Francisco, CA 94016" -199330,AAA Batteries (4-pack),1,2.99,05/21/19 18:12,"515 Spruce St, San Francisco, CA 94016" -199331,Vareebadd Phone,1,400,05/22/19 14:11,"996 Willow St, New York City, NY 10001" -199331,USB-C Charging Cable,1,11.95,05/22/19 14:11,"996 Willow St, New York City, NY 10001" -199332,Wired Headphones,1,11.99,05/13/19 20:35,"488 Cherry St, San Francisco, CA 94016" -199333,Bose SoundSport Headphones,1,99.99,05/12/19 07:57,"977 Elm St, San Francisco, CA 94016" -199334,iPhone,1,700,05/17/19 19:27,"570 6th St, Los Angeles, CA 90001" -199334,Lightning Charging Cable,1,14.95,05/17/19 19:27,"570 6th St, Los Angeles, CA 90001" -199335,Lightning Charging Cable,1,14.95,05/22/19 10:09,"149 Jefferson St, Austin, TX 73301" -199336,Macbook Pro Laptop,1,1700,05/29/19 22:40,"237 6th St, New York City, NY 10001" -199337,Lightning Charging Cable,1,14.95,05/15/19 08:30,"47 Hill St, Los Angeles, CA 90001" -199338,Wired Headphones,1,11.99,05/05/19 23:41,"152 11th St, Dallas, TX 75001" -199339,Google Phone,1,600,05/27/19 14:02,"738 2nd St, Atlanta, GA 30301" -199339,USB-C Charging Cable,1,11.95,05/27/19 14:02,"738 2nd St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -199340,AAA Batteries (4-pack),1,2.99,05/01/19 18:32,"849 Hickory St, San Francisco, CA 94016" -199341,iPhone,1,700,05/19/19 22:53,"198 6th St, Atlanta, GA 30301" -199342,Bose SoundSport Headphones,1,99.99,05/31/19 13:27,"707 Walnut St, San Francisco, CA 94016" -199343,27in 4K Gaming Monitor,1,389.99,05/07/19 10:49,"36 Maple St, New York City, NY 10001" -199344,Lightning Charging Cable,1,14.95,05/25/19 13:26,"501 5th St, San Francisco, CA 94016" -199345,Wired Headphones,1,11.99,05/08/19 19:22,"813 Hickory St, San Francisco, CA 94016" -199346,USB-C Charging Cable,1,11.95,05/17/19 13:31,"775 Lakeview St, Dallas, TX 75001" -199346,27in FHD Monitor,1,149.99,05/17/19 13:31,"775 Lakeview St, Dallas, TX 75001" -199347,Lightning Charging Cable,1,14.95,05/05/19 20:09,"188 Lake St, Atlanta, GA 30301" -199348,USB-C Charging Cable,1,11.95,05/31/19 15:11,"838 Church St, Dallas, TX 75001" -199349,Bose SoundSport Headphones,1,99.99,05/14/19 14:52,"440 5th St, Portland, OR 97035" -199350,AA Batteries (4-pack),1,3.84,05/06/19 19:37,"597 Spruce St, San Francisco, CA 94016" -199351,Lightning Charging Cable,1,14.95,05/31/19 17:44,"982 Sunset St, Boston, MA 02215" -199352,Wired Headphones,1,11.99,05/20/19 20:15,"141 Ridge St, New York City, NY 10001" -199353,27in 4K Gaming Monitor,1,389.99,05/24/19 21:29,"662 14th St, Dallas, TX 75001" -199354,ThinkPad Laptop,1,999.99,05/14/19 18:14,"557 10th St, Dallas, TX 75001" -199355,Lightning Charging Cable,1,14.95,05/28/19 06:44,"649 Walnut St, Dallas, TX 75001" -199356,Flatscreen TV,1,300,05/18/19 09:23,"911 10th St, Portland, OR 97035" -199357,Apple Airpods Headphones,1,150,05/19/19 21:23,"317 1st St, San Francisco, CA 94016" -199358,27in 4K Gaming Monitor,1,389.99,05/29/19 19:17,"724 10th St, Boston, MA 02215" -199359,Wired Headphones,1,11.99,05/21/19 15:22,"55 11th St, San Francisco, CA 94016" -199360,AAA Batteries (4-pack),1,2.99,05/28/19 13:58,"725 North St, New York City, NY 10001" -199361,AA Batteries (4-pack),1,3.84,05/11/19 11:27,"558 North St, Portland, OR 97035" -199362,27in 4K Gaming Monitor,1,389.99,05/24/19 23:56,"28 Cedar St, New York City, NY 10001" -199363,Lightning Charging Cable,1,14.95,05/05/19 18:45,"239 8th St, Los Angeles, CA 90001" -199364,AA Batteries (4-pack),1,3.84,05/13/19 08:48,"218 West St, Los Angeles, CA 90001" -199365,Apple Airpods Headphones,1,150,05/06/19 20:31,"254 North St, Los Angeles, CA 90001" -199366,Bose SoundSport Headphones,1,99.99,05/01/19 22:46,"380 5th St, Boston, MA 02215" -199367,AAA Batteries (4-pack),1,2.99,05/27/19 13:20,"179 Washington St, San Francisco, CA 94016" -199368,Bose SoundSport Headphones,1,99.99,05/20/19 08:45,"462 Madison St, Los Angeles, CA 90001" -199369,Google Phone,1,600,05/29/19 15:30,"438 Hickory St, Los Angeles, CA 90001" -199369,USB-C Charging Cable,1,11.95,05/29/19 15:30,"438 Hickory St, Los Angeles, CA 90001" -199370,AA Batteries (4-pack),1,3.84,05/29/19 19:51,"338 9th St, New York City, NY 10001" -199371,34in Ultrawide Monitor,1,379.99,05/10/19 11:46,"261 Wilson St, Boston, MA 02215" -199372,Wired Headphones,1,11.99,05/14/19 20:11,"987 Lake St, New York City, NY 10001" -199373,27in FHD Monitor,1,149.99,05/23/19 17:03,"58 9th St, Boston, MA 02215" -199374,Wired Headphones,2,11.99,05/14/19 10:13,"284 Washington St, New York City, NY 10001" -199374,AAA Batteries (4-pack),1,2.99,05/14/19 10:13,"284 Washington St, New York City, NY 10001" -199375,AA Batteries (4-pack),1,3.84,05/10/19 20:54,"760 Washington St, Atlanta, GA 30301" -199376,Flatscreen TV,1,300,05/05/19 18:50,"841 Lakeview St, Seattle, WA 98101" -199377,USB-C Charging Cable,1,11.95,05/25/19 12:17,"450 Park St, New York City, NY 10001" -199378,Wired Headphones,1,11.99,05/11/19 23:25,"375 Jackson St, Seattle, WA 98101" -199379,AAA Batteries (4-pack),1,2.99,05/23/19 14:33,"286 6th St, Portland, OR 97035" -199380,27in 4K Gaming Monitor,1,389.99,05/19/19 18:40,"188 Cedar St, Los Angeles, CA 90001" -199381,34in Ultrawide Monitor,1,379.99,05/29/19 07:38,"298 Pine St, Dallas, TX 75001" -199382,Apple Airpods Headphones,1,150,05/05/19 14:58,"38 Cherry St, Boston, MA 02215" -199383,Wired Headphones,1,11.99,05/29/19 18:06,"362 Hickory St, San Francisco, CA 94016" -199384,27in 4K Gaming Monitor,1,389.99,05/23/19 11:10,"791 Spruce St, Los Angeles, CA 90001" -199385,Bose SoundSport Headphones,1,99.99,05/25/19 14:02,"404 Cedar St, Seattle, WA 98101" -199386,Lightning Charging Cable,1,14.95,05/26/19 18:32,"439 13th St, San Francisco, CA 94016" -199387,Bose SoundSport Headphones,1,99.99,05/07/19 06:17,"681 Center St, Boston, MA 02215" -199388,Bose SoundSport Headphones,1,99.99,05/29/19 06:37,"936 Adams St, Boston, MA 02215" -199389,Bose SoundSport Headphones,1,99.99,05/09/19 09:02,"794 Church St, Atlanta, GA 30301" -199390,USB-C Charging Cable,1,11.95,05/12/19 22:23,"423 Park St, Boston, MA 02215" -199391,Wired Headphones,1,11.99,05/01/19 17:38,"711 Pine St, Dallas, TX 75001" -199392,Google Phone,1,600,05/04/19 21:12,"254 Meadow St, San Francisco, CA 94016" -199392,Lightning Charging Cable,1,14.95,05/04/19 21:12,"254 Meadow St, San Francisco, CA 94016" -199393,AAA Batteries (4-pack),1,2.99,05/22/19 21:59,"726 10th St, Los Angeles, CA 90001" -199394,Wired Headphones,2,11.99,05/03/19 17:22,"940 Madison St, Atlanta, GA 30301" -199395,Wired Headphones,1,11.99,05/05/19 17:41,"249 1st St, Atlanta, GA 30301" -199396,Bose SoundSport Headphones,1,99.99,05/18/19 19:39,"532 4th St, Atlanta, GA 30301" -199397,iPhone,1,700,05/26/19 21:27,"91 Jefferson St, San Francisco, CA 94016" -199397,Lightning Charging Cable,1,14.95,05/26/19 21:27,"91 Jefferson St, San Francisco, CA 94016" -199398,Macbook Pro Laptop,1,1700,05/14/19 18:26,"92 Highland St, Dallas, TX 75001" -199399,iPhone,1,700,05/31/19 09:46,"183 5th St, Portland, OR 97035" -199399,Lightning Charging Cable,1,14.95,05/31/19 09:46,"183 5th St, Portland, OR 97035" -199400,AAA Batteries (4-pack),1,2.99,05/24/19 16:02,"572 4th St, Seattle, WA 98101" -199401,27in FHD Monitor,1,149.99,05/22/19 19:01,"713 8th St, New York City, NY 10001" -199402,USB-C Charging Cable,1,11.95,05/27/19 00:56,"775 Adams St, San Francisco, CA 94016" -199403,Lightning Charging Cable,1,14.95,05/03/19 15:27,"616 West St, Seattle, WA 98101" -199404,AA Batteries (4-pack),4,3.84,05/14/19 12:28,"285 Washington St, Austin, TX 73301" -199405,ThinkPad Laptop,1,999.99,05/10/19 13:18,"462 Church St, Los Angeles, CA 90001" -199406,USB-C Charging Cable,1,11.95,05/26/19 13:09,"141 Forest St, Atlanta, GA 30301" -199407,USB-C Charging Cable,1,11.95,05/22/19 06:59,"564 8th St, Dallas, TX 75001" -199407,Bose SoundSport Headphones,1,99.99,05/22/19 06:59,"564 8th St, Dallas, TX 75001" -199408,USB-C Charging Cable,1,11.95,05/02/19 17:59,"696 Lake St, Seattle, WA 98101" -199409,AAA Batteries (4-pack),1,2.99,05/18/19 19:37,"49 12th St, Seattle, WA 98101" -199410,USB-C Charging Cable,2,11.95,05/21/19 21:22,"224 South St, New York City, NY 10001" -199411,ThinkPad Laptop,1,999.99,05/24/19 16:12,"841 West St, San Francisco, CA 94016" -199412,AA Batteries (4-pack),4,3.84,05/28/19 10:08,"32 Hickory St, New York City, NY 10001" -199413,Flatscreen TV,1,300,05/16/19 23:36,"585 North St, Los Angeles, CA 90001" -199414,27in FHD Monitor,1,149.99,05/15/19 11:16,"427 River St, Los Angeles, CA 90001" -199415,27in FHD Monitor,1,149.99,05/05/19 17:25,"562 Sunset St, Atlanta, GA 30301" -199416,AAA Batteries (4-pack),1,2.99,05/06/19 19:33,"404 Dogwood St, Dallas, TX 75001" -199417,Bose SoundSport Headphones,1,99.99,05/03/19 20:12,"673 Wilson St, Los Angeles, CA 90001" -199418,Wired Headphones,1,11.99,05/05/19 22:55,"209 Main St, Los Angeles, CA 90001" -199419,ThinkPad Laptop,1,999.99,05/23/19 22:45,"830 Jefferson St, Austin, TX 73301" -199420,USB-C Charging Cable,2,11.95,05/10/19 17:03,"179 Johnson St, Los Angeles, CA 90001" -199421,ThinkPad Laptop,1,999.99,05/11/19 12:44,"484 Madison St, San Francisco, CA 94016" -199422,Bose SoundSport Headphones,1,99.99,05/08/19 14:10,"583 2nd St, Dallas, TX 75001" -199423,Apple Airpods Headphones,1,150,05/03/19 17:16,"494 Spruce St, Seattle, WA 98101" -199424,Wired Headphones,1,11.99,05/10/19 13:35,"209 Hickory St, Portland, OR 97035" -199425,USB-C Charging Cable,1,11.95,05/09/19 13:28,"243 Ridge St, Los Angeles, CA 90001" -199426,Apple Airpods Headphones,1,150,05/05/19 10:13,"206 Adams St, Boston, MA 02215" -199427,Flatscreen TV,1,300,05/17/19 18:17,"47 Adams St, Seattle, WA 98101" -199428,AAA Batteries (4-pack),4,2.99,05/21/19 06:26,"421 Meadow St, Los Angeles, CA 90001" -199429,USB-C Charging Cable,1,11.95,05/29/19 12:39,"560 Highland St, New York City, NY 10001" -199430,34in Ultrawide Monitor,1,379.99,05/24/19 08:55,"911 Chestnut St, Portland, ME 04101" -199431,AA Batteries (4-pack),1,3.84,05/24/19 19:50,"227 Pine St, Atlanta, GA 30301" -199431,AAA Batteries (4-pack),2,2.99,05/24/19 19:50,"227 Pine St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -199432,Lightning Charging Cable,1,14.95,05/21/19 16:48,"657 Adams St, Los Angeles, CA 90001" -199433,Apple Airpods Headphones,1,150,05/15/19 12:49,"277 River St, New York City, NY 10001" -199434,USB-C Charging Cable,1,11.95,05/03/19 11:30,"396 10th St, San Francisco, CA 94016" -199435,Apple Airpods Headphones,1,150,05/08/19 22:38,"941 North St, Atlanta, GA 30301" -199436,27in FHD Monitor,1,149.99,05/18/19 14:28,"445 Spruce St, San Francisco, CA 94016" -199437,Lightning Charging Cable,2,14.95,05/23/19 23:23,"538 Cedar St, San Francisco, CA 94016" -199438,Flatscreen TV,1,300,05/02/19 17:24,"171 Walnut St, Boston, MA 02215" -199439,AAA Batteries (4-pack),1,2.99,05/23/19 10:17,"398 Lincoln St, Austin, TX 73301" -199440,Wired Headphones,1,11.99,05/23/19 09:02,"707 1st St, San Francisco, CA 94016" -199441,LG Dryer,1,600.0,05/01/19 18:31,"564 Johnson St, Portland, OR 97035" -199442,USB-C Charging Cable,1,11.95,05/29/19 19:51,"985 6th St, New York City, NY 10001" -199443,Lightning Charging Cable,2,14.95,05/30/19 20:15,"822 Pine St, San Francisco, CA 94016" -199444,AA Batteries (4-pack),1,3.84,05/28/19 12:38,"218 North St, Portland, OR 97035" -199445,Bose SoundSport Headphones,1,99.99,05/18/19 06:49,"876 14th St, Dallas, TX 75001" -199446,34in Ultrawide Monitor,1,379.99,05/22/19 22:54,"415 Spruce St, Austin, TX 73301" -199447,27in FHD Monitor,1,149.99,05/18/19 07:31,"309 Jefferson St, San Francisco, CA 94016" -199448,Lightning Charging Cable,1,14.95,05/31/19 09:19,"971 Main St, San Francisco, CA 94016" -199449,Flatscreen TV,1,300,05/11/19 13:26,"3 7th St, New York City, NY 10001" -199450,Wired Headphones,1,11.99,05/08/19 09:57,"531 10th St, Boston, MA 02215" -199451,Lightning Charging Cable,1,14.95,05/09/19 20:08,"689 Jackson St, Los Angeles, CA 90001" -199452,27in FHD Monitor,1,149.99,05/23/19 10:59,"200 Meadow St, Los Angeles, CA 90001" -199453,Apple Airpods Headphones,1,150,05/31/19 11:26,"468 5th St, Portland, OR 97035" -199454,LG Dryer,1,600.0,05/23/19 13:58,"611 Cedar St, Dallas, TX 75001" -199455,iPhone,1,700,05/11/19 21:10,"422 6th St, Atlanta, GA 30301" -199455,Wired Headphones,1,11.99,05/11/19 21:10,"422 6th St, Atlanta, GA 30301" -199456,AAA Batteries (4-pack),2,2.99,05/26/19 00:31,"884 Church St, Austin, TX 73301" -199457,Apple Airpods Headphones,1,150,05/11/19 06:59,"394 Park St, Boston, MA 02215" -199458,Lightning Charging Cable,1,14.95,05/18/19 22:15,"85 Jefferson St, Portland, OR 97035" -199459,Vareebadd Phone,1,400,05/21/19 18:51,"656 12th St, Seattle, WA 98101" -199459,USB-C Charging Cable,1,11.95,05/21/19 18:51,"656 12th St, Seattle, WA 98101" -199460,Flatscreen TV,1,300,05/28/19 15:07,"488 Spruce St, San Francisco, CA 94016" -199461,AAA Batteries (4-pack),1,2.99,05/19/19 10:19,"510 Walnut St, Los Angeles, CA 90001" -199462,Google Phone,1,600,05/05/19 18:56,"716 Meadow St, San Francisco, CA 94016" -199462,Bose SoundSport Headphones,1,99.99,05/05/19 18:56,"716 Meadow St, San Francisco, CA 94016" -199463,20in Monitor,1,109.99,05/29/19 11:03,"882 1st St, Dallas, TX 75001" -199464,Wired Headphones,1,11.99,05/09/19 00:59,"854 Maple St, San Francisco, CA 94016" -199465,USB-C Charging Cable,1,11.95,05/16/19 14:50,"903 Maple St, Los Angeles, CA 90001" -199466,USB-C Charging Cable,1,11.95,05/14/19 09:15,"250 8th St, Atlanta, GA 30301" -199467,AA Batteries (4-pack),2,3.84,05/03/19 10:53,"224 4th St, San Francisco, CA 94016" -199468,Google Phone,1,600,05/21/19 09:54,"82 2nd St, San Francisco, CA 94016" -199468,AAA Batteries (4-pack),1,2.99,05/21/19 09:54,"82 2nd St, San Francisco, CA 94016" -199469,Lightning Charging Cable,1,14.95,05/03/19 21:06,"874 Jefferson St, Dallas, TX 75001" -199470,Wired Headphones,1,11.99,05/12/19 17:12,"483 9th St, San Francisco, CA 94016" -199471,Wired Headphones,1,11.99,05/28/19 08:44,"409 Elm St, Seattle, WA 98101" -199472,Apple Airpods Headphones,1,150,05/27/19 13:12,"155 4th St, New York City, NY 10001" -199473,AA Batteries (4-pack),1,3.84,05/13/19 15:43,"960 4th St, Boston, MA 02215" -199474,Macbook Pro Laptop,1,1700,05/23/19 07:25,"55 Lake St, San Francisco, CA 94016" -199475,Lightning Charging Cable,1,14.95,05/31/19 20:57,"541 13th St, New York City, NY 10001" -199476,Google Phone,1,600,05/03/19 13:59,"879 Highland St, New York City, NY 10001" -199477,27in FHD Monitor,1,149.99,05/30/19 16:30,"309 Spruce St, Portland, OR 97035" -199478,Google Phone,1,600,05/14/19 09:30,"59 Ridge St, Boston, MA 02215" -199479,Lightning Charging Cable,1,14.95,05/06/19 23:23,"546 1st St, New York City, NY 10001" -199480,AA Batteries (4-pack),1,3.84,05/26/19 07:59,"937 Meadow St, New York City, NY 10001" -199481,USB-C Charging Cable,1,11.95,05/02/19 20:48,"280 Madison St, New York City, NY 10001" -199482,ThinkPad Laptop,1,999.99,05/06/19 15:51,"778 7th St, Dallas, TX 75001" -199483,AA Batteries (4-pack),1,3.84,05/19/19 20:44,"766 Wilson St, San Francisco, CA 94016" -199484,Lightning Charging Cable,1,14.95,05/19/19 22:11,"140 Spruce St, Los Angeles, CA 90001" -199485,Lightning Charging Cable,1,14.95,05/19/19 17:34,"979 Elm St, San Francisco, CA 94016" -199486,34in Ultrawide Monitor,1,379.99,05/22/19 03:50,"800 Forest St, Seattle, WA 98101" -199487,Macbook Pro Laptop,1,1700,05/07/19 15:24,"947 Lake St, Boston, MA 02215" -199488,Lightning Charging Cable,1,14.95,05/03/19 14:24,"636 Adams St, New York City, NY 10001" -199489,Wired Headphones,1,11.99,05/08/19 12:42,"333 Spruce St, San Francisco, CA 94016" -199490,Wired Headphones,1,11.99,05/23/19 13:23,"484 13th St, Boston, MA 02215" -199491,Flatscreen TV,1,300,05/21/19 06:00,"75 Church St, San Francisco, CA 94016" -199492,Macbook Pro Laptop,1,1700,05/09/19 19:46,"807 Hickory St, Atlanta, GA 30301" -199493,AA Batteries (4-pack),1,3.84,05/29/19 21:21,"191 12th St, Dallas, TX 75001" -199494,20in Monitor,1,109.99,05/07/19 19:29,"371 Maple St, Los Angeles, CA 90001" -199495,USB-C Charging Cable,1,11.95,05/12/19 08:11,"474 Lincoln St, San Francisco, CA 94016" -199496,USB-C Charging Cable,1,11.95,05/25/19 08:48,"94 9th St, Dallas, TX 75001" -199497,34in Ultrawide Monitor,1,379.99,05/12/19 01:25,"47 Cherry St, Austin, TX 73301" -199498,20in Monitor,1,109.99,05/27/19 16:57,"600 Dogwood St, Portland, OR 97035" -199498,USB-C Charging Cable,1,11.95,05/27/19 16:57,"600 Dogwood St, Portland, OR 97035" -199499,Lightning Charging Cable,1,14.95,05/20/19 23:18,"595 13th St, Seattle, WA 98101" -199500,Wired Headphones,2,11.99,05/19/19 20:44,"613 Elm St, San Francisco, CA 94016" -199501,Bose SoundSport Headphones,1,99.99,05/03/19 20:38,"643 Church St, Los Angeles, CA 90001" -199502,Google Phone,1,600,05/20/19 07:52,"112 Park St, Seattle, WA 98101" -199503,iPhone,1,700,05/24/19 18:04,"79 North St, New York City, NY 10001" -199504,LG Washing Machine,1,600.0,05/19/19 08:16,"654 12th St, Boston, MA 02215" -199505,iPhone,1,700,05/28/19 00:37,"826 Lake St, San Francisco, CA 94016" -199506,Macbook Pro Laptop,1,1700,05/26/19 21:16,"636 Forest St, San Francisco, CA 94016" -199507,20in Monitor,1,109.99,05/09/19 14:06,"592 Lake St, Los Angeles, CA 90001" -199508,Bose SoundSport Headphones,1,99.99,05/08/19 17:45,"149 Highland St, New York City, NY 10001" -199509,27in FHD Monitor,1,149.99,05/25/19 15:51,"970 Johnson St, Boston, MA 02215" -199510,27in 4K Gaming Monitor,1,389.99,05/10/19 22:33,"764 North St, Seattle, WA 98101" -199511,AA Batteries (4-pack),1,3.84,05/16/19 21:33,"658 13th St, Portland, OR 97035" -199512,Apple Airpods Headphones,1,150,05/31/19 19:13,"709 Main St, Boston, MA 02215" -199513,iPhone,1,700,05/22/19 13:49,"741 Main St, Atlanta, GA 30301" -199514,Wired Headphones,1,11.99,05/03/19 13:02,"647 Wilson St, New York City, NY 10001" -199515,USB-C Charging Cable,1,11.95,05/31/19 02:23,"955 12th St, Seattle, WA 98101" -199516,USB-C Charging Cable,2,11.95,05/10/19 23:35,"48 12th St, Portland, OR 97035" -199517,Flatscreen TV,1,300,05/18/19 18:02,"459 Meadow St, Los Angeles, CA 90001" -199518,Google Phone,1,600,05/12/19 16:00,"684 Madison St, San Francisco, CA 94016" -199518,USB-C Charging Cable,1,11.95,05/12/19 16:00,"684 Madison St, San Francisco, CA 94016" -199519,AA Batteries (4-pack),1,3.84,05/05/19 19:58,"436 Cedar St, San Francisco, CA 94016" -199520,Wired Headphones,1,11.99,05/14/19 12:52,"659 Park St, Dallas, TX 75001" -199521,USB-C Charging Cable,1,11.95,05/19/19 12:39,"218 River St, Austin, TX 73301" -199522,34in Ultrawide Monitor,1,379.99,05/18/19 12:08,"326 Main St, San Francisco, CA 94016" -199523,ThinkPad Laptop,1,999.99,05/14/19 18:48,"539 Pine St, Portland, OR 97035" -199524,27in 4K Gaming Monitor,1,389.99,05/13/19 23:27,"264 10th St, San Francisco, CA 94016" -199525,Wired Headphones,1,11.99,05/28/19 18:31,"566 Elm St, Seattle, WA 98101" -199526,USB-C Charging Cable,1,11.95,05/20/19 10:07,"243 Forest St, Austin, TX 73301" -199527,USB-C Charging Cable,2,11.95,05/07/19 17:35,"471 Madison St, Los Angeles, CA 90001" -199528,AAA Batteries (4-pack),2,2.99,05/07/19 15:18,"827 13th St, Atlanta, GA 30301" -199529,34in Ultrawide Monitor,1,379.99,05/03/19 16:38,"860 10th St, San Francisco, CA 94016" -199530,Wired Headphones,1,11.99,05/28/19 13:24,"584 Jefferson St, Dallas, TX 75001" -199531,Wired Headphones,1,11.99,05/11/19 19:28,"653 Walnut St, Dallas, TX 75001" -199532,AAA Batteries (4-pack),1,2.99,05/07/19 13:10,"370 Forest St, Boston, MA 02215" -199533,ThinkPad Laptop,1,999.99,05/05/19 10:36,"142 Wilson St, Seattle, WA 98101" -199534,Bose SoundSport Headphones,1,99.99,05/31/19 08:05,"395 Forest St, Los Angeles, CA 90001" -199535,USB-C Charging Cable,1,11.95,05/26/19 10:12,"513 Adams St, Boston, MA 02215" -199536,Bose SoundSport Headphones,1,99.99,05/07/19 18:50,"682 13th St, San Francisco, CA 94016" -199537,USB-C Charging Cable,1,11.95,05/10/19 04:34,"906 Spruce St, New York City, NY 10001" -199538,Wired Headphones,1,11.99,05/18/19 15:49,"62 9th St, Seattle, WA 98101" -199539,Wired Headphones,1,11.99,05/19/19 14:01,"985 Maple St, Los Angeles, CA 90001" -199540,AAA Batteries (4-pack),1,2.99,05/10/19 16:10,"753 5th St, San Francisco, CA 94016" -199541,27in 4K Gaming Monitor,1,389.99,05/14/19 17:06,"403 Chestnut St, Dallas, TX 75001" -199542,AAA Batteries (4-pack),1,2.99,05/14/19 14:11,"949 Wilson St, Atlanta, GA 30301" -199543,iPhone,1,700,05/30/19 09:52,"339 Meadow St, Los Angeles, CA 90001" -199544,Bose SoundSport Headphones,1,99.99,05/27/19 08:56,"390 West St, Portland, ME 04101" -199545,Bose SoundSport Headphones,1,99.99,05/04/19 22:51,"624 Jefferson St, New York City, NY 10001" -199546,Wired Headphones,1,11.99,05/19/19 23:05,"590 Meadow St, Los Angeles, CA 90001" -199547,USB-C Charging Cable,1,11.95,05/16/19 12:17,"891 2nd St, Portland, OR 97035" -199548,Apple Airpods Headphones,1,150,05/19/19 15:56,"236 11th St, Portland, OR 97035" -199549,Flatscreen TV,1,300,05/29/19 19:10,"7 14th St, Seattle, WA 98101" -199550,iPhone,1,700,05/18/19 18:04,"437 West St, Los Angeles, CA 90001" -199551,USB-C Charging Cable,1,11.95,05/24/19 20:16,"234 Elm St, Seattle, WA 98101" -199552,Lightning Charging Cable,1,14.95,05/04/19 18:44,"313 Cedar St, Atlanta, GA 30301" -199553,Wired Headphones,1,11.99,05/30/19 17:05,"761 Washington St, Atlanta, GA 30301" -199554,AA Batteries (4-pack),1,3.84,05/26/19 18:25,"904 Cedar St, San Francisco, CA 94016" -199555,Lightning Charging Cable,1,14.95,05/30/19 10:50,"530 Johnson St, Boston, MA 02215" -199556,Macbook Pro Laptop,1,1700,05/06/19 22:49,"521 Lincoln St, Atlanta, GA 30301" -199557,USB-C Charging Cable,1,11.95,05/15/19 13:02,"695 Cherry St, Boston, MA 02215" -199558,AAA Batteries (4-pack),4,2.99,05/22/19 14:25,"364 Washington St, New York City, NY 10001" -199559,Lightning Charging Cable,1,14.95,05/24/19 15:48,"221 Lincoln St, Atlanta, GA 30301" -199560,AAA Batteries (4-pack),1,2.99,05/22/19 12:17,"367 Park St, Atlanta, GA 30301" -199561,USB-C Charging Cable,1,11.95,05/12/19 19:30,"754 Wilson St, San Francisco, CA 94016" -199562,Google Phone,1,600,05/16/19 12:50,"811 Madison St, New York City, NY 10001" -199563,AAA Batteries (4-pack),1,2.99,05/29/19 17:22,"810 Forest St, San Francisco, CA 94016" -199564,Lightning Charging Cable,1,14.95,05/31/19 20:44,"130 10th St, Atlanta, GA 30301" -199565,USB-C Charging Cable,1,11.95,05/15/19 10:36,"225 12th St, Los Angeles, CA 90001" -199566,AAA Batteries (4-pack),2,2.99,05/03/19 21:11,"837 10th St, Los Angeles, CA 90001" -199567,AAA Batteries (4-pack),2,2.99,05/09/19 01:59,"589 9th St, Los Angeles, CA 90001" -199568,Apple Airpods Headphones,1,150,05/14/19 15:36,"301 14th St, Atlanta, GA 30301" -199569,Macbook Pro Laptop,1,1700,05/08/19 19:59,"645 Walnut St, San Francisco, CA 94016" -199570,34in Ultrawide Monitor,1,379.99,05/29/19 08:17,"875 Lake St, San Francisco, CA 94016" -199571,Lightning Charging Cable,1,14.95,05/30/19 19:00,"286 6th St, Atlanta, GA 30301" -199572,Lightning Charging Cable,1,14.95,05/03/19 21:51,"297 1st St, San Francisco, CA 94016" -199573,Apple Airpods Headphones,1,150,05/22/19 11:00,"895 Elm St, Dallas, TX 75001" -199574,Lightning Charging Cable,1,14.95,05/01/19 15:47,"949 Hill St, Los Angeles, CA 90001" -199575,34in Ultrawide Monitor,1,379.99,05/08/19 12:33,"249 Hickory St, Austin, TX 73301" -199576,AAA Batteries (4-pack),2,2.99,05/04/19 13:28,"481 Elm St, Seattle, WA 98101" -199577,AA Batteries (4-pack),1,3.84,05/04/19 00:48,"362 River St, San Francisco, CA 94016" -199578,Apple Airpods Headphones,1,150,05/05/19 13:12,"654 5th St, San Francisco, CA 94016" -199579,Lightning Charging Cable,1,14.95,05/15/19 08:58,"232 Washington St, Atlanta, GA 30301" -199580,Wired Headphones,1,11.99,05/02/19 20:58,"12 Johnson St, Austin, TX 73301" -199581,Bose SoundSport Headphones,1,99.99,05/20/19 18:07,"876 Wilson St, Austin, TX 73301" -199582,20in Monitor,1,109.99,05/17/19 10:23,"898 Johnson St, Atlanta, GA 30301" -199583,20in Monitor,1,109.99,05/17/19 10:39,"865 Highland St, Dallas, TX 75001" -199584,ThinkPad Laptop,1,999.99,05/19/19 07:54,"357 Maple St, Austin, TX 73301" -199585,Wired Headphones,1,11.99,05/19/19 17:08,"380 Main St, New York City, NY 10001" -199586,Lightning Charging Cable,2,14.95,05/26/19 17:09,"276 2nd St, Boston, MA 02215" -199587,AA Batteries (4-pack),1,3.84,05/04/19 21:37,"275 Willow St, Boston, MA 02215" -199588,20in Monitor,1,109.99,05/14/19 12:57,"193 Willow St, San Francisco, CA 94016" -199589,20in Monitor,1,109.99,05/07/19 19:22,"671 Jefferson St, New York City, NY 10001" -199590,Lightning Charging Cable,1,14.95,05/02/19 10:37,"815 Lake St, Seattle, WA 98101" -199591,AAA Batteries (4-pack),1,2.99,05/14/19 23:05,"541 Cherry St, Atlanta, GA 30301" -199592,27in 4K Gaming Monitor,1,389.99,05/30/19 23:06,"278 Ridge St, San Francisco, CA 94016" -199593,Flatscreen TV,1,300,05/15/19 13:20,"275 Lake St, San Francisco, CA 94016" -199594,USB-C Charging Cable,2,11.95,05/03/19 20:48,"638 Park St, San Francisco, CA 94016" -199595,Wired Headphones,1,11.99,05/05/19 08:32,"146 4th St, New York City, NY 10001" -199596,AA Batteries (4-pack),1,3.84,05/30/19 19:12,"634 8th St, New York City, NY 10001" -199597,Lightning Charging Cable,1,14.95,05/08/19 20:47,"883 6th St, Seattle, WA 98101" -199598,AAA Batteries (4-pack),2,2.99,05/26/19 16:02,"545 Pine St, Seattle, WA 98101" -199599,27in FHD Monitor,1,149.99,05/14/19 19:15,"85 Chestnut St, Los Angeles, CA 90001" -199600,27in FHD Monitor,1,149.99,05/16/19 18:38,"351 12th St, Los Angeles, CA 90001" -199601,AAA Batteries (4-pack),1,2.99,05/04/19 13:41,"95 1st St, San Francisco, CA 94016" -199602,Macbook Pro Laptop,1,1700,05/09/19 14:43,"617 North St, Dallas, TX 75001" -199603,27in FHD Monitor,1,149.99,05/13/19 08:58,"461 Maple St, Seattle, WA 98101" -199604,USB-C Charging Cable,1,11.95,05/18/19 21:18,"74 Center St, Dallas, TX 75001" -199605,Lightning Charging Cable,1,14.95,05/31/19 18:21,"425 Meadow St, San Francisco, CA 94016" -199606,AA Batteries (4-pack),1,3.84,05/15/19 17:31,"778 Lake St, Dallas, TX 75001" -199607,Bose SoundSport Headphones,1,99.99,05/07/19 17:02,"386 Meadow St, San Francisco, CA 94016" -199608,Lightning Charging Cable,1,14.95,05/05/19 22:08,"366 1st St, Los Angeles, CA 90001" -199609,Wired Headphones,1,11.99,05/20/19 20:49,"173 12th St, Boston, MA 02215" -199610,27in 4K Gaming Monitor,1,389.99,05/17/19 21:34,"470 Washington St, Boston, MA 02215" -199611,AA Batteries (4-pack),1,3.84,05/30/19 08:39,"142 Ridge St, Portland, OR 97035" -199612,AA Batteries (4-pack),1,3.84,05/06/19 14:34,"732 8th St, San Francisco, CA 94016" -199613,Wired Headphones,1,11.99,05/28/19 20:20,"510 Maple St, San Francisco, CA 94016" -199614,AA Batteries (4-pack),1,3.84,05/17/19 15:12,"293 13th St, Portland, OR 97035" -199615,AAA Batteries (4-pack),1,2.99,05/23/19 10:50,"594 Willow St, San Francisco, CA 94016" -199616,Wired Headphones,1,11.99,05/14/19 08:21,"911 Main St, Dallas, TX 75001" -199617,AA Batteries (4-pack),1,3.84,05/27/19 05:58,"822 Lakeview St, Seattle, WA 98101" -199618,AA Batteries (4-pack),1,3.84,05/15/19 10:17,"560 Adams St, New York City, NY 10001" -199619,USB-C Charging Cable,1,11.95,05/21/19 21:35,"154 Spruce St, Seattle, WA 98101" -199620,Bose SoundSport Headphones,1,99.99,05/14/19 19:40,"583 4th St, Dallas, TX 75001" -199621,Lightning Charging Cable,1,14.95,05/25/19 16:31,"86 Park St, Los Angeles, CA 90001" -199622,Wired Headphones,1,11.99,05/13/19 07:22,"806 Lakeview St, Portland, OR 97035" -199623,USB-C Charging Cable,1,11.95,05/11/19 07:44,"231 9th St, New York City, NY 10001" -199624,27in 4K Gaming Monitor,1,389.99,05/30/19 00:11,"132 South St, San Francisco, CA 94016" -199625,Apple Airpods Headphones,1,150,05/25/19 12:10,"213 Hill St, Portland, OR 97035" -199626,34in Ultrawide Monitor,1,379.99,05/25/19 20:34,"582 Wilson St, Dallas, TX 75001" -199627,AA Batteries (4-pack),2,3.84,05/01/19 10:50,"703 Madison St, Austin, TX 73301" -199628,USB-C Charging Cable,2,11.95,05/26/19 20:09,"912 10th St, New York City, NY 10001" -199629,USB-C Charging Cable,1,11.95,05/18/19 11:02,"701 Madison St, Austin, TX 73301" -199630,27in FHD Monitor,1,149.99,05/23/19 18:03,"718 Washington St, Portland, ME 04101" -199631,AA Batteries (4-pack),1,3.84,05/04/19 09:40,"848 Cherry St, San Francisco, CA 94016" -199632,Wired Headphones,1,11.99,05/19/19 16:08,"822 Elm St, New York City, NY 10001" -199633,AAA Batteries (4-pack),1,2.99,05/14/19 14:18,"798 11th St, Los Angeles, CA 90001" -199634,34in Ultrawide Monitor,1,379.99,05/07/19 14:33,"556 Jefferson St, Los Angeles, CA 90001" -199634,Lightning Charging Cable,1,14.95,05/07/19 14:33,"556 Jefferson St, Los Angeles, CA 90001" -199635,AA Batteries (4-pack),1,3.84,05/30/19 19:21,"359 Wilson St, Dallas, TX 75001" -199636,Google Phone,1,600,05/10/19 21:30,"592 Willow St, New York City, NY 10001" -199636,USB-C Charging Cable,1,11.95,05/10/19 21:30,"592 Willow St, New York City, NY 10001" -199637,AAA Batteries (4-pack),1,2.99,05/27/19 13:40,"669 Sunset St, Dallas, TX 75001" -199638,AAA Batteries (4-pack),1,2.99,05/13/19 13:13,"960 11th St, New York City, NY 10001" -199639,AAA Batteries (4-pack),4,2.99,05/08/19 12:32,"847 Highland St, Portland, OR 97035" -199640,Google Phone,1,600,05/01/19 21:25,"90 Willow St, Atlanta, GA 30301" -199641,Lightning Charging Cable,1,14.95,05/16/19 01:18,"445 Church St, San Francisco, CA 94016" -199642,Bose SoundSport Headphones,1,99.99,05/09/19 16:22,"346 Highland St, New York City, NY 10001" -199643,AA Batteries (4-pack),1,3.84,05/30/19 17:32,"180 Center St, Portland, OR 97035" -199644,27in FHD Monitor,1,149.99,05/21/19 18:13,"170 Center St, Austin, TX 73301" -199645,Bose SoundSport Headphones,1,99.99,05/14/19 13:55,"156 Lakeview St, San Francisco, CA 94016" -199646,34in Ultrawide Monitor,1,379.99,05/06/19 11:32,"227 6th St, Seattle, WA 98101" -199647,AAA Batteries (4-pack),1,2.99,05/27/19 15:11,"874 5th St, San Francisco, CA 94016" -199648,Wired Headphones,1,11.99,05/09/19 07:48,"509 South St, Atlanta, GA 30301" -199649,Apple Airpods Headphones,1,150,05/16/19 00:10,"847 Ridge St, Dallas, TX 75001" -199649,Lightning Charging Cable,1,14.95,05/16/19 00:10,"847 Ridge St, Dallas, TX 75001" -199650,Lightning Charging Cable,1,14.95,05/04/19 19:48,"519 Walnut St, San Francisco, CA 94016" -199651,AA Batteries (4-pack),1,3.84,05/09/19 16:03,"262 Chestnut St, New York City, NY 10001" -199652,Flatscreen TV,1,300,05/14/19 13:58,"254 South St, Boston, MA 02215" -199653,Flatscreen TV,1,300,05/02/19 11:20,"671 Lake St, Atlanta, GA 30301" -199654,27in 4K Gaming Monitor,1,389.99,05/15/19 08:19,"342 South St, New York City, NY 10001" -199655,Flatscreen TV,1,300,05/15/19 20:35,"580 River St, Los Angeles, CA 90001" -199656,27in FHD Monitor,1,149.99,05/06/19 17:02,"39 Lincoln St, Seattle, WA 98101" -199657,Bose SoundSport Headphones,1,99.99,05/13/19 15:40,"706 Church St, Los Angeles, CA 90001" -199658,AA Batteries (4-pack),2,3.84,05/01/19 20:15,"346 11th St, Portland, OR 97035" -199659,AAA Batteries (4-pack),1,2.99,05/18/19 08:35,"142 Wilson St, Boston, MA 02215" -199660,Bose SoundSport Headphones,1,99.99,05/27/19 08:37,"308 11th St, San Francisco, CA 94016" -199661,Wired Headphones,1,11.99,05/17/19 11:00,"131 Madison St, Los Angeles, CA 90001" -199662,34in Ultrawide Monitor,1,379.99,05/28/19 15:13,"768 Meadow St, San Francisco, CA 94016" -199663,Wired Headphones,1,11.99,05/23/19 17:01,"86 14th St, Los Angeles, CA 90001" -199664,Wired Headphones,1,11.99,05/02/19 10:20,"117 Lincoln St, Boston, MA 02215" -199664,iPhone,1,700,05/02/19 10:20,"117 Lincoln St, Boston, MA 02215" -199665,Lightning Charging Cable,1,14.95,05/22/19 01:16,"987 4th St, Portland, OR 97035" -199666,USB-C Charging Cable,1,11.95,05/19/19 22:56,"482 Lakeview St, New York City, NY 10001" -199667,AA Batteries (4-pack),2,3.84,05/05/19 18:36,"184 Meadow St, Dallas, TX 75001" -199668,AAA Batteries (4-pack),1,2.99,05/06/19 10:56,"903 Walnut St, Dallas, TX 75001" -199669,USB-C Charging Cable,1,11.95,05/13/19 16:16,"276 8th St, San Francisco, CA 94016" -199670,USB-C Charging Cable,1,11.95,05/26/19 05:13,"947 Lake St, San Francisco, CA 94016" -199671,Lightning Charging Cable,1,14.95,05/12/19 19:52,"497 Cedar St, San Francisco, CA 94016" -199672,27in 4K Gaming Monitor,1,389.99,05/01/19 19:14,"570 Hickory St, Atlanta, GA 30301" -199673,20in Monitor,1,109.99,05/19/19 11:06,"430 Sunset St, San Francisco, CA 94016" -199674,Wired Headphones,1,11.99,05/17/19 18:45,"472 Center St, Seattle, WA 98101" -199675,27in FHD Monitor,1,149.99,05/17/19 11:45,"84 Lake St, New York City, NY 10001" -199676,LG Washing Machine,1,600.0,05/06/19 23:10,"389 North St, San Francisco, CA 94016" -199677,USB-C Charging Cable,1,11.95,05/11/19 12:18,"874 Dogwood St, Dallas, TX 75001" -199678,AAA Batteries (4-pack),1,2.99,05/05/19 12:44,"177 Hill St, Seattle, WA 98101" -199679,AA Batteries (4-pack),1,3.84,05/07/19 18:36,"873 Hickory St, Boston, MA 02215" -199680,34in Ultrawide Monitor,1,379.99,05/09/19 10:19,"621 Sunset St, Atlanta, GA 30301" -199681,USB-C Charging Cable,1,11.95,05/15/19 11:09,"756 Jackson St, San Francisco, CA 94016" -199682,Wired Headphones,1,11.99,05/16/19 12:39,"871 Adams St, Boston, MA 02215" -199683,AAA Batteries (4-pack),5,2.99,05/07/19 10:49,"964 8th St, San Francisco, CA 94016" -199684,Lightning Charging Cable,1,14.95,05/23/19 22:25,"240 11th St, Boston, MA 02215" -199685,Bose SoundSport Headphones,1,99.99,05/23/19 13:04,"840 Chestnut St, Dallas, TX 75001" -199686,AAA Batteries (4-pack),1,2.99,05/23/19 19:53,"336 River St, Los Angeles, CA 90001" -199687,Bose SoundSport Headphones,1,99.99,05/03/19 10:38,"752 14th St, Los Angeles, CA 90001" -199688,iPhone,1,700,05/06/19 21:24,"59 7th St, Boston, MA 02215" -199689,Wired Headphones,1,11.99,05/09/19 23:04,"606 2nd St, New York City, NY 10001" -199690,34in Ultrawide Monitor,1,379.99,05/29/19 05:25,"445 Sunset St, San Francisco, CA 94016" -199691,USB-C Charging Cable,1,11.95,05/03/19 12:23,"264 Maple St, Los Angeles, CA 90001" -199692,Google Phone,1,600,05/16/19 17:38,"829 10th St, San Francisco, CA 94016" -199693,Bose SoundSport Headphones,1,99.99,05/22/19 18:36,"605 Madison St, Seattle, WA 98101" -199694,Wired Headphones,1,11.99,05/16/19 13:14,"945 River St, Seattle, WA 98101" -199695,USB-C Charging Cable,1,11.95,05/24/19 11:41,"845 Lincoln St, San Francisco, CA 94016" -199696,Wired Headphones,1,11.99,05/25/19 20:41,"49 Park St, Seattle, WA 98101" -199697,Google Phone,1,600,05/07/19 02:33,"288 Willow St, Boston, MA 02215" -199697,USB-C Charging Cable,1,11.95,05/07/19 02:33,"288 Willow St, Boston, MA 02215" -199698,Apple Airpods Headphones,1,150,05/19/19 16:59,"113 Jefferson St, Boston, MA 02215" -199699,iPhone,1,700,05/21/19 04:29,"255 Maple St, Atlanta, GA 30301" -199699,Lightning Charging Cable,1,14.95,05/21/19 04:29,"255 Maple St, Atlanta, GA 30301" -199700,AAA Batteries (4-pack),1,2.99,05/25/19 13:27,"669 6th St, Atlanta, GA 30301" -199701,Lightning Charging Cable,1,14.95,05/04/19 16:05,"268 Church St, Dallas, TX 75001" -199702,27in FHD Monitor,1,149.99,05/27/19 12:40,"289 Meadow St, Boston, MA 02215" -199703,Wired Headphones,1,11.99,05/09/19 18:32,"763 Lakeview St, Seattle, WA 98101" -199704,Bose SoundSport Headphones,1,99.99,05/02/19 10:14,"76 Lincoln St, New York City, NY 10001" -199705,27in FHD Monitor,1,149.99,05/22/19 11:29,"818 Chestnut St, Los Angeles, CA 90001" -199706,Lightning Charging Cable,1,14.95,05/07/19 18:55,"229 Highland St, Atlanta, GA 30301" -199707,AA Batteries (4-pack),1,3.84,05/10/19 20:46,"873 Center St, Los Angeles, CA 90001" -199708,Wired Headphones,1,11.99,05/21/19 21:53,"67 2nd St, Boston, MA 02215" -199709,34in Ultrawide Monitor,1,379.99,05/04/19 13:44,"473 Johnson St, Boston, MA 02215" -199710,USB-C Charging Cable,1,11.95,05/29/19 13:02,"806 Cedar St, Seattle, WA 98101" -199711,Lightning Charging Cable,1,14.95,05/14/19 00:46,"770 Lakeview St, Boston, MA 02215" -199712,USB-C Charging Cable,1,11.95,05/07/19 13:21,"900 North St, San Francisco, CA 94016" -199713,iPhone,1,700,05/08/19 15:26,"842 1st St, San Francisco, CA 94016" -199713,Lightning Charging Cable,1,14.95,05/08/19 15:26,"842 1st St, San Francisco, CA 94016" -199714,Wired Headphones,1,11.99,05/07/19 17:02,"367 6th St, Boston, MA 02215" -199715,AA Batteries (4-pack),1,3.84,05/08/19 11:50,"85 12th St, San Francisco, CA 94016" -199716,Macbook Pro Laptop,1,1700,05/04/19 12:27,"795 North St, New York City, NY 10001" -199717,AA Batteries (4-pack),1,3.84,05/16/19 17:57,"715 Dogwood St, Seattle, WA 98101" -199718,USB-C Charging Cable,1,11.95,05/25/19 16:27,"116 5th St, Los Angeles, CA 90001" -199719,27in FHD Monitor,1,149.99,05/07/19 02:01,"849 5th St, New York City, NY 10001" -199720,iPhone,1,700,05/29/19 23:27,"209 Walnut St, Boston, MA 02215" -199721,Wired Headphones,1,11.99,05/25/19 11:32,"677 Washington St, Portland, OR 97035" -199722,AA Batteries (4-pack),1,3.84,05/27/19 12:37,"61 Chestnut St, San Francisco, CA 94016" -199723,AAA Batteries (4-pack),1,2.99,05/07/19 19:25,"158 12th St, San Francisco, CA 94016" -199724,Lightning Charging Cable,1,14.95,05/02/19 22:35,"896 8th St, Portland, OR 97035" -199725,AAA Batteries (4-pack),1,2.99,05/22/19 20:50,"315 Willow St, San Francisco, CA 94016" -199726,AAA Batteries (4-pack),1,2.99,05/17/19 20:38,"636 Cedar St, Boston, MA 02215" -199727,Apple Airpods Headphones,1,150,05/18/19 23:16,"917 Walnut St, Dallas, TX 75001" -199728,Bose SoundSport Headphones,1,99.99,05/08/19 07:13,"407 2nd St, San Francisco, CA 94016" -199728,Macbook Pro Laptop,1,1700,05/08/19 07:13,"407 2nd St, San Francisco, CA 94016" -199729,AAA Batteries (4-pack),1,2.99,05/21/19 19:14,"875 North St, San Francisco, CA 94016" -199730,Lightning Charging Cable,1,14.95,05/25/19 12:45,"329 7th St, New York City, NY 10001" -199731,Bose SoundSport Headphones,1,99.99,05/01/19 13:37,"722 Lake St, San Francisco, CA 94016" -199732,Wired Headphones,1,11.99,05/04/19 17:47,"146 Wilson St, San Francisco, CA 94016" -199733,Lightning Charging Cable,1,14.95,05/27/19 23:48,"191 Willow St, San Francisco, CA 94016" -199734,AA Batteries (4-pack),1,3.84,05/03/19 19:44,"426 5th St, Austin, TX 73301" -199735,27in FHD Monitor,1,149.99,05/28/19 13:24,"729 Wilson St, Los Angeles, CA 90001" -199736,Macbook Pro Laptop,1,1700,05/12/19 10:43,"307 6th St, Boston, MA 02215" -199737,Bose SoundSport Headphones,1,99.99,05/13/19 20:30,"316 Cherry St, Dallas, TX 75001" -199738,20in Monitor,1,109.99,05/21/19 20:52,"621 Highland St, Dallas, TX 75001" -199738,Flatscreen TV,1,300,05/21/19 20:52,"621 Highland St, Dallas, TX 75001" -199739,Lightning Charging Cable,1,14.95,05/24/19 15:37,"144 Hickory St, San Francisco, CA 94016" -199740,Lightning Charging Cable,1,14.95,05/30/19 18:05,"802 4th St, New York City, NY 10001" -199741,Wired Headphones,1,11.99,05/18/19 09:42,"404 Center St, Los Angeles, CA 90001" -199742,AAA Batteries (4-pack),4,2.99,05/09/19 21:34,"666 Hill St, New York City, NY 10001" -199743,Apple Airpods Headphones,1,150,05/21/19 14:58,"605 River St, Seattle, WA 98101" -199744,USB-C Charging Cable,1,11.95,05/11/19 14:43,"612 Pine St, Los Angeles, CA 90001" -199745,Wired Headphones,1,11.99,05/27/19 10:54,"397 7th St, Los Angeles, CA 90001" -199746,iPhone,1,700,05/29/19 03:19,"572 1st St, Portland, ME 04101" -199746,Wired Headphones,1,11.99,05/29/19 03:19,"572 1st St, Portland, ME 04101" -199747,AAA Batteries (4-pack),1,2.99,05/02/19 13:13,"180 West St, San Francisco, CA 94016" -199748,AA Batteries (4-pack),1,3.84,05/11/19 08:30,"409 Main St, Atlanta, GA 30301" -199748,20in Monitor,1,109.99,05/11/19 08:30,"409 Main St, Atlanta, GA 30301" -199749,AA Batteries (4-pack),1,3.84,05/07/19 18:45,"931 12th St, Seattle, WA 98101" -199750,AA Batteries (4-pack),1,3.84,05/11/19 08:30,"190 River St, Portland, OR 97035" -199751,AAA Batteries (4-pack),2,2.99,05/05/19 19:04,"222 8th St, San Francisco, CA 94016" -199752,ThinkPad Laptop,1,999.99,05/20/19 22:28,"463 7th St, Boston, MA 02215" -199753,AAA Batteries (4-pack),5,2.99,05/20/19 21:00,"16 7th St, San Francisco, CA 94016" -199754,Lightning Charging Cable,1,14.95,05/28/19 10:24,"340 Lakeview St, Los Angeles, CA 90001" -199755,USB-C Charging Cable,1,11.95,05/15/19 21:41,"282 13th St, Boston, MA 02215" -199756,Wired Headphones,1,11.99,05/10/19 12:04,"20 West St, Los Angeles, CA 90001" -199757,AA Batteries (4-pack),1,3.84,05/08/19 18:56,"951 7th St, Dallas, TX 75001" -199758,Apple Airpods Headphones,1,150,05/19/19 18:17,"563 9th St, Dallas, TX 75001" -199759,Bose SoundSport Headphones,1,99.99,05/06/19 12:42,"546 Hill St, Dallas, TX 75001" -199760,Lightning Charging Cable,1,14.95,05/15/19 15:51,"316 Hill St, San Francisco, CA 94016" -199761,Apple Airpods Headphones,1,150,05/19/19 07:02,"858 Cherry St, Seattle, WA 98101" -199762,Lightning Charging Cable,1,14.95,05/21/19 10:01,"762 Washington St, Boston, MA 02215" -199763,AA Batteries (4-pack),2,3.84,05/16/19 12:53,"639 Walnut St, San Francisco, CA 94016" -199764,Lightning Charging Cable,1,14.95,05/20/19 10:20,"83 6th St, Los Angeles, CA 90001" -199765,Apple Airpods Headphones,1,150,05/31/19 11:20,"509 Dogwood St, New York City, NY 10001" -199766,iPhone,1,700,05/14/19 10:43,"451 Center St, Seattle, WA 98101" -199767,Wired Headphones,1,11.99,05/28/19 01:06,"661 Hill St, Portland, OR 97035" -199767,27in FHD Monitor,1,149.99,05/28/19 01:06,"661 Hill St, Portland, OR 97035" -199768,27in FHD Monitor,1,149.99,05/06/19 19:26,"127 Park St, Los Angeles, CA 90001" -199769,27in 4K Gaming Monitor,1,389.99,05/28/19 12:04,"132 West St, Los Angeles, CA 90001" -199770,Lightning Charging Cable,1,14.95,05/17/19 21:01,"2 Elm St, New York City, NY 10001" -199771,27in FHD Monitor,1,149.99,05/30/19 17:58,"764 Cedar St, Los Angeles, CA 90001" -199772,Lightning Charging Cable,1,14.95,05/07/19 16:53,"553 Meadow St, Seattle, WA 98101" -199773,Apple Airpods Headphones,1,150,05/29/19 15:23,"952 4th St, Los Angeles, CA 90001" -199774,Macbook Pro Laptop,1,1700,05/26/19 20:50,"849 Johnson St, Portland, OR 97035" -199775,Wired Headphones,1,11.99,05/30/19 17:54,"601 1st St, San Francisco, CA 94016" -199776,20in Monitor,1,109.99,05/12/19 19:18,"401 Willow St, Boston, MA 02215" -199777,Lightning Charging Cable,1,14.95,05/31/19 00:34,"317 11th St, New York City, NY 10001" -199778,Apple Airpods Headphones,1,150,05/23/19 16:55,"251 12th St, Atlanta, GA 30301" -199779,ThinkPad Laptop,1,999.99,05/01/19 22:38,"786 Lincoln St, Boston, MA 02215" -199780,Lightning Charging Cable,1,14.95,05/08/19 15:52,"404 Willow St, Los Angeles, CA 90001" -199781,AAA Batteries (4-pack),2,2.99,05/09/19 13:47,"151 Elm St, Portland, OR 97035" -199781,Apple Airpods Headphones,1,150,05/09/19 13:47,"151 Elm St, Portland, OR 97035" -199782,Bose SoundSport Headphones,1,99.99,05/07/19 08:39,"174 Sunset St, Atlanta, GA 30301" -199783,USB-C Charging Cable,1,11.95,05/03/19 09:30,"789 Chestnut St, San Francisco, CA 94016" -199784,Google Phone,1,600,05/01/19 18:32,"995 Center St, San Francisco, CA 94016" -199785,USB-C Charging Cable,1,11.95,05/06/19 14:59,"780 8th St, Dallas, TX 75001" -199786,AAA Batteries (4-pack),1,2.99,05/01/19 10:17,"190 Hickory St, Dallas, TX 75001" -199787,Lightning Charging Cable,1,14.95,05/18/19 07:15,"703 Washington St, Los Angeles, CA 90001" -199788,AA Batteries (4-pack),2,3.84,05/26/19 12:30,"153 South St, Seattle, WA 98101" -199789,20in Monitor,1,109.99,05/01/19 10:15,"625 13th St, Atlanta, GA 30301" -199790,USB-C Charging Cable,1,11.95,05/14/19 11:14,"666 Johnson St, Los Angeles, CA 90001" -199791,Apple Airpods Headphones,1,150,05/12/19 17:17,"19 Hill St, Portland, OR 97035" -199792,AA Batteries (4-pack),1,3.84,05/23/19 17:49,"675 Chestnut St, Seattle, WA 98101" -199793,USB-C Charging Cable,1,11.95,05/06/19 17:26,"831 Forest St, Dallas, TX 75001" -199794,34in Ultrawide Monitor,1,379.99,05/03/19 00:31,"451 Jackson St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -199795,iPhone,1,700,05/08/19 20:41,"178 Main St, Seattle, WA 98101" -199796,AAA Batteries (4-pack),1,2.99,05/31/19 10:35,"339 12th St, Austin, TX 73301" -199797,Lightning Charging Cable,1,14.95,05/23/19 23:37,"416 Meadow St, New York City, NY 10001" -199798,iPhone,1,700,05/28/19 21:42,"892 Johnson St, Los Angeles, CA 90001" -199799,Wired Headphones,1,11.99,05/02/19 23:06,"612 Lincoln St, Portland, OR 97035" -199800,AAA Batteries (4-pack),2,2.99,05/04/19 20:53,"511 11th St, Boston, MA 02215" -199801,Bose SoundSport Headphones,1,99.99,05/14/19 10:43,"606 Hickory St, Dallas, TX 75001" -199802,AA Batteries (4-pack),1,3.84,05/24/19 10:13,"579 Lake St, Seattle, WA 98101" -199803,AA Batteries (4-pack),1,3.84,05/06/19 22:51,"950 6th St, Boston, MA 02215" -199804,Lightning Charging Cable,1,14.95,05/30/19 20:45,"527 12th St, Boston, MA 02215" -199805,Bose SoundSport Headphones,1,99.99,05/11/19 10:04,"140 5th St, New York City, NY 10001" -199806,AA Batteries (4-pack),1,3.84,05/05/19 12:09,"387 Maple St, Atlanta, GA 30301" -199807,AAA Batteries (4-pack),1,2.99,05/26/19 13:00,"829 Ridge St, San Francisco, CA 94016" -199808,AAA Batteries (4-pack),5,2.99,05/08/19 09:51,"219 Lake St, Austin, TX 73301" -199809,Lightning Charging Cable,1,14.95,05/12/19 22:36,"180 Center St, Dallas, TX 75001" -199810,27in 4K Gaming Monitor,1,389.99,05/17/19 10:56,"581 Spruce St, San Francisco, CA 94016" -199811,27in 4K Gaming Monitor,1,389.99,05/29/19 19:10,"332 11th St, Atlanta, GA 30301" -199812,AAA Batteries (4-pack),1,2.99,05/08/19 15:51,"791 Jefferson St, San Francisco, CA 94016" -199813,iPhone,1,700,05/29/19 17:27,"989 2nd St, Los Angeles, CA 90001" -199814,Macbook Pro Laptop,1,1700,05/02/19 20:25,"709 North St, San Francisco, CA 94016" -199815,27in FHD Monitor,1,149.99,05/15/19 09:45,"817 7th St, San Francisco, CA 94016" -199816,AA Batteries (4-pack),1,3.84,05/07/19 12:24,"36 Walnut St, Los Angeles, CA 90001" -199817,Apple Airpods Headphones,1,150,05/30/19 21:23,"499 Maple St, Austin, TX 73301" -199818,Apple Airpods Headphones,1,150,05/09/19 23:26,"993 Willow St, New York City, NY 10001" -199819,Macbook Pro Laptop,1,1700,05/04/19 12:54,"820 North St, Dallas, TX 75001" -199820,Macbook Pro Laptop,1,1700,05/03/19 20:44,"286 4th St, San Francisco, CA 94016" -199821,34in Ultrawide Monitor,1,379.99,05/18/19 14:10,"721 Johnson St, Dallas, TX 75001" -199822,USB-C Charging Cable,1,11.95,05/21/19 14:51,"598 Pine St, Dallas, TX 75001" -199823,AA Batteries (4-pack),2,3.84,05/21/19 07:49,"73 Washington St, Boston, MA 02215" -199824,ThinkPad Laptop,1,999.99,05/03/19 07:45,"677 4th St, Dallas, TX 75001" -199825,34in Ultrawide Monitor,1,379.99,05/23/19 22:21,"467 5th St, Portland, ME 04101" -199826,Lightning Charging Cable,1,14.95,05/13/19 19:19,"123 2nd St, Austin, TX 73301" -199827,Wired Headphones,1,11.99,05/19/19 08:51,"258 Elm St, Austin, TX 73301" -199828,Wired Headphones,2,11.99,05/17/19 19:29,"575 13th St, Atlanta, GA 30301" -199829,AA Batteries (4-pack),2,3.84,05/15/19 02:33,"8 14th St, Seattle, WA 98101" -199830,ThinkPad Laptop,1,999.99,05/02/19 22:23,"436 Walnut St, San Francisco, CA 94016" -199831,34in Ultrawide Monitor,1,379.99,05/05/19 15:58,"310 2nd St, New York City, NY 10001" -199832,USB-C Charging Cable,1,11.95,05/09/19 00:28,"700 Jackson St, New York City, NY 10001" -199833,27in 4K Gaming Monitor,1,389.99,05/31/19 12:24,"306 West St, Boston, MA 02215" -199834,AAA Batteries (4-pack),5,2.99,05/07/19 11:34,"782 South St, Los Angeles, CA 90001" -199835,Wired Headphones,1,11.99,05/13/19 16:25,"467 12th St, Los Angeles, CA 90001" -199836,Bose SoundSport Headphones,1,99.99,05/26/19 10:57,"215 Sunset St, San Francisco, CA 94016" -199837,Lightning Charging Cable,1,14.95,05/08/19 13:17,"636 Washington St, San Francisco, CA 94016" -199838,USB-C Charging Cable,2,11.95,05/19/19 16:06,"929 Lincoln St, Seattle, WA 98101" -199839,USB-C Charging Cable,1,11.95,05/22/19 19:01,"918 1st St, San Francisco, CA 94016" -199840,AAA Batteries (4-pack),2,2.99,05/10/19 14:11,"596 Lakeview St, New York City, NY 10001" -199841,Wired Headphones,1,11.99,05/23/19 18:07,"978 Washington St, New York City, NY 10001" -199842,34in Ultrawide Monitor,1,379.99,05/13/19 11:55,"742 Sunset St, Boston, MA 02215" -199843,Lightning Charging Cable,1,14.95,05/09/19 11:38,"622 Dogwood St, San Francisco, CA 94016" -199844,20in Monitor,1,109.99,05/09/19 12:32,"124 1st St, New York City, NY 10001" -199845,AA Batteries (4-pack),1,3.84,05/27/19 14:11,"605 Jackson St, San Francisco, CA 94016" -199846,AAA Batteries (4-pack),2,2.99,05/11/19 19:17,"557 Lake St, San Francisco, CA 94016" -199847,AA Batteries (4-pack),1,3.84,05/08/19 21:20,"475 11th St, San Francisco, CA 94016" -199848,AA Batteries (4-pack),2,3.84,05/15/19 13:21,"205 Main St, Seattle, WA 98101" -199849,Vareebadd Phone,1,400,05/07/19 13:57,"786 West St, Seattle, WA 98101" -199849,USB-C Charging Cable,1,11.95,05/07/19 13:57,"786 West St, Seattle, WA 98101" -199850,ThinkPad Laptop,1,999.99,05/25/19 21:56,"62 Washington St, Los Angeles, CA 90001" -199851,27in 4K Gaming Monitor,1,389.99,05/28/19 21:39,"858 Church St, New York City, NY 10001" -199852,AAA Batteries (4-pack),1,2.99,05/03/19 21:07,"18 River St, San Francisco, CA 94016" -199853,Bose SoundSport Headphones,1,99.99,05/27/19 11:14,"932 Chestnut St, New York City, NY 10001" -199854,Apple Airpods Headphones,1,150,05/26/19 19:24,"812 2nd St, Los Angeles, CA 90001" -199855,Bose SoundSport Headphones,1,99.99,05/23/19 10:39,"836 Meadow St, Portland, OR 97035" -199856,Apple Airpods Headphones,1,150,05/10/19 18:58,"348 5th St, Portland, ME 04101" -199857,Lightning Charging Cable,1,14.95,05/01/19 11:08,"448 Lincoln St, San Francisco, CA 94016" -199858,34in Ultrawide Monitor,1,379.99,05/04/19 13:13,"867 13th St, Boston, MA 02215" -199859,USB-C Charging Cable,2,11.95,05/03/19 08:43,"315 Highland St, San Francisco, CA 94016" -199860,27in FHD Monitor,1,149.99,05/17/19 10:12,"870 Spruce St, Los Angeles, CA 90001" -199861,Lightning Charging Cable,1,14.95,05/05/19 20:46,"537 Center St, San Francisco, CA 94016" -199862,27in FHD Monitor,1,149.99,05/25/19 20:40,"882 Lincoln St, Los Angeles, CA 90001" -199863,Lightning Charging Cable,1,14.95,05/10/19 10:35,"219 Walnut St, San Francisco, CA 94016" -199864,iPhone,1,700,05/03/19 11:35,"821 Dogwood St, Los Angeles, CA 90001" -199865,AAA Batteries (4-pack),1,2.99,05/13/19 21:03,"197 5th St, Los Angeles, CA 90001" -199866,Apple Airpods Headphones,1,150,05/02/19 22:42,"56 Center St, San Francisco, CA 94016" -199867,AAA Batteries (4-pack),2,2.99,05/25/19 21:49,"607 9th St, Los Angeles, CA 90001" -199868,34in Ultrawide Monitor,1,379.99,05/12/19 23:18,"572 8th St, Los Angeles, CA 90001" -199869,Apple Airpods Headphones,1,150,05/01/19 21:19,"681 Jackson St, New York City, NY 10001" -199870,Wired Headphones,1,11.99,05/09/19 09:37,"16 14th St, Los Angeles, CA 90001" -199871,LG Washing Machine,1,600.0,05/10/19 15:11,"721 Hickory St, Portland, OR 97035" -199872,Wired Headphones,1,11.99,05/07/19 22:26,"771 13th St, Los Angeles, CA 90001" -199873,iPhone,1,700,05/20/19 13:18,"439 Highland St, San Francisco, CA 94016" -199874,AA Batteries (4-pack),1,3.84,05/28/19 20:02,"217 Cedar St, Portland, OR 97035" -199875,Lightning Charging Cable,1,14.95,05/19/19 12:13,"593 Lakeview St, Dallas, TX 75001" -199876,Lightning Charging Cable,1,14.95,05/18/19 18:16,"673 12th St, San Francisco, CA 94016" -199877,20in Monitor,1,109.99,05/08/19 20:45,"719 Park St, New York City, NY 10001" -199878,Google Phone,1,600,05/10/19 23:42,"996 2nd St, Dallas, TX 75001" -199878,Wired Headphones,1,11.99,05/10/19 23:42,"996 2nd St, Dallas, TX 75001" -199879,AAA Batteries (4-pack),1,2.99,05/20/19 10:38,"824 Park St, Los Angeles, CA 90001" -199880,Lightning Charging Cable,1,14.95,05/25/19 11:25,"743 9th St, Austin, TX 73301" -199881,ThinkPad Laptop,1,999.99,05/24/19 19:10,"429 Forest St, Boston, MA 02215" -199882,20in Monitor,1,109.99,05/25/19 09:07,"190 Park St, San Francisco, CA 94016" -199883,AA Batteries (4-pack),1,3.84,05/24/19 08:57,"761 Jackson St, Atlanta, GA 30301" -199884,AA Batteries (4-pack),1,3.84,05/23/19 18:29,"96 Wilson St, Los Angeles, CA 90001" -199885,27in 4K Gaming Monitor,1,389.99,05/02/19 11:04,"297 Lincoln St, New York City, NY 10001" -199886,Lightning Charging Cable,1,14.95,05/02/19 18:42,"452 Church St, Dallas, TX 75001" -199887,AA Batteries (4-pack),1,3.84,05/17/19 08:53,"185 Church St, New York City, NY 10001" -199888,Lightning Charging Cable,1,14.95,05/09/19 08:35,"491 Highland St, San Francisco, CA 94016" -199889,34in Ultrawide Monitor,1,379.99,05/15/19 07:53,"664 11th St, Austin, TX 73301" -199890,USB-C Charging Cable,1,11.95,05/31/19 18:28,"783 Adams St, Boston, MA 02215" -199891,34in Ultrawide Monitor,1,379.99,05/30/19 17:39,"252 Adams St, Boston, MA 02215" -199892,LG Dryer,1,600.0,05/28/19 17:33,"125 14th St, Los Angeles, CA 90001" -199893,AAA Batteries (4-pack),1,2.99,05/23/19 14:50,"716 5th St, San Francisco, CA 94016" -199894,Wired Headphones,1,11.99,05/05/19 23:08,"428 14th St, Seattle, WA 98101" -199895,iPhone,1,700,05/29/19 16:16,"333 West St, San Francisco, CA 94016" -199896,Bose SoundSport Headphones,1,99.99,05/15/19 16:09,"734 Chestnut St, Dallas, TX 75001" -199897,Wired Headphones,1,11.99,05/13/19 20:32,"455 Washington St, San Francisco, CA 94016" -199898,ThinkPad Laptop,1,999.99,05/08/19 16:05,"249 12th St, Austin, TX 73301" -199899,Bose SoundSport Headphones,1,99.99,05/03/19 16:11,"395 Forest St, Austin, TX 73301" -199899,Flatscreen TV,1,300,05/03/19 16:11,"395 Forest St, Austin, TX 73301" -199900,27in 4K Gaming Monitor,1,389.99,05/02/19 08:25,"447 Ridge St, Dallas, TX 75001" -199901,Google Phone,1,600,05/30/19 00:01,"384 Maple St, Los Angeles, CA 90001" -199902,AA Batteries (4-pack),1,3.84,05/13/19 14:56,"721 Dogwood St, Los Angeles, CA 90001" -199903,Google Phone,1,600,05/22/19 16:49,"813 Hill St, New York City, NY 10001" -199904,AA Batteries (4-pack),1,3.84,05/08/19 12:07,"61 Cedar St, Atlanta, GA 30301" -199905,20in Monitor,1,109.99,05/09/19 07:12,"606 4th St, New York City, NY 10001" -199906,AA Batteries (4-pack),2,3.84,05/16/19 20:57,"60 7th St, New York City, NY 10001" -199907,Bose SoundSport Headphones,1,99.99,05/20/19 17:44,"252 Walnut St, Boston, MA 02215" -199908,Wired Headphones,1,11.99,05/30/19 17:33,"719 Church St, Dallas, TX 75001" -199909,AAA Batteries (4-pack),1,2.99,05/09/19 10:59,"322 Hill St, Boston, MA 02215" -199910,Wired Headphones,1,11.99,05/14/19 07:45,"758 Highland St, New York City, NY 10001" -199911,Google Phone,1,600,05/29/19 19:28,"650 Cedar St, Boston, MA 02215" -199912,Wired Headphones,1,11.99,05/09/19 20:57,"948 Main St, Seattle, WA 98101" -199913,AA Batteries (4-pack),1,3.84,05/12/19 15:37,"543 Chestnut St, Los Angeles, CA 90001" -199914,Lightning Charging Cable,1,14.95,05/30/19 17:39,"753 12th St, New York City, NY 10001" -199915,AAA Batteries (4-pack),1,2.99,05/21/19 14:34,"318 Willow St, New York City, NY 10001" -199916,Bose SoundSport Headphones,1,99.99,05/20/19 12:34,"350 Dogwood St, Seattle, WA 98101" -199917,34in Ultrawide Monitor,1,379.99,05/10/19 16:01,"230 10th St, New York City, NY 10001" -199918,AAA Batteries (4-pack),1,2.99,05/30/19 11:18,"712 Maple St, New York City, NY 10001" -199919,USB-C Charging Cable,1,11.95,05/27/19 19:29,"405 Ridge St, Portland, OR 97035" -199920,Wired Headphones,1,11.99,05/12/19 22:34,"965 Pine St, Los Angeles, CA 90001" -199921,Lightning Charging Cable,1,14.95,05/03/19 08:46,"260 West St, Los Angeles, CA 90001" -199922,AA Batteries (4-pack),1,3.84,05/31/19 10:06,"521 Cherry St, San Francisco, CA 94016" -199923,AAA Batteries (4-pack),1,2.99,05/18/19 10:44,"350 Maple St, Los Angeles, CA 90001" -199924,iPhone,1,700,05/25/19 13:41,"498 9th St, San Francisco, CA 94016" -199924,Apple Airpods Headphones,1,150,05/25/19 13:41,"498 9th St, San Francisco, CA 94016" -199925,Bose SoundSport Headphones,1,99.99,05/19/19 13:59,"643 Forest St, New York City, NY 10001" -199926,27in FHD Monitor,1,149.99,05/08/19 21:07,"116 Pine St, San Francisco, CA 94016" -199927,USB-C Charging Cable,1,11.95,05/18/19 09:45,"481 Washington St, Los Angeles, CA 90001" -199928,Wired Headphones,1,11.99,05/17/19 13:30,"861 Highland St, Austin, TX 73301" -199929,Google Phone,1,600,05/02/19 15:34,"61 2nd St, San Francisco, CA 94016" -199930,Macbook Pro Laptop,1,1700,05/16/19 06:30,"916 Dogwood St, Dallas, TX 75001" -199931,USB-C Charging Cable,1,11.95,05/02/19 12:36,"23 2nd St, San Francisco, CA 94016" -199932,AAA Batteries (4-pack),1,2.99,05/31/19 17:24,"140 Ridge St, Boston, MA 02215" -199933,AA Batteries (4-pack),1,3.84,05/10/19 16:47,"773 River St, New York City, NY 10001" -199934,AAA Batteries (4-pack),1,2.99,05/09/19 23:01,"676 Ridge St, Dallas, TX 75001" -199935,Lightning Charging Cable,1,14.95,05/05/19 18:21,"3 Forest St, Atlanta, GA 30301" -199936,AAA Batteries (4-pack),4,2.99,05/09/19 08:51,"215 Elm St, Dallas, TX 75001" -199937,USB-C Charging Cable,1,11.95,05/13/19 17:00,"318 Lincoln St, Los Angeles, CA 90001" -199938,Apple Airpods Headphones,1,150,05/04/19 19:28,"657 Ridge St, New York City, NY 10001" -199939,20in Monitor,1,109.99,05/15/19 10:36,"131 Forest St, Boston, MA 02215" -199940,Lightning Charging Cable,1,14.95,05/21/19 18:24,"205 Ridge St, Los Angeles, CA 90001" -199941,AAA Batteries (4-pack),5,2.99,05/28/19 23:08,"622 Jackson St, Boston, MA 02215" -199942,Lightning Charging Cable,1,14.95,05/27/19 14:08,"35 Lake St, Boston, MA 02215" -199943,Apple Airpods Headphones,1,150,05/03/19 17:06,"713 14th St, Los Angeles, CA 90001" -199944,Google Phone,1,600,05/19/19 15:58,"862 Cherry St, Atlanta, GA 30301" -,,,,, -199945,iPhone,1,700,05/11/19 07:47,"600 Jackson St, Atlanta, GA 30301" -199946,20in Monitor,1,109.99,05/16/19 10:03,"132 Meadow St, San Francisco, CA 94016" -199947,USB-C Charging Cable,2,11.95,05/24/19 18:52,"881 Cedar St, Los Angeles, CA 90001" -199948,AAA Batteries (4-pack),1,2.99,05/09/19 16:02,"892 2nd St, Los Angeles, CA 90001" -199948,AAA Batteries (4-pack),1,2.99,05/09/19 16:02,"892 2nd St, Los Angeles, CA 90001" -199949,Apple Airpods Headphones,1,150,05/07/19 13:40,"944 10th St, New York City, NY 10001" -199950,Bose SoundSport Headphones,1,99.99,05/08/19 18:46,"444 Willow St, Boston, MA 02215" -199951,iPhone,1,700,05/23/19 18:44,"922 2nd St, San Francisco, CA 94016" -199951,Wired Headphones,1,11.99,05/23/19 18:44,"922 2nd St, San Francisco, CA 94016" -199952,27in FHD Monitor,1,149.99,05/23/19 09:12,"479 Willow St, San Francisco, CA 94016" -199953,Lightning Charging Cable,1,14.95,05/05/19 10:50,"436 Cedar St, Seattle, WA 98101" -199954,Wired Headphones,1,11.99,05/01/19 06:51,"424 North St, Los Angeles, CA 90001" -199955,27in 4K Gaming Monitor,1,389.99,05/03/19 16:33,"65 9th St, Seattle, WA 98101" -199956,iPhone,1,700,05/18/19 18:09,"472 Cedar St, Boston, MA 02215" -199957,20in Monitor,1,109.99,05/05/19 14:08,"793 1st St, San Francisco, CA 94016" -199958,Bose SoundSport Headphones,1,99.99,05/19/19 20:16,"361 River St, San Francisco, CA 94016" -199959,ThinkPad Laptop,1,999.99,05/17/19 10:19,"177 Pine St, San Francisco, CA 94016" -199960,USB-C Charging Cable,1,11.95,05/29/19 09:38,"770 Ridge St, San Francisco, CA 94016" -199961,USB-C Charging Cable,2,11.95,05/15/19 00:38,"505 5th St, Los Angeles, CA 90001" -199962,27in FHD Monitor,1,149.99,05/16/19 10:28,"70 5th St, Boston, MA 02215" -199963,27in FHD Monitor,1,149.99,05/05/19 14:18,"863 Church St, Los Angeles, CA 90001" -199964,27in 4K Gaming Monitor,1,389.99,05/10/19 12:17,"693 North St, San Francisco, CA 94016" -199965,Macbook Pro Laptop,1,1700,05/29/19 17:14,"241 Lake St, Los Angeles, CA 90001" -199966,34in Ultrawide Monitor,1,379.99,05/01/19 13:32,"350 Lincoln St, New York City, NY 10001" -199967,AA Batteries (4-pack),3,3.84,05/24/19 12:05,"603 Cedar St, Austin, TX 73301" -199968,Flatscreen TV,1,300,05/21/19 17:58,"564 Lakeview St, Dallas, TX 75001" -199969,Lightning Charging Cable,1,14.95,05/01/19 16:46,"415 12th St, Boston, MA 02215" -199970,USB-C Charging Cable,1,11.95,05/17/19 18:10,"125 Center St, Atlanta, GA 30301" -199971,Apple Airpods Headphones,1,150,05/10/19 23:15,"61 South St, Boston, MA 02215" -199972,Flatscreen TV,1,300,05/21/19 22:17,"190 South St, Portland, ME 04101" -199973,Apple Airpods Headphones,1,150,05/20/19 14:09,"485 Chestnut St, Atlanta, GA 30301" -199974,Wired Headphones,1,11.99,05/29/19 17:27,"140 Highland St, Boston, MA 02215" -199975,Wired Headphones,1,11.99,05/15/19 05:43,"161 10th St, San Francisco, CA 94016" -199976,LG Dryer,1,600.0,05/07/19 22:58,"214 Park St, Atlanta, GA 30301" -199977,Macbook Pro Laptop,1,1700,05/05/19 20:34,"741 8th St, San Francisco, CA 94016" -199978,27in FHD Monitor,1,149.99,05/20/19 18:54,"532 Madison St, New York City, NY 10001" -199979,Wired Headphones,1,11.99,05/13/19 14:39,"340 Meadow St, New York City, NY 10001" -199980,USB-C Charging Cable,1,11.95,05/01/19 23:53,"759 Center St, Dallas, TX 75001" -199981,iPhone,1,700,05/08/19 11:46,"225 Lake St, San Francisco, CA 94016" -199982,Google Phone,1,600,05/08/19 19:46,"566 7th St, New York City, NY 10001" -199982,USB-C Charging Cable,1,11.95,05/08/19 19:46,"566 7th St, New York City, NY 10001" -199983,Wired Headphones,1,11.99,05/16/19 11:01,"636 Elm St, Boston, MA 02215" -199984,Lightning Charging Cable,1,14.95,05/29/19 19:49,"119 North St, New York City, NY 10001" -199985,iPhone,1,700,05/17/19 12:30,"107 Meadow St, Los Angeles, CA 90001" -199986,Apple Airpods Headphones,1,150,05/17/19 20:31,"987 Cedar St, New York City, NY 10001" -199987,Lightning Charging Cable,1,14.95,05/07/19 02:40,"738 Johnson St, Atlanta, GA 30301" -199988,Wired Headphones,1,11.99,05/22/19 16:56,"81 Walnut St, Portland, OR 97035" -199989,Lightning Charging Cable,1,14.95,05/12/19 02:34,"615 Madison St, Seattle, WA 98101" -199990,AAA Batteries (4-pack),2,2.99,05/24/19 08:56,"519 Highland St, San Francisco, CA 94016" -199991,Lightning Charging Cable,1,14.95,05/01/19 12:24,"780 Johnson St, Austin, TX 73301" -199992,Wired Headphones,1,11.99,05/01/19 12:52,"658 Ridge St, Dallas, TX 75001" -199993,USB-C Charging Cable,1,11.95,05/13/19 12:57,"670 Lincoln St, New York City, NY 10001" -199994,Google Phone,1,600,05/05/19 12:27,"383 14th St, New York City, NY 10001" -199994,USB-C Charging Cable,1,11.95,05/05/19 12:27,"383 14th St, New York City, NY 10001" -199995,USB-C Charging Cable,1,11.95,05/15/19 11:22,"230 Center St, Los Angeles, CA 90001" -199996,Google Phone,1,600,05/26/19 15:16,"615 Highland St, San Francisco, CA 94016" -199997,Google Phone,1,600,05/10/19 17:18,"40 Madison St, Austin, TX 73301" -199998,AA Batteries (4-pack),1,3.84,05/06/19 15:40,"682 Ridge St, Portland, ME 04101" -199999,AA Batteries (4-pack),2,3.84,05/08/19 17:47,"339 North St, Portland, ME 04101" -200000,USB-C Charging Cable,1,11.95,05/31/19 21:24,"547 Jackson St, San Francisco, CA 94016" -200001,34in Ultrawide Monitor,1,379.99,05/17/19 12:50,"210 5th St, Atlanta, GA 30301" -200002,Vareebadd Phone,1,400,05/25/19 19:58,"71 Center St, Atlanta, GA 30301" -200003,Bose SoundSport Headphones,1,99.99,05/17/19 20:14,"328 8th St, San Francisco, CA 94016" -200004,iPhone,1,700,05/02/19 18:04,"74 River St, Los Angeles, CA 90001" -200005,USB-C Charging Cable,1,11.95,05/29/19 20:39,"461 6th St, Dallas, TX 75001" -200006,AA Batteries (4-pack),1,3.84,05/10/19 23:23,"629 14th St, Los Angeles, CA 90001" -200007,AAA Batteries (4-pack),1,2.99,05/22/19 02:17,"511 Lakeview St, Los Angeles, CA 90001" -200008,Lightning Charging Cable,1,14.95,05/23/19 19:53,"340 Johnson St, San Francisco, CA 94016" -200009,Macbook Pro Laptop,1,1700,05/15/19 01:34,"925 Madison St, Atlanta, GA 30301" -200010,Wired Headphones,1,11.99,05/15/19 17:31,"577 14th St, Dallas, TX 75001" -200011,Lightning Charging Cable,1,14.95,05/18/19 21:02,"693 Hill St, New York City, NY 10001" -200012,Wired Headphones,1,11.99,05/27/19 12:56,"739 Jackson St, San Francisco, CA 94016" -200013,AA Batteries (4-pack),1,3.84,05/15/19 11:05,"644 Highland St, San Francisco, CA 94016" -200014,USB-C Charging Cable,1,11.95,05/04/19 18:25,"17 Willow St, Atlanta, GA 30301" -200015,USB-C Charging Cable,1,11.95,05/01/19 15:19,"23 Johnson St, Atlanta, GA 30301" -200016,27in FHD Monitor,1,149.99,05/17/19 19:35,"437 1st St, Boston, MA 02215" -200017,AA Batteries (4-pack),1,3.84,05/23/19 15:15,"267 North St, Austin, TX 73301" -200018,AA Batteries (4-pack),1,3.84,05/03/19 22:34,"699 Main St, San Francisco, CA 94016" -200019,27in FHD Monitor,1,149.99,05/16/19 16:17,"987 Jefferson St, San Francisco, CA 94016" -200020,Lightning Charging Cable,1,14.95,05/16/19 09:12,"386 Spruce St, Seattle, WA 98101" -200021,Macbook Pro Laptop,1,1700,05/24/19 20:54,"333 Chestnut St, Boston, MA 02215" -200022,AAA Batteries (4-pack),2,2.99,05/22/19 22:44,"611 5th St, San Francisco, CA 94016" -200023,USB-C Charging Cable,1,11.95,05/07/19 12:19,"456 Chestnut St, Los Angeles, CA 90001" -200024,Wired Headphones,1,11.99,05/23/19 18:46,"222 Center St, Boston, MA 02215" -200025,Apple Airpods Headphones,1,150,05/19/19 15:24,"713 Cedar St, San Francisco, CA 94016" -200026,Bose SoundSport Headphones,1,99.99,05/11/19 13:28,"76 13th St, New York City, NY 10001" -200027,AA Batteries (4-pack),1,3.84,05/28/19 12:02,"868 13th St, Boston, MA 02215" -200028,USB-C Charging Cable,1,11.95,05/31/19 13:18,"591 Cedar St, New York City, NY 10001" -200029,Lightning Charging Cable,1,14.95,05/11/19 10:10,"702 9th St, Seattle, WA 98101" -200030,27in 4K Gaming Monitor,1,389.99,05/09/19 16:08,"218 Ridge St, San Francisco, CA 94016" -200031,Apple Airpods Headphones,1,150,05/04/19 15:57,"882 Chestnut St, Portland, OR 97035" -200032,Lightning Charging Cable,1,14.95,05/16/19 11:19,"252 13th St, Los Angeles, CA 90001" -200033,iPhone,1,700,05/11/19 23:03,"796 Hill St, Portland, OR 97035" -200034,AA Batteries (4-pack),1,3.84,05/15/19 14:33,"195 Forest St, Portland, OR 97035" -200035,AA Batteries (4-pack),4,3.84,05/26/19 14:50,"413 1st St, San Francisco, CA 94016" -200036,AAA Batteries (4-pack),2,2.99,05/11/19 15:13,"201 8th St, New York City, NY 10001" -200037,20in Monitor,1,109.99,05/01/19 21:47,"524 Church St, San Francisco, CA 94016" -200038,AA Batteries (4-pack),1,3.84,05/12/19 21:18,"947 West St, Dallas, TX 75001" -200039,Flatscreen TV,1,300,05/24/19 11:33,"918 12th St, Atlanta, GA 30301" -200040,Apple Airpods Headphones,1,150,05/04/19 22:24,"325 Madison St, Austin, TX 73301" -200041,USB-C Charging Cable,1,11.95,05/28/19 23:19,"563 Johnson St, Los Angeles, CA 90001" -200042,ThinkPad Laptop,1,999.99,05/25/19 13:04,"154 Hill St, Austin, TX 73301" -200043,USB-C Charging Cable,1,11.95,05/29/19 14:07,"512 Jackson St, Los Angeles, CA 90001" -200044,Lightning Charging Cable,2,14.95,05/18/19 15:29,"831 Main St, San Francisco, CA 94016" -200045,Wired Headphones,1,11.99,05/12/19 18:59,"72 2nd St, Dallas, TX 75001" -200046,27in FHD Monitor,1,149.99,05/16/19 14:49,"303 Washington St, New York City, NY 10001" -200047,iPhone,1,700,05/22/19 18:00,"272 Meadow St, San Francisco, CA 94016" -200048,AA Batteries (4-pack),2,3.84,05/26/19 21:50,"946 Willow St, Los Angeles, CA 90001" -200049,AAA Batteries (4-pack),1,2.99,05/25/19 17:35,"587 Dogwood St, Portland, OR 97035" -200050,27in FHD Monitor,1,149.99,05/29/19 15:05,"467 Maple St, Los Angeles, CA 90001" -200051,Wired Headphones,1,11.99,05/15/19 11:31,"446 Hickory St, Boston, MA 02215" -200052,Lightning Charging Cable,1,14.95,05/02/19 08:52,"692 Elm St, Seattle, WA 98101" -200053,Apple Airpods Headphones,1,150,05/16/19 23:10,"559 10th St, San Francisco, CA 94016" -200054,Flatscreen TV,1,300,05/02/19 14:24,"426 6th St, Los Angeles, CA 90001" -200055,AA Batteries (4-pack),1,3.84,05/19/19 16:14,"220 Park St, Portland, OR 97035" -200056,USB-C Charging Cable,1,11.95,05/22/19 15:50,"542 8th St, Seattle, WA 98101" -200057,Apple Airpods Headphones,1,150,05/23/19 21:42,"465 2nd St, Boston, MA 02215" -200058,Bose SoundSport Headphones,1,99.99,05/02/19 18:26,"414 Cherry St, Atlanta, GA 30301" -200059,Macbook Pro Laptop,1,1700,05/19/19 09:53,"746 Adams St, Los Angeles, CA 90001" -200060,USB-C Charging Cable,1,11.95,05/07/19 11:14,"616 Jefferson St, Los Angeles, CA 90001" -200061,Wired Headphones,1,11.99,05/03/19 15:06,"802 12th St, Atlanta, GA 30301" -200062,27in 4K Gaming Monitor,1,389.99,05/09/19 10:05,"644 Lincoln St, Austin, TX 73301" -200063,Bose SoundSport Headphones,1,99.99,05/11/19 09:36,"708 Dogwood St, Atlanta, GA 30301" -200064,AA Batteries (4-pack),1,3.84,05/27/19 21:44,"505 Lakeview St, San Francisco, CA 94016" -200065,Lightning Charging Cable,1,14.95,05/21/19 19:43,"585 Park St, Portland, OR 97035" -200066,Wired Headphones,2,11.99,05/04/19 16:10,"249 Hickory St, Los Angeles, CA 90001" -200067,Wired Headphones,1,11.99,05/07/19 01:09,"416 Lakeview St, San Francisco, CA 94016" -200068,Lightning Charging Cable,1,14.95,05/08/19 18:05,"167 10th St, Los Angeles, CA 90001" -200069,USB-C Charging Cable,1,11.95,05/12/19 14:53,"425 Dogwood St, Portland, OR 97035" -200070,Lightning Charging Cable,1,14.95,05/14/19 10:39,"728 10th St, Los Angeles, CA 90001" -200071,AA Batteries (4-pack),1,3.84,05/21/19 16:10,"667 Center St, Austin, TX 73301" -200071,AAA Batteries (4-pack),2,2.99,05/21/19 16:10,"667 Center St, Austin, TX 73301" -200072,AA Batteries (4-pack),1,3.84,05/20/19 12:01,"897 Washington St, Boston, MA 02215" -200073,LG Washing Machine,1,600.0,05/03/19 19:03,"794 13th St, New York City, NY 10001" -200074,Bose SoundSport Headphones,1,99.99,05/17/19 15:29,"117 Main St, Los Angeles, CA 90001" -200075,USB-C Charging Cable,2,11.95,05/24/19 13:34,"810 Dogwood St, Dallas, TX 75001" -200076,20in Monitor,1,109.99,05/31/19 15:03,"104 Walnut St, Atlanta, GA 30301" -200077,USB-C Charging Cable,1,11.95,05/02/19 23:16,"979 9th St, Seattle, WA 98101" -200078,USB-C Charging Cable,1,11.95,05/14/19 18:21,"807 Sunset St, Boston, MA 02215" -200079,Bose SoundSport Headphones,1,99.99,05/11/19 10:57,"907 North St, Dallas, TX 75001" -200079,AA Batteries (4-pack),1,3.84,05/11/19 10:57,"907 North St, Dallas, TX 75001" -200080,Lightning Charging Cable,1,14.95,05/23/19 19:53,"654 12th St, Seattle, WA 98101" -200081,Lightning Charging Cable,1,14.95,05/31/19 19:47,"692 Walnut St, Atlanta, GA 30301" -200082,Lightning Charging Cable,1,14.95,05/05/19 15:59,"558 5th St, Los Angeles, CA 90001" -200083,27in FHD Monitor,1,149.99,05/05/19 14:56,"579 5th St, Boston, MA 02215" -200084,Apple Airpods Headphones,1,150,05/27/19 16:07,"503 12th St, New York City, NY 10001" -200085,USB-C Charging Cable,1,11.95,05/25/19 22:34,"321 Lake St, San Francisco, CA 94016" -200086,Lightning Charging Cable,1,14.95,05/05/19 13:33,"7 7th St, Los Angeles, CA 90001" -200087,AAA Batteries (4-pack),1,2.99,05/23/19 20:34,"272 West St, New York City, NY 10001" -200088,iPhone,1,700,05/16/19 16:14,"48 Highland St, New York City, NY 10001" -200089,Wired Headphones,1,11.99,05/09/19 09:38,"546 Church St, Seattle, WA 98101" -200090,Wired Headphones,1,11.99,05/18/19 07:28,"256 Washington St, San Francisco, CA 94016" -200091,AAA Batteries (4-pack),1,2.99,05/05/19 18:52,"5 9th St, San Francisco, CA 94016" -200092,Apple Airpods Headphones,1,150,05/31/19 18:58,"398 Hill St, Dallas, TX 75001" -200093,Lightning Charging Cable,1,14.95,05/24/19 09:52,"249 Jackson St, San Francisco, CA 94016" -200094,Lightning Charging Cable,1,14.95,05/02/19 19:44,"71 11th St, San Francisco, CA 94016" -200095,Bose SoundSport Headphones,1,99.99,05/16/19 16:40,"262 5th St, Seattle, WA 98101" -200096,AA Batteries (4-pack),1,3.84,05/05/19 22:13,"721 Main St, Seattle, WA 98101" -200097,Bose SoundSport Headphones,1,99.99,05/18/19 14:10,"798 Highland St, Dallas, TX 75001" -200098,Lightning Charging Cable,1,14.95,05/02/19 08:43,"691 Elm St, San Francisco, CA 94016" -200099,AA Batteries (4-pack),1,3.84,05/08/19 16:51,"570 Sunset St, Los Angeles, CA 90001" -200100,Lightning Charging Cable,1,14.95,05/15/19 10:34,"950 River St, Portland, OR 97035" -200101,AA Batteries (4-pack),1,3.84,05/22/19 08:07,"902 Sunset St, New York City, NY 10001" -200102,27in 4K Gaming Monitor,1,389.99,05/06/19 13:12,"758 Madison St, Boston, MA 02215" -200103,Google Phone,1,600,05/22/19 21:34,"571 Meadow St, Dallas, TX 75001" -200103,Wired Headphones,1,11.99,05/22/19 21:34,"571 Meadow St, Dallas, TX 75001" -200104,Lightning Charging Cable,1,14.95,05/21/19 09:48,"360 Johnson St, Portland, OR 97035" -200105,Wired Headphones,1,11.99,05/28/19 00:32,"868 River St, Portland, OR 97035" -200106,Apple Airpods Headphones,1,150,05/07/19 22:39,"275 Wilson St, Los Angeles, CA 90001" -200107,Lightning Charging Cable,1,14.95,05/02/19 13:48,"335 8th St, Boston, MA 02215" -200108,Wired Headphones,1,11.99,05/30/19 11:20,"450 Main St, Portland, OR 97035" -200109,Lightning Charging Cable,2,14.95,05/08/19 12:51,"30 Jefferson St, Dallas, TX 75001" -200110,Vareebadd Phone,1,400,05/15/19 18:34,"723 Main St, San Francisco, CA 94016" -200111,Apple Airpods Headphones,1,150,05/29/19 19:48,"424 West St, Los Angeles, CA 90001" -200112,34in Ultrawide Monitor,1,379.99,05/10/19 12:31,"798 Jefferson St, Seattle, WA 98101" -200113,AA Batteries (4-pack),1,3.84,05/21/19 20:30,"614 Church St, Los Angeles, CA 90001" -200114,AAA Batteries (4-pack),1,2.99,05/02/19 01:08,"857 Main St, Los Angeles, CA 90001" -200115,Wired Headphones,1,11.99,05/31/19 23:41,"709 6th St, Atlanta, GA 30301" -200116,USB-C Charging Cable,1,11.95,05/02/19 23:59,"793 Church St, San Francisco, CA 94016" -200117,Wired Headphones,2,11.99,05/16/19 20:40,"380 Johnson St, San Francisco, CA 94016" -200118,Lightning Charging Cable,1,14.95,05/28/19 16:37,"875 Dogwood St, Los Angeles, CA 90001" -200119,USB-C Charging Cable,1,11.95,05/01/19 16:50,"451 Washington St, Boston, MA 02215" -200120,Bose SoundSport Headphones,1,99.99,05/06/19 10:02,"825 Lake St, Boston, MA 02215" -200121,AA Batteries (4-pack),1,3.84,05/07/19 00:25,"284 North St, Seattle, WA 98101" -200122,LG Dryer,1,600.0,05/07/19 18:16,"293 Maple St, San Francisco, CA 94016" -200123,Flatscreen TV,1,300,05/08/19 12:48,"413 Main St, Dallas, TX 75001" -200124,Lightning Charging Cable,1,14.95,05/26/19 16:30,"641 Cherry St, Austin, TX 73301" -200125,AA Batteries (4-pack),1,3.84,05/06/19 16:58,"560 Hickory St, New York City, NY 10001" -200126,Flatscreen TV,1,300,05/27/19 08:34,"884 Hill St, Atlanta, GA 30301" -200127,AA Batteries (4-pack),1,3.84,05/07/19 10:53,"718 River St, Boston, MA 02215" -200128,Lightning Charging Cable,2,14.95,05/27/19 12:28,"647 Walnut St, Dallas, TX 75001" -200129,USB-C Charging Cable,1,11.95,05/20/19 18:17,"891 Lake St, Los Angeles, CA 90001" -200130,Lightning Charging Cable,1,14.95,05/16/19 14:14,"434 9th St, Portland, OR 97035" -200131,AA Batteries (4-pack),1,3.84,05/07/19 18:23,"357 8th St, San Francisco, CA 94016" -200132,20in Monitor,1,109.99,05/02/19 12:28,"422 10th St, Portland, OR 97035" -200133,AA Batteries (4-pack),1,3.84,05/22/19 09:05,"39 Willow St, New York City, NY 10001" -200134,AAA Batteries (4-pack),2,2.99,05/13/19 18:24,"79 Ridge St, Boston, MA 02215" -200135,34in Ultrawide Monitor,1,379.99,05/29/19 16:05,"458 Walnut St, New York City, NY 10001" -200136,Wired Headphones,1,11.99,05/07/19 09:33,"912 12th St, San Francisco, CA 94016" -200137,USB-C Charging Cable,1,11.95,05/23/19 18:51,"998 Hickory St, San Francisco, CA 94016" -,,,,, -200138,AAA Batteries (4-pack),2,2.99,05/01/19 12:46,"856 Jackson St, Los Angeles, CA 90001" -200139,20in Monitor,1,109.99,05/08/19 22:48,"360 5th St, San Francisco, CA 94016" -200140,AAA Batteries (4-pack),1,2.99,05/14/19 11:08,"499 Johnson St, Seattle, WA 98101" -200141,Vareebadd Phone,1,400,05/27/19 16:47,"44 10th St, New York City, NY 10001" -200142,AAA Batteries (4-pack),3,2.99,05/04/19 11:24,"54 Washington St, Atlanta, GA 30301" -200143,Wired Headphones,1,11.99,05/06/19 23:16,"191 Lake St, New York City, NY 10001" -200144,20in Monitor,1,109.99,05/06/19 16:05,"469 Walnut St, Portland, ME 04101" -200144,USB-C Charging Cable,1,11.95,05/06/19 16:05,"469 Walnut St, Portland, ME 04101" -200145,Flatscreen TV,1,300,05/17/19 14:59,"135 Pine St, Boston, MA 02215" -200146,AAA Batteries (4-pack),2,2.99,05/12/19 23:10,"178 Lake St, Boston, MA 02215" -200147,AA Batteries (4-pack),1,3.84,05/15/19 19:18,"510 Madison St, Los Angeles, CA 90001" -200148,USB-C Charging Cable,1,11.95,05/22/19 05:37,"956 7th St, Dallas, TX 75001" -200149,Wired Headphones,1,11.99,05/05/19 10:57,"86 Park St, Dallas, TX 75001" -200150,Bose SoundSport Headphones,1,99.99,05/28/19 12:35,"850 Hill St, Seattle, WA 98101" -200151,Wired Headphones,1,11.99,05/02/19 16:18,"808 2nd St, New York City, NY 10001" -200152,27in 4K Gaming Monitor,1,389.99,05/05/19 06:24,"100 11th St, San Francisco, CA 94016" -200153,AAA Batteries (4-pack),4,2.99,05/24/19 12:41,"96 Lakeview St, Portland, OR 97035" -200154,Lightning Charging Cable,1,14.95,05/06/19 22:57,"249 South St, San Francisco, CA 94016" -200155,Macbook Pro Laptop,1,1700,05/14/19 14:33,"547 Jackson St, Los Angeles, CA 90001" -200156,USB-C Charging Cable,1,11.95,05/16/19 13:04,"252 Maple St, Portland, OR 97035" -200157,27in FHD Monitor,1,149.99,05/18/19 11:09,"668 13th St, Portland, OR 97035" -200158,iPhone,1,700,05/17/19 18:57,"805 Jefferson St, Los Angeles, CA 90001" -200159,27in 4K Gaming Monitor,1,389.99,05/07/19 12:54,"624 Lincoln St, Seattle, WA 98101" -200160,20in Monitor,1,109.99,05/23/19 16:53,"102 Center St, Los Angeles, CA 90001" -200161,USB-C Charging Cable,1,11.95,05/29/19 21:24,"693 Main St, San Francisco, CA 94016" -200162,AA Batteries (4-pack),1,3.84,05/22/19 21:08,"446 Adams St, New York City, NY 10001" -200163,Lightning Charging Cable,1,14.95,05/13/19 18:17,"19 2nd St, Seattle, WA 98101" -200164,AAA Batteries (4-pack),3,2.99,05/22/19 14:31,"440 Elm St, New York City, NY 10001" -200165,ThinkPad Laptop,1,999.99,05/07/19 22:36,"91 Jackson St, Seattle, WA 98101" -200166,Macbook Pro Laptop,1,1700,05/03/19 15:39,"532 Hill St, Boston, MA 02215" -200167,Flatscreen TV,1,300,05/03/19 13:03,"997 Highland St, Los Angeles, CA 90001" -200168,27in 4K Gaming Monitor,1,389.99,05/28/19 09:20,"989 Madison St, Seattle, WA 98101" -200169,Wired Headphones,1,11.99,05/02/19 20:18,"904 7th St, Atlanta, GA 30301" -200170,Flatscreen TV,1,300,05/08/19 22:55,"195 7th St, Seattle, WA 98101" -200171,Apple Airpods Headphones,1,150,05/10/19 18:11,"881 Sunset St, Portland, OR 97035" -200172,USB-C Charging Cable,1,11.95,05/09/19 09:51,"182 Main St, San Francisco, CA 94016" -200172,27in FHD Monitor,1,149.99,05/09/19 09:51,"182 Main St, San Francisco, CA 94016" -200173,27in FHD Monitor,1,149.99,05/26/19 17:52,"750 Meadow St, Austin, TX 73301" -200174,AAA Batteries (4-pack),2,2.99,05/02/19 06:39,"830 Walnut St, San Francisco, CA 94016" -200175,Google Phone,1,600,05/11/19 07:36,"489 Cherry St, Atlanta, GA 30301" -200176,Wired Headphones,1,11.99,05/05/19 14:04,"254 12th St, Los Angeles, CA 90001" -200177,AA Batteries (4-pack),1,3.84,05/02/19 12:32,"611 North St, Los Angeles, CA 90001" -200178,Google Phone,1,600,05/25/19 11:35,"607 5th St, Portland, ME 04101" -200179,USB-C Charging Cable,1,11.95,05/16/19 16:47,"174 Forest St, Los Angeles, CA 90001" -200180,Wired Headphones,1,11.99,05/23/19 11:25,"305 4th St, Boston, MA 02215" -200181,20in Monitor,1,109.99,05/02/19 13:09,"991 Lake St, Dallas, TX 75001" -200182,Apple Airpods Headphones,1,150,05/04/19 13:26,"541 7th St, Seattle, WA 98101" -200183,34in Ultrawide Monitor,1,379.99,05/16/19 15:07,"167 Hickory St, Los Angeles, CA 90001" -200184,Apple Airpods Headphones,1,150,05/25/19 14:10,"878 Dogwood St, Atlanta, GA 30301" -200185,Apple Airpods Headphones,1,150,05/28/19 10:05,"838 Cedar St, Atlanta, GA 30301" -200186,Lightning Charging Cable,1,14.95,05/19/19 18:02,"862 Johnson St, Boston, MA 02215" -200187,USB-C Charging Cable,1,11.95,05/28/19 16:38,"863 Park St, Austin, TX 73301" -200188,AAA Batteries (4-pack),1,2.99,05/08/19 09:02,"570 Jefferson St, Atlanta, GA 30301" -200189,Lightning Charging Cable,1,14.95,05/18/19 15:00,"19 Willow St, San Francisco, CA 94016" -200190,Lightning Charging Cable,1,14.95,05/04/19 19:53,"268 Cherry St, Atlanta, GA 30301" -200191,Apple Airpods Headphones,1,150,05/23/19 11:14,"965 West St, Atlanta, GA 30301" -200192,Lightning Charging Cable,2,14.95,05/01/19 12:03,"330 Forest St, Los Angeles, CA 90001" -200193,Vareebadd Phone,1,400,05/30/19 19:35,"279 11th St, Los Angeles, CA 90001" -,,,,, -200194,Bose SoundSport Headphones,1,99.99,05/14/19 15:58,"956 5th St, Los Angeles, CA 90001" -200195,Google Phone,1,600,05/28/19 12:12,"744 13th St, San Francisco, CA 94016" -200196,Lightning Charging Cable,1,14.95,05/12/19 17:05,"569 14th St, San Francisco, CA 94016" -200197,Lightning Charging Cable,1,14.95,05/07/19 08:45,"674 Jackson St, Atlanta, GA 30301" -200198,Lightning Charging Cable,1,14.95,05/13/19 09:41,"205 Washington St, Portland, OR 97035" -200199,Apple Airpods Headphones,1,150,05/06/19 12:42,"561 Chestnut St, Dallas, TX 75001" -200200,AA Batteries (4-pack),1,3.84,05/21/19 16:41,"148 4th St, Portland, ME 04101" -200201,Lightning Charging Cable,1,14.95,05/29/19 14:13,"123 12th St, New York City, NY 10001" -200202,Macbook Pro Laptop,1,1700,05/19/19 23:19,"829 14th St, New York City, NY 10001" -200203,Bose SoundSport Headphones,1,99.99,05/12/19 13:57,"712 4th St, Los Angeles, CA 90001" -200204,AAA Batteries (4-pack),1,2.99,05/10/19 16:36,"733 9th St, Atlanta, GA 30301" -200205,Bose SoundSport Headphones,1,99.99,05/17/19 11:15,"938 Elm St, New York City, NY 10001" -200206,AA Batteries (4-pack),1,3.84,05/19/19 09:47,"304 Wilson St, San Francisco, CA 94016" -200207,USB-C Charging Cable,1,11.95,05/30/19 18:42,"262 Walnut St, San Francisco, CA 94016" -200208,AA Batteries (4-pack),1,3.84,05/04/19 21:30,"125 South St, San Francisco, CA 94016" -200209,Apple Airpods Headphones,1,150,05/30/19 23:00,"213 Center St, San Francisco, CA 94016" -200210,Lightning Charging Cable,1,14.95,05/14/19 22:35,"901 Walnut St, Seattle, WA 98101" -200211,ThinkPad Laptop,1,999.99,05/02/19 21:41,"238 11th St, Portland, OR 97035" -200212,AAA Batteries (4-pack),1,2.99,05/11/19 11:33,"418 Lincoln St, Dallas, TX 75001" -200213,USB-C Charging Cable,1,11.95,05/11/19 12:16,"547 Willow St, San Francisco, CA 94016" -200214,20in Monitor,1,109.99,05/26/19 18:00,"226 7th St, Los Angeles, CA 90001" -200215,ThinkPad Laptop,1,999.99,05/07/19 12:28,"979 Johnson St, Atlanta, GA 30301" -200216,AA Batteries (4-pack),2,3.84,05/20/19 18:47,"968 Ridge St, Boston, MA 02215" -200217,Apple Airpods Headphones,1,150,05/25/19 11:39,"294 Hickory St, New York City, NY 10001" -200218,Macbook Pro Laptop,1,1700,05/17/19 17:16,"356 9th St, San Francisco, CA 94016" -200219,27in 4K Gaming Monitor,1,389.99,05/26/19 13:29,"399 Cherry St, Boston, MA 02215" -200220,Bose SoundSport Headphones,1,99.99,05/14/19 11:47,"618 Pine St, Boston, MA 02215" -200221,AAA Batteries (4-pack),1,2.99,05/18/19 10:54,"281 River St, Austin, TX 73301" -200222,Lightning Charging Cable,1,14.95,05/30/19 16:55,"92 9th St, Los Angeles, CA 90001" -200223,Apple Airpods Headphones,1,150,05/02/19 23:03,"465 Dogwood St, Seattle, WA 98101" -200224,ThinkPad Laptop,1,999.99,05/05/19 22:36,"261 Dogwood St, Boston, MA 02215" -200225,iPhone,1,700,05/30/19 11:07,"331 10th St, New York City, NY 10001" -200225,Lightning Charging Cable,1,14.95,05/30/19 11:07,"331 10th St, New York City, NY 10001" -200226,Flatscreen TV,1,300,05/27/19 08:00,"569 13th St, Boston, MA 02215" -200227,AA Batteries (4-pack),1,3.84,05/08/19 19:50,"289 Wilson St, San Francisco, CA 94016" -200228,Flatscreen TV,1,300,05/13/19 19:57,"515 Madison St, Seattle, WA 98101" -200229,Wired Headphones,1,11.99,05/21/19 05:28,"347 10th St, Boston, MA 02215" -200230,20in Monitor,1,109.99,05/20/19 12:44,"232 13th St, Los Angeles, CA 90001" -200231,AAA Batteries (4-pack),1,2.99,05/19/19 12:16,"655 Dogwood St, Los Angeles, CA 90001" -200232,Wired Headphones,1,11.99,05/04/19 12:03,"760 Willow St, Austin, TX 73301" -200233,Vareebadd Phone,1,400,05/16/19 23:07,"778 Main St, San Francisco, CA 94016" -200234,Bose SoundSport Headphones,1,99.99,05/14/19 02:08,"904 4th St, Dallas, TX 75001" -200235,USB-C Charging Cable,1,11.95,05/30/19 13:44,"55 9th St, New York City, NY 10001" -200236,iPhone,1,700,05/18/19 21:28,"179 Adams St, New York City, NY 10001" -200236,Lightning Charging Cable,1,14.95,05/18/19 21:28,"179 Adams St, New York City, NY 10001" -200237,Lightning Charging Cable,1,14.95,05/22/19 15:44,"774 4th St, Los Angeles, CA 90001" -200238,AA Batteries (4-pack),1,3.84,05/01/19 16:08,"399 Church St, Los Angeles, CA 90001" -200239,AAA Batteries (4-pack),2,2.99,05/04/19 15:35,"830 Cherry St, New York City, NY 10001" -200240,Google Phone,1,600,05/26/19 01:48,"81 Madison St, Dallas, TX 75001" -200240,USB-C Charging Cable,1,11.95,05/26/19 01:48,"81 Madison St, Dallas, TX 75001" -200241,iPhone,1,700,05/21/19 17:37,"185 Madison St, San Francisco, CA 94016" -200241,Lightning Charging Cable,1,14.95,05/21/19 17:37,"185 Madison St, San Francisco, CA 94016" -200241,Wired Headphones,1,11.99,05/21/19 17:37,"185 Madison St, San Francisco, CA 94016" -200242,34in Ultrawide Monitor,1,379.99,05/30/19 21:20,"823 Elm St, Los Angeles, CA 90001" -200243,Apple Airpods Headphones,1,150,05/04/19 18:17,"350 1st St, Dallas, TX 75001" -200244,Bose SoundSport Headphones,1,99.99,05/07/19 22:42,"541 Cedar St, Seattle, WA 98101" -200245,Apple Airpods Headphones,1,150,05/13/19 17:02,"831 Center St, Portland, OR 97035" -200246,Lightning Charging Cable,1,14.95,05/26/19 16:51,"390 5th St, Los Angeles, CA 90001" -200247,USB-C Charging Cable,2,11.95,05/02/19 11:10,"309 South St, New York City, NY 10001" -200248,Apple Airpods Headphones,1,150,05/14/19 17:22,"529 Hill St, Atlanta, GA 30301" -200249,Wired Headphones,2,11.99,05/22/19 09:45,"267 Church St, Portland, OR 97035" -200250,AAA Batteries (4-pack),1,2.99,05/18/19 17:54,"455 Hill St, Austin, TX 73301" -200251,AAA Batteries (4-pack),1,2.99,05/10/19 23:05,"603 Ridge St, Los Angeles, CA 90001" -200252,Bose SoundSport Headphones,1,99.99,05/14/19 14:27,"3 12th St, San Francisco, CA 94016" -200253,Apple Airpods Headphones,1,150,05/10/19 17:57,"810 Meadow St, New York City, NY 10001" -200254,Apple Airpods Headphones,1,150,05/21/19 10:32,"450 South St, New York City, NY 10001" -200255,Apple Airpods Headphones,1,150,05/01/19 14:26,"183 West St, San Francisco, CA 94016" -200256,AAA Batteries (4-pack),1,2.99,05/09/19 20:15,"342 14th St, Boston, MA 02215" -200257,USB-C Charging Cable,1,11.95,05/11/19 18:22,"634 Adams St, Los Angeles, CA 90001" -200258,Bose SoundSport Headphones,1,99.99,05/21/19 09:52,"541 Cedar St, Seattle, WA 98101" -200259,USB-C Charging Cable,1,11.95,05/14/19 10:47,"270 Washington St, Los Angeles, CA 90001" -200260,Wired Headphones,1,11.99,05/18/19 19:52,"314 Park St, Austin, TX 73301" -200261,AAA Batteries (4-pack),1,2.99,05/08/19 16:34,"435 Dogwood St, Los Angeles, CA 90001" -200262,USB-C Charging Cable,1,11.95,05/17/19 09:56,"291 River St, Boston, MA 02215" -200263,USB-C Charging Cable,1,11.95,05/24/19 00:54,"624 Pine St, Portland, ME 04101" -200264,27in 4K Gaming Monitor,1,389.99,05/14/19 17:01,"630 Spruce St, Seattle, WA 98101" -200265,Wired Headphones,1,11.99,05/20/19 09:52,"389 South St, San Francisco, CA 94016" -200266,AA Batteries (4-pack),2,3.84,05/31/19 10:46,"208 North St, New York City, NY 10001" -200267,27in 4K Gaming Monitor,1,389.99,05/09/19 20:51,"599 South St, San Francisco, CA 94016" -200268,USB-C Charging Cable,1,11.95,05/04/19 09:04,"341 13th St, Dallas, TX 75001" -200269,27in 4K Gaming Monitor,1,389.99,05/03/19 23:19,"294 Dogwood St, New York City, NY 10001" -200270,Lightning Charging Cable,1,14.95,05/28/19 15:09,"367 6th St, Boston, MA 02215" -200271,Bose SoundSport Headphones,1,99.99,05/28/19 12:52,"498 Ridge St, San Francisco, CA 94016" -200272,20in Monitor,1,109.99,05/04/19 14:22,"295 Highland St, Seattle, WA 98101" -200273,Wired Headphones,1,11.99,05/18/19 21:53,"984 Lincoln St, San Francisco, CA 94016" -200274,AAA Batteries (4-pack),2,2.99,05/08/19 12:48,"620 North St, San Francisco, CA 94016" -200275,Apple Airpods Headphones,1,150,05/17/19 09:37,"63 11th St, New York City, NY 10001" -200276,AAA Batteries (4-pack),1,2.99,05/14/19 17:12,"926 5th St, San Francisco, CA 94016" -200277,AAA Batteries (4-pack),1,2.99,05/19/19 20:30,"920 12th St, Seattle, WA 98101" -200278,Flatscreen TV,1,300,05/30/19 10:48,"131 2nd St, San Francisco, CA 94016" -200278,AA Batteries (4-pack),2,3.84,05/30/19 10:48,"131 2nd St, San Francisco, CA 94016" -200279,Lightning Charging Cable,1,14.95,05/30/19 12:45,"502 13th St, San Francisco, CA 94016" -200280,Apple Airpods Headphones,1,150,05/26/19 20:27,"466 6th St, Atlanta, GA 30301" -200281,27in 4K Gaming Monitor,1,389.99,05/08/19 18:08,"925 Spruce St, San Francisco, CA 94016" -200282,AA Batteries (4-pack),4,3.84,05/16/19 08:41,"613 Hill St, San Francisco, CA 94016" -200283,USB-C Charging Cable,1,11.95,05/16/19 16:05,"965 Willow St, San Francisco, CA 94016" -200284,20in Monitor,1,109.99,05/16/19 13:00,"202 Hill St, Austin, TX 73301" -200285,Macbook Pro Laptop,1,1700,05/20/19 17:17,"925 Jefferson St, Dallas, TX 75001" -200286,Lightning Charging Cable,1,14.95,05/14/19 23:35,"94 11th St, Dallas, TX 75001" -200287,AAA Batteries (4-pack),1,2.99,05/06/19 19:19,"517 14th St, Austin, TX 73301" -200288,Lightning Charging Cable,1,14.95,05/31/19 12:29,"156 River St, Atlanta, GA 30301" -200289,Google Phone,1,600,05/14/19 11:26,"713 West St, Boston, MA 02215" -200289,Wired Headphones,1,11.99,05/14/19 11:26,"713 West St, Boston, MA 02215" -200290,Wired Headphones,2,11.99,05/13/19 00:50,"858 Washington St, San Francisco, CA 94016" -200291,Wired Headphones,2,11.99,05/03/19 23:36,"676 Ridge St, San Francisco, CA 94016" -200292,USB-C Charging Cable,1,11.95,05/28/19 17:48,"908 10th St, Atlanta, GA 30301" -200293,Macbook Pro Laptop,1,1700,05/21/19 11:06,"549 4th St, San Francisco, CA 94016" -200294,Apple Airpods Headphones,1,150,05/21/19 20:22,"17 Jackson St, San Francisco, CA 94016" -200295,34in Ultrawide Monitor,1,379.99,05/31/19 12:48,"801 Lakeview St, San Francisco, CA 94016" -200296,27in FHD Monitor,1,149.99,05/16/19 12:09,"26 7th St, Austin, TX 73301" -200297,USB-C Charging Cable,1,11.95,05/17/19 18:00,"570 Dogwood St, Los Angeles, CA 90001" -200298,27in FHD Monitor,1,149.99,05/03/19 00:44,"746 River St, San Francisco, CA 94016" -200299,Bose SoundSport Headphones,1,99.99,05/31/19 07:44,"991 4th St, San Francisco, CA 94016" -200300,AA Batteries (4-pack),5,3.84,05/12/19 12:41,"987 6th St, San Francisco, CA 94016" -200301,27in FHD Monitor,1,149.99,05/01/19 20:47,"604 Center St, Seattle, WA 98101" -200301,Lightning Charging Cable,1,14.95,05/01/19 20:47,"604 Center St, Seattle, WA 98101" -200302,ThinkPad Laptop,1,999.99,05/15/19 13:05,"371 Pine St, Dallas, TX 75001" -200303,Bose SoundSport Headphones,1,99.99,05/29/19 06:35,"705 Cherry St, Atlanta, GA 30301" -200304,AAA Batteries (4-pack),1,2.99,05/29/19 19:36,"663 Center St, New York City, NY 10001" -200305,Lightning Charging Cable,1,14.95,05/03/19 14:30,"927 12th St, Los Angeles, CA 90001" -200306,iPhone,1,700,05/15/19 13:46,"905 Adams St, San Francisco, CA 94016" -200307,AA Batteries (4-pack),1,3.84,05/21/19 21:17,"224 10th St, Los Angeles, CA 90001" -200308,Apple Airpods Headphones,1,150,05/02/19 00:28,"700 West St, Atlanta, GA 30301" -200309,iPhone,1,700,05/21/19 11:19,"692 Park St, Portland, OR 97035" -200310,AAA Batteries (4-pack),3,2.99,05/13/19 10:33,"390 Cedar St, Los Angeles, CA 90001" -200311,Vareebadd Phone,1,400,05/01/19 20:49,"11 Wilson St, San Francisco, CA 94016" -200311,USB-C Charging Cable,1,11.95,05/01/19 20:49,"11 Wilson St, San Francisco, CA 94016" -200312,Apple Airpods Headphones,1,150,05/22/19 08:34,"67 River St, Dallas, TX 75001" -200313,AA Batteries (4-pack),2,3.84,05/12/19 11:00,"518 Sunset St, Seattle, WA 98101" -200314,Apple Airpods Headphones,1,150,05/14/19 18:44,"980 Lincoln St, Boston, MA 02215" -200315,Wired Headphones,1,11.99,05/24/19 22:46,"220 Highland St, Boston, MA 02215" -200316,Lightning Charging Cable,1,14.95,05/13/19 22:44,"814 Ridge St, Seattle, WA 98101" -200317,Lightning Charging Cable,2,14.95,05/06/19 19:09,"370 13th St, Los Angeles, CA 90001" -200318,Macbook Pro Laptop,1,1700,05/03/19 14:17,"310 5th St, New York City, NY 10001" -200319,27in FHD Monitor,1,149.99,05/23/19 18:13,"783 Sunset St, San Francisco, CA 94016" -200320,Bose SoundSport Headphones,1,99.99,05/27/19 22:29,"911 River St, New York City, NY 10001" -200321,27in 4K Gaming Monitor,1,389.99,05/02/19 20:55,"279 5th St, Austin, TX 73301" -200322,USB-C Charging Cable,1,11.95,05/27/19 19:42,"364 10th St, Boston, MA 02215" -200323,AA Batteries (4-pack),1,3.84,05/12/19 10:05,"867 1st St, New York City, NY 10001" -200324,20in Monitor,1,109.99,05/03/19 11:18,"498 Lakeview St, Boston, MA 02215" -200325,Apple Airpods Headphones,1,150,05/15/19 12:41,"84 Highland St, Los Angeles, CA 90001" -200326,Bose SoundSport Headphones,1,99.99,05/23/19 21:27,"185 12th St, Seattle, WA 98101" -200327,AAA Batteries (4-pack),1,2.99,05/07/19 16:53,"114 2nd St, Seattle, WA 98101" -200328,Apple Airpods Headphones,1,150,05/31/19 14:52,"563 9th St, San Francisco, CA 94016" -200329,Lightning Charging Cable,1,14.95,05/03/19 10:00,"95 8th St, San Francisco, CA 94016" -200330,Macbook Pro Laptop,1,1700,05/10/19 23:49,"231 10th St, Seattle, WA 98101" -200331,USB-C Charging Cable,1,11.95,05/13/19 13:17,"888 Willow St, New York City, NY 10001" -200332,Macbook Pro Laptop,1,1700,05/20/19 10:00,"581 Hickory St, San Francisco, CA 94016" -200333,AAA Batteries (4-pack),2,2.99,05/23/19 11:59,"5 Adams St, Portland, OR 97035" -200333,34in Ultrawide Monitor,1,379.99,05/23/19 11:59,"5 Adams St, Portland, OR 97035" -200334,Wired Headphones,1,11.99,05/31/19 18:26,"457 South St, New York City, NY 10001" -200335,USB-C Charging Cable,1,11.95,05/20/19 10:22,"626 Cherry St, New York City, NY 10001" -200336,ThinkPad Laptop,1,999.99,05/05/19 16:36,"578 Church St, Portland, OR 97035" -200337,AA Batteries (4-pack),2,3.84,05/31/19 18:48,"749 Pine St, Los Angeles, CA 90001" -200338,Google Phone,1,600,05/04/19 23:47,"9 Wilson St, San Francisco, CA 94016" -200338,USB-C Charging Cable,1,11.95,05/04/19 23:47,"9 Wilson St, San Francisco, CA 94016" -200339,USB-C Charging Cable,1,11.95,05/24/19 18:27,"691 Meadow St, Los Angeles, CA 90001" -200340,27in FHD Monitor,1,149.99,05/19/19 21:09,"964 Cedar St, San Francisco, CA 94016" -200341,Macbook Pro Laptop,1,1700,05/27/19 12:43,"37 South St, Seattle, WA 98101" -200342,AA Batteries (4-pack),1,3.84,05/18/19 08:34,"497 Cherry St, Boston, MA 02215" -200343,Wired Headphones,1,11.99,05/03/19 14:09,"284 North St, Atlanta, GA 30301" -200344,Lightning Charging Cable,1,14.95,05/15/19 15:27,"145 Hickory St, Boston, MA 02215" -200345,AAA Batteries (4-pack),1,2.99,05/26/19 18:37,"773 Adams St, San Francisco, CA 94016" -200346,Flatscreen TV,1,300,05/15/19 21:05,"366 10th St, Dallas, TX 75001" -200347,Bose SoundSport Headphones,1,99.99,05/13/19 17:07,"594 Forest St, San Francisco, CA 94016" -200348,Google Phone,1,600,05/12/19 18:35,"508 9th St, New York City, NY 10001" -200349,Lightning Charging Cable,1,14.95,05/19/19 15:42,"484 Sunset St, San Francisco, CA 94016" -200350,27in FHD Monitor,1,149.99,05/11/19 16:05,"156 Lakeview St, San Francisco, CA 94016" -200351,27in FHD Monitor,1,149.99,05/25/19 08:02,"530 Highland St, Los Angeles, CA 90001" -200352,Bose SoundSport Headphones,1,99.99,05/12/19 11:03,"39 4th St, Portland, OR 97035" -200353,USB-C Charging Cable,1,11.95,05/18/19 13:10,"66 River St, Austin, TX 73301" -200354,AAA Batteries (4-pack),1,2.99,05/18/19 16:11,"358 South St, San Francisco, CA 94016" -200354,USB-C Charging Cable,1,11.95,05/18/19 16:11,"358 South St, San Francisco, CA 94016" -200355,27in FHD Monitor,1,149.99,05/23/19 21:01,"879 6th St, Dallas, TX 75001" -200356,Vareebadd Phone,1,400,05/18/19 22:51,"494 Jackson St, New York City, NY 10001" -200356,USB-C Charging Cable,1,11.95,05/18/19 22:51,"494 Jackson St, New York City, NY 10001" -200357,AAA Batteries (4-pack),1,2.99,05/22/19 10:58,"401 Sunset St, Boston, MA 02215" -200358,20in Monitor,1,109.99,05/09/19 20:49,"986 7th St, San Francisco, CA 94016" -200359,Bose SoundSport Headphones,1,99.99,05/11/19 14:16,"598 Johnson St, San Francisco, CA 94016" -200360,Lightning Charging Cable,1,14.95,05/12/19 11:28,"803 Lake St, Dallas, TX 75001" -200361,Bose SoundSport Headphones,1,99.99,05/05/19 20:59,"698 6th St, San Francisco, CA 94016" -200362,USB-C Charging Cable,1,11.95,05/11/19 19:48,"603 Lincoln St, Portland, OR 97035" -200363,AA Batteries (4-pack),1,3.84,05/25/19 18:13,"398 Dogwood St, Los Angeles, CA 90001" -200364,Wired Headphones,1,11.99,05/16/19 18:24,"993 Spruce St, Los Angeles, CA 90001" -200365,Bose SoundSport Headphones,1,99.99,05/22/19 10:00,"906 Elm St, Boston, MA 02215" -200366,27in FHD Monitor,1,149.99,05/23/19 23:00,"150 Highland St, New York City, NY 10001" -200367,AA Batteries (4-pack),2,3.84,05/05/19 22:25,"993 4th St, San Francisco, CA 94016" -200368,AA Batteries (4-pack),1,3.84,05/17/19 13:33,"901 6th St, San Francisco, CA 94016" -200369,AAA Batteries (4-pack),1,2.99,05/26/19 18:52,"873 Elm St, New York City, NY 10001" -200370,Wired Headphones,1,11.99,05/04/19 23:15,"772 Adams St, Los Angeles, CA 90001" -200371,Macbook Pro Laptop,1,1700,05/29/19 19:37,"71 Lakeview St, San Francisco, CA 94016" -200372,Apple Airpods Headphones,1,150,05/03/19 11:24,"21 Cherry St, New York City, NY 10001" -200373,Lightning Charging Cable,1,14.95,05/10/19 18:32,"777 Johnson St, Los Angeles, CA 90001" -200374,34in Ultrawide Monitor,1,379.99,05/05/19 13:00,"126 Cedar St, San Francisco, CA 94016" -200375,ThinkPad Laptop,1,999.99,05/24/19 18:36,"826 12th St, Los Angeles, CA 90001" -200376,Flatscreen TV,1,300,05/28/19 17:34,"911 Adams St, Los Angeles, CA 90001" -200377,Lightning Charging Cable,1,14.95,05/25/19 12:21,"425 Elm St, Seattle, WA 98101" -200378,AA Batteries (4-pack),1,3.84,05/10/19 13:55,"406 Cherry St, Boston, MA 02215" -200379,Lightning Charging Cable,1,14.95,05/08/19 23:02,"566 Hickory St, Boston, MA 02215" -200380,USB-C Charging Cable,1,11.95,05/19/19 15:53,"496 4th St, Boston, MA 02215" -200381,Wired Headphones,1,11.99,05/18/19 11:58,"41 Wilson St, New York City, NY 10001" -200382,AA Batteries (4-pack),1,3.84,05/04/19 16:04,"826 12th St, Boston, MA 02215" -200383,USB-C Charging Cable,1,11.95,05/13/19 20:50,"279 6th St, Los Angeles, CA 90001" -200384,Wired Headphones,1,11.99,05/11/19 13:40,"75 Main St, San Francisco, CA 94016" -200385,AAA Batteries (4-pack),2,2.99,05/22/19 16:25,"146 Ridge St, New York City, NY 10001" -200386,AA Batteries (4-pack),1,3.84,05/24/19 21:49,"67 Hickory St, Boston, MA 02215" -200387,34in Ultrawide Monitor,1,379.99,05/17/19 11:59,"511 Johnson St, Los Angeles, CA 90001" -200388,Bose SoundSport Headphones,1,99.99,05/30/19 20:41,"619 West St, New York City, NY 10001" -200389,Macbook Pro Laptop,1,1700,05/16/19 18:04,"394 Maple St, San Francisco, CA 94016" -200390,27in FHD Monitor,1,149.99,05/12/19 16:50,"266 14th St, San Francisco, CA 94016" -200391,27in 4K Gaming Monitor,1,389.99,05/17/19 13:42,"964 Hickory St, San Francisco, CA 94016" -200392,Wired Headphones,1,11.99,05/08/19 13:54,"470 Willow St, San Francisco, CA 94016" -200393,Wired Headphones,1,11.99,05/23/19 16:11,"345 Church St, New York City, NY 10001" -200394,Bose SoundSport Headphones,1,99.99,05/08/19 20:59,"257 Spruce St, Boston, MA 02215" -200395,AA Batteries (4-pack),2,3.84,05/31/19 00:26,"387 West St, San Francisco, CA 94016" -200396,Wired Headphones,1,11.99,05/04/19 11:35,"598 7th St, Los Angeles, CA 90001" -200397,AA Batteries (4-pack),1,3.84,05/20/19 11:55,"662 Church St, Boston, MA 02215" -200398,Apple Airpods Headphones,1,150,05/09/19 08:52,"446 13th St, Atlanta, GA 30301" -200399,Macbook Pro Laptop,1,1700,05/28/19 19:25,"265 North St, Seattle, WA 98101" -200400,ThinkPad Laptop,1,999.99,05/27/19 09:24,"316 Spruce St, Atlanta, GA 30301" -200401,Vareebadd Phone,1,400,05/14/19 16:55,"856 Cherry St, San Francisco, CA 94016" -200402,AAA Batteries (4-pack),3,2.99,05/22/19 20:28,"511 Ridge St, Boston, MA 02215" -200403,Lightning Charging Cable,1,14.95,05/30/19 06:57,"845 Park St, San Francisco, CA 94016" -200404,Flatscreen TV,1,300,05/20/19 18:26,"539 Sunset St, Atlanta, GA 30301" -200405,Lightning Charging Cable,1,14.95,05/16/19 15:20,"597 10th St, Boston, MA 02215" -200406,Bose SoundSport Headphones,1,99.99,05/12/19 21:10,"213 8th St, San Francisco, CA 94016" -200407,Apple Airpods Headphones,1,150,05/18/19 15:04,"255 Church St, Boston, MA 02215" -200408,Wired Headphones,1,11.99,05/27/19 11:33,"437 4th St, Austin, TX 73301" -200409,27in 4K Gaming Monitor,1,389.99,05/20/19 20:42,"645 14th St, Portland, ME 04101" -200410,Flatscreen TV,1,300,05/01/19 19:56,"412 Pine St, Dallas, TX 75001" -200411,LG Dryer,1,600.0,05/08/19 02:36,"545 Cherry St, Austin, TX 73301" -200412,AAA Batteries (4-pack),3,2.99,05/25/19 18:11,"698 Ridge St, Atlanta, GA 30301" -200413,USB-C Charging Cable,1,11.95,05/13/19 07:51,"243 Forest St, Los Angeles, CA 90001" -200414,AAA Batteries (4-pack),1,2.99,05/05/19 15:14,"705 13th St, Los Angeles, CA 90001" -200415,USB-C Charging Cable,1,11.95,05/18/19 17:07,"712 Cedar St, Dallas, TX 75001" -200416,iPhone,1,700,05/16/19 23:36,"10 Willow St, Los Angeles, CA 90001" -200416,Lightning Charging Cable,1,14.95,05/16/19 23:36,"10 Willow St, Los Angeles, CA 90001" -200417,Flatscreen TV,1,300,05/10/19 09:13,"176 Adams St, Boston, MA 02215" -200418,34in Ultrawide Monitor,1,379.99,05/20/19 11:28,"757 11th St, Los Angeles, CA 90001" -200419,USB-C Charging Cable,1,11.95,05/24/19 13:49,"190 Spruce St, Los Angeles, CA 90001" -200420,Lightning Charging Cable,1,14.95,05/22/19 15:27,"623 2nd St, San Francisco, CA 94016" -200421,Apple Airpods Headphones,1,150,05/27/19 15:19,"830 Chestnut St, Seattle, WA 98101" -200422,AAA Batteries (4-pack),6,2.99,05/21/19 11:27,"686 Washington St, Seattle, WA 98101" -200423,AAA Batteries (4-pack),1,2.99,05/10/19 20:36,"651 11th St, Seattle, WA 98101" -200424,Wired Headphones,1,11.99,05/11/19 20:33,"554 Highland St, San Francisco, CA 94016" -200425,27in 4K Gaming Monitor,1,389.99,05/31/19 19:02,"744 Park St, Los Angeles, CA 90001" -200426,27in 4K Gaming Monitor,1,389.99,05/16/19 22:34,"948 Spruce St, Austin, TX 73301" -200427,AA Batteries (4-pack),1,3.84,05/21/19 20:28,"789 Madison St, Atlanta, GA 30301" -200428,USB-C Charging Cable,1,11.95,05/13/19 16:13,"450 Lake St, Dallas, TX 75001" -200429,Bose SoundSport Headphones,1,99.99,05/07/19 11:03,"436 West St, San Francisco, CA 94016" -200430,LG Washing Machine,1,600.0,05/03/19 11:38,"906 Hickory St, Los Angeles, CA 90001" -200431,20in Monitor,1,109.99,05/25/19 22:12,"382 4th St, Los Angeles, CA 90001" -200432,Lightning Charging Cable,1,14.95,05/03/19 22:50,"443 South St, Seattle, WA 98101" -200433,USB-C Charging Cable,1,11.95,05/15/19 12:43,"482 North St, Austin, TX 73301" -200434,Wired Headphones,1,11.99,05/23/19 15:24,"463 14th St, Los Angeles, CA 90001" -200435,Wired Headphones,1,11.99,05/17/19 11:23,"121 Hill St, Seattle, WA 98101" -200436,Lightning Charging Cable,1,14.95,05/23/19 18:56,"441 Lincoln St, New York City, NY 10001" -200437,Bose SoundSport Headphones,1,99.99,05/10/19 20:15,"278 Wilson St, New York City, NY 10001" -200438,USB-C Charging Cable,1,11.95,05/24/19 04:29,"273 Park St, Dallas, TX 75001" -200439,Lightning Charging Cable,1,14.95,05/27/19 19:00,"551 Lincoln St, Los Angeles, CA 90001" -200440,iPhone,1,700,05/24/19 17:15,"178 1st St, New York City, NY 10001" -200440,Apple Airpods Headphones,1,150,05/24/19 17:15,"178 1st St, New York City, NY 10001" -200441,USB-C Charging Cable,1,11.95,05/16/19 14:33,"491 Church St, San Francisco, CA 94016" -200442,USB-C Charging Cable,1,11.95,05/29/19 21:09,"310 Wilson St, San Francisco, CA 94016" -200443,iPhone,1,700,05/04/19 20:48,"468 12th St, Boston, MA 02215" -200444,Wired Headphones,1,11.99,05/28/19 07:39,"500 West St, Los Angeles, CA 90001" -200445,USB-C Charging Cable,1,11.95,05/04/19 06:20,"730 Park St, San Francisco, CA 94016" -200446,USB-C Charging Cable,1,11.95,05/14/19 19:17,"278 Cherry St, Portland, OR 97035" -200447,AA Batteries (4-pack),1,3.84,05/17/19 09:24,"203 Maple St, San Francisco, CA 94016" -200448,USB-C Charging Cable,1,11.95,05/20/19 03:31,"768 Ridge St, Austin, TX 73301" -200449,AAA Batteries (4-pack),1,2.99,05/17/19 08:06,"975 13th St, Dallas, TX 75001" -200450,USB-C Charging Cable,1,11.95,05/06/19 19:30,"309 Washington St, Boston, MA 02215" -200451,AAA Batteries (4-pack),1,2.99,05/04/19 13:23,"695 West St, Portland, OR 97035" -200452,AA Batteries (4-pack),2,3.84,05/19/19 19:33,"129 2nd St, Atlanta, GA 30301" -200453,Wired Headphones,1,11.99,05/17/19 21:26,"651 South St, Seattle, WA 98101" -200454,34in Ultrawide Monitor,1,379.99,05/04/19 22:08,"393 Main St, San Francisco, CA 94016" -200455,Bose SoundSport Headphones,1,99.99,05/22/19 13:46,"297 6th St, Los Angeles, CA 90001" -200456,Bose SoundSport Headphones,1,99.99,05/02/19 17:18,"755 7th St, Los Angeles, CA 90001" -200457,Apple Airpods Headphones,1,150,05/09/19 11:37,"410 River St, Atlanta, GA 30301" -200458,Wired Headphones,1,11.99,05/19/19 16:22,"31 10th St, Los Angeles, CA 90001" -200459,Apple Airpods Headphones,1,150,05/19/19 16:44,"18 6th St, New York City, NY 10001" -200460,AAA Batteries (4-pack),2,2.99,05/04/19 13:26,"25 Hill St, Boston, MA 02215" -200461,Apple Airpods Headphones,1,150,05/15/19 23:23,"396 14th St, Seattle, WA 98101" -200462,AA Batteries (4-pack),1,3.84,05/13/19 11:29,"683 6th St, Dallas, TX 75001" -200463,USB-C Charging Cable,1,11.95,05/13/19 12:42,"162 Sunset St, Atlanta, GA 30301" -200464,Google Phone,1,600,05/03/19 13:10,"372 Jefferson St, New York City, NY 10001" -200465,Wired Headphones,1,11.99,05/25/19 18:44,"997 Chestnut St, Dallas, TX 75001" -200466,USB-C Charging Cable,1,11.95,05/14/19 08:57,"87 6th St, Dallas, TX 75001" -200467,Lightning Charging Cable,1,14.95,05/06/19 21:21,"713 Pine St, Portland, OR 97035" -200468,Lightning Charging Cable,1,14.95,05/11/19 21:48,"505 Pine St, Seattle, WA 98101" -200469,Lightning Charging Cable,1,14.95,05/16/19 09:45,"818 5th St, Boston, MA 02215" -200470,USB-C Charging Cable,1,11.95,05/29/19 12:33,"860 Jackson St, Los Angeles, CA 90001" -200471,USB-C Charging Cable,1,11.95,05/04/19 19:02,"962 9th St, Austin, TX 73301" -200472,iPhone,1,700,05/10/19 20:05,"283 Washington St, Los Angeles, CA 90001" -200472,Apple Airpods Headphones,1,150,05/10/19 20:05,"283 Washington St, Los Angeles, CA 90001" -200473,27in 4K Gaming Monitor,1,389.99,05/11/19 10:52,"968 Jefferson St, Atlanta, GA 30301" -200474,AA Batteries (4-pack),1,3.84,05/23/19 19:08,"163 4th St, Boston, MA 02215" -200475,LG Dryer,1,600.0,05/14/19 23:18,"86 Adams St, San Francisco, CA 94016" -200476,AA Batteries (4-pack),1,3.84,05/12/19 12:31,"16 North St, San Francisco, CA 94016" -200477,20in Monitor,1,109.99,05/07/19 22:35,"58 11th St, New York City, NY 10001" -200478,AA Batteries (4-pack),2,3.84,05/17/19 13:28,"469 Jefferson St, Boston, MA 02215" -,,,,, -200479,Bose SoundSport Headphones,1,99.99,05/07/19 19:22,"171 Jefferson St, New York City, NY 10001" -200480,AAA Batteries (4-pack),2,2.99,05/12/19 11:35,"493 Madison St, New York City, NY 10001" -200481,27in 4K Gaming Monitor,1,389.99,05/29/19 15:41,"472 10th St, Dallas, TX 75001" -200482,Google Phone,1,600,05/17/19 15:38,"130 4th St, New York City, NY 10001" -200483,AAA Batteries (4-pack),3,2.99,05/16/19 15:35,"141 Main St, Portland, OR 97035" -200484,Wired Headphones,1,11.99,05/07/19 20:11,"482 7th St, San Francisco, CA 94016" -200485,Macbook Pro Laptop,1,1700,05/23/19 12:59,"369 6th St, Dallas, TX 75001" -200486,27in FHD Monitor,1,149.99,05/15/19 11:44,"221 River St, San Francisco, CA 94016" -200486,AA Batteries (4-pack),1,3.84,05/15/19 11:44,"221 River St, San Francisco, CA 94016" -200487,Wired Headphones,2,11.99,05/10/19 16:40,"683 Spruce St, Portland, ME 04101" -200488,Apple Airpods Headphones,1,150,05/13/19 10:39,"207 5th St, Seattle, WA 98101" -200489,Apple Airpods Headphones,1,150,05/23/19 19:14,"200 Pine St, Los Angeles, CA 90001" -200490,USB-C Charging Cable,1,11.95,05/11/19 15:25,"714 2nd St, Seattle, WA 98101" -200491,27in FHD Monitor,1,149.99,05/28/19 11:30,"841 North St, Seattle, WA 98101" -200492,iPhone,1,700,05/23/19 12:23,"339 Spruce St, San Francisco, CA 94016" -200493,iPhone,1,700,05/08/19 11:45,"587 West St, Atlanta, GA 30301" -200494,Apple Airpods Headphones,1,150,05/29/19 15:44,"380 Willow St, Portland, OR 97035" -200494,LG Dryer,1,600.0,05/29/19 15:44,"380 Willow St, Portland, OR 97035" -200495,ThinkPad Laptop,1,999.99,05/27/19 09:21,"696 Dogwood St, New York City, NY 10001" -200496,20in Monitor,1,109.99,05/25/19 19:47,"642 13th St, New York City, NY 10001" -200497,Lightning Charging Cable,2,14.95,05/11/19 00:16,"888 Center St, Atlanta, GA 30301" -200498,Lightning Charging Cable,1,14.95,05/15/19 22:21,"58 5th St, San Francisco, CA 94016" -200499,USB-C Charging Cable,1,11.95,05/14/19 15:18,"788 1st St, Boston, MA 02215" -200500,Flatscreen TV,1,300,05/08/19 12:22,"876 Hill St, Los Angeles, CA 90001" -200501,Lightning Charging Cable,2,14.95,05/24/19 17:49,"923 10th St, Atlanta, GA 30301" -200502,Bose SoundSport Headphones,1,99.99,05/30/19 11:12,"280 Elm St, Austin, TX 73301" -200503,Apple Airpods Headphones,1,150,05/15/19 13:48,"380 Walnut St, Portland, OR 97035" -200504,AAA Batteries (4-pack),1,2.99,05/03/19 09:39,"268 Willow St, Los Angeles, CA 90001" -200505,Wired Headphones,1,11.99,05/21/19 15:46,"407 Ridge St, San Francisco, CA 94016" -200506,AAA Batteries (4-pack),1,2.99,05/06/19 10:27,"316 Highland St, New York City, NY 10001" -200506,27in FHD Monitor,1,149.99,05/06/19 10:27,"316 Highland St, New York City, NY 10001" -200507,USB-C Charging Cable,1,11.95,05/10/19 08:45,"376 11th St, Dallas, TX 75001" -200508,Lightning Charging Cable,1,14.95,05/30/19 11:04,"943 South St, San Francisco, CA 94016" -200509,Macbook Pro Laptop,1,1700,05/05/19 12:51,"860 13th St, Boston, MA 02215" -200510,AAA Batteries (4-pack),1,2.99,05/15/19 19:30,"578 Sunset St, San Francisco, CA 94016" -200511,Wired Headphones,1,11.99,05/06/19 10:24,"535 South St, San Francisco, CA 94016" -200512,Bose SoundSport Headphones,1,99.99,05/19/19 22:27,"442 5th St, Seattle, WA 98101" -200513,AA Batteries (4-pack),1,3.84,05/18/19 14:04,"644 Hickory St, San Francisco, CA 94016" -200514,34in Ultrawide Monitor,1,379.99,05/26/19 10:54,"496 10th St, Atlanta, GA 30301" -200515,USB-C Charging Cable,1,11.95,05/07/19 17:21,"898 Meadow St, San Francisco, CA 94016" -200516,AAA Batteries (4-pack),1,2.99,05/31/19 20:31,"368 Spruce St, New York City, NY 10001" -200517,AA Batteries (4-pack),1,3.84,05/03/19 11:31,"151 Pine St, Portland, OR 97035" -200518,AAA Batteries (4-pack),2,2.99,05/12/19 19:54,"235 Adams St, Los Angeles, CA 90001" -200519,Lightning Charging Cable,1,14.95,05/09/19 13:00,"111 Dogwood St, San Francisco, CA 94016" -200520,AAA Batteries (4-pack),1,2.99,05/21/19 08:51,"664 West St, Austin, TX 73301" -200521,Wired Headphones,1,11.99,05/18/19 09:50,"545 North St, Dallas, TX 75001" -200522,Wired Headphones,1,11.99,05/28/19 18:31,"702 Washington St, New York City, NY 10001" -200523,20in Monitor,1,109.99,05/30/19 08:44,"91 North St, San Francisco, CA 94016" -200524,USB-C Charging Cable,1,11.95,05/24/19 05:25,"403 Chestnut St, Boston, MA 02215" -200525,Lightning Charging Cable,1,14.95,05/08/19 10:28,"164 Park St, Los Angeles, CA 90001" -200526,Lightning Charging Cable,1,14.95,05/29/19 12:28,"783 Pine St, San Francisco, CA 94016" -200527,Macbook Pro Laptop,1,1700,05/12/19 11:32,"463 Meadow St, Los Angeles, CA 90001" -200527,USB-C Charging Cable,1,11.95,05/12/19 11:32,"463 Meadow St, Los Angeles, CA 90001" -200528,Macbook Pro Laptop,2,1700,05/13/19 13:40,"643 4th St, Boston, MA 02215" -200529,Bose SoundSport Headphones,1,99.99,05/17/19 21:13,"978 Walnut St, Boston, MA 02215" -200530,Lightning Charging Cable,1,14.95,05/08/19 06:05,"620 6th St, Boston, MA 02215" -200531,AAA Batteries (4-pack),2,2.99,05/27/19 13:20,"226 Lakeview St, Boston, MA 02215" -200531,USB-C Charging Cable,1,11.95,05/27/19 13:20,"226 Lakeview St, Boston, MA 02215" -200532,Google Phone,1,600,05/17/19 14:48,"342 Lake St, Portland, OR 97035" -200533,Wired Headphones,1,11.99,05/02/19 15:11,"616 9th St, Dallas, TX 75001" -200534,USB-C Charging Cable,1,11.95,05/09/19 17:48,"175 Forest St, Los Angeles, CA 90001" -200535,AA Batteries (4-pack),1,3.84,05/18/19 22:19,"956 Lincoln St, Los Angeles, CA 90001" -200536,Vareebadd Phone,1,400,05/24/19 05:16,"317 Cherry St, Atlanta, GA 30301" -200537,USB-C Charging Cable,1,11.95,05/10/19 20:00,"108 6th St, Boston, MA 02215" -200538,Apple Airpods Headphones,1,150,05/24/19 23:47,"87 Madison St, Portland, OR 97035" -200539,Apple Airpods Headphones,1,150,05/19/19 11:20,"176 River St, Seattle, WA 98101" -200540,Apple Airpods Headphones,1,150,05/13/19 03:04,"773 Lake St, San Francisco, CA 94016" -200541,USB-C Charging Cable,1,11.95,05/04/19 09:38,"626 Madison St, Los Angeles, CA 90001" -200542,AA Batteries (4-pack),1,3.84,05/10/19 08:03,"466 13th St, San Francisco, CA 94016" -200543,Apple Airpods Headphones,1,150,05/30/19 15:13,"390 Madison St, Boston, MA 02215" -200544,Apple Airpods Headphones,1,150,05/09/19 10:23,"77 2nd St, Los Angeles, CA 90001" -200545,USB-C Charging Cable,2,11.95,05/25/19 10:43,"976 Chestnut St, Los Angeles, CA 90001" -200546,Vareebadd Phone,1,400,05/17/19 15:26,"95 13th St, Austin, TX 73301" -200546,USB-C Charging Cable,1,11.95,05/17/19 15:26,"95 13th St, Austin, TX 73301" -200547,Google Phone,1,600,05/28/19 09:39,"429 Cherry St, Austin, TX 73301" -200548,Bose SoundSport Headphones,1,99.99,05/08/19 19:26,"880 Elm St, Boston, MA 02215" -200549,Bose SoundSport Headphones,1,99.99,05/11/19 14:27,"977 7th St, Los Angeles, CA 90001" -200550,Lightning Charging Cable,1,14.95,05/08/19 13:26,"362 4th St, San Francisco, CA 94016" -200551,Wired Headphones,1,11.99,05/01/19 20:52,"51 Adams St, Portland, OR 97035" -200552,AAA Batteries (4-pack),1,2.99,05/03/19 11:22,"475 14th St, Boston, MA 02215" -200553,Apple Airpods Headphones,1,150,05/18/19 11:51,"111 Chestnut St, Los Angeles, CA 90001" -200554,Apple Airpods Headphones,1,150,05/26/19 21:12,"341 2nd St, Los Angeles, CA 90001" -200555,AAA Batteries (4-pack),1,2.99,05/26/19 19:45,"523 8th St, Los Angeles, CA 90001" -200556,Bose SoundSport Headphones,1,99.99,05/19/19 17:09,"505 Lake St, Los Angeles, CA 90001" -200557,Google Phone,1,600,05/13/19 12:46,"453 10th St, San Francisco, CA 94016" -200558,Wired Headphones,1,11.99,05/28/19 13:29,"339 6th St, Atlanta, GA 30301" -200559,Apple Airpods Headphones,1,150,05/20/19 12:32,"433 Ridge St, San Francisco, CA 94016" -200560,34in Ultrawide Monitor,1,379.99,05/03/19 18:17,"264 4th St, Boston, MA 02215" -200561,Lightning Charging Cable,1,14.95,05/06/19 18:05,"716 Madison St, Atlanta, GA 30301" -200562,34in Ultrawide Monitor,1,379.99,05/31/19 12:52,"785 12th St, San Francisco, CA 94016" -200563,Google Phone,1,600,05/29/19 08:42,"960 Lake St, New York City, NY 10001" -200564,Bose SoundSport Headphones,1,99.99,05/01/19 21:15,"472 Cherry St, Boston, MA 02215" -200565,AA Batteries (4-pack),1,3.84,05/30/19 18:57,"428 South St, San Francisco, CA 94016" -200566,USB-C Charging Cable,1,11.95,05/14/19 20:19,"798 Forest St, New York City, NY 10001" -200567,USB-C Charging Cable,1,11.95,05/07/19 13:30,"316 Sunset St, San Francisco, CA 94016" -200568,iPhone,1,700,05/22/19 18:35,"583 6th St, San Francisco, CA 94016" -200568,Wired Headphones,1,11.99,05/22/19 18:35,"583 6th St, San Francisco, CA 94016" -200569,USB-C Charging Cable,1,11.95,05/05/19 15:06,"194 Forest St, Los Angeles, CA 90001" -200570,Macbook Pro Laptop,1,1700,05/04/19 21:58,"252 7th St, New York City, NY 10001" -200571,AAA Batteries (4-pack),3,2.99,05/20/19 21:03,"592 Johnson St, San Francisco, CA 94016" -200572,iPhone,1,700,05/01/19 12:51,"549 Walnut St, San Francisco, CA 94016" -200573,27in FHD Monitor,1,149.99,05/20/19 08:27,"824 Adams St, Los Angeles, CA 90001" -200574,AAA Batteries (4-pack),1,2.99,05/12/19 08:29,"652 13th St, San Francisco, CA 94016" -200575,iPhone,1,700,05/23/19 21:32,"456 Center St, Boston, MA 02215" -200575,Lightning Charging Cable,1,14.95,05/23/19 21:32,"456 Center St, Boston, MA 02215" -200576,34in Ultrawide Monitor,1,379.99,05/29/19 14:05,"274 Spruce St, San Francisco, CA 94016" -200577,Bose SoundSport Headphones,1,99.99,05/08/19 18:02,"222 Willow St, Seattle, WA 98101" -200578,AAA Batteries (4-pack),1,2.99,05/06/19 07:52,"237 River St, Los Angeles, CA 90001" -200579,Flatscreen TV,1,300,05/20/19 11:03,"834 Johnson St, Los Angeles, CA 90001" -200580,iPhone,1,700,05/06/19 15:00,"485 Washington St, Boston, MA 02215" -200581,Vareebadd Phone,1,400,05/14/19 16:48,"372 Ridge St, Los Angeles, CA 90001" -200582,Bose SoundSport Headphones,1,99.99,05/24/19 16:39,"53 Pine St, San Francisco, CA 94016" -200583,iPhone,1,700,05/20/19 14:25,"210 Hill St, Austin, TX 73301" -200583,Wired Headphones,1,11.99,05/20/19 14:25,"210 Hill St, Austin, TX 73301" -200584,Wired Headphones,1,11.99,05/12/19 16:22,"123 Hickory St, Atlanta, GA 30301" -200585,Wired Headphones,1,11.99,05/18/19 16:33,"933 Main St, New York City, NY 10001" -200586,Wired Headphones,2,11.99,05/14/19 17:52,"730 1st St, Los Angeles, CA 90001" -200587,Google Phone,1,600,05/30/19 19:05,"807 Elm St, San Francisco, CA 94016" -200588,AA Batteries (4-pack),2,3.84,05/09/19 17:39,"922 Meadow St, Atlanta, GA 30301" -200589,AA Batteries (4-pack),1,3.84,05/10/19 11:42,"81 Meadow St, Boston, MA 02215" -200590,Wired Headphones,1,11.99,05/07/19 19:41,"315 Johnson St, San Francisco, CA 94016" -200591,27in FHD Monitor,1,149.99,05/04/19 01:48,"439 10th St, San Francisco, CA 94016" -200592,27in FHD Monitor,1,149.99,05/06/19 12:55,"445 1st St, New York City, NY 10001" -200593,AA Batteries (4-pack),2,3.84,05/03/19 21:22,"447 Chestnut St, Boston, MA 02215" -200594,iPhone,1,700,05/14/19 16:05,"909 5th St, Dallas, TX 75001" -200595,USB-C Charging Cable,3,11.95,05/28/19 10:59,"670 River St, San Francisco, CA 94016" -200595,Flatscreen TV,1,300,05/28/19 10:59,"670 River St, San Francisco, CA 94016" -200596,Bose SoundSport Headphones,1,99.99,05/22/19 12:36,"580 Jackson St, San Francisco, CA 94016" -200596,27in 4K Gaming Monitor,1,389.99,05/22/19 12:36,"580 Jackson St, San Francisco, CA 94016" -200597,AA Batteries (4-pack),2,3.84,05/12/19 12:15,"863 Cherry St, Portland, OR 97035" -200598,AAA Batteries (4-pack),4,2.99,05/17/19 19:25,"165 Spruce St, Los Angeles, CA 90001" -200599,USB-C Charging Cable,1,11.95,05/11/19 06:51,"659 Forest St, San Francisco, CA 94016" -200600,Bose SoundSport Headphones,1,99.99,05/31/19 15:52,"524 4th St, Boston, MA 02215" -200601,iPhone,1,700,05/11/19 20:03,"917 Center St, Los Angeles, CA 90001" -200602,AAA Batteries (4-pack),1,2.99,05/09/19 11:56,"700 Lakeview St, San Francisco, CA 94016" -200603,AAA Batteries (4-pack),1,2.99,05/09/19 21:46,"486 South St, Dallas, TX 75001" -200604,27in 4K Gaming Monitor,1,389.99,05/14/19 09:40,"554 Adams St, San Francisco, CA 94016" -200605,AAA Batteries (4-pack),1,2.99,05/16/19 15:33,"396 9th St, San Francisco, CA 94016" -200606,AAA Batteries (4-pack),1,2.99,05/27/19 19:29,"918 11th St, Portland, OR 97035" -200607,27in FHD Monitor,1,149.99,05/26/19 20:20,"290 Chestnut St, Dallas, TX 75001" -200608,Macbook Pro Laptop,1,1700,05/25/19 22:42,"479 South St, Los Angeles, CA 90001" -200609,Vareebadd Phone,1,400,05/28/19 09:54,"699 Cedar St, San Francisco, CA 94016" -200610,USB-C Charging Cable,1,11.95,05/28/19 15:01,"285 Hickory St, Los Angeles, CA 90001" -200611,AA Batteries (4-pack),2,3.84,05/28/19 10:44,"522 2nd St, New York City, NY 10001" -200612,AAA Batteries (4-pack),2,2.99,05/02/19 20:29,"351 7th St, San Francisco, CA 94016" -200613,Lightning Charging Cable,1,14.95,05/05/19 19:23,"611 4th St, San Francisco, CA 94016" -200614,Flatscreen TV,1,300,05/01/19 20:40,"774 10th St, Boston, MA 02215" -200615,AAA Batteries (4-pack),3,2.99,05/10/19 13:16,"5 South St, Seattle, WA 98101" -200616,27in 4K Gaming Monitor,1,389.99,05/04/19 17:04,"371 Spruce St, Portland, OR 97035" -200617,Wired Headphones,1,11.99,05/21/19 17:24,"940 Adams St, Los Angeles, CA 90001" -200618,USB-C Charging Cable,1,11.95,05/13/19 09:10,"939 Lake St, Los Angeles, CA 90001" -200619,USB-C Charging Cable,2,11.95,05/20/19 14:44,"854 5th St, San Francisco, CA 94016" -200620,Lightning Charging Cable,1,14.95,05/10/19 08:54,"760 Elm St, Seattle, WA 98101" -200621,Bose SoundSport Headphones,1,99.99,05/09/19 12:55,"968 Main St, San Francisco, CA 94016" -200622,Bose SoundSport Headphones,1,99.99,05/25/19 04:44,"141 Johnson St, New York City, NY 10001" -200623,34in Ultrawide Monitor,1,379.99,05/30/19 13:07,"20 Walnut St, Los Angeles, CA 90001" -200624,Wired Headphones,1,11.99,05/29/19 12:55,"130 Chestnut St, Portland, OR 97035" -200625,Lightning Charging Cable,1,14.95,05/26/19 11:02,"528 South St, Dallas, TX 75001" -200626,34in Ultrawide Monitor,1,379.99,05/10/19 19:31,"344 5th St, San Francisco, CA 94016" -200627,27in FHD Monitor,1,149.99,05/06/19 07:51,"964 Meadow St, Portland, ME 04101" -200628,Apple Airpods Headphones,1,150,05/11/19 17:35,"924 2nd St, Atlanta, GA 30301" -200629,34in Ultrawide Monitor,1,379.99,05/07/19 03:05,"848 Church St, San Francisco, CA 94016" -200630,Bose SoundSport Headphones,1,99.99,05/01/19 10:10,"713 Meadow St, Atlanta, GA 30301" -200631,Lightning Charging Cable,1,14.95,05/16/19 16:18,"688 1st St, Los Angeles, CA 90001" -200632,ThinkPad Laptop,1,999.99,05/22/19 21:08,"943 Pine St, Boston, MA 02215" -200633,AAA Batteries (4-pack),2,2.99,05/20/19 18:15,"856 Jefferson St, San Francisco, CA 94016" -200634,Apple Airpods Headphones,1,150,05/04/19 16:12,"734 Meadow St, San Francisco, CA 94016" -200635,Wired Headphones,1,11.99,05/31/19 18:23,"176 Sunset St, Seattle, WA 98101" -200636,AA Batteries (4-pack),1,3.84,05/27/19 22:47,"787 Dogwood St, San Francisco, CA 94016" -200637,Apple Airpods Headphones,1,150,05/11/19 11:12,"745 Wilson St, New York City, NY 10001" -200638,AA Batteries (4-pack),1,3.84,05/25/19 18:22,"946 Wilson St, Atlanta, GA 30301" -200639,Bose SoundSport Headphones,1,99.99,05/15/19 17:44,"166 Elm St, New York City, NY 10001" -200640,Macbook Pro Laptop,1,1700,05/28/19 18:31,"414 Ridge St, Dallas, TX 75001" -200641,Lightning Charging Cable,1,14.95,05/13/19 22:09,"721 Church St, Los Angeles, CA 90001" -200641,27in 4K Gaming Monitor,1,389.99,05/13/19 22:09,"721 Church St, Los Angeles, CA 90001" -200642,Lightning Charging Cable,1,14.95,05/28/19 01:11,"441 1st St, Atlanta, GA 30301" -200643,Lightning Charging Cable,1,14.95,05/22/19 11:25,"815 14th St, San Francisco, CA 94016" -200644,AAA Batteries (4-pack),1,2.99,05/30/19 18:33,"905 11th St, New York City, NY 10001" -200645,20in Monitor,2,109.99,05/23/19 17:48,"141 Ridge St, Los Angeles, CA 90001" -200645,AA Batteries (4-pack),1,3.84,05/23/19 17:48,"141 Ridge St, Los Angeles, CA 90001" -200646,USB-C Charging Cable,2,11.95,05/30/19 10:39,"856 West St, San Francisco, CA 94016" -200647,Lightning Charging Cable,1,14.95,05/12/19 09:34,"813 9th St, Boston, MA 02215" -200648,Apple Airpods Headphones,1,150,05/08/19 12:00,"899 Chestnut St, Boston, MA 02215" -200649,AA Batteries (4-pack),1,3.84,05/26/19 19:13,"725 Ridge St, Seattle, WA 98101" -200650,Apple Airpods Headphones,1,150,05/14/19 16:20,"890 Maple St, New York City, NY 10001" -200650,AAA Batteries (4-pack),2,2.99,05/14/19 16:20,"890 Maple St, New York City, NY 10001" -200651,27in FHD Monitor,1,149.99,05/19/19 04:27,"49 Dogwood St, Los Angeles, CA 90001" -200652,Wired Headphones,1,11.99,05/05/19 22:07,"362 Maple St, Los Angeles, CA 90001" -200653,27in 4K Gaming Monitor,1,389.99,05/29/19 18:57,"69 Highland St, Portland, OR 97035" -200653,Google Phone,1,600,05/29/19 18:57,"69 Highland St, Portland, OR 97035" -200654,ThinkPad Laptop,1,999.99,05/29/19 13:55,"194 Walnut St, New York City, NY 10001" -200655,34in Ultrawide Monitor,1,379.99,05/12/19 22:48,"972 4th St, Los Angeles, CA 90001" -200656,AA Batteries (4-pack),1,3.84,05/22/19 22:30,"119 Church St, San Francisco, CA 94016" -200657,Lightning Charging Cable,1,14.95,05/24/19 12:43,"117 Center St, Los Angeles, CA 90001" -200658,20in Monitor,1,109.99,05/31/19 21:22,"979 Lincoln St, Austin, TX 73301" -200659,ThinkPad Laptop,1,999.99,05/02/19 17:35,"522 Wilson St, San Francisco, CA 94016" -200660,27in FHD Monitor,1,149.99,05/30/19 15:30,"121 2nd St, Seattle, WA 98101" -200661,27in 4K Gaming Monitor,1,389.99,05/15/19 10:23,"952 Cedar St, Boston, MA 02215" -200662,AA Batteries (4-pack),4,3.84,05/09/19 14:48,"1 7th St, Los Angeles, CA 90001" -200663,AA Batteries (4-pack),2,3.84,05/31/19 22:03,"336 Jefferson St, San Francisco, CA 94016" -200664,Lightning Charging Cable,1,14.95,05/13/19 19:45,"292 Jefferson St, Los Angeles, CA 90001" -200665,Wired Headphones,1,11.99,05/22/19 11:03,"472 Madison St, San Francisco, CA 94016" -200666,34in Ultrawide Monitor,1,379.99,05/28/19 00:10,"2 Cherry St, San Francisco, CA 94016" -200667,27in 4K Gaming Monitor,1,389.99,05/28/19 13:10,"466 Jefferson St, Boston, MA 02215" -200668,AAA Batteries (4-pack),2,2.99,05/07/19 10:50,"153 Park St, San Francisco, CA 94016" -200669,Wired Headphones,1,11.99,05/08/19 21:31,"907 Wilson St, San Francisco, CA 94016" -200670,Lightning Charging Cable,1,14.95,05/15/19 11:26,"848 Lincoln St, Portland, OR 97035" -200671,Lightning Charging Cable,1,14.95,05/11/19 16:52,"158 Wilson St, Dallas, TX 75001" -200672,USB-C Charging Cable,1,11.95,05/28/19 17:42,"27 Park St, Boston, MA 02215" -200673,Apple Airpods Headphones,1,150,05/22/19 21:51,"915 Wilson St, San Francisco, CA 94016" -200674,Wired Headphones,1,11.99,05/04/19 06:41,"546 River St, Atlanta, GA 30301" -200675,AA Batteries (4-pack),1,3.84,05/16/19 16:01,"619 Wilson St, Los Angeles, CA 90001" -200676,USB-C Charging Cable,1,11.95,05/13/19 06:19,"330 7th St, San Francisco, CA 94016" -200677,AAA Batteries (4-pack),1,2.99,05/29/19 13:52,"264 Willow St, Boston, MA 02215" -200678,AA Batteries (4-pack),1,3.84,05/19/19 18:39,"519 Lake St, Boston, MA 02215" -200679,USB-C Charging Cable,1,11.95,05/18/19 09:56,"586 Center St, Atlanta, GA 30301" -200680,AA Batteries (4-pack),1,3.84,05/03/19 13:28,"387 Spruce St, Boston, MA 02215" -200681,27in FHD Monitor,1,149.99,05/22/19 12:16,"908 West St, Dallas, TX 75001" -200682,iPhone,1,700,05/22/19 23:22,"864 Maple St, Los Angeles, CA 90001" -200683,AAA Batteries (4-pack),2,2.99,05/02/19 10:46,"696 Lincoln St, New York City, NY 10001" -200684,Bose SoundSport Headphones,1,99.99,05/13/19 23:18,"770 10th St, New York City, NY 10001" -200685,AAA Batteries (4-pack),1,2.99,05/12/19 20:42,"799 Ridge St, Boston, MA 02215" -200686,AAA Batteries (4-pack),1,2.99,05/06/19 11:34,"23 Pine St, Dallas, TX 75001" -200687,Lightning Charging Cable,1,14.95,05/11/19 11:31,"878 7th St, Atlanta, GA 30301" -200688,27in 4K Gaming Monitor,1,389.99,05/22/19 10:31,"731 Wilson St, Los Angeles, CA 90001" -200689,USB-C Charging Cable,1,11.95,05/30/19 13:24,"804 13th St, Portland, ME 04101" -200690,27in FHD Monitor,1,149.99,05/20/19 19:31,"781 Maple St, Los Angeles, CA 90001" -200691,Bose SoundSport Headphones,1,99.99,05/14/19 15:38,"261 Johnson St, Dallas, TX 75001" -200692,AA Batteries (4-pack),1,3.84,05/02/19 02:17,"163 Chestnut St, Los Angeles, CA 90001" -200693,AAA Batteries (4-pack),1,2.99,05/29/19 11:08,"747 Meadow St, San Francisco, CA 94016" -200694,34in Ultrawide Monitor,1,379.99,05/01/19 14:49,"690 Cedar St, Los Angeles, CA 90001" -200695,Wired Headphones,1,11.99,05/31/19 11:28,"934 Church St, Atlanta, GA 30301" -200696,20in Monitor,1,109.99,05/18/19 18:44,"461 Lincoln St, Atlanta, GA 30301" -200697,Google Phone,1,600,05/05/19 22:54,"989 Meadow St, Los Angeles, CA 90001" -200698,AAA Batteries (4-pack),2,2.99,05/18/19 10:44,"340 Spruce St, New York City, NY 10001" -200699,AAA Batteries (4-pack),1,2.99,05/13/19 15:20,"160 Maple St, San Francisco, CA 94016" -200700,27in FHD Monitor,1,149.99,05/28/19 10:44,"230 Wilson St, San Francisco, CA 94016" -200701,Apple Airpods Headphones,1,150,05/23/19 10:42,"855 Church St, San Francisco, CA 94016" -200702,USB-C Charging Cable,2,11.95,05/21/19 09:02,"716 5th St, San Francisco, CA 94016" -200703,AA Batteries (4-pack),1,3.84,05/19/19 20:41,"697 Maple St, San Francisco, CA 94016" -200704,Apple Airpods Headphones,1,150,05/24/19 15:47,"870 Walnut St, New York City, NY 10001" -200705,Macbook Pro Laptop,1,1700,05/21/19 05:53,"179 Washington St, San Francisco, CA 94016" -200706,27in 4K Gaming Monitor,1,389.99,05/25/19 20:17,"592 Church St, Seattle, WA 98101" -200707,Lightning Charging Cable,1,14.95,05/03/19 20:55,"885 Elm St, Seattle, WA 98101" -200708,Apple Airpods Headphones,1,150,05/26/19 17:00,"539 2nd St, Boston, MA 02215" -200709,AA Batteries (4-pack),2,3.84,05/19/19 19:24,"557 Dogwood St, Seattle, WA 98101" -200710,Wired Headphones,1,11.99,05/05/19 10:24,"621 South St, Atlanta, GA 30301" -200711,Wired Headphones,1,11.99,05/21/19 14:34,"715 Elm St, Los Angeles, CA 90001" -200712,AA Batteries (4-pack),1,3.84,05/26/19 16:27,"321 5th St, New York City, NY 10001" -200713,27in 4K Gaming Monitor,1,389.99,05/26/19 09:43,"749 River St, New York City, NY 10001" -200714,34in Ultrawide Monitor,1,379.99,05/19/19 19:34,"878 1st St, Seattle, WA 98101" -200715,Google Phone,1,600,05/04/19 04:10,"698 Cedar St, Boston, MA 02215" -200716,USB-C Charging Cable,1,11.95,05/22/19 07:26,"834 Jackson St, San Francisco, CA 94016" -200717,AAA Batteries (4-pack),1,2.99,05/25/19 00:31,"442 Cherry St, San Francisco, CA 94016" -200718,USB-C Charging Cable,1,11.95,05/13/19 23:13,"132 Center St, Dallas, TX 75001" -200719,USB-C Charging Cable,1,11.95,05/05/19 10:03,"300 Madison St, Seattle, WA 98101" -200720,AA Batteries (4-pack),1,3.84,05/09/19 20:18,"976 Adams St, Boston, MA 02215" -200721,Wired Headphones,1,11.99,05/27/19 21:12,"926 Sunset St, Dallas, TX 75001" -200722,Bose SoundSport Headphones,1,99.99,05/17/19 13:34,"887 Church St, Boston, MA 02215" -200723,iPhone,1,700,05/22/19 18:32,"189 Walnut St, San Francisco, CA 94016" -200723,Lightning Charging Cable,1,14.95,05/22/19 18:32,"189 Walnut St, San Francisco, CA 94016" -200724,Wired Headphones,1,11.99,05/03/19 10:24,"380 Highland St, Austin, TX 73301" -200725,AAA Batteries (4-pack),1,2.99,05/29/19 23:48,"474 Hickory St, New York City, NY 10001" -200726,Vareebadd Phone,1,400,05/17/19 06:24,"579 12th St, San Francisco, CA 94016" -200727,27in 4K Gaming Monitor,1,389.99,05/27/19 21:38,"363 Washington St, San Francisco, CA 94016" -200728,Google Phone,1,600,05/22/19 13:32,"253 Center St, Boston, MA 02215" -200729,27in 4K Gaming Monitor,1,389.99,05/19/19 07:07,"649 Jackson St, San Francisco, CA 94016" -200729,iPhone,1,700,05/19/19 07:07,"649 Jackson St, San Francisco, CA 94016" -200730,AA Batteries (4-pack),1,3.84,05/26/19 11:34,"93 Maple St, San Francisco, CA 94016" -200731,AAA Batteries (4-pack),1,2.99,05/11/19 22:37,"7 Pine St, San Francisco, CA 94016" -200732,Lightning Charging Cable,1,14.95,05/26/19 17:19,"830 North St, San Francisco, CA 94016" -200733,Wired Headphones,1,11.99,05/08/19 20:39,"744 Church St, San Francisco, CA 94016" -200734,Apple Airpods Headphones,1,150,05/05/19 15:52,"667 10th St, Boston, MA 02215" -200735,AA Batteries (4-pack),1,3.84,05/09/19 13:41,"894 Lincoln St, Seattle, WA 98101" -200736,AAA Batteries (4-pack),2,2.99,05/29/19 12:09,"149 2nd St, Dallas, TX 75001" -200737,Lightning Charging Cable,2,14.95,05/26/19 19:55,"777 Chestnut St, Boston, MA 02215" -200738,27in FHD Monitor,1,149.99,05/26/19 14:05,"725 12th St, New York City, NY 10001" -200739,AA Batteries (4-pack),2,3.84,05/14/19 15:28,"427 Washington St, Los Angeles, CA 90001" -200740,Flatscreen TV,1,300,05/03/19 14:35,"505 Dogwood St, Seattle, WA 98101" -200741,Bose SoundSport Headphones,1,99.99,05/18/19 11:01,"917 Ridge St, San Francisco, CA 94016" -200742,AAA Batteries (4-pack),1,2.99,05/09/19 19:53,"174 West St, Seattle, WA 98101" -200743,27in 4K Gaming Monitor,2,389.99,05/25/19 10:13,"833 North St, San Francisco, CA 94016" -200744,USB-C Charging Cable,1,11.95,05/18/19 19:13,"376 Main St, Dallas, TX 75001" -200745,Wired Headphones,1,11.99,05/05/19 14:33,"143 Pine St, New York City, NY 10001" -200746,Bose SoundSport Headphones,1,99.99,05/04/19 08:06,"733 Adams St, San Francisco, CA 94016" -200747,Flatscreen TV,1,300,05/09/19 20:22,"1 Adams St, Boston, MA 02215" -200748,Bose SoundSport Headphones,1,99.99,05/13/19 17:37,"806 7th St, Los Angeles, CA 90001" -200749,27in FHD Monitor,1,149.99,05/25/19 20:38,"265 Main St, San Francisco, CA 94016" -200750,Bose SoundSport Headphones,1,99.99,05/28/19 14:35,"921 Jefferson St, Atlanta, GA 30301" -200751,Wired Headphones,1,11.99,05/23/19 08:07,"211 River St, Portland, OR 97035" -200752,34in Ultrawide Monitor,1,379.99,05/26/19 00:56,"438 Jackson St, Dallas, TX 75001" -200753,AA Batteries (4-pack),2,3.84,05/30/19 18:38,"63 Center St, San Francisco, CA 94016" -200754,Bose SoundSport Headphones,1,99.99,05/26/19 09:50,"602 9th St, Los Angeles, CA 90001" -200755,34in Ultrawide Monitor,1,379.99,05/27/19 14:27,"195 Highland St, Boston, MA 02215" -200756,Apple Airpods Headphones,1,150,05/01/19 16:27,"688 Cedar St, Los Angeles, CA 90001" -200757,Google Phone,1,600,05/05/19 20:27,"887 Ridge St, Boston, MA 02215" -200757,USB-C Charging Cable,2,11.95,05/05/19 20:27,"887 Ridge St, Boston, MA 02215" -200758,Wired Headphones,1,11.99,05/03/19 20:14,"820 6th St, Boston, MA 02215" -200759,Apple Airpods Headphones,1,150,05/04/19 16:21,"11 Hill St, Atlanta, GA 30301" -200760,Wired Headphones,1,11.99,05/06/19 15:04,"975 Meadow St, Dallas, TX 75001" -200761,iPhone,1,700,05/12/19 16:00,"130 South St, Portland, ME 04101" -200761,Lightning Charging Cable,1,14.95,05/12/19 16:00,"130 South St, Portland, ME 04101" -200762,Macbook Pro Laptop,1,1700,05/27/19 08:41,"534 Cherry St, Dallas, TX 75001" -200763,27in FHD Monitor,1,149.99,05/17/19 20:37,"849 Meadow St, Austin, TX 73301" -200764,Wired Headphones,1,11.99,05/27/19 21:16,"148 Spruce St, New York City, NY 10001" -200765,Apple Airpods Headphones,1,150,05/09/19 20:16,"359 5th St, Boston, MA 02215" -200766,AA Batteries (4-pack),1,3.84,05/31/19 19:21,"188 Willow St, San Francisco, CA 94016" -200767,AAA Batteries (4-pack),2,2.99,05/14/19 17:57,"23 13th St, Dallas, TX 75001" -200768,Apple Airpods Headphones,1,150,05/04/19 17:16,"866 Hill St, Seattle, WA 98101" -200769,Bose SoundSport Headphones,1,99.99,05/03/19 13:41,"376 Cedar St, San Francisco, CA 94016" -200770,USB-C Charging Cable,1,11.95,05/05/19 07:46,"297 Lake St, Seattle, WA 98101" -200771,27in 4K Gaming Monitor,1,389.99,05/31/19 14:04,"297 South St, San Francisco, CA 94016" -200772,Wired Headphones,1,11.99,05/27/19 18:57,"485 Cedar St, San Francisco, CA 94016" -200773,Wired Headphones,1,11.99,05/12/19 19:51,"809 Cherry St, Dallas, TX 75001" -200774,Flatscreen TV,1,300,05/19/19 10:41,"141 Walnut St, San Francisco, CA 94016" -200775,AAA Batteries (4-pack),2,2.99,05/13/19 17:49,"837 Hill St, Seattle, WA 98101" -200776,USB-C Charging Cable,1,11.95,05/23/19 02:31,"178 West St, Boston, MA 02215" -200777,Lightning Charging Cable,1,14.95,05/07/19 23:24,"466 Wilson St, San Francisco, CA 94016" -200778,AAA Batteries (4-pack),1,2.99,05/14/19 12:15,"326 Center St, Los Angeles, CA 90001" -200779,USB-C Charging Cable,1,11.95,05/14/19 14:40,"287 Ridge St, San Francisco, CA 94016" -200780,Flatscreen TV,1,300,05/30/19 14:53,"297 12th St, Portland, OR 97035" -200781,AA Batteries (4-pack),1,3.84,05/17/19 10:19,"527 Ridge St, Los Angeles, CA 90001" -200782,20in Monitor,1,109.99,05/02/19 11:09,"45 South St, San Francisco, CA 94016" -200783,Wired Headphones,1,11.99,05/20/19 11:26,"393 Cherry St, Austin, TX 73301" -200784,AA Batteries (4-pack),1,3.84,05/07/19 20:04,"757 12th St, Los Angeles, CA 90001" -200785,34in Ultrawide Monitor,1,379.99,05/10/19 21:05,"570 10th St, Seattle, WA 98101" -200786,ThinkPad Laptop,1,999.99,05/25/19 12:02,"824 6th St, Atlanta, GA 30301" -200787,34in Ultrawide Monitor,1,379.99,05/06/19 17:44,"617 Jackson St, Boston, MA 02215" -200788,Wired Headphones,1,11.99,05/02/19 16:05,"669 7th St, Boston, MA 02215" -200789,AA Batteries (4-pack),1,3.84,05/31/19 00:49,"794 Hickory St, Los Angeles, CA 90001" -200790,AA Batteries (4-pack),1,3.84,05/17/19 12:11,"721 Madison St, Los Angeles, CA 90001" -200791,AAA Batteries (4-pack),1,2.99,05/17/19 18:28,"302 Hickory St, Los Angeles, CA 90001" -200792,Lightning Charging Cable,1,14.95,05/25/19 12:06,"270 Center St, San Francisco, CA 94016" -200793,Google Phone,1,600,05/07/19 19:45,"739 Johnson St, San Francisco, CA 94016" -200794,27in FHD Monitor,1,149.99,05/23/19 00:21,"113 13th St, Boston, MA 02215" -200795,iPhone,1,700,05/28/19 11:23,"149 1st St, Dallas, TX 75001" -200796,AAA Batteries (4-pack),2,2.99,05/03/19 22:00,"694 Lakeview St, Atlanta, GA 30301" -200797,Bose SoundSport Headphones,1,99.99,05/13/19 15:31,"819 North St, San Francisco, CA 94016" -200798,Macbook Pro Laptop,1,1700,05/17/19 08:25,"25 13th St, San Francisco, CA 94016" -200799,27in FHD Monitor,1,149.99,05/17/19 12:30,"290 14th St, Los Angeles, CA 90001" -200800,USB-C Charging Cable,1,11.95,05/10/19 16:18,"58 11th St, New York City, NY 10001" -200801,Wired Headphones,1,11.99,05/02/19 22:53,"270 Willow St, Seattle, WA 98101" -200802,AA Batteries (4-pack),1,3.84,05/03/19 12:25,"414 South St, Atlanta, GA 30301" -200803,AAA Batteries (4-pack),1,2.99,05/11/19 14:31,"539 Washington St, Boston, MA 02215" -200804,Wired Headphones,1,11.99,05/31/19 11:03,"784 North St, Los Angeles, CA 90001" -200805,27in 4K Gaming Monitor,1,389.99,05/13/19 23:43,"56 12th St, Seattle, WA 98101" -200806,Bose SoundSport Headphones,1,99.99,05/17/19 13:15,"81 Elm St, Boston, MA 02215" -200807,Apple Airpods Headphones,1,150,05/08/19 15:48,"37 Dogwood St, Seattle, WA 98101" -200808,AA Batteries (4-pack),2,3.84,05/26/19 18:52,"198 Cherry St, Austin, TX 73301" -200809,Wired Headphones,1,11.99,05/29/19 22:30,"690 Cherry St, San Francisco, CA 94016" -200810,USB-C Charging Cable,1,11.95,05/24/19 22:24,"153 6th St, Dallas, TX 75001" -200811,AAA Batteries (4-pack),1,2.99,05/20/19 17:00,"511 Willow St, New York City, NY 10001" -200812,Flatscreen TV,1,300,05/25/19 07:58,"705 Forest St, Atlanta, GA 30301" -200813,AAA Batteries (4-pack),1,2.99,05/13/19 02:26,"187 Ridge St, New York City, NY 10001" -200814,34in Ultrawide Monitor,1,379.99,05/24/19 14:36,"283 Hill St, New York City, NY 10001" -200815,USB-C Charging Cable,1,11.95,05/29/19 19:50,"291 Washington St, New York City, NY 10001" -200816,AAA Batteries (4-pack),1,2.99,05/06/19 11:41,"960 Cherry St, San Francisco, CA 94016" -200817,Lightning Charging Cable,1,14.95,05/23/19 10:19,"484 Lake St, San Francisco, CA 94016" -200818,USB-C Charging Cable,1,11.95,05/28/19 10:21,"906 Cedar St, Portland, OR 97035" -200819,27in 4K Gaming Monitor,1,389.99,05/27/19 22:19,"254 North St, San Francisco, CA 94016" -200820,Wired Headphones,1,11.99,05/24/19 13:16,"635 Hill St, Atlanta, GA 30301" -200821,Lightning Charging Cable,1,14.95,05/12/19 16:00,"121 4th St, Boston, MA 02215" -200821,34in Ultrawide Monitor,1,379.99,05/12/19 16:00,"121 4th St, Boston, MA 02215" -200822,AAA Batteries (4-pack),1,2.99,05/26/19 16:04,"498 13th St, Austin, TX 73301" -200823,Macbook Pro Laptop,1,1700,05/08/19 11:24,"434 Cedar St, Boston, MA 02215" -200824,AAA Batteries (4-pack),2,2.99,05/25/19 05:54,"482 13th St, San Francisco, CA 94016" -200825,Bose SoundSport Headphones,1,99.99,05/14/19 22:08,"160 9th St, New York City, NY 10001" -200826,AA Batteries (4-pack),1,3.84,05/08/19 18:09,"12 Chestnut St, Seattle, WA 98101" -200827,AAA Batteries (4-pack),1,2.99,05/02/19 13:46,"964 Pine St, Boston, MA 02215" -200828,27in FHD Monitor,1,149.99,05/27/19 07:53,"425 Jackson St, New York City, NY 10001" -200829,Apple Airpods Headphones,1,150,05/28/19 21:19,"533 8th St, New York City, NY 10001" -200830,AAA Batteries (4-pack),2,2.99,05/01/19 11:28,"750 Church St, Austin, TX 73301" -200831,Google Phone,1,600,05/12/19 23:47,"48 Washington St, San Francisco, CA 94016" -200832,USB-C Charging Cable,1,11.95,05/09/19 17:12,"587 Cedar St, San Francisco, CA 94016" -200833,AA Batteries (4-pack),1,3.84,05/30/19 12:43,"708 9th St, Seattle, WA 98101" -200834,AA Batteries (4-pack),2,3.84,05/22/19 12:59,"889 Wilson St, Los Angeles, CA 90001" -200835,Apple Airpods Headphones,1,150,05/17/19 09:47,"882 Meadow St, Portland, OR 97035" -200836,AAA Batteries (4-pack),1,2.99,05/06/19 13:33,"377 Adams St, Dallas, TX 75001" -200836,AAA Batteries (4-pack),3,2.99,05/06/19 13:33,"377 Adams St, Dallas, TX 75001" -200837,Bose SoundSport Headphones,1,99.99,05/14/19 00:26,"1 Lincoln St, Boston, MA 02215" -200838,AAA Batteries (4-pack),2,2.99,05/06/19 08:58,"482 Spruce St, Atlanta, GA 30301" -200839,AAA Batteries (4-pack),1,2.99,05/16/19 12:39,"539 Meadow St, Boston, MA 02215" -200840,AAA Batteries (4-pack),1,2.99,05/31/19 18:56,"792 Lake St, New York City, NY 10001" -200841,27in 4K Gaming Monitor,1,389.99,05/19/19 15:20,"293 Washington St, Portland, OR 97035" -200842,AA Batteries (4-pack),1,3.84,05/31/19 12:14,"464 2nd St, Los Angeles, CA 90001" -200843,Bose SoundSport Headphones,1,99.99,05/07/19 19:27,"449 Forest St, New York City, NY 10001" -200844,Flatscreen TV,1,300,05/16/19 15:10,"314 Ridge St, San Francisco, CA 94016" -200845,USB-C Charging Cable,1,11.95,05/07/19 22:44,"966 West St, Los Angeles, CA 90001" -200846,USB-C Charging Cable,1,11.95,05/29/19 22:19,"93 Main St, Atlanta, GA 30301" -200847,Wired Headphones,1,11.99,05/09/19 23:33,"661 Madison St, Los Angeles, CA 90001" -200847,AAA Batteries (4-pack),4,2.99,05/09/19 23:33,"661 Madison St, Los Angeles, CA 90001" -200848,Lightning Charging Cable,1,14.95,05/20/19 11:33,"101 Walnut St, New York City, NY 10001" -200849,Apple Airpods Headphones,1,150,05/27/19 17:33,"4 Cedar St, New York City, NY 10001" -200850,Lightning Charging Cable,1,14.95,05/23/19 09:54,"114 Hill St, San Francisco, CA 94016" -200851,ThinkPad Laptop,1,999.99,05/17/19 12:26,"262 Cedar St, Boston, MA 02215" -200851,AAA Batteries (4-pack),1,2.99,05/17/19 12:26,"262 Cedar St, Boston, MA 02215" -200852,Bose SoundSport Headphones,1,99.99,05/19/19 16:17,"841 Lake St, New York City, NY 10001" -200853,Bose SoundSport Headphones,1,99.99,05/23/19 20:28,"303 Madison St, Austin, TX 73301" -200854,USB-C Charging Cable,1,11.95,05/29/19 17:04,"842 14th St, Austin, TX 73301" -200855,Apple Airpods Headphones,1,150,05/09/19 08:40,"379 5th St, New York City, NY 10001" -200856,Apple Airpods Headphones,1,150,05/11/19 17:11,"53 Pine St, Seattle, WA 98101" -200857,Wired Headphones,1,11.99,05/01/19 12:08,"976 Jefferson St, San Francisco, CA 94016" -200858,USB-C Charging Cable,3,11.95,05/20/19 17:37,"139 Maple St, San Francisco, CA 94016" -200859,Apple Airpods Headphones,1,150,05/26/19 12:36,"521 Hill St, San Francisco, CA 94016" -200860,Wired Headphones,1,11.99,05/24/19 14:27,"327 Ridge St, Boston, MA 02215" -200861,AAA Batteries (4-pack),2,2.99,05/11/19 17:25,"673 Lake St, San Francisco, CA 94016" -200862,AAA Batteries (4-pack),1,2.99,05/07/19 13:06,"407 Madison St, Dallas, TX 75001" -200863,Macbook Pro Laptop,1,1700,05/17/19 16:46,"828 Dogwood St, Los Angeles, CA 90001" -200864,Lightning Charging Cable,1,14.95,05/24/19 15:32,"466 Lakeview St, Boston, MA 02215" -200865,USB-C Charging Cable,1,11.95,05/02/19 16:56,"970 Hickory St, Los Angeles, CA 90001" -200866,AAA Batteries (4-pack),1,2.99,05/14/19 21:32,"216 Walnut St, Dallas, TX 75001" -200867,Lightning Charging Cable,1,14.95,05/06/19 17:28,"805 Adams St, Los Angeles, CA 90001" -200868,USB-C Charging Cable,1,11.95,05/10/19 06:12,"867 Elm St, New York City, NY 10001" -200869,27in FHD Monitor,1,149.99,05/14/19 12:23,"895 Ridge St, New York City, NY 10001" -200870,AA Batteries (4-pack),1,3.84,05/21/19 13:04,"311 11th St, San Francisco, CA 94016" -200871,Bose SoundSport Headphones,1,99.99,05/28/19 16:45,"533 13th St, Seattle, WA 98101" -200872,AAA Batteries (4-pack),3,2.99,05/10/19 22:59,"780 13th St, Los Angeles, CA 90001" -200873,AA Batteries (4-pack),1,3.84,05/26/19 13:37,"521 Highland St, San Francisco, CA 94016" -200874,27in FHD Monitor,1,149.99,05/11/19 10:17,"969 Jackson St, San Francisco, CA 94016" -200875,34in Ultrawide Monitor,1,379.99,05/01/19 17:33,"194 5th St, Los Angeles, CA 90001" -200876,USB-C Charging Cable,1,11.95,05/25/19 11:19,"744 Forest St, San Francisco, CA 94016" -200877,Wired Headphones,1,11.99,05/27/19 12:32,"409 Cedar St, San Francisco, CA 94016" -200878,AAA Batteries (4-pack),2,2.99,05/29/19 23:54,"643 Walnut St, New York City, NY 10001" -200879,27in FHD Monitor,1,149.99,05/23/19 09:08,"541 Chestnut St, San Francisco, CA 94016" -200879,Bose SoundSport Headphones,1,99.99,05/23/19 09:08,"541 Chestnut St, San Francisco, CA 94016" -200880,ThinkPad Laptop,1,999.99,05/10/19 18:14,"184 River St, Portland, OR 97035" -200881,Wired Headphones,1,11.99,05/07/19 14:32,"97 Cherry St, Boston, MA 02215" -200882,Apple Airpods Headphones,1,150,05/01/19 17:15,"161 Meadow St, Atlanta, GA 30301" -200883,AAA Batteries (4-pack),1,2.99,05/29/19 08:28,"267 North St, Boston, MA 02215" -200884,Lightning Charging Cable,1,14.95,05/16/19 11:17,"803 Forest St, Atlanta, GA 30301" -200885,Apple Airpods Headphones,1,150,05/21/19 19:03,"397 Hill St, Dallas, TX 75001" -200886,20in Monitor,1,109.99,05/02/19 19:27,"680 Willow St, San Francisco, CA 94016" -200887,27in FHD Monitor,1,149.99,05/24/19 02:59,"972 10th St, San Francisco, CA 94016" -200888,Bose SoundSport Headphones,1,99.99,05/31/19 11:57,"446 Madison St, New York City, NY 10001" -,,,,, -200889,iPhone,1,700,05/22/19 18:53,"999 Spruce St, San Francisco, CA 94016" -200890,USB-C Charging Cable,1,11.95,05/27/19 19:07,"868 11th St, New York City, NY 10001" -200891,34in Ultrawide Monitor,1,379.99,05/10/19 16:00,"653 Hickory St, San Francisco, CA 94016" -200892,USB-C Charging Cable,1,11.95,05/18/19 11:38,"841 Willow St, Austin, TX 73301" -200893,Apple Airpods Headphones,1,150,05/21/19 09:40,"938 Dogwood St, Austin, TX 73301" -200894,LG Washing Machine,1,600.0,05/06/19 10:45,"923 Dogwood St, New York City, NY 10001" -200895,Bose SoundSport Headphones,1,99.99,05/09/19 09:51,"412 9th St, Portland, OR 97035" -200896,Apple Airpods Headphones,1,150,05/29/19 13:54,"34 Jefferson St, Atlanta, GA 30301" -200897,27in 4K Gaming Monitor,1,389.99,05/14/19 13:13,"71 Johnson St, Dallas, TX 75001" -200898,34in Ultrawide Monitor,1,379.99,05/05/19 13:09,"534 Lincoln St, Los Angeles, CA 90001" -200899,Lightning Charging Cable,1,14.95,05/11/19 15:00,"242 Wilson St, San Francisco, CA 94016" -200900,USB-C Charging Cable,1,11.95,05/08/19 22:25,"315 11th St, Los Angeles, CA 90001" -200901,ThinkPad Laptop,1,999.99,05/12/19 11:05,"488 Park St, Dallas, TX 75001" -200902,Macbook Pro Laptop,1,1700,05/26/19 22:06,"358 Cedar St, San Francisco, CA 94016" -200903,USB-C Charging Cable,1,11.95,05/08/19 17:17,"49 Spruce St, New York City, NY 10001" -200904,Flatscreen TV,1,300,05/18/19 10:34,"697 Elm St, San Francisco, CA 94016" -200905,Bose SoundSport Headphones,1,99.99,05/25/19 19:16,"832 Park St, Boston, MA 02215" -200906,Lightning Charging Cable,1,14.95,05/19/19 13:21,"221 Elm St, New York City, NY 10001" -200906,USB-C Charging Cable,1,11.95,05/19/19 13:21,"221 Elm St, New York City, NY 10001" -200907,iPhone,1,700,05/11/19 22:37,"827 South St, Boston, MA 02215" -200908,Apple Airpods Headphones,1,150,05/02/19 11:55,"517 Dogwood St, Los Angeles, CA 90001" -200909,Flatscreen TV,1,300,05/04/19 16:39,"156 2nd St, Dallas, TX 75001" -200910,Bose SoundSport Headphones,1,99.99,05/09/19 11:49,"671 10th St, San Francisco, CA 94016" -200911,AAA Batteries (4-pack),1,2.99,05/04/19 09:37,"627 Johnson St, Boston, MA 02215" -200912,27in 4K Gaming Monitor,1,389.99,05/18/19 21:09,"415 Spruce St, Portland, OR 97035" -200913,Wired Headphones,1,11.99,05/19/19 20:31,"56 Meadow St, Boston, MA 02215" -200914,Lightning Charging Cable,1,14.95,05/02/19 19:18,"215 Ridge St, Los Angeles, CA 90001" -200915,AA Batteries (4-pack),1,3.84,05/25/19 19:06,"132 7th St, Boston, MA 02215" -200916,USB-C Charging Cable,1,11.95,05/24/19 11:26,"370 8th St, San Francisco, CA 94016" -200917,20in Monitor,1,109.99,06/01/19 00:36,"761 Highland St, Austin, TX 73301" -200918,Vareebadd Phone,1,400,05/08/19 16:18,"262 6th St, Los Angeles, CA 90001" -200919,AA Batteries (4-pack),1,3.84,05/23/19 18:22,"757 Johnson St, San Francisco, CA 94016" -200920,27in FHD Monitor,1,149.99,05/19/19 20:39,"590 4th St, Seattle, WA 98101" -200921,27in 4K Gaming Monitor,1,389.99,05/11/19 19:30,"625 11th St, Portland, ME 04101" -200922,AAA Batteries (4-pack),2,2.99,05/28/19 12:25,"594 Forest St, Los Angeles, CA 90001" -200923,AA Batteries (4-pack),1,3.84,05/01/19 07:01,"732 Jackson St, New York City, NY 10001" -200924,Lightning Charging Cable,1,14.95,05/22/19 14:28,"448 13th St, Atlanta, GA 30301" -200925,AA Batteries (4-pack),1,3.84,05/15/19 18:43,"374 Main St, Boston, MA 02215" -200926,Lightning Charging Cable,1,14.95,05/29/19 09:13,"890 South St, Dallas, TX 75001" -200927,Google Phone,1,600,05/24/19 20:49,"45 North St, New York City, NY 10001" -200928,AA Batteries (4-pack),1,3.84,05/28/19 03:01,"622 South St, Boston, MA 02215" -200929,iPhone,1,700,05/11/19 11:23,"463 Pine St, Boston, MA 02215" -200930,Lightning Charging Cable,1,14.95,05/21/19 20:42,"415 West St, San Francisco, CA 94016" -200931,27in 4K Gaming Monitor,1,389.99,05/01/19 18:31,"778 2nd St, Boston, MA 02215" -200932,Wired Headphones,1,11.99,05/26/19 20:14,"318 Lake St, San Francisco, CA 94016" -200933,27in FHD Monitor,1,149.99,05/20/19 19:16,"567 Forest St, Los Angeles, CA 90001" -200934,AA Batteries (4-pack),1,3.84,05/30/19 17:33,"131 9th St, San Francisco, CA 94016" -200935,USB-C Charging Cable,1,11.95,05/13/19 20:33,"951 Walnut St, Austin, TX 73301" -200936,Macbook Pro Laptop,1,1700,05/28/19 08:13,"257 Meadow St, Los Angeles, CA 90001" -200937,AA Batteries (4-pack),2,3.84,05/19/19 23:44,"273 12th St, New York City, NY 10001" -200938,AAA Batteries (4-pack),1,2.99,05/21/19 11:54,"463 Main St, New York City, NY 10001" -200939,ThinkPad Laptop,1,999.99,05/31/19 02:16,"232 2nd St, Boston, MA 02215" -200940,Apple Airpods Headphones,1,150,05/19/19 10:22,"727 Dogwood St, Boston, MA 02215" -200941,ThinkPad Laptop,1,999.99,05/11/19 14:19,"593 River St, Los Angeles, CA 90001" -200942,Apple Airpods Headphones,1,150,05/29/19 15:37,"156 Spruce St, Dallas, TX 75001" -200943,Lightning Charging Cable,1,14.95,05/17/19 22:22,"801 8th St, San Francisco, CA 94016" -200944,AAA Batteries (4-pack),1,2.99,05/25/19 18:03,"347 Jackson St, New York City, NY 10001" -200945,Bose SoundSport Headphones,2,99.99,05/12/19 14:29,"240 Highland St, Los Angeles, CA 90001" -200946,34in Ultrawide Monitor,1,379.99,05/18/19 07:47,"466 Adams St, Seattle, WA 98101" -200947,AAA Batteries (4-pack),1,2.99,05/29/19 22:39,"600 West St, Boston, MA 02215" -200948,USB-C Charging Cable,1,11.95,05/19/19 11:00,"81 Hill St, Los Angeles, CA 90001" -200949,Lightning Charging Cable,1,14.95,05/18/19 16:42,"506 6th St, New York City, NY 10001" -200950,Lightning Charging Cable,1,14.95,05/06/19 12:59,"760 8th St, Seattle, WA 98101" -200951,Wired Headphones,1,11.99,05/18/19 17:17,"946 Church St, San Francisco, CA 94016" -200952,AA Batteries (4-pack),2,3.84,05/30/19 23:25,"663 12th St, Portland, OR 97035" -200953,Lightning Charging Cable,1,14.95,05/05/19 17:07,"255 Washington St, Atlanta, GA 30301" -200954,Bose SoundSport Headphones,1,99.99,05/06/19 21:03,"22 South St, San Francisco, CA 94016" -200955,iPhone,1,700,05/08/19 19:28,"531 Lincoln St, Boston, MA 02215" -200956,AAA Batteries (4-pack),1,2.99,05/14/19 10:03,"548 13th St, San Francisco, CA 94016" -200957,Apple Airpods Headphones,1,150,05/24/19 21:04,"757 2nd St, Boston, MA 02215" -200958,Lightning Charging Cable,1,14.95,05/21/19 23:40,"314 Highland St, Dallas, TX 75001" -200959,Wired Headphones,2,11.99,05/16/19 14:36,"798 10th St, Austin, TX 73301" -200960,AA Batteries (4-pack),1,3.84,05/07/19 21:16,"431 Adams St, San Francisco, CA 94016" -200961,Lightning Charging Cable,1,14.95,05/30/19 09:24,"931 1st St, Dallas, TX 75001" -200962,Lightning Charging Cable,2,14.95,05/26/19 12:57,"26 5th St, Atlanta, GA 30301" -200963,USB-C Charging Cable,1,11.95,05/11/19 21:47,"949 Center St, San Francisco, CA 94016" -200964,34in Ultrawide Monitor,1,379.99,05/25/19 22:00,"79 West St, Los Angeles, CA 90001" -200965,AA Batteries (4-pack),1,3.84,05/07/19 18:58,"145 Highland St, San Francisco, CA 94016" -200966,Lightning Charging Cable,1,14.95,05/06/19 14:46,"857 10th St, Boston, MA 02215" -200967,34in Ultrawide Monitor,1,379.99,05/09/19 17:59,"396 8th St, Portland, OR 97035" -200968,Wired Headphones,1,11.99,05/02/19 20:08,"881 5th St, Los Angeles, CA 90001" -200969,Wired Headphones,1,11.99,05/12/19 20:42,"134 Jefferson St, Los Angeles, CA 90001" -200970,Apple Airpods Headphones,1,150,05/16/19 09:54,"475 8th St, Dallas, TX 75001" -200971,iPhone,1,700,05/12/19 20:08,"114 1st St, Los Angeles, CA 90001" -200971,Lightning Charging Cable,1,14.95,05/12/19 20:08,"114 1st St, Los Angeles, CA 90001" -200972,AA Batteries (4-pack),1,3.84,05/13/19 23:38,"209 Chestnut St, San Francisco, CA 94016" -200973,Apple Airpods Headphones,1,150,05/19/19 00:48,"51 Church St, Seattle, WA 98101" -200974,USB-C Charging Cable,1,11.95,05/13/19 21:00,"404 River St, San Francisco, CA 94016" -200975,Wired Headphones,1,11.99,05/22/19 14:01,"386 7th St, Boston, MA 02215" -200976,ThinkPad Laptop,1,999.99,05/23/19 11:12,"47 Forest St, New York City, NY 10001" -200977,AA Batteries (4-pack),1,3.84,05/15/19 17:28,"767 Jackson St, Dallas, TX 75001" -200978,Lightning Charging Cable,1,14.95,05/11/19 07:07,"770 Hill St, Boston, MA 02215" -200979,AA Batteries (4-pack),1,3.84,05/26/19 16:30,"107 Park St, San Francisco, CA 94016" -200980,27in FHD Monitor,1,149.99,05/12/19 13:00,"375 Church St, San Francisco, CA 94016" -200981,Wired Headphones,1,11.99,05/09/19 21:48,"56 Dogwood St, Seattle, WA 98101" -200982,Wired Headphones,1,11.99,05/15/19 17:48,"285 Jackson St, Austin, TX 73301" -200983,ThinkPad Laptop,1,999.99,05/15/19 15:38,"971 Sunset St, Los Angeles, CA 90001" -200984,Bose SoundSport Headphones,1,99.99,05/17/19 13:01,"883 River St, San Francisco, CA 94016" -200985,Lightning Charging Cable,1,14.95,05/30/19 17:57,"589 Cedar St, Los Angeles, CA 90001" -200986,AAA Batteries (4-pack),2,2.99,05/17/19 21:41,"445 10th St, Seattle, WA 98101" -200987,Wired Headphones,1,11.99,05/15/19 14:35,"816 Main St, San Francisco, CA 94016" -200988,27in FHD Monitor,1,149.99,05/06/19 00:39,"503 Adams St, Portland, ME 04101" -200989,USB-C Charging Cable,1,11.95,05/28/19 13:42,"412 Spruce St, San Francisco, CA 94016" -200990,AA Batteries (4-pack),1,3.84,05/19/19 13:23,"657 Elm St, Los Angeles, CA 90001" -200991,AAA Batteries (4-pack),2,2.99,05/30/19 10:21,"284 Elm St, Austin, TX 73301" -200992,USB-C Charging Cable,1,11.95,05/09/19 16:01,"610 Walnut St, Dallas, TX 75001" -200993,Apple Airpods Headphones,1,150,05/18/19 19:30,"160 Center St, Boston, MA 02215" -200994,USB-C Charging Cable,1,11.95,05/08/19 21:32,"844 2nd St, Los Angeles, CA 90001" -200995,Lightning Charging Cable,1,14.95,05/23/19 10:46,"159 Spruce St, Portland, OR 97035" -200996,USB-C Charging Cable,1,11.95,05/30/19 20:38,"775 13th St, Los Angeles, CA 90001" -200997,Wired Headphones,1,11.99,05/09/19 09:15,"589 Lake St, Los Angeles, CA 90001" -200998,Google Phone,1,600,05/23/19 11:05,"518 Chestnut St, Seattle, WA 98101" -200998,Bose SoundSport Headphones,1,99.99,05/23/19 11:05,"518 Chestnut St, Seattle, WA 98101" -200999,Google Phone,1,600,05/01/19 23:57,"507 5th St, New York City, NY 10001" -201000,Flatscreen TV,1,300,05/02/19 07:12,"409 13th St, San Francisco, CA 94016" -201001,20in Monitor,1,109.99,05/10/19 18:38,"270 West St, New York City, NY 10001" -201002,Macbook Pro Laptop,1,1700,05/12/19 17:37,"830 Elm St, Seattle, WA 98101" -201003,Wired Headphones,1,11.99,05/27/19 10:57,"921 8th St, Dallas, TX 75001" -201004,AAA Batteries (4-pack),1,2.99,05/28/19 08:33,"380 8th St, Austin, TX 73301" -201005,Wired Headphones,1,11.99,05/06/19 01:01,"813 Hickory St, New York City, NY 10001" -201006,USB-C Charging Cable,1,11.95,05/20/19 20:51,"849 8th St, Atlanta, GA 30301" -201007,AA Batteries (4-pack),5,3.84,05/28/19 18:55,"211 6th St, Seattle, WA 98101" -201008,USB-C Charging Cable,1,11.95,05/16/19 16:36,"966 14th St, Atlanta, GA 30301" -201009,Macbook Pro Laptop,1,1700,05/26/19 21:10,"456 River St, San Francisco, CA 94016" -201010,Macbook Pro Laptop,1,1700,05/27/19 18:59,"213 Lake St, Atlanta, GA 30301" -201011,Lightning Charging Cable,1,14.95,05/10/19 17:06,"154 Madison St, Boston, MA 02215" -201012,Lightning Charging Cable,1,14.95,05/26/19 20:46,"230 7th St, San Francisco, CA 94016" -201013,iPhone,1,700,05/24/19 09:18,"122 Cherry St, Portland, OR 97035" -201014,AA Batteries (4-pack),1,3.84,05/09/19 15:09,"4 11th St, San Francisco, CA 94016" -201015,Lightning Charging Cable,2,14.95,05/04/19 22:10,"292 6th St, New York City, NY 10001" -201016,AA Batteries (4-pack),1,3.84,05/20/19 23:14,"721 Dogwood St, Los Angeles, CA 90001" -201017,AA Batteries (4-pack),2,3.84,05/12/19 10:37,"378 5th St, Austin, TX 73301" -201018,Lightning Charging Cable,1,14.95,05/28/19 19:03,"462 Meadow St, Austin, TX 73301" -201019,USB-C Charging Cable,1,11.95,05/27/19 11:17,"179 7th St, Los Angeles, CA 90001" -201020,AAA Batteries (4-pack),1,2.99,05/20/19 19:07,"846 Sunset St, Los Angeles, CA 90001" -201021,Lightning Charging Cable,1,14.95,05/25/19 15:21,"301 13th St, New York City, NY 10001" -201022,Wired Headphones,1,11.99,05/30/19 12:46,"812 Chestnut St, San Francisco, CA 94016" -201023,ThinkPad Laptop,1,999.99,05/19/19 18:50,"34 Chestnut St, Boston, MA 02215" -201024,Apple Airpods Headphones,1,150,05/10/19 21:05,"278 Ridge St, Seattle, WA 98101" -201025,Bose SoundSport Headphones,1,99.99,05/04/19 19:51,"44 West St, Dallas, TX 75001" -201026,Wired Headphones,1,11.99,05/20/19 18:08,"582 Lake St, San Francisco, CA 94016" -201027,Bose SoundSport Headphones,1,99.99,05/04/19 09:16,"670 North St, Boston, MA 02215" -201028,AA Batteries (4-pack),2,3.84,05/05/19 17:28,"197 Madison St, New York City, NY 10001" -201029,Apple Airpods Headphones,1,150,05/04/19 18:28,"762 Hill St, Los Angeles, CA 90001" -201030,Macbook Pro Laptop,1,1700,05/29/19 16:27,"449 Main St, Atlanta, GA 30301" -201031,AA Batteries (4-pack),1,3.84,05/07/19 03:22,"124 Maple St, Los Angeles, CA 90001" -201032,20in Monitor,1,109.99,05/08/19 00:36,"196 2nd St, Dallas, TX 75001" -201033,Bose SoundSport Headphones,1,99.99,05/09/19 19:27,"241 Lakeview St, New York City, NY 10001" -201034,27in FHD Monitor,1,149.99,05/05/19 07:08,"287 2nd St, Seattle, WA 98101" -201035,Apple Airpods Headphones,1,150,05/29/19 19:07,"467 Forest St, New York City, NY 10001" -201036,Wired Headphones,1,11.99,05/24/19 12:58,"569 5th St, Boston, MA 02215" -201037,USB-C Charging Cable,1,11.95,05/25/19 12:57,"31 Lake St, Dallas, TX 75001" -201038,AA Batteries (4-pack),1,3.84,05/23/19 19:52,"92 Hill St, San Francisco, CA 94016" -201039,USB-C Charging Cable,1,11.95,05/06/19 16:20,"971 West St, Seattle, WA 98101" -201040,Wired Headphones,1,11.99,05/06/19 23:50,"450 Highland St, Boston, MA 02215" -201041,34in Ultrawide Monitor,1,379.99,05/17/19 16:58,"637 Dogwood St, San Francisco, CA 94016" -201042,Bose SoundSport Headphones,1,99.99,05/30/19 11:25,"81 Chestnut St, Los Angeles, CA 90001" -201043,Wired Headphones,1,11.99,05/18/19 18:04,"71 Lake St, San Francisco, CA 94016" -201044,ThinkPad Laptop,1,999.99,05/18/19 21:20,"724 Ridge St, Boston, MA 02215" -201045,USB-C Charging Cable,1,11.95,05/21/19 15:55,"608 South St, Portland, OR 97035" -201046,USB-C Charging Cable,1,11.95,05/28/19 16:48,"398 12th St, Atlanta, GA 30301" -201047,20in Monitor,1,109.99,05/13/19 13:39,"86 2nd St, San Francisco, CA 94016" -201047,Bose SoundSport Headphones,1,99.99,05/13/19 13:39,"86 2nd St, San Francisco, CA 94016" -201048,AAA Batteries (4-pack),2,2.99,05/01/19 14:18,"200 Hill St, Seattle, WA 98101" -201049,iPhone,1,700,05/31/19 16:22,"833 12th St, New York City, NY 10001" -201050,Lightning Charging Cable,1,14.95,05/09/19 14:05,"978 Maple St, Seattle, WA 98101" -201051,Wired Headphones,2,11.99,05/21/19 17:14,"841 Willow St, San Francisco, CA 94016" -201052,27in FHD Monitor,1,149.99,05/09/19 13:29,"897 6th St, San Francisco, CA 94016" -201053,Apple Airpods Headphones,1,150,05/02/19 17:02,"202 10th St, Portland, OR 97035" -201054,AAA Batteries (4-pack),2,2.99,05/15/19 20:43,"346 Johnson St, San Francisco, CA 94016" -201055,AA Batteries (4-pack),1,3.84,05/26/19 10:31,"195 Walnut St, San Francisco, CA 94016" -201056,AAA Batteries (4-pack),1,2.99,05/30/19 19:55,"729 Johnson St, Boston, MA 02215" -201057,AA Batteries (4-pack),2,3.84,05/21/19 16:57,"306 12th St, Portland, OR 97035" -201058,34in Ultrawide Monitor,1,379.99,05/19/19 22:59,"200 7th St, Los Angeles, CA 90001" -201059,Bose SoundSport Headphones,1,99.99,05/20/19 18:27,"907 4th St, New York City, NY 10001" -201060,Macbook Pro Laptop,1,1700,05/05/19 17:49,"567 Cedar St, Dallas, TX 75001" -201061,AA Batteries (4-pack),1,3.84,05/04/19 09:37,"75 Sunset St, New York City, NY 10001" -201062,Lightning Charging Cable,1,14.95,05/19/19 18:15,"185 Chestnut St, Los Angeles, CA 90001" -201063,USB-C Charging Cable,1,11.95,05/11/19 17:39,"831 Church St, New York City, NY 10001" -201064,Macbook Pro Laptop,1,1700,05/15/19 12:56,"912 14th St, Portland, OR 97035" -201065,AAA Batteries (4-pack),1,2.99,05/21/19 12:43,"262 4th St, Seattle, WA 98101" -201066,Lightning Charging Cable,1,14.95,05/06/19 09:51,"319 Wilson St, Los Angeles, CA 90001" -201067,USB-C Charging Cable,1,11.95,05/13/19 16:19,"407 8th St, Atlanta, GA 30301" -201068,AA Batteries (4-pack),1,3.84,05/07/19 23:38,"29 Maple St, Atlanta, GA 30301" -201069,iPhone,1,700,05/17/19 10:04,"839 Madison St, Los Angeles, CA 90001" -201070,27in 4K Gaming Monitor,1,389.99,05/20/19 23:38,"879 North St, Portland, OR 97035" -201071,Bose SoundSport Headphones,1,99.99,05/10/19 18:43,"828 West St, Austin, TX 73301" -201072,Wired Headphones,1,11.99,05/31/19 12:52,"543 4th St, Boston, MA 02215" -201073,Wired Headphones,1,11.99,05/31/19 10:21,"355 Elm St, Dallas, TX 75001" -201074,AA Batteries (4-pack),2,3.84,05/22/19 01:02,"53 Elm St, New York City, NY 10001" -201075,Flatscreen TV,1,300,05/10/19 16:53,"569 4th St, Los Angeles, CA 90001" -201076,AA Batteries (4-pack),2,3.84,05/25/19 16:04,"208 Adams St, Boston, MA 02215" -201077,AAA Batteries (4-pack),1,2.99,05/22/19 21:01,"71 9th St, New York City, NY 10001" -201078,AAA Batteries (4-pack),1,2.99,05/30/19 18:08,"404 Cherry St, San Francisco, CA 94016" -201079,LG Washing Machine,1,600.0,05/10/19 00:37,"593 West St, Seattle, WA 98101" -201080,27in 4K Gaming Monitor,1,389.99,05/14/19 09:16,"173 Dogwood St, Atlanta, GA 30301" -201081,Apple Airpods Headphones,1,150,05/10/19 20:03,"791 Main St, Dallas, TX 75001" -201082,Wired Headphones,2,11.99,05/22/19 06:28,"793 4th St, New York City, NY 10001" -201083,USB-C Charging Cable,1,11.95,05/17/19 14:51,"777 13th St, Los Angeles, CA 90001" -201084,USB-C Charging Cable,1,11.95,05/26/19 08:01,"969 Ridge St, Seattle, WA 98101" -201085,AA Batteries (4-pack),2,3.84,05/09/19 11:32,"290 12th St, San Francisco, CA 94016" -201086,Bose SoundSport Headphones,1,99.99,05/26/19 16:30,"709 10th St, Portland, OR 97035" -201087,20in Monitor,1,109.99,05/13/19 12:33,"364 Ridge St, Boston, MA 02215" -201088,Apple Airpods Headphones,1,150,05/03/19 09:09,"341 Cedar St, Austin, TX 73301" -201089,Google Phone,1,600,05/04/19 20:34,"99 Park St, Boston, MA 02215" -201089,USB-C Charging Cable,1,11.95,05/04/19 20:34,"99 Park St, Boston, MA 02215" -201090,ThinkPad Laptop,1,999.99,05/31/19 11:51,"25 Willow St, Austin, TX 73301" -201091,Google Phone,1,600,05/02/19 16:30,"128 Jefferson St, Los Angeles, CA 90001" -201091,USB-C Charging Cable,1,11.95,05/02/19 16:30,"128 Jefferson St, Los Angeles, CA 90001" -201092,AA Batteries (4-pack),1,3.84,05/21/19 17:54,"762 Church St, Los Angeles, CA 90001" -201093,Wired Headphones,1,11.99,05/13/19 12:28,"712 Meadow St, Austin, TX 73301" -201094,34in Ultrawide Monitor,1,379.99,05/16/19 13:59,"822 South St, San Francisco, CA 94016" -201095,ThinkPad Laptop,1,999.99,05/10/19 02:12,"19 Park St, Boston, MA 02215" -201096,USB-C Charging Cable,1,11.95,05/01/19 19:05,"821 Walnut St, Atlanta, GA 30301" -201097,Wired Headphones,1,11.99,05/04/19 07:33,"854 Spruce St, Austin, TX 73301" -201098,AA Batteries (4-pack),1,3.84,05/28/19 13:08,"645 14th St, Dallas, TX 75001" -201099,34in Ultrawide Monitor,1,379.99,05/03/19 06:52,"602 Lakeview St, Seattle, WA 98101" -201100,34in Ultrawide Monitor,1,379.99,05/05/19 21:04,"487 Main St, San Francisco, CA 94016" -201101,Flatscreen TV,1,300,05/08/19 21:54,"647 6th St, Seattle, WA 98101" -201101,27in FHD Monitor,1,149.99,05/08/19 21:54,"647 6th St, Seattle, WA 98101" -201102,Bose SoundSport Headphones,1,99.99,05/30/19 11:30,"493 Jefferson St, Dallas, TX 75001" -201103,AA Batteries (4-pack),1,3.84,05/25/19 12:30,"351 13th St, Dallas, TX 75001" -201104,20in Monitor,1,109.99,05/27/19 19:00,"192 Spruce St, San Francisco, CA 94016" -201105,Wired Headphones,1,11.99,05/10/19 19:12,"836 7th St, San Francisco, CA 94016" -201106,Bose SoundSport Headphones,1,99.99,05/23/19 08:52,"324 7th St, Los Angeles, CA 90001" -201107,AAA Batteries (4-pack),1,2.99,05/06/19 22:15,"84 Adams St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -201108,Lightning Charging Cable,1,14.95,05/24/19 15:24,"360 Meadow St, Dallas, TX 75001" -201109,Apple Airpods Headphones,1,150,05/16/19 12:47,"208 1st St, Dallas, TX 75001" -201110,USB-C Charging Cable,1,11.95,05/21/19 18:11,"193 1st St, New York City, NY 10001" -201111,Wired Headphones,3,11.99,05/14/19 18:36,"439 Elm St, Atlanta, GA 30301" -201112,Lightning Charging Cable,1,14.95,05/04/19 11:45,"982 Cherry St, Boston, MA 02215" -201113,Wired Headphones,1,11.99,05/15/19 15:06,"578 Jackson St, New York City, NY 10001" -201114,27in FHD Monitor,1,149.99,05/16/19 19:01,"740 Jackson St, New York City, NY 10001" -201114,Macbook Pro Laptop,1,1700,05/16/19 19:01,"740 Jackson St, New York City, NY 10001" -201115,AA Batteries (4-pack),2,3.84,05/07/19 21:44,"218 Jefferson St, Atlanta, GA 30301" -201116,AAA Batteries (4-pack),6,2.99,05/28/19 13:56,"18 Forest St, New York City, NY 10001" -201117,Apple Airpods Headphones,1,150,05/11/19 15:58,"591 Washington St, Boston, MA 02215" -201118,27in 4K Gaming Monitor,1,389.99,05/28/19 03:20,"920 Church St, San Francisco, CA 94016" -201119,Apple Airpods Headphones,1,150,05/15/19 11:24,"418 Ridge St, San Francisco, CA 94016" -201120,USB-C Charging Cable,1,11.95,05/20/19 11:13,"374 Sunset St, New York City, NY 10001" -201121,AAA Batteries (4-pack),1,2.99,05/24/19 12:19,"759 Washington St, Austin, TX 73301" -201122,34in Ultrawide Monitor,1,379.99,05/04/19 21:56,"368 Ridge St, Atlanta, GA 30301" -201123,Lightning Charging Cable,1,14.95,05/13/19 07:16,"356 West St, Boston, MA 02215" -201124,Wired Headphones,1,11.99,05/05/19 10:53,"810 Main St, Seattle, WA 98101" -201124,Apple Airpods Headphones,1,150,05/05/19 10:53,"810 Main St, Seattle, WA 98101" -201125,Lightning Charging Cable,1,14.95,05/06/19 13:21,"657 8th St, Los Angeles, CA 90001" -201126,AA Batteries (4-pack),1,3.84,05/22/19 23:02,"840 Church St, Dallas, TX 75001" -201126,USB-C Charging Cable,1,11.95,05/22/19 23:02,"840 Church St, Dallas, TX 75001" -201127,Vareebadd Phone,1,400,05/08/19 00:25,"3 8th St, New York City, NY 10001" -201128,Bose SoundSport Headphones,1,99.99,05/23/19 10:27,"297 8th St, Dallas, TX 75001" -201129,iPhone,1,700,05/31/19 07:43,"233 Wilson St, Boston, MA 02215" -201130,Google Phone,1,600,05/02/19 06:22,"547 Pine St, San Francisco, CA 94016" -201131,Apple Airpods Headphones,1,150,05/21/19 16:50,"191 North St, Los Angeles, CA 90001" -201132,Apple Airpods Headphones,1,150,05/07/19 17:18,"316 7th St, Seattle, WA 98101" -201133,Lightning Charging Cable,1,14.95,05/25/19 04:37,"100 Pine St, Los Angeles, CA 90001" -201134,Bose SoundSport Headphones,1,99.99,05/31/19 04:37,"452 Maple St, Boston, MA 02215" -201135,AAA Batteries (4-pack),1,2.99,05/02/19 09:20,"674 2nd St, Los Angeles, CA 90001" -201136,USB-C Charging Cable,1,11.95,05/13/19 17:02,"627 Walnut St, Seattle, WA 98101" -201137,AAA Batteries (4-pack),1,2.99,05/19/19 20:40,"969 Cherry St, San Francisco, CA 94016" -201138,AAA Batteries (4-pack),5,2.99,05/01/19 23:48,"774 Elm St, Austin, TX 73301" -201139,Google Phone,1,600,05/27/19 15:57,"801 Meadow St, Boston, MA 02215" -201140,34in Ultrawide Monitor,1,379.99,05/08/19 01:22,"997 14th St, Portland, OR 97035" -201140,AAA Batteries (4-pack),2,2.99,05/08/19 01:22,"997 14th St, Portland, OR 97035" -201141,Wired Headphones,1,11.99,05/05/19 20:40,"11 2nd St, Boston, MA 02215" -201142,AA Batteries (4-pack),1,3.84,05/04/19 18:56,"140 Cherry St, New York City, NY 10001" -201143,Apple Airpods Headphones,1,150,05/13/19 18:46,"14 10th St, Atlanta, GA 30301" -201144,Wired Headphones,2,11.99,05/21/19 20:35,"43 Spruce St, Boston, MA 02215" -201145,Lightning Charging Cable,1,14.95,05/13/19 13:01,"990 Park St, Boston, MA 02215" -201146,AA Batteries (4-pack),1,3.84,05/10/19 15:03,"988 7th St, Los Angeles, CA 90001" -201147,AA Batteries (4-pack),2,3.84,05/05/19 18:33,"68 North St, San Francisco, CA 94016" -201148,27in FHD Monitor,1,149.99,05/18/19 12:55,"928 Dogwood St, Atlanta, GA 30301" -201149,27in 4K Gaming Monitor,1,389.99,05/06/19 17:57,"970 Hickory St, Los Angeles, CA 90001" -201150,AA Batteries (4-pack),2,3.84,05/20/19 13:37,"797 Ridge St, Los Angeles, CA 90001" -201151,Wired Headphones,1,11.99,05/23/19 09:57,"162 Lake St, Dallas, TX 75001" -201152,27in FHD Monitor,1,149.99,05/13/19 12:14,"688 1st St, Boston, MA 02215" -201153,AA Batteries (4-pack),1,3.84,05/27/19 17:43,"202 Park St, Dallas, TX 75001" -201154,AAA Batteries (4-pack),1,2.99,05/31/19 08:39,"219 Forest St, Boston, MA 02215" -201155,AA Batteries (4-pack),2,3.84,05/07/19 08:21,"951 11th St, Boston, MA 02215" -201156,Bose SoundSport Headphones,1,99.99,05/11/19 10:08,"34 Willow St, Boston, MA 02215" -201157,LG Dryer,1,600.0,05/25/19 10:58,"550 Lincoln St, Los Angeles, CA 90001" -201158,AAA Batteries (4-pack),2,2.99,05/01/19 22:00,"833 Pine St, Austin, TX 73301" -201159,27in FHD Monitor,1,149.99,05/23/19 17:54,"931 Walnut St, Portland, OR 97035" -201160,Bose SoundSport Headphones,1,99.99,05/12/19 10:27,"753 Center St, New York City, NY 10001" -201161,27in 4K Gaming Monitor,1,389.99,05/16/19 15:16,"790 Cedar St, San Francisco, CA 94016" -201162,Bose SoundSport Headphones,1,99.99,05/29/19 09:19,"538 Johnson St, Dallas, TX 75001" -201163,AAA Batteries (4-pack),2,2.99,05/09/19 10:19,"396 Chestnut St, Atlanta, GA 30301" -201164,USB-C Charging Cable,1,11.95,05/08/19 13:59,"23 Cedar St, Dallas, TX 75001" -201165,AA Batteries (4-pack),1,3.84,05/10/19 08:04,"868 West St, Portland, OR 97035" -201166,AAA Batteries (4-pack),2,2.99,05/05/19 18:21,"396 Willow St, Los Angeles, CA 90001" -201167,Wired Headphones,1,11.99,05/25/19 22:16,"289 Cherry St, Atlanta, GA 30301" -201168,Wired Headphones,1,11.99,05/09/19 11:37,"869 Hickory St, San Francisco, CA 94016" -201169,Apple Airpods Headphones,1,150,05/20/19 08:58,"507 11th St, San Francisco, CA 94016" -201170,Lightning Charging Cable,1,14.95,05/14/19 20:08,"459 Center St, San Francisco, CA 94016" -201171,USB-C Charging Cable,1,11.95,05/02/19 00:02,"382 Lake St, San Francisco, CA 94016" -201172,AA Batteries (4-pack),2,3.84,05/13/19 16:42,"945 14th St, San Francisco, CA 94016" -201173,Apple Airpods Headphones,1,150,05/15/19 12:58,"858 Hill St, Seattle, WA 98101" -201173,AA Batteries (4-pack),1,3.84,05/15/19 12:58,"858 Hill St, Seattle, WA 98101" -201174,Bose SoundSport Headphones,1,99.99,05/08/19 12:44,"310 8th St, San Francisco, CA 94016" -201175,AA Batteries (4-pack),2,3.84,05/06/19 12:59,"469 Jefferson St, Atlanta, GA 30301" -201176,Wired Headphones,1,11.99,05/26/19 16:36,"223 Johnson St, Los Angeles, CA 90001" -201177,Wired Headphones,1,11.99,05/14/19 14:56,"458 Spruce St, Atlanta, GA 30301" -201178,USB-C Charging Cable,1,11.95,05/10/19 11:48,"914 14th St, New York City, NY 10001" -201179,Flatscreen TV,1,300,05/09/19 20:17,"430 Lakeview St, San Francisco, CA 94016" -201180,USB-C Charging Cable,1,11.95,05/23/19 11:23,"977 Main St, San Francisco, CA 94016" -201181,27in FHD Monitor,1,149.99,05/07/19 20:50,"142 Walnut St, San Francisco, CA 94016" -201182,Lightning Charging Cable,1,14.95,05/06/19 23:20,"256 10th St, Boston, MA 02215" -201183,Lightning Charging Cable,1,14.95,05/07/19 12:13,"327 Maple St, Boston, MA 02215" -201184,USB-C Charging Cable,1,11.95,05/22/19 16:25,"440 Highland St, Los Angeles, CA 90001" -201185,Macbook Pro Laptop,1,1700,05/31/19 10:34,"970 Meadow St, Seattle, WA 98101" -201185,Lightning Charging Cable,1,14.95,05/31/19 10:34,"970 Meadow St, Seattle, WA 98101" -201186,ThinkPad Laptop,1,999.99,05/23/19 01:47,"112 Cherry St, San Francisco, CA 94016" -201187,Apple Airpods Headphones,1,150,05/19/19 08:24,"971 Walnut St, San Francisco, CA 94016" -201188,Flatscreen TV,1,300,05/06/19 09:05,"312 Spruce St, Atlanta, GA 30301" -201189,USB-C Charging Cable,1,11.95,05/15/19 19:00,"612 9th St, Los Angeles, CA 90001" -201190,Macbook Pro Laptop,1,1700,05/17/19 13:09,"588 Wilson St, Portland, OR 97035" -201191,Wired Headphones,1,11.99,05/14/19 20:21,"505 10th St, Boston, MA 02215" -201192,Lightning Charging Cable,1,14.95,05/17/19 09:14,"411 Sunset St, Dallas, TX 75001" -201193,AAA Batteries (4-pack),2,2.99,05/07/19 00:46,"741 Jackson St, Seattle, WA 98101" -201194,AAA Batteries (4-pack),1,2.99,05/18/19 11:08,"917 Johnson St, San Francisco, CA 94016" -201195,AA Batteries (4-pack),1,3.84,05/28/19 12:06,"594 Forest St, Atlanta, GA 30301" -201196,ThinkPad Laptop,1,999.99,05/05/19 10:55,"179 1st St, Atlanta, GA 30301" -201197,iPhone,1,700,05/18/19 14:56,"776 5th St, Boston, MA 02215" -201198,USB-C Charging Cable,1,11.95,05/13/19 11:11,"385 9th St, Seattle, WA 98101" -201199,Wired Headphones,1,11.99,05/30/19 20:16,"294 Pine St, San Francisco, CA 94016" -201200,27in 4K Gaming Monitor,1,389.99,05/10/19 07:36,"804 Washington St, New York City, NY 10001" -201201,27in 4K Gaming Monitor,1,389.99,05/14/19 03:54,"190 6th St, San Francisco, CA 94016" -201202,Apple Airpods Headphones,1,150,05/30/19 08:53,"450 Church St, Portland, OR 97035" -201203,AA Batteries (4-pack),2,3.84,05/24/19 13:40,"775 9th St, Boston, MA 02215" -201204,Wired Headphones,1,11.99,05/03/19 14:00,"229 Walnut St, Los Angeles, CA 90001" -201205,USB-C Charging Cable,1,11.95,05/13/19 20:38,"656 Ridge St, Atlanta, GA 30301" -201206,USB-C Charging Cable,1,11.95,05/06/19 12:30,"617 1st St, Atlanta, GA 30301" -201207,AA Batteries (4-pack),1,3.84,05/05/19 14:01,"798 7th St, New York City, NY 10001" -201208,34in Ultrawide Monitor,1,379.99,05/16/19 09:19,"930 West St, Seattle, WA 98101" -201209,Wired Headphones,1,11.99,05/21/19 01:00,"738 8th St, Dallas, TX 75001" -201210,iPhone,1,700,05/28/19 14:16,"731 Chestnut St, Los Angeles, CA 90001" -201211,USB-C Charging Cable,1,11.95,05/08/19 10:50,"75 8th St, Los Angeles, CA 90001" -201212,AAA Batteries (4-pack),1,2.99,05/11/19 11:32,"266 6th St, San Francisco, CA 94016" -201212,USB-C Charging Cable,1,11.95,05/11/19 11:32,"266 6th St, San Francisco, CA 94016" -201213,USB-C Charging Cable,1,11.95,05/10/19 16:51,"144 Cherry St, Boston, MA 02215" -201214,Lightning Charging Cable,1,14.95,05/27/19 20:19,"446 Jefferson St, San Francisco, CA 94016" -201215,Lightning Charging Cable,1,14.95,05/26/19 12:54,"415 Lincoln St, Seattle, WA 98101" -201216,iPhone,1,700,05/10/19 18:20,"761 Forest St, Seattle, WA 98101" -201217,AA Batteries (4-pack),1,3.84,05/13/19 22:25,"600 Ridge St, Seattle, WA 98101" -201218,34in Ultrawide Monitor,1,379.99,05/04/19 18:06,"931 Spruce St, San Francisco, CA 94016" -201219,34in Ultrawide Monitor,1,379.99,05/11/19 23:26,"996 Elm St, Portland, OR 97035" -201220,Bose SoundSport Headphones,1,99.99,05/23/19 12:56,"728 North St, Seattle, WA 98101" -201221,USB-C Charging Cable,1,11.95,05/22/19 08:58,"765 13th St, Atlanta, GA 30301" -201222,Wired Headphones,2,11.99,05/30/19 09:37,"655 7th St, Atlanta, GA 30301" -201223,Wired Headphones,1,11.99,05/22/19 11:30,"323 Center St, Los Angeles, CA 90001" -201224,AA Batteries (4-pack),1,3.84,05/08/19 23:01,"113 Elm St, Seattle, WA 98101" -201225,Lightning Charging Cable,1,14.95,05/01/19 12:23,"986 Jackson St, Atlanta, GA 30301" -201226,AA Batteries (4-pack),1,3.84,05/20/19 19:42,"93 Cherry St, Austin, TX 73301" -201227,Google Phone,1,600,05/13/19 17:02,"47 Washington St, Los Angeles, CA 90001" -201228,34in Ultrawide Monitor,1,379.99,05/30/19 19:41,"604 Hickory St, San Francisco, CA 94016" -201229,Apple Airpods Headphones,1,150,05/02/19 22:33,"425 Jefferson St, San Francisco, CA 94016" -201230,AAA Batteries (4-pack),1,2.99,05/06/19 08:27,"798 12th St, Portland, OR 97035" -201231,34in Ultrawide Monitor,1,379.99,05/05/19 16:34,"983 6th St, San Francisco, CA 94016" -201232,AA Batteries (4-pack),1,3.84,05/23/19 18:47,"559 Hickory St, Los Angeles, CA 90001" -201233,USB-C Charging Cable,1,11.95,05/19/19 00:37,"896 Jackson St, San Francisco, CA 94016" -201234,Apple Airpods Headphones,1,150,05/21/19 07:19,"447 Jackson St, Portland, OR 97035" -201235,Wired Headphones,1,11.99,05/13/19 23:41,"119 Madison St, Atlanta, GA 30301" -201236,USB-C Charging Cable,1,11.95,05/18/19 15:23,"664 Willow St, San Francisco, CA 94016" -201237,Apple Airpods Headphones,1,150,05/10/19 17:37,"4 11th St, Boston, MA 02215" -201238,Lightning Charging Cable,3,14.95,05/28/19 21:11,"184 Wilson St, Los Angeles, CA 90001" -201239,USB-C Charging Cable,1,11.95,05/11/19 03:21,"105 Johnson St, Seattle, WA 98101" -201240,Lightning Charging Cable,1,14.95,05/26/19 06:55,"66 Lake St, Los Angeles, CA 90001" -201241,Bose SoundSport Headphones,1,99.99,05/04/19 14:29,"4 4th St, Los Angeles, CA 90001" -201242,USB-C Charging Cable,1,11.95,05/05/19 23:32,"916 Walnut St, Los Angeles, CA 90001" -201243,Vareebadd Phone,1,400,05/08/19 14:00,"852 Park St, San Francisco, CA 94016" -201243,USB-C Charging Cable,1,11.95,05/08/19 14:00,"852 Park St, San Francisco, CA 94016" -201244,Macbook Pro Laptop,1,1700,05/21/19 09:05,"948 9th St, Boston, MA 02215" -201245,AA Batteries (4-pack),2,3.84,05/09/19 11:36,"547 5th St, Seattle, WA 98101" -201246,Lightning Charging Cable,1,14.95,05/23/19 11:15,"154 5th St, Dallas, TX 75001" -201247,Lightning Charging Cable,1,14.95,05/08/19 21:36,"932 9th St, Seattle, WA 98101" -201248,AAA Batteries (4-pack),2,2.99,05/09/19 13:28,"240 Walnut St, San Francisco, CA 94016" -201249,27in 4K Gaming Monitor,1,389.99,05/29/19 06:57,"718 Hill St, Boston, MA 02215" -201250,AA Batteries (4-pack),2,3.84,05/01/19 08:58,"662 South St, Atlanta, GA 30301" -201251,USB-C Charging Cable,1,11.95,05/08/19 17:10,"175 11th St, Atlanta, GA 30301" -201252,AAA Batteries (4-pack),2,2.99,05/23/19 15:20,"962 Center St, Los Angeles, CA 90001" -201253,Bose SoundSport Headphones,1,99.99,05/29/19 20:42,"303 Church St, San Francisco, CA 94016" -201254,Lightning Charging Cable,1,14.95,05/04/19 17:59,"648 4th St, New York City, NY 10001" -201255,Apple Airpods Headphones,1,150,05/13/19 18:32,"442 10th St, New York City, NY 10001" -201256,Vareebadd Phone,1,400,05/18/19 23:53,"11 14th St, San Francisco, CA 94016" -201257,Google Phone,1,600,05/07/19 13:53,"202 Pine St, Portland, OR 97035" -201257,Wired Headphones,1,11.99,05/07/19 13:53,"202 Pine St, Portland, OR 97035" -201258,Lightning Charging Cable,1,14.95,05/16/19 17:18,"207 Jackson St, Seattle, WA 98101" -201259,Bose SoundSport Headphones,1,99.99,05/14/19 21:51,"302 Dogwood St, Dallas, TX 75001" -201260,27in 4K Gaming Monitor,1,389.99,05/28/19 18:28,"640 14th St, Los Angeles, CA 90001" -201261,AAA Batteries (4-pack),3,2.99,05/29/19 15:08,"674 Willow St, Seattle, WA 98101" -201262,20in Monitor,1,109.99,05/06/19 04:37,"835 Cherry St, Atlanta, GA 30301" -201263,Vareebadd Phone,1,400,05/04/19 20:11,"783 9th St, Portland, OR 97035" -201264,Lightning Charging Cable,1,14.95,05/29/19 09:31,"254 Center St, Seattle, WA 98101" -201265,Apple Airpods Headphones,1,150,05/01/19 09:50,"21 Main St, San Francisco, CA 94016" -201266,ThinkPad Laptop,1,999.99,05/02/19 11:51,"362 1st St, Boston, MA 02215" -201267,USB-C Charging Cable,3,11.95,05/11/19 13:17,"47 8th St, San Francisco, CA 94016" -201268,Bose SoundSport Headphones,1,99.99,05/06/19 14:19,"610 9th St, Boston, MA 02215" -201269,AA Batteries (4-pack),1,3.84,05/05/19 13:28,"896 5th St, New York City, NY 10001" -201270,Bose SoundSport Headphones,1,99.99,05/28/19 10:06,"668 Lakeview St, San Francisco, CA 94016" -201271,Bose SoundSport Headphones,1,99.99,05/17/19 12:29,"134 Pine St, Seattle, WA 98101" -201272,Wired Headphones,1,11.99,05/22/19 13:52,"606 9th St, New York City, NY 10001" -201273,Lightning Charging Cable,2,14.95,05/15/19 11:38,"914 Sunset St, Boston, MA 02215" -201274,iPhone,1,700,05/20/19 20:04,"115 Chestnut St, Atlanta, GA 30301" -201275,AAA Batteries (4-pack),1,2.99,05/04/19 21:11,"811 7th St, New York City, NY 10001" -201276,AA Batteries (4-pack),1,3.84,05/05/19 12:16,"40 5th St, New York City, NY 10001" -201277,27in FHD Monitor,1,149.99,05/08/19 00:25,"371 Willow St, Atlanta, GA 30301" -201278,AA Batteries (4-pack),2,3.84,05/24/19 16:47,"300 Lake St, Portland, OR 97035" -201279,34in Ultrawide Monitor,1,379.99,05/03/19 13:57,"88 Jackson St, New York City, NY 10001" -201280,Bose SoundSport Headphones,1,99.99,05/14/19 22:24,"102 Cedar St, Boston, MA 02215" -201281,Apple Airpods Headphones,1,150,05/05/19 16:40,"383 Lake St, San Francisco, CA 94016" -201282,34in Ultrawide Monitor,1,379.99,05/08/19 18:35,"559 Madison St, Los Angeles, CA 90001" -201283,Flatscreen TV,1,300,05/12/19 15:02,"239 Cedar St, Dallas, TX 75001" -201284,Wired Headphones,1,11.99,05/13/19 20:44,"712 11th St, San Francisco, CA 94016" -201285,USB-C Charging Cable,1,11.95,05/19/19 11:59,"679 Adams St, Boston, MA 02215" -201286,Flatscreen TV,1,300,05/27/19 16:29,"431 13th St, Seattle, WA 98101" -201287,27in 4K Gaming Monitor,1,389.99,05/15/19 19:53,"684 Meadow St, Dallas, TX 75001" -201288,iPhone,1,700,05/05/19 16:47,"472 Forest St, New York City, NY 10001" -201288,Lightning Charging Cable,2,14.95,05/05/19 16:47,"472 Forest St, New York City, NY 10001" -201289,USB-C Charging Cable,2,11.95,05/26/19 11:48,"670 11th St, New York City, NY 10001" -201290,Wired Headphones,1,11.99,05/23/19 08:35,"892 Lakeview St, Los Angeles, CA 90001" -201291,USB-C Charging Cable,1,11.95,05/15/19 16:50,"637 Elm St, Atlanta, GA 30301" -201292,27in 4K Gaming Monitor,1,389.99,05/26/19 15:27,"648 Chestnut St, Portland, OR 97035" -201293,Lightning Charging Cable,1,14.95,05/13/19 18:10,"441 Lakeview St, Los Angeles, CA 90001" -201294,Flatscreen TV,1,300,05/26/19 20:36,"755 Jefferson St, Dallas, TX 75001" -201295,USB-C Charging Cable,1,11.95,05/01/19 20:15,"159 2nd St, Los Angeles, CA 90001" -201296,Vareebadd Phone,1,400,05/31/19 20:33,"659 Walnut St, New York City, NY 10001" -201297,Apple Airpods Headphones,1,150,05/11/19 13:37,"252 Main St, San Francisco, CA 94016" -201298,AAA Batteries (4-pack),1,2.99,05/11/19 08:23,"41 Elm St, San Francisco, CA 94016" -201299,Wired Headphones,1,11.99,05/09/19 15:54,"728 4th St, Austin, TX 73301" -201300,Lightning Charging Cable,2,14.95,05/01/19 08:47,"286 10th St, Dallas, TX 75001" -201301,Lightning Charging Cable,1,14.95,05/31/19 19:21,"285 Cherry St, Austin, TX 73301" -201302,Bose SoundSport Headphones,1,99.99,05/27/19 14:18,"97 Jefferson St, San Francisco, CA 94016" -201303,AAA Batteries (4-pack),1,2.99,05/17/19 10:57,"528 Lincoln St, San Francisco, CA 94016" -201304,AAA Batteries (4-pack),2,2.99,05/21/19 17:51,"449 Jackson St, Seattle, WA 98101" -201305,Apple Airpods Headphones,1,150,05/04/19 10:12,"401 Johnson St, Los Angeles, CA 90001" -201306,Lightning Charging Cable,1,14.95,05/31/19 21:03,"530 Dogwood St, Los Angeles, CA 90001" -201307,Wired Headphones,1,11.99,05/01/19 22:13,"518 Jackson St, Portland, OR 97035" -201308,Lightning Charging Cable,1,14.95,05/20/19 16:47,"863 Adams St, New York City, NY 10001" -201309,AAA Batteries (4-pack),1,2.99,05/25/19 16:01,"793 Pine St, Boston, MA 02215" -201310,iPhone,1,700,05/26/19 08:30,"89 Wilson St, Boston, MA 02215" -201311,34in Ultrawide Monitor,1,379.99,05/14/19 02:36,"922 Madison St, Boston, MA 02215" -201312,Wired Headphones,1,11.99,05/21/19 07:14,"615 4th St, San Francisco, CA 94016" -201313,AA Batteries (4-pack),1,3.84,05/03/19 12:36,"290 West St, Portland, OR 97035" -201314,AA Batteries (4-pack),1,3.84,05/09/19 08:16,"20 Johnson St, Portland, OR 97035" -201315,AA Batteries (4-pack),1,3.84,05/17/19 10:39,"550 Spruce St, Seattle, WA 98101" -201316,USB-C Charging Cable,1,11.95,05/20/19 23:16,"166 South St, San Francisco, CA 94016" -201317,Vareebadd Phone,1,400,05/14/19 13:26,"416 West St, Seattle, WA 98101" -201318,27in FHD Monitor,1,149.99,05/06/19 10:05,"146 Adams St, New York City, NY 10001" -201319,Apple Airpods Headphones,1,150,05/26/19 10:24,"164 West St, Boston, MA 02215" -201320,34in Ultrawide Monitor,1,379.99,05/14/19 17:17,"115 10th St, San Francisco, CA 94016" -201320,Wired Headphones,1,11.99,05/14/19 17:17,"115 10th St, San Francisco, CA 94016" -201321,Apple Airpods Headphones,1,150,05/27/19 12:09,"974 Chestnut St, San Francisco, CA 94016" -201322,Bose SoundSport Headphones,1,99.99,05/11/19 20:29,"994 Center St, San Francisco, CA 94016" -201323,Wired Headphones,1,11.99,05/17/19 17:47,"80 Pine St, Boston, MA 02215" -201324,AAA Batteries (4-pack),1,2.99,05/30/19 13:56,"787 Forest St, Portland, OR 97035" -201325,20in Monitor,1,109.99,05/29/19 20:36,"645 Park St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -201326,USB-C Charging Cable,1,11.95,05/10/19 12:14,"511 Church St, Atlanta, GA 30301" -201327,Wired Headphones,1,11.99,05/14/19 16:22,"632 1st St, San Francisco, CA 94016" -201328,Apple Airpods Headphones,1,150,05/09/19 20:22,"138 Meadow St, Los Angeles, CA 90001" -201329,ThinkPad Laptop,1,999.99,05/13/19 10:31,"972 Walnut St, Los Angeles, CA 90001" -201330,Vareebadd Phone,1,400,05/20/19 08:49,"17 Cedar St, Los Angeles, CA 90001" -201331,Wired Headphones,1,11.99,05/04/19 16:34,"273 Elm St, Boston, MA 02215" -201332,AAA Batteries (4-pack),1,2.99,05/29/19 12:39,"859 Adams St, San Francisco, CA 94016" -201333,Lightning Charging Cable,1,14.95,05/12/19 14:31,"110 Jackson St, San Francisco, CA 94016" -201334,AAA Batteries (4-pack),1,2.99,05/07/19 10:31,"169 Lincoln St, Boston, MA 02215" -201335,Wired Headphones,3,11.99,05/24/19 19:20,"135 Willow St, Portland, OR 97035" -201336,AAA Batteries (4-pack),2,2.99,05/30/19 17:53,"926 6th St, Portland, ME 04101" -201337,Google Phone,1,600,05/02/19 16:29,"240 9th St, Dallas, TX 75001" -201338,Lightning Charging Cable,1,14.95,05/11/19 12:03,"511 11th St, San Francisco, CA 94016" -201339,AA Batteries (4-pack),2,3.84,05/09/19 13:42,"575 1st St, Austin, TX 73301" -201340,USB-C Charging Cable,1,11.95,05/17/19 01:45,"427 Park St, Seattle, WA 98101" -201340,AAA Batteries (4-pack),1,2.99,05/17/19 01:45,"427 Park St, Seattle, WA 98101" -201341,ThinkPad Laptop,1,999.99,05/16/19 18:25,"60 Chestnut St, Seattle, WA 98101" -201342,AA Batteries (4-pack),1,3.84,05/09/19 06:53,"573 7th St, Los Angeles, CA 90001" -201343,AA Batteries (4-pack),1,3.84,05/03/19 13:17,"842 2nd St, San Francisco, CA 94016" -201344,Wired Headphones,1,11.99,05/14/19 20:21,"435 Willow St, New York City, NY 10001" -201345,AA Batteries (4-pack),1,3.84,05/18/19 07:23,"584 7th St, Atlanta, GA 30301" -201346,AA Batteries (4-pack),1,3.84,05/23/19 13:05,"328 Washington St, Boston, MA 02215" -201347,20in Monitor,1,109.99,05/25/19 19:54,"497 14th St, Los Angeles, CA 90001" -201348,AAA Batteries (4-pack),3,2.99,05/31/19 03:20,"649 Johnson St, San Francisco, CA 94016" -201349,USB-C Charging Cable,1,11.95,05/05/19 10:19,"584 Madison St, San Francisco, CA 94016" -201350,AAA Batteries (4-pack),2,2.99,05/28/19 18:44,"757 Maple St, Los Angeles, CA 90001" -201351,Lightning Charging Cable,1,14.95,05/06/19 17:27,"68 Maple St, San Francisco, CA 94016" -201352,Apple Airpods Headphones,1,150,05/12/19 20:07,"720 2nd St, New York City, NY 10001" -201353,Apple Airpods Headphones,1,150,05/30/19 23:55,"159 1st St, Seattle, WA 98101" -201354,20in Monitor,1,109.99,05/15/19 14:27,"760 8th St, Austin, TX 73301" -201355,Flatscreen TV,1,300,05/24/19 11:47,"820 10th St, San Francisco, CA 94016" -201356,34in Ultrawide Monitor,1,379.99,05/13/19 16:55,"340 Hickory St, San Francisco, CA 94016" -201357,Apple Airpods Headphones,1,150,05/23/19 13:19,"843 Church St, Boston, MA 02215" -201358,Lightning Charging Cable,1,14.95,05/02/19 08:00,"466 13th St, Dallas, TX 75001" -201359,AA Batteries (4-pack),1,3.84,05/16/19 20:47,"887 8th St, New York City, NY 10001" -201360,Lightning Charging Cable,3,14.95,05/24/19 12:38,"227 Maple St, Dallas, TX 75001" -201361,Lightning Charging Cable,1,14.95,05/08/19 23:11,"565 Willow St, Los Angeles, CA 90001" -201362,AAA Batteries (4-pack),1,2.99,05/17/19 16:09,"641 Adams St, Portland, OR 97035" -201363,Apple Airpods Headphones,1,150,05/12/19 12:11,"894 Adams St, San Francisco, CA 94016" -201364,Apple Airpods Headphones,1,150,05/21/19 19:01,"966 6th St, Boston, MA 02215" -201365,Lightning Charging Cable,1,14.95,05/25/19 10:06,"791 Lincoln St, Los Angeles, CA 90001" -201366,USB-C Charging Cable,1,11.95,05/06/19 11:28,"857 6th St, Austin, TX 73301" -201367,27in 4K Gaming Monitor,1,389.99,05/18/19 12:41,"137 Johnson St, Los Angeles, CA 90001" -201368,Wired Headphones,1,11.99,05/01/19 20:21,"178 9th St, New York City, NY 10001" -201369,iPhone,1,700,05/05/19 17:58,"960 Maple St, Los Angeles, CA 90001" -201369,Apple Airpods Headphones,1,150,05/05/19 17:58,"960 Maple St, Los Angeles, CA 90001" -201370,34in Ultrawide Monitor,1,379.99,05/09/19 19:08,"788 14th St, Portland, OR 97035" -201371,USB-C Charging Cable,2,11.95,05/01/19 10:02,"452 8th St, San Francisco, CA 94016" -201372,27in FHD Monitor,1,149.99,05/22/19 15:26,"553 7th St, San Francisco, CA 94016" -201373,Apple Airpods Headphones,1,150,05/05/19 14:25,"765 Madison St, Atlanta, GA 30301" -201374,Wired Headphones,1,11.99,05/03/19 15:37,"635 6th St, Boston, MA 02215" -201375,34in Ultrawide Monitor,1,379.99,05/08/19 05:24,"587 14th St, San Francisco, CA 94016" -201376,34in Ultrawide Monitor,1,379.99,05/09/19 11:16,"978 Highland St, San Francisco, CA 94016" -201377,Wired Headphones,1,11.99,05/08/19 10:35,"407 West St, San Francisco, CA 94016" -201378,AA Batteries (4-pack),1,3.84,05/02/19 13:56,"959 1st St, Atlanta, GA 30301" -201379,USB-C Charging Cable,1,11.95,05/06/19 12:08,"595 Park St, Boston, MA 02215" -201380,Lightning Charging Cable,1,14.95,05/09/19 12:47,"745 Church St, San Francisco, CA 94016" -201381,USB-C Charging Cable,1,11.95,05/07/19 06:02,"391 Lincoln St, Portland, OR 97035" -201382,ThinkPad Laptop,1,999.99,05/21/19 14:59,"726 Forest St, Portland, OR 97035" -201383,AA Batteries (4-pack),1,3.84,05/07/19 12:10,"383 6th St, Boston, MA 02215" -201384,USB-C Charging Cable,1,11.95,05/18/19 18:49,"14 14th St, Dallas, TX 75001" -201385,USB-C Charging Cable,1,11.95,05/21/19 10:31,"751 North St, Los Angeles, CA 90001" -201386,AA Batteries (4-pack),1,3.84,05/01/19 11:03,"852 Walnut St, San Francisco, CA 94016" -201387,20in Monitor,1,109.99,05/06/19 19:29,"760 Highland St, New York City, NY 10001" -201388,AA Batteries (4-pack),1,3.84,05/15/19 21:32,"392 Spruce St, Portland, OR 97035" -201389,Bose SoundSport Headphones,1,99.99,05/02/19 13:36,"15 Washington St, Boston, MA 02215" -201390,AA Batteries (4-pack),2,3.84,05/10/19 19:47,"314 Madison St, New York City, NY 10001" -201391,Lightning Charging Cable,1,14.95,05/31/19 14:29,"155 12th St, Boston, MA 02215" -201392,USB-C Charging Cable,1,11.95,05/14/19 06:48,"500 Lakeview St, Austin, TX 73301" -201393,27in 4K Gaming Monitor,1,389.99,05/07/19 12:33,"12 5th St, San Francisco, CA 94016" -201394,Apple Airpods Headphones,1,150,05/19/19 23:42,"467 Center St, San Francisco, CA 94016" -201395,USB-C Charging Cable,1,11.95,05/26/19 07:48,"836 Center St, Atlanta, GA 30301" -201396,27in 4K Gaming Monitor,1,389.99,05/03/19 12:21,"395 2nd St, New York City, NY 10001" -201397,USB-C Charging Cable,1,11.95,05/25/19 20:00,"718 Meadow St, San Francisco, CA 94016" -201398,Wired Headphones,1,11.99,05/23/19 12:55,"783 Maple St, Seattle, WA 98101" -201398,USB-C Charging Cable,1,11.95,05/23/19 12:55,"783 Maple St, Seattle, WA 98101" -201399,AA Batteries (4-pack),1,3.84,05/01/19 13:27,"823 Cherry St, San Francisco, CA 94016" -201400,AAA Batteries (4-pack),1,2.99,05/31/19 17:45,"104 Center St, New York City, NY 10001" -201401,AAA Batteries (4-pack),1,2.99,05/12/19 09:12,"813 River St, New York City, NY 10001" -201402,Bose SoundSport Headphones,1,99.99,05/04/19 14:01,"947 Sunset St, New York City, NY 10001" -201403,USB-C Charging Cable,1,11.95,05/20/19 10:27,"608 Walnut St, San Francisco, CA 94016" -201404,AAA Batteries (4-pack),1,2.99,05/20/19 16:59,"753 9th St, San Francisco, CA 94016" -201405,AAA Batteries (4-pack),2,2.99,05/25/19 12:36,"904 7th St, New York City, NY 10001" -201406,Vareebadd Phone,1,400,05/19/19 08:02,"446 Park St, Seattle, WA 98101" -201407,USB-C Charging Cable,1,11.95,05/19/19 10:33,"19 9th St, Seattle, WA 98101" -201408,AA Batteries (4-pack),1,3.84,05/27/19 09:37,"238 Lincoln St, Dallas, TX 75001" -201409,USB-C Charging Cable,1,11.95,05/19/19 12:37,"957 Elm St, San Francisco, CA 94016" -201410,Google Phone,1,600,05/22/19 01:34,"527 Cedar St, San Francisco, CA 94016" -201411,34in Ultrawide Monitor,1,379.99,05/04/19 17:29,"306 Ridge St, Los Angeles, CA 90001" -201412,AA Batteries (4-pack),1,3.84,05/17/19 07:32,"683 Highland St, Seattle, WA 98101" -201413,Wired Headphones,1,11.99,05/03/19 14:48,"679 Hill St, New York City, NY 10001" -201414,20in Monitor,1,109.99,05/14/19 16:23,"318 Adams St, Boston, MA 02215" -201415,USB-C Charging Cable,2,11.95,05/04/19 16:32,"186 Adams St, Los Angeles, CA 90001" -201416,USB-C Charging Cable,1,11.95,05/30/19 18:47,"178 Johnson St, New York City, NY 10001" -201417,Apple Airpods Headphones,1,150,05/10/19 20:42,"820 4th St, Dallas, TX 75001" -201417,Bose SoundSport Headphones,1,99.99,05/10/19 20:42,"820 4th St, Dallas, TX 75001" -201418,34in Ultrawide Monitor,1,379.99,05/21/19 13:51,"556 Adams St, San Francisco, CA 94016" -201419,Wired Headphones,1,11.99,05/15/19 13:54,"949 Jackson St, Atlanta, GA 30301" -201420,AAA Batteries (4-pack),1,2.99,05/21/19 22:57,"377 4th St, Los Angeles, CA 90001" -201421,iPhone,1,700,05/28/19 13:27,"100 Madison St, Dallas, TX 75001" -201422,34in Ultrawide Monitor,1,379.99,05/29/19 12:03,"102 12th St, Los Angeles, CA 90001" -201423,Macbook Pro Laptop,1,1700,05/14/19 12:54,"610 13th St, Portland, OR 97035" -201424,Lightning Charging Cable,1,14.95,05/05/19 18:55,"826 Sunset St, Seattle, WA 98101" -201425,USB-C Charging Cable,1,11.95,05/19/19 21:24,"225 Park St, San Francisco, CA 94016" -201426,AAA Batteries (4-pack),1,2.99,05/11/19 12:19,"604 Washington St, Boston, MA 02215" -201427,Apple Airpods Headphones,1,150,05/24/19 10:28,"280 River St, New York City, NY 10001" -201428,USB-C Charging Cable,2,11.95,05/25/19 11:13,"1 Dogwood St, Atlanta, GA 30301" -201429,Bose SoundSport Headphones,1,99.99,05/21/19 21:17,"607 6th St, Portland, OR 97035" -201430,USB-C Charging Cable,2,11.95,05/13/19 14:15,"313 Center St, San Francisco, CA 94016" -201431,AA Batteries (4-pack),2,3.84,05/10/19 09:07,"189 Hickory St, Austin, TX 73301" -201432,20in Monitor,1,109.99,05/13/19 15:07,"246 Center St, Boston, MA 02215" -201433,Apple Airpods Headphones,1,150,05/13/19 20:50,"865 11th St, San Francisco, CA 94016" -201434,34in Ultrawide Monitor,1,379.99,05/10/19 09:12,"109 Maple St, Austin, TX 73301" -201435,Lightning Charging Cable,1,14.95,05/29/19 19:47,"667 Church St, Los Angeles, CA 90001" -201436,Google Phone,1,600,05/25/19 18:09,"811 Hickory St, Atlanta, GA 30301" -201437,Wired Headphones,1,11.99,05/12/19 15:20,"902 4th St, Austin, TX 73301" -201438,Apple Airpods Headphones,1,150,05/03/19 13:21,"692 Jefferson St, Los Angeles, CA 90001" -201439,Apple Airpods Headphones,1,150,05/26/19 13:36,"452 Elm St, Austin, TX 73301" -201440,Bose SoundSport Headphones,1,99.99,05/05/19 01:59,"867 Adams St, New York City, NY 10001" -201441,AAA Batteries (4-pack),2,2.99,05/25/19 13:16,"163 10th St, San Francisco, CA 94016" -201442,iPhone,1,700,05/06/19 09:13,"732 4th St, Boston, MA 02215" -201443,Bose SoundSport Headphones,1,99.99,05/19/19 08:42,"384 Adams St, Los Angeles, CA 90001" -201444,34in Ultrawide Monitor,1,379.99,05/05/19 12:38,"681 Wilson St, Dallas, TX 75001" -201445,Lightning Charging Cable,2,14.95,05/28/19 14:14,"268 Pine St, Dallas, TX 75001" -201446,AA Batteries (4-pack),1,3.84,05/19/19 19:23,"301 Madison St, San Francisco, CA 94016" -201447,AAA Batteries (4-pack),1,2.99,05/10/19 13:02,"219 West St, San Francisco, CA 94016" -201448,Lightning Charging Cable,1,14.95,05/02/19 21:20,"303 Johnson St, New York City, NY 10001" -201449,27in FHD Monitor,1,149.99,05/01/19 03:15,"125 Jackson St, Atlanta, GA 30301" -201450,27in 4K Gaming Monitor,1,389.99,05/27/19 10:00,"103 10th St, New York City, NY 10001" -201451,Google Phone,1,600,05/05/19 15:42,"575 Dogwood St, San Francisco, CA 94016" -201452,Google Phone,1,600,05/15/19 18:57,"527 Church St, Los Angeles, CA 90001" -201453,Apple Airpods Headphones,1,150,05/26/19 14:44,"306 Walnut St, Los Angeles, CA 90001" -201454,USB-C Charging Cable,1,11.95,05/04/19 14:40,"194 Madison St, San Francisco, CA 94016" -201455,Bose SoundSport Headphones,1,99.99,05/13/19 22:08,"142 Walnut St, Atlanta, GA 30301" -201456,ThinkPad Laptop,1,999.99,05/01/19 22:57,"889 Meadow St, Austin, TX 73301" -201457,Wired Headphones,1,11.99,05/13/19 13:18,"6 7th St, Boston, MA 02215" -201458,Apple Airpods Headphones,1,150,05/04/19 14:17,"360 Elm St, Boston, MA 02215" -201459,Bose SoundSport Headphones,1,99.99,05/18/19 10:31,"909 10th St, San Francisco, CA 94016" -201460,Lightning Charging Cable,1,14.95,05/24/19 01:36,"498 12th St, New York City, NY 10001" -201461,Apple Airpods Headphones,1,150,05/21/19 14:23,"417 2nd St, San Francisco, CA 94016" -201462,AAA Batteries (4-pack),1,2.99,05/10/19 10:18,"17 7th St, San Francisco, CA 94016" -201463,USB-C Charging Cable,1,11.95,05/17/19 07:19,"755 Jackson St, San Francisco, CA 94016" -201464,USB-C Charging Cable,2,11.95,05/30/19 09:42,"804 Madison St, Seattle, WA 98101" -201465,34in Ultrawide Monitor,1,379.99,05/01/19 16:30,"616 Jackson St, Portland, OR 97035" -201466,20in Monitor,1,109.99,05/30/19 17:33,"496 Lake St, Boston, MA 02215" -201467,Google Phone,1,600,05/14/19 01:44,"973 11th St, Portland, OR 97035" -201468,AA Batteries (4-pack),1,3.84,05/28/19 12:26,"943 Sunset St, San Francisco, CA 94016" -201469,34in Ultrawide Monitor,1,379.99,05/23/19 13:51,"400 Dogwood St, Los Angeles, CA 90001" -201470,AA Batteries (4-pack),1,3.84,05/14/19 12:58,"771 South St, Portland, OR 97035" -201471,USB-C Charging Cable,1,11.95,05/04/19 14:12,"595 Washington St, Los Angeles, CA 90001" -201472,Apple Airpods Headphones,1,150,05/30/19 11:11,"258 11th St, San Francisco, CA 94016" -201473,USB-C Charging Cable,1,11.95,05/02/19 11:38,"973 West St, San Francisco, CA 94016" -201474,27in FHD Monitor,1,149.99,05/19/19 14:57,"47 Cherry St, Portland, OR 97035" -201475,USB-C Charging Cable,1,11.95,05/04/19 18:56,"747 Meadow St, Los Angeles, CA 90001" -201476,Macbook Pro Laptop,1,1700,05/12/19 18:26,"765 Center St, New York City, NY 10001" -201477,USB-C Charging Cable,1,11.95,05/19/19 15:58,"25 Walnut St, San Francisco, CA 94016" -201478,AA Batteries (4-pack),1,3.84,05/12/19 22:05,"567 Dogwood St, San Francisco, CA 94016" -201479,Apple Airpods Headphones,1,150,05/23/19 12:25,"445 4th St, Boston, MA 02215" -201480,Lightning Charging Cable,1,14.95,05/02/19 17:54,"962 6th St, San Francisco, CA 94016" -201481,Bose SoundSport Headphones,1,99.99,05/31/19 22:00,"286 Dogwood St, Boston, MA 02215" -201482,34in Ultrawide Monitor,1,379.99,05/06/19 14:27,"170 Center St, Dallas, TX 75001" -201482,USB-C Charging Cable,1,11.95,05/06/19 14:27,"170 Center St, Dallas, TX 75001" -201483,Flatscreen TV,1,300,05/03/19 10:37,"716 Spruce St, New York City, NY 10001" -201484,34in Ultrawide Monitor,1,379.99,05/03/19 10:28,"352 13th St, San Francisco, CA 94016" -201485,Google Phone,1,600,05/24/19 07:39,"505 10th St, Los Angeles, CA 90001" -201486,Lightning Charging Cable,1,14.95,05/12/19 13:42,"36 Elm St, Atlanta, GA 30301" -201487,Macbook Pro Laptop,1,1700,05/21/19 13:25,"663 Adams St, New York City, NY 10001" -201488,Wired Headphones,2,11.99,05/22/19 16:35,"605 Pine St, Seattle, WA 98101" -201489,Wired Headphones,1,11.99,05/21/19 00:58,"238 Walnut St, San Francisco, CA 94016" -201490,Lightning Charging Cable,1,14.95,05/27/19 12:35,"412 Meadow St, San Francisco, CA 94016" -201491,USB-C Charging Cable,1,11.95,05/23/19 21:23,"396 Hickory St, Portland, OR 97035" -201492,27in FHD Monitor,1,149.99,05/21/19 17:55,"239 Hill St, San Francisco, CA 94016" -201493,Lightning Charging Cable,1,14.95,05/20/19 08:10,"698 Jefferson St, Los Angeles, CA 90001" -201494,Wired Headphones,1,11.99,05/25/19 14:08,"568 Pine St, San Francisco, CA 94016" -201495,AA Batteries (4-pack),1,3.84,05/28/19 13:50,"542 Lincoln St, San Francisco, CA 94016" -201496,AAA Batteries (4-pack),1,2.99,05/08/19 15:40,"556 Sunset St, San Francisco, CA 94016" -201497,iPhone,1,700,05/30/19 21:38,"875 14th St, Dallas, TX 75001" -201497,Lightning Charging Cable,1,14.95,05/30/19 21:38,"875 14th St, Dallas, TX 75001" -201498,Google Phone,1,600,05/02/19 08:15,"8 8th St, Atlanta, GA 30301" -,,,,, -201499,Apple Airpods Headphones,1,150,05/03/19 11:58,"75 7th St, Los Angeles, CA 90001" -201500,Wired Headphones,2,11.99,05/09/19 20:43,"300 9th St, Dallas, TX 75001" -201501,Lightning Charging Cable,1,14.95,05/18/19 17:23,"998 8th St, Atlanta, GA 30301" -201502,Apple Airpods Headphones,1,150,05/16/19 20:52,"876 Hickory St, Dallas, TX 75001" -201503,AA Batteries (4-pack),1,3.84,05/15/19 09:08,"361 Sunset St, Dallas, TX 75001" -201504,Apple Airpods Headphones,1,150,05/01/19 15:52,"3 Sunset St, Dallas, TX 75001" -201505,USB-C Charging Cable,1,11.95,05/15/19 09:56,"861 Washington St, Austin, TX 73301" -201506,Flatscreen TV,1,300,05/20/19 19:56,"187 Forest St, San Francisco, CA 94016" -201507,Macbook Pro Laptop,1,1700,05/05/19 16:59,"670 Hickory St, Portland, OR 97035" -201508,Vareebadd Phone,1,400,05/30/19 10:34,"872 1st St, Dallas, TX 75001" -201509,20in Monitor,1,109.99,05/04/19 11:44,"113 14th St, Atlanta, GA 30301" -201510,Flatscreen TV,1,300,05/06/19 08:07,"329 2nd St, Seattle, WA 98101" -201511,AAA Batteries (4-pack),1,2.99,05/28/19 18:10,"392 Willow St, Los Angeles, CA 90001" -201512,USB-C Charging Cable,1,11.95,05/11/19 21:53,"558 11th St, New York City, NY 10001" -201513,Apple Airpods Headphones,1,150,05/24/19 01:24,"440 Center St, Austin, TX 73301" -201514,27in 4K Gaming Monitor,1,389.99,05/10/19 21:21,"189 13th St, Dallas, TX 75001" -201515,Flatscreen TV,1,300,05/15/19 17:44,"10 Walnut St, Los Angeles, CA 90001" -201516,Wired Headphones,1,11.99,05/25/19 19:01,"272 Chestnut St, Boston, MA 02215" -201517,Lightning Charging Cable,1,14.95,05/18/19 12:39,"711 Washington St, Austin, TX 73301" -201518,Wired Headphones,1,11.99,05/08/19 18:11,"21 Spruce St, New York City, NY 10001" -201519,Lightning Charging Cable,1,14.95,05/16/19 19:36,"71 5th St, Boston, MA 02215" -201520,AAA Batteries (4-pack),2,2.99,05/07/19 21:00,"850 Adams St, Atlanta, GA 30301" -201521,AA Batteries (4-pack),1,3.84,05/13/19 13:53,"80 Lakeview St, San Francisco, CA 94016" -201522,Lightning Charging Cable,1,14.95,05/22/19 08:44,"159 Pine St, Boston, MA 02215" -201523,Wired Headphones,1,11.99,05/03/19 18:48,"652 Lincoln St, Seattle, WA 98101" -201524,Apple Airpods Headphones,1,150,05/14/19 23:24,"175 5th St, New York City, NY 10001" -201525,AA Batteries (4-pack),2,3.84,05/18/19 14:43,"3 Lakeview St, Boston, MA 02215" -201526,Bose SoundSport Headphones,1,99.99,05/10/19 22:06,"318 Willow St, Austin, TX 73301" -201527,Apple Airpods Headphones,1,150,05/11/19 14:49,"440 12th St, New York City, NY 10001" -201528,USB-C Charging Cable,1,11.95,05/02/19 20:39,"660 Ridge St, San Francisco, CA 94016" -201529,Apple Airpods Headphones,1,150,05/16/19 08:51,"691 Walnut St, San Francisco, CA 94016" -201530,27in 4K Gaming Monitor,1,389.99,05/29/19 22:01,"862 2nd St, Boston, MA 02215" -201531,Apple Airpods Headphones,1,150,05/12/19 12:42,"703 8th St, San Francisco, CA 94016" -201532,Wired Headphones,1,11.99,05/28/19 20:21,"143 Spruce St, Dallas, TX 75001" -201533,Apple Airpods Headphones,1,150,05/01/19 11:55,"155 10th St, New York City, NY 10001" -201534,AAA Batteries (4-pack),1,2.99,05/23/19 00:21,"728 Walnut St, Atlanta, GA 30301" -201535,Wired Headphones,1,11.99,05/02/19 11:48,"639 7th St, Los Angeles, CA 90001" -201536,LG Dryer,1,600.0,05/01/19 22:26,"711 1st St, New York City, NY 10001" -201537,Bose SoundSport Headphones,1,99.99,05/10/19 19:25,"643 Chestnut St, New York City, NY 10001" -201538,Bose SoundSport Headphones,1,99.99,05/13/19 11:15,"208 Elm St, New York City, NY 10001" -201539,Macbook Pro Laptop,1,1700,05/12/19 12:28,"428 Chestnut St, Los Angeles, CA 90001" -201540,Lightning Charging Cable,1,14.95,05/22/19 13:20,"285 Lake St, Portland, OR 97035" -201541,Vareebadd Phone,1,400,05/11/19 20:02,"130 Maple St, Dallas, TX 75001" -201542,Google Phone,1,600,05/13/19 05:37,"666 Highland St, Los Angeles, CA 90001" -201543,Apple Airpods Headphones,1,150,05/30/19 15:53,"47 Hickory St, Los Angeles, CA 90001" -201544,20in Monitor,1,109.99,05/04/19 20:53,"498 Walnut St, Los Angeles, CA 90001" -201545,AAA Batteries (4-pack),4,2.99,05/29/19 15:00,"784 10th St, New York City, NY 10001" -201546,Wired Headphones,1,11.99,05/26/19 07:55,"34 Maple St, Los Angeles, CA 90001" -201547,Google Phone,1,600,05/21/19 13:49,"746 Wilson St, Atlanta, GA 30301" -201547,USB-C Charging Cable,1,11.95,05/21/19 13:49,"746 Wilson St, Atlanta, GA 30301" -201548,AA Batteries (4-pack),1,3.84,05/15/19 10:40,"720 Sunset St, Atlanta, GA 30301" -201549,Flatscreen TV,1,300,05/02/19 18:57,"785 Willow St, Dallas, TX 75001" -201550,AAA Batteries (4-pack),2,2.99,05/11/19 10:14,"352 Sunset St, San Francisco, CA 94016" -201551,Flatscreen TV,1,300,05/08/19 21:16,"399 Lakeview St, New York City, NY 10001" -201552,Lightning Charging Cable,1,14.95,05/28/19 04:57,"623 Pine St, Austin, TX 73301" -201553,Flatscreen TV,1,300,05/26/19 17:41,"330 Spruce St, Los Angeles, CA 90001" -201554,27in 4K Gaming Monitor,1,389.99,05/05/19 11:25,"726 Park St, Austin, TX 73301" -201555,Google Phone,1,600,05/21/19 13:28,"449 Highland St, Los Angeles, CA 90001" -201556,Google Phone,1,600,05/24/19 14:32,"30 West St, New York City, NY 10001" -201557,AA Batteries (4-pack),1,3.84,05/30/19 10:47,"520 Elm St, Atlanta, GA 30301" -201558,iPhone,1,700,05/26/19 15:26,"556 6th St, Boston, MA 02215" -201558,Lightning Charging Cable,1,14.95,05/26/19 15:26,"556 6th St, Boston, MA 02215" -201559,Apple Airpods Headphones,1,150,05/16/19 22:57,"333 Park St, Boston, MA 02215" -201560,Bose SoundSport Headphones,1,99.99,05/10/19 15:59,"294 10th St, New York City, NY 10001" -201561,Bose SoundSport Headphones,1,99.99,05/01/19 07:36,"19 Cedar St, Atlanta, GA 30301" -201562,USB-C Charging Cable,1,11.95,05/03/19 12:18,"396 1st St, Los Angeles, CA 90001" -201563,AA Batteries (4-pack),1,3.84,05/20/19 17:09,"287 Maple St, Seattle, WA 98101" -201564,Wired Headphones,1,11.99,05/28/19 08:31,"220 Dogwood St, New York City, NY 10001" -201565,Apple Airpods Headphones,1,150,05/20/19 15:57,"621 South St, Dallas, TX 75001" -201566,USB-C Charging Cable,1,11.95,05/08/19 21:57,"16 5th St, Los Angeles, CA 90001" -201567,AA Batteries (4-pack),2,3.84,05/21/19 19:03,"829 Hill St, Atlanta, GA 30301" -201568,USB-C Charging Cable,1,11.95,05/27/19 07:54,"780 Maple St, Atlanta, GA 30301" -201569,Vareebadd Phone,1,400,05/14/19 21:28,"12 12th St, San Francisco, CA 94016" -201570,AAA Batteries (4-pack),1,2.99,05/18/19 11:21,"529 6th St, Boston, MA 02215" -201571,AAA Batteries (4-pack),1,2.99,05/27/19 10:22,"651 Maple St, San Francisco, CA 94016" -201572,Lightning Charging Cable,1,14.95,05/20/19 19:33,"749 14th St, Dallas, TX 75001" -201573,Lightning Charging Cable,1,14.95,05/23/19 20:19,"978 Cherry St, Atlanta, GA 30301" -201574,Lightning Charging Cable,1,14.95,05/14/19 08:04,"622 Madison St, New York City, NY 10001" -201575,Lightning Charging Cable,1,14.95,05/15/19 14:19,"402 Spruce St, Dallas, TX 75001" -201576,Wired Headphones,1,11.99,05/28/19 22:23,"231 7th St, Austin, TX 73301" -201577,Apple Airpods Headphones,1,150,05/03/19 12:00,"505 Adams St, Los Angeles, CA 90001" -201578,Wired Headphones,1,11.99,05/14/19 16:52,"720 Willow St, San Francisco, CA 94016" -201579,Lightning Charging Cable,1,14.95,05/09/19 19:01,"426 13th St, New York City, NY 10001" -201579,Flatscreen TV,1,300,05/09/19 19:01,"426 13th St, New York City, NY 10001" -201580,Apple Airpods Headphones,1,150,05/10/19 22:31,"855 Lincoln St, San Francisco, CA 94016" -201581,Wired Headphones,1,11.99,05/03/19 15:53,"796 South St, Atlanta, GA 30301" -201582,ThinkPad Laptop,1,999.99,05/12/19 20:33,"8 Forest St, Atlanta, GA 30301" -201583,Wired Headphones,1,11.99,05/07/19 23:13,"11 Lincoln St, Atlanta, GA 30301" -201584,Macbook Pro Laptop,1,1700,05/05/19 16:47,"526 Forest St, Dallas, TX 75001" -201585,USB-C Charging Cable,1,11.95,05/12/19 08:24,"457 Elm St, New York City, NY 10001" -201586,Flatscreen TV,1,300,05/31/19 21:49,"309 Lake St, Boston, MA 02215" -201587,Apple Airpods Headphones,1,150,05/07/19 13:01,"143 Highland St, Los Angeles, CA 90001" -201588,27in 4K Gaming Monitor,1,389.99,05/31/19 00:28,"595 Ridge St, Portland, OR 97035" -201589,AAA Batteries (4-pack),1,2.99,05/07/19 18:06,"342 11th St, San Francisco, CA 94016" -201590,Wired Headphones,1,11.99,05/20/19 01:32,"782 Elm St, Portland, OR 97035" -201591,Apple Airpods Headphones,1,150,05/28/19 08:26,"609 Lakeview St, New York City, NY 10001" -201592,Google Phone,1,600,05/22/19 13:57,"200 Forest St, San Francisco, CA 94016" -201593,AA Batteries (4-pack),1,3.84,05/28/19 12:45,"202 North St, San Francisco, CA 94016" -201594,AA Batteries (4-pack),1,3.84,05/16/19 22:03,"716 11th St, New York City, NY 10001" -201595,AA Batteries (4-pack),1,3.84,05/02/19 09:03,"385 12th St, New York City, NY 10001" -201596,Bose SoundSport Headphones,1,99.99,05/06/19 09:53,"890 5th St, New York City, NY 10001" -201597,Wired Headphones,1,11.99,05/26/19 23:50,"614 Cherry St, Los Angeles, CA 90001" -201598,Apple Airpods Headphones,1,150,05/30/19 12:08,"386 Highland St, Los Angeles, CA 90001" -201599,AA Batteries (4-pack),1,3.84,05/01/19 20:42,"459 10th St, Austin, TX 73301" -201600,Lightning Charging Cable,1,14.95,05/05/19 21:07,"180 Forest St, Boston, MA 02215" -201601,AAA Batteries (4-pack),4,2.99,05/31/19 11:26,"422 13th St, Austin, TX 73301" -201602,Bose SoundSport Headphones,1,99.99,05/12/19 00:24,"996 Lincoln St, Boston, MA 02215" -201603,AA Batteries (4-pack),1,3.84,05/04/19 19:39,"403 Forest St, New York City, NY 10001" -201604,AA Batteries (4-pack),3,3.84,05/31/19 21:55,"194 Forest St, Seattle, WA 98101" -201605,Bose SoundSport Headphones,1,99.99,05/07/19 09:34,"156 Adams St, New York City, NY 10001" -201606,AA Batteries (4-pack),1,3.84,05/02/19 14:07,"309 Main St, Seattle, WA 98101" -201606,AA Batteries (4-pack),1,3.84,05/02/19 14:07,"309 Main St, Seattle, WA 98101" -201607,Bose SoundSport Headphones,1,99.99,05/09/19 09:57,"951 Walnut St, Boston, MA 02215" -201608,USB-C Charging Cable,1,11.95,05/03/19 18:56,"427 11th St, Portland, OR 97035" -201609,Vareebadd Phone,1,400,05/01/19 16:49,"892 Walnut St, Boston, MA 02215" -201610,Apple Airpods Headphones,1,150,05/28/19 02:00,"527 5th St, San Francisco, CA 94016" -201611,20in Monitor,1,109.99,05/10/19 12:40,"982 Center St, Boston, MA 02215" -201612,27in 4K Gaming Monitor,1,389.99,05/15/19 11:18,"880 Dogwood St, Los Angeles, CA 90001" -201613,20in Monitor,1,109.99,05/21/19 19:04,"215 Dogwood St, New York City, NY 10001" -201614,AA Batteries (4-pack),1,3.84,05/15/19 19:01,"317 2nd St, Portland, OR 97035" -201615,ThinkPad Laptop,1,999.99,05/07/19 22:06,"478 Maple St, New York City, NY 10001" -201616,Wired Headphones,1,11.99,05/20/19 13:04,"616 Park St, Boston, MA 02215" -201617,AA Batteries (4-pack),1,3.84,05/19/19 11:33,"942 Jefferson St, Atlanta, GA 30301" -201618,AA Batteries (4-pack),1,3.84,05/13/19 18:48,"562 Jefferson St, Austin, TX 73301" -201619,Apple Airpods Headphones,1,150,05/12/19 13:55,"985 Ridge St, Los Angeles, CA 90001" -201620,Lightning Charging Cable,1,14.95,05/09/19 12:39,"83 Walnut St, San Francisco, CA 94016" -201621,Lightning Charging Cable,1,14.95,05/02/19 18:13,"406 Center St, San Francisco, CA 94016" -201622,Lightning Charging Cable,1,14.95,05/18/19 11:19,"494 4th St, Dallas, TX 75001" -201623,ThinkPad Laptop,1,999.99,05/04/19 16:17,"327 Dogwood St, Seattle, WA 98101" -201624,AA Batteries (4-pack),1,3.84,05/18/19 11:23,"21 10th St, San Francisco, CA 94016" -201625,Bose SoundSport Headphones,1,99.99,05/27/19 12:28,"321 Willow St, Austin, TX 73301" -201626,USB-C Charging Cable,1,11.95,05/02/19 19:00,"875 7th St, Dallas, TX 75001" -201627,Google Phone,1,600,05/25/19 16:55,"10 1st St, San Francisco, CA 94016" -201628,27in FHD Monitor,1,149.99,05/10/19 15:36,"420 Forest St, Boston, MA 02215" -201629,USB-C Charging Cable,1,11.95,05/10/19 21:00,"584 6th St, San Francisco, CA 94016" -201630,20in Monitor,1,109.99,05/28/19 11:11,"491 7th St, New York City, NY 10001" -201631,USB-C Charging Cable,1,11.95,05/09/19 18:50,"897 7th St, Boston, MA 02215" -201632,USB-C Charging Cable,1,11.95,05/13/19 20:45,"800 Ridge St, Atlanta, GA 30301" -201633,USB-C Charging Cable,1,11.95,05/01/19 22:40,"935 Hill St, Los Angeles, CA 90001" -201634,AAA Batteries (4-pack),1,2.99,05/19/19 20:14,"592 River St, Dallas, TX 75001" -201635,iPhone,1,700,05/27/19 09:58,"716 Lakeview St, Los Angeles, CA 90001" -201636,AAA Batteries (4-pack),1,2.99,05/28/19 18:29,"83 11th St, Los Angeles, CA 90001" -201637,AA Batteries (4-pack),1,3.84,05/05/19 11:43,"826 Lake St, Seattle, WA 98101" -201638,Bose SoundSport Headphones,1,99.99,05/11/19 21:32,"261 Center St, New York City, NY 10001" -201639,34in Ultrawide Monitor,1,379.99,05/03/19 12:46,"558 Hickory St, Dallas, TX 75001" -201640,Lightning Charging Cable,1,14.95,05/03/19 23:01,"7 Lakeview St, Seattle, WA 98101" -201641,Wired Headphones,1,11.99,05/08/19 13:52,"274 Lincoln St, San Francisco, CA 94016" -201642,Bose SoundSport Headphones,1,99.99,05/27/19 13:46,"781 Spruce St, Atlanta, GA 30301" -201643,Lightning Charging Cable,1,14.95,05/20/19 14:24,"165 6th St, New York City, NY 10001" -201644,AA Batteries (4-pack),1,3.84,05/11/19 16:11,"240 14th St, New York City, NY 10001" -201645,Flatscreen TV,1,300,05/08/19 12:16,"998 Johnson St, New York City, NY 10001" -201646,Bose SoundSport Headphones,1,99.99,05/13/19 12:48,"853 Madison St, New York City, NY 10001" -201647,iPhone,1,700,05/20/19 11:34,"808 River St, Boston, MA 02215" -201648,iPhone,1,700,05/02/19 10:17,"465 9th St, Austin, TX 73301" -201649,Apple Airpods Headphones,1,150,05/02/19 08:09,"808 Jefferson St, San Francisco, CA 94016" -201650,34in Ultrawide Monitor,1,379.99,05/07/19 18:25,"999 Maple St, Boston, MA 02215" -201651,Wired Headphones,1,11.99,05/29/19 20:53,"988 Elm St, Boston, MA 02215" -201652,AAA Batteries (4-pack),1,2.99,05/30/19 12:09,"118 Church St, Austin, TX 73301" -201653,iPhone,1,700,05/21/19 22:06,"454 12th St, New York City, NY 10001" -201654,20in Monitor,1,109.99,05/14/19 12:23,"790 Highland St, San Francisco, CA 94016" -201655,AAA Batteries (4-pack),3,2.99,05/10/19 13:53,"368 Meadow St, San Francisco, CA 94016" -201656,USB-C Charging Cable,1,11.95,05/13/19 19:07,"117 Pine St, Seattle, WA 98101" -201657,Wired Headphones,1,11.99,05/05/19 14:32,"569 Chestnut St, San Francisco, CA 94016" -201658,Macbook Pro Laptop,1,1700,05/11/19 18:15,"948 9th St, San Francisco, CA 94016" -201659,iPhone,1,700,05/29/19 13:21,"977 Park St, Austin, TX 73301" -201660,Macbook Pro Laptop,1,1700,05/02/19 14:17,"89 Wilson St, San Francisco, CA 94016" -201661,USB-C Charging Cable,1,11.95,05/10/19 11:17,"222 8th St, San Francisco, CA 94016" -201662,AAA Batteries (4-pack),1,2.99,05/22/19 11:32,"888 9th St, San Francisco, CA 94016" -201663,20in Monitor,1,109.99,05/18/19 18:22,"40 Sunset St, San Francisco, CA 94016" -201664,ThinkPad Laptop,1,999.99,05/25/19 20:49,"965 Meadow St, San Francisco, CA 94016" -201665,34in Ultrawide Monitor,1,379.99,05/01/19 17:04,"692 5th St, Los Angeles, CA 90001" -201666,Flatscreen TV,1,300,05/01/19 14:18,"525 Wilson St, Seattle, WA 98101" -201667,AAA Batteries (4-pack),1,2.99,05/15/19 09:52,"365 Hill St, Boston, MA 02215" -201668,Bose SoundSport Headphones,1,99.99,05/24/19 22:15,"327 2nd St, Los Angeles, CA 90001" -201669,Wired Headphones,1,11.99,05/14/19 10:31,"964 14th St, Boston, MA 02215" -201670,iPhone,1,700,05/28/19 20:35,"57 Park St, Boston, MA 02215" -201671,Vareebadd Phone,1,400,05/02/19 20:27,"522 Center St, San Francisco, CA 94016" -201672,27in 4K Gaming Monitor,1,389.99,05/13/19 16:44,"622 Chestnut St, Seattle, WA 98101" -201672,Wired Headphones,1,11.99,05/13/19 16:44,"622 Chestnut St, Seattle, WA 98101" -201673,Wired Headphones,1,11.99,05/22/19 04:56,"964 Park St, Portland, OR 97035" -201674,USB-C Charging Cable,1,11.95,05/24/19 14:52,"222 Walnut St, Los Angeles, CA 90001" -201675,Lightning Charging Cable,1,14.95,05/24/19 08:37,"203 Chestnut St, Portland, OR 97035" -201676,Vareebadd Phone,1,400,05/12/19 16:26,"358 Forest St, Los Angeles, CA 90001" -201676,AAA Batteries (4-pack),1,2.99,05/12/19 16:26,"358 Forest St, Los Angeles, CA 90001" -201677,Lightning Charging Cable,1,14.95,05/02/19 23:49,"300 West St, New York City, NY 10001" -201678,Flatscreen TV,1,300,05/11/19 19:47,"620 Dogwood St, Dallas, TX 75001" -201679,27in FHD Monitor,1,149.99,05/14/19 15:03,"130 Meadow St, Boston, MA 02215" -201680,Wired Headphones,1,11.99,05/06/19 16:33,"869 4th St, Los Angeles, CA 90001" -201681,Bose SoundSport Headphones,1,99.99,05/28/19 18:35,"318 River St, Boston, MA 02215" -201682,AA Batteries (4-pack),1,3.84,05/14/19 15:27,"947 Meadow St, Boston, MA 02215" -201683,AAA Batteries (4-pack),1,2.99,05/10/19 10:42,"662 Walnut St, Los Angeles, CA 90001" -201684,AAA Batteries (4-pack),2,2.99,05/30/19 18:01,"106 Washington St, Los Angeles, CA 90001" -201685,AAA Batteries (4-pack),5,2.99,05/27/19 17:33,"666 Madison St, Los Angeles, CA 90001" -201686,Apple Airpods Headphones,1,150,05/28/19 18:38,"919 Willow St, Boston, MA 02215" -201687,Wired Headphones,1,11.99,05/10/19 12:44,"572 6th St, Dallas, TX 75001" -201688,AAA Batteries (4-pack),5,2.99,05/17/19 20:14,"534 Elm St, San Francisco, CA 94016" -201689,AAA Batteries (4-pack),1,2.99,05/29/19 13:00,"558 Highland St, San Francisco, CA 94016" -201690,USB-C Charging Cable,1,11.95,05/09/19 00:10,"817 Sunset St, Los Angeles, CA 90001" -201691,Wired Headphones,1,11.99,05/10/19 09:25,"564 Chestnut St, New York City, NY 10001" -201692,Wired Headphones,1,11.99,05/04/19 14:38,"186 2nd St, San Francisco, CA 94016" -201693,Apple Airpods Headphones,1,150,05/13/19 19:34,"947 6th St, New York City, NY 10001" -201694,Apple Airpods Headphones,1,150,05/17/19 18:15,"976 Jackson St, Seattle, WA 98101" -201695,Apple Airpods Headphones,1,150,05/04/19 22:23,"703 Lakeview St, New York City, NY 10001" -201696,Wired Headphones,1,11.99,05/21/19 12:08,"163 Cherry St, Boston, MA 02215" -201697,Lightning Charging Cable,1,14.95,05/30/19 19:42,"802 10th St, Portland, OR 97035" -201698,iPhone,1,700,05/07/19 12:33,"814 Washington St, San Francisco, CA 94016" -201699,27in FHD Monitor,1,149.99,05/06/19 10:48,"66 Pine St, New York City, NY 10001" -201700,AA Batteries (4-pack),2,3.84,05/01/19 17:51,"938 South St, San Francisco, CA 94016" -201700,20in Monitor,1,109.99,05/01/19 17:51,"938 South St, San Francisco, CA 94016" -201701,20in Monitor,1,109.99,05/24/19 21:18,"475 Madison St, Los Angeles, CA 90001" -201702,AA Batteries (4-pack),1,3.84,05/02/19 12:56,"886 13th St, Los Angeles, CA 90001" -201703,27in 4K Gaming Monitor,1,389.99,05/14/19 14:28,"795 Walnut St, Boston, MA 02215" -201704,Macbook Pro Laptop,1,1700,05/17/19 07:03,"705 Madison St, New York City, NY 10001" -201705,27in 4K Gaming Monitor,1,389.99,05/13/19 13:13,"53 Sunset St, Austin, TX 73301" -201706,iPhone,1,700,05/28/19 21:30,"935 Meadow St, Portland, OR 97035" -201707,27in FHD Monitor,1,149.99,05/03/19 13:17,"611 North St, Portland, OR 97035" -201708,USB-C Charging Cable,1,11.95,05/02/19 05:24,"101 4th St, Dallas, TX 75001" -201708,LG Dryer,1,600.0,05/02/19 05:24,"101 4th St, Dallas, TX 75001" -201709,AA Batteries (4-pack),1,3.84,05/18/19 14:41,"49 Forest St, Dallas, TX 75001" -201710,27in 4K Gaming Monitor,1,389.99,05/03/19 18:40,"733 Jefferson St, San Francisco, CA 94016" -201711,Wired Headphones,3,11.99,05/03/19 16:28,"875 1st St, New York City, NY 10001" -201712,Bose SoundSport Headphones,1,99.99,05/27/19 09:03,"327 7th St, Dallas, TX 75001" -201713,AAA Batteries (4-pack),3,2.99,05/21/19 03:57,"845 Willow St, Dallas, TX 75001" -201714,Apple Airpods Headphones,1,150,05/23/19 02:28,"582 Jefferson St, San Francisco, CA 94016" -201715,AAA Batteries (4-pack),1,2.99,05/30/19 13:12,"524 11th St, Austin, TX 73301" -201716,iPhone,1,700,05/22/19 17:21,"915 Meadow St, New York City, NY 10001" -201717,Wired Headphones,1,11.99,05/06/19 15:07,"600 Johnson St, San Francisco, CA 94016" -201718,AAA Batteries (4-pack),3,2.99,05/13/19 16:48,"633 Madison St, New York City, NY 10001" -201719,AAA Batteries (4-pack),1,2.99,05/28/19 15:43,"503 10th St, Boston, MA 02215" -201720,Vareebadd Phone,1,400,05/14/19 21:09,"867 Walnut St, Austin, TX 73301" -201720,USB-C Charging Cable,1,11.95,05/14/19 21:09,"867 Walnut St, Austin, TX 73301" -201721,AA Batteries (4-pack),1,3.84,05/12/19 14:02,"733 South St, New York City, NY 10001" -201722,Lightning Charging Cable,1,14.95,05/19/19 08:37,"243 Wilson St, Portland, OR 97035" -201723,AAA Batteries (4-pack),2,2.99,05/28/19 14:35,"22 Main St, New York City, NY 10001" -201724,ThinkPad Laptop,1,999.99,05/22/19 19:41,"785 14th St, San Francisco, CA 94016" -201725,Macbook Pro Laptop,1,1700,05/10/19 17:31,"427 Church St, Boston, MA 02215" -201726,AA Batteries (4-pack),3,3.84,05/07/19 13:35,"453 Madison St, San Francisco, CA 94016" -201727,AAA Batteries (4-pack),1,2.99,05/08/19 17:00,"659 2nd St, New York City, NY 10001" -201727,AAA Batteries (4-pack),1,2.99,05/08/19 17:00,"659 2nd St, New York City, NY 10001" -201728,Macbook Pro Laptop,1,1700,05/23/19 22:14,"380 Center St, San Francisco, CA 94016" -201729,Apple Airpods Headphones,1,150,05/17/19 17:51,"768 South St, Austin, TX 73301" -201729,Lightning Charging Cable,1,14.95,05/17/19 17:51,"768 South St, Austin, TX 73301" -201730,Bose SoundSport Headphones,1,99.99,05/07/19 23:03,"868 Jefferson St, Seattle, WA 98101" -201730,AAA Batteries (4-pack),3,2.99,05/07/19 23:03,"868 Jefferson St, Seattle, WA 98101" -201731,USB-C Charging Cable,1,11.95,05/20/19 12:43,"116 12th St, Seattle, WA 98101" -201732,AA Batteries (4-pack),1,3.84,05/17/19 22:31,"279 6th St, San Francisco, CA 94016" -201733,Google Phone,1,600,05/08/19 13:45,"107 13th St, New York City, NY 10001" -201734,Google Phone,1,600,05/19/19 11:32,"347 Madison St, Seattle, WA 98101" -201735,Lightning Charging Cable,1,14.95,05/22/19 15:35,"964 Lakeview St, Portland, OR 97035" -201736,AAA Batteries (4-pack),1,2.99,05/01/19 13:00,"351 Lakeview St, New York City, NY 10001" -201737,Bose SoundSport Headphones,1,99.99,05/28/19 16:52,"315 Pine St, Boston, MA 02215" -201738,Lightning Charging Cable,1,14.95,05/19/19 17:19,"238 Walnut St, Atlanta, GA 30301" -201739,AA Batteries (4-pack),1,3.84,05/11/19 20:45,"515 Ridge St, New York City, NY 10001" -201740,Google Phone,1,600,05/31/19 18:45,"4 Walnut St, San Francisco, CA 94016" -201741,20in Monitor,1,109.99,05/26/19 00:06,"977 Sunset St, New York City, NY 10001" -201742,Wired Headphones,1,11.99,05/09/19 10:05,"621 Hickory St, New York City, NY 10001" -201743,Lightning Charging Cable,1,14.95,05/04/19 20:16,"148 Dogwood St, Portland, OR 97035" -201744,Apple Airpods Headphones,1,150,05/19/19 22:57,"502 Walnut St, New York City, NY 10001" -201745,Lightning Charging Cable,1,14.95,05/08/19 22:28,"475 Pine St, Seattle, WA 98101" -201746,Lightning Charging Cable,1,14.95,05/04/19 14:05,"757 Spruce St, San Francisco, CA 94016" -201747,Wired Headphones,1,11.99,05/05/19 12:03,"430 2nd St, San Francisco, CA 94016" -201748,Lightning Charging Cable,1,14.95,05/07/19 10:32,"491 4th St, San Francisco, CA 94016" -201749,Bose SoundSport Headphones,1,99.99,05/12/19 17:28,"13 Dogwood St, San Francisco, CA 94016" -201750,27in FHD Monitor,1,149.99,05/07/19 15:48,"900 11th St, San Francisco, CA 94016" -201751,Lightning Charging Cable,1,14.95,05/09/19 17:02,"590 13th St, Atlanta, GA 30301" -201752,Lightning Charging Cable,1,14.95,05/21/19 14:14,"234 Elm St, Boston, MA 02215" -201753,iPhone,1,700,05/27/19 06:33,"642 West St, Los Angeles, CA 90001" -201754,Apple Airpods Headphones,1,150,05/26/19 21:12,"926 West St, Atlanta, GA 30301" -201755,AAA Batteries (4-pack),1,2.99,05/02/19 11:38,"741 River St, Boston, MA 02215" -201756,27in FHD Monitor,1,149.99,05/05/19 00:27,"390 Jefferson St, San Francisco, CA 94016" -201757,20in Monitor,1,109.99,05/31/19 10:58,"388 Church St, Los Angeles, CA 90001" -201758,Lightning Charging Cable,1,14.95,05/05/19 18:33,"753 River St, Seattle, WA 98101" -201759,Lightning Charging Cable,1,14.95,05/04/19 21:07,"516 Park St, Portland, OR 97035" -201760,AAA Batteries (4-pack),1,2.99,05/30/19 06:21,"322 Main St, Seattle, WA 98101" -201761,Lightning Charging Cable,1,14.95,05/15/19 07:21,"355 Main St, Dallas, TX 75001" -201762,ThinkPad Laptop,1,999.99,05/31/19 17:09,"435 Main St, Austin, TX 73301" -201763,iPhone,1,700,05/17/19 09:05,"337 Wilson St, Seattle, WA 98101" -201764,Vareebadd Phone,1,400,05/26/19 16:45,"944 South St, Boston, MA 02215" -201765,Macbook Pro Laptop,1,1700,05/11/19 23:24,"336 Hill St, Seattle, WA 98101" -201766,ThinkPad Laptop,1,999.99,05/23/19 11:48,"293 River St, Atlanta, GA 30301" -201767,34in Ultrawide Monitor,1,379.99,05/20/19 02:07,"408 Willow St, Boston, MA 02215" -201768,Lightning Charging Cable,1,14.95,05/26/19 13:10,"957 Highland St, Atlanta, GA 30301" -201769,Bose SoundSport Headphones,1,99.99,05/07/19 12:17,"196 Jefferson St, San Francisco, CA 94016" -201770,20in Monitor,1,109.99,05/17/19 20:46,"292 Jackson St, Portland, ME 04101" -201771,20in Monitor,1,109.99,05/01/19 21:17,"491 2nd St, San Francisco, CA 94016" -201772,34in Ultrawide Monitor,1,379.99,05/20/19 12:36,"443 9th St, Dallas, TX 75001" -201773,Bose SoundSport Headphones,1,99.99,05/02/19 20:16,"441 Highland St, New York City, NY 10001" -201774,27in 4K Gaming Monitor,1,389.99,05/21/19 13:38,"44 11th St, Seattle, WA 98101" -201775,Google Phone,1,600,05/23/19 13:52,"879 Elm St, Portland, OR 97035" -201775,USB-C Charging Cable,1,11.95,05/23/19 13:52,"879 Elm St, Portland, OR 97035" -201775,Wired Headphones,1,11.99,05/23/19 13:52,"879 Elm St, Portland, OR 97035" -201776,USB-C Charging Cable,1,11.95,05/14/19 09:33,"726 Elm St, San Francisco, CA 94016" -201777,27in 4K Gaming Monitor,1,389.99,05/14/19 09:42,"314 4th St, Atlanta, GA 30301" -201778,USB-C Charging Cable,1,11.95,05/19/19 19:51,"284 Maple St, Boston, MA 02215" -201779,Flatscreen TV,1,300,05/07/19 08:53,"997 Walnut St, Boston, MA 02215" -201780,Wired Headphones,1,11.99,05/29/19 13:32,"921 Meadow St, Portland, ME 04101" -201781,Google Phone,1,600,05/06/19 11:11,"874 6th St, San Francisco, CA 94016" -201782,34in Ultrawide Monitor,1,379.99,05/30/19 09:28,"534 North St, San Francisco, CA 94016" -201783,AAA Batteries (4-pack),1,2.99,05/05/19 18:19,"148 Washington St, San Francisco, CA 94016" -201784,Lightning Charging Cable,1,14.95,05/16/19 11:24,"707 Maple St, New York City, NY 10001" -201785,AAA Batteries (4-pack),2,2.99,05/14/19 14:22,"208 Sunset St, San Francisco, CA 94016" -201786,27in FHD Monitor,1,149.99,05/30/19 13:30,"187 11th St, Los Angeles, CA 90001" -201787,27in FHD Monitor,1,149.99,05/14/19 09:58,"241 Cherry St, San Francisco, CA 94016" -201788,AAA Batteries (4-pack),1,2.99,05/20/19 18:27,"9 Lakeview St, Dallas, TX 75001" -201789,34in Ultrawide Monitor,1,379.99,05/30/19 18:55,"805 Church St, Atlanta, GA 30301" -201789,iPhone,1,700,05/30/19 18:55,"805 Church St, Atlanta, GA 30301" -201790,Lightning Charging Cable,1,14.95,05/28/19 15:37,"335 11th St, Los Angeles, CA 90001" -201791,Wired Headphones,1,11.99,05/28/19 11:51,"896 12th St, Portland, OR 97035" -201792,Lightning Charging Cable,1,14.95,05/20/19 18:36,"52 Dogwood St, Los Angeles, CA 90001" -201792,USB-C Charging Cable,1,11.95,05/20/19 18:36,"52 Dogwood St, Los Angeles, CA 90001" -201793,Apple Airpods Headphones,1,150,05/20/19 08:23,"440 River St, San Francisco, CA 94016" -201794,Apple Airpods Headphones,1,150,05/28/19 11:29,"447 North St, New York City, NY 10001" -201795,Wired Headphones,1,11.99,05/27/19 14:06,"385 8th St, Dallas, TX 75001" -201796,Wired Headphones,2,11.99,05/19/19 07:26,"483 4th St, Boston, MA 02215" -201797,27in 4K Gaming Monitor,1,389.99,05/05/19 22:01,"216 Jefferson St, New York City, NY 10001" -201798,iPhone,1,700,05/05/19 16:56,"488 Chestnut St, Los Angeles, CA 90001" -201798,Lightning Charging Cable,1,14.95,05/05/19 16:56,"488 Chestnut St, Los Angeles, CA 90001" -201799,27in FHD Monitor,1,149.99,05/08/19 09:56,"976 Jefferson St, Dallas, TX 75001" -201800,USB-C Charging Cable,2,11.95,05/14/19 09:42,"645 Highland St, San Francisco, CA 94016" -201801,USB-C Charging Cable,1,11.95,05/22/19 10:12,"504 14th St, New York City, NY 10001" -201802,Vareebadd Phone,1,400,05/19/19 14:53,"965 Sunset St, New York City, NY 10001" -201802,USB-C Charging Cable,1,11.95,05/19/19 14:53,"965 Sunset St, New York City, NY 10001" -201803,USB-C Charging Cable,1,11.95,05/20/19 12:51,"450 9th St, Seattle, WA 98101" -201804,Lightning Charging Cable,1,14.95,05/26/19 01:14,"399 Highland St, Los Angeles, CA 90001" -201805,AAA Batteries (4-pack),4,2.99,05/05/19 15:41,"579 4th St, Austin, TX 73301" -201806,ThinkPad Laptop,1,999.99,05/23/19 11:38,"642 Ridge St, Los Angeles, CA 90001" -201807,Bose SoundSport Headphones,1,99.99,05/28/19 14:59,"579 Highland St, Boston, MA 02215" -201808,34in Ultrawide Monitor,1,379.99,05/28/19 08:18,"258 8th St, Los Angeles, CA 90001" -201809,AAA Batteries (4-pack),2,2.99,05/04/19 07:27,"908 Wilson St, Dallas, TX 75001" -201810,Wired Headphones,1,11.99,05/09/19 17:33,"273 Lake St, San Francisco, CA 94016" -201811,Lightning Charging Cable,1,14.95,05/27/19 21:22,"895 Sunset St, San Francisco, CA 94016" -201812,USB-C Charging Cable,1,11.95,05/22/19 20:41,"137 Jefferson St, New York City, NY 10001" -201813,Apple Airpods Headphones,1,150,05/03/19 15:36,"390 Forest St, Seattle, WA 98101" -201814,Google Phone,1,600,05/16/19 16:54,"94 Elm St, San Francisco, CA 94016" -201815,USB-C Charging Cable,1,11.95,05/31/19 16:30,"9 Lakeview St, New York City, NY 10001" -201816,Apple Airpods Headphones,1,150,05/16/19 18:17,"520 Jefferson St, Atlanta, GA 30301" -201817,LG Dryer,1,600.0,05/07/19 22:35,"573 South St, Seattle, WA 98101" -201818,Apple Airpods Headphones,1,150,05/28/19 18:46,"871 Park St, Austin, TX 73301" -201819,AAA Batteries (4-pack),1,2.99,05/05/19 17:09,"454 Highland St, Atlanta, GA 30301" -201820,USB-C Charging Cable,1,11.95,05/08/19 16:30,"915 Sunset St, San Francisco, CA 94016" -201821,Wired Headphones,1,11.99,05/23/19 07:00,"716 Lake St, San Francisco, CA 94016" -201822,Lightning Charging Cable,1,14.95,05/22/19 11:26,"775 Walnut St, Portland, OR 97035" -201823,Lightning Charging Cable,1,14.95,05/03/19 16:56,"40 Jefferson St, Portland, OR 97035" -201824,ThinkPad Laptop,1,999.99,05/07/19 14:32,"803 Washington St, San Francisco, CA 94016" -201825,AA Batteries (4-pack),3,3.84,05/11/19 07:57,"172 4th St, San Francisco, CA 94016" -201826,LG Washing Machine,1,600.0,05/18/19 10:04,"504 6th St, San Francisco, CA 94016" -201827,Bose SoundSport Headphones,1,99.99,05/15/19 21:38,"794 Adams St, Atlanta, GA 30301" -201828,USB-C Charging Cable,1,11.95,05/02/19 18:16,"679 River St, Portland, OR 97035" -201829,AA Batteries (4-pack),4,3.84,05/09/19 17:05,"628 Lincoln St, Dallas, TX 75001" -201830,AAA Batteries (4-pack),2,2.99,05/26/19 18:13,"812 13th St, Los Angeles, CA 90001" -201831,AAA Batteries (4-pack),2,2.99,05/15/19 15:59,"692 Ridge St, Dallas, TX 75001" -201832,iPhone,1,700,05/09/19 12:32,"278 Adams St, San Francisco, CA 94016" -201833,ThinkPad Laptop,1,999.99,05/22/19 17:16,"37 Lincoln St, New York City, NY 10001" -201834,AA Batteries (4-pack),1,3.84,05/10/19 23:36,"730 6th St, Portland, OR 97035" -201835,AAA Batteries (4-pack),1,2.99,05/02/19 19:38,"86 Elm St, San Francisco, CA 94016" -201836,AA Batteries (4-pack),2,3.84,05/14/19 16:43,"631 9th St, Boston, MA 02215" -201837,AAA Batteries (4-pack),1,2.99,05/20/19 18:40,"883 Pine St, Atlanta, GA 30301" -201838,AA Batteries (4-pack),1,3.84,05/14/19 00:31,"325 Johnson St, Boston, MA 02215" -201839,USB-C Charging Cable,1,11.95,05/07/19 13:57,"195 Ridge St, Portland, OR 97035" -201840,20in Monitor,1,109.99,05/20/19 21:51,"778 10th St, Dallas, TX 75001" -201841,Lightning Charging Cable,1,14.95,05/22/19 12:21,"182 7th St, New York City, NY 10001" -201842,Macbook Pro Laptop,1,1700,05/02/19 19:49,"791 Maple St, San Francisco, CA 94016" -201843,27in FHD Monitor,1,149.99,05/10/19 13:42,"985 Forest St, San Francisco, CA 94016" -201844,AAA Batteries (4-pack),5,2.99,05/18/19 14:22,"13 Jackson St, Seattle, WA 98101" -201845,Flatscreen TV,1,300,05/25/19 23:41,"242 Elm St, Portland, OR 97035" -201846,AA Batteries (4-pack),2,3.84,05/17/19 12:00,"162 8th St, Atlanta, GA 30301" -201847,Lightning Charging Cable,1,14.95,05/06/19 16:46,"196 Maple St, Portland, OR 97035" -201848,27in 4K Gaming Monitor,1,389.99,05/18/19 21:21,"477 10th St, Boston, MA 02215" -201849,27in FHD Monitor,1,149.99,05/24/19 09:51,"890 Highland St, Boston, MA 02215" -201850,AA Batteries (4-pack),1,3.84,05/04/19 20:59,"162 Jackson St, Atlanta, GA 30301" -201851,Wired Headphones,1,11.99,05/07/19 08:48,"546 Meadow St, San Francisco, CA 94016" -201852,34in Ultrawide Monitor,1,379.99,05/31/19 07:50,"33 14th St, New York City, NY 10001" -201853,Lightning Charging Cable,1,14.95,05/11/19 02:13,"63 South St, Los Angeles, CA 90001" -201854,Google Phone,1,600,05/27/19 23:38,"472 North St, Boston, MA 02215" -201855,USB-C Charging Cable,1,11.95,05/14/19 08:46,"830 Dogwood St, Dallas, TX 75001" -201856,Apple Airpods Headphones,1,150,05/24/19 10:10,"758 14th St, Los Angeles, CA 90001" -201857,27in 4K Gaming Monitor,1,389.99,05/07/19 19:40,"731 Johnson St, San Francisco, CA 94016" -201858,Wired Headphones,2,11.99,05/02/19 19:56,"204 River St, Boston, MA 02215" -201859,AA Batteries (4-pack),1,3.84,05/13/19 19:47,"139 Chestnut St, Los Angeles, CA 90001" -201860,Macbook Pro Laptop,1,1700,05/03/19 22:27,"285 South St, Portland, OR 97035" -201861,AA Batteries (4-pack),2,3.84,05/30/19 10:44,"896 5th St, Seattle, WA 98101" -201862,USB-C Charging Cable,1,11.95,05/11/19 19:23,"989 Jackson St, Los Angeles, CA 90001" -201863,27in FHD Monitor,1,149.99,05/08/19 14:59,"67 Madison St, San Francisco, CA 94016" -201864,Apple Airpods Headphones,1,150,05/28/19 10:40,"811 Highland St, Dallas, TX 75001" -201865,AA Batteries (4-pack),1,3.84,05/30/19 15:54,"788 Elm St, Seattle, WA 98101" -201866,Lightning Charging Cable,1,14.95,05/10/19 15:40,"536 Hill St, Atlanta, GA 30301" -201867,34in Ultrawide Monitor,1,379.99,05/27/19 16:54,"281 Ridge St, San Francisco, CA 94016" -201868,Wired Headphones,1,11.99,05/16/19 12:24,"440 Lincoln St, San Francisco, CA 94016" -201869,AAA Batteries (4-pack),1,2.99,05/14/19 08:19,"759 Lakeview St, Los Angeles, CA 90001" -201870,LG Washing Machine,1,600.0,05/29/19 13:00,"288 4th St, Boston, MA 02215" -201871,Bose SoundSport Headphones,1,99.99,05/10/19 12:09,"645 West St, New York City, NY 10001" -201872,Lightning Charging Cable,1,14.95,05/05/19 12:36,"349 Sunset St, Boston, MA 02215" -201873,Wired Headphones,1,11.99,05/12/19 11:54,"971 8th St, San Francisco, CA 94016" -201874,27in 4K Gaming Monitor,1,389.99,05/07/19 13:53,"232 5th St, New York City, NY 10001" -201875,34in Ultrawide Monitor,1,379.99,05/16/19 08:12,"120 Cherry St, New York City, NY 10001" -201876,Wired Headphones,1,11.99,05/28/19 01:01,"929 West St, San Francisco, CA 94016" -201877,Apple Airpods Headphones,1,150,05/10/19 21:54,"770 Wilson St, San Francisco, CA 94016" -201878,Google Phone,1,600,05/10/19 12:14,"827 Lakeview St, Seattle, WA 98101" -201879,Apple Airpods Headphones,1,150,05/11/19 17:54,"732 Lake St, Los Angeles, CA 90001" -201880,Macbook Pro Laptop,1,1700,05/19/19 08:08,"188 South St, Dallas, TX 75001" -201881,Wired Headphones,1,11.99,05/16/19 08:25,"150 Lakeview St, Portland, OR 97035" -201882,34in Ultrawide Monitor,1,379.99,05/17/19 18:05,"919 7th St, San Francisco, CA 94016" -201883,Apple Airpods Headphones,1,150,05/21/19 20:16,"919 Cherry St, Los Angeles, CA 90001" -201884,Lightning Charging Cable,1,14.95,05/23/19 16:09,"938 6th St, New York City, NY 10001" -201885,Lightning Charging Cable,3,14.95,05/22/19 22:46,"18 Spruce St, Austin, TX 73301" -201886,Flatscreen TV,1,300,05/07/19 17:25,"223 Washington St, Atlanta, GA 30301" -201887,Apple Airpods Headphones,1,150,05/14/19 19:29,"419 Pine St, Portland, OR 97035" -201888,USB-C Charging Cable,1,11.95,05/01/19 16:40,"514 5th St, Atlanta, GA 30301" -201889,Wired Headphones,3,11.99,05/01/19 07:31,"849 1st St, Atlanta, GA 30301" -201890,Lightning Charging Cable,1,14.95,05/14/19 00:16,"190 River St, Los Angeles, CA 90001" -201891,AAA Batteries (4-pack),1,2.99,05/20/19 14:01,"228 Walnut St, Seattle, WA 98101" -201892,AAA Batteries (4-pack),1,2.99,05/28/19 11:00,"96 Adams St, Los Angeles, CA 90001" -201893,AAA Batteries (4-pack),1,2.99,05/28/19 11:14,"565 Adams St, San Francisco, CA 94016" -201894,27in FHD Monitor,1,149.99,05/25/19 10:15,"286 5th St, Los Angeles, CA 90001" -201895,Wired Headphones,1,11.99,05/03/19 08:42,"629 Lake St, Austin, TX 73301" -201896,34in Ultrawide Monitor,1,379.99,05/30/19 20:40,"819 11th St, San Francisco, CA 94016" -201897,AA Batteries (4-pack),1,3.84,05/20/19 20:34,"570 Main St, San Francisco, CA 94016" -201898,AA Batteries (4-pack),1,3.84,05/25/19 16:18,"911 Church St, San Francisco, CA 94016" -201899,USB-C Charging Cable,1,11.95,05/25/19 22:39,"652 Lakeview St, New York City, NY 10001" -201900,Lightning Charging Cable,1,14.95,05/04/19 14:51,"341 Maple St, Portland, OR 97035" -201901,20in Monitor,1,109.99,05/02/19 17:28,"554 Walnut St, Boston, MA 02215" -201902,AA Batteries (4-pack),2,3.84,05/28/19 20:23,"807 Hill St, Dallas, TX 75001" -201903,Bose SoundSport Headphones,1,99.99,05/11/19 08:59,"773 Dogwood St, San Francisco, CA 94016" -201904,Lightning Charging Cable,2,14.95,05/05/19 23:31,"635 5th St, San Francisco, CA 94016" -201905,Wired Headphones,1,11.99,05/06/19 00:15,"82 Wilson St, Los Angeles, CA 90001" -201906,Wired Headphones,1,11.99,05/22/19 09:13,"775 South St, Seattle, WA 98101" -201907,AAA Batteries (4-pack),2,2.99,05/29/19 11:25,"546 Lakeview St, San Francisco, CA 94016" -201908,AAA Batteries (4-pack),1,2.99,05/25/19 08:59,"850 Ridge St, Dallas, TX 75001" -201909,Lightning Charging Cable,1,14.95,05/27/19 10:57,"898 North St, Boston, MA 02215" -201910,AAA Batteries (4-pack),1,2.99,05/08/19 17:42,"610 Hill St, New York City, NY 10001" -201911,Apple Airpods Headphones,1,150,05/06/19 20:52,"586 Hickory St, Portland, OR 97035" -201912,Apple Airpods Headphones,1,150,05/08/19 06:41,"801 Cedar St, Los Angeles, CA 90001" -201913,AAA Batteries (4-pack),2,2.99,05/01/19 20:37,"705 Willow St, San Francisco, CA 94016" -201914,AA Batteries (4-pack),1,3.84,05/11/19 20:43,"319 Lakeview St, San Francisco, CA 94016" -201915,AAA Batteries (4-pack),2,2.99,05/16/19 09:19,"28 4th St, Atlanta, GA 30301" -201916,Wired Headphones,1,11.99,05/26/19 22:00,"404 Cherry St, Boston, MA 02215" -201917,Google Phone,1,600,05/25/19 23:06,"94 Jefferson St, Boston, MA 02215" -201917,USB-C Charging Cable,1,11.95,05/25/19 23:06,"94 Jefferson St, Boston, MA 02215" -201918,USB-C Charging Cable,1,11.95,05/17/19 19:04,"459 Meadow St, Boston, MA 02215" -201919,34in Ultrawide Monitor,1,379.99,05/31/19 12:47,"967 Main St, Seattle, WA 98101" -201920,USB-C Charging Cable,1,11.95,05/13/19 20:02,"744 10th St, San Francisco, CA 94016" -201921,AA Batteries (4-pack),1,3.84,05/28/19 21:46,"279 Jackson St, Portland, OR 97035" -201922,Wired Headphones,1,11.99,05/16/19 12:38,"572 Church St, New York City, NY 10001" -201923,Wired Headphones,2,11.99,05/29/19 13:36,"834 14th St, Boston, MA 02215" -201924,27in FHD Monitor,1,149.99,05/24/19 21:39,"146 Hickory St, New York City, NY 10001" -201925,Flatscreen TV,1,300,05/29/19 14:57,"754 9th St, New York City, NY 10001" -201926,Bose SoundSport Headphones,1,99.99,05/08/19 19:22,"288 Highland St, New York City, NY 10001" -201927,27in 4K Gaming Monitor,1,389.99,05/30/19 13:01,"541 Johnson St, New York City, NY 10001" -201928,Google Phone,1,600,05/20/19 14:20,"549 Jefferson St, Dallas, TX 75001" -201929,Lightning Charging Cable,1,14.95,05/22/19 19:39,"525 North St, Portland, OR 97035" -201930,AAA Batteries (4-pack),1,2.99,05/10/19 01:20,"471 River St, Portland, OR 97035" -201931,Flatscreen TV,1,300,05/11/19 00:13,"133 7th St, New York City, NY 10001" -201932,Lightning Charging Cable,1,14.95,05/20/19 09:38,"418 Meadow St, Boston, MA 02215" -201933,AA Batteries (4-pack),1,3.84,05/19/19 10:47,"54 Adams St, San Francisco, CA 94016" -201934,Flatscreen TV,1,300,05/18/19 08:06,"15 Ridge St, Los Angeles, CA 90001" -201935,Bose SoundSport Headphones,1,99.99,05/27/19 10:29,"267 Ridge St, Portland, OR 97035" -201936,Lightning Charging Cable,1,14.95,05/13/19 16:03,"148 Lake St, Los Angeles, CA 90001" -201937,AA Batteries (4-pack),1,3.84,05/30/19 11:01,"345 1st St, Los Angeles, CA 90001" -201938,iPhone,1,700,05/10/19 18:20,"168 Walnut St, San Francisco, CA 94016" -201939,Apple Airpods Headphones,1,150,05/23/19 07:06,"676 Pine St, Boston, MA 02215" -201939,Flatscreen TV,1,300,05/23/19 07:06,"676 Pine St, Boston, MA 02215" -201940,27in FHD Monitor,1,149.99,05/04/19 23:00,"742 Hickory St, Boston, MA 02215" -201941,AA Batteries (4-pack),1,3.84,05/22/19 08:37,"812 North St, Los Angeles, CA 90001" -201942,Apple Airpods Headphones,1,150,05/21/19 12:06,"791 4th St, Dallas, TX 75001" -201943,27in 4K Gaming Monitor,1,389.99,05/26/19 10:44,"179 5th St, New York City, NY 10001" -201944,AA Batteries (4-pack),1,3.84,05/25/19 14:37,"198 11th St, Dallas, TX 75001" -201945,Lightning Charging Cable,1,14.95,05/25/19 18:04,"945 Lake St, New York City, NY 10001" -201946,27in 4K Gaming Monitor,1,389.99,05/22/19 08:30,"32 Willow St, Boston, MA 02215" -201947,LG Dryer,1,600.0,05/17/19 19:21,"103 Washington St, Austin, TX 73301" -201948,AAA Batteries (4-pack),1,2.99,05/30/19 16:27,"722 Jackson St, San Francisco, CA 94016" -201948,Lightning Charging Cable,1,14.95,05/30/19 16:27,"722 Jackson St, San Francisco, CA 94016" -201949,Apple Airpods Headphones,1,150,05/20/19 20:16,"338 Chestnut St, San Francisco, CA 94016" -201950,Lightning Charging Cable,1,14.95,05/15/19 13:34,"412 Lakeview St, New York City, NY 10001" -201951,Apple Airpods Headphones,1,150,05/19/19 11:57,"286 Meadow St, San Francisco, CA 94016" -201952,Lightning Charging Cable,1,14.95,05/24/19 18:53,"857 Highland St, Boston, MA 02215" -201953,Apple Airpods Headphones,1,150,05/13/19 12:20,"865 Highland St, Boston, MA 02215" -201954,AAA Batteries (4-pack),2,2.99,05/17/19 21:27,"650 Maple St, New York City, NY 10001" -201955,Apple Airpods Headphones,1,150,05/13/19 10:09,"565 6th St, San Francisco, CA 94016" -201955,AA Batteries (4-pack),1,3.84,05/13/19 10:09,"565 6th St, San Francisco, CA 94016" -201956,27in 4K Gaming Monitor,1,389.99,05/11/19 18:54,"51 West St, Los Angeles, CA 90001" -201957,AAA Batteries (4-pack),3,2.99,05/24/19 16:49,"31 Main St, Austin, TX 73301" -201958,Wired Headphones,1,11.99,05/21/19 13:14,"128 Main St, Portland, OR 97035" -201959,AAA Batteries (4-pack),2,2.99,05/23/19 21:30,"373 Adams St, San Francisco, CA 94016" -201960,AA Batteries (4-pack),2,3.84,05/10/19 15:33,"143 Ridge St, Seattle, WA 98101" -201961,Apple Airpods Headphones,1,150,05/28/19 11:18,"753 Chestnut St, San Francisco, CA 94016" -201962,iPhone,1,700,05/20/19 17:00,"694 2nd St, New York City, NY 10001" -201962,Wired Headphones,1,11.99,05/20/19 17:00,"694 2nd St, New York City, NY 10001" -201963,AA Batteries (4-pack),1,3.84,05/21/19 09:34,"747 Washington St, San Francisco, CA 94016" -201964,Google Phone,1,600,05/17/19 23:02,"267 Maple St, Atlanta, GA 30301" -201965,iPhone,1,700,05/11/19 15:21,"380 South St, New York City, NY 10001" -201966,iPhone,1,700,05/25/19 17:40,"40 Dogwood St, San Francisco, CA 94016" -201967,USB-C Charging Cable,1,11.95,05/17/19 10:31,"697 Cherry St, San Francisco, CA 94016" -201968,Macbook Pro Laptop,1,1700,05/12/19 11:33,"578 Dogwood St, Portland, ME 04101" -201969,Lightning Charging Cable,1,14.95,05/04/19 19:03,"946 Wilson St, San Francisco, CA 94016" -201970,AA Batteries (4-pack),1,3.84,05/13/19 18:43,"848 Johnson St, Boston, MA 02215" -201971,AA Batteries (4-pack),1,3.84,05/10/19 12:37,"812 Park St, New York City, NY 10001" -201972,USB-C Charging Cable,1,11.95,05/26/19 14:24,"788 Maple St, Boston, MA 02215" -201973,27in 4K Gaming Monitor,1,389.99,05/26/19 18:56,"846 14th St, Seattle, WA 98101" -201974,ThinkPad Laptop,1,999.99,05/19/19 17:09,"86 6th St, Seattle, WA 98101" -201975,iPhone,1,700,05/12/19 23:15,"410 9th St, San Francisco, CA 94016" -201976,Lightning Charging Cable,1,14.95,05/25/19 23:08,"428 10th St, Boston, MA 02215" -201977,USB-C Charging Cable,1,11.95,05/14/19 21:11,"700 Center St, Dallas, TX 75001" -201978,USB-C Charging Cable,1,11.95,05/10/19 07:39,"839 Adams St, Dallas, TX 75001" -201979,AA Batteries (4-pack),1,3.84,05/08/19 19:04,"538 5th St, San Francisco, CA 94016" -201979,Wired Headphones,1,11.99,05/08/19 19:04,"538 5th St, San Francisco, CA 94016" -201980,Wired Headphones,1,11.99,05/19/19 16:51,"135 Lincoln St, Portland, OR 97035" -201981,Wired Headphones,1,11.99,05/22/19 14:11,"209 Park St, Atlanta, GA 30301" -201982,Wired Headphones,1,11.99,05/16/19 20:58,"504 Elm St, Dallas, TX 75001" -201983,AAA Batteries (4-pack),1,2.99,05/15/19 19:48,"734 Hickory St, New York City, NY 10001" -201984,Lightning Charging Cable,1,14.95,05/29/19 12:37,"85 Jefferson St, San Francisco, CA 94016" -201985,Apple Airpods Headphones,1,150,05/13/19 17:11,"811 Jackson St, Los Angeles, CA 90001" -201986,USB-C Charging Cable,2,11.95,05/19/19 11:07,"325 Forest St, Boston, MA 02215" -201987,Wired Headphones,1,11.99,05/28/19 21:07,"717 Jackson St, New York City, NY 10001" -201988,USB-C Charging Cable,1,11.95,05/07/19 09:51,"17 River St, New York City, NY 10001" -201989,Lightning Charging Cable,1,14.95,05/01/19 23:49,"693 Ridge St, Boston, MA 02215" -201990,USB-C Charging Cable,1,11.95,05/04/19 06:37,"791 10th St, Boston, MA 02215" -201991,AA Batteries (4-pack),1,3.84,05/20/19 11:28,"327 Jackson St, Seattle, WA 98101" -201992,Lightning Charging Cable,1,14.95,05/19/19 11:56,"912 Ridge St, San Francisco, CA 94016" -201993,Apple Airpods Headphones,1,150,05/06/19 12:22,"477 11th St, San Francisco, CA 94016" -201994,LG Dryer,1,600.0,05/12/19 17:37,"262 North St, New York City, NY 10001" -201995,AA Batteries (4-pack),1,3.84,05/25/19 17:43,"650 Jackson St, San Francisco, CA 94016" -201996,Apple Airpods Headphones,1,150,05/13/19 14:35,"114 Highland St, Austin, TX 73301" -201997,27in FHD Monitor,1,149.99,05/24/19 00:14,"97 Pine St, Dallas, TX 75001" -201998,27in FHD Monitor,1,149.99,05/01/19 18:41,"18 Wilson St, New York City, NY 10001" -201999,AAA Batteries (4-pack),4,2.99,05/26/19 20:35,"654 Adams St, Los Angeles, CA 90001" -202000,AAA Batteries (4-pack),2,2.99,05/17/19 10:24,"19 Church St, Los Angeles, CA 90001" -202001,Lightning Charging Cable,1,14.95,05/25/19 15:44,"54 North St, San Francisco, CA 94016" -202002,Google Phone,1,600,05/21/19 10:58,"288 14th St, Boston, MA 02215" -202003,iPhone,1,700,05/10/19 16:27,"815 Willow St, Atlanta, GA 30301" -202004,Wired Headphones,1,11.99,05/17/19 14:19,"507 Madison St, San Francisco, CA 94016" -202005,34in Ultrawide Monitor,1,379.99,05/19/19 23:27,"25 12th St, Boston, MA 02215" -202006,AAA Batteries (4-pack),2,2.99,05/10/19 14:26,"491 Center St, Austin, TX 73301" -202007,Lightning Charging Cable,1,14.95,05/31/19 21:17,"72 Cedar St, Los Angeles, CA 90001" -202008,USB-C Charging Cable,1,11.95,05/06/19 21:22,"540 Lincoln St, San Francisco, CA 94016" -202009,iPhone,1,700,05/10/19 23:53,"371 Elm St, Portland, ME 04101" -202010,AA Batteries (4-pack),1,3.84,05/20/19 16:06,"960 Church St, Seattle, WA 98101" -202011,Google Phone,1,600,05/15/19 12:53,"653 2nd St, Dallas, TX 75001" -202012,Lightning Charging Cable,1,14.95,05/09/19 11:13,"63 Lakeview St, Dallas, TX 75001" -202013,27in FHD Monitor,1,149.99,05/07/19 10:31,"503 Hill St, Boston, MA 02215" -202014,AA Batteries (4-pack),1,3.84,05/25/19 17:38,"256 Jackson St, Portland, ME 04101" -202015,AA Batteries (4-pack),1,3.84,05/01/19 11:05,"396 South St, Boston, MA 02215" -202016,Bose SoundSport Headphones,1,99.99,05/13/19 19:45,"759 12th St, Atlanta, GA 30301" -202016,iPhone,1,700,05/13/19 19:45,"759 12th St, Atlanta, GA 30301" -202017,Bose SoundSport Headphones,1,99.99,05/30/19 19:05,"270 Johnson St, New York City, NY 10001" -202018,AA Batteries (4-pack),1,3.84,05/17/19 12:38,"554 5th St, Seattle, WA 98101" -202019,Bose SoundSport Headphones,1,99.99,05/27/19 10:39,"978 Lake St, Atlanta, GA 30301" -202020,AAA Batteries (4-pack),1,2.99,05/29/19 05:39,"218 Meadow St, San Francisco, CA 94016" -202021,Bose SoundSport Headphones,1,99.99,05/31/19 18:29,"811 West St, San Francisco, CA 94016" -202022,AAA Batteries (4-pack),1,2.99,05/03/19 22:54,"324 Hill St, Dallas, TX 75001" -202023,Wired Headphones,2,11.99,05/30/19 14:22,"524 Hickory St, New York City, NY 10001" -202024,Bose SoundSport Headphones,1,99.99,05/28/19 11:58,"492 Cherry St, Boston, MA 02215" -202025,USB-C Charging Cable,1,11.95,05/05/19 20:03,"974 Jefferson St, San Francisco, CA 94016" -202026,Macbook Pro Laptop,1,1700,05/12/19 14:05,"219 Highland St, Boston, MA 02215" -202027,iPhone,1,700,05/10/19 15:14,"523 8th St, New York City, NY 10001" -202028,Wired Headphones,1,11.99,05/17/19 17:51,"167 Adams St, San Francisco, CA 94016" -202029,Flatscreen TV,1,300,05/29/19 08:09,"229 Hill St, Los Angeles, CA 90001" -202030,Apple Airpods Headphones,1,150,05/20/19 12:22,"41 7th St, Atlanta, GA 30301" -202031,Apple Airpods Headphones,1,150,05/20/19 11:58,"868 Lakeview St, Portland, OR 97035" -202032,20in Monitor,1,109.99,05/23/19 17:36,"805 Hickory St, Boston, MA 02215" -202033,Wired Headphones,1,11.99,05/29/19 19:45,"64 Washington St, Dallas, TX 75001" -202034,AA Batteries (4-pack),2,3.84,05/15/19 14:46,"647 14th St, San Francisco, CA 94016" -202035,27in FHD Monitor,1,149.99,05/09/19 17:34,"195 Adams St, San Francisco, CA 94016" -202036,27in FHD Monitor,1,149.99,05/18/19 23:00,"232 14th St, Dallas, TX 75001" -202037,27in 4K Gaming Monitor,1,389.99,05/13/19 22:49,"413 Spruce St, Los Angeles, CA 90001" -202038,USB-C Charging Cable,1,11.95,05/23/19 14:13,"575 Forest St, Boston, MA 02215" -202039,Apple Airpods Headphones,1,150,05/29/19 10:51,"585 Maple St, San Francisco, CA 94016" -202040,AA Batteries (4-pack),2,3.84,05/08/19 20:36,"965 Wilson St, Atlanta, GA 30301" -202041,Lightning Charging Cable,1,14.95,05/22/19 17:13,"213 Cedar St, Austin, TX 73301" -202042,AAA Batteries (4-pack),1,2.99,05/07/19 20:18,"524 9th St, Boston, MA 02215" -202043,AA Batteries (4-pack),1,3.84,05/05/19 11:47,"152 Maple St, Austin, TX 73301" -202044,Lightning Charging Cable,1,14.95,05/11/19 09:15,"11 Park St, Austin, TX 73301" -202045,AAA Batteries (4-pack),1,2.99,05/04/19 20:31,"720 Elm St, Seattle, WA 98101" -202046,Lightning Charging Cable,1,14.95,05/15/19 11:23,"400 Chestnut St, Seattle, WA 98101" -202047,Macbook Pro Laptop,1,1700,05/31/19 20:03,"123 14th St, San Francisco, CA 94016" -202048,34in Ultrawide Monitor,1,379.99,05/15/19 14:13,"653 Adams St, San Francisco, CA 94016" -202049,iPhone,1,700,05/24/19 23:33,"512 River St, Atlanta, GA 30301" -202050,ThinkPad Laptop,1,999.99,05/31/19 07:25,"361 Park St, New York City, NY 10001" -202051,Wired Headphones,1,11.99,05/14/19 20:14,"427 Jefferson St, Seattle, WA 98101" -202052,Apple Airpods Headphones,1,150,05/30/19 19:52,"557 2nd St, Boston, MA 02215" -202053,Wired Headphones,1,11.99,05/28/19 11:53,"714 Hickory St, Atlanta, GA 30301" -202054,AA Batteries (4-pack),3,3.84,05/24/19 17:13,"144 Park St, Seattle, WA 98101" -202055,Flatscreen TV,1,300,05/31/19 09:44,"461 Washington St, San Francisco, CA 94016" -202056,Wired Headphones,1,11.99,05/15/19 14:58,"296 River St, Atlanta, GA 30301" -202057,34in Ultrawide Monitor,1,379.99,05/26/19 19:57,"953 Wilson St, New York City, NY 10001" -202058,Bose SoundSport Headphones,1,99.99,05/21/19 18:26,"870 Jefferson St, Los Angeles, CA 90001" -202059,AAA Batteries (4-pack),1,2.99,05/12/19 15:50,"66 River St, Portland, OR 97035" -202060,27in 4K Gaming Monitor,1,389.99,05/04/19 14:33,"253 Lincoln St, Los Angeles, CA 90001" -202061,LG Dryer,1,600.0,05/15/19 20:47,"534 11th St, San Francisco, CA 94016" -202062,AA Batteries (4-pack),1,3.84,05/09/19 17:04,"893 14th St, Boston, MA 02215" -202063,27in 4K Gaming Monitor,1,389.99,05/20/19 11:52,"127 Meadow St, Seattle, WA 98101" -202064,USB-C Charging Cable,1,11.95,05/10/19 04:50,"163 Hickory St, Dallas, TX 75001" -202065,AA Batteries (4-pack),1,3.84,05/26/19 08:01,"872 Hill St, Atlanta, GA 30301" -202066,AA Batteries (4-pack),1,3.84,05/16/19 01:37,"382 12th St, Portland, OR 97035" -202066,iPhone,1,700,05/16/19 01:37,"382 12th St, Portland, OR 97035" -202067,AAA Batteries (4-pack),1,2.99,05/02/19 22:17,"609 Dogwood St, New York City, NY 10001" -202068,Google Phone,1,600,05/24/19 19:45,"628 Cherry St, Los Angeles, CA 90001" -202069,AA Batteries (4-pack),2,3.84,05/21/19 12:42,"475 4th St, San Francisco, CA 94016" -202070,Wired Headphones,1,11.99,05/04/19 11:51,"958 Park St, New York City, NY 10001" -202071,Apple Airpods Headphones,1,150,05/19/19 18:30,"993 Park St, Los Angeles, CA 90001" -202072,AA Batteries (4-pack),2,3.84,05/09/19 23:22,"125 Madison St, Dallas, TX 75001" -202073,iPhone,1,700,05/27/19 19:38,"491 13th St, Austin, TX 73301" -202074,ThinkPad Laptop,1,999.99,05/29/19 12:04,"477 Hill St, Seattle, WA 98101" -202075,Bose SoundSport Headphones,1,99.99,05/11/19 23:57,"641 Church St, Austin, TX 73301" -202076,Lightning Charging Cable,1,14.95,05/01/19 05:25,"44 2nd St, Portland, ME 04101" -202077,AAA Batteries (4-pack),1,2.99,05/13/19 19:58,"497 Jefferson St, Portland, OR 97035" -202078,Bose SoundSport Headphones,1,99.99,05/23/19 08:30,"423 Johnson St, Seattle, WA 98101" -202079,Wired Headphones,1,11.99,05/08/19 10:40,"782 Pine St, Boston, MA 02215" -202080,Wired Headphones,1,11.99,05/08/19 09:04,"364 Lake St, San Francisco, CA 94016" -202081,Wired Headphones,1,11.99,05/28/19 13:43,"334 5th St, New York City, NY 10001" -202082,27in 4K Gaming Monitor,1,389.99,05/01/19 23:12,"566 Spruce St, New York City, NY 10001" -202083,AA Batteries (4-pack),1,3.84,05/05/19 12:20,"769 River St, New York City, NY 10001" -202084,27in FHD Monitor,1,149.99,05/25/19 18:26,"119 Johnson St, Boston, MA 02215" -202085,USB-C Charging Cable,1,11.95,05/16/19 16:05,"189 Center St, Atlanta, GA 30301" -202086,Apple Airpods Headphones,1,150,05/17/19 08:00,"222 Elm St, Atlanta, GA 30301" -202087,USB-C Charging Cable,1,11.95,05/04/19 23:19,"3 Maple St, New York City, NY 10001" -202088,AA Batteries (4-pack),1,3.84,05/17/19 17:09,"395 1st St, Atlanta, GA 30301" -202089,Wired Headphones,1,11.99,05/22/19 13:24,"549 Spruce St, New York City, NY 10001" -202090,Bose SoundSport Headphones,1,99.99,05/27/19 15:44,"693 Madison St, Boston, MA 02215" -202091,Wired Headphones,1,11.99,05/25/19 06:27,"152 Church St, Boston, MA 02215" -202092,27in FHD Monitor,1,149.99,05/14/19 21:34,"707 North St, San Francisco, CA 94016" -202093,USB-C Charging Cable,1,11.95,05/10/19 13:42,"968 Jefferson St, Los Angeles, CA 90001" -202094,Wired Headphones,1,11.99,05/16/19 19:03,"684 River St, Los Angeles, CA 90001" -202095,Google Phone,1,600,05/15/19 17:17,"757 Main St, Los Angeles, CA 90001" -202096,Lightning Charging Cable,1,14.95,05/18/19 09:34,"974 Forest St, Los Angeles, CA 90001" -202097,Wired Headphones,1,11.99,05/11/19 05:48,"398 Madison St, San Francisco, CA 94016" -202097,AA Batteries (4-pack),2,3.84,05/11/19 05:48,"398 Madison St, San Francisco, CA 94016" -202098,iPhone,1,700,05/10/19 17:10,"908 Madison St, Seattle, WA 98101" -202099,34in Ultrawide Monitor,1,379.99,05/01/19 10:57,"467 Church St, Seattle, WA 98101" -202100,USB-C Charging Cable,1,11.95,05/21/19 18:06,"476 5th St, Seattle, WA 98101" -202101,AAA Batteries (4-pack),1,2.99,05/14/19 12:23,"283 Center St, Atlanta, GA 30301" -202102,AA Batteries (4-pack),1,3.84,05/19/19 23:02,"846 North St, Los Angeles, CA 90001" -202103,Apple Airpods Headphones,1,150,05/31/19 06:51,"339 Pine St, San Francisco, CA 94016" -202104,USB-C Charging Cable,1,11.95,05/29/19 13:47,"728 Pine St, New York City, NY 10001" -202105,Google Phone,1,600,05/02/19 14:56,"281 Cherry St, Atlanta, GA 30301" -202106,Bose SoundSport Headphones,1,99.99,05/18/19 11:04,"506 River St, Dallas, TX 75001" -202107,34in Ultrawide Monitor,1,379.99,05/08/19 20:31,"426 Highland St, New York City, NY 10001" -202108,Vareebadd Phone,1,400,05/29/19 16:55,"803 11th St, New York City, NY 10001" -202109,27in FHD Monitor,1,149.99,05/26/19 12:22,"917 River St, San Francisco, CA 94016" -202110,Lightning Charging Cable,1,14.95,05/10/19 20:55,"805 Ridge St, New York City, NY 10001" -202111,AA Batteries (4-pack),1,3.84,05/27/19 12:44,"251 13th St, Los Angeles, CA 90001" -202112,34in Ultrawide Monitor,1,379.99,05/04/19 09:14,"564 10th St, Dallas, TX 75001" -202113,AAA Batteries (4-pack),2,2.99,05/02/19 08:37,"760 6th St, New York City, NY 10001" -202114,Wired Headphones,1,11.99,05/08/19 19:54,"278 Chestnut St, Portland, OR 97035" -202115,Bose SoundSport Headphones,1,99.99,05/08/19 12:02,"485 Cherry St, New York City, NY 10001" -202116,AA Batteries (4-pack),1,3.84,05/21/19 12:51,"428 11th St, New York City, NY 10001" -202117,27in 4K Gaming Monitor,1,389.99,05/06/19 17:46,"730 14th St, San Francisco, CA 94016" -202118,Lightning Charging Cable,1,14.95,05/05/19 12:29,"850 West St, New York City, NY 10001" -202118,ThinkPad Laptop,1,999.99,05/05/19 12:29,"850 West St, New York City, NY 10001" -202119,AAA Batteries (4-pack),1,2.99,05/28/19 09:40,"270 Sunset St, Dallas, TX 75001" -202120,Wired Headphones,2,11.99,05/15/19 20:04,"79 Jackson St, Los Angeles, CA 90001" -202121,AAA Batteries (4-pack),1,2.99,05/28/19 13:34,"235 Ridge St, Atlanta, GA 30301" -202122,AAA Batteries (4-pack),2,2.99,05/04/19 22:52,"215 Chestnut St, New York City, NY 10001" -202123,Apple Airpods Headphones,1,150,05/13/19 11:59,"471 Walnut St, New York City, NY 10001" -202124,Wired Headphones,1,11.99,05/02/19 13:54,"669 Lake St, Dallas, TX 75001" -202125,Lightning Charging Cable,1,14.95,05/20/19 14:40,"283 Lakeview St, Seattle, WA 98101" -202126,Apple Airpods Headphones,1,150,05/16/19 08:15,"963 9th St, Austin, TX 73301" -202126,Wired Headphones,1,11.99,05/16/19 08:15,"963 9th St, Austin, TX 73301" -202127,AA Batteries (4-pack),2,3.84,05/27/19 15:41,"963 Willow St, New York City, NY 10001" -202128,Lightning Charging Cable,1,14.95,05/11/19 08:56,"329 Ridge St, Boston, MA 02215" -202129,Lightning Charging Cable,1,14.95,05/22/19 20:02,"633 Forest St, San Francisco, CA 94016" -202130,Flatscreen TV,1,300,05/16/19 11:47,"850 Jackson St, New York City, NY 10001" -202131,20in Monitor,1,109.99,05/04/19 17:05,"655 Highland St, Los Angeles, CA 90001" -202132,20in Monitor,1,109.99,05/19/19 07:45,"712 North St, Atlanta, GA 30301" -202133,20in Monitor,1,109.99,05/11/19 20:28,"524 Wilson St, Atlanta, GA 30301" -202134,Vareebadd Phone,1,400,05/19/19 19:16,"702 Highland St, San Francisco, CA 94016" -202135,Apple Airpods Headphones,1,150,05/25/19 15:01,"771 5th St, Los Angeles, CA 90001" -202136,LG Washing Machine,1,600.0,05/01/19 19:25,"850 12th St, Boston, MA 02215" -202137,AAA Batteries (4-pack),2,2.99,05/19/19 03:26,"381 12th St, San Francisco, CA 94016" -202138,Apple Airpods Headphones,1,150,05/17/19 21:32,"340 5th St, Los Angeles, CA 90001" -202138,AAA Batteries (4-pack),1,2.99,05/17/19 21:32,"340 5th St, Los Angeles, CA 90001" -202139,Bose SoundSport Headphones,1,99.99,05/18/19 11:43,"518 Jefferson St, Seattle, WA 98101" -202140,Wired Headphones,1,11.99,05/07/19 18:08,"709 11th St, Dallas, TX 75001" -202141,AA Batteries (4-pack),1,3.84,05/13/19 12:08,"670 12th St, San Francisco, CA 94016" -202142,27in FHD Monitor,1,149.99,05/11/19 12:39,"954 North St, Boston, MA 02215" -202143,Wired Headphones,1,11.99,05/14/19 10:50,"10 13th St, San Francisco, CA 94016" -202144,iPhone,1,700,05/22/19 13:13,"162 Pine St, Boston, MA 02215" -202144,Wired Headphones,1,11.99,05/22/19 13:13,"162 Pine St, Boston, MA 02215" -202145,USB-C Charging Cable,1,11.95,05/22/19 19:53,"938 Chestnut St, Los Angeles, CA 90001" -202146,USB-C Charging Cable,2,11.95,05/30/19 07:59,"849 West St, Los Angeles, CA 90001" -202147,Wired Headphones,1,11.99,05/29/19 18:22,"656 Maple St, New York City, NY 10001" -202148,27in 4K Gaming Monitor,1,389.99,05/30/19 07:17,"446 Meadow St, Boston, MA 02215" -202149,iPhone,1,700,05/19/19 19:29,"798 13th St, San Francisco, CA 94016" -202150,Lightning Charging Cable,1,14.95,05/17/19 16:54,"886 5th St, Atlanta, GA 30301" -202151,Lightning Charging Cable,1,14.95,05/05/19 16:44,"730 Forest St, Los Angeles, CA 90001" -202152,27in 4K Gaming Monitor,1,389.99,05/20/19 19:22,"811 9th St, Dallas, TX 75001" -202153,AAA Batteries (4-pack),1,2.99,05/12/19 22:05,"502 Lakeview St, Atlanta, GA 30301" -202154,27in FHD Monitor,1,149.99,05/24/19 11:21,"994 Adams St, San Francisco, CA 94016" -202155,34in Ultrawide Monitor,1,379.99,05/18/19 21:42,"400 10th St, Boston, MA 02215" -202156,Bose SoundSport Headphones,1,99.99,05/07/19 09:38,"471 5th St, Los Angeles, CA 90001" -202157,AA Batteries (4-pack),2,3.84,05/04/19 18:43,"750 Main St, San Francisco, CA 94016" -202158,AAA Batteries (4-pack),1,2.99,05/25/19 12:02,"80 4th St, Dallas, TX 75001" -202159,27in FHD Monitor,1,149.99,05/12/19 19:13,"482 Hill St, Atlanta, GA 30301" -202160,27in FHD Monitor,1,149.99,05/07/19 20:14,"447 6th St, San Francisco, CA 94016" -202161,34in Ultrawide Monitor,1,379.99,05/19/19 16:52,"539 Center St, New York City, NY 10001" -202162,USB-C Charging Cable,1,11.95,05/28/19 16:50,"612 Chestnut St, New York City, NY 10001" -202163,AA Batteries (4-pack),1,3.84,05/06/19 20:40,"987 Cedar St, Portland, OR 97035" -202164,34in Ultrawide Monitor,1,379.99,05/29/19 14:05,"203 River St, Portland, OR 97035" -202165,27in FHD Monitor,1,149.99,05/25/19 02:36,"461 West St, San Francisco, CA 94016" -202166,USB-C Charging Cable,1,11.95,05/29/19 14:31,"124 5th St, Dallas, TX 75001" -202167,USB-C Charging Cable,1,11.95,05/26/19 08:44,"848 12th St, Portland, OR 97035" -202168,Macbook Pro Laptop,1,1700,05/10/19 16:41,"635 Maple St, San Francisco, CA 94016" -202169,Google Phone,1,600,05/03/19 18:07,"271 Cedar St, San Francisco, CA 94016" -202170,AA Batteries (4-pack),3,3.84,05/30/19 19:44,"509 Cherry St, Boston, MA 02215" -202171,Lightning Charging Cable,2,14.95,05/08/19 10:28,"190 Hill St, San Francisco, CA 94016" -202172,AAA Batteries (4-pack),2,2.99,05/20/19 21:24,"71 Hill St, Portland, OR 97035" -202173,AA Batteries (4-pack),1,3.84,05/14/19 12:02,"177 Chestnut St, San Francisco, CA 94016" -202174,Lightning Charging Cable,1,14.95,05/27/19 21:05,"273 North St, Dallas, TX 75001" -202175,Lightning Charging Cable,1,14.95,05/07/19 19:26,"320 Ridge St, San Francisco, CA 94016" -202176,Lightning Charging Cable,1,14.95,05/17/19 22:04,"244 Park St, New York City, NY 10001" -202177,Apple Airpods Headphones,1,150,05/15/19 14:38,"651 Hill St, Austin, TX 73301" -202178,USB-C Charging Cable,2,11.95,05/21/19 22:20,"802 Center St, New York City, NY 10001" -202179,AAA Batteries (4-pack),1,2.99,05/10/19 20:43,"670 Chestnut St, Atlanta, GA 30301" -202180,AA Batteries (4-pack),2,3.84,05/06/19 16:24,"234 12th St, Los Angeles, CA 90001" -202181,AAA Batteries (4-pack),1,2.99,05/23/19 10:18,"936 Ridge St, New York City, NY 10001" -202182,Apple Airpods Headphones,1,150,05/18/19 19:43,"255 Adams St, Austin, TX 73301" -202183,Bose SoundSport Headphones,1,99.99,05/16/19 11:59,"47 Jackson St, Austin, TX 73301" -202184,AAA Batteries (4-pack),1,2.99,05/30/19 09:33,"351 11th St, New York City, NY 10001" -202185,AAA Batteries (4-pack),2,2.99,05/06/19 09:55,"575 Lincoln St, San Francisco, CA 94016" -202186,Bose SoundSport Headphones,1,99.99,05/16/19 07:09,"296 1st St, Los Angeles, CA 90001" -202186,Bose SoundSport Headphones,1,99.99,05/16/19 07:09,"296 1st St, Los Angeles, CA 90001" -202187,Bose SoundSport Headphones,1,99.99,05/03/19 21:55,"173 13th St, Dallas, TX 75001" -202188,Google Phone,1,600,05/08/19 16:20,"449 9th St, San Francisco, CA 94016" -202189,Wired Headphones,1,11.99,05/31/19 18:42,"103 Forest St, San Francisco, CA 94016" -202189,USB-C Charging Cable,1,11.95,05/31/19 18:42,"103 Forest St, San Francisco, CA 94016" -202190,Wired Headphones,1,11.99,05/06/19 13:55,"415 1st St, San Francisco, CA 94016" -202191,Google Phone,1,600,05/04/19 11:05,"721 Hickory St, Austin, TX 73301" -202192,27in 4K Gaming Monitor,1,389.99,05/31/19 12:00,"436 11th St, San Francisco, CA 94016" -202193,Apple Airpods Headphones,1,150,05/24/19 18:50,"832 11th St, San Francisco, CA 94016" -202194,Lightning Charging Cable,1,14.95,05/03/19 13:04,"902 4th St, San Francisco, CA 94016" -202195,Wired Headphones,1,11.99,05/07/19 15:43,"554 Lake St, Austin, TX 73301" -202196,AA Batteries (4-pack),1,3.84,05/31/19 10:58,"175 Main St, Seattle, WA 98101" -202197,Wired Headphones,1,11.99,05/13/19 02:23,"899 Cherry St, San Francisco, CA 94016" -202198,Wired Headphones,1,11.99,05/02/19 17:08,"390 10th St, Boston, MA 02215" -202199,Lightning Charging Cable,1,14.95,05/16/19 14:02,"301 West St, Atlanta, GA 30301" -202200,Lightning Charging Cable,1,14.95,05/18/19 15:47,"52 2nd St, Los Angeles, CA 90001" -202201,Lightning Charging Cable,2,14.95,05/25/19 22:58,"744 Lincoln St, Atlanta, GA 30301" -202202,34in Ultrawide Monitor,1,379.99,05/16/19 23:07,"598 Willow St, Los Angeles, CA 90001" -202203,AAA Batteries (4-pack),1,2.99,05/28/19 19:27,"374 9th St, Austin, TX 73301" -202204,AAA Batteries (4-pack),1,2.99,05/17/19 16:16,"148 6th St, New York City, NY 10001" -202205,27in FHD Monitor,1,149.99,05/28/19 12:32,"746 Jefferson St, Dallas, TX 75001" -202206,Lightning Charging Cable,1,14.95,05/23/19 09:57,"968 Park St, Dallas, TX 75001" -202207,Macbook Pro Laptop,1,1700,05/10/19 20:35,"180 Johnson St, Los Angeles, CA 90001" -202208,USB-C Charging Cable,1,11.95,05/12/19 16:26,"23 Cherry St, New York City, NY 10001" -202209,Bose SoundSport Headphones,1,99.99,05/31/19 20:20,"589 Highland St, Los Angeles, CA 90001" -202210,Flatscreen TV,1,300,05/19/19 19:38,"460 South St, New York City, NY 10001" -202211,Apple Airpods Headphones,1,150,05/20/19 14:52,"95 Center St, Los Angeles, CA 90001" -202212,Macbook Pro Laptop,1,1700,05/25/19 13:19,"10 1st St, San Francisco, CA 94016" -202212,Macbook Pro Laptop,1,1700,05/25/19 13:19,"10 1st St, San Francisco, CA 94016" -202213,iPhone,1,700,05/31/19 15:47,"193 Ridge St, San Francisco, CA 94016" -202214,Lightning Charging Cable,1,14.95,05/11/19 20:39,"750 Hickory St, Dallas, TX 75001" -202215,AA Batteries (4-pack),1,3.84,05/26/19 21:48,"346 Forest St, Los Angeles, CA 90001" -202216,Wired Headphones,1,11.99,05/09/19 20:12,"793 11th St, Los Angeles, CA 90001" -202217,Lightning Charging Cable,1,14.95,05/02/19 22:19,"852 Adams St, Dallas, TX 75001" -202218,Wired Headphones,1,11.99,05/30/19 21:18,"278 2nd St, San Francisco, CA 94016" -202219,Apple Airpods Headphones,1,150,05/26/19 10:53,"312 12th St, Seattle, WA 98101" -202220,Wired Headphones,1,11.99,05/12/19 12:41,"797 Forest St, Los Angeles, CA 90001" -202221,Bose SoundSport Headphones,1,99.99,05/21/19 22:44,"558 Meadow St, Atlanta, GA 30301" -202222,Bose SoundSport Headphones,1,99.99,05/08/19 17:04,"332 5th St, Atlanta, GA 30301" -202223,Bose SoundSport Headphones,1,99.99,05/29/19 11:25,"111 Highland St, Dallas, TX 75001" -202224,Lightning Charging Cable,1,14.95,05/19/19 21:45,"617 1st St, New York City, NY 10001" -202225,Apple Airpods Headphones,1,150,05/05/19 16:12,"92 Center St, San Francisco, CA 94016" -202226,34in Ultrawide Monitor,1,379.99,05/12/19 21:05,"250 6th St, Boston, MA 02215" -202227,USB-C Charging Cable,1,11.95,05/28/19 17:34,"767 Washington St, New York City, NY 10001" -202228,AAA Batteries (4-pack),1,2.99,05/07/19 01:12,"214 14th St, San Francisco, CA 94016" -202229,AA Batteries (4-pack),1,3.84,05/13/19 16:16,"10 Dogwood St, Seattle, WA 98101" -202230,27in FHD Monitor,1,149.99,05/17/19 04:17,"885 West St, Los Angeles, CA 90001" -202231,AAA Batteries (4-pack),2,2.99,05/07/19 10:34,"568 9th St, Seattle, WA 98101" -202232,USB-C Charging Cable,1,11.95,05/30/19 21:36,"759 Church St, San Francisco, CA 94016" -202233,Google Phone,1,600,05/25/19 16:08,"536 Willow St, Portland, OR 97035" -202234,Apple Airpods Headphones,1,150,05/06/19 14:57,"17 Lake St, Atlanta, GA 30301" -,,,,, -202235,iPhone,1,700,05/28/19 13:28,"679 Hickory St, Portland, OR 97035" -202236,Wired Headphones,1,11.99,05/13/19 16:21,"883 Ridge St, San Francisco, CA 94016" -202236,USB-C Charging Cable,1,11.95,05/13/19 16:21,"883 Ridge St, San Francisco, CA 94016" -202237,Flatscreen TV,1,300,05/14/19 08:54,"447 14th St, Los Angeles, CA 90001" -202238,Lightning Charging Cable,1,14.95,05/08/19 14:45,"648 Highland St, San Francisco, CA 94016" -202239,Bose SoundSport Headphones,1,99.99,05/22/19 19:44,"113 South St, Los Angeles, CA 90001" -202240,34in Ultrawide Monitor,1,379.99,05/22/19 16:24,"2 Lake St, Atlanta, GA 30301" -202241,27in 4K Gaming Monitor,1,389.99,05/24/19 20:09,"373 Hill St, Los Angeles, CA 90001" -202242,LG Washing Machine,1,600.0,05/22/19 09:37,"31 Willow St, Dallas, TX 75001" -202243,AA Batteries (4-pack),1,3.84,05/03/19 21:54,"122 West St, New York City, NY 10001" -202244,Bose SoundSport Headphones,1,99.99,05/30/19 11:13,"521 1st St, Atlanta, GA 30301" -202245,iPhone,1,700,05/15/19 15:13,"237 Pine St, Dallas, TX 75001" -202245,Apple Airpods Headphones,1,150,05/15/19 15:13,"237 Pine St, Dallas, TX 75001" -202246,Apple Airpods Headphones,1,150,05/02/19 21:13,"916 Chestnut St, Seattle, WA 98101" -202247,Apple Airpods Headphones,1,150,05/13/19 19:48,"386 Pine St, Atlanta, GA 30301" -202248,Apple Airpods Headphones,1,150,05/13/19 18:43,"58 Spruce St, Los Angeles, CA 90001" -202249,34in Ultrawide Monitor,1,379.99,05/07/19 14:21,"870 Sunset St, Boston, MA 02215" -202250,Bose SoundSport Headphones,1,99.99,05/19/19 20:11,"599 Forest St, Boston, MA 02215" -202251,AA Batteries (4-pack),2,3.84,05/27/19 00:57,"544 Pine St, San Francisco, CA 94016" -202252,Wired Headphones,1,11.99,05/09/19 17:03,"441 Sunset St, Dallas, TX 75001" -202253,LG Dryer,1,600.0,05/23/19 10:47,"392 Chestnut St, Seattle, WA 98101" -202254,Lightning Charging Cable,1,14.95,05/12/19 02:37,"163 Wilson St, Los Angeles, CA 90001" -202255,AAA Batteries (4-pack),2,2.99,05/31/19 10:24,"690 10th St, San Francisco, CA 94016" -202256,Apple Airpods Headphones,1,150,05/08/19 20:18,"843 12th St, Atlanta, GA 30301" -202257,AA Batteries (4-pack),1,3.84,05/14/19 09:10,"40 Jefferson St, San Francisco, CA 94016" -202258,Lightning Charging Cable,1,14.95,05/17/19 19:13,"810 Meadow St, Austin, TX 73301" -202259,USB-C Charging Cable,1,11.95,05/08/19 08:00,"922 Jackson St, Dallas, TX 75001" -202260,34in Ultrawide Monitor,1,379.99,05/01/19 08:10,"93 Highland St, Dallas, TX 75001" -202261,AA Batteries (4-pack),2,3.84,05/06/19 19:00,"618 Center St, Atlanta, GA 30301" -202262,Lightning Charging Cable,1,14.95,05/18/19 06:02,"815 Lakeview St, Los Angeles, CA 90001" -202262,34in Ultrawide Monitor,1,379.99,05/18/19 06:02,"815 Lakeview St, Los Angeles, CA 90001" -202263,34in Ultrawide Monitor,1,379.99,05/15/19 17:46,"228 Dogwood St, Portland, ME 04101" -202264,Wired Headphones,1,11.99,05/12/19 11:47,"290 Wilson St, Atlanta, GA 30301" -202265,Apple Airpods Headphones,1,150,05/06/19 00:56,"710 Maple St, Boston, MA 02215" -202266,27in FHD Monitor,1,149.99,05/18/19 15:41,"234 Walnut St, New York City, NY 10001" -202267,ThinkPad Laptop,1,999.99,05/08/19 20:33,"720 Cedar St, Seattle, WA 98101" -202268,Wired Headphones,1,11.99,05/08/19 11:16,"691 Lincoln St, San Francisco, CA 94016" -202269,Lightning Charging Cable,1,14.95,05/04/19 17:15,"990 10th St, Los Angeles, CA 90001" -202270,Wired Headphones,1,11.99,05/29/19 16:13,"551 11th St, New York City, NY 10001" -202271,Wired Headphones,2,11.99,05/01/19 07:56,"150 Forest St, Dallas, TX 75001" -202271,Wired Headphones,1,11.99,05/01/19 07:56,"150 Forest St, Dallas, TX 75001" -202272,AA Batteries (4-pack),1,3.84,05/07/19 23:41,"334 South St, Portland, OR 97035" -202273,Flatscreen TV,1,300,05/30/19 19:22,"200 Lake St, Seattle, WA 98101" -202274,USB-C Charging Cable,1,11.95,05/26/19 11:36,"892 Elm St, Boston, MA 02215" -202275,Lightning Charging Cable,1,14.95,05/03/19 11:33,"994 Forest St, Austin, TX 73301" -202276,iPhone,1,700,05/05/19 19:43,"135 Pine St, San Francisco, CA 94016" -202277,USB-C Charging Cable,1,11.95,05/10/19 23:59,"913 Chestnut St, San Francisco, CA 94016" -202278,Lightning Charging Cable,1,14.95,05/27/19 08:01,"367 Pine St, Portland, OR 97035" -202279,Apple Airpods Headphones,1,150,05/02/19 16:27,"953 Walnut St, Boston, MA 02215" -202280,20in Monitor,1,109.99,05/28/19 10:59,"812 South St, New York City, NY 10001" -202281,Lightning Charging Cable,1,14.95,05/14/19 17:57,"120 12th St, Atlanta, GA 30301" -202282,Apple Airpods Headphones,1,150,05/28/19 13:48,"258 Spruce St, Portland, ME 04101" -202283,34in Ultrawide Monitor,1,379.99,05/11/19 18:49,"968 Elm St, Los Angeles, CA 90001" -202284,Apple Airpods Headphones,1,150,05/29/19 20:19,"58 Hickory St, San Francisco, CA 94016" -202285,20in Monitor,1,109.99,05/10/19 18:45,"21 Sunset St, New York City, NY 10001" -202286,USB-C Charging Cable,1,11.95,05/13/19 01:21,"561 Cherry St, Austin, TX 73301" -202287,34in Ultrawide Monitor,1,379.99,05/22/19 08:23,"442 Elm St, Seattle, WA 98101" -202288,iPhone,1,700,05/14/19 19:24,"506 Adams St, Boston, MA 02215" -202289,Apple Airpods Headphones,1,150,05/16/19 10:54,"359 Wilson St, Los Angeles, CA 90001" -202290,AA Batteries (4-pack),1,3.84,05/11/19 20:49,"779 Forest St, Austin, TX 73301" -202291,27in FHD Monitor,1,149.99,05/12/19 22:04,"210 1st St, San Francisco, CA 94016" -202292,Lightning Charging Cable,1,14.95,05/16/19 21:02,"17 Hickory St, San Francisco, CA 94016" -202293,iPhone,1,700,05/26/19 19:34,"344 2nd St, Los Angeles, CA 90001" -202294,AA Batteries (4-pack),1,3.84,05/10/19 10:46,"326 Main St, Los Angeles, CA 90001" -202295,AA Batteries (4-pack),1,3.84,05/18/19 15:30,"632 Spruce St, New York City, NY 10001" -202296,Apple Airpods Headphones,1,150,05/04/19 11:01,"346 5th St, Portland, ME 04101" -202297,AAA Batteries (4-pack),2,2.99,05/25/19 10:15,"203 12th St, New York City, NY 10001" -202298,Wired Headphones,1,11.99,05/12/19 22:01,"980 10th St, Los Angeles, CA 90001" -202299,34in Ultrawide Monitor,1,379.99,05/17/19 18:14,"644 Lincoln St, Dallas, TX 75001" -202300,USB-C Charging Cable,1,11.95,05/29/19 16:38,"495 7th St, Seattle, WA 98101" -202301,Apple Airpods Headphones,1,150,05/08/19 21:59,"420 Wilson St, San Francisco, CA 94016" -202302,AAA Batteries (4-pack),1,2.99,05/23/19 21:44,"329 Washington St, Seattle, WA 98101" -202303,Bose SoundSport Headphones,1,99.99,05/15/19 18:14,"334 12th St, Austin, TX 73301" -202304,Lightning Charging Cable,1,14.95,05/09/19 14:09,"290 Maple St, Los Angeles, CA 90001" -202305,AAA Batteries (4-pack),2,2.99,05/18/19 11:58,"614 West St, Portland, ME 04101" -202306,Bose SoundSport Headphones,1,99.99,05/20/19 19:54,"470 Main St, San Francisco, CA 94016" -202307,AA Batteries (4-pack),1,3.84,05/28/19 13:01,"558 Meadow St, New York City, NY 10001" -202308,Wired Headphones,1,11.99,05/24/19 09:36,"226 Jackson St, Los Angeles, CA 90001" -202309,Lightning Charging Cable,1,14.95,05/08/19 19:32,"121 Cedar St, San Francisco, CA 94016" -202310,Wired Headphones,2,11.99,05/20/19 20:11,"820 North St, New York City, NY 10001" -202311,AA Batteries (4-pack),2,3.84,05/22/19 08:07,"581 North St, Portland, OR 97035" -202312,Bose SoundSport Headphones,1,99.99,05/16/19 12:57,"36 Willow St, San Francisco, CA 94016" -202313,Macbook Pro Laptop,1,1700,05/01/19 11:48,"443 Cedar St, Los Angeles, CA 90001" -202314,iPhone,1,700,05/27/19 23:14,"979 Wilson St, Dallas, TX 75001" -202315,iPhone,1,700,05/02/19 17:14,"334 Johnson St, Portland, ME 04101" -202315,Lightning Charging Cable,1,14.95,05/02/19 17:14,"334 Johnson St, Portland, ME 04101" -202315,Apple Airpods Headphones,1,150,05/02/19 17:14,"334 Johnson St, Portland, ME 04101" -202316,Wired Headphones,1,11.99,05/17/19 09:21,"62 Sunset St, San Francisco, CA 94016" -202317,Wired Headphones,1,11.99,05/25/19 10:04,"648 Ridge St, New York City, NY 10001" -202318,Lightning Charging Cable,1,14.95,05/13/19 16:50,"991 8th St, Dallas, TX 75001" -202319,USB-C Charging Cable,1,11.95,05/22/19 21:57,"813 10th St, Los Angeles, CA 90001" -202320,Lightning Charging Cable,1,14.95,05/04/19 13:46,"212 Chestnut St, Los Angeles, CA 90001" -202321,Bose SoundSport Headphones,1,99.99,05/02/19 00:28,"860 Forest St, New York City, NY 10001" -202322,27in FHD Monitor,1,149.99,05/09/19 12:54,"857 Park St, Seattle, WA 98101" -202323,Lightning Charging Cable,1,14.95,05/08/19 12:57,"724 West St, Los Angeles, CA 90001" -202324,Apple Airpods Headphones,1,150,05/01/19 21:11,"131 Center St, New York City, NY 10001" -202325,Wired Headphones,1,11.99,05/01/19 11:21,"953 Church St, Atlanta, GA 30301" -202326,Apple Airpods Headphones,1,150,05/07/19 06:36,"760 Wilson St, San Francisco, CA 94016" -202327,LG Dryer,1,600.0,05/22/19 06:59,"924 11th St, Boston, MA 02215" -202328,Lightning Charging Cable,1,14.95,05/22/19 10:53,"32 2nd St, San Francisco, CA 94016" -202329,27in 4K Gaming Monitor,1,389.99,05/22/19 23:18,"165 Elm St, New York City, NY 10001" -202330,AAA Batteries (4-pack),1,2.99,05/07/19 20:02,"291 Johnson St, Dallas, TX 75001" -202331,Apple Airpods Headphones,1,150,05/19/19 15:18,"839 River St, San Francisco, CA 94016" -202332,ThinkPad Laptop,1,999.99,05/04/19 10:53,"224 West St, Atlanta, GA 30301" -202333,AA Batteries (4-pack),2,3.84,05/24/19 08:01,"761 Sunset St, Los Angeles, CA 90001" -202334,USB-C Charging Cable,1,11.95,05/30/19 13:03,"487 Hickory St, Dallas, TX 75001" -202335,Apple Airpods Headphones,1,150,05/20/19 08:44,"305 Madison St, Austin, TX 73301" -202336,Apple Airpods Headphones,1,150,05/17/19 17:36,"510 North St, New York City, NY 10001" -202337,LG Dryer,1,600.0,05/09/19 12:29,"644 Jackson St, Los Angeles, CA 90001" -202338,27in FHD Monitor,1,149.99,05/04/19 23:57,"349 13th St, Boston, MA 02215" -202339,Apple Airpods Headphones,1,150,05/19/19 14:53,"935 Center St, New York City, NY 10001" -202340,USB-C Charging Cable,1,11.95,05/10/19 18:36,"795 Dogwood St, Dallas, TX 75001" -202341,USB-C Charging Cable,1,11.95,05/19/19 13:26,"807 Center St, Dallas, TX 75001" -202342,Wired Headphones,1,11.99,05/10/19 19:45,"972 River St, San Francisco, CA 94016" -202343,Bose SoundSport Headphones,1,99.99,05/28/19 12:47,"334 Highland St, Portland, OR 97035" -202344,Lightning Charging Cable,1,14.95,05/14/19 22:20,"370 Hill St, Los Angeles, CA 90001" -202345,AAA Batteries (4-pack),2,2.99,05/06/19 23:29,"673 Lake St, Seattle, WA 98101" -202346,Lightning Charging Cable,1,14.95,05/05/19 23:08,"870 Main St, New York City, NY 10001" -202347,34in Ultrawide Monitor,1,379.99,05/13/19 09:18,"929 Willow St, Boston, MA 02215" -202347,Lightning Charging Cable,1,14.95,05/13/19 09:18,"929 Willow St, Boston, MA 02215" -202348,34in Ultrawide Monitor,1,379.99,05/30/19 22:14,"490 Park St, Atlanta, GA 30301" -202349,AAA Batteries (4-pack),1,2.99,05/03/19 18:54,"38 Ridge St, Boston, MA 02215" -202350,iPhone,1,700,05/12/19 10:24,"453 10th St, San Francisco, CA 94016" -202351,AA Batteries (4-pack),1,3.84,05/22/19 12:50,"905 Meadow St, Portland, ME 04101" -202352,AA Batteries (4-pack),2,3.84,05/06/19 05:46,"462 Highland St, Los Angeles, CA 90001" -,,,,, -202353,34in Ultrawide Monitor,1,379.99,05/29/19 12:20,"456 Lakeview St, Atlanta, GA 30301" -202354,ThinkPad Laptop,1,999.99,05/03/19 11:33,"574 Willow St, San Francisco, CA 94016" -202355,AAA Batteries (4-pack),1,2.99,05/06/19 13:21,"463 Lincoln St, Austin, TX 73301" -202356,Wired Headphones,1,11.99,05/19/19 15:24,"101 South St, Seattle, WA 98101" -202357,USB-C Charging Cable,1,11.95,05/21/19 10:16,"984 Madison St, Atlanta, GA 30301" -202358,Wired Headphones,1,11.99,05/29/19 17:21,"487 Walnut St, San Francisco, CA 94016" -202359,27in FHD Monitor,1,149.99,05/01/19 17:17,"221 11th St, New York City, NY 10001" -202359,LG Dryer,1,600.0,05/01/19 17:17,"221 11th St, New York City, NY 10001" -202360,20in Monitor,1,109.99,05/16/19 21:25,"726 8th St, Los Angeles, CA 90001" -202361,34in Ultrawide Monitor,1,379.99,05/30/19 12:45,"158 14th St, Atlanta, GA 30301" -202362,Wired Headphones,1,11.99,05/20/19 23:15,"821 Cherry St, New York City, NY 10001" -202362,20in Monitor,1,109.99,05/20/19 23:15,"821 Cherry St, New York City, NY 10001" -202363,AAA Batteries (4-pack),1,2.99,05/29/19 15:35,"942 13th St, San Francisco, CA 94016" -202364,Bose SoundSport Headphones,1,99.99,05/14/19 20:35,"861 5th St, Austin, TX 73301" -202365,Wired Headphones,1,11.99,05/31/19 11:27,"980 14th St, Los Angeles, CA 90001" -202366,Apple Airpods Headphones,1,150,05/02/19 16:27,"875 Park St, Boston, MA 02215" -202367,Apple Airpods Headphones,1,150,05/27/19 14:31,"123 12th St, New York City, NY 10001" -202368,iPhone,1,700,05/16/19 18:22,"58 6th St, New York City, NY 10001" -202368,Wired Headphones,1,11.99,05/16/19 18:22,"58 6th St, New York City, NY 10001" -202369,27in FHD Monitor,1,149.99,05/28/19 21:45,"25 Church St, San Francisco, CA 94016" -202370,AA Batteries (4-pack),1,3.84,05/24/19 21:04,"994 North St, New York City, NY 10001" -202371,AA Batteries (4-pack),2,3.84,05/14/19 12:05,"105 North St, Seattle, WA 98101" -202372,AAA Batteries (4-pack),1,2.99,05/28/19 10:32,"358 2nd St, Boston, MA 02215" -202373,Bose SoundSport Headphones,1,99.99,05/17/19 23:24,"465 13th St, San Francisco, CA 94016" -202374,Lightning Charging Cable,1,14.95,05/29/19 22:36,"664 Elm St, San Francisco, CA 94016" -202375,Bose SoundSport Headphones,1,99.99,05/30/19 12:52,"969 Lincoln St, Austin, TX 73301" -202376,USB-C Charging Cable,1,11.95,05/05/19 19:09,"715 Walnut St, Seattle, WA 98101" -202377,Flatscreen TV,1,300,05/04/19 17:15,"727 Jackson St, New York City, NY 10001" -202378,Apple Airpods Headphones,1,150,05/13/19 22:11,"23 Willow St, Boston, MA 02215" -202379,AAA Batteries (4-pack),1,2.99,05/06/19 20:04,"300 2nd St, Seattle, WA 98101" -202380,AA Batteries (4-pack),1,3.84,05/09/19 16:30,"10 Madison St, San Francisco, CA 94016" -202381,ThinkPad Laptop,1,999.99,05/03/19 20:29,"420 Washington St, Boston, MA 02215" -202382,iPhone,1,700,05/25/19 09:58,"194 Spruce St, Los Angeles, CA 90001" -202383,27in FHD Monitor,1,149.99,05/18/19 12:10,"962 Spruce St, San Francisco, CA 94016" -202384,AA Batteries (4-pack),1,3.84,05/22/19 22:13,"323 Adams St, Seattle, WA 98101" -202385,AA Batteries (4-pack),2,3.84,05/21/19 03:33,"87 Elm St, Portland, ME 04101" -202386,AAA Batteries (4-pack),4,2.99,05/08/19 10:13,"832 West St, Austin, TX 73301" -202387,Apple Airpods Headphones,1,150,05/15/19 21:22,"405 Hill St, New York City, NY 10001" -202388,AAA Batteries (4-pack),1,2.99,05/13/19 00:45,"396 Lakeview St, New York City, NY 10001" -202389,AA Batteries (4-pack),1,3.84,05/29/19 20:05,"47 North St, New York City, NY 10001" -202390,AA Batteries (4-pack),3,3.84,05/13/19 10:11,"510 Hickory St, San Francisco, CA 94016" -202391,ThinkPad Laptop,1,999.99,05/13/19 19:16,"243 Lincoln St, New York City, NY 10001" -202392,Wired Headphones,1,11.99,05/29/19 17:53,"241 10th St, New York City, NY 10001" -202393,AA Batteries (4-pack),3,3.84,05/08/19 22:17,"232 Chestnut St, New York City, NY 10001" -202394,27in 4K Gaming Monitor,1,389.99,05/31/19 23:16,"151 Hill St, Austin, TX 73301" -202395,AAA Batteries (4-pack),2,2.99,05/29/19 10:47,"868 Washington St, Portland, OR 97035" -202396,34in Ultrawide Monitor,1,379.99,05/30/19 17:17,"150 Church St, San Francisco, CA 94016" -202397,USB-C Charging Cable,1,11.95,05/11/19 23:33,"406 Highland St, San Francisco, CA 94016" -202397,iPhone,1,700,05/11/19 23:33,"406 Highland St, San Francisco, CA 94016" -202398,AAA Batteries (4-pack),1,2.99,05/17/19 13:07,"908 Jackson St, Austin, TX 73301" -202399,Macbook Pro Laptop,1,1700,05/09/19 19:46,"992 Meadow St, Atlanta, GA 30301" -202400,Wired Headphones,1,11.99,05/21/19 11:54,"866 Highland St, New York City, NY 10001" -202401,34in Ultrawide Monitor,1,379.99,05/30/19 06:36,"519 Pine St, Los Angeles, CA 90001" -202402,27in 4K Gaming Monitor,1,389.99,05/01/19 12:02,"872 North St, Atlanta, GA 30301" -202403,Apple Airpods Headphones,1,150,05/24/19 07:46,"540 Jackson St, Los Angeles, CA 90001" -202404,USB-C Charging Cable,1,11.95,05/15/19 00:52,"623 Park St, Seattle, WA 98101" -202405,AAA Batteries (4-pack),1,2.99,05/27/19 21:16,"474 Madison St, Atlanta, GA 30301" -202406,iPhone,1,700,05/26/19 17:47,"632 Pine St, Austin, TX 73301" -202407,Lightning Charging Cable,1,14.95,05/17/19 10:57,"963 Ridge St, San Francisco, CA 94016" -202408,Bose SoundSport Headphones,1,99.99,05/26/19 19:57,"712 6th St, New York City, NY 10001" -202409,iPhone,1,700,05/08/19 17:13,"81 Willow St, Los Angeles, CA 90001" -202410,USB-C Charging Cable,1,11.95,05/20/19 00:31,"96 5th St, San Francisco, CA 94016" -202411,Lightning Charging Cable,1,14.95,05/19/19 15:21,"716 10th St, Austin, TX 73301" -202412,34in Ultrawide Monitor,1,379.99,05/13/19 04:39,"630 5th St, New York City, NY 10001" -202413,AA Batteries (4-pack),1,3.84,05/27/19 22:36,"957 Chestnut St, Dallas, TX 75001" -202414,Lightning Charging Cable,1,14.95,05/06/19 10:29,"902 7th St, Los Angeles, CA 90001" -202415,Macbook Pro Laptop,1,1700,05/17/19 11:05,"829 Meadow St, Atlanta, GA 30301" -202416,Vareebadd Phone,1,400,05/28/19 21:22,"742 Jackson St, Dallas, TX 75001" -202417,27in FHD Monitor,1,149.99,05/16/19 00:04,"607 12th St, Portland, OR 97035" -202418,ThinkPad Laptop,1,999.99,05/16/19 15:23,"958 Forest St, Seattle, WA 98101" -202419,Lightning Charging Cable,1,14.95,05/16/19 14:34,"42 6th St, Los Angeles, CA 90001" -202420,AAA Batteries (4-pack),1,2.99,05/14/19 15:50,"578 Lake St, Dallas, TX 75001" -202421,AAA Batteries (4-pack),1,2.99,05/22/19 19:08,"110 Hill St, Austin, TX 73301" -202422,27in FHD Monitor,1,149.99,05/27/19 07:15,"765 Lincoln St, San Francisco, CA 94016" -202423,AA Batteries (4-pack),1,3.84,05/09/19 06:40,"9 Cherry St, New York City, NY 10001" -202424,Apple Airpods Headphones,1,150,05/10/19 14:51,"599 Church St, San Francisco, CA 94016" -202425,Wired Headphones,1,11.99,05/31/19 12:42,"114 Cherry St, San Francisco, CA 94016" -202426,AAA Batteries (4-pack),1,2.99,05/09/19 16:41,"70 5th St, San Francisco, CA 94016" -202427,AAA Batteries (4-pack),2,2.99,05/08/19 18:53,"965 Ridge St, San Francisco, CA 94016" -202428,Lightning Charging Cable,1,14.95,05/07/19 11:30,"637 Dogwood St, Boston, MA 02215" -202429,Apple Airpods Headphones,1,150,05/30/19 11:16,"887 Park St, Boston, MA 02215" -202430,Wired Headphones,1,11.99,05/27/19 23:18,"481 10th St, Dallas, TX 75001" -202431,USB-C Charging Cable,1,11.95,05/28/19 10:56,"380 Church St, Seattle, WA 98101" -202432,Bose SoundSport Headphones,1,99.99,05/25/19 18:14,"116 14th St, San Francisco, CA 94016" -202433,AA Batteries (4-pack),1,3.84,05/16/19 10:39,"846 4th St, San Francisco, CA 94016" -202434,Lightning Charging Cable,1,14.95,05/21/19 08:40,"105 Pine St, San Francisco, CA 94016" -202435,AAA Batteries (4-pack),2,2.99,05/15/19 14:07,"394 Ridge St, Los Angeles, CA 90001" -202436,USB-C Charging Cable,1,11.95,05/07/19 06:29,"226 Madison St, San Francisco, CA 94016" -202437,Lightning Charging Cable,1,14.95,05/18/19 10:12,"25 Dogwood St, Atlanta, GA 30301" -202438,Lightning Charging Cable,1,14.95,05/27/19 17:03,"153 Main St, San Francisco, CA 94016" -202439,Bose SoundSport Headphones,1,99.99,05/18/19 20:22,"638 Highland St, San Francisco, CA 94016" -202440,iPhone,1,700,05/31/19 21:29,"341 Lake St, New York City, NY 10001" -202441,Bose SoundSport Headphones,1,99.99,05/14/19 17:53,"796 Elm St, Atlanta, GA 30301" -202442,27in 4K Gaming Monitor,1,389.99,05/22/19 10:26,"836 Spruce St, Atlanta, GA 30301" -202443,AAA Batteries (4-pack),1,2.99,05/15/19 10:05,"495 Park St, New York City, NY 10001" -202444,AAA Batteries (4-pack),3,2.99,05/26/19 12:34,"441 Hill St, New York City, NY 10001" -202445,34in Ultrawide Monitor,1,379.99,05/23/19 22:30,"292 Washington St, San Francisco, CA 94016" -202446,Apple Airpods Headphones,1,150,05/17/19 11:30,"693 Dogwood St, Austin, TX 73301" -202447,Wired Headphones,1,11.99,05/04/19 18:57,"434 River St, San Francisco, CA 94016" -202448,Wired Headphones,1,11.99,05/11/19 01:47,"645 Hill St, Atlanta, GA 30301" -202448,AA Batteries (4-pack),1,3.84,05/11/19 01:47,"645 Hill St, Atlanta, GA 30301" -202449,USB-C Charging Cable,1,11.95,05/25/19 12:35,"400 River St, Los Angeles, CA 90001" -202450,Apple Airpods Headphones,1,150,05/08/19 19:10,"520 Ridge St, Boston, MA 02215" -202451,Flatscreen TV,1,300,05/19/19 02:37,"118 12th St, San Francisco, CA 94016" -202452,Macbook Pro Laptop,1,1700,05/12/19 11:19,"604 4th St, New York City, NY 10001" -202453,Lightning Charging Cable,1,14.95,05/25/19 15:16,"868 Main St, Seattle, WA 98101" -202454,Bose SoundSport Headphones,1,99.99,05/12/19 07:27,"53 2nd St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -202455,Lightning Charging Cable,1,14.95,05/03/19 07:42,"848 Washington St, Atlanta, GA 30301" -202456,Bose SoundSport Headphones,1,99.99,05/27/19 11:05,"490 Meadow St, Portland, OR 97035" -202457,AA Batteries (4-pack),1,3.84,05/26/19 09:08,"989 Church St, Los Angeles, CA 90001" -202458,27in 4K Gaming Monitor,1,389.99,05/31/19 17:33,"184 North St, Atlanta, GA 30301" -202459,27in FHD Monitor,1,149.99,05/13/19 09:45,"985 Forest St, Seattle, WA 98101" -202460,Bose SoundSport Headphones,1,99.99,06/01/19 01:29,"428 Lake St, San Francisco, CA 94016" -202461,Wired Headphones,1,11.99,05/13/19 18:55,"518 Jackson St, Boston, MA 02215" -202462,Apple Airpods Headphones,1,150,05/26/19 11:02,"32 7th St, New York City, NY 10001" -202463,ThinkPad Laptop,1,999.99,05/07/19 15:37,"479 Wilson St, New York City, NY 10001" -202464,AA Batteries (4-pack),1,3.84,05/19/19 19:42,"929 13th St, Boston, MA 02215" -202465,AA Batteries (4-pack),1,3.84,05/06/19 22:00,"639 River St, Atlanta, GA 30301" -202466,Wired Headphones,1,11.99,05/09/19 18:10,"52 West St, San Francisco, CA 94016" -202467,USB-C Charging Cable,1,11.95,05/24/19 16:52,"819 8th St, Boston, MA 02215" -202468,Wired Headphones,1,11.99,05/20/19 08:52,"187 Maple St, Portland, OR 97035" -202469,iPhone,1,700,05/18/19 19:37,"218 Park St, Dallas, TX 75001" -202470,ThinkPad Laptop,1,999.99,05/27/19 07:09,"541 5th St, Austin, TX 73301" -202471,AA Batteries (4-pack),1,3.84,05/25/19 22:49,"924 Cedar St, Dallas, TX 75001" -202472,AA Batteries (4-pack),1,3.84,05/09/19 14:22,"31 Walnut St, Atlanta, GA 30301" -202473,AA Batteries (4-pack),2,3.84,05/15/19 12:47,"954 Dogwood St, Seattle, WA 98101" -202474,Wired Headphones,1,11.99,05/09/19 13:40,"116 Adams St, Los Angeles, CA 90001" -202475,Apple Airpods Headphones,1,150,05/26/19 19:22,"803 Meadow St, Portland, OR 97035" -202476,27in FHD Monitor,1,149.99,05/07/19 10:12,"894 Lake St, New York City, NY 10001" -202477,Bose SoundSport Headphones,1,99.99,05/17/19 12:48,"685 Highland St, Dallas, TX 75001" -202478,AAA Batteries (4-pack),1,2.99,05/14/19 12:17,"529 Jefferson St, San Francisco, CA 94016" -202479,Lightning Charging Cable,1,14.95,05/06/19 16:48,"464 Willow St, Atlanta, GA 30301" -202480,AA Batteries (4-pack),1,3.84,05/25/19 10:10,"504 7th St, New York City, NY 10001" -202481,iPhone,1,700,05/10/19 14:42,"479 Jackson St, Seattle, WA 98101" -202482,Lightning Charging Cable,1,14.95,05/12/19 21:04,"768 11th St, New York City, NY 10001" -202483,Bose SoundSport Headphones,1,99.99,05/20/19 17:53,"804 Ridge St, Atlanta, GA 30301" -202484,AAA Batteries (4-pack),1,2.99,05/20/19 14:37,"943 12th St, Los Angeles, CA 90001" -202485,AA Batteries (4-pack),1,3.84,05/25/19 18:01,"406 Church St, Los Angeles, CA 90001" -202486,Wired Headphones,1,11.99,05/21/19 09:58,"353 Hickory St, Los Angeles, CA 90001" -202487,Lightning Charging Cable,1,14.95,05/14/19 00:59,"437 Chestnut St, Portland, OR 97035" -202488,AA Batteries (4-pack),1,3.84,05/18/19 19:37,"491 Willow St, San Francisco, CA 94016" -202489,USB-C Charging Cable,1,11.95,05/19/19 13:13,"183 Lakeview St, Seattle, WA 98101" -202490,27in FHD Monitor,1,149.99,05/29/19 15:30,"467 6th St, Boston, MA 02215" -202491,AAA Batteries (4-pack),1,2.99,05/04/19 08:01,"3 Lincoln St, New York City, NY 10001" -202492,AAA Batteries (4-pack),1,2.99,05/08/19 17:58,"223 Lincoln St, New York City, NY 10001" -202493,Apple Airpods Headphones,1,150,05/19/19 18:24,"109 Church St, Portland, ME 04101" -202493,Wired Headphones,1,11.99,05/19/19 18:24,"109 Church St, Portland, ME 04101" -202494,USB-C Charging Cable,1,11.95,05/19/19 11:58,"818 Park St, Atlanta, GA 30301" -202495,Macbook Pro Laptop,1,1700,05/21/19 16:19,"703 10th St, New York City, NY 10001" -202496,Wired Headphones,1,11.99,05/10/19 20:12,"738 North St, Los Angeles, CA 90001" -202497,Macbook Pro Laptop,1,1700,05/03/19 09:18,"548 Lake St, Atlanta, GA 30301" -202498,27in 4K Gaming Monitor,1,389.99,05/01/19 07:56,"772 Cherry St, Los Angeles, CA 90001" -202499,AA Batteries (4-pack),2,3.84,05/15/19 22:09,"799 Park St, San Francisco, CA 94016" -202500,Wired Headphones,2,11.99,05/06/19 18:50,"478 Ridge St, New York City, NY 10001" -202501,27in FHD Monitor,1,149.99,05/18/19 08:12,"384 14th St, San Francisco, CA 94016" -202502,AAA Batteries (4-pack),1,2.99,05/06/19 13:14,"698 Adams St, Los Angeles, CA 90001" -202503,Bose SoundSport Headphones,1,99.99,05/20/19 12:21,"739 Highland St, San Francisco, CA 94016" -202504,27in FHD Monitor,1,149.99,05/07/19 14:36,"484 Main St, San Francisco, CA 94016" -202505,Macbook Pro Laptop,1,1700,05/05/19 22:42,"378 Hill St, Dallas, TX 75001" -202506,Wired Headphones,1,11.99,05/25/19 20:01,"301 14th St, San Francisco, CA 94016" -202507,AA Batteries (4-pack),1,3.84,05/31/19 22:21,"157 7th St, New York City, NY 10001" -202508,Lightning Charging Cable,1,14.95,05/19/19 13:03,"146 Jackson St, Boston, MA 02215" -202509,Apple Airpods Headphones,1,150,05/12/19 12:26,"647 Willow St, San Francisco, CA 94016" -202510,Flatscreen TV,1,300,05/26/19 10:01,"453 Pine St, San Francisco, CA 94016" -202511,Wired Headphones,1,11.99,05/10/19 21:12,"394 14th St, Portland, ME 04101" -202512,USB-C Charging Cable,1,11.95,05/15/19 06:46,"790 Center St, Portland, OR 97035" -202513,27in 4K Gaming Monitor,1,389.99,05/24/19 01:17,"920 1st St, New York City, NY 10001" -202514,AAA Batteries (4-pack),1,2.99,05/02/19 11:56,"982 South St, Seattle, WA 98101" -202515,Wired Headphones,1,11.99,05/19/19 12:00,"519 6th St, Seattle, WA 98101" -202516,27in FHD Monitor,1,149.99,05/19/19 11:29,"934 Washington St, San Francisco, CA 94016" -202517,Apple Airpods Headphones,1,150,05/30/19 17:22,"397 River St, Los Angeles, CA 90001" -202518,AAA Batteries (4-pack),1,2.99,05/12/19 23:36,"698 Maple St, Atlanta, GA 30301" -202518,AA Batteries (4-pack),1,3.84,05/12/19 23:36,"698 Maple St, Atlanta, GA 30301" -202519,20in Monitor,1,109.99,05/25/19 17:30,"910 9th St, Seattle, WA 98101" -202520,Lightning Charging Cable,1,14.95,05/03/19 15:18,"314 Johnson St, San Francisco, CA 94016" -202521,Google Phone,1,600,05/03/19 11:15,"684 12th St, Boston, MA 02215" -202521,USB-C Charging Cable,1,11.95,05/03/19 11:15,"684 12th St, Boston, MA 02215" -202522,27in 4K Gaming Monitor,1,389.99,05/10/19 21:43,"998 7th St, New York City, NY 10001" -202523,Wired Headphones,1,11.99,05/27/19 20:55,"837 South St, Atlanta, GA 30301" -202524,Wired Headphones,1,11.99,05/04/19 18:07,"747 Park St, San Francisco, CA 94016" -202525,AA Batteries (4-pack),1,3.84,05/06/19 20:27,"140 Elm St, Austin, TX 73301" -202526,Lightning Charging Cable,1,14.95,05/05/19 11:51,"183 7th St, Atlanta, GA 30301" -202527,Google Phone,1,600,05/14/19 01:54,"959 Lincoln St, Austin, TX 73301" -202528,Apple Airpods Headphones,1,150,05/01/19 19:42,"299 Hill St, Los Angeles, CA 90001" -202529,iPhone,1,700,05/05/19 11:32,"986 7th St, San Francisco, CA 94016" -202529,Wired Headphones,1,11.99,05/05/19 11:32,"986 7th St, San Francisco, CA 94016" -202530,AA Batteries (4-pack),1,3.84,05/01/19 14:22,"568 Sunset St, Dallas, TX 75001" -202531,27in FHD Monitor,1,149.99,05/29/19 17:13,"763 Lake St, New York City, NY 10001" -202532,20in Monitor,1,109.99,05/28/19 19:59,"547 Pine St, Seattle, WA 98101" -202533,Wired Headphones,1,11.99,05/26/19 19:18,"630 Hill St, New York City, NY 10001" -202534,Google Phone,1,600,05/04/19 10:57,"733 7th St, New York City, NY 10001" -202535,USB-C Charging Cable,1,11.95,05/15/19 17:39,"290 Johnson St, Portland, OR 97035" -202536,Macbook Pro Laptop,1,1700,05/07/19 16:24,"134 Willow St, Los Angeles, CA 90001" -202537,Lightning Charging Cable,1,14.95,05/23/19 23:32,"976 11th St, Atlanta, GA 30301" -202538,AAA Batteries (4-pack),1,2.99,05/18/19 21:44,"833 Lincoln St, Los Angeles, CA 90001" -202539,Lightning Charging Cable,1,14.95,05/23/19 08:34,"970 5th St, Los Angeles, CA 90001" -202540,AA Batteries (4-pack),1,3.84,05/12/19 15:36,"492 10th St, Portland, OR 97035" -202541,AA Batteries (4-pack),2,3.84,05/10/19 22:08,"943 Johnson St, Boston, MA 02215" -202542,Vareebadd Phone,1,400,05/02/19 15:26,"607 Wilson St, New York City, NY 10001" -202542,Apple Airpods Headphones,1,150,05/02/19 15:26,"607 Wilson St, New York City, NY 10001" -202543,Apple Airpods Headphones,1,150,05/14/19 18:36,"897 Washington St, San Francisco, CA 94016" -202544,Apple Airpods Headphones,1,150,05/08/19 20:32,"641 Park St, New York City, NY 10001" -202545,Macbook Pro Laptop,1,1700,05/31/19 21:58,"705 Center St, Seattle, WA 98101" -202546,Lightning Charging Cable,1,14.95,05/14/19 07:46,"286 Ridge St, Seattle, WA 98101" -202547,Lightning Charging Cable,1,14.95,05/04/19 15:59,"181 2nd St, New York City, NY 10001" -202548,Flatscreen TV,1,300,05/09/19 12:56,"757 Pine St, Atlanta, GA 30301" -202549,34in Ultrawide Monitor,1,379.99,05/24/19 15:40,"357 Elm St, Portland, OR 97035" -202550,Lightning Charging Cable,1,14.95,05/26/19 17:42,"614 Sunset St, San Francisco, CA 94016" -202551,USB-C Charging Cable,2,11.95,05/24/19 17:04,"753 Cedar St, Boston, MA 02215" -202552,27in 4K Gaming Monitor,1,389.99,05/06/19 20:17,"639 Wilson St, Los Angeles, CA 90001" -202553,34in Ultrawide Monitor,1,379.99,05/31/19 23:20,"734 Spruce St, Los Angeles, CA 90001" -202554,Lightning Charging Cable,1,14.95,05/27/19 22:11,"790 7th St, Atlanta, GA 30301" -202555,iPhone,1,700,05/04/19 21:11,"780 6th St, San Francisco, CA 94016" -202555,Apple Airpods Headphones,1,150,05/04/19 21:11,"780 6th St, San Francisco, CA 94016" -202556,Lightning Charging Cable,1,14.95,05/09/19 09:26,"878 Wilson St, Boston, MA 02215" -202557,Apple Airpods Headphones,1,150,05/21/19 18:46,"297 West St, Los Angeles, CA 90001" -202558,AAA Batteries (4-pack),1,2.99,05/03/19 18:32,"562 9th St, Boston, MA 02215" -202559,Vareebadd Phone,1,400,05/16/19 22:37,"585 Meadow St, Atlanta, GA 30301" -202559,USB-C Charging Cable,1,11.95,05/16/19 22:37,"585 Meadow St, Atlanta, GA 30301" -202560,AAA Batteries (4-pack),4,2.99,05/17/19 04:29,"665 4th St, Los Angeles, CA 90001" -202561,Wired Headphones,1,11.99,05/12/19 12:09,"419 6th St, New York City, NY 10001" -202562,Lightning Charging Cable,1,14.95,05/12/19 01:36,"4 Park St, San Francisco, CA 94016" -202563,USB-C Charging Cable,1,11.95,05/24/19 19:34,"814 Sunset St, San Francisco, CA 94016" -202564,Lightning Charging Cable,1,14.95,05/27/19 22:17,"693 Adams St, Atlanta, GA 30301" -202565,Wired Headphones,1,11.99,05/20/19 17:15,"131 12th St, Dallas, TX 75001" -202566,USB-C Charging Cable,1,11.95,05/24/19 15:02,"604 Pine St, Dallas, TX 75001" -202567,Apple Airpods Headphones,1,150,05/06/19 19:12,"910 7th St, Austin, TX 73301" -202568,AAA Batteries (4-pack),1,2.99,05/27/19 20:44,"17 13th St, Boston, MA 02215" -202569,USB-C Charging Cable,1,11.95,05/17/19 09:04,"609 Forest St, San Francisco, CA 94016" -202570,AA Batteries (4-pack),1,3.84,05/25/19 17:05,"5 Willow St, Dallas, TX 75001" -202571,Bose SoundSport Headphones,1,99.99,05/13/19 21:55,"537 4th St, San Francisco, CA 94016" -202572,USB-C Charging Cable,1,11.95,05/10/19 16:53,"963 River St, Boston, MA 02215" -202573,AAA Batteries (4-pack),1,2.99,05/07/19 18:08,"227 Ridge St, Boston, MA 02215" -202574,Wired Headphones,1,11.99,05/25/19 22:02,"859 Park St, San Francisco, CA 94016" -202575,Wired Headphones,1,11.99,05/18/19 16:36,"927 Meadow St, Boston, MA 02215" -202576,Wired Headphones,1,11.99,05/27/19 18:25,"941 4th St, San Francisco, CA 94016" -202577,USB-C Charging Cable,1,11.95,05/22/19 19:49,"435 11th St, San Francisco, CA 94016" -202578,Vareebadd Phone,1,400,05/31/19 23:21,"925 14th St, Los Angeles, CA 90001" -202579,34in Ultrawide Monitor,1,379.99,05/15/19 23:02,"492 4th St, New York City, NY 10001" -202580,Apple Airpods Headphones,1,150,05/04/19 14:00,"690 Forest St, New York City, NY 10001" -202581,Wired Headphones,1,11.99,05/30/19 13:39,"217 Cedar St, New York City, NY 10001" -202582,Lightning Charging Cable,1,14.95,05/28/19 13:18,"726 Lake St, Austin, TX 73301" -202583,AAA Batteries (4-pack),2,2.99,05/25/19 20:33,"733 Park St, San Francisco, CA 94016" -202584,Wired Headphones,1,11.99,05/23/19 16:40,"816 Ridge St, San Francisco, CA 94016" -202585,Bose SoundSport Headphones,1,99.99,05/30/19 15:09,"321 Madison St, Boston, MA 02215" -202586,Macbook Pro Laptop,1,1700,05/26/19 19:12,"289 Church St, Atlanta, GA 30301" -202587,Bose SoundSport Headphones,1,99.99,05/17/19 11:27,"496 14th St, New York City, NY 10001" -202588,Macbook Pro Laptop,1,1700,05/18/19 13:04,"879 1st St, Portland, OR 97035" -202589,Bose SoundSport Headphones,1,99.99,05/28/19 19:20,"175 Park St, New York City, NY 10001" -202590,USB-C Charging Cable,1,11.95,05/02/19 21:29,"284 Lakeview St, San Francisco, CA 94016" -202591,Lightning Charging Cable,1,14.95,05/03/19 11:38,"523 6th St, Austin, TX 73301" -202592,Apple Airpods Headphones,1,150,05/01/19 06:44,"639 River St, Austin, TX 73301" -202593,Wired Headphones,1,11.99,05/13/19 12:45,"789 Walnut St, Austin, TX 73301" -202594,USB-C Charging Cable,1,11.95,05/05/19 21:31,"15 Main St, Los Angeles, CA 90001" -202595,AA Batteries (4-pack),1,3.84,05/10/19 20:08,"395 Lincoln St, New York City, NY 10001" -202596,Lightning Charging Cable,1,14.95,05/13/19 12:18,"194 West St, Seattle, WA 98101" -202597,Lightning Charging Cable,1,14.95,05/23/19 18:55,"802 Highland St, San Francisco, CA 94016" -202598,USB-C Charging Cable,1,11.95,05/29/19 18:28,"311 North St, Seattle, WA 98101" -202599,iPhone,1,700,05/06/19 17:30,"35 Jefferson St, San Francisco, CA 94016" -202599,Apple Airpods Headphones,1,150,05/06/19 17:30,"35 Jefferson St, San Francisco, CA 94016" -202600,USB-C Charging Cable,1,11.95,05/21/19 11:14,"949 9th St, Boston, MA 02215" -202601,Bose SoundSport Headphones,1,99.99,05/04/19 13:33,"237 Lincoln St, Boston, MA 02215" -202602,USB-C Charging Cable,1,11.95,05/01/19 10:57,"959 1st St, San Francisco, CA 94016" -202603,Wired Headphones,1,11.99,05/11/19 18:35,"673 10th St, New York City, NY 10001" -202604,Vareebadd Phone,1,400,05/11/19 21:14,"955 Dogwood St, San Francisco, CA 94016" -202604,Wired Headphones,1,11.99,05/11/19 21:14,"955 Dogwood St, San Francisco, CA 94016" -202605,USB-C Charging Cable,1,11.95,05/09/19 17:17,"201 Cedar St, Los Angeles, CA 90001" -202606,iPhone,1,700,05/16/19 17:29,"745 Willow St, Boston, MA 02215" -202606,Apple Airpods Headphones,1,150,05/16/19 17:29,"745 Willow St, Boston, MA 02215" -202607,Bose SoundSport Headphones,1,99.99,05/18/19 17:57,"428 Madison St, San Francisco, CA 94016" -202608,AA Batteries (4-pack),1,3.84,05/26/19 09:10,"453 Willow St, Los Angeles, CA 90001" -202609,20in Monitor,1,109.99,05/05/19 12:23,"214 Madison St, San Francisco, CA 94016" -202610,27in 4K Gaming Monitor,1,389.99,05/08/19 18:13,"999 Forest St, New York City, NY 10001" -202611,iPhone,1,700,05/16/19 14:10,"836 Park St, Dallas, TX 75001" -202611,Wired Headphones,1,11.99,05/16/19 14:10,"836 Park St, Dallas, TX 75001" -202612,AAA Batteries (4-pack),3,2.99,05/05/19 11:34,"7 Jefferson St, Portland, OR 97035" -202613,Wired Headphones,1,11.99,05/22/19 15:13,"442 Church St, Atlanta, GA 30301" -202614,Bose SoundSport Headphones,1,99.99,05/31/19 11:31,"760 13th St, New York City, NY 10001" -202615,Lightning Charging Cable,1,14.95,05/13/19 22:57,"965 Meadow St, Atlanta, GA 30301" -202616,AA Batteries (4-pack),1,3.84,05/28/19 19:10,"889 Lincoln St, Dallas, TX 75001" -202617,iPhone,1,700,05/01/19 20:54,"38 Jackson St, Boston, MA 02215" -202618,27in FHD Monitor,1,149.99,05/25/19 23:32,"376 Washington St, Portland, OR 97035" -202619,Wired Headphones,1,11.99,05/21/19 18:13,"409 Cherry St, Portland, OR 97035" -202620,20in Monitor,1,109.99,05/03/19 00:08,"54 Willow St, Los Angeles, CA 90001" -202621,Apple Airpods Headphones,1,150,05/12/19 11:43,"996 8th St, Los Angeles, CA 90001" -202622,Wired Headphones,2,11.99,05/25/19 18:04,"49 Willow St, Dallas, TX 75001" -202623,Apple Airpods Headphones,1,150,05/14/19 09:47,"285 Lincoln St, Atlanta, GA 30301" -202623,Bose SoundSport Headphones,1,99.99,05/14/19 09:47,"285 Lincoln St, Atlanta, GA 30301" -202624,ThinkPad Laptop,1,999.99,05/01/19 07:19,"671 7th St, Boston, MA 02215" -202625,Wired Headphones,1,11.99,05/27/19 18:23,"412 Ridge St, New York City, NY 10001" -202626,34in Ultrawide Monitor,1,379.99,05/04/19 20:44,"24 14th St, Atlanta, GA 30301" -202627,Wired Headphones,1,11.99,05/05/19 21:24,"235 Pine St, Atlanta, GA 30301" -202628,Lightning Charging Cable,1,14.95,05/15/19 14:39,"549 11th St, Los Angeles, CA 90001" -202629,34in Ultrawide Monitor,1,379.99,05/14/19 12:47,"951 6th St, Los Angeles, CA 90001" -202630,AA Batteries (4-pack),1,3.84,05/20/19 11:41,"360 Jefferson St, Dallas, TX 75001" -202631,Wired Headphones,1,11.99,05/14/19 14:55,"808 13th St, New York City, NY 10001" -202632,20in Monitor,1,109.99,05/30/19 22:58,"582 Highland St, Los Angeles, CA 90001" -202633,AAA Batteries (4-pack),1,2.99,05/01/19 20:49,"473 10th St, Austin, TX 73301" -202634,Bose SoundSport Headphones,1,99.99,05/04/19 19:13,"682 Forest St, Los Angeles, CA 90001" -202635,USB-C Charging Cable,1,11.95,05/12/19 11:53,"550 North St, San Francisco, CA 94016" -202636,Bose SoundSport Headphones,1,99.99,05/26/19 18:29,"575 Hill St, Dallas, TX 75001" -202637,Wired Headphones,1,11.99,05/29/19 14:42,"472 Johnson St, New York City, NY 10001" -202638,Wired Headphones,1,11.99,05/27/19 13:26,"313 Willow St, Los Angeles, CA 90001" -202639,AAA Batteries (4-pack),1,2.99,05/05/19 17:56,"573 10th St, San Francisco, CA 94016" -202640,Bose SoundSport Headphones,1,99.99,05/29/19 14:39,"315 Forest St, Atlanta, GA 30301" -202641,Lightning Charging Cable,1,14.95,05/30/19 16:05,"591 Dogwood St, Atlanta, GA 30301" -202642,AAA Batteries (4-pack),1,2.99,05/13/19 21:35,"101 Forest St, New York City, NY 10001" -202643,USB-C Charging Cable,1,11.95,05/01/19 19:25,"230 Lakeview St, Dallas, TX 75001" -202644,27in 4K Gaming Monitor,1,389.99,05/14/19 11:10,"385 14th St, Atlanta, GA 30301" -202645,Lightning Charging Cable,1,14.95,05/23/19 16:11,"515 Hill St, Dallas, TX 75001" -202646,Lightning Charging Cable,1,14.95,05/08/19 19:31,"581 Cherry St, Seattle, WA 98101" -202647,Apple Airpods Headphones,1,150,05/02/19 15:22,"509 Main St, Boston, MA 02215" -202648,AAA Batteries (4-pack),3,2.99,05/23/19 15:56,"124 Center St, New York City, NY 10001" -202649,34in Ultrawide Monitor,1,379.99,05/22/19 19:06,"271 5th St, Atlanta, GA 30301" -202650,Lightning Charging Cable,1,14.95,05/16/19 17:59,"159 7th St, Dallas, TX 75001" -202651,Google Phone,1,600,05/29/19 19:29,"815 1st St, New York City, NY 10001" -202652,AA Batteries (4-pack),1,3.84,05/14/19 16:55,"612 Sunset St, Seattle, WA 98101" -202653,Lightning Charging Cable,1,14.95,05/16/19 22:36,"609 Forest St, Boston, MA 02215" -202654,AAA Batteries (4-pack),1,2.99,05/13/19 03:38,"109 5th St, San Francisco, CA 94016" -202655,27in FHD Monitor,1,149.99,05/27/19 18:52,"212 Cherry St, San Francisco, CA 94016" -202656,Lightning Charging Cable,1,14.95,05/18/19 14:56,"526 14th St, New York City, NY 10001" -202657,ThinkPad Laptop,1,999.99,05/22/19 14:34,"821 Willow St, Seattle, WA 98101" -202658,Google Phone,1,600,05/07/19 12:18,"228 8th St, San Francisco, CA 94016" -202659,Flatscreen TV,1,300,05/26/19 10:48,"42 Spruce St, San Francisco, CA 94016" -202660,USB-C Charging Cable,1,11.95,05/16/19 04:34,"793 Wilson St, San Francisco, CA 94016" -202661,Macbook Pro Laptop,1,1700,05/10/19 10:12,"529 Hickory St, San Francisco, CA 94016" -202662,AA Batteries (4-pack),1,3.84,05/24/19 19:07,"664 4th St, Boston, MA 02215" -202663,Lightning Charging Cable,1,14.95,05/13/19 13:17,"97 12th St, Seattle, WA 98101" -202664,AA Batteries (4-pack),1,3.84,05/24/19 13:29,"27 11th St, Atlanta, GA 30301" -202665,20in Monitor,1,109.99,05/15/19 23:17,"476 Lakeview St, Portland, OR 97035" -202666,Flatscreen TV,1,300,05/06/19 21:26,"6 Ridge St, Boston, MA 02215" -202667,Lightning Charging Cable,1,14.95,05/15/19 12:56,"789 Jackson St, Boston, MA 02215" -202668,Wired Headphones,1,11.99,05/31/19 19:03,"585 Jackson St, Seattle, WA 98101" -202669,USB-C Charging Cable,1,11.95,05/05/19 19:51,"714 Walnut St, Dallas, TX 75001" -202670,Wired Headphones,1,11.99,05/04/19 00:50,"193 Dogwood St, Los Angeles, CA 90001" -202671,USB-C Charging Cable,1,11.95,05/30/19 20:48,"235 Chestnut St, Portland, OR 97035" -202672,AA Batteries (4-pack),1,3.84,05/16/19 22:38,"373 Highland St, San Francisco, CA 94016" -202673,USB-C Charging Cable,1,11.95,05/13/19 14:30,"907 North St, Los Angeles, CA 90001" -202674,AAA Batteries (4-pack),1,2.99,05/28/19 09:12,"342 Madison St, Los Angeles, CA 90001" -202675,iPhone,1,700,05/18/19 16:51,"972 12th St, Atlanta, GA 30301" -202676,Lightning Charging Cable,1,14.95,05/25/19 08:08,"528 Cherry St, Atlanta, GA 30301" -202677,ThinkPad Laptop,1,999.99,05/08/19 11:47,"634 8th St, Portland, OR 97035" -202678,USB-C Charging Cable,2,11.95,05/05/19 20:06,"277 Johnson St, San Francisco, CA 94016" -202678,27in FHD Monitor,1,149.99,05/05/19 20:06,"277 Johnson St, San Francisco, CA 94016" -202679,iPhone,1,700,05/06/19 22:15,"702 Lakeview St, San Francisco, CA 94016" -202679,Wired Headphones,1,11.99,05/06/19 22:15,"702 Lakeview St, San Francisco, CA 94016" -202679,Lightning Charging Cable,1,14.95,05/06/19 22:15,"702 Lakeview St, San Francisco, CA 94016" -202680,27in 4K Gaming Monitor,1,389.99,05/18/19 20:25,"787 South St, New York City, NY 10001" -202681,27in 4K Gaming Monitor,1,389.99,05/10/19 12:57,"844 Hill St, Portland, OR 97035" -202682,34in Ultrawide Monitor,1,379.99,05/24/19 11:36,"568 Main St, Atlanta, GA 30301" -202683,iPhone,1,700,05/02/19 18:51,"934 Highland St, Seattle, WA 98101" -202684,Lightning Charging Cable,1,14.95,05/08/19 19:46,"283 Jackson St, Los Angeles, CA 90001" -202685,Lightning Charging Cable,1,14.95,05/17/19 20:11,"692 Main St, San Francisco, CA 94016" -202686,AA Batteries (4-pack),1,3.84,05/31/19 21:28,"608 1st St, Atlanta, GA 30301" -202687,Wired Headphones,1,11.99,05/02/19 00:10,"863 4th St, Los Angeles, CA 90001" -202688,Google Phone,1,600,05/04/19 14:29,"657 Sunset St, San Francisco, CA 94016" -202689,USB-C Charging Cable,1,11.95,05/10/19 17:34,"248 Chestnut St, San Francisco, CA 94016" -202690,ThinkPad Laptop,1,999.99,05/24/19 13:37,"656 Sunset St, San Francisco, CA 94016" -202691,AAA Batteries (4-pack),1,2.99,05/21/19 19:24,"228 Main St, New York City, NY 10001" -202692,34in Ultrawide Monitor,1,379.99,05/01/19 13:12,"715 Walnut St, New York City, NY 10001" -202693,iPhone,1,700,05/31/19 14:37,"508 Spruce St, New York City, NY 10001" -202694,Flatscreen TV,1,300,05/30/19 15:41,"222 Lakeview St, Los Angeles, CA 90001" -202695,Wired Headphones,2,11.99,05/20/19 18:59,"886 Church St, San Francisco, CA 94016" -202696,Bose SoundSport Headphones,1,99.99,05/04/19 16:18,"461 11th St, New York City, NY 10001" -202697,Wired Headphones,1,11.99,05/28/19 09:06,"995 8th St, Boston, MA 02215" -202698,Lightning Charging Cable,1,14.95,05/08/19 18:15,"392 Lakeview St, San Francisco, CA 94016" -202699,AAA Batteries (4-pack),2,2.99,05/11/19 10:46,"812 West St, Seattle, WA 98101" -202700,Apple Airpods Headphones,1,150,05/02/19 10:13,"30 Chestnut St, San Francisco, CA 94016" -202701,27in 4K Gaming Monitor,1,389.99,05/30/19 19:08,"580 Wilson St, New York City, NY 10001" -202702,AAA Batteries (4-pack),2,2.99,05/20/19 15:49,"471 Jackson St, Atlanta, GA 30301" -202703,AAA Batteries (4-pack),1,2.99,05/03/19 00:11,"662 Sunset St, Dallas, TX 75001" -202704,27in FHD Monitor,1,149.99,05/24/19 08:15,"726 Forest St, San Francisco, CA 94016" -202705,Lightning Charging Cable,1,14.95,05/04/19 17:21,"125 7th St, San Francisco, CA 94016" -202706,USB-C Charging Cable,1,11.95,05/27/19 09:43,"75 Ridge St, New York City, NY 10001" -202707,Bose SoundSport Headphones,1,99.99,05/23/19 11:45,"688 Jefferson St, San Francisco, CA 94016" -202708,AA Batteries (4-pack),1,3.84,05/04/19 19:24,"758 North St, Los Angeles, CA 90001" -202709,USB-C Charging Cable,1,11.95,05/03/19 16:48,"769 Forest St, New York City, NY 10001" -202710,Macbook Pro Laptop,1,1700,05/11/19 08:09,"961 Willow St, New York City, NY 10001" -202711,Macbook Pro Laptop,1,1700,05/27/19 21:12,"116 10th St, New York City, NY 10001" -202712,34in Ultrawide Monitor,1,379.99,05/18/19 11:48,"787 South St, Boston, MA 02215" -202713,AAA Batteries (4-pack),4,2.99,05/06/19 19:24,"944 Center St, New York City, NY 10001" -202714,USB-C Charging Cable,1,11.95,05/01/19 09:25,"266 8th St, Boston, MA 02215" -202715,AAA Batteries (4-pack),1,2.99,05/06/19 14:23,"23 Highland St, New York City, NY 10001" -202716,Wired Headphones,1,11.99,05/19/19 23:53,"960 6th St, Los Angeles, CA 90001" -202717,Bose SoundSport Headphones,1,99.99,05/31/19 06:25,"731 Spruce St, Dallas, TX 75001" -202718,AAA Batteries (4-pack),1,2.99,05/26/19 22:33,"933 Washington St, Atlanta, GA 30301" -202719,USB-C Charging Cable,1,11.95,05/04/19 09:47,"617 Chestnut St, Los Angeles, CA 90001" -202720,Macbook Pro Laptop,1,1700,05/27/19 20:43,"829 Maple St, San Francisco, CA 94016" -202721,AAA Batteries (4-pack),2,2.99,05/24/19 21:11,"815 6th St, New York City, NY 10001" -,,,,, -202722,34in Ultrawide Monitor,1,379.99,05/27/19 00:51,"468 12th St, Boston, MA 02215" -202723,Lightning Charging Cable,1,14.95,05/11/19 13:00,"214 11th St, New York City, NY 10001" -202724,AA Batteries (4-pack),1,3.84,05/24/19 11:59,"317 1st St, New York City, NY 10001" -202725,Macbook Pro Laptop,1,1700,05/30/19 14:06,"882 Park St, San Francisco, CA 94016" -202726,34in Ultrawide Monitor,1,379.99,05/19/19 10:33,"186 Elm St, Dallas, TX 75001" -202727,USB-C Charging Cable,1,11.95,05/14/19 19:11,"548 River St, Austin, TX 73301" -202728,Google Phone,1,600,05/13/19 23:26,"894 Hickory St, San Francisco, CA 94016" -202729,AAA Batteries (4-pack),3,2.99,05/26/19 18:18,"32 North St, Dallas, TX 75001" -202730,Lightning Charging Cable,1,14.95,05/25/19 10:26,"6 Spruce St, San Francisco, CA 94016" -202731,USB-C Charging Cable,2,11.95,05/14/19 21:31,"734 5th St, Seattle, WA 98101" -202732,Wired Headphones,1,11.99,05/16/19 00:42,"3 Wilson St, San Francisco, CA 94016" -202733,AA Batteries (4-pack),1,3.84,05/20/19 10:08,"507 Lakeview St, Dallas, TX 75001" -202734,USB-C Charging Cable,1,11.95,05/23/19 01:53,"28 2nd St, Portland, OR 97035" -202735,27in 4K Gaming Monitor,1,389.99,05/24/19 02:06,"30 Chestnut St, Portland, OR 97035" -202736,34in Ultrawide Monitor,1,379.99,05/07/19 21:22,"170 Dogwood St, Boston, MA 02215" -202737,ThinkPad Laptop,1,999.99,05/25/19 09:11,"470 Ridge St, Portland, ME 04101" -202738,27in FHD Monitor,1,149.99,05/07/19 08:58,"377 Main St, Austin, TX 73301" -202739,Google Phone,1,600,05/06/19 10:35,"735 Spruce St, San Francisco, CA 94016" -202740,Wired Headphones,1,11.99,05/01/19 18:27,"434 11th St, New York City, NY 10001" -202741,Lightning Charging Cable,2,14.95,05/28/19 15:22,"76 Jefferson St, New York City, NY 10001" -202742,34in Ultrawide Monitor,1,379.99,05/01/19 11:14,"842 Willow St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -202743,27in 4K Gaming Monitor,1,389.99,05/09/19 14:51,"871 14th St, Boston, MA 02215" -202744,AAA Batteries (4-pack),1,2.99,05/19/19 19:34,"578 Johnson St, Boston, MA 02215" -202745,AAA Batteries (4-pack),3,2.99,05/26/19 07:21,"301 Jefferson St, Los Angeles, CA 90001" -202746,Lightning Charging Cable,1,14.95,05/15/19 19:17,"865 Cedar St, San Francisco, CA 94016" -202747,ThinkPad Laptop,1,999.99,05/11/19 19:15,"228 Jefferson St, Dallas, TX 75001" -202748,AAA Batteries (4-pack),1,2.99,05/15/19 16:45,"268 Hill St, Boston, MA 02215" -202749,Apple Airpods Headphones,1,150,05/19/19 18:56,"734 Jefferson St, Los Angeles, CA 90001" -202750,USB-C Charging Cable,1,11.95,05/31/19 07:45,"407 Dogwood St, Los Angeles, CA 90001" -202751,USB-C Charging Cable,1,11.95,05/12/19 11:47,"996 Willow St, New York City, NY 10001" -202752,USB-C Charging Cable,1,11.95,05/26/19 12:20,"33 Jackson St, Dallas, TX 75001" -202753,AA Batteries (4-pack),1,3.84,05/07/19 09:30,"308 Park St, Boston, MA 02215" -202754,Google Phone,1,600,05/16/19 20:28,"193 Pine St, Seattle, WA 98101" -202754,USB-C Charging Cable,1,11.95,05/16/19 20:28,"193 Pine St, Seattle, WA 98101" -202754,Bose SoundSport Headphones,1,99.99,05/16/19 20:28,"193 Pine St, Seattle, WA 98101" -202755,20in Monitor,1,109.99,05/20/19 13:44,"300 Cedar St, Los Angeles, CA 90001" -202756,iPhone,1,700,05/17/19 14:24,"277 2nd St, San Francisco, CA 94016" -202757,AAA Batteries (4-pack),1,2.99,05/06/19 20:33,"853 Johnson St, Los Angeles, CA 90001" -202758,Apple Airpods Headphones,1,150,05/20/19 21:42,"659 Lakeview St, Los Angeles, CA 90001" -202759,AAA Batteries (4-pack),2,2.99,05/15/19 20:44,"424 5th St, San Francisco, CA 94016" -202760,AAA Batteries (4-pack),1,2.99,05/05/19 11:16,"860 Sunset St, Dallas, TX 75001" -202761,AA Batteries (4-pack),1,3.84,05/17/19 11:55,"354 Spruce St, Boston, MA 02215" -202762,Lightning Charging Cable,1,14.95,05/26/19 14:12,"974 Elm St, Portland, OR 97035" -202763,Apple Airpods Headphones,1,150,05/06/19 23:37,"945 Chestnut St, New York City, NY 10001" -202764,AA Batteries (4-pack),1,3.84,05/09/19 06:52,"939 Madison St, Los Angeles, CA 90001" -202765,iPhone,1,700,05/15/19 18:44,"262 Park St, Boston, MA 02215" -202765,Lightning Charging Cable,1,14.95,05/15/19 18:44,"262 Park St, Boston, MA 02215" -202765,USB-C Charging Cable,1,11.95,05/15/19 18:44,"262 Park St, Boston, MA 02215" -202766,Flatscreen TV,1,300,05/24/19 22:33,"559 Elm St, San Francisco, CA 94016" -202767,Lightning Charging Cable,1,14.95,05/20/19 11:16,"752 Walnut St, New York City, NY 10001" -202768,34in Ultrawide Monitor,1,379.99,05/16/19 22:28,"845 Elm St, Seattle, WA 98101" -202769,Apple Airpods Headphones,1,150,05/23/19 17:47,"832 Center St, Los Angeles, CA 90001" -202770,Lightning Charging Cable,1,14.95,05/19/19 08:11,"652 13th St, San Francisco, CA 94016" -202771,AA Batteries (4-pack),2,3.84,05/04/19 23:30,"622 Jefferson St, San Francisco, CA 94016" -202772,AA Batteries (4-pack),1,3.84,05/19/19 23:40,"947 South St, New York City, NY 10001" -202773,USB-C Charging Cable,1,11.95,05/24/19 15:45,"632 Park St, New York City, NY 10001" -202774,AAA Batteries (4-pack),2,2.99,05/20/19 09:29,"967 West St, Atlanta, GA 30301" -202775,Flatscreen TV,1,300,05/17/19 18:16,"617 Madison St, New York City, NY 10001" -202776,Apple Airpods Headphones,1,150,05/03/19 18:33,"219 Elm St, Los Angeles, CA 90001" -202777,Wired Headphones,1,11.99,05/06/19 18:58,"171 West St, Seattle, WA 98101" -202778,AAA Batteries (4-pack),2,2.99,05/29/19 02:20,"789 Cedar St, New York City, NY 10001" -202779,27in FHD Monitor,1,149.99,05/10/19 11:10,"967 Madison St, New York City, NY 10001" -202780,27in FHD Monitor,1,149.99,05/24/19 17:00,"149 Elm St, Boston, MA 02215" -202781,Wired Headphones,1,11.99,05/05/19 21:57,"842 Maple St, Los Angeles, CA 90001" -202782,AAA Batteries (4-pack),1,2.99,05/30/19 13:26,"473 14th St, New York City, NY 10001" -202783,Flatscreen TV,1,300,05/14/19 17:39,"671 Center St, Los Angeles, CA 90001" -202783,Macbook Pro Laptop,1,1700,05/14/19 17:39,"671 Center St, Los Angeles, CA 90001" -202784,Lightning Charging Cable,1,14.95,05/29/19 19:48,"406 Cedar St, Los Angeles, CA 90001" -202785,USB-C Charging Cable,1,11.95,05/21/19 01:25,"981 Forest St, Los Angeles, CA 90001" -202786,Google Phone,1,600,05/24/19 18:46,"535 Washington St, New York City, NY 10001" -202787,Bose SoundSport Headphones,1,99.99,05/14/19 03:42,"536 Dogwood St, Dallas, TX 75001" -202788,Flatscreen TV,1,300,05/14/19 16:29,"370 Lake St, Los Angeles, CA 90001" -202789,Bose SoundSport Headphones,1,99.99,05/20/19 18:18,"741 Hickory St, Atlanta, GA 30301" -202790,AAA Batteries (4-pack),1,2.99,05/31/19 11:22,"658 Park St, New York City, NY 10001" -202791,AA Batteries (4-pack),1,3.84,05/27/19 22:07,"232 Wilson St, Boston, MA 02215" -202792,AA Batteries (4-pack),1,3.84,05/27/19 17:01,"769 Johnson St, Portland, OR 97035" -202793,AAA Batteries (4-pack),1,2.99,05/11/19 19:06,"858 Lake St, San Francisco, CA 94016" -202794,Apple Airpods Headphones,1,150,05/26/19 20:30,"285 Forest St, San Francisco, CA 94016" -202795,USB-C Charging Cable,1,11.95,05/11/19 14:18,"884 Forest St, New York City, NY 10001" -202796,27in FHD Monitor,1,149.99,05/07/19 15:08,"451 12th St, New York City, NY 10001" -202797,AA Batteries (4-pack),2,3.84,05/19/19 07:45,"766 Cedar St, Atlanta, GA 30301" -202798,AA Batteries (4-pack),1,3.84,05/13/19 16:24,"187 Elm St, New York City, NY 10001" -202799,AA Batteries (4-pack),1,3.84,05/28/19 03:59,"870 8th St, New York City, NY 10001" -202800,USB-C Charging Cable,1,11.95,05/09/19 22:26,"853 Main St, Austin, TX 73301" -202801,Bose SoundSport Headphones,1,99.99,05/14/19 08:48,"882 1st St, Atlanta, GA 30301" -202802,AA Batteries (4-pack),1,3.84,05/15/19 11:58,"501 Forest St, Los Angeles, CA 90001" -202803,USB-C Charging Cable,1,11.95,05/13/19 10:44,"470 Spruce St, Los Angeles, CA 90001" -202804,AA Batteries (4-pack),1,3.84,05/14/19 22:05,"882 Walnut St, New York City, NY 10001" -202805,Wired Headphones,1,11.99,05/09/19 22:45,"509 Wilson St, New York City, NY 10001" -202806,20in Monitor,1,109.99,05/08/19 10:03,"961 North St, Dallas, TX 75001" -202807,Bose SoundSport Headphones,1,99.99,05/04/19 09:54,"392 Hill St, San Francisco, CA 94016" -202808,AAA Batteries (4-pack),1,2.99,05/05/19 11:49,"52 Chestnut St, San Francisco, CA 94016" -202809,AAA Batteries (4-pack),1,2.99,05/31/19 21:18,"514 Jefferson St, New York City, NY 10001" -202810,AAA Batteries (4-pack),1,2.99,05/04/19 08:49,"599 Willow St, Seattle, WA 98101" -202811,Apple Airpods Headphones,1,150,05/07/19 23:04,"692 Lake St, New York City, NY 10001" -202811,Wired Headphones,1,11.99,05/07/19 23:04,"692 Lake St, New York City, NY 10001" -202812,AAA Batteries (4-pack),1,2.99,05/26/19 22:37,"161 Ridge St, Boston, MA 02215" -202813,Wired Headphones,1,11.99,05/25/19 18:33,"56 Dogwood St, Los Angeles, CA 90001" -202814,ThinkPad Laptop,1,999.99,05/25/19 15:09,"811 Hill St, Los Angeles, CA 90001" -202815,AA Batteries (4-pack),1,3.84,05/03/19 11:49,"222 Wilson St, Seattle, WA 98101" -202816,Wired Headphones,1,11.99,05/13/19 15:33,"427 South St, San Francisco, CA 94016" -202817,27in FHD Monitor,1,149.99,05/12/19 18:11,"47 Spruce St, Los Angeles, CA 90001" -202818,27in 4K Gaming Monitor,1,389.99,05/12/19 17:16,"687 2nd St, New York City, NY 10001" -202819,Bose SoundSport Headphones,1,99.99,05/02/19 22:01,"982 Highland St, Los Angeles, CA 90001" -202820,Flatscreen TV,1,300,05/28/19 18:15,"220 Sunset St, Dallas, TX 75001" -202821,Lightning Charging Cable,1,14.95,05/25/19 13:07,"134 River St, Seattle, WA 98101" -202822,Lightning Charging Cable,1,14.95,05/07/19 19:37,"377 4th St, San Francisco, CA 94016" -202823,Bose SoundSport Headphones,1,99.99,05/16/19 23:39,"180 14th St, New York City, NY 10001" -202824,Google Phone,1,600,05/08/19 10:09,"514 Maple St, Dallas, TX 75001" -202825,AAA Batteries (4-pack),2,2.99,05/14/19 17:23,"831 River St, Atlanta, GA 30301" -202826,AAA Batteries (4-pack),2,2.99,05/23/19 17:24,"894 Maple St, Atlanta, GA 30301" -202827,Bose SoundSport Headphones,1,99.99,05/16/19 10:02,"428 6th St, Seattle, WA 98101" -202828,AAA Batteries (4-pack),1,2.99,05/04/19 14:37,"840 Johnson St, Los Angeles, CA 90001" -202829,iPhone,1,700,05/17/19 07:00,"598 Jackson St, Dallas, TX 75001" -202830,iPhone,1,700,05/16/19 11:13,"109 Washington St, New York City, NY 10001" -202831,Flatscreen TV,1,300,05/27/19 17:37,"56 Hickory St, San Francisco, CA 94016" -202832,Wired Headphones,1,11.99,05/04/19 20:57,"251 Madison St, Dallas, TX 75001" -202833,Lightning Charging Cable,1,14.95,05/12/19 11:33,"737 Cedar St, Boston, MA 02215" -202834,AA Batteries (4-pack),1,3.84,05/09/19 18:55,"404 Chestnut St, San Francisco, CA 94016" -202835,AAA Batteries (4-pack),1,2.99,05/26/19 22:53,"655 13th St, Dallas, TX 75001" -202836,AAA Batteries (4-pack),1,2.99,05/12/19 23:38,"888 14th St, New York City, NY 10001" -202837,USB-C Charging Cable,1,11.95,05/26/19 12:15,"617 Jackson St, Dallas, TX 75001" -202838,Vareebadd Phone,1,400,05/25/19 13:08,"379 Walnut St, Los Angeles, CA 90001" -202839,Apple Airpods Headphones,1,150,05/30/19 07:42,"571 Main St, San Francisco, CA 94016" -202840,AA Batteries (4-pack),1,3.84,05/19/19 12:42,"479 Elm St, New York City, NY 10001" -202841,Apple Airpods Headphones,1,150,05/18/19 19:02,"979 Meadow St, San Francisco, CA 94016" -202842,Wired Headphones,1,11.99,05/29/19 14:45,"808 Jefferson St, Atlanta, GA 30301" -202842,USB-C Charging Cable,1,11.95,05/29/19 14:45,"808 Jefferson St, Atlanta, GA 30301" -202843,AAA Batteries (4-pack),1,2.99,05/01/19 20:24,"681 North St, San Francisco, CA 94016" -202844,34in Ultrawide Monitor,1,379.99,05/26/19 12:17,"655 Center St, Seattle, WA 98101" -202845,USB-C Charging Cable,1,11.95,05/21/19 23:34,"864 9th St, Austin, TX 73301" -202846,AAA Batteries (4-pack),1,2.99,05/20/19 14:03,"510 1st St, San Francisco, CA 94016" -202847,AAA Batteries (4-pack),2,2.99,05/14/19 23:57,"448 Madison St, Seattle, WA 98101" -202848,AAA Batteries (4-pack),1,2.99,05/15/19 20:27,"790 Washington St, Boston, MA 02215" -202849,Bose SoundSport Headphones,1,99.99,05/14/19 11:36,"704 14th St, New York City, NY 10001" -202850,27in 4K Gaming Monitor,1,389.99,05/18/19 16:24,"105 West St, Boston, MA 02215" -202851,USB-C Charging Cable,1,11.95,05/15/19 09:53,"797 River St, Portland, ME 04101" -202852,27in FHD Monitor,1,149.99,05/24/19 11:00,"544 8th St, Austin, TX 73301" -202853,LG Dryer,1,600.0,05/18/19 11:16,"645 5th St, New York City, NY 10001" -202854,Lightning Charging Cable,1,14.95,05/23/19 09:36,"140 Johnson St, Dallas, TX 75001" -202855,AAA Batteries (4-pack),1,2.99,05/14/19 10:56,"298 Sunset St, Los Angeles, CA 90001" -202856,Bose SoundSport Headphones,1,99.99,05/30/19 16:08,"501 9th St, New York City, NY 10001" -202857,Macbook Pro Laptop,1,1700,05/13/19 11:21,"151 Highland St, New York City, NY 10001" -202858,Bose SoundSport Headphones,1,99.99,05/01/19 19:42,"555 Chestnut St, San Francisco, CA 94016" -202859,Apple Airpods Headphones,1,150,05/27/19 04:33,"572 Pine St, Seattle, WA 98101" -202860,Google Phone,1,600,05/25/19 10:00,"961 River St, New York City, NY 10001" -202861,AAA Batteries (4-pack),1,2.99,05/23/19 19:50,"674 Lakeview St, Seattle, WA 98101" -202862,USB-C Charging Cable,1,11.95,05/02/19 09:09,"791 Forest St, Boston, MA 02215" -202863,USB-C Charging Cable,1,11.95,05/20/19 16:57,"243 Hill St, Dallas, TX 75001" -202864,USB-C Charging Cable,1,11.95,05/18/19 15:51,"715 West St, San Francisco, CA 94016" -202865,AAA Batteries (4-pack),1,2.99,05/26/19 17:46,"607 Main St, Los Angeles, CA 90001" -202866,USB-C Charging Cable,1,11.95,05/25/19 20:50,"66 Meadow St, Los Angeles, CA 90001" -202867,AAA Batteries (4-pack),2,2.99,05/19/19 05:08,"759 11th St, Boston, MA 02215" -202868,Lightning Charging Cable,1,14.95,05/31/19 09:15,"351 Maple St, San Francisco, CA 94016" -202869,LG Washing Machine,1,600.0,05/30/19 19:58,"997 Meadow St, Dallas, TX 75001" -202870,27in FHD Monitor,1,149.99,05/16/19 01:37,"45 Jefferson St, San Francisco, CA 94016" -202871,USB-C Charging Cable,1,11.95,05/23/19 20:28,"442 12th St, Austin, TX 73301" -202872,AAA Batteries (4-pack),1,2.99,05/04/19 16:44,"356 Cherry St, New York City, NY 10001" -202873,iPhone,1,700,05/26/19 17:02,"594 Johnson St, Los Angeles, CA 90001" -202874,Lightning Charging Cable,3,14.95,05/12/19 21:14,"963 4th St, San Francisco, CA 94016" -202875,Wired Headphones,1,11.99,05/05/19 17:04,"78 Jefferson St, Dallas, TX 75001" -202876,34in Ultrawide Monitor,1,379.99,05/22/19 17:53,"718 River St, Los Angeles, CA 90001" -202877,Apple Airpods Headphones,1,150,05/07/19 14:10,"236 Jefferson St, Los Angeles, CA 90001" -202878,27in FHD Monitor,1,149.99,05/29/19 19:34,"603 12th St, Boston, MA 02215" -202879,Macbook Pro Laptop,1,1700,05/24/19 19:17,"501 Cherry St, San Francisco, CA 94016" -202880,AAA Batteries (4-pack),2,2.99,05/14/19 13:41,"613 Elm St, San Francisco, CA 94016" -202881,Lightning Charging Cable,1,14.95,05/01/19 16:05,"173 Forest St, New York City, NY 10001" -202882,iPhone,1,700,05/03/19 16:22,"694 South St, New York City, NY 10001" -202883,ThinkPad Laptop,1,999.99,05/29/19 16:07,"450 Cherry St, Boston, MA 02215" -202884,Apple Airpods Headphones,1,150,05/21/19 18:33,"643 Cedar St, San Francisco, CA 94016" -202885,Apple Airpods Headphones,1,150,05/10/19 17:36,"5 West St, Los Angeles, CA 90001" -202886,27in 4K Gaming Monitor,1,389.99,05/24/19 14:27,"639 South St, San Francisco, CA 94016" -202887,Wired Headphones,1,11.99,05/03/19 13:44,"968 Johnson St, San Francisco, CA 94016" -202888,USB-C Charging Cable,1,11.95,05/14/19 13:06,"726 Main St, Los Angeles, CA 90001" -202889,Lightning Charging Cable,1,14.95,05/29/19 13:19,"286 8th St, Dallas, TX 75001" -202890,27in FHD Monitor,1,149.99,05/05/19 16:01,"543 Spruce St, Los Angeles, CA 90001" -202891,Wired Headphones,2,11.99,05/30/19 22:54,"829 12th St, New York City, NY 10001" -202892,AAA Batteries (4-pack),1,2.99,05/22/19 22:18,"472 Walnut St, Boston, MA 02215" -202893,Bose SoundSport Headphones,1,99.99,05/12/19 08:21,"107 Washington St, Los Angeles, CA 90001" -202894,Lightning Charging Cable,1,14.95,05/31/19 09:56,"862 Walnut St, San Francisco, CA 94016" -202895,Wired Headphones,1,11.99,05/13/19 20:40,"636 Hickory St, Los Angeles, CA 90001" -202896,Bose SoundSport Headphones,1,99.99,05/29/19 18:33,"737 Hill St, Portland, OR 97035" -202897,Lightning Charging Cable,1,14.95,05/20/19 21:18,"751 11th St, San Francisco, CA 94016" -202898,AA Batteries (4-pack),6,3.84,05/14/19 17:47,"276 2nd St, San Francisco, CA 94016" -202899,AAA Batteries (4-pack),1,2.99,05/11/19 22:20,"352 Highland St, San Francisco, CA 94016" -202900,USB-C Charging Cable,1,11.95,05/04/19 17:31,"278 Cedar St, Los Angeles, CA 90001" -202901,Lightning Charging Cable,1,14.95,05/26/19 19:48,"737 Meadow St, Portland, OR 97035" -202902,AAA Batteries (4-pack),7,2.99,05/23/19 19:58,"901 Chestnut St, Boston, MA 02215" -202903,Apple Airpods Headphones,1,150,05/04/19 12:33,"593 4th St, Seattle, WA 98101" -202904,iPhone,1,700,05/05/19 19:47,"979 11th St, San Francisco, CA 94016" -202905,AAA Batteries (4-pack),2,2.99,05/02/19 11:56,"835 Ridge St, San Francisco, CA 94016" -202906,20in Monitor,1,109.99,05/09/19 12:13,"785 11th St, Dallas, TX 75001" -202906,Macbook Pro Laptop,1,1700,05/09/19 12:13,"785 11th St, Dallas, TX 75001" -202907,AA Batteries (4-pack),2,3.84,05/03/19 15:54,"156 Madison St, Los Angeles, CA 90001" -202908,USB-C Charging Cable,1,11.95,05/13/19 07:55,"149 6th St, San Francisco, CA 94016" -202909,Bose SoundSport Headphones,1,99.99,05/07/19 14:56,"438 10th St, Atlanta, GA 30301" -202910,iPhone,1,700,05/25/19 12:42,"654 Highland St, Los Angeles, CA 90001" -202910,Lightning Charging Cable,1,14.95,05/25/19 12:42,"654 Highland St, Los Angeles, CA 90001" -202911,AAA Batteries (4-pack),1,2.99,05/17/19 18:17,"594 Meadow St, Atlanta, GA 30301" -202912,ThinkPad Laptop,1,999.99,05/16/19 11:15,"728 Washington St, Portland, ME 04101" -202913,AA Batteries (4-pack),1,3.84,05/02/19 18:43,"251 North St, Atlanta, GA 30301" -202914,USB-C Charging Cable,1,11.95,05/08/19 20:55,"464 Johnson St, New York City, NY 10001" -202915,Flatscreen TV,1,300,05/13/19 16:29,"109 1st St, Atlanta, GA 30301" -202916,USB-C Charging Cable,1,11.95,05/01/19 17:07,"337 Madison St, New York City, NY 10001" -202917,Flatscreen TV,1,300,05/06/19 19:42,"444 North St, New York City, NY 10001" -202918,Apple Airpods Headphones,1,150,05/24/19 22:08,"550 Wilson St, Boston, MA 02215" -202919,Flatscreen TV,1,300,05/01/19 16:51,"382 Lake St, Boston, MA 02215" -202919,USB-C Charging Cable,1,11.95,05/01/19 16:51,"382 Lake St, Boston, MA 02215" -202920,USB-C Charging Cable,1,11.95,05/19/19 20:29,"775 Lake St, Austin, TX 73301" -202921,AA Batteries (4-pack),1,3.84,05/06/19 14:32,"894 Jackson St, San Francisco, CA 94016" -202922,Apple Airpods Headphones,1,150,05/01/19 12:40,"408 Lake St, San Francisco, CA 94016" -202923,AA Batteries (4-pack),1,3.84,05/09/19 18:29,"476 Meadow St, Boston, MA 02215" -202924,27in 4K Gaming Monitor,1,389.99,05/06/19 12:59,"586 1st St, Portland, OR 97035" -202925,Lightning Charging Cable,1,14.95,05/29/19 21:43,"334 Highland St, Portland, OR 97035" -202925,Lightning Charging Cable,2,14.95,05/29/19 21:43,"334 Highland St, Portland, OR 97035" -202926,USB-C Charging Cable,1,11.95,05/02/19 10:34,"484 2nd St, San Francisco, CA 94016" -202927,34in Ultrawide Monitor,1,379.99,05/19/19 18:37,"909 6th St, Boston, MA 02215" -202928,AA Batteries (4-pack),2,3.84,05/19/19 12:43,"859 Cedar St, Los Angeles, CA 90001" -202929,20in Monitor,1,109.99,05/14/19 14:40,"341 7th St, Boston, MA 02215" -202930,Flatscreen TV,1,300,05/18/19 14:34,"926 Park St, San Francisco, CA 94016" -202931,34in Ultrawide Monitor,1,379.99,05/23/19 10:38,"503 South St, Seattle, WA 98101" -202932,Apple Airpods Headphones,1,150,05/20/19 14:32,"426 South St, Seattle, WA 98101" -202933,Lightning Charging Cable,1,14.95,05/31/19 06:14,"975 Meadow St, Portland, OR 97035" -202934,USB-C Charging Cable,1,11.95,05/20/19 08:40,"817 Sunset St, Portland, OR 97035" -202935,USB-C Charging Cable,1,11.95,05/10/19 16:10,"869 Lincoln St, Los Angeles, CA 90001" -202936,AA Batteries (4-pack),2,3.84,05/17/19 17:21,"923 Church St, San Francisco, CA 94016" -202937,Apple Airpods Headphones,1,150,05/12/19 13:29,"30 Johnson St, Dallas, TX 75001" -202938,iPhone,1,700,05/09/19 00:39,"285 Dogwood St, Los Angeles, CA 90001" -202939,USB-C Charging Cable,1,11.95,05/19/19 13:07,"619 Center St, San Francisco, CA 94016" -202940,34in Ultrawide Monitor,1,379.99,05/01/19 19:25,"553 Madison St, San Francisco, CA 94016" -202941,Apple Airpods Headphones,1,150,05/30/19 17:15,"66 5th St, Los Angeles, CA 90001" -202942,iPhone,1,700,05/19/19 16:18,"566 Center St, San Francisco, CA 94016" -202943,27in FHD Monitor,1,149.99,05/22/19 16:41,"134 Madison St, Los Angeles, CA 90001" -202944,AAA Batteries (4-pack),2,2.99,05/19/19 19:39,"151 Cherry St, Los Angeles, CA 90001" -202945,Lightning Charging Cable,1,14.95,05/29/19 04:00,"984 Park St, Atlanta, GA 30301" -202946,Wired Headphones,2,11.99,05/14/19 00:53,"438 Wilson St, Los Angeles, CA 90001" -202947,AAA Batteries (4-pack),1,2.99,05/16/19 11:21,"95 10th St, Los Angeles, CA 90001" -202948,AA Batteries (4-pack),1,3.84,05/21/19 21:07,"429 1st St, Los Angeles, CA 90001" -202948,27in 4K Gaming Monitor,1,389.99,05/21/19 21:07,"429 1st St, Los Angeles, CA 90001" -202949,Wired Headphones,1,11.99,05/17/19 13:06,"182 Highland St, Boston, MA 02215" -202950,iPhone,1,700,05/19/19 11:08,"65 Lakeview St, San Francisco, CA 94016" -202950,Lightning Charging Cable,1,14.95,05/19/19 11:08,"65 Lakeview St, San Francisco, CA 94016" -202951,Wired Headphones,2,11.99,05/25/19 01:29,"660 7th St, Portland, OR 97035" -202952,Lightning Charging Cable,1,14.95,05/12/19 21:03,"902 Center St, New York City, NY 10001" -202953,27in FHD Monitor,1,149.99,05/26/19 13:39,"583 Jefferson St, New York City, NY 10001" -202954,AAA Batteries (4-pack),1,2.99,05/20/19 09:25,"905 8th St, Seattle, WA 98101" -202955,USB-C Charging Cable,1,11.95,05/20/19 17:30,"739 West St, San Francisco, CA 94016" -202956,Wired Headphones,1,11.99,05/14/19 13:00,"4 8th St, Los Angeles, CA 90001" -202957,27in 4K Gaming Monitor,1,389.99,05/08/19 18:56,"27 West St, Dallas, TX 75001" -202958,Lightning Charging Cable,1,14.95,05/01/19 09:45,"925 Lake St, Atlanta, GA 30301" -202959,27in FHD Monitor,1,149.99,05/30/19 15:30,"971 Church St, Atlanta, GA 30301" -202960,USB-C Charging Cable,1,11.95,05/18/19 10:07,"545 Hickory St, San Francisco, CA 94016" -202961,27in FHD Monitor,1,149.99,05/25/19 19:03,"297 Center St, Portland, ME 04101" -202962,AA Batteries (4-pack),2,3.84,05/21/19 20:39,"206 North St, Austin, TX 73301" -202963,Lightning Charging Cable,1,14.95,05/15/19 10:18,"642 Hill St, Seattle, WA 98101" -202964,Bose SoundSport Headphones,2,99.99,05/13/19 13:18,"274 Cherry St, Dallas, TX 75001" -202965,Wired Headphones,1,11.99,05/06/19 18:20,"436 Cedar St, Atlanta, GA 30301" -202966,Wired Headphones,1,11.99,05/10/19 12:41,"721 1st St, Los Angeles, CA 90001" -202967,Lightning Charging Cable,1,14.95,05/14/19 20:16,"335 River St, Dallas, TX 75001" -202968,Apple Airpods Headphones,1,150,05/19/19 23:40,"235 6th St, Portland, OR 97035" -202969,AAA Batteries (4-pack),1,2.99,05/30/19 09:37,"699 Wilson St, Boston, MA 02215" -202970,Lightning Charging Cable,1,14.95,05/17/19 06:06,"254 Adams St, Portland, OR 97035" -202971,iPhone,1,700,05/05/19 21:04,"170 Cherry St, Los Angeles, CA 90001" -202972,ThinkPad Laptop,1,999.99,05/03/19 15:14,"418 Cherry St, San Francisco, CA 94016" -202973,AA Batteries (4-pack),1,3.84,05/21/19 13:16,"973 Main St, Dallas, TX 75001" -202974,Wired Headphones,1,11.99,05/27/19 15:00,"827 Meadow St, New York City, NY 10001" -202975,27in FHD Monitor,1,149.99,05/24/19 16:15,"955 Cedar St, San Francisco, CA 94016" -202976,Google Phone,1,600,05/01/19 19:08,"662 Wilson St, Dallas, TX 75001" -202977,Apple Airpods Headphones,1,150,05/17/19 09:02,"18 Park St, Los Angeles, CA 90001" -202978,20in Monitor,1,109.99,05/23/19 12:58,"347 Pine St, San Francisco, CA 94016" -202979,Wired Headphones,1,11.99,05/10/19 20:04,"143 Forest St, Los Angeles, CA 90001" -202980,USB-C Charging Cable,1,11.95,05/04/19 19:34,"655 5th St, Los Angeles, CA 90001" -202981,Bose SoundSport Headphones,1,99.99,05/24/19 06:20,"261 Jefferson St, San Francisco, CA 94016" -202982,Bose SoundSport Headphones,1,99.99,05/11/19 00:25,"728 6th St, Portland, OR 97035" -202983,Wired Headphones,1,11.99,05/29/19 17:54,"204 River St, San Francisco, CA 94016" -202984,Wired Headphones,1,11.99,05/24/19 06:38,"258 7th St, Atlanta, GA 30301" -202985,AA Batteries (4-pack),2,3.84,05/10/19 18:49,"722 Meadow St, Seattle, WA 98101" -202986,iPhone,1,700,05/22/19 22:04,"558 Highland St, Los Angeles, CA 90001" -202987,Bose SoundSport Headphones,1,99.99,05/18/19 08:59,"697 Willow St, Atlanta, GA 30301" -202988,Bose SoundSport Headphones,1,99.99,05/19/19 10:50,"128 South St, Los Angeles, CA 90001" -202989,Apple Airpods Headphones,1,150,05/01/19 13:16,"329 South St, San Francisco, CA 94016" -202990,Apple Airpods Headphones,1,150,05/26/19 18:10,"931 Willow St, New York City, NY 10001" -202991,27in FHD Monitor,1,149.99,05/29/19 11:17,"251 Jackson St, Dallas, TX 75001" -202992,Wired Headphones,1,11.99,05/07/19 09:28,"166 Sunset St, New York City, NY 10001" -202992,AAA Batteries (4-pack),3,2.99,05/07/19 09:28,"166 Sunset St, New York City, NY 10001" -202993,iPhone,1,700,05/21/19 16:08,"263 Walnut St, San Francisco, CA 94016" -202993,Lightning Charging Cable,1,14.95,05/21/19 16:08,"263 Walnut St, San Francisco, CA 94016" -202994,27in 4K Gaming Monitor,1,389.99,05/14/19 09:22,"612 5th St, New York City, NY 10001" -202995,20in Monitor,1,109.99,05/23/19 06:37,"419 Hill St, Los Angeles, CA 90001" -202996,iPhone,1,700,05/20/19 08:16,"851 14th St, New York City, NY 10001" -202997,iPhone,1,700,05/27/19 16:05,"392 Park St, San Francisco, CA 94016" -202998,AAA Batteries (4-pack),1,2.99,05/29/19 15:07,"715 Dogwood St, New York City, NY 10001" -202999,20in Monitor,1,109.99,05/03/19 20:41,"27 Jefferson St, San Francisco, CA 94016" -203000,Google Phone,1,600,05/25/19 15:10,"594 Wilson St, San Francisco, CA 94016" -203001,Google Phone,1,600,05/05/19 10:31,"803 South St, Boston, MA 02215" -203002,Lightning Charging Cable,1,14.95,05/22/19 05:35,"686 1st St, San Francisco, CA 94016" -203002,27in FHD Monitor,1,149.99,05/22/19 05:35,"686 1st St, San Francisco, CA 94016" -203003,34in Ultrawide Monitor,1,379.99,05/15/19 22:03,"320 Elm St, New York City, NY 10001" -203004,Apple Airpods Headphones,1,150,05/15/19 22:08,"601 2nd St, Portland, OR 97035" -203005,USB-C Charging Cable,1,11.95,05/04/19 10:20,"90 Willow St, Los Angeles, CA 90001" -203006,AAA Batteries (4-pack),1,2.99,05/27/19 23:18,"548 Sunset St, Austin, TX 73301" -203007,ThinkPad Laptop,1,999.99,05/25/19 19:35,"529 Jefferson St, Seattle, WA 98101" -203008,AA Batteries (4-pack),1,3.84,05/07/19 11:11,"197 Hickory St, Atlanta, GA 30301" -203009,AA Batteries (4-pack),1,3.84,05/02/19 21:37,"42 Lincoln St, San Francisco, CA 94016" -203010,Bose SoundSport Headphones,1,99.99,05/25/19 18:57,"953 Meadow St, Los Angeles, CA 90001" -203011,27in 4K Gaming Monitor,1,389.99,05/25/19 22:03,"404 12th St, New York City, NY 10001" -203012,USB-C Charging Cable,1,11.95,05/18/19 22:04,"978 Elm St, San Francisco, CA 94016" -203013,AAA Batteries (4-pack),1,2.99,05/17/19 09:06,"492 Spruce St, New York City, NY 10001" -203014,USB-C Charging Cable,1,11.95,05/21/19 07:21,"560 Church St, Atlanta, GA 30301" -203015,Apple Airpods Headphones,1,150,05/30/19 11:01,"892 Park St, Atlanta, GA 30301" -203016,27in 4K Gaming Monitor,1,389.99,05/28/19 13:43,"697 West St, Portland, OR 97035" -203017,Lightning Charging Cable,1,14.95,05/21/19 20:38,"651 Willow St, Dallas, TX 75001" -203018,Vareebadd Phone,1,400,05/25/19 09:42,"139 Wilson St, Los Angeles, CA 90001" -203018,Bose SoundSport Headphones,1,99.99,05/25/19 09:42,"139 Wilson St, Los Angeles, CA 90001" -203019,Flatscreen TV,1,300,05/06/19 14:25,"448 Wilson St, San Francisco, CA 94016" -203020,iPhone,1,700,05/30/19 10:10,"419 West St, Boston, MA 02215" -203021,Apple Airpods Headphones,1,150,05/08/19 23:19,"594 2nd St, Seattle, WA 98101" -203022,Wired Headphones,1,11.99,05/18/19 10:05,"985 Dogwood St, New York City, NY 10001" -203023,Apple Airpods Headphones,1,150,05/22/19 16:43,"480 9th St, San Francisco, CA 94016" -203024,Lightning Charging Cable,1,14.95,05/07/19 17:24,"918 13th St, New York City, NY 10001" -203025,USB-C Charging Cable,1,11.95,05/13/19 10:50,"762 Jefferson St, Boston, MA 02215" -203026,AAA Batteries (4-pack),1,2.99,05/22/19 20:55,"874 7th St, New York City, NY 10001" -203027,Bose SoundSport Headphones,1,99.99,05/14/19 14:00,"32 Dogwood St, San Francisco, CA 94016" -203028,USB-C Charging Cable,1,11.95,05/16/19 08:58,"161 Cherry St, San Francisco, CA 94016" -203029,Apple Airpods Headphones,1,150,05/15/19 15:42,"805 Jefferson St, San Francisco, CA 94016" -203030,AA Batteries (4-pack),1,3.84,05/02/19 18:04,"77 13th St, Dallas, TX 75001" -203031,iPhone,1,700,05/29/19 12:36,"671 West St, Atlanta, GA 30301" -203032,AA Batteries (4-pack),1,3.84,05/18/19 13:44,"512 Madison St, Boston, MA 02215" -203033,Lightning Charging Cable,1,14.95,05/02/19 09:17,"928 Jefferson St, Seattle, WA 98101" -203034,Vareebadd Phone,1,400,05/14/19 20:15,"785 1st St, Los Angeles, CA 90001" -203035,Bose SoundSport Headphones,1,99.99,05/01/19 14:23,"806 Highland St, Los Angeles, CA 90001" -203036,USB-C Charging Cable,1,11.95,05/08/19 11:19,"744 Lakeview St, New York City, NY 10001" -203037,Lightning Charging Cable,1,14.95,05/22/19 11:05,"540 Pine St, San Francisco, CA 94016" -203038,27in 4K Gaming Monitor,1,389.99,05/17/19 21:42,"820 Jefferson St, San Francisco, CA 94016" -203039,USB-C Charging Cable,1,11.95,05/20/19 08:53,"628 Ridge St, San Francisco, CA 94016" -203040,Wired Headphones,1,11.99,05/20/19 21:25,"821 Park St, Los Angeles, CA 90001" -203041,iPhone,1,700,05/24/19 10:02,"48 14th St, San Francisco, CA 94016" -203042,AAA Batteries (4-pack),1,2.99,05/23/19 13:15,"492 Washington St, San Francisco, CA 94016" -203043,Lightning Charging Cable,1,14.95,05/18/19 16:21,"312 11th St, Boston, MA 02215" -203044,Bose SoundSport Headphones,1,99.99,05/02/19 17:41,"65 1st St, Atlanta, GA 30301" -203045,Lightning Charging Cable,1,14.95,05/27/19 20:40,"674 13th St, Los Angeles, CA 90001" -203046,Bose SoundSport Headphones,1,99.99,05/02/19 12:33,"354 2nd St, Portland, OR 97035" -203047,Wired Headphones,1,11.99,05/10/19 10:18,"402 4th St, San Francisco, CA 94016" -203048,AA Batteries (4-pack),2,3.84,05/01/19 12:57,"392 Spruce St, New York City, NY 10001" -203049,USB-C Charging Cable,1,11.95,05/02/19 18:59,"359 Maple St, Seattle, WA 98101" -203050,AA Batteries (4-pack),1,3.84,05/20/19 21:13,"181 Lakeview St, Dallas, TX 75001" -203051,Bose SoundSport Headphones,1,99.99,05/23/19 15:42,"641 Hill St, Atlanta, GA 30301" -203052,Macbook Pro Laptop,1,1700,05/02/19 21:52,"830 Forest St, New York City, NY 10001" -203053,34in Ultrawide Monitor,1,379.99,05/09/19 12:07,"81 Lincoln St, San Francisco, CA 94016" -203054,AAA Batteries (4-pack),2,2.99,05/11/19 17:15,"377 7th St, New York City, NY 10001" -203055,Apple Airpods Headphones,1,150,05/09/19 18:34,"231 Walnut St, Boston, MA 02215" -203056,Vareebadd Phone,1,400,05/18/19 15:01,"769 Lincoln St, Los Angeles, CA 90001" -203057,Bose SoundSport Headphones,1,99.99,05/23/19 19:55,"90 Meadow St, Atlanta, GA 30301" -203058,Lightning Charging Cable,1,14.95,05/08/19 00:06,"689 5th St, New York City, NY 10001" -203059,AA Batteries (4-pack),1,3.84,05/31/19 12:45,"810 Highland St, Boston, MA 02215" -203060,AAA Batteries (4-pack),2,2.99,05/06/19 15:02,"292 Spruce St, Portland, OR 97035" -203061,Bose SoundSport Headphones,1,99.99,05/27/19 20:29,"873 Cedar St, Boston, MA 02215" -203062,USB-C Charging Cable,1,11.95,05/04/19 20:47,"263 11th St, Boston, MA 02215" -203063,USB-C Charging Cable,1,11.95,05/04/19 19:45,"652 Park St, San Francisco, CA 94016" -203064,USB-C Charging Cable,1,11.95,05/29/19 17:29,"823 Church St, San Francisco, CA 94016" -203065,Wired Headphones,1,11.99,05/01/19 20:20,"810 Cedar St, San Francisco, CA 94016" -203066,Apple Airpods Headphones,1,150,05/18/19 21:37,"704 6th St, Los Angeles, CA 90001" -203067,Wired Headphones,1,11.99,05/18/19 11:58,"842 Maple St, New York City, NY 10001" -203068,USB-C Charging Cable,1,11.95,05/09/19 13:16,"985 Sunset St, Portland, OR 97035" -203069,AA Batteries (4-pack),1,3.84,05/12/19 11:30,"10 Madison St, Dallas, TX 75001" -203070,AAA Batteries (4-pack),1,2.99,05/22/19 08:29,"451 12th St, Los Angeles, CA 90001" -203071,Bose SoundSport Headphones,1,99.99,05/23/19 19:27,"398 10th St, San Francisco, CA 94016" -203072,Apple Airpods Headphones,1,150,05/14/19 12:08,"85 Adams St, New York City, NY 10001" -203073,AA Batteries (4-pack),1,3.84,05/13/19 08:04,"598 13th St, Seattle, WA 98101" -203074,27in FHD Monitor,1,149.99,05/14/19 19:40,"36 10th St, Atlanta, GA 30301" -203075,27in 4K Gaming Monitor,1,389.99,05/18/19 03:47,"951 Madison St, San Francisco, CA 94016" -203076,Bose SoundSport Headphones,1,99.99,05/07/19 10:15,"641 Dogwood St, San Francisco, CA 94016" -203077,Wired Headphones,1,11.99,05/20/19 12:43,"820 North St, San Francisco, CA 94016" -203078,AAA Batteries (4-pack),1,2.99,05/06/19 11:53,"693 Dogwood St, Atlanta, GA 30301" -203079,AA Batteries (4-pack),2,3.84,05/19/19 17:31,"600 Center St, Portland, OR 97035" -203080,Lightning Charging Cable,1,14.95,05/14/19 21:13,"950 8th St, Dallas, TX 75001" -203081,AA Batteries (4-pack),1,3.84,05/02/19 15:47,"77 Lake St, New York City, NY 10001" -203082,AA Batteries (4-pack),2,3.84,05/06/19 16:19,"819 5th St, San Francisco, CA 94016" -203083,Macbook Pro Laptop,1,1700,05/28/19 18:28,"742 Hickory St, Dallas, TX 75001" -203084,iPhone,1,700,05/17/19 23:53,"49 8th St, Los Angeles, CA 90001" -203085,Lightning Charging Cable,1,14.95,05/29/19 15:46,"723 11th St, Los Angeles, CA 90001" -203086,AAA Batteries (4-pack),1,2.99,05/22/19 17:01,"567 Meadow St, San Francisco, CA 94016" -203086,34in Ultrawide Monitor,1,379.99,05/22/19 17:01,"567 Meadow St, San Francisco, CA 94016" -203087,Lightning Charging Cable,1,14.95,05/06/19 17:10,"812 9th St, Atlanta, GA 30301" -203088,27in FHD Monitor,1,149.99,05/28/19 23:01,"210 11th St, Los Angeles, CA 90001" -203089,Flatscreen TV,1,300,05/19/19 11:57,"21 1st St, Atlanta, GA 30301" -203090,USB-C Charging Cable,1,11.95,05/27/19 11:02,"28 Main St, Austin, TX 73301" -203091,Wired Headphones,1,11.99,05/14/19 14:50,"556 Forest St, San Francisco, CA 94016" -203092,27in FHD Monitor,1,149.99,05/09/19 15:41,"798 Spruce St, Dallas, TX 75001" -203093,Wired Headphones,2,11.99,05/19/19 14:07,"473 Main St, Seattle, WA 98101" -203094,AA Batteries (4-pack),1,3.84,05/22/19 12:09,"147 River St, Seattle, WA 98101" -203094,Bose SoundSport Headphones,1,99.99,05/22/19 12:09,"147 River St, Seattle, WA 98101" -203095,Bose SoundSport Headphones,1,99.99,05/28/19 09:19,"490 Hickory St, Boston, MA 02215" -203096,USB-C Charging Cable,1,11.95,05/30/19 23:50,"504 Johnson St, Seattle, WA 98101" -203097,Lightning Charging Cable,1,14.95,05/05/19 13:48,"919 Walnut St, Dallas, TX 75001" -203098,Wired Headphones,1,11.99,05/24/19 13:54,"878 Madison St, Los Angeles, CA 90001" -203099,USB-C Charging Cable,1,11.95,05/09/19 15:50,"759 Ridge St, Los Angeles, CA 90001" -203100,27in 4K Gaming Monitor,1,389.99,05/03/19 20:51,"642 14th St, Boston, MA 02215" -203100,AAA Batteries (4-pack),2,2.99,05/03/19 20:51,"642 14th St, Boston, MA 02215" -203101,27in 4K Gaming Monitor,1,389.99,05/16/19 12:13,"371 Jackson St, New York City, NY 10001" -203102,USB-C Charging Cable,1,11.95,05/16/19 14:34,"632 Elm St, Atlanta, GA 30301" -203103,Flatscreen TV,1,300,05/20/19 12:36,"426 Willow St, San Francisco, CA 94016" -203104,Flatscreen TV,1,300,05/10/19 18:38,"101 4th St, Seattle, WA 98101" -203105,Lightning Charging Cable,1,14.95,05/09/19 12:09,"68 Cherry St, Seattle, WA 98101" -203106,Apple Airpods Headphones,1,150,05/04/19 20:57,"396 2nd St, Boston, MA 02215" -203107,USB-C Charging Cable,2,11.95,05/10/19 20:32,"359 Church St, Portland, OR 97035" -203108,Wired Headphones,2,11.99,05/18/19 15:34,"461 Chestnut St, Dallas, TX 75001" -203109,27in 4K Gaming Monitor,1,389.99,05/23/19 20:04,"46 Jackson St, Austin, TX 73301" -203110,Lightning Charging Cable,1,14.95,05/29/19 22:11,"362 Walnut St, San Francisco, CA 94016" -203111,Wired Headphones,1,11.99,05/06/19 08:08,"466 8th St, Boston, MA 02215" -203112,Wired Headphones,1,11.99,05/02/19 16:08,"207 Elm St, Boston, MA 02215" -203113,AAA Batteries (4-pack),1,2.99,05/27/19 08:46,"205 Ridge St, Atlanta, GA 30301" -203114,Lightning Charging Cable,1,14.95,05/25/19 19:11,"587 Maple St, New York City, NY 10001" -203115,Bose SoundSport Headphones,1,99.99,05/06/19 13:43,"145 Chestnut St, Los Angeles, CA 90001" -203116,Bose SoundSport Headphones,1,99.99,05/05/19 09:52,"36 Dogwood St, San Francisco, CA 94016" -203117,AAA Batteries (4-pack),2,2.99,05/12/19 09:53,"411 Madison St, New York City, NY 10001" -203118,ThinkPad Laptop,1,999.99,05/24/19 15:36,"763 4th St, Boston, MA 02215" -203119,AA Batteries (4-pack),1,3.84,05/16/19 11:04,"543 Center St, Boston, MA 02215" -203120,27in FHD Monitor,1,149.99,05/30/19 18:26,"596 6th St, Boston, MA 02215" -203121,Wired Headphones,1,11.99,05/18/19 12:42,"274 Madison St, Austin, TX 73301" -203122,Flatscreen TV,1,300,05/26/19 11:52,"541 Ridge St, New York City, NY 10001" -203123,iPhone,1,700,05/11/19 23:39,"601 Wilson St, Boston, MA 02215" -203124,AAA Batteries (4-pack),1,2.99,05/19/19 20:29,"448 6th St, San Francisco, CA 94016" -203125,Lightning Charging Cable,1,14.95,05/09/19 20:11,"770 12th St, San Francisco, CA 94016" -203125,AA Batteries (4-pack),1,3.84,05/09/19 20:11,"770 12th St, San Francisco, CA 94016" -203126,AA Batteries (4-pack),1,3.84,05/23/19 00:42,"259 Meadow St, Boston, MA 02215" -203127,27in FHD Monitor,1,149.99,05/25/19 20:25,"305 Forest St, Los Angeles, CA 90001" -203128,USB-C Charging Cable,1,11.95,05/12/19 10:37,"987 River St, Los Angeles, CA 90001" -203129,AA Batteries (4-pack),1,3.84,05/13/19 13:33,"283 Cherry St, Seattle, WA 98101" -203130,Lightning Charging Cable,1,14.95,05/09/19 09:18,"943 North St, Boston, MA 02215" -203131,iPhone,1,700,05/28/19 16:38,"511 Willow St, New York City, NY 10001" -203131,Lightning Charging Cable,1,14.95,05/28/19 16:38,"511 Willow St, New York City, NY 10001" -203132,USB-C Charging Cable,1,11.95,05/09/19 16:08,"768 River St, Seattle, WA 98101" -203133,Google Phone,1,600,05/14/19 18:36,"113 14th St, Los Angeles, CA 90001" -203133,USB-C Charging Cable,1,11.95,05/14/19 18:36,"113 14th St, Los Angeles, CA 90001" -203133,Wired Headphones,1,11.99,05/14/19 18:36,"113 14th St, Los Angeles, CA 90001" -203134,Bose SoundSport Headphones,1,99.99,05/21/19 18:17,"257 4th St, San Francisco, CA 94016" -203135,34in Ultrawide Monitor,1,379.99,05/05/19 11:13,"90 Dogwood St, Dallas, TX 75001" -203136,Lightning Charging Cable,1,14.95,05/09/19 13:20,"396 Highland St, Los Angeles, CA 90001" -203137,AA Batteries (4-pack),1,3.84,05/31/19 11:33,"89 Elm St, Atlanta, GA 30301" -203138,AAA Batteries (4-pack),1,2.99,05/31/19 07:54,"361 Spruce St, Dallas, TX 75001" -203139,AAA Batteries (4-pack),1,2.99,05/23/19 10:01,"162 9th St, San Francisco, CA 94016" -203140,Wired Headphones,1,11.99,05/03/19 16:14,"936 Park St, Dallas, TX 75001" -203141,Bose SoundSport Headphones,1,99.99,05/19/19 11:43,"321 Park St, Los Angeles, CA 90001" -203142,USB-C Charging Cable,1,11.95,05/17/19 21:41,"442 Cedar St, Seattle, WA 98101" -203143,Lightning Charging Cable,1,14.95,05/05/19 09:00,"727 Church St, Portland, OR 97035" -203144,AA Batteries (4-pack),3,3.84,05/08/19 11:05,"375 Lakeview St, Boston, MA 02215" -203145,AA Batteries (4-pack),1,3.84,05/21/19 23:59,"666 Jefferson St, New York City, NY 10001" -203146,Lightning Charging Cable,1,14.95,05/10/19 16:23,"953 Elm St, Portland, OR 97035" -203147,AAA Batteries (4-pack),1,2.99,05/18/19 00:01,"209 Sunset St, Austin, TX 73301" -203148,27in 4K Gaming Monitor,1,389.99,05/09/19 14:13,"234 Willow St, San Francisco, CA 94016" -203149,Google Phone,1,600,05/08/19 15:39,"655 11th St, New York City, NY 10001" -203149,USB-C Charging Cable,1,11.95,05/08/19 15:39,"655 11th St, New York City, NY 10001" -203150,Bose SoundSport Headphones,1,99.99,05/01/19 18:50,"38 Ridge St, New York City, NY 10001" -203151,Lightning Charging Cable,1,14.95,05/25/19 09:23,"716 Chestnut St, Atlanta, GA 30301" -203152,Flatscreen TV,1,300,05/03/19 10:54,"170 West St, Atlanta, GA 30301" -203153,Bose SoundSport Headphones,1,99.99,05/16/19 21:33,"796 Church St, Austin, TX 73301" -203153,AA Batteries (4-pack),1,3.84,05/16/19 21:33,"796 Church St, Austin, TX 73301" -203154,AA Batteries (4-pack),1,3.84,05/06/19 19:11,"823 2nd St, New York City, NY 10001" -203155,27in FHD Monitor,1,149.99,05/25/19 10:04,"426 6th St, San Francisco, CA 94016" -203156,Apple Airpods Headphones,1,150,05/26/19 08:28,"290 5th St, San Francisco, CA 94016" -203157,AAA Batteries (4-pack),2,2.99,05/15/19 09:43,"641 Adams St, San Francisco, CA 94016" -203158,Lightning Charging Cable,2,14.95,05/29/19 18:14,"197 7th St, Boston, MA 02215" -203159,AAA Batteries (4-pack),1,2.99,05/02/19 22:57,"823 Hill St, Los Angeles, CA 90001" -203160,27in 4K Gaming Monitor,1,389.99,05/21/19 12:40,"485 Park St, San Francisco, CA 94016" -203161,Apple Airpods Headphones,1,150,05/19/19 20:37,"419 Maple St, Dallas, TX 75001" -203162,Flatscreen TV,1,300,05/20/19 10:58,"493 10th St, Portland, OR 97035" -203163,USB-C Charging Cable,1,11.95,05/29/19 21:42,"241 Lincoln St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -203164,Wired Headphones,1,11.99,05/06/19 14:26,"34 Meadow St, San Francisco, CA 94016" -203165,Apple Airpods Headphones,1,150,05/02/19 16:24,"449 9th St, Atlanta, GA 30301" -203166,USB-C Charging Cable,1,11.95,05/23/19 11:19,"207 Washington St, New York City, NY 10001" -203167,27in FHD Monitor,1,149.99,05/19/19 09:08,"654 Hill St, Austin, TX 73301" -203168,Lightning Charging Cable,1,14.95,05/25/19 07:44,"576 Maple St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -203169,Lightning Charging Cable,1,14.95,05/26/19 22:01,"206 14th St, Boston, MA 02215" -203170,ThinkPad Laptop,1,999.99,05/03/19 19:56,"704 Highland St, Seattle, WA 98101" -203171,AA Batteries (4-pack),1,3.84,05/02/19 07:12,"292 1st St, Los Angeles, CA 90001" -203172,Apple Airpods Headphones,1,150,05/01/19 10:15,"258 11th St, Portland, OR 97035" -203173,Bose SoundSport Headphones,1,99.99,05/29/19 18:26,"37 Sunset St, Los Angeles, CA 90001" -203174,USB-C Charging Cable,1,11.95,05/04/19 18:12,"755 South St, Atlanta, GA 30301" -203174,27in FHD Monitor,1,149.99,05/04/19 18:12,"755 South St, Atlanta, GA 30301" -203175,Apple Airpods Headphones,1,150,05/22/19 11:48,"199 Hickory St, Los Angeles, CA 90001" -203176,AAA Batteries (4-pack),1,2.99,05/06/19 21:23,"487 River St, Los Angeles, CA 90001" -203177,USB-C Charging Cable,2,11.95,05/31/19 21:02,"973 Lakeview St, San Francisco, CA 94016" -203178,Flatscreen TV,1,300,05/09/19 01:38,"139 Chestnut St, New York City, NY 10001" -203179,Wired Headphones,1,11.99,05/04/19 14:55,"675 Wilson St, Boston, MA 02215" -203180,Lightning Charging Cable,1,14.95,05/22/19 12:59,"480 Willow St, Dallas, TX 75001" -203181,20in Monitor,1,109.99,05/02/19 11:22,"455 Park St, Portland, OR 97035" -203182,34in Ultrawide Monitor,1,379.99,05/09/19 21:09,"691 6th St, Seattle, WA 98101" -203183,20in Monitor,2,109.99,05/15/19 21:45,"238 Ridge St, New York City, NY 10001" -203184,iPhone,1,700,05/25/19 21:52,"491 13th St, Los Angeles, CA 90001" -203185,Apple Airpods Headphones,1,150,05/11/19 23:43,"734 Lincoln St, San Francisco, CA 94016" -203186,27in FHD Monitor,1,149.99,05/18/19 14:23,"706 Spruce St, New York City, NY 10001" -203187,USB-C Charging Cable,1,11.95,05/23/19 21:14,"171 Maple St, New York City, NY 10001" -203188,27in FHD Monitor,1,149.99,05/16/19 17:18,"902 Lake St, San Francisco, CA 94016" -203189,27in 4K Gaming Monitor,1,389.99,05/31/19 11:39,"351 Lake St, San Francisco, CA 94016" -203190,AA Batteries (4-pack),1,3.84,05/04/19 23:06,"375 Walnut St, San Francisco, CA 94016" -203190,Lightning Charging Cable,2,14.95,05/04/19 23:06,"375 Walnut St, San Francisco, CA 94016" -203191,iPhone,1,700,05/10/19 19:56,"87 Pine St, New York City, NY 10001" -203191,Apple Airpods Headphones,1,150,05/10/19 19:56,"87 Pine St, New York City, NY 10001" -203192,Bose SoundSport Headphones,1,99.99,05/04/19 14:56,"988 Elm St, Dallas, TX 75001" -203193,27in 4K Gaming Monitor,1,389.99,05/14/19 08:09,"172 Forest St, Boston, MA 02215" -203194,Bose SoundSport Headphones,1,99.99,05/26/19 13:05,"827 Ridge St, New York City, NY 10001" -,,,,, -203195,AAA Batteries (4-pack),1,2.99,05/19/19 22:35,"102 Church St, San Francisco, CA 94016" -203196,34in Ultrawide Monitor,1,379.99,05/19/19 01:02,"967 Adams St, New York City, NY 10001" -203197,Apple Airpods Headphones,1,150,05/03/19 11:18,"501 12th St, New York City, NY 10001" -203198,Wired Headphones,1,11.99,05/28/19 23:57,"471 5th St, Boston, MA 02215" -203199,USB-C Charging Cable,1,11.95,05/05/19 13:15,"209 North St, Boston, MA 02215" -203200,20in Monitor,1,109.99,05/22/19 23:43,"67 Madison St, New York City, NY 10001" -203201,iPhone,1,700,05/17/19 16:26,"936 Lincoln St, San Francisco, CA 94016" -203202,iPhone,1,700,05/07/19 15:34,"820 Washington St, Los Angeles, CA 90001" -203203,Lightning Charging Cable,1,14.95,05/25/19 11:29,"182 Madison St, Portland, ME 04101" -203204,AAA Batteries (4-pack),1,2.99,05/25/19 19:44,"659 7th St, Dallas, TX 75001" -203205,USB-C Charging Cable,3,11.95,05/26/19 20:53,"289 Lincoln St, Seattle, WA 98101" -203206,Wired Headphones,1,11.99,05/22/19 15:54,"852 Washington St, New York City, NY 10001" -203207,AAA Batteries (4-pack),1,2.99,05/10/19 11:28,"565 Meadow St, Boston, MA 02215" -203208,Wired Headphones,1,11.99,05/15/19 11:40,"388 Lakeview St, Atlanta, GA 30301" -203209,USB-C Charging Cable,1,11.95,05/02/19 18:40,"997 Johnson St, San Francisco, CA 94016" -203210,Google Phone,1,600,05/05/19 09:28,"611 Main St, San Francisco, CA 94016" -203211,27in FHD Monitor,1,149.99,05/06/19 18:35,"182 Forest St, Dallas, TX 75001" -203212,USB-C Charging Cable,1,11.95,05/01/19 16:50,"667 Sunset St, Dallas, TX 75001" -203213,Lightning Charging Cable,1,14.95,05/06/19 11:44,"298 Sunset St, San Francisco, CA 94016" -203214,Bose SoundSport Headphones,1,99.99,05/28/19 16:02,"761 Church St, Dallas, TX 75001" -203215,27in FHD Monitor,1,149.99,05/07/19 21:07,"41 Jackson St, Austin, TX 73301" -203216,27in FHD Monitor,1,149.99,05/26/19 20:03,"359 6th St, Portland, ME 04101" -203217,Lightning Charging Cable,1,14.95,05/09/19 19:30,"342 River St, Boston, MA 02215" -203218,Flatscreen TV,1,300,05/30/19 06:24,"746 Willow St, Los Angeles, CA 90001" -203219,AA Batteries (4-pack),1,3.84,05/22/19 14:13,"955 Forest St, Los Angeles, CA 90001" -203220,Lightning Charging Cable,1,14.95,05/23/19 07:46,"317 Sunset St, Atlanta, GA 30301" -203221,Lightning Charging Cable,2,14.95,05/18/19 22:11,"808 Lakeview St, Los Angeles, CA 90001" -203222,Apple Airpods Headphones,1,150,05/09/19 07:23,"513 Park St, Atlanta, GA 30301" -203223,Google Phone,1,600,05/14/19 22:57,"122 River St, Austin, TX 73301" -203224,AA Batteries (4-pack),1,3.84,05/06/19 19:29,"724 Spruce St, Atlanta, GA 30301" -203225,Macbook Pro Laptop,1,1700,05/24/19 19:21,"772 11th St, San Francisco, CA 94016" -203226,Wired Headphones,1,11.99,05/21/19 21:22,"783 Walnut St, Dallas, TX 75001" -203227,AAA Batteries (4-pack),1,2.99,05/30/19 17:18,"605 Center St, Boston, MA 02215" -203228,Bose SoundSport Headphones,1,99.99,05/29/19 19:11,"84 Spruce St, Boston, MA 02215" -203229,AA Batteries (4-pack),1,3.84,05/26/19 15:39,"104 Forest St, Atlanta, GA 30301" -203230,USB-C Charging Cable,1,11.95,05/20/19 17:35,"47 Cedar St, Los Angeles, CA 90001" -203231,AAA Batteries (4-pack),2,2.99,05/18/19 20:32,"475 Main St, Los Angeles, CA 90001" -203232,ThinkPad Laptop,1,999.99,05/27/19 13:57,"487 Forest St, Los Angeles, CA 90001" -203233,AAA Batteries (4-pack),1,2.99,05/13/19 21:08,"986 River St, San Francisco, CA 94016" -203234,Bose SoundSport Headphones,1,99.99,05/14/19 14:09,"900 Elm St, Seattle, WA 98101" -203235,AAA Batteries (4-pack),1,2.99,05/29/19 17:28,"855 Highland St, San Francisco, CA 94016" -203235,34in Ultrawide Monitor,1,379.99,05/29/19 17:28,"855 Highland St, San Francisco, CA 94016" -203236,Bose SoundSport Headphones,1,99.99,05/19/19 17:33,"379 Wilson St, Seattle, WA 98101" -203237,AA Batteries (4-pack),1,3.84,05/08/19 15:23,"822 Dogwood St, Los Angeles, CA 90001" -203238,20in Monitor,1,109.99,05/11/19 22:25,"726 Walnut St, San Francisco, CA 94016" -203239,USB-C Charging Cable,2,11.95,05/18/19 06:59,"139 Sunset St, Seattle, WA 98101" -203240,Apple Airpods Headphones,1,150,05/16/19 14:45,"233 Adams St, Atlanta, GA 30301" -203241,Wired Headphones,1,11.99,05/26/19 11:23,"51 Highland St, San Francisco, CA 94016" -203242,Lightning Charging Cable,1,14.95,05/16/19 19:13,"95 Forest St, San Francisco, CA 94016" -203243,AAA Batteries (4-pack),1,2.99,05/05/19 20:52,"242 8th St, Portland, OR 97035" -203244,Apple Airpods Headphones,1,150,05/25/19 09:38,"890 South St, Los Angeles, CA 90001" -203245,iPhone,1,700,05/31/19 19:49,"724 Pine St, Dallas, TX 75001" -203245,Lightning Charging Cable,1,14.95,05/31/19 19:49,"724 Pine St, Dallas, TX 75001" -203246,Wired Headphones,1,11.99,05/23/19 20:55,"693 7th St, Atlanta, GA 30301" -203247,AAA Batteries (4-pack),1,2.99,05/05/19 21:34,"987 Madison St, Seattle, WA 98101" -203248,Flatscreen TV,1,300,05/23/19 16:41,"912 Washington St, San Francisco, CA 94016" -203249,Wired Headphones,1,11.99,05/04/19 21:56,"61 Johnson St, Boston, MA 02215" -203250,AAA Batteries (4-pack),2,2.99,05/11/19 16:58,"67 13th St, San Francisco, CA 94016" -203251,USB-C Charging Cable,1,11.95,05/28/19 16:49,"791 13th St, Los Angeles, CA 90001" -203252,AA Batteries (4-pack),1,3.84,05/04/19 23:20,"206 2nd St, Los Angeles, CA 90001" -203253,Apple Airpods Headphones,1,150,05/29/19 21:51,"689 12th St, New York City, NY 10001" -203254,AAA Batteries (4-pack),1,2.99,05/01/19 14:42,"362 Jefferson St, Portland, OR 97035" -203255,iPhone,1,700,05/07/19 21:05,"716 Lincoln St, Seattle, WA 98101" -203256,Lightning Charging Cable,1,14.95,05/03/19 07:18,"714 Highland St, New York City, NY 10001" -203257,Wired Headphones,1,11.99,05/12/19 13:34,"567 Lakeview St, Austin, TX 73301" -203258,USB-C Charging Cable,1,11.95,05/08/19 15:13,"568 Ridge St, Los Angeles, CA 90001" -203259,iPhone,1,700,05/23/19 10:05,"312 Ridge St, Boston, MA 02215" -203260,Lightning Charging Cable,1,14.95,05/14/19 12:40,"12 Sunset St, Dallas, TX 75001" -203261,Lightning Charging Cable,1,14.95,05/18/19 10:12,"156 Chestnut St, San Francisco, CA 94016" -203262,Lightning Charging Cable,1,14.95,05/06/19 16:52,"576 13th St, Los Angeles, CA 90001" -203263,AAA Batteries (4-pack),1,2.99,05/19/19 17:03,"73 8th St, Austin, TX 73301" -203264,LG Washing Machine,1,600.0,05/18/19 14:19,"816 Ridge St, Portland, OR 97035" -203265,20in Monitor,1,109.99,05/20/19 17:35,"786 Main St, New York City, NY 10001" -203266,Wired Headphones,1,11.99,05/05/19 18:41,"759 Dogwood St, New York City, NY 10001" -203267,Apple Airpods Headphones,1,150,05/02/19 23:51,"473 Maple St, San Francisco, CA 94016" -203268,ThinkPad Laptop,1,999.99,05/30/19 21:14,"694 Jefferson St, Dallas, TX 75001" -203269,AAA Batteries (4-pack),1,2.99,05/13/19 22:36,"667 Elm St, Dallas, TX 75001" -203270,AA Batteries (4-pack),1,3.84,05/22/19 20:46,"732 11th St, New York City, NY 10001" -203271,Wired Headphones,1,11.99,05/19/19 23:31,"434 1st St, New York City, NY 10001" -203272,Apple Airpods Headphones,1,150,05/25/19 18:58,"29 7th St, New York City, NY 10001" -203273,AA Batteries (4-pack),1,3.84,05/15/19 20:02,"777 1st St, Los Angeles, CA 90001" -203274,AAA Batteries (4-pack),1,2.99,05/06/19 22:06,"605 14th St, San Francisco, CA 94016" -203275,USB-C Charging Cable,1,11.95,05/09/19 21:00,"665 Park St, Austin, TX 73301" -203276,27in FHD Monitor,1,149.99,05/12/19 00:59,"14 River St, Boston, MA 02215" -203277,27in FHD Monitor,1,149.99,05/01/19 17:13,"955 Elm St, Atlanta, GA 30301" -203278,USB-C Charging Cable,1,11.95,05/22/19 18:57,"280 Madison St, San Francisco, CA 94016" -203279,ThinkPad Laptop,1,999.99,05/25/19 15:55,"135 Highland St, Dallas, TX 75001" -203280,27in FHD Monitor,1,149.99,05/13/19 23:13,"183 South St, Dallas, TX 75001" -203281,Lightning Charging Cable,1,14.95,05/19/19 23:35,"861 Johnson St, Boston, MA 02215" -203282,Lightning Charging Cable,1,14.95,05/09/19 10:19,"604 Madison St, San Francisco, CA 94016" -203283,Wired Headphones,1,11.99,05/11/19 13:08,"562 Park St, New York City, NY 10001" -203284,ThinkPad Laptop,1,999.99,05/05/19 19:44,"353 6th St, Atlanta, GA 30301" -203284,Lightning Charging Cable,1,14.95,05/05/19 19:44,"353 6th St, Atlanta, GA 30301" -203285,27in 4K Gaming Monitor,1,389.99,05/16/19 02:19,"394 9th St, Los Angeles, CA 90001" -203286,27in FHD Monitor,1,149.99,05/04/19 15:36,"16 Cherry St, Boston, MA 02215" -203287,AAA Batteries (4-pack),1,2.99,05/26/19 22:23,"670 North St, New York City, NY 10001" -203288,Wired Headphones,1,11.99,05/21/19 17:50,"172 Forest St, Los Angeles, CA 90001" -203289,Wired Headphones,1,11.99,05/23/19 13:15,"594 Chestnut St, Boston, MA 02215" -203290,AA Batteries (4-pack),1,3.84,05/14/19 21:35,"203 1st St, Austin, TX 73301" -203291,Macbook Pro Laptop,1,1700,05/26/19 19:35,"667 Chestnut St, Portland, OR 97035" -203292,ThinkPad Laptop,1,999.99,05/08/19 01:46,"74 Walnut St, Boston, MA 02215" -203293,AA Batteries (4-pack),1,3.84,05/25/19 12:15,"416 Meadow St, San Francisco, CA 94016" -203294,Bose SoundSport Headphones,1,99.99,05/25/19 18:27,"920 9th St, San Francisco, CA 94016" -203295,Lightning Charging Cable,1,14.95,05/23/19 10:13,"15 Lakeview St, Boston, MA 02215" -203296,Apple Airpods Headphones,1,150,05/19/19 19:37,"190 Jackson St, San Francisco, CA 94016" -203297,USB-C Charging Cable,1,11.95,05/19/19 12:45,"72 6th St, San Francisco, CA 94016" -203298,Flatscreen TV,1,300,05/22/19 19:31,"229 River St, Los Angeles, CA 90001" -203299,USB-C Charging Cable,1,11.95,05/05/19 19:32,"424 River St, San Francisco, CA 94016" -203300,AA Batteries (4-pack),2,3.84,05/21/19 18:52,"817 Cedar St, New York City, NY 10001" -203301,AA Batteries (4-pack),1,3.84,05/29/19 12:59,"858 Cherry St, San Francisco, CA 94016" -203302,ThinkPad Laptop,1,999.99,05/08/19 13:31,"185 Park St, San Francisco, CA 94016" -203303,Bose SoundSport Headphones,1,99.99,05/11/19 18:42,"747 South St, Dallas, TX 75001" -203304,AAA Batteries (4-pack),1,2.99,05/11/19 11:05,"435 Church St, Seattle, WA 98101" -203305,Google Phone,1,600,05/22/19 10:54,"803 West St, New York City, NY 10001" -203306,USB-C Charging Cable,1,11.95,05/28/19 18:55,"901 Lake St, Seattle, WA 98101" -203307,USB-C Charging Cable,1,11.95,05/12/19 12:36,"398 Lake St, Boston, MA 02215" -203308,Lightning Charging Cable,1,14.95,05/11/19 12:34,"840 Willow St, Seattle, WA 98101" -203309,iPhone,1,700,05/07/19 21:00,"799 Wilson St, Boston, MA 02215" -203310,Macbook Pro Laptop,1,1700,05/27/19 15:16,"199 Lincoln St, Austin, TX 73301" -203311,20in Monitor,1,109.99,05/28/19 20:44,"607 6th St, San Francisco, CA 94016" -203312,AA Batteries (4-pack),2,3.84,05/28/19 18:34,"749 Forest St, Boston, MA 02215" -203313,Wired Headphones,1,11.99,05/20/19 15:18,"357 Willow St, Dallas, TX 75001" -203314,Apple Airpods Headphones,1,150,05/19/19 09:36,"136 Madison St, Los Angeles, CA 90001" -203315,AA Batteries (4-pack),1,3.84,05/16/19 09:56,"872 9th St, Dallas, TX 75001" -203316,AA Batteries (4-pack),1,3.84,05/17/19 09:29,"342 4th St, Atlanta, GA 30301" -203317,27in 4K Gaming Monitor,1,389.99,05/25/19 19:15,"700 Chestnut St, New York City, NY 10001" -203318,Lightning Charging Cable,2,14.95,05/06/19 08:47,"200 Hill St, Atlanta, GA 30301" -203319,Lightning Charging Cable,2,14.95,05/29/19 14:40,"600 5th St, San Francisco, CA 94016" -203320,USB-C Charging Cable,1,11.95,05/15/19 22:04,"401 11th St, Boston, MA 02215" -203321,Bose SoundSport Headphones,1,99.99,05/31/19 19:13,"84 Center St, San Francisco, CA 94016" -203322,USB-C Charging Cable,1,11.95,05/27/19 10:41,"545 11th St, Dallas, TX 75001" -203323,Macbook Pro Laptop,1,1700,05/11/19 20:09,"662 7th St, San Francisco, CA 94016" -203324,Lightning Charging Cable,1,14.95,05/13/19 05:57,"788 4th St, San Francisco, CA 94016" -203325,ThinkPad Laptop,1,999.99,05/30/19 21:41,"571 Highland St, Dallas, TX 75001" -203326,ThinkPad Laptop,1,999.99,05/11/19 09:05,"13 Wilson St, Atlanta, GA 30301" -203327,AA Batteries (4-pack),1,3.84,05/12/19 19:51,"163 1st St, San Francisco, CA 94016" -203328,27in FHD Monitor,1,149.99,05/03/19 21:17,"299 Washington St, New York City, NY 10001" -203328,AA Batteries (4-pack),1,3.84,05/03/19 21:17,"299 Washington St, New York City, NY 10001" -203329,USB-C Charging Cable,1,11.95,05/12/19 06:22,"383 12th St, San Francisco, CA 94016" -,,,,, -203330,AA Batteries (4-pack),1,3.84,05/13/19 20:33,"104 Jefferson St, San Francisco, CA 94016" -203331,Bose SoundSport Headphones,1,99.99,05/02/19 01:22,"615 Park St, Los Angeles, CA 90001" -203332,iPhone,1,700,05/27/19 18:11,"428 Hickory St, San Francisco, CA 94016" -203333,iPhone,1,700,05/29/19 13:49,"788 Maple St, San Francisco, CA 94016" -203334,Macbook Pro Laptop,1,1700,05/11/19 11:11,"813 2nd St, Austin, TX 73301" -203335,AAA Batteries (4-pack),2,2.99,05/21/19 18:13,"630 Center St, Dallas, TX 75001" -203336,27in FHD Monitor,1,149.99,05/22/19 15:30,"49 9th St, New York City, NY 10001" -203337,ThinkPad Laptop,1,999.99,05/14/19 01:32,"874 12th St, Los Angeles, CA 90001" -203338,Apple Airpods Headphones,1,150,05/12/19 08:57,"751 Cedar St, Boston, MA 02215" -203339,Bose SoundSport Headphones,1,99.99,05/05/19 22:56,"856 Church St, San Francisco, CA 94016" -203340,Lightning Charging Cable,1,14.95,05/08/19 09:24,"79 Jefferson St, Seattle, WA 98101" -203341,AAA Batteries (4-pack),2,2.99,05/02/19 16:00,"348 10th St, Austin, TX 73301" -203342,27in 4K Gaming Monitor,1,389.99,05/18/19 10:19,"402 Pine St, Portland, OR 97035" -203343,Flatscreen TV,1,300,05/29/19 03:37,"111 West St, Atlanta, GA 30301" -203344,Wired Headphones,1,11.99,05/05/19 18:45,"873 4th St, Dallas, TX 75001" -203345,Apple Airpods Headphones,1,150,05/20/19 06:34,"849 Madison St, New York City, NY 10001" -203346,Apple Airpods Headphones,1,150,05/16/19 11:45,"938 Lakeview St, Boston, MA 02215" -203347,Wired Headphones,1,11.99,05/25/19 14:57,"931 9th St, New York City, NY 10001" -203348,Bose SoundSport Headphones,1,99.99,05/21/19 13:34,"308 10th St, San Francisco, CA 94016" -203349,Lightning Charging Cable,1,14.95,05/04/19 22:18,"95 1st St, Austin, TX 73301" -203350,Lightning Charging Cable,1,14.95,05/22/19 15:13,"437 Cedar St, San Francisco, CA 94016" -203351,AA Batteries (4-pack),2,3.84,05/14/19 19:55,"441 River St, Dallas, TX 75001" -203352,Bose SoundSport Headphones,1,99.99,05/04/19 17:25,"848 6th St, San Francisco, CA 94016" -203353,LG Washing Machine,1,600.0,05/11/19 14:06,"516 Washington St, Los Angeles, CA 90001" -203354,USB-C Charging Cable,1,11.95,05/08/19 12:26,"497 Highland St, New York City, NY 10001" -203355,USB-C Charging Cable,1,11.95,05/23/19 00:21,"919 7th St, Atlanta, GA 30301" -203356,Lightning Charging Cable,1,14.95,05/11/19 20:39,"42 Center St, New York City, NY 10001" -203357,34in Ultrawide Monitor,1,379.99,05/21/19 10:07,"248 4th St, Portland, ME 04101" -203358,Lightning Charging Cable,1,14.95,05/21/19 12:40,"577 Center St, Los Angeles, CA 90001" -203359,20in Monitor,1,109.99,05/13/19 19:41,"526 Ridge St, Atlanta, GA 30301" -203360,27in FHD Monitor,1,149.99,05/20/19 13:58,"998 9th St, Boston, MA 02215" -203361,Vareebadd Phone,1,400,05/14/19 19:26,"428 1st St, Portland, OR 97035" -203362,AAA Batteries (4-pack),1,2.99,05/25/19 08:20,"687 Jackson St, San Francisco, CA 94016" -203363,34in Ultrawide Monitor,1,379.99,05/03/19 19:57,"949 Johnson St, Seattle, WA 98101" -203364,Apple Airpods Headphones,1,150,05/24/19 15:40,"629 Jefferson St, Boston, MA 02215" -203365,Google Phone,1,600,05/05/19 13:38,"272 Madison St, Atlanta, GA 30301" -203365,Bose SoundSport Headphones,1,99.99,05/05/19 13:38,"272 Madison St, Atlanta, GA 30301" -203365,Apple Airpods Headphones,1,150,05/05/19 13:38,"272 Madison St, Atlanta, GA 30301" -203366,34in Ultrawide Monitor,1,379.99,05/07/19 19:18,"92 Jefferson St, Portland, OR 97035" -203367,ThinkPad Laptop,1,999.99,05/28/19 16:37,"622 Washington St, New York City, NY 10001" -203368,AA Batteries (4-pack),1,3.84,05/29/19 07:13,"315 Meadow St, Los Angeles, CA 90001" -203369,AA Batteries (4-pack),2,3.84,05/13/19 10:32,"916 Lakeview St, Atlanta, GA 30301" -203370,iPhone,1,700,05/31/19 10:43,"217 West St, San Francisco, CA 94016" -203370,Lightning Charging Cable,1,14.95,05/31/19 10:43,"217 West St, San Francisco, CA 94016" -203371,Google Phone,1,600,05/26/19 07:09,"943 Cherry St, Atlanta, GA 30301" -203372,34in Ultrawide Monitor,1,379.99,05/13/19 15:07,"265 West St, Seattle, WA 98101" -203373,Google Phone,1,600,05/02/19 10:44,"409 Forest St, New York City, NY 10001" -203374,Bose SoundSport Headphones,1,99.99,05/07/19 19:42,"924 Sunset St, Dallas, TX 75001" -203375,ThinkPad Laptop,1,999.99,05/28/19 14:52,"925 Willow St, Portland, OR 97035" -,,,,, -203376,USB-C Charging Cable,1,11.95,05/27/19 15:21,"469 Park St, Los Angeles, CA 90001" -203377,27in FHD Monitor,1,149.99,05/09/19 11:40,"612 Wilson St, Dallas, TX 75001" -203378,USB-C Charging Cable,1,11.95,05/06/19 14:16,"539 Forest St, Seattle, WA 98101" -203379,AA Batteries (4-pack),1,3.84,05/28/19 20:41,"254 Cherry St, San Francisco, CA 94016" -203380,Wired Headphones,1,11.99,05/14/19 06:16,"742 Lincoln St, Los Angeles, CA 90001" -203381,AAA Batteries (4-pack),2,2.99,05/31/19 22:20,"981 8th St, New York City, NY 10001" -203382,34in Ultrawide Monitor,1,379.99,05/17/19 10:10,"994 Pine St, Los Angeles, CA 90001" -203383,Apple Airpods Headphones,1,150,05/12/19 13:48,"420 10th St, Seattle, WA 98101" -203384,Macbook Pro Laptop,1,1700,05/24/19 10:45,"434 Spruce St, San Francisco, CA 94016" -203384,27in 4K Gaming Monitor,1,389.99,05/24/19 10:45,"434 Spruce St, San Francisco, CA 94016" -203385,Flatscreen TV,1,300,05/05/19 18:02,"495 7th St, Los Angeles, CA 90001" -203386,Wired Headphones,1,11.99,05/17/19 21:12,"406 Forest St, Los Angeles, CA 90001" -203387,27in 4K Gaming Monitor,1,389.99,05/10/19 12:02,"577 Meadow St, Los Angeles, CA 90001" -203388,27in FHD Monitor,1,149.99,05/20/19 08:43,"273 Lincoln St, New York City, NY 10001" -203389,Wired Headphones,1,11.99,05/10/19 21:12,"176 12th St, New York City, NY 10001" -203390,Bose SoundSport Headphones,1,99.99,05/07/19 20:33,"913 Lake St, Los Angeles, CA 90001" -203391,27in FHD Monitor,1,149.99,05/23/19 20:30,"889 2nd St, Seattle, WA 98101" -203392,Vareebadd Phone,1,400,05/11/19 14:40,"476 6th St, San Francisco, CA 94016" -203392,USB-C Charging Cable,1,11.95,05/11/19 14:40,"476 6th St, San Francisco, CA 94016" -203393,Wired Headphones,1,11.99,05/28/19 18:20,"509 Spruce St, Austin, TX 73301" -203394,USB-C Charging Cable,1,11.95,05/31/19 20:52,"573 Lakeview St, Boston, MA 02215" -203395,AAA Batteries (4-pack),3,2.99,05/02/19 21:05,"129 Dogwood St, New York City, NY 10001" -203395,AAA Batteries (4-pack),2,2.99,05/02/19 21:05,"129 Dogwood St, New York City, NY 10001" -203396,AA Batteries (4-pack),2,3.84,05/30/19 16:26,"768 North St, New York City, NY 10001" -203397,AA Batteries (4-pack),1,3.84,05/25/19 10:36,"194 River St, San Francisco, CA 94016" -203398,Bose SoundSport Headphones,1,99.99,05/01/19 10:55,"97 Maple St, Seattle, WA 98101" -203399,Lightning Charging Cable,1,14.95,05/07/19 09:26,"621 14th St, Seattle, WA 98101" -203400,Lightning Charging Cable,1,14.95,05/03/19 17:06,"63 Lincoln St, Dallas, TX 75001" -203401,AA Batteries (4-pack),1,3.84,05/26/19 19:40,"169 River St, Boston, MA 02215" -203402,iPhone,1,700,05/09/19 14:38,"646 1st St, Los Angeles, CA 90001" -203403,Apple Airpods Headphones,1,150,05/06/19 04:22,"386 Highland St, Los Angeles, CA 90001" -203404,Google Phone,1,600,05/11/19 22:32,"152 Lake St, San Francisco, CA 94016" -203405,27in 4K Gaming Monitor,1,389.99,05/28/19 05:35,"93 9th St, San Francisco, CA 94016" -203406,Flatscreen TV,1,300,05/20/19 17:19,"432 7th St, Boston, MA 02215" -203407,Apple Airpods Headphones,1,150,05/17/19 19:03,"264 Hickory St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -203408,USB-C Charging Cable,1,11.95,05/04/19 19:10,"489 Center St, Atlanta, GA 30301" -203409,Macbook Pro Laptop,1,1700,05/05/19 12:02,"734 8th St, Austin, TX 73301" -203410,Lightning Charging Cable,1,14.95,05/16/19 12:06,"37 Adams St, Los Angeles, CA 90001" -203411,ThinkPad Laptop,1,999.99,05/16/19 10:20,"616 Lincoln St, Atlanta, GA 30301" -203412,AA Batteries (4-pack),1,3.84,05/03/19 21:59,"812 Highland St, Atlanta, GA 30301" -203413,Wired Headphones,1,11.99,05/14/19 16:13,"371 Cedar St, Portland, OR 97035" -203414,AA Batteries (4-pack),3,3.84,05/02/19 20:07,"581 Jackson St, Dallas, TX 75001" -203415,AAA Batteries (4-pack),1,2.99,05/20/19 02:36,"961 South St, New York City, NY 10001" -203416,27in 4K Gaming Monitor,1,389.99,05/15/19 20:37,"804 Ridge St, Boston, MA 02215" -203417,USB-C Charging Cable,1,11.95,05/27/19 22:57,"749 8th St, San Francisco, CA 94016" -203418,Wired Headphones,1,11.99,05/08/19 19:47,"155 Sunset St, Portland, OR 97035" -203419,Wired Headphones,1,11.99,05/18/19 19:49,"682 Main St, Portland, OR 97035" -203420,USB-C Charging Cable,1,11.95,05/04/19 19:37,"227 Johnson St, New York City, NY 10001" -203421,Macbook Pro Laptop,1,1700,05/16/19 09:51,"184 7th St, Boston, MA 02215" -203422,iPhone,1,700,05/28/19 19:31,"381 10th St, Seattle, WA 98101" -203422,Lightning Charging Cable,1,14.95,05/28/19 19:31,"381 10th St, Seattle, WA 98101" -203423,AAA Batteries (4-pack),3,2.99,05/26/19 13:26,"152 Cherry St, Los Angeles, CA 90001" -203424,USB-C Charging Cable,1,11.95,05/18/19 15:29,"70 Hickory St, Dallas, TX 75001" -203425,AA Batteries (4-pack),1,3.84,05/03/19 22:04,"953 Elm St, New York City, NY 10001" -203426,Lightning Charging Cable,1,14.95,05/17/19 12:08,"841 Maple St, Atlanta, GA 30301" -203427,USB-C Charging Cable,2,11.95,05/14/19 10:54,"89 Madison St, Dallas, TX 75001" -203428,USB-C Charging Cable,1,11.95,05/20/19 17:45,"428 4th St, Los Angeles, CA 90001" -203429,Wired Headphones,1,11.99,05/01/19 11:00,"330 Meadow St, San Francisco, CA 94016" -203430,Wired Headphones,1,11.99,05/12/19 10:57,"618 8th St, Boston, MA 02215" -203431,AA Batteries (4-pack),1,3.84,05/25/19 19:39,"810 Walnut St, New York City, NY 10001" -203432,USB-C Charging Cable,1,11.95,05/10/19 18:19,"342 West St, San Francisco, CA 94016" -203433,AAA Batteries (4-pack),3,2.99,05/31/19 18:57,"436 5th St, Austin, TX 73301" -203434,AA Batteries (4-pack),1,3.84,05/21/19 09:55,"888 Highland St, Los Angeles, CA 90001" -203435,USB-C Charging Cable,1,11.95,05/23/19 23:25,"679 Hickory St, Los Angeles, CA 90001" -203436,AA Batteries (4-pack),1,3.84,05/15/19 08:03,"351 Main St, New York City, NY 10001" -203437,iPhone,1,700,05/01/19 18:21,"443 Lake St, San Francisco, CA 94016" -203437,Wired Headphones,1,11.99,05/01/19 18:21,"443 Lake St, San Francisco, CA 94016" -203438,20in Monitor,1,109.99,05/08/19 19:52,"718 Hill St, San Francisco, CA 94016" -203439,Wired Headphones,1,11.99,05/30/19 21:40,"66 Madison St, Dallas, TX 75001" -203440,iPhone,1,700,05/09/19 20:26,"24 Sunset St, Los Angeles, CA 90001" -203441,USB-C Charging Cable,1,11.95,05/20/19 14:38,"202 Center St, Atlanta, GA 30301" -203442,USB-C Charging Cable,1,11.95,05/06/19 21:24,"494 14th St, Dallas, TX 75001" -203443,Apple Airpods Headphones,1,150,05/11/19 18:49,"328 Meadow St, New York City, NY 10001" -203444,Bose SoundSport Headphones,2,99.99,05/29/19 22:11,"931 Jefferson St, Austin, TX 73301" -203445,Apple Airpods Headphones,1,150,05/05/19 18:15,"922 12th St, Portland, OR 97035" -203446,ThinkPad Laptop,1,999.99,05/17/19 09:40,"492 River St, New York City, NY 10001" -203447,Wired Headphones,1,11.99,05/25/19 13:13,"980 Meadow St, San Francisco, CA 94016" -203448,Bose SoundSport Headphones,1,99.99,05/27/19 12:36,"391 Lincoln St, Los Angeles, CA 90001" -203449,Apple Airpods Headphones,1,150,05/23/19 12:59,"277 Johnson St, Dallas, TX 75001" -203450,Apple Airpods Headphones,1,150,05/23/19 22:50,"256 North St, Los Angeles, CA 90001" -203450,Google Phone,1,600,05/23/19 22:50,"256 North St, Los Angeles, CA 90001" -203451,AA Batteries (4-pack),1,3.84,05/21/19 20:00,"124 Highland St, Dallas, TX 75001" -203452,Wired Headphones,1,11.99,05/31/19 10:33,"64 Willow St, Los Angeles, CA 90001" -203453,AAA Batteries (4-pack),2,2.99,05/09/19 17:42,"814 Meadow St, Seattle, WA 98101" -203454,Wired Headphones,4,11.99,05/25/19 10:06,"548 Ridge St, San Francisco, CA 94016" -203455,Apple Airpods Headphones,1,150,05/06/19 23:47,"347 14th St, Los Angeles, CA 90001" -203456,AAA Batteries (4-pack),1,2.99,05/13/19 16:30,"217 Dogwood St, Seattle, WA 98101" -203457,Wired Headphones,1,11.99,05/16/19 19:49,"204 Main St, Boston, MA 02215" -203458,AA Batteries (4-pack),1,3.84,05/23/19 06:50,"599 Lakeview St, New York City, NY 10001" -203459,AAA Batteries (4-pack),1,2.99,05/06/19 08:13,"418 11th St, Portland, OR 97035" -203460,AAA Batteries (4-pack),1,2.99,05/09/19 15:17,"748 10th St, San Francisco, CA 94016" -203461,Macbook Pro Laptop,1,1700,05/11/19 14:31,"999 Cherry St, Boston, MA 02215" -203462,Wired Headphones,1,11.99,05/27/19 12:29,"954 Adams St, Dallas, TX 75001" -203463,ThinkPad Laptop,1,999.99,05/08/19 16:33,"257 Elm St, Dallas, TX 75001" -203464,Wired Headphones,3,11.99,05/04/19 13:19,"165 13th St, New York City, NY 10001" -203465,Apple Airpods Headphones,1,150,05/25/19 14:43,"952 Walnut St, Los Angeles, CA 90001" -203466,AAA Batteries (4-pack),1,2.99,05/07/19 17:56,"876 Johnson St, Portland, OR 97035" -203467,Bose SoundSport Headphones,1,99.99,05/25/19 09:21,"892 Jefferson St, San Francisco, CA 94016" -203468,27in FHD Monitor,1,149.99,05/14/19 22:41,"416 5th St, Austin, TX 73301" -203469,iPhone,1,700,05/05/19 20:28,"52 Hill St, Atlanta, GA 30301" -203469,Lightning Charging Cable,1,14.95,05/05/19 20:28,"52 Hill St, Atlanta, GA 30301" -203470,34in Ultrawide Monitor,1,379.99,05/15/19 09:12,"110 Sunset St, Portland, OR 97035" -203471,Wired Headphones,1,11.99,05/12/19 19:47,"16 7th St, Dallas, TX 75001" -203471,AA Batteries (4-pack),1,3.84,05/12/19 19:47,"16 7th St, Dallas, TX 75001" -203472,AAA Batteries (4-pack),2,2.99,05/11/19 11:59,"479 7th St, Seattle, WA 98101" -203473,Wired Headphones,1,11.99,05/05/19 20:33,"726 Willow St, Los Angeles, CA 90001" -203474,Bose SoundSport Headphones,1,99.99,05/18/19 00:13,"48 2nd St, New York City, NY 10001" -203475,Apple Airpods Headphones,1,150,05/23/19 02:18,"389 Church St, Austin, TX 73301" -203476,Apple Airpods Headphones,1,150,05/14/19 14:34,"196 Cherry St, Los Angeles, CA 90001" -203477,34in Ultrawide Monitor,1,379.99,05/20/19 12:24,"704 Hickory St, Dallas, TX 75001" -203478,AAA Batteries (4-pack),2,2.99,05/15/19 09:19,"758 4th St, New York City, NY 10001" -203479,AA Batteries (4-pack),1,3.84,05/21/19 21:10,"312 6th St, New York City, NY 10001" -203480,Apple Airpods Headphones,1,150,05/29/19 22:58,"692 Cherry St, Los Angeles, CA 90001" -203481,ThinkPad Laptop,1,999.99,05/15/19 16:52,"964 Wilson St, Dallas, TX 75001" -203482,USB-C Charging Cable,1,11.95,05/24/19 08:42,"821 12th St, Boston, MA 02215" -203483,Wired Headphones,1,11.99,05/03/19 09:05,"750 Adams St, San Francisco, CA 94016" -203484,Flatscreen TV,1,300,05/17/19 11:03,"877 Elm St, Los Angeles, CA 90001" -203485,iPhone,1,700,05/10/19 09:59,"612 Wilson St, Boston, MA 02215" -203485,Lightning Charging Cable,1,14.95,05/10/19 09:59,"612 Wilson St, Boston, MA 02215" -203486,AA Batteries (4-pack),1,3.84,05/18/19 11:25,"160 Center St, New York City, NY 10001" -203487,Apple Airpods Headphones,1,150,05/30/19 18:21,"366 Sunset St, Austin, TX 73301" -203488,USB-C Charging Cable,1,11.95,05/07/19 08:29,"953 Meadow St, Seattle, WA 98101" -203489,AA Batteries (4-pack),1,3.84,05/11/19 17:27,"871 Cedar St, New York City, NY 10001" -203490,Apple Airpods Headphones,1,150,05/02/19 15:21,"171 Lincoln St, New York City, NY 10001" -203491,USB-C Charging Cable,1,11.95,05/11/19 14:27,"87 Spruce St, San Francisco, CA 94016" -203492,iPhone,1,700,05/12/19 07:45,"761 South St, Boston, MA 02215" -203493,Bose SoundSport Headphones,1,99.99,05/08/19 10:47,"568 Dogwood St, San Francisco, CA 94016" -203494,AA Batteries (4-pack),1,3.84,05/20/19 15:34,"366 Maple St, Dallas, TX 75001" -203495,Lightning Charging Cable,1,14.95,05/08/19 10:40,"237 Hill St, Atlanta, GA 30301" -203496,Apple Airpods Headphones,1,150,05/22/19 09:02,"653 Cedar St, New York City, NY 10001" -203497,USB-C Charging Cable,1,11.95,05/20/19 09:38,"583 Forest St, Austin, TX 73301" -203498,20in Monitor,1,109.99,05/09/19 09:13,"344 Lincoln St, San Francisco, CA 94016" -203499,USB-C Charging Cable,1,11.95,05/28/19 15:19,"207 Wilson St, Seattle, WA 98101" -203500,LG Washing Machine,1,600.0,05/25/19 19:12,"229 Washington St, San Francisco, CA 94016" -203501,AAA Batteries (4-pack),1,2.99,05/08/19 16:48,"642 Hill St, San Francisco, CA 94016" -203502,AA Batteries (4-pack),1,3.84,05/24/19 17:49,"601 Lake St, Seattle, WA 98101" -203503,AAA Batteries (4-pack),1,2.99,05/27/19 14:28,"511 Center St, Los Angeles, CA 90001" -203504,iPhone,1,700,05/16/19 22:53,"772 Adams St, San Francisco, CA 94016" -203505,Wired Headphones,2,11.99,05/26/19 18:39,"354 Cedar St, Seattle, WA 98101" -203506,USB-C Charging Cable,1,11.95,05/05/19 18:33,"144 Main St, Portland, OR 97035" -203507,USB-C Charging Cable,1,11.95,05/27/19 18:20,"894 10th St, San Francisco, CA 94016" -203508,USB-C Charging Cable,1,11.95,05/15/19 09:42,"586 1st St, Dallas, TX 75001" -203509,USB-C Charging Cable,1,11.95,05/21/19 14:04,"49 River St, Austin, TX 73301" -203510,AA Batteries (4-pack),1,3.84,05/11/19 16:15,"433 South St, Portland, OR 97035" -203511,iPhone,1,700,05/02/19 22:46,"553 Meadow St, Los Angeles, CA 90001" -203512,Wired Headphones,1,11.99,05/10/19 00:59,"122 Elm St, Los Angeles, CA 90001" -203513,34in Ultrawide Monitor,1,379.99,05/18/19 07:40,"239 Lake St, Seattle, WA 98101" -203514,34in Ultrawide Monitor,1,379.99,05/11/19 08:04,"281 Wilson St, Boston, MA 02215" -203515,Lightning Charging Cable,2,14.95,05/20/19 20:05,"59 Lake St, San Francisco, CA 94016" -203516,Flatscreen TV,1,300,05/24/19 18:24,"938 Johnson St, San Francisco, CA 94016" -203517,Lightning Charging Cable,1,14.95,05/17/19 08:07,"538 Maple St, Boston, MA 02215" -203518,Google Phone,1,600,05/08/19 17:54,"150 Sunset St, Seattle, WA 98101" -203518,Apple Airpods Headphones,1,150,05/08/19 17:54,"150 Sunset St, Seattle, WA 98101" -203519,20in Monitor,1,109.99,05/06/19 10:57,"154 Maple St, Los Angeles, CA 90001" -203520,Vareebadd Phone,1,400,05/24/19 10:05,"972 Madison St, San Francisco, CA 94016" -203521,Bose SoundSport Headphones,1,99.99,05/24/19 01:12,"295 Park St, Atlanta, GA 30301" -203522,Lightning Charging Cable,2,14.95,05/22/19 08:11,"303 13th St, Los Angeles, CA 90001" -203523,Google Phone,1,600,05/07/19 17:26,"577 Walnut St, Atlanta, GA 30301" -203524,Wired Headphones,1,11.99,05/20/19 09:54,"842 Jefferson St, New York City, NY 10001" -203525,Macbook Pro Laptop,1,1700,05/03/19 13:57,"848 North St, San Francisco, CA 94016" -203526,Apple Airpods Headphones,1,150,05/10/19 11:50,"397 Meadow St, Los Angeles, CA 90001" -203527,Macbook Pro Laptop,1,1700,05/06/19 11:33,"969 Johnson St, San Francisco, CA 94016" -203528,USB-C Charging Cable,2,11.95,05/28/19 13:13,"368 2nd St, Austin, TX 73301" -203529,20in Monitor,1,109.99,05/02/19 11:23,"431 Willow St, Los Angeles, CA 90001" -203530,27in FHD Monitor,1,149.99,05/15/19 20:11,"352 Lakeview St, San Francisco, CA 94016" -203531,USB-C Charging Cable,2,11.95,05/14/19 04:45,"946 Lincoln St, Dallas, TX 75001" -203532,AAA Batteries (4-pack),1,2.99,05/28/19 11:49,"208 Highland St, Dallas, TX 75001" -203533,AAA Batteries (4-pack),2,2.99,05/15/19 13:38,"602 Dogwood St, Dallas, TX 75001" -203534,AAA Batteries (4-pack),1,2.99,05/21/19 19:15,"670 1st St, San Francisco, CA 94016" -203535,27in FHD Monitor,1,149.99,05/10/19 12:44,"317 Park St, Dallas, TX 75001" -203536,Wired Headphones,1,11.99,05/31/19 00:15,"466 12th St, Seattle, WA 98101" -203537,Wired Headphones,1,11.99,05/12/19 13:35,"276 5th St, Boston, MA 02215" -203538,AAA Batteries (4-pack),1,2.99,05/09/19 12:11,"992 Church St, San Francisco, CA 94016" -203539,USB-C Charging Cable,1,11.95,05/17/19 09:07,"695 13th St, Atlanta, GA 30301" -203540,Apple Airpods Headphones,1,150,05/28/19 11:33,"428 Highland St, Dallas, TX 75001" -203541,27in 4K Gaming Monitor,1,389.99,05/04/19 23:54,"495 5th St, San Francisco, CA 94016" -203542,Lightning Charging Cable,2,14.95,05/19/19 22:19,"511 Center St, Atlanta, GA 30301" -203543,Macbook Pro Laptop,1,1700,05/22/19 19:09,"897 8th St, San Francisco, CA 94016" -203544,iPhone,1,700,05/07/19 02:03,"175 Wilson St, Atlanta, GA 30301" -203545,AA Batteries (4-pack),2,3.84,05/21/19 08:41,"16 7th St, San Francisco, CA 94016" -203546,AA Batteries (4-pack),1,3.84,05/31/19 19:14,"558 West St, Seattle, WA 98101" -203547,USB-C Charging Cable,1,11.95,05/24/19 14:07,"58 6th St, New York City, NY 10001" -203548,USB-C Charging Cable,1,11.95,05/17/19 17:43,"690 Sunset St, Dallas, TX 75001" -203549,Apple Airpods Headphones,1,150,05/29/19 09:04,"141 Center St, Los Angeles, CA 90001" -203550,AA Batteries (4-pack),1,3.84,05/02/19 11:32,"731 Jefferson St, New York City, NY 10001" -203551,Lightning Charging Cable,1,14.95,05/06/19 08:29,"171 Madison St, San Francisco, CA 94016" -203552,USB-C Charging Cable,1,11.95,05/11/19 20:20,"197 9th St, Boston, MA 02215" -203553,Lightning Charging Cable,1,14.95,05/28/19 13:28,"333 8th St, Boston, MA 02215" -203554,AAA Batteries (4-pack),1,2.99,05/10/19 19:31,"103 13th St, Boston, MA 02215" -203555,AAA Batteries (4-pack),1,2.99,05/06/19 18:18,"97 Madison St, Boston, MA 02215" -203556,Lightning Charging Cable,1,14.95,05/07/19 11:14,"316 Elm St, Dallas, TX 75001" -203557,Apple Airpods Headphones,1,150,05/31/19 17:16,"982 North St, Los Angeles, CA 90001" -203558,34in Ultrawide Monitor,1,379.99,05/01/19 18:49,"336 Adams St, San Francisco, CA 94016" -203559,Bose SoundSport Headphones,1,99.99,05/11/19 13:19,"827 Meadow St, New York City, NY 10001" -203560,AA Batteries (4-pack),1,3.84,05/22/19 22:19,"63 River St, Los Angeles, CA 90001" -203561,AA Batteries (4-pack),2,3.84,05/04/19 19:19,"560 Jackson St, Portland, OR 97035" -203562,iPhone,1,700,05/29/19 15:21,"196 9th St, Portland, OR 97035" -203563,AAA Batteries (4-pack),1,2.99,05/22/19 22:33,"191 Walnut St, San Francisco, CA 94016" -203564,AAA Batteries (4-pack),1,2.99,05/11/19 09:00,"90 Elm St, Boston, MA 02215" -203565,Lightning Charging Cable,1,14.95,05/04/19 09:35,"600 Cedar St, San Francisco, CA 94016" -203566,AAA Batteries (4-pack),1,2.99,05/16/19 18:13,"555 10th St, Dallas, TX 75001" -203567,Lightning Charging Cable,1,14.95,05/25/19 22:03,"800 South St, San Francisco, CA 94016" -203568,AAA Batteries (4-pack),2,2.99,05/20/19 19:44,"416 Park St, Los Angeles, CA 90001" -203569,Lightning Charging Cable,1,14.95,05/03/19 14:40,"240 7th St, San Francisco, CA 94016" -203570,AA Batteries (4-pack),1,3.84,05/06/19 18:48,"492 Adams St, Austin, TX 73301" -203571,USB-C Charging Cable,1,11.95,05/17/19 12:46,"751 Meadow St, Seattle, WA 98101" -203572,Wired Headphones,1,11.99,05/27/19 07:41,"284 7th St, San Francisco, CA 94016" -203573,27in FHD Monitor,1,149.99,05/05/19 08:17,"710 Adams St, Los Angeles, CA 90001" -203574,Apple Airpods Headphones,1,150,05/17/19 20:28,"681 Maple St, Atlanta, GA 30301" -203575,27in 4K Gaming Monitor,1,389.99,05/18/19 11:32,"962 Cherry St, New York City, NY 10001" -203576,Wired Headphones,1,11.99,05/03/19 09:04,"434 9th St, San Francisco, CA 94016" -203577,AAA Batteries (4-pack),1,2.99,05/06/19 19:13,"782 Washington St, Portland, OR 97035" -203578,Flatscreen TV,1,300,05/20/19 08:46,"525 Chestnut St, Los Angeles, CA 90001" -203579,AAA Batteries (4-pack),1,2.99,05/09/19 01:09,"733 Willow St, San Francisco, CA 94016" -203580,USB-C Charging Cable,2,11.95,05/07/19 13:51,"345 Cherry St, New York City, NY 10001" -203581,27in 4K Gaming Monitor,1,389.99,05/21/19 19:23,"500 Spruce St, Los Angeles, CA 90001" -203582,Vareebadd Phone,1,400,05/07/19 18:22,"669 Cedar St, Boston, MA 02215" -203582,USB-C Charging Cable,1,11.95,05/07/19 18:22,"669 Cedar St, Boston, MA 02215" -203583,Lightning Charging Cable,1,14.95,05/18/19 06:42,"840 Johnson St, Los Angeles, CA 90001" -203584,34in Ultrawide Monitor,1,379.99,05/30/19 19:39,"407 Church St, Austin, TX 73301" -203585,Wired Headphones,1,11.99,05/19/19 06:48,"551 14th St, Los Angeles, CA 90001" -203586,27in FHD Monitor,1,149.99,05/09/19 19:42,"817 Lincoln St, San Francisco, CA 94016" -203587,ThinkPad Laptop,1,999.99,05/08/19 20:45,"526 Lincoln St, Dallas, TX 75001" -203588,Apple Airpods Headphones,1,150,05/23/19 19:44,"370 Church St, San Francisco, CA 94016" -203589,27in FHD Monitor,1,149.99,05/31/19 20:37,"95 Hickory St, San Francisco, CA 94016" -203590,Lightning Charging Cable,1,14.95,05/11/19 10:17,"201 Maple St, Boston, MA 02215" -203591,iPhone,1,700,05/17/19 13:38,"332 Park St, Portland, OR 97035" -203591,Lightning Charging Cable,1,14.95,05/17/19 13:38,"332 Park St, Portland, OR 97035" -203592,Wired Headphones,1,11.99,05/13/19 15:28,"417 12th St, Seattle, WA 98101" -203593,AAA Batteries (4-pack),2,2.99,05/13/19 00:08,"321 Chestnut St, San Francisco, CA 94016" -203594,Wired Headphones,1,11.99,05/18/19 11:11,"971 Hill St, Austin, TX 73301" -203595,USB-C Charging Cable,2,11.95,05/08/19 15:21,"844 North St, San Francisco, CA 94016" -203596,USB-C Charging Cable,1,11.95,05/15/19 11:30,"311 Walnut St, San Francisco, CA 94016" -203597,AAA Batteries (4-pack),4,2.99,05/07/19 20:45,"453 Hickory St, Boston, MA 02215" -203597,USB-C Charging Cable,1,11.95,05/07/19 20:45,"453 Hickory St, Boston, MA 02215" -,,,,, -203598,27in FHD Monitor,1,149.99,05/15/19 10:06,"152 Center St, Dallas, TX 75001" -203599,Lightning Charging Cable,1,14.95,05/16/19 21:58,"448 Walnut St, Boston, MA 02215" -203600,USB-C Charging Cable,1,11.95,05/27/19 12:47,"830 Highland St, Seattle, WA 98101" -203601,Wired Headphones,1,11.99,05/01/19 13:36,"904 Adams St, Portland, OR 97035" -203602,Apple Airpods Headphones,1,150,05/26/19 01:30,"939 Sunset St, San Francisco, CA 94016" -203603,Flatscreen TV,1,300,05/20/19 20:32,"550 Jackson St, Los Angeles, CA 90001" -203604,34in Ultrawide Monitor,1,379.99,05/31/19 12:23,"979 Center St, Dallas, TX 75001" -203605,iPhone,1,700,05/20/19 17:58,"615 North St, Austin, TX 73301" -203606,Flatscreen TV,1,300,05/04/19 15:39,"20 10th St, Seattle, WA 98101" -203607,Wired Headphones,1,11.99,05/18/19 21:28,"519 Church St, Dallas, TX 75001" -203608,Wired Headphones,1,11.99,05/09/19 20:17,"195 13th St, Portland, OR 97035" -203608,Vareebadd Phone,1,400,05/09/19 20:17,"195 13th St, Portland, OR 97035" -203609,Wired Headphones,1,11.99,05/25/19 12:18,"891 Maple St, Los Angeles, CA 90001" -203610,AAA Batteries (4-pack),2,2.99,05/12/19 10:11,"326 West St, Austin, TX 73301" -203611,USB-C Charging Cable,1,11.95,05/14/19 06:38,"388 Meadow St, Los Angeles, CA 90001" -203612,USB-C Charging Cable,1,11.95,05/27/19 14:22,"276 7th St, Portland, ME 04101" -203613,Bose SoundSport Headphones,1,99.99,05/19/19 13:42,"131 13th St, New York City, NY 10001" -203614,iPhone,1,700,05/30/19 19:27,"405 14th St, Portland, OR 97035" -203614,Lightning Charging Cable,2,14.95,05/30/19 19:27,"405 14th St, Portland, OR 97035" -203614,Wired Headphones,1,11.99,05/30/19 19:27,"405 14th St, Portland, OR 97035" -203615,27in FHD Monitor,1,149.99,05/14/19 16:56,"10 Pine St, San Francisco, CA 94016" -203616,AAA Batteries (4-pack),3,2.99,05/25/19 06:11,"666 Madison St, Atlanta, GA 30301" -203617,Lightning Charging Cable,1,14.95,05/16/19 15:34,"509 Maple St, Los Angeles, CA 90001" -203618,USB-C Charging Cable,1,11.95,05/19/19 18:54,"281 Church St, San Francisco, CA 94016" -203619,Apple Airpods Headphones,1,150,05/28/19 12:54,"52 Sunset St, San Francisco, CA 94016" -203620,AAA Batteries (4-pack),1,2.99,05/11/19 19:44,"598 Dogwood St, Boston, MA 02215" -203621,USB-C Charging Cable,2,11.95,05/15/19 10:58,"187 South St, New York City, NY 10001" -203622,iPhone,1,700,05/17/19 17:55,"519 South St, San Francisco, CA 94016" -203623,AA Batteries (4-pack),1,3.84,05/08/19 20:56,"440 West St, Dallas, TX 75001" -203624,AAA Batteries (4-pack),1,2.99,05/03/19 15:42,"378 Main St, Seattle, WA 98101" -203625,AAA Batteries (4-pack),1,2.99,05/13/19 16:50,"848 Spruce St, Portland, OR 97035" -203626,27in 4K Gaming Monitor,1,389.99,05/14/19 14:57,"883 2nd St, Seattle, WA 98101" -203627,34in Ultrawide Monitor,1,379.99,05/29/19 00:18,"189 South St, Dallas, TX 75001" -203628,Lightning Charging Cable,2,14.95,05/30/19 22:04,"748 Lake St, San Francisco, CA 94016" -203629,Bose SoundSport Headphones,1,99.99,05/16/19 18:42,"268 5th St, Los Angeles, CA 90001" -203630,34in Ultrawide Monitor,1,379.99,05/07/19 20:30,"649 Johnson St, San Francisco, CA 94016" -203631,27in 4K Gaming Monitor,1,389.99,05/05/19 08:07,"352 Highland St, Boston, MA 02215" -203632,USB-C Charging Cable,1,11.95,05/27/19 21:16,"764 Adams St, Austin, TX 73301" -203633,27in FHD Monitor,1,149.99,05/16/19 13:16,"561 Cherry St, Atlanta, GA 30301" -203634,Wired Headphones,1,11.99,05/26/19 17:46,"911 Pine St, New York City, NY 10001" -203635,Bose SoundSport Headphones,1,99.99,05/08/19 14:28,"710 13th St, Seattle, WA 98101" -203636,AAA Batteries (4-pack),2,2.99,05/05/19 18:33,"996 Jefferson St, New York City, NY 10001" -203637,ThinkPad Laptop,1,999.99,05/18/19 21:38,"669 6th St, San Francisco, CA 94016" -203638,AAA Batteries (4-pack),1,2.99,05/22/19 14:29,"384 Chestnut St, Dallas, TX 75001" -203639,Bose SoundSport Headphones,1,99.99,05/29/19 13:40,"1 Lincoln St, Portland, ME 04101" -203640,AAA Batteries (4-pack),1,2.99,05/25/19 21:11,"324 Wilson St, Boston, MA 02215" -203641,Lightning Charging Cable,2,14.95,05/25/19 01:02,"316 Meadow St, New York City, NY 10001" -203642,AA Batteries (4-pack),1,3.84,05/16/19 14:59,"953 12th St, Los Angeles, CA 90001" -203643,AA Batteries (4-pack),1,3.84,05/13/19 19:55,"241 14th St, New York City, NY 10001" -203644,AA Batteries (4-pack),1,3.84,05/30/19 10:23,"964 Elm St, Portland, ME 04101" -203645,AA Batteries (4-pack),1,3.84,05/13/19 21:56,"936 Lakeview St, Austin, TX 73301" -203646,Flatscreen TV,1,300,05/02/19 15:51,"47 Meadow St, Austin, TX 73301" -203647,USB-C Charging Cable,1,11.95,05/09/19 01:00,"763 4th St, Atlanta, GA 30301" -203648,27in 4K Gaming Monitor,1,389.99,05/11/19 21:52,"121 Forest St, Atlanta, GA 30301" -203649,Wired Headphones,1,11.99,05/01/19 12:17,"733 Ridge St, Atlanta, GA 30301" -203650,Apple Airpods Headphones,1,150,05/30/19 18:19,"573 12th St, Dallas, TX 75001" -203651,Google Phone,1,600,05/14/19 01:30,"334 Hickory St, San Francisco, CA 94016" -,,,,, -203652,Apple Airpods Headphones,1,150,05/14/19 13:41,"671 Willow St, Seattle, WA 98101" -203653,27in 4K Gaming Monitor,1,389.99,05/22/19 08:40,"93 11th St, Boston, MA 02215" -203654,27in FHD Monitor,1,149.99,05/22/19 22:09,"578 9th St, Atlanta, GA 30301" -203655,Apple Airpods Headphones,1,150,05/21/19 08:47,"104 1st St, Dallas, TX 75001" -203656,ThinkPad Laptop,1,999.99,05/08/19 09:01,"704 Lakeview St, Los Angeles, CA 90001" -203657,Bose SoundSport Headphones,1,99.99,05/07/19 09:00,"520 Madison St, Austin, TX 73301" -203658,Wired Headphones,1,11.99,05/14/19 20:57,"912 Madison St, New York City, NY 10001" -203659,Lightning Charging Cable,2,14.95,05/07/19 17:58,"399 Church St, Los Angeles, CA 90001" -203660,AA Batteries (4-pack),1,3.84,05/01/19 07:27,"975 North St, San Francisco, CA 94016" -203661,Bose SoundSport Headphones,1,99.99,05/18/19 09:47,"95 11th St, Seattle, WA 98101" -203662,Apple Airpods Headphones,1,150,05/02/19 09:32,"761 Lincoln St, Boston, MA 02215" -203663,AA Batteries (4-pack),1,3.84,05/23/19 17:48,"919 Church St, San Francisco, CA 94016" -203664,Apple Airpods Headphones,1,150,05/14/19 15:20,"23 Jefferson St, San Francisco, CA 94016" -203665,USB-C Charging Cable,1,11.95,05/05/19 15:35,"807 Madison St, New York City, NY 10001" -203666,USB-C Charging Cable,1,11.95,05/24/19 17:41,"642 Dogwood St, Atlanta, GA 30301" -203667,Apple Airpods Headphones,1,150,05/30/19 07:42,"267 Hill St, Boston, MA 02215" -203668,AAA Batteries (4-pack),2,2.99,05/11/19 22:30,"293 West St, Boston, MA 02215" -203669,AA Batteries (4-pack),1,3.84,05/28/19 17:39,"56 Hickory St, Austin, TX 73301" -203670,Macbook Pro Laptop,1,1700,05/13/19 20:09,"909 Park St, San Francisco, CA 94016" -203671,AA Batteries (4-pack),2,3.84,05/20/19 18:16,"466 River St, Seattle, WA 98101" -203672,ThinkPad Laptop,1,999.99,05/25/19 16:37,"212 Jackson St, Portland, OR 97035" -203673,Wired Headphones,1,11.99,05/01/19 17:18,"614 14th St, New York City, NY 10001" -203674,USB-C Charging Cable,1,11.95,05/31/19 02:41,"937 Wilson St, San Francisco, CA 94016" -203675,AAA Batteries (4-pack),3,2.99,05/09/19 12:47,"964 8th St, Dallas, TX 75001" -203676,Vareebadd Phone,1,400,05/20/19 21:42,"234 Jefferson St, Boston, MA 02215" -203676,USB-C Charging Cable,1,11.95,05/20/19 21:42,"234 Jefferson St, Boston, MA 02215" -203677,iPhone,1,700,05/08/19 11:10,"598 Lincoln St, Austin, TX 73301" -203678,Apple Airpods Headphones,1,150,05/05/19 00:15,"495 Highland St, Los Angeles, CA 90001" -203679,Flatscreen TV,1,300,05/19/19 23:30,"230 10th St, Dallas, TX 75001" -203680,USB-C Charging Cable,2,11.95,05/16/19 06:57,"577 Lincoln St, Boston, MA 02215" -203681,iPhone,1,700,05/11/19 11:00,"718 14th St, Boston, MA 02215" -203682,Lightning Charging Cable,1,14.95,05/14/19 09:01,"967 Lakeview St, San Francisco, CA 94016" -203683,34in Ultrawide Monitor,1,379.99,05/29/19 13:17,"1 Lake St, Boston, MA 02215" -203684,Apple Airpods Headphones,1,150,05/27/19 20:04,"56 Lincoln St, Austin, TX 73301" -203685,27in 4K Gaming Monitor,1,389.99,05/24/19 21:01,"317 10th St, San Francisco, CA 94016" -203686,Lightning Charging Cable,1,14.95,05/25/19 20:32,"430 12th St, San Francisco, CA 94016" -203687,Bose SoundSport Headphones,1,99.99,05/03/19 20:01,"660 14th St, Los Angeles, CA 90001" -203688,Google Phone,1,600,05/06/19 15:27,"196 Lake St, Los Angeles, CA 90001" -203689,Wired Headphones,1,11.99,05/07/19 19:38,"727 1st St, Los Angeles, CA 90001" -203690,USB-C Charging Cable,2,11.95,05/25/19 09:14,"605 Meadow St, Los Angeles, CA 90001" -203691,Bose SoundSport Headphones,1,99.99,05/15/19 09:14,"44 Johnson St, Portland, OR 97035" -203692,Flatscreen TV,1,300,05/02/19 14:13,"745 Cherry St, Austin, TX 73301" -203693,Lightning Charging Cable,2,14.95,05/19/19 15:58,"791 12th St, Atlanta, GA 30301" -203694,USB-C Charging Cable,2,11.95,05/29/19 14:28,"410 7th St, Los Angeles, CA 90001" -203695,Wired Headphones,1,11.99,05/22/19 14:34,"978 12th St, Atlanta, GA 30301" -203696,Lightning Charging Cable,1,14.95,05/03/19 12:28,"747 Hill St, Los Angeles, CA 90001" -203697,Wired Headphones,1,11.99,05/04/19 18:21,"985 11th St, San Francisco, CA 94016" -203698,USB-C Charging Cable,1,11.95,05/18/19 10:15,"345 Spruce St, Dallas, TX 75001" -203699,ThinkPad Laptop,1,999.99,05/15/19 17:37,"334 Wilson St, San Francisco, CA 94016" -203700,Flatscreen TV,1,300,05/10/19 20:15,"460 9th St, Los Angeles, CA 90001" -203701,USB-C Charging Cable,2,11.95,05/11/19 21:31,"366 Ridge St, San Francisco, CA 94016" -203702,27in 4K Gaming Monitor,1,389.99,05/09/19 22:01,"86 Chestnut St, Dallas, TX 75001" -203703,USB-C Charging Cable,2,11.95,05/07/19 01:21,"189 Jackson St, San Francisco, CA 94016" -203704,AA Batteries (4-pack),1,3.84,05/01/19 19:04,"90 Cedar St, New York City, NY 10001" -203705,Lightning Charging Cable,1,14.95,05/12/19 09:39,"534 Dogwood St, San Francisco, CA 94016" -203706,27in 4K Gaming Monitor,1,389.99,05/16/19 16:26,"993 10th St, San Francisco, CA 94016" -203707,Lightning Charging Cable,1,14.95,05/23/19 20:52,"352 4th St, San Francisco, CA 94016" -203708,Lightning Charging Cable,1,14.95,05/11/19 00:13,"86 5th St, San Francisco, CA 94016" -203709,AA Batteries (4-pack),1,3.84,05/19/19 20:47,"115 Madison St, Dallas, TX 75001" -203710,34in Ultrawide Monitor,1,379.99,05/19/19 15:14,"849 Main St, Boston, MA 02215" -203711,AA Batteries (4-pack),1,3.84,05/24/19 02:11,"479 14th St, San Francisco, CA 94016" -203712,Lightning Charging Cable,1,14.95,05/03/19 14:37,"17 5th St, Boston, MA 02215" -203713,USB-C Charging Cable,1,11.95,05/29/19 10:49,"648 Forest St, Los Angeles, CA 90001" -203714,USB-C Charging Cable,1,11.95,05/10/19 17:01,"388 Wilson St, Seattle, WA 98101" -203715,Lightning Charging Cable,1,14.95,05/04/19 18:44,"230 9th St, New York City, NY 10001" -203716,USB-C Charging Cable,2,11.95,05/03/19 11:04,"88 1st St, Portland, OR 97035" -203717,Flatscreen TV,1,300,05/13/19 12:33,"865 10th St, Los Angeles, CA 90001" -203718,Bose SoundSport Headphones,1,99.99,05/05/19 22:00,"196 10th St, Portland, ME 04101" -203719,Apple Airpods Headphones,1,150,05/03/19 11:10,"992 Cedar St, New York City, NY 10001" -203720,Wired Headphones,1,11.99,05/14/19 09:47,"562 8th St, Dallas, TX 75001" -203721,AAA Batteries (4-pack),1,2.99,05/30/19 19:57,"617 Wilson St, San Francisco, CA 94016" -203722,USB-C Charging Cable,1,11.95,05/17/19 23:54,"384 Cherry St, Boston, MA 02215" -203723,AAA Batteries (4-pack),1,2.99,05/12/19 19:32,"617 Park St, Los Angeles, CA 90001" -203724,AA Batteries (4-pack),1,3.84,05/20/19 01:26,"150 5th St, New York City, NY 10001" -203725,34in Ultrawide Monitor,1,379.99,05/20/19 23:12,"609 Johnson St, Los Angeles, CA 90001" -203726,Bose SoundSport Headphones,1,99.99,05/23/19 17:33,"808 Center St, Portland, OR 97035" -203727,AAA Batteries (4-pack),1,2.99,05/29/19 18:42,"368 12th St, Atlanta, GA 30301" -203728,20in Monitor,1,109.99,05/09/19 11:42,"914 12th St, San Francisco, CA 94016" -203729,Bose SoundSport Headphones,1,99.99,05/30/19 21:47,"909 Elm St, Seattle, WA 98101" -203730,USB-C Charging Cable,2,11.95,05/12/19 10:29,"608 Madison St, Dallas, TX 75001" -203731,USB-C Charging Cable,1,11.95,05/27/19 20:29,"487 4th St, Portland, ME 04101" -203732,27in FHD Monitor,1,149.99,05/22/19 11:36,"148 14th St, San Francisco, CA 94016" -203733,27in FHD Monitor,1,149.99,05/06/19 12:52,"293 Cherry St, Boston, MA 02215" -203734,Wired Headphones,1,11.99,05/13/19 17:05,"404 Madison St, New York City, NY 10001" -203735,USB-C Charging Cable,1,11.95,05/17/19 06:06,"9 Sunset St, Austin, TX 73301" -203736,USB-C Charging Cable,2,11.95,05/12/19 20:48,"879 North St, Boston, MA 02215" -203736,AAA Batteries (4-pack),1,2.99,05/12/19 20:48,"879 North St, Boston, MA 02215" -203737,Apple Airpods Headphones,1,150,05/23/19 14:28,"426 8th St, Los Angeles, CA 90001" -203738,AA Batteries (4-pack),1,3.84,05/03/19 21:27,"180 Johnson St, San Francisco, CA 94016" -203739,Apple Airpods Headphones,1,150,05/12/19 15:27,"834 Hickory St, San Francisco, CA 94016" -203740,USB-C Charging Cable,1,11.95,05/27/19 12:13,"853 Spruce St, Los Angeles, CA 90001" -203741,iPhone,1,700,05/06/19 18:20,"217 Pine St, New York City, NY 10001" -203741,Wired Headphones,1,11.99,05/06/19 18:20,"217 Pine St, New York City, NY 10001" -203742,Bose SoundSport Headphones,1,99.99,05/27/19 17:57,"325 Willow St, Portland, OR 97035" -203743,Lightning Charging Cable,1,14.95,05/31/19 18:40,"918 Spruce St, Boston, MA 02215" -203744,Apple Airpods Headphones,1,150,05/21/19 21:25,"988 6th St, San Francisco, CA 94016" -203745,USB-C Charging Cable,1,11.95,05/27/19 14:04,"389 North St, Los Angeles, CA 90001" -203746,27in FHD Monitor,1,149.99,05/30/19 19:08,"755 Hill St, Seattle, WA 98101" -203747,iPhone,1,700,05/20/19 12:02,"926 Washington St, San Francisco, CA 94016" -203748,AAA Batteries (4-pack),2,2.99,05/22/19 19:42,"238 Meadow St, Portland, OR 97035" -203749,Flatscreen TV,1,300,05/15/19 01:40,"747 14th St, San Francisco, CA 94016" -203750,Wired Headphones,1,11.99,05/02/19 12:18,"859 Adams St, Atlanta, GA 30301" -203751,Lightning Charging Cable,1,14.95,05/06/19 17:32,"717 Hill St, Dallas, TX 75001" -203752,Flatscreen TV,1,300,05/21/19 08:09,"269 Adams St, Los Angeles, CA 90001" -203753,34in Ultrawide Monitor,1,379.99,05/08/19 08:46,"779 Pine St, San Francisco, CA 94016" -203754,27in FHD Monitor,1,149.99,05/05/19 20:57,"121 Hickory St, Los Angeles, CA 90001" -203755,AAA Batteries (4-pack),4,2.99,05/05/19 14:31,"854 Willow St, New York City, NY 10001" -203756,Wired Headphones,1,11.99,05/31/19 21:52,"976 Center St, Los Angeles, CA 90001" -203757,34in Ultrawide Monitor,1,379.99,05/18/19 08:39,"343 4th St, San Francisco, CA 94016" -203758,Macbook Pro Laptop,1,1700,05/08/19 19:14,"358 1st St, Seattle, WA 98101" -203759,27in 4K Gaming Monitor,1,389.99,05/23/19 14:49,"156 Chestnut St, Los Angeles, CA 90001" -203760,AAA Batteries (4-pack),1,2.99,05/09/19 17:20,"193 1st St, New York City, NY 10001" -203761,27in 4K Gaming Monitor,1,389.99,05/30/19 14:13,"223 Johnson St, Los Angeles, CA 90001" -203762,Google Phone,1,600,05/08/19 15:37,"235 14th St, Los Angeles, CA 90001" -203763,USB-C Charging Cable,1,11.95,06/01/19 01:40,"857 Church St, San Francisco, CA 94016" -203764,AAA Batteries (4-pack),1,2.99,05/08/19 14:31,"567 Lake St, Boston, MA 02215" -203765,Flatscreen TV,1,300,05/14/19 20:16,"52 Main St, Boston, MA 02215" -203766,AAA Batteries (4-pack),1,2.99,05/06/19 16:11,"284 Hickory St, Portland, OR 97035" -203767,Wired Headphones,2,11.99,05/31/19 17:03,"170 13th St, Boston, MA 02215" -203768,Lightning Charging Cable,1,14.95,05/06/19 09:38,"217 Elm St, Boston, MA 02215" -203769,AAA Batteries (4-pack),1,2.99,05/14/19 21:31,"690 11th St, Boston, MA 02215" -203770,AAA Batteries (4-pack),1,2.99,05/22/19 09:12,"883 Walnut St, San Francisco, CA 94016" -203771,Google Phone,1,600,05/22/19 11:41,"776 Main St, Atlanta, GA 30301" -203771,USB-C Charging Cable,1,11.95,05/22/19 11:41,"776 Main St, Atlanta, GA 30301" -203772,Bose SoundSport Headphones,1,99.99,05/02/19 21:21,"954 12th St, Dallas, TX 75001" -203773,USB-C Charging Cable,1,11.95,05/24/19 20:03,"653 Maple St, Los Angeles, CA 90001" -203774,Lightning Charging Cable,1,14.95,05/14/19 23:11,"62 6th St, Atlanta, GA 30301" -203775,Bose SoundSport Headphones,1,99.99,05/21/19 22:01,"520 Elm St, San Francisco, CA 94016" -203776,Apple Airpods Headphones,1,150,05/12/19 20:36,"521 Wilson St, Los Angeles, CA 90001" -203777,AA Batteries (4-pack),1,3.84,05/12/19 15:57,"90 Lake St, Los Angeles, CA 90001" -203778,AA Batteries (4-pack),1,3.84,05/15/19 14:54,"778 Wilson St, New York City, NY 10001" -203779,AAA Batteries (4-pack),1,2.99,05/31/19 06:50,"489 Lincoln St, Seattle, WA 98101" -203780,Apple Airpods Headphones,1,150,05/18/19 14:40,"677 Maple St, Seattle, WA 98101" -203781,Lightning Charging Cable,1,14.95,05/11/19 11:08,"738 Main St, Austin, TX 73301" -203782,Apple Airpods Headphones,1,150,05/13/19 01:18,"340 11th St, San Francisco, CA 94016" -203783,Apple Airpods Headphones,2,150,05/17/19 08:01,"481 Lakeview St, New York City, NY 10001" -203784,20in Monitor,1,109.99,05/20/19 19:55,"213 Spruce St, San Francisco, CA 94016" -203785,Macbook Pro Laptop,1,1700,05/31/19 09:11,"768 Johnson St, Los Angeles, CA 90001" -203786,Wired Headphones,1,11.99,05/10/19 13:22,"115 Willow St, Los Angeles, CA 90001" -203787,AA Batteries (4-pack),1,3.84,05/03/19 20:14,"820 6th St, Atlanta, GA 30301" -203788,USB-C Charging Cable,1,11.95,05/10/19 12:12,"386 12th St, New York City, NY 10001" -203789,Wired Headphones,1,11.99,05/14/19 14:26,"298 Willow St, New York City, NY 10001" -203790,Wired Headphones,1,11.99,05/26/19 18:59,"600 Chestnut St, Atlanta, GA 30301" -203791,AA Batteries (4-pack),1,3.84,05/23/19 22:59,"565 Park St, Seattle, WA 98101" -203792,Apple Airpods Headphones,1,150,05/01/19 20:27,"596 Lake St, San Francisco, CA 94016" -203793,34in Ultrawide Monitor,1,379.99,05/19/19 09:57,"47 Park St, Atlanta, GA 30301" -203794,Bose SoundSport Headphones,1,99.99,05/25/19 13:32,"145 Sunset St, Dallas, TX 75001" -203795,USB-C Charging Cable,1,11.95,05/30/19 19:19,"638 Washington St, San Francisco, CA 94016" -203796,AAA Batteries (4-pack),2,2.99,05/01/19 20:00,"714 Hill St, Los Angeles, CA 90001" -203797,Google Phone,1,600,05/28/19 14:52,"338 9th St, New York City, NY 10001" -203798,iPhone,1,700,05/04/19 10:48,"212 Hill St, Seattle, WA 98101" -203799,27in 4K Gaming Monitor,1,389.99,05/24/19 21:37,"632 Sunset St, Dallas, TX 75001" -203800,Lightning Charging Cable,1,14.95,05/31/19 15:57,"192 Lake St, Atlanta, GA 30301" -203801,27in 4K Gaming Monitor,1,389.99,05/05/19 11:29,"28 Main St, San Francisco, CA 94016" -203802,Lightning Charging Cable,1,14.95,05/20/19 18:46,"932 Walnut St, San Francisco, CA 94016" -203803,Lightning Charging Cable,1,14.95,05/30/19 22:20,"888 Washington St, Atlanta, GA 30301" -203804,Apple Airpods Headphones,1,150,05/26/19 15:10,"12 Lake St, Los Angeles, CA 90001" -203805,USB-C Charging Cable,3,11.95,05/26/19 18:33,"792 Pine St, Dallas, TX 75001" -203806,USB-C Charging Cable,1,11.95,05/04/19 16:06,"335 Center St, San Francisco, CA 94016" -203807,USB-C Charging Cable,1,11.95,05/18/19 05:31,"505 Park St, San Francisco, CA 94016" -203808,Flatscreen TV,1,300,05/20/19 09:42,"777 Pine St, Seattle, WA 98101" -203809,USB-C Charging Cable,1,11.95,05/17/19 06:34,"1 Main St, New York City, NY 10001" -203810,Bose SoundSport Headphones,1,99.99,05/18/19 12:58,"392 Church St, Portland, OR 97035" -203811,USB-C Charging Cable,1,11.95,05/13/19 20:00,"502 Lakeview St, Atlanta, GA 30301" -203812,27in 4K Gaming Monitor,1,389.99,05/21/19 07:08,"647 South St, Boston, MA 02215" -203813,AA Batteries (4-pack),1,3.84,05/28/19 15:14,"349 Highland St, Los Angeles, CA 90001" -203814,USB-C Charging Cable,2,11.95,05/25/19 16:35,"229 Madison St, San Francisco, CA 94016" -203815,AAA Batteries (4-pack),1,2.99,05/30/19 18:35,"103 Wilson St, Atlanta, GA 30301" -203816,Flatscreen TV,1,300,05/10/19 22:24,"315 Johnson St, San Francisco, CA 94016" -203817,Bose SoundSport Headphones,1,99.99,05/01/19 22:37,"864 11th St, San Francisco, CA 94016" -203818,USB-C Charging Cable,1,11.95,05/04/19 12:06,"540 Highland St, Los Angeles, CA 90001" -203819,Apple Airpods Headphones,1,150,05/15/19 16:32,"763 Cherry St, Austin, TX 73301" -203820,Macbook Pro Laptop,1,1700,05/14/19 18:14,"56 13th St, San Francisco, CA 94016" -203821,34in Ultrawide Monitor,1,379.99,05/19/19 00:21,"914 Main St, Dallas, TX 75001" -,,,,, -203822,AAA Batteries (4-pack),1,2.99,05/02/19 12:53,"159 8th St, Boston, MA 02215" -203823,Apple Airpods Headphones,1,150,05/08/19 21:29,"77 Center St, Los Angeles, CA 90001" -203824,34in Ultrawide Monitor,1,379.99,05/23/19 04:49,"694 Willow St, San Francisco, CA 94016" -203825,AA Batteries (4-pack),2,3.84,05/22/19 21:13,"817 8th St, Atlanta, GA 30301" -203826,USB-C Charging Cable,1,11.95,05/13/19 20:59,"439 Maple St, Los Angeles, CA 90001" -203827,Flatscreen TV,1,300,05/22/19 11:53,"252 Church St, Los Angeles, CA 90001" -203828,iPhone,1,700,05/19/19 17:21,"491 Hill St, San Francisco, CA 94016" -203829,Macbook Pro Laptop,1,1700,05/26/19 09:06,"243 Walnut St, New York City, NY 10001" -203830,iPhone,1,700,05/08/19 20:20,"143 Lakeview St, Portland, OR 97035" -203831,20in Monitor,1,109.99,05/01/19 10:53,"304 Jackson St, Los Angeles, CA 90001" -203832,Macbook Pro Laptop,1,1700,05/11/19 13:17,"70 Lakeview St, Seattle, WA 98101" -203833,34in Ultrawide Monitor,1,379.99,05/28/19 11:08,"174 Cedar St, Portland, OR 97035" -203834,34in Ultrawide Monitor,1,379.99,05/03/19 21:20,"165 Jackson St, San Francisco, CA 94016" -203835,Lightning Charging Cable,1,14.95,05/04/19 10:49,"220 Wilson St, Atlanta, GA 30301" -203836,Apple Airpods Headphones,1,150,05/10/19 07:49,"947 Walnut St, Boston, MA 02215" -203837,27in FHD Monitor,1,149.99,05/30/19 20:33,"366 Willow St, New York City, NY 10001" -203838,Macbook Pro Laptop,1,1700,05/06/19 16:16,"859 Jefferson St, San Francisco, CA 94016" -203839,Lightning Charging Cable,1,14.95,05/31/19 21:49,"84 8th St, New York City, NY 10001" -203840,USB-C Charging Cable,1,11.95,05/25/19 20:45,"442 North St, Los Angeles, CA 90001" -203841,USB-C Charging Cable,1,11.95,05/02/19 23:37,"431 South St, San Francisco, CA 94016" -203842,AA Batteries (4-pack),1,3.84,05/25/19 22:56,"161 Lincoln St, Atlanta, GA 30301" -203843,Wired Headphones,1,11.99,05/02/19 09:07,"941 1st St, New York City, NY 10001" -203844,AAA Batteries (4-pack),1,2.99,05/17/19 10:46,"467 River St, Dallas, TX 75001" -203845,Lightning Charging Cable,1,14.95,05/29/19 11:12,"56 Spruce St, Los Angeles, CA 90001" -203846,Lightning Charging Cable,1,14.95,05/23/19 05:09,"446 Church St, Seattle, WA 98101" -203847,20in Monitor,1,109.99,05/10/19 13:46,"471 Park St, Los Angeles, CA 90001" -203848,27in 4K Gaming Monitor,1,389.99,05/15/19 09:10,"511 South St, San Francisco, CA 94016" -203849,34in Ultrawide Monitor,1,379.99,05/31/19 08:00,"213 West St, San Francisco, CA 94016" -203850,AAA Batteries (4-pack),1,2.99,05/18/19 17:17,"54 Adams St, Dallas, TX 75001" -203850,AAA Batteries (4-pack),1,2.99,05/18/19 17:17,"54 Adams St, Dallas, TX 75001" -203851,USB-C Charging Cable,1,11.95,05/23/19 11:04,"406 Dogwood St, Atlanta, GA 30301" -203852,Flatscreen TV,1,300,05/20/19 17:00,"314 Walnut St, Atlanta, GA 30301" -203853,AA Batteries (4-pack),1,3.84,05/22/19 15:05,"647 Walnut St, San Francisco, CA 94016" -203854,27in FHD Monitor,1,149.99,05/12/19 21:27,"432 Adams St, Seattle, WA 98101" -203855,USB-C Charging Cable,1,11.95,05/04/19 19:37,"198 10th St, Portland, OR 97035" -203856,AAA Batteries (4-pack),2,2.99,05/19/19 15:44,"22 North St, Dallas, TX 75001" -203857,Apple Airpods Headphones,1,150,05/13/19 15:21,"140 10th St, San Francisco, CA 94016" -203858,Flatscreen TV,1,300,05/21/19 19:22,"992 Main St, Los Angeles, CA 90001" -203859,Lightning Charging Cable,1,14.95,05/30/19 14:58,"586 Maple St, San Francisco, CA 94016" -203860,27in FHD Monitor,1,149.99,05/28/19 12:53,"599 5th St, Boston, MA 02215" -203861,Lightning Charging Cable,1,14.95,05/16/19 19:18,"916 Chestnut St, Austin, TX 73301" -203862,AA Batteries (4-pack),1,3.84,05/01/19 15:08,"798 Dogwood St, Los Angeles, CA 90001" -203862,USB-C Charging Cable,1,11.95,05/01/19 15:08,"798 Dogwood St, Los Angeles, CA 90001" -203863,Lightning Charging Cable,1,14.95,05/28/19 21:26,"893 2nd St, San Francisco, CA 94016" -203864,34in Ultrawide Monitor,1,379.99,05/13/19 16:30,"626 Johnson St, Austin, TX 73301" -203865,27in 4K Gaming Monitor,1,389.99,05/04/19 20:08,"257 7th St, San Francisco, CA 94016" -203866,Apple Airpods Headphones,1,150,05/11/19 09:44,"914 1st St, Austin, TX 73301" -203867,AA Batteries (4-pack),1,3.84,05/26/19 12:03,"236 Jefferson St, San Francisco, CA 94016" -203868,USB-C Charging Cable,1,11.95,05/12/19 16:58,"998 Cherry St, Los Angeles, CA 90001" -203869,Bose SoundSport Headphones,1,99.99,05/08/19 23:47,"801 7th St, San Francisco, CA 94016" -203870,Wired Headphones,1,11.99,05/31/19 14:58,"803 River St, San Francisco, CA 94016" -203871,Apple Airpods Headphones,1,150,05/16/19 19:26,"456 Dogwood St, Portland, OR 97035" -203872,Google Phone,1,600,05/13/19 11:03,"242 13th St, Portland, OR 97035" -203872,USB-C Charging Cable,1,11.95,05/13/19 11:03,"242 13th St, Portland, OR 97035" -203873,Lightning Charging Cable,1,14.95,05/18/19 13:51,"674 River St, Portland, ME 04101" -203874,AAA Batteries (4-pack),2,2.99,05/31/19 08:37,"177 Lakeview St, Atlanta, GA 30301" -203875,Lightning Charging Cable,1,14.95,05/27/19 17:22,"405 Meadow St, Austin, TX 73301" -203876,Apple Airpods Headphones,1,150,05/30/19 13:37,"221 10th St, New York City, NY 10001" -203877,USB-C Charging Cable,1,11.95,05/21/19 14:39,"512 8th St, Boston, MA 02215" -203878,Lightning Charging Cable,1,14.95,05/08/19 18:37,"476 River St, San Francisco, CA 94016" -203879,ThinkPad Laptop,1,999.99,05/06/19 18:48,"908 Sunset St, Dallas, TX 75001" -203880,Lightning Charging Cable,1,14.95,05/06/19 07:46,"607 13th St, New York City, NY 10001" -203881,AA Batteries (4-pack),1,3.84,05/20/19 17:58,"309 Wilson St, Austin, TX 73301" -203882,Wired Headphones,1,11.99,05/04/19 12:12,"504 5th St, San Francisco, CA 94016" -203883,27in 4K Gaming Monitor,1,389.99,05/20/19 13:39,"483 Spruce St, Seattle, WA 98101" -203884,Lightning Charging Cable,1,14.95,05/29/19 13:15,"197 Chestnut St, New York City, NY 10001" -203885,Apple Airpods Headphones,1,150,05/14/19 14:29,"984 Dogwood St, San Francisco, CA 94016" -203886,AAA Batteries (4-pack),1,2.99,05/16/19 19:23,"372 Center St, Austin, TX 73301" -203887,Bose SoundSport Headphones,1,99.99,05/17/19 22:50,"27 Center St, San Francisco, CA 94016" -203888,Lightning Charging Cable,1,14.95,05/07/19 12:27,"938 Willow St, New York City, NY 10001" -203889,Lightning Charging Cable,1,14.95,05/15/19 23:15,"317 Main St, San Francisco, CA 94016" -203890,USB-C Charging Cable,1,11.95,05/15/19 22:51,"33 Forest St, New York City, NY 10001" -203891,AAA Batteries (4-pack),1,2.99,05/05/19 21:29,"251 Church St, Atlanta, GA 30301" -203892,USB-C Charging Cable,1,11.95,05/24/19 12:17,"202 Jackson St, Los Angeles, CA 90001" -203893,Apple Airpods Headphones,1,150,05/06/19 11:05,"391 11th St, Boston, MA 02215" -203894,AA Batteries (4-pack),2,3.84,05/19/19 12:43,"187 Walnut St, Portland, OR 97035" -203894,AAA Batteries (4-pack),1,2.99,05/19/19 12:43,"187 Walnut St, Portland, OR 97035" -203895,AA Batteries (4-pack),1,3.84,05/15/19 14:13,"590 Spruce St, Portland, OR 97035" -203896,Wired Headphones,1,11.99,05/02/19 20:31,"723 Church St, San Francisco, CA 94016" -203897,Bose SoundSport Headphones,1,99.99,05/02/19 22:49,"56 8th St, San Francisco, CA 94016" -203898,AA Batteries (4-pack),1,3.84,05/17/19 19:22,"599 Forest St, Seattle, WA 98101" -203899,Flatscreen TV,1,300,05/18/19 20:52,"973 Cherry St, Atlanta, GA 30301" -203900,Bose SoundSport Headphones,1,99.99,05/03/19 21:20,"700 Johnson St, Los Angeles, CA 90001" -203901,27in FHD Monitor,1,149.99,05/14/19 18:02,"564 Hill St, Los Angeles, CA 90001" -203902,Wired Headphones,1,11.99,05/11/19 11:13,"864 1st St, San Francisco, CA 94016" -203903,Bose SoundSport Headphones,1,99.99,05/15/19 19:00,"454 Jackson St, Seattle, WA 98101" -203904,27in 4K Gaming Monitor,1,389.99,05/20/19 09:58,"925 Maple St, Boston, MA 02215" -203905,27in FHD Monitor,1,149.99,05/11/19 07:40,"789 9th St, Boston, MA 02215" -203906,Apple Airpods Headphones,1,150,05/11/19 21:49,"395 7th St, San Francisco, CA 94016" -203907,AAA Batteries (4-pack),1,2.99,05/21/19 17:42,"43 Willow St, San Francisco, CA 94016" -203908,Wired Headphones,1,11.99,05/02/19 21:20,"433 South St, San Francisco, CA 94016" -203909,Apple Airpods Headphones,1,150,05/01/19 22:28,"963 10th St, San Francisco, CA 94016" -203910,iPhone,1,700,05/10/19 16:01,"175 10th St, New York City, NY 10001" -203911,ThinkPad Laptop,1,999.99,05/18/19 00:46,"325 Jackson St, Seattle, WA 98101" -203912,Wired Headphones,1,11.99,05/22/19 17:04,"585 Center St, New York City, NY 10001" -203913,USB-C Charging Cable,1,11.95,05/17/19 16:39,"702 14th St, Boston, MA 02215" -203914,Wired Headphones,1,11.99,05/30/19 08:14,"306 Wilson St, New York City, NY 10001" -203915,ThinkPad Laptop,1,999.99,05/03/19 21:27,"190 9th St, Austin, TX 73301" -203916,20in Monitor,1,109.99,05/09/19 08:57,"602 Cedar St, Atlanta, GA 30301" -203917,27in 4K Gaming Monitor,1,389.99,05/28/19 20:13,"325 Washington St, Los Angeles, CA 90001" -203918,AAA Batteries (4-pack),1,2.99,05/25/19 00:14,"903 Wilson St, San Francisco, CA 94016" -203918,Bose SoundSport Headphones,1,99.99,05/25/19 00:14,"903 Wilson St, San Francisco, CA 94016" -203919,Apple Airpods Headphones,1,150,05/23/19 18:54,"591 Lincoln St, Los Angeles, CA 90001" -203920,USB-C Charging Cable,1,11.95,05/16/19 01:18,"542 West St, San Francisco, CA 94016" -203921,AAA Batteries (4-pack),1,2.99,05/28/19 11:53,"156 Washington St, Los Angeles, CA 90001" -203922,iPhone,1,700,05/31/19 15:18,"170 Hill St, Atlanta, GA 30301" -203922,Wired Headphones,1,11.99,05/31/19 15:18,"170 Hill St, Atlanta, GA 30301" -203923,iPhone,1,700,05/18/19 21:26,"865 Jackson St, Boston, MA 02215" -203923,Lightning Charging Cable,1,14.95,05/18/19 21:26,"865 Jackson St, Boston, MA 02215" -203924,Wired Headphones,1,11.99,05/13/19 18:15,"309 Church St, Boston, MA 02215" -203925,USB-C Charging Cable,1,11.95,05/18/19 19:00,"44 Center St, New York City, NY 10001" -203926,Flatscreen TV,1,300,05/19/19 15:16,"562 Walnut St, Seattle, WA 98101" -203927,Wired Headphones,1,11.99,05/10/19 16:17,"704 Johnson St, Portland, ME 04101" -203928,USB-C Charging Cable,1,11.95,05/17/19 20:17,"760 Lakeview St, San Francisco, CA 94016" -203929,AA Batteries (4-pack),1,3.84,05/02/19 21:16,"841 Adams St, Seattle, WA 98101" -203930,Bose SoundSport Headphones,1,99.99,05/12/19 12:31,"61 5th St, Los Angeles, CA 90001" -203931,AAA Batteries (4-pack),2,2.99,05/16/19 17:00,"102 1st St, Portland, OR 97035" -203932,iPhone,1,700,05/07/19 09:45,"388 Pine St, Portland, OR 97035" -203933,Lightning Charging Cable,2,14.95,05/22/19 18:11,"447 Cherry St, Los Angeles, CA 90001" -203934,Wired Headphones,1,11.99,05/09/19 11:43,"833 Johnson St, San Francisco, CA 94016" -203935,Wired Headphones,1,11.99,05/06/19 12:19,"434 West St, San Francisco, CA 94016" -203936,Macbook Pro Laptop,1,1700,05/14/19 19:08,"260 Jackson St, Los Angeles, CA 90001" -203937,AAA Batteries (4-pack),2,2.99,05/13/19 08:17,"746 Park St, Los Angeles, CA 90001" -203938,LG Dryer,1,600.0,05/26/19 18:26,"774 Park St, San Francisco, CA 94016" -203939,AAA Batteries (4-pack),1,2.99,05/15/19 03:12,"235 5th St, Seattle, WA 98101" -203940,Bose SoundSport Headphones,1,99.99,05/27/19 15:56,"259 Wilson St, Portland, ME 04101" -203941,iPhone,1,700,05/23/19 16:12,"984 Willow St, Los Angeles, CA 90001" -203942,Apple Airpods Headphones,1,150,05/14/19 21:03,"672 5th St, Seattle, WA 98101" -203943,Lightning Charging Cable,1,14.95,05/13/19 16:51,"685 Church St, San Francisco, CA 94016" -203944,Macbook Pro Laptop,1,1700,05/05/19 11:07,"246 Cherry St, Los Angeles, CA 90001" -203945,iPhone,1,700,05/11/19 09:48,"739 2nd St, Atlanta, GA 30301" -203946,ThinkPad Laptop,1,999.99,05/22/19 23:10,"75 Park St, San Francisco, CA 94016" -203947,AA Batteries (4-pack),1,3.84,05/12/19 19:45,"19 Cedar St, Seattle, WA 98101" -203948,Lightning Charging Cable,1,14.95,05/11/19 09:09,"130 1st St, Austin, TX 73301" -203949,iPhone,1,700,05/30/19 15:52,"445 Cherry St, Boston, MA 02215" -203950,iPhone,1,700,05/29/19 08:11,"873 Church St, Los Angeles, CA 90001" -203951,AAA Batteries (4-pack),1,2.99,05/01/19 11:07,"558 Chestnut St, New York City, NY 10001" -203952,AAA Batteries (4-pack),1,2.99,05/17/19 19:24,"648 14th St, New York City, NY 10001" -203953,ThinkPad Laptop,1,999.99,05/19/19 11:15,"593 River St, San Francisco, CA 94016" -203954,Google Phone,1,600,05/19/19 01:10,"867 5th St, New York City, NY 10001" -203955,20in Monitor,1,109.99,05/28/19 15:36,"552 Maple St, San Francisco, CA 94016" -203956,Lightning Charging Cable,1,14.95,05/23/19 16:58,"137 River St, New York City, NY 10001" -203957,ThinkPad Laptop,1,999.99,05/15/19 21:43,"842 Chestnut St, Los Angeles, CA 90001" -203958,Lightning Charging Cable,1,14.95,05/17/19 10:48,"846 13th St, San Francisco, CA 94016" -203959,Apple Airpods Headphones,1,150,05/25/19 20:16,"705 Madison St, Dallas, TX 75001" -203960,Lightning Charging Cable,1,14.95,05/06/19 12:23,"887 Jefferson St, Portland, OR 97035" -203961,AAA Batteries (4-pack),2,2.99,05/28/19 20:28,"623 Willow St, New York City, NY 10001" -203962,AAA Batteries (4-pack),4,2.99,05/20/19 13:31,"35 Cedar St, Dallas, TX 75001" -203963,27in 4K Gaming Monitor,1,389.99,05/01/19 22:11,"302 Maple St, New York City, NY 10001" -203964,Wired Headphones,1,11.99,05/21/19 09:14,"598 Adams St, Boston, MA 02215" -203965,Macbook Pro Laptop,1,1700,05/28/19 16:33,"345 Lakeview St, New York City, NY 10001" -203966,ThinkPad Laptop,1,999.99,05/15/19 16:18,"842 Wilson St, Boston, MA 02215" -203967,AA Batteries (4-pack),1,3.84,05/23/19 18:39,"454 Lake St, Seattle, WA 98101" -203968,Bose SoundSport Headphones,1,99.99,05/21/19 18:22,"311 North St, Los Angeles, CA 90001" -203969,Flatscreen TV,1,300,05/07/19 17:41,"37 Pine St, Los Angeles, CA 90001" -203970,Macbook Pro Laptop,1,1700,05/14/19 08:48,"937 13th St, San Francisco, CA 94016" -203971,USB-C Charging Cable,2,11.95,05/18/19 19:35,"812 Forest St, Dallas, TX 75001" -203972,20in Monitor,1,109.99,05/24/19 16:13,"363 Washington St, Portland, OR 97035" -203973,iPhone,1,700,06/01/19 03:05,"828 Madison St, Los Angeles, CA 90001" -203974,USB-C Charging Cable,1,11.95,05/15/19 16:37,"132 Hickory St, Los Angeles, CA 90001" -203975,USB-C Charging Cable,1,11.95,05/04/19 14:40,"51 Dogwood St, Dallas, TX 75001" -203976,AAA Batteries (4-pack),1,2.99,05/03/19 14:26,"928 Sunset St, New York City, NY 10001" -203977,Wired Headphones,1,11.99,05/03/19 09:18,"63 Cedar St, San Francisco, CA 94016" -203978,USB-C Charging Cable,1,11.95,05/13/19 17:55,"822 Walnut St, New York City, NY 10001" -203979,Apple Airpods Headphones,1,150,05/05/19 14:52,"585 Chestnut St, New York City, NY 10001" -203980,USB-C Charging Cable,1,11.95,06/01/19 02:20,"427 Washington St, Portland, OR 97035" -203981,Wired Headphones,1,11.99,05/06/19 11:27,"677 11th St, Atlanta, GA 30301" -203982,Apple Airpods Headphones,1,150,05/09/19 13:38,"627 South St, Los Angeles, CA 90001" -203983,Bose SoundSport Headphones,1,99.99,05/31/19 10:43,"669 Jefferson St, Atlanta, GA 30301" -203984,iPhone,1,700,05/06/19 17:24,"470 8th St, New York City, NY 10001" -203984,Wired Headphones,2,11.99,05/06/19 17:24,"470 8th St, New York City, NY 10001" -203985,Lightning Charging Cable,2,14.95,05/24/19 20:38,"868 Spruce St, Boston, MA 02215" -203986,Wired Headphones,1,11.99,05/06/19 19:27,"713 Adams St, San Francisco, CA 94016" -203987,Wired Headphones,1,11.99,05/24/19 16:36,"121 Cherry St, New York City, NY 10001" -203988,Bose SoundSport Headphones,2,99.99,05/14/19 18:36,"727 Pine St, New York City, NY 10001" -203989,Bose SoundSport Headphones,1,99.99,05/11/19 19:00,"687 12th St, Los Angeles, CA 90001" -203990,AA Batteries (4-pack),3,3.84,05/11/19 17:33,"45 Ridge St, Atlanta, GA 30301" -203991,Apple Airpods Headphones,1,150,05/25/19 15:14,"276 10th St, Seattle, WA 98101" -203992,Bose SoundSport Headphones,1,99.99,05/07/19 19:13,"311 9th St, Dallas, TX 75001" -203993,iPhone,1,700,05/04/19 15:50,"383 9th St, New York City, NY 10001" -203993,Lightning Charging Cable,1,14.95,05/04/19 15:50,"383 9th St, New York City, NY 10001" -203994,Wired Headphones,1,11.99,05/26/19 16:56,"674 Hickory St, Seattle, WA 98101" -203995,ThinkPad Laptop,1,999.99,05/23/19 17:39,"442 Park St, San Francisco, CA 94016" -203996,27in 4K Gaming Monitor,1,389.99,05/10/19 00:01,"197 2nd St, San Francisco, CA 94016" -203997,Lightning Charging Cable,1,14.95,05/22/19 00:16,"143 Chestnut St, Dallas, TX 75001" -203998,USB-C Charging Cable,1,11.95,05/01/19 09:49,"485 1st St, Dallas, TX 75001" -203999,Wired Headphones,1,11.99,05/27/19 20:25,"566 Hill St, Dallas, TX 75001" -204000,AA Batteries (4-pack),1,3.84,05/11/19 17:55,"420 Pine St, Atlanta, GA 30301" -204001,AA Batteries (4-pack),2,3.84,05/01/19 14:04,"230 Madison St, Portland, OR 97035" -204002,AAA Batteries (4-pack),1,2.99,05/03/19 17:03,"381 Lakeview St, Boston, MA 02215" -204003,AA Batteries (4-pack),1,3.84,05/24/19 08:43,"526 8th St, Los Angeles, CA 90001" -204004,AAA Batteries (4-pack),1,2.99,05/31/19 11:46,"82 North St, San Francisco, CA 94016" -204005,Bose SoundSport Headphones,1,99.99,05/12/19 16:45,"378 Meadow St, Atlanta, GA 30301" -204006,USB-C Charging Cable,2,11.95,05/25/19 22:35,"801 Johnson St, Seattle, WA 98101" -204007,AAA Batteries (4-pack),2,2.99,05/08/19 16:32,"946 11th St, New York City, NY 10001" -204008,Lightning Charging Cable,1,14.95,05/26/19 11:19,"478 12th St, San Francisco, CA 94016" -204009,AA Batteries (4-pack),1,3.84,05/23/19 12:22,"756 6th St, Atlanta, GA 30301" -204010,USB-C Charging Cable,2,11.95,05/12/19 19:02,"442 Walnut St, San Francisco, CA 94016" -204011,ThinkPad Laptop,1,999.99,05/01/19 15:35,"611 Dogwood St, San Francisco, CA 94016" -204012,Wired Headphones,1,11.99,05/14/19 08:19,"511 Highland St, New York City, NY 10001" -204012,AAA Batteries (4-pack),3,2.99,05/14/19 08:19,"511 Highland St, New York City, NY 10001" -204013,Apple Airpods Headphones,1,150,05/20/19 20:42,"871 2nd St, Boston, MA 02215" -204014,Bose SoundSport Headphones,1,99.99,05/25/19 10:03,"970 Cherry St, San Francisco, CA 94016" -204015,AA Batteries (4-pack),2,3.84,05/15/19 10:48,"664 Church St, Seattle, WA 98101" -204016,Lightning Charging Cable,1,14.95,05/02/19 12:49,"30 Elm St, Atlanta, GA 30301" -204017,Apple Airpods Headphones,1,150,05/28/19 21:58,"837 Dogwood St, Atlanta, GA 30301" -204018,20in Monitor,1,109.99,05/14/19 10:48,"90 Center St, Boston, MA 02215" -204019,Macbook Pro Laptop,1,1700,05/22/19 14:16,"35 2nd St, Los Angeles, CA 90001" -204020,iPhone,1,700,05/15/19 03:09,"27 12th St, Portland, OR 97035" -204021,Lightning Charging Cable,1,14.95,05/02/19 21:54,"293 5th St, Los Angeles, CA 90001" -204022,AA Batteries (4-pack),1,3.84,05/24/19 16:26,"3 9th St, Portland, OR 97035" -204023,AAA Batteries (4-pack),3,2.99,05/28/19 21:02,"728 Lincoln St, Seattle, WA 98101" -204023,AA Batteries (4-pack),1,3.84,05/28/19 21:02,"728 Lincoln St, Seattle, WA 98101" -204024,AAA Batteries (4-pack),1,2.99,05/03/19 18:45,"43 8th St, Boston, MA 02215" -204025,AA Batteries (4-pack),2,3.84,05/25/19 10:58,"893 5th St, Dallas, TX 75001" -204026,AA Batteries (4-pack),1,3.84,05/22/19 16:55,"75 Spruce St, Seattle, WA 98101" -204027,USB-C Charging Cable,1,11.95,05/19/19 21:08,"410 12th St, New York City, NY 10001" -204028,27in FHD Monitor,1,149.99,05/22/19 23:56,"167 9th St, Atlanta, GA 30301" -204029,AAA Batteries (4-pack),1,2.99,05/31/19 08:27,"523 Wilson St, San Francisco, CA 94016" -204030,AA Batteries (4-pack),2,3.84,05/02/19 00:35,"96 Forest St, San Francisco, CA 94016" -204031,Google Phone,1,600,05/29/19 10:39,"169 11th St, New York City, NY 10001" -204032,Wired Headphones,1,11.99,05/12/19 19:13,"597 8th St, Austin, TX 73301" -204033,20in Monitor,1,109.99,05/29/19 21:36,"684 Washington St, San Francisco, CA 94016" -204034,27in FHD Monitor,1,149.99,05/19/19 15:18,"306 Willow St, San Francisco, CA 94016" -204035,ThinkPad Laptop,1,999.99,05/13/19 12:16,"122 Park St, Seattle, WA 98101" -204036,Apple Airpods Headphones,1,150,05/21/19 17:06,"562 Johnson St, Los Angeles, CA 90001" -204037,Bose SoundSport Headphones,1,99.99,05/19/19 17:30,"198 13th St, Dallas, TX 75001" -204038,AA Batteries (4-pack),1,3.84,05/09/19 17:11,"711 Forest St, Dallas, TX 75001" -204039,Macbook Pro Laptop,1,1700,05/06/19 21:13,"842 Park St, Austin, TX 73301" -204040,Bose SoundSport Headphones,1,99.99,05/01/19 20:49,"652 Forest St, Los Angeles, CA 90001" -204041,USB-C Charging Cable,1,11.95,05/29/19 22:44,"505 10th St, San Francisco, CA 94016" -204042,Wired Headphones,1,11.99,05/12/19 20:28,"829 North St, Seattle, WA 98101" -204043,34in Ultrawide Monitor,1,379.99,05/21/19 22:45,"171 11th St, Boston, MA 02215" -204044,AA Batteries (4-pack),1,3.84,05/27/19 07:05,"899 7th St, Austin, TX 73301" -204045,AA Batteries (4-pack),2,3.84,05/28/19 21:34,"556 West St, Los Angeles, CA 90001" -204046,Apple Airpods Headphones,1,150,05/03/19 07:21,"795 11th St, Seattle, WA 98101" -204047,USB-C Charging Cable,1,11.95,05/09/19 23:35,"761 9th St, San Francisco, CA 94016" -204048,Flatscreen TV,1,300,05/11/19 16:57,"658 Meadow St, Seattle, WA 98101" -204049,Flatscreen TV,1,300,05/01/19 12:50,"919 River St, Boston, MA 02215" -204050,AAA Batteries (4-pack),3,2.99,05/08/19 06:01,"770 Sunset St, Austin, TX 73301" -204051,20in Monitor,1,109.99,05/03/19 08:50,"639 Pine St, Boston, MA 02215" -204052,AA Batteries (4-pack),1,3.84,05/23/19 18:58,"798 West St, New York City, NY 10001" -204053,AAA Batteries (4-pack),1,2.99,05/18/19 18:29,"662 Adams St, Seattle, WA 98101" -204054,Macbook Pro Laptop,1,1700,05/27/19 13:02,"585 North St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -204055,AAA Batteries (4-pack),1,2.99,05/18/19 20:25,"748 South St, Dallas, TX 75001" -204056,AAA Batteries (4-pack),1,2.99,05/23/19 01:25,"744 Washington St, Boston, MA 02215" -204057,27in 4K Gaming Monitor,1,389.99,05/27/19 20:46,"449 South St, Atlanta, GA 30301" -204058,Apple Airpods Headphones,1,150,05/07/19 11:40,"626 North St, San Francisco, CA 94016" -204059,USB-C Charging Cable,2,11.95,05/02/19 13:09,"605 Chestnut St, Seattle, WA 98101" -204060,AAA Batteries (4-pack),1,2.99,05/17/19 10:17,"54 Elm St, San Francisco, CA 94016" -204061,Lightning Charging Cable,2,14.95,05/22/19 18:29,"259 Lakeview St, San Francisco, CA 94016" -204062,USB-C Charging Cable,1,11.95,05/27/19 11:19,"414 1st St, New York City, NY 10001" -204063,Lightning Charging Cable,2,14.95,05/03/19 18:50,"917 South St, Austin, TX 73301" -204064,AAA Batteries (4-pack),1,2.99,05/10/19 19:55,"256 12th St, Dallas, TX 75001" -204065,AA Batteries (4-pack),1,3.84,05/05/19 15:37,"807 14th St, San Francisco, CA 94016" -204066,AA Batteries (4-pack),1,3.84,05/28/19 01:52,"519 11th St, Portland, OR 97035" -204067,AAA Batteries (4-pack),3,2.99,05/27/19 11:00,"412 8th St, San Francisco, CA 94016" -204068,Wired Headphones,1,11.99,05/13/19 22:15,"756 Dogwood St, San Francisco, CA 94016" -204069,Apple Airpods Headphones,1,150,05/24/19 14:14,"145 9th St, San Francisco, CA 94016" -204070,USB-C Charging Cable,2,11.95,05/12/19 21:57,"264 Church St, San Francisco, CA 94016" -204071,Apple Airpods Headphones,1,150,05/17/19 08:49,"105 Highland St, Atlanta, GA 30301" -204072,34in Ultrawide Monitor,1,379.99,05/11/19 20:35,"549 Adams St, Los Angeles, CA 90001" -204073,Apple Airpods Headphones,1,150,05/26/19 19:37,"747 7th St, San Francisco, CA 94016" -204074,AA Batteries (4-pack),1,3.84,05/16/19 20:19,"892 Jackson St, Boston, MA 02215" -204075,Macbook Pro Laptop,1,1700,05/26/19 08:00,"391 10th St, Austin, TX 73301" -204076,USB-C Charging Cable,1,11.95,05/14/19 09:18,"15 6th St, Atlanta, GA 30301" -204077,Wired Headphones,1,11.99,05/24/19 22:19,"105 Dogwood St, San Francisco, CA 94016" -204078,Macbook Pro Laptop,1,1700,05/03/19 18:49,"415 2nd St, Dallas, TX 75001" -204079,Lightning Charging Cable,1,14.95,05/30/19 20:03,"693 12th St, New York City, NY 10001" -204080,Apple Airpods Headphones,2,150,05/27/19 16:40,"564 Wilson St, Los Angeles, CA 90001" -204081,AAA Batteries (4-pack),2,2.99,05/07/19 09:51,"815 14th St, Boston, MA 02215" -204082,Lightning Charging Cable,1,14.95,05/22/19 19:45,"921 Hickory St, New York City, NY 10001" -204083,USB-C Charging Cable,1,11.95,05/31/19 16:24,"842 Chestnut St, Boston, MA 02215" -204084,34in Ultrawide Monitor,1,379.99,05/25/19 11:02,"120 10th St, Atlanta, GA 30301" -204085,USB-C Charging Cable,1,11.95,05/06/19 20:38,"229 Johnson St, Atlanta, GA 30301" -204086,ThinkPad Laptop,1,999.99,05/23/19 18:20,"668 5th St, Boston, MA 02215" -204087,AAA Batteries (4-pack),1,2.99,05/21/19 18:14,"95 Johnson St, Seattle, WA 98101" -204088,Flatscreen TV,1,300,05/28/19 20:55,"744 5th St, Atlanta, GA 30301" -204089,Wired Headphones,1,11.99,05/05/19 16:11,"829 11th St, San Francisco, CA 94016" -204090,AAA Batteries (4-pack),1,2.99,05/06/19 12:20,"191 Wilson St, New York City, NY 10001" -204091,Apple Airpods Headphones,1,150,05/03/19 12:24,"812 Lakeview St, Boston, MA 02215" -204092,Wired Headphones,1,11.99,05/11/19 20:38,"219 Hickory St, Los Angeles, CA 90001" -204093,AAA Batteries (4-pack),3,2.99,05/04/19 19:55,"725 Forest St, San Francisco, CA 94016" -204094,AA Batteries (4-pack),1,3.84,05/25/19 16:26,"982 Hickory St, Boston, MA 02215" -204095,Bose SoundSport Headphones,1,99.99,05/12/19 11:29,"880 Madison St, Seattle, WA 98101" -204096,USB-C Charging Cable,1,11.95,05/19/19 11:26,"613 6th St, Dallas, TX 75001" -204097,AAA Batteries (4-pack),1,2.99,05/10/19 10:00,"396 Johnson St, Austin, TX 73301" -204098,Wired Headphones,1,11.99,05/25/19 20:06,"705 Chestnut St, San Francisco, CA 94016" -204099,Bose SoundSport Headphones,2,99.99,05/12/19 15:11,"413 North St, Atlanta, GA 30301" -204100,AA Batteries (4-pack),1,3.84,05/01/19 11:54,"567 Hickory St, San Francisco, CA 94016" -204101,USB-C Charging Cable,1,11.95,05/19/19 15:14,"942 Meadow St, Boston, MA 02215" -204102,Bose SoundSport Headphones,1,99.99,05/21/19 14:00,"792 Jackson St, San Francisco, CA 94016" -204103,AA Batteries (4-pack),1,3.84,05/08/19 19:55,"220 Cherry St, Atlanta, GA 30301" -204104,Apple Airpods Headphones,1,150,05/30/19 22:10,"898 Highland St, Portland, OR 97035" -204105,AAA Batteries (4-pack),4,2.99,05/23/19 07:01,"688 Forest St, New York City, NY 10001" -204106,AA Batteries (4-pack),3,3.84,05/20/19 07:44,"979 Park St, San Francisco, CA 94016" -204107,AAA Batteries (4-pack),1,2.99,05/24/19 17:53,"23 7th St, Portland, OR 97035" -204108,27in 4K Gaming Monitor,1,389.99,05/30/19 11:21,"18 Johnson St, New York City, NY 10001" -204109,Apple Airpods Headphones,1,150,05/20/19 17:51,"482 Forest St, New York City, NY 10001" -204110,AAA Batteries (4-pack),1,2.99,05/14/19 11:14,"801 Spruce St, New York City, NY 10001" -204111,34in Ultrawide Monitor,1,379.99,05/01/19 16:28,"414 Madison St, Boston, MA 02215" -204112,Wired Headphones,1,11.99,05/21/19 17:27,"317 7th St, Boston, MA 02215" -204113,Vareebadd Phone,1,400,05/28/19 20:06,"900 Meadow St, Atlanta, GA 30301" -204114,Macbook Pro Laptop,1,1700,05/21/19 22:34,"125 West St, San Francisco, CA 94016" -204115,Macbook Pro Laptop,1,1700,05/07/19 15:35,"529 Willow St, Seattle, WA 98101" -204116,34in Ultrawide Monitor,1,379.99,05/30/19 19:16,"505 Church St, San Francisco, CA 94016" -204117,Wired Headphones,1,11.99,05/10/19 16:02,"878 Ridge St, New York City, NY 10001" -204118,34in Ultrawide Monitor,1,379.99,05/22/19 20:07,"143 9th St, Portland, ME 04101" -204119,USB-C Charging Cable,2,11.95,05/28/19 21:25,"945 Forest St, Los Angeles, CA 90001" -204120,ThinkPad Laptop,1,999.99,05/21/19 10:24,"698 Washington St, Los Angeles, CA 90001" -204121,Macbook Pro Laptop,1,1700,05/01/19 21:47,"225 5th St, Portland, ME 04101" -204122,Lightning Charging Cable,1,14.95,05/21/19 17:18,"966 Jackson St, Austin, TX 73301" -204123,AA Batteries (4-pack),1,3.84,05/22/19 01:29,"983 Elm St, Atlanta, GA 30301" -204124,LG Washing Machine,1,600.0,05/15/19 10:44,"847 Ridge St, New York City, NY 10001" -204125,34in Ultrawide Monitor,1,379.99,05/19/19 23:13,"969 Lakeview St, New York City, NY 10001" -204126,iPhone,1,700,05/09/19 16:06,"620 7th St, Los Angeles, CA 90001" -204127,20in Monitor,1,109.99,05/01/19 13:44,"387 Ridge St, Portland, OR 97035" -204128,Vareebadd Phone,1,400,05/19/19 01:31,"759 10th St, San Francisco, CA 94016" -204129,AAA Batteries (4-pack),1,2.99,05/30/19 23:17,"41 7th St, Portland, OR 97035" -204130,Wired Headphones,2,11.99,05/25/19 14:18,"428 2nd St, Boston, MA 02215" -204131,AAA Batteries (4-pack),4,2.99,05/16/19 18:22,"50 Main St, New York City, NY 10001" -204132,27in FHD Monitor,1,149.99,05/25/19 11:58,"91 14th St, Portland, OR 97035" -204133,Wired Headphones,1,11.99,05/07/19 12:37,"947 7th St, Portland, OR 97035" -204134,ThinkPad Laptop,1,999.99,05/07/19 16:03,"303 Pine St, Austin, TX 73301" -204135,Lightning Charging Cable,1,14.95,05/05/19 10:49,"758 Meadow St, Boston, MA 02215" -204136,Bose SoundSport Headphones,1,99.99,05/28/19 17:07,"851 Cedar St, San Francisco, CA 94016" -204137,27in 4K Gaming Monitor,1,389.99,05/08/19 12:27,"820 Jackson St, New York City, NY 10001" -204138,iPhone,1,700,05/07/19 14:06,"40 5th St, Los Angeles, CA 90001" -204139,AAA Batteries (4-pack),1,2.99,05/27/19 08:43,"348 Church St, Austin, TX 73301" -204140,AAA Batteries (4-pack),1,2.99,05/30/19 09:42,"603 Cedar St, Dallas, TX 75001" -204141,Wired Headphones,1,11.99,05/27/19 19:03,"999 5th St, San Francisco, CA 94016" -204142,Lightning Charging Cable,1,14.95,05/12/19 20:50,"439 Cherry St, Portland, ME 04101" -204143,AA Batteries (4-pack),1,3.84,05/21/19 22:50,"699 West St, New York City, NY 10001" -204144,iPhone,1,700,05/17/19 18:14,"897 Cedar St, Los Angeles, CA 90001" -204145,27in FHD Monitor,1,149.99,05/09/19 08:48,"752 5th St, San Francisco, CA 94016" -204146,Apple Airpods Headphones,1,150,05/04/19 10:32,"838 7th St, Austin, TX 73301" -204147,USB-C Charging Cable,1,11.95,05/08/19 16:12,"16 North St, Portland, OR 97035" -204148,iPhone,1,700,05/13/19 00:02,"268 Highland St, Boston, MA 02215" -204149,34in Ultrawide Monitor,1,379.99,05/13/19 17:18,"472 Maple St, Austin, TX 73301" -204150,AAA Batteries (4-pack),1,2.99,05/05/19 11:58,"483 4th St, Boston, MA 02215" -204150,Flatscreen TV,1,300,05/05/19 11:58,"483 4th St, Boston, MA 02215" -204151,USB-C Charging Cable,1,11.95,05/16/19 17:29,"490 Madison St, Atlanta, GA 30301" -204152,Bose SoundSport Headphones,1,99.99,05/31/19 16:32,"381 Cedar St, San Francisco, CA 94016" -204152,Apple Airpods Headphones,1,150,05/31/19 16:32,"381 Cedar St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -204153,Lightning Charging Cable,1,14.95,05/14/19 21:58,"374 10th St, Boston, MA 02215" -204154,Macbook Pro Laptop,1,1700,05/13/19 18:44,"563 11th St, Los Angeles, CA 90001" -204155,Lightning Charging Cable,1,14.95,05/12/19 20:09,"864 Main St, New York City, NY 10001" -204156,Bose SoundSport Headphones,1,99.99,05/02/19 13:02,"810 West St, Boston, MA 02215" -204157,Macbook Pro Laptop,1,1700,05/17/19 16:47,"826 Elm St, San Francisco, CA 94016" -204158,Lightning Charging Cable,1,14.95,05/28/19 19:21,"782 9th St, San Francisco, CA 94016" -204159,20in Monitor,1,109.99,05/16/19 14:50,"742 11th St, Dallas, TX 75001" -204160,Wired Headphones,1,11.99,05/09/19 10:07,"857 Center St, San Francisco, CA 94016" -204161,Lightning Charging Cable,1,14.95,05/10/19 06:04,"308 5th St, Boston, MA 02215" -204162,iPhone,1,700,05/25/19 19:51,"17 Wilson St, Boston, MA 02215" -204163,AA Batteries (4-pack),1,3.84,05/05/19 20:39,"308 10th St, Boston, MA 02215" -204164,AAA Batteries (4-pack),1,2.99,05/13/19 16:17,"406 Lakeview St, Atlanta, GA 30301" -204165,27in 4K Gaming Monitor,1,389.99,05/17/19 17:43,"759 Hill St, Dallas, TX 75001" -204166,USB-C Charging Cable,1,11.95,05/10/19 20:48,"242 Cedar St, Seattle, WA 98101" -204167,AA Batteries (4-pack),1,3.84,05/19/19 16:24,"123 7th St, Austin, TX 73301" -204168,AA Batteries (4-pack),1,3.84,05/08/19 20:14,"273 Sunset St, Dallas, TX 75001" -204169,iPhone,1,700,05/23/19 23:22,"147 South St, San Francisco, CA 94016" -204170,iPhone,1,700,05/20/19 17:27,"432 Elm St, San Francisco, CA 94016" -204170,Lightning Charging Cable,1,14.95,05/20/19 17:27,"432 Elm St, San Francisco, CA 94016" -204171,Macbook Pro Laptop,1,1700,05/29/19 13:11,"986 7th St, Boston, MA 02215" -204172,Apple Airpods Headphones,1,150,05/30/19 19:49,"996 Highland St, Portland, OR 97035" -204173,AAA Batteries (4-pack),3,2.99,05/19/19 13:27,"564 Maple St, Seattle, WA 98101" -204174,Flatscreen TV,1,300,05/05/19 16:23,"495 Park St, San Francisco, CA 94016" -204175,AA Batteries (4-pack),2,3.84,05/19/19 19:13,"846 South St, Los Angeles, CA 90001" -204176,Bose SoundSport Headphones,1,99.99,05/02/19 21:47,"76 Pine St, Atlanta, GA 30301" -204177,27in FHD Monitor,1,149.99,05/05/19 14:28,"896 Highland St, Dallas, TX 75001" -204178,USB-C Charging Cable,2,11.95,05/11/19 13:55,"657 Hill St, San Francisco, CA 94016" -204179,AAA Batteries (4-pack),3,2.99,05/28/19 09:46,"92 11th St, Atlanta, GA 30301" -204180,Wired Headphones,1,11.99,05/12/19 20:34,"483 Sunset St, Los Angeles, CA 90001" -204181,Apple Airpods Headphones,1,150,05/24/19 19:19,"100 Lake St, San Francisco, CA 94016" -204182,27in FHD Monitor,1,149.99,05/28/19 11:49,"468 Park St, Portland, OR 97035" -204183,AAA Batteries (4-pack),1,2.99,05/30/19 16:11,"831 River St, Los Angeles, CA 90001" -204184,Wired Headphones,1,11.99,05/09/19 22:31,"114 11th St, Austin, TX 73301" -204185,Google Phone,1,600,05/24/19 17:24,"589 Lakeview St, Dallas, TX 75001" -204186,USB-C Charging Cable,1,11.95,05/16/19 19:47,"70 North St, Seattle, WA 98101" -204187,27in 4K Gaming Monitor,1,389.99,05/11/19 22:12,"208 Chestnut St, San Francisco, CA 94016" -204188,AAA Batteries (4-pack),1,2.99,05/31/19 14:59,"142 Jackson St, Boston, MA 02215" -204189,AAA Batteries (4-pack),1,2.99,05/23/19 18:41,"907 Elm St, New York City, NY 10001" -204190,Wired Headphones,1,11.99,06/01/19 01:46,"153 Chestnut St, Atlanta, GA 30301" -204191,Wired Headphones,1,11.99,05/29/19 16:05,"89 Pine St, San Francisco, CA 94016" -204192,Apple Airpods Headphones,1,150,05/23/19 08:49,"639 Hickory St, San Francisco, CA 94016" -204193,Lightning Charging Cable,1,14.95,05/10/19 01:20,"931 Chestnut St, San Francisco, CA 94016" -204194,Wired Headphones,1,11.99,05/29/19 17:04,"584 North St, New York City, NY 10001" -204195,Apple Airpods Headphones,1,150,05/13/19 09:39,"75 River St, Los Angeles, CA 90001" -204196,Wired Headphones,1,11.99,05/01/19 22:46,"458 7th St, New York City, NY 10001" -204197,Lightning Charging Cable,1,14.95,05/09/19 16:46,"861 Chestnut St, Atlanta, GA 30301" -204198,Wired Headphones,1,11.99,05/19/19 23:06,"457 Lincoln St, Seattle, WA 98101" -204199,Bose SoundSport Headphones,1,99.99,05/31/19 19:59,"911 Main St, San Francisco, CA 94016" -204200,Bose SoundSport Headphones,1,99.99,05/08/19 10:38,"858 Elm St, Atlanta, GA 30301" -204201,Flatscreen TV,1,300,05/16/19 10:44,"406 Ridge St, Boston, MA 02215" -204202,Vareebadd Phone,1,400,05/10/19 19:14,"797 11th St, San Francisco, CA 94016" -204202,Wired Headphones,1,11.99,05/10/19 19:14,"797 11th St, San Francisco, CA 94016" -204203,34in Ultrawide Monitor,1,379.99,05/31/19 14:11,"178 Chestnut St, New York City, NY 10001" -204204,Lightning Charging Cable,1,14.95,05/25/19 14:33,"331 10th St, Los Angeles, CA 90001" -204205,AA Batteries (4-pack),1,3.84,05/26/19 12:18,"88 12th St, Portland, OR 97035" -204206,Wired Headphones,1,11.99,05/13/19 17:23,"749 8th St, New York City, NY 10001" -204207,27in 4K Gaming Monitor,1,389.99,05/19/19 09:43,"374 8th St, Portland, OR 97035" -204208,AAA Batteries (4-pack),2,2.99,05/23/19 12:56,"117 Hill St, New York City, NY 10001" -204209,Bose SoundSport Headphones,1,99.99,05/27/19 15:33,"622 13th St, Los Angeles, CA 90001" -204210,Lightning Charging Cable,1,14.95,05/31/19 11:10,"546 Jackson St, Portland, OR 97035" -204211,Apple Airpods Headphones,1,150,05/08/19 09:22,"202 Sunset St, Los Angeles, CA 90001" -204212,AAA Batteries (4-pack),4,2.99,05/09/19 19:51,"187 Main St, San Francisco, CA 94016" -204213,Macbook Pro Laptop,1,1700,05/20/19 11:55,"574 6th St, San Francisco, CA 94016" -204214,Bose SoundSport Headphones,1,99.99,05/10/19 00:12,"432 Wilson St, Portland, ME 04101" -204215,AAA Batteries (4-pack),1,2.99,05/12/19 18:37,"504 Center St, San Francisco, CA 94016" -204216,20in Monitor,1,109.99,05/17/19 11:56,"692 Elm St, Seattle, WA 98101" -204217,27in FHD Monitor,1,149.99,05/19/19 13:16,"342 Meadow St, Seattle, WA 98101" -204218,Wired Headphones,1,11.99,05/17/19 21:35,"350 8th St, Seattle, WA 98101" -204219,AAA Batteries (4-pack),1,2.99,05/06/19 22:40,"765 Washington St, San Francisco, CA 94016" -204220,Flatscreen TV,1,300,05/11/19 20:24,"259 Spruce St, San Francisco, CA 94016" -204221,Lightning Charging Cable,1,14.95,05/23/19 10:36,"56 Lake St, New York City, NY 10001" -204222,AAA Batteries (4-pack),2,2.99,05/20/19 21:33,"682 Madison St, Dallas, TX 75001" -204223,AA Batteries (4-pack),2,3.84,05/04/19 15:06,"684 13th St, San Francisco, CA 94016" -204224,AAA Batteries (4-pack),1,2.99,05/10/19 16:50,"846 8th St, Los Angeles, CA 90001" -204225,Flatscreen TV,1,300,05/22/19 20:03,"469 1st St, Atlanta, GA 30301" -204226,27in FHD Monitor,1,149.99,05/18/19 20:21,"23 4th St, New York City, NY 10001" -204227,Lightning Charging Cable,1,14.95,05/12/19 10:58,"847 13th St, Boston, MA 02215" -204228,USB-C Charging Cable,1,11.95,05/15/19 11:59,"721 Spruce St, San Francisco, CA 94016" -204229,USB-C Charging Cable,1,11.95,05/23/19 10:47,"883 Hill St, San Francisco, CA 94016" -204230,AAA Batteries (4-pack),4,2.99,05/08/19 15:41,"291 Sunset St, San Francisco, CA 94016" -204231,Bose SoundSport Headphones,1,99.99,05/20/19 10:38,"195 Hickory St, New York City, NY 10001" -204232,AAA Batteries (4-pack),1,2.99,05/02/19 14:04,"183 Forest St, Los Angeles, CA 90001" -204233,Apple Airpods Headphones,1,150,05/16/19 19:39,"375 12th St, New York City, NY 10001" -204234,AA Batteries (4-pack),1,3.84,05/02/19 13:39,"379 Center St, Boston, MA 02215" -204235,AAA Batteries (4-pack),1,2.99,05/24/19 11:47,"63 River St, Los Angeles, CA 90001" -204236,AAA Batteries (4-pack),1,2.99,05/18/19 19:57,"623 Maple St, San Francisco, CA 94016" -204237,20in Monitor,1,109.99,05/20/19 09:49,"513 Willow St, Seattle, WA 98101" -204238,AA Batteries (4-pack),1,3.84,05/23/19 17:04,"665 11th St, Seattle, WA 98101" -204239,Flatscreen TV,1,300,05/08/19 18:06,"375 Pine St, Seattle, WA 98101" -204240,34in Ultrawide Monitor,1,379.99,05/03/19 12:42,"933 Wilson St, Los Angeles, CA 90001" -204241,AAA Batteries (4-pack),1,2.99,05/03/19 10:15,"556 2nd St, Portland, ME 04101" -204242,Lightning Charging Cable,1,14.95,05/25/19 10:47,"685 11th St, San Francisco, CA 94016" -204243,USB-C Charging Cable,1,11.95,05/01/19 22:24,"855 Washington St, San Francisco, CA 94016" -204244,Bose SoundSport Headphones,1,99.99,05/20/19 11:51,"569 Main St, Boston, MA 02215" -204245,Lightning Charging Cable,1,14.95,05/14/19 16:04,"180 Lincoln St, Boston, MA 02215" -204246,AA Batteries (4-pack),1,3.84,05/12/19 12:44,"406 6th St, New York City, NY 10001" -204247,Lightning Charging Cable,1,14.95,05/19/19 00:59,"364 8th St, Los Angeles, CA 90001" -204248,Flatscreen TV,1,300,05/01/19 16:53,"716 Sunset St, Seattle, WA 98101" -204249,AAA Batteries (4-pack),1,2.99,05/20/19 22:55,"99 Cherry St, Los Angeles, CA 90001" -204250,Apple Airpods Headphones,1,150,05/03/19 20:48,"577 8th St, Atlanta, GA 30301" -204251,Wired Headphones,1,11.99,05/12/19 23:26,"81 Church St, Portland, OR 97035" -204252,ThinkPad Laptop,1,999.99,05/02/19 07:37,"21 Elm St, Atlanta, GA 30301" -204253,Apple Airpods Headphones,1,150,05/17/19 16:46,"536 1st St, Austin, TX 73301" -204254,Bose SoundSport Headphones,1,99.99,05/10/19 21:29,"302 Wilson St, Atlanta, GA 30301" -204255,Apple Airpods Headphones,1,150,05/03/19 10:09,"311 Hill St, Los Angeles, CA 90001" -204256,AA Batteries (4-pack),1,3.84,05/11/19 12:27,"238 Dogwood St, Los Angeles, CA 90001" -204257,AAA Batteries (4-pack),1,2.99,05/03/19 18:51,"951 12th St, New York City, NY 10001" -204258,AAA Batteries (4-pack),1,2.99,05/20/19 15:21,"752 Pine St, Dallas, TX 75001" -204259,Flatscreen TV,1,300,05/08/19 17:57,"418 13th St, Boston, MA 02215" -204260,USB-C Charging Cable,1,11.95,05/10/19 20:20,"444 Dogwood St, San Francisco, CA 94016" -204261,ThinkPad Laptop,1,999.99,05/12/19 15:54,"915 2nd St, Austin, TX 73301" -204262,Lightning Charging Cable,1,14.95,05/18/19 12:11,"317 River St, San Francisco, CA 94016" -204263,34in Ultrawide Monitor,1,379.99,05/09/19 18:31,"487 11th St, New York City, NY 10001" -204264,USB-C Charging Cable,1,11.95,05/10/19 21:29,"757 Sunset St, Atlanta, GA 30301" -204265,USB-C Charging Cable,1,11.95,05/12/19 21:22,"381 Center St, Dallas, TX 75001" -204266,27in 4K Gaming Monitor,1,389.99,05/27/19 17:01,"386 Jefferson St, Dallas, TX 75001" -204267,AAA Batteries (4-pack),1,2.99,05/26/19 20:44,"389 Johnson St, New York City, NY 10001" -204268,Vareebadd Phone,1,400,05/03/19 05:44,"287 4th St, Los Angeles, CA 90001" -204269,AA Batteries (4-pack),1,3.84,05/04/19 11:42,"439 5th St, Boston, MA 02215" -204270,USB-C Charging Cable,1,11.95,05/09/19 18:00,"519 Elm St, Boston, MA 02215" -204270,Apple Airpods Headphones,1,150,05/09/19 18:00,"519 Elm St, Boston, MA 02215" -204271,iPhone,1,700,05/28/19 11:55,"839 Spruce St, Atlanta, GA 30301" -204271,Lightning Charging Cable,2,14.95,05/28/19 11:55,"839 Spruce St, Atlanta, GA 30301" -204272,AA Batteries (4-pack),1,3.84,05/18/19 01:20,"160 1st St, San Francisco, CA 94016" -204273,Wired Headphones,1,11.99,05/16/19 12:07,"283 Maple St, New York City, NY 10001" -204274,Lightning Charging Cable,1,14.95,05/14/19 19:27,"164 Hill St, New York City, NY 10001" -204275,Bose SoundSport Headphones,1,99.99,05/29/19 19:07,"267 11th St, Boston, MA 02215" -204276,Macbook Pro Laptop,1,1700,05/04/19 11:31,"189 River St, Los Angeles, CA 90001" -204277,AAA Batteries (4-pack),3,2.99,05/17/19 19:04,"115 9th St, Los Angeles, CA 90001" -204278,AAA Batteries (4-pack),3,2.99,05/21/19 16:49,"916 6th St, New York City, NY 10001" -204279,AA Batteries (4-pack),1,3.84,05/26/19 10:35,"205 1st St, New York City, NY 10001" -204280,Flatscreen TV,1,300,05/23/19 09:24,"580 7th St, Atlanta, GA 30301" -204281,AAA Batteries (4-pack),1,2.99,05/07/19 23:08,"917 Highland St, Boston, MA 02215" -204282,ThinkPad Laptop,1,999.99,05/26/19 00:42,"184 Sunset St, Atlanta, GA 30301" -204283,27in FHD Monitor,1,149.99,05/19/19 22:27,"378 Ridge St, New York City, NY 10001" -204284,Lightning Charging Cable,1,14.95,05/14/19 15:53,"681 8th St, New York City, NY 10001" -204285,AA Batteries (4-pack),2,3.84,05/03/19 10:50,"56 Adams St, Dallas, TX 75001" -204286,Wired Headphones,1,11.99,05/25/19 15:43,"872 Willow St, Austin, TX 73301" -204287,Macbook Pro Laptop,1,1700,05/24/19 18:06,"262 5th St, Los Angeles, CA 90001" -204288,Macbook Pro Laptop,1,1700,05/14/19 10:50,"495 Walnut St, San Francisco, CA 94016" -204289,Lightning Charging Cable,1,14.95,05/03/19 10:55,"65 Walnut St, New York City, NY 10001" -204290,34in Ultrawide Monitor,1,379.99,05/29/19 16:12,"96 Forest St, New York City, NY 10001" -204291,Lightning Charging Cable,2,14.95,05/09/19 19:41,"41 Pine St, New York City, NY 10001" -204292,Macbook Pro Laptop,1,1700,05/05/19 01:59,"163 Ridge St, Seattle, WA 98101" -204293,Lightning Charging Cable,1,14.95,05/28/19 18:50,"985 Madison St, San Francisco, CA 94016" -204294,Wired Headphones,1,11.99,05/27/19 09:47,"9 8th St, New York City, NY 10001" -204295,USB-C Charging Cable,1,11.95,05/12/19 18:22,"315 Dogwood St, New York City, NY 10001" -204296,Apple Airpods Headphones,1,150,05/12/19 07:48,"458 Sunset St, Austin, TX 73301" -204297,ThinkPad Laptop,1,999.99,05/30/19 17:53,"512 Lincoln St, New York City, NY 10001" -204297,Wired Headphones,1,11.99,05/30/19 17:53,"512 Lincoln St, New York City, NY 10001" -204298,34in Ultrawide Monitor,1,379.99,05/06/19 21:10,"781 Madison St, New York City, NY 10001" -204299,Apple Airpods Headphones,1,150,05/19/19 12:07,"900 Dogwood St, Los Angeles, CA 90001" -204300,Lightning Charging Cable,1,14.95,05/24/19 17:12,"271 4th St, Los Angeles, CA 90001" -204301,LG Dryer,1,600.0,05/15/19 22:57,"48 Elm St, Seattle, WA 98101" -204302,Lightning Charging Cable,1,14.95,05/30/19 00:21,"797 River St, Dallas, TX 75001" -204303,AAA Batteries (4-pack),1,2.99,05/30/19 10:56,"737 Main St, Seattle, WA 98101" -204304,AA Batteries (4-pack),1,3.84,05/20/19 07:45,"543 Hickory St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -204305,USB-C Charging Cable,1,11.95,05/23/19 17:21,"365 10th St, San Francisco, CA 94016" -204306,AA Batteries (4-pack),1,3.84,05/09/19 22:48,"273 Johnson St, Dallas, TX 75001" -204307,Apple Airpods Headphones,1,150,05/31/19 10:36,"274 12th St, San Francisco, CA 94016" -204308,Apple Airpods Headphones,1,150,05/14/19 09:31,"272 Church St, Atlanta, GA 30301" -204309,27in 4K Gaming Monitor,1,389.99,05/29/19 21:09,"433 Center St, Portland, OR 97035" -204310,Wired Headphones,1,11.99,05/27/19 14:23,"289 Sunset St, San Francisco, CA 94016" -204311,Apple Airpods Headphones,1,150,05/19/19 13:22,"757 Main St, Los Angeles, CA 90001" -204312,AA Batteries (4-pack),1,3.84,05/11/19 12:46,"78 9th St, San Francisco, CA 94016" -204313,20in Monitor,1,109.99,05/28/19 12:45,"375 4th St, Portland, OR 97035" -204314,27in FHD Monitor,1,149.99,05/06/19 21:54,"262 Johnson St, Dallas, TX 75001" -204315,Apple Airpods Headphones,1,150,05/02/19 22:45,"389 Hickory St, Los Angeles, CA 90001" -204316,27in FHD Monitor,1,149.99,05/01/19 12:23,"212 Jackson St, San Francisco, CA 94016" -204317,Lightning Charging Cable,1,14.95,05/07/19 12:47,"639 Cherry St, San Francisco, CA 94016" -204318,27in 4K Gaming Monitor,1,389.99,05/16/19 08:06,"333 Sunset St, San Francisco, CA 94016" -204319,AA Batteries (4-pack),1,3.84,05/30/19 20:27,"20 Sunset St, Atlanta, GA 30301" -204320,Apple Airpods Headphones,1,150,05/14/19 10:16,"405 2nd St, Los Angeles, CA 90001" -204321,ThinkPad Laptop,1,999.99,05/19/19 15:44,"563 Pine St, San Francisco, CA 94016" -204322,AAA Batteries (4-pack),1,2.99,05/21/19 22:06,"30 2nd St, New York City, NY 10001" -204323,Bose SoundSport Headphones,1,99.99,05/11/19 15:38,"132 Jackson St, New York City, NY 10001" -204324,USB-C Charging Cable,1,11.95,05/24/19 13:27,"740 Dogwood St, San Francisco, CA 94016" -204325,27in FHD Monitor,1,149.99,05/07/19 14:39,"581 10th St, Portland, OR 97035" -204326,AAA Batteries (4-pack),1,2.99,05/25/19 14:10,"308 11th St, Boston, MA 02215" -204327,AA Batteries (4-pack),2,3.84,05/28/19 14:39,"237 Elm St, New York City, NY 10001" -204328,27in FHD Monitor,1,149.99,05/04/19 19:12,"841 Lakeview St, Boston, MA 02215" -204329,AA Batteries (4-pack),1,3.84,05/12/19 12:50,"566 Church St, Boston, MA 02215" -204330,Wired Headphones,1,11.99,05/10/19 11:33,"439 12th St, Portland, OR 97035" -204331,AA Batteries (4-pack),3,3.84,05/01/19 19:32,"188 7th St, Atlanta, GA 30301" -204332,AA Batteries (4-pack),1,3.84,05/26/19 23:55,"350 Ridge St, New York City, NY 10001" -204333,Lightning Charging Cable,2,14.95,05/21/19 19:32,"912 5th St, New York City, NY 10001" -204334,Lightning Charging Cable,1,14.95,05/01/19 22:29,"441 8th St, New York City, NY 10001" -204335,AA Batteries (4-pack),3,3.84,05/26/19 14:28,"126 9th St, Los Angeles, CA 90001" -204336,AA Batteries (4-pack),1,3.84,05/20/19 19:52,"247 Lincoln St, New York City, NY 10001" -204337,AA Batteries (4-pack),1,3.84,05/03/19 20:45,"689 Washington St, Los Angeles, CA 90001" -204338,Apple Airpods Headphones,1,150,05/24/19 20:13,"829 Forest St, Boston, MA 02215" -204339,AAA Batteries (4-pack),1,2.99,05/29/19 13:28,"266 Cherry St, San Francisco, CA 94016" -204340,Wired Headphones,1,11.99,05/17/19 11:55,"33 Center St, San Francisco, CA 94016" -204341,Apple Airpods Headphones,1,150,05/17/19 18:44,"833 Center St, San Francisco, CA 94016" -204342,Lightning Charging Cable,1,14.95,05/16/19 14:52,"608 Chestnut St, Dallas, TX 75001" -204343,USB-C Charging Cable,1,11.95,05/30/19 17:42,"418 5th St, Seattle, WA 98101" -204344,Wired Headphones,1,11.99,05/25/19 18:55,"238 10th St, San Francisco, CA 94016" -204345,Lightning Charging Cable,1,14.95,05/22/19 19:09,"58 7th St, Seattle, WA 98101" -204346,USB-C Charging Cable,1,11.95,05/28/19 19:23,"635 Johnson St, Atlanta, GA 30301" -204347,ThinkPad Laptop,1,999.99,05/31/19 07:03,"780 Pine St, Dallas, TX 75001" -204348,Bose SoundSport Headphones,1,99.99,05/16/19 16:26,"44 5th St, Los Angeles, CA 90001" -204349,USB-C Charging Cable,1,11.95,05/14/19 19:18,"603 Park St, San Francisco, CA 94016" -204350,27in FHD Monitor,1,149.99,05/17/19 20:32,"348 South St, New York City, NY 10001" -204351,ThinkPad Laptop,1,999.99,05/13/19 17:36,"636 Forest St, San Francisco, CA 94016" -204352,USB-C Charging Cable,1,11.95,05/21/19 17:33,"941 8th St, Dallas, TX 75001" -204353,27in FHD Monitor,1,149.99,05/27/19 19:21,"757 Dogwood St, Dallas, TX 75001" -204354,Bose SoundSport Headphones,1,99.99,05/09/19 19:15,"236 8th St, Seattle, WA 98101" -204355,Lightning Charging Cable,1,14.95,05/25/19 22:43,"504 8th St, Seattle, WA 98101" -204356,Bose SoundSport Headphones,1,99.99,05/02/19 00:31,"293 Cherry St, New York City, NY 10001" -204357,USB-C Charging Cable,1,11.95,05/20/19 16:58,"178 Forest St, San Francisco, CA 94016" -204358,Wired Headphones,1,11.99,05/03/19 15:49,"429 Chestnut St, New York City, NY 10001" -204359,Wired Headphones,1,11.99,05/27/19 01:23,"611 6th St, New York City, NY 10001" -204360,USB-C Charging Cable,1,11.95,05/02/19 06:34,"974 South St, San Francisco, CA 94016" -204361,AAA Batteries (4-pack),2,2.99,05/16/19 15:56,"789 Walnut St, Los Angeles, CA 90001" -204362,AA Batteries (4-pack),2,3.84,05/13/19 16:12,"618 7th St, Boston, MA 02215" -204363,Lightning Charging Cable,1,14.95,05/02/19 01:09,"600 Lincoln St, Austin, TX 73301" -204364,AAA Batteries (4-pack),1,2.99,05/21/19 12:52,"691 Spruce St, Boston, MA 02215" -204365,AA Batteries (4-pack),1,3.84,05/17/19 12:23,"645 2nd St, Portland, OR 97035" -204365,Bose SoundSport Headphones,1,99.99,05/17/19 12:23,"645 2nd St, Portland, OR 97035" -204366,AAA Batteries (4-pack),3,2.99,05/24/19 14:14,"744 2nd St, Dallas, TX 75001" -204367,iPhone,1,700,05/24/19 21:26,"207 Washington St, Los Angeles, CA 90001" -204368,Apple Airpods Headphones,1,150,05/09/19 20:14,"814 Cherry St, San Francisco, CA 94016" -204369,AAA Batteries (4-pack),3,2.99,05/25/19 17:21,"755 Elm St, Atlanta, GA 30301" -204370,AA Batteries (4-pack),1,3.84,05/05/19 22:12,"905 Washington St, New York City, NY 10001" -204371,Apple Airpods Headphones,1,150,05/28/19 06:59,"256 Cedar St, San Francisco, CA 94016" -204372,Apple Airpods Headphones,1,150,05/25/19 00:12,"938 Church St, Los Angeles, CA 90001" -204373,Bose SoundSport Headphones,1,99.99,05/19/19 11:44,"283 Hill St, San Francisco, CA 94016" -204374,AAA Batteries (4-pack),1,2.99,05/19/19 09:20,"854 Cedar St, San Francisco, CA 94016" -204375,USB-C Charging Cable,1,11.95,05/17/19 09:05,"621 9th St, San Francisco, CA 94016" -204376,Wired Headphones,1,11.99,05/20/19 08:11,"548 Ridge St, Austin, TX 73301" -204377,Wired Headphones,1,11.99,05/30/19 17:39,"411 10th St, Atlanta, GA 30301" -204378,Lightning Charging Cable,1,14.95,05/25/19 19:54,"424 Willow St, Boston, MA 02215" -204379,Lightning Charging Cable,2,14.95,05/30/19 10:16,"247 North St, Los Angeles, CA 90001" -204380,Lightning Charging Cable,1,14.95,05/09/19 14:59,"674 Walnut St, Los Angeles, CA 90001" -204381,Bose SoundSport Headphones,1,99.99,05/13/19 08:08,"462 Cherry St, Boston, MA 02215" -204382,Bose SoundSport Headphones,1,99.99,05/08/19 16:16,"93 Park St, Seattle, WA 98101" -204383,USB-C Charging Cable,1,11.95,05/18/19 19:24,"602 4th St, Atlanta, GA 30301" -204384,27in 4K Gaming Monitor,1,389.99,05/24/19 13:22,"44 Willow St, New York City, NY 10001" -204385,USB-C Charging Cable,1,11.95,05/04/19 05:54,"242 Jackson St, San Francisco, CA 94016" -204386,USB-C Charging Cable,1,11.95,05/24/19 15:48,"632 5th St, Los Angeles, CA 90001" -204387,LG Washing Machine,1,600.0,05/16/19 13:06,"721 1st St, Los Angeles, CA 90001" -204388,AA Batteries (4-pack),1,3.84,05/02/19 22:18,"636 2nd St, Dallas, TX 75001" -204389,27in 4K Gaming Monitor,1,389.99,05/26/19 12:07,"607 11th St, Austin, TX 73301" -204390,Lightning Charging Cable,1,14.95,05/10/19 22:38,"465 Cherry St, Los Angeles, CA 90001" -204391,Wired Headphones,1,11.99,05/04/19 15:52,"538 Hickory St, Austin, TX 73301" -204392,Bose SoundSport Headphones,1,99.99,05/08/19 18:18,"448 7th St, Los Angeles, CA 90001" -204393,Lightning Charging Cable,1,14.95,05/09/19 16:39,"283 Church St, New York City, NY 10001" -204394,Lightning Charging Cable,1,14.95,05/20/19 08:57,"359 2nd St, Los Angeles, CA 90001" -204395,27in FHD Monitor,1,149.99,05/10/19 08:58,"388 Spruce St, Seattle, WA 98101" -204396,AA Batteries (4-pack),1,3.84,05/24/19 14:10,"224 Maple St, Los Angeles, CA 90001" -204397,USB-C Charging Cable,1,11.95,05/13/19 18:41,"997 8th St, Dallas, TX 75001" -204398,Wired Headphones,1,11.99,05/27/19 21:52,"113 Main St, Los Angeles, CA 90001" -204399,Lightning Charging Cable,2,14.95,05/23/19 22:44,"435 Chestnut St, Atlanta, GA 30301" -204400,Apple Airpods Headphones,1,150,05/07/19 22:12,"763 13th St, San Francisco, CA 94016" -204401,AAA Batteries (4-pack),1,2.99,05/10/19 02:41,"309 13th St, San Francisco, CA 94016" -204402,Wired Headphones,1,11.99,05/31/19 00:10,"647 Meadow St, Dallas, TX 75001" -204403,Bose SoundSport Headphones,1,99.99,05/09/19 19:21,"214 2nd St, Boston, MA 02215" -204404,Apple Airpods Headphones,1,150,05/26/19 21:59,"314 Walnut St, Dallas, TX 75001" -204405,AA Batteries (4-pack),1,3.84,05/12/19 17:17,"890 Madison St, San Francisco, CA 94016" -204406,USB-C Charging Cable,2,11.95,05/09/19 11:00,"825 Johnson St, Los Angeles, CA 90001" -204407,Lightning Charging Cable,2,14.95,05/15/19 21:51,"457 Jackson St, San Francisco, CA 94016" -204408,AA Batteries (4-pack),1,3.84,05/17/19 08:37,"295 Center St, Los Angeles, CA 90001" -204409,AA Batteries (4-pack),1,3.84,05/14/19 22:43,"320 Lake St, Atlanta, GA 30301" -204410,AA Batteries (4-pack),2,3.84,05/19/19 21:09,"682 7th St, San Francisco, CA 94016" -204411,20in Monitor,1,109.99,05/15/19 18:11,"708 Jefferson St, Boston, MA 02215" -204412,Google Phone,1,600,05/07/19 07:12,"764 River St, San Francisco, CA 94016" -204412,USB-C Charging Cable,1,11.95,05/07/19 07:12,"764 River St, San Francisco, CA 94016" -204413,Bose SoundSport Headphones,1,99.99,05/29/19 09:31,"685 4th St, San Francisco, CA 94016" -204414,AAA Batteries (4-pack),2,2.99,05/08/19 18:06,"739 Hickory St, Boston, MA 02215" -204415,USB-C Charging Cable,1,11.95,05/02/19 13:19,"662 Maple St, Seattle, WA 98101" -204416,AA Batteries (4-pack),1,3.84,05/18/19 10:33,"303 South St, San Francisco, CA 94016" -204417,Wired Headphones,1,11.99,05/02/19 19:50,"577 Hill St, Seattle, WA 98101" -204418,Flatscreen TV,1,300,05/19/19 16:39,"302 Sunset St, Boston, MA 02215" -204419,iPhone,1,700,05/15/19 15:37,"612 Spruce St, San Francisco, CA 94016" -204420,Lightning Charging Cable,2,14.95,05/16/19 17:06,"626 Maple St, San Francisco, CA 94016" -204421,34in Ultrawide Monitor,1,379.99,05/27/19 16:36,"810 Main St, Portland, OR 97035" -204422,Lightning Charging Cable,1,14.95,05/20/19 17:00,"273 Lincoln St, Boston, MA 02215" -204423,20in Monitor,1,109.99,05/04/19 17:25,"985 5th St, New York City, NY 10001" -204424,Apple Airpods Headphones,1,150,05/24/19 08:15,"888 14th St, New York City, NY 10001" -204425,USB-C Charging Cable,1,11.95,05/05/19 21:51,"649 Willow St, Dallas, TX 75001" -204426,AA Batteries (4-pack),1,3.84,05/27/19 15:23,"591 Lake St, Austin, TX 73301" -204427,Wired Headphones,1,11.99,05/24/19 11:10,"76 Elm St, Dallas, TX 75001" -204428,Lightning Charging Cable,1,14.95,05/04/19 11:10,"347 1st St, Los Angeles, CA 90001" -204429,27in FHD Monitor,1,149.99,05/26/19 06:07,"112 Spruce St, Los Angeles, CA 90001" -204430,iPhone,1,700,05/19/19 13:03,"949 Main St, San Francisco, CA 94016" -204431,Bose SoundSport Headphones,1,99.99,05/19/19 09:02,"788 Forest St, San Francisco, CA 94016" -204432,Flatscreen TV,1,300,05/25/19 08:55,"535 10th St, San Francisco, CA 94016" -204433,Apple Airpods Headphones,1,150,05/03/19 13:46,"846 West St, San Francisco, CA 94016" -204434,AA Batteries (4-pack),1,3.84,05/27/19 19:17,"612 Elm St, San Francisco, CA 94016" -204435,Vareebadd Phone,1,400,05/29/19 20:38,"902 8th St, Seattle, WA 98101" -204436,Apple Airpods Headphones,1,150,05/04/19 20:39,"309 Highland St, San Francisco, CA 94016" -204437,Macbook Pro Laptop,1,1700,05/28/19 12:11,"490 8th St, New York City, NY 10001" -204438,27in FHD Monitor,1,149.99,05/18/19 23:39,"636 West St, Los Angeles, CA 90001" -204439,34in Ultrawide Monitor,1,379.99,05/07/19 08:14,"91 5th St, New York City, NY 10001" -204440,AAA Batteries (4-pack),2,2.99,05/05/19 19:45,"553 11th St, Seattle, WA 98101" -204441,27in FHD Monitor,1,149.99,05/22/19 21:37,"906 Hickory St, Atlanta, GA 30301" -204442,Wired Headphones,1,11.99,05/03/19 22:46,"685 6th St, Seattle, WA 98101" -204443,USB-C Charging Cable,1,11.95,05/02/19 08:48,"241 2nd St, Atlanta, GA 30301" -204443,Apple Airpods Headphones,1,150,05/02/19 08:48,"241 2nd St, Atlanta, GA 30301" -204444,Wired Headphones,1,11.99,05/03/19 19:30,"271 4th St, San Francisco, CA 94016" -204445,27in FHD Monitor,1,149.99,05/20/19 15:10,"104 Adams St, San Francisco, CA 94016" -204446,AA Batteries (4-pack),1,3.84,05/02/19 18:43,"241 Chestnut St, Portland, OR 97035" -204447,Apple Airpods Headphones,1,150,05/26/19 18:24,"365 14th St, Seattle, WA 98101" -204448,Bose SoundSport Headphones,1,99.99,05/12/19 16:58,"454 Washington St, Atlanta, GA 30301" -204449,Wired Headphones,1,11.99,05/09/19 13:17,"367 13th St, San Francisco, CA 94016" -204450,Google Phone,1,600,05/07/19 09:10,"632 13th St, Los Angeles, CA 90001" -204450,Bose SoundSport Headphones,1,99.99,05/07/19 09:10,"632 13th St, Los Angeles, CA 90001" -204451,Lightning Charging Cable,1,14.95,05/11/19 20:31,"219 Chestnut St, Los Angeles, CA 90001" -204452,iPhone,1,700,05/09/19 11:25,"874 4th St, Los Angeles, CA 90001" -204453,Wired Headphones,1,11.99,05/29/19 19:14,"306 Madison St, San Francisco, CA 94016" -204454,Macbook Pro Laptop,1,1700,05/24/19 17:29,"79 14th St, New York City, NY 10001" -204455,27in FHD Monitor,1,149.99,05/23/19 09:02,"319 Ridge St, San Francisco, CA 94016" -204456,Wired Headphones,1,11.99,05/20/19 19:42,"849 Chestnut St, Seattle, WA 98101" -204457,Wired Headphones,1,11.99,05/27/19 09:14,"158 Cherry St, Portland, OR 97035" -204458,USB-C Charging Cable,1,11.95,05/24/19 21:24,"791 River St, Los Angeles, CA 90001" -204459,AAA Batteries (4-pack),1,2.99,05/06/19 02:13,"947 Meadow St, San Francisco, CA 94016" -204460,AAA Batteries (4-pack),1,2.99,05/26/19 00:24,"124 Adams St, Boston, MA 02215" -204461,AA Batteries (4-pack),1,3.84,05/20/19 14:27,"385 Washington St, Atlanta, GA 30301" -204462,AAA Batteries (4-pack),1,2.99,05/13/19 09:41,"239 8th St, San Francisco, CA 94016" -204463,USB-C Charging Cable,1,11.95,05/18/19 16:45,"66 Hill St, San Francisco, CA 94016" -204464,AA Batteries (4-pack),1,3.84,05/31/19 20:49,"891 Pine St, San Francisco, CA 94016" -204465,27in FHD Monitor,1,149.99,05/15/19 11:15,"894 14th St, Austin, TX 73301" -204466,Lightning Charging Cable,2,14.95,05/27/19 10:15,"977 Spruce St, Los Angeles, CA 90001" -204467,AA Batteries (4-pack),1,3.84,05/17/19 06:29,"513 Hickory St, Los Angeles, CA 90001" -204468,Macbook Pro Laptop,1,1700,05/21/19 21:02,"567 North St, Los Angeles, CA 90001" -204469,iPhone,1,700,05/10/19 12:16,"166 Meadow St, Boston, MA 02215" -204470,20in Monitor,1,109.99,05/03/19 14:35,"931 Spruce St, Boston, MA 02215" -204471,USB-C Charging Cable,1,11.95,05/11/19 16:42,"735 5th St, San Francisco, CA 94016" -204472,Lightning Charging Cable,1,14.95,05/03/19 22:42,"512 Highland St, Los Angeles, CA 90001" -204473,Google Phone,1,600,05/12/19 13:06,"176 Highland St, San Francisco, CA 94016" -204474,Apple Airpods Headphones,1,150,05/09/19 20:27,"498 Washington St, Seattle, WA 98101" -204475,Bose SoundSport Headphones,1,99.99,05/05/19 16:08,"242 10th St, Dallas, TX 75001" -204476,Flatscreen TV,1,300,05/23/19 11:34,"648 Dogwood St, New York City, NY 10001" -204477,ThinkPad Laptop,1,999.99,05/30/19 13:58,"890 Dogwood St, New York City, NY 10001" -204478,Lightning Charging Cable,2,14.95,05/08/19 17:33,"713 4th St, Portland, OR 97035" -204479,Lightning Charging Cable,1,14.95,05/21/19 00:09,"153 Lakeview St, Los Angeles, CA 90001" -204480,20in Monitor,1,109.99,05/12/19 23:57,"187 Lincoln St, Portland, OR 97035" -204481,AA Batteries (4-pack),1,3.84,05/06/19 17:38,"317 Willow St, Los Angeles, CA 90001" -204482,27in FHD Monitor,1,149.99,05/14/19 06:02,"333 Ridge St, Atlanta, GA 30301" -204483,Macbook Pro Laptop,1,1700,05/02/19 19:29,"872 Elm St, Portland, OR 97035" -204484,20in Monitor,1,109.99,05/04/19 17:27,"559 Main St, Portland, OR 97035" -204485,USB-C Charging Cable,1,11.95,05/20/19 12:40,"661 4th St, New York City, NY 10001" -204486,AAA Batteries (4-pack),1,2.99,05/14/19 13:44,"980 North St, Boston, MA 02215" -204487,Lightning Charging Cable,2,14.95,05/03/19 12:47,"58 River St, San Francisco, CA 94016" -204488,Lightning Charging Cable,1,14.95,05/15/19 17:11,"257 Ridge St, Dallas, TX 75001" -204489,20in Monitor,1,109.99,05/13/19 20:18,"686 Jefferson St, Boston, MA 02215" -204490,Flatscreen TV,1,300,05/14/19 12:58,"451 11th St, Seattle, WA 98101" -204491,ThinkPad Laptop,1,999.99,05/18/19 16:29,"358 Center St, Dallas, TX 75001" -204492,34in Ultrawide Monitor,1,379.99,05/17/19 18:13,"392 1st St, Boston, MA 02215" -204493,Google Phone,1,600,05/06/19 10:39,"177 13th St, San Francisco, CA 94016" -204493,Wired Headphones,1,11.99,05/06/19 10:39,"177 13th St, San Francisco, CA 94016" -204494,27in 4K Gaming Monitor,1,389.99,05/26/19 19:23,"341 West St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -204495,USB-C Charging Cable,1,11.95,05/24/19 13:57,"841 Meadow St, Atlanta, GA 30301" -204496,Wired Headphones,2,11.99,05/21/19 14:10,"822 North St, Boston, MA 02215" -204497,Wired Headphones,1,11.99,05/28/19 16:03,"702 9th St, Boston, MA 02215" -204498,Wired Headphones,1,11.99,05/01/19 11:36,"179 Willow St, San Francisco, CA 94016" -204499,Wired Headphones,1,11.99,05/09/19 10:43,"123 2nd St, New York City, NY 10001" -204500,20in Monitor,2,109.99,05/26/19 22:02,"466 Jackson St, Dallas, TX 75001" -204501,iPhone,1,700,05/20/19 21:51,"138 Pine St, New York City, NY 10001" -204502,USB-C Charging Cable,1,11.95,05/17/19 22:44,"968 14th St, Seattle, WA 98101" -204503,USB-C Charging Cable,1,11.95,05/25/19 10:55,"898 11th St, San Francisco, CA 94016" -204504,20in Monitor,1,109.99,05/24/19 18:48,"843 Ridge St, Austin, TX 73301" -204505,AA Batteries (4-pack),1,3.84,05/14/19 12:36,"430 Sunset St, Seattle, WA 98101" -204506,USB-C Charging Cable,1,11.95,05/04/19 08:12,"769 Forest St, San Francisco, CA 94016" -204507,AAA Batteries (4-pack),2,2.99,05/18/19 18:00,"270 13th St, Atlanta, GA 30301" -204508,27in FHD Monitor,1,149.99,05/18/19 05:28,"594 14th St, Dallas, TX 75001" -204509,AAA Batteries (4-pack),4,2.99,05/21/19 10:07,"979 West St, San Francisco, CA 94016" -204510,Wired Headphones,1,11.99,05/23/19 08:44,"595 Main St, Atlanta, GA 30301" -204511,Lightning Charging Cable,1,14.95,05/07/19 15:49,"607 Lincoln St, Portland, ME 04101" -204511,27in 4K Gaming Monitor,1,389.99,05/07/19 15:49,"607 Lincoln St, Portland, ME 04101" -204512,AA Batteries (4-pack),1,3.84,05/02/19 13:43,"343 Chestnut St, Atlanta, GA 30301" -204513,AA Batteries (4-pack),1,3.84,05/13/19 10:46,"344 Adams St, Atlanta, GA 30301" -204514,AAA Batteries (4-pack),1,2.99,05/20/19 22:56,"151 Dogwood St, San Francisco, CA 94016" -204515,Wired Headphones,1,11.99,05/19/19 13:21,"333 8th St, New York City, NY 10001" -204516,USB-C Charging Cable,1,11.95,05/31/19 21:45,"632 12th St, Dallas, TX 75001" -204517,Apple Airpods Headphones,1,150,05/17/19 14:48,"842 7th St, San Francisco, CA 94016" -204518,AAA Batteries (4-pack),1,2.99,05/17/19 16:41,"676 Lake St, Seattle, WA 98101" -204519,AA Batteries (4-pack),1,3.84,05/30/19 15:22,"610 West St, Seattle, WA 98101" -204520,AA Batteries (4-pack),1,3.84,05/23/19 14:06,"518 13th St, Seattle, WA 98101" -204521,Lightning Charging Cable,1,14.95,05/28/19 13:25,"668 Madison St, Atlanta, GA 30301" -204522,AA Batteries (4-pack),1,3.84,05/07/19 09:28,"946 Park St, Dallas, TX 75001" -204523,USB-C Charging Cable,1,11.95,05/01/19 11:26,"177 12th St, Seattle, WA 98101" -204524,AAA Batteries (4-pack),1,2.99,05/16/19 16:29,"485 West St, Atlanta, GA 30301" -204525,27in FHD Monitor,1,149.99,05/25/19 08:40,"921 5th St, Los Angeles, CA 90001" -204526,34in Ultrawide Monitor,1,379.99,05/10/19 00:01,"312 Highland St, San Francisco, CA 94016" -204527,AA Batteries (4-pack),1,3.84,05/19/19 09:28,"470 Center St, Los Angeles, CA 90001" -204528,Lightning Charging Cable,1,14.95,05/07/19 14:32,"510 7th St, San Francisco, CA 94016" -204529,USB-C Charging Cable,1,11.95,05/03/19 15:54,"201 Maple St, San Francisco, CA 94016" -204530,ThinkPad Laptop,1,999.99,05/01/19 18:27,"485 Highland St, San Francisco, CA 94016" -204531,USB-C Charging Cable,1,11.95,05/29/19 16:56,"987 Elm St, Boston, MA 02215" -204532,Wired Headphones,1,11.99,05/26/19 18:39,"215 6th St, San Francisco, CA 94016" -204533,AA Batteries (4-pack),3,3.84,05/06/19 19:34,"515 Madison St, San Francisco, CA 94016" -204534,AA Batteries (4-pack),2,3.84,05/04/19 17:01,"352 Spruce St, San Francisco, CA 94016" -204535,Lightning Charging Cable,1,14.95,05/03/19 19:36,"996 South St, Los Angeles, CA 90001" -204536,iPhone,1,700,05/22/19 09:14,"36 Lake St, Los Angeles, CA 90001" -204536,Lightning Charging Cable,1,14.95,05/22/19 09:14,"36 Lake St, Los Angeles, CA 90001" -204537,iPhone,1,700,05/15/19 16:38,"136 Elm St, Los Angeles, CA 90001" -204537,Apple Airpods Headphones,1,150,05/15/19 16:38,"136 Elm St, Los Angeles, CA 90001" -204538,34in Ultrawide Monitor,1,379.99,05/10/19 15:15,"426 Jackson St, Los Angeles, CA 90001" -204539,Apple Airpods Headphones,1,150,05/05/19 17:23,"202 1st St, Boston, MA 02215" -204540,Apple Airpods Headphones,1,150,05/10/19 18:53,"110 Hill St, Dallas, TX 75001" -204540,AAA Batteries (4-pack),1,2.99,05/10/19 18:53,"110 Hill St, Dallas, TX 75001" -204541,Wired Headphones,1,11.99,05/14/19 13:16,"220 Chestnut St, Austin, TX 73301" -204542,AA Batteries (4-pack),1,3.84,05/14/19 09:45,"199 Cherry St, Los Angeles, CA 90001" -204543,Wired Headphones,1,11.99,05/23/19 19:51,"416 River St, San Francisco, CA 94016" -204544,Lightning Charging Cable,1,14.95,05/18/19 08:50,"46 Walnut St, New York City, NY 10001" -204545,Lightning Charging Cable,1,14.95,05/20/19 07:04,"443 West St, Seattle, WA 98101" -204546,Wired Headphones,1,11.99,05/02/19 23:53,"677 South St, Los Angeles, CA 90001" -204547,Macbook Pro Laptop,1,1700,05/19/19 16:03,"318 Hickory St, San Francisco, CA 94016" -204548,Apple Airpods Headphones,1,150,05/25/19 15:32,"468 Willow St, Los Angeles, CA 90001" -204549,LG Washing Machine,1,600.0,05/22/19 13:11,"182 Cedar St, Boston, MA 02215" -204550,27in FHD Monitor,1,149.99,05/15/19 15:01,"803 Center St, New York City, NY 10001" -204551,Macbook Pro Laptop,1,1700,05/19/19 12:26,"632 14th St, Los Angeles, CA 90001" -204552,AA Batteries (4-pack),2,3.84,05/01/19 20:15,"571 Center St, Seattle, WA 98101" -204553,AAA Batteries (4-pack),1,2.99,05/22/19 12:58,"621 11th St, Seattle, WA 98101" -204554,Wired Headphones,1,11.99,05/25/19 08:56,"252 Johnson St, Los Angeles, CA 90001" -204555,AA Batteries (4-pack),1,3.84,05/02/19 09:29,"741 Chestnut St, Dallas, TX 75001" -204556,Bose SoundSport Headphones,1,99.99,05/13/19 22:32,"804 Jackson St, Seattle, WA 98101" -204557,Lightning Charging Cable,1,14.95,05/15/19 08:14,"222 5th St, New York City, NY 10001" -204558,Bose SoundSport Headphones,1,99.99,05/10/19 14:21,"700 Cedar St, Los Angeles, CA 90001" -204559,27in 4K Gaming Monitor,1,389.99,05/08/19 08:57,"12 Spruce St, San Francisco, CA 94016" -204560,Lightning Charging Cable,1,14.95,05/04/19 20:25,"92 Pine St, Dallas, TX 75001" -204561,Flatscreen TV,1,300,05/28/19 18:11,"609 10th St, Seattle, WA 98101" -204562,USB-C Charging Cable,2,11.95,05/29/19 11:35,"176 Chestnut St, New York City, NY 10001" -204563,Wired Headphones,1,11.99,05/26/19 09:30,"290 2nd St, Los Angeles, CA 90001" -204564,Lightning Charging Cable,1,14.95,05/25/19 00:46,"886 Spruce St, Dallas, TX 75001" -204565,Bose SoundSport Headphones,1,99.99,05/07/19 20:00,"121 South St, Dallas, TX 75001" -204566,Lightning Charging Cable,1,14.95,05/06/19 14:01,"679 4th St, Los Angeles, CA 90001" -204567,AA Batteries (4-pack),2,3.84,05/16/19 04:00,"743 14th St, New York City, NY 10001" -204568,AAA Batteries (4-pack),1,2.99,05/31/19 16:12,"4 West St, San Francisco, CA 94016" -204569,27in 4K Gaming Monitor,1,389.99,05/07/19 18:44,"806 7th St, New York City, NY 10001" -204570,Macbook Pro Laptop,1,1700,05/31/19 11:39,"755 Willow St, Los Angeles, CA 90001" -204571,AAA Batteries (4-pack),2,2.99,05/07/19 06:44,"337 2nd St, San Francisco, CA 94016" -204572,Bose SoundSport Headphones,1,99.99,05/27/19 21:08,"8 Meadow St, Boston, MA 02215" -204573,AAA Batteries (4-pack),1,2.99,05/17/19 19:29,"784 5th St, Portland, ME 04101" -204574,Wired Headphones,3,11.99,05/27/19 14:33,"724 6th St, Boston, MA 02215" -204575,USB-C Charging Cable,1,11.95,05/20/19 10:26,"922 Madison St, Portland, OR 97035" -204576,Lightning Charging Cable,1,14.95,05/19/19 19:06,"326 7th St, Los Angeles, CA 90001" -204577,Apple Airpods Headphones,1,150,05/28/19 08:17,"573 Center St, San Francisco, CA 94016" -204578,AAA Batteries (4-pack),1,2.99,05/15/19 21:39,"727 5th St, New York City, NY 10001" -204579,Bose SoundSport Headphones,1,99.99,05/11/19 19:56,"900 Chestnut St, New York City, NY 10001" -204580,iPhone,1,700,05/26/19 10:09,"415 Dogwood St, Boston, MA 02215" -204581,Bose SoundSport Headphones,1,99.99,05/23/19 16:10,"669 Meadow St, San Francisco, CA 94016" -204581,AA Batteries (4-pack),2,3.84,05/23/19 16:10,"669 Meadow St, San Francisco, CA 94016" -204582,iPhone,1,700,05/26/19 20:58,"499 Sunset St, Dallas, TX 75001" -204582,Apple Airpods Headphones,1,150,05/26/19 20:58,"499 Sunset St, Dallas, TX 75001" -204583,Flatscreen TV,1,300,05/02/19 12:41,"861 Willow St, New York City, NY 10001" -204584,27in FHD Monitor,1,149.99,05/18/19 19:41,"88 2nd St, Austin, TX 73301" -204585,Apple Airpods Headphones,1,150,05/07/19 09:21,"574 Maple St, San Francisco, CA 94016" -204586,Lightning Charging Cable,1,14.95,05/29/19 11:11,"324 Lake St, Austin, TX 73301" -204587,AA Batteries (4-pack),1,3.84,05/26/19 16:12,"523 11th St, Portland, OR 97035" -204588,USB-C Charging Cable,1,11.95,05/08/19 10:33,"801 Wilson St, Portland, OR 97035" -204589,27in 4K Gaming Monitor,1,389.99,05/06/19 20:55,"517 Jackson St, Los Angeles, CA 90001" -204590,Flatscreen TV,1,300,05/16/19 23:56,"264 Maple St, San Francisco, CA 94016" -204591,AA Batteries (4-pack),2,3.84,05/10/19 17:30,"739 Hill St, Seattle, WA 98101" -204592,Apple Airpods Headphones,1,150,05/02/19 21:31,"358 Meadow St, Dallas, TX 75001" -204593,USB-C Charging Cable,1,11.95,05/17/19 15:43,"860 5th St, Los Angeles, CA 90001" -204594,Macbook Pro Laptop,1,1700,05/02/19 10:23,"592 11th St, Los Angeles, CA 90001" -204595,34in Ultrawide Monitor,1,379.99,05/23/19 12:19,"607 11th St, San Francisco, CA 94016" -204596,Wired Headphones,1,11.99,05/31/19 18:00,"204 Ridge St, Dallas, TX 75001" -204597,Bose SoundSport Headphones,1,99.99,05/03/19 09:28,"66 4th St, Portland, OR 97035" -204598,Lightning Charging Cable,1,14.95,05/03/19 02:21,"709 Lake St, Seattle, WA 98101" -204599,Lightning Charging Cable,1,14.95,05/05/19 13:00,"249 Willow St, Los Angeles, CA 90001" -204600,Bose SoundSport Headphones,1,99.99,05/13/19 05:27,"592 North St, New York City, NY 10001" -204601,AA Batteries (4-pack),1,3.84,05/10/19 21:05,"845 Chestnut St, Dallas, TX 75001" -204602,Lightning Charging Cable,1,14.95,05/14/19 14:33,"684 8th St, Atlanta, GA 30301" -204603,Vareebadd Phone,1,400,05/05/19 04:55,"537 Pine St, San Francisco, CA 94016" -204604,Apple Airpods Headphones,1,150,05/30/19 14:23,"147 9th St, New York City, NY 10001" -204605,AA Batteries (4-pack),1,3.84,05/10/19 15:53,"271 Church St, Portland, OR 97035" -204606,AA Batteries (4-pack),1,3.84,05/06/19 02:51,"70 Jackson St, San Francisco, CA 94016" -204607,27in 4K Gaming Monitor,1,389.99,05/10/19 18:44,"757 Lake St, Los Angeles, CA 90001" -204608,ThinkPad Laptop,1,999.99,05/01/19 22:53,"693 Forest St, San Francisco, CA 94016" -204609,AAA Batteries (4-pack),1,2.99,05/09/19 09:08,"23 Main St, San Francisco, CA 94016" -204610,AAA Batteries (4-pack),3,2.99,06/01/19 00:51,"34 Adams St, Atlanta, GA 30301" -204611,Lightning Charging Cable,1,14.95,05/16/19 21:48,"451 Park St, San Francisco, CA 94016" -204612,USB-C Charging Cable,1,11.95,05/03/19 16:24,"86 Meadow St, New York City, NY 10001" -204613,Macbook Pro Laptop,1,1700,05/09/19 15:04,"421 Washington St, Dallas, TX 75001" -204614,USB-C Charging Cable,1,11.95,05/17/19 09:34,"541 7th St, Los Angeles, CA 90001" -204615,AA Batteries (4-pack),1,3.84,05/13/19 18:08,"382 Pine St, Dallas, TX 75001" -204616,AA Batteries (4-pack),2,3.84,05/28/19 17:00,"109 Walnut St, Los Angeles, CA 90001" -204617,AA Batteries (4-pack),1,3.84,05/20/19 08:23,"967 Cherry St, Los Angeles, CA 90001" -204618,Apple Airpods Headphones,1,150,05/19/19 19:08,"667 Jefferson St, San Francisco, CA 94016" -204619,Apple Airpods Headphones,1,150,05/13/19 19:26,"508 1st St, Portland, ME 04101" -204620,Apple Airpods Headphones,1,150,05/02/19 11:12,"626 1st St, San Francisco, CA 94016" -204621,Macbook Pro Laptop,1,1700,05/18/19 14:57,"145 Church St, Los Angeles, CA 90001" -204622,Apple Airpods Headphones,1,150,05/29/19 09:40,"150 Hickory St, Boston, MA 02215" -204623,AAA Batteries (4-pack),2,2.99,05/17/19 11:41,"284 Wilson St, Los Angeles, CA 90001" -204624,AAA Batteries (4-pack),1,2.99,05/25/19 11:41,"655 Walnut St, San Francisco, CA 94016" -204625,USB-C Charging Cable,1,11.95,05/25/19 10:57,"621 Forest St, San Francisco, CA 94016" -204626,Apple Airpods Headphones,1,150,05/07/19 00:30,"468 6th St, Boston, MA 02215" -204627,Lightning Charging Cable,1,14.95,05/13/19 17:10,"21 Maple St, Boston, MA 02215" -204628,iPhone,1,700,05/20/19 13:28,"419 Maple St, Dallas, TX 75001" -204629,27in 4K Gaming Monitor,1,389.99,05/12/19 11:31,"26 11th St, Boston, MA 02215" -204630,27in 4K Gaming Monitor,1,389.99,05/27/19 00:49,"459 Hickory St, Los Angeles, CA 90001" -204631,Wired Headphones,1,11.99,05/02/19 12:20,"719 River St, Seattle, WA 98101" -204632,USB-C Charging Cable,1,11.95,05/03/19 18:22,"864 Adams St, Seattle, WA 98101" -204633,AAA Batteries (4-pack),1,2.99,05/02/19 18:30,"377 Cherry St, Dallas, TX 75001" -204634,AAA Batteries (4-pack),1,2.99,05/21/19 19:46,"97 Chestnut St, New York City, NY 10001" -204635,USB-C Charging Cable,1,11.95,05/18/19 16:25,"8 South St, Atlanta, GA 30301" -204636,AA Batteries (4-pack),1,3.84,05/05/19 17:48,"297 Willow St, San Francisco, CA 94016" -204637,Wired Headphones,1,11.99,05/09/19 18:23,"40 2nd St, Los Angeles, CA 90001" -204638,34in Ultrawide Monitor,1,379.99,05/12/19 12:55,"941 North St, San Francisco, CA 94016" -204639,Lightning Charging Cable,1,14.95,05/06/19 01:12,"584 8th St, Portland, ME 04101" -204640,LG Dryer,1,600.0,05/10/19 17:35,"960 Highland St, San Francisco, CA 94016" -204641,AA Batteries (4-pack),2,3.84,05/26/19 11:00,"314 Park St, Los Angeles, CA 90001" -204642,Bose SoundSport Headphones,1,99.99,05/24/19 13:12,"594 Meadow St, Portland, OR 97035" -204643,AAA Batteries (4-pack),1,2.99,05/22/19 22:10,"124 Willow St, New York City, NY 10001" -204644,27in FHD Monitor,1,149.99,05/09/19 06:33,"638 Chestnut St, San Francisco, CA 94016" -204645,Apple Airpods Headphones,1,150,05/21/19 21:58,"128 Maple St, New York City, NY 10001" -204645,20in Monitor,1,109.99,05/21/19 21:58,"128 Maple St, New York City, NY 10001" -204646,Lightning Charging Cable,1,14.95,05/22/19 13:14,"558 Washington St, Dallas, TX 75001" -204647,Lightning Charging Cable,1,14.95,05/04/19 17:18,"891 Washington St, Boston, MA 02215" -204648,Lightning Charging Cable,1,14.95,05/15/19 03:34,"842 River St, San Francisco, CA 94016" -204649,AA Batteries (4-pack),1,3.84,05/09/19 14:15,"228 Pine St, Austin, TX 73301" -204650,AA Batteries (4-pack),1,3.84,05/21/19 16:01,"403 Center St, San Francisco, CA 94016" -204651,AA Batteries (4-pack),2,3.84,05/13/19 11:34,"711 12th St, New York City, NY 10001" -204652,Bose SoundSport Headphones,1,99.99,05/28/19 19:09,"637 Walnut St, Seattle, WA 98101" -204653,iPhone,1,700,05/18/19 14:45,"415 2nd St, San Francisco, CA 94016" -204654,Wired Headphones,1,11.99,05/25/19 09:31,"770 Lincoln St, Boston, MA 02215" -204655,Bose SoundSport Headphones,1,99.99,05/02/19 08:31,"894 13th St, Los Angeles, CA 90001" -204656,Lightning Charging Cable,2,14.95,05/25/19 14:19,"62 8th St, Austin, TX 73301" -204657,Wired Headphones,1,11.99,05/09/19 23:33,"337 4th St, San Francisco, CA 94016" -204658,USB-C Charging Cable,1,11.95,05/07/19 19:36,"859 Forest St, Atlanta, GA 30301" -204659,USB-C Charging Cable,1,11.95,05/13/19 18:37,"953 4th St, Austin, TX 73301" -204660,27in FHD Monitor,1,149.99,05/21/19 22:28,"313 Church St, New York City, NY 10001" -204661,Bose SoundSport Headphones,1,99.99,05/08/19 12:29,"223 Lake St, Dallas, TX 75001" -204662,AA Batteries (4-pack),5,3.84,05/12/19 23:05,"867 Wilson St, Portland, OR 97035" -204663,USB-C Charging Cable,1,11.95,05/13/19 09:20,"169 10th St, Atlanta, GA 30301" -204664,Wired Headphones,1,11.99,05/27/19 08:58,"101 Lincoln St, Seattle, WA 98101" -204665,AAA Batteries (4-pack),4,2.99,05/13/19 11:11,"932 Elm St, Seattle, WA 98101" -204666,Lightning Charging Cable,2,14.95,05/05/19 17:13,"240 Main St, San Francisco, CA 94016" -204667,ThinkPad Laptop,1,999.99,05/18/19 07:22,"999 Madison St, Dallas, TX 75001" -204668,iPhone,1,700,05/25/19 10:02,"302 14th St, Austin, TX 73301" -204669,Wired Headphones,1,11.99,05/31/19 11:28,"323 Ridge St, Portland, OR 97035" -204670,LG Dryer,1,600.0,05/20/19 12:00,"87 Lake St, Seattle, WA 98101" -204671,Wired Headphones,1,11.99,05/24/19 10:19,"588 Lake St, Atlanta, GA 30301" -204672,Wired Headphones,2,11.99,05/11/19 21:41,"603 11th St, Dallas, TX 75001" -204673,AAA Batteries (4-pack),1,2.99,05/08/19 20:53,"190 Hickory St, Seattle, WA 98101" -204674,Vareebadd Phone,1,400,05/29/19 10:54,"7 Maple St, Austin, TX 73301" -204675,Flatscreen TV,1,300,05/28/19 23:08,"601 9th St, San Francisco, CA 94016" -204676,AAA Batteries (4-pack),2,2.99,05/19/19 15:23,"811 Center St, Dallas, TX 75001" -204677,AAA Batteries (4-pack),1,2.99,05/02/19 21:28,"839 Meadow St, New York City, NY 10001" -204678,AAA Batteries (4-pack),2,2.99,05/17/19 20:56,"658 West St, Portland, OR 97035" -204679,Bose SoundSport Headphones,1,99.99,05/15/19 08:53,"527 Lincoln St, San Francisco, CA 94016" -204680,USB-C Charging Cable,2,11.95,05/22/19 08:26,"996 Dogwood St, Austin, TX 73301" -204681,AA Batteries (4-pack),1,3.84,05/29/19 20:03,"385 Chestnut St, San Francisco, CA 94016" -204682,27in FHD Monitor,1,149.99,05/25/19 10:43,"47 2nd St, San Francisco, CA 94016" -204683,Apple Airpods Headphones,1,150,05/14/19 10:37,"725 6th St, Austin, TX 73301" -204684,Lightning Charging Cable,1,14.95,05/29/19 14:21,"384 Main St, Boston, MA 02215" -204685,27in FHD Monitor,1,149.99,05/20/19 12:46,"164 West St, San Francisco, CA 94016" -204686,iPhone,1,700,05/23/19 12:19,"53 Cherry St, Dallas, TX 75001" -204686,27in 4K Gaming Monitor,1,389.99,05/23/19 12:19,"53 Cherry St, Dallas, TX 75001" -204687,Apple Airpods Headphones,1,150,05/27/19 22:20,"311 Elm St, New York City, NY 10001" -204688,Wired Headphones,1,11.99,05/29/19 06:54,"598 Jefferson St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -204689,Bose SoundSport Headphones,1,99.99,05/14/19 21:54,"486 Washington St, Portland, OR 97035" -204690,27in 4K Gaming Monitor,1,389.99,05/11/19 15:17,"884 1st St, San Francisco, CA 94016" -204691,Wired Headphones,1,11.99,05/03/19 05:53,"240 Park St, San Francisco, CA 94016" -204692,Apple Airpods Headphones,1,150,05/26/19 22:16,"811 Jefferson St, Dallas, TX 75001" -204693,iPhone,1,700,05/11/19 12:47,"474 13th St, Boston, MA 02215" -204694,AA Batteries (4-pack),2,3.84,05/29/19 23:58,"33 Jackson St, San Francisco, CA 94016" -204695,Google Phone,1,600,05/19/19 14:08,"106 Park St, Los Angeles, CA 90001" -204696,AAA Batteries (4-pack),2,2.99,05/06/19 15:10,"238 Lincoln St, San Francisco, CA 94016" -204697,Wired Headphones,1,11.99,05/01/19 17:02,"683 Willow St, San Francisco, CA 94016" -204698,Bose SoundSport Headphones,1,99.99,05/03/19 23:21,"349 Sunset St, Portland, OR 97035" -204699,Lightning Charging Cable,1,14.95,05/29/19 08:25,"213 Ridge St, New York City, NY 10001" -204700,AAA Batteries (4-pack),2,2.99,05/14/19 22:41,"553 River St, San Francisco, CA 94016" -204701,Apple Airpods Headphones,1,150,05/28/19 12:41,"723 Adams St, San Francisco, CA 94016" -204702,Google Phone,1,600,05/11/19 11:18,"567 10th St, Dallas, TX 75001" -204703,20in Monitor,1,109.99,05/14/19 08:20,"792 Forest St, Portland, OR 97035" -204704,Apple Airpods Headphones,1,150,05/13/19 22:00,"171 Lakeview St, Seattle, WA 98101" -204705,AAA Batteries (4-pack),2,2.99,05/25/19 16:04,"258 Madison St, Boston, MA 02215" -204706,AAA Batteries (4-pack),3,2.99,05/01/19 10:07,"873 Jackson St, San Francisco, CA 94016" -204707,Wired Headphones,1,11.99,05/16/19 09:53,"58 Willow St, Seattle, WA 98101" -204708,Macbook Pro Laptop,1,1700,05/12/19 16:53,"439 Cedar St, New York City, NY 10001" -204709,AA Batteries (4-pack),1,3.84,05/06/19 10:21,"917 Park St, Dallas, TX 75001" -204710,Wired Headphones,1,11.99,05/30/19 12:48,"512 14th St, Dallas, TX 75001" -204711,Flatscreen TV,1,300,05/07/19 13:17,"631 Park St, Dallas, TX 75001" -204712,AA Batteries (4-pack),1,3.84,05/11/19 12:06,"812 Ridge St, San Francisco, CA 94016" -204713,27in FHD Monitor,1,149.99,05/11/19 23:01,"524 4th St, Portland, OR 97035" -204714,Lightning Charging Cable,1,14.95,05/10/19 11:16,"896 Wilson St, Austin, TX 73301" -204715,Wired Headphones,1,11.99,05/13/19 21:28,"851 Chestnut St, Boston, MA 02215" -204716,AAA Batteries (4-pack),2,2.99,05/05/19 18:11,"496 Lincoln St, San Francisco, CA 94016" -204717,Lightning Charging Cable,1,14.95,05/26/19 08:20,"665 Washington St, Seattle, WA 98101" -204718,USB-C Charging Cable,1,11.95,05/08/19 14:14,"677 Dogwood St, Portland, OR 97035" -204719,USB-C Charging Cable,1,11.95,05/12/19 13:28,"550 Wilson St, Boston, MA 02215" -204720,Lightning Charging Cable,1,14.95,05/20/19 20:01,"491 Cedar St, San Francisco, CA 94016" -204721,Wired Headphones,1,11.99,05/20/19 19:16,"680 North St, New York City, NY 10001" -204722,ThinkPad Laptop,1,999.99,05/08/19 19:32,"594 South St, New York City, NY 10001" -204723,27in FHD Monitor,1,149.99,05/19/19 16:57,"938 Lincoln St, Boston, MA 02215" -204724,Lightning Charging Cable,1,14.95,05/30/19 21:08,"556 Wilson St, Atlanta, GA 30301" -204725,27in 4K Gaming Monitor,1,389.99,05/19/19 20:17,"416 Wilson St, Atlanta, GA 30301" -204726,Lightning Charging Cable,1,14.95,05/07/19 12:36,"207 Lincoln St, New York City, NY 10001" -204727,AAA Batteries (4-pack),5,2.99,05/15/19 17:56,"194 Willow St, Dallas, TX 75001" -204728,Google Phone,1,600,05/10/19 10:16,"671 Dogwood St, Atlanta, GA 30301" -204729,Bose SoundSport Headphones,1,99.99,05/18/19 19:00,"957 North St, Seattle, WA 98101" -204730,27in FHD Monitor,1,149.99,05/05/19 14:46,"69 Forest St, Atlanta, GA 30301" -204731,Lightning Charging Cable,1,14.95,05/22/19 18:40,"907 Park St, Boston, MA 02215" -204732,USB-C Charging Cable,1,11.95,05/17/19 16:29,"605 10th St, New York City, NY 10001" -204733,AAA Batteries (4-pack),2,2.99,05/12/19 12:28,"319 14th St, San Francisco, CA 94016" -204734,Flatscreen TV,1,300,05/13/19 21:12,"307 14th St, San Francisco, CA 94016" -204735,Vareebadd Phone,1,400,05/26/19 08:59,"402 4th St, New York City, NY 10001" -204736,34in Ultrawide Monitor,1,379.99,05/15/19 15:58,"34 Washington St, Portland, ME 04101" -204737,AA Batteries (4-pack),1,3.84,05/20/19 13:26,"510 Center St, Atlanta, GA 30301" -204738,Wired Headphones,1,11.99,05/22/19 11:31,"347 10th St, San Francisco, CA 94016" -204739,Lightning Charging Cable,1,14.95,05/20/19 15:53,"413 8th St, San Francisco, CA 94016" -204740,AAA Batteries (4-pack),1,2.99,05/27/19 23:31,"599 1st St, Seattle, WA 98101" -204741,Wired Headphones,1,11.99,05/31/19 08:08,"121 Walnut St, San Francisco, CA 94016" -204742,Google Phone,1,600,05/01/19 19:47,"603 Wilson St, San Francisco, CA 94016" -204742,USB-C Charging Cable,1,11.95,05/01/19 19:47,"603 Wilson St, San Francisco, CA 94016" -204743,AAA Batteries (4-pack),1,2.99,05/22/19 18:07,"631 10th St, Boston, MA 02215" -204744,27in FHD Monitor,1,149.99,05/03/19 08:39,"592 12th St, Los Angeles, CA 90001" -204745,iPhone,1,700,05/27/19 18:31,"204 Madison St, San Francisco, CA 94016" -204746,AAA Batteries (4-pack),1,2.99,05/13/19 13:31,"98 Forest St, New York City, NY 10001" -204747,Apple Airpods Headphones,1,150,05/11/19 21:36,"540 4th St, Seattle, WA 98101" -204748,Lightning Charging Cable,1,14.95,05/27/19 17:35,"209 Hickory St, Atlanta, GA 30301" -204749,Vareebadd Phone,1,400,05/27/19 06:57,"502 Church St, New York City, NY 10001" -204750,AA Batteries (4-pack),1,3.84,05/11/19 07:34,"282 Jefferson St, Boston, MA 02215" -204751,Macbook Pro Laptop,1,1700,05/02/19 15:06,"871 South St, New York City, NY 10001" -204752,Apple Airpods Headphones,1,150,05/21/19 13:44,"638 Lakeview St, San Francisco, CA 94016" -204753,AA Batteries (4-pack),1,3.84,05/21/19 15:54,"741 Adams St, Austin, TX 73301" -204754,LG Washing Machine,1,600.0,05/12/19 11:04,"313 Meadow St, San Francisco, CA 94016" -204755,USB-C Charging Cable,1,11.95,05/30/19 07:46,"514 Walnut St, Los Angeles, CA 90001" -204756,AAA Batteries (4-pack),1,2.99,05/12/19 20:04,"138 Elm St, San Francisco, CA 94016" -204757,Lightning Charging Cable,1,14.95,05/08/19 21:58,"675 Washington St, Boston, MA 02215" -204758,Wired Headphones,1,11.99,05/15/19 17:33,"303 West St, Atlanta, GA 30301" -204759,iPhone,1,700,05/05/19 21:55,"139 Jefferson St, Boston, MA 02215" -204760,AAA Batteries (4-pack),1,2.99,05/27/19 21:01,"376 2nd St, Dallas, TX 75001" -204761,Wired Headphones,1,11.99,05/02/19 12:20,"37 11th St, New York City, NY 10001" -204762,AA Batteries (4-pack),1,3.84,05/12/19 22:27,"892 North St, Dallas, TX 75001" -204763,iPhone,1,700,05/02/19 20:07,"544 Johnson St, San Francisco, CA 94016" -204764,Wired Headphones,1,11.99,05/30/19 14:30,"569 Chestnut St, Boston, MA 02215" -204765,Wired Headphones,1,11.99,05/05/19 10:19,"441 Church St, San Francisco, CA 94016" -204766,Bose SoundSport Headphones,1,99.99,05/11/19 18:49,"341 River St, New York City, NY 10001" -204767,Lightning Charging Cable,1,14.95,05/10/19 23:26,"22 10th St, Atlanta, GA 30301" -204768,ThinkPad Laptop,1,999.99,05/05/19 17:09,"901 North St, San Francisco, CA 94016" -204769,Lightning Charging Cable,1,14.95,05/16/19 07:38,"541 Walnut St, Boston, MA 02215" -204770,iPhone,1,700,05/04/19 11:58,"546 Hickory St, Boston, MA 02215" -204771,Google Phone,1,600,05/09/19 13:10,"938 Jefferson St, Boston, MA 02215" -204772,Bose SoundSport Headphones,1,99.99,05/07/19 23:30,"870 2nd St, San Francisco, CA 94016" -204773,USB-C Charging Cable,1,11.95,05/15/19 22:12,"437 8th St, Seattle, WA 98101" -204774,USB-C Charging Cable,1,11.95,05/11/19 17:36,"436 South St, Dallas, TX 75001" -204775,Wired Headphones,1,11.99,05/05/19 07:58,"649 Adams St, Los Angeles, CA 90001" -204776,Lightning Charging Cable,1,14.95,05/20/19 19:39,"331 Cedar St, Atlanta, GA 30301" -204777,Bose SoundSport Headphones,1,99.99,05/05/19 16:03,"182 Forest St, San Francisco, CA 94016" -204778,Google Phone,1,600,05/23/19 11:51,"455 Dogwood St, Boston, MA 02215" -204779,27in FHD Monitor,1,149.99,05/19/19 13:01,"397 Meadow St, San Francisco, CA 94016" -204780,Wired Headphones,1,11.99,05/09/19 01:09,"786 11th St, New York City, NY 10001" -204781,USB-C Charging Cable,1,11.95,05/19/19 17:18,"387 Jefferson St, Atlanta, GA 30301" -204782,iPhone,1,700,05/31/19 13:42,"618 Highland St, Los Angeles, CA 90001" -204783,Macbook Pro Laptop,1,1700,05/08/19 07:45,"324 2nd St, Seattle, WA 98101" -204784,34in Ultrawide Monitor,1,379.99,05/19/19 16:26,"287 South St, New York City, NY 10001" -204785,27in FHD Monitor,1,149.99,05/25/19 10:50,"516 Maple St, Dallas, TX 75001" -204786,AAA Batteries (4-pack),1,2.99,05/16/19 12:04,"523 River St, Atlanta, GA 30301" -204787,Apple Airpods Headphones,1,150,05/20/19 20:45,"598 Willow St, New York City, NY 10001" -204788,AA Batteries (4-pack),1,3.84,05/21/19 10:15,"492 Ridge St, Los Angeles, CA 90001" -204789,Lightning Charging Cable,1,14.95,05/05/19 18:52,"925 Main St, New York City, NY 10001" -204790,AA Batteries (4-pack),2,3.84,05/16/19 20:35,"450 Hill St, Los Angeles, CA 90001" -204791,AAA Batteries (4-pack),1,2.99,05/07/19 09:31,"361 Lakeview St, Portland, OR 97035" -204792,Wired Headphones,1,11.99,05/09/19 16:37,"190 Highland St, Los Angeles, CA 90001" -204793,Lightning Charging Cable,1,14.95,05/07/19 21:32,"932 1st St, Los Angeles, CA 90001" -204794,AAA Batteries (4-pack),1,2.99,05/14/19 10:46,"391 Johnson St, Los Angeles, CA 90001" -204795,AAA Batteries (4-pack),1,2.99,05/24/19 10:39,"936 6th St, San Francisco, CA 94016" -204796,AA Batteries (4-pack),1,3.84,05/28/19 22:07,"573 Ridge St, New York City, NY 10001" -204797,Macbook Pro Laptop,1,1700,05/31/19 07:55,"398 Pine St, Boston, MA 02215" -204798,AAA Batteries (4-pack),1,2.99,05/10/19 01:51,"566 South St, Boston, MA 02215" -204799,AA Batteries (4-pack),1,3.84,05/21/19 20:28,"380 River St, Seattle, WA 98101" -204800,AA Batteries (4-pack),1,3.84,05/03/19 21:43,"402 Walnut St, Los Angeles, CA 90001" -204801,ThinkPad Laptop,1,999.99,05/28/19 19:45,"356 Meadow St, San Francisco, CA 94016" -204802,AAA Batteries (4-pack),4,2.99,05/30/19 09:10,"496 South St, Dallas, TX 75001" -204803,USB-C Charging Cable,1,11.95,05/16/19 18:57,"207 Center St, New York City, NY 10001" -204804,ThinkPad Laptop,1,999.99,05/15/19 09:14,"102 Jefferson St, San Francisco, CA 94016" -204805,USB-C Charging Cable,1,11.95,05/16/19 13:20,"765 Lincoln St, New York City, NY 10001" -204806,Lightning Charging Cable,1,14.95,05/09/19 13:30,"435 Park St, New York City, NY 10001" -204807,Wired Headphones,1,11.99,05/17/19 14:57,"885 Cedar St, New York City, NY 10001" -204808,Apple Airpods Headphones,1,150,05/18/19 21:00,"666 Main St, San Francisco, CA 94016" -204809,Flatscreen TV,1,300,05/24/19 16:39,"750 6th St, Dallas, TX 75001" -204810,AAA Batteries (4-pack),1,2.99,05/22/19 18:01,"317 Meadow St, Portland, OR 97035" -204811,Macbook Pro Laptop,1,1700,05/27/19 12:41,"113 Ridge St, Los Angeles, CA 90001" -204812,Bose SoundSport Headphones,1,99.99,05/14/19 16:54,"293 Sunset St, Boston, MA 02215" -204813,USB-C Charging Cable,1,11.95,05/29/19 16:37,"720 Dogwood St, New York City, NY 10001" -204814,iPhone,1,700,05/30/19 20:49,"570 2nd St, Los Angeles, CA 90001" -204815,AA Batteries (4-pack),2,3.84,05/14/19 17:23,"210 Forest St, Los Angeles, CA 90001" -204816,Flatscreen TV,1,300,05/09/19 19:46,"16 Lake St, Los Angeles, CA 90001" -204817,AAA Batteries (4-pack),2,2.99,05/13/19 14:55,"951 North St, Atlanta, GA 30301" -204818,iPhone,1,700,05/01/19 19:09,"211 14th St, Portland, ME 04101" -204818,Wired Headphones,1,11.99,05/01/19 19:09,"211 14th St, Portland, ME 04101" -204819,Lightning Charging Cable,1,14.95,05/21/19 11:01,"28 West St, San Francisco, CA 94016" -204820,AA Batteries (4-pack),1,3.84,05/28/19 23:52,"82 2nd St, Dallas, TX 75001" -204821,Vareebadd Phone,1,400,05/14/19 23:33,"385 Sunset St, San Francisco, CA 94016" -204822,Wired Headphones,1,11.99,05/04/19 17:24,"955 Hill St, San Francisco, CA 94016" -204823,USB-C Charging Cable,1,11.95,05/29/19 14:53,"984 4th St, San Francisco, CA 94016" -204824,AA Batteries (4-pack),1,3.84,05/02/19 19:36,"297 Spruce St, Atlanta, GA 30301" -204825,34in Ultrawide Monitor,1,379.99,05/25/19 20:48,"386 Meadow St, Boston, MA 02215" -204826,Bose SoundSport Headphones,1,99.99,05/31/19 21:18,"692 7th St, New York City, NY 10001" -204826,Wired Headphones,1,11.99,05/31/19 21:18,"692 7th St, New York City, NY 10001" -204827,Bose SoundSport Headphones,1,99.99,05/17/19 23:22,"598 Jefferson St, San Francisco, CA 94016" -204828,USB-C Charging Cable,1,11.95,05/17/19 19:35,"842 Park St, Dallas, TX 75001" -204829,ThinkPad Laptop,1,999.99,05/11/19 13:40,"794 Willow St, Los Angeles, CA 90001" -204830,Wired Headphones,1,11.99,05/30/19 17:04,"682 Dogwood St, New York City, NY 10001" -204831,27in FHD Monitor,1,149.99,05/31/19 19:43,"534 Wilson St, New York City, NY 10001" -204832,AAA Batteries (4-pack),1,2.99,05/02/19 07:45,"122 Lakeview St, New York City, NY 10001" -204833,Wired Headphones,1,11.99,05/12/19 15:15,"474 Dogwood St, San Francisco, CA 94016" -204834,Bose SoundSport Headphones,1,99.99,05/17/19 01:43,"411 Washington St, Boston, MA 02215" -204835,USB-C Charging Cable,1,11.95,05/07/19 10:26,"284 Chestnut St, San Francisco, CA 94016" -204836,AAA Batteries (4-pack),1,2.99,05/31/19 12:57,"625 13th St, New York City, NY 10001" -204837,AA Batteries (4-pack),3,3.84,05/04/19 19:31,"41 Chestnut St, Portland, OR 97035" -204838,AA Batteries (4-pack),1,3.84,05/06/19 12:35,"478 Willow St, Atlanta, GA 30301" -204839,Google Phone,1,600,05/14/19 16:56,"34 Madison St, Seattle, WA 98101" -204840,AAA Batteries (4-pack),1,2.99,05/27/19 23:11,"84 West St, Los Angeles, CA 90001" -204841,Flatscreen TV,1,300,05/11/19 13:23,"434 Center St, San Francisco, CA 94016" -204842,AA Batteries (4-pack),1,3.84,05/24/19 11:59,"361 Cherry St, Los Angeles, CA 90001" -204843,USB-C Charging Cable,1,11.95,05/11/19 08:36,"920 Highland St, Dallas, TX 75001" -204844,AA Batteries (4-pack),2,3.84,05/17/19 17:23,"235 Church St, Los Angeles, CA 90001" -204845,Wired Headphones,1,11.99,05/21/19 09:18,"128 8th St, San Francisco, CA 94016" -204846,Apple Airpods Headphones,1,150,05/28/19 16:56,"616 Wilson St, New York City, NY 10001" -204847,Wired Headphones,1,11.99,05/05/19 17:10,"808 Lakeview St, San Francisco, CA 94016" -204848,AAA Batteries (4-pack),2,2.99,05/30/19 20:20,"378 Hill St, San Francisco, CA 94016" -204849,Apple Airpods Headphones,1,150,05/26/19 14:58,"381 Dogwood St, San Francisco, CA 94016" -204850,Wired Headphones,1,11.99,05/06/19 11:43,"652 Adams St, New York City, NY 10001" -204851,AAA Batteries (4-pack),1,2.99,05/01/19 16:03,"104 Lake St, Seattle, WA 98101" -204852,Wired Headphones,1,11.99,05/26/19 00:22,"732 2nd St, Atlanta, GA 30301" -204853,USB-C Charging Cable,1,11.95,05/14/19 15:12,"652 Church St, Boston, MA 02215" -204854,27in FHD Monitor,1,149.99,05/08/19 22:03,"712 7th St, Los Angeles, CA 90001" -204855,USB-C Charging Cable,1,11.95,05/31/19 14:10,"361 Walnut St, Seattle, WA 98101" -204856,Wired Headphones,1,11.99,05/02/19 23:57,"297 14th St, Portland, OR 97035" -204857,ThinkPad Laptop,1,999.99,05/27/19 22:27,"289 12th St, Atlanta, GA 30301" -204858,AAA Batteries (4-pack),1,2.99,05/12/19 20:12,"729 South St, Los Angeles, CA 90001" -204859,AA Batteries (4-pack),1,3.84,05/20/19 22:27,"916 4th St, New York City, NY 10001" -204860,Lightning Charging Cable,1,14.95,05/05/19 17:32,"744 Jackson St, Portland, OR 97035" -204861,Apple Airpods Headphones,1,150,05/30/19 13:05,"994 Sunset St, San Francisco, CA 94016" -204862,27in FHD Monitor,1,149.99,05/14/19 09:31,"108 Jackson St, San Francisco, CA 94016" -204863,Apple Airpods Headphones,1,150,05/29/19 23:13,"897 Willow St, Boston, MA 02215" -204864,AAA Batteries (4-pack),5,2.99,05/20/19 12:07,"648 Pine St, San Francisco, CA 94016" -204865,USB-C Charging Cable,1,11.95,05/04/19 18:43,"388 Sunset St, San Francisco, CA 94016" -204866,Apple Airpods Headphones,1,150,05/25/19 13:08,"515 Cherry St, San Francisco, CA 94016" -204867,AA Batteries (4-pack),1,3.84,05/20/19 10:52,"880 Elm St, Los Angeles, CA 90001" -204868,Google Phone,1,600,05/17/19 09:13,"340 Ridge St, New York City, NY 10001" -204868,USB-C Charging Cable,1,11.95,05/17/19 09:13,"340 Ridge St, New York City, NY 10001" -204868,Wired Headphones,1,11.99,05/17/19 09:13,"340 Ridge St, New York City, NY 10001" -204869,Wired Headphones,1,11.99,05/04/19 10:46,"27 West St, Dallas, TX 75001" -204870,AAA Batteries (4-pack),3,2.99,05/14/19 18:07,"897 12th St, Los Angeles, CA 90001" -204871,Vareebadd Phone,1,400,05/19/19 18:56,"283 Jefferson St, San Francisco, CA 94016" -204872,USB-C Charging Cable,1,11.95,05/05/19 11:20,"966 Park St, New York City, NY 10001" -204873,Apple Airpods Headphones,1,150,05/01/19 13:16,"887 Church St, Portland, OR 97035" -204874,Lightning Charging Cable,1,14.95,05/07/19 20:16,"248 River St, San Francisco, CA 94016" -204875,Wired Headphones,1,11.99,05/23/19 18:54,"594 Cedar St, Seattle, WA 98101" -204876,Lightning Charging Cable,1,14.95,05/09/19 10:43,"956 Johnson St, Boston, MA 02215" -204877,27in 4K Gaming Monitor,1,389.99,05/08/19 18:20,"48 Cedar St, Boston, MA 02215" -204878,AAA Batteries (4-pack),1,2.99,05/22/19 21:25,"590 2nd St, San Francisco, CA 94016" -204879,34in Ultrawide Monitor,1,379.99,05/26/19 22:16,"836 Church St, Los Angeles, CA 90001" -204880,Apple Airpods Headphones,1,150,05/25/19 20:47,"270 Adams St, San Francisco, CA 94016" -204881,Vareebadd Phone,1,400,05/26/19 16:09,"631 Church St, San Francisco, CA 94016" -204882,Lightning Charging Cable,1,14.95,05/05/19 14:57,"723 Forest St, Boston, MA 02215" -204883,USB-C Charging Cable,1,11.95,05/01/19 19:20,"747 Spruce St, Seattle, WA 98101" -204884,Apple Airpods Headphones,1,150,05/03/19 14:18,"913 Adams St, San Francisco, CA 94016" -204885,27in 4K Gaming Monitor,1,389.99,05/21/19 18:14,"364 8th St, San Francisco, CA 94016" -204886,Lightning Charging Cable,1,14.95,05/02/19 19:42,"45 6th St, New York City, NY 10001" -204887,20in Monitor,1,109.99,05/02/19 07:21,"715 Park St, Boston, MA 02215" -204888,USB-C Charging Cable,1,11.95,05/18/19 14:47,"83 5th St, Seattle, WA 98101" -204889,27in 4K Gaming Monitor,1,389.99,05/14/19 19:26,"117 Church St, New York City, NY 10001" -204890,Bose SoundSport Headphones,1,99.99,05/19/19 11:30,"319 Church St, Atlanta, GA 30301" -204891,Apple Airpods Headphones,1,150,05/14/19 17:12,"407 Jackson St, New York City, NY 10001" -204892,Wired Headphones,1,11.99,05/10/19 20:38,"669 Cherry St, Boston, MA 02215" -204893,Apple Airpods Headphones,1,150,05/02/19 08:51,"594 Park St, Dallas, TX 75001" -204894,Wired Headphones,2,11.99,05/20/19 17:09,"366 13th St, San Francisco, CA 94016" -204895,AA Batteries (4-pack),2,3.84,05/12/19 13:10,"47 6th St, Boston, MA 02215" -204896,Lightning Charging Cable,1,14.95,05/16/19 14:46,"504 Forest St, Los Angeles, CA 90001" -204897,Wired Headphones,1,11.99,05/30/19 19:13,"692 Willow St, Portland, OR 97035" -204898,USB-C Charging Cable,2,11.95,05/19/19 12:42,"244 9th St, New York City, NY 10001" -204899,USB-C Charging Cable,2,11.95,05/26/19 10:59,"800 13th St, San Francisco, CA 94016" -204899,AAA Batteries (4-pack),1,2.99,05/26/19 10:59,"800 13th St, San Francisco, CA 94016" -204900,AA Batteries (4-pack),1,3.84,05/26/19 17:51,"968 Main St, San Francisco, CA 94016" -204901,Macbook Pro Laptop,1,1700,05/12/19 17:07,"52 11th St, Los Angeles, CA 90001" -204902,Wired Headphones,1,11.99,05/04/19 16:08,"774 Park St, Boston, MA 02215" -204903,Lightning Charging Cable,1,14.95,05/22/19 19:16,"58 Lake St, Los Angeles, CA 90001" -204904,Apple Airpods Headphones,1,150,05/18/19 20:54,"244 Cherry St, Los Angeles, CA 90001" -204905,AAA Batteries (4-pack),1,2.99,05/26/19 18:47,"557 Walnut St, Seattle, WA 98101" -204906,USB-C Charging Cable,1,11.95,05/09/19 13:49,"908 Jackson St, Los Angeles, CA 90001" -204907,AAA Batteries (4-pack),1,2.99,05/05/19 11:38,"123 Walnut St, Los Angeles, CA 90001" -204908,27in FHD Monitor,1,149.99,05/07/19 21:29,"13 12th St, Los Angeles, CA 90001" -204909,Bose SoundSport Headphones,1,99.99,05/24/19 22:15,"55 Lakeview St, New York City, NY 10001" -204910,Macbook Pro Laptop,1,1700,05/28/19 00:20,"979 Chestnut St, San Francisco, CA 94016" -204911,34in Ultrawide Monitor,1,379.99,05/18/19 11:59,"844 Pine St, Boston, MA 02215" -204912,Flatscreen TV,1,300,05/08/19 19:37,"285 Chestnut St, Boston, MA 02215" -204913,Lightning Charging Cable,1,14.95,05/20/19 15:59,"137 14th St, Austin, TX 73301" -204914,LG Washing Machine,1,600.0,05/25/19 20:49,"649 Lakeview St, Dallas, TX 75001" -204914,20in Monitor,1,109.99,05/25/19 20:49,"649 Lakeview St, Dallas, TX 75001" -204915,AA Batteries (4-pack),1,3.84,05/23/19 12:14,"178 Dogwood St, Atlanta, GA 30301" -204916,ThinkPad Laptop,1,999.99,05/26/19 12:44,"419 Cedar St, Boston, MA 02215" -204917,AA Batteries (4-pack),3,3.84,05/30/19 22:45,"65 Wilson St, Portland, OR 97035" -204918,Lightning Charging Cable,1,14.95,05/01/19 08:21,"408 12th St, Seattle, WA 98101" -204919,AAA Batteries (4-pack),2,2.99,05/24/19 20:47,"497 Walnut St, Los Angeles, CA 90001" -204920,USB-C Charging Cable,1,11.95,05/27/19 12:55,"613 14th St, San Francisco, CA 94016" -204921,Wired Headphones,1,11.99,05/28/19 09:08,"156 West St, Austin, TX 73301" -204922,Bose SoundSport Headphones,1,99.99,05/31/19 10:51,"274 Elm St, New York City, NY 10001" -204923,Lightning Charging Cable,1,14.95,05/04/19 11:59,"512 5th St, San Francisco, CA 94016" -204924,AA Batteries (4-pack),1,3.84,05/12/19 14:00,"405 Pine St, Los Angeles, CA 90001" -204925,27in 4K Gaming Monitor,1,389.99,05/17/19 11:15,"119 Highland St, Los Angeles, CA 90001" -204926,AAA Batteries (4-pack),1,2.99,05/26/19 10:59,"546 West St, Los Angeles, CA 90001" -204927,Apple Airpods Headphones,1,150,05/04/19 11:59,"102 11th St, Austin, TX 73301" -204928,34in Ultrawide Monitor,1,379.99,05/19/19 18:16,"679 Wilson St, Austin, TX 73301" -204929,Google Phone,1,600,05/28/19 22:40,"301 Highland St, Portland, OR 97035" -204930,AAA Batteries (4-pack),1,2.99,05/30/19 21:35,"164 12th St, Seattle, WA 98101" -204931,USB-C Charging Cable,1,11.95,05/11/19 17:44,"345 12th St, Los Angeles, CA 90001" -204932,AA Batteries (4-pack),1,3.84,05/16/19 22:25,"943 Dogwood St, Boston, MA 02215" -204933,iPhone,1,700,05/10/19 13:43,"82 4th St, Los Angeles, CA 90001" -204934,USB-C Charging Cable,1,11.95,05/22/19 17:55,"361 Hickory St, Dallas, TX 75001" -204935,Wired Headphones,1,11.99,05/04/19 22:36,"570 11th St, Boston, MA 02215" -204936,27in 4K Gaming Monitor,1,389.99,05/08/19 09:05,"935 Center St, San Francisco, CA 94016" -204937,AAA Batteries (4-pack),1,2.99,05/29/19 13:14,"286 Sunset St, Boston, MA 02215" -204938,Flatscreen TV,1,300,05/08/19 13:11,"739 Madison St, Los Angeles, CA 90001" -204938,20in Monitor,1,109.99,05/08/19 13:11,"739 Madison St, Los Angeles, CA 90001" -204939,AAA Batteries (4-pack),1,2.99,05/31/19 10:02,"657 Cherry St, San Francisco, CA 94016" -204940,Apple Airpods Headphones,1,150,05/20/19 16:30,"370 Park St, Los Angeles, CA 90001" -204941,Flatscreen TV,1,300,05/18/19 09:45,"745 Ridge St, Seattle, WA 98101" -204942,Wired Headphones,1,11.99,05/30/19 17:42,"763 13th St, Seattle, WA 98101" -204943,Wired Headphones,1,11.99,05/18/19 11:55,"57 Chestnut St, Los Angeles, CA 90001" -204944,Wired Headphones,1,11.99,05/26/19 15:07,"347 Meadow St, San Francisco, CA 94016" -204945,Google Phone,1,600,05/06/19 12:17,"990 10th St, Los Angeles, CA 90001" -204946,AAA Batteries (4-pack),3,2.99,05/20/19 14:34,"77 14th St, Los Angeles, CA 90001" -204947,USB-C Charging Cable,1,11.95,05/30/19 19:57,"432 Willow St, Boston, MA 02215" -204948,Wired Headphones,1,11.99,05/19/19 14:35,"596 Chestnut St, San Francisco, CA 94016" -204949,27in FHD Monitor,1,149.99,05/31/19 10:26,"203 Lincoln St, New York City, NY 10001" -204950,AAA Batteries (4-pack),2,2.99,05/26/19 17:22,"556 North St, New York City, NY 10001" -204951,Lightning Charging Cable,1,14.95,05/13/19 11:03,"100 West St, Los Angeles, CA 90001" -204952,34in Ultrawide Monitor,1,379.99,05/22/19 17:22,"305 7th St, San Francisco, CA 94016" -204953,Apple Airpods Headphones,1,150,05/22/19 17:57,"607 2nd St, San Francisco, CA 94016" -204954,Lightning Charging Cable,1,14.95,05/04/19 09:46,"653 Lake St, Austin, TX 73301" -204955,Apple Airpods Headphones,1,150,05/27/19 18:01,"17 West St, Dallas, TX 75001" -204956,AAA Batteries (4-pack),2,2.99,05/12/19 09:09,"822 Hickory St, Atlanta, GA 30301" -204957,AAA Batteries (4-pack),5,2.99,05/29/19 21:09,"86 8th St, Seattle, WA 98101" -204958,Apple Airpods Headphones,1,150,05/19/19 02:37,"40 Lincoln St, New York City, NY 10001" -204959,Wired Headphones,1,11.99,05/19/19 10:05,"435 12th St, Boston, MA 02215" -204960,Apple Airpods Headphones,1,150,05/15/19 12:05,"737 10th St, Portland, OR 97035" -204961,AA Batteries (4-pack),1,3.84,05/06/19 08:59,"762 Jefferson St, Portland, ME 04101" -204962,AA Batteries (4-pack),1,3.84,05/26/19 14:54,"145 West St, New York City, NY 10001" -204963,27in 4K Gaming Monitor,1,389.99,05/02/19 12:50,"89 4th St, Boston, MA 02215" -204964,34in Ultrawide Monitor,1,379.99,05/08/19 19:06,"160 Cedar St, Boston, MA 02215" -204965,Macbook Pro Laptop,1,1700,05/16/19 18:18,"48 South St, San Francisco, CA 94016" -204966,AA Batteries (4-pack),1,3.84,05/18/19 20:08,"378 North St, San Francisco, CA 94016" -204967,iPhone,1,700,05/27/19 10:45,"587 Cherry St, Los Angeles, CA 90001" -204967,Wired Headphones,3,11.99,05/27/19 10:45,"587 Cherry St, Los Angeles, CA 90001" -204968,AA Batteries (4-pack),1,3.84,05/14/19 09:59,"853 Adams St, Portland, OR 97035" -204969,Vareebadd Phone,1,400,05/01/19 23:54,"662 Pine St, Atlanta, GA 30301" -204970,AAA Batteries (4-pack),1,2.99,05/28/19 17:33,"323 11th St, San Francisco, CA 94016" -204971,ThinkPad Laptop,1,999.99,05/21/19 16:18,"358 Adams St, Seattle, WA 98101" -204972,27in FHD Monitor,1,149.99,05/25/19 16:26,"228 Sunset St, New York City, NY 10001" -204973,Lightning Charging Cable,1,14.95,05/10/19 13:11,"297 8th St, Los Angeles, CA 90001" -204974,27in 4K Gaming Monitor,1,389.99,05/24/19 11:24,"436 River St, Portland, OR 97035" -204975,27in 4K Gaming Monitor,1,389.99,05/24/19 17:37,"921 Sunset St, New York City, NY 10001" -204976,USB-C Charging Cable,1,11.95,05/24/19 16:39,"142 Johnson St, Los Angeles, CA 90001" -204977,Vareebadd Phone,1,400,05/10/19 09:35,"821 Hill St, Los Angeles, CA 90001" -204978,27in FHD Monitor,1,149.99,05/25/19 09:56,"861 11th St, San Francisco, CA 94016" -204979,AA Batteries (4-pack),2,3.84,05/17/19 14:24,"811 14th St, San Francisco, CA 94016" -204980,27in 4K Gaming Monitor,1,389.99,05/21/19 16:03,"264 9th St, Boston, MA 02215" -204981,ThinkPad Laptop,1,999.99,05/26/19 17:24,"232 Walnut St, Boston, MA 02215" -204982,Macbook Pro Laptop,1,1700,05/30/19 03:44,"930 Wilson St, San Francisco, CA 94016" -204983,Wired Headphones,1,11.99,05/22/19 21:48,"193 Forest St, San Francisco, CA 94016" -204984,Google Phone,1,600,05/01/19 14:42,"1 Willow St, New York City, NY 10001" -204984,Wired Headphones,1,11.99,05/01/19 14:42,"1 Willow St, New York City, NY 10001" -204985,USB-C Charging Cable,1,11.95,05/26/19 20:26,"326 Spruce St, San Francisco, CA 94016" -204986,LG Washing Machine,1,600.0,05/17/19 12:25,"82 Highland St, Portland, OR 97035" -204987,ThinkPad Laptop,1,999.99,05/29/19 20:45,"453 Meadow St, San Francisco, CA 94016" -204988,Bose SoundSport Headphones,1,99.99,05/21/19 18:17,"743 Cherry St, Dallas, TX 75001" -204989,USB-C Charging Cable,1,11.95,05/25/19 15:23,"530 10th St, Los Angeles, CA 90001" -204990,Wired Headphones,1,11.99,05/27/19 14:07,"917 8th St, Austin, TX 73301" -204991,Bose SoundSport Headphones,1,99.99,05/21/19 20:38,"850 Jackson St, San Francisco, CA 94016" -204992,Wired Headphones,1,11.99,05/01/19 22:24,"602 9th St, Los Angeles, CA 90001" -204993,Macbook Pro Laptop,1,1700,05/14/19 14:51,"52 Washington St, Portland, OR 97035" -204994,Lightning Charging Cable,1,14.95,05/15/19 00:36,"107 Walnut St, Portland, OR 97035" -204995,Wired Headphones,1,11.99,05/10/19 22:34,"844 Dogwood St, San Francisco, CA 94016" -204996,AA Batteries (4-pack),1,3.84,05/07/19 23:57,"826 Spruce St, Portland, OR 97035" -204997,Bose SoundSport Headphones,2,99.99,05/29/19 11:09,"3 Cherry St, Austin, TX 73301" -204998,20in Monitor,1,109.99,05/08/19 21:50,"887 Lake St, Los Angeles, CA 90001" -204999,USB-C Charging Cable,1,11.95,05/15/19 19:48,"312 12th St, Seattle, WA 98101" -205000,Lightning Charging Cable,1,14.95,05/09/19 02:04,"771 Church St, Los Angeles, CA 90001" -205001,Wired Headphones,1,11.99,05/30/19 12:58,"684 Washington St, San Francisco, CA 94016" -205002,AA Batteries (4-pack),1,3.84,05/21/19 16:22,"636 1st St, Los Angeles, CA 90001" -205003,27in 4K Gaming Monitor,1,389.99,05/30/19 19:23,"964 10th St, Boston, MA 02215" -205004,ThinkPad Laptop,1,999.99,05/03/19 20:06,"836 Adams St, Dallas, TX 75001" -205005,Apple Airpods Headphones,1,150,05/02/19 12:24,"864 Sunset St, New York City, NY 10001" -205006,Vareebadd Phone,1,400,05/10/19 08:50,"678 Maple St, New York City, NY 10001" -205007,USB-C Charging Cable,1,11.95,05/09/19 18:58,"407 Spruce St, Los Angeles, CA 90001" -205008,Wired Headphones,1,11.99,05/15/19 12:35,"410 Johnson St, Dallas, TX 75001" -205009,Bose SoundSport Headphones,1,99.99,05/28/19 23:46,"596 Ridge St, San Francisco, CA 94016" -205010,Wired Headphones,1,11.99,05/21/19 19:41,"745 Adams St, San Francisco, CA 94016" -205011,AAA Batteries (4-pack),1,2.99,05/10/19 13:24,"119 Center St, Portland, ME 04101" -205012,iPhone,1,700,05/29/19 09:34,"959 14th St, Los Angeles, CA 90001" -205012,Lightning Charging Cable,1,14.95,05/29/19 09:34,"959 14th St, Los Angeles, CA 90001" -205013,27in 4K Gaming Monitor,1,389.99,05/16/19 20:29,"124 River St, Boston, MA 02215" -205014,AA Batteries (4-pack),4,3.84,05/07/19 22:08,"227 6th St, Dallas, TX 75001" -205015,USB-C Charging Cable,1,11.95,05/09/19 13:21,"516 Johnson St, New York City, NY 10001" -205016,iPhone,1,700,05/17/19 00:16,"482 Forest St, Atlanta, GA 30301" -205016,Lightning Charging Cable,1,14.95,05/17/19 00:16,"482 Forest St, Atlanta, GA 30301" -205017,ThinkPad Laptop,1,999.99,05/19/19 14:57,"200 South St, Los Angeles, CA 90001" -205018,USB-C Charging Cable,1,11.95,05/16/19 22:32,"859 Lincoln St, Boston, MA 02215" -205018,USB-C Charging Cable,1,11.95,05/16/19 22:32,"859 Lincoln St, Boston, MA 02215" -205019,34in Ultrawide Monitor,1,379.99,05/26/19 21:07,"909 4th St, Boston, MA 02215" -205020,AAA Batteries (4-pack),1,2.99,05/05/19 09:47,"162 4th St, Los Angeles, CA 90001" -205021,34in Ultrawide Monitor,1,379.99,05/07/19 17:22,"486 4th St, San Francisco, CA 94016" -205022,Lightning Charging Cable,1,14.95,05/21/19 14:54,"427 13th St, San Francisco, CA 94016" -205023,20in Monitor,1,109.99,05/03/19 23:27,"180 Washington St, Dallas, TX 75001" -205024,Wired Headphones,1,11.99,05/17/19 01:45,"866 Park St, Seattle, WA 98101" -205025,AAA Batteries (4-pack),1,2.99,05/09/19 20:18,"739 1st St, Boston, MA 02215" -205026,AAA Batteries (4-pack),1,2.99,05/07/19 15:53,"301 Lincoln St, Seattle, WA 98101" -205027,Apple Airpods Headphones,1,150,05/20/19 12:06,"858 Meadow St, Los Angeles, CA 90001" -205028,Macbook Pro Laptop,1,1700,05/03/19 05:34,"231 Center St, New York City, NY 10001" -205029,Wired Headphones,1,11.99,05/28/19 08:10,"842 North St, Seattle, WA 98101" -205030,USB-C Charging Cable,1,11.95,05/16/19 21:31,"883 Pine St, Atlanta, GA 30301" -205031,Wired Headphones,1,11.99,05/29/19 20:56,"188 Chestnut St, Los Angeles, CA 90001" -205032,Lightning Charging Cable,1,14.95,05/18/19 14:29,"233 Church St, Atlanta, GA 30301" -205033,Apple Airpods Headphones,1,150,05/09/19 11:10,"661 Pine St, New York City, NY 10001" -205034,Wired Headphones,1,11.99,05/17/19 15:41,"261 Johnson St, Los Angeles, CA 90001" -205035,AAA Batteries (4-pack),2,2.99,05/25/19 19:49,"409 14th St, Los Angeles, CA 90001" -205036,Wired Headphones,2,11.99,05/17/19 14:32,"715 Lake St, San Francisco, CA 94016" -205037,AA Batteries (4-pack),1,3.84,05/17/19 23:22,"924 Church St, Atlanta, GA 30301" -205038,USB-C Charging Cable,3,11.95,05/28/19 20:18,"275 4th St, Los Angeles, CA 90001" -205039,USB-C Charging Cable,1,11.95,05/15/19 20:38,"801 2nd St, Austin, TX 73301" -205040,AAA Batteries (4-pack),1,2.99,05/12/19 12:19,"300 Jackson St, San Francisco, CA 94016" -205041,AAA Batteries (4-pack),2,2.99,05/30/19 11:44,"685 Chestnut St, Portland, OR 97035" -205042,Macbook Pro Laptop,1,1700,05/30/19 19:51,"938 Lake St, Austin, TX 73301" -205043,Wired Headphones,1,11.99,05/04/19 11:22,"390 6th St, Austin, TX 73301" -205044,iPhone,1,700,05/30/19 12:32,"752 Spruce St, San Francisco, CA 94016" -205044,Lightning Charging Cable,1,14.95,05/30/19 12:32,"752 Spruce St, San Francisco, CA 94016" -205045,Apple Airpods Headphones,1,150,05/27/19 10:00,"814 West St, Boston, MA 02215" -205046,USB-C Charging Cable,1,11.95,05/23/19 11:48,"760 14th St, New York City, NY 10001" -205047,27in FHD Monitor,1,149.99,05/29/19 13:48,"543 Church St, Los Angeles, CA 90001" -205048,Macbook Pro Laptop,1,1700,05/15/19 22:16,"234 1st St, San Francisco, CA 94016" -205049,Flatscreen TV,1,300,05/09/19 12:02,"792 7th St, Boston, MA 02215" -205050,AAA Batteries (4-pack),1,2.99,05/04/19 00:02,"225 13th St, Los Angeles, CA 90001" -205051,AA Batteries (4-pack),1,3.84,05/19/19 17:32,"420 Elm St, Los Angeles, CA 90001" -205052,USB-C Charging Cable,1,11.95,05/16/19 14:18,"636 Willow St, Dallas, TX 75001" -205053,Apple Airpods Headphones,1,150,05/20/19 08:27,"264 Church St, Los Angeles, CA 90001" -205054,Wired Headphones,1,11.99,05/02/19 12:28,"435 Lake St, Atlanta, GA 30301" -205055,Bose SoundSport Headphones,1,99.99,05/04/19 15:04,"662 Johnson St, Dallas, TX 75001" -205056,USB-C Charging Cable,1,11.95,05/03/19 22:38,"430 6th St, Los Angeles, CA 90001" -205057,Bose SoundSport Headphones,1,99.99,05/20/19 16:12,"548 8th St, Portland, ME 04101" -205058,34in Ultrawide Monitor,1,379.99,05/11/19 10:07,"332 Cedar St, San Francisco, CA 94016" -205059,Lightning Charging Cable,2,14.95,05/20/19 17:39,"973 Madison St, Austin, TX 73301" -205060,27in 4K Gaming Monitor,1,389.99,05/21/19 09:14,"341 9th St, San Francisco, CA 94016" -205061,Apple Airpods Headphones,1,150,05/30/19 22:26,"919 6th St, San Francisco, CA 94016" -205062,27in FHD Monitor,1,149.99,05/28/19 09:27,"172 Forest St, San Francisco, CA 94016" -205063,Apple Airpods Headphones,1,150,05/25/19 16:50,"570 Hickory St, Boston, MA 02215" -205064,AA Batteries (4-pack),1,3.84,05/29/19 19:59,"713 Forest St, Dallas, TX 75001" -205065,USB-C Charging Cable,1,11.95,05/18/19 17:54,"418 13th St, San Francisco, CA 94016" -205066,Wired Headphones,2,11.99,05/17/19 22:47,"605 Park St, New York City, NY 10001" -205067,USB-C Charging Cable,1,11.95,05/30/19 19:48,"770 Pine St, Boston, MA 02215" -205067,AA Batteries (4-pack),1,3.84,05/30/19 19:48,"770 Pine St, Boston, MA 02215" -205068,27in 4K Gaming Monitor,1,389.99,05/14/19 11:25,"425 Forest St, Los Angeles, CA 90001" -205069,AA Batteries (4-pack),1,3.84,05/31/19 21:59,"582 Sunset St, Dallas, TX 75001" -205070,AAA Batteries (4-pack),1,2.99,05/12/19 18:05,"67 West St, Atlanta, GA 30301" -205071,Bose SoundSport Headphones,1,99.99,05/06/19 20:52,"384 5th St, New York City, NY 10001" -205072,27in FHD Monitor,1,149.99,05/03/19 22:18,"619 14th St, San Francisco, CA 94016" -205073,Bose SoundSport Headphones,1,99.99,05/16/19 01:02,"64 Lakeview St, Atlanta, GA 30301" -205074,USB-C Charging Cable,1,11.95,05/08/19 06:10,"831 Jefferson St, New York City, NY 10001" -205075,AA Batteries (4-pack),1,3.84,05/23/19 21:40,"469 5th St, New York City, NY 10001" -205076,Google Phone,1,600,05/03/19 19:53,"570 Jackson St, New York City, NY 10001" -205077,USB-C Charging Cable,2,11.95,05/26/19 11:12,"393 Pine St, San Francisco, CA 94016" -205078,Apple Airpods Headphones,1,150,05/13/19 07:26,"559 Sunset St, Los Angeles, CA 90001" -205079,Google Phone,1,600,05/08/19 13:18,"812 Pine St, Los Angeles, CA 90001" -205080,AAA Batteries (4-pack),1,2.99,05/30/19 15:02,"925 Center St, Austin, TX 73301" -205081,Bose SoundSport Headphones,1,99.99,05/25/19 17:36,"171 Highland St, San Francisco, CA 94016" -205082,Macbook Pro Laptop,1,1700,05/11/19 18:37,"339 Hickory St, San Francisco, CA 94016" -205083,34in Ultrawide Monitor,1,379.99,05/21/19 11:59,"26 Hill St, Atlanta, GA 30301" -205084,AA Batteries (4-pack),1,3.84,05/22/19 13:34,"791 Adams St, Seattle, WA 98101" -205085,AA Batteries (4-pack),1,3.84,05/21/19 12:27,"500 Cedar St, Seattle, WA 98101" -205086,Macbook Pro Laptop,1,1700,05/16/19 16:13,"237 7th St, New York City, NY 10001" -205087,USB-C Charging Cable,1,11.95,05/10/19 20:35,"51 Church St, San Francisco, CA 94016" -205088,AAA Batteries (4-pack),2,2.99,05/05/19 08:58,"371 Cherry St, Los Angeles, CA 90001" -205089,AAA Batteries (4-pack),2,2.99,05/25/19 21:27,"348 Lakeview St, Atlanta, GA 30301" -205090,Lightning Charging Cable,1,14.95,05/12/19 12:22,"786 River St, San Francisco, CA 94016" -205091,Lightning Charging Cable,1,14.95,05/16/19 16:43,"7 11th St, Boston, MA 02215" -205092,AAA Batteries (4-pack),1,2.99,05/12/19 20:10,"413 Lake St, Austin, TX 73301" -205093,Wired Headphones,1,11.99,05/18/19 14:16,"19 Madison St, San Francisco, CA 94016" -205094,Wired Headphones,1,11.99,05/29/19 18:24,"798 Washington St, San Francisco, CA 94016" -205095,Lightning Charging Cable,1,14.95,05/29/19 22:48,"442 5th St, New York City, NY 10001" -205096,USB-C Charging Cable,1,11.95,05/21/19 00:53,"867 Lakeview St, Atlanta, GA 30301" -205097,Wired Headphones,1,11.99,05/21/19 12:45,"423 Meadow St, Boston, MA 02215" -205098,AA Batteries (4-pack),1,3.84,05/25/19 14:18,"395 Cherry St, Austin, TX 73301" -205099,Apple Airpods Headphones,1,150,05/14/19 18:46,"772 Cherry St, Austin, TX 73301" -205100,Wired Headphones,1,11.99,05/28/19 20:13,"428 Cedar St, New York City, NY 10001" -205101,27in FHD Monitor,1,149.99,05/11/19 20:16,"22 Hickory St, San Francisco, CA 94016" -205102,USB-C Charging Cable,1,11.95,05/24/19 10:23,"878 Adams St, San Francisco, CA 94016" -205103,AA Batteries (4-pack),1,3.84,05/04/19 10:33,"550 12th St, Dallas, TX 75001" -205104,Wired Headphones,1,11.99,05/02/19 08:59,"168 Dogwood St, Los Angeles, CA 90001" -205105,AA Batteries (4-pack),1,3.84,05/19/19 18:12,"491 Lake St, Dallas, TX 75001" -205106,USB-C Charging Cable,1,11.95,05/19/19 22:17,"511 Lake St, Seattle, WA 98101" -205107,iPhone,1,700,05/05/19 20:33,"881 Ridge St, San Francisco, CA 94016" -205108,AA Batteries (4-pack),2,3.84,05/21/19 19:58,"186 Chestnut St, New York City, NY 10001" -205109,AA Batteries (4-pack),1,3.84,05/15/19 10:05,"740 Washington St, Portland, OR 97035" -205110,Bose SoundSport Headphones,1,99.99,05/01/19 21:17,"946 Walnut St, New York City, NY 10001" -205111,AA Batteries (4-pack),1,3.84,05/26/19 15:47,"459 11th St, Dallas, TX 75001" -205112,Bose SoundSport Headphones,1,99.99,05/01/19 19:18,"142 10th St, San Francisco, CA 94016" -205113,34in Ultrawide Monitor,1,379.99,05/17/19 21:38,"473 Madison St, New York City, NY 10001" -205114,34in Ultrawide Monitor,1,379.99,05/01/19 08:51,"544 Lincoln St, Dallas, TX 75001" -205115,Lightning Charging Cable,1,14.95,05/17/19 10:08,"816 Church St, New York City, NY 10001" -205116,34in Ultrawide Monitor,1,379.99,05/14/19 12:39,"482 11th St, Los Angeles, CA 90001" -205117,Wired Headphones,1,11.99,05/14/19 11:47,"653 2nd St, Los Angeles, CA 90001" -205118,Bose SoundSport Headphones,1,99.99,05/23/19 22:52,"399 Washington St, New York City, NY 10001" -205119,AAA Batteries (4-pack),1,2.99,05/21/19 12:47,"771 Meadow St, Dallas, TX 75001" -205120,ThinkPad Laptop,1,999.99,05/08/19 12:30,"569 Jefferson St, Boston, MA 02215" -205121,Wired Headphones,1,11.99,05/13/19 14:23,"790 14th St, Boston, MA 02215" -205122,AA Batteries (4-pack),1,3.84,05/14/19 16:27,"533 North St, Dallas, TX 75001" -205123,AAA Batteries (4-pack),1,2.99,05/26/19 21:38,"740 Maple St, Los Angeles, CA 90001" -205124,Apple Airpods Headphones,2,150,05/23/19 15:47,"482 1st St, New York City, NY 10001" -205125,AA Batteries (4-pack),1,3.84,05/19/19 13:19,"82 Lincoln St, San Francisco, CA 94016" -205126,Lightning Charging Cable,1,14.95,05/14/19 23:39,"184 Main St, Dallas, TX 75001" -205127,27in FHD Monitor,1,149.99,05/14/19 11:17,"337 4th St, New York City, NY 10001" -205128,Bose SoundSport Headphones,1,99.99,05/26/19 07:41,"137 Chestnut St, Dallas, TX 75001" -205129,27in FHD Monitor,1,149.99,05/13/19 19:38,"678 Hickory St, New York City, NY 10001" -205130,Lightning Charging Cable,1,14.95,05/08/19 19:24,"863 14th St, Boston, MA 02215" -205131,iPhone,1,700,05/08/19 08:43,"304 River St, New York City, NY 10001" -205132,AAA Batteries (4-pack),1,2.99,05/01/19 17:27,"902 9th St, San Francisco, CA 94016" -205133,Vareebadd Phone,1,400,05/10/19 00:50,"784 7th St, San Francisco, CA 94016" -205134,AA Batteries (4-pack),2,3.84,05/20/19 20:43,"595 7th St, Boston, MA 02215" -205135,USB-C Charging Cable,1,11.95,05/14/19 19:36,"750 Hill St, Dallas, TX 75001" -205136,Lightning Charging Cable,1,14.95,05/19/19 16:18,"358 14th St, Boston, MA 02215" -205137,27in FHD Monitor,1,149.99,05/14/19 12:03,"287 Highland St, New York City, NY 10001" -205138,Bose SoundSport Headphones,1,99.99,05/18/19 20:33,"755 West St, San Francisco, CA 94016" -205139,Wired Headphones,2,11.99,05/29/19 22:09,"241 Adams St, Austin, TX 73301" -205140,Apple Airpods Headphones,1,150,05/01/19 13:50,"231 9th St, Seattle, WA 98101" -205141,AA Batteries (4-pack),1,3.84,05/19/19 16:55,"256 Chestnut St, New York City, NY 10001" -205142,iPhone,1,700,05/18/19 22:53,"7 14th St, New York City, NY 10001" -205142,Lightning Charging Cable,1,14.95,05/18/19 22:53,"7 14th St, New York City, NY 10001" -205143,Google Phone,1,600,05/25/19 14:49,"657 Johnson St, Boston, MA 02215" -205144,Google Phone,1,600,05/17/19 11:46,"965 5th St, San Francisco, CA 94016" -205144,Wired Headphones,1,11.99,05/17/19 11:46,"965 5th St, San Francisco, CA 94016" -205145,AAA Batteries (4-pack),1,2.99,05/01/19 13:27,"183 Sunset St, Dallas, TX 75001" -205146,AA Batteries (4-pack),1,3.84,05/03/19 20:12,"313 Forest St, Austin, TX 73301" -205147,Macbook Pro Laptop,1,1700,05/19/19 12:54,"599 Walnut St, San Francisco, CA 94016" -205148,AAA Batteries (4-pack),2,2.99,05/07/19 21:34,"398 Willow St, New York City, NY 10001" -205149,Wired Headphones,1,11.99,05/31/19 20:45,"388 Jefferson St, New York City, NY 10001" -205150,Wired Headphones,1,11.99,05/20/19 08:48,"577 10th St, Los Angeles, CA 90001" -205151,AA Batteries (4-pack),3,3.84,05/09/19 18:18,"286 Walnut St, Los Angeles, CA 90001" -205152,AA Batteries (4-pack),2,3.84,05/22/19 15:06,"251 Adams St, Seattle, WA 98101" -205153,Lightning Charging Cable,1,14.95,05/08/19 17:46,"667 1st St, Boston, MA 02215" -205154,Apple Airpods Headphones,1,150,05/13/19 12:29,"713 5th St, Atlanta, GA 30301" -205155,USB-C Charging Cable,1,11.95,05/30/19 23:47,"761 Dogwood St, Atlanta, GA 30301" -205156,Lightning Charging Cable,1,14.95,05/11/19 08:31,"229 Madison St, New York City, NY 10001" -205157,Wired Headphones,1,11.99,05/12/19 19:51,"337 Washington St, Los Angeles, CA 90001" -205158,Apple Airpods Headphones,1,150,05/22/19 19:16,"858 Madison St, San Francisco, CA 94016" -205159,20in Monitor,1,109.99,05/22/19 19:27,"773 Hill St, Boston, MA 02215" -205160,AAA Batteries (4-pack),1,2.99,05/11/19 19:08,"759 Elm St, Austin, TX 73301" -205161,Wired Headphones,1,11.99,05/17/19 13:51,"657 Jackson St, Dallas, TX 75001" -205162,AAA Batteries (4-pack),1,2.99,05/04/19 08:52,"473 Lake St, Los Angeles, CA 90001" -205163,AAA Batteries (4-pack),2,2.99,05/05/19 17:28,"230 Sunset St, Portland, OR 97035" -205164,Vareebadd Phone,1,400,05/29/19 12:13,"774 7th St, San Francisco, CA 94016" -205165,AAA Batteries (4-pack),2,2.99,05/30/19 19:22,"929 14th St, Dallas, TX 75001" -205166,Lightning Charging Cable,2,14.95,05/26/19 13:44,"356 Chestnut St, Los Angeles, CA 90001" -205167,Macbook Pro Laptop,1,1700,05/12/19 05:22,"26 Elm St, Atlanta, GA 30301" -205167,Lightning Charging Cable,1,14.95,05/12/19 05:22,"26 Elm St, Atlanta, GA 30301" -205168,Lightning Charging Cable,2,14.95,05/28/19 18:50,"939 Lake St, New York City, NY 10001" -205169,Lightning Charging Cable,1,14.95,05/12/19 20:44,"236 Center St, San Francisco, CA 94016" -205170,AAA Batteries (4-pack),1,2.99,05/31/19 23:22,"609 Pine St, Seattle, WA 98101" -205171,Bose SoundSport Headphones,1,99.99,05/13/19 06:07,"642 Lake St, Los Angeles, CA 90001" -205172,Flatscreen TV,1,300,05/27/19 04:50,"775 Lake St, San Francisco, CA 94016" -205173,Lightning Charging Cable,1,14.95,05/24/19 08:03,"826 11th St, Seattle, WA 98101" -205174,Wired Headphones,1,11.99,05/20/19 16:09,"644 Main St, Seattle, WA 98101" -205175,27in 4K Gaming Monitor,1,389.99,05/01/19 16:40,"444 Spruce St, Seattle, WA 98101" -205176,USB-C Charging Cable,1,11.95,05/10/19 17:17,"190 Johnson St, San Francisco, CA 94016" -205177,ThinkPad Laptop,1,999.99,05/24/19 19:26,"71 Main St, Los Angeles, CA 90001" -205178,Lightning Charging Cable,1,14.95,05/19/19 12:36,"996 South St, Austin, TX 73301" -205179,27in 4K Gaming Monitor,1,389.99,05/15/19 21:48,"892 7th St, Seattle, WA 98101" -205180,USB-C Charging Cable,1,11.95,05/17/19 14:38,"53 Johnson St, Seattle, WA 98101" -205181,Apple Airpods Headphones,1,150,05/18/19 13:38,"797 Cherry St, San Francisco, CA 94016" -205182,AAA Batteries (4-pack),2,2.99,05/16/19 09:22,"344 6th St, Dallas, TX 75001" -205183,27in FHD Monitor,1,149.99,05/28/19 15:50,"131 Meadow St, Dallas, TX 75001" -205184,AA Batteries (4-pack),1,3.84,05/09/19 11:35,"997 1st St, San Francisco, CA 94016" -205185,Lightning Charging Cable,1,14.95,05/01/19 12:00,"398 Lake St, Los Angeles, CA 90001" -205186,34in Ultrawide Monitor,1,379.99,05/27/19 17:07,"504 Spruce St, San Francisco, CA 94016" -205187,AAA Batteries (4-pack),1,2.99,05/31/19 10:28,"748 Madison St, Atlanta, GA 30301" -205188,AA Batteries (4-pack),2,3.84,05/14/19 13:45,"676 Dogwood St, San Francisco, CA 94016" -205189,Lightning Charging Cable,1,14.95,05/12/19 19:32,"479 11th St, Austin, TX 73301" -205190,USB-C Charging Cable,1,11.95,05/30/19 20:45,"416 Park St, Los Angeles, CA 90001" -205191,Lightning Charging Cable,2,14.95,05/19/19 00:42,"569 9th St, Los Angeles, CA 90001" -205192,Apple Airpods Headphones,1,150,05/20/19 16:56,"653 Lincoln St, San Francisco, CA 94016" -205193,Apple Airpods Headphones,1,150,05/26/19 23:30,"586 1st St, San Francisco, CA 94016" -205194,Vareebadd Phone,1,400,05/03/19 21:01,"633 Cedar St, San Francisco, CA 94016" -205194,Wired Headphones,1,11.99,05/03/19 21:01,"633 Cedar St, San Francisco, CA 94016" -205195,AAA Batteries (4-pack),3,2.99,05/05/19 12:14,"599 Chestnut St, New York City, NY 10001" -205196,Lightning Charging Cable,1,14.95,05/15/19 18:01,"180 Main St, San Francisco, CA 94016" -205197,USB-C Charging Cable,1,11.95,05/18/19 09:48,"837 Center St, San Francisco, CA 94016" -205198,Lightning Charging Cable,2,14.95,05/12/19 22:42,"308 Willow St, Boston, MA 02215" -205199,Apple Airpods Headphones,1,150,05/14/19 20:43,"514 Meadow St, Boston, MA 02215" -205200,Lightning Charging Cable,1,14.95,05/18/19 10:42,"385 13th St, Atlanta, GA 30301" -205201,27in 4K Gaming Monitor,1,389.99,05/24/19 11:20,"645 10th St, Dallas, TX 75001" -205202,AA Batteries (4-pack),2,3.84,05/09/19 11:59,"934 4th St, San Francisco, CA 94016" -205203,Wired Headphones,1,11.99,05/15/19 20:56,"937 Meadow St, Los Angeles, CA 90001" -205204,27in 4K Gaming Monitor,1,389.99,05/24/19 10:29,"641 Pine St, Los Angeles, CA 90001" -205205,20in Monitor,1,109.99,05/29/19 06:22,"321 South St, Boston, MA 02215" -205206,Lightning Charging Cable,2,14.95,05/10/19 21:23,"645 Main St, Los Angeles, CA 90001" -205207,Apple Airpods Headphones,1,150,05/20/19 14:09,"254 River St, San Francisco, CA 94016" -205208,USB-C Charging Cable,1,11.95,05/18/19 22:08,"408 Wilson St, Austin, TX 73301" -205209,Lightning Charging Cable,1,14.95,05/03/19 12:12,"8 Park St, New York City, NY 10001" -205210,Macbook Pro Laptop,1,1700,05/05/19 12:12,"318 Center St, Portland, ME 04101" -205211,AA Batteries (4-pack),1,3.84,05/31/19 13:16,"582 Hickory St, Los Angeles, CA 90001" -205212,AA Batteries (4-pack),1,3.84,05/17/19 20:03,"502 Lake St, Boston, MA 02215" -205213,34in Ultrawide Monitor,1,379.99,05/04/19 15:22,"579 Cherry St, Atlanta, GA 30301" -205214,AA Batteries (4-pack),1,3.84,05/12/19 10:00,"450 Jackson St, Portland, OR 97035" -205215,Macbook Pro Laptop,1,1700,05/24/19 22:56,"220 Center St, New York City, NY 10001" -205216,Bose SoundSport Headphones,1,99.99,05/03/19 19:21,"140 Dogwood St, Dallas, TX 75001" -205217,27in FHD Monitor,1,149.99,05/03/19 23:30,"630 Main St, Dallas, TX 75001" -205218,Wired Headphones,1,11.99,05/24/19 10:57,"127 Adams St, New York City, NY 10001" -205219,Wired Headphones,1,11.99,05/01/19 03:53,"403 Washington St, New York City, NY 10001" -205220,AAA Batteries (4-pack),2,2.99,05/12/19 20:09,"550 Dogwood St, Boston, MA 02215" -205221,Lightning Charging Cable,1,14.95,05/13/19 01:47,"565 Park St, San Francisco, CA 94016" -205222,Wired Headphones,1,11.99,05/09/19 06:28,"502 Lake St, New York City, NY 10001" -205223,USB-C Charging Cable,1,11.95,05/27/19 00:58,"82 Adams St, Boston, MA 02215" -205224,Lightning Charging Cable,1,14.95,05/15/19 20:40,"513 Chestnut St, New York City, NY 10001" -205225,Wired Headphones,1,11.99,05/24/19 11:08,"588 7th St, Atlanta, GA 30301" -205226,20in Monitor,1,109.99,05/18/19 14:22,"459 10th St, Los Angeles, CA 90001" -205227,Wired Headphones,1,11.99,05/26/19 14:35,"566 Lakeview St, Dallas, TX 75001" -205228,Apple Airpods Headphones,1,150,05/08/19 12:00,"524 River St, Atlanta, GA 30301" -205229,AAA Batteries (4-pack),1,2.99,05/08/19 23:25,"321 Cedar St, Boston, MA 02215" -205230,20in Monitor,1,109.99,05/16/19 02:23,"384 11th St, Dallas, TX 75001" -205231,Lightning Charging Cable,1,14.95,05/27/19 21:22,"99 2nd St, Austin, TX 73301" -205232,Macbook Pro Laptop,1,1700,05/25/19 17:07,"441 River St, Portland, OR 97035" -205233,AAA Batteries (4-pack),1,2.99,05/30/19 16:57,"627 Lake St, Seattle, WA 98101" -205234,Macbook Pro Laptop,1,1700,05/13/19 09:54,"793 West St, San Francisco, CA 94016" -205235,34in Ultrawide Monitor,1,379.99,05/30/19 17:54,"196 Adams St, New York City, NY 10001" -205236,34in Ultrawide Monitor,1,379.99,05/24/19 20:35,"804 13th St, Los Angeles, CA 90001" -205237,AAA Batteries (4-pack),4,2.99,05/11/19 12:52,"871 Jefferson St, Atlanta, GA 30301" -205238,AAA Batteries (4-pack),1,2.99,05/05/19 23:18,"956 Ridge St, Los Angeles, CA 90001" -205239,AAA Batteries (4-pack),1,2.99,05/21/19 20:48,"373 Center St, New York City, NY 10001" -205240,AAA Batteries (4-pack),1,2.99,05/24/19 09:04,"20 Lincoln St, San Francisco, CA 94016" -205241,Google Phone,1,600,05/12/19 11:47,"717 Walnut St, New York City, NY 10001" -205242,Lightning Charging Cable,1,14.95,05/15/19 22:22,"252 6th St, Atlanta, GA 30301" -205243,AA Batteries (4-pack),2,3.84,05/20/19 00:46,"899 River St, Los Angeles, CA 90001" -205244,Google Phone,1,600,05/15/19 19:17,"486 Lakeview St, San Francisco, CA 94016" -205244,USB-C Charging Cable,1,11.95,05/15/19 19:17,"486 Lakeview St, San Francisco, CA 94016" -205245,Wired Headphones,1,11.99,05/13/19 10:16,"119 Highland St, Los Angeles, CA 90001" -205246,ThinkPad Laptop,1,999.99,05/11/19 13:59,"303 Jackson St, Dallas, TX 75001" -205247,Wired Headphones,1,11.99,05/22/19 18:40,"255 Park St, Los Angeles, CA 90001" -205248,Google Phone,1,600,05/24/19 00:06,"968 8th St, Atlanta, GA 30301" -205249,Flatscreen TV,1,300,05/30/19 10:49,"838 Madison St, Seattle, WA 98101" -205250,27in 4K Gaming Monitor,1,389.99,05/29/19 12:41,"168 Hickory St, Atlanta, GA 30301" -205251,34in Ultrawide Monitor,1,379.99,05/19/19 18:39,"939 Chestnut St, Los Angeles, CA 90001" -205252,Bose SoundSport Headphones,1,99.99,05/25/19 09:47,"451 West St, San Francisco, CA 94016" -205253,Flatscreen TV,1,300,05/22/19 18:41,"846 7th St, San Francisco, CA 94016" -205254,Lightning Charging Cable,1,14.95,05/19/19 21:32,"196 11th St, San Francisco, CA 94016" -205255,Lightning Charging Cable,1,14.95,05/03/19 17:40,"846 Madison St, Seattle, WA 98101" -205256,AAA Batteries (4-pack),5,2.99,05/05/19 11:54,"245 1st St, San Francisco, CA 94016" -205257,Lightning Charging Cable,1,14.95,05/11/19 22:21,"454 Lakeview St, Los Angeles, CA 90001" -205258,USB-C Charging Cable,1,11.95,05/23/19 11:51,"125 1st St, Seattle, WA 98101" -205259,AAA Batteries (4-pack),1,2.99,05/17/19 19:54,"883 9th St, Atlanta, GA 30301" -205260,Apple Airpods Headphones,1,150,05/25/19 13:38,"570 Center St, San Francisco, CA 94016" -205261,Apple Airpods Headphones,1,150,05/07/19 16:37,"272 Hickory St, Los Angeles, CA 90001" -205262,AA Batteries (4-pack),2,3.84,05/26/19 18:06,"668 Cedar St, Los Angeles, CA 90001" -205263,Apple Airpods Headphones,1,150,05/19/19 11:19,"243 Elm St, Los Angeles, CA 90001" -205264,27in 4K Gaming Monitor,1,389.99,05/07/19 12:44,"18 5th St, New York City, NY 10001" -205265,USB-C Charging Cable,1,11.95,05/31/19 17:17,"939 Pine St, San Francisco, CA 94016" -205266,Bose SoundSport Headphones,1,99.99,05/07/19 09:31,"555 River St, Boston, MA 02215" -205267,Macbook Pro Laptop,1,1700,05/04/19 13:22,"965 9th St, Los Angeles, CA 90001" -205268,USB-C Charging Cable,1,11.95,05/06/19 12:40,"311 Walnut St, San Francisco, CA 94016" -205269,Wired Headphones,1,11.99,05/19/19 18:10,"179 Ridge St, Boston, MA 02215" -205270,Lightning Charging Cable,1,14.95,05/30/19 14:38,"13 7th St, San Francisco, CA 94016" -205271,Google Phone,1,600,05/21/19 13:26,"49 5th St, Dallas, TX 75001" -205271,USB-C Charging Cable,1,11.95,05/21/19 13:26,"49 5th St, Dallas, TX 75001" -205271,Wired Headphones,1,11.99,05/21/19 13:26,"49 5th St, Dallas, TX 75001" -205272,Lightning Charging Cable,1,14.95,05/26/19 23:36,"719 Johnson St, Austin, TX 73301" -205273,Apple Airpods Headphones,1,150,05/30/19 07:02,"545 Madison St, Los Angeles, CA 90001" -205274,27in FHD Monitor,1,149.99,05/26/19 09:28,"459 Johnson St, Los Angeles, CA 90001" -205275,AAA Batteries (4-pack),1,2.99,05/16/19 19:37,"475 6th St, Dallas, TX 75001" -205276,Bose SoundSport Headphones,1,99.99,05/14/19 18:42,"439 Sunset St, Atlanta, GA 30301" -205277,Bose SoundSport Headphones,1,99.99,05/10/19 13:33,"275 Cedar St, San Francisco, CA 94016" -205278,34in Ultrawide Monitor,1,379.99,05/08/19 18:08,"667 Hill St, San Francisco, CA 94016" -205279,Macbook Pro Laptop,1,1700,05/09/19 16:13,"967 10th St, Seattle, WA 98101" -205280,Macbook Pro Laptop,1,1700,05/22/19 00:44,"296 Washington St, Dallas, TX 75001" -205281,Lightning Charging Cable,2,14.95,05/23/19 22:12,"264 Walnut St, Dallas, TX 75001" -205282,AAA Batteries (4-pack),2,2.99,05/15/19 06:26,"359 1st St, Seattle, WA 98101" -205283,Bose SoundSport Headphones,1,99.99,05/23/19 20:59,"481 Lake St, Los Angeles, CA 90001" -205284,Flatscreen TV,1,300,05/13/19 15:36,"748 Meadow St, New York City, NY 10001" -205285,Wired Headphones,1,11.99,05/16/19 11:44,"396 Madison St, Los Angeles, CA 90001" -205286,Lightning Charging Cable,1,14.95,05/12/19 17:44,"996 Center St, Los Angeles, CA 90001" -205287,Vareebadd Phone,1,400,05/26/19 21:04,"644 River St, New York City, NY 10001" -205288,AAA Batteries (4-pack),2,2.99,05/21/19 12:01,"843 Spruce St, Seattle, WA 98101" -205289,27in 4K Gaming Monitor,1,389.99,05/05/19 21:46,"298 Main St, Austin, TX 73301" -205290,USB-C Charging Cable,1,11.95,05/12/19 13:20,"241 Dogwood St, Los Angeles, CA 90001" -205291,iPhone,1,700,05/19/19 11:34,"870 10th St, San Francisco, CA 94016" -205292,iPhone,1,700,05/05/19 15:23,"371 Willow St, Seattle, WA 98101" -205293,USB-C Charging Cable,1,11.95,05/22/19 09:02,"483 12th St, San Francisco, CA 94016" -205294,Bose SoundSport Headphones,1,99.99,05/23/19 21:11,"874 Forest St, Los Angeles, CA 90001" -205295,AAA Batteries (4-pack),1,2.99,05/09/19 17:20,"806 Washington St, Dallas, TX 75001" -205296,Apple Airpods Headphones,1,150,05/22/19 20:18,"177 Lincoln St, Atlanta, GA 30301" -205297,20in Monitor,1,109.99,05/20/19 10:15,"785 Church St, San Francisco, CA 94016" -205298,Lightning Charging Cable,1,14.95,05/02/19 00:09,"146 6th St, Los Angeles, CA 90001" -205299,Wired Headphones,1,11.99,05/18/19 10:06,"49 Maple St, Portland, OR 97035" -205300,34in Ultrawide Monitor,1,379.99,05/31/19 09:07,"898 Ridge St, San Francisco, CA 94016" -205301,AA Batteries (4-pack),2,3.84,05/30/19 20:19,"997 Lake St, Boston, MA 02215" -205302,Google Phone,1,600,05/07/19 18:37,"622 Maple St, Boston, MA 02215" -205302,USB-C Charging Cable,1,11.95,05/07/19 18:37,"622 Maple St, Boston, MA 02215" -205302,Bose SoundSport Headphones,1,99.99,05/07/19 18:37,"622 Maple St, Boston, MA 02215" -205303,Apple Airpods Headphones,1,150,05/14/19 13:51,"394 Jackson St, San Francisco, CA 94016" -205304,AA Batteries (4-pack),1,3.84,05/07/19 17:12,"363 11th St, Dallas, TX 75001" -205305,Wired Headphones,1,11.99,05/12/19 12:11,"900 4th St, Austin, TX 73301" -205306,AAA Batteries (4-pack),2,2.99,05/12/19 20:55,"310 Center St, New York City, NY 10001" -205307,AAA Batteries (4-pack),1,2.99,05/13/19 10:54,"56 Lincoln St, San Francisco, CA 94016" -205308,Flatscreen TV,1,300,05/12/19 23:38,"666 Dogwood St, San Francisco, CA 94016" -205309,AAA Batteries (4-pack),1,2.99,05/17/19 15:44,"488 Jefferson St, Seattle, WA 98101" -205310,Wired Headphones,1,11.99,05/28/19 18:06,"430 Adams St, Portland, OR 97035" -205311,Wired Headphones,1,11.99,05/29/19 18:23,"950 7th St, Los Angeles, CA 90001" -205312,Wired Headphones,1,11.99,05/07/19 18:57,"55 Spruce St, Boston, MA 02215" -205313,Macbook Pro Laptop,1,1700,05/28/19 22:32,"142 Park St, Atlanta, GA 30301" -205314,Bose SoundSport Headphones,1,99.99,05/26/19 12:08,"625 Hill St, Atlanta, GA 30301" -205315,AA Batteries (4-pack),1,3.84,05/14/19 21:35,"981 Jackson St, Atlanta, GA 30301" -205316,27in FHD Monitor,1,149.99,05/25/19 10:37,"883 Dogwood St, San Francisco, CA 94016" -205317,AA Batteries (4-pack),1,3.84,05/15/19 22:38,"645 Walnut St, Los Angeles, CA 90001" -205318,AAA Batteries (4-pack),4,2.99,05/06/19 13:10,"73 Adams St, Portland, OR 97035" -205319,ThinkPad Laptop,1,999.99,05/24/19 09:01,"893 Wilson St, San Francisco, CA 94016" -205320,AA Batteries (4-pack),1,3.84,05/30/19 15:22,"884 Jefferson St, Los Angeles, CA 90001" -205321,Apple Airpods Headphones,1,150,05/04/19 14:27,"184 Jefferson St, San Francisco, CA 94016" -205322,Wired Headphones,1,11.99,05/25/19 19:02,"755 10th St, Seattle, WA 98101" -205323,Apple Airpods Headphones,1,150,05/07/19 14:17,"250 Maple St, Boston, MA 02215" -205324,Bose SoundSport Headphones,1,99.99,05/15/19 08:32,"966 Forest St, San Francisco, CA 94016" -205325,AA Batteries (4-pack),4,3.84,05/16/19 22:34,"850 Park St, San Francisco, CA 94016" -205326,27in FHD Monitor,1,149.99,05/18/19 19:13,"212 Pine St, New York City, NY 10001" -205327,Lightning Charging Cable,1,14.95,05/31/19 18:57,"9 River St, Los Angeles, CA 90001" -205328,USB-C Charging Cable,1,11.95,05/11/19 17:16,"511 Hill St, San Francisco, CA 94016" -205329,USB-C Charging Cable,1,11.95,05/24/19 21:26,"320 Cedar St, Boston, MA 02215" -205330,USB-C Charging Cable,1,11.95,05/14/19 21:02,"52 Highland St, New York City, NY 10001" -205331,Wired Headphones,1,11.99,05/28/19 18:52,"100 Jefferson St, San Francisco, CA 94016" -205332,Lightning Charging Cable,1,14.95,05/02/19 11:01,"737 9th St, San Francisco, CA 94016" -205333,27in FHD Monitor,1,149.99,05/12/19 15:21,"462 5th St, Dallas, TX 75001" -205334,Macbook Pro Laptop,1,1700,05/29/19 19:01,"715 Chestnut St, Dallas, TX 75001" -205335,Flatscreen TV,1,300,05/19/19 16:20,"174 Madison St, Atlanta, GA 30301" -205336,Flatscreen TV,1,300,05/21/19 11:46,"566 Meadow St, Los Angeles, CA 90001" -205337,27in FHD Monitor,1,149.99,05/13/19 14:20,"379 7th St, Los Angeles, CA 90001" -205338,Apple Airpods Headphones,1,150,05/03/19 22:35,"200 Main St, New York City, NY 10001" -205339,Apple Airpods Headphones,1,150,05/10/19 13:27,"83 4th St, San Francisco, CA 94016" -205340,Lightning Charging Cable,1,14.95,05/29/19 17:25,"50 River St, San Francisco, CA 94016" -205341,27in 4K Gaming Monitor,1,389.99,05/01/19 12:45,"22 West St, Seattle, WA 98101" -205342,34in Ultrawide Monitor,1,379.99,05/29/19 19:45,"811 7th St, Atlanta, GA 30301" -205343,27in FHD Monitor,1,149.99,05/13/19 10:48,"269 Center St, Austin, TX 73301" -205344,AA Batteries (4-pack),1,3.84,05/09/19 12:29,"201 Sunset St, Austin, TX 73301" -205345,Wired Headphones,1,11.99,05/10/19 22:10,"961 South St, Los Angeles, CA 90001" -205346,Google Phone,1,600,05/23/19 13:44,"828 8th St, New York City, NY 10001" -205347,Google Phone,1,600,05/09/19 15:11,"756 Johnson St, Austin, TX 73301" -205348,27in 4K Gaming Monitor,1,389.99,05/30/19 20:27,"138 North St, San Francisco, CA 94016" -205349,Lightning Charging Cable,1,14.95,05/15/19 16:09,"330 Lincoln St, Seattle, WA 98101" -205350,iPhone,1,700,05/23/19 14:18,"185 Pine St, Los Angeles, CA 90001" -205351,USB-C Charging Cable,1,11.95,05/24/19 23:10,"852 7th St, Seattle, WA 98101" -205352,USB-C Charging Cable,1,11.95,05/31/19 16:35,"976 Hill St, Seattle, WA 98101" -205353,USB-C Charging Cable,2,11.95,05/05/19 06:19,"385 West St, Seattle, WA 98101" -205354,34in Ultrawide Monitor,1,379.99,05/13/19 15:50,"598 River St, Los Angeles, CA 90001" -205355,USB-C Charging Cable,1,11.95,05/21/19 15:53,"215 2nd St, New York City, NY 10001" -205356,ThinkPad Laptop,1,999.99,05/17/19 12:17,"585 Ridge St, Boston, MA 02215" -205357,Lightning Charging Cable,1,14.95,05/09/19 14:41,"139 Johnson St, San Francisco, CA 94016" -205358,Wired Headphones,1,11.99,05/12/19 07:49,"877 North St, Portland, ME 04101" -205359,Apple Airpods Headphones,1,150,05/20/19 21:19,"656 Walnut St, Atlanta, GA 30301" -205360,Apple Airpods Headphones,1,150,05/03/19 15:43,"400 Cherry St, Los Angeles, CA 90001" -205361,Lightning Charging Cable,1,14.95,05/25/19 21:28,"581 6th St, San Francisco, CA 94016" -205362,Lightning Charging Cable,1,14.95,05/08/19 13:32,"407 Willow St, Atlanta, GA 30301" -205363,Lightning Charging Cable,2,14.95,05/04/19 15:05,"258 7th St, Atlanta, GA 30301" -205364,iPhone,1,700,05/28/19 10:32,"60 Willow St, New York City, NY 10001" -205365,iPhone,1,700,05/19/19 17:19,"704 13th St, New York City, NY 10001" -205365,Lightning Charging Cable,1,14.95,05/19/19 17:19,"704 13th St, New York City, NY 10001" -205366,Lightning Charging Cable,1,14.95,05/23/19 13:50,"53 Dogwood St, Boston, MA 02215" -205367,Apple Airpods Headphones,1,150,05/27/19 12:39,"910 9th St, Austin, TX 73301" -205368,AA Batteries (4-pack),1,3.84,05/21/19 09:32,"115 6th St, Boston, MA 02215" -205369,AA Batteries (4-pack),1,3.84,05/10/19 13:50,"334 Chestnut St, Los Angeles, CA 90001" -205370,AAA Batteries (4-pack),1,2.99,05/03/19 07:37,"54 Meadow St, Boston, MA 02215" -205371,34in Ultrawide Monitor,1,379.99,05/07/19 10:21,"802 Washington St, San Francisco, CA 94016" -205372,Wired Headphones,1,11.99,05/26/19 12:24,"823 Hickory St, New York City, NY 10001" -205373,Lightning Charging Cable,1,14.95,05/20/19 17:14,"15 Adams St, New York City, NY 10001" -205374,AAA Batteries (4-pack),2,2.99,05/30/19 10:09,"92 2nd St, Dallas, TX 75001" -205375,Lightning Charging Cable,1,14.95,05/15/19 13:10,"72 10th St, Dallas, TX 75001" -205376,Google Phone,1,600,05/12/19 09:39,"236 12th St, Boston, MA 02215" -205377,Apple Airpods Headphones,1,150,05/23/19 21:19,"217 14th St, Los Angeles, CA 90001" -205378,34in Ultrawide Monitor,1,379.99,05/24/19 10:29,"974 South St, Austin, TX 73301" -205379,20in Monitor,1,109.99,05/07/19 19:10,"945 Hickory St, Dallas, TX 75001" -205380,20in Monitor,1,109.99,05/10/19 10:10,"329 Park St, San Francisco, CA 94016" -205381,LG Dryer,1,600.0,05/02/19 11:52,"763 13th St, New York City, NY 10001" -205382,AA Batteries (4-pack),2,3.84,05/30/19 13:44,"962 Madison St, Boston, MA 02215" -205383,USB-C Charging Cable,1,11.95,05/21/19 19:04,"489 Ridge St, San Francisco, CA 94016" -205384,Lightning Charging Cable,1,14.95,05/20/19 11:41,"268 Highland St, Los Angeles, CA 90001" -205385,20in Monitor,1,109.99,05/12/19 13:52,"21 4th St, Boston, MA 02215" -205386,Macbook Pro Laptop,1,1700,05/09/19 16:00,"410 7th St, Dallas, TX 75001" -205387,AA Batteries (4-pack),1,3.84,05/31/19 14:49,"774 Pine St, Boston, MA 02215" -205388,Google Phone,1,600,05/05/19 20:56,"452 River St, Dallas, TX 75001" -205389,AA Batteries (4-pack),1,3.84,05/17/19 13:54,"42 Wilson St, Austin, TX 73301" -205390,AA Batteries (4-pack),1,3.84,05/19/19 12:56,"62 Park St, Dallas, TX 75001" -205391,Apple Airpods Headphones,1,150,05/08/19 21:13,"395 Ridge St, Seattle, WA 98101" -,,,,, -205392,Lightning Charging Cable,1,14.95,05/14/19 09:41,"893 Cedar St, Boston, MA 02215" -205393,USB-C Charging Cable,1,11.95,05/16/19 07:41,"170 Johnson St, Portland, OR 97035" -205394,AA Batteries (4-pack),1,3.84,05/10/19 11:30,"515 Walnut St, San Francisco, CA 94016" -205395,Apple Airpods Headphones,1,150,05/16/19 14:53,"800 11th St, New York City, NY 10001" -205396,Google Phone,1,600,05/28/19 09:01,"684 Elm St, Austin, TX 73301" -205397,Google Phone,1,600,05/02/19 13:27,"599 11th St, New York City, NY 10001" -205397,Wired Headphones,1,11.99,05/02/19 13:27,"599 11th St, New York City, NY 10001" -205397,AA Batteries (4-pack),3,3.84,05/02/19 13:27,"599 11th St, New York City, NY 10001" -205398,27in 4K Gaming Monitor,1,389.99,05/21/19 14:34,"237 Hickory St, Portland, ME 04101" -205399,Apple Airpods Headphones,1,150,05/02/19 20:39,"229 Lincoln St, Boston, MA 02215" -205400,USB-C Charging Cable,1,11.95,05/30/19 19:52,"210 13th St, Los Angeles, CA 90001" -205401,Macbook Pro Laptop,1,1700,05/18/19 08:14,"276 Lake St, Portland, OR 97035" -205402,Lightning Charging Cable,1,14.95,05/31/19 18:48,"148 Lincoln St, San Francisco, CA 94016" -205403,Bose SoundSport Headphones,1,99.99,05/19/19 11:02,"564 Pine St, Boston, MA 02215" -205404,AAA Batteries (4-pack),1,2.99,05/27/19 05:03,"964 Chestnut St, New York City, NY 10001" -205405,AA Batteries (4-pack),1,3.84,05/14/19 15:24,"106 Johnson St, Los Angeles, CA 90001" -205406,Lightning Charging Cable,1,14.95,05/22/19 16:40,"25 Chestnut St, Los Angeles, CA 90001" -205407,Lightning Charging Cable,1,14.95,05/24/19 18:09,"594 6th St, San Francisco, CA 94016" -205408,iPhone,1,700,05/08/19 15:37,"816 4th St, Los Angeles, CA 90001" -205409,Bose SoundSport Headphones,1,99.99,05/21/19 20:24,"786 Cedar St, Portland, OR 97035" -205410,Google Phone,1,600,05/02/19 04:31,"526 Adams St, San Francisco, CA 94016" -205411,Google Phone,1,600,05/18/19 22:03,"604 Jackson St, Los Angeles, CA 90001" -205412,AA Batteries (4-pack),1,3.84,05/03/19 06:16,"280 13th St, Austin, TX 73301" -205413,LG Washing Machine,1,600.0,05/02/19 21:35,"856 River St, Los Angeles, CA 90001" -205414,Flatscreen TV,1,300,05/09/19 18:44,"657 5th St, San Francisco, CA 94016" -205414,Google Phone,1,600,05/09/19 18:44,"657 5th St, San Francisco, CA 94016" -205415,USB-C Charging Cable,2,11.95,05/29/19 19:55,"288 North St, Los Angeles, CA 90001" -205416,27in FHD Monitor,1,149.99,05/10/19 21:49,"953 Highland St, New York City, NY 10001" -205417,27in 4K Gaming Monitor,1,389.99,05/02/19 19:46,"424 South St, Austin, TX 73301" -205418,Lightning Charging Cable,1,14.95,05/15/19 15:25,"288 Church St, Austin, TX 73301" -205419,Lightning Charging Cable,1,14.95,05/18/19 19:10,"855 Ridge St, San Francisco, CA 94016" -205420,AAA Batteries (4-pack),3,2.99,05/17/19 10:27,"663 1st St, San Francisco, CA 94016" -205421,LG Dryer,1,600.0,05/22/19 12:49,"441 Center St, Portland, ME 04101" -205422,Wired Headphones,1,11.99,05/05/19 00:28,"751 Jackson St, Dallas, TX 75001" -205423,20in Monitor,1,109.99,05/20/19 13:51,"133 West St, Seattle, WA 98101" -205424,Apple Airpods Headphones,1,150,05/28/19 18:02,"685 Chestnut St, Boston, MA 02215" -205425,USB-C Charging Cable,2,11.95,05/30/19 18:51,"220 Forest St, Dallas, TX 75001" -205426,AA Batteries (4-pack),2,3.84,05/12/19 20:25,"842 Forest St, Portland, OR 97035" -205427,AA Batteries (4-pack),1,3.84,05/04/19 09:57,"653 Meadow St, New York City, NY 10001" -205428,AAA Batteries (4-pack),1,2.99,05/09/19 12:40,"564 Cherry St, New York City, NY 10001" -205429,USB-C Charging Cable,1,11.95,05/31/19 13:54,"728 Center St, Boston, MA 02215" -205430,Lightning Charging Cable,1,14.95,05/22/19 08:54,"175 Adams St, San Francisco, CA 94016" -205431,Apple Airpods Headphones,1,150,05/23/19 00:02,"299 Jefferson St, San Francisco, CA 94016" -205432,Lightning Charging Cable,1,14.95,05/30/19 21:31,"444 Park St, Seattle, WA 98101" -205433,Flatscreen TV,1,300,05/13/19 11:53,"352 1st St, Boston, MA 02215" -205434,Bose SoundSport Headphones,1,99.99,05/08/19 07:00,"727 South St, Atlanta, GA 30301" -205435,Google Phone,1,600,05/22/19 01:34,"940 Dogwood St, Portland, OR 97035" -205435,USB-C Charging Cable,1,11.95,05/22/19 01:34,"940 Dogwood St, Portland, OR 97035" -205436,USB-C Charging Cable,1,11.95,05/16/19 21:03,"59 River St, Boston, MA 02215" -205437,Lightning Charging Cable,1,14.95,05/01/19 15:48,"923 6th St, Los Angeles, CA 90001" -205438,AAA Batteries (4-pack),1,2.99,05/15/19 09:31,"966 Cedar St, Boston, MA 02215" -205439,iPhone,1,700,05/24/19 21:23,"491 Lincoln St, Portland, ME 04101" -205440,27in FHD Monitor,1,149.99,05/04/19 15:16,"875 Jefferson St, Boston, MA 02215" -205441,Apple Airpods Headphones,1,150,05/07/19 22:01,"835 Willow St, Boston, MA 02215" -205442,AAA Batteries (4-pack),1,2.99,05/14/19 10:09,"97 Pine St, Dallas, TX 75001" -205443,Google Phone,1,600,05/30/19 13:30,"644 Spruce St, Austin, TX 73301" -205444,iPhone,1,700,05/17/19 01:05,"431 11th St, Austin, TX 73301" -205445,Lightning Charging Cable,1,14.95,05/07/19 10:00,"437 7th St, San Francisco, CA 94016" -205446,AA Batteries (4-pack),1,3.84,05/11/19 12:49,"508 Cherry St, Seattle, WA 98101" -205447,iPhone,1,700,05/18/19 14:43,"788 Washington St, New York City, NY 10001" -205448,AAA Batteries (4-pack),1,2.99,05/19/19 19:28,"442 Washington St, New York City, NY 10001" -205449,Wired Headphones,1,11.99,05/23/19 17:01,"442 Center St, Los Angeles, CA 90001" -205450,ThinkPad Laptop,1,999.99,05/05/19 19:48,"580 Wilson St, New York City, NY 10001" -205451,Lightning Charging Cable,1,14.95,05/22/19 14:45,"420 Elm St, Portland, OR 97035" -205452,Flatscreen TV,1,300,05/17/19 13:41,"871 Spruce St, Portland, OR 97035" -205453,Bose SoundSport Headphones,1,99.99,05/13/19 19:13,"335 Johnson St, Boston, MA 02215" -205454,Wired Headphones,1,11.99,05/15/19 13:13,"811 River St, Los Angeles, CA 90001" -205455,LG Washing Machine,1,600.0,05/31/19 19:42,"383 Meadow St, Dallas, TX 75001" -205456,Flatscreen TV,1,300,05/06/19 22:23,"46 10th St, San Francisco, CA 94016" -205457,AA Batteries (4-pack),1,3.84,05/09/19 17:35,"305 Washington St, San Francisco, CA 94016" -205458,ThinkPad Laptop,1,999.99,05/23/19 14:15,"742 4th St, San Francisco, CA 94016" -205459,Apple Airpods Headphones,1,150,05/06/19 16:14,"35 7th St, Portland, ME 04101" -205460,Apple Airpods Headphones,1,150,05/22/19 11:54,"976 9th St, Portland, OR 97035" -205461,Lightning Charging Cable,1,14.95,05/07/19 21:17,"144 Cherry St, San Francisco, CA 94016" -205462,AA Batteries (4-pack),1,3.84,05/26/19 22:27,"702 Highland St, New York City, NY 10001" -205463,AAA Batteries (4-pack),1,2.99,05/08/19 21:17,"320 Lake St, Dallas, TX 75001" -205464,Google Phone,1,600,05/19/19 22:47,"871 12th St, New York City, NY 10001" -205465,USB-C Charging Cable,1,11.95,05/10/19 11:35,"315 Washington St, Los Angeles, CA 90001" -205466,Bose SoundSport Headphones,1,99.99,05/11/19 19:54,"238 Hickory St, Dallas, TX 75001" -205467,AAA Batteries (4-pack),2,2.99,05/24/19 12:33,"705 Cedar St, Atlanta, GA 30301" -205468,Bose SoundSport Headphones,1,99.99,05/10/19 15:29,"252 Jefferson St, San Francisco, CA 94016" -205469,Lightning Charging Cable,1,14.95,05/28/19 03:40,"458 Main St, New York City, NY 10001" -205470,AAA Batteries (4-pack),4,2.99,05/20/19 09:25,"447 12th St, Dallas, TX 75001" -205471,Bose SoundSport Headphones,1,99.99,05/10/19 10:45,"667 Park St, San Francisco, CA 94016" -205472,Bose SoundSport Headphones,1,99.99,05/13/19 21:16,"542 River St, San Francisco, CA 94016" -205473,27in FHD Monitor,1,149.99,05/30/19 08:59,"317 Church St, Los Angeles, CA 90001" -205474,Bose SoundSport Headphones,1,99.99,05/30/19 21:32,"456 North St, Austin, TX 73301" -205475,Bose SoundSport Headphones,1,99.99,05/18/19 21:16,"427 Lincoln St, Los Angeles, CA 90001" -205476,USB-C Charging Cable,1,11.95,05/04/19 21:09,"781 Main St, Dallas, TX 75001" -205477,Bose SoundSport Headphones,1,99.99,05/12/19 10:18,"195 River St, Boston, MA 02215" -205478,Vareebadd Phone,1,400,05/24/19 13:42,"469 11th St, Los Angeles, CA 90001" -205479,Lightning Charging Cable,2,14.95,05/05/19 10:51,"640 Adams St, Los Angeles, CA 90001" -205480,AAA Batteries (4-pack),1,2.99,05/26/19 23:05,"774 1st St, Portland, OR 97035" -205481,Apple Airpods Headphones,1,150,05/25/19 13:08,"388 Washington St, San Francisco, CA 94016" -205482,34in Ultrawide Monitor,1,379.99,05/06/19 22:50,"500 10th St, San Francisco, CA 94016" -205483,Bose SoundSport Headphones,1,99.99,05/23/19 11:48,"963 1st St, Portland, OR 97035" -205484,27in FHD Monitor,1,149.99,05/11/19 12:09,"967 Cedar St, New York City, NY 10001" -205485,Lightning Charging Cable,1,14.95,05/12/19 12:01,"346 2nd St, Seattle, WA 98101" -205486,AA Batteries (4-pack),1,3.84,05/25/19 12:01,"488 4th St, New York City, NY 10001" -205487,AAA Batteries (4-pack),1,2.99,05/26/19 16:01,"794 Spruce St, Seattle, WA 98101" -205488,AA Batteries (4-pack),2,3.84,05/19/19 12:07,"892 1st St, Dallas, TX 75001" -205489,iPhone,1,700,05/25/19 12:49,"199 Lincoln St, Los Angeles, CA 90001" -205490,34in Ultrawide Monitor,1,379.99,05/24/19 14:40,"967 South St, New York City, NY 10001" -205491,Apple Airpods Headphones,1,150,05/15/19 13:23,"791 14th St, Los Angeles, CA 90001" -205491,Flatscreen TV,1,300,05/15/19 13:23,"791 14th St, Los Angeles, CA 90001" -205492,AAA Batteries (4-pack),1,2.99,05/26/19 07:47,"189 Ridge St, New York City, NY 10001" -205493,USB-C Charging Cable,1,11.95,05/08/19 20:06,"647 5th St, Portland, OR 97035" -205494,AA Batteries (4-pack),2,3.84,05/20/19 15:10,"355 13th St, San Francisco, CA 94016" -205495,AA Batteries (4-pack),1,3.84,05/04/19 10:48,"514 Maple St, Los Angeles, CA 90001" -205496,USB-C Charging Cable,1,11.95,05/16/19 21:21,"489 1st St, San Francisco, CA 94016" -205497,USB-C Charging Cable,1,11.95,05/17/19 10:15,"870 Elm St, Austin, TX 73301" -205498,USB-C Charging Cable,1,11.95,05/04/19 11:29,"916 7th St, Boston, MA 02215" -205499,Flatscreen TV,1,300,05/05/19 11:40,"609 Elm St, Los Angeles, CA 90001" -205500,AAA Batteries (4-pack),2,2.99,05/03/19 15:23,"916 Johnson St, Portland, OR 97035" -205501,AAA Batteries (4-pack),2,2.99,05/11/19 09:54,"928 Madison St, New York City, NY 10001" -205502,AAA Batteries (4-pack),3,2.99,05/20/19 22:33,"3 13th St, San Francisco, CA 94016" -205503,iPhone,1,700,05/25/19 16:15,"990 West St, Los Angeles, CA 90001" -205503,Apple Airpods Headphones,1,150,05/25/19 16:15,"990 West St, Los Angeles, CA 90001" -205504,AA Batteries (4-pack),1,3.84,05/30/19 17:50,"722 Center St, Atlanta, GA 30301" -205505,ThinkPad Laptop,1,999.99,05/02/19 20:34,"202 14th St, New York City, NY 10001" -205506,iPhone,1,700,05/16/19 09:20,"680 13th St, San Francisco, CA 94016" -205507,27in FHD Monitor,1,149.99,05/12/19 04:44,"198 Willow St, Boston, MA 02215" -205508,AAA Batteries (4-pack),1,2.99,05/29/19 16:48,"156 River St, Portland, OR 97035" -205509,AA Batteries (4-pack),1,3.84,05/06/19 22:44,"595 Willow St, San Francisco, CA 94016" -205510,USB-C Charging Cable,1,11.95,05/05/19 19:13,"151 12th St, Atlanta, GA 30301" -205511,Macbook Pro Laptop,1,1700,05/04/19 10:37,"100 Lincoln St, Los Angeles, CA 90001" -205512,AA Batteries (4-pack),1,3.84,05/07/19 08:53,"862 Walnut St, Los Angeles, CA 90001" -205513,AAA Batteries (4-pack),1,2.99,05/31/19 09:33,"340 5th St, Seattle, WA 98101" -205514,USB-C Charging Cable,1,11.95,05/12/19 12:05,"499 5th St, San Francisco, CA 94016" -205515,AAA Batteries (4-pack),2,2.99,05/05/19 11:40,"307 13th St, San Francisco, CA 94016" -205516,USB-C Charging Cable,1,11.95,05/05/19 07:44,"384 10th St, New York City, NY 10001" -205517,AA Batteries (4-pack),1,3.84,05/16/19 20:08,"231 Elm St, Dallas, TX 75001" -205518,27in FHD Monitor,1,149.99,05/20/19 21:56,"809 Willow St, San Francisco, CA 94016" -205519,AA Batteries (4-pack),1,3.84,05/27/19 09:59,"941 Lake St, New York City, NY 10001" -205520,20in Monitor,1,109.99,05/05/19 18:38,"417 1st St, Boston, MA 02215" -205521,AA Batteries (4-pack),1,3.84,05/09/19 15:46,"312 Pine St, San Francisco, CA 94016" -205522,Google Phone,1,600,05/27/19 02:29,"128 8th St, Dallas, TX 75001" -205523,AAA Batteries (4-pack),2,2.99,05/22/19 20:05,"964 River St, Boston, MA 02215" -205524,Lightning Charging Cable,1,14.95,05/08/19 15:38,"226 North St, San Francisco, CA 94016" -205525,AA Batteries (4-pack),1,3.84,05/22/19 12:36,"963 7th St, New York City, NY 10001" -205526,27in FHD Monitor,1,149.99,05/26/19 18:57,"676 Walnut St, Seattle, WA 98101" -205527,34in Ultrawide Monitor,1,379.99,05/26/19 11:09,"104 Adams St, Seattle, WA 98101" -205528,USB-C Charging Cable,1,11.95,05/24/19 13:15,"178 Highland St, Los Angeles, CA 90001" -205529,Vareebadd Phone,1,400,05/20/19 09:00,"822 Wilson St, San Francisco, CA 94016" -205529,USB-C Charging Cable,1,11.95,05/20/19 09:00,"822 Wilson St, San Francisco, CA 94016" -205529,Wired Headphones,1,11.99,05/20/19 09:00,"822 Wilson St, San Francisco, CA 94016" -205530,Macbook Pro Laptop,1,1700,05/03/19 17:58,"853 1st St, San Francisco, CA 94016" -205531,Bose SoundSport Headphones,1,99.99,05/11/19 02:13,"668 Hill St, San Francisco, CA 94016" -205532,34in Ultrawide Monitor,1,379.99,05/21/19 13:09,"623 12th St, Austin, TX 73301" -205532,Lightning Charging Cable,1,14.95,05/21/19 13:09,"623 12th St, Austin, TX 73301" -205533,ThinkPad Laptop,1,999.99,05/11/19 10:27,"842 Lakeview St, Los Angeles, CA 90001" -205534,Bose SoundSport Headphones,1,99.99,05/08/19 16:24,"995 River St, Boston, MA 02215" -205535,Lightning Charging Cable,1,14.95,05/02/19 13:31,"810 Dogwood St, San Francisco, CA 94016" -205536,Bose SoundSport Headphones,1,99.99,05/29/19 17:44,"441 14th St, New York City, NY 10001" -205537,Wired Headphones,2,11.99,05/08/19 14:39,"778 Park St, San Francisco, CA 94016" -205538,AAA Batteries (4-pack),1,2.99,05/15/19 18:20,"489 South St, New York City, NY 10001" -205539,AAA Batteries (4-pack),2,2.99,05/28/19 10:36,"499 Johnson St, San Francisco, CA 94016" -205540,AAA Batteries (4-pack),1,2.99,05/05/19 18:25,"866 Maple St, Los Angeles, CA 90001" -205541,20in Monitor,1,109.99,05/10/19 20:58,"490 Spruce St, Dallas, TX 75001" -205542,USB-C Charging Cable,1,11.95,05/20/19 23:16,"630 Cherry St, Boston, MA 02215" -205543,AA Batteries (4-pack),1,3.84,05/01/19 22:45,"292 Chestnut St, San Francisco, CA 94016" -205544,20in Monitor,1,109.99,05/19/19 00:30,"219 Johnson St, Boston, MA 02215" -205545,Apple Airpods Headphones,1,150,05/16/19 17:29,"71 Chestnut St, Los Angeles, CA 90001" -205546,34in Ultrawide Monitor,1,379.99,05/10/19 10:00,"283 Church St, New York City, NY 10001" -205547,20in Monitor,1,109.99,05/07/19 12:07,"760 Washington St, Atlanta, GA 30301" -205548,AAA Batteries (4-pack),3,2.99,05/05/19 20:51,"710 7th St, San Francisco, CA 94016" -205549,AAA Batteries (4-pack),1,2.99,05/27/19 19:13,"74 South St, Portland, OR 97035" -205550,AAA Batteries (4-pack),2,2.99,05/28/19 19:05,"258 5th St, Atlanta, GA 30301" -205551,Lightning Charging Cable,1,14.95,05/14/19 22:01,"80 North St, New York City, NY 10001" -205552,AAA Batteries (4-pack),4,2.99,05/11/19 11:07,"1 Church St, San Francisco, CA 94016" -205553,Apple Airpods Headphones,1,150,05/04/19 12:34,"815 13th St, San Francisco, CA 94016" -205554,Apple Airpods Headphones,1,150,05/19/19 18:06,"278 Lake St, Boston, MA 02215" -205555,AA Batteries (4-pack),1,3.84,05/11/19 13:14,"535 Adams St, New York City, NY 10001" -205556,Macbook Pro Laptop,1,1700,05/17/19 22:18,"799 Johnson St, Los Angeles, CA 90001" -205557,Bose SoundSport Headphones,1,99.99,05/24/19 19:23,"902 North St, Seattle, WA 98101" -205558,Lightning Charging Cable,1,14.95,05/05/19 01:16,"788 4th St, San Francisco, CA 94016" -205559,27in FHD Monitor,1,149.99,05/11/19 11:08,"433 12th St, Portland, OR 97035" -205560,USB-C Charging Cable,1,11.95,05/29/19 13:20,"764 Jackson St, Dallas, TX 75001" -205561,AAA Batteries (4-pack),1,2.99,05/29/19 00:10,"817 Madison St, Dallas, TX 75001" -205562,Google Phone,1,600,05/20/19 08:46,"730 Highland St, San Francisco, CA 94016" -205563,34in Ultrawide Monitor,1,379.99,05/29/19 10:59,"758 1st St, Los Angeles, CA 90001" -205564,Apple Airpods Headphones,1,150,05/21/19 17:23,"456 Meadow St, Portland, OR 97035" -205565,AAA Batteries (4-pack),3,2.99,05/24/19 12:53,"994 5th St, Austin, TX 73301" -205566,AA Batteries (4-pack),1,3.84,05/23/19 21:37,"279 Chestnut St, Boston, MA 02215" -205567,27in FHD Monitor,1,149.99,05/12/19 14:01,"434 9th St, Seattle, WA 98101" -205568,AAA Batteries (4-pack),1,2.99,05/30/19 12:03,"46 Cherry St, Austin, TX 73301" -205569,AA Batteries (4-pack),1,3.84,05/07/19 02:24,"945 Wilson St, San Francisco, CA 94016" -205570,Wired Headphones,1,11.99,05/14/19 20:43,"149 7th St, New York City, NY 10001" -205571,AA Batteries (4-pack),1,3.84,05/11/19 12:04,"102 14th St, Los Angeles, CA 90001" -205572,Macbook Pro Laptop,1,1700,05/03/19 15:04,"979 Maple St, Austin, TX 73301" -205573,USB-C Charging Cable,3,11.95,05/25/19 19:08,"541 Forest St, New York City, NY 10001" -205574,Apple Airpods Headphones,1,150,05/15/19 22:57,"223 Lincoln St, San Francisco, CA 94016" -205575,Flatscreen TV,1,300,05/13/19 11:48,"610 Meadow St, Austin, TX 73301" -205576,Vareebadd Phone,1,400,05/26/19 07:49,"194 Walnut St, Atlanta, GA 30301" -205577,AA Batteries (4-pack),1,3.84,05/31/19 07:33,"440 2nd St, Boston, MA 02215" -205578,ThinkPad Laptop,1,999.99,05/06/19 13:18,"162 Adams St, Boston, MA 02215" -205579,AA Batteries (4-pack),1,3.84,05/16/19 06:17,"778 Walnut St, New York City, NY 10001" -205580,Apple Airpods Headphones,1,150,05/07/19 09:49,"866 2nd St, Boston, MA 02215" -205581,Bose SoundSport Headphones,1,99.99,05/30/19 20:16,"745 Ridge St, Los Angeles, CA 90001" -205582,Wired Headphones,1,11.99,05/29/19 09:35,"48 Park St, Los Angeles, CA 90001" -205582,iPhone,1,700,05/29/19 09:35,"48 Park St, Los Angeles, CA 90001" -205583,AAA Batteries (4-pack),1,2.99,05/21/19 05:14,"961 Park St, Los Angeles, CA 90001" -205584,Bose SoundSport Headphones,1,99.99,05/05/19 14:34,"642 Spruce St, Atlanta, GA 30301" -205585,ThinkPad Laptop,1,999.99,05/12/19 11:38,"325 Cedar St, Los Angeles, CA 90001" -205586,34in Ultrawide Monitor,1,379.99,05/18/19 22:30,"47 6th St, Boston, MA 02215" -205587,Flatscreen TV,1,300,05/26/19 17:39,"138 Madison St, Los Angeles, CA 90001" -205588,Apple Airpods Headphones,1,150,05/15/19 15:24,"604 North St, Seattle, WA 98101" -205589,Google Phone,1,600,05/28/19 08:45,"770 Washington St, Los Angeles, CA 90001" -205589,USB-C Charging Cable,1,11.95,05/28/19 08:45,"770 Washington St, Los Angeles, CA 90001" -205590,Apple Airpods Headphones,1,150,05/14/19 19:21,"704 8th St, New York City, NY 10001" -205591,Lightning Charging Cable,1,14.95,05/30/19 11:04,"29 Forest St, Atlanta, GA 30301" -205592,27in FHD Monitor,1,149.99,05/02/19 13:44,"172 Jackson St, San Francisco, CA 94016" -205593,iPhone,1,700,05/10/19 10:20,"892 14th St, Dallas, TX 75001" -205594,AA Batteries (4-pack),1,3.84,05/14/19 17:20,"819 Meadow St, Los Angeles, CA 90001" -205595,AA Batteries (4-pack),1,3.84,05/12/19 21:29,"529 Sunset St, San Francisco, CA 94016" -205596,Wired Headphones,2,11.99,05/21/19 14:05,"514 Elm St, Dallas, TX 75001" -205597,AAA Batteries (4-pack),1,2.99,05/09/19 21:34,"451 9th St, San Francisco, CA 94016" -205598,AA Batteries (4-pack),1,3.84,05/17/19 18:21,"326 Walnut St, Seattle, WA 98101" -205599,USB-C Charging Cable,1,11.95,05/05/19 15:47,"469 Cherry St, San Francisco, CA 94016" -205600,AA Batteries (4-pack),1,3.84,05/22/19 12:05,"416 Highland St, Boston, MA 02215" -205601,27in FHD Monitor,1,149.99,05/21/19 11:33,"538 Pine St, San Francisco, CA 94016" -205602,iPhone,1,700,05/13/19 11:55,"742 West St, Boston, MA 02215" -205603,AA Batteries (4-pack),1,3.84,05/08/19 15:41,"335 Adams St, San Francisco, CA 94016" -205604,Wired Headphones,1,11.99,05/12/19 09:20,"806 Lincoln St, Austin, TX 73301" -205605,27in FHD Monitor,1,149.99,05/31/19 14:11,"703 7th St, Boston, MA 02215" -205606,20in Monitor,1,109.99,05/16/19 18:08,"889 Adams St, Boston, MA 02215" -205607,AA Batteries (4-pack),2,3.84,05/25/19 21:52,"660 Forest St, San Francisco, CA 94016" -205607,AA Batteries (4-pack),1,3.84,05/25/19 21:52,"660 Forest St, San Francisco, CA 94016" -205608,AAA Batteries (4-pack),2,2.99,05/13/19 11:46,"907 11th St, Los Angeles, CA 90001" -205609,Bose SoundSport Headphones,1,99.99,05/15/19 14:55,"615 Willow St, San Francisco, CA 94016" -205610,USB-C Charging Cable,1,11.95,05/14/19 09:06,"626 6th St, Boston, MA 02215" -205611,Bose SoundSport Headphones,1,99.99,05/01/19 23:03,"708 Johnson St, Boston, MA 02215" -205612,AA Batteries (4-pack),1,3.84,05/20/19 14:05,"24 Walnut St, San Francisco, CA 94016" -205613,Lightning Charging Cable,1,14.95,05/24/19 20:58,"351 Walnut St, Boston, MA 02215" -205614,LG Washing Machine,1,600.0,05/04/19 00:53,"748 North St, San Francisco, CA 94016" -205615,AA Batteries (4-pack),1,3.84,05/19/19 16:22,"494 7th St, Seattle, WA 98101" -205616,AA Batteries (4-pack),3,3.84,05/13/19 11:38,"16 Madison St, San Francisco, CA 94016" -205617,iPhone,1,700,05/30/19 15:35,"154 Hill St, Boston, MA 02215" -205618,Bose SoundSport Headphones,1,99.99,05/16/19 18:47,"907 Center St, San Francisco, CA 94016" -205619,34in Ultrawide Monitor,1,379.99,06/01/19 03:22,"627 Cherry St, New York City, NY 10001" -205620,Lightning Charging Cable,1,14.95,05/01/19 20:55,"670 Madison St, Los Angeles, CA 90001" -205621,Bose SoundSport Headphones,1,99.99,05/26/19 17:52,"849 Center St, Atlanta, GA 30301" -205622,Apple Airpods Headphones,1,150,05/16/19 14:52,"446 Adams St, Boston, MA 02215" -205623,AA Batteries (4-pack),1,3.84,05/01/19 14:41,"402 Forest St, New York City, NY 10001" -205624,LG Washing Machine,1,600.0,05/03/19 21:07,"580 Wilson St, San Francisco, CA 94016" -205625,AA Batteries (4-pack),2,3.84,05/02/19 15:01,"854 Park St, Seattle, WA 98101" -205626,Apple Airpods Headphones,1,150,05/02/19 13:57,"83 Lakeview St, Boston, MA 02215" -205627,Bose SoundSport Headphones,1,99.99,05/10/19 14:28,"403 Forest St, Dallas, TX 75001" -205628,Wired Headphones,1,11.99,05/12/19 10:59,"57 8th St, Boston, MA 02215" -205629,AAA Batteries (4-pack),1,2.99,05/21/19 20:00,"710 South St, Portland, OR 97035" -205630,ThinkPad Laptop,1,999.99,05/14/19 22:54,"332 North St, Atlanta, GA 30301" -205631,34in Ultrawide Monitor,1,379.99,05/01/19 12:04,"267 Center St, Dallas, TX 75001" -205632,USB-C Charging Cable,1,11.95,05/28/19 21:28,"914 Park St, New York City, NY 10001" -205633,Google Phone,1,600,05/09/19 17:32,"890 Meadow St, Atlanta, GA 30301" -205634,ThinkPad Laptop,1,999.99,05/22/19 04:37,"874 Main St, San Francisco, CA 94016" -205635,ThinkPad Laptop,1,999.99,05/22/19 17:28,"522 Sunset St, Boston, MA 02215" -205636,Apple Airpods Headphones,1,150,05/14/19 23:48,"522 Jackson St, Los Angeles, CA 90001" -205637,AA Batteries (4-pack),1,3.84,05/29/19 10:55,"211 Ridge St, Seattle, WA 98101" -205638,Lightning Charging Cable,1,14.95,05/17/19 01:10,"68 Chestnut St, New York City, NY 10001" -205639,Lightning Charging Cable,1,14.95,05/18/19 13:43,"893 Ridge St, Atlanta, GA 30301" -205640,AA Batteries (4-pack),1,3.84,05/05/19 14:36,"373 Cedar St, Dallas, TX 75001" -205641,Macbook Pro Laptop,1,1700,05/05/19 22:04,"361 Dogwood St, Boston, MA 02215" -205642,Bose SoundSport Headphones,1,99.99,05/11/19 08:37,"889 14th St, Los Angeles, CA 90001" -205643,USB-C Charging Cable,1,11.95,05/19/19 20:32,"278 5th St, San Francisco, CA 94016" -205644,Macbook Pro Laptop,1,1700,05/01/19 15:48,"993 Cedar St, San Francisco, CA 94016" -205645,Bose SoundSport Headphones,1,99.99,05/16/19 14:56,"677 10th St, New York City, NY 10001" -205646,USB-C Charging Cable,1,11.95,05/16/19 17:15,"58 Maple St, Dallas, TX 75001" -205647,Wired Headphones,1,11.99,05/22/19 00:23,"575 Johnson St, New York City, NY 10001" -205648,Apple Airpods Headphones,1,150,05/06/19 20:16,"335 Lake St, Atlanta, GA 30301" -205649,Vareebadd Phone,1,400,05/13/19 18:51,"189 Lincoln St, Boston, MA 02215" -205650,Wired Headphones,1,11.99,05/12/19 13:09,"871 Madison St, San Francisco, CA 94016" -205651,USB-C Charging Cable,1,11.95,05/05/19 12:58,"846 Park St, San Francisco, CA 94016" -205652,Apple Airpods Headphones,1,150,05/16/19 11:48,"950 4th St, New York City, NY 10001" -205653,USB-C Charging Cable,1,11.95,05/03/19 10:06,"405 9th St, San Francisco, CA 94016" -205654,Lightning Charging Cable,1,14.95,05/06/19 20:50,"452 River St, San Francisco, CA 94016" -205655,27in 4K Gaming Monitor,1,389.99,05/19/19 09:34,"504 Ridge St, Dallas, TX 75001" -205656,AAA Batteries (4-pack),1,2.99,05/24/19 17:54,"86 1st St, Portland, OR 97035" -205657,34in Ultrawide Monitor,1,379.99,05/20/19 19:42,"306 Sunset St, San Francisco, CA 94016" -205658,Bose SoundSport Headphones,1,99.99,05/25/19 20:29,"683 Jackson St, San Francisco, CA 94016" -205659,Lightning Charging Cable,1,14.95,05/18/19 14:41,"466 14th St, San Francisco, CA 94016" -205660,34in Ultrawide Monitor,1,379.99,05/23/19 11:27,"574 Ridge St, Austin, TX 73301" -205661,27in FHD Monitor,1,149.99,05/09/19 09:05,"814 Chestnut St, Los Angeles, CA 90001" -205662,34in Ultrawide Monitor,1,379.99,05/22/19 19:12,"647 Main St, Los Angeles, CA 90001" -205663,Macbook Pro Laptop,1,1700,05/27/19 18:02,"801 West St, San Francisco, CA 94016" -205664,Bose SoundSport Headphones,1,99.99,05/02/19 20:11,"217 2nd St, New York City, NY 10001" -205665,27in 4K Gaming Monitor,1,389.99,05/13/19 09:58,"976 Center St, Los Angeles, CA 90001" -205666,Bose SoundSport Headphones,1,99.99,05/12/19 11:17,"488 Willow St, San Francisco, CA 94016" -205667,27in 4K Gaming Monitor,1,389.99,05/26/19 20:11,"164 Lake St, Los Angeles, CA 90001" -205667,USB-C Charging Cable,1,11.95,05/26/19 20:11,"164 Lake St, Los Angeles, CA 90001" -205668,USB-C Charging Cable,1,11.95,05/08/19 21:27,"763 10th St, Portland, ME 04101" -205669,AA Batteries (4-pack),1,3.84,05/16/19 08:28,"946 5th St, San Francisco, CA 94016" -205670,AA Batteries (4-pack),1,3.84,05/07/19 10:30,"518 Ridge St, Seattle, WA 98101" -205671,Lightning Charging Cable,1,14.95,05/24/19 23:14,"981 2nd St, Atlanta, GA 30301" -205672,27in 4K Gaming Monitor,1,389.99,05/12/19 01:20,"923 Wilson St, Dallas, TX 75001" -205673,AA Batteries (4-pack),2,3.84,05/18/19 10:57,"42 North St, New York City, NY 10001" -205674,Lightning Charging Cable,1,14.95,05/02/19 17:09,"598 Church St, Los Angeles, CA 90001" -205675,Lightning Charging Cable,1,14.95,05/05/19 13:20,"279 Chestnut St, Dallas, TX 75001" -205676,Flatscreen TV,1,300,05/22/19 16:32,"239 12th St, Los Angeles, CA 90001" -205677,LG Dryer,1,600.0,05/18/19 19:21,"800 Jefferson St, Atlanta, GA 30301" -205678,AA Batteries (4-pack),3,3.84,05/03/19 22:02,"593 14th St, Atlanta, GA 30301" -205678,iPhone,1,700,05/03/19 22:02,"593 14th St, Atlanta, GA 30301" -205679,AA Batteries (4-pack),1,3.84,05/21/19 13:18,"576 Ridge St, San Francisco, CA 94016" -205680,Bose SoundSport Headphones,1,99.99,05/27/19 10:40,"869 Jefferson St, Los Angeles, CA 90001" -205681,Google Phone,1,600,05/24/19 07:10,"948 Hill St, Austin, TX 73301" -205682,Flatscreen TV,1,300,05/28/19 20:08,"806 5th St, Atlanta, GA 30301" -205683,AA Batteries (4-pack),1,3.84,05/22/19 21:58,"937 Hickory St, San Francisco, CA 94016" -205684,Google Phone,1,600,05/05/19 18:13,"399 River St, San Francisco, CA 94016" -205685,Vareebadd Phone,1,400,05/26/19 00:14,"932 6th St, Los Angeles, CA 90001" -205686,27in 4K Gaming Monitor,1,389.99,05/12/19 14:43,"488 Maple St, San Francisco, CA 94016" -205687,Bose SoundSport Headphones,1,99.99,05/23/19 12:34,"607 Adams St, Dallas, TX 75001" -205688,Macbook Pro Laptop,1,1700,05/22/19 08:15,"563 1st St, New York City, NY 10001" -205689,Lightning Charging Cable,1,14.95,05/09/19 17:28,"535 Sunset St, New York City, NY 10001" -205690,Wired Headphones,1,11.99,05/05/19 20:05,"203 Maple St, New York City, NY 10001" -205691,AA Batteries (4-pack),2,3.84,05/19/19 20:25,"322 Park St, Atlanta, GA 30301" -205692,AA Batteries (4-pack),3,3.84,05/07/19 15:49,"65 14th St, Portland, OR 97035" -205693,USB-C Charging Cable,1,11.95,05/22/19 09:22,"424 8th St, Seattle, WA 98101" -205694,AAA Batteries (4-pack),1,2.99,05/09/19 01:27,"788 4th St, Los Angeles, CA 90001" -205695,Apple Airpods Headphones,1,150,05/11/19 21:19,"997 5th St, Los Angeles, CA 90001" -205696,Bose SoundSport Headphones,1,99.99,05/14/19 18:56,"474 Lincoln St, Dallas, TX 75001" -205697,AA Batteries (4-pack),1,3.84,05/28/19 11:03,"457 Lake St, Portland, OR 97035" -205698,USB-C Charging Cable,1,11.95,05/08/19 15:05,"981 Forest St, San Francisco, CA 94016" -205699,AA Batteries (4-pack),1,3.84,05/25/19 13:55,"178 North St, Los Angeles, CA 90001" -205700,AAA Batteries (4-pack),3,2.99,05/10/19 20:31,"413 Hickory St, Los Angeles, CA 90001" -205701,Wired Headphones,1,11.99,05/23/19 19:33,"375 South St, San Francisco, CA 94016" -205702,Apple Airpods Headphones,1,150,05/03/19 18:14,"212 North St, Los Angeles, CA 90001" -205702,Wired Headphones,1,11.99,05/03/19 18:14,"212 North St, Los Angeles, CA 90001" -205703,AA Batteries (4-pack),1,3.84,05/25/19 16:32,"858 10th St, San Francisco, CA 94016" -205704,ThinkPad Laptop,1,999.99,05/01/19 18:04,"70 Elm St, San Francisco, CA 94016" -205704,AAA Batteries (4-pack),1,2.99,05/01/19 18:04,"70 Elm St, San Francisco, CA 94016" -205705,iPhone,1,700,05/16/19 17:55,"160 Cherry St, Seattle, WA 98101" -205705,Lightning Charging Cable,1,14.95,05/16/19 17:55,"160 Cherry St, Seattle, WA 98101" -205706,Macbook Pro Laptop,1,1700,05/28/19 18:53,"588 Center St, New York City, NY 10001" -205707,Bose SoundSport Headphones,1,99.99,05/31/19 16:46,"518 12th St, San Francisco, CA 94016" -205708,Lightning Charging Cable,1,14.95,05/23/19 07:52,"584 Center St, Austin, TX 73301" -205709,20in Monitor,1,109.99,05/18/19 21:25,"978 Washington St, Los Angeles, CA 90001" -205710,Lightning Charging Cable,1,14.95,05/25/19 09:51,"123 Madison St, Los Angeles, CA 90001" -205711,AAA Batteries (4-pack),1,2.99,05/27/19 12:22,"56 Adams St, Boston, MA 02215" -205712,Google Phone,1,600,05/27/19 13:53,"286 11th St, Austin, TX 73301" -205712,USB-C Charging Cable,1,11.95,05/27/19 13:53,"286 11th St, Austin, TX 73301" -205713,Wired Headphones,1,11.99,05/04/19 23:17,"251 Hill St, Atlanta, GA 30301" -205714,Bose SoundSport Headphones,1,99.99,05/14/19 18:56,"297 Adams St, Seattle, WA 98101" -205715,20in Monitor,1,109.99,05/19/19 12:38,"11 Maple St, New York City, NY 10001" -205716,Bose SoundSport Headphones,1,99.99,05/29/19 11:34,"316 4th St, Los Angeles, CA 90001" -205717,USB-C Charging Cable,1,11.95,05/11/19 08:15,"214 4th St, Los Angeles, CA 90001" -205718,AAA Batteries (4-pack),4,2.99,05/28/19 11:42,"773 Cherry St, New York City, NY 10001" -205719,AAA Batteries (4-pack),2,2.99,05/01/19 21:06,"254 Main St, San Francisco, CA 94016" -205720,Lightning Charging Cable,1,14.95,05/04/19 12:01,"893 14th St, San Francisco, CA 94016" -205721,Lightning Charging Cable,1,14.95,05/07/19 00:54,"854 11th St, San Francisco, CA 94016" -205722,Lightning Charging Cable,1,14.95,05/12/19 22:49,"280 8th St, Los Angeles, CA 90001" -205723,34in Ultrawide Monitor,1,379.99,05/29/19 08:17,"467 11th St, New York City, NY 10001" -205724,34in Ultrawide Monitor,1,379.99,05/12/19 23:42,"888 10th St, San Francisco, CA 94016" -205725,USB-C Charging Cable,1,11.95,05/24/19 13:36,"353 Highland St, Boston, MA 02215" -205726,USB-C Charging Cable,1,11.95,05/27/19 11:52,"643 Elm St, San Francisco, CA 94016" -205727,USB-C Charging Cable,1,11.95,05/27/19 16:11,"391 Ridge St, San Francisco, CA 94016" -205728,Vareebadd Phone,1,400,05/22/19 18:11,"110 Johnson St, Seattle, WA 98101" -205729,Macbook Pro Laptop,1,1700,05/18/19 11:47,"652 Hill St, San Francisco, CA 94016" -205730,Apple Airpods Headphones,1,150,05/31/19 18:45,"288 Lincoln St, Austin, TX 73301" -205731,AAA Batteries (4-pack),2,2.99,05/07/19 15:18,"911 12th St, Los Angeles, CA 90001" -205732,20in Monitor,1,109.99,05/27/19 18:08,"276 North St, New York City, NY 10001" -205733,Google Phone,1,600,05/08/19 14:14,"480 Lincoln St, Portland, ME 04101" -205734,Wired Headphones,1,11.99,05/19/19 21:44,"484 5th St, Los Angeles, CA 90001" -205735,USB-C Charging Cable,1,11.95,05/17/19 19:11,"577 12th St, Austin, TX 73301" -205736,AA Batteries (4-pack),1,3.84,05/26/19 12:06,"680 Pine St, San Francisco, CA 94016" -205737,Apple Airpods Headphones,1,150,05/14/19 10:31,"646 Meadow St, Dallas, TX 75001" -205738,Apple Airpods Headphones,1,150,05/12/19 07:01,"464 Church St, Boston, MA 02215" -205739,Lightning Charging Cable,1,14.95,05/04/19 16:06,"522 Cedar St, New York City, NY 10001" -205740,Apple Airpods Headphones,1,150,05/04/19 21:25,"719 1st St, Boston, MA 02215" -205741,Macbook Pro Laptop,1,1700,05/13/19 16:48,"863 Hickory St, Dallas, TX 75001" -205742,LG Dryer,1,600.0,05/17/19 04:38,"713 South St, Dallas, TX 75001" -205743,27in FHD Monitor,1,149.99,05/18/19 20:29,"85 Lincoln St, Atlanta, GA 30301" -205744,AA Batteries (4-pack),1,3.84,05/02/19 18:26,"915 7th St, San Francisco, CA 94016" -205745,Lightning Charging Cable,1,14.95,05/16/19 13:20,"173 Washington St, Boston, MA 02215" -205746,Bose SoundSport Headphones,1,99.99,05/11/19 01:13,"403 12th St, Seattle, WA 98101" -205747,Apple Airpods Headphones,1,150,05/12/19 09:46,"115 Hickory St, Atlanta, GA 30301" -205748,USB-C Charging Cable,1,11.95,05/26/19 11:44,"768 2nd St, San Francisco, CA 94016" -205749,ThinkPad Laptop,1,999.99,05/03/19 21:03,"772 Jefferson St, New York City, NY 10001" -205750,AAA Batteries (4-pack),1,2.99,05/04/19 17:44,"937 9th St, Los Angeles, CA 90001" -205751,Bose SoundSport Headphones,1,99.99,05/02/19 18:53,"649 Church St, Portland, OR 97035" -205752,Wired Headphones,1,11.99,05/10/19 18:51,"579 Jackson St, Los Angeles, CA 90001" -205753,AAA Batteries (4-pack),1,2.99,05/16/19 12:31,"933 11th St, Boston, MA 02215" -205754,Lightning Charging Cable,1,14.95,05/20/19 19:12,"286 8th St, New York City, NY 10001" -205755,USB-C Charging Cable,1,11.95,05/01/19 12:18,"464 Hill St, Boston, MA 02215" -205756,Wired Headphones,1,11.99,05/06/19 21:02,"871 10th St, Los Angeles, CA 90001" -205757,AAA Batteries (4-pack),2,2.99,05/10/19 20:17,"868 Jefferson St, Boston, MA 02215" -205758,20in Monitor,1,109.99,05/12/19 20:39,"400 Wilson St, Austin, TX 73301" -205759,Lightning Charging Cable,1,14.95,05/30/19 09:07,"124 Forest St, New York City, NY 10001" -205760,Apple Airpods Headphones,1,150,05/06/19 12:33,"575 Park St, Los Angeles, CA 90001" -205761,AAA Batteries (4-pack),1,2.99,05/17/19 16:34,"953 Willow St, Portland, ME 04101" -205762,27in 4K Gaming Monitor,1,389.99,05/23/19 14:27,"139 Washington St, San Francisco, CA 94016" -205763,Macbook Pro Laptop,1,1700,05/04/19 09:45,"346 Center St, San Francisco, CA 94016" -205764,27in FHD Monitor,1,149.99,05/19/19 16:07,"863 Chestnut St, Boston, MA 02215" -205765,AA Batteries (4-pack),1,3.84,05/29/19 17:10,"656 5th St, Seattle, WA 98101" -205766,Lightning Charging Cable,1,14.95,05/03/19 20:22,"462 Church St, Atlanta, GA 30301" -205766,Apple Airpods Headphones,1,150,05/03/19 20:22,"462 Church St, Atlanta, GA 30301" -205767,Wired Headphones,1,11.99,05/15/19 23:34,"852 Sunset St, Los Angeles, CA 90001" -205768,USB-C Charging Cable,1,11.95,05/13/19 20:04,"735 Madison St, Portland, OR 97035" -205769,AAA Batteries (4-pack),3,2.99,05/12/19 00:04,"688 Sunset St, Boston, MA 02215" -205770,iPhone,1,700,05/01/19 12:22,"36 River St, New York City, NY 10001" -205770,Wired Headphones,1,11.99,05/01/19 12:22,"36 River St, New York City, NY 10001" -205771,Lightning Charging Cable,1,14.95,05/15/19 16:46,"425 9th St, Los Angeles, CA 90001" -205772,Bose SoundSport Headphones,1,99.99,05/20/19 20:50,"356 Cherry St, Portland, OR 97035" -205773,Apple Airpods Headphones,1,150,05/07/19 21:04,"196 6th St, Seattle, WA 98101" -205774,USB-C Charging Cable,1,11.95,05/15/19 08:03,"558 Hickory St, New York City, NY 10001" -205775,AA Batteries (4-pack),3,3.84,05/30/19 12:24,"780 Spruce St, San Francisco, CA 94016" -205776,USB-C Charging Cable,1,11.95,05/10/19 00:58,"435 Ridge St, Los Angeles, CA 90001" -205777,AAA Batteries (4-pack),3,2.99,05/25/19 08:08,"520 Johnson St, Austin, TX 73301" -205778,Vareebadd Phone,1,400,05/09/19 08:02,"302 1st St, Boston, MA 02215" -205778,USB-C Charging Cable,1,11.95,05/09/19 08:02,"302 1st St, Boston, MA 02215" -205778,Bose SoundSport Headphones,1,99.99,05/09/19 08:02,"302 1st St, Boston, MA 02215" -205779,USB-C Charging Cable,1,11.95,05/27/19 19:35,"568 Cedar St, Los Angeles, CA 90001" -205780,Lightning Charging Cable,1,14.95,05/26/19 16:16,"433 Cherry St, Portland, OR 97035" -205781,Bose SoundSport Headphones,1,99.99,05/09/19 08:38,"872 River St, Los Angeles, CA 90001" -205782,Lightning Charging Cable,1,14.95,05/18/19 08:04,"406 River St, San Francisco, CA 94016" -205783,Vareebadd Phone,1,400,05/12/19 23:51,"987 West St, Atlanta, GA 30301" -205783,USB-C Charging Cable,1,11.95,05/12/19 23:51,"987 West St, Atlanta, GA 30301" -205784,Wired Headphones,1,11.99,05/26/19 17:37,"984 1st St, New York City, NY 10001" -205785,Wired Headphones,1,11.99,05/09/19 20:25,"900 Lake St, Austin, TX 73301" -205786,AAA Batteries (4-pack),2,2.99,05/25/19 19:35,"629 Church St, Dallas, TX 75001" -205787,20in Monitor,1,109.99,05/21/19 13:15,"289 Lake St, Atlanta, GA 30301" -205788,AAA Batteries (4-pack),1,2.99,05/23/19 09:44,"86 1st St, Portland, ME 04101" -205789,USB-C Charging Cable,1,11.95,05/03/19 14:08,"871 North St, New York City, NY 10001" -205790,Wired Headphones,1,11.99,05/26/19 12:04,"690 Maple St, Los Angeles, CA 90001" -205791,iPhone,1,700,05/29/19 10:40,"131 4th St, San Francisco, CA 94016" -205791,Apple Airpods Headphones,1,150,05/29/19 10:40,"131 4th St, San Francisco, CA 94016" -205792,27in FHD Monitor,1,149.99,05/08/19 18:58,"199 Forest St, Atlanta, GA 30301" -205793,USB-C Charging Cable,1,11.95,05/10/19 19:01,"75 8th St, Dallas, TX 75001" -205794,Apple Airpods Headphones,1,150,05/28/19 15:52,"974 River St, Austin, TX 73301" -205795,Wired Headphones,1,11.99,05/19/19 08:39,"567 Willow St, Boston, MA 02215" -205796,27in 4K Gaming Monitor,1,389.99,05/23/19 21:30,"341 Jefferson St, Austin, TX 73301" -205797,34in Ultrawide Monitor,1,379.99,05/10/19 00:40,"518 Center St, Los Angeles, CA 90001" -205798,USB-C Charging Cable,1,11.95,05/05/19 13:48,"689 Highland St, San Francisco, CA 94016" -205799,AA Batteries (4-pack),2,3.84,05/13/19 18:26,"290 Jefferson St, New York City, NY 10001" -205800,AAA Batteries (4-pack),1,2.99,05/10/19 18:59,"357 Lake St, Dallas, TX 75001" -205801,AAA Batteries (4-pack),3,2.99,05/16/19 14:59,"633 5th St, San Francisco, CA 94016" -205801,Apple Airpods Headphones,1,150,05/16/19 14:59,"633 5th St, San Francisco, CA 94016" -205802,AAA Batteries (4-pack),3,2.99,05/31/19 19:17,"134 Washington St, Los Angeles, CA 90001" -205803,iPhone,1,700,05/26/19 21:28,"804 Forest St, San Francisco, CA 94016" -205803,Lightning Charging Cable,1,14.95,05/26/19 21:28,"804 Forest St, San Francisco, CA 94016" -205804,USB-C Charging Cable,1,11.95,05/16/19 09:55,"74 7th St, San Francisco, CA 94016" -205804,AAA Batteries (4-pack),1,2.99,05/16/19 09:55,"74 7th St, San Francisco, CA 94016" -205805,Lightning Charging Cable,1,14.95,05/18/19 21:43,"118 9th St, Dallas, TX 75001" -205806,Lightning Charging Cable,1,14.95,05/16/19 16:55,"20 Hill St, San Francisco, CA 94016" -205807,27in FHD Monitor,1,149.99,05/02/19 20:23,"243 1st St, New York City, NY 10001" -205808,27in 4K Gaming Monitor,1,389.99,05/01/19 09:54,"146 Main St, Los Angeles, CA 90001" -205809,Wired Headphones,1,11.99,05/10/19 13:04,"204 South St, Boston, MA 02215" -205810,Apple Airpods Headphones,1,150,05/12/19 21:24,"407 North St, Boston, MA 02215" -205811,Google Phone,1,600,05/26/19 11:28,"174 1st St, San Francisco, CA 94016" -205812,AA Batteries (4-pack),1,3.84,05/06/19 18:33,"494 Jefferson St, San Francisco, CA 94016" -205813,Apple Airpods Headphones,1,150,05/29/19 20:19,"329 7th St, Portland, OR 97035" -205814,iPhone,1,700,05/27/19 02:19,"876 Lake St, Dallas, TX 75001" -205814,Wired Headphones,1,11.99,05/27/19 02:19,"876 Lake St, Dallas, TX 75001" -205815,34in Ultrawide Monitor,1,379.99,05/08/19 08:06,"633 8th St, San Francisco, CA 94016" -205816,Lightning Charging Cable,1,14.95,05/28/19 10:48,"801 Lake St, New York City, NY 10001" -205817,Apple Airpods Headphones,1,150,05/01/19 21:22,"494 Maple St, San Francisco, CA 94016" -205818,34in Ultrawide Monitor,1,379.99,05/02/19 13:11,"815 2nd St, Seattle, WA 98101" -205819,Apple Airpods Headphones,1,150,05/10/19 19:05,"927 Hickory St, Seattle, WA 98101" -205820,34in Ultrawide Monitor,1,379.99,05/02/19 12:09,"879 Meadow St, Atlanta, GA 30301" -205821,AA Batteries (4-pack),1,3.84,05/27/19 22:48,"548 Hickory St, Los Angeles, CA 90001" -205822,34in Ultrawide Monitor,1,379.99,05/18/19 21:58,"223 12th St, San Francisco, CA 94016" -205823,20in Monitor,1,109.99,05/24/19 21:30,"849 Meadow St, San Francisco, CA 94016" -205824,Lightning Charging Cable,1,14.95,05/22/19 12:00,"893 Lakeview St, Austin, TX 73301" -205825,Flatscreen TV,1,300,05/02/19 09:39,"720 Ridge St, San Francisco, CA 94016" -205826,Apple Airpods Headphones,1,150,05/22/19 16:11,"225 Highland St, San Francisco, CA 94016" -205827,Macbook Pro Laptop,1,1700,05/12/19 17:47,"160 Cedar St, New York City, NY 10001" -205828,Wired Headphones,1,11.99,05/03/19 23:28,"914 South St, San Francisco, CA 94016" -205829,Lightning Charging Cable,1,14.95,05/16/19 12:10,"113 Meadow St, San Francisco, CA 94016" -205830,AA Batteries (4-pack),1,3.84,05/15/19 21:34,"443 2nd St, Dallas, TX 75001" -205831,20in Monitor,1,109.99,05/16/19 10:16,"422 Center St, Boston, MA 02215" -205832,USB-C Charging Cable,1,11.95,05/21/19 02:08,"706 Chestnut St, San Francisco, CA 94016" -205833,AAA Batteries (4-pack),1,2.99,05/07/19 12:27,"753 10th St, Boston, MA 02215" -205834,ThinkPad Laptop,1,999.99,05/03/19 08:12,"897 Hickory St, Atlanta, GA 30301" -205835,LG Dryer,1,600.0,05/23/19 17:18,"392 Jackson St, Seattle, WA 98101" -205836,27in FHD Monitor,1,149.99,05/24/19 15:33,"215 Jefferson St, San Francisco, CA 94016" -205837,AAA Batteries (4-pack),2,2.99,05/21/19 09:16,"209 1st St, Dallas, TX 75001" -205838,Lightning Charging Cable,1,14.95,05/19/19 14:39,"661 12th St, Dallas, TX 75001" -205839,AA Batteries (4-pack),1,3.84,05/14/19 11:13,"255 8th St, San Francisco, CA 94016" -205840,Wired Headphones,1,11.99,05/15/19 16:23,"989 Adams St, San Francisco, CA 94016" -205841,Wired Headphones,1,11.99,05/08/19 00:19,"941 Maple St, San Francisco, CA 94016" -205842,Lightning Charging Cable,1,14.95,05/06/19 20:13,"515 1st St, Seattle, WA 98101" -205843,AA Batteries (4-pack),1,3.84,05/05/19 20:59,"986 Dogwood St, Boston, MA 02215" -205844,Lightning Charging Cable,1,14.95,05/31/19 14:00,"769 Main St, New York City, NY 10001" -205845,Apple Airpods Headphones,1,150,05/31/19 17:31,"844 Center St, Austin, TX 73301" -205846,Wired Headphones,1,11.99,05/31/19 12:58,"552 1st St, Los Angeles, CA 90001" -205847,Lightning Charging Cable,1,14.95,05/12/19 12:03,"415 Walnut St, San Francisco, CA 94016" -205848,Flatscreen TV,1,300,05/21/19 23:44,"643 Washington St, San Francisco, CA 94016" -205849,USB-C Charging Cable,1,11.95,05/04/19 13:02,"196 Chestnut St, Portland, OR 97035" -205850,AAA Batteries (4-pack),2,2.99,05/10/19 06:05,"838 Maple St, New York City, NY 10001" -205851,Apple Airpods Headphones,1,150,05/11/19 13:58,"50 Johnson St, Boston, MA 02215" -205852,AA Batteries (4-pack),1,3.84,05/08/19 14:24,"816 Center St, Dallas, TX 75001" -205853,Wired Headphones,1,11.99,05/03/19 21:29,"737 Forest St, San Francisco, CA 94016" -205854,AAA Batteries (4-pack),3,2.99,05/16/19 21:09,"997 Forest St, Seattle, WA 98101" -205855,Bose SoundSport Headphones,1,99.99,05/29/19 12:42,"87 Center St, San Francisco, CA 94016" -205856,27in 4K Gaming Monitor,1,389.99,05/19/19 21:02,"587 4th St, Seattle, WA 98101" -205857,AA Batteries (4-pack),3,3.84,05/06/19 17:24,"14 Center St, Los Angeles, CA 90001" -205858,AAA Batteries (4-pack),1,2.99,05/20/19 00:02,"915 9th St, New York City, NY 10001" -205859,USB-C Charging Cable,1,11.95,05/19/19 15:22,"877 1st St, Boston, MA 02215" -205860,AAA Batteries (4-pack),1,2.99,05/19/19 23:25,"504 12th St, Los Angeles, CA 90001" -205861,USB-C Charging Cable,2,11.95,05/31/19 17:34,"332 9th St, Dallas, TX 75001" -205862,AAA Batteries (4-pack),1,2.99,05/05/19 13:32,"500 South St, New York City, NY 10001" -205863,AAA Batteries (4-pack),1,2.99,05/02/19 23:36,"967 Madison St, Austin, TX 73301" -205864,27in 4K Gaming Monitor,1,389.99,05/13/19 13:17,"429 Adams St, Atlanta, GA 30301" -205865,iPhone,1,700,05/02/19 06:13,"962 Cherry St, Dallas, TX 75001" -205865,Apple Airpods Headphones,1,150,05/02/19 06:13,"962 Cherry St, Dallas, TX 75001" -205866,27in FHD Monitor,1,149.99,05/31/19 12:57,"708 Meadow St, Los Angeles, CA 90001" -205867,iPhone,1,700,05/11/19 22:49,"91 6th St, San Francisco, CA 94016" -205868,AAA Batteries (4-pack),2,2.99,05/19/19 23:37,"258 2nd St, San Francisco, CA 94016" -205869,Flatscreen TV,1,300,05/10/19 14:37,"145 West St, San Francisco, CA 94016" -205870,Wired Headphones,1,11.99,05/06/19 19:03,"405 13th St, Boston, MA 02215" -205871,Wired Headphones,1,11.99,05/06/19 19:50,"463 Washington St, Atlanta, GA 30301" -205872,34in Ultrawide Monitor,1,379.99,05/09/19 23:23,"498 Forest St, Los Angeles, CA 90001" -205873,AAA Batteries (4-pack),2,2.99,05/27/19 20:13,"265 Lake St, Los Angeles, CA 90001" -205874,Bose SoundSport Headphones,1,99.99,05/31/19 16:50,"616 Ridge St, Seattle, WA 98101" -205875,Lightning Charging Cable,1,14.95,05/25/19 15:57,"737 Spruce St, San Francisco, CA 94016" -205876,USB-C Charging Cable,1,11.95,05/18/19 17:58,"480 Johnson St, San Francisco, CA 94016" -205877,USB-C Charging Cable,1,11.95,05/13/19 16:46,"476 Forest St, Los Angeles, CA 90001" -205878,USB-C Charging Cable,1,11.95,05/13/19 20:40,"366 11th St, Dallas, TX 75001" -205879,Lightning Charging Cable,1,14.95,05/22/19 19:18,"40 14th St, Dallas, TX 75001" -205880,Apple Airpods Headphones,1,150,05/09/19 20:02,"396 Cherry St, Portland, OR 97035" -205881,AAA Batteries (4-pack),2,2.99,05/26/19 20:11,"455 9th St, Portland, OR 97035" -205882,Wired Headphones,1,11.99,05/26/19 18:21,"897 Cedar St, Los Angeles, CA 90001" -205883,Wired Headphones,1,11.99,05/23/19 19:57,"963 North St, Seattle, WA 98101" -205884,Macbook Pro Laptop,1,1700,05/29/19 11:52,"237 7th St, San Francisco, CA 94016" -205885,Macbook Pro Laptop,1,1700,05/08/19 17:44,"106 8th St, San Francisco, CA 94016" -205886,Flatscreen TV,1,300,05/26/19 11:51,"881 Dogwood St, Boston, MA 02215" -205887,27in 4K Gaming Monitor,1,389.99,05/18/19 11:02,"930 12th St, San Francisco, CA 94016" -205888,AAA Batteries (4-pack),1,2.99,05/23/19 12:11,"567 13th St, Boston, MA 02215" -205889,34in Ultrawide Monitor,1,379.99,05/15/19 22:50,"731 Pine St, New York City, NY 10001" -205890,USB-C Charging Cable,1,11.95,05/20/19 15:48,"843 1st St, Los Angeles, CA 90001" -205891,AA Batteries (4-pack),1,3.84,05/02/19 10:28,"443 Maple St, New York City, NY 10001" -205892,AAA Batteries (4-pack),2,2.99,05/03/19 18:57,"451 Highland St, Boston, MA 02215" -205893,Apple Airpods Headphones,1,150,05/31/19 15:27,"31 4th St, San Francisco, CA 94016" -205894,Bose SoundSport Headphones,1,99.99,05/23/19 09:44,"199 1st St, Los Angeles, CA 90001" -205895,Apple Airpods Headphones,1,150,05/21/19 14:41,"893 11th St, Dallas, TX 75001" -205896,USB-C Charging Cable,1,11.95,05/17/19 09:33,"425 7th St, San Francisco, CA 94016" -205897,AA Batteries (4-pack),1,3.84,05/21/19 00:02,"77 Adams St, Los Angeles, CA 90001" -205898,USB-C Charging Cable,1,11.95,05/18/19 18:28,"489 Church St, Los Angeles, CA 90001" -205899,20in Monitor,1,109.99,05/11/19 19:40,"886 South St, New York City, NY 10001" -205900,iPhone,1,700,05/20/19 11:52,"199 Maple St, Los Angeles, CA 90001" -205901,AA Batteries (4-pack),1,3.84,05/05/19 15:28,"102 Madison St, New York City, NY 10001" -205902,USB-C Charging Cable,1,11.95,05/07/19 00:45,"186 North St, San Francisco, CA 94016" -205902,Vareebadd Phone,1,400,05/07/19 00:45,"186 North St, San Francisco, CA 94016" -205903,LG Dryer,1,600.0,05/13/19 12:43,"147 Spruce St, Los Angeles, CA 90001" -205904,Lightning Charging Cable,1,14.95,05/18/19 21:25,"802 10th St, Atlanta, GA 30301" -205905,USB-C Charging Cable,1,11.95,05/29/19 10:58,"663 River St, Portland, ME 04101" -205906,Flatscreen TV,1,300,05/24/19 14:16,"463 Main St, Boston, MA 02215" -205907,Wired Headphones,1,11.99,05/28/19 18:12,"285 5th St, Austin, TX 73301" -205908,Lightning Charging Cable,1,14.95,05/02/19 07:13,"377 Spruce St, San Francisco, CA 94016" -205909,27in 4K Gaming Monitor,1,389.99,05/21/19 17:47,"770 Church St, Portland, OR 97035" -205910,Apple Airpods Headphones,1,150,05/14/19 09:42,"521 Johnson St, Atlanta, GA 30301" -205911,20in Monitor,1,109.99,05/29/19 17:10,"189 Jefferson St, New York City, NY 10001" -205912,Lightning Charging Cable,1,14.95,05/05/19 23:09,"250 8th St, Seattle, WA 98101" -205913,Lightning Charging Cable,1,14.95,05/17/19 20:25,"939 4th St, Austin, TX 73301" -205914,27in 4K Gaming Monitor,1,389.99,05/23/19 19:11,"150 10th St, San Francisco, CA 94016" -205915,Wired Headphones,1,11.99,05/21/19 23:21,"263 Willow St, New York City, NY 10001" -205916,20in Monitor,1,109.99,05/16/19 12:52,"687 Cherry St, San Francisco, CA 94016" -205917,Google Phone,1,600,05/17/19 19:05,"176 Main St, Seattle, WA 98101" -205918,USB-C Charging Cable,1,11.95,05/05/19 20:50,"244 Center St, San Francisco, CA 94016" -205919,Wired Headphones,1,11.99,05/02/19 09:47,"25 5th St, Seattle, WA 98101" -205920,Apple Airpods Headphones,1,150,05/18/19 09:54,"907 2nd St, San Francisco, CA 94016" -205921,USB-C Charging Cable,1,11.95,05/10/19 19:15,"890 11th St, Los Angeles, CA 90001" -205922,Macbook Pro Laptop,1,1700,05/13/19 11:33,"365 Adams St, San Francisco, CA 94016" -205923,Apple Airpods Headphones,1,150,05/04/19 22:08,"442 Wilson St, Atlanta, GA 30301" -205923,Lightning Charging Cable,1,14.95,05/04/19 22:08,"442 Wilson St, Atlanta, GA 30301" -205924,USB-C Charging Cable,1,11.95,05/19/19 06:34,"51 Chestnut St, Seattle, WA 98101" -205925,USB-C Charging Cable,1,11.95,05/15/19 07:13,"915 13th St, New York City, NY 10001" -205926,AAA Batteries (4-pack),1,2.99,05/08/19 11:33,"611 Meadow St, Los Angeles, CA 90001" -205927,Apple Airpods Headphones,1,150,05/07/19 03:25,"164 Hill St, San Francisco, CA 94016" -205928,AAA Batteries (4-pack),1,2.99,05/08/19 12:48,"638 North St, Seattle, WA 98101" -205929,AAA Batteries (4-pack),1,2.99,05/01/19 18:17,"635 Lincoln St, New York City, NY 10001" -205930,USB-C Charging Cable,1,11.95,05/05/19 13:09,"4 Jackson St, San Francisco, CA 94016" -205931,ThinkPad Laptop,1,999.99,05/24/19 20:57,"591 Hickory St, San Francisco, CA 94016" -,,,,, -205932,27in 4K Gaming Monitor,1,389.99,05/30/19 11:02,"201 11th St, San Francisco, CA 94016" -205933,Wired Headphones,1,11.99,05/03/19 13:53,"45 Washington St, New York City, NY 10001" -205934,Wired Headphones,1,11.99,05/12/19 17:01,"892 2nd St, Los Angeles, CA 90001" -205935,AAA Batteries (4-pack),2,2.99,05/29/19 08:35,"185 Wilson St, San Francisco, CA 94016" -205936,Wired Headphones,1,11.99,05/25/19 11:05,"138 13th St, Austin, TX 73301" -205937,AA Batteries (4-pack),1,3.84,05/31/19 12:20,"225 Center St, Los Angeles, CA 90001" -205938,AAA Batteries (4-pack),1,2.99,05/24/19 19:58,"6 Spruce St, San Francisco, CA 94016" -205939,Wired Headphones,1,11.99,05/28/19 16:58,"645 11th St, San Francisco, CA 94016" -205940,ThinkPad Laptop,1,999.99,05/01/19 08:51,"965 Hickory St, Los Angeles, CA 90001" -205941,Wired Headphones,1,11.99,05/08/19 13:58,"720 Washington St, Seattle, WA 98101" -205942,Apple Airpods Headphones,1,150,05/28/19 19:54,"999 12th St, Austin, TX 73301" -205943,Apple Airpods Headphones,1,150,05/09/19 07:16,"931 Meadow St, Los Angeles, CA 90001" -205944,USB-C Charging Cable,2,11.95,05/18/19 20:23,"515 Church St, San Francisco, CA 94016" -205945,34in Ultrawide Monitor,1,379.99,05/29/19 18:34,"539 Main St, Los Angeles, CA 90001" -205946,20in Monitor,1,109.99,05/11/19 18:58,"992 4th St, Dallas, TX 75001" -205947,Lightning Charging Cable,1,14.95,05/23/19 18:45,"451 Maple St, Seattle, WA 98101" -205948,Apple Airpods Headphones,1,150,05/13/19 18:10,"385 9th St, New York City, NY 10001" -205949,Lightning Charging Cable,2,14.95,05/16/19 20:39,"309 Elm St, Austin, TX 73301" -205950,AA Batteries (4-pack),1,3.84,05/28/19 21:31,"854 Lake St, San Francisco, CA 94016" -205951,27in FHD Monitor,1,149.99,05/19/19 23:30,"199 North St, San Francisco, CA 94016" -205952,USB-C Charging Cable,1,11.95,05/25/19 19:10,"587 6th St, Seattle, WA 98101" -205953,27in 4K Gaming Monitor,1,389.99,05/27/19 23:08,"141 7th St, Los Angeles, CA 90001" -205954,27in FHD Monitor,1,149.99,05/10/19 16:26,"585 9th St, Boston, MA 02215" -205955,Wired Headphones,1,11.99,05/14/19 07:19,"800 Highland St, Los Angeles, CA 90001" -205956,Wired Headphones,1,11.99,05/27/19 19:49,"857 Willow St, Los Angeles, CA 90001" -205957,Wired Headphones,1,11.99,05/27/19 20:16,"903 13th St, Seattle, WA 98101" -205958,USB-C Charging Cable,1,11.95,05/29/19 17:40,"394 Madison St, Boston, MA 02215" -205959,AAA Batteries (4-pack),1,2.99,05/08/19 00:19,"456 North St, Austin, TX 73301" -205960,Google Phone,1,600,05/08/19 16:41,"752 Washington St, New York City, NY 10001" -205960,USB-C Charging Cable,1,11.95,05/08/19 16:41,"752 Washington St, New York City, NY 10001" -205961,USB-C Charging Cable,1,11.95,05/16/19 19:26,"282 West St, Dallas, TX 75001" -205961,Lightning Charging Cable,1,14.95,05/16/19 19:26,"282 West St, Dallas, TX 75001" -205962,USB-C Charging Cable,1,11.95,05/02/19 18:10,"229 Madison St, Seattle, WA 98101" -205963,AA Batteries (4-pack),1,3.84,05/24/19 20:17,"59 9th St, Seattle, WA 98101" -205964,Apple Airpods Headphones,1,150,05/08/19 23:34,"406 Cherry St, Los Angeles, CA 90001" -205965,Wired Headphones,1,11.99,05/25/19 07:14,"738 Pine St, San Francisco, CA 94016" -205966,20in Monitor,1,109.99,05/21/19 12:06,"888 River St, Los Angeles, CA 90001" -205967,USB-C Charging Cable,1,11.95,05/03/19 13:09,"912 6th St, Austin, TX 73301" -205968,iPhone,1,700,05/09/19 09:00,"127 7th St, Portland, ME 04101" -205968,Lightning Charging Cable,1,14.95,05/09/19 09:00,"127 7th St, Portland, ME 04101" -205969,Lightning Charging Cable,1,14.95,05/14/19 22:29,"837 Main St, San Francisco, CA 94016" -205970,Wired Headphones,1,11.99,05/27/19 12:57,"672 Wilson St, Austin, TX 73301" -205971,27in FHD Monitor,1,149.99,05/29/19 22:05,"583 Maple St, San Francisco, CA 94016" -205972,Bose SoundSport Headphones,1,99.99,05/26/19 00:10,"781 Sunset St, Atlanta, GA 30301" -205973,USB-C Charging Cable,1,11.95,05/09/19 23:48,"439 Pine St, Dallas, TX 75001" -205974,USB-C Charging Cable,1,11.95,05/23/19 21:44,"727 8th St, San Francisco, CA 94016" -205975,27in 4K Gaming Monitor,1,389.99,05/10/19 18:12,"321 Hill St, San Francisco, CA 94016" -205976,Lightning Charging Cable,1,14.95,05/30/19 12:24,"874 Washington St, San Francisco, CA 94016" -205977,Flatscreen TV,1,300,05/24/19 09:42,"545 Main St, Los Angeles, CA 90001" -205978,USB-C Charging Cable,1,11.95,05/04/19 18:21,"317 Meadow St, Los Angeles, CA 90001" -205979,AAA Batteries (4-pack),2,2.99,05/09/19 11:18,"783 Ridge St, Dallas, TX 75001" -205980,AA Batteries (4-pack),1,3.84,05/02/19 01:01,"600 Dogwood St, Boston, MA 02215" -205981,27in 4K Gaming Monitor,1,389.99,05/16/19 22:24,"332 Lincoln St, San Francisco, CA 94016" -205982,USB-C Charging Cable,1,11.95,05/14/19 21:31,"362 Elm St, Seattle, WA 98101" -205983,Wired Headphones,1,11.99,05/08/19 12:24,"326 Church St, New York City, NY 10001" -205984,Apple Airpods Headphones,1,150,05/30/19 12:14,"702 Cedar St, San Francisco, CA 94016" -205985,USB-C Charging Cable,1,11.95,05/09/19 20:06,"606 11th St, Boston, MA 02215" -205986,27in FHD Monitor,1,149.99,05/03/19 20:21,"146 Hickory St, New York City, NY 10001" -205987,Lightning Charging Cable,1,14.95,05/24/19 21:06,"324 Park St, Dallas, TX 75001" -205988,AAA Batteries (4-pack),1,2.99,05/17/19 09:20,"404 Johnson St, Portland, OR 97035" -205989,USB-C Charging Cable,1,11.95,05/25/19 15:29,"555 South St, Portland, ME 04101" -205990,Bose SoundSport Headphones,1,99.99,05/06/19 06:24,"768 6th St, New York City, NY 10001" -205991,AA Batteries (4-pack),1,3.84,05/26/19 00:20,"571 Madison St, San Francisco, CA 94016" -205992,USB-C Charging Cable,1,11.95,05/15/19 09:53,"931 Cherry St, Portland, OR 97035" -205993,ThinkPad Laptop,1,999.99,05/15/19 01:14,"663 Wilson St, San Francisco, CA 94016" -205994,20in Monitor,1,109.99,05/11/19 10:22,"106 Hill St, Atlanta, GA 30301" -205995,USB-C Charging Cable,2,11.95,05/15/19 15:01,"509 Main St, San Francisco, CA 94016" -205996,Bose SoundSport Headphones,1,99.99,05/28/19 17:51,"832 Cherry St, New York City, NY 10001" -205997,AA Batteries (4-pack),3,3.84,05/27/19 18:14,"947 Park St, Austin, TX 73301" -205998,AA Batteries (4-pack),1,3.84,05/01/19 16:38,"550 Main St, New York City, NY 10001" -205999,Lightning Charging Cable,1,14.95,05/20/19 12:18,"443 Hickory St, Los Angeles, CA 90001" -206000,Bose SoundSport Headphones,1,99.99,05/16/19 13:54,"420 South St, Seattle, WA 98101" -206001,iPhone,1,700,05/18/19 17:52,"983 Jackson St, New York City, NY 10001" -206001,Apple Airpods Headphones,1,150,05/18/19 17:52,"983 Jackson St, New York City, NY 10001" -206002,Wired Headphones,1,11.99,05/30/19 19:02,"625 Spruce St, Los Angeles, CA 90001" -206002,Bose SoundSport Headphones,1,99.99,05/30/19 19:02,"625 Spruce St, Los Angeles, CA 90001" -206003,AAA Batteries (4-pack),2,2.99,05/19/19 20:28,"936 11th St, San Francisco, CA 94016" -206004,Lightning Charging Cable,1,14.95,05/30/19 10:41,"57 Willow St, Dallas, TX 75001" -206005,USB-C Charging Cable,1,11.95,05/08/19 19:56,"975 Ridge St, Atlanta, GA 30301" -206006,USB-C Charging Cable,2,11.95,05/11/19 11:48,"105 Madison St, Seattle, WA 98101" -206007,AAA Batteries (4-pack),2,2.99,05/01/19 14:49,"93 Meadow St, New York City, NY 10001" -206008,Wired Headphones,1,11.99,05/15/19 13:50,"555 Jefferson St, Boston, MA 02215" -206009,iPhone,1,700,05/27/19 12:36,"478 10th St, Portland, OR 97035" -206009,Lightning Charging Cable,1,14.95,05/27/19 12:36,"478 10th St, Portland, OR 97035" -206009,Wired Headphones,1,11.99,05/27/19 12:36,"478 10th St, Portland, OR 97035" -206010,iPhone,1,700,05/22/19 16:57,"390 7th St, New York City, NY 10001" -206011,Lightning Charging Cable,1,14.95,05/07/19 13:58,"344 5th St, San Francisco, CA 94016" -206012,Lightning Charging Cable,1,14.95,05/24/19 09:38,"801 West St, Los Angeles, CA 90001" -206013,34in Ultrawide Monitor,1,379.99,05/21/19 20:31,"687 Wilson St, New York City, NY 10001" -206014,Wired Headphones,1,11.99,05/20/19 18:08,"248 Adams St, Seattle, WA 98101" -206014,AAA Batteries (4-pack),2,2.99,05/20/19 18:08,"248 Adams St, Seattle, WA 98101" -206015,AA Batteries (4-pack),1,3.84,05/06/19 14:51,"898 River St, Seattle, WA 98101" -206016,USB-C Charging Cable,2,11.95,05/29/19 09:23,"204 Church St, Seattle, WA 98101" -206017,Lightning Charging Cable,1,14.95,05/08/19 21:09,"469 Pine St, Portland, OR 97035" -206018,Apple Airpods Headphones,1,150,05/16/19 07:35,"623 Jackson St, Los Angeles, CA 90001" -206019,Apple Airpods Headphones,1,150,05/02/19 11:07,"313 11th St, San Francisco, CA 94016" -206020,20in Monitor,1,109.99,05/12/19 02:44,"157 Center St, Los Angeles, CA 90001" -206021,AA Batteries (4-pack),1,3.84,05/12/19 09:25,"302 Chestnut St, Austin, TX 73301" -206022,Bose SoundSport Headphones,1,99.99,05/01/19 12:16,"279 11th St, Seattle, WA 98101" -206023,34in Ultrawide Monitor,1,379.99,05/28/19 17:56,"199 West St, Boston, MA 02215" -206023,USB-C Charging Cable,1,11.95,05/28/19 17:56,"199 West St, Boston, MA 02215" -206024,USB-C Charging Cable,1,11.95,05/01/19 15:23,"723 Hickory St, Atlanta, GA 30301" -206025,AA Batteries (4-pack),1,3.84,05/15/19 20:16,"915 Lakeview St, Los Angeles, CA 90001" -206026,AA Batteries (4-pack),1,3.84,05/09/19 17:45,"812 Church St, San Francisco, CA 94016" -206027,USB-C Charging Cable,1,11.95,05/23/19 16:17,"787 Hill St, Dallas, TX 75001" -206028,Apple Airpods Headphones,1,150,05/05/19 14:34,"877 Elm St, Los Angeles, CA 90001" -206029,AAA Batteries (4-pack),2,2.99,05/09/19 22:40,"83 14th St, Seattle, WA 98101" -206030,27in 4K Gaming Monitor,1,389.99,05/29/19 20:21,"720 2nd St, San Francisco, CA 94016" -206031,20in Monitor,1,109.99,05/14/19 01:20,"680 Walnut St, Seattle, WA 98101" -206032,AA Batteries (4-pack),2,3.84,05/21/19 08:47,"98 1st St, Dallas, TX 75001" -206033,AA Batteries (4-pack),2,3.84,05/24/19 14:10,"519 Lakeview St, Seattle, WA 98101" -206034,AA Batteries (4-pack),1,3.84,05/22/19 19:46,"300 Main St, Los Angeles, CA 90001" -206035,Apple Airpods Headphones,1,150,05/19/19 12:00,"937 Wilson St, Portland, OR 97035" -206036,Google Phone,1,600,05/23/19 09:00,"559 Spruce St, Atlanta, GA 30301" -206037,Wired Headphones,1,11.99,05/03/19 23:09,"885 Church St, Los Angeles, CA 90001" -206038,USB-C Charging Cable,1,11.95,05/13/19 19:37,"949 Main St, Los Angeles, CA 90001" -206039,Apple Airpods Headphones,1,150,05/28/19 17:15,"817 13th St, Atlanta, GA 30301" -206040,AA Batteries (4-pack),1,3.84,05/28/19 16:11,"930 Adams St, San Francisco, CA 94016" -206041,ThinkPad Laptop,1,999.99,05/05/19 01:33,"148 Cherry St, New York City, NY 10001" -206042,Bose SoundSport Headphones,1,99.99,05/07/19 11:59,"608 4th St, Los Angeles, CA 90001" -206043,27in FHD Monitor,1,149.99,05/29/19 10:08,"913 Walnut St, Los Angeles, CA 90001" -206044,AAA Batteries (4-pack),2,2.99,05/28/19 23:13,"75 River St, San Francisco, CA 94016" -206045,AAA Batteries (4-pack),1,2.99,05/12/19 18:07,"839 Madison St, Los Angeles, CA 90001" -206046,Lightning Charging Cable,1,14.95,05/23/19 11:13,"186 Willow St, Boston, MA 02215" -206047,USB-C Charging Cable,1,11.95,05/01/19 13:32,"709 Elm St, San Francisco, CA 94016" -206048,Apple Airpods Headphones,1,150,05/22/19 17:32,"541 Park St, Los Angeles, CA 90001" -206049,AAA Batteries (4-pack),1,2.99,05/31/19 20:41,"92 River St, San Francisco, CA 94016" -206050,USB-C Charging Cable,1,11.95,05/14/19 21:18,"656 Willow St, Austin, TX 73301" -206051,Lightning Charging Cable,1,14.95,05/12/19 07:07,"391 Lakeview St, New York City, NY 10001" -206052,AAA Batteries (4-pack),2,2.99,05/15/19 10:08,"706 13th St, New York City, NY 10001" -206053,Wired Headphones,2,11.99,05/16/19 17:39,"107 10th St, Portland, OR 97035" -206054,Wired Headphones,1,11.99,05/11/19 19:13,"112 Meadow St, Los Angeles, CA 90001" -206055,iPhone,1,700,05/25/19 22:21,"544 Wilson St, Austin, TX 73301" -206056,Lightning Charging Cable,2,14.95,05/09/19 11:52,"744 Adams St, Atlanta, GA 30301" -206057,Lightning Charging Cable,1,14.95,05/07/19 20:10,"256 South St, San Francisco, CA 94016" -206058,34in Ultrawide Monitor,1,379.99,05/25/19 21:37,"402 Park St, Boston, MA 02215" -206059,Lightning Charging Cable,1,14.95,05/07/19 18:00,"664 Willow St, Los Angeles, CA 90001" -206060,27in FHD Monitor,1,149.99,05/04/19 21:40,"268 Highland St, Los Angeles, CA 90001" -206061,Wired Headphones,2,11.99,05/16/19 18:42,"806 Meadow St, San Francisco, CA 94016" -206062,AAA Batteries (4-pack),1,2.99,05/28/19 17:31,"619 Hickory St, Boston, MA 02215" -206063,20in Monitor,1,109.99,05/06/19 22:22,"44 Forest St, Dallas, TX 75001" -206064,Lightning Charging Cable,1,14.95,05/29/19 16:59,"982 Lakeview St, San Francisco, CA 94016" -206065,Lightning Charging Cable,2,14.95,05/23/19 14:14,"256 Madison St, San Francisco, CA 94016" -206066,Macbook Pro Laptop,1,1700,05/17/19 13:06,"76 Pine St, Austin, TX 73301" -206067,AAA Batteries (4-pack),1,2.99,05/23/19 21:17,"112 1st St, Austin, TX 73301" -206068,27in 4K Gaming Monitor,1,389.99,05/16/19 03:40,"808 Lake St, Boston, MA 02215" -206069,AAA Batteries (4-pack),1,2.99,05/14/19 14:58,"216 8th St, Seattle, WA 98101" -206070,Vareebadd Phone,1,400,05/15/19 19:59,"907 10th St, New York City, NY 10001" -206071,Wired Headphones,1,11.99,05/06/19 16:54,"167 7th St, New York City, NY 10001" -206072,Wired Headphones,1,11.99,05/02/19 22:07,"117 Maple St, Boston, MA 02215" -206073,AAA Batteries (4-pack),1,2.99,05/18/19 06:40,"9 Johnson St, Seattle, WA 98101" -206074,USB-C Charging Cable,2,11.95,05/21/19 19:24,"79 West St, Atlanta, GA 30301" -206075,Bose SoundSport Headphones,1,99.99,05/22/19 19:48,"413 14th St, Austin, TX 73301" -206076,Lightning Charging Cable,1,14.95,05/20/19 13:35,"312 6th St, New York City, NY 10001" -206077,Lightning Charging Cable,1,14.95,05/19/19 09:12,"901 6th St, San Francisco, CA 94016" -206078,27in FHD Monitor,1,149.99,05/04/19 22:11,"880 7th St, Los Angeles, CA 90001" -206079,iPhone,1,700,05/03/19 02:26,"868 Jackson St, Portland, OR 97035" -206079,Wired Headphones,1,11.99,05/03/19 02:26,"868 Jackson St, Portland, OR 97035" -206080,AAA Batteries (4-pack),4,2.99,05/12/19 12:21,"873 Sunset St, San Francisco, CA 94016" -206081,ThinkPad Laptop,1,999.99,05/12/19 10:16,"993 Cedar St, San Francisco, CA 94016" -206082,AA Batteries (4-pack),1,3.84,05/08/19 16:51,"71 12th St, Dallas, TX 75001" -206083,Bose SoundSport Headphones,1,99.99,05/30/19 12:23,"210 Pine St, Austin, TX 73301" -206084,Wired Headphones,1,11.99,05/08/19 13:54,"362 6th St, Portland, OR 97035" -206085,Apple Airpods Headphones,1,150,05/14/19 12:40,"36 Dogwood St, Los Angeles, CA 90001" -206086,20in Monitor,1,109.99,05/11/19 15:38,"44 North St, San Francisco, CA 94016" -206087,Lightning Charging Cable,1,14.95,05/31/19 13:03,"935 5th St, San Francisco, CA 94016" -206088,USB-C Charging Cable,1,11.95,05/08/19 10:30,"579 Wilson St, Los Angeles, CA 90001" -206089,AA Batteries (4-pack),1,3.84,05/27/19 14:14,"143 Lakeview St, Boston, MA 02215" -206090,Wired Headphones,1,11.99,05/25/19 23:04,"705 Main St, San Francisco, CA 94016" -206091,USB-C Charging Cable,1,11.95,05/02/19 13:21,"252 Hill St, Atlanta, GA 30301" -206092,AA Batteries (4-pack),1,3.84,05/15/19 18:20,"758 8th St, Dallas, TX 75001" -206093,Lightning Charging Cable,2,14.95,05/12/19 20:32,"229 Church St, New York City, NY 10001" -206094,Wired Headphones,2,11.99,05/14/19 18:12,"483 Washington St, Los Angeles, CA 90001" -206095,Wired Headphones,1,11.99,05/23/19 17:34,"482 Main St, New York City, NY 10001" -206096,Wired Headphones,2,11.99,05/31/19 18:23,"35 Center St, San Francisco, CA 94016" -206097,iPhone,1,700,05/05/19 10:00,"638 Cedar St, San Francisco, CA 94016" -206097,Lightning Charging Cable,1,14.95,05/05/19 10:00,"638 Cedar St, San Francisco, CA 94016" -206097,Apple Airpods Headphones,1,150,05/05/19 10:00,"638 Cedar St, San Francisco, CA 94016" -206098,Bose SoundSport Headphones,1,99.99,05/26/19 08:42,"41 9th St, Dallas, TX 75001" -206099,27in 4K Gaming Monitor,1,389.99,05/23/19 20:10,"313 Main St, Portland, OR 97035" -206100,USB-C Charging Cable,1,11.95,05/28/19 16:04,"411 10th St, Los Angeles, CA 90001" -206101,ThinkPad Laptop,1,999.99,05/30/19 10:50,"482 13th St, Los Angeles, CA 90001" -206102,AA Batteries (4-pack),1,3.84,05/30/19 15:43,"360 Dogwood St, San Francisco, CA 94016" -206103,Wired Headphones,1,11.99,05/08/19 17:04,"652 Cherry St, San Francisco, CA 94016" -206104,34in Ultrawide Monitor,1,379.99,05/09/19 14:17,"69 Adams St, Austin, TX 73301" -206105,Bose SoundSport Headphones,1,99.99,05/22/19 16:02,"225 Pine St, San Francisco, CA 94016" -206106,27in FHD Monitor,1,149.99,05/09/19 21:51,"832 Pine St, New York City, NY 10001" -206107,iPhone,1,700,05/21/19 08:19,"918 Jackson St, Dallas, TX 75001" -206108,AAA Batteries (4-pack),6,2.99,05/15/19 15:56,"569 4th St, Dallas, TX 75001" -206109,USB-C Charging Cable,2,11.95,05/24/19 19:36,"876 South St, Atlanta, GA 30301" -206110,Wired Headphones,1,11.99,05/20/19 18:32,"132 12th St, San Francisco, CA 94016" -206111,AA Batteries (4-pack),1,3.84,05/27/19 19:42,"808 Main St, Dallas, TX 75001" -206112,Flatscreen TV,1,300,05/31/19 12:22,"320 Elm St, Los Angeles, CA 90001" -206113,Wired Headphones,1,11.99,05/28/19 13:21,"261 Ridge St, Portland, OR 97035" -206113,27in 4K Gaming Monitor,1,389.99,05/28/19 13:21,"261 Ridge St, Portland, OR 97035" -206114,USB-C Charging Cable,1,11.95,05/14/19 01:50,"384 13th St, Atlanta, GA 30301" -206115,Lightning Charging Cable,1,14.95,05/13/19 09:30,"360 Jefferson St, New York City, NY 10001" -206116,Apple Airpods Headphones,1,150,05/21/19 07:23,"860 Main St, New York City, NY 10001" -206117,27in FHD Monitor,1,149.99,05/10/19 22:09,"666 Cherry St, Dallas, TX 75001" -206118,Lightning Charging Cable,2,14.95,05/20/19 22:02,"975 Cedar St, Los Angeles, CA 90001" -206119,Google Phone,1,600,05/11/19 12:34,"255 Jefferson St, New York City, NY 10001" -206120,AA Batteries (4-pack),1,3.84,05/14/19 14:12,"793 8th St, San Francisco, CA 94016" -206121,Lightning Charging Cable,1,14.95,05/23/19 08:49,"190 Center St, Los Angeles, CA 90001" -206122,27in FHD Monitor,1,149.99,05/02/19 11:48,"809 Cedar St, Los Angeles, CA 90001" -206123,AAA Batteries (4-pack),1,2.99,05/05/19 15:30,"675 Dogwood St, Austin, TX 73301" -206124,20in Monitor,1,109.99,05/25/19 17:09,"883 Pine St, Austin, TX 73301" -206125,Lightning Charging Cable,1,14.95,05/08/19 17:40,"235 4th St, Los Angeles, CA 90001" -206126,27in FHD Monitor,1,149.99,05/16/19 09:32,"422 Church St, New York City, NY 10001" -206127,USB-C Charging Cable,1,11.95,05/12/19 11:33,"461 North St, Boston, MA 02215" -206128,AA Batteries (4-pack),1,3.84,05/31/19 01:56,"960 2nd St, Dallas, TX 75001" -206129,USB-C Charging Cable,1,11.95,05/06/19 14:47,"920 12th St, New York City, NY 10001" -206130,Macbook Pro Laptop,1,1700,05/01/19 13:27,"282 Jackson St, San Francisco, CA 94016" -206131,Lightning Charging Cable,1,14.95,05/26/19 11:23,"229 13th St, Los Angeles, CA 90001" -206132,USB-C Charging Cable,1,11.95,05/10/19 22:37,"893 Spruce St, San Francisco, CA 94016" -206133,Apple Airpods Headphones,1,150,05/18/19 03:04,"638 4th St, Boston, MA 02215" -206134,Macbook Pro Laptop,1,1700,05/23/19 16:09,"695 Spruce St, Dallas, TX 75001" -206135,34in Ultrawide Monitor,1,379.99,05/06/19 21:09,"73 Spruce St, Boston, MA 02215" -206136,Apple Airpods Headphones,1,150,05/02/19 14:52,"79 Elm St, Atlanta, GA 30301" -206137,AA Batteries (4-pack),2,3.84,05/14/19 20:37,"30 11th St, Atlanta, GA 30301" -206138,USB-C Charging Cable,1,11.95,05/18/19 16:34,"23 Jackson St, Los Angeles, CA 90001" -206139,USB-C Charging Cable,1,11.95,05/13/19 18:02,"798 Lincoln St, San Francisco, CA 94016" -206140,USB-C Charging Cable,1,11.95,05/04/19 22:01,"171 14th St, Seattle, WA 98101" -206141,USB-C Charging Cable,1,11.95,05/17/19 12:47,"806 10th St, San Francisco, CA 94016" -206142,27in FHD Monitor,1,149.99,05/16/19 13:40,"30 Walnut St, Los Angeles, CA 90001" -206143,20in Monitor,1,109.99,05/27/19 16:59,"962 Cherry St, Los Angeles, CA 90001" -206144,Macbook Pro Laptop,1,1700,05/15/19 21:32,"660 Adams St, San Francisco, CA 94016" -206145,AA Batteries (4-pack),1,3.84,05/30/19 16:45,"512 Spruce St, Portland, OR 97035" -206146,AAA Batteries (4-pack),1,2.99,05/25/19 16:33,"233 Pine St, San Francisco, CA 94016" -206147,Lightning Charging Cable,1,14.95,05/31/19 15:16,"616 14th St, Dallas, TX 75001" -206148,AA Batteries (4-pack),1,3.84,05/08/19 12:09,"38 Hill St, San Francisco, CA 94016" -206149,Apple Airpods Headphones,1,150,05/03/19 15:06,"355 Lakeview St, Atlanta, GA 30301" -206150,Bose SoundSport Headphones,1,99.99,05/18/19 16:36,"296 Willow St, New York City, NY 10001" -206151,USB-C Charging Cable,1,11.95,05/02/19 19:54,"243 Adams St, Atlanta, GA 30301" -206152,AAA Batteries (4-pack),1,2.99,05/02/19 08:35,"957 Sunset St, New York City, NY 10001" -206153,iPhone,1,700,05/27/19 20:45,"736 Cedar St, Atlanta, GA 30301" -206154,USB-C Charging Cable,1,11.95,05/29/19 23:26,"165 Lake St, San Francisco, CA 94016" -206155,Apple Airpods Headphones,1,150,05/21/19 12:52,"989 Highland St, Dallas, TX 75001" -206156,Bose SoundSport Headphones,1,99.99,05/12/19 21:43,"233 Hill St, New York City, NY 10001" -206157,Google Phone,1,600,05/25/19 21:59,"537 4th St, Austin, TX 73301" -206158,Google Phone,1,600,05/11/19 20:06,"346 Jefferson St, New York City, NY 10001" -206159,AA Batteries (4-pack),2,3.84,05/31/19 14:54,"229 Lakeview St, San Francisco, CA 94016" -206160,USB-C Charging Cable,1,11.95,05/22/19 14:34,"308 4th St, Seattle, WA 98101" -206161,Vareebadd Phone,1,400,05/03/19 12:19,"843 Madison St, Portland, OR 97035" -206161,USB-C Charging Cable,1,11.95,05/03/19 12:19,"843 Madison St, Portland, OR 97035" -206162,27in 4K Gaming Monitor,1,389.99,05/02/19 14:49,"214 11th St, New York City, NY 10001" -206163,27in FHD Monitor,1,149.99,05/28/19 08:51,"878 6th St, Dallas, TX 75001" -206164,Wired Headphones,1,11.99,05/19/19 05:49,"679 13th St, San Francisco, CA 94016" -206165,34in Ultrawide Monitor,1,379.99,05/14/19 22:04,"66 Lincoln St, Los Angeles, CA 90001" -206166,USB-C Charging Cable,1,11.95,05/26/19 12:18,"882 Willow St, Atlanta, GA 30301" -206167,Google Phone,1,600,05/11/19 11:58,"708 Lakeview St, Los Angeles, CA 90001" -206168,27in FHD Monitor,1,149.99,05/12/19 18:18,"865 5th St, Los Angeles, CA 90001" -206169,Lightning Charging Cable,1,14.95,05/28/19 20:24,"171 Sunset St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -206170,Bose SoundSport Headphones,1,99.99,05/08/19 09:44,"730 Church St, Los Angeles, CA 90001" -206171,Vareebadd Phone,1,400,05/30/19 08:42,"833 Elm St, San Francisco, CA 94016" -206172,Lightning Charging Cable,1,14.95,05/30/19 05:10,"900 Johnson St, Boston, MA 02215" -206173,AAA Batteries (4-pack),1,2.99,05/02/19 16:14,"504 Meadow St, New York City, NY 10001" -206174,AAA Batteries (4-pack),1,2.99,05/11/19 17:45,"863 Washington St, San Francisco, CA 94016" -206175,Wired Headphones,1,11.99,05/31/19 19:43,"879 Willow St, San Francisco, CA 94016" -206176,Lightning Charging Cable,1,14.95,05/14/19 23:55,"954 Church St, Los Angeles, CA 90001" -206177,ThinkPad Laptop,1,999.99,05/01/19 10:46,"49 Church St, Austin, TX 73301" -206178,Google Phone,1,600,05/01/19 21:08,"954 5th St, Seattle, WA 98101" -206179,USB-C Charging Cable,1,11.95,05/14/19 13:25,"85 5th St, Boston, MA 02215" -206180,Lightning Charging Cable,1,14.95,05/28/19 08:52,"630 6th St, Dallas, TX 75001" -206181,AA Batteries (4-pack),2,3.84,05/30/19 21:42,"843 2nd St, Atlanta, GA 30301" -206182,Apple Airpods Headphones,1,150,05/06/19 16:07,"213 Walnut St, Austin, TX 73301" -206183,Apple Airpods Headphones,1,150,05/06/19 09:43,"480 South St, Dallas, TX 75001" -206184,USB-C Charging Cable,1,11.95,05/16/19 20:39,"415 7th St, Boston, MA 02215" -206185,Bose SoundSport Headphones,1,99.99,05/31/19 12:10,"858 Highland St, San Francisco, CA 94016" -206186,Bose SoundSport Headphones,1,99.99,05/13/19 12:33,"925 Main St, Dallas, TX 75001" -206187,ThinkPad Laptop,1,999.99,05/17/19 11:42,"539 Chestnut St, Dallas, TX 75001" -206188,AAA Batteries (4-pack),1,2.99,05/29/19 12:56,"399 Lakeview St, Dallas, TX 75001" -206189,Lightning Charging Cable,1,14.95,05/28/19 04:35,"945 Lake St, New York City, NY 10001" -206190,27in 4K Gaming Monitor,1,389.99,05/01/19 21:52,"51 Hickory St, Portland, OR 97035" -206191,Wired Headphones,2,11.99,05/12/19 18:40,"965 Center St, Austin, TX 73301" -206192,Lightning Charging Cable,1,14.95,05/22/19 10:40,"396 13th St, Atlanta, GA 30301" -206193,iPhone,1,700,05/29/19 22:53,"8 Forest St, Los Angeles, CA 90001" -206194,34in Ultrawide Monitor,1,379.99,05/11/19 00:17,"843 Center St, Dallas, TX 75001" -206195,AAA Batteries (4-pack),1,2.99,05/10/19 14:51,"658 Meadow St, Portland, ME 04101" -206196,Apple Airpods Headphones,1,150,05/15/19 20:09,"481 Lake St, Austin, TX 73301" -206197,Wired Headphones,1,11.99,05/07/19 07:20,"786 Madison St, Los Angeles, CA 90001" -206198,AAA Batteries (4-pack),2,2.99,05/15/19 20:55,"786 14th St, Los Angeles, CA 90001" -206199,ThinkPad Laptop,1,999.99,05/26/19 08:35,"772 Chestnut St, Dallas, TX 75001" -206200,AA Batteries (4-pack),1,3.84,05/05/19 08:41,"528 Washington St, Dallas, TX 75001" -206201,ThinkPad Laptop,1,999.99,05/09/19 16:46,"391 Willow St, San Francisco, CA 94016" -206202,Flatscreen TV,1,300,05/05/19 12:52,"816 5th St, Dallas, TX 75001" -206203,Apple Airpods Headphones,1,150,05/27/19 18:49,"109 Cedar St, Los Angeles, CA 90001" -206204,USB-C Charging Cable,1,11.95,05/27/19 12:07,"549 4th St, Boston, MA 02215" -206205,USB-C Charging Cable,1,11.95,05/22/19 15:10,"238 Sunset St, San Francisco, CA 94016" -206206,Lightning Charging Cable,1,14.95,05/04/19 11:05,"143 12th St, Austin, TX 73301" -206207,Wired Headphones,1,11.99,05/15/19 14:18,"616 Center St, Dallas, TX 75001" -206208,Bose SoundSport Headphones,1,99.99,05/02/19 19:05,"436 Cedar St, Atlanta, GA 30301" -206209,USB-C Charging Cable,1,11.95,05/07/19 09:17,"821 7th St, Portland, OR 97035" -206210,iPhone,1,700,05/18/19 21:54,"713 Lakeview St, New York City, NY 10001" -206211,AA Batteries (4-pack),1,3.84,05/06/19 11:05,"725 Jefferson St, New York City, NY 10001" -206212,Lightning Charging Cable,1,14.95,05/15/19 11:21,"892 Pine St, San Francisco, CA 94016" -206213,Wired Headphones,1,11.99,05/30/19 20:03,"255 12th St, San Francisco, CA 94016" -206214,Apple Airpods Headphones,1,150,05/10/19 21:22,"120 River St, San Francisco, CA 94016" -206215,USB-C Charging Cable,1,11.95,05/17/19 11:20,"928 Lake St, Portland, OR 97035" -206216,AA Batteries (4-pack),1,3.84,05/21/19 09:22,"360 5th St, San Francisco, CA 94016" -206217,AA Batteries (4-pack),1,3.84,05/26/19 07:55,"815 Willow St, San Francisco, CA 94016" -206218,Flatscreen TV,1,300,05/23/19 09:47,"489 South St, San Francisco, CA 94016" -206219,AAA Batteries (4-pack),2,2.99,05/15/19 18:53,"987 12th St, Austin, TX 73301" -206220,USB-C Charging Cable,1,11.95,05/16/19 13:45,"16 10th St, Atlanta, GA 30301" -206221,Lightning Charging Cable,1,14.95,05/25/19 19:58,"725 Hill St, San Francisco, CA 94016" -206222,USB-C Charging Cable,1,11.95,05/28/19 12:52,"681 Maple St, Los Angeles, CA 90001" -206223,USB-C Charging Cable,1,11.95,05/18/19 19:22,"803 Maple St, Seattle, WA 98101" -206224,iPhone,1,700,05/17/19 20:27,"254 10th St, San Francisco, CA 94016" -206225,Wired Headphones,1,11.99,05/09/19 23:35,"132 Washington St, Atlanta, GA 30301" -206226,AAA Batteries (4-pack),1,2.99,05/29/19 13:40,"131 10th St, San Francisco, CA 94016" -206227,Bose SoundSport Headphones,1,99.99,05/01/19 12:55,"15 Meadow St, San Francisco, CA 94016" -206228,Wired Headphones,1,11.99,05/15/19 22:44,"41 Main St, Atlanta, GA 30301" -206229,AA Batteries (4-pack),2,3.84,05/22/19 12:19,"184 Highland St, Dallas, TX 75001" -206230,Lightning Charging Cable,1,14.95,05/04/19 10:25,"652 13th St, Boston, MA 02215" -206231,AA Batteries (4-pack),1,3.84,05/13/19 00:05,"633 2nd St, San Francisco, CA 94016" -206232,27in FHD Monitor,1,149.99,05/27/19 08:26,"471 Highland St, San Francisco, CA 94016" -206233,Google Phone,1,600,05/11/19 14:04,"196 Hickory St, Atlanta, GA 30301" -206234,Google Phone,1,600,05/10/19 00:50,"964 Pine St, New York City, NY 10001" -206234,USB-C Charging Cable,1,11.95,05/10/19 00:50,"964 Pine St, New York City, NY 10001" -206234,Wired Headphones,1,11.99,05/10/19 00:50,"964 Pine St, New York City, NY 10001" -206235,AA Batteries (4-pack),2,3.84,05/16/19 23:15,"600 10th St, New York City, NY 10001" -206236,Apple Airpods Headphones,1,150,05/18/19 07:31,"893 6th St, San Francisco, CA 94016" -206237,Lightning Charging Cable,1,14.95,05/13/19 13:58,"929 4th St, San Francisco, CA 94016" -206238,USB-C Charging Cable,1,11.95,05/21/19 00:15,"981 Meadow St, San Francisco, CA 94016" -206239,27in 4K Gaming Monitor,1,389.99,05/24/19 16:20,"17 Highland St, San Francisco, CA 94016" -206240,USB-C Charging Cable,1,11.95,05/19/19 13:56,"889 Lake St, Austin, TX 73301" -206241,27in FHD Monitor,1,149.99,05/10/19 09:33,"247 Lake St, Boston, MA 02215" -206242,iPhone,1,700,05/28/19 21:36,"235 Spruce St, Los Angeles, CA 90001" -206242,Lightning Charging Cable,1,14.95,05/28/19 21:36,"235 Spruce St, Los Angeles, CA 90001" -206243,AAA Batteries (4-pack),1,2.99,05/29/19 10:29,"154 Highland St, Atlanta, GA 30301" -206244,Lightning Charging Cable,1,14.95,05/31/19 20:07,"648 13th St, San Francisco, CA 94016" -206245,USB-C Charging Cable,1,11.95,05/02/19 12:28,"509 Church St, San Francisco, CA 94016" -206246,AAA Batteries (4-pack),1,2.99,05/01/19 20:21,"723 7th St, Los Angeles, CA 90001" -206247,AAA Batteries (4-pack),1,2.99,05/26/19 11:16,"641 Johnson St, Austin, TX 73301" -206248,AAA Batteries (4-pack),1,2.99,05/26/19 21:58,"152 12th St, Atlanta, GA 30301" -206249,27in 4K Gaming Monitor,1,389.99,05/11/19 13:17,"761 Main St, Seattle, WA 98101" -206250,Apple Airpods Headphones,1,150,05/12/19 17:42,"302 9th St, Boston, MA 02215" -206251,Macbook Pro Laptop,1,1700,05/07/19 08:27,"233 Ridge St, Seattle, WA 98101" -206252,AA Batteries (4-pack),1,3.84,05/29/19 17:45,"373 Dogwood St, San Francisco, CA 94016" -206253,34in Ultrawide Monitor,1,379.99,05/10/19 23:43,"255 1st St, New York City, NY 10001" -206254,AAA Batteries (4-pack),1,2.99,05/06/19 12:00,"571 9th St, Los Angeles, CA 90001" -206255,Lightning Charging Cable,1,14.95,05/08/19 08:14,"113 Walnut St, San Francisco, CA 94016" -206256,27in FHD Monitor,1,149.99,05/31/19 23:19,"590 10th St, Seattle, WA 98101" -206257,Lightning Charging Cable,1,14.95,05/16/19 19:00,"77 Lake St, San Francisco, CA 94016" -206258,Macbook Pro Laptop,1,1700,05/19/19 22:51,"141 Maple St, New York City, NY 10001" -206259,AA Batteries (4-pack),1,3.84,05/01/19 22:04,"638 Lake St, Dallas, TX 75001" -206260,USB-C Charging Cable,1,11.95,05/01/19 12:41,"171 Dogwood St, San Francisco, CA 94016" -206261,Wired Headphones,1,11.99,05/25/19 21:02,"361 Hickory St, San Francisco, CA 94016" -206262,27in FHD Monitor,1,149.99,05/14/19 14:32,"51 Wilson St, Portland, OR 97035" -206263,USB-C Charging Cable,1,11.95,05/16/19 08:08,"175 4th St, San Francisco, CA 94016" -206264,AAA Batteries (4-pack),1,2.99,05/21/19 12:33,"962 1st St, Austin, TX 73301" -206265,Bose SoundSport Headphones,1,99.99,05/16/19 06:16,"603 Washington St, New York City, NY 10001" -206266,Macbook Pro Laptop,1,1700,05/09/19 14:56,"279 12th St, New York City, NY 10001" -206267,Bose SoundSport Headphones,1,99.99,05/04/19 21:05,"949 Lincoln St, New York City, NY 10001" -206268,Apple Airpods Headphones,1,150,05/02/19 10:34,"199 Hickory St, Seattle, WA 98101" -206269,Macbook Pro Laptop,1,1700,05/21/19 09:54,"809 River St, San Francisco, CA 94016" -206270,27in FHD Monitor,1,149.99,05/25/19 21:08,"747 4th St, Atlanta, GA 30301" -206271,AAA Batteries (4-pack),1,2.99,05/15/19 17:01,"890 Elm St, San Francisco, CA 94016" -206272,Lightning Charging Cable,1,14.95,05/09/19 15:51,"102 Willow St, San Francisco, CA 94016" -206273,Lightning Charging Cable,1,14.95,05/06/19 23:50,"363 11th St, Portland, ME 04101" -206274,AAA Batteries (4-pack),2,2.99,05/24/19 13:51,"521 Wilson St, Los Angeles, CA 90001" -206275,Lightning Charging Cable,1,14.95,05/15/19 11:56,"399 Adams St, Los Angeles, CA 90001" -206276,Lightning Charging Cable,2,14.95,05/20/19 12:28,"448 Church St, Portland, OR 97035" -206277,20in Monitor,1,109.99,05/13/19 11:05,"709 Hill St, New York City, NY 10001" -206278,AA Batteries (4-pack),1,3.84,05/24/19 13:49,"376 Dogwood St, Seattle, WA 98101" -206279,iPhone,1,700,05/19/19 06:51,"860 Madison St, San Francisco, CA 94016" -206280,AAA Batteries (4-pack),1,2.99,05/22/19 10:55,"387 7th St, Boston, MA 02215" -206281,Lightning Charging Cable,2,14.95,05/22/19 10:18,"621 Meadow St, San Francisco, CA 94016" -206282,Google Phone,1,600,05/02/19 18:24,"562 5th St, San Francisco, CA 94016" -206283,Wired Headphones,1,11.99,05/25/19 21:16,"309 Wilson St, Portland, OR 97035" -206284,Apple Airpods Headphones,1,150,05/18/19 10:47,"202 Center St, Boston, MA 02215" -206285,34in Ultrawide Monitor,1,379.99,05/19/19 12:07,"677 South St, Portland, OR 97035" -206286,27in FHD Monitor,1,149.99,05/08/19 13:01,"526 9th St, Boston, MA 02215" -206287,Google Phone,1,600,05/29/19 20:55,"997 Forest St, San Francisco, CA 94016" -206288,USB-C Charging Cable,1,11.95,05/05/19 17:48,"941 2nd St, Dallas, TX 75001" -206289,iPhone,1,700,05/11/19 13:36,"883 Lincoln St, Dallas, TX 75001" -206290,Bose SoundSport Headphones,1,99.99,05/23/19 15:57,"862 5th St, Los Angeles, CA 90001" -206291,27in FHD Monitor,1,149.99,05/28/19 20:52,"92 Hickory St, San Francisco, CA 94016" -206292,Apple Airpods Headphones,1,150,05/11/19 14:13,"873 5th St, Boston, MA 02215" -206293,AA Batteries (4-pack),2,3.84,05/02/19 09:39,"622 Sunset St, Seattle, WA 98101" -206294,AA Batteries (4-pack),1,3.84,05/14/19 13:25,"882 4th St, New York City, NY 10001" -206295,Lightning Charging Cable,1,14.95,05/20/19 10:45,"970 Madison St, Los Angeles, CA 90001" -206296,Apple Airpods Headphones,1,150,05/02/19 11:24,"993 North St, Austin, TX 73301" -206297,27in FHD Monitor,1,149.99,05/15/19 10:55,"496 Meadow St, Seattle, WA 98101" -206298,Lightning Charging Cable,1,14.95,05/31/19 21:25,"185 Lake St, New York City, NY 10001" -206299,Lightning Charging Cable,1,14.95,05/29/19 19:02,"635 Chestnut St, New York City, NY 10001" -206300,AA Batteries (4-pack),1,3.84,05/19/19 09:29,"604 Jefferson St, Portland, OR 97035" -206301,AAA Batteries (4-pack),2,2.99,05/17/19 17:05,"796 Washington St, Seattle, WA 98101" -206302,Lightning Charging Cable,1,14.95,05/11/19 09:44,"304 North St, Austin, TX 73301" -206303,AA Batteries (4-pack),1,3.84,05/19/19 18:56,"758 10th St, Boston, MA 02215" -206304,Wired Headphones,1,11.99,05/29/19 15:38,"830 Lake St, San Francisco, CA 94016" -206305,Wired Headphones,1,11.99,05/21/19 09:48,"340 Dogwood St, Dallas, TX 75001" -206306,Wired Headphones,1,11.99,05/18/19 07:06,"267 Ridge St, Portland, OR 97035" -206307,USB-C Charging Cable,1,11.95,05/02/19 07:25,"519 Chestnut St, Seattle, WA 98101" -206308,USB-C Charging Cable,1,11.95,05/20/19 06:59,"989 10th St, Seattle, WA 98101" -206309,Wired Headphones,1,11.99,05/23/19 00:27,"324 Lincoln St, Boston, MA 02215" -206310,Lightning Charging Cable,1,14.95,05/14/19 05:42,"427 Lakeview St, Seattle, WA 98101" -206311,27in FHD Monitor,1,149.99,05/15/19 09:01,"383 6th St, Atlanta, GA 30301" -206312,Lightning Charging Cable,1,14.95,05/28/19 16:16,"299 12th St, New York City, NY 10001" -206313,AA Batteries (4-pack),1,3.84,05/22/19 12:19,"532 10th St, Atlanta, GA 30301" -206314,AA Batteries (4-pack),2,3.84,05/30/19 21:04,"702 Adams St, Portland, OR 97035" -206315,AA Batteries (4-pack),2,3.84,05/12/19 23:27,"650 Lake St, Los Angeles, CA 90001" -206316,Bose SoundSport Headphones,1,99.99,05/31/19 15:02,"276 Meadow St, San Francisco, CA 94016" -206317,Flatscreen TV,1,300,05/10/19 13:38,"482 Lake St, Boston, MA 02215" -206318,27in 4K Gaming Monitor,1,389.99,05/10/19 14:50,"799 Willow St, Los Angeles, CA 90001" -206319,Wired Headphones,1,11.99,05/26/19 10:07,"8 Cherry St, Austin, TX 73301" -206320,AA Batteries (4-pack),1,3.84,05/11/19 21:35,"124 River St, Boston, MA 02215" -206321,Lightning Charging Cable,1,14.95,05/07/19 10:10,"2 9th St, New York City, NY 10001" -206322,Macbook Pro Laptop,1,1700,05/19/19 18:36,"635 10th St, San Francisco, CA 94016" -206323,AAA Batteries (4-pack),1,2.99,05/17/19 21:23,"695 Wilson St, Dallas, TX 75001" -206324,Bose SoundSport Headphones,1,99.99,05/07/19 06:58,"780 Center St, San Francisco, CA 94016" -206325,Lightning Charging Cable,1,14.95,05/29/19 21:11,"186 River St, San Francisco, CA 94016" -206326,Flatscreen TV,1,300,05/23/19 17:12,"617 Maple St, Dallas, TX 75001" -206327,Lightning Charging Cable,1,14.95,05/11/19 14:55,"297 Pine St, Portland, OR 97035" -206328,Wired Headphones,1,11.99,05/15/19 16:41,"323 Forest St, Los Angeles, CA 90001" -206329,AA Batteries (4-pack),1,3.84,05/30/19 23:06,"689 North St, Austin, TX 73301" -206330,Bose SoundSport Headphones,1,99.99,05/28/19 14:56,"178 Pine St, New York City, NY 10001" -206331,iPhone,1,700,05/09/19 20:16,"21 South St, Los Angeles, CA 90001" -206332,Wired Headphones,2,11.99,05/20/19 13:00,"314 Church St, New York City, NY 10001" -206333,AA Batteries (4-pack),2,3.84,05/18/19 11:16,"531 Jackson St, Atlanta, GA 30301" -206334,Macbook Pro Laptop,1,1700,05/10/19 14:03,"772 9th St, Los Angeles, CA 90001" -206335,Lightning Charging Cable,1,14.95,05/02/19 13:30,"948 Hickory St, Portland, OR 97035" -206336,Apple Airpods Headphones,1,150,05/23/19 10:51,"559 14th St, Dallas, TX 75001" -206337,Lightning Charging Cable,1,14.95,05/25/19 19:32,"85 Lake St, San Francisco, CA 94016" -206338,Apple Airpods Headphones,1,150,05/11/19 23:29,"191 14th St, New York City, NY 10001" -206339,USB-C Charging Cable,1,11.95,05/06/19 15:32,"423 Madison St, New York City, NY 10001" -206340,iPhone,1,700,05/09/19 16:26,"278 Spruce St, Los Angeles, CA 90001" -206340,Lightning Charging Cable,1,14.95,05/09/19 16:26,"278 Spruce St, Los Angeles, CA 90001" -206341,27in FHD Monitor,1,149.99,05/05/19 10:02,"209 Wilson St, New York City, NY 10001" -206342,AAA Batteries (4-pack),3,2.99,05/20/19 02:18,"811 West St, San Francisco, CA 94016" -206343,Flatscreen TV,1,300,05/14/19 11:58,"464 Meadow St, Los Angeles, CA 90001" -206344,AAA Batteries (4-pack),1,2.99,05/03/19 19:32,"913 Pine St, Portland, ME 04101" -206345,AAA Batteries (4-pack),1,2.99,05/27/19 20:54,"960 River St, Dallas, TX 75001" -206346,27in 4K Gaming Monitor,1,389.99,05/14/19 08:10,"740 Walnut St, San Francisco, CA 94016" -206347,ThinkPad Laptop,1,999.99,05/09/19 11:22,"740 Walnut St, Los Angeles, CA 90001" -206348,Apple Airpods Headphones,1,150,05/03/19 21:08,"557 North St, Los Angeles, CA 90001" -206349,Lightning Charging Cable,1,14.95,05/23/19 12:20,"201 10th St, Seattle, WA 98101" -206350,Bose SoundSport Headphones,1,99.99,05/14/19 09:27,"492 2nd St, Boston, MA 02215" -206351,Wired Headphones,1,11.99,05/07/19 19:59,"811 Main St, Los Angeles, CA 90001" -206352,Lightning Charging Cable,1,14.95,05/15/19 11:07,"897 Dogwood St, Austin, TX 73301" -206353,AA Batteries (4-pack),2,3.84,05/03/19 08:53,"509 Spruce St, San Francisco, CA 94016" -206353,USB-C Charging Cable,1,11.95,05/03/19 08:53,"509 Spruce St, San Francisco, CA 94016" -206354,Google Phone,1,600,05/06/19 13:53,"788 6th St, San Francisco, CA 94016" -206354,USB-C Charging Cable,1,11.95,05/06/19 13:53,"788 6th St, San Francisco, CA 94016" -206355,27in FHD Monitor,1,149.99,05/05/19 18:16,"328 1st St, San Francisco, CA 94016" -206356,AA Batteries (4-pack),1,3.84,05/21/19 20:55,"866 Madison St, Dallas, TX 75001" -206357,Wired Headphones,3,11.99,05/02/19 07:40,"946 4th St, Los Angeles, CA 90001" -206358,Lightning Charging Cable,1,14.95,05/14/19 14:45,"668 13th St, Portland, OR 97035" -206359,AAA Batteries (4-pack),1,2.99,05/21/19 03:33,"82 West St, Austin, TX 73301" -206360,AA Batteries (4-pack),1,3.84,05/05/19 20:50,"467 6th St, New York City, NY 10001" -206361,AA Batteries (4-pack),1,3.84,05/01/19 20:33,"87 14th St, Los Angeles, CA 90001" -206362,AA Batteries (4-pack),2,3.84,05/16/19 00:50,"327 Forest St, Boston, MA 02215" -206363,USB-C Charging Cable,1,11.95,05/26/19 18:12,"321 Pine St, Los Angeles, CA 90001" -206364,AA Batteries (4-pack),2,3.84,05/17/19 22:31,"791 Dogwood St, Los Angeles, CA 90001" -206365,Wired Headphones,1,11.99,05/22/19 13:19,"907 West St, New York City, NY 10001" -206366,AAA Batteries (4-pack),1,2.99,05/23/19 12:44,"877 4th St, New York City, NY 10001" -206367,USB-C Charging Cable,1,11.95,05/20/19 17:12,"168 Chestnut St, San Francisco, CA 94016" -206368,AA Batteries (4-pack),1,3.84,05/21/19 13:53,"790 1st St, San Francisco, CA 94016" -206369,Apple Airpods Headphones,1,150,05/21/19 22:23,"205 Forest St, Boston, MA 02215" -206370,34in Ultrawide Monitor,1,379.99,05/26/19 09:54,"540 5th St, New York City, NY 10001" -206371,iPhone,1,700,05/21/19 14:34,"425 South St, Los Angeles, CA 90001" -206372,Google Phone,1,600,05/23/19 19:03,"675 Hickory St, San Francisco, CA 94016" -206372,Wired Headphones,1,11.99,05/23/19 19:03,"675 Hickory St, San Francisco, CA 94016" -206373,Flatscreen TV,1,300,05/25/19 18:30,"822 Madison St, Atlanta, GA 30301" -206374,Lightning Charging Cable,1,14.95,05/07/19 19:03,"855 6th St, San Francisco, CA 94016" -206375,Wired Headphones,1,11.99,05/04/19 20:16,"126 Wilson St, New York City, NY 10001" -206376,AA Batteries (4-pack),1,3.84,05/11/19 21:48,"732 Elm St, Los Angeles, CA 90001" -206377,Wired Headphones,1,11.99,05/12/19 18:17,"987 9th St, San Francisco, CA 94016" -206378,Wired Headphones,1,11.99,05/07/19 16:16,"857 Center St, New York City, NY 10001" -206379,Wired Headphones,1,11.99,05/25/19 10:04,"57 Madison St, Portland, ME 04101" -206380,AAA Batteries (4-pack),3,2.99,05/24/19 11:32,"357 Lake St, Seattle, WA 98101" -206381,AAA Batteries (4-pack),4,2.99,05/28/19 13:57,"576 2nd St, Los Angeles, CA 90001" -206382,AAA Batteries (4-pack),1,2.99,05/10/19 22:27,"436 Lake St, Seattle, WA 98101" -206383,AA Batteries (4-pack),1,3.84,05/26/19 16:02,"556 Washington St, Atlanta, GA 30301" -206384,34in Ultrawide Monitor,1,379.99,05/05/19 10:23,"415 Madison St, Austin, TX 73301" -206385,Apple Airpods Headphones,1,150,05/29/19 00:54,"755 Johnson St, Atlanta, GA 30301" -206386,Apple Airpods Headphones,1,150,05/21/19 13:25,"125 6th St, Atlanta, GA 30301" -206387,Flatscreen TV,1,300,05/02/19 11:51,"139 Willow St, San Francisco, CA 94016" -206388,AAA Batteries (4-pack),2,2.99,05/12/19 17:06,"903 Lake St, Los Angeles, CA 90001" -206389,USB-C Charging Cable,1,11.95,05/15/19 12:02,"755 Ridge St, San Francisco, CA 94016" -206390,USB-C Charging Cable,1,11.95,05/08/19 18:06,"750 Chestnut St, Austin, TX 73301" -206391,Lightning Charging Cable,1,14.95,05/07/19 20:53,"96 6th St, Boston, MA 02215" -206392,Lightning Charging Cable,1,14.95,05/18/19 11:11,"177 11th St, San Francisco, CA 94016" -206393,Wired Headphones,1,11.99,05/09/19 09:49,"601 Center St, Boston, MA 02215" -206394,ThinkPad Laptop,1,999.99,05/24/19 08:54,"496 River St, New York City, NY 10001" -206395,Apple Airpods Headphones,1,150,05/12/19 13:42,"290 Hill St, Seattle, WA 98101" -206396,Macbook Pro Laptop,1,1700,05/14/19 03:17,"773 Ridge St, Los Angeles, CA 90001" -206397,USB-C Charging Cable,1,11.95,05/11/19 15:07,"343 Lakeview St, San Francisco, CA 94016" -206398,Bose SoundSport Headphones,1,99.99,05/12/19 16:45,"775 Cherry St, New York City, NY 10001" -206399,Vareebadd Phone,1,400,05/23/19 09:53,"834 Spruce St, San Francisco, CA 94016" -206399,Bose SoundSport Headphones,1,99.99,05/23/19 09:53,"834 Spruce St, San Francisco, CA 94016" -206400,Bose SoundSport Headphones,1,99.99,05/09/19 17:55,"118 Forest St, Austin, TX 73301" -206401,AA Batteries (4-pack),1,3.84,05/03/19 21:39,"534 Adams St, New York City, NY 10001" -206402,Bose SoundSport Headphones,1,99.99,05/13/19 19:52,"338 7th St, San Francisco, CA 94016" -206403,Lightning Charging Cable,1,14.95,05/29/19 17:33,"630 9th St, San Francisco, CA 94016" -206404,AAA Batteries (4-pack),2,2.99,05/02/19 14:50,"18 6th St, Boston, MA 02215" -206404,AAA Batteries (4-pack),1,2.99,05/02/19 14:50,"18 6th St, Boston, MA 02215" -206405,AAA Batteries (4-pack),1,2.99,05/20/19 13:35,"437 9th St, New York City, NY 10001" -206406,Lightning Charging Cable,2,14.95,05/20/19 17:35,"468 River St, Portland, OR 97035" -206407,USB-C Charging Cable,1,11.95,05/23/19 15:35,"275 8th St, New York City, NY 10001" -206408,Lightning Charging Cable,1,14.95,05/28/19 15:36,"968 Johnson St, Dallas, TX 75001" -206409,USB-C Charging Cable,1,11.95,05/23/19 10:42,"879 Wilson St, New York City, NY 10001" -206410,34in Ultrawide Monitor,1,379.99,05/17/19 19:42,"815 Walnut St, San Francisco, CA 94016" -206411,34in Ultrawide Monitor,1,379.99,05/10/19 17:19,"929 Park St, Los Angeles, CA 90001" -206412,34in Ultrawide Monitor,1,379.99,05/13/19 16:13,"890 10th St, San Francisco, CA 94016" -206413,Macbook Pro Laptop,1,1700,05/07/19 09:41,"391 1st St, Seattle, WA 98101" -206413,iPhone,1,700,05/07/19 09:41,"391 1st St, Seattle, WA 98101" -206414,AA Batteries (4-pack),1,3.84,05/12/19 06:55,"710 Spruce St, San Francisco, CA 94016" -206415,AAA Batteries (4-pack),1,2.99,05/10/19 16:27,"359 Adams St, San Francisco, CA 94016" -206416,Apple Airpods Headphones,1,150,05/13/19 13:54,"16 West St, New York City, NY 10001" -206417,34in Ultrawide Monitor,1,379.99,05/24/19 08:30,"401 River St, New York City, NY 10001" -206418,AAA Batteries (4-pack),1,2.99,05/30/19 11:45,"318 13th St, Boston, MA 02215" -206419,Wired Headphones,1,11.99,05/03/19 11:11,"334 Wilson St, Los Angeles, CA 90001" -206420,Flatscreen TV,1,300,05/20/19 08:58,"80 South St, Boston, MA 02215" -206421,Apple Airpods Headphones,1,150,05/27/19 11:10,"923 Willow St, New York City, NY 10001" -206422,27in 4K Gaming Monitor,1,389.99,05/11/19 10:15,"779 South St, San Francisco, CA 94016" -206423,Wired Headphones,1,11.99,05/17/19 16:42,"386 Ridge St, San Francisco, CA 94016" -206424,27in FHD Monitor,1,149.99,05/09/19 15:22,"329 12th St, New York City, NY 10001" -206425,USB-C Charging Cable,1,11.95,05/06/19 09:08,"136 Johnson St, Seattle, WA 98101" -206426,iPhone,1,700,05/31/19 13:24,"908 10th St, Dallas, TX 75001" -206427,Bose SoundSport Headphones,1,99.99,05/10/19 09:14,"864 Meadow St, San Francisco, CA 94016" -206428,AAA Batteries (4-pack),4,2.99,05/10/19 09:53,"306 Cherry St, San Francisco, CA 94016" -206429,AAA Batteries (4-pack),1,2.99,05/19/19 17:21,"517 Willow St, Atlanta, GA 30301" -206430,AAA Batteries (4-pack),1,2.99,05/16/19 01:56,"427 Park St, San Francisco, CA 94016" -206431,Wired Headphones,1,11.99,05/30/19 12:47,"439 6th St, Dallas, TX 75001" -206432,AA Batteries (4-pack),1,3.84,05/11/19 14:16,"125 Lake St, San Francisco, CA 94016" -206433,34in Ultrawide Monitor,1,379.99,05/28/19 09:34,"107 Ridge St, Atlanta, GA 30301" -206434,iPhone,1,700,05/06/19 17:08,"277 West St, Portland, OR 97035" -206434,Lightning Charging Cable,1,14.95,05/06/19 17:08,"277 West St, Portland, OR 97035" -206435,USB-C Charging Cable,1,11.95,05/30/19 18:00,"683 14th St, Los Angeles, CA 90001" -206436,Flatscreen TV,1,300,05/22/19 16:25,"11 14th St, San Francisco, CA 94016" -206437,Lightning Charging Cable,1,14.95,05/12/19 13:12,"117 1st St, Boston, MA 02215" -206438,AAA Batteries (4-pack),1,2.99,05/07/19 21:01,"743 Highland St, Atlanta, GA 30301" -206439,Apple Airpods Headphones,1,150,05/17/19 07:53,"667 Pine St, Portland, OR 97035" -206440,AAA Batteries (4-pack),1,2.99,05/11/19 21:55,"657 10th St, New York City, NY 10001" -206441,Apple Airpods Headphones,1,150,05/10/19 13:04,"803 Elm St, San Francisco, CA 94016" -206442,Wired Headphones,1,11.99,05/22/19 17:58,"652 North St, San Francisco, CA 94016" -206443,Bose SoundSport Headphones,1,99.99,05/02/19 02:46,"345 South St, Boston, MA 02215" -206444,AA Batteries (4-pack),1,3.84,05/05/19 19:59,"23 Lake St, San Francisco, CA 94016" -206445,USB-C Charging Cable,1,11.95,05/17/19 14:37,"367 9th St, New York City, NY 10001" -206446,Flatscreen TV,1,300,05/23/19 13:58,"97 Elm St, Los Angeles, CA 90001" -206447,Wired Headphones,1,11.99,05/25/19 00:54,"406 Spruce St, Atlanta, GA 30301" -206448,Macbook Pro Laptop,1,1700,05/04/19 09:15,"268 Ridge St, San Francisco, CA 94016" -206449,Apple Airpods Headphones,1,150,05/11/19 10:58,"866 13th St, San Francisco, CA 94016" -206450,34in Ultrawide Monitor,1,379.99,05/10/19 17:41,"819 8th St, Boston, MA 02215" -206451,Wired Headphones,1,11.99,05/11/19 18:26,"483 Spruce St, San Francisco, CA 94016" -206452,AA Batteries (4-pack),1,3.84,05/01/19 15:27,"704 Washington St, New York City, NY 10001" -206453,ThinkPad Laptop,1,999.99,05/22/19 09:35,"390 10th St, San Francisco, CA 94016" -206454,Lightning Charging Cable,1,14.95,05/22/19 14:29,"907 Meadow St, Portland, OR 97035" -206455,USB-C Charging Cable,1,11.95,05/19/19 05:42,"2 Walnut St, Atlanta, GA 30301" -206456,34in Ultrawide Monitor,1,379.99,05/30/19 21:22,"412 Washington St, San Francisco, CA 94016" -206457,20in Monitor,1,109.99,05/04/19 23:39,"659 Spruce St, San Francisco, CA 94016" -206458,AA Batteries (4-pack),1,3.84,05/05/19 17:36,"714 9th St, San Francisco, CA 94016" -206459,Bose SoundSport Headphones,1,99.99,05/16/19 16:45,"886 Forest St, Seattle, WA 98101" -206460,Macbook Pro Laptop,1,1700,05/02/19 12:40,"975 River St, Seattle, WA 98101" -206461,AAA Batteries (4-pack),1,2.99,05/10/19 11:05,"990 North St, New York City, NY 10001" -206462,AA Batteries (4-pack),1,3.84,05/29/19 20:06,"895 Jackson St, Atlanta, GA 30301" -206463,Wired Headphones,1,11.99,05/12/19 13:44,"201 9th St, Boston, MA 02215" -206464,Apple Airpods Headphones,1,150,05/30/19 01:19,"478 South St, New York City, NY 10001" -206465,27in 4K Gaming Monitor,1,389.99,05/23/19 16:22,"218 Park St, New York City, NY 10001" -206466,Wired Headphones,1,11.99,05/25/19 14:25,"998 Park St, Boston, MA 02215" -206467,LG Washing Machine,1,600.0,05/29/19 13:18,"978 Walnut St, Los Angeles, CA 90001" -206468,USB-C Charging Cable,1,11.95,05/23/19 23:53,"4 4th St, Boston, MA 02215" -206469,Lightning Charging Cable,1,14.95,05/02/19 11:08,"387 2nd St, San Francisco, CA 94016" -206470,Bose SoundSport Headphones,1,99.99,05/12/19 07:56,"598 Walnut St, San Francisco, CA 94016" -206471,USB-C Charging Cable,1,11.95,05/06/19 13:22,"294 Park St, Austin, TX 73301" -206472,AA Batteries (4-pack),1,3.84,05/28/19 16:37,"590 Main St, Atlanta, GA 30301" -206473,AA Batteries (4-pack),1,3.84,05/14/19 21:28,"503 11th St, San Francisco, CA 94016" -206474,Lightning Charging Cable,1,14.95,05/23/19 16:23,"363 Cherry St, Dallas, TX 75001" -206475,27in 4K Gaming Monitor,1,389.99,05/19/19 17:43,"264 8th St, New York City, NY 10001" -206476,Bose SoundSport Headphones,1,99.99,05/22/19 11:55,"832 Wilson St, Los Angeles, CA 90001" -206476,Lightning Charging Cable,2,14.95,05/22/19 11:55,"832 Wilson St, Los Angeles, CA 90001" -206477,ThinkPad Laptop,1,999.99,05/11/19 20:05,"96 Walnut St, Los Angeles, CA 90001" -206478,Wired Headphones,1,11.99,05/13/19 18:42,"77 Center St, San Francisco, CA 94016" -206479,AAA Batteries (4-pack),2,2.99,05/24/19 12:44,"832 Dogwood St, Boston, MA 02215" -206480,AA Batteries (4-pack),1,3.84,05/14/19 22:59,"111 Maple St, Atlanta, GA 30301" -206481,27in FHD Monitor,1,149.99,05/05/19 12:35,"622 South St, Austin, TX 73301" -206482,Wired Headphones,1,11.99,05/09/19 11:02,"788 Madison St, New York City, NY 10001" -206483,AA Batteries (4-pack),1,3.84,05/07/19 07:30,"273 Meadow St, Los Angeles, CA 90001" -206484,USB-C Charging Cable,1,11.95,05/20/19 20:19,"826 Jackson St, Atlanta, GA 30301" -206485,AAA Batteries (4-pack),1,2.99,05/19/19 21:30,"786 Cherry St, Seattle, WA 98101" -206486,AA Batteries (4-pack),1,3.84,05/22/19 23:22,"217 1st St, Boston, MA 02215" -206487,Lightning Charging Cable,1,14.95,05/02/19 15:51,"753 9th St, Boston, MA 02215" -206488,27in 4K Gaming Monitor,1,389.99,05/05/19 12:26,"993 Willow St, Portland, OR 97035" -206489,27in FHD Monitor,1,149.99,05/15/19 09:04,"767 13th St, Austin, TX 73301" -206490,USB-C Charging Cable,1,11.95,05/01/19 07:23,"79 Center St, San Francisco, CA 94016" -206491,Bose SoundSport Headphones,1,99.99,05/20/19 15:46,"331 14th St, Seattle, WA 98101" -206492,AA Batteries (4-pack),1,3.84,05/14/19 04:19,"104 Dogwood St, New York City, NY 10001" -206493,Bose SoundSport Headphones,1,99.99,05/17/19 07:52,"121 West St, New York City, NY 10001" -206494,27in 4K Gaming Monitor,1,389.99,05/17/19 11:30,"739 14th St, San Francisco, CA 94016" -206495,Lightning Charging Cable,1,14.95,05/11/19 18:05,"597 Lake St, Seattle, WA 98101" -206496,20in Monitor,1,109.99,05/10/19 12:32,"889 Wilson St, San Francisco, CA 94016" -206497,Google Phone,1,600,05/26/19 10:23,"162 Johnson St, San Francisco, CA 94016" -206497,Lightning Charging Cable,1,14.95,05/26/19 10:23,"162 Johnson St, San Francisco, CA 94016" -206498,Wired Headphones,1,11.99,05/01/19 12:08,"197 Church St, New York City, NY 10001" -206499,Lightning Charging Cable,1,14.95,05/10/19 20:12,"164 South St, San Francisco, CA 94016" -206500,27in 4K Gaming Monitor,1,389.99,05/27/19 21:47,"756 Main St, Boston, MA 02215" -206501,Wired Headphones,1,11.99,05/11/19 10:29,"398 Dogwood St, Dallas, TX 75001" -206502,Apple Airpods Headphones,1,150,05/17/19 19:01,"729 Elm St, Boston, MA 02215" -206503,iPhone,1,700,05/18/19 13:12,"774 Sunset St, Seattle, WA 98101" -206504,AAA Batteries (4-pack),1,2.99,05/24/19 00:56,"943 14th St, Atlanta, GA 30301" -206505,Wired Headphones,1,11.99,05/23/19 09:38,"563 Washington St, Dallas, TX 75001" -206506,USB-C Charging Cable,1,11.95,05/02/19 15:23,"56 13th St, Portland, OR 97035" -206507,AAA Batteries (4-pack),1,2.99,05/07/19 17:55,"940 2nd St, Atlanta, GA 30301" -206508,iPhone,1,700,05/08/19 22:41,"288 Hill St, Boston, MA 02215" -206509,Bose SoundSport Headphones,1,99.99,05/30/19 00:50,"662 2nd St, Los Angeles, CA 90001" -206510,AAA Batteries (4-pack),1,2.99,05/16/19 15:02,"181 5th St, Atlanta, GA 30301" -206511,Apple Airpods Headphones,1,150,05/24/19 12:35,"866 Highland St, San Francisco, CA 94016" -206512,Bose SoundSport Headphones,1,99.99,05/24/19 07:55,"619 Highland St, Atlanta, GA 30301" -206513,USB-C Charging Cable,1,11.95,05/19/19 13:42,"362 Hickory St, Austin, TX 73301" -206514,USB-C Charging Cable,1,11.95,05/02/19 08:48,"725 Jefferson St, Austin, TX 73301" -206515,Wired Headphones,1,11.99,05/27/19 21:41,"84 6th St, Atlanta, GA 30301" -206516,Wired Headphones,1,11.99,05/05/19 19:15,"775 Lakeview St, Boston, MA 02215" -206517,Bose SoundSport Headphones,1,99.99,05/18/19 19:06,"251 Church St, Portland, OR 97035" -206518,USB-C Charging Cable,1,11.95,05/12/19 15:16,"848 Washington St, Los Angeles, CA 90001" -206519,Apple Airpods Headphones,1,150,05/05/19 20:20,"548 West St, San Francisco, CA 94016" -206520,Lightning Charging Cable,1,14.95,05/26/19 14:43,"980 2nd St, Boston, MA 02215" -206521,Google Phone,1,600,05/19/19 10:03,"713 Dogwood St, Austin, TX 73301" -206521,Wired Headphones,1,11.99,05/19/19 10:03,"713 Dogwood St, Austin, TX 73301" -206522,AAA Batteries (4-pack),1,2.99,05/17/19 18:55,"445 Meadow St, Portland, OR 97035" -206523,USB-C Charging Cable,1,11.95,05/25/19 21:42,"113 Elm St, Seattle, WA 98101" -206524,AAA Batteries (4-pack),2,2.99,05/24/19 17:14,"256 14th St, Dallas, TX 75001" -206525,AAA Batteries (4-pack),3,2.99,05/10/19 07:04,"729 Johnson St, Los Angeles, CA 90001" -206526,AA Batteries (4-pack),1,3.84,05/25/19 21:07,"832 Lakeview St, Boston, MA 02215" -206527,27in 4K Gaming Monitor,1,389.99,05/27/19 22:04,"920 12th St, Dallas, TX 75001" -206528,AAA Batteries (4-pack),1,2.99,05/03/19 22:08,"183 Cedar St, Seattle, WA 98101" -206529,iPhone,1,700,05/23/19 15:45,"203 4th St, Atlanta, GA 30301" -206529,Wired Headphones,1,11.99,05/23/19 15:45,"203 4th St, Atlanta, GA 30301" -206530,34in Ultrawide Monitor,1,379.99,05/28/19 13:38,"335 7th St, Austin, TX 73301" -206531,27in 4K Gaming Monitor,1,389.99,05/12/19 21:04,"171 12th St, Atlanta, GA 30301" -206532,iPhone,1,700,05/14/19 00:11,"195 Lake St, Austin, TX 73301" -206533,AAA Batteries (4-pack),2,2.99,05/26/19 00:21,"986 2nd St, Los Angeles, CA 90001" -206534,Wired Headphones,1,11.99,05/13/19 21:31,"28 Johnson St, Los Angeles, CA 90001" -206535,AAA Batteries (4-pack),1,2.99,05/07/19 11:44,"605 West St, Austin, TX 73301" -206536,Wired Headphones,1,11.99,05/08/19 12:53,"285 Lakeview St, San Francisco, CA 94016" -206537,iPhone,1,700,05/27/19 18:44,"412 Jackson St, Austin, TX 73301" -206538,AAA Batteries (4-pack),1,2.99,05/26/19 12:41,"156 Highland St, San Francisco, CA 94016" -206539,AA Batteries (4-pack),3,3.84,05/07/19 09:28,"899 Ridge St, San Francisco, CA 94016" -206540,iPhone,1,700,05/29/19 14:32,"361 1st St, Los Angeles, CA 90001" -206541,USB-C Charging Cable,1,11.95,05/14/19 10:33,"444 Pine St, Atlanta, GA 30301" -206542,Wired Headphones,2,11.99,05/17/19 12:10,"91 Cherry St, Austin, TX 73301" -206543,iPhone,1,700,05/12/19 17:39,"713 Lincoln St, Dallas, TX 75001" -206543,Lightning Charging Cable,1,14.95,05/12/19 17:39,"713 Lincoln St, Dallas, TX 75001" -206544,USB-C Charging Cable,1,11.95,05/13/19 13:38,"311 Highland St, San Francisco, CA 94016" -206545,Lightning Charging Cable,1,14.95,05/04/19 16:11,"80 1st St, Los Angeles, CA 90001" -206546,AAA Batteries (4-pack),2,2.99,05/19/19 19:14,"456 Lakeview St, San Francisco, CA 94016" -206547,Bose SoundSport Headphones,1,99.99,05/25/19 00:05,"480 Jefferson St, San Francisco, CA 94016" -206548,Apple Airpods Headphones,1,150,05/13/19 21:03,"882 1st St, Portland, OR 97035" -206549,34in Ultrawide Monitor,1,379.99,05/03/19 10:39,"718 Chestnut St, San Francisco, CA 94016" -206550,34in Ultrawide Monitor,1,379.99,05/10/19 01:36,"180 Washington St, Seattle, WA 98101" -206551,Google Phone,1,600,05/19/19 09:36,"225 Elm St, New York City, NY 10001" -206551,USB-C Charging Cable,1,11.95,05/19/19 09:36,"225 Elm St, New York City, NY 10001" -206552,AAA Batteries (4-pack),1,2.99,05/03/19 18:59,"836 Church St, Atlanta, GA 30301" -206553,27in 4K Gaming Monitor,1,389.99,05/25/19 20:42,"454 Johnson St, New York City, NY 10001" -206554,Bose SoundSport Headphones,1,99.99,05/08/19 15:12,"522 Elm St, San Francisco, CA 94016" -206555,Wired Headphones,2,11.99,05/12/19 06:17,"473 Willow St, San Francisco, CA 94016" -206556,27in FHD Monitor,1,149.99,05/14/19 20:03,"89 Highland St, Portland, OR 97035" -206557,Apple Airpods Headphones,1,150,05/01/19 13:07,"296 Jefferson St, Atlanta, GA 30301" -206558,USB-C Charging Cable,1,11.95,05/01/19 12:47,"803 Dogwood St, Portland, ME 04101" -206559,Apple Airpods Headphones,1,150,05/07/19 09:46,"207 Jackson St, Los Angeles, CA 90001" -206560,Lightning Charging Cable,1,14.95,05/27/19 14:29,"96 Dogwood St, Dallas, TX 75001" -206561,Macbook Pro Laptop,1,1700,05/24/19 16:12,"258 Dogwood St, San Francisco, CA 94016" -206562,Flatscreen TV,1,300,05/21/19 11:44,"726 Dogwood St, San Francisco, CA 94016" -206563,Wired Headphones,1,11.99,05/05/19 12:13,"704 Hill St, Boston, MA 02215" -206564,AAA Batteries (4-pack),1,2.99,05/16/19 20:45,"824 Sunset St, San Francisco, CA 94016" -206565,AAA Batteries (4-pack),1,2.99,05/22/19 08:42,"642 Cherry St, Seattle, WA 98101" -206566,Apple Airpods Headphones,1,150,05/19/19 13:55,"527 North St, New York City, NY 10001" -206567,Wired Headphones,1,11.99,05/07/19 13:25,"34 Jefferson St, Los Angeles, CA 90001" -206568,Google Phone,1,600,05/29/19 16:57,"651 Walnut St, Los Angeles, CA 90001" -206569,27in FHD Monitor,1,149.99,05/03/19 15:10,"54 Jefferson St, Seattle, WA 98101" -206570,Apple Airpods Headphones,1,150,05/22/19 21:32,"192 Forest St, Boston, MA 02215" -206571,ThinkPad Laptop,1,999.99,05/07/19 10:04,"64 Lake St, San Francisco, CA 94016" -206572,AAA Batteries (4-pack),4,2.99,05/06/19 10:25,"368 Sunset St, Boston, MA 02215" -206573,USB-C Charging Cable,1,11.95,05/15/19 21:50,"532 Highland St, Dallas, TX 75001" -206574,20in Monitor,1,109.99,05/28/19 16:53,"800 2nd St, San Francisco, CA 94016" -206575,Vareebadd Phone,1,400,05/28/19 19:08,"728 Wilson St, San Francisco, CA 94016" -206576,AAA Batteries (4-pack),1,2.99,05/12/19 17:06,"805 Chestnut St, Los Angeles, CA 90001" -206577,iPhone,1,700,05/26/19 19:54,"579 Park St, Boston, MA 02215" -206578,Bose SoundSport Headphones,1,99.99,05/27/19 14:48,"223 Forest St, Portland, OR 97035" -206579,AAA Batteries (4-pack),2,2.99,05/13/19 14:04,"696 Dogwood St, Dallas, TX 75001" -206580,Lightning Charging Cable,1,14.95,05/16/19 10:04,"673 Cedar St, New York City, NY 10001" -206581,USB-C Charging Cable,1,11.95,05/30/19 15:00,"791 9th St, Austin, TX 73301" -206582,AAA Batteries (4-pack),1,2.99,05/23/19 16:03,"546 Cherry St, Boston, MA 02215" -206583,AA Batteries (4-pack),1,3.84,05/22/19 14:08,"291 Hill St, New York City, NY 10001" -206584,Lightning Charging Cable,1,14.95,05/11/19 23:11,"576 6th St, Atlanta, GA 30301" -206585,Bose SoundSport Headphones,1,99.99,05/22/19 15:29,"832 Main St, New York City, NY 10001" -206586,34in Ultrawide Monitor,1,379.99,05/15/19 13:36,"39 Ridge St, Boston, MA 02215" -206587,AA Batteries (4-pack),1,3.84,05/18/19 20:41,"594 Meadow St, San Francisco, CA 94016" -206587,Wired Headphones,1,11.99,05/18/19 20:41,"594 Meadow St, San Francisco, CA 94016" -206588,USB-C Charging Cable,1,11.95,05/11/19 19:50,"140 Sunset St, Austin, TX 73301" -206589,LG Dryer,1,600.0,05/16/19 00:27,"824 Willow St, Dallas, TX 75001" -206590,27in FHD Monitor,1,149.99,05/28/19 14:23,"4 Highland St, San Francisco, CA 94016" -206591,Lightning Charging Cable,1,14.95,05/09/19 09:16,"211 9th St, Boston, MA 02215" -206592,USB-C Charging Cable,1,11.95,05/12/19 15:15,"14 Spruce St, San Francisco, CA 94016" -206593,Apple Airpods Headphones,1,150,05/20/19 07:02,"854 Cedar St, New York City, NY 10001" -206594,Lightning Charging Cable,1,14.95,05/21/19 07:01,"453 Chestnut St, San Francisco, CA 94016" -206595,AAA Batteries (4-pack),1,2.99,05/29/19 13:09,"356 Main St, Los Angeles, CA 90001" -206596,Bose SoundSport Headphones,1,99.99,05/07/19 09:12,"501 Jefferson St, Los Angeles, CA 90001" -206597,Wired Headphones,1,11.99,05/19/19 10:49,"964 Forest St, Los Angeles, CA 90001" -206598,USB-C Charging Cable,1,11.95,05/03/19 21:06,"347 Pine St, Portland, OR 97035" -206599,AA Batteries (4-pack),1,3.84,05/03/19 08:12,"619 North St, San Francisco, CA 94016" -206600,Wired Headphones,1,11.99,05/04/19 19:23,"59 Ridge St, Boston, MA 02215" -206601,Apple Airpods Headphones,1,150,05/19/19 08:39,"181 Chestnut St, San Francisco, CA 94016" -206602,AAA Batteries (4-pack),1,2.99,05/16/19 08:55,"582 Hickory St, Los Angeles, CA 90001" -206603,USB-C Charging Cable,1,11.95,05/30/19 19:31,"624 Ridge St, Los Angeles, CA 90001" -206604,Lightning Charging Cable,1,14.95,05/02/19 20:24,"45 12th St, San Francisco, CA 94016" -206605,iPhone,1,700,05/15/19 11:44,"469 Pine St, Portland, OR 97035" -206606,Apple Airpods Headphones,1,150,05/30/19 21:42,"265 Washington St, San Francisco, CA 94016" -206607,AA Batteries (4-pack),1,3.84,05/17/19 07:33,"621 14th St, Dallas, TX 75001" -206608,USB-C Charging Cable,1,11.95,05/10/19 23:34,"130 Sunset St, Dallas, TX 75001" -206609,AAA Batteries (4-pack),1,2.99,05/01/19 17:30,"564 Forest St, San Francisco, CA 94016" -206610,Bose SoundSport Headphones,1,99.99,05/14/19 10:16,"958 Walnut St, Los Angeles, CA 90001" -206611,AAA Batteries (4-pack),1,2.99,05/30/19 19:02,"533 Sunset St, San Francisco, CA 94016" -206612,Macbook Pro Laptop,1,1700,05/03/19 07:47,"416 Lakeview St, Los Angeles, CA 90001" -206613,27in FHD Monitor,1,149.99,05/13/19 11:10,"772 Johnson St, Dallas, TX 75001" -206614,27in FHD Monitor,1,149.99,05/11/19 19:16,"688 River St, New York City, NY 10001" -206615,USB-C Charging Cable,1,11.95,05/02/19 14:21,"267 7th St, Atlanta, GA 30301" -206616,Google Phone,1,600,05/30/19 17:14,"7 12th St, Los Angeles, CA 90001" -206617,Apple Airpods Headphones,1,150,05/18/19 09:20,"4 Hickory St, Boston, MA 02215" -206618,Apple Airpods Headphones,1,150,05/15/19 10:12,"254 Dogwood St, Portland, ME 04101" -206619,AA Batteries (4-pack),2,3.84,05/06/19 10:02,"576 5th St, Atlanta, GA 30301" -206620,Flatscreen TV,1,300,05/09/19 19:20,"707 9th St, San Francisco, CA 94016" -206621,Apple Airpods Headphones,1,150,05/08/19 22:36,"925 Church St, San Francisco, CA 94016" -206622,Lightning Charging Cable,1,14.95,05/28/19 17:10,"324 Adams St, New York City, NY 10001" -206623,27in FHD Monitor,1,149.99,05/12/19 08:32,"236 Center St, San Francisco, CA 94016" -206624,iPhone,1,700,05/17/19 17:21,"954 Walnut St, San Francisco, CA 94016" -206625,AA Batteries (4-pack),1,3.84,05/11/19 18:35,"608 South St, Seattle, WA 98101" -206626,Apple Airpods Headphones,1,150,05/29/19 09:51,"556 Hickory St, Seattle, WA 98101" -206627,27in 4K Gaming Monitor,1,389.99,05/15/19 12:58,"419 Church St, Boston, MA 02215" -206628,Wired Headphones,1,11.99,05/21/19 22:17,"808 Washington St, New York City, NY 10001" -206629,Macbook Pro Laptop,1,1700,05/30/19 15:02,"40 Main St, Boston, MA 02215" -206630,Wired Headphones,1,11.99,05/31/19 16:01,"2 11th St, San Francisco, CA 94016" -206631,Apple Airpods Headphones,1,150,05/18/19 16:37,"539 Jackson St, Boston, MA 02215" -206632,Flatscreen TV,1,300,05/12/19 17:02,"534 Adams St, Los Angeles, CA 90001" -206633,Bose SoundSport Headphones,1,99.99,05/18/19 18:36,"873 Jefferson St, San Francisco, CA 94016" -206634,20in Monitor,1,109.99,05/06/19 11:59,"303 North St, New York City, NY 10001" -206635,Wired Headphones,1,11.99,05/11/19 11:44,"365 Dogwood St, Los Angeles, CA 90001" -206636,Google Phone,1,600,05/27/19 15:49,"522 Ridge St, Los Angeles, CA 90001" -206637,AAA Batteries (4-pack),2,2.99,05/06/19 18:21,"333 Highland St, San Francisco, CA 94016" -206638,AA Batteries (4-pack),1,3.84,05/18/19 13:45,"853 Lakeview St, Seattle, WA 98101" -206639,Lightning Charging Cable,1,14.95,05/20/19 12:42,"669 Jackson St, San Francisco, CA 94016" -206640,ThinkPad Laptop,1,999.99,05/18/19 10:30,"898 Madison St, Boston, MA 02215" -206641,USB-C Charging Cable,2,11.95,05/07/19 13:14,"524 10th St, Atlanta, GA 30301" -206642,Wired Headphones,1,11.99,05/28/19 15:36,"293 Forest St, Los Angeles, CA 90001" -206643,ThinkPad Laptop,1,999.99,05/14/19 04:35,"284 Jackson St, Seattle, WA 98101" -206644,USB-C Charging Cable,1,11.95,05/11/19 18:48,"585 Elm St, Boston, MA 02215" -206645,Lightning Charging Cable,1,14.95,05/24/19 16:52,"868 Maple St, Los Angeles, CA 90001" -206646,Flatscreen TV,1,300,05/20/19 07:20,"693 Willow St, Los Angeles, CA 90001" -206647,Wired Headphones,1,11.99,05/15/19 16:05,"971 Dogwood St, Dallas, TX 75001" -206648,27in FHD Monitor,1,149.99,05/25/19 15:57,"825 Highland St, Los Angeles, CA 90001" -206649,Bose SoundSport Headphones,1,99.99,05/23/19 23:41,"817 Johnson St, San Francisco, CA 94016" -206650,ThinkPad Laptop,1,999.99,05/30/19 22:48,"109 Adams St, Austin, TX 73301" -206651,USB-C Charging Cable,1,11.95,05/25/19 22:55,"463 Sunset St, Los Angeles, CA 90001" -206652,USB-C Charging Cable,1,11.95,05/11/19 02:43,"586 Washington St, San Francisco, CA 94016" -206653,USB-C Charging Cable,1,11.95,05/11/19 15:59,"935 Washington St, San Francisco, CA 94016" -206654,Apple Airpods Headphones,1,150,05/03/19 20:38,"52 Chestnut St, New York City, NY 10001" -206655,Vareebadd Phone,1,400,05/08/19 18:10,"353 Johnson St, Boston, MA 02215" -206655,USB-C Charging Cable,1,11.95,05/08/19 18:10,"353 Johnson St, Boston, MA 02215" -206655,Wired Headphones,1,11.99,05/08/19 18:10,"353 Johnson St, Boston, MA 02215" -206656,Lightning Charging Cable,2,14.95,05/03/19 03:56,"914 Sunset St, Dallas, TX 75001" -206657,Lightning Charging Cable,1,14.95,05/01/19 12:44,"450 Lake St, San Francisco, CA 94016" -206658,AA Batteries (4-pack),2,3.84,05/21/19 13:55,"589 Wilson St, San Francisco, CA 94016" -206659,Flatscreen TV,1,300,05/08/19 04:58,"208 Main St, Portland, OR 97035" -206659,Apple Airpods Headphones,1,150,05/08/19 04:58,"208 Main St, Portland, OR 97035" -206660,AAA Batteries (4-pack),1,2.99,05/30/19 19:34,"740 Jefferson St, Dallas, TX 75001" -206661,AAA Batteries (4-pack),1,2.99,05/07/19 09:51,"68 8th St, Boston, MA 02215" -206662,Flatscreen TV,1,300,05/08/19 14:53,"302 Hill St, New York City, NY 10001" -206663,Wired Headphones,2,11.99,05/21/19 23:29,"991 Lakeview St, Dallas, TX 75001" -206664,Apple Airpods Headphones,1,150,05/17/19 22:44,"43 Highland St, Los Angeles, CA 90001" -206665,USB-C Charging Cable,1,11.95,05/26/19 18:02,"36 Chestnut St, Dallas, TX 75001" -206666,AA Batteries (4-pack),2,3.84,05/30/19 21:21,"605 Willow St, Seattle, WA 98101" -206667,Bose SoundSport Headphones,1,99.99,05/04/19 20:23,"920 Lakeview St, Portland, OR 97035" -206668,AAA Batteries (4-pack),1,2.99,05/12/19 17:41,"936 South St, New York City, NY 10001" -206669,Bose SoundSport Headphones,1,99.99,05/22/19 14:57,"166 10th St, New York City, NY 10001" -206670,Apple Airpods Headphones,1,150,05/03/19 13:20,"692 9th St, San Francisco, CA 94016" -206671,USB-C Charging Cable,1,11.95,05/24/19 18:02,"687 Maple St, Dallas, TX 75001" -206672,Lightning Charging Cable,1,14.95,05/02/19 06:23,"247 Washington St, Los Angeles, CA 90001" -206673,AAA Batteries (4-pack),1,2.99,05/08/19 16:14,"354 North St, Atlanta, GA 30301" -206674,AAA Batteries (4-pack),1,2.99,05/31/19 12:33,"541 9th St, Boston, MA 02215" -206675,AAA Batteries (4-pack),1,2.99,05/18/19 12:02,"393 5th St, New York City, NY 10001" -206676,Wired Headphones,1,11.99,05/14/19 05:40,"300 Wilson St, New York City, NY 10001" -206677,34in Ultrawide Monitor,1,379.99,05/14/19 09:55,"695 7th St, Austin, TX 73301" -206678,27in 4K Gaming Monitor,1,389.99,05/06/19 18:16,"919 Pine St, Portland, OR 97035" -206679,AAA Batteries (4-pack),1,2.99,05/20/19 14:57,"919 Cedar St, Boston, MA 02215" -206680,USB-C Charging Cable,1,11.95,05/04/19 11:11,"684 Jefferson St, Seattle, WA 98101" -206681,AAA Batteries (4-pack),1,2.99,05/28/19 01:35,"120 Ridge St, Boston, MA 02215" -206682,Lightning Charging Cable,2,14.95,05/24/19 20:36,"956 Ridge St, Seattle, WA 98101" -206683,Apple Airpods Headphones,1,150,05/31/19 08:42,"968 Willow St, Los Angeles, CA 90001" -206684,USB-C Charging Cable,1,11.95,05/07/19 10:11,"247 11th St, New York City, NY 10001" -206685,Wired Headphones,1,11.99,05/20/19 00:19,"606 Jefferson St, Los Angeles, CA 90001" -206686,Wired Headphones,1,11.99,05/14/19 12:45,"669 Sunset St, Portland, OR 97035" -206687,27in FHD Monitor,1,149.99,05/31/19 08:07,"343 Forest St, New York City, NY 10001" -206688,AA Batteries (4-pack),1,3.84,05/22/19 14:28,"627 Church St, San Francisco, CA 94016" -206689,Wired Headphones,1,11.99,05/07/19 18:09,"502 Hill St, Dallas, TX 75001" -206690,Wired Headphones,2,11.99,05/18/19 20:18,"203 Elm St, New York City, NY 10001" -206691,27in FHD Monitor,1,149.99,05/23/19 06:48,"998 Spruce St, Atlanta, GA 30301" -206692,Lightning Charging Cable,1,14.95,05/10/19 13:45,"14 Dogwood St, San Francisco, CA 94016" -206693,Google Phone,1,600,05/24/19 19:02,"141 Lakeview St, New York City, NY 10001" -206694,27in FHD Monitor,1,149.99,05/08/19 13:59,"446 11th St, New York City, NY 10001" -206695,Bose SoundSport Headphones,1,99.99,05/20/19 23:22,"307 Spruce St, Atlanta, GA 30301" -206696,Flatscreen TV,1,300,05/17/19 20:01,"524 North St, San Francisco, CA 94016" -206697,Macbook Pro Laptop,1,1700,05/05/19 13:20,"221 South St, Boston, MA 02215" -206698,Bose SoundSport Headphones,1,99.99,05/16/19 07:34,"344 11th St, Boston, MA 02215" -206699,Bose SoundSport Headphones,1,99.99,05/20/19 13:54,"985 Lincoln St, Austin, TX 73301" -206700,20in Monitor,1,109.99,05/31/19 14:52,"331 14th St, San Francisco, CA 94016" -206701,Google Phone,1,600,05/09/19 10:43,"809 5th St, New York City, NY 10001" -206702,Google Phone,1,600,05/20/19 19:06,"857 Willow St, Seattle, WA 98101" -206703,27in 4K Gaming Monitor,1,389.99,05/27/19 11:45,"319 11th St, Atlanta, GA 30301" -206704,Lightning Charging Cable,1,14.95,05/31/19 15:24,"570 South St, Atlanta, GA 30301" -206705,AAA Batteries (4-pack),1,2.99,05/24/19 06:32,"377 Johnson St, Los Angeles, CA 90001" -206706,Google Phone,1,600,05/23/19 21:23,"784 Walnut St, Seattle, WA 98101" -206706,Wired Headphones,1,11.99,05/23/19 21:23,"784 Walnut St, Seattle, WA 98101" -206707,iPhone,1,700,05/07/19 17:04,"707 8th St, New York City, NY 10001" -206708,Flatscreen TV,1,300,05/27/19 15:56,"906 Cherry St, Portland, ME 04101" -206709,27in FHD Monitor,1,149.99,05/26/19 08:18,"983 Cherry St, Atlanta, GA 30301" -206710,USB-C Charging Cable,1,11.95,05/12/19 19:58,"20 Church St, Austin, TX 73301" -206711,Bose SoundSport Headphones,1,99.99,05/13/19 13:24,"433 8th St, San Francisco, CA 94016" -206712,ThinkPad Laptop,1,999.99,05/19/19 22:48,"860 Meadow St, Atlanta, GA 30301" -206713,Apple Airpods Headphones,1,150,05/08/19 23:50,"279 14th St, Los Angeles, CA 90001" -206714,Bose SoundSport Headphones,1,99.99,05/06/19 19:41,"951 Lakeview St, Dallas, TX 75001" -206715,AA Batteries (4-pack),3,3.84,05/21/19 20:02,"821 Cherry St, Seattle, WA 98101" -206716,USB-C Charging Cable,1,11.95,05/25/19 07:47,"444 Wilson St, San Francisco, CA 94016" -206717,Apple Airpods Headphones,1,150,05/08/19 11:35,"896 Madison St, Seattle, WA 98101" -206718,iPhone,1,700,05/22/19 12:02,"705 Highland St, Dallas, TX 75001" -206719,AA Batteries (4-pack),2,3.84,05/30/19 07:33,"519 Spruce St, San Francisco, CA 94016" -206720,AA Batteries (4-pack),3,3.84,05/13/19 15:52,"979 Lincoln St, Portland, OR 97035" -206721,ThinkPad Laptop,1,999.99,05/03/19 18:55,"929 1st St, Portland, ME 04101" -206722,Apple Airpods Headphones,1,150,05/24/19 09:22,"813 Church St, Los Angeles, CA 90001" -206723,Bose SoundSport Headphones,1,99.99,05/13/19 00:19,"101 Lincoln St, Boston, MA 02215" -206724,Lightning Charging Cable,1,14.95,05/07/19 02:29,"548 Hickory St, Atlanta, GA 30301" -206725,iPhone,1,700,05/05/19 16:42,"19 11th St, Boston, MA 02215" -206725,Apple Airpods Headphones,1,150,05/05/19 16:42,"19 11th St, Boston, MA 02215" -206726,Apple Airpods Headphones,1,150,05/11/19 11:21,"712 6th St, Los Angeles, CA 90001" -206727,Apple Airpods Headphones,1,150,05/22/19 17:33,"477 14th St, Atlanta, GA 30301" -206728,AA Batteries (4-pack),1,3.84,05/01/19 15:02,"949 West St, Atlanta, GA 30301" -206729,34in Ultrawide Monitor,1,379.99,05/22/19 15:03,"460 7th St, Portland, ME 04101" -206730,20in Monitor,1,109.99,05/09/19 14:43,"982 Chestnut St, Portland, OR 97035" -206731,AAA Batteries (4-pack),1,2.99,05/13/19 13:48,"999 Wilson St, Portland, OR 97035" -206732,AA Batteries (4-pack),2,3.84,05/12/19 20:36,"708 Center St, New York City, NY 10001" -206733,Apple Airpods Headphones,1,150,05/14/19 11:10,"103 Pine St, San Francisco, CA 94016" -206734,27in FHD Monitor,1,149.99,05/12/19 11:29,"295 Lake St, New York City, NY 10001" -206735,Wired Headphones,1,11.99,05/06/19 14:23,"999 Park St, Austin, TX 73301" -206736,Wired Headphones,1,11.99,05/25/19 14:37,"620 Highland St, Austin, TX 73301" -206737,Wired Headphones,1,11.99,05/08/19 13:21,"750 Park St, San Francisco, CA 94016" -206738,27in FHD Monitor,1,149.99,05/09/19 10:35,"879 Ridge St, Atlanta, GA 30301" -206739,Lightning Charging Cable,2,14.95,05/24/19 11:26,"926 8th St, Los Angeles, CA 90001" -206740,Apple Airpods Headphones,1,150,05/03/19 14:50,"753 5th St, New York City, NY 10001" -206741,27in FHD Monitor,1,149.99,05/31/19 19:15,"7 Hill St, Atlanta, GA 30301" -206742,Macbook Pro Laptop,1,1700,05/09/19 23:41,"549 11th St, Austin, TX 73301" -206743,USB-C Charging Cable,1,11.95,05/28/19 13:08,"901 Park St, Atlanta, GA 30301" -206743,Bose SoundSport Headphones,1,99.99,05/28/19 13:08,"901 Park St, Atlanta, GA 30301" -206744,AAA Batteries (4-pack),1,2.99,05/13/19 14:42,"480 Ridge St, New York City, NY 10001" -206745,AAA Batteries (4-pack),1,2.99,05/23/19 17:52,"128 Lincoln St, Los Angeles, CA 90001" -206746,Macbook Pro Laptop,1,1700,05/02/19 17:08,"616 Cherry St, Dallas, TX 75001" -206747,USB-C Charging Cable,1,11.95,05/10/19 10:22,"230 Ridge St, Seattle, WA 98101" -206748,USB-C Charging Cable,2,11.95,05/08/19 22:40,"457 14th St, San Francisco, CA 94016" -206749,Bose SoundSport Headphones,1,99.99,05/12/19 19:54,"838 Adams St, San Francisco, CA 94016" -206750,Wired Headphones,1,11.99,05/29/19 21:39,"808 4th St, Austin, TX 73301" -206751,Lightning Charging Cable,1,14.95,05/19/19 17:46,"343 Forest St, Los Angeles, CA 90001" -206752,Lightning Charging Cable,1,14.95,05/31/19 21:08,"789 2nd St, Los Angeles, CA 90001" -206753,Bose SoundSport Headphones,1,99.99,05/02/19 21:39,"251 Cedar St, Boston, MA 02215" -206754,Bose SoundSport Headphones,1,99.99,05/03/19 00:01,"946 Jefferson St, Portland, ME 04101" -206755,Bose SoundSport Headphones,1,99.99,05/31/19 13:35,"170 10th St, New York City, NY 10001" -206756,Apple Airpods Headphones,1,150,05/01/19 12:46,"890 Chestnut St, Seattle, WA 98101" -206757,Macbook Pro Laptop,1,1700,05/26/19 14:29,"293 Dogwood St, Portland, ME 04101" -206758,Google Phone,1,600,05/22/19 10:03,"903 Meadow St, Dallas, TX 75001" -206759,AA Batteries (4-pack),1,3.84,05/01/19 17:10,"435 13th St, Seattle, WA 98101" -206760,27in FHD Monitor,1,149.99,05/07/19 12:36,"640 North St, Austin, TX 73301" -206761,Bose SoundSport Headphones,1,99.99,05/15/19 16:24,"242 Lakeview St, San Francisco, CA 94016" -206762,Bose SoundSport Headphones,1,99.99,05/18/19 20:52,"968 Highland St, San Francisco, CA 94016" -206763,AAA Batteries (4-pack),2,2.99,05/11/19 06:55,"445 Lakeview St, Boston, MA 02215" -206764,USB-C Charging Cable,1,11.95,05/17/19 07:14,"14 North St, San Francisco, CA 94016" -206765,Lightning Charging Cable,1,14.95,05/15/19 13:56,"295 Main St, New York City, NY 10001" -206766,27in FHD Monitor,1,149.99,05/10/19 00:34,"924 Hill St, Atlanta, GA 30301" -206766,Macbook Pro Laptop,1,1700,05/10/19 00:34,"924 Hill St, Atlanta, GA 30301" -206767,Lightning Charging Cable,1,14.95,05/20/19 21:05,"990 14th St, Seattle, WA 98101" -206768,USB-C Charging Cable,1,11.95,05/10/19 11:58,"470 Forest St, Boston, MA 02215" -206769,ThinkPad Laptop,1,999.99,05/05/19 05:57,"606 Hill St, Los Angeles, CA 90001" -206770,AA Batteries (4-pack),2,3.84,05/16/19 13:34,"354 Adams St, New York City, NY 10001" -206771,Bose SoundSport Headphones,1,99.99,05/18/19 23:50,"499 5th St, Dallas, TX 75001" -206772,Wired Headphones,1,11.99,05/02/19 22:48,"652 Wilson St, Los Angeles, CA 90001" -206773,Flatscreen TV,1,300,05/14/19 11:01,"544 Lake St, Dallas, TX 75001" -206774,AAA Batteries (4-pack),2,2.99,05/23/19 20:06,"521 Sunset St, San Francisco, CA 94016" -206775,Wired Headphones,1,11.99,05/13/19 18:59,"266 13th St, Seattle, WA 98101" -206776,Lightning Charging Cable,1,14.95,05/09/19 20:27,"565 4th St, San Francisco, CA 94016" -206777,USB-C Charging Cable,1,11.95,05/13/19 20:56,"79 Main St, Seattle, WA 98101" -206778,AA Batteries (4-pack),2,3.84,05/22/19 21:00,"104 13th St, Portland, ME 04101" -206779,Wired Headphones,1,11.99,05/21/19 16:45,"47 Main St, Los Angeles, CA 90001" -206780,Wired Headphones,1,11.99,05/10/19 20:04,"449 Adams St, Boston, MA 02215" -206781,Bose SoundSport Headphones,1,99.99,05/15/19 17:26,"700 4th St, Los Angeles, CA 90001" -206782,Lightning Charging Cable,1,14.95,05/30/19 17:21,"631 South St, Seattle, WA 98101" -206783,Apple Airpods Headphones,1,150,05/30/19 19:52,"784 Dogwood St, Los Angeles, CA 90001" -206784,iPhone,1,700,05/12/19 14:00,"353 11th St, Atlanta, GA 30301" -206784,Wired Headphones,1,11.99,05/12/19 14:00,"353 11th St, Atlanta, GA 30301" -206785,AA Batteries (4-pack),1,3.84,05/17/19 18:30,"203 Wilson St, New York City, NY 10001" -206786,Wired Headphones,1,11.99,05/13/19 08:32,"209 Highland St, Dallas, TX 75001" -206787,AA Batteries (4-pack),1,3.84,05/29/19 17:44,"442 Sunset St, San Francisco, CA 94016" -206788,AAA Batteries (4-pack),1,2.99,05/31/19 09:30,"601 Johnson St, Dallas, TX 75001" -206789,AA Batteries (4-pack),2,3.84,05/26/19 16:29,"947 Lincoln St, Portland, OR 97035" -206790,Wired Headphones,1,11.99,05/30/19 10:45,"571 Dogwood St, Los Angeles, CA 90001" -206791,27in 4K Gaming Monitor,1,389.99,05/12/19 13:09,"609 Willow St, Austin, TX 73301" -206792,Apple Airpods Headphones,1,150,05/19/19 18:14,"252 13th St, Dallas, TX 75001" -,,,,, -206793,AAA Batteries (4-pack),2,2.99,05/15/19 23:48,"905 Pine St, Dallas, TX 75001" -206794,Wired Headphones,1,11.99,05/29/19 15:22,"47 Lincoln St, San Francisco, CA 94016" -206795,Wired Headphones,1,11.99,05/26/19 20:08,"947 Chestnut St, San Francisco, CA 94016" -206796,USB-C Charging Cable,1,11.95,05/14/19 16:23,"66 1st St, San Francisco, CA 94016" -206797,AAA Batteries (4-pack),1,2.99,05/05/19 06:46,"645 Walnut St, Boston, MA 02215" -206798,Apple Airpods Headphones,1,150,05/05/19 06:03,"50 Madison St, Austin, TX 73301" -206799,Bose SoundSport Headphones,1,99.99,05/14/19 21:43,"152 8th St, New York City, NY 10001" -206800,Lightning Charging Cable,1,14.95,05/17/19 11:24,"48 12th St, Seattle, WA 98101" -206801,Apple Airpods Headphones,1,150,05/24/19 20:35,"252 Lincoln St, Los Angeles, CA 90001" -206802,Lightning Charging Cable,1,14.95,05/07/19 19:17,"349 5th St, Los Angeles, CA 90001" -206803,Lightning Charging Cable,1,14.95,05/18/19 20:22,"433 14th St, Dallas, TX 75001" -206804,AA Batteries (4-pack),2,3.84,05/13/19 10:29,"772 5th St, San Francisco, CA 94016" -206805,Apple Airpods Headphones,1,150,05/25/19 23:38,"387 Cherry St, Los Angeles, CA 90001" -206806,Wired Headphones,1,11.99,05/09/19 08:56,"483 Jackson St, Atlanta, GA 30301" -206807,Lightning Charging Cable,1,14.95,05/27/19 22:39,"386 8th St, Los Angeles, CA 90001" -206808,Bose SoundSport Headphones,1,99.99,05/05/19 08:49,"677 Ridge St, Portland, OR 97035" -206809,Bose SoundSport Headphones,1,99.99,05/22/19 01:02,"307 Pine St, San Francisco, CA 94016" -206810,USB-C Charging Cable,1,11.95,05/12/19 09:26,"512 9th St, San Francisco, CA 94016" -206811,AAA Batteries (4-pack),1,2.99,05/16/19 07:23,"818 Meadow St, Los Angeles, CA 90001" -206812,AAA Batteries (4-pack),1,2.99,05/03/19 18:29,"624 Center St, San Francisco, CA 94016" -206813,Wired Headphones,1,11.99,05/22/19 11:42,"622 Lake St, Los Angeles, CA 90001" -206814,AA Batteries (4-pack),1,3.84,05/13/19 19:27,"821 North St, San Francisco, CA 94016" -206815,27in FHD Monitor,1,149.99,05/07/19 21:31,"812 12th St, Portland, OR 97035" -206816,27in 4K Gaming Monitor,1,389.99,05/21/19 10:30,"91 8th St, New York City, NY 10001" -206817,Wired Headphones,1,11.99,05/15/19 18:52,"193 Spruce St, Los Angeles, CA 90001" -206818,Google Phone,1,600,05/11/19 12:01,"100 Forest St, Dallas, TX 75001" -206819,AAA Batteries (4-pack),1,2.99,05/24/19 18:12,"61 West St, Seattle, WA 98101" -206820,Bose SoundSport Headphones,1,99.99,05/12/19 21:20,"666 Washington St, New York City, NY 10001" -206821,USB-C Charging Cable,1,11.95,05/30/19 17:26,"157 Wilson St, Austin, TX 73301" -206822,AAA Batteries (4-pack),2,2.99,05/25/19 11:30,"346 Washington St, San Francisco, CA 94016" -206823,AAA Batteries (4-pack),1,2.99,05/08/19 18:26,"126 Johnson St, Portland, OR 97035" -206824,27in 4K Gaming Monitor,1,389.99,05/07/19 16:57,"946 Lincoln St, Seattle, WA 98101" -206825,AA Batteries (4-pack),1,3.84,05/23/19 08:18,"296 Church St, San Francisco, CA 94016" -206826,AAA Batteries (4-pack),1,2.99,05/08/19 09:05,"777 Maple St, Portland, OR 97035" -206827,Wired Headphones,1,11.99,05/10/19 20:37,"18 Hickory St, Los Angeles, CA 90001" -206828,27in FHD Monitor,1,149.99,05/10/19 15:57,"602 South St, Boston, MA 02215" -206829,AA Batteries (4-pack),2,3.84,05/21/19 17:47,"991 Cedar St, San Francisco, CA 94016" -206830,AA Batteries (4-pack),1,3.84,05/22/19 21:46,"720 Washington St, San Francisco, CA 94016" -206831,Wired Headphones,1,11.99,05/12/19 13:03,"187 Elm St, New York City, NY 10001" -206832,27in 4K Gaming Monitor,1,389.99,05/24/19 12:43,"389 Center St, Austin, TX 73301" -206833,Lightning Charging Cable,1,14.95,05/26/19 12:28,"588 7th St, San Francisco, CA 94016" -206834,27in 4K Gaming Monitor,1,389.99,05/20/19 20:18,"726 9th St, Atlanta, GA 30301" -206835,Wired Headphones,1,11.99,05/10/19 13:12,"486 Jackson St, Boston, MA 02215" -206836,Macbook Pro Laptop,1,1700,05/20/19 18:08,"333 Jackson St, Dallas, TX 75001" -206837,20in Monitor,1,109.99,05/06/19 17:07,"650 Washington St, Los Angeles, CA 90001" -206838,USB-C Charging Cable,1,11.95,05/01/19 13:18,"557 Church St, Dallas, TX 75001" -206839,20in Monitor,1,109.99,05/13/19 21:41,"976 Highland St, Los Angeles, CA 90001" -206840,27in 4K Gaming Monitor,1,389.99,05/21/19 22:05,"114 Chestnut St, Los Angeles, CA 90001" -206841,AAA Batteries (4-pack),1,2.99,05/12/19 14:40,"35 Center St, Los Angeles, CA 90001" -206842,Bose SoundSport Headphones,1,99.99,05/15/19 21:29,"41 Lincoln St, New York City, NY 10001" -206843,Apple Airpods Headphones,1,150,05/26/19 14:32,"661 Cherry St, San Francisco, CA 94016" -206844,AA Batteries (4-pack),2,3.84,05/08/19 18:12,"652 West St, Dallas, TX 75001" -206845,AA Batteries (4-pack),1,3.84,05/04/19 12:17,"23 Meadow St, Portland, OR 97035" -206846,Bose SoundSport Headphones,1,99.99,05/29/19 03:37,"99 Jackson St, Los Angeles, CA 90001" -206847,27in 4K Gaming Monitor,1,389.99,05/28/19 15:06,"57 2nd St, Dallas, TX 75001" -206848,34in Ultrawide Monitor,1,379.99,05/27/19 14:38,"671 North St, San Francisco, CA 94016" -206849,Lightning Charging Cable,2,14.95,05/07/19 18:55,"713 9th St, San Francisco, CA 94016" -206850,Wired Headphones,1,11.99,05/09/19 21:49,"444 12th St, San Francisco, CA 94016" -206851,AAA Batteries (4-pack),3,2.99,05/14/19 08:17,"3 Madison St, San Francisco, CA 94016" -206852,USB-C Charging Cable,2,11.95,05/06/19 12:37,"98 Adams St, Atlanta, GA 30301" -206853,27in FHD Monitor,1,149.99,05/03/19 19:19,"756 5th St, San Francisco, CA 94016" -206854,USB-C Charging Cable,2,11.95,05/15/19 12:42,"906 Sunset St, Boston, MA 02215" -206855,USB-C Charging Cable,1,11.95,05/04/19 14:46,"921 Center St, Portland, OR 97035" -206856,27in FHD Monitor,1,149.99,05/02/19 10:29,"854 Cedar St, San Francisco, CA 94016" -206857,AA Batteries (4-pack),1,3.84,05/09/19 14:25,"334 12th St, Boston, MA 02215" -206858,Lightning Charging Cable,1,14.95,05/02/19 11:42,"447 River St, Seattle, WA 98101" -206859,AAA Batteries (4-pack),4,2.99,05/14/19 14:14,"810 Hill St, San Francisco, CA 94016" -206860,Lightning Charging Cable,1,14.95,05/04/19 19:35,"665 Willow St, Austin, TX 73301" -206861,Wired Headphones,1,11.99,05/16/19 12:32,"702 11th St, Los Angeles, CA 90001" -206862,USB-C Charging Cable,1,11.95,05/04/19 12:34,"854 Chestnut St, New York City, NY 10001" -206863,Lightning Charging Cable,1,14.95,05/04/19 17:17,"214 Chestnut St, New York City, NY 10001" -206864,Bose SoundSport Headphones,1,99.99,05/01/19 20:32,"871 5th St, Atlanta, GA 30301" -206865,34in Ultrawide Monitor,1,379.99,05/22/19 00:16,"612 Sunset St, Los Angeles, CA 90001" -206866,27in 4K Gaming Monitor,1,389.99,05/23/19 22:51,"240 13th St, Los Angeles, CA 90001" -206867,AAA Batteries (4-pack),2,2.99,05/05/19 18:53,"765 Hill St, San Francisco, CA 94016" -206868,Lightning Charging Cable,1,14.95,05/14/19 16:01,"828 Church St, Boston, MA 02215" -206869,Macbook Pro Laptop,1,1700,05/30/19 20:57,"62 Hickory St, Dallas, TX 75001" -206870,Apple Airpods Headphones,1,150,05/25/19 08:46,"310 Sunset St, Portland, OR 97035" -206871,AAA Batteries (4-pack),1,2.99,05/13/19 14:03,"689 11th St, Los Angeles, CA 90001" -206872,USB-C Charging Cable,1,11.95,05/22/19 17:49,"518 Park St, Seattle, WA 98101" -206873,AA Batteries (4-pack),2,3.84,05/12/19 12:11,"652 Highland St, San Francisco, CA 94016" -206874,Wired Headphones,1,11.99,05/01/19 10:36,"557 South St, San Francisco, CA 94016" -206875,Apple Airpods Headphones,1,150,05/06/19 16:51,"312 2nd St, New York City, NY 10001" -206876,27in FHD Monitor,1,149.99,05/30/19 17:55,"373 Jefferson St, Los Angeles, CA 90001" -206877,AAA Batteries (4-pack),1,2.99,05/15/19 05:26,"606 Walnut St, Dallas, TX 75001" -206878,Bose SoundSport Headphones,1,99.99,05/02/19 19:09,"965 North St, New York City, NY 10001" -206879,Wired Headphones,1,11.99,05/16/19 09:46,"137 Cedar St, New York City, NY 10001" -206880,AAA Batteries (4-pack),1,2.99,05/29/19 03:25,"254 Sunset St, San Francisco, CA 94016" -206881,Google Phone,1,600,05/19/19 10:27,"167 West St, San Francisco, CA 94016" -206882,34in Ultrawide Monitor,1,379.99,05/23/19 00:14,"418 Adams St, Seattle, WA 98101" -206883,Lightning Charging Cable,1,14.95,05/02/19 16:44,"467 Spruce St, Boston, MA 02215" -206884,27in 4K Gaming Monitor,1,389.99,05/28/19 20:54,"209 Willow St, Boston, MA 02215" -206885,AAA Batteries (4-pack),1,2.99,05/07/19 16:32,"378 Park St, Dallas, TX 75001" -206886,20in Monitor,1,109.99,05/22/19 18:12,"730 Pine St, San Francisco, CA 94016" -206887,Wired Headphones,1,11.99,05/15/19 14:42,"204 13th St, New York City, NY 10001" -206888,USB-C Charging Cable,2,11.95,05/24/19 11:26,"760 West St, San Francisco, CA 94016" -206889,Lightning Charging Cable,1,14.95,05/29/19 20:14,"291 Hill St, Dallas, TX 75001" -206890,Flatscreen TV,1,300,05/02/19 13:19,"287 7th St, San Francisco, CA 94016" -206891,USB-C Charging Cable,1,11.95,05/30/19 19:45,"134 10th St, Boston, MA 02215" -206892,Lightning Charging Cable,1,14.95,05/21/19 19:52,"699 Lincoln St, New York City, NY 10001" -206893,Bose SoundSport Headphones,1,99.99,05/03/19 11:32,"242 Walnut St, Seattle, WA 98101" -206894,AA Batteries (4-pack),1,3.84,05/24/19 12:25,"932 7th St, New York City, NY 10001" -206895,ThinkPad Laptop,1,999.99,05/03/19 07:44,"98 Cedar St, Dallas, TX 75001" -206896,Wired Headphones,1,11.99,05/28/19 09:00,"863 Meadow St, Dallas, TX 75001" -206897,Wired Headphones,2,11.99,05/26/19 14:32,"284 13th St, San Francisco, CA 94016" -206898,Bose SoundSport Headphones,1,99.99,05/13/19 09:40,"827 9th St, Seattle, WA 98101" -206899,Wired Headphones,1,11.99,05/19/19 20:59,"587 Dogwood St, San Francisco, CA 94016" -206900,AAA Batteries (4-pack),1,2.99,05/23/19 09:27,"297 13th St, Los Angeles, CA 90001" -206901,AAA Batteries (4-pack),1,2.99,05/31/19 09:41,"524 Forest St, Los Angeles, CA 90001" -206902,Apple Airpods Headphones,1,150,05/26/19 05:15,"976 Main St, Los Angeles, CA 90001" -206903,ThinkPad Laptop,1,999.99,05/09/19 10:11,"127 South St, Portland, ME 04101" -206904,AA Batteries (4-pack),1,3.84,05/14/19 02:57,"550 Spruce St, Atlanta, GA 30301" -206905,iPhone,1,700,05/02/19 13:54,"458 Lakeview St, New York City, NY 10001" -206906,AA Batteries (4-pack),1,3.84,05/18/19 19:42,"35 Washington St, San Francisco, CA 94016" -206907,AA Batteries (4-pack),1,3.84,05/02/19 21:02,"711 Jackson St, New York City, NY 10001" -206908,Apple Airpods Headphones,1,150,05/09/19 19:59,"567 Chestnut St, New York City, NY 10001" -206909,AAA Batteries (4-pack),1,2.99,05/19/19 18:20,"36 River St, Portland, OR 97035" -206910,Wired Headphones,1,11.99,05/10/19 12:39,"256 Highland St, Seattle, WA 98101" -206911,USB-C Charging Cable,2,11.95,05/17/19 12:17,"248 Johnson St, Los Angeles, CA 90001" -206912,AA Batteries (4-pack),1,3.84,05/12/19 13:46,"691 6th St, San Francisco, CA 94016" -206913,34in Ultrawide Monitor,1,379.99,05/23/19 14:27,"470 Ridge St, Boston, MA 02215" -206914,Bose SoundSport Headphones,1,99.99,05/29/19 20:54,"181 Ridge St, San Francisco, CA 94016" -206915,Bose SoundSport Headphones,1,99.99,05/07/19 09:16,"464 Johnson St, New York City, NY 10001" -206916,Macbook Pro Laptop,1,1700,05/26/19 11:31,"897 Chestnut St, San Francisco, CA 94016" -206917,AAA Batteries (4-pack),1,2.99,05/04/19 13:20,"122 Spruce St, San Francisco, CA 94016" -206918,Flatscreen TV,1,300,05/19/19 21:46,"963 Jefferson St, Los Angeles, CA 90001" -206919,Lightning Charging Cable,1,14.95,05/02/19 08:25,"350 Meadow St, Atlanta, GA 30301" -206920,LG Dryer,1,600.0,05/13/19 14:09,"124 4th St, Portland, ME 04101" -206921,Wired Headphones,1,11.99,05/18/19 13:36,"428 Chestnut St, New York City, NY 10001" -206922,27in 4K Gaming Monitor,1,389.99,05/22/19 15:49,"20 South St, New York City, NY 10001" -206923,USB-C Charging Cable,1,11.95,05/13/19 10:55,"732 Meadow St, Dallas, TX 75001" -206924,Lightning Charging Cable,2,14.95,05/04/19 01:31,"365 2nd St, Portland, OR 97035" -206925,USB-C Charging Cable,1,11.95,05/04/19 16:11,"445 7th St, Portland, OR 97035" -206926,20in Monitor,1,109.99,05/21/19 07:02,"225 Center St, San Francisco, CA 94016" -206927,USB-C Charging Cable,1,11.95,05/07/19 03:38,"672 Chestnut St, Boston, MA 02215" -206928,AAA Batteries (4-pack),2,2.99,05/29/19 17:55,"300 Park St, New York City, NY 10001" -206929,Lightning Charging Cable,1,14.95,05/21/19 18:45,"78 Park St, San Francisco, CA 94016" -206930,Wired Headphones,1,11.99,05/17/19 15:14,"255 Center St, Boston, MA 02215" -206931,Wired Headphones,2,11.99,05/22/19 10:55,"688 Washington St, Austin, TX 73301" -206932,Apple Airpods Headphones,1,150,05/16/19 15:59,"402 10th St, San Francisco, CA 94016" -206933,Apple Airpods Headphones,1,150,05/14/19 11:47,"146 Elm St, San Francisco, CA 94016" -,,,,, -206934,Flatscreen TV,1,300,05/10/19 12:44,"496 Walnut St, Boston, MA 02215" -206935,Macbook Pro Laptop,1,1700,05/04/19 12:16,"206 Meadow St, New York City, NY 10001" -206936,AA Batteries (4-pack),1,3.84,05/19/19 22:26,"986 11th St, Portland, ME 04101" -206937,AA Batteries (4-pack),1,3.84,05/22/19 07:00,"359 Church St, Portland, OR 97035" -206938,iPhone,1,700,05/24/19 18:10,"26 Chestnut St, San Francisco, CA 94016" -206938,Lightning Charging Cable,1,14.95,05/24/19 18:10,"26 Chestnut St, San Francisco, CA 94016" -206939,Wired Headphones,1,11.99,05/19/19 12:45,"333 South St, Dallas, TX 75001" -206940,AA Batteries (4-pack),1,3.84,05/01/19 11:20,"802 Chestnut St, Boston, MA 02215" -206941,Bose SoundSport Headphones,1,99.99,05/26/19 07:27,"894 Madison St, Seattle, WA 98101" -206942,AA Batteries (4-pack),1,3.84,05/08/19 22:45,"162 Elm St, Austin, TX 73301" -206943,AA Batteries (4-pack),2,3.84,05/15/19 21:30,"217 1st St, Dallas, TX 75001" -206944,USB-C Charging Cable,1,11.95,05/29/19 09:24,"220 Sunset St, Seattle, WA 98101" -206945,27in FHD Monitor,1,149.99,05/04/19 12:07,"298 Hickory St, Seattle, WA 98101" -206946,AAA Batteries (4-pack),1,2.99,05/02/19 21:54,"554 11th St, Seattle, WA 98101" -206947,Lightning Charging Cable,1,14.95,05/22/19 15:58,"653 Sunset St, Austin, TX 73301" -206948,USB-C Charging Cable,1,11.95,05/11/19 10:26,"381 Elm St, Dallas, TX 75001" -206949,Bose SoundSport Headphones,1,99.99,05/14/19 17:05,"319 Ridge St, San Francisco, CA 94016" -206950,USB-C Charging Cable,1,11.95,05/15/19 12:37,"17 Maple St, Los Angeles, CA 90001" -206951,Wired Headphones,1,11.99,05/09/19 19:07,"594 Chestnut St, Atlanta, GA 30301" -206952,AA Batteries (4-pack),2,3.84,05/12/19 09:10,"563 Sunset St, Austin, TX 73301" -206953,iPhone,1,700,05/30/19 13:50,"106 13th St, San Francisco, CA 94016" -206954,AAA Batteries (4-pack),1,2.99,05/11/19 13:27,"345 8th St, Dallas, TX 75001" -206955,AA Batteries (4-pack),1,3.84,05/18/19 23:11,"104 Dogwood St, Dallas, TX 75001" -206956,iPhone,1,700,05/29/19 20:22,"107 North St, San Francisco, CA 94016" -206956,Lightning Charging Cable,1,14.95,05/29/19 20:22,"107 North St, San Francisco, CA 94016" -206957,AA Batteries (4-pack),1,3.84,05/27/19 12:56,"996 Lake St, San Francisco, CA 94016" -206958,ThinkPad Laptop,1,999.99,05/08/19 19:47,"711 North St, San Francisco, CA 94016" -206959,Flatscreen TV,1,300,05/15/19 10:27,"897 Spruce St, Portland, ME 04101" -206960,Google Phone,1,600,05/06/19 12:45,"364 Wilson St, Los Angeles, CA 90001" -206961,AA Batteries (4-pack),1,3.84,05/31/19 14:54,"812 Spruce St, Boston, MA 02215" -206962,AA Batteries (4-pack),1,3.84,05/21/19 20:47,"925 Sunset St, San Francisco, CA 94016" -206963,Apple Airpods Headphones,1,150,05/02/19 20:43,"593 Forest St, New York City, NY 10001" -206964,AAA Batteries (4-pack),1,2.99,05/13/19 15:24,"941 North St, San Francisco, CA 94016" -206965,Lightning Charging Cable,1,14.95,05/07/19 22:27,"281 6th St, Seattle, WA 98101" -206966,Lightning Charging Cable,1,14.95,05/25/19 10:17,"25 Wilson St, Seattle, WA 98101" -206967,Wired Headphones,1,11.99,05/13/19 18:01,"570 2nd St, Boston, MA 02215" -206968,Macbook Pro Laptop,1,1700,05/03/19 16:14,"387 5th St, Dallas, TX 75001" -206969,USB-C Charging Cable,1,11.95,05/10/19 01:48,"690 Meadow St, New York City, NY 10001" -206970,Wired Headphones,1,11.99,05/26/19 12:04,"729 2nd St, New York City, NY 10001" -206971,Apple Airpods Headphones,1,150,05/20/19 20:15,"201 South St, New York City, NY 10001" -206972,Lightning Charging Cable,1,14.95,05/06/19 01:41,"635 Walnut St, Portland, OR 97035" -206972,Wired Headphones,1,11.99,05/06/19 01:41,"635 Walnut St, Portland, OR 97035" -206973,Apple Airpods Headphones,1,150,05/01/19 09:18,"435 2nd St, Boston, MA 02215" -206974,Macbook Pro Laptop,1,1700,05/06/19 09:55,"330 Lake St, San Francisco, CA 94016" -206975,Google Phone,1,600,05/26/19 21:18,"101 2nd St, Portland, ME 04101" -206976,AA Batteries (4-pack),1,3.84,05/07/19 13:32,"674 12th St, Boston, MA 02215" -206977,AA Batteries (4-pack),1,3.84,05/21/19 13:06,"367 North St, Dallas, TX 75001" -206978,USB-C Charging Cable,1,11.95,05/19/19 08:33,"736 5th St, New York City, NY 10001" -206979,Lightning Charging Cable,1,14.95,05/15/19 12:06,"359 Johnson St, Los Angeles, CA 90001" -206980,ThinkPad Laptop,1,999.99,05/31/19 22:48,"715 Hill St, Dallas, TX 75001" -206981,Macbook Pro Laptop,1,1700,05/01/19 20:43,"228 4th St, Atlanta, GA 30301" -206982,AA Batteries (4-pack),1,3.84,05/29/19 13:50,"255 6th St, Portland, OR 97035" -206983,Wired Headphones,1,11.99,05/07/19 17:22,"466 Lake St, Boston, MA 02215" -206984,Vareebadd Phone,1,400,05/09/19 12:59,"776 Ridge St, Austin, TX 73301" -206985,Macbook Pro Laptop,1,1700,05/12/19 21:16,"725 Hill St, Atlanta, GA 30301" -206986,AA Batteries (4-pack),2,3.84,05/29/19 17:17,"655 Cherry St, Portland, OR 97035" -206987,Macbook Pro Laptop,1,1700,05/26/19 01:12,"816 Adams St, Atlanta, GA 30301" -206988,AAA Batteries (4-pack),1,2.99,05/20/19 11:10,"678 7th St, Los Angeles, CA 90001" -206989,USB-C Charging Cable,1,11.95,05/17/19 18:52,"514 Lake St, San Francisco, CA 94016" -206990,Lightning Charging Cable,1,14.95,05/04/19 12:50,"811 Church St, New York City, NY 10001" -206991,Bose SoundSport Headphones,1,99.99,05/22/19 16:11,"624 Jefferson St, Los Angeles, CA 90001" -206992,Bose SoundSport Headphones,1,99.99,05/18/19 20:19,"389 Church St, Los Angeles, CA 90001" -206993,USB-C Charging Cable,1,11.95,05/17/19 06:59,"434 Forest St, San Francisco, CA 94016" -206994,Wired Headphones,1,11.99,05/10/19 17:56,"608 Washington St, Boston, MA 02215" -206995,iPhone,1,700,05/19/19 23:30,"640 Meadow St, New York City, NY 10001" -206996,Apple Airpods Headphones,1,150,05/21/19 19:50,"917 Ridge St, Boston, MA 02215" -206997,USB-C Charging Cable,1,11.95,05/20/19 16:24,"661 Jackson St, Seattle, WA 98101" -206998,Vareebadd Phone,1,400,05/20/19 17:24,"148 Park St, New York City, NY 10001" -206999,AAA Batteries (4-pack),2,2.99,05/12/19 15:24,"58 Pine St, New York City, NY 10001" -207000,Wired Headphones,1,11.99,05/30/19 21:16,"705 Willow St, New York City, NY 10001" -207001,20in Monitor,1,109.99,05/06/19 16:54,"633 Lake St, Portland, OR 97035" -207002,Apple Airpods Headphones,1,150,05/28/19 12:11,"264 Highland St, Dallas, TX 75001" -207003,USB-C Charging Cable,1,11.95,05/01/19 02:50,"422 Center St, Dallas, TX 75001" -207004,AAA Batteries (4-pack),2,2.99,05/24/19 20:36,"779 7th St, San Francisco, CA 94016" -207004,Wired Headphones,1,11.99,05/24/19 20:36,"779 7th St, San Francisco, CA 94016" -207005,AA Batteries (4-pack),1,3.84,05/25/19 08:38,"621 Madison St, Los Angeles, CA 90001" -207006,Apple Airpods Headphones,1,150,05/15/19 19:04,"502 Spruce St, San Francisco, CA 94016" -207007,34in Ultrawide Monitor,1,379.99,05/15/19 17:16,"766 South St, San Francisco, CA 94016" -207008,Macbook Pro Laptop,1,1700,05/19/19 07:35,"594 Adams St, Los Angeles, CA 90001" -207009,Lightning Charging Cable,1,14.95,05/13/19 19:09,"341 Elm St, Portland, OR 97035" -207010,AA Batteries (4-pack),2,3.84,05/11/19 21:43,"160 Walnut St, Dallas, TX 75001" -207011,Apple Airpods Headphones,1,150,05/10/19 21:56,"665 6th St, Portland, ME 04101" -207012,Apple Airpods Headphones,1,150,05/19/19 08:03,"350 13th St, San Francisco, CA 94016" -207013,Lightning Charging Cable,1,14.95,05/01/19 21:22,"907 Cedar St, New York City, NY 10001" -207014,Wired Headphones,1,11.99,05/29/19 22:40,"847 Main St, Los Angeles, CA 90001" -207015,Lightning Charging Cable,1,14.95,05/07/19 14:57,"544 Jefferson St, San Francisco, CA 94016" -207016,Bose SoundSport Headphones,1,99.99,05/09/19 14:01,"639 Cedar St, New York City, NY 10001" -207017,Bose SoundSport Headphones,2,99.99,05/12/19 19:03,"984 Hickory St, Dallas, TX 75001" -207018,iPhone,1,700,05/15/19 09:24,"974 Adams St, Portland, OR 97035" -207019,AA Batteries (4-pack),1,3.84,05/01/19 20:24,"871 2nd St, Los Angeles, CA 90001" -207020,USB-C Charging Cable,1,11.95,05/27/19 10:05,"392 Jackson St, Seattle, WA 98101" -207021,Bose SoundSport Headphones,1,99.99,05/18/19 12:34,"685 Lincoln St, New York City, NY 10001" -207022,27in FHD Monitor,1,149.99,05/24/19 10:06,"427 Park St, Portland, ME 04101" -207023,Wired Headphones,1,11.99,05/22/19 12:04,"245 West St, Los Angeles, CA 90001" -207024,Vareebadd Phone,1,400,05/24/19 14:33,"65 Park St, Portland, OR 97035" -207025,Bose SoundSport Headphones,1,99.99,05/17/19 13:38,"253 Dogwood St, New York City, NY 10001" -207026,Apple Airpods Headphones,1,150,05/25/19 16:18,"811 Hill St, New York City, NY 10001" -207027,Wired Headphones,2,11.99,05/27/19 13:32,"318 9th St, San Francisco, CA 94016" -207028,Wired Headphones,1,11.99,05/10/19 21:49,"211 North St, Boston, MA 02215" -207029,AAA Batteries (4-pack),3,2.99,05/10/19 19:30,"352 10th St, New York City, NY 10001" -207030,27in FHD Monitor,1,149.99,05/29/19 17:05,"608 Spruce St, Seattle, WA 98101" -207031,Wired Headphones,1,11.99,05/21/19 18:48,"430 Meadow St, San Francisco, CA 94016" -207032,Lightning Charging Cable,1,14.95,05/24/19 12:42,"810 Lincoln St, San Francisco, CA 94016" -207033,iPhone,1,700,05/08/19 12:09,"116 Johnson St, Los Angeles, CA 90001" -207034,USB-C Charging Cable,1,11.95,05/13/19 18:11,"690 Hill St, New York City, NY 10001" -207035,27in FHD Monitor,1,149.99,05/27/19 19:59,"713 Hill St, Boston, MA 02215" -207036,AAA Batteries (4-pack),2,2.99,05/23/19 14:47,"958 Jackson St, New York City, NY 10001" -207037,Wired Headphones,1,11.99,05/15/19 12:56,"222 5th St, Boston, MA 02215" -207038,USB-C Charging Cable,1,11.95,05/25/19 11:25,"212 Meadow St, San Francisco, CA 94016" -207039,Apple Airpods Headphones,1,150,05/13/19 11:46,"721 Chestnut St, Seattle, WA 98101" -207040,Lightning Charging Cable,1,14.95,05/27/19 07:38,"775 Spruce St, Seattle, WA 98101" -207041,Lightning Charging Cable,1,14.95,05/22/19 18:09,"835 4th St, Atlanta, GA 30301" -207042,USB-C Charging Cable,1,11.95,05/31/19 00:59,"74 Walnut St, New York City, NY 10001" -207043,Lightning Charging Cable,1,14.95,05/30/19 13:24,"377 Dogwood St, San Francisco, CA 94016" -207044,Bose SoundSport Headphones,1,99.99,05/02/19 14:04,"414 1st St, Austin, TX 73301" -207045,27in FHD Monitor,1,149.99,05/20/19 23:49,"679 1st St, Los Angeles, CA 90001" -207046,USB-C Charging Cable,1,11.95,05/26/19 17:28,"640 14th St, New York City, NY 10001" -207047,USB-C Charging Cable,1,11.95,05/01/19 17:20,"942 West St, Boston, MA 02215" -207048,Wired Headphones,2,11.99,05/27/19 17:16,"161 Maple St, Seattle, WA 98101" -207049,Lightning Charging Cable,2,14.95,05/25/19 02:22,"314 Johnson St, New York City, NY 10001" -207050,Lightning Charging Cable,1,14.95,05/30/19 20:03,"605 12th St, Portland, OR 97035" -207051,USB-C Charging Cable,1,11.95,05/10/19 12:21,"778 Maple St, Seattle, WA 98101" -207052,Flatscreen TV,1,300,05/03/19 05:46,"880 Meadow St, New York City, NY 10001" -207053,AA Batteries (4-pack),1,3.84,05/20/19 23:36,"836 Spruce St, San Francisco, CA 94016" -207054,Lightning Charging Cable,1,14.95,05/30/19 04:35,"160 5th St, Dallas, TX 75001" -207055,Bose SoundSport Headphones,1,99.99,05/19/19 12:53,"476 Meadow St, Portland, ME 04101" -207056,AAA Batteries (4-pack),1,2.99,05/20/19 09:01,"48 Chestnut St, Los Angeles, CA 90001" -207057,AA Batteries (4-pack),1,3.84,05/11/19 10:04,"950 Washington St, Portland, OR 97035" -207058,Bose SoundSport Headphones,1,99.99,05/11/19 05:42,"550 7th St, San Francisco, CA 94016" -207059,27in FHD Monitor,1,149.99,05/07/19 06:08,"948 2nd St, Los Angeles, CA 90001" -207060,Wired Headphones,1,11.99,05/12/19 11:18,"913 Cherry St, San Francisco, CA 94016" -207061,27in FHD Monitor,1,149.99,05/09/19 12:39,"653 Park St, Seattle, WA 98101" -207062,Lightning Charging Cable,1,14.95,05/26/19 15:23,"286 Elm St, Austin, TX 73301" -207063,Lightning Charging Cable,1,14.95,05/05/19 18:04,"115 Johnson St, Dallas, TX 75001" -207064,34in Ultrawide Monitor,1,379.99,05/06/19 07:28,"72 4th St, Dallas, TX 75001" -207065,Apple Airpods Headphones,1,150,05/15/19 12:31,"974 Lakeview St, Boston, MA 02215" -207065,Google Phone,1,600,05/15/19 12:31,"974 Lakeview St, Boston, MA 02215" -207066,Flatscreen TV,1,300,05/24/19 00:41,"58 Elm St, Los Angeles, CA 90001" -207067,34in Ultrawide Monitor,1,379.99,05/06/19 11:31,"431 Washington St, Atlanta, GA 30301" -207068,27in 4K Gaming Monitor,1,389.99,05/30/19 17:43,"776 Hill St, Atlanta, GA 30301" -207069,AA Batteries (4-pack),1,3.84,05/17/19 16:17,"750 8th St, Atlanta, GA 30301" -207070,iPhone,1,700,05/09/19 20:31,"616 Elm St, Los Angeles, CA 90001" -207071,Lightning Charging Cable,1,14.95,05/24/19 17:01,"624 Center St, Portland, OR 97035" -207072,Lightning Charging Cable,1,14.95,05/11/19 23:16,"554 Ridge St, San Francisco, CA 94016" -207073,Lightning Charging Cable,1,14.95,05/06/19 22:10,"135 8th St, San Francisco, CA 94016" -207074,AAA Batteries (4-pack),1,2.99,05/07/19 16:21,"78 Wilson St, Austin, TX 73301" -207075,27in 4K Gaming Monitor,1,389.99,05/27/19 16:00,"463 Center St, Austin, TX 73301" -207076,ThinkPad Laptop,1,999.99,05/10/19 14:04,"678 Lincoln St, New York City, NY 10001" -207077,AAA Batteries (4-pack),1,2.99,05/14/19 20:42,"235 Dogwood St, Los Angeles, CA 90001" -207078,Lightning Charging Cable,1,14.95,05/07/19 17:05,"782 Adams St, New York City, NY 10001" -207079,Lightning Charging Cable,1,14.95,05/22/19 19:50,"223 Willow St, Portland, OR 97035" -207080,AA Batteries (4-pack),1,3.84,05/12/19 20:13,"538 12th St, Boston, MA 02215" -207081,iPhone,1,700,05/13/19 01:38,"891 4th St, San Francisco, CA 94016" -207082,Bose SoundSport Headphones,1,99.99,05/08/19 13:32,"331 Main St, Portland, OR 97035" -207083,34in Ultrawide Monitor,1,379.99,05/20/19 09:28,"746 Highland St, Boston, MA 02215" -207084,iPhone,1,700,05/29/19 19:28,"885 West St, New York City, NY 10001" -207085,Apple Airpods Headphones,1,150,05/23/19 13:41,"184 1st St, New York City, NY 10001" -207086,AA Batteries (4-pack),1,3.84,05/18/19 18:24,"588 12th St, Atlanta, GA 30301" -207087,USB-C Charging Cable,1,11.95,05/23/19 13:04,"150 1st St, Boston, MA 02215" -207088,Apple Airpods Headphones,1,150,05/17/19 10:24,"755 6th St, New York City, NY 10001" -207089,Lightning Charging Cable,1,14.95,05/24/19 08:34,"86 Church St, New York City, NY 10001" -207090,AA Batteries (4-pack),1,3.84,05/28/19 12:48,"20 Hill St, San Francisco, CA 94016" -207091,AAA Batteries (4-pack),3,2.99,05/27/19 12:44,"969 Adams St, San Francisco, CA 94016" -207092,AAA Batteries (4-pack),1,2.99,05/19/19 21:07,"913 6th St, Atlanta, GA 30301" -207093,Wired Headphones,1,11.99,05/12/19 20:25,"561 River St, San Francisco, CA 94016" -207094,AAA Batteries (4-pack),1,2.99,05/08/19 09:16,"45 11th St, Boston, MA 02215" -207095,iPhone,1,700,05/20/19 21:31,"175 Cedar St, Seattle, WA 98101" -207096,AAA Batteries (4-pack),1,2.99,05/03/19 18:27,"197 Willow St, San Francisco, CA 94016" -207097,iPhone,1,700,05/13/19 20:11,"215 South St, Seattle, WA 98101" -207098,AAA Batteries (4-pack),2,2.99,05/07/19 21:59,"597 11th St, New York City, NY 10001" -207099,AA Batteries (4-pack),1,3.84,05/29/19 14:32,"384 Lakeview St, Los Angeles, CA 90001" -207099,Apple Airpods Headphones,1,150,05/29/19 14:32,"384 Lakeview St, Los Angeles, CA 90001" -207100,34in Ultrawide Monitor,1,379.99,05/05/19 16:40,"440 6th St, New York City, NY 10001" -207101,Wired Headphones,1,11.99,05/16/19 07:03,"955 Madison St, Atlanta, GA 30301" -207102,AA Batteries (4-pack),1,3.84,05/09/19 09:11,"903 Sunset St, New York City, NY 10001" -207103,AAA Batteries (4-pack),2,2.99,05/08/19 20:46,"328 Church St, Los Angeles, CA 90001" -207104,Apple Airpods Headphones,1,150,05/04/19 09:10,"229 Center St, New York City, NY 10001" -207105,Bose SoundSport Headphones,1,99.99,05/24/19 12:00,"308 Jackson St, Los Angeles, CA 90001" -207106,34in Ultrawide Monitor,1,379.99,05/07/19 10:33,"519 Cherry St, Dallas, TX 75001" -207107,USB-C Charging Cable,1,11.95,05/06/19 21:18,"627 7th St, Dallas, TX 75001" -207108,Apple Airpods Headphones,1,150,05/01/19 21:02,"252 7th St, Boston, MA 02215" -207109,Wired Headphones,1,11.99,05/17/19 00:08,"165 Cedar St, Los Angeles, CA 90001" -207110,Apple Airpods Headphones,1,150,05/07/19 19:52,"957 12th St, Austin, TX 73301" -207111,34in Ultrawide Monitor,1,379.99,05/09/19 17:35,"11 10th St, Atlanta, GA 30301" -207112,Bose SoundSport Headphones,1,99.99,05/24/19 22:51,"915 Dogwood St, Los Angeles, CA 90001" -207113,AAA Batteries (4-pack),2,2.99,05/16/19 19:04,"301 Elm St, Los Angeles, CA 90001" -207114,AAA Batteries (4-pack),1,2.99,05/28/19 12:20,"166 Jefferson St, San Francisco, CA 94016" -207115,Lightning Charging Cable,1,14.95,05/12/19 10:15,"717 Lincoln St, Los Angeles, CA 90001" -207116,Bose SoundSport Headphones,1,99.99,05/02/19 11:26,"192 Lincoln St, San Francisco, CA 94016" -207117,Apple Airpods Headphones,1,150,05/17/19 14:14,"963 Cherry St, Atlanta, GA 30301" -207118,AAA Batteries (4-pack),1,2.99,05/04/19 09:03,"964 Sunset St, Los Angeles, CA 90001" -207119,AA Batteries (4-pack),2,3.84,05/11/19 10:37,"414 1st St, New York City, NY 10001" -207120,USB-C Charging Cable,1,11.95,05/21/19 21:16,"179 Pine St, Seattle, WA 98101" -207121,AAA Batteries (4-pack),1,2.99,05/29/19 10:39,"761 North St, San Francisco, CA 94016" -207122,Macbook Pro Laptop,1,1700,05/22/19 14:31,"301 7th St, San Francisco, CA 94016" -207123,Wired Headphones,1,11.99,05/01/19 10:10,"482 Wilson St, New York City, NY 10001" -207124,iPhone,1,700,05/26/19 16:36,"255 Maple St, Atlanta, GA 30301" -207125,Bose SoundSport Headphones,1,99.99,05/09/19 21:00,"563 Pine St, Los Angeles, CA 90001" -207126,27in 4K Gaming Monitor,1,389.99,05/13/19 13:16,"273 Lake St, Seattle, WA 98101" -207127,AAA Batteries (4-pack),2,2.99,05/14/19 04:50,"347 9th St, Boston, MA 02215" -207128,Bose SoundSport Headphones,1,99.99,05/02/19 09:59,"909 Johnson St, Los Angeles, CA 90001" -207129,Google Phone,1,600,05/23/19 16:52,"799 South St, Boston, MA 02215" -207130,Bose SoundSport Headphones,1,99.99,05/25/19 13:45,"250 Walnut St, Boston, MA 02215" -207131,Apple Airpods Headphones,1,150,05/17/19 04:42,"282 14th St, San Francisco, CA 94016" -207132,Lightning Charging Cable,1,14.95,05/27/19 08:43,"677 Center St, San Francisco, CA 94016" -207133,AAA Batteries (4-pack),1,2.99,05/12/19 22:55,"210 13th St, Seattle, WA 98101" -207134,Wired Headphones,1,11.99,05/28/19 11:34,"324 Jefferson St, Boston, MA 02215" -207135,Apple Airpods Headphones,1,150,05/24/19 20:01,"598 Adams St, Los Angeles, CA 90001" -207136,iPhone,1,700,05/29/19 20:30,"298 Highland St, Los Angeles, CA 90001" -207136,Lightning Charging Cable,1,14.95,05/29/19 20:30,"298 Highland St, Los Angeles, CA 90001" -207137,Wired Headphones,1,11.99,05/22/19 15:12,"532 Johnson St, San Francisco, CA 94016" -207138,USB-C Charging Cable,1,11.95,05/27/19 21:20,"713 Church St, Los Angeles, CA 90001" -207139,27in FHD Monitor,1,149.99,05/14/19 18:41,"357 Park St, Seattle, WA 98101" -207140,iPhone,1,700,05/19/19 11:29,"784 Lake St, San Francisco, CA 94016" -207141,LG Dryer,1,600.0,05/27/19 19:03,"800 River St, Seattle, WA 98101" -207142,Flatscreen TV,1,300,05/14/19 19:46,"842 1st St, Dallas, TX 75001" -207143,USB-C Charging Cable,1,11.95,05/27/19 18:42,"852 Park St, New York City, NY 10001" -207144,AAA Batteries (4-pack),2,2.99,05/17/19 08:59,"88 7th St, Austin, TX 73301" -207145,Lightning Charging Cable,1,14.95,05/02/19 18:24,"624 Johnson St, San Francisco, CA 94016" -207146,Lightning Charging Cable,1,14.95,05/14/19 16:01,"880 Highland St, San Francisco, CA 94016" -207147,Wired Headphones,1,11.99,05/17/19 18:24,"39 Washington St, Portland, ME 04101" -207148,20in Monitor,1,109.99,05/02/19 11:30,"600 Adams St, Dallas, TX 75001" -207149,USB-C Charging Cable,1,11.95,05/10/19 13:22,"895 Lakeview St, Seattle, WA 98101" -207150,AAA Batteries (4-pack),2,2.99,05/21/19 19:42,"191 South St, Portland, OR 97035" -207151,20in Monitor,1,109.99,05/07/19 19:22,"122 Willow St, Dallas, TX 75001" -207152,Wired Headphones,1,11.99,05/19/19 18:14,"248 Adams St, San Francisco, CA 94016" -207153,Google Phone,1,600,05/11/19 21:12,"881 Washington St, New York City, NY 10001" -207154,Macbook Pro Laptop,1,1700,05/18/19 14:40,"159 13th St, Dallas, TX 75001" -207155,Lightning Charging Cable,1,14.95,05/22/19 20:57,"711 Adams St, Boston, MA 02215" -207156,Wired Headphones,2,11.99,05/11/19 23:26,"699 River St, Los Angeles, CA 90001" -207157,27in 4K Gaming Monitor,1,389.99,05/21/19 18:48,"658 Park St, Dallas, TX 75001" -207158,USB-C Charging Cable,1,11.95,05/16/19 07:20,"377 Washington St, New York City, NY 10001" -207159,AAA Batteries (4-pack),1,2.99,05/17/19 10:49,"929 13th St, Portland, ME 04101" -207160,AA Batteries (4-pack),4,3.84,05/02/19 23:15,"565 9th St, New York City, NY 10001" -207161,20in Monitor,1,109.99,05/03/19 20:33,"404 Johnson St, San Francisco, CA 94016" -207162,Lightning Charging Cable,1,14.95,05/10/19 08:32,"997 7th St, Portland, OR 97035" -207163,USB-C Charging Cable,1,11.95,05/20/19 11:45,"622 Main St, San Francisco, CA 94016" -207164,Bose SoundSport Headphones,1,99.99,05/09/19 18:36,"496 Chestnut St, San Francisco, CA 94016" -207165,Apple Airpods Headphones,1,150,05/14/19 00:02,"763 Pine St, San Francisco, CA 94016" -207166,Apple Airpods Headphones,1,150,05/11/19 20:26,"674 Pine St, San Francisco, CA 94016" -207167,27in FHD Monitor,1,149.99,05/22/19 21:13,"78 West St, Seattle, WA 98101" -207168,27in 4K Gaming Monitor,1,389.99,05/12/19 23:08,"664 Walnut St, Boston, MA 02215" -207169,AA Batteries (4-pack),1,3.84,05/10/19 10:50,"199 Maple St, Boston, MA 02215" -207170,AA Batteries (4-pack),2,3.84,05/08/19 22:02,"76 11th St, Seattle, WA 98101" -207171,27in 4K Gaming Monitor,1,389.99,05/29/19 22:56,"670 Hill St, Los Angeles, CA 90001" -207172,Wired Headphones,1,11.99,05/19/19 15:13,"31 Hill St, Los Angeles, CA 90001" -207173,AA Batteries (4-pack),1,3.84,05/04/19 13:48,"984 2nd St, Austin, TX 73301" -207174,34in Ultrawide Monitor,1,379.99,05/27/19 16:21,"405 7th St, Portland, OR 97035" -207175,AA Batteries (4-pack),1,3.84,05/24/19 21:58,"491 7th St, San Francisco, CA 94016" -207176,Vareebadd Phone,1,400,05/17/19 04:52,"237 4th St, San Francisco, CA 94016" -207176,USB-C Charging Cable,1,11.95,05/17/19 04:52,"237 4th St, San Francisco, CA 94016" -207177,AA Batteries (4-pack),1,3.84,05/26/19 03:32,"829 Elm St, San Francisco, CA 94016" -207178,Wired Headphones,1,11.99,05/20/19 17:02,"771 Park St, San Francisco, CA 94016" -207179,USB-C Charging Cable,1,11.95,05/14/19 12:21,"53 13th St, Austin, TX 73301" -207180,USB-C Charging Cable,1,11.95,05/26/19 19:35,"101 Walnut St, New York City, NY 10001" -207181,Lightning Charging Cable,1,14.95,05/27/19 10:52,"364 6th St, Dallas, TX 75001" -207182,Bose SoundSport Headphones,1,99.99,05/02/19 20:17,"501 Forest St, San Francisco, CA 94016" -207183,Lightning Charging Cable,1,14.95,05/13/19 17:45,"348 Elm St, Seattle, WA 98101" -207184,27in FHD Monitor,1,149.99,05/29/19 17:15,"383 6th St, New York City, NY 10001" -207185,AAA Batteries (4-pack),1,2.99,05/06/19 18:46,"183 Adams St, Seattle, WA 98101" -207186,Wired Headphones,1,11.99,05/27/19 03:06,"207 Center St, Austin, TX 73301" -207187,AAA Batteries (4-pack),1,2.99,05/04/19 20:35,"206 11th St, Dallas, TX 75001" -207188,20in Monitor,1,109.99,05/27/19 05:31,"379 7th St, Los Angeles, CA 90001" -207189,34in Ultrawide Monitor,1,379.99,05/15/19 16:12,"906 Dogwood St, Boston, MA 02215" -207190,Google Phone,1,600,05/16/19 20:45,"999 Sunset St, Los Angeles, CA 90001" -207191,20in Monitor,1,109.99,05/10/19 08:08,"979 Wilson St, San Francisco, CA 94016" -207192,Bose SoundSport Headphones,1,99.99,05/06/19 10:08,"95 12th St, San Francisco, CA 94016" -207193,Wired Headphones,1,11.99,05/22/19 02:21,"377 7th St, Boston, MA 02215" -207194,Bose SoundSport Headphones,1,99.99,05/16/19 18:08,"718 13th St, Seattle, WA 98101" -207195,Google Phone,1,600,05/26/19 01:04,"712 4th St, Boston, MA 02215" -207196,AAA Batteries (4-pack),1,2.99,05/05/19 13:55,"764 Washington St, Portland, OR 97035" -207197,Flatscreen TV,1,300,05/23/19 09:23,"107 Cedar St, Los Angeles, CA 90001" -207198,USB-C Charging Cable,1,11.95,05/13/19 19:54,"545 Willow St, Seattle, WA 98101" -207199,Apple Airpods Headphones,1,150,05/26/19 09:30,"681 Spruce St, Austin, TX 73301" -207200,Lightning Charging Cable,1,14.95,05/13/19 14:30,"643 Lake St, Dallas, TX 75001" -207201,AA Batteries (4-pack),5,3.84,05/07/19 13:10,"433 9th St, Portland, OR 97035" -207202,Wired Headphones,1,11.99,05/10/19 11:31,"913 13th St, San Francisco, CA 94016" -207203,27in FHD Monitor,1,149.99,05/01/19 15:03,"124 4th St, Atlanta, GA 30301" -207204,USB-C Charging Cable,1,11.95,05/06/19 19:22,"8 4th St, Los Angeles, CA 90001" -207205,AA Batteries (4-pack),1,3.84,05/09/19 21:06,"20 Jackson St, Los Angeles, CA 90001" -207206,Lightning Charging Cable,1,14.95,05/01/19 16:12,"965 Ridge St, San Francisco, CA 94016" -207207,Lightning Charging Cable,1,14.95,05/05/19 21:07,"642 13th St, Portland, OR 97035" -207208,Wired Headphones,1,11.99,05/11/19 22:04,"964 9th St, Seattle, WA 98101" -207209,Macbook Pro Laptop,1,1700,05/15/19 17:13,"755 Jefferson St, Los Angeles, CA 90001" -207210,20in Monitor,1,109.99,05/24/19 19:35,"122 11th St, Austin, TX 73301" -207211,AA Batteries (4-pack),2,3.84,05/07/19 13:09,"613 7th St, San Francisco, CA 94016" -207212,AA Batteries (4-pack),1,3.84,05/12/19 09:20,"443 7th St, New York City, NY 10001" -207213,Bose SoundSport Headphones,1,99.99,05/19/19 05:47,"167 Cedar St, Seattle, WA 98101" -207214,iPhone,1,700,05/27/19 06:00,"691 Pine St, San Francisco, CA 94016" -207215,AAA Batteries (4-pack),1,2.99,05/16/19 21:57,"430 Willow St, Atlanta, GA 30301" -207216,USB-C Charging Cable,1,11.95,05/17/19 12:59,"918 Madison St, Portland, OR 97035" -207217,Wired Headphones,1,11.99,05/13/19 16:13,"750 Forest St, Dallas, TX 75001" -207218,Wired Headphones,1,11.99,05/16/19 14:00,"639 Pine St, San Francisco, CA 94016" -207219,Wired Headphones,2,11.99,05/09/19 20:15,"62 Park St, Boston, MA 02215" -207220,AAA Batteries (4-pack),1,2.99,05/01/19 08:03,"973 Lincoln St, San Francisco, CA 94016" -207221,iPhone,1,700,05/15/19 18:52,"600 1st St, San Francisco, CA 94016" -207222,AAA Batteries (4-pack),1,2.99,05/18/19 17:29,"274 9th St, Seattle, WA 98101" -207223,27in FHD Monitor,1,149.99,05/12/19 18:20,"800 4th St, Austin, TX 73301" -207224,AA Batteries (4-pack),1,3.84,05/22/19 12:17,"883 Willow St, Dallas, TX 75001" -207225,Lightning Charging Cable,1,14.95,05/11/19 17:58,"426 Lake St, San Francisco, CA 94016" -207226,Lightning Charging Cable,1,14.95,05/27/19 20:37,"761 10th St, Dallas, TX 75001" -207227,27in 4K Gaming Monitor,1,389.99,05/08/19 19:29,"46 Church St, Boston, MA 02215" -207228,USB-C Charging Cable,1,11.95,05/13/19 10:41,"10 Johnson St, Dallas, TX 75001" -207229,27in 4K Gaming Monitor,1,389.99,05/01/19 21:55,"887 Wilson St, New York City, NY 10001" -207230,27in 4K Gaming Monitor,1,389.99,05/02/19 12:50,"944 Lakeview St, Atlanta, GA 30301" -207231,USB-C Charging Cable,1,11.95,05/27/19 00:12,"722 Cedar St, Seattle, WA 98101" -207232,Google Phone,1,600,05/03/19 12:46,"183 Center St, Portland, OR 97035" -207232,USB-C Charging Cable,1,11.95,05/03/19 12:46,"183 Center St, Portland, OR 97035" -207233,Google Phone,1,600,05/11/19 14:23,"360 Ridge St, San Francisco, CA 94016" -207233,USB-C Charging Cable,2,11.95,05/11/19 14:23,"360 Ridge St, San Francisco, CA 94016" -207234,USB-C Charging Cable,2,11.95,05/15/19 15:06,"53 Hickory St, Seattle, WA 98101" -207235,AA Batteries (4-pack),4,3.84,05/31/19 12:55,"997 Lake St, Portland, ME 04101" -,,,,, -207236,Lightning Charging Cable,1,14.95,05/11/19 14:01,"464 10th St, New York City, NY 10001" -207237,Wired Headphones,1,11.99,05/25/19 10:52,"201 Wilson St, Los Angeles, CA 90001" -207238,AAA Batteries (4-pack),1,2.99,05/25/19 17:24,"38 River St, New York City, NY 10001" -207239,Wired Headphones,1,11.99,05/01/19 23:20,"943 Lincoln St, Los Angeles, CA 90001" -207240,Lightning Charging Cable,1,14.95,05/26/19 11:53,"151 9th St, Dallas, TX 75001" -207241,Apple Airpods Headphones,1,150,05/13/19 12:12,"134 Spruce St, Dallas, TX 75001" -207242,AA Batteries (4-pack),2,3.84,05/23/19 09:25,"329 10th St, New York City, NY 10001" -207243,AAA Batteries (4-pack),1,2.99,05/29/19 08:38,"57 Maple St, Boston, MA 02215" -207244,Wired Headphones,1,11.99,05/22/19 12:13,"741 Ridge St, Dallas, TX 75001" -207245,iPhone,1,700,05/24/19 21:11,"582 Lake St, Boston, MA 02215" -207246,34in Ultrawide Monitor,1,379.99,05/10/19 11:03,"749 Lincoln St, Boston, MA 02215" -207247,USB-C Charging Cable,1,11.95,05/19/19 18:41,"549 Cherry St, Atlanta, GA 30301" -207248,Lightning Charging Cable,1,14.95,05/06/19 10:29,"682 Park St, San Francisco, CA 94016" -207249,20in Monitor,1,109.99,05/14/19 11:40,"326 Hill St, Boston, MA 02215" -207250,AA Batteries (4-pack),1,3.84,05/12/19 12:06,"36 Maple St, San Francisco, CA 94016" -207251,Lightning Charging Cable,1,14.95,05/29/19 07:48,"886 9th St, Boston, MA 02215" -207252,Lightning Charging Cable,1,14.95,05/03/19 18:32,"257 Cedar St, Boston, MA 02215" -207253,Macbook Pro Laptop,1,1700,05/04/19 14:52,"555 South St, Portland, OR 97035" -207254,Apple Airpods Headphones,1,150,05/21/19 11:27,"493 Maple St, Seattle, WA 98101" -207255,27in 4K Gaming Monitor,1,389.99,05/31/19 16:16,"288 Lake St, Boston, MA 02215" -207256,AA Batteries (4-pack),2,3.84,05/18/19 19:57,"510 Lake St, Atlanta, GA 30301" -207257,Lightning Charging Cable,1,14.95,05/09/19 19:10,"976 Johnson St, New York City, NY 10001" -207258,Apple Airpods Headphones,1,150,05/29/19 06:04,"156 Chestnut St, Dallas, TX 75001" -207259,Flatscreen TV,1,300,05/31/19 09:07,"38 7th St, Los Angeles, CA 90001" -207260,34in Ultrawide Monitor,1,379.99,05/14/19 22:10,"238 Adams St, Boston, MA 02215" -207261,Apple Airpods Headphones,1,150,05/13/19 00:07,"841 Dogwood St, San Francisco, CA 94016" -207262,27in 4K Gaming Monitor,1,389.99,05/11/19 21:33,"68 Chestnut St, Boston, MA 02215" -207263,AA Batteries (4-pack),1,3.84,05/26/19 14:46,"431 Hill St, Portland, ME 04101" -207264,AAA Batteries (4-pack),1,2.99,05/09/19 21:13,"431 9th St, Boston, MA 02215" -207265,AAA Batteries (4-pack),1,2.99,05/24/19 14:46,"767 13th St, Austin, TX 73301" -207266,Bose SoundSport Headphones,1,99.99,05/04/19 00:22,"142 8th St, New York City, NY 10001" -207267,AAA Batteries (4-pack),2,2.99,05/22/19 12:10,"917 Maple St, Seattle, WA 98101" -207268,27in FHD Monitor,1,149.99,05/15/19 11:21,"714 11th St, San Francisco, CA 94016" -207269,Lightning Charging Cable,1,14.95,05/17/19 10:19,"29 Adams St, Atlanta, GA 30301" -207270,iPhone,1,700,05/05/19 18:48,"925 12th St, San Francisco, CA 94016" -207270,Lightning Charging Cable,1,14.95,05/05/19 18:48,"925 12th St, San Francisco, CA 94016" -207271,USB-C Charging Cable,1,11.95,05/07/19 21:37,"288 4th St, Atlanta, GA 30301" -207272,USB-C Charging Cable,1,11.95,05/18/19 18:28,"881 Jefferson St, Dallas, TX 75001" -207273,iPhone,1,700,05/12/19 20:01,"192 Elm St, Austin, TX 73301" -207274,Google Phone,1,600,05/24/19 12:03,"524 Center St, Boston, MA 02215" -207275,Macbook Pro Laptop,1,1700,05/08/19 09:15,"92 Lake St, Portland, OR 97035" -207276,Lightning Charging Cable,1,14.95,05/09/19 12:04,"906 Highland St, San Francisco, CA 94016" -207277,Macbook Pro Laptop,1,1700,05/19/19 23:16,"630 Lakeview St, Austin, TX 73301" -207278,USB-C Charging Cable,1,11.95,05/05/19 23:38,"409 7th St, Los Angeles, CA 90001" -207279,iPhone,1,700,05/07/19 01:31,"576 10th St, San Francisco, CA 94016" -207280,USB-C Charging Cable,2,11.95,05/03/19 00:14,"165 Walnut St, San Francisco, CA 94016" -207281,iPhone,1,700,05/06/19 12:45,"634 Meadow St, Los Angeles, CA 90001" -207282,Lightning Charging Cable,1,14.95,05/27/19 16:53,"467 River St, San Francisco, CA 94016" -207283,Google Phone,1,600,05/29/19 11:31,"717 Cherry St, Portland, OR 97035" -207284,20in Monitor,1,109.99,05/03/19 14:45,"419 14th St, Los Angeles, CA 90001" -207285,USB-C Charging Cable,1,11.95,05/26/19 19:39,"786 7th St, New York City, NY 10001" -207286,Apple Airpods Headphones,1,150,05/30/19 11:36,"459 5th St, Los Angeles, CA 90001" -207287,LG Dryer,1,600.0,05/08/19 14:20,"892 13th St, Atlanta, GA 30301" -207288,USB-C Charging Cable,1,11.95,05/14/19 20:45,"424 Lake St, San Francisco, CA 94016" -207289,Lightning Charging Cable,1,14.95,05/08/19 19:56,"328 9th St, New York City, NY 10001" -207290,Lightning Charging Cable,1,14.95,05/06/19 23:01,"447 Cherry St, New York City, NY 10001" -207291,20in Monitor,1,109.99,05/29/19 22:19,"233 Hill St, Atlanta, GA 30301" -207292,Apple Airpods Headphones,1,150,05/29/19 18:19,"403 6th St, Portland, OR 97035" -207293,ThinkPad Laptop,1,999.99,05/28/19 14:13,"994 Washington St, Austin, TX 73301" -207294,Google Phone,1,600,05/23/19 17:49,"237 Ridge St, Los Angeles, CA 90001" -207295,AAA Batteries (4-pack),1,2.99,05/18/19 23:34,"89 13th St, Portland, OR 97035" -207296,Apple Airpods Headphones,1,150,05/30/19 06:01,"647 Madison St, Dallas, TX 75001" -207297,Apple Airpods Headphones,1,150,05/22/19 11:19,"273 Washington St, San Francisco, CA 94016" -207298,USB-C Charging Cable,1,11.95,05/27/19 12:30,"392 Adams St, Los Angeles, CA 90001" -207299,USB-C Charging Cable,1,11.95,05/27/19 10:32,"92 Hill St, San Francisco, CA 94016" -207300,AAA Batteries (4-pack),2,2.99,05/05/19 15:10,"479 Elm St, Dallas, TX 75001" -207301,iPhone,1,700,05/03/19 11:56,"40 Church St, Seattle, WA 98101" -207301,Wired Headphones,1,11.99,05/03/19 11:56,"40 Church St, Seattle, WA 98101" -207302,27in 4K Gaming Monitor,1,389.99,05/24/19 13:32,"805 5th St, Seattle, WA 98101" -207303,Lightning Charging Cable,1,14.95,05/16/19 08:07,"913 Johnson St, Los Angeles, CA 90001" -207304,Lightning Charging Cable,1,14.95,05/07/19 18:25,"388 Cherry St, Los Angeles, CA 90001" -207305,Apple Airpods Headphones,1,150,05/17/19 22:31,"854 11th St, San Francisco, CA 94016" -207306,Lightning Charging Cable,1,14.95,05/04/19 04:40,"422 Chestnut St, Atlanta, GA 30301" -207307,27in FHD Monitor,1,149.99,05/22/19 12:55,"796 12th St, San Francisco, CA 94016" -207308,USB-C Charging Cable,1,11.95,05/02/19 19:58,"913 Spruce St, Atlanta, GA 30301" -207309,34in Ultrawide Monitor,1,379.99,05/08/19 19:20,"985 Washington St, Boston, MA 02215" -207310,AA Batteries (4-pack),1,3.84,05/26/19 15:48,"124 14th St, Portland, OR 97035" -207311,USB-C Charging Cable,1,11.95,05/21/19 20:47,"610 Jefferson St, San Francisco, CA 94016" -207312,AAA Batteries (4-pack),1,2.99,05/21/19 16:31,"842 Dogwood St, Los Angeles, CA 90001" -207313,AAA Batteries (4-pack),1,2.99,05/05/19 13:54,"634 Washington St, Austin, TX 73301" -207314,iPhone,1,700,05/07/19 12:57,"124 Ridge St, New York City, NY 10001" -207314,Wired Headphones,1,11.99,05/07/19 12:57,"124 Ridge St, New York City, NY 10001" -207315,Wired Headphones,1,11.99,05/23/19 08:15,"290 Chestnut St, New York City, NY 10001" -207316,Apple Airpods Headphones,1,150,05/11/19 00:38,"721 14th St, Boston, MA 02215" -207317,27in FHD Monitor,1,149.99,05/06/19 00:15,"3 Center St, San Francisco, CA 94016" -207318,LG Washing Machine,1,600.0,05/03/19 11:39,"95 Highland St, New York City, NY 10001" -207319,Wired Headphones,1,11.99,05/08/19 10:54,"550 Wilson St, Seattle, WA 98101" -207320,Macbook Pro Laptop,1,1700,05/02/19 21:04,"417 Walnut St, Los Angeles, CA 90001" -207321,Lightning Charging Cable,2,14.95,05/03/19 20:44,"158 13th St, Portland, OR 97035" -207322,AA Batteries (4-pack),1,3.84,05/08/19 20:41,"226 Lake St, New York City, NY 10001" -207323,AAA Batteries (4-pack),2,2.99,05/08/19 16:35,"517 1st St, San Francisco, CA 94016" -207324,Bose SoundSport Headphones,1,99.99,05/03/19 20:50,"488 4th St, Austin, TX 73301" -207325,Wired Headphones,2,11.99,05/22/19 15:26,"369 Pine St, Portland, ME 04101" -207326,iPhone,1,700,05/16/19 17:40,"566 Johnson St, Portland, OR 97035" -207327,AA Batteries (4-pack),1,3.84,05/04/19 00:06,"633 Washington St, Dallas, TX 75001" -207328,27in FHD Monitor,1,149.99,05/11/19 21:55,"806 South St, San Francisco, CA 94016" -207329,Wired Headphones,1,11.99,05/17/19 17:09,"329 Cherry St, Los Angeles, CA 90001" -207330,Lightning Charging Cable,1,14.95,05/18/19 09:50,"709 11th St, Boston, MA 02215" -207331,AAA Batteries (4-pack),1,2.99,05/09/19 20:00,"649 14th St, Boston, MA 02215" -207332,Lightning Charging Cable,1,14.95,05/29/19 17:29,"493 Maple St, Seattle, WA 98101" -207333,Bose SoundSport Headphones,1,99.99,05/10/19 23:09,"871 Center St, New York City, NY 10001" -207333,27in 4K Gaming Monitor,1,389.99,05/10/19 23:09,"871 Center St, New York City, NY 10001" -207334,Google Phone,1,600,05/11/19 16:29,"604 River St, Portland, ME 04101" -207335,Flatscreen TV,1,300,05/03/19 13:58,"346 Cedar St, New York City, NY 10001" -207336,Apple Airpods Headphones,1,150,05/11/19 21:22,"837 River St, San Francisco, CA 94016" -207337,20in Monitor,1,109.99,05/27/19 06:10,"580 Hickory St, Austin, TX 73301" -207338,Flatscreen TV,1,300,05/09/19 22:24,"504 1st St, Atlanta, GA 30301" -207339,Apple Airpods Headphones,1,150,05/08/19 11:10,"527 9th St, Los Angeles, CA 90001" -207340,USB-C Charging Cable,1,11.95,05/27/19 08:19,"447 8th St, Dallas, TX 75001" -207341,Apple Airpods Headphones,1,150,05/09/19 10:51,"714 8th St, Los Angeles, CA 90001" -207342,Vareebadd Phone,1,400,05/03/19 11:40,"304 North St, Portland, OR 97035" -207342,Wired Headphones,1,11.99,05/03/19 11:40,"304 North St, Portland, OR 97035" -207343,Lightning Charging Cable,2,14.95,05/19/19 13:30,"170 Wilson St, San Francisco, CA 94016" -207344,Lightning Charging Cable,1,14.95,05/02/19 15:47,"527 Maple St, Austin, TX 73301" -207345,Bose SoundSport Headphones,1,99.99,05/16/19 17:57,"511 Lincoln St, Boston, MA 02215" -207346,27in FHD Monitor,1,149.99,05/03/19 13:24,"276 1st St, San Francisco, CA 94016" -207347,Macbook Pro Laptop,1,1700,05/09/19 22:26,"97 Meadow St, San Francisco, CA 94016" -207348,27in FHD Monitor,1,149.99,05/26/19 12:48,"325 Elm St, Portland, OR 97035" -207349,USB-C Charging Cable,1,11.95,05/08/19 21:17,"780 Meadow St, San Francisco, CA 94016" -207350,Wired Headphones,1,11.99,05/25/19 09:32,"593 7th St, Los Angeles, CA 90001" -207351,Wired Headphones,1,11.99,05/13/19 00:20,"453 Main St, Los Angeles, CA 90001" -207352,Wired Headphones,1,11.99,05/22/19 22:30,"61 Jackson St, Los Angeles, CA 90001" -207353,Lightning Charging Cable,1,14.95,05/05/19 19:34,"341 6th St, New York City, NY 10001" -207354,Wired Headphones,1,11.99,05/31/19 12:38,"995 Center St, Seattle, WA 98101" -207355,Apple Airpods Headphones,1,150,05/19/19 00:27,"632 Park St, Boston, MA 02215" -207356,Bose SoundSport Headphones,1,99.99,05/20/19 09:43,"406 Main St, Dallas, TX 75001" -207357,27in FHD Monitor,1,149.99,05/12/19 16:27,"496 Pine St, New York City, NY 10001" -207358,AAA Batteries (4-pack),1,2.99,05/30/19 15:43,"581 Pine St, Boston, MA 02215" -207359,AA Batteries (4-pack),1,3.84,05/28/19 20:00,"77 Cherry St, Boston, MA 02215" -207360,Wired Headphones,1,11.99,05/13/19 19:16,"763 9th St, New York City, NY 10001" -207361,USB-C Charging Cable,1,11.95,05/03/19 19:49,"769 Forest St, Los Angeles, CA 90001" -207362,AAA Batteries (4-pack),1,2.99,05/08/19 18:18,"497 4th St, New York City, NY 10001" -207363,Lightning Charging Cable,1,14.95,05/02/19 12:53,"89 14th St, San Francisco, CA 94016" -207364,Lightning Charging Cable,1,14.95,05/18/19 14:26,"116 West St, Boston, MA 02215" -207365,Lightning Charging Cable,1,14.95,05/29/19 05:23,"800 Walnut St, Seattle, WA 98101" -207366,AAA Batteries (4-pack),1,2.99,05/01/19 21:13,"635 Lincoln St, Boston, MA 02215" -207367,34in Ultrawide Monitor,1,379.99,05/30/19 20:50,"392 Chestnut St, Dallas, TX 75001" -207368,USB-C Charging Cable,1,11.95,05/29/19 16:07,"992 4th St, Seattle, WA 98101" -207369,27in FHD Monitor,1,149.99,05/10/19 17:06,"205 Jefferson St, New York City, NY 10001" -207369,USB-C Charging Cable,1,11.95,05/10/19 17:06,"205 Jefferson St, New York City, NY 10001" -207370,AAA Batteries (4-pack),1,2.99,05/15/19 16:21,"268 9th St, Boston, MA 02215" -207371,AA Batteries (4-pack),1,3.84,05/14/19 10:22,"605 Cherry St, Portland, OR 97035" -207372,AAA Batteries (4-pack),5,2.99,05/21/19 17:29,"520 Ridge St, Dallas, TX 75001" -207373,AA Batteries (4-pack),1,3.84,05/05/19 12:30,"623 Willow St, Portland, OR 97035" -207374,AA Batteries (4-pack),1,3.84,05/14/19 20:30,"473 2nd St, San Francisco, CA 94016" -207375,Bose SoundSport Headphones,1,99.99,05/19/19 12:52,"972 2nd St, Boston, MA 02215" -207376,Apple Airpods Headphones,1,150,05/11/19 10:18,"612 Madison St, Austin, TX 73301" -207377,20in Monitor,1,109.99,05/13/19 19:29,"706 Forest St, Seattle, WA 98101" -207378,27in 4K Gaming Monitor,1,389.99,05/13/19 14:02,"435 10th St, Los Angeles, CA 90001" -207379,Google Phone,1,600,05/29/19 18:24,"136 South St, Dallas, TX 75001" -207379,Wired Headphones,1,11.99,05/29/19 18:24,"136 South St, Dallas, TX 75001" -207380,Macbook Pro Laptop,1,1700,05/23/19 18:27,"934 4th St, New York City, NY 10001" -207381,USB-C Charging Cable,1,11.95,05/01/19 18:09,"386 Johnson St, Boston, MA 02215" -207382,Wired Headphones,1,11.99,05/10/19 16:22,"159 12th St, New York City, NY 10001" -207383,AAA Batteries (4-pack),2,2.99,05/15/19 16:41,"71 Adams St, San Francisco, CA 94016" -207384,Google Phone,1,600,05/17/19 17:15,"393 Center St, Los Angeles, CA 90001" -207385,USB-C Charging Cable,1,11.95,05/22/19 10:56,"915 Willow St, Boston, MA 02215" -207386,Flatscreen TV,1,300,05/24/19 18:28,"772 Madison St, Dallas, TX 75001" -207387,Apple Airpods Headphones,1,150,05/20/19 14:18,"170 Walnut St, San Francisco, CA 94016" -207388,27in 4K Gaming Monitor,1,389.99,05/23/19 00:52,"184 Spruce St, Seattle, WA 98101" -207389,Bose SoundSport Headphones,1,99.99,05/10/19 12:39,"726 Cherry St, Los Angeles, CA 90001" -207390,27in FHD Monitor,1,149.99,05/19/19 23:20,"982 Hickory St, Austin, TX 73301" -207391,iPhone,1,700,05/30/19 17:08,"135 Chestnut St, Austin, TX 73301" -207392,27in 4K Gaming Monitor,1,389.99,05/11/19 12:07,"219 Highland St, San Francisco, CA 94016" -207393,AA Batteries (4-pack),1,3.84,05/23/19 23:16,"365 12th St, Los Angeles, CA 90001" -207394,Lightning Charging Cable,1,14.95,05/07/19 14:49,"226 Madison St, New York City, NY 10001" -207395,USB-C Charging Cable,1,11.95,05/18/19 07:44,"740 Wilson St, San Francisco, CA 94016" -207395,USB-C Charging Cable,1,11.95,05/18/19 07:44,"740 Wilson St, San Francisco, CA 94016" -207396,Wired Headphones,1,11.99,05/30/19 22:10,"252 Main St, Los Angeles, CA 90001" -207397,AAA Batteries (4-pack),1,2.99,05/13/19 15:35,"867 8th St, San Francisco, CA 94016" -207398,USB-C Charging Cable,1,11.95,05/08/19 15:57,"94 9th St, Los Angeles, CA 90001" -207399,Lightning Charging Cable,2,14.95,05/19/19 09:56,"436 13th St, San Francisco, CA 94016" -207400,Flatscreen TV,1,300,05/14/19 20:59,"707 North St, Dallas, TX 75001" -207401,Lightning Charging Cable,1,14.95,05/06/19 09:28,"427 Elm St, Dallas, TX 75001" -207402,27in 4K Gaming Monitor,1,389.99,05/09/19 20:01,"432 Johnson St, Dallas, TX 75001" -207403,Bose SoundSport Headphones,1,99.99,05/09/19 12:01,"404 9th St, Seattle, WA 98101" -207404,27in 4K Gaming Monitor,1,389.99,05/19/19 18:08,"968 West St, Boston, MA 02215" -207405,20in Monitor,1,109.99,05/06/19 10:58,"959 Chestnut St, Los Angeles, CA 90001" -207406,AA Batteries (4-pack),1,3.84,05/12/19 14:40,"3 Washington St, Los Angeles, CA 90001" -207407,27in FHD Monitor,1,149.99,05/11/19 14:36,"55 13th St, Dallas, TX 75001" -207408,AAA Batteries (4-pack),1,2.99,05/29/19 23:46,"805 Dogwood St, Los Angeles, CA 90001" -207409,Google Phone,1,600,05/10/19 14:42,"711 Ridge St, San Francisco, CA 94016" -207410,USB-C Charging Cable,1,11.95,05/20/19 20:44,"43 Main St, San Francisco, CA 94016" -207411,27in FHD Monitor,1,149.99,05/12/19 17:21,"111 14th St, Seattle, WA 98101" -207412,AAA Batteries (4-pack),1,2.99,05/19/19 12:20,"822 Adams St, Portland, OR 97035" -207413,Lightning Charging Cable,1,14.95,05/12/19 17:43,"561 Spruce St, New York City, NY 10001" -207414,AA Batteries (4-pack),1,3.84,05/16/19 22:45,"634 13th St, San Francisco, CA 94016" -207415,Google Phone,1,600,05/19/19 13:26,"464 Madison St, Seattle, WA 98101" -207415,USB-C Charging Cable,1,11.95,05/19/19 13:26,"464 Madison St, Seattle, WA 98101" -207416,iPhone,1,700,05/07/19 17:28,"58 Lincoln St, Los Angeles, CA 90001" -207417,Google Phone,1,600,05/21/19 09:20,"302 7th St, New York City, NY 10001" -207418,Wired Headphones,1,11.99,05/20/19 08:53,"615 1st St, San Francisco, CA 94016" -207419,27in FHD Monitor,1,149.99,05/08/19 19:13,"940 Pine St, San Francisco, CA 94016" -207420,USB-C Charging Cable,1,11.95,05/17/19 18:53,"561 Cherry St, Boston, MA 02215" -207421,AAA Batteries (4-pack),1,2.99,05/02/19 22:16,"124 11th St, Dallas, TX 75001" -207422,Lightning Charging Cable,1,14.95,05/03/19 08:22,"589 Johnson St, Austin, TX 73301" -207423,Apple Airpods Headphones,1,150,05/17/19 21:04,"132 11th St, San Francisco, CA 94016" -207424,27in FHD Monitor,1,149.99,05/08/19 13:59,"618 14th St, New York City, NY 10001" -207425,Bose SoundSport Headphones,1,99.99,05/27/19 19:49,"586 West St, Los Angeles, CA 90001" -207426,Flatscreen TV,1,300,05/08/19 22:59,"930 Willow St, San Francisco, CA 94016" -207427,Apple Airpods Headphones,1,150,05/31/19 14:55,"100 Dogwood St, Dallas, TX 75001" -207428,AAA Batteries (4-pack),2,2.99,05/05/19 13:44,"875 Hickory St, Atlanta, GA 30301" -207429,AA Batteries (4-pack),1,3.84,05/05/19 13:39,"462 Adams St, Seattle, WA 98101" -207430,Lightning Charging Cable,1,14.95,05/11/19 09:47,"410 2nd St, San Francisco, CA 94016" -207431,AA Batteries (4-pack),1,3.84,05/03/19 16:02,"778 South St, Dallas, TX 75001" -207432,Apple Airpods Headphones,1,150,05/12/19 16:15,"417 9th St, New York City, NY 10001" -207433,USB-C Charging Cable,1,11.95,05/19/19 12:14,"289 West St, San Francisco, CA 94016" -207434,AAA Batteries (4-pack),1,2.99,05/14/19 20:22,"180 Adams St, Boston, MA 02215" -207435,AAA Batteries (4-pack),3,2.99,05/11/19 22:57,"400 Dogwood St, Dallas, TX 75001" -207436,AA Batteries (4-pack),1,3.84,05/14/19 10:09,"674 Hickory St, Portland, OR 97035" -207437,Wired Headphones,1,11.99,05/28/19 18:29,"820 Willow St, Atlanta, GA 30301" -207438,USB-C Charging Cable,1,11.95,05/04/19 19:09,"725 Chestnut St, Atlanta, GA 30301" -207439,Wired Headphones,1,11.99,05/16/19 16:09,"494 Main St, San Francisco, CA 94016" -207440,AA Batteries (4-pack),1,3.84,05/15/19 19:50,"213 Pine St, San Francisco, CA 94016" -207441,AAA Batteries (4-pack),2,2.99,05/20/19 09:03,"710 Meadow St, New York City, NY 10001" -207442,Apple Airpods Headphones,1,150,05/29/19 23:23,"905 Hill St, San Francisco, CA 94016" -207443,Apple Airpods Headphones,1,150,05/07/19 15:52,"532 Sunset St, San Francisco, CA 94016" -207444,Lightning Charging Cable,1,14.95,05/28/19 13:49,"782 Cedar St, Austin, TX 73301" -207444,USB-C Charging Cable,1,11.95,05/28/19 13:49,"782 Cedar St, Austin, TX 73301" -207445,Lightning Charging Cable,1,14.95,05/25/19 22:29,"273 Lincoln St, New York City, NY 10001" -207446,AA Batteries (4-pack),1,3.84,05/30/19 10:42,"123 12th St, San Francisco, CA 94016" -207447,USB-C Charging Cable,1,11.95,05/12/19 15:37,"894 River St, San Francisco, CA 94016" -207448,20in Monitor,1,109.99,05/18/19 07:58,"249 13th St, Portland, OR 97035" -207449,Google Phone,1,600,05/02/19 00:02,"250 Adams St, San Francisco, CA 94016" -207450,iPhone,1,700,05/25/19 23:25,"292 Lakeview St, Atlanta, GA 30301" -207450,Lightning Charging Cable,1,14.95,05/25/19 23:25,"292 Lakeview St, Atlanta, GA 30301" -207451,AA Batteries (4-pack),2,3.84,05/10/19 18:40,"398 Meadow St, Boston, MA 02215" -207452,AAA Batteries (4-pack),2,2.99,05/28/19 19:58,"27 9th St, Dallas, TX 75001" -207453,Wired Headphones,1,11.99,05/10/19 17:17,"558 Washington St, San Francisco, CA 94016" -207454,27in 4K Gaming Monitor,1,389.99,05/07/19 17:09,"165 Chestnut St, San Francisco, CA 94016" -207455,Wired Headphones,1,11.99,05/23/19 15:48,"723 Wilson St, Portland, OR 97035" -207456,Flatscreen TV,1,300,05/01/19 19:52,"279 Willow St, Boston, MA 02215" -207457,Flatscreen TV,1,300,05/24/19 12:08,"467 4th St, New York City, NY 10001" -207458,Apple Airpods Headphones,1,150,05/12/19 10:59,"919 Cedar St, San Francisco, CA 94016" -207459,Lightning Charging Cable,1,14.95,05/18/19 19:47,"394 Main St, Boston, MA 02215" -207460,AA Batteries (4-pack),1,3.84,05/27/19 14:46,"765 Cherry St, Dallas, TX 75001" -207461,Flatscreen TV,1,300,05/26/19 14:00,"505 Dogwood St, San Francisco, CA 94016" -207461,iPhone,1,700,05/26/19 14:00,"505 Dogwood St, San Francisco, CA 94016" -207462,USB-C Charging Cable,1,11.95,05/09/19 19:21,"712 Hickory St, New York City, NY 10001" -207463,AA Batteries (4-pack),1,3.84,05/10/19 18:06,"754 Elm St, Atlanta, GA 30301" -207464,27in 4K Gaming Monitor,1,389.99,05/14/19 19:59,"150 5th St, San Francisco, CA 94016" -207465,Macbook Pro Laptop,1,1700,05/23/19 10:24,"477 Sunset St, Austin, TX 73301" -207466,Bose SoundSport Headphones,1,99.99,05/07/19 23:10,"998 Highland St, Los Angeles, CA 90001" -207467,AA Batteries (4-pack),1,3.84,05/31/19 21:51,"743 Meadow St, Portland, OR 97035" -207468,AA Batteries (4-pack),2,3.84,05/29/19 10:20,"204 Lincoln St, Dallas, TX 75001" -207469,Vareebadd Phone,1,400,05/24/19 08:46,"715 Highland St, Los Angeles, CA 90001" -207470,Wired Headphones,1,11.99,05/16/19 21:48,"500 Lincoln St, Los Angeles, CA 90001" -207471,USB-C Charging Cable,1,11.95,05/12/19 13:47,"651 Elm St, Dallas, TX 75001" -207472,Wired Headphones,3,11.99,05/07/19 23:35,"931 4th St, Boston, MA 02215" -207473,ThinkPad Laptop,1,999.99,05/26/19 20:06,"458 Center St, Los Angeles, CA 90001" -207474,Apple Airpods Headphones,1,150,05/26/19 22:14,"609 North St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -207475,Lightning Charging Cable,1,14.95,05/06/19 16:48,"739 Walnut St, Dallas, TX 75001" -207476,Lightning Charging Cable,1,14.95,05/02/19 19:48,"987 Cherry St, Boston, MA 02215" -207477,AAA Batteries (4-pack),1,2.99,05/16/19 17:57,"273 11th St, Austin, TX 73301" -207478,Lightning Charging Cable,1,14.95,05/04/19 10:01,"344 Lake St, Dallas, TX 75001" -207479,Lightning Charging Cable,1,14.95,05/17/19 08:27,"406 Pine St, Los Angeles, CA 90001" -207480,Wired Headphones,1,11.99,05/21/19 20:26,"1 Park St, Portland, OR 97035" -207481,USB-C Charging Cable,1,11.95,05/04/19 10:54,"293 8th St, Seattle, WA 98101" -207482,AA Batteries (4-pack),1,3.84,05/27/19 11:58,"962 Madison St, Dallas, TX 75001" -207483,Bose SoundSport Headphones,1,99.99,05/12/19 15:49,"89 2nd St, Portland, OR 97035" -207484,27in FHD Monitor,1,149.99,05/26/19 16:24,"951 Main St, San Francisco, CA 94016" -207485,27in 4K Gaming Monitor,1,389.99,05/07/19 17:37,"762 Adams St, San Francisco, CA 94016" -207486,Lightning Charging Cable,1,14.95,05/10/19 00:24,"88 Lincoln St, Austin, TX 73301" -207487,AA Batteries (4-pack),3,3.84,05/24/19 15:13,"522 Walnut St, Seattle, WA 98101" -207488,Google Phone,1,600,05/31/19 14:30,"83 12th St, San Francisco, CA 94016" -207488,USB-C Charging Cable,1,11.95,05/31/19 14:30,"83 12th St, San Francisco, CA 94016" -207489,USB-C Charging Cable,1,11.95,05/24/19 08:16,"105 Hill St, San Francisco, CA 94016" -207490,Lightning Charging Cable,2,14.95,05/18/19 08:03,"260 2nd St, Dallas, TX 75001" -207491,27in FHD Monitor,1,149.99,05/24/19 12:22,"768 8th St, Portland, OR 97035" -207492,Wired Headphones,2,11.99,05/12/19 02:36,"456 Walnut St, San Francisco, CA 94016" -207493,Wired Headphones,1,11.99,05/08/19 07:25,"220 Highland St, Los Angeles, CA 90001" -207494,USB-C Charging Cable,3,11.95,05/22/19 23:03,"620 10th St, New York City, NY 10001" -207495,AAA Batteries (4-pack),1,2.99,05/19/19 23:27,"383 Pine St, San Francisco, CA 94016" -207496,Wired Headphones,1,11.99,05/27/19 12:30,"146 Willow St, New York City, NY 10001" -207497,Lightning Charging Cable,1,14.95,05/13/19 14:06,"242 12th St, Atlanta, GA 30301" -207498,27in 4K Gaming Monitor,1,389.99,05/04/19 18:09,"143 5th St, San Francisco, CA 94016" -207499,Wired Headphones,1,11.99,05/15/19 23:24,"136 Cedar St, New York City, NY 10001" -207500,Wired Headphones,1,11.99,05/10/19 00:14,"429 North St, Boston, MA 02215" -207501,Wired Headphones,1,11.99,05/07/19 22:46,"137 Lakeview St, Dallas, TX 75001" -207502,27in 4K Gaming Monitor,1,389.99,05/23/19 19:24,"326 2nd St, Austin, TX 73301" -207503,Apple Airpods Headphones,1,150,05/22/19 18:00,"973 Chestnut St, Los Angeles, CA 90001" -207504,Wired Headphones,1,11.99,05/07/19 09:54,"708 2nd St, Boston, MA 02215" -207505,USB-C Charging Cable,1,11.95,05/18/19 08:12,"262 Hickory St, San Francisco, CA 94016" -207506,AA Batteries (4-pack),1,3.84,05/19/19 16:25,"224 River St, New York City, NY 10001" -207507,Apple Airpods Headphones,1,150,05/11/19 18:42,"270 Highland St, Los Angeles, CA 90001" -207508,Apple Airpods Headphones,1,150,05/21/19 00:07,"885 West St, Boston, MA 02215" -207509,Lightning Charging Cable,1,14.95,05/07/19 15:18,"144 Cedar St, Austin, TX 73301" -207510,Wired Headphones,1,11.99,05/04/19 19:41,"159 12th St, San Francisco, CA 94016" -207511,iPhone,1,700,05/16/19 12:51,"412 Park St, Seattle, WA 98101" -207512,AA Batteries (4-pack),1,3.84,05/02/19 18:01,"118 Cedar St, San Francisco, CA 94016" -207513,USB-C Charging Cable,2,11.95,05/19/19 11:18,"285 Lake St, Portland, OR 97035" -207514,Lightning Charging Cable,1,14.95,05/06/19 14:05,"422 Lakeview St, San Francisco, CA 94016" -207515,Apple Airpods Headphones,1,150,05/29/19 06:34,"620 Dogwood St, San Francisco, CA 94016" -207516,AAA Batteries (4-pack),1,2.99,05/10/19 19:00,"709 Johnson St, Portland, OR 97035" -207517,AA Batteries (4-pack),1,3.84,05/06/19 05:10,"318 Elm St, Los Angeles, CA 90001" -207518,Google Phone,1,600,05/02/19 21:21,"659 5th St, San Francisco, CA 94016" -207519,AAA Batteries (4-pack),1,2.99,05/01/19 14:11,"940 2nd St, Los Angeles, CA 90001" -207520,ThinkPad Laptop,1,999.99,05/26/19 16:21,"147 Cedar St, Austin, TX 73301" -207521,AAA Batteries (4-pack),5,2.99,05/07/19 09:58,"921 12th St, Boston, MA 02215" -207522,AAA Batteries (4-pack),2,2.99,05/27/19 19:04,"694 Adams St, New York City, NY 10001" -207523,Macbook Pro Laptop,1,1700,05/04/19 14:57,"872 2nd St, Los Angeles, CA 90001" -207524,Lightning Charging Cable,1,14.95,05/11/19 09:18,"100 9th St, Los Angeles, CA 90001" -207525,Google Phone,1,600,05/13/19 18:53,"935 11th St, Los Angeles, CA 90001" -207525,USB-C Charging Cable,2,11.95,05/13/19 18:53,"935 11th St, Los Angeles, CA 90001" -207526,AAA Batteries (4-pack),1,2.99,05/06/19 23:39,"176 Hickory St, Boston, MA 02215" -207527,AAA Batteries (4-pack),5,2.99,05/30/19 19:19,"753 Main St, San Francisco, CA 94016" -207528,Lightning Charging Cable,1,14.95,05/03/19 22:08,"489 Hickory St, San Francisco, CA 94016" -207529,Wired Headphones,1,11.99,05/07/19 14:22,"66 9th St, San Francisco, CA 94016" -207530,Wired Headphones,1,11.99,05/25/19 10:44,"346 4th St, Atlanta, GA 30301" -207531,Bose SoundSport Headphones,1,99.99,05/17/19 12:47,"131 Hickory St, San Francisco, CA 94016" -207532,27in FHD Monitor,1,149.99,05/03/19 08:12,"874 West St, Atlanta, GA 30301" -207533,Apple Airpods Headphones,1,150,05/17/19 17:39,"612 Elm St, Los Angeles, CA 90001" -207534,Wired Headphones,1,11.99,05/01/19 23:44,"252 Johnson St, San Francisco, CA 94016" -207535,Lightning Charging Cable,1,14.95,05/28/19 09:38,"44 South St, Los Angeles, CA 90001" -207536,Google Phone,1,600,05/14/19 18:57,"290 13th St, Los Angeles, CA 90001" -207536,Bose SoundSport Headphones,1,99.99,05/14/19 18:57,"290 13th St, Los Angeles, CA 90001" -207537,20in Monitor,1,109.99,05/16/19 01:13,"1 Walnut St, New York City, NY 10001" -207538,AA Batteries (4-pack),1,3.84,05/10/19 13:21,"897 Lake St, Los Angeles, CA 90001" -207539,Lightning Charging Cable,1,14.95,05/29/19 15:18,"635 Meadow St, San Francisco, CA 94016" -207540,iPhone,1,700,05/15/19 20:49,"293 9th St, Seattle, WA 98101" -207540,Lightning Charging Cable,1,14.95,05/15/19 20:49,"293 9th St, Seattle, WA 98101" -207541,Lightning Charging Cable,1,14.95,05/06/19 18:39,"762 Sunset St, Dallas, TX 75001" -207542,AA Batteries (4-pack),1,3.84,05/31/19 18:47,"264 7th St, Austin, TX 73301" -207543,27in 4K Gaming Monitor,1,389.99,05/09/19 09:10,"978 Main St, San Francisco, CA 94016" -207544,Google Phone,1,600,05/24/19 09:27,"620 14th St, San Francisco, CA 94016" -207545,AA Batteries (4-pack),1,3.84,05/03/19 19:54,"495 4th St, Portland, OR 97035" -207546,Macbook Pro Laptop,1,1700,05/23/19 22:14,"701 Chestnut St, Dallas, TX 75001" -207547,AA Batteries (4-pack),1,3.84,05/31/19 11:16,"364 Meadow St, Dallas, TX 75001" -207547,Bose SoundSport Headphones,1,99.99,05/31/19 11:16,"364 Meadow St, Dallas, TX 75001" -207548,Bose SoundSport Headphones,1,99.99,05/11/19 03:24,"858 Hill St, Los Angeles, CA 90001" -207549,Apple Airpods Headphones,1,150,05/10/19 11:17,"191 6th St, San Francisco, CA 94016" -207550,Lightning Charging Cable,1,14.95,05/10/19 13:31,"358 Sunset St, Portland, OR 97035" -207551,LG Dryer,1,600.0,05/21/19 21:24,"183 Madison St, Austin, TX 73301" -207552,Lightning Charging Cable,1,14.95,05/01/19 14:25,"116 Cherry St, Portland, ME 04101" -207553,AA Batteries (4-pack),1,3.84,05/13/19 16:34,"8 Chestnut St, Portland, OR 97035" -207554,iPhone,1,700,05/09/19 19:24,"961 13th St, San Francisco, CA 94016" -207555,AAA Batteries (4-pack),1,2.99,05/19/19 02:43,"563 Church St, Seattle, WA 98101" -207556,AA Batteries (4-pack),1,3.84,05/15/19 13:26,"564 Washington St, Los Angeles, CA 90001" -207557,Bose SoundSport Headphones,1,99.99,05/29/19 18:04,"947 Willow St, Los Angeles, CA 90001" -207558,Macbook Pro Laptop,1,1700,05/14/19 08:59,"438 Willow St, New York City, NY 10001" -207559,Lightning Charging Cable,1,14.95,05/03/19 17:55,"571 Washington St, Portland, OR 97035" -207560,USB-C Charging Cable,1,11.95,05/06/19 22:06,"855 Forest St, Boston, MA 02215" -207561,27in FHD Monitor,1,149.99,05/11/19 20:45,"367 7th St, Los Angeles, CA 90001" -207562,Wired Headphones,1,11.99,05/19/19 18:05,"978 Center St, Portland, OR 97035" -207562,USB-C Charging Cable,1,11.95,05/19/19 18:05,"978 Center St, Portland, OR 97035" -207563,Macbook Pro Laptop,1,1700,05/28/19 21:16,"804 Adams St, Austin, TX 73301" -207564,Lightning Charging Cable,1,14.95,05/01/19 13:34,"730 8th St, Los Angeles, CA 90001" -207565,34in Ultrawide Monitor,1,379.99,05/06/19 20:20,"805 Lake St, New York City, NY 10001" -207566,27in FHD Monitor,1,149.99,05/25/19 23:25,"605 4th St, San Francisco, CA 94016" -207567,AA Batteries (4-pack),1,3.84,05/20/19 15:38,"638 Hill St, Portland, OR 97035" -207568,Wired Headphones,1,11.99,05/13/19 09:33,"115 Highland St, Boston, MA 02215" -207569,AAA Batteries (4-pack),1,2.99,05/19/19 05:21,"948 Cherry St, Portland, OR 97035" -207570,USB-C Charging Cable,2,11.95,05/06/19 18:00,"676 Chestnut St, Los Angeles, CA 90001" -207571,iPhone,1,700,05/05/19 21:15,"707 Ridge St, Portland, OR 97035" -207572,AA Batteries (4-pack),1,3.84,05/11/19 22:45,"468 Madison St, San Francisco, CA 94016" -207573,Apple Airpods Headphones,1,150,05/14/19 18:46,"803 9th St, Seattle, WA 98101" -207574,USB-C Charging Cable,2,11.95,05/25/19 10:06,"170 Wilson St, San Francisco, CA 94016" -207575,Macbook Pro Laptop,1,1700,05/04/19 23:08,"832 Hickory St, Los Angeles, CA 90001" -207576,27in FHD Monitor,1,149.99,05/17/19 16:55,"80 Hickory St, Boston, MA 02215" -207577,Wired Headphones,1,11.99,05/09/19 20:06,"66 Cedar St, Boston, MA 02215" -207578,AAA Batteries (4-pack),1,2.99,05/13/19 18:08,"101 6th St, Boston, MA 02215" -207579,27in 4K Gaming Monitor,1,389.99,05/20/19 22:58,"169 Elm St, San Francisco, CA 94016" -207580,AAA Batteries (4-pack),1,2.99,05/14/19 15:08,"804 12th St, Boston, MA 02215" -207581,AA Batteries (4-pack),2,3.84,05/01/19 19:06,"306 Johnson St, Los Angeles, CA 90001" -207582,Macbook Pro Laptop,1,1700,05/28/19 16:09,"106 Church St, Los Angeles, CA 90001" -207583,Lightning Charging Cable,1,14.95,05/09/19 18:54,"865 4th St, San Francisco, CA 94016" -207584,Apple Airpods Headphones,1,150,05/03/19 12:02,"852 Adams St, Los Angeles, CA 90001" -207584,AAA Batteries (4-pack),1,2.99,05/03/19 12:02,"852 Adams St, Los Angeles, CA 90001" -207585,AA Batteries (4-pack),2,3.84,05/20/19 00:09,"240 12th St, San Francisco, CA 94016" -207586,Wired Headphones,2,11.99,05/19/19 21:20,"275 11th St, Los Angeles, CA 90001" -207587,AA Batteries (4-pack),1,3.84,05/20/19 10:11,"691 8th St, Boston, MA 02215" -207588,AAA Batteries (4-pack),1,2.99,05/28/19 21:47,"673 Cedar St, Atlanta, GA 30301" -207589,Apple Airpods Headphones,1,150,05/16/19 08:19,"572 Center St, Dallas, TX 75001" -207590,USB-C Charging Cable,1,11.95,05/03/19 19:48,"766 West St, Austin, TX 73301" -207591,Apple Airpods Headphones,1,150,05/21/19 20:35,"436 6th St, San Francisco, CA 94016" -207592,27in 4K Gaming Monitor,1,389.99,05/30/19 05:51,"885 Cherry St, Portland, OR 97035" -207593,AA Batteries (4-pack),1,3.84,05/30/19 22:52,"903 Center St, Los Angeles, CA 90001" -207594,USB-C Charging Cable,1,11.95,05/03/19 12:39,"447 Washington St, San Francisco, CA 94016" -207595,ThinkPad Laptop,1,999.99,05/08/19 20:40,"641 Spruce St, Dallas, TX 75001" -207596,34in Ultrawide Monitor,1,379.99,05/30/19 09:58,"92 Lake St, San Francisco, CA 94016" -207597,iPhone,1,700,05/27/19 02:07,"635 11th St, Portland, ME 04101" -207598,Wired Headphones,2,11.99,05/17/19 19:44,"698 Church St, Dallas, TX 75001" -207599,27in FHD Monitor,1,149.99,05/31/19 23:10,"237 Hickory St, Los Angeles, CA 90001" -207600,Vareebadd Phone,1,400,05/31/19 09:00,"699 Park St, Boston, MA 02215" -207601,AA Batteries (4-pack),1,3.84,05/06/19 14:24,"797 North St, Boston, MA 02215" -207602,20in Monitor,1,109.99,05/10/19 05:17,"255 West St, Portland, OR 97035" -207603,Bose SoundSport Headphones,1,99.99,05/21/19 14:07,"976 Hill St, New York City, NY 10001" -207604,Macbook Pro Laptop,1,1700,05/15/19 10:57,"743 Lincoln St, San Francisco, CA 94016" -207605,Lightning Charging Cable,1,14.95,05/31/19 11:34,"341 South St, New York City, NY 10001" -207606,Macbook Pro Laptop,1,1700,05/01/19 22:06,"145 Cedar St, Los Angeles, CA 90001" -207607,Lightning Charging Cable,2,14.95,05/26/19 00:43,"666 10th St, San Francisco, CA 94016" -207608,AA Batteries (4-pack),1,3.84,05/18/19 22:08,"212 Forest St, New York City, NY 10001" -207609,Google Phone,1,600,05/31/19 18:46,"649 4th St, Boston, MA 02215" -207610,USB-C Charging Cable,1,11.95,05/06/19 13:25,"75 Park St, Seattle, WA 98101" -207611,27in FHD Monitor,1,149.99,05/12/19 09:38,"504 Forest St, New York City, NY 10001" -207612,34in Ultrawide Monitor,1,379.99,05/12/19 19:20,"136 West St, Austin, TX 73301" -207613,Vareebadd Phone,1,400,05/30/19 15:24,"629 Elm St, Atlanta, GA 30301" -207613,Wired Headphones,1,11.99,05/30/19 15:24,"629 Elm St, Atlanta, GA 30301" -207614,AAA Batteries (4-pack),1,2.99,05/18/19 09:43,"402 Main St, Austin, TX 73301" -207615,Wired Headphones,1,11.99,05/04/19 20:12,"127 11th St, Boston, MA 02215" -207616,AA Batteries (4-pack),1,3.84,05/11/19 20:05,"3 Madison St, Seattle, WA 98101" -207617,AA Batteries (4-pack),1,3.84,05/04/19 14:17,"13 Walnut St, Austin, TX 73301" -207618,LG Dryer,1,600.0,05/23/19 23:54,"710 Spruce St, Boston, MA 02215" -207619,Lightning Charging Cable,1,14.95,05/14/19 18:01,"308 Pine St, Atlanta, GA 30301" -207620,AAA Batteries (4-pack),1,2.99,05/06/19 10:45,"676 Sunset St, Los Angeles, CA 90001" -207621,AAA Batteries (4-pack),2,2.99,05/27/19 00:07,"761 Johnson St, San Francisco, CA 94016" -207622,Google Phone,1,600,05/10/19 09:19,"240 Dogwood St, Los Angeles, CA 90001" -207623,Apple Airpods Headphones,1,150,05/15/19 07:35,"447 Adams St, Portland, ME 04101" -207624,AA Batteries (4-pack),1,3.84,05/22/19 18:16,"209 Hickory St, Portland, OR 97035" -207625,Macbook Pro Laptop,1,1700,05/16/19 20:10,"139 Washington St, Dallas, TX 75001" -207626,AA Batteries (4-pack),1,3.84,05/08/19 11:15,"553 Lake St, Austin, TX 73301" -207627,LG Dryer,1,600.0,05/21/19 12:58,"303 Jefferson St, Boston, MA 02215" -207628,USB-C Charging Cable,1,11.95,05/23/19 07:02,"274 Lake St, San Francisco, CA 94016" -207629,AAA Batteries (4-pack),2,2.99,05/07/19 16:34,"743 13th St, Atlanta, GA 30301" -207630,AA Batteries (4-pack),1,3.84,05/17/19 10:01,"809 Cedar St, San Francisco, CA 94016" -207631,Lightning Charging Cable,1,14.95,05/11/19 02:55,"815 North St, New York City, NY 10001" -207632,Apple Airpods Headphones,1,150,05/13/19 17:21,"366 Elm St, Portland, ME 04101" -207633,Lightning Charging Cable,1,14.95,05/02/19 17:40,"391 Maple St, Atlanta, GA 30301" -207634,AAA Batteries (4-pack),1,2.99,05/04/19 12:36,"937 2nd St, Seattle, WA 98101" -207634,34in Ultrawide Monitor,1,379.99,05/04/19 12:36,"937 2nd St, Seattle, WA 98101" -207635,Flatscreen TV,1,300,05/26/19 13:53,"865 13th St, Boston, MA 02215" -207636,USB-C Charging Cable,1,11.95,05/04/19 12:34,"390 Center St, San Francisco, CA 94016" -207637,Lightning Charging Cable,1,14.95,05/25/19 11:13,"149 Church St, Austin, TX 73301" -207638,Lightning Charging Cable,1,14.95,05/04/19 10:23,"816 8th St, Austin, TX 73301" -207639,34in Ultrawide Monitor,1,379.99,05/01/19 18:29,"683 Forest St, Atlanta, GA 30301" -207640,Macbook Pro Laptop,1,1700,05/16/19 16:55,"520 2nd St, Boston, MA 02215" -207641,Apple Airpods Headphones,1,150,05/26/19 20:42,"238 Spruce St, New York City, NY 10001" -207642,AAA Batteries (4-pack),1,2.99,05/14/19 14:26,"810 8th St, San Francisco, CA 94016" -207643,AAA Batteries (4-pack),1,2.99,05/11/19 10:47,"731 River St, Los Angeles, CA 90001" -207644,USB-C Charging Cable,1,11.95,05/14/19 11:28,"873 Hill St, New York City, NY 10001" -207645,Bose SoundSport Headphones,1,99.99,05/20/19 00:04,"503 Cherry St, San Francisco, CA 94016" -207646,Lightning Charging Cable,1,14.95,05/17/19 11:31,"326 Sunset St, Boston, MA 02215" -207647,Lightning Charging Cable,1,14.95,05/17/19 11:53,"781 Wilson St, Boston, MA 02215" -207648,Wired Headphones,1,11.99,05/06/19 22:40,"478 Center St, San Francisco, CA 94016" -207649,Google Phone,1,600,05/13/19 00:58,"853 Lake St, Boston, MA 02215" -207650,AA Batteries (4-pack),1,3.84,05/05/19 21:40,"389 Wilson St, San Francisco, CA 94016" -207651,iPhone,1,700,05/10/19 22:50,"879 14th St, Los Angeles, CA 90001" -207652,iPhone,1,700,05/23/19 10:01,"904 6th St, Dallas, TX 75001" -207653,Wired Headphones,2,11.99,05/20/19 23:31,"573 Walnut St, San Francisco, CA 94016" -207654,AA Batteries (4-pack),4,3.84,05/28/19 14:35,"377 South St, San Francisco, CA 94016" -207655,Wired Headphones,1,11.99,05/25/19 21:46,"422 Forest St, Los Angeles, CA 90001" -207656,AAA Batteries (4-pack),1,2.99,05/13/19 10:14,"192 8th St, Dallas, TX 75001" -207657,Wired Headphones,1,11.99,05/28/19 13:26,"519 Meadow St, Los Angeles, CA 90001" -207658,Bose SoundSport Headphones,1,99.99,05/07/19 16:26,"581 Johnson St, Dallas, TX 75001" -207658,Bose SoundSport Headphones,1,99.99,05/07/19 16:26,"581 Johnson St, Dallas, TX 75001" -207659,AAA Batteries (4-pack),1,2.99,05/24/19 19:16,"64 10th St, Boston, MA 02215" -207660,ThinkPad Laptop,1,999.99,05/12/19 18:49,"596 West St, Los Angeles, CA 90001" -207661,AA Batteries (4-pack),1,3.84,05/25/19 23:28,"233 South St, San Francisco, CA 94016" -207662,Google Phone,1,600,05/23/19 20:18,"807 Lakeview St, San Francisco, CA 94016" -207663,AA Batteries (4-pack),1,3.84,05/07/19 08:16,"169 Adams St, Atlanta, GA 30301" -207664,27in 4K Gaming Monitor,1,389.99,05/27/19 08:44,"115 Forest St, Atlanta, GA 30301" -207665,ThinkPad Laptop,1,999.99,05/11/19 23:45,"695 Lincoln St, Los Angeles, CA 90001" -207666,USB-C Charging Cable,1,11.95,05/17/19 14:25,"54 Pine St, Seattle, WA 98101" -207667,Apple Airpods Headphones,1,150,05/25/19 15:04,"641 11th St, San Francisco, CA 94016" -207668,AAA Batteries (4-pack),1,2.99,05/04/19 15:12,"734 West St, Seattle, WA 98101" -207669,Apple Airpods Headphones,1,150,05/30/19 19:42,"801 Dogwood St, Atlanta, GA 30301" -207670,27in 4K Gaming Monitor,1,389.99,05/26/19 16:54,"22 South St, Los Angeles, CA 90001" -207671,AA Batteries (4-pack),1,3.84,05/30/19 22:58,"172 Adams St, Los Angeles, CA 90001" -207672,Apple Airpods Headphones,1,150,05/09/19 14:07,"883 Sunset St, Boston, MA 02215" -207673,Wired Headphones,1,11.99,05/26/19 15:43,"943 11th St, Atlanta, GA 30301" -207674,AA Batteries (4-pack),1,3.84,05/08/19 11:40,"54 Adams St, San Francisco, CA 94016" -207675,Lightning Charging Cable,1,14.95,05/10/19 17:51,"306 North St, Atlanta, GA 30301" -207676,20in Monitor,1,109.99,05/06/19 16:18,"538 Hill St, Dallas, TX 75001" -207677,AAA Batteries (4-pack),2,2.99,05/19/19 09:05,"173 Pine St, Dallas, TX 75001" -207677,AA Batteries (4-pack),1,3.84,05/19/19 09:05,"173 Pine St, Dallas, TX 75001" -207678,Bose SoundSport Headphones,1,99.99,05/12/19 09:17,"562 Highland St, Los Angeles, CA 90001" -207679,Wired Headphones,1,11.99,05/07/19 19:32,"728 Cherry St, San Francisco, CA 94016" -207680,Lightning Charging Cable,1,14.95,05/18/19 08:13,"154 South St, San Francisco, CA 94016" -207681,Lightning Charging Cable,1,14.95,05/30/19 18:32,"380 Forest St, Boston, MA 02215" -207682,Lightning Charging Cable,1,14.95,05/25/19 22:19,"566 Hickory St, Dallas, TX 75001" -207683,34in Ultrawide Monitor,1,379.99,05/03/19 21:44,"276 13th St, New York City, NY 10001" -207684,27in FHD Monitor,1,149.99,05/23/19 19:39,"269 Highland St, New York City, NY 10001" -207685,Apple Airpods Headphones,1,150,05/02/19 13:51,"284 Ridge St, Los Angeles, CA 90001" -207686,AA Batteries (4-pack),2,3.84,05/11/19 18:24,"519 Pine St, San Francisco, CA 94016" -207687,34in Ultrawide Monitor,1,379.99,05/07/19 19:09,"678 Cherry St, San Francisco, CA 94016" -207688,AAA Batteries (4-pack),3,2.99,05/22/19 17:22,"809 8th St, Seattle, WA 98101" -207689,Apple Airpods Headphones,1,150,05/23/19 22:44,"440 6th St, Portland, ME 04101" -207690,USB-C Charging Cable,1,11.95,05/19/19 10:00,"599 Lakeview St, San Francisco, CA 94016" -207691,ThinkPad Laptop,1,999.99,05/10/19 18:01,"790 Jefferson St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -207692,USB-C Charging Cable,1,11.95,05/23/19 17:42,"145 Meadow St, Dallas, TX 75001" -207693,AAA Batteries (4-pack),2,2.99,05/03/19 22:22,"176 Maple St, Dallas, TX 75001" -207694,Wired Headphones,1,11.99,05/01/19 20:18,"340 North St, Boston, MA 02215" -207695,Lightning Charging Cable,1,14.95,05/12/19 21:49,"518 Lincoln St, Seattle, WA 98101" -207696,27in FHD Monitor,1,149.99,05/08/19 19:20,"618 Lake St, San Francisco, CA 94016" -207697,Bose SoundSport Headphones,1,99.99,05/02/19 13:21,"308 Main St, San Francisco, CA 94016" -207698,iPhone,1,700,05/01/19 17:12,"460 6th St, San Francisco, CA 94016" -207698,Wired Headphones,1,11.99,05/01/19 17:12,"460 6th St, San Francisco, CA 94016" -207699,AA Batteries (4-pack),1,3.84,05/30/19 09:27,"482 9th St, Seattle, WA 98101" -207700,Wired Headphones,1,11.99,05/09/19 19:03,"363 Hickory St, San Francisco, CA 94016" -207701,USB-C Charging Cable,1,11.95,05/17/19 13:32,"985 Hill St, San Francisco, CA 94016" -207702,AA Batteries (4-pack),1,3.84,05/02/19 12:43,"597 13th St, Seattle, WA 98101" -207703,USB-C Charging Cable,1,11.95,05/01/19 18:50,"443 6th St, San Francisco, CA 94016" -207704,Google Phone,1,600,05/20/19 12:43,"243 Hill St, San Francisco, CA 94016" -207705,AA Batteries (4-pack),1,3.84,05/21/19 18:00,"387 14th St, San Francisco, CA 94016" -207706,34in Ultrawide Monitor,1,379.99,05/05/19 16:44,"905 12th St, Los Angeles, CA 90001" -207707,AAA Batteries (4-pack),1,2.99,05/21/19 18:25,"133 Sunset St, Boston, MA 02215" -207708,AAA Batteries (4-pack),2,2.99,05/28/19 14:47,"142 Lincoln St, New York City, NY 10001" -207709,Bose SoundSport Headphones,1,99.99,05/20/19 10:17,"38 12th St, San Francisco, CA 94016" -207710,USB-C Charging Cable,1,11.95,05/12/19 10:36,"121 4th St, Boston, MA 02215" -207711,20in Monitor,1,109.99,05/09/19 18:07,"306 6th St, San Francisco, CA 94016" -207712,USB-C Charging Cable,1,11.95,05/19/19 18:43,"825 4th St, San Francisco, CA 94016" -207713,Apple Airpods Headphones,1,150,05/31/19 17:25,"907 Lakeview St, Dallas, TX 75001" -207714,USB-C Charging Cable,1,11.95,05/02/19 11:58,"427 Meadow St, Los Angeles, CA 90001" -207715,Apple Airpods Headphones,1,150,05/16/19 14:10,"271 7th St, San Francisco, CA 94016" -207716,AA Batteries (4-pack),1,3.84,05/10/19 16:23,"704 Hickory St, San Francisco, CA 94016" -207717,Apple Airpods Headphones,1,150,05/04/19 09:44,"942 Main St, Boston, MA 02215" -207718,27in FHD Monitor,1,149.99,05/04/19 09:37,"302 Dogwood St, Portland, ME 04101" -207719,Apple Airpods Headphones,1,150,05/17/19 20:09,"474 Dogwood St, Seattle, WA 98101" -207720,27in 4K Gaming Monitor,1,389.99,05/17/19 09:34,"570 South St, Boston, MA 02215" -207721,20in Monitor,1,109.99,05/12/19 13:20,"785 2nd St, New York City, NY 10001" -207722,27in 4K Gaming Monitor,1,389.99,05/16/19 13:10,"968 Adams St, Dallas, TX 75001" -207723,AAA Batteries (4-pack),1,2.99,05/19/19 18:39,"157 11th St, San Francisco, CA 94016" -207724,AA Batteries (4-pack),1,3.84,05/21/19 20:53,"254 Maple St, San Francisco, CA 94016" -207725,iPhone,1,700,05/12/19 19:30,"643 Highland St, Atlanta, GA 30301" -207725,Wired Headphones,1,11.99,05/12/19 19:30,"643 Highland St, Atlanta, GA 30301" -207726,Bose SoundSport Headphones,1,99.99,05/29/19 18:22,"657 Chestnut St, San Francisco, CA 94016" -207727,iPhone,1,700,05/13/19 19:24,"839 Hill St, Los Angeles, CA 90001" -207728,Wired Headphones,1,11.99,05/02/19 20:09,"478 Sunset St, Portland, ME 04101" -207729,ThinkPad Laptop,1,999.99,05/18/19 09:31,"573 Lincoln St, Los Angeles, CA 90001" -207730,ThinkPad Laptop,1,999.99,05/03/19 14:06,"514 South St, Austin, TX 73301" -207731,AAA Batteries (4-pack),2,2.99,05/05/19 19:00,"58 Jackson St, Los Angeles, CA 90001" -207732,Wired Headphones,1,11.99,05/22/19 19:32,"507 Chestnut St, Atlanta, GA 30301" -207733,Vareebadd Phone,1,400,05/20/19 18:12,"35 6th St, San Francisco, CA 94016" -207734,AAA Batteries (4-pack),4,2.99,05/08/19 15:48,"670 12th St, Portland, OR 97035" -207735,LG Dryer,1,600.0,05/26/19 20:26,"901 10th St, San Francisco, CA 94016" -207736,Lightning Charging Cable,1,14.95,05/11/19 13:26,"795 11th St, San Francisco, CA 94016" -207737,USB-C Charging Cable,1,11.95,05/30/19 16:07,"638 Washington St, Seattle, WA 98101" -207738,Wired Headphones,1,11.99,05/08/19 10:33,"925 Main St, San Francisco, CA 94016" -207739,Lightning Charging Cable,1,14.95,05/20/19 19:07,"936 Wilson St, Portland, ME 04101" -207740,AA Batteries (4-pack),1,3.84,05/06/19 15:13,"159 Willow St, Los Angeles, CA 90001" -207741,USB-C Charging Cable,1,11.95,05/28/19 19:17,"360 10th St, Atlanta, GA 30301" -207742,27in FHD Monitor,1,149.99,05/03/19 17:27,"652 Highland St, Los Angeles, CA 90001" -207743,AA Batteries (4-pack),1,3.84,05/23/19 07:02,"99 12th St, Portland, OR 97035" -207744,Wired Headphones,1,11.99,05/10/19 12:48,"948 11th St, San Francisco, CA 94016" -207745,Apple Airpods Headphones,1,150,05/20/19 18:31,"696 10th St, New York City, NY 10001" -207746,Bose SoundSport Headphones,1,99.99,05/05/19 18:08,"634 13th St, Boston, MA 02215" -207747,AAA Batteries (4-pack),1,2.99,05/23/19 17:04,"419 Walnut St, Austin, TX 73301" -207748,27in 4K Gaming Monitor,1,389.99,05/12/19 21:10,"146 Hickory St, Seattle, WA 98101" -207749,Bose SoundSport Headphones,1,99.99,05/23/19 11:28,"975 Church St, Los Angeles, CA 90001" -207750,34in Ultrawide Monitor,1,379.99,05/29/19 17:02,"102 Hickory St, Dallas, TX 75001" -207751,Lightning Charging Cable,1,14.95,05/25/19 17:17,"533 Wilson St, Seattle, WA 98101" -207752,Apple Airpods Headphones,1,150,05/08/19 12:51,"972 Spruce St, San Francisco, CA 94016" -207753,USB-C Charging Cable,1,11.95,05/20/19 16:27,"723 North St, San Francisco, CA 94016" -207754,Lightning Charging Cable,1,14.95,05/24/19 06:51,"517 Ridge St, Austin, TX 73301" -207755,Lightning Charging Cable,1,14.95,05/29/19 15:13,"403 Johnson St, San Francisco, CA 94016" -207756,USB-C Charging Cable,1,11.95,05/02/19 16:37,"241 Wilson St, New York City, NY 10001" -207757,34in Ultrawide Monitor,1,379.99,05/24/19 16:27,"866 13th St, Boston, MA 02215" -207758,Bose SoundSport Headphones,1,99.99,05/23/19 21:25,"972 Wilson St, San Francisco, CA 94016" -207759,Macbook Pro Laptop,1,1700,05/16/19 17:14,"695 Jefferson St, New York City, NY 10001" -207760,Lightning Charging Cable,1,14.95,05/06/19 18:41,"375 14th St, San Francisco, CA 94016" -207761,Apple Airpods Headphones,1,150,05/14/19 17:49,"335 Meadow St, Portland, OR 97035" -207762,AAA Batteries (4-pack),1,2.99,05/27/19 21:02,"264 Park St, Los Angeles, CA 90001" -207763,ThinkPad Laptop,1,999.99,05/27/19 10:26,"144 Hill St, San Francisco, CA 94016" -207764,AA Batteries (4-pack),1,3.84,05/01/19 17:43,"546 Hill St, Seattle, WA 98101" -207765,AA Batteries (4-pack),1,3.84,05/20/19 01:14,"92 Dogwood St, New York City, NY 10001" -207766,Wired Headphones,1,11.99,05/30/19 11:15,"568 Highland St, Los Angeles, CA 90001" -207766,Lightning Charging Cable,1,14.95,05/30/19 11:15,"568 Highland St, Los Angeles, CA 90001" -207767,Wired Headphones,1,11.99,05/12/19 17:36,"759 River St, Austin, TX 73301" -207768,AAA Batteries (4-pack),1,2.99,05/05/19 12:41,"724 Chestnut St, San Francisco, CA 94016" -207769,AAA Batteries (4-pack),1,2.99,05/21/19 08:37,"843 7th St, San Francisco, CA 94016" -207770,AAA Batteries (4-pack),1,2.99,05/14/19 17:57,"345 11th St, New York City, NY 10001" -207771,Lightning Charging Cable,1,14.95,05/10/19 18:23,"223 Johnson St, Boston, MA 02215" -207772,LG Dryer,1,600.0,05/19/19 01:24,"304 Cherry St, San Francisco, CA 94016" -207773,ThinkPad Laptop,1,999.99,05/08/19 12:54,"186 Hickory St, Boston, MA 02215" -207773,AA Batteries (4-pack),1,3.84,05/08/19 12:54,"186 Hickory St, Boston, MA 02215" -207774,USB-C Charging Cable,1,11.95,05/12/19 12:26,"430 13th St, Portland, OR 97035" -207775,Macbook Pro Laptop,1,1700,05/09/19 18:16,"358 Cherry St, New York City, NY 10001" -207776,34in Ultrawide Monitor,1,379.99,05/12/19 22:50,"588 Lakeview St, San Francisco, CA 94016" -207777,Apple Airpods Headphones,1,150,05/21/19 02:26,"416 Park St, Atlanta, GA 30301" -207778,27in 4K Gaming Monitor,1,389.99,05/02/19 19:51,"366 Washington St, San Francisco, CA 94016" -207779,Apple Airpods Headphones,1,150,05/31/19 22:57,"26 Johnson St, San Francisco, CA 94016" -207780,Wired Headphones,2,11.99,05/06/19 11:13,"486 Ridge St, Portland, ME 04101" -207781,USB-C Charging Cable,1,11.95,05/26/19 08:28,"761 1st St, Dallas, TX 75001" -207782,AAA Batteries (4-pack),2,2.99,05/28/19 22:45,"440 Center St, Boston, MA 02215" -207783,USB-C Charging Cable,1,11.95,05/10/19 12:35,"815 Main St, Boston, MA 02215" -207784,Lightning Charging Cable,1,14.95,05/18/19 21:00,"52 South St, Los Angeles, CA 90001" -207785,Apple Airpods Headphones,1,150,05/26/19 19:03,"195 9th St, Atlanta, GA 30301" -207786,Wired Headphones,1,11.99,05/08/19 19:29,"19 South St, San Francisco, CA 94016" -207787,AAA Batteries (4-pack),3,2.99,05/02/19 07:01,"786 Sunset St, New York City, NY 10001" -207788,AA Batteries (4-pack),1,3.84,05/15/19 06:10,"134 Madison St, Atlanta, GA 30301" -207789,AA Batteries (4-pack),2,3.84,05/25/19 20:12,"299 11th St, Portland, OR 97035" -207790,AAA Batteries (4-pack),1,2.99,05/08/19 17:19,"433 1st St, Atlanta, GA 30301" -207791,Lightning Charging Cable,1,14.95,05/08/19 19:11,"831 4th St, Los Angeles, CA 90001" -207792,Macbook Pro Laptop,1,1700,05/30/19 22:03,"61 Maple St, Austin, TX 73301" -207793,USB-C Charging Cable,1,11.95,05/02/19 08:27,"367 Spruce St, Los Angeles, CA 90001" -207794,iPhone,1,700,05/06/19 19:19,"760 Cedar St, San Francisco, CA 94016" -207795,ThinkPad Laptop,1,999.99,05/11/19 21:09,"826 11th St, San Francisco, CA 94016" -207796,USB-C Charging Cable,1,11.95,05/23/19 00:40,"292 South St, Atlanta, GA 30301" -207797,27in FHD Monitor,1,149.99,05/20/19 21:07,"439 West St, New York City, NY 10001" -207798,USB-C Charging Cable,1,11.95,05/07/19 18:10,"407 Johnson St, Austin, TX 73301" -207799,Flatscreen TV,1,300,05/27/19 05:33,"276 6th St, Los Angeles, CA 90001" -207800,Bose SoundSport Headphones,1,99.99,05/21/19 20:47,"511 Dogwood St, Los Angeles, CA 90001" -207801,USB-C Charging Cable,1,11.95,05/03/19 11:22,"398 Dogwood St, New York City, NY 10001" -207802,AA Batteries (4-pack),2,3.84,05/28/19 06:23,"850 Highland St, Boston, MA 02215" -207803,AAA Batteries (4-pack),1,2.99,05/19/19 21:21,"340 Walnut St, New York City, NY 10001" -207804,AA Batteries (4-pack),1,3.84,05/11/19 21:46,"319 Washington St, Los Angeles, CA 90001" -207805,AAA Batteries (4-pack),2,2.99,05/20/19 16:40,"143 Church St, New York City, NY 10001" -207806,27in 4K Gaming Monitor,1,389.99,05/18/19 10:36,"838 North St, Los Angeles, CA 90001" -207807,Lightning Charging Cable,1,14.95,05/04/19 19:46,"561 9th St, Atlanta, GA 30301" -207808,AA Batteries (4-pack),1,3.84,05/22/19 01:51,"136 Walnut St, Los Angeles, CA 90001" -207809,Lightning Charging Cable,1,14.95,05/08/19 17:09,"935 Spruce St, Portland, OR 97035" -207810,AA Batteries (4-pack),1,3.84,05/27/19 01:47,"564 10th St, San Francisco, CA 94016" -207811,ThinkPad Laptop,1,999.99,05/17/19 12:28,"798 5th St, San Francisco, CA 94016" -207812,Flatscreen TV,1,300,05/16/19 16:23,"661 Cedar St, Portland, OR 97035" -207813,Lightning Charging Cable,1,14.95,05/09/19 01:12,"894 4th St, Los Angeles, CA 90001" -207814,Wired Headphones,1,11.99,05/10/19 23:43,"386 Washington St, New York City, NY 10001" -207814,Bose SoundSport Headphones,1,99.99,05/10/19 23:43,"386 Washington St, New York City, NY 10001" -207815,ThinkPad Laptop,1,999.99,05/04/19 13:37,"587 Church St, San Francisco, CA 94016" -207816,Lightning Charging Cable,1,14.95,05/19/19 05:25,"82 Pine St, San Francisco, CA 94016" -207817,AA Batteries (4-pack),1,3.84,05/31/19 20:22,"912 Meadow St, New York City, NY 10001" -207818,Bose SoundSport Headphones,1,99.99,05/02/19 21:12,"652 Meadow St, New York City, NY 10001" -207819,Wired Headphones,1,11.99,05/05/19 19:23,"200 South St, Austin, TX 73301" -207820,AAA Batteries (4-pack),1,2.99,05/11/19 19:40,"942 8th St, Austin, TX 73301" -207821,Vareebadd Phone,1,400,05/13/19 01:49,"75 14th St, Boston, MA 02215" -207822,34in Ultrawide Monitor,1,379.99,05/06/19 14:39,"607 Pine St, San Francisco, CA 94016" -207823,Lightning Charging Cable,2,14.95,05/01/19 20:26,"144 Meadow St, Boston, MA 02215" -207824,iPhone,1,700,05/26/19 12:34,"846 South St, Portland, OR 97035" -207825,USB-C Charging Cable,2,11.95,05/27/19 21:09,"696 Church St, Austin, TX 73301" -207826,Apple Airpods Headphones,1,150,05/07/19 16:48,"903 West St, San Francisco, CA 94016" -207827,USB-C Charging Cable,1,11.95,05/04/19 19:14,"412 Maple St, Boston, MA 02215" -207828,iPhone,1,700,05/23/19 19:56,"249 Main St, San Francisco, CA 94016" -207828,Lightning Charging Cable,2,14.95,05/23/19 19:56,"249 Main St, San Francisco, CA 94016" -207829,27in FHD Monitor,1,149.99,05/29/19 06:45,"267 West St, San Francisco, CA 94016" -207830,27in 4K Gaming Monitor,1,389.99,05/29/19 20:24,"113 Madison St, New York City, NY 10001" -207831,Lightning Charging Cable,1,14.95,05/22/19 20:22,"429 Hill St, Dallas, TX 75001" -207832,USB-C Charging Cable,1,11.95,05/26/19 14:17,"261 North St, Dallas, TX 75001" -207833,27in FHD Monitor,1,149.99,05/03/19 14:41,"477 North St, Atlanta, GA 30301" -207833,Flatscreen TV,1,300,05/03/19 14:41,"477 North St, Atlanta, GA 30301" -207834,Wired Headphones,1,11.99,05/16/19 13:08,"682 7th St, Los Angeles, CA 90001" -207835,Flatscreen TV,1,300,05/30/19 19:11,"64 Ridge St, Austin, TX 73301" -207836,USB-C Charging Cable,1,11.95,05/20/19 20:45,"595 Elm St, Los Angeles, CA 90001" -207837,AAA Batteries (4-pack),1,2.99,05/20/19 17:33,"401 Hill St, Portland, OR 97035" -207838,AAA Batteries (4-pack),1,2.99,05/10/19 16:57,"378 Main St, Dallas, TX 75001" -207839,AA Batteries (4-pack),2,3.84,05/05/19 14:59,"411 Chestnut St, Boston, MA 02215" -207840,ThinkPad Laptop,1,999.99,05/04/19 17:54,"802 Madison St, Atlanta, GA 30301" -207841,Apple Airpods Headphones,1,150,05/24/19 10:18,"683 10th St, Los Angeles, CA 90001" -207842,Google Phone,1,600,05/12/19 13:28,"224 Pine St, Los Angeles, CA 90001" -207843,Apple Airpods Headphones,1,150,05/08/19 09:32,"983 North St, Atlanta, GA 30301" -207844,AA Batteries (4-pack),1,3.84,05/26/19 20:11,"274 Sunset St, Portland, ME 04101" -207845,AAA Batteries (4-pack),2,2.99,05/30/19 10:52,"676 Adams St, Atlanta, GA 30301" -207846,Vareebadd Phone,1,400,05/25/19 13:12,"439 Sunset St, San Francisco, CA 94016" -207847,27in FHD Monitor,1,149.99,05/09/19 21:34,"193 Lake St, San Francisco, CA 94016" -207848,USB-C Charging Cable,1,11.95,05/13/19 13:05,"43 Chestnut St, New York City, NY 10001" -207849,AAA Batteries (4-pack),1,2.99,05/01/19 17:58,"33 North St, Dallas, TX 75001" -207850,Apple Airpods Headphones,1,150,05/15/19 14:25,"791 Forest St, Portland, OR 97035" -207851,Bose SoundSport Headphones,1,99.99,05/16/19 21:51,"848 6th St, San Francisco, CA 94016" -207852,USB-C Charging Cable,1,11.95,05/17/19 14:37,"852 10th St, Portland, ME 04101" -207853,Wired Headphones,1,11.99,05/28/19 11:02,"354 Jackson St, Los Angeles, CA 90001" -207854,AA Batteries (4-pack),1,3.84,05/18/19 09:01,"626 13th St, Seattle, WA 98101" -207855,USB-C Charging Cable,1,11.95,05/31/19 08:35,"478 Johnson St, Atlanta, GA 30301" -207856,27in 4K Gaming Monitor,1,389.99,05/12/19 00:01,"760 Church St, Los Angeles, CA 90001" -207857,AA Batteries (4-pack),1,3.84,05/07/19 13:17,"181 Hill St, San Francisco, CA 94016" -207858,27in FHD Monitor,1,149.99,05/30/19 20:53,"323 Lake St, Boston, MA 02215" -207859,AA Batteries (4-pack),1,3.84,05/03/19 22:47,"981 Elm St, San Francisco, CA 94016" -207860,Lightning Charging Cable,1,14.95,05/30/19 18:10,"17 Madison St, Seattle, WA 98101" -207861,AAA Batteries (4-pack),1,2.99,05/09/19 15:15,"213 Chestnut St, Los Angeles, CA 90001" -207862,Lightning Charging Cable,1,14.95,05/26/19 17:49,"17 Lake St, Los Angeles, CA 90001" -207863,27in FHD Monitor,1,149.99,05/18/19 15:39,"377 Lincoln St, San Francisco, CA 94016" -207864,USB-C Charging Cable,1,11.95,05/11/19 12:18,"967 River St, New York City, NY 10001" -207865,AAA Batteries (4-pack),3,2.99,05/10/19 07:48,"847 Forest St, Seattle, WA 98101" -207866,Flatscreen TV,1,300,05/17/19 12:45,"792 Church St, Los Angeles, CA 90001" -207867,27in FHD Monitor,1,149.99,05/13/19 08:39,"281 Maple St, Atlanta, GA 30301" -207868,AA Batteries (4-pack),1,3.84,05/28/19 14:05,"533 Spruce St, Los Angeles, CA 90001" -207869,Flatscreen TV,1,300,05/24/19 08:09,"661 Willow St, Portland, ME 04101" -207870,27in FHD Monitor,1,149.99,05/26/19 20:48,"751 Wilson St, Los Angeles, CA 90001" -207871,Lightning Charging Cable,1,14.95,05/24/19 20:10,"288 Hill St, Dallas, TX 75001" -207872,Lightning Charging Cable,1,14.95,05/25/19 11:07,"984 Adams St, Dallas, TX 75001" -207873,Flatscreen TV,1,300,05/31/19 17:58,"307 Walnut St, San Francisco, CA 94016" -207874,AAA Batteries (4-pack),1,2.99,05/28/19 22:47,"899 12th St, New York City, NY 10001" -207875,AAA Batteries (4-pack),1,2.99,05/18/19 15:00,"448 Highland St, Boston, MA 02215" -207876,27in 4K Gaming Monitor,1,389.99,05/24/19 22:10,"154 Jackson St, Los Angeles, CA 90001" -207877,Lightning Charging Cable,1,14.95,05/29/19 11:57,"610 Lakeview St, New York City, NY 10001" -207878,Wired Headphones,1,11.99,05/16/19 21:55,"741 Pine St, Atlanta, GA 30301" -207879,27in FHD Monitor,1,149.99,05/02/19 09:24,"158 Main St, San Francisco, CA 94016" -207880,AAA Batteries (4-pack),3,2.99,05/13/19 20:48,"718 Meadow St, New York City, NY 10001" -207881,AA Batteries (4-pack),1,3.84,05/30/19 21:09,"365 6th St, New York City, NY 10001" -207882,Bose SoundSport Headphones,1,99.99,05/31/19 16:53,"527 Hill St, Portland, OR 97035" -207883,Lightning Charging Cable,1,14.95,05/19/19 16:00,"768 Jackson St, Dallas, TX 75001" -207884,Bose SoundSport Headphones,1,99.99,05/12/19 06:42,"856 5th St, Dallas, TX 75001" -207885,Flatscreen TV,1,300,05/18/19 07:29,"93 1st St, San Francisco, CA 94016" -207886,USB-C Charging Cable,1,11.95,05/20/19 00:03,"885 Elm St, Portland, OR 97035" -207887,AAA Batteries (4-pack),2,2.99,05/14/19 00:05,"73 7th St, Los Angeles, CA 90001" -207888,Lightning Charging Cable,1,14.95,05/28/19 21:44,"960 9th St, Seattle, WA 98101" -207889,iPhone,1,700,05/31/19 10:58,"93 Lake St, New York City, NY 10001" -,,,,, -207890,AA Batteries (4-pack),1,3.84,05/27/19 17:02,"10 Church St, Dallas, TX 75001" -207891,Lightning Charging Cable,1,14.95,05/04/19 09:43,"280 Willow St, Portland, OR 97035" -207892,Wired Headphones,1,11.99,05/25/19 21:01,"338 2nd St, Atlanta, GA 30301" -207893,AAA Batteries (4-pack),1,2.99,05/20/19 10:25,"992 Sunset St, San Francisco, CA 94016" -207894,AA Batteries (4-pack),1,3.84,05/25/19 18:43,"616 Park St, New York City, NY 10001" -207895,iPhone,1,700,05/31/19 19:35,"761 Cedar St, New York City, NY 10001" -207896,Apple Airpods Headphones,1,150,05/27/19 11:23,"726 14th St, New York City, NY 10001" -207897,Lightning Charging Cable,1,14.95,05/20/19 00:52,"712 Adams St, Seattle, WA 98101" -207898,Bose SoundSport Headphones,1,99.99,05/05/19 09:30,"764 Meadow St, Austin, TX 73301" -207899,iPhone,1,700,05/25/19 18:19,"253 Dogwood St, San Francisco, CA 94016" -207900,Lightning Charging Cable,1,14.95,05/30/19 23:30,"276 8th St, New York City, NY 10001" -207900,AA Batteries (4-pack),1,3.84,05/30/19 23:30,"276 8th St, New York City, NY 10001" -207901,USB-C Charging Cable,1,11.95,05/06/19 11:03,"4 Madison St, Dallas, TX 75001" -207902,AAA Batteries (4-pack),3,2.99,05/21/19 18:50,"653 Lincoln St, Portland, OR 97035" -207903,AA Batteries (4-pack),1,3.84,05/26/19 09:57,"134 Spruce St, Los Angeles, CA 90001" -207904,Flatscreen TV,1,300,05/22/19 20:26,"572 11th St, Seattle, WA 98101" -207905,Lightning Charging Cable,1,14.95,05/14/19 12:37,"694 Sunset St, Atlanta, GA 30301" -207906,Apple Airpods Headphones,1,150,05/24/19 15:15,"383 Jefferson St, Seattle, WA 98101" -207907,Lightning Charging Cable,1,14.95,05/02/19 18:36,"402 Forest St, Los Angeles, CA 90001" -207908,iPhone,1,700,05/24/19 09:12,"468 Jefferson St, New York City, NY 10001" -207908,Lightning Charging Cable,1,14.95,05/24/19 09:12,"468 Jefferson St, New York City, NY 10001" -207909,AA Batteries (4-pack),2,3.84,05/06/19 17:42,"776 8th St, Portland, ME 04101" -207910,USB-C Charging Cable,1,11.95,05/31/19 09:23,"658 2nd St, Atlanta, GA 30301" -207911,Bose SoundSport Headphones,1,99.99,05/23/19 11:37,"110 Park St, Boston, MA 02215" -207912,Lightning Charging Cable,1,14.95,05/26/19 12:39,"435 Highland St, Los Angeles, CA 90001" -207913,Lightning Charging Cable,1,14.95,05/15/19 22:47,"361 Lincoln St, Dallas, TX 75001" -207914,AA Batteries (4-pack),1,3.84,05/28/19 11:42,"96 Main St, Atlanta, GA 30301" -207915,Lightning Charging Cable,1,14.95,05/13/19 07:16,"146 South St, San Francisco, CA 94016" -207916,USB-C Charging Cable,1,11.95,05/04/19 10:56,"22 North St, New York City, NY 10001" -207917,34in Ultrawide Monitor,1,379.99,05/06/19 12:50,"794 Madison St, San Francisco, CA 94016" -207918,Lightning Charging Cable,1,14.95,05/25/19 11:06,"186 South St, Seattle, WA 98101" -207919,AA Batteries (4-pack),1,3.84,05/26/19 13:33,"483 Maple St, Seattle, WA 98101" -207920,USB-C Charging Cable,1,11.95,05/08/19 17:24,"683 8th St, Seattle, WA 98101" -207921,Lightning Charging Cable,1,14.95,05/21/19 10:00,"404 Park St, Los Angeles, CA 90001" -207922,AAA Batteries (4-pack),4,2.99,05/09/19 15:21,"49 5th St, San Francisco, CA 94016" -207923,iPhone,1,700,05/14/19 10:14,"649 Johnson St, San Francisco, CA 94016" -207923,USB-C Charging Cable,1,11.95,05/14/19 10:14,"649 Johnson St, San Francisco, CA 94016" -207924,27in 4K Gaming Monitor,1,389.99,05/09/19 12:44,"479 Hickory St, Boston, MA 02215" -207925,Macbook Pro Laptop,1,1700,05/07/19 08:16,"481 Church St, Atlanta, GA 30301" -207926,AA Batteries (4-pack),1,3.84,05/25/19 18:43,"197 4th St, Los Angeles, CA 90001" -207927,Wired Headphones,1,11.99,05/28/19 14:05,"350 Lake St, Portland, OR 97035" -207928,Lightning Charging Cable,1,14.95,05/09/19 10:38,"327 13th St, Los Angeles, CA 90001" -207929,USB-C Charging Cable,1,11.95,05/20/19 19:21,"265 Maple St, San Francisco, CA 94016" -207930,AA Batteries (4-pack),5,3.84,05/25/19 13:40,"386 12th St, Atlanta, GA 30301" -207931,Lightning Charging Cable,1,14.95,05/07/19 21:12,"595 Wilson St, San Francisco, CA 94016" -207932,LG Dryer,1,600.0,05/30/19 15:08,"303 Pine St, San Francisco, CA 94016" -207933,AA Batteries (4-pack),1,3.84,05/04/19 20:23,"596 5th St, San Francisco, CA 94016" -207934,27in 4K Gaming Monitor,1,389.99,05/24/19 00:15,"813 Church St, New York City, NY 10001" -207935,Google Phone,1,600,05/08/19 15:23,"662 Jackson St, Portland, OR 97035" -207935,USB-C Charging Cable,1,11.95,05/08/19 15:23,"662 Jackson St, Portland, OR 97035" -207935,Wired Headphones,1,11.99,05/08/19 15:23,"662 Jackson St, Portland, OR 97035" -207936,AAA Batteries (4-pack),1,2.99,05/27/19 10:15,"587 Chestnut St, Dallas, TX 75001" -207937,Lightning Charging Cable,1,14.95,05/09/19 14:23,"806 Sunset St, New York City, NY 10001" -207938,USB-C Charging Cable,1,11.95,05/24/19 19:13,"161 Madison St, San Francisco, CA 94016" -207939,27in 4K Gaming Monitor,1,389.99,05/27/19 20:44,"199 Lakeview St, San Francisco, CA 94016" -207940,Wired Headphones,1,11.99,05/04/19 09:37,"548 Church St, Los Angeles, CA 90001" -207941,Apple Airpods Headphones,1,150,05/28/19 18:46,"275 Jackson St, Los Angeles, CA 90001" -207942,AA Batteries (4-pack),2,3.84,05/30/19 18:46,"108 13th St, Los Angeles, CA 90001" -207943,Google Phone,1,600,05/04/19 12:53,"173 Jefferson St, San Francisco, CA 94016" -207944,Google Phone,1,600,05/05/19 09:04,"450 Ridge St, Los Angeles, CA 90001" -207944,Wired Headphones,1,11.99,05/05/19 09:04,"450 Ridge St, Los Angeles, CA 90001" -207945,AAA Batteries (4-pack),4,2.99,05/03/19 16:29,"372 Lakeview St, Atlanta, GA 30301" -207946,AAA Batteries (4-pack),1,2.99,05/17/19 09:12,"905 8th St, New York City, NY 10001" -207947,27in FHD Monitor,1,149.99,05/22/19 10:42,"998 2nd St, Atlanta, GA 30301" -207948,Lightning Charging Cable,1,14.95,05/26/19 08:45,"909 Hill St, Los Angeles, CA 90001" -207949,Bose SoundSport Headphones,1,99.99,05/26/19 11:36,"25 Spruce St, Seattle, WA 98101" -207950,27in FHD Monitor,1,149.99,05/05/19 20:44,"692 Church St, New York City, NY 10001" -207951,Wired Headphones,1,11.99,05/18/19 08:28,"206 9th St, Los Angeles, CA 90001" -207952,34in Ultrawide Monitor,1,379.99,05/23/19 22:29,"145 Lakeview St, San Francisco, CA 94016" -207953,Bose SoundSport Headphones,1,99.99,05/10/19 14:32,"24 Jefferson St, New York City, NY 10001" -207954,AAA Batteries (4-pack),1,2.99,05/10/19 21:19,"586 Main St, New York City, NY 10001" -207955,Apple Airpods Headphones,1,150,05/17/19 08:22,"514 Park St, Boston, MA 02215" -207956,AAA Batteries (4-pack),1,2.99,05/12/19 16:35,"395 9th St, San Francisco, CA 94016" -207957,AA Batteries (4-pack),1,3.84,05/27/19 14:39,"664 Meadow St, Los Angeles, CA 90001" -207958,AAA Batteries (4-pack),1,2.99,05/12/19 08:52,"929 Madison St, Los Angeles, CA 90001" -207959,Vareebadd Phone,1,400,05/12/19 09:45,"365 Forest St, Boston, MA 02215" -207960,20in Monitor,1,109.99,05/19/19 21:45,"547 Elm St, Los Angeles, CA 90001" -207961,34in Ultrawide Monitor,1,379.99,05/31/19 04:39,"937 6th St, Boston, MA 02215" -207962,27in 4K Gaming Monitor,1,389.99,05/04/19 14:57,"315 Jefferson St, San Francisco, CA 94016" -207963,Macbook Pro Laptop,1,1700,05/26/19 08:49,"112 Park St, New York City, NY 10001" -207964,AAA Batteries (4-pack),1,2.99,05/01/19 20:40,"187 South St, Los Angeles, CA 90001" -207965,Lightning Charging Cable,1,14.95,05/07/19 06:01,"292 Wilson St, San Francisco, CA 94016" -207966,AAA Batteries (4-pack),3,2.99,05/09/19 21:24,"94 Walnut St, Seattle, WA 98101" -207967,Wired Headphones,1,11.99,05/27/19 16:44,"339 Madison St, Seattle, WA 98101" -207968,Wired Headphones,2,11.99,05/19/19 18:22,"604 Walnut St, Atlanta, GA 30301" -207969,Apple Airpods Headphones,1,150,05/17/19 16:33,"729 6th St, San Francisco, CA 94016" -207970,AAA Batteries (4-pack),1,2.99,05/07/19 18:51,"219 Center St, Atlanta, GA 30301" -207971,Apple Airpods Headphones,1,150,05/04/19 13:18,"823 Hill St, Boston, MA 02215" -207972,34in Ultrawide Monitor,1,379.99,05/30/19 09:55,"607 2nd St, Portland, OR 97035" -207973,Apple Airpods Headphones,1,150,05/02/19 18:21,"517 9th St, New York City, NY 10001" -207974,Wired Headphones,1,11.99,05/13/19 11:11,"189 Center St, Los Angeles, CA 90001" -207975,Bose SoundSport Headphones,1,99.99,05/12/19 11:22,"943 Lake St, New York City, NY 10001" -207976,Google Phone,1,600,05/03/19 20:17,"647 Wilson St, Boston, MA 02215" -207977,34in Ultrawide Monitor,1,379.99,05/26/19 12:26,"15 Hickory St, San Francisco, CA 94016" -207978,34in Ultrawide Monitor,1,379.99,05/22/19 17:40,"116 9th St, Dallas, TX 75001" -207979,Wired Headphones,1,11.99,05/28/19 13:34,"829 Forest St, Boston, MA 02215" -207980,27in FHD Monitor,1,149.99,05/25/19 17:07,"440 Maple St, Dallas, TX 75001" -207981,Apple Airpods Headphones,1,150,05/16/19 13:56,"940 Madison St, Boston, MA 02215" -207982,USB-C Charging Cable,1,11.95,05/28/19 14:47,"598 Pine St, New York City, NY 10001" -207983,34in Ultrawide Monitor,1,379.99,05/08/19 18:55,"477 Ridge St, Seattle, WA 98101" -207984,AAA Batteries (4-pack),4,2.99,05/20/19 23:51,"351 Spruce St, San Francisco, CA 94016" -207985,USB-C Charging Cable,1,11.95,05/28/19 18:49,"751 Park St, Portland, OR 97035" -207986,Flatscreen TV,1,300,05/04/19 20:35,"782 Maple St, New York City, NY 10001" -207987,AAA Batteries (4-pack),1,2.99,05/12/19 13:14,"175 10th St, Dallas, TX 75001" -207988,AAA Batteries (4-pack),1,2.99,05/23/19 12:27,"756 10th St, Atlanta, GA 30301" -207989,Bose SoundSport Headphones,1,99.99,05/15/19 21:12,"201 West St, New York City, NY 10001" -207990,Wired Headphones,2,11.99,05/14/19 14:32,"598 South St, San Francisco, CA 94016" -207991,Lightning Charging Cable,1,14.95,05/23/19 01:14,"826 Cedar St, Austin, TX 73301" -207992,Wired Headphones,1,11.99,05/09/19 12:40,"472 Forest St, Dallas, TX 75001" -207993,AAA Batteries (4-pack),3,2.99,05/10/19 22:45,"401 14th St, Dallas, TX 75001" -207994,AAA Batteries (4-pack),1,2.99,05/13/19 22:40,"802 10th St, Boston, MA 02215" -207995,Lightning Charging Cable,1,14.95,05/31/19 23:02,"740 Spruce St, Austin, TX 73301" -207996,AA Batteries (4-pack),1,3.84,05/31/19 18:41,"83 Center St, San Francisco, CA 94016" -207997,Vareebadd Phone,1,400,05/23/19 11:56,"646 Walnut St, Los Angeles, CA 90001" -207997,USB-C Charging Cable,1,11.95,05/23/19 11:56,"646 Walnut St, Los Angeles, CA 90001" -207997,Bose SoundSport Headphones,1,99.99,05/23/19 11:56,"646 Walnut St, Los Angeles, CA 90001" -207998,AA Batteries (4-pack),1,3.84,05/02/19 20:49,"184 6th St, San Francisco, CA 94016" -207999,27in FHD Monitor,1,149.99,05/15/19 23:46,"386 9th St, Boston, MA 02215" -208000,iPhone,1,700,05/17/19 13:19,"241 River St, New York City, NY 10001" -208000,Wired Headphones,1,11.99,05/17/19 13:19,"241 River St, New York City, NY 10001" -208001,iPhone,1,700,05/08/19 11:26,"579 Main St, Seattle, WA 98101" -208002,Wired Headphones,1,11.99,05/31/19 10:43,"45 Jefferson St, Austin, TX 73301" -208003,USB-C Charging Cable,1,11.95,05/29/19 21:34,"96 6th St, Dallas, TX 75001" -208004,Lightning Charging Cable,1,14.95,05/08/19 13:32,"271 Park St, Seattle, WA 98101" -208005,AAA Batteries (4-pack),1,2.99,05/09/19 18:13,"772 West St, Los Angeles, CA 90001" -208006,AAA Batteries (4-pack),1,2.99,05/05/19 11:19,"493 10th St, Los Angeles, CA 90001" -208007,iPhone,1,700,05/22/19 17:25,"927 Chestnut St, Los Angeles, CA 90001" -208008,27in FHD Monitor,1,149.99,05/03/19 08:16,"177 Lakeview St, San Francisco, CA 94016" -208009,AA Batteries (4-pack),1,3.84,05/09/19 17:29,"879 Forest St, New York City, NY 10001" -208010,Bose SoundSport Headphones,1,99.99,05/11/19 10:49,"790 11th St, Portland, OR 97035" -208011,AA Batteries (4-pack),2,3.84,05/07/19 10:12,"443 Forest St, Seattle, WA 98101" -208012,iPhone,1,700,05/28/19 10:34,"878 Church St, Los Angeles, CA 90001" -208013,27in 4K Gaming Monitor,1,389.99,05/25/19 11:29,"20 14th St, Boston, MA 02215" -208014,Macbook Pro Laptop,1,1700,05/22/19 10:58,"595 Maple St, Dallas, TX 75001" -208015,USB-C Charging Cable,1,11.95,05/20/19 15:54,"782 7th St, New York City, NY 10001" -208016,Wired Headphones,1,11.99,05/03/19 16:32,"807 Park St, Seattle, WA 98101" -208017,Lightning Charging Cable,1,14.95,05/19/19 14:31,"594 Walnut St, Boston, MA 02215" -208018,Macbook Pro Laptop,1,1700,05/16/19 17:43,"164 Maple St, New York City, NY 10001" -208019,AAA Batteries (4-pack),2,2.99,05/19/19 11:16,"618 12th St, Los Angeles, CA 90001" -208020,27in FHD Monitor,1,149.99,05/01/19 11:20,"229 Sunset St, Atlanta, GA 30301" -208021,USB-C Charging Cable,1,11.95,05/17/19 19:32,"679 Highland St, San Francisco, CA 94016" -208022,Wired Headphones,1,11.99,05/01/19 13:28,"489 Hill St, New York City, NY 10001" -208023,AAA Batteries (4-pack),1,2.99,05/11/19 11:42,"568 Wilson St, San Francisco, CA 94016" -208024,Lightning Charging Cable,1,14.95,05/20/19 21:42,"220 Walnut St, New York City, NY 10001" -208025,Wired Headphones,2,11.99,05/30/19 08:26,"736 Madison St, Atlanta, GA 30301" -208026,Wired Headphones,1,11.99,05/18/19 14:35,"402 Pine St, Portland, OR 97035" -208027,ThinkPad Laptop,1,999.99,05/04/19 08:34,"462 4th St, San Francisco, CA 94016" -208028,27in 4K Gaming Monitor,1,389.99,05/02/19 20:50,"106 Hill St, Seattle, WA 98101" -208029,34in Ultrawide Monitor,1,379.99,05/22/19 18:25,"850 Lincoln St, Los Angeles, CA 90001" -208030,Wired Headphones,1,11.99,05/22/19 11:53,"584 River St, Seattle, WA 98101" -208031,USB-C Charging Cable,1,11.95,05/18/19 23:58,"633 Dogwood St, Boston, MA 02215" -208032,27in FHD Monitor,1,149.99,05/21/19 17:19,"783 4th St, San Francisco, CA 94016" -208033,AA Batteries (4-pack),1,3.84,05/09/19 10:32,"460 Sunset St, Atlanta, GA 30301" -208034,Macbook Pro Laptop,1,1700,05/03/19 12:44,"63 Jackson St, Austin, TX 73301" -208035,AAA Batteries (4-pack),1,2.99,05/23/19 23:51,"23 Maple St, Seattle, WA 98101" -208036,USB-C Charging Cable,1,11.95,05/15/19 19:13,"296 West St, Dallas, TX 75001" -208037,Bose SoundSport Headphones,1,99.99,05/02/19 13:51,"689 Center St, San Francisco, CA 94016" -208038,Bose SoundSport Headphones,1,99.99,05/17/19 18:47,"991 10th St, Los Angeles, CA 90001" -208039,Apple Airpods Headphones,1,150,05/28/19 20:59,"229 Highland St, San Francisco, CA 94016" -208040,AA Batteries (4-pack),2,3.84,05/28/19 22:44,"15 Cedar St, San Francisco, CA 94016" -208041,Bose SoundSport Headphones,1,99.99,05/25/19 17:19,"44 Center St, Los Angeles, CA 90001" -208042,27in 4K Gaming Monitor,1,389.99,05/03/19 19:15,"813 Church St, New York City, NY 10001" -208043,Vareebadd Phone,1,400,05/25/19 20:58,"560 Dogwood St, New York City, NY 10001" -208044,Bose SoundSport Headphones,1,99.99,05/10/19 14:50,"704 10th St, San Francisco, CA 94016" -208045,USB-C Charging Cable,1,11.95,05/21/19 14:32,"937 Chestnut St, Boston, MA 02215" -208046,AAA Batteries (4-pack),2,2.99,05/06/19 18:46,"307 Cedar St, Los Angeles, CA 90001" -208047,Wired Headphones,1,11.99,05/17/19 07:23,"31 4th St, New York City, NY 10001" -208048,iPhone,1,700,05/06/19 21:30,"84 Lake St, Boston, MA 02215" -208049,Lightning Charging Cable,1,14.95,05/04/19 09:27,"308 Washington St, Austin, TX 73301" -208050,AA Batteries (4-pack),1,3.84,05/24/19 23:35,"428 Main St, Seattle, WA 98101" -208051,Google Phone,1,600,05/17/19 19:44,"716 Ridge St, Dallas, TX 75001" -208052,Apple Airpods Headphones,1,150,05/25/19 14:39,"33 South St, New York City, NY 10001" -208053,27in FHD Monitor,1,149.99,05/02/19 15:44,"807 11th St, New York City, NY 10001" -208054,AA Batteries (4-pack),1,3.84,05/17/19 19:54,"368 Highland St, New York City, NY 10001" -208055,USB-C Charging Cable,1,11.95,05/15/19 14:38,"998 Highland St, Boston, MA 02215" -208056,AA Batteries (4-pack),1,3.84,05/05/19 09:37,"525 Cherry St, Seattle, WA 98101" -208057,AAA Batteries (4-pack),1,2.99,05/01/19 16:49,"115 Adams St, Los Angeles, CA 90001" -208058,27in 4K Gaming Monitor,1,389.99,05/01/19 05:05,"192 River St, New York City, NY 10001" -208059,Wired Headphones,1,11.99,05/15/19 21:12,"839 Lincoln St, San Francisco, CA 94016" -208060,LG Washing Machine,1,600.0,05/28/19 15:52,"473 Madison St, San Francisco, CA 94016" -208061,USB-C Charging Cable,1,11.95,05/13/19 23:29,"583 10th St, San Francisco, CA 94016" -208062,AA Batteries (4-pack),1,3.84,05/07/19 14:09,"233 Dogwood St, Dallas, TX 75001" -208063,USB-C Charging Cable,1,11.95,05/23/19 14:19,"460 Wilson St, Boston, MA 02215" -208064,Lightning Charging Cable,1,14.95,05/05/19 13:40,"933 Pine St, Seattle, WA 98101" -208065,Apple Airpods Headphones,1,150,05/08/19 12:10,"745 Jackson St, Atlanta, GA 30301" -208066,AAA Batteries (4-pack),1,2.99,05/29/19 15:02,"827 Walnut St, Portland, OR 97035" -208067,Lightning Charging Cable,1,14.95,05/05/19 20:44,"629 5th St, Los Angeles, CA 90001" -208068,Bose SoundSport Headphones,1,99.99,05/04/19 16:06,"626 Hill St, Austin, TX 73301" -208069,Flatscreen TV,1,300,05/15/19 10:23,"756 Hill St, Austin, TX 73301" -208070,Bose SoundSport Headphones,1,99.99,05/17/19 16:57,"866 Willow St, Seattle, WA 98101" -208071,iPhone,1,700,05/03/19 02:34,"853 Forest St, Atlanta, GA 30301" -208072,USB-C Charging Cable,1,11.95,05/19/19 15:25,"378 South St, Austin, TX 73301" -208073,AAA Batteries (4-pack),1,2.99,05/13/19 08:16,"736 11th St, Atlanta, GA 30301" -208074,Bose SoundSport Headphones,1,99.99,05/08/19 07:52,"544 Forest St, Los Angeles, CA 90001" -208075,Bose SoundSport Headphones,1,99.99,05/12/19 17:12,"661 Willow St, Dallas, TX 75001" -208076,AA Batteries (4-pack),1,3.84,05/16/19 13:11,"834 River St, Atlanta, GA 30301" -208076,Google Phone,1,600,05/16/19 13:11,"834 River St, Atlanta, GA 30301" -208077,20in Monitor,1,109.99,05/11/19 23:39,"459 7th St, San Francisco, CA 94016" -208078,Lightning Charging Cable,1,14.95,05/22/19 22:18,"341 Cherry St, San Francisco, CA 94016" -208079,Lightning Charging Cable,1,14.95,05/13/19 11:48,"218 10th St, Los Angeles, CA 90001" -208080,34in Ultrawide Monitor,1,379.99,05/24/19 09:44,"654 South St, Los Angeles, CA 90001" -208081,Vareebadd Phone,1,400,05/17/19 16:53,"983 Elm St, Seattle, WA 98101" -208082,Wired Headphones,1,11.99,05/06/19 17:53,"517 Madison St, Los Angeles, CA 90001" -208083,AAA Batteries (4-pack),1,2.99,05/18/19 22:14,"549 Hickory St, Boston, MA 02215" -208084,Apple Airpods Headphones,1,150,05/07/19 14:47,"334 10th St, San Francisco, CA 94016" -208085,Macbook Pro Laptop,1,1700,05/19/19 18:47,"307 North St, Boston, MA 02215" -208086,AAA Batteries (4-pack),1,2.99,05/15/19 18:20,"785 Church St, Los Angeles, CA 90001" -208087,Apple Airpods Headphones,1,150,05/01/19 18:15,"730 Madison St, Portland, OR 97035" -208088,USB-C Charging Cable,2,11.95,05/14/19 21:44,"3 Cedar St, New York City, NY 10001" -208089,27in FHD Monitor,1,149.99,05/08/19 22:01,"869 North St, Atlanta, GA 30301" -208090,Lightning Charging Cable,1,14.95,05/23/19 09:12,"874 Wilson St, Portland, OR 97035" -208091,ThinkPad Laptop,1,999.99,05/09/19 17:09,"780 Spruce St, Seattle, WA 98101" -208092,Bose SoundSport Headphones,1,99.99,05/13/19 20:14,"156 12th St, Austin, TX 73301" -208093,AAA Batteries (4-pack),1,2.99,05/18/19 22:45,"571 8th St, Portland, OR 97035" -208094,27in 4K Gaming Monitor,1,389.99,05/04/19 09:05,"389 Park St, Los Angeles, CA 90001" -208095,AA Batteries (4-pack),1,3.84,05/08/19 00:23,"357 Walnut St, San Francisco, CA 94016" -208096,AA Batteries (4-pack),1,3.84,05/22/19 12:33,"139 5th St, San Francisco, CA 94016" -208097,Wired Headphones,1,11.99,05/23/19 10:29,"587 Cherry St, Los Angeles, CA 90001" -208098,27in FHD Monitor,1,149.99,05/08/19 20:53,"494 8th St, Seattle, WA 98101" -208099,34in Ultrawide Monitor,1,379.99,05/30/19 08:35,"886 12th St, Austin, TX 73301" -208100,Bose SoundSport Headphones,1,99.99,05/13/19 03:12,"236 Ridge St, San Francisco, CA 94016" -208101,iPhone,1,700,05/22/19 12:54,"90 Hickory St, Seattle, WA 98101" -208102,Flatscreen TV,1,300,05/26/19 11:06,"463 11th St, New York City, NY 10001" -208103,Bose SoundSport Headphones,1,99.99,05/30/19 09:11,"79 Johnson St, Seattle, WA 98101" -208104,iPhone,1,700,05/12/19 21:23,"160 South St, Dallas, TX 75001" -208104,Lightning Charging Cable,1,14.95,05/12/19 21:23,"160 South St, Dallas, TX 75001" -208105,Apple Airpods Headphones,1,150,05/03/19 18:36,"484 Ridge St, Atlanta, GA 30301" -208106,27in FHD Monitor,1,149.99,05/29/19 19:13,"997 Elm St, Portland, OR 97035" -208107,Wired Headphones,1,11.99,05/14/19 11:18,"186 North St, New York City, NY 10001" -208108,Lightning Charging Cable,1,14.95,05/28/19 21:59,"595 Ridge St, New York City, NY 10001" -208109,USB-C Charging Cable,1,11.95,05/14/19 20:51,"141 South St, New York City, NY 10001" -208110,Apple Airpods Headphones,1,150,05/23/19 21:18,"61 9th St, San Francisco, CA 94016" -208111,AA Batteries (4-pack),2,3.84,05/28/19 09:25,"552 Willow St, Portland, OR 97035" -208112,Lightning Charging Cable,1,14.95,05/18/19 12:00,"426 Wilson St, Austin, TX 73301" -208113,AAA Batteries (4-pack),3,2.99,05/09/19 20:21,"273 4th St, Atlanta, GA 30301" -208114,Bose SoundSport Headphones,1,99.99,05/04/19 16:30,"342 Jackson St, Boston, MA 02215" -208115,Lightning Charging Cable,1,14.95,05/25/19 22:53,"265 River St, Austin, TX 73301" -208116,Wired Headphones,1,11.99,05/05/19 18:31,"975 Cherry St, Atlanta, GA 30301" -208117,USB-C Charging Cable,1,11.95,05/24/19 00:45,"159 Spruce St, San Francisco, CA 94016" -208118,Wired Headphones,1,11.99,05/21/19 15:17,"877 5th St, Boston, MA 02215" -208119,Lightning Charging Cable,1,14.95,05/24/19 09:40,"178 6th St, New York City, NY 10001" -208120,27in 4K Gaming Monitor,1,389.99,05/29/19 14:46,"843 Ridge St, San Francisco, CA 94016" -208121,AAA Batteries (4-pack),2,2.99,05/12/19 20:08,"367 Cedar St, Seattle, WA 98101" -208122,AA Batteries (4-pack),1,3.84,05/08/19 09:19,"432 Madison St, San Francisco, CA 94016" -208123,USB-C Charging Cable,1,11.95,05/06/19 00:58,"137 Johnson St, Boston, MA 02215" -208124,AA Batteries (4-pack),1,3.84,05/12/19 13:55,"998 12th St, Los Angeles, CA 90001" -208125,Lightning Charging Cable,1,14.95,05/07/19 08:21,"480 Park St, Dallas, TX 75001" -208126,Wired Headphones,1,11.99,05/17/19 18:27,"742 Hill St, Seattle, WA 98101" -208127,ThinkPad Laptop,1,999.99,05/22/19 22:43,"17 Walnut St, Boston, MA 02215" -208128,Macbook Pro Laptop,1,1700,05/30/19 21:47,"297 Lincoln St, New York City, NY 10001" -208129,Apple Airpods Headphones,1,150,05/16/19 13:30,"693 5th St, San Francisco, CA 94016" -208130,Wired Headphones,1,11.99,05/23/19 21:51,"528 River St, San Francisco, CA 94016" -208131,27in FHD Monitor,1,149.99,05/11/19 14:37,"272 Cherry St, Portland, OR 97035" -208132,iPhone,1,700,05/03/19 19:52,"833 Cherry St, Boston, MA 02215" -208133,Apple Airpods Headphones,1,150,05/21/19 23:22,"191 Park St, San Francisco, CA 94016" -208134,USB-C Charging Cable,1,11.95,05/17/19 10:36,"671 4th St, Austin, TX 73301" -208135,20in Monitor,1,109.99,05/29/19 19:47,"778 Main St, New York City, NY 10001" -208136,AA Batteries (4-pack),1,3.84,05/30/19 18:39,"607 River St, San Francisco, CA 94016" -208137,Apple Airpods Headphones,1,150,05/23/19 07:37,"391 Jefferson St, Seattle, WA 98101" -208138,27in FHD Monitor,1,149.99,05/06/19 23:05,"104 Hickory St, Dallas, TX 75001" -208139,AAA Batteries (4-pack),1,2.99,05/10/19 20:24,"439 South St, Seattle, WA 98101" -208140,Lightning Charging Cable,1,14.95,05/29/19 08:16,"372 Lake St, New York City, NY 10001" -208141,Lightning Charging Cable,1,14.95,05/12/19 11:17,"247 Adams St, Boston, MA 02215" -208142,iPhone,1,700,05/12/19 11:36,"792 Meadow St, Los Angeles, CA 90001" -208143,Wired Headphones,2,11.99,05/11/19 09:23,"439 9th St, New York City, NY 10001" -208144,AA Batteries (4-pack),1,3.84,05/04/19 23:34,"354 Lake St, Seattle, WA 98101" -208145,AAA Batteries (4-pack),1,2.99,05/07/19 14:12,"972 Adams St, Portland, OR 97035" -208146,USB-C Charging Cable,1,11.95,05/18/19 07:49,"397 12th St, Austin, TX 73301" -208147,AAA Batteries (4-pack),1,2.99,05/07/19 17:40,"287 Maple St, Seattle, WA 98101" -208148,Wired Headphones,1,11.99,05/24/19 19:17,"536 North St, San Francisco, CA 94016" -208149,Lightning Charging Cable,1,14.95,05/24/19 08:39,"491 Forest St, Los Angeles, CA 90001" -208150,Lightning Charging Cable,1,14.95,05/13/19 10:04,"620 Wilson St, Atlanta, GA 30301" -208151,USB-C Charging Cable,1,11.95,05/16/19 00:35,"785 Hickory St, Los Angeles, CA 90001" -208152,Google Phone,1,600,05/16/19 23:59,"411 West St, New York City, NY 10001" -208153,USB-C Charging Cable,1,11.95,05/29/19 21:37,"408 14th St, Seattle, WA 98101" -208154,Wired Headphones,1,11.99,05/07/19 12:34,"862 6th St, New York City, NY 10001" -208155,AAA Batteries (4-pack),2,2.99,05/15/19 20:03,"235 Center St, San Francisco, CA 94016" -208156,USB-C Charging Cable,1,11.95,05/19/19 21:00,"293 Adams St, Boston, MA 02215" -208157,AA Batteries (4-pack),1,3.84,05/11/19 09:24,"749 Forest St, New York City, NY 10001" -208158,AA Batteries (4-pack),1,3.84,05/25/19 22:38,"69 8th St, Atlanta, GA 30301" -208159,Wired Headphones,1,11.99,05/24/19 08:26,"629 Main St, San Francisco, CA 94016" -208160,27in FHD Monitor,1,149.99,05/17/19 11:57,"269 Spruce St, Atlanta, GA 30301" -208161,ThinkPad Laptop,1,999.99,05/05/19 16:25,"180 Wilson St, Los Angeles, CA 90001" -208162,AA Batteries (4-pack),2,3.84,05/06/19 12:46,"916 8th St, Seattle, WA 98101" -208163,AAA Batteries (4-pack),1,2.99,05/10/19 19:28,"634 Meadow St, New York City, NY 10001" -208164,Apple Airpods Headphones,1,150,05/09/19 17:08,"460 6th St, Dallas, TX 75001" -208165,AA Batteries (4-pack),3,3.84,05/14/19 16:00,"557 Jefferson St, San Francisco, CA 94016" -208166,USB-C Charging Cable,3,11.95,05/10/19 16:08,"520 13th St, San Francisco, CA 94016" -208167,Apple Airpods Headphones,1,150,05/03/19 06:58,"314 Forest St, San Francisco, CA 94016" -208168,Bose SoundSport Headphones,1,99.99,05/28/19 23:27,"282 Walnut St, Boston, MA 02215" -208169,Vareebadd Phone,1,400,05/31/19 14:35,"983 14th St, Los Angeles, CA 90001" -208170,27in 4K Gaming Monitor,1,389.99,05/30/19 11:05,"455 Willow St, Seattle, WA 98101" -208171,AAA Batteries (4-pack),1,2.99,05/21/19 15:10,"607 Hickory St, New York City, NY 10001" -208172,Apple Airpods Headphones,1,150,05/08/19 14:17,"769 9th St, Seattle, WA 98101" -208173,Bose SoundSport Headphones,1,99.99,05/07/19 17:21,"883 West St, Atlanta, GA 30301" -208174,Macbook Pro Laptop,1,1700,05/21/19 20:24,"24 13th St, San Francisco, CA 94016" -208174,27in 4K Gaming Monitor,1,389.99,05/21/19 20:24,"24 13th St, San Francisco, CA 94016" -208175,ThinkPad Laptop,1,999.99,05/01/19 08:43,"524 Lincoln St, Atlanta, GA 30301" -208176,Apple Airpods Headphones,1,150,05/25/19 20:24,"11 Willow St, New York City, NY 10001" -208177,AA Batteries (4-pack),1,3.84,05/31/19 23:27,"953 9th St, Seattle, WA 98101" -208178,Bose SoundSport Headphones,1,99.99,05/25/19 14:23,"138 Madison St, Atlanta, GA 30301" -208179,Apple Airpods Headphones,1,150,05/09/19 18:23,"120 Hill St, Boston, MA 02215" -208180,Apple Airpods Headphones,1,150,05/17/19 10:54,"950 10th St, Seattle, WA 98101" -208181,iPhone,1,700,05/30/19 18:23,"358 Jackson St, Los Angeles, CA 90001" -208181,Lightning Charging Cable,1,14.95,05/30/19 18:23,"358 Jackson St, Los Angeles, CA 90001" -208182,Wired Headphones,1,11.99,05/23/19 18:44,"496 11th St, Portland, OR 97035" -208183,34in Ultrawide Monitor,1,379.99,05/02/19 07:08,"95 Forest St, San Francisco, CA 94016" -208184,AAA Batteries (4-pack),1,2.99,05/24/19 22:36,"437 South St, San Francisco, CA 94016" -208185,AAA Batteries (4-pack),1,2.99,05/10/19 08:22,"322 Chestnut St, Boston, MA 02215" -208186,20in Monitor,1,109.99,05/08/19 10:13,"469 1st St, Dallas, TX 75001" -208187,Apple Airpods Headphones,1,150,05/25/19 19:20,"464 Elm St, Portland, OR 97035" -208188,Lightning Charging Cable,1,14.95,05/23/19 17:15,"923 Lincoln St, San Francisco, CA 94016" -208189,Apple Airpods Headphones,1,150,05/19/19 00:13,"695 Cherry St, Boston, MA 02215" -208190,Flatscreen TV,1,300,05/28/19 15:09,"434 12th St, San Francisco, CA 94016" -208191,USB-C Charging Cable,1,11.95,05/31/19 15:04,"529 Maple St, Los Angeles, CA 90001" -208192,AA Batteries (4-pack),1,3.84,05/01/19 21:02,"991 Jackson St, San Francisco, CA 94016" -208193,Apple Airpods Headphones,1,150,05/04/19 11:55,"414 Dogwood St, New York City, NY 10001" -208194,34in Ultrawide Monitor,1,379.99,05/16/19 22:41,"942 West St, Portland, OR 97035" -208195,Flatscreen TV,1,300,05/25/19 15:03,"374 Hickory St, Los Angeles, CA 90001" -208196,AA Batteries (4-pack),1,3.84,05/30/19 13:44,"668 14th St, San Francisco, CA 94016" -208197,AA Batteries (4-pack),1,3.84,05/16/19 17:53,"629 Wilson St, Los Angeles, CA 90001" -208197,AAA Batteries (4-pack),3,2.99,05/16/19 17:53,"629 Wilson St, Los Angeles, CA 90001" -208198,Lightning Charging Cable,1,14.95,05/23/19 14:29,"834 Maple St, San Francisco, CA 94016" -208198,AAA Batteries (4-pack),1,2.99,05/23/19 14:29,"834 Maple St, San Francisco, CA 94016" -208199,Google Phone,1,600,05/22/19 15:21,"503 Spruce St, San Francisco, CA 94016" -208200,Apple Airpods Headphones,1,150,05/16/19 13:11,"15 Church St, Los Angeles, CA 90001" -208201,Macbook Pro Laptop,1,1700,05/22/19 12:32,"649 Main St, New York City, NY 10001" -208202,USB-C Charging Cable,1,11.95,05/20/19 21:55,"256 Chestnut St, Boston, MA 02215" -208203,Vareebadd Phone,1,400,05/28/19 20:19,"812 Walnut St, San Francisco, CA 94016" -208204,Apple Airpods Headphones,1,150,05/14/19 19:33,"925 River St, Seattle, WA 98101" -208205,AAA Batteries (4-pack),2,2.99,05/08/19 10:29,"376 9th St, Atlanta, GA 30301" -208206,Lightning Charging Cable,1,14.95,05/26/19 08:18,"900 South St, New York City, NY 10001" -208207,AA Batteries (4-pack),1,3.84,05/11/19 21:33,"474 Hickory St, Dallas, TX 75001" -208208,Bose SoundSport Headphones,1,99.99,05/31/19 20:56,"526 Church St, Los Angeles, CA 90001" -208209,Lightning Charging Cable,1,14.95,05/16/19 15:31,"456 Pine St, Seattle, WA 98101" -208210,AA Batteries (4-pack),3,3.84,05/28/19 14:22,"245 10th St, New York City, NY 10001" -208211,USB-C Charging Cable,1,11.95,05/22/19 19:52,"79 Willow St, New York City, NY 10001" -208212,Lightning Charging Cable,1,14.95,05/26/19 18:26,"82 West St, San Francisco, CA 94016" -208213,AAA Batteries (4-pack),1,2.99,05/16/19 17:16,"674 Sunset St, Boston, MA 02215" -208214,Lightning Charging Cable,1,14.95,05/23/19 22:05,"921 10th St, Seattle, WA 98101" -208215,iPhone,1,700,05/22/19 22:26,"954 10th St, Los Angeles, CA 90001" -208215,Lightning Charging Cable,1,14.95,05/22/19 22:26,"954 10th St, Los Angeles, CA 90001" -208216,Lightning Charging Cable,1,14.95,05/07/19 13:46,"455 Park St, Seattle, WA 98101" -208217,USB-C Charging Cable,1,11.95,05/08/19 10:10,"741 11th St, Boston, MA 02215" -208218,Apple Airpods Headphones,1,150,05/23/19 18:19,"962 Park St, San Francisco, CA 94016" -208219,Bose SoundSport Headphones,1,99.99,05/31/19 12:04,"182 2nd St, Los Angeles, CA 90001" -208220,ThinkPad Laptop,1,999.99,05/13/19 17:55,"385 Wilson St, San Francisco, CA 94016" -208221,Bose SoundSport Headphones,1,99.99,05/07/19 14:57,"226 8th St, Los Angeles, CA 90001" -208222,Macbook Pro Laptop,1,1700,05/09/19 20:21,"820 Hill St, Boston, MA 02215" -208223,Google Phone,1,600,05/05/19 19:01,"417 14th St, Boston, MA 02215" -208223,Bose SoundSport Headphones,1,99.99,05/05/19 19:01,"417 14th St, Boston, MA 02215" -208224,Lightning Charging Cable,1,14.95,05/08/19 17:38,"649 Church St, San Francisco, CA 94016" -208225,AAA Batteries (4-pack),1,2.99,05/13/19 12:55,"886 Cherry St, Los Angeles, CA 90001" -208226,Bose SoundSport Headphones,1,99.99,05/02/19 09:47,"83 Willow St, Atlanta, GA 30301" -208227,AAA Batteries (4-pack),1,2.99,05/03/19 11:08,"489 14th St, Dallas, TX 75001" -208228,AAA Batteries (4-pack),2,2.99,05/29/19 07:05,"971 Lake St, Atlanta, GA 30301" -208228,Wired Headphones,1,11.99,05/29/19 07:05,"971 Lake St, Atlanta, GA 30301" -208229,Bose SoundSport Headphones,1,99.99,05/17/19 17:51,"746 10th St, Boston, MA 02215" -208230,AAA Batteries (4-pack),1,2.99,05/26/19 17:57,"137 10th St, San Francisco, CA 94016" -208231,AA Batteries (4-pack),1,3.84,05/26/19 14:18,"543 Lakeview St, Boston, MA 02215" -208232,Lightning Charging Cable,1,14.95,05/05/19 13:45,"224 Pine St, Portland, ME 04101" -208233,AAA Batteries (4-pack),1,2.99,05/17/19 20:06,"963 Dogwood St, Boston, MA 02215" -208234,Bose SoundSport Headphones,1,99.99,05/03/19 16:46,"167 Maple St, Atlanta, GA 30301" -208235,Lightning Charging Cable,1,14.95,05/05/19 11:56,"499 Forest St, San Francisco, CA 94016" -208236,34in Ultrawide Monitor,1,379.99,05/01/19 13:28,"112 Elm St, Dallas, TX 75001" -208237,Bose SoundSport Headphones,1,99.99,05/12/19 22:04,"427 5th St, San Francisco, CA 94016" -208238,USB-C Charging Cable,2,11.95,05/17/19 07:41,"957 Johnson St, San Francisco, CA 94016" -208239,AAA Batteries (4-pack),1,2.99,05/03/19 12:18,"321 9th St, San Francisco, CA 94016" -208240,Apple Airpods Headphones,1,150,05/27/19 19:31,"350 Main St, Atlanta, GA 30301" -208241,Lightning Charging Cable,1,14.95,05/13/19 00:11,"597 Cherry St, Los Angeles, CA 90001" -208242,AA Batteries (4-pack),1,3.84,05/31/19 09:22,"141 Dogwood St, New York City, NY 10001" -208243,Flatscreen TV,1,300,05/21/19 22:02,"122 Main St, San Francisco, CA 94016" -208244,Wired Headphones,1,11.99,05/10/19 04:16,"947 6th St, Austin, TX 73301" -208245,Apple Airpods Headphones,1,150,05/15/19 19:00,"726 6th St, San Francisco, CA 94016" -208246,Apple Airpods Headphones,1,150,05/21/19 10:34,"786 River St, Boston, MA 02215" -208247,Bose SoundSport Headphones,1,99.99,05/08/19 15:43,"634 Hickory St, New York City, NY 10001" -208248,iPhone,1,700,05/14/19 13:53,"862 Dogwood St, San Francisco, CA 94016" -208249,Bose SoundSport Headphones,1,99.99,05/18/19 20:29,"162 Sunset St, Austin, TX 73301" -208250,27in 4K Gaming Monitor,1,389.99,05/17/19 19:47,"172 Walnut St, Portland, ME 04101" -208251,Apple Airpods Headphones,1,150,05/21/19 18:17,"118 Spruce St, Seattle, WA 98101" -208252,Bose SoundSport Headphones,1,99.99,05/25/19 12:50,"733 2nd St, New York City, NY 10001" -208253,Lightning Charging Cable,1,14.95,05/17/19 09:19,"833 7th St, Atlanta, GA 30301" -208254,Flatscreen TV,1,300,05/15/19 13:14,"48 Cherry St, San Francisco, CA 94016" -208255,Lightning Charging Cable,1,14.95,05/18/19 16:13,"550 Jefferson St, Seattle, WA 98101" -208256,LG Dryer,1,600.0,05/10/19 16:45,"649 10th St, Atlanta, GA 30301" -208257,Lightning Charging Cable,1,14.95,05/24/19 21:47,"902 West St, New York City, NY 10001" -208258,Apple Airpods Headphones,1,150,05/18/19 20:02,"635 Hickory St, Boston, MA 02215" -208259,Macbook Pro Laptop,1,1700,05/01/19 20:14,"965 Walnut St, Boston, MA 02215" -208260,Apple Airpods Headphones,1,150,05/17/19 08:46,"613 Lake St, Seattle, WA 98101" -208261,Google Phone,1,600,05/05/19 18:35,"909 Cherry St, Austin, TX 73301" -208262,AAA Batteries (4-pack),1,2.99,05/22/19 20:23,"578 Madison St, New York City, NY 10001" -208263,AAA Batteries (4-pack),2,2.99,05/26/19 18:07,"952 10th St, Los Angeles, CA 90001" -208264,Flatscreen TV,1,300,05/05/19 12:24,"319 Park St, Atlanta, GA 30301" -208265,USB-C Charging Cable,1,11.95,05/19/19 21:37,"505 Ridge St, Austin, TX 73301" -208266,Bose SoundSport Headphones,1,99.99,05/07/19 19:42,"217 Sunset St, Portland, ME 04101" -208267,Flatscreen TV,1,300,05/29/19 10:52,"988 South St, Boston, MA 02215" -208268,USB-C Charging Cable,1,11.95,05/25/19 12:40,"138 River St, New York City, NY 10001" -208269,Lightning Charging Cable,1,14.95,05/09/19 17:38,"492 Ridge St, Los Angeles, CA 90001" -208270,Lightning Charging Cable,1,14.95,05/26/19 22:31,"244 Jefferson St, Austin, TX 73301" -208271,Wired Headphones,1,11.99,05/08/19 19:27,"525 10th St, Los Angeles, CA 90001" -208272,Wired Headphones,1,11.99,05/06/19 12:46,"422 Dogwood St, San Francisco, CA 94016" -208273,USB-C Charging Cable,1,11.95,05/29/19 16:36,"151 Lakeview St, Seattle, WA 98101" -208274,Lightning Charging Cable,1,14.95,05/16/19 21:57,"99 South St, Dallas, TX 75001" -208275,Bose SoundSport Headphones,1,99.99,05/17/19 20:28,"463 10th St, Atlanta, GA 30301" -208276,Wired Headphones,1,11.99,05/19/19 08:15,"787 Park St, Boston, MA 02215" -208277,Macbook Pro Laptop,1,1700,05/01/19 08:30,"733 Meadow St, New York City, NY 10001" -208278,AA Batteries (4-pack),1,3.84,05/14/19 13:23,"912 Forest St, New York City, NY 10001" -208279,Lightning Charging Cable,1,14.95,05/04/19 18:37,"103 Madison St, Dallas, TX 75001" -208280,Wired Headphones,1,11.99,05/10/19 17:40,"228 Spruce St, Dallas, TX 75001" -208281,27in FHD Monitor,1,149.99,05/22/19 09:31,"724 5th St, Boston, MA 02215" -208282,AA Batteries (4-pack),2,3.84,05/14/19 02:21,"91 Center St, Boston, MA 02215" -208283,20in Monitor,1,109.99,05/21/19 08:46,"785 Willow St, San Francisco, CA 94016" -208284,AA Batteries (4-pack),1,3.84,05/25/19 08:23,"192 South St, Austin, TX 73301" -208285,USB-C Charging Cable,1,11.95,05/31/19 15:34,"56 Jackson St, San Francisco, CA 94016" -208286,Macbook Pro Laptop,1,1700,05/22/19 12:04,"794 Spruce St, Los Angeles, CA 90001" -208287,ThinkPad Laptop,1,999.99,05/23/19 20:35,"426 Center St, San Francisco, CA 94016" -208288,USB-C Charging Cable,1,11.95,05/26/19 09:04,"288 7th St, Los Angeles, CA 90001" -208289,ThinkPad Laptop,1,999.99,05/07/19 21:29,"472 Highland St, Austin, TX 73301" -208290,Wired Headphones,1,11.99,05/25/19 12:45,"631 Cherry St, New York City, NY 10001" -208291,Bose SoundSport Headphones,1,99.99,05/01/19 20:56,"374 5th St, San Francisco, CA 94016" -208292,27in FHD Monitor,1,149.99,05/14/19 10:21,"135 Hill St, Austin, TX 73301" -208293,USB-C Charging Cable,1,11.95,05/24/19 11:22,"282 Cherry St, Dallas, TX 75001" -208294,iPhone,1,700,05/29/19 13:11,"874 8th St, Atlanta, GA 30301" -208294,Lightning Charging Cable,1,14.95,05/29/19 13:11,"874 8th St, Atlanta, GA 30301" -208295,AA Batteries (4-pack),1,3.84,05/07/19 23:06,"437 Madison St, Austin, TX 73301" -208296,ThinkPad Laptop,1,999.99,05/28/19 17:49,"756 11th St, San Francisco, CA 94016" -208297,AAA Batteries (4-pack),1,2.99,05/29/19 15:16,"820 Pine St, San Francisco, CA 94016" -208298,Google Phone,1,600,05/11/19 12:19,"421 Chestnut St, New York City, NY 10001" -208299,34in Ultrawide Monitor,1,379.99,05/10/19 19:38,"930 1st St, San Francisco, CA 94016" -208300,AAA Batteries (4-pack),2,2.99,05/31/19 17:43,"293 9th St, San Francisco, CA 94016" -208301,USB-C Charging Cable,1,11.95,05/03/19 16:28,"904 Ridge St, San Francisco, CA 94016" -208302,Lightning Charging Cable,1,14.95,05/27/19 13:40,"161 11th St, New York City, NY 10001" -208303,Bose SoundSport Headphones,1,99.99,05/08/19 14:26,"396 Walnut St, San Francisco, CA 94016" -208304,27in 4K Gaming Monitor,1,389.99,05/02/19 15:37,"925 4th St, Los Angeles, CA 90001" -208305,USB-C Charging Cable,1,11.95,05/06/19 11:47,"374 Hickory St, Dallas, TX 75001" -208306,Google Phone,1,600,05/21/19 00:10,"137 Church St, Atlanta, GA 30301" -208307,27in FHD Monitor,1,149.99,05/29/19 06:09,"425 Cedar St, San Francisco, CA 94016" -208308,Wired Headphones,1,11.99,05/05/19 16:35,"591 Cherry St, Dallas, TX 75001" -208309,Lightning Charging Cable,1,14.95,05/04/19 10:15,"845 South St, San Francisco, CA 94016" -208310,AAA Batteries (4-pack),1,2.99,05/11/19 19:15,"59 Washington St, San Francisco, CA 94016" -208311,Wired Headphones,1,11.99,05/23/19 21:57,"157 8th St, San Francisco, CA 94016" -208312,Macbook Pro Laptop,1,1700,05/19/19 19:51,"785 11th St, Austin, TX 73301" -208313,Lightning Charging Cable,1,14.95,05/11/19 09:49,"705 Ridge St, Boston, MA 02215" -208314,Apple Airpods Headphones,1,150,05/04/19 09:40,"682 Adams St, Seattle, WA 98101" -208315,Apple Airpods Headphones,1,150,05/17/19 00:42,"365 13th St, San Francisco, CA 94016" -208316,Apple Airpods Headphones,1,150,05/17/19 23:27,"157 Walnut St, San Francisco, CA 94016" -208317,AA Batteries (4-pack),1,3.84,05/16/19 02:38,"950 Highland St, Portland, OR 97035" -208318,AA Batteries (4-pack),1,3.84,05/30/19 18:51,"897 River St, San Francisco, CA 94016" -208319,Wired Headphones,1,11.99,05/24/19 17:28,"603 Adams St, San Francisco, CA 94016" -208320,Apple Airpods Headphones,1,150,05/31/19 18:21,"985 Elm St, San Francisco, CA 94016" -208321,Lightning Charging Cable,1,14.95,05/15/19 21:25,"975 Hill St, Los Angeles, CA 90001" -208322,LG Dryer,1,600.0,05/15/19 11:00,"771 Highland St, Los Angeles, CA 90001" -208323,AAA Batteries (4-pack),2,2.99,05/06/19 14:41,"50 4th St, New York City, NY 10001" -208324,Wired Headphones,1,11.99,05/21/19 16:12,"887 1st St, Dallas, TX 75001" -208325,Wired Headphones,1,11.99,05/14/19 16:41,"915 Park St, San Francisco, CA 94016" -208326,Bose SoundSport Headphones,1,99.99,05/18/19 21:22,"9 Meadow St, San Francisco, CA 94016" -208327,Bose SoundSport Headphones,1,99.99,05/14/19 09:58,"111 1st St, Portland, OR 97035" -208328,Wired Headphones,1,11.99,05/20/19 15:36,"482 2nd St, Boston, MA 02215" -208329,Lightning Charging Cable,1,14.95,05/24/19 20:59,"843 Hickory St, Los Angeles, CA 90001" -208330,iPhone,1,700,05/01/19 10:11,"345 Jefferson St, San Francisco, CA 94016" -208331,Flatscreen TV,1,300,05/02/19 11:23,"842 5th St, Austin, TX 73301" -208332,iPhone,1,700,05/06/19 17:04,"429 Pine St, Los Angeles, CA 90001" -208333,Lightning Charging Cable,1,14.95,05/22/19 12:17,"865 Chestnut St, New York City, NY 10001" -208334,USB-C Charging Cable,1,11.95,05/14/19 14:08,"745 Lakeview St, Seattle, WA 98101" -208335,Wired Headphones,1,11.99,05/12/19 12:32,"25 Dogwood St, Boston, MA 02215" -208336,Apple Airpods Headphones,1,150,05/25/19 21:38,"989 14th St, Seattle, WA 98101" -208337,Apple Airpods Headphones,1,150,05/26/19 11:33,"372 Church St, Atlanta, GA 30301" -208338,Lightning Charging Cable,1,14.95,05/21/19 22:29,"836 Dogwood St, Austin, TX 73301" -208339,Apple Airpods Headphones,1,150,05/24/19 11:59,"989 Jefferson St, Atlanta, GA 30301" -208340,AAA Batteries (4-pack),1,2.99,05/06/19 23:30,"279 Forest St, Austin, TX 73301" -208341,AA Batteries (4-pack),3,3.84,05/08/19 13:49,"11 Chestnut St, San Francisco, CA 94016" -208342,AAA Batteries (4-pack),1,2.99,05/09/19 13:16,"545 7th St, New York City, NY 10001" -208343,Lightning Charging Cable,1,14.95,05/10/19 07:27,"341 Spruce St, Seattle, WA 98101" -208344,Lightning Charging Cable,1,14.95,05/31/19 12:10,"766 4th St, New York City, NY 10001" -208345,Wired Headphones,1,11.99,05/21/19 19:29,"792 1st St, New York City, NY 10001" -208346,Bose SoundSport Headphones,1,99.99,05/15/19 13:28,"489 4th St, Los Angeles, CA 90001" -208347,AA Batteries (4-pack),1,3.84,05/06/19 18:14,"91 Hickory St, San Francisco, CA 94016" -208348,Lightning Charging Cable,1,14.95,05/05/19 18:28,"469 Forest St, Austin, TX 73301" -208349,Bose SoundSport Headphones,1,99.99,05/13/19 03:36,"708 13th St, Austin, TX 73301" -208350,AAA Batteries (4-pack),1,2.99,05/29/19 09:26,"546 Cherry St, Seattle, WA 98101" -208351,AAA Batteries (4-pack),1,2.99,05/30/19 13:17,"867 Forest St, Los Angeles, CA 90001" -208352,Google Phone,1,600,05/04/19 16:38,"713 2nd St, San Francisco, CA 94016" -208353,AAA Batteries (4-pack),2,2.99,05/18/19 20:01,"987 8th St, Atlanta, GA 30301" -208354,Wired Headphones,1,11.99,05/11/19 15:52,"456 Park St, Boston, MA 02215" -208355,AA Batteries (4-pack),2,3.84,05/19/19 17:48,"390 Dogwood St, Seattle, WA 98101" -208356,USB-C Charging Cable,1,11.95,05/24/19 19:26,"809 Hill St, San Francisco, CA 94016" -208357,USB-C Charging Cable,2,11.95,05/24/19 14:06,"821 Jackson St, Portland, OR 97035" -208358,iPhone,1,700,05/01/19 09:32,"751 Meadow St, San Francisco, CA 94016" -208359,Wired Headphones,1,11.99,05/21/19 14:52,"558 Lake St, New York City, NY 10001" -208360,LG Dryer,1,600.0,05/26/19 21:38,"848 Dogwood St, San Francisco, CA 94016" -208361,Lightning Charging Cable,1,14.95,05/21/19 15:53,"702 Madison St, San Francisco, CA 94016" -208361,Apple Airpods Headphones,1,150,05/21/19 15:53,"702 Madison St, San Francisco, CA 94016" -208362,Lightning Charging Cable,1,14.95,05/21/19 21:18,"724 Lincoln St, Los Angeles, CA 90001" -208363,27in FHD Monitor,1,149.99,05/23/19 15:49,"383 Spruce St, San Francisco, CA 94016" -208364,AAA Batteries (4-pack),1,2.99,05/25/19 10:47,"679 Spruce St, Austin, TX 73301" -208365,Wired Headphones,1,11.99,05/13/19 16:47,"207 Wilson St, San Francisco, CA 94016" -208366,AAA Batteries (4-pack),1,2.99,05/18/19 01:58,"348 Madison St, Boston, MA 02215" -208367,27in FHD Monitor,1,149.99,05/06/19 18:36,"329 Pine St, Atlanta, GA 30301" -208368,27in FHD Monitor,1,149.99,05/02/19 10:04,"741 Pine St, Seattle, WA 98101" -208369,Bose SoundSport Headphones,1,99.99,05/25/19 13:47,"353 1st St, Los Angeles, CA 90001" -208369,Apple Airpods Headphones,1,150,05/25/19 13:47,"353 1st St, Los Angeles, CA 90001" -208370,Macbook Pro Laptop,1,1700,05/06/19 11:19,"480 11th St, Boston, MA 02215" -208371,Wired Headphones,1,11.99,05/29/19 15:01,"711 Lakeview St, San Francisco, CA 94016" -208372,Lightning Charging Cable,1,14.95,05/25/19 15:26,"458 North St, New York City, NY 10001" -208373,27in 4K Gaming Monitor,1,389.99,05/20/19 23:56,"556 5th St, Boston, MA 02215" -208374,Bose SoundSport Headphones,1,99.99,05/14/19 11:28,"578 Washington St, Boston, MA 02215" -208375,Bose SoundSport Headphones,1,99.99,05/19/19 12:27,"266 Highland St, Atlanta, GA 30301" -208376,AA Batteries (4-pack),1,3.84,05/05/19 05:12,"62 Sunset St, Austin, TX 73301" -208377,Wired Headphones,1,11.99,05/10/19 08:28,"867 Main St, Boston, MA 02215" -208378,Wired Headphones,1,11.99,05/19/19 12:27,"943 Center St, Portland, OR 97035" -208379,Bose SoundSport Headphones,1,99.99,05/19/19 13:57,"310 Park St, San Francisco, CA 94016" -208380,Bose SoundSport Headphones,1,99.99,05/25/19 19:25,"485 Spruce St, Atlanta, GA 30301" -208381,Google Phone,1,600,05/28/19 11:54,"850 Meadow St, Los Angeles, CA 90001" -208381,USB-C Charging Cable,1,11.95,05/28/19 11:54,"850 Meadow St, Los Angeles, CA 90001" -208382,ThinkPad Laptop,1,999.99,05/18/19 00:06,"865 Lakeview St, Austin, TX 73301" -208383,27in 4K Gaming Monitor,1,389.99,05/12/19 16:19,"152 9th St, Los Angeles, CA 90001" -208384,Apple Airpods Headphones,1,150,05/14/19 15:58,"895 Walnut St, Portland, OR 97035" -208385,USB-C Charging Cable,1,11.95,05/20/19 17:34,"805 10th St, Atlanta, GA 30301" -208386,Wired Headphones,1,11.99,05/28/19 15:19,"585 Cedar St, Los Angeles, CA 90001" -208387,AAA Batteries (4-pack),2,2.99,05/01/19 11:30,"172 1st St, New York City, NY 10001" -208388,Vareebadd Phone,1,400,05/05/19 14:06,"360 Sunset St, Atlanta, GA 30301" -208388,USB-C Charging Cable,2,11.95,05/05/19 14:06,"360 Sunset St, Atlanta, GA 30301" -208389,AA Batteries (4-pack),1,3.84,05/11/19 16:28,"436 South St, Los Angeles, CA 90001" -208390,34in Ultrawide Monitor,1,379.99,05/08/19 13:11,"663 South St, Dallas, TX 75001" -208391,Wired Headphones,1,11.99,05/17/19 10:47,"356 6th St, Seattle, WA 98101" -208392,Lightning Charging Cable,1,14.95,05/25/19 15:45,"727 Cedar St, San Francisco, CA 94016" -208393,Lightning Charging Cable,1,14.95,05/17/19 06:43,"73 River St, Los Angeles, CA 90001" -208394,Lightning Charging Cable,1,14.95,05/15/19 01:05,"449 10th St, Dallas, TX 75001" -208395,Apple Airpods Headphones,1,150,05/14/19 07:09,"229 13th St, Austin, TX 73301" -208396,AAA Batteries (4-pack),2,2.99,05/12/19 13:01,"941 Meadow St, Austin, TX 73301" -208397,USB-C Charging Cable,1,11.95,05/30/19 09:57,"113 Elm St, Dallas, TX 75001" -208398,AAA Batteries (4-pack),1,2.99,05/08/19 21:18,"193 Cherry St, Portland, OR 97035" -208399,Wired Headphones,1,11.99,05/26/19 13:40,"440 Lake St, San Francisco, CA 94016" -208400,27in FHD Monitor,1,149.99,05/14/19 11:53,"925 4th St, New York City, NY 10001" -208401,iPhone,1,700,05/20/19 09:00,"361 Lakeview St, Boston, MA 02215" -208401,Lightning Charging Cable,2,14.95,05/20/19 09:00,"361 Lakeview St, Boston, MA 02215" -208401,Apple Airpods Headphones,1,150,05/20/19 09:00,"361 Lakeview St, Boston, MA 02215" -208402,Lightning Charging Cable,1,14.95,05/12/19 18:54,"536 Meadow St, Dallas, TX 75001" -208403,Apple Airpods Headphones,1,150,05/11/19 22:09,"980 Chestnut St, Atlanta, GA 30301" -208404,AAA Batteries (4-pack),1,2.99,05/21/19 17:47,"350 1st St, Los Angeles, CA 90001" -208404,Lightning Charging Cable,1,14.95,05/21/19 17:47,"350 1st St, Los Angeles, CA 90001" -208405,Lightning Charging Cable,1,14.95,05/19/19 16:55,"107 River St, Portland, OR 97035" -208406,Bose SoundSport Headphones,1,99.99,05/04/19 12:40,"2 Spruce St, Boston, MA 02215" -208407,AA Batteries (4-pack),2,3.84,05/30/19 11:35,"592 Park St, Boston, MA 02215" -208408,AA Batteries (4-pack),1,3.84,05/20/19 23:11,"552 Main St, Portland, OR 97035" -208408,Google Phone,1,600,05/20/19 23:11,"552 Main St, Portland, OR 97035" -208409,ThinkPad Laptop,1,999.99,05/15/19 20:51,"125 Jackson St, Los Angeles, CA 90001" -208410,34in Ultrawide Monitor,1,379.99,05/10/19 18:30,"13 South St, San Francisco, CA 94016" -208411,Wired Headphones,1,11.99,05/30/19 12:22,"849 North St, Seattle, WA 98101" -208412,Lightning Charging Cable,1,14.95,05/09/19 12:59,"769 2nd St, San Francisco, CA 94016" -208413,Google Phone,1,600,05/22/19 17:30,"135 1st St, Boston, MA 02215" -208414,iPhone,1,700,05/31/19 14:20,"400 Center St, Boston, MA 02215" -208415,AA Batteries (4-pack),1,3.84,05/07/19 07:23,"625 Hickory St, San Francisco, CA 94016" -208416,Bose SoundSport Headphones,1,99.99,05/03/19 16:39,"471 14th St, San Francisco, CA 94016" -208417,Wired Headphones,1,11.99,05/26/19 18:39,"129 8th St, San Francisco, CA 94016" -208418,Lightning Charging Cable,1,14.95,05/06/19 07:48,"635 11th St, Austin, TX 73301" -208419,Wired Headphones,1,11.99,05/01/19 09:11,"614 Pine St, Seattle, WA 98101" -208420,Flatscreen TV,1,300,05/06/19 20:15,"802 Willow St, Seattle, WA 98101" -208421,AAA Batteries (4-pack),1,2.99,05/20/19 18:28,"105 Spruce St, Boston, MA 02215" -208422,AAA Batteries (4-pack),1,2.99,05/22/19 12:31,"560 Spruce St, New York City, NY 10001" -208423,AA Batteries (4-pack),1,3.84,05/23/19 03:36,"745 Walnut St, New York City, NY 10001" -208424,USB-C Charging Cable,1,11.95,05/29/19 15:10,"755 Sunset St, Seattle, WA 98101" -208425,Lightning Charging Cable,1,14.95,05/27/19 11:15,"882 Pine St, Boston, MA 02215" -208426,LG Washing Machine,1,600.0,05/02/19 12:14,"519 8th St, San Francisco, CA 94016" -208427,USB-C Charging Cable,1,11.95,05/20/19 09:03,"494 13th St, Portland, ME 04101" -208428,AA Batteries (4-pack),4,3.84,05/30/19 21:12,"88 Park St, Seattle, WA 98101" -208429,AA Batteries (4-pack),1,3.84,05/01/19 19:48,"803 11th St, San Francisco, CA 94016" -208430,Lightning Charging Cable,1,14.95,05/06/19 08:36,"184 Wilson St, New York City, NY 10001" -208431,AA Batteries (4-pack),2,3.84,05/14/19 06:46,"658 West St, San Francisco, CA 94016" -208432,Apple Airpods Headphones,1,150,05/21/19 21:45,"800 Willow St, New York City, NY 10001" -208433,AA Batteries (4-pack),1,3.84,05/19/19 19:21,"394 Jefferson St, Portland, OR 97035" -208434,AAA Batteries (4-pack),1,2.99,05/16/19 17:59,"328 7th St, Boston, MA 02215" -208435,Lightning Charging Cable,1,14.95,05/31/19 00:15,"160 4th St, San Francisco, CA 94016" -208436,Apple Airpods Headphones,1,150,05/27/19 00:51,"655 Ridge St, Atlanta, GA 30301" -208437,AA Batteries (4-pack),2,3.84,05/30/19 07:49,"9 Pine St, Austin, TX 73301" -208438,Wired Headphones,1,11.99,05/16/19 11:54,"269 Madison St, Dallas, TX 75001" -208439,AAA Batteries (4-pack),2,2.99,05/06/19 15:39,"729 Pine St, New York City, NY 10001" -208440,AAA Batteries (4-pack),1,2.99,05/22/19 09:13,"223 Church St, San Francisco, CA 94016" -208441,Wired Headphones,1,11.99,05/16/19 08:07,"221 10th St, San Francisco, CA 94016" -208442,Apple Airpods Headphones,1,150,05/14/19 15:49,"947 Lakeview St, San Francisco, CA 94016" -208443,Bose SoundSport Headphones,1,99.99,05/05/19 21:30,"528 Lake St, Atlanta, GA 30301" -208444,AAA Batteries (4-pack),1,2.99,05/20/19 14:56,"916 Main St, San Francisco, CA 94016" -208445,AAA Batteries (4-pack),1,2.99,05/16/19 11:32,"844 Church St, San Francisco, CA 94016" -208446,LG Dryer,1,600.0,05/08/19 09:15,"138 Pine St, Los Angeles, CA 90001" -208447,USB-C Charging Cable,1,11.95,05/25/19 13:06,"444 South St, Seattle, WA 98101" -208448,AAA Batteries (4-pack),3,2.99,05/09/19 07:55,"73 Elm St, San Francisco, CA 94016" -208449,27in FHD Monitor,1,149.99,05/16/19 02:26,"429 Maple St, Los Angeles, CA 90001" -208450,USB-C Charging Cable,1,11.95,05/12/19 13:01,"257 Meadow St, Atlanta, GA 30301" -208451,Google Phone,1,600,05/13/19 23:16,"752 Lake St, New York City, NY 10001" -208451,USB-C Charging Cable,1,11.95,05/13/19 23:16,"752 Lake St, New York City, NY 10001" -208452,Lightning Charging Cable,1,14.95,05/27/19 19:32,"805 7th St, New York City, NY 10001" -208453,USB-C Charging Cable,1,11.95,05/10/19 15:50,"474 8th St, Atlanta, GA 30301" -208454,Wired Headphones,1,11.99,05/03/19 12:06,"120 Ridge St, San Francisco, CA 94016" -208455,USB-C Charging Cable,1,11.95,05/09/19 10:55,"173 Sunset St, San Francisco, CA 94016" -208456,27in 4K Gaming Monitor,1,389.99,05/26/19 09:56,"404 Church St, Seattle, WA 98101" -208457,Vareebadd Phone,1,400,05/24/19 07:42,"306 Adams St, San Francisco, CA 94016" -208458,Lightning Charging Cable,1,14.95,05/31/19 19:22,"653 Jefferson St, New York City, NY 10001" -208459,AA Batteries (4-pack),1,3.84,05/11/19 06:13,"944 Jefferson St, San Francisco, CA 94016" -208460,Wired Headphones,1,11.99,05/18/19 17:43,"96 Willow St, Los Angeles, CA 90001" -208461,USB-C Charging Cable,1,11.95,05/19/19 08:58,"729 Madison St, Los Angeles, CA 90001" -208462,AA Batteries (4-pack),1,3.84,05/15/19 14:08,"677 Dogwood St, Dallas, TX 75001" -208463,AAA Batteries (4-pack),1,2.99,05/12/19 12:10,"434 2nd St, New York City, NY 10001" -208464,Wired Headphones,1,11.99,05/27/19 18:03,"580 Jackson St, Los Angeles, CA 90001" -208465,Apple Airpods Headphones,1,150,05/24/19 07:16,"418 Park St, Boston, MA 02215" -208466,27in 4K Gaming Monitor,1,389.99,05/22/19 21:44,"542 Main St, Portland, OR 97035" -208467,Wired Headphones,1,11.99,05/04/19 17:41,"31 Wilson St, San Francisco, CA 94016" -208468,Bose SoundSport Headphones,1,99.99,05/26/19 15:51,"882 Jackson St, Los Angeles, CA 90001" -208469,Lightning Charging Cable,1,14.95,05/27/19 21:19,"633 6th St, Atlanta, GA 30301" -208470,Lightning Charging Cable,1,14.95,05/23/19 14:58,"361 4th St, Atlanta, GA 30301" -208471,Flatscreen TV,1,300,05/13/19 10:01,"910 6th St, Austin, TX 73301" -208472,AA Batteries (4-pack),1,3.84,05/06/19 09:20,"531 Lincoln St, Portland, OR 97035" -208473,20in Monitor,1,109.99,05/10/19 18:53,"663 Hickory St, Portland, OR 97035" -208474,AAA Batteries (4-pack),1,2.99,05/09/19 11:37,"15 Lakeview St, San Francisco, CA 94016" -208475,Apple Airpods Headphones,1,150,05/09/19 21:42,"889 7th St, Seattle, WA 98101" -208476,AAA Batteries (4-pack),1,2.99,05/18/19 17:33,"393 Meadow St, Atlanta, GA 30301" -208477,AA Batteries (4-pack),2,3.84,05/06/19 19:13,"49 Lakeview St, New York City, NY 10001" -208478,34in Ultrawide Monitor,1,379.99,05/09/19 14:03,"119 Washington St, New York City, NY 10001" -208479,Macbook Pro Laptop,1,1700,05/29/19 15:11,"644 8th St, San Francisco, CA 94016" -208480,AA Batteries (4-pack),1,3.84,05/15/19 22:52,"791 Highland St, New York City, NY 10001" -208481,USB-C Charging Cable,1,11.95,05/27/19 16:22,"347 Pine St, San Francisco, CA 94016" -208482,27in FHD Monitor,1,149.99,05/23/19 13:45,"397 4th St, San Francisco, CA 94016" -208483,Apple Airpods Headphones,1,150,05/14/19 17:21,"853 12th St, San Francisco, CA 94016" -208484,Lightning Charging Cable,1,14.95,05/18/19 16:27,"922 Maple St, San Francisco, CA 94016" -208485,Wired Headphones,1,11.99,05/04/19 12:02,"357 Ridge St, Los Angeles, CA 90001" -208486,Flatscreen TV,1,300,05/18/19 14:03,"495 River St, Dallas, TX 75001" -208487,Flatscreen TV,1,300,05/23/19 00:43,"183 South St, Boston, MA 02215" -208488,27in FHD Monitor,1,149.99,05/10/19 19:52,"70 Center St, New York City, NY 10001" -208489,Lightning Charging Cable,1,14.95,05/28/19 13:24,"943 Madison St, New York City, NY 10001" -208490,Bose SoundSport Headphones,1,99.99,05/05/19 11:41,"792 Lake St, San Francisco, CA 94016" -208491,AA Batteries (4-pack),1,3.84,05/07/19 22:44,"812 Sunset St, San Francisco, CA 94016" -208492,Lightning Charging Cable,1,14.95,05/11/19 15:36,"818 6th St, San Francisco, CA 94016" -208493,Apple Airpods Headphones,1,150,05/17/19 10:53,"273 Sunset St, Dallas, TX 75001" -208493,USB-C Charging Cable,1,11.95,05/17/19 10:53,"273 Sunset St, Dallas, TX 75001" -208494,Apple Airpods Headphones,1,150,05/21/19 12:45,"793 Spruce St, San Francisco, CA 94016" -208495,27in 4K Gaming Monitor,1,389.99,05/22/19 06:47,"472 Hill St, New York City, NY 10001" -208496,iPhone,1,700,05/17/19 08:36,"161 1st St, San Francisco, CA 94016" -208497,27in FHD Monitor,1,149.99,05/02/19 16:47,"851 Ridge St, Seattle, WA 98101" -208498,USB-C Charging Cable,1,11.95,05/23/19 20:08,"444 Wilson St, San Francisco, CA 94016" -208499,Wired Headphones,1,11.99,05/13/19 14:29,"697 5th St, Boston, MA 02215" -208500,USB-C Charging Cable,1,11.95,05/28/19 20:55,"397 Lake St, Atlanta, GA 30301" -208501,iPhone,1,700,05/27/19 23:28,"666 Spruce St, New York City, NY 10001" -208501,Wired Headphones,1,11.99,05/27/19 23:28,"666 Spruce St, New York City, NY 10001" -208502,Apple Airpods Headphones,1,150,05/23/19 16:38,"970 Ridge St, New York City, NY 10001" -208503,Apple Airpods Headphones,1,150,05/12/19 18:29,"188 South St, San Francisco, CA 94016" -208504,USB-C Charging Cable,1,11.95,05/24/19 10:17,"331 Cherry St, Los Angeles, CA 90001" -208505,Wired Headphones,1,11.99,05/03/19 13:06,"832 Chestnut St, New York City, NY 10001" -208506,27in 4K Gaming Monitor,1,389.99,05/28/19 19:11,"810 8th St, Atlanta, GA 30301" -208507,Lightning Charging Cable,1,14.95,05/09/19 14:41,"907 Dogwood St, New York City, NY 10001" -208508,AA Batteries (4-pack),1,3.84,05/09/19 12:54,"742 River St, Austin, TX 73301" -208509,Macbook Pro Laptop,1,1700,05/17/19 10:35,"639 14th St, San Francisco, CA 94016" -208510,Macbook Pro Laptop,1,1700,05/26/19 11:35,"679 Cherry St, Los Angeles, CA 90001" -208511,USB-C Charging Cable,1,11.95,05/12/19 18:48,"396 Willow St, New York City, NY 10001" -208512,Lightning Charging Cable,1,14.95,05/07/19 18:24,"479 11th St, Seattle, WA 98101" -208513,AAA Batteries (4-pack),1,2.99,05/18/19 11:25,"506 4th St, Los Angeles, CA 90001" -208514,iPhone,1,700,05/20/19 15:41,"437 7th St, Portland, ME 04101" -208515,USB-C Charging Cable,1,11.95,05/17/19 23:46,"8 12th St, Atlanta, GA 30301" -208516,Macbook Pro Laptop,1,1700,05/05/19 18:41,"503 Ridge St, New York City, NY 10001" -208517,Google Phone,1,600,05/25/19 22:20,"734 13th St, Los Angeles, CA 90001" -208518,Wired Headphones,1,11.99,05/12/19 17:19,"115 Jackson St, Los Angeles, CA 90001" -208519,AAA Batteries (4-pack),1,2.99,05/05/19 16:14,"218 Cedar St, San Francisco, CA 94016" -208520,27in FHD Monitor,1,149.99,05/06/19 21:24,"656 Cherry St, Seattle, WA 98101" -208521,Macbook Pro Laptop,1,1700,05/19/19 08:29,"909 9th St, Los Angeles, CA 90001" -208522,27in FHD Monitor,1,149.99,05/09/19 20:27,"373 West St, Austin, TX 73301" -208523,AAA Batteries (4-pack),2,2.99,05/02/19 09:58,"540 West St, Seattle, WA 98101" -208524,20in Monitor,1,109.99,05/08/19 09:29,"87 Adams St, San Francisco, CA 94016" -208525,iPhone,1,700,05/01/19 19:41,"944 13th St, San Francisco, CA 94016" -208526,Lightning Charging Cable,1,14.95,05/06/19 08:20,"956 7th St, San Francisco, CA 94016" -208527,Bose SoundSport Headphones,1,99.99,05/31/19 11:35,"990 South St, Portland, OR 97035" -208528,Bose SoundSport Headphones,1,99.99,05/24/19 18:21,"720 Chestnut St, Los Angeles, CA 90001" -208529,Wired Headphones,1,11.99,05/05/19 12:43,"893 Meadow St, New York City, NY 10001" -208530,Apple Airpods Headphones,1,150,05/06/19 16:44,"282 Main St, Seattle, WA 98101" -208531,iPhone,1,700,05/13/19 22:07,"669 Willow St, Boston, MA 02215" -208532,AAA Batteries (4-pack),1,2.99,05/12/19 13:26,"692 North St, San Francisco, CA 94016" -208533,Bose SoundSport Headphones,1,99.99,05/19/19 22:02,"78 Highland St, Los Angeles, CA 90001" -208534,iPhone,1,700,05/21/19 21:33,"665 10th St, Atlanta, GA 30301" -208534,Lightning Charging Cable,1,14.95,05/21/19 21:33,"665 10th St, Atlanta, GA 30301" -208534,Wired Headphones,1,11.99,05/21/19 21:33,"665 10th St, Atlanta, GA 30301" -208535,USB-C Charging Cable,1,11.95,05/24/19 15:52,"642 Sunset St, Dallas, TX 75001" -208536,ThinkPad Laptop,1,999.99,05/29/19 11:42,"7 Ridge St, Los Angeles, CA 90001" -208537,Apple Airpods Headphones,1,150,05/29/19 10:19,"60 10th St, Boston, MA 02215" -208538,AA Batteries (4-pack),2,3.84,05/13/19 13:21,"471 North St, San Francisco, CA 94016" -208539,AAA Batteries (4-pack),2,2.99,05/22/19 15:49,"294 8th St, Portland, ME 04101" -208540,Wired Headphones,1,11.99,05/24/19 10:15,"245 Walnut St, New York City, NY 10001" -208541,Google Phone,1,600,05/17/19 11:00,"345 South St, Atlanta, GA 30301" -208542,Lightning Charging Cable,1,14.95,05/19/19 20:38,"783 Walnut St, Boston, MA 02215" -208543,Apple Airpods Headphones,1,150,05/26/19 14:26,"375 West St, New York City, NY 10001" -208544,27in FHD Monitor,1,149.99,05/27/19 14:39,"523 Lincoln St, Austin, TX 73301" -208545,Lightning Charging Cable,1,14.95,05/14/19 19:41,"896 13th St, Portland, OR 97035" -208546,USB-C Charging Cable,1,11.95,05/10/19 09:07,"941 Walnut St, Los Angeles, CA 90001" -208547,Bose SoundSport Headphones,1,99.99,05/08/19 02:41,"168 Madison St, New York City, NY 10001" -208548,AA Batteries (4-pack),2,3.84,05/14/19 16:31,"624 West St, Los Angeles, CA 90001" -208549,Flatscreen TV,1,300,05/13/19 10:30,"283 Washington St, Portland, OR 97035" -208550,Bose SoundSport Headphones,1,99.99,05/01/19 22:39,"821 North St, New York City, NY 10001" -208551,iPhone,1,700,05/17/19 19:44,"120 Forest St, Dallas, TX 75001" -208552,Bose SoundSport Headphones,1,99.99,05/10/19 08:34,"147 Park St, Atlanta, GA 30301" -208553,Apple Airpods Headphones,1,150,05/03/19 19:09,"225 5th St, Los Angeles, CA 90001" -208554,27in FHD Monitor,1,149.99,05/29/19 14:14,"836 South St, New York City, NY 10001" -208555,AA Batteries (4-pack),2,3.84,05/22/19 23:31,"400 Sunset St, San Francisco, CA 94016" -208556,Lightning Charging Cable,1,14.95,05/21/19 10:19,"463 Jackson St, Dallas, TX 75001" -208557,AAA Batteries (4-pack),1,2.99,05/13/19 14:00,"337 Walnut St, Boston, MA 02215" -208558,Google Phone,1,600,05/05/19 18:37,"813 Walnut St, New York City, NY 10001" -208558,USB-C Charging Cable,1,11.95,05/05/19 18:37,"813 Walnut St, New York City, NY 10001" -208559,Apple Airpods Headphones,1,150,05/11/19 05:55,"955 Jackson St, Boston, MA 02215" -208560,USB-C Charging Cable,1,11.95,05/08/19 19:40,"291 Park St, Atlanta, GA 30301" -208561,USB-C Charging Cable,1,11.95,05/29/19 21:57,"84 9th St, Austin, TX 73301" -208562,Lightning Charging Cable,1,14.95,05/29/19 19:27,"641 Chestnut St, San Francisco, CA 94016" -208563,AAA Batteries (4-pack),1,2.99,05/23/19 19:00,"88 Lincoln St, San Francisco, CA 94016" -208564,Lightning Charging Cable,1,14.95,05/16/19 18:54,"629 Highland St, Portland, OR 97035" -208564,USB-C Charging Cable,1,11.95,05/16/19 18:54,"629 Highland St, Portland, OR 97035" -208565,Wired Headphones,1,11.99,05/09/19 12:36,"374 Lake St, San Francisco, CA 94016" -208566,27in 4K Gaming Monitor,1,389.99,05/14/19 10:11,"95 12th St, Austin, TX 73301" -208567,Apple Airpods Headphones,1,150,05/01/19 19:22,"670 Spruce St, New York City, NY 10001" -208568,ThinkPad Laptop,1,999.99,05/13/19 14:51,"885 Jackson St, Dallas, TX 75001" -208569,AA Batteries (4-pack),3,3.84,05/21/19 23:31,"278 Maple St, Seattle, WA 98101" -208570,Apple Airpods Headphones,1,150,05/12/19 21:47,"743 Lincoln St, San Francisco, CA 94016" -208571,USB-C Charging Cable,1,11.95,05/17/19 19:30,"992 Meadow St, Los Angeles, CA 90001" -208572,AA Batteries (4-pack),1,3.84,05/30/19 09:37,"194 Forest St, Seattle, WA 98101" -208573,Bose SoundSport Headphones,1,99.99,05/01/19 17:06,"774 Pine St, San Francisco, CA 94016" -208574,AAA Batteries (4-pack),2,2.99,05/06/19 10:11,"205 Lake St, Dallas, TX 75001" -208575,Google Phone,1,600,05/12/19 18:08,"13 River St, San Francisco, CA 94016" -208576,34in Ultrawide Monitor,1,379.99,05/10/19 00:37,"814 Pine St, Portland, OR 97035" -208577,Wired Headphones,1,11.99,05/22/19 11:51,"597 Forest St, San Francisco, CA 94016" -208577,AA Batteries (4-pack),2,3.84,05/22/19 11:51,"597 Forest St, San Francisco, CA 94016" -208578,AA Batteries (4-pack),1,3.84,05/28/19 12:45,"211 10th St, New York City, NY 10001" -208579,Flatscreen TV,1,300,05/06/19 11:16,"70 Jackson St, Boston, MA 02215" -208580,27in 4K Gaming Monitor,1,389.99,05/23/19 23:18,"448 6th St, San Francisco, CA 94016" -208581,Wired Headphones,1,11.99,05/20/19 17:27,"89 Jackson St, San Francisco, CA 94016" -208582,AAA Batteries (4-pack),1,2.99,05/19/19 20:36,"390 14th St, Boston, MA 02215" -208583,AA Batteries (4-pack),2,3.84,05/29/19 15:12,"640 Cedar St, Dallas, TX 75001" -208584,AAA Batteries (4-pack),1,2.99,05/19/19 08:43,"135 11th St, San Francisco, CA 94016" -208585,27in 4K Gaming Monitor,1,389.99,05/05/19 14:47,"295 Meadow St, Dallas, TX 75001" -208586,34in Ultrawide Monitor,1,379.99,05/14/19 22:56,"66 2nd St, Los Angeles, CA 90001" -208587,USB-C Charging Cable,1,11.95,05/22/19 07:00,"113 13th St, New York City, NY 10001" -208588,Wired Headphones,1,11.99,05/10/19 10:51,"333 Jackson St, Boston, MA 02215" -208589,AA Batteries (4-pack),1,3.84,05/09/19 01:46,"15 Meadow St, Atlanta, GA 30301" -208590,USB-C Charging Cable,1,11.95,05/10/19 18:48,"319 2nd St, Los Angeles, CA 90001" -208591,USB-C Charging Cable,1,11.95,05/22/19 11:41,"801 Jackson St, San Francisco, CA 94016" -208592,AA Batteries (4-pack),2,3.84,05/04/19 10:12,"920 13th St, New York City, NY 10001" -208593,ThinkPad Laptop,1,999.99,05/10/19 00:58,"76 Johnson St, Austin, TX 73301" -208594,Lightning Charging Cable,1,14.95,05/10/19 13:41,"615 Dogwood St, Atlanta, GA 30301" -208595,Flatscreen TV,1,300,05/09/19 17:23,"952 Elm St, Boston, MA 02215" -208596,AA Batteries (4-pack),1,3.84,05/09/19 12:48,"923 West St, Dallas, TX 75001" -208596,Macbook Pro Laptop,1,1700,05/09/19 12:48,"923 West St, Dallas, TX 75001" -208597,AA Batteries (4-pack),1,3.84,05/31/19 21:19,"352 Meadow St, Atlanta, GA 30301" -208598,27in FHD Monitor,1,149.99,05/20/19 12:50,"357 Lakeview St, New York City, NY 10001" -208599,Flatscreen TV,1,300,05/31/19 23:35,"159 Dogwood St, Dallas, TX 75001" -208600,Google Phone,1,600,05/15/19 08:52,"848 13th St, San Francisco, CA 94016" -208601,Macbook Pro Laptop,1,1700,05/04/19 17:57,"537 Walnut St, Los Angeles, CA 90001" -208602,Wired Headphones,1,11.99,05/31/19 10:17,"526 Wilson St, San Francisco, CA 94016" -208603,USB-C Charging Cable,1,11.95,05/05/19 12:39,"269 Hill St, Boston, MA 02215" -208604,Flatscreen TV,1,300,05/05/19 16:40,"703 Dogwood St, New York City, NY 10001" -208605,20in Monitor,1,109.99,05/03/19 15:55,"413 Lake St, Austin, TX 73301" -208606,Wired Headphones,1,11.99,05/09/19 11:08,"168 7th St, Boston, MA 02215" -208607,Lightning Charging Cable,1,14.95,05/04/19 01:35,"693 9th St, Atlanta, GA 30301" -208608,AA Batteries (4-pack),1,3.84,05/31/19 21:00,"723 Pine St, Los Angeles, CA 90001" -208609,Lightning Charging Cable,1,14.95,05/20/19 15:04,"147 Hickory St, Seattle, WA 98101" -208610,Apple Airpods Headphones,1,150,05/19/19 18:58,"29 Cherry St, Seattle, WA 98101" -208611,Bose SoundSport Headphones,1,99.99,05/25/19 11:04,"375 Maple St, Boston, MA 02215" -208612,27in 4K Gaming Monitor,1,389.99,05/16/19 20:56,"41 Madison St, New York City, NY 10001" -208613,Apple Airpods Headphones,1,150,05/21/19 20:16,"318 Washington St, San Francisco, CA 94016" -208614,USB-C Charging Cable,1,11.95,05/07/19 23:22,"290 Sunset St, Seattle, WA 98101" -208615,27in FHD Monitor,1,149.99,05/02/19 15:20,"268 Spruce St, San Francisco, CA 94016" -208616,iPhone,1,700,05/30/19 00:28,"984 Hickory St, Boston, MA 02215" -208617,Lightning Charging Cable,1,14.95,05/25/19 19:57,"618 Ridge St, Dallas, TX 75001" -208618,Apple Airpods Headphones,1,150,05/27/19 13:24,"234 Meadow St, Seattle, WA 98101" -208619,AAA Batteries (4-pack),1,2.99,05/11/19 01:11,"681 North St, Boston, MA 02215" -208620,Flatscreen TV,1,300,05/13/19 20:59,"374 11th St, Dallas, TX 75001" -208621,Wired Headphones,1,11.99,05/18/19 21:01,"48 Wilson St, Los Angeles, CA 90001" -208622,Bose SoundSport Headphones,1,99.99,05/30/19 18:51,"175 Hill St, Boston, MA 02215" -208623,USB-C Charging Cable,1,11.95,05/18/19 10:20,"819 Spruce St, Atlanta, GA 30301" -208624,USB-C Charging Cable,1,11.95,05/02/19 14:07,"502 River St, New York City, NY 10001" -208625,Wired Headphones,1,11.99,05/17/19 10:31,"27 Spruce St, San Francisco, CA 94016" -208626,27in 4K Gaming Monitor,1,389.99,05/25/19 15:15,"94 Highland St, New York City, NY 10001" -208627,Apple Airpods Headphones,1,150,05/20/19 23:43,"527 West St, Atlanta, GA 30301" -208628,USB-C Charging Cable,1,11.95,05/09/19 05:44,"701 Maple St, Austin, TX 73301" -208629,iPhone,1,700,05/13/19 17:07,"770 Lincoln St, Los Angeles, CA 90001" -208630,Apple Airpods Headphones,1,150,05/18/19 10:59,"484 River St, New York City, NY 10001" -208631,Apple Airpods Headphones,1,150,05/08/19 22:31,"701 Forest St, Atlanta, GA 30301" -208632,Vareebadd Phone,1,400,05/14/19 18:58,"437 Park St, San Francisco, CA 94016" -208633,Wired Headphones,1,11.99,05/13/19 23:08,"539 Dogwood St, Los Angeles, CA 90001" -208634,Macbook Pro Laptop,1,1700,05/17/19 12:20,"449 14th St, Portland, OR 97035" -208635,27in 4K Gaming Monitor,1,389.99,05/30/19 10:09,"815 Cedar St, New York City, NY 10001" -208636,Lightning Charging Cable,1,14.95,05/30/19 22:38,"888 Main St, Austin, TX 73301" -208637,Lightning Charging Cable,1,14.95,05/07/19 12:07,"686 Ridge St, Dallas, TX 75001" -208638,Macbook Pro Laptop,1,1700,05/20/19 18:01,"785 2nd St, Los Angeles, CA 90001" -208639,Lightning Charging Cable,1,14.95,05/09/19 18:37,"134 9th St, San Francisco, CA 94016" -208640,AA Batteries (4-pack),1,3.84,05/23/19 11:49,"578 5th St, Dallas, TX 75001" -208641,iPhone,1,700,05/26/19 12:07,"856 Meadow St, San Francisco, CA 94016" -208642,20in Monitor,1,109.99,05/03/19 11:55,"7 Lake St, Atlanta, GA 30301" -208643,AA Batteries (4-pack),3,3.84,05/22/19 16:41,"849 Cherry St, Dallas, TX 75001" -208644,AA Batteries (4-pack),2,3.84,05/15/19 19:59,"988 Madison St, Seattle, WA 98101" -208645,27in 4K Gaming Monitor,1,389.99,05/07/19 11:36,"466 Jackson St, New York City, NY 10001" -208645,27in FHD Monitor,1,149.99,05/07/19 11:36,"466 Jackson St, New York City, NY 10001" -208646,Wired Headphones,1,11.99,05/09/19 14:35,"48 7th St, Seattle, WA 98101" -208647,Wired Headphones,1,11.99,05/05/19 19:58,"343 Dogwood St, San Francisco, CA 94016" -208648,Macbook Pro Laptop,1,1700,05/22/19 11:44,"244 14th St, New York City, NY 10001" -208649,Macbook Pro Laptop,1,1700,05/11/19 18:03,"180 West St, San Francisco, CA 94016" -208650,USB-C Charging Cable,1,11.95,05/01/19 11:04,"86 Pine St, Dallas, TX 75001" -208651,27in FHD Monitor,1,149.99,05/24/19 17:44,"337 Lakeview St, Austin, TX 73301" -208652,USB-C Charging Cable,1,11.95,05/20/19 19:08,"713 2nd St, Los Angeles, CA 90001" -208653,Flatscreen TV,1,300,05/08/19 05:47,"855 South St, Boston, MA 02215" -208654,34in Ultrawide Monitor,1,379.99,05/07/19 12:04,"508 West St, San Francisco, CA 94016" -208655,Lightning Charging Cable,1,14.95,05/17/19 18:18,"486 Dogwood St, San Francisco, CA 94016" -208656,Wired Headphones,1,11.99,05/26/19 19:09,"181 10th St, Boston, MA 02215" -208657,AAA Batteries (4-pack),1,2.99,05/17/19 00:06,"298 Center St, Seattle, WA 98101" -208658,ThinkPad Laptop,1,999.99,05/28/19 19:13,"44 10th St, Boston, MA 02215" -208659,Google Phone,1,600,05/01/19 10:41,"320 Maple St, San Francisco, CA 94016" -208660,AA Batteries (4-pack),1,3.84,05/22/19 04:39,"593 4th St, Atlanta, GA 30301" -208661,USB-C Charging Cable,1,11.95,05/26/19 12:52,"665 Spruce St, San Francisco, CA 94016" -208662,34in Ultrawide Monitor,1,379.99,05/14/19 12:31,"189 Cherry St, San Francisco, CA 94016" -208663,Apple Airpods Headphones,1,150,05/18/19 14:26,"150 Highland St, Atlanta, GA 30301" -208664,AA Batteries (4-pack),2,3.84,05/12/19 13:05,"137 13th St, Seattle, WA 98101" -208665,Wired Headphones,1,11.99,05/16/19 14:53,"41 13th St, San Francisco, CA 94016" -208666,AA Batteries (4-pack),1,3.84,05/02/19 11:14,"642 South St, San Francisco, CA 94016" -208667,Apple Airpods Headphones,1,150,05/11/19 17:43,"682 Maple St, Seattle, WA 98101" -208668,27in 4K Gaming Monitor,1,389.99,05/12/19 16:32,"515 Hill St, Los Angeles, CA 90001" -208669,Wired Headphones,1,11.99,05/31/19 13:30,"461 4th St, Dallas, TX 75001" -208670,Bose SoundSport Headphones,1,99.99,05/27/19 19:15,"878 Hill St, New York City, NY 10001" -208671,AA Batteries (4-pack),3,3.84,05/29/19 06:31,"452 9th St, Boston, MA 02215" -208672,Apple Airpods Headphones,1,150,05/05/19 21:06,"277 Elm St, San Francisco, CA 94016" -208673,Apple Airpods Headphones,1,150,05/31/19 01:48,"164 Adams St, Atlanta, GA 30301" -208674,Bose SoundSport Headphones,1,99.99,05/18/19 12:17,"690 8th St, New York City, NY 10001" -208675,Bose SoundSport Headphones,1,99.99,05/06/19 19:22,"600 Johnson St, San Francisco, CA 94016" -208676,USB-C Charging Cable,1,11.95,05/17/19 21:06,"371 Cherry St, San Francisco, CA 94016" -208677,Apple Airpods Headphones,1,150,05/13/19 20:01,"413 West St, New York City, NY 10001" -208678,Wired Headphones,1,11.99,05/04/19 17:36,"681 Lakeview St, San Francisco, CA 94016" -208679,27in FHD Monitor,1,149.99,05/04/19 09:43,"335 Cherry St, Portland, OR 97035" -208680,Wired Headphones,1,11.99,05/04/19 10:28,"689 6th St, San Francisco, CA 94016" -208681,34in Ultrawide Monitor,1,379.99,05/04/19 20:23,"30 1st St, Austin, TX 73301" -208682,Wired Headphones,1,11.99,05/25/19 06:15,"780 Madison St, New York City, NY 10001" -208683,USB-C Charging Cable,2,11.95,05/24/19 20:00,"629 10th St, Dallas, TX 75001" -208684,Apple Airpods Headphones,1,150,05/06/19 13:06,"951 Park St, Atlanta, GA 30301" -208685,Bose SoundSport Headphones,1,99.99,05/30/19 09:15,"919 Lake St, Los Angeles, CA 90001" -208686,USB-C Charging Cable,1,11.95,05/23/19 17:22,"170 Adams St, Atlanta, GA 30301" -208687,USB-C Charging Cable,1,11.95,05/19/19 10:12,"5 Jefferson St, Seattle, WA 98101" -208688,iPhone,1,700,05/03/19 13:16,"92 Elm St, San Francisco, CA 94016" -208689,iPhone,1,700,05/29/19 12:57,"42 Forest St, Atlanta, GA 30301" -208690,34in Ultrawide Monitor,1,379.99,05/18/19 14:20,"132 Madison St, Los Angeles, CA 90001" -208691,AAA Batteries (4-pack),1,2.99,05/13/19 11:23,"686 Jefferson St, Los Angeles, CA 90001" -208692,AAA Batteries (4-pack),2,2.99,05/03/19 21:14,"774 Ridge St, Los Angeles, CA 90001" -208693,AA Batteries (4-pack),3,3.84,05/04/19 02:18,"933 Cedar St, San Francisco, CA 94016" -208694,USB-C Charging Cable,1,11.95,05/17/19 11:37,"296 Forest St, Austin, TX 73301" -208695,Apple Airpods Headphones,1,150,05/31/19 22:53,"256 Hill St, San Francisco, CA 94016" -208696,Lightning Charging Cable,1,14.95,05/11/19 13:26,"822 Maple St, San Francisco, CA 94016" -208697,AA Batteries (4-pack),1,3.84,05/08/19 13:27,"110 9th St, New York City, NY 10001" -208698,USB-C Charging Cable,1,11.95,05/20/19 11:46,"723 Jefferson St, San Francisco, CA 94016" -208699,Lightning Charging Cable,1,14.95,05/28/19 17:44,"398 Main St, Austin, TX 73301" -208700,USB-C Charging Cable,1,11.95,05/21/19 10:40,"352 Church St, Boston, MA 02215" -208701,Lightning Charging Cable,1,14.95,05/02/19 13:55,"270 Washington St, Los Angeles, CA 90001" -208702,27in FHD Monitor,1,149.99,05/15/19 19:39,"91 Washington St, San Francisco, CA 94016" -208703,AA Batteries (4-pack),1,3.84,05/13/19 03:53,"342 2nd St, San Francisco, CA 94016" -208704,AAA Batteries (4-pack),2,2.99,05/06/19 20:03,"624 Hickory St, Los Angeles, CA 90001" -208705,Bose SoundSport Headphones,1,99.99,05/25/19 10:28,"115 Washington St, Boston, MA 02215" -208706,AAA Batteries (4-pack),1,2.99,05/22/19 11:50,"200 10th St, New York City, NY 10001" -208707,34in Ultrawide Monitor,1,379.99,05/10/19 20:34,"283 River St, Boston, MA 02215" -208708,27in 4K Gaming Monitor,1,389.99,05/03/19 23:31,"548 Ridge St, Portland, OR 97035" -208709,Apple Airpods Headphones,1,150,05/01/19 11:29,"846 Highland St, San Francisco, CA 94016" -208710,AAA Batteries (4-pack),3,2.99,05/27/19 10:50,"915 4th St, Atlanta, GA 30301" -208711,Lightning Charging Cable,1,14.95,05/28/19 00:18,"768 Pine St, Boston, MA 02215" -208712,27in FHD Monitor,1,149.99,05/10/19 14:43,"567 Adams St, Dallas, TX 75001" -208713,AAA Batteries (4-pack),1,2.99,05/04/19 10:38,"420 Washington St, Boston, MA 02215" -208714,AA Batteries (4-pack),1,3.84,05/13/19 06:36,"160 Lakeview St, San Francisco, CA 94016" -208715,USB-C Charging Cable,1,11.95,05/26/19 18:23,"496 Highland St, Atlanta, GA 30301" -208716,USB-C Charging Cable,1,11.95,05/18/19 17:46,"419 Center St, Portland, ME 04101" -208717,Apple Airpods Headphones,1,150,05/17/19 20:13,"117 9th St, Austin, TX 73301" -208718,Apple Airpods Headphones,1,150,05/08/19 02:41,"840 Meadow St, San Francisco, CA 94016" -208719,Apple Airpods Headphones,1,150,05/23/19 00:03,"589 North St, Seattle, WA 98101" -208720,Wired Headphones,1,11.99,05/16/19 09:56,"114 13th St, Austin, TX 73301" -208721,Google Phone,1,600,05/29/19 20:00,"526 Highland St, San Francisco, CA 94016" -208722,ThinkPad Laptop,1,999.99,05/15/19 06:31,"959 West St, Dallas, TX 75001" -208723,Apple Airpods Headphones,1,150,05/15/19 12:57,"500 Dogwood St, New York City, NY 10001" -208724,AA Batteries (4-pack),1,3.84,05/25/19 19:12,"801 4th St, Boston, MA 02215" -208725,AA Batteries (4-pack),1,3.84,05/13/19 11:46,"417 6th St, San Francisco, CA 94016" -208726,Apple Airpods Headphones,1,150,05/20/19 16:03,"136 Lake St, San Francisco, CA 94016" -208727,Wired Headphones,2,11.99,05/16/19 14:31,"771 West St, Seattle, WA 98101" -208728,Lightning Charging Cable,1,14.95,05/24/19 10:22,"369 River St, Portland, OR 97035" -208729,AAA Batteries (4-pack),2,2.99,05/07/19 07:55,"36 Walnut St, Los Angeles, CA 90001" -208730,AA Batteries (4-pack),1,3.84,05/05/19 13:38,"188 North St, Los Angeles, CA 90001" -208731,LG Washing Machine,1,600.0,05/08/19 08:53,"464 Church St, New York City, NY 10001" -208732,27in FHD Monitor,1,149.99,05/26/19 23:27,"732 Cherry St, Portland, OR 97035" -208733,Macbook Pro Laptop,1,1700,05/05/19 11:46,"761 7th St, San Francisco, CA 94016" -208734,Wired Headphones,1,11.99,05/29/19 18:06,"557 Adams St, New York City, NY 10001" -208735,Google Phone,1,600,05/20/19 11:58,"514 5th St, Boston, MA 02215" -208736,LG Washing Machine,1,600.0,05/02/19 14:56,"477 Hill St, San Francisco, CA 94016" -208737,Wired Headphones,1,11.99,05/09/19 20:19,"574 Main St, Atlanta, GA 30301" -208738,AAA Batteries (4-pack),1,2.99,05/19/19 15:44,"550 11th St, Los Angeles, CA 90001" -208739,Google Phone,1,600,05/17/19 22:25,"932 Chestnut St, San Francisco, CA 94016" -208740,AAA Batteries (4-pack),1,2.99,05/13/19 19:15,"757 Center St, New York City, NY 10001" -208741,Bose SoundSport Headphones,1,99.99,05/09/19 10:23,"240 Main St, New York City, NY 10001" -208742,Lightning Charging Cable,1,14.95,05/19/19 12:52,"381 West St, Atlanta, GA 30301" -208743,USB-C Charging Cable,1,11.95,05/18/19 19:19,"208 River St, Atlanta, GA 30301" -208744,AA Batteries (4-pack),1,3.84,05/10/19 14:45,"549 Adams St, San Francisco, CA 94016" -208745,Lightning Charging Cable,1,14.95,05/26/19 17:21,"88 14th St, Atlanta, GA 30301" -208746,AAA Batteries (4-pack),1,2.99,05/12/19 21:59,"327 11th St, Portland, OR 97035" -208747,Lightning Charging Cable,1,14.95,05/11/19 15:02,"391 Lincoln St, San Francisco, CA 94016" -208748,AAA Batteries (4-pack),2,2.99,05/07/19 19:21,"441 6th St, Boston, MA 02215" -208749,Apple Airpods Headphones,1,150,05/21/19 18:06,"767 Church St, Portland, ME 04101" -208750,USB-C Charging Cable,1,11.95,05/26/19 18:20,"803 7th St, San Francisco, CA 94016" -208751,AA Batteries (4-pack),1,3.84,05/04/19 20:43,"777 2nd St, Boston, MA 02215" -208752,Wired Headphones,1,11.99,05/17/19 20:19,"394 11th St, Los Angeles, CA 90001" -208753,AA Batteries (4-pack),1,3.84,05/11/19 16:10,"885 8th St, San Francisco, CA 94016" -208754,Bose SoundSport Headphones,1,99.99,05/30/19 21:45,"47 Jefferson St, Boston, MA 02215" -208755,iPhone,1,700,05/09/19 10:17,"447 Center St, San Francisco, CA 94016" -208755,Lightning Charging Cable,1,14.95,05/09/19 10:17,"447 Center St, San Francisco, CA 94016" -208756,Apple Airpods Headphones,1,150,05/22/19 08:37,"904 Willow St, Los Angeles, CA 90001" -208757,LG Dryer,1,600.0,05/09/19 12:42,"490 2nd St, Los Angeles, CA 90001" -208758,ThinkPad Laptop,1,999.99,05/06/19 17:22,"342 Sunset St, Atlanta, GA 30301" -208759,USB-C Charging Cable,2,11.95,05/30/19 16:55,"908 1st St, New York City, NY 10001" -208760,AAA Batteries (4-pack),3,2.99,05/19/19 10:32,"638 Highland St, Portland, OR 97035" -208761,Flatscreen TV,1,300,05/03/19 21:06,"864 Cedar St, Los Angeles, CA 90001" -208762,Wired Headphones,1,11.99,05/31/19 13:31,"597 River St, San Francisco, CA 94016" -208763,20in Monitor,1,109.99,05/06/19 11:20,"128 7th St, Los Angeles, CA 90001" -208764,Lightning Charging Cable,1,14.95,05/21/19 03:32,"849 Elm St, San Francisco, CA 94016" -208765,Bose SoundSport Headphones,1,99.99,05/10/19 17:43,"529 13th St, New York City, NY 10001" -208766,Wired Headphones,1,11.99,05/04/19 17:53,"261 Highland St, San Francisco, CA 94016" -208767,Bose SoundSport Headphones,1,99.99,05/30/19 07:38,"404 Washington St, Seattle, WA 98101" -208768,ThinkPad Laptop,1,999.99,05/16/19 19:06,"682 2nd St, San Francisco, CA 94016" -208769,Lightning Charging Cable,1,14.95,05/29/19 13:29,"214 Walnut St, Austin, TX 73301" -208770,AAA Batteries (4-pack),1,2.99,05/23/19 12:19,"863 Lake St, Boston, MA 02215" -208771,20in Monitor,1,109.99,05/31/19 18:18,"11 Meadow St, Dallas, TX 75001" -208772,Wired Headphones,1,11.99,05/14/19 10:46,"220 North St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -208773,Apple Airpods Headphones,1,150,05/14/19 15:07,"520 14th St, New York City, NY 10001" -208774,AAA Batteries (4-pack),1,2.99,05/13/19 21:08,"585 Hill St, Portland, OR 97035" -208774,AA Batteries (4-pack),1,3.84,05/13/19 21:08,"585 Hill St, Portland, OR 97035" -208775,LG Washing Machine,1,600.0,05/11/19 11:19,"725 Madison St, Dallas, TX 75001" -208776,Wired Headphones,1,11.99,05/09/19 09:37,"626 Cedar St, New York City, NY 10001" -208777,ThinkPad Laptop,1,999.99,05/13/19 14:45,"650 Adams St, Boston, MA 02215" -208778,Wired Headphones,1,11.99,05/24/19 11:12,"536 Center St, Austin, TX 73301" -208779,Bose SoundSport Headphones,1,99.99,05/07/19 19:49,"232 5th St, Portland, OR 97035" -208780,AAA Batteries (4-pack),1,2.99,05/22/19 09:01,"955 5th St, Seattle, WA 98101" -208781,USB-C Charging Cable,1,11.95,05/08/19 14:52,"845 Dogwood St, Austin, TX 73301" -208782,20in Monitor,1,109.99,05/13/19 07:44,"230 Wilson St, Austin, TX 73301" -208783,ThinkPad Laptop,1,999.99,05/01/19 16:19,"860 Park St, Dallas, TX 75001" -208784,Macbook Pro Laptop,1,1700,05/06/19 20:09,"35 5th St, San Francisco, CA 94016" -208785,Bose SoundSport Headphones,1,99.99,05/22/19 20:51,"851 12th St, Dallas, TX 75001" -208786,AAA Batteries (4-pack),5,2.99,05/17/19 19:09,"247 Center St, Austin, TX 73301" -208787,iPhone,1,700,05/17/19 21:10,"79 9th St, Los Angeles, CA 90001" -208788,AAA Batteries (4-pack),1,2.99,05/23/19 13:26,"824 Washington St, Portland, OR 97035" -208789,USB-C Charging Cable,1,11.95,05/09/19 20:54,"429 14th St, Portland, OR 97035" -208790,Macbook Pro Laptop,1,1700,05/26/19 17:59,"549 Madison St, Atlanta, GA 30301" -208791,27in FHD Monitor,1,149.99,05/15/19 17:00,"66 North St, San Francisco, CA 94016" -208792,AA Batteries (4-pack),4,3.84,05/14/19 08:39,"396 Dogwood St, San Francisco, CA 94016" -208793,Wired Headphones,1,11.99,05/16/19 13:51,"789 Hill St, Boston, MA 02215" -,,,,, -208794,34in Ultrawide Monitor,1,379.99,05/08/19 07:38,"85 12th St, San Francisco, CA 94016" -208795,USB-C Charging Cable,1,11.95,05/20/19 22:15,"544 South St, Los Angeles, CA 90001" -208796,20in Monitor,1,109.99,05/05/19 16:03,"891 Willow St, Los Angeles, CA 90001" -208797,LG Washing Machine,1,600.0,05/25/19 09:32,"265 4th St, San Francisco, CA 94016" -208798,AAA Batteries (4-pack),2,2.99,05/07/19 18:58,"441 Chestnut St, Boston, MA 02215" -208799,Lightning Charging Cable,1,14.95,05/27/19 14:47,"981 7th St, San Francisco, CA 94016" -208800,Bose SoundSport Headphones,1,99.99,05/21/19 12:39,"642 Wilson St, Austin, TX 73301" -208801,Lightning Charging Cable,1,14.95,05/09/19 09:06,"870 Chestnut St, Seattle, WA 98101" -208802,Apple Airpods Headphones,1,150,05/26/19 00:23,"754 14th St, New York City, NY 10001" -208803,Lightning Charging Cable,1,14.95,05/07/19 12:59,"239 Walnut St, Portland, OR 97035" -208804,AAA Batteries (4-pack),2,2.99,05/31/19 13:12,"339 Lincoln St, Los Angeles, CA 90001" -208805,Macbook Pro Laptop,1,1700,05/28/19 17:58,"799 1st St, Los Angeles, CA 90001" -208806,USB-C Charging Cable,1,11.95,05/24/19 16:28,"734 North St, Portland, ME 04101" -208807,AA Batteries (4-pack),3,3.84,05/20/19 10:18,"762 Meadow St, Dallas, TX 75001" -208808,AAA Batteries (4-pack),1,2.99,05/20/19 11:57,"598 7th St, Boston, MA 02215" -208809,iPhone,1,700,05/31/19 15:59,"937 Dogwood St, Portland, OR 97035" -208810,Apple Airpods Headphones,1,150,05/12/19 12:01,"33 Washington St, Atlanta, GA 30301" -208811,27in FHD Monitor,1,149.99,05/19/19 17:54,"3 Forest St, Boston, MA 02215" -208812,Apple Airpods Headphones,1,150,05/07/19 05:39,"600 Spruce St, Los Angeles, CA 90001" -208813,Bose SoundSport Headphones,1,99.99,05/27/19 18:39,"687 1st St, Seattle, WA 98101" -208814,Lightning Charging Cable,1,14.95,05/08/19 19:47,"92 Church St, Los Angeles, CA 90001" -208815,iPhone,1,700,05/19/19 16:19,"254 4th St, Seattle, WA 98101" -208816,Lightning Charging Cable,1,14.95,05/26/19 16:16,"57 Sunset St, Los Angeles, CA 90001" -208817,iPhone,1,700,05/14/19 17:04,"796 7th St, Boston, MA 02215" -208818,Lightning Charging Cable,1,14.95,05/22/19 17:46,"804 Pine St, Seattle, WA 98101" -208819,Wired Headphones,1,11.99,05/12/19 17:15,"159 Willow St, San Francisco, CA 94016" -208820,27in 4K Gaming Monitor,1,389.99,05/25/19 17:38,"627 4th St, San Francisco, CA 94016" -208821,Bose SoundSport Headphones,1,99.99,05/23/19 10:44,"60 Walnut St, San Francisco, CA 94016" -208822,Google Phone,1,600,05/20/19 22:29,"434 Highland St, San Francisco, CA 94016" -208823,Google Phone,1,600,05/22/19 15:00,"573 Wilson St, Dallas, TX 75001" -208824,AA Batteries (4-pack),2,3.84,05/31/19 16:21,"471 Park St, Boston, MA 02215" -208825,Apple Airpods Headphones,1,150,05/01/19 22:20,"119 Chestnut St, Portland, OR 97035" -208826,iPhone,1,700,05/07/19 08:32,"725 Madison St, San Francisco, CA 94016" -208827,Lightning Charging Cable,1,14.95,05/15/19 11:10,"184 Highland St, Atlanta, GA 30301" -208828,Macbook Pro Laptop,1,1700,05/20/19 18:27,"161 Elm St, San Francisco, CA 94016" -208829,USB-C Charging Cable,1,11.95,05/10/19 13:18,"985 Elm St, Atlanta, GA 30301" -208830,AAA Batteries (4-pack),2,2.99,05/20/19 12:05,"341 Cedar St, New York City, NY 10001" -208831,Apple Airpods Headphones,1,150,05/21/19 13:54,"521 Jackson St, San Francisco, CA 94016" -208832,AAA Batteries (4-pack),1,2.99,05/26/19 23:46,"713 Center St, Los Angeles, CA 90001" -208833,Bose SoundSport Headphones,1,99.99,05/23/19 15:17,"647 Sunset St, New York City, NY 10001" -208834,AA Batteries (4-pack),1,3.84,05/08/19 10:13,"818 10th St, Atlanta, GA 30301" -208835,AAA Batteries (4-pack),1,2.99,05/06/19 07:58,"7 11th St, San Francisco, CA 94016" -208836,AAA Batteries (4-pack),1,2.99,05/23/19 14:31,"854 14th St, Los Angeles, CA 90001" -208837,USB-C Charging Cable,1,11.95,05/17/19 10:16,"376 7th St, Dallas, TX 75001" -208838,Wired Headphones,1,11.99,05/21/19 19:13,"544 Wilson St, Seattle, WA 98101" -208839,AAA Batteries (4-pack),2,2.99,05/19/19 13:36,"199 Church St, Austin, TX 73301" -208840,AA Batteries (4-pack),1,3.84,05/03/19 01:00,"316 Cedar St, Dallas, TX 75001" -208841,Lightning Charging Cable,1,14.95,05/16/19 06:19,"178 Ridge St, San Francisco, CA 94016" -208842,AAA Batteries (4-pack),1,2.99,05/04/19 22:44,"750 South St, Portland, OR 97035" -208843,Lightning Charging Cable,1,14.95,05/15/19 21:47,"47 10th St, Boston, MA 02215" -208844,Wired Headphones,1,11.99,05/06/19 14:27,"985 West St, Atlanta, GA 30301" -208845,AAA Batteries (4-pack),1,2.99,05/16/19 21:01,"255 Center St, San Francisco, CA 94016" -208846,AAA Batteries (4-pack),1,2.99,05/14/19 02:16,"89 11th St, San Francisco, CA 94016" -208847,Google Phone,1,600,05/20/19 09:06,"101 Walnut St, San Francisco, CA 94016" -208848,AAA Batteries (4-pack),1,2.99,05/15/19 13:13,"951 14th St, San Francisco, CA 94016" -208849,AAA Batteries (4-pack),1,2.99,05/25/19 00:46,"640 Walnut St, Atlanta, GA 30301" -208850,Macbook Pro Laptop,1,1700,05/26/19 07:56,"67 Adams St, New York City, NY 10001" -208851,iPhone,1,700,05/05/19 21:56,"226 Pine St, San Francisco, CA 94016" -208852,Lightning Charging Cable,1,14.95,05/05/19 18:22,"156 Willow St, Boston, MA 02215" -208853,AAA Batteries (4-pack),2,2.99,05/27/19 14:25,"108 7th St, Atlanta, GA 30301" -208853,34in Ultrawide Monitor,1,379.99,05/27/19 14:25,"108 7th St, Atlanta, GA 30301" -208854,Apple Airpods Headphones,1,150,05/15/19 10:07,"731 Lake St, San Francisco, CA 94016" -208855,USB-C Charging Cable,1,11.95,05/11/19 19:58,"667 River St, Boston, MA 02215" -208856,AAA Batteries (4-pack),1,2.99,05/27/19 08:01,"147 Park St, Boston, MA 02215" -208857,USB-C Charging Cable,2,11.95,05/27/19 13:28,"89 12th St, Los Angeles, CA 90001" -208858,AAA Batteries (4-pack),1,2.99,05/11/19 18:48,"856 Washington St, Portland, OR 97035" -208859,AAA Batteries (4-pack),1,2.99,05/23/19 01:20,"899 Forest St, San Francisco, CA 94016" -208860,Bose SoundSport Headphones,1,99.99,05/09/19 10:37,"442 11th St, Dallas, TX 75001" -208861,USB-C Charging Cable,1,11.95,05/06/19 13:57,"732 1st St, New York City, NY 10001" -208862,Lightning Charging Cable,2,14.95,05/17/19 08:55,"525 Forest St, Portland, OR 97035" -208863,Apple Airpods Headphones,1,150,05/16/19 12:07,"460 13th St, Atlanta, GA 30301" -208864,Bose SoundSport Headphones,1,99.99,05/10/19 00:18,"298 West St, Los Angeles, CA 90001" -208865,AA Batteries (4-pack),1,3.84,05/24/19 13:07,"36 Dogwood St, Boston, MA 02215" -208866,AAA Batteries (4-pack),3,2.99,05/05/19 20:58,"730 6th St, New York City, NY 10001" -208867,Lightning Charging Cable,2,14.95,05/01/19 08:43,"912 Highland St, New York City, NY 10001" -208868,AAA Batteries (4-pack),1,2.99,05/26/19 20:27,"605 Lincoln St, Boston, MA 02215" -208869,AA Batteries (4-pack),1,3.84,05/13/19 22:46,"275 Jefferson St, Los Angeles, CA 90001" -208869,Lightning Charging Cable,1,14.95,05/13/19 22:46,"275 Jefferson St, Los Angeles, CA 90001" -208870,Google Phone,1,600,05/21/19 11:57,"602 Wilson St, Los Angeles, CA 90001" -208871,USB-C Charging Cable,1,11.95,05/17/19 12:28,"894 Main St, Dallas, TX 75001" -208872,AA Batteries (4-pack),1,3.84,05/16/19 19:47,"299 River St, Dallas, TX 75001" -208873,AAA Batteries (4-pack),2,2.99,05/21/19 15:00,"761 Madison St, Dallas, TX 75001" -208874,Wired Headphones,1,11.99,05/27/19 18:14,"427 9th St, San Francisco, CA 94016" -208875,AA Batteries (4-pack),1,3.84,05/21/19 20:16,"568 West St, Los Angeles, CA 90001" -208876,AA Batteries (4-pack),1,3.84,05/17/19 20:48,"390 Forest St, Los Angeles, CA 90001" -208877,Lightning Charging Cable,2,14.95,05/26/19 16:57,"381 Cherry St, Austin, TX 73301" -208878,Wired Headphones,1,11.99,05/24/19 23:15,"554 Maple St, New York City, NY 10001" -208879,Lightning Charging Cable,1,14.95,05/21/19 19:24,"381 Sunset St, San Francisco, CA 94016" -208880,Wired Headphones,1,11.99,05/08/19 17:06,"196 Pine St, San Francisco, CA 94016" -208881,Lightning Charging Cable,1,14.95,05/24/19 22:37,"831 Meadow St, Austin, TX 73301" -208882,AAA Batteries (4-pack),1,2.99,05/14/19 23:05,"923 Ridge St, Austin, TX 73301" -208883,AAA Batteries (4-pack),1,2.99,05/26/19 13:01,"161 Willow St, San Francisco, CA 94016" -208884,AA Batteries (4-pack),2,3.84,05/06/19 23:34,"256 North St, Los Angeles, CA 90001" -208885,Lightning Charging Cable,1,14.95,05/13/19 20:42,"678 Jefferson St, San Francisco, CA 94016" -208886,AAA Batteries (4-pack),1,2.99,05/16/19 21:43,"608 South St, San Francisco, CA 94016" -208887,AA Batteries (4-pack),4,3.84,05/19/19 21:08,"70 Walnut St, Los Angeles, CA 90001" -208888,iPhone,1,700,05/11/19 17:15,"14 Hickory St, Los Angeles, CA 90001" -208889,LG Dryer,1,600.0,05/09/19 22:47,"597 Hickory St, Austin, TX 73301" -208890,Wired Headphones,1,11.99,05/28/19 14:18,"825 Hill St, Austin, TX 73301" -208891,Apple Airpods Headphones,1,150,05/09/19 09:17,"830 1st St, New York City, NY 10001" -208892,27in FHD Monitor,1,149.99,05/06/19 22:44,"298 Spruce St, Atlanta, GA 30301" -208893,AAA Batteries (4-pack),1,2.99,05/21/19 07:01,"398 11th St, Portland, ME 04101" -208894,ThinkPad Laptop,1,999.99,05/18/19 19:46,"608 7th St, New York City, NY 10001" -208895,AA Batteries (4-pack),1,3.84,05/14/19 21:10,"264 Jefferson St, Austin, TX 73301" -208896,AAA Batteries (4-pack),1,2.99,05/18/19 13:52,"911 Washington St, New York City, NY 10001" -208897,iPhone,1,700,05/14/19 16:50,"256 Elm St, New York City, NY 10001" -208898,AA Batteries (4-pack),1,3.84,05/23/19 10:59,"256 11th St, San Francisco, CA 94016" -208898,Bose SoundSport Headphones,1,99.99,05/23/19 10:59,"256 11th St, San Francisco, CA 94016" -208899,Apple Airpods Headphones,1,150,05/10/19 11:49,"848 Ridge St, San Francisco, CA 94016" -208900,34in Ultrawide Monitor,1,379.99,05/12/19 14:11,"507 Johnson St, Dallas, TX 75001" -208901,Lightning Charging Cable,1,14.95,05/02/19 09:50,"944 Meadow St, San Francisco, CA 94016" -208902,27in 4K Gaming Monitor,1,389.99,05/05/19 20:03,"63 Willow St, Atlanta, GA 30301" -208903,AA Batteries (4-pack),1,3.84,05/14/19 08:28,"339 Adams St, Boston, MA 02215" -208904,Vareebadd Phone,1,400,05/03/19 07:28,"924 14th St, San Francisco, CA 94016" -208905,Macbook Pro Laptop,1,1700,05/20/19 10:04,"913 Maple St, Dallas, TX 75001" -208906,34in Ultrawide Monitor,1,379.99,05/16/19 18:49,"836 Walnut St, San Francisco, CA 94016" -208907,Apple Airpods Headphones,1,150,05/23/19 10:31,"859 Jefferson St, Los Angeles, CA 90001" -208908,Wired Headphones,1,11.99,05/24/19 11:01,"55 Wilson St, San Francisco, CA 94016" -208909,USB-C Charging Cable,1,11.95,05/02/19 20:21,"200 Meadow St, Austin, TX 73301" -208910,34in Ultrawide Monitor,1,379.99,05/18/19 16:44,"864 14th St, Boston, MA 02215" -208911,Flatscreen TV,1,300,05/18/19 06:51,"605 Jefferson St, Dallas, TX 75001" -208912,Flatscreen TV,1,300,05/24/19 13:45,"225 Pine St, New York City, NY 10001" -208913,34in Ultrawide Monitor,1,379.99,05/08/19 16:06,"427 Johnson St, New York City, NY 10001" -208914,AAA Batteries (4-pack),2,2.99,05/27/19 20:49,"467 Forest St, Los Angeles, CA 90001" -208915,Apple Airpods Headphones,1,150,05/16/19 10:31,"855 1st St, Seattle, WA 98101" -208916,Wired Headphones,1,11.99,05/29/19 11:14,"325 North St, Dallas, TX 75001" -208917,USB-C Charging Cable,1,11.95,05/19/19 19:46,"538 Hill St, San Francisco, CA 94016" -208918,USB-C Charging Cable,1,11.95,05/29/19 13:13,"765 Cedar St, Los Angeles, CA 90001" -208919,Lightning Charging Cable,1,14.95,05/13/19 12:55,"386 4th St, Los Angeles, CA 90001" -208920,Lightning Charging Cable,1,14.95,05/13/19 18:40,"910 11th St, Atlanta, GA 30301" -208921,34in Ultrawide Monitor,1,379.99,05/26/19 07:56,"195 Walnut St, Dallas, TX 75001" -208922,34in Ultrawide Monitor,1,379.99,05/28/19 20:10,"531 8th St, San Francisco, CA 94016" -208923,AAA Batteries (4-pack),1,2.99,05/26/19 09:25,"540 Dogwood St, Atlanta, GA 30301" -208924,USB-C Charging Cable,1,11.95,05/28/19 13:04,"348 Spruce St, Seattle, WA 98101" -208925,Bose SoundSport Headphones,1,99.99,05/03/19 20:38,"268 Maple St, Seattle, WA 98101" -208926,USB-C Charging Cable,1,11.95,05/31/19 09:13,"797 Spruce St, Seattle, WA 98101" -208926,AAA Batteries (4-pack),1,2.99,05/31/19 09:13,"797 Spruce St, Seattle, WA 98101" -208927,AA Batteries (4-pack),1,3.84,05/30/19 11:09,"142 Lincoln St, San Francisco, CA 94016" -208928,Wired Headphones,1,11.99,05/22/19 13:30,"410 7th St, Seattle, WA 98101" -208929,Wired Headphones,1,11.99,05/31/19 11:18,"354 Hickory St, New York City, NY 10001" -208930,27in FHD Monitor,1,149.99,05/02/19 09:38,"147 Adams St, Boston, MA 02215" -208930,Apple Airpods Headphones,1,150,05/02/19 09:38,"147 Adams St, Boston, MA 02215" -208931,AA Batteries (4-pack),2,3.84,05/30/19 11:43,"771 Meadow St, San Francisco, CA 94016" -208932,ThinkPad Laptop,1,999.99,05/27/19 19:15,"888 Cedar St, New York City, NY 10001" -208933,USB-C Charging Cable,1,11.95,05/04/19 14:34,"221 4th St, San Francisco, CA 94016" -208934,Wired Headphones,1,11.99,05/23/19 13:02,"542 Church St, San Francisco, CA 94016" -208935,Wired Headphones,1,11.99,05/01/19 16:39,"314 Washington St, San Francisco, CA 94016" -208936,AA Batteries (4-pack),1,3.84,05/04/19 15:44,"67 7th St, Austin, TX 73301" -208937,Wired Headphones,1,11.99,05/13/19 10:01,"902 Johnson St, Los Angeles, CA 90001" -208938,LG Dryer,1,600.0,05/31/19 15:34,"658 7th St, Austin, TX 73301" -208939,AA Batteries (4-pack),1,3.84,05/13/19 15:01,"594 Lake St, Boston, MA 02215" -208940,Apple Airpods Headphones,1,150,05/06/19 12:15,"964 Sunset St, New York City, NY 10001" -208941,Wired Headphones,1,11.99,05/19/19 13:13,"944 Washington St, Atlanta, GA 30301" -208942,Wired Headphones,1,11.99,05/30/19 21:48,"654 Jefferson St, Portland, OR 97035" -208943,27in 4K Gaming Monitor,1,389.99,05/10/19 18:31,"602 North St, Los Angeles, CA 90001" -208944,Lightning Charging Cable,1,14.95,05/24/19 09:00,"599 Willow St, San Francisco, CA 94016" -208945,AA Batteries (4-pack),1,3.84,05/13/19 08:44,"228 4th St, Atlanta, GA 30301" -208946,Lightning Charging Cable,1,14.95,05/25/19 18:08,"843 Highland St, Atlanta, GA 30301" -208947,Bose SoundSport Headphones,1,99.99,05/01/19 23:12,"773 Chestnut St, Boston, MA 02215" -208948,Bose SoundSport Headphones,1,99.99,05/09/19 19:50,"737 Cedar St, Boston, MA 02215" -208949,Lightning Charging Cable,1,14.95,05/20/19 11:41,"714 Sunset St, Dallas, TX 75001" -208950,Bose SoundSport Headphones,1,99.99,05/12/19 05:45,"150 Main St, Los Angeles, CA 90001" -208951,Wired Headphones,1,11.99,05/05/19 19:30,"584 Wilson St, Los Angeles, CA 90001" -208952,Macbook Pro Laptop,1,1700,05/30/19 14:17,"673 6th St, Boston, MA 02215" -208953,AAA Batteries (4-pack),1,2.99,05/03/19 21:45,"331 Jackson St, Dallas, TX 75001" -208954,Apple Airpods Headphones,1,150,05/11/19 15:15,"950 Ridge St, Dallas, TX 75001" -208955,AAA Batteries (4-pack),2,2.99,05/18/19 18:47,"182 14th St, Atlanta, GA 30301" -208956,Macbook Pro Laptop,1,1700,05/03/19 12:02,"929 Chestnut St, Austin, TX 73301" -208957,Apple Airpods Headphones,1,150,05/12/19 06:48,"526 South St, New York City, NY 10001" -208958,USB-C Charging Cable,1,11.95,05/22/19 11:18,"144 2nd St, San Francisco, CA 94016" -208959,ThinkPad Laptop,1,999.99,05/07/19 20:36,"276 Highland St, Seattle, WA 98101" -208960,Wired Headphones,1,11.99,05/08/19 21:46,"308 Center St, San Francisco, CA 94016" -208961,USB-C Charging Cable,1,11.95,05/12/19 20:33,"874 4th St, San Francisco, CA 94016" -208962,Lightning Charging Cable,1,14.95,05/04/19 16:36,"48 Hickory St, Los Angeles, CA 90001" -208963,Lightning Charging Cable,1,14.95,05/11/19 21:09,"797 Ridge St, Dallas, TX 75001" -208964,AAA Batteries (4-pack),1,2.99,05/25/19 19:03,"721 Ridge St, San Francisco, CA 94016" -208965,Bose SoundSport Headphones,1,99.99,05/28/19 22:26,"335 Lake St, Atlanta, GA 30301" -208966,Bose SoundSport Headphones,1,99.99,05/16/19 11:01,"658 Walnut St, Boston, MA 02215" -208967,Lightning Charging Cable,1,14.95,05/30/19 11:21,"961 5th St, San Francisco, CA 94016" -208968,USB-C Charging Cable,2,11.95,05/22/19 22:27,"59 13th St, Austin, TX 73301" -208969,AA Batteries (4-pack),1,3.84,05/05/19 20:14,"185 Johnson St, Los Angeles, CA 90001" -208970,Bose SoundSport Headphones,1,99.99,05/20/19 09:36,"349 Jackson St, Dallas, TX 75001" -208971,Google Phone,1,600,05/24/19 22:47,"936 6th St, Los Angeles, CA 90001" -208971,AA Batteries (4-pack),1,3.84,05/24/19 22:47,"936 6th St, Los Angeles, CA 90001" -208972,Apple Airpods Headphones,1,150,05/23/19 12:07,"138 Cherry St, San Francisco, CA 94016" -208973,iPhone,1,700,05/31/19 17:22,"24 Walnut St, San Francisco, CA 94016" -208974,AA Batteries (4-pack),1,3.84,05/03/19 18:58,"507 South St, San Francisco, CA 94016" -208975,Wired Headphones,1,11.99,05/18/19 21:51,"37 Madison St, Los Angeles, CA 90001" -208976,AA Batteries (4-pack),3,3.84,05/18/19 21:51,"810 Johnson St, Boston, MA 02215" -208977,USB-C Charging Cable,1,11.95,05/10/19 11:59,"771 4th St, Austin, TX 73301" -208978,AAA Batteries (4-pack),1,2.99,05/09/19 09:03,"621 Meadow St, Seattle, WA 98101" -208979,Lightning Charging Cable,1,14.95,05/23/19 19:13,"266 Lincoln St, Los Angeles, CA 90001" -208980,AAA Batteries (4-pack),2,2.99,05/04/19 12:01,"252 2nd St, Los Angeles, CA 90001" -208981,USB-C Charging Cable,1,11.95,05/24/19 10:26,"237 West St, San Francisco, CA 94016" -208982,AA Batteries (4-pack),1,3.84,05/23/19 19:40,"742 Forest St, New York City, NY 10001" -208983,USB-C Charging Cable,1,11.95,05/09/19 17:20,"779 Jackson St, New York City, NY 10001" -208984,iPhone,1,700,05/01/19 18:49,"546 Park St, Atlanta, GA 30301" -208985,AA Batteries (4-pack),2,3.84,05/16/19 14:32,"706 Adams St, New York City, NY 10001" -208986,Lightning Charging Cable,1,14.95,05/19/19 13:49,"578 Cedar St, San Francisco, CA 94016" -208987,AAA Batteries (4-pack),1,2.99,05/08/19 12:06,"498 South St, Los Angeles, CA 90001" -208988,Bose SoundSport Headphones,1,99.99,05/08/19 13:04,"589 Willow St, San Francisco, CA 94016" -208989,Lightning Charging Cable,1,14.95,05/20/19 10:20,"635 Madison St, New York City, NY 10001" -208990,Vareebadd Phone,1,400,05/07/19 22:27,"990 Spruce St, Los Angeles, CA 90001" -208991,Lightning Charging Cable,1,14.95,05/12/19 22:26,"835 9th St, Dallas, TX 75001" -208992,27in 4K Gaming Monitor,1,389.99,05/21/19 09:39,"168 Forest St, Boston, MA 02215" -208993,iPhone,1,700,05/10/19 14:00,"292 Forest St, Dallas, TX 75001" -208994,Lightning Charging Cable,1,14.95,05/02/19 09:08,"981 Cherry St, Boston, MA 02215" -208995,Apple Airpods Headphones,1,150,05/08/19 01:25,"593 10th St, Portland, OR 97035" -208996,AA Batteries (4-pack),1,3.84,05/04/19 09:56,"745 2nd St, New York City, NY 10001" -208997,Lightning Charging Cable,2,14.95,05/29/19 23:50,"42 Forest St, Los Angeles, CA 90001" -208998,Wired Headphones,1,11.99,05/08/19 18:33,"629 West St, Dallas, TX 75001" -208999,USB-C Charging Cable,1,11.95,05/03/19 21:59,"967 Cherry St, New York City, NY 10001" -209000,27in FHD Monitor,1,149.99,05/17/19 12:39,"997 8th St, Los Angeles, CA 90001" -209001,USB-C Charging Cable,1,11.95,05/09/19 15:54,"403 Chestnut St, Los Angeles, CA 90001" -209002,USB-C Charging Cable,2,11.95,05/14/19 09:16,"504 Church St, Dallas, TX 75001" -209003,Bose SoundSport Headphones,1,99.99,05/15/19 06:55,"976 Cherry St, Portland, OR 97035" -209004,27in 4K Gaming Monitor,1,389.99,05/03/19 20:19,"794 Dogwood St, Dallas, TX 75001" -209005,Apple Airpods Headphones,1,150,05/02/19 09:59,"301 12th St, Atlanta, GA 30301" -209006,AAA Batteries (4-pack),1,2.99,05/15/19 14:40,"452 Elm St, San Francisco, CA 94016" -209007,27in FHD Monitor,1,149.99,05/11/19 22:29,"618 Jefferson St, San Francisco, CA 94016" -209008,Lightning Charging Cable,1,14.95,05/10/19 10:22,"93 Park St, Los Angeles, CA 90001" -209009,AA Batteries (4-pack),2,3.84,05/24/19 08:06,"716 South St, Los Angeles, CA 90001" -209010,27in FHD Monitor,1,149.99,05/20/19 11:02,"146 Jefferson St, Dallas, TX 75001" -209011,AAA Batteries (4-pack),2,2.99,05/20/19 10:50,"145 Lakeview St, Boston, MA 02215" -209012,Bose SoundSport Headphones,1,99.99,05/19/19 10:47,"874 North St, New York City, NY 10001" -209013,Apple Airpods Headphones,1,150,05/17/19 01:21,"657 Hill St, San Francisco, CA 94016" -209014,Lightning Charging Cable,1,14.95,05/30/19 06:36,"948 9th St, Dallas, TX 75001" -209015,Apple Airpods Headphones,1,150,05/13/19 21:22,"701 Maple St, Dallas, TX 75001" -209016,AAA Batteries (4-pack),1,2.99,05/19/19 14:31,"225 4th St, Atlanta, GA 30301" -209017,Macbook Pro Laptop,1,1700,05/15/19 19:10,"492 South St, Atlanta, GA 30301" -209018,USB-C Charging Cable,1,11.95,05/24/19 12:27,"820 Cedar St, Portland, OR 97035" -209019,Wired Headphones,1,11.99,05/23/19 00:30,"300 Lakeview St, Dallas, TX 75001" -209020,AAA Batteries (4-pack),1,2.99,05/27/19 15:05,"731 Ridge St, Dallas, TX 75001" -209021,AA Batteries (4-pack),1,3.84,05/13/19 18:56,"786 Church St, Portland, ME 04101" -209022,ThinkPad Laptop,1,999.99,05/18/19 13:38,"256 Forest St, New York City, NY 10001" -209023,AAA Batteries (4-pack),1,2.99,05/04/19 14:53,"65 Washington St, Boston, MA 02215" -209024,Wired Headphones,1,11.99,05/27/19 05:27,"540 Cedar St, San Francisco, CA 94016" -209025,Bose SoundSport Headphones,1,99.99,05/19/19 21:33,"837 Main St, New York City, NY 10001" -209026,AA Batteries (4-pack),2,3.84,05/20/19 14:06,"860 2nd St, Los Angeles, CA 90001" -209027,AAA Batteries (4-pack),1,2.99,05/13/19 10:49,"52 North St, Los Angeles, CA 90001" -209028,34in Ultrawide Monitor,1,379.99,05/20/19 16:39,"298 Forest St, Seattle, WA 98101" -209029,USB-C Charging Cable,1,11.95,05/04/19 15:01,"467 Willow St, Seattle, WA 98101" -209030,34in Ultrawide Monitor,1,379.99,05/06/19 06:31,"985 10th St, Portland, OR 97035" -209031,AAA Batteries (4-pack),1,2.99,05/22/19 13:40,"142 North St, Atlanta, GA 30301" -209032,Wired Headphones,1,11.99,05/07/19 09:10,"985 2nd St, New York City, NY 10001" -209033,Lightning Charging Cable,2,14.95,05/22/19 15:15,"845 9th St, Seattle, WA 98101" -209034,20in Monitor,1,109.99,05/17/19 19:40,"447 Lakeview St, Seattle, WA 98101" -209035,20in Monitor,1,109.99,05/27/19 15:57,"631 Forest St, Seattle, WA 98101" -209036,AA Batteries (4-pack),1,3.84,05/06/19 16:56,"633 1st St, Atlanta, GA 30301" -209037,Wired Headphones,1,11.99,05/25/19 22:18,"474 Lincoln St, Dallas, TX 75001" -209038,USB-C Charging Cable,2,11.95,05/03/19 23:09,"689 Spruce St, San Francisco, CA 94016" -209039,USB-C Charging Cable,1,11.95,05/30/19 12:10,"375 South St, Austin, TX 73301" -209039,Apple Airpods Headphones,1,150,05/30/19 12:10,"375 South St, Austin, TX 73301" -209040,AA Batteries (4-pack),1,3.84,05/28/19 11:41,"86 2nd St, New York City, NY 10001" -209041,AAA Batteries (4-pack),1,2.99,05/30/19 19:30,"19 Chestnut St, New York City, NY 10001" -209042,Wired Headphones,1,11.99,05/19/19 23:31,"716 River St, Boston, MA 02215" -209043,AAA Batteries (4-pack),2,2.99,05/31/19 07:56,"404 Jackson St, Los Angeles, CA 90001" -209044,USB-C Charging Cable,1,11.95,05/31/19 20:40,"292 8th St, San Francisco, CA 94016" -209045,27in FHD Monitor,1,149.99,05/02/19 17:00,"854 Washington St, Dallas, TX 75001" -209046,USB-C Charging Cable,1,11.95,05/12/19 22:31,"731 Dogwood St, Dallas, TX 75001" -209047,Google Phone,1,600,05/29/19 17:42,"731 8th St, Los Angeles, CA 90001" -209048,AAA Batteries (4-pack),1,2.99,05/20/19 11:59,"504 South St, Los Angeles, CA 90001" -209049,Lightning Charging Cable,1,14.95,05/06/19 16:53,"678 Lake St, San Francisco, CA 94016" -209050,USB-C Charging Cable,1,11.95,05/04/19 13:04,"345 Jackson St, Boston, MA 02215" -209051,Bose SoundSport Headphones,1,99.99,05/26/19 15:51,"253 Forest St, San Francisco, CA 94016" -209052,Bose SoundSport Headphones,1,99.99,05/05/19 22:08,"674 Lake St, San Francisco, CA 94016" -209053,Wired Headphones,1,11.99,05/10/19 19:14,"114 Hill St, San Francisco, CA 94016" -209054,Lightning Charging Cable,1,14.95,05/20/19 16:35,"2 10th St, San Francisco, CA 94016" -209055,Flatscreen TV,1,300,05/10/19 17:27,"421 Main St, Boston, MA 02215" -209056,Apple Airpods Headphones,1,150,05/22/19 21:15,"850 Madison St, Seattle, WA 98101" -209057,Apple Airpods Headphones,1,150,05/25/19 10:44,"434 14th St, Dallas, TX 75001" -209058,AAA Batteries (4-pack),1,2.99,05/12/19 10:54,"467 Sunset St, Portland, OR 97035" -209059,AAA Batteries (4-pack),1,2.99,05/15/19 21:27,"727 Lincoln St, Seattle, WA 98101" -209060,Flatscreen TV,1,300,05/26/19 17:52,"189 1st St, Atlanta, GA 30301" -209061,Lightning Charging Cable,1,14.95,05/22/19 12:41,"986 Cherry St, San Francisco, CA 94016" -209062,Bose SoundSport Headphones,1,99.99,05/18/19 13:16,"295 Meadow St, San Francisco, CA 94016" -209063,Lightning Charging Cable,1,14.95,05/11/19 19:21,"692 5th St, Portland, OR 97035" -209064,Bose SoundSport Headphones,1,99.99,05/24/19 21:21,"376 Maple St, Dallas, TX 75001" -209065,Macbook Pro Laptop,1,1700,05/06/19 12:22,"443 Hickory St, San Francisco, CA 94016" -209066,AA Batteries (4-pack),1,3.84,05/25/19 21:41,"395 Jefferson St, Seattle, WA 98101" -209067,27in FHD Monitor,1,149.99,05/11/19 13:37,"675 13th St, Boston, MA 02215" -209068,ThinkPad Laptop,1,999.99,05/06/19 14:18,"448 Meadow St, Portland, OR 97035" -209069,20in Monitor,1,109.99,05/27/19 14:47,"953 Forest St, Portland, OR 97035" -209070,Lightning Charging Cable,1,14.95,05/12/19 00:13,"945 South St, Portland, OR 97035" -209070,Bose SoundSport Headphones,1,99.99,05/12/19 00:13,"945 South St, Portland, OR 97035" -209071,Apple Airpods Headphones,1,150,05/17/19 21:19,"689 Jackson St, Los Angeles, CA 90001" -209072,AAA Batteries (4-pack),1,2.99,05/22/19 16:36,"632 Elm St, Dallas, TX 75001" -209073,iPhone,1,700,05/03/19 16:10,"844 Pine St, San Francisco, CA 94016" -209073,Lightning Charging Cable,1,14.95,05/03/19 16:10,"844 Pine St, San Francisco, CA 94016" -209074,AA Batteries (4-pack),1,3.84,05/23/19 17:43,"764 11th St, New York City, NY 10001" -209074,Apple Airpods Headphones,1,150,05/23/19 17:43,"764 11th St, New York City, NY 10001" -209075,Bose SoundSport Headphones,1,99.99,05/27/19 23:32,"52 9th St, San Francisco, CA 94016" -209076,AA Batteries (4-pack),1,3.84,05/25/19 14:05,"798 Jefferson St, San Francisco, CA 94016" -209077,Flatscreen TV,1,300,05/04/19 01:45,"461 Johnson St, Boston, MA 02215" -209078,iPhone,1,700,05/03/19 17:57,"787 Meadow St, San Francisco, CA 94016" -209079,27in 4K Gaming Monitor,1,389.99,05/09/19 14:40,"596 Church St, San Francisco, CA 94016" -209080,Wired Headphones,1,11.99,05/04/19 20:49,"423 Chestnut St, San Francisco, CA 94016" -209081,iPhone,1,700,05/03/19 19:40,"459 12th St, Boston, MA 02215" -209082,AAA Batteries (4-pack),1,2.99,05/03/19 07:09,"790 Dogwood St, New York City, NY 10001" -209083,34in Ultrawide Monitor,1,379.99,05/17/19 09:18,"797 Jefferson St, Dallas, TX 75001" -209084,AA Batteries (4-pack),1,3.84,05/22/19 18:53,"816 2nd St, Dallas, TX 75001" -209085,AAA Batteries (4-pack),1,2.99,05/21/19 19:25,"580 Lincoln St, Seattle, WA 98101" -209086,Vareebadd Phone,1,400,05/28/19 21:55,"137 Wilson St, Atlanta, GA 30301" -209087,Bose SoundSport Headphones,1,99.99,05/22/19 12:32,"423 Highland St, Atlanta, GA 30301" -209088,iPhone,1,700,05/13/19 08:25,"363 Park St, New York City, NY 10001" -209089,USB-C Charging Cable,1,11.95,05/05/19 11:55,"621 2nd St, Los Angeles, CA 90001" -209090,iPhone,1,700,05/13/19 10:51,"18 11th St, Los Angeles, CA 90001" -209091,20in Monitor,1,109.99,05/12/19 18:05,"315 West St, New York City, NY 10001" -209092,Lightning Charging Cable,1,14.95,05/23/19 10:05,"201 Lakeview St, Portland, OR 97035" -209093,Apple Airpods Headphones,1,150,05/05/19 14:07,"137 North St, San Francisco, CA 94016" -209094,Lightning Charging Cable,1,14.95,05/02/19 22:53,"808 9th St, New York City, NY 10001" -209095,AAA Batteries (4-pack),1,2.99,05/08/19 19:12,"794 Center St, Boston, MA 02215" -209096,Lightning Charging Cable,1,14.95,05/29/19 22:30,"866 Jefferson St, San Francisco, CA 94016" -209097,USB-C Charging Cable,1,11.95,05/27/19 19:41,"669 Adams St, San Francisco, CA 94016" -209098,Macbook Pro Laptop,1,1700,05/10/19 22:29,"859 Washington St, New York City, NY 10001" -209099,Lightning Charging Cable,1,14.95,05/29/19 11:23,"698 Willow St, Dallas, TX 75001" -209100,Lightning Charging Cable,2,14.95,05/17/19 20:05,"893 Cherry St, Los Angeles, CA 90001" -209101,Apple Airpods Headphones,1,150,05/02/19 19:47,"991 North St, Austin, TX 73301" -209102,AA Batteries (4-pack),1,3.84,05/07/19 20:08,"705 Jefferson St, Boston, MA 02215" -209102,Lightning Charging Cable,1,14.95,05/07/19 20:08,"705 Jefferson St, Boston, MA 02215" -209103,Wired Headphones,1,11.99,05/10/19 15:01,"412 Wilson St, San Francisco, CA 94016" -209104,Wired Headphones,1,11.99,05/10/19 11:26,"799 Chestnut St, San Francisco, CA 94016" -209105,iPhone,1,700,05/16/19 23:32,"610 Washington St, Los Angeles, CA 90001" -209106,Google Phone,1,600,05/21/19 21:28,"289 Hickory St, Boston, MA 02215" -209107,20in Monitor,1,109.99,05/01/19 11:07,"971 Hill St, San Francisco, CA 94016" -209108,Lightning Charging Cable,1,14.95,05/14/19 19:54,"551 Lakeview St, Boston, MA 02215" -209109,Bose SoundSport Headphones,1,99.99,05/08/19 13:07,"127 Lakeview St, New York City, NY 10001" -209110,Flatscreen TV,1,300,05/25/19 19:33,"803 Sunset St, San Francisco, CA 94016" -209111,34in Ultrawide Monitor,1,379.99,05/04/19 23:08,"433 Willow St, San Francisco, CA 94016" -209112,34in Ultrawide Monitor,1,379.99,05/15/19 00:53,"616 7th St, Boston, MA 02215" -209113,Wired Headphones,1,11.99,05/29/19 09:33,"49 Lake St, Los Angeles, CA 90001" -209114,ThinkPad Laptop,1,999.99,05/28/19 16:43,"590 Chestnut St, New York City, NY 10001" -209115,27in FHD Monitor,1,149.99,05/20/19 21:53,"301 Meadow St, New York City, NY 10001" -209116,Apple Airpods Headphones,1,150,05/14/19 15:33,"793 10th St, San Francisco, CA 94016" -209117,AA Batteries (4-pack),2,3.84,05/16/19 20:45,"244 11th St, Seattle, WA 98101" -209118,USB-C Charging Cable,1,11.95,05/29/19 16:56,"953 1st St, Dallas, TX 75001" -209119,USB-C Charging Cable,2,11.95,05/16/19 18:22,"17 Madison St, Atlanta, GA 30301" -209120,Google Phone,1,600,05/25/19 00:54,"283 6th St, Austin, TX 73301" -209121,27in 4K Gaming Monitor,1,389.99,05/04/19 17:23,"863 Hickory St, Dallas, TX 75001" -209122,USB-C Charging Cable,1,11.95,05/22/19 21:04,"119 Adams St, Atlanta, GA 30301" -209123,20in Monitor,1,109.99,05/07/19 09:47,"987 Washington St, Los Angeles, CA 90001" -209124,20in Monitor,1,109.99,05/12/19 15:13,"581 Washington St, Dallas, TX 75001" -209125,34in Ultrawide Monitor,1,379.99,05/11/19 08:09,"817 11th St, Boston, MA 02215" -209126,Wired Headphones,1,11.99,05/18/19 20:11,"191 Hill St, Los Angeles, CA 90001" -209127,34in Ultrawide Monitor,1,379.99,05/01/19 07:09,"865 Wilson St, San Francisco, CA 94016" -209128,AAA Batteries (4-pack),4,2.99,05/16/19 08:24,"178 Forest St, Boston, MA 02215" -209129,20in Monitor,1,109.99,05/17/19 00:47,"335 South St, Los Angeles, CA 90001" -209130,Wired Headphones,1,11.99,05/20/19 16:51,"662 River St, New York City, NY 10001" -209131,34in Ultrawide Monitor,1,379.99,05/21/19 23:41,"955 Forest St, Dallas, TX 75001" -209132,iPhone,1,700,05/12/19 16:24,"310 11th St, Los Angeles, CA 90001" -209132,Lightning Charging Cable,1,14.95,05/12/19 16:24,"310 11th St, Los Angeles, CA 90001" -209133,Macbook Pro Laptop,1,1700,05/30/19 12:25,"849 Chestnut St, San Francisco, CA 94016" -209134,Lightning Charging Cable,1,14.95,05/23/19 17:35,"532 North St, San Francisco, CA 94016" -,,,,, -209135,Apple Airpods Headphones,1,150,05/20/19 02:26,"351 Park St, Boston, MA 02215" -209136,Wired Headphones,2,11.99,05/17/19 09:57,"762 7th St, Seattle, WA 98101" -209137,Lightning Charging Cable,1,14.95,05/05/19 13:36,"52 2nd St, Dallas, TX 75001" -209138,Wired Headphones,1,11.99,05/31/19 12:09,"587 Hill St, Portland, OR 97035" -209139,iPhone,1,700,05/28/19 20:06,"571 Highland St, New York City, NY 10001" -209140,27in FHD Monitor,1,149.99,05/10/19 13:19,"324 North St, San Francisco, CA 94016" -209141,Apple Airpods Headphones,1,150,05/19/19 06:48,"430 Sunset St, Seattle, WA 98101" -209142,AAA Batteries (4-pack),2,2.99,05/04/19 13:01,"697 Hickory St, Atlanta, GA 30301" -209143,27in 4K Gaming Monitor,1,389.99,05/17/19 15:54,"292 Ridge St, San Francisco, CA 94016" -209144,34in Ultrawide Monitor,1,379.99,05/06/19 16:27,"540 Main St, Austin, TX 73301" -209145,Wired Headphones,1,11.99,05/20/19 16:37,"325 Main St, Los Angeles, CA 90001" -209146,Lightning Charging Cable,1,14.95,05/12/19 11:39,"123 11th St, San Francisco, CA 94016" -209147,Wired Headphones,1,11.99,05/12/19 12:51,"420 Cedar St, San Francisco, CA 94016" -209148,34in Ultrawide Monitor,1,379.99,05/30/19 14:25,"131 Main St, San Francisco, CA 94016" -209149,AA Batteries (4-pack),1,3.84,05/12/19 14:45,"942 Dogwood St, New York City, NY 10001" -209150,Macbook Pro Laptop,1,1700,05/17/19 17:43,"101 11th St, San Francisco, CA 94016" -209151,USB-C Charging Cable,1,11.95,05/07/19 14:55,"92 Cherry St, New York City, NY 10001" -209152,Wired Headphones,1,11.99,05/05/19 09:55,"51 Church St, Boston, MA 02215" -209153,ThinkPad Laptop,1,999.99,05/28/19 17:03,"349 Pine St, Austin, TX 73301" -209154,Flatscreen TV,1,300,05/08/19 12:07,"45 Wilson St, Portland, OR 97035" -209155,Bose SoundSport Headphones,1,99.99,05/28/19 08:12,"375 Walnut St, San Francisco, CA 94016" -209156,AAA Batteries (4-pack),3,2.99,05/07/19 19:44,"116 Hickory St, San Francisco, CA 94016" -209157,AA Batteries (4-pack),1,3.84,05/31/19 06:18,"439 Maple St, Dallas, TX 75001" -209158,iPhone,1,700,05/28/19 08:11,"458 7th St, San Francisco, CA 94016" -209159,Google Phone,1,600,05/12/19 10:37,"29 12th St, New York City, NY 10001" -209159,USB-C Charging Cable,1,11.95,05/12/19 10:37,"29 12th St, New York City, NY 10001" -209160,USB-C Charging Cable,1,11.95,05/07/19 22:47,"649 9th St, New York City, NY 10001" -209161,Google Phone,1,600,05/30/19 14:10,"912 River St, Austin, TX 73301" -209161,USB-C Charging Cable,1,11.95,05/30/19 14:10,"912 River St, Austin, TX 73301" -209162,AAA Batteries (4-pack),1,2.99,05/24/19 10:59,"435 Main St, Austin, TX 73301" -209163,Bose SoundSport Headphones,1,99.99,05/10/19 06:25,"851 6th St, New York City, NY 10001" -209164,Wired Headphones,1,11.99,05/08/19 11:08,"539 1st St, San Francisco, CA 94016" -209165,USB-C Charging Cable,1,11.95,05/21/19 22:57,"437 7th St, Atlanta, GA 30301" -209166,AAA Batteries (4-pack),2,2.99,05/18/19 19:07,"103 Hickory St, San Francisco, CA 94016" -209167,27in 4K Gaming Monitor,1,389.99,05/07/19 20:35,"963 Hickory St, San Francisco, CA 94016" -209168,27in FHD Monitor,1,149.99,05/15/19 17:44,"563 13th St, San Francisco, CA 94016" -209169,34in Ultrawide Monitor,1,379.99,05/06/19 11:25,"309 Center St, New York City, NY 10001" -209170,AA Batteries (4-pack),1,3.84,05/19/19 22:59,"7 Forest St, Los Angeles, CA 90001" -209171,Apple Airpods Headphones,1,150,05/24/19 18:27,"897 6th St, Atlanta, GA 30301" -209172,Bose SoundSport Headphones,1,99.99,05/04/19 12:15,"260 Hickory St, San Francisco, CA 94016" -209173,Wired Headphones,1,11.99,05/21/19 14:25,"835 12th St, San Francisco, CA 94016" -209174,Lightning Charging Cable,1,14.95,05/09/19 15:19,"928 Lake St, Seattle, WA 98101" -209175,AAA Batteries (4-pack),1,2.99,05/03/19 18:22,"327 13th St, San Francisco, CA 94016" -209176,Lightning Charging Cable,1,14.95,05/14/19 23:25,"346 Church St, Dallas, TX 75001" -209177,Lightning Charging Cable,2,14.95,05/07/19 13:24,"409 Sunset St, San Francisco, CA 94016" -209178,Lightning Charging Cable,1,14.95,05/26/19 16:00,"237 Chestnut St, Atlanta, GA 30301" -209179,Google Phone,1,600,05/07/19 22:56,"757 Cherry St, New York City, NY 10001" -209180,Lightning Charging Cable,1,14.95,05/27/19 07:53,"799 12th St, Boston, MA 02215" -209181,AA Batteries (4-pack),1,3.84,05/17/19 18:32,"556 Center St, Atlanta, GA 30301" -209182,AAA Batteries (4-pack),1,2.99,05/07/19 12:30,"499 River St, Los Angeles, CA 90001" -209183,USB-C Charging Cable,1,11.95,05/04/19 11:53,"515 South St, San Francisco, CA 94016" -209184,AAA Batteries (4-pack),2,2.99,05/09/19 17:43,"184 North St, San Francisco, CA 94016" -209185,AAA Batteries (4-pack),3,2.99,05/21/19 08:58,"465 Cedar St, San Francisco, CA 94016" -209186,USB-C Charging Cable,1,11.95,05/02/19 18:49,"394 10th St, Los Angeles, CA 90001" -209187,Apple Airpods Headphones,1,150,05/20/19 17:26,"897 North St, Los Angeles, CA 90001" -209188,Wired Headphones,1,11.99,05/07/19 13:14,"706 Cedar St, San Francisco, CA 94016" -209189,AA Batteries (4-pack),1,3.84,05/26/19 16:13,"760 River St, Los Angeles, CA 90001" -209190,Google Phone,1,600,05/19/19 04:24,"123 Cherry St, Atlanta, GA 30301" -209190,Wired Headphones,1,11.99,05/19/19 04:24,"123 Cherry St, Atlanta, GA 30301" -209191,AAA Batteries (4-pack),1,2.99,05/15/19 08:28,"36 Lakeview St, Seattle, WA 98101" -209192,Apple Airpods Headphones,1,150,05/17/19 17:59,"938 14th St, Seattle, WA 98101" -209193,LG Dryer,1,600.0,05/04/19 20:47,"158 Lincoln St, Los Angeles, CA 90001" -209194,Macbook Pro Laptop,1,1700,05/20/19 23:02,"679 Dogwood St, Dallas, TX 75001" -209195,AA Batteries (4-pack),1,3.84,05/21/19 12:51,"222 Lakeview St, Portland, OR 97035" -209196,AAA Batteries (4-pack),1,2.99,05/30/19 21:25,"938 Maple St, Seattle, WA 98101" -209197,USB-C Charging Cable,1,11.95,05/11/19 21:03,"658 West St, Los Angeles, CA 90001" -209198,27in FHD Monitor,1,149.99,05/14/19 23:32,"321 Chestnut St, Dallas, TX 75001" -209199,USB-C Charging Cable,1,11.95,05/04/19 09:32,"786 Lincoln St, San Francisco, CA 94016" -209200,Macbook Pro Laptop,1,1700,05/21/19 12:42,"323 Wilson St, San Francisco, CA 94016" -209201,AAA Batteries (4-pack),1,2.99,05/09/19 21:23,"770 Maple St, Boston, MA 02215" -209202,Macbook Pro Laptop,1,1700,05/22/19 10:31,"115 Main St, Portland, OR 97035" -209203,Lightning Charging Cable,1,14.95,05/24/19 12:38,"283 Wilson St, Boston, MA 02215" -209204,USB-C Charging Cable,1,11.95,05/10/19 17:44,"887 10th St, Seattle, WA 98101" -209205,Wired Headphones,1,11.99,05/06/19 21:24,"493 Park St, San Francisco, CA 94016" -209206,20in Monitor,1,109.99,05/19/19 19:33,"435 11th St, Boston, MA 02215" -209206,Lightning Charging Cable,1,14.95,05/19/19 19:33,"435 11th St, Boston, MA 02215" -209207,Apple Airpods Headphones,1,150,05/02/19 12:24,"34 Wilson St, San Francisco, CA 94016" -209208,Wired Headphones,1,11.99,05/08/19 19:27,"906 Wilson St, San Francisco, CA 94016" -209209,LG Washing Machine,1,600.0,05/24/19 18:58,"452 Adams St, New York City, NY 10001" -,,,,, -209210,AA Batteries (4-pack),3,3.84,05/06/19 12:11,"730 Dogwood St, San Francisco, CA 94016" -209211,34in Ultrawide Monitor,1,379.99,05/16/19 13:29,"261 1st St, Seattle, WA 98101" -209212,Wired Headphones,1,11.99,05/03/19 13:44,"629 Cherry St, Atlanta, GA 30301" -209213,AA Batteries (4-pack),1,3.84,05/20/19 21:39,"975 Center St, Boston, MA 02215" -209214,AA Batteries (4-pack),2,3.84,05/08/19 23:58,"276 Jefferson St, New York City, NY 10001" -209215,Apple Airpods Headphones,1,150,05/02/19 22:42,"875 Forest St, New York City, NY 10001" -209216,27in 4K Gaming Monitor,1,389.99,05/21/19 17:08,"760 North St, Seattle, WA 98101" -209217,27in 4K Gaming Monitor,1,389.99,05/14/19 10:08,"326 Lakeview St, Boston, MA 02215" -209217,ThinkPad Laptop,1,999.99,05/14/19 10:08,"326 Lakeview St, Boston, MA 02215" -209218,27in FHD Monitor,1,149.99,05/11/19 10:41,"210 Park St, Los Angeles, CA 90001" -209219,AA Batteries (4-pack),1,3.84,05/22/19 12:28,"823 West St, Atlanta, GA 30301" -209220,Lightning Charging Cable,1,14.95,05/20/19 07:34,"57 North St, Dallas, TX 75001" -209221,Bose SoundSport Headphones,1,99.99,05/04/19 21:12,"46 River St, Dallas, TX 75001" -209222,USB-C Charging Cable,1,11.95,05/30/19 21:44,"830 Lake St, San Francisco, CA 94016" -209223,Apple Airpods Headphones,1,150,05/31/19 23:30,"154 14th St, San Francisco, CA 94016" -209224,Macbook Pro Laptop,1,1700,05/27/19 21:21,"261 Jefferson St, San Francisco, CA 94016" -209225,Bose SoundSport Headphones,1,99.99,05/03/19 13:22,"437 14th St, San Francisco, CA 94016" -209226,USB-C Charging Cable,1,11.95,05/25/19 17:47,"490 13th St, San Francisco, CA 94016" -209227,Lightning Charging Cable,1,14.95,05/30/19 20:46,"613 Forest St, Atlanta, GA 30301" -209228,USB-C Charging Cable,1,11.95,05/22/19 10:10,"34 Jefferson St, San Francisco, CA 94016" -209229,AA Batteries (4-pack),1,3.84,05/27/19 22:43,"58 11th St, Portland, OR 97035" -209230,Lightning Charging Cable,1,14.95,05/18/19 01:20,"661 9th St, New York City, NY 10001" -209231,AA Batteries (4-pack),2,3.84,05/20/19 16:27,"433 Jefferson St, San Francisco, CA 94016" -209232,Macbook Pro Laptop,1,1700,05/22/19 08:32,"298 Wilson St, New York City, NY 10001" -209233,AAA Batteries (4-pack),1,2.99,05/22/19 18:47,"540 South St, Los Angeles, CA 90001" -209234,Bose SoundSport Headphones,1,99.99,05/14/19 11:17,"16 West St, San Francisco, CA 94016" -209235,Google Phone,1,600,05/10/19 05:36,"664 Washington St, Los Angeles, CA 90001" -209235,USB-C Charging Cable,1,11.95,05/10/19 05:36,"664 Washington St, Los Angeles, CA 90001" -209235,Wired Headphones,1,11.99,05/10/19 05:36,"664 Washington St, Los Angeles, CA 90001" -209236,Flatscreen TV,1,300,05/11/19 00:05,"442 13th St, Los Angeles, CA 90001" -209237,USB-C Charging Cable,2,11.95,05/09/19 23:18,"548 Elm St, New York City, NY 10001" -209238,Lightning Charging Cable,1,14.95,05/01/19 12:02,"400 Lake St, San Francisco, CA 94016" -209239,AA Batteries (4-pack),1,3.84,05/31/19 14:55,"667 Chestnut St, Austin, TX 73301" -209240,Vareebadd Phone,1,400,05/01/19 17:57,"451 Hill St, San Francisco, CA 94016" -209241,iPhone,1,700,05/20/19 21:44,"426 2nd St, Los Angeles, CA 90001" -209241,Lightning Charging Cable,1,14.95,05/20/19 21:44,"426 2nd St, Los Angeles, CA 90001" -209242,USB-C Charging Cable,1,11.95,05/11/19 17:40,"508 Meadow St, Dallas, TX 75001" -209243,Flatscreen TV,1,300,05/30/19 17:21,"65 11th St, San Francisco, CA 94016" -209244,Flatscreen TV,1,300,05/24/19 12:15,"226 10th St, Boston, MA 02215" -209245,AAA Batteries (4-pack),2,2.99,05/12/19 09:22,"144 Lincoln St, Los Angeles, CA 90001" -209246,27in 4K Gaming Monitor,1,389.99,05/05/19 18:36,"828 Cherry St, Seattle, WA 98101" -209247,USB-C Charging Cable,2,11.95,05/01/19 22:11,"274 Meadow St, New York City, NY 10001" -209248,USB-C Charging Cable,2,11.95,05/24/19 13:49,"865 Madison St, New York City, NY 10001" -209249,USB-C Charging Cable,1,11.95,05/04/19 13:29,"47 Chestnut St, Los Angeles, CA 90001" -209250,Apple Airpods Headphones,1,150,05/28/19 11:02,"547 Forest St, Dallas, TX 75001" -209251,AA Batteries (4-pack),1,3.84,05/08/19 15:17,"187 Madison St, Portland, OR 97035" -209252,Bose SoundSport Headphones,1,99.99,05/09/19 09:29,"653 Jefferson St, Dallas, TX 75001" -209253,LG Dryer,1,600.0,05/14/19 07:50,"2 13th St, Boston, MA 02215" -209254,USB-C Charging Cable,1,11.95,05/06/19 00:00,"248 Jefferson St, San Francisco, CA 94016" -209255,Lightning Charging Cable,1,14.95,05/19/19 09:47,"158 1st St, Austin, TX 73301" -209256,Wired Headphones,1,11.99,05/10/19 13:53,"210 Johnson St, San Francisco, CA 94016" -209257,USB-C Charging Cable,1,11.95,05/09/19 09:23,"659 Hill St, Portland, ME 04101" -209258,Vareebadd Phone,1,400,05/17/19 00:55,"227 1st St, San Francisco, CA 94016" -209259,Wired Headphones,1,11.99,05/08/19 21:40,"748 Jefferson St, Atlanta, GA 30301" -209260,AAA Batteries (4-pack),1,2.99,05/18/19 19:21,"432 Ridge St, New York City, NY 10001" -209261,AA Batteries (4-pack),2,3.84,05/07/19 13:48,"183 Cedar St, Austin, TX 73301" -209262,AA Batteries (4-pack),1,3.84,05/21/19 18:22,"276 Walnut St, New York City, NY 10001" -209263,Apple Airpods Headphones,1,150,05/10/19 13:56,"675 West St, San Francisco, CA 94016" -209264,Apple Airpods Headphones,1,150,05/09/19 18:42,"974 5th St, Atlanta, GA 30301" -209265,Flatscreen TV,1,300,05/23/19 11:51,"441 Cedar St, Atlanta, GA 30301" -209266,Wired Headphones,1,11.99,05/09/19 11:22,"112 Adams St, Seattle, WA 98101" -209267,AAA Batteries (4-pack),1,2.99,05/21/19 10:25,"712 11th St, New York City, NY 10001" -209268,AAA Batteries (4-pack),2,2.99,05/31/19 20:26,"905 5th St, Portland, ME 04101" -209269,iPhone,1,700,05/20/19 14:11,"981 River St, San Francisco, CA 94016" -209269,Lightning Charging Cable,1,14.95,05/20/19 14:11,"981 River St, San Francisco, CA 94016" -209269,AA Batteries (4-pack),3,3.84,05/20/19 14:11,"981 River St, San Francisco, CA 94016" -209270,Lightning Charging Cable,1,14.95,05/23/19 21:53,"491 Madison St, Seattle, WA 98101" -209271,34in Ultrawide Monitor,1,379.99,05/23/19 14:36,"195 Lake St, New York City, NY 10001" -209272,AAA Batteries (4-pack),1,2.99,05/16/19 11:28,"889 Lake St, New York City, NY 10001" -209273,AA Batteries (4-pack),1,3.84,05/15/19 12:45,"911 Wilson St, New York City, NY 10001" -209274,Apple Airpods Headphones,1,150,05/18/19 12:46,"701 Church St, San Francisco, CA 94016" -209275,AAA Batteries (4-pack),1,2.99,05/24/19 17:47,"814 Meadow St, Los Angeles, CA 90001" -209276,AAA Batteries (4-pack),1,2.99,05/27/19 11:23,"115 7th St, San Francisco, CA 94016" -209277,USB-C Charging Cable,1,11.95,05/27/19 20:28,"486 Willow St, Los Angeles, CA 90001" -209278,34in Ultrawide Monitor,1,379.99,05/28/19 15:42,"721 Highland St, Dallas, TX 75001" -209279,27in 4K Gaming Monitor,1,389.99,05/27/19 12:41,"754 11th St, San Francisco, CA 94016" -209280,iPhone,1,700,05/09/19 20:43,"998 6th St, Boston, MA 02215" -209281,AAA Batteries (4-pack),1,2.99,05/13/19 22:43,"185 5th St, Seattle, WA 98101" -209282,Lightning Charging Cable,2,14.95,05/27/19 11:40,"164 6th St, San Francisco, CA 94016" -209283,Wired Headphones,1,11.99,05/26/19 08:49,"318 Hill St, Los Angeles, CA 90001" -209284,Lightning Charging Cable,1,14.95,05/19/19 03:32,"49 Willow St, Boston, MA 02215" -209285,Lightning Charging Cable,1,14.95,05/18/19 13:48,"540 Jefferson St, San Francisco, CA 94016" -209286,AA Batteries (4-pack),1,3.84,05/09/19 12:27,"390 8th St, Boston, MA 02215" -209287,AA Batteries (4-pack),1,3.84,05/21/19 17:54,"342 Dogwood St, Dallas, TX 75001" -209288,AAA Batteries (4-pack),1,2.99,05/25/19 19:45,"889 12th St, Austin, TX 73301" -209289,AAA Batteries (4-pack),1,2.99,05/31/19 11:00,"362 Meadow St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -209290,ThinkPad Laptop,1,999.99,05/03/19 21:13,"360 Sunset St, Austin, TX 73301" -209291,USB-C Charging Cable,1,11.95,05/21/19 21:45,"517 Washington St, San Francisco, CA 94016" -209292,AA Batteries (4-pack),2,3.84,05/05/19 18:05,"852 Cedar St, Dallas, TX 75001" -209293,Wired Headphones,1,11.99,05/28/19 19:43,"203 Cedar St, Boston, MA 02215" -209294,AA Batteries (4-pack),1,3.84,05/28/19 22:07,"934 Johnson St, Seattle, WA 98101" -209295,27in 4K Gaming Monitor,1,389.99,05/06/19 17:32,"701 Meadow St, Seattle, WA 98101" -209296,Wired Headphones,1,11.99,05/19/19 20:37,"980 Lake St, New York City, NY 10001" -209297,Wired Headphones,1,11.99,05/05/19 21:07,"125 Maple St, San Francisco, CA 94016" -209298,Macbook Pro Laptop,1,1700,05/06/19 14:07,"436 6th St, Los Angeles, CA 90001" -209299,AA Batteries (4-pack),1,3.84,05/11/19 20:39,"88 Hickory St, Portland, OR 97035" -209300,Lightning Charging Cable,1,14.95,05/03/19 17:10,"187 Cedar St, New York City, NY 10001" -209301,27in 4K Gaming Monitor,1,389.99,05/19/19 11:35,"112 West St, New York City, NY 10001" -209302,Wired Headphones,1,11.99,05/15/19 18:48,"890 Pine St, Portland, OR 97035" -209303,Flatscreen TV,1,300,05/06/19 12:26,"815 Elm St, San Francisco, CA 94016" -209304,USB-C Charging Cable,1,11.95,05/28/19 14:59,"669 Church St, Boston, MA 02215" -209305,AAA Batteries (4-pack),2,2.99,05/22/19 22:20,"999 Ridge St, New York City, NY 10001" -209306,USB-C Charging Cable,1,11.95,05/29/19 12:14,"324 11th St, New York City, NY 10001" -209307,USB-C Charging Cable,1,11.95,05/02/19 13:06,"901 Hickory St, New York City, NY 10001" -209308,Bose SoundSport Headphones,1,99.99,05/01/19 13:28,"307 Cherry St, Los Angeles, CA 90001" -209309,AAA Batteries (4-pack),2,2.99,05/18/19 16:02,"262 Cherry St, Portland, OR 97035" -209310,27in 4K Gaming Monitor,1,389.99,05/29/19 21:36,"188 Ridge St, Los Angeles, CA 90001" -209311,Lightning Charging Cable,1,14.95,05/30/19 12:32,"505 Jackson St, New York City, NY 10001" -209312,27in FHD Monitor,1,149.99,05/22/19 20:51,"863 5th St, Los Angeles, CA 90001" -209313,AA Batteries (4-pack),2,3.84,05/17/19 21:29,"627 13th St, New York City, NY 10001" -209314,Wired Headphones,1,11.99,05/24/19 00:12,"879 Johnson St, Portland, OR 97035" -209315,Apple Airpods Headphones,1,150,05/29/19 22:25,"840 12th St, Portland, OR 97035" -209316,USB-C Charging Cable,1,11.95,05/25/19 22:55,"372 Madison St, Atlanta, GA 30301" -209317,USB-C Charging Cable,1,11.95,05/05/19 15:02,"116 Chestnut St, San Francisco, CA 94016" -209318,USB-C Charging Cable,1,11.95,05/03/19 10:40,"3 12th St, New York City, NY 10001" -209319,34in Ultrawide Monitor,1,379.99,05/02/19 21:30,"436 Church St, New York City, NY 10001" -209320,Lightning Charging Cable,1,14.95,05/31/19 11:29,"647 Lakeview St, Los Angeles, CA 90001" -209321,27in FHD Monitor,1,149.99,05/12/19 06:39,"613 North St, San Francisco, CA 94016" -209322,34in Ultrawide Monitor,1,379.99,05/17/19 15:28,"331 Wilson St, Los Angeles, CA 90001" -209323,AA Batteries (4-pack),1,3.84,05/01/19 18:41,"839 South St, Los Angeles, CA 90001" -209324,Bose SoundSport Headphones,1,99.99,05/03/19 11:57,"706 Cherry St, San Francisco, CA 94016" -209325,Google Phone,1,600,05/15/19 12:15,"629 Hill St, Dallas, TX 75001" -209326,USB-C Charging Cable,1,11.95,05/19/19 15:09,"364 Chestnut St, San Francisco, CA 94016" -209327,34in Ultrawide Monitor,1,379.99,05/13/19 00:06,"812 South St, Boston, MA 02215" -209328,Wired Headphones,1,11.99,05/20/19 23:51,"268 Cedar St, Portland, OR 97035" -209329,AAA Batteries (4-pack),1,2.99,05/14/19 19:39,"686 10th St, San Francisco, CA 94016" -209330,Bose SoundSport Headphones,1,99.99,05/07/19 07:55,"31 Madison St, San Francisco, CA 94016" -209331,USB-C Charging Cable,1,11.95,05/13/19 06:03,"359 Cherry St, Boston, MA 02215" -209332,AAA Batteries (4-pack),1,2.99,05/25/19 20:05,"842 Lake St, Portland, OR 97035" -209333,AA Batteries (4-pack),1,3.84,05/11/19 13:47,"212 West St, Seattle, WA 98101" -209334,USB-C Charging Cable,1,11.95,05/17/19 15:38,"611 9th St, San Francisco, CA 94016" -209335,USB-C Charging Cable,2,11.95,05/25/19 18:26,"960 Main St, Los Angeles, CA 90001" -209336,34in Ultrawide Monitor,1,379.99,05/14/19 14:57,"697 Hickory St, Dallas, TX 75001" -209337,USB-C Charging Cable,1,11.95,05/02/19 22:14,"136 Hickory St, San Francisco, CA 94016" -209338,AAA Batteries (4-pack),3,2.99,05/29/19 16:47,"577 7th St, San Francisco, CA 94016" -209339,ThinkPad Laptop,1,999.99,05/18/19 22:19,"921 Willow St, San Francisco, CA 94016" -209340,27in 4K Gaming Monitor,1,389.99,05/15/19 14:23,"109 Sunset St, Portland, OR 97035" -209341,Apple Airpods Headphones,1,150,05/09/19 07:32,"855 Washington St, San Francisco, CA 94016" -209342,AAA Batteries (4-pack),1,2.99,05/27/19 19:41,"614 Ridge St, New York City, NY 10001" -209343,Lightning Charging Cable,1,14.95,05/18/19 18:39,"161 12th St, Dallas, TX 75001" -209344,iPhone,1,700,05/21/19 08:48,"45 South St, Boston, MA 02215" -209345,Bose SoundSport Headphones,1,99.99,05/04/19 20:54,"549 South St, San Francisco, CA 94016" -209346,Lightning Charging Cable,1,14.95,05/26/19 20:22,"114 North St, San Francisco, CA 94016" -209347,AAA Batteries (4-pack),2,2.99,05/29/19 21:47,"845 Maple St, Boston, MA 02215" -209348,Flatscreen TV,1,300,05/13/19 21:11,"216 14th St, New York City, NY 10001" -209349,Wired Headphones,1,11.99,05/24/19 20:58,"777 Lake St, San Francisco, CA 94016" -209350,Google Phone,1,600,05/03/19 11:14,"415 Center St, San Francisco, CA 94016" -209351,34in Ultrawide Monitor,1,379.99,05/24/19 11:08,"356 River St, Boston, MA 02215" -209352,Lightning Charging Cable,1,14.95,05/29/19 12:17,"963 Dogwood St, Boston, MA 02215" -209353,Bose SoundSport Headphones,1,99.99,05/01/19 13:34,"590 Wilson St, Seattle, WA 98101" -209354,Bose SoundSport Headphones,1,99.99,05/07/19 13:16,"271 Adams St, Los Angeles, CA 90001" -209355,Apple Airpods Headphones,1,150,05/30/19 08:17,"306 Park St, Boston, MA 02215" -209356,USB-C Charging Cable,1,11.95,05/31/19 14:55,"364 Willow St, San Francisco, CA 94016" -209357,27in 4K Gaming Monitor,1,389.99,05/06/19 19:19,"172 Pine St, New York City, NY 10001" -209358,AAA Batteries (4-pack),5,2.99,05/10/19 06:27,"183 North St, Austin, TX 73301" -209359,20in Monitor,1,109.99,05/03/19 19:27,"360 Highland St, Los Angeles, CA 90001" -209360,AAA Batteries (4-pack),1,2.99,05/25/19 16:09,"403 7th St, Dallas, TX 75001" -209361,Google Phone,1,600,05/16/19 10:57,"734 13th St, Dallas, TX 75001" -209361,USB-C Charging Cable,1,11.95,05/16/19 10:57,"734 13th St, Dallas, TX 75001" -209362,AAA Batteries (4-pack),1,2.99,05/21/19 20:39,"781 Wilson St, San Francisco, CA 94016" -209363,27in FHD Monitor,1,149.99,05/27/19 23:03,"823 Adams St, New York City, NY 10001" -209364,iPhone,1,700,05/29/19 15:07,"279 Sunset St, San Francisco, CA 94016" -209364,Lightning Charging Cable,1,14.95,05/29/19 15:07,"279 Sunset St, San Francisco, CA 94016" -209365,AAA Batteries (4-pack),2,2.99,05/05/19 08:45,"495 2nd St, Portland, OR 97035" -209366,27in 4K Gaming Monitor,1,389.99,05/02/19 10:32,"639 Sunset St, Los Angeles, CA 90001" -209367,USB-C Charging Cable,1,11.95,05/26/19 13:22,"533 Meadow St, San Francisco, CA 94016" -209368,AAA Batteries (4-pack),3,2.99,05/26/19 11:46,"425 Spruce St, Austin, TX 73301" -209369,Bose SoundSport Headphones,1,99.99,05/24/19 17:29,"916 Washington St, Atlanta, GA 30301" -209370,AAA Batteries (4-pack),1,2.99,05/05/19 12:49,"443 Park St, Los Angeles, CA 90001" -209371,Wired Headphones,1,11.99,05/17/19 16:17,"573 Park St, Austin, TX 73301" -209372,27in FHD Monitor,1,149.99,05/01/19 12:18,"159 Johnson St, San Francisco, CA 94016" -209373,iPhone,1,700,05/13/19 12:24,"513 Walnut St, San Francisco, CA 94016" -209374,iPhone,1,700,05/26/19 20:14,"103 Willow St, Los Angeles, CA 90001" -209375,USB-C Charging Cable,1,11.95,05/29/19 20:17,"482 8th St, Los Angeles, CA 90001" -209376,AAA Batteries (4-pack),1,2.99,05/03/19 17:46,"69 Jackson St, Dallas, TX 75001" -209377,AAA Batteries (4-pack),1,2.99,05/30/19 15:04,"632 8th St, Los Angeles, CA 90001" -209378,ThinkPad Laptop,1,999.99,05/15/19 18:58,"787 North St, Dallas, TX 75001" -209379,Wired Headphones,1,11.99,05/13/19 11:47,"48 14th St, Boston, MA 02215" -209380,Lightning Charging Cable,1,14.95,05/02/19 02:26,"21 7th St, San Francisco, CA 94016" -209381,Wired Headphones,2,11.99,05/22/19 13:34,"280 Maple St, Austin, TX 73301" -209382,Lightning Charging Cable,3,14.95,05/09/19 14:10,"721 Highland St, Austin, TX 73301" -209383,AAA Batteries (4-pack),1,2.99,05/04/19 19:46,"563 Willow St, Dallas, TX 75001" -209384,Wired Headphones,1,11.99,05/03/19 14:02,"42 Madison St, San Francisco, CA 94016" -209385,Lightning Charging Cable,1,14.95,05/20/19 14:36,"812 11th St, Atlanta, GA 30301" -209386,USB-C Charging Cable,1,11.95,05/23/19 10:44,"6 Forest St, Austin, TX 73301" -209387,AA Batteries (4-pack),1,3.84,05/22/19 19:54,"217 Johnson St, Austin, TX 73301" -209388,Apple Airpods Headphones,1,150,05/09/19 17:23,"64 Lake St, San Francisco, CA 94016" -209388,Vareebadd Phone,1,400,05/09/19 17:23,"64 Lake St, San Francisco, CA 94016" -209389,iPhone,1,700,05/18/19 11:45,"448 1st St, San Francisco, CA 94016" -209390,USB-C Charging Cable,1,11.95,05/07/19 21:58,"354 Meadow St, New York City, NY 10001" -209391,AA Batteries (4-pack),1,3.84,05/16/19 15:40,"766 Walnut St, San Francisco, CA 94016" -209392,USB-C Charging Cable,1,11.95,05/29/19 01:32,"668 Elm St, Seattle, WA 98101" -209393,AAA Batteries (4-pack),2,2.99,05/19/19 11:59,"180 Cedar St, San Francisco, CA 94016" -209394,Apple Airpods Headphones,1,150,05/16/19 14:36,"30 Jackson St, San Francisco, CA 94016" -209395,Lightning Charging Cable,1,14.95,05/08/19 11:05,"466 10th St, Portland, OR 97035" -209396,AAA Batteries (4-pack),2,2.99,05/25/19 11:15,"465 Johnson St, Boston, MA 02215" -209397,USB-C Charging Cable,1,11.95,05/17/19 11:14,"31 Lakeview St, Portland, OR 97035" -209398,Lightning Charging Cable,1,14.95,05/15/19 18:25,"597 Walnut St, San Francisco, CA 94016" -209399,AA Batteries (4-pack),1,3.84,05/18/19 13:58,"496 Lakeview St, San Francisco, CA 94016" -209400,Apple Airpods Headphones,1,150,05/27/19 09:06,"118 Lake St, Boston, MA 02215" -209401,Wired Headphones,1,11.99,05/01/19 13:01,"354 14th St, Portland, OR 97035" -209402,USB-C Charging Cable,1,11.95,05/27/19 09:38,"750 Church St, Seattle, WA 98101" -209403,USB-C Charging Cable,1,11.95,05/21/19 19:01,"803 South St, Seattle, WA 98101" -209404,27in 4K Gaming Monitor,1,389.99,05/16/19 08:37,"14 Meadow St, San Francisco, CA 94016" -209405,Bose SoundSport Headphones,1,99.99,05/22/19 13:45,"522 Maple St, Los Angeles, CA 90001" -209406,USB-C Charging Cable,1,11.95,05/20/19 13:16,"461 Lincoln St, Portland, ME 04101" -209407,AA Batteries (4-pack),1,3.84,05/15/19 21:36,"770 13th St, Los Angeles, CA 90001" -209408,AA Batteries (4-pack),1,3.84,05/04/19 12:09,"488 Center St, San Francisco, CA 94016" -209409,AAA Batteries (4-pack),1,2.99,05/23/19 14:37,"134 8th St, Dallas, TX 75001" -209410,Bose SoundSport Headphones,1,99.99,05/27/19 09:47,"425 12th St, Boston, MA 02215" -209411,Wired Headphones,1,11.99,05/22/19 13:39,"154 Washington St, Los Angeles, CA 90001" -209412,Apple Airpods Headphones,1,150,05/02/19 09:21,"232 8th St, Atlanta, GA 30301" -209413,27in FHD Monitor,1,149.99,05/22/19 20:40,"876 5th St, Los Angeles, CA 90001" -209414,AA Batteries (4-pack),2,3.84,05/05/19 13:49,"68 Wilson St, Boston, MA 02215" -209415,AA Batteries (4-pack),1,3.84,05/06/19 14:43,"28 Madison St, Boston, MA 02215" -209416,iPhone,1,700,05/14/19 12:15,"281 Main St, Boston, MA 02215" -209417,27in 4K Gaming Monitor,1,389.99,05/27/19 18:01,"518 11th St, Atlanta, GA 30301" -209417,27in FHD Monitor,1,149.99,05/27/19 18:01,"518 11th St, Atlanta, GA 30301" -209418,Wired Headphones,1,11.99,05/09/19 20:23,"834 Washington St, Seattle, WA 98101" -209419,Lightning Charging Cable,1,14.95,05/15/19 15:03,"483 14th St, Dallas, TX 75001" -209420,34in Ultrawide Monitor,1,379.99,05/12/19 11:29,"650 Jackson St, Boston, MA 02215" -209421,20in Monitor,1,109.99,05/04/19 13:10,"717 9th St, New York City, NY 10001" -209422,ThinkPad Laptop,1,999.99,05/19/19 08:57,"870 5th St, San Francisco, CA 94016" -209423,Google Phone,1,600,05/06/19 19:01,"39 Dogwood St, Dallas, TX 75001" -209424,Apple Airpods Headphones,1,150,05/26/19 11:01,"128 Chestnut St, Atlanta, GA 30301" -209425,AAA Batteries (4-pack),2,2.99,05/17/19 10:56,"544 Sunset St, San Francisco, CA 94016" -209426,USB-C Charging Cable,1,11.95,05/22/19 20:07,"434 10th St, Portland, OR 97035" -209427,USB-C Charging Cable,1,11.95,05/07/19 15:33,"12 Park St, Dallas, TX 75001" -209428,LG Washing Machine,1,600.0,05/20/19 15:32,"330 Elm St, San Francisco, CA 94016" -209429,Apple Airpods Headphones,1,150,05/21/19 19:08,"22 Willow St, Portland, OR 97035" -209430,Lightning Charging Cable,1,14.95,05/23/19 08:55,"731 7th St, Portland, OR 97035" -209431,iPhone,1,700,05/13/19 18:35,"790 Jackson St, Los Angeles, CA 90001" -209431,Lightning Charging Cable,1,14.95,05/13/19 18:35,"790 Jackson St, Los Angeles, CA 90001" -209432,Flatscreen TV,1,300,05/11/19 06:10,"575 Walnut St, Boston, MA 02215" -209433,Apple Airpods Headphones,1,150,05/01/19 13:00,"751 13th St, Atlanta, GA 30301" -209434,Macbook Pro Laptop,1,1700,05/17/19 23:08,"948 Wilson St, Atlanta, GA 30301" -209435,AAA Batteries (4-pack),3,2.99,05/04/19 17:24,"769 9th St, Portland, OR 97035" -209436,AA Batteries (4-pack),3,3.84,05/29/19 21:42,"938 7th St, Los Angeles, CA 90001" -209437,USB-C Charging Cable,1,11.95,05/05/19 19:07,"817 11th St, New York City, NY 10001" -209438,Bose SoundSport Headphones,1,99.99,05/29/19 10:50,"862 1st St, Atlanta, GA 30301" -209439,Bose SoundSport Headphones,1,99.99,05/09/19 15:31,"714 Walnut St, Los Angeles, CA 90001" -209440,USB-C Charging Cable,1,11.95,05/22/19 23:18,"659 Spruce St, New York City, NY 10001" -209441,27in FHD Monitor,1,149.99,05/29/19 23:37,"654 South St, New York City, NY 10001" -209442,ThinkPad Laptop,1,999.99,05/17/19 18:33,"72 Hickory St, Austin, TX 73301" -209443,27in 4K Gaming Monitor,1,389.99,05/18/19 10:15,"932 Hill St, New York City, NY 10001" -209444,Bose SoundSport Headphones,1,99.99,05/02/19 19:22,"634 Sunset St, New York City, NY 10001" -209445,Wired Headphones,1,11.99,05/16/19 12:38,"345 Walnut St, Los Angeles, CA 90001" -209446,AA Batteries (4-pack),1,3.84,05/25/19 11:23,"215 Cherry St, Atlanta, GA 30301" -209447,USB-C Charging Cable,2,11.95,05/26/19 20:21,"928 Lakeview St, Los Angeles, CA 90001" -209448,iPhone,1,700,05/10/19 21:32,"372 Jefferson St, Dallas, TX 75001" -209449,Vareebadd Phone,1,400,05/15/19 12:32,"672 Main St, Dallas, TX 75001" -209450,20in Monitor,1,109.99,05/01/19 17:09,"622 Cedar St, Los Angeles, CA 90001" -209451,Wired Headphones,1,11.99,05/03/19 12:47,"111 River St, Boston, MA 02215" -209452,Apple Airpods Headphones,1,150,05/26/19 20:17,"639 Highland St, San Francisco, CA 94016" -209453,Bose SoundSport Headphones,1,99.99,05/21/19 14:27,"60 Forest St, San Francisco, CA 94016" -,,,,, -209454,USB-C Charging Cable,1,11.95,05/22/19 11:44,"428 13th St, San Francisco, CA 94016" -209455,USB-C Charging Cable,1,11.95,05/31/19 14:30,"614 Dogwood St, Los Angeles, CA 90001" -209456,Apple Airpods Headphones,1,150,05/07/19 11:01,"861 4th St, San Francisco, CA 94016" -209457,iPhone,1,700,05/25/19 09:58,"950 Jackson St, Austin, TX 73301" -209457,Apple Airpods Headphones,1,150,05/25/19 09:58,"950 Jackson St, Austin, TX 73301" -209458,Bose SoundSport Headphones,1,99.99,05/29/19 00:47,"900 Jackson St, New York City, NY 10001" -209459,AA Batteries (4-pack),1,3.84,05/27/19 17:31,"982 West St, Dallas, TX 75001" -209460,Apple Airpods Headphones,1,150,05/04/19 14:02,"168 Washington St, San Francisco, CA 94016" -209461,Lightning Charging Cable,1,14.95,05/22/19 20:18,"974 Chestnut St, Seattle, WA 98101" -209462,27in 4K Gaming Monitor,1,389.99,05/26/19 13:58,"542 Meadow St, Portland, OR 97035" -209463,Apple Airpods Headphones,1,150,05/29/19 01:48,"997 South St, Los Angeles, CA 90001" -209464,AAA Batteries (4-pack),2,2.99,05/12/19 14:53,"12 12th St, New York City, NY 10001" -209465,AAA Batteries (4-pack),5,2.99,05/12/19 13:12,"919 Elm St, Austin, TX 73301" -209466,27in FHD Monitor,1,149.99,05/01/19 20:44,"126 4th St, San Francisco, CA 94016" -209467,Wired Headphones,2,11.99,05/20/19 06:17,"625 5th St, Dallas, TX 75001" -209468,Google Phone,1,600,05/18/19 19:00,"359 Hickory St, San Francisco, CA 94016" -209468,USB-C Charging Cable,1,11.95,05/18/19 19:00,"359 Hickory St, San Francisco, CA 94016" -209469,AAA Batteries (4-pack),1,2.99,05/19/19 11:33,"464 14th St, Boston, MA 02215" -209470,Lightning Charging Cable,1,14.95,05/09/19 18:38,"842 Hickory St, Boston, MA 02215" -209471,Bose SoundSport Headphones,1,99.99,05/08/19 15:19,"143 Wilson St, Los Angeles, CA 90001" -209472,Lightning Charging Cable,1,14.95,05/28/19 21:19,"815 Park St, Los Angeles, CA 90001" -209473,Apple Airpods Headphones,1,150,05/01/19 19:58,"756 8th St, Boston, MA 02215" -209474,Wired Headphones,1,11.99,05/16/19 18:09,"40 Jefferson St, Boston, MA 02215" -209475,Bose SoundSport Headphones,1,99.99,05/31/19 12:46,"146 Washington St, Los Angeles, CA 90001" -209476,AAA Batteries (4-pack),3,2.99,05/03/19 16:20,"931 Washington St, New York City, NY 10001" -209477,Vareebadd Phone,1,400,05/04/19 11:32,"987 5th St, New York City, NY 10001" -209478,AAA Batteries (4-pack),2,2.99,05/25/19 10:42,"827 8th St, New York City, NY 10001" -209479,27in 4K Gaming Monitor,1,389.99,05/02/19 22:41,"992 Madison St, Dallas, TX 75001" -209480,iPhone,1,700,05/10/19 14:50,"1 9th St, New York City, NY 10001" -209480,Lightning Charging Cable,1,14.95,05/10/19 14:50,"1 9th St, New York City, NY 10001" -209481,27in FHD Monitor,1,149.99,05/17/19 08:55,"594 Jackson St, Los Angeles, CA 90001" -209482,Wired Headphones,1,11.99,05/03/19 06:26,"441 Lincoln St, New York City, NY 10001" -209483,Apple Airpods Headphones,1,150,05/12/19 08:12,"502 Main St, Boston, MA 02215" -209484,Lightning Charging Cable,1,14.95,05/09/19 17:42,"305 Wilson St, New York City, NY 10001" -209485,AA Batteries (4-pack),1,3.84,05/07/19 15:02,"44 River St, Boston, MA 02215" -209486,Lightning Charging Cable,1,14.95,05/27/19 20:44,"917 Maple St, San Francisco, CA 94016" -209487,Lightning Charging Cable,1,14.95,05/09/19 12:20,"426 4th St, Dallas, TX 75001" -209488,Bose SoundSport Headphones,1,99.99,05/15/19 16:25,"393 13th St, Boston, MA 02215" -209489,Lightning Charging Cable,1,14.95,05/30/19 20:23,"302 Chestnut St, Los Angeles, CA 90001" -209490,AAA Batteries (4-pack),2,2.99,05/17/19 13:43,"218 Lincoln St, San Francisco, CA 94016" -209491,AAA Batteries (4-pack),1,2.99,05/04/19 15:38,"252 North St, New York City, NY 10001" -,,,,, -209492,AAA Batteries (4-pack),1,2.99,05/12/19 16:52,"244 14th St, San Francisco, CA 94016" -209493,Lightning Charging Cable,1,14.95,05/25/19 19:13,"359 Wilson St, Los Angeles, CA 90001" -209494,iPhone,1,700,05/30/19 11:13,"867 Church St, San Francisco, CA 94016" -209495,ThinkPad Laptop,1,999.99,05/01/19 12:56,"367 Chestnut St, Seattle, WA 98101" -209496,Apple Airpods Headphones,1,150,05/17/19 22:11,"77 4th St, San Francisco, CA 94016" -209497,Flatscreen TV,1,300,05/05/19 20:25,"666 Meadow St, Boston, MA 02215" -209498,ThinkPad Laptop,1,999.99,05/25/19 19:18,"713 Main St, San Francisco, CA 94016" -209499,Lightning Charging Cable,1,14.95,05/28/19 11:48,"699 13th St, Seattle, WA 98101" -209500,27in FHD Monitor,1,149.99,05/06/19 08:25,"749 14th St, Portland, ME 04101" -209501,Apple Airpods Headphones,1,150,05/15/19 22:08,"120 2nd St, Los Angeles, CA 90001" -209501,USB-C Charging Cable,1,11.95,05/15/19 22:08,"120 2nd St, Los Angeles, CA 90001" -209502,27in FHD Monitor,1,149.99,05/15/19 15:08,"491 13th St, New York City, NY 10001" -209503,USB-C Charging Cable,1,11.95,05/03/19 08:18,"377 1st St, Boston, MA 02215" -209504,Wired Headphones,1,11.99,05/21/19 20:54,"820 Cherry St, Los Angeles, CA 90001" -209505,34in Ultrawide Monitor,1,379.99,05/17/19 02:00,"568 9th St, Dallas, TX 75001" -,,,,, -209506,LG Washing Machine,1,600.0,05/11/19 22:06,"992 Ridge St, Austin, TX 73301" -209507,Macbook Pro Laptop,1,1700,05/08/19 19:34,"670 Johnson St, Los Angeles, CA 90001" -209508,Google Phone,1,600,05/27/19 23:20,"852 Highland St, Seattle, WA 98101" -209509,27in FHD Monitor,1,149.99,05/05/19 11:08,"137 7th St, Dallas, TX 75001" -209510,Bose SoundSport Headphones,1,99.99,05/26/19 12:50,"154 14th St, Boston, MA 02215" -209511,Lightning Charging Cable,1,14.95,05/05/19 12:39,"207 Pine St, Austin, TX 73301" -209512,Flatscreen TV,1,300,05/08/19 13:43,"793 Hickory St, San Francisco, CA 94016" -209513,20in Monitor,1,109.99,05/20/19 14:34,"754 Hickory St, Los Angeles, CA 90001" -209514,Lightning Charging Cable,1,14.95,05/05/19 10:45,"499 Hill St, San Francisco, CA 94016" -209515,Apple Airpods Headphones,1,150,05/14/19 10:00,"807 Washington St, Boston, MA 02215" -209516,Flatscreen TV,1,300,05/10/19 12:22,"414 Jackson St, Dallas, TX 75001" -209517,Wired Headphones,1,11.99,05/21/19 21:51,"115 1st St, Los Angeles, CA 90001" -209518,AA Batteries (4-pack),2,3.84,05/02/19 22:11,"445 Spruce St, Atlanta, GA 30301" -209519,iPhone,1,700,05/25/19 09:39,"158 Cedar St, New York City, NY 10001" -209520,Lightning Charging Cable,1,14.95,05/17/19 00:44,"627 Spruce St, San Francisco, CA 94016" -209521,34in Ultrawide Monitor,1,379.99,05/12/19 00:03,"771 Walnut St, Dallas, TX 75001" -209522,Lightning Charging Cable,1,14.95,05/05/19 16:24,"453 5th St, Portland, OR 97035" -209523,Apple Airpods Headphones,1,150,05/03/19 20:51,"165 Hickory St, San Francisco, CA 94016" -209524,USB-C Charging Cable,1,11.95,05/31/19 12:02,"115 Lake St, New York City, NY 10001" -209525,Apple Airpods Headphones,1,150,05/31/19 19:00,"378 Sunset St, Dallas, TX 75001" -209526,AAA Batteries (4-pack),1,2.99,05/31/19 10:25,"516 2nd St, New York City, NY 10001" -209527,27in 4K Gaming Monitor,1,389.99,05/20/19 22:10,"303 1st St, New York City, NY 10001" -209528,Apple Airpods Headphones,1,150,05/27/19 08:39,"238 North St, Austin, TX 73301" -209529,Apple Airpods Headphones,1,150,05/19/19 12:06,"830 West St, New York City, NY 10001" -209530,AA Batteries (4-pack),1,3.84,05/30/19 09:29,"174 6th St, San Francisco, CA 94016" -209531,AA Batteries (4-pack),2,3.84,05/17/19 12:58,"907 Highland St, San Francisco, CA 94016" -209532,Flatscreen TV,1,300,05/06/19 11:04,"924 Center St, Seattle, WA 98101" -209533,USB-C Charging Cable,2,11.95,05/14/19 12:38,"838 Pine St, Boston, MA 02215" -209533,AAA Batteries (4-pack),2,2.99,05/14/19 12:38,"838 Pine St, Boston, MA 02215" -209534,27in FHD Monitor,1,149.99,05/17/19 14:47,"30 Madison St, Boston, MA 02215" -209535,Google Phone,1,600,05/04/19 15:13,"171 River St, Boston, MA 02215" -209535,USB-C Charging Cable,1,11.95,05/04/19 15:13,"171 River St, Boston, MA 02215" -209536,Vareebadd Phone,1,400,05/21/19 20:04,"587 Cedar St, Los Angeles, CA 90001" -209537,USB-C Charging Cable,1,11.95,05/13/19 01:19,"965 Wilson St, Dallas, TX 75001" -209538,AAA Batteries (4-pack),1,2.99,05/10/19 20:55,"784 Hill St, San Francisco, CA 94016" -209539,AA Batteries (4-pack),1,3.84,05/11/19 19:26,"450 Meadow St, Los Angeles, CA 90001" -209540,27in FHD Monitor,1,149.99,05/16/19 12:13,"979 Lincoln St, Portland, OR 97035" -209541,AA Batteries (4-pack),1,3.84,05/20/19 15:58,"406 Cherry St, Portland, OR 97035" -209542,Lightning Charging Cable,3,14.95,05/15/19 09:57,"12 Lincoln St, San Francisco, CA 94016" -209543,Lightning Charging Cable,1,14.95,05/19/19 21:14,"535 Adams St, Atlanta, GA 30301" -209544,AAA Batteries (4-pack),1,2.99,05/08/19 13:21,"923 Park St, San Francisco, CA 94016" -209545,27in FHD Monitor,1,149.99,05/01/19 17:38,"490 Church St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -209546,27in FHD Monitor,1,149.99,05/09/19 09:10,"902 Washington St, Atlanta, GA 30301" -209547,AA Batteries (4-pack),1,3.84,05/28/19 14:49,"452 Hill St, San Francisco, CA 94016" -209548,Wired Headphones,1,11.99,05/04/19 21:08,"426 Lincoln St, San Francisco, CA 94016" -209549,LG Dryer,1,600.0,05/27/19 00:02,"924 South St, Boston, MA 02215" -209550,Google Phone,1,600,05/19/19 15:42,"129 Lake St, Los Angeles, CA 90001" -209551,Bose SoundSport Headphones,1,99.99,05/08/19 15:10,"774 12th St, Seattle, WA 98101" -209552,Wired Headphones,3,11.99,05/12/19 11:00,"917 Center St, Atlanta, GA 30301" -209553,AA Batteries (4-pack),1,3.84,05/17/19 21:06,"45 Church St, Seattle, WA 98101" -209554,AAA Batteries (4-pack),1,2.99,05/11/19 23:08,"497 Walnut St, Los Angeles, CA 90001" -209555,20in Monitor,1,109.99,05/18/19 18:55,"388 11th St, San Francisco, CA 94016" -209556,27in 4K Gaming Monitor,1,389.99,05/23/19 21:47,"439 River St, San Francisco, CA 94016" -209557,Wired Headphones,1,11.99,05/22/19 15:15,"968 Chestnut St, Boston, MA 02215" -209558,Wired Headphones,1,11.99,05/10/19 23:24,"613 South St, San Francisco, CA 94016" -209559,AAA Batteries (4-pack),2,2.99,05/27/19 17:51,"420 Center St, Austin, TX 73301" -209560,Bose SoundSport Headphones,1,99.99,05/25/19 23:18,"908 Ridge St, Boston, MA 02215" -209561,Macbook Pro Laptop,1,1700,05/04/19 20:31,"157 Lincoln St, New York City, NY 10001" -209562,27in FHD Monitor,1,149.99,05/13/19 17:55,"67 8th St, Los Angeles, CA 90001" -209563,AA Batteries (4-pack),1,3.84,05/14/19 14:25,"166 2nd St, San Francisco, CA 94016" -209564,Apple Airpods Headphones,1,150,05/17/19 14:35,"184 2nd St, San Francisco, CA 94016" -209565,USB-C Charging Cable,1,11.95,05/26/19 07:08,"337 Park St, New York City, NY 10001" -209566,Apple Airpods Headphones,1,150,05/01/19 23:14,"440 Cherry St, Dallas, TX 75001" -209567,Lightning Charging Cable,1,14.95,05/22/19 19:13,"126 Jefferson St, Los Angeles, CA 90001" -209568,AA Batteries (4-pack),1,3.84,05/08/19 22:43,"988 Adams St, Austin, TX 73301" -209569,Apple Airpods Headphones,1,150,05/22/19 18:19,"71 Park St, Los Angeles, CA 90001" -209570,Apple Airpods Headphones,1,150,05/03/19 21:26,"638 Chestnut St, New York City, NY 10001" -209571,iPhone,1,700,05/29/19 11:03,"262 Ridge St, Dallas, TX 75001" -209572,34in Ultrawide Monitor,1,379.99,05/15/19 17:35,"775 Lincoln St, Los Angeles, CA 90001" -209573,27in FHD Monitor,1,149.99,05/29/19 18:41,"748 South St, Los Angeles, CA 90001" -209574,Lightning Charging Cable,1,14.95,05/27/19 11:22,"3 Lincoln St, Los Angeles, CA 90001" -209575,AAA Batteries (4-pack),1,2.99,05/20/19 20:24,"272 4th St, Atlanta, GA 30301" -209576,AA Batteries (4-pack),3,3.84,05/14/19 13:22,"88 10th St, Los Angeles, CA 90001" -209577,Bose SoundSport Headphones,1,99.99,05/11/19 11:19,"867 11th St, San Francisco, CA 94016" -209578,AAA Batteries (4-pack),1,2.99,05/13/19 10:53,"339 Cherry St, San Francisco, CA 94016" -209579,USB-C Charging Cable,1,11.95,05/17/19 12:17,"568 Pine St, San Francisco, CA 94016" -209580,AA Batteries (4-pack),1,3.84,05/27/19 21:06,"708 Chestnut St, San Francisco, CA 94016" -209580,Wired Headphones,1,11.99,05/27/19 21:06,"708 Chestnut St, San Francisco, CA 94016" -209581,Lightning Charging Cable,1,14.95,05/30/19 18:32,"561 Washington St, Dallas, TX 75001" -209582,ThinkPad Laptop,1,999.99,05/20/19 07:13,"952 14th St, Los Angeles, CA 90001" -209583,Apple Airpods Headphones,1,150,05/10/19 22:13,"456 Ridge St, Seattle, WA 98101" -209584,20in Monitor,1,109.99,05/06/19 18:17,"873 2nd St, Dallas, TX 75001" -209585,AA Batteries (4-pack),1,3.84,05/16/19 18:24,"346 Cherry St, Los Angeles, CA 90001" -209586,AA Batteries (4-pack),2,3.84,05/19/19 18:14,"634 Elm St, Dallas, TX 75001" -209587,AAA Batteries (4-pack),2,2.99,05/08/19 15:17,"304 Park St, Los Angeles, CA 90001" -209588,Bose SoundSport Headphones,1,99.99,05/23/19 11:24,"584 Chestnut St, Los Angeles, CA 90001" -209589,AA Batteries (4-pack),1,3.84,05/01/19 10:47,"400 Willow St, Los Angeles, CA 90001" -209589,ThinkPad Laptop,1,999.99,05/01/19 10:47,"400 Willow St, Los Angeles, CA 90001" -209590,AAA Batteries (4-pack),2,2.99,05/15/19 11:22,"414 14th St, Los Angeles, CA 90001" -209591,27in FHD Monitor,1,149.99,05/04/19 15:18,"470 Jackson St, San Francisco, CA 94016" -209592,USB-C Charging Cable,2,11.95,05/22/19 23:21,"799 Highland St, Seattle, WA 98101" -209593,Wired Headphones,1,11.99,05/15/19 09:39,"252 Jackson St, San Francisco, CA 94016" -209594,AA Batteries (4-pack),2,3.84,05/16/19 09:41,"661 River St, Atlanta, GA 30301" -209595,AA Batteries (4-pack),2,3.84,05/07/19 06:49,"304 4th St, New York City, NY 10001" -209596,27in FHD Monitor,1,149.99,05/19/19 14:29,"728 River St, San Francisco, CA 94016" -209597,AAA Batteries (4-pack),1,2.99,05/09/19 00:05,"452 Walnut St, Boston, MA 02215" -209598,AA Batteries (4-pack),1,3.84,05/10/19 16:53,"222 12th St, Austin, TX 73301" -209599,Lightning Charging Cable,1,14.95,05/21/19 10:42,"315 Lakeview St, New York City, NY 10001" -209600,Bose SoundSport Headphones,1,99.99,05/12/19 21:09,"537 Park St, Boston, MA 02215" -209601,AAA Batteries (4-pack),1,2.99,05/12/19 14:00,"528 West St, San Francisco, CA 94016" -209602,Wired Headphones,1,11.99,05/18/19 13:51,"285 North St, Dallas, TX 75001" -209603,AA Batteries (4-pack),1,3.84,05/19/19 01:00,"949 Forest St, Los Angeles, CA 90001" -209604,Bose SoundSport Headphones,1,99.99,05/06/19 07:49,"485 Lincoln St, Boston, MA 02215" -209605,Bose SoundSport Headphones,1,99.99,05/13/19 16:12,"403 Willow St, Boston, MA 02215" -209606,iPhone,1,700,05/10/19 22:25,"963 Lake St, Los Angeles, CA 90001" -209607,Wired Headphones,1,11.99,05/05/19 16:24,"652 Park St, Atlanta, GA 30301" -209608,USB-C Charging Cable,2,11.95,05/31/19 14:20,"13 Dogwood St, San Francisco, CA 94016" -209609,Google Phone,1,600,05/12/19 19:55,"206 Willow St, San Francisco, CA 94016" -209609,Bose SoundSport Headphones,1,99.99,05/12/19 19:55,"206 Willow St, San Francisco, CA 94016" -209610,20in Monitor,1,109.99,05/14/19 21:33,"119 Hickory St, Portland, ME 04101" -209611,iPhone,1,700,05/03/19 09:53,"58 Jefferson St, San Francisco, CA 94016" -209612,Google Phone,1,600,05/13/19 16:56,"706 Hickory St, Los Angeles, CA 90001" -209613,Wired Headphones,1,11.99,05/05/19 11:59,"121 Main St, Seattle, WA 98101" -209614,AAA Batteries (4-pack),2,2.99,05/20/19 16:52,"48 9th St, Austin, TX 73301" -209615,Bose SoundSport Headphones,1,99.99,05/20/19 11:35,"941 Ridge St, New York City, NY 10001" -209616,Lightning Charging Cable,1,14.95,05/07/19 19:19,"635 Chestnut St, Atlanta, GA 30301" -209617,AA Batteries (4-pack),1,3.84,05/10/19 11:44,"310 Maple St, Portland, OR 97035" -209618,Macbook Pro Laptop,1,1700,05/04/19 15:25,"381 Hill St, Portland, OR 97035" -209619,USB-C Charging Cable,1,11.95,05/05/19 19:43,"737 Jefferson St, Atlanta, GA 30301" -209620,AAA Batteries (4-pack),3,2.99,05/05/19 14:10,"252 Pine St, San Francisco, CA 94016" -209621,AA Batteries (4-pack),1,3.84,05/06/19 12:50,"7 Center St, Seattle, WA 98101" -209622,iPhone,1,700,05/20/19 20:00,"34 Cherry St, Portland, OR 97035" -209622,Wired Headphones,1,11.99,05/20/19 20:00,"34 Cherry St, Portland, OR 97035" -209623,Apple Airpods Headphones,1,150,05/15/19 20:35,"882 Adams St, Boston, MA 02215" -209624,AA Batteries (4-pack),1,3.84,05/19/19 04:12,"719 Hickory St, Portland, OR 97035" -209625,LG Dryer,1,600.0,05/19/19 11:18,"201 Highland St, New York City, NY 10001" -209626,AA Batteries (4-pack),1,3.84,05/06/19 19:02,"219 Center St, Seattle, WA 98101" -209627,Flatscreen TV,1,300,05/22/19 17:56,"504 Willow St, Los Angeles, CA 90001" -209628,AA Batteries (4-pack),1,3.84,05/23/19 20:32,"841 Ridge St, San Francisco, CA 94016" -209629,Macbook Pro Laptop,1,1700,05/25/19 23:46,"121 7th St, Portland, OR 97035" -209630,AA Batteries (4-pack),1,3.84,05/06/19 08:31,"776 13th St, Boston, MA 02215" -209631,Bose SoundSport Headphones,1,99.99,05/02/19 20:15,"687 2nd St, San Francisco, CA 94016" -209632,Lightning Charging Cable,1,14.95,05/16/19 01:29,"53 Lake St, Los Angeles, CA 90001" -209632,Apple Airpods Headphones,1,150,05/16/19 01:29,"53 Lake St, Los Angeles, CA 90001" -209633,AAA Batteries (4-pack),1,2.99,05/19/19 08:47,"918 Cherry St, Seattle, WA 98101" -209634,USB-C Charging Cable,1,11.95,05/09/19 09:26,"45 13th St, Dallas, TX 75001" -209635,Lightning Charging Cable,1,14.95,05/20/19 17:17,"690 Johnson St, Boston, MA 02215" -209636,Apple Airpods Headphones,1,150,05/08/19 16:21,"388 Park St, Boston, MA 02215" -209637,Wired Headphones,1,11.99,05/24/19 08:33,"398 Adams St, Portland, OR 97035" -209638,Bose SoundSport Headphones,1,99.99,05/02/19 18:01,"121 Wilson St, Los Angeles, CA 90001" -209638,Lightning Charging Cable,1,14.95,05/02/19 18:01,"121 Wilson St, Los Angeles, CA 90001" -209639,USB-C Charging Cable,1,11.95,05/17/19 09:33,"844 12th St, Boston, MA 02215" -209640,27in 4K Gaming Monitor,1,389.99,05/16/19 18:11,"211 Ridge St, Boston, MA 02215" -209641,AA Batteries (4-pack),2,3.84,05/06/19 12:45,"38 Lake St, San Francisco, CA 94016" -209642,Apple Airpods Headphones,1,150,05/09/19 13:14,"190 West St, Atlanta, GA 30301" -209643,Flatscreen TV,1,300,05/20/19 15:29,"902 13th St, New York City, NY 10001" -209644,ThinkPad Laptop,1,999.99,05/19/19 11:35,"71 Church St, Seattle, WA 98101" -209645,20in Monitor,1,109.99,05/28/19 11:39,"659 West St, San Francisco, CA 94016" -209646,Flatscreen TV,1,300,05/18/19 22:23,"660 Hickory St, Boston, MA 02215" -209647,34in Ultrawide Monitor,1,379.99,05/24/19 11:57,"470 Church St, New York City, NY 10001" -209648,iPhone,1,700,05/22/19 02:09,"6 North St, Atlanta, GA 30301" -209649,AAA Batteries (4-pack),4,2.99,05/07/19 20:01,"350 Spruce St, Dallas, TX 75001" -209650,Lightning Charging Cable,1,14.95,05/27/19 00:51,"823 13th St, Portland, OR 97035" -209651,Vareebadd Phone,1,400,05/11/19 15:47,"310 North St, New York City, NY 10001" -209651,USB-C Charging Cable,1,11.95,05/11/19 15:47,"310 North St, New York City, NY 10001" -209651,Apple Airpods Headphones,1,150,05/11/19 15:47,"310 North St, New York City, NY 10001" -209652,ThinkPad Laptop,1,999.99,05/01/19 23:01,"113 South St, Los Angeles, CA 90001" -209653,LG Dryer,1,600.0,05/06/19 21:34,"728 10th St, Los Angeles, CA 90001" -209654,USB-C Charging Cable,1,11.95,05/16/19 12:18,"672 Jackson St, San Francisco, CA 94016" -209655,Wired Headphones,1,11.99,05/03/19 07:18,"628 North St, Dallas, TX 75001" -209656,Wired Headphones,1,11.99,05/26/19 20:35,"223 Jackson St, Seattle, WA 98101" -209657,Lightning Charging Cable,1,14.95,05/20/19 22:55,"523 9th St, Portland, OR 97035" -209658,USB-C Charging Cable,1,11.95,05/02/19 12:47,"885 Spruce St, Boston, MA 02215" -209659,Google Phone,1,600,05/09/19 15:17,"796 1st St, Austin, TX 73301" -209659,USB-C Charging Cable,1,11.95,05/09/19 15:17,"796 1st St, Austin, TX 73301" -209659,Bose SoundSport Headphones,1,99.99,05/09/19 15:17,"796 1st St, Austin, TX 73301" -209660,iPhone,1,700,05/24/19 10:47,"175 Lakeview St, New York City, NY 10001" -209661,Google Phone,1,600,05/21/19 19:06,"977 Cedar St, San Francisco, CA 94016" -209661,USB-C Charging Cable,1,11.95,05/21/19 19:06,"977 Cedar St, San Francisco, CA 94016" -209662,Bose SoundSport Headphones,1,99.99,05/27/19 17:59,"955 Cherry St, Atlanta, GA 30301" -209663,Macbook Pro Laptop,1,1700,05/30/19 12:52,"68 North St, Dallas, TX 75001" -209664,Lightning Charging Cable,1,14.95,05/28/19 12:56,"527 Wilson St, Seattle, WA 98101" -209665,AA Batteries (4-pack),1,3.84,05/07/19 09:52,"434 North St, Los Angeles, CA 90001" -209666,Lightning Charging Cable,1,14.95,05/20/19 14:28,"20 Elm St, New York City, NY 10001" -209667,Bose SoundSport Headphones,1,99.99,05/02/19 14:13,"832 Elm St, Seattle, WA 98101" -209668,Bose SoundSport Headphones,1,99.99,05/15/19 15:45,"392 13th St, Boston, MA 02215" -209669,AAA Batteries (4-pack),1,2.99,05/01/19 13:01,"269 4th St, New York City, NY 10001" -209670,27in 4K Gaming Monitor,1,389.99,05/10/19 16:05,"984 Hill St, Los Angeles, CA 90001" -209671,AA Batteries (4-pack),1,3.84,05/24/19 17:06,"118 Lake St, New York City, NY 10001" -209672,Vareebadd Phone,1,400,05/16/19 13:29,"513 Lake St, San Francisco, CA 94016" -209673,Bose SoundSport Headphones,1,99.99,05/13/19 17:46,"377 Hickory St, Portland, OR 97035" -209674,Apple Airpods Headphones,1,150,05/28/19 15:58,"293 Willow St, Los Angeles, CA 90001" -209675,AA Batteries (4-pack),1,3.84,05/28/19 17:38,"621 11th St, Los Angeles, CA 90001" -209676,USB-C Charging Cable,1,11.95,05/31/19 11:00,"367 Church St, Los Angeles, CA 90001" -209677,AA Batteries (4-pack),1,3.84,05/19/19 15:42,"559 Center St, Dallas, TX 75001" -209678,Wired Headphones,1,11.99,05/09/19 15:45,"372 Sunset St, New York City, NY 10001" -,,,,, -209679,AAA Batteries (4-pack),1,2.99,05/02/19 13:01,"15 Jackson St, San Francisco, CA 94016" -209680,AA Batteries (4-pack),3,3.84,05/03/19 23:25,"977 9th St, Portland, OR 97035" -209681,27in FHD Monitor,1,149.99,05/20/19 13:01,"167 River St, San Francisco, CA 94016" -209682,Apple Airpods Headphones,1,150,05/18/19 11:22,"58 North St, San Francisco, CA 94016" -209683,Bose SoundSport Headphones,1,99.99,05/28/19 13:26,"622 Washington St, New York City, NY 10001" -209684,Wired Headphones,1,11.99,05/25/19 04:25,"731 Ridge St, New York City, NY 10001" -209684,Lightning Charging Cable,1,14.95,05/25/19 04:25,"731 Ridge St, New York City, NY 10001" -209685,AA Batteries (4-pack),1,3.84,05/08/19 20:30,"420 Main St, Dallas, TX 75001" -209686,AAA Batteries (4-pack),1,2.99,05/10/19 20:34,"854 13th St, Seattle, WA 98101" -209687,20in Monitor,1,109.99,05/12/19 16:30,"725 11th St, Portland, ME 04101" -209688,Wired Headphones,1,11.99,05/05/19 14:46,"235 8th St, Boston, MA 02215" -209689,iPhone,1,700,05/12/19 15:44,"25 Walnut St, Los Angeles, CA 90001" -209690,LG Washing Machine,1,600.0,05/11/19 05:35,"284 9th St, Boston, MA 02215" -209691,27in FHD Monitor,1,149.99,05/30/19 18:33,"216 Park St, Atlanta, GA 30301" -209692,27in FHD Monitor,1,149.99,05/07/19 10:12,"790 Chestnut St, Los Angeles, CA 90001" -209693,USB-C Charging Cable,1,11.95,05/02/19 23:41,"37 2nd St, Boston, MA 02215" -209694,Vareebadd Phone,1,400,05/17/19 11:36,"974 Ridge St, Los Angeles, CA 90001" -209695,27in FHD Monitor,1,149.99,05/16/19 09:58,"205 6th St, Los Angeles, CA 90001" -209696,Apple Airpods Headphones,1,150,05/19/19 20:21,"224 Dogwood St, Boston, MA 02215" -209697,34in Ultrawide Monitor,1,379.99,05/05/19 17:50,"686 Lincoln St, New York City, NY 10001" -209698,Apple Airpods Headphones,1,150,05/15/19 07:49,"332 Dogwood St, San Francisco, CA 94016" -209699,34in Ultrawide Monitor,1,379.99,05/20/19 11:43,"862 6th St, New York City, NY 10001" -209700,USB-C Charging Cable,1,11.95,05/10/19 19:43,"138 Chestnut St, New York City, NY 10001" -209701,USB-C Charging Cable,1,11.95,05/08/19 18:18,"958 Jackson St, Seattle, WA 98101" -209702,Apple Airpods Headphones,1,150,05/08/19 10:38,"374 2nd St, Portland, OR 97035" -209703,ThinkPad Laptop,1,999.99,05/28/19 22:02,"360 Park St, Seattle, WA 98101" -209704,Google Phone,1,600,05/14/19 12:31,"93 13th St, Dallas, TX 75001" -209704,USB-C Charging Cable,1,11.95,05/14/19 12:31,"93 13th St, Dallas, TX 75001" -209705,Wired Headphones,1,11.99,05/13/19 08:14,"579 Wilson St, New York City, NY 10001" -209706,Google Phone,1,600,05/04/19 12:10,"896 Park St, Dallas, TX 75001" -209707,Lightning Charging Cable,1,14.95,05/05/19 17:12,"391 14th St, New York City, NY 10001" -209708,AAA Batteries (4-pack),1,2.99,05/26/19 07:13,"596 Ridge St, Seattle, WA 98101" -209709,Flatscreen TV,1,300,05/13/19 00:52,"418 13th St, Atlanta, GA 30301" -209710,Wired Headphones,2,11.99,05/06/19 14:25,"799 5th St, Dallas, TX 75001" -209711,27in 4K Gaming Monitor,1,389.99,05/31/19 16:16,"37 12th St, San Francisco, CA 94016" -209712,Wired Headphones,1,11.99,05/30/19 12:13,"969 Jefferson St, Austin, TX 73301" -209713,Macbook Pro Laptop,1,1700,05/15/19 23:51,"964 Church St, Los Angeles, CA 90001" -209714,Apple Airpods Headphones,1,150,05/05/19 22:46,"154 Forest St, San Francisco, CA 94016" -209715,34in Ultrawide Monitor,1,379.99,05/04/19 20:55,"643 2nd St, Boston, MA 02215" -209716,ThinkPad Laptop,1,999.99,05/15/19 16:22,"524 Highland St, Boston, MA 02215" -209717,AAA Batteries (4-pack),1,2.99,05/06/19 21:08,"910 13th St, Los Angeles, CA 90001" -209718,Bose SoundSport Headphones,1,99.99,05/28/19 22:47,"506 11th St, San Francisco, CA 94016" -209719,AAA Batteries (4-pack),1,2.99,05/15/19 11:38,"835 Lincoln St, Portland, OR 97035" -209720,AAA Batteries (4-pack),1,2.99,05/15/19 19:44,"91 8th St, San Francisco, CA 94016" -209721,AAA Batteries (4-pack),2,2.99,05/28/19 17:34,"342 River St, New York City, NY 10001" -209722,Macbook Pro Laptop,1,1700,05/20/19 08:26,"953 Johnson St, San Francisco, CA 94016" -209723,Apple Airpods Headphones,1,150,05/29/19 16:05,"500 Center St, Los Angeles, CA 90001" -209724,iPhone,1,700,05/24/19 20:22,"801 Church St, San Francisco, CA 94016" -209725,LG Dryer,1,600.0,05/17/19 09:11,"796 Walnut St, New York City, NY 10001" -209726,Macbook Pro Laptop,1,1700,05/08/19 21:14,"70 Elm St, New York City, NY 10001" -209726,AA Batteries (4-pack),1,3.84,05/08/19 21:14,"70 Elm St, New York City, NY 10001" -209727,Wired Headphones,1,11.99,05/30/19 13:40,"373 Center St, New York City, NY 10001" -209728,Flatscreen TV,1,300,05/03/19 15:51,"11 South St, San Francisco, CA 94016" -209729,AA Batteries (4-pack),1,3.84,05/07/19 11:01,"531 Maple St, San Francisco, CA 94016" -209730,AA Batteries (4-pack),1,3.84,05/27/19 13:26,"8 Jefferson St, Los Angeles, CA 90001" -209731,20in Monitor,1,109.99,05/15/19 10:29,"596 Chestnut St, San Francisco, CA 94016" -209732,Apple Airpods Headphones,1,150,05/27/19 02:22,"818 Main St, San Francisco, CA 94016" -209733,Apple Airpods Headphones,1,150,05/08/19 14:14,"768 Lake St, San Francisco, CA 94016" -209734,34in Ultrawide Monitor,1,379.99,05/11/19 21:02,"940 Jackson St, Los Angeles, CA 90001" -209735,AAA Batteries (4-pack),1,2.99,05/16/19 15:44,"714 Cherry St, Portland, OR 97035" -209736,USB-C Charging Cable,1,11.95,05/06/19 19:31,"482 10th St, San Francisco, CA 94016" -209737,27in FHD Monitor,1,149.99,05/21/19 18:13,"100 Park St, Los Angeles, CA 90001" -209738,34in Ultrawide Monitor,1,379.99,05/22/19 11:06,"704 Main St, Atlanta, GA 30301" -209739,Lightning Charging Cable,1,14.95,05/02/19 18:46,"491 Hickory St, San Francisco, CA 94016" -209740,AA Batteries (4-pack),2,3.84,05/29/19 23:23,"932 Jackson St, San Francisco, CA 94016" -209741,ThinkPad Laptop,1,999.99,05/19/19 17:11,"415 Sunset St, Boston, MA 02215" -209742,Flatscreen TV,1,300,05/05/19 19:10,"41 Highland St, New York City, NY 10001" -209743,USB-C Charging Cable,1,11.95,05/26/19 18:25,"600 Hickory St, Los Angeles, CA 90001" -209744,Lightning Charging Cable,1,14.95,05/20/19 20:02,"830 Maple St, San Francisco, CA 94016" -209745,USB-C Charging Cable,1,11.95,05/22/19 07:21,"2 7th St, New York City, NY 10001" -209746,Lightning Charging Cable,1,14.95,05/20/19 01:55,"852 Cedar St, Seattle, WA 98101" -209747,Apple Airpods Headphones,1,150,05/01/19 12:38,"190 Jefferson St, San Francisco, CA 94016" -209748,Flatscreen TV,1,300,05/11/19 21:40,"351 10th St, San Francisco, CA 94016" -209749,AAA Batteries (4-pack),2,2.99,05/16/19 21:05,"209 13th St, Los Angeles, CA 90001" -209750,USB-C Charging Cable,1,11.95,05/27/19 11:22,"214 Jackson St, Dallas, TX 75001" -209751,AAA Batteries (4-pack),1,2.99,05/16/19 20:09,"774 Lake St, Portland, OR 97035" -209752,Lightning Charging Cable,1,14.95,05/28/19 09:16,"559 6th St, San Francisco, CA 94016" -209753,AAA Batteries (4-pack),2,2.99,05/26/19 19:14,"803 Maple St, San Francisco, CA 94016" -209754,Wired Headphones,1,11.99,05/07/19 14:01,"388 Cherry St, New York City, NY 10001" -209755,AAA Batteries (4-pack),1,2.99,05/15/19 22:04,"946 2nd St, Portland, OR 97035" -209756,Wired Headphones,1,11.99,05/31/19 13:02,"590 Willow St, Los Angeles, CA 90001" -209757,Google Phone,1,600,05/23/19 07:10,"670 Main St, Portland, OR 97035" -209758,27in FHD Monitor,1,149.99,05/02/19 10:24,"532 Johnson St, New York City, NY 10001" -209759,Google Phone,1,600,05/18/19 16:46,"604 13th St, Portland, OR 97035" -209759,USB-C Charging Cable,1,11.95,05/18/19 16:46,"604 13th St, Portland, OR 97035" -209760,USB-C Charging Cable,1,11.95,05/08/19 12:30,"788 Cedar St, Los Angeles, CA 90001" -209761,27in 4K Gaming Monitor,1,389.99,05/15/19 12:53,"109 2nd St, San Francisco, CA 94016" -209762,34in Ultrawide Monitor,1,379.99,05/27/19 14:06,"940 Lakeview St, Boston, MA 02215" -209763,Google Phone,1,600,05/10/19 23:55,"822 West St, New York City, NY 10001" -209763,USB-C Charging Cable,1,11.95,05/10/19 23:55,"822 West St, New York City, NY 10001" -209764,Wired Headphones,1,11.99,05/23/19 10:26,"699 11th St, Seattle, WA 98101" -209765,USB-C Charging Cable,1,11.95,05/04/19 12:23,"945 Washington St, Atlanta, GA 30301" -209766,iPhone,1,700,05/27/19 10:29,"998 Center St, San Francisco, CA 94016" -209767,Wired Headphones,2,11.99,05/07/19 13:37,"315 10th St, Los Angeles, CA 90001" -209768,AAA Batteries (4-pack),2,2.99,05/30/19 13:30,"727 Church St, Seattle, WA 98101" -209769,Bose SoundSport Headphones,1,99.99,05/27/19 20:24,"64 Ridge St, Los Angeles, CA 90001" -209770,Wired Headphones,1,11.99,05/28/19 00:09,"667 West St, Seattle, WA 98101" -209771,Lightning Charging Cable,1,14.95,05/03/19 07:46,"749 Jefferson St, Los Angeles, CA 90001" -209772,AAA Batteries (4-pack),2,2.99,05/04/19 13:13,"464 Park St, Boston, MA 02215" -209773,Apple Airpods Headphones,1,150,05/06/19 13:18,"461 Hill St, Seattle, WA 98101" -209774,Wired Headphones,1,11.99,05/28/19 09:31,"623 Wilson St, Dallas, TX 75001" -209775,Bose SoundSport Headphones,1,99.99,05/05/19 13:00,"227 9th St, Los Angeles, CA 90001" -209776,Apple Airpods Headphones,1,150,05/24/19 12:58,"871 West St, Austin, TX 73301" -209777,Bose SoundSport Headphones,1,99.99,05/13/19 22:20,"801 10th St, San Francisco, CA 94016" -209778,iPhone,1,700,05/10/19 09:56,"879 Willow St, Los Angeles, CA 90001" -209778,Apple Airpods Headphones,1,150,05/10/19 09:56,"879 Willow St, Los Angeles, CA 90001" -209779,Bose SoundSport Headphones,1,99.99,05/24/19 19:17,"404 Jackson St, Austin, TX 73301" -209780,AAA Batteries (4-pack),2,2.99,05/23/19 19:36,"21 5th St, Boston, MA 02215" -209781,AAA Batteries (4-pack),2,2.99,05/14/19 16:54,"242 8th St, Boston, MA 02215" -209782,Lightning Charging Cable,1,14.95,05/27/19 18:58,"269 Sunset St, New York City, NY 10001" -209783,AA Batteries (4-pack),3,3.84,05/14/19 23:26,"859 Pine St, San Francisco, CA 94016" -209784,Macbook Pro Laptop,1,1700,05/24/19 20:30,"848 4th St, San Francisco, CA 94016" -209785,Flatscreen TV,1,300,05/17/19 12:21,"650 Johnson St, New York City, NY 10001" -209785,AA Batteries (4-pack),1,3.84,05/17/19 12:21,"650 Johnson St, New York City, NY 10001" -209786,Apple Airpods Headphones,1,150,05/14/19 13:17,"607 South St, Boston, MA 02215" -209787,27in FHD Monitor,1,149.99,05/11/19 23:00,"720 Jefferson St, Dallas, TX 75001" -209788,AAA Batteries (4-pack),1,2.99,05/10/19 17:54,"615 13th St, New York City, NY 10001" -209789,Lightning Charging Cable,1,14.95,05/27/19 20:34,"222 Center St, San Francisco, CA 94016" -209790,AA Batteries (4-pack),1,3.84,05/17/19 23:47,"703 Hickory St, Atlanta, GA 30301" -209791,AAA Batteries (4-pack),2,2.99,05/31/19 19:49,"222 Spruce St, Atlanta, GA 30301" -209792,Lightning Charging Cable,1,14.95,05/12/19 18:23,"820 Forest St, San Francisco, CA 94016" -209793,AA Batteries (4-pack),1,3.84,05/20/19 16:41,"417 1st St, Boston, MA 02215" -209794,USB-C Charging Cable,1,11.95,05/03/19 18:24,"543 9th St, Atlanta, GA 30301" -209794,Wired Headphones,1,11.99,05/03/19 18:24,"543 9th St, Atlanta, GA 30301" -209795,Lightning Charging Cable,1,14.95,05/18/19 20:07,"227 Jackson St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -209796,Lightning Charging Cable,1,14.95,05/28/19 20:43,"867 Dogwood St, Dallas, TX 75001" -209797,USB-C Charging Cable,1,11.95,05/08/19 09:19,"393 Lake St, Los Angeles, CA 90001" -209798,Macbook Pro Laptop,1,1700,05/07/19 13:51,"610 Adams St, Boston, MA 02215" -209799,USB-C Charging Cable,1,11.95,05/26/19 17:01,"815 Willow St, San Francisco, CA 94016" -209800,USB-C Charging Cable,1,11.95,05/08/19 22:23,"458 4th St, Boston, MA 02215" -209801,AA Batteries (4-pack),1,3.84,05/18/19 13:44,"221 Lakeview St, Los Angeles, CA 90001" -209802,AA Batteries (4-pack),5,3.84,05/25/19 08:19,"227 South St, San Francisco, CA 94016" -209803,USB-C Charging Cable,1,11.95,05/04/19 16:33,"434 Spruce St, Boston, MA 02215" -209804,Apple Airpods Headphones,1,150,05/16/19 22:39,"103 Pine St, Dallas, TX 75001" -209805,AAA Batteries (4-pack),2,2.99,05/25/19 10:48,"130 Maple St, New York City, NY 10001" -209806,27in 4K Gaming Monitor,1,389.99,05/12/19 12:25,"229 Park St, New York City, NY 10001" -209807,iPhone,1,700,05/27/19 20:20,"16 North St, San Francisco, CA 94016" -209808,AAA Batteries (4-pack),1,2.99,05/19/19 09:23,"302 8th St, Portland, OR 97035" -209809,34in Ultrawide Monitor,1,379.99,05/26/19 17:59,"504 1st St, Portland, OR 97035" -209810,AA Batteries (4-pack),1,3.84,05/28/19 19:11,"198 North St, Austin, TX 73301" -209810,USB-C Charging Cable,2,11.95,05/28/19 19:11,"198 North St, Austin, TX 73301" -209811,AAA Batteries (4-pack),1,2.99,05/07/19 19:39,"564 Jackson St, Boston, MA 02215" -209812,Lightning Charging Cable,1,14.95,05/18/19 18:40,"240 8th St, Austin, TX 73301" -209813,Lightning Charging Cable,1,14.95,05/10/19 19:14,"1 Jefferson St, Portland, OR 97035" -209814,Macbook Pro Laptop,1,1700,05/31/19 00:27,"359 Sunset St, Los Angeles, CA 90001" -209815,AA Batteries (4-pack),1,3.84,05/07/19 13:49,"950 West St, Los Angeles, CA 90001" -209816,Apple Airpods Headphones,1,150,05/16/19 11:58,"369 Wilson St, New York City, NY 10001" -209817,Bose SoundSport Headphones,1,99.99,05/09/19 11:46,"793 5th St, Atlanta, GA 30301" -209818,USB-C Charging Cable,2,11.95,05/22/19 19:21,"41 12th St, Atlanta, GA 30301" -209819,AA Batteries (4-pack),2,3.84,05/24/19 17:29,"512 Lake St, San Francisco, CA 94016" -209820,Lightning Charging Cable,1,14.95,05/25/19 04:17,"87 Meadow St, San Francisco, CA 94016" -209821,27in 4K Gaming Monitor,1,389.99,05/19/19 17:59,"647 12th St, Atlanta, GA 30301" -209822,Lightning Charging Cable,1,14.95,05/14/19 13:31,"695 7th St, San Francisco, CA 94016" -209823,Lightning Charging Cable,1,14.95,05/10/19 16:37,"510 5th St, Seattle, WA 98101" -209824,Bose SoundSport Headphones,1,99.99,05/21/19 13:43,"356 11th St, Seattle, WA 98101" -209825,Bose SoundSport Headphones,1,99.99,05/25/19 07:28,"452 Hill St, Boston, MA 02215" -209826,Google Phone,1,600,05/18/19 21:53,"907 14th St, New York City, NY 10001" -209827,Wired Headphones,1,11.99,05/17/19 23:32,"391 Spruce St, San Francisco, CA 94016" -209828,Lightning Charging Cable,1,14.95,05/27/19 16:40,"925 West St, Atlanta, GA 30301" -209829,Apple Airpods Headphones,1,150,05/03/19 19:30,"211 Park St, San Francisco, CA 94016" -209830,USB-C Charging Cable,1,11.95,05/14/19 21:38,"769 7th St, San Francisco, CA 94016" -209831,Wired Headphones,1,11.99,05/05/19 17:46,"600 Willow St, Dallas, TX 75001" -209832,ThinkPad Laptop,1,999.99,05/16/19 17:01,"421 Willow St, Dallas, TX 75001" -209833,Vareebadd Phone,1,400,05/01/19 15:32,"637 1st St, Austin, TX 73301" -209834,AA Batteries (4-pack),1,3.84,05/25/19 15:01,"239 14th St, Atlanta, GA 30301" -209835,Vareebadd Phone,1,400,05/27/19 00:39,"916 Center St, Boston, MA 02215" -209836,Wired Headphones,1,11.99,05/15/19 07:47,"48 Adams St, Los Angeles, CA 90001" -209837,USB-C Charging Cable,1,11.95,05/19/19 19:47,"412 Cedar St, Boston, MA 02215" -209838,AAA Batteries (4-pack),1,2.99,05/01/19 13:16,"252 2nd St, Seattle, WA 98101" -209839,Flatscreen TV,1,300,05/07/19 21:54,"337 12th St, Portland, OR 97035" -209840,Macbook Pro Laptop,1,1700,05/19/19 19:48,"530 Forest St, San Francisco, CA 94016" -209841,Flatscreen TV,1,300,05/26/19 15:39,"4 12th St, San Francisco, CA 94016" -209842,Bose SoundSport Headphones,1,99.99,05/29/19 22:52,"190 14th St, Dallas, TX 75001" -209843,AA Batteries (4-pack),1,3.84,05/06/19 19:12,"163 Ridge St, Boston, MA 02215" -209844,USB-C Charging Cable,1,11.95,05/24/19 19:28,"157 1st St, Seattle, WA 98101" -209845,Bose SoundSport Headphones,1,99.99,05/03/19 12:01,"860 Adams St, Los Angeles, CA 90001" -209846,AAA Batteries (4-pack),2,2.99,05/30/19 19:38,"802 West St, Boston, MA 02215" -209847,Macbook Pro Laptop,1,1700,05/04/19 18:34,"30 Jackson St, Austin, TX 73301" -209848,ThinkPad Laptop,1,999.99,05/21/19 14:59,"798 Walnut St, Seattle, WA 98101" -209849,AA Batteries (4-pack),1,3.84,05/25/19 18:46,"343 Lake St, Los Angeles, CA 90001" -209850,Bose SoundSport Headphones,1,99.99,05/14/19 13:44,"807 Meadow St, San Francisco, CA 94016" -209851,USB-C Charging Cable,2,11.95,05/24/19 19:19,"139 Chestnut St, Portland, OR 97035" -209852,LG Washing Machine,1,600.0,05/25/19 11:01,"60 9th St, Austin, TX 73301" -209853,Wired Headphones,1,11.99,05/09/19 20:06,"803 7th St, San Francisco, CA 94016" -209854,AAA Batteries (4-pack),3,2.99,05/29/19 11:18,"432 Jackson St, Los Angeles, CA 90001" -209855,Wired Headphones,2,11.99,05/22/19 11:48,"131 Center St, Atlanta, GA 30301" -209856,Apple Airpods Headphones,1,150,05/13/19 11:16,"210 Lakeview St, Austin, TX 73301" -209857,Lightning Charging Cable,1,14.95,05/16/19 14:59,"979 Chestnut St, Seattle, WA 98101" -209858,Vareebadd Phone,1,400,05/21/19 19:45,"615 10th St, New York City, NY 10001" -209859,Google Phone,1,600,05/25/19 14:33,"280 Dogwood St, Atlanta, GA 30301" -209859,USB-C Charging Cable,1,11.95,05/25/19 14:33,"280 Dogwood St, Atlanta, GA 30301" -209859,Wired Headphones,1,11.99,05/25/19 14:33,"280 Dogwood St, Atlanta, GA 30301" -209860,Lightning Charging Cable,2,14.95,05/05/19 00:03,"681 Ridge St, Atlanta, GA 30301" -209861,AA Batteries (4-pack),1,3.84,05/15/19 10:43,"335 Spruce St, Dallas, TX 75001" -209862,Wired Headphones,1,11.99,05/03/19 20:13,"641 1st St, New York City, NY 10001" -209863,Wired Headphones,1,11.99,05/09/19 16:19,"962 South St, New York City, NY 10001" -209864,AA Batteries (4-pack),1,3.84,05/10/19 20:27,"760 Maple St, Atlanta, GA 30301" -209865,AA Batteries (4-pack),1,3.84,05/06/19 10:16,"492 12th St, New York City, NY 10001" -209866,34in Ultrawide Monitor,1,379.99,05/05/19 11:20,"316 Elm St, Los Angeles, CA 90001" -209867,Bose SoundSport Headphones,1,99.99,05/24/19 22:00,"899 Wilson St, Los Angeles, CA 90001" -209868,AA Batteries (4-pack),1,3.84,05/02/19 14:03,"253 4th St, San Francisco, CA 94016" -209869,Lightning Charging Cable,1,14.95,05/01/19 08:55,"815 6th St, New York City, NY 10001" -209870,AAA Batteries (4-pack),1,2.99,05/14/19 15:05,"665 7th St, Los Angeles, CA 90001" -209871,AA Batteries (4-pack),1,3.84,05/17/19 13:05,"430 Spruce St, Boston, MA 02215" -209872,Bose SoundSport Headphones,1,99.99,05/11/19 10:43,"49 2nd St, Los Angeles, CA 90001" -209873,Lightning Charging Cable,1,14.95,05/13/19 14:41,"414 Pine St, Portland, OR 97035" -209874,Wired Headphones,1,11.99,05/03/19 00:04,"988 13th St, San Francisco, CA 94016" -209875,Wired Headphones,1,11.99,05/08/19 22:57,"526 12th St, Dallas, TX 75001" -209876,20in Monitor,1,109.99,05/26/19 05:51,"767 Adams St, Atlanta, GA 30301" -209877,Lightning Charging Cable,1,14.95,05/21/19 11:37,"454 Meadow St, Seattle, WA 98101" -209878,USB-C Charging Cable,1,11.95,05/27/19 11:25,"561 Madison St, Los Angeles, CA 90001" -209879,Apple Airpods Headphones,1,150,05/08/19 22:54,"486 Adams St, New York City, NY 10001" -209880,AA Batteries (4-pack),1,3.84,05/15/19 11:03,"100 Highland St, Boston, MA 02215" -209881,USB-C Charging Cable,1,11.95,05/01/19 12:15,"491 Lake St, New York City, NY 10001" -209882,Apple Airpods Headphones,1,150,05/18/19 10:48,"953 West St, San Francisco, CA 94016" -209883,Wired Headphones,1,11.99,05/02/19 14:59,"657 Johnson St, Portland, ME 04101" -209884,AA Batteries (4-pack),1,3.84,05/14/19 16:56,"911 Jackson St, Los Angeles, CA 90001" -209885,AA Batteries (4-pack),1,3.84,05/27/19 22:36,"674 Lincoln St, New York City, NY 10001" -209886,Bose SoundSport Headphones,1,99.99,05/16/19 21:17,"593 Jackson St, New York City, NY 10001" -209887,Macbook Pro Laptop,1,1700,05/06/19 15:49,"741 Cherry St, San Francisco, CA 94016" -209888,Flatscreen TV,1,300,05/04/19 17:11,"904 5th St, Los Angeles, CA 90001" -209889,Macbook Pro Laptop,1,1700,05/22/19 10:21,"500 10th St, Atlanta, GA 30301" -209890,AA Batteries (4-pack),1,3.84,05/23/19 20:59,"347 Church St, New York City, NY 10001" -209891,Bose SoundSport Headphones,1,99.99,05/07/19 22:53,"78 6th St, Boston, MA 02215" -209892,Wired Headphones,1,11.99,05/17/19 08:37,"40 Ridge St, Dallas, TX 75001" -209893,20in Monitor,1,109.99,05/07/19 21:01,"437 12th St, New York City, NY 10001" -209894,USB-C Charging Cable,1,11.95,05/23/19 18:40,"517 Sunset St, Atlanta, GA 30301" -209895,USB-C Charging Cable,1,11.95,05/19/19 17:43,"301 Madison St, Los Angeles, CA 90001" -209896,USB-C Charging Cable,1,11.95,05/09/19 00:14,"313 Chestnut St, San Francisco, CA 94016" -209897,Wired Headphones,2,11.99,05/29/19 14:15,"841 13th St, San Francisco, CA 94016" -209898,AAA Batteries (4-pack),1,2.99,05/16/19 17:48,"146 Meadow St, New York City, NY 10001" -209899,AA Batteries (4-pack),1,3.84,05/25/19 08:49,"51 Meadow St, Boston, MA 02215" -209900,Lightning Charging Cable,1,14.95,05/26/19 22:12,"911 13th St, Boston, MA 02215" -209901,20in Monitor,1,109.99,05/30/19 11:44,"387 Johnson St, San Francisco, CA 94016" -209902,Apple Airpods Headphones,1,150,05/01/19 08:57,"320 Maple St, Los Angeles, CA 90001" -209903,AAA Batteries (4-pack),2,2.99,05/27/19 12:59,"604 Walnut St, New York City, NY 10001" -209904,AAA Batteries (4-pack),1,2.99,05/20/19 18:52,"835 1st St, Boston, MA 02215" -209905,Wired Headphones,1,11.99,05/29/19 14:45,"174 Dogwood St, Seattle, WA 98101" -209906,Flatscreen TV,1,300,05/26/19 05:27,"533 Maple St, Los Angeles, CA 90001" -209907,Lightning Charging Cable,1,14.95,05/20/19 10:18,"228 Spruce St, Dallas, TX 75001" -209908,Wired Headphones,1,11.99,05/28/19 11:58,"817 1st St, Boston, MA 02215" -,,,,, -209909,USB-C Charging Cable,1,11.95,05/13/19 13:50,"438 12th St, Atlanta, GA 30301" -209910,Lightning Charging Cable,1,14.95,05/09/19 08:37,"633 Jefferson St, Atlanta, GA 30301" -209911,Wired Headphones,1,11.99,05/13/19 19:46,"939 13th St, New York City, NY 10001" -209912,20in Monitor,1,109.99,05/01/19 15:30,"482 Washington St, San Francisco, CA 94016" -209913,AAA Batteries (4-pack),1,2.99,05/11/19 11:51,"372 Park St, Los Angeles, CA 90001" -209914,ThinkPad Laptop,1,999.99,05/02/19 19:57,"903 Adams St, Portland, OR 97035" -209915,Apple Airpods Headphones,1,150,05/01/19 18:05,"231 5th St, Portland, OR 97035" -209916,Bose SoundSport Headphones,1,99.99,05/08/19 19:15,"235 Center St, Seattle, WA 98101" -209917,Wired Headphones,1,11.99,05/24/19 22:02,"926 9th St, San Francisco, CA 94016" -209918,AAA Batteries (4-pack),2,2.99,05/24/19 17:44,"868 Hickory St, Boston, MA 02215" -209919,USB-C Charging Cable,1,11.95,05/04/19 12:46,"204 Adams St, Seattle, WA 98101" -209920,ThinkPad Laptop,1,999.99,05/18/19 23:07,"43 5th St, Atlanta, GA 30301" -278797,Wired Headphones,1,11.99,11/21/19 09:54,"46 Park St, New York City, NY 10001" -278798,USB-C Charging Cable,2,11.95,11/17/19 10:03,"962 Hickory St, Austin, TX 73301" -278799,Apple Airpods Headphones,1,150.0,11/19/19 14:56,"464 Cherry St, Los Angeles, CA 90001" -278800,27in FHD Monitor,1,149.99,11/25/19 22:24,"649 10th St, Seattle, WA 98101" -278801,Bose SoundSport Headphones,1,99.99,11/09/19 13:56,"522 Hill St, Boston, MA 02215" -278802,USB-C Charging Cable,1,11.95,11/14/19 20:34,"154 2nd St, San Francisco, CA 94016" -278803,Lightning Charging Cable,1,14.95,11/11/19 08:05,"724 5th St, San Francisco, CA 94016" -278804,Bose SoundSport Headphones,1,99.99,11/15/19 11:48,"866 Sunset St, Austin, TX 73301" -278805,Lightning Charging Cable,1,14.95,11/27/19 11:50,"670 Elm St, San Francisco, CA 94016" -278806,Bose SoundSport Headphones,1,99.99,11/19/19 19:12,"174 2nd St, Boston, MA 02215" -278806,ThinkPad Laptop,1,999.99,11/19/19 19:12,"174 2nd St, Boston, MA 02215" -278807,ThinkPad Laptop,1,999.99,11/25/19 21:52,"240 Elm St, Austin, TX 73301" -278808,AAA Batteries (4-pack),1,2.99,11/23/19 13:19,"155 Highland St, Boston, MA 02215" -278809,AA Batteries (4-pack),1,3.84,11/17/19 12:38,"969 13th St, Dallas, TX 75001" -278810,USB-C Charging Cable,1,11.95,11/03/19 16:55,"454 Cherry St, Boston, MA 02215" -278811,Wired Headphones,1,11.99,11/06/19 16:01,"99 Elm St, San Francisco, CA 94016" -278811,Apple Airpods Headphones,1,150.0,11/06/19 16:01,"99 Elm St, San Francisco, CA 94016" -278812,Apple Airpods Headphones,1,150.0,11/17/19 20:08,"601 Church St, Seattle, WA 98101" -278813,Macbook Pro Laptop,1,1700.0,11/09/19 22:40,"131 6th St, Boston, MA 02215" -278814,AA Batteries (4-pack),3,3.84,11/16/19 16:45,"419 Hill St, Boston, MA 02215" -278815,Lightning Charging Cable,1,14.95,11/18/19 13:06,"815 Dogwood St, New York City, NY 10001" -278816,Lightning Charging Cable,1,14.95,11/08/19 08:58,"925 5th St, New York City, NY 10001" -278817,USB-C Charging Cable,1,11.95,11/05/19 23:25,"503 Chestnut St, Boston, MA 02215" -278818,USB-C Charging Cable,1,11.95,11/16/19 22:12,"541 Johnson St, New York City, NY 10001" -278819,iPhone,1,700.0,11/04/19 06:20,"880 Maple St, New York City, NY 10001" -278819,Apple Airpods Headphones,1,150.0,11/04/19 06:20,"880 Maple St, New York City, NY 10001" -278820,USB-C Charging Cable,2,11.95,11/17/19 15:11,"882 Walnut St, Portland, OR 97035" -278821,USB-C Charging Cable,1,11.95,11/25/19 16:17,"327 13th St, Dallas, TX 75001" -278822,Bose SoundSport Headphones,1,99.99,11/20/19 08:17,"816 Park St, Atlanta, GA 30301" -278823,AA Batteries (4-pack),1,3.84,11/29/19 20:42,"234 9th St, Boston, MA 02215" -278824,27in FHD Monitor,1,149.99,11/08/19 11:05,"677 Johnson St, Portland, OR 97035" -278825,Bose SoundSport Headphones,1,99.99,11/02/19 00:35,"928 Wilson St, San Francisco, CA 94016" -278826,20in Monitor,1,109.99,11/26/19 15:58,"532 Cedar St, Austin, TX 73301" -278827,Apple Airpods Headphones,1,150.0,11/01/19 13:06,"305 Highland St, San Francisco, CA 94016" -278828,34in Ultrawide Monitor,1,379.99,11/12/19 20:24,"470 13th St, San Francisco, CA 94016" -278829,iPhone,1,700.0,11/20/19 22:19,"977 Johnson St, Los Angeles, CA 90001" -278830,USB-C Charging Cable,1,11.95,11/04/19 13:28,"651 Hill St, Boston, MA 02215" -278831,Bose SoundSport Headphones,1,99.99,11/11/19 12:37,"607 8th St, Los Angeles, CA 90001" -278832,Vareebadd Phone,1,400.0,11/10/19 16:10,"783 12th St, San Francisco, CA 94016" -278833,iPhone,1,700.0,11/04/19 10:34,"700 Pine St, San Francisco, CA 94016" -278833,Lightning Charging Cable,2,14.95,11/04/19 10:34,"700 Pine St, San Francisco, CA 94016" -278834,Wired Headphones,1,11.99,11/07/19 13:19,"792 9th St, Los Angeles, CA 90001" -278835,AAA Batteries (4-pack),1,2.99,11/13/19 20:05,"302 Highland St, San Francisco, CA 94016" -278836,Wired Headphones,1,11.99,11/26/19 20:48,"989 12th St, New York City, NY 10001" -278837,AA Batteries (4-pack),1,3.84,11/10/19 16:05,"349 9th St, San Francisco, CA 94016" -278838,Flatscreen TV,1,300.0,11/12/19 15:37,"835 Main St, San Francisco, CA 94016" -278839,Lightning Charging Cable,1,14.95,11/23/19 11:16,"614 Church St, San Francisco, CA 94016" -278840,Bose SoundSport Headphones,1,99.99,11/23/19 20:46,"490 Walnut St, Los Angeles, CA 90001" -278840,27in FHD Monitor,1,149.99,11/23/19 20:46,"490 Walnut St, Los Angeles, CA 90001" -278841,USB-C Charging Cable,1,11.95,11/28/19 09:07,"847 Dogwood St, San Francisco, CA 94016" -278842,AA Batteries (4-pack),1,3.84,11/06/19 00:37,"487 Lincoln St, New York City, NY 10001" -278843,USB-C Charging Cable,1,11.95,11/07/19 11:59,"435 Hill St, Portland, ME 04101" -278844,20in Monitor,1,109.99,11/24/19 12:37,"944 Madison St, Los Angeles, CA 90001" -278845,Lightning Charging Cable,1,14.95,11/09/19 11:46,"497 6th St, Boston, MA 02215" -278846,Lightning Charging Cable,1,14.95,11/25/19 22:05,"84 1st St, Los Angeles, CA 90001" -278847,34in Ultrawide Monitor,1,379.99,11/12/19 13:52,"903 Madison St, Boston, MA 02215" -278848,Flatscreen TV,1,300.0,11/23/19 16:40,"140 West St, Austin, TX 73301" -278849,AAA Batteries (4-pack),1,2.99,11/16/19 11:49,"984 Washington St, Seattle, WA 98101" -278850,USB-C Charging Cable,1,11.95,11/21/19 14:25,"555 Cherry St, San Francisco, CA 94016" -278851,Apple Airpods Headphones,1,150.0,11/08/19 19:49,"687 Maple St, Los Angeles, CA 90001" -278852,AAA Batteries (4-pack),1,2.99,11/12/19 16:53,"998 Hill St, Seattle, WA 98101" -278853,AAA Batteries (4-pack),1,2.99,11/20/19 19:01,"591 Washington St, San Francisco, CA 94016" -278854,27in 4K Gaming Monitor,1,389.99,11/04/19 00:24,"952 Dogwood St, Portland, OR 97035" -278855,AA Batteries (4-pack),1,3.84,11/21/19 21:32,"193 Maple St, New York City, NY 10001" -278856,Apple Airpods Headphones,1,150.0,11/10/19 22:27,"788 North St, New York City, NY 10001" -278857,USB-C Charging Cable,1,11.95,11/30/19 15:37,"150 Wilson St, Los Angeles, CA 90001" -278857,AAA Batteries (4-pack),2,2.99,11/30/19 15:37,"150 Wilson St, Los Angeles, CA 90001" -278858,USB-C Charging Cable,1,11.95,11/16/19 13:23,"690 Spruce St, San Francisco, CA 94016" -278859,27in FHD Monitor,1,149.99,11/21/19 22:29,"30 West St, Dallas, TX 75001" -,,,,, -278860,Wired Headphones,2,11.99,11/22/19 21:45,"389 Madison St, Boston, MA 02215" -278861,AA Batteries (4-pack),2,3.84,11/24/19 16:18,"485 Jefferson St, New York City, NY 10001" -278862,Wired Headphones,1,11.99,11/04/19 09:22,"351 Spruce St, Portland, ME 04101" -278863,Wired Headphones,1,11.99,11/21/19 16:29,"511 10th St, Los Angeles, CA 90001" -278864,Apple Airpods Headphones,1,150,11/09/19 19:29,"67 Meadow St, San Francisco, CA 94016" -278865,27in 4K Gaming Monitor,1,389.99,11/14/19 17:44,"518 Center St, New York City, NY 10001" -278866,USB-C Charging Cable,1,11.95,11/12/19 23:44,"755 2nd St, San Francisco, CA 94016" -278867,Apple Airpods Headphones,1,150,11/13/19 11:55,"249 Madison St, Atlanta, GA 30301" -278868,Wired Headphones,1,11.99,11/12/19 22:27,"614 Maple St, New York City, NY 10001" -278869,Lightning Charging Cable,1,14.95,11/22/19 12:18,"164 North St, Dallas, TX 75001" -278870,Bose SoundSport Headphones,1,99.99,11/29/19 19:53,"921 Meadow St, Seattle, WA 98101" -278871,34in Ultrawide Monitor,1,379.99,11/22/19 14:01,"95 Willow St, Dallas, TX 75001" -278872,iPhone,1,700,11/02/19 10:46,"916 North St, Portland, OR 97035" -278873,Lightning Charging Cable,1,14.95,11/28/19 22:30,"206 Willow St, Portland, OR 97035" -278874,Lightning Charging Cable,1,14.95,11/13/19 17:58,"828 Spruce St, Austin, TX 73301" -278875,USB-C Charging Cable,1,11.95,11/26/19 11:09,"832 Sunset St, Los Angeles, CA 90001" -278876,Bose SoundSport Headphones,1,99.99,11/27/19 17:31,"174 Main St, Portland, OR 97035" -278877,34in Ultrawide Monitor,1,379.99,11/24/19 20:08,"684 Madison St, Atlanta, GA 30301" -278878,AAA Batteries (4-pack),1,2.99,11/07/19 16:06,"515 1st St, New York City, NY 10001" -278879,27in 4K Gaming Monitor,1,389.99,11/21/19 23:35,"738 6th St, San Francisco, CA 94016" -278880,Apple Airpods Headphones,1,150,11/16/19 13:07,"531 Ridge St, San Francisco, CA 94016" -278881,20in Monitor,1,109.99,11/22/19 11:30,"695 Jefferson St, New York City, NY 10001" -278882,Bose SoundSport Headphones,1,99.99,11/15/19 20:31,"469 8th St, San Francisco, CA 94016" -278883,Wired Headphones,2,11.99,11/28/19 23:11,"153 Washington St, San Francisco, CA 94016" -278884,Flatscreen TV,1,300,11/09/19 23:48,"288 Washington St, Portland, OR 97035" -278885,34in Ultrawide Monitor,1,379.99,11/12/19 18:53,"129 Ridge St, Austin, TX 73301" -278886,USB-C Charging Cable,1,11.95,11/17/19 13:44,"315 Elm St, San Francisco, CA 94016" -278887,AA Batteries (4-pack),1,3.84,11/18/19 14:55,"281 1st St, Atlanta, GA 30301" -278888,AA Batteries (4-pack),1,3.84,11/24/19 15:44,"447 Cherry St, Los Angeles, CA 90001" -278889,USB-C Charging Cable,1,11.95,11/30/19 08:39,"171 13th St, Los Angeles, CA 90001" -278890,Apple Airpods Headphones,1,150,11/26/19 11:27,"673 West St, Seattle, WA 98101" -278891,Flatscreen TV,1,300,11/04/19 12:19,"116 5th St, San Francisco, CA 94016" -278892,USB-C Charging Cable,1,11.95,11/08/19 12:10,"214 North St, Dallas, TX 75001" -278893,AA Batteries (4-pack),1,3.84,11/21/19 18:39,"39 Church St, Los Angeles, CA 90001" -278894,Bose SoundSport Headphones,1,99.99,11/16/19 10:06,"334 Pine St, Dallas, TX 75001" -278895,USB-C Charging Cable,1,11.95,11/25/19 17:28,"24 West St, Los Angeles, CA 90001" -278896,AAA Batteries (4-pack),2,2.99,11/13/19 19:10,"906 North St, New York City, NY 10001" -278897,27in FHD Monitor,1,149.99,11/21/19 13:42,"277 Hill St, San Francisco, CA 94016" -278898,34in Ultrawide Monitor,1,379.99,11/02/19 20:23,"938 6th St, Los Angeles, CA 90001" -278899,AA Batteries (4-pack),1,3.84,11/10/19 20:51,"328 1st St, Portland, OR 97035" -278900,Bose SoundSport Headphones,1,99.99,11/13/19 18:34,"948 North St, Boston, MA 02215" -278901,Lightning Charging Cable,1,14.95,11/26/19 19:08,"423 7th St, Los Angeles, CA 90001" -278902,ThinkPad Laptop,1,999.99,11/22/19 17:49,"117 4th St, San Francisco, CA 94016" -278903,Google Phone,1,600,11/05/19 17:19,"478 Dogwood St, San Francisco, CA 94016" -278904,AAA Batteries (4-pack),1,2.99,11/03/19 13:57,"396 Cedar St, Atlanta, GA 30301" -278905,AAA Batteries (4-pack),4,2.99,11/04/19 14:13,"458 Meadow St, Portland, OR 97035" -278906,Lightning Charging Cable,1,14.95,11/04/19 14:51,"873 Hickory St, Boston, MA 02215" -278907,USB-C Charging Cable,1,11.95,11/09/19 16:43,"697 West St, Dallas, TX 75001" -278908,27in 4K Gaming Monitor,1,389.99,11/13/19 17:19,"256 Adams St, Seattle, WA 98101" -278909,Lightning Charging Cable,1,14.95,11/10/19 19:25,"250 South St, Los Angeles, CA 90001" -278910,USB-C Charging Cable,1,11.95,11/02/19 20:45,"42 12th St, Boston, MA 02215" -278911,Macbook Pro Laptop,1,1700,11/24/19 13:03,"244 Walnut St, Los Angeles, CA 90001" -278912,AAA Batteries (4-pack),2,2.99,11/08/19 11:02,"319 Cherry St, Los Angeles, CA 90001" -278913,Lightning Charging Cable,1,14.95,11/01/19 10:21,"868 Elm St, Seattle, WA 98101" -278914,Wired Headphones,1,11.99,11/30/19 15:01,"222 Pine St, Boston, MA 02215" -278915,AA Batteries (4-pack),3,3.84,11/11/19 18:39,"267 North St, Los Angeles, CA 90001" -278916,Apple Airpods Headphones,1,150,11/24/19 21:17,"561 7th St, San Francisco, CA 94016" -278917,Apple Airpods Headphones,1,150,11/19/19 22:08,"787 Wilson St, Seattle, WA 98101" -278918,Apple Airpods Headphones,1,150,11/01/19 09:49,"325 Pine St, Austin, TX 73301" -278919,Lightning Charging Cable,1,14.95,11/05/19 19:44,"378 Ridge St, New York City, NY 10001" -278920,AA Batteries (4-pack),2,3.84,11/18/19 12:55,"886 Hill St, Seattle, WA 98101" -278921,Wired Headphones,1,11.99,11/19/19 18:32,"427 10th St, Austin, TX 73301" -278922,27in FHD Monitor,1,149.99,11/06/19 15:35,"143 10th St, San Francisco, CA 94016" -278923,AA Batteries (4-pack),1,3.84,11/04/19 11:14,"898 Chestnut St, Boston, MA 02215" -278924,Google Phone,1,600,11/16/19 21:36,"796 12th St, Dallas, TX 75001" -278925,27in 4K Gaming Monitor,1,389.99,11/11/19 23:52,"236 2nd St, Los Angeles, CA 90001" -278926,LG Washing Machine,1,600.0,11/21/19 13:11,"772 Maple St, Boston, MA 02215" -278927,Wired Headphones,1,11.99,11/26/19 09:54,"919 12th St, Atlanta, GA 30301" -,,,,, -278928,AAA Batteries (4-pack),1,2.99,11/04/19 20:46,"380 Willow St, San Francisco, CA 94016" -278929,USB-C Charging Cable,1,11.95,11/23/19 18:52,"472 2nd St, San Francisco, CA 94016" -278930,AAA Batteries (4-pack),1,2.99,11/30/19 19:49,"352 11th St, San Francisco, CA 94016" -278931,ThinkPad Laptop,1,999.99,11/24/19 14:13,"493 Center St, Boston, MA 02215" -278932,AA Batteries (4-pack),2,3.84,11/26/19 13:47,"385 4th St, New York City, NY 10001" -278933,USB-C Charging Cable,1,11.95,11/17/19 11:28,"611 Lake St, San Francisco, CA 94016" -278934,USB-C Charging Cable,1,11.95,11/13/19 17:07,"187 Lakeview St, San Francisco, CA 94016" -278935,AAA Batteries (4-pack),2,2.99,11/13/19 21:04,"845 Jackson St, Seattle, WA 98101" -278936,AA Batteries (4-pack),3,3.84,11/04/19 20:12,"167 9th St, San Francisco, CA 94016" -278937,Wired Headphones,1,11.99,11/30/19 17:37,"968 South St, San Francisco, CA 94016" -278938,ThinkPad Laptop,1,999.99,11/02/19 18:52,"198 Maple St, San Francisco, CA 94016" -278939,Apple Airpods Headphones,1,150,11/17/19 09:51,"191 14th St, Seattle, WA 98101" -278940,Apple Airpods Headphones,1,150,11/23/19 10:51,"140 2nd St, Boston, MA 02215" -278940,AAA Batteries (4-pack),4,2.99,11/23/19 10:51,"140 2nd St, Boston, MA 02215" -278941,27in 4K Gaming Monitor,1,389.99,11/09/19 04:37,"330 Elm St, New York City, NY 10001" -278942,27in FHD Monitor,1,149.99,11/13/19 18:37,"111 Dogwood St, San Francisco, CA 94016" -278943,USB-C Charging Cable,1,11.95,11/04/19 09:47,"108 Lake St, Boston, MA 02215" -278944,Google Phone,1,600,11/14/19 22:19,"600 Willow St, Portland, OR 97035" -278944,Bose SoundSport Headphones,1,99.99,11/14/19 22:19,"600 Willow St, Portland, OR 97035" -278945,Wired Headphones,1,11.99,11/22/19 02:20,"602 Johnson St, San Francisco, CA 94016" -278946,iPhone,1,700,11/19/19 18:25,"361 9th St, San Francisco, CA 94016" -278946,Lightning Charging Cable,1,14.95,11/19/19 18:25,"361 9th St, San Francisco, CA 94016" -278946,Wired Headphones,1,11.99,11/19/19 18:25,"361 9th St, San Francisco, CA 94016" -278947,Apple Airpods Headphones,1,150,11/25/19 11:14,"322 Madison St, New York City, NY 10001" -278948,ThinkPad Laptop,1,999.99,11/17/19 15:17,"464 Chestnut St, Boston, MA 02215" -278949,Lightning Charging Cable,1,14.95,11/02/19 18:13,"813 Park St, Los Angeles, CA 90001" -278950,Apple Airpods Headphones,1,150,11/29/19 10:39,"260 River St, Boston, MA 02215" -278951,Lightning Charging Cable,1,14.95,11/07/19 17:03,"401 13th St, Boston, MA 02215" -278952,AAA Batteries (4-pack),1,2.99,11/17/19 12:04,"947 5th St, Atlanta, GA 30301" -278953,AAA Batteries (4-pack),1,2.99,11/11/19 13:52,"919 North St, San Francisco, CA 94016" -278954,AA Batteries (4-pack),1,3.84,11/13/19 11:42,"536 Forest St, Dallas, TX 75001" -278955,USB-C Charging Cable,1,11.95,11/14/19 23:48,"271 Meadow St, Seattle, WA 98101" -278956,AA Batteries (4-pack),1,3.84,11/22/19 09:57,"894 Maple St, San Francisco, CA 94016" -278957,USB-C Charging Cable,1,11.95,11/03/19 20:00,"740 Forest St, Los Angeles, CA 90001" -278958,Lightning Charging Cable,2,14.95,11/22/19 12:20,"106 North St, Los Angeles, CA 90001" -278959,Apple Airpods Headphones,1,150,11/12/19 15:52,"206 West St, Los Angeles, CA 90001" -278960,Bose SoundSport Headphones,1,99.99,11/15/19 22:33,"386 Church St, Seattle, WA 98101" -278961,AAA Batteries (4-pack),1,2.99,11/21/19 10:00,"250 Madison St, Boston, MA 02215" -278962,Vareebadd Phone,1,400,11/01/19 21:16,"583 Adams St, Los Angeles, CA 90001" -278963,Bose SoundSport Headphones,1,99.99,11/29/19 21:52,"957 South St, San Francisco, CA 94016" -278964,Flatscreen TV,1,300,11/13/19 03:56,"200 Madison St, Dallas, TX 75001" -278965,AAA Batteries (4-pack),2,2.99,11/17/19 11:29,"744 Main St, San Francisco, CA 94016" -278966,AAA Batteries (4-pack),1,2.99,11/04/19 16:57,"188 Jefferson St, Atlanta, GA 30301" -278967,Flatscreen TV,1,300,11/05/19 09:53,"803 Wilson St, New York City, NY 10001" -278968,AAA Batteries (4-pack),2,2.99,11/30/19 09:38,"923 Maple St, San Francisco, CA 94016" -278969,27in FHD Monitor,1,149.99,11/17/19 13:36,"589 13th St, Atlanta, GA 30301" -278970,Google Phone,1,600,11/21/19 13:36,"21 14th St, San Francisco, CA 94016" -278970,USB-C Charging Cable,1,11.95,11/21/19 13:36,"21 14th St, San Francisco, CA 94016" -278971,27in 4K Gaming Monitor,1,389.99,11/11/19 14:49,"868 8th St, Atlanta, GA 30301" -278972,AA Batteries (4-pack),3,3.84,11/11/19 09:45,"817 Spruce St, Boston, MA 02215" -278973,27in 4K Gaming Monitor,1,389.99,11/27/19 13:52,"808 Walnut St, Boston, MA 02215" -278974,Apple Airpods Headphones,1,150,11/08/19 11:25,"81 North St, San Francisco, CA 94016" -278975,Bose SoundSport Headphones,1,99.99,11/19/19 00:29,"387 Forest St, Boston, MA 02215" -278976,AAA Batteries (4-pack),1,2.99,11/29/19 20:55,"676 Sunset St, Los Angeles, CA 90001" -278977,AAA Batteries (4-pack),2,2.99,11/27/19 09:57,"121 5th St, New York City, NY 10001" -278978,USB-C Charging Cable,1,11.95,11/20/19 16:02,"13 Cherry St, San Francisco, CA 94016" -278979,AA Batteries (4-pack),1,3.84,11/02/19 18:49,"383 River St, Portland, OR 97035" -278980,USB-C Charging Cable,1,11.95,11/29/19 05:20,"893 Chestnut St, San Francisco, CA 94016" -278981,Flatscreen TV,1,300,11/02/19 21:34,"25 7th St, San Francisco, CA 94016" -278982,AAA Batteries (4-pack),1,2.99,11/01/19 13:41,"648 Jackson St, Los Angeles, CA 90001" -278983,ThinkPad Laptop,1,999.99,11/17/19 05:33,"392 4th St, Atlanta, GA 30301" -278984,ThinkPad Laptop,1,999.99,11/10/19 11:05,"877 Lincoln St, Dallas, TX 75001" -278985,Lightning Charging Cable,1,14.95,11/08/19 11:22,"357 10th St, Seattle, WA 98101" -278986,AA Batteries (4-pack),1,3.84,11/12/19 13:50,"161 Center St, Boston, MA 02215" -278987,Lightning Charging Cable,1,14.95,11/05/19 21:38,"704 11th St, Boston, MA 02215" -278988,USB-C Charging Cable,1,11.95,11/15/19 16:36,"589 Elm St, Boston, MA 02215" -278989,Flatscreen TV,1,300,11/09/19 19:24,"218 Willow St, San Francisco, CA 94016" -278990,Bose SoundSport Headphones,1,99.99,11/26/19 12:29,"50 Cedar St, Los Angeles, CA 90001" -278991,USB-C Charging Cable,1,11.95,11/12/19 06:53,"3 South St, New York City, NY 10001" -278992,LG Dryer,1,600.0,11/13/19 19:40,"456 West St, Boston, MA 02215" -278993,Lightning Charging Cable,1,14.95,11/30/19 03:42,"403 Chestnut St, New York City, NY 10001" -278994,Flatscreen TV,1,300,11/11/19 19:36,"774 Lake St, New York City, NY 10001" -278995,27in FHD Monitor,1,149.99,11/17/19 21:05,"828 Walnut St, Seattle, WA 98101" -278996,34in Ultrawide Monitor,1,379.99,11/26/19 19:23,"762 Madison St, Portland, OR 97035" -278997,Bose SoundSport Headphones,1,99.99,11/01/19 22:17,"821 Elm St, San Francisco, CA 94016" -278998,AA Batteries (4-pack),1,3.84,11/06/19 22:21,"85 Walnut St, San Francisco, CA 94016" -278999,Lightning Charging Cable,2,14.95,11/10/19 07:13,"90 5th St, Seattle, WA 98101" -279000,ThinkPad Laptop,1,999.99,11/22/19 09:09,"83 River St, New York City, NY 10001" -279001,AAA Batteries (4-pack),1,2.99,11/18/19 14:34,"569 Highland St, San Francisco, CA 94016" -279002,AA Batteries (4-pack),1,3.84,11/15/19 15:10,"122 9th St, Los Angeles, CA 90001" -279003,Apple Airpods Headphones,1,150,11/25/19 12:08,"537 12th St, Boston, MA 02215" -279004,Apple Airpods Headphones,1,150,11/30/19 16:18,"59 Hill St, New York City, NY 10001" -279005,Lightning Charging Cable,1,14.95,11/16/19 07:05,"222 12th St, Boston, MA 02215" -279005,Wired Headphones,1,11.99,11/16/19 07:05,"222 12th St, Boston, MA 02215" -279006,Flatscreen TV,1,300,11/30/19 12:04,"807 Meadow St, Boston, MA 02215" -279007,Apple Airpods Headphones,1,150,11/08/19 18:39,"953 7th St, Seattle, WA 98101" -279008,Apple Airpods Headphones,1,150,11/27/19 16:04,"174 Lakeview St, Boston, MA 02215" -279009,USB-C Charging Cable,1,11.95,11/06/19 13:44,"546 Washington St, New York City, NY 10001" -279010,Apple Airpods Headphones,1,150,11/18/19 19:43,"781 14th St, Boston, MA 02215" -279011,Apple Airpods Headphones,1,150,11/02/19 12:29,"973 Cedar St, Atlanta, GA 30301" -279012,AA Batteries (4-pack),1,3.84,11/13/19 14:52,"564 Cedar St, Boston, MA 02215" -279013,AAA Batteries (4-pack),1,2.99,11/30/19 11:36,"225 2nd St, Seattle, WA 98101" -279014,27in 4K Gaming Monitor,1,389.99,11/04/19 19:58,"740 Park St, Seattle, WA 98101" -279015,AAA Batteries (4-pack),1,2.99,11/22/19 19:48,"504 Hill St, Boston, MA 02215" -279016,Apple Airpods Headphones,1,150,11/20/19 12:05,"564 North St, Atlanta, GA 30301" -279017,AAA Batteries (4-pack),1,2.99,11/15/19 08:04,"24 Wilson St, Atlanta, GA 30301" -279018,AAA Batteries (4-pack),1,2.99,11/02/19 22:17,"923 Sunset St, Los Angeles, CA 90001" -279019,Wired Headphones,1,11.99,11/05/19 19:11,"858 11th St, Atlanta, GA 30301" -279020,34in Ultrawide Monitor,1,379.99,11/28/19 17:00,"518 Forest St, Seattle, WA 98101" -279021,Wired Headphones,1,11.99,11/25/19 19:13,"715 Lake St, Atlanta, GA 30301" -279022,27in 4K Gaming Monitor,1,389.99,11/26/19 11:46,"136 Lakeview St, Los Angeles, CA 90001" -279023,Macbook Pro Laptop,1,1700,11/03/19 13:19,"417 Park St, Boston, MA 02215" -279024,Google Phone,1,600,11/01/19 18:11,"745 West St, Portland, OR 97035" -279025,27in FHD Monitor,1,149.99,11/01/19 13:05,"181 Adams St, Portland, OR 97035" -279026,Macbook Pro Laptop,1,1700,11/25/19 19:29,"232 8th St, Boston, MA 02215" -279027,USB-C Charging Cable,1,11.95,11/07/19 14:01,"198 River St, Seattle, WA 98101" -279028,USB-C Charging Cable,1,11.95,11/19/19 13:40,"466 Dogwood St, Seattle, WA 98101" -279029,USB-C Charging Cable,1,11.95,11/07/19 02:09,"602 South St, Seattle, WA 98101" -279030,34in Ultrawide Monitor,1,379.99,11/22/19 18:44,"730 4th St, New York City, NY 10001" -279031,USB-C Charging Cable,2,11.95,11/21/19 20:38,"650 Main St, San Francisco, CA 94016" -279032,Apple Airpods Headphones,1,150,11/17/19 14:56,"741 Willow St, New York City, NY 10001" -279033,Apple Airpods Headphones,1,150,11/15/19 20:28,"665 Lake St, San Francisco, CA 94016" -279034,iPhone,1,700,11/30/19 13:10,"221 Forest St, Dallas, TX 75001" -279035,iPhone,1,700,11/19/19 18:25,"379 Madison St, San Francisco, CA 94016" -279036,20in Monitor,1,109.99,11/18/19 20:08,"582 6th St, San Francisco, CA 94016" -279037,Wired Headphones,1,11.99,11/28/19 21:38,"165 Cherry St, San Francisco, CA 94016" -279038,Lightning Charging Cable,1,14.95,11/03/19 14:23,"586 Cherry St, San Francisco, CA 94016" -279039,USB-C Charging Cable,1,11.95,11/22/19 17:05,"675 Spruce St, Portland, OR 97035" -279040,27in FHD Monitor,1,149.99,11/29/19 17:20,"780 Main St, Atlanta, GA 30301" -279041,USB-C Charging Cable,1,11.95,11/30/19 21:12,"506 7th St, Los Angeles, CA 90001" -279042,Wired Headphones,1,11.99,11/06/19 10:19,"773 River St, Boston, MA 02215" -279043,20in Monitor,1,109.99,11/20/19 12:46,"174 2nd St, Portland, OR 97035" -279044,AAA Batteries (4-pack),2,2.99,11/11/19 08:09,"373 Sunset St, Seattle, WA 98101" -279045,Apple Airpods Headphones,1,150,11/04/19 13:56,"338 Spruce St, San Francisco, CA 94016" -279046,Wired Headphones,1,11.99,11/16/19 14:44,"126 Forest St, New York City, NY 10001" -279047,AA Batteries (4-pack),1,3.84,11/22/19 11:22,"586 5th St, San Francisco, CA 94016" -279048,USB-C Charging Cable,1,11.95,11/23/19 16:35,"442 1st St, Dallas, TX 75001" -279049,Apple Airpods Headphones,1,150,11/18/19 15:22,"273 Johnson St, Boston, MA 02215" -279050,USB-C Charging Cable,1,11.95,11/11/19 12:58,"248 12th St, Boston, MA 02215" -279051,AAA Batteries (4-pack),1,2.99,11/23/19 21:37,"287 11th St, Austin, TX 73301" -279052,Apple Airpods Headphones,1,150,11/19/19 15:01,"79 Ridge St, Austin, TX 73301" -279053,27in 4K Gaming Monitor,1,389.99,11/04/19 13:46,"875 6th St, Atlanta, GA 30301" -279054,ThinkPad Laptop,1,999.99,11/27/19 17:40,"538 1st St, Portland, OR 97035" -279055,USB-C Charging Cable,1,11.95,11/06/19 15:38,"906 11th St, Portland, OR 97035" -279056,Lightning Charging Cable,1,14.95,11/12/19 17:36,"954 Church St, San Francisco, CA 94016" -279057,Lightning Charging Cable,1,14.95,11/22/19 18:06,"309 Ridge St, Los Angeles, CA 90001" -279058,Apple Airpods Headphones,1,150,11/04/19 07:46,"573 Jackson St, Seattle, WA 98101" -279059,27in FHD Monitor,1,149.99,11/27/19 08:33,"250 Main St, Portland, OR 97035" -279060,34in Ultrawide Monitor,1,379.99,11/15/19 12:23,"671 Hickory St, Boston, MA 02215" -279061,USB-C Charging Cable,1,11.95,11/28/19 11:43,"83 9th St, Los Angeles, CA 90001" -279062,Macbook Pro Laptop,1,1700,11/15/19 20:12,"924 Church St, San Francisco, CA 94016" -279063,27in 4K Gaming Monitor,1,389.99,11/07/19 10:05,"307 Dogwood St, New York City, NY 10001" -279064,iPhone,1,700,11/24/19 18:28,"415 Lincoln St, San Francisco, CA 94016" -279065,iPhone,1,700,11/14/19 11:12,"977 Johnson St, Atlanta, GA 30301" -279066,Flatscreen TV,1,300,11/30/19 23:19,"79 Hickory St, New York City, NY 10001" -279067,AA Batteries (4-pack),1,3.84,11/25/19 11:50,"621 Wilson St, Boston, MA 02215" -279068,Flatscreen TV,1,300,11/01/19 16:07,"97 Hill St, Austin, TX 73301" -279068,AAA Batteries (4-pack),5,2.99,11/01/19 16:07,"97 Hill St, Austin, TX 73301" -279069,USB-C Charging Cable,1,11.95,11/14/19 16:30,"593 South St, San Francisco, CA 94016" -279069,USB-C Charging Cable,1,11.95,11/14/19 16:30,"593 South St, San Francisco, CA 94016" -279070,iPhone,1,700,11/21/19 16:01,"407 North St, Los Angeles, CA 90001" -279071,AAA Batteries (4-pack),3,2.99,11/21/19 18:00,"87 Center St, New York City, NY 10001" -279072,AA Batteries (4-pack),2,3.84,11/04/19 07:28,"330 Main St, Austin, TX 73301" -279073,AA Batteries (4-pack),1,3.84,11/16/19 19:17,"858 Cherry St, Boston, MA 02215" -279074,34in Ultrawide Monitor,1,379.99,11/15/19 12:43,"602 Hickory St, Los Angeles, CA 90001" -279075,Wired Headphones,1,11.99,11/11/19 15:58,"940 4th St, Portland, OR 97035" -279076,Wired Headphones,1,11.99,11/25/19 11:57,"204 2nd St, San Francisco, CA 94016" -279077,AAA Batteries (4-pack),1,2.99,11/28/19 19:56,"829 11th St, San Francisco, CA 94016" -279078,27in FHD Monitor,1,149.99,11/09/19 16:09,"979 6th St, New York City, NY 10001" -279079,USB-C Charging Cable,1,11.95,11/03/19 22:31,"874 Forest St, San Francisco, CA 94016" -279080,Apple Airpods Headphones,1,150,11/27/19 18:20,"93 Pine St, New York City, NY 10001" -279081,Wired Headphones,1,11.99,11/25/19 01:20,"521 9th St, Atlanta, GA 30301" -279082,Bose SoundSport Headphones,1,99.99,11/20/19 19:58,"680 Hill St, Los Angeles, CA 90001" -279083,USB-C Charging Cable,1,11.95,11/30/19 07:23,"300 Willow St, Portland, OR 97035" -279084,Vareebadd Phone,1,400,11/30/19 16:31,"700 River St, Dallas, TX 75001" -279085,Lightning Charging Cable,1,14.95,11/01/19 22:01,"968 Elm St, New York City, NY 10001" -279086,Wired Headphones,1,11.99,11/12/19 06:32,"702 Cherry St, San Francisco, CA 94016" -279087,34in Ultrawide Monitor,1,379.99,11/18/19 15:44,"594 South St, San Francisco, CA 94016" -279088,AA Batteries (4-pack),1,3.84,11/17/19 05:25,"627 Washington St, New York City, NY 10001" -279089,Bose SoundSport Headphones,1,99.99,11/04/19 16:26,"793 Main St, Portland, OR 97035" -279090,Vareebadd Phone,1,400,11/02/19 11:07,"105 Park St, Seattle, WA 98101" -279091,27in FHD Monitor,1,149.99,11/23/19 15:29,"924 9th St, Portland, OR 97035" -279092,Lightning Charging Cable,1,14.95,11/01/19 15:33,"47 Cedar St, Atlanta, GA 30301" -279093,USB-C Charging Cable,2,11.95,11/24/19 22:59,"571 Willow St, Portland, ME 04101" -279094,Lightning Charging Cable,1,14.95,11/01/19 17:55,"899 Adams St, New York City, NY 10001" -279095,AA Batteries (4-pack),2,3.84,12/01/19 01:13,"134 North St, San Francisco, CA 94016" -279096,AAA Batteries (4-pack),1,2.99,11/02/19 10:13,"339 Lake St, Dallas, TX 75001" -279097,27in 4K Gaming Monitor,1,389.99,11/01/19 19:42,"240 Wilson St, Los Angeles, CA 90001" -279098,Wired Headphones,1,11.99,11/08/19 17:57,"841 7th St, Seattle, WA 98101" -279099,34in Ultrawide Monitor,1,379.99,11/28/19 12:16,"921 River St, New York City, NY 10001" -279100,Lightning Charging Cable,1,14.95,11/25/19 17:40,"215 Church St, Portland, OR 97035" -279101,AA Batteries (4-pack),1,3.84,11/26/19 17:24,"549 Jackson St, San Francisco, CA 94016" -279102,USB-C Charging Cable,1,11.95,11/18/19 22:30,"494 6th St, Atlanta, GA 30301" -279103,Wired Headphones,1,11.99,11/02/19 15:07,"555 12th St, Atlanta, GA 30301" -279104,Apple Airpods Headphones,1,150,11/17/19 09:46,"440 Pine St, San Francisco, CA 94016" -279105,34in Ultrawide Monitor,1,379.99,11/19/19 12:23,"736 Washington St, Dallas, TX 75001" -279106,Vareebadd Phone,1,400,11/07/19 14:07,"334 Lincoln St, Los Angeles, CA 90001" -279107,Macbook Pro Laptop,1,1700,11/26/19 10:43,"687 Lincoln St, Los Angeles, CA 90001" -279108,Macbook Pro Laptop,1,1700,11/27/19 10:54,"145 Lincoln St, Seattle, WA 98101" -279109,Lightning Charging Cable,1,14.95,11/01/19 12:03,"736 Walnut St, San Francisco, CA 94016" -279110,Apple Airpods Headphones,1,150,11/13/19 23:00,"525 Pine St, Dallas, TX 75001" -279111,27in FHD Monitor,1,149.99,11/04/19 16:38,"320 Center St, New York City, NY 10001" -279112,Wired Headphones,1,11.99,11/16/19 20:47,"275 11th St, Los Angeles, CA 90001" -279113,AA Batteries (4-pack),1,3.84,11/05/19 09:36,"702 6th St, San Francisco, CA 94016" -279114,Apple Airpods Headphones,1,150,11/29/19 18:47,"91 Church St, Portland, ME 04101" -279115,Lightning Charging Cable,1,14.95,11/03/19 18:36,"667 Lakeview St, San Francisco, CA 94016" -279116,AAA Batteries (4-pack),1,2.99,11/01/19 09:02,"11 Adams St, San Francisco, CA 94016" -279117,ThinkPad Laptop,1,999.99,11/03/19 12:21,"117 14th St, Dallas, TX 75001" -279118,34in Ultrawide Monitor,1,379.99,11/04/19 13:32,"700 Spruce St, New York City, NY 10001" -279119,Apple Airpods Headphones,1,150,11/05/19 11:45,"544 Willow St, San Francisco, CA 94016" -279120,20in Monitor,1,109.99,11/03/19 17:35,"231 1st St, Boston, MA 02215" -279121,AA Batteries (4-pack),1,3.84,11/25/19 12:07,"619 9th St, San Francisco, CA 94016" -279122,Wired Headphones,1,11.99,11/20/19 17:19,"743 Ridge St, San Francisco, CA 94016" -279123,Lightning Charging Cable,1,14.95,11/01/19 08:24,"847 9th St, Dallas, TX 75001" -279124,iPhone,1,700,11/26/19 22:43,"579 11th St, Portland, OR 97035" -279125,Bose SoundSport Headphones,1,99.99,11/09/19 22:07,"416 Sunset St, San Francisco, CA 94016" -279126,Bose SoundSport Headphones,1,99.99,11/14/19 19:49,"585 Church St, Atlanta, GA 30301" -279127,Apple Airpods Headphones,1,150,11/02/19 16:37,"967 Johnson St, Dallas, TX 75001" -279128,27in FHD Monitor,1,149.99,11/01/19 19:54,"262 Hickory St, Atlanta, GA 30301" -279129,Wired Headphones,1,11.99,11/25/19 20:37,"33 13th St, Dallas, TX 75001" -279130,Wired Headphones,1,11.99,11/30/19 17:56,"459 Jackson St, New York City, NY 10001" -279131,Flatscreen TV,1,300,11/02/19 15:21,"880 Dogwood St, Los Angeles, CA 90001" -279132,Flatscreen TV,1,300,11/08/19 09:05,"483 North St, Boston, MA 02215" -279133,Apple Airpods Headphones,1,150,11/11/19 09:23,"450 Walnut St, San Francisco, CA 94016" -279134,AAA Batteries (4-pack),2,2.99,11/22/19 22:27,"833 Johnson St, Los Angeles, CA 90001" -279135,AAA Batteries (4-pack),2,2.99,11/17/19 23:10,"125 Maple St, Austin, TX 73301" -279136,Bose SoundSport Headphones,1,99.99,11/03/19 19:08,"106 Wilson St, Atlanta, GA 30301" -279137,USB-C Charging Cable,1,11.95,11/22/19 12:10,"909 12th St, Los Angeles, CA 90001" -279138,USB-C Charging Cable,1,11.95,11/28/19 13:47,"766 North St, Seattle, WA 98101" -279139,AAA Batteries (4-pack),1,2.99,11/17/19 21:48,"265 Cedar St, New York City, NY 10001" -279140,Lightning Charging Cable,1,14.95,11/27/19 10:20,"138 2nd St, New York City, NY 10001" -279141,USB-C Charging Cable,1,11.95,11/03/19 12:10,"42 Cherry St, Boston, MA 02215" -279142,Lightning Charging Cable,1,14.95,11/13/19 21:18,"275 Forest St, Los Angeles, CA 90001" -279143,AA Batteries (4-pack),1,3.84,11/06/19 11:43,"480 Main St, New York City, NY 10001" -279144,20in Monitor,1,109.99,11/17/19 18:09,"86 Highland St, San Francisco, CA 94016" -279145,USB-C Charging Cable,1,11.95,11/05/19 08:13,"281 14th St, San Francisco, CA 94016" -279146,AAA Batteries (4-pack),1,2.99,11/02/19 08:25,"758 Meadow St, Seattle, WA 98101" -279147,Apple Airpods Headphones,1,150,11/26/19 21:20,"606 Jefferson St, Atlanta, GA 30301" -279148,Wired Headphones,1,11.99,11/28/19 15:16,"321 Adams St, Atlanta, GA 30301" -279149,Lightning Charging Cable,1,14.95,11/27/19 03:49,"510 Johnson St, Dallas, TX 75001" -279150,Wired Headphones,1,11.99,11/11/19 12:35,"107 North St, San Francisco, CA 94016" -279151,Wired Headphones,1,11.99,11/25/19 08:03,"20 Adams St, Los Angeles, CA 90001" -279152,Wired Headphones,1,11.99,11/08/19 08:45,"287 Hickory St, Austin, TX 73301" -279153,USB-C Charging Cable,1,11.95,11/25/19 09:52,"12 Lakeview St, Atlanta, GA 30301" -279154,Flatscreen TV,1,300,11/27/19 21:17,"129 Meadow St, Los Angeles, CA 90001" -279155,AAA Batteries (4-pack),2,2.99,11/25/19 11:35,"403 Wilson St, New York City, NY 10001" -279156,Lightning Charging Cable,1,14.95,11/27/19 22:26,"416 Center St, Los Angeles, CA 90001" -279157,USB-C Charging Cable,1,11.95,11/21/19 21:23,"856 Spruce St, Los Angeles, CA 90001" -279158,Flatscreen TV,1,300,11/29/19 19:06,"949 Washington St, Boston, MA 02215" -279159,USB-C Charging Cable,1,11.95,11/17/19 20:10,"991 2nd St, New York City, NY 10001" -279160,iPhone,1,700,11/01/19 10:37,"457 Dogwood St, Seattle, WA 98101" -279161,Google Phone,1,600,11/24/19 10:34,"472 Chestnut St, Portland, ME 04101" -279162,iPhone,1,700,11/27/19 18:22,"776 Lake St, Austin, TX 73301" -279162,Lightning Charging Cable,1,14.95,11/27/19 18:22,"776 Lake St, Austin, TX 73301" -279163,AAA Batteries (4-pack),4,2.99,11/29/19 15:33,"590 Washington St, Boston, MA 02215" -279164,AAA Batteries (4-pack),1,2.99,11/12/19 19:30,"592 Adams St, Atlanta, GA 30301" -279165,AAA Batteries (4-pack),2,2.99,11/08/19 14:44,"89 Willow St, Seattle, WA 98101" -279166,Lightning Charging Cable,1,14.95,11/09/19 21:14,"795 6th St, San Francisco, CA 94016" -279167,Lightning Charging Cable,1,14.95,11/15/19 11:03,"477 Dogwood St, Los Angeles, CA 90001" -279168,USB-C Charging Cable,1,11.95,11/04/19 13:06,"208 West St, Los Angeles, CA 90001" -279169,Bose SoundSport Headphones,1,99.99,11/05/19 11:59,"48 10th St, New York City, NY 10001" -279170,Bose SoundSport Headphones,1,99.99,11/15/19 13:37,"110 Lake St, San Francisco, CA 94016" -279171,USB-C Charging Cable,2,11.95,11/08/19 06:04,"330 12th St, Los Angeles, CA 90001" -279172,AAA Batteries (4-pack),3,2.99,11/02/19 09:26,"782 Jefferson St, San Francisco, CA 94016" -279173,27in 4K Gaming Monitor,1,389.99,11/07/19 12:03,"279 Spruce St, Dallas, TX 75001" -279174,USB-C Charging Cable,1,11.95,11/17/19 20:04,"884 10th St, New York City, NY 10001" -279175,AAA Batteries (4-pack),1,2.99,11/18/19 17:09,"194 South St, Portland, OR 97035" -279175,Apple Airpods Headphones,1,150,11/18/19 17:09,"194 South St, Portland, OR 97035" -279176,27in FHD Monitor,1,149.99,11/07/19 15:11,"321 Lake St, Seattle, WA 98101" -279177,34in Ultrawide Monitor,1,379.99,11/22/19 16:02,"151 5th St, Portland, OR 97035" -279178,AA Batteries (4-pack),1,3.84,11/17/19 18:46,"58 13th St, Boston, MA 02215" -279179,20in Monitor,1,109.99,11/05/19 17:51,"568 Meadow St, San Francisco, CA 94016" -279180,Macbook Pro Laptop,1,1700,11/05/19 08:50,"160 Maple St, Portland, OR 97035" -279181,AA Batteries (4-pack),1,3.84,11/26/19 21:53,"641 Cherry St, Portland, OR 97035" -279182,27in FHD Monitor,1,149.99,11/07/19 11:51,"41 Pine St, San Francisco, CA 94016" -279183,AA Batteries (4-pack),2,3.84,11/05/19 16:14,"619 Forest St, Seattle, WA 98101" -279184,Wired Headphones,1,11.99,11/05/19 22:43,"235 14th St, Los Angeles, CA 90001" -279185,Bose SoundSport Headphones,1,99.99,11/24/19 09:43,"409 Highland St, Atlanta, GA 30301" -279186,27in FHD Monitor,1,149.99,11/25/19 21:01,"597 7th St, Atlanta, GA 30301" -279187,AA Batteries (4-pack),1,3.84,11/17/19 08:48,"980 Lincoln St, Los Angeles, CA 90001" -279188,Flatscreen TV,1,300,11/07/19 15:20,"478 8th St, Austin, TX 73301" -279189,AA Batteries (4-pack),1,3.84,11/21/19 00:30,"322 River St, Los Angeles, CA 90001" -279190,Wired Headphones,1,11.99,11/19/19 07:12,"506 West St, Los Angeles, CA 90001" -279191,Wired Headphones,1,11.99,11/09/19 13:40,"972 Jefferson St, Seattle, WA 98101" -279192,AAA Batteries (4-pack),4,2.99,11/07/19 17:26,"479 Church St, San Francisco, CA 94016" -279193,iPhone,1,700,11/20/19 20:06,"543 Center St, San Francisco, CA 94016" -279194,Bose SoundSport Headphones,1,99.99,11/13/19 13:04,"790 Washington St, San Francisco, CA 94016" -279195,AAA Batteries (4-pack),2,2.99,11/04/19 09:58,"103 Elm St, Boston, MA 02215" -279196,Lightning Charging Cable,1,14.95,11/24/19 02:20,"449 Ridge St, New York City, NY 10001" -279197,27in FHD Monitor,1,149.99,11/12/19 15:47,"920 Main St, Los Angeles, CA 90001" -279198,Apple Airpods Headphones,1,150,11/03/19 19:45,"768 Dogwood St, Los Angeles, CA 90001" -279199,Apple Airpods Headphones,1,150,11/08/19 08:49,"827 Lincoln St, Boston, MA 02215" -279200,Wired Headphones,3,11.99,11/24/19 17:26,"343 Dogwood St, Boston, MA 02215" -279201,Bose SoundSport Headphones,1,99.99,11/15/19 01:30,"526 Main St, San Francisco, CA 94016" -279202,Macbook Pro Laptop,1,1700,11/05/19 17:53,"671 River St, Dallas, TX 75001" -279203,Apple Airpods Headphones,1,150,11/01/19 17:10,"963 Main St, New York City, NY 10001" -279204,Lightning Charging Cable,1,14.95,11/16/19 15:18,"441 Church St, New York City, NY 10001" -279205,Lightning Charging Cable,1,14.95,11/04/19 07:19,"417 Meadow St, Portland, OR 97035" -279206,AAA Batteries (4-pack),1,2.99,11/09/19 19:07,"464 14th St, San Francisco, CA 94016" -279207,AA Batteries (4-pack),1,3.84,11/23/19 21:30,"766 Church St, Seattle, WA 98101" -279208,20in Monitor,1,109.99,11/25/19 08:23,"623 Spruce St, Los Angeles, CA 90001" -279209,AAA Batteries (4-pack),2,2.99,11/10/19 19:51,"883 Lakeview St, San Francisco, CA 94016" -279210,Apple Airpods Headphones,1,150,11/23/19 22:47,"876 Highland St, San Francisco, CA 94016" -279211,USB-C Charging Cable,1,11.95,11/29/19 14:00,"237 5th St, San Francisco, CA 94016" -279212,iPhone,1,700,11/12/19 01:49,"64 Lake St, Seattle, WA 98101" -279213,USB-C Charging Cable,1,11.95,11/13/19 12:47,"851 8th St, New York City, NY 10001" -279214,AA Batteries (4-pack),1,3.84,11/19/19 09:30,"880 Wilson St, San Francisco, CA 94016" -279215,USB-C Charging Cable,1,11.95,11/28/19 13:22,"315 Sunset St, Portland, OR 97035" -279216,20in Monitor,1,109.99,11/22/19 17:18,"975 13th St, San Francisco, CA 94016" -279217,Google Phone,1,600,11/19/19 09:33,"206 Meadow St, San Francisco, CA 94016" -279218,Flatscreen TV,1,300,11/01/19 19:20,"828 Jackson St, Los Angeles, CA 90001" -279219,27in 4K Gaming Monitor,1,389.99,11/22/19 23:06,"222 Walnut St, Austin, TX 73301" -279220,Google Phone,1,600,11/20/19 02:46,"435 2nd St, New York City, NY 10001" -279221,AA Batteries (4-pack),1,3.84,11/23/19 09:06,"404 North St, Atlanta, GA 30301" -279222,Macbook Pro Laptop,1,1700,11/12/19 11:10,"100 Lakeview St, Los Angeles, CA 90001" -279223,AAA Batteries (4-pack),1,2.99,11/05/19 20:04,"2 Main St, San Francisco, CA 94016" -279224,Lightning Charging Cable,1,14.95,11/05/19 09:08,"681 5th St, Boston, MA 02215" -279225,Wired Headphones,1,11.99,11/06/19 21:40,"512 Maple St, Atlanta, GA 30301" -279226,20in Monitor,1,109.99,11/12/19 13:27,"329 West St, Los Angeles, CA 90001" -279227,Apple Airpods Headphones,1,150,11/02/19 14:33,"204 River St, Portland, OR 97035" -279228,Wired Headphones,1,11.99,11/04/19 12:24,"873 4th St, San Francisco, CA 94016" -279229,Macbook Pro Laptop,1,1700,11/12/19 10:07,"439 Jefferson St, San Francisco, CA 94016" -279230,Lightning Charging Cable,1,14.95,11/04/19 23:35,"723 Sunset St, Los Angeles, CA 90001" -279231,AA Batteries (4-pack),1,3.84,11/08/19 15:17,"187 Wilson St, Los Angeles, CA 90001" -279232,Lightning Charging Cable,1,14.95,11/02/19 20:21,"460 Spruce St, Dallas, TX 75001" -279233,USB-C Charging Cable,2,11.95,11/23/19 20:32,"458 Ridge St, Boston, MA 02215" -279234,Bose SoundSport Headphones,1,99.99,11/19/19 12:26,"415 Hickory St, Austin, TX 73301" -279235,27in FHD Monitor,1,149.99,11/16/19 12:27,"168 River St, Portland, OR 97035" -279236,Google Phone,1,600,11/10/19 19:19,"988 North St, New York City, NY 10001" -279237,Wired Headphones,1,11.99,11/17/19 15:49,"646 9th St, Boston, MA 02215" -279238,AA Batteries (4-pack),1,3.84,11/27/19 13:55,"265 Church St, Boston, MA 02215" -279239,Lightning Charging Cable,1,14.95,11/03/19 10:59,"865 12th St, Atlanta, GA 30301" -279240,Apple Airpods Headphones,1,150,11/09/19 16:18,"849 Jefferson St, San Francisco, CA 94016" -279241,Wired Headphones,1,11.99,11/19/19 18:18,"638 Cedar St, Portland, OR 97035" -279242,USB-C Charging Cable,1,11.95,11/25/19 16:49,"635 Sunset St, Los Angeles, CA 90001" -279243,27in FHD Monitor,1,149.99,11/08/19 14:17,"294 2nd St, Los Angeles, CA 90001" -279244,Lightning Charging Cable,1,14.95,11/18/19 12:12,"218 Main St, Atlanta, GA 30301" -279245,AAA Batteries (4-pack),1,2.99,11/01/19 11:25,"554 Church St, San Francisco, CA 94016" -279246,AA Batteries (4-pack),1,3.84,11/10/19 20:41,"867 Center St, Portland, OR 97035" -279247,Bose SoundSport Headphones,1,99.99,11/23/19 17:40,"977 Ridge St, Boston, MA 02215" -279248,Google Phone,1,600,11/06/19 09:11,"467 12th St, San Francisco, CA 94016" -279249,Flatscreen TV,1,300,11/23/19 21:09,"531 8th St, Austin, TX 73301" -279250,AA Batteries (4-pack),1,3.84,11/05/19 10:54,"538 12th St, San Francisco, CA 94016" -279251,Lightning Charging Cable,1,14.95,11/04/19 14:49,"667 14th St, Seattle, WA 98101" -279252,Wired Headphones,1,11.99,11/05/19 12:38,"950 12th St, Atlanta, GA 30301" -279253,27in 4K Gaming Monitor,1,389.99,11/24/19 19:45,"586 8th St, Los Angeles, CA 90001" -279254,AA Batteries (4-pack),1,3.84,11/29/19 07:47,"105 South St, San Francisco, CA 94016" -279255,Google Phone,1,600,11/17/19 21:53,"257 Cedar St, Portland, OR 97035" -279256,Apple Airpods Headphones,1,150,11/11/19 00:01,"116 Wilson St, Atlanta, GA 30301" -279257,20in Monitor,1,109.99,11/17/19 08:24,"27 Madison St, Portland, OR 97035" -279258,iPhone,1,700,11/25/19 12:31,"638 Ridge St, Los Angeles, CA 90001" -279258,Apple Airpods Headphones,1,150,11/25/19 12:31,"638 Ridge St, Los Angeles, CA 90001" -279258,Wired Headphones,1,11.99,11/25/19 12:31,"638 Ridge St, Los Angeles, CA 90001" -279259,27in FHD Monitor,1,149.99,11/14/19 20:56,"312 Madison St, San Francisco, CA 94016" -279260,LG Washing Machine,1,600.0,11/19/19 20:04,"514 Church St, Los Angeles, CA 90001" -279261,USB-C Charging Cable,1,11.95,11/17/19 11:13,"392 Sunset St, San Francisco, CA 94016" -279262,AA Batteries (4-pack),2,3.84,11/08/19 17:48,"586 Park St, Dallas, TX 75001" -279263,Lightning Charging Cable,1,14.95,11/29/19 19:08,"824 10th St, Los Angeles, CA 90001" -279264,Bose SoundSport Headphones,1,99.99,11/27/19 07:07,"756 6th St, Boston, MA 02215" -279265,AA Batteries (4-pack),1,3.84,11/23/19 19:54,"274 Jackson St, Boston, MA 02215" -279266,Wired Headphones,1,11.99,11/21/19 13:58,"616 7th St, New York City, NY 10001" -279267,AAA Batteries (4-pack),1,2.99,11/17/19 18:12,"928 4th St, Los Angeles, CA 90001" -279268,AA Batteries (4-pack),1,3.84,11/18/19 19:29,"491 Maple St, Dallas, TX 75001" -279269,Lightning Charging Cable,1,14.95,11/15/19 13:25,"125 Elm St, Atlanta, GA 30301" -279270,AAA Batteries (4-pack),1,2.99,11/20/19 12:57,"295 Pine St, Atlanta, GA 30301" -279271,Lightning Charging Cable,1,14.95,11/28/19 21:44,"327 11th St, Los Angeles, CA 90001" -279272,20in Monitor,1,109.99,11/21/19 21:15,"300 1st St, Los Angeles, CA 90001" -279273,Bose SoundSport Headphones,1,99.99,11/24/19 17:53,"222 Hickory St, Portland, OR 97035" -279274,AA Batteries (4-pack),1,3.84,11/27/19 17:15,"22 Church St, Dallas, TX 75001" -279274,Wired Headphones,1,11.99,11/27/19 17:15,"22 Church St, Dallas, TX 75001" -279275,Bose SoundSport Headphones,1,99.99,11/03/19 00:00,"135 North St, Los Angeles, CA 90001" -279276,AA Batteries (4-pack),1,3.84,11/19/19 21:02,"25 South St, Boston, MA 02215" -279277,Google Phone,1,600,11/29/19 20:55,"497 6th St, New York City, NY 10001" -279278,Lightning Charging Cable,1,14.95,11/28/19 20:57,"31 Ridge St, Austin, TX 73301" -279279,AAA Batteries (4-pack),1,2.99,11/08/19 16:58,"820 Lincoln St, Austin, TX 73301" -279280,27in 4K Gaming Monitor,1,389.99,11/03/19 22:43,"498 Dogwood St, San Francisco, CA 94016" -279281,34in Ultrawide Monitor,1,379.99,11/20/19 11:14,"703 West St, Los Angeles, CA 90001" -279282,Google Phone,1,600,11/21/19 21:03,"654 Spruce St, San Francisco, CA 94016" -279283,Lightning Charging Cable,1,14.95,11/13/19 19:53,"905 Johnson St, Los Angeles, CA 90001" -279284,Apple Airpods Headphones,1,150,11/28/19 17:54,"232 Sunset St, Austin, TX 73301" -279285,AA Batteries (4-pack),2,3.84,11/23/19 21:19,"866 North St, New York City, NY 10001" -279286,Lightning Charging Cable,1,14.95,11/19/19 17:52,"533 Washington St, New York City, NY 10001" -279287,AA Batteries (4-pack),1,3.84,11/03/19 02:45,"481 Meadow St, Atlanta, GA 30301" -279288,34in Ultrawide Monitor,1,379.99,11/24/19 14:25,"984 10th St, Atlanta, GA 30301" -279288,Wired Headphones,1,11.99,11/24/19 14:25,"984 10th St, Atlanta, GA 30301" -279289,USB-C Charging Cable,1,11.95,11/03/19 22:13,"773 Adams St, New York City, NY 10001" -279290,AA Batteries (4-pack),1,3.84,11/24/19 11:26,"536 Washington St, Austin, TX 73301" -279291,Flatscreen TV,1,300,11/03/19 12:47,"206 Jefferson St, San Francisco, CA 94016" -279292,AA Batteries (4-pack),3,3.84,11/04/19 22:12,"660 Church St, San Francisco, CA 94016" -279293,Lightning Charging Cable,2,14.95,11/20/19 11:43,"326 12th St, New York City, NY 10001" -279294,USB-C Charging Cable,1,11.95,11/21/19 14:40,"455 14th St, San Francisco, CA 94016" -279295,AAA Batteries (4-pack),1,2.99,11/23/19 03:06,"221 5th St, Seattle, WA 98101" -279296,AAA Batteries (4-pack),2,2.99,11/09/19 08:45,"906 Ridge St, San Francisco, CA 94016" -279297,AAA Batteries (4-pack),3,2.99,11/03/19 15:44,"523 Dogwood St, San Francisco, CA 94016" -279298,AA Batteries (4-pack),2,3.84,11/29/19 17:06,"764 Madison St, Los Angeles, CA 90001" -279299,Lightning Charging Cable,1,14.95,11/10/19 22:07,"910 8th St, Austin, TX 73301" -279300,AA Batteries (4-pack),1,3.84,11/12/19 20:53,"870 Jackson St, Boston, MA 02215" -279301,Apple Airpods Headphones,1,150,11/28/19 20:15,"168 Cedar St, New York City, NY 10001" -279302,Macbook Pro Laptop,1,1700,11/11/19 15:02,"708 4th St, New York City, NY 10001" -279303,AA Batteries (4-pack),1,3.84,11/21/19 22:47,"154 12th St, Atlanta, GA 30301" -279304,AAA Batteries (4-pack),1,2.99,11/20/19 16:58,"331 Walnut St, Dallas, TX 75001" -279305,Apple Airpods Headphones,1,150,11/10/19 19:18,"673 Johnson St, New York City, NY 10001" -279306,20in Monitor,1,109.99,11/24/19 18:44,"135 11th St, San Francisco, CA 94016" -279307,AAA Batteries (4-pack),1,2.99,11/29/19 11:49,"592 Willow St, Seattle, WA 98101" -279308,27in FHD Monitor,1,149.99,11/01/19 13:51,"887 6th St, Portland, OR 97035" -279309,USB-C Charging Cable,1,11.95,11/12/19 15:24,"256 6th St, San Francisco, CA 94016" -279310,ThinkPad Laptop,1,999.99,11/02/19 18:19,"118 2nd St, New York City, NY 10001" -279311,Wired Headphones,1,11.99,11/03/19 17:53,"793 12th St, San Francisco, CA 94016" -279312,27in 4K Gaming Monitor,1,389.99,11/17/19 11:46,"775 Meadow St, Seattle, WA 98101" -279313,USB-C Charging Cable,1,11.95,11/11/19 19:04,"301 Forest St, New York City, NY 10001" -279314,Macbook Pro Laptop,1,1700,11/09/19 20:07,"728 Walnut St, Atlanta, GA 30301" -279315,AA Batteries (4-pack),1,3.84,11/02/19 10:06,"273 Hill St, San Francisco, CA 94016" -279316,Wired Headphones,1,11.99,11/21/19 10:56,"644 Main St, San Francisco, CA 94016" -279316,Vareebadd Phone,1,400,11/21/19 10:56,"644 Main St, San Francisco, CA 94016" -279317,Flatscreen TV,1,300,11/02/19 21:57,"153 Wilson St, San Francisco, CA 94016" -,,,,, -279318,Bose SoundSport Headphones,1,99.99,11/14/19 13:31,"892 Spruce St, New York City, NY 10001" -,,,,, -279319,USB-C Charging Cable,1,11.95,11/23/19 22:38,"866 14th St, Atlanta, GA 30301" -279320,Vareebadd Phone,1,400,11/25/19 08:24,"58 West St, New York City, NY 10001" -279320,USB-C Charging Cable,1,11.95,11/25/19 08:24,"58 West St, New York City, NY 10001" -279321,Lightning Charging Cable,1,14.95,11/23/19 20:13,"175 2nd St, Atlanta, GA 30301" -279322,Lightning Charging Cable,1,14.95,11/26/19 18:32,"553 North St, New York City, NY 10001" -279323,27in 4K Gaming Monitor,1,389.99,11/06/19 17:49,"493 11th St, Dallas, TX 75001" -279324,USB-C Charging Cable,1,11.95,11/15/19 21:23,"862 6th St, San Francisco, CA 94016" -279325,Wired Headphones,1,11.99,11/24/19 20:08,"542 7th St, San Francisco, CA 94016" -279326,Bose SoundSport Headphones,1,99.99,11/07/19 21:46,"906 Walnut St, Dallas, TX 75001" -279327,AAA Batteries (4-pack),1,2.99,11/05/19 15:49,"313 Lake St, San Francisco, CA 94016" -279328,AAA Batteries (4-pack),1,2.99,11/22/19 09:43,"718 Cherry St, Dallas, TX 75001" -279329,Google Phone,1,600,11/03/19 21:43,"220 Center St, Boston, MA 02215" -279330,27in 4K Gaming Monitor,1,389.99,11/16/19 18:58,"82 Dogwood St, Los Angeles, CA 90001" -279331,Bose SoundSport Headphones,1,99.99,11/18/19 08:47,"432 Cedar St, San Francisco, CA 94016" -279332,Wired Headphones,1,11.99,11/01/19 14:20,"836 Johnson St, Portland, OR 97035" -279333,AAA Batteries (4-pack),2,2.99,11/18/19 12:51,"713 Maple St, Dallas, TX 75001" -279334,Lightning Charging Cable,1,14.95,11/24/19 21:18,"534 Adams St, Los Angeles, CA 90001" -279335,USB-C Charging Cable,1,11.95,11/21/19 15:49,"141 North St, Boston, MA 02215" -279336,Bose SoundSport Headphones,1,99.99,11/27/19 14:25,"174 Hill St, San Francisco, CA 94016" -279337,27in 4K Gaming Monitor,1,389.99,11/07/19 23:59,"405 Park St, Boston, MA 02215" -279338,Google Phone,1,600,11/22/19 02:45,"876 Dogwood St, Los Angeles, CA 90001" -279338,USB-C Charging Cable,1,11.95,11/22/19 02:45,"876 Dogwood St, Los Angeles, CA 90001" -279339,Vareebadd Phone,1,400,11/08/19 11:21,"62 Willow St, San Francisco, CA 94016" -279340,20in Monitor,1,109.99,11/16/19 10:48,"871 6th St, San Francisco, CA 94016" -279341,Bose SoundSport Headphones,1,99.99,11/06/19 13:06,"159 Forest St, Portland, OR 97035" -279342,AAA Batteries (4-pack),2,2.99,11/27/19 15:48,"202 5th St, Seattle, WA 98101" -279343,ThinkPad Laptop,1,999.99,11/02/19 22:13,"157 7th St, Los Angeles, CA 90001" -279344,27in 4K Gaming Monitor,1,389.99,11/02/19 14:36,"730 Hill St, Atlanta, GA 30301" -279345,Google Phone,1,600,11/27/19 14:51,"241 6th St, Portland, OR 97035" -279346,USB-C Charging Cable,1,11.95,11/08/19 19:00,"836 Main St, Portland, ME 04101" -279347,AAA Batteries (4-pack),1,2.99,11/10/19 00:31,"15 Pine St, New York City, NY 10001" -279348,27in FHD Monitor,1,149.99,11/08/19 20:32,"829 11th St, Seattle, WA 98101" -279349,27in 4K Gaming Monitor,1,389.99,11/05/19 11:08,"864 Wilson St, San Francisco, CA 94016" -279350,USB-C Charging Cable,1,11.95,11/06/19 09:23,"697 Lake St, Dallas, TX 75001" -279351,20in Monitor,1,109.99,11/07/19 13:31,"700 Walnut St, San Francisco, CA 94016" -279352,Apple Airpods Headphones,1,150,11/22/19 01:05,"175 Center St, San Francisco, CA 94016" -279353,AAA Batteries (4-pack),3,2.99,11/03/19 11:43,"535 Cedar St, Portland, ME 04101" -279354,Bose SoundSport Headphones,1,99.99,11/04/19 15:26,"542 Madison St, Seattle, WA 98101" -279355,Lightning Charging Cable,1,14.95,11/24/19 13:13,"177 Madison St, Seattle, WA 98101" -279356,Lightning Charging Cable,1,14.95,11/22/19 15:29,"292 Pine St, Boston, MA 02215" -279357,USB-C Charging Cable,1,11.95,11/02/19 22:04,"857 Hill St, New York City, NY 10001" -279358,AAA Batteries (4-pack),2,2.99,11/02/19 13:54,"122 Wilson St, San Francisco, CA 94016" -279359,AA Batteries (4-pack),1,3.84,11/26/19 13:42,"946 West St, Dallas, TX 75001" -279360,27in FHD Monitor,1,149.99,11/12/19 21:28,"822 Meadow St, Atlanta, GA 30301" -279361,Apple Airpods Headphones,1,150,11/10/19 15:48,"694 Willow St, San Francisco, CA 94016" -279362,Google Phone,1,600,11/08/19 09:57,"303 13th St, Los Angeles, CA 90001" -279363,34in Ultrawide Monitor,1,379.99,11/05/19 12:33,"231 Lake St, Boston, MA 02215" -279364,Flatscreen TV,1,300,11/11/19 18:14,"863 11th St, Boston, MA 02215" -279365,Bose SoundSport Headphones,1,99.99,11/08/19 19:38,"860 Main St, Los Angeles, CA 90001" -279366,Bose SoundSport Headphones,1,99.99,11/28/19 17:54,"723 North St, San Francisco, CA 94016" -279367,Apple Airpods Headphones,1,150,11/05/19 23:31,"66 Forest St, Atlanta, GA 30301" -279368,AAA Batteries (4-pack),2,2.99,11/19/19 16:36,"486 North St, Boston, MA 02215" -279369,iPhone,1,700,11/12/19 23:13,"98 River St, San Francisco, CA 94016" -279370,AAA Batteries (4-pack),3,2.99,11/04/19 12:10,"713 Jefferson St, Boston, MA 02215" -279371,Bose SoundSport Headphones,1,99.99,11/23/19 17:49,"152 Willow St, Atlanta, GA 30301" -279372,USB-C Charging Cable,1,11.95,11/19/19 23:03,"383 Chestnut St, Los Angeles, CA 90001" -279373,USB-C Charging Cable,1,11.95,11/27/19 21:59,"690 2nd St, Portland, ME 04101" -279374,34in Ultrawide Monitor,1,379.99,11/09/19 19:11,"440 Spruce St, Atlanta, GA 30301" -279375,Apple Airpods Headphones,1,150,11/29/19 13:10,"875 Lakeview St, Seattle, WA 98101" -279376,USB-C Charging Cable,1,11.95,11/07/19 21:48,"164 Washington St, Portland, OR 97035" -279377,USB-C Charging Cable,1,11.95,11/03/19 16:48,"832 6th St, Dallas, TX 75001" -279378,Bose SoundSport Headphones,1,99.99,11/01/19 14:10,"709 Highland St, Los Angeles, CA 90001" -279379,Flatscreen TV,1,300,11/11/19 11:34,"92 Maple St, Seattle, WA 98101" -279380,34in Ultrawide Monitor,1,379.99,11/18/19 10:38,"71 Johnson St, Los Angeles, CA 90001" -279381,AA Batteries (4-pack),1,3.84,11/22/19 17:23,"253 Lakeview St, Boston, MA 02215" -279382,AAA Batteries (4-pack),1,2.99,11/07/19 17:03,"774 Wilson St, San Francisco, CA 94016" -279383,27in FHD Monitor,1,149.99,11/04/19 10:24,"380 Center St, New York City, NY 10001" -279384,AA Batteries (4-pack),1,3.84,11/02/19 19:05,"940 Main St, Los Angeles, CA 90001" -279385,Flatscreen TV,1,300,11/22/19 13:01,"589 Elm St, San Francisco, CA 94016" -279386,AAA Batteries (4-pack),2,2.99,11/06/19 13:13,"699 4th St, New York City, NY 10001" -279387,27in FHD Monitor,1,149.99,11/16/19 07:04,"733 Wilson St, San Francisco, CA 94016" -279387,AA Batteries (4-pack),1,3.84,11/16/19 07:04,"733 Wilson St, San Francisco, CA 94016" -279388,AAA Batteries (4-pack),2,2.99,11/04/19 09:15,"579 1st St, San Francisco, CA 94016" -279389,Wired Headphones,1,11.99,11/09/19 16:10,"102 Chestnut St, Boston, MA 02215" -279390,AA Batteries (4-pack),1,3.84,11/24/19 15:10,"275 Madison St, San Francisco, CA 94016" -279391,AA Batteries (4-pack),1,3.84,11/12/19 01:15,"284 Jackson St, Dallas, TX 75001" -279392,USB-C Charging Cable,1,11.95,11/22/19 12:12,"588 Sunset St, San Francisco, CA 94016" -279393,Apple Airpods Headphones,1,150,11/21/19 07:48,"959 Adams St, Atlanta, GA 30301" -279394,ThinkPad Laptop,1,999.99,11/18/19 11:51,"628 14th St, Portland, OR 97035" -279395,Bose SoundSport Headphones,1,99.99,11/22/19 18:50,"707 River St, Los Angeles, CA 90001" -279396,Bose SoundSport Headphones,1,99.99,11/20/19 12:13,"284 Willow St, Portland, OR 97035" -279397,AAA Batteries (4-pack),1,2.99,11/09/19 11:09,"892 Willow St, Dallas, TX 75001" -279398,Apple Airpods Headphones,1,150,11/06/19 18:24,"202 Forest St, San Francisco, CA 94016" -279398,AAA Batteries (4-pack),2,2.99,11/06/19 18:24,"202 Forest St, San Francisco, CA 94016" -279399,iPhone,1,700,11/02/19 18:06,"383 2nd St, San Francisco, CA 94016" -279400,iPhone,1,700,11/18/19 21:09,"395 Center St, Boston, MA 02215" -279401,Wired Headphones,1,11.99,11/19/19 21:02,"365 9th St, Portland, OR 97035" -279402,34in Ultrawide Monitor,1,379.99,11/11/19 05:03,"315 11th St, Boston, MA 02215" -279403,Apple Airpods Headphones,1,150,11/24/19 20:42,"168 7th St, New York City, NY 10001" -279404,iPhone,1,700,11/02/19 00:44,"168 Adams St, New York City, NY 10001" -279405,Wired Headphones,1,11.99,11/03/19 08:42,"266 Ridge St, Boston, MA 02215" -279406,Wired Headphones,1,11.99,11/09/19 11:56,"495 Lake St, Seattle, WA 98101" -279407,USB-C Charging Cable,1,11.95,11/08/19 10:50,"913 Ridge St, San Francisco, CA 94016" -279408,Apple Airpods Headphones,1,150,11/09/19 10:55,"343 North St, Boston, MA 02215" -279409,Wired Headphones,1,11.99,11/08/19 14:59,"560 Center St, San Francisco, CA 94016" -279410,Wired Headphones,1,11.99,11/30/19 22:35,"530 West St, Los Angeles, CA 90001" -279411,27in FHD Monitor,1,149.99,11/01/19 13:56,"585 1st St, San Francisco, CA 94016" -279412,Wired Headphones,1,11.99,11/08/19 14:01,"641 6th St, New York City, NY 10001" -279413,USB-C Charging Cable,1,11.95,11/02/19 17:35,"144 7th St, Boston, MA 02215" -279414,20in Monitor,1,109.99,11/08/19 11:13,"747 Washington St, San Francisco, CA 94016" -279415,AA Batteries (4-pack),1,3.84,11/20/19 19:08,"15 Meadow St, Los Angeles, CA 90001" -279416,Apple Airpods Headphones,1,150,11/08/19 12:32,"97 Sunset St, Los Angeles, CA 90001" -279417,Wired Headphones,1,11.99,11/01/19 12:38,"575 1st St, Dallas, TX 75001" -279418,AAA Batteries (4-pack),1,2.99,11/02/19 15:27,"28 Main St, San Francisco, CA 94016" -279419,Flatscreen TV,1,300,11/21/19 12:57,"71 9th St, Los Angeles, CA 90001" -279420,Flatscreen TV,1,300,11/26/19 23:06,"925 8th St, New York City, NY 10001" -279421,Lightning Charging Cable,1,14.95,11/04/19 12:18,"629 Church St, San Francisco, CA 94016" -279422,Lightning Charging Cable,2,14.95,11/26/19 14:24,"336 Elm St, Portland, OR 97035" -279423,Wired Headphones,2,11.99,11/13/19 19:10,"391 Forest St, San Francisco, CA 94016" -279424,AAA Batteries (4-pack),2,2.99,11/04/19 20:25,"361 Hill St, Austin, TX 73301" -279425,iPhone,1,700,11/19/19 16:55,"269 5th St, San Francisco, CA 94016" -279426,Flatscreen TV,1,300,11/05/19 06:32,"574 14th St, Dallas, TX 75001" -279427,27in FHD Monitor,1,149.99,11/03/19 11:46,"539 Washington St, San Francisco, CA 94016" -279428,USB-C Charging Cable,1,11.95,11/03/19 08:04,"999 Maple St, Los Angeles, CA 90001" -279429,27in FHD Monitor,1,149.99,11/10/19 19:52,"84 14th St, New York City, NY 10001" -279430,AAA Batteries (4-pack),3,2.99,11/30/19 10:12,"352 Main St, Los Angeles, CA 90001" -279431,Wired Headphones,1,11.99,11/01/19 15:15,"737 Lake St, Los Angeles, CA 90001" -279432,AAA Batteries (4-pack),1,2.99,11/02/19 23:36,"540 2nd St, Seattle, WA 98101" -279433,USB-C Charging Cable,1,11.95,11/16/19 17:55,"819 Lincoln St, Atlanta, GA 30301" -279434,USB-C Charging Cable,2,11.95,11/18/19 15:33,"113 River St, San Francisco, CA 94016" -279435,Apple Airpods Headphones,1,150,11/11/19 13:10,"795 Cedar St, San Francisco, CA 94016" -279436,AA Batteries (4-pack),1,3.84,11/11/19 08:07,"220 Madison St, San Francisco, CA 94016" -279437,Macbook Pro Laptop,1,1700,11/13/19 04:19,"212 5th St, Seattle, WA 98101" -279438,Apple Airpods Headphones,1,150,11/24/19 13:51,"216 Lakeview St, Los Angeles, CA 90001" -279439,Wired Headphones,1,11.99,11/27/19 21:15,"725 13th St, Austin, TX 73301" -279440,Lightning Charging Cable,1,14.95,11/08/19 21:21,"262 2nd St, Atlanta, GA 30301" -279441,Flatscreen TV,1,300,11/16/19 12:43,"603 11th St, San Francisco, CA 94016" -279442,AAA Batteries (4-pack),1,2.99,11/18/19 19:09,"438 8th St, New York City, NY 10001" -279443,Bose SoundSport Headphones,1,99.99,11/22/19 17:09,"479 Lincoln St, New York City, NY 10001" -279444,AAA Batteries (4-pack),1,2.99,11/19/19 12:06,"850 North St, San Francisco, CA 94016" -279445,Lightning Charging Cable,1,14.95,11/29/19 18:58,"618 Chestnut St, San Francisco, CA 94016" -279446,Bose SoundSport Headphones,1,99.99,11/30/19 22:15,"782 Washington St, Los Angeles, CA 90001" -279447,USB-C Charging Cable,1,11.95,11/19/19 15:55,"631 Willow St, Seattle, WA 98101" -279448,AAA Batteries (4-pack),2,2.99,11/10/19 15:16,"137 1st St, San Francisco, CA 94016" -279449,AA Batteries (4-pack),2,3.84,11/11/19 16:43,"893 2nd St, Dallas, TX 75001" -279450,Wired Headphones,2,11.99,11/26/19 16:39,"521 Sunset St, Dallas, TX 75001" -279451,iPhone,1,700,11/04/19 17:19,"479 5th St, Boston, MA 02215" -279452,Google Phone,1,600,11/26/19 20:36,"128 9th St, San Francisco, CA 94016" -279453,Lightning Charging Cable,1,14.95,11/12/19 18:54,"851 Jackson St, Portland, OR 97035" -279454,Wired Headphones,1,11.99,11/25/19 00:11,"845 Dogwood St, Portland, ME 04101" -279455,AA Batteries (4-pack),1,3.84,11/02/19 10:02,"854 7th St, New York City, NY 10001" -279456,Lightning Charging Cable,1,14.95,11/11/19 07:49,"772 Center St, San Francisco, CA 94016" -279457,Wired Headphones,1,11.99,11/23/19 19:15,"622 6th St, San Francisco, CA 94016" -279458,Lightning Charging Cable,1,14.95,11/03/19 23:19,"328 1st St, New York City, NY 10001" -279459,Google Phone,1,600,11/08/19 10:33,"25 Pine St, New York City, NY 10001" -279460,Macbook Pro Laptop,1,1700,11/10/19 20:19,"218 14th St, Boston, MA 02215" -279461,34in Ultrawide Monitor,1,379.99,11/08/19 17:03,"880 Walnut St, New York City, NY 10001" -279462,AA Batteries (4-pack),2,3.84,11/12/19 21:34,"56 Jefferson St, San Francisco, CA 94016" -279463,AA Batteries (4-pack),2,3.84,11/11/19 15:13,"184 Main St, Portland, OR 97035" -279464,Apple Airpods Headphones,1,150,11/30/19 16:33,"164 Sunset St, Dallas, TX 75001" -279465,iPhone,1,700,11/28/19 19:52,"174 Dogwood St, San Francisco, CA 94016" -279466,Apple Airpods Headphones,1,150,11/10/19 17:45,"749 Wilson St, Portland, OR 97035" -279467,USB-C Charging Cable,2,11.95,11/18/19 21:19,"525 North St, New York City, NY 10001" -279468,Lightning Charging Cable,1,14.95,11/23/19 10:59,"256 Main St, San Francisco, CA 94016" -279469,USB-C Charging Cable,1,11.95,11/27/19 23:31,"372 11th St, Austin, TX 73301" -279470,AAA Batteries (4-pack),1,2.99,11/24/19 20:25,"682 8th St, San Francisco, CA 94016" -279471,USB-C Charging Cable,2,11.95,11/29/19 11:09,"523 Lake St, New York City, NY 10001" -279472,Bose SoundSport Headphones,1,99.99,11/15/19 19:10,"820 Washington St, Boston, MA 02215" -279473,LG Washing Machine,1,600.0,11/10/19 23:15,"938 Meadow St, Los Angeles, CA 90001" -279474,Google Phone,1,600,11/21/19 10:04,"840 Ridge St, Los Angeles, CA 90001" -279475,iPhone,1,700,11/07/19 22:10,"631 Elm St, Los Angeles, CA 90001" -279475,Apple Airpods Headphones,1,150,11/07/19 22:10,"631 Elm St, Los Angeles, CA 90001" -279476,AA Batteries (4-pack),1,3.84,11/20/19 20:31,"283 Lakeview St, Austin, TX 73301" -279477,AAA Batteries (4-pack),1,2.99,11/14/19 13:05,"615 Elm St, San Francisco, CA 94016" -279478,Lightning Charging Cable,1,14.95,11/11/19 19:50,"999 Johnson St, San Francisco, CA 94016" -279478,USB-C Charging Cable,1,11.95,11/11/19 19:50,"999 Johnson St, San Francisco, CA 94016" -279479,Apple Airpods Headphones,1,150,11/20/19 11:16,"358 Forest St, Seattle, WA 98101" -279480,USB-C Charging Cable,1,11.95,11/07/19 10:24,"613 Pine St, San Francisco, CA 94016" -279481,AAA Batteries (4-pack),2,2.99,11/13/19 13:43,"440 Madison St, Atlanta, GA 30301" -279482,Bose SoundSport Headphones,1,99.99,11/08/19 17:41,"248 Dogwood St, Boston, MA 02215" -279483,iPhone,1,700,11/22/19 15:40,"630 2nd St, Boston, MA 02215" -279484,34in Ultrawide Monitor,1,379.99,11/14/19 15:04,"954 Hill St, Portland, OR 97035" -279485,20in Monitor,1,109.99,11/29/19 15:56,"865 Forest St, Portland, OR 97035" -279486,Macbook Pro Laptop,1,1700,11/25/19 20:25,"200 Hill St, Austin, TX 73301" -279487,27in FHD Monitor,1,149.99,11/26/19 12:11,"600 North St, New York City, NY 10001" -279488,Lightning Charging Cable,1,14.95,11/14/19 22:02,"458 10th St, San Francisco, CA 94016" -279489,27in 4K Gaming Monitor,1,389.99,11/18/19 12:12,"541 Madison St, Los Angeles, CA 90001" -279490,AA Batteries (4-pack),1,3.84,11/09/19 19:15,"224 Lake St, San Francisco, CA 94016" -279491,Apple Airpods Headphones,1,150,11/08/19 00:44,"837 Church St, Seattle, WA 98101" -279492,Lightning Charging Cable,1,14.95,11/25/19 12:09,"801 West St, San Francisco, CA 94016" -279493,Wired Headphones,1,11.99,11/27/19 16:13,"851 Sunset St, San Francisco, CA 94016" -279494,USB-C Charging Cable,1,11.95,11/07/19 18:56,"274 Chestnut St, Austin, TX 73301" -279495,27in FHD Monitor,1,149.99,11/06/19 15:50,"272 Main St, San Francisco, CA 94016" -279496,27in 4K Gaming Monitor,1,389.99,11/10/19 19:05,"173 Highland St, New York City, NY 10001" -279497,Wired Headphones,1,11.99,11/15/19 19:28,"578 Meadow St, Los Angeles, CA 90001" -279498,Apple Airpods Headphones,1,150,11/24/19 17:48,"97 Dogwood St, Austin, TX 73301" -279499,Google Phone,1,600,11/24/19 13:51,"503 Maple St, Boston, MA 02215" -279499,Google Phone,1,600,11/24/19 13:51,"503 Maple St, Boston, MA 02215" -279500,Wired Headphones,1,11.99,11/11/19 15:04,"551 Johnson St, New York City, NY 10001" -279501,AA Batteries (4-pack),1,3.84,11/05/19 19:09,"910 10th St, San Francisco, CA 94016" -279502,AA Batteries (4-pack),1,3.84,11/29/19 20:06,"532 Wilson St, New York City, NY 10001" -279503,USB-C Charging Cable,1,11.95,11/17/19 20:14,"293 Wilson St, Seattle, WA 98101" -279504,Vareebadd Phone,1,400,11/21/19 12:01,"114 Chestnut St, Seattle, WA 98101" -279504,USB-C Charging Cable,1,11.95,11/21/19 12:01,"114 Chestnut St, Seattle, WA 98101" -279505,USB-C Charging Cable,1,11.95,11/13/19 10:14,"89 Lakeview St, Dallas, TX 75001" -279506,Wired Headphones,1,11.99,11/24/19 11:49,"100 River St, San Francisco, CA 94016" -279507,Lightning Charging Cable,1,14.95,11/19/19 11:48,"988 Lakeview St, Boston, MA 02215" -279508,USB-C Charging Cable,1,11.95,11/09/19 22:59,"795 Jackson St, San Francisco, CA 94016" -279509,AAA Batteries (4-pack),1,2.99,11/15/19 20:22,"453 14th St, San Francisco, CA 94016" -279510,Lightning Charging Cable,1,14.95,11/12/19 10:48,"35 Dogwood St, Seattle, WA 98101" -279511,AAA Batteries (4-pack),1,2.99,11/26/19 00:18,"456 Willow St, New York City, NY 10001" -279512,Wired Headphones,1,11.99,11/28/19 04:59,"883 Cherry St, San Francisco, CA 94016" -279513,Apple Airpods Headphones,1,150,11/03/19 21:02,"832 Cedar St, Atlanta, GA 30301" -279514,USB-C Charging Cable,1,11.95,11/24/19 21:22,"721 Spruce St, Los Angeles, CA 90001" -279515,Bose SoundSport Headphones,1,99.99,11/15/19 22:06,"891 2nd St, Los Angeles, CA 90001" -279516,LG Washing Machine,1,600.0,11/27/19 19:53,"748 4th St, San Francisco, CA 94016" -279517,USB-C Charging Cable,1,11.95,11/09/19 00:12,"551 Chestnut St, New York City, NY 10001" -279518,Bose SoundSport Headphones,1,99.99,11/18/19 16:40,"21 Wilson St, Los Angeles, CA 90001" -279519,iPhone,1,700,11/13/19 08:04,"952 10th St, Boston, MA 02215" -279520,Bose SoundSport Headphones,1,99.99,11/08/19 14:51,"135 Spruce St, Boston, MA 02215" -279521,34in Ultrawide Monitor,1,379.99,11/14/19 14:01,"469 14th St, Los Angeles, CA 90001" -279522,Google Phone,1,600,11/24/19 11:07,"843 8th St, Seattle, WA 98101" -279523,Bose SoundSport Headphones,1,99.99,11/11/19 03:20,"169 2nd St, San Francisco, CA 94016" -279524,USB-C Charging Cable,1,11.95,11/16/19 10:48,"7 Main St, Portland, ME 04101" -279525,Apple Airpods Headphones,1,150,11/09/19 15:34,"229 Sunset St, Austin, TX 73301" -279526,Lightning Charging Cable,1,14.95,11/06/19 21:30,"700 Forest St, Los Angeles, CA 90001" -279527,AA Batteries (4-pack),2,3.84,11/16/19 11:45,"732 Meadow St, Los Angeles, CA 90001" -279528,Apple Airpods Headphones,1,150,11/15/19 19:28,"124 Jackson St, Dallas, TX 75001" -279529,Flatscreen TV,1,300,11/22/19 09:50,"426 Spruce St, Los Angeles, CA 90001" -279530,Lightning Charging Cable,1,14.95,11/30/19 19:35,"979 13th St, San Francisco, CA 94016" -279531,AA Batteries (4-pack),3,3.84,11/24/19 19:35,"856 Center St, New York City, NY 10001" -279532,Apple Airpods Headphones,1,150,11/08/19 21:14,"464 Center St, Los Angeles, CA 90001" -279533,AA Batteries (4-pack),1,3.84,11/08/19 18:33,"850 Center St, New York City, NY 10001" -279534,Lightning Charging Cable,1,14.95,11/30/19 19:54,"85 North St, Atlanta, GA 30301" -279535,USB-C Charging Cable,1,11.95,11/22/19 18:24,"311 Jefferson St, Dallas, TX 75001" -279536,Google Phone,1,600,11/14/19 00:21,"509 Church St, Boston, MA 02215" -279536,Wired Headphones,1,11.99,11/14/19 00:21,"509 Church St, Boston, MA 02215" -279537,34in Ultrawide Monitor,1,379.99,11/12/19 18:39,"852 Hill St, Seattle, WA 98101" -279538,27in FHD Monitor,1,149.99,11/11/19 12:59,"915 Spruce St, Boston, MA 02215" -279539,Apple Airpods Headphones,1,150,11/20/19 12:31,"982 Pine St, San Francisco, CA 94016" -279540,iPhone,1,700,11/30/19 15:47,"57 Jefferson St, Boston, MA 02215" -279541,iPhone,1,700,11/22/19 18:45,"474 Wilson St, Los Angeles, CA 90001" -279542,Macbook Pro Laptop,1,1700,11/03/19 07:13,"851 8th St, Los Angeles, CA 90001" -279543,Bose SoundSport Headphones,1,99.99,11/02/19 09:10,"309 Ridge St, Dallas, TX 75001" -,,,,, -279544,Apple Airpods Headphones,1,150,11/08/19 16:27,"594 Chestnut St, Portland, OR 97035" -279545,27in 4K Gaming Monitor,1,389.99,11/10/19 22:05,"629 Ridge St, San Francisco, CA 94016" -279546,Apple Airpods Headphones,1,150,11/08/19 09:42,"267 6th St, San Francisco, CA 94016" -279547,Apple Airpods Headphones,1,150,11/18/19 22:01,"64 Chestnut St, Austin, TX 73301" -279548,27in 4K Gaming Monitor,1,389.99,11/23/19 15:23,"903 Forest St, Seattle, WA 98101" -279549,Lightning Charging Cable,1,14.95,11/14/19 20:15,"988 Cedar St, San Francisco, CA 94016" -279550,AAA Batteries (4-pack),2,2.99,11/10/19 07:58,"116 Hickory St, Boston, MA 02215" -279551,USB-C Charging Cable,1,11.95,11/09/19 10:08,"982 Jefferson St, Boston, MA 02215" -279552,AA Batteries (4-pack),1,3.84,11/11/19 21:42,"176 Lake St, New York City, NY 10001" -279553,AA Batteries (4-pack),3,3.84,11/25/19 08:55,"124 Chestnut St, Los Angeles, CA 90001" -279554,AAA Batteries (4-pack),1,2.99,11/04/19 16:02,"498 Lake St, Seattle, WA 98101" -279555,Wired Headphones,1,11.99,11/24/19 18:44,"252 North St, San Francisco, CA 94016" -279556,Wired Headphones,1,11.99,11/26/19 12:05,"912 Elm St, Seattle, WA 98101" -279557,Wired Headphones,1,11.99,11/23/19 15:01,"448 Maple St, San Francisco, CA 94016" -279558,AAA Batteries (4-pack),1,2.99,11/10/19 06:52,"1 Lincoln St, Los Angeles, CA 90001" -279559,Bose SoundSport Headphones,1,99.99,11/05/19 01:57,"971 Jackson St, Atlanta, GA 30301" -279560,AAA Batteries (4-pack),1,2.99,11/23/19 20:14,"540 Washington St, Portland, OR 97035" -279561,LG Washing Machine,1,600.0,11/01/19 12:31,"206 Meadow St, Boston, MA 02215" -279562,Bose SoundSport Headphones,1,99.99,11/25/19 21:56,"541 Willow St, Boston, MA 02215" -279563,27in 4K Gaming Monitor,1,389.99,11/23/19 04:46,"685 Chestnut St, Atlanta, GA 30301" -279564,AA Batteries (4-pack),1,3.84,11/20/19 20:47,"362 Center St, Boston, MA 02215" -279565,Google Phone,1,600,11/16/19 21:11,"198 8th St, Seattle, WA 98101" -279566,Wired Headphones,2,11.99,11/27/19 20:18,"419 14th St, Boston, MA 02215" -279567,34in Ultrawide Monitor,1,379.99,11/29/19 10:20,"160 Walnut St, Portland, ME 04101" -279568,iPhone,1,700,11/18/19 11:36,"220 Church St, Los Angeles, CA 90001" -279569,Lightning Charging Cable,1,14.95,11/24/19 14:15,"296 River St, Atlanta, GA 30301" -279570,iPhone,1,700,11/22/19 17:33,"939 Park St, Atlanta, GA 30301" -279571,Macbook Pro Laptop,1,1700,11/07/19 01:04,"823 Jackson St, Boston, MA 02215" -279572,Apple Airpods Headphones,1,150,11/06/19 11:53,"928 Highland St, San Francisco, CA 94016" -279573,Lightning Charging Cable,1,14.95,11/19/19 17:04,"453 14th St, Portland, OR 97035" -279573,27in FHD Monitor,1,149.99,11/19/19 17:04,"453 14th St, Portland, OR 97035" -279574,USB-C Charging Cable,2,11.95,11/10/19 10:25,"508 12th St, Boston, MA 02215" -279575,Wired Headphones,1,11.99,11/05/19 11:58,"212 Cherry St, New York City, NY 10001" -279576,34in Ultrawide Monitor,1,379.99,11/06/19 14:56,"958 Lake St, San Francisco, CA 94016" -279577,Bose SoundSport Headphones,1,99.99,11/16/19 09:27,"957 14th St, San Francisco, CA 94016" -279578,34in Ultrawide Monitor,1,379.99,11/10/19 21:03,"928 Hill St, San Francisco, CA 94016" -279579,AAA Batteries (4-pack),1,2.99,11/18/19 11:20,"529 Chestnut St, Dallas, TX 75001" -279580,27in FHD Monitor,1,149.99,11/22/19 16:41,"737 Jefferson St, San Francisco, CA 94016" -279581,AAA Batteries (4-pack),2,2.99,11/04/19 00:33,"718 9th St, Portland, ME 04101" -279582,AA Batteries (4-pack),1,3.84,11/29/19 22:40,"105 Center St, Los Angeles, CA 90001" -279583,AAA Batteries (4-pack),1,2.99,11/28/19 09:03,"757 Maple St, Seattle, WA 98101" -279584,AA Batteries (4-pack),1,3.84,11/15/19 15:07,"469 Madison St, Dallas, TX 75001" -279585,ThinkPad Laptop,1,999.99,11/03/19 18:55,"444 Cedar St, Austin, TX 73301" -279586,Apple Airpods Headphones,1,150,11/01/19 19:20,"80 Park St, Boston, MA 02215" -279587,AA Batteries (4-pack),2,3.84,11/01/19 12:33,"350 Johnson St, Boston, MA 02215" -279588,Macbook Pro Laptop,1,1700,11/19/19 19:44,"825 Washington St, New York City, NY 10001" -279589,Lightning Charging Cable,1,14.95,11/30/19 12:36,"905 Maple St, Portland, OR 97035" -279590,AA Batteries (4-pack),1,3.84,11/05/19 19:03,"298 Elm St, Boston, MA 02215" -279591,USB-C Charging Cable,1,11.95,11/02/19 19:15,"850 Cherry St, Los Angeles, CA 90001" -279592,Wired Headphones,1,11.99,11/26/19 15:11,"933 Dogwood St, San Francisco, CA 94016" -279593,27in FHD Monitor,1,149.99,11/30/19 17:59,"286 8th St, San Francisco, CA 94016" -279594,AA Batteries (4-pack),1,3.84,11/18/19 14:38,"736 12th St, San Francisco, CA 94016" -279595,Google Phone,1,600,11/01/19 07:26,"74 Ridge St, Seattle, WA 98101" -279595,USB-C Charging Cable,1,11.95,11/01/19 07:26,"74 Ridge St, Seattle, WA 98101" -279596,AAA Batteries (4-pack),1,2.99,11/12/19 09:44,"704 4th St, Boston, MA 02215" -279597,USB-C Charging Cable,1,11.95,11/02/19 21:00,"662 2nd St, Los Angeles, CA 90001" -279598,iPhone,1,700,11/04/19 19:36,"831 Washington St, Los Angeles, CA 90001" -279599,AA Batteries (4-pack),1,3.84,11/20/19 22:23,"190 Lakeview St, Los Angeles, CA 90001" -279600,Lightning Charging Cable,1,14.95,11/03/19 20:50,"658 Willow St, New York City, NY 10001" -279601,USB-C Charging Cable,1,11.95,11/12/19 18:16,"956 Meadow St, Los Angeles, CA 90001" -279602,Apple Airpods Headphones,1,150,11/24/19 17:37,"238 Spruce St, Dallas, TX 75001" -279603,AAA Batteries (4-pack),2,2.99,11/07/19 12:54,"963 Madison St, Los Angeles, CA 90001" -279604,20in Monitor,1,109.99,11/17/19 13:48,"353 Park St, Boston, MA 02215" -279605,Apple Airpods Headphones,1,150,11/20/19 12:32,"74 10th St, San Francisco, CA 94016" -279605,USB-C Charging Cable,2,11.95,11/20/19 12:32,"74 10th St, San Francisco, CA 94016" -279606,USB-C Charging Cable,1,11.95,11/08/19 14:41,"920 1st St, Los Angeles, CA 90001" -279607,Flatscreen TV,1,300,11/29/19 16:46,"23 Jefferson St, New York City, NY 10001" -279608,Google Phone,1,600,11/30/19 21:20,"300 Willow St, Dallas, TX 75001" -279609,27in FHD Monitor,1,149.99,11/25/19 19:08,"137 14th St, Dallas, TX 75001" -279610,ThinkPad Laptop,1,999.99,11/13/19 13:00,"196 Ridge St, Boston, MA 02215" -279611,Apple Airpods Headphones,1,150,11/09/19 16:03,"415 Park St, San Francisco, CA 94016" -279612,AAA Batteries (4-pack),1,2.99,11/29/19 09:05,"731 Hickory St, Dallas, TX 75001" -279613,20in Monitor,1,109.99,11/04/19 14:04,"44 Lincoln St, New York City, NY 10001" -279614,AAA Batteries (4-pack),1,2.99,11/10/19 10:08,"749 Dogwood St, Dallas, TX 75001" -279615,iPhone,1,700,11/27/19 16:48,"239 Church St, Dallas, TX 75001" -279616,iPhone,1,700,11/30/19 13:35,"673 13th St, San Francisco, CA 94016" -279617,Wired Headphones,1,11.99,11/20/19 11:50,"586 North St, Seattle, WA 98101" -279618,27in 4K Gaming Monitor,1,389.99,11/22/19 11:51,"78 14th St, New York City, NY 10001" -279619,27in FHD Monitor,1,149.99,11/12/19 12:24,"449 12th St, Los Angeles, CA 90001" -279620,Lightning Charging Cable,1,14.95,11/18/19 15:08,"487 Johnson St, Los Angeles, CA 90001" -279621,Wired Headphones,1,11.99,11/15/19 19:54,"522 Center St, San Francisco, CA 94016" -279622,Lightning Charging Cable,2,14.95,11/06/19 19:16,"810 Main St, Boston, MA 02215" -279623,Apple Airpods Headphones,1,150,11/08/19 13:42,"75 Washington St, Los Angeles, CA 90001" -279624,Wired Headphones,1,11.99,11/24/19 08:22,"779 Madison St, San Francisco, CA 94016" -279625,Bose SoundSport Headphones,1,99.99,11/13/19 16:30,"82 Hickory St, San Francisco, CA 94016" -279626,LG Washing Machine,1,600.0,11/23/19 21:14,"877 14th St, New York City, NY 10001" -279627,Flatscreen TV,1,300,11/28/19 21:10,"88 14th St, Los Angeles, CA 90001" -279628,iPhone,1,700,11/02/19 12:21,"116 Cedar St, Atlanta, GA 30301" -279629,Bose SoundSport Headphones,1,99.99,11/18/19 18:24,"539 12th St, San Francisco, CA 94016" -279630,Wired Headphones,1,11.99,11/30/19 12:52,"346 Park St, San Francisco, CA 94016" -279631,Google Phone,1,600,11/17/19 17:46,"358 Dogwood St, Dallas, TX 75001" -279632,iPhone,1,700,11/26/19 14:05,"484 Hill St, San Francisco, CA 94016" -279632,Lightning Charging Cable,1,14.95,11/26/19 14:05,"484 Hill St, San Francisco, CA 94016" -279633,AAA Batteries (4-pack),1,2.99,11/10/19 14:15,"925 Chestnut St, San Francisco, CA 94016" -279634,Lightning Charging Cable,1,14.95,11/18/19 10:35,"575 1st St, San Francisco, CA 94016" -279635,AAA Batteries (4-pack),1,2.99,11/02/19 23:09,"627 14th St, New York City, NY 10001" -279636,AA Batteries (4-pack),1,3.84,11/05/19 22:37,"48 Jefferson St, Los Angeles, CA 90001" -279637,Flatscreen TV,1,300,11/21/19 13:49,"192 Park St, Dallas, TX 75001" -279638,AAA Batteries (4-pack),2,2.99,11/07/19 18:24,"30 Dogwood St, New York City, NY 10001" -279639,Lightning Charging Cable,1,14.95,11/13/19 15:49,"777 North St, San Francisco, CA 94016" -279640,USB-C Charging Cable,1,11.95,11/02/19 18:47,"518 Cedar St, New York City, NY 10001" -279641,AAA Batteries (4-pack),1,2.99,11/20/19 20:44,"754 Church St, Dallas, TX 75001" -279642,20in Monitor,1,109.99,11/02/19 21:08,"848 Adams St, Austin, TX 73301" -279643,AA Batteries (4-pack),2,3.84,11/10/19 20:13,"855 Main St, San Francisco, CA 94016" -279644,AA Batteries (4-pack),2,3.84,11/13/19 11:26,"304 1st St, Los Angeles, CA 90001" -279645,USB-C Charging Cable,1,11.95,11/19/19 20:44,"30 Spruce St, Los Angeles, CA 90001" -279646,Wired Headphones,2,11.99,11/28/19 08:15,"204 Pine St, San Francisco, CA 94016" -279647,Wired Headphones,1,11.99,11/07/19 17:22,"590 West St, San Francisco, CA 94016" -279648,Lightning Charging Cable,1,14.95,11/12/19 18:56,"646 Church St, Boston, MA 02215" -279649,Lightning Charging Cable,1,14.95,11/23/19 11:33,"668 Main St, Boston, MA 02215" -279650,Vareebadd Phone,1,400,11/17/19 13:57,"80 Maple St, Atlanta, GA 30301" -279651,Lightning Charging Cable,2,14.95,11/23/19 17:39,"944 8th St, San Francisco, CA 94016" -279652,Lightning Charging Cable,1,14.95,11/05/19 14:35,"391 1st St, Boston, MA 02215" -279653,AAA Batteries (4-pack),1,2.99,11/26/19 20:52,"120 North St, Los Angeles, CA 90001" -279654,AAA Batteries (4-pack),1,2.99,11/15/19 12:46,"33 4th St, Dallas, TX 75001" -279655,AA Batteries (4-pack),1,3.84,11/21/19 11:08,"739 Forest St, San Francisco, CA 94016" -279656,Apple Airpods Headphones,1,150,11/11/19 01:23,"912 10th St, Portland, ME 04101" -279657,Wired Headphones,1,11.99,11/10/19 12:45,"240 Washington St, San Francisco, CA 94016" -279658,USB-C Charging Cable,2,11.95,11/05/19 10:17,"492 Spruce St, New York City, NY 10001" -279659,27in 4K Gaming Monitor,1,389.99,11/09/19 18:58,"122 10th St, Los Angeles, CA 90001" -279660,27in 4K Gaming Monitor,1,389.99,11/18/19 16:48,"917 Lake St, Portland, OR 97035" -279661,AAA Batteries (4-pack),2,2.99,11/16/19 07:45,"353 Hickory St, Boston, MA 02215" -279662,Bose SoundSport Headphones,1,99.99,11/19/19 09:36,"805 8th St, San Francisco, CA 94016" -279663,Lightning Charging Cable,1,14.95,11/24/19 00:29,"915 Jefferson St, San Francisco, CA 94016" -279664,27in FHD Monitor,1,149.99,11/06/19 19:48,"394 Forest St, Los Angeles, CA 90001" -279665,Macbook Pro Laptop,1,1700,11/11/19 09:39,"281 Meadow St, San Francisco, CA 94016" -279666,Google Phone,1,600,11/01/19 23:28,"457 Sunset St, Los Angeles, CA 90001" -279667,AAA Batteries (4-pack),1,2.99,11/28/19 15:19,"630 Lake St, Seattle, WA 98101" -279668,iPhone,1,700,11/23/19 17:57,"400 Meadow St, Los Angeles, CA 90001" -279669,Lightning Charging Cable,1,14.95,11/07/19 20:57,"759 Center St, San Francisco, CA 94016" -279670,Lightning Charging Cable,1,14.95,11/07/19 17:47,"881 Washington St, New York City, NY 10001" -279671,Lightning Charging Cable,1,14.95,11/13/19 11:14,"371 Ridge St, San Francisco, CA 94016" -279672,Flatscreen TV,1,300,11/02/19 12:13,"813 Highland St, Portland, OR 97035" -279673,34in Ultrawide Monitor,1,379.99,11/09/19 23:40,"142 Willow St, Atlanta, GA 30301" -279674,AA Batteries (4-pack),1,3.84,11/19/19 11:38,"238 Meadow St, Austin, TX 73301" -279675,Wired Headphones,1,11.99,11/21/19 17:45,"352 8th St, Austin, TX 73301" -279676,AAA Batteries (4-pack),1,2.99,11/14/19 15:35,"409 7th St, New York City, NY 10001" -279677,USB-C Charging Cable,1,11.95,11/22/19 15:17,"43 Elm St, Los Angeles, CA 90001" -279678,Lightning Charging Cable,1,14.95,11/25/19 00:49,"698 2nd St, Dallas, TX 75001" -279679,Lightning Charging Cable,1,14.95,11/08/19 11:26,"44 South St, Dallas, TX 75001" -279680,Google Phone,1,600,11/17/19 13:01,"159 14th St, Portland, OR 97035" -279681,Lightning Charging Cable,1,14.95,11/11/19 18:04,"625 Maple St, San Francisco, CA 94016" -279682,AAA Batteries (4-pack),1,2.99,11/07/19 10:35,"636 Washington St, Austin, TX 73301" -279683,USB-C Charging Cable,1,11.95,11/15/19 14:23,"167 Adams St, San Francisco, CA 94016" -279684,AAA Batteries (4-pack),1,2.99,11/20/19 20:02,"433 Johnson St, San Francisco, CA 94016" -279685,AAA Batteries (4-pack),1,2.99,11/29/19 20:57,"546 6th St, New York City, NY 10001" -279686,iPhone,1,700,11/19/19 12:00,"21 Church St, Austin, TX 73301" -279686,Wired Headphones,1,11.99,11/19/19 12:00,"21 Church St, Austin, TX 73301" -279687,AA Batteries (4-pack),1,3.84,11/19/19 10:48,"919 Ridge St, Boston, MA 02215" -279688,Lightning Charging Cable,1,14.95,11/30/19 11:15,"393 Highland St, San Francisco, CA 94016" -279689,Google Phone,1,600,11/17/19 10:55,"772 10th St, Los Angeles, CA 90001" -279690,Flatscreen TV,1,300,11/15/19 23:49,"240 Spruce St, San Francisco, CA 94016" -279691,AAA Batteries (4-pack),2,2.99,11/10/19 13:06,"534 Spruce St, Seattle, WA 98101" -279692,Apple Airpods Headphones,1,150,11/17/19 20:01,"676 Lake St, Los Angeles, CA 90001" -279693,iPhone,1,700,11/28/19 15:08,"381 Lake St, Los Angeles, CA 90001" -279694,AA Batteries (4-pack),1,3.84,11/07/19 18:15,"984 Adams St, San Francisco, CA 94016" -279695,Lightning Charging Cable,1,14.95,11/11/19 18:36,"103 4th St, Atlanta, GA 30301" -279696,Wired Headphones,1,11.99,11/28/19 11:53,"428 Maple St, Los Angeles, CA 90001" -279697,Apple Airpods Headphones,1,150,11/17/19 20:31,"317 8th St, San Francisco, CA 94016" -279698,USB-C Charging Cable,1,11.95,11/17/19 19:37,"869 Center St, Dallas, TX 75001" -279699,AAA Batteries (4-pack),1,2.99,11/08/19 11:29,"593 Pine St, Dallas, TX 75001" -279700,AAA Batteries (4-pack),1,2.99,11/22/19 11:29,"533 Maple St, Boston, MA 02215" -279701,USB-C Charging Cable,1,11.95,11/05/19 07:36,"58 Elm St, Austin, TX 73301" -279702,Apple Airpods Headphones,1,150,11/27/19 16:40,"474 2nd St, Seattle, WA 98101" -279703,AAA Batteries (4-pack),3,2.99,11/16/19 09:51,"307 Lakeview St, New York City, NY 10001" -279704,Bose SoundSport Headphones,1,99.99,11/11/19 20:22,"186 Lake St, Portland, OR 97035" -279705,20in Monitor,1,109.99,11/26/19 21:56,"163 West St, Seattle, WA 98101" -279706,Lightning Charging Cable,1,14.95,11/16/19 21:45,"228 Elm St, San Francisco, CA 94016" -279706,Macbook Pro Laptop,1,1700,11/16/19 21:45,"228 Elm St, San Francisco, CA 94016" -279707,34in Ultrawide Monitor,1,379.99,11/01/19 23:27,"501 Johnson St, Los Angeles, CA 90001" -279708,Macbook Pro Laptop,1,1700,11/02/19 15:52,"472 Hill St, Los Angeles, CA 90001" -279709,AA Batteries (4-pack),2,3.84,11/23/19 22:05,"747 Madison St, Dallas, TX 75001" -279710,USB-C Charging Cable,1,11.95,11/11/19 15:35,"108 South St, New York City, NY 10001" -279711,iPhone,1,700,11/04/19 06:53,"11 8th St, San Francisco, CA 94016" -279711,Lightning Charging Cable,1,14.95,11/04/19 06:53,"11 8th St, San Francisco, CA 94016" -279711,Apple Airpods Headphones,1,150,11/04/19 06:53,"11 8th St, San Francisco, CA 94016" -279712,USB-C Charging Cable,1,11.95,11/15/19 12:01,"160 14th St, Seattle, WA 98101" -279713,Google Phone,1,600,11/27/19 15:38,"4 7th St, Los Angeles, CA 90001" -279714,34in Ultrawide Monitor,1,379.99,11/06/19 19:43,"951 North St, San Francisco, CA 94016" -279715,ThinkPad Laptop,1,999.99,11/27/19 10:35,"696 South St, Atlanta, GA 30301" -279716,Wired Headphones,1,11.99,11/11/19 16:26,"189 Sunset St, Dallas, TX 75001" -279716,27in 4K Gaming Monitor,1,389.99,11/11/19 16:26,"189 Sunset St, Dallas, TX 75001" -279717,USB-C Charging Cable,1,11.95,11/07/19 07:49,"176 Center St, Los Angeles, CA 90001" -279718,AA Batteries (4-pack),1,3.84,11/04/19 14:00,"871 North St, Boston, MA 02215" -279719,Lightning Charging Cable,3,14.95,11/14/19 18:25,"973 Lakeview St, Dallas, TX 75001" -279719,AA Batteries (4-pack),1,3.84,11/14/19 18:25,"973 Lakeview St, Dallas, TX 75001" -279720,USB-C Charging Cable,1,11.95,11/15/19 19:00,"935 Jackson St, San Francisco, CA 94016" -279721,Apple Airpods Headphones,1,150,11/28/19 23:52,"592 Park St, New York City, NY 10001" -279722,27in 4K Gaming Monitor,1,389.99,11/06/19 09:23,"775 West St, San Francisco, CA 94016" -279723,Bose SoundSport Headphones,1,99.99,11/18/19 21:40,"498 12th St, San Francisco, CA 94016" -279724,Apple Airpods Headphones,1,150,11/19/19 14:46,"341 Cedar St, Austin, TX 73301" -279725,AA Batteries (4-pack),3,3.84,11/05/19 11:08,"656 River St, Portland, OR 97035" -279726,20in Monitor,1,109.99,11/23/19 08:44,"275 Cherry St, New York City, NY 10001" -279727,USB-C Charging Cable,1,11.95,11/22/19 07:43,"748 5th St, San Francisco, CA 94016" -279728,Bose SoundSport Headphones,1,99.99,11/19/19 19:04,"292 Hickory St, San Francisco, CA 94016" -279729,20in Monitor,1,109.99,11/28/19 11:12,"152 Wilson St, San Francisco, CA 94016" -279730,Lightning Charging Cable,1,14.95,11/29/19 10:27,"594 Main St, Austin, TX 73301" -279731,Apple Airpods Headphones,1,150,11/05/19 16:53,"292 13th St, San Francisco, CA 94016" -279732,Flatscreen TV,1,300,11/12/19 06:52,"812 Main St, Boston, MA 02215" -279733,AA Batteries (4-pack),1,3.84,11/15/19 17:09,"147 12th St, Boston, MA 02215" -279734,iPhone,1,700,11/04/19 23:28,"28 1st St, Atlanta, GA 30301" -279735,AA Batteries (4-pack),1,3.84,11/19/19 15:31,"468 Maple St, Seattle, WA 98101" -279736,Bose SoundSport Headphones,1,99.99,11/05/19 17:02,"770 North St, Dallas, TX 75001" -279736,Bose SoundSport Headphones,1,99.99,11/05/19 17:02,"770 North St, Dallas, TX 75001" -279737,Apple Airpods Headphones,1,150,11/12/19 12:03,"701 Highland St, Los Angeles, CA 90001" -279738,20in Monitor,1,109.99,11/13/19 16:27,"701 West St, San Francisco, CA 94016" -279739,Wired Headphones,1,11.99,11/17/19 19:45,"110 North St, Boston, MA 02215" -279740,20in Monitor,1,109.99,11/19/19 18:33,"556 Pine St, Los Angeles, CA 90001" -279741,Lightning Charging Cable,1,14.95,11/18/19 13:41,"315 6th St, Portland, OR 97035" -279742,Lightning Charging Cable,1,14.95,11/14/19 19:09,"672 12th St, New York City, NY 10001" -279743,Wired Headphones,1,11.99,11/01/19 13:58,"866 1st St, Los Angeles, CA 90001" -279744,Wired Headphones,1,11.99,11/19/19 21:50,"9 Pine St, San Francisco, CA 94016" -279745,USB-C Charging Cable,1,11.95,11/24/19 12:41,"968 West St, Los Angeles, CA 90001" -279746,USB-C Charging Cable,2,11.95,11/06/19 18:51,"886 Church St, San Francisco, CA 94016" -279746,Wired Headphones,1,11.99,11/06/19 18:51,"886 Church St, San Francisco, CA 94016" -279747,USB-C Charging Cable,1,11.95,11/09/19 16:29,"653 7th St, Dallas, TX 75001" -279748,27in 4K Gaming Monitor,1,389.99,11/29/19 07:24,"940 Hickory St, San Francisco, CA 94016" -279749,Apple Airpods Headphones,1,150,11/17/19 22:44,"459 Jackson St, Atlanta, GA 30301" -279750,Wired Headphones,1,11.99,11/16/19 14:19,"366 Chestnut St, Atlanta, GA 30301" -279751,Lightning Charging Cable,1,14.95,11/13/19 22:41,"130 Madison St, Portland, ME 04101" -279752,Apple Airpods Headphones,1,150,11/04/19 09:35,"117 4th St, Portland, OR 97035" -279753,AAA Batteries (4-pack),1,2.99,11/02/19 18:22,"394 Elm St, Seattle, WA 98101" -279754,Wired Headphones,1,11.99,11/18/19 10:07,"595 13th St, San Francisco, CA 94016" -279755,AA Batteries (4-pack),1,3.84,11/06/19 22:55,"898 West St, New York City, NY 10001" -279756,USB-C Charging Cable,1,11.95,11/07/19 18:51,"8 Jackson St, San Francisco, CA 94016" -279757,AA Batteries (4-pack),1,3.84,11/11/19 18:04,"92 10th St, Seattle, WA 98101" -279758,AAA Batteries (4-pack),4,2.99,11/10/19 21:23,"365 Elm St, Boston, MA 02215" -279759,Bose SoundSport Headphones,1,99.99,11/10/19 09:36,"64 Johnson St, Boston, MA 02215" -279760,Lightning Charging Cable,1,14.95,11/29/19 18:34,"755 Jackson St, San Francisco, CA 94016" -279761,AAA Batteries (4-pack),2,2.99,11/14/19 14:21,"922 4th St, Seattle, WA 98101" -279762,Lightning Charging Cable,2,14.95,11/01/19 18:36,"939 5th St, Portland, OR 97035" -279763,AAA Batteries (4-pack),1,2.99,11/27/19 13:12,"522 Pine St, San Francisco, CA 94016" -279763,AAA Batteries (4-pack),1,2.99,11/27/19 13:12,"522 Pine St, San Francisco, CA 94016" -279764,Google Phone,1,600,11/28/19 19:18,"570 Sunset St, Los Angeles, CA 90001" -279765,AAA Batteries (4-pack),1,2.99,11/13/19 18:27,"954 Lakeview St, Los Angeles, CA 90001" -279766,AAA Batteries (4-pack),1,2.99,11/27/19 10:32,"144 5th St, Dallas, TX 75001" -279767,Lightning Charging Cable,1,14.95,11/26/19 10:41,"278 4th St, Dallas, TX 75001" -279768,USB-C Charging Cable,1,11.95,11/16/19 16:35,"574 Meadow St, San Francisco, CA 94016" -279769,Apple Airpods Headphones,1,150,11/22/19 11:53,"256 Highland St, Los Angeles, CA 90001" -279770,27in 4K Gaming Monitor,1,389.99,11/30/19 20:05,"1 Main St, New York City, NY 10001" -279771,ThinkPad Laptop,1,999.99,11/04/19 00:07,"388 14th St, San Francisco, CA 94016" -279772,iPhone,1,700,11/23/19 08:00,"71 2nd St, San Francisco, CA 94016" -279773,AAA Batteries (4-pack),2,2.99,11/01/19 11:33,"523 Lake St, Los Angeles, CA 90001" -279774,Lightning Charging Cable,1,14.95,11/16/19 13:06,"281 Cedar St, Dallas, TX 75001" -279775,Lightning Charging Cable,1,14.95,11/24/19 20:46,"647 Elm St, Atlanta, GA 30301" -279776,USB-C Charging Cable,1,11.95,11/22/19 19:29,"849 Cedar St, Atlanta, GA 30301" -279777,27in 4K Gaming Monitor,1,389.99,11/18/19 10:06,"161 Main St, Seattle, WA 98101" -279778,USB-C Charging Cable,1,11.95,11/02/19 17:25,"180 Dogwood St, Austin, TX 73301" -279779,Bose SoundSport Headphones,1,99.99,11/19/19 16:20,"186 North St, Dallas, TX 75001" -279780,Apple Airpods Headphones,1,150,11/13/19 11:49,"93 Meadow St, Los Angeles, CA 90001" -279781,Lightning Charging Cable,1,14.95,11/27/19 19:04,"273 Adams St, Los Angeles, CA 90001" -279782,27in FHD Monitor,1,149.99,11/10/19 12:37,"320 11th St, Austin, TX 73301" -279783,Bose SoundSport Headphones,1,99.99,11/26/19 23:09,"390 Wilson St, San Francisco, CA 94016" -279784,Lightning Charging Cable,1,14.95,11/02/19 12:29,"998 North St, San Francisco, CA 94016" -279785,Lightning Charging Cable,1,14.95,11/24/19 22:08,"121 11th St, Los Angeles, CA 90001" -279786,AA Batteries (4-pack),1,3.84,11/13/19 08:54,"941 Maple St, San Francisco, CA 94016" -279787,Apple Airpods Headphones,1,150,11/04/19 17:13,"359 Willow St, Los Angeles, CA 90001" -279788,27in FHD Monitor,1,149.99,11/29/19 07:43,"478 13th St, Austin, TX 73301" -279789,USB-C Charging Cable,1,11.95,11/03/19 14:25,"211 Lakeview St, New York City, NY 10001" -279790,27in FHD Monitor,1,149.99,11/22/19 09:48,"581 6th St, New York City, NY 10001" -279791,USB-C Charging Cable,1,11.95,11/25/19 16:31,"68 Hill St, San Francisco, CA 94016" -279792,iPhone,1,700,11/06/19 06:09,"727 Center St, Los Angeles, CA 90001" -279793,iPhone,1,700,11/07/19 08:44,"297 11th St, San Francisco, CA 94016" -279794,Lightning Charging Cable,1,14.95,11/30/19 09:22,"262 River St, Los Angeles, CA 90001" -279795,Apple Airpods Headphones,1,150,11/23/19 15:45,"867 River St, New York City, NY 10001" -279796,27in FHD Monitor,1,149.99,11/06/19 21:50,"677 14th St, Atlanta, GA 30301" -279797,AA Batteries (4-pack),1,3.84,11/30/19 13:23,"352 Lakeview St, New York City, NY 10001" -279798,Wired Headphones,1,11.99,11/08/19 18:10,"109 9th St, San Francisco, CA 94016" -279799,Wired Headphones,1,11.99,11/13/19 20:03,"506 Johnson St, Dallas, TX 75001" -279800,Macbook Pro Laptop,1,1700,11/12/19 12:11,"474 6th St, San Francisco, CA 94016" -279801,Google Phone,1,600,11/23/19 09:02,"581 Chestnut St, Dallas, TX 75001" -279802,Bose SoundSport Headphones,1,99.99,11/15/19 01:53,"561 Hickory St, Austin, TX 73301" -279803,34in Ultrawide Monitor,1,379.99,11/07/19 08:19,"44 Church St, San Francisco, CA 94016" -279804,AAA Batteries (4-pack),1,2.99,11/09/19 11:00,"495 Hill St, Dallas, TX 75001" -279805,AAA Batteries (4-pack),1,2.99,11/14/19 09:39,"423 Johnson St, Boston, MA 02215" -279806,27in 4K Gaming Monitor,1,389.99,11/07/19 13:25,"821 Forest St, Dallas, TX 75001" -279807,ThinkPad Laptop,1,999.99,11/25/19 13:59,"286 Hickory St, Los Angeles, CA 90001" -279808,AA Batteries (4-pack),1,3.84,11/18/19 20:08,"767 2nd St, Los Angeles, CA 90001" -279809,34in Ultrawide Monitor,1,379.99,11/25/19 09:23,"254 Church St, San Francisco, CA 94016" -279810,AA Batteries (4-pack),1,3.84,11/14/19 20:30,"574 Ridge St, San Francisco, CA 94016" -279811,27in 4K Gaming Monitor,1,389.99,11/28/19 18:53,"239 Main St, Dallas, TX 75001" -279812,34in Ultrawide Monitor,1,379.99,11/16/19 18:09,"386 12th St, Atlanta, GA 30301" -279813,AAA Batteries (4-pack),1,2.99,11/05/19 18:30,"667 13th St, Boston, MA 02215" -279814,Apple Airpods Headphones,1,150,11/08/19 15:13,"631 Wilson St, Los Angeles, CA 90001" -279815,USB-C Charging Cable,1,11.95,11/20/19 11:41,"543 Hickory St, San Francisco, CA 94016" -279816,34in Ultrawide Monitor,1,379.99,11/25/19 18:05,"878 Sunset St, Dallas, TX 75001" -279817,ThinkPad Laptop,1,999.99,11/10/19 14:20,"278 Forest St, New York City, NY 10001" -279818,AA Batteries (4-pack),3,3.84,11/13/19 12:14,"951 2nd St, San Francisco, CA 94016" -279819,Wired Headphones,1,11.99,11/06/19 11:05,"3 Forest St, New York City, NY 10001" -279820,34in Ultrawide Monitor,1,379.99,11/08/19 11:46,"101 Main St, New York City, NY 10001" -279821,27in 4K Gaming Monitor,1,389.99,11/24/19 12:14,"679 Cedar St, Dallas, TX 75001" -279822,AA Batteries (4-pack),1,3.84,11/16/19 14:08,"619 Highland St, San Francisco, CA 94016" -279823,AAA Batteries (4-pack),1,2.99,11/06/19 12:10,"824 Wilson St, Dallas, TX 75001" -279824,27in 4K Gaming Monitor,1,389.99,11/15/19 17:29,"162 13th St, Los Angeles, CA 90001" -279825,USB-C Charging Cable,1,11.95,11/30/19 22:50,"756 Forest St, Los Angeles, CA 90001" -279826,Apple Airpods Headphones,1,150,11/14/19 15:00,"477 Dogwood St, Austin, TX 73301" -279827,Apple Airpods Headphones,2,150,11/15/19 10:37,"573 7th St, New York City, NY 10001" -279827,AA Batteries (4-pack),1,3.84,11/15/19 10:37,"573 7th St, New York City, NY 10001" -279828,34in Ultrawide Monitor,1,379.99,11/30/19 21:50,"374 Dogwood St, Portland, OR 97035" -279829,Google Phone,1,600,11/19/19 17:15,"509 Lake St, New York City, NY 10001" -279830,AAA Batteries (4-pack),2,2.99,11/29/19 18:46,"564 Chestnut St, Austin, TX 73301" -279831,AAA Batteries (4-pack),1,2.99,11/12/19 23:22,"180 Willow St, San Francisco, CA 94016" -279832,20in Monitor,1,109.99,11/19/19 11:38,"172 9th St, Portland, OR 97035" -279833,iPhone,1,700,11/28/19 18:30,"179 4th St, Portland, OR 97035" -279834,AAA Batteries (4-pack),2,2.99,11/20/19 01:59,"607 Lincoln St, Los Angeles, CA 90001" -279835,AA Batteries (4-pack),2,3.84,11/10/19 09:04,"771 2nd St, San Francisco, CA 94016" -279836,Bose SoundSport Headphones,1,99.99,11/09/19 23:16,"742 Center St, Atlanta, GA 30301" -279836,AAA Batteries (4-pack),1,2.99,11/09/19 23:16,"742 Center St, Atlanta, GA 30301" -279837,USB-C Charging Cable,1,11.95,11/02/19 10:41,"427 Ridge St, Austin, TX 73301" -279838,iPhone,1,700,11/08/19 08:36,"383 Madison St, New York City, NY 10001" -279839,Lightning Charging Cable,3,14.95,11/03/19 13:44,"685 Meadow St, Los Angeles, CA 90001" -279840,Bose SoundSport Headphones,1,99.99,11/17/19 18:35,"309 Cedar St, Los Angeles, CA 90001" -279841,AAA Batteries (4-pack),2,2.99,11/27/19 11:58,"184 Jackson St, Seattle, WA 98101" -279842,Apple Airpods Headphones,1,150,11/12/19 20:01,"488 Maple St, Seattle, WA 98101" -279843,Apple Airpods Headphones,1,150,11/21/19 06:13,"842 Park St, Atlanta, GA 30301" -279844,27in 4K Gaming Monitor,1,389.99,11/06/19 19:26,"802 5th St, New York City, NY 10001" -279845,Apple Airpods Headphones,1,150,11/22/19 15:14,"587 Lakeview St, Seattle, WA 98101" -279846,Apple Airpods Headphones,1,150,11/25/19 07:57,"745 Ridge St, Seattle, WA 98101" -279847,Apple Airpods Headphones,1,150,11/17/19 10:24,"942 Spruce St, Boston, MA 02215" -279848,USB-C Charging Cable,1,11.95,11/12/19 07:20,"420 Ridge St, Portland, OR 97035" -279849,Wired Headphones,1,11.99,11/24/19 02:50,"53 10th St, Atlanta, GA 30301" -279850,Bose SoundSport Headphones,1,99.99,11/14/19 19:30,"603 Center St, Los Angeles, CA 90001" -279851,Bose SoundSport Headphones,1,99.99,11/16/19 00:45,"173 1st St, Boston, MA 02215" -279852,AAA Batteries (4-pack),1,2.99,11/18/19 14:09,"567 1st St, Atlanta, GA 30301" -279853,Bose SoundSport Headphones,1,99.99,11/07/19 17:59,"336 Adams St, Austin, TX 73301" -279854,34in Ultrawide Monitor,1,379.99,11/28/19 17:20,"117 7th St, Portland, OR 97035" -279855,Wired Headphones,1,11.99,11/10/19 12:41,"986 South St, San Francisco, CA 94016" -279856,USB-C Charging Cable,1,11.95,11/10/19 13:23,"994 Jackson St, Atlanta, GA 30301" -279857,Lightning Charging Cable,1,14.95,11/15/19 17:35,"97 West St, San Francisco, CA 94016" -279858,AAA Batteries (4-pack),1,2.99,11/28/19 06:58,"508 6th St, New York City, NY 10001" -279859,AAA Batteries (4-pack),1,2.99,11/07/19 02:45,"746 2nd St, San Francisco, CA 94016" -279860,AA Batteries (4-pack),1,3.84,11/17/19 22:57,"23 West St, Boston, MA 02215" -279861,Google Phone,1,600,11/05/19 22:55,"332 Willow St, New York City, NY 10001" -279861,USB-C Charging Cable,1,11.95,11/05/19 22:55,"332 Willow St, New York City, NY 10001" -279862,AAA Batteries (4-pack),3,2.99,11/24/19 13:01,"156 River St, San Francisco, CA 94016" -279862,ThinkPad Laptop,1,999.99,11/24/19 13:01,"156 River St, San Francisco, CA 94016" -279863,Google Phone,1,600,11/17/19 15:47,"196 4th St, Boston, MA 02215" -279864,Bose SoundSport Headphones,1,99.99,11/18/19 15:27,"185 Walnut St, New York City, NY 10001" -279865,AAA Batteries (4-pack),1,2.99,11/18/19 23:55,"553 12th St, Portland, OR 97035" -279866,Lightning Charging Cable,1,14.95,11/12/19 11:55,"673 North St, San Francisco, CA 94016" -279867,27in FHD Monitor,1,149.99,11/20/19 15:58,"585 River St, Portland, OR 97035" -279868,AA Batteries (4-pack),3,3.84,11/26/19 21:41,"893 Hill St, San Francisco, CA 94016" -279869,Wired Headphones,1,11.99,11/16/19 10:59,"184 Johnson St, New York City, NY 10001" -279870,USB-C Charging Cable,1,11.95,11/08/19 19:06,"282 Elm St, New York City, NY 10001" -279871,AA Batteries (4-pack),2,3.84,11/06/19 22:04,"600 West St, Seattle, WA 98101" -279872,Lightning Charging Cable,1,14.95,11/18/19 12:50,"334 1st St, Portland, OR 97035" -279873,AA Batteries (4-pack),1,3.84,11/18/19 14:03,"719 Center St, Austin, TX 73301" -279874,AA Batteries (4-pack),2,3.84,11/01/19 19:50,"166 Elm St, Los Angeles, CA 90001" -279874,Wired Headphones,1,11.99,11/01/19 19:50,"166 Elm St, Los Angeles, CA 90001" -279875,27in 4K Gaming Monitor,1,389.99,11/16/19 23:11,"847 Elm St, New York City, NY 10001" -279876,USB-C Charging Cable,1,11.95,11/18/19 18:09,"679 Meadow St, New York City, NY 10001" -279877,Bose SoundSport Headphones,1,99.99,11/10/19 20:09,"97 Ridge St, Dallas, TX 75001" -279878,Apple Airpods Headphones,1,150,11/24/19 21:08,"229 9th St, Austin, TX 73301" -279879,20in Monitor,1,109.99,11/21/19 16:57,"940 Cherry St, San Francisco, CA 94016" -279880,Bose SoundSport Headphones,1,99.99,11/19/19 14:36,"972 5th St, Seattle, WA 98101" -279881,Lightning Charging Cable,1,14.95,11/23/19 20:33,"670 2nd St, San Francisco, CA 94016" -279882,Lightning Charging Cable,1,14.95,11/08/19 20:07,"569 Park St, Portland, OR 97035" -279883,20in Monitor,1,109.99,11/21/19 00:20,"35 Hill St, Los Angeles, CA 90001" -279883,USB-C Charging Cable,1,11.95,11/21/19 00:20,"35 Hill St, Los Angeles, CA 90001" -279884,Bose SoundSport Headphones,1,99.99,11/22/19 11:32,"347 North St, Los Angeles, CA 90001" -279885,Macbook Pro Laptop,1,1700,11/26/19 12:19,"244 Highland St, San Francisco, CA 94016" -279886,Apple Airpods Headphones,1,150,11/07/19 08:53,"717 Walnut St, San Francisco, CA 94016" -279887,Flatscreen TV,1,300,11/24/19 09:00,"654 Chestnut St, Atlanta, GA 30301" -279888,Wired Headphones,1,11.99,11/19/19 10:28,"45 Washington St, Dallas, TX 75001" -279889,Bose SoundSport Headphones,1,99.99,11/18/19 19:35,"499 8th St, Atlanta, GA 30301" -279889,Bose SoundSport Headphones,1,99.99,11/18/19 19:35,"499 8th St, Atlanta, GA 30301" -279890,AAA Batteries (4-pack),2,2.99,11/19/19 09:23,"299 6th St, New York City, NY 10001" -279891,AAA Batteries (4-pack),2,2.99,11/20/19 17:35,"222 Lake St, San Francisco, CA 94016" -279892,AAA Batteries (4-pack),2,2.99,11/23/19 10:13,"333 Willow St, San Francisco, CA 94016" -279893,Google Phone,1,600,11/23/19 21:00,"226 Elm St, San Francisco, CA 94016" -279893,USB-C Charging Cable,1,11.95,11/23/19 21:00,"226 Elm St, San Francisco, CA 94016" -279894,Wired Headphones,1,11.99,11/27/19 23:27,"152 Willow St, San Francisco, CA 94016" -279895,Lightning Charging Cable,1,14.95,11/04/19 21:06,"195 Chestnut St, Los Angeles, CA 90001" -279896,AAA Batteries (4-pack),1,2.99,11/03/19 23:24,"936 Meadow St, Los Angeles, CA 90001" -279897,Google Phone,1,600,11/24/19 13:36,"827 Willow St, Atlanta, GA 30301" -279898,Lightning Charging Cable,1,14.95,11/05/19 22:02,"637 Cherry St, San Francisco, CA 94016" -279899,Lightning Charging Cable,1,14.95,11/23/19 15:09,"6 Cedar St, Austin, TX 73301" -279900,AAA Batteries (4-pack),1,2.99,11/21/19 04:48,"951 2nd St, San Francisco, CA 94016" -279901,34in Ultrawide Monitor,1,379.99,11/25/19 12:42,"603 Hill St, Atlanta, GA 30301" -279902,ThinkPad Laptop,1,999.99,11/23/19 14:19,"518 5th St, Atlanta, GA 30301" -279903,AA Batteries (4-pack),2,3.84,11/24/19 21:29,"970 9th St, Boston, MA 02215" -279904,AA Batteries (4-pack),2,3.84,11/14/19 02:12,"741 Lincoln St, Portland, OR 97035" -279905,AA Batteries (4-pack),1,3.84,11/12/19 13:16,"551 Pine St, Los Angeles, CA 90001" -279906,AA Batteries (4-pack),1,3.84,11/27/19 02:23,"957 Jefferson St, San Francisco, CA 94016" -279907,USB-C Charging Cable,1,11.95,11/08/19 22:29,"563 Ridge St, San Francisco, CA 94016" -279908,Apple Airpods Headphones,1,150,11/23/19 06:24,"526 Johnson St, Dallas, TX 75001" -279909,Wired Headphones,1,11.99,11/23/19 17:37,"355 Main St, Seattle, WA 98101" -279910,USB-C Charging Cable,1,11.95,11/07/19 11:01,"233 Main St, San Francisco, CA 94016" -279911,AA Batteries (4-pack),1,3.84,11/26/19 16:54,"983 Ridge St, Atlanta, GA 30301" -279912,LG Washing Machine,1,600.0,11/27/19 08:45,"886 14th St, Portland, ME 04101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -279913,27in 4K Gaming Monitor,1,389.99,11/11/19 13:01,"223 Elm St, Los Angeles, CA 90001" -279914,USB-C Charging Cable,1,11.95,11/22/19 15:22,"706 Cedar St, Austin, TX 73301" -279915,Flatscreen TV,1,300,11/24/19 21:15,"945 Church St, Boston, MA 02215" -279916,Lightning Charging Cable,1,14.95,11/28/19 10:34,"549 Cedar St, San Francisco, CA 94016" -279917,Apple Airpods Headphones,1,150,11/27/19 11:13,"822 North St, New York City, NY 10001" -279918,AA Batteries (4-pack),2,3.84,11/29/19 15:24,"926 6th St, New York City, NY 10001" -279919,AA Batteries (4-pack),2,3.84,11/20/19 21:58,"615 Spruce St, Los Angeles, CA 90001" -279920,AA Batteries (4-pack),3,3.84,11/26/19 21:38,"803 10th St, Dallas, TX 75001" -279921,AA Batteries (4-pack),2,3.84,11/27/19 19:36,"492 River St, Atlanta, GA 30301" -279922,AAA Batteries (4-pack),1,2.99,11/15/19 17:39,"178 2nd St, Boston, MA 02215" -279923,AA Batteries (4-pack),2,3.84,11/26/19 14:09,"526 12th St, Atlanta, GA 30301" -279924,Flatscreen TV,1,300,11/13/19 23:13,"720 Johnson St, San Francisco, CA 94016" -279925,Wired Headphones,1,11.99,11/23/19 17:19,"303 Wilson St, Atlanta, GA 30301" -279926,Wired Headphones,2,11.99,11/20/19 21:34,"622 Dogwood St, Portland, OR 97035" -279927,iPhone,1,700,11/03/19 08:10,"925 5th St, San Francisco, CA 94016" -279928,AA Batteries (4-pack),2,3.84,11/08/19 22:20,"348 Chestnut St, Dallas, TX 75001" -279929,AAA Batteries (4-pack),1,2.99,11/21/19 21:46,"908 Madison St, San Francisco, CA 94016" -279930,Apple Airpods Headphones,1,150,11/17/19 16:51,"115 Hill St, Boston, MA 02215" -279931,USB-C Charging Cable,1,11.95,11/14/19 13:38,"153 Washington St, Boston, MA 02215" -279932,Apple Airpods Headphones,1,150,11/10/19 20:53,"851 Meadow St, San Francisco, CA 94016" -279933,AAA Batteries (4-pack),1,2.99,11/18/19 14:21,"756 Adams St, Atlanta, GA 30301" -279934,AAA Batteries (4-pack),1,2.99,11/16/19 14:40,"105 Maple St, Portland, OR 97035" -279935,AA Batteries (4-pack),1,3.84,11/03/19 20:34,"931 Church St, San Francisco, CA 94016" -279936,Apple Airpods Headphones,1,150,11/04/19 13:31,"918 Ridge St, New York City, NY 10001" -279937,AA Batteries (4-pack),1,3.84,11/02/19 16:36,"847 Center St, San Francisco, CA 94016" -279938,Apple Airpods Headphones,1,150,11/21/19 10:28,"701 North St, Portland, ME 04101" -279939,Wired Headphones,1,11.99,11/05/19 09:47,"95 12th St, New York City, NY 10001" -279940,Bose SoundSport Headphones,1,99.99,11/02/19 23:59,"578 South St, Dallas, TX 75001" -279941,Lightning Charging Cable,1,14.95,11/30/19 10:31,"626 Meadow St, New York City, NY 10001" -279942,27in 4K Gaming Monitor,1,389.99,11/30/19 20:36,"676 Wilson St, Los Angeles, CA 90001" -279943,AAA Batteries (4-pack),1,2.99,11/21/19 10:43,"877 Washington St, San Francisco, CA 94016" -279944,Flatscreen TV,1,300,11/09/19 05:38,"305 Church St, New York City, NY 10001" -279945,Lightning Charging Cable,1,14.95,11/17/19 17:24,"869 12th St, Boston, MA 02215" -279946,USB-C Charging Cable,1,11.95,11/03/19 11:01,"618 Lake St, Austin, TX 73301" -279947,AAA Batteries (4-pack),2,2.99,11/19/19 11:12,"267 Walnut St, Atlanta, GA 30301" -279948,AA Batteries (4-pack),2,3.84,11/07/19 16:13,"421 Washington St, Dallas, TX 75001" -279949,Wired Headphones,2,11.99,11/01/19 09:30,"13 Forest St, Boston, MA 02215" -279950,Apple Airpods Headphones,1,150,11/06/19 10:03,"95 Washington St, Seattle, WA 98101" -279951,Wired Headphones,1,11.99,11/04/19 02:54,"864 Sunset St, Portland, OR 97035" -279952,Bose SoundSport Headphones,1,99.99,11/13/19 08:27,"810 8th St, Seattle, WA 98101" -279952,27in FHD Monitor,1,149.99,11/13/19 08:27,"810 8th St, Seattle, WA 98101" -279953,34in Ultrawide Monitor,1,379.99,11/18/19 13:01,"106 Hill St, Boston, MA 02215" -279954,AA Batteries (4-pack),1,3.84,11/04/19 20:34,"95 West St, Atlanta, GA 30301" -279955,Bose SoundSport Headphones,1,99.99,11/13/19 11:19,"975 Cedar St, Atlanta, GA 30301" -279956,AAA Batteries (4-pack),3,2.99,11/02/19 12:11,"848 North St, Los Angeles, CA 90001" -279957,Wired Headphones,1,11.99,11/11/19 14:14,"360 6th St, Seattle, WA 98101" -279958,USB-C Charging Cable,1,11.95,11/06/19 10:42,"596 Park St, San Francisco, CA 94016" -279959,Lightning Charging Cable,1,14.95,11/07/19 20:33,"746 River St, San Francisco, CA 94016" -279960,Google Phone,1,600,11/27/19 13:12,"951 10th St, Seattle, WA 98101" -279961,Macbook Pro Laptop,1,1700,11/01/19 13:43,"752 8th St, Boston, MA 02215" -279962,iPhone,1,700,11/25/19 11:21,"251 Sunset St, New York City, NY 10001" -279963,USB-C Charging Cable,1,11.95,11/09/19 20:18,"471 Elm St, New York City, NY 10001" -279964,Lightning Charging Cable,1,14.95,11/09/19 08:25,"838 9th St, Dallas, TX 75001" -279965,USB-C Charging Cable,1,11.95,11/08/19 19:27,"509 Forest St, Portland, OR 97035" -279966,AA Batteries (4-pack),1,3.84,11/17/19 16:27,"391 Madison St, New York City, NY 10001" -279967,27in FHD Monitor,1,149.99,11/03/19 16:20,"686 Lincoln St, Atlanta, GA 30301" -279968,Wired Headphones,1,11.99,11/22/19 00:17,"585 Pine St, Austin, TX 73301" -279969,AA Batteries (4-pack),1,3.84,11/09/19 22:02,"572 Elm St, Los Angeles, CA 90001" -279970,20in Monitor,1,109.99,11/02/19 08:50,"549 Chestnut St, Boston, MA 02215" -279971,AAA Batteries (4-pack),1,2.99,11/08/19 20:30,"202 Lakeview St, Dallas, TX 75001" -279972,AAA Batteries (4-pack),1,2.99,11/04/19 12:33,"196 West St, Dallas, TX 75001" -279973,AA Batteries (4-pack),1,3.84,11/29/19 10:39,"644 Hill St, San Francisco, CA 94016" -279974,iPhone,1,700,11/11/19 08:20,"300 Maple St, San Francisco, CA 94016" -279974,Wired Headphones,1,11.99,11/11/19 08:20,"300 Maple St, San Francisco, CA 94016" -279975,AA Batteries (4-pack),1,3.84,11/09/19 12:14,"721 Lake St, San Francisco, CA 94016" -279976,AAA Batteries (4-pack),1,2.99,11/18/19 18:26,"160 1st St, San Francisco, CA 94016" -279977,AA Batteries (4-pack),1,3.84,11/11/19 20:51,"674 13th St, San Francisco, CA 94016" -279978,AA Batteries (4-pack),1,3.84,11/19/19 10:22,"122 Maple St, Atlanta, GA 30301" -279979,USB-C Charging Cable,1,11.95,11/15/19 16:27,"987 Highland St, Atlanta, GA 30301" -279980,34in Ultrawide Monitor,1,379.99,11/24/19 19:19,"564 Jefferson St, Seattle, WA 98101" -279981,Google Phone,1,600,11/14/19 21:38,"291 Maple St, Los Angeles, CA 90001" -279982,Bose SoundSport Headphones,1,99.99,12/01/19 04:07,"174 Sunset St, Boston, MA 02215" -279983,AA Batteries (4-pack),4,3.84,11/24/19 16:48,"792 Lake St, Portland, OR 97035" -279984,Macbook Pro Laptop,1,1700,11/22/19 19:00,"338 7th St, New York City, NY 10001" -279985,20in Monitor,1,109.99,11/26/19 15:09,"54 1st St, Seattle, WA 98101" -279986,Lightning Charging Cable,1,14.95,11/14/19 16:49,"596 Wilson St, Seattle, WA 98101" -279987,Wired Headphones,1,11.99,11/17/19 12:44,"335 Lakeview St, Austin, TX 73301" -279988,Google Phone,1,600,11/30/19 15:48,"251 10th St, Atlanta, GA 30301" -279988,Bose SoundSport Headphones,1,99.99,11/30/19 15:48,"251 10th St, Atlanta, GA 30301" -279988,Wired Headphones,1,11.99,11/30/19 15:48,"251 10th St, Atlanta, GA 30301" -279989,Apple Airpods Headphones,1,150,11/08/19 16:33,"681 Walnut St, New York City, NY 10001" -279990,AA Batteries (4-pack),2,3.84,11/03/19 19:53,"838 West St, Los Angeles, CA 90001" -279991,USB-C Charging Cable,1,11.95,11/03/19 13:26,"612 14th St, San Francisco, CA 94016" -279992,34in Ultrawide Monitor,1,379.99,11/02/19 00:01,"721 8th St, San Francisco, CA 94016" -279993,ThinkPad Laptop,1,999.99,11/13/19 18:31,"231 14th St, San Francisco, CA 94016" -279994,Apple Airpods Headphones,1,150,11/16/19 19:25,"583 Sunset St, Atlanta, GA 30301" -279995,Bose SoundSport Headphones,1,99.99,11/01/19 11:25,"695 Lakeview St, San Francisco, CA 94016" -279996,Lightning Charging Cable,1,14.95,11/03/19 12:10,"771 Spruce St, Boston, MA 02215" -279997,Lightning Charging Cable,1,14.95,11/01/19 16:26,"298 Lincoln St, San Francisco, CA 94016" -279998,Lightning Charging Cable,1,14.95,11/19/19 17:35,"887 Jackson St, Seattle, WA 98101" -279999,iPhone,1,700,11/16/19 15:06,"695 13th St, Boston, MA 02215" -280000,AA Batteries (4-pack),1,3.84,11/05/19 18:30,"917 Hill St, San Francisco, CA 94016" -280001,ThinkPad Laptop,1,999.99,11/07/19 18:21,"225 13th St, Austin, TX 73301" -280002,20in Monitor,1,109.99,11/27/19 16:46,"276 Lake St, Seattle, WA 98101" -280003,Wired Headphones,1,11.99,11/15/19 12:34,"15 Main St, San Francisco, CA 94016" -280004,AA Batteries (4-pack),1,3.84,11/01/19 21:41,"684 1st St, Austin, TX 73301" -280005,USB-C Charging Cable,1,11.95,11/28/19 19:42,"160 Church St, Los Angeles, CA 90001" -280006,Google Phone,1,600,11/14/19 11:24,"720 Meadow St, Los Angeles, CA 90001" -280007,Google Phone,1,600,11/30/19 18:49,"798 Lakeview St, Boston, MA 02215" -280008,Lightning Charging Cable,1,14.95,11/18/19 11:40,"245 4th St, Los Angeles, CA 90001" -280009,Lightning Charging Cable,1,14.95,11/20/19 13:23,"192 Pine St, Austin, TX 73301" -280010,Wired Headphones,1,11.99,11/27/19 23:17,"598 Main St, San Francisco, CA 94016" -280011,iPhone,1,700,11/24/19 06:08,"153 6th St, Los Angeles, CA 90001" -280012,AAA Batteries (4-pack),1,2.99,11/21/19 18:27,"955 Lakeview St, Austin, TX 73301" -280013,Wired Headphones,1,11.99,11/23/19 19:25,"824 River St, Los Angeles, CA 90001" -280014,Wired Headphones,1,11.99,11/09/19 02:26,"508 Washington St, Portland, ME 04101" -280015,27in FHD Monitor,1,149.99,11/19/19 17:02,"242 West St, Dallas, TX 75001" -280016,ThinkPad Laptop,1,999.99,11/05/19 14:10,"432 West St, San Francisco, CA 94016" -280017,27in 4K Gaming Monitor,1,389.99,11/06/19 09:28,"373 Forest St, New York City, NY 10001" -280018,Apple Airpods Headphones,1,150,11/17/19 02:50,"259 12th St, New York City, NY 10001" -280019,AA Batteries (4-pack),1,3.84,11/08/19 09:08,"982 1st St, New York City, NY 10001" -280020,Lightning Charging Cable,1,14.95,11/30/19 00:00,"95 Center St, Dallas, TX 75001" -280021,iPhone,1,700,11/10/19 14:50,"578 Church St, Seattle, WA 98101" -280022,Lightning Charging Cable,1,14.95,11/11/19 10:26,"261 5th St, Boston, MA 02215" -280023,USB-C Charging Cable,1,11.95,11/09/19 11:03,"440 1st St, San Francisco, CA 94016" -280024,27in FHD Monitor,1,149.99,11/01/19 21:14,"61 6th St, San Francisco, CA 94016" -280025,AAA Batteries (4-pack),3,2.99,11/05/19 17:02,"328 4th St, Boston, MA 02215" -280026,AA Batteries (4-pack),1,3.84,11/06/19 11:21,"142 7th St, Portland, OR 97035" -280027,Apple Airpods Headphones,1,150,11/18/19 01:46,"519 West St, Los Angeles, CA 90001" -280028,27in 4K Gaming Monitor,1,389.99,11/30/19 15:57,"233 Church St, New York City, NY 10001" -280029,Flatscreen TV,1,300,11/20/19 20:06,"446 Sunset St, Seattle, WA 98101" -280030,AAA Batteries (4-pack),1,2.99,11/07/19 10:29,"929 Church St, Portland, OR 97035" -280031,Macbook Pro Laptop,1,1700,11/13/19 22:27,"304 1st St, San Francisco, CA 94016" -280032,ThinkPad Laptop,1,999.99,11/08/19 23:48,"905 Center St, San Francisco, CA 94016" -280033,Apple Airpods Headphones,1,150,11/25/19 23:21,"593 Ridge St, Boston, MA 02215" -280034,34in Ultrawide Monitor,1,379.99,11/28/19 23:10,"324 Lakeview St, New York City, NY 10001" -280035,AAA Batteries (4-pack),1,2.99,11/14/19 20:45,"351 7th St, New York City, NY 10001" -280036,USB-C Charging Cable,1,11.95,11/08/19 14:20,"799 Adams St, Dallas, TX 75001" -280037,AA Batteries (4-pack),2,3.84,11/18/19 14:02,"830 Spruce St, San Francisco, CA 94016" -280038,Wired Headphones,1,11.99,11/10/19 10:05,"316 Adams St, Austin, TX 73301" -280039,USB-C Charging Cable,1,11.95,11/14/19 03:34,"145 Main St, San Francisco, CA 94016" -280040,Wired Headphones,1,11.99,11/16/19 14:11,"461 11th St, Boston, MA 02215" -280041,27in 4K Gaming Monitor,1,389.99,11/16/19 11:17,"186 Johnson St, Los Angeles, CA 90001" -280042,Bose SoundSport Headphones,1,99.99,11/18/19 09:51,"510 6th St, Los Angeles, CA 90001" -280043,USB-C Charging Cable,1,11.95,11/17/19 17:01,"131 1st St, San Francisco, CA 94016" -280044,USB-C Charging Cable,1,11.95,11/19/19 21:30,"344 West St, Atlanta, GA 30301" -280045,ThinkPad Laptop,1,999.99,11/21/19 15:36,"958 Lincoln St, San Francisco, CA 94016" -280046,Apple Airpods Headphones,1,150,11/01/19 19:27,"996 Park St, Atlanta, GA 30301" -280047,Macbook Pro Laptop,1,1700,11/14/19 20:32,"154 Hill St, New York City, NY 10001" -280048,Wired Headphones,1,11.99,11/18/19 17:06,"889 11th St, San Francisco, CA 94016" -280049,Wired Headphones,1,11.99,11/16/19 21:16,"703 8th St, New York City, NY 10001" -280050,AA Batteries (4-pack),1,3.84,11/28/19 11:20,"475 Adams St, Dallas, TX 75001" -280051,Wired Headphones,1,11.99,11/16/19 10:41,"952 West St, Portland, OR 97035" -280052,Bose SoundSport Headphones,1,99.99,11/06/19 19:14,"286 Forest St, San Francisco, CA 94016" -280053,Vareebadd Phone,1,400,11/27/19 00:32,"825 Johnson St, San Francisco, CA 94016" -280053,USB-C Charging Cable,1,11.95,11/27/19 00:32,"825 Johnson St, San Francisco, CA 94016" -280054,Wired Headphones,1,11.99,11/24/19 19:52,"740 West St, San Francisco, CA 94016" -280055,iPhone,1,700,11/18/19 08:43,"353 Hill St, New York City, NY 10001" -280055,Lightning Charging Cable,1,14.95,11/18/19 08:43,"353 Hill St, New York City, NY 10001" -280056,Apple Airpods Headphones,1,150,11/08/19 19:35,"552 10th St, Atlanta, GA 30301" -280057,Wired Headphones,1,11.99,11/27/19 17:00,"793 Highland St, Atlanta, GA 30301" -280058,Macbook Pro Laptop,1,1700,11/14/19 20:00,"225 Meadow St, Los Angeles, CA 90001" -280059,AA Batteries (4-pack),6,3.84,11/29/19 14:44,"534 Walnut St, San Francisco, CA 94016" -280060,27in FHD Monitor,1,149.99,11/27/19 21:37,"112 Hill St, Los Angeles, CA 90001" -280061,Macbook Pro Laptop,1,1700,11/15/19 18:07,"753 Main St, Los Angeles, CA 90001" -280062,AAA Batteries (4-pack),2,2.99,11/13/19 11:23,"862 1st St, New York City, NY 10001" -280063,USB-C Charging Cable,1,11.95,11/18/19 17:42,"482 Jackson St, San Francisco, CA 94016" -280064,Wired Headphones,1,11.99,11/12/19 09:39,"168 Hill St, New York City, NY 10001" -280065,Bose SoundSport Headphones,1,99.99,11/17/19 12:39,"110 1st St, San Francisco, CA 94016" -280066,Lightning Charging Cable,1,14.95,11/22/19 11:46,"5 Wilson St, Austin, TX 73301" -280067,USB-C Charging Cable,1,11.95,11/09/19 16:28,"707 River St, Los Angeles, CA 90001" -280068,AAA Batteries (4-pack),1,2.99,11/22/19 12:32,"612 Cherry St, Atlanta, GA 30301" -280069,AA Batteries (4-pack),1,3.84,11/14/19 09:41,"823 12th St, Atlanta, GA 30301" -280070,20in Monitor,1,109.99,11/16/19 16:54,"776 Washington St, New York City, NY 10001" -280071,Bose SoundSport Headphones,1,99.99,11/24/19 07:38,"654 14th St, Portland, OR 97035" -280072,27in 4K Gaming Monitor,1,389.99,11/17/19 22:42,"681 Church St, Seattle, WA 98101" -280073,iPhone,1,700,11/08/19 19:01,"43 13th St, Austin, TX 73301" -280074,Google Phone,1,600,11/07/19 05:54,"156 Adams St, Dallas, TX 75001" -280075,AA Batteries (4-pack),1,3.84,11/15/19 18:31,"4 Center St, Seattle, WA 98101" -280076,USB-C Charging Cable,1,11.95,11/24/19 20:21,"50 Hickory St, Dallas, TX 75001" -280077,ThinkPad Laptop,1,999.99,11/18/19 04:12,"931 Johnson St, Boston, MA 02215" -280078,Macbook Pro Laptop,1,1700,11/17/19 14:41,"571 Sunset St, Seattle, WA 98101" -280079,20in Monitor,1,109.99,11/21/19 20:49,"829 Johnson St, Los Angeles, CA 90001" -280080,Macbook Pro Laptop,1,1700,11/19/19 12:49,"250 11th St, San Francisco, CA 94016" -280081,USB-C Charging Cable,1,11.95,11/06/19 13:33,"319 Lakeview St, Dallas, TX 75001" -280082,34in Ultrawide Monitor,1,379.99,11/15/19 10:04,"901 West St, Los Angeles, CA 90001" -280083,USB-C Charging Cable,1,11.95,11/23/19 23:24,"262 Wilson St, Seattle, WA 98101" -280084,USB-C Charging Cable,1,11.95,11/12/19 08:57,"636 5th St, San Francisco, CA 94016" -280085,Bose SoundSport Headphones,1,99.99,11/13/19 07:59,"887 13th St, New York City, NY 10001" -280086,LG Washing Machine,1,600.0,11/15/19 11:51,"592 2nd St, Boston, MA 02215" -280087,Bose SoundSport Headphones,1,99.99,11/11/19 01:27,"512 Adams St, San Francisco, CA 94016" -280088,Lightning Charging Cable,1,14.95,11/19/19 06:04,"776 Spruce St, Boston, MA 02215" -280089,USB-C Charging Cable,1,11.95,11/17/19 15:57,"40 Spruce St, San Francisco, CA 94016" -280090,USB-C Charging Cable,1,11.95,11/14/19 11:32,"345 8th St, San Francisco, CA 94016" -280091,Bose SoundSport Headphones,1,99.99,11/27/19 17:20,"715 Spruce St, New York City, NY 10001" -280092,AA Batteries (4-pack),1,3.84,11/12/19 00:06,"447 13th St, San Francisco, CA 94016" -280093,20in Monitor,1,109.99,11/26/19 18:28,"786 Sunset St, Austin, TX 73301" -280094,AA Batteries (4-pack),1,3.84,11/14/19 11:10,"588 2nd St, San Francisco, CA 94016" -280095,Macbook Pro Laptop,1,1700,11/02/19 15:43,"84 Highland St, San Francisco, CA 94016" -280096,AAA Batteries (4-pack),3,2.99,11/01/19 18:30,"606 Lincoln St, Boston, MA 02215" -280097,20in Monitor,1,109.99,11/16/19 21:51,"929 Highland St, Dallas, TX 75001" -280098,Lightning Charging Cable,1,14.95,11/03/19 17:19,"283 10th St, San Francisco, CA 94016" -280099,AA Batteries (4-pack),1,3.84,11/24/19 15:39,"628 Wilson St, San Francisco, CA 94016" -280100,Lightning Charging Cable,1,14.95,11/01/19 20:50,"552 Chestnut St, San Francisco, CA 94016" -280101,Bose SoundSport Headphones,1,99.99,11/20/19 10:43,"786 Willow St, Atlanta, GA 30301" -280102,Apple Airpods Headphones,1,150,11/19/19 21:47,"618 Church St, Portland, OR 97035" -280103,27in FHD Monitor,1,149.99,11/01/19 12:21,"976 Elm St, San Francisco, CA 94016" -280104,AA Batteries (4-pack),1,3.84,11/16/19 23:05,"618 Willow St, Austin, TX 73301" -280105,AA Batteries (4-pack),1,3.84,11/10/19 18:18,"704 Highland St, Los Angeles, CA 90001" -280106,27in FHD Monitor,1,149.99,11/22/19 00:24,"58 Forest St, Boston, MA 02215" -280107,Flatscreen TV,1,300,11/05/19 18:12,"132 Elm St, San Francisco, CA 94016" -280108,ThinkPad Laptop,1,999.99,11/11/19 12:00,"765 Church St, Seattle, WA 98101" -280109,AAA Batteries (4-pack),1,2.99,11/27/19 20:49,"741 8th St, Dallas, TX 75001" -280110,Wired Headphones,1,11.99,11/27/19 10:14,"95 Johnson St, Seattle, WA 98101" -280111,AA Batteries (4-pack),2,3.84,11/01/19 12:38,"604 Main St, San Francisco, CA 94016" -280112,27in FHD Monitor,1,149.99,11/09/19 14:17,"691 9th St, Atlanta, GA 30301" -280113,AAA Batteries (4-pack),1,2.99,11/17/19 08:42,"894 Hickory St, Seattle, WA 98101" -280114,20in Monitor,1,109.99,11/15/19 00:14,"755 Maple St, Los Angeles, CA 90001" -280115,Lightning Charging Cable,2,14.95,11/29/19 11:42,"994 2nd St, Dallas, TX 75001" -280116,Wired Headphones,1,11.99,11/10/19 20:52,"626 12th St, Boston, MA 02215" -280117,34in Ultrawide Monitor,1,379.99,11/14/19 18:55,"771 4th St, Seattle, WA 98101" -280118,AAA Batteries (4-pack),1,2.99,11/27/19 15:14,"58 Pine St, Atlanta, GA 30301" -280119,27in FHD Monitor,1,149.99,11/22/19 08:30,"821 Lake St, Los Angeles, CA 90001" -280120,AAA Batteries (4-pack),1,2.99,11/17/19 19:43,"917 Main St, Atlanta, GA 30301" -280121,AA Batteries (4-pack),3,3.84,11/13/19 11:40,"38 Hill St, New York City, NY 10001" -280122,USB-C Charging Cable,1,11.95,11/17/19 10:59,"767 Meadow St, San Francisco, CA 94016" -280123,AAA Batteries (4-pack),1,2.99,11/21/19 00:22,"182 Cedar St, Boston, MA 02215" -280124,Lightning Charging Cable,1,14.95,11/24/19 15:07,"52 2nd St, San Francisco, CA 94016" -280125,Wired Headphones,1,11.99,11/21/19 09:47,"153 Pine St, New York City, NY 10001" -280126,Lightning Charging Cable,1,14.95,11/10/19 14:26,"54 Hill St, New York City, NY 10001" -280127,27in 4K Gaming Monitor,1,389.99,11/09/19 02:42,"806 Hickory St, Portland, ME 04101" -280128,Wired Headphones,1,11.99,11/07/19 20:34,"46 7th St, Atlanta, GA 30301" -280129,USB-C Charging Cable,1,11.95,11/22/19 21:33,"637 8th St, San Francisco, CA 94016" -280130,Apple Airpods Headphones,1,150,11/10/19 13:45,"638 Hill St, Atlanta, GA 30301" -280131,iPhone,1,700,11/12/19 22:40,"859 Church St, Boston, MA 02215" -280132,USB-C Charging Cable,1,11.95,11/30/19 11:35,"611 Wilson St, Boston, MA 02215" -280133,AAA Batteries (4-pack),2,2.99,11/30/19 22:58,"529 Forest St, Dallas, TX 75001" -280134,Wired Headphones,1,11.99,11/29/19 20:06,"860 10th St, Los Angeles, CA 90001" -280135,34in Ultrawide Monitor,1,379.99,11/27/19 16:21,"985 Walnut St, Los Angeles, CA 90001" -280136,AAA Batteries (4-pack),1,2.99,11/30/19 22:31,"99 Sunset St, Atlanta, GA 30301" -280137,Bose SoundSport Headphones,1,99.99,11/29/19 17:00,"470 10th St, San Francisco, CA 94016" -280138,Lightning Charging Cable,2,14.95,11/16/19 16:04,"341 River St, Seattle, WA 98101" -280139,Apple Airpods Headphones,1,150,11/02/19 01:00,"672 Lincoln St, Boston, MA 02215" -280140,34in Ultrawide Monitor,1,379.99,11/14/19 11:28,"520 Jefferson St, Boston, MA 02215" -280141,Flatscreen TV,1,300,11/28/19 09:48,"647 Cedar St, New York City, NY 10001" -280142,iPhone,1,700,11/02/19 15:12,"620 5th St, Los Angeles, CA 90001" -280142,Lightning Charging Cable,1,14.95,11/02/19 15:12,"620 5th St, Los Angeles, CA 90001" -280143,Wired Headphones,1,11.99,11/15/19 12:04,"620 River St, Atlanta, GA 30301" -280144,AA Batteries (4-pack),3,3.84,11/18/19 13:29,"504 Wilson St, Los Angeles, CA 90001" -280145,Wired Headphones,1,11.99,11/10/19 14:03,"85 Hill St, Dallas, TX 75001" -280146,AA Batteries (4-pack),2,3.84,11/21/19 01:12,"621 Ridge St, Seattle, WA 98101" -280147,Wired Headphones,1,11.99,11/20/19 17:03,"270 North St, San Francisco, CA 94016" -280148,Lightning Charging Cable,1,14.95,11/10/19 12:33,"346 Main St, Boston, MA 02215" -280149,27in 4K Gaming Monitor,1,389.99,11/20/19 09:55,"893 River St, Portland, OR 97035" -280150,AA Batteries (4-pack),1,3.84,11/27/19 18:50,"800 Willow St, New York City, NY 10001" -280151,20in Monitor,1,109.99,11/27/19 13:57,"940 Meadow St, Portland, OR 97035" -280152,Wired Headphones,1,11.99,11/05/19 13:17,"626 Lakeview St, Seattle, WA 98101" -280153,AA Batteries (4-pack),1,3.84,11/22/19 00:34,"11 Spruce St, Los Angeles, CA 90001" -280154,AAA Batteries (4-pack),2,2.99,11/12/19 22:26,"513 Adams St, Boston, MA 02215" -280155,34in Ultrawide Monitor,1,379.99,11/23/19 15:29,"134 2nd St, Portland, OR 97035" -280156,USB-C Charging Cable,1,11.95,11/12/19 19:55,"760 11th St, San Francisco, CA 94016" -280157,USB-C Charging Cable,1,11.95,11/08/19 23:23,"545 1st St, Austin, TX 73301" -280158,Vareebadd Phone,1,400,11/19/19 17:42,"374 13th St, Los Angeles, CA 90001" -280159,Wired Headphones,1,11.99,11/16/19 13:19,"622 Lake St, Los Angeles, CA 90001" -280160,27in 4K Gaming Monitor,1,389.99,11/18/19 14:21,"429 14th St, Los Angeles, CA 90001" -280161,Google Phone,1,600,11/10/19 14:57,"841 Willow St, Dallas, TX 75001" -280162,LG Washing Machine,1,600.0,11/22/19 13:38,"517 11th St, San Francisco, CA 94016" -280163,Apple Airpods Headphones,1,150,11/17/19 21:58,"13 Dogwood St, Boston, MA 02215" -280164,AAA Batteries (4-pack),6,2.99,11/07/19 18:28,"963 Main St, Los Angeles, CA 90001" -280165,Apple Airpods Headphones,1,150,11/12/19 07:53,"100 Jackson St, San Francisco, CA 94016" -280166,Lightning Charging Cable,1,14.95,11/18/19 20:52,"880 Walnut St, Austin, TX 73301" -280167,Lightning Charging Cable,1,14.95,11/05/19 10:47,"684 10th St, Los Angeles, CA 90001" -280168,34in Ultrawide Monitor,1,379.99,11/06/19 15:50,"73 Madison St, San Francisco, CA 94016" -280169,USB-C Charging Cable,1,11.95,11/08/19 18:12,"743 Spruce St, New York City, NY 10001" -280170,Google Phone,1,600,11/03/19 17:45,"374 Elm St, Los Angeles, CA 90001" -280171,AAA Batteries (4-pack),3,2.99,11/22/19 14:15,"80 West St, Los Angeles, CA 90001" -280172,LG Dryer,1,600.0,11/14/19 20:15,"341 Washington St, Boston, MA 02215" -280173,AA Batteries (4-pack),1,3.84,11/08/19 12:09,"508 10th St, Dallas, TX 75001" -280174,Apple Airpods Headphones,1,150,11/14/19 17:11,"616 Chestnut St, Atlanta, GA 30301" -280175,Lightning Charging Cable,1,14.95,11/24/19 09:01,"110 4th St, San Francisco, CA 94016" -280176,27in 4K Gaming Monitor,1,389.99,11/05/19 19:56,"286 Walnut St, Atlanta, GA 30301" -280177,Macbook Pro Laptop,1,1700,11/13/19 20:26,"767 Park St, San Francisco, CA 94016" -280178,AA Batteries (4-pack),1,3.84,11/11/19 18:27,"473 Lincoln St, Los Angeles, CA 90001" -280179,Wired Headphones,1,11.99,11/15/19 11:25,"151 13th St, San Francisco, CA 94016" -280180,Macbook Pro Laptop,1,1700,11/19/19 18:42,"263 Hickory St, Atlanta, GA 30301" -280181,AA Batteries (4-pack),2,3.84,11/01/19 22:59,"329 13th St, New York City, NY 10001" -280182,Wired Headphones,1,11.99,11/11/19 19:13,"996 4th St, Seattle, WA 98101" -280183,Apple Airpods Headphones,1,150,11/06/19 17:55,"298 Chestnut St, Boston, MA 02215" -280184,34in Ultrawide Monitor,1,379.99,11/22/19 20:29,"607 Highland St, Portland, OR 97035" -280185,27in FHD Monitor,1,149.99,11/24/19 16:44,"941 4th St, San Francisco, CA 94016" -280186,USB-C Charging Cable,1,11.95,11/09/19 17:19,"203 Elm St, Los Angeles, CA 90001" -280187,USB-C Charging Cable,1,11.95,11/01/19 21:03,"458 Ridge St, New York City, NY 10001" -280188,27in FHD Monitor,1,149.99,11/09/19 23:43,"600 South St, Los Angeles, CA 90001" -280189,iPhone,1,700,11/05/19 08:15,"752 Lakeview St, New York City, NY 10001" -280190,20in Monitor,1,109.99,11/13/19 12:46,"796 10th St, San Francisco, CA 94016" -280191,USB-C Charging Cable,1,11.95,11/13/19 13:07,"244 5th St, New York City, NY 10001" -280192,Wired Headphones,1,11.99,11/04/19 17:14,"506 Spruce St, Seattle, WA 98101" -280193,27in 4K Gaming Monitor,1,389.99,11/06/19 11:18,"824 8th St, Boston, MA 02215" -280194,USB-C Charging Cable,1,11.95,11/14/19 22:23,"93 4th St, Atlanta, GA 30301" -280195,Google Phone,1,600,11/11/19 15:19,"763 South St, Atlanta, GA 30301" -280196,Wired Headphones,1,11.99,11/24/19 01:36,"246 Church St, Portland, OR 97035" -280197,27in FHD Monitor,1,149.99,11/14/19 10:15,"369 Jefferson St, Los Angeles, CA 90001" -280198,AA Batteries (4-pack),1,3.84,11/25/19 07:51,"89 14th St, Dallas, TX 75001" -280199,AAA Batteries (4-pack),2,2.99,11/10/19 22:26,"461 Lake St, Dallas, TX 75001" -280200,AA Batteries (4-pack),1,3.84,11/02/19 14:27,"894 13th St, Portland, OR 97035" -280201,Apple Airpods Headphones,1,150,11/15/19 15:33,"430 Pine St, New York City, NY 10001" -280202,AAA Batteries (4-pack),2,2.99,11/09/19 23:38,"601 River St, San Francisco, CA 94016" -280203,Bose SoundSport Headphones,1,99.99,11/18/19 11:31,"175 14th St, Austin, TX 73301" -280204,Apple Airpods Headphones,1,150,11/22/19 08:32,"658 Lincoln St, San Francisco, CA 94016" -280205,AA Batteries (4-pack),1,3.84,11/05/19 16:44,"825 Elm St, Dallas, TX 75001" -280206,AA Batteries (4-pack),1,3.84,11/29/19 20:15,"124 6th St, Austin, TX 73301" -280207,34in Ultrawide Monitor,1,379.99,11/18/19 21:01,"528 Pine St, Los Angeles, CA 90001" -280208,Lightning Charging Cable,1,14.95,11/21/19 23:58,"567 Sunset St, Portland, OR 97035" -280209,Flatscreen TV,1,300,11/13/19 11:12,"647 Elm St, San Francisco, CA 94016" -280210,Macbook Pro Laptop,1,1700,11/19/19 21:14,"889 11th St, New York City, NY 10001" -280211,20in Monitor,1,109.99,11/12/19 05:50,"671 Highland St, Boston, MA 02215" -280212,AA Batteries (4-pack),1,3.84,11/04/19 21:08,"676 Lakeview St, Dallas, TX 75001" -280213,Apple Airpods Headphones,1,150,11/22/19 11:35,"355 Park St, San Francisco, CA 94016" -280214,Bose SoundSport Headphones,1,99.99,11/01/19 10:38,"331 Ridge St, Boston, MA 02215" -280215,ThinkPad Laptop,1,999.99,11/15/19 23:24,"176 Cedar St, San Francisco, CA 94016" -280216,USB-C Charging Cable,1,11.95,11/12/19 00:32,"317 North St, Austin, TX 73301" -280217,USB-C Charging Cable,1,11.95,11/28/19 09:51,"591 North St, Los Angeles, CA 90001" -280218,27in 4K Gaming Monitor,1,389.99,11/08/19 19:51,"25 Willow St, San Francisco, CA 94016" -280219,AAA Batteries (4-pack),2,2.99,11/13/19 11:46,"459 Adams St, San Francisco, CA 94016" -280220,Apple Airpods Headphones,1,150,11/23/19 12:54,"264 Adams St, Austin, TX 73301" -280221,27in FHD Monitor,1,149.99,11/17/19 19:23,"547 Lakeview St, Portland, OR 97035" -280222,Lightning Charging Cable,1,14.95,11/15/19 15:44,"87 4th St, San Francisco, CA 94016" -280223,AAA Batteries (4-pack),1,2.99,11/01/19 21:24,"932 Jackson St, San Francisco, CA 94016" -280224,Apple Airpods Headphones,1,150,11/11/19 17:51,"284 Ridge St, San Francisco, CA 94016" -280225,AAA Batteries (4-pack),1,2.99,11/10/19 00:46,"83 Forest St, Seattle, WA 98101" -280226,Apple Airpods Headphones,1,150,11/09/19 12:57,"903 4th St, New York City, NY 10001" -280227,Apple Airpods Headphones,1,150,11/13/19 19:22,"25 13th St, Austin, TX 73301" -280228,AA Batteries (4-pack),1,3.84,11/18/19 23:09,"396 10th St, Seattle, WA 98101" -280229,Apple Airpods Headphones,1,150,11/27/19 20:23,"405 Maple St, Los Angeles, CA 90001" -280230,34in Ultrawide Monitor,1,379.99,11/23/19 15:23,"295 Ridge St, San Francisco, CA 94016" -280231,Bose SoundSport Headphones,1,99.99,11/07/19 20:04,"156 Lakeview St, San Francisco, CA 94016" -280232,Wired Headphones,1,11.99,11/01/19 12:32,"553 Wilson St, San Francisco, CA 94016" -280233,USB-C Charging Cable,1,11.95,11/23/19 22:50,"235 Meadow St, Seattle, WA 98101" -280234,AAA Batteries (4-pack),1,2.99,11/20/19 08:24,"700 Pine St, New York City, NY 10001" -280235,34in Ultrawide Monitor,1,379.99,11/23/19 18:20,"59 Pine St, Los Angeles, CA 90001" -280236,USB-C Charging Cable,2,11.95,11/01/19 19:26,"742 Elm St, Boston, MA 02215" -280237,Bose SoundSport Headphones,1,99.99,11/09/19 09:00,"749 14th St, New York City, NY 10001" -280238,AAA Batteries (4-pack),1,2.99,11/06/19 11:50,"272 Church St, San Francisco, CA 94016" -280239,AA Batteries (4-pack),1,3.84,11/08/19 12:02,"517 Park St, Seattle, WA 98101" -280240,20in Monitor,1,109.99,11/20/19 19:56,"366 7th St, San Francisco, CA 94016" -280241,Macbook Pro Laptop,1,1700,11/09/19 01:14,"612 Dogwood St, Dallas, TX 75001" -280242,Macbook Pro Laptop,1,1700,11/14/19 20:03,"629 Jefferson St, New York City, NY 10001" -280243,AAA Batteries (4-pack),2,2.99,11/02/19 21:05,"540 Lincoln St, Los Angeles, CA 90001" -280244,Wired Headphones,1,11.99,11/20/19 10:30,"472 10th St, Los Angeles, CA 90001" -280245,USB-C Charging Cable,2,11.95,11/20/19 05:52,"376 11th St, San Francisco, CA 94016" -280246,AA Batteries (4-pack),2,3.84,11/21/19 13:13,"67 Chestnut St, Atlanta, GA 30301" -280247,Apple Airpods Headphones,1,150,11/02/19 23:04,"31 Chestnut St, Atlanta, GA 30301" -280248,Lightning Charging Cable,1,14.95,11/23/19 11:45,"915 6th St, San Francisco, CA 94016" -280249,Google Phone,1,600,11/09/19 18:36,"156 Washington St, San Francisco, CA 94016" -280249,USB-C Charging Cable,1,11.95,11/09/19 18:36,"156 Washington St, San Francisco, CA 94016" -280250,Bose SoundSport Headphones,1,99.99,11/13/19 15:38,"924 Pine St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -280251,Lightning Charging Cable,1,14.95,11/09/19 14:07,"312 10th St, San Francisco, CA 94016" -280252,USB-C Charging Cable,1,11.95,11/19/19 11:29,"174 Spruce St, Portland, OR 97035" -280253,iPhone,1,700,11/28/19 07:49,"477 Cherry St, Atlanta, GA 30301" -280254,AA Batteries (4-pack),1,3.84,11/21/19 20:10,"417 Chestnut St, Portland, OR 97035" -280255,AA Batteries (4-pack),1,3.84,11/06/19 16:51,"611 1st St, San Francisco, CA 94016" -280256,Google Phone,1,600,11/16/19 11:20,"525 Park St, San Francisco, CA 94016" -280257,20in Monitor,1,109.99,11/16/19 16:59,"63 Church St, Portland, ME 04101" -280258,USB-C Charging Cable,2,11.95,11/09/19 17:20,"144 Sunset St, Los Angeles, CA 90001" -280259,Macbook Pro Laptop,1,1700,11/25/19 11:54,"747 Meadow St, Dallas, TX 75001" -280260,34in Ultrawide Monitor,1,379.99,11/27/19 12:32,"307 6th St, New York City, NY 10001" -280261,Wired Headphones,1,11.99,11/30/19 16:28,"996 Lincoln St, Boston, MA 02215" -280262,AAA Batteries (4-pack),1,2.99,11/14/19 13:25,"694 7th St, Dallas, TX 75001" -280263,27in FHD Monitor,1,149.99,11/25/19 23:29,"948 Cedar St, Dallas, TX 75001" -280264,AA Batteries (4-pack),1,3.84,11/03/19 07:00,"332 Church St, Boston, MA 02215" -280265,AA Batteries (4-pack),1,3.84,11/19/19 15:28,"34 6th St, Dallas, TX 75001" -280266,Vareebadd Phone,1,400,11/19/19 12:47,"336 4th St, Portland, OR 97035" -280267,20in Monitor,1,109.99,11/09/19 20:58,"933 Maple St, Los Angeles, CA 90001" -280268,AA Batteries (4-pack),1,3.84,11/30/19 12:11,"898 Chestnut St, Los Angeles, CA 90001" -280269,27in 4K Gaming Monitor,1,389.99,11/30/19 18:34,"762 River St, Dallas, TX 75001" -280270,Apple Airpods Headphones,1,150,11/16/19 17:44,"827 Wilson St, Dallas, TX 75001" -280271,Apple Airpods Headphones,1,150,11/23/19 19:40,"755 Cherry St, New York City, NY 10001" -280272,Lightning Charging Cable,1,14.95,11/05/19 15:39,"20 11th St, San Francisco, CA 94016" -280273,Wired Headphones,1,11.99,11/29/19 02:33,"289 Ridge St, Portland, OR 97035" -280274,Google Phone,1,600,11/24/19 10:32,"89 Elm St, San Francisco, CA 94016" -280275,Lightning Charging Cable,1,14.95,12/01/19 00:37,"616 Forest St, Seattle, WA 98101" -280276,USB-C Charging Cable,1,11.95,11/15/19 11:20,"638 Church St, Dallas, TX 75001" -280277,AAA Batteries (4-pack),3,2.99,11/17/19 14:01,"748 Park St, Los Angeles, CA 90001" -280278,AAA Batteries (4-pack),1,2.99,11/17/19 09:41,"900 Lake St, Seattle, WA 98101" -280279,Apple Airpods Headphones,1,150,11/25/19 10:26,"777 Johnson St, Los Angeles, CA 90001" -280280,Wired Headphones,1,11.99,11/01/19 15:51,"942 Hill St, New York City, NY 10001" -280281,USB-C Charging Cable,2,11.95,11/23/19 21:03,"257 Wilson St, Los Angeles, CA 90001" -280282,Wired Headphones,1,11.99,11/24/19 14:43,"90 2nd St, New York City, NY 10001" -280283,Wired Headphones,1,11.99,11/22/19 16:06,"146 Sunset St, Austin, TX 73301" -280284,Google Phone,1,600,11/11/19 19:32,"81 8th St, Portland, OR 97035" -280285,Wired Headphones,1,11.99,11/15/19 08:27,"240 Willow St, Boston, MA 02215" -280286,USB-C Charging Cable,1,11.95,11/24/19 07:49,"236 Hill St, San Francisco, CA 94016" -280287,Apple Airpods Headphones,1,150,11/16/19 04:54,"324 Lake St, San Francisco, CA 94016" -280288,Wired Headphones,1,11.99,11/19/19 19:34,"296 Walnut St, Seattle, WA 98101" -280289,USB-C Charging Cable,1,11.95,11/05/19 14:40,"846 Sunset St, Austin, TX 73301" -280290,Lightning Charging Cable,1,14.95,11/23/19 17:21,"258 Main St, San Francisco, CA 94016" -280291,AAA Batteries (4-pack),2,2.99,11/28/19 21:16,"843 Cherry St, Portland, OR 97035" -280292,Bose SoundSport Headphones,1,99.99,11/10/19 15:19,"324 Washington St, San Francisco, CA 94016" -280293,Macbook Pro Laptop,1,1700,11/23/19 10:48,"776 Hickory St, San Francisco, CA 94016" -280294,Apple Airpods Headphones,1,150,11/21/19 09:24,"341 5th St, New York City, NY 10001" -280295,20in Monitor,1,109.99,11/25/19 18:57,"768 Madison St, San Francisco, CA 94016" -280296,Apple Airpods Headphones,1,150,11/16/19 14:40,"687 13th St, San Francisco, CA 94016" -280297,Wired Headphones,1,11.99,11/12/19 18:12,"212 Church St, Los Angeles, CA 90001" -280298,Apple Airpods Headphones,1,150,11/01/19 22:19,"323 Dogwood St, Dallas, TX 75001" -280299,Wired Headphones,2,11.99,11/20/19 19:43,"11 Sunset St, San Francisco, CA 94016" -280300,Apple Airpods Headphones,1,150,11/14/19 22:03,"996 10th St, Los Angeles, CA 90001" -280301,AA Batteries (4-pack),1,3.84,11/03/19 23:34,"517 10th St, Austin, TX 73301" -280302,Apple Airpods Headphones,1,150,11/03/19 07:09,"331 Willow St, New York City, NY 10001" -280303,27in FHD Monitor,1,149.99,11/04/19 09:48,"978 Cedar St, New York City, NY 10001" -280304,Wired Headphones,1,11.99,11/27/19 12:47,"813 12th St, New York City, NY 10001" -280305,Wired Headphones,1,11.99,11/21/19 14:47,"853 Center St, Los Angeles, CA 90001" -280306,USB-C Charging Cable,1,11.95,11/08/19 08:46,"992 South St, Los Angeles, CA 90001" -280307,Flatscreen TV,1,300,11/30/19 22:21,"984 Lakeview St, Los Angeles, CA 90001" -280308,Wired Headphones,1,11.99,11/22/19 21:12,"180 2nd St, Boston, MA 02215" -280309,Flatscreen TV,1,300,11/19/19 19:47,"45 Jefferson St, New York City, NY 10001" -280310,AA Batteries (4-pack),1,3.84,11/15/19 03:55,"362 8th St, San Francisco, CA 94016" -280311,27in FHD Monitor,1,149.99,11/02/19 17:12,"977 Park St, Los Angeles, CA 90001" -280312,Apple Airpods Headphones,1,150,11/12/19 14:07,"715 14th St, Atlanta, GA 30301" -280313,Bose SoundSport Headphones,1,99.99,11/25/19 00:32,"316 Cherry St, New York City, NY 10001" -280314,ThinkPad Laptop,1,999.99,11/18/19 17:01,"621 13th St, Dallas, TX 75001" -280315,AAA Batteries (4-pack),1,2.99,11/22/19 14:30,"719 Forest St, Dallas, TX 75001" -280316,USB-C Charging Cable,1,11.95,11/29/19 11:30,"62 Madison St, New York City, NY 10001" -280317,AA Batteries (4-pack),1,3.84,11/03/19 22:39,"722 Highland St, Los Angeles, CA 90001" -280317,20in Monitor,1,109.99,11/03/19 22:39,"722 Highland St, Los Angeles, CA 90001" -280318,Apple Airpods Headphones,1,150,11/09/19 15:22,"763 5th St, Atlanta, GA 30301" -280319,USB-C Charging Cable,1,11.95,11/26/19 13:41,"119 Highland St, New York City, NY 10001" -280320,Apple Airpods Headphones,1,150,11/23/19 18:14,"615 Sunset St, San Francisco, CA 94016" -280321,AAA Batteries (4-pack),1,2.99,11/17/19 10:32,"929 Lincoln St, New York City, NY 10001" -280322,Wired Headphones,1,11.99,11/19/19 22:00,"2 Hill St, Atlanta, GA 30301" -280323,AA Batteries (4-pack),1,3.84,11/07/19 15:40,"117 Willow St, San Francisco, CA 94016" -280324,AA Batteries (4-pack),1,3.84,11/11/19 09:27,"386 Elm St, Dallas, TX 75001" -280325,Macbook Pro Laptop,1,1700,11/01/19 17:59,"563 5th St, New York City, NY 10001" -280326,AA Batteries (4-pack),1,3.84,11/29/19 15:43,"221 Park St, Los Angeles, CA 90001" -280327,AA Batteries (4-pack),1,3.84,11/28/19 18:39,"373 Cedar St, Austin, TX 73301" -280328,AAA Batteries (4-pack),2,2.99,11/17/19 09:55,"68 Willow St, San Francisco, CA 94016" -280329,Lightning Charging Cable,1,14.95,11/25/19 11:28,"900 Main St, San Francisco, CA 94016" -280330,Bose SoundSport Headphones,1,99.99,11/05/19 20:55,"94 12th St, New York City, NY 10001" -280331,20in Monitor,1,109.99,11/18/19 21:39,"439 Hill St, Seattle, WA 98101" -280332,Lightning Charging Cable,1,14.95,11/28/19 08:39,"932 Elm St, Seattle, WA 98101" -280333,Lightning Charging Cable,1,14.95,11/26/19 12:10,"894 Lake St, San Francisco, CA 94016" -280334,Apple Airpods Headphones,1,150,11/02/19 18:34,"872 6th St, New York City, NY 10001" -280335,Lightning Charging Cable,1,14.95,11/10/19 22:32,"895 Jackson St, Seattle, WA 98101" -280336,AA Batteries (4-pack),1,3.84,11/05/19 10:15,"203 Cherry St, San Francisco, CA 94016" -280337,LG Washing Machine,1,600.0,11/30/19 13:38,"98 Park St, Los Angeles, CA 90001" -280338,Lightning Charging Cable,1,14.95,11/22/19 23:02,"999 North St, Seattle, WA 98101" -280339,AAA Batteries (4-pack),2,2.99,11/17/19 23:16,"375 8th St, Austin, TX 73301" -280340,Apple Airpods Headphones,1,150,11/11/19 10:08,"176 Maple St, San Francisco, CA 94016" -280341,AA Batteries (4-pack),2,3.84,11/21/19 09:30,"831 River St, Los Angeles, CA 90001" -280342,iPhone,1,700,11/03/19 19:01,"536 6th St, Dallas, TX 75001" -280343,27in 4K Gaming Monitor,1,389.99,11/07/19 17:03,"199 Adams St, Los Angeles, CA 90001" -280344,AA Batteries (4-pack),1,3.84,11/12/19 22:00,"980 9th St, New York City, NY 10001" -280345,Wired Headphones,1,11.99,11/05/19 17:13,"520 4th St, Dallas, TX 75001" -280346,Apple Airpods Headphones,1,150,11/27/19 18:37,"286 Forest St, Atlanta, GA 30301" -280347,AA Batteries (4-pack),1,3.84,11/09/19 18:51,"763 2nd St, Seattle, WA 98101" -280348,AAA Batteries (4-pack),2,2.99,11/08/19 08:41,"654 11th St, Portland, OR 97035" -280349,20in Monitor,1,109.99,11/29/19 12:59,"173 11th St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -280350,Flatscreen TV,1,300,11/07/19 18:30,"574 Center St, Boston, MA 02215" -280351,USB-C Charging Cable,1,11.95,11/05/19 11:42,"362 Cherry St, Austin, TX 73301" -280352,AAA Batteries (4-pack),1,2.99,11/12/19 18:45,"645 Cedar St, Atlanta, GA 30301" -280353,Macbook Pro Laptop,1,1700,11/13/19 15:10,"240 Johnson St, New York City, NY 10001" -280354,USB-C Charging Cable,1,11.95,11/23/19 19:08,"15 13th St, San Francisco, CA 94016" -280355,AA Batteries (4-pack),1,3.84,11/03/19 14:33,"441 6th St, Atlanta, GA 30301" -280356,Lightning Charging Cable,1,14.95,11/22/19 09:19,"867 6th St, Portland, OR 97035" -280357,Lightning Charging Cable,1,14.95,11/07/19 06:09,"254 11th St, San Francisco, CA 94016" -280358,Apple Airpods Headphones,1,150,11/26/19 14:47,"1 Lakeview St, Los Angeles, CA 90001" -280359,Lightning Charging Cable,1,14.95,11/13/19 12:52,"606 River St, Boston, MA 02215" -280360,Lightning Charging Cable,1,14.95,11/20/19 23:00,"511 9th St, Los Angeles, CA 90001" -280361,AAA Batteries (4-pack),2,2.99,11/04/19 21:00,"747 Cherry St, New York City, NY 10001" -280362,AAA Batteries (4-pack),4,2.99,11/24/19 07:38,"798 6th St, Atlanta, GA 30301" -280363,Apple Airpods Headphones,1,150,11/15/19 12:07,"464 Center St, Austin, TX 73301" -280364,Google Phone,1,600,11/29/19 21:33,"526 Park St, Dallas, TX 75001" -280365,Wired Headphones,1,11.99,11/18/19 16:35,"364 Highland St, Dallas, TX 75001" -280366,Bose SoundSport Headphones,1,99.99,11/24/19 12:29,"460 11th St, Portland, OR 97035" -280367,USB-C Charging Cable,2,11.95,11/16/19 11:44,"372 13th St, Los Angeles, CA 90001" -280368,20in Monitor,1,109.99,11/20/19 18:19,"93 Center St, Atlanta, GA 30301" -280369,Lightning Charging Cable,2,14.95,11/01/19 07:51,"228 Highland St, Austin, TX 73301" -280370,Bose SoundSport Headphones,1,99.99,11/12/19 19:47,"794 Washington St, Boston, MA 02215" -280371,USB-C Charging Cable,1,11.95,11/10/19 10:49,"783 12th St, San Francisco, CA 94016" -280372,AAA Batteries (4-pack),2,2.99,11/28/19 18:00,"79 Chestnut St, Seattle, WA 98101" -280373,USB-C Charging Cable,1,11.95,11/21/19 11:09,"56 2nd St, Dallas, TX 75001" -280374,USB-C Charging Cable,1,11.95,11/19/19 13:06,"951 West St, Seattle, WA 98101" -280375,34in Ultrawide Monitor,1,379.99,11/17/19 12:51,"911 11th St, Portland, OR 97035" -280376,20in Monitor,1,109.99,11/30/19 23:54,"739 Pine St, Dallas, TX 75001" -280377,Apple Airpods Headphones,1,150,11/24/19 16:05,"314 10th St, Dallas, TX 75001" -280378,ThinkPad Laptop,1,999.99,11/07/19 15:23,"960 Church St, Dallas, TX 75001" -280379,34in Ultrawide Monitor,1,379.99,11/23/19 22:00,"37 Chestnut St, New York City, NY 10001" -280380,27in FHD Monitor,1,149.99,11/14/19 17:59,"932 12th St, Portland, OR 97035" -280381,Apple Airpods Headphones,1,150,11/08/19 18:22,"341 South St, Atlanta, GA 30301" -280382,USB-C Charging Cable,1,11.95,11/23/19 10:23,"138 5th St, New York City, NY 10001" -280383,USB-C Charging Cable,1,11.95,11/24/19 00:06,"900 Lake St, Atlanta, GA 30301" -280384,USB-C Charging Cable,1,11.95,11/25/19 06:17,"519 Elm St, San Francisco, CA 94016" -280385,USB-C Charging Cable,1,11.95,11/24/19 00:34,"355 River St, Portland, OR 97035" -280386,Vareebadd Phone,1,400,11/21/19 13:01,"60 West St, Los Angeles, CA 90001" -280386,Wired Headphones,1,11.99,11/21/19 13:01,"60 West St, Los Angeles, CA 90001" -280387,Macbook Pro Laptop,1,1700,11/11/19 13:17,"468 Wilson St, Atlanta, GA 30301" -280388,Wired Headphones,1,11.99,11/15/19 20:04,"989 Dogwood St, San Francisco, CA 94016" -280389,Flatscreen TV,1,300,11/05/19 17:33,"819 5th St, Los Angeles, CA 90001" -280390,27in 4K Gaming Monitor,1,389.99,11/05/19 20:56,"352 Forest St, Boston, MA 02215" -280391,Apple Airpods Headphones,1,150,11/18/19 22:15,"865 Highland St, Portland, OR 97035" -280392,AA Batteries (4-pack),1,3.84,11/13/19 08:44,"705 7th St, Los Angeles, CA 90001" -280393,Wired Headphones,1,11.99,11/14/19 15:01,"992 South St, Seattle, WA 98101" -280394,LG Washing Machine,1,600.0,11/27/19 00:16,"543 Elm St, San Francisco, CA 94016" -280395,AA Batteries (4-pack),4,3.84,11/10/19 11:19,"310 7th St, Boston, MA 02215" -280396,USB-C Charging Cable,1,11.95,11/20/19 07:49,"299 West St, Austin, TX 73301" -280397,20in Monitor,1,109.99,11/29/19 07:56,"654 Chestnut St, Los Angeles, CA 90001" -280398,Apple Airpods Headphones,1,150,11/14/19 11:47,"704 Highland St, Dallas, TX 75001" -280399,Lightning Charging Cable,1,14.95,11/25/19 13:50,"869 Hill St, San Francisco, CA 94016" -280400,Lightning Charging Cable,2,14.95,11/09/19 19:36,"996 Willow St, Boston, MA 02215" -280401,27in FHD Monitor,1,149.99,11/07/19 20:48,"555 4th St, San Francisco, CA 94016" -280402,Wired Headphones,1,11.99,11/09/19 11:36,"74 Elm St, San Francisco, CA 94016" -280403,AA Batteries (4-pack),1,3.84,11/09/19 13:08,"565 Spruce St, Dallas, TX 75001" -280404,Bose SoundSport Headphones,1,99.99,11/10/19 20:44,"732 9th St, San Francisco, CA 94016" -280404,Flatscreen TV,1,300,11/10/19 20:44,"732 9th St, San Francisco, CA 94016" -280405,27in FHD Monitor,1,149.99,11/11/19 09:20,"735 West St, San Francisco, CA 94016" -280406,AA Batteries (4-pack),1,3.84,11/04/19 11:16,"674 Dogwood St, Los Angeles, CA 90001" -280407,Lightning Charging Cable,1,14.95,11/01/19 16:14,"640 Jackson St, Seattle, WA 98101" -280408,27in FHD Monitor,1,149.99,11/09/19 10:48,"323 Church St, Atlanta, GA 30301" -280409,AA Batteries (4-pack),1,3.84,11/17/19 13:09,"372 Willow St, Los Angeles, CA 90001" -280410,27in 4K Gaming Monitor,1,389.99,11/24/19 15:57,"104 4th St, New York City, NY 10001" -280411,Bose SoundSport Headphones,1,99.99,11/13/19 23:41,"150 Adams St, San Francisco, CA 94016" -280412,AA Batteries (4-pack),1,3.84,11/07/19 00:16,"480 River St, Los Angeles, CA 90001" -280413,USB-C Charging Cable,1,11.95,11/16/19 09:10,"701 Ridge St, Boston, MA 02215" -280414,34in Ultrawide Monitor,1,379.99,11/05/19 21:23,"933 8th St, Los Angeles, CA 90001" -280415,Google Phone,1,600,11/11/19 22:14,"880 Church St, Los Angeles, CA 90001" -280416,20in Monitor,1,109.99,11/08/19 07:37,"46 Willow St, Boston, MA 02215" -280417,AA Batteries (4-pack),1,3.84,11/19/19 14:40,"402 River St, Atlanta, GA 30301" -280418,Flatscreen TV,1,300,11/15/19 06:16,"509 Hill St, Dallas, TX 75001" -280419,Lightning Charging Cable,1,14.95,11/16/19 19:23,"38 Jackson St, Los Angeles, CA 90001" -280420,USB-C Charging Cable,1,11.95,11/24/19 06:38,"227 Park St, San Francisco, CA 94016" -280421,AAA Batteries (4-pack),1,2.99,11/20/19 06:21,"868 Meadow St, New York City, NY 10001" -280422,Lightning Charging Cable,1,14.95,11/22/19 21:36,"82 7th St, Atlanta, GA 30301" -280423,USB-C Charging Cable,1,11.95,11/05/19 16:05,"23 9th St, Atlanta, GA 30301" -280424,AAA Batteries (4-pack),1,2.99,11/07/19 12:17,"23 Walnut St, San Francisco, CA 94016" -280425,Bose SoundSport Headphones,1,99.99,11/14/19 13:07,"880 Maple St, San Francisco, CA 94016" -280426,iPhone,1,700,11/22/19 08:29,"776 Chestnut St, San Francisco, CA 94016" -280427,USB-C Charging Cable,1,11.95,11/10/19 08:44,"979 Hickory St, San Francisco, CA 94016" -280428,AA Batteries (4-pack),1,3.84,11/30/19 19:48,"65 Lincoln St, Austin, TX 73301" -280429,Lightning Charging Cable,1,14.95,11/14/19 08:25,"214 9th St, Los Angeles, CA 90001" -280430,Google Phone,1,600,11/27/19 16:12,"916 Willow St, San Francisco, CA 94016" -280431,AAA Batteries (4-pack),2,2.99,11/14/19 13:40,"636 Wilson St, San Francisco, CA 94016" -280432,27in 4K Gaming Monitor,1,389.99,11/22/19 19:53,"784 10th St, San Francisco, CA 94016" -280433,Wired Headphones,1,11.99,11/07/19 21:17,"756 Madison St, New York City, NY 10001" -280434,LG Washing Machine,1,600.0,11/13/19 06:06,"655 River St, Atlanta, GA 30301" -280435,AAA Batteries (4-pack),1,2.99,11/02/19 18:59,"403 Park St, Los Angeles, CA 90001" -280436,USB-C Charging Cable,1,11.95,11/02/19 15:48,"663 Hill St, Boston, MA 02215" -280437,Bose SoundSport Headphones,1,99.99,11/03/19 12:10,"885 13th St, Seattle, WA 98101" -280438,USB-C Charging Cable,1,11.95,11/04/19 17:56,"557 North St, San Francisco, CA 94016" -280439,Bose SoundSport Headphones,1,99.99,11/02/19 13:44,"759 Spruce St, Boston, MA 02215" -280440,USB-C Charging Cable,1,11.95,11/11/19 18:11,"89 4th St, Los Angeles, CA 90001" -280441,ThinkPad Laptop,1,999.99,11/03/19 19:18,"370 Lakeview St, San Francisco, CA 94016" -280442,Bose SoundSport Headphones,1,99.99,11/03/19 03:26,"161 Spruce St, New York City, NY 10001" -280443,Apple Airpods Headphones,1,150,11/11/19 22:33,"317 Highland St, Los Angeles, CA 90001" -280444,Lightning Charging Cable,2,14.95,11/15/19 18:12,"615 Hickory St, Dallas, TX 75001" -280445,AAA Batteries (4-pack),1,2.99,11/25/19 10:00,"981 Sunset St, San Francisco, CA 94016" -280446,Wired Headphones,2,11.99,11/30/19 13:53,"282 North St, Boston, MA 02215" -280447,Lightning Charging Cable,1,14.95,11/26/19 20:55,"726 10th St, New York City, NY 10001" -280448,USB-C Charging Cable,1,11.95,11/12/19 12:21,"474 4th St, Dallas, TX 75001" -280449,27in FHD Monitor,1,149.99,11/24/19 07:28,"904 Chestnut St, Atlanta, GA 30301" -280450,AAA Batteries (4-pack),3,2.99,11/22/19 09:24,"158 Hickory St, Portland, ME 04101" -280451,AAA Batteries (4-pack),1,2.99,11/27/19 19:10,"483 Cedar St, New York City, NY 10001" -280452,Apple Airpods Headphones,1,150,11/25/19 20:44,"189 Cherry St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -280453,34in Ultrawide Monitor,1,379.99,11/18/19 00:07,"553 Madison St, San Francisco, CA 94016" -280454,USB-C Charging Cable,1,11.95,11/18/19 15:54,"67 Pine St, San Francisco, CA 94016" -280455,Wired Headphones,1,11.99,11/21/19 11:51,"770 Dogwood St, New York City, NY 10001" -280456,27in 4K Gaming Monitor,1,389.99,11/22/19 19:42,"878 Meadow St, Seattle, WA 98101" -280457,Wired Headphones,2,11.99,11/21/19 10:39,"861 West St, San Francisco, CA 94016" -280458,Apple Airpods Headphones,1,150,11/06/19 18:57,"110 River St, San Francisco, CA 94016" -280459,AAA Batteries (4-pack),1,2.99,11/09/19 23:49,"641 North St, Austin, TX 73301" -280460,Wired Headphones,1,11.99,11/17/19 19:02,"5 7th St, Los Angeles, CA 90001" -280461,Bose SoundSport Headphones,1,99.99,11/27/19 21:48,"648 River St, Los Angeles, CA 90001" -280462,USB-C Charging Cable,1,11.95,11/01/19 22:55,"682 Walnut St, Austin, TX 73301" -280463,Wired Headphones,1,11.99,11/03/19 12:25,"343 2nd St, Dallas, TX 75001" -280464,Lightning Charging Cable,1,14.95,11/29/19 17:07,"606 Walnut St, San Francisco, CA 94016" -280465,Apple Airpods Headphones,1,150,11/11/19 00:52,"527 Walnut St, San Francisco, CA 94016" -280466,Lightning Charging Cable,1,14.95,11/06/19 14:24,"504 Spruce St, San Francisco, CA 94016" -280467,Lightning Charging Cable,1,14.95,11/26/19 22:51,"170 Main St, San Francisco, CA 94016" -280468,Apple Airpods Headphones,1,150,11/29/19 00:56,"36 12th St, New York City, NY 10001" -280469,USB-C Charging Cable,1,11.95,11/24/19 11:34,"365 Ridge St, New York City, NY 10001" -280470,Lightning Charging Cable,1,14.95,11/25/19 21:17,"289 8th St, New York City, NY 10001" -280471,Apple Airpods Headphones,1,150,11/29/19 11:07,"725 Adams St, Boston, MA 02215" -280472,AAA Batteries (4-pack),1,2.99,11/02/19 21:59,"236 Jefferson St, New York City, NY 10001" -280473,AAA Batteries (4-pack),1,2.99,11/24/19 04:44,"926 13th St, Los Angeles, CA 90001" -280474,iPhone,1,700,11/16/19 14:19,"777 Jefferson St, Los Angeles, CA 90001" -280475,Macbook Pro Laptop,1,1700,11/04/19 17:56,"344 1st St, San Francisco, CA 94016" -280476,27in FHD Monitor,1,149.99,11/07/19 08:54,"402 4th St, Seattle, WA 98101" -280477,Bose SoundSport Headphones,1,99.99,11/08/19 18:49,"894 Ridge St, Boston, MA 02215" -280478,Apple Airpods Headphones,1,150,11/29/19 22:24,"280 14th St, Boston, MA 02215" -280479,USB-C Charging Cable,1,11.95,11/16/19 15:09,"775 11th St, New York City, NY 10001" -280479,AA Batteries (4-pack),1,3.84,11/16/19 15:09,"775 11th St, New York City, NY 10001" -280480,34in Ultrawide Monitor,1,379.99,11/04/19 08:08,"635 Center St, San Francisco, CA 94016" -280481,AA Batteries (4-pack),1,3.84,11/30/19 21:22,"637 Chestnut St, Seattle, WA 98101" -280482,Lightning Charging Cable,1,14.95,11/22/19 00:31,"477 5th St, Atlanta, GA 30301" -280483,Lightning Charging Cable,1,14.95,11/17/19 15:08,"371 Jackson St, Atlanta, GA 30301" -280484,Apple Airpods Headphones,1,150,11/17/19 18:47,"907 1st St, San Francisco, CA 94016" -280485,USB-C Charging Cable,1,11.95,11/13/19 07:11,"890 Jackson St, Portland, OR 97035" -280486,AA Batteries (4-pack),1,3.84,11/29/19 19:13,"457 6th St, Portland, OR 97035" -280487,34in Ultrawide Monitor,1,379.99,11/12/19 16:31,"203 6th St, Los Angeles, CA 90001" -280488,Apple Airpods Headphones,1,150,11/28/19 18:03,"307 Lincoln St, Dallas, TX 75001" -280489,USB-C Charging Cable,1,11.95,11/12/19 13:48,"179 River St, San Francisco, CA 94016" -280490,Bose SoundSport Headphones,1,99.99,11/27/19 17:27,"169 Pine St, Seattle, WA 98101" -280491,Lightning Charging Cable,1,14.95,11/05/19 18:08,"556 Johnson St, San Francisco, CA 94016" -280492,AA Batteries (4-pack),1,3.84,11/01/19 14:29,"998 Chestnut St, Boston, MA 02215" -280493,Wired Headphones,1,11.99,11/03/19 10:57,"774 Walnut St, San Francisco, CA 94016" -280494,Wired Headphones,1,11.99,11/17/19 23:58,"491 Center St, Los Angeles, CA 90001" -280495,AAA Batteries (4-pack),1,2.99,11/04/19 19:31,"656 Washington St, San Francisco, CA 94016" -280496,USB-C Charging Cable,2,11.95,11/23/19 09:27,"540 Lincoln St, New York City, NY 10001" -280497,Bose SoundSport Headphones,1,99.99,11/09/19 09:33,"674 Hickory St, Boston, MA 02215" -280498,Apple Airpods Headphones,1,150,11/20/19 13:38,"201 Forest St, Los Angeles, CA 90001" -280499,Lightning Charging Cable,2,14.95,11/22/19 22:14,"386 West St, San Francisco, CA 94016" -280500,Bose SoundSport Headphones,1,99.99,11/03/19 23:06,"227 Washington St, Atlanta, GA 30301" -280501,20in Monitor,1,109.99,11/08/19 17:16,"485 Pine St, San Francisco, CA 94016" -280502,Bose SoundSport Headphones,1,99.99,11/04/19 21:02,"397 Pine St, Boston, MA 02215" -280503,27in 4K Gaming Monitor,1,389.99,11/03/19 12:55,"636 9th St, Dallas, TX 75001" -280504,AA Batteries (4-pack),1,3.84,11/01/19 20:52,"509 Spruce St, San Francisco, CA 94016" -280505,Lightning Charging Cable,1,14.95,11/24/19 18:13,"997 Maple St, San Francisco, CA 94016" -280506,iPhone,1,700,11/06/19 11:13,"673 Forest St, New York City, NY 10001" -280506,Apple Airpods Headphones,1,150,11/06/19 11:13,"673 Forest St, New York City, NY 10001" -280507,Macbook Pro Laptop,1,1700,11/08/19 14:55,"887 Park St, San Francisco, CA 94016" -280508,ThinkPad Laptop,1,999.99,11/07/19 17:18,"610 Cedar St, Los Angeles, CA 90001" -280509,Wired Headphones,2,11.99,11/05/19 18:50,"720 Lake St, Dallas, TX 75001" -280510,Bose SoundSport Headphones,1,99.99,11/09/19 12:27,"81 6th St, Boston, MA 02215" -280511,iPhone,1,700,11/11/19 14:28,"194 Walnut St, Dallas, TX 75001" -280511,Wired Headphones,1,11.99,11/11/19 14:28,"194 Walnut St, Dallas, TX 75001" -280512,AA Batteries (4-pack),1,3.84,11/15/19 19:27,"570 10th St, Austin, TX 73301" -280513,27in 4K Gaming Monitor,1,389.99,11/13/19 14:55,"828 Center St, Austin, TX 73301" -280514,Lightning Charging Cable,1,14.95,11/21/19 20:06,"530 1st St, Dallas, TX 75001" -280515,AAA Batteries (4-pack),1,2.99,11/04/19 13:20,"911 North St, New York City, NY 10001" -280516,Vareebadd Phone,1,400,11/16/19 15:23,"91 Willow St, Portland, OR 97035" -280517,AA Batteries (4-pack),1,3.84,11/08/19 12:10,"59 Cherry St, San Francisco, CA 94016" -280518,AA Batteries (4-pack),1,3.84,11/08/19 06:35,"823 River St, San Francisco, CA 94016" -280519,Flatscreen TV,1,300,11/20/19 17:19,"446 Meadow St, Atlanta, GA 30301" -280520,Bose SoundSport Headphones,1,99.99,11/18/19 15:02,"800 North St, San Francisco, CA 94016" -280521,Vareebadd Phone,1,400,11/28/19 18:34,"370 Cedar St, Seattle, WA 98101" -280521,USB-C Charging Cable,1,11.95,11/28/19 18:34,"370 Cedar St, Seattle, WA 98101" -280522,USB-C Charging Cable,1,11.95,11/20/19 18:03,"642 Adams St, Los Angeles, CA 90001" -280523,USB-C Charging Cable,1,11.95,11/25/19 22:21,"786 Ridge St, Portland, OR 97035" -280524,Apple Airpods Headphones,1,150,11/05/19 14:22,"84 Hickory St, San Francisco, CA 94016" -280525,AAA Batteries (4-pack),2,2.99,11/01/19 18:45,"828 12th St, Dallas, TX 75001" -280526,AA Batteries (4-pack),1,3.84,11/01/19 08:22,"728 Lake St, Dallas, TX 75001" -280527,Apple Airpods Headphones,1,150,11/15/19 07:39,"551 Maple St, Austin, TX 73301" -280528,27in 4K Gaming Monitor,1,389.99,11/17/19 21:17,"794 Lakeview St, Seattle, WA 98101" -280529,Flatscreen TV,1,300,11/15/19 09:11,"505 Lakeview St, Atlanta, GA 30301" -280530,Lightning Charging Cable,1,14.95,11/23/19 06:57,"219 12th St, New York City, NY 10001" -280531,Apple Airpods Headphones,1,150,11/04/19 13:58,"832 Highland St, Portland, OR 97035" -280532,Wired Headphones,1,11.99,11/01/19 09:58,"298 5th St, San Francisco, CA 94016" -280533,AAA Batteries (4-pack),1,2.99,11/24/19 16:57,"320 Lakeview St, Atlanta, GA 30301" -280534,27in FHD Monitor,1,149.99,11/21/19 15:18,"713 9th St, Los Angeles, CA 90001" -280535,Bose SoundSport Headphones,1,99.99,11/11/19 17:09,"446 2nd St, Boston, MA 02215" -280536,Wired Headphones,1,11.99,11/23/19 10:22,"980 Center St, Seattle, WA 98101" -280537,iPhone,1,700,11/25/19 13:10,"580 1st St, Los Angeles, CA 90001" -280538,Wired Headphones,1,11.99,11/07/19 07:26,"996 Meadow St, Portland, OR 97035" -280539,Bose SoundSport Headphones,1,99.99,11/07/19 18:29,"788 Washington St, San Francisco, CA 94016" -280540,ThinkPad Laptop,1,999.99,11/03/19 13:22,"831 Church St, Los Angeles, CA 90001" -280541,Lightning Charging Cable,1,14.95,11/25/19 12:05,"749 Cherry St, Los Angeles, CA 90001" -280542,AA Batteries (4-pack),1,3.84,11/10/19 14:29,"115 Washington St, Seattle, WA 98101" -280543,LG Dryer,1,600.0,11/19/19 13:51,"78 11th St, Los Angeles, CA 90001" -280544,Apple Airpods Headphones,1,150,11/27/19 09:27,"901 Highland St, New York City, NY 10001" -280545,Wired Headphones,2,11.99,11/25/19 20:55,"307 Walnut St, Portland, OR 97035" -280546,AA Batteries (4-pack),2,3.84,11/19/19 14:46,"131 Willow St, Portland, ME 04101" -280547,Macbook Pro Laptop,1,1700,11/10/19 07:43,"265 Church St, Atlanta, GA 30301" -280548,Lightning Charging Cable,1,14.95,11/15/19 20:01,"506 14th St, Atlanta, GA 30301" -280549,AAA Batteries (4-pack),1,2.99,11/13/19 19:55,"1 Elm St, Atlanta, GA 30301" -280550,Macbook Pro Laptop,1,1700,11/03/19 19:37,"222 9th St, Dallas, TX 75001" -280551,Apple Airpods Headphones,1,150,11/28/19 19:16,"366 Forest St, Austin, TX 73301" -280552,Lightning Charging Cable,1,14.95,11/09/19 19:11,"495 Washington St, Portland, OR 97035" -280553,USB-C Charging Cable,1,11.95,11/19/19 15:23,"102 Maple St, Portland, ME 04101" -280554,Lightning Charging Cable,2,14.95,11/07/19 18:38,"671 Willow St, Seattle, WA 98101" -280555,AAA Batteries (4-pack),2,2.99,11/30/19 17:25,"242 5th St, Boston, MA 02215" -280556,ThinkPad Laptop,1,999.99,11/14/19 19:11,"600 2nd St, San Francisco, CA 94016" -280557,34in Ultrawide Monitor,1,379.99,11/18/19 20:42,"551 Cherry St, San Francisco, CA 94016" -280558,Bose SoundSport Headphones,1,99.99,11/19/19 17:30,"699 Walnut St, New York City, NY 10001" -280559,ThinkPad Laptop,1,999.99,11/19/19 13:24,"67 14th St, New York City, NY 10001" -280560,AA Batteries (4-pack),1,3.84,11/24/19 11:00,"985 Jefferson St, San Francisco, CA 94016" -280561,AAA Batteries (4-pack),1,2.99,11/30/19 20:16,"601 Lincoln St, New York City, NY 10001" -280562,Wired Headphones,2,11.99,11/19/19 08:57,"8 North St, San Francisco, CA 94016" -280563,AA Batteries (4-pack),2,3.84,11/01/19 14:36,"178 Washington St, New York City, NY 10001" -280564,Flatscreen TV,1,300,11/17/19 08:02,"259 Center St, New York City, NY 10001" -280565,34in Ultrawide Monitor,1,379.99,11/30/19 18:34,"308 Chestnut St, San Francisco, CA 94016" -280566,Apple Airpods Headphones,1,150,11/20/19 09:58,"762 12th St, New York City, NY 10001" -280567,AA Batteries (4-pack),1,3.84,11/01/19 18:47,"973 Pine St, New York City, NY 10001" -280568,USB-C Charging Cable,2,11.95,11/24/19 10:39,"192 Johnson St, Atlanta, GA 30301" -280569,Bose SoundSport Headphones,1,99.99,11/07/19 18:45,"983 Maple St, San Francisco, CA 94016" -280570,ThinkPad Laptop,1,999.99,11/25/19 08:43,"381 Walnut St, Los Angeles, CA 90001" -280571,34in Ultrawide Monitor,1,379.99,11/13/19 12:24,"30 Church St, Boston, MA 02215" -280572,USB-C Charging Cable,1,11.95,11/25/19 15:29,"86 Wilson St, New York City, NY 10001" -280573,27in FHD Monitor,1,149.99,11/06/19 15:46,"493 Church St, Los Angeles, CA 90001" -280574,AA Batteries (4-pack),1,3.84,11/20/19 16:50,"667 Pine St, Boston, MA 02215" -,,,,, -280575,AAA Batteries (4-pack),1,2.99,11/01/19 23:10,"654 Church St, San Francisco, CA 94016" -280576,Flatscreen TV,1,300,11/04/19 14:26,"537 Ridge St, Los Angeles, CA 90001" -280577,Bose SoundSport Headphones,1,99.99,11/21/19 21:13,"122 River St, Boston, MA 02215" -280578,AAA Batteries (4-pack),1,2.99,11/23/19 18:34,"874 Forest St, Austin, TX 73301" -280579,AAA Batteries (4-pack),3,2.99,11/07/19 22:16,"127 10th St, Boston, MA 02215" -280580,AA Batteries (4-pack),1,3.84,11/26/19 20:19,"60 West St, San Francisco, CA 94016" -280581,Lightning Charging Cable,1,14.95,11/10/19 12:10,"249 10th St, Boston, MA 02215" -280582,USB-C Charging Cable,1,11.95,11/05/19 21:21,"528 Forest St, Boston, MA 02215" -280583,Wired Headphones,1,11.99,11/19/19 13:18,"27 Center St, San Francisco, CA 94016" -280584,Lightning Charging Cable,1,14.95,11/02/19 20:45,"875 Adams St, Boston, MA 02215" -280585,ThinkPad Laptop,1,999.99,11/24/19 18:59,"211 Wilson St, Boston, MA 02215" -280586,Macbook Pro Laptop,1,1700,11/27/19 16:55,"845 Lakeview St, San Francisco, CA 94016" -280587,Apple Airpods Headphones,1,150,11/30/19 15:30,"469 Pine St, Portland, OR 97035" -280588,34in Ultrawide Monitor,1,379.99,11/22/19 22:45,"432 Meadow St, San Francisco, CA 94016" -280589,34in Ultrawide Monitor,1,379.99,11/22/19 08:09,"255 Madison St, San Francisco, CA 94016" -280590,Lightning Charging Cable,1,14.95,11/11/19 17:14,"206 South St, New York City, NY 10001" -280591,iPhone,1,700,11/12/19 21:40,"360 Lincoln St, Boston, MA 02215" -280592,AAA Batteries (4-pack),1,2.99,11/06/19 00:26,"475 Center St, Los Angeles, CA 90001" -280592,Wired Headphones,1,11.99,11/06/19 00:26,"475 Center St, Los Angeles, CA 90001" -280593,USB-C Charging Cable,1,11.95,11/17/19 13:19,"415 Lakeview St, Portland, OR 97035" -280594,AAA Batteries (4-pack),3,2.99,11/18/19 00:12,"57 Madison St, San Francisco, CA 94016" -280595,Wired Headphones,1,11.99,11/13/19 12:20,"200 Spruce St, San Francisco, CA 94016" -280596,Wired Headphones,1,11.99,11/12/19 19:01,"491 2nd St, New York City, NY 10001" -280597,Wired Headphones,1,11.99,11/13/19 19:11,"496 Meadow St, Boston, MA 02215" -280598,27in FHD Monitor,1,149.99,11/14/19 12:10,"85 Madison St, Dallas, TX 75001" -280599,Wired Headphones,1,11.99,11/16/19 18:50,"587 Washington St, Los Angeles, CA 90001" -280600,27in 4K Gaming Monitor,1,389.99,11/12/19 00:16,"270 Dogwood St, Dallas, TX 75001" -280601,Lightning Charging Cable,1,14.95,11/25/19 21:18,"921 Highland St, San Francisco, CA 94016" -280602,AA Batteries (4-pack),1,3.84,11/15/19 23:30,"594 Lake St, New York City, NY 10001" -280603,Lightning Charging Cable,1,14.95,11/04/19 13:52,"336 Sunset St, Seattle, WA 98101" -280604,34in Ultrawide Monitor,1,379.99,11/25/19 19:05,"137 13th St, Boston, MA 02215" -280605,Lightning Charging Cable,1,14.95,11/26/19 11:46,"80 10th St, New York City, NY 10001" -280606,USB-C Charging Cable,1,11.95,11/01/19 19:26,"525 Cherry St, San Francisco, CA 94016" -280607,Google Phone,1,600,11/08/19 19:02,"233 Center St, San Francisco, CA 94016" -280608,27in 4K Gaming Monitor,1,389.99,11/13/19 22:30,"705 Sunset St, Portland, ME 04101" -280609,USB-C Charging Cable,1,11.95,11/30/19 21:25,"517 Highland St, San Francisco, CA 94016" -280610,Wired Headphones,1,11.99,11/14/19 00:13,"355 Hickory St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -280611,Lightning Charging Cable,1,14.95,11/21/19 10:22,"497 Lake St, Los Angeles, CA 90001" -280612,AAA Batteries (4-pack),1,2.99,11/29/19 10:07,"132 2nd St, San Francisco, CA 94016" -280613,AA Batteries (4-pack),1,3.84,11/24/19 09:59,"441 Lakeview St, Seattle, WA 98101" -280614,20in Monitor,1,109.99,11/13/19 06:12,"604 Center St, Atlanta, GA 30301" -280615,AA Batteries (4-pack),1,3.84,11/29/19 10:23,"80 Wilson St, Boston, MA 02215" -280616,AA Batteries (4-pack),1,3.84,11/02/19 15:35,"392 2nd St, San Francisco, CA 94016" -280617,AA Batteries (4-pack),1,3.84,11/02/19 15:20,"708 10th St, New York City, NY 10001" -280618,iPhone,1,700,11/20/19 16:24,"920 Washington St, San Francisco, CA 94016" -280619,Apple Airpods Headphones,1,150,11/13/19 19:12,"348 Madison St, Los Angeles, CA 90001" -280620,Lightning Charging Cable,1,14.95,11/26/19 10:26,"768 Maple St, Los Angeles, CA 90001" -280621,Bose SoundSport Headphones,1,99.99,11/02/19 05:51,"1 Hill St, San Francisco, CA 94016" -280622,USB-C Charging Cable,1,11.95,11/05/19 21:12,"424 14th St, Boston, MA 02215" -280623,Apple Airpods Headphones,1,150,11/02/19 09:17,"822 West St, Los Angeles, CA 90001" -280624,Wired Headphones,1,11.99,11/11/19 15:44,"613 Center St, Boston, MA 02215" -280625,AAA Batteries (4-pack),3,2.99,11/14/19 11:50,"28 10th St, Seattle, WA 98101" -280626,Wired Headphones,1,11.99,11/05/19 20:00,"229 Park St, Seattle, WA 98101" -280627,Apple Airpods Headphones,1,150,11/21/19 21:18,"608 Jackson St, Seattle, WA 98101" -280628,AA Batteries (4-pack),1,3.84,11/22/19 22:31,"4 North St, Portland, ME 04101" -280629,Apple Airpods Headphones,1,150,11/22/19 21:54,"113 Spruce St, Los Angeles, CA 90001" -280630,20in Monitor,1,109.99,11/24/19 14:23,"996 Cherry St, San Francisco, CA 94016" -280631,Lightning Charging Cable,1,14.95,11/28/19 17:21,"480 5th St, Austin, TX 73301" -280632,AAA Batteries (4-pack),2,2.99,11/26/19 18:34,"689 Church St, Boston, MA 02215" -280633,Wired Headphones,1,11.99,11/14/19 15:48,"953 Jackson St, Los Angeles, CA 90001" -280634,AAA Batteries (4-pack),1,2.99,11/18/19 13:43,"735 4th St, Los Angeles, CA 90001" -280635,Wired Headphones,1,11.99,11/12/19 13:35,"95 1st St, Dallas, TX 75001" -280636,Apple Airpods Headphones,1,150,11/14/19 23:27,"714 River St, Austin, TX 73301" -280637,AA Batteries (4-pack),1,3.84,11/03/19 11:11,"916 Jackson St, Los Angeles, CA 90001" -280638,Wired Headphones,1,11.99,11/12/19 14:58,"949 14th St, Los Angeles, CA 90001" -280639,34in Ultrawide Monitor,1,379.99,11/03/19 18:28,"180 10th St, Portland, OR 97035" -280640,Vareebadd Phone,1,400,11/26/19 12:33,"244 Lakeview St, Austin, TX 73301" -280640,Wired Headphones,1,11.99,11/26/19 12:33,"244 Lakeview St, Austin, TX 73301" -280641,Apple Airpods Headphones,1,150,11/27/19 12:03,"812 Highland St, New York City, NY 10001" -280642,27in FHD Monitor,1,149.99,11/16/19 22:39,"491 Cherry St, Atlanta, GA 30301" -280643,34in Ultrawide Monitor,1,379.99,11/29/19 15:21,"304 Adams St, San Francisco, CA 94016" -280644,27in 4K Gaming Monitor,1,389.99,11/20/19 14:54,"227 Spruce St, Portland, OR 97035" -280645,AA Batteries (4-pack),1,3.84,11/30/19 10:25,"758 Hickory St, Los Angeles, CA 90001" -280646,AAA Batteries (4-pack),1,2.99,11/29/19 08:36,"360 Park St, Los Angeles, CA 90001" -280647,iPhone,1,700,11/27/19 09:02,"478 12th St, New York City, NY 10001" -280647,Lightning Charging Cable,1,14.95,11/27/19 09:02,"478 12th St, New York City, NY 10001" -280647,Apple Airpods Headphones,1,150,11/27/19 09:02,"478 12th St, New York City, NY 10001" -280648,Apple Airpods Headphones,1,150,11/11/19 16:09,"811 South St, Austin, TX 73301" -280649,AA Batteries (4-pack),1,3.84,11/22/19 09:14,"893 7th St, San Francisco, CA 94016" -280649,Apple Airpods Headphones,1,150,11/22/19 09:14,"893 7th St, San Francisco, CA 94016" -280650,AA Batteries (4-pack),1,3.84,11/02/19 17:29,"462 Park St, Boston, MA 02215" -280651,USB-C Charging Cable,1,11.95,11/10/19 21:01,"943 Church St, Boston, MA 02215" -280652,Lightning Charging Cable,1,14.95,11/13/19 09:19,"749 Jefferson St, Atlanta, GA 30301" -280653,USB-C Charging Cable,1,11.95,11/16/19 23:24,"207 Jackson St, Boston, MA 02215" -280654,Apple Airpods Headphones,1,150,11/21/19 13:56,"812 Dogwood St, Boston, MA 02215" -280655,AA Batteries (4-pack),1,3.84,11/07/19 16:55,"148 11th St, New York City, NY 10001" -280656,Flatscreen TV,1,300,11/02/19 07:08,"773 Jackson St, Seattle, WA 98101" -280657,AA Batteries (4-pack),1,3.84,11/20/19 11:05,"94 Forest St, Portland, ME 04101" -280658,ThinkPad Laptop,1,999.99,11/14/19 12:04,"424 Johnson St, Atlanta, GA 30301" -280659,34in Ultrawide Monitor,1,379.99,11/19/19 08:28,"472 Madison St, Los Angeles, CA 90001" -280660,20in Monitor,1,109.99,11/19/19 17:22,"937 Johnson St, Los Angeles, CA 90001" -280661,USB-C Charging Cable,1,11.95,11/08/19 10:14,"733 Jackson St, Seattle, WA 98101" -280662,AAA Batteries (4-pack),1,2.99,11/10/19 15:11,"519 1st St, San Francisco, CA 94016" -280663,Flatscreen TV,1,300,11/04/19 16:10,"713 Church St, San Francisco, CA 94016" -280664,Bose SoundSport Headphones,1,99.99,11/23/19 00:03,"718 Willow St, San Francisco, CA 94016" -280665,USB-C Charging Cable,1,11.95,11/12/19 10:42,"724 Church St, Seattle, WA 98101" -280666,AAA Batteries (4-pack),3,2.99,11/03/19 02:55,"618 North St, Los Angeles, CA 90001" -280667,34in Ultrawide Monitor,1,379.99,11/05/19 18:30,"461 Lakeview St, Atlanta, GA 30301" -280668,USB-C Charging Cable,1,11.95,11/17/19 16:41,"150 14th St, Los Angeles, CA 90001" -280669,USB-C Charging Cable,2,11.95,11/22/19 18:53,"156 4th St, San Francisco, CA 94016" -280670,Lightning Charging Cable,1,14.95,11/24/19 18:23,"303 Hill St, San Francisco, CA 94016" -280671,Wired Headphones,1,11.99,11/12/19 20:40,"80 12th St, New York City, NY 10001" -280672,34in Ultrawide Monitor,1,379.99,11/01/19 13:41,"775 West St, Boston, MA 02215" -280673,Bose SoundSport Headphones,1,99.99,11/23/19 09:36,"539 Main St, San Francisco, CA 94016" -280674,AA Batteries (4-pack),1,3.84,11/07/19 18:25,"967 4th St, Portland, OR 97035" -280675,AA Batteries (4-pack),1,3.84,11/25/19 16:27,"648 14th St, Atlanta, GA 30301" -280676,Wired Headphones,1,11.99,11/07/19 09:43,"722 North St, Atlanta, GA 30301" -280677,AAA Batteries (4-pack),1,2.99,11/16/19 20:00,"894 Church St, San Francisco, CA 94016" -280678,34in Ultrawide Monitor,1,379.99,11/07/19 10:32,"797 10th St, San Francisco, CA 94016" -280679,Bose SoundSport Headphones,1,99.99,11/05/19 11:44,"855 Willow St, Atlanta, GA 30301" -280680,USB-C Charging Cable,1,11.95,11/22/19 16:41,"642 North St, Atlanta, GA 30301" -280681,iPhone,1,700,11/26/19 11:02,"613 Wilson St, Dallas, TX 75001" -280681,Lightning Charging Cable,1,14.95,11/26/19 11:02,"613 Wilson St, Dallas, TX 75001" -280681,Wired Headphones,1,11.99,11/26/19 11:02,"613 Wilson St, Dallas, TX 75001" -280682,USB-C Charging Cable,1,11.95,11/12/19 15:11,"70 Main St, Boston, MA 02215" -280683,Apple Airpods Headphones,1,150,11/23/19 12:43,"593 Washington St, Los Angeles, CA 90001" -280684,AA Batteries (4-pack),1,3.84,11/05/19 21:53,"7 6th St, Los Angeles, CA 90001" -280685,Bose SoundSport Headphones,1,99.99,11/01/19 13:27,"55 Willow St, New York City, NY 10001" -280686,Apple Airpods Headphones,1,150,11/05/19 23:27,"307 Washington St, San Francisco, CA 94016" -280687,Lightning Charging Cable,1,14.95,11/21/19 06:24,"191 Lakeview St, Boston, MA 02215" -280688,Bose SoundSport Headphones,1,99.99,11/20/19 21:39,"491 Hill St, Atlanta, GA 30301" -280689,34in Ultrawide Monitor,2,379.99,11/29/19 14:14,"43 10th St, Portland, OR 97035" -280690,USB-C Charging Cable,1,11.95,11/04/19 19:34,"727 13th St, Atlanta, GA 30301" -280691,Google Phone,1,600,11/19/19 19:40,"342 Forest St, Los Angeles, CA 90001" -280692,Flatscreen TV,1,300,11/01/19 11:40,"787 South St, Portland, OR 97035" -280693,USB-C Charging Cable,1,11.95,11/19/19 10:53,"291 Hill St, San Francisco, CA 94016" -280694,20in Monitor,1,109.99,11/20/19 09:19,"653 2nd St, Austin, TX 73301" -280695,Lightning Charging Cable,1,14.95,11/06/19 15:16,"879 Cedar St, San Francisco, CA 94016" -280696,Bose SoundSport Headphones,1,99.99,11/02/19 12:20,"431 Willow St, San Francisco, CA 94016" -280697,Flatscreen TV,1,300,11/22/19 14:25,"200 9th St, Boston, MA 02215" -280698,Lightning Charging Cable,1,14.95,11/15/19 16:36,"996 Willow St, Los Angeles, CA 90001" -,,,,, -280699,AA Batteries (4-pack),1,3.84,11/15/19 10:16,"292 Chestnut St, Los Angeles, CA 90001" -280700,20in Monitor,1,109.99,11/03/19 21:40,"828 13th St, Los Angeles, CA 90001" -280701,USB-C Charging Cable,1,11.95,11/29/19 13:39,"167 12th St, San Francisco, CA 94016" -280702,Wired Headphones,1,11.99,11/07/19 00:07,"592 Main St, Los Angeles, CA 90001" -280703,USB-C Charging Cable,1,11.95,11/22/19 23:51,"244 Main St, Portland, OR 97035" -280704,USB-C Charging Cable,1,11.95,11/25/19 21:53,"703 Lake St, New York City, NY 10001" -280705,AAA Batteries (4-pack),2,2.99,11/02/19 19:39,"607 Elm St, New York City, NY 10001" -280706,AA Batteries (4-pack),1,3.84,11/19/19 19:16,"425 South St, Dallas, TX 75001" -280707,USB-C Charging Cable,1,11.95,11/06/19 12:40,"369 North St, Boston, MA 02215" -280708,20in Monitor,1,109.99,11/28/19 20:37,"764 Maple St, New York City, NY 10001" -280709,AAA Batteries (4-pack),1,2.99,11/24/19 15:15,"395 10th St, Los Angeles, CA 90001" -280710,Lightning Charging Cable,1,14.95,11/10/19 21:01,"979 Forest St, Atlanta, GA 30301" -280711,Macbook Pro Laptop,1,1700,11/05/19 09:23,"359 9th St, Boston, MA 02215" -280712,Lightning Charging Cable,1,14.95,11/27/19 11:11,"938 5th St, San Francisco, CA 94016" -280713,Lightning Charging Cable,1,14.95,11/12/19 19:47,"748 Hickory St, San Francisco, CA 94016" -280714,Wired Headphones,1,11.99,11/19/19 22:21,"85 Maple St, Los Angeles, CA 90001" -280715,USB-C Charging Cable,1,11.95,11/20/19 09:54,"640 Willow St, Los Angeles, CA 90001" -280716,USB-C Charging Cable,1,11.95,11/02/19 14:44,"278 10th St, San Francisco, CA 94016" -280717,AA Batteries (4-pack),1,3.84,11/09/19 15:02,"584 Washington St, Portland, OR 97035" -280718,Wired Headphones,1,11.99,11/13/19 07:44,"163 14th St, Los Angeles, CA 90001" -280719,Lightning Charging Cable,1,14.95,11/16/19 10:48,"718 Maple St, Boston, MA 02215" -280720,Wired Headphones,1,11.99,11/26/19 15:54,"594 Cherry St, Dallas, TX 75001" -280721,AAA Batteries (4-pack),1,2.99,11/16/19 02:20,"924 River St, Los Angeles, CA 90001" -280722,Lightning Charging Cable,1,14.95,11/14/19 16:35,"811 North St, New York City, NY 10001" -280723,27in FHD Monitor,1,149.99,11/26/19 18:35,"119 Spruce St, Seattle, WA 98101" -280724,Vareebadd Phone,1,400,11/05/19 15:55,"467 Washington St, Atlanta, GA 30301" -280725,AAA Batteries (4-pack),1,2.99,11/05/19 21:29,"208 7th St, Austin, TX 73301" -280726,AAA Batteries (4-pack),1,2.99,11/05/19 13:38,"729 River St, San Francisco, CA 94016" -280727,Wired Headphones,1,11.99,11/01/19 20:47,"584 Ridge St, San Francisco, CA 94016" -280728,Wired Headphones,1,11.99,11/27/19 18:11,"748 Jackson St, New York City, NY 10001" -280729,Macbook Pro Laptop,1,1700,11/23/19 14:16,"714 6th St, Austin, TX 73301" -280730,AA Batteries (4-pack),1,3.84,11/20/19 08:13,"294 Forest St, Los Angeles, CA 90001" -280731,Flatscreen TV,1,300,11/09/19 18:34,"707 Willow St, Portland, OR 97035" -280732,USB-C Charging Cable,1,11.95,11/02/19 15:57,"789 9th St, New York City, NY 10001" -280733,Lightning Charging Cable,1,14.95,11/30/19 16:59,"181 Johnson St, Austin, TX 73301" -280734,AAA Batteries (4-pack),1,2.99,11/24/19 14:41,"199 Main St, Los Angeles, CA 90001" -280735,Wired Headphones,1,11.99,11/01/19 20:28,"672 Walnut St, Atlanta, GA 30301" -280736,USB-C Charging Cable,1,11.95,11/24/19 16:44,"542 Willow St, San Francisco, CA 94016" -280737,Flatscreen TV,1,300,11/06/19 09:52,"64 Lakeview St, Dallas, TX 75001" -280738,Bose SoundSport Headphones,1,99.99,11/03/19 08:24,"723 Hickory St, Boston, MA 02215" -280739,Bose SoundSport Headphones,1,99.99,11/21/19 20:10,"514 River St, Boston, MA 02215" -280740,iPhone,1,700,11/12/19 14:07,"341 Lake St, Dallas, TX 75001" -280740,Apple Airpods Headphones,1,150,11/12/19 14:07,"341 Lake St, Dallas, TX 75001" -280741,iPhone,1,700,11/07/19 09:44,"879 14th St, San Francisco, CA 94016" -280742,Macbook Pro Laptop,1,1700,11/08/19 18:09,"142 Spruce St, Portland, OR 97035" -280743,USB-C Charging Cable,1,11.95,11/13/19 18:10,"317 13th St, San Francisco, CA 94016" -280744,ThinkPad Laptop,1,999.99,11/16/19 18:35,"465 11th St, New York City, NY 10001" -280745,27in 4K Gaming Monitor,1,389.99,11/21/19 19:10,"100 Dogwood St, Portland, OR 97035" -280746,Vareebadd Phone,1,400,11/05/19 09:39,"527 Main St, Atlanta, GA 30301" -280747,Lightning Charging Cable,1,14.95,11/21/19 15:39,"62 Park St, San Francisco, CA 94016" -280748,Bose SoundSport Headphones,1,99.99,11/03/19 19:11,"623 Johnson St, Dallas, TX 75001" -280749,Lightning Charging Cable,1,14.95,11/03/19 17:22,"390 Cherry St, San Francisco, CA 94016" -280750,AAA Batteries (4-pack),1,2.99,11/18/19 14:22,"101 Park St, Seattle, WA 98101" -280751,USB-C Charging Cable,1,11.95,11/21/19 13:08,"62 Pine St, Los Angeles, CA 90001" -280752,Lightning Charging Cable,1,14.95,11/08/19 12:44,"650 Main St, Seattle, WA 98101" -280753,USB-C Charging Cable,1,11.95,11/30/19 18:27,"537 4th St, San Francisco, CA 94016" -280754,Lightning Charging Cable,1,14.95,11/15/19 13:07,"928 6th St, San Francisco, CA 94016" -280755,USB-C Charging Cable,1,11.95,11/13/19 02:18,"175 Jefferson St, Boston, MA 02215" -280756,Bose SoundSport Headphones,1,99.99,11/14/19 11:15,"457 Wilson St, Portland, OR 97035" -280757,27in 4K Gaming Monitor,1,389.99,11/23/19 21:52,"854 Pine St, San Francisco, CA 94016" -280758,27in 4K Gaming Monitor,1,389.99,11/04/19 12:30,"419 4th St, Los Angeles, CA 90001" -280759,Bose SoundSport Headphones,1,99.99,11/06/19 14:40,"525 9th St, Boston, MA 02215" -280760,Apple Airpods Headphones,1,150,11/21/19 19:48,"764 Main St, New York City, NY 10001" -280761,AA Batteries (4-pack),1,3.84,11/01/19 19:13,"269 Dogwood St, San Francisco, CA 94016" -280762,AAA Batteries (4-pack),4,2.99,11/24/19 15:55,"665 South St, Dallas, TX 75001" -280763,Apple Airpods Headphones,1,150,11/11/19 09:08,"742 10th St, Portland, OR 97035" -280764,AAA Batteries (4-pack),3,2.99,11/21/19 17:26,"556 Spruce St, Los Angeles, CA 90001" -280764,Wired Headphones,1,11.99,11/21/19 17:26,"556 Spruce St, Los Angeles, CA 90001" -280765,AA Batteries (4-pack),1,3.84,11/10/19 19:36,"515 Highland St, Los Angeles, CA 90001" -280766,USB-C Charging Cable,1,11.95,11/07/19 10:52,"565 Johnson St, Dallas, TX 75001" -280767,27in 4K Gaming Monitor,1,389.99,11/04/19 20:06,"506 Ridge St, Austin, TX 73301" -280768,iPhone,1,700,11/23/19 10:21,"703 Forest St, Los Angeles, CA 90001" -280769,27in FHD Monitor,1,149.99,11/05/19 14:01,"102 9th St, Seattle, WA 98101" -280769,20in Monitor,1,109.99,11/05/19 14:01,"102 9th St, Seattle, WA 98101" -280770,LG Dryer,1,600.0,11/23/19 13:44,"908 6th St, San Francisco, CA 94016" -280771,Apple Airpods Headphones,1,150,11/13/19 18:46,"289 2nd St, Los Angeles, CA 90001" -280772,Apple Airpods Headphones,1,150,11/06/19 18:44,"276 Jackson St, San Francisco, CA 94016" -280773,AAA Batteries (4-pack),1,2.99,11/02/19 00:30,"72 North St, Dallas, TX 75001" -280774,34in Ultrawide Monitor,1,379.99,11/01/19 21:38,"509 Jackson St, Seattle, WA 98101" -280775,27in FHD Monitor,1,149.99,11/26/19 19:22,"724 Forest St, Los Angeles, CA 90001" -280776,USB-C Charging Cable,1,11.95,11/21/19 11:56,"917 Jefferson St, Boston, MA 02215" -280777,Lightning Charging Cable,1,14.95,11/25/19 08:24,"974 2nd St, Atlanta, GA 30301" -280778,Flatscreen TV,1,300,11/16/19 05:28,"966 4th St, Boston, MA 02215" -280779,27in FHD Monitor,1,149.99,11/24/19 15:13,"871 Hill St, San Francisco, CA 94016" -280780,Lightning Charging Cable,1,14.95,11/21/19 13:43,"493 West St, Boston, MA 02215" -280781,Bose SoundSport Headphones,1,99.99,11/19/19 14:18,"681 Spruce St, New York City, NY 10001" -280782,Lightning Charging Cable,1,14.95,11/17/19 18:11,"878 North St, Portland, OR 97035" -280783,iPhone,1,700,11/18/19 20:41,"475 10th St, Seattle, WA 98101" -280783,Lightning Charging Cable,2,14.95,11/18/19 20:41,"475 10th St, Seattle, WA 98101" -280784,Apple Airpods Headphones,1,150,11/26/19 20:39,"466 10th St, San Francisco, CA 94016" -280785,AAA Batteries (4-pack),1,2.99,11/01/19 17:59,"371 Johnson St, Boston, MA 02215" -280786,USB-C Charging Cable,1,11.95,11/24/19 21:51,"614 Lakeview St, San Francisco, CA 94016" -280787,Lightning Charging Cable,1,14.95,11/15/19 14:57,"554 Walnut St, Atlanta, GA 30301" -280788,Lightning Charging Cable,1,14.95,11/22/19 21:43,"423 Jackson St, Seattle, WA 98101" -280789,AA Batteries (4-pack),1,3.84,11/13/19 16:17,"735 9th St, Atlanta, GA 30301" -280790,27in FHD Monitor,1,149.99,11/15/19 21:06,"606 Lincoln St, San Francisco, CA 94016" -280791,USB-C Charging Cable,1,11.95,11/11/19 23:59,"23 Wilson St, Atlanta, GA 30301" -280792,AAA Batteries (4-pack),1,2.99,11/11/19 21:36,"658 1st St, San Francisco, CA 94016" -280793,Bose SoundSport Headphones,1,99.99,11/26/19 17:51,"566 9th St, Los Angeles, CA 90001" -280794,USB-C Charging Cable,2,11.95,11/04/19 17:48,"441 Cherry St, Boston, MA 02215" -,,,,, -280795,iPhone,1,700,11/08/19 19:00,"271 Washington St, San Francisco, CA 94016" -280796,iPhone,1,700,11/27/19 20:47,"885 2nd St, San Francisco, CA 94016" -280797,AA Batteries (4-pack),2,3.84,11/26/19 21:50,"39 6th St, New York City, NY 10001" -280798,USB-C Charging Cable,1,11.95,11/24/19 07:54,"936 Spruce St, Seattle, WA 98101" -280799,USB-C Charging Cable,2,11.95,11/01/19 16:21,"851 Walnut St, Los Angeles, CA 90001" -,,,,, -280800,20in Monitor,1,109.99,11/30/19 15:27,"388 Chestnut St, Atlanta, GA 30301" -280801,Lightning Charging Cable,1,14.95,11/27/19 16:19,"560 Lincoln St, San Francisco, CA 94016" -280802,Wired Headphones,1,11.99,11/16/19 18:37,"171 Highland St, Boston, MA 02215" -280803,AA Batteries (4-pack),4,3.84,11/17/19 14:12,"471 Jefferson St, Dallas, TX 75001" -280804,AAA Batteries (4-pack),1,2.99,11/23/19 21:52,"981 Center St, Atlanta, GA 30301" -280805,Lightning Charging Cable,1,14.95,11/09/19 01:06,"170 Lake St, San Francisco, CA 94016" -280806,USB-C Charging Cable,1,11.95,11/24/19 04:06,"550 Johnson St, New York City, NY 10001" -280807,Apple Airpods Headphones,1,150,11/09/19 00:14,"186 West St, San Francisco, CA 94016" -280808,USB-C Charging Cable,1,11.95,11/03/19 12:13,"421 4th St, Seattle, WA 98101" -280809,Lightning Charging Cable,1,14.95,12/01/19 02:33,"368 7th St, Dallas, TX 75001" -280810,USB-C Charging Cable,2,11.95,11/13/19 12:49,"775 2nd St, San Francisco, CA 94016" -280811,20in Monitor,1,109.99,11/03/19 21:51,"937 Meadow St, San Francisco, CA 94016" -280812,Wired Headphones,1,11.99,11/24/19 20:55,"992 Elm St, Portland, OR 97035" -280813,Lightning Charging Cable,1,14.95,11/18/19 14:01,"681 Maple St, Atlanta, GA 30301" -280814,Bose SoundSport Headphones,1,99.99,11/19/19 11:15,"558 8th St, San Francisco, CA 94016" -280815,Bose SoundSport Headphones,1,99.99,11/28/19 23:49,"447 North St, Los Angeles, CA 90001" -280816,AAA Batteries (4-pack),1,2.99,11/01/19 18:03,"958 Walnut St, Seattle, WA 98101" -280817,LG Dryer,1,600.0,11/16/19 11:09,"739 Washington St, Austin, TX 73301" -280818,Bose SoundSport Headphones,1,99.99,11/22/19 20:13,"913 Spruce St, Boston, MA 02215" -280819,AAA Batteries (4-pack),1,2.99,11/02/19 21:00,"166 Dogwood St, San Francisco, CA 94016" -280820,34in Ultrawide Monitor,1,379.99,11/20/19 21:06,"490 Johnson St, New York City, NY 10001" -280821,Wired Headphones,1,11.99,11/22/19 00:46,"812 Lincoln St, Boston, MA 02215" -280822,AA Batteries (4-pack),1,3.84,11/12/19 09:15,"806 Forest St, San Francisco, CA 94016" -280823,Google Phone,1,600,11/08/19 18:49,"457 9th St, New York City, NY 10001" -280824,Apple Airpods Headphones,1,150,11/24/19 17:18,"803 Jackson St, Dallas, TX 75001" -280825,iPhone,1,700,11/11/19 14:29,"360 Walnut St, Los Angeles, CA 90001" -280826,USB-C Charging Cable,1,11.95,11/03/19 12:41,"809 Willow St, New York City, NY 10001" -280827,Flatscreen TV,1,300,11/02/19 09:21,"13 Ridge St, Atlanta, GA 30301" -280828,Wired Headphones,1,11.99,11/16/19 07:27,"488 7th St, Dallas, TX 75001" -280829,Apple Airpods Headphones,1,150,11/17/19 09:03,"949 Center St, Seattle, WA 98101" -280830,AAA Batteries (4-pack),1,2.99,11/21/19 23:15,"806 Sunset St, New York City, NY 10001" -280831,Apple Airpods Headphones,1,150,11/13/19 18:34,"300 Church St, Dallas, TX 75001" -280832,Wired Headphones,1,11.99,11/15/19 13:46,"320 Maple St, San Francisco, CA 94016" -280833,AAA Batteries (4-pack),1,2.99,11/04/19 08:19,"40 South St, Seattle, WA 98101" -280834,AA Batteries (4-pack),1,3.84,11/13/19 14:15,"82 12th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -280835,27in FHD Monitor,1,149.99,11/24/19 09:39,"622 Spruce St, Seattle, WA 98101" -280836,AA Batteries (4-pack),1,3.84,11/11/19 17:23,"999 7th St, San Francisco, CA 94016" -280837,Wired Headphones,1,11.99,11/08/19 19:10,"941 9th St, Boston, MA 02215" -280838,LG Washing Machine,1,600.0,11/16/19 07:02,"508 Pine St, Atlanta, GA 30301" -280839,USB-C Charging Cable,2,11.95,11/30/19 19:22,"52 Jefferson St, San Francisco, CA 94016" -280840,iPhone,1,700,11/12/19 14:09,"67 Dogwood St, San Francisco, CA 94016" -280841,USB-C Charging Cable,1,11.95,11/27/19 18:18,"139 7th St, Portland, OR 97035" -280842,AAA Batteries (4-pack),1,2.99,11/14/19 10:18,"137 West St, Los Angeles, CA 90001" -280843,AA Batteries (4-pack),1,3.84,11/18/19 20:11,"757 Maple St, Portland, ME 04101" -280844,Lightning Charging Cable,1,14.95,11/30/19 20:50,"992 West St, New York City, NY 10001" -280845,Wired Headphones,1,11.99,11/23/19 20:19,"881 Cedar St, Los Angeles, CA 90001" -280846,USB-C Charging Cable,1,11.95,11/02/19 10:32,"17 Main St, San Francisco, CA 94016" -280847,AAA Batteries (4-pack),1,2.99,11/30/19 05:58,"851 Jackson St, New York City, NY 10001" -280848,Wired Headphones,1,11.99,11/25/19 10:37,"917 Park St, Los Angeles, CA 90001" -280849,AA Batteries (4-pack),1,3.84,11/27/19 19:20,"388 Hickory St, Austin, TX 73301" -280850,AAA Batteries (4-pack),2,2.99,11/03/19 20:38,"350 West St, Seattle, WA 98101" -280851,Wired Headphones,1,11.99,11/03/19 14:18,"749 Main St, Los Angeles, CA 90001" -280851,USB-C Charging Cable,1,11.95,11/03/19 14:18,"749 Main St, Los Angeles, CA 90001" -280852,20in Monitor,1,109.99,11/05/19 21:36,"756 Jackson St, Austin, TX 73301" -280853,AAA Batteries (4-pack),1,2.99,11/03/19 11:18,"337 Jackson St, Boston, MA 02215" -280854,AAA Batteries (4-pack),1,2.99,11/13/19 20:49,"679 14th St, San Francisco, CA 94016" -280855,USB-C Charging Cable,1,11.95,11/12/19 17:42,"268 7th St, Atlanta, GA 30301" -280856,Flatscreen TV,1,300,11/15/19 11:13,"857 6th St, Dallas, TX 75001" -280857,Wired Headphones,1,11.99,11/08/19 18:00,"797 4th St, Los Angeles, CA 90001" -280858,Bose SoundSport Headphones,1,99.99,11/04/19 18:53,"679 Lincoln St, Dallas, TX 75001" -280859,Lightning Charging Cable,1,14.95,11/20/19 23:15,"859 10th St, New York City, NY 10001" -280860,Lightning Charging Cable,1,14.95,11/11/19 20:39,"171 Washington St, San Francisco, CA 94016" -280861,AA Batteries (4-pack),3,3.84,11/22/19 11:11,"748 River St, Austin, TX 73301" -280862,Apple Airpods Headphones,1,150,11/19/19 15:05,"902 Church St, San Francisco, CA 94016" -280863,USB-C Charging Cable,2,11.95,11/07/19 22:03,"860 Cherry St, San Francisco, CA 94016" -280864,AAA Batteries (4-pack),1,2.99,11/28/19 17:31,"579 1st St, San Francisco, CA 94016" -280865,Lightning Charging Cable,2,14.95,11/25/19 23:40,"810 River St, Dallas, TX 75001" -280866,AAA Batteries (4-pack),1,2.99,11/12/19 15:51,"630 Forest St, San Francisco, CA 94016" -280867,USB-C Charging Cable,1,11.95,11/05/19 11:34,"879 Cherry St, Los Angeles, CA 90001" -280868,USB-C Charging Cable,1,11.95,11/21/19 13:49,"150 West St, Boston, MA 02215" -280869,ThinkPad Laptop,1,999.99,11/27/19 08:29,"227 Church St, San Francisco, CA 94016" -280870,AA Batteries (4-pack),1,3.84,11/30/19 19:12,"970 Cherry St, Portland, ME 04101" -280871,Wired Headphones,1,11.99,11/16/19 19:15,"407 Forest St, Boston, MA 02215" -280872,Apple Airpods Headphones,1,150,11/14/19 00:11,"6 9th St, Austin, TX 73301" -280873,AA Batteries (4-pack),2,3.84,11/24/19 18:16,"277 Adams St, San Francisco, CA 94016" -280874,USB-C Charging Cable,1,11.95,11/25/19 13:16,"49 Cedar St, Atlanta, GA 30301" -280875,27in 4K Gaming Monitor,1,389.99,11/23/19 08:38,"350 Meadow St, San Francisco, CA 94016" -280876,27in 4K Gaming Monitor,1,389.99,11/06/19 03:03,"949 9th St, San Francisco, CA 94016" -280877,AA Batteries (4-pack),3,3.84,11/18/19 19:24,"206 South St, New York City, NY 10001" -280878,USB-C Charging Cable,1,11.95,11/21/19 06:05,"873 Hickory St, Boston, MA 02215" -280879,USB-C Charging Cable,1,11.95,11/29/19 18:52,"314 Center St, Boston, MA 02215" -280880,Lightning Charging Cable,1,14.95,11/19/19 17:09,"160 Highland St, Los Angeles, CA 90001" -280881,Wired Headphones,1,11.99,11/10/19 11:54,"882 Wilson St, San Francisco, CA 94016" -280882,Lightning Charging Cable,1,14.95,11/26/19 14:04,"55 7th St, Seattle, WA 98101" -280883,Lightning Charging Cable,1,14.95,11/06/19 10:43,"635 Main St, Boston, MA 02215" -280883,AA Batteries (4-pack),2,3.84,11/06/19 10:43,"635 Main St, Boston, MA 02215" -280884,AAA Batteries (4-pack),2,2.99,11/07/19 12:07,"929 Forest St, Boston, MA 02215" -280885,iPhone,1,700,11/01/19 17:35,"468 5th St, Portland, OR 97035" -280886,Google Phone,1,600,11/09/19 14:57,"46 Highland St, Seattle, WA 98101" -280887,USB-C Charging Cable,1,11.95,11/06/19 18:29,"764 Jefferson St, San Francisco, CA 94016" -280888,iPhone,1,700,11/25/19 21:34,"510 10th St, Los Angeles, CA 90001" -280889,Bose SoundSport Headphones,1,99.99,11/17/19 21:30,"860 1st St, Atlanta, GA 30301" -280890,AAA Batteries (4-pack),1,2.99,11/11/19 09:52,"856 6th St, Portland, OR 97035" -280891,34in Ultrawide Monitor,1,379.99,11/12/19 19:40,"548 Chestnut St, Seattle, WA 98101" -280892,Wired Headphones,1,11.99,11/22/19 07:48,"898 13th St, Seattle, WA 98101" -280893,USB-C Charging Cable,1,11.95,11/23/19 09:38,"835 Madison St, Seattle, WA 98101" -280894,AA Batteries (4-pack),1,3.84,11/11/19 09:43,"51 Washington St, San Francisco, CA 94016" -280895,Wired Headphones,1,11.99,11/14/19 17:55,"770 1st St, San Francisco, CA 94016" -280896,Google Phone,1,600,11/16/19 18:41,"54 Walnut St, San Francisco, CA 94016" -280897,AAA Batteries (4-pack),1,2.99,11/25/19 19:19,"380 Main St, Los Angeles, CA 90001" -280898,Wired Headphones,1,11.99,11/13/19 22:04,"164 Spruce St, San Francisco, CA 94016" -280899,Wired Headphones,1,11.99,11/02/19 23:59,"131 2nd St, San Francisco, CA 94016" -280900,Wired Headphones,1,11.99,11/24/19 18:25,"332 Johnson St, Dallas, TX 75001" -280901,AAA Batteries (4-pack),1,2.99,11/07/19 12:53,"906 Pine St, Los Angeles, CA 90001" -280902,AAA Batteries (4-pack),2,2.99,11/26/19 22:50,"182 Elm St, Boston, MA 02215" -280903,Google Phone,1,600,11/24/19 22:00,"184 Elm St, New York City, NY 10001" -280903,Wired Headphones,1,11.99,11/24/19 22:00,"184 Elm St, New York City, NY 10001" -280904,Lightning Charging Cable,1,14.95,11/28/19 17:20,"792 Chestnut St, Los Angeles, CA 90001" -280905,AAA Batteries (4-pack),1,2.99,11/20/19 16:45,"250 5th St, Austin, TX 73301" -280906,34in Ultrawide Monitor,1,379.99,11/17/19 09:06,"64 Church St, Seattle, WA 98101" -280907,Apple Airpods Headphones,1,150,11/29/19 18:37,"675 South St, Boston, MA 02215" -280908,Lightning Charging Cable,1,14.95,11/13/19 08:34,"381 Jefferson St, Dallas, TX 75001" -280909,AAA Batteries (4-pack),1,2.99,11/09/19 14:28,"704 North St, Atlanta, GA 30301" -280910,AAA Batteries (4-pack),1,2.99,11/23/19 20:20,"99 Church St, Seattle, WA 98101" -280911,27in 4K Gaming Monitor,1,389.99,11/06/19 23:12,"868 8th St, San Francisco, CA 94016" -280912,20in Monitor,1,109.99,11/07/19 20:37,"903 4th St, San Francisco, CA 94016" -280913,AA Batteries (4-pack),1,3.84,11/04/19 17:45,"311 Lake St, Dallas, TX 75001" -280914,Wired Headphones,1,11.99,11/30/19 06:37,"522 Maple St, Boston, MA 02215" -280915,20in Monitor,1,109.99,11/15/19 19:52,"853 Wilson St, San Francisco, CA 94016" -280916,AA Batteries (4-pack),1,3.84,11/08/19 08:03,"716 Hill St, Los Angeles, CA 90001" -280917,AAA Batteries (4-pack),1,2.99,11/24/19 16:34,"656 7th St, Atlanta, GA 30301" -280918,USB-C Charging Cable,1,11.95,11/02/19 22:08,"10 10th St, Dallas, TX 75001" -280919,Macbook Pro Laptop,1,1700,11/30/19 15:50,"22 5th St, Dallas, TX 75001" -280920,Google Phone,1,600,11/05/19 02:09,"393 Johnson St, San Francisco, CA 94016" -280921,Bose SoundSport Headphones,1,99.99,11/17/19 13:21,"370 11th St, Boston, MA 02215" -280922,27in FHD Monitor,1,149.99,11/25/19 20:26,"419 7th St, San Francisco, CA 94016" -280923,27in FHD Monitor,1,149.99,11/08/19 14:22,"935 Johnson St, Austin, TX 73301" -280924,ThinkPad Laptop,1,999.99,11/02/19 15:34,"99 Adams St, San Francisco, CA 94016" -280925,AA Batteries (4-pack),1,3.84,11/27/19 14:23,"595 Madison St, Boston, MA 02215" -280926,Wired Headphones,2,11.99,11/02/19 14:10,"735 13th St, Los Angeles, CA 90001" -280927,AA Batteries (4-pack),2,3.84,11/10/19 18:04,"459 Washington St, San Francisco, CA 94016" -280928,ThinkPad Laptop,1,999.99,11/14/19 21:07,"398 Johnson St, Los Angeles, CA 90001" -280929,Wired Headphones,1,11.99,11/11/19 10:23,"644 Willow St, San Francisco, CA 94016" -280930,Wired Headphones,1,11.99,11/07/19 10:31,"194 10th St, Dallas, TX 75001" -280931,USB-C Charging Cable,1,11.95,11/26/19 06:35,"436 Center St, Los Angeles, CA 90001" -280932,AAA Batteries (4-pack),1,2.99,11/21/19 12:10,"637 Ridge St, Los Angeles, CA 90001" -280933,27in 4K Gaming Monitor,1,389.99,11/28/19 14:05,"505 Chestnut St, San Francisco, CA 94016" -280934,Lightning Charging Cable,1,14.95,11/09/19 16:27,"239 Jackson St, Los Angeles, CA 90001" -280935,AAA Batteries (4-pack),1,2.99,11/10/19 23:38,"843 Madison St, Atlanta, GA 30301" -280935,USB-C Charging Cable,1,11.95,11/10/19 23:38,"843 Madison St, Atlanta, GA 30301" -280936,27in 4K Gaming Monitor,1,389.99,11/02/19 19:21,"191 Lakeview St, San Francisco, CA 94016" -280937,Google Phone,1,600,11/02/19 06:27,"15 Walnut St, Austin, TX 73301" -280938,USB-C Charging Cable,1,11.95,11/17/19 23:20,"843 13th St, Seattle, WA 98101" -280939,AAA Batteries (4-pack),2,2.99,11/03/19 09:32,"688 Pine St, Dallas, TX 75001" -280940,Bose SoundSport Headphones,1,99.99,11/24/19 17:10,"134 Jackson St, Austin, TX 73301" -280941,20in Monitor,1,109.99,11/07/19 17:31,"601 9th St, San Francisco, CA 94016" -280942,AAA Batteries (4-pack),6,2.99,11/15/19 19:11,"620 Church St, Los Angeles, CA 90001" -280943,Google Phone,1,600,11/14/19 14:58,"375 11th St, San Francisco, CA 94016" -280944,Lightning Charging Cable,1,14.95,11/03/19 21:09,"405 Church St, Seattle, WA 98101" -280945,iPhone,1,700,11/09/19 19:13,"158 Main St, Dallas, TX 75001" -280946,27in FHD Monitor,1,149.99,11/16/19 19:54,"425 4th St, Seattle, WA 98101" -280947,AAA Batteries (4-pack),1,2.99,11/03/19 18:15,"467 Washington St, Los Angeles, CA 90001" -280948,Bose SoundSport Headphones,1,99.99,11/11/19 19:10,"970 Meadow St, New York City, NY 10001" -280949,AAA Batteries (4-pack),2,2.99,11/07/19 22:25,"234 Dogwood St, San Francisco, CA 94016" -280950,Lightning Charging Cable,1,14.95,11/12/19 12:46,"931 4th St, Los Angeles, CA 90001" -280951,Lightning Charging Cable,1,14.95,11/06/19 22:17,"961 Meadow St, Los Angeles, CA 90001" -280952,20in Monitor,1,109.99,11/03/19 22:48,"958 5th St, San Francisco, CA 94016" -280953,Wired Headphones,1,11.99,11/03/19 10:19,"924 Walnut St, Los Angeles, CA 90001" -280954,AA Batteries (4-pack),1,3.84,11/06/19 14:24,"693 Washington St, San Francisco, CA 94016" -280955,Lightning Charging Cable,1,14.95,11/13/19 15:10,"834 Cherry St, Boston, MA 02215" -280956,ThinkPad Laptop,1,999.99,11/08/19 08:50,"587 Lakeview St, Boston, MA 02215" -280957,27in 4K Gaming Monitor,1,389.99,11/19/19 20:23,"509 Johnson St, Boston, MA 02215" -280958,Wired Headphones,1,11.99,11/28/19 13:06,"195 South St, San Francisco, CA 94016" -280959,Bose SoundSport Headphones,1,99.99,11/30/19 19:38,"889 Church St, Portland, OR 97035" -280960,Lightning Charging Cable,2,14.95,11/28/19 19:47,"573 2nd St, Dallas, TX 75001" -280961,Apple Airpods Headphones,1,150,11/27/19 01:22,"107 Adams St, Boston, MA 02215" -280962,AA Batteries (4-pack),1,3.84,11/07/19 20:32,"338 Center St, San Francisco, CA 94016" -280963,27in FHD Monitor,1,149.99,11/20/19 18:57,"395 Main St, San Francisco, CA 94016" -280964,AAA Batteries (4-pack),3,2.99,11/21/19 20:45,"438 Ridge St, Seattle, WA 98101" -280965,AA Batteries (4-pack),1,3.84,11/24/19 14:09,"617 Forest St, Los Angeles, CA 90001" -280966,Bose SoundSport Headphones,1,99.99,11/24/19 04:29,"855 Jackson St, New York City, NY 10001" -280967,iPhone,1,700,11/12/19 07:29,"269 Maple St, Dallas, TX 75001" -280968,Vareebadd Phone,1,400,11/09/19 07:29,"390 7th St, Boston, MA 02215" -280969,AA Batteries (4-pack),1,3.84,11/06/19 00:03,"402 Forest St, San Francisco, CA 94016" -280970,34in Ultrawide Monitor,1,379.99,11/08/19 10:46,"358 Johnson St, Los Angeles, CA 90001" -280971,Bose SoundSport Headphones,1,99.99,11/04/19 21:00,"125 Center St, Austin, TX 73301" -280972,USB-C Charging Cable,1,11.95,11/23/19 14:26,"290 Wilson St, Boston, MA 02215" -280973,LG Washing Machine,1,600.0,11/30/19 21:46,"760 9th St, Seattle, WA 98101" -280974,Wired Headphones,1,11.99,11/21/19 17:57,"581 Maple St, San Francisco, CA 94016" -280975,AA Batteries (4-pack),1,3.84,11/29/19 17:54,"443 Madison St, Austin, TX 73301" -280976,Apple Airpods Headphones,1,150,11/10/19 21:24,"761 Lakeview St, Boston, MA 02215" -280977,USB-C Charging Cable,1,11.95,11/28/19 16:14,"793 West St, Seattle, WA 98101" -280978,Apple Airpods Headphones,1,150,11/05/19 21:16,"767 10th St, Boston, MA 02215" -280979,Wired Headphones,1,11.99,11/29/19 23:38,"682 Madison St, New York City, NY 10001" -280980,AA Batteries (4-pack),1,3.84,11/10/19 09:36,"344 Walnut St, San Francisco, CA 94016" -280981,Wired Headphones,2,11.99,11/18/19 12:52,"274 Spruce St, Los Angeles, CA 90001" -280982,AAA Batteries (4-pack),1,2.99,11/07/19 17:26,"192 Lake St, Seattle, WA 98101" -280983,34in Ultrawide Monitor,1,379.99,11/08/19 21:22,"604 Jefferson St, Boston, MA 02215" -280984,34in Ultrawide Monitor,1,379.99,11/15/19 16:23,"653 1st St, Boston, MA 02215" -280985,AA Batteries (4-pack),1,3.84,11/29/19 14:34,"589 River St, Portland, OR 97035" -280986,AA Batteries (4-pack),1,3.84,11/13/19 18:27,"654 Cherry St, San Francisco, CA 94016" -280987,Lightning Charging Cable,1,14.95,11/12/19 07:33,"821 13th St, Dallas, TX 75001" -280988,Wired Headphones,1,11.99,11/14/19 16:42,"189 Dogwood St, New York City, NY 10001" -280989,ThinkPad Laptop,1,999.99,11/07/19 19:49,"559 6th St, Portland, ME 04101" -280990,LG Washing Machine,1,600.0,11/26/19 17:17,"127 11th St, Boston, MA 02215" -280991,ThinkPad Laptop,1,999.99,11/27/19 23:43,"657 9th St, Los Angeles, CA 90001" -280992,ThinkPad Laptop,1,999.99,11/27/19 13:01,"823 Ridge St, Portland, OR 97035" -280993,Wired Headphones,1,11.99,11/05/19 15:33,"671 14th St, Boston, MA 02215" -280994,AAA Batteries (4-pack),2,2.99,11/26/19 17:01,"10 West St, San Francisco, CA 94016" -280995,Apple Airpods Headphones,1,150,11/29/19 13:53,"20 10th St, Portland, OR 97035" -280996,USB-C Charging Cable,1,11.95,11/15/19 23:08,"128 4th St, New York City, NY 10001" -280997,USB-C Charging Cable,2,11.95,11/27/19 21:03,"246 Willow St, Austin, TX 73301" -280998,USB-C Charging Cable,1,11.95,11/23/19 09:34,"168 West St, Dallas, TX 75001" -280999,27in FHD Monitor,1,149.99,11/10/19 13:55,"181 West St, Los Angeles, CA 90001" -280999,Google Phone,1,600,11/10/19 13:55,"181 West St, Los Angeles, CA 90001" -281000,Apple Airpods Headphones,1,150,11/20/19 18:13,"584 Center St, Boston, MA 02215" -281001,USB-C Charging Cable,1,11.95,11/07/19 14:26,"397 13th St, Boston, MA 02215" -281002,USB-C Charging Cable,1,11.95,11/19/19 21:41,"65 Main St, Dallas, TX 75001" -281003,Apple Airpods Headphones,1,150,11/15/19 18:48,"927 Spruce St, Los Angeles, CA 90001" -281004,AA Batteries (4-pack),1,3.84,11/25/19 02:13,"468 River St, San Francisco, CA 94016" -281005,USB-C Charging Cable,1,11.95,11/26/19 20:46,"459 14th St, Boston, MA 02215" -281006,AA Batteries (4-pack),3,3.84,11/13/19 00:53,"185 6th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -281007,34in Ultrawide Monitor,1,379.99,11/26/19 22:17,"739 2nd St, New York City, NY 10001" -281008,AAA Batteries (4-pack),1,2.99,11/02/19 21:13,"252 Elm St, Atlanta, GA 30301" -281009,Apple Airpods Headphones,1,150,11/21/19 16:35,"639 Meadow St, Atlanta, GA 30301" -281010,Bose SoundSport Headphones,1,99.99,11/01/19 20:51,"244 Wilson St, Dallas, TX 75001" -281011,AA Batteries (4-pack),1,3.84,11/28/19 00:22,"359 Park St, Portland, OR 97035" -281012,Bose SoundSport Headphones,1,99.99,11/02/19 01:27,"612 Elm St, Seattle, WA 98101" -281012,Google Phone,1,600,11/02/19 01:27,"612 Elm St, Seattle, WA 98101" -281013,USB-C Charging Cable,1,11.95,11/25/19 17:15,"645 10th St, Dallas, TX 75001" -281014,20in Monitor,1,109.99,11/28/19 21:16,"231 5th St, San Francisco, CA 94016" -281015,Apple Airpods Headphones,1,150,11/02/19 02:22,"867 11th St, Portland, OR 97035" -281016,AAA Batteries (4-pack),1,2.99,11/09/19 21:13,"492 Hickory St, San Francisco, CA 94016" -281017,Wired Headphones,1,11.99,11/14/19 16:05,"817 Maple St, Boston, MA 02215" -281018,Wired Headphones,1,11.99,11/04/19 13:32,"762 Madison St, San Francisco, CA 94016" -281019,Wired Headphones,1,11.99,11/25/19 10:48,"177 Lincoln St, Dallas, TX 75001" -281020,AAA Batteries (4-pack),1,2.99,11/27/19 16:47,"928 Maple St, Los Angeles, CA 90001" -281021,AA Batteries (4-pack),1,3.84,11/25/19 22:15,"921 Main St, Los Angeles, CA 90001" -281022,USB-C Charging Cable,1,11.95,11/10/19 20:27,"255 12th St, New York City, NY 10001" -281023,Bose SoundSport Headphones,1,99.99,11/25/19 17:32,"541 Jefferson St, San Francisco, CA 94016" -281024,USB-C Charging Cable,1,11.95,11/05/19 18:57,"151 Pine St, New York City, NY 10001" -281025,34in Ultrawide Monitor,1,379.99,11/07/19 13:17,"287 Main St, Seattle, WA 98101" -281026,Wired Headphones,1,11.99,11/15/19 14:43,"88 Madison St, Boston, MA 02215" -281027,34in Ultrawide Monitor,1,379.99,11/26/19 19:47,"781 Adams St, Portland, ME 04101" -281028,USB-C Charging Cable,1,11.95,11/30/19 19:46,"78 6th St, Atlanta, GA 30301" -281029,Lightning Charging Cable,1,14.95,11/12/19 18:15,"862 Elm St, Atlanta, GA 30301" -281030,27in 4K Gaming Monitor,1,389.99,11/10/19 04:18,"464 Highland St, San Francisco, CA 94016" -281031,AA Batteries (4-pack),2,3.84,11/26/19 12:49,"497 Adams St, Boston, MA 02215" -281032,Lightning Charging Cable,1,14.95,11/10/19 09:52,"56 Church St, Los Angeles, CA 90001" -281033,AA Batteries (4-pack),1,3.84,11/12/19 14:51,"279 12th St, New York City, NY 10001" -281034,Google Phone,1,600,11/24/19 12:39,"62 13th St, Boston, MA 02215" -281035,AAA Batteries (4-pack),2,2.99,11/19/19 07:17,"670 Hill St, San Francisco, CA 94016" -281036,USB-C Charging Cable,1,11.95,11/28/19 10:51,"493 Willow St, Dallas, TX 75001" -281037,USB-C Charging Cable,1,11.95,11/22/19 19:54,"220 8th St, San Francisco, CA 94016" -281037,iPhone,1,700,11/22/19 19:54,"220 8th St, San Francisco, CA 94016" -281038,USB-C Charging Cable,2,11.95,11/16/19 18:22,"600 9th St, Boston, MA 02215" -281039,USB-C Charging Cable,1,11.95,11/25/19 01:51,"217 5th St, Portland, OR 97035" -281040,20in Monitor,1,109.99,11/13/19 11:57,"363 Ridge St, San Francisco, CA 94016" -281041,ThinkPad Laptop,1,999.99,11/07/19 00:34,"763 Jackson St, Boston, MA 02215" -281042,27in FHD Monitor,1,149.99,11/18/19 06:58,"184 Dogwood St, Los Angeles, CA 90001" -281043,Lightning Charging Cable,1,14.95,11/22/19 14:11,"865 8th St, San Francisco, CA 94016" -281044,AAA Batteries (4-pack),1,2.99,11/25/19 15:31,"293 Hill St, San Francisco, CA 94016" -281045,27in 4K Gaming Monitor,1,389.99,11/05/19 21:24,"766 Hill St, San Francisco, CA 94016" -281046,Lightning Charging Cable,1,14.95,11/21/19 13:15,"415 Lakeview St, Dallas, TX 75001" -281047,27in FHD Monitor,1,149.99,11/18/19 08:06,"106 Pine St, Los Angeles, CA 90001" -281048,AA Batteries (4-pack),1,3.84,11/18/19 16:30,"586 Madison St, Boston, MA 02215" -281049,AAA Batteries (4-pack),1,2.99,11/10/19 19:06,"331 West St, Los Angeles, CA 90001" -281050,AAA Batteries (4-pack),2,2.99,11/01/19 16:47,"608 North St, San Francisco, CA 94016" -281051,USB-C Charging Cable,1,11.95,11/20/19 18:14,"63 Adams St, Dallas, TX 75001" -281052,AAA Batteries (4-pack),1,2.99,11/18/19 17:23,"268 Willow St, Los Angeles, CA 90001" -281053,Wired Headphones,1,11.99,11/24/19 21:16,"739 West St, Portland, OR 97035" -281054,Lightning Charging Cable,3,14.95,11/14/19 00:23,"741 Spruce St, New York City, NY 10001" -281055,AAA Batteries (4-pack),1,2.99,11/16/19 06:10,"184 Forest St, Seattle, WA 98101" -281056,Lightning Charging Cable,1,14.95,11/21/19 19:26,"759 Lincoln St, Boston, MA 02215" -281057,AAA Batteries (4-pack),1,2.99,11/26/19 13:57,"943 6th St, Austin, TX 73301" -281058,AA Batteries (4-pack),3,3.84,11/26/19 20:22,"251 Johnson St, San Francisco, CA 94016" -281059,AAA Batteries (4-pack),1,2.99,11/12/19 09:33,"748 Madison St, San Francisco, CA 94016" -281060,Wired Headphones,1,11.99,11/16/19 11:06,"765 11th St, San Francisco, CA 94016" -281061,Lightning Charging Cable,1,14.95,11/17/19 07:19,"796 12th St, Dallas, TX 75001" -281062,AAA Batteries (4-pack),1,2.99,11/12/19 09:57,"288 5th St, Atlanta, GA 30301" -281063,AAA Batteries (4-pack),1,2.99,11/12/19 19:43,"241 Main St, Atlanta, GA 30301" -281064,iPhone,1,700,11/14/19 16:42,"368 Madison St, New York City, NY 10001" -281065,Wired Headphones,1,11.99,11/19/19 18:00,"861 Maple St, Portland, OR 97035" -281066,AA Batteries (4-pack),1,3.84,11/15/19 12:06,"652 Chestnut St, Seattle, WA 98101" -281067,Google Phone,1,600,11/16/19 14:51,"624 Lincoln St, Los Angeles, CA 90001" -281068,Bose SoundSport Headphones,1,99.99,11/03/19 15:00,"848 River St, Dallas, TX 75001" -281069,AA Batteries (4-pack),1,3.84,11/10/19 18:57,"773 Cherry St, New York City, NY 10001" -281070,AAA Batteries (4-pack),1,2.99,11/23/19 20:57,"558 Hickory St, New York City, NY 10001" -281071,USB-C Charging Cable,1,11.95,11/08/19 23:26,"864 Sunset St, Seattle, WA 98101" -281072,Lightning Charging Cable,1,14.95,11/01/19 20:35,"267 14th St, San Francisco, CA 94016" -281073,20in Monitor,1,109.99,11/16/19 14:13,"781 2nd St, Dallas, TX 75001" -281074,USB-C Charging Cable,1,11.95,11/24/19 09:56,"113 Wilson St, San Francisco, CA 94016" -281075,Lightning Charging Cable,1,14.95,11/25/19 11:33,"271 14th St, Boston, MA 02215" -281076,USB-C Charging Cable,1,11.95,11/18/19 23:56,"133 2nd St, New York City, NY 10001" -281077,Lightning Charging Cable,1,14.95,11/16/19 14:53,"602 Forest St, San Francisco, CA 94016" -281078,Flatscreen TV,1,300,11/12/19 11:34,"822 Jackson St, Atlanta, GA 30301" -281079,USB-C Charging Cable,2,11.95,11/26/19 17:36,"972 7th St, Seattle, WA 98101" -281080,USB-C Charging Cable,1,11.95,11/30/19 17:30,"739 Park St, Seattle, WA 98101" -281081,Lightning Charging Cable,1,14.95,11/18/19 22:24,"355 Center St, San Francisco, CA 94016" -281082,27in 4K Gaming Monitor,1,389.99,11/17/19 20:20,"150 Lakeview St, New York City, NY 10001" -281083,Wired Headphones,1,11.99,11/13/19 17:08,"461 Lincoln St, San Francisco, CA 94016" -281084,27in FHD Monitor,1,149.99,11/18/19 13:06,"384 Adams St, Los Angeles, CA 90001" -281085,USB-C Charging Cable,1,11.95,11/10/19 10:52,"46 Lincoln St, San Francisco, CA 94016" -281086,34in Ultrawide Monitor,1,379.99,11/16/19 18:27,"943 1st St, San Francisco, CA 94016" -281087,Lightning Charging Cable,1,14.95,11/14/19 00:23,"83 Church St, Seattle, WA 98101" -281088,Bose SoundSport Headphones,1,99.99,11/13/19 17:23,"609 Ridge St, Portland, ME 04101" -281089,ThinkPad Laptop,1,999.99,11/02/19 21:55,"623 8th St, Portland, OR 97035" -281090,Lightning Charging Cable,1,14.95,11/16/19 15:49,"290 2nd St, Seattle, WA 98101" -281091,Bose SoundSport Headphones,1,99.99,11/07/19 10:31,"661 Ridge St, San Francisco, CA 94016" -281092,Wired Headphones,3,11.99,11/01/19 10:12,"525 10th St, New York City, NY 10001" -281093,27in FHD Monitor,1,149.99,11/19/19 19:31,"699 14th St, San Francisco, CA 94016" -281094,Macbook Pro Laptop,1,1700,11/24/19 09:46,"508 Washington St, Boston, MA 02215" -281095,iPhone,2,700,11/18/19 23:44,"347 Main St, Atlanta, GA 30301" -281096,27in 4K Gaming Monitor,1,389.99,11/10/19 19:23,"981 Jackson St, Seattle, WA 98101" -281097,ThinkPad Laptop,1,999.99,11/03/19 17:12,"421 Hickory St, San Francisco, CA 94016" -281098,Flatscreen TV,1,300,11/13/19 20:40,"400 1st St, Boston, MA 02215" -281099,Wired Headphones,1,11.99,11/02/19 00:15,"31 Center St, New York City, NY 10001" -281100,Bose SoundSport Headphones,1,99.99,11/06/19 17:42,"559 Lake St, San Francisco, CA 94016" -281101,Lightning Charging Cable,1,14.95,11/03/19 17:51,"78 Meadow St, Seattle, WA 98101" -281102,iPhone,1,700,11/28/19 22:09,"442 Adams St, Atlanta, GA 30301" -281102,Apple Airpods Headphones,1,150,11/28/19 22:09,"442 Adams St, Atlanta, GA 30301" -281102,AAA Batteries (4-pack),3,2.99,11/28/19 22:09,"442 Adams St, Atlanta, GA 30301" -281103,Wired Headphones,1,11.99,11/23/19 13:11,"909 1st St, Atlanta, GA 30301" -281104,Lightning Charging Cable,1,14.95,11/26/19 20:08,"510 10th St, San Francisco, CA 94016" -281105,AA Batteries (4-pack),1,3.84,11/24/19 06:50,"488 6th St, New York City, NY 10001" -281106,Apple Airpods Headphones,1,150,11/27/19 22:46,"905 13th St, New York City, NY 10001" -281107,Bose SoundSport Headphones,1,99.99,11/24/19 16:48,"631 10th St, Los Angeles, CA 90001" -281108,AAA Batteries (4-pack),1,2.99,11/08/19 18:28,"894 1st St, New York City, NY 10001" -281109,34in Ultrawide Monitor,1,379.99,11/03/19 13:36,"925 Walnut St, Seattle, WA 98101" -281110,iPhone,1,700,11/29/19 20:58,"966 Maple St, Boston, MA 02215" -281110,Apple Airpods Headphones,1,150,11/29/19 20:58,"966 Maple St, Boston, MA 02215" -281111,Bose SoundSport Headphones,1,99.99,11/12/19 22:43,"878 Park St, New York City, NY 10001" -281112,Vareebadd Phone,1,400,11/06/19 09:21,"827 Lincoln St, Los Angeles, CA 90001" -281113,Bose SoundSport Headphones,1,99.99,11/10/19 11:40,"323 Johnson St, Los Angeles, CA 90001" -281114,Apple Airpods Headphones,1,150,11/08/19 20:59,"265 2nd St, Seattle, WA 98101" -281115,AA Batteries (4-pack),1,3.84,11/13/19 19:36,"233 Lake St, New York City, NY 10001" -281116,iPhone,1,700,11/20/19 12:31,"348 14th St, Portland, OR 97035" -281116,Lightning Charging Cable,1,14.95,11/20/19 12:31,"348 14th St, Portland, OR 97035" -281117,27in 4K Gaming Monitor,1,389.99,11/13/19 21:33,"460 Chestnut St, Austin, TX 73301" -281118,Lightning Charging Cable,1,14.95,11/05/19 20:37,"731 Lakeview St, Los Angeles, CA 90001" -281119,Lightning Charging Cable,1,14.95,11/14/19 04:14,"389 6th St, Boston, MA 02215" -281120,Bose SoundSport Headphones,1,99.99,11/17/19 11:29,"960 11th St, New York City, NY 10001" -281121,Lightning Charging Cable,1,14.95,11/26/19 13:44,"344 12th St, Atlanta, GA 30301" -281122,USB-C Charging Cable,1,11.95,11/15/19 11:14,"170 4th St, Los Angeles, CA 90001" -281123,Wired Headphones,1,11.99,11/04/19 07:55,"566 Church St, New York City, NY 10001" -281124,USB-C Charging Cable,2,11.95,11/23/19 12:39,"151 10th St, San Francisco, CA 94016" -281125,USB-C Charging Cable,1,11.95,11/29/19 09:46,"966 Pine St, Portland, OR 97035" -281126,AA Batteries (4-pack),1,3.84,11/17/19 23:11,"720 Pine St, New York City, NY 10001" -281127,Flatscreen TV,1,300,11/27/19 10:53,"279 Adams St, Dallas, TX 75001" -281128,AAA Batteries (4-pack),2,2.99,11/25/19 13:52,"569 Hickory St, San Francisco, CA 94016" -281129,Apple Airpods Headphones,1,150,11/07/19 12:19,"530 Jefferson St, Atlanta, GA 30301" -281130,Lightning Charging Cable,1,14.95,11/03/19 23:06,"431 Lincoln St, New York City, NY 10001" -281131,Bose SoundSport Headphones,1,99.99,11/02/19 17:22,"5 13th St, Dallas, TX 75001" -281132,Bose SoundSport Headphones,1,99.99,11/15/19 15:50,"640 Park St, Los Angeles, CA 90001" -281133,AA Batteries (4-pack),2,3.84,11/03/19 23:34,"161 7th St, Los Angeles, CA 90001" -281134,Flatscreen TV,1,300,11/02/19 01:15,"229 Dogwood St, Los Angeles, CA 90001" -281135,20in Monitor,1,109.99,11/04/19 12:05,"115 Center St, San Francisco, CA 94016" -281136,Wired Headphones,1,11.99,11/18/19 17:09,"131 Willow St, Boston, MA 02215" -281137,Flatscreen TV,1,300,11/09/19 19:35,"718 River St, San Francisco, CA 94016" -281138,Lightning Charging Cable,1,14.95,11/03/19 13:25,"378 Willow St, Dallas, TX 75001" -281139,ThinkPad Laptop,1,999.99,11/22/19 17:19,"44 Spruce St, Boston, MA 02215" -281140,Wired Headphones,1,11.99,11/04/19 14:24,"992 9th St, Dallas, TX 75001" -281141,27in FHD Monitor,1,149.99,11/04/19 12:51,"227 6th St, Austin, TX 73301" -281142,Apple Airpods Headphones,1,150,11/30/19 11:37,"435 Lake St, San Francisco, CA 94016" -281143,Bose SoundSport Headphones,1,99.99,11/26/19 21:13,"881 Park St, Portland, ME 04101" -281144,Lightning Charging Cable,1,14.95,11/10/19 14:43,"523 8th St, Seattle, WA 98101" -281145,Apple Airpods Headphones,1,150,11/01/19 19:47,"770 Lakeview St, San Francisco, CA 94016" -281146,USB-C Charging Cable,1,11.95,11/06/19 08:35,"712 Cedar St, San Francisco, CA 94016" -281147,AAA Batteries (4-pack),1,2.99,11/24/19 11:06,"560 12th St, Los Angeles, CA 90001" -281148,34in Ultrawide Monitor,1,379.99,11/15/19 14:34,"757 8th St, San Francisco, CA 94016" -281149,20in Monitor,1,109.99,11/04/19 20:42,"558 Hickory St, New York City, NY 10001" -281150,AAA Batteries (4-pack),1,2.99,11/17/19 11:29,"914 Lincoln St, San Francisco, CA 94016" -281151,AA Batteries (4-pack),1,3.84,11/26/19 08:47,"109 Lakeview St, San Francisco, CA 94016" -281152,USB-C Charging Cable,1,11.95,11/09/19 04:59,"391 Adams St, Atlanta, GA 30301" -281153,Lightning Charging Cable,1,14.95,11/11/19 11:56,"950 Jefferson St, Los Angeles, CA 90001" -281154,AA Batteries (4-pack),2,3.84,11/07/19 13:09,"886 Forest St, Austin, TX 73301" -281155,Apple Airpods Headphones,1,150,11/12/19 15:14,"308 Hill St, Austin, TX 73301" -281156,27in 4K Gaming Monitor,1,389.99,11/01/19 18:27,"573 Park St, San Francisco, CA 94016" -281157,Bose SoundSport Headphones,1,99.99,11/02/19 22:15,"922 1st St, New York City, NY 10001" -281158,AA Batteries (4-pack),1,3.84,11/04/19 17:40,"78 Forest St, New York City, NY 10001" -281159,Lightning Charging Cable,1,14.95,11/17/19 00:02,"698 Park St, San Francisco, CA 94016" -281160,Apple Airpods Headphones,1,150,11/14/19 16:25,"959 Park St, Los Angeles, CA 90001" -281161,Flatscreen TV,1,300,11/28/19 11:29,"613 4th St, Boston, MA 02215" -281162,USB-C Charging Cable,2,11.95,11/13/19 11:28,"306 West St, Seattle, WA 98101" -281163,USB-C Charging Cable,2,11.95,11/05/19 09:08,"614 10th St, San Francisco, CA 94016" -281164,Bose SoundSport Headphones,1,99.99,11/30/19 22:47,"400 12th St, Atlanta, GA 30301" -281165,Lightning Charging Cable,1,14.95,11/18/19 12:46,"535 12th St, New York City, NY 10001" -281166,Vareebadd Phone,1,400,11/14/19 13:27,"738 Johnson St, Austin, TX 73301" -281166,USB-C Charging Cable,1,11.95,11/14/19 13:27,"738 Johnson St, Austin, TX 73301" -281167,Lightning Charging Cable,1,14.95,11/29/19 19:59,"953 14th St, Los Angeles, CA 90001" -281168,Bose SoundSport Headphones,1,99.99,11/21/19 12:44,"549 9th St, Los Angeles, CA 90001" -281169,Apple Airpods Headphones,1,150,11/10/19 20:39,"114 River St, Austin, TX 73301" -281170,Lightning Charging Cable,1,14.95,11/28/19 21:41,"552 Church St, San Francisco, CA 94016" -281171,AAA Batteries (4-pack),1,2.99,11/09/19 07:51,"635 6th St, San Francisco, CA 94016" -281172,Bose SoundSport Headphones,1,99.99,11/21/19 18:16,"374 River St, Boston, MA 02215" -281173,Wired Headphones,2,11.99,11/10/19 13:46,"774 14th St, Dallas, TX 75001" -281174,USB-C Charging Cable,2,11.95,11/07/19 09:16,"324 Center St, New York City, NY 10001" -281175,AA Batteries (4-pack),1,3.84,11/11/19 11:16,"729 Wilson St, Dallas, TX 75001" -281176,Wired Headphones,1,11.99,11/21/19 12:53,"549 Maple St, Seattle, WA 98101" -281177,AAA Batteries (4-pack),1,2.99,11/25/19 00:22,"702 Forest St, Boston, MA 02215" -281178,Lightning Charging Cable,1,14.95,11/18/19 19:53,"442 Cherry St, San Francisco, CA 94016" -281179,iPhone,1,700,11/25/19 10:25,"862 River St, San Francisco, CA 94016" -281179,Lightning Charging Cable,1,14.95,11/25/19 10:25,"862 River St, San Francisco, CA 94016" -281180,AAA Batteries (4-pack),1,2.99,11/17/19 19:02,"786 14th St, San Francisco, CA 94016" -281181,AA Batteries (4-pack),4,3.84,11/20/19 02:07,"399 Main St, Dallas, TX 75001" -281182,Bose SoundSport Headphones,1,99.99,11/01/19 15:59,"200 14th St, Los Angeles, CA 90001" -281183,Lightning Charging Cable,1,14.95,11/23/19 05:51,"877 Main St, Los Angeles, CA 90001" -281184,34in Ultrawide Monitor,1,379.99,11/29/19 16:07,"359 14th St, New York City, NY 10001" -281185,AA Batteries (4-pack),3,3.84,11/21/19 10:37,"745 10th St, Dallas, TX 75001" -281186,AAA Batteries (4-pack),2,2.99,11/25/19 20:28,"681 Madison St, San Francisco, CA 94016" -281187,27in 4K Gaming Monitor,1,389.99,11/01/19 23:30,"715 Park St, Boston, MA 02215" -281188,AA Batteries (4-pack),4,3.84,11/23/19 23:36,"979 1st St, New York City, NY 10001" -281189,AA Batteries (4-pack),1,3.84,11/01/19 14:16,"868 Meadow St, San Francisco, CA 94016" -281190,Bose SoundSport Headphones,1,99.99,11/23/19 18:43,"977 Willow St, New York City, NY 10001" -281191,USB-C Charging Cable,1,11.95,11/28/19 13:46,"367 Hill St, Los Angeles, CA 90001" -281192,Bose SoundSport Headphones,1,99.99,11/12/19 16:08,"417 Forest St, San Francisco, CA 94016" -281193,Lightning Charging Cable,1,14.95,11/17/19 20:16,"601 14th St, San Francisco, CA 94016" -281194,AAA Batteries (4-pack),2,2.99,11/03/19 17:59,"538 Walnut St, Boston, MA 02215" -281195,USB-C Charging Cable,1,11.95,11/06/19 20:16,"583 North St, San Francisco, CA 94016" -281196,AA Batteries (4-pack),3,3.84,11/29/19 13:53,"205 Walnut St, Portland, OR 97035" -281197,AA Batteries (4-pack),1,3.84,11/27/19 11:05,"512 Center St, Seattle, WA 98101" -281198,Wired Headphones,1,11.99,11/27/19 16:52,"700 Center St, Atlanta, GA 30301" -281199,USB-C Charging Cable,1,11.95,11/20/19 13:51,"635 North St, New York City, NY 10001" -281200,27in FHD Monitor,1,149.99,11/16/19 16:45,"210 Jackson St, New York City, NY 10001" -281201,20in Monitor,1,109.99,11/29/19 10:40,"129 14th St, Portland, OR 97035" -281202,Wired Headphones,1,11.99,11/16/19 06:49,"951 Walnut St, Boston, MA 02215" -281203,Lightning Charging Cable,1,14.95,11/14/19 08:39,"459 11th St, New York City, NY 10001" -281204,Flatscreen TV,1,300,11/22/19 11:29,"576 6th St, Los Angeles, CA 90001" -281205,27in FHD Monitor,1,149.99,11/25/19 09:37,"886 Main St, Seattle, WA 98101" -281206,AA Batteries (4-pack),4,3.84,11/15/19 01:08,"804 Spruce St, New York City, NY 10001" -281207,AAA Batteries (4-pack),1,2.99,11/08/19 22:38,"770 7th St, Seattle, WA 98101" -281208,AAA Batteries (4-pack),2,2.99,11/06/19 13:30,"557 Cedar St, Dallas, TX 75001" -281209,Lightning Charging Cable,1,14.95,11/04/19 19:30,"494 Church St, San Francisco, CA 94016" -281210,27in FHD Monitor,1,149.99,11/09/19 11:30,"348 South St, San Francisco, CA 94016" -281211,Bose SoundSport Headphones,1,99.99,11/28/19 19:43,"786 5th St, Boston, MA 02215" -281212,20in Monitor,1,109.99,11/12/19 11:30,"184 Hickory St, New York City, NY 10001" -281213,USB-C Charging Cable,2,11.95,11/01/19 23:27,"184 Wilson St, San Francisco, CA 94016" -281214,USB-C Charging Cable,1,11.95,11/25/19 16:28,"992 4th St, New York City, NY 10001" -281215,34in Ultrawide Monitor,1,379.99,11/17/19 12:16,"104 Cherry St, Portland, OR 97035" -281216,Lightning Charging Cable,1,14.95,11/11/19 13:30,"535 Adams St, San Francisco, CA 94016" -281217,Wired Headphones,1,11.99,11/14/19 16:06,"133 North St, New York City, NY 10001" -281218,USB-C Charging Cable,1,11.95,11/01/19 18:49,"598 Pine St, Dallas, TX 75001" -281219,AAA Batteries (4-pack),1,2.99,11/26/19 19:42,"227 13th St, New York City, NY 10001" -281220,34in Ultrawide Monitor,1,379.99,11/08/19 10:23,"74 West St, New York City, NY 10001" -281221,Apple Airpods Headphones,1,150,11/12/19 01:37,"587 North St, San Francisco, CA 94016" -281222,Wired Headphones,1,11.99,11/03/19 02:09,"501 Forest St, Los Angeles, CA 90001" -281223,Wired Headphones,1,11.99,11/08/19 12:06,"110 Hill St, Boston, MA 02215" -281224,Lightning Charging Cable,1,14.95,11/23/19 16:37,"128 Washington St, Portland, OR 97035" -281225,Flatscreen TV,1,300,11/03/19 11:05,"919 Dogwood St, San Francisco, CA 94016" -281226,Bose SoundSport Headphones,1,99.99,11/07/19 08:45,"422 Hill St, San Francisco, CA 94016" -281227,Bose SoundSport Headphones,1,99.99,11/15/19 18:59,"353 Willow St, Atlanta, GA 30301" -281228,AAA Batteries (4-pack),2,2.99,11/14/19 10:41,"365 Maple St, Seattle, WA 98101" -281229,USB-C Charging Cable,1,11.95,11/01/19 11:03,"877 Maple St, Los Angeles, CA 90001" -281230,34in Ultrawide Monitor,1,379.99,11/01/19 22:02,"505 Sunset St, Austin, TX 73301" -281231,Wired Headphones,1,11.99,11/03/19 19:41,"804 West St, San Francisco, CA 94016" -281232,USB-C Charging Cable,1,11.95,11/30/19 21:18,"593 Lake St, Boston, MA 02215" -281233,27in FHD Monitor,1,149.99,11/22/19 07:24,"298 Spruce St, Seattle, WA 98101" -281234,AAA Batteries (4-pack),2,2.99,11/05/19 20:15,"739 Highland St, San Francisco, CA 94016" -281235,34in Ultrawide Monitor,1,379.99,11/15/19 12:18,"245 Lincoln St, Boston, MA 02215" -281236,AA Batteries (4-pack),2,3.84,11/09/19 13:55,"868 South St, San Francisco, CA 94016" -281237,Bose SoundSport Headphones,1,99.99,11/22/19 19:23,"967 Johnson St, Seattle, WA 98101" -281238,Apple Airpods Headphones,1,150,11/16/19 18:57,"287 Center St, San Francisco, CA 94016" -281239,Bose SoundSport Headphones,2,99.99,11/09/19 20:40,"811 West St, Boston, MA 02215" -281240,Wired Headphones,1,11.99,11/15/19 10:58,"705 Wilson St, Seattle, WA 98101" -281241,AAA Batteries (4-pack),1,2.99,11/20/19 18:15,"265 Park St, Dallas, TX 75001" -281242,Google Phone,1,600,11/24/19 20:28,"236 Cedar St, New York City, NY 10001" -281243,USB-C Charging Cable,2,11.95,11/07/19 20:21,"228 6th St, San Francisco, CA 94016" -281244,Apple Airpods Headphones,1,150,11/02/19 17:25,"559 12th St, Dallas, TX 75001" -281245,AAA Batteries (4-pack),1,2.99,11/22/19 17:01,"715 Church St, Los Angeles, CA 90001" -281246,Apple Airpods Headphones,1,150,11/05/19 19:54,"660 Center St, New York City, NY 10001" -281247,Apple Airpods Headphones,1,150,11/05/19 19:40,"481 Adams St, Portland, OR 97035" -281248,USB-C Charging Cable,1,11.95,11/01/19 09:04,"371 Jackson St, Seattle, WA 98101" -281249,iPhone,1,700,11/03/19 13:56,"509 Jefferson St, San Francisco, CA 94016" -281250,AA Batteries (4-pack),1,3.84,11/28/19 22:02,"114 Meadow St, Portland, OR 97035" -281251,Apple Airpods Headphones,1,150,11/02/19 13:07,"986 Washington St, Dallas, TX 75001" -281252,AA Batteries (4-pack),1,3.84,11/18/19 08:09,"451 11th St, New York City, NY 10001" -281253,USB-C Charging Cable,1,11.95,11/14/19 07:04,"136 Chestnut St, San Francisco, CA 94016" -281254,USB-C Charging Cable,1,11.95,11/16/19 14:38,"519 5th St, Atlanta, GA 30301" -281255,AA Batteries (4-pack),1,3.84,11/15/19 15:23,"20 Lincoln St, San Francisco, CA 94016" -281256,Apple Airpods Headphones,1,150,11/15/19 08:27,"218 Park St, New York City, NY 10001" -281257,Wired Headphones,1,11.99,11/18/19 21:48,"259 Walnut St, Portland, OR 97035" -281258,AAA Batteries (4-pack),1,2.99,11/16/19 18:52,"140 14th St, Seattle, WA 98101" -281259,Wired Headphones,1,11.99,11/10/19 10:10,"263 Church St, San Francisco, CA 94016" -281260,Lightning Charging Cable,1,14.95,11/09/19 12:36,"970 5th St, Portland, OR 97035" -281261,Google Phone,1,600,11/20/19 20:34,"680 North St, San Francisco, CA 94016" -281262,Wired Headphones,1,11.99,11/15/19 12:36,"205 9th St, New York City, NY 10001" -281263,Wired Headphones,1,11.99,11/16/19 13:52,"304 Jefferson St, Boston, MA 02215" -281264,USB-C Charging Cable,1,11.95,11/16/19 03:22,"959 Elm St, Dallas, TX 75001" -281265,AA Batteries (4-pack),1,3.84,11/28/19 21:18,"930 8th St, Portland, OR 97035" -281266,AAA Batteries (4-pack),1,2.99,11/21/19 00:33,"989 6th St, San Francisco, CA 94016" -281267,27in 4K Gaming Monitor,1,389.99,11/23/19 22:35,"988 10th St, New York City, NY 10001" -281268,Macbook Pro Laptop,1,1700,11/17/19 15:00,"6 14th St, New York City, NY 10001" -281269,34in Ultrawide Monitor,1,379.99,11/25/19 16:10,"572 Spruce St, Boston, MA 02215" -281270,20in Monitor,1,109.99,11/24/19 13:51,"173 Forest St, Austin, TX 73301" -281271,AAA Batteries (4-pack),1,2.99,11/09/19 23:52,"126 Hickory St, Dallas, TX 75001" -281272,Lightning Charging Cable,1,14.95,11/04/19 17:56,"638 Hill St, New York City, NY 10001" -281273,Lightning Charging Cable,1,14.95,11/07/19 10:59,"316 Hickory St, Boston, MA 02215" -281274,Wired Headphones,1,11.99,11/11/19 12:33,"550 Church St, Portland, OR 97035" -281275,AAA Batteries (4-pack),1,2.99,11/23/19 09:52,"14 Pine St, San Francisco, CA 94016" -281276,Apple Airpods Headphones,1,150,11/04/19 23:05,"111 11th St, Los Angeles, CA 90001" -281277,Lightning Charging Cable,1,14.95,11/10/19 13:46,"906 12th St, Seattle, WA 98101" -281278,USB-C Charging Cable,1,11.95,11/29/19 10:43,"481 Madison St, New York City, NY 10001" -281279,Bose SoundSport Headphones,1,99.99,11/15/19 17:54,"409 6th St, Austin, TX 73301" -281280,AA Batteries (4-pack),1,3.84,11/23/19 15:19,"835 5th St, Boston, MA 02215" -281281,27in FHD Monitor,1,149.99,11/11/19 17:07,"755 Johnson St, Austin, TX 73301" -281282,ThinkPad Laptop,1,999.99,11/24/19 20:06,"352 Ridge St, New York City, NY 10001" -281283,Bose SoundSport Headphones,1,99.99,11/20/19 18:26,"402 Willow St, Austin, TX 73301" -281284,20in Monitor,1,109.99,11/08/19 00:55,"205 9th St, Seattle, WA 98101" -281285,Apple Airpods Headphones,1,150,11/04/19 18:12,"994 Elm St, San Francisco, CA 94016" -281286,Macbook Pro Laptop,1,1700,11/09/19 21:32,"638 14th St, Los Angeles, CA 90001" -281287,Wired Headphones,1,11.99,11/30/19 09:08,"161 Spruce St, San Francisco, CA 94016" -281288,Apple Airpods Headphones,1,150,11/04/19 16:24,"487 Lake St, San Francisco, CA 94016" -281289,AAA Batteries (4-pack),2,2.99,11/04/19 20:24,"137 Hill St, San Francisco, CA 94016" -281290,Lightning Charging Cable,1,14.95,11/27/19 10:49,"33 Church St, Boston, MA 02215" -281291,Wired Headphones,1,11.99,11/08/19 13:30,"849 11th St, San Francisco, CA 94016" -281292,Bose SoundSport Headphones,1,99.99,11/22/19 08:44,"273 2nd St, New York City, NY 10001" -281293,34in Ultrawide Monitor,1,379.99,11/09/19 10:55,"609 West St, San Francisco, CA 94016" -281294,Lightning Charging Cable,1,14.95,11/29/19 17:27,"442 13th St, San Francisco, CA 94016" -281295,ThinkPad Laptop,1,999.99,11/27/19 11:47,"17 12th St, San Francisco, CA 94016" -281296,Bose SoundSport Headphones,1,99.99,11/30/19 22:44,"888 Jefferson St, Austin, TX 73301" -281297,Wired Headphones,1,11.99,11/04/19 21:00,"832 1st St, New York City, NY 10001" -281298,34in Ultrawide Monitor,1,379.99,11/07/19 08:13,"46 Jefferson St, Austin, TX 73301" -281299,AA Batteries (4-pack),1,3.84,11/02/19 10:37,"440 Park St, San Francisco, CA 94016" -281300,AAA Batteries (4-pack),1,2.99,11/29/19 11:59,"723 7th St, Dallas, TX 75001" -281301,Bose SoundSport Headphones,1,99.99,11/08/19 08:27,"446 11th St, San Francisco, CA 94016" -281302,USB-C Charging Cable,1,11.95,11/14/19 10:28,"704 Forest St, San Francisco, CA 94016" -281303,Apple Airpods Headphones,1,150,11/08/19 13:55,"858 Walnut St, Los Angeles, CA 90001" -281304,USB-C Charging Cable,1,11.95,11/03/19 21:08,"143 Chestnut St, Boston, MA 02215" -281305,Bose SoundSport Headphones,1,99.99,11/26/19 17:06,"794 Adams St, Atlanta, GA 30301" -281306,Macbook Pro Laptop,1,1700,11/24/19 15:53,"628 Center St, Dallas, TX 75001" -281307,AA Batteries (4-pack),2,3.84,11/07/19 16:52,"35 Madison St, Los Angeles, CA 90001" -281308,USB-C Charging Cable,1,11.95,11/18/19 10:59,"826 Adams St, Atlanta, GA 30301" -281309,Macbook Pro Laptop,1,1700,11/20/19 22:40,"226 Main St, Dallas, TX 75001" -281310,27in FHD Monitor,1,149.99,11/27/19 20:46,"754 West St, San Francisco, CA 94016" -281311,USB-C Charging Cable,1,11.95,11/12/19 14:21,"34 Main St, New York City, NY 10001" -,,,,, -281312,Apple Airpods Headphones,1,150,11/07/19 21:33,"729 Meadow St, Atlanta, GA 30301" -281313,Apple Airpods Headphones,1,150,11/10/19 09:24,"983 Madison St, Boston, MA 02215" -281314,Apple Airpods Headphones,1,150,11/16/19 20:11,"655 Lake St, New York City, NY 10001" -281315,20in Monitor,1,109.99,11/03/19 19:38,"788 13th St, San Francisco, CA 94016" -281316,USB-C Charging Cable,1,11.95,11/10/19 17:19,"330 Wilson St, Los Angeles, CA 90001" -281317,Bose SoundSport Headphones,1,99.99,11/08/19 12:55,"342 Jefferson St, San Francisco, CA 94016" -281318,AA Batteries (4-pack),1,3.84,11/13/19 12:04,"643 Washington St, Austin, TX 73301" -281319,Lightning Charging Cable,1,14.95,11/24/19 21:40,"404 Hill St, Dallas, TX 75001" -281320,Lightning Charging Cable,1,14.95,11/12/19 20:55,"350 Church St, San Francisco, CA 94016" -281321,AA Batteries (4-pack),4,3.84,11/20/19 15:15,"699 Park St, San Francisco, CA 94016" -281322,USB-C Charging Cable,1,11.95,11/13/19 10:14,"718 6th St, New York City, NY 10001" -281323,27in 4K Gaming Monitor,1,389.99,11/17/19 11:48,"759 Jefferson St, Atlanta, GA 30301" -281324,USB-C Charging Cable,1,11.95,11/10/19 14:43,"243 Adams St, Seattle, WA 98101" -281325,Lightning Charging Cable,1,14.95,11/16/19 16:48,"609 8th St, San Francisco, CA 94016" -281326,Wired Headphones,1,11.99,11/15/19 13:18,"663 Cherry St, San Francisco, CA 94016" -281327,Google Phone,1,600,11/29/19 11:14,"512 Center St, New York City, NY 10001" -281328,AA Batteries (4-pack),1,3.84,11/08/19 12:35,"285 Lakeview St, Austin, TX 73301" -281329,Wired Headphones,1,11.99,11/30/19 22:26,"404 Elm St, Austin, TX 73301" -281330,Apple Airpods Headphones,1,150,11/20/19 12:29,"584 Ridge St, Austin, TX 73301" -281331,27in 4K Gaming Monitor,1,389.99,11/18/19 13:55,"265 Lakeview St, San Francisco, CA 94016" -281332,Bose SoundSport Headphones,1,99.99,11/08/19 22:27,"23 6th St, Los Angeles, CA 90001" -281333,iPhone,1,700,11/12/19 14:37,"796 8th St, San Francisco, CA 94016" -281334,Lightning Charging Cable,1,14.95,11/29/19 09:17,"559 10th St, Boston, MA 02215" -281335,AA Batteries (4-pack),1,3.84,11/27/19 12:41,"307 Washington St, New York City, NY 10001" -281336,AA Batteries (4-pack),3,3.84,11/05/19 12:02,"86 2nd St, New York City, NY 10001" -281337,Macbook Pro Laptop,1,1700,11/24/19 23:06,"783 Center St, Los Angeles, CA 90001" -281338,Lightning Charging Cable,1,14.95,11/17/19 22:51,"391 11th St, San Francisco, CA 94016" -281339,USB-C Charging Cable,1,11.95,11/25/19 10:56,"687 10th St, New York City, NY 10001" -281340,Apple Airpods Headphones,1,150,11/04/19 07:46,"312 Highland St, Los Angeles, CA 90001" -281341,Bose SoundSport Headphones,1,99.99,11/09/19 13:19,"489 8th St, Seattle, WA 98101" -281342,Apple Airpods Headphones,1,150,11/12/19 23:24,"832 Maple St, San Francisco, CA 94016" -281343,AAA Batteries (4-pack),3,2.99,11/26/19 20:42,"103 Cherry St, New York City, NY 10001" -281344,AAA Batteries (4-pack),1,2.99,11/19/19 18:06,"79 5th St, Seattle, WA 98101" -281345,27in FHD Monitor,1,149.99,11/20/19 00:32,"71 Willow St, Dallas, TX 75001" -281346,Wired Headphones,1,11.99,11/24/19 00:21,"539 12th St, San Francisco, CA 94016" -281347,Macbook Pro Laptop,1,1700,11/01/19 09:24,"597 Cherry St, Los Angeles, CA 90001" -281348,AA Batteries (4-pack),1,3.84,11/14/19 07:08,"599 West St, San Francisco, CA 94016" -281349,AAA Batteries (4-pack),2,2.99,11/08/19 11:42,"23 Sunset St, Austin, TX 73301" -281350,Macbook Pro Laptop,1,1700,11/24/19 20:49,"893 Willow St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -281351,Bose SoundSport Headphones,1,99.99,11/06/19 12:53,"899 8th St, San Francisco, CA 94016" -281352,Apple Airpods Headphones,1,150,11/14/19 09:19,"600 Center St, Los Angeles, CA 90001" -281353,Apple Airpods Headphones,1,150,11/10/19 11:45,"978 Walnut St, Portland, OR 97035" -281354,Lightning Charging Cable,2,14.95,11/13/19 08:30,"694 Lake St, Atlanta, GA 30301" -281355,LG Dryer,1,600.0,11/16/19 09:03,"409 North St, San Francisco, CA 94016" -281356,AA Batteries (4-pack),1,3.84,11/21/19 19:54,"819 Lakeview St, Portland, OR 97035" -281357,Wired Headphones,1,11.99,11/11/19 12:01,"3 Forest St, Austin, TX 73301" -281358,USB-C Charging Cable,1,11.95,11/21/19 22:35,"853 Lincoln St, New York City, NY 10001" -281359,USB-C Charging Cable,1,11.95,11/09/19 19:53,"95 Madison St, Boston, MA 02215" -281360,Macbook Pro Laptop,1,1700,11/21/19 18:38,"176 12th St, Atlanta, GA 30301" -281361,Wired Headphones,1,11.99,11/17/19 11:09,"410 Adams St, Austin, TX 73301" -281362,34in Ultrawide Monitor,1,379.99,11/23/19 15:01,"706 4th St, Atlanta, GA 30301" -281363,USB-C Charging Cable,1,11.95,11/29/19 14:50,"853 Jackson St, Boston, MA 02215" -281364,Apple Airpods Headphones,1,150,11/07/19 12:32,"65 South St, Atlanta, GA 30301" -281365,AA Batteries (4-pack),1,3.84,11/01/19 12:35,"274 Forest St, San Francisco, CA 94016" -281366,AAA Batteries (4-pack),2,2.99,11/13/19 16:58,"389 Church St, Portland, OR 97035" -281367,AA Batteries (4-pack),1,3.84,11/10/19 11:10,"921 Sunset St, Seattle, WA 98101" -281368,AAA Batteries (4-pack),1,2.99,11/13/19 19:40,"45 Highland St, Los Angeles, CA 90001" -281369,AA Batteries (4-pack),1,3.84,11/10/19 15:57,"917 Highland St, Los Angeles, CA 90001" -281370,AA Batteries (4-pack),1,3.84,11/23/19 14:40,"3 Lincoln St, Los Angeles, CA 90001" -281371,AAA Batteries (4-pack),1,2.99,11/09/19 14:04,"786 5th St, Boston, MA 02215" -281372,iPhone,1,700,11/30/19 15:44,"154 Willow St, Boston, MA 02215" -281373,Lightning Charging Cable,1,14.95,11/28/19 16:37,"696 11th St, San Francisco, CA 94016" -281374,Lightning Charging Cable,1,14.95,11/29/19 13:08,"896 Church St, San Francisco, CA 94016" -281375,Apple Airpods Headphones,1,150,11/05/19 11:23,"67 12th St, San Francisco, CA 94016" -281376,ThinkPad Laptop,1,999.99,11/02/19 14:07,"920 11th St, Dallas, TX 75001" -281377,27in 4K Gaming Monitor,1,389.99,11/07/19 05:18,"822 Lakeview St, San Francisco, CA 94016" -281378,USB-C Charging Cable,1,11.95,11/19/19 23:12,"63 Highland St, Portland, OR 97035" -281379,Google Phone,1,600,11/21/19 19:06,"518 Hill St, Los Angeles, CA 90001" -281380,Macbook Pro Laptop,1,1700,11/24/19 13:33,"61 South St, Dallas, TX 75001" -281381,Bose SoundSport Headphones,1,99.99,11/17/19 12:48,"325 Maple St, San Francisco, CA 94016" -281382,27in 4K Gaming Monitor,1,389.99,11/29/19 18:15,"642 11th St, Boston, MA 02215" -281383,27in 4K Gaming Monitor,1,389.99,11/11/19 21:06,"840 Hill St, San Francisco, CA 94016" -281384,AA Batteries (4-pack),1,3.84,11/15/19 12:10,"340 Cherry St, Portland, ME 04101" -281384,iPhone,1,700,11/15/19 12:10,"340 Cherry St, Portland, ME 04101" -281385,USB-C Charging Cable,2,11.95,11/15/19 12:42,"413 Jefferson St, Atlanta, GA 30301" -281386,Google Phone,1,600,11/17/19 20:48,"738 Church St, New York City, NY 10001" -281387,USB-C Charging Cable,1,11.95,11/08/19 18:14,"951 Center St, Boston, MA 02215" -281388,Lightning Charging Cable,1,14.95,11/24/19 14:04,"109 Dogwood St, Seattle, WA 98101" -281389,Lightning Charging Cable,1,14.95,11/22/19 12:28,"578 5th St, Los Angeles, CA 90001" -281389,Lightning Charging Cable,1,14.95,11/22/19 12:28,"578 5th St, Los Angeles, CA 90001" -281390,USB-C Charging Cable,1,11.95,11/19/19 20:12,"905 Spruce St, Atlanta, GA 30301" -281391,AAA Batteries (4-pack),1,2.99,11/16/19 19:39,"76 11th St, New York City, NY 10001" -281392,AA Batteries (4-pack),1,3.84,11/15/19 12:54,"661 2nd St, Dallas, TX 75001" -281393,AA Batteries (4-pack),1,3.84,11/09/19 11:01,"891 Pine St, New York City, NY 10001" -281394,Wired Headphones,1,11.99,11/08/19 13:13,"366 Adams St, Los Angeles, CA 90001" -281395,ThinkPad Laptop,1,999.99,11/18/19 22:54,"627 South St, Dallas, TX 75001" -281396,Wired Headphones,1,11.99,11/08/19 11:38,"737 River St, New York City, NY 10001" -281397,34in Ultrawide Monitor,1,379.99,11/18/19 17:11,"772 Madison St, Los Angeles, CA 90001" -281398,Lightning Charging Cable,2,14.95,11/28/19 22:23,"267 4th St, Los Angeles, CA 90001" -281399,iPhone,1,700,11/09/19 15:16,"343 Chestnut St, Seattle, WA 98101" -281400,AA Batteries (4-pack),1,3.84,11/12/19 13:29,"291 Hill St, Boston, MA 02215" -281401,27in 4K Gaming Monitor,1,389.99,11/27/19 12:37,"585 Lincoln St, Los Angeles, CA 90001" -281402,Google Phone,1,600,11/28/19 10:57,"497 Pine St, San Francisco, CA 94016" -281402,Wired Headphones,1,11.99,11/28/19 10:57,"497 Pine St, San Francisco, CA 94016" -281403,AA Batteries (4-pack),1,3.84,11/25/19 09:15,"528 Center St, Austin, TX 73301" -281404,Apple Airpods Headphones,1,150,11/10/19 19:48,"769 Johnson St, Los Angeles, CA 90001" -281405,AA Batteries (4-pack),1,3.84,11/22/19 18:48,"767 Center St, New York City, NY 10001" -281406,ThinkPad Laptop,1,999.99,11/24/19 01:13,"621 Willow St, Dallas, TX 75001" -281407,Bose SoundSport Headphones,1,99.99,11/02/19 20:41,"411 13th St, San Francisco, CA 94016" -281408,USB-C Charging Cable,1,11.95,11/23/19 16:55,"184 Madison St, Los Angeles, CA 90001" -281409,USB-C Charging Cable,1,11.95,11/04/19 11:48,"654 1st St, Los Angeles, CA 90001" -281410,Wired Headphones,1,11.99,11/30/19 12:43,"859 Sunset St, Atlanta, GA 30301" -281411,Wired Headphones,1,11.99,11/24/19 10:23,"111 Pine St, Portland, OR 97035" -281412,AA Batteries (4-pack),1,3.84,11/26/19 13:44,"586 Chestnut St, New York City, NY 10001" -281413,USB-C Charging Cable,1,11.95,11/17/19 15:38,"19 Cherry St, San Francisco, CA 94016" -281414,Google Phone,1,600,11/08/19 16:23,"103 Center St, New York City, NY 10001" -281414,USB-C Charging Cable,1,11.95,11/08/19 16:23,"103 Center St, New York City, NY 10001" -281415,AA Batteries (4-pack),1,3.84,11/24/19 10:49,"91 North St, Atlanta, GA 30301" -281416,Google Phone,1,600,11/06/19 14:11,"748 Church St, Austin, TX 73301" -281416,Bose SoundSport Headphones,1,99.99,11/06/19 14:11,"748 Church St, Austin, TX 73301" -281417,27in 4K Gaming Monitor,1,389.99,11/16/19 18:54,"102 Ridge St, Los Angeles, CA 90001" -281418,AA Batteries (4-pack),3,3.84,11/24/19 05:05,"416 Main St, Atlanta, GA 30301" -281419,USB-C Charging Cable,1,11.95,11/09/19 20:18,"952 Madison St, Los Angeles, CA 90001" -281420,Lightning Charging Cable,1,14.95,11/19/19 08:57,"123 Main St, Portland, OR 97035" -281421,Bose SoundSport Headphones,1,99.99,11/23/19 09:55,"133 Dogwood St, New York City, NY 10001" -281422,iPhone,1,700,11/03/19 21:12,"635 10th St, San Francisco, CA 94016" -281423,Wired Headphones,1,11.99,11/24/19 10:17,"609 Jackson St, Los Angeles, CA 90001" -281424,USB-C Charging Cable,1,11.95,11/06/19 10:19,"364 North St, Los Angeles, CA 90001" -281425,iPhone,1,700,11/22/19 01:28,"361 Wilson St, Portland, ME 04101" -281426,Bose SoundSport Headphones,1,99.99,11/08/19 21:10,"302 Park St, Boston, MA 02215" -281427,Vareebadd Phone,1,400,11/11/19 12:24,"956 Madison St, San Francisco, CA 94016" -281428,Lightning Charging Cable,1,14.95,11/17/19 21:13,"11 Adams St, New York City, NY 10001" -281429,USB-C Charging Cable,2,11.95,11/17/19 13:40,"439 Meadow St, San Francisco, CA 94016" -281430,27in 4K Gaming Monitor,1,389.99,11/23/19 13:25,"682 Maple St, San Francisco, CA 94016" -281431,USB-C Charging Cable,1,11.95,11/22/19 12:39,"865 8th St, Dallas, TX 75001" -281432,Wired Headphones,1,11.99,11/16/19 22:15,"670 Lakeview St, Seattle, WA 98101" -281433,27in 4K Gaming Monitor,1,389.99,11/28/19 17:53,"256 South St, San Francisco, CA 94016" -281434,AAA Batteries (4-pack),1,2.99,11/12/19 19:37,"695 1st St, San Francisco, CA 94016" -281435,USB-C Charging Cable,1,11.95,11/06/19 18:19,"667 Hickory St, San Francisco, CA 94016" -281436,iPhone,1,700,11/08/19 12:30,"583 North St, San Francisco, CA 94016" -281436,Wired Headphones,1,11.99,11/08/19 12:30,"583 North St, San Francisco, CA 94016" -281437,AAA Batteries (4-pack),1,2.99,11/15/19 13:04,"608 South St, Dallas, TX 75001" -281438,34in Ultrawide Monitor,1,379.99,11/15/19 07:42,"543 Maple St, New York City, NY 10001" -281439,AAA Batteries (4-pack),1,2.99,11/16/19 11:51,"428 Chestnut St, Los Angeles, CA 90001" -281440,Macbook Pro Laptop,1,1700,11/22/19 07:39,"362 South St, Atlanta, GA 30301" -281441,Bose SoundSport Headphones,1,99.99,11/30/19 22:13,"481 Chestnut St, Seattle, WA 98101" -281442,Google Phone,1,600,11/13/19 08:11,"800 11th St, San Francisco, CA 94016" -281443,Wired Headphones,1,11.99,11/16/19 12:02,"623 5th St, Seattle, WA 98101" -281444,Bose SoundSport Headphones,1,99.99,11/11/19 12:12,"938 2nd St, Los Angeles, CA 90001" -281445,USB-C Charging Cable,1,11.95,11/04/19 10:10,"202 Elm St, Portland, OR 97035" -281446,USB-C Charging Cable,1,11.95,11/03/19 14:41,"758 South St, Seattle, WA 98101" -281447,Lightning Charging Cable,2,14.95,11/17/19 11:27,"579 Walnut St, Los Angeles, CA 90001" -281448,AA Batteries (4-pack),1,3.84,11/19/19 07:22,"768 Lakeview St, Seattle, WA 98101" -281449,Google Phone,1,600,11/29/19 18:35,"756 Meadow St, Atlanta, GA 30301" -281450,USB-C Charging Cable,1,11.95,11/21/19 14:52,"291 2nd St, San Francisco, CA 94016" -281451,27in FHD Monitor,1,149.99,11/24/19 10:12,"455 6th St, Los Angeles, CA 90001" -281452,Wired Headphones,1,11.99,11/10/19 19:55,"573 12th St, Seattle, WA 98101" -281453,27in 4K Gaming Monitor,1,389.99,11/27/19 21:04,"244 Johnson St, Atlanta, GA 30301" -281454,AA Batteries (4-pack),1,3.84,11/04/19 07:48,"423 Madison St, Boston, MA 02215" -281455,AA Batteries (4-pack),1,3.84,11/30/19 11:35,"548 12th St, Los Angeles, CA 90001" -281456,USB-C Charging Cable,1,11.95,11/04/19 07:54,"577 Ridge St, Los Angeles, CA 90001" -281457,27in FHD Monitor,1,149.99,11/25/19 14:05,"439 Church St, San Francisco, CA 94016" -281458,Bose SoundSport Headphones,1,99.99,11/25/19 13:05,"750 West St, Austin, TX 73301" -281459,AA Batteries (4-pack),1,3.84,11/30/19 15:04,"345 Spruce St, Los Angeles, CA 90001" -281460,Lightning Charging Cable,1,14.95,11/27/19 16:25,"610 Willow St, San Francisco, CA 94016" -281461,USB-C Charging Cable,1,11.95,11/19/19 20:33,"161 River St, San Francisco, CA 94016" -281462,Bose SoundSport Headphones,1,99.99,11/29/19 20:29,"63 Adams St, Atlanta, GA 30301" -281463,USB-C Charging Cable,1,11.95,11/01/19 19:52,"832 Spruce St, Atlanta, GA 30301" -281464,Flatscreen TV,1,300,11/28/19 15:30,"259 Chestnut St, Austin, TX 73301" -281465,Wired Headphones,1,11.99,11/09/19 19:52,"645 5th St, Atlanta, GA 30301" -281466,Lightning Charging Cable,1,14.95,11/08/19 06:13,"813 Madison St, Portland, ME 04101" -281467,27in FHD Monitor,1,149.99,11/25/19 00:15,"700 Forest St, Portland, ME 04101" -281468,34in Ultrawide Monitor,1,379.99,11/15/19 14:13,"338 Walnut St, Seattle, WA 98101" -281469,USB-C Charging Cable,1,11.95,11/11/19 16:55,"985 Washington St, Seattle, WA 98101" -281470,27in 4K Gaming Monitor,1,389.99,11/01/19 17:42,"605 9th St, Portland, ME 04101" -281471,Bose SoundSport Headphones,1,99.99,11/26/19 14:15,"885 Highland St, New York City, NY 10001" -281472,USB-C Charging Cable,1,11.95,11/09/19 13:21,"80 Madison St, Boston, MA 02215" -281473,Apple Airpods Headphones,1,150,11/25/19 16:35,"435 Walnut St, Portland, OR 97035" -281474,27in 4K Gaming Monitor,1,389.99,11/25/19 12:53,"405 8th St, San Francisco, CA 94016" -281475,iPhone,1,700,11/05/19 13:00,"907 Elm St, Seattle, WA 98101" -281476,USB-C Charging Cable,1,11.95,11/04/19 12:24,"285 5th St, New York City, NY 10001" -281477,Lightning Charging Cable,1,14.95,11/09/19 20:39,"708 Adams St, Dallas, TX 75001" -281478,Apple Airpods Headphones,1,150,11/26/19 19:10,"624 8th St, Austin, TX 73301" -281479,Apple Airpods Headphones,1,150,11/26/19 11:03,"329 Adams St, Boston, MA 02215" -281480,AAA Batteries (4-pack),1,2.99,11/14/19 18:19,"717 Church St, Dallas, TX 75001" -281481,USB-C Charging Cable,2,11.95,11/01/19 19:36,"451 Hickory St, San Francisco, CA 94016" -281482,Bose SoundSport Headphones,1,99.99,11/27/19 00:36,"342 Wilson St, San Francisco, CA 94016" -281483,Wired Headphones,1,11.99,11/07/19 02:55,"955 Willow St, San Francisco, CA 94016" -281484,Wired Headphones,1,11.99,11/23/19 02:08,"103 9th St, Los Angeles, CA 90001" -281485,iPhone,1,700,11/03/19 09:08,"584 Chestnut St, Austin, TX 73301" -281486,Bose SoundSport Headphones,1,99.99,11/08/19 20:30,"917 Park St, Atlanta, GA 30301" -281487,Macbook Pro Laptop,1,1700,11/30/19 19:08,"479 Elm St, New York City, NY 10001" -281488,AA Batteries (4-pack),1,3.84,11/13/19 18:18,"678 Jefferson St, San Francisco, CA 94016" -281489,Lightning Charging Cable,1,14.95,11/01/19 23:28,"35 Spruce St, New York City, NY 10001" -281490,ThinkPad Laptop,1,999.99,11/16/19 08:27,"654 6th St, Atlanta, GA 30301" -281491,Apple Airpods Headphones,1,150,11/11/19 12:48,"259 13th St, Dallas, TX 75001" -281492,Wired Headphones,1,11.99,11/07/19 16:00,"407 Church St, Los Angeles, CA 90001" -281493,27in 4K Gaming Monitor,1,389.99,11/01/19 21:01,"395 Hill St, Dallas, TX 75001" -281494,Wired Headphones,1,11.99,11/27/19 17:40,"583 Washington St, New York City, NY 10001" -281495,Apple Airpods Headphones,1,150,11/27/19 16:37,"406 13th St, New York City, NY 10001" -281496,Google Phone,1,600,11/24/19 14:32,"108 Lincoln St, Los Angeles, CA 90001" -281497,iPhone,1,700,11/26/19 12:10,"640 West St, San Francisco, CA 94016" -281497,Apple Airpods Headphones,1,150,11/26/19 12:10,"640 West St, San Francisco, CA 94016" -281498,USB-C Charging Cable,1,11.95,11/08/19 10:44,"155 Johnson St, New York City, NY 10001" -281499,Lightning Charging Cable,1,14.95,11/25/19 22:52,"445 Park St, Austin, TX 73301" -281500,USB-C Charging Cable,1,11.95,11/30/19 23:09,"104 Ridge St, Los Angeles, CA 90001" -281501,Lightning Charging Cable,2,14.95,11/07/19 12:53,"875 10th St, Austin, TX 73301" -281502,27in FHD Monitor,1,149.99,11/24/19 18:12,"99 Center St, New York City, NY 10001" -281503,Flatscreen TV,1,300,11/25/19 18:47,"829 14th St, Boston, MA 02215" -281504,USB-C Charging Cable,1,11.95,11/17/19 10:28,"90 Pine St, Austin, TX 73301" -281505,Bose SoundSport Headphones,1,99.99,11/02/19 18:26,"765 5th St, Atlanta, GA 30301" -281506,Macbook Pro Laptop,1,1700,11/25/19 08:01,"928 Elm St, Austin, TX 73301" -281507,USB-C Charging Cable,1,11.95,11/27/19 01:00,"298 Maple St, Atlanta, GA 30301" -281508,AA Batteries (4-pack),1,3.84,11/08/19 00:01,"698 2nd St, Boston, MA 02215" -281509,AA Batteries (4-pack),1,3.84,11/29/19 14:15,"906 Washington St, Seattle, WA 98101" -281510,Macbook Pro Laptop,1,1700,11/15/19 12:51,"705 8th St, New York City, NY 10001" -281511,Wired Headphones,3,11.99,11/01/19 17:18,"556 Pine St, Atlanta, GA 30301" -281512,LG Dryer,1,600.0,11/03/19 18:43,"93 North St, San Francisco, CA 94016" -281513,Bose SoundSport Headphones,1,99.99,11/11/19 21:34,"222 Cedar St, Boston, MA 02215" -281514,AA Batteries (4-pack),1,3.84,11/07/19 08:53,"267 North St, Los Angeles, CA 90001" -281515,iPhone,1,700,11/11/19 17:48,"358 Madison St, San Francisco, CA 94016" -281515,Apple Airpods Headphones,1,150,11/11/19 17:48,"358 Madison St, San Francisco, CA 94016" -281516,iPhone,1,700,11/24/19 14:03,"920 Hill St, Dallas, TX 75001" -281517,AA Batteries (4-pack),1,3.84,11/21/19 17:13,"889 Johnson St, San Francisco, CA 94016" -281518,Lightning Charging Cable,1,14.95,11/02/19 20:44,"612 Center St, Austin, TX 73301" -281519,Bose SoundSport Headphones,1,99.99,11/13/19 20:09,"959 Washington St, San Francisco, CA 94016" -281520,iPhone,1,700,11/12/19 10:56,"573 Wilson St, San Francisco, CA 94016" -281520,Lightning Charging Cable,1,14.95,11/12/19 10:56,"573 Wilson St, San Francisco, CA 94016" -281521,Google Phone,1,600,11/22/19 16:33,"790 4th St, Seattle, WA 98101" -281522,27in FHD Monitor,1,149.99,11/30/19 22:24,"935 Center St, Dallas, TX 75001" -281523,Apple Airpods Headphones,1,150,11/07/19 18:16,"511 Cherry St, San Francisco, CA 94016" -281524,Lightning Charging Cable,1,14.95,11/02/19 06:08,"872 Hickory St, Portland, ME 04101" -281525,Apple Airpods Headphones,1,150,11/24/19 16:49,"654 10th St, Boston, MA 02215" -281526,Wired Headphones,1,11.99,11/16/19 19:57,"712 Chestnut St, Los Angeles, CA 90001" -281527,Apple Airpods Headphones,1,150,11/24/19 13:21,"994 11th St, New York City, NY 10001" -281528,AA Batteries (4-pack),2,3.84,11/07/19 12:53,"489 River St, Dallas, TX 75001" -281529,AA Batteries (4-pack),2,3.84,11/18/19 11:49,"531 Lincoln St, Los Angeles, CA 90001" -281530,Apple Airpods Headphones,1,150,11/16/19 13:37,"164 4th St, Atlanta, GA 30301" -281531,Lightning Charging Cable,1,14.95,11/08/19 08:39,"659 6th St, New York City, NY 10001" -281532,Wired Headphones,1,11.99,11/11/19 07:53,"968 West St, San Francisco, CA 94016" -281533,Flatscreen TV,1,300,11/24/19 13:02,"489 Jackson St, Seattle, WA 98101" -281534,27in FHD Monitor,1,149.99,11/09/19 20:18,"836 11th St, Boston, MA 02215" -281535,Lightning Charging Cable,1,14.95,11/07/19 18:51,"152 Highland St, New York City, NY 10001" -281536,USB-C Charging Cable,1,11.95,11/28/19 21:54,"84 Church St, New York City, NY 10001" -281536,Wired Headphones,1,11.99,11/28/19 21:54,"84 Church St, New York City, NY 10001" -281537,USB-C Charging Cable,1,11.95,11/13/19 17:41,"307 2nd St, New York City, NY 10001" -281538,Macbook Pro Laptop,1,1700,11/08/19 00:19,"285 Johnson St, Seattle, WA 98101" -281539,Bose SoundSport Headphones,1,99.99,11/11/19 10:42,"608 12th St, Dallas, TX 75001" -281540,iPhone,1,700,11/04/19 09:40,"384 Chestnut St, Dallas, TX 75001" -281541,Apple Airpods Headphones,1,150,11/29/19 22:08,"767 Hill St, Boston, MA 02215" -281542,AAA Batteries (4-pack),1,2.99,11/29/19 13:16,"918 Cedar St, Dallas, TX 75001" -281543,USB-C Charging Cable,1,11.95,11/29/19 21:53,"72 Adams St, San Francisco, CA 94016" -281544,Wired Headphones,1,11.99,11/23/19 17:44,"460 Chestnut St, New York City, NY 10001" -281545,AA Batteries (4-pack),1,3.84,11/16/19 10:56,"67 6th St, Seattle, WA 98101" -281546,USB-C Charging Cable,1,11.95,11/26/19 22:09,"578 Walnut St, Atlanta, GA 30301" -281547,27in FHD Monitor,1,149.99,11/26/19 10:47,"916 Lake St, Austin, TX 73301" -281548,Wired Headphones,1,11.99,11/12/19 18:08,"982 West St, Dallas, TX 75001" -281549,USB-C Charging Cable,1,11.95,11/17/19 22:14,"613 Lake St, Boston, MA 02215" -281550,Lightning Charging Cable,2,14.95,11/06/19 14:56,"124 Elm St, San Francisco, CA 94016" -281551,Wired Headphones,1,11.99,11/16/19 21:06,"386 Highland St, Boston, MA 02215" -281552,USB-C Charging Cable,1,11.95,11/19/19 13:01,"407 4th St, San Francisco, CA 94016" -281553,27in 4K Gaming Monitor,1,389.99,11/27/19 18:50,"983 Washington St, New York City, NY 10001" -281554,AA Batteries (4-pack),1,3.84,11/24/19 14:51,"36 Jackson St, Los Angeles, CA 90001" -281555,iPhone,1,700,11/28/19 19:09,"529 Center St, Austin, TX 73301" -281556,USB-C Charging Cable,1,11.95,11/24/19 16:45,"68 Lincoln St, Seattle, WA 98101" -281557,Wired Headphones,1,11.99,11/24/19 16:55,"739 8th St, San Francisco, CA 94016" -281558,USB-C Charging Cable,1,11.95,11/26/19 23:34,"987 Lake St, Austin, TX 73301" -281559,AA Batteries (4-pack),1,3.84,11/07/19 19:19,"231 Lincoln St, San Francisco, CA 94016" -281560,AA Batteries (4-pack),1,3.84,11/01/19 13:21,"42 Hickory St, Dallas, TX 75001" -281561,USB-C Charging Cable,1,11.95,11/02/19 11:40,"340 Cherry St, New York City, NY 10001" -281562,20in Monitor,1,109.99,11/12/19 14:33,"673 Meadow St, New York City, NY 10001" -281563,27in 4K Gaming Monitor,1,389.99,11/29/19 07:34,"983 12th St, Los Angeles, CA 90001" -281564,USB-C Charging Cable,1,11.95,11/12/19 09:10,"708 Lincoln St, San Francisco, CA 94016" -281565,Wired Headphones,1,11.99,11/10/19 08:14,"337 11th St, New York City, NY 10001" -281566,Wired Headphones,1,11.99,11/18/19 15:43,"446 West St, San Francisco, CA 94016" -281567,Lightning Charging Cable,1,14.95,11/13/19 20:18,"812 Pine St, Atlanta, GA 30301" -281568,AAA Batteries (4-pack),1,2.99,11/12/19 14:26,"724 Adams St, Los Angeles, CA 90001" -281569,Bose SoundSport Headphones,1,99.99,11/14/19 09:52,"991 11th St, Seattle, WA 98101" -281570,Bose SoundSport Headphones,1,99.99,11/19/19 19:33,"447 Pine St, Portland, OR 97035" -281571,USB-C Charging Cable,1,11.95,11/02/19 18:02,"146 7th St, Austin, TX 73301" -281572,27in 4K Gaming Monitor,1,389.99,11/30/19 22:38,"263 Wilson St, Boston, MA 02215" -281573,Lightning Charging Cable,1,14.95,11/28/19 22:33,"112 Washington St, San Francisco, CA 94016" -281574,20in Monitor,1,109.99,11/21/19 09:37,"336 Maple St, New York City, NY 10001" -281575,34in Ultrawide Monitor,1,379.99,11/04/19 13:14,"919 Meadow St, Seattle, WA 98101" -281576,Bose SoundSport Headphones,1,99.99,11/02/19 12:21,"739 Johnson St, Boston, MA 02215" -281577,AAA Batteries (4-pack),2,2.99,11/03/19 19:25,"95 Lakeview St, Los Angeles, CA 90001" -281578,AAA Batteries (4-pack),3,2.99,11/13/19 16:21,"825 Lake St, Boston, MA 02215" -281579,AAA Batteries (4-pack),1,2.99,11/05/19 15:56,"350 Jefferson St, San Francisco, CA 94016" -281580,Apple Airpods Headphones,1,150,11/22/19 13:50,"852 2nd St, Atlanta, GA 30301" -281581,Wired Headphones,1,11.99,11/04/19 20:11,"819 5th St, New York City, NY 10001" -281581,Wired Headphones,1,11.99,11/04/19 20:11,"819 5th St, New York City, NY 10001" -281582,iPhone,1,700,11/02/19 13:14,"185 Center St, New York City, NY 10001" -281583,Apple Airpods Headphones,1,150,11/14/19 12:59,"128 Cherry St, Los Angeles, CA 90001" -281584,Wired Headphones,3,11.99,11/21/19 19:39,"444 11th St, Portland, ME 04101" -281585,USB-C Charging Cable,1,11.95,11/06/19 16:19,"614 Dogwood St, New York City, NY 10001" -281586,AAA Batteries (4-pack),4,2.99,11/08/19 20:57,"779 Forest St, Austin, TX 73301" -281587,20in Monitor,1,109.99,11/10/19 15:10,"107 River St, Portland, OR 97035" -281588,iPhone,1,700,11/25/19 17:36,"826 Maple St, Atlanta, GA 30301" -281589,Bose SoundSport Headphones,1,99.99,11/20/19 22:35,"660 Elm St, San Francisco, CA 94016" -281590,iPhone,1,700,11/13/19 06:01,"315 North St, Boston, MA 02215" -281590,Wired Headphones,1,11.99,11/13/19 06:01,"315 North St, Boston, MA 02215" -281591,USB-C Charging Cable,1,11.95,11/23/19 16:19,"120 Wilson St, San Francisco, CA 94016" -281592,AA Batteries (4-pack),1,3.84,11/13/19 11:57,"688 5th St, New York City, NY 10001" -281593,Apple Airpods Headphones,1,150,11/21/19 23:04,"270 Hill St, Boston, MA 02215" -281594,Apple Airpods Headphones,1,150,11/18/19 09:44,"255 Dogwood St, New York City, NY 10001" -281595,Wired Headphones,2,11.99,11/08/19 08:01,"904 Pine St, New York City, NY 10001" -281596,Bose SoundSport Headphones,1,99.99,11/02/19 14:55,"759 8th St, Austin, TX 73301" -281597,AA Batteries (4-pack),1,3.84,11/30/19 17:26,"511 Main St, New York City, NY 10001" -281598,ThinkPad Laptop,1,999.99,11/07/19 14:06,"700 Wilson St, Atlanta, GA 30301" -281599,AAA Batteries (4-pack),1,2.99,11/15/19 11:34,"856 Adams St, Boston, MA 02215" -281600,Wired Headphones,1,11.99,11/22/19 11:22,"514 Johnson St, San Francisco, CA 94016" -281601,ThinkPad Laptop,1,999.99,11/11/19 17:22,"315 Adams St, San Francisco, CA 94016" -281602,Google Phone,1,600,11/23/19 18:12,"869 Jefferson St, San Francisco, CA 94016" -281603,Apple Airpods Headphones,1,150,11/29/19 13:34,"93 South St, San Francisco, CA 94016" -281604,34in Ultrawide Monitor,1,379.99,11/08/19 19:35,"148 Lake St, San Francisco, CA 94016" -281605,Apple Airpods Headphones,1,150,11/15/19 01:29,"578 Lincoln St, San Francisco, CA 94016" -281606,Bose SoundSport Headphones,1,99.99,11/14/19 12:25,"120 North St, Los Angeles, CA 90001" -281607,USB-C Charging Cable,1,11.95,11/05/19 18:40,"905 Center St, San Francisco, CA 94016" -281608,Apple Airpods Headphones,1,150,11/17/19 12:22,"690 Washington St, San Francisco, CA 94016" -281609,Google Phone,1,600,11/21/19 17:34,"565 Main St, Los Angeles, CA 90001" -281610,Lightning Charging Cable,1,14.95,11/06/19 09:38,"403 11th St, Boston, MA 02215" -281611,AAA Batteries (4-pack),1,2.99,11/30/19 12:24,"638 1st St, Los Angeles, CA 90001" -281612,Apple Airpods Headphones,1,150,11/13/19 19:50,"21 Sunset St, San Francisco, CA 94016" -281613,Wired Headphones,1,11.99,11/05/19 07:57,"724 6th St, San Francisco, CA 94016" -281614,USB-C Charging Cable,1,11.95,11/10/19 17:16,"977 Adams St, Los Angeles, CA 90001" -281615,LG Dryer,1,600.0,11/20/19 16:27,"982 Spruce St, Dallas, TX 75001" -281616,27in FHD Monitor,1,149.99,11/17/19 14:46,"696 5th St, Austin, TX 73301" -281617,20in Monitor,1,109.99,11/02/19 17:40,"181 Lakeview St, Dallas, TX 75001" -281618,AAA Batteries (4-pack),1,2.99,11/14/19 09:54,"729 Washington St, Austin, TX 73301" -281619,AA Batteries (4-pack),1,3.84,11/04/19 08:33,"158 South St, New York City, NY 10001" -281620,Lightning Charging Cable,1,14.95,11/08/19 12:03,"818 River St, San Francisco, CA 94016" -281621,Lightning Charging Cable,1,14.95,11/30/19 16:51,"568 Elm St, Boston, MA 02215" -281622,Lightning Charging Cable,1,14.95,11/18/19 14:20,"294 2nd St, Los Angeles, CA 90001" -281623,Macbook Pro Laptop,1,1700,11/04/19 08:22,"969 Wilson St, Dallas, TX 75001" -281624,ThinkPad Laptop,1,999.99,11/18/19 11:16,"640 Lincoln St, San Francisco, CA 94016" -281625,Google Phone,1,600,11/14/19 02:17,"774 Pine St, Boston, MA 02215" -281626,20in Monitor,1,109.99,11/13/19 20:25,"122 Walnut St, San Francisco, CA 94016" -281627,USB-C Charging Cable,1,11.95,11/19/19 10:46,"108 Johnson St, Boston, MA 02215" -281628,Lightning Charging Cable,1,14.95,11/19/19 21:42,"427 14th St, San Francisco, CA 94016" -281629,Lightning Charging Cable,1,14.95,11/02/19 22:57,"981 Jackson St, Portland, OR 97035" -281630,ThinkPad Laptop,1,999.99,11/21/19 19:55,"924 1st St, Austin, TX 73301" -281631,AAA Batteries (4-pack),1,2.99,11/16/19 14:22,"868 Chestnut St, Los Angeles, CA 90001" -281632,Lightning Charging Cable,1,14.95,11/03/19 13:20,"172 Hill St, San Francisco, CA 94016" -281633,27in FHD Monitor,1,149.99,11/17/19 12:31,"968 2nd St, San Francisco, CA 94016" -281634,AA Batteries (4-pack),2,3.84,11/14/19 11:33,"934 4th St, Los Angeles, CA 90001" -281635,iPhone,1,700,11/13/19 14:40,"505 Adams St, San Francisco, CA 94016" -281635,Lightning Charging Cable,1,14.95,11/13/19 14:40,"505 Adams St, San Francisco, CA 94016" -281636,AA Batteries (4-pack),1,3.84,11/09/19 17:07,"926 Wilson St, New York City, NY 10001" -281637,AA Batteries (4-pack),1,3.84,11/23/19 13:09,"251 12th St, San Francisco, CA 94016" -281638,USB-C Charging Cable,1,11.95,11/10/19 20:23,"310 5th St, Los Angeles, CA 90001" -281639,AAA Batteries (4-pack),1,2.99,11/27/19 19:55,"694 Lincoln St, Seattle, WA 98101" -281640,Lightning Charging Cable,1,14.95,11/19/19 07:40,"140 Ridge St, Los Angeles, CA 90001" -281641,Lightning Charging Cable,1,14.95,11/08/19 12:52,"809 Jackson St, Boston, MA 02215" -281642,Macbook Pro Laptop,1,1700,11/28/19 22:30,"902 North St, Dallas, TX 75001" -281643,AA Batteries (4-pack),1,3.84,11/10/19 21:18,"933 Lincoln St, San Francisco, CA 94016" -281644,Lightning Charging Cable,1,14.95,11/02/19 15:46,"501 12th St, Seattle, WA 98101" -281645,Google Phone,1,600,11/08/19 12:01,"750 1st St, San Francisco, CA 94016" -281646,Bose SoundSport Headphones,1,99.99,11/16/19 11:00,"931 Church St, Dallas, TX 75001" -281647,Lightning Charging Cable,1,14.95,11/30/19 20:50,"503 13th St, Dallas, TX 75001" -281648,AAA Batteries (4-pack),1,2.99,11/07/19 17:50,"739 6th St, San Francisco, CA 94016" -281649,AAA Batteries (4-pack),1,2.99,11/18/19 07:29,"210 Lincoln St, Seattle, WA 98101" -281649,Apple Airpods Headphones,1,150,11/18/19 07:29,"210 Lincoln St, Seattle, WA 98101" -281650,AA Batteries (4-pack),1,3.84,11/20/19 13:02,"784 Walnut St, San Francisco, CA 94016" -281651,Wired Headphones,1,11.99,11/20/19 18:19,"390 West St, Boston, MA 02215" -281652,Google Phone,1,600,11/10/19 11:02,"44 West St, San Francisco, CA 94016" -281653,27in FHD Monitor,1,149.99,11/24/19 08:44,"289 6th St, Los Angeles, CA 90001" -281654,USB-C Charging Cable,1,11.95,11/05/19 15:12,"154 River St, New York City, NY 10001" -281655,34in Ultrawide Monitor,1,379.99,11/17/19 17:47,"933 Johnson St, Seattle, WA 98101" -281656,USB-C Charging Cable,1,11.95,11/05/19 10:21,"971 Jefferson St, Los Angeles, CA 90001" -281657,20in Monitor,1,109.99,11/16/19 11:41,"791 Madison St, New York City, NY 10001" -281658,AAA Batteries (4-pack),2,2.99,11/18/19 14:29,"827 2nd St, Dallas, TX 75001" -281659,Lightning Charging Cable,1,14.95,11/28/19 15:41,"795 Cherry St, New York City, NY 10001" -281660,27in FHD Monitor,1,149.99,11/26/19 09:26,"575 9th St, San Francisco, CA 94016" -281661,27in FHD Monitor,1,149.99,11/09/19 13:58,"166 Highland St, San Francisco, CA 94016" -281662,Bose SoundSport Headphones,1,99.99,11/12/19 14:06,"171 6th St, Dallas, TX 75001" -281663,Macbook Pro Laptop,1,1700,11/08/19 17:58,"271 North St, New York City, NY 10001" -281664,AAA Batteries (4-pack),1,2.99,11/15/19 16:46,"13 Sunset St, New York City, NY 10001" -281665,Bose SoundSport Headphones,1,99.99,11/07/19 14:24,"517 Cherry St, Seattle, WA 98101" -281666,AA Batteries (4-pack),1,3.84,11/28/19 08:59,"596 Jackson St, Atlanta, GA 30301" -281667,27in 4K Gaming Monitor,1,389.99,11/04/19 17:57,"5 5th St, San Francisco, CA 94016" -281668,AA Batteries (4-pack),1,3.84,11/22/19 19:35,"11 13th St, New York City, NY 10001" -281669,Apple Airpods Headphones,1,150,11/18/19 13:39,"322 Church St, Austin, TX 73301" -281670,iPhone,1,700,11/18/19 11:25,"80 Washington St, New York City, NY 10001" -281671,Apple Airpods Headphones,1,150,11/19/19 20:47,"523 Dogwood St, New York City, NY 10001" -281672,iPhone,1,700,11/12/19 03:18,"780 Walnut St, San Francisco, CA 94016" -281672,Lightning Charging Cable,1,14.95,11/12/19 03:18,"780 Walnut St, San Francisco, CA 94016" -281672,Wired Headphones,1,11.99,11/12/19 03:18,"780 Walnut St, San Francisco, CA 94016" -281673,USB-C Charging Cable,1,11.95,11/06/19 16:48,"982 Hill St, Los Angeles, CA 90001" -281674,Google Phone,1,600,11/19/19 15:08,"822 8th St, Portland, ME 04101" -281675,AAA Batteries (4-pack),1,2.99,11/15/19 16:13,"733 Lincoln St, Seattle, WA 98101" -281676,Google Phone,1,600,11/16/19 13:23,"418 14th St, Portland, OR 97035" -281676,USB-C Charging Cable,1,11.95,11/16/19 13:23,"418 14th St, Portland, OR 97035" -281677,Apple Airpods Headphones,1,150,11/06/19 11:57,"994 Spruce St, Portland, OR 97035" -281678,Google Phone,1,600,11/29/19 08:21,"947 Wilson St, San Francisco, CA 94016" -281679,Lightning Charging Cable,1,14.95,11/03/19 17:48,"485 Jackson St, San Francisco, CA 94016" -281680,iPhone,1,700,11/20/19 21:26,"319 Jefferson St, Portland, ME 04101" -281680,Lightning Charging Cable,1,14.95,11/20/19 21:26,"319 Jefferson St, Portland, ME 04101" -281681,AA Batteries (4-pack),1,3.84,11/18/19 12:03,"100 2nd St, Seattle, WA 98101" -281682,Apple Airpods Headphones,1,150,11/11/19 09:27,"793 9th St, New York City, NY 10001" -281683,AAA Batteries (4-pack),2,2.99,11/06/19 01:37,"508 8th St, New York City, NY 10001" -281684,27in 4K Gaming Monitor,1,389.99,11/24/19 20:09,"246 Madison St, New York City, NY 10001" -281685,27in 4K Gaming Monitor,1,389.99,11/06/19 14:23,"387 Walnut St, Dallas, TX 75001" -281686,AAA Batteries (4-pack),1,2.99,11/10/19 19:15,"17 11th St, Seattle, WA 98101" -281687,27in 4K Gaming Monitor,1,389.99,11/15/19 20:35,"428 Cherry St, San Francisco, CA 94016" -281688,Wired Headphones,1,11.99,11/13/19 21:59,"912 Park St, San Francisco, CA 94016" -281689,Lightning Charging Cable,3,14.95,11/11/19 09:42,"519 Hickory St, Portland, OR 97035" -281690,USB-C Charging Cable,1,11.95,11/04/19 22:53,"615 4th St, New York City, NY 10001" -281690,Wired Headphones,1,11.99,11/04/19 22:53,"615 4th St, New York City, NY 10001" -281691,20in Monitor,1,109.99,11/09/19 14:12,"220 Wilson St, San Francisco, CA 94016" -281692,iPhone,1,700,11/20/19 11:24,"739 8th St, New York City, NY 10001" -281692,Lightning Charging Cable,1,14.95,11/20/19 11:24,"739 8th St, New York City, NY 10001" -281693,Wired Headphones,1,11.99,11/15/19 23:06,"736 North St, San Francisco, CA 94016" -281694,20in Monitor,1,109.99,11/13/19 12:32,"369 Wilson St, Seattle, WA 98101" -281695,Flatscreen TV,1,300,11/29/19 00:34,"757 Jackson St, Boston, MA 02215" -281696,Wired Headphones,1,11.99,11/07/19 12:52,"867 Madison St, San Francisco, CA 94016" -281697,AA Batteries (4-pack),1,3.84,11/27/19 15:18,"694 Lakeview St, San Francisco, CA 94016" -281698,Bose SoundSport Headphones,1,99.99,11/20/19 15:55,"544 Willow St, Dallas, TX 75001" -281699,20in Monitor,1,109.99,11/18/19 10:58,"450 Hickory St, Dallas, TX 75001" -281700,Vareebadd Phone,1,400,11/27/19 20:43,"27 Elm St, San Francisco, CA 94016" -281700,USB-C Charging Cable,1,11.95,11/27/19 20:43,"27 Elm St, San Francisco, CA 94016" -281701,AAA Batteries (4-pack),1,2.99,11/12/19 06:40,"466 Sunset St, Atlanta, GA 30301" -281702,Google Phone,1,600,11/19/19 17:57,"616 Church St, Boston, MA 02215" -281703,Apple Airpods Headphones,1,150,11/05/19 13:22,"531 Lake St, Los Angeles, CA 90001" -281704,Wired Headphones,1,11.99,11/11/19 11:36,"573 Walnut St, Boston, MA 02215" -281705,AA Batteries (4-pack),1,3.84,11/30/19 21:39,"125 Madison St, Austin, TX 73301" -281706,Lightning Charging Cable,1,14.95,11/26/19 17:27,"187 Dogwood St, Los Angeles, CA 90001" -281707,iPhone,1,700,11/18/19 21:57,"721 Spruce St, San Francisco, CA 94016" -281708,ThinkPad Laptop,1,999.99,11/22/19 12:49,"260 Wilson St, Atlanta, GA 30301" -281709,Wired Headphones,1,11.99,11/15/19 08:57,"513 Lakeview St, Boston, MA 02215" -281710,Bose SoundSport Headphones,1,99.99,11/21/19 18:10,"732 Lake St, San Francisco, CA 94016" -281711,Google Phone,1,600,11/27/19 15:58,"574 4th St, San Francisco, CA 94016" -281712,Apple Airpods Headphones,1,150,11/18/19 12:13,"961 Hill St, Dallas, TX 75001" -281713,AAA Batteries (4-pack),1,2.99,11/11/19 18:48,"87 10th St, San Francisco, CA 94016" -281714,Lightning Charging Cable,1,14.95,11/16/19 21:43,"942 North St, New York City, NY 10001" -281715,Wired Headphones,1,11.99,11/24/19 12:38,"32 Center St, Boston, MA 02215" -281716,Flatscreen TV,1,300,11/05/19 22:41,"813 12th St, San Francisco, CA 94016" -281717,iPhone,1,700,11/22/19 12:17,"831 Wilson St, San Francisco, CA 94016" -281717,Apple Airpods Headphones,1,150,11/22/19 12:17,"831 Wilson St, San Francisco, CA 94016" -281718,AA Batteries (4-pack),1,3.84,11/23/19 13:09,"443 Meadow St, Austin, TX 73301" -281719,Wired Headphones,1,11.99,11/12/19 08:45,"42 11th St, New York City, NY 10001" -281720,AAA Batteries (4-pack),1,2.99,11/26/19 14:39,"90 Highland St, Boston, MA 02215" -281721,27in 4K Gaming Monitor,1,389.99,11/30/19 09:12,"591 6th St, Boston, MA 02215" -281722,AA Batteries (4-pack),1,3.84,11/09/19 17:42,"964 Johnson St, San Francisco, CA 94016" -281723,20in Monitor,1,109.99,11/16/19 17:34,"875 10th St, Los Angeles, CA 90001" -281724,ThinkPad Laptop,1,999.99,11/15/19 17:24,"290 Hill St, Los Angeles, CA 90001" -281725,Apple Airpods Headphones,1,150,11/08/19 21:08,"443 Hill St, San Francisco, CA 94016" -281726,AAA Batteries (4-pack),1,2.99,11/22/19 11:37,"772 Cherry St, Los Angeles, CA 90001" -281727,Flatscreen TV,1,300,11/21/19 17:31,"249 Lakeview St, San Francisco, CA 94016" -281728,Google Phone,1,600,11/24/19 11:07,"564 Sunset St, Seattle, WA 98101" -281728,USB-C Charging Cable,1,11.95,11/24/19 11:07,"564 Sunset St, Seattle, WA 98101" -281728,Wired Headphones,1,11.99,11/24/19 11:07,"564 Sunset St, Seattle, WA 98101" -281729,34in Ultrawide Monitor,1,379.99,11/05/19 13:44,"851 4th St, Los Angeles, CA 90001" -281730,Lightning Charging Cable,1,14.95,11/05/19 18:35,"623 Spruce St, New York City, NY 10001" -281731,Wired Headphones,1,11.99,11/11/19 11:37,"910 Jackson St, Dallas, TX 75001" -281732,USB-C Charging Cable,1,11.95,11/07/19 11:28,"195 9th St, Boston, MA 02215" -281733,27in FHD Monitor,1,149.99,11/20/19 19:36,"470 North St, Boston, MA 02215" -281734,Apple Airpods Headphones,1,150,11/21/19 18:21,"498 Sunset St, San Francisco, CA 94016" -281735,Wired Headphones,1,11.99,11/04/19 16:40,"176 Maple St, Portland, OR 97035" -281736,AAA Batteries (4-pack),2,2.99,11/08/19 20:40,"19 Lake St, Los Angeles, CA 90001" -281737,Lightning Charging Cable,1,14.95,11/08/19 11:27,"315 River St, New York City, NY 10001" -281738,34in Ultrawide Monitor,1,379.99,11/29/19 11:42,"288 12th St, Portland, OR 97035" -281739,AA Batteries (4-pack),1,3.84,11/08/19 20:57,"772 Madison St, San Francisco, CA 94016" -281740,27in FHD Monitor,1,149.99,11/26/19 11:42,"926 Main St, Austin, TX 73301" -281741,Wired Headphones,1,11.99,11/11/19 22:37,"791 River St, San Francisco, CA 94016" -281742,AAA Batteries (4-pack),1,2.99,11/27/19 10:46,"269 Pine St, Austin, TX 73301" -281743,Wired Headphones,1,11.99,11/23/19 13:35,"384 Center St, Los Angeles, CA 90001" -281743,AA Batteries (4-pack),1,3.84,11/23/19 13:35,"384 Center St, Los Angeles, CA 90001" -281744,Bose SoundSport Headphones,1,99.99,11/29/19 20:16,"229 2nd St, Dallas, TX 75001" -281745,AAA Batteries (4-pack),2,2.99,11/11/19 09:31,"768 8th St, Seattle, WA 98101" -281746,ThinkPad Laptop,1,999.99,11/14/19 21:54,"983 Spruce St, New York City, NY 10001" -281747,Lightning Charging Cable,1,14.95,11/04/19 12:48,"346 Main St, Portland, OR 97035" -281748,20in Monitor,1,109.99,11/21/19 18:17,"519 Adams St, Portland, OR 97035" -281749,Wired Headphones,2,11.99,11/30/19 16:30,"938 11th St, San Francisco, CA 94016" -281750,AA Batteries (4-pack),1,3.84,11/20/19 08:31,"716 Dogwood St, San Francisco, CA 94016" -281751,AAA Batteries (4-pack),1,2.99,11/13/19 18:41,"349 1st St, Portland, OR 97035" -281752,Google Phone,1,600,11/29/19 01:16,"615 Church St, Boston, MA 02215" -281753,Wired Headphones,1,11.99,11/17/19 10:46,"524 Sunset St, Dallas, TX 75001" -281754,27in FHD Monitor,2,149.99,11/17/19 13:15,"325 Main St, Los Angeles, CA 90001" -281755,Lightning Charging Cable,2,14.95,11/24/19 19:48,"163 1st St, Los Angeles, CA 90001" -281756,Bose SoundSport Headphones,1,99.99,11/30/19 09:20,"794 10th St, New York City, NY 10001" -281757,Wired Headphones,1,11.99,11/10/19 21:16,"625 10th St, San Francisco, CA 94016" -281758,AAA Batteries (4-pack),2,2.99,11/15/19 15:28,"117 6th St, Boston, MA 02215" -281759,USB-C Charging Cable,1,11.95,11/13/19 06:18,"690 8th St, Portland, OR 97035" -281760,34in Ultrawide Monitor,1,379.99,11/08/19 21:21,"433 Dogwood St, Seattle, WA 98101" -281761,Macbook Pro Laptop,1,1700,11/30/19 18:36,"966 Washington St, Austin, TX 73301" -281762,Wired Headphones,1,11.99,11/11/19 20:12,"456 West St, Dallas, TX 75001" -281763,Lightning Charging Cable,1,14.95,11/21/19 11:50,"660 Center St, New York City, NY 10001" -281764,20in Monitor,1,109.99,11/24/19 21:45,"813 8th St, Austin, TX 73301" -281765,Lightning Charging Cable,1,14.95,11/20/19 12:07,"771 Cedar St, San Francisco, CA 94016" -281766,27in 4K Gaming Monitor,1,389.99,11/02/19 20:20,"472 7th St, Seattle, WA 98101" -281767,AAA Batteries (4-pack),2,2.99,11/09/19 11:45,"61 Jackson St, San Francisco, CA 94016" -281768,Wired Headphones,1,11.99,11/22/19 20:21,"457 Park St, San Francisco, CA 94016" -281769,Flatscreen TV,1,300,11/05/19 22:37,"966 Willow St, Atlanta, GA 30301" -281770,AAA Batteries (4-pack),2,2.99,11/16/19 11:30,"83 Cherry St, Boston, MA 02215" -281771,AA Batteries (4-pack),1,3.84,11/17/19 11:52,"786 Dogwood St, New York City, NY 10001" -281772,Lightning Charging Cable,1,14.95,11/10/19 12:54,"829 4th St, Los Angeles, CA 90001" -281773,Apple Airpods Headphones,1,150,11/24/19 18:39,"627 Elm St, Los Angeles, CA 90001" -281774,Lightning Charging Cable,1,14.95,11/05/19 11:08,"813 2nd St, Seattle, WA 98101" -281775,34in Ultrawide Monitor,1,379.99,11/26/19 17:47,"936 9th St, San Francisco, CA 94016" -281776,AA Batteries (4-pack),2,3.84,11/15/19 00:00,"674 Johnson St, San Francisco, CA 94016" -281777,USB-C Charging Cable,1,11.95,11/26/19 14:52,"204 Center St, San Francisco, CA 94016" -281778,iPhone,1,700,11/15/19 09:48,"740 Forest St, New York City, NY 10001" -281779,Apple Airpods Headphones,1,150,11/16/19 07:43,"977 Washington St, San Francisco, CA 94016" -281780,USB-C Charging Cable,1,11.95,11/05/19 20:59,"102 9th St, San Francisco, CA 94016" -281781,Flatscreen TV,1,300,11/15/19 12:08,"774 Spruce St, Los Angeles, CA 90001" -281782,AAA Batteries (4-pack),1,2.99,11/18/19 13:48,"180 Chestnut St, San Francisco, CA 94016" -281783,Flatscreen TV,1,300,11/05/19 01:31,"514 Walnut St, Los Angeles, CA 90001" -281784,Flatscreen TV,1,300,11/17/19 07:26,"927 Church St, Boston, MA 02215" -281785,AAA Batteries (4-pack),1,2.99,11/18/19 13:14,"339 Park St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -281786,Apple Airpods Headphones,1,150,11/29/19 19:59,"433 Dogwood St, Boston, MA 02215" -281787,Lightning Charging Cable,1,14.95,11/30/19 08:28,"69 Ridge St, Los Angeles, CA 90001" -281788,AA Batteries (4-pack),3,3.84,11/11/19 12:41,"864 8th St, Boston, MA 02215" -281789,AAA Batteries (4-pack),3,2.99,11/04/19 16:14,"824 Chestnut St, San Francisco, CA 94016" -281790,AAA Batteries (4-pack),1,2.99,11/03/19 15:25,"441 Wilson St, Los Angeles, CA 90001" -281791,LG Dryer,1,600.0,11/06/19 19:48,"179 Cherry St, Dallas, TX 75001" -281792,Google Phone,1,600,11/17/19 20:24,"806 River St, Los Angeles, CA 90001" -281793,AAA Batteries (4-pack),1,2.99,11/21/19 18:43,"890 Cedar St, San Francisco, CA 94016" -281794,USB-C Charging Cable,1,11.95,11/16/19 13:16,"476 9th St, Boston, MA 02215" -281795,AA Batteries (4-pack),1,3.84,11/28/19 09:35,"572 14th St, Boston, MA 02215" -281796,USB-C Charging Cable,1,11.95,11/26/19 18:10,"370 Jackson St, Los Angeles, CA 90001" -281797,Wired Headphones,1,11.99,11/09/19 09:26,"40 13th St, Los Angeles, CA 90001" -281798,AA Batteries (4-pack),1,3.84,11/02/19 18:59,"947 Adams St, San Francisco, CA 94016" -281799,AAA Batteries (4-pack),1,2.99,11/11/19 17:33,"565 Pine St, San Francisco, CA 94016" -281800,AAA Batteries (4-pack),2,2.99,11/05/19 15:56,"829 Adams St, Portland, OR 97035" -281801,AA Batteries (4-pack),1,3.84,11/28/19 10:42,"641 2nd St, San Francisco, CA 94016" -281802,AA Batteries (4-pack),3,3.84,11/26/19 18:34,"519 Maple St, Portland, OR 97035" -281803,20in Monitor,1,109.99,11/11/19 20:37,"793 Dogwood St, Los Angeles, CA 90001" -281804,Lightning Charging Cable,1,14.95,11/13/19 11:54,"421 Center St, San Francisco, CA 94016" -281805,Apple Airpods Headphones,1,150,11/11/19 16:21,"933 Lincoln St, Seattle, WA 98101" -281806,Apple Airpods Headphones,1,150,11/30/19 07:19,"543 Adams St, San Francisco, CA 94016" -281807,USB-C Charging Cable,1,11.95,11/11/19 20:55,"656 Cherry St, New York City, NY 10001" -281808,27in 4K Gaming Monitor,1,389.99,11/03/19 17:56,"917 Park St, San Francisco, CA 94016" -281809,27in 4K Gaming Monitor,1,389.99,11/17/19 21:32,"539 Chestnut St, New York City, NY 10001" -281810,Lightning Charging Cable,1,14.95,11/09/19 15:50,"672 Sunset St, Austin, TX 73301" -281811,Lightning Charging Cable,1,14.95,11/07/19 17:05,"143 9th St, San Francisco, CA 94016" -281812,AA Batteries (4-pack),1,3.84,11/07/19 19:50,"312 Cedar St, Austin, TX 73301" -281813,AAA Batteries (4-pack),2,2.99,11/09/19 14:35,"223 North St, Los Angeles, CA 90001" -281814,Bose SoundSport Headphones,1,99.99,11/13/19 15:36,"636 Lincoln St, San Francisco, CA 94016" -281815,Macbook Pro Laptop,1,1700,11/20/19 10:36,"576 Jefferson St, Boston, MA 02215" -281816,Bose SoundSport Headphones,1,99.99,11/26/19 09:40,"764 8th St, Atlanta, GA 30301" -281817,Wired Headphones,1,11.99,11/13/19 00:10,"392 9th St, Boston, MA 02215" -281818,Wired Headphones,2,11.99,11/03/19 16:34,"201 Cedar St, New York City, NY 10001" -281819,AAA Batteries (4-pack),2,2.99,11/20/19 21:55,"191 Ridge St, Los Angeles, CA 90001" -281820,USB-C Charging Cable,1,11.95,11/15/19 13:59,"110 Church St, Dallas, TX 75001" -281821,USB-C Charging Cable,1,11.95,11/25/19 23:05,"231 Hickory St, Seattle, WA 98101" -281822,Apple Airpods Headphones,1,150,11/18/19 23:34,"185 Lake St, New York City, NY 10001" -281823,27in 4K Gaming Monitor,1,389.99,11/04/19 21:30,"722 12th St, New York City, NY 10001" -281824,iPhone,1,700,11/29/19 17:28,"119 Maple St, Dallas, TX 75001" -281825,27in FHD Monitor,1,149.99,11/19/19 21:22,"808 North St, Los Angeles, CA 90001" -281826,AA Batteries (4-pack),1,3.84,11/27/19 17:31,"487 Pine St, New York City, NY 10001" -281827,Lightning Charging Cable,2,14.95,11/08/19 18:09,"415 Highland St, Seattle, WA 98101" -281828,Lightning Charging Cable,1,14.95,11/14/19 13:25,"541 Maple St, Atlanta, GA 30301" -281829,AA Batteries (4-pack),1,3.84,11/24/19 12:19,"174 Maple St, Los Angeles, CA 90001" -281830,AAA Batteries (4-pack),2,2.99,11/04/19 19:05,"219 14th St, New York City, NY 10001" -281831,Wired Headphones,1,11.99,11/20/19 19:55,"662 11th St, Atlanta, GA 30301" -281832,Apple Airpods Headphones,1,150,11/16/19 13:11,"728 8th St, New York City, NY 10001" -281833,Lightning Charging Cable,1,14.95,11/04/19 21:42,"659 Spruce St, San Francisco, CA 94016" -281834,Lightning Charging Cable,1,14.95,11/17/19 10:20,"288 11th St, Boston, MA 02215" -281835,USB-C Charging Cable,2,11.95,11/07/19 21:24,"98 Lake St, Austin, TX 73301" -281836,USB-C Charging Cable,2,11.95,11/25/19 12:35,"23 Forest St, San Francisco, CA 94016" -281837,Wired Headphones,1,11.99,11/04/19 07:57,"303 Jackson St, New York City, NY 10001" -281838,USB-C Charging Cable,1,11.95,11/13/19 23:53,"832 Ridge St, San Francisco, CA 94016" -281839,Wired Headphones,1,11.99,11/16/19 07:07,"578 Hickory St, San Francisco, CA 94016" -281840,AAA Batteries (4-pack),1,2.99,11/28/19 20:36,"469 Main St, San Francisco, CA 94016" -281841,AAA Batteries (4-pack),1,2.99,11/15/19 08:56,"484 Chestnut St, Atlanta, GA 30301" -281842,AA Batteries (4-pack),2,3.84,11/23/19 23:28,"596 13th St, New York City, NY 10001" -281843,AA Batteries (4-pack),1,3.84,11/09/19 18:59,"98 West St, Dallas, TX 75001" -281844,AAA Batteries (4-pack),1,2.99,11/08/19 10:41,"822 11th St, San Francisco, CA 94016" -281845,AA Batteries (4-pack),2,3.84,11/30/19 16:41,"309 12th St, Seattle, WA 98101" -281846,Wired Headphones,2,11.99,11/10/19 08:38,"920 2nd St, Los Angeles, CA 90001" -281847,Lightning Charging Cable,1,14.95,11/27/19 09:39,"395 Lincoln St, San Francisco, CA 94016" -281848,USB-C Charging Cable,1,11.95,11/23/19 13:58,"72 Highland St, Atlanta, GA 30301" -281849,Bose SoundSport Headphones,1,99.99,11/25/19 11:16,"610 Hill St, Los Angeles, CA 90001" -281850,27in FHD Monitor,1,149.99,11/05/19 06:42,"423 Highland St, Atlanta, GA 30301" -281850,27in FHD Monitor,1,149.99,11/05/19 06:42,"423 Highland St, Atlanta, GA 30301" -281851,USB-C Charging Cable,1,11.95,11/12/19 22:10,"104 5th St, Los Angeles, CA 90001" -281852,Lightning Charging Cable,1,14.95,11/09/19 07:03,"362 South St, New York City, NY 10001" -281853,USB-C Charging Cable,1,11.95,11/09/19 18:52,"550 Lincoln St, New York City, NY 10001" -281854,20in Monitor,1,109.99,11/17/19 21:00,"678 13th St, Dallas, TX 75001" -281855,ThinkPad Laptop,1,999.99,11/21/19 04:57,"561 Adams St, San Francisco, CA 94016" -281856,27in 4K Gaming Monitor,1,389.99,11/12/19 21:05,"287 2nd St, Seattle, WA 98101" -281857,27in 4K Gaming Monitor,1,389.99,11/17/19 01:19,"256 13th St, Austin, TX 73301" -281858,20in Monitor,1,109.99,11/29/19 16:15,"848 West St, Portland, ME 04101" -281859,USB-C Charging Cable,2,11.95,11/26/19 17:59,"559 Main St, San Francisco, CA 94016" -281860,20in Monitor,1,109.99,11/30/19 23:51,"606 Meadow St, Boston, MA 02215" -281861,AA Batteries (4-pack),1,3.84,11/07/19 09:10,"417 Center St, New York City, NY 10001" -281862,AAA Batteries (4-pack),1,2.99,11/08/19 14:08,"476 9th St, Atlanta, GA 30301" -281863,iPhone,1,700,11/12/19 21:00,"361 Meadow St, San Francisco, CA 94016" -281864,Lightning Charging Cable,1,14.95,11/04/19 15:00,"447 West St, Los Angeles, CA 90001" -281865,USB-C Charging Cable,1,11.95,11/09/19 18:20,"926 Elm St, New York City, NY 10001" -281866,Google Phone,1,600,11/03/19 14:45,"450 Jackson St, New York City, NY 10001" -281867,27in 4K Gaming Monitor,1,389.99,11/07/19 08:46,"588 Forest St, Atlanta, GA 30301" -281868,Bose SoundSport Headphones,2,99.99,11/02/19 21:43,"396 11th St, Los Angeles, CA 90001" -281869,Bose SoundSport Headphones,1,99.99,11/13/19 16:11,"464 North St, Atlanta, GA 30301" -281870,Apple Airpods Headphones,1,150,11/05/19 15:23,"579 Jackson St, New York City, NY 10001" -281871,Macbook Pro Laptop,1,1700,11/07/19 17:26,"125 Sunset St, New York City, NY 10001" -281872,Wired Headphones,1,11.99,11/01/19 11:23,"353 Lake St, Boston, MA 02215" -281873,USB-C Charging Cable,1,11.95,11/29/19 16:06,"944 Jefferson St, San Francisco, CA 94016" -281874,Lightning Charging Cable,1,14.95,11/12/19 07:18,"404 13th St, San Francisco, CA 94016" -281875,Flatscreen TV,1,300,11/18/19 16:35,"159 Church St, Seattle, WA 98101" -281876,Apple Airpods Headphones,1,150,11/25/19 11:42,"336 South St, New York City, NY 10001" -281877,AAA Batteries (4-pack),2,2.99,11/04/19 08:47,"450 West St, New York City, NY 10001" -281878,Wired Headphones,1,11.99,11/17/19 05:38,"28 Spruce St, San Francisco, CA 94016" -281879,Apple Airpods Headphones,1,150,11/25/19 20:49,"572 Hill St, New York City, NY 10001" -281880,Lightning Charging Cable,1,14.95,11/24/19 21:30,"45 9th St, San Francisco, CA 94016" -281881,20in Monitor,1,109.99,11/28/19 09:14,"818 Elm St, San Francisco, CA 94016" -281882,20in Monitor,1,109.99,11/13/19 13:49,"982 Cherry St, Los Angeles, CA 90001" -281883,Apple Airpods Headphones,1,150,11/06/19 08:44,"975 Madison St, New York City, NY 10001" -281884,Macbook Pro Laptop,1,1700,11/02/19 09:31,"257 14th St, Dallas, TX 75001" -281885,AAA Batteries (4-pack),1,2.99,11/03/19 23:24,"858 4th St, San Francisco, CA 94016" -281886,USB-C Charging Cable,1,11.95,11/16/19 16:19,"791 Meadow St, Boston, MA 02215" -281886,USB-C Charging Cable,1,11.95,11/16/19 16:19,"791 Meadow St, Boston, MA 02215" -281887,AAA Batteries (4-pack),1,2.99,11/22/19 11:45,"343 Cedar St, Los Angeles, CA 90001" -281888,Flatscreen TV,1,300,11/22/19 11:03,"73 Jackson St, Portland, OR 97035" -281889,USB-C Charging Cable,1,11.95,11/23/19 05:14,"97 Ridge St, Seattle, WA 98101" -281890,LG Washing Machine,1,600.0,11/16/19 01:01,"46 Center St, Austin, TX 73301" -281891,AA Batteries (4-pack),3,3.84,11/24/19 11:28,"182 7th St, New York City, NY 10001" -281892,34in Ultrawide Monitor,1,379.99,11/22/19 15:23,"499 Jackson St, Portland, OR 97035" -281893,34in Ultrawide Monitor,1,379.99,11/10/19 18:14,"591 12th St, San Francisco, CA 94016" -281894,AAA Batteries (4-pack),1,2.99,11/04/19 09:17,"23 Washington St, Dallas, TX 75001" -281895,USB-C Charging Cable,1,11.95,11/19/19 14:27,"308 Washington St, New York City, NY 10001" -281896,AA Batteries (4-pack),4,3.84,11/05/19 09:50,"907 Hickory St, Boston, MA 02215" -281897,AAA Batteries (4-pack),1,2.99,11/06/19 11:51,"568 Elm St, New York City, NY 10001" -281898,Lightning Charging Cable,1,14.95,11/17/19 15:28,"909 North St, Seattle, WA 98101" -281899,AA Batteries (4-pack),3,3.84,11/26/19 20:28,"195 Washington St, Portland, OR 97035" -281900,AAA Batteries (4-pack),1,2.99,11/02/19 18:51,"130 Adams St, New York City, NY 10001" -281901,USB-C Charging Cable,1,11.95,11/05/19 21:06,"214 Lincoln St, Los Angeles, CA 90001" -281902,Bose SoundSport Headphones,1,99.99,11/27/19 22:07,"926 12th St, Los Angeles, CA 90001" -281903,AA Batteries (4-pack),1,3.84,11/02/19 19:00,"722 Lakeview St, Dallas, TX 75001" -281904,Apple Airpods Headphones,1,150,11/30/19 11:01,"621 Johnson St, New York City, NY 10001" -281905,LG Washing Machine,1,600.0,11/03/19 20:03,"897 12th St, Los Angeles, CA 90001" -281906,Flatscreen TV,1,300,11/21/19 13:45,"825 4th St, San Francisco, CA 94016" -281907,Lightning Charging Cable,1,14.95,11/24/19 16:39,"933 12th St, Los Angeles, CA 90001" -281908,27in FHD Monitor,1,149.99,11/02/19 16:54,"226 Chestnut St, San Francisco, CA 94016" -281909,Google Phone,1,600,11/27/19 13:20,"436 West St, San Francisco, CA 94016" -281910,Wired Headphones,1,11.99,11/14/19 20:44,"292 River St, Atlanta, GA 30301" -281911,Apple Airpods Headphones,1,150,11/04/19 19:36,"41 North St, Atlanta, GA 30301" -281912,Lightning Charging Cable,1,14.95,11/11/19 22:33,"450 Center St, New York City, NY 10001" -281913,Lightning Charging Cable,1,14.95,11/29/19 16:24,"930 Highland St, Los Angeles, CA 90001" -281914,34in Ultrawide Monitor,1,379.99,11/30/19 21:30,"78 Highland St, Atlanta, GA 30301" -281915,AAA Batteries (4-pack),1,2.99,11/25/19 20:28,"790 Main St, Los Angeles, CA 90001" -281916,AA Batteries (4-pack),1,3.84,11/06/19 15:28,"932 Hill St, Austin, TX 73301" -281917,Wired Headphones,1,11.99,11/30/19 08:30,"245 Elm St, San Francisco, CA 94016" -281918,Lightning Charging Cable,1,14.95,11/30/19 11:02,"427 Highland St, San Francisco, CA 94016" -281919,Wired Headphones,1,11.99,11/27/19 11:35,"881 Jefferson St, Portland, OR 97035" -281920,Apple Airpods Headphones,1,150,11/14/19 15:11,"468 Washington St, Austin, TX 73301" -281921,AA Batteries (4-pack),1,3.84,11/27/19 10:05,"343 Jackson St, Portland, OR 97035" -281922,Bose SoundSport Headphones,1,99.99,11/07/19 14:34,"873 Highland St, San Francisco, CA 94016" -281923,Flatscreen TV,1,300,11/08/19 13:24,"182 Willow St, Atlanta, GA 30301" -281924,AA Batteries (4-pack),1,3.84,11/09/19 13:51,"449 4th St, Boston, MA 02215" -281925,Lightning Charging Cable,2,14.95,11/12/19 09:56,"281 10th St, Seattle, WA 98101" -281926,Bose SoundSport Headphones,1,99.99,11/19/19 06:51,"574 Center St, Seattle, WA 98101" -281927,Bose SoundSport Headphones,1,99.99,11/05/19 06:57,"897 Adams St, Portland, OR 97035" -281928,USB-C Charging Cable,1,11.95,11/02/19 20:45,"874 Hickory St, Seattle, WA 98101" -281929,Lightning Charging Cable,1,14.95,11/07/19 11:12,"525 North St, San Francisco, CA 94016" -281930,Macbook Pro Laptop,1,1700,11/07/19 14:56,"503 11th St, San Francisco, CA 94016" -281931,Bose SoundSport Headphones,1,99.99,11/22/19 17:28,"336 12th St, Boston, MA 02215" -281932,27in 4K Gaming Monitor,1,389.99,11/13/19 23:08,"265 11th St, Boston, MA 02215" -281933,USB-C Charging Cable,1,11.95,11/24/19 15:52,"578 Cedar St, Boston, MA 02215" -281934,Lightning Charging Cable,1,14.95,11/28/19 16:57,"977 Willow St, Dallas, TX 75001" -281935,34in Ultrawide Monitor,1,379.99,11/21/19 20:22,"120 Lakeview St, Portland, OR 97035" -281936,AA Batteries (4-pack),2,3.84,11/06/19 21:30,"57 2nd St, Atlanta, GA 30301" -281937,Apple Airpods Headphones,1,150,11/27/19 15:35,"911 Willow St, San Francisco, CA 94016" -281938,AA Batteries (4-pack),2,3.84,11/24/19 20:34,"237 Cherry St, San Francisco, CA 94016" -281939,AAA Batteries (4-pack),1,2.99,11/30/19 20:25,"805 South St, Los Angeles, CA 90001" -281940,AAA Batteries (4-pack),1,2.99,11/13/19 14:56,"484 11th St, Seattle, WA 98101" -281941,Apple Airpods Headphones,1,150,11/19/19 00:17,"849 Johnson St, Seattle, WA 98101" -281942,AA Batteries (4-pack),1,3.84,11/22/19 23:38,"837 Jackson St, Los Angeles, CA 90001" -281943,AAA Batteries (4-pack),1,2.99,11/21/19 23:39,"774 Madison St, New York City, NY 10001" -281944,AA Batteries (4-pack),2,3.84,11/11/19 13:29,"850 Johnson St, Boston, MA 02215" -281945,Apple Airpods Headphones,1,150,11/28/19 18:13,"397 Center St, Seattle, WA 98101" -281946,Bose SoundSport Headphones,1,99.99,11/02/19 17:50,"222 Forest St, San Francisco, CA 94016" -281947,Macbook Pro Laptop,1,1700,11/26/19 18:47,"285 Lakeview St, Los Angeles, CA 90001" -281948,Wired Headphones,1,11.99,11/03/19 06:16,"832 6th St, San Francisco, CA 94016" -281949,Wired Headphones,2,11.99,11/17/19 07:04,"721 Center St, Portland, OR 97035" -281950,iPhone,1,700,11/23/19 17:23,"686 13th St, Atlanta, GA 30301" -281951,Wired Headphones,1,11.99,11/07/19 18:22,"786 Willow St, Boston, MA 02215" -281952,Google Phone,1,600,11/04/19 14:48,"244 10th St, Atlanta, GA 30301" -281953,AAA Batteries (4-pack),1,2.99,11/25/19 16:07,"395 Church St, Dallas, TX 75001" -281954,Apple Airpods Headphones,1,150,11/16/19 19:34,"186 North St, Atlanta, GA 30301" -281955,USB-C Charging Cable,1,11.95,11/02/19 11:34,"527 Hill St, San Francisco, CA 94016" -281956,AAA Batteries (4-pack),2,2.99,11/28/19 20:16,"707 Washington St, Los Angeles, CA 90001" -281957,AA Batteries (4-pack),2,3.84,11/19/19 15:23,"403 Spruce St, New York City, NY 10001" -,,,,, -281958,Wired Headphones,1,11.99,11/21/19 17:36,"883 Hickory St, San Francisco, CA 94016" -281959,Bose SoundSport Headphones,1,99.99,11/28/19 19:31,"70 Jefferson St, San Francisco, CA 94016" -281960,AAA Batteries (4-pack),1,2.99,11/30/19 22:43,"805 Center St, Boston, MA 02215" -281961,iPhone,1,700,11/21/19 19:22,"620 Elm St, San Francisco, CA 94016" -281961,Lightning Charging Cable,1,14.95,11/21/19 19:22,"620 Elm St, San Francisco, CA 94016" -281962,Apple Airpods Headphones,1,150,11/15/19 15:39,"166 4th St, Dallas, TX 75001" -281963,AA Batteries (4-pack),1,3.84,11/05/19 19:40,"81 Johnson St, Atlanta, GA 30301" -281964,Macbook Pro Laptop,1,1700,11/16/19 10:30,"995 Main St, San Francisco, CA 94016" -281965,Wired Headphones,1,11.99,11/07/19 12:58,"211 14th St, San Francisco, CA 94016" -281966,Apple Airpods Headphones,1,150,11/16/19 19:22,"390 Chestnut St, Atlanta, GA 30301" -281967,Google Phone,1,600,11/16/19 21:11,"658 Main St, San Francisco, CA 94016" -281968,Apple Airpods Headphones,1,150,11/19/19 11:28,"65 Meadow St, San Francisco, CA 94016" -281969,USB-C Charging Cable,1,11.95,11/15/19 13:23,"820 Meadow St, San Francisco, CA 94016" -281970,AAA Batteries (4-pack),2,2.99,11/14/19 16:28,"748 Adams St, Los Angeles, CA 90001" -281971,AA Batteries (4-pack),2,3.84,11/08/19 19:46,"165 Maple St, Los Angeles, CA 90001" -281972,AA Batteries (4-pack),1,3.84,11/10/19 09:53,"826 Cedar St, Boston, MA 02215" -281973,AAA Batteries (4-pack),1,2.99,11/18/19 15:40,"186 Hill St, San Francisco, CA 94016" -281974,AAA Batteries (4-pack),1,2.99,11/21/19 16:22,"891 Hill St, Boston, MA 02215" -281975,Macbook Pro Laptop,1,1700,11/15/19 13:33,"547 Washington St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -281976,Wired Headphones,1,11.99,11/28/19 21:38,"387 Lake St, San Francisco, CA 94016" -281977,USB-C Charging Cable,1,11.95,11/07/19 22:26,"413 Pine St, Portland, ME 04101" -281978,Lightning Charging Cable,1,14.95,11/25/19 07:42,"482 9th St, Austin, TX 73301" -281979,USB-C Charging Cable,1,11.95,11/15/19 16:05,"881 13th St, San Francisco, CA 94016" -281980,AA Batteries (4-pack),1,3.84,11/22/19 12:17,"602 Dogwood St, Los Angeles, CA 90001" -281981,Lightning Charging Cable,1,14.95,11/23/19 12:42,"952 Lincoln St, San Francisco, CA 94016" -281982,27in FHD Monitor,1,149.99,11/17/19 21:18,"376 Main St, San Francisco, CA 94016" -281983,AA Batteries (4-pack),2,3.84,11/08/19 21:20,"174 Cedar St, San Francisco, CA 94016" -281984,USB-C Charging Cable,1,11.95,11/02/19 08:44,"956 Main St, Atlanta, GA 30301" -281985,Bose SoundSport Headphones,1,99.99,11/12/19 21:48,"648 12th St, San Francisco, CA 94016" -281986,AA Batteries (4-pack),1,3.84,11/27/19 08:21,"497 10th St, Los Angeles, CA 90001" -281987,iPhone,1,700,11/28/19 00:08,"67 Main St, New York City, NY 10001" -281988,AA Batteries (4-pack),1,3.84,11/22/19 18:35,"437 Pine St, Dallas, TX 75001" -281989,Lightning Charging Cable,1,14.95,11/29/19 19:11,"581 Jefferson St, Boston, MA 02215" -281990,Lightning Charging Cable,1,14.95,11/12/19 09:42,"937 Walnut St, New York City, NY 10001" -281991,Bose SoundSport Headphones,1,99.99,11/29/19 07:15,"437 Walnut St, Los Angeles, CA 90001" -281992,Wired Headphones,1,11.99,11/01/19 12:48,"514 10th St, Atlanta, GA 30301" -281993,Lightning Charging Cable,1,14.95,11/29/19 17:35,"148 Cherry St, San Francisco, CA 94016" -281994,USB-C Charging Cable,1,11.95,11/04/19 07:48,"572 12th St, Boston, MA 02215" -281995,AAA Batteries (4-pack),3,2.99,11/25/19 19:00,"607 Cherry St, Atlanta, GA 30301" -281996,Apple Airpods Headphones,1,150,11/30/19 10:29,"864 Center St, Atlanta, GA 30301" -281997,Google Phone,1,600,11/27/19 23:13,"81 12th St, San Francisco, CA 94016" -281998,AAA Batteries (4-pack),6,2.99,11/30/19 09:09,"124 Willow St, Atlanta, GA 30301" -281999,Lightning Charging Cable,1,14.95,11/27/19 21:06,"530 Wilson St, San Francisco, CA 94016" -282000,27in FHD Monitor,1,149.99,11/19/19 09:00,"678 4th St, Dallas, TX 75001" -282001,Lightning Charging Cable,1,14.95,11/10/19 18:31,"624 14th St, Atlanta, GA 30301" -282002,Apple Airpods Headphones,1,150,11/29/19 14:01,"918 7th St, New York City, NY 10001" -282003,AA Batteries (4-pack),2,3.84,11/24/19 20:24,"996 4th St, Boston, MA 02215" -282004,27in FHD Monitor,1,149.99,11/16/19 20:38,"215 West St, Austin, TX 73301" -282005,Lightning Charging Cable,1,14.95,11/13/19 15:44,"392 Sunset St, San Francisco, CA 94016" -282006,Flatscreen TV,1,300,11/13/19 23:11,"901 Washington St, Austin, TX 73301" -282007,27in FHD Monitor,1,149.99,11/18/19 15:41,"779 14th St, Los Angeles, CA 90001" -282008,Flatscreen TV,1,300,11/01/19 21:59,"412 10th St, San Francisco, CA 94016" -282009,27in 4K Gaming Monitor,1,389.99,11/06/19 12:41,"268 Pine St, San Francisco, CA 94016" -282010,iPhone,1,700,11/01/19 12:46,"133 8th St, Los Angeles, CA 90001" -282011,Apple Airpods Headphones,1,150,11/30/19 22:21,"201 Park St, Los Angeles, CA 90001" -282012,Google Phone,1,600,11/30/19 12:31,"813 13th St, Portland, OR 97035" -282013,AA Batteries (4-pack),1,3.84,11/13/19 14:31,"715 Church St, Boston, MA 02215" -282014,Wired Headphones,1,11.99,11/16/19 15:19,"806 11th St, Dallas, TX 75001" -282015,AAA Batteries (4-pack),1,2.99,11/06/19 18:24,"152 Madison St, Los Angeles, CA 90001" -282016,AAA Batteries (4-pack),2,2.99,11/24/19 13:19,"675 Lincoln St, San Francisco, CA 94016" -282017,ThinkPad Laptop,1,999.99,11/26/19 05:28,"231 7th St, San Francisco, CA 94016" -282018,Lightning Charging Cable,1,14.95,11/20/19 18:00,"561 Park St, Atlanta, GA 30301" -282019,Wired Headphones,1,11.99,11/04/19 16:41,"296 Main St, San Francisco, CA 94016" -282020,Lightning Charging Cable,1,14.95,11/27/19 00:09,"216 12th St, Austin, TX 73301" -282021,Macbook Pro Laptop,1,1700,11/06/19 13:04,"87 Hickory St, Atlanta, GA 30301" -282022,Wired Headphones,1,11.99,11/18/19 21:59,"236 Madison St, San Francisco, CA 94016" -282023,Apple Airpods Headphones,1,150,11/22/19 10:44,"28 Lakeview St, New York City, NY 10001" -282024,27in 4K Gaming Monitor,1,389.99,11/09/19 17:15,"231 7th St, Dallas, TX 75001" -282025,Wired Headphones,1,11.99,11/29/19 17:43,"602 11th St, Los Angeles, CA 90001" -282026,USB-C Charging Cable,1,11.95,11/03/19 17:54,"963 Walnut St, San Francisco, CA 94016" -282027,LG Dryer,1,600.0,11/09/19 03:08,"155 4th St, Los Angeles, CA 90001" -282028,USB-C Charging Cable,1,11.95,11/02/19 13:44,"217 Highland St, Boston, MA 02215" -282029,LG Dryer,1,600.0,11/28/19 13:20,"105 Washington St, Los Angeles, CA 90001" -282030,Google Phone,1,600,11/05/19 15:21,"303 14th St, Atlanta, GA 30301" -282031,Bose SoundSport Headphones,1,99.99,11/27/19 10:57,"58 Jackson St, Boston, MA 02215" -282032,AAA Batteries (4-pack),3,2.99,11/07/19 15:40,"722 Sunset St, San Francisco, CA 94016" -282033,USB-C Charging Cable,1,11.95,11/26/19 10:20,"492 Chestnut St, San Francisco, CA 94016" -282034,Macbook Pro Laptop,1,1700,11/21/19 06:20,"956 Center St, Atlanta, GA 30301" -282035,Wired Headphones,1,11.99,11/27/19 16:16,"689 Dogwood St, San Francisco, CA 94016" -282036,Flatscreen TV,1,300,11/15/19 11:38,"171 Park St, Atlanta, GA 30301" -282037,USB-C Charging Cable,1,11.95,11/23/19 16:27,"36 5th St, New York City, NY 10001" -282038,AA Batteries (4-pack),1,3.84,11/11/19 18:18,"449 Spruce St, New York City, NY 10001" -282039,USB-C Charging Cable,1,11.95,11/05/19 15:22,"963 5th St, San Francisco, CA 94016" -282040,AAA Batteries (4-pack),2,2.99,11/06/19 12:04,"906 Hill St, San Francisco, CA 94016" -282041,Google Phone,1,600,11/02/19 20:55,"473 11th St, Seattle, WA 98101" -282042,USB-C Charging Cable,1,11.95,11/08/19 12:59,"447 Cedar St, Dallas, TX 75001" -282043,AAA Batteries (4-pack),1,2.99,11/13/19 21:20,"282 Jackson St, San Francisco, CA 94016" -282044,AA Batteries (4-pack),2,3.84,11/28/19 20:09,"832 Highland St, Portland, OR 97035" -282045,USB-C Charging Cable,1,11.95,11/25/19 12:13,"881 Forest St, Los Angeles, CA 90001" -282046,27in FHD Monitor,1,149.99,11/19/19 21:34,"699 Cherry St, Seattle, WA 98101" -282047,AAA Batteries (4-pack),1,2.99,11/26/19 12:34,"659 North St, San Francisco, CA 94016" -282048,Lightning Charging Cable,2,14.95,11/09/19 11:49,"257 Main St, Los Angeles, CA 90001" -282049,AA Batteries (4-pack),1,3.84,11/25/19 19:34,"196 West St, San Francisco, CA 94016" -282050,Wired Headphones,1,11.99,11/20/19 13:57,"290 Elm St, Boston, MA 02215" -282051,27in FHD Monitor,1,149.99,11/06/19 20:20,"911 7th St, Seattle, WA 98101" -282052,AA Batteries (4-pack),4,3.84,11/21/19 20:21,"800 Highland St, Boston, MA 02215" -282053,AA Batteries (4-pack),2,3.84,11/01/19 06:50,"886 Washington St, Seattle, WA 98101" -282054,Apple Airpods Headphones,1,150,11/27/19 14:59,"145 8th St, Boston, MA 02215" -282055,AAA Batteries (4-pack),3,2.99,11/26/19 15:05,"926 Spruce St, San Francisco, CA 94016" -282056,ThinkPad Laptop,1,999.99,11/13/19 14:20,"766 11th St, Los Angeles, CA 90001" -282057,Lightning Charging Cable,2,14.95,11/01/19 23:03,"117 Hill St, New York City, NY 10001" -282058,Apple Airpods Headphones,1,150,11/06/19 16:48,"901 Lakeview St, Portland, OR 97035" -282059,AA Batteries (4-pack),1,3.84,11/16/19 12:53,"660 Elm St, New York City, NY 10001" -282060,20in Monitor,1,109.99,11/22/19 07:59,"138 Chestnut St, New York City, NY 10001" -282061,34in Ultrawide Monitor,1,379.99,11/17/19 16:21,"703 7th St, Seattle, WA 98101" -282062,Bose SoundSport Headphones,1,99.99,11/05/19 10:57,"97 Washington St, Dallas, TX 75001" -282063,AA Batteries (4-pack),1,3.84,11/17/19 16:35,"450 Forest St, San Francisco, CA 94016" -282064,AA Batteries (4-pack),1,3.84,11/24/19 15:10,"972 Lincoln St, San Francisco, CA 94016" -282065,AAA Batteries (4-pack),1,2.99,11/17/19 13:35,"54 5th St, San Francisco, CA 94016" -282066,34in Ultrawide Monitor,1,379.99,11/18/19 07:47,"292 Lakeview St, Portland, OR 97035" -282067,Bose SoundSport Headphones,1,99.99,11/01/19 21:25,"296 Church St, Dallas, TX 75001" -282068,AA Batteries (4-pack),1,3.84,11/14/19 10:08,"176 North St, San Francisco, CA 94016" -282069,Wired Headphones,1,11.99,11/11/19 17:05,"596 Park St, New York City, NY 10001" -282070,AAA Batteries (4-pack),1,2.99,11/28/19 00:21,"229 South St, Austin, TX 73301" -282071,AA Batteries (4-pack),1,3.84,11/03/19 20:14,"780 Dogwood St, San Francisco, CA 94016" -282072,Apple Airpods Headphones,1,150,11/26/19 10:08,"595 South St, Seattle, WA 98101" -282073,AA Batteries (4-pack),2,3.84,11/26/19 08:03,"748 Washington St, Portland, OR 97035" -282074,USB-C Charging Cable,1,11.95,11/25/19 18:06,"832 Maple St, Los Angeles, CA 90001" -282075,AAA Batteries (4-pack),2,2.99,11/20/19 22:23,"642 Spruce St, San Francisco, CA 94016" -282076,27in FHD Monitor,1,149.99,11/03/19 17:08,"784 Hill St, Atlanta, GA 30301" -282077,AA Batteries (4-pack),1,3.84,11/19/19 19:32,"827 Center St, Boston, MA 02215" -282078,ThinkPad Laptop,1,999.99,11/10/19 09:45,"161 Meadow St, Los Angeles, CA 90001" -282079,iPhone,1,700,11/02/19 15:00,"522 Hill St, San Francisco, CA 94016" -282079,Wired Headphones,2,11.99,11/02/19 15:00,"522 Hill St, San Francisco, CA 94016" -282080,Apple Airpods Headphones,1,150,11/29/19 11:15,"350 Jefferson St, New York City, NY 10001" -282081,27in 4K Gaming Monitor,1,389.99,11/16/19 21:58,"370 7th St, Portland, OR 97035" -282082,Wired Headphones,1,11.99,11/18/19 14:59,"758 Forest St, Los Angeles, CA 90001" -282083,USB-C Charging Cable,2,11.95,11/27/19 07:55,"518 Park St, New York City, NY 10001" -282084,USB-C Charging Cable,1,11.95,11/19/19 19:06,"65 River St, San Francisco, CA 94016" -282085,Bose SoundSport Headphones,1,99.99,11/19/19 07:32,"772 Park St, New York City, NY 10001" -282086,AA Batteries (4-pack),1,3.84,11/16/19 08:50,"252 13th St, San Francisco, CA 94016" -282087,Bose SoundSport Headphones,1,99.99,11/07/19 18:52,"447 Cedar St, Boston, MA 02215" -282088,AA Batteries (4-pack),1,3.84,11/13/19 12:09,"375 Elm St, Dallas, TX 75001" -282089,AAA Batteries (4-pack),1,2.99,11/08/19 16:41,"488 12th St, Portland, OR 97035" -282089,AAA Batteries (4-pack),1,2.99,11/08/19 16:41,"488 12th St, Portland, OR 97035" -282090,AAA Batteries (4-pack),2,2.99,11/18/19 16:45,"53 Cherry St, Seattle, WA 98101" -282091,AA Batteries (4-pack),1,3.84,11/25/19 20:49,"390 Walnut St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -282092,USB-C Charging Cable,1,11.95,11/17/19 19:23,"444 North St, New York City, NY 10001" -282093,AAA Batteries (4-pack),2,2.99,11/19/19 12:49,"475 9th St, Portland, OR 97035" -282094,AAA Batteries (4-pack),1,2.99,11/06/19 17:28,"660 1st St, Dallas, TX 75001" -282095,Flatscreen TV,1,300,11/30/19 10:08,"873 Wilson St, Seattle, WA 98101" -282096,iPhone,1,700,11/24/19 11:23,"190 Adams St, Dallas, TX 75001" -282097,USB-C Charging Cable,1,11.95,11/25/19 20:39,"484 7th St, Los Angeles, CA 90001" -282098,AA Batteries (4-pack),1,3.84,11/29/19 15:53,"250 10th St, New York City, NY 10001" -282099,AA Batteries (4-pack),1,3.84,11/25/19 19:04,"666 Willow St, Los Angeles, CA 90001" -282100,Google Phone,1,600,11/24/19 09:47,"574 13th St, San Francisco, CA 94016" -282100,Wired Headphones,1,11.99,11/24/19 09:47,"574 13th St, San Francisco, CA 94016" -282101,Wired Headphones,1,11.99,11/09/19 17:37,"722 11th St, Seattle, WA 98101" -282102,AAA Batteries (4-pack),1,2.99,11/29/19 18:54,"165 Sunset St, Los Angeles, CA 90001" -282103,iPhone,1,700,11/06/19 07:02,"277 Wilson St, Portland, OR 97035" -282104,AA Batteries (4-pack),1,3.84,11/20/19 18:39,"886 West St, San Francisco, CA 94016" -282105,iPhone,1,700,11/19/19 17:40,"800 Johnson St, Dallas, TX 75001" -282105,Lightning Charging Cable,1,14.95,11/19/19 17:40,"800 Johnson St, Dallas, TX 75001" -282106,USB-C Charging Cable,1,11.95,11/09/19 17:53,"85 Elm St, Austin, TX 73301" -282107,USB-C Charging Cable,1,11.95,11/26/19 10:32,"31 Ridge St, New York City, NY 10001" -282108,34in Ultrawide Monitor,1,379.99,11/15/19 18:26,"573 Jackson St, Los Angeles, CA 90001" -282109,USB-C Charging Cable,1,11.95,11/05/19 18:41,"219 4th St, Los Angeles, CA 90001" -282110,Wired Headphones,1,11.99,11/07/19 10:20,"657 West St, Los Angeles, CA 90001" -282111,Apple Airpods Headphones,1,150,11/21/19 08:24,"464 7th St, Seattle, WA 98101" -282112,Macbook Pro Laptop,1,1700,11/16/19 18:42,"705 Willow St, Boston, MA 02215" -282113,Lightning Charging Cable,1,14.95,11/07/19 15:04,"991 Cherry St, Seattle, WA 98101" -282114,Lightning Charging Cable,1,14.95,11/25/19 12:08,"781 8th St, Los Angeles, CA 90001" -282114,27in 4K Gaming Monitor,1,389.99,11/25/19 12:08,"781 8th St, Los Angeles, CA 90001" -282115,iPhone,1,700,11/24/19 11:31,"856 North St, Austin, TX 73301" -282116,Bose SoundSport Headphones,1,99.99,11/23/19 21:09,"40 Dogwood St, San Francisco, CA 94016" -282117,Google Phone,1,600,11/01/19 17:58,"914 Ridge St, San Francisco, CA 94016" -282118,AAA Batteries (4-pack),1,2.99,11/18/19 13:10,"178 Dogwood St, Boston, MA 02215" -282119,Apple Airpods Headphones,1,150,11/20/19 12:26,"236 Hickory St, Los Angeles, CA 90001" -282120,Lightning Charging Cable,1,14.95,11/09/19 11:31,"853 Hill St, Seattle, WA 98101" -282121,Wired Headphones,1,11.99,11/14/19 05:27,"615 Willow St, New York City, NY 10001" -282122,27in 4K Gaming Monitor,1,389.99,11/29/19 08:32,"619 8th St, Austin, TX 73301" -282123,USB-C Charging Cable,1,11.95,11/28/19 13:52,"328 Highland St, Portland, OR 97035" -282124,Bose SoundSport Headphones,1,99.99,11/15/19 11:58,"266 4th St, San Francisco, CA 94016" -282125,ThinkPad Laptop,1,999.99,11/13/19 21:30,"370 Spruce St, Dallas, TX 75001" -282126,AAA Batteries (4-pack),2,2.99,11/13/19 21:28,"563 9th St, Dallas, TX 75001" -282127,USB-C Charging Cable,1,11.95,11/08/19 23:35,"47 Pine St, Austin, TX 73301" -282128,Bose SoundSport Headphones,1,99.99,11/17/19 22:29,"779 Ridge St, Portland, OR 97035" -282129,Apple Airpods Headphones,1,150,11/26/19 13:43,"263 Willow St, New York City, NY 10001" -282130,27in FHD Monitor,1,149.99,11/21/19 12:22,"127 2nd St, Los Angeles, CA 90001" -282131,27in 4K Gaming Monitor,1,389.99,11/02/19 14:19,"720 Center St, San Francisco, CA 94016" -282132,USB-C Charging Cable,1,11.95,11/02/19 08:15,"300 11th St, New York City, NY 10001" -282133,AA Batteries (4-pack),2,3.84,11/27/19 22:24,"807 Wilson St, Atlanta, GA 30301" -282134,20in Monitor,1,109.99,11/08/19 14:45,"903 Madison St, Seattle, WA 98101" -282135,AAA Batteries (4-pack),1,2.99,11/27/19 22:41,"190 Sunset St, Seattle, WA 98101" -282136,AA Batteries (4-pack),2,3.84,11/03/19 22:01,"241 Lake St, Boston, MA 02215" -282137,Lightning Charging Cable,1,14.95,11/13/19 14:40,"197 13th St, Los Angeles, CA 90001" -282137,Lightning Charging Cable,1,14.95,11/13/19 14:40,"197 13th St, Los Angeles, CA 90001" -282138,Google Phone,1,600,11/09/19 11:44,"973 West St, New York City, NY 10001" -282139,34in Ultrawide Monitor,1,379.99,11/23/19 14:01,"586 12th St, Los Angeles, CA 90001" -282140,Lightning Charging Cable,1,14.95,11/16/19 05:25,"887 Center St, San Francisco, CA 94016" -282141,USB-C Charging Cable,1,11.95,11/10/19 12:37,"369 West St, New York City, NY 10001" -282142,AA Batteries (4-pack),1,3.84,11/29/19 23:33,"791 Chestnut St, Seattle, WA 98101" -282142,Flatscreen TV,1,300,11/29/19 23:33,"791 Chestnut St, Seattle, WA 98101" -282143,Lightning Charging Cable,1,14.95,11/12/19 18:43,"989 Cherry St, Austin, TX 73301" -282144,AAA Batteries (4-pack),1,2.99,11/18/19 21:31,"476 Park St, New York City, NY 10001" -282145,Lightning Charging Cable,1,14.95,11/06/19 09:43,"699 Sunset St, Los Angeles, CA 90001" -282146,Lightning Charging Cable,1,14.95,11/30/19 16:05,"686 Madison St, Atlanta, GA 30301" -282147,USB-C Charging Cable,1,11.95,11/25/19 08:03,"242 12th St, Dallas, TX 75001" -282148,27in 4K Gaming Monitor,1,389.99,11/29/19 00:17,"636 West St, Los Angeles, CA 90001" -282149,Lightning Charging Cable,1,14.95,11/01/19 12:09,"219 Maple St, Austin, TX 73301" -282150,Wired Headphones,1,11.99,11/04/19 16:19,"867 Sunset St, Boston, MA 02215" -282151,AA Batteries (4-pack),1,3.84,11/12/19 23:42,"988 14th St, Seattle, WA 98101" -282152,Apple Airpods Headphones,1,150,11/15/19 13:59,"164 Ridge St, San Francisco, CA 94016" -282153,Lightning Charging Cable,1,14.95,11/29/19 15:39,"30 Chestnut St, Boston, MA 02215" -282154,Flatscreen TV,1,300,11/03/19 20:47,"315 Hill St, Los Angeles, CA 90001" -282155,Lightning Charging Cable,1,14.95,11/15/19 22:13,"118 Main St, Atlanta, GA 30301" -282156,Wired Headphones,1,11.99,11/22/19 15:52,"424 11th St, New York City, NY 10001" -282157,27in FHD Monitor,1,149.99,11/16/19 22:41,"314 Center St, San Francisco, CA 94016" -282158,AAA Batteries (4-pack),1,2.99,11/19/19 11:19,"496 Main St, Portland, OR 97035" -282159,AAA Batteries (4-pack),2,2.99,11/10/19 12:50,"873 Hickory St, Los Angeles, CA 90001" -282160,Apple Airpods Headphones,1,150,11/23/19 14:14,"915 13th St, Los Angeles, CA 90001" -282161,20in Monitor,1,109.99,11/23/19 17:19,"423 Spruce St, San Francisco, CA 94016" -282162,AAA Batteries (4-pack),1,2.99,11/17/19 19:59,"778 Jackson St, New York City, NY 10001" -282163,Bose SoundSport Headphones,1,99.99,11/15/19 21:53,"459 Lake St, Los Angeles, CA 90001" -282164,Wired Headphones,2,11.99,11/05/19 11:48,"195 Highland St, Dallas, TX 75001" -282165,AA Batteries (4-pack),1,3.84,11/12/19 13:43,"684 Jefferson St, Boston, MA 02215" -282166,Google Phone,1,600,11/10/19 18:51,"431 Hill St, Los Angeles, CA 90001" -282167,iPhone,1,700,11/22/19 09:50,"386 11th St, Boston, MA 02215" -282168,Apple Airpods Headphones,1,150,11/14/19 22:16,"690 Meadow St, Boston, MA 02215" -282169,Wired Headphones,1,11.99,11/21/19 19:39,"404 Johnson St, Dallas, TX 75001" -282170,Vareebadd Phone,1,400,11/01/19 21:58,"365 Lakeview St, San Francisco, CA 94016" -282170,USB-C Charging Cable,1,11.95,11/01/19 21:58,"365 Lakeview St, San Francisco, CA 94016" -282171,AA Batteries (4-pack),1,3.84,11/15/19 15:20,"558 Jackson St, Dallas, TX 75001" -282172,27in 4K Gaming Monitor,1,389.99,11/04/19 06:01,"161 Cherry St, Los Angeles, CA 90001" -282173,Google Phone,1,600,11/23/19 18:47,"563 1st St, San Francisco, CA 94016" -282174,Macbook Pro Laptop,1,1700,11/01/19 20:58,"560 Cedar St, Boston, MA 02215" -282175,27in 4K Gaming Monitor,1,389.99,11/30/19 09:15,"862 Dogwood St, Atlanta, GA 30301" -282176,Flatscreen TV,1,300,11/28/19 15:55,"16 Church St, New York City, NY 10001" -282177,Bose SoundSport Headphones,1,99.99,11/12/19 15:08,"251 Maple St, New York City, NY 10001" -282178,ThinkPad Laptop,1,999.99,11/12/19 11:07,"538 Lincoln St, Seattle, WA 98101" -282179,USB-C Charging Cable,1,11.95,11/26/19 13:08,"232 West St, New York City, NY 10001" -282180,Apple Airpods Headphones,1,150,11/17/19 17:06,"522 South St, Los Angeles, CA 90001" -282181,AAA Batteries (4-pack),1,2.99,11/10/19 18:01,"747 Church St, San Francisco, CA 94016" -282182,Wired Headphones,1,11.99,11/18/19 18:26,"711 Madison St, Boston, MA 02215" -282183,Apple Airpods Headphones,1,150,11/27/19 14:29,"595 Cedar St, Seattle, WA 98101" -282184,AA Batteries (4-pack),1,3.84,11/27/19 09:22,"667 Cedar St, San Francisco, CA 94016" -282185,AAA Batteries (4-pack),3,2.99,11/14/19 03:02,"674 8th St, New York City, NY 10001" -282186,USB-C Charging Cable,1,11.95,11/30/19 21:18,"143 Lakeview St, Boston, MA 02215" -282187,AA Batteries (4-pack),1,3.84,11/28/19 17:33,"641 Hill St, Seattle, WA 98101" -282188,AA Batteries (4-pack),3,3.84,11/30/19 09:15,"696 Lakeview St, San Francisco, CA 94016" -282189,AA Batteries (4-pack),2,3.84,11/03/19 20:00,"280 Walnut St, New York City, NY 10001" -282190,AAA Batteries (4-pack),1,2.99,11/19/19 19:13,"85 Hill St, Seattle, WA 98101" -282191,USB-C Charging Cable,1,11.95,11/17/19 13:49,"811 13th St, San Francisco, CA 94016" -282192,Lightning Charging Cable,1,14.95,11/26/19 16:25,"369 Ridge St, Dallas, TX 75001" -282193,USB-C Charging Cable,1,11.95,11/14/19 12:27,"474 Hickory St, Boston, MA 02215" -282194,Google Phone,1,600,11/27/19 12:55,"141 Center St, Dallas, TX 75001" -282194,Bose SoundSport Headphones,1,99.99,11/27/19 12:55,"141 Center St, Dallas, TX 75001" -282195,20in Monitor,1,109.99,11/17/19 17:56,"425 Forest St, San Francisco, CA 94016" -282196,AAA Batteries (4-pack),1,2.99,11/01/19 19:53,"978 Spruce St, Atlanta, GA 30301" -282197,27in 4K Gaming Monitor,1,389.99,11/22/19 12:51,"102 Center St, San Francisco, CA 94016" -282198,Macbook Pro Laptop,1,1700,11/10/19 16:27,"51 Cedar St, San Francisco, CA 94016" -282199,AAA Batteries (4-pack),1,2.99,11/11/19 23:05,"807 Jackson St, San Francisco, CA 94016" -282200,Bose SoundSport Headphones,1,99.99,11/20/19 11:42,"389 South St, San Francisco, CA 94016" -282201,AA Batteries (4-pack),1,3.84,11/19/19 18:59,"992 9th St, San Francisco, CA 94016" -282202,AA Batteries (4-pack),1,3.84,11/20/19 13:00,"164 10th St, Boston, MA 02215" -282203,27in FHD Monitor,1,149.99,11/28/19 18:47,"295 12th St, Portland, OR 97035" -282204,34in Ultrawide Monitor,1,379.99,11/24/19 22:23,"479 Sunset St, Los Angeles, CA 90001" -282205,Wired Headphones,1,11.99,11/12/19 23:22,"930 10th St, Los Angeles, CA 90001" -282205,iPhone,1,700,11/12/19 23:22,"930 10th St, Los Angeles, CA 90001" -282206,AAA Batteries (4-pack),1,2.99,11/03/19 18:13,"533 13th St, San Francisco, CA 94016" -282207,Lightning Charging Cable,2,14.95,11/11/19 19:48,"127 North St, Seattle, WA 98101" -282208,AA Batteries (4-pack),3,3.84,11/05/19 21:36,"666 Park St, Austin, TX 73301" -282209,Lightning Charging Cable,1,14.95,11/22/19 21:24,"943 Chestnut St, San Francisco, CA 94016" -282210,AA Batteries (4-pack),1,3.84,11/15/19 00:24,"405 Washington St, San Francisco, CA 94016" -282211,34in Ultrawide Monitor,1,379.99,11/19/19 13:21,"40 Madison St, San Francisco, CA 94016" -282212,AAA Batteries (4-pack),1,2.99,11/10/19 13:45,"600 Cedar St, Seattle, WA 98101" -282213,Lightning Charging Cable,1,14.95,11/20/19 13:55,"615 Dogwood St, Los Angeles, CA 90001" -282214,Lightning Charging Cable,1,14.95,11/29/19 17:42,"100 Lincoln St, San Francisco, CA 94016" -282215,Bose SoundSport Headphones,1,99.99,11/08/19 12:58,"697 Forest St, Seattle, WA 98101" -282216,USB-C Charging Cable,1,11.95,11/30/19 09:00,"977 Wilson St, San Francisco, CA 94016" -282217,34in Ultrawide Monitor,1,379.99,11/06/19 17:21,"529 Cherry St, Los Angeles, CA 90001" -282218,USB-C Charging Cable,1,11.95,11/27/19 14:35,"887 Park St, Boston, MA 02215" -282219,20in Monitor,1,109.99,11/19/19 20:19,"73 1st St, Dallas, TX 75001" -282220,Bose SoundSport Headphones,1,99.99,11/12/19 19:56,"659 Forest St, New York City, NY 10001" -282221,Wired Headphones,1,11.99,11/24/19 19:08,"959 9th St, Boston, MA 02215" -282222,USB-C Charging Cable,1,11.95,11/19/19 10:03,"421 Pine St, Atlanta, GA 30301" -282223,iPhone,1,700,11/09/19 23:18,"644 Lakeview St, Los Angeles, CA 90001" -282224,Macbook Pro Laptop,1,1700,11/13/19 15:39,"160 South St, Los Angeles, CA 90001" -282225,AA Batteries (4-pack),1,3.84,11/30/19 16:32,"817 Elm St, San Francisco, CA 94016" -282226,USB-C Charging Cable,1,11.95,11/16/19 08:10,"832 Highland St, San Francisco, CA 94016" -282227,USB-C Charging Cable,1,11.95,11/06/19 13:50,"554 Jefferson St, Atlanta, GA 30301" -282228,USB-C Charging Cable,1,11.95,11/19/19 14:20,"96 Highland St, Los Angeles, CA 90001" -282229,Wired Headphones,1,11.99,11/06/19 19:35,"305 Ridge St, San Francisco, CA 94016" -282230,USB-C Charging Cable,1,11.95,11/05/19 23:20,"675 8th St, Seattle, WA 98101" -282231,Bose SoundSport Headphones,1,99.99,11/26/19 13:44,"903 7th St, New York City, NY 10001" -282232,Apple Airpods Headphones,1,150,11/30/19 15:46,"863 12th St, Boston, MA 02215" -282233,Bose SoundSport Headphones,1,99.99,11/08/19 18:17,"468 Hickory St, Atlanta, GA 30301" -282234,USB-C Charging Cable,1,11.95,11/12/19 18:27,"244 Hickory St, Los Angeles, CA 90001" -282235,AA Batteries (4-pack),2,3.84,11/29/19 16:59,"595 6th St, San Francisco, CA 94016" -282236,AA Batteries (4-pack),2,3.84,11/28/19 11:12,"271 6th St, Los Angeles, CA 90001" -282237,34in Ultrawide Monitor,1,379.99,11/06/19 07:17,"720 North St, San Francisco, CA 94016" -282238,Flatscreen TV,1,300,11/20/19 09:25,"887 14th St, San Francisco, CA 94016" -282239,20in Monitor,1,109.99,11/12/19 13:54,"468 West St, Los Angeles, CA 90001" -282240,AA Batteries (4-pack),1,3.84,11/12/19 18:15,"86 Meadow St, Boston, MA 02215" -282241,ThinkPad Laptop,1,999.99,11/04/19 14:10,"239 Madison St, Seattle, WA 98101" -282242,27in 4K Gaming Monitor,1,389.99,11/29/19 18:05,"716 2nd St, Los Angeles, CA 90001" -282243,Bose SoundSport Headphones,1,99.99,11/21/19 20:18,"999 Ridge St, San Francisco, CA 94016" -282244,iPhone,1,700,11/26/19 13:29,"536 Dogwood St, San Francisco, CA 94016" -282244,Lightning Charging Cable,1,14.95,11/26/19 13:29,"536 Dogwood St, San Francisco, CA 94016" -282245,Lightning Charging Cable,1,14.95,11/26/19 20:45,"995 Lake St, Seattle, WA 98101" -282246,AA Batteries (4-pack),2,3.84,11/30/19 13:07,"986 5th St, Austin, TX 73301" -282247,iPhone,1,700,11/03/19 13:46,"784 Walnut St, Dallas, TX 75001" -282247,Lightning Charging Cable,1,14.95,11/03/19 13:46,"784 Walnut St, Dallas, TX 75001" -282248,20in Monitor,1,109.99,11/27/19 21:38,"604 1st St, San Francisco, CA 94016" -282249,USB-C Charging Cable,1,11.95,11/04/19 23:46,"468 Lake St, Portland, OR 97035" -282250,Lightning Charging Cable,1,14.95,11/04/19 12:53,"582 1st St, Los Angeles, CA 90001" -282250,USB-C Charging Cable,1,11.95,11/04/19 12:53,"582 1st St, Los Angeles, CA 90001" -282251,AA Batteries (4-pack),2,3.84,11/11/19 19:09,"853 Lakeview St, San Francisco, CA 94016" -282252,Lightning Charging Cable,1,14.95,11/09/19 13:30,"883 Pine St, San Francisco, CA 94016" -282253,Bose SoundSport Headphones,1,99.99,11/21/19 13:43,"210 Ridge St, Portland, ME 04101" -282254,AA Batteries (4-pack),2,3.84,11/23/19 10:09,"583 Ridge St, Austin, TX 73301" -282255,Lightning Charging Cable,1,14.95,11/24/19 06:37,"854 2nd St, San Francisco, CA 94016" -282256,AAA Batteries (4-pack),2,2.99,11/10/19 09:03,"498 North St, Seattle, WA 98101" -282257,AAA Batteries (4-pack),1,2.99,11/21/19 12:12,"826 Wilson St, Seattle, WA 98101" -282258,Lightning Charging Cable,1,14.95,11/29/19 16:13,"680 Maple St, San Francisco, CA 94016" -282259,Apple Airpods Headphones,1,150,11/24/19 19:07,"527 Spruce St, Seattle, WA 98101" -282260,Wired Headphones,1,11.99,11/30/19 11:45,"923 10th St, Dallas, TX 75001" -282261,AA Batteries (4-pack),1,3.84,11/27/19 12:04,"843 Willow St, Boston, MA 02215" -282262,Apple Airpods Headphones,1,150,11/21/19 12:25,"56 9th St, Portland, OR 97035" -282263,AAA Batteries (4-pack),2,2.99,11/09/19 13:21,"458 4th St, Boston, MA 02215" -282264,Wired Headphones,2,11.99,11/07/19 22:27,"36 11th St, Dallas, TX 75001" -282265,AA Batteries (4-pack),1,3.84,11/10/19 17:19,"694 Pine St, Seattle, WA 98101" -282266,AA Batteries (4-pack),1,3.84,11/01/19 18:27,"548 West St, Austin, TX 73301" -282267,Apple Airpods Headphones,1,150,11/04/19 14:22,"209 5th St, New York City, NY 10001" -282268,Macbook Pro Laptop,1,1700,11/13/19 11:14,"994 4th St, San Francisco, CA 94016" -282269,Bose SoundSport Headphones,1,99.99,11/01/19 10:11,"612 Hill St, San Francisco, CA 94016" -282270,USB-C Charging Cable,1,11.95,11/30/19 14:59,"781 13th St, Los Angeles, CA 90001" -282271,AA Batteries (4-pack),1,3.84,11/28/19 19:21,"967 10th St, San Francisco, CA 94016" -282272,AAA Batteries (4-pack),1,2.99,11/06/19 21:43,"552 Willow St, San Francisco, CA 94016" -282273,AA Batteries (4-pack),1,3.84,11/11/19 20:02,"452 Meadow St, Seattle, WA 98101" -282274,USB-C Charging Cable,1,11.95,11/12/19 11:51,"251 14th St, New York City, NY 10001" -282275,Apple Airpods Headphones,1,150,11/05/19 10:59,"674 Ridge St, New York City, NY 10001" -282276,USB-C Charging Cable,1,11.95,11/16/19 15:58,"778 Highland St, Boston, MA 02215" -282277,AA Batteries (4-pack),3,3.84,11/15/19 13:00,"447 Spruce St, Austin, TX 73301" -282278,Flatscreen TV,1,300,11/01/19 07:17,"511 Hickory St, Los Angeles, CA 90001" -282279,AAA Batteries (4-pack),1,2.99,11/24/19 09:50,"180 Center St, Atlanta, GA 30301" -282280,Bose SoundSport Headphones,1,99.99,11/23/19 20:13,"452 7th St, Los Angeles, CA 90001" -282281,Lightning Charging Cable,1,14.95,11/25/19 17:34,"253 7th St, San Francisco, CA 94016" -282281,AA Batteries (4-pack),1,3.84,11/25/19 17:34,"253 7th St, San Francisco, CA 94016" -282282,20in Monitor,1,109.99,11/20/19 16:21,"622 13th St, Seattle, WA 98101" -282283,Google Phone,1,600,11/15/19 07:19,"794 Walnut St, Atlanta, GA 30301" -282283,iPhone,1,700,11/15/19 07:19,"794 Walnut St, Atlanta, GA 30301" -282284,USB-C Charging Cable,1,11.95,11/30/19 10:06,"237 Jefferson St, Dallas, TX 75001" -282285,Bose SoundSport Headphones,1,99.99,11/24/19 17:38,"896 9th St, Los Angeles, CA 90001" -282286,USB-C Charging Cable,1,11.95,11/21/19 23:48,"682 2nd St, San Francisco, CA 94016" -282287,Flatscreen TV,1,300,11/01/19 20:54,"618 Pine St, Atlanta, GA 30301" -282288,Lightning Charging Cable,1,14.95,11/08/19 13:49,"704 13th St, Portland, OR 97035" -282289,AA Batteries (4-pack),1,3.84,11/04/19 07:50,"210 Wilson St, Seattle, WA 98101" -282290,Vareebadd Phone,1,400,11/29/19 12:40,"45 Hill St, Seattle, WA 98101" -282291,Lightning Charging Cable,1,14.95,11/08/19 21:12,"6 Forest St, Austin, TX 73301" -282292,Apple Airpods Headphones,1,150,11/06/19 21:03,"589 Church St, San Francisco, CA 94016" -282293,AAA Batteries (4-pack),2,2.99,11/03/19 17:24,"495 Jackson St, San Francisco, CA 94016" -282294,Apple Airpods Headphones,1,150,11/29/19 00:35,"957 Pine St, San Francisco, CA 94016" -282295,27in 4K Gaming Monitor,1,389.99,11/27/19 14:00,"773 Park St, Boston, MA 02215" -282296,Apple Airpods Headphones,1,150,11/05/19 14:38,"808 Johnson St, Los Angeles, CA 90001" -282297,AAA Batteries (4-pack),1,2.99,11/14/19 21:17,"988 9th St, Austin, TX 73301" -282298,USB-C Charging Cable,1,11.95,11/15/19 06:10,"681 Spruce St, Los Angeles, CA 90001" -282299,Lightning Charging Cable,1,14.95,11/02/19 12:38,"743 Hill St, San Francisco, CA 94016" -282300,Bose SoundSport Headphones,1,99.99,11/25/19 19:01,"260 2nd St, Dallas, TX 75001" -282301,iPhone,1,700,11/02/19 12:03,"969 Forest St, San Francisco, CA 94016" -282302,AAA Batteries (4-pack),6,2.99,11/13/19 14:11,"445 Church St, New York City, NY 10001" -282303,Lightning Charging Cable,1,14.95,11/25/19 18:50,"990 Highland St, Seattle, WA 98101" -282303,27in 4K Gaming Monitor,1,389.99,11/25/19 18:50,"990 Highland St, Seattle, WA 98101" -282304,27in 4K Gaming Monitor,1,389.99,11/24/19 12:35,"299 8th St, Boston, MA 02215" -282305,20in Monitor,1,109.99,11/02/19 10:47,"558 6th St, Atlanta, GA 30301" -282306,Wired Headphones,2,11.99,11/10/19 10:35,"33 11th St, Portland, OR 97035" -282307,Vareebadd Phone,1,400,11/03/19 21:38,"297 6th St, Austin, TX 73301" -282307,USB-C Charging Cable,1,11.95,11/03/19 21:38,"297 6th St, Austin, TX 73301" -282307,Bose SoundSport Headphones,1,99.99,11/03/19 21:38,"297 6th St, Austin, TX 73301" -282308,AAA Batteries (4-pack),1,2.99,11/10/19 11:35,"734 14th St, Austin, TX 73301" -282309,Google Phone,1,600,11/07/19 09:19,"875 Main St, Los Angeles, CA 90001" -282309,USB-C Charging Cable,1,11.95,11/07/19 09:19,"875 Main St, Los Angeles, CA 90001" -282310,Apple Airpods Headphones,1,150,11/22/19 19:09,"342 Wilson St, Atlanta, GA 30301" -282311,AAA Batteries (4-pack),3,2.99,11/21/19 21:49,"143 Lakeview St, Seattle, WA 98101" -282312,Lightning Charging Cable,1,14.95,11/25/19 20:13,"821 Highland St, New York City, NY 10001" -282312,AA Batteries (4-pack),1,3.84,11/25/19 20:13,"821 Highland St, New York City, NY 10001" -282313,Lightning Charging Cable,1,14.95,11/10/19 20:15,"369 2nd St, Los Angeles, CA 90001" -282314,20in Monitor,1,109.99,11/09/19 08:59,"158 North St, Atlanta, GA 30301" -282315,27in 4K Gaming Monitor,1,389.99,11/30/19 19:31,"168 13th St, San Francisco, CA 94016" -282316,Bose SoundSport Headphones,1,99.99,11/17/19 19:03,"691 8th St, Seattle, WA 98101" -282317,Wired Headphones,1,11.99,11/29/19 13:52,"766 5th St, New York City, NY 10001" -282318,Lightning Charging Cable,1,14.95,11/03/19 17:54,"90 Hill St, Seattle, WA 98101" -282319,Bose SoundSport Headphones,1,99.99,11/26/19 23:20,"657 Adams St, Dallas, TX 75001" -282320,iPhone,1,700,11/24/19 11:41,"482 Spruce St, Dallas, TX 75001" -282320,Lightning Charging Cable,1,14.95,11/24/19 11:41,"482 Spruce St, Dallas, TX 75001" -282321,USB-C Charging Cable,1,11.95,11/03/19 21:57,"877 Center St, Seattle, WA 98101" -282322,34in Ultrawide Monitor,1,379.99,11/05/19 22:38,"725 Hill St, Portland, ME 04101" -282323,Apple Airpods Headphones,1,150,11/20/19 22:03,"609 Madison St, Dallas, TX 75001" -282324,Lightning Charging Cable,1,14.95,11/02/19 15:47,"655 1st St, Atlanta, GA 30301" -282325,Bose SoundSport Headphones,1,99.99,11/20/19 13:42,"744 Washington St, New York City, NY 10001" -282326,27in 4K Gaming Monitor,1,389.99,11/17/19 17:28,"345 Adams St, Los Angeles, CA 90001" -282327,USB-C Charging Cable,1,11.95,11/28/19 17:33,"202 Lincoln St, Portland, OR 97035" -282328,USB-C Charging Cable,1,11.95,11/19/19 23:35,"641 1st St, Dallas, TX 75001" -282329,Apple Airpods Headphones,1,150,11/28/19 22:06,"421 Maple St, Atlanta, GA 30301" -282330,ThinkPad Laptop,1,999.99,11/15/19 21:09,"647 Forest St, Dallas, TX 75001" -282331,AA Batteries (4-pack),3,3.84,11/20/19 09:29,"638 12th St, Seattle, WA 98101" -282332,Wired Headphones,1,11.99,11/23/19 21:55,"865 13th St, Austin, TX 73301" -282333,AAA Batteries (4-pack),1,2.99,11/18/19 18:39,"276 14th St, Los Angeles, CA 90001" -282334,Wired Headphones,1,11.99,11/27/19 08:37,"587 Main St, Los Angeles, CA 90001" -282335,AAA Batteries (4-pack),1,2.99,11/24/19 18:18,"654 Cherry St, San Francisco, CA 94016" -282336,Wired Headphones,1,11.99,11/26/19 11:22,"674 Chestnut St, Dallas, TX 75001" -282337,AA Batteries (4-pack),1,3.84,11/11/19 18:41,"465 Church St, Boston, MA 02215" -282338,AAA Batteries (4-pack),1,2.99,11/12/19 08:48,"514 1st St, New York City, NY 10001" -282339,USB-C Charging Cable,1,11.95,11/02/19 11:51,"7 1st St, Portland, OR 97035" -282340,Lightning Charging Cable,1,14.95,11/25/19 03:22,"220 Maple St, Boston, MA 02215" -282341,ThinkPad Laptop,1,999.99,11/22/19 17:56,"624 5th St, Los Angeles, CA 90001" -282342,USB-C Charging Cable,1,11.95,11/04/19 15:09,"608 Washington St, Los Angeles, CA 90001" -282343,iPhone,1,700,11/03/19 00:58,"245 2nd St, Los Angeles, CA 90001" -282344,27in FHD Monitor,1,149.99,11/01/19 21:38,"216 12th St, Los Angeles, CA 90001" -282345,Lightning Charging Cable,1,14.95,11/25/19 15:17,"35 2nd St, Boston, MA 02215" -282346,Apple Airpods Headphones,1,150,11/26/19 20:10,"137 Cedar St, Los Angeles, CA 90001" -282347,Lightning Charging Cable,1,14.95,11/25/19 20:09,"100 Johnson St, Atlanta, GA 30301" -282348,USB-C Charging Cable,1,11.95,11/09/19 12:05,"865 Main St, Los Angeles, CA 90001" -282349,Apple Airpods Headphones,1,150,11/08/19 18:20,"864 14th St, Seattle, WA 98101" -282350,ThinkPad Laptop,1,999.99,11/27/19 11:47,"33 Hickory St, New York City, NY 10001" -282351,Wired Headphones,3,11.99,11/28/19 21:27,"710 Madison St, Boston, MA 02215" -282352,Bose SoundSport Headphones,1,99.99,11/23/19 20:36,"580 Madison St, Portland, OR 97035" -282353,Bose SoundSport Headphones,1,99.99,11/09/19 02:02,"550 South St, Atlanta, GA 30301" -282354,Apple Airpods Headphones,1,150,11/07/19 11:49,"656 Adams St, Los Angeles, CA 90001" -282355,USB-C Charging Cable,2,11.95,11/18/19 06:56,"971 Madison St, Atlanta, GA 30301" -282356,Bose SoundSport Headphones,1,99.99,11/30/19 10:26,"655 Center St, Los Angeles, CA 90001" -282357,Bose SoundSport Headphones,1,99.99,11/21/19 11:47,"311 Elm St, Dallas, TX 75001" -282358,34in Ultrawide Monitor,1,379.99,11/01/19 18:41,"636 North St, New York City, NY 10001" -282359,34in Ultrawide Monitor,1,379.99,11/06/19 17:52,"410 Walnut St, San Francisco, CA 94016" -282360,AA Batteries (4-pack),1,3.84,11/29/19 16:35,"339 Lakeview St, Los Angeles, CA 90001" -282361,Apple Airpods Headphones,1,150,11/09/19 18:10,"30 Willow St, San Francisco, CA 94016" -282362,Apple Airpods Headphones,1,150,11/19/19 17:25,"785 Main St, Boston, MA 02215" -282363,AAA Batteries (4-pack),1,2.99,11/13/19 17:27,"16 4th St, San Francisco, CA 94016" -282364,Lightning Charging Cable,1,14.95,11/07/19 15:29,"28 8th St, New York City, NY 10001" -282365,AAA Batteries (4-pack),1,2.99,11/11/19 22:10,"249 5th St, Los Angeles, CA 90001" -282366,ThinkPad Laptop,1,999.99,11/24/19 18:34,"929 Johnson St, New York City, NY 10001" -282367,Bose SoundSport Headphones,1,99.99,11/24/19 23:09,"122 Willow St, Boston, MA 02215" -282368,34in Ultrawide Monitor,1,379.99,11/22/19 00:52,"153 Cedar St, Austin, TX 73301" -282369,USB-C Charging Cable,2,11.95,11/04/19 13:51,"277 4th St, Portland, OR 97035" -282370,Wired Headphones,1,11.99,11/26/19 07:42,"992 5th St, San Francisco, CA 94016" -282371,Lightning Charging Cable,1,14.95,11/19/19 14:44,"492 River St, Los Angeles, CA 90001" -282372,AA Batteries (4-pack),1,3.84,11/11/19 12:34,"896 Jackson St, New York City, NY 10001" -282373,AAA Batteries (4-pack),3,2.99,11/01/19 10:33,"820 Meadow St, Los Angeles, CA 90001" -282374,AA Batteries (4-pack),1,3.84,11/15/19 10:05,"241 2nd St, New York City, NY 10001" -282375,Lightning Charging Cable,1,14.95,11/14/19 08:21,"284 Walnut St, Dallas, TX 75001" -282376,iPhone,1,700,11/15/19 15:09,"297 Forest St, San Francisco, CA 94016" -282377,Flatscreen TV,1,300,11/23/19 14:27,"82 9th St, San Francisco, CA 94016" -282378,Wired Headphones,1,11.99,11/10/19 18:22,"976 Willow St, Los Angeles, CA 90001" -282379,USB-C Charging Cable,1,11.95,11/26/19 15:48,"749 10th St, Seattle, WA 98101" -282380,Lightning Charging Cable,1,14.95,11/11/19 19:53,"524 Main St, New York City, NY 10001" -282381,Wired Headphones,1,11.99,11/15/19 21:00,"84 Adams St, San Francisco, CA 94016" -282382,27in FHD Monitor,1,149.99,11/21/19 13:03,"966 13th St, New York City, NY 10001" -282383,AA Batteries (4-pack),3,3.84,11/04/19 20:35,"598 Walnut St, New York City, NY 10001" -282384,Lightning Charging Cable,1,14.95,11/22/19 12:41,"438 West St, San Francisco, CA 94016" -282385,20in Monitor,1,109.99,11/06/19 22:58,"555 Jackson St, New York City, NY 10001" -282386,AA Batteries (4-pack),1,3.84,11/12/19 01:05,"725 Cedar St, San Francisco, CA 94016" -282387,AA Batteries (4-pack),1,3.84,11/19/19 14:37,"68 7th St, Boston, MA 02215" -282388,USB-C Charging Cable,1,11.95,11/24/19 13:21,"208 Johnson St, San Francisco, CA 94016" -282389,AAA Batteries (4-pack),1,2.99,11/22/19 14:31,"190 Walnut St, New York City, NY 10001" -282390,Apple Airpods Headphones,1,150,11/16/19 14:19,"117 Church St, San Francisco, CA 94016" -282391,AAA Batteries (4-pack),3,2.99,11/03/19 14:26,"539 10th St, New York City, NY 10001" -282392,iPhone,1,700,11/19/19 13:17,"790 2nd St, New York City, NY 10001" -282393,Wired Headphones,2,11.99,11/26/19 11:02,"969 River St, Los Angeles, CA 90001" -282394,Lightning Charging Cable,1,14.95,11/19/19 21:43,"900 Elm St, San Francisco, CA 94016" -282395,Flatscreen TV,1,300,11/14/19 20:34,"442 4th St, Los Angeles, CA 90001" -282396,USB-C Charging Cable,1,11.95,11/30/19 18:18,"987 Maple St, Atlanta, GA 30301" -282397,AAA Batteries (4-pack),1,2.99,11/24/19 10:55,"575 South St, San Francisco, CA 94016" -282398,Bose SoundSport Headphones,1,99.99,11/13/19 23:10,"770 Hickory St, Portland, OR 97035" -282399,Bose SoundSport Headphones,1,99.99,11/30/19 17:58,"196 Ridge St, Dallas, TX 75001" -282400,Bose SoundSport Headphones,1,99.99,11/20/19 14:13,"570 Madison St, Atlanta, GA 30301" -282401,Flatscreen TV,1,300,11/05/19 14:16,"547 8th St, New York City, NY 10001" -282402,Lightning Charging Cable,1,14.95,11/03/19 20:07,"814 Ridge St, New York City, NY 10001" -282403,AAA Batteries (4-pack),2,2.99,11/12/19 13:02,"565 14th St, Los Angeles, CA 90001" -282404,USB-C Charging Cable,1,11.95,11/16/19 14:12,"869 Adams St, Los Angeles, CA 90001" -282405,AAA Batteries (4-pack),4,2.99,11/10/19 11:39,"378 Sunset St, Portland, OR 97035" -282406,Google Phone,1,600,11/02/19 13:47,"63 Wilson St, Seattle, WA 98101" -282406,USB-C Charging Cable,1,11.95,11/02/19 13:47,"63 Wilson St, Seattle, WA 98101" -282406,Wired Headphones,1,11.99,11/02/19 13:47,"63 Wilson St, Seattle, WA 98101" -282407,20in Monitor,1,109.99,11/05/19 14:37,"905 10th St, New York City, NY 10001" -282408,USB-C Charging Cable,1,11.95,11/18/19 04:50,"733 Meadow St, Seattle, WA 98101" -282409,AA Batteries (4-pack),3,3.84,11/04/19 20:20,"681 Church St, Boston, MA 02215" -282410,Wired Headphones,1,11.99,11/23/19 20:23,"479 5th St, Atlanta, GA 30301" -282411,AAA Batteries (4-pack),2,2.99,11/15/19 18:05,"450 Meadow St, San Francisco, CA 94016" -282412,34in Ultrawide Monitor,1,379.99,11/21/19 12:15,"693 Madison St, Los Angeles, CA 90001" -282413,Apple Airpods Headphones,1,150,11/28/19 14:44,"770 Adams St, Los Angeles, CA 90001" -282414,Wired Headphones,1,11.99,11/06/19 12:34,"837 Park St, San Francisco, CA 94016" -282415,AA Batteries (4-pack),1,3.84,11/10/19 20:30,"94 Pine St, Portland, OR 97035" -282416,ThinkPad Laptop,1,999.99,11/23/19 11:51,"990 Cedar St, Seattle, WA 98101" -282417,iPhone,1,700,11/26/19 13:40,"410 Hickory St, San Francisco, CA 94016" -282418,Google Phone,1,600,11/13/19 19:37,"753 Lakeview St, Dallas, TX 75001" -282419,Google Phone,1,600,11/07/19 19:52,"46 Sunset St, New York City, NY 10001" -282420,Bose SoundSport Headphones,1,99.99,11/21/19 09:22,"186 Chestnut St, San Francisco, CA 94016" -282421,20in Monitor,1,109.99,11/30/19 18:42,"346 River St, Seattle, WA 98101" -282422,Lightning Charging Cable,1,14.95,11/09/19 15:30,"887 Maple St, San Francisco, CA 94016" -282423,Vareebadd Phone,1,400,11/28/19 19:58,"286 Church St, New York City, NY 10001" -282424,Apple Airpods Headphones,1,150,11/13/19 14:07,"775 5th St, Atlanta, GA 30301" -282425,AAA Batteries (4-pack),1,2.99,11/19/19 17:36,"237 Park St, Austin, TX 73301" -282426,34in Ultrawide Monitor,1,379.99,11/10/19 11:38,"881 Main St, Seattle, WA 98101" -282427,27in FHD Monitor,1,149.99,11/23/19 18:33,"410 Ridge St, Los Angeles, CA 90001" -282428,Flatscreen TV,1,300,11/02/19 10:49,"49 West St, Seattle, WA 98101" -282429,USB-C Charging Cable,1,11.95,11/01/19 18:45,"655 4th St, San Francisco, CA 94016" -282430,27in FHD Monitor,1,149.99,11/07/19 12:51,"261 9th St, Atlanta, GA 30301" -282431,AAA Batteries (4-pack),1,2.99,11/08/19 21:08,"648 Church St, Boston, MA 02215" -282432,34in Ultrawide Monitor,1,379.99,11/08/19 13:35,"319 South St, Seattle, WA 98101" -282433,34in Ultrawide Monitor,1,379.99,11/12/19 07:57,"432 10th St, Seattle, WA 98101" -282434,USB-C Charging Cable,1,11.95,11/19/19 22:37,"155 2nd St, San Francisco, CA 94016" -282435,34in Ultrawide Monitor,1,379.99,11/03/19 13:13,"7 5th St, Boston, MA 02215" -282436,Apple Airpods Headphones,1,150,11/08/19 15:31,"827 Lincoln St, Los Angeles, CA 90001" -282437,Lightning Charging Cable,1,14.95,11/06/19 12:27,"853 Jackson St, Dallas, TX 75001" -282438,Lightning Charging Cable,1,14.95,11/12/19 15:04,"615 Pine St, New York City, NY 10001" -282439,USB-C Charging Cable,1,11.95,11/14/19 20:57,"588 Elm St, Los Angeles, CA 90001" -282440,USB-C Charging Cable,1,11.95,11/05/19 12:36,"33 Pine St, San Francisco, CA 94016" -282441,Lightning Charging Cable,1,14.95,11/24/19 18:34,"484 Park St, New York City, NY 10001" -282442,AAA Batteries (4-pack),1,2.99,11/20/19 19:11,"985 Johnson St, San Francisco, CA 94016" -282443,Wired Headphones,1,11.99,11/09/19 00:55,"277 4th St, Austin, TX 73301" -282444,AA Batteries (4-pack),1,3.84,11/05/19 12:06,"424 Lakeview St, Atlanta, GA 30301" -282445,Lightning Charging Cable,1,14.95,11/06/19 20:01,"730 11th St, Dallas, TX 75001" -282446,AAA Batteries (4-pack),1,2.99,11/25/19 09:09,"227 Dogwood St, Atlanta, GA 30301" -282447,Google Phone,1,600,11/28/19 22:26,"835 Sunset St, Boston, MA 02215" -282448,ThinkPad Laptop,1,999.99,11/07/19 23:48,"592 Pine St, Seattle, WA 98101" -282449,Macbook Pro Laptop,1,1700,11/28/19 21:23,"594 11th St, Los Angeles, CA 90001" -282450,AAA Batteries (4-pack),1,2.99,11/24/19 15:49,"168 Jefferson St, San Francisco, CA 94016" -282451,USB-C Charging Cable,2,11.95,11/10/19 12:30,"116 Lakeview St, Austin, TX 73301" -282452,AAA Batteries (4-pack),2,2.99,11/11/19 12:48,"99 North St, San Francisco, CA 94016" -282453,Apple Airpods Headphones,1,150,11/15/19 13:50,"237 Forest St, New York City, NY 10001" -282454,USB-C Charging Cable,1,11.95,11/27/19 02:51,"283 Hickory St, Atlanta, GA 30301" -282455,Apple Airpods Headphones,1,150,11/10/19 17:41,"567 Forest St, San Francisco, CA 94016" -282456,Lightning Charging Cable,1,14.95,11/18/19 00:52,"510 1st St, Atlanta, GA 30301" -282457,ThinkPad Laptop,1,999.99,11/26/19 20:08,"877 Church St, Atlanta, GA 30301" -282458,Lightning Charging Cable,1,14.95,11/06/19 22:46,"205 Adams St, Los Angeles, CA 90001" -282459,USB-C Charging Cable,1,11.95,11/07/19 18:14,"568 West St, Atlanta, GA 30301" -282460,Bose SoundSport Headphones,1,99.99,11/16/19 00:21,"199 Dogwood St, Los Angeles, CA 90001" -282461,USB-C Charging Cable,1,11.95,11/04/19 14:34,"439 Hill St, San Francisco, CA 94016" -282462,Flatscreen TV,1,300,11/24/19 11:34,"159 4th St, New York City, NY 10001" -282463,AAA Batteries (4-pack),1,2.99,11/12/19 18:56,"816 Cherry St, Boston, MA 02215" -282464,Macbook Pro Laptop,1,1700,11/30/19 13:50,"297 Cedar St, San Francisco, CA 94016" -282464,USB-C Charging Cable,2,11.95,11/30/19 13:50,"297 Cedar St, San Francisco, CA 94016" -282465,Wired Headphones,1,11.99,11/14/19 19:57,"308 Jefferson St, San Francisco, CA 94016" -282466,Bose SoundSport Headphones,1,99.99,11/15/19 20:19,"976 Walnut St, New York City, NY 10001" -282467,Lightning Charging Cable,1,14.95,11/22/19 23:15,"43 9th St, San Francisco, CA 94016" -282468,AAA Batteries (4-pack),2,2.99,11/08/19 18:22,"544 1st St, San Francisco, CA 94016" -282469,Wired Headphones,1,11.99,11/29/19 16:31,"122 Spruce St, Atlanta, GA 30301" -282470,iPhone,1,700,11/09/19 06:07,"464 Jefferson St, Los Angeles, CA 90001" -282470,Apple Airpods Headphones,1,150,11/09/19 06:07,"464 Jefferson St, Los Angeles, CA 90001" -282471,Apple Airpods Headphones,1,150,11/01/19 19:56,"849 Hickory St, New York City, NY 10001" -282472,AAA Batteries (4-pack),1,2.99,11/13/19 09:44,"925 2nd St, Boston, MA 02215" -282473,Apple Airpods Headphones,1,150,11/16/19 01:35,"395 Forest St, Los Angeles, CA 90001" -282474,Wired Headphones,1,11.99,11/30/19 21:06,"624 South St, New York City, NY 10001" -282475,Lightning Charging Cable,1,14.95,11/10/19 10:04,"694 Forest St, San Francisco, CA 94016" -282476,Vareebadd Phone,1,400,11/01/19 15:52,"666 Willow St, Portland, OR 97035" -282476,USB-C Charging Cable,1,11.95,11/01/19 15:52,"666 Willow St, Portland, OR 97035" -282477,USB-C Charging Cable,1,11.95,11/04/19 12:52,"357 Willow St, Los Angeles, CA 90001" -282478,AA Batteries (4-pack),1,3.84,11/09/19 09:46,"843 Meadow St, San Francisco, CA 94016" -282479,Apple Airpods Headphones,1,150,11/10/19 13:20,"408 Park St, Los Angeles, CA 90001" -282480,AAA Batteries (4-pack),1,2.99,11/11/19 14:54,"843 Chestnut St, Boston, MA 02215" -282481,34in Ultrawide Monitor,1,379.99,11/10/19 11:54,"837 Highland St, Boston, MA 02215" -282482,AA Batteries (4-pack),1,3.84,11/04/19 18:00,"583 Adams St, San Francisco, CA 94016" -282483,Bose SoundSport Headphones,1,99.99,11/01/19 18:57,"553 Pine St, Portland, ME 04101" -282484,Flatscreen TV,1,300,11/14/19 10:24,"636 West St, Dallas, TX 75001" -282485,34in Ultrawide Monitor,1,379.99,11/05/19 20:12,"956 10th St, Dallas, TX 75001" -282486,AA Batteries (4-pack),1,3.84,11/07/19 11:57,"699 Washington St, San Francisco, CA 94016" -282487,AAA Batteries (4-pack),3,2.99,11/27/19 18:58,"436 River St, New York City, NY 10001" -282488,Bose SoundSport Headphones,1,99.99,11/26/19 18:13,"201 Lake St, San Francisco, CA 94016" -282489,USB-C Charging Cable,1,11.95,11/30/19 12:44,"428 11th St, Los Angeles, CA 90001" -282490,Bose SoundSport Headphones,1,99.99,11/13/19 13:00,"911 Chestnut St, Portland, OR 97035" -282491,USB-C Charging Cable,1,11.95,11/05/19 12:38,"468 8th St, San Francisco, CA 94016" -282492,AAA Batteries (4-pack),1,2.99,11/11/19 17:39,"336 Sunset St, San Francisco, CA 94016" -282493,USB-C Charging Cable,1,11.95,11/29/19 13:44,"200 West St, Seattle, WA 98101" -282494,Apple Airpods Headphones,1,150,11/04/19 23:54,"539 Main St, San Francisco, CA 94016" -282495,USB-C Charging Cable,1,11.95,11/11/19 12:52,"250 10th St, Boston, MA 02215" -282496,Apple Airpods Headphones,1,150,11/13/19 23:44,"895 6th St, San Francisco, CA 94016" -282497,USB-C Charging Cable,1,11.95,11/23/19 21:41,"598 Hickory St, Los Angeles, CA 90001" -282498,Lightning Charging Cable,1,14.95,11/16/19 16:51,"322 Wilson St, San Francisco, CA 94016" -282499,Apple Airpods Headphones,1,150,11/27/19 19:45,"314 Cedar St, Portland, OR 97035" -282500,Wired Headphones,1,11.99,11/15/19 12:57,"962 1st St, San Francisco, CA 94016" -282501,Bose SoundSport Headphones,1,99.99,11/30/19 13:16,"691 13th St, Boston, MA 02215" -282502,Apple Airpods Headphones,1,150,11/18/19 18:27,"227 Madison St, San Francisco, CA 94016" -282503,Lightning Charging Cable,1,14.95,11/13/19 00:52,"741 Hickory St, New York City, NY 10001" -282504,Apple Airpods Headphones,1,150,11/04/19 10:59,"383 1st St, Los Angeles, CA 90001" -282505,iPhone,1,700,11/21/19 19:16,"364 Hickory St, San Francisco, CA 94016" -282506,20in Monitor,1,109.99,11/17/19 18:02,"557 Hill St, San Francisco, CA 94016" -282507,Apple Airpods Headphones,1,150,11/18/19 11:59,"480 Washington St, Atlanta, GA 30301" -282508,Lightning Charging Cable,1,14.95,11/07/19 23:54,"746 Sunset St, Atlanta, GA 30301" -282509,34in Ultrawide Monitor,1,379.99,11/10/19 19:42,"383 Johnson St, Boston, MA 02215" -282510,USB-C Charging Cable,1,11.95,11/21/19 12:18,"680 13th St, New York City, NY 10001" -282511,iPhone,1,700,11/22/19 11:09,"41 Jefferson St, Boston, MA 02215" -282512,Apple Airpods Headphones,1,150,11/14/19 18:08,"170 Meadow St, San Francisco, CA 94016" -282513,AA Batteries (4-pack),1,3.84,11/27/19 19:55,"860 Meadow St, Los Angeles, CA 90001" -282514,Bose SoundSport Headphones,1,99.99,11/14/19 15:54,"486 Meadow St, Seattle, WA 98101" -282515,Wired Headphones,1,11.99,11/05/19 09:08,"843 1st St, San Francisco, CA 94016" -282516,Bose SoundSport Headphones,1,99.99,11/26/19 16:34,"249 Hickory St, San Francisco, CA 94016" -282517,AA Batteries (4-pack),1,3.84,11/05/19 16:19,"139 Cherry St, Atlanta, GA 30301" -282518,AAA Batteries (4-pack),1,2.99,11/04/19 13:02,"606 5th St, New York City, NY 10001" -282519,Wired Headphones,1,11.99,11/06/19 18:40,"270 Lake St, Boston, MA 02215" -282520,AAA Batteries (4-pack),1,2.99,11/21/19 12:19,"267 11th St, Atlanta, GA 30301" -282521,Apple Airpods Headphones,1,150,11/06/19 15:43,"658 11th St, Portland, ME 04101" -282522,Apple Airpods Headphones,1,150,11/05/19 10:48,"350 Washington St, Portland, OR 97035" -282523,Apple Airpods Headphones,1,150,11/11/19 22:50,"331 8th St, Los Angeles, CA 90001" -282524,AAA Batteries (4-pack),1,2.99,11/21/19 22:14,"590 Pine St, Los Angeles, CA 90001" -282525,USB-C Charging Cable,1,11.95,11/08/19 21:51,"337 Ridge St, San Francisco, CA 94016" -282526,AA Batteries (4-pack),1,3.84,11/02/19 10:56,"246 Cedar St, Portland, OR 97035" -282527,USB-C Charging Cable,1,11.95,11/21/19 15:04,"221 7th St, Dallas, TX 75001" -282528,34in Ultrawide Monitor,1,379.99,11/09/19 07:00,"294 Sunset St, Portland, OR 97035" -282529,27in FHD Monitor,1,149.99,11/24/19 22:56,"307 Cedar St, San Francisco, CA 94016" -282529,AAA Batteries (4-pack),1,2.99,11/24/19 22:56,"307 Cedar St, San Francisco, CA 94016" -282530,USB-C Charging Cable,1,11.95,11/05/19 18:44,"459 West St, Los Angeles, CA 90001" -282531,AAA Batteries (4-pack),1,2.99,11/17/19 20:11,"815 Jefferson St, San Francisco, CA 94016" -282532,Lightning Charging Cable,1,14.95,11/18/19 15:01,"762 8th St, Atlanta, GA 30301" -282533,AAA Batteries (4-pack),1,2.99,11/02/19 11:27,"268 8th St, New York City, NY 10001" -282534,27in FHD Monitor,1,149.99,11/17/19 14:16,"433 Main St, Los Angeles, CA 90001" -282535,USB-C Charging Cable,1,11.95,11/01/19 23:10,"20 North St, San Francisco, CA 94016" -282536,27in 4K Gaming Monitor,1,389.99,11/23/19 15:16,"891 Forest St, San Francisco, CA 94016" -282537,27in FHD Monitor,1,149.99,11/30/19 20:19,"80 12th St, Portland, ME 04101" -282538,Macbook Pro Laptop,1,1700,11/15/19 06:21,"366 Madison St, Austin, TX 73301" -282539,27in 4K Gaming Monitor,1,389.99,11/19/19 12:06,"965 North St, Dallas, TX 75001" -282540,20in Monitor,1,109.99,11/12/19 15:29,"488 Center St, Dallas, TX 75001" -282541,AA Batteries (4-pack),2,3.84,11/14/19 18:09,"301 6th St, San Francisco, CA 94016" -282542,Apple Airpods Headphones,1,150,11/12/19 16:49,"615 14th St, San Francisco, CA 94016" -282543,27in FHD Monitor,1,149.99,11/30/19 22:43,"771 12th St, Dallas, TX 75001" -282544,Google Phone,1,600,11/01/19 15:11,"408 Jefferson St, San Francisco, CA 94016" -282545,ThinkPad Laptop,1,999.99,11/08/19 19:00,"461 Jefferson St, New York City, NY 10001" -282546,AA Batteries (4-pack),1,3.84,11/05/19 15:29,"433 1st St, Dallas, TX 75001" -282547,Lightning Charging Cable,1,14.95,11/28/19 14:48,"611 Highland St, San Francisco, CA 94016" -282548,Apple Airpods Headphones,1,150,11/22/19 07:58,"743 Cherry St, Portland, OR 97035" -282549,Lightning Charging Cable,1,14.95,11/04/19 00:57,"385 9th St, San Francisco, CA 94016" -282550,Wired Headphones,1,11.99,11/30/19 08:40,"975 Main St, Dallas, TX 75001" -282551,LG Washing Machine,1,600.0,11/18/19 16:25,"218 Meadow St, Seattle, WA 98101" -282552,AAA Batteries (4-pack),5,2.99,11/12/19 11:51,"557 Adams St, Seattle, WA 98101" -282553,Google Phone,1,600,11/03/19 12:06,"954 Spruce St, New York City, NY 10001" -282554,AAA Batteries (4-pack),1,2.99,11/07/19 21:02,"930 Chestnut St, Atlanta, GA 30301" -282555,AAA Batteries (4-pack),1,2.99,11/12/19 16:19,"759 Hill St, Seattle, WA 98101" -282556,34in Ultrawide Monitor,1,379.99,11/28/19 20:22,"405 5th St, Austin, TX 73301" -,,,,, -282557,AAA Batteries (4-pack),2,2.99,11/01/19 13:31,"208 8th St, San Francisco, CA 94016" -282558,iPhone,1,700,11/14/19 19:04,"681 Lake St, Los Angeles, CA 90001" -282559,Apple Airpods Headphones,1,150,11/18/19 22:09,"704 13th St, San Francisco, CA 94016" -282560,27in 4K Gaming Monitor,1,389.99,11/09/19 18:27,"49 Center St, New York City, NY 10001" -282561,USB-C Charging Cable,1,11.95,11/21/19 20:05,"790 Willow St, Los Angeles, CA 90001" -282562,Wired Headphones,1,11.99,11/16/19 10:39,"771 Cedar St, Boston, MA 02215" -282563,Bose SoundSport Headphones,1,99.99,11/15/19 21:56,"850 Adams St, Seattle, WA 98101" -282564,27in FHD Monitor,1,149.99,11/06/19 23:51,"435 4th St, New York City, NY 10001" -282565,USB-C Charging Cable,1,11.95,11/08/19 17:46,"60 10th St, Los Angeles, CA 90001" -282566,Lightning Charging Cable,1,14.95,11/18/19 17:14,"499 Center St, Atlanta, GA 30301" -282567,USB-C Charging Cable,1,11.95,11/25/19 08:39,"695 Cedar St, Los Angeles, CA 90001" -282568,27in FHD Monitor,1,149.99,11/25/19 07:24,"958 Center St, Boston, MA 02215" -282569,AAA Batteries (4-pack),1,2.99,11/14/19 18:03,"920 10th St, San Francisco, CA 94016" -282570,USB-C Charging Cable,1,11.95,11/23/19 19:33,"127 Center St, San Francisco, CA 94016" -282570,27in FHD Monitor,1,149.99,11/23/19 19:33,"127 Center St, San Francisco, CA 94016" -282571,Macbook Pro Laptop,1,1700,11/29/19 12:36,"68 Church St, New York City, NY 10001" -282572,AAA Batteries (4-pack),1,2.99,11/12/19 17:35,"414 Adams St, Los Angeles, CA 90001" -282573,iPhone,1,700,11/27/19 12:31,"388 6th St, New York City, NY 10001" -282574,27in FHD Monitor,1,149.99,11/25/19 09:56,"261 Washington St, Boston, MA 02215" -282575,iPhone,1,700,11/22/19 15:13,"704 Sunset St, San Francisco, CA 94016" -282576,iPhone,1,700,11/26/19 19:57,"89 Church St, Boston, MA 02215" -282577,AAA Batteries (4-pack),2,2.99,11/28/19 22:03,"213 Forest St, San Francisco, CA 94016" -282578,Apple Airpods Headphones,1,150,11/03/19 07:46,"882 Main St, Los Angeles, CA 90001" -282579,AA Batteries (4-pack),2,3.84,11/29/19 20:28,"490 Madison St, Dallas, TX 75001" -282580,Macbook Pro Laptop,1,1700,11/22/19 07:29,"79 Wilson St, Austin, TX 73301" -282581,20in Monitor,1,109.99,11/15/19 10:58,"319 12th St, Boston, MA 02215" -282582,Google Phone,1,600,11/06/19 20:02,"728 4th St, Dallas, TX 75001" -282582,Bose SoundSport Headphones,1,99.99,11/06/19 20:02,"728 4th St, Dallas, TX 75001" -282583,iPhone,1,700,11/17/19 21:04,"922 8th St, Los Angeles, CA 90001" -282584,27in FHD Monitor,1,149.99,11/29/19 16:41,"248 South St, Los Angeles, CA 90001" -282585,Bose SoundSport Headphones,1,99.99,11/09/19 01:34,"716 Chestnut St, New York City, NY 10001" -282586,27in FHD Monitor,1,149.99,11/14/19 17:12,"6 Willow St, New York City, NY 10001" -282587,Wired Headphones,1,11.99,11/07/19 20:45,"551 Walnut St, San Francisco, CA 94016" -282588,Macbook Pro Laptop,1,1700,11/15/19 10:01,"95 North St, Dallas, TX 75001" -282589,34in Ultrawide Monitor,1,379.99,11/05/19 22:33,"188 13th St, San Francisco, CA 94016" -282590,Bose SoundSport Headphones,1,99.99,11/26/19 08:43,"469 Hickory St, Los Angeles, CA 90001" -282591,AAA Batteries (4-pack),1,2.99,11/18/19 08:19,"726 Forest St, Los Angeles, CA 90001" -282592,ThinkPad Laptop,1,999.99,11/26/19 12:30,"303 1st St, Los Angeles, CA 90001" -282593,Lightning Charging Cable,1,14.95,11/03/19 09:49,"676 2nd St, Portland, ME 04101" -282594,ThinkPad Laptop,1,999.99,11/23/19 17:51,"919 12th St, Boston, MA 02215" -282595,AA Batteries (4-pack),1,3.84,11/15/19 22:43,"233 Madison St, Dallas, TX 75001" -282596,Google Phone,1,600,11/25/19 06:18,"197 Maple St, Boston, MA 02215" -282596,USB-C Charging Cable,1,11.95,11/25/19 06:18,"197 Maple St, Boston, MA 02215" -282597,Wired Headphones,2,11.99,11/10/19 14:09,"448 8th St, Seattle, WA 98101" -282598,AAA Batteries (4-pack),1,2.99,11/04/19 08:25,"901 11th St, San Francisco, CA 94016" -282599,iPhone,1,700,11/06/19 13:44,"83 14th St, Los Angeles, CA 90001" -282599,Wired Headphones,1,11.99,11/06/19 13:44,"83 14th St, Los Angeles, CA 90001" -282600,USB-C Charging Cable,2,11.95,11/04/19 19:44,"906 12th St, Los Angeles, CA 90001" -282601,AA Batteries (4-pack),2,3.84,11/16/19 11:14,"365 Meadow St, Atlanta, GA 30301" -282602,Bose SoundSport Headphones,1,99.99,11/14/19 15:11,"697 Cedar St, San Francisco, CA 94016" -282603,Wired Headphones,1,11.99,11/22/19 10:47,"825 Highland St, Dallas, TX 75001" -282604,AAA Batteries (4-pack),1,2.99,11/28/19 19:21,"78 4th St, New York City, NY 10001" -282605,Lightning Charging Cable,1,14.95,11/21/19 20:32,"178 1st St, Portland, OR 97035" -282606,Bose SoundSport Headphones,1,99.99,11/18/19 09:03,"611 South St, Seattle, WA 98101" -282607,AA Batteries (4-pack),1,3.84,11/14/19 09:34,"750 Jackson St, Atlanta, GA 30301" -282608,AA Batteries (4-pack),1,3.84,11/06/19 09:08,"676 13th St, Los Angeles, CA 90001" -282609,AA Batteries (4-pack),1,3.84,11/20/19 20:01,"531 Lakeview St, San Francisco, CA 94016" -282610,27in 4K Gaming Monitor,1,389.99,11/14/19 19:43,"740 River St, Seattle, WA 98101" -282611,AA Batteries (4-pack),3,3.84,11/12/19 20:56,"427 Willow St, San Francisco, CA 94016" -282612,20in Monitor,1,109.99,11/24/19 20:15,"215 Hickory St, San Francisco, CA 94016" -282613,AAA Batteries (4-pack),1,2.99,11/15/19 20:05,"649 Sunset St, Seattle, WA 98101" -282614,Bose SoundSport Headphones,1,99.99,11/20/19 14:17,"623 Lakeview St, Seattle, WA 98101" -282615,AA Batteries (4-pack),1,3.84,11/14/19 18:57,"332 11th St, San Francisco, CA 94016" -282616,ThinkPad Laptop,1,999.99,11/20/19 10:32,"17 Wilson St, Los Angeles, CA 90001" -282617,AA Batteries (4-pack),1,3.84,11/01/19 10:59,"7 Dogwood St, San Francisco, CA 94016" -282618,AAA Batteries (4-pack),1,2.99,11/17/19 20:59,"534 5th St, San Francisco, CA 94016" -282619,Wired Headphones,1,11.99,11/18/19 11:00,"532 Lakeview St, Los Angeles, CA 90001" -282620,AA Batteries (4-pack),1,3.84,11/03/19 17:22,"115 Meadow St, San Francisco, CA 94016" -282621,AA Batteries (4-pack),1,3.84,11/16/19 13:14,"493 2nd St, New York City, NY 10001" -282622,Wired Headphones,1,11.99,11/18/19 12:47,"368 Ridge St, Austin, TX 73301" -282623,Apple Airpods Headphones,1,150,11/18/19 18:44,"551 Hickory St, Boston, MA 02215" -282624,Lightning Charging Cable,1,14.95,11/18/19 18:38,"244 Cedar St, Portland, OR 97035" -282625,AA Batteries (4-pack),2,3.84,11/30/19 14:11,"513 Maple St, Portland, OR 97035" -282626,USB-C Charging Cable,1,11.95,11/09/19 10:06,"743 13th St, New York City, NY 10001" -282627,Wired Headphones,2,11.99,11/24/19 17:49,"49 Highland St, New York City, NY 10001" -282628,AA Batteries (4-pack),1,3.84,11/06/19 17:03,"440 Willow St, Portland, OR 97035" -282629,USB-C Charging Cable,1,11.95,11/06/19 05:14,"680 14th St, Boston, MA 02215" -282630,Wired Headphones,1,11.99,11/24/19 08:32,"905 5th St, New York City, NY 10001" -282631,27in 4K Gaming Monitor,1,389.99,11/03/19 19:18,"23 Dogwood St, Los Angeles, CA 90001" -282632,Vareebadd Phone,1,400,11/16/19 13:15,"917 Dogwood St, Los Angeles, CA 90001" -282632,Bose SoundSport Headphones,1,99.99,11/16/19 13:15,"917 Dogwood St, Los Angeles, CA 90001" -282633,Apple Airpods Headphones,1,150,11/21/19 09:21,"919 Park St, New York City, NY 10001" -282634,Flatscreen TV,1,300,11/29/19 18:33,"85 Highland St, Seattle, WA 98101" -282635,Wired Headphones,1,11.99,11/26/19 11:08,"62 Park St, Boston, MA 02215" -282636,Apple Airpods Headphones,1,150,11/01/19 10:46,"370 9th St, Boston, MA 02215" -282637,Google Phone,1,600,11/21/19 14:23,"668 Sunset St, New York City, NY 10001" -282638,AAA Batteries (4-pack),2,2.99,11/10/19 09:34,"118 Pine St, Los Angeles, CA 90001" -282639,AAA Batteries (4-pack),1,2.99,11/11/19 19:37,"959 11th St, New York City, NY 10001" -282640,20in Monitor,1,109.99,11/10/19 21:40,"979 2nd St, Boston, MA 02215" -282641,27in FHD Monitor,1,149.99,11/01/19 13:39,"882 Cherry St, Boston, MA 02215" -282642,USB-C Charging Cable,1,11.95,11/22/19 00:32,"445 Hill St, Los Angeles, CA 90001" -282643,ThinkPad Laptop,1,999.99,11/02/19 03:43,"147 Walnut St, Boston, MA 02215" -282644,AA Batteries (4-pack),2,3.84,11/29/19 13:08,"703 Cedar St, Portland, OR 97035" -282645,Macbook Pro Laptop,1,1700,11/05/19 16:06,"707 Washington St, San Francisco, CA 94016" -282645,27in FHD Monitor,1,149.99,11/05/19 16:06,"707 Washington St, San Francisco, CA 94016" -282646,34in Ultrawide Monitor,1,379.99,11/17/19 13:21,"348 Spruce St, Dallas, TX 75001" -282647,20in Monitor,1,109.99,11/15/19 21:25,"778 Lincoln St, Boston, MA 02215" -282648,iPhone,1,700,11/29/19 12:18,"959 Cedar St, Atlanta, GA 30301" -282648,Wired Headphones,1,11.99,11/29/19 12:18,"959 Cedar St, Atlanta, GA 30301" -282649,AAA Batteries (4-pack),1,2.99,11/19/19 16:54,"957 Lakeview St, Seattle, WA 98101" -282650,AA Batteries (4-pack),1,3.84,11/21/19 13:15,"700 Jackson St, New York City, NY 10001" -282651,Wired Headphones,1,11.99,11/02/19 17:48,"152 Chestnut St, Atlanta, GA 30301" -282652,34in Ultrawide Monitor,1,379.99,11/17/19 22:56,"319 Spruce St, Los Angeles, CA 90001" -282653,USB-C Charging Cable,1,11.95,11/29/19 19:24,"424 10th St, San Francisco, CA 94016" -282654,AA Batteries (4-pack),1,3.84,11/23/19 15:50,"678 Forest St, San Francisco, CA 94016" -282655,Bose SoundSport Headphones,1,99.99,11/03/19 23:59,"179 Johnson St, Los Angeles, CA 90001" -282656,Google Phone,1,600,11/21/19 14:57,"907 5th St, San Francisco, CA 94016" -282656,Bose SoundSport Headphones,1,99.99,11/21/19 14:57,"907 5th St, San Francisco, CA 94016" -282657,Bose SoundSport Headphones,1,99.99,11/25/19 16:25,"891 Elm St, Portland, ME 04101" -282658,34in Ultrawide Monitor,1,379.99,11/04/19 10:45,"205 Spruce St, New York City, NY 10001" -282659,USB-C Charging Cable,1,11.95,11/01/19 19:24,"774 14th St, New York City, NY 10001" -282660,Bose SoundSport Headphones,1,99.99,11/09/19 15:00,"703 Hill St, San Francisco, CA 94016" -282661,AAA Batteries (4-pack),1,2.99,11/03/19 08:47,"948 5th St, Los Angeles, CA 90001" -282662,34in Ultrawide Monitor,1,379.99,11/02/19 01:37,"778 6th St, Seattle, WA 98101" -282662,AAA Batteries (4-pack),1,2.99,11/02/19 01:37,"778 6th St, Seattle, WA 98101" -282663,AAA Batteries (4-pack),3,2.99,11/21/19 10:56,"428 Hickory St, Boston, MA 02215" -282664,AAA Batteries (4-pack),1,2.99,11/16/19 14:27,"778 Jefferson St, New York City, NY 10001" -282665,Flatscreen TV,1,300,11/10/19 17:02,"226 Jackson St, Portland, OR 97035" -282666,iPhone,1,700,11/21/19 16:47,"172 Wilson St, Seattle, WA 98101" -282667,27in 4K Gaming Monitor,1,389.99,11/01/19 18:23,"360 North St, New York City, NY 10001" -282668,AAA Batteries (4-pack),1,2.99,11/07/19 00:32,"424 Cedar St, Los Angeles, CA 90001" -282669,34in Ultrawide Monitor,1,379.99,11/23/19 17:53,"461 River St, Austin, TX 73301" -282670,Apple Airpods Headphones,1,150,11/16/19 10:01,"839 Center St, Boston, MA 02215" -282671,27in FHD Monitor,1,149.99,11/08/19 20:36,"932 5th St, Portland, OR 97035" -282672,Apple Airpods Headphones,1,150,11/30/19 23:56,"449 6th St, Atlanta, GA 30301" -282673,USB-C Charging Cable,1,11.95,11/05/19 18:53,"573 Church St, San Francisco, CA 94016" -282674,USB-C Charging Cable,1,11.95,11/20/19 14:10,"597 14th St, Boston, MA 02215" -282675,27in 4K Gaming Monitor,1,389.99,12/01/19 01:45,"501 9th St, Los Angeles, CA 90001" -282676,AAA Batteries (4-pack),2,2.99,11/07/19 16:25,"688 10th St, Dallas, TX 75001" -282677,USB-C Charging Cable,1,11.95,11/14/19 16:14,"229 Willow St, Austin, TX 73301" -282678,Flatscreen TV,1,300,11/17/19 19:32,"270 Madison St, San Francisco, CA 94016" -282679,Wired Headphones,1,11.99,11/20/19 21:43,"470 6th St, Los Angeles, CA 90001" -282680,Lightning Charging Cable,1,14.95,11/29/19 10:39,"245 Chestnut St, New York City, NY 10001" -282681,ThinkPad Laptop,1,999.99,11/04/19 17:51,"418 Main St, New York City, NY 10001" -282682,Google Phone,1,600,11/02/19 10:21,"332 1st St, Los Angeles, CA 90001" -282683,iPhone,1,700,11/07/19 12:35,"640 Center St, San Francisco, CA 94016" -282684,Bose SoundSport Headphones,1,99.99,11/01/19 21:12,"995 Elm St, San Francisco, CA 94016" -282685,Wired Headphones,1,11.99,11/23/19 18:42,"137 Lincoln St, New York City, NY 10001" -282686,USB-C Charging Cable,1,11.95,11/12/19 16:27,"957 West St, Los Angeles, CA 90001" -282687,Flatscreen TV,1,300,11/11/19 18:37,"928 Lincoln St, Portland, OR 97035" -282688,Macbook Pro Laptop,1,1700,11/27/19 17:49,"943 14th St, San Francisco, CA 94016" -282689,iPhone,1,700,11/17/19 16:28,"27 North St, San Francisco, CA 94016" -282689,Lightning Charging Cable,1,14.95,11/17/19 16:28,"27 North St, San Francisco, CA 94016" -282690,Lightning Charging Cable,1,14.95,11/21/19 17:31,"957 Willow St, New York City, NY 10001" -282691,34in Ultrawide Monitor,1,379.99,11/02/19 18:07,"74 South St, Portland, OR 97035" -282692,AAA Batteries (4-pack),2,2.99,11/12/19 12:38,"500 Center St, Dallas, TX 75001" -282693,USB-C Charging Cable,1,11.95,11/08/19 11:08,"584 Jackson St, Los Angeles, CA 90001" -282694,Apple Airpods Headphones,1,150,11/22/19 23:16,"513 Dogwood St, Seattle, WA 98101" -282695,Apple Airpods Headphones,1,150,11/25/19 11:25,"765 Main St, Los Angeles, CA 90001" -282696,20in Monitor,1,109.99,11/25/19 02:00,"584 Cherry St, Austin, TX 73301" -282697,Flatscreen TV,1,300,11/03/19 23:00,"764 Johnson St, New York City, NY 10001" -282698,Apple Airpods Headphones,1,150,11/06/19 21:10,"430 Dogwood St, New York City, NY 10001" -282699,Lightning Charging Cable,1,14.95,11/22/19 16:44,"250 West St, San Francisco, CA 94016" -282700,iPhone,1,700,11/09/19 19:11,"12 1st St, New York City, NY 10001" -282701,Wired Headphones,1,11.99,11/13/19 20:04,"704 West St, New York City, NY 10001" -282702,Apple Airpods Headphones,1,150,11/27/19 11:45,"770 Cherry St, San Francisco, CA 94016" -282703,USB-C Charging Cable,1,11.95,11/13/19 11:45,"371 Park St, Boston, MA 02215" -282704,USB-C Charging Cable,1,11.95,11/24/19 17:34,"832 13th St, Dallas, TX 75001" -282705,Macbook Pro Laptop,1,1700,11/15/19 21:38,"737 Wilson St, Austin, TX 73301" -282706,AA Batteries (4-pack),1,3.84,11/12/19 14:34,"227 Walnut St, San Francisco, CA 94016" -282707,iPhone,1,700,11/03/19 22:18,"742 Meadow St, Seattle, WA 98101" -282708,AA Batteries (4-pack),1,3.84,11/18/19 16:35,"35 Spruce St, New York City, NY 10001" -282709,Lightning Charging Cable,1,14.95,11/08/19 16:11,"40 8th St, San Francisco, CA 94016" -282710,Google Phone,1,600,11/25/19 17:37,"645 River St, San Francisco, CA 94016" -282711,Flatscreen TV,1,300,11/04/19 14:32,"867 Elm St, San Francisco, CA 94016" -282712,Lightning Charging Cable,2,14.95,11/28/19 21:26,"297 10th St, Atlanta, GA 30301" -282713,Wired Headphones,1,11.99,11/18/19 18:29,"568 Chestnut St, Atlanta, GA 30301" -282714,34in Ultrawide Monitor,1,379.99,11/05/19 19:05,"938 Washington St, San Francisco, CA 94016" -282715,Flatscreen TV,1,300,11/27/19 23:10,"870 Hill St, Seattle, WA 98101" -282716,27in 4K Gaming Monitor,1,389.99,11/02/19 19:42,"92 Meadow St, San Francisco, CA 94016" -282717,ThinkPad Laptop,1,999.99,11/18/19 18:10,"314 4th St, New York City, NY 10001" -282718,Flatscreen TV,1,300,11/18/19 00:00,"421 Hill St, Seattle, WA 98101" -282719,34in Ultrawide Monitor,1,379.99,11/02/19 17:32,"577 Hill St, San Francisco, CA 94016" -282720,AA Batteries (4-pack),2,3.84,11/26/19 21:33,"706 7th St, Los Angeles, CA 90001" -282721,27in 4K Gaming Monitor,1,389.99,11/04/19 18:15,"823 1st St, Los Angeles, CA 90001" -282722,27in 4K Gaming Monitor,1,389.99,11/05/19 14:41,"36 Madison St, Los Angeles, CA 90001" -282723,Lightning Charging Cable,1,14.95,11/24/19 20:42,"923 Main St, San Francisco, CA 94016" -282724,AA Batteries (4-pack),1,3.84,11/16/19 13:43,"996 1st St, Seattle, WA 98101" -282725,Wired Headphones,1,11.99,11/22/19 15:05,"998 Dogwood St, Seattle, WA 98101" -282726,Flatscreen TV,1,300,11/14/19 18:48,"690 6th St, San Francisco, CA 94016" -282726,Google Phone,1,600,11/14/19 18:48,"690 6th St, San Francisco, CA 94016" -282727,Lightning Charging Cable,1,14.95,11/13/19 22:47,"964 Jackson St, San Francisco, CA 94016" -282728,AA Batteries (4-pack),2,3.84,11/04/19 09:14,"132 Lakeview St, Dallas, TX 75001" -282729,AAA Batteries (4-pack),2,2.99,11/26/19 16:41,"413 Dogwood St, San Francisco, CA 94016" -282730,Bose SoundSport Headphones,1,99.99,11/24/19 21:57,"967 Lakeview St, Austin, TX 73301" -282731,27in FHD Monitor,1,149.99,11/17/19 15:59,"180 Hickory St, Boston, MA 02215" -282732,Macbook Pro Laptop,1,1700,11/17/19 22:51,"299 4th St, Los Angeles, CA 90001" -282733,AAA Batteries (4-pack),1,2.99,11/17/19 20:53,"276 9th St, New York City, NY 10001" -282734,Apple Airpods Headphones,1,150,11/18/19 00:06,"320 8th St, Los Angeles, CA 90001" -282735,Wired Headphones,1,11.99,11/01/19 17:27,"176 7th St, Seattle, WA 98101" -282736,Apple Airpods Headphones,1,150,11/21/19 19:01,"987 2nd St, Boston, MA 02215" -282737,Wired Headphones,1,11.99,11/28/19 08:24,"421 Highland St, Atlanta, GA 30301" -282738,USB-C Charging Cable,1,11.95,11/03/19 19:12,"190 7th St, San Francisco, CA 94016" -282739,Lightning Charging Cable,1,14.95,11/09/19 15:16,"290 Cherry St, San Francisco, CA 94016" -282740,Lightning Charging Cable,1,14.95,11/12/19 04:34,"967 Church St, New York City, NY 10001" -282741,AA Batteries (4-pack),1,3.84,11/12/19 15:52,"702 Maple St, San Francisco, CA 94016" -282742,20in Monitor,1,109.99,11/18/19 16:08,"992 5th St, Atlanta, GA 30301" -282743,Apple Airpods Headphones,1,150,11/07/19 07:47,"203 Jefferson St, New York City, NY 10001" -282744,ThinkPad Laptop,1,999.99,11/13/19 12:12,"869 Jefferson St, New York City, NY 10001" -282745,Apple Airpods Headphones,1,150,11/14/19 09:41,"928 Hill St, Seattle, WA 98101" -282746,27in FHD Monitor,1,149.99,11/19/19 19:40,"938 1st St, New York City, NY 10001" -282747,USB-C Charging Cable,1,11.95,11/17/19 14:49,"966 Johnson St, Los Angeles, CA 90001" -282748,Apple Airpods Headphones,1,150,11/04/19 11:22,"10 Church St, New York City, NY 10001" -282749,Wired Headphones,1,11.99,11/20/19 22:42,"456 6th St, Boston, MA 02215" -282750,AAA Batteries (4-pack),3,2.99,11/30/19 19:44,"59 12th St, Los Angeles, CA 90001" -282751,AAA Batteries (4-pack),2,2.99,11/17/19 20:27,"497 12th St, New York City, NY 10001" -282752,AAA Batteries (4-pack),2,2.99,11/26/19 19:44,"243 Maple St, Boston, MA 02215" -282753,AAA Batteries (4-pack),3,2.99,11/21/19 16:13,"499 Park St, Dallas, TX 75001" -282754,20in Monitor,1,109.99,11/10/19 12:40,"922 South St, New York City, NY 10001" -282755,Google Phone,1,600,11/14/19 19:09,"690 Cedar St, Portland, OR 97035" -282755,USB-C Charging Cable,1,11.95,11/14/19 19:09,"690 Cedar St, Portland, OR 97035" -282756,Vareebadd Phone,1,400,11/27/19 11:05,"249 Forest St, Los Angeles, CA 90001" -282757,iPhone,1,700,11/10/19 18:38,"97 14th St, Boston, MA 02215" -282758,iPhone,1,700,11/11/19 21:58,"440 Maple St, Austin, TX 73301" -282759,34in Ultrawide Monitor,1,379.99,11/12/19 21:14,"175 Chestnut St, Seattle, WA 98101" -282760,AAA Batteries (4-pack),1,2.99,11/04/19 14:29,"302 Cedar St, Portland, ME 04101" -282761,ThinkPad Laptop,1,999.99,11/26/19 17:38,"42 Spruce St, Dallas, TX 75001" -282762,Lightning Charging Cable,1,14.95,11/30/19 15:52,"725 Main St, Austin, TX 73301" -282763,Macbook Pro Laptop,1,1700,11/27/19 21:54,"753 Madison St, Dallas, TX 75001" -282764,AA Batteries (4-pack),1,3.84,11/04/19 12:39,"357 Jackson St, Los Angeles, CA 90001" -282765,AAA Batteries (4-pack),3,2.99,11/08/19 00:51,"111 Cedar St, San Francisco, CA 94016" -282766,Bose SoundSport Headphones,1,99.99,11/03/19 20:54,"298 Cedar St, San Francisco, CA 94016" -282767,AA Batteries (4-pack),1,3.84,11/26/19 20:11,"705 12th St, Seattle, WA 98101" -282768,Google Phone,1,600,11/13/19 19:13,"917 Highland St, New York City, NY 10001" -282769,Wired Headphones,1,11.99,11/11/19 14:58,"418 Lincoln St, San Francisco, CA 94016" -282770,Wired Headphones,1,11.99,11/19/19 17:40,"308 Adams St, New York City, NY 10001" -282771,Macbook Pro Laptop,1,1700,11/16/19 11:36,"686 10th St, Seattle, WA 98101" -282772,27in FHD Monitor,1,149.99,11/30/19 01:00,"303 14th St, San Francisco, CA 94016" -282773,20in Monitor,1,109.99,11/30/19 13:45,"743 2nd St, Austin, TX 73301" -282774,Apple Airpods Headphones,1,150,11/01/19 21:54,"974 West St, Austin, TX 73301" -282775,27in FHD Monitor,1,149.99,11/19/19 09:45,"963 Lincoln St, New York City, NY 10001" -282776,Lightning Charging Cable,1,14.95,11/25/19 18:05,"956 10th St, Atlanta, GA 30301" -282777,AAA Batteries (4-pack),1,2.99,11/30/19 17:39,"903 Willow St, Seattle, WA 98101" -282778,USB-C Charging Cable,1,11.95,11/22/19 14:36,"961 Jackson St, San Francisco, CA 94016" -282779,AA Batteries (4-pack),1,3.84,11/25/19 01:20,"260 Meadow St, Los Angeles, CA 90001" -282780,AAA Batteries (4-pack),1,2.99,11/24/19 09:42,"137 Lincoln St, Dallas, TX 75001" -282781,Wired Headphones,2,11.99,11/19/19 20:28,"516 Cedar St, New York City, NY 10001" -282782,Apple Airpods Headphones,1,150,11/21/19 17:16,"646 River St, Los Angeles, CA 90001" -282783,AA Batteries (4-pack),1,3.84,11/14/19 21:57,"546 Lincoln St, Dallas, TX 75001" -282784,Bose SoundSport Headphones,1,99.99,11/08/19 20:27,"649 Jefferson St, San Francisco, CA 94016" -282785,Apple Airpods Headphones,1,150,11/21/19 20:05,"33 Johnson St, New York City, NY 10001" -282786,AA Batteries (4-pack),1,3.84,11/20/19 17:09,"12 Dogwood St, Dallas, TX 75001" -282787,Vareebadd Phone,1,400,11/23/19 12:07,"805 Maple St, New York City, NY 10001" -282787,USB-C Charging Cable,1,11.95,11/23/19 12:07,"805 Maple St, New York City, NY 10001" -282788,Bose SoundSport Headphones,1,99.99,11/09/19 22:10,"2 Dogwood St, Los Angeles, CA 90001" -282789,Lightning Charging Cable,1,14.95,11/18/19 01:28,"382 7th St, Boston, MA 02215" -282790,Macbook Pro Laptop,1,1700,11/22/19 21:00,"876 Church St, Seattle, WA 98101" -282791,Apple Airpods Headphones,1,150,11/04/19 17:02,"200 Elm St, Portland, OR 97035" -282792,Wired Headphones,1,11.99,11/25/19 19:16,"177 2nd St, San Francisco, CA 94016" -282793,Lightning Charging Cable,1,14.95,11/18/19 14:06,"394 12th St, San Francisco, CA 94016" -282794,Apple Airpods Headphones,1,150,11/30/19 23:43,"513 1st St, San Francisco, CA 94016" -282795,AA Batteries (4-pack),1,3.84,11/13/19 14:24,"771 12th St, San Francisco, CA 94016" -282796,AA Batteries (4-pack),1,3.84,11/04/19 19:28,"439 Highland St, Los Angeles, CA 90001" -282797,ThinkPad Laptop,1,999.99,11/11/19 23:04,"424 4th St, Austin, TX 73301" -282798,Wired Headphones,1,11.99,11/20/19 20:30,"935 Hickory St, Atlanta, GA 30301" -282799,Google Phone,1,600,11/23/19 11:35,"123 Spruce St, San Francisco, CA 94016" -282799,USB-C Charging Cable,1,11.95,11/23/19 11:35,"123 Spruce St, San Francisco, CA 94016" -282800,34in Ultrawide Monitor,1,379.99,11/04/19 10:49,"67 River St, Los Angeles, CA 90001" -282801,AA Batteries (4-pack),1,3.84,11/06/19 12:15,"575 Chestnut St, Boston, MA 02215" -282802,AA Batteries (4-pack),3,3.84,11/26/19 13:59,"871 Jackson St, Dallas, TX 75001" -282803,ThinkPad Laptop,1,999.99,11/06/19 14:40,"47 9th St, New York City, NY 10001" -282804,20in Monitor,1,109.99,11/09/19 13:07,"876 Johnson St, Dallas, TX 75001" -282805,Lightning Charging Cable,1,14.95,11/16/19 19:10,"669 7th St, Los Angeles, CA 90001" -282806,20in Monitor,1,109.99,11/03/19 13:52,"376 4th St, Boston, MA 02215" -282807,AA Batteries (4-pack),1,3.84,11/23/19 17:21,"705 North St, Los Angeles, CA 90001" -282808,iPhone,1,700,11/28/19 08:22,"389 10th St, Boston, MA 02215" -282809,27in 4K Gaming Monitor,1,389.99,11/20/19 16:26,"979 Lakeview St, San Francisco, CA 94016" -282810,USB-C Charging Cable,1,11.95,11/14/19 07:52,"385 Hickory St, San Francisco, CA 94016" -282811,AA Batteries (4-pack),1,3.84,11/13/19 13:43,"769 5th St, Los Angeles, CA 90001" -282812,Lightning Charging Cable,1,14.95,11/20/19 09:05,"115 Forest St, New York City, NY 10001" -282813,AA Batteries (4-pack),1,3.84,11/10/19 15:32,"210 9th St, Los Angeles, CA 90001" -282814,Wired Headphones,2,11.99,11/02/19 22:41,"753 North St, Boston, MA 02215" -282815,USB-C Charging Cable,1,11.95,11/11/19 19:49,"740 Hill St, Atlanta, GA 30301" -282816,ThinkPad Laptop,1,999.99,11/06/19 22:35,"573 River St, Boston, MA 02215" -282817,USB-C Charging Cable,1,11.95,11/22/19 12:49,"709 6th St, Los Angeles, CA 90001" -282818,Apple Airpods Headphones,1,150,11/20/19 12:55,"119 Church St, Seattle, WA 98101" -282819,iPhone,1,700,11/01/19 23:58,"531 Pine St, San Francisco, CA 94016" -282819,Lightning Charging Cable,1,14.95,11/01/19 23:58,"531 Pine St, San Francisco, CA 94016" -282820,27in FHD Monitor,1,149.99,11/12/19 21:54,"215 Elm St, New York City, NY 10001" -282821,ThinkPad Laptop,1,999.99,11/19/19 09:29,"430 Main St, San Francisco, CA 94016" -282822,iPhone,1,700,11/04/19 13:58,"31 Ridge St, Austin, TX 73301" -282823,LG Washing Machine,1,600.0,11/11/19 17:35,"37 Lakeview St, Boston, MA 02215" -282824,iPhone,1,700,11/27/19 15:25,"848 Pine St, New York City, NY 10001" -282825,AA Batteries (4-pack),1,3.84,11/15/19 20:16,"922 12th St, Dallas, TX 75001" -282826,AAA Batteries (4-pack),3,2.99,11/25/19 20:56,"852 South St, New York City, NY 10001" -282827,Lightning Charging Cable,1,14.95,11/27/19 10:40,"640 2nd St, New York City, NY 10001" -282828,Apple Airpods Headphones,1,150,11/01/19 14:19,"638 Sunset St, New York City, NY 10001" -282829,USB-C Charging Cable,1,11.95,11/24/19 23:43,"752 Jefferson St, Boston, MA 02215" -282830,iPhone,1,700,11/02/19 22:58,"165 Wilson St, Boston, MA 02215" -282830,Lightning Charging Cable,1,14.95,11/02/19 22:58,"165 Wilson St, Boston, MA 02215" -282831,USB-C Charging Cable,1,11.95,11/03/19 11:07,"30 1st St, Dallas, TX 75001" -282832,Google Phone,1,600,11/01/19 10:57,"542 Main St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -282833,Lightning Charging Cable,2,14.95,11/13/19 10:29,"38 Ridge St, San Francisco, CA 94016" -282834,34in Ultrawide Monitor,1,379.99,11/28/19 12:48,"316 2nd St, San Francisco, CA 94016" -282835,34in Ultrawide Monitor,1,379.99,11/18/19 23:15,"70 Maple St, New York City, NY 10001" -282836,AA Batteries (4-pack),3,3.84,11/22/19 10:53,"529 Johnson St, San Francisco, CA 94016" -282837,AA Batteries (4-pack),1,3.84,11/01/19 16:58,"422 North St, Boston, MA 02215" -282838,Wired Headphones,1,11.99,11/07/19 11:39,"966 6th St, New York City, NY 10001" -282839,AAA Batteries (4-pack),1,2.99,11/25/19 20:05,"630 Spruce St, Boston, MA 02215" -282840,AA Batteries (4-pack),1,3.84,11/12/19 19:30,"524 Center St, San Francisco, CA 94016" -282841,Apple Airpods Headphones,1,150,11/08/19 22:48,"713 Church St, Los Angeles, CA 90001" -282842,Wired Headphones,1,11.99,11/19/19 12:44,"152 Adams St, Los Angeles, CA 90001" -282843,Apple Airpods Headphones,1,150,11/26/19 20:17,"166 7th St, Austin, TX 73301" -282844,AAA Batteries (4-pack),4,2.99,11/16/19 17:02,"915 13th St, San Francisco, CA 94016" -282845,iPhone,1,700,11/27/19 02:00,"218 Maple St, Boston, MA 02215" -282845,Apple Airpods Headphones,1,150,11/27/19 02:00,"218 Maple St, Boston, MA 02215" -282846,27in FHD Monitor,1,149.99,11/20/19 10:19,"936 Lake St, San Francisco, CA 94016" -282847,AA Batteries (4-pack),1,3.84,11/24/19 16:05,"350 9th St, Seattle, WA 98101" -282848,Macbook Pro Laptop,1,1700,11/02/19 15:35,"833 Willow St, Dallas, TX 75001" -282849,Lightning Charging Cable,1,14.95,11/03/19 21:32,"998 4th St, Dallas, TX 75001" -282850,27in 4K Gaming Monitor,1,389.99,11/27/19 22:02,"601 4th St, Boston, MA 02215" -282851,AA Batteries (4-pack),1,3.84,11/02/19 10:16,"839 4th St, Atlanta, GA 30301" -282852,iPhone,1,700,11/01/19 20:01,"973 Hickory St, Dallas, TX 75001" -282853,AA Batteries (4-pack),1,3.84,11/21/19 15:59,"57 Meadow St, Dallas, TX 75001" -282854,Apple Airpods Headphones,1,150,11/13/19 08:11,"546 Hill St, Los Angeles, CA 90001" -282855,Lightning Charging Cable,1,14.95,11/20/19 12:44,"769 West St, Atlanta, GA 30301" -282856,Apple Airpods Headphones,1,150,11/14/19 12:16,"760 Meadow St, Boston, MA 02215" -282857,USB-C Charging Cable,1,11.95,11/27/19 14:02,"585 River St, San Francisco, CA 94016" -282858,Wired Headphones,1,11.99,11/13/19 08:38,"57 Ridge St, Los Angeles, CA 90001" -282859,Wired Headphones,1,11.99,11/10/19 18:04,"167 9th St, Dallas, TX 75001" -282860,AA Batteries (4-pack),1,3.84,11/27/19 09:18,"169 6th St, New York City, NY 10001" -282861,Apple Airpods Headphones,1,150,11/19/19 19:57,"686 Cherry St, Boston, MA 02215" -282862,USB-C Charging Cable,2,11.95,11/28/19 21:51,"333 Chestnut St, New York City, NY 10001" -282863,USB-C Charging Cable,1,11.95,11/07/19 14:46,"811 11th St, New York City, NY 10001" -282864,Google Phone,1,600,11/06/19 20:27,"472 Church St, Atlanta, GA 30301" -282865,USB-C Charging Cable,2,11.95,11/26/19 17:45,"568 River St, Los Angeles, CA 90001" -282866,34in Ultrawide Monitor,1,379.99,11/01/19 11:57,"924 14th St, New York City, NY 10001" -282867,AAA Batteries (4-pack),1,2.99,11/14/19 17:42,"669 Sunset St, San Francisco, CA 94016" -282868,27in 4K Gaming Monitor,1,389.99,11/28/19 13:36,"362 1st St, Boston, MA 02215" -282869,Lightning Charging Cable,2,14.95,11/19/19 06:53,"835 Park St, Seattle, WA 98101" -282870,20in Monitor,1,109.99,11/06/19 23:26,"689 Lakeview St, San Francisco, CA 94016" -282871,Flatscreen TV,1,300,11/22/19 23:11,"316 14th St, Los Angeles, CA 90001" -282872,AAA Batteries (4-pack),4,2.99,11/16/19 00:26,"937 6th St, Boston, MA 02215" -282873,Lightning Charging Cable,1,14.95,11/10/19 09:09,"930 1st St, Portland, OR 97035" -282874,Macbook Pro Laptop,1,1700,11/05/19 13:26,"5 Washington St, New York City, NY 10001" -282875,34in Ultrawide Monitor,1,379.99,11/04/19 11:59,"515 8th St, Los Angeles, CA 90001" -282876,USB-C Charging Cable,1,11.95,11/28/19 21:13,"383 Cherry St, San Francisco, CA 94016" -282877,Wired Headphones,1,11.99,11/29/19 18:12,"995 13th St, San Francisco, CA 94016" -282878,Lightning Charging Cable,1,14.95,11/17/19 06:21,"903 6th St, New York City, NY 10001" -282879,Lightning Charging Cable,1,14.95,11/22/19 20:56,"605 12th St, San Francisco, CA 94016" -282880,Lightning Charging Cable,1,14.95,11/28/19 10:54,"58 Chestnut St, Atlanta, GA 30301" -282881,USB-C Charging Cable,1,11.95,11/15/19 13:42,"823 9th St, Atlanta, GA 30301" -282882,AAA Batteries (4-pack),2,2.99,11/02/19 13:33,"429 Lincoln St, Portland, OR 97035" -282883,AA Batteries (4-pack),1,3.84,11/12/19 19:53,"601 Lincoln St, Boston, MA 02215" -282884,Lightning Charging Cable,1,14.95,11/17/19 11:38,"673 Park St, San Francisco, CA 94016" -282885,AA Batteries (4-pack),1,3.84,11/08/19 17:18,"151 Park St, Austin, TX 73301" -282886,Lightning Charging Cable,1,14.95,11/16/19 10:13,"101 Meadow St, San Francisco, CA 94016" -282887,Lightning Charging Cable,1,14.95,11/04/19 06:32,"708 Church St, Austin, TX 73301" -282888,USB-C Charging Cable,1,11.95,11/26/19 07:57,"890 Washington St, Boston, MA 02215" -282889,AA Batteries (4-pack),1,3.84,11/02/19 00:43,"747 Wilson St, San Francisco, CA 94016" -282890,AAA Batteries (4-pack),3,2.99,11/22/19 11:39,"392 Maple St, Seattle, WA 98101" -282890,Lightning Charging Cable,1,14.95,11/22/19 11:39,"392 Maple St, Seattle, WA 98101" -282891,Wired Headphones,1,11.99,11/07/19 11:39,"198 Chestnut St, Austin, TX 73301" -282892,Bose SoundSport Headphones,1,99.99,11/27/19 18:26,"875 Highland St, Atlanta, GA 30301" -282893,USB-C Charging Cable,1,11.95,11/07/19 09:04,"199 Church St, Atlanta, GA 30301" -282894,AA Batteries (4-pack),1,3.84,11/28/19 14:29,"51 West St, San Francisco, CA 94016" -282895,Apple Airpods Headphones,1,150,11/20/19 17:11,"540 Highland St, San Francisco, CA 94016" -282896,iPhone,1,700,11/07/19 19:47,"799 Main St, New York City, NY 10001" -282897,AAA Batteries (4-pack),4,2.99,11/08/19 21:51,"340 12th St, Los Angeles, CA 90001" -282898,AA Batteries (4-pack),1,3.84,11/27/19 09:44,"482 8th St, Dallas, TX 75001" -282899,27in FHD Monitor,1,149.99,11/28/19 18:14,"887 Cedar St, San Francisco, CA 94016" -282900,Wired Headphones,1,11.99,11/08/19 18:46,"869 Park St, Boston, MA 02215" -282901,AA Batteries (4-pack),1,3.84,11/07/19 16:10,"495 Spruce St, San Francisco, CA 94016" -282902,AA Batteries (4-pack),1,3.84,11/15/19 13:55,"437 Jefferson St, Seattle, WA 98101" -282903,AA Batteries (4-pack),1,3.84,11/07/19 21:27,"61 West St, San Francisco, CA 94016" -282904,20in Monitor,1,109.99,11/01/19 19:00,"964 11th St, Austin, TX 73301" -282905,20in Monitor,1,109.99,11/22/19 10:10,"248 Dogwood St, Seattle, WA 98101" -282906,20in Monitor,1,109.99,11/06/19 09:19,"116 Jefferson St, Los Angeles, CA 90001" -282907,Apple Airpods Headphones,1,150,11/26/19 15:00,"55 Lakeview St, Atlanta, GA 30301" -282908,AA Batteries (4-pack),1,3.84,11/11/19 10:11,"368 1st St, Los Angeles, CA 90001" -282909,USB-C Charging Cable,1,11.95,11/05/19 13:25,"65 West St, Austin, TX 73301" -282910,Wired Headphones,1,11.99,11/16/19 12:42,"553 8th St, San Francisco, CA 94016" -282911,Lightning Charging Cable,1,14.95,11/18/19 16:56,"696 4th St, Seattle, WA 98101" -282912,AA Batteries (4-pack),1,3.84,11/04/19 17:21,"946 14th St, San Francisco, CA 94016" -282913,USB-C Charging Cable,1,11.95,11/16/19 20:03,"51 Chestnut St, Seattle, WA 98101" -282914,Macbook Pro Laptop,1,1700,11/24/19 10:57,"534 River St, New York City, NY 10001" -282915,27in FHD Monitor,1,149.99,11/01/19 10:54,"460 Main St, Portland, OR 97035" -282916,Lightning Charging Cable,1,14.95,11/21/19 00:53,"747 Main St, Los Angeles, CA 90001" -282917,Wired Headphones,1,11.99,11/04/19 18:45,"322 Willow St, Atlanta, GA 30301" -282918,Wired Headphones,1,11.99,11/27/19 09:16,"306 River St, Los Angeles, CA 90001" -282919,Apple Airpods Headphones,1,150,11/07/19 16:57,"444 North St, Dallas, TX 75001" -282920,Lightning Charging Cable,1,14.95,11/30/19 10:21,"452 Jackson St, San Francisco, CA 94016" -282921,AA Batteries (4-pack),1,3.84,11/29/19 22:20,"469 Meadow St, Portland, OR 97035" -282922,Bose SoundSport Headphones,1,99.99,11/08/19 22:28,"949 Meadow St, San Francisco, CA 94016" -282923,Lightning Charging Cable,1,14.95,11/20/19 16:37,"366 Main St, San Francisco, CA 94016" -282924,USB-C Charging Cable,1,11.95,11/12/19 17:56,"326 Dogwood St, Boston, MA 02215" -282925,AAA Batteries (4-pack),1,2.99,11/15/19 17:49,"137 Maple St, Boston, MA 02215" -282926,AAA Batteries (4-pack),2,2.99,11/02/19 01:51,"752 Lakeview St, Portland, OR 97035" -282926,ThinkPad Laptop,1,999.99,11/02/19 01:51,"752 Lakeview St, Portland, OR 97035" -282927,USB-C Charging Cable,1,11.95,11/15/19 17:51,"5 Lakeview St, San Francisco, CA 94016" -282928,USB-C Charging Cable,1,11.95,11/06/19 10:21,"816 South St, New York City, NY 10001" -282929,Lightning Charging Cable,1,14.95,11/25/19 12:41,"73 10th St, Boston, MA 02215" -282930,20in Monitor,1,109.99,11/26/19 19:28,"758 Lake St, New York City, NY 10001" -282931,USB-C Charging Cable,1,11.95,11/12/19 23:39,"945 Cedar St, Boston, MA 02215" -282932,Apple Airpods Headphones,1,150,11/24/19 08:16,"412 4th St, Austin, TX 73301" -282933,Wired Headphones,1,11.99,11/21/19 22:10,"457 Maple St, Boston, MA 02215" -282934,20in Monitor,1,109.99,11/24/19 08:06,"911 6th St, Boston, MA 02215" -282935,AAA Batteries (4-pack),1,2.99,11/12/19 11:03,"672 13th St, Boston, MA 02215" -282936,Lightning Charging Cable,1,14.95,11/14/19 19:04,"562 Lakeview St, Boston, MA 02215" -282937,AAA Batteries (4-pack),1,2.99,11/09/19 11:31,"931 Lincoln St, Dallas, TX 75001" -282938,AAA Batteries (4-pack),1,2.99,11/09/19 22:51,"476 Pine St, Seattle, WA 98101" -282939,27in 4K Gaming Monitor,1,389.99,11/05/19 21:53,"237 2nd St, Seattle, WA 98101" -282940,iPhone,1,700,11/16/19 12:15,"941 14th St, Los Angeles, CA 90001" -282940,Lightning Charging Cable,1,14.95,11/16/19 12:15,"941 14th St, Los Angeles, CA 90001" -282941,27in 4K Gaming Monitor,1,389.99,11/03/19 21:30,"361 Elm St, San Francisco, CA 94016" -282942,Wired Headphones,1,11.99,11/23/19 14:49,"723 West St, Los Angeles, CA 90001" -282943,USB-C Charging Cable,2,11.95,11/09/19 13:35,"464 Center St, Dallas, TX 75001" -282944,Apple Airpods Headphones,1,150,11/19/19 10:38,"299 Pine St, Austin, TX 73301" -282945,Wired Headphones,1,11.99,11/26/19 18:54,"721 Church St, San Francisco, CA 94016" -282946,Apple Airpods Headphones,1,150,11/15/19 23:45,"313 11th St, Atlanta, GA 30301" -282947,27in FHD Monitor,1,149.99,11/15/19 18:14,"674 Lake St, Boston, MA 02215" -282948,27in 4K Gaming Monitor,1,389.99,11/19/19 21:35,"362 Forest St, Dallas, TX 75001" -282949,Apple Airpods Headphones,1,150,11/12/19 22:53,"386 Pine St, Dallas, TX 75001" -282950,AAA Batteries (4-pack),2,2.99,11/09/19 00:25,"923 Cedar St, New York City, NY 10001" -282951,Wired Headphones,1,11.99,11/25/19 11:06,"145 14th St, Boston, MA 02215" -282952,Apple Airpods Headphones,1,150,11/25/19 13:40,"94 South St, New York City, NY 10001" -282953,Bose SoundSport Headphones,1,99.99,11/26/19 17:34,"191 Park St, Los Angeles, CA 90001" -282954,AAA Batteries (4-pack),1,2.99,11/02/19 20:32,"716 Walnut St, Seattle, WA 98101" -282955,AA Batteries (4-pack),1,3.84,11/29/19 16:00,"317 River St, New York City, NY 10001" -282956,AAA Batteries (4-pack),1,2.99,11/28/19 14:07,"487 Adams St, Boston, MA 02215" -282957,AAA Batteries (4-pack),1,2.99,11/15/19 16:39,"458 Jackson St, San Francisco, CA 94016" -282958,USB-C Charging Cable,1,11.95,11/17/19 11:27,"611 Ridge St, San Francisco, CA 94016" -282959,ThinkPad Laptop,1,999.99,11/12/19 21:11,"281 Park St, Los Angeles, CA 90001" -282960,Lightning Charging Cable,1,14.95,11/30/19 23:29,"190 Madison St, Los Angeles, CA 90001" -282961,ThinkPad Laptop,1,999.99,11/07/19 14:40,"465 Highland St, Atlanta, GA 30301" -282962,AAA Batteries (4-pack),3,2.99,11/12/19 19:57,"930 Adams St, Los Angeles, CA 90001" -282963,AAA Batteries (4-pack),1,2.99,11/04/19 17:09,"736 West St, San Francisco, CA 94016" -282964,Wired Headphones,1,11.99,11/03/19 16:33,"912 5th St, New York City, NY 10001" -282965,AA Batteries (4-pack),2,3.84,11/18/19 18:26,"313 14th St, Portland, ME 04101" -282966,Wired Headphones,1,11.99,11/21/19 11:09,"328 Cherry St, Boston, MA 02215" -282967,AA Batteries (4-pack),1,3.84,11/27/19 22:43,"493 Chestnut St, New York City, NY 10001" -282968,AAA Batteries (4-pack),1,2.99,11/17/19 08:15,"382 Dogwood St, Portland, OR 97035" -282969,USB-C Charging Cable,1,11.95,11/01/19 21:25,"640 6th St, San Francisco, CA 94016" -282970,iPhone,1,700,11/02/19 15:54,"918 1st St, New York City, NY 10001" -282971,27in 4K Gaming Monitor,1,389.99,11/10/19 12:23,"943 5th St, Portland, OR 97035" -282972,Flatscreen TV,1,300,11/26/19 22:23,"474 Lakeview St, Seattle, WA 98101" -282973,Wired Headphones,1,11.99,11/11/19 20:13,"481 9th St, Dallas, TX 75001" -282974,iPhone,1,700,11/26/19 16:05,"18 8th St, San Francisco, CA 94016" -282975,USB-C Charging Cable,1,11.95,11/27/19 13:49,"668 Pine St, Austin, TX 73301" -282976,USB-C Charging Cable,1,11.95,11/15/19 12:34,"822 Main St, San Francisco, CA 94016" -282977,Apple Airpods Headphones,1,150,11/10/19 01:26,"411 12th St, Boston, MA 02215" -282978,Lightning Charging Cable,1,14.95,11/05/19 13:04,"942 Walnut St, San Francisco, CA 94016" -282979,AA Batteries (4-pack),1,3.84,11/13/19 10:25,"43 Johnson St, New York City, NY 10001" -282980,AAA Batteries (4-pack),3,2.99,11/23/19 08:09,"716 Hickory St, San Francisco, CA 94016" -282981,Apple Airpods Headphones,1,150,11/23/19 12:32,"81 12th St, Los Angeles, CA 90001" -282982,AAA Batteries (4-pack),1,2.99,11/24/19 08:21,"114 12th St, New York City, NY 10001" -282983,Bose SoundSport Headphones,1,99.99,11/09/19 22:56,"573 Pine St, Atlanta, GA 30301" -282984,Flatscreen TV,1,300,11/23/19 16:58,"905 Willow St, Boston, MA 02215" -282985,USB-C Charging Cable,1,11.95,11/18/19 15:14,"565 West St, Atlanta, GA 30301" -282986,AAA Batteries (4-pack),1,2.99,11/14/19 21:46,"529 2nd St, San Francisco, CA 94016" -282987,AA Batteries (4-pack),1,3.84,11/13/19 19:32,"209 11th St, Los Angeles, CA 90001" -282988,34in Ultrawide Monitor,1,379.99,11/03/19 06:52,"723 10th St, New York City, NY 10001" -282989,Macbook Pro Laptop,1,1700,11/09/19 21:19,"214 7th St, New York City, NY 10001" -282990,Lightning Charging Cable,1,14.95,11/09/19 08:32,"795 Church St, Seattle, WA 98101" -282991,Bose SoundSport Headphones,1,99.99,11/12/19 12:59,"863 Elm St, San Francisco, CA 94016" -282992,USB-C Charging Cable,1,11.95,11/12/19 19:48,"503 8th St, Dallas, TX 75001" -282993,Lightning Charging Cable,1,14.95,11/25/19 19:55,"232 Dogwood St, Los Angeles, CA 90001" -282994,iPhone,1,700,11/02/19 14:46,"183 1st St, San Francisco, CA 94016" -282995,20in Monitor,1,109.99,11/21/19 17:54,"112 11th St, New York City, NY 10001" -282996,Wired Headphones,1,11.99,11/01/19 11:37,"806 14th St, Dallas, TX 75001" -282997,Bose SoundSport Headphones,1,99.99,11/25/19 12:25,"64 Walnut St, Atlanta, GA 30301" -282998,27in 4K Gaming Monitor,1,389.99,11/29/19 14:34,"3 Highland St, San Francisco, CA 94016" -282999,Lightning Charging Cable,1,14.95,11/05/19 19:40,"957 Lakeview St, San Francisco, CA 94016" -283000,Macbook Pro Laptop,1,1700,11/09/19 09:54,"611 Wilson St, San Francisco, CA 94016" -283001,27in 4K Gaming Monitor,1,389.99,11/19/19 21:55,"875 4th St, San Francisco, CA 94016" -283002,AA Batteries (4-pack),1,3.84,11/02/19 13:49,"563 Church St, Boston, MA 02215" -283003,20in Monitor,1,109.99,11/10/19 13:03,"470 Meadow St, Los Angeles, CA 90001" -283004,Apple Airpods Headphones,1,150,11/13/19 22:57,"489 Washington St, San Francisco, CA 94016" -283005,Google Phone,1,600,11/29/19 21:11,"506 Highland St, New York City, NY 10001" -283005,USB-C Charging Cable,2,11.95,11/29/19 21:11,"506 Highland St, New York City, NY 10001" -283006,Wired Headphones,1,11.99,11/24/19 17:12,"767 8th St, San Francisco, CA 94016" -283007,Bose SoundSport Headphones,1,99.99,11/11/19 06:28,"521 Lakeview St, New York City, NY 10001" -283008,AAA Batteries (4-pack),4,2.99,11/06/19 21:10,"938 Adams St, Seattle, WA 98101" -283009,USB-C Charging Cable,1,11.95,11/10/19 16:04,"538 Hill St, Dallas, TX 75001" -283010,Wired Headphones,1,11.99,11/14/19 16:26,"414 7th St, Atlanta, GA 30301" -283011,AAA Batteries (4-pack),1,2.99,11/22/19 21:35,"430 Lakeview St, Portland, OR 97035" -283012,Apple Airpods Headphones,1,150,11/05/19 08:02,"629 Washington St, Los Angeles, CA 90001" -283013,USB-C Charging Cable,1,11.95,11/30/19 18:04,"219 North St, New York City, NY 10001" -283014,ThinkPad Laptop,1,999.99,11/17/19 11:49,"660 Spruce St, Atlanta, GA 30301" -283015,AAA Batteries (4-pack),2,2.99,11/09/19 12:34,"31 Highland St, San Francisco, CA 94016" -283016,iPhone,1,700,11/02/19 16:07,"579 6th St, San Francisco, CA 94016" -283016,Lightning Charging Cable,1,14.95,11/02/19 16:07,"579 6th St, San Francisco, CA 94016" -283016,AA Batteries (4-pack),1,3.84,11/02/19 16:07,"579 6th St, San Francisco, CA 94016" -283017,USB-C Charging Cable,1,11.95,11/26/19 07:35,"661 Dogwood St, Austin, TX 73301" -283018,Lightning Charging Cable,1,14.95,11/19/19 16:41,"540 8th St, Los Angeles, CA 90001" -283019,AAA Batteries (4-pack),1,2.99,11/16/19 17:31,"96 Highland St, San Francisco, CA 94016" -283020,AA Batteries (4-pack),2,3.84,11/14/19 12:24,"56 West St, Atlanta, GA 30301" -283021,Flatscreen TV,1,300,11/20/19 12:38,"991 Main St, San Francisco, CA 94016" -283022,27in 4K Gaming Monitor,1,389.99,11/21/19 13:58,"690 West St, Austin, TX 73301" -283023,Apple Airpods Headphones,1,150,11/02/19 23:54,"111 North St, Boston, MA 02215" -283024,AA Batteries (4-pack),2,3.84,11/27/19 19:32,"609 North St, Portland, OR 97035" -283025,Apple Airpods Headphones,1,150,11/22/19 22:23,"187 1st St, Seattle, WA 98101" -283026,iPhone,1,700,11/09/19 18:30,"281 Cedar St, San Francisco, CA 94016" -283027,Wired Headphones,1,11.99,11/27/19 10:04,"342 Main St, Dallas, TX 75001" -283028,iPhone,1,700,11/26/19 19:53,"528 Church St, New York City, NY 10001" -283029,34in Ultrawide Monitor,1,379.99,11/13/19 09:56,"803 South St, New York City, NY 10001" -283030,USB-C Charging Cable,1,11.95,11/02/19 12:46,"938 West St, San Francisco, CA 94016" -283031,20in Monitor,1,109.99,11/13/19 07:44,"849 Hickory St, Seattle, WA 98101" -283032,USB-C Charging Cable,1,11.95,11/07/19 05:15,"706 11th St, San Francisco, CA 94016" -283033,Bose SoundSport Headphones,2,99.99,11/10/19 12:46,"225 Lake St, New York City, NY 10001" -283034,Apple Airpods Headphones,1,150,11/14/19 19:49,"657 12th St, San Francisco, CA 94016" -283035,USB-C Charging Cable,1,11.95,11/19/19 12:27,"353 Hill St, Atlanta, GA 30301" -283036,Lightning Charging Cable,1,14.95,11/24/19 20:06,"370 Cedar St, Boston, MA 02215" -283037,USB-C Charging Cable,1,11.95,11/15/19 05:11,"994 6th St, Austin, TX 73301" -283038,34in Ultrawide Monitor,1,379.99,11/10/19 08:31,"296 Hickory St, Seattle, WA 98101" -283039,Lightning Charging Cable,1,14.95,11/09/19 14:42,"385 Wilson St, Los Angeles, CA 90001" -283040,Bose SoundSport Headphones,1,99.99,11/26/19 10:26,"275 Madison St, Boston, MA 02215" -283041,Bose SoundSport Headphones,1,99.99,11/30/19 13:04,"568 Hill St, Portland, ME 04101" -283042,AA Batteries (4-pack),1,3.84,11/26/19 10:04,"911 Wilson St, Seattle, WA 98101" -283043,Bose SoundSport Headphones,1,99.99,11/11/19 17:18,"879 Main St, Los Angeles, CA 90001" -283044,ThinkPad Laptop,1,999.99,11/27/19 13:05,"113 Church St, Portland, OR 97035" -283045,Google Phone,1,600,11/18/19 21:48,"484 West St, San Francisco, CA 94016" -283046,Lightning Charging Cable,1,14.95,11/26/19 18:27,"544 10th St, San Francisco, CA 94016" -,,,,, -283047,27in FHD Monitor,1,149.99,11/06/19 19:14,"625 Wilson St, Portland, OR 97035" -283047,ThinkPad Laptop,1,999.99,11/06/19 19:14,"625 Wilson St, Portland, OR 97035" -283048,Bose SoundSport Headphones,1,99.99,11/05/19 09:29,"637 14th St, Austin, TX 73301" -283049,Lightning Charging Cable,1,14.95,11/04/19 20:41,"151 River St, Seattle, WA 98101" -283050,Apple Airpods Headphones,1,150,11/16/19 08:54,"625 Jefferson St, Los Angeles, CA 90001" -283051,AAA Batteries (4-pack),1,2.99,11/30/19 16:31,"294 North St, Boston, MA 02215" -283052,Lightning Charging Cable,1,14.95,11/24/19 14:14,"722 Spruce St, San Francisco, CA 94016" -283053,Apple Airpods Headphones,1,150,11/09/19 12:47,"339 Chestnut St, San Francisco, CA 94016" -283054,AA Batteries (4-pack),1,3.84,11/18/19 17:29,"164 12th St, San Francisco, CA 94016" -283055,Vareebadd Phone,1,400,11/05/19 00:54,"353 Washington St, Portland, OR 97035" -283056,AAA Batteries (4-pack),1,2.99,11/27/19 13:09,"197 2nd St, Seattle, WA 98101" -283057,Apple Airpods Headphones,1,150,11/12/19 18:25,"279 Madison St, Los Angeles, CA 90001" -283058,34in Ultrawide Monitor,1,379.99,11/13/19 14:18,"912 River St, Boston, MA 02215" -283059,Wired Headphones,1,11.99,11/29/19 13:11,"51 4th St, San Francisco, CA 94016" -283060,Bose SoundSport Headphones,1,99.99,11/09/19 12:26,"813 8th St, New York City, NY 10001" -283061,Lightning Charging Cable,1,14.95,11/26/19 17:58,"932 9th St, Seattle, WA 98101" -283062,Vareebadd Phone,1,400,11/23/19 13:42,"735 Walnut St, Seattle, WA 98101" -283063,Flatscreen TV,1,300,11/11/19 11:10,"145 Dogwood St, San Francisco, CA 94016" -283064,AA Batteries (4-pack),1,3.84,11/22/19 16:02,"826 Elm St, New York City, NY 10001" -283065,USB-C Charging Cable,1,11.95,11/01/19 06:40,"112 4th St, Atlanta, GA 30301" -283066,Google Phone,1,600,11/26/19 06:03,"59 5th St, Portland, OR 97035" -283067,AAA Batteries (4-pack),2,2.99,11/13/19 12:37,"740 Lake St, Dallas, TX 75001" -283068,USB-C Charging Cable,1,11.95,11/06/19 23:22,"374 Jackson St, Los Angeles, CA 90001" -283069,Wired Headphones,1,11.99,11/28/19 12:26,"924 Highland St, Los Angeles, CA 90001" -283070,20in Monitor,1,109.99,11/19/19 20:48,"104 Adams St, Boston, MA 02215" -283071,USB-C Charging Cable,1,11.95,11/25/19 11:02,"730 Highland St, Dallas, TX 75001" -283072,AAA Batteries (4-pack),2,2.99,11/15/19 17:39,"407 Cedar St, New York City, NY 10001" -283073,Lightning Charging Cable,1,14.95,11/25/19 14:21,"544 Pine St, Boston, MA 02215" -283074,Apple Airpods Headphones,1,150,11/04/19 19:38,"828 Park St, San Francisco, CA 94016" -283075,Apple Airpods Headphones,1,150,11/11/19 00:22,"302 Wilson St, Los Angeles, CA 90001" -283076,USB-C Charging Cable,1,11.95,11/27/19 11:18,"294 14th St, New York City, NY 10001" -283077,Lightning Charging Cable,1,14.95,11/23/19 09:52,"156 Sunset St, Portland, OR 97035" -283078,20in Monitor,1,109.99,11/17/19 22:35,"765 Adams St, New York City, NY 10001" -283079,Apple Airpods Headphones,1,150,11/09/19 11:27,"453 8th St, Los Angeles, CA 90001" -283080,Bose SoundSport Headphones,1,99.99,11/12/19 19:55,"634 Washington St, San Francisco, CA 94016" -283081,Lightning Charging Cable,1,14.95,11/29/19 09:31,"973 Meadow St, Boston, MA 02215" -283082,USB-C Charging Cable,1,11.95,11/09/19 22:26,"171 Cedar St, Seattle, WA 98101" -283083,USB-C Charging Cable,1,11.95,11/17/19 15:50,"378 South St, Los Angeles, CA 90001" -283084,Wired Headphones,1,11.99,11/24/19 16:29,"259 Maple St, San Francisco, CA 94016" -283085,AA Batteries (4-pack),1,3.84,11/07/19 21:31,"759 Pine St, Boston, MA 02215" -283086,Apple Airpods Headphones,1,150,11/08/19 09:32,"19 8th St, Boston, MA 02215" -283087,AAA Batteries (4-pack),2,2.99,11/04/19 03:39,"510 Meadow St, Los Angeles, CA 90001" -283088,Wired Headphones,1,11.99,11/08/19 11:03,"878 Jefferson St, Portland, OR 97035" -283089,AAA Batteries (4-pack),1,2.99,11/04/19 10:35,"781 Ridge St, San Francisco, CA 94016" -283090,AAA Batteries (4-pack),1,2.99,11/19/19 16:57,"457 14th St, New York City, NY 10001" -283091,Lightning Charging Cable,1,14.95,11/16/19 11:54,"64 Maple St, New York City, NY 10001" -283092,Wired Headphones,1,11.99,11/10/19 11:22,"38 Highland St, Austin, TX 73301" -283093,27in FHD Monitor,1,149.99,11/17/19 20:55,"284 Hickory St, San Francisco, CA 94016" -283094,AAA Batteries (4-pack),1,2.99,11/29/19 08:41,"192 9th St, San Francisco, CA 94016" -283095,Flatscreen TV,1,300,12/01/19 01:24,"9 Chestnut St, Los Angeles, CA 90001" -283096,Lightning Charging Cable,1,14.95,11/30/19 15:14,"495 Main St, Atlanta, GA 30301" -283097,Bose SoundSport Headphones,1,99.99,11/14/19 10:05,"495 Wilson St, Boston, MA 02215" -283098,AAA Batteries (4-pack),1,2.99,11/27/19 20:46,"931 14th St, Los Angeles, CA 90001" -283099,AAA Batteries (4-pack),1,2.99,11/21/19 13:47,"322 Meadow St, San Francisco, CA 94016" -283100,Google Phone,1,600,11/09/19 13:10,"137 Johnson St, Seattle, WA 98101" -283100,USB-C Charging Cable,1,11.95,11/09/19 13:10,"137 Johnson St, Seattle, WA 98101" -283101,20in Monitor,1,109.99,11/25/19 09:06,"156 Maple St, Atlanta, GA 30301" -283102,Bose SoundSport Headphones,1,99.99,11/09/19 18:13,"937 Spruce St, New York City, NY 10001" -283103,USB-C Charging Cable,1,11.95,11/14/19 19:14,"924 13th St, New York City, NY 10001" -283104,AA Batteries (4-pack),2,3.84,11/12/19 13:07,"637 Highland St, San Francisco, CA 94016" -283105,AA Batteries (4-pack),1,3.84,11/28/19 17:03,"220 Lake St, Portland, OR 97035" -283106,ThinkPad Laptop,1,999.99,11/20/19 12:32,"50 Hickory St, Boston, MA 02215" -283107,20in Monitor,1,109.99,11/24/19 07:49,"608 5th St, San Francisco, CA 94016" -283108,Lightning Charging Cable,1,14.95,11/25/19 11:24,"845 Pine St, Los Angeles, CA 90001" -283109,Bose SoundSport Headphones,1,99.99,11/11/19 22:11,"948 Dogwood St, San Francisco, CA 94016" -283110,Bose SoundSport Headphones,1,99.99,11/09/19 12:26,"887 Chestnut St, New York City, NY 10001" -283111,AAA Batteries (4-pack),1,2.99,11/15/19 18:03,"35 8th St, Seattle, WA 98101" -283112,Apple Airpods Headphones,1,150,11/24/19 10:52,"537 11th St, Boston, MA 02215" -283113,Wired Headphones,1,11.99,11/03/19 12:39,"688 Maple St, Boston, MA 02215" -283114,27in 4K Gaming Monitor,1,389.99,11/15/19 15:22,"387 Wilson St, New York City, NY 10001" -283115,Lightning Charging Cable,1,14.95,11/25/19 11:07,"819 7th St, New York City, NY 10001" -283116,Wired Headphones,1,11.99,11/10/19 22:41,"78 Pine St, Seattle, WA 98101" -283117,Macbook Pro Laptop,1,1700,11/28/19 13:16,"273 8th St, Los Angeles, CA 90001" -283118,Google Phone,1,600,11/20/19 21:31,"409 Willow St, Los Angeles, CA 90001" -283119,Apple Airpods Headphones,1,150,11/15/19 19:56,"711 Highland St, Austin, TX 73301" -283120,Flatscreen TV,1,300,11/20/19 20:34,"214 Dogwood St, Dallas, TX 75001" -283121,Bose SoundSport Headphones,1,99.99,11/03/19 11:42,"498 Chestnut St, San Francisco, CA 94016" -283122,AAA Batteries (4-pack),1,2.99,11/09/19 07:10,"235 Center St, San Francisco, CA 94016" -283123,AA Batteries (4-pack),1,3.84,11/30/19 22:07,"990 Hickory St, Los Angeles, CA 90001" -283124,AA Batteries (4-pack),1,3.84,11/17/19 17:47,"672 6th St, Los Angeles, CA 90001" -283125,Apple Airpods Headphones,1,150,11/17/19 20:19,"999 West St, Portland, OR 97035" -283126,Wired Headphones,1,11.99,11/23/19 18:59,"82 7th St, Dallas, TX 75001" -283127,ThinkPad Laptop,1,999.99,11/01/19 21:00,"758 Sunset St, San Francisco, CA 94016" -283128,27in FHD Monitor,1,149.99,11/14/19 13:32,"692 Cherry St, Boston, MA 02215" -283129,27in FHD Monitor,1,149.99,11/02/19 21:13,"500 Lincoln St, San Francisco, CA 94016" -283130,Bose SoundSport Headphones,1,99.99,11/08/19 06:37,"121 Wilson St, Seattle, WA 98101" -283131,Wired Headphones,1,11.99,11/24/19 19:11,"292 Hickory St, Austin, TX 73301" -283132,Wired Headphones,1,11.99,11/29/19 15:54,"858 13th St, San Francisco, CA 94016" -283133,Wired Headphones,1,11.99,11/16/19 17:31,"518 Highland St, Portland, OR 97035" -283134,USB-C Charging Cable,1,11.95,11/23/19 01:05,"677 West St, Boston, MA 02215" -283135,Wired Headphones,1,11.99,11/30/19 20:21,"436 Main St, Boston, MA 02215" -283136,AAA Batteries (4-pack),1,2.99,11/16/19 11:34,"36 Forest St, San Francisco, CA 94016" -283137,USB-C Charging Cable,2,11.95,11/22/19 11:35,"702 Walnut St, Atlanta, GA 30301" -283138,Bose SoundSport Headphones,1,99.99,11/26/19 21:47,"542 12th St, San Francisco, CA 94016" -283139,iPhone,1,700,11/09/19 17:08,"575 South St, Austin, TX 73301" -283140,USB-C Charging Cable,1,11.95,11/08/19 12:14,"914 6th St, Los Angeles, CA 90001" -283141,Lightning Charging Cable,1,14.95,11/16/19 14:23,"317 South St, Portland, ME 04101" -283142,27in FHD Monitor,1,149.99,11/05/19 13:06,"61 Jackson St, Dallas, TX 75001" -283143,Lightning Charging Cable,1,14.95,11/23/19 22:33,"844 Willow St, Austin, TX 73301" -283144,Lightning Charging Cable,1,14.95,11/07/19 17:47,"878 5th St, San Francisco, CA 94016" -283145,Wired Headphones,1,11.99,11/29/19 16:43,"796 Jackson St, Boston, MA 02215" -283146,Lightning Charging Cable,1,14.95,11/05/19 15:04,"81 11th St, San Francisco, CA 94016" -283147,Bose SoundSport Headphones,1,99.99,11/08/19 04:11,"291 Elm St, Austin, TX 73301" -283148,34in Ultrawide Monitor,1,379.99,11/13/19 06:30,"89 Park St, Seattle, WA 98101" -283149,AAA Batteries (4-pack),1,2.99,11/26/19 07:23,"661 8th St, San Francisco, CA 94016" -283150,27in 4K Gaming Monitor,1,389.99,11/08/19 02:00,"498 4th St, Boston, MA 02215" -283151,34in Ultrawide Monitor,1,379.99,11/07/19 16:29,"286 Washington St, Boston, MA 02215" -283152,Bose SoundSport Headphones,1,99.99,11/09/19 09:42,"989 Park St, Atlanta, GA 30301" -283153,Bose SoundSport Headphones,1,99.99,11/05/19 05:55,"979 Park St, New York City, NY 10001" -283154,Wired Headphones,1,11.99,11/09/19 12:21,"57 Forest St, New York City, NY 10001" -283155,AA Batteries (4-pack),1,3.84,11/29/19 19:32,"586 Park St, San Francisco, CA 94016" -283156,AAA Batteries (4-pack),1,2.99,11/15/19 23:33,"603 West St, New York City, NY 10001" -283157,Wired Headphones,1,11.99,11/03/19 23:22,"725 Pine St, Seattle, WA 98101" -283158,Lightning Charging Cable,1,14.95,11/11/19 15:13,"458 Lake St, Seattle, WA 98101" -283159,AAA Batteries (4-pack),2,2.99,11/29/19 00:08,"337 Meadow St, Los Angeles, CA 90001" -283160,Bose SoundSport Headphones,1,99.99,11/09/19 19:07,"606 Washington St, San Francisco, CA 94016" -283161,Apple Airpods Headphones,1,150,11/20/19 09:57,"805 8th St, Atlanta, GA 30301" -283162,Google Phone,1,600,11/18/19 19:02,"589 Cedar St, Seattle, WA 98101" -283163,Wired Headphones,1,11.99,11/05/19 19:06,"651 Lake St, New York City, NY 10001" -283164,Bose SoundSport Headphones,1,99.99,11/29/19 15:38,"688 Jackson St, Boston, MA 02215" -283165,AA Batteries (4-pack),1,3.84,11/08/19 00:24,"878 North St, Boston, MA 02215" -283166,USB-C Charging Cable,1,11.95,11/26/19 19:36,"135 Highland St, Seattle, WA 98101" -283167,27in 4K Gaming Monitor,1,389.99,11/16/19 10:35,"87 Sunset St, Los Angeles, CA 90001" -283168,USB-C Charging Cable,1,11.95,11/14/19 14:19,"133 Maple St, Atlanta, GA 30301" -283169,Google Phone,1,600,11/15/19 21:20,"232 10th St, Boston, MA 02215" -283170,Google Phone,1,600,11/22/19 10:56,"593 Highland St, San Francisco, CA 94016" -283171,AA Batteries (4-pack),1,3.84,11/17/19 18:32,"827 12th St, Austin, TX 73301" -283172,27in 4K Gaming Monitor,1,389.99,11/10/19 20:05,"790 Maple St, Los Angeles, CA 90001" -283173,USB-C Charging Cable,1,11.95,11/06/19 18:17,"321 Park St, Atlanta, GA 30301" -283174,Bose SoundSport Headphones,1,99.99,11/12/19 06:04,"775 Dogwood St, Dallas, TX 75001" -283175,Lightning Charging Cable,1,14.95,11/11/19 13:38,"2 2nd St, Dallas, TX 75001" -283176,AA Batteries (4-pack),1,3.84,11/17/19 18:17,"811 Highland St, San Francisco, CA 94016" -283177,34in Ultrawide Monitor,1,379.99,11/27/19 10:05,"440 11th St, Los Angeles, CA 90001" -283178,USB-C Charging Cable,1,11.95,11/10/19 19:52,"394 Adams St, Seattle, WA 98101" -283179,Apple Airpods Headphones,1,150,11/09/19 21:08,"869 Adams St, Atlanta, GA 30301" -283180,Google Phone,1,600,11/17/19 09:56,"190 11th St, Los Angeles, CA 90001" -283181,Google Phone,1,600,11/11/19 14:30,"309 2nd St, Boston, MA 02215" -283182,Wired Headphones,1,11.99,11/19/19 15:17,"183 Maple St, New York City, NY 10001" -283183,Apple Airpods Headphones,1,150,11/11/19 09:41,"371 Wilson St, San Francisco, CA 94016" -283184,AAA Batteries (4-pack),2,2.99,11/19/19 19:03,"986 Pine St, Los Angeles, CA 90001" -283185,AAA Batteries (4-pack),2,2.99,11/06/19 21:58,"285 8th St, Boston, MA 02215" -283186,Wired Headphones,1,11.99,11/17/19 17:41,"345 Ridge St, Portland, OR 97035" -283187,Lightning Charging Cable,1,14.95,11/26/19 14:04,"79 Willow St, Los Angeles, CA 90001" -283188,Wired Headphones,1,11.99,11/14/19 17:33,"529 1st St, San Francisco, CA 94016" -283189,USB-C Charging Cable,1,11.95,11/23/19 11:19,"990 14th St, Boston, MA 02215" -283190,AAA Batteries (4-pack),2,2.99,11/17/19 12:35,"69 Elm St, Seattle, WA 98101" -283191,AAA Batteries (4-pack),2,2.99,11/04/19 13:58,"160 Pine St, Dallas, TX 75001" -283192,27in 4K Gaming Monitor,1,389.99,11/17/19 20:00,"470 Cedar St, Boston, MA 02215" -283193,USB-C Charging Cable,1,11.95,11/12/19 19:40,"549 Cedar St, Los Angeles, CA 90001" -283194,AAA Batteries (4-pack),2,2.99,11/18/19 12:19,"13 Lakeview St, Dallas, TX 75001" -283195,27in 4K Gaming Monitor,1,389.99,11/24/19 17:36,"704 Highland St, Atlanta, GA 30301" -283196,AA Batteries (4-pack),1,3.84,11/29/19 06:38,"2 6th St, Seattle, WA 98101" -283197,Google Phone,1,600,11/24/19 17:54,"460 14th St, Los Angeles, CA 90001" -283198,Flatscreen TV,1,300,11/27/19 12:26,"700 Dogwood St, San Francisco, CA 94016" -283199,AA Batteries (4-pack),1,3.84,11/04/19 10:24,"816 South St, Portland, OR 97035" -283200,iPhone,1,700,11/17/19 13:39,"806 Cedar St, Los Angeles, CA 90001" -283201,AAA Batteries (4-pack),1,2.99,11/05/19 11:41,"894 9th St, Boston, MA 02215" -283202,Bose SoundSport Headphones,1,99.99,11/11/19 14:31,"516 5th St, Austin, TX 73301" -283203,Apple Airpods Headphones,1,150,11/07/19 12:23,"300 North St, New York City, NY 10001" -283204,USB-C Charging Cable,1,11.95,11/15/19 19:03,"747 Lake St, Los Angeles, CA 90001" -283205,USB-C Charging Cable,1,11.95,11/11/19 15:10,"410 West St, San Francisco, CA 94016" -283206,AA Batteries (4-pack),1,3.84,11/22/19 15:12,"408 Church St, Dallas, TX 75001" -283207,Bose SoundSport Headphones,1,99.99,11/07/19 23:09,"985 Elm St, New York City, NY 10001" -283208,AA Batteries (4-pack),1,3.84,11/06/19 13:18,"862 Elm St, New York City, NY 10001" -283209,AAA Batteries (4-pack),1,2.99,11/05/19 17:20,"768 Elm St, Boston, MA 02215" -283210,Apple Airpods Headphones,1,150,11/23/19 15:10,"419 13th St, Atlanta, GA 30301" -283211,Apple Airpods Headphones,1,150,11/28/19 10:40,"398 Hill St, San Francisco, CA 94016" -283212,AA Batteries (4-pack),1,3.84,11/18/19 14:29,"33 10th St, Boston, MA 02215" -283213,Bose SoundSport Headphones,1,99.99,11/04/19 21:01,"61 Pine St, San Francisco, CA 94016" -283214,USB-C Charging Cable,1,11.95,11/02/19 11:13,"763 Wilson St, San Francisco, CA 94016" -283215,Lightning Charging Cable,1,14.95,11/24/19 08:00,"861 Center St, Atlanta, GA 30301" -283216,34in Ultrawide Monitor,1,379.99,11/12/19 20:02,"626 Adams St, Seattle, WA 98101" -283217,Flatscreen TV,1,300,11/17/19 17:53,"726 Maple St, San Francisco, CA 94016" -283218,Lightning Charging Cable,1,14.95,11/03/19 12:14,"996 Walnut St, Portland, OR 97035" -283219,AA Batteries (4-pack),1,3.84,11/24/19 17:30,"810 Cedar St, Seattle, WA 98101" -283220,Lightning Charging Cable,1,14.95,11/14/19 12:21,"948 13th St, Los Angeles, CA 90001" -283221,Wired Headphones,1,11.99,11/20/19 20:42,"784 13th St, Seattle, WA 98101" -283222,Lightning Charging Cable,1,14.95,11/24/19 23:42,"483 Dogwood St, Austin, TX 73301" -283223,Lightning Charging Cable,1,14.95,11/18/19 21:08,"370 Forest St, Dallas, TX 75001" -283224,AA Batteries (4-pack),1,3.84,11/15/19 10:50,"703 Ridge St, San Francisco, CA 94016" -283225,AA Batteries (4-pack),1,3.84,11/02/19 12:50,"917 Main St, Portland, OR 97035" -283226,AAA Batteries (4-pack),1,2.99,11/14/19 01:09,"99 9th St, Los Angeles, CA 90001" -283227,USB-C Charging Cable,1,11.95,11/08/19 18:45,"786 Cedar St, Portland, ME 04101" -283228,Bose SoundSport Headphones,1,99.99,11/21/19 14:19,"837 Maple St, San Francisco, CA 94016" -283229,34in Ultrawide Monitor,1,379.99,11/04/19 19:11,"978 Ridge St, Dallas, TX 75001" -283230,AA Batteries (4-pack),1,3.84,11/16/19 12:00,"809 1st St, Dallas, TX 75001" -283231,USB-C Charging Cable,1,11.95,11/03/19 00:22,"462 Cedar St, San Francisco, CA 94016" -283232,AAA Batteries (4-pack),1,2.99,11/07/19 08:49,"113 13th St, Seattle, WA 98101" -283232,USB-C Charging Cable,1,11.95,11/07/19 08:49,"113 13th St, Seattle, WA 98101" -283233,USB-C Charging Cable,1,11.95,11/28/19 19:13,"411 Walnut St, San Francisco, CA 94016" -283234,AAA Batteries (4-pack),1,2.99,11/09/19 18:26,"476 10th St, Seattle, WA 98101" -283235,USB-C Charging Cable,1,11.95,11/13/19 21:44,"873 Maple St, Boston, MA 02215" -283236,20in Monitor,1,109.99,11/05/19 13:26,"740 4th St, Boston, MA 02215" -283237,Apple Airpods Headphones,1,150,11/19/19 13:37,"971 9th St, Seattle, WA 98101" -283238,Lightning Charging Cable,1,14.95,11/19/19 09:37,"95 Hill St, Boston, MA 02215" -283238,Lightning Charging Cable,2,14.95,11/19/19 09:37,"95 Hill St, Boston, MA 02215" -283239,Apple Airpods Headphones,1,150,11/22/19 12:32,"46 Adams St, New York City, NY 10001" -283240,Macbook Pro Laptop,1,1700,11/10/19 06:26,"580 Walnut St, San Francisco, CA 94016" -283241,Apple Airpods Headphones,1,150,11/27/19 23:32,"114 Ridge St, New York City, NY 10001" -283242,Macbook Pro Laptop,1,1700,11/02/19 18:21,"162 Washington St, Boston, MA 02215" -283243,USB-C Charging Cable,1,11.95,11/29/19 16:36,"14 10th St, San Francisco, CA 94016" -283244,ThinkPad Laptop,1,999.99,11/13/19 19:07,"505 Lincoln St, San Francisco, CA 94016" -283245,AA Batteries (4-pack),1,3.84,11/26/19 19:34,"973 Church St, New York City, NY 10001" -283246,Apple Airpods Headphones,1,150,11/20/19 20:40,"777 10th St, Portland, OR 97035" -283247,Wired Headphones,1,11.99,11/25/19 09:10,"862 Lincoln St, Dallas, TX 75001" -283248,iPhone,1,700,11/05/19 11:13,"378 Jefferson St, San Francisco, CA 94016" -283248,Lightning Charging Cable,1,14.95,11/05/19 11:13,"378 Jefferson St, San Francisco, CA 94016" -283249,USB-C Charging Cable,1,11.95,11/18/19 18:56,"231 Church St, Atlanta, GA 30301" -283250,iPhone,1,700,11/19/19 21:05,"614 Wilson St, Portland, OR 97035" -283251,Wired Headphones,1,11.99,11/26/19 19:39,"309 Lincoln St, Seattle, WA 98101" -283252,USB-C Charging Cable,1,11.95,11/16/19 18:42,"268 Cherry St, Atlanta, GA 30301" -283253,Google Phone,1,600,11/02/19 16:22,"216 Cherry St, New York City, NY 10001" -283253,USB-C Charging Cable,1,11.95,11/02/19 16:22,"216 Cherry St, New York City, NY 10001" -283254,Lightning Charging Cable,1,14.95,11/05/19 14:38,"134 Spruce St, Seattle, WA 98101" -283255,AAA Batteries (4-pack),1,2.99,11/10/19 12:38,"366 Spruce St, Los Angeles, CA 90001" -283256,Bose SoundSport Headphones,1,99.99,11/03/19 10:41,"185 Johnson St, Austin, TX 73301" -283257,Lightning Charging Cable,1,14.95,11/13/19 18:01,"372 11th St, San Francisco, CA 94016" -283258,Bose SoundSport Headphones,1,99.99,11/18/19 01:07,"947 10th St, Boston, MA 02215" -283259,AAA Batteries (4-pack),1,2.99,11/24/19 06:33,"230 Meadow St, San Francisco, CA 94016" -283260,Lightning Charging Cable,1,14.95,11/06/19 14:28,"8 Chestnut St, Portland, ME 04101" -283261,Bose SoundSport Headphones,1,99.99,11/09/19 16:10,"354 Maple St, New York City, NY 10001" -283262,Lightning Charging Cable,1,14.95,11/08/19 16:08,"450 9th St, San Francisco, CA 94016" -283263,Google Phone,1,600,11/08/19 17:47,"881 Highland St, Boston, MA 02215" -283264,Google Phone,1,600,11/15/19 21:56,"556 Dogwood St, San Francisco, CA 94016" -283264,USB-C Charging Cable,2,11.95,11/15/19 21:56,"556 Dogwood St, San Francisco, CA 94016" -283265,AAA Batteries (4-pack),1,2.99,11/13/19 09:21,"433 Lakeview St, Dallas, TX 75001" -283266,Google Phone,1,600,11/04/19 19:47,"327 12th St, Atlanta, GA 30301" -283267,AA Batteries (4-pack),1,3.84,11/01/19 14:32,"394 Walnut St, Dallas, TX 75001" -283268,Lightning Charging Cable,2,14.95,11/06/19 09:18,"421 Jackson St, San Francisco, CA 94016" -283269,USB-C Charging Cable,1,11.95,11/30/19 18:30,"782 South St, Los Angeles, CA 90001" -283270,AA Batteries (4-pack),2,3.84,11/25/19 12:01,"470 Park St, San Francisco, CA 94016" -283271,ThinkPad Laptop,1,999.99,11/24/19 18:56,"777 River St, Boston, MA 02215" -283272,Lightning Charging Cable,1,14.95,11/04/19 13:12,"722 Adams St, New York City, NY 10001" -283273,AA Batteries (4-pack),1,3.84,11/02/19 12:24,"539 Chestnut St, Atlanta, GA 30301" -283274,USB-C Charging Cable,1,11.95,11/17/19 16:34,"508 Meadow St, Atlanta, GA 30301" -283275,Google Phone,1,600,11/11/19 11:16,"358 Ridge St, Austin, TX 73301" -283275,USB-C Charging Cable,1,11.95,11/11/19 11:16,"358 Ridge St, Austin, TX 73301" -283276,Wired Headphones,1,11.99,11/11/19 18:27,"73 Dogwood St, New York City, NY 10001" -283277,AAA Batteries (4-pack),2,2.99,11/02/19 15:44,"556 Forest St, Seattle, WA 98101" -283278,Apple Airpods Headphones,1,150,11/16/19 06:36,"221 Spruce St, Boston, MA 02215" -283278,Lightning Charging Cable,2,14.95,11/16/19 06:36,"221 Spruce St, Boston, MA 02215" -283279,Bose SoundSport Headphones,1,99.99,11/06/19 18:02,"282 13th St, New York City, NY 10001" -283280,Lightning Charging Cable,1,14.95,11/13/19 17:24,"663 14th St, New York City, NY 10001" -283281,Bose SoundSport Headphones,1,99.99,11/26/19 12:05,"289 11th St, Dallas, TX 75001" -283282,Lightning Charging Cable,1,14.95,11/05/19 06:45,"770 12th St, Seattle, WA 98101" -283283,Vareebadd Phone,1,400,11/17/19 07:54,"646 Forest St, Los Angeles, CA 90001" -283284,AAA Batteries (4-pack),1,2.99,11/11/19 19:19,"923 Lake St, San Francisco, CA 94016" -283285,USB-C Charging Cable,1,11.95,11/02/19 06:03,"191 14th St, Seattle, WA 98101" -283286,27in FHD Monitor,1,149.99,11/16/19 14:27,"933 Madison St, Seattle, WA 98101" -283287,Wired Headphones,1,11.99,11/20/19 03:11,"583 12th St, Portland, OR 97035" -283288,Lightning Charging Cable,1,14.95,11/01/19 13:36,"770 Church St, Boston, MA 02215" -283289,Wired Headphones,2,11.99,11/28/19 09:17,"373 8th St, San Francisco, CA 94016" -283290,Bose SoundSport Headphones,1,99.99,11/06/19 22:30,"373 13th St, Portland, OR 97035" -283291,ThinkPad Laptop,1,999.99,11/17/19 09:34,"372 Madison St, Seattle, WA 98101" -283292,USB-C Charging Cable,1,11.95,11/28/19 17:58,"381 Johnson St, Los Angeles, CA 90001" -283293,Bose SoundSport Headphones,1,99.99,11/26/19 13:09,"822 Lakeview St, San Francisco, CA 94016" -283294,AAA Batteries (4-pack),2,2.99,11/09/19 09:49,"545 Sunset St, Austin, TX 73301" -283295,AAA Batteries (4-pack),1,2.99,11/27/19 21:00,"192 14th St, Seattle, WA 98101" -283296,Wired Headphones,1,11.99,11/29/19 03:07,"277 River St, Portland, ME 04101" -283297,AAA Batteries (4-pack),1,2.99,11/10/19 15:47,"245 Cherry St, New York City, NY 10001" -283298,Google Phone,1,600,11/01/19 21:57,"836 9th St, Seattle, WA 98101" -283298,USB-C Charging Cable,1,11.95,11/01/19 21:57,"836 9th St, Seattle, WA 98101" -283299,27in 4K Gaming Monitor,1,389.99,11/22/19 19:01,"623 Forest St, Seattle, WA 98101" -283300,AAA Batteries (4-pack),1,2.99,11/08/19 01:01,"431 Jackson St, Los Angeles, CA 90001" -283301,Apple Airpods Headphones,1,150,11/30/19 11:12,"930 Willow St, San Francisco, CA 94016" -283302,Lightning Charging Cable,1,14.95,11/25/19 15:35,"975 Lincoln St, San Francisco, CA 94016" -283303,iPhone,1,700,11/08/19 18:55,"641 Adams St, New York City, NY 10001" -283304,Flatscreen TV,1,300,11/26/19 08:13,"447 North St, Seattle, WA 98101" -283305,Flatscreen TV,1,300,11/02/19 17:54,"369 Lake St, Los Angeles, CA 90001" -283306,AAA Batteries (4-pack),2,2.99,11/04/19 14:31,"436 Washington St, Dallas, TX 75001" -283307,27in FHD Monitor,1,149.99,11/13/19 16:04,"357 Pine St, Portland, OR 97035" -283308,Vareebadd Phone,1,400,11/20/19 21:30,"386 Meadow St, New York City, NY 10001" -283309,Flatscreen TV,1,300,11/17/19 16:34,"9 10th St, Atlanta, GA 30301" -283310,27in 4K Gaming Monitor,1,389.99,11/19/19 17:36,"644 Meadow St, Atlanta, GA 30301" -283311,Flatscreen TV,1,300,11/10/19 19:09,"672 Maple St, San Francisco, CA 94016" -283312,27in FHD Monitor,1,149.99,11/22/19 15:03,"336 Church St, Atlanta, GA 30301" -283313,USB-C Charging Cable,2,11.95,11/30/19 15:23,"960 11th St, Boston, MA 02215" -283314,34in Ultrawide Monitor,1,379.99,11/30/19 21:09,"684 14th St, Boston, MA 02215" -283315,AAA Batteries (4-pack),1,2.99,11/05/19 21:50,"322 Walnut St, San Francisco, CA 94016" -283315,Lightning Charging Cable,2,14.95,11/05/19 21:50,"322 Walnut St, San Francisco, CA 94016" -283316,Lightning Charging Cable,1,14.95,11/08/19 20:24,"331 Lincoln St, Seattle, WA 98101" -283317,iPhone,1,700,11/26/19 22:51,"938 Hickory St, Boston, MA 02215" -283318,Google Phone,1,600,11/20/19 11:23,"980 4th St, Boston, MA 02215" -283318,USB-C Charging Cable,1,11.95,11/20/19 11:23,"980 4th St, Boston, MA 02215" -283319,AA Batteries (4-pack),1,3.84,11/20/19 11:10,"154 Church St, New York City, NY 10001" -283320,27in 4K Gaming Monitor,1,389.99,11/20/19 16:09,"575 10th St, Portland, OR 97035" -283321,AAA Batteries (4-pack),1,2.99,11/22/19 23:29,"784 Sunset St, Austin, TX 73301" -283322,USB-C Charging Cable,1,11.95,11/12/19 12:35,"62 7th St, Dallas, TX 75001" -283323,AAA Batteries (4-pack),1,2.99,11/06/19 11:21,"847 Chestnut St, Boston, MA 02215" -283324,Lightning Charging Cable,1,14.95,11/26/19 05:30,"127 Lake St, Los Angeles, CA 90001" -283325,27in FHD Monitor,1,149.99,11/09/19 16:30,"58 South St, Los Angeles, CA 90001" -283326,Apple Airpods Headphones,1,150,11/13/19 14:37,"323 4th St, San Francisco, CA 94016" -283327,Macbook Pro Laptop,1,1700,11/18/19 20:25,"368 9th St, Portland, OR 97035" -283328,Lightning Charging Cable,1,14.95,11/01/19 11:48,"190 Cedar St, San Francisco, CA 94016" -283329,Lightning Charging Cable,1,14.95,11/23/19 16:13,"620 Ridge St, New York City, NY 10001" -283330,Apple Airpods Headphones,1,150,11/27/19 17:55,"284 Madison St, Los Angeles, CA 90001" -283331,iPhone,1,700,11/05/19 10:15,"555 4th St, Dallas, TX 75001" -283332,Google Phone,1,600,11/26/19 20:09,"858 Hickory St, San Francisco, CA 94016" -283333,Apple Airpods Headphones,1,150,11/25/19 16:01,"580 Sunset St, Portland, OR 97035" -283334,Wired Headphones,1,11.99,11/21/19 17:08,"342 Jefferson St, Dallas, TX 75001" -283335,27in 4K Gaming Monitor,1,389.99,11/09/19 21:52,"204 Dogwood St, Portland, OR 97035" -283336,Google Phone,1,600,11/08/19 19:46,"523 11th St, Boston, MA 02215" -283336,Bose SoundSport Headphones,1,99.99,11/08/19 19:46,"523 11th St, Boston, MA 02215" -283337,AA Batteries (4-pack),1,3.84,11/16/19 20:06,"280 Chestnut St, Atlanta, GA 30301" -283338,Google Phone,1,600,11/17/19 18:59,"15 Sunset St, Los Angeles, CA 90001" -283339,Lightning Charging Cable,1,14.95,11/05/19 20:48,"414 Lakeview St, New York City, NY 10001" -283340,Wired Headphones,1,11.99,11/06/19 18:46,"616 Center St, San Francisco, CA 94016" -283341,Wired Headphones,1,11.99,11/13/19 09:03,"374 12th St, Boston, MA 02215" -283342,20in Monitor,1,109.99,11/27/19 12:09,"65 Park St, Los Angeles, CA 90001" -283343,AA Batteries (4-pack),1,3.84,11/10/19 11:23,"41 Madison St, Los Angeles, CA 90001" -283344,Google Phone,1,600,11/18/19 17:33,"458 Spruce St, San Francisco, CA 94016" -283344,USB-C Charging Cable,1,11.95,11/18/19 17:33,"458 Spruce St, San Francisco, CA 94016" -283345,AAA Batteries (4-pack),1,2.99,11/26/19 21:43,"205 Elm St, New York City, NY 10001" -283346,AA Batteries (4-pack),1,3.84,11/14/19 17:46,"744 6th St, Los Angeles, CA 90001" -283347,Bose SoundSport Headphones,1,99.99,11/05/19 14:13,"926 10th St, New York City, NY 10001" -283348,AAA Batteries (4-pack),1,2.99,11/02/19 12:30,"128 Center St, Los Angeles, CA 90001" -283349,Lightning Charging Cable,1,14.95,11/25/19 13:48,"238 Park St, New York City, NY 10001" -283350,Bose SoundSport Headphones,1,99.99,11/02/19 21:20,"777 River St, Los Angeles, CA 90001" -283351,AAA Batteries (4-pack),1,2.99,11/23/19 10:22,"445 North St, Atlanta, GA 30301" -283352,Apple Airpods Headphones,1,150,11/30/19 12:55,"496 Pine St, San Francisco, CA 94016" -283353,Bose SoundSport Headphones,1,99.99,11/05/19 12:13,"7 7th St, San Francisco, CA 94016" -283354,Flatscreen TV,1,300,11/02/19 18:35,"150 South St, Boston, MA 02215" -283355,Apple Airpods Headphones,1,150,11/22/19 14:09,"672 Cedar St, Seattle, WA 98101" -283356,USB-C Charging Cable,1,11.95,11/13/19 20:09,"855 South St, San Francisco, CA 94016" -283357,Lightning Charging Cable,1,14.95,11/10/19 17:15,"997 Willow St, Atlanta, GA 30301" -283358,iPhone,1,700,11/17/19 20:42,"47 Willow St, San Francisco, CA 94016" -283359,20in Monitor,1,109.99,11/22/19 13:43,"9 2nd St, Austin, TX 73301" -283360,34in Ultrawide Monitor,1,379.99,11/05/19 21:51,"68 Lincoln St, San Francisco, CA 94016" -283361,Bose SoundSport Headphones,1,99.99,11/04/19 12:27,"945 12th St, Atlanta, GA 30301" -283362,iPhone,1,700,11/08/19 10:16,"981 Forest St, New York City, NY 10001" -283363,Bose SoundSport Headphones,1,99.99,11/14/19 21:13,"837 Wilson St, Seattle, WA 98101" -283364,Flatscreen TV,1,300,11/20/19 14:55,"391 Madison St, New York City, NY 10001" -283365,Wired Headphones,1,11.99,11/07/19 18:47,"353 Johnson St, Boston, MA 02215" -283366,Wired Headphones,2,11.99,11/27/19 01:14,"242 River St, Los Angeles, CA 90001" -283367,AA Batteries (4-pack),1,3.84,11/19/19 18:02,"932 Cedar St, Atlanta, GA 30301" -283368,Bose SoundSport Headphones,1,99.99,11/06/19 22:46,"430 Cedar St, San Francisco, CA 94016" -283369,AAA Batteries (4-pack),1,2.99,11/29/19 21:14,"444 6th St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -283370,USB-C Charging Cable,1,11.95,11/01/19 11:51,"792 Spruce St, Boston, MA 02215" -283371,Wired Headphones,1,11.99,11/27/19 20:51,"333 Jefferson St, Seattle, WA 98101" -283372,Lightning Charging Cable,1,14.95,11/06/19 13:05,"709 Jefferson St, Portland, OR 97035" -283373,AA Batteries (4-pack),1,3.84,11/03/19 21:37,"975 12th St, Dallas, TX 75001" -283374,AAA Batteries (4-pack),1,2.99,11/25/19 20:09,"91 Lincoln St, Atlanta, GA 30301" -283375,Lightning Charging Cable,1,14.95,11/28/19 17:21,"127 Cedar St, San Francisco, CA 94016" -283376,AA Batteries (4-pack),1,3.84,11/25/19 20:06,"778 Jackson St, Los Angeles, CA 90001" -283377,Google Phone,1,600,11/08/19 22:28,"544 North St, Los Angeles, CA 90001" -283378,USB-C Charging Cable,1,11.95,11/05/19 21:28,"439 Cherry St, San Francisco, CA 94016" -283379,AA Batteries (4-pack),1,3.84,11/10/19 04:48,"128 7th St, Portland, ME 04101" -283380,Flatscreen TV,1,300,11/04/19 21:54,"27 Cherry St, Boston, MA 02215" -283381,AAA Batteries (4-pack),1,2.99,11/09/19 11:47,"281 West St, Seattle, WA 98101" -283382,AA Batteries (4-pack),1,3.84,11/14/19 13:50,"627 North St, Boston, MA 02215" -283383,AA Batteries (4-pack),1,3.84,11/14/19 12:31,"383 12th St, New York City, NY 10001" -283384,27in FHD Monitor,1,149.99,11/25/19 14:20,"613 Cedar St, Los Angeles, CA 90001" -283385,AA Batteries (4-pack),1,3.84,11/08/19 15:22,"304 Spruce St, Atlanta, GA 30301" -283386,USB-C Charging Cable,1,11.95,11/29/19 06:11,"574 Park St, San Francisco, CA 94016" -283387,Lightning Charging Cable,1,14.95,11/05/19 19:35,"569 Pine St, Portland, OR 97035" -283388,Lightning Charging Cable,1,14.95,11/05/19 17:10,"503 9th St, Boston, MA 02215" -283389,USB-C Charging Cable,1,11.95,11/28/19 19:39,"865 North St, Boston, MA 02215" -283390,USB-C Charging Cable,1,11.95,11/01/19 22:33,"175 Adams St, Boston, MA 02215" -283391,USB-C Charging Cable,1,11.95,11/04/19 10:52,"952 Wilson St, Boston, MA 02215" -283392,USB-C Charging Cable,1,11.95,11/17/19 12:36,"705 Park St, Los Angeles, CA 90001" -283393,34in Ultrawide Monitor,1,379.99,11/20/19 19:34,"121 4th St, Los Angeles, CA 90001" -283394,AAA Batteries (4-pack),1,2.99,11/25/19 13:57,"17 Sunset St, Los Angeles, CA 90001" -283395,27in 4K Gaming Monitor,1,389.99,11/23/19 19:25,"141 4th St, Boston, MA 02215" -283396,Wired Headphones,1,11.99,11/19/19 09:56,"895 Cedar St, Austin, TX 73301" -283397,Lightning Charging Cable,1,14.95,11/19/19 21:36,"403 Adams St, Portland, OR 97035" -283398,Lightning Charging Cable,1,14.95,11/10/19 08:04,"272 Wilson St, San Francisco, CA 94016" -283399,AAA Batteries (4-pack),1,2.99,11/07/19 07:19,"701 2nd St, Los Angeles, CA 90001" -283400,Bose SoundSport Headphones,1,99.99,11/13/19 23:29,"703 Chestnut St, New York City, NY 10001" -283401,AA Batteries (4-pack),2,3.84,11/28/19 20:02,"276 Lake St, New York City, NY 10001" -283402,Lightning Charging Cable,1,14.95,11/08/19 18:43,"972 Wilson St, Dallas, TX 75001" -283403,USB-C Charging Cable,1,11.95,11/15/19 16:42,"785 Cherry St, Los Angeles, CA 90001" -283404,Wired Headphones,1,11.99,11/11/19 15:50,"978 Cherry St, San Francisco, CA 94016" -283405,Lightning Charging Cable,1,14.95,11/09/19 17:49,"641 14th St, Boston, MA 02215" -283406,USB-C Charging Cable,1,11.95,11/04/19 19:52,"78 Lincoln St, Boston, MA 02215" -283407,27in FHD Monitor,1,149.99,11/03/19 07:27,"47 North St, Atlanta, GA 30301" -283408,AAA Batteries (4-pack),1,2.99,11/04/19 15:21,"568 Highland St, Seattle, WA 98101" -283409,Apple Airpods Headphones,1,150,11/23/19 17:42,"472 Cedar St, New York City, NY 10001" -283410,ThinkPad Laptop,1,999.99,11/18/19 09:37,"644 Pine St, Seattle, WA 98101" -283411,27in 4K Gaming Monitor,1,389.99,11/21/19 23:46,"861 10th St, Los Angeles, CA 90001" -283412,Lightning Charging Cable,1,14.95,11/13/19 07:29,"536 Hickory St, Boston, MA 02215" -283413,AAA Batteries (4-pack),1,2.99,11/22/19 20:20,"132 Lakeview St, Los Angeles, CA 90001" -283414,Lightning Charging Cable,1,14.95,11/24/19 11:19,"188 Cherry St, New York City, NY 10001" -283415,Wired Headphones,1,11.99,11/25/19 15:31,"59 10th St, San Francisco, CA 94016" -283416,Lightning Charging Cable,1,14.95,11/27/19 12:26,"457 Spruce St, Boston, MA 02215" -283417,AA Batteries (4-pack),1,3.84,11/03/19 22:10,"949 Ridge St, San Francisco, CA 94016" -283418,Lightning Charging Cable,1,14.95,11/19/19 22:09,"745 Maple St, Portland, OR 97035" -283419,Lightning Charging Cable,1,14.95,11/22/19 10:48,"311 Cherry St, San Francisco, CA 94016" -283420,Bose SoundSport Headphones,1,99.99,11/15/19 17:04,"150 10th St, Portland, OR 97035" -283421,USB-C Charging Cable,1,11.95,11/13/19 19:17,"366 Dogwood St, San Francisco, CA 94016" -283422,Wired Headphones,1,11.99,11/22/19 10:26,"504 12th St, San Francisco, CA 94016" -283423,AAA Batteries (4-pack),1,2.99,11/07/19 22:00,"193 Walnut St, Austin, TX 73301" -283424,Wired Headphones,3,11.99,11/02/19 16:07,"851 Meadow St, New York City, NY 10001" -283425,Vareebadd Phone,1,400,11/30/19 12:32,"48 14th St, Los Angeles, CA 90001" -283426,Apple Airpods Headphones,1,150,11/02/19 17:17,"420 Walnut St, Dallas, TX 75001" -283427,20in Monitor,1,109.99,11/11/19 16:48,"286 North St, Austin, TX 73301" -283428,Lightning Charging Cable,1,14.95,11/05/19 14:16,"108 6th St, Portland, ME 04101" -283429,Lightning Charging Cable,1,14.95,11/04/19 20:04,"155 13th St, Atlanta, GA 30301" -283430,AAA Batteries (4-pack),1,2.99,11/21/19 00:24,"874 6th St, San Francisco, CA 94016" -283431,AA Batteries (4-pack),1,3.84,11/21/19 12:59,"470 Lincoln St, Boston, MA 02215" -283432,Bose SoundSport Headphones,1,99.99,11/20/19 19:34,"851 Sunset St, Dallas, TX 75001" -283433,USB-C Charging Cable,1,11.95,11/22/19 14:39,"253 10th St, San Francisco, CA 94016" -283434,AA Batteries (4-pack),1,3.84,11/17/19 13:41,"392 River St, New York City, NY 10001" -283435,AAA Batteries (4-pack),2,2.99,11/05/19 17:28,"450 8th St, San Francisco, CA 94016" -283436,27in FHD Monitor,1,149.99,11/25/19 10:35,"108 Jefferson St, San Francisco, CA 94016" -283437,Google Phone,1,600,11/07/19 16:52,"669 13th St, Portland, OR 97035" -283438,AA Batteries (4-pack),1,3.84,11/18/19 13:12,"217 Chestnut St, Los Angeles, CA 90001" -283439,Flatscreen TV,1,300,11/22/19 19:44,"404 10th St, San Francisco, CA 94016" -283440,AA Batteries (4-pack),1,3.84,11/06/19 19:09,"269 11th St, San Francisco, CA 94016" -283441,ThinkPad Laptop,1,999.99,11/28/19 08:04,"723 6th St, San Francisco, CA 94016" -283442,Lightning Charging Cable,1,14.95,11/03/19 17:13,"316 North St, San Francisco, CA 94016" -283443,Lightning Charging Cable,1,14.95,11/30/19 12:39,"853 Johnson St, San Francisco, CA 94016" -283444,27in 4K Gaming Monitor,1,389.99,11/07/19 01:05,"54 10th St, Portland, OR 97035" -283445,AAA Batteries (4-pack),1,2.99,11/13/19 12:03,"100 Park St, San Francisco, CA 94016" -283446,USB-C Charging Cable,1,11.95,11/22/19 18:16,"369 Highland St, Portland, OR 97035" -283447,iPhone,1,700,11/10/19 17:46,"271 Lakeview St, Boston, MA 02215" -283448,Apple Airpods Headphones,1,150,11/24/19 14:15,"798 Sunset St, Boston, MA 02215" -283449,27in 4K Gaming Monitor,1,389.99,11/24/19 12:53,"326 Cedar St, Boston, MA 02215" -283450,Lightning Charging Cable,1,14.95,11/05/19 08:47,"763 Church St, Boston, MA 02215" -283451,USB-C Charging Cable,1,11.95,11/16/19 12:42,"343 River St, New York City, NY 10001" -283452,AA Batteries (4-pack),1,3.84,11/17/19 12:48,"664 Chestnut St, Portland, ME 04101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -283453,27in FHD Monitor,1,149.99,11/19/19 06:43,"900 Pine St, San Francisco, CA 94016" -283454,Apple Airpods Headphones,1,150,11/13/19 09:29,"914 13th St, San Francisco, CA 94016" -283455,AAA Batteries (4-pack),1,2.99,11/25/19 09:53,"923 South St, Dallas, TX 75001" -283456,Apple Airpods Headphones,1,150,11/07/19 18:08,"385 13th St, San Francisco, CA 94016" -283457,USB-C Charging Cable,1,11.95,11/22/19 10:48,"33 Hickory St, New York City, NY 10001" -283458,Lightning Charging Cable,1,14.95,11/24/19 20:14,"704 8th St, Los Angeles, CA 90001" -283459,USB-C Charging Cable,1,11.95,11/05/19 08:34,"24 Hill St, New York City, NY 10001" -283460,Lightning Charging Cable,1,14.95,11/20/19 09:04,"294 Forest St, Atlanta, GA 30301" -283461,AAA Batteries (4-pack),1,2.99,11/18/19 21:08,"305 4th St, San Francisco, CA 94016" -283462,Bose SoundSport Headphones,1,99.99,11/24/19 22:07,"200 11th St, New York City, NY 10001" -283463,Bose SoundSport Headphones,1,99.99,11/09/19 19:55,"617 Church St, New York City, NY 10001" -283464,Lightning Charging Cable,1,14.95,11/19/19 19:18,"230 10th St, San Francisco, CA 94016" -283465,USB-C Charging Cable,1,11.95,11/30/19 11:16,"646 Wilson St, New York City, NY 10001" -283466,iPhone,1,700,11/29/19 12:17,"995 Cherry St, Dallas, TX 75001" -283466,Lightning Charging Cable,1,14.95,11/29/19 12:17,"995 Cherry St, Dallas, TX 75001" -283467,LG Washing Machine,1,600.0,11/10/19 14:28,"371 Lakeview St, San Francisco, CA 94016" -283468,AAA Batteries (4-pack),2,2.99,11/12/19 10:02,"587 Jackson St, Dallas, TX 75001" -283469,34in Ultrawide Monitor,1,379.99,11/24/19 11:14,"450 Park St, Los Angeles, CA 90001" -283470,USB-C Charging Cable,1,11.95,11/29/19 19:36,"352 8th St, Atlanta, GA 30301" -283471,Lightning Charging Cable,1,14.95,11/14/19 13:59,"737 14th St, Portland, OR 97035" -283472,Flatscreen TV,1,300,11/02/19 17:17,"19 Madison St, Atlanta, GA 30301" -283473,Bose SoundSport Headphones,1,99.99,11/17/19 18:49,"267 Willow St, San Francisco, CA 94016" -283474,AAA Batteries (4-pack),1,2.99,11/01/19 08:10,"716 Dogwood St, New York City, NY 10001" -283475,AA Batteries (4-pack),2,3.84,11/27/19 05:37,"314 Chestnut St, Atlanta, GA 30301" -283476,USB-C Charging Cable,1,11.95,11/16/19 08:45,"297 River St, Los Angeles, CA 90001" -283477,USB-C Charging Cable,1,11.95,11/27/19 22:31,"70 Jefferson St, Boston, MA 02215" -283478,20in Monitor,1,109.99,11/24/19 18:02,"443 12th St, San Francisco, CA 94016" -283479,Wired Headphones,1,11.99,11/03/19 09:40,"81 Lake St, San Francisco, CA 94016" -283480,AA Batteries (4-pack),2,3.84,11/01/19 20:08,"491 8th St, San Francisco, CA 94016" -283481,ThinkPad Laptop,1,999.99,11/17/19 13:12,"720 11th St, San Francisco, CA 94016" -283482,Bose SoundSport Headphones,1,99.99,11/18/19 10:36,"134 8th St, San Francisco, CA 94016" -283483,Apple Airpods Headphones,1,150,11/29/19 11:40,"423 West St, Los Angeles, CA 90001" -283484,27in 4K Gaming Monitor,1,389.99,11/08/19 16:54,"25 Jackson St, Seattle, WA 98101" -283485,iPhone,1,700,11/04/19 16:14,"686 14th St, Boston, MA 02215" -283486,Wired Headphones,2,11.99,11/10/19 13:43,"853 11th St, San Francisco, CA 94016" -283487,Wired Headphones,1,11.99,11/19/19 14:23,"4 Highland St, New York City, NY 10001" -283488,Bose SoundSport Headphones,1,99.99,11/14/19 15:18,"837 Highland St, San Francisco, CA 94016" -283489,USB-C Charging Cable,1,11.95,11/11/19 20:16,"167 River St, Los Angeles, CA 90001" -283490,USB-C Charging Cable,1,11.95,11/07/19 10:08,"675 Forest St, Los Angeles, CA 90001" -283491,27in FHD Monitor,1,149.99,11/17/19 14:53,"702 Walnut St, Portland, ME 04101" -283492,Lightning Charging Cable,2,14.95,11/10/19 22:54,"614 River St, Boston, MA 02215" -283493,Bose SoundSport Headphones,1,99.99,11/12/19 22:16,"508 14th St, Seattle, WA 98101" -283494,27in FHD Monitor,1,149.99,11/30/19 03:48,"777 Pine St, San Francisco, CA 94016" -283495,Wired Headphones,1,11.99,11/16/19 10:30,"150 7th St, Dallas, TX 75001" -283496,Lightning Charging Cable,2,14.95,11/03/19 18:26,"151 Dogwood St, Boston, MA 02215" -283497,AA Batteries (4-pack),1,3.84,11/12/19 01:13,"211 Main St, Atlanta, GA 30301" -283498,Wired Headphones,1,11.99,11/09/19 21:07,"84 North St, Seattle, WA 98101" -283499,iPhone,1,700,11/17/19 14:50,"543 9th St, New York City, NY 10001" -283500,34in Ultrawide Monitor,1,379.99,11/06/19 12:46,"506 North St, Seattle, WA 98101" -283501,Lightning Charging Cable,1,14.95,11/17/19 14:51,"395 Highland St, Boston, MA 02215" -283502,USB-C Charging Cable,1,11.95,11/07/19 22:08,"390 Adams St, Los Angeles, CA 90001" -283503,34in Ultrawide Monitor,1,379.99,11/21/19 16:12,"216 6th St, New York City, NY 10001" -283504,Macbook Pro Laptop,1,1700,11/28/19 14:24,"42 Lakeview St, Los Angeles, CA 90001" -283505,Bose SoundSport Headphones,1,99.99,11/07/19 00:34,"29 Jackson St, Boston, MA 02215" -283506,AA Batteries (4-pack),1,3.84,11/17/19 19:05,"431 Jefferson St, Seattle, WA 98101" -283507,Lightning Charging Cable,1,14.95,11/06/19 09:42,"143 Washington St, Boston, MA 02215" -283508,AAA Batteries (4-pack),1,2.99,11/25/19 18:10,"29 Park St, Boston, MA 02215" -283509,27in 4K Gaming Monitor,1,389.99,11/07/19 20:40,"356 Church St, San Francisco, CA 94016" -283510,34in Ultrawide Monitor,1,379.99,11/10/19 17:02,"170 7th St, Austin, TX 73301" -283511,Lightning Charging Cable,1,14.95,11/20/19 17:42,"969 Jackson St, San Francisco, CA 94016" -283512,AA Batteries (4-pack),4,3.84,11/25/19 18:17,"708 10th St, Los Angeles, CA 90001" -283513,Wired Headphones,1,11.99,11/21/19 12:45,"691 River St, Dallas, TX 75001" -283514,Bose SoundSport Headphones,1,99.99,11/11/19 13:48,"650 Church St, Boston, MA 02215" -283515,Lightning Charging Cable,1,14.95,11/10/19 13:22,"862 2nd St, New York City, NY 10001" -283516,AA Batteries (4-pack),1,3.84,11/21/19 22:51,"3 1st St, Atlanta, GA 30301" -283516,Apple Airpods Headphones,1,150,11/21/19 22:51,"3 1st St, Atlanta, GA 30301" -283517,Bose SoundSport Headphones,1,99.99,11/07/19 23:04,"31 4th St, Dallas, TX 75001" -283518,AA Batteries (4-pack),1,3.84,11/23/19 17:30,"300 5th St, San Francisco, CA 94016" -283519,USB-C Charging Cable,1,11.95,11/03/19 19:41,"305 Highland St, New York City, NY 10001" -283520,USB-C Charging Cable,1,11.95,11/22/19 14:43,"629 Johnson St, Austin, TX 73301" -283521,AAA Batteries (4-pack),1,2.99,11/26/19 09:21,"328 Walnut St, Atlanta, GA 30301" -283522,AA Batteries (4-pack),1,3.84,11/28/19 12:25,"43 9th St, Boston, MA 02215" -283522,Apple Airpods Headphones,1,150,11/28/19 12:25,"43 9th St, Boston, MA 02215" -283523,AAA Batteries (4-pack),1,2.99,11/28/19 18:03,"751 River St, San Francisco, CA 94016" -283524,USB-C Charging Cable,1,11.95,11/24/19 17:08,"656 Wilson St, San Francisco, CA 94016" -283525,Flatscreen TV,1,300,11/21/19 20:34,"703 8th St, San Francisco, CA 94016" -283526,Lightning Charging Cable,2,14.95,11/26/19 19:33,"545 Church St, Boston, MA 02215" -283527,AA Batteries (4-pack),1,3.84,11/28/19 19:52,"285 West St, Austin, TX 73301" -283528,Wired Headphones,1,11.99,11/13/19 10:05,"486 Johnson St, Los Angeles, CA 90001" -283528,Wired Headphones,1,11.99,11/13/19 10:05,"486 Johnson St, Los Angeles, CA 90001" -283529,27in FHD Monitor,1,149.99,11/02/19 12:47,"73 Washington St, Los Angeles, CA 90001" -283530,Google Phone,1,600,11/01/19 19:04,"899 11th St, Los Angeles, CA 90001" -283531,34in Ultrawide Monitor,1,379.99,11/23/19 11:52,"162 6th St, Atlanta, GA 30301" -283532,USB-C Charging Cable,2,11.95,11/14/19 11:04,"291 Cedar St, Dallas, TX 75001" -283533,Google Phone,1,600,11/05/19 19:00,"349 9th St, Los Angeles, CA 90001" -283534,AAA Batteries (4-pack),2,2.99,11/23/19 04:00,"695 Hill St, Boston, MA 02215" -283535,USB-C Charging Cable,1,11.95,11/17/19 15:43,"857 Pine St, San Francisco, CA 94016" -283536,Macbook Pro Laptop,1,1700,11/03/19 17:14,"254 8th St, Portland, OR 97035" -283537,ThinkPad Laptop,1,999.99,11/14/19 14:57,"561 Lincoln St, San Francisco, CA 94016" -283538,iPhone,1,700,11/23/19 15:22,"233 Center St, Boston, MA 02215" -283539,AA Batteries (4-pack),2,3.84,11/13/19 22:41,"128 4th St, Los Angeles, CA 90001" -283540,Wired Headphones,1,11.99,11/19/19 07:45,"166 Washington St, Boston, MA 02215" -283541,27in FHD Monitor,1,149.99,11/20/19 13:21,"50 West St, San Francisco, CA 94016" -283542,Wired Headphones,1,11.99,11/27/19 18:27,"413 Jackson St, Boston, MA 02215" -283543,34in Ultrawide Monitor,1,379.99,11/05/19 23:05,"93 10th St, New York City, NY 10001" -283544,20in Monitor,1,109.99,11/28/19 14:53,"485 11th St, San Francisco, CA 94016" -283544,AAA Batteries (4-pack),1,2.99,11/28/19 14:53,"485 11th St, San Francisco, CA 94016" -283545,iPhone,1,700,11/30/19 09:27,"545 Center St, New York City, NY 10001" -283546,AA Batteries (4-pack),1,3.84,11/05/19 21:15,"310 Jefferson St, New York City, NY 10001" -283546,iPhone,1,700,11/05/19 21:15,"310 Jefferson St, New York City, NY 10001" -283547,AAA Batteries (4-pack),2,2.99,11/24/19 13:57,"453 Park St, Boston, MA 02215" -283548,iPhone,1,700,11/02/19 10:03,"373 Johnson St, Portland, ME 04101" -283549,AA Batteries (4-pack),1,3.84,11/08/19 14:42,"484 Dogwood St, Los Angeles, CA 90001" -283550,Bose SoundSport Headphones,1,99.99,11/21/19 16:39,"93 Highland St, Atlanta, GA 30301" -283551,iPhone,1,700,11/17/19 10:33,"248 14th St, Portland, OR 97035" -283552,AAA Batteries (4-pack),1,2.99,11/04/19 22:53,"8 Willow St, Los Angeles, CA 90001" -283553,USB-C Charging Cable,3,11.95,11/12/19 11:31,"690 Walnut St, San Francisco, CA 94016" -283554,AA Batteries (4-pack),1,3.84,11/25/19 17:54,"15 Center St, Austin, TX 73301" -283555,34in Ultrawide Monitor,1,379.99,11/30/19 20:16,"32 Pine St, San Francisco, CA 94016" -283556,34in Ultrawide Monitor,1,379.99,11/30/19 16:43,"228 Center St, Dallas, TX 75001" -283557,27in FHD Monitor,1,149.99,11/07/19 15:11,"543 Hickory St, New York City, NY 10001" -283558,27in FHD Monitor,1,149.99,11/17/19 01:59,"510 7th St, Boston, MA 02215" -283559,34in Ultrawide Monitor,1,379.99,11/14/19 15:37,"886 Sunset St, Los Angeles, CA 90001" -283560,AAA Batteries (4-pack),1,2.99,11/18/19 04:40,"637 Chestnut St, Dallas, TX 75001" -283561,Google Phone,1,600,11/24/19 09:50,"18 West St, New York City, NY 10001" -283561,USB-C Charging Cable,2,11.95,11/24/19 09:50,"18 West St, New York City, NY 10001" -283562,Google Phone,1,600,11/21/19 00:45,"568 Cedar St, San Francisco, CA 94016" -283562,Wired Headphones,2,11.99,11/21/19 00:45,"568 Cedar St, San Francisco, CA 94016" -283563,AA Batteries (4-pack),1,3.84,11/09/19 17:47,"696 Chestnut St, Los Angeles, CA 90001" -283564,Bose SoundSport Headphones,1,99.99,11/04/19 10:46,"824 4th St, Atlanta, GA 30301" -283565,Macbook Pro Laptop,1,1700,11/30/19 10:51,"391 1st St, Seattle, WA 98101" -283566,iPhone,1,700,11/03/19 14:37,"231 West St, Portland, OR 97035" -283567,Lightning Charging Cable,1,14.95,11/20/19 12:23,"833 Forest St, Portland, OR 97035" -283568,USB-C Charging Cable,1,11.95,11/30/19 09:59,"131 Jefferson St, Dallas, TX 75001" -283569,27in 4K Gaming Monitor,1,389.99,11/10/19 17:46,"157 Ridge St, San Francisco, CA 94016" -283570,27in FHD Monitor,1,149.99,11/18/19 18:14,"724 14th St, Los Angeles, CA 90001" -283571,AAA Batteries (4-pack),1,2.99,11/17/19 16:58,"858 Willow St, Dallas, TX 75001" -283572,Apple Airpods Headphones,1,150,11/01/19 19:47,"779 2nd St, San Francisco, CA 94016" -283573,USB-C Charging Cable,1,11.95,11/30/19 18:43,"285 Pine St, Portland, ME 04101" -283574,USB-C Charging Cable,1,11.95,11/23/19 14:49,"372 Spruce St, San Francisco, CA 94016" -283575,AAA Batteries (4-pack),2,2.99,11/19/19 20:30,"228 Hill St, Austin, TX 73301" -283576,Wired Headphones,1,11.99,11/15/19 08:17,"596 River St, San Francisco, CA 94016" -283577,Google Phone,1,600,11/28/19 22:06,"104 Church St, Los Angeles, CA 90001" -283577,USB-C Charging Cable,1,11.95,11/28/19 22:06,"104 Church St, Los Angeles, CA 90001" -283577,Wired Headphones,1,11.99,11/28/19 22:06,"104 Church St, Los Angeles, CA 90001" -283578,USB-C Charging Cable,1,11.95,11/03/19 12:48,"901 Madison St, New York City, NY 10001" -283579,34in Ultrawide Monitor,1,379.99,11/13/19 13:12,"617 River St, Los Angeles, CA 90001" -283580,Lightning Charging Cable,1,14.95,11/01/19 10:52,"352 1st St, San Francisco, CA 94016" -283581,AAA Batteries (4-pack),1,2.99,11/11/19 01:24,"721 Pine St, New York City, NY 10001" -283582,iPhone,1,700,11/16/19 23:13,"480 Meadow St, San Francisco, CA 94016" -283582,Wired Headphones,1,11.99,11/16/19 23:13,"480 Meadow St, San Francisco, CA 94016" -283583,Lightning Charging Cable,1,14.95,11/17/19 22:57,"233 Meadow St, Boston, MA 02215" -283584,AA Batteries (4-pack),1,3.84,11/03/19 10:19,"738 Spruce St, Atlanta, GA 30301" -283585,Wired Headphones,1,11.99,11/29/19 09:40,"534 Main St, San Francisco, CA 94016" -283585,27in FHD Monitor,1,149.99,11/29/19 09:40,"534 Main St, San Francisco, CA 94016" -283586,Wired Headphones,1,11.99,11/26/19 07:51,"787 10th St, Portland, OR 97035" -283587,20in Monitor,1,109.99,11/16/19 17:35,"505 Sunset St, San Francisco, CA 94016" -283588,Macbook Pro Laptop,1,1700,11/01/19 09:43,"473 Lake St, San Francisco, CA 94016" -283589,Vareebadd Phone,1,400,11/09/19 08:55,"346 11th St, Boston, MA 02215" -283590,Bose SoundSport Headphones,1,99.99,11/21/19 10:21,"104 Pine St, Los Angeles, CA 90001" -283591,Macbook Pro Laptop,1,1700,11/04/19 15:08,"781 10th St, Los Angeles, CA 90001" -283592,AAA Batteries (4-pack),1,2.99,11/07/19 14:06,"82 10th St, Dallas, TX 75001" -283593,iPhone,1,700,11/16/19 17:32,"643 Dogwood St, Los Angeles, CA 90001" -283594,Flatscreen TV,1,300,11/10/19 18:52,"219 Cherry St, New York City, NY 10001" -283595,Apple Airpods Headphones,1,150,11/04/19 14:35,"199 Spruce St, Portland, OR 97035" -283596,Wired Headphones,1,11.99,11/22/19 11:21,"521 Lake St, New York City, NY 10001" -283597,iPhone,1,700,11/26/19 21:30,"854 Park St, San Francisco, CA 94016" -283598,AA Batteries (4-pack),1,3.84,11/29/19 19:32,"278 1st St, Atlanta, GA 30301" -283599,Bose SoundSport Headphones,1,99.99,11/22/19 00:17,"638 11th St, San Francisco, CA 94016" -283600,Macbook Pro Laptop,1,1700,11/30/19 09:37,"532 Jefferson St, Atlanta, GA 30301" -283601,27in FHD Monitor,1,149.99,11/23/19 14:02,"629 Madison St, Seattle, WA 98101" -283602,Macbook Pro Laptop,1,1700,11/19/19 22:07,"483 River St, Dallas, TX 75001" -283603,Lightning Charging Cable,1,14.95,11/23/19 17:44,"636 12th St, Los Angeles, CA 90001" -283604,34in Ultrawide Monitor,1,379.99,11/18/19 11:16,"547 Jackson St, New York City, NY 10001" -283605,Wired Headphones,1,11.99,11/23/19 20:02,"828 Center St, Boston, MA 02215" -283606,AA Batteries (4-pack),1,3.84,11/23/19 18:09,"512 6th St, Seattle, WA 98101" -283607,Lightning Charging Cable,1,14.95,11/28/19 13:57,"349 Cherry St, San Francisco, CA 94016" -283608,AA Batteries (4-pack),1,3.84,11/12/19 17:30,"22 Park St, San Francisco, CA 94016" -283609,Apple Airpods Headphones,1,150,11/08/19 14:22,"899 4th St, Boston, MA 02215" -283610,iPhone,1,700,11/08/19 19:13,"695 Ridge St, Atlanta, GA 30301" -283611,Bose SoundSport Headphones,1,99.99,11/29/19 13:08,"616 Church St, Boston, MA 02215" -283612,Bose SoundSport Headphones,1,99.99,11/04/19 06:06,"663 West St, New York City, NY 10001" -283613,AA Batteries (4-pack),3,3.84,11/17/19 19:17,"61 8th St, San Francisco, CA 94016" -283613,Macbook Pro Laptop,1,1700,11/17/19 19:17,"61 8th St, San Francisco, CA 94016" -283614,Bose SoundSport Headphones,1,99.99,11/15/19 18:07,"770 Washington St, Atlanta, GA 30301" -283615,AA Batteries (4-pack),1,3.84,11/18/19 17:34,"701 Hickory St, New York City, NY 10001" -283616,Apple Airpods Headphones,1,150,11/03/19 14:23,"149 Lincoln St, Atlanta, GA 30301" -283617,Wired Headphones,1,11.99,11/12/19 15:51,"413 Forest St, San Francisco, CA 94016" -283618,AAA Batteries (4-pack),3,2.99,11/12/19 13:02,"289 Lake St, New York City, NY 10001" -283619,Wired Headphones,1,11.99,11/14/19 13:21,"595 Wilson St, Los Angeles, CA 90001" -283620,USB-C Charging Cable,1,11.95,11/09/19 21:47,"476 Walnut St, San Francisco, CA 94016" -283621,Apple Airpods Headphones,1,150,11/10/19 15:08,"332 Forest St, Los Angeles, CA 90001" -283622,USB-C Charging Cable,1,11.95,11/26/19 02:57,"910 11th St, San Francisco, CA 94016" -283622,Flatscreen TV,1,300,11/26/19 02:57,"910 11th St, San Francisco, CA 94016" -283623,AAA Batteries (4-pack),1,2.99,11/13/19 17:48,"839 7th St, Seattle, WA 98101" -283623,Wired Headphones,1,11.99,11/13/19 17:48,"839 7th St, Seattle, WA 98101" -283624,AAA Batteries (4-pack),1,2.99,11/07/19 12:24,"431 Spruce St, San Francisco, CA 94016" -283625,AA Batteries (4-pack),1,3.84,11/07/19 21:24,"454 6th St, Los Angeles, CA 90001" -283626,AAA Batteries (4-pack),1,2.99,11/14/19 12:36,"267 Maple St, Los Angeles, CA 90001" -283627,USB-C Charging Cable,1,11.95,11/07/19 22:33,"651 Jackson St, San Francisco, CA 94016" -283628,iPhone,1,700,11/12/19 08:13,"696 Spruce St, San Francisco, CA 94016" -283629,AAA Batteries (4-pack),1,2.99,11/27/19 10:31,"558 Lincoln St, New York City, NY 10001" -283630,USB-C Charging Cable,2,11.95,11/10/19 13:33,"880 8th St, San Francisco, CA 94016" -283631,USB-C Charging Cable,1,11.95,11/28/19 18:03,"621 Center St, San Francisco, CA 94016" -283632,AAA Batteries (4-pack),3,2.99,11/18/19 18:16,"419 2nd St, Atlanta, GA 30301" -283633,iPhone,1,700,11/04/19 13:06,"578 Center St, Boston, MA 02215" -283634,USB-C Charging Cable,1,11.95,11/10/19 18:44,"377 2nd St, Seattle, WA 98101" -283635,Wired Headphones,1,11.99,11/09/19 11:00,"608 Wilson St, Seattle, WA 98101" -283636,Google Phone,1,600,11/09/19 14:35,"296 4th St, Portland, OR 97035" -283637,Lightning Charging Cable,1,14.95,11/08/19 18:43,"171 Jackson St, Dallas, TX 75001" -283638,27in 4K Gaming Monitor,1,389.99,11/15/19 09:34,"732 9th St, San Francisco, CA 94016" -283639,27in 4K Gaming Monitor,1,389.99,11/26/19 10:26,"634 Hickory St, Boston, MA 02215" -283640,Macbook Pro Laptop,1,1700,11/05/19 00:14,"581 Elm St, Austin, TX 73301" -283641,AA Batteries (4-pack),1,3.84,11/14/19 12:00,"866 Wilson St, San Francisco, CA 94016" -283642,Bose SoundSport Headphones,1,99.99,11/23/19 19:04,"305 Maple St, Los Angeles, CA 90001" -283643,27in FHD Monitor,1,149.99,11/18/19 14:17,"564 Highland St, San Francisco, CA 94016" -283644,AA Batteries (4-pack),2,3.84,11/26/19 17:42,"674 South St, Portland, OR 97035" -283645,AAA Batteries (4-pack),2,2.99,11/07/19 17:55,"106 2nd St, New York City, NY 10001" -283646,34in Ultrawide Monitor,1,379.99,11/06/19 11:13,"943 11th St, Atlanta, GA 30301" -283647,Lightning Charging Cable,1,14.95,11/02/19 11:26,"714 Madison St, San Francisco, CA 94016" -283648,USB-C Charging Cable,1,11.95,11/14/19 08:55,"821 Main St, Dallas, TX 75001" -283649,Lightning Charging Cable,1,14.95,11/04/19 10:46,"592 Church St, Atlanta, GA 30301" -283650,AA Batteries (4-pack),1,3.84,11/22/19 10:50,"616 South St, Atlanta, GA 30301" -283650,Apple Airpods Headphones,1,150,11/22/19 10:50,"616 South St, Atlanta, GA 30301" -283651,Lightning Charging Cable,1,14.95,11/18/19 16:43,"497 Wilson St, Austin, TX 73301" -283652,Vareebadd Phone,1,400,11/09/19 10:14,"367 River St, Austin, TX 73301" -283653,Bose SoundSport Headphones,1,99.99,11/02/19 18:13,"532 11th St, Boston, MA 02215" -283654,Wired Headphones,1,11.99,11/27/19 23:29,"361 Spruce St, San Francisco, CA 94016" -283655,Lightning Charging Cable,2,14.95,11/19/19 19:27,"613 Hill St, Portland, OR 97035" -283656,USB-C Charging Cable,1,11.95,11/23/19 16:38,"117 Lincoln St, San Francisco, CA 94016" -283657,Bose SoundSport Headphones,1,99.99,11/22/19 01:02,"739 Spruce St, Seattle, WA 98101" -283658,USB-C Charging Cable,1,11.95,11/29/19 23:30,"226 Hill St, Los Angeles, CA 90001" -283659,Apple Airpods Headphones,1,150,11/08/19 17:58,"730 Willow St, Boston, MA 02215" -283660,Apple Airpods Headphones,1,150,11/07/19 17:44,"114 Park St, Austin, TX 73301" -283661,AA Batteries (4-pack),1,3.84,11/13/19 16:14,"767 11th St, New York City, NY 10001" -283662,Bose SoundSport Headphones,1,99.99,11/24/19 20:06,"570 6th St, San Francisco, CA 94016" -283663,27in FHD Monitor,1,149.99,11/18/19 11:12,"742 Adams St, Boston, MA 02215" -283664,Macbook Pro Laptop,1,1700,11/22/19 13:58,"686 Lincoln St, Los Angeles, CA 90001" -283665,34in Ultrawide Monitor,1,379.99,11/20/19 20:24,"421 Hill St, Los Angeles, CA 90001" -283666,AA Batteries (4-pack),1,3.84,11/07/19 14:01,"568 Spruce St, Los Angeles, CA 90001" -283667,Apple Airpods Headphones,1,150,11/15/19 12:34,"872 14th St, Atlanta, GA 30301" -283668,Lightning Charging Cable,1,14.95,11/18/19 10:40,"797 River St, Portland, OR 97035" -283669,Lightning Charging Cable,1,14.95,11/27/19 18:40,"184 Sunset St, Los Angeles, CA 90001" -283670,34in Ultrawide Monitor,1,379.99,11/06/19 11:23,"503 Pine St, New York City, NY 10001" -283671,27in FHD Monitor,1,149.99,11/03/19 13:58,"871 Lake St, Dallas, TX 75001" -283672,Vareebadd Phone,1,400,11/03/19 23:56,"460 10th St, San Francisco, CA 94016" -283673,Macbook Pro Laptop,1,1700,11/02/19 17:49,"145 Elm St, Portland, OR 97035" -283674,USB-C Charging Cable,1,11.95,11/14/19 17:13,"698 13th St, Boston, MA 02215" -283675,27in 4K Gaming Monitor,1,389.99,11/07/19 15:05,"29 Highland St, Portland, OR 97035" -283676,34in Ultrawide Monitor,1,379.99,11/11/19 01:12,"451 Lincoln St, Dallas, TX 75001" -283677,Lightning Charging Cable,1,14.95,11/07/19 13:40,"324 Adams St, New York City, NY 10001" -283678,AA Batteries (4-pack),1,3.84,11/21/19 14:54,"170 1st St, Dallas, TX 75001" -283679,Macbook Pro Laptop,1,1700,11/19/19 15:19,"836 Washington St, New York City, NY 10001" -283680,Google Phone,1,600,11/23/19 13:27,"510 Willow St, Los Angeles, CA 90001" -283681,Bose SoundSport Headphones,1,99.99,11/30/19 04:46,"796 Cherry St, Los Angeles, CA 90001" -283681,20in Monitor,1,109.99,11/30/19 04:46,"796 Cherry St, Los Angeles, CA 90001" -283682,Lightning Charging Cable,1,14.95,11/16/19 15:43,"414 Willow St, San Francisco, CA 94016" -283683,iPhone,1,700,11/09/19 02:44,"429 7th St, San Francisco, CA 94016" -283683,Lightning Charging Cable,1,14.95,11/09/19 02:44,"429 7th St, San Francisco, CA 94016" -283683,Apple Airpods Headphones,1,150,11/09/19 02:44,"429 7th St, San Francisco, CA 94016" -283684,Apple Airpods Headphones,1,150,11/17/19 13:48,"15 Adams St, San Francisco, CA 94016" -283685,AAA Batteries (4-pack),1,2.99,11/10/19 01:57,"742 Elm St, Austin, TX 73301" -283686,20in Monitor,1,109.99,11/09/19 15:02,"743 4th St, Los Angeles, CA 90001" -283687,Wired Headphones,2,11.99,11/06/19 16:49,"464 Lake St, San Francisco, CA 94016" -283688,Google Phone,1,600,11/04/19 13:04,"367 1st St, New York City, NY 10001" -283689,AAA Batteries (4-pack),1,2.99,12/01/19 03:28,"848 Walnut St, San Francisco, CA 94016" -283690,Bose SoundSport Headphones,1,99.99,11/23/19 18:30,"439 Cherry St, San Francisco, CA 94016" -283691,AA Batteries (4-pack),1,3.84,11/02/19 09:59,"195 Lincoln St, Boston, MA 02215" -283692,Bose SoundSport Headphones,1,99.99,11/19/19 21:18,"465 Chestnut St, Los Angeles, CA 90001" -283693,USB-C Charging Cable,2,11.95,11/24/19 03:53,"678 Hickory St, San Francisco, CA 94016" -283694,Apple Airpods Headphones,1,150,11/07/19 14:11,"825 Maple St, Austin, TX 73301" -283695,Wired Headphones,1,11.99,11/23/19 12:28,"841 10th St, Boston, MA 02215" -283696,Lightning Charging Cable,1,14.95,11/04/19 11:21,"307 7th St, Austin, TX 73301" -283697,Wired Headphones,1,11.99,11/24/19 20:15,"513 Spruce St, Boston, MA 02215" -283698,Wired Headphones,1,11.99,11/16/19 20:17,"398 Cherry St, Austin, TX 73301" -283699,Bose SoundSport Headphones,1,99.99,11/24/19 08:41,"662 Madison St, Los Angeles, CA 90001" -283700,20in Monitor,1,109.99,11/18/19 15:51,"648 Johnson St, Atlanta, GA 30301" -283701,Apple Airpods Headphones,1,150,11/23/19 20:16,"119 10th St, New York City, NY 10001" -283702,Wired Headphones,1,11.99,11/19/19 20:46,"432 Washington St, Los Angeles, CA 90001" -283703,USB-C Charging Cable,1,11.95,11/24/19 22:20,"22 Washington St, Atlanta, GA 30301" -283704,Apple Airpods Headphones,1,150,11/14/19 18:33,"256 13th St, San Francisco, CA 94016" -283705,Apple Airpods Headphones,1,150,11/21/19 13:01,"680 Cherry St, San Francisco, CA 94016" -283706,AA Batteries (4-pack),1,3.84,11/21/19 22:35,"892 Church St, Boston, MA 02215" -283707,AA Batteries (4-pack),1,3.84,11/02/19 21:46,"789 Walnut St, New York City, NY 10001" -283708,AAA Batteries (4-pack),3,2.99,11/02/19 00:46,"950 13th St, San Francisco, CA 94016" -283709,AA Batteries (4-pack),2,3.84,11/01/19 21:44,"220 Adams St, San Francisco, CA 94016" -283710,Wired Headphones,1,11.99,11/06/19 10:18,"125 8th St, Dallas, TX 75001" -283711,20in Monitor,1,109.99,11/15/19 19:44,"716 Washington St, San Francisco, CA 94016" -283712,iPhone,1,700,11/28/19 10:26,"771 Cherry St, San Francisco, CA 94016" -283713,34in Ultrawide Monitor,1,379.99,11/20/19 16:51,"554 4th St, Los Angeles, CA 90001" -283714,Flatscreen TV,1,300,11/23/19 17:58,"574 6th St, Boston, MA 02215" -283715,AA Batteries (4-pack),1,3.84,11/01/19 08:08,"291 7th St, San Francisco, CA 94016" -283716,Apple Airpods Headphones,1,150,11/16/19 09:29,"786 10th St, Portland, ME 04101" -283717,AA Batteries (4-pack),1,3.84,11/14/19 23:10,"107 Cedar St, San Francisco, CA 94016" -283718,AA Batteries (4-pack),3,3.84,11/05/19 15:20,"834 Center St, New York City, NY 10001" -283719,AA Batteries (4-pack),1,3.84,11/28/19 18:50,"616 5th St, San Francisco, CA 94016" -283720,27in 4K Gaming Monitor,1,389.99,11/12/19 13:55,"523 Chestnut St, Dallas, TX 75001" -283721,Apple Airpods Headphones,1,150,11/14/19 23:44,"607 Lincoln St, Seattle, WA 98101" -283722,AAA Batteries (4-pack),1,2.99,11/15/19 10:00,"18 Adams St, Atlanta, GA 30301" -283723,Flatscreen TV,1,300,11/11/19 07:37,"838 Lake St, Atlanta, GA 30301" -283724,27in 4K Gaming Monitor,1,389.99,11/13/19 22:02,"652 Ridge St, Seattle, WA 98101" -283725,Bose SoundSport Headphones,1,99.99,11/16/19 20:46,"313 Washington St, New York City, NY 10001" -283726,AA Batteries (4-pack),1,3.84,11/19/19 10:05,"582 Cherry St, Portland, ME 04101" -283727,Bose SoundSport Headphones,1,99.99,11/25/19 20:45,"158 Spruce St, Los Angeles, CA 90001" -283728,AAA Batteries (4-pack),3,2.99,11/03/19 12:42,"703 9th St, New York City, NY 10001" -283729,Wired Headphones,1,11.99,11/21/19 06:13,"720 Willow St, Portland, OR 97035" -283730,Flatscreen TV,1,300,11/04/19 17:59,"295 14th St, New York City, NY 10001" -283731,AAA Batteries (4-pack),1,2.99,11/05/19 13:40,"276 11th St, Boston, MA 02215" -283732,Bose SoundSport Headphones,1,99.99,11/04/19 18:04,"116 Hill St, Portland, OR 97035" -283733,Lightning Charging Cable,2,14.95,11/07/19 12:27,"828 Center St, New York City, NY 10001" -283734,Apple Airpods Headphones,1,150,11/04/19 07:11,"540 5th St, San Francisco, CA 94016" -283735,Flatscreen TV,1,300,11/16/19 12:34,"974 14th St, New York City, NY 10001" -283736,AA Batteries (4-pack),2,3.84,11/08/19 10:11,"135 2nd St, Atlanta, GA 30301" -283737,AA Batteries (4-pack),2,3.84,11/25/19 23:16,"117 Elm St, New York City, NY 10001" -283738,Flatscreen TV,1,300,11/26/19 16:49,"744 11th St, New York City, NY 10001" -283739,Flatscreen TV,1,300,11/06/19 12:13,"644 Madison St, Dallas, TX 75001" -283740,USB-C Charging Cable,1,11.95,11/03/19 19:45,"80 Main St, San Francisco, CA 94016" -283741,USB-C Charging Cable,1,11.95,11/29/19 11:41,"464 Elm St, Boston, MA 02215" -283742,Bose SoundSport Headphones,1,99.99,11/02/19 17:07,"287 River St, San Francisco, CA 94016" -283743,AAA Batteries (4-pack),3,2.99,11/04/19 12:00,"117 Hill St, Los Angeles, CA 90001" -283744,27in FHD Monitor,1,149.99,11/30/19 14:05,"230 Cherry St, Los Angeles, CA 90001" -283745,27in FHD Monitor,1,149.99,11/26/19 16:19,"273 South St, Seattle, WA 98101" -283746,Wired Headphones,1,11.99,11/08/19 17:40,"364 2nd St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -283747,Lightning Charging Cable,1,14.95,11/11/19 18:22,"703 Spruce St, Los Angeles, CA 90001" -283748,AA Batteries (4-pack),1,3.84,11/10/19 20:37,"886 5th St, Boston, MA 02215" -283749,Lightning Charging Cable,1,14.95,11/10/19 19:45,"336 6th St, Los Angeles, CA 90001" -283749,Apple Airpods Headphones,1,150,11/10/19 19:45,"336 6th St, Los Angeles, CA 90001" -283750,AA Batteries (4-pack),1,3.84,11/03/19 20:49,"211 14th St, New York City, NY 10001" -283751,AAA Batteries (4-pack),3,2.99,11/25/19 08:58,"930 River St, San Francisco, CA 94016" -283752,iPhone,1,700,11/21/19 10:48,"943 Lakeview St, Atlanta, GA 30301" -283752,Apple Airpods Headphones,1,150,11/21/19 10:48,"943 Lakeview St, Atlanta, GA 30301" -283753,27in 4K Gaming Monitor,1,389.99,11/28/19 12:18,"35 Hill St, Los Angeles, CA 90001" -283754,AA Batteries (4-pack),1,3.84,11/04/19 16:16,"945 Hickory St, Seattle, WA 98101" -283755,Apple Airpods Headphones,1,150,11/22/19 14:35,"751 Lincoln St, Seattle, WA 98101" -283756,AA Batteries (4-pack),1,3.84,11/10/19 21:03,"829 Wilson St, Atlanta, GA 30301" -283757,USB-C Charging Cable,1,11.95,11/16/19 00:38,"785 Highland St, Atlanta, GA 30301" -283758,Wired Headphones,1,11.99,11/12/19 07:56,"491 10th St, San Francisco, CA 94016" -283759,Apple Airpods Headphones,1,150,11/24/19 13:21,"451 Cherry St, Austin, TX 73301" -283760,Apple Airpods Headphones,1,150,11/03/19 22:35,"497 12th St, New York City, NY 10001" -283761,Vareebadd Phone,1,400,11/25/19 15:42,"532 13th St, Portland, OR 97035" -283762,Lightning Charging Cable,1,14.95,11/02/19 20:48,"946 12th St, Los Angeles, CA 90001" -283763,AA Batteries (4-pack),1,3.84,11/10/19 12:45,"843 Johnson St, San Francisco, CA 94016" -283764,Flatscreen TV,1,300,11/05/19 19:04,"262 Park St, San Francisco, CA 94016" -283765,Apple Airpods Headphones,1,150,11/18/19 23:24,"96 7th St, San Francisco, CA 94016" -283766,AAA Batteries (4-pack),1,2.99,11/24/19 09:34,"189 Ridge St, San Francisco, CA 94016" -283767,34in Ultrawide Monitor,1,379.99,11/01/19 14:03,"947 North St, New York City, NY 10001" -283768,Bose SoundSport Headphones,1,99.99,11/09/19 21:22,"238 Johnson St, San Francisco, CA 94016" -283769,Wired Headphones,1,11.99,11/18/19 10:04,"597 West St, Los Angeles, CA 90001" -283770,Flatscreen TV,1,300,11/21/19 15:35,"582 Hickory St, San Francisco, CA 94016" -283771,AAA Batteries (4-pack),1,2.99,11/18/19 12:10,"346 6th St, Los Angeles, CA 90001" -283772,Google Phone,1,600,11/28/19 19:20,"668 Lake St, San Francisco, CA 94016" -283773,USB-C Charging Cable,1,11.95,11/26/19 10:49,"523 Wilson St, Boston, MA 02215" -283774,Bose SoundSport Headphones,1,99.99,11/20/19 15:31,"234 6th St, San Francisco, CA 94016" -283775,Apple Airpods Headphones,1,150,11/21/19 23:32,"685 Elm St, San Francisco, CA 94016" -283776,27in FHD Monitor,1,149.99,11/21/19 22:28,"754 1st St, San Francisco, CA 94016" -283777,34in Ultrawide Monitor,1,379.99,11/06/19 21:12,"344 Highland St, Seattle, WA 98101" -283778,Lightning Charging Cable,1,14.95,11/12/19 13:31,"135 Sunset St, Los Angeles, CA 90001" -283779,Wired Headphones,2,11.99,11/23/19 21:06,"937 4th St, Los Angeles, CA 90001" -283780,27in FHD Monitor,1,149.99,11/22/19 09:07,"365 Lake St, Boston, MA 02215" -283781,Bose SoundSport Headphones,1,99.99,11/17/19 23:08,"251 Forest St, Portland, OR 97035" -283782,Apple Airpods Headphones,1,150,11/08/19 22:59,"412 Willow St, San Francisco, CA 94016" -283783,AAA Batteries (4-pack),1,2.99,11/04/19 11:09,"474 Jackson St, Los Angeles, CA 90001" -283784,Flatscreen TV,1,300,11/06/19 22:12,"535 Johnson St, Seattle, WA 98101" -283785,AA Batteries (4-pack),1,3.84,11/14/19 17:42,"964 13th St, Los Angeles, CA 90001" -283786,27in FHD Monitor,1,149.99,11/20/19 00:15,"994 4th St, San Francisco, CA 94016" -283787,AAA Batteries (4-pack),2,2.99,11/09/19 17:28,"483 West St, New York City, NY 10001" -283788,Apple Airpods Headphones,1,150,11/25/19 11:10,"735 11th St, San Francisco, CA 94016" -283789,USB-C Charging Cable,1,11.95,11/20/19 11:57,"497 2nd St, Seattle, WA 98101" -283790,USB-C Charging Cable,1,11.95,11/19/19 17:47,"703 4th St, Portland, OR 97035" -283791,AA Batteries (4-pack),1,3.84,11/17/19 19:48,"491 2nd St, Portland, OR 97035" -283792,34in Ultrawide Monitor,1,379.99,11/28/19 12:47,"431 10th St, Boston, MA 02215" -283793,AAA Batteries (4-pack),1,2.99,11/20/19 14:19,"121 Spruce St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -283794,AA Batteries (4-pack),1,3.84,11/29/19 10:31,"736 Park St, Los Angeles, CA 90001" -283795,Google Phone,1,600,11/28/19 17:51,"281 Chestnut St, New York City, NY 10001" -283796,20in Monitor,1,109.99,11/29/19 17:13,"809 Jefferson St, San Francisco, CA 94016" -283797,USB-C Charging Cable,2,11.95,11/16/19 02:34,"962 Lincoln St, Austin, TX 73301" -283798,Wired Headphones,1,11.99,11/24/19 10:51,"725 Highland St, Los Angeles, CA 90001" -283798,Macbook Pro Laptop,1,1700,11/24/19 10:51,"725 Highland St, Los Angeles, CA 90001" -283799,ThinkPad Laptop,1,999.99,11/17/19 17:49,"704 13th St, San Francisco, CA 94016" -283800,AAA Batteries (4-pack),1,2.99,11/02/19 08:18,"989 Washington St, Portland, OR 97035" -283801,Apple Airpods Headphones,1,150,11/30/19 13:01,"833 Lake St, Dallas, TX 75001" -283802,Google Phone,1,600,11/13/19 21:43,"380 Johnson St, Austin, TX 73301" -283803,AAA Batteries (4-pack),1,2.99,11/12/19 19:49,"757 Elm St, Atlanta, GA 30301" -283804,Lightning Charging Cable,1,14.95,11/24/19 21:45,"853 Madison St, San Francisco, CA 94016" -283805,AAA Batteries (4-pack),1,2.99,11/08/19 16:47,"756 Johnson St, Seattle, WA 98101" -283806,AAA Batteries (4-pack),1,2.99,11/21/19 16:07,"398 Forest St, San Francisco, CA 94016" -283807,Lightning Charging Cable,1,14.95,11/07/19 11:50,"964 Willow St, San Francisco, CA 94016" -283808,AA Batteries (4-pack),1,3.84,11/04/19 14:35,"33 Jefferson St, San Francisco, CA 94016" -283809,ThinkPad Laptop,1,999.99,11/26/19 15:27,"578 1st St, San Francisco, CA 94016" -283810,Macbook Pro Laptop,1,1700,11/05/19 09:41,"868 South St, Atlanta, GA 30301" -283811,Wired Headphones,1,11.99,11/05/19 22:44,"777 Wilson St, San Francisco, CA 94016" -283812,AAA Batteries (4-pack),2,2.99,11/13/19 00:58,"493 Johnson St, Atlanta, GA 30301" -283813,Lightning Charging Cable,1,14.95,11/21/19 14:36,"960 River St, Seattle, WA 98101" -283814,Lightning Charging Cable,1,14.95,11/23/19 14:01,"524 Willow St, Portland, OR 97035" -283815,iPhone,1,700,11/01/19 14:17,"137 Cherry St, Boston, MA 02215" -283816,Lightning Charging Cable,1,14.95,11/30/19 20:07,"880 Pine St, San Francisco, CA 94016" -283817,27in FHD Monitor,1,149.99,11/02/19 15:04,"357 Main St, Boston, MA 02215" -283818,Bose SoundSport Headphones,1,99.99,11/07/19 22:23,"472 Lakeview St, Boston, MA 02215" -283819,20in Monitor,1,109.99,11/01/19 18:45,"38 Spruce St, San Francisco, CA 94016" -283820,34in Ultrawide Monitor,1,379.99,11/27/19 13:02,"785 Adams St, New York City, NY 10001" -283821,Macbook Pro Laptop,1,1700,11/06/19 13:47,"594 Spruce St, Portland, OR 97035" -283821,USB-C Charging Cable,1,11.95,11/06/19 13:47,"594 Spruce St, Portland, OR 97035" -283822,20in Monitor,1,109.99,11/05/19 09:14,"841 South St, New York City, NY 10001" -283823,Lightning Charging Cable,1,14.95,11/24/19 14:49,"67 Jefferson St, San Francisco, CA 94016" -283824,AAA Batteries (4-pack),1,2.99,11/04/19 19:57,"299 South St, Boston, MA 02215" -283825,AA Batteries (4-pack),1,3.84,11/21/19 12:29,"369 Main St, Los Angeles, CA 90001" -283826,Macbook Pro Laptop,1,1700,11/16/19 10:50,"967 Adams St, New York City, NY 10001" -283827,Lightning Charging Cable,1,14.95,11/15/19 21:24,"180 Maple St, Austin, TX 73301" -283828,Wired Headphones,1,11.99,11/19/19 10:11,"760 Lakeview St, Seattle, WA 98101" -283829,Macbook Pro Laptop,1,1700,11/24/19 22:16,"3 River St, Seattle, WA 98101" -283830,AAA Batteries (4-pack),1,2.99,11/05/19 21:33,"672 Spruce St, Seattle, WA 98101" -283831,USB-C Charging Cable,1,11.95,11/23/19 18:45,"568 Washington St, Los Angeles, CA 90001" -283832,AAA Batteries (4-pack),1,2.99,11/25/19 13:55,"396 Willow St, San Francisco, CA 94016" -283833,Lightning Charging Cable,1,14.95,11/11/19 15:16,"29 Lake St, Los Angeles, CA 90001" -283834,AA Batteries (4-pack),1,3.84,11/17/19 15:19,"729 12th St, New York City, NY 10001" -283835,Macbook Pro Laptop,1,1700,11/01/19 17:08,"533 West St, San Francisco, CA 94016" -283836,Apple Airpods Headphones,1,150,11/14/19 12:47,"444 Main St, Los Angeles, CA 90001" -283837,AAA Batteries (4-pack),1,2.99,11/11/19 15:06,"439 7th St, Atlanta, GA 30301" -283838,AAA Batteries (4-pack),5,2.99,11/08/19 17:27,"845 North St, Los Angeles, CA 90001" -283839,AA Batteries (4-pack),1,3.84,11/08/19 05:56,"604 Center St, Dallas, TX 75001" -283840,27in FHD Monitor,1,149.99,11/27/19 18:03,"486 Chestnut St, San Francisco, CA 94016" -283841,27in FHD Monitor,1,149.99,11/17/19 10:38,"335 Dogwood St, San Francisco, CA 94016" -283842,USB-C Charging Cable,1,11.95,11/22/19 14:15,"263 Lakeview St, Seattle, WA 98101" -283843,Wired Headphones,1,11.99,11/19/19 23:13,"850 Elm St, New York City, NY 10001" -283843,Wired Headphones,1,11.99,11/19/19 23:13,"850 Elm St, New York City, NY 10001" -283844,Bose SoundSport Headphones,1,99.99,11/10/19 21:53,"76 Ridge St, New York City, NY 10001" -283845,AA Batteries (4-pack),1,3.84,11/26/19 12:00,"382 Hickory St, San Francisco, CA 94016" -283846,Lightning Charging Cable,1,14.95,11/24/19 16:58,"231 North St, Atlanta, GA 30301" -283847,Wired Headphones,1,11.99,11/18/19 08:28,"463 Sunset St, Los Angeles, CA 90001" -283848,27in FHD Monitor,1,149.99,11/12/19 13:58,"513 12th St, Atlanta, GA 30301" -283849,27in 4K Gaming Monitor,1,389.99,11/15/19 20:52,"170 Dogwood St, Austin, TX 73301" -283850,AA Batteries (4-pack),1,3.84,11/10/19 06:40,"276 North St, Portland, OR 97035" -283851,Wired Headphones,1,11.99,11/05/19 15:58,"598 6th St, San Francisco, CA 94016" -283852,Bose SoundSport Headphones,1,99.99,11/10/19 15:28,"618 Ridge St, Dallas, TX 75001" -283853,Vareebadd Phone,1,400,11/23/19 13:07,"713 Forest St, Atlanta, GA 30301" -283853,USB-C Charging Cable,1,11.95,11/23/19 13:07,"713 Forest St, Atlanta, GA 30301" -283854,Bose SoundSport Headphones,1,99.99,11/01/19 18:55,"378 7th St, Dallas, TX 75001" -283855,AA Batteries (4-pack),1,3.84,11/22/19 13:25,"372 Jackson St, San Francisco, CA 94016" -283856,AA Batteries (4-pack),1,3.84,11/13/19 10:33,"179 12th St, Seattle, WA 98101" -283857,Apple Airpods Headphones,1,150,11/01/19 19:44,"737 9th St, Los Angeles, CA 90001" -283858,AA Batteries (4-pack),1,3.84,12/01/19 00:02,"85 Wilson St, Portland, OR 97035" -283859,USB-C Charging Cable,1,11.95,11/03/19 18:13,"27 12th St, Dallas, TX 75001" -283860,AAA Batteries (4-pack),1,2.99,11/30/19 14:28,"609 Cedar St, Austin, TX 73301" -283861,27in FHD Monitor,1,149.99,11/28/19 18:15,"218 Walnut St, New York City, NY 10001" -283862,Lightning Charging Cable,1,14.95,11/22/19 17:56,"52 Center St, New York City, NY 10001" -283863,AAA Batteries (4-pack),1,2.99,11/24/19 19:58,"112 12th St, Dallas, TX 75001" -283864,27in FHD Monitor,1,149.99,11/27/19 18:57,"737 1st St, Seattle, WA 98101" -283865,AAA Batteries (4-pack),1,2.99,11/07/19 12:11,"82 Ridge St, San Francisco, CA 94016" -283866,Wired Headphones,2,11.99,11/14/19 16:08,"359 11th St, Austin, TX 73301" -283867,Bose SoundSport Headphones,1,99.99,11/19/19 07:34,"809 Walnut St, Austin, TX 73301" -283868,Google Phone,1,600,11/20/19 16:52,"351 River St, New York City, NY 10001" -283868,USB-C Charging Cable,1,11.95,11/20/19 16:52,"351 River St, New York City, NY 10001" -283869,27in FHD Monitor,1,149.99,11/25/19 00:39,"463 Hill St, Boston, MA 02215" -283870,iPhone,1,700,11/02/19 20:59,"240 Johnson St, Los Angeles, CA 90001" -283871,AA Batteries (4-pack),1,3.84,11/25/19 19:27,"611 Wilson St, San Francisco, CA 94016" -283872,AAA Batteries (4-pack),1,2.99,11/24/19 11:03,"473 Sunset St, San Francisco, CA 94016" -283873,27in 4K Gaming Monitor,1,389.99,11/25/19 23:29,"648 Main St, San Francisco, CA 94016" -283874,Lightning Charging Cable,1,14.95,11/23/19 21:47,"948 Center St, Los Angeles, CA 90001" -283875,AAA Batteries (4-pack),1,2.99,11/04/19 17:43,"620 Jackson St, Dallas, TX 75001" -283876,Bose SoundSport Headphones,1,99.99,11/24/19 10:26,"497 Madison St, Austin, TX 73301" -283877,USB-C Charging Cable,1,11.95,11/11/19 01:38,"414 Hickory St, New York City, NY 10001" -283878,USB-C Charging Cable,1,11.95,11/04/19 17:01,"410 Maple St, San Francisco, CA 94016" -283879,Wired Headphones,1,11.99,11/04/19 22:23,"103 1st St, Atlanta, GA 30301" -283880,Google Phone,1,600,11/27/19 17:20,"518 9th St, New York City, NY 10001" -283881,USB-C Charging Cable,1,11.95,11/09/19 11:20,"750 Wilson St, Portland, OR 97035" -283882,Wired Headphones,1,11.99,11/02/19 12:56,"657 Lake St, Boston, MA 02215" -283883,Lightning Charging Cable,1,14.95,11/18/19 17:47,"429 Washington St, Los Angeles, CA 90001" -283884,Bose SoundSport Headphones,1,99.99,11/01/19 20:40,"190 West St, Los Angeles, CA 90001" -283885,Lightning Charging Cable,1,14.95,11/28/19 15:35,"548 4th St, Austin, TX 73301" -283886,USB-C Charging Cable,1,11.95,11/30/19 18:34,"431 2nd St, Atlanta, GA 30301" -283887,Apple Airpods Headphones,1,150,11/06/19 22:05,"950 Washington St, San Francisco, CA 94016" -283888,USB-C Charging Cable,1,11.95,11/25/19 22:01,"774 Lakeview St, Boston, MA 02215" -283889,Lightning Charging Cable,1,14.95,11/24/19 19:43,"274 Highland St, San Francisco, CA 94016" -283890,AAA Batteries (4-pack),1,2.99,11/08/19 13:17,"818 Maple St, Los Angeles, CA 90001" -283891,Vareebadd Phone,1,400,11/16/19 11:07,"56 Pine St, San Francisco, CA 94016" -283892,USB-C Charging Cable,1,11.95,11/19/19 13:26,"504 Wilson St, San Francisco, CA 94016" -283893,27in FHD Monitor,1,149.99,11/20/19 19:54,"428 Washington St, San Francisco, CA 94016" -283894,Wired Headphones,1,11.99,11/27/19 12:23,"47 Wilson St, San Francisco, CA 94016" -283895,Apple Airpods Headphones,1,150,11/27/19 11:19,"812 West St, Los Angeles, CA 90001" -283896,Bose SoundSport Headphones,1,99.99,11/25/19 13:09,"300 9th St, Los Angeles, CA 90001" -283897,Apple Airpods Headphones,1,150,11/03/19 19:43,"350 Main St, Los Angeles, CA 90001" -283898,Google Phone,1,600,11/14/19 07:37,"412 14th St, Los Angeles, CA 90001" -283899,27in 4K Gaming Monitor,1,389.99,11/01/19 21:57,"827 Lake St, Austin, TX 73301" -283900,USB-C Charging Cable,1,11.95,11/01/19 06:06,"97 Walnut St, Seattle, WA 98101" -283901,AAA Batteries (4-pack),3,2.99,11/19/19 20:05,"758 Meadow St, San Francisco, CA 94016" -283902,Wired Headphones,1,11.99,11/18/19 19:30,"74 8th St, New York City, NY 10001" -283903,Bose SoundSport Headphones,1,99.99,11/17/19 12:24,"488 5th St, San Francisco, CA 94016" -283904,Wired Headphones,1,11.99,11/22/19 14:54,"769 Sunset St, San Francisco, CA 94016" -283905,Wired Headphones,1,11.99,11/04/19 11:28,"340 Cedar St, Los Angeles, CA 90001" -283906,Lightning Charging Cable,1,14.95,11/24/19 07:37,"900 Cherry St, Seattle, WA 98101" -283907,Bose SoundSport Headphones,1,99.99,11/27/19 08:15,"157 River St, Dallas, TX 75001" -283908,27in 4K Gaming Monitor,1,389.99,11/30/19 18:16,"753 Jefferson St, New York City, NY 10001" -283909,iPhone,1,700,11/23/19 20:03,"394 10th St, Austin, TX 73301" -283910,27in FHD Monitor,1,149.99,11/02/19 19:14,"642 11th St, Atlanta, GA 30301" -283911,Lightning Charging Cable,1,14.95,11/25/19 22:17,"893 Lake St, Los Angeles, CA 90001" -283912,AA Batteries (4-pack),2,3.84,11/15/19 14:52,"511 Cherry St, Boston, MA 02215" -283913,Bose SoundSport Headphones,1,99.99,11/27/19 15:51,"208 13th St, Seattle, WA 98101" -283914,AA Batteries (4-pack),1,3.84,11/01/19 17:59,"334 Spruce St, Austin, TX 73301" -283915,34in Ultrawide Monitor,1,379.99,11/02/19 13:31,"835 Lakeview St, New York City, NY 10001" -283916,Apple Airpods Headphones,1,150,11/30/19 22:50,"382 Willow St, Atlanta, GA 30301" -283917,Flatscreen TV,1,300,11/26/19 20:34,"781 Forest St, San Francisco, CA 94016" -283918,USB-C Charging Cable,1,11.95,11/15/19 20:00,"996 Jefferson St, Seattle, WA 98101" -283919,AA Batteries (4-pack),2,3.84,11/29/19 12:30,"963 11th St, San Francisco, CA 94016" -283920,AA Batteries (4-pack),1,3.84,11/17/19 23:26,"173 Washington St, San Francisco, CA 94016" -283921,Flatscreen TV,1,300,11/27/19 18:10,"761 1st St, New York City, NY 10001" -283922,AAA Batteries (4-pack),1,2.99,11/20/19 15:54,"830 9th St, Dallas, TX 75001" -283923,AAA Batteries (4-pack),3,2.99,11/11/19 09:12,"466 Spruce St, Boston, MA 02215" -283924,Flatscreen TV,1,300,11/14/19 19:02,"68 Cherry St, Atlanta, GA 30301" -283925,AAA Batteries (4-pack),4,2.99,11/13/19 20:04,"626 Walnut St, Austin, TX 73301" -283926,Lightning Charging Cable,1,14.95,11/21/19 17:51,"24 North St, San Francisco, CA 94016" -283927,USB-C Charging Cable,2,11.95,11/26/19 15:26,"819 Meadow St, Boston, MA 02215" -283928,34in Ultrawide Monitor,1,379.99,11/01/19 12:05,"287 Center St, Los Angeles, CA 90001" -283929,Apple Airpods Headphones,1,150,11/25/19 20:55,"310 Lake St, Dallas, TX 75001" -283930,Apple Airpods Headphones,1,150,11/04/19 16:18,"911 Jefferson St, Seattle, WA 98101" -283931,Lightning Charging Cable,1,14.95,11/14/19 07:39,"379 Wilson St, New York City, NY 10001" -283932,iPhone,1,700,11/04/19 01:37,"172 Jackson St, New York City, NY 10001" -283933,Lightning Charging Cable,1,14.95,11/21/19 22:39,"213 Elm St, Dallas, TX 75001" -283934,Apple Airpods Headphones,1,150,11/22/19 13:12,"829 Hickory St, San Francisco, CA 94016" -283935,Wired Headphones,1,11.99,11/27/19 09:24,"915 Hill St, Boston, MA 02215" -283936,AA Batteries (4-pack),1,3.84,11/12/19 18:07,"292 Lakeview St, San Francisco, CA 94016" -283937,AA Batteries (4-pack),1,3.84,11/25/19 17:27,"968 Spruce St, San Francisco, CA 94016" -283938,AA Batteries (4-pack),1,3.84,11/12/19 14:34,"847 6th St, San Francisco, CA 94016" -283939,AAA Batteries (4-pack),3,2.99,11/01/19 10:45,"465 Madison St, Portland, OR 97035" -283940,Lightning Charging Cable,1,14.95,11/20/19 00:09,"210 11th St, New York City, NY 10001" -283941,Flatscreen TV,1,300,11/12/19 15:24,"226 Pine St, Portland, ME 04101" -283942,27in FHD Monitor,1,149.99,11/20/19 10:30,"387 8th St, Dallas, TX 75001" -283943,Apple Airpods Headphones,1,150,11/14/19 11:32,"851 Lakeview St, Los Angeles, CA 90001" -283944,34in Ultrawide Monitor,1,379.99,11/30/19 18:09,"350 6th St, Boston, MA 02215" -283945,Wired Headphones,1,11.99,11/25/19 00:28,"453 Highland St, New York City, NY 10001" -283946,USB-C Charging Cable,1,11.95,11/27/19 21:07,"152 Hill St, Dallas, TX 75001" -283947,Apple Airpods Headphones,1,150,11/16/19 01:15,"202 1st St, Portland, OR 97035" -283948,Apple Airpods Headphones,1,150,11/21/19 20:34,"565 Chestnut St, San Francisco, CA 94016" -283948,USB-C Charging Cable,1,11.95,11/21/19 20:34,"565 Chestnut St, San Francisco, CA 94016" -283949,Bose SoundSport Headphones,1,99.99,11/16/19 18:51,"792 10th St, Dallas, TX 75001" -283950,Flatscreen TV,1,300,11/11/19 15:48,"613 Highland St, New York City, NY 10001" -283951,Bose SoundSport Headphones,1,99.99,11/06/19 21:27,"982 Cedar St, New York City, NY 10001" -283952,Lightning Charging Cable,1,14.95,11/09/19 03:10,"293 Hickory St, Seattle, WA 98101" -283953,USB-C Charging Cable,1,11.95,11/29/19 11:52,"9 Johnson St, Portland, OR 97035" -283954,Apple Airpods Headphones,1,150,11/10/19 11:19,"516 Cherry St, Atlanta, GA 30301" -283955,Bose SoundSport Headphones,1,99.99,11/16/19 05:29,"451 Cedar St, Los Angeles, CA 90001" -283956,Bose SoundSport Headphones,1,99.99,11/05/19 08:55,"948 Johnson St, Atlanta, GA 30301" -283957,Wired Headphones,1,11.99,11/01/19 23:17,"131 Meadow St, Dallas, TX 75001" -283958,Lightning Charging Cable,1,14.95,11/05/19 01:30,"769 5th St, San Francisco, CA 94016" -283959,Lightning Charging Cable,1,14.95,11/03/19 10:54,"278 Johnson St, Atlanta, GA 30301" -283960,Lightning Charging Cable,1,14.95,11/12/19 12:50,"492 Wilson St, Los Angeles, CA 90001" -283961,AA Batteries (4-pack),1,3.84,11/28/19 13:23,"187 Dogwood St, San Francisco, CA 94016" -283962,iPhone,1,700,11/09/19 16:18,"662 Hill St, New York City, NY 10001" -283963,Lightning Charging Cable,1,14.95,11/06/19 20:35,"813 Dogwood St, Portland, OR 97035" -283964,iPhone,1,700,11/10/19 22:17,"996 14th St, Atlanta, GA 30301" -283965,Flatscreen TV,1,300,11/20/19 15:27,"21 2nd St, San Francisco, CA 94016" -283966,Flatscreen TV,1,300,11/22/19 20:42,"553 14th St, Boston, MA 02215" -283967,AA Batteries (4-pack),1,3.84,11/25/19 18:21,"197 Johnson St, Seattle, WA 98101" -283968,AAA Batteries (4-pack),1,2.99,11/25/19 17:16,"366 Main St, New York City, NY 10001" -283969,Bose SoundSport Headphones,1,99.99,11/28/19 18:56,"466 Cherry St, Atlanta, GA 30301" -283970,iPhone,1,700,11/23/19 17:26,"19 5th St, Atlanta, GA 30301" -283971,Lightning Charging Cable,1,14.95,11/22/19 22:52,"690 Lincoln St, San Francisco, CA 94016" -283972,20in Monitor,1,109.99,11/30/19 17:23,"766 Lake St, Atlanta, GA 30301" -283973,AA Batteries (4-pack),1,3.84,11/19/19 20:28,"608 North St, San Francisco, CA 94016" -283974,AAA Batteries (4-pack),1,2.99,11/07/19 12:20,"969 13th St, Los Angeles, CA 90001" -283975,Macbook Pro Laptop,1,1700,11/15/19 23:41,"747 10th St, Boston, MA 02215" -283976,27in 4K Gaming Monitor,1,389.99,11/15/19 15:53,"979 Hickory St, Portland, OR 97035" -283977,Lightning Charging Cable,1,14.95,11/23/19 12:06,"798 12th St, Seattle, WA 98101" -283978,AAA Batteries (4-pack),1,2.99,11/16/19 13:15,"967 Park St, Boston, MA 02215" -283979,Lightning Charging Cable,1,14.95,11/10/19 14:04,"779 Maple St, San Francisco, CA 94016" -283980,Apple Airpods Headphones,1,150,11/20/19 14:15,"91 11th St, Seattle, WA 98101" -283981,Flatscreen TV,1,300,11/13/19 14:48,"309 Wilson St, San Francisco, CA 94016" -283982,34in Ultrawide Monitor,1,379.99,11/26/19 13:49,"349 West St, Los Angeles, CA 90001" -283983,27in FHD Monitor,1,149.99,11/30/19 09:47,"597 Main St, Seattle, WA 98101" -283984,USB-C Charging Cable,1,11.95,11/13/19 23:38,"293 Highland St, Dallas, TX 75001" -283985,AA Batteries (4-pack),1,3.84,11/16/19 00:42,"466 Hill St, Dallas, TX 75001" -283986,27in FHD Monitor,1,149.99,11/12/19 20:22,"501 West St, Portland, OR 97035" -283987,USB-C Charging Cable,1,11.95,11/21/19 12:51,"547 Hill St, Portland, OR 97035" -283988,AAA Batteries (4-pack),1,2.99,11/13/19 23:34,"37 8th St, San Francisco, CA 94016" -283989,Lightning Charging Cable,1,14.95,11/12/19 18:51,"852 River St, Portland, OR 97035" -283990,USB-C Charging Cable,1,11.95,11/13/19 12:49,"763 2nd St, San Francisco, CA 94016" -283991,iPhone,1,700,11/04/19 18:09,"310 Lakeview St, Los Angeles, CA 90001" -283991,Flatscreen TV,1,300,11/04/19 18:09,"310 Lakeview St, Los Angeles, CA 90001" -283992,AA Batteries (4-pack),1,3.84,11/17/19 21:55,"434 13th St, Dallas, TX 75001" -283993,AA Batteries (4-pack),1,3.84,11/03/19 23:09,"773 4th St, San Francisco, CA 94016" -283994,20in Monitor,1,109.99,11/29/19 23:55,"337 Park St, Boston, MA 02215" -283995,Wired Headphones,1,11.99,11/03/19 15:10,"357 West St, Austin, TX 73301" -283996,Apple Airpods Headphones,1,150,11/03/19 05:25,"495 Dogwood St, New York City, NY 10001" -283997,USB-C Charging Cable,1,11.95,11/10/19 12:03,"534 Elm St, San Francisco, CA 94016" -283998,34in Ultrawide Monitor,1,379.99,11/03/19 15:50,"513 South St, Atlanta, GA 30301" -283999,Bose SoundSport Headphones,1,99.99,11/15/19 18:30,"158 Forest St, San Francisco, CA 94016" -284000,27in 4K Gaming Monitor,1,389.99,11/28/19 18:30,"502 South St, Los Angeles, CA 90001" -284001,AAA Batteries (4-pack),1,2.99,11/22/19 14:27,"172 Johnson St, San Francisco, CA 94016" -284002,Wired Headphones,3,11.99,11/24/19 20:55,"519 Forest St, Dallas, TX 75001" -284003,USB-C Charging Cable,1,11.95,11/09/19 11:51,"146 South St, New York City, NY 10001" -284004,Apple Airpods Headphones,1,150,11/11/19 15:00,"611 Spruce St, San Francisco, CA 94016" -284005,AA Batteries (4-pack),1,3.84,11/15/19 21:11,"33 Hickory St, Boston, MA 02215" -284006,Bose SoundSport Headphones,1,99.99,11/02/19 09:24,"773 Jefferson St, San Francisco, CA 94016" -284007,27in FHD Monitor,1,149.99,11/04/19 12:27,"481 Meadow St, Boston, MA 02215" -284008,Bose SoundSport Headphones,2,99.99,11/11/19 13:03,"335 Hill St, Los Angeles, CA 90001" -284009,AAA Batteries (4-pack),2,2.99,11/09/19 17:56,"20 2nd St, Dallas, TX 75001" -284010,ThinkPad Laptop,1,999.99,11/04/19 23:36,"340 Lake St, San Francisco, CA 94016" -284011,34in Ultrawide Monitor,1,379.99,11/10/19 00:40,"923 Spruce St, New York City, NY 10001" -284012,Google Phone,1,600,11/17/19 10:10,"299 1st St, Los Angeles, CA 90001" -284012,USB-C Charging Cable,2,11.95,11/17/19 10:10,"299 1st St, Los Angeles, CA 90001" -284013,ThinkPad Laptop,1,999.99,11/04/19 09:06,"342 Lakeview St, Dallas, TX 75001" -284014,AAA Batteries (4-pack),1,2.99,11/11/19 21:30,"400 Hill St, Atlanta, GA 30301" -284015,Lightning Charging Cable,1,14.95,11/19/19 06:54,"118 Lake St, Seattle, WA 98101" -284016,AA Batteries (4-pack),1,3.84,11/13/19 20:44,"781 1st St, Austin, TX 73301" -284017,AA Batteries (4-pack),1,3.84,11/11/19 18:43,"974 Park St, Austin, TX 73301" -284018,Macbook Pro Laptop,1,1700,11/11/19 12:02,"75 Spruce St, San Francisco, CA 94016" -284019,27in 4K Gaming Monitor,1,389.99,11/30/19 21:30,"136 Dogwood St, San Francisco, CA 94016" -284020,ThinkPad Laptop,1,999.99,11/12/19 07:32,"203 9th St, Los Angeles, CA 90001" -284021,AAA Batteries (4-pack),1,2.99,11/17/19 22:05,"361 Main St, San Francisco, CA 94016" -284022,USB-C Charging Cable,2,11.95,11/09/19 19:25,"675 Adams St, San Francisco, CA 94016" -284023,Lightning Charging Cable,1,14.95,11/05/19 10:49,"17 Center St, Los Angeles, CA 90001" -284024,AA Batteries (4-pack),1,3.84,11/27/19 14:28,"683 Spruce St, Los Angeles, CA 90001" -284025,Bose SoundSport Headphones,1,99.99,11/20/19 19:46,"590 11th St, San Francisco, CA 94016" -284026,AAA Batteries (4-pack),1,2.99,11/23/19 18:20,"17 14th St, New York City, NY 10001" -284027,27in 4K Gaming Monitor,1,389.99,11/23/19 17:21,"945 North St, Portland, OR 97035" -284028,Macbook Pro Laptop,1,1700,11/20/19 13:47,"795 Madison St, Dallas, TX 75001" -284029,Flatscreen TV,1,300,11/09/19 20:34,"498 Willow St, Atlanta, GA 30301" -284030,Wired Headphones,2,11.99,11/17/19 18:44,"889 14th St, Portland, ME 04101" -284031,AA Batteries (4-pack),1,3.84,11/03/19 12:11,"487 Highland St, San Francisco, CA 94016" -284032,AAA Batteries (4-pack),2,2.99,11/13/19 03:34,"890 Meadow St, San Francisco, CA 94016" -284033,Lightning Charging Cable,1,14.95,11/21/19 12:34,"718 Hickory St, Boston, MA 02215" -284034,Bose SoundSport Headphones,1,99.99,11/07/19 09:48,"39 Forest St, New York City, NY 10001" -284035,Bose SoundSport Headphones,1,99.99,11/27/19 12:07,"663 1st St, Los Angeles, CA 90001" -284035,AA Batteries (4-pack),2,3.84,11/27/19 12:07,"663 1st St, Los Angeles, CA 90001" -284036,Flatscreen TV,1,300,11/20/19 14:37,"680 Spruce St, New York City, NY 10001" -284037,Lightning Charging Cable,1,14.95,11/15/19 17:17,"472 Walnut St, Seattle, WA 98101" -284038,AA Batteries (4-pack),1,3.84,11/20/19 13:52,"739 10th St, New York City, NY 10001" -284039,AAA Batteries (4-pack),1,2.99,11/06/19 11:47,"658 1st St, Dallas, TX 75001" -284040,ThinkPad Laptop,1,999.99,11/23/19 09:34,"764 Cherry St, Boston, MA 02215" -284041,Lightning Charging Cable,1,14.95,11/26/19 12:34,"235 Johnson St, San Francisco, CA 94016" -284042,Wired Headphones,2,11.99,11/21/19 19:27,"579 14th St, Seattle, WA 98101" -284043,AAA Batteries (4-pack),1,2.99,11/21/19 13:18,"712 North St, San Francisco, CA 94016" -284044,20in Monitor,1,109.99,11/08/19 10:29,"685 Highland St, San Francisco, CA 94016" -284045,Wired Headphones,1,11.99,11/25/19 18:05,"670 Spruce St, Seattle, WA 98101" -284046,Apple Airpods Headphones,1,150,11/07/19 12:09,"257 6th St, Seattle, WA 98101" -284047,USB-C Charging Cable,1,11.95,11/23/19 18:08,"482 14th St, Dallas, TX 75001" -284048,Lightning Charging Cable,1,14.95,11/13/19 20:45,"216 13th St, Boston, MA 02215" -284049,Macbook Pro Laptop,1,1700,11/15/19 03:54,"727 Wilson St, New York City, NY 10001" -284050,USB-C Charging Cable,1,11.95,11/11/19 11:00,"177 Highland St, New York City, NY 10001" -284051,AAA Batteries (4-pack),1,2.99,11/22/19 21:10,"716 Center St, San Francisco, CA 94016" -284052,Apple Airpods Headphones,1,150,11/29/19 20:53,"960 Lake St, Boston, MA 02215" -284053,Wired Headphones,1,11.99,11/16/19 18:29,"595 Madison St, San Francisco, CA 94016" -284054,20in Monitor,1,109.99,11/10/19 11:19,"118 Walnut St, San Francisco, CA 94016" -284055,Lightning Charging Cable,1,14.95,11/05/19 13:56,"507 Elm St, San Francisco, CA 94016" -284056,AA Batteries (4-pack),1,3.84,11/03/19 19:47,"395 Cherry St, San Francisco, CA 94016" -284057,Google Phone,1,600,11/15/19 21:04,"523 Maple St, Portland, OR 97035" -284057,USB-C Charging Cable,1,11.95,11/15/19 21:04,"523 Maple St, Portland, OR 97035" -284058,AAA Batteries (4-pack),5,2.99,11/09/19 18:14,"982 Church St, Los Angeles, CA 90001" -284059,Apple Airpods Headphones,1,150,11/13/19 17:56,"837 Dogwood St, San Francisco, CA 94016" -284060,AAA Batteries (4-pack),1,2.99,11/12/19 12:26,"355 10th St, Los Angeles, CA 90001" -284061,Apple Airpods Headphones,1,150,11/11/19 21:42,"521 9th St, Los Angeles, CA 90001" -284062,iPhone,1,700,11/09/19 12:01,"857 Adams St, San Francisco, CA 94016" -284063,AA Batteries (4-pack),1,3.84,11/19/19 17:21,"306 7th St, Seattle, WA 98101" -284064,Bose SoundSport Headphones,1,99.99,11/02/19 11:46,"521 Sunset St, Boston, MA 02215" -284064,AAA Batteries (4-pack),1,2.99,11/02/19 11:46,"521 Sunset St, Boston, MA 02215" -284065,AA Batteries (4-pack),2,3.84,11/26/19 16:24,"177 Hill St, Portland, ME 04101" -284066,27in FHD Monitor,1,149.99,11/10/19 22:13,"852 Cedar St, San Francisco, CA 94016" -284067,Apple Airpods Headphones,1,150,11/13/19 17:29,"526 8th St, Los Angeles, CA 90001" -284068,34in Ultrawide Monitor,1,379.99,11/03/19 20:17,"436 4th St, San Francisco, CA 94016" -284069,Macbook Pro Laptop,1,1700,11/03/19 22:56,"839 8th St, Dallas, TX 75001" -284070,Bose SoundSport Headphones,1,99.99,11/18/19 20:26,"828 Dogwood St, San Francisco, CA 94016" -284071,Lightning Charging Cable,1,14.95,11/28/19 19:04,"487 Spruce St, Dallas, TX 75001" -284072,27in FHD Monitor,1,149.99,11/27/19 19:47,"91 Jackson St, Dallas, TX 75001" -284073,AA Batteries (4-pack),2,3.84,11/11/19 22:29,"423 6th St, New York City, NY 10001" -284074,34in Ultrawide Monitor,1,379.99,11/21/19 22:54,"231 Forest St, Los Angeles, CA 90001" -284075,27in FHD Monitor,1,149.99,11/07/19 11:10,"587 Washington St, Seattle, WA 98101" -284076,Macbook Pro Laptop,1,1700,11/24/19 16:13,"973 10th St, Seattle, WA 98101" -284077,USB-C Charging Cable,1,11.95,11/17/19 11:38,"297 13th St, Dallas, TX 75001" -284077,AAA Batteries (4-pack),1,2.99,11/17/19 11:38,"297 13th St, Dallas, TX 75001" -284078,AA Batteries (4-pack),1,3.84,11/29/19 11:38,"55 Wilson St, San Francisco, CA 94016" -284079,Macbook Pro Laptop,1,1700,11/11/19 15:23,"541 6th St, Atlanta, GA 30301" -284080,AAA Batteries (4-pack),1,2.99,11/17/19 19:48,"473 11th St, Los Angeles, CA 90001" -284081,Wired Headphones,1,11.99,11/04/19 17:45,"445 Cedar St, Los Angeles, CA 90001" -284082,20in Monitor,1,109.99,11/30/19 22:49,"283 Ridge St, New York City, NY 10001" -284083,USB-C Charging Cable,2,11.95,11/19/19 11:50,"632 Elm St, New York City, NY 10001" -284084,iPhone,1,700,11/30/19 18:30,"537 West St, Los Angeles, CA 90001" -284085,34in Ultrawide Monitor,1,379.99,11/18/19 18:06,"198 Highland St, New York City, NY 10001" -284086,USB-C Charging Cable,1,11.95,11/07/19 01:34,"329 Madison St, Atlanta, GA 30301" -284087,Macbook Pro Laptop,1,1700,11/09/19 20:54,"590 2nd St, Los Angeles, CA 90001" -284088,Wired Headphones,1,11.99,11/14/19 23:18,"373 Park St, Dallas, TX 75001" -284089,Wired Headphones,1,11.99,11/10/19 17:14,"752 14th St, San Francisco, CA 94016" -284090,AAA Batteries (4-pack),3,2.99,11/08/19 23:12,"610 5th St, New York City, NY 10001" -284091,AAA Batteries (4-pack),2,2.99,11/09/19 22:09,"647 Park St, New York City, NY 10001" -284092,iPhone,1,700,11/27/19 17:48,"223 Willow St, Portland, ME 04101" -284093,AAA Batteries (4-pack),1,2.99,11/04/19 08:39,"855 Jefferson St, Dallas, TX 75001" -284094,27in 4K Gaming Monitor,1,389.99,11/14/19 16:48,"53 Center St, San Francisco, CA 94016" -284095,Bose SoundSport Headphones,1,99.99,11/26/19 20:46,"251 Madison St, New York City, NY 10001" -284096,Bose SoundSport Headphones,1,99.99,11/10/19 14:28,"197 Pine St, New York City, NY 10001" -284097,Wired Headphones,2,11.99,11/12/19 09:38,"509 5th St, Seattle, WA 98101" -284097,Lightning Charging Cable,1,14.95,11/12/19 09:38,"509 5th St, Seattle, WA 98101" -284098,Google Phone,1,600,11/30/19 15:44,"708 1st St, Atlanta, GA 30301" -284099,Wired Headphones,1,11.99,11/02/19 14:54,"534 Spruce St, Boston, MA 02215" -284100,iPhone,1,700,11/21/19 07:45,"866 Ridge St, Atlanta, GA 30301" -284101,AAA Batteries (4-pack),1,2.99,11/23/19 13:39,"809 Chestnut St, Portland, OR 97035" -284102,Apple Airpods Headphones,1,150,11/03/19 13:05,"811 12th St, New York City, NY 10001" -284103,Macbook Pro Laptop,1,1700,11/02/19 13:49,"258 Spruce St, Los Angeles, CA 90001" -284104,USB-C Charging Cable,1,11.95,11/04/19 22:09,"150 Walnut St, Boston, MA 02215" -284105,AA Batteries (4-pack),2,3.84,11/19/19 20:25,"246 10th St, Seattle, WA 98101" -284106,34in Ultrawide Monitor,1,379.99,11/09/19 00:39,"894 Park St, Dallas, TX 75001" -284107,AAA Batteries (4-pack),2,2.99,11/14/19 11:41,"772 11th St, San Francisco, CA 94016" -284108,Wired Headphones,1,11.99,11/25/19 13:12,"245 Meadow St, Los Angeles, CA 90001" -284109,Macbook Pro Laptop,1,1700,11/05/19 21:05,"556 Center St, Dallas, TX 75001" -284110,AA Batteries (4-pack),1,3.84,11/14/19 06:15,"91 Park St, Portland, OR 97035" -284111,27in FHD Monitor,1,149.99,11/17/19 22:36,"9 Cherry St, San Francisco, CA 94016" -284112,USB-C Charging Cable,1,11.95,11/03/19 18:11,"83 Lake St, Boston, MA 02215" -284113,AA Batteries (4-pack),1,3.84,11/12/19 17:04,"229 Cherry St, Los Angeles, CA 90001" -284114,USB-C Charging Cable,1,11.95,11/25/19 13:43,"397 Willow St, Dallas, TX 75001" -284115,Lightning Charging Cable,1,14.95,11/04/19 14:46,"551 Highland St, Seattle, WA 98101" -284116,Macbook Pro Laptop,1,1700,11/22/19 14:07,"606 Adams St, Atlanta, GA 30301" -284117,Lightning Charging Cable,1,14.95,11/11/19 19:06,"330 Chestnut St, Atlanta, GA 30301" -284118,AA Batteries (4-pack),1,3.84,11/30/19 18:28,"27 Elm St, New York City, NY 10001" -284119,27in 4K Gaming Monitor,1,389.99,11/13/19 17:00,"902 7th St, San Francisco, CA 94016" -284120,Wired Headphones,1,11.99,11/22/19 21:30,"629 Main St, Los Angeles, CA 90001" -284121,USB-C Charging Cable,1,11.95,11/24/19 14:05,"9 Main St, San Francisco, CA 94016" -284122,Apple Airpods Headphones,1,150,11/17/19 12:33,"91 Pine St, Austin, TX 73301" -284123,Wired Headphones,1,11.99,11/08/19 11:47,"739 1st St, Los Angeles, CA 90001" -284124,Google Phone,1,600,11/12/19 08:05,"332 Highland St, San Francisco, CA 94016" -284124,Wired Headphones,1,11.99,11/12/19 08:05,"332 Highland St, San Francisco, CA 94016" -284125,AAA Batteries (4-pack),1,2.99,11/12/19 13:45,"744 South St, Portland, OR 97035" -284126,34in Ultrawide Monitor,1,379.99,11/21/19 14:27,"345 6th St, San Francisco, CA 94016" -284126,USB-C Charging Cable,1,11.95,11/21/19 14:27,"345 6th St, San Francisco, CA 94016" -284127,AA Batteries (4-pack),1,3.84,11/03/19 13:52,"52 Lakeview St, Austin, TX 73301" -284128,27in 4K Gaming Monitor,1,389.99,11/07/19 11:39,"367 Ridge St, New York City, NY 10001" -284129,34in Ultrawide Monitor,1,379.99,11/12/19 09:45,"133 Johnson St, Dallas, TX 75001" -284130,Apple Airpods Headphones,1,150,11/07/19 20:46,"271 South St, New York City, NY 10001" -284131,AA Batteries (4-pack),1,3.84,11/24/19 14:47,"408 North St, San Francisco, CA 94016" -284132,USB-C Charging Cable,1,11.95,11/21/19 17:10,"685 Forest St, New York City, NY 10001" -284133,USB-C Charging Cable,1,11.95,11/19/19 06:18,"366 River St, San Francisco, CA 94016" -284134,Lightning Charging Cable,1,14.95,11/09/19 15:00,"801 North St, Seattle, WA 98101" -284135,Wired Headphones,1,11.99,11/12/19 00:31,"152 Lake St, Portland, OR 97035" -284136,Apple Airpods Headphones,1,150,11/27/19 19:21,"440 River St, Los Angeles, CA 90001" -284137,34in Ultrawide Monitor,1,379.99,11/05/19 07:58,"128 Wilson St, New York City, NY 10001" -284138,34in Ultrawide Monitor,1,379.99,11/10/19 17:09,"612 Hill St, Dallas, TX 75001" -284139,Google Phone,1,600,11/10/19 17:17,"970 Spruce St, Los Angeles, CA 90001" -284139,USB-C Charging Cable,1,11.95,11/10/19 17:17,"970 Spruce St, Los Angeles, CA 90001" -284140,AA Batteries (4-pack),1,3.84,11/28/19 15:59,"561 6th St, Boston, MA 02215" -284141,27in FHD Monitor,1,149.99,11/19/19 19:50,"531 Johnson St, New York City, NY 10001" -284142,20in Monitor,1,109.99,11/04/19 15:03,"10 Main St, Seattle, WA 98101" -284143,Lightning Charging Cable,2,14.95,11/05/19 07:31,"554 River St, San Francisco, CA 94016" -284144,AAA Batteries (4-pack),1,2.99,11/08/19 13:54,"665 South St, New York City, NY 10001" -284145,AAA Batteries (4-pack),1,2.99,11/10/19 14:23,"826 Main St, Los Angeles, CA 90001" -284146,27in FHD Monitor,1,149.99,11/25/19 11:04,"363 River St, New York City, NY 10001" -284147,Apple Airpods Headphones,1,150,11/28/19 12:15,"825 Spruce St, New York City, NY 10001" -284148,Wired Headphones,1,11.99,11/03/19 11:13,"877 6th St, Atlanta, GA 30301" -284149,AA Batteries (4-pack),1,3.84,11/10/19 19:48,"627 4th St, Boston, MA 02215" -284150,Apple Airpods Headphones,1,150,11/25/19 21:50,"90 Lincoln St, Atlanta, GA 30301" -284151,Bose SoundSport Headphones,1,99.99,11/08/19 06:44,"319 13th St, Atlanta, GA 30301" -284152,AA Batteries (4-pack),1,3.84,11/14/19 11:30,"560 River St, Dallas, TX 75001" -284153,AAA Batteries (4-pack),1,2.99,11/02/19 22:17,"298 Sunset St, Austin, TX 73301" -284154,ThinkPad Laptop,1,999.99,11/17/19 19:14,"489 Elm St, Seattle, WA 98101" -284155,Apple Airpods Headphones,1,150,11/21/19 18:04,"879 Lincoln St, San Francisco, CA 94016" -284156,AAA Batteries (4-pack),1,2.99,11/27/19 21:10,"982 Adams St, New York City, NY 10001" -284157,27in 4K Gaming Monitor,1,389.99,11/30/19 16:36,"783 Adams St, Los Angeles, CA 90001" -284158,Google Phone,1,600,11/09/19 18:33,"110 Willow St, San Francisco, CA 94016" -284159,Lightning Charging Cable,1,14.95,11/19/19 04:24,"896 9th St, Austin, TX 73301" -284160,AA Batteries (4-pack),1,3.84,11/02/19 19:52,"867 6th St, San Francisco, CA 94016" -284161,Flatscreen TV,1,300,11/10/19 11:40,"130 5th St, Atlanta, GA 30301" -284162,34in Ultrawide Monitor,1,379.99,11/27/19 20:41,"289 South St, Los Angeles, CA 90001" -284163,27in FHD Monitor,1,149.99,11/21/19 13:15,"620 Lake St, Boston, MA 02215" -284164,Lightning Charging Cable,1,14.95,11/10/19 20:25,"879 Wilson St, Seattle, WA 98101" -284165,Flatscreen TV,1,300,11/30/19 01:06,"837 9th St, Boston, MA 02215" -284166,AA Batteries (4-pack),2,3.84,11/01/19 20:33,"450 Lake St, San Francisco, CA 94016" -284167,AA Batteries (4-pack),1,3.84,11/15/19 13:07,"964 Wilson St, Atlanta, GA 30301" -284168,Bose SoundSport Headphones,1,99.99,11/12/19 14:31,"70 5th St, Austin, TX 73301" -284169,Lightning Charging Cable,2,14.95,11/21/19 17:52,"95 Dogwood St, San Francisco, CA 94016" -284170,USB-C Charging Cable,1,11.95,11/24/19 21:01,"924 10th St, Boston, MA 02215" -284171,Apple Airpods Headphones,1,150,11/25/19 14:42,"321 West St, Boston, MA 02215" -284172,Wired Headphones,2,11.99,11/12/19 12:59,"961 Elm St, Atlanta, GA 30301" -284173,USB-C Charging Cable,2,11.95,11/18/19 11:19,"813 North St, San Francisco, CA 94016" -284174,Wired Headphones,1,11.99,11/14/19 13:25,"583 Church St, Seattle, WA 98101" -284175,ThinkPad Laptop,1,999.99,11/21/19 20:57,"171 Hickory St, San Francisco, CA 94016" -284176,Lightning Charging Cable,1,14.95,11/24/19 12:32,"869 8th St, Austin, TX 73301" -284177,AA Batteries (4-pack),1,3.84,11/17/19 10:28,"741 Jefferson St, Portland, ME 04101" -284178,Bose SoundSport Headphones,1,99.99,11/05/19 06:07,"574 Johnson St, Boston, MA 02215" -284179,AAA Batteries (4-pack),1,2.99,11/20/19 20:48,"614 Hill St, Dallas, TX 75001" -284179,AAA Batteries (4-pack),1,2.99,11/20/19 20:48,"614 Hill St, Dallas, TX 75001" -284180,AA Batteries (4-pack),1,3.84,11/19/19 16:27,"737 Pine St, Portland, OR 97035" -284181,AAA Batteries (4-pack),1,2.99,11/13/19 17:32,"348 Washington St, New York City, NY 10001" -284182,Lightning Charging Cable,1,14.95,11/13/19 08:59,"493 Center St, New York City, NY 10001" -284183,AAA Batteries (4-pack),1,2.99,11/19/19 11:26,"585 9th St, Dallas, TX 75001" -284184,AAA Batteries (4-pack),2,2.99,11/25/19 13:24,"726 9th St, Los Angeles, CA 90001" -284185,Lightning Charging Cable,1,14.95,11/26/19 16:09,"629 Center St, Boston, MA 02215" -284186,AAA Batteries (4-pack),1,2.99,11/14/19 13:44,"670 Hill St, Austin, TX 73301" -284187,Google Phone,1,600,11/27/19 21:07,"16 Johnson St, San Francisco, CA 94016" -284188,Lightning Charging Cable,1,14.95,11/08/19 10:35,"508 North St, San Francisco, CA 94016" -284189,Apple Airpods Headphones,1,150,11/03/19 07:01,"780 Park St, San Francisco, CA 94016" -284190,Bose SoundSport Headphones,1,99.99,11/17/19 16:11,"850 Main St, Los Angeles, CA 90001" -284191,Google Phone,1,600,11/24/19 21:18,"602 Dogwood St, Boston, MA 02215" -284191,Wired Headphones,1,11.99,11/24/19 21:18,"602 Dogwood St, Boston, MA 02215" -284192,USB-C Charging Cable,1,11.95,11/03/19 20:00,"189 13th St, Los Angeles, CA 90001" -284193,Macbook Pro Laptop,1,1700,11/09/19 05:48,"876 Church St, Los Angeles, CA 90001" -284194,AAA Batteries (4-pack),1,2.99,11/03/19 15:06,"136 Forest St, Atlanta, GA 30301" -284195,USB-C Charging Cable,1,11.95,11/08/19 21:14,"184 12th St, Dallas, TX 75001" -284196,AAA Batteries (4-pack),1,2.99,11/26/19 20:17,"590 South St, Boston, MA 02215" -284197,Wired Headphones,1,11.99,11/28/19 15:44,"274 Dogwood St, San Francisco, CA 94016" -284198,20in Monitor,1,109.99,11/25/19 15:25,"257 Sunset St, Los Angeles, CA 90001" -284199,AA Batteries (4-pack),1,3.84,11/27/19 17:13,"562 Main St, Seattle, WA 98101" -284200,AAA Batteries (4-pack),1,2.99,11/24/19 21:26,"748 Cherry St, Los Angeles, CA 90001" -284201,Lightning Charging Cable,1,14.95,11/27/19 12:12,"849 6th St, Seattle, WA 98101" -284202,AA Batteries (4-pack),1,3.84,11/26/19 07:34,"386 7th St, Boston, MA 02215" -284203,Apple Airpods Headphones,1,150,11/28/19 19:32,"499 2nd St, Los Angeles, CA 90001" -284204,Lightning Charging Cable,1,14.95,11/19/19 00:06,"392 Madison St, San Francisco, CA 94016" -284205,Vareebadd Phone,1,400,11/08/19 08:02,"749 South St, San Francisco, CA 94016" -284206,Lightning Charging Cable,1,14.95,11/17/19 22:11,"494 Pine St, New York City, NY 10001" -284207,AA Batteries (4-pack),1,3.84,11/24/19 13:44,"96 Lake St, New York City, NY 10001" -284208,Wired Headphones,1,11.99,11/26/19 15:56,"747 Jackson St, Austin, TX 73301" -284209,Lightning Charging Cable,1,14.95,11/04/19 22:13,"268 Lake St, San Francisco, CA 94016" -284210,Lightning Charging Cable,1,14.95,11/19/19 18:23,"349 Lake St, Dallas, TX 75001" -284211,Lightning Charging Cable,1,14.95,11/30/19 16:59,"390 Adams St, Atlanta, GA 30301" -284212,Lightning Charging Cable,1,14.95,11/15/19 15:34,"317 Lakeview St, San Francisco, CA 94016" -284213,iPhone,1,700,11/19/19 19:29,"248 Maple St, Boston, MA 02215" -284214,27in 4K Gaming Monitor,1,389.99,11/21/19 11:41,"672 Lakeview St, Los Angeles, CA 90001" -284215,Wired Headphones,1,11.99,11/08/19 20:55,"888 Dogwood St, Dallas, TX 75001" -284216,Lightning Charging Cable,1,14.95,11/06/19 16:49,"164 5th St, Seattle, WA 98101" -284217,AAA Batteries (4-pack),4,2.99,11/22/19 17:46,"932 2nd St, Los Angeles, CA 90001" -284218,Wired Headphones,1,11.99,11/22/19 09:11,"657 Walnut St, Los Angeles, CA 90001" -284219,AAA Batteries (4-pack),2,2.99,11/04/19 14:09,"725 4th St, San Francisco, CA 94016" -284220,AAA Batteries (4-pack),1,2.99,11/22/19 14:10,"266 1st St, Portland, ME 04101" -284220,27in FHD Monitor,1,149.99,11/22/19 14:10,"266 1st St, Portland, ME 04101" -284221,AA Batteries (4-pack),1,3.84,11/10/19 18:37,"264 Cedar St, Boston, MA 02215" -284222,Bose SoundSport Headphones,2,99.99,11/25/19 20:59,"289 Pine St, Austin, TX 73301" -284223,Lightning Charging Cable,1,14.95,11/16/19 14:59,"314 Lincoln St, Seattle, WA 98101" -284224,Macbook Pro Laptop,1,1700,11/03/19 23:16,"313 6th St, Los Angeles, CA 90001" -284225,Wired Headphones,1,11.99,11/22/19 14:04,"790 Sunset St, Austin, TX 73301" -284226,Apple Airpods Headphones,1,150,11/01/19 13:54,"563 Jackson St, New York City, NY 10001" -284227,USB-C Charging Cable,1,11.95,11/12/19 19:42,"966 8th St, San Francisco, CA 94016" -284228,Wired Headphones,1,11.99,11/05/19 08:15,"185 14th St, Boston, MA 02215" -284229,AAA Batteries (4-pack),1,2.99,11/20/19 15:46,"356 Lincoln St, San Francisco, CA 94016" -284230,AA Batteries (4-pack),1,3.84,11/21/19 11:55,"857 Cedar St, Seattle, WA 98101" -284231,Lightning Charging Cable,1,14.95,11/26/19 20:48,"356 6th St, Portland, OR 97035" -284232,Wired Headphones,1,11.99,11/16/19 06:36,"99 Adams St, Seattle, WA 98101" -284233,Lightning Charging Cable,1,14.95,11/24/19 10:47,"470 Lake St, Los Angeles, CA 90001" -284234,Lightning Charging Cable,2,14.95,11/16/19 16:19,"446 Lincoln St, Los Angeles, CA 90001" -284235,Flatscreen TV,1,300,11/20/19 13:35,"269 Lake St, Los Angeles, CA 90001" -284236,iPhone,1,700,11/15/19 07:45,"615 Center St, New York City, NY 10001" -284237,Bose SoundSport Headphones,1,99.99,11/09/19 23:27,"750 River St, Dallas, TX 75001" -284238,Flatscreen TV,1,300,11/06/19 09:59,"193 Church St, Seattle, WA 98101" -284239,USB-C Charging Cable,1,11.95,11/23/19 11:34,"532 Lake St, Los Angeles, CA 90001" -284240,AAA Batteries (4-pack),1,2.99,11/11/19 14:28,"940 8th St, Los Angeles, CA 90001" -284241,Apple Airpods Headphones,1,150,11/29/19 16:31,"206 Hickory St, San Francisco, CA 94016" -284242,Bose SoundSport Headphones,1,99.99,11/15/19 22:45,"281 Ridge St, Portland, OR 97035" -284243,Bose SoundSport Headphones,1,99.99,11/15/19 22:36,"162 Chestnut St, New York City, NY 10001" -284244,Lightning Charging Cable,1,14.95,11/11/19 17:55,"246 8th St, Seattle, WA 98101" -284245,AAA Batteries (4-pack),3,2.99,11/06/19 10:56,"420 Highland St, Los Angeles, CA 90001" -284246,AA Batteries (4-pack),1,3.84,11/11/19 19:38,"530 West St, San Francisco, CA 94016" -284247,Lightning Charging Cable,2,14.95,11/09/19 18:01,"178 12th St, Portland, ME 04101" -284248,AAA Batteries (4-pack),2,2.99,11/09/19 21:57,"875 River St, Dallas, TX 75001" -284249,Lightning Charging Cable,1,14.95,11/23/19 17:34,"297 7th St, New York City, NY 10001" -284250,LG Dryer,1,600.0,11/02/19 19:54,"145 Forest St, Seattle, WA 98101" -284251,AA Batteries (4-pack),1,3.84,11/19/19 16:18,"139 6th St, Portland, OR 97035" -284252,27in FHD Monitor,1,149.99,11/20/19 00:36,"946 Meadow St, Austin, TX 73301" -284253,USB-C Charging Cable,1,11.95,11/11/19 14:15,"631 Chestnut St, Boston, MA 02215" -284254,Apple Airpods Headphones,1,150,11/01/19 19:02,"339 Sunset St, San Francisco, CA 94016" -284255,Lightning Charging Cable,1,14.95,11/15/19 12:58,"185 6th St, New York City, NY 10001" -284256,Lightning Charging Cable,1,14.95,11/06/19 13:15,"299 Meadow St, Boston, MA 02215" -284257,Flatscreen TV,1,300,11/26/19 14:34,"714 Pine St, Los Angeles, CA 90001" -284258,AAA Batteries (4-pack),1,2.99,11/16/19 11:41,"89 Park St, Los Angeles, CA 90001" -284259,27in 4K Gaming Monitor,1,389.99,11/01/19 21:19,"125 10th St, Atlanta, GA 30301" -284260,Bose SoundSport Headphones,1,99.99,11/01/19 10:03,"442 4th St, Los Angeles, CA 90001" -284261,27in FHD Monitor,1,149.99,11/14/19 21:06,"560 West St, Atlanta, GA 30301" -284262,AAA Batteries (4-pack),2,2.99,11/18/19 17:44,"547 Jackson St, Los Angeles, CA 90001" -284263,AA Batteries (4-pack),1,3.84,11/26/19 08:00,"149 8th St, Los Angeles, CA 90001" -284264,Apple Airpods Headphones,1,150,11/14/19 13:05,"298 Highland St, Atlanta, GA 30301" -284265,Wired Headphones,1,11.99,11/27/19 12:10,"180 South St, Atlanta, GA 30301" -284266,27in 4K Gaming Monitor,1,389.99,11/09/19 19:22,"164 Willow St, Los Angeles, CA 90001" -284267,20in Monitor,1,109.99,11/18/19 09:31,"654 1st St, New York City, NY 10001" -284268,USB-C Charging Cable,1,11.95,11/24/19 16:18,"483 Wilson St, Los Angeles, CA 90001" -284269,Lightning Charging Cable,1,14.95,11/03/19 11:50,"507 Meadow St, Los Angeles, CA 90001" -284270,Wired Headphones,1,11.99,11/18/19 11:00,"234 Wilson St, Atlanta, GA 30301" -284271,AA Batteries (4-pack),2,3.84,11/08/19 16:54,"692 13th St, Portland, OR 97035" -284272,27in 4K Gaming Monitor,1,389.99,11/22/19 18:01,"737 14th St, New York City, NY 10001" -284273,AA Batteries (4-pack),1,3.84,11/13/19 12:09,"595 North St, Austin, TX 73301" -284274,USB-C Charging Cable,4,11.95,11/08/19 17:10,"640 Spruce St, Los Angeles, CA 90001" -284275,20in Monitor,1,109.99,11/29/19 08:59,"624 Lincoln St, Seattle, WA 98101" -284276,AAA Batteries (4-pack),2,2.99,11/13/19 19:52,"418 Adams St, New York City, NY 10001" -284277,27in 4K Gaming Monitor,1,389.99,11/09/19 21:29,"342 Sunset St, Seattle, WA 98101" -284278,Macbook Pro Laptop,1,1700,11/21/19 01:41,"974 Jackson St, New York City, NY 10001" -284279,Lightning Charging Cable,1,14.95,11/16/19 08:06,"943 Church St, Boston, MA 02215" -284280,Lightning Charging Cable,1,14.95,11/01/19 15:53,"991 2nd St, Seattle, WA 98101" -284281,AAA Batteries (4-pack),2,2.99,11/22/19 14:17,"369 Main St, New York City, NY 10001" -284282,USB-C Charging Cable,1,11.95,11/06/19 22:36,"329 South St, Seattle, WA 98101" -284283,Bose SoundSport Headphones,1,99.99,11/02/19 21:46,"787 Hickory St, San Francisco, CA 94016" -284284,Wired Headphones,1,11.99,11/18/19 12:33,"503 Wilson St, Seattle, WA 98101" -284285,USB-C Charging Cable,1,11.95,11/26/19 14:46,"905 8th St, Atlanta, GA 30301" -284286,Bose SoundSport Headphones,2,99.99,11/30/19 00:39,"491 Maple St, New York City, NY 10001" -284287,USB-C Charging Cable,1,11.95,11/20/19 22:24,"580 Main St, Dallas, TX 75001" -284288,Lightning Charging Cable,1,14.95,11/22/19 12:21,"735 Lakeview St, New York City, NY 10001" -284289,Wired Headphones,1,11.99,11/06/19 23:31,"399 Johnson St, San Francisco, CA 94016" -284290,Bose SoundSport Headphones,1,99.99,11/30/19 06:04,"888 5th St, Los Angeles, CA 90001" -284291,Wired Headphones,1,11.99,11/29/19 19:03,"308 12th St, Los Angeles, CA 90001" -284292,Bose SoundSport Headphones,1,99.99,11/03/19 16:46,"57 Jefferson St, San Francisco, CA 94016" -284293,Lightning Charging Cable,1,14.95,11/08/19 10:35,"349 Dogwood St, Boston, MA 02215" -284294,AA Batteries (4-pack),2,3.84,11/18/19 12:46,"193 10th St, Portland, OR 97035" -284295,Bose SoundSport Headphones,1,99.99,11/19/19 12:52,"858 Hill St, Atlanta, GA 30301" -284296,AAA Batteries (4-pack),1,2.99,11/28/19 16:56,"594 Willow St, Portland, OR 97035" -284297,Apple Airpods Headphones,1,150,11/23/19 10:24,"313 10th St, New York City, NY 10001" -284298,Bose SoundSport Headphones,1,99.99,11/23/19 11:46,"624 2nd St, Los Angeles, CA 90001" -284299,USB-C Charging Cable,1,11.95,11/12/19 22:15,"202 8th St, San Francisco, CA 94016" -284300,Apple Airpods Headphones,1,150,11/30/19 19:10,"629 Pine St, New York City, NY 10001" -284301,Wired Headphones,1,11.99,11/11/19 10:20,"966 Cherry St, New York City, NY 10001" -284302,USB-C Charging Cable,1,11.95,11/20/19 15:37,"746 Washington St, Boston, MA 02215" -284303,Lightning Charging Cable,1,14.95,11/01/19 18:43,"516 Wilson St, Austin, TX 73301" -284304,Bose SoundSport Headphones,1,99.99,11/01/19 14:56,"316 Jefferson St, San Francisco, CA 94016" -284305,AAA Batteries (4-pack),1,2.99,11/10/19 11:29,"272 Sunset St, Los Angeles, CA 90001" -284306,Lightning Charging Cable,1,14.95,11/23/19 11:13,"470 Cedar St, San Francisco, CA 94016" -284307,iPhone,1,700,11/23/19 11:22,"955 West St, San Francisco, CA 94016" -284308,USB-C Charging Cable,1,11.95,11/30/19 19:01,"251 North St, Seattle, WA 98101" -284309,Wired Headphones,1,11.99,11/20/19 18:24,"67 Sunset St, Los Angeles, CA 90001" -284310,Apple Airpods Headphones,1,150,11/13/19 10:40,"636 Church St, San Francisco, CA 94016" -284311,27in FHD Monitor,1,149.99,11/18/19 14:01,"99 10th St, Los Angeles, CA 90001" -284312,Apple Airpods Headphones,1,150,11/20/19 15:50,"47 Ridge St, Austin, TX 73301" -284313,AA Batteries (4-pack),2,3.84,11/14/19 19:05,"133 Washington St, Seattle, WA 98101" -284314,Bose SoundSport Headphones,1,99.99,11/17/19 10:42,"386 Pine St, Portland, ME 04101" -284315,USB-C Charging Cable,1,11.95,11/05/19 08:55,"163 Spruce St, Dallas, TX 75001" -284316,Wired Headphones,1,11.99,11/14/19 12:43,"826 Ridge St, Boston, MA 02215" -284317,USB-C Charging Cable,1,11.95,11/30/19 06:45,"236 Main St, San Francisco, CA 94016" -284318,USB-C Charging Cable,1,11.95,11/10/19 19:42,"305 Maple St, San Francisco, CA 94016" -284318,Lightning Charging Cable,1,14.95,11/10/19 19:42,"305 Maple St, San Francisco, CA 94016" -284319,Apple Airpods Headphones,1,150,11/23/19 10:35,"668 Forest St, Portland, OR 97035" -284320,AA Batteries (4-pack),1,3.84,11/24/19 16:36,"603 Walnut St, Dallas, TX 75001" -284321,AAA Batteries (4-pack),2,2.99,11/14/19 20:48,"966 Hill St, San Francisco, CA 94016" -284322,AAA Batteries (4-pack),2,2.99,11/12/19 23:22,"490 Maple St, Portland, OR 97035" -284323,Bose SoundSport Headphones,1,99.99,11/18/19 20:55,"887 10th St, Los Angeles, CA 90001" -284324,USB-C Charging Cable,2,11.95,11/27/19 13:34,"134 Meadow St, Los Angeles, CA 90001" -284325,27in 4K Gaming Monitor,1,389.99,11/13/19 15:57,"480 Chestnut St, San Francisco, CA 94016" -284326,USB-C Charging Cable,1,11.95,11/12/19 10:49,"26 Dogwood St, Boston, MA 02215" -284327,USB-C Charging Cable,1,11.95,11/11/19 21:03,"150 Wilson St, San Francisco, CA 94016" -284328,Wired Headphones,1,11.99,11/09/19 23:43,"972 Hickory St, Los Angeles, CA 90001" -284329,USB-C Charging Cable,1,11.95,11/29/19 12:51,"225 Pine St, San Francisco, CA 94016" -284330,USB-C Charging Cable,1,11.95,11/22/19 10:10,"912 6th St, San Francisco, CA 94016" -284331,AAA Batteries (4-pack),1,2.99,11/23/19 10:27,"841 West St, Boston, MA 02215" -284332,Google Phone,1,600,11/12/19 15:27,"337 Meadow St, San Francisco, CA 94016" -284333,USB-C Charging Cable,2,11.95,11/19/19 15:53,"748 13th St, San Francisco, CA 94016" -284334,Lightning Charging Cable,1,14.95,11/19/19 13:30,"613 Maple St, San Francisco, CA 94016" -284335,Bose SoundSport Headphones,1,99.99,11/06/19 22:00,"884 Jefferson St, San Francisco, CA 94016" -284336,AAA Batteries (4-pack),1,2.99,11/18/19 16:03,"910 Sunset St, Dallas, TX 75001" -284337,USB-C Charging Cable,1,11.95,11/14/19 08:22,"179 Main St, Boston, MA 02215" -284338,AAA Batteries (4-pack),1,2.99,11/23/19 20:53,"555 North St, Dallas, TX 75001" -284339,AAA Batteries (4-pack),1,2.99,11/16/19 12:39,"898 Church St, Seattle, WA 98101" -284340,AAA Batteries (4-pack),1,2.99,11/20/19 17:55,"963 13th St, New York City, NY 10001" -284340,Macbook Pro Laptop,1,1700,11/20/19 17:55,"963 13th St, New York City, NY 10001" -284341,Wired Headphones,2,11.99,11/15/19 18:03,"91 Lakeview St, Boston, MA 02215" -284342,Bose SoundSport Headphones,1,99.99,11/17/19 10:47,"677 Jackson St, San Francisco, CA 94016" -284343,USB-C Charging Cable,1,11.95,11/24/19 21:06,"950 Willow St, Los Angeles, CA 90001" -284344,AA Batteries (4-pack),1,3.84,11/29/19 04:54,"498 2nd St, Boston, MA 02215" -284345,AA Batteries (4-pack),1,3.84,11/04/19 20:10,"462 Cedar St, Dallas, TX 75001" -284346,27in 4K Gaming Monitor,1,389.99,11/15/19 15:49,"971 Lincoln St, San Francisco, CA 94016" -284347,Wired Headphones,1,11.99,11/27/19 20:10,"107 Church St, New York City, NY 10001" -284348,iPhone,1,700,11/20/19 15:39,"216 Cedar St, Atlanta, GA 30301" -284348,Lightning Charging Cable,1,14.95,11/20/19 15:39,"216 Cedar St, Atlanta, GA 30301" -284349,AA Batteries (4-pack),2,3.84,11/05/19 22:02,"12 Ridge St, Atlanta, GA 30301" -284350,AAA Batteries (4-pack),1,2.99,11/28/19 13:35,"896 Church St, San Francisco, CA 94016" -284351,27in 4K Gaming Monitor,1,389.99,11/19/19 11:24,"366 Cherry St, Austin, TX 73301" -284352,iPhone,1,700,11/05/19 14:45,"153 Maple St, San Francisco, CA 94016" -284352,Lightning Charging Cable,1,14.95,11/05/19 14:45,"153 Maple St, San Francisco, CA 94016" -284353,iPhone,1,700,11/12/19 15:23,"855 Church St, Boston, MA 02215" -284353,Lightning Charging Cable,1,14.95,11/12/19 15:23,"855 Church St, Boston, MA 02215" -284354,AA Batteries (4-pack),1,3.84,11/11/19 18:27,"128 Lakeview St, Austin, TX 73301" -284355,AAA Batteries (4-pack),1,2.99,11/20/19 21:47,"225 Hickory St, Seattle, WA 98101" -284355,Bose SoundSport Headphones,1,99.99,11/20/19 21:47,"225 Hickory St, Seattle, WA 98101" -284356,Lightning Charging Cable,1,14.95,11/26/19 23:13,"385 Jefferson St, San Francisco, CA 94016" -284357,Apple Airpods Headphones,1,150,11/17/19 07:56,"230 Maple St, Los Angeles, CA 90001" -284358,ThinkPad Laptop,1,999.99,11/02/19 14:25,"995 West St, Austin, TX 73301" -284359,34in Ultrawide Monitor,1,379.99,11/30/19 18:46,"433 Park St, Los Angeles, CA 90001" -284360,AA Batteries (4-pack),1,3.84,11/06/19 15:10,"341 12th St, Austin, TX 73301" -284361,Lightning Charging Cable,2,14.95,11/16/19 12:51,"667 7th St, Seattle, WA 98101" -284362,Google Phone,1,600,11/20/19 02:23,"444 Dogwood St, San Francisco, CA 94016" -284362,USB-C Charging Cable,1,11.95,11/20/19 02:23,"444 Dogwood St, San Francisco, CA 94016" -284363,AAA Batteries (4-pack),1,2.99,11/06/19 19:13,"53 River St, San Francisco, CA 94016" -284364,AAA Batteries (4-pack),3,2.99,11/26/19 13:12,"724 West St, Atlanta, GA 30301" -284365,USB-C Charging Cable,1,11.95,11/25/19 12:37,"736 Madison St, Los Angeles, CA 90001" -284366,Macbook Pro Laptop,1,1700,11/12/19 18:38,"652 10th St, Los Angeles, CA 90001" -284367,Flatscreen TV,1,300,11/17/19 13:47,"90 Park St, San Francisco, CA 94016" -284368,USB-C Charging Cable,1,11.95,11/23/19 19:33,"877 Sunset St, Atlanta, GA 30301" -284369,Apple Airpods Headphones,1,150,11/07/19 17:25,"386 Willow St, Los Angeles, CA 90001" -284370,Lightning Charging Cable,1,14.95,11/16/19 17:48,"261 Elm St, San Francisco, CA 94016" -284371,Macbook Pro Laptop,1,1700,11/15/19 14:43,"295 14th St, New York City, NY 10001" -284372,AA Batteries (4-pack),1,3.84,11/10/19 11:42,"392 1st St, New York City, NY 10001" -284373,AAA Batteries (4-pack),1,2.99,11/02/19 13:05,"693 Forest St, Portland, OR 97035" -284374,Macbook Pro Laptop,1,1700,11/02/19 10:58,"288 Church St, Los Angeles, CA 90001" -284375,Lightning Charging Cable,1,14.95,11/14/19 11:33,"240 9th St, San Francisco, CA 94016" -284376,Apple Airpods Headphones,1,150,11/23/19 17:06,"228 Madison St, Seattle, WA 98101" -284377,Bose SoundSport Headphones,1,99.99,11/23/19 08:20,"243 Sunset St, Austin, TX 73301" -284378,Bose SoundSport Headphones,1,99.99,11/21/19 13:46,"504 8th St, Austin, TX 73301" -284379,AA Batteries (4-pack),1,3.84,11/25/19 13:07,"126 8th St, Atlanta, GA 30301" -284380,34in Ultrawide Monitor,1,379.99,11/27/19 22:18,"958 10th St, Austin, TX 73301" -284381,Macbook Pro Laptop,1,1700,11/05/19 20:28,"184 Jackson St, Seattle, WA 98101" -284382,Bose SoundSport Headphones,1,99.99,11/26/19 12:48,"550 2nd St, New York City, NY 10001" -284383,Wired Headphones,1,11.99,11/01/19 19:28,"255 Jackson St, Atlanta, GA 30301" -284384,Apple Airpods Headphones,1,150,11/07/19 15:48,"217 Willow St, San Francisco, CA 94016" -284385,Lightning Charging Cable,1,14.95,11/29/19 13:18,"80 Adams St, Portland, OR 97035" -284386,Apple Airpods Headphones,1,150,11/20/19 20:18,"986 Lincoln St, Dallas, TX 75001" -284387,27in FHD Monitor,1,149.99,11/10/19 07:23,"367 Main St, New York City, NY 10001" -284388,Lightning Charging Cable,1,14.95,11/13/19 13:02,"335 River St, New York City, NY 10001" -284389,Lightning Charging Cable,2,14.95,11/14/19 12:37,"281 Hill St, San Francisco, CA 94016" -284390,Lightning Charging Cable,1,14.95,11/10/19 06:27,"978 Wilson St, Atlanta, GA 30301" -284391,USB-C Charging Cable,1,11.95,11/16/19 06:06,"538 Washington St, San Francisco, CA 94016" -284392,20in Monitor,1,109.99,11/27/19 21:43,"506 14th St, Boston, MA 02215" -284393,Apple Airpods Headphones,1,150,11/04/19 12:07,"648 Lincoln St, Boston, MA 02215" -284394,ThinkPad Laptop,1,999.99,11/03/19 20:44,"416 1st St, San Francisco, CA 94016" -284395,27in FHD Monitor,1,149.99,11/17/19 13:05,"503 Madison St, San Francisco, CA 94016" -284396,Macbook Pro Laptop,1,1700,11/10/19 11:22,"923 Lincoln St, San Francisco, CA 94016" -284397,USB-C Charging Cable,1,11.95,11/17/19 23:29,"840 Forest St, Seattle, WA 98101" -284398,AA Batteries (4-pack),1,3.84,11/16/19 14:01,"264 Spruce St, New York City, NY 10001" -284399,Wired Headphones,1,11.99,11/10/19 12:23,"170 Hickory St, San Francisco, CA 94016" -284400,Lightning Charging Cable,1,14.95,11/23/19 16:36,"675 8th St, Los Angeles, CA 90001" -284401,Flatscreen TV,1,300,11/20/19 17:53,"508 Willow St, Austin, TX 73301" -284402,AAA Batteries (4-pack),1,2.99,11/05/19 21:15,"668 Maple St, New York City, NY 10001" -284403,Wired Headphones,1,11.99,11/15/19 14:46,"806 Johnson St, Los Angeles, CA 90001" -284404,Apple Airpods Headphones,1,150,11/07/19 16:47,"732 12th St, Los Angeles, CA 90001" -284405,iPhone,1,700,11/27/19 16:29,"689 Willow St, Dallas, TX 75001" -284406,27in FHD Monitor,1,149.99,11/23/19 15:30,"333 Cherry St, New York City, NY 10001" -284407,AA Batteries (4-pack),1,3.84,11/08/19 15:45,"824 Highland St, San Francisco, CA 94016" -284408,27in FHD Monitor,1,149.99,11/29/19 18:56,"671 Lake St, San Francisco, CA 94016" -284409,Apple Airpods Headphones,1,150,11/06/19 14:45,"291 Maple St, Seattle, WA 98101" -284410,Flatscreen TV,1,300,11/14/19 09:04,"971 Center St, New York City, NY 10001" -284411,27in FHD Monitor,1,149.99,11/04/19 07:59,"122 Spruce St, New York City, NY 10001" -284412,USB-C Charging Cable,1,11.95,11/28/19 19:32,"170 Adams St, Dallas, TX 75001" -284413,Lightning Charging Cable,1,14.95,11/17/19 22:51,"517 Willow St, Austin, TX 73301" -284414,Flatscreen TV,1,300,11/26/19 14:32,"950 South St, San Francisco, CA 94016" -284415,AAA Batteries (4-pack),2,2.99,11/20/19 22:58,"57 Church St, Dallas, TX 75001" -284416,Lightning Charging Cable,1,14.95,11/20/19 19:23,"383 Lincoln St, Dallas, TX 75001" -284417,AAA Batteries (4-pack),3,2.99,11/14/19 21:01,"168 Center St, Seattle, WA 98101" -284418,iPhone,1,700,11/18/19 13:21,"950 1st St, San Francisco, CA 94016" -284419,Apple Airpods Headphones,1,150,11/03/19 22:37,"28 Highland St, Atlanta, GA 30301" -284420,Apple Airpods Headphones,1,150,11/30/19 09:40,"563 Ridge St, San Francisco, CA 94016" -284421,AAA Batteries (4-pack),2,2.99,11/20/19 19:57,"991 Washington St, San Francisco, CA 94016" -284422,AAA Batteries (4-pack),1,2.99,11/02/19 09:18,"530 Hickory St, San Francisco, CA 94016" -284423,Bose SoundSport Headphones,1,99.99,11/29/19 18:30,"156 Lakeview St, Atlanta, GA 30301" -284424,Wired Headphones,1,11.99,11/19/19 16:28,"337 Forest St, Boston, MA 02215" -284425,Lightning Charging Cable,1,14.95,11/05/19 11:08,"572 Lincoln St, New York City, NY 10001" -284426,Lightning Charging Cable,1,14.95,11/18/19 07:49,"803 West St, San Francisco, CA 94016" -284427,USB-C Charging Cable,1,11.95,11/29/19 14:39,"967 Spruce St, Dallas, TX 75001" -284428,USB-C Charging Cable,1,11.95,11/04/19 21:47,"285 Church St, Los Angeles, CA 90001" -284428,USB-C Charging Cable,1,11.95,11/04/19 21:47,"285 Church St, Los Angeles, CA 90001" -284429,iPhone,1,700,11/13/19 08:22,"370 Lincoln St, Seattle, WA 98101" -284430,AA Batteries (4-pack),2,3.84,11/30/19 14:28,"310 12th St, Dallas, TX 75001" -284431,Apple Airpods Headphones,1,150,11/21/19 20:31,"402 12th St, San Francisco, CA 94016" -284432,Bose SoundSport Headphones,1,99.99,11/03/19 14:42,"570 7th St, New York City, NY 10001" -284433,USB-C Charging Cable,1,11.95,11/15/19 10:31,"214 10th St, San Francisco, CA 94016" -284434,Lightning Charging Cable,1,14.95,11/09/19 19:51,"97 14th St, Los Angeles, CA 90001" -284435,34in Ultrawide Monitor,1,379.99,11/02/19 21:56,"463 Ridge St, San Francisco, CA 94016" -284436,Lightning Charging Cable,1,14.95,11/12/19 16:18,"525 Johnson St, Dallas, TX 75001" -284437,AAA Batteries (4-pack),1,2.99,11/20/19 19:56,"773 Hickory St, San Francisco, CA 94016" -284438,USB-C Charging Cable,1,11.95,11/20/19 13:56,"520 Sunset St, Portland, OR 97035" -284439,Wired Headphones,1,11.99,11/27/19 12:51,"404 Johnson St, Boston, MA 02215" -284440,Bose SoundSport Headphones,1,99.99,11/11/19 11:35,"177 Walnut St, Boston, MA 02215" -284441,USB-C Charging Cable,2,11.95,11/25/19 17:15,"998 9th St, New York City, NY 10001" -284442,Wired Headphones,2,11.99,11/18/19 20:52,"671 West St, Atlanta, GA 30301" -284443,Lightning Charging Cable,1,14.95,11/20/19 22:54,"416 Spruce St, San Francisco, CA 94016" -284444,USB-C Charging Cable,1,11.95,11/21/19 16:34,"317 2nd St, Dallas, TX 75001" -284445,AA Batteries (4-pack),1,3.84,11/09/19 17:23,"714 Park St, New York City, NY 10001" -284446,34in Ultrawide Monitor,1,379.99,11/27/19 17:30,"703 10th St, Boston, MA 02215" -284447,AA Batteries (4-pack),1,3.84,11/15/19 12:34,"953 Lincoln St, San Francisco, CA 94016" -284448,Wired Headphones,1,11.99,11/27/19 20:44,"568 North St, Los Angeles, CA 90001" -284449,Wired Headphones,1,11.99,11/02/19 21:43,"498 Highland St, Los Angeles, CA 90001" -,,,,, -284450,34in Ultrawide Monitor,1,379.99,11/05/19 19:47,"234 6th St, Dallas, TX 75001" -284451,Flatscreen TV,1,300,11/22/19 16:55,"214 Jackson St, San Francisco, CA 94016" -284452,LG Dryer,1,600.0,11/16/19 16:00,"435 South St, Los Angeles, CA 90001" -284453,Wired Headphones,1,11.99,11/06/19 00:07,"934 Main St, New York City, NY 10001" -284454,iPhone,1,700,11/15/19 09:44,"458 10th St, Seattle, WA 98101" -284455,Apple Airpods Headphones,1,150,11/25/19 15:20,"662 2nd St, San Francisco, CA 94016" -284456,Lightning Charging Cable,1,14.95,11/20/19 16:00,"851 Elm St, New York City, NY 10001" -284457,AAA Batteries (4-pack),2,2.99,11/07/19 19:52,"108 11th St, New York City, NY 10001" -284458,27in 4K Gaming Monitor,1,389.99,11/05/19 16:24,"54 Hill St, Dallas, TX 75001" -284459,Bose SoundSport Headphones,1,99.99,11/11/19 18:54,"202 Cherry St, Atlanta, GA 30301" -284460,AAA Batteries (4-pack),3,2.99,11/23/19 16:14,"232 Walnut St, Los Angeles, CA 90001" -284461,USB-C Charging Cable,3,11.95,11/21/19 19:37,"738 Spruce St, Los Angeles, CA 90001" -284462,Lightning Charging Cable,1,14.95,11/28/19 10:52,"189 South St, San Francisco, CA 94016" -284463,LG Dryer,1,600.0,11/29/19 22:24,"667 Willow St, San Francisco, CA 94016" -284464,27in 4K Gaming Monitor,1,389.99,11/01/19 10:29,"943 10th St, Boston, MA 02215" -284465,Flatscreen TV,1,300,11/11/19 21:30,"80 Wilson St, San Francisco, CA 94016" -284466,AAA Batteries (4-pack),1,2.99,11/12/19 22:01,"687 Jefferson St, Seattle, WA 98101" -284467,Macbook Pro Laptop,1,1700,11/11/19 15:55,"835 Elm St, Boston, MA 02215" -284468,34in Ultrawide Monitor,1,379.99,11/03/19 06:24,"370 11th St, Dallas, TX 75001" -284469,Wired Headphones,1,11.99,11/07/19 12:46,"776 9th St, San Francisco, CA 94016" -284470,Apple Airpods Headphones,1,150,11/03/19 00:52,"315 Jefferson St, San Francisco, CA 94016" -284471,AAA Batteries (4-pack),2,2.99,11/24/19 10:25,"923 6th St, Seattle, WA 98101" -284472,iPhone,1,700,11/20/19 18:12,"383 Spruce St, Los Angeles, CA 90001" -284473,27in 4K Gaming Monitor,1,389.99,11/01/19 10:20,"437 Ridge St, San Francisco, CA 94016" -284474,Apple Airpods Headphones,1,150,11/29/19 21:45,"798 Hickory St, New York City, NY 10001" -284475,AA Batteries (4-pack),1,3.84,11/08/19 14:08,"14 Sunset St, Atlanta, GA 30301" -284476,AAA Batteries (4-pack),1,2.99,11/23/19 22:42,"711 Dogwood St, San Francisco, CA 94016" -284477,Bose SoundSport Headphones,1,99.99,11/27/19 07:49,"808 Adams St, Atlanta, GA 30301" -284478,Wired Headphones,1,11.99,11/25/19 07:59,"663 Main St, Atlanta, GA 30301" -284479,27in FHD Monitor,1,149.99,11/27/19 12:18,"848 Highland St, Los Angeles, CA 90001" -284480,Bose SoundSport Headphones,1,99.99,11/22/19 17:11,"571 North St, New York City, NY 10001" -284481,20in Monitor,1,109.99,11/22/19 21:31,"772 Park St, Dallas, TX 75001" -284482,Apple Airpods Headphones,1,150,11/27/19 19:04,"319 7th St, Portland, OR 97035" -284483,Lightning Charging Cable,1,14.95,11/10/19 09:53,"406 Ridge St, San Francisco, CA 94016" -284484,AAA Batteries (4-pack),1,2.99,11/08/19 21:14,"267 8th St, Boston, MA 02215" -284485,iPhone,1,700,11/14/19 13:13,"108 Johnson St, Dallas, TX 75001" -284485,Lightning Charging Cable,1,14.95,11/14/19 13:13,"108 Johnson St, Dallas, TX 75001" -284485,Wired Headphones,1,11.99,11/14/19 13:13,"108 Johnson St, Dallas, TX 75001" -284486,Apple Airpods Headphones,1,150,11/09/19 18:07,"766 Sunset St, New York City, NY 10001" -284487,AA Batteries (4-pack),2,3.84,11/24/19 17:33,"316 9th St, Los Angeles, CA 90001" -284488,Apple Airpods Headphones,1,150,11/28/19 19:54,"303 5th St, San Francisco, CA 94016" -284488,AA Batteries (4-pack),5,3.84,11/28/19 19:54,"303 5th St, San Francisco, CA 94016" -284489,iPhone,1,700,11/25/19 11:53,"819 12th St, San Francisco, CA 94016" -284489,AAA Batteries (4-pack),1,2.99,11/25/19 11:53,"819 12th St, San Francisco, CA 94016" -284490,USB-C Charging Cable,1,11.95,11/23/19 19:19,"770 Jefferson St, Seattle, WA 98101" -284491,Wired Headphones,1,11.99,11/20/19 18:30,"689 Wilson St, San Francisco, CA 94016" -284492,Wired Headphones,1,11.99,11/29/19 11:37,"252 Lincoln St, San Francisco, CA 94016" -284493,AAA Batteries (4-pack),1,2.99,11/16/19 14:00,"452 Maple St, Boston, MA 02215" -284494,Bose SoundSport Headphones,1,99.99,12/01/19 00:10,"59 River St, Los Angeles, CA 90001" -284495,USB-C Charging Cable,1,11.95,11/21/19 16:49,"101 10th St, Seattle, WA 98101" -284496,Wired Headphones,1,11.99,11/21/19 12:07,"127 Lincoln St, Seattle, WA 98101" -284497,ThinkPad Laptop,1,999.99,11/24/19 23:48,"258 Hickory St, Boston, MA 02215" -284498,Apple Airpods Headphones,1,150,11/20/19 13:10,"996 Center St, Austin, TX 73301" -284499,34in Ultrawide Monitor,1,379.99,11/03/19 17:57,"703 Lake St, San Francisco, CA 94016" -284500,27in FHD Monitor,1,149.99,11/28/19 19:22,"23 North St, Portland, OR 97035" -284501,Macbook Pro Laptop,1,1700,11/15/19 18:51,"926 11th St, Dallas, TX 75001" -284501,USB-C Charging Cable,1,11.95,11/15/19 18:51,"926 11th St, Dallas, TX 75001" -284502,Wired Headphones,1,11.99,11/24/19 09:02,"743 Hickory St, Los Angeles, CA 90001" -284503,Wired Headphones,1,11.99,11/01/19 13:32,"665 Maple St, Atlanta, GA 30301" -284504,USB-C Charging Cable,1,11.95,11/30/19 00:27,"299 Dogwood St, Atlanta, GA 30301" -284505,USB-C Charging Cable,1,11.95,11/11/19 01:13,"263 Hill St, Los Angeles, CA 90001" -284506,USB-C Charging Cable,2,11.95,11/06/19 23:12,"42 8th St, Austin, TX 73301" -284507,27in 4K Gaming Monitor,1,389.99,11/22/19 18:43,"818 Adams St, Boston, MA 02215" -284508,Wired Headphones,1,11.99,11/19/19 12:05,"831 Sunset St, Los Angeles, CA 90001" -284508,AAA Batteries (4-pack),1,2.99,11/19/19 12:05,"831 Sunset St, Los Angeles, CA 90001" -284509,34in Ultrawide Monitor,1,379.99,11/03/19 11:49,"289 11th St, Los Angeles, CA 90001" -284510,Wired Headphones,1,11.99,11/22/19 13:18,"507 North St, Los Angeles, CA 90001" -284511,Google Phone,1,600,11/07/19 05:29,"368 Center St, San Francisco, CA 94016" -284512,USB-C Charging Cable,1,11.95,11/20/19 20:20,"279 Sunset St, San Francisco, CA 94016" -284513,34in Ultrawide Monitor,1,379.99,11/20/19 22:36,"522 Church St, New York City, NY 10001" -284514,27in 4K Gaming Monitor,1,389.99,11/30/19 20:50,"692 12th St, San Francisco, CA 94016" -284515,Lightning Charging Cable,1,14.95,11/28/19 18:53,"130 10th St, Boston, MA 02215" -284516,Bose SoundSport Headphones,1,99.99,11/18/19 14:08,"290 Wilson St, Los Angeles, CA 90001" -284517,Apple Airpods Headphones,1,150,11/22/19 14:05,"880 Lakeview St, Boston, MA 02215" -284518,AAA Batteries (4-pack),2,2.99,11/22/19 19:29,"830 11th St, Atlanta, GA 30301" -284519,AA Batteries (4-pack),1,3.84,11/01/19 10:52,"752 Washington St, San Francisco, CA 94016" -284520,27in 4K Gaming Monitor,1,389.99,11/16/19 16:17,"860 Cherry St, Seattle, WA 98101" -284521,AA Batteries (4-pack),1,3.84,11/30/19 16:04,"232 Hill St, Los Angeles, CA 90001" -284522,Wired Headphones,1,11.99,11/03/19 12:13,"64 West St, Dallas, TX 75001" -284523,iPhone,1,700,11/26/19 08:30,"994 Washington St, San Francisco, CA 94016" -284524,27in 4K Gaming Monitor,1,389.99,11/05/19 11:33,"149 Spruce St, Dallas, TX 75001" -284525,USB-C Charging Cable,1,11.95,11/05/19 13:29,"114 Ridge St, Seattle, WA 98101" -284525,USB-C Charging Cable,1,11.95,11/05/19 13:29,"114 Ridge St, Seattle, WA 98101" -284526,USB-C Charging Cable,1,11.95,11/08/19 12:36,"814 Johnson St, Seattle, WA 98101" -284527,Macbook Pro Laptop,1,1700,11/08/19 18:21,"858 2nd St, Portland, OR 97035" -284528,AA Batteries (4-pack),1,3.84,11/26/19 22:49,"870 North St, Atlanta, GA 30301" -284529,Wired Headphones,1,11.99,11/25/19 18:21,"196 11th St, Seattle, WA 98101" -284530,Lightning Charging Cable,1,14.95,11/16/19 23:06,"983 Wilson St, Los Angeles, CA 90001" -284531,iPhone,1,700,11/09/19 21:07,"531 Lake St, San Francisco, CA 94016" -284532,Lightning Charging Cable,1,14.95,11/10/19 13:11,"242 Jackson St, Los Angeles, CA 90001" -284533,Wired Headphones,1,11.99,11/23/19 20:05,"392 5th St, Portland, ME 04101" -284534,34in Ultrawide Monitor,1,379.99,11/02/19 20:01,"96 10th St, New York City, NY 10001" -284535,Flatscreen TV,1,300,11/03/19 11:56,"763 River St, New York City, NY 10001" -284536,USB-C Charging Cable,1,11.95,11/26/19 00:47,"655 Willow St, Boston, MA 02215" -284537,27in FHD Monitor,1,149.99,11/12/19 20:52,"536 South St, Boston, MA 02215" -284538,27in FHD Monitor,1,149.99,11/16/19 16:09,"881 Washington St, Los Angeles, CA 90001" -284539,Bose SoundSport Headphones,1,99.99,11/23/19 19:24,"445 1st St, New York City, NY 10001" -284540,Flatscreen TV,1,300,11/13/19 17:47,"515 Lincoln St, Dallas, TX 75001" -284541,Bose SoundSport Headphones,1,99.99,11/17/19 12:20,"517 Chestnut St, San Francisco, CA 94016" -284542,iPhone,1,700,11/06/19 17:40,"32 11th St, Los Angeles, CA 90001" -284543,Lightning Charging Cable,1,14.95,11/20/19 11:36,"879 Washington St, Austin, TX 73301" -284544,Lightning Charging Cable,1,14.95,11/22/19 07:53,"1 Madison St, Los Angeles, CA 90001" -284545,Apple Airpods Headphones,1,150,11/06/19 21:16,"73 Church St, Portland, ME 04101" -284546,Bose SoundSport Headphones,1,99.99,11/09/19 19:35,"557 2nd St, Los Angeles, CA 90001" -284547,AAA Batteries (4-pack),1,2.99,11/02/19 16:57,"828 South St, Seattle, WA 98101" -284548,Lightning Charging Cable,1,14.95,11/27/19 17:30,"562 Spruce St, Seattle, WA 98101" -284549,USB-C Charging Cable,1,11.95,11/11/19 20:30,"196 Forest St, Boston, MA 02215" -284550,Google Phone,1,600,11/07/19 11:15,"868 14th St, San Francisco, CA 94016" -284550,USB-C Charging Cable,1,11.95,11/07/19 11:15,"868 14th St, San Francisco, CA 94016" -284551,USB-C Charging Cable,1,11.95,11/22/19 08:27,"215 2nd St, Atlanta, GA 30301" -284552,27in FHD Monitor,1,149.99,11/06/19 03:34,"892 Hill St, Austin, TX 73301" -284553,Bose SoundSport Headphones,1,99.99,11/04/19 16:12,"778 Forest St, Boston, MA 02215" -284554,Apple Airpods Headphones,1,150,11/14/19 18:57,"498 6th St, San Francisco, CA 94016" -284555,USB-C Charging Cable,1,11.95,11/27/19 13:04,"886 Lincoln St, Boston, MA 02215" -284556,Flatscreen TV,1,300,11/04/19 08:05,"32 Main St, Portland, OR 97035" -284557,Flatscreen TV,1,300,11/05/19 23:13,"796 11th St, Atlanta, GA 30301" -284558,AAA Batteries (4-pack),2,2.99,11/25/19 20:15,"318 10th St, San Francisco, CA 94016" -284559,AAA Batteries (4-pack),1,2.99,11/23/19 15:53,"516 4th St, Dallas, TX 75001" -284560,iPhone,1,700,11/26/19 16:18,"583 Park St, Atlanta, GA 30301" -284561,Bose SoundSport Headphones,1,99.99,11/30/19 08:17,"631 Adams St, San Francisco, CA 94016" -284562,20in Monitor,1,109.99,11/04/19 14:07,"142 14th St, Seattle, WA 98101" -284563,LG Washing Machine,1,600.0,11/07/19 15:30,"663 Church St, Seattle, WA 98101" -284564,AA Batteries (4-pack),2,3.84,11/04/19 10:01,"171 Highland St, New York City, NY 10001" -284565,Apple Airpods Headphones,1,150,11/01/19 23:30,"82 13th St, Seattle, WA 98101" -284566,Lightning Charging Cable,1,14.95,11/03/19 16:52,"180 13th St, Los Angeles, CA 90001" -284567,AA Batteries (4-pack),1,3.84,11/04/19 19:01,"706 Ridge St, Los Angeles, CA 90001" -284568,iPhone,1,700,11/14/19 08:08,"318 14th St, Boston, MA 02215" -284568,Apple Airpods Headphones,1,150,11/14/19 08:08,"318 14th St, Boston, MA 02215" -284569,Wired Headphones,2,11.99,11/26/19 18:57,"853 Jackson St, Boston, MA 02215" -284570,ThinkPad Laptop,1,999.99,11/05/19 22:22,"811 Lake St, Boston, MA 02215" -284571,Apple Airpods Headphones,1,150,11/06/19 23:39,"358 Wilson St, Seattle, WA 98101" -284572,Flatscreen TV,1,300,11/30/19 13:23,"364 Wilson St, Los Angeles, CA 90001" -284573,Lightning Charging Cable,1,14.95,11/25/19 20:27,"767 7th St, Los Angeles, CA 90001" -284574,AA Batteries (4-pack),1,3.84,11/13/19 18:49,"741 Cedar St, San Francisco, CA 94016" -284575,Apple Airpods Headphones,1,150,11/02/19 19:43,"256 1st St, Dallas, TX 75001" -284576,Google Phone,1,600,11/19/19 12:33,"706 Jackson St, Boston, MA 02215" -284576,USB-C Charging Cable,2,11.95,11/19/19 12:33,"706 Jackson St, Boston, MA 02215" -284577,USB-C Charging Cable,1,11.95,11/30/19 11:54,"788 Madison St, Portland, OR 97035" -284578,USB-C Charging Cable,1,11.95,11/18/19 03:34,"841 Hickory St, Seattle, WA 98101" -284579,iPhone,1,700,11/25/19 17:08,"652 Spruce St, Los Angeles, CA 90001" -284579,Lightning Charging Cable,1,14.95,11/25/19 17:08,"652 Spruce St, Los Angeles, CA 90001" -284580,Wired Headphones,1,11.99,11/28/19 16:19,"543 Lakeview St, Atlanta, GA 30301" -284581,USB-C Charging Cable,1,11.95,11/05/19 22:59,"201 Spruce St, New York City, NY 10001" -284582,20in Monitor,1,109.99,11/19/19 09:29,"808 West St, Seattle, WA 98101" -284583,ThinkPad Laptop,1,999.99,11/02/19 19:56,"418 Highland St, New York City, NY 10001" -284584,Apple Airpods Headphones,1,150,11/16/19 11:08,"654 13th St, Seattle, WA 98101" -284585,Bose SoundSport Headphones,1,99.99,11/02/19 16:22,"249 Cherry St, Portland, OR 97035" -284586,AAA Batteries (4-pack),1,2.99,11/22/19 13:58,"414 7th St, Atlanta, GA 30301" -284587,34in Ultrawide Monitor,1,379.99,11/14/19 21:43,"247 8th St, Boston, MA 02215" -284588,Bose SoundSport Headphones,1,99.99,11/28/19 16:09,"242 Johnson St, San Francisco, CA 94016" -284589,USB-C Charging Cable,1,11.95,11/29/19 16:44,"413 South St, Portland, ME 04101" -284590,Wired Headphones,1,11.99,11/17/19 21:16,"764 Willow St, Los Angeles, CA 90001" -284591,AAA Batteries (4-pack),1,2.99,11/21/19 13:19,"563 Spruce St, San Francisco, CA 94016" -284592,Bose SoundSport Headphones,1,99.99,11/05/19 18:25,"126 Hickory St, San Francisco, CA 94016" -284593,Lightning Charging Cable,1,14.95,11/22/19 16:35,"847 Park St, Atlanta, GA 30301" -284594,Wired Headphones,1,11.99,11/13/19 20:33,"687 Cherry St, New York City, NY 10001" -284595,ThinkPad Laptop,1,999.99,11/06/19 20:19,"67 Ridge St, San Francisco, CA 94016" -284596,AA Batteries (4-pack),1,3.84,11/11/19 22:53,"492 Forest St, Los Angeles, CA 90001" -284597,ThinkPad Laptop,1,999.99,11/06/19 17:18,"353 Walnut St, New York City, NY 10001" -284598,USB-C Charging Cable,1,11.95,11/19/19 17:58,"271 Johnson St, San Francisco, CA 94016" -284599,Apple Airpods Headphones,1,150,11/16/19 20:08,"855 Washington St, Los Angeles, CA 90001" -284600,Wired Headphones,1,11.99,11/02/19 18:57,"675 River St, San Francisco, CA 94016" -284601,Apple Airpods Headphones,1,150,11/10/19 18:03,"511 Meadow St, Boston, MA 02215" -284602,USB-C Charging Cable,2,11.95,11/19/19 16:26,"731 Chestnut St, San Francisco, CA 94016" -284603,AA Batteries (4-pack),1,3.84,11/17/19 22:52,"704 Elm St, Dallas, TX 75001" -284604,Lightning Charging Cable,1,14.95,11/24/19 11:14,"495 River St, Boston, MA 02215" -284605,Apple Airpods Headphones,1,150,11/24/19 14:37,"150 5th St, Portland, OR 97035" -284606,27in 4K Gaming Monitor,1,389.99,11/29/19 13:51,"883 Jackson St, Los Angeles, CA 90001" -284607,Lightning Charging Cable,1,14.95,11/13/19 13:37,"689 13th St, New York City, NY 10001" -284608,AA Batteries (4-pack),1,3.84,11/10/19 12:43,"282 Jefferson St, Boston, MA 02215" -284609,AAA Batteries (4-pack),3,2.99,11/23/19 10:57,"982 Main St, Los Angeles, CA 90001" -284609,AA Batteries (4-pack),1,3.84,11/23/19 10:57,"982 Main St, Los Angeles, CA 90001" -284610,Apple Airpods Headphones,1,150,11/28/19 07:28,"82 1st St, Los Angeles, CA 90001" -284611,USB-C Charging Cable,1,11.95,11/16/19 17:45,"609 Jackson St, Portland, OR 97035" -284612,Lightning Charging Cable,1,14.95,11/17/19 13:47,"771 Park St, San Francisco, CA 94016" -284613,AAA Batteries (4-pack),1,2.99,11/05/19 21:07,"361 North St, New York City, NY 10001" -284614,Macbook Pro Laptop,1,1700,11/24/19 12:12,"564 8th St, San Francisco, CA 94016" -284615,iPhone,1,700,11/10/19 11:37,"81 Maple St, Atlanta, GA 30301" -284616,34in Ultrawide Monitor,1,379.99,11/02/19 17:34,"42 4th St, Dallas, TX 75001" -284617,Bose SoundSport Headphones,1,99.99,11/27/19 17:36,"610 5th St, San Francisco, CA 94016" -284618,iPhone,1,700,11/26/19 17:03,"800 13th St, Los Angeles, CA 90001" -284619,27in 4K Gaming Monitor,1,389.99,11/03/19 08:39,"526 River St, San Francisco, CA 94016" -284620,AA Batteries (4-pack),1,3.84,11/04/19 13:44,"790 Jackson St, Boston, MA 02215" -284621,Apple Airpods Headphones,1,150,11/18/19 12:09,"881 13th St, Seattle, WA 98101" -284622,Apple Airpods Headphones,1,150,11/05/19 13:09,"49 13th St, Los Angeles, CA 90001" -284623,Bose SoundSport Headphones,1,99.99,11/03/19 17:07,"469 Hill St, Los Angeles, CA 90001" -284624,Macbook Pro Laptop,1,1700,11/17/19 09:11,"313 Hickory St, New York City, NY 10001" -284625,USB-C Charging Cable,1,11.95,11/29/19 17:36,"595 5th St, New York City, NY 10001" -284626,AA Batteries (4-pack),1,3.84,11/23/19 23:34,"224 12th St, New York City, NY 10001" -284627,AA Batteries (4-pack),1,3.84,11/07/19 11:16,"939 Lake St, Boston, MA 02215" -284628,Wired Headphones,1,11.99,11/27/19 10:09,"316 Lake St, Dallas, TX 75001" -284629,Bose SoundSport Headphones,1,99.99,11/01/19 20:13,"910 Park St, Boston, MA 02215" -284630,iPhone,1,700,11/04/19 13:46,"333 2nd St, San Francisco, CA 94016" -284630,Lightning Charging Cable,1,14.95,11/04/19 13:46,"333 2nd St, San Francisco, CA 94016" -284631,34in Ultrawide Monitor,1,379.99,11/16/19 09:55,"253 Highland St, Austin, TX 73301" -284632,AA Batteries (4-pack),1,3.84,11/03/19 17:46,"480 Spruce St, Dallas, TX 75001" -284633,Wired Headphones,1,11.99,11/30/19 18:09,"442 Jefferson St, Los Angeles, CA 90001" -284634,USB-C Charging Cable,1,11.95,11/21/19 12:11,"888 Willow St, San Francisco, CA 94016" -284635,34in Ultrawide Monitor,1,379.99,11/24/19 15:52,"383 Highland St, Boston, MA 02215" -284636,Lightning Charging Cable,2,14.95,11/17/19 14:49,"752 Highland St, Austin, TX 73301" -284637,27in 4K Gaming Monitor,1,389.99,11/06/19 15:12,"491 Johnson St, San Francisco, CA 94016" -284638,USB-C Charging Cable,1,11.95,11/20/19 19:12,"329 Hill St, Atlanta, GA 30301" -284639,34in Ultrawide Monitor,1,379.99,11/19/19 22:47,"466 14th St, Portland, ME 04101" -284640,ThinkPad Laptop,1,999.99,11/03/19 10:19,"829 Hickory St, San Francisco, CA 94016" -284641,AAA Batteries (4-pack),1,2.99,11/17/19 15:51,"401 Pine St, San Francisco, CA 94016" -284642,AA Batteries (4-pack),1,3.84,11/30/19 17:19,"284 Park St, Seattle, WA 98101" -284643,Wired Headphones,1,11.99,11/24/19 12:22,"559 6th St, Portland, ME 04101" -284644,AA Batteries (4-pack),2,3.84,11/06/19 11:33,"498 Jefferson St, New York City, NY 10001" -284645,USB-C Charging Cable,2,11.95,11/05/19 21:40,"840 Church St, New York City, NY 10001" -284646,AAA Batteries (4-pack),1,2.99,11/17/19 16:17,"946 Johnson St, Boston, MA 02215" -284647,Lightning Charging Cable,1,14.95,11/28/19 17:37,"26 Walnut St, Los Angeles, CA 90001" -284648,iPhone,1,700,11/07/19 19:05,"554 13th St, Boston, MA 02215" -284648,Lightning Charging Cable,2,14.95,11/07/19 19:05,"554 13th St, Boston, MA 02215" -,,,,, -284649,Wired Headphones,1,11.99,11/24/19 17:16,"485 Johnson St, Los Angeles, CA 90001" -284650,Wired Headphones,1,11.99,11/01/19 13:50,"263 Cherry St, Dallas, TX 75001" -284651,AAA Batteries (4-pack),4,2.99,11/14/19 15:19,"638 7th St, New York City, NY 10001" -284652,iPhone,1,700,11/16/19 18:10,"811 11th St, New York City, NY 10001" -284653,Apple Airpods Headphones,1,150,11/05/19 18:39,"472 Highland St, Seattle, WA 98101" -284654,USB-C Charging Cable,1,11.95,11/06/19 01:40,"360 Madison St, San Francisco, CA 94016" -284655,Lightning Charging Cable,1,14.95,11/02/19 12:42,"399 4th St, Austin, TX 73301" -284656,iPhone,1,700,11/18/19 10:44,"715 5th St, New York City, NY 10001" -284657,Bose SoundSport Headphones,1,99.99,11/06/19 08:21,"28 Jefferson St, Dallas, TX 75001" -284658,ThinkPad Laptop,1,999.99,11/09/19 18:36,"61 4th St, San Francisco, CA 94016" -284659,Lightning Charging Cable,1,14.95,11/03/19 11:36,"570 North St, Seattle, WA 98101" -284660,Bose SoundSport Headphones,1,99.99,11/20/19 19:44,"618 River St, New York City, NY 10001" -284661,Apple Airpods Headphones,1,150,11/04/19 21:06,"967 8th St, San Francisco, CA 94016" -284662,ThinkPad Laptop,1,999.99,11/28/19 18:39,"346 Willow St, Los Angeles, CA 90001" -284663,20in Monitor,1,109.99,11/23/19 08:40,"9 Johnson St, Portland, OR 97035" -284664,USB-C Charging Cable,1,11.95,11/25/19 05:10,"383 13th St, San Francisco, CA 94016" -284665,Wired Headphones,1,11.99,11/16/19 17:44,"282 Hill St, San Francisco, CA 94016" -284666,34in Ultrawide Monitor,1,379.99,11/29/19 11:42,"531 Hickory St, Atlanta, GA 30301" -284667,Bose SoundSport Headphones,1,99.99,11/22/19 16:00,"853 14th St, Dallas, TX 75001" -284668,27in 4K Gaming Monitor,1,389.99,11/02/19 20:15,"891 Walnut St, San Francisco, CA 94016" -284669,AAA Batteries (4-pack),1,2.99,11/27/19 17:47,"752 Lake St, Boston, MA 02215" -284670,Google Phone,1,600,11/17/19 15:45,"844 Washington St, Atlanta, GA 30301" -284670,Wired Headphones,1,11.99,11/17/19 15:45,"844 Washington St, Atlanta, GA 30301" -284671,Google Phone,1,600,11/16/19 13:39,"250 Highland St, San Francisco, CA 94016" -284672,Lightning Charging Cable,1,14.95,11/16/19 15:55,"531 Cedar St, Atlanta, GA 30301" -284673,Google Phone,1,600,11/13/19 19:15,"606 Forest St, Los Angeles, CA 90001" -284674,AA Batteries (4-pack),1,3.84,11/26/19 10:18,"206 4th St, Atlanta, GA 30301" -284675,34in Ultrawide Monitor,1,379.99,11/29/19 23:30,"376 West St, Boston, MA 02215" -284676,Apple Airpods Headphones,1,150,11/20/19 16:03,"402 Willow St, San Francisco, CA 94016" -284677,AAA Batteries (4-pack),1,2.99,11/22/19 14:53,"103 Johnson St, New York City, NY 10001" -284678,Bose SoundSport Headphones,1,99.99,11/27/19 19:43,"616 Maple St, New York City, NY 10001" -284679,20in Monitor,1,109.99,11/29/19 21:02,"164 Chestnut St, San Francisco, CA 94016" -284680,AA Batteries (4-pack),1,3.84,11/06/19 14:35,"701 South St, New York City, NY 10001" -284681,Apple Airpods Headphones,1,150,11/03/19 06:43,"866 Pine St, San Francisco, CA 94016" -284682,27in FHD Monitor,1,149.99,11/17/19 17:45,"457 Spruce St, Los Angeles, CA 90001" -284683,AA Batteries (4-pack),2,3.84,11/23/19 09:17,"743 Jackson St, San Francisco, CA 94016" -284684,AA Batteries (4-pack),2,3.84,11/28/19 20:34,"449 Cedar St, Los Angeles, CA 90001" -284685,USB-C Charging Cable,1,11.95,11/26/19 16:55,"392 7th St, Portland, ME 04101" -284686,Vareebadd Phone,1,400,11/23/19 20:18,"474 Center St, New York City, NY 10001" -284687,Wired Headphones,1,11.99,11/07/19 03:01,"430 Main St, Boston, MA 02215" -284688,AAA Batteries (4-pack),1,2.99,11/21/19 22:04,"151 Willow St, Dallas, TX 75001" -284689,USB-C Charging Cable,1,11.95,11/23/19 09:41,"686 Jefferson St, Boston, MA 02215" -284690,ThinkPad Laptop,1,999.99,11/09/19 16:43,"447 10th St, Seattle, WA 98101" -284691,Macbook Pro Laptop,1,1700,11/12/19 17:01,"866 Park St, San Francisco, CA 94016" -284692,LG Washing Machine,1,600.0,11/20/19 20:25,"318 8th St, Dallas, TX 75001" -284693,Lightning Charging Cable,1,14.95,11/15/19 00:08,"729 9th St, New York City, NY 10001" -284694,iPhone,1,700,11/27/19 10:01,"655 Ridge St, Dallas, TX 75001" -284695,Bose SoundSport Headphones,1,99.99,11/29/19 16:38,"129 Walnut St, Boston, MA 02215" -284696,AAA Batteries (4-pack),1,2.99,11/26/19 09:54,"746 Willow St, Seattle, WA 98101" -284697,AAA Batteries (4-pack),1,2.99,11/30/19 22:02,"421 8th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -284698,Flatscreen TV,1,300,11/27/19 07:44,"958 10th St, Seattle, WA 98101" -284699,USB-C Charging Cable,1,11.95,11/07/19 09:30,"192 9th St, New York City, NY 10001" -284700,Bose SoundSport Headphones,1,99.99,11/16/19 14:37,"244 Park St, Los Angeles, CA 90001" -284701,27in FHD Monitor,1,149.99,11/15/19 07:41,"249 8th St, Dallas, TX 75001" -284702,AA Batteries (4-pack),1,3.84,11/04/19 17:29,"208 8th St, Los Angeles, CA 90001" -284703,20in Monitor,1,109.99,11/05/19 17:12,"261 Wilson St, San Francisco, CA 94016" -284704,AA Batteries (4-pack),2,3.84,11/12/19 10:21,"498 Chestnut St, Los Angeles, CA 90001" -284704,AA Batteries (4-pack),1,3.84,11/12/19 10:21,"498 Chestnut St, Los Angeles, CA 90001" -284705,Lightning Charging Cable,1,14.95,11/25/19 16:23,"853 Chestnut St, Los Angeles, CA 90001" -284706,Wired Headphones,2,11.99,11/24/19 11:38,"715 Walnut St, New York City, NY 10001" -284707,AAA Batteries (4-pack),1,2.99,11/09/19 21:38,"420 Walnut St, San Francisco, CA 94016" -284708,Macbook Pro Laptop,1,1700,11/11/19 20:55,"420 Sunset St, San Francisco, CA 94016" -284709,AA Batteries (4-pack),2,3.84,11/27/19 12:07,"842 4th St, Los Angeles, CA 90001" -284710,Flatscreen TV,1,300,11/14/19 18:29,"92 Spruce St, San Francisco, CA 94016" -284711,Macbook Pro Laptop,1,1700,11/02/19 12:29,"673 West St, Seattle, WA 98101" -284712,Lightning Charging Cable,1,14.95,11/14/19 15:38,"473 Wilson St, San Francisco, CA 94016" -284713,Macbook Pro Laptop,1,1700,11/04/19 08:40,"17 7th St, Atlanta, GA 30301" -284714,AA Batteries (4-pack),1,3.84,11/26/19 18:48,"20 12th St, San Francisco, CA 94016" -284715,Wired Headphones,1,11.99,11/28/19 07:24,"426 2nd St, San Francisco, CA 94016" -284716,AA Batteries (4-pack),3,3.84,11/10/19 20:53,"504 Hill St, Los Angeles, CA 90001" -284717,Lightning Charging Cable,1,14.95,11/21/19 23:15,"937 Lakeview St, San Francisco, CA 94016" -284718,27in 4K Gaming Monitor,1,389.99,11/25/19 16:08,"576 11th St, Dallas, TX 75001" -284719,Bose SoundSport Headphones,1,99.99,11/02/19 15:15,"663 11th St, San Francisco, CA 94016" -284720,USB-C Charging Cable,1,11.95,11/08/19 21:59,"517 Highland St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -284721,20in Monitor,1,109.99,11/30/19 20:49,"850 Spruce St, New York City, NY 10001" -284722,27in 4K Gaming Monitor,1,389.99,11/27/19 17:24,"780 Johnson St, Boston, MA 02215" -284723,USB-C Charging Cable,1,11.95,11/18/19 21:57,"631 Cherry St, Atlanta, GA 30301" -284724,USB-C Charging Cable,1,11.95,11/09/19 07:30,"873 Church St, San Francisco, CA 94016" -284725,27in FHD Monitor,1,149.99,11/15/19 13:22,"956 14th St, Seattle, WA 98101" -284726,USB-C Charging Cable,1,11.95,11/02/19 17:50,"817 South St, Boston, MA 02215" -284727,AA Batteries (4-pack),1,3.84,11/23/19 15:09,"801 Lakeview St, San Francisco, CA 94016" -284728,20in Monitor,1,109.99,11/11/19 19:40,"166 Lake St, Atlanta, GA 30301" -284728,Apple Airpods Headphones,1,150,11/11/19 19:40,"166 Lake St, Atlanta, GA 30301" -284729,Lightning Charging Cable,1,14.95,11/21/19 20:19,"825 Lakeview St, Boston, MA 02215" -284730,AA Batteries (4-pack),1,3.84,11/19/19 22:34,"434 Church St, New York City, NY 10001" -284731,AAA Batteries (4-pack),1,2.99,11/29/19 09:39,"862 Maple St, San Francisco, CA 94016" -284732,AA Batteries (4-pack),2,3.84,11/01/19 14:35,"736 Elm St, New York City, NY 10001" -284733,27in FHD Monitor,1,149.99,11/08/19 23:18,"202 Ridge St, Dallas, TX 75001" -284734,Lightning Charging Cable,1,14.95,11/27/19 17:50,"714 River St, New York City, NY 10001" -284735,34in Ultrawide Monitor,1,379.99,11/12/19 17:11,"867 2nd St, Los Angeles, CA 90001" -284736,USB-C Charging Cable,1,11.95,11/24/19 10:27,"129 Adams St, San Francisco, CA 94016" -284737,USB-C Charging Cable,1,11.95,11/30/19 18:11,"591 Willow St, San Francisco, CA 94016" -284738,Bose SoundSport Headphones,1,99.99,11/12/19 13:44,"841 Lincoln St, Dallas, TX 75001" -284739,20in Monitor,1,109.99,11/25/19 13:11,"878 14th St, New York City, NY 10001" -284740,ThinkPad Laptop,1,999.99,11/26/19 18:01,"314 Elm St, Portland, OR 97035" -284741,Bose SoundSport Headphones,1,99.99,11/05/19 11:59,"562 Johnson St, Atlanta, GA 30301" -284742,Google Phone,1,600,11/07/19 11:46,"712 West St, Seattle, WA 98101" -284742,USB-C Charging Cable,1,11.95,11/07/19 11:46,"712 West St, Seattle, WA 98101" -284743,AA Batteries (4-pack),1,3.84,11/02/19 16:31,"989 River St, Los Angeles, CA 90001" -284744,Lightning Charging Cable,1,14.95,11/09/19 16:15,"806 8th St, San Francisco, CA 94016" -284745,Lightning Charging Cable,1,14.95,11/04/19 04:17,"788 River St, Los Angeles, CA 90001" -284746,Flatscreen TV,1,300,11/22/19 18:13,"887 Wilson St, San Francisco, CA 94016" -284747,Flatscreen TV,1,300,11/23/19 21:54,"319 Cedar St, Atlanta, GA 30301" -284748,Bose SoundSport Headphones,1,99.99,11/18/19 17:43,"840 8th St, New York City, NY 10001" -284749,27in FHD Monitor,1,149.99,11/10/19 18:58,"830 Ridge St, San Francisco, CA 94016" -284750,AA Batteries (4-pack),1,3.84,11/09/19 21:06,"382 River St, Austin, TX 73301" -284751,AA Batteries (4-pack),1,3.84,11/27/19 20:01,"452 6th St, Los Angeles, CA 90001" -284752,AAA Batteries (4-pack),2,2.99,11/11/19 15:00,"158 Jackson St, San Francisco, CA 94016" -284753,USB-C Charging Cable,1,11.95,11/26/19 21:56,"740 Washington St, Austin, TX 73301" -284754,AA Batteries (4-pack),1,3.84,11/29/19 09:22,"971 Maple St, Seattle, WA 98101" -284755,AAA Batteries (4-pack),1,2.99,11/06/19 18:35,"93 8th St, San Francisco, CA 94016" -284756,Bose SoundSport Headphones,1,99.99,11/04/19 12:39,"281 2nd St, San Francisco, CA 94016" -284757,USB-C Charging Cable,1,11.95,11/21/19 21:59,"887 Cherry St, San Francisco, CA 94016" -284758,Vareebadd Phone,1,400,11/13/19 20:14,"867 Forest St, San Francisco, CA 94016" -284759,Apple Airpods Headphones,1,150,11/05/19 16:57,"392 Spruce St, Los Angeles, CA 90001" -284760,AAA Batteries (4-pack),1,2.99,11/08/19 11:26,"940 Washington St, Portland, OR 97035" -284761,AA Batteries (4-pack),1,3.84,11/14/19 23:26,"20 Lincoln St, Atlanta, GA 30301" -284761,USB-C Charging Cable,1,11.95,11/14/19 23:26,"20 Lincoln St, Atlanta, GA 30301" -284762,Wired Headphones,1,11.99,11/15/19 13:35,"619 Center St, San Francisco, CA 94016" -284763,iPhone,1,700,11/08/19 15:08,"214 Maple St, San Francisco, CA 94016" -284764,AAA Batteries (4-pack),1,2.99,11/18/19 17:14,"884 Pine St, Boston, MA 02215" -284765,34in Ultrawide Monitor,1,379.99,11/04/19 00:49,"376 4th St, Boston, MA 02215" -284766,27in 4K Gaming Monitor,1,389.99,11/13/19 00:07,"810 Jackson St, San Francisco, CA 94016" -284767,iPhone,1,700,11/26/19 18:35,"945 11th St, Los Angeles, CA 90001" -284768,27in FHD Monitor,1,149.99,11/29/19 19:52,"267 Main St, Seattle, WA 98101" -284769,Wired Headphones,1,11.99,11/20/19 19:05,"799 North St, San Francisco, CA 94016" -284770,AA Batteries (4-pack),1,3.84,11/26/19 19:20,"842 South St, Boston, MA 02215" -284771,iPhone,1,700,11/20/19 12:40,"782 Johnson St, New York City, NY 10001" -284772,34in Ultrawide Monitor,1,379.99,11/14/19 14:45,"49 14th St, San Francisco, CA 94016" -284773,AA Batteries (4-pack),1,3.84,11/15/19 16:56,"923 Cherry St, San Francisco, CA 94016" -284774,ThinkPad Laptop,1,999.99,11/20/19 17:25,"360 Wilson St, Atlanta, GA 30301" -284775,Macbook Pro Laptop,1,1700,11/02/19 20:52,"11 Spruce St, San Francisco, CA 94016" -284776,USB-C Charging Cable,1,11.95,11/14/19 23:57,"654 North St, Seattle, WA 98101" -284777,AAA Batteries (4-pack),2,2.99,11/09/19 12:21,"722 4th St, Dallas, TX 75001" -284778,AA Batteries (4-pack),1,3.84,11/19/19 20:05,"110 Spruce St, Atlanta, GA 30301" -284779,Flatscreen TV,1,300,11/22/19 11:37,"900 Park St, San Francisco, CA 94016" -284780,AAA Batteries (4-pack),1,2.99,11/20/19 18:32,"272 2nd St, San Francisco, CA 94016" -284781,Flatscreen TV,1,300,11/17/19 11:26,"621 11th St, Portland, OR 97035" -284782,AA Batteries (4-pack),2,3.84,11/26/19 11:28,"350 4th St, San Francisco, CA 94016" -284783,AAA Batteries (4-pack),2,2.99,11/16/19 22:29,"508 Pine St, San Francisco, CA 94016" -284784,AAA Batteries (4-pack),2,2.99,11/22/19 11:11,"345 12th St, San Francisco, CA 94016" -284785,Wired Headphones,1,11.99,11/30/19 14:09,"924 Cedar St, Dallas, TX 75001" -284786,Wired Headphones,1,11.99,11/18/19 14:14,"485 Park St, Boston, MA 02215" -284787,AAA Batteries (4-pack),1,2.99,11/02/19 21:44,"909 8th St, San Francisco, CA 94016" -284788,USB-C Charging Cable,1,11.95,11/03/19 15:29,"94 Elm St, San Francisco, CA 94016" -284789,iPhone,1,700,11/10/19 20:05,"440 Pine St, San Francisco, CA 94016" -284790,USB-C Charging Cable,1,11.95,11/28/19 11:06,"702 12th St, San Francisco, CA 94016" -284791,Lightning Charging Cable,1,14.95,11/12/19 17:27,"506 8th St, San Francisco, CA 94016" -284792,Apple Airpods Headphones,1,150,11/09/19 23:31,"8 West St, San Francisco, CA 94016" -284793,AAA Batteries (4-pack),2,2.99,11/27/19 17:24,"579 Madison St, Boston, MA 02215" -284794,Lightning Charging Cable,1,14.95,11/23/19 11:29,"297 Hickory St, San Francisco, CA 94016" -284795,Wired Headphones,1,11.99,11/17/19 14:17,"913 Johnson St, Seattle, WA 98101" -284796,USB-C Charging Cable,1,11.95,11/26/19 13:46,"937 10th St, Seattle, WA 98101" -284797,AAA Batteries (4-pack),1,2.99,11/13/19 13:59,"13 Lincoln St, Los Angeles, CA 90001" -284798,34in Ultrawide Monitor,1,379.99,11/06/19 22:16,"206 14th St, Los Angeles, CA 90001" -284799,ThinkPad Laptop,1,999.99,11/29/19 12:39,"369 Hickory St, San Francisco, CA 94016" -284800,AA Batteries (4-pack),1,3.84,11/08/19 15:48,"506 10th St, San Francisco, CA 94016" -284801,AA Batteries (4-pack),3,3.84,11/27/19 19:14,"921 9th St, Portland, ME 04101" -284802,27in FHD Monitor,1,149.99,11/09/19 21:13,"369 Lake St, San Francisco, CA 94016" -284803,AA Batteries (4-pack),2,3.84,11/22/19 19:46,"15 Adams St, Dallas, TX 75001" -284804,Macbook Pro Laptop,1,1700,11/19/19 15:41,"27 Washington St, San Francisco, CA 94016" -284805,Lightning Charging Cable,1,14.95,11/23/19 14:41,"450 Church St, San Francisco, CA 94016" -284806,USB-C Charging Cable,1,11.95,11/14/19 12:26,"658 Washington St, Atlanta, GA 30301" -284807,USB-C Charging Cable,1,11.95,11/01/19 18:06,"872 2nd St, San Francisco, CA 94016" -284808,USB-C Charging Cable,1,11.95,11/08/19 23:28,"295 13th St, Dallas, TX 75001" -284809,Apple Airpods Headphones,1,150,11/04/19 13:01,"672 2nd St, Boston, MA 02215" -284810,AAA Batteries (4-pack),2,2.99,11/17/19 16:10,"414 South St, Boston, MA 02215" -284811,27in 4K Gaming Monitor,1,389.99,11/06/19 05:32,"733 2nd St, Atlanta, GA 30301" -284811,AAA Batteries (4-pack),1,2.99,11/06/19 05:32,"733 2nd St, Atlanta, GA 30301" -284812,AAA Batteries (4-pack),2,2.99,11/12/19 20:19,"440 Ridge St, Portland, ME 04101" -284813,34in Ultrawide Monitor,1,379.99,11/24/19 19:51,"417 Lake St, San Francisco, CA 94016" -284814,AAA Batteries (4-pack),1,2.99,11/13/19 03:29,"736 Walnut St, Boston, MA 02215" -284815,iPhone,1,700,11/19/19 06:44,"369 11th St, Boston, MA 02215" -284816,USB-C Charging Cable,1,11.95,11/02/19 17:16,"177 10th St, Seattle, WA 98101" -284817,AA Batteries (4-pack),2,3.84,11/08/19 13:24,"668 Lakeview St, Boston, MA 02215" -284818,Lightning Charging Cable,1,14.95,11/09/19 11:27,"504 Pine St, Seattle, WA 98101" -284819,iPhone,1,700,11/28/19 12:49,"82 Cedar St, New York City, NY 10001" -284820,Bose SoundSport Headphones,1,99.99,11/30/19 14:47,"510 13th St, San Francisco, CA 94016" -284821,Apple Airpods Headphones,1,150,11/06/19 22:07,"551 2nd St, Dallas, TX 75001" -284822,AA Batteries (4-pack),3,3.84,11/29/19 21:03,"586 Forest St, Los Angeles, CA 90001" -284823,AA Batteries (4-pack),1,3.84,11/18/19 23:19,"963 Lincoln St, Boston, MA 02215" -284824,27in FHD Monitor,1,149.99,11/16/19 18:03,"286 12th St, Austin, TX 73301" -284825,Google Phone,1,600,11/01/19 14:35,"925 River St, Seattle, WA 98101" -284825,USB-C Charging Cable,1,11.95,11/01/19 14:35,"925 River St, Seattle, WA 98101" -284826,34in Ultrawide Monitor,1,379.99,11/20/19 20:44,"512 West St, Los Angeles, CA 90001" -284827,Bose SoundSport Headphones,1,99.99,11/13/19 09:12,"359 Sunset St, Boston, MA 02215" -284828,Wired Headphones,1,11.99,11/16/19 13:51,"115 11th St, Boston, MA 02215" -284829,Vareebadd Phone,1,400,11/27/19 01:51,"638 Jefferson St, San Francisco, CA 94016" -284830,Apple Airpods Headphones,1,150,11/13/19 08:49,"333 Madison St, San Francisco, CA 94016" -284831,AAA Batteries (4-pack),1,2.99,11/16/19 20:05,"450 8th St, San Francisco, CA 94016" -284832,Apple Airpods Headphones,1,150,11/25/19 12:15,"599 Meadow St, San Francisco, CA 94016" -284833,Lightning Charging Cable,1,14.95,11/16/19 10:50,"406 Meadow St, Dallas, TX 75001" -284834,Flatscreen TV,1,300,11/14/19 11:15,"976 Jackson St, Seattle, WA 98101" -284835,Lightning Charging Cable,1,14.95,11/27/19 13:05,"81 Washington St, New York City, NY 10001" -284836,Apple Airpods Headphones,1,150,11/20/19 21:24,"763 Hickory St, Dallas, TX 75001" -284837,Wired Headphones,1,11.99,11/13/19 07:57,"601 Forest St, Boston, MA 02215" -284838,AAA Batteries (4-pack),1,2.99,11/17/19 08:25,"467 River St, Portland, ME 04101" -284839,Wired Headphones,1,11.99,11/20/19 19:48,"528 Walnut St, New York City, NY 10001" -284840,Bose SoundSport Headphones,1,99.99,11/05/19 21:56,"456 Park St, Atlanta, GA 30301" -284841,iPhone,1,700,11/06/19 08:30,"699 Church St, San Francisco, CA 94016" -284842,AAA Batteries (4-pack),1,2.99,11/03/19 09:57,"420 Chestnut St, San Francisco, CA 94016" -284843,Google Phone,1,600,11/30/19 00:16,"23 1st St, San Francisco, CA 94016" -284844,iPhone,1,700,11/25/19 10:51,"189 Hill St, Dallas, TX 75001" -284845,iPhone,1,700,11/13/19 05:41,"250 1st St, Atlanta, GA 30301" -284846,Bose SoundSport Headphones,1,99.99,11/01/19 13:04,"930 14th St, New York City, NY 10001" -284847,Flatscreen TV,1,300,11/01/19 10:45,"442 Dogwood St, Austin, TX 73301" -284848,Bose SoundSport Headphones,1,99.99,11/17/19 08:57,"884 Maple St, San Francisco, CA 94016" -284849,ThinkPad Laptop,1,999.99,11/15/19 08:46,"620 Maple St, Austin, TX 73301" -284850,Wired Headphones,1,11.99,11/13/19 20:26,"28 Johnson St, New York City, NY 10001" -284851,Wired Headphones,1,11.99,11/02/19 18:15,"823 Highland St, San Francisco, CA 94016" -284852,27in FHD Monitor,1,149.99,11/10/19 14:50,"963 12th St, Los Angeles, CA 90001" -284853,iPhone,1,700,11/19/19 15:14,"444 5th St, Los Angeles, CA 90001" -284854,Bose SoundSport Headphones,1,99.99,11/19/19 09:50,"275 Washington St, New York City, NY 10001" -284855,Bose SoundSport Headphones,1,99.99,11/13/19 18:51,"600 6th St, Seattle, WA 98101" -284856,Wired Headphones,1,11.99,11/27/19 18:16,"708 12th St, Los Angeles, CA 90001" -284857,Lightning Charging Cable,1,14.95,11/06/19 20:52,"287 12th St, New York City, NY 10001" -284858,AAA Batteries (4-pack),2,2.99,11/29/19 14:04,"821 7th St, Atlanta, GA 30301" -284859,LG Dryer,1,600.0,11/04/19 08:42,"167 Johnson St, San Francisco, CA 94016" -284860,AAA Batteries (4-pack),1,2.99,11/03/19 13:08,"228 Walnut St, Dallas, TX 75001" -284861,Apple Airpods Headphones,1,150,11/27/19 08:37,"948 West St, Dallas, TX 75001" -284862,AA Batteries (4-pack),1,3.84,11/27/19 00:31,"583 Center St, San Francisco, CA 94016" -284863,AA Batteries (4-pack),2,3.84,11/22/19 10:18,"380 5th St, Portland, OR 97035" -284864,Lightning Charging Cable,1,14.95,11/15/19 14:24,"556 North St, Atlanta, GA 30301" -284865,Wired Headphones,1,11.99,11/04/19 12:36,"686 13th St, Atlanta, GA 30301" -284866,USB-C Charging Cable,1,11.95,11/12/19 20:46,"953 Dogwood St, Seattle, WA 98101" -284867,Bose SoundSport Headphones,1,99.99,11/02/19 19:30,"24 Ridge St, Boston, MA 02215" -284868,AAA Batteries (4-pack),2,2.99,11/11/19 17:41,"153 Madison St, Dallas, TX 75001" -284869,34in Ultrawide Monitor,1,379.99,11/13/19 15:05,"762 Chestnut St, San Francisco, CA 94016" -284870,Wired Headphones,1,11.99,11/28/19 11:55,"793 Cherry St, Los Angeles, CA 90001" -284871,USB-C Charging Cable,1,11.95,11/30/19 13:01,"278 Forest St, San Francisco, CA 94016" -284872,Lightning Charging Cable,1,14.95,11/21/19 16:16,"714 Park St, Seattle, WA 98101" -284873,AAA Batteries (4-pack),1,2.99,11/05/19 10:59,"530 Madison St, San Francisco, CA 94016" -284874,27in FHD Monitor,1,149.99,11/14/19 12:39,"982 Meadow St, San Francisco, CA 94016" -284875,Vareebadd Phone,1,400,11/20/19 12:14,"400 Ridge St, Atlanta, GA 30301" -284876,27in 4K Gaming Monitor,1,389.99,11/24/19 21:44,"411 Highland St, New York City, NY 10001" -284877,USB-C Charging Cable,1,11.95,11/06/19 22:09,"193 Hickory St, New York City, NY 10001" -284878,Lightning Charging Cable,1,14.95,11/13/19 14:51,"929 Hickory St, San Francisco, CA 94016" -284879,AA Batteries (4-pack),1,3.84,11/28/19 17:09,"324 Chestnut St, Los Angeles, CA 90001" -284880,Apple Airpods Headphones,1,150,11/09/19 15:30,"540 Madison St, San Francisco, CA 94016" -284881,AAA Batteries (4-pack),2,2.99,11/14/19 14:31,"580 Lakeview St, New York City, NY 10001" -284882,Bose SoundSport Headphones,1,99.99,11/25/19 09:39,"68 Johnson St, Los Angeles, CA 90001" -284883,ThinkPad Laptop,1,999.99,11/14/19 08:42,"784 Wilson St, Atlanta, GA 30301" -284884,AA Batteries (4-pack),2,3.84,11/04/19 16:56,"675 13th St, Boston, MA 02215" -284885,Flatscreen TV,1,300,11/16/19 22:32,"891 Walnut St, Seattle, WA 98101" -284885,USB-C Charging Cable,1,11.95,11/16/19 22:32,"891 Walnut St, Seattle, WA 98101" -284886,Bose SoundSport Headphones,1,99.99,11/13/19 13:25,"287 Hill St, Los Angeles, CA 90001" -284887,20in Monitor,1,109.99,11/16/19 11:41,"227 1st St, Seattle, WA 98101" -284888,USB-C Charging Cable,1,11.95,11/21/19 12:19,"696 8th St, Dallas, TX 75001" -284889,27in FHD Monitor,1,149.99,11/05/19 18:10,"750 Cherry St, New York City, NY 10001" -284890,AAA Batteries (4-pack),1,2.99,11/12/19 07:57,"588 13th St, Dallas, TX 75001" -284891,Apple Airpods Headphones,1,150,11/29/19 11:07,"33 9th St, Los Angeles, CA 90001" -284892,Apple Airpods Headphones,1,150,11/20/19 15:04,"313 1st St, Dallas, TX 75001" -284893,Lightning Charging Cable,1,14.95,11/22/19 15:56,"374 Sunset St, Los Angeles, CA 90001" -284894,AA Batteries (4-pack),1,3.84,11/21/19 13:05,"4 Park St, Los Angeles, CA 90001" -284895,ThinkPad Laptop,1,999.99,11/07/19 22:26,"600 Church St, San Francisco, CA 94016" -284896,ThinkPad Laptop,1,999.99,11/14/19 15:56,"286 Maple St, Los Angeles, CA 90001" -284897,Flatscreen TV,1,300,11/23/19 17:07,"527 Lake St, Dallas, TX 75001" -284898,34in Ultrawide Monitor,1,379.99,11/18/19 22:13,"838 River St, Los Angeles, CA 90001" -284899,27in 4K Gaming Monitor,1,389.99,11/20/19 22:13,"525 Highland St, San Francisco, CA 94016" -284900,ThinkPad Laptop,1,999.99,11/10/19 16:08,"446 Adams St, Los Angeles, CA 90001" -284901,34in Ultrawide Monitor,1,379.99,11/12/19 11:08,"922 Cherry St, Boston, MA 02215" -284902,Lightning Charging Cable,1,14.95,11/25/19 20:54,"69 Willow St, Los Angeles, CA 90001" -284903,Apple Airpods Headphones,1,150,11/19/19 20:54,"835 2nd St, Boston, MA 02215" -284904,Apple Airpods Headphones,1,150,11/03/19 18:52,"974 12th St, Boston, MA 02215" -284905,Lightning Charging Cable,1,14.95,11/11/19 01:01,"325 Meadow St, New York City, NY 10001" -284906,Wired Headphones,1,11.99,11/23/19 17:20,"285 5th St, Austin, TX 73301" -284907,Apple Airpods Headphones,1,150,11/11/19 02:02,"91 North St, Seattle, WA 98101" -284907,ThinkPad Laptop,1,999.99,11/11/19 02:02,"91 North St, Seattle, WA 98101" -284908,Flatscreen TV,1,300,11/07/19 19:06,"247 4th St, Seattle, WA 98101" -284909,AA Batteries (4-pack),1,3.84,11/02/19 12:17,"485 Main St, San Francisco, CA 94016" -284910,Lightning Charging Cable,1,14.95,11/19/19 06:17,"219 7th St, San Francisco, CA 94016" -284911,Lightning Charging Cable,1,14.95,11/22/19 19:34,"278 1st St, Boston, MA 02215" -284912,Wired Headphones,1,11.99,11/02/19 21:19,"319 9th St, New York City, NY 10001" -284913,iPhone,1,700,11/01/19 09:54,"543 Willow St, Seattle, WA 98101" -284914,20in Monitor,1,109.99,11/17/19 12:58,"447 Cherry St, New York City, NY 10001" -284915,USB-C Charging Cable,1,11.95,11/04/19 08:36,"876 Lincoln St, Atlanta, GA 30301" -284916,27in FHD Monitor,1,149.99,11/05/19 13:11,"35 Main St, Boston, MA 02215" -284916,AAA Batteries (4-pack),4,2.99,11/05/19 13:11,"35 Main St, Boston, MA 02215" -284917,USB-C Charging Cable,1,11.95,11/04/19 13:18,"12 Lincoln St, Portland, OR 97035" -284918,34in Ultrawide Monitor,1,379.99,11/26/19 00:19,"204 River St, San Francisco, CA 94016" -284919,Vareebadd Phone,1,400,11/13/19 13:08,"584 Spruce St, New York City, NY 10001" -284920,Flatscreen TV,1,300,11/24/19 03:26,"362 Jackson St, New York City, NY 10001" -284921,Bose SoundSport Headphones,1,99.99,11/05/19 20:33,"151 Pine St, San Francisco, CA 94016" -284922,AAA Batteries (4-pack),1,2.99,11/01/19 22:25,"342 Ridge St, San Francisco, CA 94016" -284923,AA Batteries (4-pack),1,3.84,11/10/19 19:18,"57 Elm St, Los Angeles, CA 90001" -284924,AA Batteries (4-pack),1,3.84,11/25/19 09:28,"998 South St, San Francisco, CA 94016" -284925,Apple Airpods Headphones,1,150,11/11/19 16:24,"90 Jackson St, Dallas, TX 75001" -284926,USB-C Charging Cable,1,11.95,11/10/19 12:51,"377 Madison St, Los Angeles, CA 90001" -284927,Apple Airpods Headphones,1,150,11/16/19 17:24,"71 Wilson St, Los Angeles, CA 90001" -284928,iPhone,1,700,11/30/19 13:55,"548 Main St, Boston, MA 02215" -284928,Lightning Charging Cable,1,14.95,11/30/19 13:55,"548 Main St, Boston, MA 02215" -284929,Vareebadd Phone,1,400,11/16/19 20:41,"978 West St, San Francisco, CA 94016" -284930,Bose SoundSport Headphones,1,99.99,11/22/19 09:10,"348 Meadow St, Atlanta, GA 30301" -284931,34in Ultrawide Monitor,1,379.99,11/22/19 10:29,"960 Cherry St, Austin, TX 73301" -284932,USB-C Charging Cable,1,11.95,11/18/19 22:42,"400 Sunset St, Dallas, TX 75001" -284933,Lightning Charging Cable,1,14.95,11/16/19 16:45,"94 Park St, New York City, NY 10001" -284934,Wired Headphones,1,11.99,11/27/19 18:26,"328 Lake St, San Francisco, CA 94016" -284935,Bose SoundSport Headphones,1,99.99,11/20/19 17:44,"22 River St, Austin, TX 73301" -284936,Lightning Charging Cable,1,14.95,11/26/19 14:08,"500 10th St, Los Angeles, CA 90001" -284937,Wired Headphones,1,11.99,11/22/19 15:59,"715 Johnson St, San Francisco, CA 94016" -284938,Bose SoundSport Headphones,1,99.99,11/27/19 12:35,"101 Main St, Los Angeles, CA 90001" -284939,AA Batteries (4-pack),1,3.84,11/21/19 17:21,"803 Elm St, San Francisco, CA 94016" -284940,Wired Headphones,1,11.99,11/13/19 18:14,"112 Johnson St, Los Angeles, CA 90001" -284941,USB-C Charging Cable,1,11.95,11/14/19 19:15,"989 Chestnut St, San Francisco, CA 94016" -284942,27in FHD Monitor,1,149.99,11/03/19 20:15,"45 1st St, Seattle, WA 98101" -284943,Bose SoundSport Headphones,1,99.99,11/29/19 15:22,"894 Spruce St, Atlanta, GA 30301" -284944,iPhone,1,700,11/21/19 17:03,"702 Ridge St, San Francisco, CA 94016" -284945,Wired Headphones,1,11.99,11/17/19 14:57,"664 11th St, Los Angeles, CA 90001" -284946,Apple Airpods Headphones,1,150,11/18/19 13:24,"29 Chestnut St, Austin, TX 73301" -284947,Lightning Charging Cable,1,14.95,11/10/19 11:37,"465 Walnut St, Los Angeles, CA 90001" -284948,Google Phone,1,600,11/26/19 09:35,"692 8th St, Los Angeles, CA 90001" -284949,iPhone,1,700,11/04/19 13:29,"286 Meadow St, San Francisco, CA 94016" -284949,Lightning Charging Cable,1,14.95,11/04/19 13:29,"286 Meadow St, San Francisco, CA 94016" -284950,AA Batteries (4-pack),1,3.84,11/15/19 21:17,"503 5th St, San Francisco, CA 94016" -284951,USB-C Charging Cable,1,11.95,11/23/19 12:04,"778 West St, New York City, NY 10001" -284952,Apple Airpods Headphones,1,150,11/07/19 23:05,"671 Washington St, Atlanta, GA 30301" -284953,AAA Batteries (4-pack),1,2.99,11/23/19 16:42,"79 5th St, Boston, MA 02215" -284954,USB-C Charging Cable,1,11.95,11/02/19 17:04,"477 Chestnut St, Los Angeles, CA 90001" -284955,Macbook Pro Laptop,1,1700,11/01/19 17:04,"156 Sunset St, Los Angeles, CA 90001" -284956,Bose SoundSport Headphones,1,99.99,11/22/19 21:25,"99 4th St, Boston, MA 02215" -284957,Apple Airpods Headphones,1,150,11/03/19 12:54,"637 Hill St, Portland, OR 97035" -284958,AAA Batteries (4-pack),1,2.99,11/04/19 19:24,"637 4th St, Atlanta, GA 30301" -284959,Flatscreen TV,1,300,11/10/19 20:54,"57 14th St, Boston, MA 02215" -284960,27in FHD Monitor,1,149.99,11/14/19 16:02,"560 Spruce St, New York City, NY 10001" -284961,Google Phone,1,600,11/28/19 02:29,"646 10th St, Dallas, TX 75001" -284962,USB-C Charging Cable,1,11.95,11/14/19 05:51,"929 Walnut St, New York City, NY 10001" -284963,Wired Headphones,1,11.99,11/15/19 17:48,"702 Park St, Boston, MA 02215" -284964,USB-C Charging Cable,1,11.95,11/28/19 14:35,"100 Spruce St, San Francisco, CA 94016" -284965,Apple Airpods Headphones,1,150,11/21/19 08:42,"733 Hill St, Portland, OR 97035" -284966,AA Batteries (4-pack),1,3.84,11/11/19 17:01,"702 Maple St, Boston, MA 02215" -284967,Bose SoundSport Headphones,1,99.99,11/15/19 10:19,"217 Cedar St, San Francisco, CA 94016" -284968,Google Phone,1,600,11/09/19 13:17,"752 Lakeview St, Seattle, WA 98101" -284968,USB-C Charging Cable,1,11.95,11/09/19 13:17,"752 Lakeview St, Seattle, WA 98101" -284969,AAA Batteries (4-pack),1,2.99,11/19/19 10:25,"155 9th St, Portland, ME 04101" -284970,USB-C Charging Cable,1,11.95,11/19/19 20:08,"690 Sunset St, Atlanta, GA 30301" -284971,Apple Airpods Headphones,1,150,11/14/19 08:30,"826 Spruce St, San Francisco, CA 94016" -284972,27in FHD Monitor,1,149.99,11/16/19 16:28,"996 Adams St, New York City, NY 10001" -284973,Apple Airpods Headphones,1,150,11/27/19 05:53,"419 Maple St, San Francisco, CA 94016" -284974,AA Batteries (4-pack),1,3.84,11/17/19 11:44,"987 West St, Seattle, WA 98101" -284975,Wired Headphones,1,11.99,11/26/19 11:21,"843 River St, Los Angeles, CA 90001" -284976,Lightning Charging Cable,1,14.95,11/05/19 13:20,"902 Hickory St, Austin, TX 73301" -284977,Lightning Charging Cable,1,14.95,11/23/19 19:02,"299 4th St, San Francisco, CA 94016" -284978,Wired Headphones,1,11.99,12/01/19 00:09,"361 Walnut St, Dallas, TX 75001" -284979,27in 4K Gaming Monitor,1,389.99,11/22/19 09:27,"446 7th St, Seattle, WA 98101" -284980,Google Phone,1,600,11/21/19 11:38,"504 Cherry St, San Francisco, CA 94016" -284981,Flatscreen TV,1,300,11/05/19 21:10,"668 Ridge St, San Francisco, CA 94016" -284982,Wired Headphones,1,11.99,11/11/19 16:25,"752 Willow St, San Francisco, CA 94016" -284983,Bose SoundSport Headphones,1,99.99,11/18/19 12:27,"136 Johnson St, Atlanta, GA 30301" -284984,Lightning Charging Cable,1,14.95,11/16/19 12:22,"94 Maple St, New York City, NY 10001" -284985,Lightning Charging Cable,1,14.95,11/05/19 22:08,"1 Hickory St, San Francisco, CA 94016" -284986,Lightning Charging Cable,1,14.95,11/02/19 14:03,"381 8th St, Boston, MA 02215" -284987,USB-C Charging Cable,1,11.95,11/10/19 13:31,"746 6th St, San Francisco, CA 94016" -284988,Lightning Charging Cable,1,14.95,11/29/19 21:01,"293 River St, Boston, MA 02215" -284989,AAA Batteries (4-pack),5,2.99,11/16/19 13:46,"408 Sunset St, Los Angeles, CA 90001" -284990,Bose SoundSport Headphones,1,99.99,11/04/19 15:53,"713 Cherry St, Portland, OR 97035" -284991,Lightning Charging Cable,1,14.95,11/15/19 22:37,"288 Forest St, Austin, TX 73301" -284992,34in Ultrawide Monitor,1,379.99,11/04/19 00:31,"805 Center St, Boston, MA 02215" -284993,20in Monitor,1,109.99,11/25/19 06:56,"928 Hickory St, Portland, OR 97035" -,,,,, -284994,Lightning Charging Cable,1,14.95,11/29/19 21:48,"950 Meadow St, Boston, MA 02215" -284995,AA Batteries (4-pack),1,3.84,11/01/19 20:10,"995 North St, Atlanta, GA 30301" -284996,AAA Batteries (4-pack),1,2.99,11/17/19 16:20,"986 4th St, Seattle, WA 98101" -284997,Wired Headphones,1,11.99,11/19/19 12:00,"116 7th St, Portland, OR 97035" -284998,Flatscreen TV,1,300,11/11/19 17:35,"211 9th St, Boston, MA 02215" -284999,Lightning Charging Cable,1,14.95,11/30/19 16:29,"85 Main St, Portland, OR 97035" -285000,AAA Batteries (4-pack),1,2.99,11/08/19 07:13,"165 9th St, Dallas, TX 75001" -285001,USB-C Charging Cable,2,11.95,11/30/19 19:26,"204 Main St, Seattle, WA 98101" -285002,Apple Airpods Headphones,1,150,11/11/19 16:51,"328 Forest St, Austin, TX 73301" -285003,AAA Batteries (4-pack),1,2.99,11/23/19 18:58,"579 Spruce St, New York City, NY 10001" -285004,AA Batteries (4-pack),1,3.84,11/07/19 21:02,"215 South St, New York City, NY 10001" -285005,27in 4K Gaming Monitor,1,389.99,11/22/19 00:44,"255 6th St, Dallas, TX 75001" -285006,AA Batteries (4-pack),1,3.84,11/13/19 10:50,"267 Forest St, Portland, OR 97035" -285007,USB-C Charging Cable,1,11.95,11/08/19 12:52,"907 1st St, Seattle, WA 98101" -285008,AA Batteries (4-pack),2,3.84,11/20/19 05:17,"216 5th St, Portland, OR 97035" -285009,27in 4K Gaming Monitor,1,389.99,11/12/19 22:40,"977 Hill St, Dallas, TX 75001" -285010,Bose SoundSport Headphones,1,99.99,11/23/19 18:52,"391 1st St, Los Angeles, CA 90001" -285011,Lightning Charging Cable,1,14.95,11/07/19 07:29,"945 1st St, Boston, MA 02215" -285012,Bose SoundSport Headphones,1,99.99,11/05/19 13:54,"535 North St, New York City, NY 10001" -285013,AAA Batteries (4-pack),1,2.99,11/01/19 14:04,"634 Lakeview St, San Francisco, CA 94016" -285014,USB-C Charging Cable,1,11.95,11/03/19 07:39,"995 5th St, San Francisco, CA 94016" -285015,USB-C Charging Cable,1,11.95,11/20/19 14:34,"83 Pine St, Dallas, TX 75001" -285016,USB-C Charging Cable,1,11.95,11/27/19 13:34,"577 Jackson St, Seattle, WA 98101" -285017,Apple Airpods Headphones,1,150,11/11/19 22:28,"416 7th St, Portland, ME 04101" -285018,Bose SoundSport Headphones,1,99.99,11/28/19 19:59,"424 Maple St, San Francisco, CA 94016" -285019,Lightning Charging Cable,1,14.95,11/15/19 18:33,"910 Forest St, Los Angeles, CA 90001" -285020,Macbook Pro Laptop,1,1700,11/03/19 18:43,"86 1st St, New York City, NY 10001" -285021,AA Batteries (4-pack),1,3.84,11/16/19 09:41,"404 Wilson St, Boston, MA 02215" -285022,Macbook Pro Laptop,1,1700,11/20/19 10:09,"949 Johnson St, Austin, TX 73301" -285023,Wired Headphones,1,11.99,11/19/19 11:26,"737 Walnut St, San Francisco, CA 94016" -285024,Lightning Charging Cable,1,14.95,11/23/19 10:46,"5 Lakeview St, San Francisco, CA 94016" -285025,ThinkPad Laptop,1,999.99,11/07/19 23:34,"176 North St, San Francisco, CA 94016" -285026,34in Ultrawide Monitor,1,379.99,11/03/19 22:11,"185 Cherry St, San Francisco, CA 94016" -285027,20in Monitor,1,109.99,11/25/19 13:43,"410 Willow St, Atlanta, GA 30301" -285028,USB-C Charging Cable,1,11.95,11/27/19 21:50,"634 Washington St, Atlanta, GA 30301" -285029,Lightning Charging Cable,1,14.95,11/08/19 12:13,"554 Sunset St, San Francisco, CA 94016" -285030,Google Phone,1,600,11/13/19 21:44,"40 Adams St, Los Angeles, CA 90001" -285031,AA Batteries (4-pack),1,3.84,11/24/19 14:22,"182 4th St, Seattle, WA 98101" -285032,AA Batteries (4-pack),1,3.84,11/15/19 22:10,"413 South St, San Francisco, CA 94016" -285033,USB-C Charging Cable,1,11.95,11/29/19 20:46,"725 7th St, San Francisco, CA 94016" -285034,USB-C Charging Cable,1,11.95,11/04/19 08:10,"132 12th St, San Francisco, CA 94016" -285035,Lightning Charging Cable,1,14.95,11/14/19 09:50,"770 Spruce St, New York City, NY 10001" -285036,34in Ultrawide Monitor,1,379.99,11/15/19 06:39,"857 Pine St, San Francisco, CA 94016" -285037,USB-C Charging Cable,1,11.95,11/30/19 21:31,"295 6th St, New York City, NY 10001" -285038,Apple Airpods Headphones,1,150,11/05/19 01:11,"969 Hickory St, San Francisco, CA 94016" -285039,Google Phone,1,600,11/03/19 17:33,"178 14th St, Los Angeles, CA 90001" -285040,Lightning Charging Cable,1,14.95,11/04/19 19:41,"45 Lakeview St, Boston, MA 02215" -285041,AA Batteries (4-pack),1,3.84,11/23/19 09:53,"761 Willow St, Atlanta, GA 30301" -285042,Apple Airpods Headphones,1,150,11/07/19 08:17,"631 Ridge St, New York City, NY 10001" -285043,27in 4K Gaming Monitor,1,389.99,11/07/19 15:11,"836 Madison St, Dallas, TX 75001" -285044,Lightning Charging Cable,1,14.95,11/18/19 15:36,"86 Jackson St, San Francisco, CA 94016" -285045,USB-C Charging Cable,1,11.95,11/16/19 13:55,"450 Park St, Seattle, WA 98101" -285046,AAA Batteries (4-pack),1,2.99,11/13/19 10:37,"708 Washington St, Portland, OR 97035" -285047,Wired Headphones,1,11.99,11/19/19 23:05,"586 Cedar St, San Francisco, CA 94016" -285048,Wired Headphones,1,11.99,11/08/19 19:57,"795 8th St, Boston, MA 02215" -285049,34in Ultrawide Monitor,1,379.99,11/07/19 09:30,"984 14th St, Boston, MA 02215" -285050,AAA Batteries (4-pack),3,2.99,11/01/19 19:33,"707 Washington St, San Francisco, CA 94016" -285051,USB-C Charging Cable,1,11.95,11/11/19 15:24,"258 Highland St, San Francisco, CA 94016" -285052,AAA Batteries (4-pack),3,2.99,11/17/19 20:08,"385 Forest St, Atlanta, GA 30301" -285053,Wired Headphones,1,11.99,11/15/19 13:55,"328 Hill St, San Francisco, CA 94016" -285054,USB-C Charging Cable,1,11.95,11/20/19 18:52,"201 Park St, Austin, TX 73301" -285055,iPhone,1,700,11/27/19 16:45,"980 2nd St, Seattle, WA 98101" -285056,27in 4K Gaming Monitor,1,389.99,11/25/19 18:42,"901 13th St, Dallas, TX 75001" -285057,Lightning Charging Cable,1,14.95,11/07/19 17:54,"224 Ridge St, Austin, TX 73301" -285058,iPhone,1,700,11/09/19 22:01,"402 Pine St, Los Angeles, CA 90001" -285059,20in Monitor,1,109.99,11/01/19 16:22,"972 Cherry St, Boston, MA 02215" -285060,Bose SoundSport Headphones,1,99.99,11/17/19 21:26,"779 6th St, Los Angeles, CA 90001" -285060,Lightning Charging Cable,1,14.95,11/17/19 21:26,"779 6th St, Los Angeles, CA 90001" -285061,USB-C Charging Cable,1,11.95,11/17/19 12:19,"298 Spruce St, Portland, ME 04101" -285062,USB-C Charging Cable,1,11.95,11/07/19 21:50,"915 4th St, Boston, MA 02215" -285063,AAA Batteries (4-pack),1,2.99,11/21/19 18:14,"231 Pine St, San Francisco, CA 94016" -285063,AA Batteries (4-pack),1,3.84,11/21/19 18:14,"231 Pine St, San Francisco, CA 94016" -285064,AA Batteries (4-pack),3,3.84,11/05/19 09:37,"713 Maple St, Atlanta, GA 30301" -285065,USB-C Charging Cable,1,11.95,11/26/19 17:31,"493 Lakeview St, San Francisco, CA 94016" -285066,Bose SoundSport Headphones,1,99.99,11/21/19 15:45,"687 Main St, San Francisco, CA 94016" -285066,Apple Airpods Headphones,1,150,11/21/19 15:45,"687 Main St, San Francisco, CA 94016" -285067,AAA Batteries (4-pack),1,2.99,11/09/19 10:39,"786 Park St, Dallas, TX 75001" -285068,Apple Airpods Headphones,1,150,11/13/19 20:20,"681 6th St, New York City, NY 10001" -285069,AAA Batteries (4-pack),3,2.99,11/16/19 21:49,"964 7th St, Los Angeles, CA 90001" -285070,34in Ultrawide Monitor,1,379.99,11/09/19 01:10,"665 11th St, San Francisco, CA 94016" -285071,iPhone,1,700,11/08/19 15:55,"957 4th St, San Francisco, CA 94016" -285072,USB-C Charging Cable,1,11.95,11/15/19 21:19,"32 Hickory St, San Francisco, CA 94016" -285073,iPhone,1,700,11/06/19 06:51,"916 Chestnut St, Austin, TX 73301" -285074,AA Batteries (4-pack),1,3.84,11/28/19 21:04,"37 Cherry St, Seattle, WA 98101" -285075,Lightning Charging Cable,1,14.95,11/09/19 19:52,"595 8th St, Austin, TX 73301" -285076,Apple Airpods Headphones,1,150,11/09/19 19:32,"207 Ridge St, Atlanta, GA 30301" -285077,Lightning Charging Cable,1,14.95,11/08/19 19:18,"44 West St, Boston, MA 02215" -285078,ThinkPad Laptop,1,999.99,11/15/19 11:19,"222 2nd St, Boston, MA 02215" -285079,AA Batteries (4-pack),1,3.84,11/13/19 17:28,"995 Washington St, Boston, MA 02215" -285080,USB-C Charging Cable,1,11.95,11/14/19 19:05,"238 Meadow St, San Francisco, CA 94016" -285081,Bose SoundSport Headphones,1,99.99,11/26/19 23:09,"272 Hickory St, Austin, TX 73301" -285082,Wired Headphones,1,11.99,11/09/19 11:07,"151 5th St, Los Angeles, CA 90001" -285083,Lightning Charging Cable,1,14.95,11/01/19 15:39,"75 Maple St, San Francisco, CA 94016" -285084,USB-C Charging Cable,1,11.95,11/12/19 15:45,"302 Park St, Boston, MA 02215" -285085,USB-C Charging Cable,1,11.95,11/08/19 16:58,"370 Willow St, Seattle, WA 98101" -285086,Bose SoundSport Headphones,1,99.99,11/13/19 15:49,"819 10th St, San Francisco, CA 94016" -285087,Wired Headphones,1,11.99,11/04/19 09:28,"73 Elm St, Boston, MA 02215" -285088,20in Monitor,1,109.99,11/09/19 21:00,"57 Spruce St, San Francisco, CA 94016" -285089,20in Monitor,1,109.99,11/23/19 10:29,"567 5th St, Dallas, TX 75001" -285090,Flatscreen TV,1,300,11/09/19 10:02,"786 Elm St, New York City, NY 10001" -285091,27in 4K Gaming Monitor,1,389.99,11/23/19 21:49,"593 10th St, Los Angeles, CA 90001" -285092,AAA Batteries (4-pack),1,2.99,11/23/19 17:29,"306 Washington St, Seattle, WA 98101" -285093,Lightning Charging Cable,1,14.95,11/03/19 20:09,"152 9th St, San Francisco, CA 94016" -285094,Wired Headphones,1,11.99,11/14/19 18:44,"252 6th St, Los Angeles, CA 90001" -285095,Wired Headphones,1,11.99,11/03/19 09:23,"404 6th St, Los Angeles, CA 90001" -285096,iPhone,1,700,11/12/19 21:55,"953 South St, Portland, OR 97035" -285096,Wired Headphones,2,11.99,11/12/19 21:55,"953 South St, Portland, OR 97035" -285097,34in Ultrawide Monitor,1,379.99,11/17/19 12:23,"149 Dogwood St, New York City, NY 10001" -285098,Wired Headphones,1,11.99,11/26/19 13:04,"407 13th St, San Francisco, CA 94016" -285099,Lightning Charging Cable,1,14.95,11/07/19 20:11,"423 West St, New York City, NY 10001" -285100,Wired Headphones,1,11.99,11/17/19 21:08,"294 Jefferson St, Atlanta, GA 30301" -285101,AA Batteries (4-pack),1,3.84,11/16/19 14:33,"685 Park St, San Francisco, CA 94016" -285102,27in 4K Gaming Monitor,1,389.99,12/01/19 00:26,"964 7th St, Los Angeles, CA 90001" -285103,ThinkPad Laptop,1,999.99,11/20/19 17:53,"485 Wilson St, Seattle, WA 98101" -285104,AA Batteries (4-pack),1,3.84,11/14/19 19:43,"158 Lincoln St, Atlanta, GA 30301" -285105,Macbook Pro Laptop,1,1700,11/05/19 16:28,"224 Main St, Atlanta, GA 30301" -285106,AAA Batteries (4-pack),1,2.99,11/29/19 10:05,"592 7th St, Boston, MA 02215" -285107,USB-C Charging Cable,1,11.95,11/30/19 14:35,"803 West St, New York City, NY 10001" -285108,Apple Airpods Headphones,1,150,11/12/19 22:37,"365 Walnut St, Boston, MA 02215" -285109,27in FHD Monitor,1,149.99,11/18/19 14:26,"381 13th St, Seattle, WA 98101" -285110,Vareebadd Phone,1,400,11/02/19 18:52,"12 Ridge St, New York City, NY 10001" -285111,AAA Batteries (4-pack),1,2.99,11/24/19 13:16,"71 Washington St, Dallas, TX 75001" -285112,Lightning Charging Cable,1,14.95,11/06/19 18:23,"585 13th St, Boston, MA 02215" -285113,Wired Headphones,1,11.99,11/06/19 21:38,"561 Lakeview St, Boston, MA 02215" -285114,USB-C Charging Cable,2,11.95,11/14/19 11:46,"559 Cherry St, New York City, NY 10001" -285115,Macbook Pro Laptop,1,1700,11/25/19 15:18,"88 13th St, Atlanta, GA 30301" -285116,Wired Headphones,1,11.99,11/16/19 11:15,"907 Hickory St, Los Angeles, CA 90001" -285117,AAA Batteries (4-pack),2,2.99,11/04/19 09:11,"675 Spruce St, Dallas, TX 75001" -285118,Wired Headphones,1,11.99,11/10/19 22:16,"442 Park St, Los Angeles, CA 90001" -285119,ThinkPad Laptop,1,999.99,11/24/19 00:20,"339 Sunset St, Atlanta, GA 30301" -285120,AA Batteries (4-pack),1,3.84,11/19/19 16:49,"94 Jackson St, Atlanta, GA 30301" -285121,USB-C Charging Cable,1,11.95,11/21/19 21:07,"533 Church St, San Francisco, CA 94016" -285122,AA Batteries (4-pack),1,3.84,11/24/19 19:00,"941 Walnut St, San Francisco, CA 94016" -285122,Wired Headphones,1,11.99,11/24/19 19:00,"941 Walnut St, San Francisco, CA 94016" -285123,Apple Airpods Headphones,1,150,11/13/19 13:43,"382 North St, San Francisco, CA 94016" -285124,Lightning Charging Cable,1,14.95,11/19/19 13:29,"444 Hill St, San Francisco, CA 94016" -285125,Lightning Charging Cable,1,14.95,11/01/19 18:58,"977 Chestnut St, New York City, NY 10001" -285126,Lightning Charging Cable,1,14.95,11/21/19 22:05,"441 13th St, Seattle, WA 98101" -285127,Wired Headphones,1,11.99,11/25/19 19:30,"228 2nd St, Seattle, WA 98101" -285128,Apple Airpods Headphones,1,150,11/18/19 22:57,"716 River St, Dallas, TX 75001" -285129,Apple Airpods Headphones,1,150,11/21/19 08:53,"364 8th St, Atlanta, GA 30301" -285130,Wired Headphones,1,11.99,11/27/19 20:51,"622 Madison St, San Francisco, CA 94016" -285131,Lightning Charging Cable,1,14.95,11/19/19 18:35,"774 Church St, Los Angeles, CA 90001" -285132,Wired Headphones,1,11.99,11/16/19 18:28,"435 1st St, Dallas, TX 75001" -285133,Bose SoundSport Headphones,1,99.99,11/20/19 10:02,"657 2nd St, Seattle, WA 98101" -285134,Macbook Pro Laptop,1,1700,11/11/19 21:29,"290 2nd St, Austin, TX 73301" -285135,ThinkPad Laptop,1,999.99,11/03/19 17:56,"519 7th St, Dallas, TX 75001" -285136,27in FHD Monitor,1,149.99,11/01/19 13:46,"484 Sunset St, Atlanta, GA 30301" -285137,iPhone,1,700,11/12/19 10:00,"685 Sunset St, Austin, TX 73301" -285137,Wired Headphones,1,11.99,11/12/19 10:00,"685 Sunset St, Austin, TX 73301" -285138,Bose SoundSport Headphones,1,99.99,11/07/19 15:29,"893 North St, Los Angeles, CA 90001" -285139,AAA Batteries (4-pack),1,2.99,11/05/19 19:13,"283 Main St, San Francisco, CA 94016" -285140,Wired Headphones,1,11.99,11/12/19 21:36,"397 6th St, New York City, NY 10001" -285141,USB-C Charging Cable,1,11.95,11/20/19 00:07,"540 7th St, New York City, NY 10001" -285142,iPhone,1,700,11/11/19 22:53,"911 2nd St, San Francisco, CA 94016" -285143,Google Phone,1,600,11/09/19 19:52,"471 Jackson St, San Francisco, CA 94016" -285144,LG Dryer,1,600.0,11/17/19 20:38,"957 Hickory St, Seattle, WA 98101" -285145,Lightning Charging Cable,1,14.95,11/10/19 23:05,"199 5th St, Los Angeles, CA 90001" -285146,AA Batteries (4-pack),1,3.84,11/07/19 10:10,"673 Hickory St, San Francisco, CA 94016" -285147,Bose SoundSport Headphones,1,99.99,11/16/19 01:19,"662 Chestnut St, San Francisco, CA 94016" -285147,Lightning Charging Cable,1,14.95,11/16/19 01:19,"662 Chestnut St, San Francisco, CA 94016" -285148,20in Monitor,1,109.99,11/05/19 09:38,"635 9th St, Austin, TX 73301" -285149,27in FHD Monitor,1,149.99,11/10/19 13:07,"811 Chestnut St, San Francisco, CA 94016" -285150,USB-C Charging Cable,1,11.95,11/30/19 12:53,"402 North St, Portland, OR 97035" -285151,Vareebadd Phone,1,400,11/10/19 17:21,"196 Madison St, San Francisco, CA 94016" -285152,27in FHD Monitor,1,149.99,11/27/19 22:20,"595 Park St, Seattle, WA 98101" -285153,AA Batteries (4-pack),2,3.84,11/19/19 15:27,"118 Highland St, Los Angeles, CA 90001" -285154,USB-C Charging Cable,1,11.95,11/01/19 19:44,"455 Chestnut St, Atlanta, GA 30301" -285155,USB-C Charging Cable,2,11.95,11/27/19 22:24,"94 9th St, Atlanta, GA 30301" -285156,AAA Batteries (4-pack),2,2.99,11/19/19 19:40,"565 Lake St, San Francisco, CA 94016" -285157,Apple Airpods Headphones,2,150,11/15/19 14:34,"427 River St, San Francisco, CA 94016" -285158,AA Batteries (4-pack),2,3.84,11/16/19 13:56,"189 Pine St, Seattle, WA 98101" -285159,USB-C Charging Cable,1,11.95,11/16/19 10:11,"96 2nd St, Los Angeles, CA 90001" -285160,Bose SoundSport Headphones,1,99.99,11/29/19 23:45,"998 Lake St, Seattle, WA 98101" -285161,Apple Airpods Headphones,1,150,11/07/19 13:49,"945 Highland St, Atlanta, GA 30301" -285162,USB-C Charging Cable,1,11.95,11/04/19 00:25,"546 Hill St, Seattle, WA 98101" -285163,Apple Airpods Headphones,1,150,11/27/19 17:23,"434 Forest St, San Francisco, CA 94016" -285164,20in Monitor,1,109.99,11/19/19 17:51,"164 13th St, San Francisco, CA 94016" -285165,Vareebadd Phone,1,400,11/10/19 14:23,"750 Cedar St, Dallas, TX 75001" -285166,Vareebadd Phone,1,400,11/07/19 16:23,"144 South St, Atlanta, GA 30301" -285167,AAA Batteries (4-pack),1,2.99,11/13/19 15:55,"443 Elm St, New York City, NY 10001" -285168,27in FHD Monitor,1,149.99,11/04/19 10:11,"145 Center St, Austin, TX 73301" -285169,AA Batteries (4-pack),1,3.84,11/26/19 12:20,"811 Center St, Dallas, TX 75001" -285170,Apple Airpods Headphones,1,150,11/21/19 21:14,"955 Maple St, New York City, NY 10001" -285171,USB-C Charging Cable,1,11.95,11/07/19 13:20,"955 Ridge St, New York City, NY 10001" -285172,27in FHD Monitor,1,149.99,11/28/19 16:04,"871 Pine St, Los Angeles, CA 90001" -285173,Lightning Charging Cable,1,14.95,11/05/19 12:15,"836 Cherry St, San Francisco, CA 94016" -285174,USB-C Charging Cable,1,11.95,11/25/19 05:30,"159 Pine St, Boston, MA 02215" -285175,AA Batteries (4-pack),1,3.84,11/26/19 16:24,"807 North St, Los Angeles, CA 90001" -285176,Lightning Charging Cable,1,14.95,11/20/19 18:28,"71 Johnson St, Los Angeles, CA 90001" -285177,Flatscreen TV,1,300,11/06/19 16:25,"346 Spruce St, Atlanta, GA 30301" -285178,Bose SoundSport Headphones,1,99.99,11/24/19 10:20,"22 12th St, San Francisco, CA 94016" -285179,iPhone,1,700,11/21/19 16:19,"715 4th St, Seattle, WA 98101" -285180,27in 4K Gaming Monitor,1,389.99,11/22/19 02:42,"602 Madison St, New York City, NY 10001" -285181,Wired Headphones,1,11.99,11/30/19 20:35,"375 7th St, Boston, MA 02215" -285182,Bose SoundSport Headphones,1,99.99,11/28/19 07:03,"751 Meadow St, San Francisco, CA 94016" -285183,Lightning Charging Cable,1,14.95,11/17/19 23:37,"373 6th St, Atlanta, GA 30301" -285184,Apple Airpods Headphones,1,150,11/13/19 19:51,"408 Washington St, Dallas, TX 75001" -285185,Bose SoundSport Headphones,1,99.99,11/21/19 20:10,"485 Willow St, Los Angeles, CA 90001" -285186,Apple Airpods Headphones,1,150,11/24/19 11:09,"472 Wilson St, Los Angeles, CA 90001" -285187,AA Batteries (4-pack),1,3.84,11/17/19 19:28,"50 10th St, Atlanta, GA 30301" -285188,iPhone,1,700,11/21/19 13:21,"222 4th St, San Francisco, CA 94016" -285189,Lightning Charging Cable,1,14.95,11/11/19 15:46,"779 Madison St, Portland, ME 04101" -285190,Wired Headphones,1,11.99,11/28/19 10:22,"58 Pine St, San Francisco, CA 94016" -285191,Apple Airpods Headphones,1,150,11/19/19 13:29,"329 6th St, Los Angeles, CA 90001" -285192,AAA Batteries (4-pack),1,2.99,11/29/19 15:56,"944 Pine St, Los Angeles, CA 90001" -285193,USB-C Charging Cable,1,11.95,11/01/19 21:52,"357 Cedar St, San Francisco, CA 94016" -285194,AA Batteries (4-pack),1,3.84,11/02/19 20:44,"804 Walnut St, Dallas, TX 75001" -285195,Wired Headphones,1,11.99,11/14/19 19:43,"131 Lakeview St, Seattle, WA 98101" -285196,AA Batteries (4-pack),1,3.84,11/06/19 21:09,"907 13th St, Seattle, WA 98101" -285197,USB-C Charging Cable,1,11.95,11/18/19 16:26,"117 Main St, Atlanta, GA 30301" -285198,AA Batteries (4-pack),1,3.84,11/12/19 23:16,"956 Dogwood St, San Francisco, CA 94016" -285199,iPhone,1,700,11/06/19 20:08,"749 Hill St, Los Angeles, CA 90001" -285200,Macbook Pro Laptop,1,1700,11/22/19 16:35,"60 Adams St, Los Angeles, CA 90001" -285201,20in Monitor,1,109.99,11/12/19 18:35,"193 Ridge St, Los Angeles, CA 90001" -285202,AAA Batteries (4-pack),1,2.99,11/26/19 13:11,"630 River St, Austin, TX 73301" -285203,Wired Headphones,1,11.99,11/13/19 15:35,"835 Church St, San Francisco, CA 94016" -285204,Vareebadd Phone,1,400,11/27/19 15:51,"56 Wilson St, Los Angeles, CA 90001" -285205,Apple Airpods Headphones,1,150,11/27/19 20:49,"793 13th St, New York City, NY 10001" -285206,AAA Batteries (4-pack),2,2.99,11/10/19 22:45,"26 Lakeview St, New York City, NY 10001" -285207,Wired Headphones,1,11.99,11/27/19 01:56,"728 6th St, Portland, ME 04101" -285208,Google Phone,1,600,11/21/19 13:49,"326 Jackson St, San Francisco, CA 94016" -285209,Macbook Pro Laptop,1,1700,11/23/19 22:39,"432 Sunset St, Seattle, WA 98101" -285210,27in FHD Monitor,1,149.99,11/02/19 21:34,"897 1st St, San Francisco, CA 94016" -285211,Lightning Charging Cable,1,14.95,11/18/19 11:09,"541 Jefferson St, Los Angeles, CA 90001" -285212,AAA Batteries (4-pack),1,2.99,11/25/19 12:43,"501 Hill St, Portland, OR 97035" -285213,ThinkPad Laptop,1,999.99,11/08/19 17:37,"163 Forest St, New York City, NY 10001" -285214,ThinkPad Laptop,1,999.99,11/11/19 17:34,"12 Walnut St, San Francisco, CA 94016" -285215,Apple Airpods Headphones,1,150,11/14/19 06:34,"986 River St, Austin, TX 73301" -285216,Wired Headphones,1,11.99,11/29/19 14:10,"258 Lake St, Los Angeles, CA 90001" -285217,USB-C Charging Cable,1,11.95,11/25/19 12:08,"650 Forest St, Boston, MA 02215" -285218,AAA Batteries (4-pack),1,2.99,11/06/19 04:14,"267 Cedar St, New York City, NY 10001" -285219,27in FHD Monitor,1,149.99,11/03/19 09:35,"346 Cherry St, Portland, OR 97035" -285220,AAA Batteries (4-pack),1,2.99,11/27/19 17:09,"950 11th St, Atlanta, GA 30301" -285221,AAA Batteries (4-pack),1,2.99,11/01/19 13:11,"487 Meadow St, Portland, OR 97035" -285222,ThinkPad Laptop,1,999.99,11/25/19 07:18,"977 Hill St, San Francisco, CA 94016" -285223,AAA Batteries (4-pack),1,2.99,11/29/19 18:44,"572 4th St, Los Angeles, CA 90001" -285224,AAA Batteries (4-pack),1,2.99,11/02/19 07:24,"759 Willow St, Dallas, TX 75001" -285225,Lightning Charging Cable,1,14.95,11/01/19 17:08,"999 4th St, San Francisco, CA 94016" -285226,AA Batteries (4-pack),1,3.84,11/19/19 11:59,"490 Jefferson St, Dallas, TX 75001" -285227,iPhone,1,700,11/20/19 12:27,"189 8th St, Portland, ME 04101" -285228,27in 4K Gaming Monitor,1,389.99,11/24/19 12:25,"288 Johnson St, New York City, NY 10001" -285229,AAA Batteries (4-pack),1,2.99,11/06/19 13:14,"984 Sunset St, Seattle, WA 98101" -285230,34in Ultrawide Monitor,1,379.99,11/13/19 10:03,"184 Pine St, San Francisco, CA 94016" -285231,Flatscreen TV,1,300,11/29/19 11:53,"42 9th St, San Francisco, CA 94016" -285232,Wired Headphones,1,11.99,11/14/19 17:05,"188 13th St, Boston, MA 02215" -285233,AA Batteries (4-pack),1,3.84,11/07/19 10:22,"160 6th St, New York City, NY 10001" -285234,Bose SoundSport Headphones,1,99.99,11/15/19 14:56,"545 Madison St, San Francisco, CA 94016" -285235,AA Batteries (4-pack),1,3.84,11/21/19 15:16,"818 North St, Atlanta, GA 30301" -285236,Wired Headphones,2,11.99,11/02/19 20:13,"5 North St, Los Angeles, CA 90001" -285237,AA Batteries (4-pack),3,3.84,11/11/19 16:16,"617 Lakeview St, New York City, NY 10001" -285238,Google Phone,1,600,11/17/19 01:43,"517 13th St, Los Angeles, CA 90001" -285239,AA Batteries (4-pack),2,3.84,11/07/19 18:54,"501 Lincoln St, San Francisco, CA 94016" -285240,USB-C Charging Cable,1,11.95,11/27/19 01:28,"763 Lincoln St, Boston, MA 02215" -285241,Apple Airpods Headphones,1,150,11/27/19 08:08,"858 Park St, Seattle, WA 98101" -285242,iPhone,1,700,11/04/19 14:33,"1 Wilson St, San Francisco, CA 94016" -285243,AAA Batteries (4-pack),1,2.99,11/25/19 17:50,"18 Forest St, Dallas, TX 75001" -285244,Wired Headphones,1,11.99,11/03/19 18:12,"192 Chestnut St, New York City, NY 10001" -285245,Lightning Charging Cable,1,14.95,11/04/19 05:19,"545 Dogwood St, Los Angeles, CA 90001" -285246,iPhone,1,700,11/25/19 20:16,"541 Hill St, Atlanta, GA 30301" -285247,Bose SoundSport Headphones,1,99.99,11/25/19 13:39,"211 1st St, Atlanta, GA 30301" -285247,Lightning Charging Cable,1,14.95,11/25/19 13:39,"211 1st St, Atlanta, GA 30301" -285248,20in Monitor,1,109.99,11/28/19 11:43,"648 Church St, New York City, NY 10001" -285249,USB-C Charging Cable,1,11.95,11/25/19 05:35,"198 Adams St, Boston, MA 02215" -285250,AA Batteries (4-pack),1,3.84,11/17/19 13:43,"897 West St, Los Angeles, CA 90001" -285251,AA Batteries (4-pack),1,3.84,11/19/19 21:00,"386 Ridge St, Austin, TX 73301" -285252,AAA Batteries (4-pack),1,2.99,11/29/19 19:22,"804 Jefferson St, Seattle, WA 98101" -285253,Lightning Charging Cable,2,14.95,11/17/19 17:34,"653 Lincoln St, Dallas, TX 75001" -285254,Apple Airpods Headphones,1,150,11/26/19 23:50,"863 Johnson St, Dallas, TX 75001" -285255,Wired Headphones,1,11.99,11/30/19 20:40,"163 Meadow St, San Francisco, CA 94016" -285256,USB-C Charging Cable,1,11.95,11/01/19 22:20,"292 Cherry St, San Francisco, CA 94016" -285257,AAA Batteries (4-pack),1,2.99,11/14/19 14:50,"226 11th St, Boston, MA 02215" -285258,Apple Airpods Headphones,1,150,11/25/19 07:44,"143 Center St, Los Angeles, CA 90001" -285259,Macbook Pro Laptop,1,1700,11/16/19 16:02,"348 Johnson St, San Francisco, CA 94016" -285260,Wired Headphones,1,11.99,11/29/19 23:50,"187 8th St, New York City, NY 10001" -285261,AA Batteries (4-pack),1,3.84,11/12/19 14:07,"65 Elm St, Dallas, TX 75001" -285262,Google Phone,1,600,11/24/19 20:42,"629 8th St, San Francisco, CA 94016" -285263,AA Batteries (4-pack),1,3.84,11/11/19 17:48,"169 Jefferson St, Austin, TX 73301" -285264,AA Batteries (4-pack),2,3.84,11/23/19 23:54,"23 4th St, Seattle, WA 98101" -285265,20in Monitor,1,109.99,11/16/19 13:06,"918 North St, Dallas, TX 75001" -285266,iPhone,1,700,11/22/19 11:57,"138 6th St, Los Angeles, CA 90001" -285267,AA Batteries (4-pack),3,3.84,11/06/19 17:52,"898 1st St, Los Angeles, CA 90001" -285268,Bose SoundSport Headphones,1,99.99,11/19/19 09:57,"493 13th St, Seattle, WA 98101" -285269,27in FHD Monitor,2,149.99,11/02/19 11:46,"402 Sunset St, New York City, NY 10001" -285270,AAA Batteries (4-pack),1,2.99,11/03/19 17:59,"192 Pine St, San Francisco, CA 94016" -285271,Apple Airpods Headphones,1,150,11/13/19 12:41,"177 Spruce St, Dallas, TX 75001" -285272,USB-C Charging Cable,1,11.95,11/02/19 19:33,"104 Highland St, San Francisco, CA 94016" -285273,AAA Batteries (4-pack),2,2.99,11/28/19 10:46,"494 Spruce St, Boston, MA 02215" -285274,Wired Headphones,1,11.99,11/06/19 09:02,"574 Highland St, New York City, NY 10001" -285275,27in 4K Gaming Monitor,1,389.99,11/10/19 20:55,"914 Lakeview St, Austin, TX 73301" -285276,AA Batteries (4-pack),1,3.84,11/21/19 19:09,"112 West St, Boston, MA 02215" -285277,AAA Batteries (4-pack),2,2.99,11/12/19 09:55,"684 10th St, Boston, MA 02215" -285278,USB-C Charging Cable,1,11.95,11/05/19 14:47,"851 14th St, Seattle, WA 98101" -285279,AA Batteries (4-pack),1,3.84,11/07/19 10:01,"573 Jackson St, Austin, TX 73301" -285280,AA Batteries (4-pack),1,3.84,11/30/19 13:11,"137 Forest St, Los Angeles, CA 90001" -285281,USB-C Charging Cable,1,11.95,11/08/19 13:05,"168 Dogwood St, Boston, MA 02215" -285282,USB-C Charging Cable,1,11.95,11/24/19 13:11,"91 Spruce St, Seattle, WA 98101" -285283,Wired Headphones,1,11.99,11/14/19 18:40,"159 Church St, New York City, NY 10001" -285284,AA Batteries (4-pack),1,3.84,11/14/19 08:59,"52 6th St, San Francisco, CA 94016" -285285,Macbook Pro Laptop,1,1700,11/14/19 10:13,"659 Madison St, Portland, OR 97035" -285286,Lightning Charging Cable,1,14.95,11/14/19 08:38,"618 Center St, Atlanta, GA 30301" -285287,AAA Batteries (4-pack),1,2.99,11/07/19 20:02,"444 Madison St, Los Angeles, CA 90001" -285288,Wired Headphones,1,11.99,11/04/19 09:28,"174 Forest St, Los Angeles, CA 90001" -285289,AAA Batteries (4-pack),2,2.99,11/15/19 17:22,"984 Pine St, San Francisco, CA 94016" -285290,ThinkPad Laptop,1,999.99,11/15/19 12:15,"870 7th St, New York City, NY 10001" -285291,Apple Airpods Headphones,1,150,11/29/19 11:34,"13 Hickory St, Seattle, WA 98101" -285292,ThinkPad Laptop,1,999.99,11/01/19 18:35,"846 North St, San Francisco, CA 94016" -285293,Apple Airpods Headphones,1,150,11/24/19 19:20,"313 Cherry St, San Francisco, CA 94016" -285294,Wired Headphones,1,11.99,11/17/19 12:08,"706 Forest St, New York City, NY 10001" -285295,Apple Airpods Headphones,1,150,11/05/19 22:13,"723 Highland St, San Francisco, CA 94016" -285296,AA Batteries (4-pack),1,3.84,11/21/19 10:57,"349 North St, San Francisco, CA 94016" -285297,27in FHD Monitor,1,149.99,11/11/19 00:48,"486 Lakeview St, Los Angeles, CA 90001" -285298,AAA Batteries (4-pack),1,2.99,11/09/19 09:05,"738 River St, Seattle, WA 98101" -285299,Macbook Pro Laptop,1,1700,11/24/19 15:20,"566 Walnut St, San Francisco, CA 94016" -285300,Wired Headphones,1,11.99,11/21/19 23:58,"400 Cedar St, Seattle, WA 98101" -285301,iPhone,1,700,11/23/19 19:14,"252 11th St, New York City, NY 10001" -285301,Lightning Charging Cable,1,14.95,11/23/19 19:14,"252 11th St, New York City, NY 10001" -285302,Apple Airpods Headphones,1,150,11/01/19 12:04,"631 5th St, Boston, MA 02215" -285303,Lightning Charging Cable,3,14.95,11/10/19 14:01,"193 11th St, San Francisco, CA 94016" -285304,ThinkPad Laptop,1,999.99,11/24/19 19:47,"108 Pine St, San Francisco, CA 94016" -285305,Flatscreen TV,1,300,11/07/19 07:28,"441 River St, Seattle, WA 98101" -285306,AA Batteries (4-pack),4,3.84,11/27/19 18:25,"608 9th St, Atlanta, GA 30301" -285307,Apple Airpods Headphones,1,150,11/14/19 17:42,"553 Chestnut St, Los Angeles, CA 90001" -285308,AA Batteries (4-pack),2,3.84,11/26/19 11:36,"742 4th St, San Francisco, CA 94016" -285309,AA Batteries (4-pack),1,3.84,11/25/19 15:58,"298 Johnson St, New York City, NY 10001" -285310,Flatscreen TV,1,300,11/23/19 13:22,"430 Main St, Los Angeles, CA 90001" -285311,Lightning Charging Cable,1,14.95,11/10/19 08:06,"915 12th St, Portland, OR 97035" -285312,ThinkPad Laptop,1,999.99,11/30/19 19:58,"954 Walnut St, Boston, MA 02215" -285313,Wired Headphones,1,11.99,11/07/19 13:20,"795 Walnut St, San Francisco, CA 94016" -285314,Wired Headphones,1,11.99,11/10/19 20:16,"721 Cherry St, Atlanta, GA 30301" -285315,Google Phone,1,600,11/18/19 12:36,"111 Maple St, Seattle, WA 98101" -285316,AAA Batteries (4-pack),1,2.99,11/12/19 01:41,"595 9th St, Dallas, TX 75001" -285317,AA Batteries (4-pack),3,3.84,11/01/19 10:28,"218 7th St, San Francisco, CA 94016" -285318,Bose SoundSport Headphones,1,99.99,11/04/19 17:11,"587 Cedar St, Portland, OR 97035" -285319,Bose SoundSport Headphones,1,99.99,11/15/19 15:30,"117 13th St, San Francisco, CA 94016" -285320,USB-C Charging Cable,2,11.95,11/24/19 11:03,"253 Highland St, Atlanta, GA 30301" -285321,USB-C Charging Cable,1,11.95,11/01/19 12:23,"312 12th St, San Francisco, CA 94016" -285322,USB-C Charging Cable,1,11.95,11/07/19 22:06,"167 9th St, Portland, OR 97035" -285323,AA Batteries (4-pack),1,3.84,11/17/19 19:55,"45 Willow St, New York City, NY 10001" -285324,USB-C Charging Cable,1,11.95,11/12/19 22:11,"688 Meadow St, Portland, OR 97035" -285325,USB-C Charging Cable,1,11.95,11/16/19 18:53,"813 6th St, San Francisco, CA 94016" -285326,34in Ultrawide Monitor,1,379.99,11/04/19 12:04,"471 Johnson St, San Francisco, CA 94016" -285327,AAA Batteries (4-pack),1,2.99,11/25/19 21:20,"545 Highland St, New York City, NY 10001" -285328,Lightning Charging Cable,1,14.95,11/05/19 23:13,"144 River St, New York City, NY 10001" -285329,27in 4K Gaming Monitor,1,389.99,11/29/19 09:37,"783 Spruce St, Los Angeles, CA 90001" -285330,34in Ultrawide Monitor,1,379.99,11/03/19 11:22,"909 Cherry St, New York City, NY 10001" -285331,ThinkPad Laptop,1,999.99,11/23/19 11:15,"829 11th St, Austin, TX 73301" -285332,USB-C Charging Cable,1,11.95,11/30/19 07:16,"661 Main St, Atlanta, GA 30301" -285333,AA Batteries (4-pack),1,3.84,11/03/19 00:54,"415 Adams St, Seattle, WA 98101" -285334,Wired Headphones,1,11.99,11/30/19 10:15,"679 10th St, Los Angeles, CA 90001" -285335,USB-C Charging Cable,1,11.95,11/01/19 20:24,"980 6th St, San Francisco, CA 94016" -285336,AAA Batteries (4-pack),3,2.99,11/17/19 22:31,"384 Hickory St, Los Angeles, CA 90001" -285337,Lightning Charging Cable,1,14.95,11/28/19 15:55,"347 13th St, Portland, OR 97035" -285338,Lightning Charging Cable,1,14.95,11/20/19 18:10,"124 Johnson St, Los Angeles, CA 90001" -285339,27in 4K Gaming Monitor,1,389.99,11/13/19 10:59,"345 River St, San Francisco, CA 94016" -285340,Bose SoundSport Headphones,1,99.99,11/01/19 12:55,"336 8th St, San Francisco, CA 94016" -285341,AA Batteries (4-pack),3,3.84,11/21/19 20:39,"772 Jefferson St, Dallas, TX 75001" -285342,Lightning Charging Cable,1,14.95,11/13/19 09:00,"658 8th St, San Francisco, CA 94016" -285343,Wired Headphones,1,11.99,11/25/19 13:53,"70 Johnson St, Los Angeles, CA 90001" -285344,Wired Headphones,1,11.99,11/29/19 16:17,"477 South St, Seattle, WA 98101" -285345,AAA Batteries (4-pack),2,2.99,11/07/19 11:34,"279 Elm St, New York City, NY 10001" -285346,AA Batteries (4-pack),1,3.84,11/10/19 16:20,"567 1st St, Los Angeles, CA 90001" -285347,27in FHD Monitor,1,149.99,11/01/19 13:17,"229 Lake St, New York City, NY 10001" -285348,ThinkPad Laptop,1,999.99,11/04/19 14:06,"727 8th St, Los Angeles, CA 90001" -285349,34in Ultrawide Monitor,1,379.99,11/08/19 13:22,"51 Madison St, Dallas, TX 75001" -285350,27in FHD Monitor,1,149.99,11/17/19 10:33,"810 10th St, San Francisco, CA 94016" -285351,Wired Headphones,1,11.99,11/17/19 19:45,"226 Highland St, Los Angeles, CA 90001" -285352,AAA Batteries (4-pack),2,2.99,11/06/19 22:09,"325 5th St, Dallas, TX 75001" -285353,27in FHD Monitor,1,149.99,11/06/19 08:13,"755 Church St, San Francisco, CA 94016" -285354,USB-C Charging Cable,1,11.95,11/14/19 20:48,"152 6th St, New York City, NY 10001" -285355,ThinkPad Laptop,1,999.99,11/25/19 22:08,"64 Maple St, Austin, TX 73301" -285356,Lightning Charging Cable,1,14.95,11/16/19 01:33,"627 Wilson St, New York City, NY 10001" -285357,USB-C Charging Cable,1,11.95,11/30/19 19:35,"66 14th St, San Francisco, CA 94016" -285358,AA Batteries (4-pack),1,3.84,11/18/19 02:40,"670 Madison St, Dallas, TX 75001" -285359,27in 4K Gaming Monitor,1,389.99,11/15/19 16:38,"578 4th St, Seattle, WA 98101" -285360,AA Batteries (4-pack),1,3.84,11/02/19 12:37,"366 Cherry St, New York City, NY 10001" -285361,Wired Headphones,1,11.99,11/12/19 16:09,"110 Highland St, Portland, OR 97035" -285362,AAA Batteries (4-pack),1,2.99,11/12/19 18:46,"223 Lincoln St, San Francisco, CA 94016" -285363,Flatscreen TV,1,300,11/20/19 21:15,"196 Madison St, San Francisco, CA 94016" -285364,Macbook Pro Laptop,1,1700,11/27/19 17:37,"875 2nd St, San Francisco, CA 94016" -285365,AA Batteries (4-pack),2,3.84,11/14/19 23:34,"96 Ridge St, Atlanta, GA 30301" -285366,34in Ultrawide Monitor,1,379.99,11/30/19 16:40,"530 Washington St, Los Angeles, CA 90001" -285367,Flatscreen TV,1,300,11/28/19 09:10,"200 Hill St, Atlanta, GA 30301" -285368,Wired Headphones,1,11.99,11/03/19 14:30,"759 Main St, New York City, NY 10001" -285369,Macbook Pro Laptop,1,1700,11/12/19 10:44,"709 Main St, San Francisco, CA 94016" -285370,AAA Batteries (4-pack),3,2.99,11/21/19 16:32,"571 Lincoln St, San Francisco, CA 94016" -285371,AA Batteries (4-pack),1,3.84,11/15/19 16:29,"240 Main St, Dallas, TX 75001" -285372,AAA Batteries (4-pack),1,2.99,11/29/19 10:03,"305 South St, Boston, MA 02215" -285373,USB-C Charging Cable,1,11.95,11/08/19 12:20,"254 Hickory St, Los Angeles, CA 90001" -285374,Wired Headphones,1,11.99,11/24/19 17:18,"925 North St, Atlanta, GA 30301" -285375,Lightning Charging Cable,1,14.95,11/18/19 16:52,"392 9th St, Austin, TX 73301" -285376,27in 4K Gaming Monitor,1,389.99,11/03/19 14:04,"428 North St, San Francisco, CA 94016" -285377,AAA Batteries (4-pack),2,2.99,11/21/19 14:32,"154 South St, Boston, MA 02215" -285378,AA Batteries (4-pack),2,3.84,11/11/19 20:20,"485 Elm St, Boston, MA 02215" -285379,AA Batteries (4-pack),1,3.84,11/16/19 21:31,"233 Willow St, Atlanta, GA 30301" -285380,Apple Airpods Headphones,1,150,11/02/19 15:51,"887 10th St, Dallas, TX 75001" -285381,34in Ultrawide Monitor,1,379.99,11/13/19 15:13,"371 Jackson St, Austin, TX 73301" -285382,34in Ultrawide Monitor,1,379.99,11/19/19 10:20,"313 13th St, San Francisco, CA 94016" -285383,AAA Batteries (4-pack),2,2.99,11/19/19 13:54,"274 Dogwood St, San Francisco, CA 94016" -285384,iPhone,1,700,11/25/19 20:49,"843 5th St, New York City, NY 10001" -285385,Bose SoundSport Headphones,1,99.99,11/05/19 12:00,"103 Forest St, San Francisco, CA 94016" -285386,Google Phone,1,600,11/18/19 15:33,"399 Adams St, Dallas, TX 75001" -285387,AAA Batteries (4-pack),1,2.99,11/04/19 23:57,"176 Elm St, San Francisco, CA 94016" -285388,34in Ultrawide Monitor,1,379.99,11/27/19 13:26,"531 Madison St, San Francisco, CA 94016" -285389,Macbook Pro Laptop,1,1700,11/21/19 11:35,"480 Hill St, Boston, MA 02215" -285390,Google Phone,1,600,11/28/19 09:28,"759 Cherry St, Portland, OR 97035" -285391,Flatscreen TV,1,300,11/14/19 11:31,"135 Walnut St, Dallas, TX 75001" -285392,AAA Batteries (4-pack),2,2.99,11/12/19 14:16,"264 8th St, Atlanta, GA 30301" -285393,USB-C Charging Cable,2,11.95,11/17/19 13:25,"874 Lakeview St, Los Angeles, CA 90001" -285394,USB-C Charging Cable,1,11.95,11/20/19 21:53,"286 Lake St, Seattle, WA 98101" -285395,Lightning Charging Cable,1,14.95,11/29/19 09:44,"560 Sunset St, Los Angeles, CA 90001" -285396,iPhone,1,700,11/12/19 02:58,"253 Meadow St, Boston, MA 02215" -285397,USB-C Charging Cable,1,11.95,11/21/19 16:48,"771 9th St, San Francisco, CA 94016" -285398,Wired Headphones,1,11.99,11/09/19 19:49,"202 South St, San Francisco, CA 94016" -285399,Lightning Charging Cable,1,14.95,11/29/19 06:51,"495 Washington St, Atlanta, GA 30301" -285400,Apple Airpods Headphones,1,150,11/02/19 17:54,"494 4th St, Dallas, TX 75001" -285401,Bose SoundSport Headphones,1,99.99,11/07/19 08:42,"426 1st St, Boston, MA 02215" -285402,AA Batteries (4-pack),1,3.84,11/28/19 19:02,"664 Sunset St, Austin, TX 73301" -285403,Lightning Charging Cable,1,14.95,11/03/19 19:52,"520 14th St, Portland, OR 97035" -285404,27in FHD Monitor,1,149.99,11/09/19 19:15,"18 Adams St, Seattle, WA 98101" -285405,Bose SoundSport Headphones,1,99.99,11/15/19 12:16,"640 Center St, San Francisco, CA 94016" -285406,USB-C Charging Cable,1,11.95,11/09/19 17:15,"261 Washington St, Los Angeles, CA 90001" -285407,AAA Batteries (4-pack),1,2.99,11/20/19 14:22,"928 South St, Seattle, WA 98101" -285408,USB-C Charging Cable,1,11.95,11/18/19 22:49,"314 North St, Los Angeles, CA 90001" -285409,Flatscreen TV,1,300,11/19/19 14:35,"908 Center St, Dallas, TX 75001" -285410,AA Batteries (4-pack),1,3.84,11/15/19 17:16,"265 Main St, New York City, NY 10001" -285411,27in FHD Monitor,1,149.99,11/20/19 19:04,"196 8th St, Los Angeles, CA 90001" -285412,AA Batteries (4-pack),1,3.84,11/27/19 07:23,"607 Sunset St, Dallas, TX 75001" -285413,USB-C Charging Cable,1,11.95,11/06/19 08:08,"702 Jefferson St, Los Angeles, CA 90001" -285414,iPhone,1,700,11/11/19 22:32,"179 2nd St, Boston, MA 02215" -285415,20in Monitor,1,109.99,11/07/19 21:42,"740 12th St, San Francisco, CA 94016" -285416,Wired Headphones,1,11.99,11/23/19 19:52,"571 Spruce St, New York City, NY 10001" -285417,USB-C Charging Cable,1,11.95,11/18/19 18:07,"755 Chestnut St, San Francisco, CA 94016" -285418,Bose SoundSport Headphones,1,99.99,11/26/19 20:17,"591 Hickory St, San Francisco, CA 94016" -285419,20in Monitor,1,109.99,11/21/19 20:11,"417 11th St, San Francisco, CA 94016" -285420,Wired Headphones,1,11.99,11/13/19 12:08,"176 14th St, Boston, MA 02215" -285421,Wired Headphones,2,11.99,11/08/19 03:56,"987 River St, New York City, NY 10001" -285422,Lightning Charging Cable,1,14.95,11/13/19 08:59,"562 Lincoln St, New York City, NY 10001" -285423,Wired Headphones,1,11.99,11/27/19 15:55,"122 Lincoln St, Seattle, WA 98101" -285424,USB-C Charging Cable,1,11.95,11/13/19 09:17,"697 Spruce St, Dallas, TX 75001" -285425,Lightning Charging Cable,1,14.95,11/06/19 20:06,"501 11th St, Seattle, WA 98101" -285426,Lightning Charging Cable,1,14.95,11/26/19 22:29,"213 Jefferson St, Atlanta, GA 30301" -285427,27in 4K Gaming Monitor,1,389.99,11/19/19 17:16,"26 Pine St, Atlanta, GA 30301" -285428,Lightning Charging Cable,1,14.95,11/27/19 13:06,"60 Pine St, San Francisco, CA 94016" -285429,USB-C Charging Cable,1,11.95,11/20/19 14:34,"914 Spruce St, New York City, NY 10001" -285430,Lightning Charging Cable,1,14.95,11/01/19 18:38,"679 Maple St, San Francisco, CA 94016" -285431,Lightning Charging Cable,1,14.95,11/29/19 11:50,"398 Park St, New York City, NY 10001" -285431,AA Batteries (4-pack),1,3.84,11/29/19 11:50,"398 Park St, New York City, NY 10001" -285432,Lightning Charging Cable,1,14.95,11/13/19 16:49,"223 Willow St, Dallas, TX 75001" -285433,Vareebadd Phone,1,400,11/23/19 02:04,"76 North St, Los Angeles, CA 90001" -285434,AA Batteries (4-pack),2,3.84,11/22/19 20:53,"951 Sunset St, Los Angeles, CA 90001" -285435,Lightning Charging Cable,1,14.95,11/04/19 16:52,"333 12th St, Los Angeles, CA 90001" -285436,Lightning Charging Cable,1,14.95,11/28/19 14:49,"602 Hill St, Portland, OR 97035" -285437,AAA Batteries (4-pack),1,2.99,11/25/19 20:39,"39 Chestnut St, New York City, NY 10001" -285438,34in Ultrawide Monitor,1,379.99,11/26/19 10:06,"663 Cherry St, New York City, NY 10001" -285439,Lightning Charging Cable,1,14.95,11/29/19 06:36,"392 11th St, Los Angeles, CA 90001" -285440,AA Batteries (4-pack),1,3.84,11/09/19 21:52,"857 Park St, Los Angeles, CA 90001" -285441,Bose SoundSport Headphones,1,99.99,11/28/19 08:19,"924 West St, Dallas, TX 75001" -285442,27in FHD Monitor,1,149.99,11/27/19 16:15,"387 Church St, Boston, MA 02215" -285443,Vareebadd Phone,1,400,11/17/19 17:00,"864 Johnson St, Portland, OR 97035" -285444,Bose SoundSport Headphones,1,99.99,11/20/19 16:42,"142 12th St, Boston, MA 02215" -285445,Lightning Charging Cable,2,14.95,11/19/19 23:49,"79 River St, Dallas, TX 75001" -285446,Apple Airpods Headphones,1,150,11/02/19 20:44,"211 North St, Dallas, TX 75001" -285447,Lightning Charging Cable,2,14.95,11/07/19 18:59,"328 7th St, Boston, MA 02215" -285448,ThinkPad Laptop,1,999.99,11/28/19 21:53,"758 10th St, New York City, NY 10001" -285449,AA Batteries (4-pack),1,3.84,11/18/19 15:50,"684 Ridge St, Los Angeles, CA 90001" -285450,34in Ultrawide Monitor,1,379.99,11/16/19 18:25,"483 Wilson St, Portland, OR 97035" -285451,iPhone,1,700,11/02/19 14:05,"132 Church St, Portland, OR 97035" -285452,27in 4K Gaming Monitor,1,389.99,11/14/19 20:12,"211 Wilson St, Boston, MA 02215" -285452,Wired Headphones,1,11.99,11/14/19 20:12,"211 Wilson St, Boston, MA 02215" -285453,20in Monitor,1,109.99,11/02/19 10:51,"292 Cherry St, San Francisco, CA 94016" -285454,Lightning Charging Cable,1,14.95,11/28/19 20:33,"798 12th St, Los Angeles, CA 90001" -285455,20in Monitor,1,109.99,11/04/19 16:15,"250 Cedar St, Seattle, WA 98101" -285456,20in Monitor,1,109.99,11/11/19 16:32,"453 Center St, San Francisco, CA 94016" -285457,AAA Batteries (4-pack),1,2.99,11/30/19 01:20,"202 Lake St, Los Angeles, CA 90001" -285458,AA Batteries (4-pack),2,3.84,11/07/19 17:16,"154 Walnut St, Portland, OR 97035" -285459,Vareebadd Phone,1,400,11/11/19 14:29,"155 Madison St, San Francisco, CA 94016" -285460,Macbook Pro Laptop,1,1700,11/25/19 13:19,"430 Lake St, Seattle, WA 98101" -285461,Lightning Charging Cable,1,14.95,11/23/19 12:21,"13 Lakeview St, San Francisco, CA 94016" -285462,AAA Batteries (4-pack),1,2.99,11/06/19 14:06,"861 Elm St, Los Angeles, CA 90001" -285463,Bose SoundSport Headphones,1,99.99,11/09/19 12:02,"167 5th St, Boston, MA 02215" -285464,Macbook Pro Laptop,1,1700,11/28/19 07:17,"56 Spruce St, San Francisco, CA 94016" -285465,AAA Batteries (4-pack),4,2.99,11/18/19 12:47,"822 2nd St, Portland, OR 97035" -285466,Wired Headphones,1,11.99,11/16/19 22:35,"485 Adams St, Los Angeles, CA 90001" -285467,27in FHD Monitor,1,149.99,11/22/19 19:31,"420 Maple St, San Francisco, CA 94016" -285468,Lightning Charging Cable,2,14.95,11/29/19 18:42,"63 Sunset St, Boston, MA 02215" -285469,Google Phone,1,600,11/25/19 11:18,"820 7th St, Boston, MA 02215" -285470,Lightning Charging Cable,2,14.95,11/01/19 12:39,"513 1st St, New York City, NY 10001" -285471,USB-C Charging Cable,1,11.95,11/28/19 09:35,"156 14th St, Boston, MA 02215" -285472,Lightning Charging Cable,1,14.95,11/09/19 14:10,"119 Johnson St, Dallas, TX 75001" -285472,ThinkPad Laptop,1,999.99,11/09/19 14:10,"119 Johnson St, Dallas, TX 75001" -285473,AA Batteries (4-pack),1,3.84,11/08/19 22:21,"798 Elm St, Austin, TX 73301" -285474,AAA Batteries (4-pack),2,2.99,11/21/19 20:14,"597 5th St, New York City, NY 10001" -285475,AAA Batteries (4-pack),4,2.99,11/03/19 18:06,"411 Highland St, San Francisco, CA 94016" -285476,Wired Headphones,1,11.99,11/08/19 07:21,"700 Meadow St, Portland, OR 97035" -285477,AAA Batteries (4-pack),1,2.99,11/04/19 23:45,"762 Elm St, Dallas, TX 75001" -285478,AAA Batteries (4-pack),2,2.99,11/12/19 19:55,"440 14th St, Seattle, WA 98101" -285479,Bose SoundSport Headphones,1,99.99,11/03/19 00:30,"491 13th St, Los Angeles, CA 90001" -285480,AA Batteries (4-pack),2,3.84,11/22/19 00:19,"309 Highland St, Atlanta, GA 30301" -285481,Apple Airpods Headphones,1,150,11/27/19 11:00,"16 Walnut St, San Francisco, CA 94016" -285482,Apple Airpods Headphones,1,150,11/24/19 16:58,"818 Pine St, Los Angeles, CA 90001" -285483,27in FHD Monitor,1,149.99,11/01/19 08:31,"809 Cherry St, Portland, OR 97035" -285484,AA Batteries (4-pack),2,3.84,11/07/19 14:26,"866 Lakeview St, San Francisco, CA 94016" -285485,AA Batteries (4-pack),1,3.84,11/18/19 09:03,"753 Adams St, San Francisco, CA 94016" -285486,Lightning Charging Cable,1,14.95,11/16/19 00:59,"952 2nd St, Portland, OR 97035" -285487,Macbook Pro Laptop,1,1700,11/19/19 18:46,"963 North St, Austin, TX 73301" -285488,Apple Airpods Headphones,1,150,11/09/19 15:30,"939 2nd St, Dallas, TX 75001" -285489,Lightning Charging Cable,2,14.95,11/04/19 19:09,"338 Cherry St, Los Angeles, CA 90001" -285490,Lightning Charging Cable,1,14.95,11/25/19 09:10,"561 1st St, Atlanta, GA 30301" -285491,Lightning Charging Cable,1,14.95,11/18/19 17:59,"564 Forest St, Boston, MA 02215" -285492,iPhone,1,700,11/07/19 18:22,"54 Meadow St, San Francisco, CA 94016" -285492,Lightning Charging Cable,1,14.95,11/07/19 18:22,"54 Meadow St, San Francisco, CA 94016" -285493,USB-C Charging Cable,1,11.95,11/18/19 10:12,"934 Church St, Austin, TX 73301" -285494,20in Monitor,1,109.99,11/05/19 00:21,"512 Meadow St, Los Angeles, CA 90001" -285495,AAA Batteries (4-pack),1,2.99,11/12/19 16:43,"654 10th St, Austin, TX 73301" -285496,Vareebadd Phone,1,400,11/08/19 16:22,"922 2nd St, Seattle, WA 98101" -285497,Bose SoundSport Headphones,1,99.99,11/15/19 19:41,"528 Sunset St, Portland, ME 04101" -285497,AAA Batteries (4-pack),1,2.99,11/15/19 19:41,"528 Sunset St, Portland, ME 04101" -285498,AA Batteries (4-pack),1,3.84,11/22/19 08:48,"473 1st St, Los Angeles, CA 90001" -285499,Wired Headphones,1,11.99,11/21/19 12:37,"666 Adams St, Boston, MA 02215" -285500,AAA Batteries (4-pack),1,2.99,11/20/19 22:48,"400 6th St, Boston, MA 02215" -285501,AAA Batteries (4-pack),1,2.99,11/13/19 17:34,"689 Cherry St, Boston, MA 02215" -285502,AA Batteries (4-pack),1,3.84,11/18/19 13:27,"285 9th St, San Francisco, CA 94016" -285503,Wired Headphones,1,11.99,11/06/19 16:04,"113 Washington St, San Francisco, CA 94016" -285504,Google Phone,1,600,11/19/19 19:04,"828 Park St, Austin, TX 73301" -285504,USB-C Charging Cable,1,11.95,11/19/19 19:04,"828 Park St, Austin, TX 73301" -285505,USB-C Charging Cable,1,11.95,11/11/19 20:43,"593 Sunset St, Austin, TX 73301" -285506,USB-C Charging Cable,1,11.95,11/04/19 14:31,"891 Walnut St, New York City, NY 10001" -285507,USB-C Charging Cable,1,11.95,11/13/19 22:54,"319 Elm St, Los Angeles, CA 90001" -285508,iPhone,1,700,11/14/19 03:17,"67 Hickory St, Los Angeles, CA 90001" -285509,AA Batteries (4-pack),2,3.84,11/11/19 20:38,"776 Sunset St, Portland, OR 97035" -285510,Wired Headphones,1,11.99,11/05/19 09:16,"699 9th St, San Francisco, CA 94016" -285511,AAA Batteries (4-pack),1,2.99,11/21/19 16:11,"661 14th St, Austin, TX 73301" -285512,USB-C Charging Cable,1,11.95,11/12/19 21:17,"713 Willow St, New York City, NY 10001" -285513,27in FHD Monitor,1,149.99,11/07/19 02:51,"362 Church St, New York City, NY 10001" -285514,Apple Airpods Headphones,1,150,11/25/19 17:30,"458 Jefferson St, San Francisco, CA 94016" -285515,Apple Airpods Headphones,1,150,11/26/19 10:31,"348 Madison St, Austin, TX 73301" -285516,USB-C Charging Cable,1,11.95,11/22/19 21:54,"181 Lake St, Seattle, WA 98101" -285517,Lightning Charging Cable,1,14.95,11/26/19 14:39,"508 Meadow St, San Francisco, CA 94016" -285518,Flatscreen TV,1,300,11/23/19 06:07,"327 Maple St, San Francisco, CA 94016" -285519,USB-C Charging Cable,1,11.95,11/28/19 10:17,"826 12th St, San Francisco, CA 94016" -285520,USB-C Charging Cable,1,11.95,11/16/19 13:18,"405 Washington St, Atlanta, GA 30301" -285520,AA Batteries (4-pack),1,3.84,11/16/19 13:18,"405 Washington St, Atlanta, GA 30301" -285521,iPhone,1,700,11/01/19 12:53,"118 West St, Boston, MA 02215" -285522,Bose SoundSport Headphones,1,99.99,11/15/19 23:48,"220 Madison St, Boston, MA 02215" -285523,27in FHD Monitor,1,149.99,11/26/19 04:27,"79 5th St, San Francisco, CA 94016" -285524,Wired Headphones,1,11.99,11/21/19 18:46,"345 River St, Austin, TX 73301" -285525,iPhone,1,700,11/08/19 06:54,"10 Hill St, Los Angeles, CA 90001" -285526,Lightning Charging Cable,1,14.95,11/12/19 15:15,"292 Meadow St, San Francisco, CA 94016" -285527,Lightning Charging Cable,1,14.95,11/25/19 19:21,"473 Hill St, Atlanta, GA 30301" -285528,27in FHD Monitor,1,149.99,11/28/19 09:25,"314 Lake St, Los Angeles, CA 90001" -285529,Macbook Pro Laptop,1,1700,11/25/19 12:00,"249 Hickory St, New York City, NY 10001" -285530,Google Phone,1,600,11/22/19 19:39,"762 12th St, Seattle, WA 98101" -285530,USB-C Charging Cable,1,11.95,11/22/19 19:39,"762 12th St, Seattle, WA 98101" -285531,Google Phone,1,600,11/23/19 11:53,"479 Maple St, San Francisco, CA 94016" -285532,Apple Airpods Headphones,1,150,11/21/19 18:27,"737 Dogwood St, San Francisco, CA 94016" -285532,AA Batteries (4-pack),1,3.84,11/21/19 18:27,"737 Dogwood St, San Francisco, CA 94016" -285533,27in 4K Gaming Monitor,1,389.99,11/26/19 20:32,"352 7th St, Seattle, WA 98101" -285534,Vareebadd Phone,1,400,11/24/19 13:05,"902 6th St, New York City, NY 10001" -285534,Bose SoundSport Headphones,1,99.99,11/24/19 13:05,"902 6th St, New York City, NY 10001" -285535,AAA Batteries (4-pack),2,2.99,11/26/19 14:26,"786 Jackson St, San Francisco, CA 94016" -285536,Lightning Charging Cable,1,14.95,11/21/19 09:13,"496 South St, Seattle, WA 98101" -285537,Apple Airpods Headphones,1,150,11/19/19 03:32,"112 Walnut St, New York City, NY 10001" -285538,AAA Batteries (4-pack),1,2.99,11/18/19 11:52,"648 Madison St, New York City, NY 10001" -285539,Apple Airpods Headphones,1,150,11/07/19 21:44,"291 Center St, San Francisco, CA 94016" -285540,AAA Batteries (4-pack),1,2.99,11/10/19 19:33,"525 Forest St, Seattle, WA 98101" -285541,Flatscreen TV,1,300,11/21/19 16:21,"678 Adams St, Portland, ME 04101" -285542,Lightning Charging Cable,1,14.95,11/14/19 11:08,"676 Willow St, Portland, OR 97035" -285543,AA Batteries (4-pack),2,3.84,11/08/19 17:39,"508 8th St, Los Angeles, CA 90001" -285544,Flatscreen TV,1,300,11/14/19 16:27,"355 Cherry St, Boston, MA 02215" -285545,AA Batteries (4-pack),1,3.84,11/14/19 14:57,"249 Ridge St, Atlanta, GA 30301" -,,,,, -285546,34in Ultrawide Monitor,1,379.99,11/11/19 17:46,"741 10th St, New York City, NY 10001" -285547,Wired Headphones,1,11.99,11/25/19 19:12,"571 Lincoln St, Boston, MA 02215" -285548,Flatscreen TV,1,300,11/28/19 17:49,"997 Wilson St, Dallas, TX 75001" -285549,Wired Headphones,1,11.99,11/09/19 06:11,"544 Johnson St, Dallas, TX 75001" -285550,Wired Headphones,1,11.99,11/25/19 18:40,"181 Johnson St, Los Angeles, CA 90001" -285551,AA Batteries (4-pack),1,3.84,11/17/19 21:09,"242 Sunset St, San Francisco, CA 94016" -285552,20in Monitor,1,109.99,11/02/19 08:20,"630 Cedar St, Portland, ME 04101" -285553,AA Batteries (4-pack),1,3.84,11/29/19 12:57,"681 River St, Atlanta, GA 30301" -285554,27in FHD Monitor,1,149.99,11/15/19 16:53,"688 Maple St, New York City, NY 10001" -285555,Lightning Charging Cable,1,14.95,11/04/19 22:06,"512 Meadow St, Atlanta, GA 30301" -285556,Apple Airpods Headphones,1,150,11/18/19 13:52,"991 Hill St, Austin, TX 73301" -285557,USB-C Charging Cable,1,11.95,11/20/19 21:07,"938 Dogwood St, San Francisco, CA 94016" -285558,AA Batteries (4-pack),1,3.84,11/21/19 18:04,"160 Madison St, San Francisco, CA 94016" -285559,Apple Airpods Headphones,1,150,11/22/19 11:05,"512 4th St, Portland, OR 97035" -285560,AAA Batteries (4-pack),1,2.99,11/09/19 10:02,"930 Lake St, Los Angeles, CA 90001" -285561,AA Batteries (4-pack),1,3.84,11/08/19 19:36,"639 Main St, Seattle, WA 98101" -285562,USB-C Charging Cable,1,11.95,11/03/19 13:28,"610 Adams St, Austin, TX 73301" -285563,Wired Headphones,1,11.99,11/12/19 11:11,"467 Hill St, Austin, TX 73301" -285564,AAA Batteries (4-pack),1,2.99,11/20/19 09:59,"109 Lincoln St, San Francisco, CA 94016" -285565,USB-C Charging Cable,1,11.95,11/27/19 14:26,"432 West St, San Francisco, CA 94016" -285566,USB-C Charging Cable,1,11.95,11/11/19 19:39,"27 Center St, Seattle, WA 98101" -285567,Google Phone,1,600,11/01/19 15:58,"117 Ridge St, San Francisco, CA 94016" -285568,Apple Airpods Headphones,1,150,11/06/19 12:37,"323 West St, San Francisco, CA 94016" -285569,AAA Batteries (4-pack),1,2.99,11/06/19 00:09,"103 Washington St, Seattle, WA 98101" -285570,iPhone,1,700,11/22/19 22:01,"212 11th St, Seattle, WA 98101" -285571,34in Ultrawide Monitor,2,379.99,11/30/19 13:02,"683 Highland St, Atlanta, GA 30301" -285572,Lightning Charging Cable,1,14.95,11/06/19 15:48,"188 Maple St, Boston, MA 02215" -285573,Wired Headphones,1,11.99,11/06/19 20:36,"282 Sunset St, San Francisco, CA 94016" -285574,34in Ultrawide Monitor,1,379.99,11/06/19 11:21,"909 2nd St, San Francisco, CA 94016" -285575,Apple Airpods Headphones,1,150,11/06/19 22:09,"953 10th St, Atlanta, GA 30301" -285576,AA Batteries (4-pack),1,3.84,11/14/19 18:59,"53 Cedar St, New York City, NY 10001" -285577,ThinkPad Laptop,1,999.99,11/21/19 01:15,"482 Hill St, Boston, MA 02215" -285578,Wired Headphones,1,11.99,11/30/19 11:32,"498 Lake St, Los Angeles, CA 90001" -285579,Wired Headphones,1,11.99,12/01/19 00:47,"866 5th St, Seattle, WA 98101" -285580,Flatscreen TV,1,300,11/04/19 22:22,"348 Wilson St, San Francisco, CA 94016" -285581,Lightning Charging Cable,1,14.95,11/24/19 19:00,"255 Maple St, Los Angeles, CA 90001" -285582,AA Batteries (4-pack),2,3.84,11/09/19 21:55,"477 Meadow St, New York City, NY 10001" -285583,AAA Batteries (4-pack),1,2.99,11/09/19 20:42,"664 Ridge St, Atlanta, GA 30301" -285584,AAA Batteries (4-pack),1,2.99,11/09/19 11:41,"687 Elm St, Los Angeles, CA 90001" -285585,Google Phone,1,600,11/13/19 02:24,"754 Washington St, Los Angeles, CA 90001" -285586,Lightning Charging Cable,1,14.95,11/10/19 18:52,"808 7th St, Austin, TX 73301" -285587,Bose SoundSport Headphones,1,99.99,11/22/19 17:22,"304 12th St, Seattle, WA 98101" -285588,AAA Batteries (4-pack),4,2.99,11/04/19 14:32,"902 Pine St, Los Angeles, CA 90001" -285589,Wired Headphones,1,11.99,11/13/19 10:59,"569 Elm St, San Francisco, CA 94016" -285590,AAA Batteries (4-pack),1,2.99,11/26/19 19:30,"791 North St, Atlanta, GA 30301" -285591,USB-C Charging Cable,1,11.95,11/30/19 01:08,"180 River St, New York City, NY 10001" -285592,ThinkPad Laptop,1,999.99,11/07/19 20:49,"628 Wilson St, Seattle, WA 98101" -285593,27in 4K Gaming Monitor,1,389.99,11/27/19 11:41,"546 Church St, Seattle, WA 98101" -285594,Lightning Charging Cable,1,14.95,11/28/19 01:32,"507 12th St, Atlanta, GA 30301" -285595,USB-C Charging Cable,3,11.95,11/07/19 15:51,"199 12th St, Boston, MA 02215" -285596,Lightning Charging Cable,1,14.95,11/20/19 11:54,"28 Dogwood St, Dallas, TX 75001" -285597,USB-C Charging Cable,1,11.95,11/09/19 18:14,"526 Center St, Atlanta, GA 30301" -285598,Flatscreen TV,1,300,11/21/19 11:45,"356 Meadow St, Los Angeles, CA 90001" -285599,Lightning Charging Cable,1,14.95,11/22/19 19:49,"706 Church St, Los Angeles, CA 90001" -285600,27in FHD Monitor,1,149.99,11/21/19 03:18,"729 Cherry St, Atlanta, GA 30301" -285600,USB-C Charging Cable,1,11.95,11/21/19 03:18,"729 Cherry St, Atlanta, GA 30301" -285601,AA Batteries (4-pack),1,3.84,11/07/19 09:38,"706 Adams St, New York City, NY 10001" -285602,Wired Headphones,1,11.99,11/23/19 17:50,"423 Main St, New York City, NY 10001" -285602,Bose SoundSport Headphones,1,99.99,11/23/19 17:50,"423 Main St, New York City, NY 10001" -285603,Wired Headphones,1,11.99,11/27/19 08:23,"305 7th St, Seattle, WA 98101" -285604,Flatscreen TV,1,300,11/27/19 16:12,"375 Park St, Dallas, TX 75001" -285605,USB-C Charging Cable,1,11.95,11/03/19 15:48,"774 5th St, Portland, OR 97035" -285606,USB-C Charging Cable,1,11.95,11/18/19 18:40,"767 13th St, San Francisco, CA 94016" -285607,AAA Batteries (4-pack),1,2.99,11/01/19 21:33,"850 Wilson St, Portland, ME 04101" -285608,27in FHD Monitor,1,149.99,11/06/19 11:48,"331 Maple St, Atlanta, GA 30301" -285609,USB-C Charging Cable,1,11.95,11/08/19 12:12,"718 Hickory St, Atlanta, GA 30301" -285610,AAA Batteries (4-pack),2,2.99,11/30/19 09:13,"51 7th St, San Francisco, CA 94016" -285611,Apple Airpods Headphones,1,150,11/27/19 18:31,"472 Washington St, New York City, NY 10001" -285612,27in 4K Gaming Monitor,1,389.99,11/21/19 10:32,"514 Chestnut St, Los Angeles, CA 90001" -285613,AA Batteries (4-pack),1,3.84,11/19/19 20:50,"292 Willow St, New York City, NY 10001" -285614,Bose SoundSport Headphones,1,99.99,11/19/19 09:42,"878 North St, Atlanta, GA 30301" -285614,AAA Batteries (4-pack),2,2.99,11/19/19 09:42,"878 North St, Atlanta, GA 30301" -285615,Apple Airpods Headphones,1,150,11/26/19 23:59,"59 South St, San Francisco, CA 94016" -285616,Google Phone,1,600,11/10/19 22:49,"274 Johnson St, San Francisco, CA 94016" -285617,AA Batteries (4-pack),1,3.84,11/21/19 17:18,"981 Johnson St, Atlanta, GA 30301" -285618,AA Batteries (4-pack),1,3.84,11/30/19 00:26,"555 Main St, Los Angeles, CA 90001" -285619,Macbook Pro Laptop,1,1700,11/02/19 18:07,"527 Walnut St, Portland, OR 97035" -285620,Apple Airpods Headphones,1,150,11/27/19 13:17,"842 Wilson St, Los Angeles, CA 90001" -285621,Google Phone,1,600,11/13/19 15:29,"872 Washington St, Boston, MA 02215" -285622,USB-C Charging Cable,1,11.95,11/24/19 18:14,"559 Sunset St, Portland, OR 97035" -285623,27in FHD Monitor,1,149.99,11/03/19 03:30,"821 Sunset St, New York City, NY 10001" -285624,Wired Headphones,1,11.99,11/03/19 22:57,"151 Maple St, San Francisco, CA 94016" -285625,Lightning Charging Cable,1,14.95,11/01/19 21:19,"168 12th St, Los Angeles, CA 90001" -285626,27in FHD Monitor,1,149.99,11/29/19 17:30,"615 13th St, Los Angeles, CA 90001" -285627,USB-C Charging Cable,1,11.95,11/18/19 13:55,"648 Walnut St, San Francisco, CA 94016" -285628,Bose SoundSport Headphones,1,99.99,11/10/19 16:48,"613 Jackson St, Austin, TX 73301" -285629,Bose SoundSport Headphones,1,99.99,11/08/19 15:22,"58 Highland St, San Francisco, CA 94016" -285630,AAA Batteries (4-pack),2,2.99,11/12/19 08:54,"267 Center St, Dallas, TX 75001" -285631,AAA Batteries (4-pack),1,2.99,11/04/19 16:15,"595 Cherry St, San Francisco, CA 94016" -285632,Wired Headphones,1,11.99,11/15/19 10:56,"862 Chestnut St, Atlanta, GA 30301" -285633,Bose SoundSport Headphones,1,99.99,11/08/19 10:58,"465 Park St, San Francisco, CA 94016" -285634,Flatscreen TV,1,300,11/14/19 14:13,"912 West St, Boston, MA 02215" -285635,Bose SoundSport Headphones,1,99.99,11/13/19 04:04,"318 Madison St, New York City, NY 10001" -285636,34in Ultrawide Monitor,1,379.99,11/11/19 08:47,"277 Meadow St, Los Angeles, CA 90001" -285637,Wired Headphones,1,11.99,11/23/19 19:34,"661 Park St, San Francisco, CA 94016" -285638,iPhone,1,700,11/04/19 19:39,"342 14th St, New York City, NY 10001" -285639,Lightning Charging Cable,1,14.95,11/13/19 20:40,"674 6th St, Atlanta, GA 30301" -285640,Flatscreen TV,1,300,11/08/19 10:43,"322 7th St, New York City, NY 10001" -285641,Bose SoundSport Headphones,1,99.99,11/25/19 12:18,"585 Center St, New York City, NY 10001" -285642,Google Phone,1,600,11/02/19 13:08,"481 9th St, Los Angeles, CA 90001" -285642,USB-C Charging Cable,1,11.95,11/02/19 13:08,"481 9th St, Los Angeles, CA 90001" -285643,USB-C Charging Cable,1,11.95,11/02/19 11:10,"317 9th St, San Francisco, CA 94016" -285644,27in FHD Monitor,1,149.99,11/06/19 19:20,"514 11th St, San Francisco, CA 94016" -285645,AA Batteries (4-pack),1,3.84,11/14/19 11:42,"204 Dogwood St, New York City, NY 10001" -285646,Bose SoundSport Headphones,1,99.99,11/06/19 20:39,"38 Spruce St, Boston, MA 02215" -285647,Macbook Pro Laptop,1,1700,11/13/19 20:35,"726 Main St, Atlanta, GA 30301" -285648,AAA Batteries (4-pack),1,2.99,11/29/19 23:59,"215 Meadow St, New York City, NY 10001" -285649,Wired Headphones,2,11.99,11/17/19 23:47,"714 Walnut St, Atlanta, GA 30301" -285650,27in 4K Gaming Monitor,1,389.99,11/19/19 14:07,"278 Hill St, Seattle, WA 98101" -285651,iPhone,1,700,11/10/19 18:24,"424 Pine St, San Francisco, CA 94016" -285652,34in Ultrawide Monitor,1,379.99,11/30/19 23:14,"681 Lakeview St, Austin, TX 73301" -285653,Flatscreen TV,1,300,11/20/19 12:41,"950 2nd St, Austin, TX 73301" -285654,34in Ultrawide Monitor,1,379.99,11/10/19 07:29,"907 11th St, Portland, ME 04101" -285655,Apple Airpods Headphones,1,150,11/08/19 11:35,"575 Church St, Seattle, WA 98101" -285656,AAA Batteries (4-pack),1,2.99,11/15/19 11:51,"749 Church St, San Francisco, CA 94016" -285657,Apple Airpods Headphones,1,150,11/01/19 18:09,"946 13th St, Seattle, WA 98101" -285658,Bose SoundSport Headphones,1,99.99,11/06/19 13:52,"578 North St, Boston, MA 02215" -285659,Lightning Charging Cable,1,14.95,11/26/19 21:00,"685 River St, Los Angeles, CA 90001" -285660,34in Ultrawide Monitor,1,379.99,11/20/19 22:55,"284 Spruce St, Atlanta, GA 30301" -285661,USB-C Charging Cable,1,11.95,11/18/19 12:58,"870 Madison St, New York City, NY 10001" -285662,iPhone,1,700,11/21/19 16:11,"938 10th St, San Francisco, CA 94016" -285663,Apple Airpods Headphones,1,150,11/26/19 11:49,"341 Jefferson St, Seattle, WA 98101" -285664,AAA Batteries (4-pack),1,2.99,11/23/19 20:29,"246 Hill St, Seattle, WA 98101" -285665,34in Ultrawide Monitor,1,379.99,11/11/19 18:33,"847 5th St, Boston, MA 02215" -285666,USB-C Charging Cable,1,11.95,11/16/19 13:07,"394 Maple St, Dallas, TX 75001" -285667,AA Batteries (4-pack),1,3.84,11/06/19 14:02,"468 Center St, Atlanta, GA 30301" -285668,Wired Headphones,1,11.99,11/14/19 00:55,"706 Highland St, Atlanta, GA 30301" -285669,Lightning Charging Cable,1,14.95,11/29/19 18:44,"332 Park St, Los Angeles, CA 90001" -285670,USB-C Charging Cable,1,11.95,11/23/19 23:07,"418 5th St, New York City, NY 10001" -285671,USB-C Charging Cable,1,11.95,11/11/19 16:25,"969 14th St, Los Angeles, CA 90001" -285672,27in FHD Monitor,1,149.99,11/25/19 23:25,"315 14th St, San Francisco, CA 94016" -285673,AAA Batteries (4-pack),2,2.99,11/03/19 19:57,"460 Highland St, San Francisco, CA 94016" -285674,AAA Batteries (4-pack),1,2.99,11/17/19 14:14,"837 Maple St, Los Angeles, CA 90001" -285675,ThinkPad Laptop,1,999.99,11/24/19 21:44,"148 Highland St, Seattle, WA 98101" -285676,Bose SoundSport Headphones,1,99.99,11/26/19 23:01,"607 Cherry St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -285677,Apple Airpods Headphones,1,150,11/15/19 11:16,"741 14th St, San Francisco, CA 94016" -285678,Lightning Charging Cable,1,14.95,11/17/19 15:35,"166 11th St, Austin, TX 73301" -285679,Bose SoundSport Headphones,1,99.99,11/10/19 15:50,"933 Walnut St, San Francisco, CA 94016" -285680,USB-C Charging Cable,1,11.95,11/16/19 21:09,"702 Highland St, San Francisco, CA 94016" -285681,Apple Airpods Headphones,1,150,11/07/19 06:21,"642 Cherry St, San Francisco, CA 94016" -285682,AA Batteries (4-pack),1,3.84,11/04/19 20:00,"759 Lake St, Los Angeles, CA 90001" -285683,AA Batteries (4-pack),1,3.84,11/22/19 08:26,"502 12th St, Austin, TX 73301" -285684,Wired Headphones,1,11.99,11/05/19 00:36,"998 10th St, New York City, NY 10001" -285685,AA Batteries (4-pack),1,3.84,11/27/19 15:02,"483 Washington St, Atlanta, GA 30301" -285686,Lightning Charging Cable,1,14.95,11/20/19 09:16,"158 Park St, Los Angeles, CA 90001" -285687,AA Batteries (4-pack),1,3.84,11/03/19 20:17,"245 Lake St, Los Angeles, CA 90001" -285688,USB-C Charging Cable,1,11.95,11/28/19 17:05,"68 Highland St, Dallas, TX 75001" -285689,27in FHD Monitor,1,149.99,11/20/19 14:04,"163 Lincoln St, Dallas, TX 75001" -285690,AA Batteries (4-pack),1,3.84,11/09/19 06:26,"469 Spruce St, Los Angeles, CA 90001" -285691,ThinkPad Laptop,1,999.99,11/10/19 16:01,"31 7th St, Los Angeles, CA 90001" -285692,27in FHD Monitor,1,149.99,11/22/19 10:51,"748 Washington St, Dallas, TX 75001" -285693,USB-C Charging Cable,1,11.95,11/14/19 05:49,"664 Cedar St, Los Angeles, CA 90001" -285694,Wired Headphones,1,11.99,11/24/19 21:29,"732 Meadow St, Seattle, WA 98101" -285695,Google Phone,1,600,11/04/19 21:01,"369 6th St, Boston, MA 02215" -285696,AA Batteries (4-pack),1,3.84,11/06/19 19:29,"667 9th St, Dallas, TX 75001" -285697,Flatscreen TV,1,300,11/03/19 18:23,"680 6th St, Dallas, TX 75001" -285698,USB-C Charging Cable,2,11.95,11/13/19 12:06,"408 11th St, Los Angeles, CA 90001" -285699,Wired Headphones,1,11.99,11/11/19 13:12,"483 Main St, Los Angeles, CA 90001" -285700,AA Batteries (4-pack),1,3.84,11/25/19 20:58,"863 North St, New York City, NY 10001" -285701,iPhone,1,700,11/22/19 08:17,"89 Wilson St, Boston, MA 02215" -285701,AA Batteries (4-pack),1,3.84,11/22/19 08:17,"89 Wilson St, Boston, MA 02215" -285702,Apple Airpods Headphones,1,150,11/03/19 21:47,"63 Adams St, Los Angeles, CA 90001" -285703,Bose SoundSport Headphones,1,99.99,11/16/19 15:22,"933 Forest St, Boston, MA 02215" -285704,Wired Headphones,1,11.99,11/18/19 08:07,"157 Willow St, San Francisco, CA 94016" -285705,AAA Batteries (4-pack),1,2.99,11/17/19 22:46,"756 6th St, Los Angeles, CA 90001" -285706,AAA Batteries (4-pack),2,2.99,11/14/19 22:23,"759 North St, San Francisco, CA 94016" -285707,Bose SoundSport Headphones,1,99.99,11/09/19 08:36,"765 7th St, Atlanta, GA 30301" -285708,Macbook Pro Laptop,1,1700,11/05/19 16:40,"445 Spruce St, Boston, MA 02215" -285709,Lightning Charging Cable,1,14.95,11/18/19 08:16,"36 11th St, New York City, NY 10001" -285710,Lightning Charging Cable,1,14.95,11/12/19 11:10,"829 Chestnut St, Los Angeles, CA 90001" -285711,Wired Headphones,1,11.99,11/11/19 15:30,"296 Chestnut St, Austin, TX 73301" -285712,Lightning Charging Cable,1,14.95,11/14/19 17:46,"486 2nd St, Austin, TX 73301" -285713,AAA Batteries (4-pack),2,2.99,11/09/19 17:33,"23 West St, San Francisco, CA 94016" -285714,Wired Headphones,1,11.99,11/08/19 06:11,"455 4th St, New York City, NY 10001" -285715,Lightning Charging Cable,1,14.95,11/17/19 19:33,"113 River St, San Francisco, CA 94016" -285716,Apple Airpods Headphones,1,150,11/20/19 13:13,"741 Park St, Portland, OR 97035" -285717,20in Monitor,1,109.99,11/18/19 09:01,"432 5th St, San Francisco, CA 94016" -285718,AA Batteries (4-pack),1,3.84,11/14/19 10:12,"147 Hickory St, Boston, MA 02215" -285719,Macbook Pro Laptop,1,1700,11/04/19 09:45,"517 12th St, Portland, OR 97035" -285720,AAA Batteries (4-pack),5,2.99,11/03/19 12:50,"601 Wilson St, Dallas, TX 75001" -285721,AA Batteries (4-pack),3,3.84,11/21/19 12:28,"837 10th St, Boston, MA 02215" -285722,USB-C Charging Cable,1,11.95,11/26/19 09:34,"757 Lake St, Boston, MA 02215" -285723,AAA Batteries (4-pack),1,2.99,11/22/19 12:59,"427 5th St, Seattle, WA 98101" -285724,AA Batteries (4-pack),2,3.84,11/26/19 21:38,"139 Park St, New York City, NY 10001" -285725,AA Batteries (4-pack),1,3.84,11/29/19 23:55,"953 West St, Dallas, TX 75001" -285726,AA Batteries (4-pack),1,3.84,11/01/19 09:10,"253 Ridge St, Los Angeles, CA 90001" -285727,AA Batteries (4-pack),1,3.84,11/27/19 20:48,"727 Dogwood St, San Francisco, CA 94016" -285728,Lightning Charging Cable,1,14.95,11/18/19 13:16,"882 Washington St, Seattle, WA 98101" -285729,Lightning Charging Cable,1,14.95,11/02/19 19:08,"419 7th St, San Francisco, CA 94016" -285730,AAA Batteries (4-pack),2,2.99,11/22/19 21:37,"744 Lincoln St, San Francisco, CA 94016" -285731,AAA Batteries (4-pack),4,2.99,12/01/19 00:02,"786 Hill St, San Francisco, CA 94016" -285732,AA Batteries (4-pack),2,3.84,11/16/19 22:52,"785 River St, Los Angeles, CA 90001" -285733,Wired Headphones,1,11.99,11/07/19 18:33,"639 Chestnut St, Boston, MA 02215" -285734,Google Phone,1,600,11/07/19 12:08,"568 11th St, San Francisco, CA 94016" -285734,USB-C Charging Cable,1,11.95,11/07/19 12:08,"568 11th St, San Francisco, CA 94016" -285735,Bose SoundSport Headphones,1,99.99,11/14/19 21:17,"313 Sunset St, Dallas, TX 75001" -285736,AA Batteries (4-pack),2,3.84,11/13/19 14:51,"979 Park St, Los Angeles, CA 90001" -285737,AA Batteries (4-pack),3,3.84,11/04/19 18:09,"241 14th St, Los Angeles, CA 90001" -285738,Lightning Charging Cable,1,14.95,11/01/19 05:40,"551 Hickory St, San Francisco, CA 94016" -285739,Wired Headphones,1,11.99,11/04/19 20:19,"944 River St, Austin, TX 73301" -285740,Bose SoundSport Headphones,1,99.99,11/10/19 22:24,"6 Adams St, San Francisco, CA 94016" -285741,Wired Headphones,1,11.99,11/26/19 16:11,"200 Lake St, San Francisco, CA 94016" -285742,27in 4K Gaming Monitor,1,389.99,11/07/19 08:14,"434 Meadow St, Seattle, WA 98101" -285743,Lightning Charging Cable,1,14.95,11/05/19 19:46,"703 Spruce St, New York City, NY 10001" -285744,Lightning Charging Cable,1,14.95,11/02/19 13:06,"847 Sunset St, New York City, NY 10001" -285745,AAA Batteries (4-pack),1,2.99,11/01/19 12:33,"275 Main St, Boston, MA 02215" -285746,Bose SoundSport Headphones,1,99.99,11/05/19 20:30,"995 Dogwood St, San Francisco, CA 94016" -285747,AA Batteries (4-pack),1,3.84,11/10/19 00:29,"400 North St, San Francisco, CA 94016" -285748,AA Batteries (4-pack),1,3.84,11/18/19 13:24,"233 Washington St, Atlanta, GA 30301" -285749,AA Batteries (4-pack),2,3.84,11/05/19 22:18,"180 Chestnut St, Boston, MA 02215" -285750,Wired Headphones,1,11.99,11/22/19 14:41,"225 2nd St, New York City, NY 10001" -285751,AA Batteries (4-pack),2,3.84,11/19/19 19:23,"505 South St, Los Angeles, CA 90001" -285752,Apple Airpods Headphones,1,150,11/09/19 23:31,"552 13th St, San Francisco, CA 94016" -285753,USB-C Charging Cable,1,11.95,11/01/19 23:19,"350 South St, Atlanta, GA 30301" -285754,Bose SoundSport Headphones,1,99.99,11/08/19 22:45,"45 River St, Portland, ME 04101" -285755,USB-C Charging Cable,1,11.95,11/04/19 19:55,"872 Wilson St, Portland, OR 97035" -285756,AAA Batteries (4-pack),1,2.99,11/17/19 13:48,"717 Meadow St, Portland, OR 97035" -285757,AAA Batteries (4-pack),1,2.99,11/11/19 23:14,"757 14th St, San Francisco, CA 94016" -285758,Bose SoundSport Headphones,1,99.99,11/07/19 13:01,"690 14th St, San Francisco, CA 94016" -285759,AA Batteries (4-pack),1,3.84,11/10/19 18:58,"860 Lake St, New York City, NY 10001" -285760,Bose SoundSport Headphones,1,99.99,11/23/19 17:01,"258 6th St, San Francisco, CA 94016" -285761,Lightning Charging Cable,1,14.95,11/11/19 16:08,"401 Center St, Los Angeles, CA 90001" -285762,Lightning Charging Cable,1,14.95,11/25/19 18:45,"243 Ridge St, Portland, ME 04101" -285763,AA Batteries (4-pack),1,3.84,11/24/19 18:52,"796 9th St, San Francisco, CA 94016" -285764,USB-C Charging Cable,1,11.95,11/20/19 11:28,"474 5th St, Dallas, TX 75001" -285765,AA Batteries (4-pack),1,3.84,11/12/19 18:29,"238 Washington St, Atlanta, GA 30301" -285765,Lightning Charging Cable,1,14.95,11/12/19 18:29,"238 Washington St, Atlanta, GA 30301" -285766,Wired Headphones,1,11.99,11/11/19 23:36,"95 Highland St, Atlanta, GA 30301" -285767,AAA Batteries (4-pack),3,2.99,11/29/19 14:42,"245 Meadow St, Portland, OR 97035" -285768,Bose SoundSport Headphones,1,99.99,11/06/19 09:51,"944 South St, Seattle, WA 98101" -285769,Wired Headphones,1,11.99,11/03/19 14:52,"92 Madison St, Boston, MA 02215" -285770,Bose SoundSport Headphones,1,99.99,11/28/19 00:47,"682 Main St, Seattle, WA 98101" -285771,Bose SoundSport Headphones,1,99.99,11/15/19 10:48,"63 13th St, Los Angeles, CA 90001" -285772,AAA Batteries (4-pack),1,2.99,11/18/19 00:12,"779 14th St, Seattle, WA 98101" -285773,34in Ultrawide Monitor,1,379.99,11/12/19 16:20,"523 Wilson St, Dallas, TX 75001" -285774,USB-C Charging Cable,1,11.95,11/01/19 09:03,"46 1st St, Austin, TX 73301" -285775,AAA Batteries (4-pack),2,2.99,11/19/19 17:00,"358 Washington St, Atlanta, GA 30301" -285776,Lightning Charging Cable,1,14.95,11/08/19 11:53,"625 Jackson St, Portland, OR 97035" -285777,Apple Airpods Headphones,1,150,11/27/19 16:45,"501 Jackson St, Atlanta, GA 30301" -285778,20in Monitor,1,109.99,11/17/19 11:16,"758 Park St, Boston, MA 02215" -285779,Lightning Charging Cable,1,14.95,11/18/19 19:27,"278 7th St, San Francisco, CA 94016" -285780,AAA Batteries (4-pack),1,2.99,11/19/19 21:53,"344 Maple St, Atlanta, GA 30301" -285781,Wired Headphones,1,11.99,11/25/19 19:52,"737 Cherry St, San Francisco, CA 94016" -285782,Lightning Charging Cable,1,14.95,11/29/19 09:11,"988 Sunset St, Boston, MA 02215" -285783,Macbook Pro Laptop,1,1700,11/21/19 00:33,"504 4th St, Atlanta, GA 30301" -285783,USB-C Charging Cable,1,11.95,11/21/19 00:33,"504 4th St, Atlanta, GA 30301" -285784,Apple Airpods Headphones,1,150,11/01/19 12:17,"692 Church St, New York City, NY 10001" -285785,Bose SoundSport Headphones,1,99.99,11/17/19 20:49,"635 Lincoln St, Los Angeles, CA 90001" -285786,Flatscreen TV,1,300,11/21/19 18:33,"76 6th St, Boston, MA 02215" -285787,Lightning Charging Cable,1,14.95,11/26/19 07:39,"788 Cedar St, Los Angeles, CA 90001" -285788,Vareebadd Phone,1,400,11/10/19 19:37,"150 Park St, Boston, MA 02215" -285789,Lightning Charging Cable,1,14.95,11/29/19 20:24,"747 Adams St, Los Angeles, CA 90001" -285790,USB-C Charging Cable,1,11.95,11/29/19 11:07,"407 Lake St, Portland, OR 97035" -285791,USB-C Charging Cable,1,11.95,11/07/19 19:53,"656 Pine St, Boston, MA 02215" -285792,Apple Airpods Headphones,1,150,11/28/19 00:04,"33 Walnut St, San Francisco, CA 94016" -285793,Lightning Charging Cable,1,14.95,11/21/19 08:22,"849 Johnson St, Dallas, TX 75001" -285794,20in Monitor,1,109.99,11/11/19 10:24,"552 Main St, Los Angeles, CA 90001" -285795,AAA Batteries (4-pack),1,2.99,11/16/19 19:23,"672 Dogwood St, Los Angeles, CA 90001" -285796,Lightning Charging Cable,1,14.95,11/29/19 12:04,"889 Park St, Dallas, TX 75001" -285797,Lightning Charging Cable,1,14.95,11/20/19 08:53,"764 8th St, San Francisco, CA 94016" -285798,AAA Batteries (4-pack),1,2.99,11/09/19 21:04,"430 Main St, Dallas, TX 75001" -285799,20in Monitor,1,109.99,11/24/19 12:46,"471 Ridge St, Boston, MA 02215" -285800,Bose SoundSport Headphones,1,99.99,11/13/19 19:52,"201 2nd St, Seattle, WA 98101" -285801,Bose SoundSport Headphones,1,99.99,11/10/19 14:44,"789 Ridge St, Los Angeles, CA 90001" -285802,AA Batteries (4-pack),1,3.84,11/25/19 13:18,"632 Wilson St, San Francisco, CA 94016" -285803,Google Phone,1,600,11/02/19 18:03,"245 Dogwood St, Atlanta, GA 30301" -285804,AA Batteries (4-pack),1,3.84,11/30/19 09:08,"168 Sunset St, New York City, NY 10001" -285805,AA Batteries (4-pack),1,3.84,11/18/19 08:47,"243 9th St, Boston, MA 02215" -285806,27in FHD Monitor,1,149.99,11/15/19 07:47,"492 Jefferson St, San Francisco, CA 94016" -285807,Lightning Charging Cable,1,14.95,11/15/19 00:24,"979 11th St, Dallas, TX 75001" -285808,Lightning Charging Cable,1,14.95,11/25/19 10:22,"241 Jackson St, Boston, MA 02215" -285809,Wired Headphones,1,11.99,11/28/19 10:18,"560 5th St, Portland, OR 97035" -285810,AAA Batteries (4-pack),1,2.99,11/03/19 20:27,"691 Chestnut St, Dallas, TX 75001" -285811,AAA Batteries (4-pack),1,2.99,11/27/19 20:06,"738 Jefferson St, Los Angeles, CA 90001" -285812,iPhone,1,700,11/21/19 20:28,"754 Main St, New York City, NY 10001" -285813,AA Batteries (4-pack),1,3.84,11/03/19 07:21,"539 Jackson St, Seattle, WA 98101" -285814,34in Ultrawide Monitor,1,379.99,11/16/19 12:31,"941 Forest St, Atlanta, GA 30301" -285815,AA Batteries (4-pack),1,3.84,11/09/19 11:44,"219 Walnut St, Seattle, WA 98101" -285816,34in Ultrawide Monitor,1,379.99,11/06/19 13:20,"139 Lincoln St, Austin, TX 73301" -285817,AA Batteries (4-pack),1,3.84,11/13/19 11:07,"44 4th St, Boston, MA 02215" -285818,27in 4K Gaming Monitor,1,389.99,11/10/19 17:41,"705 West St, San Francisco, CA 94016" -285819,27in FHD Monitor,1,149.99,11/10/19 13:54,"567 5th St, Los Angeles, CA 90001" -285820,Bose SoundSport Headphones,1,99.99,11/21/19 11:20,"769 River St, San Francisco, CA 94016" -285820,USB-C Charging Cable,1,11.95,11/21/19 11:20,"769 River St, San Francisco, CA 94016" -285821,USB-C Charging Cable,1,11.95,11/19/19 19:16,"950 Highland St, Los Angeles, CA 90001" -285822,Google Phone,1,600,11/21/19 12:25,"230 Maple St, New York City, NY 10001" -285822,Bose SoundSport Headphones,1,99.99,11/21/19 12:25,"230 Maple St, New York City, NY 10001" -285823,AA Batteries (4-pack),1,3.84,11/16/19 19:37,"678 Willow St, Los Angeles, CA 90001" -285824,Lightning Charging Cable,1,14.95,11/09/19 01:07,"998 1st St, San Francisco, CA 94016" -285825,USB-C Charging Cable,1,11.95,11/30/19 09:20,"280 12th St, Austin, TX 73301" -285826,AAA Batteries (4-pack),3,2.99,11/19/19 17:56,"626 7th St, Boston, MA 02215" -285827,34in Ultrawide Monitor,1,379.99,11/04/19 10:29,"581 Cherry St, Boston, MA 02215" -285828,AAA Batteries (4-pack),1,2.99,11/10/19 11:55,"185 Dogwood St, San Francisco, CA 94016" -285829,Wired Headphones,1,11.99,11/13/19 10:35,"378 4th St, Los Angeles, CA 90001" -285830,Lightning Charging Cable,2,14.95,11/06/19 20:46,"6 Sunset St, Los Angeles, CA 90001" -285831,AA Batteries (4-pack),1,3.84,11/25/19 11:02,"181 Sunset St, Portland, OR 97035" -285832,USB-C Charging Cable,1,11.95,11/04/19 18:55,"438 6th St, San Francisco, CA 94016" -285833,34in Ultrawide Monitor,1,379.99,11/20/19 14:17,"857 Center St, New York City, NY 10001" -285834,27in 4K Gaming Monitor,1,389.99,11/23/19 00:20,"509 14th St, New York City, NY 10001" -285835,AAA Batteries (4-pack),1,2.99,11/19/19 13:49,"49 Forest St, Dallas, TX 75001" -285836,AAA Batteries (4-pack),1,2.99,11/13/19 16:05,"778 Madison St, Boston, MA 02215" -285837,USB-C Charging Cable,1,11.95,11/19/19 11:28,"194 Sunset St, Portland, OR 97035" -285838,AA Batteries (4-pack),1,3.84,11/19/19 13:33,"371 Johnson St, Dallas, TX 75001" -285839,Wired Headphones,1,11.99,11/07/19 17:15,"847 South St, San Francisco, CA 94016" -285840,iPhone,1,700,11/29/19 15:03,"104 Willow St, Los Angeles, CA 90001" -285840,Lightning Charging Cable,1,14.95,11/29/19 15:03,"104 Willow St, Los Angeles, CA 90001" -285841,Vareebadd Phone,1,400,11/11/19 17:55,"549 Sunset St, San Francisco, CA 94016" -285842,Wired Headphones,3,11.99,11/24/19 11:43,"462 Willow St, New York City, NY 10001" -285843,Bose SoundSport Headphones,1,99.99,11/26/19 12:43,"224 Cedar St, Boston, MA 02215" -285844,AA Batteries (4-pack),1,3.84,11/09/19 23:48,"862 12th St, Atlanta, GA 30301" -285845,Wired Headphones,1,11.99,11/14/19 07:59,"772 5th St, Portland, ME 04101" -285846,USB-C Charging Cable,1,11.95,11/30/19 18:00,"927 Lincoln St, San Francisco, CA 94016" -285847,Apple Airpods Headphones,1,150,11/09/19 11:32,"282 Lakeview St, San Francisco, CA 94016" -285848,34in Ultrawide Monitor,1,379.99,11/11/19 20:48,"898 Walnut St, Austin, TX 73301" -285849,LG Dryer,1,600.0,11/25/19 16:14,"90 Center St, Boston, MA 02215" -285850,USB-C Charging Cable,1,11.95,11/28/19 15:15,"760 Ridge St, Portland, OR 97035" -285851,Lightning Charging Cable,2,14.95,11/12/19 19:51,"291 Lakeview St, Atlanta, GA 30301" -285852,20in Monitor,1,109.99,11/10/19 21:03,"534 Jackson St, San Francisco, CA 94016" -285853,Lightning Charging Cable,1,14.95,11/05/19 01:33,"572 Park St, New York City, NY 10001" -285854,AAA Batteries (4-pack),1,2.99,11/03/19 14:22,"238 Forest St, Portland, OR 97035" -285854,Apple Airpods Headphones,1,150,11/03/19 14:22,"238 Forest St, Portland, OR 97035" -285855,AA Batteries (4-pack),2,3.84,11/24/19 20:09,"806 Jefferson St, Seattle, WA 98101" -285856,Google Phone,1,600,11/17/19 19:17,"367 Jackson St, Atlanta, GA 30301" -285857,AA Batteries (4-pack),2,3.84,11/04/19 08:16,"657 Meadow St, San Francisco, CA 94016" -285858,Flatscreen TV,1,300,11/29/19 18:27,"238 Park St, Los Angeles, CA 90001" -285859,Flatscreen TV,1,300,11/24/19 13:58,"395 Willow St, New York City, NY 10001" -285860,Wired Headphones,1,11.99,11/01/19 21:12,"869 5th St, New York City, NY 10001" -285861,USB-C Charging Cable,1,11.95,11/18/19 19:27,"371 Highland St, San Francisco, CA 94016" -285862,Google Phone,1,600,11/12/19 10:28,"787 Hill St, San Francisco, CA 94016" -285863,USB-C Charging Cable,1,11.95,11/25/19 11:50,"793 South St, Austin, TX 73301" -285864,Apple Airpods Headphones,1,150,11/05/19 06:04,"424 Chestnut St, San Francisco, CA 94016" -285865,USB-C Charging Cable,1,11.95,11/04/19 16:24,"990 Chestnut St, San Francisco, CA 94016" -285866,Lightning Charging Cable,1,14.95,11/27/19 08:29,"206 River St, Atlanta, GA 30301" -285867,27in 4K Gaming Monitor,1,389.99,11/14/19 22:27,"135 Ridge St, Seattle, WA 98101" -285868,ThinkPad Laptop,1,999.99,11/27/19 17:32,"907 8th St, Atlanta, GA 30301" -285869,27in 4K Gaming Monitor,1,389.99,11/07/19 19:52,"275 South St, Austin, TX 73301" -285870,AA Batteries (4-pack),1,3.84,11/18/19 08:54,"84 Adams St, Los Angeles, CA 90001" -285871,Wired Headphones,1,11.99,11/08/19 08:48,"709 Hill St, Los Angeles, CA 90001" -285872,Wired Headphones,1,11.99,11/11/19 12:11,"143 Hill St, San Francisco, CA 94016" -285873,Apple Airpods Headphones,1,150,11/27/19 09:57,"425 South St, San Francisco, CA 94016" -285874,Apple Airpods Headphones,1,150,11/01/19 22:38,"615 Church St, Boston, MA 02215" -285875,USB-C Charging Cable,1,11.95,11/26/19 22:10,"893 Center St, Atlanta, GA 30301" -285875,USB-C Charging Cable,1,11.95,11/26/19 22:10,"893 Center St, Atlanta, GA 30301" -285876,AAA Batteries (4-pack),1,2.99,11/24/19 10:49,"787 10th St, Dallas, TX 75001" -285877,iPhone,1,700,11/21/19 08:41,"349 1st St, Los Angeles, CA 90001" -285878,USB-C Charging Cable,1,11.95,11/08/19 21:16,"737 13th St, Austin, TX 73301" -285879,USB-C Charging Cable,1,11.95,11/20/19 15:54,"745 River St, Portland, ME 04101" -285880,27in 4K Gaming Monitor,1,389.99,11/09/19 11:24,"80 Willow St, San Francisco, CA 94016" -285881,iPhone,1,700,11/17/19 21:09,"99 Spruce St, Seattle, WA 98101" -285881,Lightning Charging Cable,1,14.95,11/17/19 21:09,"99 Spruce St, Seattle, WA 98101" -285882,27in 4K Gaming Monitor,1,389.99,11/08/19 17:26,"247 14th St, San Francisco, CA 94016" -285883,iPhone,1,700,11/15/19 17:17,"616 Lake St, Dallas, TX 75001" -285884,iPhone,1,700,11/02/19 11:39,"438 2nd St, Los Angeles, CA 90001" -285885,Flatscreen TV,1,300,11/02/19 19:25,"199 12th St, San Francisco, CA 94016" -285886,Lightning Charging Cable,1,14.95,11/15/19 16:06,"453 Maple St, Boston, MA 02215" -285887,ThinkPad Laptop,1,999.99,11/07/19 21:42,"480 Hill St, San Francisco, CA 94016" -285888,ThinkPad Laptop,1,999.99,11/12/19 14:54,"357 2nd St, Seattle, WA 98101" -285889,AA Batteries (4-pack),2,3.84,11/12/19 09:35,"256 Highland St, New York City, NY 10001" -285890,USB-C Charging Cable,1,11.95,11/12/19 22:07,"137 Highland St, San Francisco, CA 94016" -285891,27in 4K Gaming Monitor,1,389.99,11/07/19 18:21,"940 Hill St, Boston, MA 02215" -285892,20in Monitor,1,109.99,11/09/19 23:04,"105 14th St, San Francisco, CA 94016" -285893,Wired Headphones,1,11.99,11/25/19 03:45,"11 13th St, Seattle, WA 98101" -285894,Bose SoundSport Headphones,1,99.99,11/17/19 21:13,"305 4th St, Austin, TX 73301" -285895,Wired Headphones,1,11.99,11/23/19 18:25,"322 Hickory St, San Francisco, CA 94016" -285896,Apple Airpods Headphones,1,150,11/18/19 14:39,"240 Highland St, San Francisco, CA 94016" -285897,Lightning Charging Cable,1,14.95,11/07/19 13:41,"210 8th St, Atlanta, GA 30301" -285898,34in Ultrawide Monitor,1,379.99,11/16/19 18:49,"737 Jackson St, Los Angeles, CA 90001" -285899,Wired Headphones,1,11.99,11/21/19 23:05,"917 7th St, San Francisco, CA 94016" -285900,Lightning Charging Cable,1,14.95,11/28/19 10:05,"773 11th St, San Francisco, CA 94016" -285901,Wired Headphones,1,11.99,11/18/19 19:44,"620 Cherry St, San Francisco, CA 94016" -285902,Macbook Pro Laptop,1,1700,11/01/19 18:06,"931 Johnson St, Atlanta, GA 30301" -285903,AA Batteries (4-pack),2,3.84,11/11/19 19:25,"27 Church St, Boston, MA 02215" -285904,Lightning Charging Cable,1,14.95,11/11/19 17:24,"308 Highland St, New York City, NY 10001" -285905,27in FHD Monitor,1,149.99,11/29/19 12:25,"148 Cedar St, San Francisco, CA 94016" -285906,Lightning Charging Cable,1,14.95,11/09/19 20:43,"164 Walnut St, Boston, MA 02215" -285907,Lightning Charging Cable,2,14.95,11/14/19 16:40,"274 13th St, Los Angeles, CA 90001" -285908,Apple Airpods Headphones,1,150,11/29/19 00:28,"521 Maple St, New York City, NY 10001" -285909,iPhone,1,700,11/08/19 15:17,"277 Sunset St, Portland, ME 04101" -285910,Wired Headphones,1,11.99,11/04/19 14:06,"158 River St, San Francisco, CA 94016" -285911,AAA Batteries (4-pack),1,2.99,11/02/19 08:15,"896 Lake St, New York City, NY 10001" -285912,Apple Airpods Headphones,1,150,11/23/19 17:22,"330 Church St, Los Angeles, CA 90001" -285913,Wired Headphones,1,11.99,11/22/19 17:04,"344 11th St, New York City, NY 10001" -285914,AAA Batteries (4-pack),1,2.99,11/17/19 18:53,"252 14th St, New York City, NY 10001" -285915,27in FHD Monitor,1,149.99,11/24/19 10:19,"318 River St, Dallas, TX 75001" -285916,Lightning Charging Cable,1,14.95,11/22/19 16:43,"68 Wilson St, Boston, MA 02215" -285917,Apple Airpods Headphones,1,150,11/06/19 23:03,"449 Lake St, Portland, OR 97035" -285918,AAA Batteries (4-pack),1,2.99,11/12/19 13:12,"301 14th St, New York City, NY 10001" -285919,27in 4K Gaming Monitor,1,389.99,11/12/19 11:02,"998 9th St, Dallas, TX 75001" -285920,Google Phone,1,600,11/13/19 15:21,"663 6th St, Seattle, WA 98101" -285921,ThinkPad Laptop,1,999.99,11/13/19 12:12,"202 Spruce St, San Francisco, CA 94016" -285922,USB-C Charging Cable,1,11.95,11/03/19 13:29,"286 2nd St, Atlanta, GA 30301" -285923,AA Batteries (4-pack),1,3.84,11/26/19 09:56,"979 Dogwood St, San Francisco, CA 94016" -285924,ThinkPad Laptop,1,999.99,11/17/19 22:22,"840 Madison St, Boston, MA 02215" -285925,ThinkPad Laptop,1,999.99,11/29/19 10:35,"870 11th St, New York City, NY 10001" -285926,Lightning Charging Cable,1,14.95,11/01/19 18:28,"687 4th St, New York City, NY 10001" -285927,Wired Headphones,1,11.99,11/28/19 15:31,"279 10th St, Austin, TX 73301" -285927,Wired Headphones,1,11.99,11/28/19 15:31,"279 10th St, Austin, TX 73301" -285928,AA Batteries (4-pack),2,3.84,11/14/19 00:10,"653 Meadow St, Los Angeles, CA 90001" -285928,Lightning Charging Cable,2,14.95,11/14/19 00:10,"653 Meadow St, Los Angeles, CA 90001" -285929,27in FHD Monitor,1,149.99,11/19/19 07:02,"217 Johnson St, Atlanta, GA 30301" -285930,Flatscreen TV,1,300,11/24/19 13:58,"89 Meadow St, Dallas, TX 75001" -285931,Lightning Charging Cable,1,14.95,11/06/19 17:20,"611 Johnson St, New York City, NY 10001" -285932,Flatscreen TV,1,300,11/01/19 19:27,"431 10th St, Atlanta, GA 30301" -285933,AAA Batteries (4-pack),1,2.99,11/23/19 13:33,"767 Lincoln St, Boston, MA 02215" -285934,Wired Headphones,1,11.99,11/04/19 13:50,"987 Ridge St, Los Angeles, CA 90001" -285935,27in FHD Monitor,1,149.99,11/13/19 09:05,"832 North St, Seattle, WA 98101" -285936,LG Dryer,1,600.0,11/27/19 15:43,"178 Main St, San Francisco, CA 94016" -285937,Wired Headphones,1,11.99,11/08/19 15:19,"210 Maple St, New York City, NY 10001" -285938,Apple Airpods Headphones,1,150,11/08/19 18:20,"268 Church St, Atlanta, GA 30301" -285939,Google Phone,1,600,11/04/19 13:31,"161 13th St, Los Angeles, CA 90001" -285940,iPhone,1,700,11/12/19 08:16,"88 Sunset St, Seattle, WA 98101" -285941,Apple Airpods Headphones,1,150,11/03/19 19:29,"135 Elm St, San Francisco, CA 94016" -285942,USB-C Charging Cable,2,11.95,11/30/19 13:05,"530 Meadow St, New York City, NY 10001" -285943,Wired Headphones,1,11.99,11/02/19 22:00,"1 12th St, San Francisco, CA 94016" -285944,USB-C Charging Cable,1,11.95,11/19/19 15:18,"943 Willow St, San Francisco, CA 94016" -285945,iPhone,1,700,11/08/19 20:25,"800 Maple St, San Francisco, CA 94016" -285946,USB-C Charging Cable,1,11.95,11/28/19 13:48,"368 Jefferson St, San Francisco, CA 94016" -285947,Vareebadd Phone,1,400,11/19/19 22:52,"28 Forest St, San Francisco, CA 94016" -285948,Bose SoundSport Headphones,1,99.99,11/10/19 23:20,"306 11th St, Dallas, TX 75001" -285949,Bose SoundSport Headphones,1,99.99,11/22/19 19:07,"660 Walnut St, Los Angeles, CA 90001" -285950,USB-C Charging Cable,1,11.95,11/15/19 14:34,"496 Johnson St, Austin, TX 73301" -285951,AAA Batteries (4-pack),1,2.99,11/15/19 14:18,"355 14th St, Seattle, WA 98101" -285952,20in Monitor,1,109.99,11/25/19 14:28,"402 Johnson St, San Francisco, CA 94016" -285953,Wired Headphones,1,11.99,11/23/19 22:09,"535 Johnson St, Dallas, TX 75001" -285954,Macbook Pro Laptop,1,1700,11/17/19 18:13,"83 Maple St, New York City, NY 10001" -285955,27in 4K Gaming Monitor,1,389.99,11/16/19 13:29,"962 Church St, Boston, MA 02215" -285956,AA Batteries (4-pack),1,3.84,11/09/19 15:42,"722 2nd St, Los Angeles, CA 90001" -285957,Wired Headphones,1,11.99,11/18/19 19:10,"29 9th St, Los Angeles, CA 90001" -285958,Bose SoundSport Headphones,1,99.99,11/28/19 20:56,"357 Meadow St, San Francisco, CA 94016" -285959,Wired Headphones,1,11.99,11/04/19 18:56,"299 Cedar St, Portland, OR 97035" -285960,27in 4K Gaming Monitor,1,389.99,11/10/19 18:44,"127 Jackson St, Los Angeles, CA 90001" -285961,27in FHD Monitor,1,149.99,11/11/19 12:44,"583 Park St, San Francisco, CA 94016" -285962,AAA Batteries (4-pack),1,2.99,11/17/19 07:16,"531 Center St, San Francisco, CA 94016" -285963,27in FHD Monitor,1,149.99,11/10/19 10:34,"510 Highland St, New York City, NY 10001" -285964,Apple Airpods Headphones,1,150,11/07/19 09:57,"607 Madison St, Seattle, WA 98101" -285965,Wired Headphones,2,11.99,11/27/19 19:48,"902 Meadow St, New York City, NY 10001" -285966,Lightning Charging Cable,2,14.95,11/15/19 16:00,"18 10th St, San Francisco, CA 94016" -285967,AA Batteries (4-pack),3,3.84,11/23/19 11:32,"921 Forest St, Austin, TX 73301" -285968,AA Batteries (4-pack),2,3.84,11/08/19 15:41,"742 Cherry St, Portland, OR 97035" -285969,Apple Airpods Headphones,1,150,11/29/19 18:15,"489 Cherry St, Los Angeles, CA 90001" -285970,AAA Batteries (4-pack),3,2.99,11/22/19 12:40,"902 River St, Los Angeles, CA 90001" -285971,USB-C Charging Cable,1,11.95,11/05/19 13:04,"497 Cherry St, New York City, NY 10001" -285972,Apple Airpods Headphones,1,150,11/21/19 10:34,"944 Lake St, New York City, NY 10001" -285973,AAA Batteries (4-pack),1,2.99,11/03/19 19:43,"373 Lakeview St, Portland, OR 97035" -285974,USB-C Charging Cable,1,11.95,11/08/19 18:52,"667 13th St, Seattle, WA 98101" -285975,Bose SoundSport Headphones,1,99.99,11/07/19 17:11,"155 Lake St, Seattle, WA 98101" -285976,USB-C Charging Cable,1,11.95,11/27/19 09:10,"890 Park St, New York City, NY 10001" -285977,AA Batteries (4-pack),1,3.84,11/07/19 14:05,"252 Walnut St, Los Angeles, CA 90001" -285978,Bose SoundSport Headphones,1,99.99,11/16/19 09:09,"226 Center St, Dallas, TX 75001" -285979,Apple Airpods Headphones,1,150,11/25/19 12:41,"426 Spruce St, Los Angeles, CA 90001" -285980,AA Batteries (4-pack),1,3.84,11/29/19 14:32,"841 Willow St, New York City, NY 10001" -285981,Bose SoundSport Headphones,1,99.99,11/13/19 12:05,"608 Madison St, Los Angeles, CA 90001" -285982,AA Batteries (4-pack),1,3.84,11/13/19 11:26,"258 Sunset St, Atlanta, GA 30301" -285983,AAA Batteries (4-pack),1,2.99,11/04/19 14:05,"419 13th St, Boston, MA 02215" -285984,Flatscreen TV,1,300,11/12/19 19:42,"219 4th St, San Francisco, CA 94016" -285985,AAA Batteries (4-pack),1,2.99,11/08/19 08:29,"268 14th St, Boston, MA 02215" -285986,27in FHD Monitor,1,149.99,11/04/19 15:18,"735 Main St, Seattle, WA 98101" -285987,Apple Airpods Headphones,1,150,11/21/19 00:29,"604 North St, San Francisco, CA 94016" -285988,Bose SoundSport Headphones,1,99.99,11/04/19 18:11,"1 Highland St, San Francisco, CA 94016" -285989,AAA Batteries (4-pack),1,2.99,11/25/19 21:46,"350 Spruce St, Los Angeles, CA 90001" -285990,AA Batteries (4-pack),1,3.84,11/17/19 07:23,"441 Highland St, Dallas, TX 75001" -285991,AA Batteries (4-pack),1,3.84,11/23/19 17:37,"651 Highland St, Boston, MA 02215" -285992,Wired Headphones,1,11.99,11/01/19 13:35,"719 Johnson St, Boston, MA 02215" -285993,USB-C Charging Cable,1,11.95,11/09/19 12:35,"668 2nd St, Atlanta, GA 30301" -285994,Macbook Pro Laptop,1,1700,11/29/19 22:09,"689 Hickory St, Atlanta, GA 30301" -285995,USB-C Charging Cable,1,11.95,11/23/19 02:28,"875 Maple St, Los Angeles, CA 90001" -285996,AAA Batteries (4-pack),1,2.99,11/04/19 15:15,"19 8th St, San Francisco, CA 94016" -285997,27in FHD Monitor,1,149.99,11/07/19 22:37,"481 7th St, Dallas, TX 75001" -285998,AAA Batteries (4-pack),1,2.99,11/29/19 19:46,"645 Church St, New York City, NY 10001" -285999,Lightning Charging Cable,1,14.95,11/17/19 22:37,"676 Cedar St, Atlanta, GA 30301" -286000,AA Batteries (4-pack),1,3.84,11/29/19 08:57,"848 9th St, San Francisco, CA 94016" -286001,AAA Batteries (4-pack),1,2.99,11/28/19 21:38,"190 12th St, Atlanta, GA 30301" -286002,USB-C Charging Cable,1,11.95,11/30/19 07:41,"584 4th St, Dallas, TX 75001" -286003,AA Batteries (4-pack),1,3.84,11/09/19 05:44,"355 Maple St, Boston, MA 02215" -286004,USB-C Charging Cable,1,11.95,11/02/19 19:07,"988 Park St, Boston, MA 02215" -286005,USB-C Charging Cable,1,11.95,11/30/19 12:39,"817 Walnut St, Boston, MA 02215" -286006,Google Phone,1,600,11/21/19 06:40,"692 5th St, Dallas, TX 75001" -286007,Apple Airpods Headphones,1,150,11/11/19 09:32,"463 10th St, Boston, MA 02215" -286008,Apple Airpods Headphones,1,150,11/27/19 09:14,"935 River St, San Francisco, CA 94016" -286009,Lightning Charging Cable,1,14.95,11/13/19 13:34,"956 Lakeview St, San Francisco, CA 94016" -286010,AAA Batteries (4-pack),1,2.99,11/27/19 19:55,"786 14th St, San Francisco, CA 94016" -286011,iPhone,1,700,11/16/19 10:43,"507 12th St, San Francisco, CA 94016" -286012,Bose SoundSport Headphones,1,99.99,11/29/19 22:45,"285 North St, New York City, NY 10001" -286013,27in 4K Gaming Monitor,1,389.99,11/28/19 22:50,"738 Elm St, Los Angeles, CA 90001" -286014,27in 4K Gaming Monitor,1,389.99,11/28/19 16:30,"509 Park St, Seattle, WA 98101" -286015,Bose SoundSport Headphones,1,99.99,11/19/19 10:23,"135 Chestnut St, San Francisco, CA 94016" -286016,Wired Headphones,1,11.99,11/19/19 13:39,"140 Spruce St, San Francisco, CA 94016" -286017,ThinkPad Laptop,1,999.99,11/16/19 19:26,"697 Spruce St, New York City, NY 10001" -286018,Flatscreen TV,1,300,11/22/19 15:43,"951 Elm St, Austin, TX 73301" -286019,27in FHD Monitor,1,149.99,11/20/19 13:12,"620 Madison St, Los Angeles, CA 90001" -286020,Bose SoundSport Headphones,1,99.99,11/11/19 17:22,"832 Wilson St, Seattle, WA 98101" -286021,27in 4K Gaming Monitor,1,389.99,11/04/19 17:29,"295 Wilson St, Los Angeles, CA 90001" -286022,Apple Airpods Headphones,1,150,11/13/19 15:45,"531 1st St, Los Angeles, CA 90001" -286023,Lightning Charging Cable,1,14.95,11/17/19 11:46,"811 11th St, Los Angeles, CA 90001" -286024,AAA Batteries (4-pack),1,2.99,11/25/19 21:05,"918 4th St, San Francisco, CA 94016" -286025,Macbook Pro Laptop,1,1700,11/15/19 08:49,"998 Cherry St, San Francisco, CA 94016" -286026,USB-C Charging Cable,1,11.95,11/27/19 02:25,"910 Spruce St, San Francisco, CA 94016" -286027,AAA Batteries (4-pack),1,2.99,11/21/19 13:33,"513 Dogwood St, San Francisco, CA 94016" -286028,Lightning Charging Cable,1,14.95,11/13/19 11:16,"680 2nd St, San Francisco, CA 94016" -286029,34in Ultrawide Monitor,1,379.99,11/10/19 20:11,"613 Pine St, Los Angeles, CA 90001" -286030,Apple Airpods Headphones,1,150,11/13/19 18:55,"787 Cherry St, Los Angeles, CA 90001" -286031,LG Washing Machine,1,600.0,11/27/19 12:30,"691 Lakeview St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -286032,ThinkPad Laptop,1,999.99,11/17/19 11:44,"413 8th St, Los Angeles, CA 90001" -286033,Apple Airpods Headphones,1,150,11/03/19 19:35,"876 Lakeview St, New York City, NY 10001" -286034,Lightning Charging Cable,1,14.95,11/01/19 18:00,"529 North St, Portland, OR 97035" -286035,AAA Batteries (4-pack),1,2.99,11/11/19 17:05,"896 Adams St, Dallas, TX 75001" -286036,27in FHD Monitor,1,149.99,11/28/19 11:19,"539 Lincoln St, Los Angeles, CA 90001" -286037,Flatscreen TV,1,300,11/24/19 12:10,"822 Lake St, San Francisco, CA 94016" -286038,Google Phone,1,600,11/12/19 19:33,"99 Adams St, Seattle, WA 98101" -286039,AAA Batteries (4-pack),2,2.99,11/17/19 22:35,"578 Lakeview St, Portland, OR 97035" -286040,USB-C Charging Cable,2,11.95,11/02/19 17:40,"246 North St, San Francisco, CA 94016" -286041,Wired Headphones,2,11.99,11/27/19 17:38,"919 Meadow St, Los Angeles, CA 90001" -286042,27in FHD Monitor,1,149.99,11/11/19 09:44,"744 North St, Portland, OR 97035" -286043,USB-C Charging Cable,1,11.95,11/10/19 15:19,"880 5th St, Boston, MA 02215" -286044,Bose SoundSport Headphones,1,99.99,11/19/19 18:53,"825 Church St, New York City, NY 10001" -286045,Wired Headphones,2,11.99,11/16/19 09:33,"935 West St, Boston, MA 02215" -286046,Lightning Charging Cable,1,14.95,11/30/19 19:37,"285 Walnut St, New York City, NY 10001" -286047,Macbook Pro Laptop,1,1700,11/10/19 10:58,"147 10th St, San Francisco, CA 94016" -286048,iPhone,1,700,11/03/19 22:29,"361 North St, Dallas, TX 75001" -286049,AAA Batteries (4-pack),1,2.99,11/06/19 14:24,"748 7th St, San Francisco, CA 94016" -286050,Lightning Charging Cable,1,14.95,11/29/19 07:52,"968 Lakeview St, Boston, MA 02215" -286051,Wired Headphones,1,11.99,11/07/19 10:25,"555 12th St, Los Angeles, CA 90001" -286052,Macbook Pro Laptop,1,1700,11/01/19 07:32,"432 Maple St, New York City, NY 10001" -286053,Lightning Charging Cable,2,14.95,11/03/19 20:14,"209 Willow St, Boston, MA 02215" -286054,Bose SoundSport Headphones,1,99.99,11/20/19 07:23,"422 Jefferson St, San Francisco, CA 94016" -286055,Apple Airpods Headphones,1,150,11/28/19 11:26,"2 River St, Seattle, WA 98101" -286056,AAA Batteries (4-pack),1,2.99,11/22/19 12:39,"293 Main St, New York City, NY 10001" -286057,AA Batteries (4-pack),1,3.84,11/03/19 10:46,"832 Jefferson St, Portland, OR 97035" -286058,Bose SoundSport Headphones,1,99.99,11/13/19 02:35,"395 Adams St, Los Angeles, CA 90001" -286059,Wired Headphones,1,11.99,11/18/19 18:02,"260 Highland St, New York City, NY 10001" -286060,Macbook Pro Laptop,1,1700,11/10/19 13:45,"323 Highland St, Atlanta, GA 30301" -286061,AAA Batteries (4-pack),1,2.99,11/25/19 12:39,"756 Hickory St, Boston, MA 02215" -286062,Apple Airpods Headphones,1,150,11/01/19 14:23,"155 Forest St, San Francisco, CA 94016" -286063,Google Phone,1,600,11/27/19 14:58,"759 Main St, San Francisco, CA 94016" -286064,Bose SoundSport Headphones,1,99.99,11/30/19 17:25,"477 Jefferson St, Portland, ME 04101" -286065,Wired Headphones,1,11.99,11/12/19 14:14,"223 Johnson St, San Francisco, CA 94016" -286066,Bose SoundSport Headphones,1,99.99,11/27/19 09:26,"900 Jefferson St, Seattle, WA 98101" -286067,Bose SoundSport Headphones,1,99.99,11/05/19 19:42,"921 Jefferson St, Boston, MA 02215" -286068,USB-C Charging Cable,1,11.95,11/17/19 13:30,"398 Center St, Boston, MA 02215" -286069,Bose SoundSport Headphones,1,99.99,11/08/19 17:39,"354 Walnut St, Dallas, TX 75001" -286070,USB-C Charging Cable,1,11.95,11/23/19 09:07,"132 9th St, Los Angeles, CA 90001" -286071,Wired Headphones,1,11.99,11/24/19 14:08,"763 Lake St, New York City, NY 10001" -286072,AA Batteries (4-pack),1,3.84,11/16/19 13:20,"344 11th St, San Francisco, CA 94016" -286073,27in 4K Gaming Monitor,1,389.99,11/23/19 21:33,"818 Walnut St, San Francisco, CA 94016" -286074,Wired Headphones,1,11.99,11/19/19 14:43,"687 8th St, San Francisco, CA 94016" -286075,AAA Batteries (4-pack),1,2.99,11/27/19 19:40,"265 Jackson St, New York City, NY 10001" -286076,Google Phone,1,600,11/02/19 19:17,"350 4th St, Atlanta, GA 30301" -286076,Wired Headphones,1,11.99,11/02/19 19:17,"350 4th St, Atlanta, GA 30301" -286077,Lightning Charging Cable,1,14.95,11/21/19 18:05,"729 North St, Seattle, WA 98101" -286078,27in FHD Monitor,1,149.99,11/23/19 19:22,"309 13th St, Boston, MA 02215" -286079,iPhone,1,700,11/07/19 15:50,"951 Walnut St, New York City, NY 10001" -286079,Lightning Charging Cable,1,14.95,11/07/19 15:50,"951 Walnut St, New York City, NY 10001" -286080,AA Batteries (4-pack),1,3.84,11/10/19 09:28,"681 Willow St, Atlanta, GA 30301" -286081,Lightning Charging Cable,1,14.95,11/12/19 14:22,"845 Ridge St, Dallas, TX 75001" -286082,27in FHD Monitor,1,149.99,11/25/19 19:47,"653 Center St, Los Angeles, CA 90001" -286083,AA Batteries (4-pack),2,3.84,11/05/19 19:36,"334 Adams St, Los Angeles, CA 90001" -286084,20in Monitor,1,109.99,11/27/19 11:17,"841 13th St, Los Angeles, CA 90001" -286085,ThinkPad Laptop,1,999.99,11/11/19 18:19,"667 2nd St, Los Angeles, CA 90001" -286086,34in Ultrawide Monitor,1,379.99,11/05/19 16:29,"609 Jefferson St, Dallas, TX 75001" -286087,USB-C Charging Cable,1,11.95,11/11/19 18:36,"191 Johnson St, San Francisco, CA 94016" -286088,Apple Airpods Headphones,1,150,11/18/19 14:03,"304 Adams St, San Francisco, CA 94016" -286089,AAA Batteries (4-pack),1,2.99,11/01/19 16:52,"215 12th St, Dallas, TX 75001" -286090,Google Phone,1,600,11/29/19 17:19,"497 South St, Austin, TX 73301" -286091,27in FHD Monitor,1,149.99,11/01/19 07:32,"677 North St, Los Angeles, CA 90001" -286092,20in Monitor,1,109.99,11/06/19 12:30,"49 Meadow St, Boston, MA 02215" -286093,AA Batteries (4-pack),1,3.84,11/16/19 20:12,"763 14th St, Los Angeles, CA 90001" -286094,USB-C Charging Cable,2,11.95,11/02/19 09:33,"22 Cherry St, Dallas, TX 75001" -286095,USB-C Charging Cable,1,11.95,11/23/19 07:36,"141 4th St, New York City, NY 10001" -286096,AA Batteries (4-pack),1,3.84,11/28/19 15:46,"369 10th St, Boston, MA 02215" -,,,,, -286097,AAA Batteries (4-pack),1,2.99,11/10/19 16:08,"439 Adams St, San Francisco, CA 94016" -286098,USB-C Charging Cable,1,11.95,11/08/19 19:40,"857 Highland St, Portland, OR 97035" -286099,AAA Batteries (4-pack),1,2.99,11/05/19 09:53,"257 Elm St, Seattle, WA 98101" -286100,ThinkPad Laptop,1,999.99,11/15/19 16:07,"387 Hickory St, San Francisco, CA 94016" -286101,27in 4K Gaming Monitor,1,389.99,11/04/19 20:50,"309 5th St, Atlanta, GA 30301" -286102,27in 4K Gaming Monitor,1,389.99,11/03/19 21:01,"300 Park St, Austin, TX 73301" -286103,AA Batteries (4-pack),2,3.84,11/04/19 20:03,"271 Hill St, San Francisco, CA 94016" -286104,AAA Batteries (4-pack),1,2.99,11/14/19 18:55,"766 Cherry St, San Francisco, CA 94016" -286105,Wired Headphones,1,11.99,11/19/19 21:32,"757 Meadow St, San Francisco, CA 94016" -286106,AAA Batteries (4-pack),4,2.99,11/18/19 14:34,"152 Park St, New York City, NY 10001" -286107,AA Batteries (4-pack),2,3.84,11/15/19 19:54,"169 South St, Atlanta, GA 30301" -286108,Lightning Charging Cable,1,14.95,11/11/19 22:46,"877 Main St, San Francisco, CA 94016" -286109,Lightning Charging Cable,1,14.95,11/06/19 23:14,"262 Center St, Los Angeles, CA 90001" -286110,Macbook Pro Laptop,1,1700,11/15/19 11:15,"91 Lake St, San Francisco, CA 94016" -,,,,, -286111,27in FHD Monitor,1,149.99,11/19/19 20:04,"97 1st St, Boston, MA 02215" -286112,Google Phone,1,600,11/14/19 00:06,"263 Johnson St, New York City, NY 10001" -286112,Wired Headphones,1,11.99,11/14/19 00:06,"263 Johnson St, New York City, NY 10001" -286113,AAA Batteries (4-pack),4,2.99,11/02/19 08:46,"572 North St, San Francisco, CA 94016" -286114,AA Batteries (4-pack),1,3.84,11/30/19 11:24,"340 Maple St, Portland, ME 04101" -286115,Lightning Charging Cable,1,14.95,11/16/19 21:41,"559 Willow St, San Francisco, CA 94016" -286116,Lightning Charging Cable,2,14.95,11/20/19 20:16,"866 7th St, Boston, MA 02215" -286117,Lightning Charging Cable,1,14.95,11/29/19 15:14,"938 1st St, Seattle, WA 98101" -286118,27in FHD Monitor,1,149.99,11/15/19 07:41,"861 Jefferson St, San Francisco, CA 94016" -286119,27in FHD Monitor,1,149.99,11/17/19 08:59,"105 Ridge St, Los Angeles, CA 90001" -286120,AA Batteries (4-pack),1,3.84,11/12/19 10:13,"182 10th St, San Francisco, CA 94016" -286121,20in Monitor,1,109.99,11/25/19 11:59,"242 13th St, New York City, NY 10001" -286122,34in Ultrawide Monitor,1,379.99,11/06/19 14:10,"638 7th St, Los Angeles, CA 90001" -286123,Wired Headphones,1,11.99,11/18/19 02:32,"798 Church St, San Francisco, CA 94016" -286124,ThinkPad Laptop,1,999.99,11/11/19 17:04,"816 Sunset St, Atlanta, GA 30301" -286125,USB-C Charging Cable,1,11.95,11/30/19 08:32,"713 Cedar St, Los Angeles, CA 90001" -286126,Lightning Charging Cable,1,14.95,11/21/19 17:28,"107 Adams St, San Francisco, CA 94016" -286127,Wired Headphones,1,11.99,11/17/19 09:48,"623 8th St, Los Angeles, CA 90001" -286128,Flatscreen TV,1,300,11/04/19 11:49,"62 Jackson St, Los Angeles, CA 90001" -286129,LG Washing Machine,1,600.0,11/19/19 19:31,"781 5th St, Los Angeles, CA 90001" -286130,27in 4K Gaming Monitor,1,389.99,11/08/19 19:51,"704 Walnut St, Austin, TX 73301" -286131,Apple Airpods Headphones,1,150,11/02/19 16:29,"188 9th St, New York City, NY 10001" -286132,27in FHD Monitor,1,149.99,11/19/19 13:44,"972 Washington St, Portland, OR 97035" -,,,,, -286133,AAA Batteries (4-pack),1,2.99,11/21/19 21:56,"78 Forest St, Atlanta, GA 30301" -286134,USB-C Charging Cable,1,11.95,11/28/19 09:30,"40 12th St, San Francisco, CA 94016" -286135,Wired Headphones,2,11.99,11/08/19 20:30,"18 Cherry St, Los Angeles, CA 90001" -286135,USB-C Charging Cable,1,11.95,11/08/19 20:30,"18 Cherry St, Los Angeles, CA 90001" -286136,USB-C Charging Cable,1,11.95,11/12/19 22:27,"816 Lake St, Atlanta, GA 30301" -286137,34in Ultrawide Monitor,1,379.99,11/19/19 09:15,"262 10th St, San Francisco, CA 94016" -286138,Lightning Charging Cable,1,14.95,11/15/19 18:12,"526 13th St, San Francisco, CA 94016" -286139,AAA Batteries (4-pack),2,2.99,11/20/19 14:41,"278 Maple St, Los Angeles, CA 90001" -286140,Wired Headphones,1,11.99,11/24/19 14:37,"252 Spruce St, Dallas, TX 75001" -286141,27in FHD Monitor,1,149.99,11/16/19 19:53,"787 10th St, Austin, TX 73301" -286142,AA Batteries (4-pack),2,3.84,11/02/19 11:10,"505 2nd St, Portland, OR 97035" -286143,iPhone,1,700,11/30/19 22:46,"453 South St, Portland, OR 97035" -286143,Lightning Charging Cable,1,14.95,11/30/19 22:46,"453 South St, Portland, OR 97035" -286144,27in FHD Monitor,1,149.99,11/19/19 20:59,"377 Jefferson St, New York City, NY 10001" -286145,Macbook Pro Laptop,1,1700,11/07/19 17:18,"80 Wilson St, Los Angeles, CA 90001" -286146,Apple Airpods Headphones,1,150,11/13/19 18:12,"595 Ridge St, Seattle, WA 98101" -286147,Apple Airpods Headphones,1,150,11/05/19 18:59,"568 5th St, Austin, TX 73301" -286148,ThinkPad Laptop,1,999.99,11/10/19 07:09,"710 Walnut St, Boston, MA 02215" -286149,USB-C Charging Cable,1,11.95,11/05/19 20:10,"457 Meadow St, San Francisco, CA 94016" -286150,iPhone,1,700,11/25/19 18:18,"66 13th St, Boston, MA 02215" -286151,Apple Airpods Headphones,1,150,11/29/19 10:38,"903 Cherry St, Boston, MA 02215" -286152,Wired Headphones,1,11.99,11/17/19 19:40,"800 Cedar St, San Francisco, CA 94016" -286153,27in 4K Gaming Monitor,1,389.99,11/11/19 12:35,"143 Center St, Dallas, TX 75001" -286154,27in FHD Monitor,1,149.99,11/06/19 14:21,"834 Hickory St, Boston, MA 02215" -286155,USB-C Charging Cable,1,11.95,11/11/19 17:14,"459 Madison St, San Francisco, CA 94016" -286156,ThinkPad Laptop,1,999.99,11/06/19 11:16,"481 Pine St, Boston, MA 02215" -286157,Bose SoundSport Headphones,1,99.99,11/30/19 22:27,"386 Dogwood St, San Francisco, CA 94016" -286158,Lightning Charging Cable,1,14.95,11/28/19 16:09,"686 Maple St, Boston, MA 02215" -286159,27in 4K Gaming Monitor,1,389.99,11/15/19 12:10,"605 Ridge St, Los Angeles, CA 90001" -286160,USB-C Charging Cable,1,11.95,11/13/19 17:44,"700 Adams St, New York City, NY 10001" -286161,USB-C Charging Cable,1,11.95,11/23/19 18:28,"704 Center St, San Francisco, CA 94016" -286162,Flatscreen TV,1,300,11/16/19 18:29,"436 Church St, San Francisco, CA 94016" -286163,iPhone,1,700,11/09/19 01:08,"986 Elm St, Austin, TX 73301" -286164,Macbook Pro Laptop,1,1700,11/02/19 15:23,"60 1st St, San Francisco, CA 94016" -286165,27in 4K Gaming Monitor,1,389.99,11/19/19 11:01,"945 14th St, Dallas, TX 75001" -286166,Bose SoundSport Headphones,2,99.99,11/16/19 15:55,"617 Adams St, Boston, MA 02215" -286167,USB-C Charging Cable,1,11.95,11/14/19 08:35,"354 Washington St, San Francisco, CA 94016" -286168,Wired Headphones,1,11.99,11/30/19 15:18,"15 Walnut St, Dallas, TX 75001" -286169,Wired Headphones,1,11.99,11/02/19 14:43,"290 2nd St, Portland, OR 97035" -286170,AA Batteries (4-pack),1,3.84,11/08/19 04:24,"320 Walnut St, San Francisco, CA 94016" -286171,20in Monitor,1,109.99,11/23/19 19:56,"770 Hill St, New York City, NY 10001" -286172,AA Batteries (4-pack),1,3.84,11/01/19 20:55,"485 Hickory St, Boston, MA 02215" -286173,AA Batteries (4-pack),1,3.84,11/23/19 11:35,"161 Willow St, Boston, MA 02215" -286174,Vareebadd Phone,1,400,11/02/19 11:33,"581 Hill St, San Francisco, CA 94016" -286174,USB-C Charging Cable,1,11.95,11/02/19 11:33,"581 Hill St, San Francisco, CA 94016" -286175,Flatscreen TV,1,300,11/13/19 10:02,"560 North St, Austin, TX 73301" -286176,Bose SoundSport Headphones,1,99.99,11/14/19 13:39,"713 North St, Dallas, TX 75001" -286177,AAA Batteries (4-pack),1,2.99,11/25/19 12:00,"750 12th St, San Francisco, CA 94016" -286178,USB-C Charging Cable,1,11.95,11/08/19 09:54,"529 Center St, Los Angeles, CA 90001" -286179,USB-C Charging Cable,1,11.95,11/24/19 09:32,"477 14th St, Dallas, TX 75001" -286180,AAA Batteries (4-pack),1,2.99,11/28/19 17:08,"241 Main St, New York City, NY 10001" -286181,Lightning Charging Cable,1,14.95,11/19/19 13:04,"847 Main St, Atlanta, GA 30301" -286182,27in FHD Monitor,1,149.99,11/05/19 02:26,"525 Walnut St, Portland, OR 97035" -286183,Apple Airpods Headphones,1,150,11/02/19 11:36,"35 Hill St, Los Angeles, CA 90001" -286184,Bose SoundSport Headphones,1,99.99,11/14/19 14:59,"279 Spruce St, Seattle, WA 98101" -286185,AA Batteries (4-pack),1,3.84,11/17/19 23:15,"396 Forest St, Boston, MA 02215" -286186,USB-C Charging Cable,1,11.95,11/06/19 15:54,"465 8th St, Portland, OR 97035" -286187,AA Batteries (4-pack),1,3.84,11/19/19 14:56,"126 Elm St, Boston, MA 02215" -286188,Wired Headphones,1,11.99,11/18/19 17:33,"311 Hill St, Dallas, TX 75001" -286189,AA Batteries (4-pack),1,3.84,11/12/19 00:41,"427 Hickory St, Los Angeles, CA 90001" -286190,Google Phone,1,600,11/12/19 10:51,"218 West St, San Francisco, CA 94016" -286191,AAA Batteries (4-pack),3,2.99,11/24/19 17:10,"595 Willow St, Seattle, WA 98101" -286192,34in Ultrawide Monitor,1,379.99,11/24/19 19:02,"213 Church St, Atlanta, GA 30301" -286193,AA Batteries (4-pack),1,3.84,11/28/19 07:07,"221 Lakeview St, Portland, OR 97035" -286194,34in Ultrawide Monitor,1,379.99,11/27/19 18:15,"398 Meadow St, Atlanta, GA 30301" -286195,Google Phone,1,600,11/10/19 11:09,"711 12th St, San Francisco, CA 94016" -286196,Lightning Charging Cable,1,14.95,11/19/19 11:57,"248 Walnut St, San Francisco, CA 94016" -286197,Lightning Charging Cable,1,14.95,11/08/19 12:03,"710 North St, Los Angeles, CA 90001" -286198,AA Batteries (4-pack),1,3.84,11/13/19 11:02,"15 8th St, Los Angeles, CA 90001" -286199,Bose SoundSport Headphones,1,99.99,11/14/19 12:34,"260 Main St, Boston, MA 02215" -286200,Flatscreen TV,1,300,11/23/19 20:10,"335 Hill St, Los Angeles, CA 90001" -286201,USB-C Charging Cable,1,11.95,11/09/19 14:12,"225 13th St, Los Angeles, CA 90001" -286202,USB-C Charging Cable,1,11.95,11/16/19 15:17,"206 Main St, Dallas, TX 75001" -286203,27in FHD Monitor,1,149.99,11/15/19 10:13,"589 6th St, San Francisco, CA 94016" -286204,Lightning Charging Cable,1,14.95,11/04/19 16:54,"447 North St, Los Angeles, CA 90001" -286205,34in Ultrawide Monitor,1,379.99,11/25/19 16:22,"260 Main St, Los Angeles, CA 90001" -286206,AAA Batteries (4-pack),1,2.99,11/12/19 13:16,"562 Cedar St, New York City, NY 10001" -286207,Bose SoundSport Headphones,1,99.99,11/04/19 15:00,"542 4th St, Atlanta, GA 30301" -286208,Bose SoundSport Headphones,1,99.99,11/18/19 13:05,"488 12th St, San Francisco, CA 94016" -286209,USB-C Charging Cable,1,11.95,11/19/19 11:32,"548 14th St, Dallas, TX 75001" -286210,AAA Batteries (4-pack),1,2.99,11/25/19 15:08,"992 Madison St, Boston, MA 02215" -286211,Wired Headphones,1,11.99,11/07/19 10:39,"732 Sunset St, New York City, NY 10001" -286212,AA Batteries (4-pack),1,3.84,11/18/19 13:45,"207 8th St, San Francisco, CA 94016" -286213,Wired Headphones,1,11.99,11/27/19 14:01,"163 Lakeview St, Portland, OR 97035" -286214,Lightning Charging Cable,1,14.95,11/29/19 10:02,"21 10th St, Los Angeles, CA 90001" -286215,AAA Batteries (4-pack),1,2.99,11/25/19 16:35,"556 Chestnut St, Atlanta, GA 30301" -286216,AAA Batteries (4-pack),1,2.99,11/06/19 12:43,"3 2nd St, Los Angeles, CA 90001" -286217,34in Ultrawide Monitor,1,379.99,11/20/19 11:48,"230 Cedar St, Los Angeles, CA 90001" -286218,Lightning Charging Cable,1,14.95,11/14/19 11:56,"818 Hickory St, New York City, NY 10001" -286219,USB-C Charging Cable,2,11.95,11/02/19 00:47,"252 River St, San Francisco, CA 94016" -286220,Lightning Charging Cable,1,14.95,11/21/19 06:51,"373 Lincoln St, Boston, MA 02215" -286221,AA Batteries (4-pack),4,3.84,11/15/19 14:23,"259 11th St, Atlanta, GA 30301" -286222,Lightning Charging Cable,1,14.95,11/17/19 18:30,"421 8th St, San Francisco, CA 94016" -286223,AA Batteries (4-pack),1,3.84,11/26/19 05:34,"528 West St, Portland, OR 97035" -286224,Wired Headphones,1,11.99,11/30/19 16:34,"649 4th St, New York City, NY 10001" -286224,34in Ultrawide Monitor,1,379.99,11/30/19 16:34,"649 4th St, New York City, NY 10001" -286225,Macbook Pro Laptop,1,1700,11/29/19 22:56,"420 1st St, Portland, OR 97035" -286226,Lightning Charging Cable,1,14.95,11/25/19 13:26,"966 Chestnut St, San Francisco, CA 94016" -286227,AAA Batteries (4-pack),1,2.99,11/10/19 18:14,"567 Center St, Seattle, WA 98101" -286228,AAA Batteries (4-pack),1,2.99,11/03/19 11:57,"333 Wilson St, New York City, NY 10001" -286229,Wired Headphones,1,11.99,11/08/19 21:45,"800 7th St, San Francisco, CA 94016" -286230,27in 4K Gaming Monitor,1,389.99,11/04/19 22:24,"43 5th St, Boston, MA 02215" -286231,Bose SoundSport Headphones,1,99.99,11/21/19 13:06,"589 2nd St, Boston, MA 02215" -286232,Vareebadd Phone,1,400,11/17/19 17:33,"682 Jefferson St, San Francisco, CA 94016" -286233,Bose SoundSport Headphones,1,99.99,11/17/19 07:33,"351 5th St, Dallas, TX 75001" -286234,Flatscreen TV,1,300,11/13/19 10:07,"801 5th St, Austin, TX 73301" -286235,USB-C Charging Cable,1,11.95,11/06/19 19:19,"597 Hickory St, Boston, MA 02215" -286236,Google Phone,1,600,11/05/19 21:21,"3 Pine St, Dallas, TX 75001" -286236,USB-C Charging Cable,1,11.95,11/05/19 21:21,"3 Pine St, Dallas, TX 75001" -286237,Bose SoundSport Headphones,1,99.99,11/26/19 20:12,"878 Pine St, Atlanta, GA 30301" -286238,USB-C Charging Cable,1,11.95,11/23/19 10:20,"551 Maple St, New York City, NY 10001" -286239,Bose SoundSport Headphones,1,99.99,11/08/19 10:33,"363 Hickory St, Seattle, WA 98101" -286240,AAA Batteries (4-pack),1,2.99,11/29/19 10:15,"175 Lincoln St, Portland, OR 97035" -286241,Apple Airpods Headphones,1,150,11/18/19 16:43,"256 Adams St, Atlanta, GA 30301" -286242,Wired Headphones,1,11.99,11/30/19 20:40,"103 6th St, Los Angeles, CA 90001" -286243,AAA Batteries (4-pack),3,2.99,11/06/19 16:17,"815 Jefferson St, Los Angeles, CA 90001" -286244,Apple Airpods Headphones,1,150,11/13/19 13:05,"296 Adams St, Dallas, TX 75001" -286245,Wired Headphones,1,11.99,11/05/19 19:47,"636 14th St, San Francisco, CA 94016" -286246,34in Ultrawide Monitor,1,379.99,11/03/19 20:16,"544 Lake St, New York City, NY 10001" -286247,USB-C Charging Cable,1,11.95,11/16/19 13:51,"623 Willow St, Boston, MA 02215" -286248,Apple Airpods Headphones,1,150,11/08/19 14:01,"686 Cedar St, Los Angeles, CA 90001" -286249,20in Monitor,1,109.99,11/01/19 09:17,"405 2nd St, San Francisco, CA 94016" -286250,Macbook Pro Laptop,1,1700,11/19/19 10:27,"119 Lakeview St, Los Angeles, CA 90001" -286251,AAA Batteries (4-pack),2,2.99,11/15/19 18:29,"72 9th St, San Francisco, CA 94016" -286252,iPhone,1,700,11/27/19 19:30,"322 Jackson St, Dallas, TX 75001" -286253,Wired Headphones,2,11.99,11/18/19 17:33,"904 Maple St, Portland, OR 97035" -286254,Wired Headphones,1,11.99,11/28/19 15:17,"405 Johnson St, San Francisco, CA 94016" -286255,AAA Batteries (4-pack),1,2.99,11/17/19 18:55,"169 2nd St, San Francisco, CA 94016" -286256,AA Batteries (4-pack),1,3.84,11/02/19 15:29,"733 Lakeview St, New York City, NY 10001" -286257,AA Batteries (4-pack),1,3.84,11/23/19 18:58,"861 Willow St, New York City, NY 10001" -286258,Apple Airpods Headphones,1,150,11/04/19 12:52,"730 Lincoln St, New York City, NY 10001" -286259,Apple Airpods Headphones,1,150,11/28/19 23:28,"230 5th St, Portland, OR 97035" -286260,Apple Airpods Headphones,1,150,11/02/19 14:53,"610 South St, Los Angeles, CA 90001" -286261,27in FHD Monitor,1,149.99,11/16/19 01:02,"915 Center St, Los Angeles, CA 90001" -286262,Flatscreen TV,1,300,11/25/19 01:10,"839 North St, Dallas, TX 75001" -286263,Lightning Charging Cable,1,14.95,11/02/19 10:06,"791 4th St, Los Angeles, CA 90001" -286264,Wired Headphones,1,11.99,11/18/19 20:37,"997 Park St, Boston, MA 02215" -286265,USB-C Charging Cable,1,11.95,11/18/19 16:15,"79 2nd St, Seattle, WA 98101" -286266,Flatscreen TV,1,300,11/24/19 14:19,"518 Wilson St, San Francisco, CA 94016" -286267,Bose SoundSport Headphones,1,99.99,11/03/19 23:05,"541 1st St, San Francisco, CA 94016" -286268,Wired Headphones,1,11.99,11/13/19 21:51,"898 Forest St, Seattle, WA 98101" -286269,27in FHD Monitor,1,149.99,11/23/19 16:34,"294 Spruce St, Los Angeles, CA 90001" -286270,34in Ultrawide Monitor,1,379.99,11/22/19 18:36,"137 Center St, Atlanta, GA 30301" -286271,ThinkPad Laptop,1,999.99,11/02/19 01:18,"548 Sunset St, New York City, NY 10001" -286272,AAA Batteries (4-pack),2,2.99,11/27/19 11:45,"932 Washington St, San Francisco, CA 94016" -286273,Google Phone,1,600,11/27/19 17:07,"612 Lake St, San Francisco, CA 94016" -286273,Bose SoundSport Headphones,1,99.99,11/27/19 17:07,"612 Lake St, San Francisco, CA 94016" -286274,AA Batteries (4-pack),1,3.84,11/14/19 20:04,"943 13th St, New York City, NY 10001" -286275,Lightning Charging Cable,1,14.95,11/21/19 09:37,"407 Meadow St, Atlanta, GA 30301" -286276,Flatscreen TV,1,300,11/07/19 09:33,"304 10th St, New York City, NY 10001" -286277,Lightning Charging Cable,1,14.95,11/19/19 21:52,"54 4th St, Los Angeles, CA 90001" -286278,USB-C Charging Cable,1,11.95,11/20/19 15:13,"14 1st St, Atlanta, GA 30301" -286279,20in Monitor,1,109.99,11/21/19 20:04,"580 Lincoln St, Boston, MA 02215" -286280,Apple Airpods Headphones,1,150,11/25/19 07:32,"812 Meadow St, New York City, NY 10001" -286281,USB-C Charging Cable,1,11.95,11/16/19 23:55,"155 Dogwood St, Dallas, TX 75001" -286282,AAA Batteries (4-pack),1,2.99,11/01/19 09:02,"630 River St, New York City, NY 10001" -286283,Wired Headphones,1,11.99,11/05/19 21:27,"295 Lincoln St, San Francisco, CA 94016" -286284,Flatscreen TV,1,300,11/18/19 12:42,"893 Main St, Los Angeles, CA 90001" -286285,Lightning Charging Cable,1,14.95,11/02/19 12:47,"65 Meadow St, Boston, MA 02215" -286286,AAA Batteries (4-pack),1,2.99,11/27/19 17:01,"463 Maple St, Atlanta, GA 30301" -286287,27in 4K Gaming Monitor,1,389.99,11/08/19 10:31,"98 Hickory St, Boston, MA 02215" -286288,USB-C Charging Cable,1,11.95,11/05/19 10:50,"357 Center St, Los Angeles, CA 90001" -286289,AA Batteries (4-pack),1,3.84,11/01/19 17:55,"721 Lincoln St, San Francisco, CA 94016" -286290,Wired Headphones,1,11.99,11/11/19 11:54,"604 4th St, San Francisco, CA 94016" -286291,Google Phone,1,600,11/07/19 18:14,"407 River St, New York City, NY 10001" -286291,Wired Headphones,1,11.99,11/07/19 18:14,"407 River St, New York City, NY 10001" -286292,Apple Airpods Headphones,1,150,11/17/19 11:58,"374 Pine St, New York City, NY 10001" -286293,Lightning Charging Cable,1,14.95,11/22/19 09:24,"443 10th St, New York City, NY 10001" -286294,AAA Batteries (4-pack),2,2.99,11/26/19 12:25,"239 14th St, Atlanta, GA 30301" -286295,27in 4K Gaming Monitor,1,389.99,11/23/19 17:51,"468 South St, Portland, OR 97035" -286296,Google Phone,1,600,11/02/19 19:06,"535 Church St, San Francisco, CA 94016" -286297,Flatscreen TV,1,300,11/30/19 09:38,"23 Forest St, Boston, MA 02215" -286298,AAA Batteries (4-pack),1,2.99,11/17/19 19:22,"449 Meadow St, Boston, MA 02215" -286299,Wired Headphones,1,11.99,11/25/19 14:13,"392 Hill St, San Francisco, CA 94016" -286300,Wired Headphones,1,11.99,11/16/19 14:15,"547 Highland St, Los Angeles, CA 90001" -286301,USB-C Charging Cable,2,11.95,11/10/19 06:48,"924 South St, Austin, TX 73301" -286302,Bose SoundSport Headphones,1,99.99,11/07/19 13:38,"362 11th St, San Francisco, CA 94016" -286303,AAA Batteries (4-pack),1,2.99,11/25/19 09:03,"437 14th St, Atlanta, GA 30301" -286304,27in 4K Gaming Monitor,1,389.99,11/08/19 16:14,"860 Elm St, San Francisco, CA 94016" -286305,Bose SoundSport Headphones,1,99.99,11/26/19 12:08,"778 Forest St, Dallas, TX 75001" -286306,Apple Airpods Headphones,1,150,11/24/19 22:58,"52 6th St, San Francisco, CA 94016" -286307,Macbook Pro Laptop,1,1700,11/10/19 12:14,"434 South St, Boston, MA 02215" -286308,Lightning Charging Cable,1,14.95,11/08/19 17:03,"481 Lake St, San Francisco, CA 94016" -286309,Macbook Pro Laptop,1,1700,11/28/19 22:10,"208 14th St, San Francisco, CA 94016" -286310,USB-C Charging Cable,1,11.95,11/26/19 10:01,"21 Lincoln St, Los Angeles, CA 90001" -286311,Lightning Charging Cable,1,14.95,11/24/19 12:53,"494 Wilson St, San Francisco, CA 94016" -286312,27in 4K Gaming Monitor,1,389.99,11/08/19 20:51,"347 Adams St, San Francisco, CA 94016" -286313,USB-C Charging Cable,1,11.95,11/20/19 23:25,"303 Walnut St, Seattle, WA 98101" -286314,AAA Batteries (4-pack),1,2.99,11/20/19 14:19,"831 Jackson St, Los Angeles, CA 90001" -286315,AA Batteries (4-pack),4,3.84,11/28/19 13:48,"604 Madison St, New York City, NY 10001" -286316,AAA Batteries (4-pack),1,2.99,11/18/19 15:39,"355 Cedar St, New York City, NY 10001" -286317,USB-C Charging Cable,1,11.95,11/08/19 10:59,"359 4th St, Seattle, WA 98101" -286318,AA Batteries (4-pack),1,3.84,11/21/19 11:32,"595 Forest St, Austin, TX 73301" -286319,Apple Airpods Headphones,1,150,11/07/19 11:16,"36 Maple St, New York City, NY 10001" -286320,AAA Batteries (4-pack),1,2.99,11/19/19 22:38,"36 9th St, San Francisco, CA 94016" -286321,Wired Headphones,1,11.99,11/17/19 20:26,"544 5th St, New York City, NY 10001" -286322,Wired Headphones,1,11.99,11/05/19 23:20,"82 Hill St, San Francisco, CA 94016" -286323,AA Batteries (4-pack),1,3.84,11/30/19 12:06,"552 Ridge St, Los Angeles, CA 90001" -286324,AA Batteries (4-pack),1,3.84,11/14/19 13:12,"818 7th St, Dallas, TX 75001" -286325,Apple Airpods Headphones,1,150,11/13/19 09:59,"885 12th St, San Francisco, CA 94016" -286326,Lightning Charging Cable,1,14.95,11/11/19 01:50,"466 Washington St, Seattle, WA 98101" -286327,USB-C Charging Cable,1,11.95,11/29/19 22:45,"714 Cedar St, Boston, MA 02215" -286328,27in FHD Monitor,1,149.99,11/04/19 09:07,"837 Wilson St, Seattle, WA 98101" -286329,USB-C Charging Cable,1,11.95,11/01/19 22:17,"648 12th St, Seattle, WA 98101" -286330,AAA Batteries (4-pack),1,2.99,11/01/19 12:02,"916 2nd St, San Francisco, CA 94016" -286331,Lightning Charging Cable,1,14.95,11/26/19 07:56,"875 Main St, Seattle, WA 98101" -286332,Bose SoundSport Headphones,1,99.99,11/24/19 08:44,"472 8th St, New York City, NY 10001" -286333,LG Washing Machine,1,600.0,11/06/19 18:09,"686 River St, San Francisco, CA 94016" -286334,AA Batteries (4-pack),1,3.84,11/21/19 18:41,"825 9th St, Boston, MA 02215" -286335,34in Ultrawide Monitor,1,379.99,11/06/19 21:21,"276 Walnut St, Los Angeles, CA 90001" -286336,AAA Batteries (4-pack),1,2.99,11/07/19 12:50,"219 Maple St, Boston, MA 02215" -286337,Apple Airpods Headphones,1,150,11/15/19 20:10,"397 North St, Atlanta, GA 30301" -286338,USB-C Charging Cable,1,11.95,11/27/19 09:59,"43 Jefferson St, San Francisco, CA 94016" -286339,Wired Headphones,1,11.99,11/25/19 11:27,"997 Pine St, Austin, TX 73301" -286340,AAA Batteries (4-pack),1,2.99,11/04/19 12:06,"495 7th St, Dallas, TX 75001" -286341,AA Batteries (4-pack),2,3.84,11/26/19 13:14,"555 Hill St, New York City, NY 10001" -286342,AAA Batteries (4-pack),3,2.99,11/20/19 17:15,"619 Maple St, Boston, MA 02215" -286343,Bose SoundSport Headphones,1,99.99,11/21/19 19:03,"88 11th St, New York City, NY 10001" -286344,Lightning Charging Cable,1,14.95,11/06/19 09:29,"317 Madison St, Los Angeles, CA 90001" -286345,Bose SoundSport Headphones,1,99.99,11/12/19 21:55,"880 Chestnut St, New York City, NY 10001" -286346,27in FHD Monitor,1,149.99,11/16/19 12:41,"662 Johnson St, New York City, NY 10001" -286347,AA Batteries (4-pack),1,3.84,11/11/19 12:36,"255 West St, Dallas, TX 75001" -286347,AAA Batteries (4-pack),1,2.99,11/11/19 12:36,"255 West St, Dallas, TX 75001" -286348,Wired Headphones,1,11.99,11/04/19 08:52,"75 10th St, San Francisco, CA 94016" -286349,iPhone,1,700,11/24/19 17:14,"43 7th St, San Francisco, CA 94016" -286350,Wired Headphones,1,11.99,11/02/19 20:45,"407 11th St, Seattle, WA 98101" -286351,Apple Airpods Headphones,1,150,11/02/19 17:12,"453 Forest St, San Francisco, CA 94016" -286352,Lightning Charging Cable,1,14.95,11/10/19 00:24,"778 Lake St, San Francisco, CA 94016" -286353,34in Ultrawide Monitor,1,379.99,11/10/19 14:21,"890 Church St, Boston, MA 02215" -286354,Lightning Charging Cable,1,14.95,11/23/19 20:28,"673 4th St, Los Angeles, CA 90001" -286355,20in Monitor,1,109.99,11/06/19 19:50,"481 Willow St, San Francisco, CA 94016" -286356,Lightning Charging Cable,1,14.95,11/06/19 20:26,"804 1st St, Seattle, WA 98101" -286357,AA Batteries (4-pack),1,3.84,11/08/19 06:56,"479 Jackson St, San Francisco, CA 94016" -286358,USB-C Charging Cable,1,11.95,11/19/19 11:46,"225 Spruce St, New York City, NY 10001" -286359,AA Batteries (4-pack),1,3.84,11/02/19 21:40,"815 Sunset St, Boston, MA 02215" -286359,Wired Headphones,1,11.99,11/02/19 21:40,"815 Sunset St, Boston, MA 02215" -286360,Google Phone,1,600,11/30/19 23:52,"974 Sunset St, Dallas, TX 75001" -286361,USB-C Charging Cable,1,11.95,11/12/19 10:59,"536 Park St, New York City, NY 10001" -286362,USB-C Charging Cable,3,11.95,11/06/19 17:01,"851 5th St, Atlanta, GA 30301" -286363,Lightning Charging Cable,1,14.95,11/08/19 10:41,"455 South St, Austin, TX 73301" -286364,Lightning Charging Cable,1,14.95,11/05/19 21:16,"275 Hickory St, Los Angeles, CA 90001" -286365,USB-C Charging Cable,1,11.95,11/18/19 13:36,"644 Cedar St, New York City, NY 10001" -286366,Apple Airpods Headphones,1,150,11/22/19 17:48,"502 12th St, Dallas, TX 75001" -286367,Apple Airpods Headphones,1,150,11/28/19 18:27,"690 4th St, Austin, TX 73301" -286368,Google Phone,1,600,11/24/19 10:38,"293 Lakeview St, Seattle, WA 98101" -286369,USB-C Charging Cable,1,11.95,11/13/19 10:30,"437 10th St, New York City, NY 10001" -286370,AAA Batteries (4-pack),1,2.99,11/05/19 18:53,"572 Sunset St, Boston, MA 02215" -286371,Wired Headphones,1,11.99,11/17/19 17:51,"548 Jefferson St, Dallas, TX 75001" -286372,USB-C Charging Cable,1,11.95,11/01/19 23:45,"775 Jackson St, Seattle, WA 98101" -286372,Flatscreen TV,1,300,11/01/19 23:45,"775 Jackson St, Seattle, WA 98101" -286373,Wired Headphones,1,11.99,11/09/19 15:20,"419 Cedar St, Portland, OR 97035" -286374,Wired Headphones,1,11.99,11/05/19 17:28,"549 Lakeview St, New York City, NY 10001" -286375,USB-C Charging Cable,2,11.95,11/14/19 12:46,"452 Lincoln St, Atlanta, GA 30301" -286376,iPhone,1,700,11/29/19 11:59,"670 Hickory St, Los Angeles, CA 90001" -286377,AA Batteries (4-pack),2,3.84,11/29/19 23:43,"876 7th St, New York City, NY 10001" -286378,34in Ultrawide Monitor,1,379.99,11/29/19 09:34,"867 Elm St, Los Angeles, CA 90001" -286379,Bose SoundSport Headphones,1,99.99,11/07/19 18:34,"136 Cherry St, Dallas, TX 75001" -286380,Apple Airpods Headphones,1,150,11/25/19 10:30,"8 Church St, Dallas, TX 75001" -286381,Google Phone,1,600,11/19/19 13:16,"512 Elm St, Atlanta, GA 30301" -286382,AA Batteries (4-pack),1,3.84,11/02/19 10:34,"143 Wilson St, New York City, NY 10001" -286383,Wired Headphones,1,11.99,11/27/19 10:08,"541 Washington St, Dallas, TX 75001" -286383,Wired Headphones,1,11.99,11/27/19 10:08,"541 Washington St, Dallas, TX 75001" -286384,AA Batteries (4-pack),3,3.84,11/17/19 12:14,"842 Forest St, Austin, TX 73301" -286385,20in Monitor,1,109.99,11/01/19 15:08,"682 North St, San Francisco, CA 94016" -286386,Apple Airpods Headphones,1,150,11/13/19 10:32,"60 12th St, Los Angeles, CA 90001" -286387,AAA Batteries (4-pack),1,2.99,11/18/19 22:52,"375 Walnut St, Seattle, WA 98101" -286388,AAA Batteries (4-pack),1,2.99,11/15/19 08:56,"908 Hickory St, Boston, MA 02215" -286389,LG Dryer,1,600.0,11/20/19 10:35,"211 South St, San Francisco, CA 94016" -286390,Bose SoundSport Headphones,1,99.99,11/28/19 18:53,"737 4th St, Atlanta, GA 30301" -286391,USB-C Charging Cable,1,11.95,11/20/19 14:04,"90 Jackson St, San Francisco, CA 94016" -286392,USB-C Charging Cable,1,11.95,11/18/19 17:27,"291 South St, Los Angeles, CA 90001" -286393,USB-C Charging Cable,1,11.95,11/27/19 14:02,"720 Elm St, San Francisco, CA 94016" -286394,Bose SoundSport Headphones,1,99.99,11/12/19 12:21,"9 Elm St, Austin, TX 73301" -286395,USB-C Charging Cable,1,11.95,11/27/19 21:51,"828 1st St, Dallas, TX 75001" -286396,AAA Batteries (4-pack),1,2.99,11/04/19 22:40,"291 10th St, San Francisco, CA 94016" -286397,Macbook Pro Laptop,1,1700,11/20/19 18:31,"499 Highland St, Dallas, TX 75001" -286398,Wired Headphones,1,11.99,11/12/19 00:17,"498 12th St, Dallas, TX 75001" -286399,Bose SoundSport Headphones,1,99.99,11/19/19 07:49,"831 6th St, Portland, ME 04101" -286400,Wired Headphones,1,11.99,11/23/19 16:42,"296 Hickory St, Atlanta, GA 30301" -286401,Bose SoundSport Headphones,1,99.99,11/18/19 10:59,"834 2nd St, San Francisco, CA 94016" -286402,27in FHD Monitor,1,149.99,11/25/19 16:16,"410 4th St, Seattle, WA 98101" -286403,Flatscreen TV,1,300,11/18/19 14:22,"172 Hickory St, San Francisco, CA 94016" -286404,27in FHD Monitor,1,149.99,11/21/19 22:39,"710 Sunset St, San Francisco, CA 94016" -286405,20in Monitor,1,109.99,11/18/19 15:26,"19 North St, Austin, TX 73301" -286406,Lightning Charging Cable,1,14.95,11/21/19 16:23,"698 13th St, New York City, NY 10001" -286407,AAA Batteries (4-pack),1,2.99,11/29/19 21:59,"536 South St, Austin, TX 73301" -286408,Lightning Charging Cable,1,14.95,11/27/19 23:18,"491 River St, Atlanta, GA 30301" -286409,AA Batteries (4-pack),1,3.84,11/02/19 17:51,"150 River St, New York City, NY 10001" -286410,Google Phone,1,600,11/03/19 14:43,"786 Center St, New York City, NY 10001" -286411,34in Ultrawide Monitor,1,379.99,11/27/19 23:34,"621 Hill St, San Francisco, CA 94016" -286412,AAA Batteries (4-pack),2,2.99,11/20/19 17:43,"302 Main St, New York City, NY 10001" -286413,AAA Batteries (4-pack),1,2.99,11/21/19 13:25,"125 1st St, Atlanta, GA 30301" -286414,27in FHD Monitor,1,149.99,11/14/19 10:12,"57 Center St, Dallas, TX 75001" -286415,Lightning Charging Cable,2,14.95,11/14/19 14:07,"672 Willow St, Boston, MA 02215" -286416,Macbook Pro Laptop,1,1700,11/26/19 15:18,"259 Cherry St, Dallas, TX 75001" -286417,Google Phone,1,600,11/18/19 21:50,"895 Lakeview St, New York City, NY 10001" -286417,USB-C Charging Cable,1,11.95,11/18/19 21:50,"895 Lakeview St, New York City, NY 10001" -286418,USB-C Charging Cable,1,11.95,11/16/19 23:52,"150 Pine St, San Francisco, CA 94016" -286419,27in FHD Monitor,1,149.99,11/12/19 11:05,"593 Cedar St, Los Angeles, CA 90001" -286420,Apple Airpods Headphones,1,150,11/06/19 16:43,"393 Center St, Boston, MA 02215" -286421,Lightning Charging Cable,1,14.95,11/14/19 13:35,"237 Center St, San Francisco, CA 94016" -286422,AAA Batteries (4-pack),1,2.99,11/17/19 19:16,"642 Lakeview St, New York City, NY 10001" -286423,ThinkPad Laptop,1,999.99,11/25/19 17:53,"478 Hickory St, Los Angeles, CA 90001" -286424,Flatscreen TV,1,300,11/17/19 08:30,"483 4th St, Seattle, WA 98101" -286425,Vareebadd Phone,1,400,11/11/19 15:33,"14 Church St, Seattle, WA 98101" -286426,AA Batteries (4-pack),1,3.84,11/11/19 03:13,"513 Chestnut St, Atlanta, GA 30301" -286427,Lightning Charging Cable,1,14.95,11/06/19 21:54,"260 Madison St, San Francisco, CA 94016" -286428,Lightning Charging Cable,2,14.95,11/23/19 15:36,"80 Meadow St, Los Angeles, CA 90001" -286429,USB-C Charging Cable,1,11.95,11/16/19 14:23,"980 1st St, Los Angeles, CA 90001" -286430,27in FHD Monitor,1,149.99,11/05/19 10:23,"766 Park St, San Francisco, CA 94016" -286431,Bose SoundSport Headphones,1,99.99,11/12/19 12:56,"460 Elm St, San Francisco, CA 94016" -286432,27in FHD Monitor,1,149.99,11/04/19 19:14,"2 Lake St, San Francisco, CA 94016" -286433,Wired Headphones,1,11.99,11/03/19 20:50,"29 Lake St, San Francisco, CA 94016" -286434,AA Batteries (4-pack),4,3.84,11/14/19 20:25,"563 5th St, San Francisco, CA 94016" -286435,Apple Airpods Headphones,1,150,11/11/19 21:36,"153 Jackson St, San Francisco, CA 94016" -286436,Wired Headphones,1,11.99,11/17/19 16:57,"374 Johnson St, Seattle, WA 98101" -286437,34in Ultrawide Monitor,1,379.99,11/03/19 01:39,"724 1st St, Seattle, WA 98101" -286438,Lightning Charging Cable,1,14.95,11/29/19 01:33,"604 Park St, Boston, MA 02215" -286439,Wired Headphones,1,11.99,11/25/19 18:38,"666 Madison St, Los Angeles, CA 90001" -286440,Lightning Charging Cable,1,14.95,11/03/19 20:43,"13 Adams St, Dallas, TX 75001" -286441,AAA Batteries (4-pack),2,2.99,11/17/19 13:40,"700 Forest St, San Francisco, CA 94016" -286442,Lightning Charging Cable,1,14.95,11/21/19 18:55,"638 Walnut St, San Francisco, CA 94016" -286443,LG Washing Machine,1,600.0,11/10/19 21:34,"533 Madison St, Seattle, WA 98101" -286444,Bose SoundSport Headphones,1,99.99,11/21/19 19:02,"452 Lake St, Dallas, TX 75001" -286445,AA Batteries (4-pack),1,3.84,11/26/19 22:22,"214 11th St, Dallas, TX 75001" -286446,Lightning Charging Cable,1,14.95,11/30/19 12:59,"801 Walnut St, San Francisco, CA 94016" -286447,Macbook Pro Laptop,1,1700,11/26/19 18:14,"907 River St, Los Angeles, CA 90001" -286448,Apple Airpods Headphones,1,150,11/27/19 15:01,"813 River St, Atlanta, GA 30301" -286449,Macbook Pro Laptop,1,1700,11/26/19 20:52,"817 Cherry St, Los Angeles, CA 90001" -286450,AAA Batteries (4-pack),2,2.99,11/21/19 21:39,"625 Madison St, Los Angeles, CA 90001" -286451,AA Batteries (4-pack),1,3.84,11/09/19 09:00,"509 Dogwood St, Dallas, TX 75001" -286452,Wired Headphones,1,11.99,11/06/19 10:55,"91 7th St, Seattle, WA 98101" -286453,20in Monitor,1,109.99,11/14/19 18:57,"494 Lake St, Austin, TX 73301" -286454,USB-C Charging Cable,1,11.95,11/02/19 12:54,"832 Hill St, Dallas, TX 75001" -286455,27in 4K Gaming Monitor,1,389.99,11/26/19 16:51,"101 Ridge St, Los Angeles, CA 90001" -286456,Lightning Charging Cable,1,14.95,11/10/19 15:57,"498 Lakeview St, San Francisco, CA 94016" -286457,Lightning Charging Cable,2,14.95,11/24/19 11:00,"293 Lakeview St, Dallas, TX 75001" -286458,Macbook Pro Laptop,1,1700,11/08/19 17:43,"26 Walnut St, Boston, MA 02215" -286459,USB-C Charging Cable,2,11.95,11/17/19 13:01,"394 8th St, Dallas, TX 75001" -286460,AA Batteries (4-pack),1,3.84,11/12/19 16:33,"216 5th St, San Francisco, CA 94016" -286461,34in Ultrawide Monitor,1,379.99,11/01/19 10:29,"460 Sunset St, Austin, TX 73301" -286462,Apple Airpods Headphones,1,150,11/20/19 21:02,"48 5th St, Los Angeles, CA 90001" -286463,USB-C Charging Cable,1,11.95,11/22/19 17:38,"338 Forest St, Boston, MA 02215" -286464,ThinkPad Laptop,1,999.99,11/30/19 21:06,"403 Hickory St, Austin, TX 73301" -286465,iPhone,1,700,11/14/19 21:07,"345 Church St, Atlanta, GA 30301" -286465,Lightning Charging Cable,1,14.95,11/14/19 21:07,"345 Church St, Atlanta, GA 30301" -286466,Flatscreen TV,1,300,11/01/19 12:42,"250 Highland St, San Francisco, CA 94016" -286467,Lightning Charging Cable,2,14.95,11/24/19 16:58,"214 Lincoln St, Atlanta, GA 30301" -286468,AAA Batteries (4-pack),3,2.99,11/22/19 13:43,"581 South St, Austin, TX 73301" -286469,27in FHD Monitor,1,149.99,11/02/19 08:32,"706 Lincoln St, Atlanta, GA 30301" -286470,AA Batteries (4-pack),1,3.84,11/04/19 11:20,"686 14th St, Boston, MA 02215" -286471,AAA Batteries (4-pack),2,2.99,11/21/19 20:53,"502 13th St, Portland, OR 97035" -286472,Wired Headphones,1,11.99,11/12/19 20:52,"133 Ridge St, Los Angeles, CA 90001" -286473,AA Batteries (4-pack),1,3.84,11/08/19 10:01,"143 West St, Atlanta, GA 30301" -286474,USB-C Charging Cable,1,11.95,11/30/19 21:51,"689 Forest St, New York City, NY 10001" -286475,34in Ultrawide Monitor,1,379.99,11/28/19 21:31,"406 Wilson St, San Francisco, CA 94016" -286476,AAA Batteries (4-pack),1,2.99,11/27/19 09:32,"477 Wilson St, Boston, MA 02215" -286477,AA Batteries (4-pack),5,3.84,11/11/19 17:51,"412 Lake St, Los Angeles, CA 90001" -286478,Wired Headphones,1,11.99,11/05/19 09:33,"715 Forest St, Atlanta, GA 30301" -286479,Wired Headphones,1,11.99,11/02/19 07:55,"726 Church St, San Francisco, CA 94016" -286480,Bose SoundSport Headphones,1,99.99,11/29/19 14:34,"159 South St, Seattle, WA 98101" -286481,AAA Batteries (4-pack),1,2.99,11/01/19 20:43,"491 Lake St, New York City, NY 10001" -286482,Lightning Charging Cable,1,14.95,11/29/19 01:35,"511 10th St, New York City, NY 10001" -286483,iPhone,1,700,11/14/19 19:43,"312 Dogwood St, San Francisco, CA 94016" -286483,Lightning Charging Cable,1,14.95,11/14/19 19:43,"312 Dogwood St, San Francisco, CA 94016" -286484,USB-C Charging Cable,1,11.95,11/24/19 20:46,"272 10th St, Dallas, TX 75001" -286485,ThinkPad Laptop,1,999.99,11/02/19 20:05,"773 Johnson St, Dallas, TX 75001" -286486,AAA Batteries (4-pack),1,2.99,11/19/19 18:16,"972 Lincoln St, Portland, OR 97035" -286487,Bose SoundSport Headphones,1,99.99,11/17/19 15:06,"684 4th St, San Francisco, CA 94016" -286488,USB-C Charging Cable,1,11.95,11/28/19 22:33,"398 10th St, New York City, NY 10001" -286489,Apple Airpods Headphones,1,150,11/23/19 09:41,"169 14th St, Seattle, WA 98101" -286490,27in FHD Monitor,1,149.99,11/05/19 18:47,"324 14th St, San Francisco, CA 94016" -286491,AA Batteries (4-pack),1,3.84,11/05/19 22:42,"103 6th St, Boston, MA 02215" -286492,27in 4K Gaming Monitor,1,389.99,11/18/19 14:15,"845 13th St, New York City, NY 10001" -286493,20in Monitor,1,109.99,11/24/19 09:58,"212 7th St, Atlanta, GA 30301" -286494,27in 4K Gaming Monitor,1,389.99,11/25/19 20:41,"82 12th St, Los Angeles, CA 90001" -286495,Vareebadd Phone,1,400,11/22/19 08:19,"949 North St, Dallas, TX 75001" -286496,AA Batteries (4-pack),2,3.84,11/22/19 12:32,"607 11th St, Dallas, TX 75001" -286497,AA Batteries (4-pack),2,3.84,11/11/19 16:12,"67 Dogwood St, Boston, MA 02215" -286498,Macbook Pro Laptop,1,1700,11/03/19 21:49,"953 10th St, Los Angeles, CA 90001" -286499,Wired Headphones,1,11.99,11/16/19 18:53,"998 Park St, Los Angeles, CA 90001" -286500,Wired Headphones,1,11.99,11/29/19 08:21,"119 Lake St, San Francisco, CA 94016" -286501,34in Ultrawide Monitor,1,379.99,11/16/19 11:13,"341 Highland St, New York City, NY 10001" -286502,Macbook Pro Laptop,1,1700,11/05/19 15:38,"914 Forest St, San Francisco, CA 94016" -286503,34in Ultrawide Monitor,1,379.99,11/01/19 23:36,"324 Maple St, Los Angeles, CA 90001" -286503,ThinkPad Laptop,1,999.99,11/01/19 23:36,"324 Maple St, Los Angeles, CA 90001" -286504,iPhone,1,700,11/07/19 16:06,"115 South St, San Francisco, CA 94016" -286504,Wired Headphones,1,11.99,11/07/19 16:06,"115 South St, San Francisco, CA 94016" -286505,iPhone,1,700,11/20/19 10:32,"743 2nd St, San Francisco, CA 94016" -286506,AA Batteries (4-pack),3,3.84,11/08/19 12:02,"612 Jackson St, Austin, TX 73301" -286507,AAA Batteries (4-pack),4,2.99,11/06/19 12:07,"819 Adams St, New York City, NY 10001" -286508,USB-C Charging Cable,1,11.95,11/25/19 21:03,"196 Lincoln St, Atlanta, GA 30301" -286509,AAA Batteries (4-pack),3,2.99,11/16/19 20:15,"478 Pine St, Boston, MA 02215" -286510,Apple Airpods Headphones,1,150,11/02/19 11:29,"179 Jackson St, Los Angeles, CA 90001" -286511,Wired Headphones,1,11.99,11/06/19 13:34,"78 Highland St, Los Angeles, CA 90001" -286512,Lightning Charging Cable,1,14.95,11/06/19 22:11,"184 Lakeview St, Portland, OR 97035" -286513,Lightning Charging Cable,1,14.95,11/12/19 09:26,"270 Church St, San Francisco, CA 94016" -286514,27in FHD Monitor,1,149.99,11/19/19 21:57,"554 Jefferson St, San Francisco, CA 94016" -286515,Apple Airpods Headphones,1,150,11/27/19 06:40,"616 Willow St, New York City, NY 10001" -286516,USB-C Charging Cable,1,11.95,11/22/19 16:44,"442 1st St, San Francisco, CA 94016" -286517,AAA Batteries (4-pack),1,2.99,11/26/19 12:26,"66 Adams St, New York City, NY 10001" -286518,AA Batteries (4-pack),1,3.84,11/10/19 03:56,"629 Center St, San Francisco, CA 94016" -286519,Wired Headphones,1,11.99,11/09/19 19:04,"864 North St, Los Angeles, CA 90001" -286520,AAA Batteries (4-pack),1,2.99,11/27/19 03:14,"869 Meadow St, New York City, NY 10001" -286521,AA Batteries (4-pack),1,3.84,11/08/19 20:50,"291 7th St, Los Angeles, CA 90001" -286522,USB-C Charging Cable,1,11.95,11/16/19 23:37,"184 Forest St, Dallas, TX 75001" -286523,Vareebadd Phone,1,400,11/15/19 00:17,"223 Elm St, Los Angeles, CA 90001" -286523,Bose SoundSport Headphones,1,99.99,11/15/19 00:17,"223 Elm St, Los Angeles, CA 90001" -286524,Wired Headphones,1,11.99,11/17/19 12:01,"184 Lake St, San Francisco, CA 94016" -286525,Apple Airpods Headphones,1,150,11/07/19 12:55,"286 West St, Austin, TX 73301" -286526,AAA Batteries (4-pack),1,2.99,11/25/19 18:44,"960 7th St, San Francisco, CA 94016" -286527,27in FHD Monitor,1,149.99,11/18/19 13:29,"96 Elm St, Seattle, WA 98101" -286528,AAA Batteries (4-pack),1,2.99,11/28/19 12:37,"312 1st St, Atlanta, GA 30301" -286529,27in FHD Monitor,1,149.99,11/21/19 07:20,"241 Ridge St, San Francisco, CA 94016" -286530,Vareebadd Phone,1,400,11/10/19 10:45,"677 North St, Los Angeles, CA 90001" -286531,Wired Headphones,1,11.99,11/20/19 18:31,"884 Park St, Portland, OR 97035" -286532,iPhone,1,700,11/21/19 17:09,"896 Pine St, San Francisco, CA 94016" -286533,AA Batteries (4-pack),3,3.84,11/05/19 10:51,"605 Cedar St, Los Angeles, CA 90001" -286534,AAA Batteries (4-pack),1,2.99,11/29/19 11:14,"299 Pine St, Boston, MA 02215" -286535,Flatscreen TV,1,300,11/10/19 06:33,"413 Washington St, Los Angeles, CA 90001" -286536,20in Monitor,1,109.99,11/15/19 17:47,"962 Center St, San Francisco, CA 94016" -286537,Wired Headphones,2,11.99,11/14/19 18:04,"476 Chestnut St, Dallas, TX 75001" -286538,AAA Batteries (4-pack),2,2.99,11/25/19 10:06,"596 Main St, Austin, TX 73301" -286539,AA Batteries (4-pack),1,3.84,11/19/19 21:56,"358 Willow St, Los Angeles, CA 90001" -286540,AAA Batteries (4-pack),2,2.99,11/30/19 13:01,"913 Lake St, Boston, MA 02215" -286541,34in Ultrawide Monitor,1,379.99,11/18/19 21:17,"238 Hill St, San Francisco, CA 94016" -286542,27in FHD Monitor,1,149.99,11/23/19 19:09,"856 Madison St, Los Angeles, CA 90001" -286543,Lightning Charging Cable,1,14.95,11/14/19 18:40,"569 Church St, San Francisco, CA 94016" -286544,Wired Headphones,1,11.99,11/24/19 18:59,"893 Park St, San Francisco, CA 94016" -286545,27in FHD Monitor,1,149.99,11/04/19 12:14,"918 Dogwood St, Boston, MA 02215" -286546,34in Ultrawide Monitor,1,379.99,11/07/19 13:21,"208 9th St, New York City, NY 10001" -286547,USB-C Charging Cable,1,11.95,11/08/19 22:09,"890 Spruce St, Dallas, TX 75001" -286548,LG Washing Machine,1,600.0,11/29/19 13:17,"606 Hill St, Dallas, TX 75001" -286549,USB-C Charging Cable,1,11.95,11/25/19 17:30,"471 Church St, Portland, OR 97035" -286550,AA Batteries (4-pack),1,3.84,11/10/19 20:20,"452 Dogwood St, Atlanta, GA 30301" -286551,Lightning Charging Cable,2,14.95,11/10/19 13:06,"436 7th St, San Francisco, CA 94016" -286552,AAA Batteries (4-pack),1,2.99,11/24/19 14:27,"510 4th St, Los Angeles, CA 90001" -286553,USB-C Charging Cable,1,11.95,11/30/19 15:41,"157 Forest St, New York City, NY 10001" -286554,Bose SoundSport Headphones,1,99.99,11/23/19 20:40,"205 10th St, San Francisco, CA 94016" -286555,Wired Headphones,1,11.99,11/29/19 14:02,"719 9th St, Boston, MA 02215" -286556,AA Batteries (4-pack),1,3.84,11/06/19 12:48,"153 Willow St, Atlanta, GA 30301" -286557,iPhone,1,700,11/22/19 12:41,"608 Spruce St, Seattle, WA 98101" -286557,Wired Headphones,1,11.99,11/22/19 12:41,"608 Spruce St, Seattle, WA 98101" -286558,AA Batteries (4-pack),1,3.84,11/13/19 10:41,"73 North St, New York City, NY 10001" -286559,Wired Headphones,1,11.99,11/05/19 10:47,"224 Lincoln St, San Francisco, CA 94016" -286560,USB-C Charging Cable,1,11.95,11/12/19 15:23,"422 7th St, San Francisco, CA 94016" -286561,AAA Batteries (4-pack),3,2.99,11/08/19 17:32,"14 West St, New York City, NY 10001" -286562,AA Batteries (4-pack),2,3.84,11/02/19 14:34,"541 South St, Portland, ME 04101" -286563,AAA Batteries (4-pack),1,2.99,11/20/19 18:35,"465 1st St, San Francisco, CA 94016" -286564,USB-C Charging Cable,1,11.95,11/13/19 00:27,"682 Dogwood St, New York City, NY 10001" -286565,20in Monitor,1,109.99,11/02/19 12:38,"733 4th St, Austin, TX 73301" -286566,Bose SoundSport Headphones,1,99.99,11/04/19 12:39,"800 Dogwood St, New York City, NY 10001" -286567,Lightning Charging Cable,1,14.95,11/25/19 14:07,"424 Walnut St, Boston, MA 02215" -286568,20in Monitor,1,109.99,11/12/19 22:17,"394 14th St, San Francisco, CA 94016" -286569,Lightning Charging Cable,1,14.95,11/22/19 19:25,"615 Hickory St, Los Angeles, CA 90001" -286570,Macbook Pro Laptop,1,1700,11/11/19 20:23,"630 Jefferson St, San Francisco, CA 94016" -286571,Wired Headphones,1,11.99,11/21/19 13:50,"65 6th St, Boston, MA 02215" -286572,AAA Batteries (4-pack),2,2.99,11/07/19 16:21,"509 Church St, New York City, NY 10001" -286573,ThinkPad Laptop,1,999.99,11/27/19 17:07,"456 Main St, Los Angeles, CA 90001" -286574,Wired Headphones,1,11.99,11/07/19 08:54,"366 West St, Seattle, WA 98101" -286575,AAA Batteries (4-pack),1,2.99,11/29/19 09:16,"355 6th St, San Francisco, CA 94016" -286576,27in FHD Monitor,1,149.99,11/16/19 18:35,"945 Meadow St, Los Angeles, CA 90001" -286577,Macbook Pro Laptop,1,1700,11/22/19 16:45,"485 West St, New York City, NY 10001" -286578,Apple Airpods Headphones,1,150,11/19/19 00:02,"482 11th St, San Francisco, CA 94016" -286579,Bose SoundSport Headphones,1,99.99,11/19/19 10:21,"858 Willow St, Seattle, WA 98101" -286580,Flatscreen TV,1,300,11/23/19 06:44,"430 Meadow St, Los Angeles, CA 90001" -286581,Vareebadd Phone,1,400,11/21/19 21:25,"108 West St, San Francisco, CA 94016" -286581,Bose SoundSport Headphones,1,99.99,11/21/19 21:25,"108 West St, San Francisco, CA 94016" -286582,27in FHD Monitor,1,149.99,11/07/19 15:31,"475 Main St, Los Angeles, CA 90001" -286583,ThinkPad Laptop,1,999.99,11/10/19 17:06,"702 Lakeview St, San Francisco, CA 94016" -286584,AAA Batteries (4-pack),1,2.99,11/09/19 18:12,"849 Ridge St, Atlanta, GA 30301" -286585,AAA Batteries (4-pack),2,2.99,11/22/19 10:06,"802 1st St, New York City, NY 10001" -286586,AA Batteries (4-pack),1,3.84,11/17/19 21:12,"869 Pine St, Portland, OR 97035" -286587,AA Batteries (4-pack),1,3.84,11/03/19 22:00,"60 Madison St, Dallas, TX 75001" -286588,Wired Headphones,1,11.99,11/16/19 14:54,"49 North St, Dallas, TX 75001" -286589,AAA Batteries (4-pack),1,2.99,11/26/19 18:13,"999 Madison St, San Francisco, CA 94016" -286590,iPhone,1,700,11/04/19 20:56,"568 Walnut St, Dallas, TX 75001" -286591,iPhone,1,700,11/03/19 16:51,"505 Jefferson St, Dallas, TX 75001" -286591,Lightning Charging Cable,1,14.95,11/03/19 16:51,"505 Jefferson St, Dallas, TX 75001" -286592,27in 4K Gaming Monitor,1,389.99,11/22/19 23:05,"302 Hill St, San Francisco, CA 94016" -286593,34in Ultrawide Monitor,1,379.99,11/26/19 21:07,"567 Walnut St, New York City, NY 10001" -286594,27in 4K Gaming Monitor,1,389.99,11/06/19 15:52,"753 Highland St, Austin, TX 73301" -286595,AAA Batteries (4-pack),1,2.99,11/11/19 10:59,"468 Sunset St, Portland, OR 97035" -286596,27in FHD Monitor,1,149.99,11/14/19 00:31,"493 7th St, New York City, NY 10001" -286597,Wired Headphones,1,11.99,11/15/19 21:18,"78 Chestnut St, Seattle, WA 98101" -286598,AA Batteries (4-pack),1,3.84,11/29/19 20:08,"925 Chestnut St, San Francisco, CA 94016" -286599,USB-C Charging Cable,1,11.95,11/30/19 10:17,"750 Hill St, Atlanta, GA 30301" -286600,ThinkPad Laptop,1,999.99,11/10/19 15:30,"405 Sunset St, New York City, NY 10001" -286601,Google Phone,1,600,11/20/19 20:48,"118 Pine St, Boston, MA 02215" -286602,iPhone,1,700,11/17/19 16:02,"710 Spruce St, Seattle, WA 98101" -286603,Apple Airpods Headphones,1,150,11/18/19 11:18,"839 Chestnut St, Seattle, WA 98101" -286604,27in 4K Gaming Monitor,1,389.99,11/27/19 22:41,"222 4th St, Boston, MA 02215" -286605,34in Ultrawide Monitor,1,379.99,11/02/19 12:41,"420 Jackson St, Portland, OR 97035" -286606,USB-C Charging Cable,1,11.95,11/12/19 20:28,"652 Main St, New York City, NY 10001" -286607,iPhone,1,700,11/20/19 07:40,"240 Walnut St, San Francisco, CA 94016" -286608,USB-C Charging Cable,2,11.95,11/06/19 16:23,"724 Adams St, Boston, MA 02215" -286609,Lightning Charging Cable,1,14.95,11/30/19 13:25,"847 Lakeview St, Los Angeles, CA 90001" -286610,AAA Batteries (4-pack),1,2.99,11/03/19 13:26,"189 Willow St, Dallas, TX 75001" -286611,Wired Headphones,1,11.99,11/11/19 19:45,"100 Cedar St, Seattle, WA 98101" -286612,Apple Airpods Headphones,1,150,11/24/19 19:20,"830 7th St, Boston, MA 02215" -286612,USB-C Charging Cable,1,11.95,11/24/19 19:20,"830 7th St, Boston, MA 02215" -286613,Wired Headphones,1,11.99,11/03/19 21:41,"953 Highland St, New York City, NY 10001" -286614,AA Batteries (4-pack),2,3.84,11/24/19 12:32,"822 Pine St, Seattle, WA 98101" -286615,AA Batteries (4-pack),1,3.84,11/18/19 14:32,"557 12th St, New York City, NY 10001" -286616,AA Batteries (4-pack),1,3.84,11/07/19 22:50,"22 14th St, San Francisco, CA 94016" -286617,Lightning Charging Cable,1,14.95,11/06/19 16:54,"478 Wilson St, New York City, NY 10001" -286618,Lightning Charging Cable,1,14.95,11/28/19 18:30,"226 Cherry St, Los Angeles, CA 90001" -286619,Wired Headphones,1,11.99,11/25/19 10:31,"468 Sunset St, San Francisco, CA 94016" -286620,Apple Airpods Headphones,1,150,11/07/19 18:12,"336 Ridge St, Los Angeles, CA 90001" -286621,Lightning Charging Cable,1,14.95,11/29/19 11:41,"517 9th St, San Francisco, CA 94016" -286622,Lightning Charging Cable,1,14.95,11/12/19 08:12,"203 Chestnut St, New York City, NY 10001" -286622,LG Washing Machine,1,600.0,11/12/19 08:12,"203 Chestnut St, New York City, NY 10001" -286623,AA Batteries (4-pack),1,3.84,11/21/19 13:26,"50 2nd St, New York City, NY 10001" -286624,AA Batteries (4-pack),1,3.84,11/06/19 10:35,"111 Johnson St, New York City, NY 10001" -286624,Wired Headphones,1,11.99,11/06/19 10:35,"111 Johnson St, New York City, NY 10001" -286625,Wired Headphones,1,11.99,11/21/19 20:47,"355 9th St, Dallas, TX 75001" -286626,Wired Headphones,1,11.99,11/17/19 01:49,"26 Sunset St, Los Angeles, CA 90001" -286627,Lightning Charging Cable,1,14.95,11/30/19 10:52,"645 Cherry St, Austin, TX 73301" -286628,USB-C Charging Cable,1,11.95,11/04/19 23:34,"11 Jackson St, Atlanta, GA 30301" -286629,Apple Airpods Headphones,1,150,11/18/19 18:53,"726 Forest St, Boston, MA 02215" -286630,LG Washing Machine,1,600.0,11/02/19 08:35,"852 14th St, New York City, NY 10001" -286631,AA Batteries (4-pack),3,3.84,11/18/19 20:41,"483 Sunset St, Seattle, WA 98101" -286632,Wired Headphones,1,11.99,11/10/19 22:06,"57 2nd St, Boston, MA 02215" -286633,AAA Batteries (4-pack),1,2.99,11/07/19 11:01,"642 North St, Los Angeles, CA 90001" -286634,Lightning Charging Cable,1,14.95,11/27/19 15:11,"44 9th St, Los Angeles, CA 90001" -286635,27in 4K Gaming Monitor,1,389.99,11/02/19 17:27,"699 Wilson St, San Francisco, CA 94016" -286636,Wired Headphones,1,11.99,11/19/19 17:44,"973 10th St, Los Angeles, CA 90001" -286637,Apple Airpods Headphones,1,150,11/11/19 08:05,"992 Spruce St, Austin, TX 73301" -286638,AAA Batteries (4-pack),1,2.99,11/13/19 22:12,"332 14th St, Boston, MA 02215" -286639,ThinkPad Laptop,1,999.99,11/02/19 08:37,"419 Madison St, Boston, MA 02215" -286640,USB-C Charging Cable,1,11.95,11/21/19 12:28,"551 Lakeview St, New York City, NY 10001" -286641,27in FHD Monitor,1,149.99,11/03/19 11:26,"184 Sunset St, New York City, NY 10001" -286642,27in FHD Monitor,2,149.99,11/27/19 19:39,"661 Cherry St, San Francisco, CA 94016" -286643,AA Batteries (4-pack),1,3.84,11/01/19 07:24,"904 Center St, San Francisco, CA 94016" -286644,34in Ultrawide Monitor,1,379.99,11/15/19 15:26,"377 7th St, Boston, MA 02215" -286645,27in 4K Gaming Monitor,1,389.99,11/14/19 03:56,"676 Adams St, Dallas, TX 75001" -286646,Bose SoundSport Headphones,1,99.99,11/02/19 20:59,"776 14th St, Seattle, WA 98101" -286647,Apple Airpods Headphones,1,150,11/10/19 09:02,"714 Spruce St, Dallas, TX 75001" -286648,Bose SoundSport Headphones,1,99.99,11/17/19 10:34,"300 5th St, San Francisco, CA 94016" -286649,AA Batteries (4-pack),1,3.84,11/24/19 17:48,"994 Elm St, San Francisco, CA 94016" -286650,USB-C Charging Cable,1,11.95,11/27/19 12:10,"664 Meadow St, San Francisco, CA 94016" -286651,Bose SoundSport Headphones,1,99.99,11/04/19 19:53,"316 Walnut St, Boston, MA 02215" -286652,USB-C Charging Cable,1,11.95,11/24/19 19:57,"783 Madison St, Dallas, TX 75001" -286653,AAA Batteries (4-pack),1,2.99,11/26/19 11:39,"204 Ridge St, San Francisco, CA 94016" -286654,AAA Batteries (4-pack),2,2.99,11/30/19 13:43,"307 9th St, Los Angeles, CA 90001" -286655,iPhone,1,700,11/15/19 15:33,"603 Sunset St, Boston, MA 02215" -286656,ThinkPad Laptop,1,999.99,11/15/19 20:23,"499 14th St, San Francisco, CA 94016" -286657,AA Batteries (4-pack),1,3.84,11/23/19 12:27,"529 Willow St, San Francisco, CA 94016" -286658,Wired Headphones,1,11.99,11/26/19 16:31,"62 2nd St, Seattle, WA 98101" -286659,AA Batteries (4-pack),1,3.84,11/26/19 15:43,"95 9th St, Los Angeles, CA 90001" -286660,AAA Batteries (4-pack),2,2.99,11/21/19 23:12,"990 North St, San Francisco, CA 94016" -286661,Wired Headphones,2,11.99,11/10/19 14:50,"180 Church St, San Francisco, CA 94016" -286662,34in Ultrawide Monitor,1,379.99,11/08/19 14:29,"293 Hill St, Atlanta, GA 30301" -286663,USB-C Charging Cable,1,11.95,11/02/19 18:28,"519 Park St, Atlanta, GA 30301" -286664,Macbook Pro Laptop,1,1700,11/10/19 23:39,"11 Johnson St, Portland, OR 97035" -286665,27in FHD Monitor,1,149.99,11/28/19 00:21,"164 Elm St, San Francisco, CA 94016" -286666,Wired Headphones,1,11.99,11/12/19 17:35,"602 South St, New York City, NY 10001" -286667,Apple Airpods Headphones,1,150,11/02/19 19:47,"970 Jefferson St, Los Angeles, CA 90001" -286668,USB-C Charging Cable,1,11.95,11/12/19 22:56,"232 Wilson St, Los Angeles, CA 90001" -286669,AA Batteries (4-pack),1,3.84,11/16/19 16:42,"825 Walnut St, San Francisco, CA 94016" -286670,AAA Batteries (4-pack),1,2.99,11/21/19 01:03,"702 Center St, New York City, NY 10001" -286671,AAA Batteries (4-pack),4,2.99,11/07/19 07:46,"546 Park St, Seattle, WA 98101" -286672,Wired Headphones,1,11.99,11/29/19 11:46,"511 North St, Dallas, TX 75001" -286673,ThinkPad Laptop,1,999.99,11/11/19 13:26,"312 7th St, Los Angeles, CA 90001" -286674,iPhone,1,700,11/15/19 16:42,"30 12th St, Los Angeles, CA 90001" -286675,27in 4K Gaming Monitor,1,389.99,11/28/19 09:16,"592 Lincoln St, San Francisco, CA 94016" -286676,34in Ultrawide Monitor,1,379.99,11/07/19 17:56,"156 Elm St, San Francisco, CA 94016" -286677,Wired Headphones,1,11.99,11/20/19 09:42,"444 8th St, Austin, TX 73301" -286678,Lightning Charging Cable,1,14.95,11/19/19 18:27,"265 Ridge St, San Francisco, CA 94016" -286679,34in Ultrawide Monitor,1,379.99,11/15/19 11:13,"511 Hill St, New York City, NY 10001" -286680,27in FHD Monitor,1,149.99,11/08/19 23:07,"125 Forest St, Austin, TX 73301" -286681,Wired Headphones,1,11.99,11/16/19 17:45,"9 Madison St, Boston, MA 02215" -286682,27in FHD Monitor,1,149.99,11/27/19 20:45,"254 North St, New York City, NY 10001" -286683,27in FHD Monitor,1,149.99,11/16/19 22:53,"947 Cedar St, San Francisco, CA 94016" -286684,Lightning Charging Cable,1,14.95,11/04/19 23:37,"304 Walnut St, New York City, NY 10001" -286685,Bose SoundSport Headphones,1,99.99,11/14/19 13:16,"444 Wilson St, New York City, NY 10001" -286686,Wired Headphones,1,11.99,11/23/19 20:29,"137 9th St, Los Angeles, CA 90001" -286687,Flatscreen TV,1,300,11/14/19 11:29,"307 11th St, San Francisco, CA 94016" -286688,AAA Batteries (4-pack),1,2.99,11/09/19 16:20,"939 Maple St, Atlanta, GA 30301" -286689,AA Batteries (4-pack),1,3.84,11/12/19 16:39,"712 West St, Boston, MA 02215" -286690,AA Batteries (4-pack),1,3.84,11/07/19 09:52,"920 Lake St, Los Angeles, CA 90001" -286691,USB-C Charging Cable,1,11.95,11/16/19 00:39,"837 13th St, San Francisco, CA 94016" -286692,USB-C Charging Cable,1,11.95,11/11/19 17:36,"85 Lincoln St, Los Angeles, CA 90001" -286693,AA Batteries (4-pack),2,3.84,11/07/19 18:14,"352 Ridge St, Dallas, TX 75001" -286694,Apple Airpods Headphones,1,150,11/12/19 03:00,"843 9th St, Dallas, TX 75001" -286695,AA Batteries (4-pack),1,3.84,11/21/19 21:49,"488 Lake St, Boston, MA 02215" -286696,Apple Airpods Headphones,1,150,11/12/19 10:37,"720 Wilson St, San Francisco, CA 94016" -286697,Apple Airpods Headphones,1,150,11/16/19 08:20,"954 Highland St, Los Angeles, CA 90001" -286698,Lightning Charging Cable,1,14.95,11/05/19 14:01,"97 Lake St, Portland, OR 97035" -286699,Apple Airpods Headphones,1,150,11/22/19 09:02,"137 Wilson St, San Francisco, CA 94016" -286700,Bose SoundSport Headphones,2,99.99,11/11/19 21:12,"245 5th St, Boston, MA 02215" -286701,Apple Airpods Headphones,1,150,11/09/19 06:32,"455 Cedar St, Boston, MA 02215" -286702,27in FHD Monitor,1,149.99,11/18/19 12:33,"845 6th St, San Francisco, CA 94016" -286703,Apple Airpods Headphones,1,150,11/13/19 09:40,"570 West St, San Francisco, CA 94016" -286704,Wired Headphones,1,11.99,11/16/19 13:05,"868 Jefferson St, San Francisco, CA 94016" -286705,Google Phone,1,600,11/08/19 17:22,"228 Jefferson St, Austin, TX 73301" -286706,AAA Batteries (4-pack),4,2.99,11/04/19 14:22,"478 10th St, Boston, MA 02215" -286707,AAA Batteries (4-pack),1,2.99,11/21/19 14:47,"929 Walnut St, New York City, NY 10001" -286708,Apple Airpods Headphones,1,150,11/07/19 18:37,"919 Hill St, Boston, MA 02215" -286709,AA Batteries (4-pack),1,3.84,11/07/19 19:13,"727 2nd St, Dallas, TX 75001" -286710,Bose SoundSport Headphones,1,99.99,11/23/19 21:45,"3 Cherry St, Los Angeles, CA 90001" -286711,AAA Batteries (4-pack),1,2.99,11/09/19 21:06,"671 South St, San Francisco, CA 94016" -286712,Wired Headphones,1,11.99,11/16/19 22:12,"692 1st St, Dallas, TX 75001" -286713,AA Batteries (4-pack),1,3.84,11/20/19 15:49,"494 Center St, Atlanta, GA 30301" -286714,AAA Batteries (4-pack),1,2.99,11/11/19 12:08,"693 Ridge St, Atlanta, GA 30301" -286715,Apple Airpods Headphones,1,150,11/11/19 12:31,"842 Hill St, Austin, TX 73301" -286716,Wired Headphones,1,11.99,11/25/19 15:18,"177 Chestnut St, Los Angeles, CA 90001" -286717,AA Batteries (4-pack),1,3.84,11/12/19 15:16,"555 Meadow St, Los Angeles, CA 90001" -286718,AA Batteries (4-pack),1,3.84,11/21/19 15:55,"982 12th St, San Francisco, CA 94016" -286719,AA Batteries (4-pack),1,3.84,11/03/19 15:11,"394 Chestnut St, Boston, MA 02215" -286720,AA Batteries (4-pack),1,3.84,11/22/19 23:04,"48 Madison St, Seattle, WA 98101" -286721,Wired Headphones,1,11.99,11/17/19 21:18,"524 Lake St, Los Angeles, CA 90001" -286722,Wired Headphones,1,11.99,11/14/19 03:26,"830 6th St, Austin, TX 73301" -286723,AAA Batteries (4-pack),2,2.99,11/06/19 13:16,"459 Center St, Austin, TX 73301" -286724,Wired Headphones,1,11.99,11/17/19 22:08,"88 7th St, New York City, NY 10001" -286725,USB-C Charging Cable,1,11.95,11/16/19 10:49,"891 Dogwood St, New York City, NY 10001" -286726,USB-C Charging Cable,1,11.95,11/30/19 14:48,"753 Lakeview St, Seattle, WA 98101" -286727,Lightning Charging Cable,1,14.95,11/09/19 14:56,"82 Forest St, New York City, NY 10001" -286728,USB-C Charging Cable,1,11.95,11/19/19 19:28,"634 Lincoln St, San Francisco, CA 94016" -286729,Lightning Charging Cable,1,14.95,11/13/19 13:36,"350 13th St, Dallas, TX 75001" -286730,Wired Headphones,1,11.99,11/23/19 12:29,"410 6th St, Dallas, TX 75001" -286731,AAA Batteries (4-pack),2,2.99,11/05/19 00:20,"296 Willow St, Boston, MA 02215" -286732,AAA Batteries (4-pack),1,2.99,11/29/19 14:56,"653 Cherry St, New York City, NY 10001" -286733,Flatscreen TV,1,300,11/09/19 04:42,"669 7th St, New York City, NY 10001" -286734,Bose SoundSport Headphones,1,99.99,11/25/19 20:19,"249 Dogwood St, San Francisco, CA 94016" -286735,AA Batteries (4-pack),1,3.84,11/18/19 17:23,"142 West St, Atlanta, GA 30301" -286736,34in Ultrawide Monitor,1,379.99,11/11/19 13:51,"173 Park St, San Francisco, CA 94016" -286737,Apple Airpods Headphones,1,150,11/16/19 17:37,"43 Pine St, Dallas, TX 75001" -286738,Apple Airpods Headphones,1,150,11/22/19 10:04,"415 Madison St, New York City, NY 10001" -286739,Apple Airpods Headphones,1,150,11/30/19 08:22,"805 Jefferson St, Boston, MA 02215" -286740,Apple Airpods Headphones,1,150,11/29/19 11:10,"950 4th St, San Francisco, CA 94016" -286741,Apple Airpods Headphones,1,150,11/25/19 10:13,"13 Washington St, Boston, MA 02215" -286742,Google Phone,1,600,11/13/19 19:59,"181 West St, San Francisco, CA 94016" -286742,USB-C Charging Cable,1,11.95,11/13/19 19:59,"181 West St, San Francisco, CA 94016" -286743,Apple Airpods Headphones,1,150,11/03/19 12:52,"484 Church St, Los Angeles, CA 90001" -286744,Apple Airpods Headphones,1,150,11/01/19 13:20,"239 West St, Seattle, WA 98101" -286745,27in 4K Gaming Monitor,1,389.99,11/29/19 18:47,"269 South St, New York City, NY 10001" -286746,AAA Batteries (4-pack),3,2.99,11/01/19 16:11,"990 Jefferson St, Portland, OR 97035" -286747,Apple Airpods Headphones,1,150,11/27/19 12:47,"806 North St, Los Angeles, CA 90001" -286748,20in Monitor,1,109.99,11/28/19 11:08,"445 Ridge St, New York City, NY 10001" -286749,Lightning Charging Cable,1,14.95,11/22/19 20:40,"114 2nd St, Atlanta, GA 30301" -286750,AAA Batteries (4-pack),2,2.99,11/01/19 22:42,"984 Chestnut St, San Francisco, CA 94016" -286751,USB-C Charging Cable,1,11.95,11/30/19 09:46,"701 Walnut St, San Francisco, CA 94016" -286752,ThinkPad Laptop,1,999.99,11/26/19 23:57,"825 Chestnut St, New York City, NY 10001" -286753,USB-C Charging Cable,1,11.95,11/01/19 07:49,"154 Park St, San Francisco, CA 94016" -286754,Apple Airpods Headphones,1,150,11/19/19 19:57,"770 Lincoln St, Los Angeles, CA 90001" -286755,AAA Batteries (4-pack),1,2.99,11/30/19 12:28,"294 Cedar St, Los Angeles, CA 90001" -286756,Lightning Charging Cable,1,14.95,11/16/19 19:39,"591 13th St, New York City, NY 10001" -286757,Lightning Charging Cable,1,14.95,11/08/19 10:22,"325 Maple St, Atlanta, GA 30301" -286758,AA Batteries (4-pack),2,3.84,11/18/19 03:24,"160 Wilson St, San Francisco, CA 94016" -286759,AAA Batteries (4-pack),1,2.99,11/19/19 17:25,"133 Center St, Boston, MA 02215" -286760,AAA Batteries (4-pack),1,2.99,11/27/19 18:21,"293 10th St, New York City, NY 10001" -286760,Bose SoundSport Headphones,1,99.99,11/27/19 18:21,"293 10th St, New York City, NY 10001" -286761,AA Batteries (4-pack),2,3.84,11/17/19 14:28,"134 Jefferson St, Seattle, WA 98101" -286762,Lightning Charging Cable,1,14.95,11/01/19 14:11,"808 Cedar St, Seattle, WA 98101" -286763,AA Batteries (4-pack),1,3.84,11/30/19 07:40,"616 Spruce St, Boston, MA 02215" -286764,34in Ultrawide Monitor,1,379.99,11/09/19 19:55,"622 14th St, Austin, TX 73301" -286765,AAA Batteries (4-pack),1,2.99,11/05/19 01:05,"343 Maple St, New York City, NY 10001" -286766,Bose SoundSport Headphones,1,99.99,11/07/19 00:03,"435 8th St, Los Angeles, CA 90001" -286767,Lightning Charging Cable,1,14.95,11/05/19 22:18,"882 Dogwood St, Portland, OR 97035" -286768,Flatscreen TV,1,300,11/14/19 09:19,"839 Maple St, San Francisco, CA 94016" -286769,Wired Headphones,1,11.99,11/26/19 14:53,"615 Meadow St, New York City, NY 10001" -286769,USB-C Charging Cable,1,11.95,11/26/19 14:53,"615 Meadow St, New York City, NY 10001" -286770,Lightning Charging Cable,1,14.95,11/20/19 18:35,"493 South St, Boston, MA 02215" -286771,Apple Airpods Headphones,1,150,11/26/19 17:07,"826 9th St, San Francisco, CA 94016" -286772,34in Ultrawide Monitor,1,379.99,11/06/19 11:51,"994 Church St, San Francisco, CA 94016" -286773,Vareebadd Phone,1,400,11/11/19 12:29,"795 Cedar St, Boston, MA 02215" -286774,USB-C Charging Cable,1,11.95,11/20/19 14:14,"277 Pine St, San Francisco, CA 94016" -286775,Wired Headphones,1,11.99,11/17/19 06:25,"634 1st St, Austin, TX 73301" -286776,Bose SoundSport Headphones,1,99.99,11/20/19 12:07,"798 5th St, San Francisco, CA 94016" -286777,Lightning Charging Cable,1,14.95,11/05/19 12:05,"852 Walnut St, Seattle, WA 98101" -286778,34in Ultrawide Monitor,1,379.99,11/27/19 11:18,"379 Sunset St, Los Angeles, CA 90001" -286779,AAA Batteries (4-pack),2,2.99,11/06/19 23:17,"440 Walnut St, Seattle, WA 98101" -286780,Google Phone,1,600,11/04/19 02:43,"911 2nd St, Austin, TX 73301" -286780,USB-C Charging Cable,1,11.95,11/04/19 02:43,"911 2nd St, Austin, TX 73301" -286781,AAA Batteries (4-pack),2,2.99,11/16/19 09:18,"893 Cherry St, San Francisco, CA 94016" -286782,USB-C Charging Cable,1,11.95,11/26/19 19:01,"401 11th St, New York City, NY 10001" -286783,USB-C Charging Cable,1,11.95,11/08/19 13:43,"998 Forest St, Austin, TX 73301" -286784,Apple Airpods Headphones,1,150,11/07/19 06:00,"196 Madison St, Los Angeles, CA 90001" -286785,Wired Headphones,1,11.99,11/23/19 17:38,"764 11th St, Los Angeles, CA 90001" -286786,Flatscreen TV,1,300,11/27/19 13:53,"214 8th St, Portland, ME 04101" -286787,AA Batteries (4-pack),1,3.84,11/07/19 19:04,"144 Hickory St, Portland, OR 97035" -286788,Lightning Charging Cable,1,14.95,11/06/19 13:15,"215 8th St, San Francisco, CA 94016" -286789,Google Phone,1,600,11/02/19 10:26,"37 Walnut St, Austin, TX 73301" -286790,Bose SoundSport Headphones,1,99.99,11/11/19 08:38,"242 Center St, Los Angeles, CA 90001" -286791,Vareebadd Phone,1,400,11/24/19 11:44,"521 Park St, Seattle, WA 98101" -286792,iPhone,1,700,11/19/19 18:36,"17 10th St, Seattle, WA 98101" -286793,Bose SoundSport Headphones,1,99.99,11/14/19 21:32,"762 Forest St, Boston, MA 02215" -286794,27in FHD Monitor,1,149.99,11/29/19 13:04,"125 Center St, Seattle, WA 98101" -286795,AAA Batteries (4-pack),1,2.99,11/20/19 07:40,"850 Hill St, San Francisco, CA 94016" -286795,27in FHD Monitor,1,149.99,11/20/19 07:40,"850 Hill St, San Francisco, CA 94016" -286796,AAA Batteries (4-pack),1,2.99,11/29/19 02:19,"574 River St, Los Angeles, CA 90001" -286797,Macbook Pro Laptop,1,1700,11/16/19 09:05,"868 1st St, Los Angeles, CA 90001" -286798,Macbook Pro Laptop,1,1700,11/25/19 16:43,"396 Cherry St, San Francisco, CA 94016" -286799,Lightning Charging Cable,1,14.95,11/26/19 02:13,"587 6th St, Atlanta, GA 30301" -286800,USB-C Charging Cable,2,11.95,11/16/19 12:01,"129 Madison St, New York City, NY 10001" -286801,AAA Batteries (4-pack),1,2.99,11/16/19 14:29,"938 Center St, Atlanta, GA 30301" -286802,AAA Batteries (4-pack),1,2.99,11/29/19 13:55,"477 Park St, San Francisco, CA 94016" -286803,Lightning Charging Cable,1,14.95,11/12/19 08:59,"378 12th St, Boston, MA 02215" -286804,Lightning Charging Cable,1,14.95,11/29/19 12:31,"535 13th St, Boston, MA 02215" -286805,AAA Batteries (4-pack),1,2.99,11/23/19 19:21,"647 River St, Boston, MA 02215" -286806,AAA Batteries (4-pack),2,2.99,11/06/19 23:42,"813 Spruce St, San Francisco, CA 94016" -286807,AA Batteries (4-pack),2,3.84,11/21/19 12:54,"622 Lakeview St, Austin, TX 73301" -286808,Bose SoundSport Headphones,1,99.99,11/30/19 15:47,"573 11th St, Portland, OR 97035" -286808,27in 4K Gaming Monitor,1,389.99,11/30/19 15:47,"573 11th St, Portland, OR 97035" -286809,Lightning Charging Cable,1,14.95,11/22/19 15:40,"921 Jefferson St, Seattle, WA 98101" -286810,Wired Headphones,1,11.99,11/22/19 00:30,"726 Elm St, Boston, MA 02215" -286811,27in FHD Monitor,1,149.99,11/20/19 12:23,"708 Adams St, Los Angeles, CA 90001" -286812,Wired Headphones,1,11.99,11/11/19 11:18,"290 6th St, San Francisco, CA 94016" -,,,,, -286813,Apple Airpods Headphones,1,150,11/24/19 19:35,"121 Hill St, Dallas, TX 75001" -286814,AA Batteries (4-pack),1,3.84,11/27/19 18:49,"465 7th St, Boston, MA 02215" -286815,Bose SoundSport Headphones,1,99.99,11/25/19 17:21,"954 Church St, San Francisco, CA 94016" -286816,27in FHD Monitor,1,149.99,11/30/19 18:08,"692 4th St, San Francisco, CA 94016" -286817,USB-C Charging Cable,1,11.95,11/26/19 03:51,"500 North St, Los Angeles, CA 90001" -286818,Apple Airpods Headphones,1,150,11/10/19 13:04,"838 9th St, Portland, OR 97035" -286819,USB-C Charging Cable,1,11.95,11/24/19 17:59,"807 North St, New York City, NY 10001" -286820,Wired Headphones,1,11.99,11/28/19 16:24,"140 Church St, San Francisco, CA 94016" -286821,Vareebadd Phone,1,400,11/19/19 17:59,"356 Hill St, Dallas, TX 75001" -286822,Lightning Charging Cable,1,14.95,11/06/19 13:36,"599 Cherry St, San Francisco, CA 94016" -286823,34in Ultrawide Monitor,1,379.99,11/27/19 00:16,"773 River St, New York City, NY 10001" -286824,Apple Airpods Headphones,1,150,11/26/19 18:26,"337 Sunset St, Los Angeles, CA 90001" -286825,Flatscreen TV,1,300,11/21/19 07:29,"965 Park St, Los Angeles, CA 90001" -286826,Wired Headphones,1,11.99,11/04/19 00:21,"678 Johnson St, Boston, MA 02215" -286827,USB-C Charging Cable,1,11.95,11/17/19 16:18,"836 West St, Boston, MA 02215" -286828,AAA Batteries (4-pack),2,2.99,11/08/19 10:34,"573 Sunset St, San Francisco, CA 94016" -286829,34in Ultrawide Monitor,1,379.99,11/21/19 16:05,"221 Wilson St, New York City, NY 10001" -286830,Apple Airpods Headphones,1,150,11/11/19 17:57,"533 2nd St, Los Angeles, CA 90001" -286831,Apple Airpods Headphones,1,150,11/01/19 16:19,"370 Elm St, New York City, NY 10001" -286832,20in Monitor,1,109.99,11/12/19 11:12,"309 Center St, Seattle, WA 98101" -286833,Wired Headphones,1,11.99,11/23/19 14:08,"314 Center St, San Francisco, CA 94016" -286833,Lightning Charging Cable,1,14.95,11/23/19 14:08,"314 Center St, San Francisco, CA 94016" -286834,ThinkPad Laptop,1,999.99,11/23/19 10:48,"485 Meadow St, Portland, OR 97035" -286835,USB-C Charging Cable,1,11.95,11/01/19 13:30,"838 Wilson St, Atlanta, GA 30301" -286836,27in 4K Gaming Monitor,1,389.99,11/24/19 15:53,"497 Lincoln St, Boston, MA 02215" -286837,AAA Batteries (4-pack),1,2.99,11/18/19 13:59,"159 5th St, Los Angeles, CA 90001" -286838,ThinkPad Laptop,1,999.99,11/26/19 19:41,"802 6th St, Los Angeles, CA 90001" -286839,Apple Airpods Headphones,1,150,11/05/19 09:52,"79 Spruce St, Los Angeles, CA 90001" -286840,AA Batteries (4-pack),1,3.84,11/08/19 12:07,"669 Wilson St, Dallas, TX 75001" -286841,AA Batteries (4-pack),2,3.84,11/18/19 12:48,"831 Willow St, Boston, MA 02215" -286842,AA Batteries (4-pack),2,3.84,11/07/19 16:11,"6 Hickory St, Dallas, TX 75001" -286843,USB-C Charging Cable,1,11.95,11/29/19 18:37,"888 14th St, Portland, OR 97035" -286844,Bose SoundSport Headphones,1,99.99,11/17/19 13:52,"10 8th St, Boston, MA 02215" -286845,Wired Headphones,1,11.99,11/19/19 10:52,"485 Lakeview St, San Francisco, CA 94016" -286846,Wired Headphones,1,11.99,11/20/19 09:29,"724 North St, Los Angeles, CA 90001" -286847,Lightning Charging Cable,1,14.95,11/03/19 19:08,"89 4th St, Seattle, WA 98101" -286848,27in FHD Monitor,1,149.99,11/28/19 19:01,"214 8th St, New York City, NY 10001" -286849,27in 4K Gaming Monitor,1,389.99,11/25/19 17:13,"841 North St, Los Angeles, CA 90001" -286850,Lightning Charging Cable,1,14.95,11/27/19 15:23,"690 Wilson St, Seattle, WA 98101" -286851,Wired Headphones,1,11.99,11/05/19 14:02,"236 River St, Los Angeles, CA 90001" -286852,Macbook Pro Laptop,1,1700,11/05/19 09:42,"690 1st St, Seattle, WA 98101" -286853,Wired Headphones,1,11.99,11/07/19 21:26,"621 7th St, Dallas, TX 75001" -286854,USB-C Charging Cable,1,11.95,11/24/19 16:44,"474 Cherry St, New York City, NY 10001" -286855,AA Batteries (4-pack),1,3.84,11/16/19 11:19,"65 7th St, Los Angeles, CA 90001" -286856,Google Phone,1,600,11/29/19 10:20,"422 1st St, Boston, MA 02215" -286856,Wired Headphones,2,11.99,11/29/19 10:20,"422 1st St, Boston, MA 02215" -286857,USB-C Charging Cable,1,11.95,11/17/19 11:58,"633 Hill St, Los Angeles, CA 90001" -286858,USB-C Charging Cable,1,11.95,11/26/19 15:49,"422 8th St, New York City, NY 10001" -286859,AAA Batteries (4-pack),1,2.99,11/29/19 13:46,"525 8th St, San Francisco, CA 94016" -286860,Macbook Pro Laptop,1,1700,11/20/19 00:19,"921 14th St, San Francisco, CA 94016" -286861,Lightning Charging Cable,1,14.95,11/27/19 17:28,"607 River St, Atlanta, GA 30301" -286862,Apple Airpods Headphones,1,150,11/21/19 19:06,"462 Lincoln St, Atlanta, GA 30301" -286863,iPhone,1,700,11/08/19 22:51,"67 Lake St, Seattle, WA 98101" -286864,Bose SoundSport Headphones,1,99.99,11/07/19 03:02,"857 Johnson St, New York City, NY 10001" -286865,Wired Headphones,2,11.99,11/19/19 09:17,"805 1st St, Portland, OR 97035" -286866,iPhone,1,700,11/21/19 20:39,"86 North St, New York City, NY 10001" -286867,Macbook Pro Laptop,1,1700,11/06/19 15:33,"973 7th St, San Francisco, CA 94016" -286868,USB-C Charging Cable,2,11.95,11/02/19 14:36,"730 Center St, Dallas, TX 75001" -286869,Apple Airpods Headphones,1,150,11/07/19 05:02,"919 Madison St, New York City, NY 10001" -286870,USB-C Charging Cable,1,11.95,11/11/19 20:28,"822 11th St, Seattle, WA 98101" -286871,Macbook Pro Laptop,1,1700,11/14/19 21:23,"941 Willow St, Seattle, WA 98101" -286872,AA Batteries (4-pack),2,3.84,11/04/19 23:26,"896 Spruce St, San Francisco, CA 94016" -286873,Lightning Charging Cable,1,14.95,11/26/19 11:03,"200 12th St, Boston, MA 02215" -286874,34in Ultrawide Monitor,1,379.99,11/04/19 22:17,"424 11th St, New York City, NY 10001" -286875,USB-C Charging Cable,1,11.95,11/08/19 20:11,"299 Lake St, Dallas, TX 75001" -286876,iPhone,1,700,11/28/19 10:17,"710 6th St, Atlanta, GA 30301" -286876,Lightning Charging Cable,1,14.95,11/28/19 10:17,"710 6th St, Atlanta, GA 30301" -286877,AAA Batteries (4-pack),1,2.99,11/17/19 10:06,"106 Pine St, Los Angeles, CA 90001" -286878,Lightning Charging Cable,1,14.95,11/27/19 18:57,"898 Park St, Dallas, TX 75001" -286879,Macbook Pro Laptop,1,1700,11/05/19 18:11,"915 Dogwood St, New York City, NY 10001" -286880,27in FHD Monitor,1,149.99,11/12/19 14:40,"877 9th St, Los Angeles, CA 90001" -286881,iPhone,1,700,11/02/19 00:54,"773 Cedar St, Dallas, TX 75001" -286881,Lightning Charging Cable,1,14.95,11/02/19 00:54,"773 Cedar St, Dallas, TX 75001" -286882,iPhone,1,700,11/02/19 15:38,"570 Maple St, San Francisco, CA 94016" -286883,Apple Airpods Headphones,1,150,11/20/19 22:35,"830 Sunset St, Dallas, TX 75001" -286884,Google Phone,1,600,11/16/19 00:09,"46 Chestnut St, Portland, OR 97035" -286884,USB-C Charging Cable,1,11.95,11/16/19 00:09,"46 Chestnut St, Portland, OR 97035" -286885,27in 4K Gaming Monitor,1,389.99,11/12/19 15:20,"40 Walnut St, Portland, OR 97035" -286886,AA Batteries (4-pack),2,3.84,11/29/19 11:25,"275 Center St, Boston, MA 02215" -286887,27in 4K Gaming Monitor,1,389.99,11/18/19 18:15,"249 Park St, San Francisco, CA 94016" -286888,AAA Batteries (4-pack),6,2.99,11/01/19 09:51,"2 River St, San Francisco, CA 94016" -286889,Wired Headphones,1,11.99,11/22/19 14:18,"867 Chestnut St, San Francisco, CA 94016" -286890,AA Batteries (4-pack),1,3.84,11/17/19 12:57,"51 4th St, San Francisco, CA 94016" -286891,Lightning Charging Cable,1,14.95,11/28/19 10:50,"741 South St, Los Angeles, CA 90001" -286892,Bose SoundSport Headphones,1,99.99,11/16/19 15:29,"436 Pine St, San Francisco, CA 94016" -286893,Wired Headphones,1,11.99,11/27/19 22:15,"592 13th St, Los Angeles, CA 90001" -286894,iPhone,1,700,11/21/19 18:59,"836 8th St, Los Angeles, CA 90001" -286895,27in 4K Gaming Monitor,1,389.99,11/09/19 11:10,"287 9th St, Los Angeles, CA 90001" -286896,Wired Headphones,1,11.99,11/23/19 14:05,"584 6th St, San Francisco, CA 94016" -286897,Bose SoundSport Headphones,1,99.99,11/24/19 13:28,"414 2nd St, New York City, NY 10001" -286898,Apple Airpods Headphones,1,150,11/10/19 12:35,"382 Forest St, San Francisco, CA 94016" -286899,USB-C Charging Cable,1,11.95,11/20/19 14:36,"772 Forest St, Atlanta, GA 30301" -286900,Lightning Charging Cable,1,14.95,11/08/19 21:43,"873 Park St, San Francisco, CA 94016" -286901,USB-C Charging Cable,1,11.95,11/22/19 00:50,"850 11th St, Austin, TX 73301" -286902,iPhone,1,700,11/16/19 14:51,"894 Washington St, Los Angeles, CA 90001" -286903,AA Batteries (4-pack),2,3.84,11/10/19 09:50,"288 14th St, Los Angeles, CA 90001" -286904,USB-C Charging Cable,1,11.95,11/06/19 21:38,"301 South St, Seattle, WA 98101" -286905,AA Batteries (4-pack),1,3.84,11/15/19 18:30,"801 West St, Los Angeles, CA 90001" -286906,USB-C Charging Cable,1,11.95,11/21/19 16:46,"333 Park St, Los Angeles, CA 90001" -286907,27in FHD Monitor,1,149.99,11/02/19 14:54,"533 12th St, Dallas, TX 75001" -286908,Wired Headphones,1,11.99,11/27/19 01:19,"351 Chestnut St, San Francisco, CA 94016" -286909,Lightning Charging Cable,1,14.95,11/26/19 11:12,"45 Jackson St, Los Angeles, CA 90001" -286910,Lightning Charging Cable,1,14.95,11/05/19 21:05,"156 Cedar St, New York City, NY 10001" -286911,Lightning Charging Cable,1,14.95,11/09/19 10:48,"643 Pine St, Boston, MA 02215" -286912,AA Batteries (4-pack),3,3.84,11/06/19 10:16,"935 Center St, Los Angeles, CA 90001" -286913,AA Batteries (4-pack),3,3.84,11/30/19 19:47,"402 13th St, New York City, NY 10001" -286914,Apple Airpods Headphones,1,150,11/30/19 23:11,"873 10th St, Los Angeles, CA 90001" -286915,Flatscreen TV,1,300,11/05/19 18:58,"241 11th St, New York City, NY 10001" -286916,Apple Airpods Headphones,1,150,11/08/19 20:02,"587 7th St, San Francisco, CA 94016" -286917,AAA Batteries (4-pack),1,2.99,11/30/19 22:47,"103 Cedar St, Portland, ME 04101" -286918,USB-C Charging Cable,1,11.95,11/02/19 17:37,"467 11th St, San Francisco, CA 94016" -286919,AA Batteries (4-pack),1,3.84,11/27/19 08:32,"929 Highland St, New York City, NY 10001" -286919,Wired Headphones,2,11.99,11/27/19 08:32,"929 Highland St, New York City, NY 10001" -286920,AAA Batteries (4-pack),2,2.99,11/29/19 14:53,"207 9th St, San Francisco, CA 94016" -286921,Flatscreen TV,1,300,11/15/19 15:28,"916 Jefferson St, Atlanta, GA 30301" -286922,ThinkPad Laptop,1,999.99,11/30/19 22:56,"112 Forest St, Los Angeles, CA 90001" -286923,AAA Batteries (4-pack),1,2.99,11/14/19 19:49,"67 13th St, New York City, NY 10001" -286924,Lightning Charging Cable,1,14.95,11/15/19 11:23,"366 Highland St, Los Angeles, CA 90001" -286925,iPhone,1,700,11/29/19 15:31,"7 11th St, Austin, TX 73301" -286925,Lightning Charging Cable,1,14.95,11/29/19 15:31,"7 11th St, Austin, TX 73301" -286926,Bose SoundSport Headphones,1,99.99,11/26/19 18:30,"12 7th St, Los Angeles, CA 90001" -286927,Lightning Charging Cable,1,14.95,11/25/19 20:42,"52 6th St, Atlanta, GA 30301" -286928,AAA Batteries (4-pack),1,2.99,11/09/19 22:59,"54 5th St, Los Angeles, CA 90001" -286929,Lightning Charging Cable,1,14.95,11/08/19 02:13,"189 South St, San Francisco, CA 94016" -286930,AA Batteries (4-pack),1,3.84,11/30/19 19:37,"289 14th St, San Francisco, CA 94016" -286931,Lightning Charging Cable,1,14.95,11/10/19 09:38,"155 1st St, San Francisco, CA 94016" -286932,Apple Airpods Headphones,1,150,11/16/19 17:59,"630 Ridge St, Los Angeles, CA 90001" -286933,Wired Headphones,1,11.99,11/23/19 01:23,"325 Wilson St, Atlanta, GA 30301" -286934,AAA Batteries (4-pack),1,2.99,11/02/19 10:56,"596 8th St, San Francisco, CA 94016" -286935,Wired Headphones,1,11.99,11/24/19 21:29,"387 Wilson St, San Francisco, CA 94016" -286936,Flatscreen TV,1,300,11/26/19 18:37,"32 Walnut St, Los Angeles, CA 90001" -286937,27in 4K Gaming Monitor,1,389.99,11/15/19 17:31,"445 Sunset St, Atlanta, GA 30301" -286938,Lightning Charging Cable,1,14.95,11/23/19 15:29,"579 8th St, Los Angeles, CA 90001" -286939,Lightning Charging Cable,1,14.95,11/08/19 23:47,"121 Jefferson St, Los Angeles, CA 90001" -286940,Bose SoundSport Headphones,1,99.99,11/29/19 19:28,"790 Adams St, Boston, MA 02215" -286941,Lightning Charging Cable,1,14.95,11/21/19 15:33,"760 6th St, New York City, NY 10001" -286942,Google Phone,1,600,11/15/19 20:08,"480 West St, New York City, NY 10001" -286942,Macbook Pro Laptop,1,1700,11/15/19 20:08,"480 West St, New York City, NY 10001" -286943,AAA Batteries (4-pack),2,2.99,11/08/19 18:01,"886 12th St, San Francisco, CA 94016" -286944,AAA Batteries (4-pack),2,2.99,11/22/19 00:14,"286 Chestnut St, San Francisco, CA 94016" -286945,Flatscreen TV,1,300,11/17/19 11:55,"86 Willow St, Seattle, WA 98101" -286945,AAA Batteries (4-pack),1,2.99,11/17/19 11:55,"86 Willow St, Seattle, WA 98101" -286946,Lightning Charging Cable,1,14.95,11/23/19 16:25,"892 Pine St, San Francisco, CA 94016" -286947,AAA Batteries (4-pack),2,2.99,11/11/19 15:33,"326 11th St, Los Angeles, CA 90001" -286948,27in 4K Gaming Monitor,1,389.99,11/10/19 17:11,"176 8th St, San Francisco, CA 94016" -286949,iPhone,1,700,11/12/19 20:14,"667 River St, Seattle, WA 98101" -286949,Lightning Charging Cable,1,14.95,11/12/19 20:14,"667 River St, Seattle, WA 98101" -286950,AAA Batteries (4-pack),1,2.99,11/22/19 21:29,"502 Hill St, Austin, TX 73301" -286951,Bose SoundSport Headphones,1,99.99,11/08/19 18:34,"979 2nd St, San Francisco, CA 94016" -286952,iPhone,1,700,11/08/19 12:47,"279 Hill St, Atlanta, GA 30301" -286952,Lightning Charging Cable,1,14.95,11/08/19 12:47,"279 Hill St, Atlanta, GA 30301" -286953,USB-C Charging Cable,1,11.95,11/02/19 13:40,"483 West St, Portland, OR 97035" -286954,AAA Batteries (4-pack),2,2.99,11/04/19 14:22,"885 1st St, Dallas, TX 75001" -286955,Apple Airpods Headphones,1,150,11/06/19 13:28,"618 Johnson St, Dallas, TX 75001" -286956,27in FHD Monitor,1,149.99,11/27/19 17:03,"641 1st St, San Francisco, CA 94016" -286957,AAA Batteries (4-pack),2,2.99,11/12/19 21:26,"764 Spruce St, Boston, MA 02215" -286958,Apple Airpods Headphones,1,150,11/23/19 06:34,"222 1st St, New York City, NY 10001" -286959,Macbook Pro Laptop,1,1700,11/19/19 09:40,"725 4th St, Los Angeles, CA 90001" -286960,AA Batteries (4-pack),1,3.84,11/13/19 16:26,"694 Lakeview St, San Francisco, CA 94016" -286961,iPhone,1,700,11/06/19 17:06,"928 10th St, Atlanta, GA 30301" -286961,Apple Airpods Headphones,1,150,11/06/19 17:06,"928 10th St, Atlanta, GA 30301" -286962,Wired Headphones,2,11.99,11/23/19 20:34,"229 Maple St, New York City, NY 10001" -286963,AAA Batteries (4-pack),2,2.99,11/12/19 12:52,"97 Washington St, Seattle, WA 98101" -286964,iPhone,1,700,11/19/19 18:33,"900 Maple St, Seattle, WA 98101" -286965,AA Batteries (4-pack),2,3.84,11/02/19 16:32,"254 Park St, Atlanta, GA 30301" -286966,iPhone,1,700,11/06/19 13:50,"515 Highland St, Los Angeles, CA 90001" -286967,Apple Airpods Headphones,1,150,11/17/19 13:26,"895 Wilson St, San Francisco, CA 94016" -286968,Apple Airpods Headphones,1,150,11/08/19 19:38,"516 Lakeview St, New York City, NY 10001" -286969,Wired Headphones,1,11.99,11/30/19 20:33,"417 Willow St, Dallas, TX 75001" -286970,27in FHD Monitor,1,149.99,11/30/19 20:29,"646 11th St, San Francisco, CA 94016" -286971,AAA Batteries (4-pack),4,2.99,11/09/19 18:48,"198 Ridge St, Boston, MA 02215" -286972,AAA Batteries (4-pack),1,2.99,11/18/19 23:11,"999 River St, Los Angeles, CA 90001" -286973,AAA Batteries (4-pack),1,2.99,11/07/19 16:53,"599 7th St, Atlanta, GA 30301" -286974,Google Phone,1,600,11/23/19 06:39,"468 2nd St, Dallas, TX 75001" -286975,AAA Batteries (4-pack),1,2.99,11/05/19 20:12,"393 Dogwood St, Atlanta, GA 30301" -286976,USB-C Charging Cable,1,11.95,11/14/19 20:46,"69 Pine St, Los Angeles, CA 90001" -286977,Wired Headphones,1,11.99,11/30/19 09:21,"989 Chestnut St, Atlanta, GA 30301" -286978,Lightning Charging Cable,1,14.95,11/15/19 19:16,"720 West St, San Francisco, CA 94016" -286979,USB-C Charging Cable,1,11.95,11/05/19 12:20,"101 Forest St, Seattle, WA 98101" -286980,Bose SoundSport Headphones,1,99.99,11/28/19 18:50,"793 4th St, Boston, MA 02215" -286981,AAA Batteries (4-pack),1,2.99,11/08/19 16:13,"186 6th St, Los Angeles, CA 90001" -286982,USB-C Charging Cable,1,11.95,11/22/19 19:20,"753 Washington St, Dallas, TX 75001" -286983,Wired Headphones,1,11.99,11/28/19 11:53,"212 Meadow St, Atlanta, GA 30301" -286984,Google Phone,1,600,11/16/19 21:13,"268 Meadow St, Los Angeles, CA 90001" -286984,Wired Headphones,1,11.99,11/16/19 21:13,"268 Meadow St, Los Angeles, CA 90001" -286985,27in 4K Gaming Monitor,1,389.99,11/03/19 16:32,"237 Adams St, Dallas, TX 75001" -286986,USB-C Charging Cable,1,11.95,11/16/19 08:33,"329 Jefferson St, Dallas, TX 75001" -286987,27in 4K Gaming Monitor,1,389.99,11/05/19 07:40,"110 Hickory St, New York City, NY 10001" -286988,Lightning Charging Cable,1,14.95,11/15/19 09:10,"175 Jackson St, New York City, NY 10001" -286989,AAA Batteries (4-pack),2,2.99,11/03/19 12:52,"316 Elm St, Los Angeles, CA 90001" -286990,20in Monitor,1,109.99,11/13/19 11:08,"130 Elm St, Austin, TX 73301" -286991,AAA Batteries (4-pack),1,2.99,11/14/19 15:48,"394 Hickory St, Los Angeles, CA 90001" -286992,Apple Airpods Headphones,1,150,11/05/19 20:46,"233 Dogwood St, Los Angeles, CA 90001" -286993,Vareebadd Phone,1,400,11/09/19 14:10,"294 Pine St, Seattle, WA 98101" -286993,USB-C Charging Cable,1,11.95,11/09/19 14:10,"294 Pine St, Seattle, WA 98101" -286994,USB-C Charging Cable,1,11.95,11/13/19 07:38,"27 Cherry St, Dallas, TX 75001" -286995,Lightning Charging Cable,1,14.95,11/07/19 23:29,"943 Highland St, New York City, NY 10001" -286996,AAA Batteries (4-pack),2,2.99,11/01/19 10:29,"545 Washington St, Los Angeles, CA 90001" -286997,34in Ultrawide Monitor,1,379.99,11/26/19 22:56,"100 10th St, Portland, ME 04101" -286998,34in Ultrawide Monitor,1,379.99,11/04/19 21:22,"361 12th St, New York City, NY 10001" -286999,Apple Airpods Headphones,1,150,11/10/19 06:37,"984 Lake St, Los Angeles, CA 90001" -287000,USB-C Charging Cable,1,11.95,11/01/19 14:52,"76 Church St, Dallas, TX 75001" -287001,AA Batteries (4-pack),1,3.84,11/24/19 17:45,"442 Ridge St, Austin, TX 73301" -287002,Apple Airpods Headphones,1,150,11/12/19 18:26,"19 8th St, Seattle, WA 98101" -287003,Flatscreen TV,1,300,11/20/19 14:09,"498 13th St, New York City, NY 10001" -287004,Google Phone,1,600,11/22/19 23:51,"612 Jefferson St, San Francisco, CA 94016" -287005,Macbook Pro Laptop,1,1700,11/16/19 15:02,"377 Wilson St, San Francisco, CA 94016" -287006,iPhone,1,700,11/21/19 18:54,"347 West St, San Francisco, CA 94016" -287007,AAA Batteries (4-pack),4,2.99,11/26/19 16:10,"36 Cedar St, Boston, MA 02215" -287008,Macbook Pro Laptop,1,1700,11/25/19 12:19,"877 Elm St, Austin, TX 73301" -287009,AAA Batteries (4-pack),1,2.99,11/23/19 14:35,"152 Pine St, Los Angeles, CA 90001" -287010,27in FHD Monitor,1,149.99,11/01/19 18:53,"780 Main St, San Francisco, CA 94016" -287011,AA Batteries (4-pack),1,3.84,11/28/19 22:58,"583 Dogwood St, New York City, NY 10001" -287012,Bose SoundSport Headphones,1,99.99,11/28/19 17:09,"618 13th St, Los Angeles, CA 90001" -287013,iPhone,1,700,11/05/19 18:23,"521 Park St, Seattle, WA 98101" -287014,USB-C Charging Cable,1,11.95,11/15/19 15:03,"231 13th St, Los Angeles, CA 90001" -287015,Wired Headphones,1,11.99,11/30/19 14:57,"857 6th St, Austin, TX 73301" -287016,34in Ultrawide Monitor,1,379.99,11/10/19 13:48,"781 Cedar St, New York City, NY 10001" -287017,iPhone,1,700,11/28/19 17:05,"292 Forest St, San Francisco, CA 94016" -287017,Lightning Charging Cable,1,14.95,11/28/19 17:05,"292 Forest St, San Francisco, CA 94016" -287017,Wired Headphones,2,11.99,11/28/19 17:05,"292 Forest St, San Francisco, CA 94016" -287018,Google Phone,1,600,11/07/19 20:27,"684 West St, San Francisco, CA 94016" -287019,20in Monitor,1,109.99,11/10/19 08:25,"885 Elm St, Austin, TX 73301" -287020,iPhone,1,700,11/23/19 14:32,"110 Jackson St, Los Angeles, CA 90001" -287020,Apple Airpods Headphones,1,150,11/23/19 14:32,"110 Jackson St, Los Angeles, CA 90001" -287021,AAA Batteries (4-pack),1,2.99,11/14/19 22:03,"6 Main St, San Francisco, CA 94016" -287022,AAA Batteries (4-pack),1,2.99,11/05/19 16:25,"6 Cedar St, Los Angeles, CA 90001" -287023,27in 4K Gaming Monitor,1,389.99,11/13/19 22:27,"739 Jefferson St, Los Angeles, CA 90001" -287024,Bose SoundSport Headphones,1,99.99,11/11/19 17:22,"754 Hickory St, Austin, TX 73301" -287025,Bose SoundSport Headphones,1,99.99,11/28/19 20:05,"338 10th St, Los Angeles, CA 90001" -287026,Bose SoundSport Headphones,1,99.99,11/17/19 18:22,"599 8th St, Portland, OR 97035" -287027,Apple Airpods Headphones,1,150,11/04/19 11:41,"850 Pine St, San Francisco, CA 94016" -287028,Bose SoundSport Headphones,1,99.99,11/21/19 08:47,"312 8th St, Portland, OR 97035" -287029,Lightning Charging Cable,1,14.95,11/28/19 01:05,"53 Maple St, San Francisco, CA 94016" -287030,iPhone,1,700,11/15/19 13:51,"949 Jefferson St, Dallas, TX 75001" -287031,iPhone,1,700,11/12/19 18:46,"441 Highland St, Dallas, TX 75001" -287032,Apple Airpods Headphones,1,150,11/08/19 21:55,"623 Forest St, Seattle, WA 98101" -287033,Lightning Charging Cable,1,14.95,11/10/19 17:11,"384 13th St, Austin, TX 73301" -287034,AA Batteries (4-pack),1,3.84,11/25/19 12:49,"30 11th St, Dallas, TX 75001" -287035,USB-C Charging Cable,1,11.95,11/26/19 15:46,"216 4th St, New York City, NY 10001" -287036,Google Phone,1,600,11/24/19 19:06,"197 4th St, New York City, NY 10001" -287036,USB-C Charging Cable,2,11.95,11/24/19 19:06,"197 4th St, New York City, NY 10001" -287037,Lightning Charging Cable,1,14.95,11/04/19 10:52,"364 Hickory St, New York City, NY 10001" -287038,27in FHD Monitor,1,149.99,11/10/19 11:44,"214 Cherry St, New York City, NY 10001" -287039,AAA Batteries (4-pack),1,2.99,11/26/19 09:27,"479 9th St, Los Angeles, CA 90001" -287040,USB-C Charging Cable,1,11.95,11/03/19 22:26,"284 Ridge St, Boston, MA 02215" -287041,Apple Airpods Headphones,1,150,11/23/19 12:57,"313 12th St, Los Angeles, CA 90001" -287042,Wired Headphones,1,11.99,11/01/19 15:31,"599 Jefferson St, Portland, OR 97035" -287043,USB-C Charging Cable,1,11.95,11/06/19 13:45,"431 West St, Seattle, WA 98101" -287044,Google Phone,1,600,11/05/19 09:32,"419 Forest St, Austin, TX 73301" -287044,Wired Headphones,1,11.99,11/05/19 09:32,"419 Forest St, Austin, TX 73301" -287045,Wired Headphones,1,11.99,11/13/19 14:56,"678 Park St, Seattle, WA 98101" -287046,20in Monitor,1,109.99,11/20/19 07:47,"749 Spruce St, Seattle, WA 98101" -287047,Bose SoundSport Headphones,1,99.99,11/30/19 09:09,"151 Spruce St, Atlanta, GA 30301" -287048,Apple Airpods Headphones,1,150,11/03/19 00:22,"376 8th St, Seattle, WA 98101" -287049,USB-C Charging Cable,1,11.95,11/20/19 06:06,"117 8th St, Los Angeles, CA 90001" -287050,Flatscreen TV,1,300,12/01/19 00:49,"342 Lake St, New York City, NY 10001" -287051,Wired Headphones,1,11.99,11/17/19 11:39,"100 Church St, Los Angeles, CA 90001" -287052,AAA Batteries (4-pack),1,2.99,11/14/19 20:15,"247 Jefferson St, Austin, TX 73301" -287053,LG Dryer,1,600.0,11/29/19 17:25,"947 7th St, Dallas, TX 75001" -287054,Vareebadd Phone,1,400,11/07/19 08:03,"747 Lake St, Los Angeles, CA 90001" -287055,Apple Airpods Headphones,1,150,11/25/19 11:33,"113 14th St, Boston, MA 02215" -287056,AA Batteries (4-pack),1,3.84,11/09/19 16:26,"440 Lake St, Los Angeles, CA 90001" -287057,AA Batteries (4-pack),2,3.84,11/24/19 19:00,"482 12th St, Los Angeles, CA 90001" -287058,Apple Airpods Headphones,1,150,11/15/19 17:00,"657 River St, New York City, NY 10001" -287059,Apple Airpods Headphones,1,150,11/04/19 21:06,"304 7th St, Austin, TX 73301" -287060,Lightning Charging Cable,1,14.95,11/13/19 13:11,"473 Adams St, Portland, OR 97035" -287061,USB-C Charging Cable,1,11.95,11/01/19 15:47,"732 5th St, San Francisco, CA 94016" -287062,Lightning Charging Cable,1,14.95,11/24/19 19:56,"357 2nd St, San Francisco, CA 94016" -287063,AA Batteries (4-pack),1,3.84,11/11/19 21:01,"876 Jackson St, San Francisco, CA 94016" -287064,Macbook Pro Laptop,1,1700,11/07/19 11:43,"810 Church St, New York City, NY 10001" -287065,AA Batteries (4-pack),1,3.84,11/22/19 10:39,"180 Adams St, San Francisco, CA 94016" -287066,Lightning Charging Cable,1,14.95,11/08/19 17:03,"109 Chestnut St, New York City, NY 10001" -287067,Wired Headphones,1,11.99,11/25/19 19:39,"420 Madison St, Los Angeles, CA 90001" -287068,AA Batteries (4-pack),1,3.84,11/27/19 09:46,"696 Pine St, Portland, OR 97035" -287069,USB-C Charging Cable,1,11.95,11/21/19 20:17,"956 10th St, New York City, NY 10001" -287070,Lightning Charging Cable,1,14.95,11/13/19 16:52,"661 Spruce St, New York City, NY 10001" -287071,ThinkPad Laptop,1,999.99,11/07/19 23:23,"759 Cedar St, San Francisco, CA 94016" -287072,Wired Headphones,1,11.99,11/27/19 18:54,"575 Walnut St, San Francisco, CA 94016" -287073,27in FHD Monitor,1,149.99,11/21/19 21:13,"557 13th St, Los Angeles, CA 90001" -287074,AA Batteries (4-pack),1,3.84,11/25/19 12:04,"913 Jefferson St, Austin, TX 73301" -287075,AAA Batteries (4-pack),3,2.99,11/28/19 17:38,"973 Sunset St, Portland, OR 97035" -287076,USB-C Charging Cable,1,11.95,11/14/19 10:17,"454 Hill St, Portland, ME 04101" -287077,Lightning Charging Cable,1,14.95,11/29/19 11:38,"474 South St, New York City, NY 10001" -287078,Wired Headphones,1,11.99,11/19/19 16:23,"792 Spruce St, Atlanta, GA 30301" -287079,27in FHD Monitor,1,149.99,11/13/19 09:00,"42 Lake St, San Francisco, CA 94016" -287080,iPhone,1,700,11/11/19 13:28,"989 5th St, San Francisco, CA 94016" -287081,AAA Batteries (4-pack),1,2.99,11/17/19 10:33,"360 Washington St, Los Angeles, CA 90001" -287082,Bose SoundSport Headphones,1,99.99,11/23/19 22:39,"41 Maple St, Portland, OR 97035" -287083,Google Phone,1,600,11/14/19 18:48,"118 Church St, New York City, NY 10001" -287084,Lightning Charging Cable,1,14.95,11/09/19 17:02,"848 Spruce St, New York City, NY 10001" -287085,Bose SoundSport Headphones,1,99.99,11/19/19 21:29,"405 6th St, San Francisco, CA 94016" -287086,Macbook Pro Laptop,1,1700,11/04/19 12:36,"775 Spruce St, Atlanta, GA 30301" -,,,,, -287087,Lightning Charging Cable,1,14.95,11/29/19 17:43,"151 Cherry St, Dallas, TX 75001" -287088,AA Batteries (4-pack),2,3.84,11/17/19 20:33,"296 Lake St, Boston, MA 02215" -287089,Lightning Charging Cable,1,14.95,11/04/19 14:26,"250 Church St, Boston, MA 02215" -287090,Wired Headphones,1,11.99,11/30/19 15:52,"422 Lakeview St, Atlanta, GA 30301" -287091,USB-C Charging Cable,1,11.95,11/01/19 10:38,"713 1st St, Los Angeles, CA 90001" -287092,AAA Batteries (4-pack),1,2.99,11/05/19 13:46,"609 Meadow St, Boston, MA 02215" -287093,Macbook Pro Laptop,1,1700,11/20/19 14:04,"88 12th St, Dallas, TX 75001" -287094,Vareebadd Phone,1,400,11/04/19 20:28,"187 Park St, Los Angeles, CA 90001" -287095,AAA Batteries (4-pack),1,2.99,11/25/19 10:47,"802 Cedar St, Atlanta, GA 30301" -287096,AAA Batteries (4-pack),3,2.99,11/12/19 11:06,"253 Maple St, San Francisco, CA 94016" -287097,Bose SoundSport Headphones,1,99.99,11/04/19 17:04,"965 11th St, San Francisco, CA 94016" -287098,AA Batteries (4-pack),1,3.84,11/02/19 20:21,"753 14th St, Los Angeles, CA 90001" -287099,Lightning Charging Cable,1,14.95,11/06/19 22:07,"752 Main St, Atlanta, GA 30301" -287100,USB-C Charging Cable,1,11.95,11/24/19 09:37,"918 8th St, Atlanta, GA 30301" -287101,Wired Headphones,1,11.99,11/26/19 14:10,"805 Lake St, Austin, TX 73301" -287102,20in Monitor,1,109.99,11/28/19 20:13,"742 Park St, San Francisco, CA 94016" -287103,Bose SoundSport Headphones,1,99.99,11/04/19 08:51,"685 11th St, Boston, MA 02215" -287104,Wired Headphones,1,11.99,11/13/19 21:45,"192 Dogwood St, Austin, TX 73301" -287105,Wired Headphones,1,11.99,11/28/19 22:44,"464 Madison St, San Francisco, CA 94016" -287106,27in 4K Gaming Monitor,1,389.99,11/20/19 19:52,"470 8th St, Boston, MA 02215" -287107,Wired Headphones,2,11.99,11/01/19 18:53,"737 12th St, Austin, TX 73301" -287108,AA Batteries (4-pack),2,3.84,11/19/19 15:07,"502 Sunset St, San Francisco, CA 94016" -287109,Lightning Charging Cable,1,14.95,11/26/19 08:16,"445 Church St, Seattle, WA 98101" -287110,AAA Batteries (4-pack),1,2.99,11/24/19 12:15,"987 North St, Dallas, TX 75001" -287111,AAA Batteries (4-pack),2,2.99,11/29/19 19:19,"257 Lincoln St, Boston, MA 02215" -287112,34in Ultrawide Monitor,1,379.99,11/23/19 16:13,"381 West St, New York City, NY 10001" -287113,ThinkPad Laptop,1,999.99,11/23/19 16:11,"566 Center St, Los Angeles, CA 90001" -287114,Apple Airpods Headphones,1,150,11/23/19 09:51,"946 Wilson St, San Francisco, CA 94016" -287115,Wired Headphones,1,11.99,11/29/19 20:40,"255 Sunset St, Boston, MA 02215" -287116,AAA Batteries (4-pack),2,2.99,11/27/19 14:32,"207 Lakeview St, San Francisco, CA 94016" -287117,Lightning Charging Cable,1,14.95,11/02/19 19:30,"125 West St, Los Angeles, CA 90001" -287118,iPhone,1,700,11/02/19 22:19,"187 Hickory St, Los Angeles, CA 90001" -287118,Lightning Charging Cable,1,14.95,11/02/19 22:19,"187 Hickory St, Los Angeles, CA 90001" -287119,Flatscreen TV,1,300,11/29/19 20:36,"516 Lake St, San Francisco, CA 94016" -287120,USB-C Charging Cable,1,11.95,11/02/19 00:26,"644 West St, Portland, OR 97035" -287121,Bose SoundSport Headphones,1,99.99,11/16/19 23:44,"685 9th St, New York City, NY 10001" -287122,AA Batteries (4-pack),1,3.84,11/05/19 13:53,"895 Cherry St, San Francisco, CA 94016" -287123,27in 4K Gaming Monitor,1,389.99,11/18/19 08:15,"437 Pine St, Atlanta, GA 30301" -287124,Apple Airpods Headphones,1,150,11/01/19 11:09,"473 14th St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -287125,AA Batteries (4-pack),1,3.84,11/09/19 10:06,"717 12th St, San Francisco, CA 94016" -287126,Wired Headphones,1,11.99,11/11/19 06:34,"872 Spruce St, San Francisco, CA 94016" -287127,27in FHD Monitor,1,149.99,11/25/19 18:10,"544 Hill St, San Francisco, CA 94016" -287128,LG Washing Machine,1,600.0,11/11/19 00:57,"245 11th St, Boston, MA 02215" -287129,Wired Headphones,1,11.99,11/06/19 16:17,"905 Church St, San Francisco, CA 94016" -287130,Apple Airpods Headphones,1,150,11/18/19 17:17,"253 River St, New York City, NY 10001" -287131,20in Monitor,1,109.99,11/28/19 23:50,"40 Dogwood St, Portland, ME 04101" -287132,Wired Headphones,1,11.99,11/17/19 12:40,"972 Madison St, Atlanta, GA 30301" -287133,ThinkPad Laptop,1,999.99,11/27/19 21:12,"634 6th St, Portland, OR 97035" -287134,Wired Headphones,1,11.99,11/29/19 05:36,"118 South St, New York City, NY 10001" -287135,USB-C Charging Cable,2,11.95,11/11/19 21:49,"461 Church St, Austin, TX 73301" -287136,Wired Headphones,1,11.99,11/12/19 22:52,"528 North St, Boston, MA 02215" -287137,AAA Batteries (4-pack),2,2.99,11/08/19 17:13,"206 Adams St, San Francisco, CA 94016" -287138,Wired Headphones,1,11.99,11/14/19 22:40,"444 9th St, New York City, NY 10001" -287139,Apple Airpods Headphones,1,150,11/24/19 20:19,"210 Forest St, Portland, OR 97035" -287140,Bose SoundSport Headphones,1,99.99,11/16/19 10:11,"98 Highland St, Atlanta, GA 30301" -287141,Lightning Charging Cable,1,14.95,11/15/19 17:29,"76 Johnson St, Portland, ME 04101" -287142,Wired Headphones,1,11.99,11/18/19 23:38,"531 Pine St, Dallas, TX 75001" -287143,Lightning Charging Cable,1,14.95,11/09/19 03:06,"395 Church St, San Francisco, CA 94016" -287144,Wired Headphones,1,11.99,11/28/19 20:42,"928 Park St, San Francisco, CA 94016" -287145,AA Batteries (4-pack),1,3.84,11/30/19 10:32,"860 Spruce St, San Francisco, CA 94016" -287146,AA Batteries (4-pack),1,3.84,11/04/19 14:31,"648 Dogwood St, Los Angeles, CA 90001" -287147,iPhone,1,700,11/27/19 13:51,"830 Washington St, Atlanta, GA 30301" -287148,27in FHD Monitor,1,149.99,11/14/19 00:23,"828 7th St, Los Angeles, CA 90001" -287149,Wired Headphones,1,11.99,11/02/19 20:45,"291 Park St, New York City, NY 10001" -287150,Wired Headphones,1,11.99,11/17/19 13:22,"679 Walnut St, Los Angeles, CA 90001" -287151,Lightning Charging Cable,1,14.95,11/07/19 08:04,"619 Washington St, Los Angeles, CA 90001" -287152,AA Batteries (4-pack),1,3.84,11/03/19 18:34,"123 Church St, Boston, MA 02215" -287153,AA Batteries (4-pack),1,3.84,11/11/19 13:21,"753 Pine St, Austin, TX 73301" -287154,Wired Headphones,2,11.99,11/09/19 21:50,"277 Lakeview St, Boston, MA 02215" -287155,USB-C Charging Cable,1,11.95,11/03/19 08:36,"977 Johnson St, San Francisco, CA 94016" -287156,Apple Airpods Headphones,1,150,11/18/19 14:30,"733 Johnson St, San Francisco, CA 94016" -287157,Bose SoundSport Headphones,1,99.99,11/17/19 18:26,"601 1st St, San Francisco, CA 94016" -287158,AA Batteries (4-pack),1,3.84,11/12/19 08:59,"702 Jackson St, San Francisco, CA 94016" -287159,AA Batteries (4-pack),3,3.84,11/07/19 21:22,"360 Jackson St, Portland, ME 04101" -287160,Lightning Charging Cable,1,14.95,11/04/19 20:19,"28 Lake St, Los Angeles, CA 90001" -287161,AAA Batteries (4-pack),1,2.99,11/05/19 20:29,"658 Sunset St, New York City, NY 10001" -287162,AAA Batteries (4-pack),2,2.99,11/13/19 09:17,"619 Jackson St, San Francisco, CA 94016" -287163,USB-C Charging Cable,1,11.95,11/22/19 10:18,"358 Hill St, Los Angeles, CA 90001" -287164,AA Batteries (4-pack),1,3.84,11/21/19 13:00,"586 Wilson St, Los Angeles, CA 90001" -287165,Apple Airpods Headphones,1,150,11/25/19 10:43,"695 Cedar St, Seattle, WA 98101" -287166,Lightning Charging Cable,1,14.95,11/01/19 13:08,"572 14th St, Los Angeles, CA 90001" -287167,AAA Batteries (4-pack),2,2.99,11/24/19 21:18,"651 Forest St, Boston, MA 02215" -287168,USB-C Charging Cable,1,11.95,11/02/19 20:29,"943 9th St, Los Angeles, CA 90001" -287169,Wired Headphones,1,11.99,11/13/19 11:05,"789 Sunset St, Boston, MA 02215" -287170,27in FHD Monitor,1,149.99,11/11/19 17:50,"641 Ridge St, Portland, OR 97035" -287171,AAA Batteries (4-pack),1,2.99,11/16/19 21:16,"375 Lincoln St, Seattle, WA 98101" -287172,Apple Airpods Headphones,1,150,11/27/19 16:27,"97 Lakeview St, San Francisco, CA 94016" -287173,AAA Batteries (4-pack),1,2.99,11/16/19 06:37,"191 Spruce St, Seattle, WA 98101" -287174,AAA Batteries (4-pack),3,2.99,11/21/19 12:07,"982 8th St, Austin, TX 73301" -287175,iPhone,1,700,11/12/19 08:21,"113 Washington St, San Francisco, CA 94016" -287176,Lightning Charging Cable,1,14.95,11/02/19 13:18,"771 Elm St, Seattle, WA 98101" -287177,Lightning Charging Cable,1,14.95,11/16/19 13:12,"948 Walnut St, San Francisco, CA 94016" -287178,Macbook Pro Laptop,1,1700,11/24/19 18:26,"120 Wilson St, Portland, OR 97035" -287178,Lightning Charging Cable,1,14.95,11/24/19 18:26,"120 Wilson St, Portland, OR 97035" -287179,Apple Airpods Headphones,1,150,11/23/19 12:55,"480 Willow St, Los Angeles, CA 90001" -287180,AAA Batteries (4-pack),2,2.99,11/05/19 19:17,"965 Forest St, San Francisco, CA 94016" -287181,AAA Batteries (4-pack),1,2.99,11/09/19 06:48,"884 Hill St, Los Angeles, CA 90001" -287182,Wired Headphones,1,11.99,11/06/19 14:16,"284 Dogwood St, New York City, NY 10001" -287183,iPhone,1,700,11/16/19 16:22,"890 14th St, New York City, NY 10001" -287183,Wired Headphones,1,11.99,11/16/19 16:22,"890 14th St, New York City, NY 10001" -287184,20in Monitor,1,109.99,11/28/19 12:40,"980 Church St, Atlanta, GA 30301" -287185,Lightning Charging Cable,1,14.95,11/15/19 19:23,"264 Pine St, New York City, NY 10001" -287186,Lightning Charging Cable,2,14.95,11/23/19 14:56,"668 6th St, Los Angeles, CA 90001" -287187,iPhone,1,700,11/27/19 14:43,"758 Lakeview St, San Francisco, CA 94016" -287188,Lightning Charging Cable,1,14.95,11/09/19 19:58,"108 Ridge St, San Francisco, CA 94016" -287188,USB-C Charging Cable,1,11.95,11/09/19 19:58,"108 Ridge St, San Francisco, CA 94016" -287189,Lightning Charging Cable,1,14.95,11/17/19 12:06,"751 Lake St, New York City, NY 10001" -287190,Lightning Charging Cable,1,14.95,11/17/19 11:42,"99 Lincoln St, Los Angeles, CA 90001" -287191,Wired Headphones,1,11.99,11/12/19 06:41,"762 Ridge St, San Francisco, CA 94016" -287192,27in 4K Gaming Monitor,1,389.99,11/02/19 13:31,"465 Dogwood St, Los Angeles, CA 90001" -287193,USB-C Charging Cable,1,11.95,11/03/19 11:41,"743 Wilson St, Los Angeles, CA 90001" -287194,Bose SoundSport Headphones,1,99.99,11/28/19 16:14,"77 South St, San Francisco, CA 94016" -287195,USB-C Charging Cable,1,11.95,11/29/19 22:40,"645 Lake St, San Francisco, CA 94016" -287196,Lightning Charging Cable,1,14.95,11/05/19 12:16,"555 Dogwood St, Los Angeles, CA 90001" -287197,Wired Headphones,1,11.99,11/22/19 23:02,"487 Chestnut St, Atlanta, GA 30301" -287198,USB-C Charging Cable,1,11.95,11/15/19 10:49,"534 Sunset St, Portland, OR 97035" -287199,Bose SoundSport Headphones,1,99.99,11/12/19 20:07,"153 1st St, Portland, OR 97035" -287200,iPhone,1,700,11/18/19 20:31,"997 9th St, San Francisco, CA 94016" -287200,27in 4K Gaming Monitor,1,389.99,11/18/19 20:31,"997 9th St, San Francisco, CA 94016" -287201,Wired Headphones,1,11.99,11/21/19 12:44,"840 Main St, San Francisco, CA 94016" -287202,Lightning Charging Cable,1,14.95,11/30/19 07:49,"721 Sunset St, San Francisco, CA 94016" -287203,AAA Batteries (4-pack),3,2.99,11/12/19 20:27,"162 Ridge St, Seattle, WA 98101" -287204,Google Phone,1,600,11/18/19 14:36,"514 Center St, New York City, NY 10001" -287205,USB-C Charging Cable,1,11.95,11/05/19 15:17,"306 Church St, Los Angeles, CA 90001" -287206,Wired Headphones,1,11.99,11/02/19 11:31,"462 Highland St, Portland, ME 04101" -287207,Macbook Pro Laptop,1,1700,11/10/19 16:08,"746 West St, Portland, OR 97035" -287208,Wired Headphones,1,11.99,11/19/19 15:06,"717 Spruce St, Atlanta, GA 30301" -287209,USB-C Charging Cable,1,11.95,11/06/19 18:21,"552 Adams St, New York City, NY 10001" -287210,Bose SoundSport Headphones,1,99.99,11/27/19 20:51,"242 Sunset St, Seattle, WA 98101" -287210,Vareebadd Phone,1,400,11/27/19 20:51,"242 Sunset St, Seattle, WA 98101" -287211,Bose SoundSport Headphones,1,99.99,11/17/19 22:43,"497 4th St, Portland, ME 04101" -287212,20in Monitor,1,109.99,11/05/19 19:01,"721 Hill St, New York City, NY 10001" -287213,Bose SoundSport Headphones,1,99.99,11/06/19 14:23,"667 Main St, Boston, MA 02215" -287214,USB-C Charging Cable,1,11.95,11/19/19 15:41,"222 South St, Seattle, WA 98101" -287215,USB-C Charging Cable,1,11.95,11/28/19 00:12,"361 12th St, Austin, TX 73301" -287216,27in FHD Monitor,1,149.99,11/25/19 13:36,"232 Ridge St, Boston, MA 02215" -287217,AA Batteries (4-pack),2,3.84,11/27/19 10:48,"487 Willow St, New York City, NY 10001" -287218,Apple Airpods Headphones,1,150,11/14/19 12:08,"39 Jefferson St, New York City, NY 10001" -287219,27in FHD Monitor,1,149.99,11/24/19 11:09,"508 8th St, Los Angeles, CA 90001" -287220,Lightning Charging Cable,1,14.95,11/15/19 22:13,"877 Pine St, San Francisco, CA 94016" -287221,Lightning Charging Cable,1,14.95,11/27/19 10:36,"54 Dogwood St, Los Angeles, CA 90001" -287222,Wired Headphones,1,11.99,11/19/19 18:00,"566 Park St, Portland, OR 97035" -287223,Apple Airpods Headphones,1,150,11/29/19 14:52,"586 Maple St, New York City, NY 10001" -287224,Wired Headphones,1,11.99,11/24/19 18:36,"76 Johnson St, San Francisco, CA 94016" -287225,Lightning Charging Cable,1,14.95,11/18/19 11:20,"148 Elm St, Los Angeles, CA 90001" -287226,27in 4K Gaming Monitor,1,389.99,11/01/19 16:38,"284 5th St, Portland, OR 97035" -287227,27in FHD Monitor,1,149.99,11/10/19 19:36,"740 Willow St, New York City, NY 10001" -287228,Apple Airpods Headphones,1,150,11/27/19 11:36,"587 Meadow St, Boston, MA 02215" -287229,Google Phone,1,600,11/09/19 21:22,"207 Madison St, Atlanta, GA 30301" -287230,ThinkPad Laptop,1,999.99,11/09/19 19:30,"465 4th St, Los Angeles, CA 90001" -287231,Google Phone,1,600,11/05/19 19:48,"615 Wilson St, Seattle, WA 98101" -287231,USB-C Charging Cable,1,11.95,11/05/19 19:48,"615 Wilson St, Seattle, WA 98101" -287232,Wired Headphones,2,11.99,11/04/19 20:49,"134 Spruce St, Atlanta, GA 30301" -287233,AA Batteries (4-pack),1,3.84,11/07/19 09:59,"981 Cherry St, Seattle, WA 98101" -287234,AA Batteries (4-pack),1,3.84,11/11/19 13:46,"183 Church St, San Francisco, CA 94016" -287235,Bose SoundSport Headphones,1,99.99,11/16/19 00:07,"802 10th St, Los Angeles, CA 90001" -287236,AA Batteries (4-pack),1,3.84,11/01/19 20:03,"118 Hickory St, Seattle, WA 98101" -287237,iPhone,1,700,11/19/19 00:56,"172 Washington St, San Francisco, CA 94016" -287238,ThinkPad Laptop,1,999.99,11/06/19 10:08,"814 12th St, San Francisco, CA 94016" -287239,27in 4K Gaming Monitor,1,389.99,11/17/19 14:20,"54 Lincoln St, Austin, TX 73301" -287240,AA Batteries (4-pack),2,3.84,11/24/19 20:31,"989 14th St, Los Angeles, CA 90001" -287241,Apple Airpods Headphones,1,150,11/14/19 16:45,"968 Ridge St, Los Angeles, CA 90001" -287242,Bose SoundSport Headphones,1,99.99,11/12/19 10:35,"764 Highland St, Los Angeles, CA 90001" -287243,27in 4K Gaming Monitor,1,389.99,11/04/19 15:04,"909 North St, Boston, MA 02215" -287244,Apple Airpods Headphones,1,150,11/04/19 11:59,"454 Willow St, San Francisco, CA 94016" -287245,34in Ultrawide Monitor,1,379.99,11/15/19 20:07,"728 7th St, Boston, MA 02215" -287246,AAA Batteries (4-pack),1,2.99,11/06/19 16:03,"846 Elm St, Atlanta, GA 30301" -287247,USB-C Charging Cable,1,11.95,11/21/19 20:14,"249 Highland St, Seattle, WA 98101" -287248,AA Batteries (4-pack),1,3.84,11/22/19 10:54,"481 Lincoln St, New York City, NY 10001" -287249,ThinkPad Laptop,1,999.99,11/27/19 13:46,"508 Johnson St, Portland, OR 97035" -287250,AAA Batteries (4-pack),1,2.99,11/07/19 12:16,"555 Spruce St, Austin, TX 73301" -287251,Macbook Pro Laptop,1,1700,11/25/19 13:15,"395 5th St, Boston, MA 02215" -287252,Vareebadd Phone,1,400,11/24/19 19:51,"824 6th St, Portland, OR 97035" -287253,AA Batteries (4-pack),1,3.84,11/25/19 13:35,"591 Wilson St, Seattle, WA 98101" -287254,Wired Headphones,1,11.99,11/05/19 07:17,"626 Johnson St, Boston, MA 02215" -287255,AA Batteries (4-pack),1,3.84,11/07/19 13:48,"713 Walnut St, San Francisco, CA 94016" -287256,Apple Airpods Headphones,1,150,11/14/19 16:37,"945 10th St, Seattle, WA 98101" -287257,iPhone,1,700,11/09/19 14:02,"463 14th St, San Francisco, CA 94016" -287258,Bose SoundSport Headphones,1,99.99,11/25/19 17:54,"678 13th St, Boston, MA 02215" -287259,Google Phone,1,600,11/02/19 20:35,"121 Cherry St, Portland, OR 97035" -287260,Wired Headphones,1,11.99,11/13/19 21:26,"622 Ridge St, San Francisco, CA 94016" -287261,AAA Batteries (4-pack),3,2.99,11/27/19 23:39,"383 7th St, Boston, MA 02215" -287262,Wired Headphones,1,11.99,11/27/19 00:26,"563 5th St, Los Angeles, CA 90001" -287263,20in Monitor,1,109.99,11/05/19 00:15,"858 13th St, Portland, OR 97035" -287264,Wired Headphones,1,11.99,11/17/19 20:09,"158 7th St, Portland, OR 97035" -287265,USB-C Charging Cable,1,11.95,11/29/19 16:28,"118 Madison St, Los Angeles, CA 90001" -287266,Wired Headphones,1,11.99,11/19/19 07:14,"478 Jefferson St, Seattle, WA 98101" -287267,27in FHD Monitor,1,149.99,11/22/19 09:06,"899 Adams St, Boston, MA 02215" -287268,AA Batteries (4-pack),2,3.84,11/16/19 10:30,"424 Park St, Dallas, TX 75001" -287269,Bose SoundSport Headphones,1,99.99,11/23/19 18:11,"392 11th St, Los Angeles, CA 90001" -287270,27in 4K Gaming Monitor,1,389.99,11/04/19 04:18,"556 Chestnut St, Seattle, WA 98101" -287271,Lightning Charging Cable,1,14.95,11/23/19 12:13,"130 Madison St, Portland, OR 97035" -287272,34in Ultrawide Monitor,1,379.99,11/30/19 11:35,"837 River St, Atlanta, GA 30301" -287273,ThinkPad Laptop,1,999.99,11/02/19 22:18,"158 Washington St, New York City, NY 10001" -287274,Google Phone,1,600,11/22/19 21:05,"212 Cedar St, Portland, OR 97035" -287275,AA Batteries (4-pack),4,3.84,11/13/19 20:44,"152 West St, Seattle, WA 98101" -287276,AAA Batteries (4-pack),2,2.99,11/13/19 14:36,"501 Hickory St, Portland, OR 97035" -287277,Flatscreen TV,1,300,11/21/19 22:39,"410 Cedar St, Los Angeles, CA 90001" -287278,USB-C Charging Cable,1,11.95,11/25/19 20:37,"469 North St, Seattle, WA 98101" -287279,Bose SoundSport Headphones,1,99.99,11/17/19 22:05,"773 Hill St, San Francisco, CA 94016" -287280,Wired Headphones,1,11.99,11/13/19 22:04,"911 9th St, Boston, MA 02215" -287281,Apple Airpods Headphones,1,150,11/13/19 20:32,"936 10th St, San Francisco, CA 94016" -287282,ThinkPad Laptop,1,999.99,11/12/19 20:13,"324 8th St, Portland, OR 97035" -287283,Flatscreen TV,2,300,11/29/19 08:32,"559 6th St, Los Angeles, CA 90001" -287284,AAA Batteries (4-pack),1,2.99,11/24/19 11:13,"452 14th St, Los Angeles, CA 90001" -287285,Wired Headphones,1,11.99,11/24/19 12:37,"476 7th St, San Francisco, CA 94016" -287286,Lightning Charging Cable,1,14.95,11/05/19 15:24,"86 9th St, Los Angeles, CA 90001" -287287,USB-C Charging Cable,1,11.95,11/01/19 20:52,"291 6th St, New York City, NY 10001" -287288,AA Batteries (4-pack),1,3.84,11/29/19 11:41,"216 Lake St, San Francisco, CA 94016" -287289,34in Ultrawide Monitor,1,379.99,11/11/19 13:33,"436 Walnut St, Atlanta, GA 30301" -287290,USB-C Charging Cable,1,11.95,11/29/19 23:25,"164 10th St, Austin, TX 73301" -287291,34in Ultrawide Monitor,1,379.99,11/14/19 20:12,"835 West St, Atlanta, GA 30301" -287292,AAA Batteries (4-pack),3,2.99,11/13/19 21:33,"14 South St, Boston, MA 02215" -287293,Wired Headphones,1,11.99,11/15/19 19:35,"641 Ridge St, New York City, NY 10001" -287294,20in Monitor,1,109.99,11/19/19 19:02,"546 Adams St, Los Angeles, CA 90001" -287295,Apple Airpods Headphones,1,150,11/18/19 12:09,"667 Hickory St, Seattle, WA 98101" -287296,27in 4K Gaming Monitor,1,389.99,11/15/19 18:26,"838 Center St, New York City, NY 10001" -287297,USB-C Charging Cable,1,11.95,11/29/19 09:58,"990 Madison St, Austin, TX 73301" -287298,AAA Batteries (4-pack),2,2.99,11/16/19 14:30,"324 North St, Boston, MA 02215" -287299,Apple Airpods Headphones,2,150,11/16/19 00:06,"416 4th St, San Francisco, CA 94016" -287300,34in Ultrawide Monitor,1,379.99,11/27/19 14:13,"598 9th St, Portland, OR 97035" -287301,Wired Headphones,1,11.99,11/05/19 22:59,"320 Lakeview St, Los Angeles, CA 90001" -287302,AAA Batteries (4-pack),1,2.99,11/29/19 20:43,"137 Hickory St, Boston, MA 02215" -287303,Apple Airpods Headphones,1,150,11/08/19 09:40,"956 Hill St, Boston, MA 02215" -287304,AAA Batteries (4-pack),2,2.99,11/28/19 11:47,"325 13th St, Los Angeles, CA 90001" -287305,USB-C Charging Cable,1,11.95,11/26/19 15:08,"661 Johnson St, Boston, MA 02215" -287306,20in Monitor,1,109.99,11/23/19 11:31,"66 Cedar St, San Francisco, CA 94016" -287307,AA Batteries (4-pack),1,3.84,11/08/19 21:08,"98 Cedar St, Boston, MA 02215" -287308,AA Batteries (4-pack),1,3.84,11/10/19 16:25,"417 13th St, Portland, OR 97035" -287309,AAA Batteries (4-pack),1,2.99,11/08/19 17:59,"360 4th St, San Francisco, CA 94016" -287310,27in FHD Monitor,1,149.99,11/11/19 12:51,"689 Cedar St, Boston, MA 02215" -287311,27in 4K Gaming Monitor,1,389.99,11/18/19 11:47,"959 Lake St, Atlanta, GA 30301" -287312,Wired Headphones,1,11.99,11/12/19 18:19,"416 Park St, Boston, MA 02215" -287313,AAA Batteries (4-pack),1,2.99,11/01/19 20:33,"168 14th St, Austin, TX 73301" -287314,AA Batteries (4-pack),1,3.84,11/27/19 19:11,"222 Jefferson St, Dallas, TX 75001" -287315,Lightning Charging Cable,1,14.95,11/20/19 14:55,"286 Hill St, Atlanta, GA 30301" -287316,USB-C Charging Cable,1,11.95,11/14/19 21:20,"390 Jackson St, Los Angeles, CA 90001" -287317,AA Batteries (4-pack),1,3.84,11/26/19 15:07,"389 Meadow St, Los Angeles, CA 90001" -287318,USB-C Charging Cable,1,11.95,11/08/19 10:37,"293 Hill St, Portland, ME 04101" -287319,AA Batteries (4-pack),1,3.84,11/29/19 13:33,"524 6th St, Los Angeles, CA 90001" -287320,ThinkPad Laptop,1,999.99,11/12/19 08:53,"812 1st St, Atlanta, GA 30301" -287321,27in FHD Monitor,1,149.99,11/17/19 18:14,"906 9th St, San Francisco, CA 94016" -287322,AAA Batteries (4-pack),1,2.99,11/17/19 05:59,"915 2nd St, New York City, NY 10001" -287323,AA Batteries (4-pack),1,3.84,11/23/19 22:13,"981 5th St, Boston, MA 02215" -287324,AAA Batteries (4-pack),1,2.99,11/26/19 12:42,"837 Forest St, New York City, NY 10001" -287325,Bose SoundSport Headphones,1,99.99,11/18/19 19:43,"962 Sunset St, Seattle, WA 98101" -287326,Bose SoundSport Headphones,1,99.99,11/08/19 19:00,"780 Hickory St, Dallas, TX 75001" -287327,iPhone,1,700,11/26/19 20:51,"961 Adams St, Seattle, WA 98101" -287328,Lightning Charging Cable,2,14.95,11/29/19 15:56,"565 Adams St, San Francisco, CA 94016" -287329,USB-C Charging Cable,1,11.95,11/15/19 22:32,"41 Washington St, Dallas, TX 75001" -287330,AA Batteries (4-pack),2,3.84,11/25/19 14:56,"465 6th St, San Francisco, CA 94016" -287331,Google Phone,1,600,11/04/19 20:28,"260 11th St, Portland, OR 97035" -287332,Google Phone,1,600,11/27/19 23:07,"315 River St, San Francisco, CA 94016" -287333,Wired Headphones,1,11.99,11/29/19 11:38,"189 Center St, San Francisco, CA 94016" -287334,Lightning Charging Cable,1,14.95,11/25/19 13:42,"152 Jackson St, Atlanta, GA 30301" -287335,Lightning Charging Cable,1,14.95,11/19/19 20:25,"447 West St, Los Angeles, CA 90001" -287336,27in FHD Monitor,1,149.99,11/17/19 11:52,"337 Madison St, New York City, NY 10001" -287337,AAA Batteries (4-pack),1,2.99,11/19/19 17:07,"33 9th St, San Francisco, CA 94016" -287338,USB-C Charging Cable,1,11.95,11/11/19 23:13,"662 Church St, Dallas, TX 75001" -287339,USB-C Charging Cable,1,11.95,11/24/19 19:33,"14 Lakeview St, Portland, OR 97035" -287340,iPhone,1,700,11/15/19 14:33,"14 Hickory St, San Francisco, CA 94016" -287340,Apple Airpods Headphones,1,150,11/15/19 14:33,"14 Hickory St, San Francisco, CA 94016" -287341,Wired Headphones,1,11.99,11/11/19 13:02,"581 Spruce St, Dallas, TX 75001" -287342,Lightning Charging Cable,1,14.95,11/23/19 18:49,"829 South St, Dallas, TX 75001" -287343,iPhone,1,700,11/26/19 12:19,"970 Meadow St, San Francisco, CA 94016" -287344,ThinkPad Laptop,1,999.99,11/14/19 12:14,"549 Sunset St, Dallas, TX 75001" -287345,Lightning Charging Cable,1,14.95,11/04/19 16:58,"424 Cedar St, Portland, OR 97035" -287346,AAA Batteries (4-pack),2,2.99,11/12/19 06:16,"39 Forest St, Austin, TX 73301" -287347,Lightning Charging Cable,1,14.95,11/22/19 21:31,"881 West St, Dallas, TX 75001" -287348,Wired Headphones,1,11.99,11/15/19 15:21,"23 Wilson St, Atlanta, GA 30301" -287349,AAA Batteries (4-pack),1,2.99,11/24/19 21:45,"773 Walnut St, San Francisco, CA 94016" -287350,USB-C Charging Cable,1,11.95,11/20/19 18:19,"557 Lincoln St, Los Angeles, CA 90001" -287351,20in Monitor,1,109.99,11/22/19 07:12,"548 Forest St, Austin, TX 73301" -287352,AAA Batteries (4-pack),1,2.99,11/27/19 21:11,"611 Meadow St, Portland, OR 97035" -287353,AA Batteries (4-pack),1,3.84,11/07/19 16:38,"300 Lake St, Dallas, TX 75001" -287354,Wired Headphones,1,11.99,11/27/19 14:34,"729 6th St, San Francisco, CA 94016" -287355,USB-C Charging Cable,1,11.95,11/11/19 12:09,"382 Main St, New York City, NY 10001" -287356,AAA Batteries (4-pack),2,2.99,11/19/19 08:30,"543 Johnson St, Seattle, WA 98101" -287357,USB-C Charging Cable,1,11.95,11/11/19 19:12,"739 Cherry St, Austin, TX 73301" -287358,Wired Headphones,1,11.99,11/02/19 11:22,"348 South St, Boston, MA 02215" -287359,Lightning Charging Cable,1,14.95,11/12/19 20:39,"921 Sunset St, Boston, MA 02215" -287360,USB-C Charging Cable,1,11.95,11/28/19 15:23,"841 13th St, San Francisco, CA 94016" -287361,Google Phone,1,600,11/08/19 19:21,"669 6th St, New York City, NY 10001" -287362,USB-C Charging Cable,1,11.95,11/14/19 12:47,"753 West St, New York City, NY 10001" -287363,iPhone,1,700,11/25/19 18:18,"675 Madison St, San Francisco, CA 94016" -287364,34in Ultrawide Monitor,1,379.99,11/14/19 05:17,"181 Hill St, San Francisco, CA 94016" -287365,AAA Batteries (4-pack),1,2.99,11/20/19 15:29,"969 4th St, San Francisco, CA 94016" -287366,Lightning Charging Cable,1,14.95,11/21/19 11:18,"470 Sunset St, Portland, ME 04101" -287367,34in Ultrawide Monitor,1,379.99,11/02/19 22:19,"886 Lincoln St, Dallas, TX 75001" -287368,27in FHD Monitor,1,149.99,11/16/19 14:26,"657 9th St, New York City, NY 10001" -287369,AAA Batteries (4-pack),1,2.99,11/24/19 19:35,"787 10th St, Atlanta, GA 30301" -287370,USB-C Charging Cable,1,11.95,11/16/19 22:21,"98 Hill St, Boston, MA 02215" -287371,Lightning Charging Cable,2,14.95,11/14/19 21:50,"767 Chestnut St, San Francisco, CA 94016" -287372,Wired Headphones,2,11.99,11/18/19 07:57,"509 Jefferson St, San Francisco, CA 94016" -287373,Lightning Charging Cable,1,14.95,11/16/19 11:30,"618 Dogwood St, Los Angeles, CA 90001" -287374,20in Monitor,1,109.99,11/17/19 10:24,"265 1st St, Los Angeles, CA 90001" -287375,Wired Headphones,1,11.99,11/11/19 17:35,"909 9th St, New York City, NY 10001" -287376,Lightning Charging Cable,1,14.95,11/30/19 01:11,"585 4th St, Dallas, TX 75001" -287377,iPhone,1,700,11/30/19 16:20,"141 Chestnut St, Dallas, TX 75001" -287378,USB-C Charging Cable,1,11.95,11/13/19 09:21,"479 Center St, San Francisco, CA 94016" -287379,27in FHD Monitor,1,149.99,11/08/19 15:01,"222 1st St, Los Angeles, CA 90001" -287380,AAA Batteries (4-pack),3,2.99,11/11/19 16:05,"67 Ridge St, San Francisco, CA 94016" -287381,Lightning Charging Cable,1,14.95,11/14/19 15:08,"719 Main St, San Francisco, CA 94016" -287382,Lightning Charging Cable,1,14.95,11/10/19 08:55,"215 Meadow St, San Francisco, CA 94016" -287383,USB-C Charging Cable,1,11.95,11/01/19 16:21,"739 Hill St, Portland, OR 97035" -287384,Google Phone,1,600,11/11/19 18:08,"772 Madison St, Boston, MA 02215" -287384,USB-C Charging Cable,1,11.95,11/11/19 18:08,"772 Madison St, Boston, MA 02215" -287385,Bose SoundSport Headphones,1,99.99,11/28/19 12:41,"502 12th St, Seattle, WA 98101" -287386,Bose SoundSport Headphones,1,99.99,11/12/19 14:19,"830 8th St, New York City, NY 10001" -287387,Bose SoundSport Headphones,1,99.99,11/22/19 18:30,"313 13th St, San Francisco, CA 94016" -287388,20in Monitor,1,109.99,11/21/19 13:19,"639 Lakeview St, Atlanta, GA 30301" -287389,34in Ultrawide Monitor,1,379.99,11/05/19 11:48,"104 Sunset St, Los Angeles, CA 90001" -287390,AAA Batteries (4-pack),1,2.99,11/01/19 16:08,"204 Park St, Atlanta, GA 30301" -287391,Lightning Charging Cable,1,14.95,11/18/19 22:07,"444 6th St, San Francisco, CA 94016" -287392,27in 4K Gaming Monitor,1,389.99,11/07/19 20:09,"635 9th St, San Francisco, CA 94016" -287393,Apple Airpods Headphones,1,150,11/01/19 20:17,"707 Main St, Dallas, TX 75001" -287394,27in FHD Monitor,1,149.99,11/05/19 22:25,"429 Forest St, Atlanta, GA 30301" -287395,AA Batteries (4-pack),1,3.84,11/17/19 23:04,"185 Church St, Atlanta, GA 30301" -287396,Wired Headphones,1,11.99,11/09/19 16:13,"926 Forest St, Boston, MA 02215" -287397,Wired Headphones,1,11.99,11/04/19 04:04,"566 River St, Los Angeles, CA 90001" -287398,iPhone,1,700,11/20/19 18:23,"380 Washington St, San Francisco, CA 94016" -287398,Apple Airpods Headphones,1,150,11/20/19 18:23,"380 Washington St, San Francisco, CA 94016" -287399,34in Ultrawide Monitor,1,379.99,11/05/19 15:27,"637 Lake St, New York City, NY 10001" -287400,AA Batteries (4-pack),3,3.84,11/21/19 10:51,"446 North St, San Francisco, CA 94016" -287401,Bose SoundSport Headphones,1,99.99,11/14/19 11:10,"898 Hickory St, San Francisco, CA 94016" -287402,AAA Batteries (4-pack),2,2.99,11/03/19 11:08,"504 13th St, Los Angeles, CA 90001" -287403,Wired Headphones,1,11.99,11/16/19 19:15,"557 River St, Los Angeles, CA 90001" -287404,USB-C Charging Cable,1,11.95,11/27/19 19:08,"513 2nd St, Los Angeles, CA 90001" -287405,Google Phone,1,600,11/28/19 04:35,"688 Madison St, Austin, TX 73301" -287405,USB-C Charging Cable,1,11.95,11/28/19 04:35,"688 Madison St, Austin, TX 73301" -287406,AA Batteries (4-pack),1,3.84,11/26/19 09:52,"370 Willow St, San Francisco, CA 94016" -287407,20in Monitor,1,109.99,11/27/19 14:24,"614 2nd St, Los Angeles, CA 90001" -287408,Lightning Charging Cable,1,14.95,11/08/19 13:29,"981 Cedar St, San Francisco, CA 94016" -287409,27in FHD Monitor,1,149.99,11/19/19 19:08,"609 Main St, Dallas, TX 75001" -287410,Wired Headphones,1,11.99,11/06/19 11:33,"97 13th St, San Francisco, CA 94016" -287411,27in 4K Gaming Monitor,1,389.99,11/01/19 18:30,"883 Cherry St, Seattle, WA 98101" -287412,AAA Batteries (4-pack),1,2.99,11/26/19 21:21,"729 10th St, San Francisco, CA 94016" -287413,AA Batteries (4-pack),1,3.84,11/30/19 18:54,"425 Chestnut St, Seattle, WA 98101" -287414,AAA Batteries (4-pack),1,2.99,11/14/19 12:35,"904 Lincoln St, Portland, ME 04101" -287415,Wired Headphones,1,11.99,11/28/19 01:21,"99 Chestnut St, Seattle, WA 98101" -287416,20in Monitor,1,109.99,11/28/19 17:20,"815 Walnut St, Seattle, WA 98101" -287417,USB-C Charging Cable,1,11.95,11/04/19 12:48,"820 8th St, San Francisco, CA 94016" -287418,Lightning Charging Cable,1,14.95,11/09/19 18:53,"778 4th St, Seattle, WA 98101" -287419,Wired Headphones,1,11.99,11/07/19 15:54,"365 River St, Atlanta, GA 30301" -287420,Apple Airpods Headphones,1,150,11/17/19 04:04,"830 Highland St, Los Angeles, CA 90001" -287421,Wired Headphones,2,11.99,11/25/19 14:54,"521 5th St, Austin, TX 73301" -287422,Wired Headphones,1,11.99,11/06/19 21:17,"858 North St, San Francisco, CA 94016" -287423,27in 4K Gaming Monitor,1,389.99,11/12/19 16:33,"944 Lakeview St, Dallas, TX 75001" -287424,Lightning Charging Cable,1,14.95,11/14/19 13:13,"667 Forest St, Los Angeles, CA 90001" -287425,Lightning Charging Cable,1,14.95,11/22/19 20:01,"333 Meadow St, Portland, OR 97035" -287426,Bose SoundSport Headphones,1,99.99,11/30/19 11:17,"131 Cherry St, Los Angeles, CA 90001" -287427,Bose SoundSport Headphones,1,99.99,11/10/19 14:39,"819 Pine St, San Francisco, CA 94016" -287428,Lightning Charging Cable,3,14.95,11/02/19 19:04,"755 Spruce St, San Francisco, CA 94016" -287429,AA Batteries (4-pack),1,3.84,11/13/19 01:29,"401 North St, Seattle, WA 98101" -287430,AA Batteries (4-pack),2,3.84,11/17/19 10:17,"799 Walnut St, Dallas, TX 75001" -287431,Lightning Charging Cable,1,14.95,11/15/19 13:46,"278 Adams St, Seattle, WA 98101" -287432,USB-C Charging Cable,1,11.95,11/13/19 10:23,"861 Adams St, Boston, MA 02215" -287433,AAA Batteries (4-pack),2,2.99,11/03/19 01:19,"509 West St, Dallas, TX 75001" -287434,AA Batteries (4-pack),1,3.84,11/09/19 23:10,"121 Lakeview St, Portland, ME 04101" -287435,20in Monitor,1,109.99,11/21/19 10:19,"814 Highland St, Los Angeles, CA 90001" -287436,Google Phone,1,600,11/13/19 21:32,"347 Lake St, Boston, MA 02215" -287437,iPhone,1,700,11/18/19 13:07,"531 13th St, Los Angeles, CA 90001" -287438,Lightning Charging Cable,1,14.95,11/15/19 11:46,"417 North St, Dallas, TX 75001" -287439,AAA Batteries (4-pack),3,2.99,11/12/19 16:11,"835 Pine St, San Francisco, CA 94016" -287440,Apple Airpods Headphones,1,150,11/24/19 08:12,"77 Main St, Portland, ME 04101" -287441,AA Batteries (4-pack),1,3.84,11/20/19 09:47,"438 Center St, Seattle, WA 98101" -287441,27in 4K Gaming Monitor,1,389.99,11/20/19 09:47,"438 Center St, Seattle, WA 98101" -287442,Lightning Charging Cable,1,14.95,11/12/19 15:25,"495 Madison St, New York City, NY 10001" -287443,Lightning Charging Cable,1,14.95,11/17/19 21:54,"559 2nd St, Seattle, WA 98101" -287444,Wired Headphones,1,11.99,11/17/19 08:49,"742 North St, Los Angeles, CA 90001" -287445,Bose SoundSport Headphones,1,99.99,11/13/19 02:48,"804 Main St, Portland, OR 97035" -287446,AAA Batteries (4-pack),1,2.99,11/11/19 08:56,"636 South St, Los Angeles, CA 90001" -287447,Wired Headphones,1,11.99,11/20/19 20:34,"357 West St, San Francisco, CA 94016" -287448,USB-C Charging Cable,1,11.95,11/01/19 09:34,"567 South St, Austin, TX 73301" -287449,Apple Airpods Headphones,1,150,11/28/19 15:46,"972 8th St, Los Angeles, CA 90001" -287450,27in FHD Monitor,1,149.99,11/26/19 09:23,"116 Forest St, Boston, MA 02215" -287451,20in Monitor,1,109.99,11/09/19 15:17,"519 Center St, Boston, MA 02215" -287452,Wired Headphones,1,11.99,11/15/19 00:35,"581 Meadow St, San Francisco, CA 94016" -287453,iPhone,1,700,11/02/19 16:55,"898 Wilson St, San Francisco, CA 94016" -287454,34in Ultrawide Monitor,1,379.99,11/17/19 14:21,"120 Meadow St, Boston, MA 02215" -287455,Wired Headphones,1,11.99,11/08/19 20:28,"439 Dogwood St, San Francisco, CA 94016" -287456,27in 4K Gaming Monitor,1,389.99,11/21/19 16:12,"527 Cedar St, Los Angeles, CA 90001" -287457,USB-C Charging Cable,1,11.95,11/21/19 15:56,"54 13th St, San Francisco, CA 94016" -287458,AA Batteries (4-pack),1,3.84,11/25/19 08:46,"67 Willow St, Atlanta, GA 30301" -287459,USB-C Charging Cable,1,11.95,11/28/19 20:00,"349 Jefferson St, Seattle, WA 98101" -287460,USB-C Charging Cable,1,11.95,11/28/19 20:08,"632 7th St, Dallas, TX 75001" -287461,Vareebadd Phone,1,400,11/01/19 19:14,"803 Chestnut St, Seattle, WA 98101" -287462,27in FHD Monitor,1,149.99,11/05/19 11:30,"850 River St, New York City, NY 10001" -287463,LG Washing Machine,1,600.0,11/20/19 15:12,"443 Jackson St, New York City, NY 10001" -287464,iPhone,1,700,11/04/19 18:29,"85 South St, New York City, NY 10001" -287465,Wired Headphones,1,11.99,11/02/19 19:31,"678 12th St, Atlanta, GA 30301" -287466,AAA Batteries (4-pack),1,2.99,11/09/19 11:30,"961 8th St, Boston, MA 02215" -287467,AAA Batteries (4-pack),3,2.99,11/21/19 09:15,"740 Willow St, Dallas, TX 75001" -287468,Wired Headphones,1,11.99,11/12/19 17:41,"105 Highland St, San Francisco, CA 94016" -287469,Bose SoundSport Headphones,1,99.99,11/09/19 13:00,"930 Lincoln St, San Francisco, CA 94016" -287470,Flatscreen TV,1,300,11/11/19 12:36,"235 9th St, New York City, NY 10001" -287471,USB-C Charging Cable,1,11.95,11/22/19 18:57,"145 Main St, Los Angeles, CA 90001" -287472,iPhone,1,700,11/07/19 12:06,"352 Sunset St, San Francisco, CA 94016" -287473,27in 4K Gaming Monitor,1,389.99,11/04/19 22:28,"179 Jackson St, San Francisco, CA 94016" -287474,Flatscreen TV,1,300,11/18/19 20:10,"418 5th St, Dallas, TX 75001" -287475,USB-C Charging Cable,1,11.95,11/25/19 12:00,"646 Highland St, Boston, MA 02215" -287476,Wired Headphones,1,11.99,11/12/19 07:18,"220 13th St, Dallas, TX 75001" -287477,iPhone,1,700,11/23/19 14:49,"552 Willow St, New York City, NY 10001" -287477,Lightning Charging Cable,1,14.95,11/23/19 14:49,"552 Willow St, New York City, NY 10001" -287477,Apple Airpods Headphones,1,150,11/23/19 14:49,"552 Willow St, New York City, NY 10001" -287478,AA Batteries (4-pack),1,3.84,11/17/19 20:53,"472 Dogwood St, Dallas, TX 75001" -287479,AAA Batteries (4-pack),1,2.99,11/08/19 16:08,"957 Spruce St, San Francisco, CA 94016" -287480,AAA Batteries (4-pack),1,2.99,11/15/19 20:14,"256 Jefferson St, Los Angeles, CA 90001" -287481,Bose SoundSport Headphones,1,99.99,11/16/19 10:17,"119 Lakeview St, Los Angeles, CA 90001" -287482,Apple Airpods Headphones,1,150,11/27/19 18:15,"70 Lakeview St, Seattle, WA 98101" -287483,iPhone,1,700,11/06/19 19:08,"568 Hill St, New York City, NY 10001" -287483,Lightning Charging Cable,1,14.95,11/06/19 19:08,"568 Hill St, New York City, NY 10001" -287484,AAA Batteries (4-pack),1,2.99,11/07/19 12:10,"278 Sunset St, Dallas, TX 75001" -287485,AAA Batteries (4-pack),3,2.99,11/18/19 17:10,"174 8th St, San Francisco, CA 94016" -287486,Lightning Charging Cable,1,14.95,11/06/19 12:43,"445 Ridge St, Seattle, WA 98101" -287487,Lightning Charging Cable,2,14.95,11/15/19 13:50,"544 6th St, Los Angeles, CA 90001" -287488,LG Dryer,1,600.0,11/07/19 18:10,"452 Highland St, Atlanta, GA 30301" -287489,27in FHD Monitor,1,149.99,11/08/19 17:19,"966 Lake St, San Francisco, CA 94016" -287490,Google Phone,1,600,11/29/19 15:20,"292 Washington St, San Francisco, CA 94016" -287490,Bose SoundSport Headphones,1,99.99,11/29/19 15:20,"292 Washington St, San Francisco, CA 94016" -287490,Wired Headphones,1,11.99,11/29/19 15:20,"292 Washington St, San Francisco, CA 94016" -287491,AA Batteries (4-pack),1,3.84,11/02/19 11:29,"828 Highland St, Dallas, TX 75001" -287492,Apple Airpods Headphones,1,150,11/14/19 18:31,"434 10th St, Los Angeles, CA 90001" -287493,AA Batteries (4-pack),1,3.84,11/04/19 12:06,"917 Jackson St, Austin, TX 73301" -287494,USB-C Charging Cable,1,11.95,11/07/19 15:27,"613 14th St, Dallas, TX 75001" -287495,AAA Batteries (4-pack),1,2.99,11/18/19 21:32,"450 Cherry St, New York City, NY 10001" -287496,34in Ultrawide Monitor,1,379.99,11/16/19 17:31,"337 Elm St, Dallas, TX 75001" -287497,27in FHD Monitor,1,149.99,11/11/19 16:19,"399 Park St, San Francisco, CA 94016" -287498,27in FHD Monitor,1,149.99,11/16/19 20:13,"7 9th St, Seattle, WA 98101" -287499,Bose SoundSport Headphones,1,99.99,11/10/19 14:26,"57 Hill St, New York City, NY 10001" -287500,USB-C Charging Cable,1,11.95,11/03/19 14:16,"832 Wilson St, Los Angeles, CA 90001" -287501,USB-C Charging Cable,1,11.95,11/13/19 19:45,"978 Park St, Austin, TX 73301" -287502,USB-C Charging Cable,1,11.95,11/10/19 16:19,"311 Wilson St, Dallas, TX 75001" -287503,AA Batteries (4-pack),2,3.84,11/21/19 22:17,"667 Church St, Los Angeles, CA 90001" -287504,20in Monitor,1,109.99,11/07/19 11:44,"771 Johnson St, San Francisco, CA 94016" -287505,Bose SoundSport Headphones,1,99.99,11/30/19 20:43,"921 Elm St, Boston, MA 02215" -287506,Lightning Charging Cable,1,14.95,11/29/19 17:01,"336 1st St, San Francisco, CA 94016" -287507,AAA Batteries (4-pack),1,2.99,11/07/19 22:38,"276 Ridge St, New York City, NY 10001" -287508,Bose SoundSport Headphones,1,99.99,11/26/19 18:05,"357 Church St, Los Angeles, CA 90001" -287509,Apple Airpods Headphones,1,150,11/17/19 19:59,"401 11th St, Seattle, WA 98101" -287510,34in Ultrawide Monitor,1,379.99,11/12/19 12:14,"848 Spruce St, Seattle, WA 98101" -287511,LG Washing Machine,1,600.0,11/26/19 21:28,"38 7th St, Dallas, TX 75001" -287512,Lightning Charging Cable,1,14.95,11/24/19 11:37,"580 Cedar St, New York City, NY 10001" -287513,27in FHD Monitor,1,149.99,11/17/19 14:35,"102 Lincoln St, Los Angeles, CA 90001" -287514,Lightning Charging Cable,1,14.95,11/10/19 06:37,"471 South St, San Francisco, CA 94016" -287515,Flatscreen TV,1,300,11/06/19 16:24,"946 Lake St, Atlanta, GA 30301" -287516,Flatscreen TV,1,300,11/19/19 14:37,"955 Chestnut St, Los Angeles, CA 90001" -287517,20in Monitor,1,109.99,11/17/19 12:50,"256 7th St, San Francisco, CA 94016" -287518,Bose SoundSport Headphones,1,99.99,11/06/19 06:55,"807 Ridge St, San Francisco, CA 94016" -287519,Wired Headphones,1,11.99,11/17/19 15:16,"244 River St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -287520,Bose SoundSport Headphones,1,99.99,11/30/19 16:15,"180 Sunset St, Portland, ME 04101" -287521,iPhone,1,700,11/07/19 18:22,"521 Spruce St, San Francisco, CA 94016" -287522,Lightning Charging Cable,1,14.95,11/06/19 23:53,"289 Willow St, Boston, MA 02215" -287523,Wired Headphones,1,11.99,11/10/19 18:26,"82 Madison St, Boston, MA 02215" -287524,20in Monitor,1,109.99,11/29/19 21:05,"698 Walnut St, San Francisco, CA 94016" -287525,Lightning Charging Cable,1,14.95,11/08/19 20:32,"946 Elm St, New York City, NY 10001" -287526,Wired Headphones,1,11.99,11/20/19 23:19,"69 Park St, Boston, MA 02215" -287527,27in 4K Gaming Monitor,1,389.99,11/26/19 05:59,"464 Pine St, San Francisco, CA 94016" -287528,USB-C Charging Cable,1,11.95,11/24/19 22:14,"452 Lake St, San Francisco, CA 94016" -287529,AAA Batteries (4-pack),1,2.99,11/10/19 21:16,"845 Main St, Atlanta, GA 30301" -287530,Wired Headphones,1,11.99,11/20/19 19:14,"853 2nd St, San Francisco, CA 94016" -287531,AA Batteries (4-pack),1,3.84,11/30/19 16:18,"385 Jackson St, San Francisco, CA 94016" -287532,AAA Batteries (4-pack),1,2.99,11/23/19 11:26,"332 Lake St, Los Angeles, CA 90001" -287533,USB-C Charging Cable,1,11.95,11/04/19 20:12,"3 Chestnut St, San Francisco, CA 94016" -287534,Apple Airpods Headphones,1,150,11/14/19 12:00,"376 Center St, San Francisco, CA 94016" -287535,USB-C Charging Cable,1,11.95,11/06/19 22:49,"6 Willow St, Los Angeles, CA 90001" -287536,USB-C Charging Cable,1,11.95,11/22/19 13:32,"377 14th St, Dallas, TX 75001" -287536,AAA Batteries (4-pack),2,2.99,11/22/19 13:32,"377 14th St, Dallas, TX 75001" -287537,Wired Headphones,1,11.99,11/11/19 20:32,"445 Meadow St, San Francisco, CA 94016" -287538,AA Batteries (4-pack),2,3.84,11/15/19 20:34,"463 Elm St, Boston, MA 02215" -287539,Lightning Charging Cable,1,14.95,11/22/19 10:14,"539 13th St, New York City, NY 10001" -287540,USB-C Charging Cable,1,11.95,11/05/19 16:30,"855 4th St, Dallas, TX 75001" -287541,27in FHD Monitor,1,149.99,11/25/19 19:19,"922 Chestnut St, Seattle, WA 98101" -287542,AAA Batteries (4-pack),1,2.99,11/02/19 18:30,"868 4th St, Atlanta, GA 30301" -287543,27in FHD Monitor,1,149.99,11/23/19 08:31,"761 Spruce St, Portland, OR 97035" -287544,34in Ultrawide Monitor,1,379.99,11/19/19 22:45,"636 West St, San Francisco, CA 94016" -287545,AA Batteries (4-pack),1,3.84,11/26/19 22:48,"650 Jackson St, San Francisco, CA 94016" -287546,iPhone,1,700,11/27/19 01:26,"973 Hill St, New York City, NY 10001" -287547,AA Batteries (4-pack),3,3.84,11/13/19 20:56,"81 Lakeview St, San Francisco, CA 94016" -287548,Wired Headphones,1,11.99,11/20/19 07:55,"952 North St, Boston, MA 02215" -287549,Wired Headphones,1,11.99,11/28/19 07:45,"350 4th St, San Francisco, CA 94016" -287550,USB-C Charging Cable,1,11.95,11/20/19 09:30,"243 West St, Portland, OR 97035" -287551,Lightning Charging Cable,1,14.95,11/17/19 20:16,"46 Ridge St, San Francisco, CA 94016" -287552,AA Batteries (4-pack),1,3.84,11/27/19 18:33,"517 North St, Boston, MA 02215" -287553,Wired Headphones,1,11.99,11/10/19 09:21,"478 Chestnut St, Dallas, TX 75001" -287554,27in FHD Monitor,1,149.99,11/20/19 10:56,"125 West St, Boston, MA 02215" -287555,Lightning Charging Cable,1,14.95,11/26/19 17:19,"347 Lincoln St, San Francisco, CA 94016" -287556,AA Batteries (4-pack),1,3.84,11/25/19 13:28,"439 Washington St, Los Angeles, CA 90001" -287557,Wired Headphones,1,11.99,11/29/19 21:09,"844 Forest St, San Francisco, CA 94016" -287558,AAA Batteries (4-pack),2,2.99,11/19/19 20:13,"532 Lake St, Austin, TX 73301" -287559,AA Batteries (4-pack),3,3.84,11/27/19 12:52,"165 Meadow St, San Francisco, CA 94016" -287560,Bose SoundSport Headphones,1,99.99,11/12/19 06:10,"648 Washington St, Atlanta, GA 30301" -287561,Vareebadd Phone,1,400,11/23/19 18:00,"139 Spruce St, New York City, NY 10001" -287561,USB-C Charging Cable,1,11.95,11/23/19 18:00,"139 Spruce St, New York City, NY 10001" -287562,Apple Airpods Headphones,1,150,11/13/19 09:17,"180 Elm St, San Francisco, CA 94016" -287563,Apple Airpods Headphones,1,150,11/02/19 07:38,"977 Madison St, San Francisco, CA 94016" -287564,Lightning Charging Cable,1,14.95,11/16/19 22:14,"29 Hill St, San Francisco, CA 94016" -287564,Apple Airpods Headphones,1,150,11/16/19 22:14,"29 Hill St, San Francisco, CA 94016" -287565,Wired Headphones,1,11.99,11/10/19 09:50,"706 6th St, Seattle, WA 98101" -287566,Macbook Pro Laptop,1,1700,11/23/19 11:37,"118 Lakeview St, Los Angeles, CA 90001" -287567,Lightning Charging Cable,1,14.95,11/07/19 20:22,"140 Dogwood St, Portland, ME 04101" -287568,Bose SoundSport Headphones,1,99.99,11/05/19 15:28,"12 Highland St, Boston, MA 02215" -287569,Wired Headphones,1,11.99,11/23/19 17:58,"976 Madison St, Dallas, TX 75001" -287570,AAA Batteries (4-pack),5,2.99,11/21/19 19:51,"78 River St, Dallas, TX 75001" -287570,AA Batteries (4-pack),1,3.84,11/21/19 19:51,"78 River St, Dallas, TX 75001" -287571,Lightning Charging Cable,1,14.95,11/20/19 21:28,"809 Elm St, San Francisco, CA 94016" -287572,Macbook Pro Laptop,1,1700,11/30/19 18:38,"444 Cedar St, Austin, TX 73301" -287573,AAA Batteries (4-pack),1,2.99,11/29/19 14:22,"380 Chestnut St, San Francisco, CA 94016" -287574,Lightning Charging Cable,1,14.95,11/28/19 12:21,"983 West St, Seattle, WA 98101" -287575,Lightning Charging Cable,1,14.95,11/28/19 13:56,"191 Hill St, San Francisco, CA 94016" -287576,Flatscreen TV,1,300,11/19/19 09:44,"942 Ridge St, Seattle, WA 98101" -287577,Google Phone,1,600,11/20/19 18:28,"796 Lake St, San Francisco, CA 94016" -287578,AA Batteries (4-pack),1,3.84,11/29/19 12:51,"897 Jackson St, Boston, MA 02215" -287579,Flatscreen TV,1,300,11/02/19 18:53,"22 Walnut St, Seattle, WA 98101" -287580,Bose SoundSport Headphones,1,99.99,11/28/19 11:06,"369 West St, San Francisco, CA 94016" -287581,27in FHD Monitor,1,149.99,11/30/19 20:40,"862 Adams St, New York City, NY 10001" -287582,Bose SoundSport Headphones,1,99.99,11/01/19 09:40,"745 Jefferson St, Dallas, TX 75001" -287583,USB-C Charging Cable,1,11.95,11/19/19 14:11,"1 8th St, Portland, ME 04101" -287584,AAA Batteries (4-pack),2,2.99,11/29/19 11:32,"16 Walnut St, Los Angeles, CA 90001" -287585,Apple Airpods Headphones,1,150,11/04/19 20:39,"677 Chestnut St, Seattle, WA 98101" -287586,Macbook Pro Laptop,1,1700,11/22/19 11:14,"41 6th St, Atlanta, GA 30301" -287587,27in FHD Monitor,1,149.99,11/04/19 18:43,"546 South St, Boston, MA 02215" -287588,Bose SoundSport Headphones,1,99.99,11/11/19 12:02,"261 Main St, Dallas, TX 75001" -287589,Bose SoundSport Headphones,1,99.99,11/30/19 11:07,"324 2nd St, New York City, NY 10001" -287590,Wired Headphones,1,11.99,11/29/19 06:16,"916 13th St, Los Angeles, CA 90001" -287591,Wired Headphones,1,11.99,11/13/19 23:49,"394 Cedar St, Dallas, TX 75001" -287592,AAA Batteries (4-pack),1,2.99,11/02/19 16:51,"581 Cherry St, Atlanta, GA 30301" -287593,Apple Airpods Headphones,1,150,11/23/19 22:27,"161 Forest St, Dallas, TX 75001" -287594,Google Phone,1,600,11/19/19 23:21,"317 4th St, San Francisco, CA 94016" -287595,AAA Batteries (4-pack),3,2.99,11/28/19 19:57,"816 Lake St, Dallas, TX 75001" -287596,Apple Airpods Headphones,1,150,11/15/19 15:50,"300 Hill St, Portland, ME 04101" -287597,Wired Headphones,1,11.99,11/26/19 19:54,"151 Ridge St, San Francisco, CA 94016" -287598,AAA Batteries (4-pack),1,2.99,11/08/19 19:02,"52 Spruce St, Dallas, TX 75001" -287599,Apple Airpods Headphones,1,150,11/26/19 22:57,"147 9th St, Los Angeles, CA 90001" -287600,27in FHD Monitor,1,149.99,11/27/19 09:46,"752 1st St, New York City, NY 10001" -287601,Lightning Charging Cable,1,14.95,11/05/19 10:18,"871 8th St, Los Angeles, CA 90001" -287602,AA Batteries (4-pack),1,3.84,11/18/19 20:13,"423 1st St, Boston, MA 02215" -287603,AA Batteries (4-pack),1,3.84,11/18/19 10:03,"983 Walnut St, Portland, OR 97035" -287604,AAA Batteries (4-pack),1,2.99,11/04/19 15:24,"274 Dogwood St, San Francisco, CA 94016" -287605,Bose SoundSport Headphones,1,99.99,11/14/19 17:46,"852 Spruce St, Seattle, WA 98101" -287606,AAA Batteries (4-pack),1,2.99,11/22/19 12:50,"303 9th St, San Francisco, CA 94016" -287607,AA Batteries (4-pack),1,3.84,11/06/19 22:38,"181 6th St, Los Angeles, CA 90001" -287608,27in 4K Gaming Monitor,1,389.99,11/27/19 19:56,"450 Sunset St, San Francisco, CA 94016" -287609,Lightning Charging Cable,1,14.95,11/03/19 21:30,"300 Sunset St, Boston, MA 02215" -287610,Bose SoundSport Headphones,1,99.99,11/02/19 13:14,"645 Elm St, Portland, ME 04101" -287611,AA Batteries (4-pack),1,3.84,11/22/19 13:07,"605 Wilson St, New York City, NY 10001" -287612,Lightning Charging Cable,2,14.95,11/02/19 13:02,"680 West St, Los Angeles, CA 90001" -287613,Bose SoundSport Headphones,1,99.99,11/19/19 14:25,"322 North St, San Francisco, CA 94016" -287614,Google Phone,1,600,11/29/19 17:45,"406 River St, Atlanta, GA 30301" -287614,Wired Headphones,1,11.99,11/29/19 17:45,"406 River St, Atlanta, GA 30301" -287615,27in FHD Monitor,1,149.99,11/23/19 19:08,"901 South St, San Francisco, CA 94016" -287616,Flatscreen TV,1,300,11/05/19 19:48,"893 5th St, San Francisco, CA 94016" -287617,AA Batteries (4-pack),1,3.84,11/18/19 08:54,"90 Lakeview St, Portland, ME 04101" -287618,Flatscreen TV,1,300,11/02/19 23:19,"934 Walnut St, Los Angeles, CA 90001" -287619,AA Batteries (4-pack),1,3.84,11/15/19 16:02,"886 Elm St, Boston, MA 02215" -287620,Apple Airpods Headphones,1,150,11/06/19 15:16,"464 Hickory St, New York City, NY 10001" -287621,AA Batteries (4-pack),1,3.84,11/07/19 11:34,"847 Cedar St, Los Angeles, CA 90001" -287622,20in Monitor,1,109.99,11/27/19 02:46,"813 Chestnut St, New York City, NY 10001" -287623,Apple Airpods Headphones,1,150,11/28/19 18:17,"348 10th St, San Francisco, CA 94016" -287624,Apple Airpods Headphones,1,150,11/15/19 18:12,"652 2nd St, San Francisco, CA 94016" -287625,20in Monitor,1,109.99,11/10/19 09:55,"170 Jackson St, Boston, MA 02215" -287626,AAA Batteries (4-pack),1,2.99,11/12/19 06:25,"569 2nd St, San Francisco, CA 94016" -287627,Apple Airpods Headphones,1,150,11/09/19 14:31,"700 Willow St, Boston, MA 02215" -287628,20in Monitor,1,109.99,11/10/19 10:38,"137 5th St, Austin, TX 73301" -287629,Wired Headphones,1,11.99,11/11/19 18:58,"558 Lake St, Portland, OR 97035" -287630,Lightning Charging Cable,2,14.95,11/05/19 11:01,"478 Main St, New York City, NY 10001" -287631,Lightning Charging Cable,1,14.95,11/13/19 17:34,"184 Main St, San Francisco, CA 94016" -287632,27in 4K Gaming Monitor,1,389.99,11/07/19 20:16,"726 1st St, San Francisco, CA 94016" -287633,AAA Batteries (4-pack),1,2.99,11/07/19 21:11,"410 Main St, Los Angeles, CA 90001" -287634,Google Phone,1,600,11/04/19 22:19,"793 Walnut St, Los Angeles, CA 90001" -287634,USB-C Charging Cable,1,11.95,11/04/19 22:19,"793 Walnut St, Los Angeles, CA 90001" -287634,AAA Batteries (4-pack),1,2.99,11/04/19 22:19,"793 Walnut St, Los Angeles, CA 90001" -287635,Lightning Charging Cable,1,14.95,11/19/19 18:12,"223 Johnson St, Los Angeles, CA 90001" -287636,Lightning Charging Cable,1,14.95,11/23/19 16:12,"780 14th St, San Francisco, CA 94016" -287637,LG Dryer,1,600.0,11/09/19 11:52,"757 2nd St, Seattle, WA 98101" -287638,AA Batteries (4-pack),1,3.84,11/12/19 10:22,"42 Adams St, New York City, NY 10001" -287639,Wired Headphones,1,11.99,11/24/19 18:20,"592 Ridge St, Dallas, TX 75001" -287640,Wired Headphones,1,11.99,11/28/19 23:24,"686 8th St, Los Angeles, CA 90001" -287641,Bose SoundSport Headphones,1,99.99,11/21/19 21:59,"988 North St, San Francisco, CA 94016" -287642,34in Ultrawide Monitor,1,379.99,11/26/19 10:08,"217 14th St, Dallas, TX 75001" -287643,20in Monitor,1,109.99,11/27/19 09:36,"581 North St, Atlanta, GA 30301" -287644,AA Batteries (4-pack),1,3.84,11/04/19 08:33,"966 7th St, Boston, MA 02215" -287645,ThinkPad Laptop,1,999.99,11/28/19 06:55,"210 Sunset St, Seattle, WA 98101" -287646,AAA Batteries (4-pack),1,2.99,11/19/19 01:40,"420 7th St, San Francisco, CA 94016" -287647,Flatscreen TV,1,300,11/17/19 06:23,"469 Willow St, Los Angeles, CA 90001" -287648,Apple Airpods Headphones,1,150,11/10/19 14:12,"126 Park St, Los Angeles, CA 90001" -287649,USB-C Charging Cable,1,11.95,11/03/19 23:03,"587 Hickory St, Austin, TX 73301" -287650,Lightning Charging Cable,1,14.95,11/16/19 15:42,"946 Hickory St, San Francisco, CA 94016" -287651,Bose SoundSport Headphones,1,99.99,11/03/19 13:27,"959 2nd St, Los Angeles, CA 90001" -287652,AAA Batteries (4-pack),1,2.99,11/10/19 23:05,"355 2nd St, Boston, MA 02215" -287653,Bose SoundSport Headphones,1,99.99,11/08/19 12:43,"213 10th St, San Francisco, CA 94016" -287654,Bose SoundSport Headphones,1,99.99,11/14/19 20:31,"67 Highland St, Seattle, WA 98101" -287655,USB-C Charging Cable,1,11.95,11/23/19 16:34,"122 Ridge St, Atlanta, GA 30301" -287656,USB-C Charging Cable,1,11.95,11/30/19 19:40,"479 Cherry St, San Francisco, CA 94016" -287657,Apple Airpods Headphones,1,150,11/07/19 14:58,"569 Forest St, San Francisco, CA 94016" -287658,AA Batteries (4-pack),2,3.84,11/20/19 17:15,"956 Main St, Boston, MA 02215" -287659,AA Batteries (4-pack),4,3.84,11/27/19 23:09,"191 Hill St, Boston, MA 02215" -287660,USB-C Charging Cable,1,11.95,11/17/19 09:17,"950 5th St, Dallas, TX 75001" -287661,AA Batteries (4-pack),1,3.84,11/04/19 00:47,"898 11th St, Portland, OR 97035" -287662,AAA Batteries (4-pack),1,2.99,11/06/19 07:06,"395 Spruce St, Portland, OR 97035" -287663,AA Batteries (4-pack),3,3.84,11/05/19 07:39,"343 Lakeview St, Dallas, TX 75001" -287664,20in Monitor,1,109.99,11/09/19 15:43,"920 Willow St, Los Angeles, CA 90001" -287665,AA Batteries (4-pack),1,3.84,11/04/19 11:52,"34 Church St, Atlanta, GA 30301" -287666,AA Batteries (4-pack),1,3.84,11/22/19 15:51,"449 Elm St, San Francisco, CA 94016" -287667,Lightning Charging Cable,1,14.95,11/13/19 13:24,"458 Willow St, Austin, TX 73301" -287668,27in FHD Monitor,1,149.99,11/02/19 20:28,"482 Madison St, Portland, ME 04101" -287669,USB-C Charging Cable,1,11.95,11/14/19 16:20,"13 14th St, Los Angeles, CA 90001" -287670,USB-C Charging Cable,1,11.95,11/29/19 21:04,"797 West St, San Francisco, CA 94016" -287671,AAA Batteries (4-pack),1,2.99,11/03/19 21:18,"254 5th St, Austin, TX 73301" -287672,Vareebadd Phone,1,400,11/19/19 09:56,"601 Adams St, Los Angeles, CA 90001" -287673,Lightning Charging Cable,1,14.95,11/03/19 14:24,"825 2nd St, San Francisco, CA 94016" -287674,Macbook Pro Laptop,1,1700,11/07/19 11:43,"663 Park St, Atlanta, GA 30301" -287675,AAA Batteries (4-pack),1,2.99,11/06/19 19:48,"360 Wilson St, New York City, NY 10001" -287676,Wired Headphones,1,11.99,11/07/19 17:53,"695 12th St, Portland, OR 97035" -287676,Flatscreen TV,1,300,11/07/19 17:53,"695 12th St, Portland, OR 97035" -287677,27in FHD Monitor,1,149.99,11/22/19 09:51,"916 Maple St, Seattle, WA 98101" -287678,Apple Airpods Headphones,1,150,11/28/19 13:55,"268 Elm St, Boston, MA 02215" -287679,27in FHD Monitor,1,149.99,11/01/19 21:17,"520 Madison St, Los Angeles, CA 90001" -287680,LG Washing Machine,1,600.0,11/09/19 13:26,"113 Chestnut St, Atlanta, GA 30301" -287681,AAA Batteries (4-pack),1,2.99,11/05/19 17:21,"916 Wilson St, Seattle, WA 98101" -287682,Lightning Charging Cable,1,14.95,11/09/19 18:24,"313 6th St, Seattle, WA 98101" -287683,Bose SoundSport Headphones,1,99.99,11/22/19 16:23,"156 Cherry St, New York City, NY 10001" -287684,27in 4K Gaming Monitor,1,389.99,11/08/19 10:48,"405 7th St, Atlanta, GA 30301" -287685,Lightning Charging Cable,1,14.95,11/14/19 17:02,"730 10th St, Dallas, TX 75001" -287686,AA Batteries (4-pack),1,3.84,11/24/19 19:35,"13 12th St, San Francisco, CA 94016" -287687,Wired Headphones,1,11.99,11/19/19 13:22,"224 Cherry St, Dallas, TX 75001" -287688,Apple Airpods Headphones,1,150,11/16/19 21:26,"297 Ridge St, San Francisco, CA 94016" -287689,Wired Headphones,1,11.99,11/23/19 10:28,"76 Jackson St, Portland, OR 97035" -287690,AA Batteries (4-pack),1,3.84,11/20/19 09:14,"630 West St, Atlanta, GA 30301" -287691,27in FHD Monitor,1,149.99,11/02/19 13:47,"886 Hickory St, New York City, NY 10001" -287692,iPhone,1,700,11/22/19 22:17,"46 Lakeview St, Los Angeles, CA 90001" -287693,Bose SoundSport Headphones,1,99.99,11/24/19 19:38,"751 Lincoln St, San Francisco, CA 94016" -287694,Lightning Charging Cable,2,14.95,11/30/19 19:55,"318 6th St, Dallas, TX 75001" -287695,AA Batteries (4-pack),3,3.84,11/16/19 16:36,"882 Madison St, Los Angeles, CA 90001" -287696,Macbook Pro Laptop,1,1700,11/06/19 00:37,"5 North St, Dallas, TX 75001" -287697,Lightning Charging Cable,1,14.95,11/13/19 12:00,"806 12th St, Atlanta, GA 30301" -287698,AA Batteries (4-pack),2,3.84,11/29/19 02:51,"38 Jackson St, San Francisco, CA 94016" -287699,Bose SoundSport Headphones,1,99.99,11/19/19 22:29,"973 2nd St, San Francisco, CA 94016" -287700,AAA Batteries (4-pack),1,2.99,11/05/19 12:58,"387 Washington St, Los Angeles, CA 90001" -287701,Apple Airpods Headphones,1,150,11/18/19 00:19,"829 Pine St, Boston, MA 02215" -287702,Bose SoundSport Headphones,1,99.99,11/04/19 20:34,"527 Spruce St, Seattle, WA 98101" -287702,27in 4K Gaming Monitor,1,389.99,11/04/19 20:34,"527 Spruce St, Seattle, WA 98101" -287703,27in 4K Gaming Monitor,1,389.99,11/23/19 21:09,"467 North St, Atlanta, GA 30301" -287704,AA Batteries (4-pack),1,3.84,11/10/19 11:24,"996 Center St, Atlanta, GA 30301" -287705,Wired Headphones,1,11.99,11/17/19 22:26,"48 Jackson St, Portland, OR 97035" -287706,USB-C Charging Cable,1,11.95,11/28/19 15:20,"50 Pine St, Atlanta, GA 30301" -287707,Apple Airpods Headphones,1,150,11/12/19 21:14,"391 Ridge St, New York City, NY 10001" -287708,Google Phone,1,600,11/06/19 17:47,"97 Jefferson St, Los Angeles, CA 90001" -287709,AA Batteries (4-pack),1,3.84,11/04/19 19:10,"927 West St, Los Angeles, CA 90001" -287710,AAA Batteries (4-pack),2,2.99,11/24/19 09:37,"176 6th St, San Francisco, CA 94016" -287711,Wired Headphones,1,11.99,11/06/19 10:26,"520 7th St, San Francisco, CA 94016" -287712,27in 4K Gaming Monitor,1,389.99,11/08/19 06:53,"230 Johnson St, Seattle, WA 98101" -287713,Wired Headphones,1,11.99,11/11/19 16:59,"807 Walnut St, Los Angeles, CA 90001" -287714,27in FHD Monitor,1,149.99,11/08/19 16:02,"390 12th St, Dallas, TX 75001" -287715,Apple Airpods Headphones,1,150,11/17/19 18:25,"886 10th St, New York City, NY 10001" -287716,Lightning Charging Cable,1,14.95,11/23/19 06:25,"230 Lincoln St, San Francisco, CA 94016" -287717,AA Batteries (4-pack),1,3.84,11/17/19 13:35,"570 11th St, Dallas, TX 75001" -287718,Flatscreen TV,1,300,11/24/19 14:38,"971 Hickory St, New York City, NY 10001" -287719,Bose SoundSport Headphones,1,99.99,11/01/19 20:19,"83 Meadow St, New York City, NY 10001" -287720,Bose SoundSport Headphones,1,99.99,11/21/19 21:36,"539 Center St, Seattle, WA 98101" -287721,AAA Batteries (4-pack),1,2.99,11/05/19 18:11,"293 Walnut St, Portland, ME 04101" -287722,Wired Headphones,2,11.99,11/26/19 10:08,"574 Jefferson St, Portland, ME 04101" -287723,AAA Batteries (4-pack),2,2.99,11/22/19 11:05,"271 10th St, Los Angeles, CA 90001" -287724,USB-C Charging Cable,1,11.95,11/02/19 15:59,"786 Washington St, Los Angeles, CA 90001" -287725,USB-C Charging Cable,1,11.95,11/10/19 08:32,"131 Highland St, San Francisco, CA 94016" -287726,AAA Batteries (4-pack),1,2.99,11/06/19 19:23,"524 Meadow St, Boston, MA 02215" -287727,Lightning Charging Cable,1,14.95,11/04/19 13:53,"740 Cherry St, Los Angeles, CA 90001" -287728,27in 4K Gaming Monitor,1,389.99,11/02/19 15:55,"29 4th St, Atlanta, GA 30301" -287729,Flatscreen TV,1,300,11/18/19 12:19,"130 Hickory St, New York City, NY 10001" -287730,USB-C Charging Cable,1,11.95,11/01/19 19:38,"912 Johnson St, New York City, NY 10001" -287731,AA Batteries (4-pack),2,3.84,11/24/19 18:27,"867 Elm St, Atlanta, GA 30301" -287732,34in Ultrawide Monitor,1,379.99,11/08/19 21:39,"414 Walnut St, San Francisco, CA 94016" -287733,AAA Batteries (4-pack),2,2.99,11/12/19 18:05,"865 6th St, San Francisco, CA 94016" -287734,USB-C Charging Cable,1,11.95,11/18/19 18:28,"705 Ridge St, Dallas, TX 75001" -287735,Apple Airpods Headphones,1,150,11/03/19 22:03,"403 Sunset St, Dallas, TX 75001" -287736,Wired Headphones,1,11.99,11/12/19 06:06,"756 Cherry St, Boston, MA 02215" -287737,Apple Airpods Headphones,1,150,11/01/19 21:12,"635 Maple St, Seattle, WA 98101" -287738,Flatscreen TV,1,300,11/02/19 16:07,"656 Main St, San Francisco, CA 94016" -287739,Google Phone,1,600,11/05/19 15:14,"889 Washington St, Los Angeles, CA 90001" -287740,Flatscreen TV,1,300,11/24/19 19:41,"983 Park St, San Francisco, CA 94016" -287741,AA Batteries (4-pack),1,3.84,11/07/19 17:42,"411 Jefferson St, San Francisco, CA 94016" -287742,USB-C Charging Cable,1,11.95,11/28/19 07:46,"304 Sunset St, Atlanta, GA 30301" -287743,USB-C Charging Cable,2,11.95,11/28/19 02:41,"879 13th St, New York City, NY 10001" -287744,Apple Airpods Headphones,1,150,11/02/19 09:10,"427 13th St, Portland, OR 97035" -287745,AA Batteries (4-pack),1,3.84,11/30/19 15:53,"914 1st St, San Francisco, CA 94016" -287746,AAA Batteries (4-pack),2,2.99,11/15/19 19:36,"838 Church St, Portland, OR 97035" -287747,Apple Airpods Headphones,1,150,11/03/19 21:27,"130 Main St, Los Angeles, CA 90001" -287748,USB-C Charging Cable,1,11.95,11/23/19 17:51,"628 10th St, Atlanta, GA 30301" -287749,Apple Airpods Headphones,1,150,11/15/19 08:53,"522 6th St, Dallas, TX 75001" -287750,27in 4K Gaming Monitor,1,389.99,11/18/19 19:14,"532 Hickory St, Los Angeles, CA 90001" -287751,Google Phone,1,600,11/20/19 11:06,"44 2nd St, Atlanta, GA 30301" -287752,Wired Headphones,1,11.99,11/04/19 22:58,"646 Madison St, Los Angeles, CA 90001" -287753,AAA Batteries (4-pack),2,2.99,11/21/19 13:23,"593 Walnut St, San Francisco, CA 94016" -287754,AAA Batteries (4-pack),1,2.99,11/01/19 15:31,"384 Highland St, San Francisco, CA 94016" -287755,Apple Airpods Headphones,1,150,11/23/19 12:15,"543 Lake St, Los Angeles, CA 90001" -287756,Flatscreen TV,1,300,11/21/19 09:45,"540 Church St, Boston, MA 02215" -287757,Lightning Charging Cable,1,14.95,11/03/19 17:04,"634 West St, Austin, TX 73301" -287758,Bose SoundSport Headphones,1,99.99,11/24/19 19:54,"72 Elm St, San Francisco, CA 94016" -287758,iPhone,1,700,11/24/19 19:54,"72 Elm St, San Francisco, CA 94016" -287759,Lightning Charging Cable,1,14.95,11/19/19 14:00,"764 6th St, Los Angeles, CA 90001" -287760,AAA Batteries (4-pack),2,2.99,11/25/19 23:57,"412 Chestnut St, Atlanta, GA 30301" -287761,AA Batteries (4-pack),1,3.84,11/13/19 01:07,"846 14th St, Los Angeles, CA 90001" -287762,Apple Airpods Headphones,1,150,11/01/19 14:25,"511 Spruce St, San Francisco, CA 94016" -287763,USB-C Charging Cable,2,11.95,11/26/19 09:46,"359 5th St, Dallas, TX 75001" -287764,iPhone,1,700,11/17/19 12:11,"913 7th St, Portland, OR 97035" -287765,USB-C Charging Cable,1,11.95,11/09/19 17:43,"575 5th St, Seattle, WA 98101" -287766,Bose SoundSport Headphones,1,99.99,11/17/19 15:31,"823 Johnson St, Dallas, TX 75001" -287767,AAA Batteries (4-pack),1,2.99,11/23/19 12:38,"271 Wilson St, Boston, MA 02215" -287768,Macbook Pro Laptop,1,1700,11/07/19 13:49,"38 8th St, Portland, OR 97035" -287769,AA Batteries (4-pack),1,3.84,11/20/19 18:18,"585 Lake St, Austin, TX 73301" -287770,Lightning Charging Cable,1,14.95,11/22/19 20:53,"114 Forest St, Austin, TX 73301" -287771,iPhone,1,700,11/05/19 10:15,"852 9th St, San Francisco, CA 94016" -287772,27in FHD Monitor,1,149.99,11/02/19 13:04,"5 Maple St, Portland, OR 97035" -287773,Wired Headphones,1,11.99,11/25/19 00:14,"893 12th St, San Francisco, CA 94016" -287774,Wired Headphones,1,11.99,11/08/19 22:53,"33 Pine St, Seattle, WA 98101" -287775,AAA Batteries (4-pack),1,2.99,11/22/19 10:55,"402 Adams St, Atlanta, GA 30301" -287776,USB-C Charging Cable,1,11.95,11/15/19 23:11,"960 Adams St, Boston, MA 02215" -287777,Apple Airpods Headphones,1,150,11/13/19 19:43,"863 North St, San Francisco, CA 94016" -287778,Lightning Charging Cable,1,14.95,11/08/19 08:32,"414 Cedar St, Los Angeles, CA 90001" -287779,27in FHD Monitor,1,149.99,11/27/19 19:29,"999 Adams St, Boston, MA 02215" -287779,Bose SoundSport Headphones,1,99.99,11/27/19 19:29,"999 Adams St, Boston, MA 02215" -287780,AA Batteries (4-pack),2,3.84,11/17/19 22:24,"182 6th St, Boston, MA 02215" -287781,Lightning Charging Cable,1,14.95,11/01/19 17:02,"231 Elm St, Los Angeles, CA 90001" -287782,20in Monitor,1,109.99,11/10/19 10:49,"273 Chestnut St, Seattle, WA 98101" -287783,AA Batteries (4-pack),1,3.84,11/04/19 05:39,"363 Lakeview St, Los Angeles, CA 90001" -287784,USB-C Charging Cable,1,11.95,11/17/19 17:09,"868 10th St, Atlanta, GA 30301" -287785,Macbook Pro Laptop,1,1700,11/05/19 21:21,"184 Meadow St, Boston, MA 02215" -287786,27in FHD Monitor,1,149.99,11/11/19 07:22,"457 Pine St, New York City, NY 10001" -287787,USB-C Charging Cable,2,11.95,11/08/19 17:56,"195 Park St, Portland, OR 97035" -287788,Apple Airpods Headphones,1,150,11/05/19 13:22,"193 14th St, Portland, OR 97035" -287789,27in FHD Monitor,1,149.99,11/20/19 07:30,"98 Hill St, New York City, NY 10001" -287790,27in 4K Gaming Monitor,1,389.99,11/12/19 15:02,"933 Jefferson St, Austin, TX 73301" -287791,Apple Airpods Headphones,1,150,11/21/19 16:05,"802 River St, Austin, TX 73301" -287792,27in FHD Monitor,1,149.99,11/10/19 09:41,"210 River St, Los Angeles, CA 90001" -287793,AAA Batteries (4-pack),1,2.99,11/29/19 11:44,"355 Sunset St, Boston, MA 02215" -287794,Google Phone,1,600,11/06/19 12:38,"883 4th St, New York City, NY 10001" -287794,Wired Headphones,1,11.99,11/06/19 12:38,"883 4th St, New York City, NY 10001" -287795,Macbook Pro Laptop,1,1700,11/19/19 18:57,"944 Hickory St, Los Angeles, CA 90001" -287796,Lightning Charging Cable,1,14.95,11/19/19 00:35,"686 8th St, Atlanta, GA 30301" -287797,AAA Batteries (4-pack),1,2.99,11/24/19 19:43,"682 7th St, Boston, MA 02215" -287798,AA Batteries (4-pack),2,3.84,11/07/19 14:46,"722 5th St, San Francisco, CA 94016" -287799,Apple Airpods Headphones,1,150,11/18/19 18:12,"325 Cedar St, Dallas, TX 75001" -287800,Bose SoundSport Headphones,1,99.99,11/29/19 11:02,"968 Dogwood St, New York City, NY 10001" -287801,AAA Batteries (4-pack),1,2.99,11/12/19 12:00,"169 Sunset St, Atlanta, GA 30301" -287802,AAA Batteries (4-pack),3,2.99,11/26/19 19:41,"240 Jackson St, Los Angeles, CA 90001" -287803,ThinkPad Laptop,1,999.99,11/19/19 17:10,"762 Hickory St, Seattle, WA 98101" -287804,Lightning Charging Cable,1,14.95,11/26/19 11:54,"223 Ridge St, Los Angeles, CA 90001" -287805,AA Batteries (4-pack),1,3.84,11/23/19 22:59,"988 Pine St, New York City, NY 10001" -287806,Wired Headphones,1,11.99,11/19/19 17:37,"425 Cherry St, Los Angeles, CA 90001" -287807,Macbook Pro Laptop,1,1700,11/06/19 10:25,"617 12th St, Boston, MA 02215" -287808,Wired Headphones,3,11.99,11/26/19 21:59,"828 River St, Seattle, WA 98101" -287809,Apple Airpods Headphones,1,150,11/20/19 12:05,"980 5th St, Portland, OR 97035" -287810,AA Batteries (4-pack),1,3.84,11/24/19 13:37,"865 1st St, Seattle, WA 98101" -287811,AAA Batteries (4-pack),1,2.99,11/13/19 11:38,"398 Elm St, Los Angeles, CA 90001" -287812,Wired Headphones,1,11.99,11/22/19 19:43,"737 Lincoln St, Boston, MA 02215" -287813,Apple Airpods Headphones,1,150,11/11/19 21:43,"710 Madison St, Portland, OR 97035" -287814,AAA Batteries (4-pack),2,2.99,11/01/19 17:47,"307 Hill St, San Francisco, CA 94016" -287815,Flatscreen TV,1,300,11/07/19 20:12,"204 Hill St, Atlanta, GA 30301" -287816,AA Batteries (4-pack),2,3.84,11/22/19 15:34,"758 1st St, Atlanta, GA 30301" -287817,Macbook Pro Laptop,1,1700,11/05/19 22:22,"2 Hill St, Austin, TX 73301" -287818,34in Ultrawide Monitor,1,379.99,11/01/19 19:27,"774 7th St, Portland, ME 04101" -287819,34in Ultrawide Monitor,1,379.99,11/18/19 08:22,"65 11th St, Portland, OR 97035" -287820,Wired Headphones,1,11.99,11/14/19 12:25,"205 Lincoln St, San Francisco, CA 94016" -287821,Wired Headphones,1,11.99,11/15/19 22:19,"597 Lincoln St, New York City, NY 10001" -287822,USB-C Charging Cable,1,11.95,11/25/19 16:06,"716 Church St, Seattle, WA 98101" -287823,AAA Batteries (4-pack),2,2.99,11/07/19 18:07,"754 Forest St, Boston, MA 02215" -287824,iPhone,1,700,11/22/19 16:47,"341 Washington St, New York City, NY 10001" -287825,Lightning Charging Cable,1,14.95,11/03/19 19:56,"645 Hill St, Atlanta, GA 30301" -287826,AA Batteries (4-pack),1,3.84,11/15/19 08:26,"366 Johnson St, San Francisco, CA 94016" -287827,AA Batteries (4-pack),1,3.84,11/27/19 23:53,"488 Center St, Los Angeles, CA 90001" -287828,Lightning Charging Cable,1,14.95,11/11/19 22:20,"746 Forest St, Dallas, TX 75001" -287829,USB-C Charging Cable,2,11.95,11/11/19 12:44,"495 Park St, Los Angeles, CA 90001" -287830,27in 4K Gaming Monitor,1,389.99,11/20/19 13:24,"788 6th St, New York City, NY 10001" -287831,AA Batteries (4-pack),1,3.84,11/03/19 21:14,"34 Wilson St, San Francisco, CA 94016" -287832,20in Monitor,1,109.99,11/24/19 02:09,"779 Sunset St, Atlanta, GA 30301" -287833,iPhone,1,700,11/04/19 14:31,"418 Johnson St, Boston, MA 02215" -287834,AAA Batteries (4-pack),1,2.99,11/29/19 21:32,"145 Chestnut St, Atlanta, GA 30301" -287835,Wired Headphones,1,11.99,11/04/19 17:54,"68 Sunset St, Los Angeles, CA 90001" -287836,Apple Airpods Headphones,1,150,11/06/19 22:33,"132 Johnson St, New York City, NY 10001" -287837,Lightning Charging Cable,1,14.95,11/27/19 19:18,"520 Cedar St, Atlanta, GA 30301" -287838,USB-C Charging Cable,1,11.95,11/18/19 22:05,"900 Adams St, New York City, NY 10001" -287839,27in FHD Monitor,1,149.99,11/30/19 03:18,"370 8th St, Boston, MA 02215" -287840,Flatscreen TV,1,300,11/12/19 21:57,"974 Cherry St, New York City, NY 10001" -287841,AA Batteries (4-pack),1,3.84,11/23/19 21:26,"847 Main St, Atlanta, GA 30301" -287842,USB-C Charging Cable,1,11.95,11/19/19 11:37,"130 Wilson St, San Francisco, CA 94016" -287843,Lightning Charging Cable,1,14.95,11/10/19 19:34,"998 Elm St, Los Angeles, CA 90001" -287844,USB-C Charging Cable,1,11.95,11/29/19 11:15,"561 River St, Dallas, TX 75001" -287845,Wired Headphones,1,11.99,11/17/19 13:10,"413 13th St, San Francisco, CA 94016" -287846,34in Ultrawide Monitor,1,379.99,11/26/19 16:03,"94 Chestnut St, Los Angeles, CA 90001" -287847,Bose SoundSport Headphones,1,99.99,11/24/19 18:30,"848 2nd St, Austin, TX 73301" -287848,Apple Airpods Headphones,1,150,11/13/19 12:38,"360 Center St, New York City, NY 10001" -287849,20in Monitor,1,109.99,11/01/19 17:13,"230 8th St, Boston, MA 02215" -287850,Wired Headphones,1,11.99,11/21/19 06:12,"327 Walnut St, Portland, OR 97035" -287851,Lightning Charging Cable,2,14.95,11/05/19 12:11,"395 7th St, San Francisco, CA 94016" -287852,USB-C Charging Cable,1,11.95,11/10/19 07:32,"638 Wilson St, New York City, NY 10001" -287853,USB-C Charging Cable,1,11.95,11/09/19 19:48,"454 Sunset St, Atlanta, GA 30301" -287854,AAA Batteries (4-pack),1,2.99,11/27/19 17:12,"515 8th St, Los Angeles, CA 90001" -287855,Wired Headphones,1,11.99,11/19/19 11:51,"666 6th St, Dallas, TX 75001" -287856,Wired Headphones,1,11.99,11/11/19 20:39,"566 Elm St, Atlanta, GA 30301" -287857,34in Ultrawide Monitor,1,379.99,11/17/19 17:04,"883 Forest St, Atlanta, GA 30301" -287858,Flatscreen TV,1,300,11/21/19 21:09,"686 Forest St, Los Angeles, CA 90001" -287859,ThinkPad Laptop,1,999.99,11/25/19 13:41,"909 Willow St, New York City, NY 10001" -287860,Apple Airpods Headphones,1,150,11/11/19 14:21,"700 Center St, Atlanta, GA 30301" -287861,AAA Batteries (4-pack),1,2.99,11/16/19 09:16,"702 Main St, Portland, OR 97035" -287862,iPhone,1,700,11/26/19 13:19,"85 Lincoln St, Boston, MA 02215" -287863,USB-C Charging Cable,1,11.95,11/30/19 10:08,"376 Lakeview St, Boston, MA 02215" -287864,AAA Batteries (4-pack),1,2.99,11/20/19 16:06,"819 13th St, Seattle, WA 98101" -287865,20in Monitor,1,109.99,11/21/19 22:06,"887 Hickory St, San Francisco, CA 94016" -287866,Macbook Pro Laptop,1,1700,11/05/19 21:13,"309 10th St, Seattle, WA 98101" -287867,AAA Batteries (4-pack),2,2.99,11/16/19 17:23,"988 Pine St, Los Angeles, CA 90001" -287868,LG Dryer,1,600.0,11/24/19 20:34,"962 10th St, Atlanta, GA 30301" -287869,USB-C Charging Cable,2,11.95,11/03/19 21:01,"634 Cedar St, Los Angeles, CA 90001" -287870,AAA Batteries (4-pack),1,2.99,11/08/19 21:57,"136 Washington St, Seattle, WA 98101" -287870,27in FHD Monitor,1,149.99,11/08/19 21:57,"136 Washington St, Seattle, WA 98101" -287871,Wired Headphones,1,11.99,11/13/19 07:08,"550 Pine St, Atlanta, GA 30301" -287872,20in Monitor,1,109.99,11/07/19 23:27,"864 Willow St, Austin, TX 73301" -287873,Apple Airpods Headphones,1,150,11/14/19 17:49,"173 Main St, San Francisco, CA 94016" -287874,Lightning Charging Cable,1,14.95,11/25/19 08:28,"962 Forest St, Seattle, WA 98101" -287875,Apple Airpods Headphones,1,150,11/30/19 14:55,"819 12th St, San Francisco, CA 94016" -287876,Lightning Charging Cable,1,14.95,11/14/19 10:53,"902 2nd St, San Francisco, CA 94016" -287877,USB-C Charging Cable,1,11.95,11/19/19 12:27,"152 Wilson St, New York City, NY 10001" -287878,Macbook Pro Laptop,1,1700,11/06/19 09:03,"208 Chestnut St, San Francisco, CA 94016" -287879,iPhone,1,700,11/04/19 01:27,"942 Dogwood St, San Francisco, CA 94016" -287880,AAA Batteries (4-pack),1,2.99,11/10/19 15:24,"584 Willow St, San Francisco, CA 94016" -287881,Lightning Charging Cable,1,14.95,11/24/19 19:12,"413 6th St, New York City, NY 10001" -287882,Lightning Charging Cable,1,14.95,11/05/19 23:12,"586 4th St, Dallas, TX 75001" -287883,USB-C Charging Cable,1,11.95,11/28/19 18:42,"119 Park St, Los Angeles, CA 90001" -287884,AAA Batteries (4-pack),1,2.99,11/12/19 14:00,"723 Forest St, Los Angeles, CA 90001" -287885,AAA Batteries (4-pack),1,2.99,11/22/19 15:18,"958 Main St, Dallas, TX 75001" -287886,AA Batteries (4-pack),1,3.84,11/25/19 00:25,"699 Chestnut St, San Francisco, CA 94016" -287887,Google Phone,1,600,11/08/19 12:20,"838 River St, New York City, NY 10001" -287888,Lightning Charging Cable,1,14.95,11/16/19 10:04,"860 Cedar St, Austin, TX 73301" -287889,AAA Batteries (4-pack),1,2.99,11/09/19 16:42,"937 Walnut St, San Francisco, CA 94016" -287890,USB-C Charging Cable,1,11.95,11/06/19 11:17,"975 Forest St, New York City, NY 10001" -287891,AAA Batteries (4-pack),1,2.99,11/26/19 18:18,"289 5th St, New York City, NY 10001" -287892,Flatscreen TV,1,300,11/10/19 15:52,"517 Chestnut St, Seattle, WA 98101" -287893,27in 4K Gaming Monitor,1,389.99,11/25/19 19:31,"232 Jefferson St, San Francisco, CA 94016" -287894,Bose SoundSport Headphones,1,99.99,11/11/19 17:19,"761 1st St, San Francisco, CA 94016" -287895,27in 4K Gaming Monitor,1,389.99,11/12/19 00:41,"561 Willow St, Portland, ME 04101" -287896,AAA Batteries (4-pack),1,2.99,11/23/19 20:49,"118 Cherry St, San Francisco, CA 94016" -287897,Bose SoundSport Headphones,1,99.99,11/17/19 11:44,"457 Spruce St, Los Angeles, CA 90001" -287898,Lightning Charging Cable,1,14.95,11/12/19 17:37,"997 Cedar St, Dallas, TX 75001" -287899,20in Monitor,1,109.99,11/26/19 07:31,"20 5th St, Los Angeles, CA 90001" -287900,iPhone,1,700,11/15/19 11:10,"955 South St, San Francisco, CA 94016" -287901,34in Ultrawide Monitor,1,379.99,11/19/19 15:28,"606 2nd St, San Francisco, CA 94016" -287902,Lightning Charging Cable,1,14.95,11/08/19 17:34,"695 8th St, New York City, NY 10001" -287902,AAA Batteries (4-pack),2,2.99,11/08/19 17:34,"695 8th St, New York City, NY 10001" -287903,ThinkPad Laptop,1,999.99,11/30/19 13:18,"469 4th St, San Francisco, CA 94016" -287904,27in FHD Monitor,1,149.99,11/08/19 16:24,"694 13th St, Boston, MA 02215" -287905,LG Dryer,1,600.0,11/13/19 06:34,"73 Sunset St, Seattle, WA 98101" -287906,AAA Batteries (4-pack),1,2.99,11/03/19 14:34,"143 2nd St, Boston, MA 02215" -287907,Bose SoundSport Headphones,1,99.99,11/04/19 09:48,"382 14th St, Seattle, WA 98101" -287908,iPhone,1,700,11/13/19 17:35,"572 4th St, New York City, NY 10001" -287909,USB-C Charging Cable,1,11.95,11/23/19 16:19,"56 Cedar St, New York City, NY 10001" -287910,Lightning Charging Cable,1,14.95,11/26/19 11:19,"562 14th St, Los Angeles, CA 90001" -287911,Wired Headphones,1,11.99,11/22/19 21:34,"389 1st St, Los Angeles, CA 90001" -287912,Lightning Charging Cable,1,14.95,11/07/19 19:02,"320 4th St, Austin, TX 73301" -287913,Lightning Charging Cable,1,14.95,11/12/19 09:12,"641 7th St, Atlanta, GA 30301" -287914,Lightning Charging Cable,1,14.95,11/24/19 09:11,"970 Washington St, New York City, NY 10001" -287915,iPhone,1,700,11/22/19 22:29,"324 Cedar St, Dallas, TX 75001" -287916,Wired Headphones,1,11.99,11/13/19 16:59,"991 13th St, San Francisco, CA 94016" -287917,Lightning Charging Cable,1,14.95,11/21/19 00:33,"472 10th St, Atlanta, GA 30301" -287918,27in FHD Monitor,1,149.99,11/06/19 12:24,"137 Willow St, Seattle, WA 98101" -287919,AAA Batteries (4-pack),1,2.99,11/24/19 11:40,"621 Maple St, Seattle, WA 98101" -287920,Lightning Charging Cable,1,14.95,11/14/19 21:38,"855 Adams St, Boston, MA 02215" -287921,AAA Batteries (4-pack),1,2.99,11/14/19 17:44,"891 Hickory St, San Francisco, CA 94016" -287922,Lightning Charging Cable,1,14.95,11/24/19 15:25,"160 8th St, New York City, NY 10001" -287923,Bose SoundSport Headphones,1,99.99,11/17/19 07:02,"842 1st St, Dallas, TX 75001" -287924,AA Batteries (4-pack),2,3.84,11/30/19 14:18,"711 North St, San Francisco, CA 94016" -287925,Lightning Charging Cable,1,14.95,11/17/19 17:55,"575 River St, New York City, NY 10001" -287926,USB-C Charging Cable,3,11.95,11/08/19 02:54,"648 Elm St, Los Angeles, CA 90001" -287927,Flatscreen TV,1,300,11/25/19 10:48,"206 Meadow St, New York City, NY 10001" -287928,AA Batteries (4-pack),2,3.84,11/21/19 20:07,"672 14th St, Portland, OR 97035" -287929,Apple Airpods Headphones,1,150,11/03/19 00:49,"990 Lakeview St, Los Angeles, CA 90001" -287930,Lightning Charging Cable,1,14.95,11/16/19 02:57,"14 Lake St, Atlanta, GA 30301" -287931,AA Batteries (4-pack),1,3.84,11/08/19 19:58,"445 8th St, Boston, MA 02215" -287932,Wired Headphones,1,11.99,11/16/19 11:07,"14 Chestnut St, Los Angeles, CA 90001" -287933,27in FHD Monitor,1,149.99,11/15/19 22:50,"629 Dogwood St, Portland, OR 97035" -287934,AAA Batteries (4-pack),1,2.99,11/03/19 17:55,"964 North St, New York City, NY 10001" -287935,AA Batteries (4-pack),1,3.84,11/02/19 09:27,"945 River St, San Francisco, CA 94016" -287936,AAA Batteries (4-pack),1,2.99,11/13/19 13:00,"473 Cedar St, Portland, OR 97035" -287937,Apple Airpods Headphones,1,150,11/23/19 20:10,"196 Walnut St, Los Angeles, CA 90001" -287938,27in FHD Monitor,1,149.99,11/14/19 16:27,"77 Forest St, New York City, NY 10001" -287939,USB-C Charging Cable,1,11.95,11/22/19 20:30,"933 Church St, Atlanta, GA 30301" -287940,Apple Airpods Headphones,1,150,11/21/19 10:46,"194 Willow St, New York City, NY 10001" -287941,Wired Headphones,1,11.99,11/18/19 22:44,"914 Lake St, Los Angeles, CA 90001" -287942,Macbook Pro Laptop,1,1700,11/18/19 10:39,"477 Pine St, New York City, NY 10001" -287943,Wired Headphones,1,11.99,11/08/19 20:37,"545 11th St, Atlanta, GA 30301" -287944,Lightning Charging Cable,1,14.95,11/05/19 01:40,"809 Maple St, New York City, NY 10001" -287945,Apple Airpods Headphones,1,150,11/30/19 08:21,"802 Adams St, San Francisco, CA 94016" -287946,AA Batteries (4-pack),5,3.84,11/06/19 05:10,"586 Ridge St, Dallas, TX 75001" -287947,Flatscreen TV,1,300,11/10/19 22:03,"438 Cherry St, Atlanta, GA 30301" -287948,USB-C Charging Cable,1,11.95,11/19/19 08:20,"550 Walnut St, Boston, MA 02215" -287949,USB-C Charging Cable,1,11.95,11/10/19 21:56,"260 Main St, San Francisco, CA 94016" -287950,AAA Batteries (4-pack),2,2.99,11/26/19 19:50,"879 Cedar St, San Francisco, CA 94016" -287951,Lightning Charging Cable,1,14.95,11/09/19 22:43,"998 Meadow St, Los Angeles, CA 90001" -287952,Apple Airpods Headphones,1,150,11/13/19 09:47,"415 Maple St, Seattle, WA 98101" -287953,Vareebadd Phone,1,400,11/26/19 23:39,"441 North St, San Francisco, CA 94016" -287953,USB-C Charging Cable,1,11.95,11/26/19 23:39,"441 North St, San Francisco, CA 94016" -287954,AAA Batteries (4-pack),1,2.99,11/04/19 10:32,"352 Park St, Seattle, WA 98101" -287955,ThinkPad Laptop,1,999.99,11/27/19 12:05,"624 Washington St, Los Angeles, CA 90001" -287956,Apple Airpods Headphones,1,150,11/19/19 10:04,"370 Forest St, Portland, OR 97035" -287957,AA Batteries (4-pack),1,3.84,11/06/19 14:18,"170 Forest St, New York City, NY 10001" -287958,Apple Airpods Headphones,1,150,11/12/19 01:10,"602 Lakeview St, Portland, ME 04101" -287959,Google Phone,1,600,11/08/19 21:27,"108 Main St, New York City, NY 10001" -287959,USB-C Charging Cable,1,11.95,11/08/19 21:27,"108 Main St, New York City, NY 10001" -287960,Wired Headphones,1,11.99,11/02/19 19:54,"611 Maple St, New York City, NY 10001" -287961,AAA Batteries (4-pack),1,2.99,11/16/19 22:05,"120 West St, Los Angeles, CA 90001" -287962,AA Batteries (4-pack),2,3.84,11/28/19 19:25,"941 Church St, Los Angeles, CA 90001" -287963,AAA Batteries (4-pack),1,2.99,11/05/19 16:29,"4 2nd St, San Francisco, CA 94016" -287964,Bose SoundSport Headphones,1,99.99,11/01/19 08:37,"558 Cedar St, Dallas, TX 75001" -287965,AAA Batteries (4-pack),1,2.99,11/12/19 10:38,"70 Johnson St, San Francisco, CA 94016" -287966,AAA Batteries (4-pack),1,2.99,11/08/19 17:57,"837 Jackson St, Seattle, WA 98101" -287967,Macbook Pro Laptop,1,1700,11/27/19 18:00,"624 Willow St, Portland, OR 97035" -287968,20in Monitor,1,109.99,11/06/19 13:52,"920 Meadow St, San Francisco, CA 94016" -287969,AAA Batteries (4-pack),3,2.99,11/07/19 08:26,"505 Adams St, San Francisco, CA 94016" -287970,Apple Airpods Headphones,1,150,11/03/19 16:56,"904 Jackson St, Boston, MA 02215" -287971,Google Phone,1,600,11/07/19 14:46,"961 8th St, New York City, NY 10001" -287972,Apple Airpods Headphones,1,150,11/13/19 19:55,"180 Main St, Los Angeles, CA 90001" -287973,Apple Airpods Headphones,1,150,11/13/19 08:15,"266 Madison St, Los Angeles, CA 90001" -287974,Bose SoundSport Headphones,1,99.99,11/14/19 23:56,"793 Walnut St, San Francisco, CA 94016" -287975,Apple Airpods Headphones,1,150,11/28/19 18:03,"832 Forest St, Boston, MA 02215" -287975,Wired Headphones,1,11.99,11/28/19 18:03,"832 Forest St, Boston, MA 02215" -287976,Wired Headphones,1,11.99,11/25/19 13:21,"961 Lake St, San Francisco, CA 94016" -287977,Macbook Pro Laptop,1,1700,11/27/19 10:41,"435 South St, Seattle, WA 98101" -287978,20in Monitor,1,109.99,11/17/19 07:54,"240 Lake St, Los Angeles, CA 90001" -287979,Lightning Charging Cable,1,14.95,11/22/19 21:56,"928 13th St, Boston, MA 02215" -287980,Wired Headphones,1,11.99,11/18/19 14:02,"958 Highland St, Atlanta, GA 30301" -287981,Macbook Pro Laptop,1,1700,11/14/19 19:43,"875 Cedar St, San Francisco, CA 94016" -287982,Lightning Charging Cable,1,14.95,11/30/19 09:12,"75 12th St, San Francisco, CA 94016" -287983,USB-C Charging Cable,1,11.95,11/07/19 22:12,"285 12th St, Portland, OR 97035" -287984,Macbook Pro Laptop,1,1700,11/28/19 15:21,"360 Cherry St, Atlanta, GA 30301" -287985,AAA Batteries (4-pack),1,2.99,11/25/19 11:16,"223 Walnut St, New York City, NY 10001" -287986,Bose SoundSport Headphones,1,99.99,11/10/19 13:41,"485 Willow St, New York City, NY 10001" -287987,USB-C Charging Cable,1,11.95,11/30/19 22:26,"175 12th St, New York City, NY 10001" -287988,USB-C Charging Cable,1,11.95,11/20/19 01:07,"305 Willow St, Atlanta, GA 30301" -287989,Apple Airpods Headphones,1,150,11/05/19 12:09,"25 Chestnut St, Boston, MA 02215" -287990,USB-C Charging Cable,1,11.95,11/26/19 15:12,"885 Chestnut St, San Francisco, CA 94016" -287991,Macbook Pro Laptop,1,1700,11/22/19 11:35,"369 Ridge St, Los Angeles, CA 90001" -287992,USB-C Charging Cable,1,11.95,11/20/19 00:16,"123 Church St, Austin, TX 73301" -287993,Bose SoundSport Headphones,1,99.99,11/26/19 03:26,"4 5th St, New York City, NY 10001" -287994,Bose SoundSport Headphones,1,99.99,11/19/19 19:07,"465 Forest St, Atlanta, GA 30301" -287995,27in 4K Gaming Monitor,1,389.99,11/28/19 11:58,"137 West St, Portland, ME 04101" -287996,Flatscreen TV,1,300,11/27/19 13:56,"599 7th St, Austin, TX 73301" -287997,Apple Airpods Headphones,1,150,11/30/19 11:25,"708 Elm St, Los Angeles, CA 90001" -287998,USB-C Charging Cable,1,11.95,11/23/19 22:24,"954 Jefferson St, Dallas, TX 75001" -287999,Wired Headphones,1,11.99,11/26/19 15:28,"616 5th St, Dallas, TX 75001" -288000,Lightning Charging Cable,1,14.95,11/26/19 13:02,"569 Main St, Seattle, WA 98101" -288001,Lightning Charging Cable,1,14.95,11/26/19 23:47,"55 Lake St, San Francisco, CA 94016" -288002,USB-C Charging Cable,1,11.95,11/17/19 20:24,"367 Elm St, New York City, NY 10001" -288003,Macbook Pro Laptop,1,1700,11/10/19 08:51,"690 Dogwood St, Boston, MA 02215" -288004,AAA Batteries (4-pack),1,2.99,11/01/19 22:06,"779 9th St, San Francisco, CA 94016" -288005,USB-C Charging Cable,2,11.95,11/23/19 01:16,"549 Jackson St, Los Angeles, CA 90001" -288006,AAA Batteries (4-pack),1,2.99,11/21/19 19:09,"690 14th St, San Francisco, CA 94016" -288007,AA Batteries (4-pack),1,3.84,11/03/19 07:50,"858 5th St, Atlanta, GA 30301" -288008,Bose SoundSport Headphones,1,99.99,11/20/19 11:10,"601 Sunset St, Atlanta, GA 30301" -288009,Wired Headphones,1,11.99,11/06/19 09:03,"729 6th St, Seattle, WA 98101" -288010,USB-C Charging Cable,1,11.95,11/07/19 08:33,"578 7th St, Seattle, WA 98101" -288011,Google Phone,1,600,11/09/19 18:28,"419 Highland St, San Francisco, CA 94016" -288011,Bose SoundSport Headphones,1,99.99,11/09/19 18:28,"419 Highland St, San Francisco, CA 94016" -288012,Lightning Charging Cable,1,14.95,11/28/19 22:28,"498 Madison St, New York City, NY 10001" -288013,AAA Batteries (4-pack),1,2.99,11/14/19 19:01,"241 Pine St, Los Angeles, CA 90001" -288013,27in 4K Gaming Monitor,1,389.99,11/14/19 19:01,"241 Pine St, Los Angeles, CA 90001" -288014,Wired Headphones,1,11.99,11/17/19 22:01,"268 Willow St, San Francisco, CA 94016" -288015,Flatscreen TV,1,300,11/29/19 17:05,"121 Elm St, San Francisco, CA 94016" -288016,Apple Airpods Headphones,1,150,11/07/19 17:26,"599 Main St, Los Angeles, CA 90001" -288017,Bose SoundSport Headphones,1,99.99,11/08/19 09:32,"978 12th St, Los Angeles, CA 90001" -288018,Lightning Charging Cable,1,14.95,11/02/19 12:26,"680 Willow St, Los Angeles, CA 90001" -288019,AAA Batteries (4-pack),3,2.99,11/11/19 20:53,"959 Dogwood St, Portland, OR 97035" -288020,Lightning Charging Cable,1,14.95,11/02/19 21:27,"716 1st St, Atlanta, GA 30301" -288021,Wired Headphones,2,11.99,11/22/19 21:47,"230 Pine St, Los Angeles, CA 90001" -288022,Wired Headphones,1,11.99,11/07/19 22:24,"572 8th St, Seattle, WA 98101" -288023,Bose SoundSport Headphones,1,99.99,11/26/19 06:25,"381 Center St, New York City, NY 10001" -288024,Wired Headphones,1,11.99,11/11/19 16:05,"226 Wilson St, New York City, NY 10001" -288025,Bose SoundSport Headphones,1,99.99,11/17/19 10:20,"6 Willow St, Boston, MA 02215" -288026,Wired Headphones,1,11.99,11/03/19 09:41,"812 Johnson St, Dallas, TX 75001" -288027,Bose SoundSport Headphones,1,99.99,11/01/19 10:42,"874 Walnut St, San Francisco, CA 94016" -288028,AA Batteries (4-pack),2,3.84,11/16/19 09:00,"603 Wilson St, Atlanta, GA 30301" -288029,AAA Batteries (4-pack),1,2.99,11/30/19 17:07,"262 8th St, Boston, MA 02215" -288030,Bose SoundSport Headphones,1,99.99,11/08/19 20:24,"51 Ridge St, Portland, OR 97035" -288031,Bose SoundSport Headphones,1,99.99,11/16/19 08:16,"498 Forest St, Seattle, WA 98101" -288032,27in FHD Monitor,1,149.99,11/22/19 14:32,"188 North St, San Francisco, CA 94016" -288033,Lightning Charging Cable,1,14.95,11/30/19 20:20,"523 13th St, San Francisco, CA 94016" -288034,27in 4K Gaming Monitor,1,389.99,11/11/19 19:37,"626 13th St, Boston, MA 02215" -288035,Lightning Charging Cable,1,14.95,11/23/19 10:44,"644 Meadow St, Los Angeles, CA 90001" -288036,27in 4K Gaming Monitor,1,389.99,11/09/19 10:10,"337 Dogwood St, San Francisco, CA 94016" -288037,AA Batteries (4-pack),3,3.84,11/02/19 18:52,"233 Lakeview St, Boston, MA 02215" -288038,Apple Airpods Headphones,1,150,11/30/19 13:16,"653 Willow St, Los Angeles, CA 90001" -288039,USB-C Charging Cable,1,11.95,11/26/19 12:33,"952 Main St, Los Angeles, CA 90001" -288040,Apple Airpods Headphones,1,150,11/16/19 14:18,"474 9th St, Boston, MA 02215" -288041,AA Batteries (4-pack),1,3.84,11/02/19 14:39,"874 Lake St, Seattle, WA 98101" -288042,Bose SoundSport Headphones,1,99.99,11/02/19 19:52,"335 Forest St, Austin, TX 73301" -288043,Apple Airpods Headphones,1,150,11/01/19 09:14,"802 Elm St, Boston, MA 02215" -288044,AA Batteries (4-pack),1,3.84,11/04/19 15:04,"835 Willow St, Portland, OR 97035" -288045,20in Monitor,1,109.99,11/11/19 16:43,"113 River St, Portland, OR 97035" -288046,Apple Airpods Headphones,1,150,11/03/19 17:15,"544 8th St, San Francisco, CA 94016" -288047,Wired Headphones,1,11.99,11/17/19 14:39,"247 Hickory St, New York City, NY 10001" -288048,USB-C Charging Cable,1,11.95,11/05/19 14:29,"153 North St, San Francisco, CA 94016" -288049,Vareebadd Phone,1,400,11/16/19 18:26,"685 Highland St, San Francisco, CA 94016" -288049,Wired Headphones,1,11.99,11/16/19 18:26,"685 Highland St, San Francisco, CA 94016" -288050,iPhone,1,700,11/13/19 10:32,"73 Spruce St, New York City, NY 10001" -288051,Bose SoundSport Headphones,1,99.99,11/01/19 09:31,"644 Highland St, San Francisco, CA 94016" -288052,Bose SoundSport Headphones,1,99.99,11/21/19 13:41,"494 Elm St, Dallas, TX 75001" -288053,AA Batteries (4-pack),2,3.84,11/22/19 20:48,"140 4th St, Los Angeles, CA 90001" -288054,Wired Headphones,1,11.99,11/04/19 10:58,"505 Lake St, Portland, ME 04101" -288055,Vareebadd Phone,1,400,11/29/19 09:47,"586 Washington St, San Francisco, CA 94016" -288056,USB-C Charging Cable,1,11.95,11/05/19 19:10,"165 5th St, Portland, ME 04101" -288057,Vareebadd Phone,1,400,11/07/19 15:42,"875 Cedar St, New York City, NY 10001" -288058,USB-C Charging Cable,1,11.95,11/24/19 00:14,"427 Cherry St, New York City, NY 10001" -288059,iPhone,1,700,11/25/19 13:49,"651 Church St, Dallas, TX 75001" -288060,Bose SoundSport Headphones,1,99.99,11/10/19 08:04,"453 Maple St, Portland, OR 97035" -288061,AA Batteries (4-pack),1,3.84,11/23/19 11:33,"757 13th St, Los Angeles, CA 90001" -288062,Bose SoundSport Headphones,1,99.99,11/02/19 16:29,"981 Chestnut St, New York City, NY 10001" -288063,34in Ultrawide Monitor,1,379.99,11/11/19 13:55,"799 10th St, Portland, OR 97035" -288064,USB-C Charging Cable,1,11.95,11/21/19 09:55,"188 4th St, New York City, NY 10001" -288065,27in FHD Monitor,1,149.99,11/13/19 23:21,"190 10th St, Atlanta, GA 30301" -288066,Wired Headphones,1,11.99,11/19/19 20:01,"865 Johnson St, Boston, MA 02215" -288067,ThinkPad Laptop,1,999.99,11/01/19 10:35,"508 Church St, Dallas, TX 75001" -288068,Wired Headphones,2,11.99,11/29/19 11:05,"608 Johnson St, San Francisco, CA 94016" -288069,Bose SoundSport Headphones,1,99.99,11/10/19 10:51,"240 1st St, Los Angeles, CA 90001" -288070,AAA Batteries (4-pack),1,2.99,11/24/19 21:52,"537 Park St, Dallas, TX 75001" -288071,Lightning Charging Cable,1,14.95,11/14/19 20:54,"275 South St, Dallas, TX 75001" -288072,USB-C Charging Cable,2,11.95,11/11/19 11:55,"505 Cherry St, Portland, OR 97035" -288073,Lightning Charging Cable,1,14.95,11/22/19 17:47,"83 Spruce St, New York City, NY 10001" -288074,Bose SoundSport Headphones,1,99.99,11/28/19 00:31,"545 Willow St, San Francisco, CA 94016" -288075,Apple Airpods Headphones,1,150,11/05/19 17:30,"441 Cedar St, Boston, MA 02215" -288076,Apple Airpods Headphones,1,150,11/24/19 13:56,"295 Dogwood St, New York City, NY 10001" -288077,Google Phone,1,600,11/03/19 20:46,"107 Cherry St, Atlanta, GA 30301" -288078,Google Phone,1,600,11/26/19 09:41,"822 Church St, Atlanta, GA 30301" -288078,USB-C Charging Cable,1,11.95,11/26/19 09:41,"822 Church St, Atlanta, GA 30301" -288079,USB-C Charging Cable,1,11.95,11/25/19 11:16,"644 Johnson St, San Francisco, CA 94016" -288080,USB-C Charging Cable,1,11.95,11/30/19 03:32,"931 Lincoln St, San Francisco, CA 94016" -288081,Macbook Pro Laptop,1,1700,11/08/19 12:40,"943 Madison St, Dallas, TX 75001" -288082,AAA Batteries (4-pack),6,2.99,11/26/19 10:16,"307 Main St, Portland, OR 97035" -288083,27in 4K Gaming Monitor,1,389.99,11/15/19 22:08,"639 Park St, New York City, NY 10001" -288084,Apple Airpods Headphones,1,150,11/15/19 14:34,"40 South St, New York City, NY 10001" -288085,34in Ultrawide Monitor,1,379.99,11/02/19 21:25,"291 8th St, Boston, MA 02215" -288086,Wired Headphones,1,11.99,11/17/19 17:53,"42 Jefferson St, Dallas, TX 75001" -288087,Wired Headphones,1,11.99,11/15/19 10:51,"461 Highland St, New York City, NY 10001" -288088,Lightning Charging Cable,1,14.95,11/03/19 14:17,"205 14th St, Seattle, WA 98101" -288089,Macbook Pro Laptop,1,1700,11/05/19 22:01,"64 Maple St, Boston, MA 02215" -288090,iPhone,1,700,11/02/19 22:22,"56 Sunset St, San Francisco, CA 94016" -288091,iPhone,1,700,11/28/19 18:01,"18 13th St, Austin, TX 73301" -288092,AAA Batteries (4-pack),2,2.99,11/10/19 18:41,"903 Spruce St, Austin, TX 73301" -288093,Apple Airpods Headphones,1,150,11/27/19 19:25,"514 Johnson St, San Francisco, CA 94016" -288094,Wired Headphones,1,11.99,11/13/19 16:18,"215 10th St, Seattle, WA 98101" -288095,Wired Headphones,1,11.99,11/06/19 12:04,"269 Meadow St, San Francisco, CA 94016" -288096,AA Batteries (4-pack),1,3.84,11/28/19 22:39,"84 Wilson St, Dallas, TX 75001" -288097,iPhone,1,700,11/04/19 13:25,"831 9th St, Los Angeles, CA 90001" -288098,Vareebadd Phone,1,400,11/07/19 04:20,"943 Willow St, San Francisco, CA 94016" -288099,AA Batteries (4-pack),1,3.84,11/30/19 10:55,"999 Willow St, San Francisco, CA 94016" -288100,AAA Batteries (4-pack),1,2.99,11/18/19 15:00,"437 Hickory St, San Francisco, CA 94016" -288101,AAA Batteries (4-pack),1,2.99,11/10/19 19:29,"747 Jefferson St, Portland, OR 97035" -288102,Wired Headphones,1,11.99,11/19/19 08:29,"266 Jackson St, New York City, NY 10001" -288103,AAA Batteries (4-pack),1,2.99,11/12/19 21:07,"39 Center St, Los Angeles, CA 90001" -288104,Wired Headphones,1,11.99,11/19/19 10:08,"184 Park St, Atlanta, GA 30301" -288104,USB-C Charging Cable,1,11.95,11/19/19 10:08,"184 Park St, Atlanta, GA 30301" -288105,Wired Headphones,1,11.99,11/12/19 09:44,"279 Elm St, Boston, MA 02215" -288105,AAA Batteries (4-pack),1,2.99,11/12/19 09:44,"279 Elm St, Boston, MA 02215" -288106,USB-C Charging Cable,1,11.95,11/04/19 14:31,"724 Dogwood St, Los Angeles, CA 90001" -288107,Macbook Pro Laptop,1,1700,11/23/19 23:40,"543 7th St, New York City, NY 10001" -288108,Wired Headphones,1,11.99,11/21/19 15:08,"148 Jefferson St, Los Angeles, CA 90001" -288109,Macbook Pro Laptop,1,1700,11/27/19 15:41,"826 Elm St, Boston, MA 02215" -288110,Wired Headphones,1,11.99,11/08/19 10:26,"888 Willow St, Portland, OR 97035" -288111,Lightning Charging Cable,1,14.95,11/15/19 05:31,"672 2nd St, San Francisco, CA 94016" -288112,Lightning Charging Cable,1,14.95,11/02/19 12:11,"272 Lake St, Austin, TX 73301" -288113,20in Monitor,1,109.99,11/27/19 13:43,"899 Hickory St, San Francisco, CA 94016" -288114,ThinkPad Laptop,1,999.99,11/10/19 10:30,"852 Adams St, Dallas, TX 75001" -288115,AAA Batteries (4-pack),1,2.99,11/15/19 14:21,"35 4th St, Dallas, TX 75001" -288116,AA Batteries (4-pack),3,3.84,11/15/19 13:42,"421 Spruce St, New York City, NY 10001" -288117,AAA Batteries (4-pack),1,2.99,11/26/19 09:59,"571 Jackson St, Portland, OR 97035" -288118,Flatscreen TV,1,300,11/15/19 21:09,"84 Lake St, Boston, MA 02215" -288119,AA Batteries (4-pack),1,3.84,11/15/19 19:46,"37 6th St, Portland, OR 97035" -288120,Vareebadd Phone,1,400,11/01/19 11:19,"352 6th St, Dallas, TX 75001" -288120,iPhone,1,700,11/01/19 11:19,"352 6th St, Dallas, TX 75001" -288121,Flatscreen TV,1,300,11/13/19 00:53,"132 Maple St, Dallas, TX 75001" -288122,Lightning Charging Cable,3,14.95,11/01/19 21:12,"148 Spruce St, Austin, TX 73301" -288123,Vareebadd Phone,1,400,11/04/19 15:28,"776 Pine St, New York City, NY 10001" -288123,34in Ultrawide Monitor,1,379.99,11/04/19 15:28,"776 Pine St, New York City, NY 10001" -288124,USB-C Charging Cable,1,11.95,11/30/19 19:31,"177 Washington St, New York City, NY 10001" -288125,Bose SoundSport Headphones,1,99.99,11/17/19 14:34,"385 Lake St, Boston, MA 02215" -288125,Bose SoundSport Headphones,1,99.99,11/17/19 14:34,"385 Lake St, Boston, MA 02215" -288126,USB-C Charging Cable,1,11.95,11/23/19 20:51,"205 Highland St, San Francisco, CA 94016" -288127,AA Batteries (4-pack),1,3.84,11/13/19 18:50,"757 Dogwood St, Los Angeles, CA 90001" -288128,USB-C Charging Cable,1,11.95,11/25/19 23:22,"431 Wilson St, New York City, NY 10001" -288129,Lightning Charging Cable,1,14.95,11/04/19 13:47,"670 10th St, Portland, OR 97035" -288130,iPhone,1,700,11/10/19 19:12,"429 Jefferson St, New York City, NY 10001" -288131,USB-C Charging Cable,1,11.95,11/16/19 20:59,"502 14th St, Boston, MA 02215" -288132,AAA Batteries (4-pack),2,2.99,11/20/19 15:19,"987 Meadow St, Boston, MA 02215" -288133,AAA Batteries (4-pack),1,2.99,11/30/19 00:30,"934 8th St, Atlanta, GA 30301" -288134,Wired Headphones,1,11.99,11/05/19 14:31,"587 2nd St, Los Angeles, CA 90001" -288135,27in FHD Monitor,1,149.99,11/19/19 10:53,"719 10th St, Atlanta, GA 30301" -288136,USB-C Charging Cable,1,11.95,11/11/19 15:55,"139 Washington St, Los Angeles, CA 90001" -288137,27in 4K Gaming Monitor,1,389.99,11/09/19 20:29,"884 Maple St, Boston, MA 02215" -288138,AA Batteries (4-pack),3,3.84,11/06/19 21:57,"478 Walnut St, Portland, OR 97035" -288139,Google Phone,1,600,11/20/19 16:40,"515 Wilson St, Los Angeles, CA 90001" -288140,Wired Headphones,1,11.99,11/29/19 00:09,"330 North St, Los Angeles, CA 90001" -288141,iPhone,1,700,11/04/19 15:33,"182 Adams St, Los Angeles, CA 90001" -288142,Google Phone,1,600,11/22/19 23:10,"423 Highland St, Seattle, WA 98101" -288142,Wired Headphones,1,11.99,11/22/19 23:10,"423 Highland St, Seattle, WA 98101" -288143,Lightning Charging Cable,1,14.95,11/22/19 18:57,"84 Park St, Los Angeles, CA 90001" -288144,USB-C Charging Cable,1,11.95,11/05/19 14:32,"750 1st St, Dallas, TX 75001" -288145,iPhone,1,700,11/07/19 16:57,"680 Lakeview St, Atlanta, GA 30301" -288146,27in 4K Gaming Monitor,1,389.99,11/07/19 10:03,"163 Church St, Austin, TX 73301" -288147,34in Ultrawide Monitor,1,379.99,11/20/19 21:56,"547 Madison St, San Francisco, CA 94016" -288148,AAA Batteries (4-pack),2,2.99,11/12/19 21:37,"908 2nd St, Los Angeles, CA 90001" -288148,USB-C Charging Cable,1,11.95,11/12/19 21:37,"908 2nd St, Los Angeles, CA 90001" -288149,Lightning Charging Cable,1,14.95,11/19/19 15:16,"122 Cherry St, Los Angeles, CA 90001" -288150,Wired Headphones,1,11.99,11/07/19 10:19,"190 9th St, Austin, TX 73301" -288150,34in Ultrawide Monitor,1,379.99,11/07/19 10:19,"190 9th St, Austin, TX 73301" -288151,20in Monitor,1,109.99,11/02/19 20:37,"66 Center St, Portland, OR 97035" -288152,27in FHD Monitor,1,149.99,11/26/19 13:56,"87 8th St, San Francisco, CA 94016" -288153,Wired Headphones,1,11.99,11/10/19 16:13,"990 11th St, San Francisco, CA 94016" -288154,Apple Airpods Headphones,1,150,11/04/19 10:36,"793 West St, Los Angeles, CA 90001" -288155,20in Monitor,1,109.99,11/24/19 23:20,"142 River St, Atlanta, GA 30301" -288156,AA Batteries (4-pack),1,3.84,11/03/19 20:20,"154 Maple St, Los Angeles, CA 90001" -288157,Apple Airpods Headphones,1,150,11/01/19 23:59,"494 Church St, Boston, MA 02215" -288158,USB-C Charging Cable,1,11.95,11/03/19 01:24,"1 Elm St, Atlanta, GA 30301" -288159,AAA Batteries (4-pack),3,2.99,11/29/19 19:57,"557 Walnut St, San Francisco, CA 94016" -288160,Lightning Charging Cable,1,14.95,11/28/19 16:03,"767 Ridge St, New York City, NY 10001" -288161,Lightning Charging Cable,1,14.95,11/15/19 20:28,"347 Wilson St, Portland, OR 97035" -288162,ThinkPad Laptop,1,999.99,11/11/19 13:25,"23 1st St, San Francisco, CA 94016" -288163,Lightning Charging Cable,1,14.95,11/07/19 08:44,"363 West St, San Francisco, CA 94016" -288164,Apple Airpods Headphones,1,150,11/02/19 21:48,"831 Jefferson St, San Francisco, CA 94016" -288165,20in Monitor,1,109.99,11/09/19 12:49,"310 Jefferson St, San Francisco, CA 94016" -288166,ThinkPad Laptop,1,999.99,11/11/19 07:37,"254 Jefferson St, New York City, NY 10001" -288167,iPhone,1,700,11/14/19 23:16,"450 Cherry St, Los Angeles, CA 90001" -288167,Lightning Charging Cable,1,14.95,11/14/19 23:16,"450 Cherry St, Los Angeles, CA 90001" -288168,Wired Headphones,1,11.99,11/24/19 20:15,"738 Forest St, Los Angeles, CA 90001" -288169,Lightning Charging Cable,1,14.95,11/15/19 15:51,"430 Cherry St, Austin, TX 73301" -288170,USB-C Charging Cable,1,11.95,11/28/19 21:29,"860 River St, Dallas, TX 75001" -288171,Wired Headphones,1,11.99,11/12/19 12:38,"312 Dogwood St, Dallas, TX 75001" -288172,27in FHD Monitor,1,149.99,11/29/19 21:15,"947 11th St, San Francisco, CA 94016" -288173,Lightning Charging Cable,1,14.95,11/04/19 23:59,"962 13th St, New York City, NY 10001" -288174,27in 4K Gaming Monitor,1,389.99,11/05/19 14:04,"32 7th St, Atlanta, GA 30301" -288175,iPhone,1,700,11/04/19 09:19,"797 9th St, Los Angeles, CA 90001" -288176,USB-C Charging Cable,4,11.95,11/13/19 08:21,"517 Dogwood St, Atlanta, GA 30301" -288177,27in FHD Monitor,1,149.99,11/18/19 16:46,"153 Lincoln St, San Francisco, CA 94016" -288178,Lightning Charging Cable,1,14.95,11/07/19 21:30,"708 Dogwood St, San Francisco, CA 94016" -288179,AA Batteries (4-pack),1,3.84,11/16/19 10:34,"178 South St, Boston, MA 02215" -288180,Google Phone,1,600,11/24/19 21:34,"112 Cherry St, Portland, OR 97035" -288181,ThinkPad Laptop,1,999.99,11/24/19 23:17,"783 Center St, New York City, NY 10001" -288182,20in Monitor,1,109.99,11/16/19 10:30,"667 West St, Dallas, TX 75001" -288183,Apple Airpods Headphones,1,150,11/20/19 19:32,"108 11th St, San Francisco, CA 94016" -288184,Lightning Charging Cable,1,14.95,11/03/19 11:50,"551 Hickory St, New York City, NY 10001" -288185,iPhone,1,700,11/20/19 12:36,"996 Walnut St, Los Angeles, CA 90001" -288186,27in 4K Gaming Monitor,1,389.99,11/02/19 21:37,"593 Spruce St, San Francisco, CA 94016" -288187,Lightning Charging Cable,1,14.95,11/12/19 02:33,"616 Walnut St, Atlanta, GA 30301" -288188,27in FHD Monitor,1,149.99,11/22/19 11:32,"390 Meadow St, Los Angeles, CA 90001" -288189,AA Batteries (4-pack),2,3.84,11/10/19 15:50,"318 West St, Portland, OR 97035" -288190,Wired Headphones,1,11.99,11/17/19 22:27,"120 Spruce St, Dallas, TX 75001" -288191,USB-C Charging Cable,1,11.95,11/03/19 11:56,"432 14th St, San Francisco, CA 94016" -288192,Bose SoundSport Headphones,1,99.99,11/03/19 14:44,"997 Wilson St, Austin, TX 73301" -288193,USB-C Charging Cable,1,11.95,11/08/19 15:10,"16 Ridge St, Los Angeles, CA 90001" -288194,27in 4K Gaming Monitor,1,389.99,11/01/19 17:58,"732 Sunset St, Boston, MA 02215" -288195,iPhone,1,700,11/19/19 16:52,"824 Adams St, San Francisco, CA 94016" -288196,34in Ultrawide Monitor,1,379.99,11/27/19 14:56,"869 Spruce St, Seattle, WA 98101" -288197,27in FHD Monitor,1,149.99,11/18/19 12:13,"694 Jefferson St, Seattle, WA 98101" -288198,USB-C Charging Cable,1,11.95,11/10/19 18:11,"755 10th St, San Francisco, CA 94016" -288199,USB-C Charging Cable,1,11.95,11/03/19 14:25,"41 9th St, Dallas, TX 75001" -288200,iPhone,1,700,11/21/19 06:40,"673 Jefferson St, Atlanta, GA 30301" -288201,AAA Batteries (4-pack),1,2.99,11/15/19 11:32,"630 Spruce St, Portland, OR 97035" -288202,AAA Batteries (4-pack),1,2.99,11/12/19 21:24,"775 1st St, San Francisco, CA 94016" -288203,Lightning Charging Cable,1,14.95,11/14/19 15:32,"848 Ridge St, Seattle, WA 98101" -288204,Wired Headphones,1,11.99,11/15/19 13:17,"541 Park St, Seattle, WA 98101" -288205,27in 4K Gaming Monitor,1,389.99,11/16/19 03:07,"722 Main St, Seattle, WA 98101" -288206,Bose SoundSport Headphones,2,99.99,11/05/19 11:28,"422 South St, Los Angeles, CA 90001" -288207,AAA Batteries (4-pack),1,2.99,11/17/19 10:53,"163 1st St, Boston, MA 02215" -288208,Lightning Charging Cable,1,14.95,11/09/19 14:34,"915 Center St, Dallas, TX 75001" -288209,USB-C Charging Cable,1,11.95,11/19/19 15:16,"77 1st St, San Francisco, CA 94016" -288210,AAA Batteries (4-pack),1,2.99,11/16/19 11:36,"410 Walnut St, Portland, OR 97035" -288211,27in 4K Gaming Monitor,1,389.99,11/09/19 23:48,"216 South St, Boston, MA 02215" -288212,AA Batteries (4-pack),1,3.84,11/18/19 15:08,"120 2nd St, Dallas, TX 75001" -288213,27in FHD Monitor,1,149.99,11/11/19 11:17,"165 Chestnut St, San Francisco, CA 94016" -288214,AA Batteries (4-pack),1,3.84,11/15/19 19:32,"361 Highland St, Austin, TX 73301" -288215,Wired Headphones,1,11.99,11/03/19 15:46,"651 1st St, San Francisco, CA 94016" -288216,34in Ultrawide Monitor,1,379.99,11/06/19 17:51,"952 Lincoln St, San Francisco, CA 94016" -288217,Lightning Charging Cable,1,14.95,11/15/19 23:13,"507 Elm St, Seattle, WA 98101" -288218,Bose SoundSport Headphones,1,99.99,11/21/19 11:45,"19 Ridge St, Dallas, TX 75001" -288219,USB-C Charging Cable,1,11.95,11/26/19 23:59,"616 Willow St, New York City, NY 10001" -288220,AA Batteries (4-pack),1,3.84,11/20/19 17:05,"527 Park St, Seattle, WA 98101" -288221,USB-C Charging Cable,1,11.95,11/05/19 16:20,"881 Ridge St, San Francisco, CA 94016" -288222,27in 4K Gaming Monitor,1,389.99,11/08/19 16:09,"249 2nd St, Los Angeles, CA 90001" -288223,Lightning Charging Cable,1,14.95,11/21/19 09:19,"379 9th St, New York City, NY 10001" -288224,AAA Batteries (4-pack),2,2.99,11/02/19 22:50,"941 Cherry St, Los Angeles, CA 90001" -288225,Wired Headphones,1,11.99,11/20/19 17:20,"616 Walnut St, Boston, MA 02215" -288226,27in FHD Monitor,1,149.99,11/13/19 14:17,"262 Lakeview St, San Francisco, CA 94016" -288227,27in 4K Gaming Monitor,1,389.99,11/24/19 12:25,"688 Sunset St, San Francisco, CA 94016" -288228,Apple Airpods Headphones,1,150,11/05/19 20:34,"126 Jefferson St, Dallas, TX 75001" -288229,Apple Airpods Headphones,1,150,11/28/19 12:58,"926 Forest St, San Francisco, CA 94016" -288230,Wired Headphones,1,11.99,11/08/19 20:09,"875 Jefferson St, San Francisco, CA 94016" -288231,Vareebadd Phone,1,400,11/17/19 17:21,"249 10th St, San Francisco, CA 94016" -288232,AAA Batteries (4-pack),1,2.99,11/01/19 12:54,"202 Spruce St, San Francisco, CA 94016" -288233,USB-C Charging Cable,1,11.95,11/27/19 18:27,"846 Sunset St, Seattle, WA 98101" -288234,AAA Batteries (4-pack),1,2.99,11/25/19 20:13,"864 Lincoln St, Los Angeles, CA 90001" -288235,34in Ultrawide Monitor,1,379.99,11/08/19 12:04,"631 Wilson St, San Francisco, CA 94016" -288235,AA Batteries (4-pack),1,3.84,11/08/19 12:04,"631 Wilson St, San Francisco, CA 94016" -288236,AA Batteries (4-pack),1,3.84,11/23/19 07:55,"716 Lake St, San Francisco, CA 94016" -288237,AA Batteries (4-pack),1,3.84,11/06/19 20:42,"925 Elm St, Dallas, TX 75001" -288238,20in Monitor,1,109.99,11/02/19 06:54,"256 7th St, Seattle, WA 98101" -288239,Lightning Charging Cable,1,14.95,11/30/19 11:55,"367 Chestnut St, Atlanta, GA 30301" -288240,AA Batteries (4-pack),1,3.84,11/08/19 12:55,"861 14th St, Boston, MA 02215" -288241,Flatscreen TV,1,300,11/01/19 14:43,"901 9th St, San Francisco, CA 94016" -288242,Wired Headphones,1,11.99,11/11/19 21:34,"111 Park St, San Francisco, CA 94016" -288243,Wired Headphones,1,11.99,11/30/19 20:37,"259 Lake St, Boston, MA 02215" -288244,Wired Headphones,1,11.99,11/05/19 22:13,"80 13th St, Los Angeles, CA 90001" -288245,27in 4K Gaming Monitor,1,389.99,11/07/19 07:20,"780 Forest St, Dallas, TX 75001" -288246,Bose SoundSport Headphones,1,99.99,11/08/19 11:15,"541 Park St, Dallas, TX 75001" -288247,27in FHD Monitor,1,149.99,11/05/19 13:36,"316 West St, Austin, TX 73301" -288248,ThinkPad Laptop,1,999.99,11/12/19 15:25,"23 Pine St, San Francisco, CA 94016" -288249,Lightning Charging Cable,1,14.95,11/29/19 23:10,"483 Lincoln St, Boston, MA 02215" -288250,AAA Batteries (4-pack),1,2.99,11/24/19 10:33,"944 Chestnut St, Boston, MA 02215" -288251,20in Monitor,1,109.99,11/10/19 06:09,"800 Madison St, San Francisco, CA 94016" -288252,Google Phone,1,600,11/25/19 06:53,"922 Highland St, Atlanta, GA 30301" -288252,USB-C Charging Cable,1,11.95,11/25/19 06:53,"922 Highland St, Atlanta, GA 30301" -288253,AAA Batteries (4-pack),2,2.99,11/04/19 09:36,"153 Highland St, Seattle, WA 98101" -288254,AAA Batteries (4-pack),1,2.99,11/22/19 09:37,"169 Meadow St, San Francisco, CA 94016" -288255,Lightning Charging Cable,1,14.95,11/15/19 17:11,"527 8th St, Los Angeles, CA 90001" -288256,AA Batteries (4-pack),1,3.84,11/28/19 20:52,"715 Pine St, Atlanta, GA 30301" -288257,Wired Headphones,1,11.99,11/14/19 08:01,"248 Main St, San Francisco, CA 94016" -288258,Wired Headphones,2,11.99,11/23/19 07:30,"964 Hickory St, San Francisco, CA 94016" -288259,Lightning Charging Cable,1,14.95,11/05/19 23:47,"61 Cherry St, San Francisco, CA 94016" -288260,USB-C Charging Cable,1,11.95,11/29/19 14:03,"56 Hill St, Dallas, TX 75001" -288261,USB-C Charging Cable,1,11.95,11/17/19 17:02,"640 2nd St, San Francisco, CA 94016" -288262,AA Batteries (4-pack),2,3.84,11/15/19 20:02,"669 Church St, Austin, TX 73301" -288263,ThinkPad Laptop,1,999.99,11/25/19 20:19,"631 Willow St, New York City, NY 10001" -288264,USB-C Charging Cable,1,11.95,11/27/19 22:14,"485 River St, Los Angeles, CA 90001" -288265,27in 4K Gaming Monitor,1,389.99,11/01/19 13:46,"919 Maple St, Portland, ME 04101" -288266,Apple Airpods Headphones,1,150,11/29/19 12:55,"385 River St, San Francisco, CA 94016" -288267,USB-C Charging Cable,1,11.95,11/01/19 18:30,"706 Jackson St, Los Angeles, CA 90001" -288267,AAA Batteries (4-pack),1,2.99,11/01/19 18:30,"706 Jackson St, Los Angeles, CA 90001" -288268,27in 4K Gaming Monitor,1,389.99,11/08/19 21:05,"389 Hickory St, San Francisco, CA 94016" -288269,AA Batteries (4-pack),1,3.84,11/06/19 14:08,"483 14th St, Boston, MA 02215" -288270,27in 4K Gaming Monitor,1,389.99,11/14/19 13:08,"673 Willow St, San Francisco, CA 94016" -288271,USB-C Charging Cable,1,11.95,11/06/19 11:46,"29 Sunset St, San Francisco, CA 94016" -288272,USB-C Charging Cable,1,11.95,11/23/19 16:45,"507 Forest St, Seattle, WA 98101" -288273,iPhone,1,700,11/01/19 20:26,"571 Cedar St, Dallas, TX 75001" -288273,Wired Headphones,1,11.99,11/01/19 20:26,"571 Cedar St, Dallas, TX 75001" -288274,34in Ultrawide Monitor,1,379.99,11/02/19 14:52,"309 Hickory St, New York City, NY 10001" -288275,20in Monitor,1,109.99,11/10/19 18:30,"192 Forest St, New York City, NY 10001" -288276,ThinkPad Laptop,1,999.99,11/10/19 15:37,"79 12th St, Seattle, WA 98101" -288277,iPhone,1,700,11/22/19 21:49,"807 Park St, Dallas, TX 75001" -288278,AA Batteries (4-pack),1,3.84,11/01/19 22:58,"343 Sunset St, Boston, MA 02215" -288279,AAA Batteries (4-pack),2,2.99,11/13/19 14:27,"544 Washington St, New York City, NY 10001" -288280,AA Batteries (4-pack),1,3.84,11/08/19 17:14,"442 7th St, Dallas, TX 75001" -288281,iPhone,1,700,11/23/19 01:25,"928 Elm St, Portland, OR 97035" -288282,Wired Headphones,1,11.99,11/06/19 12:35,"581 Ridge St, San Francisco, CA 94016" -288283,Apple Airpods Headphones,1,150,11/01/19 10:50,"715 Ridge St, San Francisco, CA 94016" -288284,Google Phone,1,600,11/12/19 15:36,"222 Ridge St, San Francisco, CA 94016" -288285,AAA Batteries (4-pack),1,2.99,11/04/19 13:47,"808 Sunset St, New York City, NY 10001" -288286,AAA Batteries (4-pack),2,2.99,11/17/19 20:51,"467 Sunset St, Seattle, WA 98101" -288287,Macbook Pro Laptop,1,1700,11/20/19 23:22,"422 Maple St, Atlanta, GA 30301" -288288,Wired Headphones,1,11.99,11/23/19 21:48,"389 10th St, San Francisco, CA 94016" -288289,AA Batteries (4-pack),2,3.84,11/30/19 01:37,"56 4th St, Los Angeles, CA 90001" -288290,Apple Airpods Headphones,1,150,11/11/19 20:34,"679 2nd St, Boston, MA 02215" -288291,27in FHD Monitor,1,149.99,11/12/19 16:31,"530 Highland St, Boston, MA 02215" -288292,AAA Batteries (4-pack),1,2.99,11/13/19 14:26,"323 1st St, San Francisco, CA 94016" -288293,Wired Headphones,1,11.99,11/18/19 03:17,"886 Pine St, Atlanta, GA 30301" -288294,27in FHD Monitor,1,149.99,11/30/19 09:14,"789 West St, San Francisco, CA 94016" -288295,Apple Airpods Headphones,1,150,11/20/19 19:18,"247 River St, Los Angeles, CA 90001" -288296,AAA Batteries (4-pack),1,2.99,11/06/19 12:26,"539 Washington St, New York City, NY 10001" -288297,27in FHD Monitor,1,149.99,11/02/19 10:17,"49 Elm St, Boston, MA 02215" -288298,AA Batteries (4-pack),1,3.84,11/15/19 16:58,"665 8th St, San Francisco, CA 94016" -288299,LG Washing Machine,1,600.0,11/24/19 15:01,"265 Johnson St, San Francisco, CA 94016" -288300,Apple Airpods Headphones,1,150,11/11/19 10:13,"432 6th St, Portland, OR 97035" -288301,AA Batteries (4-pack),1,3.84,11/08/19 17:41,"261 Dogwood St, Boston, MA 02215" -288302,USB-C Charging Cable,1,11.95,11/02/19 08:36,"675 Jackson St, Seattle, WA 98101" -288303,Bose SoundSport Headphones,1,99.99,11/28/19 10:51,"681 8th St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -288304,Vareebadd Phone,1,400,11/25/19 10:26,"717 Hill St, Atlanta, GA 30301" -288305,AAA Batteries (4-pack),1,2.99,11/09/19 09:21,"655 Hill St, Los Angeles, CA 90001" -288306,AAA Batteries (4-pack),1,2.99,11/12/19 20:37,"538 Pine St, Boston, MA 02215" -288307,Bose SoundSport Headphones,1,99.99,11/28/19 11:28,"217 Walnut St, Los Angeles, CA 90001" -288308,iPhone,1,700,11/16/19 21:22,"291 Walnut St, Atlanta, GA 30301" -288309,Bose SoundSport Headphones,1,99.99,11/22/19 13:32,"528 Washington St, San Francisco, CA 94016" -288310,27in FHD Monitor,1,149.99,11/11/19 17:51,"602 Chestnut St, Portland, OR 97035" -288311,Wired Headphones,1,11.99,11/04/19 10:34,"708 Spruce St, San Francisco, CA 94016" -288312,ThinkPad Laptop,1,999.99,11/07/19 10:40,"395 1st St, San Francisco, CA 94016" -288313,AAA Batteries (4-pack),1,2.99,11/03/19 00:12,"182 Walnut St, Dallas, TX 75001" -288314,USB-C Charging Cable,1,11.95,11/03/19 16:56,"881 9th St, Boston, MA 02215" -288315,ThinkPad Laptop,1,999.99,11/25/19 15:02,"793 Jackson St, Austin, TX 73301" -288316,Wired Headphones,1,11.99,11/10/19 22:35,"383 1st St, San Francisco, CA 94016" -288317,Apple Airpods Headphones,1,150,11/30/19 06:38,"182 2nd St, San Francisco, CA 94016" -288318,iPhone,1,700,11/14/19 22:55,"298 1st St, Atlanta, GA 30301" -288319,LG Washing Machine,1,600.0,11/05/19 23:02,"756 Lakeview St, New York City, NY 10001" -288320,AAA Batteries (4-pack),1,2.99,11/23/19 09:24,"765 Lincoln St, Dallas, TX 75001" -288321,AA Batteries (4-pack),1,3.84,11/30/19 09:38,"569 Sunset St, New York City, NY 10001" -288322,27in 4K Gaming Monitor,1,389.99,11/29/19 18:14,"765 West St, Los Angeles, CA 90001" -288323,LG Washing Machine,1,600.0,11/27/19 23:11,"992 Lincoln St, Los Angeles, CA 90001" -288324,USB-C Charging Cable,1,11.95,11/30/19 17:21,"454 Wilson St, Boston, MA 02215" -288325,Apple Airpods Headphones,1,150,11/07/19 18:34,"505 12th St, New York City, NY 10001" -288326,Wired Headphones,1,11.99,11/23/19 21:25,"104 9th St, Los Angeles, CA 90001" -288327,Macbook Pro Laptop,1,1700,11/26/19 17:30,"816 Maple St, Atlanta, GA 30301" -288328,AAA Batteries (4-pack),2,2.99,11/30/19 10:50,"784 Highland St, Los Angeles, CA 90001" -288329,USB-C Charging Cable,1,11.95,11/27/19 21:54,"475 8th St, New York City, NY 10001" -288330,AA Batteries (4-pack),1,3.84,11/29/19 14:56,"327 Ridge St, Portland, OR 97035" -288331,iPhone,1,700,11/19/19 13:42,"448 Highland St, Los Angeles, CA 90001" -288332,AAA Batteries (4-pack),2,2.99,11/27/19 17:35,"889 Forest St, Los Angeles, CA 90001" -288332,AA Batteries (4-pack),2,3.84,11/27/19 17:35,"889 Forest St, Los Angeles, CA 90001" -288333,USB-C Charging Cable,1,11.95,11/30/19 18:56,"519 Main St, San Francisco, CA 94016" -288334,AA Batteries (4-pack),1,3.84,11/27/19 16:44,"84 Johnson St, Dallas, TX 75001" -288335,Lightning Charging Cable,1,14.95,11/14/19 14:57,"563 Dogwood St, San Francisco, CA 94016" -288336,AA Batteries (4-pack),2,3.84,11/08/19 06:56,"210 North St, New York City, NY 10001" -288337,Wired Headphones,1,11.99,11/23/19 11:27,"494 Maple St, Seattle, WA 98101" -288338,AA Batteries (4-pack),1,3.84,11/21/19 10:35,"577 Highland St, Los Angeles, CA 90001" -288339,Bose SoundSport Headphones,1,99.99,11/18/19 11:22,"26 Pine St, Dallas, TX 75001" -288340,iPhone,1,700,11/24/19 05:41,"91 Sunset St, Austin, TX 73301" -288341,Lightning Charging Cable,1,14.95,11/16/19 21:43,"985 Dogwood St, San Francisco, CA 94016" -288342,Vareebadd Phone,1,400,11/10/19 19:08,"631 8th St, San Francisco, CA 94016" -288343,34in Ultrawide Monitor,1,379.99,11/10/19 17:58,"534 1st St, Los Angeles, CA 90001" -288344,27in 4K Gaming Monitor,1,389.99,11/08/19 14:09,"364 Main St, New York City, NY 10001" -288345,USB-C Charging Cable,1,11.95,11/01/19 14:48,"513 10th St, Seattle, WA 98101" -288346,Wired Headphones,1,11.99,11/20/19 00:55,"339 Hill St, San Francisco, CA 94016" -288347,Apple Airpods Headphones,1,150,11/21/19 11:02,"191 Ridge St, Los Angeles, CA 90001" -288348,AA Batteries (4-pack),1,3.84,11/27/19 00:16,"527 Washington St, Atlanta, GA 30301" -288349,Google Phone,1,600,11/19/19 10:57,"874 Cherry St, New York City, NY 10001" -288350,AA Batteries (4-pack),1,3.84,11/16/19 15:41,"43 5th St, Dallas, TX 75001" -288351,USB-C Charging Cable,1,11.95,11/07/19 09:46,"125 Washington St, Dallas, TX 75001" -288352,AA Batteries (4-pack),1,3.84,11/25/19 19:38,"458 River St, Atlanta, GA 30301" -288353,Apple Airpods Headphones,1,150,11/14/19 16:51,"890 11th St, San Francisco, CA 94016" -288354,AA Batteries (4-pack),1,3.84,11/19/19 14:36,"526 Lake St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -288355,AA Batteries (4-pack),1,3.84,11/28/19 09:38,"958 Center St, New York City, NY 10001" -288356,iPhone,1,700,11/07/19 20:46,"957 11th St, San Francisco, CA 94016" -288357,USB-C Charging Cable,1,11.95,11/30/19 12:45,"809 Meadow St, Boston, MA 02215" -288358,AA Batteries (4-pack),1,3.84,11/29/19 10:31,"765 Adams St, Portland, OR 97035" -288359,AA Batteries (4-pack),1,3.84,11/09/19 13:33,"460 Lakeview St, New York City, NY 10001" -288360,34in Ultrawide Monitor,1,379.99,11/04/19 17:09,"773 Lakeview St, Los Angeles, CA 90001" -288361,iPhone,1,700,11/18/19 11:07,"244 Highland St, San Francisco, CA 94016" -288362,AA Batteries (4-pack),1,3.84,11/19/19 19:56,"178 Cedar St, Los Angeles, CA 90001" -288363,Wired Headphones,1,11.99,11/01/19 09:36,"894 9th St, Dallas, TX 75001" -288364,AA Batteries (4-pack),1,3.84,11/03/19 07:33,"646 Madison St, Atlanta, GA 30301" -288365,Google Phone,1,600,11/19/19 12:20,"406 Forest St, Boston, MA 02215" -288366,Bose SoundSport Headphones,1,99.99,11/03/19 19:51,"967 West St, San Francisco, CA 94016" -288367,ThinkPad Laptop,1,999.99,11/23/19 22:11,"636 River St, Los Angeles, CA 90001" -288368,AAA Batteries (4-pack),1,2.99,11/25/19 09:12,"391 5th St, New York City, NY 10001" -288369,AAA Batteries (4-pack),3,2.99,11/14/19 22:51,"767 11th St, San Francisco, CA 94016" -288370,Macbook Pro Laptop,1,1700,11/01/19 10:02,"726 Lakeview St, San Francisco, CA 94016" -288371,AAA Batteries (4-pack),2,2.99,11/09/19 17:43,"625 8th St, San Francisco, CA 94016" -288372,Bose SoundSport Headphones,1,99.99,11/02/19 17:28,"783 8th St, New York City, NY 10001" -288373,iPhone,1,700,11/23/19 23:21,"808 11th St, Austin, TX 73301" -288374,AAA Batteries (4-pack),1,2.99,11/29/19 10:42,"893 5th St, San Francisco, CA 94016" -288375,Google Phone,1,600,11/09/19 17:10,"644 Wilson St, San Francisco, CA 94016" -288376,Bose SoundSport Headphones,1,99.99,11/16/19 23:32,"208 Pine St, Boston, MA 02215" -288377,AAA Batteries (4-pack),1,2.99,11/16/19 08:41,"440 Willow St, Los Angeles, CA 90001" -288378,Bose SoundSport Headphones,1,99.99,11/12/19 15:24,"991 12th St, Portland, ME 04101" -288379,USB-C Charging Cable,2,11.95,11/24/19 14:58,"227 Park St, Boston, MA 02215" -288380,USB-C Charging Cable,1,11.95,11/13/19 12:11,"264 10th St, Boston, MA 02215" -288381,USB-C Charging Cable,1,11.95,11/05/19 09:35,"279 Maple St, Portland, OR 97035" -288382,Macbook Pro Laptop,1,1700,11/09/19 11:55,"5 Highland St, Seattle, WA 98101" -288383,Lightning Charging Cable,1,14.95,11/05/19 18:00,"29 9th St, Los Angeles, CA 90001" -288384,27in FHD Monitor,1,149.99,11/24/19 21:23,"290 Meadow St, Atlanta, GA 30301" -288385,AA Batteries (4-pack),1,3.84,11/16/19 11:45,"909 Madison St, San Francisco, CA 94016" -288386,AAA Batteries (4-pack),3,2.99,11/29/19 10:34,"869 West St, New York City, NY 10001" -288387,Apple Airpods Headphones,1,150,11/23/19 17:46,"524 Jefferson St, Los Angeles, CA 90001" -288388,Lightning Charging Cable,1,14.95,11/04/19 15:43,"836 Elm St, San Francisco, CA 94016" -288389,AAA Batteries (4-pack),3,2.99,11/30/19 09:34,"241 Pine St, Portland, OR 97035" -288390,Wired Headphones,1,11.99,11/29/19 20:23,"248 Hill St, Boston, MA 02215" -288391,Lightning Charging Cable,1,14.95,11/28/19 17:35,"664 Spruce St, Portland, OR 97035" -288392,USB-C Charging Cable,2,11.95,11/09/19 11:03,"626 West St, San Francisco, CA 94016" -288393,Wired Headphones,1,11.99,11/14/19 22:12,"643 Lake St, Dallas, TX 75001" -288394,Apple Airpods Headphones,1,150,11/29/19 14:41,"264 Pine St, Atlanta, GA 30301" -288395,Bose SoundSport Headphones,1,99.99,11/05/19 16:28,"477 Hickory St, Atlanta, GA 30301" -288396,LG Dryer,1,600.0,11/25/19 16:07,"466 South St, Seattle, WA 98101" -288397,iPhone,1,700,11/17/19 12:00,"820 Forest St, Los Angeles, CA 90001" -288398,Apple Airpods Headphones,1,150,11/01/19 23:30,"491 Chestnut St, Seattle, WA 98101" -288399,Lightning Charging Cable,1,14.95,11/28/19 16:47,"854 South St, Los Angeles, CA 90001" -288400,Lightning Charging Cable,1,14.95,11/21/19 15:09,"723 Lakeview St, Portland, ME 04101" -288401,ThinkPad Laptop,1,999.99,11/10/19 20:05,"265 10th St, New York City, NY 10001" -288402,20in Monitor,1,109.99,11/06/19 09:54,"494 Center St, San Francisco, CA 94016" -288403,AA Batteries (4-pack),3,3.84,11/18/19 09:55,"445 West St, San Francisco, CA 94016" -288404,27in 4K Gaming Monitor,1,389.99,11/28/19 20:58,"906 Hill St, Seattle, WA 98101" -288405,Lightning Charging Cable,2,14.95,11/19/19 16:30,"461 Jackson St, Los Angeles, CA 90001" -288406,Lightning Charging Cable,1,14.95,11/22/19 15:36,"821 Spruce St, Seattle, WA 98101" -288407,34in Ultrawide Monitor,1,379.99,11/09/19 10:22,"4 Madison St, Boston, MA 02215" -288408,AA Batteries (4-pack),1,3.84,11/25/19 21:34,"763 5th St, New York City, NY 10001" -288409,27in FHD Monitor,1,149.99,11/11/19 23:55,"569 Adams St, Los Angeles, CA 90001" -288410,iPhone,1,700,11/01/19 20:45,"326 South St, Seattle, WA 98101" -288411,27in 4K Gaming Monitor,1,389.99,11/24/19 21:41,"610 4th St, Los Angeles, CA 90001" -288412,AAA Batteries (4-pack),1,2.99,11/26/19 23:47,"414 River St, New York City, NY 10001" -288413,27in 4K Gaming Monitor,1,389.99,11/08/19 05:45,"508 Jackson St, Los Angeles, CA 90001" -288414,Wired Headphones,1,11.99,11/06/19 00:32,"960 8th St, Atlanta, GA 30301" -288415,USB-C Charging Cable,1,11.95,11/21/19 20:10,"138 Maple St, Boston, MA 02215" -288416,27in 4K Gaming Monitor,1,389.99,11/06/19 17:51,"353 Washington St, Atlanta, GA 30301" -288417,34in Ultrawide Monitor,1,379.99,11/18/19 23:10,"753 West St, San Francisco, CA 94016" -288418,ThinkPad Laptop,1,999.99,11/08/19 00:13,"869 Park St, San Francisco, CA 94016" -288419,Flatscreen TV,1,300,11/14/19 00:08,"397 North St, Seattle, WA 98101" -288420,Lightning Charging Cable,1,14.95,11/10/19 21:09,"800 Chestnut St, Portland, OR 97035" -288421,Wired Headphones,1,11.99,11/15/19 19:07,"62 13th St, New York City, NY 10001" -288422,Wired Headphones,1,11.99,11/13/19 10:19,"80 Lakeview St, Los Angeles, CA 90001" -288423,ThinkPad Laptop,1,999.99,11/14/19 08:48,"787 Dogwood St, Boston, MA 02215" -288424,Apple Airpods Headphones,1,150,11/09/19 19:25,"794 9th St, Boston, MA 02215" -288425,Lightning Charging Cable,1,14.95,11/30/19 13:42,"762 Spruce St, San Francisco, CA 94016" -288426,AA Batteries (4-pack),1,3.84,11/14/19 21:05,"537 Elm St, Portland, OR 97035" -288427,Flatscreen TV,1,300,11/15/19 12:22,"484 13th St, New York City, NY 10001" -288428,AAA Batteries (4-pack),2,2.99,11/02/19 08:19,"419 10th St, San Francisco, CA 94016" -288429,Flatscreen TV,1,300,11/08/19 12:37,"228 1st St, San Francisco, CA 94016" -288430,USB-C Charging Cable,2,11.95,11/06/19 23:42,"660 8th St, San Francisco, CA 94016" -288431,Wired Headphones,1,11.99,11/12/19 20:49,"446 South St, Los Angeles, CA 90001" -288432,AAA Batteries (4-pack),2,2.99,11/28/19 23:46,"2 Lake St, Dallas, TX 75001" -288433,USB-C Charging Cable,1,11.95,11/12/19 20:26,"752 West St, New York City, NY 10001" -288434,Lightning Charging Cable,1,14.95,11/11/19 21:49,"416 South St, Los Angeles, CA 90001" -288435,Bose SoundSport Headphones,1,99.99,11/08/19 00:34,"594 Maple St, San Francisco, CA 94016" -288436,Google Phone,1,600,11/29/19 12:20,"401 Forest St, San Francisco, CA 94016" -288437,Lightning Charging Cable,1,14.95,11/08/19 19:55,"14 Spruce St, San Francisco, CA 94016" -288438,Wired Headphones,1,11.99,11/26/19 20:43,"303 Walnut St, New York City, NY 10001" -288439,Wired Headphones,1,11.99,11/25/19 23:49,"688 Washington St, San Francisco, CA 94016" -288440,Lightning Charging Cable,1,14.95,11/07/19 13:47,"697 West St, Portland, OR 97035" -288441,Wired Headphones,1,11.99,11/21/19 14:55,"105 Cedar St, Atlanta, GA 30301" -288442,Wired Headphones,3,11.99,11/04/19 11:25,"335 1st St, Los Angeles, CA 90001" -288443,Apple Airpods Headphones,1,150,11/22/19 01:49,"589 4th St, New York City, NY 10001" -288444,Wired Headphones,1,11.99,11/06/19 15:36,"737 Washington St, San Francisco, CA 94016" -288445,AAA Batteries (4-pack),1,2.99,11/04/19 18:30,"867 North St, San Francisco, CA 94016" -288446,AAA Batteries (4-pack),1,2.99,11/22/19 19:36,"353 6th St, New York City, NY 10001" -288447,Lightning Charging Cable,1,14.95,11/22/19 11:59,"27 Lincoln St, Portland, ME 04101" -288448,Vareebadd Phone,1,400,11/04/19 11:37,"141 Chestnut St, San Francisco, CA 94016" -288448,USB-C Charging Cable,1,11.95,11/04/19 11:37,"141 Chestnut St, San Francisco, CA 94016" -288449,AAA Batteries (4-pack),3,2.99,11/16/19 19:12,"357 Hill St, San Francisco, CA 94016" -288450,Apple Airpods Headphones,1,150,11/25/19 10:31,"249 8th St, San Francisco, CA 94016" -288451,AA Batteries (4-pack),2,3.84,11/15/19 19:24,"236 South St, Boston, MA 02215" -288452,AA Batteries (4-pack),1,3.84,11/19/19 13:25,"80 Willow St, Los Angeles, CA 90001" -288453,27in FHD Monitor,1,149.99,11/19/19 19:29,"579 Cedar St, Los Angeles, CA 90001" -288454,Bose SoundSport Headphones,1,99.99,11/30/19 17:39,"916 Dogwood St, San Francisco, CA 94016" -288455,34in Ultrawide Monitor,1,379.99,11/12/19 21:42,"149 6th St, Atlanta, GA 30301" -288456,iPhone,1,700,11/04/19 12:18,"410 8th St, Atlanta, GA 30301" -288456,Wired Headphones,1,11.99,11/04/19 12:18,"410 8th St, Atlanta, GA 30301" -288457,USB-C Charging Cable,1,11.95,11/07/19 16:04,"739 5th St, Boston, MA 02215" -288458,AAA Batteries (4-pack),1,2.99,11/28/19 09:12,"304 9th St, Dallas, TX 75001" -288459,AAA Batteries (4-pack),1,2.99,11/14/19 14:06,"889 2nd St, Austin, TX 73301" -288460,AA Batteries (4-pack),1,3.84,11/20/19 18:46,"833 Chestnut St, Dallas, TX 75001" -288460,USB-C Charging Cable,1,11.95,11/20/19 18:46,"833 Chestnut St, Dallas, TX 75001" -288461,AAA Batteries (4-pack),3,2.99,11/21/19 20:38,"510 Main St, New York City, NY 10001" -288462,Flatscreen TV,1,300,11/22/19 21:10,"220 4th St, San Francisco, CA 94016" -288463,27in 4K Gaming Monitor,1,389.99,11/06/19 09:32,"817 10th St, Boston, MA 02215" -288464,AA Batteries (4-pack),1,3.84,11/29/19 19:04,"869 10th St, Seattle, WA 98101" -288465,AAA Batteries (4-pack),1,2.99,11/09/19 13:17,"933 Elm St, San Francisco, CA 94016" -288466,Bose SoundSport Headphones,1,99.99,11/25/19 19:54,"633 Elm St, Boston, MA 02215" -288467,USB-C Charging Cable,1,11.95,11/29/19 12:46,"719 North St, San Francisco, CA 94016" -288468,AAA Batteries (4-pack),1,2.99,11/08/19 18:58,"364 Lake St, Los Angeles, CA 90001" -288469,AA Batteries (4-pack),1,3.84,11/13/19 16:34,"90 Pine St, New York City, NY 10001" -288469,Apple Airpods Headphones,1,150,11/13/19 16:34,"90 Pine St, New York City, NY 10001" -288470,AA Batteries (4-pack),2,3.84,11/08/19 16:41,"257 Meadow St, San Francisco, CA 94016" -288471,iPhone,1,700,11/03/19 15:46,"222 Hill St, Seattle, WA 98101" -288471,Lightning Charging Cable,1,14.95,11/03/19 15:46,"222 Hill St, Seattle, WA 98101" -288471,Apple Airpods Headphones,1,150,11/03/19 15:46,"222 Hill St, Seattle, WA 98101" -288472,AAA Batteries (4-pack),1,2.99,11/22/19 00:09,"488 Pine St, San Francisco, CA 94016" -288473,Wired Headphones,1,11.99,11/25/19 07:05,"765 Washington St, San Francisco, CA 94016" -288474,27in FHD Monitor,1,149.99,11/08/19 08:54,"325 North St, San Francisco, CA 94016" -288475,USB-C Charging Cable,1,11.95,11/25/19 20:07,"913 2nd St, Dallas, TX 75001" -288476,Google Phone,1,600,11/06/19 19:41,"19 Main St, Los Angeles, CA 90001" -288477,Flatscreen TV,1,300,11/01/19 13:07,"582 2nd St, New York City, NY 10001" -288478,USB-C Charging Cable,1,11.95,11/10/19 12:35,"165 North St, Los Angeles, CA 90001" -288479,LG Washing Machine,1,600.0,11/14/19 16:06,"707 Highland St, San Francisco, CA 94016" -288480,Lightning Charging Cable,1,14.95,11/13/19 10:02,"550 Highland St, Atlanta, GA 30301" -288481,USB-C Charging Cable,1,11.95,11/02/19 11:45,"423 Johnson St, Portland, ME 04101" -288482,Lightning Charging Cable,1,14.95,11/29/19 19:49,"290 Dogwood St, Austin, TX 73301" -288483,20in Monitor,1,109.99,11/01/19 15:01,"913 9th St, Atlanta, GA 30301" -288484,Google Phone,1,600,11/24/19 19:27,"24 Lincoln St, Austin, TX 73301" -288484,USB-C Charging Cable,2,11.95,11/24/19 19:27,"24 Lincoln St, Austin, TX 73301" -288485,AAA Batteries (4-pack),4,2.99,11/05/19 19:12,"401 Wilson St, Portland, OR 97035" -288486,AAA Batteries (4-pack),1,2.99,11/23/19 20:23,"769 Meadow St, New York City, NY 10001" -288487,USB-C Charging Cable,1,11.95,11/30/19 18:25,"749 Ridge St, Dallas, TX 75001" -288487,Bose SoundSport Headphones,1,99.99,11/30/19 18:25,"749 Ridge St, Dallas, TX 75001" -288488,USB-C Charging Cable,4,11.95,11/05/19 21:15,"558 Jackson St, Seattle, WA 98101" -288488,AA Batteries (4-pack),1,3.84,11/05/19 21:15,"558 Jackson St, Seattle, WA 98101" -288489,AA Batteries (4-pack),1,3.84,11/14/19 17:56,"619 8th St, Boston, MA 02215" -288490,iPhone,1,700,11/30/19 14:40,"285 Forest St, Dallas, TX 75001" -288491,Macbook Pro Laptop,1,1700,11/11/19 14:24,"314 Jefferson St, New York City, NY 10001" -288492,Bose SoundSport Headphones,1,99.99,11/19/19 15:47,"691 Lakeview St, Los Angeles, CA 90001" -288493,AAA Batteries (4-pack),1,2.99,11/08/19 16:11,"70 9th St, San Francisco, CA 94016" -288494,Macbook Pro Laptop,1,1700,11/24/19 11:38,"615 Church St, San Francisco, CA 94016" -288495,AA Batteries (4-pack),1,3.84,11/17/19 16:57,"431 Lake St, San Francisco, CA 94016" -288496,Wired Headphones,1,11.99,11/04/19 10:09,"233 West St, San Francisco, CA 94016" -288497,Google Phone,1,600,11/02/19 16:39,"546 North St, San Francisco, CA 94016" -288498,AAA Batteries (4-pack),1,2.99,11/20/19 20:37,"970 Madison St, Seattle, WA 98101" -288499,Macbook Pro Laptop,1,1700,11/02/19 22:48,"458 Maple St, New York City, NY 10001" -288500,USB-C Charging Cable,1,11.95,11/06/19 22:43,"859 South St, Portland, OR 97035" -288501,Wired Headphones,1,11.99,11/19/19 11:11,"979 Hill St, Los Angeles, CA 90001" -288502,USB-C Charging Cable,1,11.95,11/24/19 12:48,"611 Spruce St, Seattle, WA 98101" -288503,AAA Batteries (4-pack),1,2.99,11/08/19 16:56,"439 Ridge St, New York City, NY 10001" -288504,20in Monitor,1,109.99,11/20/19 06:01,"220 Wilson St, Boston, MA 02215" -288505,Wired Headphones,1,11.99,11/17/19 07:35,"442 11th St, Los Angeles, CA 90001" -288506,AAA Batteries (4-pack),1,2.99,11/29/19 12:52,"37 South St, Los Angeles, CA 90001" -288507,AAA Batteries (4-pack),2,2.99,11/15/19 11:58,"29 Maple St, Dallas, TX 75001" -288508,AA Batteries (4-pack),1,3.84,11/23/19 18:04,"469 5th St, Dallas, TX 75001" -288509,Google Phone,1,600,11/26/19 14:36,"799 Hickory St, Los Angeles, CA 90001" -288509,Wired Headphones,1,11.99,11/26/19 14:36,"799 Hickory St, Los Angeles, CA 90001" -288510,Bose SoundSport Headphones,1,99.99,11/28/19 20:52,"880 Elm St, New York City, NY 10001" -288511,AAA Batteries (4-pack),4,2.99,11/16/19 12:42,"390 14th St, Seattle, WA 98101" -288512,Lightning Charging Cable,2,14.95,11/30/19 21:25,"464 Hill St, Boston, MA 02215" -288513,20in Monitor,1,109.99,11/22/19 18:05,"465 Chestnut St, San Francisco, CA 94016" -288514,Apple Airpods Headphones,1,150,11/09/19 19:01,"959 2nd St, Los Angeles, CA 90001" -288515,Wired Headphones,2,11.99,11/29/19 13:12,"135 Cedar St, Seattle, WA 98101" -288516,AAA Batteries (4-pack),1,2.99,11/18/19 09:15,"789 12th St, New York City, NY 10001" -288517,Google Phone,1,600,11/25/19 21:00,"690 Meadow St, San Francisco, CA 94016" -288518,Wired Headphones,1,11.99,11/20/19 14:33,"447 Hill St, Los Angeles, CA 90001" -288519,AAA Batteries (4-pack),1,2.99,11/14/19 09:29,"849 Meadow St, Boston, MA 02215" -288519,27in FHD Monitor,1,149.99,11/14/19 09:29,"849 Meadow St, Boston, MA 02215" -288520,Wired Headphones,1,11.99,11/05/19 19:24,"581 West St, Portland, ME 04101" -288521,Wired Headphones,1,11.99,11/27/19 19:31,"230 Washington St, Los Angeles, CA 90001" -288522,AAA Batteries (4-pack),1,2.99,11/01/19 21:07,"456 River St, Dallas, TX 75001" -288523,iPhone,1,700,11/24/19 14:50,"988 Willow St, Portland, OR 97035" -288524,27in 4K Gaming Monitor,1,389.99,11/29/19 09:44,"540 7th St, San Francisco, CA 94016" -288525,Bose SoundSport Headphones,1,99.99,11/20/19 15:40,"593 Cherry St, New York City, NY 10001" -288526,ThinkPad Laptop,1,999.99,11/10/19 18:19,"888 Maple St, New York City, NY 10001" -288527,Lightning Charging Cable,1,14.95,11/25/19 13:08,"752 South St, New York City, NY 10001" -288528,Bose SoundSport Headphones,1,99.99,11/21/19 10:03,"997 7th St, San Francisco, CA 94016" -288529,AAA Batteries (4-pack),1,2.99,11/26/19 15:58,"258 Meadow St, New York City, NY 10001" -288530,USB-C Charging Cable,1,11.95,11/07/19 16:28,"519 9th St, Portland, OR 97035" -288531,AA Batteries (4-pack),2,3.84,11/23/19 12:15,"707 Church St, New York City, NY 10001" -288532,Wired Headphones,1,11.99,11/24/19 11:53,"912 Cedar St, New York City, NY 10001" -288533,Wired Headphones,1,11.99,11/13/19 15:02,"423 2nd St, Atlanta, GA 30301" -288533,Google Phone,1,600,11/13/19 15:02,"423 2nd St, Atlanta, GA 30301" -288534,Wired Headphones,1,11.99,11/14/19 09:08,"779 Hickory St, Boston, MA 02215" -288535,27in 4K Gaming Monitor,1,389.99,11/23/19 21:35,"205 Lake St, Los Angeles, CA 90001" -288536,Lightning Charging Cable,1,14.95,11/27/19 16:55,"623 9th St, Seattle, WA 98101" -288537,USB-C Charging Cable,1,11.95,11/26/19 13:04,"162 Cherry St, Dallas, TX 75001" -288538,USB-C Charging Cable,1,11.95,11/12/19 09:12,"153 Johnson St, Atlanta, GA 30301" -288539,AAA Batteries (4-pack),3,2.99,11/17/19 11:56,"689 Cherry St, Dallas, TX 75001" -288540,Lightning Charging Cable,1,14.95,11/30/19 19:22,"889 Madison St, Boston, MA 02215" -288541,Vareebadd Phone,1,400,11/05/19 16:33,"815 7th St, Seattle, WA 98101" -288541,AA Batteries (4-pack),2,3.84,11/05/19 16:33,"815 7th St, Seattle, WA 98101" -288542,Wired Headphones,1,11.99,11/21/19 08:42,"162 Church St, Atlanta, GA 30301" -288543,Macbook Pro Laptop,1,1700,11/06/19 18:59,"497 West St, San Francisco, CA 94016" -288544,Google Phone,1,600,11/17/19 20:25,"560 Lakeview St, Los Angeles, CA 90001" -288545,Bose SoundSport Headphones,1,99.99,11/18/19 20:30,"835 River St, New York City, NY 10001" -288546,AA Batteries (4-pack),1,3.84,11/17/19 13:49,"609 6th St, New York City, NY 10001" -288547,Macbook Pro Laptop,1,1700,11/23/19 14:26,"153 Church St, Austin, TX 73301" -288548,Bose SoundSport Headphones,1,99.99,11/21/19 14:23,"375 2nd St, San Francisco, CA 94016" -288549,Wired Headphones,1,11.99,11/30/19 19:42,"973 5th St, San Francisco, CA 94016" -288550,AA Batteries (4-pack),1,3.84,11/17/19 12:35,"943 6th St, Seattle, WA 98101" -288551,AAA Batteries (4-pack),1,2.99,11/10/19 13:07,"97 Madison St, Atlanta, GA 30301" -288551,USB-C Charging Cable,1,11.95,11/10/19 13:07,"97 Madison St, Atlanta, GA 30301" -288552,AAA Batteries (4-pack),1,2.99,11/08/19 16:08,"967 Wilson St, San Francisco, CA 94016" -288553,Wired Headphones,1,11.99,11/12/19 17:16,"885 11th St, Los Angeles, CA 90001" -288554,Apple Airpods Headphones,1,150,11/13/19 22:41,"785 Church St, Atlanta, GA 30301" -288555,27in FHD Monitor,1,149.99,11/13/19 08:44,"985 2nd St, Los Angeles, CA 90001" -288556,34in Ultrawide Monitor,1,379.99,11/01/19 10:35,"568 Madison St, Dallas, TX 75001" -288557,34in Ultrawide Monitor,1,379.99,11/29/19 07:14,"147 Lakeview St, Boston, MA 02215" -288558,Apple Airpods Headphones,1,150,11/11/19 13:19,"550 West St, Seattle, WA 98101" -288559,Apple Airpods Headphones,1,150,11/25/19 14:23,"493 Chestnut St, Seattle, WA 98101" -288560,USB-C Charging Cable,1,11.95,11/29/19 15:02,"409 Pine St, Los Angeles, CA 90001" -288561,Lightning Charging Cable,1,14.95,11/13/19 21:34,"118 12th St, Seattle, WA 98101" -288562,Wired Headphones,1,11.99,11/21/19 07:50,"650 Cedar St, New York City, NY 10001" -288563,27in FHD Monitor,1,149.99,11/19/19 15:57,"845 Center St, Boston, MA 02215" -288564,Apple Airpods Headphones,1,150,11/20/19 23:29,"90 Park St, New York City, NY 10001" -288565,Apple Airpods Headphones,1,150,11/21/19 12:35,"172 Main St, Los Angeles, CA 90001" -288566,27in FHD Monitor,1,149.99,11/21/19 11:21,"541 Walnut St, Los Angeles, CA 90001" -288567,Wired Headphones,1,11.99,11/24/19 12:47,"816 Lake St, San Francisco, CA 94016" -288568,Lightning Charging Cable,1,14.95,11/13/19 00:40,"663 Elm St, Boston, MA 02215" -288569,Lightning Charging Cable,1,14.95,11/11/19 13:52,"30 1st St, San Francisco, CA 94016" -288570,Apple Airpods Headphones,1,150,11/26/19 08:44,"250 Meadow St, San Francisco, CA 94016" -288571,Apple Airpods Headphones,1,150,11/14/19 21:26,"793 Adams St, Atlanta, GA 30301" -288572,AAA Batteries (4-pack),1,2.99,11/03/19 14:38,"510 2nd St, Austin, TX 73301" -288573,AAA Batteries (4-pack),1,2.99,11/12/19 13:10,"915 Cherry St, New York City, NY 10001" -288574,34in Ultrawide Monitor,1,379.99,11/07/19 12:10,"112 Hill St, Boston, MA 02215" -288575,Wired Headphones,1,11.99,11/16/19 22:27,"578 Lakeview St, Portland, ME 04101" -288576,Lightning Charging Cable,1,14.95,11/07/19 18:24,"743 Highland St, Los Angeles, CA 90001" -288577,USB-C Charging Cable,1,11.95,11/30/19 14:59,"368 1st St, Seattle, WA 98101" -288578,Wired Headphones,1,11.99,11/05/19 19:14,"522 Lincoln St, Los Angeles, CA 90001" -288579,Apple Airpods Headphones,1,150,11/14/19 23:37,"128 Walnut St, San Francisco, CA 94016" -288580,AAA Batteries (4-pack),1,2.99,11/17/19 16:19,"634 Forest St, Austin, TX 73301" -288581,AA Batteries (4-pack),1,3.84,11/15/19 14:11,"655 10th St, Dallas, TX 75001" -288582,USB-C Charging Cable,1,11.95,11/22/19 00:12,"871 13th St, New York City, NY 10001" -288583,AAA Batteries (4-pack),2,2.99,11/07/19 14:19,"616 1st St, Los Angeles, CA 90001" -288583,AA Batteries (4-pack),1,3.84,11/07/19 14:19,"616 1st St, Los Angeles, CA 90001" -288584,AAA Batteries (4-pack),1,2.99,11/25/19 18:48,"252 Church St, San Francisco, CA 94016" -288585,34in Ultrawide Monitor,1,379.99,11/29/19 17:40,"381 12th St, Austin, TX 73301" -288586,Apple Airpods Headphones,1,150,11/26/19 00:10,"882 Lake St, New York City, NY 10001" -288587,AA Batteries (4-pack),1,3.84,11/05/19 21:04,"377 Lincoln St, Austin, TX 73301" -288588,Bose SoundSport Headphones,1,99.99,11/10/19 13:28,"73 Adams St, New York City, NY 10001" -288589,AA Batteries (4-pack),1,3.84,11/29/19 11:27,"108 Jackson St, Portland, OR 97035" -288590,AA Batteries (4-pack),1,3.84,11/07/19 20:47,"403 Lincoln St, San Francisco, CA 94016" -288591,USB-C Charging Cable,1,11.95,11/05/19 21:23,"897 8th St, San Francisco, CA 94016" -288592,USB-C Charging Cable,1,11.95,11/05/19 17:59,"846 11th St, New York City, NY 10001" -288593,27in 4K Gaming Monitor,1,389.99,11/18/19 21:37,"567 5th St, Dallas, TX 75001" -288594,AA Batteries (4-pack),1,3.84,11/11/19 09:03,"731 Dogwood St, San Francisco, CA 94016" -288595,Lightning Charging Cable,1,14.95,11/14/19 11:52,"522 Meadow St, New York City, NY 10001" -288596,27in 4K Gaming Monitor,1,389.99,11/03/19 17:57,"121 Park St, San Francisco, CA 94016" -288597,iPhone,1,700,11/27/19 16:37,"915 Elm St, New York City, NY 10001" -288598,AAA Batteries (4-pack),1,2.99,11/09/19 23:52,"171 Pine St, Atlanta, GA 30301" -288599,ThinkPad Laptop,1,999.99,11/22/19 21:22,"408 Church St, Seattle, WA 98101" -288600,AA Batteries (4-pack),3,3.84,11/20/19 08:25,"544 Main St, Austin, TX 73301" -288601,Wired Headphones,1,11.99,11/30/19 19:09,"660 Elm St, Portland, OR 97035" -288602,USB-C Charging Cable,1,11.95,11/01/19 13:35,"829 Washington St, Dallas, TX 75001" -288603,AA Batteries (4-pack),1,3.84,11/01/19 09:55,"199 Walnut St, New York City, NY 10001" -288604,Macbook Pro Laptop,1,1700,11/03/19 14:06,"226 Hill St, Dallas, TX 75001" -288605,AA Batteries (4-pack),1,3.84,11/25/19 12:37,"890 Wilson St, Portland, OR 97035" -288606,Bose SoundSport Headphones,1,99.99,11/23/19 14:50,"326 6th St, San Francisco, CA 94016" -288607,Wired Headphones,2,11.99,11/04/19 14:49,"409 6th St, Seattle, WA 98101" -288608,AAA Batteries (4-pack),2,2.99,11/29/19 09:23,"746 Hickory St, New York City, NY 10001" -288609,27in FHD Monitor,1,149.99,11/14/19 20:45,"767 Chestnut St, Atlanta, GA 30301" -288610,USB-C Charging Cable,1,11.95,11/21/19 03:17,"67 14th St, Los Angeles, CA 90001" -288611,20in Monitor,1,109.99,11/28/19 17:43,"881 Dogwood St, San Francisco, CA 94016" -288611,Bose SoundSport Headphones,1,99.99,11/28/19 17:43,"881 Dogwood St, San Francisco, CA 94016" -288612,Lightning Charging Cable,1,14.95,11/29/19 21:20,"773 Main St, Los Angeles, CA 90001" -288613,Wired Headphones,1,11.99,11/19/19 13:15,"780 Lincoln St, Dallas, TX 75001" -288614,Bose SoundSport Headphones,1,99.99,11/01/19 18:56,"899 Willow St, Austin, TX 73301" -288615,Wired Headphones,1,11.99,11/24/19 15:01,"280 11th St, Portland, OR 97035" -288616,USB-C Charging Cable,1,11.95,11/02/19 11:58,"524 Ridge St, Seattle, WA 98101" -288617,Macbook Pro Laptop,1,1700,11/06/19 07:13,"202 South St, Boston, MA 02215" -288618,Apple Airpods Headphones,1,150,11/09/19 17:58,"858 8th St, Atlanta, GA 30301" -288619,Macbook Pro Laptop,1,1700,11/13/19 15:32,"487 Jackson St, Los Angeles, CA 90001" -288620,USB-C Charging Cable,1,11.95,11/29/19 12:54,"637 Willow St, San Francisco, CA 94016" -288620,USB-C Charging Cable,1,11.95,11/29/19 12:54,"637 Willow St, San Francisco, CA 94016" -288621,Vareebadd Phone,1,400,11/03/19 20:31,"647 10th St, Austin, TX 73301" -288622,Lightning Charging Cable,1,14.95,11/04/19 18:57,"802 10th St, Portland, ME 04101" -288623,AAA Batteries (4-pack),1,2.99,11/28/19 13:17,"976 7th St, New York City, NY 10001" -288624,AAA Batteries (4-pack),2,2.99,11/17/19 10:20,"890 13th St, Seattle, WA 98101" -288625,USB-C Charging Cable,1,11.95,11/18/19 05:58,"940 South St, San Francisco, CA 94016" -288626,Wired Headphones,1,11.99,11/09/19 10:41,"356 13th St, Dallas, TX 75001" -288627,34in Ultrawide Monitor,1,379.99,11/28/19 11:39,"626 Maple St, San Francisco, CA 94016" -288628,Lightning Charging Cable,1,14.95,11/12/19 18:29,"853 Lakeview St, Seattle, WA 98101" -288629,Bose SoundSport Headphones,1,99.99,11/05/19 17:05,"628 Hickory St, Austin, TX 73301" -288630,Lightning Charging Cable,1,14.95,11/28/19 11:12,"287 South St, New York City, NY 10001" -288631,AA Batteries (4-pack),1,3.84,11/17/19 00:15,"281 North St, Atlanta, GA 30301" -288632,Vareebadd Phone,1,400,11/21/19 16:54,"40 Adams St, Los Angeles, CA 90001" -288633,AAA Batteries (4-pack),1,2.99,11/17/19 17:18,"226 Willow St, Atlanta, GA 30301" -288634,USB-C Charging Cable,1,11.95,11/08/19 18:17,"111 2nd St, New York City, NY 10001" -288635,27in 4K Gaming Monitor,1,389.99,11/03/19 11:29,"389 Pine St, Los Angeles, CA 90001" -288636,34in Ultrawide Monitor,1,379.99,11/11/19 21:22,"92 Sunset St, San Francisco, CA 94016" -288637,AAA Batteries (4-pack),1,2.99,11/28/19 18:45,"467 Main St, San Francisco, CA 94016" -288638,Wired Headphones,1,11.99,11/21/19 23:07,"347 9th St, San Francisco, CA 94016" -288639,20in Monitor,1,109.99,11/21/19 13:24,"974 Main St, Dallas, TX 75001" -288640,34in Ultrawide Monitor,1,379.99,11/07/19 05:41,"173 Forest St, Portland, OR 97035" -288641,Lightning Charging Cable,1,14.95,11/13/19 21:32,"968 Jefferson St, Dallas, TX 75001" -288642,Wired Headphones,1,11.99,11/27/19 00:14,"550 Forest St, Dallas, TX 75001" -288643,27in 4K Gaming Monitor,1,389.99,11/27/19 18:30,"307 Main St, San Francisco, CA 94016" -288644,Bose SoundSport Headphones,1,99.99,11/27/19 20:38,"188 Willow St, Portland, OR 97035" -288645,27in 4K Gaming Monitor,1,389.99,11/07/19 12:17,"238 Walnut St, Atlanta, GA 30301" -288646,20in Monitor,1,109.99,11/25/19 17:41,"503 Wilson St, Los Angeles, CA 90001" -288647,34in Ultrawide Monitor,1,379.99,11/27/19 18:14,"795 2nd St, Boston, MA 02215" -288648,AAA Batteries (4-pack),1,2.99,11/19/19 18:28,"3 Ridge St, Los Angeles, CA 90001" -288649,Lightning Charging Cable,1,14.95,11/14/19 14:19,"753 Cherry St, San Francisco, CA 94016" -288650,ThinkPad Laptop,1,999.99,11/08/19 20:22,"370 Adams St, New York City, NY 10001" -288651,AAA Batteries (4-pack),2,2.99,11/30/19 12:21,"212 Madison St, Seattle, WA 98101" -288652,Wired Headphones,1,11.99,11/15/19 14:22,"310 Madison St, San Francisco, CA 94016" -288653,Google Phone,1,600,11/04/19 21:40,"206 4th St, Los Angeles, CA 90001" -288654,20in Monitor,1,109.99,11/28/19 17:17,"290 Madison St, Boston, MA 02215" -288655,AAA Batteries (4-pack),1,2.99,11/17/19 17:55,"552 Cherry St, San Francisco, CA 94016" -288656,Lightning Charging Cable,2,14.95,11/27/19 19:00,"610 River St, New York City, NY 10001" -288657,27in 4K Gaming Monitor,1,389.99,11/14/19 22:25,"410 10th St, San Francisco, CA 94016" -288658,Google Phone,1,600,11/17/19 20:31,"641 Center St, San Francisco, CA 94016" -288659,Lightning Charging Cable,1,14.95,11/18/19 19:11,"865 Cherry St, Los Angeles, CA 90001" -288660,AA Batteries (4-pack),1,3.84,11/26/19 16:09,"474 Meadow St, Portland, OR 97035" -288661,USB-C Charging Cable,1,11.95,11/21/19 11:28,"951 Dogwood St, Austin, TX 73301" -288662,AA Batteries (4-pack),2,3.84,11/03/19 12:01,"961 14th St, New York City, NY 10001" -288663,AAA Batteries (4-pack),1,2.99,11/10/19 09:36,"179 Maple St, Austin, TX 73301" -288664,27in FHD Monitor,1,149.99,11/04/19 22:27,"937 Johnson St, Austin, TX 73301" -288665,Wired Headphones,1,11.99,11/29/19 01:09,"881 Wilson St, Seattle, WA 98101" -288666,USB-C Charging Cable,1,11.95,11/05/19 20:18,"714 Lakeview St, Seattle, WA 98101" -288667,iPhone,1,700,11/03/19 11:36,"543 Main St, Seattle, WA 98101" -288668,Lightning Charging Cable,1,14.95,11/14/19 10:33,"509 2nd St, San Francisco, CA 94016" -288669,Bose SoundSport Headphones,1,99.99,11/09/19 08:07,"575 South St, New York City, NY 10001" -288670,AA Batteries (4-pack),1,3.84,11/02/19 16:37,"633 1st St, San Francisco, CA 94016" -288671,Lightning Charging Cable,1,14.95,11/05/19 13:38,"998 12th St, Los Angeles, CA 90001" -288672,27in FHD Monitor,1,149.99,11/28/19 04:47,"369 Madison St, New York City, NY 10001" -288673,20in Monitor,1,109.99,11/29/19 15:13,"801 River St, Dallas, TX 75001" -288674,Lightning Charging Cable,1,14.95,11/21/19 18:49,"982 Johnson St, Atlanta, GA 30301" -288675,Wired Headphones,1,11.99,11/28/19 04:47,"996 6th St, Dallas, TX 75001" -288676,Wired Headphones,1,11.99,11/09/19 13:48,"86 Johnson St, San Francisco, CA 94016" -288677,AA Batteries (4-pack),1,3.84,11/09/19 17:20,"540 11th St, San Francisco, CA 94016" -288678,34in Ultrawide Monitor,1,379.99,11/15/19 14:15,"427 6th St, New York City, NY 10001" -288679,27in FHD Monitor,1,149.99,11/20/19 15:33,"529 Elm St, Los Angeles, CA 90001" -288680,Lightning Charging Cable,1,14.95,11/17/19 09:55,"74 Hickory St, New York City, NY 10001" -288681,Bose SoundSport Headphones,1,99.99,11/25/19 20:53,"73 2nd St, New York City, NY 10001" -288682,AAA Batteries (4-pack),2,2.99,11/10/19 18:41,"974 Sunset St, Seattle, WA 98101" -288683,Lightning Charging Cable,1,14.95,11/02/19 06:01,"483 7th St, Atlanta, GA 30301" -288684,USB-C Charging Cable,1,11.95,11/01/19 23:35,"616 Wilson St, Los Angeles, CA 90001" -288685,AAA Batteries (4-pack),2,2.99,11/17/19 20:34,"319 Elm St, Atlanta, GA 30301" -288686,Lightning Charging Cable,1,14.95,11/30/19 14:14,"86 Jackson St, San Francisco, CA 94016" -288687,Google Phone,1,600,11/04/19 23:30,"605 Cedar St, Austin, TX 73301" -288688,iPhone,1,700,11/22/19 13:22,"39 Hickory St, Austin, TX 73301" -288689,AA Batteries (4-pack),1,3.84,11/19/19 21:47,"443 Ridge St, New York City, NY 10001" -288689,AAA Batteries (4-pack),7,2.99,11/19/19 21:47,"443 Ridge St, New York City, NY 10001" -288690,AAA Batteries (4-pack),2,2.99,11/04/19 21:16,"971 Chestnut St, New York City, NY 10001" -288691,Lightning Charging Cable,1,14.95,11/12/19 20:16,"17 Lincoln St, Portland, OR 97035" -288692,AA Batteries (4-pack),2,3.84,11/07/19 12:54,"160 Sunset St, Seattle, WA 98101" -288693,USB-C Charging Cable,1,11.95,11/09/19 13:22,"551 Adams St, Boston, MA 02215" -288694,AA Batteries (4-pack),1,3.84,11/03/19 14:19,"466 Hickory St, Dallas, TX 75001" -288695,Wired Headphones,2,11.99,11/03/19 18:09,"610 4th St, Austin, TX 73301" -288696,27in FHD Monitor,1,149.99,11/05/19 04:37,"900 5th St, San Francisco, CA 94016" -288697,27in 4K Gaming Monitor,1,389.99,11/11/19 07:36,"843 6th St, Seattle, WA 98101" -288698,Lightning Charging Cable,3,14.95,11/24/19 06:59,"147 Washington St, San Francisco, CA 94016" -288699,AA Batteries (4-pack),3,3.84,11/13/19 15:25,"970 Johnson St, Boston, MA 02215" -288700,USB-C Charging Cable,1,11.95,11/20/19 10:55,"60 Walnut St, Dallas, TX 75001" -288701,27in FHD Monitor,1,149.99,11/01/19 20:18,"857 Dogwood St, San Francisco, CA 94016" -288702,Lightning Charging Cable,1,14.95,11/23/19 21:23,"303 Madison St, San Francisco, CA 94016" -288703,Lightning Charging Cable,1,14.95,11/29/19 14:53,"126 Church St, Boston, MA 02215" -288704,Lightning Charging Cable,1,14.95,11/28/19 20:12,"454 Meadow St, Atlanta, GA 30301" -288705,34in Ultrawide Monitor,1,379.99,11/18/19 01:30,"589 11th St, Los Angeles, CA 90001" -288706,Flatscreen TV,1,300,11/02/19 08:53,"61 Hickory St, Seattle, WA 98101" -288707,Apple Airpods Headphones,1,150,11/17/19 19:35,"524 Maple St, Seattle, WA 98101" -288708,Apple Airpods Headphones,1,150,11/20/19 00:05,"468 Pine St, San Francisco, CA 94016" -288709,AAA Batteries (4-pack),2,2.99,11/12/19 16:48,"545 9th St, Los Angeles, CA 90001" -288710,Apple Airpods Headphones,1,150,11/28/19 15:49,"165 Sunset St, Seattle, WA 98101" -288711,AAA Batteries (4-pack),1,2.99,11/02/19 21:27,"332 Adams St, Los Angeles, CA 90001" -288712,27in FHD Monitor,1,149.99,11/17/19 13:04,"785 Forest St, New York City, NY 10001" -288713,iPhone,1,700,11/28/19 12:53,"470 10th St, Austin, TX 73301" -288713,Lightning Charging Cable,1,14.95,11/28/19 12:53,"470 10th St, Austin, TX 73301" -288714,AA Batteries (4-pack),1,3.84,11/20/19 09:31,"227 North St, San Francisco, CA 94016" -288715,Wired Headphones,1,11.99,11/07/19 09:50,"6 Pine St, Seattle, WA 98101" -288716,ThinkPad Laptop,1,999.99,11/05/19 19:16,"806 6th St, San Francisco, CA 94016" -288717,USB-C Charging Cable,1,11.95,11/16/19 20:09,"744 Washington St, Seattle, WA 98101" -288718,AAA Batteries (4-pack),1,2.99,11/02/19 08:39,"943 Jefferson St, Seattle, WA 98101" -288719,27in FHD Monitor,1,149.99,11/15/19 00:27,"50 Chestnut St, San Francisco, CA 94016" -288720,Wired Headphones,1,11.99,11/02/19 13:10,"819 8th St, Austin, TX 73301" -288721,Lightning Charging Cable,1,14.95,11/24/19 23:24,"805 1st St, Dallas, TX 75001" -288722,Lightning Charging Cable,2,14.95,11/04/19 18:22,"849 Forest St, San Francisco, CA 94016" -288723,Wired Headphones,1,11.99,11/18/19 13:11,"964 Chestnut St, Boston, MA 02215" -288724,27in FHD Monitor,1,149.99,11/08/19 10:52,"871 Madison St, Portland, OR 97035" -288725,Wired Headphones,1,11.99,11/09/19 13:04,"359 4th St, New York City, NY 10001" -288726,AAA Batteries (4-pack),1,2.99,11/29/19 13:18,"139 4th St, San Francisco, CA 94016" -288727,Google Phone,1,600,11/21/19 07:59,"806 Cedar St, Boston, MA 02215" -288728,AAA Batteries (4-pack),1,2.99,11/18/19 22:42,"30 Adams St, San Francisco, CA 94016" -288729,Apple Airpods Headphones,1,150,11/16/19 07:12,"65 Cherry St, Portland, OR 97035" -288730,Vareebadd Phone,1,400,11/03/19 14:14,"283 Madison St, New York City, NY 10001" -288731,27in FHD Monitor,1,149.99,11/16/19 11:14,"208 Highland St, New York City, NY 10001" -288732,iPhone,1,700,11/13/19 11:46,"902 Adams St, Boston, MA 02215" -288733,27in 4K Gaming Monitor,1,389.99,11/28/19 12:31,"338 5th St, New York City, NY 10001" -288734,Bose SoundSport Headphones,1,99.99,11/17/19 18:42,"622 Dogwood St, Seattle, WA 98101" -288735,AA Batteries (4-pack),1,3.84,11/18/19 10:20,"182 Washington St, New York City, NY 10001" -288736,27in FHD Monitor,1,149.99,11/28/19 19:20,"484 Jackson St, San Francisco, CA 94016" -288737,AAA Batteries (4-pack),1,2.99,11/01/19 23:22,"594 Cherry St, Boston, MA 02215" -288738,34in Ultrawide Monitor,1,379.99,11/09/19 18:05,"736 11th St, Atlanta, GA 30301" -288739,Lightning Charging Cable,1,14.95,11/27/19 21:26,"612 West St, Dallas, TX 75001" -288740,AA Batteries (4-pack),2,3.84,11/28/19 12:32,"66 Park St, New York City, NY 10001" -288741,Lightning Charging Cable,1,14.95,11/21/19 20:40,"390 South St, Boston, MA 02215" -288742,Wired Headphones,1,11.99,11/02/19 13:25,"919 Willow St, Atlanta, GA 30301" -288743,Apple Airpods Headphones,1,150,11/11/19 17:50,"174 12th St, Dallas, TX 75001" -288744,Wired Headphones,1,11.99,11/27/19 12:04,"727 9th St, Los Angeles, CA 90001" -288745,27in FHD Monitor,1,149.99,11/16/19 23:59,"215 South St, Los Angeles, CA 90001" -288746,AA Batteries (4-pack),1,3.84,11/13/19 13:16,"919 Elm St, Dallas, TX 75001" -288746,Lightning Charging Cable,2,14.95,11/13/19 13:16,"919 Elm St, Dallas, TX 75001" -288747,AA Batteries (4-pack),1,3.84,11/28/19 06:49,"142 Jackson St, Los Angeles, CA 90001" -288748,Macbook Pro Laptop,1,1700,11/25/19 19:19,"814 10th St, Dallas, TX 75001" -288749,Macbook Pro Laptop,1,1700,11/18/19 23:01,"338 Ridge St, Los Angeles, CA 90001" -288750,20in Monitor,1,109.99,11/25/19 14:08,"450 Sunset St, Dallas, TX 75001" -288751,Bose SoundSport Headphones,1,99.99,11/01/19 14:45,"31 2nd St, San Francisco, CA 94016" -288752,AAA Batteries (4-pack),1,2.99,11/12/19 14:45,"971 Jackson St, San Francisco, CA 94016" -288753,USB-C Charging Cable,1,11.95,11/21/19 17:21,"874 Cherry St, Atlanta, GA 30301" -288754,AAA Batteries (4-pack),1,2.99,11/05/19 17:02,"723 4th St, Seattle, WA 98101" -288755,USB-C Charging Cable,1,11.95,11/15/19 11:57,"960 14th St, Portland, OR 97035" -288756,27in 4K Gaming Monitor,1,389.99,11/17/19 10:10,"53 Dogwood St, Atlanta, GA 30301" -288757,AA Batteries (4-pack),1,3.84,11/09/19 11:08,"910 Madison St, Dallas, TX 75001" -288758,Apple Airpods Headphones,1,150,11/27/19 14:12,"883 Lincoln St, New York City, NY 10001" -288759,Bose SoundSport Headphones,1,99.99,11/18/19 20:12,"264 Park St, Portland, OR 97035" -288760,AAA Batteries (4-pack),2,2.99,11/08/19 13:11,"295 Cherry St, San Francisco, CA 94016" -288761,AA Batteries (4-pack),1,3.84,11/23/19 20:21,"771 Maple St, Los Angeles, CA 90001" -288762,Wired Headphones,1,11.99,11/28/19 09:00,"568 Lake St, Seattle, WA 98101" -288763,Bose SoundSport Headphones,1,99.99,11/11/19 14:04,"115 Chestnut St, Boston, MA 02215" -288764,AA Batteries (4-pack),1,3.84,11/10/19 19:39,"757 13th St, Seattle, WA 98101" -288765,Flatscreen TV,1,300,11/11/19 13:16,"346 Sunset St, San Francisco, CA 94016" -288766,Google Phone,1,600,11/01/19 18:57,"180 Sunset St, Los Angeles, CA 90001" -288767,34in Ultrawide Monitor,1,379.99,11/29/19 21:30,"47 Main St, Dallas, TX 75001" -288768,Lightning Charging Cable,1,14.95,11/29/19 21:06,"618 Meadow St, Austin, TX 73301" -288769,USB-C Charging Cable,1,11.95,11/23/19 13:19,"926 Dogwood St, Atlanta, GA 30301" -288770,Wired Headphones,1,11.99,11/25/19 08:47,"549 1st St, Boston, MA 02215" -288771,Macbook Pro Laptop,1,1700,11/04/19 08:11,"454 River St, Los Angeles, CA 90001" -288772,USB-C Charging Cable,1,11.95,11/10/19 00:13,"929 9th St, San Francisco, CA 94016" -288773,Wired Headphones,1,11.99,11/07/19 16:25,"662 Forest St, Los Angeles, CA 90001" -288774,Lightning Charging Cable,1,14.95,11/01/19 15:00,"85 5th St, San Francisco, CA 94016" -288775,Wired Headphones,1,11.99,11/07/19 23:27,"90 Center St, Los Angeles, CA 90001" -288776,Lightning Charging Cable,1,14.95,11/12/19 22:17,"164 River St, San Francisco, CA 94016" -288777,34in Ultrawide Monitor,1,379.99,11/01/19 19:04,"445 Lake St, New York City, NY 10001" -288778,Lightning Charging Cable,1,14.95,11/26/19 09:37,"66 Elm St, Los Angeles, CA 90001" -288779,27in 4K Gaming Monitor,1,389.99,11/04/19 09:32,"405 Jefferson St, San Francisco, CA 94016" -288780,Apple Airpods Headphones,1,150,11/27/19 19:30,"185 Spruce St, San Francisco, CA 94016" -288781,USB-C Charging Cable,1,11.95,11/10/19 09:07,"781 South St, New York City, NY 10001" -288782,Lightning Charging Cable,1,14.95,11/11/19 21:25,"103 12th St, Los Angeles, CA 90001" -288783,27in FHD Monitor,1,149.99,11/17/19 15:51,"321 Washington St, Atlanta, GA 30301" -288784,Lightning Charging Cable,1,14.95,11/01/19 12:49,"990 Forest St, Boston, MA 02215" -288785,ThinkPad Laptop,1,999.99,11/24/19 20:20,"797 Hickory St, San Francisco, CA 94016" -288786,AA Batteries (4-pack),1,3.84,11/24/19 21:56,"81 11th St, San Francisco, CA 94016" -288787,Lightning Charging Cable,1,14.95,11/08/19 16:24,"76 13th St, Dallas, TX 75001" -288788,34in Ultrawide Monitor,1,379.99,11/15/19 17:26,"643 5th St, San Francisco, CA 94016" -288789,AAA Batteries (4-pack),1,2.99,11/13/19 14:14,"721 Madison St, Boston, MA 02215" -288790,USB-C Charging Cable,1,11.95,11/05/19 10:49,"365 Willow St, Dallas, TX 75001" -288791,AAA Batteries (4-pack),3,2.99,11/12/19 18:41,"660 Cherry St, Austin, TX 73301" -288792,20in Monitor,1,109.99,11/27/19 22:49,"349 6th St, Portland, OR 97035" -288793,Lightning Charging Cable,1,14.95,11/03/19 14:08,"370 Spruce St, New York City, NY 10001" -288794,Lightning Charging Cable,1,14.95,11/22/19 18:20,"456 Willow St, Atlanta, GA 30301" -288795,Bose SoundSport Headphones,1,99.99,11/01/19 08:54,"702 Church St, Boston, MA 02215" -288796,Wired Headphones,1,11.99,11/21/19 22:06,"174 Chestnut St, Los Angeles, CA 90001" -288797,Wired Headphones,1,11.99,11/15/19 17:07,"46 Jackson St, Dallas, TX 75001" -288798,Bose SoundSport Headphones,1,99.99,11/19/19 18:19,"151 Johnson St, New York City, NY 10001" -288799,Lightning Charging Cable,1,14.95,11/11/19 17:53,"909 Walnut St, Boston, MA 02215" -288800,ThinkPad Laptop,1,999.99,11/25/19 14:41,"23 12th St, Los Angeles, CA 90001" -288801,Wired Headphones,1,11.99,11/27/19 16:53,"28 Cedar St, New York City, NY 10001" -288802,27in FHD Monitor,1,149.99,11/07/19 19:02,"205 Willow St, San Francisco, CA 94016" -288803,34in Ultrawide Monitor,1,379.99,11/04/19 20:47,"735 Ridge St, Boston, MA 02215" -288804,iPhone,1,700,11/23/19 09:47,"268 1st St, San Francisco, CA 94016" -288805,USB-C Charging Cable,1,11.95,11/26/19 01:10,"480 Jackson St, Dallas, TX 75001" -288806,Bose SoundSport Headphones,1,99.99,11/18/19 16:07,"48 Jackson St, Los Angeles, CA 90001" -288807,USB-C Charging Cable,1,11.95,11/17/19 13:24,"265 Lincoln St, San Francisco, CA 94016" -288808,Apple Airpods Headphones,1,150,11/02/19 10:35,"132 Dogwood St, San Francisco, CA 94016" -288809,Apple Airpods Headphones,1,150,11/08/19 11:50,"837 Maple St, Los Angeles, CA 90001" -288809,Macbook Pro Laptop,1,1700,11/08/19 11:50,"837 Maple St, Los Angeles, CA 90001" -288810,Lightning Charging Cable,1,14.95,11/17/19 19:52,"722 Sunset St, Portland, OR 97035" -288811,USB-C Charging Cable,1,11.95,11/23/19 13:48,"729 Cedar St, Atlanta, GA 30301" -288812,Apple Airpods Headphones,1,150,11/09/19 23:16,"655 Wilson St, San Francisco, CA 94016" -288813,Bose SoundSport Headphones,1,99.99,11/20/19 18:56,"521 West St, Austin, TX 73301" -288814,Apple Airpods Headphones,1,150,11/10/19 13:19,"975 13th St, Atlanta, GA 30301" -288815,Lightning Charging Cable,2,14.95,11/08/19 14:51,"76 4th St, Los Angeles, CA 90001" -288816,Wired Headphones,1,11.99,11/03/19 23:24,"191 Sunset St, Dallas, TX 75001" -288817,USB-C Charging Cable,1,11.95,11/27/19 12:47,"685 Hill St, New York City, NY 10001" -288818,Google Phone,1,600,11/22/19 05:02,"16 Chestnut St, New York City, NY 10001" -288818,Bose SoundSport Headphones,1,99.99,11/22/19 05:02,"16 Chestnut St, New York City, NY 10001" -288819,AA Batteries (4-pack),2,3.84,11/27/19 07:53,"894 Church St, New York City, NY 10001" -288820,AA Batteries (4-pack),1,3.84,11/11/19 16:26,"356 Hickory St, Los Angeles, CA 90001" -288821,Lightning Charging Cable,1,14.95,11/02/19 08:24,"866 11th St, San Francisco, CA 94016" -288822,AA Batteries (4-pack),1,3.84,11/20/19 09:12,"138 Dogwood St, Boston, MA 02215" -288823,Google Phone,1,600,11/28/19 23:34,"31 North St, New York City, NY 10001" -288823,USB-C Charging Cable,2,11.95,11/28/19 23:34,"31 North St, New York City, NY 10001" -288824,27in 4K Gaming Monitor,1,389.99,12/01/19 00:16,"865 Jackson St, Atlanta, GA 30301" -288825,AA Batteries (4-pack),1,3.84,11/28/19 18:25,"317 Hickory St, Atlanta, GA 30301" -288826,AA Batteries (4-pack),1,3.84,11/24/19 00:43,"688 Lakeview St, Austin, TX 73301" -288827,Bose SoundSport Headphones,1,99.99,11/07/19 11:27,"942 Park St, Seattle, WA 98101" -288828,Lightning Charging Cable,2,14.95,11/28/19 12:32,"150 Center St, Los Angeles, CA 90001" -288829,Flatscreen TV,1,300,11/27/19 21:22,"186 7th St, Austin, TX 73301" -288830,USB-C Charging Cable,1,11.95,11/20/19 08:37,"159 Meadow St, Boston, MA 02215" -288831,34in Ultrawide Monitor,1,379.99,11/05/19 14:01,"378 7th St, Boston, MA 02215" -288832,Apple Airpods Headphones,1,150,11/08/19 19:56,"111 12th St, Boston, MA 02215" -288833,AA Batteries (4-pack),1,3.84,11/15/19 05:05,"354 Johnson St, San Francisco, CA 94016" -288834,Bose SoundSport Headphones,1,99.99,11/05/19 21:35,"513 Cherry St, Austin, TX 73301" -288835,AAA Batteries (4-pack),1,2.99,11/24/19 12:24,"144 Center St, Atlanta, GA 30301" -288836,Wired Headphones,1,11.99,11/09/19 18:55,"365 2nd St, San Francisco, CA 94016" -288837,Lightning Charging Cable,1,14.95,11/03/19 21:24,"222 Johnson St, New York City, NY 10001" -288838,Bose SoundSport Headphones,1,99.99,11/28/19 11:59,"632 Jefferson St, Los Angeles, CA 90001" -288839,USB-C Charging Cable,1,11.95,11/04/19 19:48,"484 Wilson St, New York City, NY 10001" -288840,Macbook Pro Laptop,1,1700,11/06/19 11:27,"162 Lincoln St, San Francisco, CA 94016" -288841,AAA Batteries (4-pack),2,2.99,11/08/19 13:26,"106 Cherry St, Los Angeles, CA 90001" -288842,iPhone,1,700,11/06/19 11:53,"655 Pine St, Los Angeles, CA 90001" -288842,Apple Airpods Headphones,1,150,11/06/19 11:53,"655 Pine St, Los Angeles, CA 90001" -288843,34in Ultrawide Monitor,1,379.99,11/08/19 09:30,"737 Lincoln St, New York City, NY 10001" -288844,Macbook Pro Laptop,1,1700,11/11/19 11:08,"981 Hickory St, Boston, MA 02215" -288845,Lightning Charging Cable,1,14.95,11/06/19 10:24,"868 Walnut St, New York City, NY 10001" -288846,AAA Batteries (4-pack),2,2.99,11/02/19 17:23,"590 Chestnut St, Los Angeles, CA 90001" -288847,27in 4K Gaming Monitor,1,389.99,11/23/19 12:08,"5 Willow St, San Francisco, CA 94016" -288848,Macbook Pro Laptop,1,1700,11/16/19 18:27,"869 13th St, Atlanta, GA 30301" -288849,Lightning Charging Cable,2,14.95,11/04/19 19:25,"685 Hill St, Boston, MA 02215" -288849,Vareebadd Phone,1,400,11/04/19 19:25,"685 Hill St, Boston, MA 02215" -288850,Apple Airpods Headphones,1,150,11/19/19 09:46,"619 Park St, New York City, NY 10001" -288851,Lightning Charging Cable,1,14.95,11/02/19 18:32,"601 Maple St, Los Angeles, CA 90001" -288852,Wired Headphones,2,11.99,11/15/19 12:11,"996 13th St, Dallas, TX 75001" -288853,34in Ultrawide Monitor,1,379.99,11/24/19 17:53,"924 Spruce St, Boston, MA 02215" -288854,AAA Batteries (4-pack),2,2.99,11/30/19 10:05,"597 13th St, Dallas, TX 75001" -288855,27in FHD Monitor,1,149.99,11/06/19 03:02,"309 Walnut St, Boston, MA 02215" -288856,27in 4K Gaming Monitor,1,389.99,11/30/19 21:48,"796 Elm St, Austin, TX 73301" -288857,Google Phone,1,600,11/26/19 11:56,"863 Meadow St, Atlanta, GA 30301" -288857,Wired Headphones,1,11.99,11/26/19 11:56,"863 Meadow St, Atlanta, GA 30301" -288858,USB-C Charging Cable,1,11.95,11/17/19 13:13,"409 Walnut St, Atlanta, GA 30301" -288859,AAA Batteries (4-pack),5,2.99,11/26/19 21:28,"796 Center St, San Francisco, CA 94016" -288860,AAA Batteries (4-pack),2,2.99,11/04/19 18:36,"174 Spruce St, Dallas, TX 75001" -288861,iPhone,1,700,11/12/19 10:20,"419 Adams St, Boston, MA 02215" -288862,ThinkPad Laptop,1,999.99,11/27/19 08:58,"9 Ridge St, Boston, MA 02215" -288863,Wired Headphones,1,11.99,11/16/19 01:47,"271 4th St, San Francisco, CA 94016" -288864,USB-C Charging Cable,1,11.95,11/19/19 11:16,"949 10th St, Seattle, WA 98101" -288865,Apple Airpods Headphones,1,150,11/10/19 13:31,"633 Madison St, Seattle, WA 98101" -288866,Apple Airpods Headphones,1,150,11/17/19 21:07,"874 Willow St, New York City, NY 10001" -288867,USB-C Charging Cable,1,11.95,11/26/19 22:59,"696 Dogwood St, Seattle, WA 98101" -288868,Vareebadd Phone,1,400,11/23/19 21:35,"99 Willow St, San Francisco, CA 94016" -288869,20in Monitor,1,109.99,11/24/19 18:05,"724 Hill St, Atlanta, GA 30301" -288870,Apple Airpods Headphones,1,150,11/15/19 17:36,"229 Willow St, Portland, OR 97035" -288870,iPhone,1,700,11/15/19 17:36,"229 Willow St, Portland, OR 97035" -288871,USB-C Charging Cable,1,11.95,11/14/19 12:29,"98 South St, Portland, OR 97035" -288872,Lightning Charging Cable,1,14.95,11/07/19 20:58,"179 Park St, Atlanta, GA 30301" -288873,AAA Batteries (4-pack),1,2.99,11/25/19 19:06,"205 Spruce St, San Francisco, CA 94016" -288874,AAA Batteries (4-pack),1,2.99,11/20/19 15:57,"180 Madison St, Dallas, TX 75001" -288875,USB-C Charging Cable,1,11.95,11/13/19 22:19,"185 Main St, New York City, NY 10001" -288876,Lightning Charging Cable,2,14.95,11/14/19 21:54,"615 11th St, Boston, MA 02215" -288877,AAA Batteries (4-pack),2,2.99,11/17/19 16:16,"345 Walnut St, San Francisco, CA 94016" -288878,USB-C Charging Cable,1,11.95,11/28/19 11:37,"283 West St, New York City, NY 10001" -288879,AA Batteries (4-pack),1,3.84,11/01/19 20:08,"50 Sunset St, Seattle, WA 98101" -288880,AA Batteries (4-pack),1,3.84,11/30/19 14:46,"786 Dogwood St, Los Angeles, CA 90001" -288881,27in FHD Monitor,1,149.99,11/05/19 08:01,"518 Willow St, Austin, TX 73301" -288882,Apple Airpods Headphones,1,150,11/28/19 11:30,"135 Hickory St, New York City, NY 10001" -288883,27in FHD Monitor,1,149.99,11/17/19 20:18,"335 Jefferson St, San Francisco, CA 94016" -288884,Bose SoundSport Headphones,1,99.99,11/10/19 20:26,"713 2nd St, San Francisco, CA 94016" -288884,iPhone,1,700,11/10/19 20:26,"713 2nd St, San Francisco, CA 94016" -288885,Wired Headphones,1,11.99,11/22/19 09:57,"797 Ridge St, Atlanta, GA 30301" -288886,AA Batteries (4-pack),1,3.84,11/25/19 11:14,"948 7th St, New York City, NY 10001" -288887,27in FHD Monitor,1,149.99,11/03/19 12:21,"731 13th St, Boston, MA 02215" -288888,Wired Headphones,1,11.99,11/17/19 14:13,"318 Madison St, Los Angeles, CA 90001" -288889,AAA Batteries (4-pack),1,2.99,11/19/19 12:57,"512 Lakeview St, Boston, MA 02215" -288890,27in FHD Monitor,1,149.99,11/18/19 18:07,"308 Pine St, Portland, ME 04101" -288891,AAA Batteries (4-pack),1,2.99,11/19/19 19:13,"269 Maple St, Seattle, WA 98101" -288892,27in FHD Monitor,1,149.99,11/10/19 07:54,"684 Center St, Los Angeles, CA 90001" -288893,Wired Headphones,1,11.99,11/13/19 11:30,"945 Main St, Los Angeles, CA 90001" -288893,34in Ultrawide Monitor,1,379.99,11/13/19 11:30,"945 Main St, Los Angeles, CA 90001" -288894,Google Phone,1,600,11/17/19 14:53,"447 Wilson St, New York City, NY 10001" -288895,USB-C Charging Cable,1,11.95,11/28/19 19:09,"790 Washington St, New York City, NY 10001" -288896,Lightning Charging Cable,1,14.95,11/29/19 14:05,"414 Park St, New York City, NY 10001" -288897,AA Batteries (4-pack),2,3.84,11/22/19 19:10,"761 Sunset St, Boston, MA 02215" -288898,AA Batteries (4-pack),1,3.84,11/03/19 20:49,"819 Hill St, Boston, MA 02215" -288899,Apple Airpods Headphones,1,150,11/25/19 13:53,"758 South St, San Francisco, CA 94016" -288900,AA Batteries (4-pack),1,3.84,11/28/19 18:46,"172 Elm St, San Francisco, CA 94016" -288901,Google Phone,1,600,11/29/19 06:40,"902 Pine St, San Francisco, CA 94016" -288902,AAA Batteries (4-pack),1,2.99,11/07/19 09:32,"650 13th St, San Francisco, CA 94016" -288903,LG Washing Machine,1,600.0,11/06/19 12:14,"630 13th St, San Francisco, CA 94016" -288904,AAA Batteries (4-pack),2,2.99,11/08/19 09:54,"915 Hill St, Boston, MA 02215" -288905,27in FHD Monitor,1,149.99,11/18/19 16:46,"25 Wilson St, New York City, NY 10001" -288906,Apple Airpods Headphones,1,150,11/28/19 16:54,"879 Elm St, New York City, NY 10001" -288907,Wired Headphones,1,11.99,11/09/19 22:34,"546 Park St, Atlanta, GA 30301" -288908,Apple Airpods Headphones,1,150,11/03/19 15:40,"516 Forest St, Seattle, WA 98101" -288909,34in Ultrawide Monitor,1,379.99,11/04/19 22:13,"335 Jackson St, Atlanta, GA 30301" -288910,27in 4K Gaming Monitor,1,389.99,11/09/19 23:30,"318 Hill St, San Francisco, CA 94016" -288911,AAA Batteries (4-pack),1,2.99,11/23/19 14:37,"876 Meadow St, New York City, NY 10001" -288912,27in 4K Gaming Monitor,1,389.99,11/23/19 23:35,"229 13th St, Atlanta, GA 30301" -288913,27in 4K Gaming Monitor,1,389.99,11/05/19 13:06,"370 12th St, Los Angeles, CA 90001" -288914,Bose SoundSport Headphones,1,99.99,11/28/19 10:28,"249 Willow St, Dallas, TX 75001" -288915,Apple Airpods Headphones,1,150,11/06/19 18:34,"623 Hickory St, New York City, NY 10001" -288916,Apple Airpods Headphones,1,150,11/30/19 15:14,"828 Walnut St, San Francisco, CA 94016" -288917,Lightning Charging Cable,1,14.95,11/17/19 07:07,"520 10th St, Dallas, TX 75001" -288918,USB-C Charging Cable,1,11.95,11/02/19 19:56,"993 Spruce St, Los Angeles, CA 90001" -288919,Lightning Charging Cable,1,14.95,11/11/19 22:26,"903 Cedar St, Boston, MA 02215" -288920,20in Monitor,1,109.99,11/28/19 20:10,"112 Walnut St, Atlanta, GA 30301" -288921,Macbook Pro Laptop,1,1700,11/09/19 15:33,"865 Jackson St, Los Angeles, CA 90001" -288922,AAA Batteries (4-pack),2,2.99,11/01/19 17:35,"489 Walnut St, San Francisco, CA 94016" -288923,AAA Batteries (4-pack),1,2.99,11/10/19 07:53,"210 South St, San Francisco, CA 94016" -288924,ThinkPad Laptop,1,999.99,11/15/19 20:58,"68 Johnson St, Dallas, TX 75001" -288925,USB-C Charging Cable,1,11.95,11/12/19 08:32,"956 Cherry St, Dallas, TX 75001" -288926,AAA Batteries (4-pack),2,2.99,11/10/19 14:48,"450 2nd St, San Francisco, CA 94016" -288927,27in FHD Monitor,1,149.99,11/23/19 18:10,"802 West St, Boston, MA 02215" -288928,Lightning Charging Cable,2,14.95,11/11/19 16:20,"138 Pine St, Austin, TX 73301" -288929,AAA Batteries (4-pack),2,2.99,11/15/19 19:42,"999 6th St, New York City, NY 10001" -288930,AA Batteries (4-pack),1,3.84,11/14/19 21:46,"196 North St, Boston, MA 02215" -288931,Wired Headphones,1,11.99,11/03/19 14:49,"859 Dogwood St, Los Angeles, CA 90001" -288932,AAA Batteries (4-pack),1,2.99,11/16/19 08:59,"475 7th St, San Francisco, CA 94016" -288933,AAA Batteries (4-pack),1,2.99,11/24/19 20:51,"105 7th St, Austin, TX 73301" -288934,20in Monitor,1,109.99,11/15/19 08:44,"814 South St, Dallas, TX 75001" -288935,AA Batteries (4-pack),1,3.84,11/13/19 18:12,"813 6th St, Atlanta, GA 30301" -288936,AA Batteries (4-pack),2,3.84,11/26/19 22:24,"481 14th St, San Francisco, CA 94016" -288937,Lightning Charging Cable,1,14.95,11/19/19 21:55,"770 Forest St, Los Angeles, CA 90001" -288938,Apple Airpods Headphones,1,150,11/23/19 16:47,"281 6th St, New York City, NY 10001" -288939,Wired Headphones,1,11.99,11/15/19 07:57,"823 Lincoln St, San Francisco, CA 94016" -288940,20in Monitor,1,109.99,11/05/19 09:00,"308 Chestnut St, San Francisco, CA 94016" -288941,AAA Batteries (4-pack),3,2.99,11/09/19 19:20,"293 Park St, New York City, NY 10001" -288942,Flatscreen TV,1,300,11/07/19 11:22,"440 Willow St, Los Angeles, CA 90001" -288943,Apple Airpods Headphones,1,150,11/26/19 22:09,"963 Lakeview St, Atlanta, GA 30301" -288944,20in Monitor,1,109.99,11/26/19 21:09,"386 Cedar St, Austin, TX 73301" -288945,USB-C Charging Cable,1,11.95,11/09/19 20:13,"193 Lakeview St, San Francisco, CA 94016" -288946,34in Ultrawide Monitor,1,379.99,11/18/19 21:36,"539 Johnson St, Atlanta, GA 30301" -288947,Wired Headphones,1,11.99,11/02/19 09:06,"256 8th St, Dallas, TX 75001" -288948,Wired Headphones,1,11.99,11/22/19 23:39,"519 5th St, Portland, OR 97035" -288948,Flatscreen TV,1,300,11/22/19 23:39,"519 5th St, Portland, OR 97035" -288949,34in Ultrawide Monitor,1,379.99,11/26/19 15:47,"279 Pine St, Boston, MA 02215" -288950,Lightning Charging Cable,1,14.95,11/19/19 14:27,"237 Lakeview St, New York City, NY 10001" -288951,Bose SoundSport Headphones,1,99.99,11/08/19 22:58,"387 Washington St, New York City, NY 10001" -288952,AA Batteries (4-pack),2,3.84,11/20/19 00:51,"443 7th St, Los Angeles, CA 90001" -288953,Wired Headphones,1,11.99,11/06/19 14:18,"893 Forest St, New York City, NY 10001" -288954,Lightning Charging Cable,3,14.95,11/02/19 13:38,"820 Church St, Boston, MA 02215" -288955,AAA Batteries (4-pack),2,2.99,11/12/19 20:11,"794 Pine St, Portland, OR 97035" -288956,ThinkPad Laptop,1,999.99,11/20/19 20:32,"666 Cherry St, Atlanta, GA 30301" -288957,AA Batteries (4-pack),1,3.84,11/22/19 07:53,"396 5th St, San Francisco, CA 94016" -288958,USB-C Charging Cable,1,11.95,11/21/19 23:08,"589 Center St, Dallas, TX 75001" -288959,USB-C Charging Cable,1,11.95,11/13/19 14:07,"709 Johnson St, New York City, NY 10001" -288960,Wired Headphones,1,11.99,11/24/19 11:06,"295 Ridge St, New York City, NY 10001" -288961,Apple Airpods Headphones,1,150,11/02/19 17:52,"208 Spruce St, New York City, NY 10001" -288962,Lightning Charging Cable,1,14.95,11/11/19 05:55,"845 Cherry St, Seattle, WA 98101" -288963,Bose SoundSport Headphones,1,99.99,11/23/19 10:51,"789 Wilson St, Austin, TX 73301" -288964,Apple Airpods Headphones,1,150,11/08/19 20:00,"569 13th St, San Francisco, CA 94016" -288965,Google Phone,1,600,11/11/19 23:44,"606 11th St, Los Angeles, CA 90001" -288966,27in FHD Monitor,1,149.99,11/25/19 11:58,"490 4th St, San Francisco, CA 94016" -288966,USB-C Charging Cable,1,11.95,11/25/19 11:58,"490 4th St, San Francisco, CA 94016" -288967,Apple Airpods Headphones,1,150,11/13/19 11:16,"226 1st St, San Francisco, CA 94016" -288968,Wired Headphones,1,11.99,11/06/19 23:22,"106 4th St, Los Angeles, CA 90001" -288969,AA Batteries (4-pack),1,3.84,11/29/19 09:13,"143 Hill St, San Francisco, CA 94016" -288970,Vareebadd Phone,1,400,11/04/19 19:16,"860 Main St, Portland, OR 97035" -288970,USB-C Charging Cable,1,11.95,11/04/19 19:16,"860 Main St, Portland, OR 97035" -288971,27in FHD Monitor,1,149.99,11/08/19 18:01,"900 11th St, Boston, MA 02215" -288972,USB-C Charging Cable,1,11.95,11/06/19 08:58,"867 6th St, San Francisco, CA 94016" -288973,Lightning Charging Cable,1,14.95,11/05/19 09:46,"104 6th St, San Francisco, CA 94016" -288974,Google Phone,1,600,11/21/19 11:43,"530 Main St, San Francisco, CA 94016" -288974,USB-C Charging Cable,1,11.95,11/21/19 11:43,"530 Main St, San Francisco, CA 94016" -288974,Wired Headphones,1,11.99,11/21/19 11:43,"530 Main St, San Francisco, CA 94016" -288975,Bose SoundSport Headphones,1,99.99,11/07/19 10:38,"715 2nd St, Portland, ME 04101" -288976,Lightning Charging Cable,1,14.95,11/22/19 14:09,"499 Meadow St, New York City, NY 10001" -288977,ThinkPad Laptop,1,999.99,11/29/19 18:21,"814 10th St, Boston, MA 02215" -288978,20in Monitor,1,109.99,11/11/19 21:12,"546 Forest St, San Francisco, CA 94016" -288979,Google Phone,1,600,11/07/19 10:03,"803 Washington St, Los Angeles, CA 90001" -288980,Bose SoundSport Headphones,1,99.99,11/24/19 17:54,"56 Lincoln St, San Francisco, CA 94016" -288981,Wired Headphones,1,11.99,11/14/19 09:29,"158 Johnson St, Boston, MA 02215" -288982,Flatscreen TV,1,300,11/20/19 13:53,"170 Highland St, Austin, TX 73301" -288983,Apple Airpods Headphones,1,150,11/15/19 13:30,"64 Main St, Los Angeles, CA 90001" -288984,Macbook Pro Laptop,1,1700,11/07/19 13:10,"907 Jefferson St, Boston, MA 02215" -288985,AAA Batteries (4-pack),1,2.99,11/15/19 18:30,"104 Cedar St, San Francisco, CA 94016" -288986,Google Phone,1,600,11/29/19 17:23,"735 9th St, Atlanta, GA 30301" -288987,Bose SoundSport Headphones,1,99.99,11/19/19 23:26,"46 Johnson St, San Francisco, CA 94016" -288988,Flatscreen TV,1,300,11/26/19 19:14,"465 Lakeview St, San Francisco, CA 94016" -288989,Lightning Charging Cable,1,14.95,11/07/19 23:31,"964 Center St, Austin, TX 73301" -288990,Lightning Charging Cable,1,14.95,11/28/19 09:05,"511 Park St, Los Angeles, CA 90001" -288991,Apple Airpods Headphones,1,150,11/17/19 10:56,"514 Johnson St, San Francisco, CA 94016" -288992,Lightning Charging Cable,1,14.95,11/02/19 13:38,"434 North St, Portland, OR 97035" -288993,Bose SoundSport Headphones,1,99.99,11/18/19 12:57,"477 12th St, Los Angeles, CA 90001" -288994,AA Batteries (4-pack),3,3.84,11/22/19 12:09,"642 Jackson St, Boston, MA 02215" -288995,Wired Headphones,1,11.99,11/04/19 23:58,"552 Lincoln St, Portland, OR 97035" -288995,Wired Headphones,1,11.99,11/04/19 23:58,"552 Lincoln St, Portland, OR 97035" -288996,AA Batteries (4-pack),1,3.84,11/04/19 14:23,"342 Madison St, Austin, TX 73301" -288997,27in FHD Monitor,1,149.99,11/23/19 08:40,"900 1st St, San Francisco, CA 94016" -288998,iPhone,1,700,11/23/19 11:52,"426 Jefferson St, Los Angeles, CA 90001" -288999,Lightning Charging Cable,1,14.95,11/16/19 15:12,"677 Cherry St, San Francisco, CA 94016" -289000,Bose SoundSport Headphones,1,99.99,11/15/19 23:08,"445 Lake St, New York City, NY 10001" -289001,34in Ultrawide Monitor,1,379.99,11/06/19 13:57,"568 South St, New York City, NY 10001" -289002,AA Batteries (4-pack),1,3.84,11/19/19 21:20,"342 Hickory St, San Francisco, CA 94016" -289003,Google Phone,1,600,11/22/19 12:17,"160 Pine St, San Francisco, CA 94016" -289004,AA Batteries (4-pack),1,3.84,11/25/19 13:37,"543 11th St, San Francisco, CA 94016" -289005,AAA Batteries (4-pack),2,2.99,11/08/19 22:13,"736 4th St, San Francisco, CA 94016" -289006,Apple Airpods Headphones,1,150,11/18/19 16:07,"665 Chestnut St, Los Angeles, CA 90001" -289007,Lightning Charging Cable,1,14.95,11/03/19 12:37,"239 Johnson St, San Francisco, CA 94016" -289008,AA Batteries (4-pack),1,3.84,11/19/19 11:52,"18 Dogwood St, Boston, MA 02215" -289009,Apple Airpods Headphones,1,150,11/19/19 09:40,"494 River St, New York City, NY 10001" -289010,Vareebadd Phone,1,400,11/14/19 01:16,"657 Forest St, Boston, MA 02215" -289011,USB-C Charging Cable,1,11.95,11/22/19 14:03,"443 9th St, San Francisco, CA 94016" -289012,Wired Headphones,1,11.99,11/09/19 11:22,"302 Adams St, Austin, TX 73301" -289013,Wired Headphones,1,11.99,11/22/19 00:41,"25 14th St, Los Angeles, CA 90001" -289014,AAA Batteries (4-pack),1,2.99,11/07/19 17:34,"588 Meadow St, New York City, NY 10001" -289015,USB-C Charging Cable,1,11.95,11/29/19 09:10,"929 7th St, New York City, NY 10001" -289016,AAA Batteries (4-pack),2,2.99,11/08/19 23:53,"856 Park St, Los Angeles, CA 90001" -289017,Lightning Charging Cable,1,14.95,11/17/19 12:40,"940 River St, New York City, NY 10001" -289017,Apple Airpods Headphones,1,150,11/17/19 12:40,"940 River St, New York City, NY 10001" -289018,USB-C Charging Cable,1,11.95,11/15/19 21:06,"145 River St, Boston, MA 02215" -289019,USB-C Charging Cable,1,11.95,11/23/19 18:14,"600 South St, Los Angeles, CA 90001" -289020,Apple Airpods Headphones,1,150,11/22/19 20:26,"522 Madison St, Portland, OR 97035" -289021,Macbook Pro Laptop,1,1700,11/27/19 11:52,"342 4th St, Seattle, WA 98101" -289022,34in Ultrawide Monitor,1,379.99,11/28/19 08:48,"31 Meadow St, Los Angeles, CA 90001" -289023,Wired Headphones,1,11.99,11/29/19 06:42,"724 Maple St, Seattle, WA 98101" -289024,AAA Batteries (4-pack),1,2.99,11/24/19 10:27,"490 9th St, Boston, MA 02215" -289025,Apple Airpods Headphones,1,150,11/18/19 17:18,"201 Spruce St, Boston, MA 02215" -289026,Wired Headphones,1,11.99,11/18/19 19:22,"551 Lakeview St, Dallas, TX 75001" -289027,Wired Headphones,1,11.99,11/05/19 01:21,"140 Pine St, San Francisco, CA 94016" -289028,LG Washing Machine,1,600.0,11/05/19 13:29,"839 Jefferson St, Seattle, WA 98101" -289029,AAA Batteries (4-pack),1,2.99,11/28/19 21:13,"321 1st St, Seattle, WA 98101" -289030,Google Phone,1,600,11/11/19 17:10,"208 14th St, Atlanta, GA 30301" -289030,Bose SoundSport Headphones,1,99.99,11/11/19 17:10,"208 14th St, Atlanta, GA 30301" -289030,Wired Headphones,1,11.99,11/11/19 17:10,"208 14th St, Atlanta, GA 30301" -289031,Lightning Charging Cable,1,14.95,11/26/19 20:32,"524 8th St, Portland, OR 97035" -289032,USB-C Charging Cable,1,11.95,11/02/19 16:46,"685 Spruce St, San Francisco, CA 94016" -289033,AAA Batteries (4-pack),1,2.99,11/18/19 20:29,"534 8th St, San Francisco, CA 94016" -289034,AAA Batteries (4-pack),1,2.99,11/18/19 17:34,"211 Elm St, San Francisco, CA 94016" -289035,27in 4K Gaming Monitor,1,389.99,11/28/19 17:39,"307 Adams St, Los Angeles, CA 90001" -289036,Lightning Charging Cable,1,14.95,11/26/19 11:57,"129 9th St, Dallas, TX 75001" -289037,LG Dryer,1,600.0,11/17/19 15:25,"65 4th St, New York City, NY 10001" -289038,Wired Headphones,1,11.99,11/25/19 21:21,"254 Spruce St, San Francisco, CA 94016" -289039,Apple Airpods Headphones,1,150,11/14/19 00:19,"556 River St, New York City, NY 10001" -289040,Lightning Charging Cable,1,14.95,11/11/19 10:28,"161 Washington St, Atlanta, GA 30301" -289041,27in 4K Gaming Monitor,1,389.99,11/14/19 22:58,"927 Wilson St, Atlanta, GA 30301" -289042,USB-C Charging Cable,1,11.95,11/10/19 07:02,"823 Adams St, Atlanta, GA 30301" -289043,Lightning Charging Cable,1,14.95,11/22/19 09:26,"293 8th St, New York City, NY 10001" -289044,AA Batteries (4-pack),1,3.84,11/24/19 11:18,"5 River St, Seattle, WA 98101" -289045,Flatscreen TV,1,300,11/27/19 15:01,"387 Highland St, Boston, MA 02215" -289046,Bose SoundSport Headphones,1,99.99,11/27/19 10:52,"926 North St, San Francisco, CA 94016" -289047,Lightning Charging Cable,1,14.95,11/22/19 20:14,"821 9th St, San Francisco, CA 94016" -289048,Apple Airpods Headphones,1,150,11/25/19 18:52,"56 8th St, Portland, OR 97035" -289049,AA Batteries (4-pack),1,3.84,11/24/19 23:50,"627 11th St, Los Angeles, CA 90001" -289049,34in Ultrawide Monitor,1,379.99,11/24/19 23:50,"627 11th St, Los Angeles, CA 90001" -289050,AA Batteries (4-pack),2,3.84,11/21/19 07:42,"411 Washington St, New York City, NY 10001" -289051,Wired Headphones,2,11.99,11/01/19 15:46,"891 Ridge St, Boston, MA 02215" -289052,Macbook Pro Laptop,1,1700,11/01/19 12:05,"721 Hill St, Boston, MA 02215" -289053,ThinkPad Laptop,1,999.99,11/29/19 15:47,"886 West St, San Francisco, CA 94016" -289054,USB-C Charging Cable,1,11.95,11/08/19 15:03,"861 5th St, Dallas, TX 75001" -289055,Vareebadd Phone,1,400,11/29/19 18:34,"435 Adams St, Dallas, TX 75001" -289055,USB-C Charging Cable,1,11.95,11/29/19 18:34,"435 Adams St, Dallas, TX 75001" -289056,AAA Batteries (4-pack),2,2.99,11/06/19 16:26,"519 Cherry St, Atlanta, GA 30301" -289057,USB-C Charging Cable,1,11.95,11/20/19 12:14,"545 14th St, Los Angeles, CA 90001" -289058,Apple Airpods Headphones,1,150,11/22/19 22:44,"218 8th St, San Francisco, CA 94016" -289059,Apple Airpods Headphones,1,150,11/05/19 22:05,"597 Adams St, Dallas, TX 75001" -289060,20in Monitor,1,109.99,11/04/19 10:18,"977 Jefferson St, New York City, NY 10001" -289061,AAA Batteries (4-pack),1,2.99,11/12/19 21:26,"735 Spruce St, Los Angeles, CA 90001" -289062,34in Ultrawide Monitor,1,379.99,11/23/19 09:17,"255 6th St, Seattle, WA 98101" -289063,Apple Airpods Headphones,1,150,11/06/19 17:41,"639 Sunset St, San Francisco, CA 94016" -289064,Lightning Charging Cable,1,14.95,11/13/19 17:45,"407 Highland St, New York City, NY 10001" -289065,Wired Headphones,1,11.99,11/16/19 05:23,"453 West St, Los Angeles, CA 90001" -289066,Bose SoundSport Headphones,1,99.99,11/20/19 14:55,"277 1st St, Dallas, TX 75001" -289067,Apple Airpods Headphones,1,150,11/09/19 11:49,"936 6th St, Seattle, WA 98101" -289068,27in FHD Monitor,1,149.99,11/06/19 07:00,"770 Center St, Seattle, WA 98101" -289069,Lightning Charging Cable,1,14.95,11/15/19 11:36,"640 Hill St, San Francisco, CA 94016" -289070,Bose SoundSport Headphones,1,99.99,11/13/19 09:37,"74 12th St, Los Angeles, CA 90001" -289070,Apple Airpods Headphones,1,150,11/13/19 09:37,"74 12th St, Los Angeles, CA 90001" -289071,Lightning Charging Cable,2,14.95,11/28/19 15:31,"835 Highland St, Portland, OR 97035" -289072,Wired Headphones,1,11.99,11/30/19 01:18,"716 Main St, San Francisco, CA 94016" -289073,AAA Batteries (4-pack),1,2.99,11/24/19 02:19,"403 Cedar St, Seattle, WA 98101" -289074,Flatscreen TV,1,300,11/10/19 15:44,"510 8th St, San Francisco, CA 94016" -289075,AA Batteries (4-pack),3,3.84,11/26/19 18:56,"301 4th St, Dallas, TX 75001" -289076,AA Batteries (4-pack),1,3.84,11/10/19 14:05,"541 River St, Boston, MA 02215" -289077,Wired Headphones,1,11.99,11/13/19 11:34,"743 6th St, New York City, NY 10001" -289078,AAA Batteries (4-pack),3,2.99,11/01/19 22:23,"360 Cedar St, Austin, TX 73301" -289079,USB-C Charging Cable,1,11.95,11/17/19 20:22,"989 10th St, San Francisco, CA 94016" -289080,AAA Batteries (4-pack),1,2.99,11/07/19 11:04,"697 Cedar St, New York City, NY 10001" -289081,27in FHD Monitor,1,149.99,11/07/19 09:57,"525 4th St, Los Angeles, CA 90001" -289082,iPhone,1,700,11/09/19 06:43,"642 13th St, Los Angeles, CA 90001" -289083,Bose SoundSport Headphones,1,99.99,11/24/19 10:54,"832 11th St, Austin, TX 73301" -289084,Apple Airpods Headphones,1,150,11/02/19 21:44,"362 6th St, Los Angeles, CA 90001" -289085,27in 4K Gaming Monitor,1,389.99,11/14/19 08:53,"509 14th St, Los Angeles, CA 90001" -289086,USB-C Charging Cable,1,11.95,11/08/19 14:34,"811 10th St, Portland, OR 97035" -289087,iPhone,1,700,11/30/19 20:35,"623 West St, Boston, MA 02215" -289088,Flatscreen TV,1,300,11/23/19 21:40,"580 4th St, Austin, TX 73301" -289089,AA Batteries (4-pack),1,3.84,11/08/19 14:58,"249 Lincoln St, Boston, MA 02215" -289089,AAA Batteries (4-pack),1,2.99,11/08/19 14:58,"249 Lincoln St, Boston, MA 02215" -289090,Wired Headphones,1,11.99,11/24/19 21:21,"866 7th St, Atlanta, GA 30301" -289091,Google Phone,1,600,11/10/19 12:12,"218 Washington St, Dallas, TX 75001" -289092,AAA Batteries (4-pack),1,2.99,11/15/19 06:31,"850 Johnson St, Seattle, WA 98101" -289093,Lightning Charging Cable,1,14.95,11/17/19 12:00,"306 Dogwood St, San Francisco, CA 94016" -289094,Lightning Charging Cable,1,14.95,11/14/19 18:00,"683 14th St, San Francisco, CA 94016" -289095,AA Batteries (4-pack),1,3.84,11/05/19 15:48,"511 10th St, Boston, MA 02215" -289096,AA Batteries (4-pack),1,3.84,11/19/19 22:28,"860 Walnut St, Seattle, WA 98101" -289097,USB-C Charging Cable,1,11.95,11/13/19 20:44,"62 Lincoln St, New York City, NY 10001" -289098,AA Batteries (4-pack),1,3.84,11/02/19 11:12,"555 Adams St, Seattle, WA 98101" -289099,34in Ultrawide Monitor,1,379.99,11/25/19 19:27,"636 North St, San Francisco, CA 94016" -289100,Macbook Pro Laptop,1,1700,11/25/19 12:38,"829 Dogwood St, Boston, MA 02215" -289101,USB-C Charging Cable,1,11.95,11/10/19 19:10,"488 Wilson St, San Francisco, CA 94016" -289102,Bose SoundSport Headphones,1,99.99,11/06/19 17:26,"973 Adams St, Austin, TX 73301" -289103,AAA Batteries (4-pack),2,2.99,11/24/19 21:37,"406 2nd St, Los Angeles, CA 90001" -289104,Google Phone,1,600,11/28/19 23:04,"915 Hickory St, San Francisco, CA 94016" -289105,Wired Headphones,1,11.99,11/22/19 16:29,"561 Sunset St, Boston, MA 02215" -289106,Bose SoundSport Headphones,1,99.99,11/30/19 20:10,"44 Dogwood St, San Francisco, CA 94016" -289107,ThinkPad Laptop,1,999.99,11/30/19 19:38,"609 5th St, San Francisco, CA 94016" -289108,Bose SoundSport Headphones,1,99.99,11/09/19 10:27,"204 Hickory St, San Francisco, CA 94016" -289109,AAA Batteries (4-pack),2,2.99,11/26/19 14:35,"547 South St, San Francisco, CA 94016" -289110,Wired Headphones,1,11.99,11/02/19 13:01,"737 Willow St, San Francisco, CA 94016" -289111,Apple Airpods Headphones,1,150,11/06/19 13:19,"218 Highland St, San Francisco, CA 94016" -289112,USB-C Charging Cable,1,11.95,11/11/19 13:45,"120 Cedar St, Boston, MA 02215" -289113,AAA Batteries (4-pack),2,2.99,11/28/19 17:55,"65 4th St, Los Angeles, CA 90001" -289114,Lightning Charging Cable,1,14.95,11/07/19 18:30,"518 9th St, Dallas, TX 75001" -289115,AA Batteries (4-pack),1,3.84,11/28/19 00:08,"903 Willow St, New York City, NY 10001" -289116,Apple Airpods Headphones,1,150,11/29/19 16:13,"659 2nd St, Los Angeles, CA 90001" -289117,Vareebadd Phone,1,400,11/15/19 18:50,"938 Church St, San Francisco, CA 94016" -289117,USB-C Charging Cable,1,11.95,11/15/19 18:50,"938 Church St, San Francisco, CA 94016" -289117,Bose SoundSport Headphones,1,99.99,11/15/19 18:50,"938 Church St, San Francisco, CA 94016" -289117,Wired Headphones,1,11.99,11/15/19 18:50,"938 Church St, San Francisco, CA 94016" -289118,Lightning Charging Cable,1,14.95,11/16/19 15:35,"266 5th St, Boston, MA 02215" -289119,ThinkPad Laptop,1,999.99,11/03/19 00:19,"262 Sunset St, Los Angeles, CA 90001" -289120,AA Batteries (4-pack),2,3.84,11/02/19 14:20,"637 9th St, Atlanta, GA 30301" -289121,Bose SoundSport Headphones,1,99.99,11/07/19 12:37,"42 Lincoln St, Dallas, TX 75001" -289122,Apple Airpods Headphones,1,150,11/23/19 20:39,"639 Willow St, San Francisco, CA 94016" -289123,AAA Batteries (4-pack),2,2.99,11/06/19 19:01,"374 4th St, Dallas, TX 75001" -289124,27in 4K Gaming Monitor,1,389.99,11/27/19 20:44,"132 5th St, San Francisco, CA 94016" -289125,Wired Headphones,1,11.99,11/25/19 17:22,"962 Main St, Dallas, TX 75001" -289126,AA Batteries (4-pack),1,3.84,11/13/19 18:18,"886 2nd St, Los Angeles, CA 90001" -289127,Wired Headphones,1,11.99,11/09/19 16:42,"36 Johnson St, San Francisco, CA 94016" -289128,27in FHD Monitor,1,149.99,11/12/19 10:49,"322 Willow St, San Francisco, CA 94016" -289129,USB-C Charging Cable,1,11.95,11/26/19 12:09,"342 11th St, Portland, OR 97035" -289130,34in Ultrawide Monitor,1,379.99,11/10/19 12:58,"446 10th St, Boston, MA 02215" -289131,iPhone,1,700,11/18/19 22:57,"866 Dogwood St, New York City, NY 10001" -289132,Lightning Charging Cable,1,14.95,11/08/19 13:32,"280 Elm St, Los Angeles, CA 90001" -289133,AAA Batteries (4-pack),1,2.99,11/25/19 09:03,"416 Jefferson St, Seattle, WA 98101" -289134,ThinkPad Laptop,1,999.99,11/22/19 22:30,"533 Cherry St, San Francisco, CA 94016" -289135,27in FHD Monitor,1,149.99,11/02/19 13:55,"639 Main St, Boston, MA 02215" -289136,AA Batteries (4-pack),1,3.84,11/21/19 10:12,"705 13th St, Los Angeles, CA 90001" -289137,Bose SoundSport Headphones,1,99.99,11/08/19 17:58,"35 Pine St, Portland, ME 04101" -289138,Lightning Charging Cable,1,14.95,11/28/19 13:34,"955 Hill St, San Francisco, CA 94016" -289139,Macbook Pro Laptop,1,1700,11/20/19 15:53,"549 Highland St, Atlanta, GA 30301" -289140,Apple Airpods Headphones,1,150,11/14/19 20:21,"153 Lake St, Boston, MA 02215" -289141,AA Batteries (4-pack),1,3.84,11/28/19 20:06,"952 12th St, Atlanta, GA 30301" -289142,Wired Headphones,1,11.99,11/26/19 18:29,"48 Dogwood St, Boston, MA 02215" -289143,USB-C Charging Cable,1,11.95,11/12/19 21:32,"852 2nd St, Los Angeles, CA 90001" -289144,USB-C Charging Cable,1,11.95,11/19/19 12:11,"942 South St, Seattle, WA 98101" -289145,AA Batteries (4-pack),1,3.84,11/24/19 09:31,"320 Walnut St, Dallas, TX 75001" -289146,Bose SoundSport Headphones,1,99.99,11/27/19 17:29,"4 13th St, San Francisco, CA 94016" -289147,Macbook Pro Laptop,1,1700,11/29/19 07:25,"826 13th St, Los Angeles, CA 90001" -289147,AAA Batteries (4-pack),1,2.99,11/29/19 07:25,"826 13th St, Los Angeles, CA 90001" -289148,Wired Headphones,1,11.99,11/11/19 10:09,"651 9th St, Boston, MA 02215" -289149,AA Batteries (4-pack),1,3.84,11/20/19 11:40,"121 Main St, San Francisco, CA 94016" -289150,AA Batteries (4-pack),1,3.84,11/11/19 12:39,"185 Adams St, Los Angeles, CA 90001" -289151,iPhone,1,700,11/28/19 15:19,"196 North St, Los Angeles, CA 90001" -289152,iPhone,1,700,11/06/19 08:00,"706 2nd St, Atlanta, GA 30301" -289153,Apple Airpods Headphones,1,150,11/17/19 20:04,"759 Adams St, San Francisco, CA 94016" -289154,Lightning Charging Cable,1,14.95,11/03/19 10:33,"346 10th St, San Francisco, CA 94016" -289155,Wired Headphones,1,11.99,11/16/19 07:13,"157 Highland St, Dallas, TX 75001" -289156,iPhone,1,700,11/14/19 16:23,"320 Spruce St, Austin, TX 73301" -289156,Apple Airpods Headphones,1,150,11/14/19 16:23,"320 Spruce St, Austin, TX 73301" -289157,AAA Batteries (4-pack),4,2.99,11/16/19 20:17,"349 Adams St, San Francisco, CA 94016" -289158,AA Batteries (4-pack),1,3.84,11/13/19 17:42,"664 Church St, New York City, NY 10001" -289159,AA Batteries (4-pack),1,3.84,11/12/19 17:34,"361 2nd St, Los Angeles, CA 90001" -289160,Lightning Charging Cable,1,14.95,11/16/19 02:17,"19 4th St, San Francisco, CA 94016" -289161,Wired Headphones,1,11.99,11/01/19 20:20,"65 Johnson St, New York City, NY 10001" -289162,Apple Airpods Headphones,1,150,11/26/19 21:41,"919 Lake St, Los Angeles, CA 90001" -289163,AAA Batteries (4-pack),1,2.99,11/25/19 12:09,"311 Walnut St, Atlanta, GA 30301" -289164,Apple Airpods Headphones,1,150,11/18/19 17:11,"293 Church St, Dallas, TX 75001" -289165,USB-C Charging Cable,1,11.95,11/19/19 18:32,"735 South St, Dallas, TX 75001" -289165,Bose SoundSport Headphones,1,99.99,11/19/19 18:32,"735 South St, Dallas, TX 75001" -289166,27in 4K Gaming Monitor,1,389.99,11/02/19 00:08,"224 8th St, San Francisco, CA 94016" -289167,AAA Batteries (4-pack),1,2.99,11/12/19 07:57,"889 1st St, Boston, MA 02215" -289168,Lightning Charging Cable,1,14.95,11/04/19 17:47,"444 Forest St, Los Angeles, CA 90001" -289169,AA Batteries (4-pack),1,3.84,11/06/19 22:52,"726 Park St, Seattle, WA 98101" -289170,34in Ultrawide Monitor,1,379.99,11/29/19 10:23,"769 Maple St, Los Angeles, CA 90001" -289171,Lightning Charging Cable,1,14.95,11/16/19 17:13,"364 4th St, Seattle, WA 98101" -289172,ThinkPad Laptop,1,999.99,11/14/19 22:15,"280 Spruce St, New York City, NY 10001" -289173,USB-C Charging Cable,1,11.95,11/22/19 16:19,"771 6th St, New York City, NY 10001" -289174,Flatscreen TV,1,300,11/15/19 11:52,"441 Pine St, San Francisco, CA 94016" -289175,AA Batteries (4-pack),1,3.84,11/10/19 07:39,"583 Spruce St, Seattle, WA 98101" -289176,USB-C Charging Cable,1,11.95,11/29/19 15:01,"749 Sunset St, San Francisco, CA 94016" -289177,AA Batteries (4-pack),1,3.84,11/15/19 10:20,"988 Chestnut St, San Francisco, CA 94016" -289178,27in FHD Monitor,1,149.99,11/08/19 18:42,"44 Cedar St, San Francisco, CA 94016" -289179,AA Batteries (4-pack),1,3.84,11/26/19 12:21,"563 Jefferson St, Atlanta, GA 30301" -289180,Lightning Charging Cable,1,14.95,11/07/19 09:24,"548 Lincoln St, San Francisco, CA 94016" -289181,Google Phone,1,600,11/13/19 23:38,"842 Park St, New York City, NY 10001" -289182,AA Batteries (4-pack),1,3.84,11/17/19 20:55,"326 Forest St, Portland, OR 97035" -289183,Wired Headphones,1,11.99,11/06/19 11:05,"904 North St, Boston, MA 02215" -289184,27in 4K Gaming Monitor,1,389.99,11/01/19 22:43,"851 Main St, Portland, ME 04101" -289185,20in Monitor,1,109.99,11/14/19 18:08,"937 Lakeview St, Boston, MA 02215" -289186,Lightning Charging Cable,1,14.95,11/21/19 04:01,"907 Lincoln St, Seattle, WA 98101" -289187,iPhone,1,700,11/24/19 17:58,"965 Main St, San Francisco, CA 94016" -289187,Wired Headphones,1,11.99,11/24/19 17:58,"965 Main St, San Francisco, CA 94016" -289188,Lightning Charging Cable,1,14.95,11/03/19 10:14,"890 Main St, New York City, NY 10001" -289189,Bose SoundSport Headphones,1,99.99,11/26/19 09:59,"743 Wilson St, San Francisco, CA 94016" -289190,Bose SoundSport Headphones,1,99.99,11/27/19 14:08,"685 Lake St, Seattle, WA 98101" -289191,Lightning Charging Cable,1,14.95,11/14/19 12:37,"644 Main St, Atlanta, GA 30301" -289192,Lightning Charging Cable,1,14.95,11/02/19 11:27,"718 South St, New York City, NY 10001" -289193,USB-C Charging Cable,1,11.95,11/02/19 08:29,"893 14th St, Seattle, WA 98101" -289194,USB-C Charging Cable,1,11.95,11/01/19 12:02,"791 2nd St, Portland, OR 97035" -289195,Apple Airpods Headphones,1,150,11/30/19 15:37,"193 Main St, Los Angeles, CA 90001" -289196,AAA Batteries (4-pack),1,2.99,11/11/19 11:22,"174 Maple St, New York City, NY 10001" -289197,AAA Batteries (4-pack),1,2.99,11/06/19 15:24,"338 Walnut St, Seattle, WA 98101" -289198,Bose SoundSport Headphones,1,99.99,11/04/19 14:58,"267 Highland St, San Francisco, CA 94016" -289199,AAA Batteries (4-pack),2,2.99,11/14/19 14:02,"733 Highland St, San Francisco, CA 94016" -289200,LG Washing Machine,1,600.0,11/27/19 13:29,"532 2nd St, Los Angeles, CA 90001" -289201,AAA Batteries (4-pack),1,2.99,11/21/19 02:18,"369 Main St, Los Angeles, CA 90001" -289202,AA Batteries (4-pack),1,3.84,11/02/19 23:35,"816 9th St, Portland, OR 97035" -289203,USB-C Charging Cable,1,11.95,11/26/19 15:54,"794 13th St, San Francisco, CA 94016" -289204,AA Batteries (4-pack),1,3.84,11/02/19 18:16,"263 Madison St, San Francisco, CA 94016" -289205,Wired Headphones,1,11.99,11/30/19 03:44,"230 2nd St, San Francisco, CA 94016" -289206,Google Phone,1,600,11/17/19 10:41,"854 Main St, San Francisco, CA 94016" -289207,34in Ultrawide Monitor,1,379.99,11/30/19 10:25,"424 Highland St, Austin, TX 73301" -289208,USB-C Charging Cable,1,11.95,11/26/19 13:07,"708 Cedar St, San Francisco, CA 94016" -289209,AAA Batteries (4-pack),1,2.99,11/04/19 21:11,"551 Chestnut St, Los Angeles, CA 90001" -289210,Bose SoundSport Headphones,1,99.99,11/21/19 12:03,"780 Pine St, San Francisco, CA 94016" -289211,iPhone,1,700,11/05/19 13:42,"774 North St, San Francisco, CA 94016" -289212,AA Batteries (4-pack),4,3.84,11/22/19 19:46,"269 Elm St, Atlanta, GA 30301" -289213,USB-C Charging Cable,2,11.95,11/06/19 16:58,"668 Elm St, Portland, ME 04101" -289214,34in Ultrawide Monitor,1,379.99,11/24/19 01:13,"245 Ridge St, San Francisco, CA 94016" -289215,Wired Headphones,1,11.99,11/24/19 16:59,"497 Elm St, San Francisco, CA 94016" -289216,Bose SoundSport Headphones,1,99.99,11/09/19 14:58,"82 Cherry St, Austin, TX 73301" -289217,AAA Batteries (4-pack),1,2.99,11/07/19 12:16,"939 Hickory St, San Francisco, CA 94016" -289218,Wired Headphones,1,11.99,11/17/19 12:30,"352 11th St, Los Angeles, CA 90001" -289219,Wired Headphones,1,11.99,11/21/19 15:51,"527 9th St, Los Angeles, CA 90001" -289220,AAA Batteries (4-pack),1,2.99,11/03/19 21:42,"691 Center St, Boston, MA 02215" -289221,AA Batteries (4-pack),1,3.84,11/27/19 09:57,"971 Hill St, Los Angeles, CA 90001" -289222,USB-C Charging Cable,1,11.95,11/24/19 11:17,"685 13th St, New York City, NY 10001" -289223,iPhone,1,700,11/05/19 09:56,"631 Hill St, Los Angeles, CA 90001" -289224,Lightning Charging Cable,1,14.95,11/02/19 22:41,"241 Center St, Seattle, WA 98101" -289225,Apple Airpods Headphones,1,150,11/05/19 12:17,"911 River St, New York City, NY 10001" -289226,Lightning Charging Cable,1,14.95,11/18/19 22:08,"972 Jackson St, Boston, MA 02215" -289227,iPhone,1,700,11/26/19 13:37,"804 Hill St, Atlanta, GA 30301" -289227,Lightning Charging Cable,1,14.95,11/26/19 13:37,"804 Hill St, Atlanta, GA 30301" -289228,Wired Headphones,1,11.99,11/13/19 18:49,"989 Elm St, San Francisco, CA 94016" -289229,Lightning Charging Cable,1,14.95,11/03/19 22:19,"688 Park St, San Francisco, CA 94016" -289230,iPhone,1,700,11/16/19 16:32,"296 Pine St, Seattle, WA 98101" -289231,iPhone,1,700,11/24/19 22:15,"604 Maple St, San Francisco, CA 94016" -289232,USB-C Charging Cable,1,11.95,11/21/19 13:54,"606 Hill St, Portland, OR 97035" -289233,AAA Batteries (4-pack),1,2.99,11/15/19 13:39,"598 4th St, Los Angeles, CA 90001" -289234,ThinkPad Laptop,1,999.99,11/17/19 23:49,"20 2nd St, San Francisco, CA 94016" -289235,Wired Headphones,2,11.99,11/30/19 09:25,"269 2nd St, Austin, TX 73301" -289236,iPhone,1,700,11/21/19 14:54,"12 Chestnut St, Boston, MA 02215" -289237,AAA Batteries (4-pack),1,2.99,11/22/19 15:03,"653 1st St, Los Angeles, CA 90001" -289238,Bose SoundSport Headphones,1,99.99,11/30/19 11:56,"271 Jefferson St, Los Angeles, CA 90001" -289239,Apple Airpods Headphones,1,150,11/01/19 16:19,"58 Ridge St, New York City, NY 10001" -289240,AA Batteries (4-pack),2,3.84,11/03/19 17:26,"815 Cedar St, San Francisco, CA 94016" -289241,AA Batteries (4-pack),1,3.84,11/08/19 11:41,"629 Lakeview St, San Francisco, CA 94016" -289242,Apple Airpods Headphones,1,150,11/22/19 00:40,"22 2nd St, New York City, NY 10001" -289243,Bose SoundSport Headphones,1,99.99,11/21/19 13:12,"167 Meadow St, San Francisco, CA 94016" -289244,ThinkPad Laptop,1,999.99,11/29/19 06:49,"646 Pine St, Seattle, WA 98101" -289245,AA Batteries (4-pack),1,3.84,11/28/19 06:53,"389 Hickory St, New York City, NY 10001" -289246,AAA Batteries (4-pack),2,2.99,11/07/19 17:53,"609 Wilson St, Boston, MA 02215" -289247,Wired Headphones,2,11.99,11/01/19 09:19,"861 Wilson St, Portland, ME 04101" -289248,Wired Headphones,1,11.99,11/05/19 17:57,"534 Lake St, Boston, MA 02215" -289249,Google Phone,1,600,11/29/19 21:00,"495 Dogwood St, New York City, NY 10001" -289250,Apple Airpods Headphones,1,150,11/28/19 09:47,"83 Johnson St, San Francisco, CA 94016" -289251,USB-C Charging Cable,1,11.95,11/29/19 20:20,"244 11th St, Los Angeles, CA 90001" -289252,USB-C Charging Cable,1,11.95,11/18/19 10:58,"644 Highland St, New York City, NY 10001" -289253,Lightning Charging Cable,2,14.95,11/23/19 17:12,"662 Park St, Portland, OR 97035" -289254,Flatscreen TV,1,300,11/01/19 20:53,"871 Meadow St, Dallas, TX 75001" -289255,iPhone,1,700,11/20/19 16:02,"906 Washington St, Austin, TX 73301" -289256,AA Batteries (4-pack),1,3.84,11/01/19 20:16,"736 10th St, Dallas, TX 75001" -289257,USB-C Charging Cable,1,11.95,11/09/19 11:45,"845 Hill St, Atlanta, GA 30301" -289258,AA Batteries (4-pack),1,3.84,11/30/19 10:49,"176 11th St, Seattle, WA 98101" -289259,Macbook Pro Laptop,1,1700,11/20/19 16:56,"983 6th St, Los Angeles, CA 90001" -289260,Vareebadd Phone,1,400,11/07/19 19:23,"387 Adams St, Austin, TX 73301" -289261,Bose SoundSport Headphones,1,99.99,11/12/19 11:55,"757 11th St, New York City, NY 10001" -289262,USB-C Charging Cable,1,11.95,11/06/19 09:52,"97 Madison St, San Francisco, CA 94016" -289263,Bose SoundSport Headphones,1,99.99,11/28/19 16:15,"66 Park St, Seattle, WA 98101" -289264,Wired Headphones,1,11.99,11/05/19 11:18,"271 Adams St, New York City, NY 10001" -289265,Flatscreen TV,1,300,11/22/19 01:04,"376 Wilson St, San Francisco, CA 94016" -289266,Macbook Pro Laptop,1,1700,11/29/19 12:33,"335 West St, San Francisco, CA 94016" -289267,Flatscreen TV,1,300,11/02/19 08:54,"499 12th St, Portland, ME 04101" -289268,27in FHD Monitor,1,149.99,11/18/19 10:43,"874 Willow St, San Francisco, CA 94016" -289269,Wired Headphones,1,11.99,11/24/19 09:35,"559 Adams St, Los Angeles, CA 90001" -289270,34in Ultrawide Monitor,1,379.99,11/29/19 12:06,"989 Cedar St, Dallas, TX 75001" -289271,USB-C Charging Cable,1,11.95,11/09/19 00:33,"404 Cedar St, New York City, NY 10001" -289272,Apple Airpods Headphones,1,150,11/28/19 10:12,"859 14th St, San Francisco, CA 94016" -289273,AAA Batteries (4-pack),3,2.99,11/26/19 21:52,"814 South St, Boston, MA 02215" -289274,Google Phone,1,600,11/30/19 08:22,"566 Dogwood St, San Francisco, CA 94016" -289275,Macbook Pro Laptop,1,1700,11/20/19 20:07,"874 Jefferson St, Dallas, TX 75001" -289276,27in FHD Monitor,1,149.99,11/15/19 12:28,"645 Jefferson St, San Francisco, CA 94016" -289277,Vareebadd Phone,1,400,11/23/19 14:52,"811 Main St, Boston, MA 02215" -289278,27in FHD Monitor,1,149.99,11/18/19 16:16,"173 Cedar St, Dallas, TX 75001" -289279,Wired Headphones,1,11.99,11/06/19 13:15,"824 Elm St, Boston, MA 02215" -289280,AAA Batteries (4-pack),1,2.99,11/11/19 13:08,"638 Dogwood St, Boston, MA 02215" -289281,USB-C Charging Cable,1,11.95,11/07/19 05:19,"56 Church St, Dallas, TX 75001" -289282,Bose SoundSport Headphones,1,99.99,11/06/19 22:05,"413 Center St, Los Angeles, CA 90001" -289283,Lightning Charging Cable,1,14.95,11/22/19 23:41,"448 8th St, San Francisco, CA 94016" -289284,20in Monitor,1,109.99,11/15/19 18:38,"736 Jackson St, San Francisco, CA 94016" -289285,Lightning Charging Cable,1,14.95,11/22/19 18:28,"296 13th St, Dallas, TX 75001" -289286,USB-C Charging Cable,1,11.95,11/10/19 22:30,"13 7th St, New York City, NY 10001" -289287,AA Batteries (4-pack),1,3.84,11/02/19 23:19,"489 12th St, Boston, MA 02215" -289288,AAA Batteries (4-pack),1,2.99,11/09/19 17:38,"244 12th St, San Francisco, CA 94016" -289289,USB-C Charging Cable,1,11.95,11/15/19 16:58,"690 10th St, New York City, NY 10001" -289290,Apple Airpods Headphones,1,150,11/12/19 00:31,"243 1st St, Boston, MA 02215" -289291,Wired Headphones,1,11.99,11/17/19 13:14,"988 Hickory St, Los Angeles, CA 90001" -289292,AA Batteries (4-pack),1,3.84,11/29/19 14:41,"820 14th St, Dallas, TX 75001" -289293,34in Ultrawide Monitor,1,379.99,11/03/19 01:08,"756 Hill St, Boston, MA 02215" -289294,AA Batteries (4-pack),1,3.84,11/06/19 13:10,"423 Church St, San Francisco, CA 94016" -289295,27in 4K Gaming Monitor,1,389.99,11/02/19 16:13,"853 Walnut St, Atlanta, GA 30301" -289296,Apple Airpods Headphones,1,150,11/10/19 11:47,"130 13th St, San Francisco, CA 94016" -289297,AA Batteries (4-pack),2,3.84,11/24/19 13:20,"263 Pine St, Los Angeles, CA 90001" -289298,Macbook Pro Laptop,1,1700,11/24/19 00:08,"207 Church St, Los Angeles, CA 90001" -289299,34in Ultrawide Monitor,1,379.99,11/13/19 21:11,"260 Jackson St, Austin, TX 73301" -289300,AA Batteries (4-pack),1,3.84,11/04/19 12:23,"720 Church St, Atlanta, GA 30301" -289301,Apple Airpods Headphones,1,150,11/24/19 11:57,"628 North St, New York City, NY 10001" -289302,AA Batteries (4-pack),3,3.84,11/01/19 09:22,"575 Forest St, San Francisco, CA 94016" -289303,AAA Batteries (4-pack),1,2.99,11/25/19 18:57,"613 Sunset St, Los Angeles, CA 90001" -289304,Lightning Charging Cable,1,14.95,11/16/19 10:37,"304 Highland St, New York City, NY 10001" -289305,Google Phone,1,600,11/05/19 21:19,"899 Ridge St, Los Angeles, CA 90001" -289306,AAA Batteries (4-pack),1,2.99,11/21/19 22:47,"893 Spruce St, Boston, MA 02215" -289307,Lightning Charging Cable,1,14.95,11/20/19 18:25,"201 Ridge St, Portland, OR 97035" -,,,,, -289308,20in Monitor,1,109.99,11/01/19 16:44,"996 9th St, Atlanta, GA 30301" -289309,USB-C Charging Cable,1,11.95,11/21/19 10:26,"342 14th St, Los Angeles, CA 90001" -289310,Wired Headphones,1,11.99,11/20/19 14:46,"679 Washington St, San Francisco, CA 94016" -289311,USB-C Charging Cable,1,11.95,11/02/19 11:46,"765 Church St, Boston, MA 02215" -289312,Bose SoundSport Headphones,1,99.99,11/24/19 18:34,"774 Lake St, Dallas, TX 75001" -289313,AA Batteries (4-pack),5,3.84,11/04/19 12:54,"764 4th St, San Francisco, CA 94016" -289314,USB-C Charging Cable,1,11.95,11/19/19 06:22,"694 Spruce St, Atlanta, GA 30301" -289315,USB-C Charging Cable,2,11.95,11/15/19 21:33,"853 Johnson St, New York City, NY 10001" -289316,iPhone,1,700,11/07/19 06:49,"943 Chestnut St, San Francisco, CA 94016" -289317,Lightning Charging Cable,1,14.95,11/15/19 13:30,"700 Dogwood St, New York City, NY 10001" -289318,34in Ultrawide Monitor,1,379.99,11/14/19 13:30,"537 Meadow St, New York City, NY 10001" -289319,USB-C Charging Cable,1,11.95,11/15/19 15:59,"327 Meadow St, Boston, MA 02215" -289320,Lightning Charging Cable,2,14.95,11/14/19 16:20,"843 1st St, Los Angeles, CA 90001" -289321,AAA Batteries (4-pack),3,2.99,11/14/19 19:47,"996 West St, New York City, NY 10001" -289322,USB-C Charging Cable,1,11.95,11/08/19 19:23,"15 Hill St, San Francisco, CA 94016" -289323,USB-C Charging Cable,1,11.95,11/28/19 14:15,"606 Johnson St, San Francisco, CA 94016" -289324,Bose SoundSport Headphones,1,99.99,11/25/19 17:47,"72 Church St, Seattle, WA 98101" -289325,27in FHD Monitor,1,149.99,11/07/19 22:58,"823 Jefferson St, New York City, NY 10001" -289326,AAA Batteries (4-pack),1,2.99,11/14/19 11:32,"342 Main St, New York City, NY 10001" -289327,Lightning Charging Cable,1,14.95,11/01/19 20:46,"297 Adams St, New York City, NY 10001" -289328,AA Batteries (4-pack),2,3.84,11/21/19 13:36,"913 Dogwood St, Seattle, WA 98101" -289329,Wired Headphones,1,11.99,11/21/19 00:05,"319 Cherry St, San Francisco, CA 94016" -289330,34in Ultrawide Monitor,1,379.99,11/04/19 17:35,"492 Elm St, Boston, MA 02215" -289331,Apple Airpods Headphones,1,150,11/23/19 14:25,"984 Spruce St, San Francisco, CA 94016" -289331,LG Dryer,1,600.0,11/23/19 14:25,"984 Spruce St, San Francisco, CA 94016" -289332,Wired Headphones,1,11.99,11/11/19 20:31,"722 11th St, Portland, OR 97035" -289333,Lightning Charging Cable,1,14.95,11/19/19 15:54,"882 7th St, San Francisco, CA 94016" -289334,USB-C Charging Cable,1,11.95,11/07/19 19:11,"304 Pine St, Boston, MA 02215" -289335,AAA Batteries (4-pack),1,2.99,11/13/19 15:44,"469 Church St, San Francisco, CA 94016" -289336,USB-C Charging Cable,1,11.95,11/15/19 10:48,"855 13th St, New York City, NY 10001" -289337,Bose SoundSport Headphones,1,99.99,11/03/19 10:13,"26 Park St, San Francisco, CA 94016" -289338,27in FHD Monitor,1,149.99,11/20/19 11:59,"411 Washington St, San Francisco, CA 94016" -289339,USB-C Charging Cable,1,11.95,11/30/19 06:15,"656 7th St, Boston, MA 02215" -289340,USB-C Charging Cable,1,11.95,11/18/19 14:08,"70 Hickory St, Seattle, WA 98101" -289341,Apple Airpods Headphones,1,150,11/04/19 12:02,"580 North St, Boston, MA 02215" -289342,ThinkPad Laptop,1,999.99,11/15/19 22:56,"428 Walnut St, Seattle, WA 98101" -289343,iPhone,1,700,11/18/19 14:28,"947 Cedar St, Seattle, WA 98101" -289344,Apple Airpods Headphones,1,150,11/19/19 20:02,"400 Ridge St, Portland, OR 97035" -289345,Apple Airpods Headphones,1,150,11/18/19 12:16,"260 South St, Austin, TX 73301" -289346,Lightning Charging Cable,1,14.95,11/07/19 13:14,"778 9th St, Los Angeles, CA 90001" -289347,27in FHD Monitor,1,149.99,11/03/19 20:22,"121 Park St, New York City, NY 10001" -289348,Wired Headphones,1,11.99,11/21/19 12:39,"377 Cedar St, Atlanta, GA 30301" -289349,Wired Headphones,1,11.99,11/16/19 13:37,"55 Hill St, Los Angeles, CA 90001" -289350,AAA Batteries (4-pack),1,2.99,11/11/19 18:52,"857 4th St, San Francisco, CA 94016" -289351,34in Ultrawide Monitor,1,379.99,11/06/19 20:44,"258 12th St, Boston, MA 02215" -289352,AA Batteries (4-pack),2,3.84,11/19/19 17:14,"935 Meadow St, San Francisco, CA 94016" -289353,Apple Airpods Headphones,1,150,11/11/19 17:49,"12 2nd St, Los Angeles, CA 90001" -289354,USB-C Charging Cable,1,11.95,11/07/19 12:14,"247 Jackson St, Los Angeles, CA 90001" -289355,AA Batteries (4-pack),1,3.84,11/27/19 21:21,"293 South St, Portland, OR 97035" -289356,AA Batteries (4-pack),1,3.84,11/04/19 21:52,"729 Chestnut St, Austin, TX 73301" -289357,27in 4K Gaming Monitor,1,389.99,11/27/19 21:42,"309 Lincoln St, Boston, MA 02215" -289357,AAA Batteries (4-pack),2,2.99,11/27/19 21:42,"309 Lincoln St, Boston, MA 02215" -289358,Lightning Charging Cable,1,14.95,11/11/19 23:13,"955 13th St, Los Angeles, CA 90001" -289359,AA Batteries (4-pack),1,3.84,11/28/19 14:42,"618 Walnut St, Dallas, TX 75001" -289360,27in FHD Monitor,1,149.99,11/08/19 19:52,"921 Wilson St, Dallas, TX 75001" -289361,Lightning Charging Cable,1,14.95,11/23/19 14:10,"965 Ridge St, Seattle, WA 98101" -289362,USB-C Charging Cable,1,11.95,11/16/19 19:12,"201 Sunset St, San Francisco, CA 94016" -289363,Apple Airpods Headphones,1,150,11/15/19 11:20,"285 North St, Los Angeles, CA 90001" -289364,Flatscreen TV,1,300,11/16/19 12:33,"948 Wilson St, San Francisco, CA 94016" -289365,20in Monitor,1,109.99,11/27/19 05:42,"355 Hickory St, New York City, NY 10001" -289366,27in FHD Monitor,1,149.99,11/15/19 12:06,"80 7th St, Los Angeles, CA 90001" -289367,USB-C Charging Cable,1,11.95,11/25/19 16:34,"479 Willow St, Austin, TX 73301" -289368,AA Batteries (4-pack),1,3.84,11/02/19 14:52,"590 13th St, Boston, MA 02215" -289369,Wired Headphones,1,11.99,11/27/19 22:15,"765 Church St, Boston, MA 02215" -289370,iPhone,1,700,11/05/19 14:09,"264 4th St, Los Angeles, CA 90001" -289371,Apple Airpods Headphones,1,150,11/20/19 19:28,"73 Wilson St, Dallas, TX 75001" -289372,Macbook Pro Laptop,1,1700,11/07/19 14:23,"627 2nd St, Portland, OR 97035" -289373,AA Batteries (4-pack),2,3.84,11/14/19 11:09,"137 Hickory St, Seattle, WA 98101" -289374,Lightning Charging Cable,1,14.95,11/07/19 18:25,"882 9th St, San Francisco, CA 94016" -289375,Lightning Charging Cable,1,14.95,11/08/19 12:18,"859 Park St, Atlanta, GA 30301" -289376,Flatscreen TV,1,300,11/24/19 12:36,"266 Ridge St, Atlanta, GA 30301" -289377,AAA Batteries (4-pack),1,2.99,11/14/19 11:24,"773 Center St, New York City, NY 10001" -289378,27in FHD Monitor,1,149.99,11/08/19 08:43,"253 Adams St, Atlanta, GA 30301" -289379,27in FHD Monitor,1,149.99,11/01/19 21:41,"212 8th St, Portland, ME 04101" -289380,USB-C Charging Cable,3,11.95,11/30/19 07:56,"574 2nd St, Atlanta, GA 30301" -289381,27in FHD Monitor,1,149.99,11/24/19 00:37,"479 Jackson St, San Francisco, CA 94016" -289382,AAA Batteries (4-pack),1,2.99,11/25/19 16:55,"155 9th St, New York City, NY 10001" -289383,AA Batteries (4-pack),1,3.84,11/23/19 12:18,"136 14th St, San Francisco, CA 94016" -289384,Wired Headphones,1,11.99,11/30/19 11:41,"268 5th St, San Francisco, CA 94016" -289385,USB-C Charging Cable,1,11.95,11/21/19 19:13,"660 Church St, Austin, TX 73301" -289386,Wired Headphones,1,11.99,11/18/19 01:12,"536 13th St, Boston, MA 02215" -289387,Lightning Charging Cable,1,14.95,11/14/19 14:22,"40 4th St, Dallas, TX 75001" -289388,34in Ultrawide Monitor,1,379.99,11/16/19 14:45,"580 9th St, Seattle, WA 98101" -289389,AAA Batteries (4-pack),1,2.99,11/27/19 19:07,"744 Wilson St, San Francisco, CA 94016" -289390,USB-C Charging Cable,2,11.95,11/28/19 19:29,"453 North St, Dallas, TX 75001" -289391,Wired Headphones,1,11.99,11/02/19 20:11,"604 Lake St, San Francisco, CA 94016" -289392,Lightning Charging Cable,1,14.95,11/23/19 10:33,"614 10th St, New York City, NY 10001" -289393,USB-C Charging Cable,1,11.95,11/29/19 21:37,"63 10th St, Seattle, WA 98101" -289394,34in Ultrawide Monitor,1,379.99,11/28/19 20:51,"290 Jackson St, Boston, MA 02215" -289395,AA Batteries (4-pack),1,3.84,11/24/19 18:20,"827 13th St, Los Angeles, CA 90001" -289396,iPhone,1,700,11/15/19 21:48,"849 10th St, Boston, MA 02215" -289396,Wired Headphones,1,11.99,11/15/19 21:48,"849 10th St, Boston, MA 02215" -289397,AA Batteries (4-pack),1,3.84,11/21/19 16:22,"113 Center St, Los Angeles, CA 90001" -289398,Bose SoundSport Headphones,1,99.99,11/08/19 10:35,"615 Cherry St, New York City, NY 10001" -289399,AAA Batteries (4-pack),2,2.99,11/27/19 20:46,"333 11th St, Portland, OR 97035" -289400,Wired Headphones,1,11.99,11/04/19 10:24,"552 North St, Portland, OR 97035" -289401,Lightning Charging Cable,1,14.95,11/11/19 21:12,"501 Lake St, Los Angeles, CA 90001" -289402,Wired Headphones,1,11.99,11/03/19 12:37,"747 Chestnut St, Atlanta, GA 30301" -289403,AAA Batteries (4-pack),1,2.99,11/16/19 13:56,"386 Main St, Los Angeles, CA 90001" -289404,Lightning Charging Cable,1,14.95,11/27/19 18:22,"460 Main St, Boston, MA 02215" -289405,Apple Airpods Headphones,1,150,11/18/19 20:21,"637 Main St, San Francisco, CA 94016" -289405,Lightning Charging Cable,1,14.95,11/18/19 20:21,"637 Main St, San Francisco, CA 94016" -289406,Flatscreen TV,1,300,11/07/19 08:36,"183 Pine St, Boston, MA 02215" -289407,Lightning Charging Cable,1,14.95,11/30/19 10:05,"235 10th St, Los Angeles, CA 90001" -289408,Wired Headphones,1,11.99,11/06/19 09:39,"500 Hill St, San Francisco, CA 94016" -289409,Apple Airpods Headphones,1,150,11/08/19 10:30,"653 7th St, San Francisco, CA 94016" -289410,Macbook Pro Laptop,1,1700,11/15/19 18:45,"397 River St, New York City, NY 10001" -289411,AAA Batteries (4-pack),1,2.99,11/19/19 12:58,"114 14th St, Los Angeles, CA 90001" -289411,Lightning Charging Cable,1,14.95,11/19/19 12:58,"114 14th St, Los Angeles, CA 90001" -289412,Macbook Pro Laptop,1,1700,11/20/19 14:22,"783 Jackson St, New York City, NY 10001" -289413,USB-C Charging Cable,1,11.95,11/02/19 05:33,"115 Lakeview St, San Francisco, CA 94016" -289414,27in FHD Monitor,1,149.99,11/16/19 12:25,"433 Ridge St, San Francisco, CA 94016" -289415,AA Batteries (4-pack),1,3.84,11/07/19 14:50,"203 Adams St, Los Angeles, CA 90001" -289416,AAA Batteries (4-pack),2,2.99,11/15/19 12:16,"562 9th St, Seattle, WA 98101" -289417,AAA Batteries (4-pack),1,2.99,11/17/19 12:13,"202 Chestnut St, Boston, MA 02215" -289418,ThinkPad Laptop,1,999.99,11/06/19 21:13,"428 11th St, Boston, MA 02215" -289419,27in FHD Monitor,1,149.99,11/27/19 16:28,"164 Center St, Los Angeles, CA 90001" -289420,Lightning Charging Cable,1,14.95,11/04/19 11:23,"560 Madison St, Atlanta, GA 30301" -289420,Bose SoundSport Headphones,1,99.99,11/04/19 11:23,"560 Madison St, Atlanta, GA 30301" -289421,Lightning Charging Cable,1,14.95,11/08/19 18:58,"533 North St, San Francisco, CA 94016" -289422,ThinkPad Laptop,1,999.99,11/23/19 14:15,"423 Chestnut St, Seattle, WA 98101" -289423,AAA Batteries (4-pack),1,2.99,11/20/19 19:02,"357 Madison St, Seattle, WA 98101" -289424,Apple Airpods Headphones,1,150,11/11/19 13:28,"467 Washington St, New York City, NY 10001" -289425,Apple Airpods Headphones,1,150,11/18/19 11:00,"283 Ridge St, Boston, MA 02215" -289426,iPhone,1,700,11/24/19 11:14,"681 Forest St, Los Angeles, CA 90001" -289427,AAA Batteries (4-pack),2,2.99,11/17/19 23:20,"314 Meadow St, Atlanta, GA 30301" -289428,Lightning Charging Cable,1,14.95,11/16/19 20:01,"554 Adams St, Dallas, TX 75001" -289429,Lightning Charging Cable,1,14.95,11/25/19 21:50,"601 6th St, Atlanta, GA 30301" -289430,AAA Batteries (4-pack),1,2.99,11/27/19 16:36,"558 7th St, San Francisco, CA 94016" -289431,AA Batteries (4-pack),1,3.84,11/26/19 21:10,"141 7th St, Portland, OR 97035" -289432,AA Batteries (4-pack),1,3.84,11/17/19 18:41,"42 Chestnut St, Los Angeles, CA 90001" -289433,Apple Airpods Headphones,2,150,11/19/19 18:09,"491 Spruce St, Boston, MA 02215" -289434,Bose SoundSport Headphones,1,99.99,11/01/19 17:05,"296 12th St, San Francisco, CA 94016" -289435,Bose SoundSport Headphones,1,99.99,11/07/19 18:50,"150 Adams St, Seattle, WA 98101" -289436,Bose SoundSport Headphones,1,99.99,11/01/19 12:25,"556 11th St, Los Angeles, CA 90001" -289437,AAA Batteries (4-pack),4,2.99,11/19/19 09:37,"944 13th St, Los Angeles, CA 90001" -289438,USB-C Charging Cable,1,11.95,11/28/19 20:09,"535 Lakeview St, New York City, NY 10001" -289439,Wired Headphones,1,11.99,11/08/19 11:44,"577 Park St, Los Angeles, CA 90001" -289440,Apple Airpods Headphones,1,150,11/20/19 19:58,"436 9th St, New York City, NY 10001" -289441,AAA Batteries (4-pack),1,2.99,11/29/19 13:53,"660 Church St, Los Angeles, CA 90001" -289442,AA Batteries (4-pack),1,3.84,11/27/19 12:49,"191 Center St, Portland, OR 97035" -289443,iPhone,1,700,11/18/19 21:38,"600 14th St, Los Angeles, CA 90001" -289444,AAA Batteries (4-pack),1,2.99,11/14/19 15:28,"219 Chestnut St, Los Angeles, CA 90001" -289445,Lightning Charging Cable,1,14.95,11/03/19 11:13,"389 4th St, Los Angeles, CA 90001" -289446,Lightning Charging Cable,1,14.95,11/23/19 21:25,"39 West St, New York City, NY 10001" -289447,27in 4K Gaming Monitor,1,389.99,11/02/19 17:00,"354 2nd St, Dallas, TX 75001" -289448,Apple Airpods Headphones,1,150,11/25/19 17:10,"845 10th St, San Francisco, CA 94016" -289449,Apple Airpods Headphones,1,150,11/20/19 23:10,"241 Washington St, Seattle, WA 98101" -289450,Lightning Charging Cable,1,14.95,11/08/19 19:45,"584 Hickory St, Los Angeles, CA 90001" -289451,Bose SoundSport Headphones,1,99.99,11/13/19 10:29,"186 Hill St, Austin, TX 73301" -289452,Lightning Charging Cable,1,14.95,11/29/19 10:25,"285 Willow St, San Francisco, CA 94016" -289453,AAA Batteries (4-pack),1,2.99,11/07/19 10:56,"461 Meadow St, San Francisco, CA 94016" -289454,Bose SoundSport Headphones,1,99.99,11/30/19 14:43,"524 Lincoln St, San Francisco, CA 94016" -289455,AA Batteries (4-pack),1,3.84,11/21/19 19:52,"880 Main St, San Francisco, CA 94016" -289456,Lightning Charging Cable,1,14.95,11/23/19 21:23,"65 Johnson St, New York City, NY 10001" -289457,Wired Headphones,1,11.99,11/18/19 20:49,"972 West St, San Francisco, CA 94016" -289457,Bose SoundSport Headphones,1,99.99,11/18/19 20:49,"972 West St, San Francisco, CA 94016" -289458,AA Batteries (4-pack),1,3.84,11/05/19 15:03,"20 Chestnut St, Los Angeles, CA 90001" -289459,27in 4K Gaming Monitor,1,389.99,11/30/19 14:27,"968 13th St, Boston, MA 02215" -289460,Wired Headphones,1,11.99,11/01/19 20:25,"507 Cherry St, Los Angeles, CA 90001" -289461,34in Ultrawide Monitor,1,379.99,11/15/19 08:14,"526 Jefferson St, New York City, NY 10001" -289461,27in FHD Monitor,1,149.99,11/15/19 08:14,"526 Jefferson St, New York City, NY 10001" -289462,USB-C Charging Cable,2,11.95,11/13/19 13:37,"378 Lake St, San Francisco, CA 94016" -289463,iPhone,1,700,11/27/19 13:32,"60 13th St, Boston, MA 02215" -289463,Lightning Charging Cable,1,14.95,11/27/19 13:32,"60 13th St, Boston, MA 02215" -289464,27in FHD Monitor,1,149.99,11/28/19 21:06,"429 Forest St, Austin, TX 73301" -289465,AA Batteries (4-pack),1,3.84,11/08/19 19:22,"496 Johnson St, Austin, TX 73301" -289466,Wired Headphones,1,11.99,11/05/19 13:47,"260 Johnson St, Boston, MA 02215" -289467,Wired Headphones,1,11.99,11/11/19 05:02,"936 2nd St, Portland, OR 97035" -289468,27in FHD Monitor,1,149.99,11/27/19 14:00,"129 River St, Seattle, WA 98101" -289469,27in FHD Monitor,1,149.99,11/07/19 16:55,"292 Washington St, New York City, NY 10001" -289470,USB-C Charging Cable,1,11.95,11/25/19 11:36,"590 North St, Atlanta, GA 30301" -289471,20in Monitor,1,109.99,11/22/19 17:51,"180 Jackson St, Dallas, TX 75001" -289472,Bose SoundSport Headphones,1,99.99,11/20/19 14:44,"424 Dogwood St, Seattle, WA 98101" -289473,Wired Headphones,1,11.99,11/29/19 23:31,"310 Sunset St, New York City, NY 10001" -289473,Apple Airpods Headphones,1,150,11/29/19 23:31,"310 Sunset St, New York City, NY 10001" -289474,AAA Batteries (4-pack),3,2.99,11/28/19 10:18,"421 Lake St, New York City, NY 10001" -289475,Wired Headphones,1,11.99,11/12/19 17:49,"346 Cherry St, San Francisco, CA 94016" -289476,Bose SoundSport Headphones,1,99.99,11/01/19 20:11,"503 Jefferson St, Seattle, WA 98101" -289477,AAA Batteries (4-pack),1,2.99,11/22/19 00:25,"99 4th St, Dallas, TX 75001" -,,,,, -289478,Apple Airpods Headphones,1,150,11/08/19 21:44,"537 Lake St, San Francisco, CA 94016" -289479,Apple Airpods Headphones,1,150,11/17/19 22:30,"446 Wilson St, Dallas, TX 75001" -289480,Lightning Charging Cable,1,14.95,11/14/19 18:10,"585 Park St, Boston, MA 02215" -289481,Lightning Charging Cable,1,14.95,11/02/19 22:20,"953 Center St, New York City, NY 10001" -289482,27in FHD Monitor,1,149.99,11/15/19 23:45,"922 Church St, Boston, MA 02215" -289483,Lightning Charging Cable,1,14.95,11/03/19 11:23,"960 Lake St, San Francisco, CA 94016" -289484,Apple Airpods Headphones,1,150,11/16/19 22:30,"275 5th St, Seattle, WA 98101" -289485,27in FHD Monitor,1,149.99,11/25/19 17:23,"135 7th St, Atlanta, GA 30301" -289486,Bose SoundSport Headphones,1,99.99,11/27/19 15:46,"195 West St, Austin, TX 73301" -289487,iPhone,1,700,11/27/19 11:06,"793 Chestnut St, San Francisco, CA 94016" -289488,AAA Batteries (4-pack),4,2.99,11/20/19 08:20,"21 Elm St, Los Angeles, CA 90001" -289489,27in FHD Monitor,1,149.99,11/18/19 12:42,"555 Pine St, Seattle, WA 98101" -289490,Vareebadd Phone,1,400,11/27/19 19:14,"30 Cherry St, Los Angeles, CA 90001" -289491,iPhone,1,700,11/19/19 13:59,"294 Walnut St, San Francisco, CA 94016" -289492,Flatscreen TV,2,300,11/22/19 14:41,"750 Sunset St, San Francisco, CA 94016" -289493,AAA Batteries (4-pack),1,2.99,11/28/19 13:47,"667 Lake St, San Francisco, CA 94016" -289494,ThinkPad Laptop,1,999.99,11/28/19 10:00,"530 Hill St, Austin, TX 73301" -289495,Flatscreen TV,1,300,11/18/19 11:07,"8 Maple St, Los Angeles, CA 90001" -289496,Google Phone,1,600,11/14/19 19:15,"886 South St, San Francisco, CA 94016" -289497,Apple Airpods Headphones,1,150,11/15/19 20:01,"454 Main St, Los Angeles, CA 90001" -289498,AA Batteries (4-pack),1,3.84,11/23/19 10:06,"570 Meadow St, Seattle, WA 98101" -289499,Wired Headphones,1,11.99,11/07/19 14:14,"519 Hickory St, New York City, NY 10001" -289500,Wired Headphones,1,11.99,11/29/19 20:30,"943 Washington St, Austin, TX 73301" -289501,Google Phone,1,600,11/09/19 15:54,"960 Madison St, San Francisco, CA 94016" -289501,USB-C Charging Cable,1,11.95,11/09/19 15:54,"960 Madison St, San Francisco, CA 94016" -289502,AA Batteries (4-pack),3,3.84,11/06/19 17:23,"738 Pine St, Atlanta, GA 30301" -289503,Macbook Pro Laptop,1,1700,11/27/19 15:14,"735 Forest St, Boston, MA 02215" -289504,USB-C Charging Cable,1,11.95,11/22/19 13:29,"596 10th St, Boston, MA 02215" -289505,27in 4K Gaming Monitor,1,389.99,11/03/19 14:21,"567 Johnson St, New York City, NY 10001" -289506,Bose SoundSport Headphones,1,99.99,11/05/19 11:35,"818 Lincoln St, Boston, MA 02215" -289507,Bose SoundSport Headphones,1,99.99,11/19/19 17:48,"930 Hill St, Portland, OR 97035" -289508,Apple Airpods Headphones,1,150,11/25/19 23:08,"341 1st St, San Francisco, CA 94016" -289509,AA Batteries (4-pack),2,3.84,11/26/19 17:47,"185 Main St, San Francisco, CA 94016" -289510,Lightning Charging Cable,1,14.95,11/27/19 08:41,"195 Pine St, Atlanta, GA 30301" -289511,Apple Airpods Headphones,1,150,11/13/19 18:43,"348 Cherry St, San Francisco, CA 94016" -289512,34in Ultrawide Monitor,1,379.99,11/08/19 07:39,"416 1st St, San Francisco, CA 94016" -289513,USB-C Charging Cable,1,11.95,11/02/19 12:46,"634 West St, Boston, MA 02215" -289514,Lightning Charging Cable,1,14.95,11/03/19 19:46,"216 Church St, San Francisco, CA 94016" -289514,AA Batteries (4-pack),1,3.84,11/03/19 19:46,"216 Church St, San Francisco, CA 94016" -289515,Google Phone,1,600,11/08/19 08:44,"334 Sunset St, New York City, NY 10001" -289516,Wired Headphones,2,11.99,11/19/19 16:59,"308 Elm St, New York City, NY 10001" -289517,Google Phone,1,600,11/14/19 22:12,"229 Spruce St, Boston, MA 02215" -289518,Apple Airpods Headphones,1,150,11/13/19 14:09,"566 Jackson St, San Francisco, CA 94016" -289519,ThinkPad Laptop,1,999.99,11/07/19 19:27,"643 Church St, Los Angeles, CA 90001" -289519,iPhone,1,700,11/07/19 19:27,"643 Church St, Los Angeles, CA 90001" -289520,USB-C Charging Cable,1,11.95,11/17/19 22:28,"753 Dogwood St, New York City, NY 10001" -289521,Google Phone,1,600,11/13/19 09:45,"99 7th St, Boston, MA 02215" -289522,34in Ultrawide Monitor,1,379.99,11/21/19 19:26,"113 2nd St, San Francisco, CA 94016" -289523,USB-C Charging Cable,1,11.95,11/08/19 19:08,"241 Lincoln St, San Francisco, CA 94016" -289524,iPhone,1,700,11/15/19 23:03,"132 Highland St, Portland, ME 04101" -289525,AAA Batteries (4-pack),3,2.99,11/23/19 21:56,"801 Ridge St, Boston, MA 02215" -289526,AAA Batteries (4-pack),2,2.99,11/12/19 18:52,"640 Ridge St, Seattle, WA 98101" -289527,AAA Batteries (4-pack),1,2.99,11/04/19 09:22,"839 Chestnut St, Seattle, WA 98101" -289528,Google Phone,1,600,11/25/19 09:32,"930 12th St, New York City, NY 10001" -289528,Wired Headphones,1,11.99,11/25/19 09:32,"930 12th St, New York City, NY 10001" -289529,AA Batteries (4-pack),2,3.84,11/19/19 15:53,"919 Ridge St, San Francisco, CA 94016" -289530,Wired Headphones,1,11.99,11/21/19 22:28,"229 River St, New York City, NY 10001" -289531,34in Ultrawide Monitor,1,379.99,11/26/19 22:52,"964 River St, San Francisco, CA 94016" -289532,iPhone,1,700,11/09/19 12:26,"215 Park St, Austin, TX 73301" -289533,Apple Airpods Headphones,1,150,11/08/19 15:53,"168 River St, Seattle, WA 98101" -289534,Apple Airpods Headphones,1,150,11/13/19 19:04,"509 Dogwood St, Los Angeles, CA 90001" -289535,Wired Headphones,1,11.99,11/24/19 22:44,"365 11th St, New York City, NY 10001" -289536,Bose SoundSport Headphones,1,99.99,11/06/19 21:30,"463 14th St, San Francisco, CA 94016" -289537,AA Batteries (4-pack),1,3.84,11/09/19 09:13,"736 Highland St, Atlanta, GA 30301" -289538,USB-C Charging Cable,1,11.95,11/06/19 17:57,"843 12th St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -289539,Wired Headphones,1,11.99,11/07/19 15:26,"341 6th St, Seattle, WA 98101" -289540,USB-C Charging Cable,1,11.95,11/06/19 19:57,"89 10th St, Boston, MA 02215" -289541,AA Batteries (4-pack),1,3.84,11/12/19 13:44,"108 4th St, Los Angeles, CA 90001" -289542,27in 4K Gaming Monitor,1,389.99,11/21/19 10:10,"395 6th St, Los Angeles, CA 90001" -289543,Apple Airpods Headphones,1,150,11/03/19 12:32,"759 North St, San Francisco, CA 94016" -289544,AAA Batteries (4-pack),3,2.99,11/02/19 11:42,"170 12th St, San Francisco, CA 94016" -289545,Lightning Charging Cable,1,14.95,11/03/19 12:17,"355 Hill St, San Francisco, CA 94016" -289546,ThinkPad Laptop,1,999.99,11/08/19 19:37,"603 Lincoln St, Atlanta, GA 30301" -289547,Apple Airpods Headphones,1,150,11/06/19 23:47,"627 Highland St, Dallas, TX 75001" -289548,Macbook Pro Laptop,1,1700,11/13/19 17:23,"266 10th St, Boston, MA 02215" -289549,Lightning Charging Cable,1,14.95,11/26/19 12:26,"998 Main St, Seattle, WA 98101" -289550,USB-C Charging Cable,1,11.95,11/13/19 13:18,"634 Jackson St, Atlanta, GA 30301" -289551,Wired Headphones,1,11.99,11/27/19 17:33,"626 13th St, Boston, MA 02215" -289552,Macbook Pro Laptop,1,1700,11/18/19 17:46,"317 Wilson St, Austin, TX 73301" -289553,AAA Batteries (4-pack),5,2.99,11/18/19 14:52,"914 Maple St, Los Angeles, CA 90001" -289554,AAA Batteries (4-pack),1,2.99,11/14/19 13:26,"437 North St, Dallas, TX 75001" -289555,AAA Batteries (4-pack),1,2.99,11/22/19 17:24,"395 5th St, San Francisco, CA 94016" -289556,AA Batteries (4-pack),1,3.84,11/27/19 14:01,"854 Church St, New York City, NY 10001" -289557,Bose SoundSport Headphones,1,99.99,11/20/19 11:09,"569 Jackson St, San Francisco, CA 94016" -289558,20in Monitor,1,109.99,11/18/19 12:35,"971 Wilson St, Los Angeles, CA 90001" -289559,Wired Headphones,1,11.99,11/23/19 21:36,"184 Willow St, Seattle, WA 98101" -289560,AAA Batteries (4-pack),1,2.99,11/01/19 12:00,"969 Main St, Seattle, WA 98101" -289561,Bose SoundSport Headphones,1,99.99,11/16/19 12:23,"52 Pine St, Los Angeles, CA 90001" -289562,Wired Headphones,1,11.99,11/09/19 20:32,"705 14th St, Atlanta, GA 30301" -289563,27in FHD Monitor,1,149.99,11/05/19 15:09,"877 Dogwood St, Los Angeles, CA 90001" -289564,AAA Batteries (4-pack),1,2.99,11/29/19 15:45,"277 Meadow St, Los Angeles, CA 90001" -289565,AA Batteries (4-pack),2,3.84,11/01/19 12:01,"392 Cedar St, Dallas, TX 75001" -289566,Apple Airpods Headphones,1,150,11/26/19 08:18,"241 Church St, San Francisco, CA 94016" -289567,iPhone,1,700,11/23/19 17:56,"557 Forest St, San Francisco, CA 94016" -289568,AA Batteries (4-pack),1,3.84,11/24/19 19:13,"911 Willow St, San Francisco, CA 94016" -289569,Apple Airpods Headphones,1,150,11/10/19 11:19,"984 12th St, Portland, ME 04101" -289570,Lightning Charging Cable,1,14.95,11/27/19 12:07,"685 Lincoln St, New York City, NY 10001" -289571,Macbook Pro Laptop,1,1700,11/11/19 19:06,"838 12th St, San Francisco, CA 94016" -289572,27in FHD Monitor,1,149.99,11/16/19 20:40,"19 Jefferson St, Los Angeles, CA 90001" -289573,AA Batteries (4-pack),1,3.84,11/05/19 17:31,"882 Pine St, Dallas, TX 75001" -289574,AA Batteries (4-pack),1,3.84,11/20/19 14:01,"655 Chestnut St, San Francisco, CA 94016" -,,,,, -289575,USB-C Charging Cable,1,11.95,11/07/19 10:38,"257 10th St, Atlanta, GA 30301" -289576,ThinkPad Laptop,1,999.99,11/17/19 14:06,"809 9th St, San Francisco, CA 94016" -289577,Apple Airpods Headphones,1,150,11/20/19 01:34,"600 Highland St, Los Angeles, CA 90001" -289578,Lightning Charging Cable,1,14.95,11/11/19 08:02,"401 Chestnut St, Los Angeles, CA 90001" -289579,AAA Batteries (4-pack),1,2.99,11/09/19 19:10,"491 12th St, Atlanta, GA 30301" -289580,27in FHD Monitor,1,149.99,11/26/19 16:55,"510 Sunset St, San Francisco, CA 94016" -289581,USB-C Charging Cable,1,11.95,11/17/19 17:00,"75 West St, Boston, MA 02215" -289582,Wired Headphones,1,11.99,11/19/19 18:25,"354 2nd St, San Francisco, CA 94016" -289583,Macbook Pro Laptop,1,1700,11/09/19 11:44,"382 14th St, Dallas, TX 75001" -289584,Apple Airpods Headphones,1,150,11/02/19 15:17,"996 5th St, Portland, OR 97035" -289585,AAA Batteries (4-pack),1,2.99,11/07/19 15:43,"866 Willow St, New York City, NY 10001" -289586,AA Batteries (4-pack),2,3.84,11/11/19 15:11,"926 South St, Boston, MA 02215" -289587,AAA Batteries (4-pack),1,2.99,11/06/19 10:45,"9 2nd St, Atlanta, GA 30301" -289588,Lightning Charging Cable,1,14.95,11/25/19 23:57,"457 12th St, New York City, NY 10001" -289589,Wired Headphones,2,11.99,11/09/19 10:11,"152 Forest St, New York City, NY 10001" -289590,Lightning Charging Cable,1,14.95,11/07/19 00:24,"439 5th St, Los Angeles, CA 90001" -289591,Apple Airpods Headphones,1,150,11/28/19 19:44,"904 River St, Los Angeles, CA 90001" -289592,AAA Batteries (4-pack),2,2.99,11/10/19 09:46,"772 Sunset St, San Francisco, CA 94016" -289593,Lightning Charging Cable,1,14.95,11/28/19 23:29,"255 Highland St, San Francisco, CA 94016" -289594,Bose SoundSport Headphones,1,99.99,11/22/19 09:09,"910 14th St, Austin, TX 73301" -289595,AAA Batteries (4-pack),1,2.99,11/07/19 09:34,"334 Church St, New York City, NY 10001" -289596,27in FHD Monitor,1,149.99,11/09/19 20:00,"854 8th St, Austin, TX 73301" -289597,Bose SoundSport Headphones,1,99.99,11/11/19 01:50,"534 Center St, Atlanta, GA 30301" -289598,Bose SoundSport Headphones,1,99.99,11/17/19 10:44,"826 Washington St, Los Angeles, CA 90001" -289599,Apple Airpods Headphones,1,150,11/29/19 13:54,"306 Chestnut St, Portland, OR 97035" -289599,AA Batteries (4-pack),3,3.84,11/29/19 13:54,"306 Chestnut St, Portland, OR 97035" -289600,AA Batteries (4-pack),2,3.84,11/14/19 21:24,"707 Forest St, New York City, NY 10001" -289601,AA Batteries (4-pack),2,3.84,11/28/19 02:08,"563 13th St, Los Angeles, CA 90001" -289602,27in 4K Gaming Monitor,1,389.99,11/01/19 22:21,"872 Lakeview St, Portland, ME 04101" -289603,Lightning Charging Cable,1,14.95,11/04/19 20:34,"958 10th St, San Francisco, CA 94016" -289604,AAA Batteries (4-pack),1,2.99,11/09/19 09:29,"215 7th St, San Francisco, CA 94016" -289605,20in Monitor,1,109.99,11/24/19 15:18,"525 Wilson St, Atlanta, GA 30301" -289606,27in 4K Gaming Monitor,1,389.99,12/01/19 00:26,"722 Adams St, Los Angeles, CA 90001" -289607,AA Batteries (4-pack),1,3.84,11/30/19 20:50,"110 North St, San Francisco, CA 94016" -289608,LG Dryer,1,600.0,11/19/19 16:11,"229 Willow St, Dallas, TX 75001" -289609,Apple Airpods Headphones,1,150,11/11/19 00:57,"194 Lake St, Portland, OR 97035" -289610,iPhone,1,700,11/23/19 17:51,"88 Cedar St, San Francisco, CA 94016" -289611,27in 4K Gaming Monitor,1,389.99,11/01/19 07:36,"250 Chestnut St, San Francisco, CA 94016" -289612,Apple Airpods Headphones,1,150,11/22/19 12:35,"725 10th St, Dallas, TX 75001" -289613,Wired Headphones,1,11.99,11/08/19 12:20,"55 Washington St, San Francisco, CA 94016" -289614,Apple Airpods Headphones,1,150,11/24/19 15:26,"888 Adams St, Boston, MA 02215" -289615,AAA Batteries (4-pack),2,2.99,11/29/19 20:44,"816 Willow St, Austin, TX 73301" -289616,Apple Airpods Headphones,1,150,11/30/19 23:10,"353 West St, New York City, NY 10001" -289617,Wired Headphones,1,11.99,11/11/19 19:38,"736 Willow St, Dallas, TX 75001" -289618,USB-C Charging Cable,1,11.95,11/17/19 21:03,"328 Elm St, Boston, MA 02215" -289619,Wired Headphones,1,11.99,11/25/19 10:20,"341 5th St, Seattle, WA 98101" -289620,AA Batteries (4-pack),4,3.84,11/10/19 17:04,"514 Hill St, San Francisco, CA 94016" -289621,AAA Batteries (4-pack),1,2.99,11/07/19 17:43,"952 Main St, Seattle, WA 98101" -289622,USB-C Charging Cable,1,11.95,11/08/19 11:22,"177 Washington St, Seattle, WA 98101" -289623,Lightning Charging Cable,1,14.95,11/16/19 20:09,"328 Meadow St, New York City, NY 10001" -289624,27in FHD Monitor,1,149.99,11/17/19 18:39,"942 Lakeview St, Dallas, TX 75001" -289625,27in 4K Gaming Monitor,1,389.99,11/08/19 17:19,"264 6th St, San Francisco, CA 94016" -289626,20in Monitor,1,109.99,11/16/19 12:50,"436 Center St, Seattle, WA 98101" -289627,AAA Batteries (4-pack),1,2.99,11/26/19 05:37,"436 1st St, New York City, NY 10001" -289628,USB-C Charging Cable,2,11.95,11/26/19 13:09,"901 Cherry St, New York City, NY 10001" -289629,USB-C Charging Cable,1,11.95,11/21/19 22:08,"80 Meadow St, Portland, OR 97035" -289630,Vareebadd Phone,1,400,11/23/19 14:33,"855 Johnson St, Atlanta, GA 30301" -289631,Google Phone,1,600,11/14/19 13:14,"374 North St, Seattle, WA 98101" -289631,USB-C Charging Cable,1,11.95,11/14/19 13:14,"374 North St, Seattle, WA 98101" -289632,Wired Headphones,3,11.99,11/08/19 16:46,"770 Jefferson St, San Francisco, CA 94016" -289633,Lightning Charging Cable,1,14.95,11/23/19 22:49,"765 Madison St, Portland, ME 04101" -289634,20in Monitor,1,109.99,11/24/19 21:52,"958 9th St, Seattle, WA 98101" -289635,Wired Headphones,1,11.99,11/19/19 14:18,"867 Madison St, Dallas, TX 75001" -289636,USB-C Charging Cable,1,11.95,11/21/19 20:01,"510 Johnson St, Portland, OR 97035" -289637,Lightning Charging Cable,1,14.95,11/05/19 16:05,"865 Washington St, Boston, MA 02215" -289638,ThinkPad Laptop,1,999.99,11/19/19 19:54,"457 Pine St, Austin, TX 73301" -289639,AA Batteries (4-pack),1,3.84,11/15/19 13:38,"937 Adams St, San Francisco, CA 94016" -289640,Bose SoundSport Headphones,1,99.99,11/13/19 13:01,"128 Park St, Atlanta, GA 30301" -289641,Wired Headphones,1,11.99,11/12/19 15:02,"273 6th St, Seattle, WA 98101" -289642,AAA Batteries (4-pack),2,2.99,11/30/19 17:30,"965 Jackson St, New York City, NY 10001" -289643,Wired Headphones,1,11.99,11/06/19 15:48,"61 Lakeview St, San Francisco, CA 94016" -289644,Wired Headphones,1,11.99,11/13/19 14:57,"58 Chestnut St, Seattle, WA 98101" -289645,Vareebadd Phone,1,400,11/20/19 09:37,"677 River St, Atlanta, GA 30301" -289646,Apple Airpods Headphones,1,150,11/10/19 00:25,"176 Madison St, Los Angeles, CA 90001" -289647,27in 4K Gaming Monitor,1,389.99,11/01/19 11:23,"587 Johnson St, Atlanta, GA 30301" -289648,USB-C Charging Cable,1,11.95,11/29/19 14:17,"828 South St, San Francisco, CA 94016" -289649,USB-C Charging Cable,1,11.95,11/01/19 20:15,"412 1st St, New York City, NY 10001" -289650,Flatscreen TV,1,300,11/14/19 14:05,"170 Church St, Portland, ME 04101" -289651,AAA Batteries (4-pack),1,2.99,11/19/19 13:31,"710 Maple St, San Francisco, CA 94016" -289652,Wired Headphones,1,11.99,11/10/19 15:52,"680 Park St, Austin, TX 73301" -289653,iPhone,1,700,11/07/19 11:11,"671 Ridge St, San Francisco, CA 94016" -289654,34in Ultrawide Monitor,1,379.99,11/09/19 15:37,"387 Maple St, Atlanta, GA 30301" -289655,USB-C Charging Cable,1,11.95,11/08/19 15:32,"924 Spruce St, Los Angeles, CA 90001" -289656,Google Phone,1,600,11/03/19 20:36,"340 Willow St, New York City, NY 10001" -289657,Wired Headphones,1,11.99,11/14/19 17:01,"508 Church St, New York City, NY 10001" -289658,USB-C Charging Cable,1,11.95,11/09/19 12:34,"130 Chestnut St, San Francisco, CA 94016" -289659,27in FHD Monitor,1,149.99,11/28/19 10:45,"507 Cherry St, Seattle, WA 98101" -289660,Macbook Pro Laptop,1,1700,11/28/19 19:26,"721 Willow St, San Francisco, CA 94016" -289661,AAA Batteries (4-pack),1,2.99,11/25/19 13:56,"118 Highland St, New York City, NY 10001" -289662,AAA Batteries (4-pack),1,2.99,11/14/19 08:29,"789 Willow St, San Francisco, CA 94016" -289662,AA Batteries (4-pack),1,3.84,11/14/19 08:29,"789 Willow St, San Francisco, CA 94016" -289663,Bose SoundSport Headphones,1,99.99,11/01/19 17:30,"410 Church St, New York City, NY 10001" -289664,Apple Airpods Headphones,1,150,11/23/19 19:19,"978 Park St, San Francisco, CA 94016" -289665,Macbook Pro Laptop,1,1700,11/08/19 22:25,"356 Center St, Boston, MA 02215" -289666,27in FHD Monitor,1,149.99,11/21/19 10:41,"712 Lincoln St, Los Angeles, CA 90001" -289667,iPhone,1,700,11/21/19 13:20,"46 Maple St, Seattle, WA 98101" -289668,Apple Airpods Headphones,1,150,11/24/19 20:19,"465 7th St, San Francisco, CA 94016" -289669,AA Batteries (4-pack),3,3.84,11/14/19 18:34,"427 12th St, Boston, MA 02215" -289670,USB-C Charging Cable,1,11.95,11/12/19 20:30,"467 Willow St, Los Angeles, CA 90001" -289671,Lightning Charging Cable,1,14.95,11/06/19 17:13,"809 Hill St, San Francisco, CA 94016" -289672,AAA Batteries (4-pack),2,2.99,11/27/19 11:34,"126 Main St, Atlanta, GA 30301" -289673,AAA Batteries (4-pack),1,2.99,11/11/19 22:11,"628 6th St, New York City, NY 10001" -289674,Lightning Charging Cable,1,14.95,11/03/19 16:33,"207 Washington St, Boston, MA 02215" -289675,Lightning Charging Cable,1,14.95,11/04/19 17:29,"833 Cedar St, Dallas, TX 75001" -289676,AAA Batteries (4-pack),1,2.99,11/06/19 11:52,"518 Meadow St, Boston, MA 02215" -289677,AAA Batteries (4-pack),2,2.99,11/26/19 22:07,"223 14th St, Seattle, WA 98101" -289678,USB-C Charging Cable,1,11.95,11/19/19 10:43,"581 Wilson St, New York City, NY 10001" -289679,Macbook Pro Laptop,1,1700,11/28/19 13:54,"714 Meadow St, San Francisco, CA 94016" -289680,Bose SoundSport Headphones,1,99.99,11/18/19 13:59,"619 12th St, New York City, NY 10001" -289681,Macbook Pro Laptop,1,1700,11/09/19 22:41,"447 South St, New York City, NY 10001" -289682,34in Ultrawide Monitor,1,379.99,11/12/19 18:33,"382 Lakeview St, Boston, MA 02215" -289683,27in FHD Monitor,1,149.99,11/30/19 16:47,"3 South St, Los Angeles, CA 90001" -289684,34in Ultrawide Monitor,1,379.99,11/27/19 22:24,"521 2nd St, Boston, MA 02215" -289685,20in Monitor,1,109.99,11/24/19 01:05,"316 Dogwood St, Atlanta, GA 30301" -289686,USB-C Charging Cable,1,11.95,11/28/19 18:13,"179 Madison St, San Francisco, CA 94016" -289687,27in FHD Monitor,1,149.99,11/27/19 13:28,"438 Madison St, San Francisco, CA 94016" -289688,Lightning Charging Cable,1,14.95,11/21/19 15:34,"513 Jefferson St, Austin, TX 73301" -289689,Bose SoundSport Headphones,1,99.99,11/18/19 16:08,"17 Willow St, Boston, MA 02215" -289690,Wired Headphones,1,11.99,11/23/19 21:24,"181 Hill St, Dallas, TX 75001" -289691,Lightning Charging Cable,1,14.95,11/14/19 04:44,"250 Adams St, Boston, MA 02215" -289692,AAA Batteries (4-pack),3,2.99,11/05/19 15:48,"474 8th St, Portland, ME 04101" -289693,iPhone,1,700,11/27/19 12:46,"267 10th St, San Francisco, CA 94016" -289694,USB-C Charging Cable,1,11.95,11/11/19 19:09,"742 2nd St, Dallas, TX 75001" -289695,Bose SoundSport Headphones,1,99.99,11/20/19 23:26,"879 2nd St, Seattle, WA 98101" -289696,USB-C Charging Cable,1,11.95,11/20/19 12:15,"893 Church St, Austin, TX 73301" -289697,Wired Headphones,1,11.99,11/21/19 15:47,"620 5th St, Austin, TX 73301" -289698,Lightning Charging Cable,1,14.95,11/08/19 20:28,"716 Hill St, Los Angeles, CA 90001" -289699,AAA Batteries (4-pack),2,2.99,11/15/19 19:24,"185 6th St, Portland, OR 97035" -289700,Flatscreen TV,1,300,11/04/19 13:56,"801 Cedar St, Portland, OR 97035" -289701,Lightning Charging Cable,1,14.95,11/03/19 22:17,"180 Chestnut St, Austin, TX 73301" -289702,Apple Airpods Headphones,1,150,11/23/19 17:01,"119 Pine St, Boston, MA 02215" -289703,AA Batteries (4-pack),1,3.84,11/14/19 19:21,"298 Washington St, New York City, NY 10001" -289703,Lightning Charging Cable,1,14.95,11/14/19 19:21,"298 Washington St, New York City, NY 10001" -289704,Wired Headphones,1,11.99,11/07/19 19:43,"509 Johnson St, San Francisco, CA 94016" -289705,Flatscreen TV,1,300,11/06/19 07:43,"163 Park St, New York City, NY 10001" -289706,Lightning Charging Cable,1,14.95,11/08/19 16:25,"319 Hickory St, New York City, NY 10001" -289707,Apple Airpods Headphones,1,150,11/21/19 22:15,"93 Willow St, Austin, TX 73301" -289708,AAA Batteries (4-pack),1,2.99,11/29/19 21:49,"274 12th St, Los Angeles, CA 90001" -289709,ThinkPad Laptop,1,999.99,11/09/19 12:16,"634 Pine St, Los Angeles, CA 90001" -289710,Wired Headphones,1,11.99,11/23/19 09:24,"779 14th St, San Francisco, CA 94016" -289711,AAA Batteries (4-pack),1,2.99,11/13/19 20:34,"67 8th St, San Francisco, CA 94016" -289712,USB-C Charging Cable,1,11.95,11/11/19 14:08,"512 Washington St, Portland, OR 97035" -289713,AA Batteries (4-pack),1,3.84,11/03/19 15:41,"859 Chestnut St, Los Angeles, CA 90001" -289714,Macbook Pro Laptop,1,1700,11/26/19 05:44,"405 5th St, New York City, NY 10001" -289715,iPhone,1,700,11/26/19 15:48,"725 Washington St, Los Angeles, CA 90001" -289715,Lightning Charging Cable,1,14.95,11/26/19 15:48,"725 Washington St, Los Angeles, CA 90001" -289716,Bose SoundSport Headphones,1,99.99,11/02/19 16:43,"953 Wilson St, Austin, TX 73301" -289717,AAA Batteries (4-pack),7,2.99,11/06/19 03:12,"131 Chestnut St, Atlanta, GA 30301" -289718,Wired Headphones,1,11.99,11/24/19 20:07,"298 12th St, Austin, TX 73301" -289719,Macbook Pro Laptop,1,1700,11/05/19 23:00,"461 Cedar St, Atlanta, GA 30301" -289720,Bose SoundSport Headphones,1,99.99,11/12/19 12:18,"587 Walnut St, New York City, NY 10001" -289721,Wired Headphones,1,11.99,11/13/19 13:44,"39 Cedar St, Los Angeles, CA 90001" -289722,Apple Airpods Headphones,1,150,11/30/19 17:49,"436 Highland St, Los Angeles, CA 90001" -289723,AAA Batteries (4-pack),1,2.99,11/08/19 14:40,"724 14th St, Boston, MA 02215" -289724,27in 4K Gaming Monitor,1,389.99,11/17/19 13:26,"758 6th St, San Francisco, CA 94016" -289725,AA Batteries (4-pack),2,3.84,11/12/19 00:46,"953 Wilson St, Los Angeles, CA 90001" -289726,Flatscreen TV,1,300,11/16/19 23:38,"394 Elm St, San Francisco, CA 94016" -289727,Lightning Charging Cable,1,14.95,11/18/19 15:27,"273 Spruce St, Atlanta, GA 30301" -289728,Lightning Charging Cable,1,14.95,11/04/19 21:37,"181 Jefferson St, Dallas, TX 75001" -289729,Lightning Charging Cable,1,14.95,11/17/19 18:25,"786 Lake St, Seattle, WA 98101" -289730,20in Monitor,1,109.99,11/30/19 14:59,"652 West St, New York City, NY 10001" -289731,AA Batteries (4-pack),2,3.84,11/06/19 09:51,"387 Johnson St, Boston, MA 02215" -289732,Apple Airpods Headphones,1,150,11/29/19 15:33,"866 5th St, Los Angeles, CA 90001" -289733,AAA Batteries (4-pack),1,2.99,11/21/19 20:38,"973 Jackson St, New York City, NY 10001" -289734,27in FHD Monitor,1,149.99,11/28/19 19:01,"116 Wilson St, Los Angeles, CA 90001" -289735,AA Batteries (4-pack),2,3.84,11/18/19 09:01,"908 Jefferson St, Austin, TX 73301" -289736,USB-C Charging Cable,1,11.95,11/11/19 10:34,"730 Chestnut St, Portland, OR 97035" -289737,Lightning Charging Cable,1,14.95,11/07/19 12:58,"608 South St, San Francisco, CA 94016" -289738,USB-C Charging Cable,1,11.95,11/26/19 13:32,"966 Cedar St, New York City, NY 10001" -289739,Macbook Pro Laptop,1,1700,11/19/19 19:01,"332 5th St, Boston, MA 02215" -289740,27in FHD Monitor,1,149.99,11/16/19 23:03,"917 14th St, Los Angeles, CA 90001" -289741,iPhone,1,700,11/01/19 18:57,"757 1st St, Boston, MA 02215" -289741,Wired Headphones,1,11.99,11/01/19 18:57,"757 1st St, Boston, MA 02215" -289742,Bose SoundSport Headphones,1,99.99,11/29/19 07:45,"861 Dogwood St, Boston, MA 02215" -289743,USB-C Charging Cable,2,11.95,11/13/19 12:02,"489 Hill St, Boston, MA 02215" -289744,Apple Airpods Headphones,1,150,11/02/19 16:47,"354 Center St, New York City, NY 10001" -289745,AAA Batteries (4-pack),3,2.99,11/12/19 20:45,"950 Walnut St, New York City, NY 10001" -289746,27in FHD Monitor,1,149.99,11/03/19 21:23,"501 Elm St, New York City, NY 10001" -289747,Lightning Charging Cable,1,14.95,11/23/19 22:10,"804 Jefferson St, Seattle, WA 98101" -289748,AAA Batteries (4-pack),1,2.99,11/07/19 19:25,"882 2nd St, Los Angeles, CA 90001" -289749,iPhone,1,700,11/22/19 10:00,"892 Jackson St, Dallas, TX 75001" -289750,AA Batteries (4-pack),1,3.84,11/20/19 15:07,"545 8th St, San Francisco, CA 94016" -289751,Flatscreen TV,1,300,11/21/19 21:39,"924 Madison St, Boston, MA 02215" -289752,Wired Headphones,1,11.99,11/22/19 17:42,"40 9th St, New York City, NY 10001" -289753,Google Phone,1,600,11/15/19 09:20,"499 Pine St, Dallas, TX 75001" -289754,Flatscreen TV,1,300,11/30/19 22:21,"964 Hill St, Dallas, TX 75001" -289755,AAA Batteries (4-pack),1,2.99,11/13/19 06:10,"872 Willow St, Dallas, TX 75001" -289756,USB-C Charging Cable,1,11.95,11/27/19 17:20,"501 Elm St, Dallas, TX 75001" -289757,Bose SoundSport Headphones,1,99.99,11/20/19 18:05,"943 Center St, San Francisco, CA 94016" -289758,AAA Batteries (4-pack),1,2.99,11/10/19 13:14,"909 Adams St, Los Angeles, CA 90001" -289759,20in Monitor,1,109.99,11/06/19 11:12,"214 2nd St, San Francisco, CA 94016" -289760,Wired Headphones,1,11.99,11/25/19 21:23,"990 Center St, Atlanta, GA 30301" -289761,Lightning Charging Cable,1,14.95,11/07/19 01:34,"507 10th St, Austin, TX 73301" -289762,AAA Batteries (4-pack),2,2.99,11/14/19 17:25,"382 Johnson St, Seattle, WA 98101" -289763,USB-C Charging Cable,1,11.95,11/27/19 08:36,"654 Meadow St, San Francisco, CA 94016" -289764,iPhone,1,700,11/18/19 20:36,"705 South St, New York City, NY 10001" -289765,27in 4K Gaming Monitor,1,389.99,11/01/19 23:56,"786 12th St, Los Angeles, CA 90001" -289766,AAA Batteries (4-pack),1,2.99,11/01/19 19:08,"660 Walnut St, Dallas, TX 75001" -289767,AA Batteries (4-pack),1,3.84,11/29/19 20:58,"787 7th St, Los Angeles, CA 90001" -289768,Wired Headphones,1,11.99,11/18/19 06:46,"124 1st St, Boston, MA 02215" -289769,Wired Headphones,1,11.99,11/08/19 17:04,"708 Elm St, San Francisco, CA 94016" -289770,AA Batteries (4-pack),1,3.84,11/04/19 20:33,"696 Spruce St, San Francisco, CA 94016" -289771,AAA Batteries (4-pack),1,2.99,11/27/19 07:53,"630 Cedar St, New York City, NY 10001" -289772,USB-C Charging Cable,1,11.95,11/30/19 18:28,"887 Wilson St, New York City, NY 10001" -289773,AA Batteries (4-pack),1,3.84,11/09/19 09:14,"835 Spruce St, Dallas, TX 75001" -289774,20in Monitor,1,109.99,11/24/19 11:00,"640 Main St, Boston, MA 02215" -289775,Google Phone,1,600,11/05/19 22:25,"988 Lincoln St, Boston, MA 02215" -289775,USB-C Charging Cable,1,11.95,11/05/19 22:25,"988 Lincoln St, Boston, MA 02215" -289776,20in Monitor,1,109.99,11/22/19 15:16,"758 5th St, Boston, MA 02215" -289777,AAA Batteries (4-pack),3,2.99,11/10/19 12:24,"260 Forest St, New York City, NY 10001" -289778,USB-C Charging Cable,1,11.95,11/25/19 10:58,"420 5th St, Los Angeles, CA 90001" -289779,Google Phone,1,600,11/18/19 23:50,"322 13th St, San Francisco, CA 94016" -289780,AAA Batteries (4-pack),2,2.99,11/20/19 08:16,"371 Adams St, Los Angeles, CA 90001" -289781,Bose SoundSport Headphones,1,99.99,11/16/19 21:37,"330 Chestnut St, New York City, NY 10001" -289782,27in 4K Gaming Monitor,1,389.99,11/28/19 23:12,"32 Elm St, San Francisco, CA 94016" -289783,Wired Headphones,1,11.99,11/13/19 08:07,"432 8th St, Los Angeles, CA 90001" -289784,Bose SoundSport Headphones,1,99.99,11/28/19 18:40,"384 Madison St, Los Angeles, CA 90001" -289785,Lightning Charging Cable,1,14.95,11/03/19 19:34,"702 Main St, San Francisco, CA 94016" -289786,Apple Airpods Headphones,1,150,11/14/19 06:08,"330 Wilson St, Seattle, WA 98101" -289787,Bose SoundSport Headphones,1,99.99,11/13/19 16:03,"215 Madison St, Boston, MA 02215" -289788,AAA Batteries (4-pack),1,2.99,11/05/19 13:39,"658 9th St, Portland, ME 04101" -289789,AA Batteries (4-pack),1,3.84,11/05/19 18:28,"301 Pine St, Dallas, TX 75001" -289790,AAA Batteries (4-pack),1,2.99,11/09/19 17:54,"51 Main St, San Francisco, CA 94016" -289791,Lightning Charging Cable,1,14.95,11/04/19 22:08,"26 Ridge St, Portland, ME 04101" -289792,Macbook Pro Laptop,1,1700,11/26/19 15:25,"768 13th St, Seattle, WA 98101" -289793,Bose SoundSport Headphones,1,99.99,11/05/19 17:37,"183 Spruce St, Los Angeles, CA 90001" -289794,Wired Headphones,1,11.99,11/17/19 17:58,"297 Church St, Seattle, WA 98101" -289795,27in 4K Gaming Monitor,1,389.99,11/30/19 16:25,"105 Highland St, San Francisco, CA 94016" -289796,27in FHD Monitor,1,149.99,11/15/19 17:16,"871 10th St, San Francisco, CA 94016" -289797,USB-C Charging Cable,1,11.95,11/09/19 19:43,"95 Forest St, New York City, NY 10001" -289798,Wired Headphones,1,11.99,11/23/19 12:24,"232 6th St, San Francisco, CA 94016" -289799,Wired Headphones,1,11.99,11/08/19 20:57,"632 Johnson St, New York City, NY 10001" -289800,AA Batteries (4-pack),1,3.84,11/30/19 01:25,"440 Park St, Boston, MA 02215" -289801,Apple Airpods Headphones,1,150,11/17/19 21:20,"139 Hill St, Seattle, WA 98101" -289802,Lightning Charging Cable,1,14.95,11/30/19 02:02,"857 Forest St, San Francisco, CA 94016" -289803,AAA Batteries (4-pack),1,2.99,11/10/19 23:01,"759 Sunset St, Boston, MA 02215" -289804,20in Monitor,1,109.99,11/23/19 14:48,"251 Walnut St, Boston, MA 02215" -289805,Google Phone,1,600,11/20/19 13:53,"895 10th St, Seattle, WA 98101" -289806,AA Batteries (4-pack),1,3.84,11/26/19 13:41,"375 Adams St, San Francisco, CA 94016" -289807,ThinkPad Laptop,1,999.99,11/18/19 21:21,"402 Main St, Seattle, WA 98101" -289808,AAA Batteries (4-pack),1,2.99,11/06/19 23:00,"26 Highland St, San Francisco, CA 94016" -289809,Lightning Charging Cable,1,14.95,11/10/19 10:57,"68 Lincoln St, San Francisco, CA 94016" -289810,USB-C Charging Cable,1,11.95,11/07/19 15:54,"245 Cherry St, Dallas, TX 75001" -289811,Apple Airpods Headphones,1,150,11/25/19 16:52,"408 North St, Portland, OR 97035" -289812,AA Batteries (4-pack),1,3.84,11/27/19 02:10,"263 7th St, San Francisco, CA 94016" -289813,AAA Batteries (4-pack),1,2.99,11/15/19 20:19,"317 Park St, Austin, TX 73301" -289814,ThinkPad Laptop,1,999.99,11/08/19 07:44,"112 Adams St, Los Angeles, CA 90001" -289815,27in FHD Monitor,1,149.99,11/19/19 22:09,"27 Chestnut St, Los Angeles, CA 90001" -289816,Vareebadd Phone,1,400,11/08/19 19:24,"329 Maple St, San Francisco, CA 94016" -289817,Google Phone,1,600,11/25/19 21:54,"903 Cherry St, San Francisco, CA 94016" -289818,34in Ultrawide Monitor,1,379.99,11/26/19 23:29,"871 Willow St, San Francisco, CA 94016" -289819,Lightning Charging Cable,1,14.95,11/07/19 14:09,"364 14th St, Dallas, TX 75001" -289820,AA Batteries (4-pack),1,3.84,11/05/19 19:15,"139 Madison St, New York City, NY 10001" -289821,Apple Airpods Headphones,1,150,11/12/19 09:48,"246 Hill St, New York City, NY 10001" -289822,Apple Airpods Headphones,1,150,11/30/19 23:19,"313 River St, Boston, MA 02215" -289823,Bose SoundSport Headphones,1,99.99,11/22/19 18:33,"537 Dogwood St, San Francisco, CA 94016" -289824,AA Batteries (4-pack),1,3.84,11/27/19 17:30,"960 Hill St, Atlanta, GA 30301" -289825,Macbook Pro Laptop,1,1700,11/02/19 18:25,"91 Church St, Atlanta, GA 30301" -289826,AA Batteries (4-pack),1,3.84,11/29/19 20:24,"338 11th St, Dallas, TX 75001" -289827,AA Batteries (4-pack),5,3.84,11/19/19 12:08,"782 Sunset St, New York City, NY 10001" -289828,Google Phone,1,600,11/18/19 10:38,"849 South St, Portland, OR 97035" -289829,Vareebadd Phone,1,400,11/01/19 18:51,"227 Dogwood St, Dallas, TX 75001" -289830,Flatscreen TV,1,300,11/26/19 21:05,"724 Elm St, Boston, MA 02215" -289831,Wired Headphones,1,11.99,11/26/19 11:23,"399 Church St, Portland, OR 97035" -289832,Google Phone,1,600,11/27/19 11:10,"832 Lake St, Austin, TX 73301" -289832,Wired Headphones,1,11.99,11/27/19 11:10,"832 Lake St, Austin, TX 73301" -289833,Apple Airpods Headphones,1,150,11/18/19 21:43,"682 Meadow St, New York City, NY 10001" -289834,AA Batteries (4-pack),3,3.84,11/06/19 11:47,"927 Jefferson St, New York City, NY 10001" -289835,Wired Headphones,1,11.99,11/23/19 12:41,"23 Church St, Seattle, WA 98101" -289836,iPhone,1,700,11/21/19 20:03,"443 South St, Boston, MA 02215" -289837,AAA Batteries (4-pack),1,2.99,11/07/19 20:48,"442 1st St, Dallas, TX 75001" -289838,Lightning Charging Cable,1,14.95,11/10/19 17:39,"114 Center St, Los Angeles, CA 90001" -289839,Google Phone,1,600,11/16/19 14:39,"11 Lake St, New York City, NY 10001" -289840,AA Batteries (4-pack),1,3.84,11/25/19 10:43,"690 Willow St, Los Angeles, CA 90001" -289841,AA Batteries (4-pack),1,3.84,11/02/19 12:10,"455 Hill St, San Francisco, CA 94016" -289842,27in FHD Monitor,1,149.99,11/12/19 15:58,"186 2nd St, Seattle, WA 98101" -289843,Wired Headphones,1,11.99,11/07/19 19:52,"857 Ridge St, Portland, OR 97035" -289844,Apple Airpods Headphones,1,150,11/01/19 17:55,"170 Lakeview St, Atlanta, GA 30301" -289845,USB-C Charging Cable,1,11.95,11/15/19 23:41,"830 Forest St, Dallas, TX 75001" -289846,27in FHD Monitor,1,149.99,11/09/19 19:58,"259 Lakeview St, San Francisco, CA 94016" -289847,Vareebadd Phone,1,400,11/30/19 19:59,"58 Sunset St, San Francisco, CA 94016" -289847,USB-C Charging Cable,1,11.95,11/30/19 19:59,"58 Sunset St, San Francisco, CA 94016" -289848,34in Ultrawide Monitor,1,379.99,11/26/19 21:55,"459 Dogwood St, Dallas, TX 75001" -289849,Wired Headphones,1,11.99,11/06/19 23:03,"131 Sunset St, Portland, OR 97035" -289850,Macbook Pro Laptop,1,1700,11/28/19 21:33,"344 Willow St, Dallas, TX 75001" -289851,Apple Airpods Headphones,1,150,11/21/19 08:27,"93 North St, San Francisco, CA 94016" -289852,AAA Batteries (4-pack),2,2.99,11/01/19 08:56,"14 Adams St, Atlanta, GA 30301" -289853,Apple Airpods Headphones,1,150,11/16/19 18:51,"768 Walnut St, Dallas, TX 75001" -289854,27in FHD Monitor,1,149.99,11/01/19 13:06,"811 West St, Los Angeles, CA 90001" -289855,Lightning Charging Cable,1,14.95,11/02/19 18:30,"12 North St, San Francisco, CA 94016" -289856,Wired Headphones,1,11.99,11/09/19 21:17,"822 Meadow St, San Francisco, CA 94016" -289857,34in Ultrawide Monitor,1,379.99,11/07/19 12:47,"536 Forest St, New York City, NY 10001" -289858,AA Batteries (4-pack),1,3.84,11/15/19 18:37,"619 Pine St, Boston, MA 02215" -289859,Google Phone,1,600,11/04/19 23:28,"676 Ridge St, New York City, NY 10001" -289860,AAA Batteries (4-pack),1,2.99,11/21/19 13:52,"676 Dogwood St, Los Angeles, CA 90001" -289860,AAA Batteries (4-pack),1,2.99,11/21/19 13:52,"676 Dogwood St, Los Angeles, CA 90001" -289861,AA Batteries (4-pack),1,3.84,11/07/19 10:02,"712 Meadow St, San Francisco, CA 94016" -,,,,, -289862,USB-C Charging Cable,1,11.95,11/03/19 12:28,"336 North St, Los Angeles, CA 90001" -289863,Wired Headphones,1,11.99,11/29/19 00:40,"298 Cherry St, Austin, TX 73301" -289864,Flatscreen TV,1,300,11/17/19 19:30,"661 Forest St, Portland, ME 04101" -289865,AAA Batteries (4-pack),1,2.99,11/12/19 08:40,"914 Dogwood St, New York City, NY 10001" -289866,AA Batteries (4-pack),1,3.84,11/07/19 15:03,"682 Sunset St, San Francisco, CA 94016" -289867,Apple Airpods Headphones,1,150,11/12/19 16:25,"502 7th St, Los Angeles, CA 90001" -289868,27in 4K Gaming Monitor,1,389.99,11/19/19 11:58,"986 2nd St, Seattle, WA 98101" -289869,AA Batteries (4-pack),1,3.84,11/30/19 20:18,"191 8th St, Los Angeles, CA 90001" -289870,USB-C Charging Cable,1,11.95,11/14/19 23:14,"7 Main St, Boston, MA 02215" -289871,iPhone,1,700,11/22/19 13:30,"11 Hill St, San Francisco, CA 94016" -289871,Apple Airpods Headphones,1,150,11/22/19 13:30,"11 Hill St, San Francisco, CA 94016" -289872,Lightning Charging Cable,1,14.95,11/03/19 00:01,"834 Jefferson St, Portland, OR 97035" -289873,AA Batteries (4-pack),1,3.84,11/26/19 01:03,"449 Madison St, New York City, NY 10001" -289874,Flatscreen TV,1,300,11/09/19 17:43,"487 Madison St, Boston, MA 02215" -289875,USB-C Charging Cable,1,11.95,11/02/19 11:26,"99 South St, New York City, NY 10001" -289876,Flatscreen TV,1,300,11/11/19 11:49,"885 Church St, San Francisco, CA 94016" -289877,Lightning Charging Cable,1,14.95,11/28/19 10:00,"323 Willow St, Atlanta, GA 30301" -289878,USB-C Charging Cable,1,11.95,11/29/19 17:25,"966 Dogwood St, Portland, OR 97035" -289879,AAA Batteries (4-pack),1,2.99,11/03/19 19:32,"378 Wilson St, Boston, MA 02215" -289880,Wired Headphones,1,11.99,11/15/19 22:08,"105 Johnson St, Boston, MA 02215" -289881,Apple Airpods Headphones,1,150,11/26/19 00:14,"381 Center St, San Francisco, CA 94016" -289882,Lightning Charging Cable,1,14.95,11/03/19 12:17,"884 Pine St, Seattle, WA 98101" -289883,Lightning Charging Cable,1,14.95,11/18/19 14:37,"963 Walnut St, Boston, MA 02215" -289884,Lightning Charging Cable,1,14.95,11/19/19 17:18,"175 12th St, Los Angeles, CA 90001" -289885,Macbook Pro Laptop,1,1700,11/11/19 06:01,"113 Walnut St, Los Angeles, CA 90001" -289886,Flatscreen TV,1,300,11/09/19 14:38,"896 2nd St, Seattle, WA 98101" -289887,Lightning Charging Cable,1,14.95,11/16/19 20:16,"445 Lake St, New York City, NY 10001" -289888,iPhone,1,700,11/25/19 16:52,"481 Johnson St, Austin, TX 73301" -289889,AA Batteries (4-pack),1,3.84,11/06/19 06:47,"60 1st St, New York City, NY 10001" -289890,AA Batteries (4-pack),1,3.84,11/08/19 10:51,"692 Dogwood St, Austin, TX 73301" -289891,27in 4K Gaming Monitor,1,389.99,11/04/19 09:38,"50 Madison St, Seattle, WA 98101" -289892,AA Batteries (4-pack),1,3.84,11/22/19 16:53,"964 13th St, San Francisco, CA 94016" -289893,USB-C Charging Cable,1,11.95,11/26/19 12:21,"493 14th St, Atlanta, GA 30301" -289894,Lightning Charging Cable,2,14.95,11/20/19 17:10,"872 Jackson St, Seattle, WA 98101" -,,,,, -289895,USB-C Charging Cable,1,11.95,11/16/19 13:19,"102 4th St, Los Angeles, CA 90001" -289896,AA Batteries (4-pack),1,3.84,11/29/19 14:25,"13 14th St, Atlanta, GA 30301" -289897,Lightning Charging Cable,1,14.95,11/03/19 19:57,"726 13th St, San Francisco, CA 94016" -289898,34in Ultrawide Monitor,1,379.99,11/09/19 07:51,"496 Hickory St, San Francisco, CA 94016" -289899,Google Phone,1,600,11/02/19 14:18,"304 9th St, Los Angeles, CA 90001" -289900,Vareebadd Phone,1,400,11/10/19 10:09,"863 Meadow St, Dallas, TX 75001" -289900,USB-C Charging Cable,1,11.95,11/10/19 10:09,"863 Meadow St, Dallas, TX 75001" -289901,Apple Airpods Headphones,1,150,11/29/19 21:23,"878 Elm St, San Francisco, CA 94016" -289902,ThinkPad Laptop,1,999.99,11/17/19 20:27,"582 Jefferson St, Los Angeles, CA 90001" -289903,Apple Airpods Headphones,1,150,11/14/19 20:19,"137 Walnut St, Austin, TX 73301" -289904,USB-C Charging Cable,1,11.95,11/10/19 13:03,"922 Church St, Boston, MA 02215" -289905,Lightning Charging Cable,1,14.95,11/06/19 14:20,"450 South St, Los Angeles, CA 90001" -289906,27in FHD Monitor,1,149.99,11/02/19 16:21,"273 7th St, San Francisco, CA 94016" -289907,ThinkPad Laptop,1,999.99,11/04/19 12:14,"816 Pine St, San Francisco, CA 94016" -289908,USB-C Charging Cable,1,11.95,11/21/19 19:55,"438 Adams St, Boston, MA 02215" -289909,Bose SoundSport Headphones,1,99.99,11/25/19 14:33,"913 10th St, Los Angeles, CA 90001" -289910,Macbook Pro Laptop,1,1700,11/01/19 19:07,"461 Madison St, Los Angeles, CA 90001" -289911,AA Batteries (4-pack),1,3.84,11/12/19 23:13,"511 Wilson St, Atlanta, GA 30301" -289912,AA Batteries (4-pack),1,3.84,11/27/19 17:34,"972 Johnson St, Portland, OR 97035" -289913,Google Phone,1,600,11/20/19 12:06,"948 Dogwood St, San Francisco, CA 94016" -289914,USB-C Charging Cable,1,11.95,11/07/19 20:21,"962 Main St, Los Angeles, CA 90001" -289915,34in Ultrawide Monitor,1,379.99,11/13/19 15:04,"812 Main St, Los Angeles, CA 90001" -289916,Wired Headphones,1,11.99,11/14/19 23:07,"753 Ridge St, Los Angeles, CA 90001" -289917,Flatscreen TV,1,300,11/09/19 06:37,"430 Chestnut St, San Francisco, CA 94016" -289918,USB-C Charging Cable,1,11.95,11/22/19 19:41,"265 Adams St, New York City, NY 10001" -289919,20in Monitor,1,109.99,11/21/19 12:04,"532 Washington St, San Francisco, CA 94016" -289920,AAA Batteries (4-pack),4,2.99,11/22/19 20:34,"269 Lincoln St, San Francisco, CA 94016" -289921,Lightning Charging Cable,1,14.95,11/06/19 02:46,"493 Adams St, San Francisco, CA 94016" -289922,Lightning Charging Cable,1,14.95,11/15/19 10:45,"928 Willow St, Los Angeles, CA 90001" -289923,Apple Airpods Headphones,1,150,11/05/19 09:36,"202 11th St, Atlanta, GA 30301" -289924,Macbook Pro Laptop,1,1700,11/09/19 15:21,"882 4th St, San Francisco, CA 94016" -289925,Apple Airpods Headphones,1,150,11/06/19 21:18,"3 Jackson St, Atlanta, GA 30301" -289926,Wired Headphones,1,11.99,11/02/19 17:01,"780 8th St, Seattle, WA 98101" -289927,AA Batteries (4-pack),1,3.84,11/26/19 09:00,"370 Ridge St, Los Angeles, CA 90001" -289928,27in FHD Monitor,1,149.99,11/04/19 13:53,"674 Dogwood St, San Francisco, CA 94016" -289929,Bose SoundSport Headphones,1,99.99,11/20/19 21:24,"869 12th St, Los Angeles, CA 90001" -289930,Lightning Charging Cable,1,14.95,11/30/19 19:11,"854 13th St, Los Angeles, CA 90001" -289931,Lightning Charging Cable,1,14.95,11/10/19 23:27,"631 Adams St, Boston, MA 02215" -289932,AA Batteries (4-pack),1,3.84,11/11/19 21:08,"412 River St, Boston, MA 02215" -289933,Apple Airpods Headphones,1,150,11/03/19 15:31,"389 Dogwood St, Los Angeles, CA 90001" -289934,AA Batteries (4-pack),1,3.84,11/17/19 01:41,"213 Chestnut St, Portland, OR 97035" -289935,Wired Headphones,1,11.99,11/10/19 07:49,"371 South St, Seattle, WA 98101" -289936,Apple Airpods Headphones,1,150,11/21/19 16:58,"865 9th St, San Francisco, CA 94016" -289937,USB-C Charging Cable,1,11.95,11/06/19 08:17,"237 14th St, Dallas, TX 75001" -289938,AA Batteries (4-pack),1,3.84,11/01/19 21:29,"700 2nd St, Boston, MA 02215" -289939,AAA Batteries (4-pack),2,2.99,11/09/19 09:44,"253 Johnson St, Portland, OR 97035" -289940,Lightning Charging Cable,1,14.95,11/11/19 20:07,"731 12th St, Atlanta, GA 30301" -289941,iPhone,1,700,11/12/19 19:51,"781 Lakeview St, Boston, MA 02215" -289942,Lightning Charging Cable,1,14.95,11/30/19 10:55,"76 13th St, Boston, MA 02215" -289943,ThinkPad Laptop,1,999.99,11/25/19 20:41,"479 Pine St, Boston, MA 02215" -289944,34in Ultrawide Monitor,1,379.99,11/29/19 14:56,"178 Forest St, Austin, TX 73301" -289945,iPhone,1,700,11/02/19 09:38,"36 4th St, Boston, MA 02215" -289945,Lightning Charging Cable,1,14.95,11/02/19 09:38,"36 4th St, Boston, MA 02215" -289946,USB-C Charging Cable,1,11.95,11/22/19 10:02,"588 Center St, San Francisco, CA 94016" -289947,AAA Batteries (4-pack),1,2.99,11/03/19 09:50,"53 10th St, San Francisco, CA 94016" -289947,AAA Batteries (4-pack),4,2.99,11/03/19 09:50,"53 10th St, San Francisco, CA 94016" -289948,AA Batteries (4-pack),1,3.84,11/18/19 13:24,"617 Hickory St, Portland, OR 97035" -289949,AA Batteries (4-pack),2,3.84,11/10/19 09:54,"818 7th St, New York City, NY 10001" -289950,27in 4K Gaming Monitor,1,389.99,11/12/19 08:39,"71 10th St, Los Angeles, CA 90001" -289951,20in Monitor,1,109.99,11/03/19 20:47,"413 Cherry St, Los Angeles, CA 90001" -289952,AAA Batteries (4-pack),1,2.99,11/26/19 21:51,"996 Wilson St, San Francisco, CA 94016" -289953,Lightning Charging Cable,1,14.95,11/06/19 21:45,"172 Church St, Atlanta, GA 30301" -289954,Wired Headphones,1,11.99,11/01/19 23:05,"860 13th St, Los Angeles, CA 90001" -289955,20in Monitor,1,109.99,11/25/19 12:38,"19 Hickory St, Portland, OR 97035" -289956,Bose SoundSport Headphones,1,99.99,11/23/19 13:23,"30 Chestnut St, New York City, NY 10001" -289957,Apple Airpods Headphones,1,150,11/20/19 18:56,"719 South St, Dallas, TX 75001" -289958,20in Monitor,1,109.99,12/01/19 00:46,"833 River St, San Francisco, CA 94016" -289959,20in Monitor,1,109.99,11/30/19 18:05,"678 Highland St, San Francisco, CA 94016" -289960,AAA Batteries (4-pack),1,2.99,11/13/19 08:15,"663 12th St, Los Angeles, CA 90001" -289961,Bose SoundSport Headphones,1,99.99,11/13/19 23:43,"599 Cedar St, Los Angeles, CA 90001" -289962,AAA Batteries (4-pack),1,2.99,11/11/19 07:53,"356 Lake St, New York City, NY 10001" -289963,AA Batteries (4-pack),1,3.84,11/09/19 20:49,"568 Adams St, Seattle, WA 98101" -289964,AA Batteries (4-pack),1,3.84,11/06/19 20:05,"579 South St, Los Angeles, CA 90001" -289965,Wired Headphones,1,11.99,11/11/19 14:20,"302 Lincoln St, New York City, NY 10001" -289966,AA Batteries (4-pack),1,3.84,11/18/19 15:51,"210 1st St, Boston, MA 02215" -289967,Lightning Charging Cable,1,14.95,11/19/19 18:17,"676 Dogwood St, Los Angeles, CA 90001" -289968,USB-C Charging Cable,1,11.95,11/16/19 00:24,"456 River St, Atlanta, GA 30301" -289969,Bose SoundSport Headphones,1,99.99,11/09/19 13:18,"353 Chestnut St, Los Angeles, CA 90001" -289970,Lightning Charging Cable,1,14.95,11/02/19 22:52,"304 7th St, Boston, MA 02215" -289971,34in Ultrawide Monitor,1,379.99,11/26/19 10:16,"449 12th St, Seattle, WA 98101" -289972,Lightning Charging Cable,1,14.95,11/01/19 15:44,"125 5th St, Boston, MA 02215" -289973,AA Batteries (4-pack),1,3.84,11/23/19 15:31,"673 Park St, New York City, NY 10001" -289974,34in Ultrawide Monitor,1,379.99,11/12/19 07:18,"436 Madison St, San Francisco, CA 94016" -289975,20in Monitor,1,109.99,11/01/19 12:41,"646 12th St, San Francisco, CA 94016" -289976,Lightning Charging Cable,1,14.95,11/22/19 11:32,"416 South St, San Francisco, CA 94016" -289977,AA Batteries (4-pack),1,3.84,11/18/19 11:13,"613 Jefferson St, Los Angeles, CA 90001" -289978,AA Batteries (4-pack),1,3.84,11/10/19 10:55,"35 Lakeview St, Boston, MA 02215" -289979,USB-C Charging Cable,1,11.95,11/13/19 14:19,"42 South St, San Francisco, CA 94016" -289980,Flatscreen TV,1,300,11/01/19 09:49,"393 Lake St, San Francisco, CA 94016" -289981,Wired Headphones,1,11.99,11/04/19 13:51,"636 5th St, Boston, MA 02215" -289982,Apple Airpods Headphones,1,150,11/19/19 16:18,"165 Cherry St, San Francisco, CA 94016" -289983,Wired Headphones,1,11.99,11/28/19 09:05,"53 Center St, New York City, NY 10001" -289984,ThinkPad Laptop,1,999.99,11/07/19 20:27,"782 1st St, Seattle, WA 98101" -289985,Lightning Charging Cable,1,14.95,11/21/19 18:23,"701 5th St, Boston, MA 02215" -289986,iPhone,1,700,11/15/19 14:00,"449 Jefferson St, Portland, OR 97035" -289987,Apple Airpods Headphones,1,150,11/11/19 13:40,"634 Lakeview St, Atlanta, GA 30301" -289988,iPhone,1,700,11/14/19 19:09,"407 Lake St, San Francisco, CA 94016" -289989,ThinkPad Laptop,1,999.99,11/08/19 16:28,"606 Jefferson St, San Francisco, CA 94016" -289990,AA Batteries (4-pack),6,3.84,11/09/19 16:41,"397 Forest St, San Francisco, CA 94016" -289991,ThinkPad Laptop,1,999.99,11/08/19 08:23,"578 Main St, New York City, NY 10001" -289992,27in FHD Monitor,1,149.99,11/21/19 19:05,"859 Jackson St, Boston, MA 02215" -289993,LG Dryer,1,600.0,11/05/19 16:11,"517 6th St, Los Angeles, CA 90001" -289994,Lightning Charging Cable,1,14.95,11/17/19 12:39,"985 Cedar St, Atlanta, GA 30301" -289995,AA Batteries (4-pack),1,3.84,11/10/19 14:44,"616 River St, Portland, OR 97035" -289996,Bose SoundSport Headphones,1,99.99,11/28/19 16:54,"533 7th St, Portland, OR 97035" -289997,USB-C Charging Cable,1,11.95,11/26/19 16:01,"447 Walnut St, Dallas, TX 75001" -289998,AAA Batteries (4-pack),1,2.99,11/17/19 12:10,"783 Maple St, Los Angeles, CA 90001" -289999,Apple Airpods Headphones,1,150,11/21/19 15:29,"111 Chestnut St, Portland, OR 97035" -290000,AA Batteries (4-pack),1,3.84,11/08/19 11:37,"953 2nd St, Dallas, TX 75001" -290001,USB-C Charging Cable,1,11.95,11/09/19 18:27,"141 9th St, Atlanta, GA 30301" -290001,27in FHD Monitor,1,149.99,11/09/19 18:27,"141 9th St, Atlanta, GA 30301" -290002,Wired Headphones,1,11.99,11/07/19 05:19,"558 Adams St, Dallas, TX 75001" -290003,Apple Airpods Headphones,1,150,11/14/19 20:32,"885 Adams St, San Francisco, CA 94016" -290004,Apple Airpods Headphones,2,150,11/25/19 20:13,"124 Hill St, San Francisco, CA 94016" -290005,Google Phone,1,600,11/23/19 00:31,"603 2nd St, Boston, MA 02215" -290006,Wired Headphones,1,11.99,11/18/19 18:07,"328 4th St, Dallas, TX 75001" -290007,Wired Headphones,1,11.99,11/28/19 23:07,"927 North St, Los Angeles, CA 90001" -290008,27in 4K Gaming Monitor,1,389.99,11/22/19 18:35,"101 Jefferson St, Atlanta, GA 30301" -290009,Lightning Charging Cable,1,14.95,11/12/19 03:20,"348 Highland St, Seattle, WA 98101" -290010,Wired Headphones,1,11.99,11/07/19 14:33,"659 Main St, New York City, NY 10001" -290011,Apple Airpods Headphones,1,150,11/20/19 09:07,"775 West St, San Francisco, CA 94016" -290012,Lightning Charging Cable,1,14.95,11/09/19 21:36,"126 Park St, New York City, NY 10001" -290013,Wired Headphones,1,11.99,11/04/19 18:17,"915 Elm St, San Francisco, CA 94016" -290014,AA Batteries (4-pack),1,3.84,11/14/19 01:02,"471 Church St, Los Angeles, CA 90001" -290015,34in Ultrawide Monitor,1,379.99,11/13/19 17:53,"639 Jefferson St, Atlanta, GA 30301" -290016,Bose SoundSport Headphones,1,99.99,11/23/19 21:42,"868 Lakeview St, Boston, MA 02215" -290017,USB-C Charging Cable,1,11.95,11/27/19 23:28,"882 Cherry St, Los Angeles, CA 90001" -290018,iPhone,1,700,11/14/19 21:19,"386 Spruce St, New York City, NY 10001" -290019,AAA Batteries (4-pack),1,2.99,11/13/19 16:06,"104 Ridge St, Los Angeles, CA 90001" -290020,27in FHD Monitor,1,149.99,11/19/19 13:54,"311 Ridge St, New York City, NY 10001" -290021,AA Batteries (4-pack),1,3.84,11/23/19 16:31,"118 North St, Portland, ME 04101" -290022,Macbook Pro Laptop,1,1700,11/26/19 01:06,"910 13th St, New York City, NY 10001" -290023,AAA Batteries (4-pack),3,2.99,11/01/19 13:10,"774 Lakeview St, San Francisco, CA 94016" -290024,Wired Headphones,1,11.99,11/08/19 13:40,"320 12th St, Los Angeles, CA 90001" -290025,AAA Batteries (4-pack),1,2.99,11/14/19 08:27,"83 Wilson St, Seattle, WA 98101" -290026,AAA Batteries (4-pack),1,2.99,11/13/19 16:55,"176 Dogwood St, Boston, MA 02215" -290027,USB-C Charging Cable,1,11.95,11/22/19 18:43,"966 Main St, New York City, NY 10001" -290028,USB-C Charging Cable,1,11.95,11/26/19 01:57,"917 River St, Atlanta, GA 30301" -290029,USB-C Charging Cable,2,11.95,11/01/19 17:46,"833 Chestnut St, San Francisco, CA 94016" -290030,AA Batteries (4-pack),1,3.84,11/06/19 17:45,"338 Lake St, Austin, TX 73301" -290031,Apple Airpods Headphones,1,150,11/14/19 23:01,"974 Main St, Austin, TX 73301" -290032,27in 4K Gaming Monitor,1,389.99,11/19/19 16:17,"351 Spruce St, San Francisco, CA 94016" -290033,USB-C Charging Cable,2,11.95,11/03/19 19:33,"886 Jackson St, Portland, OR 97035" -290034,27in 4K Gaming Monitor,1,389.99,11/28/19 16:26,"413 Main St, Seattle, WA 98101" -290035,AA Batteries (4-pack),1,3.84,11/01/19 12:34,"342 Johnson St, Dallas, TX 75001" -290036,Wired Headphones,1,11.99,11/15/19 19:42,"933 Cedar St, Atlanta, GA 30301" -290037,Wired Headphones,1,11.99,11/05/19 13:52,"438 Washington St, New York City, NY 10001" -290038,Lightning Charging Cable,1,14.95,11/21/19 07:49,"69 Highland St, San Francisco, CA 94016" -290039,Flatscreen TV,1,300,11/18/19 11:59,"904 Jackson St, Boston, MA 02215" -290040,AA Batteries (4-pack),1,3.84,11/29/19 22:39,"365 6th St, New York City, NY 10001" -290041,AAA Batteries (4-pack),2,2.99,11/18/19 08:01,"717 Lincoln St, Boston, MA 02215" -290042,Lightning Charging Cable,1,14.95,11/07/19 17:06,"807 Adams St, Portland, ME 04101" -290043,Apple Airpods Headphones,1,150,11/30/19 09:49,"208 Jackson St, Boston, MA 02215" -290044,Wired Headphones,1,11.99,11/14/19 20:44,"258 Pine St, San Francisco, CA 94016" -290045,AAA Batteries (4-pack),1,2.99,11/03/19 09:32,"335 Chestnut St, New York City, NY 10001" -290046,AA Batteries (4-pack),2,3.84,11/22/19 13:44,"426 Highland St, Los Angeles, CA 90001" -290047,Apple Airpods Headphones,1,150,11/08/19 15:20,"881 Cedar St, San Francisco, CA 94016" -290048,Apple Airpods Headphones,1,150,11/11/19 16:34,"13 Hill St, Boston, MA 02215" -290049,Lightning Charging Cable,1,14.95,11/11/19 17:18,"984 Jackson St, Los Angeles, CA 90001" -290050,Wired Headphones,1,11.99,11/15/19 08:24,"698 Church St, Seattle, WA 98101" -290051,AAA Batteries (4-pack),2,2.99,11/09/19 23:49,"144 Meadow St, Boston, MA 02215" -290052,Apple Airpods Headphones,1,150,11/30/19 11:10,"513 Forest St, San Francisco, CA 94016" -290053,AAA Batteries (4-pack),1,2.99,11/12/19 17:17,"830 4th St, New York City, NY 10001" -290054,27in FHD Monitor,1,149.99,11/06/19 09:45,"369 South St, San Francisco, CA 94016" -290055,Lightning Charging Cable,1,14.95,11/08/19 14:23,"756 Elm St, New York City, NY 10001" -290056,Bose SoundSport Headphones,1,99.99,11/13/19 15:28,"78 Hill St, New York City, NY 10001" -290057,Lightning Charging Cable,1,14.95,11/07/19 16:46,"460 Maple St, San Francisco, CA 94016" -290058,AAA Batteries (4-pack),1,2.99,11/24/19 18:41,"170 Park St, San Francisco, CA 94016" -290059,AAA Batteries (4-pack),1,2.99,11/30/19 06:16,"69 Hickory St, Boston, MA 02215" -290060,LG Dryer,1,600.0,11/21/19 22:21,"961 North St, Austin, TX 73301" -290061,Vareebadd Phone,1,400,11/16/19 22:45,"196 Spruce St, San Francisco, CA 94016" -290062,AA Batteries (4-pack),1,3.84,11/18/19 08:54,"482 Forest St, Boston, MA 02215" -290063,Lightning Charging Cable,1,14.95,11/23/19 11:15,"399 6th St, Portland, OR 97035" -290064,AA Batteries (4-pack),1,3.84,11/10/19 15:17,"688 Washington St, San Francisco, CA 94016" -290065,Bose SoundSport Headphones,1,99.99,11/30/19 21:41,"487 8th St, Seattle, WA 98101" -290066,AAA Batteries (4-pack),1,2.99,11/26/19 16:04,"784 Highland St, San Francisco, CA 94016" -290067,iPhone,1,700,11/23/19 22:53,"878 Madison St, Los Angeles, CA 90001" -290068,Apple Airpods Headphones,1,150,11/13/19 16:01,"519 Center St, New York City, NY 10001" -290069,Macbook Pro Laptop,1,1700,11/11/19 17:19,"872 Highland St, Austin, TX 73301" -290070,Wired Headphones,1,11.99,11/20/19 14:11,"812 Jefferson St, Portland, OR 97035" -290071,Vareebadd Phone,1,400,11/10/19 17:14,"502 Wilson St, San Francisco, CA 94016" -290072,Flatscreen TV,1,300,11/21/19 12:23,"180 Church St, New York City, NY 10001" -290073,USB-C Charging Cable,1,11.95,11/08/19 10:27,"955 Sunset St, New York City, NY 10001" -290074,Google Phone,1,600,11/29/19 10:43,"283 River St, San Francisco, CA 94016" -290075,iPhone,1,700,11/21/19 08:07,"783 Johnson St, Portland, OR 97035" -290076,Lightning Charging Cable,1,14.95,11/16/19 18:41,"463 11th St, Seattle, WA 98101" -290077,USB-C Charging Cable,1,11.95,11/20/19 19:06,"227 Johnson St, San Francisco, CA 94016" -290078,Bose SoundSport Headphones,1,99.99,11/29/19 17:13,"952 South St, Dallas, TX 75001" -290079,Bose SoundSport Headphones,1,99.99,11/29/19 01:10,"338 Jackson St, Los Angeles, CA 90001" -290080,Apple Airpods Headphones,1,150,11/04/19 19:29,"735 Lincoln St, New York City, NY 10001" -290081,Lightning Charging Cable,1,14.95,11/24/19 11:55,"712 Forest St, San Francisco, CA 94016" -290082,27in 4K Gaming Monitor,1,389.99,11/18/19 09:04,"499 Chestnut St, Seattle, WA 98101" -290083,AA Batteries (4-pack),1,3.84,11/25/19 18:41,"951 Pine St, New York City, NY 10001" -290084,34in Ultrawide Monitor,1,379.99,11/18/19 12:43,"51 Center St, San Francisco, CA 94016" -290085,AA Batteries (4-pack),1,3.84,11/04/19 12:20,"581 7th St, Boston, MA 02215" -290086,Lightning Charging Cable,1,14.95,11/21/19 10:26,"555 Dogwood St, New York City, NY 10001" -290087,AA Batteries (4-pack),1,3.84,11/08/19 13:27,"685 6th St, San Francisco, CA 94016" -290088,Apple Airpods Headphones,1,150,11/01/19 20:34,"278 South St, Dallas, TX 75001" -290089,AAA Batteries (4-pack),2,2.99,11/24/19 22:55,"720 1st St, New York City, NY 10001" -290090,AA Batteries (4-pack),1,3.84,11/20/19 08:58,"829 8th St, San Francisco, CA 94016" -290091,AAA Batteries (4-pack),1,2.99,11/13/19 11:19,"753 12th St, Austin, TX 73301" -290092,Bose SoundSport Headphones,1,99.99,11/13/19 04:20,"711 2nd St, San Francisco, CA 94016" -290093,27in FHD Monitor,1,149.99,11/23/19 15:47,"292 Center St, Dallas, TX 75001" -290094,AAA Batteries (4-pack),1,2.99,11/03/19 20:57,"960 Sunset St, San Francisco, CA 94016" -290095,Google Phone,1,600,11/17/19 20:03,"347 2nd St, Atlanta, GA 30301" -290096,27in FHD Monitor,1,149.99,11/30/19 23:35,"365 12th St, San Francisco, CA 94016" -290097,27in FHD Monitor,1,149.99,11/29/19 12:35,"278 Madison St, Atlanta, GA 30301" -290098,Flatscreen TV,1,300,11/23/19 11:06,"749 Spruce St, Boston, MA 02215" -290099,Lightning Charging Cable,1,14.95,11/22/19 08:10,"371 5th St, Boston, MA 02215" -290100,27in FHD Monitor,1,149.99,11/10/19 12:08,"913 Wilson St, Boston, MA 02215" -290101,27in 4K Gaming Monitor,1,389.99,11/27/19 17:46,"291 7th St, New York City, NY 10001" -290102,USB-C Charging Cable,1,11.95,11/21/19 12:56,"333 Meadow St, Boston, MA 02215" -290103,AA Batteries (4-pack),1,3.84,11/12/19 12:13,"670 11th St, Portland, OR 97035" -290104,Apple Airpods Headphones,1,150,11/08/19 21:29,"926 Washington St, San Francisco, CA 94016" -290105,AAA Batteries (4-pack),1,2.99,11/11/19 09:39,"126 Spruce St, Boston, MA 02215" -290106,AAA Batteries (4-pack),1,2.99,11/23/19 20:33,"351 Cherry St, Austin, TX 73301" -290107,27in FHD Monitor,1,149.99,11/01/19 14:48,"866 7th St, San Francisco, CA 94016" -290108,USB-C Charging Cable,1,11.95,11/29/19 11:03,"281 4th St, Atlanta, GA 30301" -290109,Wired Headphones,1,11.99,11/29/19 18:41,"734 4th St, San Francisco, CA 94016" -290110,Apple Airpods Headphones,1,150,11/01/19 13:22,"284 Johnson St, New York City, NY 10001" -290111,AA Batteries (4-pack),1,3.84,11/10/19 12:19,"719 Forest St, New York City, NY 10001" -290112,Lightning Charging Cable,1,14.95,11/20/19 21:05,"443 Meadow St, Seattle, WA 98101" -290113,20in Monitor,1,109.99,11/12/19 14:36,"819 5th St, Boston, MA 02215" -290114,Lightning Charging Cable,1,14.95,11/09/19 11:07,"645 7th St, New York City, NY 10001" -290115,AA Batteries (4-pack),1,3.84,11/07/19 22:19,"396 Chestnut St, Dallas, TX 75001" -290116,Lightning Charging Cable,1,14.95,11/21/19 23:02,"659 Cherry St, Atlanta, GA 30301" -290117,Macbook Pro Laptop,1,1700,11/15/19 13:13,"50 Cedar St, Los Angeles, CA 90001" -290118,Wired Headphones,1,11.99,11/28/19 11:31,"415 Cherry St, Atlanta, GA 30301" -290119,AAA Batteries (4-pack),2,2.99,11/29/19 08:48,"380 13th St, Seattle, WA 98101" -290120,Wired Headphones,1,11.99,11/13/19 19:10,"718 5th St, Seattle, WA 98101" -290121,AAA Batteries (4-pack),1,2.99,11/10/19 18:04,"303 West St, New York City, NY 10001" -290122,ThinkPad Laptop,1,999.99,11/20/19 18:33,"427 10th St, Los Angeles, CA 90001" -290123,Macbook Pro Laptop,1,1700,11/04/19 13:54,"975 Lake St, Portland, OR 97035" -290124,AA Batteries (4-pack),1,3.84,11/27/19 14:05,"953 Lincoln St, San Francisco, CA 94016" -290125,Google Phone,1,600,11/29/19 12:14,"146 Walnut St, Los Angeles, CA 90001" -290126,iPhone,1,700,11/11/19 16:43,"857 Wilson St, San Francisco, CA 94016" -290127,Bose SoundSport Headphones,1,99.99,11/21/19 04:36,"684 Chestnut St, San Francisco, CA 94016" -290128,Lightning Charging Cable,1,14.95,11/14/19 20:40,"950 Dogwood St, Dallas, TX 75001" -290129,Lightning Charging Cable,1,14.95,11/22/19 20:15,"362 1st St, New York City, NY 10001" -290130,Bose SoundSport Headphones,1,99.99,11/10/19 06:06,"758 Highland St, Boston, MA 02215" -290131,Bose SoundSport Headphones,1,99.99,11/07/19 15:52,"846 Wilson St, Boston, MA 02215" -290132,USB-C Charging Cable,1,11.95,11/25/19 16:37,"296 Ridge St, New York City, NY 10001" -290133,Google Phone,1,600,11/30/19 13:55,"39 2nd St, New York City, NY 10001" -290133,USB-C Charging Cable,1,11.95,11/30/19 13:55,"39 2nd St, New York City, NY 10001" -290134,Wired Headphones,1,11.99,11/27/19 20:27,"100 2nd St, Boston, MA 02215" -290135,AA Batteries (4-pack),1,3.84,11/14/19 23:57,"875 2nd St, Boston, MA 02215" -290136,Apple Airpods Headphones,1,150,11/15/19 13:19,"535 Jefferson St, Los Angeles, CA 90001" -290137,AAA Batteries (4-pack),2,2.99,11/10/19 11:30,"319 West St, Dallas, TX 75001" -290138,Apple Airpods Headphones,1,150,11/02/19 17:59,"440 13th St, Portland, OR 97035" -290139,Apple Airpods Headphones,1,150,11/15/19 21:25,"193 Meadow St, Seattle, WA 98101" -290140,Apple Airpods Headphones,1,150,11/04/19 20:54,"312 Chestnut St, Boston, MA 02215" -290141,AA Batteries (4-pack),1,3.84,11/25/19 19:13,"317 Jefferson St, San Francisco, CA 94016" -290142,Flatscreen TV,1,300,11/25/19 10:57,"87 Lincoln St, Boston, MA 02215" -290143,Lightning Charging Cable,1,14.95,11/19/19 06:55,"314 Lake St, Seattle, WA 98101" -290144,AA Batteries (4-pack),1,3.84,11/14/19 18:20,"370 Church St, San Francisco, CA 94016" -290145,Macbook Pro Laptop,1,1700,11/18/19 08:05,"615 South St, Portland, OR 97035" -290146,AA Batteries (4-pack),1,3.84,11/12/19 22:21,"408 Elm St, Austin, TX 73301" -290147,Apple Airpods Headphones,1,150,11/12/19 18:12,"76 7th St, Atlanta, GA 30301" -290148,Flatscreen TV,1,300,11/22/19 12:45,"890 5th St, San Francisco, CA 94016" -290149,34in Ultrawide Monitor,1,379.99,11/06/19 01:35,"393 Cherry St, San Francisco, CA 94016" -290150,Bose SoundSport Headphones,1,99.99,11/12/19 08:41,"508 Wilson St, Dallas, TX 75001" -290151,iPhone,1,700,11/17/19 11:21,"813 Walnut St, Los Angeles, CA 90001" -290151,Lightning Charging Cable,2,14.95,11/17/19 11:21,"813 Walnut St, Los Angeles, CA 90001" -290151,Wired Headphones,1,11.99,11/17/19 11:21,"813 Walnut St, Los Angeles, CA 90001" -290152,27in 4K Gaming Monitor,1,389.99,11/14/19 10:46,"913 13th St, San Francisco, CA 94016" -290153,Bose SoundSport Headphones,1,99.99,11/22/19 08:03,"845 Lakeview St, Los Angeles, CA 90001" -290154,AAA Batteries (4-pack),2,2.99,11/26/19 18:37,"815 West St, Atlanta, GA 30301" -290155,AA Batteries (4-pack),1,3.84,11/30/19 14:57,"31 Adams St, Boston, MA 02215" -290156,Bose SoundSport Headphones,1,99.99,11/11/19 12:24,"325 7th St, Portland, OR 97035" -290157,Lightning Charging Cable,2,14.95,11/22/19 14:20,"294 Lake St, New York City, NY 10001" -290158,Apple Airpods Headphones,1,150,11/02/19 23:49,"80 Highland St, Los Angeles, CA 90001" -290159,ThinkPad Laptop,1,999.99,11/22/19 20:15,"218 Church St, New York City, NY 10001" -290160,Lightning Charging Cable,1,14.95,11/02/19 11:09,"192 12th St, Portland, ME 04101" -290161,Lightning Charging Cable,2,14.95,11/08/19 16:56,"740 Lakeview St, Boston, MA 02215" -290162,USB-C Charging Cable,2,11.95,11/13/19 20:05,"368 River St, New York City, NY 10001" -290163,ThinkPad Laptop,1,999.99,11/18/19 14:20,"200 Jefferson St, San Francisco, CA 94016" -290164,iPhone,1,700,11/27/19 15:34,"164 7th St, Atlanta, GA 30301" -290165,AAA Batteries (4-pack),1,2.99,11/13/19 17:26,"264 West St, Seattle, WA 98101" -290166,Flatscreen TV,1,300,11/27/19 13:43,"401 Main St, New York City, NY 10001" -290167,27in FHD Monitor,1,149.99,11/11/19 15:19,"532 Spruce St, Dallas, TX 75001" -290168,Bose SoundSport Headphones,1,99.99,11/26/19 21:27,"51 Meadow St, New York City, NY 10001" -290169,Lightning Charging Cable,1,14.95,11/26/19 18:22,"281 West St, Atlanta, GA 30301" -290170,Bose SoundSport Headphones,1,99.99,11/22/19 20:32,"822 7th St, Los Angeles, CA 90001" -290171,Lightning Charging Cable,1,14.95,11/24/19 16:52,"129 Cherry St, Boston, MA 02215" -,,,,, -290172,Google Phone,1,600,11/22/19 12:01,"466 Jefferson St, Boston, MA 02215" -290173,Google Phone,1,600,11/09/19 01:05,"206 12th St, New York City, NY 10001" -290173,USB-C Charging Cable,1,11.95,11/09/19 01:05,"206 12th St, New York City, NY 10001" -290174,Vareebadd Phone,1,400,11/25/19 10:16,"772 Jefferson St, Boston, MA 02215" -290175,USB-C Charging Cable,1,11.95,11/04/19 14:48,"257 Cedar St, New York City, NY 10001" -290176,ThinkPad Laptop,1,999.99,11/13/19 20:10,"791 9th St, Los Angeles, CA 90001" -290177,AAA Batteries (4-pack),3,2.99,11/29/19 13:44,"892 5th St, San Francisco, CA 94016" -290178,27in 4K Gaming Monitor,1,389.99,11/29/19 21:44,"699 Center St, Los Angeles, CA 90001" -290179,34in Ultrawide Monitor,1,379.99,11/12/19 15:50,"297 Wilson St, Boston, MA 02215" -290180,Apple Airpods Headphones,1,150,11/14/19 16:01,"614 North St, Dallas, TX 75001" -290181,Lightning Charging Cable,1,14.95,11/13/19 18:21,"302 Lincoln St, Dallas, TX 75001" -290182,USB-C Charging Cable,1,11.95,11/25/19 16:16,"147 Ridge St, Portland, OR 97035" -290183,Wired Headphones,1,11.99,11/11/19 14:18,"233 Johnson St, New York City, NY 10001" -290184,Wired Headphones,1,11.99,11/21/19 18:33,"248 7th St, Austin, TX 73301" -290185,AAA Batteries (4-pack),1,2.99,11/09/19 12:45,"839 Highland St, New York City, NY 10001" -290186,20in Monitor,1,109.99,11/02/19 10:54,"496 Willow St, Seattle, WA 98101" -290187,iPhone,1,700,11/21/19 09:29,"22 Sunset St, Boston, MA 02215" -290188,Macbook Pro Laptop,1,1700,11/11/19 12:50,"315 Cedar St, New York City, NY 10001" -290189,USB-C Charging Cable,1,11.95,11/10/19 20:11,"93 Forest St, Dallas, TX 75001" -290190,Vareebadd Phone,1,400,11/05/19 14:38,"52 Jackson St, San Francisco, CA 94016" -290190,USB-C Charging Cable,1,11.95,11/05/19 14:38,"52 Jackson St, San Francisco, CA 94016" -290190,Wired Headphones,1,11.99,11/05/19 14:38,"52 Jackson St, San Francisco, CA 94016" -290191,Wired Headphones,1,11.99,11/11/19 11:40,"528 Meadow St, San Francisco, CA 94016" -290192,Bose SoundSport Headphones,1,99.99,11/12/19 13:37,"751 Lake St, Austin, TX 73301" -290193,Flatscreen TV,1,300,11/08/19 21:16,"791 Main St, Boston, MA 02215" -290194,Apple Airpods Headphones,1,150,11/02/19 20:25,"774 Wilson St, Seattle, WA 98101" -290195,AA Batteries (4-pack),1,3.84,11/23/19 11:25,"158 Ridge St, San Francisco, CA 94016" -290196,Wired Headphones,1,11.99,11/05/19 15:24,"952 Walnut St, San Francisco, CA 94016" -290197,USB-C Charging Cable,1,11.95,11/21/19 11:05,"888 Hickory St, Atlanta, GA 30301" -290198,LG Dryer,1,600.0,11/30/19 10:53,"935 River St, San Francisco, CA 94016" -290199,20in Monitor,1,109.99,11/30/19 10:48,"701 Meadow St, San Francisco, CA 94016" -290200,Apple Airpods Headphones,1,150,11/12/19 01:43,"873 Walnut St, Los Angeles, CA 90001" -290201,AAA Batteries (4-pack),1,2.99,11/18/19 18:21,"157 5th St, San Francisco, CA 94016" -290202,AAA Batteries (4-pack),1,2.99,11/11/19 11:45,"153 Forest St, San Francisco, CA 94016" -290203,Flatscreen TV,1,300,11/14/19 10:22,"621 5th St, San Francisco, CA 94016" -290204,AA Batteries (4-pack),1,3.84,11/05/19 12:19,"778 13th St, Atlanta, GA 30301" -290205,20in Monitor,1,109.99,11/18/19 12:39,"415 10th St, Seattle, WA 98101" -290206,Macbook Pro Laptop,1,1700,11/28/19 07:17,"881 2nd St, Dallas, TX 75001" -290207,Wired Headphones,1,11.99,11/19/19 22:46,"679 10th St, San Francisco, CA 94016" -290208,27in FHD Monitor,1,149.99,11/24/19 13:47,"244 1st St, New York City, NY 10001" -290209,Lightning Charging Cable,1,14.95,11/11/19 12:11,"284 Lake St, Dallas, TX 75001" -290210,AAA Batteries (4-pack),2,2.99,11/28/19 17:21,"454 Lake St, San Francisco, CA 94016" -290211,AA Batteries (4-pack),1,3.84,11/27/19 14:54,"741 Pine St, Boston, MA 02215" -290212,iPhone,1,700,11/09/19 17:11,"707 Jefferson St, New York City, NY 10001" -290213,34in Ultrawide Monitor,1,379.99,11/13/19 19:03,"523 Madison St, Boston, MA 02215" -290214,AA Batteries (4-pack),1,3.84,11/29/19 11:06,"612 Wilson St, Austin, TX 73301" -290215,Google Phone,1,600,11/03/19 08:54,"798 Church St, San Francisco, CA 94016" -290215,Wired Headphones,1,11.99,11/03/19 08:54,"798 Church St, San Francisco, CA 94016" -290216,AAA Batteries (4-pack),3,2.99,11/21/19 13:06,"374 12th St, New York City, NY 10001" -290217,Lightning Charging Cable,1,14.95,11/21/19 23:27,"873 10th St, Los Angeles, CA 90001" -290218,Bose SoundSport Headphones,1,99.99,11/18/19 12:07,"139 Maple St, Los Angeles, CA 90001" -290219,USB-C Charging Cable,1,11.95,11/08/19 13:24,"141 7th St, Boston, MA 02215" -290220,USB-C Charging Cable,1,11.95,11/19/19 21:38,"889 Cedar St, Boston, MA 02215" -290221,USB-C Charging Cable,1,11.95,11/17/19 10:48,"133 Lakeview St, San Francisco, CA 94016" -290222,Flatscreen TV,1,300,11/02/19 20:11,"245 Hickory St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -290223,USB-C Charging Cable,1,11.95,11/01/19 16:05,"617 River St, San Francisco, CA 94016" -290224,Vareebadd Phone,1,400,11/01/19 16:05,"310 Spruce St, New York City, NY 10001" -290224,USB-C Charging Cable,1,11.95,11/01/19 16:05,"310 Spruce St, New York City, NY 10001" -290225,Bose SoundSport Headphones,1,99.99,11/07/19 18:43,"370 Center St, New York City, NY 10001" -290226,AAA Batteries (4-pack),2,2.99,11/23/19 11:01,"605 10th St, Dallas, TX 75001" -290227,USB-C Charging Cable,1,11.95,11/11/19 08:33,"506 Elm St, New York City, NY 10001" -290228,27in FHD Monitor,1,149.99,11/30/19 16:06,"108 2nd St, San Francisco, CA 94016" -290229,Wired Headphones,2,11.99,11/28/19 16:03,"573 6th St, San Francisco, CA 94016" -290230,Apple Airpods Headphones,1,150,11/22/19 17:53,"274 Lincoln St, Dallas, TX 75001" -290231,USB-C Charging Cable,1,11.95,11/20/19 20:05,"261 Park St, Austin, TX 73301" -290232,Lightning Charging Cable,1,14.95,11/08/19 18:49,"324 Madison St, Portland, OR 97035" -290233,Lightning Charging Cable,1,14.95,12/01/19 01:40,"826 4th St, San Francisco, CA 94016" -290234,27in 4K Gaming Monitor,1,389.99,11/01/19 21:15,"75 13th St, Los Angeles, CA 90001" -290235,USB-C Charging Cable,1,11.95,11/02/19 08:03,"845 6th St, San Francisco, CA 94016" -290236,USB-C Charging Cable,1,11.95,11/05/19 13:29,"736 Park St, New York City, NY 10001" -290237,Google Phone,1,600,11/13/19 19:47,"376 6th St, Portland, OR 97035" -290238,USB-C Charging Cable,1,11.95,11/22/19 20:45,"315 11th St, San Francisco, CA 94016" -290239,iPhone,1,700,11/11/19 17:30,"508 Washington St, San Francisco, CA 94016" -290239,Lightning Charging Cable,1,14.95,11/11/19 17:30,"508 Washington St, San Francisco, CA 94016" -290240,AAA Batteries (4-pack),2,2.99,11/08/19 12:10,"658 14th St, San Francisco, CA 94016" -290241,Google Phone,1,600,11/22/19 19:38,"670 Adams St, Dallas, TX 75001" -290242,AAA Batteries (4-pack),1,2.99,11/09/19 19:02,"127 Lake St, Atlanta, GA 30301" -290243,USB-C Charging Cable,1,11.95,11/03/19 11:18,"844 Lake St, Boston, MA 02215" -290244,AAA Batteries (4-pack),1,2.99,11/08/19 16:22,"623 5th St, San Francisco, CA 94016" -290245,Lightning Charging Cable,1,14.95,11/07/19 10:40,"187 Johnson St, Boston, MA 02215" -290246,USB-C Charging Cable,1,11.95,11/19/19 07:02,"712 South St, Austin, TX 73301" -290247,AA Batteries (4-pack),1,3.84,11/05/19 13:40,"68 Maple St, San Francisco, CA 94016" -290248,AAA Batteries (4-pack),1,2.99,11/22/19 19:00,"177 Jefferson St, San Francisco, CA 94016" -290249,AAA Batteries (4-pack),2,2.99,11/21/19 18:13,"475 Hickory St, San Francisco, CA 94016" -290250,AA Batteries (4-pack),2,3.84,11/02/19 16:03,"715 5th St, Portland, OR 97035" -290251,Lightning Charging Cable,1,14.95,11/07/19 19:34,"266 6th St, Los Angeles, CA 90001" -290252,AAA Batteries (4-pack),2,2.99,11/27/19 07:13,"815 Meadow St, San Francisco, CA 94016" -290253,AAA Batteries (4-pack),4,2.99,11/13/19 22:15,"628 6th St, Los Angeles, CA 90001" -290254,AA Batteries (4-pack),1,3.84,11/18/19 13:16,"819 14th St, Austin, TX 73301" -290255,Apple Airpods Headphones,1,150,11/05/19 23:14,"944 Lakeview St, San Francisco, CA 94016" -290256,Wired Headphones,1,11.99,11/25/19 20:29,"869 Dogwood St, San Francisco, CA 94016" -290257,Apple Airpods Headphones,1,150,11/24/19 17:44,"947 10th St, San Francisco, CA 94016" -290258,Lightning Charging Cable,1,14.95,11/12/19 16:31,"20 11th St, Atlanta, GA 30301" -290259,Bose SoundSport Headphones,1,99.99,11/30/19 11:12,"557 Hickory St, New York City, NY 10001" -290260,Lightning Charging Cable,1,14.95,11/10/19 19:41,"727 5th St, Austin, TX 73301" -290261,20in Monitor,1,109.99,11/23/19 15:22,"264 Church St, Boston, MA 02215" -290262,iPhone,1,700,11/29/19 12:10,"83 6th St, Boston, MA 02215" -290263,Wired Headphones,1,11.99,11/25/19 17:28,"922 Elm St, Atlanta, GA 30301" -290264,Lightning Charging Cable,1,14.95,11/13/19 21:06,"954 Pine St, New York City, NY 10001" -290265,Macbook Pro Laptop,1,1700,11/22/19 05:53,"842 11th St, Portland, OR 97035" -290266,34in Ultrawide Monitor,1,379.99,11/30/19 19:59,"213 Madison St, Austin, TX 73301" -290267,Google Phone,1,600,11/26/19 17:14,"677 River St, Atlanta, GA 30301" -290267,USB-C Charging Cable,1,11.95,11/26/19 17:14,"677 River St, Atlanta, GA 30301" -290268,27in FHD Monitor,1,149.99,11/14/19 21:30,"288 Hill St, New York City, NY 10001" -290269,20in Monitor,1,109.99,11/09/19 18:01,"132 South St, Atlanta, GA 30301" -290270,USB-C Charging Cable,2,11.95,11/07/19 23:39,"45 Washington St, Portland, OR 97035" -290271,Bose SoundSport Headphones,1,99.99,11/25/19 20:53,"766 Jefferson St, New York City, NY 10001" -290272,Wired Headphones,1,11.99,11/10/19 13:01,"470 Main St, San Francisco, CA 94016" -290273,iPhone,1,700,11/04/19 11:40,"161 West St, Los Angeles, CA 90001" -290273,Lightning Charging Cable,1,14.95,11/04/19 11:40,"161 West St, Los Angeles, CA 90001" -290273,Wired Headphones,1,11.99,11/04/19 11:40,"161 West St, Los Angeles, CA 90001" -290274,AA Batteries (4-pack),1,3.84,11/19/19 16:00,"388 Meadow St, New York City, NY 10001" -290274,AAA Batteries (4-pack),1,2.99,11/19/19 16:00,"388 Meadow St, New York City, NY 10001" -290275,AAA Batteries (4-pack),1,2.99,11/14/19 17:08,"667 Wilson St, Boston, MA 02215" -290276,AA Batteries (4-pack),1,3.84,11/23/19 08:27,"709 River St, Atlanta, GA 30301" -290277,27in FHD Monitor,1,149.99,11/27/19 01:57,"718 Park St, Los Angeles, CA 90001" -290278,AA Batteries (4-pack),1,3.84,11/21/19 18:00,"541 South St, Los Angeles, CA 90001" -290279,iPhone,1,700,11/24/19 18:49,"222 Washington St, Boston, MA 02215" -290280,Apple Airpods Headphones,1,150,11/09/19 21:33,"424 South St, San Francisco, CA 94016" -290281,20in Monitor,1,109.99,11/21/19 16:36,"442 Adams St, New York City, NY 10001" -290282,AAA Batteries (4-pack),2,2.99,11/05/19 17:20,"135 Cherry St, Portland, OR 97035" -290283,USB-C Charging Cable,1,11.95,11/05/19 13:55,"18 11th St, Los Angeles, CA 90001" -290284,20in Monitor,1,109.99,11/01/19 11:44,"475 14th St, New York City, NY 10001" -290285,ThinkPad Laptop,1,999.99,11/22/19 16:05,"318 Maple St, Dallas, TX 75001" -290286,Macbook Pro Laptop,1,1700,11/12/19 08:40,"405 Center St, San Francisco, CA 94016" -290286,Bose SoundSport Headphones,1,99.99,11/12/19 08:40,"405 Center St, San Francisco, CA 94016" -290287,AAA Batteries (4-pack),1,2.99,11/14/19 19:45,"584 14th St, Seattle, WA 98101" -290288,Apple Airpods Headphones,1,150,11/21/19 21:39,"912 Chestnut St, Dallas, TX 75001" -290289,USB-C Charging Cable,1,11.95,11/24/19 12:11,"909 Cherry St, Dallas, TX 75001" -290290,Wired Headphones,1,11.99,11/21/19 09:01,"851 8th St, Atlanta, GA 30301" -290291,34in Ultrawide Monitor,1,379.99,11/20/19 14:54,"661 Pine St, San Francisco, CA 94016" -290292,Lightning Charging Cable,1,14.95,11/28/19 19:00,"687 14th St, Los Angeles, CA 90001" -290293,Bose SoundSport Headphones,1,99.99,11/26/19 21:29,"982 12th St, Austin, TX 73301" -290294,27in FHD Monitor,1,149.99,11/26/19 08:57,"550 Madison St, San Francisco, CA 94016" -290295,AAA Batteries (4-pack),1,2.99,11/01/19 10:53,"440 Hill St, Atlanta, GA 30301" -290296,27in 4K Gaming Monitor,1,389.99,11/25/19 15:54,"312 8th St, New York City, NY 10001" -290297,AAA Batteries (4-pack),3,2.99,11/01/19 21:42,"309 Chestnut St, Los Angeles, CA 90001" -290298,AA Batteries (4-pack),1,3.84,11/09/19 10:58,"872 6th St, New York City, NY 10001" -290299,Bose SoundSport Headphones,1,99.99,11/28/19 21:50,"353 Meadow St, San Francisco, CA 94016" -290300,AAA Batteries (4-pack),2,2.99,11/25/19 19:18,"666 Wilson St, Seattle, WA 98101" -290301,USB-C Charging Cable,1,11.95,11/19/19 08:48,"928 Center St, Los Angeles, CA 90001" -290302,Wired Headphones,1,11.99,11/04/19 16:10,"91 9th St, Atlanta, GA 30301" -290303,AAA Batteries (4-pack),1,2.99,11/02/19 19:57,"39 Pine St, Dallas, TX 75001" -290304,AA Batteries (4-pack),1,3.84,11/25/19 11:34,"664 North St, Seattle, WA 98101" -290305,Lightning Charging Cable,1,14.95,11/11/19 12:36,"533 Dogwood St, Boston, MA 02215" -290306,ThinkPad Laptop,1,999.99,11/02/19 13:29,"428 Madison St, New York City, NY 10001" -290307,AA Batteries (4-pack),3,3.84,11/07/19 20:58,"384 5th St, Boston, MA 02215" -290308,USB-C Charging Cable,1,11.95,11/26/19 22:35,"702 Church St, San Francisco, CA 94016" -290309,27in 4K Gaming Monitor,1,389.99,11/29/19 11:24,"65 Willow St, San Francisco, CA 94016" -290310,Apple Airpods Headphones,1,150,11/24/19 18:36,"199 Jefferson St, Portland, OR 97035" -290311,USB-C Charging Cable,1,11.95,11/07/19 12:21,"208 Lakeview St, San Francisco, CA 94016" -290312,27in 4K Gaming Monitor,1,389.99,11/08/19 11:31,"78 4th St, Dallas, TX 75001" -290313,Bose SoundSport Headphones,1,99.99,11/04/19 22:07,"358 Dogwood St, Seattle, WA 98101" -290314,Lightning Charging Cable,1,14.95,11/12/19 07:58,"28 2nd St, Austin, TX 73301" -290315,34in Ultrawide Monitor,1,379.99,11/02/19 23:33,"320 Ridge St, San Francisco, CA 94016" -290316,Bose SoundSport Headphones,1,99.99,11/05/19 14:34,"625 4th St, Boston, MA 02215" -290317,AA Batteries (4-pack),1,3.84,11/16/19 12:51,"916 4th St, Portland, OR 97035" -290318,Google Phone,1,600,11/16/19 20:29,"364 Hill St, Los Angeles, CA 90001" -290319,Wired Headphones,1,11.99,11/15/19 12:20,"690 Washington St, Dallas, TX 75001" -290320,Wired Headphones,2,11.99,11/19/19 13:01,"47 Cherry St, Seattle, WA 98101" -290321,Bose SoundSport Headphones,1,99.99,11/18/19 17:35,"515 Park St, Portland, OR 97035" -290322,Flatscreen TV,1,300,11/01/19 13:50,"639 7th St, Portland, OR 97035" -290323,AA Batteries (4-pack),1,3.84,11/18/19 20:47,"967 Maple St, New York City, NY 10001" -290324,Apple Airpods Headphones,1,150,11/04/19 14:52,"399 2nd St, San Francisco, CA 94016" -290325,27in FHD Monitor,1,149.99,11/23/19 10:04,"248 Lakeview St, Portland, ME 04101" -290326,Lightning Charging Cable,1,14.95,11/15/19 19:10,"781 Ridge St, San Francisco, CA 94016" -290327,Lightning Charging Cable,1,14.95,11/07/19 19:08,"661 8th St, San Francisco, CA 94016" -290328,Lightning Charging Cable,1,14.95,11/18/19 15:34,"851 Sunset St, Austin, TX 73301" -290329,Wired Headphones,1,11.99,11/20/19 01:56,"170 14th St, Los Angeles, CA 90001" -290330,Apple Airpods Headphones,1,150,11/11/19 17:19,"118 Washington St, Portland, ME 04101" -290331,AAA Batteries (4-pack),1,2.99,11/20/19 05:06,"594 Pine St, Los Angeles, CA 90001" -290332,Lightning Charging Cable,1,14.95,11/21/19 18:49,"92 Wilson St, San Francisco, CA 94016" -290333,Macbook Pro Laptop,1,1700,11/30/19 14:59,"734 Chestnut St, Los Angeles, CA 90001" -290334,Flatscreen TV,1,300,11/07/19 00:55,"455 Willow St, Boston, MA 02215" -290335,Wired Headphones,1,11.99,11/07/19 15:11,"880 12th St, Los Angeles, CA 90001" -290336,AAA Batteries (4-pack),1,2.99,11/21/19 20:12,"49 13th St, Dallas, TX 75001" -290337,AA Batteries (4-pack),1,3.84,11/29/19 12:42,"361 Cherry St, San Francisco, CA 94016" -290338,iPhone,1,700,11/22/19 17:37,"147 Sunset St, Atlanta, GA 30301" -290339,AA Batteries (4-pack),3,3.84,11/07/19 22:05,"696 Highland St, San Francisco, CA 94016" -290340,Lightning Charging Cable,1,14.95,11/08/19 16:32,"677 4th St, Los Angeles, CA 90001" -290341,AA Batteries (4-pack),1,3.84,11/10/19 13:40,"267 Meadow St, Seattle, WA 98101" -290342,USB-C Charging Cable,1,11.95,11/07/19 15:25,"246 2nd St, Portland, OR 97035" -290343,Lightning Charging Cable,1,14.95,11/23/19 21:30,"303 North St, Seattle, WA 98101" -290344,Flatscreen TV,1,300,11/23/19 09:35,"187 Johnson St, San Francisco, CA 94016" -290345,iPhone,1,700,11/07/19 22:39,"968 12th St, Austin, TX 73301" -290346,iPhone,1,700,11/04/19 17:44,"267 12th St, Dallas, TX 75001" -290347,Bose SoundSport Headphones,1,99.99,11/18/19 20:21,"41 6th St, Los Angeles, CA 90001" -290348,27in FHD Monitor,1,149.99,11/22/19 13:24,"771 West St, Los Angeles, CA 90001" -290349,USB-C Charging Cable,1,11.95,11/15/19 11:28,"263 South St, Seattle, WA 98101" -290350,Wired Headphones,1,11.99,11/19/19 12:47,"694 Hickory St, San Francisco, CA 94016" -290351,Lightning Charging Cable,1,14.95,11/19/19 03:01,"684 Spruce St, Portland, OR 97035" -290352,Bose SoundSport Headphones,1,99.99,11/27/19 10:16,"480 Spruce St, San Francisco, CA 94016" -290353,AA Batteries (4-pack),1,3.84,11/28/19 15:55,"475 Chestnut St, Seattle, WA 98101" -290354,Google Phone,1,600,11/26/19 19:38,"26 Madison St, Los Angeles, CA 90001" -290355,27in FHD Monitor,1,149.99,11/26/19 13:39,"345 Johnson St, Los Angeles, CA 90001" -290356,Apple Airpods Headphones,1,150,11/01/19 15:35,"585 Lincoln St, New York City, NY 10001" -290357,Apple Airpods Headphones,2,150,11/12/19 18:13,"820 5th St, New York City, NY 10001" -290358,Wired Headphones,1,11.99,11/21/19 14:54,"63 5th St, San Francisco, CA 94016" -290359,27in FHD Monitor,1,149.99,11/21/19 15:08,"830 Madison St, San Francisco, CA 94016" -290360,Bose SoundSport Headphones,1,99.99,11/04/19 09:06,"86 1st St, San Francisco, CA 94016" -290361,20in Monitor,1,109.99,11/01/19 13:54,"660 Hill St, Boston, MA 02215" -290362,Wired Headphones,1,11.99,11/11/19 22:21,"192 Highland St, Boston, MA 02215" -290363,AA Batteries (4-pack),1,3.84,11/13/19 22:16,"73 Meadow St, New York City, NY 10001" -290364,Bose SoundSport Headphones,1,99.99,11/30/19 18:44,"101 Lake St, Portland, OR 97035" -290365,iPhone,1,700,11/20/19 18:35,"2 Sunset St, New York City, NY 10001" -290365,Wired Headphones,1,11.99,11/20/19 18:35,"2 Sunset St, New York City, NY 10001" -290366,AA Batteries (4-pack),1,3.84,11/23/19 09:44,"155 Forest St, Portland, ME 04101" -290367,27in 4K Gaming Monitor,1,389.99,11/22/19 18:07,"139 7th St, Boston, MA 02215" -290368,AA Batteries (4-pack),1,3.84,11/08/19 06:36,"35 Dogwood St, San Francisco, CA 94016" -290369,USB-C Charging Cable,1,11.95,11/12/19 13:47,"842 11th St, Los Angeles, CA 90001" -290370,Bose SoundSport Headphones,1,99.99,11/26/19 16:02,"64 Jefferson St, Los Angeles, CA 90001" -290371,USB-C Charging Cable,1,11.95,11/05/19 15:25,"263 4th St, Seattle, WA 98101" -290371,Lightning Charging Cable,1,14.95,11/05/19 15:25,"263 4th St, Seattle, WA 98101" -290372,iPhone,1,700,11/01/19 20:24,"309 Park St, San Francisco, CA 94016" -290372,Lightning Charging Cable,2,14.95,11/01/19 20:24,"309 Park St, San Francisco, CA 94016" -290373,Lightning Charging Cable,1,14.95,11/14/19 09:59,"741 Maple St, New York City, NY 10001" -290374,27in 4K Gaming Monitor,1,389.99,11/22/19 17:27,"692 13th St, Seattle, WA 98101" -290375,Apple Airpods Headphones,1,150,11/19/19 10:56,"132 Jefferson St, Portland, OR 97035" -290376,Lightning Charging Cable,1,14.95,11/03/19 17:32,"333 4th St, Los Angeles, CA 90001" -290377,Bose SoundSport Headphones,1,99.99,11/08/19 13:58,"88 Meadow St, Los Angeles, CA 90001" -290378,Lightning Charging Cable,1,14.95,11/14/19 08:13,"727 Dogwood St, New York City, NY 10001" -290379,Lightning Charging Cable,1,14.95,11/10/19 22:15,"825 Main St, Portland, OR 97035" -290380,AA Batteries (4-pack),3,3.84,11/06/19 08:24,"267 9th St, San Francisco, CA 94016" -290381,Wired Headphones,1,11.99,11/02/19 14:04,"801 8th St, Dallas, TX 75001" -290382,27in FHD Monitor,1,149.99,11/18/19 16:14,"15 1st St, Dallas, TX 75001" -290383,Vareebadd Phone,1,400,11/20/19 18:56,"733 Adams St, San Francisco, CA 94016" -290383,USB-C Charging Cable,1,11.95,11/20/19 18:56,"733 Adams St, San Francisco, CA 94016" -290383,Bose SoundSport Headphones,1,99.99,11/20/19 18:56,"733 Adams St, San Francisco, CA 94016" -290384,Apple Airpods Headphones,1,150,11/16/19 18:00,"898 Chestnut St, Los Angeles, CA 90001" -290385,Lightning Charging Cable,1,14.95,11/16/19 22:59,"860 10th St, Los Angeles, CA 90001" -290386,34in Ultrawide Monitor,1,379.99,11/24/19 09:33,"188 4th St, Atlanta, GA 30301" -290387,AA Batteries (4-pack),2,3.84,11/25/19 10:59,"542 Walnut St, Atlanta, GA 30301" -290388,AA Batteries (4-pack),1,3.84,11/30/19 17:07,"209 10th St, Seattle, WA 98101" -290389,Lightning Charging Cable,1,14.95,11/07/19 16:51,"497 Hill St, San Francisco, CA 94016" -290390,Apple Airpods Headphones,1,150,11/16/19 12:06,"193 Johnson St, Atlanta, GA 30301" -290391,Wired Headphones,2,11.99,11/06/19 10:56,"296 Church St, Dallas, TX 75001" -290392,AAA Batteries (4-pack),1,2.99,11/17/19 20:12,"37 South St, New York City, NY 10001" -290393,20in Monitor,1,109.99,11/10/19 18:57,"783 North St, Boston, MA 02215" -290394,Apple Airpods Headphones,1,150,11/19/19 12:08,"818 Lake St, San Francisco, CA 94016" -290395,Wired Headphones,1,11.99,11/19/19 08:58,"646 Cedar St, Boston, MA 02215" -290395,Lightning Charging Cable,1,14.95,11/19/19 08:58,"646 Cedar St, Boston, MA 02215" -290396,USB-C Charging Cable,1,11.95,11/22/19 02:48,"38 Maple St, Austin, TX 73301" -290396,Wired Headphones,1,11.99,11/22/19 02:48,"38 Maple St, Austin, TX 73301" -290397,Wired Headphones,1,11.99,11/01/19 10:19,"652 Main St, Dallas, TX 75001" -290398,Wired Headphones,2,11.99,11/14/19 16:51,"719 South St, San Francisco, CA 94016" -290399,AAA Batteries (4-pack),1,2.99,11/18/19 08:57,"703 13th St, Los Angeles, CA 90001" -290400,AAA Batteries (4-pack),2,2.99,11/14/19 22:35,"368 12th St, Boston, MA 02215" -290401,Wired Headphones,1,11.99,11/20/19 20:57,"810 Forest St, New York City, NY 10001" -290402,Bose SoundSport Headphones,1,99.99,11/17/19 21:51,"387 12th St, Portland, OR 97035" -290403,AAA Batteries (4-pack),1,2.99,11/19/19 20:40,"175 7th St, Austin, TX 73301" -290403,Apple Airpods Headphones,1,150,11/19/19 20:40,"175 7th St, Austin, TX 73301" -290404,Apple Airpods Headphones,1,150,11/17/19 12:41,"13 Willow St, New York City, NY 10001" -290405,Apple Airpods Headphones,1,150,11/03/19 14:01,"73 Adams St, Atlanta, GA 30301" -290406,Macbook Pro Laptop,1,1700,11/08/19 00:51,"269 Jefferson St, Atlanta, GA 30301" -290407,Wired Headphones,1,11.99,11/16/19 22:31,"809 11th St, Austin, TX 73301" -290408,Bose SoundSport Headphones,1,99.99,11/06/19 11:48,"252 Willow St, New York City, NY 10001" -290409,20in Monitor,1,109.99,11/16/19 13:45,"76 Highland St, San Francisco, CA 94016" -290410,Macbook Pro Laptop,1,1700,11/17/19 14:20,"831 9th St, Austin, TX 73301" -290411,Bose SoundSport Headphones,1,99.99,11/21/19 19:14,"123 Cherry St, Austin, TX 73301" -290412,USB-C Charging Cable,2,11.95,11/20/19 14:26,"909 10th St, Portland, OR 97035" -290413,AAA Batteries (4-pack),2,2.99,11/16/19 14:59,"33 Maple St, Austin, TX 73301" -290414,Bose SoundSport Headphones,1,99.99,11/01/19 17:15,"57 Main St, Los Angeles, CA 90001" -290415,Bose SoundSport Headphones,1,99.99,11/16/19 15:05,"420 Jackson St, San Francisco, CA 94016" -290416,AA Batteries (4-pack),1,3.84,11/12/19 16:29,"358 Jefferson St, Los Angeles, CA 90001" -290417,Lightning Charging Cable,1,14.95,11/05/19 13:26,"827 South St, San Francisco, CA 94016" -290418,Wired Headphones,1,11.99,11/10/19 11:23,"7 Hickory St, Boston, MA 02215" -290419,USB-C Charging Cable,1,11.95,11/22/19 11:50,"560 North St, Los Angeles, CA 90001" -290420,Lightning Charging Cable,1,14.95,11/25/19 22:57,"195 Sunset St, New York City, NY 10001" -290421,Google Phone,1,600,11/10/19 23:10,"921 10th St, San Francisco, CA 94016" -290422,AA Batteries (4-pack),1,3.84,11/13/19 22:12,"547 4th St, San Francisco, CA 94016" -290423,Apple Airpods Headphones,1,150,11/09/19 11:15,"444 Willow St, San Francisco, CA 94016" -290424,Lightning Charging Cable,1,14.95,11/13/19 09:54,"813 Adams St, New York City, NY 10001" -290425,AA Batteries (4-pack),2,3.84,11/20/19 11:41,"6 Elm St, San Francisco, CA 94016" -290426,27in 4K Gaming Monitor,1,389.99,11/14/19 20:24,"765 Main St, Austin, TX 73301" -290427,USB-C Charging Cable,1,11.95,11/10/19 17:38,"876 South St, New York City, NY 10001" -290428,AAA Batteries (4-pack),1,2.99,11/03/19 18:59,"763 2nd St, Boston, MA 02215" -290429,Flatscreen TV,1,300,11/19/19 20:18,"32 2nd St, San Francisco, CA 94016" -290430,Bose SoundSport Headphones,1,99.99,11/08/19 13:04,"650 Park St, San Francisco, CA 94016" -290431,Macbook Pro Laptop,1,1700,11/25/19 14:02,"204 Pine St, Los Angeles, CA 90001" -290432,AA Batteries (4-pack),1,3.84,11/12/19 08:15,"508 River St, San Francisco, CA 94016" -290433,USB-C Charging Cable,1,11.95,11/27/19 18:38,"151 5th St, San Francisco, CA 94016" -290434,Bose SoundSport Headphones,1,99.99,11/01/19 17:01,"940 South St, New York City, NY 10001" -290435,USB-C Charging Cable,1,11.95,11/10/19 13:54,"532 Spruce St, Los Angeles, CA 90001" -290436,34in Ultrawide Monitor,1,379.99,11/14/19 09:41,"210 Forest St, San Francisco, CA 94016" -290437,AAA Batteries (4-pack),1,2.99,11/27/19 09:36,"917 Jackson St, New York City, NY 10001" -290438,Wired Headphones,1,11.99,11/25/19 19:53,"177 River St, Los Angeles, CA 90001" -290439,Apple Airpods Headphones,1,150,11/03/19 12:11,"452 Jefferson St, San Francisco, CA 94016" -290440,Apple Airpods Headphones,1,150,11/27/19 09:29,"883 Lincoln St, San Francisco, CA 94016" -,,,,, -290441,LG Dryer,1,600.0,11/05/19 18:15,"758 Elm St, Boston, MA 02215" -290442,USB-C Charging Cable,1,11.95,11/20/19 17:20,"877 1st St, Los Angeles, CA 90001" -290443,Macbook Pro Laptop,1,1700,11/22/19 01:17,"238 Walnut St, Los Angeles, CA 90001" -290444,Lightning Charging Cable,1,14.95,11/30/19 11:32,"442 Lake St, San Francisco, CA 94016" -290445,Apple Airpods Headphones,1,150,11/23/19 03:04,"271 Adams St, San Francisco, CA 94016" -290446,Bose SoundSport Headphones,1,99.99,11/21/19 12:38,"54 Forest St, Seattle, WA 98101" -290447,20in Monitor,1,109.99,11/13/19 11:55,"840 Forest St, Austin, TX 73301" -290448,Bose SoundSport Headphones,1,99.99,11/13/19 07:55,"357 Wilson St, Los Angeles, CA 90001" -290449,Flatscreen TV,1,300,11/05/19 15:38,"25 Hill St, San Francisco, CA 94016" -290450,Wired Headphones,1,11.99,11/25/19 20:54,"124 9th St, Los Angeles, CA 90001" -290451,Wired Headphones,1,11.99,11/07/19 07:55,"303 Spruce St, Austin, TX 73301" -290452,Lightning Charging Cable,1,14.95,11/04/19 07:26,"104 Chestnut St, Atlanta, GA 30301" -290453,USB-C Charging Cable,1,11.95,11/18/19 18:32,"318 Spruce St, San Francisco, CA 94016" -290454,Apple Airpods Headphones,1,150,11/24/19 19:00,"209 Spruce St, Los Angeles, CA 90001" -290455,LG Dryer,1,600.0,11/18/19 09:07,"829 Cedar St, Dallas, TX 75001" -290456,AAA Batteries (4-pack),2,2.99,11/27/19 10:48,"102 1st St, Dallas, TX 75001" -290457,Lightning Charging Cable,1,14.95,11/18/19 09:53,"865 Chestnut St, San Francisco, CA 94016" -290458,USB-C Charging Cable,1,11.95,11/07/19 09:55,"677 8th St, Seattle, WA 98101" -290459,AAA Batteries (4-pack),2,2.99,11/20/19 16:23,"76 Washington St, Los Angeles, CA 90001" -290460,Bose SoundSport Headphones,1,99.99,11/08/19 06:51,"163 South St, San Francisco, CA 94016" -290461,Flatscreen TV,1,300,11/19/19 23:26,"86 Dogwood St, Seattle, WA 98101" -290462,Flatscreen TV,1,300,11/25/19 19:55,"563 13th St, Boston, MA 02215" -290463,AAA Batteries (4-pack),1,2.99,11/10/19 16:38,"364 River St, Dallas, TX 75001" -290464,Bose SoundSport Headphones,1,99.99,11/19/19 22:15,"332 South St, Atlanta, GA 30301" -290465,USB-C Charging Cable,1,11.95,11/06/19 19:51,"894 Chestnut St, New York City, NY 10001" -290466,AAA Batteries (4-pack),1,2.99,11/08/19 09:23,"591 Dogwood St, Dallas, TX 75001" -290467,Lightning Charging Cable,1,14.95,11/18/19 17:22,"201 Cedar St, Los Angeles, CA 90001" -290468,AAA Batteries (4-pack),2,2.99,11/22/19 16:02,"769 Walnut St, Los Angeles, CA 90001" -290469,Flatscreen TV,1,300,11/19/19 18:03,"334 Hickory St, Portland, ME 04101" -290470,iPhone,1,700,11/12/19 11:31,"207 River St, New York City, NY 10001" -290470,Lightning Charging Cable,1,14.95,11/12/19 11:31,"207 River St, New York City, NY 10001" -290471,Apple Airpods Headphones,1,150,11/24/19 18:59,"309 Hickory St, San Francisco, CA 94016" -290472,Flatscreen TV,1,300,11/22/19 09:43,"717 Willow St, San Francisco, CA 94016" -290473,AAA Batteries (4-pack),1,2.99,11/09/19 21:46,"145 13th St, Boston, MA 02215" -290474,iPhone,1,700,11/19/19 22:33,"723 Pine St, San Francisco, CA 94016" -290475,Bose SoundSport Headphones,1,99.99,11/13/19 10:40,"674 Dogwood St, Atlanta, GA 30301" -290476,AAA Batteries (4-pack),2,2.99,11/18/19 11:22,"77 River St, San Francisco, CA 94016" -290477,USB-C Charging Cable,1,11.95,11/02/19 16:50,"8 8th St, New York City, NY 10001" -290478,AA Batteries (4-pack),1,3.84,11/09/19 19:06,"964 Washington St, San Francisco, CA 94016" -290479,AAA Batteries (4-pack),2,2.99,11/08/19 09:40,"88 Jackson St, San Francisco, CA 94016" -290480,Lightning Charging Cable,1,14.95,11/04/19 12:23,"832 Jefferson St, Austin, TX 73301" -290481,AA Batteries (4-pack),2,3.84,11/12/19 15:03,"723 Walnut St, Los Angeles, CA 90001" -290482,20in Monitor,1,109.99,11/24/19 18:07,"7 Dogwood St, San Francisco, CA 94016" -290483,AAA Batteries (4-pack),2,2.99,11/05/19 19:36,"810 11th St, Boston, MA 02215" -290484,AAA Batteries (4-pack),1,2.99,11/26/19 18:41,"627 Adams St, Boston, MA 02215" -290485,34in Ultrawide Monitor,1,379.99,11/23/19 23:32,"616 Willow St, Boston, MA 02215" -290486,AA Batteries (4-pack),1,3.84,11/12/19 18:55,"181 Ridge St, Boston, MA 02215" -290487,Bose SoundSport Headphones,1,99.99,11/03/19 17:50,"848 13th St, Boston, MA 02215" -290488,Lightning Charging Cable,1,14.95,11/22/19 17:58,"344 Center St, Atlanta, GA 30301" -290489,AAA Batteries (4-pack),3,2.99,11/22/19 05:57,"480 Lake St, Dallas, TX 75001" -290490,AAA Batteries (4-pack),1,2.99,11/07/19 10:54,"158 Sunset St, San Francisco, CA 94016" -290491,AA Batteries (4-pack),1,3.84,11/04/19 02:17,"271 Jefferson St, Los Angeles, CA 90001" -290492,AA Batteries (4-pack),1,3.84,11/21/19 17:18,"32 Willow St, Seattle, WA 98101" -290493,Google Phone,1,600,11/28/19 08:07,"631 4th St, Seattle, WA 98101" -290494,AAA Batteries (4-pack),1,2.99,11/27/19 16:42,"692 Walnut St, San Francisco, CA 94016" -290495,Google Phone,1,600,11/05/19 10:51,"451 Hickory St, Portland, OR 97035" -290496,Apple Airpods Headphones,1,150,11/07/19 17:38,"81 7th St, Los Angeles, CA 90001" -290497,27in FHD Monitor,1,149.99,11/09/19 23:19,"368 13th St, Los Angeles, CA 90001" -290498,Bose SoundSport Headphones,1,99.99,11/15/19 17:46,"798 Pine St, Atlanta, GA 30301" -290499,AAA Batteries (4-pack),1,2.99,11/26/19 10:44,"618 Wilson St, New York City, NY 10001" -290500,Bose SoundSport Headphones,1,99.99,11/10/19 11:39,"59 Wilson St, New York City, NY 10001" -290501,27in 4K Gaming Monitor,1,389.99,11/30/19 10:35,"812 Lincoln St, Portland, ME 04101" -290502,Lightning Charging Cable,1,14.95,11/10/19 14:43,"966 Dogwood St, Los Angeles, CA 90001" -290503,USB-C Charging Cable,1,11.95,11/26/19 16:17,"664 Walnut St, San Francisco, CA 94016" -290504,Bose SoundSport Headphones,1,99.99,11/13/19 14:32,"878 Hill St, Seattle, WA 98101" -290505,Lightning Charging Cable,1,14.95,11/30/19 09:12,"786 4th St, New York City, NY 10001" -290506,AAA Batteries (4-pack),1,2.99,11/10/19 10:29,"821 Madison St, Austin, TX 73301" -290507,Lightning Charging Cable,1,14.95,11/02/19 21:01,"636 Sunset St, New York City, NY 10001" -290508,AA Batteries (4-pack),2,3.84,11/17/19 12:16,"916 Adams St, Los Angeles, CA 90001" -290509,AAA Batteries (4-pack),3,2.99,11/26/19 10:59,"906 Dogwood St, San Francisco, CA 94016" -290510,AAA Batteries (4-pack),4,2.99,11/04/19 19:10,"146 Meadow St, New York City, NY 10001" -290511,Macbook Pro Laptop,1,1700,11/08/19 19:39,"85 Ridge St, Atlanta, GA 30301" -290512,Apple Airpods Headphones,1,150,11/29/19 12:26,"224 10th St, Atlanta, GA 30301" -290513,USB-C Charging Cable,2,11.95,11/23/19 15:47,"777 Dogwood St, San Francisco, CA 94016" -290514,USB-C Charging Cable,1,11.95,11/13/19 21:38,"762 8th St, Boston, MA 02215" -290515,Lightning Charging Cable,1,14.95,11/09/19 14:00,"846 8th St, Los Angeles, CA 90001" -290516,AA Batteries (4-pack),2,3.84,11/16/19 18:43,"696 Church St, San Francisco, CA 94016" -290517,Bose SoundSport Headphones,1,99.99,11/13/19 13:40,"323 Dogwood St, Atlanta, GA 30301" -290518,Lightning Charging Cable,1,14.95,11/14/19 11:46,"234 Lincoln St, Boston, MA 02215" -290519,Apple Airpods Headphones,1,150,11/22/19 21:24,"666 8th St, San Francisco, CA 94016" -290520,AA Batteries (4-pack),1,3.84,11/20/19 18:30,"325 Hickory St, San Francisco, CA 94016" -290521,27in 4K Gaming Monitor,1,389.99,11/09/19 14:30,"109 Cherry St, New York City, NY 10001" -290522,AAA Batteries (4-pack),1,2.99,11/10/19 15:23,"381 Washington St, New York City, NY 10001" -290523,Wired Headphones,1,11.99,11/07/19 20:31,"136 Sunset St, Atlanta, GA 30301" -290524,Apple Airpods Headphones,1,150,11/27/19 14:40,"346 South St, Dallas, TX 75001" -290525,Lightning Charging Cable,1,14.95,11/17/19 15:09,"123 9th St, New York City, NY 10001" -290526,Lightning Charging Cable,1,14.95,11/13/19 16:46,"722 12th St, Seattle, WA 98101" -290527,AAA Batteries (4-pack),1,2.99,11/27/19 21:54,"330 Lake St, Portland, OR 97035" -290528,AA Batteries (4-pack),1,3.84,11/12/19 00:39,"75 Sunset St, San Francisco, CA 94016" -290529,Lightning Charging Cable,1,14.95,11/22/19 23:48,"56 Hill St, Portland, OR 97035" -290530,USB-C Charging Cable,1,11.95,11/14/19 10:41,"351 Ridge St, San Francisco, CA 94016" -290531,Wired Headphones,1,11.99,11/26/19 18:26,"266 Hickory St, San Francisco, CA 94016" -290532,iPhone,1,700,11/09/19 09:05,"567 Dogwood St, San Francisco, CA 94016" -290533,AA Batteries (4-pack),1,3.84,11/26/19 15:20,"462 Park St, Boston, MA 02215" -290534,iPhone,1,700,11/25/19 12:54,"430 Adams St, Austin, TX 73301" -290535,USB-C Charging Cable,1,11.95,11/08/19 14:53,"234 Maple St, Atlanta, GA 30301" -290536,Lightning Charging Cable,1,14.95,11/02/19 20:07,"33 14th St, Dallas, TX 75001" -290537,USB-C Charging Cable,1,11.95,11/22/19 18:53,"471 Lakeview St, Atlanta, GA 30301" -290538,Lightning Charging Cable,1,14.95,11/27/19 13:15,"446 Hickory St, Seattle, WA 98101" -290539,USB-C Charging Cable,1,11.95,11/17/19 18:08,"729 Meadow St, San Francisco, CA 94016" -290540,Wired Headphones,1,11.99,11/12/19 15:25,"662 West St, Seattle, WA 98101" -290541,AA Batteries (4-pack),4,3.84,11/08/19 08:26,"552 8th St, Atlanta, GA 30301" -290542,USB-C Charging Cable,1,11.95,11/02/19 23:57,"548 Wilson St, Los Angeles, CA 90001" -290543,iPhone,1,700,11/11/19 11:40,"38 10th St, Seattle, WA 98101" -290544,USB-C Charging Cable,1,11.95,11/01/19 13:13,"264 Park St, New York City, NY 10001" -290545,34in Ultrawide Monitor,1,379.99,11/19/19 19:55,"422 Center St, San Francisco, CA 94016" -290546,Bose SoundSport Headphones,1,99.99,11/06/19 11:28,"727 North St, San Francisco, CA 94016" -290547,ThinkPad Laptop,1,999.99,11/22/19 19:16,"509 14th St, Dallas, TX 75001" -290548,20in Monitor,1,109.99,11/10/19 19:32,"523 Main St, Atlanta, GA 30301" -290549,Lightning Charging Cable,1,14.95,11/10/19 16:48,"884 2nd St, Atlanta, GA 30301" -290550,Bose SoundSport Headphones,1,99.99,11/19/19 01:05,"166 Elm St, New York City, NY 10001" -290551,Lightning Charging Cable,1,14.95,11/30/19 18:02,"805 Maple St, Boston, MA 02215" -290552,Apple Airpods Headphones,1,150,11/27/19 11:58,"194 13th St, Austin, TX 73301" -290553,Lightning Charging Cable,1,14.95,11/06/19 15:55,"80 6th St, Boston, MA 02215" -290554,Bose SoundSport Headphones,1,99.99,11/21/19 17:25,"858 Lincoln St, San Francisco, CA 94016" -290555,Wired Headphones,1,11.99,11/03/19 20:39,"678 Forest St, Boston, MA 02215" -290556,USB-C Charging Cable,1,11.95,11/21/19 08:12,"228 North St, Seattle, WA 98101" -290557,Apple Airpods Headphones,1,150,11/24/19 21:34,"222 Meadow St, Portland, ME 04101" -290558,AAA Batteries (4-pack),2,2.99,11/13/19 10:21,"998 1st St, Atlanta, GA 30301" -290559,20in Monitor,1,109.99,11/24/19 23:10,"251 Sunset St, Los Angeles, CA 90001" -290560,Vareebadd Phone,1,400,11/11/19 14:35,"473 Cedar St, Atlanta, GA 30301" -290561,Apple Airpods Headphones,1,150,11/09/19 19:50,"407 South St, San Francisco, CA 94016" -290562,Wired Headphones,1,11.99,11/09/19 13:50,"427 Jefferson St, San Francisco, CA 94016" -290563,27in FHD Monitor,1,149.99,11/15/19 08:02,"104 8th St, New York City, NY 10001" -290564,Lightning Charging Cable,1,14.95,11/19/19 13:40,"935 Park St, Seattle, WA 98101" -290565,Flatscreen TV,1,300,11/25/19 09:26,"571 Madison St, San Francisco, CA 94016" -290566,Lightning Charging Cable,1,14.95,11/14/19 20:14,"4 Pine St, New York City, NY 10001" -290567,Flatscreen TV,1,300,11/21/19 19:31,"172 Jefferson St, Dallas, TX 75001" -290568,27in FHD Monitor,1,149.99,11/25/19 13:12,"219 Sunset St, Portland, OR 97035" -290569,AA Batteries (4-pack),1,3.84,11/27/19 05:56,"628 Meadow St, Dallas, TX 75001" -290570,Vareebadd Phone,1,400,11/07/19 19:03,"397 8th St, San Francisco, CA 94016" -290570,USB-C Charging Cable,1,11.95,11/07/19 19:03,"397 8th St, San Francisco, CA 94016" -290571,AAA Batteries (4-pack),1,2.99,11/24/19 11:59,"335 North St, Atlanta, GA 30301" -290572,27in 4K Gaming Monitor,1,389.99,11/21/19 12:09,"2 Park St, New York City, NY 10001" -290573,AAA Batteries (4-pack),2,2.99,11/19/19 12:12,"328 Lakeview St, Austin, TX 73301" -290574,AA Batteries (4-pack),1,3.84,11/09/19 09:46,"390 Chestnut St, Atlanta, GA 30301" -290575,Wired Headphones,2,11.99,11/24/19 16:35,"678 South St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -290576,USB-C Charging Cable,1,11.95,11/06/19 07:20,"949 Meadow St, New York City, NY 10001" -290577,USB-C Charging Cable,1,11.95,11/02/19 14:00,"658 Dogwood St, Los Angeles, CA 90001" -290578,20in Monitor,1,109.99,11/03/19 18:14,"864 Johnson St, San Francisco, CA 94016" -290579,Vareebadd Phone,1,400,11/11/19 21:28,"487 Madison St, Austin, TX 73301" -290579,USB-C Charging Cable,1,11.95,11/11/19 21:28,"487 Madison St, Austin, TX 73301" -290580,Lightning Charging Cable,1,14.95,11/15/19 09:38,"618 Maple St, New York City, NY 10001" -290581,AAA Batteries (4-pack),1,2.99,11/30/19 21:37,"428 Walnut St, New York City, NY 10001" -290582,iPhone,1,700,11/10/19 17:15,"638 Main St, Dallas, TX 75001" -290583,Flatscreen TV,1,300,11/02/19 16:23,"266 9th St, Dallas, TX 75001" -290584,iPhone,1,700,11/12/19 21:18,"658 Lake St, Atlanta, GA 30301" -290584,Wired Headphones,1,11.99,11/12/19 21:18,"658 Lake St, Atlanta, GA 30301" -290585,Lightning Charging Cable,1,14.95,11/09/19 07:25,"966 5th St, Boston, MA 02215" -290586,AAA Batteries (4-pack),1,2.99,11/28/19 17:37,"605 Ridge St, Los Angeles, CA 90001" -290587,AAA Batteries (4-pack),1,2.99,11/05/19 22:13,"433 Lincoln St, Austin, TX 73301" -290588,AA Batteries (4-pack),1,3.84,11/04/19 07:31,"144 7th St, Atlanta, GA 30301" -290589,Wired Headphones,1,11.99,11/29/19 23:26,"764 Highland St, Atlanta, GA 30301" -290590,34in Ultrawide Monitor,1,379.99,11/03/19 15:42,"244 Jackson St, Boston, MA 02215" -290591,AA Batteries (4-pack),1,3.84,11/01/19 18:55,"5 Meadow St, Dallas, TX 75001" -290592,Apple Airpods Headphones,1,150,11/01/19 21:02,"21 Jackson St, Los Angeles, CA 90001" -290593,Vareebadd Phone,1,400,11/21/19 08:45,"95 Willow St, Los Angeles, CA 90001" -290594,USB-C Charging Cable,1,11.95,11/14/19 13:51,"894 Willow St, San Francisco, CA 94016" -290595,Wired Headphones,1,11.99,11/11/19 23:27,"454 Hill St, Boston, MA 02215" -290596,AAA Batteries (4-pack),1,2.99,11/26/19 19:45,"821 Cedar St, New York City, NY 10001" -290597,Apple Airpods Headphones,1,150,11/07/19 18:19,"823 River St, San Francisco, CA 94016" -290598,Lightning Charging Cable,1,14.95,11/13/19 15:06,"283 5th St, New York City, NY 10001" -290599,Bose SoundSport Headphones,1,99.99,11/07/19 14:25,"483 Willow St, Los Angeles, CA 90001" -290600,ThinkPad Laptop,1,999.99,11/25/19 11:50,"131 Forest St, San Francisco, CA 94016" -290601,USB-C Charging Cable,1,11.95,11/06/19 21:51,"307 2nd St, Los Angeles, CA 90001" -290602,USB-C Charging Cable,1,11.95,11/23/19 16:07,"630 Dogwood St, Austin, TX 73301" -290603,Bose SoundSport Headphones,1,99.99,11/09/19 22:00,"862 Dogwood St, Austin, TX 73301" -290604,AAA Batteries (4-pack),1,2.99,11/22/19 15:38,"458 Jefferson St, San Francisco, CA 94016" -290605,Lightning Charging Cable,1,14.95,11/20/19 13:42,"733 Jefferson St, Seattle, WA 98101" -290606,USB-C Charging Cable,1,11.95,11/22/19 20:40,"903 Lakeview St, New York City, NY 10001" -290607,USB-C Charging Cable,1,11.95,11/23/19 00:27,"270 Lincoln St, San Francisco, CA 94016" -290608,AA Batteries (4-pack),1,3.84,11/06/19 21:36,"311 6th St, Boston, MA 02215" -290609,Apple Airpods Headphones,1,150,11/12/19 14:39,"520 Spruce St, Portland, OR 97035" -290610,AA Batteries (4-pack),2,3.84,11/09/19 23:26,"739 11th St, Dallas, TX 75001" -290611,Macbook Pro Laptop,1,1700,11/08/19 20:10,"810 Elm St, Portland, OR 97035" -290612,Bose SoundSport Headphones,1,99.99,11/03/19 18:12,"821 Jackson St, San Francisco, CA 94016" -290613,Bose SoundSport Headphones,1,99.99,11/21/19 14:04,"93 7th St, Seattle, WA 98101" -290614,Lightning Charging Cable,1,14.95,11/17/19 22:36,"842 6th St, New York City, NY 10001" -290615,Wired Headphones,1,11.99,11/25/19 00:24,"435 Wilson St, New York City, NY 10001" -290616,AA Batteries (4-pack),3,3.84,11/12/19 12:16,"818 Willow St, Los Angeles, CA 90001" -290616,Wired Headphones,1,11.99,11/12/19 12:16,"818 Willow St, Los Angeles, CA 90001" -290617,Bose SoundSport Headphones,1,99.99,11/22/19 10:27,"404 Forest St, San Francisco, CA 94016" -290618,iPhone,1,700,11/30/19 18:01,"892 13th St, Seattle, WA 98101" -290619,AAA Batteries (4-pack),1,2.99,11/20/19 17:32,"664 Elm St, Seattle, WA 98101" -290620,Lightning Charging Cable,1,14.95,11/06/19 13:29,"410 Meadow St, Portland, OR 97035" -290621,34in Ultrawide Monitor,1,379.99,11/26/19 20:41,"955 Lake St, Austin, TX 73301" -290622,Wired Headphones,1,11.99,11/24/19 17:36,"730 10th St, Los Angeles, CA 90001" -290623,AA Batteries (4-pack),1,3.84,11/04/19 23:45,"683 Forest St, San Francisco, CA 94016" -290624,AA Batteries (4-pack),2,3.84,11/30/19 20:10,"544 Park St, Seattle, WA 98101" -290625,34in Ultrawide Monitor,1,379.99,11/03/19 23:05,"544 12th St, New York City, NY 10001" -290626,AAA Batteries (4-pack),1,2.99,11/06/19 01:45,"121 Center St, Austin, TX 73301" -290627,Bose SoundSport Headphones,1,99.99,11/19/19 04:27,"418 8th St, Austin, TX 73301" -290628,20in Monitor,1,109.99,11/22/19 22:12,"529 South St, Seattle, WA 98101" -290629,Apple Airpods Headphones,1,150,11/07/19 11:14,"966 Jefferson St, Seattle, WA 98101" -290630,ThinkPad Laptop,1,999.99,11/02/19 21:24,"675 Elm St, Boston, MA 02215" -290631,Wired Headphones,1,11.99,11/25/19 19:49,"662 Dogwood St, Portland, OR 97035" -290632,Lightning Charging Cable,1,14.95,11/22/19 14:12,"82 8th St, Portland, OR 97035" -290633,Lightning Charging Cable,1,14.95,11/06/19 19:14,"809 Park St, San Francisco, CA 94016" -290634,AA Batteries (4-pack),1,3.84,11/30/19 19:37,"799 Dogwood St, Boston, MA 02215" -290635,Wired Headphones,1,11.99,11/02/19 22:04,"650 11th St, San Francisco, CA 94016" -290636,USB-C Charging Cable,1,11.95,11/18/19 18:11,"569 Jefferson St, Los Angeles, CA 90001" -290637,AAA Batteries (4-pack),1,2.99,11/30/19 10:22,"604 Madison St, Los Angeles, CA 90001" -290638,27in FHD Monitor,1,149.99,11/29/19 13:56,"827 14th St, San Francisco, CA 94016" -290639,34in Ultrawide Monitor,1,379.99,11/12/19 18:36,"709 Main St, New York City, NY 10001" -290640,USB-C Charging Cable,1,11.95,11/16/19 15:05,"198 7th St, San Francisco, CA 94016" -290641,USB-C Charging Cable,1,11.95,11/19/19 20:34,"360 4th St, San Francisco, CA 94016" -290642,iPhone,1,700,11/24/19 19:36,"838 Jackson St, Los Angeles, CA 90001" -290643,AA Batteries (4-pack),1,3.84,11/30/19 12:06,"528 13th St, San Francisco, CA 94016" -290644,Wired Headphones,1,11.99,11/12/19 16:38,"427 Forest St, Boston, MA 02215" -290645,Macbook Pro Laptop,1,1700,11/12/19 10:17,"20 Maple St, Boston, MA 02215" -290646,AAA Batteries (4-pack),2,2.99,11/25/19 23:23,"900 Spruce St, San Francisco, CA 94016" -290647,27in FHD Monitor,1,149.99,11/01/19 17:34,"655 Walnut St, Atlanta, GA 30301" -290648,Lightning Charging Cable,1,14.95,11/13/19 16:27,"554 Jackson St, Seattle, WA 98101" -290649,Apple Airpods Headphones,1,150,11/28/19 13:51,"878 Meadow St, New York City, NY 10001" -290650,USB-C Charging Cable,1,11.95,11/16/19 10:40,"847 14th St, Seattle, WA 98101" -290651,Lightning Charging Cable,1,14.95,11/19/19 19:09,"295 Hill St, San Francisco, CA 94016" -290652,Wired Headphones,1,11.99,11/28/19 15:45,"9 10th St, Seattle, WA 98101" -290653,Wired Headphones,1,11.99,11/19/19 20:02,"854 Adams St, San Francisco, CA 94016" -290654,iPhone,1,700,11/02/19 11:24,"965 Elm St, Portland, OR 97035" -290655,Wired Headphones,1,11.99,11/03/19 13:16,"756 Chestnut St, San Francisco, CA 94016" -290656,AAA Batteries (4-pack),3,2.99,11/04/19 21:56,"356 Johnson St, Dallas, TX 75001" -290657,Wired Headphones,1,11.99,11/08/19 21:35,"413 Main St, San Francisco, CA 94016" -290658,Apple Airpods Headphones,1,150,11/17/19 22:43,"115 5th St, New York City, NY 10001" -290659,Apple Airpods Headphones,1,150,11/15/19 21:30,"810 7th St, Los Angeles, CA 90001" -290660,AA Batteries (4-pack),1,3.84,11/06/19 09:41,"318 Dogwood St, San Francisco, CA 94016" -290661,27in 4K Gaming Monitor,1,389.99,11/20/19 20:34,"674 Highland St, Los Angeles, CA 90001" -290662,Wired Headphones,1,11.99,11/01/19 15:55,"783 Ridge St, Boston, MA 02215" -290663,USB-C Charging Cable,1,11.95,11/09/19 20:52,"9 Park St, Atlanta, GA 30301" -290664,27in FHD Monitor,1,149.99,11/23/19 00:47,"894 1st St, Los Angeles, CA 90001" -290665,27in FHD Monitor,1,149.99,11/09/19 10:44,"398 1st St, Boston, MA 02215" -290666,Apple Airpods Headphones,1,150,11/17/19 11:59,"386 Jefferson St, Los Angeles, CA 90001" -290667,Macbook Pro Laptop,1,1700,11/18/19 15:02,"197 South St, Atlanta, GA 30301" -290668,AA Batteries (4-pack),3,3.84,11/01/19 23:52,"909 Pine St, Boston, MA 02215" -290669,USB-C Charging Cable,1,11.95,11/21/19 21:59,"12 Washington St, Boston, MA 02215" -290670,34in Ultrawide Monitor,1,379.99,11/26/19 14:05,"149 Washington St, Los Angeles, CA 90001" -290671,Lightning Charging Cable,1,14.95,11/17/19 11:43,"128 Park St, New York City, NY 10001" -290672,ThinkPad Laptop,1,999.99,11/16/19 17:10,"956 Cedar St, New York City, NY 10001" -290673,Apple Airpods Headphones,1,150,11/25/19 13:23,"127 2nd St, Dallas, TX 75001" -290674,Apple Airpods Headphones,1,150,11/09/19 13:35,"161 West St, New York City, NY 10001" -290675,Bose SoundSport Headphones,1,99.99,11/15/19 19:31,"271 Meadow St, Los Angeles, CA 90001" -290676,AA Batteries (4-pack),1,3.84,11/04/19 21:44,"798 Center St, San Francisco, CA 94016" -290677,Flatscreen TV,1,300,11/22/19 08:48,"745 River St, Boston, MA 02215" -290678,27in FHD Monitor,1,149.99,11/13/19 18:21,"567 13th St, Los Angeles, CA 90001" -290679,USB-C Charging Cable,3,11.95,11/23/19 09:25,"420 Ridge St, San Francisco, CA 94016" -290680,ThinkPad Laptop,1,999.99,11/22/19 19:42,"354 6th St, Seattle, WA 98101" -290681,AA Batteries (4-pack),1,3.84,11/29/19 17:43,"731 Lake St, San Francisco, CA 94016" -290682,AAA Batteries (4-pack),1,2.99,11/16/19 14:33,"820 Maple St, San Francisco, CA 94016" -290683,Apple Airpods Headphones,1,150,11/14/19 18:39,"949 Johnson St, Seattle, WA 98101" -290684,20in Monitor,1,109.99,11/30/19 17:42,"320 Adams St, Los Angeles, CA 90001" -290685,Bose SoundSport Headphones,1,99.99,11/06/19 16:01,"514 Walnut St, Boston, MA 02215" -290686,Lightning Charging Cable,2,14.95,11/01/19 17:21,"594 9th St, New York City, NY 10001" -290687,AA Batteries (4-pack),1,3.84,11/02/19 16:41,"90 Spruce St, Boston, MA 02215" -290688,iPhone,1,700,11/28/19 08:40,"133 2nd St, Portland, OR 97035" -290689,AA Batteries (4-pack),1,3.84,11/29/19 19:54,"643 Main St, Seattle, WA 98101" -290690,ThinkPad Laptop,1,999.99,11/22/19 12:51,"163 Dogwood St, New York City, NY 10001" -290691,ThinkPad Laptop,1,999.99,11/14/19 17:13,"537 Dogwood St, San Francisco, CA 94016" -290692,Lightning Charging Cable,1,14.95,11/03/19 18:38,"251 Walnut St, San Francisco, CA 94016" -290692,Flatscreen TV,1,300,11/03/19 18:38,"251 Walnut St, San Francisco, CA 94016" -290693,iPhone,1,700,11/02/19 00:57,"723 Meadow St, Seattle, WA 98101" -290693,27in FHD Monitor,1,149.99,11/02/19 00:57,"723 Meadow St, Seattle, WA 98101" -290694,Macbook Pro Laptop,1,1700,11/25/19 16:57,"631 Meadow St, San Francisco, CA 94016" -290695,Apple Airpods Headphones,1,150,11/20/19 15:35,"146 Ridge St, San Francisco, CA 94016" -290696,Bose SoundSport Headphones,1,99.99,11/02/19 12:04,"854 Jefferson St, San Francisco, CA 94016" -290697,AA Batteries (4-pack),1,3.84,11/13/19 12:18,"369 Wilson St, San Francisco, CA 94016" -290698,Apple Airpods Headphones,1,150,11/30/19 14:39,"115 4th St, Dallas, TX 75001" -290699,Bose SoundSport Headphones,1,99.99,11/04/19 18:22,"462 Lake St, New York City, NY 10001" -290700,USB-C Charging Cable,1,11.95,11/26/19 20:42,"219 Lake St, San Francisco, CA 94016" -290701,ThinkPad Laptop,1,999.99,11/15/19 01:47,"514 Johnson St, Austin, TX 73301" -290702,Lightning Charging Cable,1,14.95,11/26/19 17:39,"957 Jackson St, New York City, NY 10001" -290703,Bose SoundSport Headphones,1,99.99,11/06/19 12:27,"540 6th St, San Francisco, CA 94016" -290704,AA Batteries (4-pack),1,3.84,11/26/19 22:24,"751 Forest St, Los Angeles, CA 90001" -290705,Bose SoundSport Headphones,1,99.99,11/23/19 23:00,"104 9th St, Los Angeles, CA 90001" -290706,USB-C Charging Cable,1,11.95,11/29/19 13:46,"308 Johnson St, Boston, MA 02215" -290707,Lightning Charging Cable,1,14.95,11/10/19 23:58,"45 River St, New York City, NY 10001" -290708,AAA Batteries (4-pack),2,2.99,11/14/19 17:32,"371 8th St, Portland, OR 97035" -290709,Wired Headphones,1,11.99,11/28/19 13:15,"671 Madison St, Los Angeles, CA 90001" -290710,Apple Airpods Headphones,1,150,11/05/19 19:56,"832 4th St, San Francisco, CA 94016" -290711,27in FHD Monitor,1,149.99,11/08/19 11:40,"614 Highland St, Boston, MA 02215" -290712,AA Batteries (4-pack),1,3.84,11/25/19 08:54,"469 Madison St, Los Angeles, CA 90001" -290713,AAA Batteries (4-pack),2,2.99,11/20/19 14:28,"255 Pine St, San Francisco, CA 94016" -290714,Apple Airpods Headphones,1,150,11/09/19 19:00,"725 Park St, New York City, NY 10001" -290715,34in Ultrawide Monitor,1,379.99,11/30/19 19:48,"266 Sunset St, San Francisco, CA 94016" -290716,USB-C Charging Cable,1,11.95,11/02/19 13:20,"537 Main St, Portland, OR 97035" -290717,Apple Airpods Headphones,1,150,11/14/19 12:34,"167 North St, San Francisco, CA 94016" -290718,Lightning Charging Cable,1,14.95,11/28/19 14:34,"87 1st St, San Francisco, CA 94016" -290719,27in 4K Gaming Monitor,1,389.99,11/20/19 15:58,"845 North St, New York City, NY 10001" -290720,AAA Batteries (4-pack),1,2.99,11/05/19 13:00,"122 10th St, Seattle, WA 98101" -290721,Wired Headphones,2,11.99,11/13/19 18:14,"216 North St, New York City, NY 10001" -290722,27in 4K Gaming Monitor,1,389.99,11/26/19 10:29,"290 2nd St, Los Angeles, CA 90001" -290723,ThinkPad Laptop,1,999.99,11/12/19 13:07,"513 Elm St, Los Angeles, CA 90001" -290724,USB-C Charging Cable,1,11.95,11/02/19 16:27,"860 Maple St, New York City, NY 10001" -,,,,, -290725,27in 4K Gaming Monitor,1,389.99,11/11/19 20:06,"43 West St, New York City, NY 10001" -290726,Lightning Charging Cable,1,14.95,11/15/19 21:32,"932 Pine St, Seattle, WA 98101" -290727,USB-C Charging Cable,1,11.95,11/13/19 21:04,"39 Chestnut St, Atlanta, GA 30301" -290728,Lightning Charging Cable,1,14.95,11/25/19 12:29,"301 Pine St, Los Angeles, CA 90001" -290729,27in 4K Gaming Monitor,1,389.99,11/06/19 22:03,"628 6th St, Austin, TX 73301" -290730,AAA Batteries (4-pack),2,2.99,11/18/19 19:03,"4 9th St, Austin, TX 73301" -290731,USB-C Charging Cable,2,11.95,11/11/19 15:11,"908 7th St, Atlanta, GA 30301" -290732,Google Phone,1,600,11/01/19 23:53,"192 Jackson St, San Francisco, CA 94016" -290733,Lightning Charging Cable,1,14.95,11/09/19 21:08,"827 2nd St, Atlanta, GA 30301" -290734,Bose SoundSport Headphones,1,99.99,11/16/19 11:43,"329 Maple St, New York City, NY 10001" -290735,AAA Batteries (4-pack),1,2.99,11/26/19 10:37,"461 Forest St, Los Angeles, CA 90001" -290736,USB-C Charging Cable,2,11.95,11/01/19 21:44,"15 Dogwood St, San Francisco, CA 94016" -290737,USB-C Charging Cable,1,11.95,11/01/19 12:38,"253 Center St, Portland, OR 97035" -290738,Google Phone,1,600,11/07/19 14:13,"463 Lakeview St, Boston, MA 02215" -290739,AA Batteries (4-pack),1,3.84,11/09/19 19:48,"484 9th St, New York City, NY 10001" -290740,AAA Batteries (4-pack),2,2.99,11/27/19 12:16,"33 Wilson St, Boston, MA 02215" -290741,Macbook Pro Laptop,1,1700,11/04/19 21:45,"188 North St, San Francisco, CA 94016" -290742,AAA Batteries (4-pack),1,2.99,11/04/19 20:52,"487 Highland St, San Francisco, CA 94016" -290743,Wired Headphones,1,11.99,11/09/19 04:28,"407 10th St, Portland, OR 97035" -290744,USB-C Charging Cable,1,11.95,11/21/19 22:44,"662 Washington St, San Francisco, CA 94016" -290745,Wired Headphones,1,11.99,11/01/19 13:02,"512 4th St, New York City, NY 10001" -290746,USB-C Charging Cable,1,11.95,11/29/19 19:55,"674 10th St, Dallas, TX 75001" -290747,27in FHD Monitor,1,149.99,11/24/19 12:43,"161 Cedar St, Seattle, WA 98101" -290748,Wired Headphones,1,11.99,11/14/19 20:21,"138 8th St, Los Angeles, CA 90001" -290749,Lightning Charging Cable,1,14.95,11/07/19 18:11,"819 Madison St, San Francisco, CA 94016" -290750,USB-C Charging Cable,1,11.95,11/24/19 12:28,"586 Wilson St, Atlanta, GA 30301" -290751,Lightning Charging Cable,1,14.95,11/10/19 20:13,"846 South St, Seattle, WA 98101" -290752,Wired Headphones,1,11.99,11/16/19 18:05,"65 Cherry St, Los Angeles, CA 90001" -290753,AAA Batteries (4-pack),1,2.99,11/15/19 11:52,"669 Hill St, Los Angeles, CA 90001" -290754,Wired Headphones,1,11.99,11/26/19 14:12,"720 2nd St, Dallas, TX 75001" -290755,27in FHD Monitor,1,149.99,11/11/19 13:39,"774 Cherry St, San Francisco, CA 94016" -290756,Wired Headphones,1,11.99,11/17/19 13:33,"436 Sunset St, Los Angeles, CA 90001" -290757,Bose SoundSport Headphones,1,99.99,11/09/19 13:30,"814 Willow St, Dallas, TX 75001" -290758,Wired Headphones,1,11.99,11/29/19 10:05,"23 12th St, Dallas, TX 75001" -290759,Lightning Charging Cable,1,14.95,11/03/19 14:02,"744 9th St, Atlanta, GA 30301" -290760,AA Batteries (4-pack),2,3.84,11/25/19 17:14,"879 Wilson St, San Francisco, CA 94016" -290761,27in FHD Monitor,1,149.99,11/02/19 18:43,"830 Hickory St, Boston, MA 02215" -290762,Wired Headphones,1,11.99,11/11/19 17:20,"997 Highland St, Los Angeles, CA 90001" -290763,USB-C Charging Cable,1,11.95,11/17/19 11:03,"879 Pine St, Portland, ME 04101" -290764,Lightning Charging Cable,1,14.95,11/02/19 07:21,"22 Forest St, Portland, ME 04101" -290765,Google Phone,1,600,11/09/19 01:46,"118 5th St, New York City, NY 10001" -290765,USB-C Charging Cable,1,11.95,11/09/19 01:46,"118 5th St, New York City, NY 10001" -290766,Bose SoundSport Headphones,1,99.99,11/28/19 13:18,"7 Washington St, Boston, MA 02215" -290767,AA Batteries (4-pack),1,3.84,11/18/19 21:01,"120 West St, New York City, NY 10001" -290768,Lightning Charging Cable,1,14.95,11/22/19 09:31,"165 Lincoln St, Atlanta, GA 30301" -290769,AAA Batteries (4-pack),1,2.99,11/14/19 21:36,"609 River St, Los Angeles, CA 90001" -290770,iPhone,1,700,11/20/19 06:49,"844 Wilson St, Portland, OR 97035" -290771,Lightning Charging Cable,1,14.95,11/22/19 10:09,"145 Meadow St, San Francisco, CA 94016" -290772,Bose SoundSport Headphones,1,99.99,11/12/19 18:30,"825 West St, Boston, MA 02215" -290773,Google Phone,1,600,11/07/19 07:52,"477 Church St, Seattle, WA 98101" -290773,Wired Headphones,1,11.99,11/07/19 07:52,"477 Church St, Seattle, WA 98101" -290774,Apple Airpods Headphones,1,150,11/21/19 17:16,"183 Madison St, San Francisco, CA 94016" -290775,Lightning Charging Cable,1,14.95,11/22/19 19:59,"38 Spruce St, Austin, TX 73301" -290776,AA Batteries (4-pack),1,3.84,11/26/19 10:42,"540 Ridge St, Austin, TX 73301" -290777,Bose SoundSport Headphones,1,99.99,11/05/19 13:53,"619 Adams St, Seattle, WA 98101" -290778,ThinkPad Laptop,1,999.99,11/20/19 22:50,"140 Highland St, San Francisco, CA 94016" -290779,USB-C Charging Cable,1,11.95,11/05/19 20:42,"672 Main St, San Francisco, CA 94016" -290780,Lightning Charging Cable,2,14.95,11/22/19 04:21,"151 14th St, Los Angeles, CA 90001" -290781,Wired Headphones,1,11.99,11/02/19 02:59,"687 Wilson St, Los Angeles, CA 90001" -290782,USB-C Charging Cable,1,11.95,11/12/19 01:51,"54 11th St, Seattle, WA 98101" -290783,Apple Airpods Headphones,1,150,11/05/19 11:21,"565 Dogwood St, Austin, TX 73301" -290784,Lightning Charging Cable,1,14.95,11/01/19 11:44,"115 Forest St, New York City, NY 10001" -290785,Apple Airpods Headphones,1,150,11/29/19 10:31,"857 Main St, San Francisco, CA 94016" -290786,Wired Headphones,1,11.99,11/22/19 08:12,"341 8th St, Portland, OR 97035" -290787,Wired Headphones,1,11.99,11/04/19 22:45,"167 1st St, Atlanta, GA 30301" -290788,USB-C Charging Cable,1,11.95,11/24/19 04:07,"947 Jackson St, Dallas, TX 75001" -290789,Apple Airpods Headphones,1,150,11/07/19 17:40,"21 Main St, New York City, NY 10001" -290790,Lightning Charging Cable,1,14.95,11/05/19 19:38,"611 Meadow St, Los Angeles, CA 90001" -290791,USB-C Charging Cable,1,11.95,11/09/19 18:12,"796 Walnut St, Los Angeles, CA 90001" -290792,Vareebadd Phone,1,400,11/08/19 19:30,"194 Center St, San Francisco, CA 94016" -290793,AAA Batteries (4-pack),1,2.99,11/20/19 09:58,"78 Madison St, Atlanta, GA 30301" -290793,Vareebadd Phone,1,400,11/20/19 09:58,"78 Madison St, Atlanta, GA 30301" -290794,AA Batteries (4-pack),2,3.84,11/18/19 19:15,"745 9th St, Los Angeles, CA 90001" -290795,Vareebadd Phone,1,400,11/26/19 09:23,"949 Meadow St, Los Angeles, CA 90001" -290796,AAA Batteries (4-pack),1,2.99,11/15/19 20:13,"184 West St, Los Angeles, CA 90001" -290797,Bose SoundSport Headphones,1,99.99,11/12/19 21:05,"610 2nd St, San Francisco, CA 94016" -290798,USB-C Charging Cable,1,11.95,11/16/19 21:20,"624 4th St, Boston, MA 02215" -290799,AAA Batteries (4-pack),2,2.99,11/18/19 21:14,"905 Jackson St, Los Angeles, CA 90001" -290800,USB-C Charging Cable,1,11.95,11/21/19 06:55,"104 River St, San Francisco, CA 94016" -290801,AA Batteries (4-pack),1,3.84,11/20/19 09:24,"517 Cherry St, Seattle, WA 98101" -290802,Bose SoundSport Headphones,1,99.99,11/22/19 17:23,"302 South St, Atlanta, GA 30301" -290803,AA Batteries (4-pack),1,3.84,11/13/19 08:16,"332 Jackson St, Boston, MA 02215" -290804,AA Batteries (4-pack),1,3.84,11/03/19 11:23,"966 Hill St, Boston, MA 02215" -290805,Wired Headphones,1,11.99,11/21/19 14:02,"10 Chestnut St, San Francisco, CA 94016" -290806,USB-C Charging Cable,1,11.95,11/03/19 09:34,"81 Meadow St, San Francisco, CA 94016" -290807,AA Batteries (4-pack),1,3.84,11/12/19 15:48,"709 Washington St, San Francisco, CA 94016" -290808,USB-C Charging Cable,1,11.95,11/27/19 15:08,"826 14th St, Los Angeles, CA 90001" -290809,AAA Batteries (4-pack),1,2.99,11/21/19 10:32,"83 12th St, San Francisco, CA 94016" -290810,iPhone,1,700,11/23/19 12:46,"710 Walnut St, Boston, MA 02215" -290811,Google Phone,1,600,11/19/19 20:19,"146 Chestnut St, Seattle, WA 98101" -290811,Bose SoundSport Headphones,1,99.99,11/19/19 20:19,"146 Chestnut St, Seattle, WA 98101" -290812,AA Batteries (4-pack),1,3.84,11/23/19 21:35,"271 Willow St, San Francisco, CA 94016" -290813,Vareebadd Phone,1,400,11/08/19 09:32,"663 Jackson St, Austin, TX 73301" -290814,AAA Batteries (4-pack),1,2.99,11/20/19 12:07,"289 2nd St, San Francisco, CA 94016" -290815,Flatscreen TV,1,300,11/18/19 19:59,"595 Chestnut St, San Francisco, CA 94016" -290816,Wired Headphones,1,11.99,11/15/19 02:05,"595 Jefferson St, Austin, TX 73301" -290817,ThinkPad Laptop,1,999.99,11/24/19 19:35,"905 Spruce St, Boston, MA 02215" -290818,34in Ultrawide Monitor,1,379.99,11/19/19 06:57,"548 Center St, San Francisco, CA 94016" -290819,20in Monitor,1,109.99,11/04/19 11:52,"156 14th St, New York City, NY 10001" -290820,Wired Headphones,1,11.99,11/07/19 21:35,"379 Dogwood St, Seattle, WA 98101" -290821,Apple Airpods Headphones,1,150,11/29/19 19:07,"244 Spruce St, San Francisco, CA 94016" -290822,Lightning Charging Cable,1,14.95,11/23/19 16:23,"736 Lakeview St, San Francisco, CA 94016" -290823,Apple Airpods Headphones,1,150,11/27/19 18:50,"615 Lakeview St, San Francisco, CA 94016" -290824,USB-C Charging Cable,1,11.95,11/11/19 20:00,"879 North St, Los Angeles, CA 90001" -290825,Google Phone,1,600,11/11/19 19:34,"850 8th St, Los Angeles, CA 90001" -290826,AA Batteries (4-pack),2,3.84,11/29/19 23:37,"570 Maple St, Austin, TX 73301" -290827,Lightning Charging Cable,1,14.95,11/26/19 12:47,"781 Highland St, Seattle, WA 98101" -290828,AA Batteries (4-pack),1,3.84,11/11/19 13:47,"451 West St, Los Angeles, CA 90001" -290829,Wired Headphones,1,11.99,11/29/19 18:25,"243 South St, San Francisco, CA 94016" -290830,Wired Headphones,1,11.99,11/22/19 20:44,"574 Washington St, San Francisco, CA 94016" -290831,Apple Airpods Headphones,1,150,11/28/19 15:47,"700 Maple St, Portland, OR 97035" -290832,AAA Batteries (4-pack),1,2.99,11/29/19 23:04,"275 5th St, Los Angeles, CA 90001" -290833,AAA Batteries (4-pack),2,2.99,11/17/19 19:49,"279 Park St, Boston, MA 02215" -290834,27in 4K Gaming Monitor,1,389.99,11/06/19 00:00,"93 1st St, Boston, MA 02215" -290835,Lightning Charging Cable,1,14.95,11/14/19 22:23,"518 14th St, San Francisco, CA 94016" -290836,AAA Batteries (4-pack),1,2.99,11/23/19 11:30,"909 Lake St, New York City, NY 10001" -290837,AAA Batteries (4-pack),3,2.99,11/08/19 19:26,"670 Dogwood St, San Francisco, CA 94016" -290838,27in FHD Monitor,1,149.99,11/09/19 23:53,"803 Sunset St, Los Angeles, CA 90001" -290839,Macbook Pro Laptop,1,1700,11/21/19 22:37,"7 Washington St, Atlanta, GA 30301" -290840,Bose SoundSport Headphones,1,99.99,11/11/19 07:09,"572 Spruce St, New York City, NY 10001" -290841,Wired Headphones,1,11.99,11/23/19 16:55,"489 Pine St, Dallas, TX 75001" -290842,Lightning Charging Cable,1,14.95,11/15/19 21:32,"313 Cedar St, Los Angeles, CA 90001" -290843,Apple Airpods Headphones,1,150,11/21/19 15:00,"42 Hill St, Seattle, WA 98101" -290844,Wired Headphones,1,11.99,11/27/19 09:34,"242 River St, Atlanta, GA 30301" -290845,AA Batteries (4-pack),1,3.84,11/08/19 12:55,"833 Walnut St, Seattle, WA 98101" -290846,AAA Batteries (4-pack),2,2.99,11/06/19 22:38,"805 North St, San Francisco, CA 94016" -290847,USB-C Charging Cable,1,11.95,11/07/19 17:27,"970 Walnut St, Los Angeles, CA 90001" -290848,Wired Headphones,1,11.99,11/13/19 12:22,"957 Dogwood St, San Francisco, CA 94016" -290849,Macbook Pro Laptop,1,1700,11/17/19 09:26,"750 Park St, Seattle, WA 98101" -290850,Lightning Charging Cable,1,14.95,11/16/19 18:03,"445 Lake St, Seattle, WA 98101" -290851,LG Dryer,1,600.0,11/12/19 00:42,"999 2nd St, Los Angeles, CA 90001" -290852,Apple Airpods Headphones,1,150,11/19/19 20:12,"21 10th St, Boston, MA 02215" -290853,AAA Batteries (4-pack),1,2.99,11/06/19 10:04,"136 12th St, New York City, NY 10001" -290854,ThinkPad Laptop,1,999.99,11/14/19 02:56,"895 Sunset St, Los Angeles, CA 90001" -290855,34in Ultrawide Monitor,1,379.99,11/04/19 08:39,"17 Church St, Boston, MA 02215" -290856,Apple Airpods Headphones,1,150,11/11/19 17:04,"422 14th St, New York City, NY 10001" -290857,27in 4K Gaming Monitor,1,389.99,11/19/19 15:50,"587 Madison St, Los Angeles, CA 90001" -290858,Apple Airpods Headphones,1,150,11/20/19 10:15,"388 Lincoln St, Los Angeles, CA 90001" -290859,34in Ultrawide Monitor,1,379.99,11/18/19 12:38,"545 Cherry St, Atlanta, GA 30301" -290860,USB-C Charging Cable,1,11.95,11/18/19 16:16,"793 River St, Los Angeles, CA 90001" -290861,20in Monitor,1,109.99,11/22/19 19:57,"323 Forest St, San Francisco, CA 94016" -290862,AAA Batteries (4-pack),1,2.99,11/27/19 13:12,"566 4th St, Austin, TX 73301" -290863,AAA Batteries (4-pack),3,2.99,11/21/19 09:03,"180 8th St, Austin, TX 73301" -290864,AA Batteries (4-pack),1,3.84,11/16/19 20:11,"156 Lincoln St, Los Angeles, CA 90001" -290865,USB-C Charging Cable,1,11.95,11/03/19 17:38,"473 1st St, San Francisco, CA 94016" -290866,LG Washing Machine,1,600.0,11/30/19 13:57,"596 Madison St, San Francisco, CA 94016" -290867,Wired Headphones,1,11.99,11/22/19 10:03,"273 Lakeview St, New York City, NY 10001" -290868,Lightning Charging Cable,1,14.95,11/08/19 22:06,"317 2nd St, Atlanta, GA 30301" -290869,Wired Headphones,1,11.99,11/21/19 18:19,"305 Forest St, Atlanta, GA 30301" -290870,Vareebadd Phone,1,400,11/11/19 23:19,"748 Main St, San Francisco, CA 94016" -290870,Bose SoundSport Headphones,1,99.99,11/11/19 23:19,"748 Main St, San Francisco, CA 94016" -290871,iPhone,1,700,11/14/19 22:14,"589 1st St, Portland, OR 97035" -290872,20in Monitor,1,109.99,11/19/19 07:30,"577 Cedar St, Portland, OR 97035" -290872,AAA Batteries (4-pack),2,2.99,11/19/19 07:30,"577 Cedar St, Portland, OR 97035" -290873,34in Ultrawide Monitor,1,379.99,11/30/19 14:10,"797 Lakeview St, Austin, TX 73301" -290874,Lightning Charging Cable,1,14.95,11/27/19 18:32,"276 Lakeview St, San Francisco, CA 94016" -290875,Wired Headphones,1,11.99,11/10/19 20:15,"50 Maple St, New York City, NY 10001" -290875,Bose SoundSport Headphones,1,99.99,11/10/19 20:15,"50 Maple St, New York City, NY 10001" -290876,Bose SoundSport Headphones,1,99.99,11/18/19 12:16,"574 Park St, Dallas, TX 75001" -290877,AA Batteries (4-pack),1,3.84,11/10/19 21:54,"822 14th St, San Francisco, CA 94016" -290878,27in 4K Gaming Monitor,1,389.99,11/24/19 12:03,"98 6th St, New York City, NY 10001" -290879,Bose SoundSport Headphones,1,99.99,11/10/19 20:35,"544 Hickory St, Austin, TX 73301" -290880,27in FHD Monitor,1,149.99,11/14/19 13:21,"2 Elm St, San Francisco, CA 94016" -290881,USB-C Charging Cable,1,11.95,11/06/19 17:08,"268 12th St, Seattle, WA 98101" -290882,AAA Batteries (4-pack),1,2.99,11/14/19 11:20,"617 Hill St, San Francisco, CA 94016" -290883,AA Batteries (4-pack),2,3.84,11/13/19 18:36,"976 Lake St, Boston, MA 02215" -290884,AAA Batteries (4-pack),1,2.99,11/05/19 23:11,"187 Lakeview St, Atlanta, GA 30301" -290885,Apple Airpods Headphones,1,150,11/11/19 12:27,"784 Highland St, Los Angeles, CA 90001" -290886,Bose SoundSport Headphones,1,99.99,11/22/19 21:40,"741 14th St, Seattle, WA 98101" -290887,AA Batteries (4-pack),1,3.84,11/25/19 14:26,"258 13th St, Dallas, TX 75001" -290888,AA Batteries (4-pack),2,3.84,11/03/19 15:19,"961 Pine St, Los Angeles, CA 90001" -290889,USB-C Charging Cable,1,11.95,11/25/19 19:55,"402 12th St, New York City, NY 10001" -290890,iPhone,1,700,11/17/19 15:38,"414 6th St, Boston, MA 02215" -290890,Lightning Charging Cable,1,14.95,11/17/19 15:38,"414 6th St, Boston, MA 02215" -290891,Bose SoundSport Headphones,1,99.99,11/22/19 13:51,"907 South St, San Francisco, CA 94016" -290892,Wired Headphones,1,11.99,11/17/19 19:19,"855 Church St, San Francisco, CA 94016" -290893,AAA Batteries (4-pack),1,2.99,11/06/19 23:42,"819 6th St, New York City, NY 10001" -290894,USB-C Charging Cable,1,11.95,11/27/19 07:56,"208 13th St, Seattle, WA 98101" -290895,Apple Airpods Headphones,1,150,11/25/19 15:51,"983 Johnson St, Portland, OR 97035" -290896,27in 4K Gaming Monitor,1,389.99,11/22/19 13:18,"332 10th St, Austin, TX 73301" -290897,Apple Airpods Headphones,1,150,11/13/19 20:43,"603 10th St, New York City, NY 10001" -290898,AAA Batteries (4-pack),2,2.99,11/24/19 12:20,"93 Main St, Portland, OR 97035" -290899,AAA Batteries (4-pack),1,2.99,11/17/19 20:59,"669 South St, Los Angeles, CA 90001" -290900,USB-C Charging Cable,1,11.95,11/24/19 13:33,"295 Spruce St, New York City, NY 10001" -290901,Lightning Charging Cable,1,14.95,11/15/19 01:20,"82 Elm St, New York City, NY 10001" -290901,Apple Airpods Headphones,1,150,11/15/19 01:20,"82 Elm St, New York City, NY 10001" -290902,AA Batteries (4-pack),1,3.84,11/18/19 21:30,"138 Main St, Seattle, WA 98101" -290903,Lightning Charging Cable,1,14.95,11/26/19 22:52,"910 Lincoln St, San Francisco, CA 94016" -290904,AAA Batteries (4-pack),1,2.99,11/30/19 22:07,"780 Hickory St, San Francisco, CA 94016" -290905,Flatscreen TV,1,300,11/10/19 21:28,"716 Sunset St, New York City, NY 10001" -290906,USB-C Charging Cable,1,11.95,12/01/19 01:29,"998 1st St, Los Angeles, CA 90001" -290907,USB-C Charging Cable,1,11.95,11/28/19 10:23,"522 9th St, Boston, MA 02215" -290908,Lightning Charging Cable,1,14.95,11/09/19 15:41,"57 Main St, San Francisco, CA 94016" -290909,USB-C Charging Cable,1,11.95,11/03/19 23:47,"179 7th St, San Francisco, CA 94016" -290910,Wired Headphones,1,11.99,11/11/19 22:35,"448 6th St, New York City, NY 10001" -290911,Lightning Charging Cable,1,14.95,11/10/19 22:54,"907 Hill St, Portland, OR 97035" -290912,Lightning Charging Cable,1,14.95,11/24/19 21:46,"237 Maple St, Atlanta, GA 30301" -290913,Wired Headphones,1,11.99,11/06/19 11:58,"119 4th St, Dallas, TX 75001" -290914,AAA Batteries (4-pack),1,2.99,11/05/19 08:05,"347 Ridge St, San Francisco, CA 94016" -290915,USB-C Charging Cable,1,11.95,11/21/19 15:38,"900 Jackson St, New York City, NY 10001" -290916,iPhone,1,700,11/28/19 20:16,"468 Pine St, Portland, OR 97035" -290917,AA Batteries (4-pack),1,3.84,11/19/19 18:06,"433 Main St, Boston, MA 02215" -290918,Vareebadd Phone,1,400,11/24/19 22:06,"460 Hickory St, New York City, NY 10001" -290919,USB-C Charging Cable,1,11.95,11/28/19 22:27,"772 Meadow St, San Francisco, CA 94016" -290920,AA Batteries (4-pack),3,3.84,11/24/19 10:51,"463 Walnut St, New York City, NY 10001" -290921,Apple Airpods Headphones,1,150,11/03/19 17:27,"375 Johnson St, Dallas, TX 75001" -290922,AAA Batteries (4-pack),2,2.99,11/27/19 16:24,"381 Lincoln St, Seattle, WA 98101" -290923,Flatscreen TV,1,300,11/12/19 16:22,"676 Wilson St, Austin, TX 73301" -290924,Flatscreen TV,1,300,11/27/19 18:50,"372 Wilson St, San Francisco, CA 94016" -290925,27in 4K Gaming Monitor,1,389.99,11/18/19 14:35,"180 Chestnut St, Boston, MA 02215" -290926,AAA Batteries (4-pack),2,2.99,11/12/19 16:05,"775 Jefferson St, Seattle, WA 98101" -290927,USB-C Charging Cable,1,11.95,11/14/19 13:31,"955 Chestnut St, Los Angeles, CA 90001" -290928,27in FHD Monitor,1,149.99,11/08/19 18:01,"30 7th St, Atlanta, GA 30301" -290929,Lightning Charging Cable,1,14.95,11/12/19 18:45,"861 Lakeview St, Portland, OR 97035" -290930,AA Batteries (4-pack),1,3.84,11/07/19 11:01,"307 Meadow St, San Francisco, CA 94016" -290931,Apple Airpods Headphones,1,150,11/10/19 10:25,"463 1st St, Los Angeles, CA 90001" -290932,27in FHD Monitor,1,149.99,11/17/19 14:06,"823 Hickory St, Austin, TX 73301" -290933,Lightning Charging Cable,1,14.95,11/06/19 23:13,"308 Wilson St, New York City, NY 10001" -290934,Lightning Charging Cable,1,14.95,11/19/19 07:53,"316 2nd St, Los Angeles, CA 90001" -290935,Wired Headphones,1,11.99,11/02/19 14:54,"39 Hill St, Los Angeles, CA 90001" -290936,AAA Batteries (4-pack),3,2.99,11/07/19 14:50,"858 Ridge St, New York City, NY 10001" -290937,Apple Airpods Headphones,1,150,11/29/19 23:24,"816 12th St, San Francisco, CA 94016" -290938,AAA Batteries (4-pack),1,2.99,11/07/19 21:27,"488 Madison St, San Francisco, CA 94016" -290939,Lightning Charging Cable,1,14.95,11/26/19 11:50,"635 10th St, Boston, MA 02215" -290940,USB-C Charging Cable,2,11.95,11/29/19 21:41,"722 Jefferson St, New York City, NY 10001" -290941,Macbook Pro Laptop,1,1700,11/07/19 18:57,"366 River St, Austin, TX 73301" -290942,34in Ultrawide Monitor,1,379.99,11/24/19 13:17,"508 Sunset St, Boston, MA 02215" -290943,Bose SoundSport Headphones,1,99.99,11/17/19 00:12,"422 8th St, San Francisco, CA 94016" -290944,AA Batteries (4-pack),1,3.84,11/02/19 14:21,"619 Center St, San Francisco, CA 94016" -290945,AAA Batteries (4-pack),1,2.99,11/08/19 11:18,"216 Highland St, Portland, OR 97035" -290946,AA Batteries (4-pack),1,3.84,11/20/19 17:16,"56 Hill St, Dallas, TX 75001" -290947,AA Batteries (4-pack),3,3.84,11/13/19 17:18,"21 Jackson St, New York City, NY 10001" -290948,Lightning Charging Cable,2,14.95,11/21/19 19:09,"12 12th St, Atlanta, GA 30301" -290949,Bose SoundSport Headphones,1,99.99,11/28/19 22:08,"591 Center St, San Francisco, CA 94016" -290950,Google Phone,1,600,11/17/19 07:34,"629 1st St, Atlanta, GA 30301" -290950,USB-C Charging Cable,1,11.95,11/17/19 07:34,"629 1st St, Atlanta, GA 30301" -290951,iPhone,1,700,11/22/19 22:50,"707 Church St, Portland, OR 97035" -290952,Wired Headphones,1,11.99,11/10/19 13:32,"646 Chestnut St, New York City, NY 10001" -290953,27in FHD Monitor,1,149.99,11/12/19 16:57,"423 Adams St, Austin, TX 73301" -290954,AA Batteries (4-pack),1,3.84,11/06/19 22:35,"119 Chestnut St, San Francisco, CA 94016" -290955,AA Batteries (4-pack),1,3.84,11/26/19 14:59,"415 Walnut St, Los Angeles, CA 90001" -290956,Lightning Charging Cable,1,14.95,11/12/19 07:27,"831 6th St, San Francisco, CA 94016" -290957,Apple Airpods Headphones,2,150,11/29/19 01:46,"677 Cherry St, San Francisco, CA 94016" -290958,Lightning Charging Cable,1,14.95,11/12/19 21:38,"761 2nd St, Boston, MA 02215" -290959,Apple Airpods Headphones,1,150,11/20/19 13:03,"284 Main St, Boston, MA 02215" -290960,Lightning Charging Cable,1,14.95,11/11/19 19:26,"566 Washington St, New York City, NY 10001" -290961,27in 4K Gaming Monitor,1,389.99,11/30/19 20:50,"385 Center St, Los Angeles, CA 90001" -290962,Bose SoundSport Headphones,1,99.99,11/22/19 13:14,"792 South St, San Francisco, CA 94016" -290963,AA Batteries (4-pack),2,3.84,11/10/19 10:39,"523 7th St, San Francisco, CA 94016" -290964,Wired Headphones,1,11.99,11/19/19 14:41,"663 Chestnut St, Atlanta, GA 30301" -290965,Lightning Charging Cable,2,14.95,11/03/19 02:05,"155 Madison St, Los Angeles, CA 90001" -290966,Wired Headphones,1,11.99,11/02/19 12:54,"968 Sunset St, Boston, MA 02215" -290967,USB-C Charging Cable,1,11.95,11/10/19 19:40,"596 Highland St, San Francisco, CA 94016" -290968,Lightning Charging Cable,1,14.95,11/10/19 17:35,"4 Sunset St, Los Angeles, CA 90001" -290969,AAA Batteries (4-pack),2,2.99,11/07/19 22:44,"214 North St, Boston, MA 02215" -290970,AA Batteries (4-pack),1,3.84,11/23/19 19:44,"530 13th St, Austin, TX 73301" -290971,USB-C Charging Cable,1,11.95,11/02/19 19:07,"485 Willow St, Boston, MA 02215" -290972,Wired Headphones,1,11.99,11/28/19 11:16,"697 Maple St, Boston, MA 02215" -290973,Apple Airpods Headphones,1,150,11/13/19 10:27,"146 4th St, Boston, MA 02215" -290974,AAA Batteries (4-pack),1,2.99,11/29/19 17:21,"806 Jackson St, New York City, NY 10001" -290975,27in FHD Monitor,1,149.99,11/20/19 10:42,"470 Ridge St, Seattle, WA 98101" -290976,Bose SoundSport Headphones,2,99.99,11/14/19 07:30,"741 North St, Atlanta, GA 30301" -290977,Wired Headphones,2,11.99,11/13/19 14:36,"684 13th St, San Francisco, CA 94016" -290978,34in Ultrawide Monitor,1,379.99,11/13/19 16:30,"599 Washington St, Portland, ME 04101" -290979,Wired Headphones,1,11.99,11/19/19 12:31,"223 Ridge St, Portland, ME 04101" -290980,AA Batteries (4-pack),1,3.84,11/30/19 15:40,"861 5th St, San Francisco, CA 94016" -290981,Wired Headphones,2,11.99,11/24/19 10:20,"920 10th St, Los Angeles, CA 90001" -290982,Lightning Charging Cable,1,14.95,11/15/19 11:13,"625 Willow St, San Francisco, CA 94016" -290983,Lightning Charging Cable,1,14.95,11/15/19 21:54,"428 4th St, Austin, TX 73301" -290984,27in FHD Monitor,1,149.99,11/19/19 17:48,"931 Johnson St, San Francisco, CA 94016" -290985,Wired Headphones,1,11.99,11/16/19 06:04,"91 6th St, Atlanta, GA 30301" -290986,34in Ultrawide Monitor,1,379.99,11/24/19 16:44,"183 9th St, Seattle, WA 98101" -290987,USB-C Charging Cable,1,11.95,11/11/19 19:05,"860 Jackson St, Seattle, WA 98101" -290988,Google Phone,1,600,11/22/19 01:26,"779 Ridge St, Dallas, TX 75001" -290989,LG Dryer,1,600.0,11/07/19 09:21,"700 Johnson St, New York City, NY 10001" -290990,Wired Headphones,1,11.99,11/07/19 22:56,"614 Main St, New York City, NY 10001" -290991,Bose SoundSport Headphones,1,99.99,11/23/19 12:17,"778 Chestnut St, Dallas, TX 75001" -290992,Macbook Pro Laptop,1,1700,11/21/19 11:20,"901 Chestnut St, Seattle, WA 98101" -290993,AAA Batteries (4-pack),2,2.99,11/23/19 09:11,"42 South St, Portland, OR 97035" -290994,Bose SoundSport Headphones,1,99.99,11/27/19 15:12,"774 1st St, Boston, MA 02215" -290995,AA Batteries (4-pack),1,3.84,11/24/19 23:32,"592 Johnson St, Los Angeles, CA 90001" -290996,27in FHD Monitor,1,149.99,11/04/19 01:17,"978 Chestnut St, Los Angeles, CA 90001" -290997,Bose SoundSport Headphones,1,99.99,11/24/19 20:41,"552 Madison St, New York City, NY 10001" -290998,Wired Headphones,1,11.99,11/27/19 05:33,"155 Hickory St, New York City, NY 10001" -290999,Apple Airpods Headphones,1,150,11/20/19 23:28,"346 Elm St, New York City, NY 10001" -291000,AAA Batteries (4-pack),1,2.99,11/29/19 22:22,"310 Lakeview St, San Francisco, CA 94016" -291001,USB-C Charging Cable,1,11.95,11/05/19 16:28,"79 Dogwood St, San Francisco, CA 94016" -291002,AA Batteries (4-pack),1,3.84,11/05/19 12:10,"936 4th St, New York City, NY 10001" -291003,USB-C Charging Cable,1,11.95,11/20/19 17:18,"236 Elm St, Los Angeles, CA 90001" -291004,AA Batteries (4-pack),1,3.84,11/29/19 09:46,"773 8th St, New York City, NY 10001" -291005,AA Batteries (4-pack),1,3.84,11/21/19 09:38,"112 10th St, Los Angeles, CA 90001" -291006,Lightning Charging Cable,2,14.95,11/05/19 01:04,"361 Wilson St, Portland, OR 97035" -291007,27in FHD Monitor,1,149.99,11/08/19 01:25,"3 Willow St, San Francisco, CA 94016" -291008,AA Batteries (4-pack),2,3.84,11/01/19 13:20,"371 Madison St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -291009,USB-C Charging Cable,1,11.95,11/11/19 18:00,"248 Forest St, Los Angeles, CA 90001" -291010,AA Batteries (4-pack),1,3.84,11/28/19 05:38,"894 Sunset St, San Francisco, CA 94016" -291011,Wired Headphones,1,11.99,11/10/19 21:22,"455 Cherry St, Los Angeles, CA 90001" -291012,Bose SoundSport Headphones,1,99.99,11/21/19 19:36,"675 North St, San Francisco, CA 94016" -291013,AAA Batteries (4-pack),1,2.99,11/17/19 15:53,"92 12th St, Los Angeles, CA 90001" -291014,Wired Headphones,1,11.99,11/02/19 15:07,"784 10th St, Los Angeles, CA 90001" -291015,Wired Headphones,1,11.99,11/20/19 18:14,"95 Main St, Seattle, WA 98101" -291016,Wired Headphones,1,11.99,11/18/19 23:21,"927 10th St, Dallas, TX 75001" -291017,ThinkPad Laptop,1,999.99,11/09/19 13:59,"292 5th St, Atlanta, GA 30301" -291018,Wired Headphones,1,11.99,11/18/19 22:22,"735 River St, Los Angeles, CA 90001" -291019,AAA Batteries (4-pack),1,2.99,11/06/19 19:48,"108 Jefferson St, New York City, NY 10001" -291020,Google Phone,1,600,11/06/19 22:58,"74 Cherry St, Los Angeles, CA 90001" -291021,Lightning Charging Cable,1,14.95,11/23/19 20:30,"299 10th St, San Francisco, CA 94016" -291022,AA Batteries (4-pack),1,3.84,11/20/19 12:37,"696 Main St, Los Angeles, CA 90001" -291023,Macbook Pro Laptop,1,1700,11/08/19 14:24,"916 1st St, Dallas, TX 75001" -291024,AA Batteries (4-pack),1,3.84,11/09/19 15:06,"795 Lincoln St, San Francisco, CA 94016" -291025,AAA Batteries (4-pack),3,2.99,11/03/19 12:05,"279 South St, Atlanta, GA 30301" -291026,AAA Batteries (4-pack),1,2.99,11/16/19 20:05,"684 13th St, Los Angeles, CA 90001" -291027,Macbook Pro Laptop,1,1700,11/19/19 12:00,"757 Lincoln St, Austin, TX 73301" -291028,20in Monitor,1,109.99,11/04/19 12:16,"355 West St, Los Angeles, CA 90001" -291029,USB-C Charging Cable,1,11.95,11/12/19 21:46,"309 Ridge St, Boston, MA 02215" -291030,Google Phone,1,600,11/20/19 18:25,"467 Forest St, Los Angeles, CA 90001" -291030,Wired Headphones,2,11.99,11/20/19 18:25,"467 Forest St, Los Angeles, CA 90001" -291031,27in FHD Monitor,1,149.99,11/13/19 23:23,"199 Sunset St, New York City, NY 10001" -291032,AAA Batteries (4-pack),2,2.99,11/02/19 11:23,"715 11th St, San Francisco, CA 94016" -291033,AAA Batteries (4-pack),1,2.99,11/22/19 17:01,"213 South St, Atlanta, GA 30301" -291034,AAA Batteries (4-pack),8,2.99,11/09/19 16:30,"268 Willow St, Dallas, TX 75001" -291035,27in FHD Monitor,1,149.99,11/14/19 23:08,"625 8th St, New York City, NY 10001" -291036,USB-C Charging Cable,1,11.95,11/05/19 17:14,"71 Ridge St, San Francisco, CA 94016" -291037,Lightning Charging Cable,1,14.95,11/09/19 19:26,"921 Washington St, San Francisco, CA 94016" -291038,Wired Headphones,1,11.99,11/19/19 17:24,"677 2nd St, San Francisco, CA 94016" -291039,Flatscreen TV,1,300,11/11/19 05:53,"362 Highland St, Los Angeles, CA 90001" -291039,ThinkPad Laptop,1,999.99,11/11/19 05:53,"362 Highland St, Los Angeles, CA 90001" -291040,AAA Batteries (4-pack),2,2.99,11/18/19 13:13,"237 Adams St, Austin, TX 73301" -291041,AA Batteries (4-pack),3,3.84,11/04/19 19:48,"78 Park St, San Francisco, CA 94016" -291042,27in FHD Monitor,1,149.99,11/30/19 01:44,"256 Jackson St, Dallas, TX 75001" -291043,AA Batteries (4-pack),1,3.84,11/06/19 12:51,"955 5th St, New York City, NY 10001" -291044,Wired Headphones,1,11.99,11/17/19 18:00,"197 10th St, Boston, MA 02215" -291045,Bose SoundSport Headphones,1,99.99,11/22/19 21:08,"459 Lincoln St, San Francisco, CA 94016" -291046,34in Ultrawide Monitor,1,379.99,11/20/19 13:11,"647 Cherry St, Austin, TX 73301" -291047,USB-C Charging Cable,1,11.95,11/15/19 23:06,"379 6th St, Seattle, WA 98101" -291047,AAA Batteries (4-pack),1,2.99,11/15/19 23:06,"379 6th St, Seattle, WA 98101" -291048,ThinkPad Laptop,1,999.99,11/27/19 17:50,"949 Church St, Atlanta, GA 30301" -291049,LG Dryer,1,600.0,11/08/19 17:14,"344 14th St, Austin, TX 73301" -291050,Wired Headphones,1,11.99,11/03/19 20:41,"16 Church St, Austin, TX 73301" -291051,USB-C Charging Cable,1,11.95,11/22/19 19:15,"39 12th St, Portland, OR 97035" -291052,Apple Airpods Headphones,1,150,11/17/19 21:27,"202 14th St, Seattle, WA 98101" -291053,27in FHD Monitor,1,149.99,11/28/19 14:46,"803 South St, Los Angeles, CA 90001" -291054,Lightning Charging Cable,1,14.95,11/23/19 21:58,"861 North St, San Francisco, CA 94016" -291055,AA Batteries (4-pack),1,3.84,11/14/19 18:21,"324 Lake St, Los Angeles, CA 90001" -291056,AA Batteries (4-pack),1,3.84,11/17/19 16:22,"598 5th St, New York City, NY 10001" -291057,USB-C Charging Cable,1,11.95,11/21/19 12:48,"35 13th St, Portland, OR 97035" -291057,Apple Airpods Headphones,1,150,11/21/19 12:48,"35 13th St, Portland, OR 97035" -291058,Vareebadd Phone,1,400,11/24/19 19:15,"894 Pine St, Los Angeles, CA 90001" -291058,Bose SoundSport Headphones,1,99.99,11/24/19 19:15,"894 Pine St, Los Angeles, CA 90001" -291058,Wired Headphones,1,11.99,11/24/19 19:15,"894 Pine St, Los Angeles, CA 90001" -291059,Google Phone,1,600,11/23/19 19:04,"86 Chestnut St, Boston, MA 02215" -291060,Wired Headphones,1,11.99,11/26/19 16:57,"687 7th St, New York City, NY 10001" -291061,27in FHD Monitor,1,149.99,11/21/19 18:48,"545 Meadow St, Seattle, WA 98101" -291062,AA Batteries (4-pack),1,3.84,11/03/19 19:56,"232 Highland St, Los Angeles, CA 90001" -291063,AA Batteries (4-pack),1,3.84,11/24/19 18:07,"894 4th St, San Francisco, CA 94016" -291064,iPhone,1,700,11/05/19 20:53,"516 11th St, Austin, TX 73301" -291065,USB-C Charging Cable,1,11.95,11/10/19 22:19,"839 Adams St, Atlanta, GA 30301" -291066,iPhone,1,700,11/18/19 19:06,"10 7th St, Los Angeles, CA 90001" -291067,ThinkPad Laptop,1,999.99,11/07/19 12:35,"209 South St, New York City, NY 10001" -291068,Wired Headphones,1,11.99,11/11/19 14:03,"346 Meadow St, San Francisco, CA 94016" -291069,34in Ultrawide Monitor,1,379.99,11/08/19 23:01,"462 Spruce St, Atlanta, GA 30301" -291070,USB-C Charging Cable,3,11.95,11/16/19 11:41,"846 Washington St, Austin, TX 73301" -291071,Lightning Charging Cable,1,14.95,11/24/19 20:51,"17 Forest St, Seattle, WA 98101" -291072,Apple Airpods Headphones,1,150,11/08/19 20:57,"286 Ridge St, Dallas, TX 75001" -291073,USB-C Charging Cable,1,11.95,11/21/19 20:15,"587 8th St, Seattle, WA 98101" -291074,USB-C Charging Cable,1,11.95,11/06/19 12:33,"347 Johnson St, San Francisco, CA 94016" -291075,Bose SoundSport Headphones,1,99.99,11/18/19 10:19,"209 West St, San Francisco, CA 94016" -291076,Google Phone,1,600,11/06/19 13:42,"805 10th St, Los Angeles, CA 90001" -291077,Apple Airpods Headphones,1,150,11/26/19 22:13,"496 Cedar St, San Francisco, CA 94016" -291078,AAA Batteries (4-pack),2,2.99,11/21/19 10:43,"303 Highland St, New York City, NY 10001" -291079,Lightning Charging Cable,1,14.95,11/03/19 11:25,"169 Johnson St, San Francisco, CA 94016" -291080,Lightning Charging Cable,1,14.95,11/01/19 11:34,"789 Wilson St, Los Angeles, CA 90001" -291081,USB-C Charging Cable,1,11.95,11/17/19 12:29,"958 Dogwood St, Seattle, WA 98101" -291082,27in 4K Gaming Monitor,1,389.99,11/18/19 11:19,"943 Walnut St, Boston, MA 02215" -291083,Wired Headphones,1,11.99,11/09/19 12:58,"906 Walnut St, Los Angeles, CA 90001" -291084,Wired Headphones,1,11.99,11/25/19 19:13,"527 2nd St, Dallas, TX 75001" -291085,Wired Headphones,1,11.99,11/21/19 08:15,"217 Meadow St, Los Angeles, CA 90001" -291086,Lightning Charging Cable,1,14.95,11/26/19 15:53,"223 Ridge St, New York City, NY 10001" -291087,Lightning Charging Cable,1,14.95,11/12/19 00:01,"295 Park St, San Francisco, CA 94016" -291088,ThinkPad Laptop,1,999.99,11/17/19 17:55,"13 2nd St, Boston, MA 02215" -291089,AAA Batteries (4-pack),1,2.99,11/25/19 01:08,"849 Sunset St, San Francisco, CA 94016" -291090,ThinkPad Laptop,1,999.99,11/02/19 11:06,"895 Lake St, Dallas, TX 75001" -291091,Wired Headphones,1,11.99,11/29/19 20:37,"350 Lakeview St, Austin, TX 73301" -291092,Flatscreen TV,1,300,11/02/19 15:42,"636 Jackson St, Austin, TX 73301" -291093,ThinkPad Laptop,1,999.99,11/12/19 20:42,"659 13th St, Los Angeles, CA 90001" -291094,Lightning Charging Cable,2,14.95,11/08/19 08:53,"579 Lincoln St, San Francisco, CA 94016" -291095,Wired Headphones,1,11.99,11/18/19 11:48,"340 Jefferson St, Boston, MA 02215" -291096,Google Phone,1,600,11/08/19 08:52,"974 South St, San Francisco, CA 94016" -291097,Lightning Charging Cable,1,14.95,11/29/19 08:14,"920 Meadow St, Atlanta, GA 30301" -291098,Google Phone,1,600,11/15/19 12:04,"407 Church St, San Francisco, CA 94016" -291098,USB-C Charging Cable,1,11.95,11/15/19 12:04,"407 Church St, San Francisco, CA 94016" -291099,27in FHD Monitor,1,149.99,11/25/19 18:22,"680 Church St, San Francisco, CA 94016" -291100,Bose SoundSport Headphones,1,99.99,11/09/19 20:57,"939 Cedar St, Boston, MA 02215" -291101,Vareebadd Phone,1,400,11/06/19 08:29,"949 Highland St, Boston, MA 02215" -291102,Lightning Charging Cable,1,14.95,11/18/19 09:37,"262 North St, San Francisco, CA 94016" -291103,34in Ultrawide Monitor,1,379.99,11/25/19 15:45,"332 Spruce St, Seattle, WA 98101" -291104,34in Ultrawide Monitor,1,379.99,11/26/19 13:59,"344 Meadow St, Boston, MA 02215" -291105,Apple Airpods Headphones,1,150,11/20/19 00:57,"483 14th St, Atlanta, GA 30301" -291106,AA Batteries (4-pack),1,3.84,11/17/19 17:01,"83 Meadow St, Boston, MA 02215" -291107,27in 4K Gaming Monitor,1,389.99,11/25/19 17:53,"195 9th St, San Francisco, CA 94016" -291108,Lightning Charging Cable,1,14.95,11/13/19 11:18,"267 West St, San Francisco, CA 94016" -291109,Apple Airpods Headphones,1,150,11/08/19 17:27,"519 Lakeview St, Atlanta, GA 30301" -291110,USB-C Charging Cable,1,11.95,11/09/19 18:18,"766 8th St, Atlanta, GA 30301" -291111,20in Monitor,1,109.99,11/17/19 23:52,"809 13th St, San Francisco, CA 94016" -291112,34in Ultrawide Monitor,1,379.99,11/15/19 14:53,"873 7th St, New York City, NY 10001" -291113,AA Batteries (4-pack),2,3.84,11/13/19 21:35,"620 Lincoln St, Dallas, TX 75001" -291114,AAA Batteries (4-pack),2,2.99,11/22/19 23:30,"813 Lincoln St, Dallas, TX 75001" -291115,AAA Batteries (4-pack),2,2.99,11/19/19 09:22,"430 8th St, San Francisco, CA 94016" -291116,AA Batteries (4-pack),1,3.84,11/25/19 12:22,"886 Hickory St, Los Angeles, CA 90001" -291117,AAA Batteries (4-pack),2,2.99,11/06/19 08:51,"495 Highland St, Atlanta, GA 30301" -291118,AAA Batteries (4-pack),1,2.99,11/19/19 09:43,"55 Wilson St, Austin, TX 73301" -291119,Wired Headphones,1,11.99,11/19/19 22:20,"696 Wilson St, Los Angeles, CA 90001" -291120,AA Batteries (4-pack),2,3.84,11/26/19 12:44,"649 14th St, Los Angeles, CA 90001" -291120,USB-C Charging Cable,1,11.95,11/26/19 12:44,"649 14th St, Los Angeles, CA 90001" -291121,USB-C Charging Cable,1,11.95,11/07/19 13:29,"894 13th St, New York City, NY 10001" -291122,AA Batteries (4-pack),2,3.84,11/08/19 15:13,"464 Cedar St, New York City, NY 10001" -291123,27in FHD Monitor,1,149.99,11/09/19 14:15,"651 Walnut St, Seattle, WA 98101" -291124,AAA Batteries (4-pack),1,2.99,11/21/19 11:30,"604 Lakeview St, Dallas, TX 75001" -291125,27in FHD Monitor,1,149.99,11/18/19 18:05,"884 Lake St, San Francisco, CA 94016" -291126,20in Monitor,1,109.99,11/18/19 10:44,"242 9th St, New York City, NY 10001" -291127,AA Batteries (4-pack),1,3.84,11/02/19 22:07,"100 Cherry St, Austin, TX 73301" -291128,Bose SoundSport Headphones,1,99.99,11/26/19 10:30,"373 Willow St, San Francisco, CA 94016" -291129,Bose SoundSport Headphones,1,99.99,11/20/19 08:32,"715 Ridge St, Boston, MA 02215" -291130,Apple Airpods Headphones,1,150,11/02/19 23:58,"780 6th St, New York City, NY 10001" -291131,27in 4K Gaming Monitor,1,389.99,11/06/19 10:50,"790 Johnson St, Austin, TX 73301" -291132,Lightning Charging Cable,1,14.95,11/18/19 12:33,"229 14th St, San Francisco, CA 94016" -291133,Flatscreen TV,1,300,11/28/19 20:24,"465 Jefferson St, Seattle, WA 98101" -291134,AAA Batteries (4-pack),1,2.99,11/18/19 19:29,"947 10th St, Atlanta, GA 30301" -291135,27in FHD Monitor,1,149.99,11/22/19 20:46,"646 Cherry St, Austin, TX 73301" -291136,Apple Airpods Headphones,1,150,11/06/19 16:15,"991 Church St, San Francisco, CA 94016" -291137,Flatscreen TV,2,300,11/09/19 14:25,"977 Walnut St, Seattle, WA 98101" -291138,Lightning Charging Cable,2,14.95,11/28/19 23:18,"502 7th St, Los Angeles, CA 90001" -291139,Lightning Charging Cable,1,14.95,11/14/19 20:59,"23 8th St, Portland, OR 97035" -291140,Apple Airpods Headphones,1,150,11/22/19 11:51,"798 Spruce St, Los Angeles, CA 90001" -291141,Macbook Pro Laptop,1,1700,11/07/19 20:14,"384 Sunset St, San Francisco, CA 94016" -291142,Flatscreen TV,1,300,11/28/19 12:13,"162 North St, Los Angeles, CA 90001" -291143,iPhone,1,700,11/23/19 22:50,"879 Jackson St, Boston, MA 02215" -291143,Lightning Charging Cable,1,14.95,11/23/19 22:50,"879 Jackson St, Boston, MA 02215" -291144,Lightning Charging Cable,1,14.95,11/23/19 09:11,"685 11th St, San Francisco, CA 94016" -291145,27in FHD Monitor,1,149.99,11/23/19 13:39,"718 Jackson St, Los Angeles, CA 90001" -291146,USB-C Charging Cable,1,11.95,11/11/19 11:53,"535 South St, New York City, NY 10001" -291147,Bose SoundSport Headphones,1,99.99,11/18/19 21:20,"809 Church St, San Francisco, CA 94016" -291148,27in 4K Gaming Monitor,1,389.99,11/03/19 15:54,"620 7th St, Atlanta, GA 30301" -291149,AAA Batteries (4-pack),1,2.99,11/14/19 11:03,"126 Hickory St, Seattle, WA 98101" -291150,AAA Batteries (4-pack),1,2.99,11/05/19 01:09,"441 4th St, Dallas, TX 75001" -291151,Lightning Charging Cable,1,14.95,11/02/19 21:38,"866 Jackson St, Portland, OR 97035" -291152,Google Phone,1,600,11/15/19 18:42,"934 Cherry St, San Francisco, CA 94016" -291153,AA Batteries (4-pack),2,3.84,11/07/19 18:36,"48 Walnut St, Dallas, TX 75001" -291154,Lightning Charging Cable,1,14.95,11/16/19 08:48,"581 Wilson St, San Francisco, CA 94016" -291155,iPhone,1,700,11/21/19 12:33,"603 Wilson St, San Francisco, CA 94016" -291156,AA Batteries (4-pack),4,3.84,11/01/19 13:12,"49 Chestnut St, San Francisco, CA 94016" -291157,20in Monitor,1,109.99,11/18/19 09:55,"541 6th St, Dallas, TX 75001" -291158,Flatscreen TV,1,300,11/06/19 23:54,"4 Spruce St, Boston, MA 02215" -291159,ThinkPad Laptop,1,999.99,11/01/19 11:03,"363 Maple St, Atlanta, GA 30301" -291160,Bose SoundSport Headphones,1,99.99,11/18/19 14:13,"790 Cedar St, Atlanta, GA 30301" -291161,USB-C Charging Cable,1,11.95,11/04/19 00:28,"510 6th St, Seattle, WA 98101" -291162,Wired Headphones,1,11.99,11/26/19 17:11,"460 Highland St, Boston, MA 02215" -291163,Bose SoundSport Headphones,1,99.99,11/29/19 14:12,"371 Lincoln St, San Francisco, CA 94016" -291164,AA Batteries (4-pack),2,3.84,11/30/19 00:32,"963 Walnut St, Los Angeles, CA 90001" -291165,Lightning Charging Cable,1,14.95,11/23/19 12:32,"112 West St, Austin, TX 73301" -291166,27in 4K Gaming Monitor,1,389.99,11/08/19 01:07,"952 11th St, Portland, OR 97035" -291167,Wired Headphones,1,11.99,11/30/19 08:32,"151 Main St, New York City, NY 10001" -291168,20in Monitor,1,109.99,11/01/19 20:09,"893 Church St, Dallas, TX 75001" -291169,Wired Headphones,3,11.99,11/01/19 21:30,"228 Highland St, Boston, MA 02215" -291170,USB-C Charging Cable,1,11.95,11/11/19 15:26,"414 Johnson St, Atlanta, GA 30301" -291171,Apple Airpods Headphones,1,150,11/24/19 11:09,"801 6th St, San Francisco, CA 94016" -291172,27in FHD Monitor,1,149.99,11/22/19 14:18,"257 Madison St, Portland, OR 97035" -291173,AA Batteries (4-pack),2,3.84,11/15/19 10:32,"808 Center St, San Francisco, CA 94016" -291174,Bose SoundSport Headphones,1,99.99,11/07/19 01:47,"398 Lakeview St, Atlanta, GA 30301" -291175,Bose SoundSport Headphones,1,99.99,11/24/19 15:50,"825 5th St, Portland, ME 04101" -291176,Apple Airpods Headphones,1,150,11/01/19 11:10,"542 11th St, Boston, MA 02215" -291177,34in Ultrawide Monitor,1,379.99,11/21/19 21:05,"15 11th St, San Francisco, CA 94016" -291178,AAA Batteries (4-pack),1,2.99,11/21/19 09:16,"754 West St, Seattle, WA 98101" -291179,34in Ultrawide Monitor,1,379.99,11/05/19 18:17,"964 Elm St, Austin, TX 73301" -291180,Bose SoundSport Headphones,1,99.99,11/18/19 18:58,"814 Maple St, New York City, NY 10001" -291181,USB-C Charging Cable,1,11.95,11/18/19 16:03,"780 Main St, Dallas, TX 75001" -291182,AA Batteries (4-pack),1,3.84,11/09/19 16:19,"882 Meadow St, New York City, NY 10001" -291183,Wired Headphones,1,11.99,11/29/19 22:34,"242 Church St, Austin, TX 73301" -291184,Apple Airpods Headphones,1,150,11/10/19 15:50,"907 Forest St, Austin, TX 73301" -291185,Apple Airpods Headphones,1,150,11/02/19 16:26,"625 West St, Los Angeles, CA 90001" -291186,Lightning Charging Cable,1,14.95,11/01/19 11:23,"343 Highland St, Atlanta, GA 30301" -291187,27in FHD Monitor,1,149.99,11/29/19 13:02,"799 Main St, San Francisco, CA 94016" -291188,27in FHD Monitor,1,149.99,11/14/19 01:59,"452 Washington St, Boston, MA 02215" -291189,Google Phone,1,600,11/22/19 16:16,"664 Dogwood St, Seattle, WA 98101" -291190,AAA Batteries (4-pack),1,2.99,11/14/19 15:41,"726 7th St, Atlanta, GA 30301" -291191,27in 4K Gaming Monitor,1,389.99,11/19/19 11:45,"388 Hill St, San Francisco, CA 94016" -291192,USB-C Charging Cable,1,11.95,11/04/19 20:29,"723 Forest St, Dallas, TX 75001" -291193,Vareebadd Phone,1,400,11/16/19 18:37,"890 Cedar St, New York City, NY 10001" -291193,Wired Headphones,3,11.99,11/16/19 18:37,"890 Cedar St, New York City, NY 10001" -291194,iPhone,1,700,11/18/19 15:59,"615 Cherry St, Los Angeles, CA 90001" -291194,Lightning Charging Cable,1,14.95,11/18/19 15:59,"615 Cherry St, Los Angeles, CA 90001" -291195,iPhone,1,700,11/30/19 12:09,"644 Walnut St, Los Angeles, CA 90001" -291196,Wired Headphones,1,11.99,11/10/19 15:33,"804 8th St, Portland, OR 97035" -291197,Lightning Charging Cable,1,14.95,11/28/19 10:23,"917 7th St, New York City, NY 10001" -291198,Flatscreen TV,1,300,11/06/19 18:28,"795 Madison St, New York City, NY 10001" -291199,USB-C Charging Cable,1,11.95,11/28/19 14:16,"781 5th St, Portland, OR 97035" -291200,USB-C Charging Cable,1,11.95,11/29/19 13:18,"543 Park St, Boston, MA 02215" -291201,AA Batteries (4-pack),1,3.84,11/12/19 10:49,"305 Lincoln St, San Francisco, CA 94016" -291202,AA Batteries (4-pack),1,3.84,11/11/19 20:43,"162 Maple St, Portland, OR 97035" -291203,Macbook Pro Laptop,1,1700,11/25/19 13:58,"211 Church St, Los Angeles, CA 90001" -291204,AA Batteries (4-pack),1,3.84,11/23/19 19:08,"81 5th St, Seattle, WA 98101" -291205,27in 4K Gaming Monitor,1,389.99,11/23/19 21:44,"855 Maple St, Dallas, TX 75001" -291206,Apple Airpods Headphones,1,150,11/08/19 14:42,"309 River St, Atlanta, GA 30301" -291207,USB-C Charging Cable,1,11.95,11/21/19 15:04,"109 8th St, Atlanta, GA 30301" -291208,Bose SoundSport Headphones,1,99.99,11/11/19 16:53,"910 Pine St, Los Angeles, CA 90001" -291209,AA Batteries (4-pack),1,3.84,11/02/19 10:28,"981 Lake St, New York City, NY 10001" -291210,AAA Batteries (4-pack),1,2.99,11/11/19 20:58,"614 Hickory St, Boston, MA 02215" -291211,USB-C Charging Cable,1,11.95,11/12/19 14:44,"23 13th St, Los Angeles, CA 90001" -291212,USB-C Charging Cable,2,11.95,11/21/19 11:15,"86 7th St, New York City, NY 10001" -291213,AAA Batteries (4-pack),1,2.99,11/29/19 12:48,"838 13th St, San Francisco, CA 94016" -291214,iPhone,1,700,11/16/19 10:46,"67 Elm St, San Francisco, CA 94016" -291214,Lightning Charging Cable,1,14.95,11/16/19 10:46,"67 Elm St, San Francisco, CA 94016" -291215,Wired Headphones,1,11.99,11/25/19 22:29,"824 9th St, Portland, OR 97035" -291216,AAA Batteries (4-pack),3,2.99,11/15/19 00:28,"535 Adams St, San Francisco, CA 94016" -291217,Google Phone,1,600,11/13/19 03:03,"724 Dogwood St, New York City, NY 10001" -291218,Macbook Pro Laptop,1,1700,11/26/19 08:43,"512 Highland St, Dallas, TX 75001" -291219,20in Monitor,1,109.99,11/30/19 15:03,"191 Park St, Los Angeles, CA 90001" -291220,Bose SoundSport Headphones,1,99.99,11/20/19 12:57,"223 Meadow St, New York City, NY 10001" -291221,USB-C Charging Cable,1,11.95,11/21/19 21:47,"614 North St, Portland, ME 04101" -291222,Lightning Charging Cable,1,14.95,11/12/19 18:24,"619 Spruce St, New York City, NY 10001" -291223,Apple Airpods Headphones,1,150,11/30/19 13:08,"11 Center St, Seattle, WA 98101" -291224,USB-C Charging Cable,1,11.95,11/26/19 17:37,"900 8th St, Seattle, WA 98101" -291225,Wired Headphones,1,11.99,11/30/19 15:40,"487 6th St, Los Angeles, CA 90001" -291226,AAA Batteries (4-pack),1,2.99,11/08/19 21:36,"848 Meadow St, San Francisco, CA 94016" -291227,34in Ultrawide Monitor,1,379.99,11/06/19 08:31,"181 Cherry St, Boston, MA 02215" -291228,34in Ultrawide Monitor,1,379.99,11/22/19 20:02,"387 8th St, Portland, ME 04101" -291229,Bose SoundSport Headphones,1,99.99,11/11/19 21:12,"988 Pine St, Los Angeles, CA 90001" -291230,Apple Airpods Headphones,1,150,11/02/19 21:56,"834 Lincoln St, Seattle, WA 98101" -291231,34in Ultrawide Monitor,1,379.99,11/11/19 22:06,"751 Meadow St, New York City, NY 10001" -291232,Bose SoundSport Headphones,1,99.99,11/12/19 16:25,"864 Sunset St, Los Angeles, CA 90001" -291233,Apple Airpods Headphones,1,150,11/18/19 13:30,"568 Cedar St, San Francisco, CA 94016" -291234,20in Monitor,1,109.99,11/22/19 10:24,"586 7th St, Portland, ME 04101" -291235,Apple Airpods Headphones,1,150,11/09/19 09:22,"577 Cherry St, Portland, ME 04101" -291236,AA Batteries (4-pack),1,3.84,11/07/19 13:58,"808 Highland St, Seattle, WA 98101" -291237,USB-C Charging Cable,1,11.95,11/20/19 12:01,"76 9th St, San Francisco, CA 94016" -291238,20in Monitor,1,109.99,11/07/19 17:31,"225 Maple St, San Francisco, CA 94016" -291239,Flatscreen TV,1,300,11/20/19 16:31,"143 Lincoln St, Portland, OR 97035" -291240,27in 4K Gaming Monitor,1,389.99,11/13/19 18:56,"804 Johnson St, Atlanta, GA 30301" -291241,27in FHD Monitor,1,149.99,11/06/19 18:36,"211 Lincoln St, Dallas, TX 75001" -291242,USB-C Charging Cable,1,11.95,11/08/19 11:51,"667 River St, San Francisco, CA 94016" -291243,USB-C Charging Cable,1,11.95,11/06/19 13:13,"119 Dogwood St, Seattle, WA 98101" -291244,Lightning Charging Cable,1,14.95,11/21/19 12:16,"100 Lincoln St, Los Angeles, CA 90001" -291245,Flatscreen TV,1,300,11/19/19 22:01,"435 2nd St, Portland, OR 97035" -291246,Flatscreen TV,1,300,11/30/19 15:53,"654 Ridge St, Atlanta, GA 30301" -291247,20in Monitor,1,109.99,11/12/19 12:28,"942 Meadow St, Austin, TX 73301" -291248,USB-C Charging Cable,1,11.95,11/26/19 15:56,"64 Willow St, Portland, OR 97035" -291249,27in FHD Monitor,1,149.99,11/23/19 15:36,"27 Sunset St, Atlanta, GA 30301" -291250,27in FHD Monitor,1,149.99,11/29/19 22:02,"399 Maple St, Dallas, TX 75001" -291251,Apple Airpods Headphones,1,150,11/02/19 11:28,"384 6th St, San Francisco, CA 94016" -291252,27in FHD Monitor,1,149.99,11/28/19 18:11,"963 Park St, Los Angeles, CA 90001" -291253,ThinkPad Laptop,1,999.99,11/25/19 17:22,"159 8th St, San Francisco, CA 94016" -291254,Flatscreen TV,1,300,11/05/19 10:42,"429 Park St, Boston, MA 02215" -291255,Macbook Pro Laptop,1,1700,11/14/19 19:57,"714 11th St, Austin, TX 73301" -291256,USB-C Charging Cable,2,11.95,11/13/19 09:05,"40 Cedar St, Los Angeles, CA 90001" -291257,USB-C Charging Cable,1,11.95,11/09/19 12:44,"432 13th St, Seattle, WA 98101" -291258,Wired Headphones,1,11.99,11/04/19 03:58,"10 Meadow St, Seattle, WA 98101" -291259,Google Phone,1,600,11/27/19 09:14,"470 Park St, San Francisco, CA 94016" -291260,USB-C Charging Cable,1,11.95,11/03/19 20:02,"689 13th St, Portland, OR 97035" -291261,AAA Batteries (4-pack),1,2.99,11/04/19 21:55,"304 11th St, Portland, OR 97035" -291262,USB-C Charging Cable,1,11.95,11/14/19 20:36,"284 Highland St, San Francisco, CA 94016" -291263,Wired Headphones,1,11.99,11/13/19 16:45,"156 Cedar St, Boston, MA 02215" -291264,27in 4K Gaming Monitor,1,389.99,11/10/19 00:28,"157 Hill St, Atlanta, GA 30301" -291265,Lightning Charging Cable,1,14.95,11/28/19 02:15,"970 Johnson St, Austin, TX 73301" -291266,AA Batteries (4-pack),1,3.84,11/16/19 00:17,"695 Main St, San Francisco, CA 94016" -291267,Bose SoundSport Headphones,1,99.99,11/04/19 10:59,"949 North St, San Francisco, CA 94016" -291268,Wired Headphones,1,11.99,11/12/19 14:24,"394 Lincoln St, Los Angeles, CA 90001" -291269,AA Batteries (4-pack),1,3.84,11/09/19 18:26,"217 Center St, San Francisco, CA 94016" -291270,Apple Airpods Headphones,1,150,11/10/19 20:12,"438 Chestnut St, San Francisco, CA 94016" -291271,ThinkPad Laptop,1,999.99,11/04/19 13:59,"959 5th St, Atlanta, GA 30301" -291272,AAA Batteries (4-pack),2,2.99,11/03/19 19:36,"811 1st St, Seattle, WA 98101" -291272,Lightning Charging Cable,2,14.95,11/03/19 19:36,"811 1st St, Seattle, WA 98101" -291273,USB-C Charging Cable,1,11.95,11/29/19 15:46,"642 Madison St, New York City, NY 10001" -291274,AAA Batteries (4-pack),2,2.99,11/22/19 16:38,"717 Willow St, New York City, NY 10001" -291275,27in FHD Monitor,1,149.99,11/14/19 19:03,"826 Meadow St, New York City, NY 10001" -291276,AAA Batteries (4-pack),2,2.99,11/02/19 09:57,"7 North St, New York City, NY 10001" -291277,USB-C Charging Cable,1,11.95,11/01/19 15:38,"71 Ridge St, Seattle, WA 98101" -291278,Lightning Charging Cable,1,14.95,11/27/19 17:35,"383 West St, San Francisco, CA 94016" -291279,Lightning Charging Cable,2,14.95,11/19/19 22:13,"47 Center St, Boston, MA 02215" -291280,Flatscreen TV,1,300,11/23/19 16:20,"36 Lake St, Dallas, TX 75001" -291281,Google Phone,1,600,11/16/19 15:11,"7 Church St, Los Angeles, CA 90001" -291281,USB-C Charging Cable,1,11.95,11/16/19 15:11,"7 Church St, Los Angeles, CA 90001" -291282,AA Batteries (4-pack),1,3.84,11/12/19 09:12,"843 Church St, Atlanta, GA 30301" -291283,Lightning Charging Cable,1,14.95,11/01/19 14:52,"152 Lincoln St, Atlanta, GA 30301" -,,,,, -291284,27in 4K Gaming Monitor,1,389.99,11/24/19 23:31,"832 1st St, Los Angeles, CA 90001" -291285,ThinkPad Laptop,1,999.99,11/24/19 16:23,"826 Madison St, San Francisco, CA 94016" -291286,USB-C Charging Cable,1,11.95,11/07/19 12:52,"553 Lake St, Seattle, WA 98101" -291287,iPhone,1,700,11/15/19 09:38,"662 11th St, San Francisco, CA 94016" -291288,20in Monitor,1,109.99,11/30/19 18:17,"695 Highland St, Atlanta, GA 30301" -291289,USB-C Charging Cable,1,11.95,11/21/19 12:38,"45 Adams St, San Francisco, CA 94016" -291290,Wired Headphones,1,11.99,11/20/19 19:14,"477 South St, San Francisco, CA 94016" -291291,USB-C Charging Cable,1,11.95,11/19/19 21:14,"233 Johnson St, New York City, NY 10001" -291292,Wired Headphones,1,11.99,11/19/19 18:07,"940 Hickory St, Los Angeles, CA 90001" -291293,Apple Airpods Headphones,1,150,11/03/19 12:59,"388 Park St, Boston, MA 02215" -291294,Bose SoundSport Headphones,1,99.99,11/07/19 22:51,"995 Sunset St, Boston, MA 02215" -291295,Bose SoundSport Headphones,1,99.99,11/13/19 21:36,"347 9th St, San Francisco, CA 94016" -291296,Lightning Charging Cable,1,14.95,11/16/19 13:09,"111 14th St, Boston, MA 02215" -291297,Lightning Charging Cable,1,14.95,11/14/19 00:34,"867 Maple St, Dallas, TX 75001" -291298,Bose SoundSport Headphones,1,99.99,11/03/19 20:07,"972 Willow St, Los Angeles, CA 90001" -291299,AA Batteries (4-pack),1,3.84,11/06/19 15:08,"35 13th St, Seattle, WA 98101" -291300,AA Batteries (4-pack),2,3.84,11/22/19 09:41,"883 Willow St, Seattle, WA 98101" -291301,Flatscreen TV,1,300,11/09/19 18:56,"959 13th St, Dallas, TX 75001" -291301,iPhone,1,700,11/09/19 18:56,"959 13th St, Dallas, TX 75001" -291302,AAA Batteries (4-pack),1,2.99,11/09/19 19:12,"747 Adams St, Boston, MA 02215" -291303,Flatscreen TV,1,300,11/26/19 14:21,"865 South St, Los Angeles, CA 90001" -291304,AA Batteries (4-pack),1,3.84,11/14/19 14:52,"235 Cherry St, Austin, TX 73301" -291305,Wired Headphones,1,11.99,11/11/19 10:30,"330 Lincoln St, Atlanta, GA 30301" -291306,AAA Batteries (4-pack),1,2.99,11/13/19 22:26,"203 4th St, Atlanta, GA 30301" -291307,ThinkPad Laptop,1,999.99,11/26/19 21:20,"281 Jefferson St, New York City, NY 10001" -291308,Lightning Charging Cable,1,14.95,11/30/19 19:53,"693 Washington St, Seattle, WA 98101" -291309,Wired Headphones,2,11.99,11/28/19 22:03,"263 2nd St, Boston, MA 02215" -291310,27in 4K Gaming Monitor,1,389.99,11/24/19 01:29,"792 Spruce St, Los Angeles, CA 90001" -291311,Macbook Pro Laptop,1,1700,11/17/19 11:40,"419 Church St, Los Angeles, CA 90001" -291312,Apple Airpods Headphones,1,150,11/12/19 17:37,"283 8th St, San Francisco, CA 94016" -291313,Macbook Pro Laptop,1,1700,11/11/19 11:36,"416 Lincoln St, Boston, MA 02215" -291314,USB-C Charging Cable,1,11.95,11/14/19 17:05,"381 Spruce St, Los Angeles, CA 90001" -291315,Bose SoundSport Headphones,1,99.99,11/21/19 18:02,"757 South St, Seattle, WA 98101" -291316,Lightning Charging Cable,1,14.95,11/25/19 07:23,"738 Highland St, San Francisco, CA 94016" -291317,34in Ultrawide Monitor,1,379.99,11/24/19 23:51,"29 West St, Boston, MA 02215" -291318,Bose SoundSport Headphones,1,99.99,11/29/19 06:53,"133 Madison St, Austin, TX 73301" -291319,Bose SoundSport Headphones,1,99.99,11/09/19 17:33,"470 Jefferson St, Boston, MA 02215" -291320,Bose SoundSport Headphones,1,99.99,11/23/19 11:47,"318 10th St, Los Angeles, CA 90001" -291321,ThinkPad Laptop,1,999.99,11/27/19 13:58,"253 South St, Boston, MA 02215" -291322,Apple Airpods Headphones,1,150,11/02/19 21:11,"822 Lakeview St, San Francisco, CA 94016" -291323,USB-C Charging Cable,1,11.95,11/29/19 12:33,"190 Chestnut St, New York City, NY 10001" -291324,AA Batteries (4-pack),1,3.84,11/26/19 10:56,"266 Sunset St, Dallas, TX 75001" -291325,Wired Headphones,1,11.99,11/07/19 16:39,"74 Walnut St, Austin, TX 73301" -291326,Macbook Pro Laptop,1,1700,11/24/19 19:36,"504 Madison St, San Francisco, CA 94016" -291327,20in Monitor,1,109.99,11/28/19 14:19,"4 1st St, San Francisco, CA 94016" -291328,34in Ultrawide Monitor,1,379.99,11/23/19 21:49,"543 7th St, Seattle, WA 98101" -291329,USB-C Charging Cable,2,11.95,11/10/19 05:44,"443 7th St, Austin, TX 73301" -291330,Apple Airpods Headphones,1,150,11/07/19 02:44,"911 Dogwood St, Dallas, TX 75001" -291331,AA Batteries (4-pack),1,3.84,11/27/19 18:56,"109 Jackson St, San Francisco, CA 94016" -291332,USB-C Charging Cable,1,11.95,11/19/19 15:41,"279 4th St, San Francisco, CA 94016" -291333,27in FHD Monitor,1,149.99,11/10/19 17:38,"784 14th St, San Francisco, CA 94016" -291334,USB-C Charging Cable,1,11.95,11/04/19 13:16,"762 Jackson St, Atlanta, GA 30301" -291335,27in FHD Monitor,1,149.99,11/21/19 06:30,"386 Dogwood St, New York City, NY 10001" -291336,Apple Airpods Headphones,1,150,11/08/19 01:43,"493 Wilson St, Los Angeles, CA 90001" -291337,USB-C Charging Cable,1,11.95,11/19/19 19:49,"520 Elm St, Boston, MA 02215" -291338,27in FHD Monitor,1,149.99,11/08/19 03:07,"312 6th St, Seattle, WA 98101" -291339,Bose SoundSport Headphones,1,99.99,11/02/19 19:16,"2 1st St, San Francisco, CA 94016" -291340,Flatscreen TV,1,300,11/26/19 09:01,"287 Wilson St, Boston, MA 02215" -291341,Bose SoundSport Headphones,1,99.99,11/12/19 21:47,"610 Walnut St, Los Angeles, CA 90001" -291342,ThinkPad Laptop,1,999.99,11/27/19 18:49,"997 Spruce St, Portland, OR 97035" -291343,Lightning Charging Cable,1,14.95,11/04/19 10:36,"776 Church St, New York City, NY 10001" -291344,AAA Batteries (4-pack),1,2.99,11/29/19 19:56,"136 11th St, Los Angeles, CA 90001" -291345,LG Dryer,1,600.0,11/18/19 14:00,"775 Ridge St, Portland, OR 97035" -291346,Wired Headphones,1,11.99,11/01/19 07:52,"129 Wilson St, San Francisco, CA 94016" -291347,Apple Airpods Headphones,1,150,11/27/19 23:10,"595 Elm St, New York City, NY 10001" -291348,Wired Headphones,1,11.99,11/24/19 16:27,"66 Maple St, New York City, NY 10001" -291349,Google Phone,1,600,11/12/19 18:18,"582 Walnut St, Los Angeles, CA 90001" -291350,Wired Headphones,1,11.99,11/17/19 20:42,"411 River St, New York City, NY 10001" -291351,AA Batteries (4-pack),2,3.84,11/21/19 05:17,"7 Willow St, San Francisco, CA 94016" -291352,Apple Airpods Headphones,1,150,11/24/19 10:51,"52 South St, San Francisco, CA 94016" -291353,34in Ultrawide Monitor,1,379.99,11/10/19 14:03,"455 Adams St, New York City, NY 10001" -291354,Bose SoundSport Headphones,1,99.99,11/12/19 13:00,"140 6th St, Portland, OR 97035" -291355,Wired Headphones,1,11.99,11/27/19 22:09,"809 Meadow St, San Francisco, CA 94016" -291356,Google Phone,1,600,11/02/19 21:32,"681 Lakeview St, New York City, NY 10001" -291357,AAA Batteries (4-pack),1,2.99,11/20/19 16:32,"456 Pine St, New York City, NY 10001" -291358,Lightning Charging Cable,1,14.95,11/13/19 22:28,"49 5th St, Atlanta, GA 30301" -291359,USB-C Charging Cable,1,11.95,11/10/19 20:40,"676 Madison St, Los Angeles, CA 90001" -291360,Wired Headphones,1,11.99,11/25/19 13:26,"322 1st St, Atlanta, GA 30301" -291361,20in Monitor,1,109.99,11/12/19 14:06,"828 Chestnut St, Portland, OR 97035" -291362,USB-C Charging Cable,1,11.95,11/14/19 08:06,"369 Washington St, Dallas, TX 75001" -291363,Bose SoundSport Headphones,1,99.99,11/21/19 23:17,"754 12th St, Atlanta, GA 30301" -291364,AA Batteries (4-pack),1,3.84,11/21/19 20:15,"298 Johnson St, Seattle, WA 98101" -291365,AA Batteries (4-pack),1,3.84,11/23/19 14:34,"36 9th St, Dallas, TX 75001" -291366,Apple Airpods Headphones,1,150,11/20/19 17:34,"380 13th St, San Francisco, CA 94016" -291367,AAA Batteries (4-pack),1,2.99,11/16/19 08:41,"621 Dogwood St, Portland, OR 97035" -291368,27in FHD Monitor,1,149.99,11/19/19 00:02,"750 Wilson St, Los Angeles, CA 90001" -291369,AAA Batteries (4-pack),1,2.99,11/09/19 23:13,"575 Lakeview St, Dallas, TX 75001" -291370,27in 4K Gaming Monitor,1,389.99,11/14/19 17:16,"566 Forest St, San Francisco, CA 94016" -291371,AA Batteries (4-pack),2,3.84,11/19/19 11:09,"674 Forest St, Los Angeles, CA 90001" -291372,Apple Airpods Headphones,1,150,11/04/19 08:25,"420 West St, San Francisco, CA 94016" -291373,AA Batteries (4-pack),1,3.84,11/26/19 12:14,"49 West St, New York City, NY 10001" -291374,Apple Airpods Headphones,1,150,11/14/19 19:58,"378 Washington St, San Francisco, CA 94016" -291375,27in FHD Monitor,1,149.99,11/05/19 13:11,"647 14th St, Los Angeles, CA 90001" -291376,Macbook Pro Laptop,1,1700,11/18/19 12:33,"881 Lakeview St, Portland, ME 04101" -291377,Macbook Pro Laptop,1,1700,11/11/19 19:08,"843 Ridge St, New York City, NY 10001" -291378,Flatscreen TV,1,300,11/10/19 23:32,"201 Adams St, Los Angeles, CA 90001" -291379,AA Batteries (4-pack),3,3.84,11/06/19 07:33,"10 River St, New York City, NY 10001" -291380,iPhone,1,700,11/17/19 08:06,"814 Willow St, Boston, MA 02215" -291380,Wired Headphones,1,11.99,11/17/19 08:06,"814 Willow St, Boston, MA 02215" -291381,Wired Headphones,1,11.99,11/20/19 02:38,"432 Hill St, Los Angeles, CA 90001" -291382,USB-C Charging Cable,1,11.95,11/10/19 18:01,"763 13th St, Los Angeles, CA 90001" -291383,Flatscreen TV,1,300,11/26/19 20:52,"72 Jackson St, Boston, MA 02215" -291384,AAA Batteries (4-pack),1,2.99,11/05/19 18:12,"550 Church St, San Francisco, CA 94016" -291385,AAA Batteries (4-pack),2,2.99,11/14/19 01:34,"259 River St, Los Angeles, CA 90001" -291386,Macbook Pro Laptop,1,1700,11/24/19 22:03,"386 8th St, San Francisco, CA 94016" -291387,ThinkPad Laptop,1,999.99,11/09/19 12:48,"56 Maple St, Seattle, WA 98101" -291388,27in FHD Monitor,1,149.99,11/03/19 11:19,"744 Willow St, Los Angeles, CA 90001" -291389,Google Phone,1,600,11/11/19 22:19,"380 Wilson St, Los Angeles, CA 90001" -291390,27in FHD Monitor,1,149.99,11/26/19 01:13,"838 North St, San Francisco, CA 94016" -291391,AA Batteries (4-pack),3,3.84,11/28/19 10:28,"553 Elm St, Los Angeles, CA 90001" -291392,ThinkPad Laptop,1,999.99,11/12/19 13:02,"139 Main St, Los Angeles, CA 90001" -291393,Lightning Charging Cable,1,14.95,11/05/19 10:06,"162 5th St, San Francisco, CA 94016" -291394,Wired Headphones,1,11.99,11/15/19 20:52,"338 4th St, Dallas, TX 75001" -291395,Flatscreen TV,1,300,11/16/19 14:19,"644 Sunset St, San Francisco, CA 94016" -291396,AA Batteries (4-pack),1,3.84,11/07/19 22:48,"614 Madison St, Seattle, WA 98101" -291397,AA Batteries (4-pack),1,3.84,11/02/19 19:38,"839 1st St, Dallas, TX 75001" -291398,Apple Airpods Headphones,1,150,11/18/19 22:11,"667 13th St, Los Angeles, CA 90001" -291399,AAA Batteries (4-pack),1,2.99,11/27/19 20:14,"747 8th St, San Francisco, CA 94016" -291400,20in Monitor,1,109.99,11/27/19 20:22,"573 Ridge St, Dallas, TX 75001" -291401,Macbook Pro Laptop,1,1700,11/26/19 13:51,"741 Willow St, Atlanta, GA 30301" -291402,USB-C Charging Cable,1,11.95,11/14/19 14:06,"32 14th St, San Francisco, CA 94016" -291403,AA Batteries (4-pack),2,3.84,11/27/19 11:10,"309 Walnut St, Los Angeles, CA 90001" -291404,AAA Batteries (4-pack),1,2.99,11/22/19 18:26,"907 2nd St, Portland, OR 97035" -291405,Bose SoundSport Headphones,1,99.99,11/25/19 06:23,"149 12th St, Atlanta, GA 30301" -291405,USB-C Charging Cable,1,11.95,11/25/19 06:23,"149 12th St, Atlanta, GA 30301" -291406,27in 4K Gaming Monitor,1,389.99,11/09/19 18:21,"936 Elm St, San Francisco, CA 94016" -291407,Wired Headphones,1,11.99,11/03/19 17:25,"722 4th St, Boston, MA 02215" -291408,27in FHD Monitor,1,149.99,11/24/19 12:28,"817 Sunset St, Seattle, WA 98101" -291409,Vareebadd Phone,1,400,11/16/19 13:24,"599 4th St, San Francisco, CA 94016" -291410,Apple Airpods Headphones,1,150,11/02/19 18:36,"74 Jackson St, New York City, NY 10001" -291411,Macbook Pro Laptop,1,1700,11/12/19 20:43,"95 Madison St, San Francisco, CA 94016" -291412,Apple Airpods Headphones,1,150,11/24/19 13:41,"407 Maple St, San Francisco, CA 94016" -291413,Wired Headphones,1,11.99,11/08/19 07:07,"148 11th St, Boston, MA 02215" -291414,Lightning Charging Cable,1,14.95,11/01/19 11:29,"977 Spruce St, Boston, MA 02215" -291415,Wired Headphones,2,11.99,11/16/19 19:23,"653 Spruce St, Dallas, TX 75001" -291416,Lightning Charging Cable,1,14.95,11/24/19 18:20,"388 Ridge St, New York City, NY 10001" -291416,USB-C Charging Cable,3,11.95,11/24/19 18:20,"388 Ridge St, New York City, NY 10001" -291417,AAA Batteries (4-pack),2,2.99,11/20/19 12:53,"765 8th St, San Francisco, CA 94016" -291418,34in Ultrawide Monitor,1,379.99,11/06/19 11:28,"326 Johnson St, New York City, NY 10001" -291419,Macbook Pro Laptop,1,1700,11/29/19 20:31,"808 Chestnut St, Seattle, WA 98101" -291420,AA Batteries (4-pack),1,3.84,11/10/19 08:55,"520 12th St, Seattle, WA 98101" -291421,Lightning Charging Cable,2,14.95,11/27/19 15:59,"311 Willow St, San Francisco, CA 94016" -291422,20in Monitor,1,109.99,11/07/19 19:26,"622 Jefferson St, San Francisco, CA 94016" -291423,Lightning Charging Cable,1,14.95,11/10/19 10:21,"324 Forest St, Boston, MA 02215" -291424,Wired Headphones,1,11.99,11/08/19 22:36,"695 Park St, San Francisco, CA 94016" -291425,27in FHD Monitor,1,149.99,11/22/19 04:52,"596 Washington St, Los Angeles, CA 90001" -291426,AA Batteries (4-pack),3,3.84,11/05/19 13:36,"602 13th St, Boston, MA 02215" -291427,AAA Batteries (4-pack),1,2.99,11/09/19 14:46,"95 12th St, Portland, OR 97035" -291428,34in Ultrawide Monitor,1,379.99,11/21/19 08:44,"112 Cherry St, Los Angeles, CA 90001" -291429,Vareebadd Phone,1,400,11/01/19 08:59,"602 7th St, Seattle, WA 98101" -291430,Wired Headphones,1,11.99,11/08/19 08:33,"638 5th St, Atlanta, GA 30301" -291431,AA Batteries (4-pack),1,3.84,11/15/19 10:34,"47 Lincoln St, San Francisco, CA 94016" -291432,Google Phone,1,600,11/26/19 14:15,"297 North St, San Francisco, CA 94016" -291432,Wired Headphones,1,11.99,11/26/19 14:15,"297 North St, San Francisco, CA 94016" -291433,iPhone,1,700,11/12/19 18:49,"268 Lincoln St, Boston, MA 02215" -291434,Bose SoundSport Headphones,1,99.99,11/05/19 21:24,"770 11th St, New York City, NY 10001" -291435,Apple Airpods Headphones,1,150,11/05/19 19:50,"443 Jefferson St, Los Angeles, CA 90001" -291436,AA Batteries (4-pack),1,3.84,11/05/19 12:33,"923 4th St, San Francisco, CA 94016" -291437,Bose SoundSport Headphones,1,99.99,11/01/19 15:40,"549 Adams St, San Francisco, CA 94016" -291438,AA Batteries (4-pack),1,3.84,11/17/19 20:48,"633 Pine St, Seattle, WA 98101" -291439,Lightning Charging Cable,1,14.95,11/14/19 11:14,"315 Dogwood St, Dallas, TX 75001" -291440,20in Monitor,1,109.99,11/29/19 01:34,"366 West St, San Francisco, CA 94016" -291441,iPhone,1,700,11/26/19 23:25,"917 1st St, San Francisco, CA 94016" -291442,AAA Batteries (4-pack),1,2.99,11/06/19 19:17,"39 Cedar St, Los Angeles, CA 90001" -291443,Apple Airpods Headphones,1,150,11/28/19 11:42,"924 Forest St, New York City, NY 10001" -291444,Lightning Charging Cable,1,14.95,11/13/19 21:44,"822 Lakeview St, Boston, MA 02215" -291445,AAA Batteries (4-pack),5,2.99,11/13/19 20:28,"187 6th St, Seattle, WA 98101" -291446,Apple Airpods Headphones,1,150,11/29/19 17:30,"707 10th St, Boston, MA 02215" -291447,AA Batteries (4-pack),1,3.84,11/09/19 14:13,"88 8th St, San Francisco, CA 94016" -291448,AA Batteries (4-pack),1,3.84,11/11/19 13:54,"275 1st St, Dallas, TX 75001" -291449,USB-C Charging Cable,1,11.95,11/05/19 16:51,"624 Willow St, Boston, MA 02215" -291450,iPhone,1,700,11/21/19 11:28,"367 North St, Dallas, TX 75001" -291451,Wired Headphones,1,11.99,11/05/19 01:35,"861 Willow St, San Francisco, CA 94016" -291452,AA Batteries (4-pack),2,3.84,11/13/19 07:58,"281 Madison St, Los Angeles, CA 90001" -291453,iPhone,1,700,11/27/19 02:22,"900 Highland St, Austin, TX 73301" -291454,AA Batteries (4-pack),1,3.84,11/14/19 17:35,"554 Lakeview St, San Francisco, CA 94016" -291455,Lightning Charging Cable,1,14.95,11/25/19 15:07,"643 4th St, San Francisco, CA 94016" -291456,Bose SoundSport Headphones,1,99.99,11/30/19 07:44,"308 Park St, San Francisco, CA 94016" -291457,Wired Headphones,1,11.99,11/12/19 03:12,"308 Lincoln St, Portland, OR 97035" -291458,AAA Batteries (4-pack),1,2.99,11/07/19 16:16,"824 Wilson St, San Francisco, CA 94016" -291459,AAA Batteries (4-pack),1,2.99,11/09/19 19:03,"873 Sunset St, Boston, MA 02215" -291460,AA Batteries (4-pack),1,3.84,11/18/19 18:37,"236 West St, Boston, MA 02215" -291461,27in 4K Gaming Monitor,1,389.99,11/03/19 20:02,"223 Forest St, Los Angeles, CA 90001" -291462,AA Batteries (4-pack),1,3.84,11/22/19 20:58,"317 Adams St, Los Angeles, CA 90001" -291463,iPhone,1,700,11/12/19 21:07,"94 Center St, Portland, OR 97035" -291464,20in Monitor,1,109.99,11/15/19 22:43,"655 Hickory St, Los Angeles, CA 90001" -291465,Wired Headphones,1,11.99,11/28/19 13:36,"889 6th St, Boston, MA 02215" -291466,AAA Batteries (4-pack),2,2.99,11/27/19 14:13,"811 River St, Boston, MA 02215" -291467,ThinkPad Laptop,1,999.99,11/02/19 21:40,"116 Center St, Austin, TX 73301" -291468,Apple Airpods Headphones,1,150,11/17/19 22:36,"166 Main St, San Francisco, CA 94016" -291469,ThinkPad Laptop,1,999.99,11/30/19 01:34,"302 Jefferson St, New York City, NY 10001" -291470,Wired Headphones,1,11.99,11/28/19 13:21,"206 Hill St, Boston, MA 02215" -291471,Flatscreen TV,1,300,11/28/19 12:37,"902 Washington St, Dallas, TX 75001" -291472,Lightning Charging Cable,1,14.95,11/05/19 20:58,"857 Jackson St, Los Angeles, CA 90001" -291473,iPhone,1,700,11/27/19 23:04,"238 Lake St, Boston, MA 02215" -291473,Apple Airpods Headphones,1,150,11/27/19 23:04,"238 Lake St, Boston, MA 02215" -291474,AAA Batteries (4-pack),1,2.99,11/19/19 19:38,"411 South St, San Francisco, CA 94016" -291475,Bose SoundSport Headphones,1,99.99,11/24/19 09:32,"377 River St, Portland, OR 97035" -291476,Lightning Charging Cable,1,14.95,11/22/19 20:01,"728 Cedar St, Austin, TX 73301" -291477,Wired Headphones,1,11.99,11/21/19 07:05,"609 Elm St, Seattle, WA 98101" -291478,Bose SoundSport Headphones,1,99.99,11/24/19 15:11,"852 11th St, New York City, NY 10001" -291479,USB-C Charging Cable,1,11.95,11/15/19 20:19,"644 14th St, San Francisco, CA 94016" -291480,AAA Batteries (4-pack),4,2.99,11/03/19 12:58,"332 Madison St, Dallas, TX 75001" -291481,AAA Batteries (4-pack),1,2.99,11/19/19 06:29,"488 Ridge St, Boston, MA 02215" -291482,27in FHD Monitor,1,149.99,11/08/19 22:17,"924 River St, Atlanta, GA 30301" -291483,AA Batteries (4-pack),1,3.84,11/15/19 07:37,"794 Highland St, San Francisco, CA 94016" -291484,AAA Batteries (4-pack),2,2.99,11/08/19 17:15,"901 Lincoln St, Dallas, TX 75001" -291485,iPhone,1,700,11/19/19 14:20,"397 Center St, New York City, NY 10001" -291486,Apple Airpods Headphones,1,150,11/22/19 09:31,"319 Church St, New York City, NY 10001" -291487,Lightning Charging Cable,1,14.95,11/10/19 11:22,"408 2nd St, San Francisco, CA 94016" -291488,Google Phone,1,600,11/21/19 17:11,"96 Ridge St, Seattle, WA 98101" -291488,USB-C Charging Cable,1,11.95,11/21/19 17:11,"96 Ridge St, Seattle, WA 98101" -291489,ThinkPad Laptop,1,999.99,11/18/19 11:44,"800 10th St, Boston, MA 02215" -291490,Wired Headphones,1,11.99,11/06/19 12:26,"293 Church St, Los Angeles, CA 90001" -291491,Lightning Charging Cable,1,14.95,11/22/19 16:47,"8 Lake St, New York City, NY 10001" -291492,USB-C Charging Cable,1,11.95,11/28/19 16:04,"247 1st St, San Francisco, CA 94016" -291493,Google Phone,1,600,11/04/19 18:46,"695 Main St, Portland, ME 04101" -291494,iPhone,1,700,11/04/19 17:43,"545 Walnut St, Dallas, TX 75001" -291495,Lightning Charging Cable,1,14.95,11/09/19 10:25,"741 7th St, Boston, MA 02215" -291496,AA Batteries (4-pack),2,3.84,11/07/19 00:17,"621 South St, San Francisco, CA 94016" -291497,Apple Airpods Headphones,1,150,11/01/19 17:48,"560 North St, San Francisco, CA 94016" -291498,USB-C Charging Cable,1,11.95,11/18/19 07:51,"906 Spruce St, New York City, NY 10001" -291499,AAA Batteries (4-pack),1,2.99,11/29/19 23:21,"270 Cherry St, Dallas, TX 75001" -291500,AAA Batteries (4-pack),2,2.99,11/12/19 17:49,"509 Wilson St, Atlanta, GA 30301" -291501,Wired Headphones,1,11.99,11/14/19 20:36,"74 Cedar St, San Francisco, CA 94016" -291502,34in Ultrawide Monitor,1,379.99,11/10/19 11:47,"269 Lake St, San Francisco, CA 94016" -291503,27in FHD Monitor,1,149.99,11/03/19 09:29,"743 Jackson St, San Francisco, CA 94016" -291504,Lightning Charging Cable,1,14.95,11/26/19 09:04,"948 Maple St, Dallas, TX 75001" -291505,Bose SoundSport Headphones,1,99.99,11/28/19 19:42,"649 Walnut St, New York City, NY 10001" -291506,Lightning Charging Cable,1,14.95,11/08/19 11:55,"711 Park St, Seattle, WA 98101" -291507,USB-C Charging Cable,1,11.95,11/21/19 21:38,"476 2nd St, San Francisco, CA 94016" -291508,Apple Airpods Headphones,1,150,11/05/19 22:59,"934 Maple St, Portland, ME 04101" -291509,Google Phone,1,600,11/09/19 15:40,"992 Spruce St, Boston, MA 02215" -291509,USB-C Charging Cable,1,11.95,11/09/19 15:40,"992 Spruce St, Boston, MA 02215" -291510,AAA Batteries (4-pack),1,2.99,11/06/19 19:20,"521 12th St, Los Angeles, CA 90001" -291511,USB-C Charging Cable,1,11.95,11/15/19 13:17,"526 Forest St, San Francisco, CA 94016" -291512,AA Batteries (4-pack),1,3.84,11/24/19 16:20,"643 Dogwood St, San Francisco, CA 94016" -291513,Bose SoundSport Headphones,1,99.99,11/17/19 07:18,"334 Chestnut St, San Francisco, CA 94016" -291514,34in Ultrawide Monitor,1,379.99,11/28/19 08:19,"440 Pine St, Los Angeles, CA 90001" -291515,ThinkPad Laptop,1,999.99,11/17/19 17:36,"255 14th St, Dallas, TX 75001" -291516,Google Phone,1,600,11/20/19 11:24,"82 Lincoln St, Austin, TX 73301" -291517,Flatscreen TV,1,300,11/17/19 18:20,"315 South St, Boston, MA 02215" -291518,Macbook Pro Laptop,1,1700,11/23/19 18:30,"602 Spruce St, Atlanta, GA 30301" -291519,Macbook Pro Laptop,1,1700,11/14/19 22:12,"518 Cedar St, San Francisco, CA 94016" -291520,AA Batteries (4-pack),1,3.84,11/21/19 22:08,"216 Maple St, Atlanta, GA 30301" -291521,27in 4K Gaming Monitor,1,389.99,11/16/19 20:57,"767 Ridge St, San Francisco, CA 94016" -291522,Bose SoundSport Headphones,1,99.99,11/13/19 19:12,"595 11th St, Austin, TX 73301" -291523,iPhone,1,700,11/12/19 16:46,"854 Pine St, Seattle, WA 98101" -291524,Bose SoundSport Headphones,1,99.99,11/23/19 23:55,"602 1st St, Los Angeles, CA 90001" -291525,Apple Airpods Headphones,1,150,11/07/19 19:24,"488 Hill St, San Francisco, CA 94016" -291526,iPhone,1,700,11/11/19 09:50,"761 9th St, New York City, NY 10001" -291527,Lightning Charging Cable,1,14.95,11/18/19 07:09,"255 Willow St, Seattle, WA 98101" -291528,AAA Batteries (4-pack),1,2.99,11/17/19 05:15,"26 2nd St, New York City, NY 10001" -291529,Flatscreen TV,1,300,11/27/19 14:36,"249 Washington St, Los Angeles, CA 90001" -291530,27in FHD Monitor,1,149.99,11/08/19 09:23,"964 Hill St, Portland, ME 04101" -291531,Apple Airpods Headphones,1,150,11/02/19 19:15,"272 Maple St, Portland, OR 97035" -291532,Flatscreen TV,1,300,11/09/19 08:38,"911 Elm St, Portland, OR 97035" -291533,AAA Batteries (4-pack),2,2.99,11/10/19 09:15,"70 West St, Los Angeles, CA 90001" -291534,AAA Batteries (4-pack),2,2.99,11/12/19 21:20,"67 Sunset St, New York City, NY 10001" -291535,Wired Headphones,1,11.99,11/11/19 16:09,"325 Cedar St, Boston, MA 02215" -291536,AA Batteries (4-pack),1,3.84,11/09/19 09:33,"64 7th St, Los Angeles, CA 90001" -291537,Vareebadd Phone,1,400,11/23/19 21:23,"349 Church St, Los Angeles, CA 90001" -291538,AA Batteries (4-pack),1,3.84,11/14/19 17:20,"622 North St, Dallas, TX 75001" -291539,20in Monitor,1,109.99,11/30/19 11:45,"518 14th St, San Francisco, CA 94016" -291540,AAA Batteries (4-pack),2,2.99,11/30/19 15:00,"205 Hill St, Boston, MA 02215" -291541,Lightning Charging Cable,1,14.95,11/06/19 07:15,"354 Chestnut St, Portland, OR 97035" -291542,Flatscreen TV,1,300,11/18/19 15:13,"793 7th St, San Francisco, CA 94016" -291543,Wired Headphones,1,11.99,11/21/19 16:30,"699 5th St, Seattle, WA 98101" -291544,Wired Headphones,1,11.99,11/09/19 07:43,"593 Elm St, Boston, MA 02215" -291545,27in 4K Gaming Monitor,1,389.99,11/04/19 13:02,"965 Highland St, San Francisco, CA 94016" -291546,Wired Headphones,1,11.99,11/11/19 14:54,"216 Johnson St, Los Angeles, CA 90001" -291547,iPhone,1,700,11/05/19 18:25,"21 4th St, San Francisco, CA 94016" -291548,AA Batteries (4-pack),1,3.84,11/24/19 17:44,"243 River St, New York City, NY 10001" -291549,Lightning Charging Cable,1,14.95,11/21/19 19:01,"131 4th St, Atlanta, GA 30301" -291550,AAA Batteries (4-pack),1,2.99,11/20/19 18:19,"768 12th St, New York City, NY 10001" -291551,27in 4K Gaming Monitor,1,389.99,11/30/19 12:14,"763 4th St, Los Angeles, CA 90001" -291552,AA Batteries (4-pack),3,3.84,11/30/19 10:20,"369 7th St, New York City, NY 10001" -291553,Wired Headphones,1,11.99,11/03/19 13:03,"241 14th St, New York City, NY 10001" -291554,34in Ultrawide Monitor,1,379.99,11/26/19 15:47,"584 5th St, New York City, NY 10001" -291555,Macbook Pro Laptop,1,1700,11/25/19 10:36,"250 Dogwood St, Austin, TX 73301" -291556,USB-C Charging Cable,1,11.95,11/16/19 16:12,"973 12th St, Los Angeles, CA 90001" -291557,Lightning Charging Cable,1,14.95,11/11/19 23:29,"934 Hill St, New York City, NY 10001" -291558,iPhone,1,700,11/25/19 12:23,"498 River St, Atlanta, GA 30301" -291558,USB-C Charging Cable,1,11.95,11/25/19 12:23,"498 River St, Atlanta, GA 30301" -291559,Bose SoundSport Headphones,1,99.99,11/18/19 21:28,"412 Willow St, Austin, TX 73301" -291560,USB-C Charging Cable,1,11.95,11/20/19 20:40,"110 West St, San Francisco, CA 94016" -291561,AAA Batteries (4-pack),1,2.99,11/13/19 18:39,"564 Wilson St, New York City, NY 10001" -291562,AAA Batteries (4-pack),3,2.99,11/01/19 12:49,"264 Ridge St, Seattle, WA 98101" -291563,Apple Airpods Headphones,1,150,11/08/19 15:00,"912 5th St, Portland, OR 97035" -291564,Wired Headphones,1,11.99,11/26/19 19:47,"572 Spruce St, Portland, OR 97035" -291565,AA Batteries (4-pack),1,3.84,11/04/19 14:08,"822 North St, New York City, NY 10001" -291566,USB-C Charging Cable,1,11.95,11/29/19 22:11,"977 Washington St, Los Angeles, CA 90001" -291567,Apple Airpods Headphones,1,150,11/28/19 22:24,"399 8th St, Boston, MA 02215" -291568,Bose SoundSport Headphones,1,99.99,11/30/19 20:04,"660 North St, San Francisco, CA 94016" -291569,Macbook Pro Laptop,1,1700,11/19/19 19:13,"33 Jackson St, Dallas, TX 75001" -291570,Wired Headphones,1,11.99,11/26/19 20:19,"918 Willow St, San Francisco, CA 94016" -291571,Macbook Pro Laptop,1,1700,11/17/19 20:40,"147 Hickory St, Atlanta, GA 30301" -291572,AA Batteries (4-pack),1,3.84,11/02/19 22:18,"191 4th St, Los Angeles, CA 90001" -291573,iPhone,1,700,11/16/19 12:27,"884 Forest St, San Francisco, CA 94016" -291573,Lightning Charging Cable,1,14.95,11/16/19 12:27,"884 Forest St, San Francisco, CA 94016" -291574,AA Batteries (4-pack),2,3.84,11/19/19 22:06,"268 Jefferson St, Los Angeles, CA 90001" -291575,USB-C Charging Cable,1,11.95,11/21/19 20:00,"514 13th St, San Francisco, CA 94016" -291576,AA Batteries (4-pack),1,3.84,11/17/19 09:21,"318 Forest St, Atlanta, GA 30301" -291577,Wired Headphones,2,11.99,11/03/19 18:24,"416 Maple St, Boston, MA 02215" -291578,AA Batteries (4-pack),2,3.84,11/17/19 10:35,"243 Spruce St, Atlanta, GA 30301" -291579,Flatscreen TV,1,300,11/12/19 14:47,"358 11th St, New York City, NY 10001" -291580,ThinkPad Laptop,1,999.99,11/12/19 18:05,"8 South St, New York City, NY 10001" -291580,AAA Batteries (4-pack),1,2.99,11/12/19 18:05,"8 South St, New York City, NY 10001" -291581,27in 4K Gaming Monitor,1,389.99,11/27/19 22:21,"627 Jackson St, Austin, TX 73301" -291582,AA Batteries (4-pack),1,3.84,11/26/19 15:46,"211 Spruce St, Portland, ME 04101" -291583,AA Batteries (4-pack),1,3.84,11/02/19 17:00,"378 Highland St, Dallas, TX 75001" -291584,Macbook Pro Laptop,1,1700,11/21/19 14:53,"140 Willow St, San Francisco, CA 94016" -291585,AAA Batteries (4-pack),1,2.99,11/16/19 13:22,"4 Chestnut St, Seattle, WA 98101" -291586,27in 4K Gaming Monitor,1,389.99,11/21/19 16:21,"497 Jackson St, New York City, NY 10001" -291587,AAA Batteries (4-pack),1,2.99,11/21/19 12:49,"329 8th St, Portland, ME 04101" -291588,Wired Headphones,2,11.99,11/11/19 09:40,"43 Highland St, Portland, ME 04101" -291589,Wired Headphones,1,11.99,11/17/19 20:50,"302 Cedar St, Boston, MA 02215" -291590,USB-C Charging Cable,1,11.95,11/30/19 10:25,"997 Johnson St, New York City, NY 10001" -291591,27in FHD Monitor,1,149.99,11/21/19 09:45,"539 12th St, Atlanta, GA 30301" -291592,27in FHD Monitor,1,149.99,11/05/19 12:04,"822 Lakeview St, Austin, TX 73301" -291593,Lightning Charging Cable,1,14.95,11/02/19 18:13,"505 Jefferson St, Los Angeles, CA 90001" -291594,Lightning Charging Cable,1,14.95,11/15/19 22:28,"70 Highland St, Atlanta, GA 30301" -291595,Apple Airpods Headphones,1,150,11/25/19 23:12,"682 4th St, New York City, NY 10001" -291596,Lightning Charging Cable,1,14.95,11/25/19 20:06,"958 2nd St, San Francisco, CA 94016" -291597,Apple Airpods Headphones,1,150,11/12/19 18:59,"616 12th St, Los Angeles, CA 90001" -291598,Lightning Charging Cable,1,14.95,11/08/19 01:08,"929 4th St, New York City, NY 10001" -291599,AAA Batteries (4-pack),1,2.99,11/24/19 17:33,"850 Lake St, San Francisco, CA 94016" -291600,Google Phone,1,600,11/17/19 10:48,"888 Forest St, Atlanta, GA 30301" -291601,Apple Airpods Headphones,1,150,11/04/19 14:02,"139 Pine St, Dallas, TX 75001" -291602,USB-C Charging Cable,1,11.95,11/05/19 11:15,"81 River St, Boston, MA 02215" -291603,AA Batteries (4-pack),1,3.84,11/14/19 15:16,"175 Jefferson St, Boston, MA 02215" -291604,Lightning Charging Cable,1,14.95,11/21/19 11:31,"15 5th St, San Francisco, CA 94016" -291605,AAA Batteries (4-pack),2,2.99,11/01/19 11:59,"125 Hickory St, Dallas, TX 75001" -291606,Bose SoundSport Headphones,1,99.99,11/30/19 10:36,"741 Cherry St, San Francisco, CA 94016" -291607,Wired Headphones,1,11.99,11/27/19 17:52,"943 2nd St, San Francisco, CA 94016" -291608,20in Monitor,1,109.99,11/01/19 20:49,"637 West St, Austin, TX 73301" -291609,Macbook Pro Laptop,1,1700,11/09/19 16:57,"455 4th St, Boston, MA 02215" -291610,Bose SoundSport Headphones,1,99.99,11/07/19 22:58,"976 12th St, Portland, OR 97035" -291611,AAA Batteries (4-pack),1,2.99,11/16/19 16:00,"447 Lakeview St, Seattle, WA 98101" -291612,Vareebadd Phone,1,400,11/10/19 18:20,"915 South St, Austin, TX 73301" -291613,Flatscreen TV,1,300,11/06/19 21:44,"388 Park St, Dallas, TX 75001" -291614,Lightning Charging Cable,1,14.95,11/24/19 17:53,"521 Park St, San Francisco, CA 94016" -291615,AAA Batteries (4-pack),2,2.99,11/20/19 11:40,"659 Lakeview St, San Francisco, CA 94016" -291616,AA Batteries (4-pack),1,3.84,11/27/19 18:34,"472 Lakeview St, Dallas, TX 75001" -291617,34in Ultrawide Monitor,1,379.99,11/28/19 16:18,"197 Main St, Portland, OR 97035" -291618,Bose SoundSport Headphones,1,99.99,11/25/19 23:40,"227 Lincoln St, Boston, MA 02215" -291619,Wired Headphones,1,11.99,11/09/19 14:17,"273 Forest St, Atlanta, GA 30301" -291620,AA Batteries (4-pack),1,3.84,11/28/19 18:07,"51 Center St, Atlanta, GA 30301" -291621,20in Monitor,1,109.99,11/26/19 11:50,"931 8th St, San Francisco, CA 94016" -291622,Apple Airpods Headphones,1,150,11/27/19 14:10,"457 Hickory St, Boston, MA 02215" -291623,AA Batteries (4-pack),1,3.84,11/06/19 16:54,"920 10th St, San Francisco, CA 94016" -291624,Wired Headphones,1,11.99,11/08/19 16:30,"784 Cedar St, San Francisco, CA 94016" -291625,USB-C Charging Cable,2,11.95,11/01/19 11:52,"393 Cedar St, Los Angeles, CA 90001" -291626,AA Batteries (4-pack),1,3.84,11/15/19 10:55,"846 Main St, Boston, MA 02215" -291627,Wired Headphones,1,11.99,11/23/19 14:36,"20 Walnut St, Los Angeles, CA 90001" -291628,Wired Headphones,1,11.99,11/26/19 08:16,"94 Willow St, San Francisco, CA 94016" -291629,Flatscreen TV,1,300,11/13/19 19:40,"375 11th St, Los Angeles, CA 90001" -291630,AA Batteries (4-pack),1,3.84,11/21/19 21:25,"758 Hill St, San Francisco, CA 94016" -291631,Google Phone,1,600,11/23/19 19:43,"465 Pine St, Seattle, WA 98101" -291632,Flatscreen TV,1,300,11/08/19 21:49,"614 Highland St, Austin, TX 73301" -291633,Lightning Charging Cable,1,14.95,11/03/19 09:53,"855 Wilson St, Austin, TX 73301" -291634,AAA Batteries (4-pack),2,2.99,11/23/19 05:30,"315 Chestnut St, Portland, OR 97035" -291635,Wired Headphones,1,11.99,11/30/19 21:30,"512 4th St, Seattle, WA 98101" -291636,Wired Headphones,1,11.99,11/01/19 10:36,"572 7th St, San Francisco, CA 94016" -291636,AAA Batteries (4-pack),1,2.99,11/01/19 10:36,"572 7th St, San Francisco, CA 94016" -291637,Wired Headphones,1,11.99,11/30/19 15:20,"28 Lincoln St, New York City, NY 10001" -291638,Flatscreen TV,1,300,11/25/19 11:00,"238 Washington St, Los Angeles, CA 90001" -291639,Wired Headphones,1,11.99,11/13/19 13:10,"293 Adams St, Los Angeles, CA 90001" -291640,Apple Airpods Headphones,1,150,11/25/19 12:30,"708 Walnut St, San Francisco, CA 94016" -291641,USB-C Charging Cable,1,11.95,11/01/19 14:20,"838 Main St, Atlanta, GA 30301" -291642,Wired Headphones,1,11.99,11/19/19 13:07,"922 Chestnut St, New York City, NY 10001" -291643,AAA Batteries (4-pack),2,2.99,11/28/19 16:46,"510 Chestnut St, Atlanta, GA 30301" -291644,AA Batteries (4-pack),1,3.84,11/03/19 12:57,"992 River St, Los Angeles, CA 90001" -291645,AAA Batteries (4-pack),1,2.99,11/24/19 10:11,"69 5th St, Los Angeles, CA 90001" -291646,USB-C Charging Cable,1,11.95,11/04/19 19:50,"680 5th St, Los Angeles, CA 90001" -291647,20in Monitor,1,109.99,11/01/19 06:30,"540 Hill St, San Francisco, CA 94016" -291648,USB-C Charging Cable,1,11.95,11/17/19 01:42,"296 Madison St, New York City, NY 10001" -291649,Bose SoundSport Headphones,1,99.99,11/17/19 11:05,"37 Hickory St, Los Angeles, CA 90001" -291650,27in 4K Gaming Monitor,1,389.99,11/27/19 21:11,"322 Main St, Austin, TX 73301" -291651,USB-C Charging Cable,1,11.95,11/09/19 08:29,"525 Chestnut St, Los Angeles, CA 90001" -291652,Google Phone,1,600,11/05/19 21:23,"880 11th St, Dallas, TX 75001" -291653,Apple Airpods Headphones,1,150,11/27/19 18:28,"924 Chestnut St, Los Angeles, CA 90001" -291654,AAA Batteries (4-pack),1,2.99,11/15/19 19:08,"217 Elm St, San Francisco, CA 94016" -291655,Wired Headphones,1,11.99,11/04/19 10:32,"205 Lincoln St, San Francisco, CA 94016" -291656,Bose SoundSport Headphones,1,99.99,11/09/19 11:18,"976 Cherry St, San Francisco, CA 94016" -291657,AAA Batteries (4-pack),2,2.99,11/13/19 14:54,"618 6th St, Los Angeles, CA 90001" -291658,USB-C Charging Cable,1,11.95,11/06/19 00:13,"136 4th St, San Francisco, CA 94016" -291659,Macbook Pro Laptop,1,1700,11/09/19 17:01,"190 Walnut St, Austin, TX 73301" -291660,Wired Headphones,1,11.99,11/04/19 16:33,"713 Jackson St, Los Angeles, CA 90001" -291661,AA Batteries (4-pack),1,3.84,11/01/19 16:29,"188 Ridge St, Portland, OR 97035" -291662,AAA Batteries (4-pack),1,2.99,11/20/19 19:41,"95 Lake St, New York City, NY 10001" -291663,USB-C Charging Cable,1,11.95,11/09/19 20:44,"992 Willow St, Boston, MA 02215" -291664,Apple Airpods Headphones,1,150,11/02/19 22:19,"97 Cherry St, Los Angeles, CA 90001" -291665,Wired Headphones,1,11.99,11/26/19 08:10,"631 Hill St, Atlanta, GA 30301" -291666,27in FHD Monitor,1,149.99,11/26/19 20:13,"954 10th St, San Francisco, CA 94016" -291667,Lightning Charging Cable,1,14.95,11/02/19 20:31,"492 Pine St, San Francisco, CA 94016" -291668,27in 4K Gaming Monitor,1,389.99,11/22/19 10:46,"793 11th St, San Francisco, CA 94016" -291669,Apple Airpods Headphones,1,150,11/25/19 20:57,"97 14th St, Los Angeles, CA 90001" -291670,AA Batteries (4-pack),1,3.84,11/21/19 01:14,"8 10th St, Dallas, TX 75001" -291671,AAA Batteries (4-pack),1,2.99,11/27/19 14:44,"589 Church St, Austin, TX 73301" -291671,Apple Airpods Headphones,1,150,11/27/19 14:44,"589 Church St, Austin, TX 73301" -291672,Bose SoundSport Headphones,1,99.99,11/22/19 20:35,"706 4th St, New York City, NY 10001" -291673,Lightning Charging Cable,1,14.95,11/24/19 07:38,"26 Adams St, New York City, NY 10001" -291674,Apple Airpods Headphones,1,150,11/01/19 15:48,"689 North St, Los Angeles, CA 90001" -291675,Wired Headphones,1,11.99,11/09/19 09:50,"470 4th St, Seattle, WA 98101" -291676,Apple Airpods Headphones,1,150,11/13/19 10:24,"854 Washington St, Dallas, TX 75001" -291677,iPhone,1,700,11/03/19 07:57,"957 Lake St, Boston, MA 02215" -291678,AA Batteries (4-pack),1,3.84,11/07/19 15:31,"67 Jackson St, New York City, NY 10001" -291679,USB-C Charging Cable,1,11.95,11/19/19 10:06,"314 Chestnut St, New York City, NY 10001" -291680,Wired Headphones,1,11.99,11/09/19 07:34,"512 Sunset St, Dallas, TX 75001" -291681,AAA Batteries (4-pack),1,2.99,11/09/19 18:03,"67 North St, Atlanta, GA 30301" -291682,iPhone,1,700,11/19/19 08:30,"214 Dogwood St, New York City, NY 10001" -291682,Lightning Charging Cable,1,14.95,11/19/19 08:30,"214 Dogwood St, New York City, NY 10001" -291683,Apple Airpods Headphones,1,150,11/04/19 14:32,"562 Hickory St, San Francisco, CA 94016" -291684,AAA Batteries (4-pack),2,2.99,11/12/19 14:44,"246 Spruce St, Atlanta, GA 30301" -,,,,, -291685,27in FHD Monitor,1,149.99,11/01/19 13:14,"681 Dogwood St, Boston, MA 02215" -291686,27in 4K Gaming Monitor,1,389.99,11/30/19 15:43,"640 Cherry St, San Francisco, CA 94016" -291687,AA Batteries (4-pack),1,3.84,11/22/19 17:38,"575 Cherry St, Portland, OR 97035" -291688,ThinkPad Laptop,1,999.99,11/01/19 08:51,"888 2nd St, San Francisco, CA 94016" -291689,ThinkPad Laptop,1,999.99,11/21/19 19:12,"339 6th St, Austin, TX 73301" -291690,Bose SoundSport Headphones,1,99.99,11/29/19 15:15,"396 Cedar St, San Francisco, CA 94016" -291691,ThinkPad Laptop,1,999.99,11/06/19 15:15,"386 South St, Boston, MA 02215" -291692,Apple Airpods Headphones,1,150,11/15/19 17:41,"214 Jackson St, San Francisco, CA 94016" -291693,27in FHD Monitor,1,149.99,11/15/19 14:51,"191 2nd St, New York City, NY 10001" -291694,AA Batteries (4-pack),2,3.84,11/19/19 16:59,"879 5th St, San Francisco, CA 94016" -291695,27in FHD Monitor,1,149.99,11/05/19 18:42,"749 North St, Atlanta, GA 30301" -291696,AA Batteries (4-pack),1,3.84,11/22/19 09:48,"247 Jackson St, Seattle, WA 98101" -291697,AA Batteries (4-pack),2,3.84,11/06/19 20:33,"387 Spruce St, Atlanta, GA 30301" -291698,Apple Airpods Headphones,1,150,11/12/19 17:36,"873 Johnson St, San Francisco, CA 94016" -291699,Lightning Charging Cable,1,14.95,11/27/19 13:21,"954 Church St, San Francisco, CA 94016" -291699,Wired Headphones,2,11.99,11/27/19 13:21,"954 Church St, San Francisco, CA 94016" -291700,Bose SoundSport Headphones,1,99.99,11/19/19 17:36,"78 8th St, Dallas, TX 75001" -291701,Vareebadd Phone,1,400,11/23/19 13:35,"900 Forest St, Los Angeles, CA 90001" -291702,USB-C Charging Cable,1,11.95,11/19/19 10:31,"410 11th St, Portland, OR 97035" -291703,Wired Headphones,1,11.99,11/13/19 16:02,"577 Lincoln St, Los Angeles, CA 90001" -291704,USB-C Charging Cable,1,11.95,11/03/19 07:18,"868 14th St, Seattle, WA 98101" -291705,Lightning Charging Cable,2,14.95,11/09/19 20:59,"285 Sunset St, Atlanta, GA 30301" -291706,AAA Batteries (4-pack),2,2.99,11/27/19 00:40,"76 Cedar St, San Francisco, CA 94016" -291707,Wired Headphones,1,11.99,11/16/19 20:02,"510 13th St, Austin, TX 73301" -291708,Wired Headphones,1,11.99,11/04/19 20:55,"706 12th St, New York City, NY 10001" -291709,AAA Batteries (4-pack),1,2.99,11/25/19 13:19,"662 12th St, Atlanta, GA 30301" -291710,iPhone,1,700,11/09/19 18:23,"583 West St, San Francisco, CA 94016" -291711,AA Batteries (4-pack),1,3.84,11/04/19 22:50,"244 West St, Boston, MA 02215" -291712,ThinkPad Laptop,1,999.99,11/10/19 10:49,"615 Lakeview St, Atlanta, GA 30301" -291713,AA Batteries (4-pack),2,3.84,11/25/19 16:18,"877 12th St, Atlanta, GA 30301" -291714,27in FHD Monitor,1,149.99,11/27/19 12:53,"824 South St, Los Angeles, CA 90001" -291715,Bose SoundSport Headphones,1,99.99,11/05/19 21:58,"193 Adams St, Los Angeles, CA 90001" -291716,Bose SoundSport Headphones,1,99.99,11/08/19 16:33,"624 Chestnut St, San Francisco, CA 94016" -291717,iPhone,1,700,11/20/19 10:35,"254 Washington St, Dallas, TX 75001" -291718,AAA Batteries (4-pack),1,2.99,11/17/19 13:33,"664 Washington St, Boston, MA 02215" -291719,USB-C Charging Cable,1,11.95,11/26/19 09:39,"194 Elm St, New York City, NY 10001" -291720,AAA Batteries (4-pack),1,2.99,11/17/19 17:22,"26 Cherry St, Atlanta, GA 30301" -291721,AAA Batteries (4-pack),2,2.99,11/12/19 14:32,"282 Center St, Los Angeles, CA 90001" -291722,Lightning Charging Cable,1,14.95,11/27/19 20:22,"43 8th St, Boston, MA 02215" -291723,27in FHD Monitor,1,149.99,11/21/19 11:42,"326 Dogwood St, San Francisco, CA 94016" -291724,USB-C Charging Cable,1,11.95,11/21/19 04:26,"368 Willow St, San Francisco, CA 94016" -291725,USB-C Charging Cable,1,11.95,11/20/19 15:58,"233 Madison St, Boston, MA 02215" -291726,USB-C Charging Cable,1,11.95,11/21/19 16:24,"314 12th St, San Francisco, CA 94016" -291727,Apple Airpods Headphones,1,150,11/04/19 16:06,"749 Pine St, Los Angeles, CA 90001" -291728,Lightning Charging Cable,1,14.95,11/15/19 12:57,"865 8th St, Los Angeles, CA 90001" -291729,Wired Headphones,1,11.99,11/08/19 16:00,"824 Lakeview St, New York City, NY 10001" -291730,27in 4K Gaming Monitor,1,389.99,11/25/19 11:29,"650 North St, Dallas, TX 75001" -291731,AA Batteries (4-pack),1,3.84,11/11/19 17:55,"996 Cherry St, Dallas, TX 75001" -291732,Vareebadd Phone,1,400,11/19/19 07:49,"534 Adams St, Los Angeles, CA 90001" -291732,USB-C Charging Cable,1,11.95,11/19/19 07:49,"534 Adams St, Los Angeles, CA 90001" -291733,AA Batteries (4-pack),2,3.84,11/10/19 13:45,"143 9th St, San Francisco, CA 94016" -291734,iPhone,1,700,11/11/19 16:32,"753 Chestnut St, San Francisco, CA 94016" -291735,USB-C Charging Cable,1,11.95,11/23/19 19:35,"433 9th St, San Francisco, CA 94016" -291736,AAA Batteries (4-pack),1,2.99,11/18/19 20:49,"118 Center St, San Francisco, CA 94016" -291737,AA Batteries (4-pack),1,3.84,11/02/19 16:08,"482 Wilson St, San Francisco, CA 94016" -291738,27in FHD Monitor,1,149.99,11/19/19 12:10,"952 Maple St, Los Angeles, CA 90001" -291739,iPhone,1,700,11/25/19 16:49,"342 Adams St, Los Angeles, CA 90001" -291740,Wired Headphones,2,11.99,11/11/19 17:23,"529 2nd St, Los Angeles, CA 90001" -291741,AA Batteries (4-pack),1,3.84,11/26/19 19:51,"108 Hickory St, New York City, NY 10001" -291742,AAA Batteries (4-pack),1,2.99,11/13/19 13:02,"823 Forest St, Dallas, TX 75001" -291743,Macbook Pro Laptop,1,1700,11/07/19 18:37,"589 10th St, Seattle, WA 98101" -291744,USB-C Charging Cable,1,11.95,11/25/19 06:32,"331 Maple St, Portland, OR 97035" -291745,27in FHD Monitor,1,149.99,11/18/19 00:45,"61 Cedar St, Los Angeles, CA 90001" -291746,Flatscreen TV,1,300,11/18/19 21:35,"560 Sunset St, San Francisco, CA 94016" -291747,34in Ultrawide Monitor,1,379.99,11/01/19 21:17,"726 7th St, Los Angeles, CA 90001" -291748,AA Batteries (4-pack),1,3.84,11/17/19 23:34,"164 Sunset St, Atlanta, GA 30301" -291749,AAA Batteries (4-pack),1,2.99,11/12/19 23:18,"912 Hill St, San Francisco, CA 94016" -291750,Wired Headphones,1,11.99,11/07/19 20:42,"732 Walnut St, Seattle, WA 98101" -291751,USB-C Charging Cable,1,11.95,11/13/19 20:21,"552 Johnson St, Portland, ME 04101" -291752,Lightning Charging Cable,1,14.95,11/08/19 07:28,"242 Ridge St, New York City, NY 10001" -291753,USB-C Charging Cable,1,11.95,11/17/19 16:42,"827 West St, Seattle, WA 98101" -291754,Bose SoundSport Headphones,1,99.99,11/25/19 12:33,"720 Jackson St, Boston, MA 02215" -291755,AAA Batteries (4-pack),2,2.99,11/12/19 16:45,"722 8th St, Seattle, WA 98101" -291756,iPhone,1,700,11/07/19 19:24,"724 Willow St, San Francisco, CA 94016" -291757,Wired Headphones,1,11.99,11/03/19 22:11,"667 1st St, Los Angeles, CA 90001" -291758,ThinkPad Laptop,1,999.99,11/12/19 12:00,"89 Elm St, San Francisco, CA 94016" -291759,34in Ultrawide Monitor,1,379.99,11/22/19 11:17,"147 Ridge St, Los Angeles, CA 90001" -291760,Apple Airpods Headphones,1,150,11/20/19 12:30,"327 River St, Boston, MA 02215" -291761,USB-C Charging Cable,1,11.95,11/06/19 12:40,"562 West St, Atlanta, GA 30301" -291762,Wired Headphones,1,11.99,11/15/19 16:32,"161 Main St, Boston, MA 02215" -291763,AA Batteries (4-pack),1,3.84,11/15/19 08:38,"691 13th St, Austin, TX 73301" -291764,AA Batteries (4-pack),1,3.84,11/06/19 12:51,"377 Cherry St, Los Angeles, CA 90001" -291765,Wired Headphones,1,11.99,11/09/19 14:26,"231 Johnson St, New York City, NY 10001" -291766,20in Monitor,1,109.99,11/30/19 00:13,"134 14th St, Dallas, TX 75001" -291767,USB-C Charging Cable,1,11.95,11/08/19 22:23,"195 River St, San Francisco, CA 94016" -291768,27in 4K Gaming Monitor,1,389.99,11/25/19 09:39,"919 9th St, Atlanta, GA 30301" -291769,AAA Batteries (4-pack),1,2.99,11/10/19 19:16,"726 Forest St, Los Angeles, CA 90001" -291770,Wired Headphones,1,11.99,11/21/19 14:46,"913 Johnson St, San Francisco, CA 94016" -291771,Macbook Pro Laptop,1,1700,11/27/19 15:45,"966 West St, San Francisco, CA 94016" -291772,AAA Batteries (4-pack),1,2.99,11/13/19 15:46,"326 River St, San Francisco, CA 94016" -291773,AA Batteries (4-pack),1,3.84,11/30/19 10:59,"122 Highland St, San Francisco, CA 94016" -291774,AA Batteries (4-pack),1,3.84,11/02/19 15:17,"207 Wilson St, Seattle, WA 98101" -291775,AA Batteries (4-pack),1,3.84,11/07/19 14:25,"373 Lakeview St, San Francisco, CA 94016" -291776,USB-C Charging Cable,1,11.95,11/22/19 12:53,"83 Elm St, Boston, MA 02215" -291777,Lightning Charging Cable,1,14.95,11/07/19 09:32,"540 2nd St, New York City, NY 10001" -291778,ThinkPad Laptop,1,999.99,11/20/19 20:14,"19 6th St, Seattle, WA 98101" -291778,27in FHD Monitor,1,149.99,11/20/19 20:14,"19 6th St, Seattle, WA 98101" -291779,27in 4K Gaming Monitor,1,389.99,11/22/19 19:14,"395 Cherry St, Seattle, WA 98101" -291780,20in Monitor,1,109.99,11/13/19 14:45,"94 Lakeview St, Boston, MA 02215" -291781,27in FHD Monitor,1,149.99,11/30/19 12:35,"770 Meadow St, Los Angeles, CA 90001" -291782,Apple Airpods Headphones,1,150,11/20/19 13:28,"879 Cherry St, Seattle, WA 98101" -291783,Bose SoundSport Headphones,1,99.99,11/09/19 23:46,"340 Lake St, San Francisco, CA 94016" -291784,Lightning Charging Cable,1,14.95,11/26/19 21:52,"691 Cedar St, New York City, NY 10001" -291785,USB-C Charging Cable,1,11.95,11/15/19 13:55,"905 13th St, Seattle, WA 98101" -291786,Wired Headphones,1,11.99,11/29/19 19:42,"924 1st St, Atlanta, GA 30301" -291787,USB-C Charging Cable,1,11.95,11/13/19 12:55,"377 Walnut St, New York City, NY 10001" -291788,AAA Batteries (4-pack),1,2.99,11/15/19 18:33,"576 6th St, San Francisco, CA 94016" -291789,USB-C Charging Cable,1,11.95,11/01/19 16:26,"928 Walnut St, Portland, OR 97035" -291790,Bose SoundSport Headphones,1,99.99,11/16/19 16:40,"15 14th St, Boston, MA 02215" -291791,Apple Airpods Headphones,1,150,11/08/19 11:32,"759 9th St, Los Angeles, CA 90001" -291792,34in Ultrawide Monitor,1,379.99,11/22/19 20:51,"216 9th St, San Francisco, CA 94016" -291793,AAA Batteries (4-pack),2,2.99,11/08/19 09:34,"665 7th St, New York City, NY 10001" -291794,Macbook Pro Laptop,1,1700,11/29/19 13:14,"856 Highland St, Boston, MA 02215" -291795,Lightning Charging Cable,1,14.95,11/02/19 09:20,"318 River St, Atlanta, GA 30301" -,,,,, -291796,AAA Batteries (4-pack),1,2.99,11/22/19 11:34,"889 Jefferson St, San Francisco, CA 94016" -291797,Google Phone,1,600,11/04/19 16:45,"194 Cedar St, Atlanta, GA 30301" -291798,Wired Headphones,1,11.99,11/18/19 16:30,"545 Highland St, Austin, TX 73301" -291799,USB-C Charging Cable,1,11.95,11/21/19 01:28,"70 Hill St, Dallas, TX 75001" -291800,Google Phone,1,600,11/10/19 14:48,"768 Jefferson St, Seattle, WA 98101" -291800,USB-C Charging Cable,1,11.95,11/10/19 14:48,"768 Jefferson St, Seattle, WA 98101" -291801,27in 4K Gaming Monitor,1,389.99,11/02/19 16:49,"644 Lakeview St, Los Angeles, CA 90001" -291802,27in FHD Monitor,1,149.99,11/10/19 17:54,"769 Pine St, New York City, NY 10001" -291803,Macbook Pro Laptop,1,1700,11/12/19 17:39,"747 14th St, San Francisco, CA 94016" -291804,AA Batteries (4-pack),4,3.84,11/16/19 13:22,"753 5th St, San Francisco, CA 94016" -291805,Wired Headphones,1,11.99,11/13/19 03:46,"599 Jackson St, San Francisco, CA 94016" -291806,USB-C Charging Cable,1,11.95,11/02/19 21:11,"21 13th St, Los Angeles, CA 90001" -291807,Lightning Charging Cable,2,14.95,11/05/19 11:39,"471 10th St, Boston, MA 02215" -291808,USB-C Charging Cable,2,11.95,11/30/19 20:21,"344 Lincoln St, Austin, TX 73301" -291809,AAA Batteries (4-pack),1,2.99,11/25/19 04:00,"548 2nd St, Boston, MA 02215" -291810,Google Phone,1,600,11/16/19 23:48,"810 12th St, New York City, NY 10001" -291810,Wired Headphones,1,11.99,11/16/19 23:48,"810 12th St, New York City, NY 10001" -291811,Wired Headphones,1,11.99,11/18/19 20:05,"42 Pine St, New York City, NY 10001" -291812,Bose SoundSport Headphones,1,99.99,11/27/19 16:59,"184 Lakeview St, Austin, TX 73301" -291813,AA Batteries (4-pack),1,3.84,11/20/19 12:45,"443 7th St, San Francisco, CA 94016" -291814,Google Phone,1,600,11/24/19 15:11,"833 Hickory St, Seattle, WA 98101" -291815,Google Phone,1,600,11/10/19 09:52,"211 Chestnut St, San Francisco, CA 94016" -291816,Lightning Charging Cable,1,14.95,11/14/19 10:39,"469 Park St, Los Angeles, CA 90001" -291817,34in Ultrawide Monitor,1,379.99,11/02/19 14:50,"515 Dogwood St, San Francisco, CA 94016" -291818,Wired Headphones,1,11.99,11/24/19 11:14,"217 2nd St, Boston, MA 02215" -291819,AA Batteries (4-pack),1,3.84,11/11/19 21:10,"940 Madison St, Boston, MA 02215" -291820,AAA Batteries (4-pack),2,2.99,11/23/19 12:18,"144 Meadow St, San Francisco, CA 94016" -291821,20in Monitor,1,109.99,11/02/19 11:07,"674 Hill St, Seattle, WA 98101" -291822,USB-C Charging Cable,1,11.95,11/17/19 08:11,"546 Park St, Dallas, TX 75001" -291823,27in 4K Gaming Monitor,1,389.99,11/14/19 13:00,"96 Main St, New York City, NY 10001" -291824,Apple Airpods Headphones,1,150,11/10/19 13:09,"250 7th St, Portland, ME 04101" -291825,AAA Batteries (4-pack),1,2.99,11/15/19 17:16,"173 Spruce St, Los Angeles, CA 90001" -291826,AA Batteries (4-pack),3,3.84,11/06/19 20:48,"385 Johnson St, Austin, TX 73301" -291827,Wired Headphones,3,11.99,11/03/19 22:37,"434 Walnut St, San Francisco, CA 94016" -291828,Apple Airpods Headphones,1,150,11/07/19 16:21,"767 West St, San Francisco, CA 94016" -291829,AA Batteries (4-pack),1,3.84,11/05/19 01:24,"472 North St, San Francisco, CA 94016" -291830,Wired Headphones,1,11.99,11/20/19 10:01,"531 Wilson St, Los Angeles, CA 90001" -291831,Bose SoundSport Headphones,2,99.99,11/11/19 23:13,"215 Highland St, San Francisco, CA 94016" -291832,Lightning Charging Cable,1,14.95,11/28/19 10:30,"83 Pine St, Atlanta, GA 30301" -291833,Lightning Charging Cable,1,14.95,11/22/19 00:59,"378 Church St, New York City, NY 10001" -291834,USB-C Charging Cable,1,11.95,11/25/19 20:23,"373 Washington St, San Francisco, CA 94016" -291835,USB-C Charging Cable,1,11.95,11/20/19 19:53,"145 Hickory St, Atlanta, GA 30301" -291836,Apple Airpods Headphones,1,150,11/20/19 11:36,"243 6th St, Atlanta, GA 30301" -291837,AAA Batteries (4-pack),2,2.99,11/24/19 20:40,"389 14th St, San Francisco, CA 94016" -291838,Bose SoundSport Headphones,1,99.99,11/09/19 14:35,"701 South St, Atlanta, GA 30301" -291838,Google Phone,1,600,11/09/19 14:35,"701 South St, Atlanta, GA 30301" -291839,USB-C Charging Cable,1,11.95,11/18/19 11:15,"935 12th St, San Francisco, CA 94016" -291840,AA Batteries (4-pack),1,3.84,11/18/19 11:43,"579 Madison St, New York City, NY 10001" -291841,27in 4K Gaming Monitor,1,389.99,11/19/19 20:51,"46 Lincoln St, Atlanta, GA 30301" -291842,USB-C Charging Cable,1,11.95,11/19/19 19:57,"623 Lincoln St, San Francisco, CA 94016" -291843,Lightning Charging Cable,1,14.95,11/23/19 20:39,"638 Lakeview St, San Francisco, CA 94016" -291844,Wired Headphones,1,11.99,11/13/19 01:27,"169 Dogwood St, Boston, MA 02215" -291845,Wired Headphones,1,11.99,11/06/19 13:46,"534 Willow St, San Francisco, CA 94016" -291846,Google Phone,1,600,11/24/19 18:39,"409 5th St, Boston, MA 02215" -291846,USB-C Charging Cable,1,11.95,11/24/19 18:39,"409 5th St, Boston, MA 02215" -291847,USB-C Charging Cable,1,11.95,11/10/19 10:30,"836 Wilson St, Portland, OR 97035" -291848,Apple Airpods Headphones,1,150,11/01/19 10:36,"984 9th St, San Francisco, CA 94016" -291849,Lightning Charging Cable,1,14.95,11/19/19 19:27,"904 11th St, Portland, OR 97035" -291850,Flatscreen TV,1,300,11/19/19 15:19,"784 7th St, Los Angeles, CA 90001" -291851,34in Ultrawide Monitor,1,379.99,11/28/19 18:30,"989 South St, Los Angeles, CA 90001" -291852,Lightning Charging Cable,1,14.95,11/12/19 08:58,"531 Main St, San Francisco, CA 94016" -291853,Lightning Charging Cable,1,14.95,11/02/19 19:16,"720 Ridge St, Dallas, TX 75001" -291854,AA Batteries (4-pack),1,3.84,11/27/19 22:12,"830 5th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -291855,iPhone,1,700,11/05/19 23:40,"67 Jackson St, Atlanta, GA 30301" -291856,Apple Airpods Headphones,1,150,11/30/19 15:59,"844 8th St, Austin, TX 73301" -291857,AA Batteries (4-pack),1,3.84,11/13/19 00:44,"759 Jackson St, Boston, MA 02215" -291858,AA Batteries (4-pack),1,3.84,11/08/19 16:00,"999 Park St, San Francisco, CA 94016" -291859,USB-C Charging Cable,1,11.95,11/22/19 10:30,"173 5th St, Atlanta, GA 30301" -291860,USB-C Charging Cable,1,11.95,11/03/19 10:38,"867 Wilson St, San Francisco, CA 94016" -291861,Lightning Charging Cable,1,14.95,11/13/19 17:34,"671 Hickory St, San Francisco, CA 94016" -291862,Lightning Charging Cable,1,14.95,11/14/19 10:57,"866 Spruce St, San Francisco, CA 94016" -291863,Flatscreen TV,1,300,11/28/19 12:45,"922 Lincoln St, New York City, NY 10001" -291864,iPhone,1,700,11/09/19 14:12,"89 Pine St, Dallas, TX 75001" -291865,USB-C Charging Cable,1,11.95,11/04/19 20:26,"435 Highland St, Atlanta, GA 30301" -291866,Lightning Charging Cable,1,14.95,11/18/19 16:32,"388 Sunset St, Seattle, WA 98101" -291867,20in Monitor,1,109.99,11/15/19 18:13,"241 7th St, New York City, NY 10001" -291868,Apple Airpods Headphones,1,150,11/25/19 21:13,"659 Lincoln St, Los Angeles, CA 90001" -291869,Bose SoundSport Headphones,1,99.99,11/21/19 13:22,"674 Center St, Atlanta, GA 30301" -291870,Bose SoundSport Headphones,1,99.99,11/05/19 11:56,"743 Jefferson St, Los Angeles, CA 90001" -291871,AA Batteries (4-pack),2,3.84,11/11/19 17:23,"227 Cedar St, San Francisco, CA 94016" -291872,Macbook Pro Laptop,1,1700,11/30/19 19:42,"666 River St, Boston, MA 02215" -291873,AA Batteries (4-pack),1,3.84,11/27/19 13:03,"792 Johnson St, Los Angeles, CA 90001" -291874,Wired Headphones,1,11.99,11/20/19 12:09,"884 4th St, San Francisco, CA 94016" -291875,Apple Airpods Headphones,1,150,11/04/19 09:14,"677 Pine St, San Francisco, CA 94016" -291876,27in 4K Gaming Monitor,1,389.99,11/22/19 13:31,"864 Highland St, Atlanta, GA 30301" -291877,USB-C Charging Cable,1,11.95,11/06/19 08:58,"74 14th St, San Francisco, CA 94016" -291878,34in Ultrawide Monitor,1,379.99,11/07/19 17:50,"966 Hickory St, Dallas, TX 75001" -291879,34in Ultrawide Monitor,1,379.99,11/16/19 12:51,"775 River St, Portland, OR 97035" -291880,Wired Headphones,1,11.99,11/16/19 19:40,"619 Walnut St, San Francisco, CA 94016" -291881,Apple Airpods Headphones,1,150,11/06/19 11:02,"175 Cherry St, San Francisco, CA 94016" -,,,,, -291882,Bose SoundSport Headphones,1,99.99,11/22/19 20:46,"188 8th St, Atlanta, GA 30301" -291883,Lightning Charging Cable,1,14.95,11/22/19 13:07,"203 Cherry St, San Francisco, CA 94016" -291884,AAA Batteries (4-pack),1,2.99,11/15/19 14:35,"133 Lake St, San Francisco, CA 94016" -291885,27in FHD Monitor,1,149.99,11/01/19 16:31,"717 Forest St, San Francisco, CA 94016" -291886,Bose SoundSport Headphones,1,99.99,11/28/19 10:55,"640 Pine St, Boston, MA 02215" -291887,Lightning Charging Cable,1,14.95,11/12/19 21:28,"199 6th St, Los Angeles, CA 90001" -291888,Bose SoundSport Headphones,1,99.99,11/23/19 06:39,"22 Walnut St, San Francisco, CA 94016" -291889,USB-C Charging Cable,2,11.95,11/30/19 00:40,"652 Pine St, San Francisco, CA 94016" -291890,Apple Airpods Headphones,1,150,11/06/19 21:20,"749 Wilson St, San Francisco, CA 94016" -291891,27in 4K Gaming Monitor,1,389.99,11/24/19 09:50,"494 5th St, San Francisco, CA 94016" -291892,Bose SoundSport Headphones,1,99.99,11/25/19 22:04,"753 Church St, Dallas, TX 75001" -291893,27in FHD Monitor,1,149.99,11/19/19 18:16,"80 11th St, New York City, NY 10001" -291894,AA Batteries (4-pack),1,3.84,11/13/19 15:18,"480 Sunset St, San Francisco, CA 94016" -291895,Lightning Charging Cable,1,14.95,11/28/19 14:33,"471 Walnut St, Boston, MA 02215" -291896,iPhone,1,700,11/29/19 18:15,"768 West St, Austin, TX 73301" -291897,AA Batteries (4-pack),1,3.84,11/28/19 05:40,"431 Sunset St, New York City, NY 10001" -291898,AA Batteries (4-pack),4,3.84,11/02/19 13:06,"317 13th St, Boston, MA 02215" -291899,AA Batteries (4-pack),1,3.84,11/14/19 12:02,"824 Madison St, New York City, NY 10001" -291900,20in Monitor,1,109.99,11/22/19 16:14,"256 Lincoln St, Dallas, TX 75001" -291901,Google Phone,1,600,11/06/19 17:21,"979 Hill St, Los Angeles, CA 90001" -291902,Apple Airpods Headphones,1,150,11/02/19 21:45,"430 Sunset St, San Francisco, CA 94016" -291903,Lightning Charging Cable,1,14.95,11/04/19 15:12,"781 12th St, Boston, MA 02215" -291904,AAA Batteries (4-pack),1,2.99,11/21/19 14:23,"957 Ridge St, San Francisco, CA 94016" -291905,27in FHD Monitor,1,149.99,11/10/19 20:44,"388 North St, Portland, OR 97035" -291906,Wired Headphones,1,11.99,11/19/19 10:48,"293 Park St, Atlanta, GA 30301" -291907,Macbook Pro Laptop,1,1700,11/29/19 22:20,"834 6th St, Los Angeles, CA 90001" -291908,Apple Airpods Headphones,1,150,11/28/19 08:08,"778 Cherry St, San Francisco, CA 94016" -291909,AA Batteries (4-pack),1,3.84,11/29/19 04:19,"732 Spruce St, Los Angeles, CA 90001" -291910,AA Batteries (4-pack),1,3.84,11/14/19 09:18,"814 13th St, Portland, OR 97035" -291911,Bose SoundSport Headphones,1,99.99,11/04/19 10:50,"856 Adams St, Austin, TX 73301" -291912,Apple Airpods Headphones,1,150,11/02/19 12:51,"882 Lakeview St, New York City, NY 10001" -291913,Lightning Charging Cable,2,14.95,11/19/19 14:16,"99 12th St, New York City, NY 10001" -291914,Bose SoundSport Headphones,1,99.99,11/22/19 08:39,"938 1st St, Dallas, TX 75001" -291915,Macbook Pro Laptop,1,1700,11/17/19 23:58,"655 Forest St, San Francisco, CA 94016" -291916,iPhone,1,700,11/19/19 16:12,"183 1st St, New York City, NY 10001" -291916,Apple Airpods Headphones,1,150,11/19/19 16:12,"183 1st St, New York City, NY 10001" -291917,Apple Airpods Headphones,1,150,11/08/19 12:05,"86 2nd St, Los Angeles, CA 90001" -291918,27in 4K Gaming Monitor,1,389.99,11/14/19 22:17,"503 2nd St, Portland, OR 97035" -291919,USB-C Charging Cable,1,11.95,11/07/19 09:45,"145 Lake St, Los Angeles, CA 90001" -291920,Bose SoundSport Headphones,1,99.99,11/01/19 22:04,"240 West St, Los Angeles, CA 90001" -291921,ThinkPad Laptop,1,999.99,11/25/19 20:20,"987 Washington St, Atlanta, GA 30301" -291922,Apple Airpods Headphones,1,150,11/16/19 13:54,"230 Willow St, Boston, MA 02215" -291923,AAA Batteries (4-pack),1,2.99,11/10/19 21:42,"580 Center St, San Francisco, CA 94016" -291924,Bose SoundSport Headphones,1,99.99,11/09/19 07:26,"490 Maple St, San Francisco, CA 94016" -291925,27in FHD Monitor,1,149.99,11/03/19 08:31,"471 5th St, New York City, NY 10001" -291926,20in Monitor,1,109.99,11/17/19 10:29,"193 10th St, New York City, NY 10001" -291927,AA Batteries (4-pack),1,3.84,11/27/19 19:29,"950 Adams St, Austin, TX 73301" -291928,AA Batteries (4-pack),1,3.84,11/19/19 16:12,"450 North St, Dallas, TX 75001" -291929,Apple Airpods Headphones,1,150,11/07/19 10:04,"862 2nd St, Atlanta, GA 30301" -291930,Wired Headphones,1,11.99,11/01/19 08:13,"656 Lake St, Dallas, TX 75001" -291931,USB-C Charging Cable,2,11.95,11/06/19 07:43,"50 Washington St, San Francisco, CA 94016" -291932,Flatscreen TV,1,300,11/11/19 17:16,"340 Center St, San Francisco, CA 94016" -291932,Flatscreen TV,1,300,11/11/19 17:16,"340 Center St, San Francisco, CA 94016" -291933,AA Batteries (4-pack),1,3.84,11/25/19 20:51,"436 11th St, Atlanta, GA 30301" -291934,Wired Headphones,1,11.99,11/18/19 22:38,"950 Cherry St, Los Angeles, CA 90001" -291935,AAA Batteries (4-pack),1,2.99,11/28/19 19:46,"712 2nd St, Boston, MA 02215" -291936,Wired Headphones,1,11.99,11/29/19 21:23,"787 Willow St, Los Angeles, CA 90001" -291937,Flatscreen TV,1,300,11/27/19 15:08,"759 14th St, Seattle, WA 98101" -291938,AAA Batteries (4-pack),1,2.99,11/01/19 12:44,"955 Washington St, Los Angeles, CA 90001" -291939,Apple Airpods Headphones,1,150,11/01/19 16:32,"780 8th St, New York City, NY 10001" -291940,iPhone,1,700,11/27/19 22:21,"148 1st St, Seattle, WA 98101" -291940,Apple Airpods Headphones,1,150,11/27/19 22:21,"148 1st St, Seattle, WA 98101" -291941,Lightning Charging Cable,1,14.95,11/07/19 12:05,"341 Jackson St, New York City, NY 10001" -291942,Macbook Pro Laptop,1,1700,11/13/19 12:10,"56 Hickory St, Los Angeles, CA 90001" -291943,Lightning Charging Cable,1,14.95,11/06/19 09:11,"680 Jefferson St, Seattle, WA 98101" -291944,27in FHD Monitor,1,149.99,11/27/19 11:03,"252 2nd St, Los Angeles, CA 90001" -291945,27in FHD Monitor,1,149.99,11/24/19 18:52,"514 Main St, San Francisco, CA 94016" -291946,Wired Headphones,1,11.99,11/28/19 19:39,"705 Jackson St, Dallas, TX 75001" -291947,34in Ultrawide Monitor,1,379.99,11/16/19 02:20,"627 North St, New York City, NY 10001" -291948,34in Ultrawide Monitor,1,379.99,11/29/19 12:45,"126 8th St, Los Angeles, CA 90001" -291949,Lightning Charging Cable,1,14.95,11/30/19 23:22,"114 Elm St, Atlanta, GA 30301" -291949,Lightning Charging Cable,1,14.95,11/30/19 23:22,"114 Elm St, Atlanta, GA 30301" -291950,Lightning Charging Cable,1,14.95,11/02/19 09:25,"852 Willow St, New York City, NY 10001" -291951,AAA Batteries (4-pack),2,2.99,11/24/19 13:41,"351 Forest St, Los Angeles, CA 90001" -291952,AAA Batteries (4-pack),3,2.99,11/15/19 12:40,"361 Dogwood St, San Francisco, CA 94016" -291953,AAA Batteries (4-pack),1,2.99,11/10/19 15:39,"444 Adams St, Boston, MA 02215" -291954,USB-C Charging Cable,1,11.95,11/20/19 01:48,"650 Spruce St, Los Angeles, CA 90001" -291955,USB-C Charging Cable,1,11.95,11/24/19 21:45,"144 Willow St, Austin, TX 73301" -291956,AA Batteries (4-pack),3,3.84,11/22/19 21:41,"710 Washington St, Atlanta, GA 30301" -291957,AA Batteries (4-pack),1,3.84,11/10/19 06:16,"217 14th St, Atlanta, GA 30301" -291958,iPhone,1,700,11/21/19 12:17,"873 Washington St, New York City, NY 10001" -291959,AA Batteries (4-pack),1,3.84,11/25/19 11:31,"519 Cedar St, Dallas, TX 75001" -291960,USB-C Charging Cable,1,11.95,11/26/19 21:22,"513 7th St, Austin, TX 73301" -291961,27in FHD Monitor,1,149.99,11/11/19 19:57,"550 Jackson St, San Francisco, CA 94016" -291962,27in FHD Monitor,1,149.99,11/24/19 11:14,"35 Madison St, Los Angeles, CA 90001" -291963,Google Phone,1,600,11/27/19 15:30,"832 12th St, Seattle, WA 98101" -291964,Apple Airpods Headphones,1,150,11/07/19 08:27,"555 Willow St, New York City, NY 10001" -291965,34in Ultrawide Monitor,1,379.99,11/19/19 20:55,"145 1st St, Atlanta, GA 30301" -291966,27in 4K Gaming Monitor,1,389.99,11/15/19 15:51,"94 Hill St, Dallas, TX 75001" -291967,AAA Batteries (4-pack),1,2.99,11/08/19 10:42,"189 7th St, Seattle, WA 98101" -291968,USB-C Charging Cable,1,11.95,11/05/19 11:44,"663 Walnut St, Seattle, WA 98101" -291969,27in 4K Gaming Monitor,1,389.99,11/27/19 11:41,"45 14th St, San Francisco, CA 94016" -291970,Lightning Charging Cable,1,14.95,11/08/19 16:21,"998 Maple St, San Francisco, CA 94016" -291971,USB-C Charging Cable,1,11.95,11/30/19 20:13,"51 Church St, Los Angeles, CA 90001" -291972,27in 4K Gaming Monitor,1,389.99,11/22/19 03:29,"333 Lake St, Boston, MA 02215" -291973,AAA Batteries (4-pack),2,2.99,11/12/19 11:54,"572 Hickory St, Los Angeles, CA 90001" -291974,AAA Batteries (4-pack),1,2.99,11/14/19 20:30,"719 South St, Portland, OR 97035" -291975,LG Dryer,1,600.0,11/26/19 20:01,"409 Spruce St, New York City, NY 10001" -291976,AA Batteries (4-pack),1,3.84,11/30/19 12:12,"649 8th St, Boston, MA 02215" -291977,Bose SoundSport Headphones,1,99.99,11/26/19 09:42,"948 Chestnut St, New York City, NY 10001" -291978,20in Monitor,1,109.99,11/20/19 11:29,"84 4th St, San Francisco, CA 94016" -291979,AA Batteries (4-pack),1,3.84,11/29/19 10:13,"463 10th St, San Francisco, CA 94016" -291980,AAA Batteries (4-pack),2,2.99,11/27/19 18:06,"353 Cherry St, Boston, MA 02215" -291981,Bose SoundSport Headphones,1,99.99,11/22/19 18:06,"45 Lakeview St, San Francisco, CA 94016" -291982,Apple Airpods Headphones,1,150,11/15/19 17:52,"326 River St, Portland, OR 97035" -291983,27in FHD Monitor,1,149.99,11/06/19 01:52,"465 Lincoln St, San Francisco, CA 94016" -291984,USB-C Charging Cable,1,11.95,11/13/19 19:38,"364 Adams St, Seattle, WA 98101" -291985,USB-C Charging Cable,1,11.95,11/21/19 09:34,"554 Jefferson St, Atlanta, GA 30301" -291986,Lightning Charging Cable,1,14.95,11/12/19 07:09,"983 Hill St, New York City, NY 10001" -291986,Bose SoundSport Headphones,1,99.99,11/12/19 07:09,"983 Hill St, New York City, NY 10001" -291987,LG Washing Machine,1,600.0,11/09/19 08:59,"236 1st St, San Francisco, CA 94016" -291988,Lightning Charging Cable,1,14.95,11/04/19 09:56,"872 Jackson St, Seattle, WA 98101" -291989,Apple Airpods Headphones,1,150,11/29/19 23:22,"80 Dogwood St, Los Angeles, CA 90001" -291990,27in 4K Gaming Monitor,1,389.99,11/05/19 12:26,"959 Sunset St, New York City, NY 10001" -291991,Vareebadd Phone,1,400,11/14/19 17:50,"253 Elm St, Boston, MA 02215" -291991,USB-C Charging Cable,1,11.95,11/14/19 17:50,"253 Elm St, Boston, MA 02215" -291991,Wired Headphones,1,11.99,11/14/19 17:50,"253 Elm St, Boston, MA 02215" -291992,Apple Airpods Headphones,1,150,11/15/19 20:16,"458 Main St, Dallas, TX 75001" -291993,Apple Airpods Headphones,1,150,11/17/19 12:19,"2 Lakeview St, Seattle, WA 98101" -291994,Lightning Charging Cable,1,14.95,11/04/19 18:18,"141 Meadow St, Seattle, WA 98101" -291995,Bose SoundSport Headphones,1,99.99,11/29/19 09:37,"908 9th St, Los Angeles, CA 90001" -291996,Lightning Charging Cable,1,14.95,11/02/19 13:37,"614 Hill St, Atlanta, GA 30301" -291997,20in Monitor,1,109.99,11/09/19 13:03,"843 Forest St, Seattle, WA 98101" -291998,Lightning Charging Cable,1,14.95,11/18/19 12:32,"916 12th St, Seattle, WA 98101" -291999,AAA Batteries (4-pack),1,2.99,11/22/19 21:00,"243 Park St, San Francisco, CA 94016" -292000,iPhone,1,700,11/06/19 22:28,"301 River St, San Francisco, CA 94016" -292001,27in FHD Monitor,1,149.99,11/07/19 01:43,"992 Lake St, Atlanta, GA 30301" -292002,Bose SoundSport Headphones,1,99.99,11/07/19 14:24,"886 North St, San Francisco, CA 94016" -292003,AAA Batteries (4-pack),1,2.99,11/07/19 13:53,"422 Forest St, Portland, OR 97035" -292004,iPhone,1,700,11/13/19 20:58,"186 Wilson St, Boston, MA 02215" -292005,AA Batteries (4-pack),1,3.84,11/21/19 09:27,"907 6th St, Portland, OR 97035" -292006,USB-C Charging Cable,1,11.95,11/12/19 12:47,"772 Chestnut St, San Francisco, CA 94016" -292007,AA Batteries (4-pack),1,3.84,11/07/19 10:21,"700 Jackson St, San Francisco, CA 94016" -292008,20in Monitor,1,109.99,11/03/19 19:16,"901 Lakeview St, San Francisco, CA 94016" -292009,iPhone,1,700,11/01/19 11:57,"432 10th St, New York City, NY 10001" -292010,Google Phone,1,600,11/02/19 12:58,"76 Ridge St, Atlanta, GA 30301" -292011,Apple Airpods Headphones,1,150,11/10/19 20:40,"93 13th St, Los Angeles, CA 90001" -292012,Flatscreen TV,1,300,11/26/19 14:18,"664 9th St, San Francisco, CA 94016" -292013,Flatscreen TV,1,300,11/21/19 13:45,"604 North St, Atlanta, GA 30301" -292014,Wired Headphones,1,11.99,11/11/19 20:20,"958 13th St, Dallas, TX 75001" -292015,Lightning Charging Cable,1,14.95,11/24/19 18:50,"686 Main St, Los Angeles, CA 90001" -292016,Google Phone,1,600,11/15/19 09:26,"349 Elm St, Austin, TX 73301" -292017,AA Batteries (4-pack),2,3.84,11/24/19 13:26,"492 Dogwood St, Los Angeles, CA 90001" -292018,AA Batteries (4-pack),1,3.84,11/29/19 23:35,"298 6th St, Los Angeles, CA 90001" -292019,Apple Airpods Headphones,1,150,11/26/19 22:59,"677 West St, Austin, TX 73301" -292020,Google Phone,1,600,11/28/19 00:00,"970 6th St, Los Angeles, CA 90001" -292021,ThinkPad Laptop,1,999.99,11/10/19 22:13,"480 Hill St, New York City, NY 10001" -292022,Bose SoundSport Headphones,1,99.99,11/02/19 10:10,"42 7th St, Los Angeles, CA 90001" -292023,Apple Airpods Headphones,1,150,11/21/19 11:59,"553 6th St, San Francisco, CA 94016" -292024,USB-C Charging Cable,1,11.95,11/26/19 09:07,"405 Johnson St, Austin, TX 73301" -292025,Apple Airpods Headphones,2,150,11/16/19 21:11,"443 Forest St, Los Angeles, CA 90001" -292026,LG Dryer,1,600.0,11/08/19 08:29,"362 Main St, Los Angeles, CA 90001" -292027,USB-C Charging Cable,1,11.95,11/01/19 13:04,"791 Church St, Los Angeles, CA 90001" -292028,AA Batteries (4-pack),1,3.84,11/05/19 13:33,"796 Center St, Dallas, TX 75001" -292029,Wired Headphones,1,11.99,11/17/19 00:09,"624 Chestnut St, Dallas, TX 75001" -292030,Lightning Charging Cable,1,14.95,11/03/19 02:53,"441 River St, Boston, MA 02215" -292031,Bose SoundSport Headphones,1,99.99,11/03/19 21:09,"162 Church St, New York City, NY 10001" -292032,Wired Headphones,1,11.99,11/11/19 23:31,"105 West St, Dallas, TX 75001" -292033,Lightning Charging Cable,1,14.95,11/09/19 06:16,"539 Elm St, San Francisco, CA 94016" -292034,Lightning Charging Cable,1,14.95,11/10/19 08:24,"550 Spruce St, Los Angeles, CA 90001" -292035,Lightning Charging Cable,1,14.95,11/01/19 19:54,"645 Lakeview St, San Francisco, CA 94016" -292036,AAA Batteries (4-pack),1,2.99,11/11/19 17:44,"124 Adams St, New York City, NY 10001" -292037,Lightning Charging Cable,1,14.95,11/24/19 20:23,"965 Maple St, San Francisco, CA 94016" -292038,AA Batteries (4-pack),2,3.84,11/08/19 08:46,"227 Lincoln St, New York City, NY 10001" -292039,Bose SoundSport Headphones,1,99.99,11/30/19 18:44,"760 10th St, Boston, MA 02215" -292040,Lightning Charging Cable,1,14.95,11/28/19 19:18,"551 14th St, Portland, OR 97035" -292041,34in Ultrawide Monitor,1,379.99,11/30/19 16:55,"936 13th St, Seattle, WA 98101" -292042,AAA Batteries (4-pack),2,2.99,11/13/19 11:57,"858 Madison St, San Francisco, CA 94016" -292043,27in 4K Gaming Monitor,1,389.99,11/27/19 09:38,"789 Forest St, San Francisco, CA 94016" -292044,ThinkPad Laptop,1,999.99,11/14/19 18:17,"757 4th St, San Francisco, CA 94016" -292045,Lightning Charging Cable,1,14.95,11/20/19 19:31,"738 1st St, Los Angeles, CA 90001" -292046,Apple Airpods Headphones,1,150,11/04/19 15:58,"325 North St, San Francisco, CA 94016" -292047,27in FHD Monitor,1,149.99,11/14/19 18:44,"406 2nd St, Los Angeles, CA 90001" -292048,Wired Headphones,2,11.99,11/25/19 21:04,"691 6th St, Portland, OR 97035" -292049,USB-C Charging Cable,1,11.95,11/20/19 13:57,"247 Cedar St, Boston, MA 02215" -292050,Bose SoundSport Headphones,1,99.99,11/28/19 18:02,"778 Sunset St, Boston, MA 02215" -292051,Flatscreen TV,1,300,11/20/19 14:18,"964 Cedar St, Portland, OR 97035" -292052,AAA Batteries (4-pack),2,2.99,11/22/19 18:10,"803 South St, Los Angeles, CA 90001" -292053,Apple Airpods Headphones,1,150,11/12/19 13:50,"446 Lake St, New York City, NY 10001" -292054,AA Batteries (4-pack),1,3.84,11/23/19 14:51,"975 Wilson St, Los Angeles, CA 90001" -292055,USB-C Charging Cable,1,11.95,11/22/19 17:12,"710 Lakeview St, Boston, MA 02215" -292056,Apple Airpods Headphones,1,150,11/26/19 21:44,"84 9th St, New York City, NY 10001" -292057,AAA Batteries (4-pack),1,2.99,11/11/19 10:15,"496 Lincoln St, Boston, MA 02215" -292058,AAA Batteries (4-pack),2,2.99,11/04/19 14:56,"701 Jefferson St, Seattle, WA 98101" -292059,Bose SoundSport Headphones,1,99.99,11/08/19 01:15,"348 Lake St, Los Angeles, CA 90001" -292060,Wired Headphones,1,11.99,11/12/19 11:07,"908 13th St, Los Angeles, CA 90001" -292061,27in 4K Gaming Monitor,1,389.99,11/01/19 19:07,"508 South St, Boston, MA 02215" -292062,AAA Batteries (4-pack),1,2.99,11/05/19 13:16,"530 Jackson St, Dallas, TX 75001" -292063,Lightning Charging Cable,1,14.95,11/02/19 21:24,"700 Lake St, Seattle, WA 98101" -292064,Lightning Charging Cable,1,14.95,11/24/19 23:07,"839 13th St, Los Angeles, CA 90001" -292065,AA Batteries (4-pack),1,3.84,11/30/19 13:07,"395 Elm St, San Francisco, CA 94016" -292066,34in Ultrawide Monitor,1,379.99,11/23/19 19:32,"212 4th St, San Francisco, CA 94016" -292067,USB-C Charging Cable,1,11.95,11/28/19 10:16,"870 Hill St, New York City, NY 10001" -292068,Lightning Charging Cable,1,14.95,11/21/19 09:22,"797 Highland St, San Francisco, CA 94016" -292069,Macbook Pro Laptop,1,1700,11/25/19 20:03,"667 Pine St, Austin, TX 73301" -292070,Wired Headphones,1,11.99,11/24/19 16:17,"548 5th St, Seattle, WA 98101" -292071,AAA Batteries (4-pack),1,2.99,11/04/19 12:37,"270 5th St, Boston, MA 02215" -292072,27in FHD Monitor,1,149.99,11/08/19 21:48,"355 10th St, Portland, OR 97035" -292073,USB-C Charging Cable,1,11.95,11/07/19 12:40,"296 Hill St, Boston, MA 02215" -292074,34in Ultrawide Monitor,1,379.99,11/03/19 14:36,"330 Highland St, San Francisco, CA 94016" -292075,20in Monitor,1,109.99,11/16/19 00:44,"525 12th St, San Francisco, CA 94016" -292076,27in FHD Monitor,1,149.99,11/04/19 21:24,"707 Forest St, San Francisco, CA 94016" -292077,34in Ultrawide Monitor,1,379.99,11/02/19 11:41,"527 5th St, Los Angeles, CA 90001" -292078,iPhone,1,700,11/14/19 12:00,"227 Highland St, Los Angeles, CA 90001" -292079,AAA Batteries (4-pack),2,2.99,11/20/19 17:47,"405 West St, Boston, MA 02215" -292080,Macbook Pro Laptop,1,1700,11/23/19 11:55,"162 South St, Los Angeles, CA 90001" -292081,Macbook Pro Laptop,1,1700,11/15/19 21:24,"844 12th St, Seattle, WA 98101" -292082,27in 4K Gaming Monitor,1,389.99,11/10/19 23:16,"29 Sunset St, Atlanta, GA 30301" -292083,27in 4K Gaming Monitor,1,389.99,11/17/19 14:03,"828 Willow St, San Francisco, CA 94016" -292084,Wired Headphones,1,11.99,11/22/19 13:51,"475 Park St, San Francisco, CA 94016" -292085,27in FHD Monitor,1,149.99,11/17/19 10:49,"663 Pine St, Portland, OR 97035" -292086,Lightning Charging Cable,1,14.95,11/16/19 13:12,"922 11th St, San Francisco, CA 94016" -292087,AAA Batteries (4-pack),1,2.99,11/26/19 06:27,"706 14th St, Dallas, TX 75001" -292088,USB-C Charging Cable,1,11.95,11/29/19 19:18,"552 Willow St, San Francisco, CA 94016" -292089,Lightning Charging Cable,1,14.95,11/30/19 17:06,"591 Adams St, Los Angeles, CA 90001" -292090,AA Batteries (4-pack),1,3.84,11/06/19 19:55,"218 Chestnut St, San Francisco, CA 94016" -292091,AA Batteries (4-pack),1,3.84,11/27/19 13:10,"748 4th St, San Francisco, CA 94016" -292092,Apple Airpods Headphones,1,150,11/20/19 12:15,"734 Hickory St, Seattle, WA 98101" -292093,AAA Batteries (4-pack),1,2.99,11/29/19 09:18,"233 Cedar St, San Francisco, CA 94016" -292094,AA Batteries (4-pack),1,3.84,11/28/19 20:33,"334 Pine St, San Francisco, CA 94016" -292095,27in 4K Gaming Monitor,1,389.99,11/11/19 07:59,"972 Johnson St, Dallas, TX 75001" -292096,Lightning Charging Cable,1,14.95,11/11/19 19:47,"190 South St, San Francisco, CA 94016" -292097,AAA Batteries (4-pack),1,2.99,11/16/19 09:51,"315 Walnut St, Atlanta, GA 30301" -292098,Google Phone,1,600,11/01/19 10:13,"214 4th St, Dallas, TX 75001" -292098,USB-C Charging Cable,1,11.95,11/01/19 10:13,"214 4th St, Dallas, TX 75001" -292098,Lightning Charging Cable,1,14.95,11/01/19 10:13,"214 4th St, Dallas, TX 75001" -292099,AA Batteries (4-pack),1,3.84,11/24/19 22:08,"270 5th St, New York City, NY 10001" -292100,Wired Headphones,1,11.99,11/29/19 01:57,"432 Highland St, Los Angeles, CA 90001" -292101,Apple Airpods Headphones,1,150,11/03/19 11:56,"897 Willow St, Austin, TX 73301" -292102,Bose SoundSport Headphones,1,99.99,11/07/19 12:53,"662 Walnut St, Dallas, TX 75001" -292103,27in 4K Gaming Monitor,1,389.99,11/24/19 16:31,"477 Hill St, New York City, NY 10001" -292104,Wired Headphones,1,11.99,11/03/19 12:28,"131 South St, San Francisco, CA 94016" -292105,Macbook Pro Laptop,1,1700,11/27/19 10:55,"470 West St, New York City, NY 10001" -292106,USB-C Charging Cable,1,11.95,11/23/19 08:34,"201 Sunset St, San Francisco, CA 94016" -292107,Apple Airpods Headphones,1,150,11/15/19 17:23,"536 Forest St, Austin, TX 73301" -292108,20in Monitor,1,109.99,11/01/19 13:43,"46 5th St, Los Angeles, CA 90001" -292109,Lightning Charging Cable,1,14.95,11/05/19 16:43,"144 Ridge St, Seattle, WA 98101" -292110,27in FHD Monitor,1,149.99,11/07/19 11:06,"739 Elm St, Los Angeles, CA 90001" -292111,USB-C Charging Cable,1,11.95,11/19/19 16:16,"479 2nd St, New York City, NY 10001" -292112,27in FHD Monitor,1,149.99,11/06/19 18:45,"764 South St, Boston, MA 02215" -292113,AA Batteries (4-pack),1,3.84,11/11/19 16:49,"493 Park St, Austin, TX 73301" -292114,34in Ultrawide Monitor,1,379.99,11/20/19 17:20,"337 Center St, Los Angeles, CA 90001" -292115,Bose SoundSport Headphones,1,99.99,11/21/19 20:07,"246 Cherry St, New York City, NY 10001" -292116,AAA Batteries (4-pack),3,2.99,11/17/19 00:10,"659 4th St, Los Angeles, CA 90001" -292117,Wired Headphones,1,11.99,11/06/19 21:48,"870 Elm St, Boston, MA 02215" -292118,AAA Batteries (4-pack),2,2.99,11/19/19 22:10,"484 Maple St, San Francisco, CA 94016" -292119,Lightning Charging Cable,1,14.95,11/11/19 07:01,"6 8th St, Dallas, TX 75001" -292120,27in 4K Gaming Monitor,1,389.99,11/26/19 20:35,"138 Forest St, San Francisco, CA 94016" -292121,Lightning Charging Cable,1,14.95,11/27/19 00:10,"957 Main St, Boston, MA 02215" -292122,iPhone,1,700,11/25/19 09:43,"504 Lakeview St, San Francisco, CA 94016" -292123,AAA Batteries (4-pack),1,2.99,11/17/19 17:38,"89 Dogwood St, Seattle, WA 98101" -292124,Apple Airpods Headphones,1,150,11/03/19 20:26,"303 Jefferson St, Dallas, TX 75001" -292125,27in 4K Gaming Monitor,1,389.99,11/20/19 14:34,"606 Hickory St, Atlanta, GA 30301" -292126,AAA Batteries (4-pack),1,2.99,11/23/19 00:05,"96 Chestnut St, Los Angeles, CA 90001" -292127,USB-C Charging Cable,2,11.95,11/03/19 15:48,"772 Adams St, Los Angeles, CA 90001" -292128,Macbook Pro Laptop,1,1700,11/10/19 22:45,"789 West St, San Francisco, CA 94016" -292129,ThinkPad Laptop,1,999.99,11/16/19 16:19,"581 Pine St, Dallas, TX 75001" -292130,Lightning Charging Cable,1,14.95,11/27/19 16:07,"469 Cherry St, New York City, NY 10001" -292131,Apple Airpods Headphones,1,150,11/03/19 11:51,"205 14th St, New York City, NY 10001" -292132,Wired Headphones,1,11.99,11/05/19 13:14,"46 Maple St, Los Angeles, CA 90001" -292133,AA Batteries (4-pack),1,3.84,11/19/19 08:39,"111 Maple St, San Francisco, CA 94016" -292134,Lightning Charging Cable,1,14.95,11/06/19 19:24,"119 13th St, New York City, NY 10001" -292135,USB-C Charging Cable,1,11.95,11/18/19 16:54,"94 Ridge St, Austin, TX 73301" -292136,Bose SoundSport Headphones,1,99.99,11/22/19 18:22,"765 Adams St, San Francisco, CA 94016" -292137,iPhone,1,700,11/21/19 20:57,"914 Dogwood St, Los Angeles, CA 90001" -292138,Apple Airpods Headphones,1,150,11/18/19 22:45,"358 Sunset St, Boston, MA 02215" -292139,Apple Airpods Headphones,1,150,11/08/19 22:04,"634 Lakeview St, San Francisco, CA 94016" -292140,iPhone,1,700,11/09/19 16:43,"430 Chestnut St, Los Angeles, CA 90001" -292141,Lightning Charging Cable,2,14.95,11/09/19 08:45,"743 Highland St, Boston, MA 02215" -292142,Flatscreen TV,1,300,11/13/19 06:21,"118 Hill St, San Francisco, CA 94016" -292143,27in 4K Gaming Monitor,1,389.99,11/19/19 06:44,"233 Washington St, Portland, OR 97035" -292144,Lightning Charging Cable,1,14.95,11/02/19 16:59,"586 Lincoln St, New York City, NY 10001" -292145,AA Batteries (4-pack),1,3.84,11/21/19 04:18,"283 Johnson St, New York City, NY 10001" -292146,Apple Airpods Headphones,1,150,11/13/19 10:43,"796 6th St, New York City, NY 10001" -292147,Lightning Charging Cable,1,14.95,11/19/19 13:58,"764 Dogwood St, Portland, OR 97035" -292148,Apple Airpods Headphones,1,150,11/26/19 11:56,"657 Hickory St, Portland, ME 04101" -292149,27in FHD Monitor,1,149.99,11/30/19 19:30,"896 Hickory St, San Francisco, CA 94016" -292150,Macbook Pro Laptop,1,1700,11/13/19 10:12,"471 Adams St, Portland, OR 97035" -292151,Apple Airpods Headphones,1,150,11/10/19 13:44,"373 9th St, San Francisco, CA 94016" -292152,Bose SoundSport Headphones,1,99.99,11/25/19 15:35,"608 Cedar St, Portland, OR 97035" -292153,Lightning Charging Cable,1,14.95,11/29/19 12:32,"158 8th St, San Francisco, CA 94016" -292154,Macbook Pro Laptop,1,1700,11/21/19 19:59,"807 Walnut St, Portland, OR 97035" -292155,AAA Batteries (4-pack),2,2.99,11/30/19 21:56,"124 Wilson St, Dallas, TX 75001" -292156,USB-C Charging Cable,1,11.95,11/11/19 14:07,"101 West St, San Francisco, CA 94016" -292157,Lightning Charging Cable,1,14.95,11/01/19 12:58,"427 Hickory St, San Francisco, CA 94016" -292158,34in Ultrawide Monitor,1,379.99,11/12/19 14:15,"336 Chestnut St, New York City, NY 10001" -292159,Bose SoundSport Headphones,1,99.99,11/30/19 13:22,"122 10th St, Dallas, TX 75001" -292160,Apple Airpods Headphones,1,150,11/04/19 09:53,"146 13th St, Boston, MA 02215" -292161,Lightning Charging Cable,1,14.95,11/03/19 23:18,"788 North St, Portland, OR 97035" -292162,USB-C Charging Cable,1,11.95,11/17/19 09:14,"645 Madison St, Los Angeles, CA 90001" -292163,USB-C Charging Cable,1,11.95,11/19/19 23:14,"250 10th St, Atlanta, GA 30301" -292164,Wired Headphones,1,11.99,11/15/19 20:00,"571 Spruce St, Dallas, TX 75001" -292165,Macbook Pro Laptop,1,1700,11/03/19 15:36,"483 5th St, New York City, NY 10001" -292166,Apple Airpods Headphones,1,150,11/23/19 23:44,"332 11th St, Boston, MA 02215" -292167,AA Batteries (4-pack),3,3.84,11/05/19 14:48,"916 North St, Austin, TX 73301" -292168,Wired Headphones,1,11.99,11/15/19 15:32,"808 Jackson St, Boston, MA 02215" -292169,27in FHD Monitor,1,149.99,11/22/19 11:21,"762 Highland St, Portland, OR 97035" -292170,AA Batteries (4-pack),1,3.84,11/12/19 19:44,"728 Main St, Los Angeles, CA 90001" -292171,34in Ultrawide Monitor,1,379.99,11/12/19 19:40,"136 Ridge St, Seattle, WA 98101" -292172,20in Monitor,1,109.99,11/07/19 19:27,"954 Lincoln St, Portland, OR 97035" -292173,Wired Headphones,1,11.99,11/07/19 11:02,"674 South St, Portland, ME 04101" -292174,USB-C Charging Cable,1,11.95,11/23/19 18:24,"995 Maple St, Los Angeles, CA 90001" -292175,Wired Headphones,1,11.99,11/29/19 18:55,"506 Lakeview St, Boston, MA 02215" -292176,iPhone,1,700,11/05/19 15:44,"495 Cedar St, San Francisco, CA 94016" -292177,Lightning Charging Cable,1,14.95,11/19/19 21:40,"676 Cedar St, Los Angeles, CA 90001" -292178,Bose SoundSport Headphones,1,99.99,11/23/19 02:00,"114 North St, San Francisco, CA 94016" -292179,27in FHD Monitor,1,149.99,11/13/19 18:29,"669 Church St, San Francisco, CA 94016" -292180,Lightning Charging Cable,1,14.95,11/19/19 08:15,"926 8th St, Boston, MA 02215" -292181,USB-C Charging Cable,1,11.95,11/14/19 20:20,"100 Dogwood St, Los Angeles, CA 90001" -292182,USB-C Charging Cable,1,11.95,11/17/19 10:36,"741 Wilson St, Boston, MA 02215" -292183,Bose SoundSport Headphones,1,99.99,11/03/19 19:34,"730 Pine St, Los Angeles, CA 90001" -292184,27in 4K Gaming Monitor,1,389.99,11/05/19 21:17,"239 10th St, Portland, OR 97035" -292185,Apple Airpods Headphones,1,150,11/25/19 19:58,"729 Spruce St, Los Angeles, CA 90001" -292186,Lightning Charging Cable,2,14.95,11/19/19 12:35,"275 12th St, Los Angeles, CA 90001" -292187,Wired Headphones,2,11.99,11/24/19 04:09,"859 Walnut St, Dallas, TX 75001" -292188,Wired Headphones,1,11.99,11/14/19 20:38,"905 7th St, New York City, NY 10001" -292189,Bose SoundSport Headphones,1,99.99,11/04/19 12:50,"423 South St, Boston, MA 02215" -292190,Apple Airpods Headphones,1,150,11/07/19 22:52,"345 1st St, Dallas, TX 75001" -292191,AAA Batteries (4-pack),1,2.99,11/30/19 22:50,"220 Jackson St, San Francisco, CA 94016" -292192,AAA Batteries (4-pack),1,2.99,11/03/19 00:57,"663 Wilson St, San Francisco, CA 94016" -292193,27in 4K Gaming Monitor,1,389.99,11/06/19 16:09,"924 4th St, Atlanta, GA 30301" -292194,Wired Headphones,1,11.99,11/01/19 09:08,"36 Maple St, San Francisco, CA 94016" -292195,AAA Batteries (4-pack),1,2.99,11/18/19 19:52,"605 Madison St, Boston, MA 02215" -292196,27in 4K Gaming Monitor,1,389.99,11/07/19 17:18,"197 Hill St, New York City, NY 10001" -292197,Wired Headphones,1,11.99,11/27/19 19:56,"59 Center St, Boston, MA 02215" -292198,AA Batteries (4-pack),3,3.84,11/04/19 18:30,"492 Church St, Portland, ME 04101" -292199,Wired Headphones,1,11.99,11/25/19 09:13,"381 Wilson St, San Francisco, CA 94016" -292200,Bose SoundSport Headphones,1,99.99,11/11/19 11:43,"910 Spruce St, San Francisco, CA 94016" -292201,Wired Headphones,1,11.99,11/23/19 17:05,"668 6th St, Los Angeles, CA 90001" -292202,Lightning Charging Cable,2,14.95,11/07/19 17:49,"954 11th St, San Francisco, CA 94016" -292203,AAA Batteries (4-pack),2,2.99,11/12/19 20:16,"88 Forest St, San Francisco, CA 94016" -292204,USB-C Charging Cable,1,11.95,11/26/19 22:32,"663 Lincoln St, San Francisco, CA 94016" -292205,27in FHD Monitor,1,149.99,11/01/19 03:50,"123 Johnson St, Boston, MA 02215" -292206,USB-C Charging Cable,1,11.95,11/30/19 22:08,"851 Jackson St, Los Angeles, CA 90001" -292207,USB-C Charging Cable,1,11.95,11/25/19 23:09,"42 Dogwood St, Austin, TX 73301" -292208,Vareebadd Phone,1,400,11/07/19 21:16,"565 Meadow St, Dallas, TX 75001" -292209,27in 4K Gaming Monitor,1,389.99,11/20/19 15:12,"668 10th St, Boston, MA 02215" -292210,iPhone,1,700,11/16/19 12:41,"119 11th St, Boston, MA 02215" -292211,AA Batteries (4-pack),1,3.84,11/11/19 12:49,"435 Sunset St, Dallas, TX 75001" -292212,27in FHD Monitor,1,149.99,11/30/19 08:59,"294 South St, Boston, MA 02215" -292213,Lightning Charging Cable,1,14.95,11/12/19 09:46,"479 2nd St, San Francisco, CA 94016" -292214,Lightning Charging Cable,1,14.95,11/01/19 17:33,"157 Spruce St, Los Angeles, CA 90001" -292215,USB-C Charging Cable,1,11.95,11/10/19 18:40,"193 Elm St, San Francisco, CA 94016" -292216,Google Phone,1,600,11/22/19 17:02,"519 Meadow St, Atlanta, GA 30301" -292216,USB-C Charging Cable,1,11.95,11/22/19 17:02,"519 Meadow St, Atlanta, GA 30301" -292217,USB-C Charging Cable,1,11.95,11/21/19 21:44,"364 6th St, Boston, MA 02215" -292218,AA Batteries (4-pack),1,3.84,11/01/19 18:35,"627 Walnut St, Dallas, TX 75001" -292219,AA Batteries (4-pack),1,3.84,11/27/19 17:00,"239 South St, San Francisco, CA 94016" -292220,Vareebadd Phone,1,400,11/14/19 22:44,"292 Johnson St, New York City, NY 10001" -292220,USB-C Charging Cable,1,11.95,11/14/19 22:44,"292 Johnson St, New York City, NY 10001" -292221,Apple Airpods Headphones,1,150,11/28/19 10:27,"704 Meadow St, Los Angeles, CA 90001" -292222,Apple Airpods Headphones,1,150,11/11/19 00:28,"903 West St, Seattle, WA 98101" -292223,Apple Airpods Headphones,1,150,11/17/19 09:19,"916 8th St, New York City, NY 10001" -292224,AAA Batteries (4-pack),3,2.99,11/03/19 07:30,"586 13th St, Los Angeles, CA 90001" -292225,iPhone,1,700,11/24/19 13:23,"549 Forest St, Boston, MA 02215" -292226,34in Ultrawide Monitor,1,379.99,11/06/19 19:31,"598 Dogwood St, Seattle, WA 98101" -292227,Lightning Charging Cable,1,14.95,11/06/19 15:06,"199 River St, Atlanta, GA 30301" -292228,USB-C Charging Cable,1,11.95,11/29/19 23:37,"820 Walnut St, San Francisco, CA 94016" -292229,Bose SoundSport Headphones,1,99.99,11/04/19 18:50,"205 9th St, Austin, TX 73301" -292230,Google Phone,1,600,11/03/19 21:42,"279 Lakeview St, New York City, NY 10001" -292230,USB-C Charging Cable,2,11.95,11/03/19 21:42,"279 Lakeview St, New York City, NY 10001" -292230,Bose SoundSport Headphones,1,99.99,11/03/19 21:42,"279 Lakeview St, New York City, NY 10001" -292231,AA Batteries (4-pack),2,3.84,11/14/19 19:13,"463 Adams St, San Francisco, CA 94016" -292232,Wired Headphones,1,11.99,11/14/19 17:56,"524 Willow St, Atlanta, GA 30301" -292233,Wired Headphones,1,11.99,11/17/19 17:47,"866 Johnson St, San Francisco, CA 94016" -292234,Apple Airpods Headphones,1,150,11/28/19 20:27,"465 7th St, Austin, TX 73301" -292235,AAA Batteries (4-pack),1,2.99,11/01/19 22:31,"696 12th St, Boston, MA 02215" -292236,Lightning Charging Cable,1,14.95,11/03/19 15:05,"85 Washington St, Boston, MA 02215" -292237,USB-C Charging Cable,1,11.95,11/02/19 20:58,"973 Meadow St, Boston, MA 02215" -292238,AA Batteries (4-pack),1,3.84,11/17/19 16:20,"341 Lincoln St, San Francisco, CA 94016" -292239,Lightning Charging Cable,1,14.95,11/03/19 16:59,"422 Hill St, San Francisco, CA 94016" -292240,USB-C Charging Cable,1,11.95,11/14/19 21:35,"594 12th St, Los Angeles, CA 90001" -292241,Bose SoundSport Headphones,1,99.99,11/26/19 14:56,"367 Spruce St, New York City, NY 10001" -292242,Lightning Charging Cable,1,14.95,11/13/19 17:01,"894 Adams St, Boston, MA 02215" -292243,34in Ultrawide Monitor,1,379.99,11/17/19 23:31,"769 Jefferson St, Seattle, WA 98101" -292244,AAA Batteries (4-pack),2,2.99,11/22/19 08:43,"288 Adams St, Dallas, TX 75001" -292245,Google Phone,1,600,11/06/19 21:51,"229 Chestnut St, Dallas, TX 75001" -292246,Wired Headphones,1,11.99,11/17/19 16:42,"149 12th St, San Francisco, CA 94016" -292247,Lightning Charging Cable,1,14.95,11/13/19 23:43,"67 7th St, Boston, MA 02215" -292248,iPhone,1,700,11/09/19 05:41,"497 Forest St, Los Angeles, CA 90001" -292249,USB-C Charging Cable,1,11.95,11/14/19 11:58,"806 Adams St, New York City, NY 10001" -292250,USB-C Charging Cable,1,11.95,11/25/19 07:42,"262 1st St, New York City, NY 10001" -292251,27in FHD Monitor,1,149.99,11/22/19 21:15,"757 Main St, Seattle, WA 98101" -292252,USB-C Charging Cable,1,11.95,11/26/19 12:22,"567 6th St, San Francisco, CA 94016" -292253,USB-C Charging Cable,1,11.95,11/23/19 14:59,"482 Johnson St, Seattle, WA 98101" -292254,Wired Headphones,1,11.99,11/06/19 17:20,"752 13th St, San Francisco, CA 94016" -292255,27in 4K Gaming Monitor,1,389.99,11/30/19 16:10,"254 Walnut St, Dallas, TX 75001" -292256,27in 4K Gaming Monitor,1,389.99,11/30/19 18:36,"672 Highland St, San Francisco, CA 94016" -292257,USB-C Charging Cable,1,11.95,11/03/19 10:30,"615 Elm St, San Francisco, CA 94016" -292258,Wired Headphones,1,11.99,11/02/19 19:15,"55 11th St, San Francisco, CA 94016" -292259,AAA Batteries (4-pack),1,2.99,11/06/19 16:41,"378 Hill St, San Francisco, CA 94016" -292260,USB-C Charging Cable,1,11.95,11/18/19 18:09,"209 13th St, San Francisco, CA 94016" -292261,27in 4K Gaming Monitor,1,389.99,11/27/19 10:30,"610 Jackson St, San Francisco, CA 94016" -292262,Lightning Charging Cable,1,14.95,11/19/19 04:02,"662 Chestnut St, San Francisco, CA 94016" -292263,Apple Airpods Headphones,1,150,11/19/19 23:25,"114 Jefferson St, Seattle, WA 98101" -292264,Apple Airpods Headphones,1,150,11/13/19 23:17,"855 Sunset St, Seattle, WA 98101" -292265,Wired Headphones,1,11.99,11/25/19 07:28,"681 6th St, San Francisco, CA 94016" -292266,Google Phone,1,600,11/01/19 19:49,"912 Dogwood St, Atlanta, GA 30301" -292267,27in 4K Gaming Monitor,1,389.99,11/18/19 19:13,"774 Elm St, New York City, NY 10001" -292268,27in 4K Gaming Monitor,1,389.99,11/17/19 09:16,"539 8th St, Dallas, TX 75001" -292269,Wired Headphones,1,11.99,12/01/19 01:30,"629 13th St, New York City, NY 10001" -292270,AAA Batteries (4-pack),2,2.99,11/09/19 20:41,"43 Spruce St, New York City, NY 10001" -292271,USB-C Charging Cable,1,11.95,11/20/19 14:32,"655 Wilson St, Dallas, TX 75001" -292272,USB-C Charging Cable,1,11.95,11/11/19 19:56,"22 Spruce St, San Francisco, CA 94016" -292273,Lightning Charging Cable,2,14.95,11/24/19 11:25,"686 Maple St, New York City, NY 10001" -292274,Wired Headphones,1,11.99,11/08/19 12:12,"729 Walnut St, Los Angeles, CA 90001" -292275,Lightning Charging Cable,1,14.95,11/26/19 13:42,"298 Park St, New York City, NY 10001" -292276,Vareebadd Phone,1,400,11/30/19 16:45,"857 Pine St, Boston, MA 02215" -292276,Bose SoundSport Headphones,1,99.99,11/30/19 16:45,"857 Pine St, Boston, MA 02215" -292277,Lightning Charging Cable,1,14.95,11/22/19 18:58,"638 5th St, New York City, NY 10001" -292278,AA Batteries (4-pack),2,3.84,11/02/19 01:25,"738 Dogwood St, Boston, MA 02215" -292279,34in Ultrawide Monitor,1,379.99,11/20/19 23:44,"210 Park St, New York City, NY 10001" -292280,iPhone,1,700,11/11/19 10:27,"61 Lakeview St, Dallas, TX 75001" -292280,Lightning Charging Cable,1,14.95,11/11/19 10:27,"61 Lakeview St, Dallas, TX 75001" -292281,AA Batteries (4-pack),1,3.84,11/03/19 00:24,"434 Forest St, Austin, TX 73301" -292282,Wired Headphones,2,11.99,11/18/19 08:45,"499 Willow St, San Francisco, CA 94016" -292283,AA Batteries (4-pack),1,3.84,11/23/19 18:21,"824 11th St, San Francisco, CA 94016" -292284,27in 4K Gaming Monitor,1,389.99,11/09/19 18:56,"35 8th St, New York City, NY 10001" -292285,Lightning Charging Cable,1,14.95,11/06/19 14:26,"150 Adams St, New York City, NY 10001" -292286,27in FHD Monitor,1,149.99,11/12/19 13:19,"264 Lincoln St, Seattle, WA 98101" -292287,AAA Batteries (4-pack),2,2.99,11/18/19 09:39,"330 Highland St, Boston, MA 02215" -292288,20in Monitor,1,109.99,11/03/19 14:29,"818 9th St, Atlanta, GA 30301" -292289,AAA Batteries (4-pack),1,2.99,11/05/19 22:34,"842 Elm St, New York City, NY 10001" -292290,Lightning Charging Cable,1,14.95,11/26/19 09:36,"800 Johnson St, San Francisco, CA 94016" -292291,Google Phone,1,600,11/02/19 18:03,"106 Hill St, San Francisco, CA 94016" -292292,Apple Airpods Headphones,1,150,11/08/19 12:09,"522 Lakeview St, San Francisco, CA 94016" -292293,AA Batteries (4-pack),1,3.84,11/07/19 20:19,"272 Elm St, New York City, NY 10001" -292294,Wired Headphones,2,11.99,11/09/19 07:39,"129 Hickory St, Atlanta, GA 30301" -292295,Apple Airpods Headphones,1,150,11/28/19 17:45,"818 Forest St, San Francisco, CA 94016" -292296,Bose SoundSport Headphones,1,99.99,11/16/19 22:46,"517 6th St, Dallas, TX 75001" -292297,USB-C Charging Cable,1,11.95,11/17/19 17:11,"536 Hickory St, Atlanta, GA 30301" -292298,Wired Headphones,1,11.99,11/12/19 06:26,"566 Dogwood St, Seattle, WA 98101" -292299,USB-C Charging Cable,1,11.95,11/01/19 11:43,"427 River St, San Francisco, CA 94016" -292300,AAA Batteries (4-pack),3,2.99,11/15/19 12:27,"283 1st St, Dallas, TX 75001" -292301,Wired Headphones,1,11.99,11/25/19 13:05,"66 North St, New York City, NY 10001" -292302,27in FHD Monitor,1,149.99,11/13/19 06:33,"420 8th St, Boston, MA 02215" -292303,20in Monitor,1,109.99,11/24/19 10:57,"824 Willow St, Boston, MA 02215" -292304,Apple Airpods Headphones,1,150,11/18/19 20:04,"336 Pine St, Seattle, WA 98101" -292305,27in 4K Gaming Monitor,1,389.99,11/23/19 20:47,"520 South St, New York City, NY 10001" -292306,AA Batteries (4-pack),1,3.84,11/18/19 19:09,"732 Meadow St, San Francisco, CA 94016" -292307,Lightning Charging Cable,1,14.95,11/13/19 19:09,"262 Walnut St, Dallas, TX 75001" -292308,USB-C Charging Cable,1,11.95,11/04/19 10:02,"448 10th St, San Francisco, CA 94016" -292309,AA Batteries (4-pack),2,3.84,11/29/19 11:21,"674 8th St, Dallas, TX 75001" -292310,ThinkPad Laptop,1,999.99,11/14/19 23:54,"3 Sunset St, Los Angeles, CA 90001" -292311,27in FHD Monitor,1,149.99,11/25/19 17:17,"976 Park St, San Francisco, CA 94016" -292312,AA Batteries (4-pack),1,3.84,11/12/19 19:26,"592 Hickory St, San Francisco, CA 94016" -292313,Apple Airpods Headphones,1,150,11/27/19 12:35,"801 Walnut St, New York City, NY 10001" -292314,AAA Batteries (4-pack),1,2.99,11/22/19 22:48,"806 Hickory St, Seattle, WA 98101" -292315,Apple Airpods Headphones,1,150,11/24/19 18:53,"220 14th St, Dallas, TX 75001" -292316,AA Batteries (4-pack),2,3.84,11/17/19 13:38,"189 Wilson St, New York City, NY 10001" -292317,USB-C Charging Cable,2,11.95,11/15/19 21:31,"649 Lakeview St, San Francisco, CA 94016" -292318,AAA Batteries (4-pack),1,2.99,11/04/19 11:49,"25 Cedar St, Portland, OR 97035" -292319,20in Monitor,1,109.99,11/26/19 20:47,"669 6th St, Dallas, TX 75001" -292320,Wired Headphones,2,11.99,11/06/19 19:44,"983 River St, Los Angeles, CA 90001" -292321,Apple Airpods Headphones,1,150,11/17/19 19:57,"510 Jefferson St, New York City, NY 10001" -292322,USB-C Charging Cable,1,11.95,11/23/19 16:32,"442 Chestnut St, New York City, NY 10001" -292323,USB-C Charging Cable,1,11.95,11/18/19 11:21,"832 Park St, Dallas, TX 75001" -292324,Google Phone,1,600,11/27/19 11:55,"238 2nd St, New York City, NY 10001" -292324,USB-C Charging Cable,1,11.95,11/27/19 11:55,"238 2nd St, New York City, NY 10001" -292325,Macbook Pro Laptop,1,1700,11/14/19 14:09,"432 Walnut St, Dallas, TX 75001" -292326,20in Monitor,1,109.99,11/25/19 20:48,"770 8th St, New York City, NY 10001" -292327,AA Batteries (4-pack),1,3.84,11/13/19 21:17,"654 4th St, Atlanta, GA 30301" -292328,LG Dryer,1,600.0,11/01/19 09:59,"86 11th St, Los Angeles, CA 90001" -,,,,, -292329,34in Ultrawide Monitor,1,379.99,11/24/19 13:39,"747 10th St, Portland, ME 04101" -292330,AA Batteries (4-pack),1,3.84,11/27/19 06:29,"255 Church St, Austin, TX 73301" -292331,Apple Airpods Headphones,1,150,11/07/19 11:08,"274 Sunset St, San Francisco, CA 94016" -292332,Lightning Charging Cable,1,14.95,11/06/19 15:45,"838 Walnut St, New York City, NY 10001" -292333,Google Phone,1,600,11/05/19 21:50,"987 Madison St, Los Angeles, CA 90001" -292334,Apple Airpods Headphones,1,150,11/15/19 13:00,"633 Madison St, Boston, MA 02215" -292335,AA Batteries (4-pack),1,3.84,11/09/19 11:23,"834 5th St, Dallas, TX 75001" -292335,AA Batteries (4-pack),1,3.84,11/09/19 11:23,"834 5th St, Dallas, TX 75001" -292336,27in FHD Monitor,1,149.99,11/24/19 11:09,"829 Forest St, New York City, NY 10001" -292337,Bose SoundSport Headphones,1,99.99,11/08/19 19:53,"867 Chestnut St, Los Angeles, CA 90001" -292338,Google Phone,1,600,11/02/19 09:35,"288 Ridge St, Los Angeles, CA 90001" -292339,Lightning Charging Cable,1,14.95,11/24/19 01:25,"283 8th St, Dallas, TX 75001" -292340,USB-C Charging Cable,1,11.95,11/12/19 16:15,"599 Meadow St, Los Angeles, CA 90001" -292341,Bose SoundSport Headphones,1,99.99,11/05/19 13:25,"736 Hickory St, New York City, NY 10001" -292342,Macbook Pro Laptop,1,1700,11/03/19 09:35,"963 Wilson St, Los Angeles, CA 90001" -292343,Macbook Pro Laptop,1,1700,11/30/19 09:36,"909 Chestnut St, New York City, NY 10001" -292344,USB-C Charging Cable,1,11.95,11/18/19 00:32,"932 Lincoln St, Seattle, WA 98101" -292345,Wired Headphones,1,11.99,11/11/19 20:13,"530 South St, San Francisco, CA 94016" -292346,USB-C Charging Cable,1,11.95,11/16/19 11:19,"701 Willow St, Seattle, WA 98101" -292347,iPhone,1,700,11/04/19 06:06,"118 Chestnut St, New York City, NY 10001" -292348,USB-C Charging Cable,1,11.95,11/13/19 18:41,"947 1st St, Atlanta, GA 30301" -292349,Lightning Charging Cable,1,14.95,11/10/19 07:01,"257 Church St, Dallas, TX 75001" -292350,Bose SoundSport Headphones,1,99.99,11/09/19 15:33,"933 Lake St, Seattle, WA 98101" -292351,AA Batteries (4-pack),1,3.84,11/21/19 11:53,"206 Church St, Boston, MA 02215" -292352,Macbook Pro Laptop,1,1700,11/22/19 14:24,"154 Sunset St, San Francisco, CA 94016" -292353,USB-C Charging Cable,1,11.95,11/16/19 20:12,"170 Hickory St, Los Angeles, CA 90001" -292354,20in Monitor,1,109.99,11/12/19 11:58,"98 Lake St, Portland, OR 97035" -292355,AAA Batteries (4-pack),2,2.99,11/05/19 10:57,"29 Center St, New York City, NY 10001" -292356,AAA Batteries (4-pack),1,2.99,11/13/19 16:23,"881 Lakeview St, Los Angeles, CA 90001" -292357,USB-C Charging Cable,1,11.95,11/01/19 20:29,"115 Wilson St, Boston, MA 02215" -292358,AA Batteries (4-pack),1,3.84,11/26/19 19:32,"90 Forest St, Seattle, WA 98101" -292359,USB-C Charging Cable,1,11.95,11/25/19 14:20,"306 2nd St, Boston, MA 02215" -292360,Lightning Charging Cable,1,14.95,11/29/19 05:34,"648 13th St, Los Angeles, CA 90001" -292361,USB-C Charging Cable,1,11.95,11/20/19 14:09,"44 Hickory St, Boston, MA 02215" -292362,27in 4K Gaming Monitor,1,389.99,11/04/19 15:46,"761 Hill St, Dallas, TX 75001" -292363,Apple Airpods Headphones,1,150,11/19/19 16:27,"838 Walnut St, Boston, MA 02215" -292364,AA Batteries (4-pack),1,3.84,11/14/19 23:26,"350 Walnut St, Portland, OR 97035" -292364,27in FHD Monitor,1,149.99,11/14/19 23:26,"350 Walnut St, Portland, OR 97035" -292365,Lightning Charging Cable,1,14.95,11/24/19 07:47,"735 Ridge St, Portland, OR 97035" -292366,Wired Headphones,1,11.99,11/10/19 23:00,"266 Elm St, San Francisco, CA 94016" -292367,ThinkPad Laptop,1,999.99,11/18/19 14:05,"446 Hickory St, Los Angeles, CA 90001" -292368,Bose SoundSport Headphones,1,99.99,11/16/19 09:14,"937 Meadow St, New York City, NY 10001" -292369,Apple Airpods Headphones,1,150,11/16/19 19:52,"44 North St, Boston, MA 02215" -292370,34in Ultrawide Monitor,1,379.99,11/07/19 20:45,"425 10th St, New York City, NY 10001" -292371,Flatscreen TV,1,300,11/02/19 00:27,"860 Spruce St, Atlanta, GA 30301" -292372,Macbook Pro Laptop,1,1700,11/08/19 14:06,"636 Cherry St, New York City, NY 10001" -292373,AA Batteries (4-pack),1,3.84,11/20/19 10:13,"536 1st St, San Francisco, CA 94016" -292374,AA Batteries (4-pack),1,3.84,11/26/19 09:08,"935 9th St, Seattle, WA 98101" -292375,AAA Batteries (4-pack),3,2.99,11/07/19 16:23,"305 South St, New York City, NY 10001" -292376,iPhone,1,700,11/19/19 23:58,"363 12th St, Seattle, WA 98101" -292376,Lightning Charging Cable,1,14.95,11/19/19 23:58,"363 12th St, Seattle, WA 98101" -292377,AAA Batteries (4-pack),1,2.99,11/14/19 15:19,"226 Elm St, Austin, TX 73301" -292378,20in Monitor,1,109.99,11/30/19 07:07,"330 1st St, Los Angeles, CA 90001" -292379,Flatscreen TV,1,300,11/24/19 14:50,"893 South St, Los Angeles, CA 90001" -292380,Bose SoundSport Headphones,1,99.99,11/04/19 20:54,"711 Hill St, New York City, NY 10001" -292381,Flatscreen TV,1,300,11/14/19 12:43,"13 11th St, San Francisco, CA 94016" -292382,Wired Headphones,1,11.99,11/04/19 10:15,"333 Cherry St, Los Angeles, CA 90001" -292383,AAA Batteries (4-pack),3,2.99,11/29/19 12:01,"483 11th St, Portland, ME 04101" -292384,Lightning Charging Cable,2,14.95,11/02/19 16:02,"940 Dogwood St, New York City, NY 10001" -292385,27in 4K Gaming Monitor,1,389.99,11/04/19 16:08,"67 14th St, Atlanta, GA 30301" -292386,Flatscreen TV,1,300,11/09/19 14:43,"93 Elm St, San Francisco, CA 94016" -292387,Bose SoundSport Headphones,1,99.99,11/20/19 18:39,"591 Walnut St, Portland, OR 97035" -292388,27in 4K Gaming Monitor,1,389.99,11/05/19 18:37,"275 Church St, Los Angeles, CA 90001" -292389,Flatscreen TV,1,300,11/19/19 09:55,"84 Main St, Los Angeles, CA 90001" -292390,AAA Batteries (4-pack),2,2.99,11/08/19 13:38,"476 North St, San Francisco, CA 94016" -292391,USB-C Charging Cable,1,11.95,11/13/19 10:27,"934 2nd St, San Francisco, CA 94016" -292392,USB-C Charging Cable,1,11.95,11/22/19 20:47,"647 Center St, Austin, TX 73301" -292393,Wired Headphones,1,11.99,11/22/19 08:39,"966 Forest St, Atlanta, GA 30301" -292394,34in Ultrawide Monitor,1,379.99,11/29/19 11:12,"807 Church St, Atlanta, GA 30301" -292395,AAA Batteries (4-pack),1,2.99,11/27/19 11:17,"621 Johnson St, Boston, MA 02215" -292396,27in FHD Monitor,1,149.99,11/19/19 16:17,"839 Hill St, Dallas, TX 75001" -292397,Bose SoundSport Headphones,1,99.99,11/13/19 20:18,"508 Jefferson St, New York City, NY 10001" -292398,Wired Headphones,1,11.99,11/03/19 20:06,"200 5th St, New York City, NY 10001" -292399,Bose SoundSport Headphones,1,99.99,11/21/19 20:28,"673 Meadow St, Seattle, WA 98101" -292400,USB-C Charging Cable,1,11.95,11/23/19 16:43,"153 Highland St, New York City, NY 10001" -292401,27in FHD Monitor,1,149.99,11/11/19 17:03,"483 Pine St, New York City, NY 10001" -292402,Wired Headphones,1,11.99,11/25/19 07:28,"327 Jefferson St, San Francisco, CA 94016" -292403,27in FHD Monitor,1,149.99,11/26/19 17:02,"381 Forest St, San Francisco, CA 94016" -292404,Bose SoundSport Headphones,1,99.99,11/21/19 19:35,"404 South St, Austin, TX 73301" -292405,USB-C Charging Cable,1,11.95,11/21/19 12:16,"82 West St, Atlanta, GA 30301" -292406,AAA Batteries (4-pack),2,2.99,11/01/19 13:56,"449 Madison St, Boston, MA 02215" -292407,Wired Headphones,1,11.99,11/17/19 10:28,"778 2nd St, New York City, NY 10001" -292408,Flatscreen TV,1,300,11/06/19 23:02,"69 Hickory St, San Francisco, CA 94016" -292409,USB-C Charging Cable,1,11.95,11/08/19 11:41,"879 North St, Los Angeles, CA 90001" -292410,USB-C Charging Cable,1,11.95,11/19/19 16:24,"752 South St, San Francisco, CA 94016" -292411,Apple Airpods Headphones,1,150,11/16/19 16:09,"888 West St, New York City, NY 10001" -292412,27in FHD Monitor,1,149.99,11/11/19 16:13,"487 Forest St, San Francisco, CA 94016" -292413,AA Batteries (4-pack),1,3.84,11/18/19 13:37,"248 Lakeview St, New York City, NY 10001" -292414,Bose SoundSport Headphones,1,99.99,11/16/19 11:31,"860 Chestnut St, San Francisco, CA 94016" -292415,27in 4K Gaming Monitor,1,389.99,11/19/19 19:11,"695 Walnut St, Atlanta, GA 30301" -292416,AAA Batteries (4-pack),1,2.99,11/02/19 12:02,"52 Washington St, Los Angeles, CA 90001" -292417,Wired Headphones,1,11.99,11/21/19 11:57,"988 Lincoln St, New York City, NY 10001" -292417,USB-C Charging Cable,1,11.95,11/21/19 11:57,"988 Lincoln St, New York City, NY 10001" -292418,Bose SoundSport Headphones,1,99.99,11/28/19 14:12,"715 Center St, Dallas, TX 75001" -292419,AA Batteries (4-pack),1,3.84,11/02/19 21:14,"308 Park St, Los Angeles, CA 90001" -292420,AA Batteries (4-pack),1,3.84,11/20/19 11:31,"783 13th St, Dallas, TX 75001" -292421,USB-C Charging Cable,1,11.95,11/16/19 12:38,"784 Adams St, Austin, TX 73301" -292422,34in Ultrawide Monitor,1,379.99,11/15/19 16:25,"552 Elm St, Austin, TX 73301" -292423,AAA Batteries (4-pack),1,2.99,11/01/19 11:55,"454 Dogwood St, Austin, TX 73301" -292424,AA Batteries (4-pack),1,3.84,11/07/19 19:17,"788 Park St, Dallas, TX 75001" -292425,Bose SoundSport Headphones,1,99.99,11/14/19 11:40,"452 2nd St, San Francisco, CA 94016" -292426,Flatscreen TV,1,300,11/13/19 21:03,"479 Maple St, New York City, NY 10001" -292427,Lightning Charging Cable,1,14.95,11/25/19 11:40,"262 Johnson St, San Francisco, CA 94016" -292428,Lightning Charging Cable,1,14.95,11/25/19 10:11,"200 Meadow St, New York City, NY 10001" -292429,Wired Headphones,1,11.99,11/25/19 02:39,"906 13th St, New York City, NY 10001" -292430,Wired Headphones,1,11.99,11/01/19 19:49,"265 River St, New York City, NY 10001" -292431,34in Ultrawide Monitor,1,379.99,11/09/19 16:50,"968 West St, San Francisco, CA 94016" -292432,Apple Airpods Headphones,1,150,11/28/19 10:16,"400 Cherry St, Dallas, TX 75001" -292433,Lightning Charging Cable,1,14.95,11/12/19 10:43,"87 Johnson St, San Francisco, CA 94016" -292434,Wired Headphones,1,11.99,11/08/19 13:45,"434 Center St, San Francisco, CA 94016" -292435,AAA Batteries (4-pack),1,2.99,11/08/19 12:45,"256 South St, Portland, OR 97035" -292436,Lightning Charging Cable,1,14.95,11/22/19 12:33,"140 14th St, Seattle, WA 98101" -292437,Apple Airpods Headphones,1,150,11/10/19 13:16,"110 Cherry St, New York City, NY 10001" -292438,Lightning Charging Cable,1,14.95,11/04/19 07:16,"908 North St, San Francisco, CA 94016" -292439,Bose SoundSport Headphones,1,99.99,11/02/19 17:40,"794 North St, San Francisco, CA 94016" -292440,27in 4K Gaming Monitor,1,389.99,11/29/19 09:53,"422 Johnson St, San Francisco, CA 94016" -292441,Lightning Charging Cable,1,14.95,11/16/19 23:29,"810 Sunset St, San Francisco, CA 94016" -292442,Bose SoundSport Headphones,1,99.99,11/29/19 23:14,"725 Center St, Los Angeles, CA 90001" -292443,Wired Headphones,1,11.99,11/16/19 15:00,"521 Lincoln St, San Francisco, CA 94016" -292444,20in Monitor,1,109.99,11/07/19 21:10,"915 14th St, Austin, TX 73301" -292445,Lightning Charging Cable,1,14.95,11/20/19 17:41,"836 North St, San Francisco, CA 94016" -292446,Bose SoundSport Headphones,1,99.99,11/27/19 11:14,"500 12th St, New York City, NY 10001" -292446,Apple Airpods Headphones,1,150,11/27/19 11:14,"500 12th St, New York City, NY 10001" -292447,27in FHD Monitor,1,149.99,11/27/19 16:16,"424 Walnut St, San Francisco, CA 94016" -292448,AA Batteries (4-pack),1,3.84,11/30/19 07:35,"638 Cedar St, Austin, TX 73301" -292449,Bose SoundSport Headphones,1,99.99,11/12/19 18:18,"151 Walnut St, Los Angeles, CA 90001" -292450,Bose SoundSport Headphones,1,99.99,11/26/19 23:05,"603 Chestnut St, San Francisco, CA 94016" -292451,Apple Airpods Headphones,1,150,11/14/19 22:48,"840 Wilson St, San Francisco, CA 94016" -292452,Lightning Charging Cable,4,14.95,11/26/19 19:26,"763 River St, Atlanta, GA 30301" -292453,27in 4K Gaming Monitor,1,389.99,11/03/19 22:44,"921 8th St, Los Angeles, CA 90001" -292454,34in Ultrawide Monitor,1,379.99,11/07/19 16:19,"12 Adams St, Los Angeles, CA 90001" -292455,Wired Headphones,2,11.99,11/18/19 11:49,"304 Lakeview St, Austin, TX 73301" -292456,USB-C Charging Cable,1,11.95,11/19/19 20:37,"320 6th St, New York City, NY 10001" -292457,AAA Batteries (4-pack),1,2.99,11/18/19 18:24,"458 Cherry St, New York City, NY 10001" -292458,Apple Airpods Headphones,1,150,11/01/19 12:22,"133 7th St, Atlanta, GA 30301" -292459,AAA Batteries (4-pack),1,2.99,11/03/19 10:43,"94 West St, Seattle, WA 98101" -292460,Bose SoundSport Headphones,1,99.99,11/20/19 12:20,"961 7th St, San Francisco, CA 94016" -292461,Wired Headphones,1,11.99,11/03/19 15:36,"449 7th St, Atlanta, GA 30301" -292462,Lightning Charging Cable,1,14.95,11/16/19 13:53,"813 10th St, New York City, NY 10001" -292463,AA Batteries (4-pack),2,3.84,11/22/19 16:56,"406 Sunset St, Los Angeles, CA 90001" -292464,USB-C Charging Cable,1,11.95,11/09/19 17:17,"186 6th St, Dallas, TX 75001" -292465,AA Batteries (4-pack),1,3.84,11/12/19 22:10,"705 Washington St, Dallas, TX 75001" -292466,Wired Headphones,1,11.99,11/23/19 12:38,"519 2nd St, Atlanta, GA 30301" -292467,20in Monitor,1,109.99,11/27/19 02:00,"716 Highland St, New York City, NY 10001" -292468,USB-C Charging Cable,1,11.95,11/05/19 05:19,"845 Maple St, New York City, NY 10001" -292469,Wired Headphones,1,11.99,11/28/19 16:15,"185 Jackson St, New York City, NY 10001" -292470,Lightning Charging Cable,1,14.95,11/29/19 20:03,"266 River St, Los Angeles, CA 90001" -292471,AAA Batteries (4-pack),1,2.99,11/18/19 10:41,"596 Adams St, Los Angeles, CA 90001" -292472,AAA Batteries (4-pack),1,2.99,11/12/19 20:45,"273 Madison St, New York City, NY 10001" -292473,Bose SoundSport Headphones,1,99.99,11/28/19 15:42,"203 Elm St, Seattle, WA 98101" -292474,AAA Batteries (4-pack),1,2.99,11/22/19 10:45,"352 2nd St, Austin, TX 73301" -292475,Wired Headphones,1,11.99,11/30/19 17:53,"183 Willow St, New York City, NY 10001" -292476,USB-C Charging Cable,1,11.95,11/07/19 16:19,"619 Maple St, Los Angeles, CA 90001" -292477,27in 4K Gaming Monitor,1,389.99,11/15/19 23:59,"788 River St, San Francisco, CA 94016" -292478,27in FHD Monitor,1,149.99,11/08/19 10:21,"603 4th St, Boston, MA 02215" -292479,AA Batteries (4-pack),1,3.84,11/10/19 15:28,"150 10th St, Portland, OR 97035" -292480,USB-C Charging Cable,1,11.95,11/26/19 14:24,"987 Adams St, Portland, OR 97035" -292481,Wired Headphones,1,11.99,11/07/19 13:00,"153 Elm St, New York City, NY 10001" -292482,AAA Batteries (4-pack),1,2.99,11/20/19 21:29,"22 6th St, New York City, NY 10001" -292483,Lightning Charging Cable,1,14.95,11/08/19 15:22,"255 Highland St, San Francisco, CA 94016" -292484,Bose SoundSport Headphones,1,99.99,11/27/19 00:13,"689 13th St, San Francisco, CA 94016" -292485,AA Batteries (4-pack),2,3.84,11/25/19 16:59,"406 Hickory St, Dallas, TX 75001" -292486,27in FHD Monitor,1,149.99,11/13/19 15:33,"206 1st St, Boston, MA 02215" -292487,Google Phone,1,600,11/19/19 03:02,"830 Lake St, Dallas, TX 75001" -292488,Lightning Charging Cable,1,14.95,11/10/19 14:08,"520 Park St, Atlanta, GA 30301" -292489,27in FHD Monitor,1,149.99,11/12/19 10:40,"715 5th St, Atlanta, GA 30301" -292490,Bose SoundSport Headphones,1,99.99,11/17/19 14:44,"296 13th St, New York City, NY 10001" -292491,Apple Airpods Headphones,1,150,11/22/19 18:14,"372 Lakeview St, San Francisco, CA 94016" -292492,Wired Headphones,1,11.99,11/23/19 04:46,"332 Lake St, San Francisco, CA 94016" -292493,AAA Batteries (4-pack),1,2.99,11/03/19 18:11,"725 Wilson St, Dallas, TX 75001" -292494,Lightning Charging Cable,1,14.95,11/04/19 10:14,"412 West St, Boston, MA 02215" -292495,Flatscreen TV,1,300,11/13/19 15:36,"345 9th St, Boston, MA 02215" -292496,Lightning Charging Cable,1,14.95,11/13/19 11:55,"99 Forest St, Boston, MA 02215" -292497,27in FHD Monitor,1,149.99,11/19/19 23:05,"700 Johnson St, Austin, TX 73301" -292498,Google Phone,1,600,11/06/19 15:31,"657 Maple St, Seattle, WA 98101" -292499,Bose SoundSport Headphones,1,99.99,11/05/19 20:35,"647 Pine St, San Francisco, CA 94016" -292500,USB-C Charging Cable,1,11.95,11/02/19 18:28,"700 11th St, Los Angeles, CA 90001" -292501,USB-C Charging Cable,1,11.95,11/03/19 19:35,"617 Sunset St, New York City, NY 10001" -292502,AAA Batteries (4-pack),1,2.99,11/14/19 21:33,"98 Spruce St, San Francisco, CA 94016" -292503,AA Batteries (4-pack),3,3.84,11/01/19 18:41,"546 Wilson St, Los Angeles, CA 90001" -292504,Wired Headphones,1,11.99,11/22/19 00:49,"673 North St, Los Angeles, CA 90001" -292505,Wired Headphones,1,11.99,11/19/19 13:05,"707 Hill St, Austin, TX 73301" -292506,AAA Batteries (4-pack),1,2.99,11/29/19 11:57,"866 Adams St, New York City, NY 10001" -292507,AAA Batteries (4-pack),1,2.99,11/24/19 18:21,"150 5th St, San Francisco, CA 94016" -292508,Lightning Charging Cable,1,14.95,11/09/19 10:58,"22 11th St, Austin, TX 73301" -292508,27in FHD Monitor,2,149.99,11/09/19 10:58,"22 11th St, Austin, TX 73301" -292509,Vareebadd Phone,1,400,11/28/19 13:32,"346 Ridge St, Seattle, WA 98101" -292509,USB-C Charging Cable,1,11.95,11/28/19 13:32,"346 Ridge St, Seattle, WA 98101" -292510,LG Dryer,1,600.0,11/10/19 13:27,"428 Chestnut St, Seattle, WA 98101" -292511,iPhone,1,700,11/29/19 11:39,"215 8th St, Los Angeles, CA 90001" -292512,Lightning Charging Cable,1,14.95,11/15/19 12:28,"268 Elm St, Boston, MA 02215" -292513,AA Batteries (4-pack),1,3.84,11/08/19 07:17,"522 10th St, Boston, MA 02215" -292513,34in Ultrawide Monitor,1,379.99,11/08/19 07:17,"522 10th St, Boston, MA 02215" -292514,20in Monitor,1,109.99,11/17/19 16:07,"474 8th St, San Francisco, CA 94016" -292515,Apple Airpods Headphones,1,150,11/02/19 16:20,"143 Jefferson St, San Francisco, CA 94016" -292516,USB-C Charging Cable,1,11.95,11/29/19 08:32,"703 Pine St, Los Angeles, CA 90001" -292517,27in 4K Gaming Monitor,1,389.99,11/06/19 16:38,"663 Highland St, New York City, NY 10001" -292518,iPhone,1,700,11/27/19 16:27,"363 6th St, New York City, NY 10001" -292519,Apple Airpods Headphones,1,150,11/16/19 14:53,"511 Jackson St, Dallas, TX 75001" -292520,27in 4K Gaming Monitor,1,389.99,11/30/19 14:43,"860 1st St, Boston, MA 02215" -292521,AAA Batteries (4-pack),1,2.99,11/19/19 09:09,"738 Spruce St, Los Angeles, CA 90001" -292522,AAA Batteries (4-pack),2,2.99,11/02/19 08:40,"30 Madison St, Dallas, TX 75001" -292523,Bose SoundSport Headphones,1,99.99,11/06/19 17:22,"744 River St, Atlanta, GA 30301" -292524,Apple Airpods Headphones,1,150,11/20/19 20:42,"801 Highland St, Seattle, WA 98101" -292525,USB-C Charging Cable,1,11.95,11/05/19 21:33,"528 North St, San Francisco, CA 94016" -292526,AA Batteries (4-pack),2,3.84,11/10/19 15:45,"957 Willow St, San Francisco, CA 94016" -292527,Lightning Charging Cable,1,14.95,11/13/19 11:24,"523 Church St, San Francisco, CA 94016" -292528,LG Dryer,1,600.0,11/15/19 20:39,"141 Ridge St, San Francisco, CA 94016" -292529,Lightning Charging Cable,2,14.95,11/14/19 10:44,"507 11th St, New York City, NY 10001" -292530,Apple Airpods Headphones,1,150,11/17/19 09:02,"618 Spruce St, Boston, MA 02215" -292531,iPhone,1,700,11/28/19 08:48,"30 10th St, Boston, MA 02215" -292532,Apple Airpods Headphones,1,150,11/20/19 13:09,"603 South St, San Francisco, CA 94016" -292533,Lightning Charging Cable,1,14.95,11/27/19 17:40,"918 Willow St, San Francisco, CA 94016" -292534,27in FHD Monitor,1,149.99,11/05/19 20:32,"81 Chestnut St, Atlanta, GA 30301" -292535,USB-C Charging Cable,1,11.95,11/16/19 20:08,"587 Sunset St, San Francisco, CA 94016" -292536,Bose SoundSport Headphones,1,99.99,11/17/19 19:46,"267 11th St, Boston, MA 02215" -292537,AAA Batteries (4-pack),2,2.99,11/24/19 13:42,"406 Center St, Boston, MA 02215" -292538,USB-C Charging Cable,1,11.95,11/22/19 14:06,"908 Park St, Portland, ME 04101" -292539,Google Phone,1,600,11/19/19 18:49,"47 4th St, Seattle, WA 98101" -292539,USB-C Charging Cable,1,11.95,11/19/19 18:49,"47 4th St, Seattle, WA 98101" -292539,Wired Headphones,1,11.99,11/19/19 18:49,"47 4th St, Seattle, WA 98101" -292540,Wired Headphones,1,11.99,11/13/19 19:43,"821 Willow St, San Francisco, CA 94016" -292541,Flatscreen TV,1,300,11/20/19 19:47,"3 West St, San Francisco, CA 94016" -292542,Macbook Pro Laptop,1,1700,11/24/19 14:06,"923 9th St, New York City, NY 10001" -292543,Vareebadd Phone,1,400,11/08/19 22:44,"950 Center St, New York City, NY 10001" -292544,27in 4K Gaming Monitor,1,389.99,11/25/19 09:43,"326 Lincoln St, Seattle, WA 98101" -292545,Wired Headphones,1,11.99,11/07/19 15:58,"225 6th St, Dallas, TX 75001" -292546,Wired Headphones,1,11.99,11/19/19 19:46,"59 Forest St, San Francisco, CA 94016" -292547,20in Monitor,1,109.99,11/03/19 10:04,"257 Center St, Portland, ME 04101" -292548,AAA Batteries (4-pack),1,2.99,11/03/19 22:55,"141 Church St, New York City, NY 10001" -292549,ThinkPad Laptop,1,999.99,11/10/19 19:09,"161 6th St, New York City, NY 10001" -292550,Apple Airpods Headphones,1,150,11/13/19 15:59,"267 Jackson St, Los Angeles, CA 90001" -292551,34in Ultrawide Monitor,1,379.99,11/20/19 05:37,"244 Lake St, Los Angeles, CA 90001" -292552,Apple Airpods Headphones,1,150,11/28/19 15:26,"337 4th St, Austin, TX 73301" -292553,iPhone,1,700,11/04/19 11:56,"906 Ridge St, Dallas, TX 75001" -292554,27in 4K Gaming Monitor,1,389.99,11/18/19 18:50,"35 Cherry St, Los Angeles, CA 90001" -292555,Bose SoundSport Headphones,1,99.99,11/07/19 10:41,"18 Jackson St, Portland, OR 97035" -292556,AAA Batteries (4-pack),1,2.99,11/01/19 14:38,"238 8th St, Dallas, TX 75001" -292557,AAA Batteries (4-pack),1,2.99,11/05/19 23:28,"662 Chestnut St, San Francisco, CA 94016" -292558,Lightning Charging Cable,1,14.95,11/30/19 21:53,"734 Jefferson St, San Francisco, CA 94016" -292559,USB-C Charging Cable,1,11.95,11/15/19 22:56,"223 Maple St, Boston, MA 02215" -292560,Wired Headphones,1,11.99,11/11/19 13:54,"120 Lake St, Atlanta, GA 30301" -292561,Apple Airpods Headphones,1,150,11/09/19 12:06,"203 2nd St, Dallas, TX 75001" -292562,Google Phone,1,600,11/18/19 09:48,"737 Pine St, Los Angeles, CA 90001" -292563,Vareebadd Phone,1,400,11/16/19 19:08,"735 9th St, Austin, TX 73301" -292564,Apple Airpods Headphones,1,150,11/18/19 19:36,"296 13th St, New York City, NY 10001" -292565,Apple Airpods Headphones,1,150,11/10/19 18:05,"414 Maple St, San Francisco, CA 94016" -292566,USB-C Charging Cable,1,11.95,11/11/19 11:12,"239 Elm St, San Francisco, CA 94016" -292567,Macbook Pro Laptop,1,1700,11/07/19 20:41,"684 Madison St, San Francisco, CA 94016" -292568,USB-C Charging Cable,1,11.95,11/27/19 00:21,"925 Chestnut St, Los Angeles, CA 90001" -292569,Apple Airpods Headphones,1,150,11/24/19 01:14,"500 Jefferson St, New York City, NY 10001" -292570,Lightning Charging Cable,1,14.95,11/22/19 08:43,"512 Center St, New York City, NY 10001" -292571,AA Batteries (4-pack),1,3.84,11/05/19 21:25,"505 Lincoln St, Dallas, TX 75001" -292572,Bose SoundSport Headphones,1,99.99,11/20/19 22:28,"383 Cedar St, Austin, TX 73301" -292573,Lightning Charging Cable,1,14.95,11/04/19 11:21,"731 Adams St, Portland, OR 97035" -292574,Wired Headphones,1,11.99,11/03/19 18:48,"362 Adams St, New York City, NY 10001" -292575,LG Washing Machine,1,600.0,11/30/19 12:12,"706 Lakeview St, Atlanta, GA 30301" -292576,Lightning Charging Cable,1,14.95,11/14/19 10:18,"542 4th St, Seattle, WA 98101" -292577,27in 4K Gaming Monitor,1,389.99,11/25/19 19:08,"675 Dogwood St, Los Angeles, CA 90001" -292578,Apple Airpods Headphones,1,150,11/25/19 02:39,"747 Madison St, New York City, NY 10001" -292579,Bose SoundSport Headphones,1,99.99,11/29/19 12:57,"703 Pine St, New York City, NY 10001" -292580,iPhone,1,700,11/23/19 13:37,"721 Jackson St, Atlanta, GA 30301" -292581,AA Batteries (4-pack),1,3.84,11/12/19 08:50,"564 Madison St, Boston, MA 02215" -292582,AA Batteries (4-pack),4,3.84,11/07/19 14:01,"448 West St, Boston, MA 02215" -292583,iPhone,1,700,11/27/19 20:27,"770 Maple St, Seattle, WA 98101" -292584,Wired Headphones,1,11.99,11/18/19 23:50,"242 Meadow St, Los Angeles, CA 90001" -292585,USB-C Charging Cable,1,11.95,11/09/19 15:07,"854 Walnut St, Los Angeles, CA 90001" -292586,Lightning Charging Cable,1,14.95,11/30/19 20:40,"343 Lakeview St, Boston, MA 02215" -292587,Apple Airpods Headphones,1,150,11/01/19 09:55,"934 Elm St, Boston, MA 02215" -292588,Apple Airpods Headphones,1,150,11/04/19 09:44,"225 Church St, New York City, NY 10001" -292589,AA Batteries (4-pack),3,3.84,11/07/19 17:50,"46 Chestnut St, Los Angeles, CA 90001" -292590,Apple Airpods Headphones,1,150,11/30/19 20:04,"507 10th St, San Francisco, CA 94016" -292591,AAA Batteries (4-pack),1,2.99,11/05/19 15:56,"199 Forest St, Seattle, WA 98101" -292592,ThinkPad Laptop,1,999.99,11/30/19 10:34,"458 9th St, San Francisco, CA 94016" -292593,Wired Headphones,1,11.99,11/02/19 23:58,"529 Cedar St, Seattle, WA 98101" -292594,34in Ultrawide Monitor,1,379.99,11/13/19 13:36,"567 South St, Atlanta, GA 30301" -292595,AAA Batteries (4-pack),1,2.99,11/13/19 11:56,"628 6th St, San Francisco, CA 94016" -292596,Macbook Pro Laptop,1,1700,11/27/19 14:29,"601 North St, San Francisco, CA 94016" -292597,ThinkPad Laptop,1,999.99,11/01/19 12:01,"241 Chestnut St, San Francisco, CA 94016" -292598,Lightning Charging Cable,1,14.95,11/13/19 10:51,"879 Hill St, Atlanta, GA 30301" -292599,Lightning Charging Cable,1,14.95,11/18/19 20:29,"648 Hill St, Atlanta, GA 30301" -292600,27in FHD Monitor,1,149.99,11/29/19 18:34,"262 2nd St, San Francisco, CA 94016" -292601,Apple Airpods Headphones,1,150,11/03/19 14:39,"103 Hickory St, Atlanta, GA 30301" -292602,Google Phone,1,600,11/29/19 16:08,"545 12th St, New York City, NY 10001" -292603,27in FHD Monitor,1,149.99,11/06/19 18:52,"890 Center St, Boston, MA 02215" -292604,Bose SoundSport Headphones,1,99.99,11/20/19 21:55,"215 Maple St, Los Angeles, CA 90001" -292605,34in Ultrawide Monitor,1,379.99,11/09/19 12:25,"913 Wilson St, Boston, MA 02215" -292606,AA Batteries (4-pack),1,3.84,11/18/19 19:35,"923 Wilson St, Dallas, TX 75001" -292607,AAA Batteries (4-pack),1,2.99,11/19/19 16:25,"397 14th St, New York City, NY 10001" -292608,Bose SoundSport Headphones,1,99.99,11/15/19 16:52,"448 Jefferson St, Dallas, TX 75001" -292609,Lightning Charging Cable,1,14.95,11/18/19 09:45,"382 West St, Seattle, WA 98101" -292610,Apple Airpods Headphones,2,150,11/26/19 20:56,"514 8th St, Seattle, WA 98101" -292611,AA Batteries (4-pack),3,3.84,11/06/19 17:55,"781 South St, Dallas, TX 75001" -292612,Lightning Charging Cable,1,14.95,11/22/19 09:38,"335 Hill St, Seattle, WA 98101" -292613,USB-C Charging Cable,1,11.95,11/01/19 13:25,"404 Meadow St, San Francisco, CA 94016" -292614,Apple Airpods Headphones,1,150,11/12/19 12:36,"833 Madison St, Portland, OR 97035" -292615,Bose SoundSport Headphones,1,99.99,11/30/19 20:16,"469 Highland St, San Francisco, CA 94016" -292616,27in FHD Monitor,1,149.99,11/16/19 00:18,"147 Main St, Atlanta, GA 30301" -292617,AAA Batteries (4-pack),1,2.99,11/16/19 08:12,"34 Washington St, San Francisco, CA 94016" -292618,Google Phone,1,600,11/23/19 19:47,"524 Wilson St, New York City, NY 10001" -292619,AAA Batteries (4-pack),1,2.99,11/10/19 22:16,"664 Lake St, Seattle, WA 98101" -292620,ThinkPad Laptop,1,999.99,11/29/19 11:40,"722 Willow St, Los Angeles, CA 90001" -292621,Bose SoundSport Headphones,1,99.99,11/27/19 13:55,"336 Dogwood St, San Francisco, CA 94016" -292622,Apple Airpods Headphones,1,150,11/27/19 11:26,"983 2nd St, San Francisco, CA 94016" -292623,Bose SoundSport Headphones,1,99.99,11/24/19 15:02,"436 Madison St, Boston, MA 02215" -292624,AA Batteries (4-pack),2,3.84,11/20/19 21:15,"191 Center St, Los Angeles, CA 90001" -292625,AA Batteries (4-pack),1,3.84,11/16/19 19:41,"918 Lincoln St, San Francisco, CA 94016" -292626,20in Monitor,1,109.99,11/10/19 05:07,"62 Willow St, Atlanta, GA 30301" -292627,Flatscreen TV,1,300,11/29/19 13:31,"50 1st St, Portland, OR 97035" -292627,34in Ultrawide Monitor,1,379.99,11/29/19 13:31,"50 1st St, Portland, OR 97035" -292628,Lightning Charging Cable,1,14.95,11/09/19 21:16,"173 Maple St, Los Angeles, CA 90001" -292629,34in Ultrawide Monitor,1,379.99,11/16/19 14:44,"110 Main St, San Francisco, CA 94016" -292630,Bose SoundSport Headphones,1,99.99,11/27/19 00:35,"831 Adams St, San Francisco, CA 94016" -292631,34in Ultrawide Monitor,1,379.99,11/01/19 13:41,"117 Wilson St, Atlanta, GA 30301" -292632,USB-C Charging Cable,1,11.95,11/18/19 14:15,"395 1st St, Los Angeles, CA 90001" -292633,AAA Batteries (4-pack),1,2.99,11/27/19 16:37,"221 Ridge St, Los Angeles, CA 90001" -292634,AAA Batteries (4-pack),1,2.99,11/06/19 11:49,"573 West St, San Francisco, CA 94016" -292635,USB-C Charging Cable,2,11.95,11/15/19 16:41,"312 10th St, Los Angeles, CA 90001" -292636,Lightning Charging Cable,1,14.95,11/15/19 16:38,"405 Washington St, Seattle, WA 98101" -292637,Wired Headphones,1,11.99,11/13/19 15:57,"138 River St, Portland, OR 97035" -292638,AAA Batteries (4-pack),1,2.99,11/19/19 13:35,"649 Center St, Seattle, WA 98101" -292639,Lightning Charging Cable,1,14.95,11/28/19 17:16,"885 Chestnut St, Dallas, TX 75001" -292640,AA Batteries (4-pack),1,3.84,11/21/19 13:24,"601 Jefferson St, Atlanta, GA 30301" -292641,27in FHD Monitor,1,149.99,11/26/19 11:13,"687 14th St, San Francisco, CA 94016" -292642,iPhone,1,700,11/04/19 21:57,"861 Chestnut St, San Francisco, CA 94016" -292643,AAA Batteries (4-pack),1,2.99,11/26/19 16:40,"971 7th St, San Francisco, CA 94016" -292644,Wired Headphones,2,11.99,11/14/19 19:15,"898 6th St, Boston, MA 02215" -292645,AA Batteries (4-pack),1,3.84,11/15/19 14:20,"126 Pine St, Dallas, TX 75001" -292646,Wired Headphones,2,11.99,11/13/19 14:27,"85 Johnson St, Dallas, TX 75001" -292647,Macbook Pro Laptop,1,1700,11/30/19 18:09,"817 Washington St, San Francisco, CA 94016" -292648,Apple Airpods Headphones,1,150,11/03/19 13:46,"400 6th St, New York City, NY 10001" -292649,AA Batteries (4-pack),1,3.84,11/10/19 14:46,"828 Main St, Seattle, WA 98101" -292650,Lightning Charging Cable,1,14.95,11/28/19 14:35,"818 14th St, San Francisco, CA 94016" -292651,Vareebadd Phone,1,400,11/22/19 10:39,"241 Johnson St, Los Angeles, CA 90001" -292651,Google Phone,1,600,11/22/19 10:39,"241 Johnson St, Los Angeles, CA 90001" -292652,Macbook Pro Laptop,1,1700,11/08/19 15:37,"291 6th St, Boston, MA 02215" -292653,Lightning Charging Cable,1,14.95,11/19/19 09:36,"58 1st St, Austin, TX 73301" -292654,AAA Batteries (4-pack),3,2.99,11/21/19 21:39,"488 Park St, Portland, OR 97035" -292655,Lightning Charging Cable,1,14.95,11/20/19 18:09,"662 West St, New York City, NY 10001" -292656,AAA Batteries (4-pack),2,2.99,11/18/19 06:19,"805 2nd St, San Francisco, CA 94016" -292657,Apple Airpods Headphones,1,150,11/26/19 11:28,"166 9th St, Atlanta, GA 30301" -292658,34in Ultrawide Monitor,1,379.99,11/23/19 09:47,"145 Cedar St, Dallas, TX 75001" -292659,AA Batteries (4-pack),1,3.84,11/21/19 23:57,"746 Main St, New York City, NY 10001" -292660,AAA Batteries (4-pack),1,2.99,11/22/19 01:07,"407 Hickory St, Los Angeles, CA 90001" -292660,34in Ultrawide Monitor,1,379.99,11/22/19 01:07,"407 Hickory St, Los Angeles, CA 90001" -292661,27in 4K Gaming Monitor,1,389.99,11/10/19 14:15,"410 Forest St, Seattle, WA 98101" -292662,USB-C Charging Cable,1,11.95,11/03/19 07:03,"449 Jefferson St, New York City, NY 10001" -292663,AA Batteries (4-pack),1,3.84,11/17/19 12:13,"349 Lake St, San Francisco, CA 94016" -292664,ThinkPad Laptop,1,999.99,11/13/19 23:37,"454 River St, Atlanta, GA 30301" -292665,Apple Airpods Headphones,1,150,11/24/19 19:50,"244 Spruce St, Seattle, WA 98101" -292666,AA Batteries (4-pack),2,3.84,11/06/19 17:33,"62 Meadow St, Seattle, WA 98101" -292667,27in 4K Gaming Monitor,1,389.99,11/06/19 09:59,"584 Willow St, Boston, MA 02215" -292668,27in FHD Monitor,1,149.99,11/08/19 08:25,"136 Dogwood St, San Francisco, CA 94016" -292669,Flatscreen TV,1,300,11/08/19 11:16,"631 Walnut St, Boston, MA 02215" -292670,20in Monitor,1,109.99,11/03/19 20:04,"202 Main St, Atlanta, GA 30301" -292671,AA Batteries (4-pack),1,3.84,11/05/19 10:14,"320 11th St, Seattle, WA 98101" -292672,AAA Batteries (4-pack),1,2.99,11/10/19 09:38,"665 Lakeview St, Portland, ME 04101" -292673,USB-C Charging Cable,1,11.95,11/17/19 07:54,"522 Pine St, Seattle, WA 98101" -292674,AAA Batteries (4-pack),1,2.99,11/26/19 15:37,"381 Church St, Portland, OR 97035" -292674,AAA Batteries (4-pack),2,2.99,11/26/19 15:37,"381 Church St, Portland, OR 97035" -292675,ThinkPad Laptop,1,999.99,11/15/19 16:56,"240 Walnut St, Atlanta, GA 30301" -292676,AA Batteries (4-pack),1,3.84,11/11/19 20:48,"926 Walnut St, New York City, NY 10001" -292677,Bose SoundSport Headphones,1,99.99,11/30/19 15:52,"895 Cedar St, Austin, TX 73301" -292678,AAA Batteries (4-pack),2,2.99,11/18/19 19:08,"870 Main St, San Francisco, CA 94016" -292679,Apple Airpods Headphones,1,150,11/23/19 14:05,"266 Park St, San Francisco, CA 94016" -292680,USB-C Charging Cable,1,11.95,11/30/19 17:27,"644 7th St, New York City, NY 10001" -292681,Bose SoundSport Headphones,1,99.99,11/11/19 09:51,"221 6th St, San Francisco, CA 94016" -292682,Wired Headphones,1,11.99,11/25/19 03:41,"543 Meadow St, Los Angeles, CA 90001" -292683,USB-C Charging Cable,1,11.95,11/27/19 11:34,"518 Madison St, San Francisco, CA 94016" -292684,Apple Airpods Headphones,1,150,11/09/19 14:35,"140 4th St, San Francisco, CA 94016" -292685,USB-C Charging Cable,1,11.95,11/17/19 07:57,"79 Lakeview St, Los Angeles, CA 90001" -292686,Lightning Charging Cable,1,14.95,11/08/19 16:25,"672 12th St, Dallas, TX 75001" -292687,Wired Headphones,1,11.99,11/01/19 11:39,"908 6th St, Los Angeles, CA 90001" -292688,USB-C Charging Cable,1,11.95,11/23/19 20:44,"505 Maple St, San Francisco, CA 94016" -292688,Wired Headphones,1,11.99,11/23/19 20:44,"505 Maple St, San Francisco, CA 94016" -292689,Wired Headphones,1,11.99,11/21/19 18:15,"465 Ridge St, Dallas, TX 75001" -292690,AAA Batteries (4-pack),1,2.99,11/28/19 18:19,"856 2nd St, Los Angeles, CA 90001" -292691,USB-C Charging Cable,1,11.95,11/21/19 19:09,"992 14th St, Los Angeles, CA 90001" -292692,Bose SoundSport Headphones,1,99.99,11/24/19 23:23,"654 Highland St, New York City, NY 10001" -292693,20in Monitor,1,109.99,11/15/19 19:19,"764 7th St, Portland, OR 97035" -292694,AAA Batteries (4-pack),2,2.99,11/10/19 14:05,"520 Hickory St, Atlanta, GA 30301" -292695,Lightning Charging Cable,1,14.95,11/05/19 12:14,"975 11th St, Dallas, TX 75001" -292696,AAA Batteries (4-pack),1,2.99,11/10/19 18:45,"447 Madison St, Los Angeles, CA 90001" -292697,20in Monitor,2,109.99,11/03/19 16:03,"364 13th St, New York City, NY 10001" -292698,Flatscreen TV,1,300,11/27/19 18:44,"531 7th St, Boston, MA 02215" -292699,Bose SoundSport Headphones,1,99.99,11/11/19 16:02,"444 North St, Atlanta, GA 30301" -292700,AAA Batteries (4-pack),2,2.99,11/01/19 03:18,"586 Ridge St, New York City, NY 10001" -292701,Lightning Charging Cable,1,14.95,11/07/19 20:20,"896 Elm St, San Francisco, CA 94016" -292702,USB-C Charging Cable,1,11.95,11/17/19 17:25,"58 South St, Los Angeles, CA 90001" -292703,Bose SoundSport Headphones,1,99.99,11/10/19 16:50,"866 Dogwood St, San Francisco, CA 94016" -292704,Macbook Pro Laptop,1,1700,11/22/19 02:53,"253 Lake St, Dallas, TX 75001" -292705,27in FHD Monitor,1,149.99,11/23/19 12:47,"265 Highland St, San Francisco, CA 94016" -292706,34in Ultrawide Monitor,1,379.99,11/23/19 20:53,"934 Jackson St, Los Angeles, CA 90001" -292707,USB-C Charging Cable,1,11.95,11/05/19 10:59,"323 8th St, Seattle, WA 98101" -292708,Apple Airpods Headphones,1,150,11/28/19 14:41,"16 Church St, New York City, NY 10001" -292709,Wired Headphones,1,11.99,11/02/19 22:06,"917 Chestnut St, Seattle, WA 98101" -292709,Lightning Charging Cable,2,14.95,11/02/19 22:06,"917 Chestnut St, Seattle, WA 98101" -292710,USB-C Charging Cable,1,11.95,11/19/19 04:32,"954 Lincoln St, Seattle, WA 98101" -292711,USB-C Charging Cable,1,11.95,11/29/19 09:28,"604 Adams St, Boston, MA 02215" -292712,AAA Batteries (4-pack),1,2.99,11/03/19 19:34,"578 North St, San Francisco, CA 94016" -292713,Apple Airpods Headphones,1,150,11/04/19 11:19,"551 Madison St, New York City, NY 10001" -292714,Google Phone,1,600,11/20/19 22:04,"35 Madison St, Austin, TX 73301" -292715,Bose SoundSport Headphones,1,99.99,11/01/19 15:42,"69 11th St, Dallas, TX 75001" -292716,Wired Headphones,1,11.99,11/05/19 13:55,"620 Wilson St, Dallas, TX 75001" -292717,Flatscreen TV,1,300,11/11/19 19:49,"682 Lakeview St, New York City, NY 10001" -292718,iPhone,1,700,11/30/19 10:21,"391 Willow St, Seattle, WA 98101" -292719,34in Ultrawide Monitor,1,379.99,11/06/19 13:00,"759 11th St, Seattle, WA 98101" -292720,Google Phone,1,600,11/06/19 20:42,"20 Washington St, Portland, OR 97035" -292721,34in Ultrawide Monitor,1,379.99,11/20/19 19:01,"945 10th St, Portland, OR 97035" -292722,AA Batteries (4-pack),1,3.84,11/02/19 09:08,"390 Elm St, Los Angeles, CA 90001" -292723,27in 4K Gaming Monitor,1,389.99,11/11/19 19:18,"402 Center St, Austin, TX 73301" -292724,Wired Headphones,1,11.99,11/16/19 14:11,"437 Meadow St, Los Angeles, CA 90001" -292725,Wired Headphones,1,11.99,11/30/19 11:43,"352 2nd St, Atlanta, GA 30301" -292726,20in Monitor,1,109.99,11/05/19 13:48,"707 Elm St, Los Angeles, CA 90001" -292727,Google Phone,1,600,11/11/19 12:25,"278 Ridge St, New York City, NY 10001" -292727,USB-C Charging Cable,2,11.95,11/11/19 12:25,"278 Ridge St, New York City, NY 10001" -292728,USB-C Charging Cable,1,11.95,11/13/19 16:19,"329 10th St, Atlanta, GA 30301" -292729,Apple Airpods Headphones,1,150,11/20/19 10:33,"614 5th St, Los Angeles, CA 90001" -292730,Bose SoundSport Headphones,1,99.99,11/07/19 14:04,"515 Cherry St, Austin, TX 73301" -292731,Wired Headphones,1,11.99,11/21/19 11:29,"26 Lincoln St, Atlanta, GA 30301" -292732,Wired Headphones,1,11.99,11/01/19 09:39,"186 8th St, San Francisco, CA 94016" -292733,Lightning Charging Cable,1,14.95,11/26/19 01:19,"569 Park St, New York City, NY 10001" -292734,AAA Batteries (4-pack),1,2.99,11/26/19 10:18,"380 1st St, New York City, NY 10001" -292735,Bose SoundSport Headphones,1,99.99,11/10/19 19:54,"731 Adams St, New York City, NY 10001" -292736,AA Batteries (4-pack),2,3.84,11/02/19 22:57,"369 Maple St, Boston, MA 02215" -292737,Bose SoundSport Headphones,1,99.99,11/21/19 19:00,"113 9th St, Los Angeles, CA 90001" -292738,Apple Airpods Headphones,1,150,11/30/19 18:10,"309 South St, San Francisco, CA 94016" -292739,AAA Batteries (4-pack),1,2.99,11/12/19 01:54,"337 5th St, Los Angeles, CA 90001" -292740,Lightning Charging Cable,1,14.95,11/04/19 12:50,"326 Walnut St, Portland, OR 97035" -292741,ThinkPad Laptop,1,999.99,11/03/19 19:17,"940 Main St, New York City, NY 10001" -292742,AAA Batteries (4-pack),1,2.99,11/01/19 10:31,"837 Forest St, San Francisco, CA 94016" -292743,USB-C Charging Cable,1,11.95,11/27/19 18:46,"673 7th St, San Francisco, CA 94016" -292744,Apple Airpods Headphones,1,150,11/14/19 13:13,"351 Wilson St, Los Angeles, CA 90001" -292745,Vareebadd Phone,1,400,11/07/19 13:51,"183 Cedar St, Atlanta, GA 30301" -292746,Lightning Charging Cable,1,14.95,11/18/19 11:38,"249 11th St, New York City, NY 10001" -292747,Vareebadd Phone,1,400,11/16/19 09:54,"88 Pine St, Dallas, TX 75001" -292748,Lightning Charging Cable,1,14.95,11/15/19 11:43,"334 Hickory St, Boston, MA 02215" -292749,AAA Batteries (4-pack),2,2.99,11/08/19 09:23,"723 Cherry St, Los Angeles, CA 90001" -292750,Lightning Charging Cable,1,14.95,11/30/19 08:47,"366 1st St, San Francisco, CA 94016" -292751,Apple Airpods Headphones,1,150,11/14/19 11:56,"114 Walnut St, New York City, NY 10001" -292752,AAA Batteries (4-pack),1,2.99,11/24/19 14:48,"936 7th St, Boston, MA 02215" -292753,Lightning Charging Cable,1,14.95,11/13/19 09:55,"271 Ridge St, New York City, NY 10001" -292754,ThinkPad Laptop,1,999.99,11/03/19 13:00,"377 Hill St, New York City, NY 10001" -292755,AAA Batteries (4-pack),2,2.99,11/05/19 18:07,"213 11th St, San Francisco, CA 94016" -292756,USB-C Charging Cable,1,11.95,11/20/19 02:00,"213 Washington St, San Francisco, CA 94016" -292757,34in Ultrawide Monitor,1,379.99,11/08/19 11:06,"81 5th St, San Francisco, CA 94016" -292757,AAA Batteries (4-pack),5,2.99,11/08/19 11:06,"81 5th St, San Francisco, CA 94016" -292758,Apple Airpods Headphones,1,150,11/25/19 15:58,"460 Maple St, Los Angeles, CA 90001" -292759,27in FHD Monitor,1,149.99,11/22/19 05:56,"94 Maple St, Atlanta, GA 30301" -292759,Wired Headphones,1,11.99,11/22/19 05:56,"94 Maple St, Atlanta, GA 30301" -292760,AA Batteries (4-pack),2,3.84,11/14/19 18:10,"165 Adams St, Dallas, TX 75001" -292761,Lightning Charging Cable,1,14.95,11/22/19 15:15,"287 Willow St, San Francisco, CA 94016" -292762,Wired Headphones,1,11.99,11/29/19 21:00,"439 Wilson St, New York City, NY 10001" -292763,Bose SoundSport Headphones,1,99.99,11/06/19 17:24,"309 Meadow St, Seattle, WA 98101" -292764,AAA Batteries (4-pack),3,2.99,11/13/19 21:22,"349 Madison St, Austin, TX 73301" -292765,Apple Airpods Headphones,1,150,11/15/19 16:32,"386 9th St, Austin, TX 73301" -292766,Apple Airpods Headphones,1,150,11/15/19 12:37,"634 9th St, San Francisco, CA 94016" -292767,USB-C Charging Cable,1,11.95,11/03/19 17:51,"105 1st St, Atlanta, GA 30301" -292768,Lightning Charging Cable,1,14.95,11/09/19 21:32,"794 North St, New York City, NY 10001" -292769,iPhone,1,700,11/19/19 21:01,"167 2nd St, San Francisco, CA 94016" -292770,Wired Headphones,1,11.99,11/26/19 08:57,"881 Pine St, San Francisco, CA 94016" -292771,Apple Airpods Headphones,1,150,11/15/19 21:51,"696 Church St, Boston, MA 02215" -292772,Flatscreen TV,1,300,11/11/19 18:51,"416 Lincoln St, San Francisco, CA 94016" -292773,27in FHD Monitor,1,149.99,11/14/19 22:10,"141 Walnut St, Atlanta, GA 30301" -292774,USB-C Charging Cable,1,11.95,11/13/19 20:02,"863 2nd St, Atlanta, GA 30301" -292775,Lightning Charging Cable,1,14.95,11/15/19 05:04,"945 2nd St, Los Angeles, CA 90001" -292776,Apple Airpods Headphones,1,150,11/09/19 16:38,"729 Jackson St, Austin, TX 73301" -292777,34in Ultrawide Monitor,1,379.99,11/04/19 13:07,"769 Forest St, San Francisco, CA 94016" -292778,Macbook Pro Laptop,1,1700,11/22/19 23:09,"645 Jackson St, Dallas, TX 75001" -292779,AA Batteries (4-pack),1,3.84,11/04/19 16:49,"460 Wilson St, San Francisco, CA 94016" -292780,AA Batteries (4-pack),1,3.84,12/01/19 00:46,"636 7th St, San Francisco, CA 94016" -292781,Apple Airpods Headphones,1,150,11/21/19 18:49,"412 Maple St, New York City, NY 10001" -292782,Lightning Charging Cable,1,14.95,11/29/19 15:28,"450 West St, Los Angeles, CA 90001" -292783,Apple Airpods Headphones,1,150,11/13/19 11:41,"530 Lakeview St, New York City, NY 10001" -292784,Lightning Charging Cable,1,14.95,11/27/19 21:00,"237 6th St, Los Angeles, CA 90001" -292785,Wired Headphones,2,11.99,11/02/19 06:31,"389 Center St, Dallas, TX 75001" -292786,AA Batteries (4-pack),1,3.84,11/15/19 17:03,"521 1st St, Austin, TX 73301" -292787,Lightning Charging Cable,1,14.95,11/30/19 13:26,"483 Madison St, Atlanta, GA 30301" -292788,AAA Batteries (4-pack),1,2.99,11/06/19 10:42,"5 Lincoln St, San Francisco, CA 94016" -292789,Google Phone,1,600,11/11/19 20:26,"115 5th St, Dallas, TX 75001" -292790,ThinkPad Laptop,1,999.99,11/19/19 08:00,"999 Elm St, New York City, NY 10001" -292791,Lightning Charging Cable,1,14.95,11/09/19 16:01,"861 Ridge St, Los Angeles, CA 90001" -292792,27in FHD Monitor,1,149.99,11/24/19 19:57,"896 Cedar St, Austin, TX 73301" -292793,USB-C Charging Cable,1,11.95,11/29/19 20:03,"70 Meadow St, Los Angeles, CA 90001" -292794,Google Phone,1,600,11/01/19 13:04,"857 Chestnut St, Atlanta, GA 30301" -292795,AA Batteries (4-pack),1,3.84,11/11/19 11:07,"349 Chestnut St, Los Angeles, CA 90001" -292796,Macbook Pro Laptop,1,1700,11/30/19 06:39,"121 South St, New York City, NY 10001" -292797,Apple Airpods Headphones,1,150,11/22/19 22:53,"239 Chestnut St, Seattle, WA 98101" -292798,ThinkPad Laptop,1,999.99,11/10/19 16:19,"613 Hill St, New York City, NY 10001" -292799,Wired Headphones,1,11.99,11/14/19 21:04,"929 2nd St, Seattle, WA 98101" -292800,27in FHD Monitor,2,149.99,11/26/19 08:38,"739 Cherry St, Dallas, TX 75001" -292801,27in 4K Gaming Monitor,1,389.99,11/16/19 11:13,"329 Dogwood St, San Francisco, CA 94016" -292802,Bose SoundSport Headphones,1,99.99,11/21/19 23:01,"264 10th St, Los Angeles, CA 90001" -292803,USB-C Charging Cable,1,11.95,11/27/19 16:19,"517 Lakeview St, Atlanta, GA 30301" -292804,AA Batteries (4-pack),1,3.84,11/16/19 09:53,"665 Jefferson St, New York City, NY 10001" -292805,Lightning Charging Cable,1,14.95,11/06/19 17:54,"577 Lincoln St, Atlanta, GA 30301" -292806,AA Batteries (4-pack),3,3.84,11/16/19 16:02,"687 Chestnut St, Boston, MA 02215" -292807,Apple Airpods Headphones,1,150,11/22/19 15:52,"380 Highland St, San Francisco, CA 94016" -292808,Apple Airpods Headphones,1,150,11/16/19 11:15,"773 Cherry St, Austin, TX 73301" -292809,20in Monitor,1,109.99,11/02/19 22:27,"445 8th St, San Francisco, CA 94016" -292810,Bose SoundSport Headphones,1,99.99,11/16/19 06:42,"994 Jefferson St, Los Angeles, CA 90001" -292811,USB-C Charging Cable,1,11.95,11/26/19 20:48,"626 7th St, Boston, MA 02215" -292812,Bose SoundSport Headphones,1,99.99,11/25/19 11:12,"328 Main St, San Francisco, CA 94016" -292813,AA Batteries (4-pack),2,3.84,11/07/19 16:34,"507 Jackson St, San Francisco, CA 94016" -292814,Lightning Charging Cable,1,14.95,11/03/19 07:18,"212 Hickory St, Dallas, TX 75001" -292815,Bose SoundSport Headphones,1,99.99,11/10/19 21:23,"778 Madison St, Los Angeles, CA 90001" -292816,iPhone,1,700,11/21/19 10:22,"184 Dogwood St, Boston, MA 02215" -292817,Apple Airpods Headphones,1,150,11/10/19 14:45,"332 13th St, San Francisco, CA 94016" -292818,Google Phone,1,600,11/21/19 17:53,"129 Forest St, San Francisco, CA 94016" -292818,USB-C Charging Cable,1,11.95,11/21/19 17:53,"129 Forest St, San Francisco, CA 94016" -292819,Wired Headphones,1,11.99,11/22/19 15:39,"436 8th St, San Francisco, CA 94016" -292820,USB-C Charging Cable,1,11.95,11/23/19 10:47,"14 6th St, San Francisco, CA 94016" -292821,iPhone,1,700,11/03/19 08:27,"130 Church St, San Francisco, CA 94016" -292822,27in 4K Gaming Monitor,1,389.99,11/12/19 21:05,"59 10th St, Dallas, TX 75001" -292823,AAA Batteries (4-pack),1,2.99,11/25/19 10:07,"871 Cedar St, Boston, MA 02215" -292824,ThinkPad Laptop,1,999.99,11/08/19 12:03,"783 Hickory St, San Francisco, CA 94016" -292825,Bose SoundSport Headphones,1,99.99,11/30/19 21:23,"787 Main St, Boston, MA 02215" -292825,27in FHD Monitor,1,149.99,11/30/19 21:23,"787 Main St, Boston, MA 02215" -292826,Bose SoundSport Headphones,1,99.99,11/05/19 14:19,"590 14th St, San Francisco, CA 94016" -292827,USB-C Charging Cable,1,11.95,11/21/19 11:35,"683 Chestnut St, New York City, NY 10001" -292828,AA Batteries (4-pack),2,3.84,11/09/19 13:23,"368 1st St, San Francisco, CA 94016" -292829,Lightning Charging Cable,1,14.95,11/29/19 12:21,"205 Maple St, San Francisco, CA 94016" -292830,Bose SoundSport Headphones,1,99.99,11/08/19 13:12,"317 12th St, San Francisco, CA 94016" -292831,AA Batteries (4-pack),1,3.84,11/24/19 18:35,"216 9th St, Portland, OR 97035" -292832,Wired Headphones,1,11.99,11/23/19 10:34,"560 Walnut St, San Francisco, CA 94016" -292833,Apple Airpods Headphones,1,150,11/14/19 13:14,"322 Washington St, Austin, TX 73301" -292834,34in Ultrawide Monitor,1,379.99,11/22/19 19:00,"208 Jefferson St, Atlanta, GA 30301" -292835,AA Batteries (4-pack),1,3.84,11/07/19 19:28,"649 Pine St, Los Angeles, CA 90001" -292836,Wired Headphones,1,11.99,11/17/19 00:10,"601 Lakeview St, San Francisco, CA 94016" -292837,AAA Batteries (4-pack),1,2.99,11/18/19 14:42,"105 Jefferson St, Los Angeles, CA 90001" -292838,iPhone,1,700,11/12/19 15:40,"413 Cherry St, Los Angeles, CA 90001" -292839,AA Batteries (4-pack),2,3.84,11/29/19 20:20,"616 10th St, Los Angeles, CA 90001" -292840,ThinkPad Laptop,1,999.99,11/08/19 13:16,"561 Highland St, San Francisco, CA 94016" -292841,Vareebadd Phone,1,400,11/25/19 22:23,"614 Jackson St, Portland, OR 97035" -292842,AA Batteries (4-pack),1,3.84,11/25/19 10:32,"692 Hickory St, Boston, MA 02215" -292843,Apple Airpods Headphones,1,150,11/21/19 06:23,"611 5th St, Seattle, WA 98101" -292844,20in Monitor,1,109.99,11/29/19 13:16,"6 Walnut St, San Francisco, CA 94016" -292845,34in Ultrawide Monitor,1,379.99,11/26/19 00:29,"20 Jackson St, New York City, NY 10001" -292846,Macbook Pro Laptop,1,1700,11/08/19 13:14,"208 5th St, Atlanta, GA 30301" -292847,AAA Batteries (4-pack),2,2.99,11/16/19 10:17,"144 Park St, Dallas, TX 75001" -292848,USB-C Charging Cable,2,11.95,11/04/19 07:44,"336 West St, Los Angeles, CA 90001" -292849,AAA Batteries (4-pack),1,2.99,11/13/19 11:16,"703 Chestnut St, New York City, NY 10001" -292850,Macbook Pro Laptop,1,1700,11/25/19 00:30,"877 River St, Atlanta, GA 30301" -292851,USB-C Charging Cable,1,11.95,11/25/19 01:35,"496 Lake St, New York City, NY 10001" -292852,USB-C Charging Cable,1,11.95,11/15/19 21:51,"902 Highland St, San Francisco, CA 94016" -292853,AA Batteries (4-pack),1,3.84,11/04/19 01:11,"598 Lake St, Seattle, WA 98101" -292854,Vareebadd Phone,1,400,11/20/19 17:31,"357 Chestnut St, Los Angeles, CA 90001" -292855,iPhone,1,700,11/29/19 22:02,"969 6th St, Los Angeles, CA 90001" -292856,USB-C Charging Cable,2,11.95,11/20/19 22:53,"479 Hill St, Seattle, WA 98101" -292857,27in 4K Gaming Monitor,1,389.99,11/26/19 20:07,"14 West St, New York City, NY 10001" -292858,20in Monitor,1,109.99,11/16/19 10:57,"24 8th St, Seattle, WA 98101" -292859,AA Batteries (4-pack),1,3.84,11/12/19 10:44,"252 Jackson St, Dallas, TX 75001" -292860,AAA Batteries (4-pack),1,2.99,11/21/19 12:31,"360 9th St, New York City, NY 10001" -292861,Wired Headphones,2,11.99,11/10/19 15:41,"189 Walnut St, Atlanta, GA 30301" -292862,Wired Headphones,1,11.99,11/18/19 19:53,"187 4th St, Austin, TX 73301" -292863,Wired Headphones,1,11.99,11/04/19 22:34,"481 Wilson St, New York City, NY 10001" -292864,Wired Headphones,1,11.99,11/04/19 15:04,"626 Main St, Portland, OR 97035" -292865,AAA Batteries (4-pack),1,2.99,11/28/19 14:46,"383 14th St, Atlanta, GA 30301" -292866,Flatscreen TV,1,300,11/02/19 17:30,"881 14th St, San Francisco, CA 94016" -292867,27in FHD Monitor,1,149.99,11/08/19 00:42,"864 6th St, New York City, NY 10001" -292868,27in 4K Gaming Monitor,1,389.99,11/05/19 23:05,"983 Wilson St, Boston, MA 02215" -292869,Lightning Charging Cable,1,14.95,11/13/19 17:49,"812 Hickory St, Austin, TX 73301" -292870,Lightning Charging Cable,1,14.95,11/23/19 13:06,"656 6th St, Austin, TX 73301" -292871,Macbook Pro Laptop,1,1700,11/02/19 14:51,"748 Forest St, Atlanta, GA 30301" -292872,USB-C Charging Cable,1,11.95,11/17/19 13:13,"282 Madison St, Dallas, TX 75001" -292873,USB-C Charging Cable,2,11.95,11/26/19 03:19,"730 Washington St, San Francisco, CA 94016" -292874,Apple Airpods Headphones,1,150,11/28/19 10:55,"237 Spruce St, Austin, TX 73301" -292875,AA Batteries (4-pack),1,3.84,11/20/19 15:04,"467 Main St, Boston, MA 02215" -292876,27in FHD Monitor,1,149.99,11/04/19 18:35,"230 Madison St, Los Angeles, CA 90001" -292876,USB-C Charging Cable,1,11.95,11/04/19 18:35,"230 Madison St, Los Angeles, CA 90001" -292877,Lightning Charging Cable,1,14.95,11/24/19 12:24,"709 West St, New York City, NY 10001" -292878,Wired Headphones,1,11.99,11/12/19 10:38,"968 North St, New York City, NY 10001" -292879,AAA Batteries (4-pack),1,2.99,11/22/19 13:39,"467 Chestnut St, Los Angeles, CA 90001" -292880,AA Batteries (4-pack),1,3.84,11/02/19 20:03,"896 Park St, Seattle, WA 98101" -292881,iPhone,1,700,11/28/19 20:20,"699 4th St, San Francisco, CA 94016" -292882,AA Batteries (4-pack),1,3.84,11/08/19 17:20,"369 Walnut St, Los Angeles, CA 90001" -292883,Bose SoundSport Headphones,1,99.99,11/11/19 09:05,"634 7th St, Los Angeles, CA 90001" -292884,Wired Headphones,1,11.99,11/20/19 11:21,"642 9th St, Los Angeles, CA 90001" -292885,Lightning Charging Cable,1,14.95,11/20/19 14:34,"84 Main St, Boston, MA 02215" -292886,AAA Batteries (4-pack),1,2.99,11/03/19 16:56,"381 Hill St, Boston, MA 02215" -292887,Apple Airpods Headphones,1,150,11/22/19 21:49,"484 Walnut St, Atlanta, GA 30301" -292888,Wired Headphones,1,11.99,11/24/19 17:01,"616 Walnut St, Boston, MA 02215" -292889,Apple Airpods Headphones,1,150,11/21/19 09:53,"122 6th St, New York City, NY 10001" -292890,Macbook Pro Laptop,1,1700,11/27/19 09:57,"574 Jefferson St, San Francisco, CA 94016" -292891,Wired Headphones,1,11.99,11/07/19 12:20,"293 4th St, New York City, NY 10001" -292892,Apple Airpods Headphones,1,150,11/14/19 23:27,"907 5th St, Dallas, TX 75001" -292893,20in Monitor,1,109.99,11/23/19 20:50,"540 Hickory St, Los Angeles, CA 90001" -292894,AA Batteries (4-pack),1,3.84,11/16/19 21:57,"142 Ridge St, Boston, MA 02215" -292895,USB-C Charging Cable,1,11.95,11/17/19 08:52,"102 Madison St, Portland, OR 97035" -292896,ThinkPad Laptop,1,999.99,11/11/19 21:43,"221 11th St, Boston, MA 02215" -292897,USB-C Charging Cable,1,11.95,11/21/19 12:59,"855 10th St, New York City, NY 10001" -292898,Macbook Pro Laptop,1,1700,11/13/19 18:42,"658 Cedar St, Los Angeles, CA 90001" -292899,Flatscreen TV,1,300,11/27/19 12:18,"643 8th St, Austin, TX 73301" -292900,Flatscreen TV,1,300,11/16/19 18:44,"757 Walnut St, Atlanta, GA 30301" -292901,Lightning Charging Cable,1,14.95,11/07/19 07:10,"554 Meadow St, Dallas, TX 75001" -292902,AAA Batteries (4-pack),1,2.99,11/30/19 08:00,"575 Meadow St, Atlanta, GA 30301" -292903,27in 4K Gaming Monitor,1,389.99,11/24/19 17:53,"552 Washington St, Seattle, WA 98101" -292904,Wired Headphones,1,11.99,11/22/19 19:37,"782 Lake St, Atlanta, GA 30301" -292905,Wired Headphones,1,11.99,11/04/19 17:03,"304 Ridge St, Austin, TX 73301" -292906,Vareebadd Phone,1,400,11/21/19 11:55,"6 Spruce St, Atlanta, GA 30301" -292906,USB-C Charging Cable,1,11.95,11/21/19 11:55,"6 Spruce St, Atlanta, GA 30301" -292907,20in Monitor,1,109.99,11/03/19 09:55,"30 Willow St, New York City, NY 10001" -292908,27in 4K Gaming Monitor,1,389.99,11/30/19 14:13,"863 Walnut St, Atlanta, GA 30301" -292908,Macbook Pro Laptop,1,1700,11/30/19 14:13,"863 Walnut St, Atlanta, GA 30301" -292909,AAA Batteries (4-pack),2,2.99,11/08/19 17:52,"408 West St, Atlanta, GA 30301" -292910,AAA Batteries (4-pack),1,2.99,11/01/19 22:02,"789 North St, New York City, NY 10001" -292911,AAA Batteries (4-pack),1,2.99,11/17/19 19:58,"358 Lakeview St, Atlanta, GA 30301" -292912,27in 4K Gaming Monitor,1,389.99,11/19/19 20:59,"899 10th St, Boston, MA 02215" -292913,Bose SoundSport Headphones,1,99.99,11/11/19 12:45,"89 Forest St, San Francisco, CA 94016" -292914,AAA Batteries (4-pack),1,2.99,11/02/19 18:26,"371 Maple St, San Francisco, CA 94016" -292915,AA Batteries (4-pack),4,3.84,11/28/19 10:56,"359 Jackson St, San Francisco, CA 94016" -292916,AAA Batteries (4-pack),2,2.99,11/01/19 20:53,"996 9th St, San Francisco, CA 94016" -292917,AAA Batteries (4-pack),1,2.99,11/02/19 18:54,"213 North St, Dallas, TX 75001" -292918,USB-C Charging Cable,1,11.95,11/26/19 10:48,"321 Washington St, Dallas, TX 75001" -292919,Lightning Charging Cable,2,14.95,11/09/19 18:32,"6 Spruce St, San Francisco, CA 94016" -292920,iPhone,1,700,11/22/19 18:55,"52 Lake St, Los Angeles, CA 90001" -292920,Apple Airpods Headphones,1,150,11/22/19 18:55,"52 Lake St, Los Angeles, CA 90001" -292921,Wired Headphones,1,11.99,11/19/19 08:03,"684 Lake St, Boston, MA 02215" -292922,iPhone,1,700,11/28/19 14:38,"171 Highland St, Portland, OR 97035" -292923,AAA Batteries (4-pack),1,2.99,11/27/19 15:49,"422 Main St, Los Angeles, CA 90001" -292924,AA Batteries (4-pack),1,3.84,11/25/19 23:19,"442 Washington St, New York City, NY 10001" -292925,USB-C Charging Cable,1,11.95,11/04/19 11:13,"897 Jackson St, Dallas, TX 75001" -292926,27in 4K Gaming Monitor,1,389.99,11/12/19 15:48,"618 Wilson St, Atlanta, GA 30301" -292927,iPhone,1,700,11/12/19 23:25,"694 Madison St, Seattle, WA 98101" -292928,AAA Batteries (4-pack),2,2.99,11/11/19 22:29,"434 Dogwood St, Austin, TX 73301" -292929,Apple Airpods Headphones,1,150,11/04/19 18:53,"170 4th St, San Francisco, CA 94016" -292930,27in FHD Monitor,1,149.99,11/04/19 11:20,"751 Willow St, Los Angeles, CA 90001" -292931,LG Dryer,1,600.0,11/20/19 18:35,"512 Park St, Seattle, WA 98101" -292932,27in 4K Gaming Monitor,1,389.99,11/28/19 09:47,"808 Chestnut St, Seattle, WA 98101" -292933,AA Batteries (4-pack),1,3.84,11/12/19 15:26,"135 6th St, San Francisco, CA 94016" -292934,34in Ultrawide Monitor,1,379.99,11/02/19 16:38,"952 10th St, Los Angeles, CA 90001" -292935,Google Phone,1,600,11/21/19 11:43,"977 2nd St, San Francisco, CA 94016" -292935,Wired Headphones,1,11.99,11/21/19 11:43,"977 2nd St, San Francisco, CA 94016" -292936,Lightning Charging Cable,1,14.95,11/01/19 13:05,"363 13th St, Portland, ME 04101" -292937,Bose SoundSport Headphones,1,99.99,11/21/19 16:04,"369 Washington St, New York City, NY 10001" -292938,Flatscreen TV,1,300,11/07/19 07:42,"239 Washington St, San Francisco, CA 94016" -292939,AA Batteries (4-pack),1,3.84,11/24/19 15:02,"830 Park St, Los Angeles, CA 90001" -292940,Lightning Charging Cable,1,14.95,11/21/19 23:24,"668 West St, Austin, TX 73301" -292941,Vareebadd Phone,1,400,11/14/19 22:41,"751 Lake St, Seattle, WA 98101" -292942,Bose SoundSport Headphones,1,99.99,11/01/19 23:35,"539 Wilson St, Atlanta, GA 30301" -292943,Bose SoundSport Headphones,1,99.99,11/29/19 20:26,"355 Meadow St, Atlanta, GA 30301" -292944,Google Phone,1,600,11/09/19 16:29,"814 Johnson St, Atlanta, GA 30301" -292945,Apple Airpods Headphones,1,150,11/04/19 17:58,"728 14th St, Seattle, WA 98101" -292946,27in 4K Gaming Monitor,1,389.99,11/17/19 17:01,"13 7th St, Los Angeles, CA 90001" -292947,AA Batteries (4-pack),1,3.84,11/28/19 22:19,"158 Ridge St, Dallas, TX 75001" -292948,Apple Airpods Headphones,1,150,11/02/19 10:19,"638 Hill St, Los Angeles, CA 90001" -292949,Wired Headphones,1,11.99,11/08/19 14:52,"627 2nd St, Seattle, WA 98101" -292950,Bose SoundSport Headphones,1,99.99,11/22/19 18:28,"816 Lakeview St, San Francisco, CA 94016" -292951,34in Ultrawide Monitor,1,379.99,11/27/19 19:57,"861 8th St, San Francisco, CA 94016" -292952,AAA Batteries (4-pack),1,2.99,11/05/19 09:28,"167 Cherry St, New York City, NY 10001" -292953,34in Ultrawide Monitor,1,379.99,11/20/19 18:54,"712 Church St, Seattle, WA 98101" -292954,AA Batteries (4-pack),2,3.84,11/28/19 21:34,"653 Cherry St, Los Angeles, CA 90001" -292955,AA Batteries (4-pack),1,3.84,11/27/19 12:26,"294 River St, New York City, NY 10001" -292956,ThinkPad Laptop,1,999.99,11/12/19 18:21,"745 Willow St, San Francisco, CA 94016" -292957,Bose SoundSport Headphones,1,99.99,11/20/19 14:00,"757 Pine St, San Francisco, CA 94016" -292958,Vareebadd Phone,1,400,11/26/19 12:54,"752 River St, Los Angeles, CA 90001" -292959,iPhone,1,700,11/09/19 15:44,"311 Hickory St, Atlanta, GA 30301" -292960,AAA Batteries (4-pack),1,2.99,11/25/19 08:31,"78 Johnson St, New York City, NY 10001" -292961,Wired Headphones,1,11.99,11/26/19 18:05,"589 Jackson St, San Francisco, CA 94016" -292962,Lightning Charging Cable,1,14.95,11/12/19 18:08,"552 Dogwood St, Portland, OR 97035" -292963,Lightning Charging Cable,1,14.95,11/21/19 16:38,"188 Dogwood St, Seattle, WA 98101" -292964,Apple Airpods Headphones,1,150,11/10/19 15:55,"452 11th St, Portland, ME 04101" -292965,Bose SoundSport Headphones,1,99.99,11/19/19 23:15,"76 South St, San Francisco, CA 94016" -292966,USB-C Charging Cable,1,11.95,11/24/19 10:05,"14 Cherry St, Atlanta, GA 30301" -292967,27in FHD Monitor,1,149.99,11/05/19 20:34,"408 Park St, Austin, TX 73301" -292968,Wired Headphones,1,11.99,11/08/19 19:01,"1 5th St, Los Angeles, CA 90001" -292969,AA Batteries (4-pack),1,3.84,11/15/19 12:16,"673 1st St, Boston, MA 02215" -292969,Apple Airpods Headphones,1,150,11/15/19 12:16,"673 1st St, Boston, MA 02215" -292970,Lightning Charging Cable,2,14.95,11/13/19 10:53,"574 Washington St, Los Angeles, CA 90001" -292971,Lightning Charging Cable,1,14.95,11/27/19 21:08,"230 6th St, Los Angeles, CA 90001" -292972,27in 4K Gaming Monitor,1,389.99,11/07/19 09:43,"585 1st St, San Francisco, CA 94016" -292973,AAA Batteries (4-pack),1,2.99,11/12/19 14:20,"368 Jefferson St, New York City, NY 10001" -292974,Google Phone,1,600,11/24/19 15:40,"87 Hill St, Dallas, TX 75001" -292974,Wired Headphones,1,11.99,11/24/19 15:40,"87 Hill St, Dallas, TX 75001" -292975,AAA Batteries (4-pack),1,2.99,11/15/19 19:54,"989 Church St, San Francisco, CA 94016" -292976,Wired Headphones,1,11.99,11/12/19 09:48,"115 Johnson St, Seattle, WA 98101" -292977,USB-C Charging Cable,2,11.95,11/22/19 11:24,"980 Lake St, San Francisco, CA 94016" -292978,27in 4K Gaming Monitor,1,389.99,11/25/19 13:00,"271 Lincoln St, Boston, MA 02215" -292979,AA Batteries (4-pack),1,3.84,11/06/19 23:29,"923 10th St, San Francisco, CA 94016" -292980,AA Batteries (4-pack),1,3.84,11/06/19 18:37,"919 2nd St, Los Angeles, CA 90001" -292981,AAA Batteries (4-pack),1,2.99,11/22/19 09:52,"691 Chestnut St, Los Angeles, CA 90001" -292982,20in Monitor,1,109.99,11/16/19 16:35,"836 Wilson St, San Francisco, CA 94016" -292983,34in Ultrawide Monitor,1,379.99,11/16/19 15:47,"784 11th St, Boston, MA 02215" -292984,Vareebadd Phone,1,400,11/12/19 09:07,"552 5th St, Los Angeles, CA 90001" -292984,USB-C Charging Cable,1,11.95,11/12/19 09:07,"552 5th St, Los Angeles, CA 90001" -292985,AAA Batteries (4-pack),1,2.99,11/18/19 23:57,"294 Spruce St, Atlanta, GA 30301" -292986,AA Batteries (4-pack),1,3.84,11/21/19 10:45,"973 6th St, Dallas, TX 75001" -292987,Lightning Charging Cable,1,14.95,11/28/19 08:53,"401 Cherry St, Los Angeles, CA 90001" -292988,20in Monitor,1,109.99,11/09/19 22:22,"357 5th St, New York City, NY 10001" -292989,Lightning Charging Cable,1,14.95,11/03/19 23:57,"599 2nd St, Atlanta, GA 30301" -292990,Bose SoundSport Headphones,1,99.99,11/03/19 22:07,"801 Lincoln St, Seattle, WA 98101" -292991,AA Batteries (4-pack),1,3.84,11/12/19 20:59,"887 2nd St, New York City, NY 10001" -292992,Bose SoundSport Headphones,1,99.99,11/20/19 14:01,"617 7th St, Boston, MA 02215" -292993,Apple Airpods Headphones,1,150,11/08/19 22:25,"230 Elm St, Atlanta, GA 30301" -292994,AA Batteries (4-pack),1,3.84,11/24/19 14:13,"993 7th St, Boston, MA 02215" -292995,Bose SoundSport Headphones,1,99.99,11/27/19 20:29,"77 Chestnut St, Dallas, TX 75001" -292996,Lightning Charging Cable,1,14.95,11/16/19 19:45,"793 Sunset St, Austin, TX 73301" -292997,USB-C Charging Cable,1,11.95,11/05/19 13:34,"441 4th St, Atlanta, GA 30301" -292998,Lightning Charging Cable,1,14.95,11/30/19 21:26,"889 Center St, Dallas, TX 75001" -292999,USB-C Charging Cable,1,11.95,11/25/19 16:46,"744 South St, Atlanta, GA 30301" -293000,Wired Headphones,2,11.99,11/10/19 12:35,"878 Pine St, Boston, MA 02215" -293001,Apple Airpods Headphones,1,150,11/14/19 20:06,"605 10th St, New York City, NY 10001" -293002,ThinkPad Laptop,1,999.99,11/28/19 21:56,"198 North St, San Francisco, CA 94016" -293003,27in FHD Monitor,1,149.99,11/13/19 05:29,"409 12th St, San Francisco, CA 94016" -293004,Macbook Pro Laptop,1,1700,11/30/19 19:08,"86 Ridge St, San Francisco, CA 94016" -293005,34in Ultrawide Monitor,1,379.99,11/20/19 23:02,"127 13th St, Los Angeles, CA 90001" -293006,AA Batteries (4-pack),1,3.84,11/30/19 18:19,"178 13th St, Los Angeles, CA 90001" -293007,USB-C Charging Cable,1,11.95,11/27/19 15:20,"733 Hill St, Austin, TX 73301" -293008,Macbook Pro Laptop,1,1700,11/30/19 18:50,"644 Forest St, New York City, NY 10001" -293009,USB-C Charging Cable,1,11.95,11/27/19 17:46,"318 1st St, New York City, NY 10001" -293010,Lightning Charging Cable,1,14.95,11/30/19 11:46,"773 Park St, San Francisco, CA 94016" -293010,27in 4K Gaming Monitor,1,389.99,11/30/19 11:46,"773 Park St, San Francisco, CA 94016" -293011,iPhone,1,700,11/18/19 22:11,"763 River St, San Francisco, CA 94016" -293012,Wired Headphones,1,11.99,11/21/19 16:06,"794 7th St, Dallas, TX 75001" -293013,Lightning Charging Cable,1,14.95,11/17/19 17:16,"213 Main St, San Francisco, CA 94016" -293014,iPhone,1,700,11/17/19 20:16,"49 West St, Boston, MA 02215" -293015,Lightning Charging Cable,1,14.95,11/27/19 17:03,"288 5th St, New York City, NY 10001" -293016,AA Batteries (4-pack),1,3.84,11/12/19 00:27,"869 Washington St, San Francisco, CA 94016" -293017,Lightning Charging Cable,1,14.95,11/25/19 13:45,"991 River St, San Francisco, CA 94016" -293018,34in Ultrawide Monitor,1,379.99,11/20/19 17:22,"366 Johnson St, San Francisco, CA 94016" -293019,Wired Headphones,1,11.99,11/02/19 14:21,"960 Lakeview St, San Francisco, CA 94016" -293020,AAA Batteries (4-pack),1,2.99,11/30/19 16:34,"610 North St, New York City, NY 10001" -293021,AA Batteries (4-pack),2,3.84,11/13/19 13:28,"152 Main St, San Francisco, CA 94016" -293022,Wired Headphones,1,11.99,11/03/19 12:11,"346 Meadow St, New York City, NY 10001" -293023,USB-C Charging Cable,1,11.95,11/21/19 14:50,"393 2nd St, Los Angeles, CA 90001" -293024,iPhone,1,700,11/10/19 12:07,"879 1st St, Atlanta, GA 30301" -293024,Wired Headphones,1,11.99,11/10/19 12:07,"879 1st St, Atlanta, GA 30301" -293025,USB-C Charging Cable,1,11.95,11/04/19 19:21,"959 Meadow St, Dallas, TX 75001" -293026,Wired Headphones,1,11.99,11/10/19 21:54,"593 South St, Los Angeles, CA 90001" -293027,Macbook Pro Laptop,1,1700,11/24/19 11:56,"357 Highland St, Atlanta, GA 30301" -293028,Wired Headphones,1,11.99,11/25/19 18:40,"556 Highland St, San Francisco, CA 94016" -293029,USB-C Charging Cable,1,11.95,11/13/19 16:52,"900 North St, Atlanta, GA 30301" -293030,Wired Headphones,1,11.99,11/28/19 16:22,"216 Chestnut St, Seattle, WA 98101" -293031,Lightning Charging Cable,1,14.95,11/26/19 14:45,"496 4th St, Dallas, TX 75001" -293032,Apple Airpods Headphones,1,150,11/23/19 16:43,"678 Meadow St, Austin, TX 73301" -293033,USB-C Charging Cable,1,11.95,11/28/19 07:41,"133 North St, New York City, NY 10001" -293034,USB-C Charging Cable,1,11.95,11/06/19 20:21,"869 Adams St, Boston, MA 02215" -293035,Bose SoundSport Headphones,1,99.99,11/20/19 15:15,"643 Sunset St, San Francisco, CA 94016" -293036,Apple Airpods Headphones,1,150,11/26/19 06:10,"986 Center St, San Francisco, CA 94016" -293037,Lightning Charging Cable,1,14.95,11/01/19 12:19,"587 Spruce St, New York City, NY 10001" -293038,iPhone,1,700,11/02/19 08:57,"425 Jackson St, Portland, OR 97035" -293039,Wired Headphones,1,11.99,11/08/19 18:49,"930 Adams St, New York City, NY 10001" -293040,AAA Batteries (4-pack),7,2.99,11/08/19 05:52,"531 Maple St, New York City, NY 10001" -293041,Wired Headphones,2,11.99,11/29/19 21:21,"42 Forest St, Los Angeles, CA 90001" -293042,iPhone,1,700,11/01/19 09:57,"395 Pine St, San Francisco, CA 94016" -293043,Apple Airpods Headphones,1,150,11/21/19 10:29,"594 10th St, Portland, OR 97035" -293044,AAA Batteries (4-pack),1,2.99,11/11/19 17:05,"51 13th St, Portland, OR 97035" -293045,USB-C Charging Cable,1,11.95,11/24/19 16:43,"181 Forest St, Los Angeles, CA 90001" -293046,Wired Headphones,1,11.99,11/04/19 19:31,"955 6th St, New York City, NY 10001" -293047,Apple Airpods Headphones,1,150,11/19/19 16:23,"619 North St, Seattle, WA 98101" -293048,ThinkPad Laptop,1,999.99,11/11/19 20:56,"528 8th St, Boston, MA 02215" -293049,20in Monitor,1,109.99,11/01/19 14:13,"373 Lincoln St, Boston, MA 02215" -293050,iPhone,1,700,11/24/19 16:04,"511 Cherry St, Boston, MA 02215" -293051,ThinkPad Laptop,1,999.99,11/14/19 08:32,"306 4th St, Seattle, WA 98101" -293052,AAA Batteries (4-pack),4,2.99,11/11/19 13:42,"879 Willow St, Dallas, TX 75001" -293053,Lightning Charging Cable,1,14.95,11/30/19 01:29,"650 Chestnut St, Portland, OR 97035" -293054,Lightning Charging Cable,1,14.95,11/27/19 21:59,"153 Highland St, San Francisco, CA 94016" -293055,AAA Batteries (4-pack),1,2.99,11/05/19 17:01,"97 Maple St, Los Angeles, CA 90001" -293056,Apple Airpods Headphones,1,150,11/19/19 19:21,"665 11th St, Austin, TX 73301" -293057,Apple Airpods Headphones,1,150,11/21/19 15:52,"698 Elm St, Seattle, WA 98101" -293058,Bose SoundSport Headphones,1,99.99,11/21/19 20:44,"719 Meadow St, San Francisco, CA 94016" -293059,iPhone,1,700,11/05/19 18:36,"968 Wilson St, New York City, NY 10001" -293060,Bose SoundSport Headphones,1,99.99,11/30/19 11:58,"939 13th St, Los Angeles, CA 90001" -293061,iPhone,1,700,11/01/19 15:25,"93 Highland St, Los Angeles, CA 90001" -293061,Wired Headphones,1,11.99,11/01/19 15:25,"93 Highland St, Los Angeles, CA 90001" -293062,Wired Headphones,1,11.99,11/03/19 12:55,"79 5th St, Boston, MA 02215" -293063,AA Batteries (4-pack),1,3.84,11/21/19 23:38,"877 Pine St, San Francisco, CA 94016" -293064,Macbook Pro Laptop,1,1700,11/11/19 20:04,"209 Spruce St, New York City, NY 10001" -293065,AAA Batteries (4-pack),1,2.99,11/19/19 13:10,"909 Hill St, Atlanta, GA 30301" -293066,Lightning Charging Cable,1,14.95,11/06/19 10:11,"789 6th St, San Francisco, CA 94016" -293067,Lightning Charging Cable,1,14.95,11/25/19 16:56,"715 9th St, Austin, TX 73301" -293068,USB-C Charging Cable,1,11.95,11/21/19 15:12,"964 Lincoln St, San Francisco, CA 94016" -293069,27in 4K Gaming Monitor,1,389.99,11/01/19 20:11,"882 12th St, San Francisco, CA 94016" -293070,34in Ultrawide Monitor,1,379.99,11/28/19 19:50,"127 4th St, Atlanta, GA 30301" -293071,AAA Batteries (4-pack),2,2.99,11/16/19 17:11,"923 Cherry St, Boston, MA 02215" -293072,20in Monitor,1,109.99,11/17/19 05:13,"613 North St, Seattle, WA 98101" -293073,Apple Airpods Headphones,1,150,11/30/19 04:14,"565 1st St, Atlanta, GA 30301" -293074,Lightning Charging Cable,1,14.95,11/19/19 14:35,"997 12th St, San Francisco, CA 94016" -293075,iPhone,1,700,11/30/19 05:29,"775 Washington St, Los Angeles, CA 90001" -293076,AAA Batteries (4-pack),2,2.99,11/22/19 11:29,"295 1st St, Dallas, TX 75001" -293077,AAA Batteries (4-pack),1,2.99,11/10/19 14:55,"552 12th St, Los Angeles, CA 90001" -293078,AAA Batteries (4-pack),1,2.99,11/29/19 08:19,"828 Washington St, Boston, MA 02215" -293079,AA Batteries (4-pack),2,3.84,11/27/19 22:01,"378 12th St, New York City, NY 10001" -293079,AAA Batteries (4-pack),1,2.99,11/27/19 22:01,"378 12th St, New York City, NY 10001" -293080,Bose SoundSport Headphones,1,99.99,11/10/19 10:29,"972 Willow St, San Francisco, CA 94016" -293081,Lightning Charging Cable,1,14.95,11/01/19 21:12,"150 10th St, San Francisco, CA 94016" -293082,Apple Airpods Headphones,1,150,11/13/19 16:44,"215 Chestnut St, Dallas, TX 75001" -293083,Lightning Charging Cable,1,14.95,11/11/19 09:36,"961 Jackson St, Atlanta, GA 30301" -293084,Bose SoundSport Headphones,1,99.99,11/05/19 18:03,"318 Adams St, New York City, NY 10001" -293085,AAA Batteries (4-pack),2,2.99,11/29/19 22:21,"607 4th St, New York City, NY 10001" -293086,Apple Airpods Headphones,1,150,11/30/19 18:14,"503 Lakeview St, San Francisco, CA 94016" -293087,USB-C Charging Cable,1,11.95,11/07/19 10:34,"277 Walnut St, Los Angeles, CA 90001" -293088,Bose SoundSport Headphones,1,99.99,11/18/19 17:12,"680 5th St, Atlanta, GA 30301" -293089,AA Batteries (4-pack),2,3.84,11/23/19 17:40,"939 Walnut St, San Francisco, CA 94016" -293090,Apple Airpods Headphones,1,150,11/17/19 06:26,"369 Madison St, Boston, MA 02215" -293091,AAA Batteries (4-pack),1,2.99,11/07/19 23:41,"528 Chestnut St, Los Angeles, CA 90001" -293092,USB-C Charging Cable,1,11.95,11/05/19 17:06,"110 Center St, San Francisco, CA 94016" -293093,AAA Batteries (4-pack),1,2.99,11/26/19 18:11,"823 9th St, Austin, TX 73301" -293094,Wired Headphones,1,11.99,11/06/19 09:59,"368 Pine St, New York City, NY 10001" -293095,Wired Headphones,1,11.99,11/18/19 00:11,"671 Lake St, New York City, NY 10001" -293096,AA Batteries (4-pack),1,3.84,11/22/19 12:06,"57 4th St, New York City, NY 10001" -293097,34in Ultrawide Monitor,1,379.99,11/08/19 12:11,"196 Main St, San Francisco, CA 94016" -293098,Apple Airpods Headphones,1,150,11/30/19 21:03,"832 Walnut St, San Francisco, CA 94016" -293099,Apple Airpods Headphones,1,150,11/03/19 22:30,"935 Forest St, New York City, NY 10001" -293100,Wired Headphones,1,11.99,11/09/19 11:11,"55 Adams St, San Francisco, CA 94016" -293101,Apple Airpods Headphones,1,150,11/28/19 19:40,"796 10th St, Seattle, WA 98101" -293102,27in FHD Monitor,1,149.99,11/17/19 09:20,"235 8th St, Boston, MA 02215" -293103,AA Batteries (4-pack),1,3.84,11/12/19 12:04,"764 Chestnut St, Boston, MA 02215" -293104,AA Batteries (4-pack),1,3.84,11/05/19 12:37,"820 West St, Los Angeles, CA 90001" -293105,Bose SoundSport Headphones,1,99.99,11/08/19 20:10,"746 Main St, Atlanta, GA 30301" -293106,Wired Headphones,1,11.99,11/30/19 21:14,"135 Elm St, San Francisco, CA 94016" -293107,27in FHD Monitor,1,149.99,11/06/19 15:15,"230 11th St, Los Angeles, CA 90001" -293108,iPhone,1,700,11/22/19 11:01,"216 Meadow St, Dallas, TX 75001" -293108,Lightning Charging Cable,1,14.95,11/22/19 11:01,"216 Meadow St, Dallas, TX 75001" -293109,Bose SoundSport Headphones,1,99.99,11/19/19 19:21,"223 Center St, New York City, NY 10001" -293110,27in 4K Gaming Monitor,1,389.99,11/09/19 17:31,"746 Washington St, Seattle, WA 98101" -293111,Wired Headphones,1,11.99,11/01/19 09:32,"839 13th St, Portland, OR 97035" -293112,34in Ultrawide Monitor,1,379.99,11/11/19 18:29,"92 Lakeview St, Seattle, WA 98101" -293113,Wired Headphones,1,11.99,11/20/19 12:09,"286 13th St, San Francisco, CA 94016" -293114,USB-C Charging Cable,1,11.95,11/29/19 14:35,"145 8th St, Austin, TX 73301" -293114,USB-C Charging Cable,1,11.95,11/29/19 14:35,"145 8th St, Austin, TX 73301" -293115,AA Batteries (4-pack),1,3.84,11/13/19 13:05,"257 10th St, Seattle, WA 98101" -293116,Lightning Charging Cable,2,14.95,11/05/19 20:51,"966 9th St, Dallas, TX 75001" -293117,AA Batteries (4-pack),1,3.84,11/25/19 17:23,"187 Main St, Austin, TX 73301" -293118,AAA Batteries (4-pack),2,2.99,11/05/19 21:06,"859 Spruce St, San Francisco, CA 94016" -293119,AAA Batteries (4-pack),4,2.99,11/19/19 14:55,"404 River St, San Francisco, CA 94016" -293120,Bose SoundSport Headphones,1,99.99,11/10/19 18:59,"378 14th St, Atlanta, GA 30301" -293121,iPhone,1,700,11/16/19 18:44,"746 5th St, New York City, NY 10001" -293121,Lightning Charging Cable,1,14.95,11/16/19 18:44,"746 5th St, New York City, NY 10001" -293122,Wired Headphones,1,11.99,11/27/19 18:19,"794 Pine St, New York City, NY 10001" -293123,Apple Airpods Headphones,1,150,11/11/19 14:11,"311 8th St, Los Angeles, CA 90001" -293124,AAA Batteries (4-pack),1,2.99,11/23/19 15:31,"410 Meadow St, Dallas, TX 75001" -293125,27in FHD Monitor,1,149.99,11/15/19 17:31,"559 Dogwood St, San Francisco, CA 94016" -293126,Bose SoundSport Headphones,1,99.99,11/01/19 22:43,"7 6th St, Atlanta, GA 30301" -293127,ThinkPad Laptop,1,999.99,11/20/19 18:06,"730 Johnson St, Atlanta, GA 30301" -293128,AA Batteries (4-pack),1,3.84,11/21/19 15:00,"112 Pine St, Los Angeles, CA 90001" -293129,ThinkPad Laptop,1,999.99,11/23/19 11:43,"242 Center St, Los Angeles, CA 90001" -293130,ThinkPad Laptop,1,999.99,11/21/19 17:33,"483 Maple St, Portland, OR 97035" -293131,iPhone,1,700,11/25/19 00:42,"242 1st St, San Francisco, CA 94016" -293131,Apple Airpods Headphones,1,150,11/25/19 00:42,"242 1st St, San Francisco, CA 94016" -293132,ThinkPad Laptop,1,999.99,11/25/19 23:07,"908 Washington St, San Francisco, CA 94016" -293133,AA Batteries (4-pack),1,3.84,11/30/19 06:13,"155 Cedar St, New York City, NY 10001" -293134,AA Batteries (4-pack),2,3.84,11/21/19 11:10,"678 7th St, Los Angeles, CA 90001" -293135,Macbook Pro Laptop,1,1700,11/01/19 17:01,"278 Hill St, Boston, MA 02215" -293136,Lightning Charging Cable,2,14.95,11/06/19 00:19,"362 West St, Boston, MA 02215" -293137,27in FHD Monitor,1,149.99,11/23/19 21:27,"498 Highland St, Atlanta, GA 30301" -293138,Apple Airpods Headphones,1,150,11/22/19 17:01,"834 Washington St, Portland, OR 97035" -293139,Lightning Charging Cable,1,14.95,11/22/19 20:52,"489 Park St, Atlanta, GA 30301" -293140,Lightning Charging Cable,1,14.95,11/12/19 15:13,"114 Chestnut St, Los Angeles, CA 90001" -293141,Lightning Charging Cable,1,14.95,11/18/19 22:16,"789 Dogwood St, Dallas, TX 75001" -293142,USB-C Charging Cable,1,11.95,11/23/19 19:47,"46 South St, Atlanta, GA 30301" -293143,AA Batteries (4-pack),2,3.84,11/10/19 18:23,"607 Center St, New York City, NY 10001" -293144,Wired Headphones,2,11.99,11/11/19 15:10,"356 9th St, New York City, NY 10001" -293145,USB-C Charging Cable,1,11.95,11/25/19 19:09,"346 Lincoln St, San Francisco, CA 94016" -293146,Lightning Charging Cable,1,14.95,11/21/19 23:06,"3 Center St, New York City, NY 10001" -293147,Apple Airpods Headphones,1,150,11/12/19 18:02,"40 Cedar St, Atlanta, GA 30301" -293148,AA Batteries (4-pack),1,3.84,11/04/19 20:36,"923 7th St, Los Angeles, CA 90001" -293149,Apple Airpods Headphones,1,150,11/08/19 12:57,"862 12th St, San Francisco, CA 94016" -293150,USB-C Charging Cable,1,11.95,11/03/19 17:08,"254 8th St, Los Angeles, CA 90001" -293151,Apple Airpods Headphones,1,150,11/15/19 01:53,"383 Wilson St, New York City, NY 10001" -293152,27in FHD Monitor,1,149.99,11/22/19 17:04,"84 Walnut St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -293153,Apple Airpods Headphones,1,150,11/06/19 13:01,"38 Cedar St, Portland, OR 97035" -293154,Wired Headphones,1,11.99,11/02/19 13:01,"544 River St, New York City, NY 10001" -293155,iPhone,1,700,11/11/19 16:33,"857 Main St, Atlanta, GA 30301" -293155,Lightning Charging Cable,1,14.95,11/11/19 16:33,"857 Main St, Atlanta, GA 30301" -293156,Google Phone,1,600,11/06/19 09:47,"319 Meadow St, Portland, OR 97035" -293157,Bose SoundSport Headphones,1,99.99,11/15/19 10:59,"150 Jefferson St, Boston, MA 02215" -293158,USB-C Charging Cable,1,11.95,11/29/19 20:32,"402 Johnson St, Los Angeles, CA 90001" -293159,Macbook Pro Laptop,1,1700,11/09/19 14:32,"403 North St, Los Angeles, CA 90001" -293160,AAA Batteries (4-pack),4,2.99,11/01/19 10:10,"620 Wilson St, Seattle, WA 98101" -293160,iPhone,1,700,11/01/19 10:10,"620 Wilson St, Seattle, WA 98101" -293161,USB-C Charging Cable,1,11.95,11/28/19 16:13,"985 Sunset St, San Francisco, CA 94016" -293162,AA Batteries (4-pack),1,3.84,11/30/19 18:32,"642 Center St, San Francisco, CA 94016" -293163,USB-C Charging Cable,1,11.95,11/30/19 17:18,"803 Willow St, San Francisco, CA 94016" -293164,AAA Batteries (4-pack),4,2.99,11/04/19 22:47,"94 Meadow St, San Francisco, CA 94016" -293165,Flatscreen TV,1,300,11/23/19 13:01,"151 Ridge St, New York City, NY 10001" -293166,20in Monitor,1,109.99,11/08/19 15:24,"946 Cedar St, Seattle, WA 98101" -293167,Wired Headphones,1,11.99,11/16/19 14:03,"964 6th St, Los Angeles, CA 90001" -293168,20in Monitor,1,109.99,11/08/19 17:31,"581 Wilson St, New York City, NY 10001" -293169,Apple Airpods Headphones,1,150,11/03/19 11:28,"484 Washington St, Portland, OR 97035" -293170,AAA Batteries (4-pack),3,2.99,11/23/19 23:39,"54 Chestnut St, Atlanta, GA 30301" -293171,Bose SoundSport Headphones,1,99.99,11/16/19 21:10,"526 West St, Dallas, TX 75001" -293172,ThinkPad Laptop,1,999.99,11/12/19 23:07,"463 10th St, Atlanta, GA 30301" -293173,27in 4K Gaming Monitor,1,389.99,11/19/19 11:18,"283 Highland St, Atlanta, GA 30301" -293174,USB-C Charging Cable,1,11.95,11/03/19 23:02,"767 Maple St, Los Angeles, CA 90001" -293175,AA Batteries (4-pack),2,3.84,11/07/19 13:18,"411 11th St, Seattle, WA 98101" -293176,Lightning Charging Cable,1,14.95,11/27/19 07:13,"110 8th St, San Francisco, CA 94016" -293177,AA Batteries (4-pack),1,3.84,11/26/19 12:38,"970 Hickory St, New York City, NY 10001" -293178,Lightning Charging Cable,1,14.95,11/25/19 08:36,"274 Hickory St, Seattle, WA 98101" -293179,34in Ultrawide Monitor,1,379.99,11/12/19 17:19,"871 West St, Boston, MA 02215" -293180,iPhone,1,700,11/25/19 13:27,"298 6th St, Austin, TX 73301" -293181,34in Ultrawide Monitor,1,379.99,11/11/19 06:27,"465 Adams St, Seattle, WA 98101" -293182,Apple Airpods Headphones,1,150,11/27/19 16:14,"182 Center St, Austin, TX 73301" -293183,34in Ultrawide Monitor,1,379.99,11/06/19 05:33,"504 1st St, Atlanta, GA 30301" -293184,Flatscreen TV,1,300,11/09/19 19:01,"556 North St, Dallas, TX 75001" -293185,AA Batteries (4-pack),1,3.84,11/04/19 10:04,"806 Lake St, San Francisco, CA 94016" -293186,Bose SoundSport Headphones,1,99.99,11/01/19 13:18,"340 Johnson St, New York City, NY 10001" -293187,27in FHD Monitor,1,149.99,11/19/19 21:21,"418 6th St, Atlanta, GA 30301" -293188,Google Phone,1,600,11/19/19 14:37,"992 Elm St, New York City, NY 10001" -293189,AA Batteries (4-pack),1,3.84,11/18/19 18:04,"465 Highland St, San Francisco, CA 94016" -293190,USB-C Charging Cable,1,11.95,11/28/19 20:39,"621 Ridge St, Boston, MA 02215" -293191,AA Batteries (4-pack),1,3.84,11/10/19 21:20,"428 1st St, Seattle, WA 98101" -293192,AA Batteries (4-pack),1,3.84,11/01/19 10:00,"351 Elm St, Dallas, TX 75001" -293193,iPhone,1,700,11/13/19 18:31,"906 Willow St, San Francisco, CA 94016" -293194,Lightning Charging Cable,1,14.95,11/26/19 10:33,"167 Park St, Boston, MA 02215" -293195,Apple Airpods Headphones,1,150,11/13/19 23:34,"492 7th St, Los Angeles, CA 90001" -293196,Bose SoundSport Headphones,1,99.99,11/15/19 21:06,"994 10th St, New York City, NY 10001" -293197,Bose SoundSport Headphones,1,99.99,11/29/19 16:10,"567 11th St, Portland, OR 97035" -293198,USB-C Charging Cable,1,11.95,11/07/19 20:41,"972 Elm St, Los Angeles, CA 90001" -293199,Lightning Charging Cable,2,14.95,11/11/19 08:42,"387 10th St, San Francisco, CA 94016" -293200,Apple Airpods Headphones,1,150,11/05/19 18:42,"998 Jackson St, San Francisco, CA 94016" -293201,USB-C Charging Cable,1,11.95,11/12/19 20:36,"261 West St, Dallas, TX 75001" -293201,27in 4K Gaming Monitor,1,389.99,11/12/19 20:36,"261 West St, Dallas, TX 75001" -293202,Google Phone,1,600,11/15/19 13:23,"23 Main St, Atlanta, GA 30301" -293203,Wired Headphones,1,11.99,11/15/19 13:09,"907 14th St, Boston, MA 02215" -293204,USB-C Charging Cable,1,11.95,11/15/19 15:08,"69 Maple St, Seattle, WA 98101" -293205,AA Batteries (4-pack),1,3.84,11/16/19 23:04,"722 Sunset St, San Francisco, CA 94016" -293206,Lightning Charging Cable,1,14.95,11/29/19 08:53,"748 Forest St, Seattle, WA 98101" -293207,Lightning Charging Cable,1,14.95,11/08/19 15:37,"508 11th St, Dallas, TX 75001" -293208,Apple Airpods Headphones,1,150,11/14/19 10:56,"493 Lincoln St, San Francisco, CA 94016" -293209,AA Batteries (4-pack),1,3.84,11/24/19 19:01,"856 Forest St, New York City, NY 10001" -293210,Bose SoundSport Headphones,1,99.99,11/05/19 10:34,"790 1st St, San Francisco, CA 94016" -293211,AAA Batteries (4-pack),1,2.99,11/30/19 10:16,"739 Dogwood St, Portland, OR 97035" -293212,20in Monitor,1,109.99,11/23/19 15:15,"141 Center St, New York City, NY 10001" -293213,iPhone,1,700,11/18/19 02:31,"332 Main St, Los Angeles, CA 90001" -293214,AA Batteries (4-pack),1,3.84,11/19/19 16:00,"453 River St, Portland, OR 97035" -293215,Wired Headphones,1,11.99,11/01/19 22:42,"294 Cedar St, Los Angeles, CA 90001" -293216,Apple Airpods Headphones,1,150,11/10/19 15:03,"459 Sunset St, San Francisco, CA 94016" -293217,Lightning Charging Cable,1,14.95,11/07/19 22:58,"330 11th St, San Francisco, CA 94016" -293218,AAA Batteries (4-pack),1,2.99,11/20/19 11:06,"184 Pine St, Los Angeles, CA 90001" -293219,USB-C Charging Cable,1,11.95,11/24/19 21:03,"10 Ridge St, Dallas, TX 75001" -293220,USB-C Charging Cable,1,11.95,11/07/19 11:56,"866 Church St, San Francisco, CA 94016" -293221,AAA Batteries (4-pack),1,2.99,11/24/19 09:32,"562 13th St, New York City, NY 10001" -293222,Wired Headphones,2,11.99,11/07/19 15:16,"670 Wilson St, Seattle, WA 98101" -293223,Apple Airpods Headphones,1,150,11/05/19 23:47,"484 9th St, Atlanta, GA 30301" -293224,Bose SoundSport Headphones,1,99.99,11/03/19 13:27,"643 Pine St, Seattle, WA 98101" -293225,AA Batteries (4-pack),1,3.84,11/18/19 21:35,"128 Wilson St, Atlanta, GA 30301" -293226,AA Batteries (4-pack),1,3.84,11/05/19 16:59,"592 North St, New York City, NY 10001" -293227,Lightning Charging Cable,1,14.95,11/01/19 14:32,"855 10th St, Atlanta, GA 30301" -293228,27in 4K Gaming Monitor,1,389.99,11/14/19 09:10,"413 West St, Los Angeles, CA 90001" -293229,Wired Headphones,1,11.99,11/09/19 19:58,"890 Spruce St, Boston, MA 02215" -293230,AA Batteries (4-pack),1,3.84,11/11/19 02:31,"689 Dogwood St, Seattle, WA 98101" -293231,USB-C Charging Cable,1,11.95,11/12/19 05:24,"599 Highland St, Atlanta, GA 30301" -293232,USB-C Charging Cable,1,11.95,11/20/19 17:45,"251 Jefferson St, Atlanta, GA 30301" -293233,Apple Airpods Headphones,1,150,11/30/19 15:48,"439 9th St, Dallas, TX 75001" -293234,Apple Airpods Headphones,1,150,11/18/19 19:03,"236 Center St, San Francisco, CA 94016" -293235,27in FHD Monitor,1,149.99,11/15/19 10:50,"819 13th St, Atlanta, GA 30301" -293236,USB-C Charging Cable,1,11.95,11/14/19 19:34,"976 Sunset St, San Francisco, CA 94016" -293237,AA Batteries (4-pack),2,3.84,11/06/19 10:33,"341 Elm St, Atlanta, GA 30301" -293238,Lightning Charging Cable,2,14.95,11/11/19 15:49,"911 Lakeview St, Los Angeles, CA 90001" -293239,USB-C Charging Cable,1,11.95,11/25/19 11:07,"546 Meadow St, Portland, OR 97035" -293240,AAA Batteries (4-pack),1,2.99,11/28/19 13:35,"193 Hickory St, Los Angeles, CA 90001" -293241,Wired Headphones,1,11.99,11/15/19 18:20,"401 Wilson St, Los Angeles, CA 90001" -293242,Lightning Charging Cable,1,14.95,11/06/19 08:12,"220 Park St, Dallas, TX 75001" -293243,Apple Airpods Headphones,1,150,11/22/19 11:01,"649 11th St, Los Angeles, CA 90001" -293244,AAA Batteries (4-pack),2,2.99,11/23/19 14:23,"504 Wilson St, Los Angeles, CA 90001" -293245,Apple Airpods Headphones,1,150,11/01/19 19:38,"772 7th St, Portland, OR 97035" -293246,USB-C Charging Cable,1,11.95,11/28/19 02:55,"289 7th St, Los Angeles, CA 90001" -293247,27in FHD Monitor,1,149.99,11/18/19 11:19,"817 10th St, Austin, TX 73301" -293248,34in Ultrawide Monitor,1,379.99,11/13/19 15:34,"322 Center St, Los Angeles, CA 90001" -293249,AAA Batteries (4-pack),2,2.99,11/25/19 20:50,"191 Johnson St, New York City, NY 10001" -293250,34in Ultrawide Monitor,1,379.99,11/15/19 23:34,"17 Forest St, Portland, OR 97035" -293250,AA Batteries (4-pack),1,3.84,11/15/19 23:34,"17 Forest St, Portland, OR 97035" -293251,27in 4K Gaming Monitor,1,389.99,11/19/19 12:14,"319 River St, New York City, NY 10001" -293252,iPhone,1,700,11/13/19 09:37,"84 Johnson St, Boston, MA 02215" -293253,AAA Batteries (4-pack),3,2.99,11/13/19 13:50,"106 North St, Los Angeles, CA 90001" -293254,Apple Airpods Headphones,1,150,11/01/19 12:07,"762 12th St, San Francisco, CA 94016" -293254,Apple Airpods Headphones,1,150,11/01/19 12:07,"762 12th St, San Francisco, CA 94016" -293255,AA Batteries (4-pack),3,3.84,11/06/19 18:31,"365 9th St, Dallas, TX 75001" -293256,27in 4K Gaming Monitor,1,389.99,11/23/19 12:33,"390 Highland St, Dallas, TX 75001" -293257,AAA Batteries (4-pack),1,2.99,11/19/19 21:24,"242 Dogwood St, Seattle, WA 98101" -293258,AA Batteries (4-pack),1,3.84,11/14/19 09:18,"795 North St, Los Angeles, CA 90001" -293259,USB-C Charging Cable,1,11.95,11/22/19 20:50,"26 Washington St, Los Angeles, CA 90001" -293260,Flatscreen TV,1,300,11/14/19 11:58,"201 13th St, Austin, TX 73301" -293261,AA Batteries (4-pack),1,3.84,11/15/19 14:14,"699 Walnut St, Austin, TX 73301" -293262,Wired Headphones,1,11.99,11/12/19 12:22,"5 9th St, Atlanta, GA 30301" -293263,Google Phone,1,600,11/25/19 16:50,"233 Forest St, New York City, NY 10001" -293264,USB-C Charging Cable,1,11.95,11/20/19 22:52,"995 7th St, Los Angeles, CA 90001" -293265,ThinkPad Laptop,1,999.99,11/18/19 09:10,"824 Madison St, San Francisco, CA 94016" -293266,Apple Airpods Headphones,1,150,11/15/19 21:39,"988 Elm St, San Francisco, CA 94016" -293267,Vareebadd Phone,1,400,11/15/19 10:44,"221 Spruce St, San Francisco, CA 94016" -293268,Lightning Charging Cable,1,14.95,11/12/19 09:18,"641 Cedar St, Seattle, WA 98101" -293269,Lightning Charging Cable,1,14.95,11/26/19 23:07,"374 Lakeview St, New York City, NY 10001" -293270,27in 4K Gaming Monitor,1,389.99,11/04/19 00:09,"449 6th St, San Francisco, CA 94016" -293271,Wired Headphones,1,11.99,11/21/19 11:25,"683 Pine St, San Francisco, CA 94016" -293272,20in Monitor,1,109.99,11/23/19 08:53,"990 Lakeview St, San Francisco, CA 94016" -293273,USB-C Charging Cable,1,11.95,11/25/19 19:36,"509 Main St, San Francisco, CA 94016" -293274,AA Batteries (4-pack),1,3.84,11/08/19 15:42,"47 Adams St, New York City, NY 10001" -293275,34in Ultrawide Monitor,1,379.99,11/02/19 17:56,"628 7th St, New York City, NY 10001" -293276,Lightning Charging Cable,1,14.95,11/06/19 10:55,"811 Park St, Seattle, WA 98101" -293277,USB-C Charging Cable,1,11.95,11/07/19 12:43,"250 Elm St, San Francisco, CA 94016" -293278,20in Monitor,1,109.99,11/11/19 11:36,"882 Park St, Austin, TX 73301" -293279,Apple Airpods Headphones,1,150,11/28/19 09:52,"43 Pine St, San Francisco, CA 94016" -293280,Lightning Charging Cable,1,14.95,11/17/19 07:58,"443 Pine St, Dallas, TX 75001" -293281,AA Batteries (4-pack),1,3.84,11/04/19 08:23,"114 Church St, Los Angeles, CA 90001" -293282,AA Batteries (4-pack),1,3.84,11/18/19 15:09,"443 11th St, Atlanta, GA 30301" -293283,AA Batteries (4-pack),1,3.84,11/09/19 16:12,"752 4th St, San Francisco, CA 94016" -293284,Wired Headphones,1,11.99,11/07/19 20:19,"795 Madison St, San Francisco, CA 94016" -293285,Google Phone,1,600,11/15/19 16:25,"488 Johnson St, Atlanta, GA 30301" -293285,USB-C Charging Cable,1,11.95,11/15/19 16:25,"488 Johnson St, Atlanta, GA 30301" -293286,Wired Headphones,1,11.99,11/25/19 20:13,"192 Pine St, San Francisco, CA 94016" -293287,USB-C Charging Cable,1,11.95,11/09/19 15:16,"171 Adams St, Atlanta, GA 30301" -293288,Wired Headphones,2,11.99,11/26/19 19:34,"759 Spruce St, Los Angeles, CA 90001" -293289,AA Batteries (4-pack),1,3.84,11/19/19 20:59,"795 Maple St, San Francisco, CA 94016" -293290,Apple Airpods Headphones,1,150,11/06/19 10:42,"748 Highland St, San Francisco, CA 94016" -293291,AAA Batteries (4-pack),1,2.99,11/26/19 14:47,"840 Willow St, Los Angeles, CA 90001" -293292,Lightning Charging Cable,1,14.95,11/11/19 13:47,"374 12th St, New York City, NY 10001" -293293,Bose SoundSport Headphones,1,99.99,11/10/19 17:29,"482 Jefferson St, Los Angeles, CA 90001" -293294,20in Monitor,1,109.99,11/12/19 06:01,"499 Dogwood St, Los Angeles, CA 90001" -293295,27in 4K Gaming Monitor,1,389.99,11/28/19 10:54,"444 Highland St, New York City, NY 10001" -293296,AA Batteries (4-pack),1,3.84,11/17/19 09:26,"605 Adams St, San Francisco, CA 94016" -293297,AA Batteries (4-pack),1,3.84,11/25/19 15:36,"691 Willow St, Portland, OR 97035" -293298,LG Dryer,1,600.0,11/02/19 08:46,"68 11th St, Portland, OR 97035" -293299,USB-C Charging Cable,1,11.95,11/16/19 15:53,"876 Adams St, Boston, MA 02215" -293300,AA Batteries (4-pack),1,3.84,11/02/19 11:48,"301 Highland St, Seattle, WA 98101" -293301,Wired Headphones,1,11.99,11/30/19 13:16,"532 14th St, San Francisco, CA 94016" -293302,Lightning Charging Cable,1,14.95,11/08/19 10:18,"357 Highland St, Seattle, WA 98101" -293303,Lightning Charging Cable,1,14.95,11/28/19 16:54,"568 Church St, New York City, NY 10001" -293304,USB-C Charging Cable,1,11.95,11/29/19 07:28,"906 Hickory St, San Francisco, CA 94016" -293305,Flatscreen TV,1,300,11/18/19 11:57,"672 10th St, Los Angeles, CA 90001" -293306,Bose SoundSport Headphones,1,99.99,11/16/19 21:43,"655 11th St, San Francisco, CA 94016" -293307,27in FHD Monitor,2,149.99,11/25/19 03:16,"203 Lincoln St, Los Angeles, CA 90001" -293308,iPhone,1,700,11/01/19 18:14,"980 Madison St, Dallas, TX 75001" -293309,AA Batteries (4-pack),1,3.84,11/23/19 14:41,"8 Lake St, San Francisco, CA 94016" -293310,27in FHD Monitor,1,149.99,11/22/19 17:16,"101 Spruce St, Boston, MA 02215" -293311,Bose SoundSport Headphones,1,99.99,11/14/19 20:19,"803 8th St, Austin, TX 73301" -293312,Lightning Charging Cable,1,14.95,11/15/19 10:37,"485 9th St, San Francisco, CA 94016" -293313,Wired Headphones,1,11.99,11/27/19 14:37,"693 Washington St, Portland, OR 97035" -293314,ThinkPad Laptop,1,999.99,11/09/19 20:00,"379 Adams St, San Francisco, CA 94016" -293315,27in FHD Monitor,1,149.99,11/09/19 10:15,"896 Chestnut St, San Francisco, CA 94016" -293316,Lightning Charging Cable,1,14.95,11/22/19 19:53,"835 Cherry St, New York City, NY 10001" -293317,Apple Airpods Headphones,1,150,11/08/19 11:59,"653 North St, San Francisco, CA 94016" -293318,AA Batteries (4-pack),3,3.84,11/29/19 17:36,"210 Meadow St, Austin, TX 73301" -293318,Wired Headphones,1,11.99,11/29/19 17:36,"210 Meadow St, Austin, TX 73301" -293319,iPhone,1,700,11/26/19 00:18,"840 Madison St, San Francisco, CA 94016" -293320,27in 4K Gaming Monitor,1,389.99,11/02/19 00:30,"330 Elm St, San Francisco, CA 94016" -293321,Apple Airpods Headphones,1,150,11/12/19 12:54,"161 Meadow St, San Francisco, CA 94016" -293322,iPhone,1,700,11/27/19 19:50,"397 Chestnut St, Austin, TX 73301" -293323,Bose SoundSport Headphones,1,99.99,11/30/19 15:17,"921 Center St, San Francisco, CA 94016" -293324,20in Monitor,1,109.99,11/05/19 14:50,"51 Elm St, San Francisco, CA 94016" -293325,Macbook Pro Laptop,1,1700,11/25/19 20:29,"335 Center St, Portland, OR 97035" -293326,AA Batteries (4-pack),1,3.84,11/25/19 01:39,"352 Park St, New York City, NY 10001" -293327,iPhone,1,700,11/05/19 15:46,"697 Jefferson St, Dallas, TX 75001" -293328,USB-C Charging Cable,1,11.95,11/06/19 18:49,"904 Dogwood St, Dallas, TX 75001" -293329,27in FHD Monitor,1,149.99,11/08/19 17:27,"936 2nd St, Boston, MA 02215" -293330,AA Batteries (4-pack),1,3.84,11/13/19 13:57,"797 River St, San Francisco, CA 94016" -293331,Bose SoundSport Headphones,1,99.99,11/03/19 17:44,"198 River St, New York City, NY 10001" -293332,AA Batteries (4-pack),1,3.84,11/02/19 13:08,"69 1st St, Dallas, TX 75001" -293333,Google Phone,1,600,11/06/19 21:17,"229 Sunset St, San Francisco, CA 94016" -293334,Flatscreen TV,1,300,11/29/19 12:36,"470 Park St, Seattle, WA 98101" -293335,LG Dryer,1,600.0,11/03/19 10:27,"532 7th St, Atlanta, GA 30301" -293336,Flatscreen TV,1,300,11/25/19 18:22,"192 Dogwood St, Los Angeles, CA 90001" -293337,USB-C Charging Cable,1,11.95,11/14/19 23:11,"880 Jefferson St, Seattle, WA 98101" -293338,Bose SoundSport Headphones,1,99.99,11/20/19 15:46,"969 Lakeview St, Portland, OR 97035" -293339,ThinkPad Laptop,1,999.99,11/16/19 22:38,"101 Lake St, Dallas, TX 75001" -293340,AAA Batteries (4-pack),2,2.99,11/12/19 17:22,"965 7th St, Los Angeles, CA 90001" -293340,Google Phone,1,600,11/12/19 17:22,"965 7th St, Los Angeles, CA 90001" -293341,AA Batteries (4-pack),1,3.84,11/29/19 19:11,"416 8th St, San Francisco, CA 94016" -293342,Apple Airpods Headphones,1,150,11/05/19 12:15,"42 Main St, Portland, ME 04101" -293343,AA Batteries (4-pack),1,3.84,11/04/19 04:31,"355 Meadow St, Los Angeles, CA 90001" -293344,Wired Headphones,1,11.99,11/13/19 21:29,"766 North St, Dallas, TX 75001" -293345,Lightning Charging Cable,1,14.95,11/10/19 12:12,"133 Meadow St, Dallas, TX 75001" -293346,Bose SoundSport Headphones,1,99.99,11/06/19 16:31,"474 14th St, Portland, OR 97035" -293347,Bose SoundSport Headphones,1,99.99,11/19/19 00:04,"964 Cherry St, Los Angeles, CA 90001" -293348,AA Batteries (4-pack),1,3.84,11/25/19 16:21,"632 7th St, New York City, NY 10001" -293349,Wired Headphones,1,11.99,11/09/19 23:19,"584 Jackson St, Atlanta, GA 30301" -293350,Apple Airpods Headphones,1,150,11/11/19 20:22,"898 River St, Los Angeles, CA 90001" -293351,USB-C Charging Cable,1,11.95,11/03/19 16:12,"657 Jefferson St, Los Angeles, CA 90001" -293352,USB-C Charging Cable,1,11.95,11/18/19 18:53,"66 Dogwood St, Portland, OR 97035" -293353,Google Phone,1,600,11/29/19 14:53,"733 Highland St, Portland, OR 97035" -293354,USB-C Charging Cable,1,11.95,11/20/19 17:49,"64 Adams St, Portland, OR 97035" -293355,Google Phone,1,600,11/10/19 15:02,"856 Hill St, San Francisco, CA 94016" -293356,USB-C Charging Cable,1,11.95,11/13/19 00:59,"394 Dogwood St, Dallas, TX 75001" -293356,USB-C Charging Cable,1,11.95,11/13/19 00:59,"394 Dogwood St, Dallas, TX 75001" -293357,Apple Airpods Headphones,1,150,11/25/19 09:09,"102 River St, Atlanta, GA 30301" -293358,Lightning Charging Cable,1,14.95,11/30/19 13:29,"780 Cherry St, Boston, MA 02215" -293359,Vareebadd Phone,1,400,11/28/19 12:53,"848 Jefferson St, Seattle, WA 98101" -293360,USB-C Charging Cable,1,11.95,11/21/19 15:55,"396 10th St, Los Angeles, CA 90001" -293361,Lightning Charging Cable,1,14.95,11/04/19 11:28,"905 Willow St, San Francisco, CA 94016" -293361,27in 4K Gaming Monitor,1,389.99,11/04/19 11:28,"905 Willow St, San Francisco, CA 94016" -293362,34in Ultrawide Monitor,1,379.99,11/25/19 12:08,"587 Lakeview St, Boston, MA 02215" -293363,Vareebadd Phone,1,400,11/22/19 18:20,"658 Hickory St, Dallas, TX 75001" -293364,Flatscreen TV,1,300,11/25/19 10:29,"269 Willow St, San Francisco, CA 94016" -293365,AAA Batteries (4-pack),1,2.99,11/13/19 21:23,"959 Elm St, Portland, ME 04101" -293366,Flatscreen TV,1,300,11/11/19 09:07,"704 Meadow St, Los Angeles, CA 90001" -293367,AAA Batteries (4-pack),1,2.99,11/21/19 20:12,"708 Main St, San Francisco, CA 94016" -293368,Bose SoundSport Headphones,1,99.99,11/23/19 20:18,"197 Highland St, Boston, MA 02215" -293369,Lightning Charging Cable,1,14.95,11/03/19 22:01,"163 Center St, Portland, OR 97035" -293370,Apple Airpods Headphones,1,150,11/03/19 16:39,"667 Park St, San Francisco, CA 94016" -293371,AA Batteries (4-pack),2,3.84,11/14/19 11:56,"862 13th St, Dallas, TX 75001" -293372,AAA Batteries (4-pack),1,2.99,11/29/19 07:56,"355 North St, San Francisco, CA 94016" -293373,LG Dryer,1,600.0,11/18/19 21:33,"585 South St, Los Angeles, CA 90001" -293374,Flatscreen TV,1,300,11/13/19 12:12,"409 Wilson St, Austin, TX 73301" -293375,Flatscreen TV,1,300,11/22/19 16:18,"738 8th St, San Francisco, CA 94016" -293376,Wired Headphones,1,11.99,11/27/19 14:57,"372 Center St, Austin, TX 73301" -293377,Bose SoundSport Headphones,1,99.99,11/29/19 20:15,"733 Church St, Seattle, WA 98101" -293378,Apple Airpods Headphones,1,150,11/20/19 01:06,"153 1st St, Atlanta, GA 30301" -293379,20in Monitor,1,109.99,11/07/19 16:00,"836 Adams St, Atlanta, GA 30301" -293380,Lightning Charging Cable,1,14.95,11/10/19 12:50,"800 Washington St, Portland, OR 97035" -293381,iPhone,1,700,11/29/19 03:17,"701 Chestnut St, San Francisco, CA 94016" -293382,AAA Batteries (4-pack),1,2.99,11/07/19 19:43,"839 Meadow St, Atlanta, GA 30301" -293383,USB-C Charging Cable,2,11.95,11/03/19 11:28,"780 River St, San Francisco, CA 94016" -293384,27in 4K Gaming Monitor,1,389.99,11/04/19 13:32,"197 7th St, Los Angeles, CA 90001" -293385,Flatscreen TV,1,300,11/19/19 00:05,"819 4th St, New York City, NY 10001" -293386,Macbook Pro Laptop,1,1700,11/30/19 07:14,"653 Washington St, Boston, MA 02215" -293387,AAA Batteries (4-pack),1,2.99,11/12/19 13:32,"738 10th St, New York City, NY 10001" -293388,Wired Headphones,1,11.99,11/25/19 12:02,"658 Maple St, San Francisco, CA 94016" -293389,AA Batteries (4-pack),1,3.84,11/26/19 03:05,"450 Meadow St, San Francisco, CA 94016" -293390,USB-C Charging Cable,1,11.95,11/26/19 15:16,"232 Dogwood St, San Francisco, CA 94016" -293391,Lightning Charging Cable,1,14.95,11/13/19 09:58,"911 Cedar St, San Francisco, CA 94016" -293392,Lightning Charging Cable,1,14.95,11/30/19 12:08,"93 Hickory St, Portland, OR 97035" -293393,AA Batteries (4-pack),2,3.84,11/03/19 21:01,"38 Cedar St, San Francisco, CA 94016" -293394,LG Dryer,1,600.0,11/24/19 20:29,"770 Elm St, Portland, OR 97035" -293395,AA Batteries (4-pack),1,3.84,11/10/19 23:29,"991 Sunset St, New York City, NY 10001" -293396,27in 4K Gaming Monitor,1,389.99,11/27/19 00:31,"946 Sunset St, Boston, MA 02215" -293397,Bose SoundSport Headphones,1,99.99,11/12/19 12:38,"526 Forest St, Portland, OR 97035" -293398,AA Batteries (4-pack),1,3.84,11/05/19 13:10,"538 Adams St, San Francisco, CA 94016" -293399,Flatscreen TV,1,300,11/28/19 21:33,"233 Jefferson St, New York City, NY 10001" -293400,USB-C Charging Cable,1,11.95,11/23/19 21:15,"830 Cedar St, San Francisco, CA 94016" -293401,AAA Batteries (4-pack),1,2.99,11/09/19 12:20,"740 Johnson St, San Francisco, CA 94016" -293402,AAA Batteries (4-pack),1,2.99,11/07/19 20:41,"149 Willow St, San Francisco, CA 94016" -293403,Apple Airpods Headphones,1,150,11/02/19 10:37,"873 Pine St, Boston, MA 02215" -,,,,, -293404,AAA Batteries (4-pack),1,2.99,11/05/19 22:21,"269 Maple St, Portland, OR 97035" -293405,Flatscreen TV,1,300,11/19/19 20:31,"257 Main St, Dallas, TX 75001" -293406,AA Batteries (4-pack),2,3.84,11/12/19 14:48,"244 2nd St, Los Angeles, CA 90001" -293407,Bose SoundSport Headphones,1,99.99,11/13/19 15:34,"896 Elm St, Los Angeles, CA 90001" -293408,Apple Airpods Headphones,1,150,11/02/19 18:43,"768 Cedar St, Portland, OR 97035" -293409,27in FHD Monitor,1,149.99,11/21/19 13:25,"370 Cherry St, Los Angeles, CA 90001" -293410,Google Phone,1,600,11/08/19 15:47,"346 11th St, Seattle, WA 98101" -293411,Lightning Charging Cable,1,14.95,11/04/19 19:48,"13 Washington St, Portland, OR 97035" -293412,27in 4K Gaming Monitor,1,389.99,11/28/19 19:19,"406 11th St, Seattle, WA 98101" -293413,USB-C Charging Cable,2,11.95,11/07/19 21:25,"693 Hill St, Boston, MA 02215" -293414,Flatscreen TV,1,300,11/07/19 20:46,"428 Madison St, Austin, TX 73301" -293415,USB-C Charging Cable,2,11.95,11/01/19 10:12,"466 8th St, Boston, MA 02215" -293416,Apple Airpods Headphones,1,150,11/29/19 15:38,"850 Park St, Seattle, WA 98101" -293417,USB-C Charging Cable,1,11.95,11/18/19 11:22,"558 South St, Portland, OR 97035" -293418,Lightning Charging Cable,1,14.95,11/25/19 12:54,"276 Walnut St, Dallas, TX 75001" -293419,Bose SoundSport Headphones,2,99.99,11/12/19 20:43,"355 Hickory St, San Francisco, CA 94016" -293420,USB-C Charging Cable,1,11.95,11/13/19 15:45,"903 Park St, Boston, MA 02215" -293421,AAA Batteries (4-pack),2,2.99,11/27/19 14:14,"851 7th St, Atlanta, GA 30301" -293422,Wired Headphones,1,11.99,11/12/19 18:52,"935 Dogwood St, Atlanta, GA 30301" -293423,20in Monitor,1,109.99,11/06/19 11:09,"782 8th St, Los Angeles, CA 90001" -293424,USB-C Charging Cable,2,11.95,11/25/19 19:01,"351 Dogwood St, New York City, NY 10001" -293425,AA Batteries (4-pack),1,3.84,11/13/19 04:30,"810 Spruce St, New York City, NY 10001" -293426,AAA Batteries (4-pack),1,2.99,11/02/19 10:23,"218 Cherry St, Los Angeles, CA 90001" -293427,USB-C Charging Cable,1,11.95,11/10/19 12:16,"929 7th St, Dallas, TX 75001" -293428,Lightning Charging Cable,1,14.95,11/03/19 20:26,"94 Pine St, San Francisco, CA 94016" -293429,27in FHD Monitor,1,149.99,11/01/19 21:04,"225 Willow St, Portland, OR 97035" -293430,Lightning Charging Cable,1,14.95,11/14/19 18:44,"525 11th St, New York City, NY 10001" -293431,Lightning Charging Cable,1,14.95,11/24/19 20:28,"83 Hill St, Seattle, WA 98101" -293432,Wired Headphones,1,11.99,11/13/19 16:06,"424 Forest St, New York City, NY 10001" -293433,Bose SoundSport Headphones,1,99.99,11/25/19 18:30,"500 Jackson St, Portland, OR 97035" -293434,Bose SoundSport Headphones,1,99.99,11/11/19 16:58,"507 Washington St, Seattle, WA 98101" -293435,34in Ultrawide Monitor,1,379.99,11/20/19 22:06,"390 Spruce St, Austin, TX 73301" -293436,AAA Batteries (4-pack),1,2.99,11/20/19 19:43,"868 Adams St, San Francisco, CA 94016" -293437,USB-C Charging Cable,1,11.95,11/27/19 12:31,"884 4th St, Portland, OR 97035" -293438,AA Batteries (4-pack),2,3.84,11/22/19 12:50,"881 Johnson St, Boston, MA 02215" -293439,AAA Batteries (4-pack),1,2.99,11/06/19 23:57,"563 Dogwood St, Los Angeles, CA 90001" -293440,Google Phone,1,600,11/18/19 22:23,"235 Hickory St, Boston, MA 02215" -293441,Apple Airpods Headphones,1,150,11/16/19 18:15,"348 Center St, Boston, MA 02215" -293442,AAA Batteries (4-pack),1,2.99,11/25/19 11:51,"503 Cherry St, Los Angeles, CA 90001" -293443,AAA Batteries (4-pack),1,2.99,11/09/19 17:12,"347 Lake St, Los Angeles, CA 90001" -293444,Lightning Charging Cable,1,14.95,11/05/19 07:53,"421 Lake St, Seattle, WA 98101" -293445,Lightning Charging Cable,1,14.95,11/05/19 12:54,"123 9th St, Atlanta, GA 30301" -293445,Bose SoundSport Headphones,1,99.99,11/05/19 12:54,"123 9th St, Atlanta, GA 30301" -293446,34in Ultrawide Monitor,1,379.99,11/20/19 09:08,"705 Main St, Atlanta, GA 30301" -293447,Flatscreen TV,1,300,11/27/19 00:45,"87 Jefferson St, San Francisco, CA 94016" -293448,AAA Batteries (4-pack),3,2.99,11/08/19 11:02,"546 Madison St, Dallas, TX 75001" -293449,27in 4K Gaming Monitor,1,389.99,11/04/19 22:04,"122 Dogwood St, New York City, NY 10001" -293450,USB-C Charging Cable,1,11.95,12/01/19 01:47,"890 9th St, San Francisco, CA 94016" -293451,USB-C Charging Cable,2,11.95,11/07/19 14:56,"403 11th St, San Francisco, CA 94016" -293452,AAA Batteries (4-pack),1,2.99,11/28/19 18:12,"973 River St, Dallas, TX 75001" -293453,20in Monitor,1,109.99,11/15/19 15:49,"771 Main St, San Francisco, CA 94016" -293454,Apple Airpods Headphones,1,150,11/30/19 10:56,"290 Spruce St, New York City, NY 10001" -293455,Wired Headphones,1,11.99,11/21/19 14:45,"210 Dogwood St, Los Angeles, CA 90001" -293456,Wired Headphones,1,11.99,11/21/19 08:36,"353 Spruce St, New York City, NY 10001" -293457,Bose SoundSport Headphones,1,99.99,11/01/19 20:07,"999 Chestnut St, Los Angeles, CA 90001" -293458,20in Monitor,1,109.99,11/11/19 21:06,"154 6th St, New York City, NY 10001" -293459,27in FHD Monitor,1,149.99,11/06/19 18:16,"519 Madison St, New York City, NY 10001" -293460,USB-C Charging Cable,1,11.95,11/13/19 10:39,"333 2nd St, Boston, MA 02215" -293461,AA Batteries (4-pack),3,3.84,11/16/19 19:25,"909 5th St, Atlanta, GA 30301" -293462,AAA Batteries (4-pack),1,2.99,11/24/19 21:45,"36 Cedar St, Seattle, WA 98101" -293463,Wired Headphones,1,11.99,11/03/19 16:00,"948 Lakeview St, Austin, TX 73301" -293464,27in FHD Monitor,1,149.99,11/25/19 14:00,"546 Adams St, Boston, MA 02215" -293465,Lightning Charging Cable,2,14.95,11/02/19 18:40,"507 Meadow St, Los Angeles, CA 90001" -293466,Wired Headphones,1,11.99,11/17/19 16:58,"167 West St, Dallas, TX 75001" -293467,Lightning Charging Cable,1,14.95,11/26/19 20:32,"75 Johnson St, Dallas, TX 75001" -293468,20in Monitor,1,109.99,11/05/19 22:08,"669 Spruce St, San Francisco, CA 94016" -293469,Google Phone,1,600,11/25/19 18:33,"713 Cherry St, Los Angeles, CA 90001" -293469,Wired Headphones,1,11.99,11/25/19 18:33,"713 Cherry St, Los Angeles, CA 90001" -293470,Bose SoundSport Headphones,1,99.99,11/20/19 21:15,"891 South St, Atlanta, GA 30301" -293471,AA Batteries (4-pack),1,3.84,11/03/19 00:31,"137 Lake St, San Francisco, CA 94016" -293472,Bose SoundSport Headphones,1,99.99,11/02/19 20:32,"836 Spruce St, Dallas, TX 75001" -293473,Wired Headphones,1,11.99,11/26/19 10:39,"231 8th St, Los Angeles, CA 90001" -293474,AA Batteries (4-pack),3,3.84,11/28/19 10:14,"660 6th St, Los Angeles, CA 90001" -293475,Apple Airpods Headphones,1,150,11/18/19 15:17,"240 1st St, New York City, NY 10001" -293476,27in 4K Gaming Monitor,1,389.99,11/27/19 18:31,"276 6th St, Seattle, WA 98101" -293477,AA Batteries (4-pack),1,3.84,11/10/19 22:40,"494 Lincoln St, Dallas, TX 75001" -293478,USB-C Charging Cable,1,11.95,11/06/19 14:41,"666 Maple St, Boston, MA 02215" -293479,Lightning Charging Cable,1,14.95,11/16/19 16:48,"197 Elm St, San Francisco, CA 94016" -293480,USB-C Charging Cable,1,11.95,11/24/19 14:27,"14 Park St, San Francisco, CA 94016" -293481,AA Batteries (4-pack),2,3.84,11/10/19 14:12,"86 2nd St, San Francisco, CA 94016" -293482,Lightning Charging Cable,1,14.95,11/26/19 18:37,"660 1st St, Dallas, TX 75001" -293483,Flatscreen TV,1,300,11/11/19 11:46,"700 Dogwood St, San Francisco, CA 94016" -293484,AAA Batteries (4-pack),1,2.99,11/14/19 12:03,"976 7th St, San Francisco, CA 94016" -293485,iPhone,1,700,11/20/19 07:41,"586 Willow St, San Francisco, CA 94016" -293485,Lightning Charging Cable,1,14.95,11/20/19 07:41,"586 Willow St, San Francisco, CA 94016" -293485,Wired Headphones,1,11.99,11/20/19 07:41,"586 Willow St, San Francisco, CA 94016" -293486,AAA Batteries (4-pack),3,2.99,11/14/19 11:28,"803 Hickory St, New York City, NY 10001" -293487,34in Ultrawide Monitor,1,379.99,11/25/19 21:09,"208 Park St, Portland, OR 97035" -293488,AAA Batteries (4-pack),1,2.99,11/04/19 10:58,"439 Walnut St, Portland, OR 97035" -293489,Apple Airpods Headphones,1,150,11/19/19 20:05,"791 Willow St, New York City, NY 10001" -293490,AA Batteries (4-pack),1,3.84,11/06/19 18:56,"476 South St, Boston, MA 02215" -293491,Lightning Charging Cable,2,14.95,11/29/19 15:42,"444 12th St, Seattle, WA 98101" -293492,Bose SoundSport Headphones,1,99.99,11/20/19 23:37,"707 Cedar St, Portland, OR 97035" -293493,34in Ultrawide Monitor,1,379.99,11/19/19 15:50,"582 Chestnut St, Atlanta, GA 30301" -293494,Vareebadd Phone,1,400,11/10/19 20:51,"939 Forest St, Dallas, TX 75001" -293495,USB-C Charging Cable,1,11.95,11/30/19 13:21,"459 Spruce St, San Francisco, CA 94016" -293496,Apple Airpods Headphones,1,150,11/21/19 08:22,"411 Madison St, San Francisco, CA 94016" -293497,AA Batteries (4-pack),1,3.84,11/30/19 09:01,"359 1st St, Los Angeles, CA 90001" -293498,Apple Airpods Headphones,1,150,11/18/19 14:05,"439 Chestnut St, San Francisco, CA 94016" -293499,AA Batteries (4-pack),1,3.84,11/29/19 23:05,"889 Maple St, New York City, NY 10001" -293500,AAA Batteries (4-pack),1,2.99,11/28/19 07:28,"306 5th St, Seattle, WA 98101" -293501,USB-C Charging Cable,1,11.95,11/23/19 19:33,"27 Maple St, Portland, OR 97035" -293502,AA Batteries (4-pack),1,3.84,11/02/19 10:21,"162 Washington St, San Francisco, CA 94016" -293503,27in FHD Monitor,1,149.99,11/11/19 15:39,"942 8th St, San Francisco, CA 94016" -293504,Wired Headphones,1,11.99,11/18/19 17:17,"76 14th St, Portland, OR 97035" -293505,Lightning Charging Cable,1,14.95,11/01/19 17:37,"510 North St, New York City, NY 10001" -293506,AA Batteries (4-pack),2,3.84,11/16/19 12:42,"88 Johnson St, Seattle, WA 98101" -293507,Bose SoundSport Headphones,1,99.99,11/09/19 14:26,"497 Spruce St, Portland, ME 04101" -293508,iPhone,1,700,11/20/19 09:59,"74 Ridge St, Dallas, TX 75001" -293509,Bose SoundSport Headphones,1,99.99,11/05/19 16:43,"517 Cherry St, Boston, MA 02215" -293510,34in Ultrawide Monitor,1,379.99,11/26/19 16:41,"330 7th St, Los Angeles, CA 90001" -293511,AAA Batteries (4-pack),1,2.99,11/21/19 00:43,"572 11th St, Los Angeles, CA 90001" -293512,AAA Batteries (4-pack),2,2.99,11/09/19 16:22,"704 Hickory St, San Francisco, CA 94016" -293513,iPhone,1,700,11/02/19 12:37,"255 Madison St, New York City, NY 10001" -293514,AA Batteries (4-pack),2,3.84,11/13/19 13:49,"797 Adams St, Los Angeles, CA 90001" -293515,Wired Headphones,1,11.99,11/11/19 17:37,"635 Johnson St, Atlanta, GA 30301" -293516,USB-C Charging Cable,1,11.95,11/02/19 12:17,"133 Washington St, New York City, NY 10001" -293517,Lightning Charging Cable,1,14.95,11/15/19 19:10,"144 North St, Portland, OR 97035" -293518,Lightning Charging Cable,1,14.95,11/03/19 19:03,"165 Madison St, Boston, MA 02215" -293519,Bose SoundSport Headphones,1,99.99,11/18/19 21:57,"114 Main St, Los Angeles, CA 90001" -293520,Apple Airpods Headphones,1,150,11/17/19 17:08,"486 Johnson St, New York City, NY 10001" -293520,Google Phone,1,600,11/17/19 17:08,"486 Johnson St, New York City, NY 10001" -293521,Wired Headphones,1,11.99,11/09/19 14:05,"147 Maple St, Los Angeles, CA 90001" -293522,AA Batteries (4-pack),4,3.84,11/01/19 16:03,"577 13th St, San Francisco, CA 94016" -293523,Wired Headphones,1,11.99,11/22/19 13:51,"445 14th St, San Francisco, CA 94016" -293524,Apple Airpods Headphones,1,150,11/26/19 21:52,"347 2nd St, San Francisco, CA 94016" -293525,27in FHD Monitor,1,149.99,11/12/19 19:02,"268 Elm St, New York City, NY 10001" -293526,AAA Batteries (4-pack),1,2.99,11/28/19 14:53,"473 Church St, Boston, MA 02215" -293527,USB-C Charging Cable,1,11.95,11/14/19 10:31,"224 Church St, San Francisco, CA 94016" -293528,Apple Airpods Headphones,1,150,11/30/19 12:44,"994 West St, New York City, NY 10001" -293529,Wired Headphones,1,11.99,11/20/19 19:52,"137 Madison St, Austin, TX 73301" -293530,Apple Airpods Headphones,1,150,11/26/19 20:43,"787 Lake St, San Francisco, CA 94016" -293531,20in Monitor,1,109.99,11/06/19 17:42,"967 Chestnut St, San Francisco, CA 94016" -293532,Bose SoundSport Headphones,1,99.99,11/30/19 16:38,"991 Hickory St, Dallas, TX 75001" -293533,Bose SoundSport Headphones,1,99.99,11/01/19 11:10,"877 Maple St, Los Angeles, CA 90001" -293534,27in 4K Gaming Monitor,1,389.99,11/22/19 13:17,"464 9th St, San Francisco, CA 94016" -293535,27in FHD Monitor,1,149.99,11/21/19 15:46,"293 Johnson St, New York City, NY 10001" -293536,Lightning Charging Cable,1,14.95,11/23/19 16:39,"396 13th St, Dallas, TX 75001" -293537,Wired Headphones,1,11.99,11/11/19 18:43,"910 Lakeview St, San Francisco, CA 94016" -293538,AA Batteries (4-pack),1,3.84,11/02/19 20:14,"94 Adams St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -293539,AAA Batteries (4-pack),2,2.99,11/11/19 18:28,"732 Walnut St, Seattle, WA 98101" -293540,Macbook Pro Laptop,1,1700,11/24/19 06:22,"832 7th St, New York City, NY 10001" -293541,Wired Headphones,1,11.99,11/05/19 19:59,"996 Park St, San Francisco, CA 94016" -293542,Google Phone,1,600,11/18/19 17:13,"429 6th St, Boston, MA 02215" -293543,AAA Batteries (4-pack),1,2.99,11/20/19 13:04,"893 Jefferson St, Los Angeles, CA 90001" -293544,Wired Headphones,1,11.99,11/02/19 23:19,"924 West St, San Francisco, CA 94016" -293545,Lightning Charging Cable,1,14.95,11/30/19 10:04,"176 Elm St, Dallas, TX 75001" -293546,USB-C Charging Cable,1,11.95,11/22/19 12:35,"994 Dogwood St, Los Angeles, CA 90001" -293547,Apple Airpods Headphones,1,150,11/06/19 23:07,"355 Chestnut St, Austin, TX 73301" -293548,Flatscreen TV,1,300,11/17/19 20:03,"317 River St, Dallas, TX 75001" -293549,Bose SoundSport Headphones,1,99.99,11/24/19 20:18,"73 4th St, Portland, ME 04101" -293550,Wired Headphones,1,11.99,11/06/19 22:47,"785 12th St, San Francisco, CA 94016" -293551,Google Phone,1,600,11/25/19 15:09,"300 14th St, San Francisco, CA 94016" -293552,Apple Airpods Headphones,1,150,11/13/19 05:15,"689 Hickory St, San Francisco, CA 94016" -293553,Lightning Charging Cable,2,14.95,11/27/19 21:14,"761 Highland St, San Francisco, CA 94016" -293554,Apple Airpods Headphones,1,150,11/09/19 20:13,"660 Meadow St, Boston, MA 02215" -293555,Apple Airpods Headphones,1,150,11/26/19 13:39,"269 Washington St, Portland, OR 97035" -293556,USB-C Charging Cable,1,11.95,11/15/19 17:57,"795 Jackson St, San Francisco, CA 94016" -293557,USB-C Charging Cable,1,11.95,11/28/19 13:35,"676 Hill St, Los Angeles, CA 90001" -293558,Wired Headphones,1,11.99,11/09/19 12:05,"765 10th St, Boston, MA 02215" -293559,AA Batteries (4-pack),1,3.84,11/25/19 23:42,"413 South St, Dallas, TX 75001" -293560,27in 4K Gaming Monitor,1,389.99,11/11/19 16:26,"235 Chestnut St, New York City, NY 10001" -293560,Wired Headphones,1,11.99,11/11/19 16:26,"235 Chestnut St, New York City, NY 10001" -293561,AAA Batteries (4-pack),1,2.99,11/21/19 21:18,"131 9th St, New York City, NY 10001" -293562,Wired Headphones,1,11.99,11/10/19 15:42,"223 Lakeview St, San Francisco, CA 94016" -293563,Bose SoundSport Headphones,1,99.99,11/24/19 19:43,"424 Pine St, Austin, TX 73301" -293564,AA Batteries (4-pack),2,3.84,11/13/19 16:52,"488 Dogwood St, Los Angeles, CA 90001" -293565,Wired Headphones,1,11.99,11/27/19 13:06,"86 Ridge St, New York City, NY 10001" -293566,ThinkPad Laptop,1,999.99,11/17/19 11:18,"361 13th St, Seattle, WA 98101" -293567,AA Batteries (4-pack),1,3.84,11/18/19 07:41,"668 Chestnut St, Portland, ME 04101" -293568,AA Batteries (4-pack),1,3.84,11/13/19 18:35,"296 9th St, Boston, MA 02215" -293569,Bose SoundSport Headphones,1,99.99,11/21/19 17:46,"453 Church St, Los Angeles, CA 90001" -293570,Wired Headphones,1,11.99,11/11/19 07:40,"453 Lakeview St, Los Angeles, CA 90001" -293571,Lightning Charging Cable,1,14.95,11/04/19 18:09,"145 10th St, Atlanta, GA 30301" -293572,Wired Headphones,2,11.99,11/08/19 09:43,"230 11th St, Seattle, WA 98101" -293573,Lightning Charging Cable,1,14.95,11/02/19 18:45,"522 6th St, New York City, NY 10001" -293574,USB-C Charging Cable,1,11.95,11/14/19 10:46,"674 Park St, Dallas, TX 75001" -293575,Bose SoundSport Headphones,1,99.99,11/30/19 17:34,"940 Spruce St, New York City, NY 10001" -293576,USB-C Charging Cable,1,11.95,11/16/19 10:31,"721 Adams St, Boston, MA 02215" -293577,Bose SoundSport Headphones,1,99.99,11/16/19 14:43,"660 Spruce St, New York City, NY 10001" -293578,34in Ultrawide Monitor,1,379.99,11/03/19 11:20,"168 12th St, San Francisco, CA 94016" -293579,USB-C Charging Cable,1,11.95,11/08/19 17:41,"104 River St, San Francisco, CA 94016" -293580,27in 4K Gaming Monitor,1,389.99,11/08/19 18:21,"442 Lake St, Los Angeles, CA 90001" -293581,Wired Headphones,1,11.99,11/13/19 14:48,"125 8th St, San Francisco, CA 94016" -293582,Wired Headphones,1,11.99,11/10/19 10:11,"933 11th St, New York City, NY 10001" -293583,Lightning Charging Cable,1,14.95,11/01/19 15:04,"309 Jefferson St, Boston, MA 02215" -293584,Lightning Charging Cable,1,14.95,11/12/19 20:50,"221 Lake St, Atlanta, GA 30301" -293585,Lightning Charging Cable,1,14.95,11/10/19 22:18,"366 Willow St, Atlanta, GA 30301" -293586,Wired Headphones,1,11.99,11/20/19 20:48,"80 Pine St, Dallas, TX 75001" -293587,Apple Airpods Headphones,1,150,11/26/19 22:22,"148 Johnson St, Portland, OR 97035" -293588,Lightning Charging Cable,1,14.95,11/18/19 13:57,"143 Meadow St, Austin, TX 73301" -293589,AA Batteries (4-pack),1,3.84,11/07/19 10:14,"504 Lakeview St, San Francisco, CA 94016" -293590,Lightning Charging Cable,1,14.95,11/03/19 08:53,"138 Main St, Atlanta, GA 30301" -293591,USB-C Charging Cable,1,11.95,11/26/19 09:22,"549 Jackson St, Portland, OR 97035" -293592,Lightning Charging Cable,1,14.95,11/29/19 19:29,"62 12th St, Atlanta, GA 30301" -293593,Apple Airpods Headphones,1,150,11/22/19 16:25,"621 13th St, San Francisco, CA 94016" -293594,Flatscreen TV,1,300,11/16/19 12:06,"611 13th St, Dallas, TX 75001" -293595,27in FHD Monitor,1,149.99,11/04/19 09:11,"891 Spruce St, San Francisco, CA 94016" -293596,Apple Airpods Headphones,1,150,11/28/19 14:57,"1 Lake St, Los Angeles, CA 90001" -293597,Apple Airpods Headphones,1,150,11/22/19 20:00,"291 Meadow St, San Francisco, CA 94016" -293598,27in FHD Monitor,1,149.99,11/13/19 23:02,"347 Willow St, Los Angeles, CA 90001" -293599,Bose SoundSport Headphones,1,99.99,11/19/19 13:40,"551 Church St, Los Angeles, CA 90001" -293600,20in Monitor,1,109.99,11/02/19 16:08,"3 Lake St, San Francisco, CA 94016" -293601,LG Washing Machine,1,600.0,11/22/19 17:34,"383 Spruce St, San Francisco, CA 94016" -293602,ThinkPad Laptop,1,999.99,11/19/19 20:20,"217 8th St, Seattle, WA 98101" -293603,27in FHD Monitor,1,149.99,11/08/19 12:43,"559 Lincoln St, Seattle, WA 98101" -293604,LG Washing Machine,1,600.0,11/24/19 18:40,"458 Madison St, San Francisco, CA 94016" -293605,Apple Airpods Headphones,1,150,11/16/19 01:16,"279 9th St, Boston, MA 02215" -293606,AA Batteries (4-pack),1,3.84,11/12/19 19:44,"454 Highland St, New York City, NY 10001" -293607,Apple Airpods Headphones,1,150,11/01/19 16:37,"186 Washington St, San Francisco, CA 94016" -293608,Google Phone,1,600,11/03/19 12:15,"309 Chestnut St, Austin, TX 73301" -293609,AAA Batteries (4-pack),2,2.99,11/06/19 23:16,"937 Park St, Los Angeles, CA 90001" -293610,Flatscreen TV,1,300,11/17/19 13:28,"101 Lincoln St, Los Angeles, CA 90001" -293611,Apple Airpods Headphones,1,150,11/09/19 16:36,"493 West St, San Francisco, CA 94016" -293612,ThinkPad Laptop,1,999.99,11/13/19 14:00,"659 Elm St, New York City, NY 10001" -293612,Apple Airpods Headphones,1,150,11/13/19 14:00,"659 Elm St, New York City, NY 10001" -293613,USB-C Charging Cable,1,11.95,11/26/19 19:36,"276 Dogwood St, San Francisco, CA 94016" -293614,AAA Batteries (4-pack),4,2.99,11/16/19 11:47,"492 Church St, Los Angeles, CA 90001" -293615,AA Batteries (4-pack),2,3.84,11/18/19 21:11,"674 Hickory St, Los Angeles, CA 90001" -293616,Flatscreen TV,1,300,11/14/19 13:50,"587 Pine St, New York City, NY 10001" -293617,Apple Airpods Headphones,1,150,11/27/19 13:49,"682 West St, Seattle, WA 98101" -293618,Google Phone,1,600,11/19/19 01:12,"847 Wilson St, San Francisco, CA 94016" -293618,USB-C Charging Cable,1,11.95,11/19/19 01:12,"847 Wilson St, San Francisco, CA 94016" -293619,USB-C Charging Cable,1,11.95,11/27/19 20:05,"430 Willow St, Dallas, TX 75001" -293620,LG Washing Machine,1,600.0,11/05/19 19:09,"432 Sunset St, Atlanta, GA 30301" -293621,Bose SoundSport Headphones,1,99.99,11/25/19 06:40,"87 West St, Seattle, WA 98101" -293622,ThinkPad Laptop,1,999.99,11/07/19 20:35,"611 2nd St, Seattle, WA 98101" -293622,AAA Batteries (4-pack),7,2.99,11/07/19 20:35,"611 2nd St, Seattle, WA 98101" -293623,Apple Airpods Headphones,1,150,11/25/19 10:52,"957 Sunset St, Seattle, WA 98101" -293624,27in 4K Gaming Monitor,1,389.99,11/09/19 20:30,"843 Lakeview St, Atlanta, GA 30301" -293625,27in FHD Monitor,1,149.99,11/16/19 11:04,"463 Cedar St, New York City, NY 10001" -293626,iPhone,1,700,11/03/19 02:33,"787 Willow St, San Francisco, CA 94016" -293627,Lightning Charging Cable,1,14.95,11/02/19 13:58,"161 Walnut St, San Francisco, CA 94016" -293628,Lightning Charging Cable,2,14.95,11/20/19 07:23,"804 11th St, Seattle, WA 98101" -293629,AAA Batteries (4-pack),1,2.99,11/21/19 19:09,"164 Meadow St, San Francisco, CA 94016" -293630,34in Ultrawide Monitor,1,379.99,11/19/19 11:32,"758 Hickory St, Seattle, WA 98101" -293631,iPhone,1,700,11/26/19 21:10,"243 13th St, San Francisco, CA 94016" -293632,AA Batteries (4-pack),1,3.84,11/23/19 07:58,"891 Chestnut St, Boston, MA 02215" -293633,AAA Batteries (4-pack),1,2.99,11/29/19 19:19,"419 9th St, Boston, MA 02215" -293634,USB-C Charging Cable,1,11.95,11/27/19 19:04,"762 Hickory St, San Francisco, CA 94016" -293635,Apple Airpods Headphones,1,150,11/22/19 10:51,"927 North St, Boston, MA 02215" -293636,Apple Airpods Headphones,1,150,11/16/19 22:29,"735 Lake St, Dallas, TX 75001" -293637,Flatscreen TV,1,300,11/30/19 12:05,"376 2nd St, Boston, MA 02215" -293638,AAA Batteries (4-pack),1,2.99,11/26/19 13:30,"785 Hickory St, Boston, MA 02215" -293639,AA Batteries (4-pack),1,3.84,11/12/19 09:25,"316 6th St, Seattle, WA 98101" -293640,AAA Batteries (4-pack),1,2.99,11/30/19 18:28,"134 12th St, Atlanta, GA 30301" -293641,27in FHD Monitor,1,149.99,11/22/19 21:13,"241 4th St, Boston, MA 02215" -293642,iPhone,1,700,11/30/19 15:49,"652 Jackson St, San Francisco, CA 94016" -293643,Lightning Charging Cable,1,14.95,11/19/19 15:07,"976 Hickory St, San Francisco, CA 94016" -293644,Lightning Charging Cable,1,14.95,11/08/19 23:41,"122 Dogwood St, Boston, MA 02215" -293645,AA Batteries (4-pack),4,3.84,11/26/19 22:21,"574 Pine St, Boston, MA 02215" -293646,iPhone,1,700,11/14/19 18:52,"24 Church St, Dallas, TX 75001" -293647,iPhone,1,700,11/20/19 07:49,"900 Willow St, Atlanta, GA 30301" -293647,Lightning Charging Cable,2,14.95,11/20/19 07:49,"900 Willow St, Atlanta, GA 30301" -293647,AAA Batteries (4-pack),1,2.99,11/20/19 07:49,"900 Willow St, Atlanta, GA 30301" -293648,Bose SoundSport Headphones,1,99.99,11/27/19 20:45,"342 Park St, Portland, OR 97035" -293649,34in Ultrawide Monitor,1,379.99,11/07/19 21:40,"713 Washington St, New York City, NY 10001" -293650,Lightning Charging Cable,1,14.95,11/18/19 15:15,"319 Madison St, Los Angeles, CA 90001" -293651,27in 4K Gaming Monitor,1,389.99,11/23/19 15:02,"650 Forest St, Los Angeles, CA 90001" -293652,Lightning Charging Cable,1,14.95,11/15/19 20:50,"342 Willow St, Portland, ME 04101" -293653,AA Batteries (4-pack),1,3.84,11/17/19 21:38,"555 Cedar St, Los Angeles, CA 90001" -293654,Apple Airpods Headphones,1,150,11/16/19 19:44,"890 6th St, Atlanta, GA 30301" -293655,Macbook Pro Laptop,1,1700,11/13/19 17:36,"332 Madison St, New York City, NY 10001" -293656,Lightning Charging Cable,1,14.95,11/30/19 13:33,"981 South St, Atlanta, GA 30301" -293657,Bose SoundSport Headphones,1,99.99,11/29/19 20:27,"634 Spruce St, Portland, OR 97035" -293658,Lightning Charging Cable,1,14.95,12/01/19 02:44,"934 Lincoln St, Dallas, TX 75001" -293659,USB-C Charging Cable,1,11.95,11/07/19 15:12,"325 Spruce St, San Francisco, CA 94016" -293660,27in FHD Monitor,1,149.99,11/17/19 00:11,"405 Highland St, Portland, OR 97035" -293661,AA Batteries (4-pack),1,3.84,11/15/19 14:36,"863 Hickory St, New York City, NY 10001" -293662,AA Batteries (4-pack),2,3.84,11/16/19 11:36,"575 6th St, Dallas, TX 75001" -293663,AA Batteries (4-pack),1,3.84,11/20/19 05:42,"3 Jackson St, Portland, OR 97035" -293664,Bose SoundSport Headphones,1,99.99,11/15/19 12:48,"79 Center St, Boston, MA 02215" -293664,20in Monitor,1,109.99,11/15/19 12:48,"79 Center St, Boston, MA 02215" -293665,Apple Airpods Headphones,1,150,11/27/19 22:14,"76 Pine St, Dallas, TX 75001" -293666,Vareebadd Phone,1,400,11/08/19 21:16,"924 Chestnut St, Seattle, WA 98101" -293667,USB-C Charging Cable,1,11.95,11/23/19 16:30,"331 Adams St, San Francisco, CA 94016" -293668,USB-C Charging Cable,1,11.95,11/03/19 21:40,"476 Madison St, Los Angeles, CA 90001" -293669,USB-C Charging Cable,1,11.95,11/22/19 10:15,"3 Madison St, Boston, MA 02215" -293670,Wired Headphones,1,11.99,11/11/19 14:19,"538 9th St, Los Angeles, CA 90001" -293671,USB-C Charging Cable,1,11.95,11/26/19 13:07,"196 Elm St, Boston, MA 02215" -293672,Lightning Charging Cable,1,14.95,11/17/19 23:44,"9 Ridge St, Los Angeles, CA 90001" -293673,AA Batteries (4-pack),2,3.84,11/24/19 18:03,"368 Highland St, San Francisco, CA 94016" -293674,USB-C Charging Cable,1,11.95,11/15/19 18:42,"419 Sunset St, Seattle, WA 98101" -293675,27in 4K Gaming Monitor,1,389.99,11/18/19 15:53,"479 11th St, Boston, MA 02215" -293676,34in Ultrawide Monitor,1,379.99,11/17/19 07:45,"543 10th St, San Francisco, CA 94016" -293677,AAA Batteries (4-pack),3,2.99,11/11/19 11:47,"164 Wilson St, Seattle, WA 98101" -293678,AA Batteries (4-pack),2,3.84,11/08/19 15:57,"940 2nd St, Atlanta, GA 30301" -293679,AA Batteries (4-pack),1,3.84,11/25/19 11:27,"187 1st St, Seattle, WA 98101" -293680,iPhone,1,700,11/13/19 11:48,"820 Adams St, San Francisco, CA 94016" -293681,AA Batteries (4-pack),1,3.84,11/20/19 16:21,"176 9th St, San Francisco, CA 94016" -293682,AAA Batteries (4-pack),1,2.99,11/24/19 13:45,"274 Chestnut St, New York City, NY 10001" -293683,Apple Airpods Headphones,1,150,11/03/19 15:47,"967 7th St, Los Angeles, CA 90001" -293684,iPhone,1,700,11/16/19 22:14,"668 Elm St, Los Angeles, CA 90001" -293684,Wired Headphones,1,11.99,11/16/19 22:14,"668 Elm St, Los Angeles, CA 90001" -293685,iPhone,1,700,11/30/19 12:43,"459 Washington St, Dallas, TX 75001" -293686,27in 4K Gaming Monitor,1,389.99,11/24/19 18:44,"504 7th St, Portland, OR 97035" -293687,Lightning Charging Cable,1,14.95,11/18/19 21:44,"124 Johnson St, San Francisco, CA 94016" -293688,27in 4K Gaming Monitor,1,389.99,11/09/19 09:38,"363 7th St, San Francisco, CA 94016" -293689,USB-C Charging Cable,1,11.95,11/17/19 20:11,"239 Chestnut St, New York City, NY 10001" -293690,AAA Batteries (4-pack),1,2.99,11/25/19 03:58,"622 Hickory St, San Francisco, CA 94016" -293691,Wired Headphones,1,11.99,11/16/19 22:12,"851 Dogwood St, Los Angeles, CA 90001" -293692,Wired Headphones,1,11.99,11/27/19 14:42,"346 Johnson St, Seattle, WA 98101" -293693,Lightning Charging Cable,1,14.95,11/10/19 13:55,"184 Adams St, Dallas, TX 75001" -293694,Vareebadd Phone,1,400,11/27/19 23:30,"118 Sunset St, Boston, MA 02215" -293694,USB-C Charging Cable,1,11.95,11/27/19 23:30,"118 Sunset St, Boston, MA 02215" -293695,Lightning Charging Cable,1,14.95,11/19/19 20:41,"308 Chestnut St, Boston, MA 02215" -293696,Apple Airpods Headphones,1,150,11/01/19 18:03,"488 Washington St, San Francisco, CA 94016" -293697,Google Phone,1,600,11/29/19 19:07,"98 Jefferson St, Boston, MA 02215" -293698,27in 4K Gaming Monitor,1,389.99,11/08/19 16:06,"49 Wilson St, Los Angeles, CA 90001" -293699,Lightning Charging Cable,1,14.95,11/14/19 10:20,"494 14th St, New York City, NY 10001" -293700,Google Phone,1,600,11/11/19 21:08,"425 6th St, Dallas, TX 75001" -293701,34in Ultrawide Monitor,1,379.99,11/06/19 14:28,"968 6th St, New York City, NY 10001" -293702,USB-C Charging Cable,1,11.95,11/27/19 18:10,"838 Lakeview St, Portland, OR 97035" -293703,Apple Airpods Headphones,1,150,11/09/19 12:50,"469 4th St, Los Angeles, CA 90001" -293704,Macbook Pro Laptop,1,1700,11/16/19 06:51,"626 7th St, San Francisco, CA 94016" -293705,Apple Airpods Headphones,1,150,11/21/19 20:46,"586 6th St, Los Angeles, CA 90001" -293706,Wired Headphones,1,11.99,11/13/19 14:55,"344 Lake St, San Francisco, CA 94016" -293707,Apple Airpods Headphones,1,150,11/02/19 09:54,"411 8th St, Portland, OR 97035" -293708,Lightning Charging Cable,1,14.95,11/12/19 13:03,"299 Elm St, New York City, NY 10001" -293709,AA Batteries (4-pack),1,3.84,11/19/19 00:26,"78 7th St, Seattle, WA 98101" -293710,USB-C Charging Cable,1,11.95,11/24/19 14:06,"516 Madison St, Dallas, TX 75001" -293711,iPhone,1,700,11/24/19 11:44,"224 Spruce St, New York City, NY 10001" -293712,27in FHD Monitor,1,149.99,11/05/19 16:52,"826 6th St, New York City, NY 10001" -293713,Apple Airpods Headphones,1,150,12/01/19 02:30,"684 14th St, New York City, NY 10001" -293714,LG Dryer,1,600.0,11/18/19 06:54,"70 Main St, San Francisco, CA 94016" -293715,LG Dryer,1,600.0,11/18/19 17:26,"510 13th St, San Francisco, CA 94016" -293716,27in 4K Gaming Monitor,1,389.99,11/15/19 09:44,"299 Adams St, New York City, NY 10001" -293717,Flatscreen TV,1,300,11/19/19 12:33,"709 4th St, Los Angeles, CA 90001" -293718,Wired Headphones,1,11.99,11/17/19 20:49,"383 Maple St, San Francisco, CA 94016" -293719,Wired Headphones,1,11.99,11/03/19 06:07,"897 Lakeview St, Los Angeles, CA 90001" -293720,USB-C Charging Cable,1,11.95,11/18/19 20:49,"423 Highland St, Boston, MA 02215" -293721,AA Batteries (4-pack),1,3.84,11/23/19 23:12,"468 Highland St, Atlanta, GA 30301" -293722,AA Batteries (4-pack),1,3.84,11/30/19 17:43,"223 Lincoln St, San Francisco, CA 94016" -293723,Lightning Charging Cable,1,14.95,11/06/19 18:23,"690 Ridge St, Seattle, WA 98101" -293724,Bose SoundSport Headphones,1,99.99,11/20/19 21:59,"138 Hill St, Boston, MA 02215" -293725,Apple Airpods Headphones,1,150,11/11/19 09:55,"116 Forest St, Austin, TX 73301" -293726,27in FHD Monitor,1,149.99,11/24/19 12:05,"175 8th St, Los Angeles, CA 90001" -293727,Apple Airpods Headphones,1,150,11/22/19 22:52,"820 Church St, Seattle, WA 98101" -293728,ThinkPad Laptop,1,999.99,11/18/19 19:31,"232 Pine St, Austin, TX 73301" -293729,Bose SoundSport Headphones,1,99.99,11/24/19 14:11,"853 4th St, New York City, NY 10001" -293730,Macbook Pro Laptop,1,1700,11/10/19 09:44,"719 South St, Seattle, WA 98101" -293731,AA Batteries (4-pack),1,3.84,11/18/19 09:53,"5 12th St, San Francisco, CA 94016" -293732,USB-C Charging Cable,1,11.95,11/20/19 13:05,"191 River St, Seattle, WA 98101" -293733,Wired Headphones,2,11.99,11/08/19 12:47,"610 Chestnut St, San Francisco, CA 94016" -293734,USB-C Charging Cable,1,11.95,11/09/19 13:16,"473 North St, San Francisco, CA 94016" -293735,iPhone,1,700,11/19/19 11:08,"816 Madison St, San Francisco, CA 94016" -293736,USB-C Charging Cable,1,11.95,11/17/19 14:56,"873 South St, Austin, TX 73301" -293737,Wired Headphones,1,11.99,11/25/19 23:09,"755 10th St, Portland, ME 04101" -293738,Bose SoundSport Headphones,1,99.99,11/20/19 11:25,"936 Maple St, Dallas, TX 75001" -293739,Apple Airpods Headphones,1,150,11/26/19 13:06,"922 Cedar St, San Francisco, CA 94016" -293740,iPhone,1,700,11/14/19 22:09,"348 6th St, Los Angeles, CA 90001" -293741,AA Batteries (4-pack),1,3.84,11/03/19 21:12,"777 Wilson St, Boston, MA 02215" -293742,Lightning Charging Cable,1,14.95,11/12/19 15:28,"715 Lake St, Boston, MA 02215" -293743,27in 4K Gaming Monitor,1,389.99,11/25/19 01:28,"749 Elm St, Boston, MA 02215" -293744,27in FHD Monitor,1,149.99,11/28/19 21:03,"690 Hill St, New York City, NY 10001" -293745,27in FHD Monitor,1,149.99,11/24/19 12:46,"416 Jackson St, Boston, MA 02215" -293746,Vareebadd Phone,1,400,11/16/19 12:17,"569 Johnson St, San Francisco, CA 94016" -293746,Apple Airpods Headphones,1,150,11/16/19 12:17,"569 Johnson St, San Francisco, CA 94016" -293747,Wired Headphones,1,11.99,11/10/19 21:42,"591 Walnut St, New York City, NY 10001" -293748,Apple Airpods Headphones,1,150,11/05/19 18:56,"917 13th St, Los Angeles, CA 90001" -293749,34in Ultrawide Monitor,1,379.99,11/27/19 15:04,"168 Hill St, New York City, NY 10001" -293750,Vareebadd Phone,1,400,11/16/19 17:20,"555 Walnut St, San Francisco, CA 94016" -293750,Wired Headphones,1,11.99,11/16/19 17:20,"555 Walnut St, San Francisco, CA 94016" -293751,Bose SoundSport Headphones,1,99.99,11/20/19 19:14,"783 Jackson St, Los Angeles, CA 90001" -293752,Google Phone,1,600,11/11/19 10:19,"103 Center St, Seattle, WA 98101" -293753,USB-C Charging Cable,2,11.95,11/18/19 13:20,"317 Lake St, San Francisco, CA 94016" -293754,Wired Headphones,1,11.99,11/17/19 22:16,"621 Meadow St, New York City, NY 10001" -293755,Lightning Charging Cable,1,14.95,11/15/19 08:45,"700 Hickory St, New York City, NY 10001" -293756,AAA Batteries (4-pack),1,2.99,11/16/19 12:42,"975 9th St, Boston, MA 02215" -293757,iPhone,1,700,11/24/19 18:01,"931 River St, New York City, NY 10001" -293758,27in 4K Gaming Monitor,1,389.99,11/03/19 17:06,"536 Walnut St, Los Angeles, CA 90001" -293759,USB-C Charging Cable,1,11.95,11/08/19 13:15,"445 Sunset St, San Francisco, CA 94016" -293760,27in 4K Gaming Monitor,1,389.99,11/19/19 10:01,"334 Center St, Los Angeles, CA 90001" -293761,AAA Batteries (4-pack),1,2.99,11/13/19 05:59,"371 Chestnut St, Portland, OR 97035" -293762,AA Batteries (4-pack),1,3.84,11/10/19 07:42,"696 Wilson St, San Francisco, CA 94016" -293763,27in 4K Gaming Monitor,1,389.99,11/29/19 21:44,"145 1st St, Seattle, WA 98101" -293764,Google Phone,1,600,11/07/19 10:54,"10 West St, Boston, MA 02215" -293764,Wired Headphones,1,11.99,11/07/19 10:54,"10 West St, Boston, MA 02215" -293765,ThinkPad Laptop,1,999.99,11/20/19 23:10,"610 10th St, Portland, OR 97035" -293766,Apple Airpods Headphones,1,150,11/06/19 10:48,"343 Meadow St, San Francisco, CA 94016" -293767,Bose SoundSport Headphones,1,99.99,11/05/19 21:57,"941 5th St, Austin, TX 73301" -293768,Apple Airpods Headphones,1,150,11/04/19 17:46,"427 Center St, San Francisco, CA 94016" -293769,USB-C Charging Cable,1,11.95,11/27/19 15:29,"328 Jackson St, Los Angeles, CA 90001" -293770,Wired Headphones,1,11.99,11/11/19 05:52,"766 4th St, Seattle, WA 98101" -293771,Lightning Charging Cable,2,14.95,11/21/19 17:40,"295 Elm St, Atlanta, GA 30301" -293772,LG Washing Machine,1,600.0,11/04/19 09:09,"175 Madison St, San Francisco, CA 94016" -293773,LG Dryer,1,600.0,11/29/19 14:39,"428 8th St, Los Angeles, CA 90001" -293774,ThinkPad Laptop,1,999.99,11/01/19 20:07,"280 Chestnut St, New York City, NY 10001" -293775,20in Monitor,1,109.99,11/17/19 20:26,"913 Lakeview St, Atlanta, GA 30301" -293776,Wired Headphones,1,11.99,11/18/19 21:26,"572 Walnut St, New York City, NY 10001" -293777,AAA Batteries (4-pack),1,2.99,11/09/19 03:48,"131 Highland St, Seattle, WA 98101" -293778,Lightning Charging Cable,2,14.95,11/14/19 23:49,"905 11th St, Boston, MA 02215" -293779,Lightning Charging Cable,2,14.95,11/04/19 11:58,"605 7th St, Boston, MA 02215" -293780,USB-C Charging Cable,1,11.95,11/23/19 08:01,"957 4th St, Dallas, TX 75001" -293781,20in Monitor,1,109.99,11/26/19 12:10,"250 7th St, San Francisco, CA 94016" -293782,USB-C Charging Cable,1,11.95,11/23/19 18:47,"592 Elm St, Los Angeles, CA 90001" -293783,Lightning Charging Cable,1,14.95,11/18/19 16:04,"311 Highland St, San Francisco, CA 94016" -293784,Lightning Charging Cable,1,14.95,11/23/19 11:50,"791 Cherry St, Los Angeles, CA 90001" -293785,Bose SoundSport Headphones,1,99.99,11/08/19 18:30,"982 Highland St, Portland, ME 04101" -293786,Bose SoundSport Headphones,1,99.99,11/16/19 23:10,"361 14th St, New York City, NY 10001" -293787,iPhone,1,700,11/17/19 11:31,"370 Johnson St, Austin, TX 73301" -293788,Lightning Charging Cable,1,14.95,11/04/19 14:32,"473 Lincoln St, Portland, OR 97035" -293789,AA Batteries (4-pack),1,3.84,11/03/19 14:51,"424 Hickory St, Los Angeles, CA 90001" -293790,Vareebadd Phone,1,400,11/18/19 12:19,"750 Willow St, Seattle, WA 98101" -293791,Google Phone,1,600,11/30/19 12:03,"96 Maple St, Los Angeles, CA 90001" -293792,Wired Headphones,1,11.99,11/22/19 23:06,"595 Adams St, Atlanta, GA 30301" -293793,27in 4K Gaming Monitor,1,389.99,11/05/19 22:28,"896 Adams St, Atlanta, GA 30301" -293794,Apple Airpods Headphones,1,150,11/15/19 11:31,"283 Wilson St, Dallas, TX 75001" -293795,Bose SoundSport Headphones,1,99.99,11/18/19 17:01,"490 Wilson St, San Francisco, CA 94016" -293796,iPhone,1,700,11/23/19 22:04,"955 North St, San Francisco, CA 94016" -293797,AAA Batteries (4-pack),1,2.99,11/04/19 13:33,"722 Wilson St, San Francisco, CA 94016" -293798,AAA Batteries (4-pack),1,2.99,11/28/19 21:14,"397 Lakeview St, New York City, NY 10001" -293799,Lightning Charging Cable,1,14.95,11/27/19 10:48,"266 Chestnut St, San Francisco, CA 94016" -293800,Wired Headphones,1,11.99,11/08/19 06:30,"944 Elm St, Portland, OR 97035" -293801,AA Batteries (4-pack),2,3.84,11/22/19 17:18,"447 12th St, Los Angeles, CA 90001" -293802,20in Monitor,1,109.99,11/21/19 11:32,"742 7th St, New York City, NY 10001" -293803,AAA Batteries (4-pack),3,2.99,11/18/19 13:43,"532 Lincoln St, Atlanta, GA 30301" -293804,27in 4K Gaming Monitor,1,389.99,11/19/19 17:54,"656 Hickory St, San Francisco, CA 94016" -293805,AA Batteries (4-pack),1,3.84,11/17/19 13:34,"801 13th St, Boston, MA 02215" -293806,USB-C Charging Cable,2,11.95,11/10/19 13:10,"222 13th St, Seattle, WA 98101" -293807,Lightning Charging Cable,1,14.95,11/20/19 18:47,"895 Church St, Los Angeles, CA 90001" -293808,Bose SoundSport Headphones,1,99.99,11/22/19 09:40,"564 Hickory St, San Francisco, CA 94016" -293809,Apple Airpods Headphones,1,150,11/18/19 00:09,"509 Park St, Boston, MA 02215" -293810,20in Monitor,1,109.99,11/15/19 11:09,"4 South St, Los Angeles, CA 90001" -293811,Wired Headphones,1,11.99,11/20/19 11:30,"823 Wilson St, New York City, NY 10001" -293812,Wired Headphones,1,11.99,11/14/19 22:02,"26 Walnut St, Los Angeles, CA 90001" -293813,Wired Headphones,1,11.99,11/17/19 11:13,"110 2nd St, San Francisco, CA 94016" -293814,Lightning Charging Cable,2,14.95,11/08/19 19:44,"821 North St, Dallas, TX 75001" -293815,Wired Headphones,1,11.99,11/14/19 10:32,"963 4th St, Boston, MA 02215" -293816,34in Ultrawide Monitor,1,379.99,11/09/19 11:38,"53 9th St, Seattle, WA 98101" -293817,Apple Airpods Headphones,1,150,11/18/19 21:47,"91 Center St, San Francisco, CA 94016" -293818,Wired Headphones,1,11.99,11/12/19 22:14,"317 14th St, Austin, TX 73301" -293819,27in 4K Gaming Monitor,1,389.99,11/26/19 19:40,"686 10th St, Austin, TX 73301" -293820,USB-C Charging Cable,1,11.95,11/27/19 01:46,"951 6th St, Los Angeles, CA 90001" -293821,AAA Batteries (4-pack),4,2.99,11/05/19 21:17,"840 Highland St, Dallas, TX 75001" -293822,AAA Batteries (4-pack),1,2.99,11/18/19 16:51,"298 Forest St, San Francisco, CA 94016" -293823,USB-C Charging Cable,1,11.95,11/08/19 19:12,"962 Cherry St, Los Angeles, CA 90001" -293824,Google Phone,1,600,11/09/19 10:03,"572 Church St, Portland, OR 97035" -293824,Wired Headphones,3,11.99,11/09/19 10:03,"572 Church St, Portland, OR 97035" -293825,USB-C Charging Cable,1,11.95,11/12/19 10:31,"623 Walnut St, Seattle, WA 98101" -293826,AAA Batteries (4-pack),1,2.99,11/05/19 08:29,"133 Madison St, San Francisco, CA 94016" -293827,AA Batteries (4-pack),1,3.84,11/08/19 17:26,"65 Spruce St, Dallas, TX 75001" -293828,USB-C Charging Cable,1,11.95,11/08/19 19:48,"161 Cherry St, Boston, MA 02215" -293829,Lightning Charging Cable,1,14.95,11/30/19 06:31,"770 River St, Los Angeles, CA 90001" -293830,Wired Headphones,1,11.99,11/19/19 07:40,"871 Cedar St, New York City, NY 10001" -293831,Lightning Charging Cable,1,14.95,11/12/19 19:56,"426 Spruce St, Dallas, TX 75001" -293832,Apple Airpods Headphones,1,150,11/26/19 16:14,"384 14th St, San Francisco, CA 94016" -293833,USB-C Charging Cable,2,11.95,11/17/19 23:34,"399 Madison St, Seattle, WA 98101" -293834,Lightning Charging Cable,1,14.95,11/17/19 13:02,"762 13th St, San Francisco, CA 94016" -293835,Wired Headphones,1,11.99,11/07/19 19:16,"964 5th St, San Francisco, CA 94016" -293836,Wired Headphones,2,11.99,11/24/19 23:50,"415 Washington St, San Francisco, CA 94016" -293837,Bose SoundSport Headphones,1,99.99,11/23/19 19:49,"585 Washington St, Boston, MA 02215" -293838,iPhone,1,700,11/28/19 10:14,"35 North St, San Francisco, CA 94016" -293838,Lightning Charging Cable,1,14.95,11/28/19 10:14,"35 North St, San Francisco, CA 94016" -293839,Apple Airpods Headphones,1,150,11/30/19 20:11,"270 Elm St, San Francisco, CA 94016" -293840,Apple Airpods Headphones,1,150,11/28/19 11:11,"210 10th St, New York City, NY 10001" -293841,34in Ultrawide Monitor,1,379.99,11/02/19 22:46,"663 Church St, Dallas, TX 75001" -293842,Wired Headphones,1,11.99,11/20/19 20:25,"576 1st St, San Francisco, CA 94016" -293843,iPhone,1,700,11/04/19 00:00,"343 Hill St, San Francisco, CA 94016" -293843,AA Batteries (4-pack),1,3.84,11/04/19 00:00,"343 Hill St, San Francisco, CA 94016" -293844,Google Phone,1,600,11/07/19 13:21,"730 5th St, Los Angeles, CA 90001" -293845,Apple Airpods Headphones,1,150,11/11/19 13:41,"381 14th St, Portland, OR 97035" -293846,AAA Batteries (4-pack),1,2.99,11/17/19 21:09,"207 1st St, Seattle, WA 98101" -293847,Macbook Pro Laptop,1,1700,11/20/19 10:08,"68 North St, Portland, OR 97035" -293848,Lightning Charging Cable,1,14.95,11/18/19 15:46,"905 4th St, Los Angeles, CA 90001" -293849,USB-C Charging Cable,2,11.95,11/11/19 14:59,"726 Cedar St, San Francisco, CA 94016" -293850,Wired Headphones,1,11.99,11/28/19 17:40,"60 Lakeview St, San Francisco, CA 94016" -293851,Flatscreen TV,1,300,11/14/19 04:01,"306 Hill St, San Francisco, CA 94016" -293852,Lightning Charging Cable,1,14.95,11/01/19 16:42,"30 14th St, Los Angeles, CA 90001" -293853,USB-C Charging Cable,1,11.95,11/23/19 22:11,"125 10th St, Boston, MA 02215" -293854,Macbook Pro Laptop,1,1700,11/09/19 15:56,"958 Hill St, San Francisco, CA 94016" -293855,Wired Headphones,1,11.99,11/24/19 15:04,"898 Wilson St, New York City, NY 10001" -293856,AA Batteries (4-pack),1,3.84,11/27/19 12:48,"658 Forest St, San Francisco, CA 94016" -293857,27in FHD Monitor,1,149.99,11/01/19 23:32,"213 Walnut St, Portland, OR 97035" -293858,Apple Airpods Headphones,1,150,11/12/19 06:11,"958 Cherry St, San Francisco, CA 94016" -293859,Lightning Charging Cable,2,14.95,11/20/19 20:20,"657 North St, Seattle, WA 98101" -293860,Apple Airpods Headphones,1,150,11/11/19 10:12,"66 7th St, San Francisco, CA 94016" -293861,Macbook Pro Laptop,1,1700,11/18/19 13:37,"90 Lake St, New York City, NY 10001" -293862,AA Batteries (4-pack),1,3.84,11/05/19 12:10,"575 12th St, Seattle, WA 98101" -293863,AA Batteries (4-pack),1,3.84,11/09/19 21:54,"454 2nd St, San Francisco, CA 94016" -293864,AAA Batteries (4-pack),2,2.99,11/20/19 04:07,"807 Pine St, Boston, MA 02215" -293865,Bose SoundSport Headphones,1,99.99,11/21/19 19:52,"492 Dogwood St, Los Angeles, CA 90001" -293866,Apple Airpods Headphones,1,150,11/22/19 15:05,"115 1st St, San Francisco, CA 94016" -293867,Lightning Charging Cable,1,14.95,11/30/19 17:07,"767 10th St, Austin, TX 73301" -293868,AA Batteries (4-pack),1,3.84,11/01/19 10:53,"688 Spruce St, Boston, MA 02215" -293869,Apple Airpods Headphones,1,150,11/28/19 12:23,"253 Highland St, New York City, NY 10001" -293870,AAA Batteries (4-pack),2,2.99,11/07/19 13:21,"84 Center St, Los Angeles, CA 90001" -293871,AA Batteries (4-pack),1,3.84,11/14/19 10:06,"623 Lincoln St, Dallas, TX 75001" -293872,Wired Headphones,1,11.99,11/18/19 12:13,"706 Hill St, San Francisco, CA 94016" -293873,Bose SoundSport Headphones,1,99.99,11/13/19 21:18,"291 South St, Los Angeles, CA 90001" -293874,Google Phone,1,600,11/25/19 08:04,"383 14th St, San Francisco, CA 94016" -293874,USB-C Charging Cable,1,11.95,11/25/19 08:04,"383 14th St, San Francisco, CA 94016" -293875,Google Phone,1,600,11/16/19 13:38,"911 Jackson St, Portland, OR 97035" -293875,USB-C Charging Cable,1,11.95,11/16/19 13:38,"911 Jackson St, Portland, OR 97035" -293876,AAA Batteries (4-pack),1,2.99,11/15/19 13:31,"546 8th St, Boston, MA 02215" -293877,20in Monitor,1,109.99,11/29/19 23:20,"392 6th St, San Francisco, CA 94016" -293878,AA Batteries (4-pack),1,3.84,11/28/19 23:31,"617 Wilson St, Portland, OR 97035" -293879,Bose SoundSport Headphones,1,99.99,11/07/19 07:20,"651 2nd St, New York City, NY 10001" -293880,Bose SoundSport Headphones,1,99.99,11/16/19 22:43,"642 South St, Boston, MA 02215" -293881,Lightning Charging Cable,2,14.95,11/21/19 06:30,"493 Meadow St, Seattle, WA 98101" -293882,iPhone,1,700,11/15/19 10:59,"514 Church St, Dallas, TX 75001" -293883,Lightning Charging Cable,1,14.95,11/08/19 21:10,"16 13th St, Boston, MA 02215" -293884,Lightning Charging Cable,1,14.95,11/18/19 16:08,"194 Chestnut St, San Francisco, CA 94016" -293885,Apple Airpods Headphones,1,150,11/01/19 20:28,"881 Spruce St, San Francisco, CA 94016" -293886,Bose SoundSport Headphones,1,99.99,11/21/19 14:29,"600 2nd St, New York City, NY 10001" -293887,Macbook Pro Laptop,1,1700,11/20/19 15:42,"153 Forest St, Los Angeles, CA 90001" -293888,Flatscreen TV,1,300,11/04/19 19:23,"250 Hill St, Portland, OR 97035" -293889,20in Monitor,1,109.99,11/10/19 16:11,"878 Highland St, Portland, OR 97035" -293890,iPhone,1,700,11/28/19 15:51,"248 River St, New York City, NY 10001" -293890,Lightning Charging Cable,1,14.95,11/28/19 15:51,"248 River St, New York City, NY 10001" -293891,Apple Airpods Headphones,1,150,11/13/19 10:40,"330 10th St, San Francisco, CA 94016" -293892,USB-C Charging Cable,2,11.95,11/08/19 20:50,"13 6th St, San Francisco, CA 94016" -293893,27in 4K Gaming Monitor,1,389.99,11/25/19 19:58,"35 12th St, San Francisco, CA 94016" -293894,34in Ultrawide Monitor,1,379.99,11/23/19 16:26,"659 Highland St, San Francisco, CA 94016" -293895,27in 4K Gaming Monitor,1,389.99,11/23/19 09:43,"50 River St, Dallas, TX 75001" -293896,AAA Batteries (4-pack),2,2.99,11/15/19 23:44,"225 West St, Atlanta, GA 30301" -293897,USB-C Charging Cable,1,11.95,11/11/19 01:08,"89 Madison St, New York City, NY 10001" -293898,Apple Airpods Headphones,1,150,11/02/19 20:34,"852 Adams St, Los Angeles, CA 90001" -293899,27in 4K Gaming Monitor,1,389.99,11/07/19 13:34,"553 Hill St, Los Angeles, CA 90001" -293900,Lightning Charging Cable,1,14.95,11/12/19 20:26,"589 Park St, Boston, MA 02215" -293901,Macbook Pro Laptop,1,1700,11/15/19 12:00,"439 13th St, San Francisco, CA 94016" -293902,34in Ultrawide Monitor,1,379.99,11/12/19 13:54,"410 6th St, Los Angeles, CA 90001" -293903,Lightning Charging Cable,1,14.95,11/11/19 06:49,"618 Walnut St, San Francisco, CA 94016" -293904,USB-C Charging Cable,1,11.95,11/29/19 19:34,"337 Pine St, Dallas, TX 75001" -293905,Google Phone,1,600,11/04/19 11:38,"492 Dogwood St, Portland, OR 97035" -293906,AA Batteries (4-pack),1,3.84,11/29/19 17:38,"135 Meadow St, Portland, OR 97035" -293907,Bose SoundSport Headphones,1,99.99,11/29/19 09:36,"243 Pine St, Atlanta, GA 30301" -293908,AAA Batteries (4-pack),1,2.99,11/14/19 16:13,"191 Elm St, Los Angeles, CA 90001" -293909,USB-C Charging Cable,1,11.95,11/20/19 19:36,"402 2nd St, Boston, MA 02215" -293909,27in FHD Monitor,1,149.99,11/20/19 19:36,"402 2nd St, Boston, MA 02215" -293910,AA Batteries (4-pack),1,3.84,11/19/19 18:45,"397 River St, Los Angeles, CA 90001" -293911,Lightning Charging Cable,1,14.95,11/16/19 21:22,"121 Ridge St, Los Angeles, CA 90001" -293912,AAA Batteries (4-pack),1,2.99,11/11/19 18:07,"438 Forest St, Boston, MA 02215" -293913,Apple Airpods Headphones,1,150,11/28/19 15:13,"148 Maple St, San Francisco, CA 94016" -293914,iPhone,1,700,11/20/19 19:10,"291 Cedar St, San Francisco, CA 94016" -293915,Apple Airpods Headphones,1,150,11/27/19 10:11,"341 9th St, Portland, OR 97035" -293916,AA Batteries (4-pack),2,3.84,11/16/19 12:29,"702 Hickory St, Los Angeles, CA 90001" -293916,ThinkPad Laptop,1,999.99,11/16/19 12:29,"702 Hickory St, Los Angeles, CA 90001" -293917,AA Batteries (4-pack),1,3.84,11/24/19 00:27,"698 8th St, Boston, MA 02215" -293917,Wired Headphones,1,11.99,11/24/19 00:27,"698 8th St, Boston, MA 02215" -293918,Vareebadd Phone,1,400,11/21/19 06:56,"376 Johnson St, New York City, NY 10001" -293919,AA Batteries (4-pack),1,3.84,11/26/19 13:01,"530 12th St, Los Angeles, CA 90001" -293920,Bose SoundSport Headphones,1,99.99,11/01/19 13:25,"461 Ridge St, San Francisco, CA 94016" -293921,ThinkPad Laptop,1,999.99,11/28/19 14:48,"185 Main St, Boston, MA 02215" -293922,27in FHD Monitor,1,149.99,11/08/19 13:56,"317 2nd St, San Francisco, CA 94016" -293923,Apple Airpods Headphones,1,150,11/20/19 15:11,"545 12th St, Los Angeles, CA 90001" -293924,Wired Headphones,1,11.99,11/13/19 10:11,"357 Hickory St, New York City, NY 10001" -293925,Lightning Charging Cable,1,14.95,11/08/19 17:20,"933 Wilson St, Boston, MA 02215" -293926,AA Batteries (4-pack),1,3.84,11/02/19 22:00,"790 River St, San Francisco, CA 94016" -293927,Bose SoundSport Headphones,1,99.99,11/16/19 17:53,"314 Highland St, San Francisco, CA 94016" -293928,27in FHD Monitor,1,149.99,11/24/19 19:25,"535 Maple St, New York City, NY 10001" -293929,Apple Airpods Headphones,1,150,11/19/19 10:09,"662 8th St, San Francisco, CA 94016" -293930,20in Monitor,1,109.99,11/13/19 21:07,"420 Wilson St, San Francisco, CA 94016" -293931,iPhone,1,700,11/30/19 15:32,"429 Lake St, San Francisco, CA 94016" -293932,USB-C Charging Cable,2,11.95,11/12/19 23:29,"799 Main St, San Francisco, CA 94016" -293933,Lightning Charging Cable,1,14.95,11/12/19 11:47,"253 Adams St, Dallas, TX 75001" -293934,Macbook Pro Laptop,1,1700,11/29/19 15:12,"131 Dogwood St, Boston, MA 02215" -293934,Google Phone,1,600,11/29/19 15:12,"131 Dogwood St, Boston, MA 02215" -293935,Flatscreen TV,1,300,11/21/19 10:31,"683 Adams St, Los Angeles, CA 90001" -293936,Apple Airpods Headphones,1,150,11/03/19 12:28,"22 6th St, Seattle, WA 98101" -293937,Lightning Charging Cable,1,14.95,11/22/19 10:47,"633 West St, Boston, MA 02215" -293938,Lightning Charging Cable,1,14.95,11/16/19 23:39,"802 10th St, New York City, NY 10001" -293939,Apple Airpods Headphones,1,150,11/05/19 22:42,"822 14th St, Seattle, WA 98101" -293940,AA Batteries (4-pack),1,3.84,11/28/19 12:00,"543 Main St, San Francisco, CA 94016" -293941,Lightning Charging Cable,1,14.95,11/17/19 11:31,"704 7th St, Atlanta, GA 30301" -293942,Lightning Charging Cable,1,14.95,11/29/19 21:31,"659 River St, Atlanta, GA 30301" -293943,34in Ultrawide Monitor,1,379.99,11/10/19 18:11,"798 7th St, Dallas, TX 75001" -293944,Lightning Charging Cable,1,14.95,11/18/19 15:23,"776 Pine St, San Francisco, CA 94016" -293945,USB-C Charging Cable,1,11.95,11/05/19 19:11,"922 Park St, Seattle, WA 98101" -293946,AAA Batteries (4-pack),2,2.99,11/18/19 08:23,"152 Cedar St, San Francisco, CA 94016" -293947,Vareebadd Phone,1,400,11/30/19 13:37,"935 Madison St, New York City, NY 10001" -293947,USB-C Charging Cable,1,11.95,11/30/19 13:37,"935 Madison St, New York City, NY 10001" -293948,Wired Headphones,1,11.99,11/17/19 00:35,"468 14th St, Dallas, TX 75001" -293949,Lightning Charging Cable,1,14.95,11/30/19 11:58,"500 Adams St, New York City, NY 10001" -293950,27in FHD Monitor,1,149.99,11/17/19 22:08,"992 Maple St, San Francisco, CA 94016" -293951,AA Batteries (4-pack),1,3.84,11/08/19 12:39,"476 Johnson St, Boston, MA 02215" -293952,34in Ultrawide Monitor,1,379.99,11/09/19 20:13,"504 North St, San Francisco, CA 94016" -293952,Bose SoundSport Headphones,1,99.99,11/09/19 20:13,"504 North St, San Francisco, CA 94016" -293953,AA Batteries (4-pack),2,3.84,11/28/19 12:36,"868 Cherry St, Los Angeles, CA 90001" -293954,USB-C Charging Cable,1,11.95,11/09/19 22:23,"42 Park St, Boston, MA 02215" -293955,AAA Batteries (4-pack),2,2.99,11/24/19 15:04,"980 14th St, Atlanta, GA 30301" -293956,27in 4K Gaming Monitor,1,389.99,11/08/19 22:18,"479 7th St, Los Angeles, CA 90001" -293957,AA Batteries (4-pack),2,3.84,11/04/19 17:09,"865 Chestnut St, Los Angeles, CA 90001" -293958,Lightning Charging Cable,1,14.95,11/14/19 21:45,"26 Walnut St, San Francisco, CA 94016" -293958,Apple Airpods Headphones,1,150,11/14/19 21:45,"26 Walnut St, San Francisco, CA 94016" -293959,AAA Batteries (4-pack),1,2.99,11/24/19 21:52,"312 Madison St, Boston, MA 02215" -293960,Bose SoundSport Headphones,1,99.99,11/23/19 16:45,"185 Hill St, New York City, NY 10001" -293961,Macbook Pro Laptop,1,1700,11/02/19 11:52,"973 Willow St, San Francisco, CA 94016" -293962,Lightning Charging Cable,1,14.95,11/23/19 18:37,"200 Cedar St, Los Angeles, CA 90001" -293963,Bose SoundSport Headphones,1,99.99,11/06/19 11:57,"544 Walnut St, San Francisco, CA 94016" -293964,AAA Batteries (4-pack),3,2.99,11/06/19 23:13,"718 Sunset St, New York City, NY 10001" -293965,AA Batteries (4-pack),1,3.84,11/24/19 09:19,"135 Lake St, Los Angeles, CA 90001" -293966,AA Batteries (4-pack),2,3.84,11/09/19 16:45,"543 Madison St, Boston, MA 02215" -293967,Bose SoundSport Headphones,1,99.99,11/29/19 19:37,"107 13th St, San Francisco, CA 94016" -293968,USB-C Charging Cable,2,11.95,11/30/19 12:15,"927 10th St, San Francisco, CA 94016" -293969,27in FHD Monitor,1,149.99,11/20/19 10:15,"504 Hill St, Seattle, WA 98101" -293970,Apple Airpods Headphones,1,150,11/18/19 19:25,"126 Washington St, San Francisco, CA 94016" -293971,AAA Batteries (4-pack),1,2.99,11/23/19 13:14,"729 Church St, Dallas, TX 75001" -293972,Lightning Charging Cable,1,14.95,11/26/19 09:50,"681 North St, Boston, MA 02215" -293973,Lightning Charging Cable,1,14.95,11/18/19 10:36,"485 Johnson St, Los Angeles, CA 90001" -293974,Apple Airpods Headphones,1,150,11/12/19 22:27,"385 11th St, San Francisco, CA 94016" -293975,Bose SoundSport Headphones,1,99.99,11/14/19 14:39,"225 6th St, Seattle, WA 98101" -293976,AAA Batteries (4-pack),2,2.99,11/16/19 16:04,"383 Park St, Los Angeles, CA 90001" -293976,Google Phone,1,600,11/16/19 16:04,"383 Park St, Los Angeles, CA 90001" -293977,AAA Batteries (4-pack),1,2.99,11/07/19 23:03,"457 West St, Boston, MA 02215" -293978,34in Ultrawide Monitor,1,379.99,11/27/19 22:53,"117 Cherry St, New York City, NY 10001" -293979,Lightning Charging Cable,1,14.95,11/26/19 11:31,"600 South St, Boston, MA 02215" -293980,iPhone,1,700,11/20/19 04:55,"271 Hickory St, San Francisco, CA 94016" -293981,Wired Headphones,1,11.99,11/03/19 11:08,"813 Cherry St, San Francisco, CA 94016" -293982,Apple Airpods Headphones,1,150,11/18/19 23:07,"221 Lakeview St, San Francisco, CA 94016" -293983,USB-C Charging Cable,2,11.95,11/04/19 04:26,"880 5th St, Los Angeles, CA 90001" -293984,USB-C Charging Cable,1,11.95,11/28/19 16:04,"17 Pine St, San Francisco, CA 94016" -293985,AAA Batteries (4-pack),1,2.99,11/06/19 07:47,"629 11th St, Portland, OR 97035" -293986,20in Monitor,1,109.99,11/17/19 08:31,"84 Lincoln St, Los Angeles, CA 90001" -293987,Apple Airpods Headphones,1,150,11/29/19 12:44,"613 13th St, San Francisco, CA 94016" -293988,Macbook Pro Laptop,1,1700,11/01/19 13:59,"567 Main St, Portland, OR 97035" -293989,AAA Batteries (4-pack),1,2.99,11/07/19 19:19,"186 Lake St, Seattle, WA 98101" -293990,USB-C Charging Cable,1,11.95,11/22/19 00:51,"613 10th St, New York City, NY 10001" -293991,27in 4K Gaming Monitor,1,389.99,11/29/19 15:40,"622 Pine St, Boston, MA 02215" -293992,USB-C Charging Cable,1,11.95,11/26/19 22:00,"159 Hill St, Boston, MA 02215" -293993,AAA Batteries (4-pack),1,2.99,12/01/19 00:41,"999 10th St, San Francisco, CA 94016" -293994,AA Batteries (4-pack),1,3.84,11/14/19 20:57,"440 Johnson St, Dallas, TX 75001" -293995,Bose SoundSport Headphones,1,99.99,11/24/19 21:34,"465 Adams St, San Francisco, CA 94016" -293996,Vareebadd Phone,1,400,11/21/19 00:55,"53 North St, San Francisco, CA 94016" -293997,Macbook Pro Laptop,1,1700,11/19/19 13:13,"848 7th St, Atlanta, GA 30301" -293998,AA Batteries (4-pack),1,3.84,11/18/19 22:04,"442 West St, Austin, TX 73301" -293999,Bose SoundSport Headphones,1,99.99,11/20/19 21:07,"861 South St, Los Angeles, CA 90001" -294000,27in FHD Monitor,1,149.99,11/26/19 18:41,"695 Lakeview St, Austin, TX 73301" -294001,USB-C Charging Cable,1,11.95,11/04/19 11:07,"717 Elm St, Boston, MA 02215" -294002,iPhone,1,700,11/07/19 20:55,"391 Willow St, Austin, TX 73301" -294003,USB-C Charging Cable,1,11.95,11/08/19 19:25,"263 South St, San Francisco, CA 94016" -294004,Bose SoundSport Headphones,1,99.99,11/07/19 16:03,"615 Ridge St, New York City, NY 10001" -294005,34in Ultrawide Monitor,1,379.99,11/21/19 21:18,"433 2nd St, Seattle, WA 98101" -294006,Apple Airpods Headphones,1,150,11/02/19 12:02,"56 10th St, San Francisco, CA 94016" -294007,Lightning Charging Cable,1,14.95,11/22/19 18:52,"685 Sunset St, Los Angeles, CA 90001" -294008,AA Batteries (4-pack),1,3.84,11/30/19 14:36,"637 Wilson St, Portland, OR 97035" -294009,Apple Airpods Headphones,1,150,11/26/19 17:20,"612 Sunset St, Dallas, TX 75001" -294010,AAA Batteries (4-pack),1,2.99,11/29/19 11:52,"800 Jackson St, San Francisco, CA 94016" -294011,Lightning Charging Cable,1,14.95,11/25/19 20:14,"911 Cherry St, Los Angeles, CA 90001" -294012,AAA Batteries (4-pack),1,2.99,11/07/19 19:33,"619 River St, Portland, OR 97035" -294013,Lightning Charging Cable,1,14.95,11/17/19 21:43,"720 2nd St, Boston, MA 02215" -294014,AA Batteries (4-pack),1,3.84,11/11/19 21:18,"785 Lakeview St, San Francisco, CA 94016" -294015,20in Monitor,1,109.99,11/21/19 11:12,"776 10th St, New York City, NY 10001" -294016,AA Batteries (4-pack),1,3.84,11/22/19 17:08,"886 Adams St, San Francisco, CA 94016" -294017,USB-C Charging Cable,2,11.95,11/18/19 21:08,"969 Jackson St, Los Angeles, CA 90001" -294018,AAA Batteries (4-pack),1,2.99,11/02/19 10:39,"271 North St, New York City, NY 10001" -294019,iPhone,1,700,11/11/19 22:28,"147 Washington St, Los Angeles, CA 90001" -294020,27in FHD Monitor,1,149.99,11/12/19 21:02,"853 5th St, New York City, NY 10001" -294021,Apple Airpods Headphones,1,150,11/29/19 16:13,"333 2nd St, Los Angeles, CA 90001" -294022,Macbook Pro Laptop,1,1700,11/07/19 11:29,"678 Highland St, San Francisco, CA 94016" -294023,AAA Batteries (4-pack),1,2.99,11/27/19 17:19,"131 Johnson St, Portland, OR 97035" -294024,ThinkPad Laptop,1,999.99,11/29/19 20:27,"766 Hickory St, Portland, OR 97035" -294025,AA Batteries (4-pack),1,3.84,11/25/19 18:32,"727 Meadow St, San Francisco, CA 94016" -294026,USB-C Charging Cable,1,11.95,11/04/19 22:59,"483 Maple St, San Francisco, CA 94016" -294027,AAA Batteries (4-pack),1,2.99,11/09/19 17:38,"200 Park St, San Francisco, CA 94016" -294028,Macbook Pro Laptop,1,1700,11/20/19 13:40,"502 1st St, Portland, OR 97035" -,,,,, -294029,27in FHD Monitor,1,149.99,11/05/19 08:15,"99 Pine St, Atlanta, GA 30301" -294030,Lightning Charging Cable,1,14.95,11/02/19 19:13,"607 Forest St, Atlanta, GA 30301" -294031,AA Batteries (4-pack),4,3.84,11/20/19 09:19,"768 Cherry St, New York City, NY 10001" -294032,AAA Batteries (4-pack),1,2.99,11/15/19 09:19,"256 West St, San Francisco, CA 94016" -294033,Google Phone,1,600,11/18/19 21:13,"243 2nd St, San Francisco, CA 94016" -294034,27in 4K Gaming Monitor,1,389.99,11/23/19 00:55,"537 14th St, Seattle, WA 98101" -294035,Lightning Charging Cable,1,14.95,11/25/19 21:32,"92 South St, San Francisco, CA 94016" -294035,Apple Airpods Headphones,1,150,11/25/19 21:32,"92 South St, San Francisco, CA 94016" -294036,AAA Batteries (4-pack),1,2.99,11/07/19 20:54,"120 8th St, Boston, MA 02215" -294037,34in Ultrawide Monitor,1,379.99,11/08/19 09:22,"549 Meadow St, Los Angeles, CA 90001" -294038,AAA Batteries (4-pack),1,2.99,11/03/19 23:54,"275 Hickory St, Atlanta, GA 30301" -294039,Apple Airpods Headphones,1,150,11/14/19 17:35,"47 Hill St, Los Angeles, CA 90001" -294040,34in Ultrawide Monitor,1,379.99,11/13/19 21:46,"402 North St, New York City, NY 10001" -294041,Google Phone,1,600,11/06/19 00:40,"923 Hill St, New York City, NY 10001" -294042,34in Ultrawide Monitor,1,379.99,11/29/19 17:31,"877 Pine St, New York City, NY 10001" -294043,AA Batteries (4-pack),1,3.84,11/23/19 03:55,"310 Elm St, Atlanta, GA 30301" -294044,Lightning Charging Cable,1,14.95,11/02/19 18:43,"105 10th St, Boston, MA 02215" -294045,AA Batteries (4-pack),2,3.84,11/16/19 12:35,"56 West St, San Francisco, CA 94016" -294046,34in Ultrawide Monitor,1,379.99,11/17/19 15:12,"746 Washington St, Los Angeles, CA 90001" -294047,Lightning Charging Cable,1,14.95,11/09/19 17:49,"711 South St, San Francisco, CA 94016" -294048,Lightning Charging Cable,1,14.95,11/29/19 22:29,"712 1st St, New York City, NY 10001" -294049,Google Phone,1,600,11/12/19 15:11,"939 Highland St, San Francisco, CA 94016" -294050,Lightning Charging Cable,1,14.95,11/22/19 17:29,"376 Chestnut St, Los Angeles, CA 90001" -294051,USB-C Charging Cable,1,11.95,11/03/19 10:01,"667 Jackson St, Los Angeles, CA 90001" -294052,AAA Batteries (4-pack),1,2.99,11/30/19 16:17,"528 Washington St, Portland, ME 04101" -294053,AAA Batteries (4-pack),2,2.99,11/27/19 08:36,"956 Pine St, Dallas, TX 75001" -294054,27in 4K Gaming Monitor,1,389.99,11/27/19 11:26,"56 Main St, Austin, TX 73301" -294055,27in 4K Gaming Monitor,1,389.99,11/20/19 13:19,"969 Lake St, Dallas, TX 75001" -294056,Google Phone,1,600,11/04/19 20:55,"345 5th St, San Francisco, CA 94016" -294056,Bose SoundSport Headphones,1,99.99,11/04/19 20:55,"345 5th St, San Francisco, CA 94016" -294056,Wired Headphones,1,11.99,11/04/19 20:55,"345 5th St, San Francisco, CA 94016" -294057,Wired Headphones,1,11.99,11/16/19 10:14,"170 River St, Dallas, TX 75001" -294058,Wired Headphones,1,11.99,11/12/19 14:08,"925 Park St, Portland, OR 97035" -294059,AA Batteries (4-pack),2,3.84,11/11/19 16:49,"137 2nd St, Los Angeles, CA 90001" -294060,Lightning Charging Cable,1,14.95,11/21/19 18:06,"592 Lake St, Boston, MA 02215" -294061,27in 4K Gaming Monitor,1,389.99,11/06/19 22:47,"808 Ridge St, Los Angeles, CA 90001" -294062,Apple Airpods Headphones,1,150,11/10/19 22:59,"318 12th St, Boston, MA 02215" -294063,USB-C Charging Cable,1,11.95,11/09/19 14:29,"71 Meadow St, San Francisco, CA 94016" -294064,Flatscreen TV,1,300,11/24/19 09:36,"703 Church St, Boston, MA 02215" -294065,34in Ultrawide Monitor,1,379.99,11/14/19 20:42,"780 West St, Austin, TX 73301" -294066,Wired Headphones,1,11.99,11/29/19 18:32,"376 Hill St, Atlanta, GA 30301" -294067,Apple Airpods Headphones,1,150,11/24/19 16:01,"540 Ridge St, Los Angeles, CA 90001" -294068,iPhone,1,700,11/13/19 17:39,"103 Park St, Los Angeles, CA 90001" -294069,USB-C Charging Cable,1,11.95,11/26/19 10:34,"29 Maple St, Atlanta, GA 30301" -294070,20in Monitor,1,109.99,11/16/19 00:43,"303 7th St, New York City, NY 10001" -294071,AA Batteries (4-pack),1,3.84,11/13/19 23:09,"329 Main St, Los Angeles, CA 90001" -294072,Lightning Charging Cable,1,14.95,11/11/19 23:13,"560 North St, Los Angeles, CA 90001" -294073,AA Batteries (4-pack),2,3.84,11/27/19 10:33,"938 Washington St, Dallas, TX 75001" -294074,Apple Airpods Headphones,1,150,11/09/19 06:44,"197 Spruce St, Los Angeles, CA 90001" -294075,AAA Batteries (4-pack),1,2.99,11/25/19 16:14,"34 Jackson St, San Francisco, CA 94016" -294076,USB-C Charging Cable,1,11.95,11/23/19 00:56,"484 1st St, Atlanta, GA 30301" -294077,AAA Batteries (4-pack),1,2.99,11/05/19 06:08,"65 Washington St, San Francisco, CA 94016" -294078,USB-C Charging Cable,2,11.95,11/05/19 15:25,"864 Forest St, Seattle, WA 98101" -294079,Wired Headphones,1,11.99,11/27/19 11:07,"477 Lake St, Los Angeles, CA 90001" -294080,Wired Headphones,1,11.99,11/15/19 06:07,"844 5th St, San Francisco, CA 94016" -294081,Lightning Charging Cable,1,14.95,11/18/19 18:44,"337 Jefferson St, Seattle, WA 98101" -294082,AAA Batteries (4-pack),3,2.99,11/17/19 10:33,"309 Maple St, Los Angeles, CA 90001" -294083,AAA Batteries (4-pack),2,2.99,11/25/19 13:24,"66 South St, New York City, NY 10001" -294084,Apple Airpods Headphones,1,150,11/15/19 18:18,"721 2nd St, Austin, TX 73301" -294085,AAA Batteries (4-pack),1,2.99,11/02/19 18:12,"397 Washington St, Portland, OR 97035" -294086,USB-C Charging Cable,1,11.95,11/05/19 22:19,"429 Jefferson St, San Francisco, CA 94016" -294087,27in FHD Monitor,1,149.99,11/14/19 22:55,"162 12th St, New York City, NY 10001" -294088,iPhone,1,700,11/25/19 21:59,"135 4th St, Los Angeles, CA 90001" -294089,AA Batteries (4-pack),1,3.84,11/11/19 18:56,"59 Spruce St, New York City, NY 10001" -294090,USB-C Charging Cable,1,11.95,11/22/19 11:28,"707 North St, San Francisco, CA 94016" -294091,Apple Airpods Headphones,1,150,11/18/19 20:11,"413 Sunset St, New York City, NY 10001" -294092,20in Monitor,1,109.99,11/08/19 20:50,"566 Spruce St, San Francisco, CA 94016" -294092,USB-C Charging Cable,1,11.95,11/08/19 20:50,"566 Spruce St, San Francisco, CA 94016" -294093,USB-C Charging Cable,1,11.95,12/01/19 00:37,"51 Cherry St, New York City, NY 10001" -294094,AA Batteries (4-pack),1,3.84,11/01/19 17:13,"936 North St, Los Angeles, CA 90001" -294095,AAA Batteries (4-pack),2,2.99,11/17/19 12:17,"333 Main St, Portland, OR 97035" -294096,Wired Headphones,1,11.99,11/09/19 19:28,"508 Main St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -294097,iPhone,1,700,11/27/19 12:24,"599 Center St, San Francisco, CA 94016" -294098,AAA Batteries (4-pack),1,2.99,11/18/19 21:49,"820 Johnson St, New York City, NY 10001" -294099,USB-C Charging Cable,1,11.95,11/27/19 07:48,"149 Sunset St, Los Angeles, CA 90001" -294100,iPhone,1,700,11/10/19 11:58,"816 Madison St, Dallas, TX 75001" -294101,Lightning Charging Cable,1,14.95,11/01/19 16:09,"826 Church St, New York City, NY 10001" -294102,AAA Batteries (4-pack),1,2.99,11/08/19 11:08,"382 Walnut St, Portland, OR 97035" -294103,Lightning Charging Cable,1,14.95,11/18/19 18:05,"821 Willow St, Los Angeles, CA 90001" -294104,Wired Headphones,1,11.99,11/29/19 18:18,"320 Highland St, New York City, NY 10001" -294105,USB-C Charging Cable,2,11.95,11/03/19 13:40,"114 12th St, San Francisco, CA 94016" -294106,LG Washing Machine,1,600.0,11/23/19 19:14,"867 Spruce St, Dallas, TX 75001" -294107,USB-C Charging Cable,1,11.95,11/17/19 19:40,"133 2nd St, San Francisco, CA 94016" -294108,Wired Headphones,1,11.99,11/15/19 22:55,"201 10th St, San Francisco, CA 94016" -294109,USB-C Charging Cable,1,11.95,11/19/19 11:59,"36 Ridge St, San Francisco, CA 94016" -294110,ThinkPad Laptop,1,999.99,11/10/19 14:59,"148 Hickory St, San Francisco, CA 94016" -294111,Lightning Charging Cable,1,14.95,11/01/19 11:31,"770 10th St, Boston, MA 02215" -294112,Google Phone,1,600,11/27/19 16:17,"600 Pine St, Atlanta, GA 30301" -294113,27in FHD Monitor,1,149.99,11/02/19 02:47,"287 Sunset St, Austin, TX 73301" -294114,Wired Headphones,1,11.99,11/21/19 20:52,"124 5th St, Boston, MA 02215" -294115,27in FHD Monitor,1,149.99,11/09/19 14:55,"409 Cedar St, Atlanta, GA 30301" -294115,Wired Headphones,1,11.99,11/09/19 14:55,"409 Cedar St, Atlanta, GA 30301" -294116,Lightning Charging Cable,1,14.95,11/06/19 12:06,"298 Johnson St, Los Angeles, CA 90001" -294117,Wired Headphones,1,11.99,11/09/19 10:15,"314 Sunset St, Boston, MA 02215" -294118,iPhone,1,700,11/25/19 17:12,"771 Jackson St, New York City, NY 10001" -294119,Apple Airpods Headphones,1,150,11/13/19 13:27,"638 Sunset St, San Francisco, CA 94016" -294120,34in Ultrawide Monitor,1,379.99,11/28/19 11:46,"326 North St, San Francisco, CA 94016" -294121,Bose SoundSport Headphones,2,99.99,11/08/19 16:19,"458 Johnson St, Seattle, WA 98101" -294122,Lightning Charging Cable,1,14.95,11/16/19 22:11,"342 Forest St, San Francisco, CA 94016" -294123,USB-C Charging Cable,2,11.95,11/06/19 18:54,"237 8th St, Dallas, TX 75001" -294124,AA Batteries (4-pack),1,3.84,11/11/19 22:11,"224 5th St, New York City, NY 10001" -294125,20in Monitor,1,109.99,11/20/19 08:31,"994 6th St, Los Angeles, CA 90001" -294126,20in Monitor,1,109.99,11/08/19 14:32,"990 1st St, New York City, NY 10001" -294127,Apple Airpods Headphones,1,150,11/24/19 19:28,"451 14th St, Los Angeles, CA 90001" -294128,USB-C Charging Cable,1,11.95,11/12/19 22:32,"798 13th St, Atlanta, GA 30301" -294129,Wired Headphones,1,11.99,11/10/19 15:30,"755 2nd St, New York City, NY 10001" -294130,Apple Airpods Headphones,1,150,11/27/19 14:13,"895 10th St, New York City, NY 10001" -294131,Wired Headphones,1,11.99,11/23/19 13:03,"256 9th St, Los Angeles, CA 90001" -294132,Apple Airpods Headphones,1,150,11/19/19 23:10,"468 Jefferson St, Portland, OR 97035" -294133,USB-C Charging Cable,1,11.95,11/04/19 19:39,"179 Church St, San Francisco, CA 94016" -294134,USB-C Charging Cable,1,11.95,11/10/19 11:26,"423 Walnut St, Seattle, WA 98101" -294135,Wired Headphones,1,11.99,11/27/19 12:58,"35 Willow St, Boston, MA 02215" -294136,Lightning Charging Cable,1,14.95,11/27/19 00:17,"659 4th St, New York City, NY 10001" -294137,Apple Airpods Headphones,1,150,11/06/19 15:22,"589 6th St, New York City, NY 10001" -294138,20in Monitor,1,109.99,11/18/19 18:13,"382 Lakeview St, Atlanta, GA 30301" -294138,Wired Headphones,1,11.99,11/18/19 18:13,"382 Lakeview St, Atlanta, GA 30301" -294139,Bose SoundSport Headphones,1,99.99,11/21/19 18:51,"826 14th St, New York City, NY 10001" -294140,Google Phone,1,600,11/02/19 09:51,"30 Spruce St, Portland, ME 04101" -294141,AAA Batteries (4-pack),2,2.99,11/04/19 16:44,"413 Park St, Los Angeles, CA 90001" -294142,ThinkPad Laptop,1,999.99,11/02/19 23:47,"141 Sunset St, Los Angeles, CA 90001" -294143,AAA Batteries (4-pack),1,2.99,11/30/19 21:35,"387 Hill St, Boston, MA 02215" -294144,Apple Airpods Headphones,1,150,11/06/19 09:22,"922 6th St, Atlanta, GA 30301" -294145,ThinkPad Laptop,1,999.99,11/07/19 21:36,"141 West St, Seattle, WA 98101" -294146,Flatscreen TV,1,300,11/02/19 06:26,"341 West St, Atlanta, GA 30301" -294147,iPhone,1,700,11/30/19 23:31,"598 Willow St, Boston, MA 02215" -294147,Lightning Charging Cable,1,14.95,11/30/19 23:31,"598 Willow St, Boston, MA 02215" -294148,AAA Batteries (4-pack),1,2.99,11/19/19 07:31,"854 Forest St, Portland, OR 97035" -294149,Wired Headphones,1,11.99,11/29/19 09:15,"896 Pine St, San Francisco, CA 94016" -294150,27in FHD Monitor,1,149.99,11/23/19 22:19,"992 11th St, New York City, NY 10001" -294151,Lightning Charging Cable,1,14.95,11/03/19 11:51,"221 1st St, Boston, MA 02215" -294152,USB-C Charging Cable,1,11.95,11/22/19 09:36,"590 Washington St, Austin, TX 73301" -294153,AAA Batteries (4-pack),1,2.99,11/04/19 09:30,"330 Elm St, Seattle, WA 98101" -294154,Lightning Charging Cable,1,14.95,11/24/19 09:23,"444 Jefferson St, Los Angeles, CA 90001" -294155,Lightning Charging Cable,1,14.95,11/07/19 22:39,"235 Walnut St, Seattle, WA 98101" -294156,Lightning Charging Cable,1,14.95,11/26/19 14:23,"96 6th St, Austin, TX 73301" -294157,Lightning Charging Cable,1,14.95,11/03/19 10:44,"222 Church St, Atlanta, GA 30301" -294158,AAA Batteries (4-pack),3,2.99,11/26/19 13:37,"374 9th St, San Francisco, CA 94016" -294159,27in 4K Gaming Monitor,1,389.99,11/18/19 12:37,"129 Park St, Los Angeles, CA 90001" -294160,20in Monitor,1,109.99,11/14/19 21:19,"226 Center St, New York City, NY 10001" -294161,AAA Batteries (4-pack),4,2.99,11/18/19 14:08,"696 Pine St, Atlanta, GA 30301" -294162,ThinkPad Laptop,1,999.99,11/08/19 14:20,"284 5th St, New York City, NY 10001" -294163,Wired Headphones,1,11.99,11/20/19 07:29,"441 Johnson St, San Francisco, CA 94016" -294164,Flatscreen TV,1,300,11/03/19 10:17,"969 Park St, Portland, OR 97035" -294165,Wired Headphones,1,11.99,11/26/19 20:31,"282 Church St, Los Angeles, CA 90001" -294166,AAA Batteries (4-pack),1,2.99,11/03/19 10:50,"936 Adams St, New York City, NY 10001" -294167,34in Ultrawide Monitor,1,379.99,11/10/19 03:55,"880 Hill St, Seattle, WA 98101" -294168,Wired Headphones,1,11.99,11/08/19 18:12,"914 Hill St, San Francisco, CA 94016" -294169,Google Phone,1,600,11/30/19 15:26,"11 Center St, Portland, OR 97035" -294170,Bose SoundSport Headphones,1,99.99,11/06/19 18:40,"499 Adams St, Portland, OR 97035" -294171,AAA Batteries (4-pack),3,2.99,11/30/19 20:22,"742 10th St, San Francisco, CA 94016" -294172,Bose SoundSport Headphones,1,99.99,11/28/19 11:05,"986 Highland St, Seattle, WA 98101" -294172,Lightning Charging Cable,1,14.95,11/28/19 11:05,"986 Highland St, Seattle, WA 98101" -294173,USB-C Charging Cable,1,11.95,11/29/19 12:39,"897 Washington St, Los Angeles, CA 90001" -294174,Bose SoundSport Headphones,1,99.99,11/05/19 16:09,"191 9th St, San Francisco, CA 94016" -294175,AAA Batteries (4-pack),1,2.99,11/04/19 17:59,"724 Hickory St, Boston, MA 02215" -294176,AAA Batteries (4-pack),1,2.99,11/21/19 21:24,"43 Lake St, San Francisco, CA 94016" -294177,AAA Batteries (4-pack),2,2.99,11/09/19 09:36,"536 Jackson St, Austin, TX 73301" -294178,USB-C Charging Cable,1,11.95,11/01/19 18:01,"458 Wilson St, New York City, NY 10001" -294179,iPhone,1,700,11/27/19 18:45,"416 Madison St, Austin, TX 73301" -294180,Apple Airpods Headphones,1,150,11/19/19 20:45,"617 7th St, San Francisco, CA 94016" -294181,27in 4K Gaming Monitor,1,389.99,11/25/19 19:45,"850 4th St, New York City, NY 10001" -294182,Wired Headphones,1,11.99,11/13/19 13:08,"575 9th St, Boston, MA 02215" -294183,Wired Headphones,1,11.99,11/14/19 17:42,"710 Hickory St, Seattle, WA 98101" -294184,27in 4K Gaming Monitor,1,389.99,11/14/19 13:10,"642 Jefferson St, New York City, NY 10001" -294185,27in 4K Gaming Monitor,1,389.99,11/05/19 15:31,"285 Park St, New York City, NY 10001" -294186,USB-C Charging Cable,1,11.95,11/28/19 17:07,"622 Wilson St, New York City, NY 10001" -294187,Bose SoundSport Headphones,1,99.99,11/22/19 08:14,"324 Adams St, Boston, MA 02215" -294188,Wired Headphones,1,11.99,11/20/19 19:58,"772 Hickory St, Atlanta, GA 30301" -294189,Flatscreen TV,1,300,11/25/19 20:16,"268 Jefferson St, Boston, MA 02215" -294190,AAA Batteries (4-pack),1,2.99,11/19/19 09:03,"491 Jefferson St, Boston, MA 02215" -294190,iPhone,1,700,11/19/19 09:03,"491 Jefferson St, Boston, MA 02215" -294191,Apple Airpods Headphones,1,150,11/26/19 04:52,"499 Maple St, Los Angeles, CA 90001" -294191,USB-C Charging Cable,1,11.95,11/26/19 04:52,"499 Maple St, Los Angeles, CA 90001" -294192,LG Dryer,1,600.0,11/28/19 23:31,"831 7th St, San Francisco, CA 94016" -294193,27in 4K Gaming Monitor,1,389.99,11/16/19 22:13,"73 Johnson St, San Francisco, CA 94016" -294194,iPhone,1,700,11/21/19 10:31,"761 Park St, New York City, NY 10001" -294195,34in Ultrawide Monitor,1,379.99,11/16/19 16:56,"981 Jefferson St, New York City, NY 10001" -294196,Wired Headphones,1,11.99,11/28/19 12:15,"113 Church St, San Francisco, CA 94016" -294197,Apple Airpods Headphones,1,150,11/22/19 00:10,"963 Hickory St, San Francisco, CA 94016" -294198,27in 4K Gaming Monitor,1,389.99,11/25/19 11:03,"623 Jefferson St, Austin, TX 73301" -294199,iPhone,1,700,11/23/19 16:52,"742 Park St, Los Angeles, CA 90001" -294199,Lightning Charging Cable,1,14.95,11/23/19 16:52,"742 Park St, Los Angeles, CA 90001" -294199,Apple Airpods Headphones,1,150,11/23/19 16:52,"742 Park St, Los Angeles, CA 90001" -294200,Apple Airpods Headphones,1,150,11/04/19 23:29,"326 West St, Portland, OR 97035" -294201,AA Batteries (4-pack),2,3.84,11/30/19 16:15,"648 Dogwood St, Seattle, WA 98101" -294202,27in 4K Gaming Monitor,1,389.99,11/14/19 17:46,"7 Church St, Boston, MA 02215" -294203,27in FHD Monitor,1,149.99,11/07/19 18:00,"637 River St, Atlanta, GA 30301" -294204,Macbook Pro Laptop,1,1700,11/16/19 11:22,"914 Lake St, Atlanta, GA 30301" -294205,Lightning Charging Cable,1,14.95,11/10/19 17:09,"41 Sunset St, Los Angeles, CA 90001" -294206,AAA Batteries (4-pack),1,2.99,11/09/19 16:33,"950 Hill St, San Francisco, CA 94016" -294207,USB-C Charging Cable,2,11.95,11/07/19 04:16,"47 Main St, San Francisco, CA 94016" -294208,Bose SoundSport Headphones,1,99.99,11/30/19 12:58,"495 Spruce St, Los Angeles, CA 90001" -294209,AAA Batteries (4-pack),2,2.99,11/06/19 16:45,"761 Ridge St, Los Angeles, CA 90001" -294210,AA Batteries (4-pack),1,3.84,11/28/19 11:35,"119 River St, Los Angeles, CA 90001" -294211,USB-C Charging Cable,1,11.95,11/04/19 22:23,"63 2nd St, Portland, OR 97035" -294212,AAA Batteries (4-pack),2,2.99,11/13/19 22:11,"68 Washington St, San Francisco, CA 94016" -294213,Apple Airpods Headphones,1,150,11/06/19 10:19,"353 4th St, Portland, OR 97035" -294214,iPhone,1,700,11/11/19 22:11,"950 Maple St, Austin, TX 73301" -294214,Wired Headphones,1,11.99,11/11/19 22:11,"950 Maple St, Austin, TX 73301" -294215,34in Ultrawide Monitor,1,379.99,11/05/19 17:26,"532 14th St, San Francisco, CA 94016" -294216,Lightning Charging Cable,2,14.95,11/29/19 09:05,"816 Madison St, San Francisco, CA 94016" -294217,34in Ultrawide Monitor,1,379.99,11/29/19 17:13,"666 Sunset St, New York City, NY 10001" -294218,Apple Airpods Headphones,1,150,11/24/19 14:53,"535 Elm St, Seattle, WA 98101" -294219,Lightning Charging Cable,1,14.95,11/06/19 13:29,"804 South St, New York City, NY 10001" -294220,27in FHD Monitor,1,149.99,11/02/19 07:10,"283 Wilson St, Dallas, TX 75001" -294221,iPhone,1,700,11/15/19 20:18,"907 Church St, Seattle, WA 98101" -294222,Lightning Charging Cable,1,14.95,11/08/19 11:50,"162 Dogwood St, Los Angeles, CA 90001" -294223,27in 4K Gaming Monitor,1,389.99,11/26/19 16:42,"507 Washington St, Dallas, TX 75001" -294224,Lightning Charging Cable,2,14.95,11/25/19 14:27,"584 Walnut St, Los Angeles, CA 90001" -294225,27in FHD Monitor,1,149.99,11/04/19 22:23,"848 Adams St, Los Angeles, CA 90001" -294226,Lightning Charging Cable,1,14.95,11/19/19 14:49,"830 Elm St, San Francisco, CA 94016" -294227,AAA Batteries (4-pack),1,2.99,11/24/19 10:04,"851 Adams St, Dallas, TX 75001" -294228,AAA Batteries (4-pack),1,2.99,11/20/19 00:41,"275 Lakeview St, Boston, MA 02215" -294229,Lightning Charging Cable,1,14.95,11/19/19 12:31,"476 6th St, Atlanta, GA 30301" -294230,Lightning Charging Cable,1,14.95,11/22/19 19:14,"211 Cedar St, San Francisco, CA 94016" -294231,Vareebadd Phone,1,400,11/13/19 22:17,"47 13th St, Boston, MA 02215" -294232,AAA Batteries (4-pack),1,2.99,11/03/19 13:41,"781 Chestnut St, Dallas, TX 75001" -294233,AA Batteries (4-pack),2,3.84,11/01/19 20:23,"816 Forest St, Los Angeles, CA 90001" -294234,Lightning Charging Cable,1,14.95,11/06/19 09:40,"530 9th St, Boston, MA 02215" -294235,Google Phone,1,600,11/30/19 22:55,"394 Johnson St, Portland, OR 97035" -294236,AAA Batteries (4-pack),1,2.99,11/26/19 22:34,"494 Willow St, Atlanta, GA 30301" -294237,AAA Batteries (4-pack),1,2.99,11/15/19 20:12,"201 Center St, Los Angeles, CA 90001" -294238,Apple Airpods Headphones,1,150,11/14/19 13:01,"775 Maple St, New York City, NY 10001" -294239,AA Batteries (4-pack),1,3.84,11/06/19 01:13,"222 10th St, Portland, ME 04101" -294240,ThinkPad Laptop,1,999.99,11/25/19 14:15,"305 9th St, Austin, TX 73301" -294241,iPhone,1,700,11/15/19 22:27,"197 Main St, Boston, MA 02215" -294242,AAA Batteries (4-pack),1,2.99,11/17/19 14:17,"931 9th St, Austin, TX 73301" -294243,USB-C Charging Cable,1,11.95,11/02/19 22:56,"230 Walnut St, Los Angeles, CA 90001" -294244,Lightning Charging Cable,1,14.95,11/27/19 11:26,"883 1st St, Dallas, TX 75001" -294245,Lightning Charging Cable,1,14.95,11/21/19 20:20,"344 Madison St, New York City, NY 10001" -294246,AAA Batteries (4-pack),4,2.99,11/26/19 17:22,"402 Forest St, Portland, OR 97035" -294247,20in Monitor,1,109.99,11/15/19 21:32,"11 9th St, Boston, MA 02215" -294248,Apple Airpods Headphones,1,150,11/18/19 09:04,"444 Forest St, Atlanta, GA 30301" -294249,AAA Batteries (4-pack),4,2.99,11/15/19 19:46,"841 West St, San Francisco, CA 94016" -294250,USB-C Charging Cable,1,11.95,11/05/19 17:46,"398 6th St, San Francisco, CA 94016" -294251,Wired Headphones,1,11.99,11/13/19 10:26,"116 Spruce St, Atlanta, GA 30301" -294252,Lightning Charging Cable,1,14.95,11/16/19 19:47,"260 5th St, Dallas, TX 75001" -294253,Google Phone,1,600,11/25/19 17:45,"527 Church St, Dallas, TX 75001" -294254,Wired Headphones,1,11.99,11/18/19 13:35,"703 Lake St, San Francisco, CA 94016" -294255,AAA Batteries (4-pack),2,2.99,11/09/19 06:45,"733 Lincoln St, Boston, MA 02215" -294256,USB-C Charging Cable,1,11.95,11/02/19 08:52,"672 Madison St, New York City, NY 10001" -294257,27in 4K Gaming Monitor,1,389.99,11/20/19 18:17,"788 11th St, Dallas, TX 75001" -294258,Lightning Charging Cable,1,14.95,11/28/19 22:18,"89 Elm St, Boston, MA 02215" -294259,27in FHD Monitor,1,149.99,11/26/19 23:56,"379 Lake St, New York City, NY 10001" -294260,AAA Batteries (4-pack),1,2.99,11/18/19 11:21,"516 Hill St, Austin, TX 73301" -294261,AAA Batteries (4-pack),2,2.99,11/19/19 22:07,"585 13th St, San Francisco, CA 94016" -294262,Wired Headphones,2,11.99,11/19/19 13:41,"647 Hickory St, Dallas, TX 75001" -294263,Lightning Charging Cable,1,14.95,11/01/19 17:19,"195 13th St, Los Angeles, CA 90001" -294264,AA Batteries (4-pack),2,3.84,11/16/19 10:46,"967 River St, Los Angeles, CA 90001" -294265,Google Phone,1,600,11/30/19 15:02,"504 Center St, Austin, TX 73301" -294266,Lightning Charging Cable,1,14.95,11/11/19 19:25,"812 11th St, Los Angeles, CA 90001" -294267,AAA Batteries (4-pack),1,2.99,11/14/19 22:21,"52 Hickory St, Dallas, TX 75001" -294268,Bose SoundSport Headphones,1,99.99,11/24/19 20:26,"108 12th St, Portland, OR 97035" -294269,AAA Batteries (4-pack),1,2.99,11/13/19 11:01,"993 Center St, Los Angeles, CA 90001" -294270,Google Phone,1,600,11/03/19 21:28,"627 Pine St, New York City, NY 10001" -294271,AAA Batteries (4-pack),3,2.99,11/30/19 18:14,"526 Main St, Dallas, TX 75001" -294272,Bose SoundSport Headphones,1,99.99,11/30/19 07:11,"45 5th St, Los Angeles, CA 90001" -294273,Wired Headphones,1,11.99,11/03/19 10:37,"125 Highland St, Boston, MA 02215" -294274,Flatscreen TV,1,300,11/15/19 23:20,"327 Forest St, Atlanta, GA 30301" -294275,Wired Headphones,1,11.99,11/08/19 19:08,"767 12th St, Atlanta, GA 30301" -294276,Bose SoundSport Headphones,1,99.99,11/03/19 00:01,"565 11th St, San Francisco, CA 94016" -294277,Wired Headphones,1,11.99,11/18/19 19:33,"517 2nd St, Los Angeles, CA 90001" -294278,Vareebadd Phone,1,400,11/25/19 15:09,"63 Hickory St, Los Angeles, CA 90001" -294278,Bose SoundSport Headphones,1,99.99,11/25/19 15:09,"63 Hickory St, Los Angeles, CA 90001" -294279,Lightning Charging Cable,1,14.95,11/29/19 15:20,"965 Walnut St, San Francisco, CA 94016" -294280,USB-C Charging Cable,2,11.95,11/21/19 14:37,"157 13th St, Atlanta, GA 30301" -294281,AA Batteries (4-pack),2,3.84,11/25/19 19:26,"569 Elm St, Portland, OR 97035" -294282,Apple Airpods Headphones,1,150,11/28/19 20:57,"822 Sunset St, Los Angeles, CA 90001" -294283,Lightning Charging Cable,1,14.95,11/10/19 20:36,"552 11th St, San Francisco, CA 94016" -294284,27in FHD Monitor,1,149.99,11/14/19 11:58,"856 Center St, Boston, MA 02215" -294285,27in FHD Monitor,1,149.99,11/14/19 14:29,"203 Johnson St, Boston, MA 02215" -294286,Vareebadd Phone,1,400,11/18/19 18:48,"540 6th St, Los Angeles, CA 90001" -294287,27in FHD Monitor,1,149.99,11/29/19 21:17,"255 Park St, San Francisco, CA 94016" -294288,27in FHD Monitor,1,149.99,11/16/19 09:05,"811 4th St, San Francisco, CA 94016" -294289,27in FHD Monitor,1,149.99,11/03/19 18:23,"10 Sunset St, Portland, OR 97035" -294290,AA Batteries (4-pack),2,3.84,11/08/19 10:12,"402 Park St, Los Angeles, CA 90001" -294291,AA Batteries (4-pack),1,3.84,11/03/19 10:29,"991 Sunset St, Portland, ME 04101" -294292,USB-C Charging Cable,1,11.95,11/15/19 20:43,"768 2nd St, Portland, ME 04101" -294293,AAA Batteries (4-pack),2,2.99,11/12/19 13:26,"608 Cedar St, New York City, NY 10001" -294294,AA Batteries (4-pack),1,3.84,11/21/19 14:52,"251 Sunset St, New York City, NY 10001" -294295,Wired Headphones,2,11.99,11/01/19 13:00,"266 Jackson St, Dallas, TX 75001" -294296,Wired Headphones,1,11.99,11/19/19 17:35,"510 River St, Atlanta, GA 30301" -294297,AAA Batteries (4-pack),2,2.99,11/13/19 10:46,"464 Cherry St, New York City, NY 10001" -294298,iPhone,1,700,11/28/19 10:38,"124 West St, Dallas, TX 75001" -294299,USB-C Charging Cable,1,11.95,11/20/19 00:44,"261 Wilson St, New York City, NY 10001" -294300,AA Batteries (4-pack),2,3.84,11/29/19 00:35,"77 Hickory St, San Francisco, CA 94016" -294301,Macbook Pro Laptop,1,1700,11/14/19 16:12,"389 South St, Boston, MA 02215" -294302,Macbook Pro Laptop,1,1700,11/27/19 11:15,"753 5th St, Dallas, TX 75001" -294303,Wired Headphones,1,11.99,11/20/19 08:10,"206 2nd St, Los Angeles, CA 90001" -294304,Apple Airpods Headphones,1,150,11/17/19 11:08,"849 13th St, New York City, NY 10001" -294305,Apple Airpods Headphones,1,150,11/29/19 19:37,"589 Highland St, Seattle, WA 98101" -294306,27in 4K Gaming Monitor,1,389.99,11/17/19 17:52,"558 Hill St, Los Angeles, CA 90001" -294307,34in Ultrawide Monitor,1,379.99,11/27/19 10:21,"167 13th St, Los Angeles, CA 90001" -294308,Wired Headphones,1,11.99,11/10/19 18:59,"153 7th St, Atlanta, GA 30301" -294309,ThinkPad Laptop,1,999.99,11/28/19 20:06,"789 10th St, Austin, TX 73301" -294310,AA Batteries (4-pack),3,3.84,11/13/19 17:39,"978 7th St, Boston, MA 02215" -294311,USB-C Charging Cable,1,11.95,11/30/19 01:56,"889 9th St, San Francisco, CA 94016" -294312,Wired Headphones,1,11.99,11/10/19 10:34,"198 13th St, Boston, MA 02215" -294313,Wired Headphones,1,11.99,11/28/19 09:40,"897 Forest St, Los Angeles, CA 90001" -294314,iPhone,1,700,11/20/19 22:02,"267 Jefferson St, Boston, MA 02215" -294314,Apple Airpods Headphones,1,150,11/20/19 22:02,"267 Jefferson St, Boston, MA 02215" -294315,Wired Headphones,1,11.99,11/24/19 09:29,"404 Lincoln St, New York City, NY 10001" -294316,27in FHD Monitor,1,149.99,11/20/19 22:32,"320 4th St, San Francisco, CA 94016" -294317,27in 4K Gaming Monitor,1,389.99,11/08/19 10:39,"919 Cherry St, Los Angeles, CA 90001" -294318,AA Batteries (4-pack),1,3.84,11/21/19 03:25,"887 Center St, San Francisco, CA 94016" -294319,AA Batteries (4-pack),1,3.84,11/10/19 12:12,"704 Madison St, Los Angeles, CA 90001" -294320,Apple Airpods Headphones,1,150,11/01/19 18:50,"125 South St, Los Angeles, CA 90001" -294321,Apple Airpods Headphones,1,150,11/03/19 16:23,"762 Sunset St, New York City, NY 10001" -294322,Bose SoundSport Headphones,1,99.99,11/25/19 21:27,"53 Spruce St, San Francisco, CA 94016" -294323,Macbook Pro Laptop,1,1700,11/04/19 20:17,"562 River St, Boston, MA 02215" -294324,AA Batteries (4-pack),1,3.84,11/28/19 15:43,"36 Jackson St, New York City, NY 10001" -294325,Lightning Charging Cable,1,14.95,11/09/19 15:28,"500 14th St, Boston, MA 02215" -294326,27in 4K Gaming Monitor,1,389.99,11/25/19 21:08,"95 5th St, Boston, MA 02215" -294327,Lightning Charging Cable,1,14.95,11/13/19 12:13,"281 River St, Boston, MA 02215" -294328,Lightning Charging Cable,1,14.95,11/29/19 19:36,"2 Main St, Boston, MA 02215" -294329,Bose SoundSport Headphones,1,99.99,11/08/19 01:26,"728 Center St, New York City, NY 10001" -294330,AA Batteries (4-pack),1,3.84,11/10/19 21:00,"922 Chestnut St, San Francisco, CA 94016" -294331,AA Batteries (4-pack),1,3.84,11/20/19 19:18,"919 Sunset St, Los Angeles, CA 90001" -294332,27in FHD Monitor,1,149.99,11/25/19 11:54,"425 Cedar St, Seattle, WA 98101" -294333,34in Ultrawide Monitor,1,379.99,11/15/19 04:33,"107 Lakeview St, San Francisco, CA 94016" -294334,Wired Headphones,1,11.99,11/16/19 12:49,"808 Washington St, Los Angeles, CA 90001" -294335,Google Phone,1,600,11/02/19 20:40,"963 13th St, Portland, ME 04101" -294336,Lightning Charging Cable,1,14.95,11/16/19 13:06,"466 Cedar St, Los Angeles, CA 90001" -294337,Apple Airpods Headphones,1,150,11/17/19 16:43,"480 Willow St, New York City, NY 10001" -294338,AA Batteries (4-pack),1,3.84,11/29/19 09:46,"712 Ridge St, Atlanta, GA 30301" -294339,Google Phone,1,600,11/05/19 23:48,"671 Chestnut St, New York City, NY 10001" -294340,USB-C Charging Cable,1,11.95,11/16/19 20:29,"735 Forest St, Dallas, TX 75001" -294341,27in FHD Monitor,1,149.99,11/04/19 15:58,"110 Washington St, New York City, NY 10001" -294342,20in Monitor,1,109.99,11/07/19 01:48,"999 Park St, Los Angeles, CA 90001" -294343,AA Batteries (4-pack),2,3.84,11/01/19 19:05,"553 Lake St, San Francisco, CA 94016" -294344,AAA Batteries (4-pack),1,2.99,11/25/19 18:27,"731 Pine St, San Francisco, CA 94016" -294345,Bose SoundSport Headphones,1,99.99,11/01/19 11:42,"557 Lake St, Austin, TX 73301" -294346,USB-C Charging Cable,1,11.95,11/04/19 11:20,"657 Church St, Portland, OR 97035" -294347,Flatscreen TV,1,300,11/30/19 08:24,"518 Dogwood St, Los Angeles, CA 90001" -294348,34in Ultrawide Monitor,1,379.99,11/06/19 17:05,"975 Lincoln St, New York City, NY 10001" -294349,Lightning Charging Cable,1,14.95,11/23/19 10:59,"891 Elm St, Dallas, TX 75001" -294350,Apple Airpods Headphones,1,150,11/02/19 01:16,"586 1st St, Atlanta, GA 30301" -294351,20in Monitor,1,109.99,11/27/19 17:38,"313 West St, Los Angeles, CA 90001" -294352,AA Batteries (4-pack),1,3.84,11/14/19 17:58,"242 Willow St, Portland, OR 97035" -294353,USB-C Charging Cable,1,11.95,11/22/19 16:53,"801 8th St, San Francisco, CA 94016" -294354,USB-C Charging Cable,1,11.95,11/29/19 02:13,"781 Willow St, Dallas, TX 75001" -294355,Wired Headphones,1,11.99,11/21/19 20:02,"894 7th St, Seattle, WA 98101" -294356,Apple Airpods Headphones,1,150,11/28/19 17:21,"212 10th St, Austin, TX 73301" -294357,27in 4K Gaming Monitor,1,389.99,11/07/19 21:43,"926 Cherry St, New York City, NY 10001" -294358,AAA Batteries (4-pack),2,2.99,11/03/19 19:36,"160 South St, Boston, MA 02215" -294359,USB-C Charging Cable,1,11.95,11/21/19 19:20,"441 Forest St, Dallas, TX 75001" -294360,Google Phone,1,600,11/02/19 23:24,"957 1st St, Atlanta, GA 30301" -294360,Bose SoundSport Headphones,1,99.99,11/02/19 23:24,"957 1st St, Atlanta, GA 30301" -294361,AA Batteries (4-pack),3,3.84,11/21/19 09:31,"503 Sunset St, New York City, NY 10001" -294362,AA Batteries (4-pack),1,3.84,11/02/19 14:25,"315 Adams St, Dallas, TX 75001" -294363,USB-C Charging Cable,1,11.95,11/08/19 07:10,"625 5th St, Atlanta, GA 30301" -294364,Google Phone,1,600,11/05/19 01:02,"427 1st St, San Francisco, CA 94016" -294365,Macbook Pro Laptop,1,1700,11/10/19 12:56,"388 Lakeview St, Los Angeles, CA 90001" -294366,Apple Airpods Headphones,1,150,11/10/19 14:22,"703 Hickory St, Atlanta, GA 30301" -294367,Lightning Charging Cable,2,14.95,11/23/19 08:15,"997 Jackson St, Dallas, TX 75001" -294368,Apple Airpods Headphones,1,150,11/28/19 21:33,"632 Walnut St, Boston, MA 02215" -294369,20in Monitor,1,109.99,11/06/19 14:31,"69 11th St, San Francisco, CA 94016" -294370,Wired Headphones,1,11.99,11/14/19 17:21,"865 River St, New York City, NY 10001" -294371,Lightning Charging Cable,1,14.95,11/07/19 08:41,"545 Lake St, Dallas, TX 75001" -294372,AA Batteries (4-pack),1,3.84,11/30/19 14:40,"62 Center St, Los Angeles, CA 90001" -294373,Lightning Charging Cable,1,14.95,11/29/19 11:55,"186 8th St, Portland, OR 97035" -294374,AA Batteries (4-pack),1,3.84,11/10/19 17:44,"128 Main St, San Francisco, CA 94016" -294375,AA Batteries (4-pack),1,3.84,11/03/19 16:29,"121 Adams St, Austin, TX 73301" -294376,27in 4K Gaming Monitor,1,389.99,11/14/19 17:36,"638 Johnson St, Boston, MA 02215" -294377,27in FHD Monitor,1,149.99,11/13/19 16:37,"80 Dogwood St, Dallas, TX 75001" -294378,Vareebadd Phone,1,400,11/18/19 09:29,"942 Main St, Dallas, TX 75001" -294379,34in Ultrawide Monitor,1,379.99,11/30/19 09:00,"569 Cherry St, Boston, MA 02215" -294380,Wired Headphones,1,11.99,11/17/19 15:19,"19 Willow St, Boston, MA 02215" -294381,iPhone,1,700,11/11/19 10:12,"872 Willow St, Atlanta, GA 30301" -294381,Lightning Charging Cable,1,14.95,11/11/19 10:12,"872 Willow St, Atlanta, GA 30301" -294382,iPhone,1,700,11/28/19 11:23,"883 Hill St, San Francisco, CA 94016" -294383,Vareebadd Phone,1,400,11/17/19 14:26,"174 Highland St, Los Angeles, CA 90001" -294384,USB-C Charging Cable,1,11.95,11/27/19 06:01,"351 1st St, Los Angeles, CA 90001" -294385,USB-C Charging Cable,1,11.95,11/02/19 10:32,"910 Willow St, Los Angeles, CA 90001" -294386,LG Washing Machine,1,600.0,11/27/19 18:59,"603 5th St, New York City, NY 10001" -294387,Lightning Charging Cable,1,14.95,11/02/19 17:48,"200 Madison St, Atlanta, GA 30301" -294388,USB-C Charging Cable,1,11.95,11/26/19 15:52,"563 Cedar St, Los Angeles, CA 90001" -294389,Lightning Charging Cable,1,14.95,11/29/19 16:27,"711 11th St, San Francisco, CA 94016" -294390,Apple Airpods Headphones,1,150,11/01/19 18:24,"837 Willow St, Portland, OR 97035" -294391,27in FHD Monitor,1,149.99,11/26/19 18:19,"696 Walnut St, Dallas, TX 75001" -294392,AA Batteries (4-pack),1,3.84,11/09/19 18:12,"124 Lake St, San Francisco, CA 94016" -294393,Bose SoundSport Headphones,1,99.99,11/21/19 17:47,"552 Meadow St, Los Angeles, CA 90001" -294394,AA Batteries (4-pack),1,3.84,11/17/19 19:58,"853 12th St, Atlanta, GA 30301" -294395,Apple Airpods Headphones,1,150,11/03/19 14:00,"579 Main St, Boston, MA 02215" -,,,,, -294396,Vareebadd Phone,1,400,11/24/19 19:55,"640 Jefferson St, Portland, OR 97035" -294397,Wired Headphones,3,11.99,11/21/19 13:02,"96 Elm St, Atlanta, GA 30301" -294398,27in FHD Monitor,1,149.99,11/09/19 21:22,"858 Lincoln St, Austin, TX 73301" -294399,AA Batteries (4-pack),1,3.84,11/08/19 22:33,"446 Dogwood St, Portland, OR 97035" -294400,27in FHD Monitor,2,149.99,11/06/19 19:16,"790 12th St, Dallas, TX 75001" -294401,Flatscreen TV,1,300,11/13/19 18:02,"201 11th St, Boston, MA 02215" -294402,27in 4K Gaming Monitor,1,389.99,11/30/19 13:34,"698 13th St, Seattle, WA 98101" -294403,LG Dryer,1,600.0,11/27/19 13:25,"642 Cedar St, New York City, NY 10001" -294404,Bose SoundSport Headphones,1,99.99,11/13/19 10:41,"731 Highland St, San Francisco, CA 94016" -294405,Wired Headphones,1,11.99,11/29/19 11:27,"896 Pine St, San Francisco, CA 94016" -294406,USB-C Charging Cable,1,11.95,11/20/19 09:36,"516 Ridge St, Seattle, WA 98101" -294407,Flatscreen TV,1,300,11/09/19 22:55,"864 Lincoln St, Austin, TX 73301" -294408,Bose SoundSport Headphones,1,99.99,11/29/19 00:41,"102 8th St, Seattle, WA 98101" -294409,AAA Batteries (4-pack),1,2.99,11/14/19 16:27,"484 6th St, Boston, MA 02215" -294410,Wired Headphones,1,11.99,11/10/19 12:54,"109 14th St, Portland, ME 04101" -294411,USB-C Charging Cable,1,11.95,11/23/19 08:34,"842 West St, Boston, MA 02215" -294412,iPhone,1,700,11/11/19 14:42,"287 Lincoln St, Seattle, WA 98101" -294413,USB-C Charging Cable,1,11.95,11/21/19 11:05,"379 Dogwood St, Portland, OR 97035" -294414,27in FHD Monitor,1,149.99,11/07/19 20:53,"347 Jackson St, Boston, MA 02215" -294415,AAA Batteries (4-pack),2,2.99,11/18/19 11:35,"324 West St, Atlanta, GA 30301" -294416,AA Batteries (4-pack),1,3.84,11/16/19 23:08,"584 Pine St, Los Angeles, CA 90001" -294417,Wired Headphones,1,11.99,11/13/19 18:18,"312 Hill St, Dallas, TX 75001" -294418,USB-C Charging Cable,1,11.95,11/13/19 19:42,"909 Cherry St, San Francisco, CA 94016" -294419,AA Batteries (4-pack),1,3.84,11/04/19 07:49,"628 Washington St, Los Angeles, CA 90001" -294420,Wired Headphones,1,11.99,11/09/19 23:01,"480 Chestnut St, Boston, MA 02215" -294421,USB-C Charging Cable,1,11.95,11/13/19 01:16,"482 Madison St, Los Angeles, CA 90001" -294422,Lightning Charging Cable,1,14.95,11/22/19 14:36,"833 Jefferson St, Atlanta, GA 30301" -294423,iPhone,1,700,11/16/19 11:42,"900 Hickory St, Seattle, WA 98101" -294424,20in Monitor,1,109.99,11/12/19 21:15,"903 Lake St, Boston, MA 02215" -294425,Bose SoundSport Headphones,1,99.99,11/18/19 05:40,"620 Jackson St, Boston, MA 02215" -294426,Flatscreen TV,1,300,11/06/19 09:50,"732 Pine St, Portland, ME 04101" -294427,27in 4K Gaming Monitor,1,389.99,11/11/19 01:45,"961 Main St, Portland, OR 97035" -294428,27in 4K Gaming Monitor,1,389.99,11/13/19 15:15,"573 Park St, Portland, OR 97035" -294429,USB-C Charging Cable,1,11.95,11/01/19 23:21,"598 Highland St, San Francisco, CA 94016" -294430,Wired Headphones,1,11.99,11/21/19 13:38,"83 Sunset St, Atlanta, GA 30301" -294430,Bose SoundSport Headphones,1,99.99,11/21/19 13:38,"83 Sunset St, Atlanta, GA 30301" -294431,Apple Airpods Headphones,1,150,11/21/19 17:42,"541 Hickory St, Los Angeles, CA 90001" -294432,Macbook Pro Laptop,1,1700,11/19/19 06:14,"959 6th St, Boston, MA 02215" -294433,Wired Headphones,1,11.99,11/23/19 16:51,"521 4th St, New York City, NY 10001" -294434,Bose SoundSport Headphones,1,99.99,11/13/19 14:17,"632 Chestnut St, Los Angeles, CA 90001" -294435,27in 4K Gaming Monitor,1,389.99,11/06/19 11:46,"101 Hickory St, Seattle, WA 98101" -294436,Apple Airpods Headphones,1,150,11/29/19 15:14,"967 Sunset St, San Francisco, CA 94016" -294437,Apple Airpods Headphones,1,150,11/21/19 09:04,"895 Park St, Atlanta, GA 30301" -294438,USB-C Charging Cable,1,11.95,11/23/19 19:09,"236 Walnut St, New York City, NY 10001" -294439,USB-C Charging Cable,2,11.95,11/06/19 10:37,"5 7th St, San Francisco, CA 94016" -294439,Lightning Charging Cable,1,14.95,11/06/19 10:37,"5 7th St, San Francisco, CA 94016" -294440,Wired Headphones,1,11.99,11/17/19 12:11,"201 Highland St, Los Angeles, CA 90001" -294441,Wired Headphones,1,11.99,12/01/19 00:52,"469 Sunset St, San Francisco, CA 94016" -294442,Apple Airpods Headphones,1,150,11/05/19 15:18,"498 Maple St, Austin, TX 73301" -294443,Wired Headphones,1,11.99,11/20/19 12:26,"837 Willow St, San Francisco, CA 94016" -294444,27in 4K Gaming Monitor,1,389.99,11/04/19 08:26,"894 4th St, Los Angeles, CA 90001" -294445,Google Phone,1,600,11/21/19 09:32,"884 Adams St, San Francisco, CA 94016" -294446,LG Washing Machine,1,600.0,11/15/19 16:04,"304 Jefferson St, Boston, MA 02215" -294447,AAA Batteries (4-pack),4,2.99,11/09/19 10:43,"730 Johnson St, New York City, NY 10001" -294448,34in Ultrawide Monitor,1,379.99,11/10/19 08:37,"5 14th St, Boston, MA 02215" -294449,Lightning Charging Cable,1,14.95,11/22/19 11:54,"51 2nd St, Boston, MA 02215" -294450,AAA Batteries (4-pack),3,2.99,11/18/19 13:54,"800 11th St, San Francisco, CA 94016" -294451,ThinkPad Laptop,1,999.99,11/09/19 23:04,"591 13th St, Portland, ME 04101" -294452,Bose SoundSport Headphones,1,99.99,11/30/19 08:33,"352 Hickory St, Atlanta, GA 30301" -294453,Google Phone,1,600,11/11/19 07:34,"946 6th St, Atlanta, GA 30301" -294454,USB-C Charging Cable,1,11.95,11/04/19 14:41,"215 5th St, Boston, MA 02215" -294455,AAA Batteries (4-pack),1,2.99,11/23/19 17:10,"139 Ridge St, Seattle, WA 98101" -294456,Lightning Charging Cable,1,14.95,11/14/19 10:41,"106 South St, Boston, MA 02215" -294457,27in 4K Gaming Monitor,1,389.99,11/12/19 22:53,"2 Cedar St, Boston, MA 02215" -294458,Bose SoundSport Headphones,1,99.99,11/20/19 19:37,"185 Johnson St, Los Angeles, CA 90001" -294459,iPhone,1,700,11/29/19 16:33,"226 Church St, New York City, NY 10001" -294460,34in Ultrawide Monitor,1,379.99,11/23/19 20:55,"411 Walnut St, San Francisco, CA 94016" -294461,Lightning Charging Cable,1,14.95,11/23/19 20:57,"851 Willow St, Los Angeles, CA 90001" -294462,AA Batteries (4-pack),2,3.84,11/24/19 13:23,"104 Cedar St, San Francisco, CA 94016" -294463,Apple Airpods Headphones,2,150,11/24/19 07:36,"605 Hill St, New York City, NY 10001" -294464,AA Batteries (4-pack),1,3.84,11/15/19 13:06,"24 2nd St, Seattle, WA 98101" -294465,27in 4K Gaming Monitor,1,389.99,11/01/19 19:54,"573 5th St, Seattle, WA 98101" -294466,AA Batteries (4-pack),1,3.84,11/29/19 20:54,"158 Cedar St, San Francisco, CA 94016" -294467,Lightning Charging Cable,1,14.95,11/29/19 01:23,"59 9th St, San Francisco, CA 94016" -294468,Bose SoundSport Headphones,1,99.99,11/30/19 11:27,"932 8th St, San Francisco, CA 94016" -294469,iPhone,1,700,11/20/19 22:29,"188 Church St, San Francisco, CA 94016" -294470,AA Batteries (4-pack),1,3.84,11/18/19 18:38,"378 10th St, New York City, NY 10001" -294471,AAA Batteries (4-pack),1,2.99,11/04/19 16:37,"834 Madison St, Los Angeles, CA 90001" -294472,Wired Headphones,1,11.99,11/22/19 19:12,"99 Lake St, Portland, OR 97035" -294473,AAA Batteries (4-pack),1,2.99,11/07/19 16:47,"462 North St, San Francisco, CA 94016" -294474,iPhone,1,700,11/09/19 09:09,"673 Jefferson St, Boston, MA 02215" -294474,Lightning Charging Cable,1,14.95,11/09/19 09:09,"673 Jefferson St, Boston, MA 02215" -294475,Apple Airpods Headphones,1,150,11/13/19 18:19,"390 5th St, Los Angeles, CA 90001" -294476,AA Batteries (4-pack),1,3.84,11/02/19 14:46,"880 6th St, Portland, OR 97035" -294477,Macbook Pro Laptop,1,1700,11/09/19 22:44,"297 Park St, San Francisco, CA 94016" -294478,Wired Headphones,1,11.99,11/24/19 17:19,"339 North St, Dallas, TX 75001" -294479,ThinkPad Laptop,1,999.99,11/17/19 07:38,"448 11th St, Los Angeles, CA 90001" -294480,AAA Batteries (4-pack),1,2.99,11/14/19 12:44,"913 Meadow St, Seattle, WA 98101" -294481,Bose SoundSport Headphones,1,99.99,11/15/19 10:47,"734 12th St, Seattle, WA 98101" -294482,AAA Batteries (4-pack),1,2.99,11/05/19 17:32,"713 Jackson St, Austin, TX 73301" -294483,AAA Batteries (4-pack),1,2.99,11/19/19 15:02,"249 4th St, New York City, NY 10001" -294484,Wired Headphones,1,11.99,11/22/19 20:33,"155 River St, San Francisco, CA 94016" -294484,Apple Airpods Headphones,1,150,11/22/19 20:33,"155 River St, San Francisco, CA 94016" -294485,AA Batteries (4-pack),3,3.84,11/05/19 19:43,"908 14th St, Austin, TX 73301" -294486,Wired Headphones,1,11.99,11/27/19 21:23,"910 Jefferson St, San Francisco, CA 94016" -294487,iPhone,1,700,11/27/19 18:39,"443 Jackson St, Austin, TX 73301" -294488,ThinkPad Laptop,1,999.99,11/18/19 13:33,"617 Cedar St, Los Angeles, CA 90001" -294489,USB-C Charging Cable,1,11.95,11/12/19 12:55,"398 Adams St, Seattle, WA 98101" -294490,27in 4K Gaming Monitor,1,389.99,11/22/19 14:51,"615 Hickory St, Seattle, WA 98101" -294491,AA Batteries (4-pack),1,3.84,11/23/19 11:33,"285 Ridge St, Dallas, TX 75001" -294492,Wired Headphones,1,11.99,11/26/19 12:03,"55 9th St, San Francisco, CA 94016" -294493,AA Batteries (4-pack),1,3.84,11/13/19 11:46,"42 Dogwood St, San Francisco, CA 94016" -294494,Bose SoundSport Headphones,1,99.99,11/15/19 19:13,"620 Jefferson St, Boston, MA 02215" -294495,AA Batteries (4-pack),1,3.84,11/18/19 19:12,"840 Pine St, Los Angeles, CA 90001" -294496,20in Monitor,1,109.99,11/19/19 12:29,"316 Ridge St, San Francisco, CA 94016" -294497,USB-C Charging Cable,1,11.95,11/30/19 14:03,"678 Madison St, Los Angeles, CA 90001" -294498,AA Batteries (4-pack),3,3.84,11/09/19 21:39,"476 Willow St, Los Angeles, CA 90001" -294499,34in Ultrawide Monitor,1,379.99,11/16/19 10:21,"245 River St, New York City, NY 10001" -294500,Bose SoundSport Headphones,1,99.99,11/04/19 11:49,"461 North St, San Francisco, CA 94016" -294501,Lightning Charging Cable,1,14.95,11/14/19 15:41,"84 Cedar St, Dallas, TX 75001" -294501,AA Batteries (4-pack),1,3.84,11/14/19 15:41,"84 Cedar St, Dallas, TX 75001" -294502,USB-C Charging Cable,1,11.95,11/24/19 11:38,"683 Chestnut St, Atlanta, GA 30301" -294503,Bose SoundSport Headphones,1,99.99,11/08/19 10:27,"341 1st St, San Francisco, CA 94016" -294504,Apple Airpods Headphones,1,150,11/08/19 20:00,"27 West St, Dallas, TX 75001" -294505,Wired Headphones,1,11.99,11/15/19 20:12,"958 13th St, Austin, TX 73301" -294506,27in FHD Monitor,1,149.99,11/04/19 19:32,"369 Hickory St, Boston, MA 02215" -294507,Lightning Charging Cable,1,14.95,11/18/19 12:30,"60 South St, Dallas, TX 75001" -294508,AA Batteries (4-pack),1,3.84,11/24/19 01:02,"947 Cherry St, Dallas, TX 75001" -294509,Bose SoundSport Headphones,1,99.99,11/06/19 18:46,"381 7th St, Dallas, TX 75001" -294510,AA Batteries (4-pack),1,3.84,11/26/19 20:57,"320 9th St, Boston, MA 02215" -294511,AA Batteries (4-pack),1,3.84,11/03/19 09:39,"790 12th St, Portland, OR 97035" -294512,AAA Batteries (4-pack),3,2.99,11/12/19 20:11,"850 Spruce St, San Francisco, CA 94016" -294513,AA Batteries (4-pack),2,3.84,11/24/19 08:38,"933 Sunset St, Austin, TX 73301" -294514,Lightning Charging Cable,1,14.95,11/24/19 17:53,"857 Ridge St, New York City, NY 10001" -294515,AAA Batteries (4-pack),2,2.99,11/20/19 07:10,"68 Center St, Austin, TX 73301" -294516,AA Batteries (4-pack),1,3.84,11/13/19 17:11,"475 Jefferson St, Dallas, TX 75001" -294517,Bose SoundSport Headphones,1,99.99,11/02/19 04:41,"697 Willow St, Atlanta, GA 30301" -294518,USB-C Charging Cable,1,11.95,11/16/19 16:37,"235 Maple St, Los Angeles, CA 90001" -294519,Bose SoundSport Headphones,1,99.99,11/23/19 14:19,"138 South St, Los Angeles, CA 90001" -294520,27in FHD Monitor,1,149.99,11/28/19 11:21,"691 West St, Boston, MA 02215" -294521,Lightning Charging Cable,1,14.95,11/09/19 07:51,"82 1st St, New York City, NY 10001" -294522,20in Monitor,1,109.99,11/05/19 12:39,"838 South St, Los Angeles, CA 90001" -294523,AAA Batteries (4-pack),2,2.99,11/26/19 12:58,"582 Lakeview St, Dallas, TX 75001" -294524,27in FHD Monitor,1,149.99,11/06/19 23:06,"246 Elm St, Boston, MA 02215" -294525,USB-C Charging Cable,1,11.95,11/29/19 16:09,"188 Wilson St, Atlanta, GA 30301" -294526,Google Phone,1,600,11/29/19 11:17,"357 Hickory St, Portland, ME 04101" -294526,Wired Headphones,1,11.99,11/29/19 11:17,"357 Hickory St, Portland, ME 04101" -294527,Wired Headphones,1,11.99,11/30/19 14:57,"823 Church St, Dallas, TX 75001" -294528,AAA Batteries (4-pack),1,2.99,11/26/19 15:29,"370 Dogwood St, Atlanta, GA 30301" -294529,Flatscreen TV,1,300,11/04/19 17:23,"496 14th St, Boston, MA 02215" -294530,Wired Headphones,1,11.99,11/19/19 16:00,"890 Hickory St, Portland, OR 97035" -294531,Lightning Charging Cable,1,14.95,11/04/19 08:49,"321 South St, Seattle, WA 98101" -294532,Lightning Charging Cable,1,14.95,11/26/19 18:14,"242 7th St, Los Angeles, CA 90001" -294533,AA Batteries (4-pack),1,3.84,11/10/19 10:02,"284 Chestnut St, Boston, MA 02215" -294534,AA Batteries (4-pack),1,3.84,11/25/19 12:29,"559 Johnson St, Los Angeles, CA 90001" -294535,USB-C Charging Cable,1,11.95,11/05/19 11:51,"232 12th St, San Francisco, CA 94016" -294536,Bose SoundSport Headphones,1,99.99,11/14/19 18:04,"559 Jackson St, Los Angeles, CA 90001" -294537,AAA Batteries (4-pack),2,2.99,11/09/19 15:43,"52 Forest St, San Francisco, CA 94016" -294538,Apple Airpods Headphones,1,150,11/29/19 12:00,"395 11th St, Seattle, WA 98101" -294539,Apple Airpods Headphones,1,150,11/21/19 11:17,"971 4th St, New York City, NY 10001" -294540,AA Batteries (4-pack),1,3.84,11/18/19 08:04,"8 Park St, Portland, OR 97035" -294541,Macbook Pro Laptop,1,1700,11/19/19 12:38,"809 1st St, Atlanta, GA 30301" -294542,AAA Batteries (4-pack),3,2.99,11/05/19 16:01,"923 6th St, Dallas, TX 75001" -294543,Google Phone,1,600,11/13/19 08:24,"567 Pine St, New York City, NY 10001" -294544,Macbook Pro Laptop,1,1700,11/05/19 15:10,"680 Maple St, Los Angeles, CA 90001" -294545,AAA Batteries (4-pack),1,2.99,11/11/19 08:02,"40 Forest St, San Francisco, CA 94016" -294546,AAA Batteries (4-pack),2,2.99,11/05/19 19:36,"223 Spruce St, San Francisco, CA 94016" -294547,Macbook Pro Laptop,1,1700,11/07/19 16:40,"691 Jefferson St, Boston, MA 02215" -294548,Apple Airpods Headphones,1,150,11/03/19 13:17,"681 Ridge St, New York City, NY 10001" -294549,Bose SoundSport Headphones,1,99.99,11/20/19 17:46,"430 Jackson St, San Francisco, CA 94016" -294550,34in Ultrawide Monitor,1,379.99,11/02/19 18:44,"261 Sunset St, San Francisco, CA 94016" -294551,Macbook Pro Laptop,1,1700,11/23/19 13:34,"616 Hickory St, Dallas, TX 75001" -294552,AA Batteries (4-pack),1,3.84,11/17/19 21:24,"682 Washington St, Austin, TX 73301" -294553,USB-C Charging Cable,1,11.95,11/29/19 13:52,"120 South St, Los Angeles, CA 90001" -294554,AA Batteries (4-pack),1,3.84,11/25/19 13:39,"508 Lincoln St, New York City, NY 10001" -294555,27in 4K Gaming Monitor,1,389.99,11/06/19 14:12,"363 Hickory St, New York City, NY 10001" -294556,Bose SoundSport Headphones,1,99.99,11/18/19 12:19,"402 Adams St, Seattle, WA 98101" -294557,Macbook Pro Laptop,1,1700,11/28/19 11:32,"226 Jefferson St, Boston, MA 02215" -294558,27in 4K Gaming Monitor,1,389.99,11/16/19 20:31,"457 5th St, San Francisco, CA 94016" -294559,AAA Batteries (4-pack),1,2.99,11/13/19 09:26,"602 Washington St, Seattle, WA 98101" -294560,34in Ultrawide Monitor,1,379.99,11/25/19 08:03,"604 Jackson St, San Francisco, CA 94016" -294561,Macbook Pro Laptop,1,1700,11/23/19 21:25,"357 11th St, Dallas, TX 75001" -294562,AA Batteries (4-pack),2,3.84,11/27/19 09:38,"14 Lakeview St, Atlanta, GA 30301" -294563,Wired Headphones,1,11.99,11/04/19 12:21,"565 Park St, Austin, TX 73301" -294564,34in Ultrawide Monitor,1,379.99,11/25/19 11:41,"192 Lincoln St, San Francisco, CA 94016" -294565,USB-C Charging Cable,1,11.95,11/12/19 06:13,"360 Jefferson St, Dallas, TX 75001" -294566,AA Batteries (4-pack),1,3.84,11/18/19 20:56,"559 14th St, San Francisco, CA 94016" -294567,USB-C Charging Cable,1,11.95,11/06/19 15:34,"988 Wilson St, Seattle, WA 98101" -294568,Apple Airpods Headphones,1,150,11/03/19 00:09,"126 Washington St, Atlanta, GA 30301" -294569,Wired Headphones,1,11.99,11/27/19 17:34,"967 9th St, Dallas, TX 75001" -294570,Bose SoundSport Headphones,1,99.99,11/11/19 13:19,"177 Jefferson St, Los Angeles, CA 90001" -294571,Lightning Charging Cable,1,14.95,11/26/19 06:59,"133 Hickory St, Portland, OR 97035" -294572,Wired Headphones,1,11.99,11/24/19 16:09,"220 Meadow St, San Francisco, CA 94016" -294573,USB-C Charging Cable,1,11.95,11/04/19 16:59,"59 1st St, Los Angeles, CA 90001" -294574,Lightning Charging Cable,1,14.95,11/17/19 12:19,"359 Dogwood St, San Francisco, CA 94016" -294575,AA Batteries (4-pack),1,3.84,11/06/19 13:55,"574 Walnut St, Dallas, TX 75001" -294576,ThinkPad Laptop,1,999.99,11/24/19 17:57,"338 Elm St, Boston, MA 02215" -294577,Bose SoundSport Headphones,1,99.99,11/04/19 10:58,"592 Adams St, Los Angeles, CA 90001" -294578,USB-C Charging Cable,1,11.95,11/30/19 16:10,"172 6th St, Austin, TX 73301" -294579,Apple Airpods Headphones,1,150,11/10/19 06:53,"101 6th St, San Francisco, CA 94016" -294580,Bose SoundSport Headphones,1,99.99,11/09/19 14:34,"913 Jackson St, San Francisco, CA 94016" -294581,AA Batteries (4-pack),1,3.84,11/23/19 18:29,"463 Lakeview St, Atlanta, GA 30301" -294582,Flatscreen TV,1,300,11/02/19 21:07,"76 Walnut St, New York City, NY 10001" -294583,iPhone,1,700,11/12/19 19:38,"787 4th St, Boston, MA 02215" -294583,Lightning Charging Cable,1,14.95,11/12/19 19:38,"787 4th St, Boston, MA 02215" -294584,Macbook Pro Laptop,1,1700,11/18/19 11:16,"286 Cedar St, San Francisco, CA 94016" -294585,AAA Batteries (4-pack),3,2.99,11/04/19 10:36,"301 Spruce St, New York City, NY 10001" -294586,AAA Batteries (4-pack),1,2.99,11/07/19 21:06,"676 Church St, New York City, NY 10001" -294587,AAA Batteries (4-pack),1,2.99,11/13/19 18:38,"992 South St, Los Angeles, CA 90001" -294588,Bose SoundSport Headphones,1,99.99,11/24/19 16:20,"736 13th St, New York City, NY 10001" -294589,Wired Headphones,1,11.99,11/13/19 18:52,"253 Madison St, New York City, NY 10001" -294590,AA Batteries (4-pack),1,3.84,11/12/19 12:32,"956 Lakeview St, Boston, MA 02215" -294590,Lightning Charging Cable,1,14.95,11/12/19 12:32,"956 Lakeview St, Boston, MA 02215" -294591,iPhone,1,700,11/01/19 15:48,"575 Cedar St, Los Angeles, CA 90001" -294591,Apple Airpods Headphones,1,150,11/01/19 15:48,"575 Cedar St, Los Angeles, CA 90001" -294592,AAA Batteries (4-pack),1,2.99,11/28/19 21:57,"647 4th St, New York City, NY 10001" -294593,USB-C Charging Cable,1,11.95,11/09/19 15:02,"201 1st St, Los Angeles, CA 90001" -294594,Apple Airpods Headphones,1,150,11/28/19 04:03,"557 Jackson St, San Francisco, CA 94016" -294595,USB-C Charging Cable,1,11.95,11/25/19 22:49,"918 Ridge St, New York City, NY 10001" -294596,AA Batteries (4-pack),1,3.84,11/11/19 22:39,"530 Main St, Portland, OR 97035" -294597,AAA Batteries (4-pack),1,2.99,11/07/19 19:44,"544 Park St, New York City, NY 10001" -294598,Google Phone,1,600,11/02/19 12:22,"283 Jefferson St, Atlanta, GA 30301" -294598,USB-C Charging Cable,1,11.95,11/02/19 12:22,"283 Jefferson St, Atlanta, GA 30301" -294599,AA Batteries (4-pack),1,3.84,11/10/19 17:12,"982 Highland St, Los Angeles, CA 90001" -294600,iPhone,1,700,11/20/19 16:21,"660 Meadow St, San Francisco, CA 94016" -294601,AA Batteries (4-pack),1,3.84,11/26/19 12:48,"235 12th St, Portland, ME 04101" -294602,Lightning Charging Cable,1,14.95,11/04/19 20:45,"395 Elm St, New York City, NY 10001" -294603,Bose SoundSport Headphones,1,99.99,11/28/19 20:45,"972 Forest St, San Francisco, CA 94016" -294604,AA Batteries (4-pack),1,3.84,11/26/19 00:46,"516 Spruce St, Boston, MA 02215" -294605,AAA Batteries (4-pack),1,2.99,11/16/19 12:37,"386 2nd St, Los Angeles, CA 90001" -294606,AAA Batteries (4-pack),1,2.99,11/04/19 21:08,"755 2nd St, Los Angeles, CA 90001" -294607,Lightning Charging Cable,1,14.95,11/22/19 18:54,"542 2nd St, Atlanta, GA 30301" -294608,iPhone,1,700,11/03/19 11:48,"923 10th St, New York City, NY 10001" -294609,USB-C Charging Cable,1,11.95,11/09/19 14:26,"742 Center St, San Francisco, CA 94016" -294610,USB-C Charging Cable,1,11.95,11/13/19 17:38,"158 Forest St, New York City, NY 10001" -294611,Lightning Charging Cable,1,14.95,11/29/19 15:32,"896 Chestnut St, New York City, NY 10001" -294612,27in 4K Gaming Monitor,1,389.99,11/03/19 21:54,"430 Center St, San Francisco, CA 94016" -294613,Bose SoundSport Headphones,1,99.99,11/04/19 13:18,"582 Willow St, Portland, OR 97035" -294614,Apple Airpods Headphones,1,150,11/29/19 11:08,"513 9th St, Los Angeles, CA 90001" -294615,AA Batteries (4-pack),1,3.84,11/22/19 18:27,"215 Highland St, New York City, NY 10001" -294615,34in Ultrawide Monitor,1,379.99,11/22/19 18:27,"215 Highland St, New York City, NY 10001" -294616,AA Batteries (4-pack),1,3.84,11/14/19 00:24,"971 Madison St, New York City, NY 10001" -294617,ThinkPad Laptop,1,999.99,11/09/19 23:30,"632 Lake St, Dallas, TX 75001" -294618,USB-C Charging Cable,1,11.95,11/18/19 22:17,"129 Adams St, Boston, MA 02215" -294619,AA Batteries (4-pack),3,3.84,11/08/19 17:34,"931 14th St, New York City, NY 10001" -294620,Flatscreen TV,1,300,11/09/19 20:40,"809 Hill St, Dallas, TX 75001" -294621,Wired Headphones,1,11.99,11/12/19 15:33,"323 1st St, Seattle, WA 98101" -294622,AAA Batteries (4-pack),3,2.99,11/25/19 00:28,"374 North St, San Francisco, CA 94016" -294623,Google Phone,1,600,11/23/19 12:31,"868 Sunset St, New York City, NY 10001" -294624,27in FHD Monitor,1,149.99,11/04/19 07:59,"712 Madison St, Portland, OR 97035" -294625,Lightning Charging Cable,2,14.95,11/17/19 01:57,"319 Willow St, Boston, MA 02215" -294626,USB-C Charging Cable,1,11.95,11/20/19 11:37,"464 Park St, San Francisco, CA 94016" -294627,27in FHD Monitor,1,149.99,11/29/19 20:54,"227 River St, Los Angeles, CA 90001" -294628,AA Batteries (4-pack),2,3.84,11/21/19 15:30,"773 8th St, Los Angeles, CA 90001" -294629,Wired Headphones,1,11.99,12/01/19 01:54,"668 Ridge St, San Francisco, CA 94016" -294630,27in FHD Monitor,1,149.99,11/01/19 21:36,"945 North St, San Francisco, CA 94016" -294631,27in 4K Gaming Monitor,1,389.99,11/19/19 09:40,"61 North St, San Francisco, CA 94016" -294632,iPhone,1,700,11/17/19 06:26,"18 Church St, Boston, MA 02215" -294633,Lightning Charging Cable,1,14.95,11/08/19 12:21,"330 Willow St, Atlanta, GA 30301" -294634,Wired Headphones,1,11.99,11/14/19 17:35,"481 Chestnut St, San Francisco, CA 94016" -294635,Wired Headphones,1,11.99,11/06/19 18:20,"488 Walnut St, Boston, MA 02215" -294636,USB-C Charging Cable,1,11.95,11/07/19 23:16,"158 Meadow St, Portland, OR 97035" -294637,27in 4K Gaming Monitor,1,389.99,11/10/19 13:20,"290 Jefferson St, Dallas, TX 75001" -294638,27in 4K Gaming Monitor,1,389.99,11/12/19 10:57,"905 Highland St, Dallas, TX 75001" -294639,Flatscreen TV,1,300,11/14/19 08:04,"725 4th St, Portland, ME 04101" -294640,Lightning Charging Cable,1,14.95,11/16/19 06:07,"592 14th St, Los Angeles, CA 90001" -294640,iPhone,1,700,11/16/19 06:07,"592 14th St, Los Angeles, CA 90001" -294641,Apple Airpods Headphones,1,150,11/21/19 13:56,"217 Cedar St, San Francisco, CA 94016" -294642,AAA Batteries (4-pack),1,2.99,11/28/19 20:35,"804 14th St, Seattle, WA 98101" -294643,USB-C Charging Cable,1,11.95,11/14/19 16:35,"77 Cherry St, San Francisco, CA 94016" -294644,Google Phone,1,600,11/06/19 11:36,"347 10th St, San Francisco, CA 94016" -294645,Flatscreen TV,1,300,11/16/19 17:08,"11 Willow St, Portland, OR 97035" -294646,USB-C Charging Cable,1,11.95,11/19/19 19:27,"845 Maple St, San Francisco, CA 94016" -294647,Lightning Charging Cable,1,14.95,11/10/19 16:10,"393 Washington St, New York City, NY 10001" -294648,Lightning Charging Cable,1,14.95,11/08/19 15:21,"594 10th St, Los Angeles, CA 90001" -294649,Bose SoundSport Headphones,1,99.99,11/29/19 16:18,"364 North St, Los Angeles, CA 90001" -294650,Lightning Charging Cable,1,14.95,11/20/19 21:36,"742 Pine St, Boston, MA 02215" -294651,USB-C Charging Cable,1,11.95,11/13/19 21:06,"348 8th St, San Francisco, CA 94016" -294652,Flatscreen TV,1,300,11/07/19 11:42,"389 Meadow St, Los Angeles, CA 90001" -294653,Lightning Charging Cable,1,14.95,11/30/19 10:49,"90 14th St, San Francisco, CA 94016" -294654,Macbook Pro Laptop,1,1700,11/10/19 20:19,"204 River St, Boston, MA 02215" -294655,USB-C Charging Cable,1,11.95,11/21/19 13:07,"827 Meadow St, San Francisco, CA 94016" -294656,27in 4K Gaming Monitor,1,389.99,11/06/19 12:04,"449 Hill St, New York City, NY 10001" -294657,20in Monitor,1,109.99,11/30/19 18:04,"422 Elm St, Dallas, TX 75001" -294658,Wired Headphones,1,11.99,11/23/19 11:27,"95 4th St, Atlanta, GA 30301" -294659,Apple Airpods Headphones,1,150,11/23/19 15:43,"299 11th St, Boston, MA 02215" -294659,Bose SoundSport Headphones,1,99.99,11/23/19 15:43,"299 11th St, Boston, MA 02215" -294660,USB-C Charging Cable,1,11.95,11/04/19 23:05,"419 Madison St, Los Angeles, CA 90001" -294661,Bose SoundSport Headphones,1,99.99,11/15/19 12:12,"392 Maple St, San Francisco, CA 94016" -294662,Lightning Charging Cable,2,14.95,11/30/19 18:32,"728 1st St, Portland, OR 97035" -294663,Flatscreen TV,1,300,11/12/19 09:54,"342 Forest St, Boston, MA 02215" -294664,Lightning Charging Cable,1,14.95,11/30/19 21:55,"264 10th St, San Francisco, CA 94016" -294665,Apple Airpods Headphones,1,150,11/10/19 21:36,"622 5th St, Boston, MA 02215" -294666,Apple Airpods Headphones,1,150,11/07/19 20:46,"170 7th St, San Francisco, CA 94016" -294667,Wired Headphones,1,11.99,11/18/19 10:35,"547 10th St, San Francisco, CA 94016" -294668,USB-C Charging Cable,1,11.95,11/26/19 13:10,"136 Jackson St, San Francisco, CA 94016" -294668,20in Monitor,1,109.99,11/26/19 13:10,"136 Jackson St, San Francisco, CA 94016" -294669,AAA Batteries (4-pack),1,2.99,11/16/19 10:56,"348 Lakeview St, Los Angeles, CA 90001" -294669,Lightning Charging Cable,1,14.95,11/16/19 10:56,"348 Lakeview St, Los Angeles, CA 90001" -294670,Bose SoundSport Headphones,1,99.99,11/08/19 12:00,"471 Hickory St, Los Angeles, CA 90001" -294671,Google Phone,1,600,11/02/19 19:56,"445 River St, Portland, OR 97035" -294671,USB-C Charging Cable,1,11.95,11/02/19 19:56,"445 River St, Portland, OR 97035" -294672,27in FHD Monitor,1,149.99,11/19/19 16:30,"877 Lincoln St, San Francisco, CA 94016" -294673,Lightning Charging Cable,1,14.95,11/07/19 08:16,"876 Adams St, Portland, OR 97035" -294674,USB-C Charging Cable,1,11.95,11/04/19 15:58,"581 Lake St, Atlanta, GA 30301" -294675,USB-C Charging Cable,1,11.95,11/24/19 10:27,"548 Main St, Portland, ME 04101" -294676,Bose SoundSport Headphones,1,99.99,11/05/19 08:33,"523 8th St, San Francisco, CA 94016" -294677,Bose SoundSport Headphones,1,99.99,11/13/19 23:56,"957 River St, San Francisco, CA 94016" -294678,Flatscreen TV,1,300,11/16/19 08:10,"673 Hickory St, Austin, TX 73301" -294679,20in Monitor,1,109.99,11/10/19 11:45,"231 Adams St, Boston, MA 02215" -294680,USB-C Charging Cable,1,11.95,11/08/19 13:06,"977 14th St, Los Angeles, CA 90001" -294681,AAA Batteries (4-pack),1,2.99,11/21/19 22:43,"936 4th St, Los Angeles, CA 90001" -294682,Lightning Charging Cable,1,14.95,11/28/19 20:40,"388 Forest St, San Francisco, CA 94016" -294683,AAA Batteries (4-pack),3,2.99,11/06/19 11:09,"81 Lincoln St, Austin, TX 73301" -294684,AA Batteries (4-pack),1,3.84,11/04/19 22:21,"759 1st St, Los Angeles, CA 90001" -294685,AAA Batteries (4-pack),2,2.99,11/27/19 17:55,"225 11th St, San Francisco, CA 94016" -294686,Wired Headphones,1,11.99,11/20/19 20:59,"429 Washington St, Dallas, TX 75001" -294687,Lightning Charging Cable,1,14.95,11/18/19 15:03,"152 Hickory St, Dallas, TX 75001" -294688,AAA Batteries (4-pack),1,2.99,11/21/19 14:39,"321 Adams St, Portland, ME 04101" -294689,Lightning Charging Cable,1,14.95,11/26/19 19:40,"823 Johnson St, Seattle, WA 98101" -294690,Lightning Charging Cable,1,14.95,11/21/19 15:48,"244 Jackson St, New York City, NY 10001" -294691,AA Batteries (4-pack),1,3.84,11/10/19 10:41,"176 Lake St, San Francisco, CA 94016" -294692,Lightning Charging Cable,1,14.95,11/10/19 21:18,"212 6th St, San Francisco, CA 94016" -294693,Wired Headphones,1,11.99,11/26/19 11:19,"992 14th St, San Francisco, CA 94016" -294694,Wired Headphones,1,11.99,11/10/19 08:19,"623 Main St, San Francisco, CA 94016" -294695,27in 4K Gaming Monitor,1,389.99,11/11/19 10:37,"654 Center St, Los Angeles, CA 90001" -294696,Bose SoundSport Headphones,1,99.99,11/29/19 21:30,"542 7th St, Boston, MA 02215" -294697,Wired Headphones,1,11.99,11/13/19 13:53,"949 Meadow St, Los Angeles, CA 90001" -294698,ThinkPad Laptop,1,999.99,11/14/19 15:57,"902 Jackson St, San Francisco, CA 94016" -294699,AAA Batteries (4-pack),3,2.99,11/05/19 00:09,"820 2nd St, Dallas, TX 75001" -294700,Lightning Charging Cable,1,14.95,11/13/19 11:18,"687 Main St, Atlanta, GA 30301" -294701,ThinkPad Laptop,1,999.99,11/23/19 22:32,"70 Spruce St, New York City, NY 10001" -294702,Apple Airpods Headphones,1,150,11/05/19 11:04,"606 1st St, Boston, MA 02215" -294703,Wired Headphones,1,11.99,11/19/19 11:26,"459 1st St, Boston, MA 02215" -294704,34in Ultrawide Monitor,1,379.99,11/21/19 10:05,"440 Cherry St, San Francisco, CA 94016" -294705,Wired Headphones,1,11.99,11/26/19 11:48,"21 7th St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -294706,AAA Batteries (4-pack),1,2.99,11/30/19 14:07,"152 Adams St, Atlanta, GA 30301" -294707,Flatscreen TV,1,300,11/18/19 07:35,"468 Center St, San Francisco, CA 94016" -294708,Lightning Charging Cable,1,14.95,11/25/19 14:50,"116 Pine St, New York City, NY 10001" -294709,AAA Batteries (4-pack),1,2.99,11/28/19 12:54,"430 10th St, Boston, MA 02215" -294710,Bose SoundSport Headphones,1,99.99,11/11/19 15:21,"86 Pine St, Los Angeles, CA 90001" -294711,USB-C Charging Cable,1,11.95,11/08/19 19:08,"458 5th St, Atlanta, GA 30301" -294712,Apple Airpods Headphones,1,150,11/15/19 11:58,"414 Meadow St, Dallas, TX 75001" -294713,Flatscreen TV,1,300,11/24/19 16:02,"800 12th St, San Francisco, CA 94016" -294714,AA Batteries (4-pack),2,3.84,11/22/19 05:11,"155 Lincoln St, Boston, MA 02215" -294715,27in FHD Monitor,1,149.99,11/29/19 08:33,"986 Dogwood St, San Francisco, CA 94016" -294716,Bose SoundSport Headphones,1,99.99,11/19/19 19:09,"721 Jefferson St, Seattle, WA 98101" -294717,Lightning Charging Cable,1,14.95,11/01/19 07:45,"755 Lakeview St, Atlanta, GA 30301" -294718,iPhone,1,700,11/06/19 14:05,"388 Hickory St, New York City, NY 10001" -294718,Lightning Charging Cable,1,14.95,11/06/19 14:05,"388 Hickory St, New York City, NY 10001" -294719,Wired Headphones,1,11.99,11/06/19 13:52,"967 West St, Dallas, TX 75001" -294720,iPhone,1,700,11/20/19 10:45,"480 11th St, Seattle, WA 98101" -294720,ThinkPad Laptop,1,999.99,11/20/19 10:45,"480 11th St, Seattle, WA 98101" -294721,AA Batteries (4-pack),2,3.84,11/09/19 04:23,"216 14th St, San Francisco, CA 94016" -294722,Lightning Charging Cable,1,14.95,11/20/19 13:23,"594 Cedar St, San Francisco, CA 94016" -294723,Flatscreen TV,1,300,11/19/19 08:40,"243 14th St, Boston, MA 02215" -294724,Wired Headphones,1,11.99,11/20/19 15:51,"273 Maple St, New York City, NY 10001" -294725,Wired Headphones,1,11.99,11/10/19 21:12,"796 Main St, Seattle, WA 98101" -294726,USB-C Charging Cable,1,11.95,11/08/19 19:34,"679 Willow St, Boston, MA 02215" -294727,20in Monitor,1,109.99,11/25/19 02:10,"583 4th St, Los Angeles, CA 90001" -294728,AA Batteries (4-pack),1,3.84,11/18/19 14:13,"97 1st St, Atlanta, GA 30301" -294729,AA Batteries (4-pack),1,3.84,11/30/19 19:46,"673 Cherry St, New York City, NY 10001" -294730,27in 4K Gaming Monitor,1,389.99,11/10/19 13:07,"977 Spruce St, San Francisco, CA 94016" -294731,Vareebadd Phone,1,400,11/17/19 06:52,"978 10th St, New York City, NY 10001" -294732,AAA Batteries (4-pack),4,2.99,11/18/19 11:40,"890 Chestnut St, Dallas, TX 75001" -294732,Apple Airpods Headphones,1,150,11/18/19 11:40,"890 Chestnut St, Dallas, TX 75001" -294733,Bose SoundSport Headphones,1,99.99,11/01/19 21:21,"834 Wilson St, San Francisco, CA 94016" -294734,Apple Airpods Headphones,1,150,11/07/19 12:21,"922 Lincoln St, Los Angeles, CA 90001" -294735,Lightning Charging Cable,1,14.95,11/09/19 03:01,"815 10th St, Dallas, TX 75001" -294736,Apple Airpods Headphones,1,150,11/30/19 14:47,"708 North St, Los Angeles, CA 90001" -294737,AA Batteries (4-pack),1,3.84,11/06/19 20:45,"93 Washington St, Los Angeles, CA 90001" -294737,Lightning Charging Cable,1,14.95,11/06/19 20:45,"93 Washington St, Los Angeles, CA 90001" -294738,27in FHD Monitor,1,149.99,11/02/19 23:31,"158 8th St, San Francisco, CA 94016" -294739,AAA Batteries (4-pack),1,2.99,11/28/19 22:14,"426 Center St, Boston, MA 02215" -294740,AA Batteries (4-pack),1,3.84,11/24/19 12:31,"429 11th St, Portland, OR 97035" -294741,AA Batteries (4-pack),1,3.84,11/28/19 20:44,"841 7th St, New York City, NY 10001" -294742,Lightning Charging Cable,1,14.95,11/23/19 13:52,"604 Cherry St, Boston, MA 02215" -294743,27in FHD Monitor,1,149.99,11/09/19 13:22,"585 South St, New York City, NY 10001" -294744,Bose SoundSport Headphones,1,99.99,11/06/19 14:32,"685 West St, New York City, NY 10001" -294745,AAA Batteries (4-pack),1,2.99,11/12/19 08:10,"696 Forest St, Seattle, WA 98101" -294746,Google Phone,1,600,11/24/19 17:14,"869 Madison St, Seattle, WA 98101" -294747,ThinkPad Laptop,1,999.99,11/14/19 10:07,"778 7th St, Los Angeles, CA 90001" -294748,AA Batteries (4-pack),4,3.84,11/14/19 14:49,"788 Maple St, San Francisco, CA 94016" -294749,Wired Headphones,1,11.99,11/25/19 21:28,"994 Jackson St, San Francisco, CA 94016" -294750,27in 4K Gaming Monitor,1,389.99,11/10/19 11:53,"240 Walnut St, San Francisco, CA 94016" -294751,Macbook Pro Laptop,1,1700,11/11/19 12:30,"251 Hill St, Los Angeles, CA 90001" -294752,AA Batteries (4-pack),1,3.84,11/12/19 13:35,"367 Lake St, New York City, NY 10001" -294753,AAA Batteries (4-pack),1,2.99,11/16/19 12:19,"834 Washington St, Boston, MA 02215" -294754,Wired Headphones,1,11.99,11/26/19 20:35,"211 9th St, Boston, MA 02215" -294755,AAA Batteries (4-pack),1,2.99,11/17/19 20:54,"213 14th St, Austin, TX 73301" -294756,Apple Airpods Headphones,1,150,11/09/19 23:15,"474 Adams St, New York City, NY 10001" -294757,AA Batteries (4-pack),1,3.84,11/21/19 11:39,"132 Washington St, Los Angeles, CA 90001" -294758,USB-C Charging Cable,2,11.95,11/11/19 20:27,"681 Cherry St, San Francisco, CA 94016" -294759,AA Batteries (4-pack),1,3.84,11/20/19 09:41,"209 Jackson St, Los Angeles, CA 90001" -294760,AAA Batteries (4-pack),3,2.99,11/07/19 22:37,"421 7th St, Seattle, WA 98101" -294761,Wired Headphones,1,11.99,11/05/19 12:01,"574 Hickory St, Seattle, WA 98101" -294762,AAA Batteries (4-pack),1,2.99,11/05/19 13:41,"860 Elm St, Los Angeles, CA 90001" -294763,AAA Batteries (4-pack),1,2.99,11/09/19 07:47,"333 North St, Los Angeles, CA 90001" -294764,Bose SoundSport Headphones,1,99.99,11/21/19 23:37,"266 Center St, Dallas, TX 75001" -294765,Bose SoundSport Headphones,1,99.99,11/25/19 11:16,"344 Meadow St, San Francisco, CA 94016" -294766,AAA Batteries (4-pack),2,2.99,11/15/19 11:02,"966 Jefferson St, Los Angeles, CA 90001" -294767,Lightning Charging Cable,1,14.95,11/13/19 21:07,"924 West St, Boston, MA 02215" -294768,AA Batteries (4-pack),1,3.84,11/15/19 22:49,"1 Spruce St, Boston, MA 02215" -294769,USB-C Charging Cable,1,11.95,11/01/19 13:19,"154 River St, Dallas, TX 75001" -294770,Lightning Charging Cable,1,14.95,11/06/19 23:30,"238 2nd St, Dallas, TX 75001" -294771,Apple Airpods Headphones,1,150,11/01/19 21:31,"983 Meadow St, Austin, TX 73301" -294772,Bose SoundSport Headphones,1,99.99,11/17/19 16:50,"7 12th St, Boston, MA 02215" -294773,Lightning Charging Cable,1,14.95,11/10/19 13:50,"241 Hickory St, San Francisco, CA 94016" -294774,AA Batteries (4-pack),1,3.84,11/07/19 22:14,"699 North St, Boston, MA 02215" -294775,Wired Headphones,1,11.99,11/07/19 18:01,"87 1st St, San Francisco, CA 94016" -294776,Google Phone,1,600,11/23/19 19:11,"758 Center St, Boston, MA 02215" -294777,USB-C Charging Cable,1,11.95,11/17/19 12:09,"479 11th St, Atlanta, GA 30301" -294778,USB-C Charging Cable,1,11.95,11/26/19 19:45,"233 12th St, Los Angeles, CA 90001" -294779,AAA Batteries (4-pack),1,2.99,11/10/19 16:41,"105 Lake St, Los Angeles, CA 90001" -294780,AAA Batteries (4-pack),1,2.99,11/04/19 13:20,"824 River St, New York City, NY 10001" -294781,ThinkPad Laptop,1,999.99,11/06/19 20:57,"614 Forest St, Dallas, TX 75001" -294782,Apple Airpods Headphones,1,150,11/14/19 22:23,"798 Sunset St, Boston, MA 02215" -294783,Wired Headphones,1,11.99,11/17/19 06:26,"127 Church St, Los Angeles, CA 90001" -294784,Bose SoundSport Headphones,1,99.99,11/01/19 18:28,"419 1st St, Los Angeles, CA 90001" -294785,Lightning Charging Cable,1,14.95,11/04/19 19:15,"152 Willow St, Atlanta, GA 30301" -294786,Apple Airpods Headphones,1,150,11/09/19 10:01,"873 Pine St, Seattle, WA 98101" -294787,Macbook Pro Laptop,1,1700,11/19/19 15:57,"992 Maple St, Austin, TX 73301" -294788,AA Batteries (4-pack),1,3.84,11/22/19 11:31,"528 Chestnut St, Atlanta, GA 30301" -294789,Lightning Charging Cable,1,14.95,11/15/19 13:21,"548 Sunset St, Dallas, TX 75001" -294790,Google Phone,1,600,11/25/19 09:47,"841 Ridge St, Boston, MA 02215" -294791,AAA Batteries (4-pack),1,2.99,11/28/19 13:43,"45 12th St, Atlanta, GA 30301" -294792,Lightning Charging Cable,1,14.95,11/19/19 21:32,"316 Johnson St, Los Angeles, CA 90001" -,,,,, -294793,Apple Airpods Headphones,1,150,11/02/19 14:04,"520 5th St, Seattle, WA 98101" -294794,Flatscreen TV,1,300,11/05/19 14:25,"973 Cherry St, New York City, NY 10001" -294795,AA Batteries (4-pack),1,3.84,11/30/19 23:04,"268 Johnson St, Seattle, WA 98101" -294796,iPhone,1,700,11/12/19 06:48,"393 4th St, San Francisco, CA 94016" -294796,Lightning Charging Cable,1,14.95,11/12/19 06:48,"393 4th St, San Francisco, CA 94016" -294797,Bose SoundSport Headphones,1,99.99,11/05/19 18:18,"217 Lakeview St, San Francisco, CA 94016" -294798,27in FHD Monitor,1,149.99,11/29/19 19:29,"542 Adams St, Portland, OR 97035" -294799,AAA Batteries (4-pack),1,2.99,11/10/19 12:43,"289 South St, Seattle, WA 98101" -294800,AAA Batteries (4-pack),3,2.99,11/15/19 12:29,"466 Jefferson St, San Francisco, CA 94016" -294801,AA Batteries (4-pack),2,3.84,11/04/19 06:48,"707 Lincoln St, Boston, MA 02215" -294802,Apple Airpods Headphones,1,150,11/12/19 10:34,"237 10th St, San Francisco, CA 94016" -294803,iPhone,1,700,11/27/19 20:56,"769 Meadow St, Austin, TX 73301" -294804,Apple Airpods Headphones,1,150,11/08/19 14:34,"35 Washington St, Dallas, TX 75001" -294805,AA Batteries (4-pack),1,3.84,11/08/19 19:56,"714 Cedar St, San Francisco, CA 94016" -294806,Apple Airpods Headphones,1,150,11/07/19 18:22,"994 Elm St, Los Angeles, CA 90001" -294807,Apple Airpods Headphones,1,150,11/04/19 18:57,"768 Johnson St, New York City, NY 10001" -,,,,, -294808,AA Batteries (4-pack),1,3.84,11/26/19 10:42,"725 Lakeview St, San Francisco, CA 94016" -294809,AAA Batteries (4-pack),1,2.99,11/28/19 15:31,"334 13th St, Atlanta, GA 30301" -294810,ThinkPad Laptop,1,999.99,11/15/19 12:40,"739 1st St, Portland, OR 97035" -294811,Wired Headphones,1,11.99,11/22/19 14:11,"911 Chestnut St, San Francisco, CA 94016" -294811,Bose SoundSport Headphones,1,99.99,11/22/19 14:11,"911 Chestnut St, San Francisco, CA 94016" -294812,Apple Airpods Headphones,1,150,11/21/19 14:06,"180 11th St, Portland, OR 97035" -294813,Apple Airpods Headphones,1,150,11/15/19 12:58,"618 Maple St, Seattle, WA 98101" -,,,,, -294814,27in 4K Gaming Monitor,1,389.99,11/24/19 16:02,"206 Wilson St, New York City, NY 10001" -294815,AAA Batteries (4-pack),1,2.99,11/20/19 09:00,"53 West St, Los Angeles, CA 90001" -294816,Wired Headphones,1,11.99,11/07/19 15:37,"597 1st St, New York City, NY 10001" -294817,Bose SoundSport Headphones,1,99.99,11/19/19 20:05,"756 Chestnut St, Seattle, WA 98101" -294818,Lightning Charging Cable,1,14.95,11/21/19 18:01,"860 Ridge St, Boston, MA 02215" -294819,Lightning Charging Cable,1,14.95,11/24/19 18:52,"636 Elm St, San Francisco, CA 94016" -294820,ThinkPad Laptop,1,999.99,11/07/19 14:20,"733 11th St, New York City, NY 10001" -294821,AAA Batteries (4-pack),1,2.99,11/26/19 09:51,"563 River St, San Francisco, CA 94016" -294822,AAA Batteries (4-pack),5,2.99,11/09/19 12:18,"733 Forest St, San Francisco, CA 94016" -294823,AA Batteries (4-pack),1,3.84,11/13/19 15:57,"874 12th St, Austin, TX 73301" -294824,Apple Airpods Headphones,1,150,11/02/19 11:21,"435 Jackson St, Austin, TX 73301" -294825,AA Batteries (4-pack),1,3.84,11/02/19 11:26,"315 Sunset St, Atlanta, GA 30301" -294826,Lightning Charging Cable,1,14.95,11/04/19 17:58,"825 Jackson St, New York City, NY 10001" -294827,Lightning Charging Cable,1,14.95,11/05/19 20:19,"973 Hill St, New York City, NY 10001" -294828,iPhone,1,700,11/14/19 19:57,"547 West St, Portland, OR 97035" -294829,Lightning Charging Cable,1,14.95,11/06/19 10:35,"158 6th St, Los Angeles, CA 90001" -294830,iPhone,1,700,11/08/19 13:05,"385 9th St, Los Angeles, CA 90001" -294830,Lightning Charging Cable,1,14.95,11/08/19 13:05,"385 9th St, Los Angeles, CA 90001" -294830,Apple Airpods Headphones,1,150,11/08/19 13:05,"385 9th St, Los Angeles, CA 90001" -294831,AAA Batteries (4-pack),1,2.99,11/11/19 13:53,"493 Lincoln St, Los Angeles, CA 90001" -294832,Macbook Pro Laptop,1,1700,11/24/19 09:45,"303 9th St, Seattle, WA 98101" -294832,34in Ultrawide Monitor,1,379.99,11/24/19 09:45,"303 9th St, Seattle, WA 98101" -294833,Lightning Charging Cable,1,14.95,11/14/19 19:49,"293 9th St, New York City, NY 10001" -294834,AA Batteries (4-pack),1,3.84,11/23/19 10:05,"833 Meadow St, Los Angeles, CA 90001" -294835,AA Batteries (4-pack),1,3.84,11/25/19 12:04,"301 Willow St, Seattle, WA 98101" -294836,Lightning Charging Cable,1,14.95,11/20/19 07:44,"150 Forest St, Dallas, TX 75001" -294837,Wired Headphones,1,11.99,11/27/19 12:48,"178 Main St, Los Angeles, CA 90001" -294838,iPhone,1,700,11/02/19 00:48,"107 7th St, Seattle, WA 98101" -294839,Apple Airpods Headphones,1,150,11/09/19 21:21,"283 Forest St, Austin, TX 73301" -294840,Lightning Charging Cable,1,14.95,11/04/19 04:33,"383 Lakeview St, Boston, MA 02215" -294840,USB-C Charging Cable,1,11.95,11/04/19 04:33,"383 Lakeview St, Boston, MA 02215" -294841,Lightning Charging Cable,1,14.95,11/08/19 14:31,"117 River St, Los Angeles, CA 90001" -294842,Flatscreen TV,1,300,11/10/19 08:13,"12 Lake St, Seattle, WA 98101" -294843,USB-C Charging Cable,1,11.95,11/18/19 12:04,"313 Washington St, San Francisco, CA 94016" -294844,ThinkPad Laptop,1,999.99,11/24/19 20:35,"475 Jefferson St, Atlanta, GA 30301" -294845,Lightning Charging Cable,1,14.95,11/10/19 21:36,"290 Main St, Austin, TX 73301" -294846,Apple Airpods Headphones,1,150,11/18/19 13:02,"650 8th St, Austin, TX 73301" -294847,Wired Headphones,1,11.99,11/29/19 18:10,"329 Chestnut St, Dallas, TX 75001" -294848,USB-C Charging Cable,1,11.95,11/10/19 18:51,"88 Ridge St, Dallas, TX 75001" -294849,Wired Headphones,1,11.99,11/04/19 16:44,"19 Hickory St, Boston, MA 02215" -294850,27in 4K Gaming Monitor,1,389.99,11/16/19 22:03,"926 Wilson St, San Francisco, CA 94016" -294851,Lightning Charging Cable,1,14.95,11/04/19 13:03,"54 Washington St, Los Angeles, CA 90001" -294852,27in FHD Monitor,1,149.99,11/04/19 10:01,"593 6th St, Portland, OR 97035" -294853,Lightning Charging Cable,1,14.95,11/27/19 17:57,"939 Main St, New York City, NY 10001" -294854,AA Batteries (4-pack),2,3.84,11/05/19 02:53,"788 5th St, San Francisco, CA 94016" -294855,Lightning Charging Cable,1,14.95,11/21/19 10:59,"559 Center St, Atlanta, GA 30301" -294856,27in 4K Gaming Monitor,1,389.99,11/02/19 20:04,"227 Center St, Seattle, WA 98101" -294857,USB-C Charging Cable,1,11.95,11/13/19 09:40,"980 Walnut St, Atlanta, GA 30301" -294858,AAA Batteries (4-pack),1,2.99,11/03/19 12:05,"983 4th St, Portland, OR 97035" -294859,USB-C Charging Cable,1,11.95,11/03/19 09:29,"73 Hickory St, Atlanta, GA 30301" -294860,Bose SoundSport Headphones,1,99.99,11/04/19 12:06,"921 11th St, Boston, MA 02215" -294861,Bose SoundSport Headphones,1,99.99,11/04/19 10:50,"845 Chestnut St, Atlanta, GA 30301" -294862,27in FHD Monitor,1,149.99,11/19/19 16:51,"126 12th St, Portland, OR 97035" -294862,AA Batteries (4-pack),1,3.84,11/19/19 16:51,"126 12th St, Portland, OR 97035" -294863,Apple Airpods Headphones,1,150,11/25/19 09:35,"301 Madison St, Boston, MA 02215" -294864,AA Batteries (4-pack),1,3.84,11/14/19 20:17,"272 Maple St, Boston, MA 02215" -294865,AAA Batteries (4-pack),2,2.99,11/12/19 22:36,"740 4th St, Portland, OR 97035" -294866,AA Batteries (4-pack),2,3.84,11/26/19 19:49,"216 Wilson St, Los Angeles, CA 90001" -294867,Lightning Charging Cable,1,14.95,11/03/19 20:39,"991 Lake St, San Francisco, CA 94016" -294868,Apple Airpods Headphones,1,150,11/08/19 09:25,"21 Forest St, Portland, OR 97035" -294869,USB-C Charging Cable,1,11.95,11/08/19 16:40,"83 South St, New York City, NY 10001" -294870,AA Batteries (4-pack),1,3.84,11/17/19 10:17,"304 Chestnut St, Dallas, TX 75001" -294871,AA Batteries (4-pack),2,3.84,11/10/19 01:29,"79 14th St, Seattle, WA 98101" -294872,USB-C Charging Cable,1,11.95,11/29/19 16:09,"667 River St, Los Angeles, CA 90001" -294873,Flatscreen TV,1,300,11/06/19 16:21,"824 Church St, San Francisco, CA 94016" -294874,AAA Batteries (4-pack),1,2.99,11/01/19 10:10,"236 Walnut St, Atlanta, GA 30301" -294875,Macbook Pro Laptop,1,1700,11/26/19 23:44,"117 12th St, Boston, MA 02215" -294876,Lightning Charging Cable,1,14.95,11/22/19 10:22,"636 Dogwood St, Austin, TX 73301" -294877,34in Ultrawide Monitor,1,379.99,11/14/19 21:42,"64 1st St, Seattle, WA 98101" -294878,Flatscreen TV,1,300,11/13/19 16:46,"482 9th St, Los Angeles, CA 90001" -294879,Lightning Charging Cable,1,14.95,11/08/19 10:28,"508 Hill St, Boston, MA 02215" -294880,Lightning Charging Cable,1,14.95,11/29/19 23:46,"988 Wilson St, New York City, NY 10001" -294881,AAA Batteries (4-pack),1,2.99,11/30/19 16:59,"437 Lakeview St, San Francisco, CA 94016" -294882,AAA Batteries (4-pack),2,2.99,11/15/19 09:19,"244 Adams St, Portland, OR 97035" -294883,27in 4K Gaming Monitor,1,389.99,11/28/19 15:19,"928 14th St, New York City, NY 10001" -294884,AAA Batteries (4-pack),1,2.99,11/05/19 18:06,"861 Cherry St, Seattle, WA 98101" -294885,iPhone,1,700,11/09/19 13:59,"970 Highland St, New York City, NY 10001" -294885,Apple Airpods Headphones,1,150,11/09/19 13:59,"970 Highland St, New York City, NY 10001" -294886,Apple Airpods Headphones,1,150,11/04/19 23:40,"763 Lakeview St, San Francisco, CA 94016" -294887,34in Ultrawide Monitor,1,379.99,11/29/19 18:58,"973 Forest St, New York City, NY 10001" -294888,USB-C Charging Cable,1,11.95,11/28/19 11:40,"910 Johnson St, San Francisco, CA 94016" -294889,ThinkPad Laptop,1,999.99,11/03/19 14:10,"826 1st St, Los Angeles, CA 90001" -294890,Wired Headphones,1,11.99,11/19/19 11:28,"240 Cherry St, San Francisco, CA 94016" -294891,Bose SoundSport Headphones,1,99.99,11/10/19 23:51,"97 11th St, Los Angeles, CA 90001" -294892,Lightning Charging Cable,1,14.95,11/05/19 14:36,"182 Lake St, Boston, MA 02215" -294893,Lightning Charging Cable,1,14.95,11/06/19 13:30,"870 Cherry St, Dallas, TX 75001" -294894,Lightning Charging Cable,1,14.95,11/30/19 08:42,"605 6th St, Los Angeles, CA 90001" -294895,USB-C Charging Cable,1,11.95,11/24/19 12:16,"212 Jackson St, Seattle, WA 98101" -294896,Flatscreen TV,1,300,11/12/19 09:13,"337 Pine St, New York City, NY 10001" -294897,AAA Batteries (4-pack),2,2.99,11/30/19 17:55,"957 Main St, Boston, MA 02215" -294898,Apple Airpods Headphones,1,150,11/06/19 19:20,"830 11th St, New York City, NY 10001" -294899,Google Phone,1,600,11/16/19 17:05,"365 Spruce St, San Francisco, CA 94016" -294900,AAA Batteries (4-pack),2,2.99,11/11/19 00:23,"455 Johnson St, Los Angeles, CA 90001" -294901,Lightning Charging Cable,1,14.95,11/12/19 15:00,"281 Sunset St, Portland, OR 97035" -294902,Wired Headphones,1,11.99,11/28/19 15:26,"119 Cedar St, Seattle, WA 98101" -294903,27in 4K Gaming Monitor,1,389.99,11/22/19 23:34,"30 8th St, Atlanta, GA 30301" -294904,Apple Airpods Headphones,1,150,11/25/19 20:05,"897 7th St, Los Angeles, CA 90001" -294905,USB-C Charging Cable,1,11.95,11/12/19 20:01,"754 Wilson St, New York City, NY 10001" -294906,iPhone,1,700,11/24/19 20:04,"242 Willow St, Portland, OR 97035" -294906,Lightning Charging Cable,1,14.95,11/24/19 20:04,"242 Willow St, Portland, OR 97035" -294907,iPhone,1,700,11/25/19 14:04,"211 6th St, New York City, NY 10001" -294908,USB-C Charging Cable,1,11.95,11/07/19 11:45,"902 Pine St, Dallas, TX 75001" -294909,Lightning Charging Cable,1,14.95,11/08/19 14:41,"834 Adams St, Boston, MA 02215" -294910,AAA Batteries (4-pack),2,2.99,11/03/19 15:16,"725 12th St, San Francisco, CA 94016" -294911,Lightning Charging Cable,1,14.95,11/08/19 21:42,"425 Sunset St, San Francisco, CA 94016" -294912,Lightning Charging Cable,1,14.95,11/14/19 15:01,"799 Madison St, Dallas, TX 75001" -294913,USB-C Charging Cable,1,11.95,11/11/19 12:25,"982 Forest St, San Francisco, CA 94016" -294914,Wired Headphones,1,11.99,11/29/19 20:35,"761 Church St, Dallas, TX 75001" -294915,27in FHD Monitor,1,149.99,11/25/19 11:58,"485 Main St, New York City, NY 10001" -294916,USB-C Charging Cable,1,11.95,11/11/19 02:26,"924 West St, Boston, MA 02215" -294917,USB-C Charging Cable,1,11.95,11/19/19 13:32,"943 Meadow St, San Francisco, CA 94016" -294918,USB-C Charging Cable,1,11.95,11/21/19 18:54,"796 Adams St, Dallas, TX 75001" -294919,USB-C Charging Cable,1,11.95,11/29/19 18:58,"598 Ridge St, San Francisco, CA 94016" -294920,Bose SoundSport Headphones,1,99.99,11/15/19 10:10,"734 Jefferson St, San Francisco, CA 94016" -294921,Lightning Charging Cable,1,14.95,11/08/19 16:07,"481 Elm St, New York City, NY 10001" -294922,AAA Batteries (4-pack),1,2.99,11/22/19 12:57,"64 Cherry St, Boston, MA 02215" -294923,AA Batteries (4-pack),5,3.84,11/19/19 21:18,"814 Hickory St, Los Angeles, CA 90001" -294924,Apple Airpods Headphones,1,150,11/04/19 11:04,"876 River St, Dallas, TX 75001" -294925,Lightning Charging Cable,1,14.95,11/19/19 19:12,"741 Willow St, Seattle, WA 98101" -294926,AAA Batteries (4-pack),1,2.99,11/09/19 22:38,"211 Lakeview St, Portland, OR 97035" -294927,Google Phone,1,600,11/12/19 21:29,"564 Chestnut St, Seattle, WA 98101" -294928,27in FHD Monitor,1,149.99,11/19/19 17:14,"2 5th St, Boston, MA 02215" -294929,AA Batteries (4-pack),1,3.84,11/23/19 05:34,"213 Ridge St, San Francisco, CA 94016" -294930,AAA Batteries (4-pack),1,2.99,11/10/19 22:05,"790 Lakeview St, New York City, NY 10001" -294931,20in Monitor,1,109.99,11/22/19 11:36,"118 6th St, New York City, NY 10001" -294932,ThinkPad Laptop,1,999.99,11/06/19 08:58,"626 Church St, New York City, NY 10001" -294933,Bose SoundSport Headphones,1,99.99,11/19/19 23:04,"759 Spruce St, New York City, NY 10001" -294934,AA Batteries (4-pack),1,3.84,11/09/19 11:10,"850 Main St, Los Angeles, CA 90001" -294935,Wired Headphones,1,11.99,11/08/19 20:27,"791 Hickory St, San Francisco, CA 94016" -294936,AA Batteries (4-pack),1,3.84,11/01/19 21:45,"260 Forest St, Atlanta, GA 30301" -294937,20in Monitor,1,109.99,11/29/19 21:36,"206 7th St, Seattle, WA 98101" -294938,Bose SoundSport Headphones,1,99.99,11/09/19 15:05,"148 5th St, New York City, NY 10001" -294939,AAA Batteries (4-pack),1,2.99,11/04/19 11:16,"544 5th St, Boston, MA 02215" -294940,Flatscreen TV,1,300,11/11/19 10:03,"650 Spruce St, Atlanta, GA 30301" -294941,Wired Headphones,1,11.99,11/20/19 20:51,"600 West St, Portland, OR 97035" -294942,AA Batteries (4-pack),2,3.84,11/21/19 01:01,"104 West St, Los Angeles, CA 90001" -294943,AA Batteries (4-pack),1,3.84,11/30/19 19:56,"101 13th St, Boston, MA 02215" -294944,20in Monitor,1,109.99,11/05/19 18:03,"132 Forest St, Portland, OR 97035" -294945,iPhone,1,700,11/15/19 19:19,"492 Washington St, Boston, MA 02215" -294946,AA Batteries (4-pack),1,3.84,11/22/19 08:47,"363 Lakeview St, San Francisco, CA 94016" -294947,27in FHD Monitor,1,149.99,11/08/19 12:42,"626 9th St, Seattle, WA 98101" -294948,AA Batteries (4-pack),1,3.84,11/01/19 21:00,"659 Ridge St, San Francisco, CA 94016" -294949,Wired Headphones,1,11.99,11/12/19 19:35,"695 Walnut St, Austin, TX 73301" -294950,Lightning Charging Cable,1,14.95,11/21/19 13:25,"589 Jackson St, Dallas, TX 75001" -294951,Lightning Charging Cable,1,14.95,11/20/19 18:08,"74 14th St, New York City, NY 10001" -294952,iPhone,1,700,11/22/19 16:14,"176 12th St, San Francisco, CA 94016" -294953,34in Ultrawide Monitor,1,379.99,11/22/19 01:32,"827 Park St, Los Angeles, CA 90001" -294954,AAA Batteries (4-pack),2,2.99,11/11/19 11:20,"957 Chestnut St, Seattle, WA 98101" -294955,20in Monitor,1,109.99,11/13/19 19:03,"926 Chestnut St, Seattle, WA 98101" -294956,USB-C Charging Cable,1,11.95,11/06/19 16:14,"44 Spruce St, Atlanta, GA 30301" -294957,Bose SoundSport Headphones,1,99.99,11/23/19 23:46,"663 Willow St, Seattle, WA 98101" -294958,Wired Headphones,1,11.99,11/04/19 18:42,"137 River St, San Francisco, CA 94016" -294959,Wired Headphones,1,11.99,11/09/19 15:11,"716 1st St, Boston, MA 02215" -294960,AA Batteries (4-pack),1,3.84,11/27/19 13:11,"751 South St, New York City, NY 10001" -294961,27in FHD Monitor,1,149.99,11/07/19 19:37,"551 Jackson St, Los Angeles, CA 90001" -294962,27in 4K Gaming Monitor,1,389.99,11/03/19 16:59,"736 Spruce St, Seattle, WA 98101" -294963,iPhone,1,700,11/01/19 16:57,"916 Willow St, Portland, OR 97035" -294964,27in FHD Monitor,1,149.99,11/25/19 11:24,"2 Church St, San Francisco, CA 94016" -294965,AA Batteries (4-pack),1,3.84,11/11/19 10:59,"391 Cedar St, San Francisco, CA 94016" -294966,Bose SoundSport Headphones,1,99.99,11/27/19 14:30,"515 1st St, Dallas, TX 75001" -294967,Google Phone,1,600,11/11/19 21:00,"334 Church St, Los Angeles, CA 90001" -294968,AAA Batteries (4-pack),2,2.99,11/01/19 18:29,"549 Center St, Los Angeles, CA 90001" -294969,27in 4K Gaming Monitor,1,389.99,11/04/19 16:27,"809 West St, New York City, NY 10001" -294970,Macbook Pro Laptop,1,1700,11/24/19 21:00,"337 Maple St, Los Angeles, CA 90001" -294971,USB-C Charging Cable,1,11.95,11/26/19 20:24,"188 Maple St, Austin, TX 73301" -294972,Wired Headphones,1,11.99,11/18/19 16:10,"403 Maple St, Austin, TX 73301" -294973,Lightning Charging Cable,1,14.95,11/30/19 21:11,"777 Walnut St, San Francisco, CA 94016" -294974,27in FHD Monitor,1,149.99,11/28/19 12:47,"637 8th St, San Francisco, CA 94016" -294975,Apple Airpods Headphones,1,150,11/03/19 08:47,"27 Washington St, New York City, NY 10001" -294976,AAA Batteries (4-pack),1,2.99,11/13/19 18:21,"931 Madison St, Atlanta, GA 30301" -294977,USB-C Charging Cable,1,11.95,11/19/19 22:55,"591 11th St, Atlanta, GA 30301" -294978,iPhone,1,700,11/24/19 13:29,"982 River St, Austin, TX 73301" -294979,27in FHD Monitor,2,149.99,11/18/19 06:27,"443 Sunset St, Atlanta, GA 30301" -294980,Lightning Charging Cable,2,14.95,11/24/19 21:02,"770 Forest St, San Francisco, CA 94016" -294981,AA Batteries (4-pack),1,3.84,11/09/19 02:31,"218 12th St, Seattle, WA 98101" -,,,,, -294982,AAA Batteries (4-pack),1,2.99,11/06/19 18:15,"63 Pine St, Los Angeles, CA 90001" -294983,USB-C Charging Cable,1,11.95,11/28/19 10:41,"911 Lake St, Dallas, TX 75001" -294984,AA Batteries (4-pack),2,3.84,11/10/19 08:48,"479 10th St, San Francisco, CA 94016" -294985,27in FHD Monitor,1,149.99,11/17/19 20:44,"682 Cherry St, Portland, OR 97035" -294986,USB-C Charging Cable,1,11.95,11/08/19 17:32,"666 Wilson St, Boston, MA 02215" -294987,LG Washing Machine,1,600.0,11/15/19 10:39,"248 Adams St, Portland, OR 97035" -294988,27in FHD Monitor,1,149.99,11/23/19 06:49,"928 Madison St, San Francisco, CA 94016" -294989,Bose SoundSport Headphones,1,99.99,11/07/19 12:36,"789 West St, New York City, NY 10001" -294990,Apple Airpods Headphones,1,150,11/19/19 10:54,"176 Hickory St, New York City, NY 10001" -294991,AA Batteries (4-pack),1,3.84,11/01/19 09:18,"487 River St, San Francisco, CA 94016" -294992,Bose SoundSport Headphones,1,99.99,11/01/19 10:30,"281 7th St, New York City, NY 10001" -294993,Wired Headphones,1,11.99,11/29/19 16:50,"460 1st St, Atlanta, GA 30301" -294994,27in 4K Gaming Monitor,1,389.99,11/19/19 00:29,"450 Wilson St, San Francisco, CA 94016" -294995,AA Batteries (4-pack),2,3.84,11/27/19 13:52,"759 Willow St, San Francisco, CA 94016" -294996,Lightning Charging Cable,1,14.95,11/17/19 22:42,"113 Hill St, Atlanta, GA 30301" -294997,AAA Batteries (4-pack),2,2.99,11/02/19 07:49,"937 Church St, Austin, TX 73301" -294998,Apple Airpods Headphones,1,150,11/06/19 13:53,"471 4th St, Portland, ME 04101" -294999,iPhone,1,700,11/18/19 08:20,"764 Chestnut St, Los Angeles, CA 90001" -294999,Lightning Charging Cable,1,14.95,11/18/19 08:20,"764 Chestnut St, Los Angeles, CA 90001" -295000,Lightning Charging Cable,1,14.95,11/06/19 17:13,"210 Spruce St, Boston, MA 02215" -295001,Apple Airpods Headphones,1,150,11/30/19 11:23,"477 Lincoln St, Atlanta, GA 30301" -295002,Bose SoundSport Headphones,1,99.99,11/14/19 12:05,"298 Sunset St, Austin, TX 73301" -295002,Apple Airpods Headphones,1,150,11/14/19 12:05,"298 Sunset St, Austin, TX 73301" -295003,USB-C Charging Cable,1,11.95,11/04/19 22:33,"357 Forest St, Seattle, WA 98101" -295004,Bose SoundSport Headphones,1,99.99,11/01/19 13:08,"169 Cedar St, San Francisco, CA 94016" -295005,Macbook Pro Laptop,1,1700,11/30/19 15:41,"82 Spruce St, Portland, ME 04101" -295006,27in FHD Monitor,1,149.99,11/08/19 21:24,"520 Ridge St, San Francisco, CA 94016" -295007,USB-C Charging Cable,2,11.95,11/20/19 11:15,"810 Madison St, Dallas, TX 75001" -295008,27in FHD Monitor,1,149.99,11/09/19 20:59,"867 Madison St, San Francisco, CA 94016" -295009,Lightning Charging Cable,1,14.95,11/02/19 16:40,"713 Hickory St, Los Angeles, CA 90001" -295010,Lightning Charging Cable,1,14.95,11/22/19 16:00,"872 6th St, Dallas, TX 75001" -295011,AA Batteries (4-pack),1,3.84,11/25/19 12:03,"845 9th St, New York City, NY 10001" -295012,USB-C Charging Cable,1,11.95,11/02/19 00:29,"867 Pine St, Atlanta, GA 30301" -295013,Macbook Pro Laptop,1,1700,11/18/19 12:21,"404 Main St, Boston, MA 02215" -295014,Flatscreen TV,1,300,11/03/19 23:25,"780 Dogwood St, Los Angeles, CA 90001" -295015,AAA Batteries (4-pack),1,2.99,11/05/19 12:01,"883 Hickory St, Atlanta, GA 30301" -295015,20in Monitor,1,109.99,11/05/19 12:01,"883 Hickory St, Atlanta, GA 30301" -295016,Bose SoundSport Headphones,1,99.99,11/23/19 17:10,"499 Walnut St, Seattle, WA 98101" -295017,AAA Batteries (4-pack),1,2.99,11/22/19 10:10,"558 5th St, Boston, MA 02215" -295018,Lightning Charging Cable,1,14.95,11/01/19 18:16,"872 Wilson St, Los Angeles, CA 90001" -295019,Lightning Charging Cable,1,14.95,11/24/19 20:04,"170 10th St, Atlanta, GA 30301" -295020,AAA Batteries (4-pack),3,2.99,11/19/19 09:43,"444 Adams St, San Francisco, CA 94016" -295021,27in FHD Monitor,1,149.99,11/20/19 18:31,"617 Sunset St, Los Angeles, CA 90001" -295022,Wired Headphones,1,11.99,11/23/19 10:30,"323 Center St, Los Angeles, CA 90001" -295023,Bose SoundSport Headphones,1,99.99,11/20/19 16:38,"984 14th St, San Francisco, CA 94016" -295024,Google Phone,1,600,11/03/19 17:14,"941 Meadow St, San Francisco, CA 94016" -295024,USB-C Charging Cable,1,11.95,11/03/19 17:14,"941 Meadow St, San Francisco, CA 94016" -295024,Wired Headphones,1,11.99,11/03/19 17:14,"941 Meadow St, San Francisco, CA 94016" -295025,Bose SoundSport Headphones,1,99.99,11/20/19 18:06,"622 14th St, Seattle, WA 98101" -295026,AA Batteries (4-pack),3,3.84,11/14/19 20:53,"598 10th St, San Francisco, CA 94016" -295027,Google Phone,1,600,11/16/19 09:51,"986 Chestnut St, Los Angeles, CA 90001" -295028,Wired Headphones,1,11.99,11/18/19 21:33,"259 Lakeview St, New York City, NY 10001" -295029,27in 4K Gaming Monitor,1,389.99,11/28/19 11:36,"920 Sunset St, Atlanta, GA 30301" -295030,USB-C Charging Cable,1,11.95,11/14/19 21:49,"364 6th St, San Francisco, CA 94016" -295031,USB-C Charging Cable,1,11.95,11/25/19 14:24,"519 Main St, San Francisco, CA 94016" -295032,AAA Batteries (4-pack),3,2.99,11/12/19 16:46,"581 Washington St, Austin, TX 73301" -295033,Bose SoundSport Headphones,1,99.99,11/12/19 10:43,"807 Sunset St, New York City, NY 10001" -295034,27in 4K Gaming Monitor,1,389.99,11/14/19 15:29,"571 Cedar St, San Francisco, CA 94016" -295035,AAA Batteries (4-pack),1,2.99,11/06/19 08:19,"371 North St, Dallas, TX 75001" -295036,Macbook Pro Laptop,1,1700,11/15/19 15:59,"888 7th St, San Francisco, CA 94016" -295037,27in FHD Monitor,1,149.99,11/11/19 11:45,"366 8th St, San Francisco, CA 94016" -295038,20in Monitor,1,109.99,11/15/19 16:30,"767 Center St, Portland, OR 97035" -295039,Apple Airpods Headphones,1,150,11/30/19 14:07,"602 North St, New York City, NY 10001" -295039,20in Monitor,1,109.99,11/30/19 14:07,"602 North St, New York City, NY 10001" -295040,Wired Headphones,1,11.99,11/13/19 17:20,"844 Center St, Seattle, WA 98101" -295041,AAA Batteries (4-pack),1,2.99,11/25/19 03:13,"929 Willow St, San Francisco, CA 94016" -295042,27in 4K Gaming Monitor,1,389.99,11/13/19 13:38,"194 9th St, San Francisco, CA 94016" -295043,LG Dryer,1,600.0,11/15/19 12:02,"73 Washington St, Atlanta, GA 30301" -295044,Flatscreen TV,1,300,11/11/19 03:35,"176 Sunset St, Boston, MA 02215" -295045,Macbook Pro Laptop,1,1700,11/07/19 17:11,"888 West St, New York City, NY 10001" -295046,Google Phone,1,600,11/19/19 12:29,"211 Sunset St, Atlanta, GA 30301" -295047,AAA Batteries (4-pack),1,2.99,11/20/19 10:26,"12 Park St, Austin, TX 73301" -295048,AAA Batteries (4-pack),1,2.99,11/21/19 20:56,"215 Jefferson St, New York City, NY 10001" -295049,Apple Airpods Headphones,1,150,11/16/19 16:11,"555 14th St, Dallas, TX 75001" -295050,USB-C Charging Cable,1,11.95,11/02/19 12:09,"553 Park St, Atlanta, GA 30301" -295051,Macbook Pro Laptop,1,1700,11/29/19 10:56,"659 Pine St, San Francisco, CA 94016" -295052,AA Batteries (4-pack),2,3.84,11/13/19 06:15,"422 4th St, Dallas, TX 75001" -295053,USB-C Charging Cable,2,11.95,11/17/19 11:35,"625 Walnut St, Los Angeles, CA 90001" -295054,AAA Batteries (4-pack),2,2.99,11/15/19 11:07,"652 Wilson St, San Francisco, CA 94016" -295055,AAA Batteries (4-pack),1,2.99,11/26/19 12:41,"703 South St, Boston, MA 02215" -295056,Apple Airpods Headphones,1,150,11/07/19 17:31,"35 Dogwood St, Dallas, TX 75001" -295057,Lightning Charging Cable,1,14.95,11/22/19 17:04,"281 Elm St, Dallas, TX 75001" -295058,34in Ultrawide Monitor,1,379.99,11/11/19 12:29,"149 7th St, San Francisco, CA 94016" -295059,20in Monitor,1,109.99,11/05/19 22:40,"883 5th St, Dallas, TX 75001" -295060,Apple Airpods Headphones,1,150,11/07/19 16:42,"260 Elm St, Boston, MA 02215" -295061,ThinkPad Laptop,1,999.99,11/25/19 07:07,"358 Lincoln St, Seattle, WA 98101" -295062,Apple Airpods Headphones,1,150,11/07/19 19:33,"40 Hickory St, New York City, NY 10001" -295063,iPhone,1,700,11/01/19 12:11,"262 Hickory St, Los Angeles, CA 90001" -295064,AA Batteries (4-pack),1,3.84,11/10/19 22:58,"534 10th St, Atlanta, GA 30301" -295065,Lightning Charging Cable,1,14.95,11/20/19 09:51,"968 Pine St, New York City, NY 10001" -295066,USB-C Charging Cable,1,11.95,11/13/19 13:27,"739 South St, San Francisco, CA 94016" -295067,Wired Headphones,1,11.99,11/21/19 10:23,"883 Church St, Boston, MA 02215" -295068,Wired Headphones,1,11.99,11/27/19 14:36,"712 Hill St, Atlanta, GA 30301" -295069,AA Batteries (4-pack),1,3.84,11/06/19 14:22,"361 Johnson St, San Francisco, CA 94016" -295070,Wired Headphones,1,11.99,11/20/19 17:14,"330 West St, Atlanta, GA 30301" -295071,Apple Airpods Headphones,1,150,11/13/19 18:17,"351 2nd St, Austin, TX 73301" -295072,Flatscreen TV,1,300,11/01/19 12:08,"187 River St, New York City, NY 10001" -295073,Flatscreen TV,1,300,11/02/19 19:05,"701 Highland St, Austin, TX 73301" -295074,Lightning Charging Cable,1,14.95,11/14/19 16:58,"98 7th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -295075,Lightning Charging Cable,1,14.95,11/12/19 09:00,"701 Lake St, Portland, OR 97035" -295076,Google Phone,1,600,11/23/19 22:32,"213 13th St, San Francisco, CA 94016" -295076,USB-C Charging Cable,1,11.95,11/23/19 22:32,"213 13th St, San Francisco, CA 94016" -295077,USB-C Charging Cable,1,11.95,11/02/19 11:53,"923 Jefferson St, New York City, NY 10001" -295078,Apple Airpods Headphones,1,150,11/10/19 18:35,"273 10th St, San Francisco, CA 94016" -295079,AA Batteries (4-pack),3,3.84,11/09/19 23:25,"892 Park St, Boston, MA 02215" -295080,AA Batteries (4-pack),1,3.84,11/09/19 11:09,"700 13th St, Dallas, TX 75001" -295081,AAA Batteries (4-pack),3,2.99,11/08/19 13:34,"63 Willow St, Seattle, WA 98101" -295082,AAA Batteries (4-pack),2,2.99,11/18/19 16:48,"406 Dogwood St, Los Angeles, CA 90001" -295083,Lightning Charging Cable,2,14.95,11/17/19 12:45,"684 River St, Boston, MA 02215" -295084,USB-C Charging Cable,1,11.95,11/09/19 06:51,"44 1st St, Los Angeles, CA 90001" -295085,AA Batteries (4-pack),1,3.84,11/03/19 11:43,"711 9th St, Los Angeles, CA 90001" -295086,ThinkPad Laptop,1,999.99,11/14/19 09:58,"91 8th St, New York City, NY 10001" -295087,Apple Airpods Headphones,1,150,11/17/19 08:07,"219 Washington St, San Francisco, CA 94016" -295088,Apple Airpods Headphones,1,150,11/04/19 23:20,"200 14th St, San Francisco, CA 94016" -295089,Wired Headphones,1,11.99,11/30/19 13:48,"175 Jackson St, San Francisco, CA 94016" -295090,Google Phone,1,600,11/19/19 19:23,"620 Wilson St, New York City, NY 10001" -295091,iPhone,1,700,11/26/19 15:04,"844 Ridge St, Boston, MA 02215" -295092,Apple Airpods Headphones,1,150,11/17/19 12:19,"831 4th St, Atlanta, GA 30301" -295093,iPhone,1,700,11/20/19 10:08,"137 Center St, New York City, NY 10001" -295094,Wired Headphones,1,11.99,11/02/19 18:41,"843 1st St, Los Angeles, CA 90001" -295095,27in FHD Monitor,1,149.99,11/08/19 09:52,"49 Pine St, San Francisco, CA 94016" -295096,Apple Airpods Headphones,1,150,11/29/19 21:16,"938 Main St, Los Angeles, CA 90001" -295097,Lightning Charging Cable,1,14.95,11/10/19 09:40,"189 11th St, Los Angeles, CA 90001" -295098,Wired Headphones,1,11.99,11/13/19 12:04,"856 Lake St, Boston, MA 02215" -295099,USB-C Charging Cable,1,11.95,11/17/19 07:53,"33 Willow St, San Francisco, CA 94016" -295100,Bose SoundSport Headphones,1,99.99,11/05/19 19:39,"864 Ridge St, Boston, MA 02215" -295101,Google Phone,1,600,11/30/19 13:53,"133 6th St, Portland, OR 97035" -295102,USB-C Charging Cable,1,11.95,11/11/19 19:52,"691 14th St, Boston, MA 02215" -295103,Bose SoundSport Headphones,1,99.99,11/23/19 16:39,"849 Hickory St, San Francisco, CA 94016" -295103,AAA Batteries (4-pack),3,2.99,11/23/19 16:39,"849 Hickory St, San Francisco, CA 94016" -295104,Lightning Charging Cable,1,14.95,11/15/19 22:17,"633 2nd St, San Francisco, CA 94016" -295105,34in Ultrawide Monitor,1,379.99,11/25/19 19:31,"404 Cherry St, San Francisco, CA 94016" -295106,Wired Headphones,1,11.99,11/30/19 08:57,"119 Highland St, San Francisco, CA 94016" -295107,Apple Airpods Headphones,1,150,11/02/19 04:24,"845 Lincoln St, San Francisco, CA 94016" -295108,AAA Batteries (4-pack),1,2.99,11/22/19 19:13,"516 Cedar St, New York City, NY 10001" -295109,27in FHD Monitor,1,149.99,11/09/19 08:08,"324 Hickory St, New York City, NY 10001" -295110,AA Batteries (4-pack),1,3.84,11/08/19 22:31,"368 2nd St, San Francisco, CA 94016" -295111,Google Phone,1,600,11/06/19 18:23,"588 Wilson St, San Francisco, CA 94016" -295112,USB-C Charging Cable,1,11.95,11/17/19 10:27,"614 Hickory St, Atlanta, GA 30301" -295113,AA Batteries (4-pack),1,3.84,11/10/19 22:17,"103 5th St, Dallas, TX 75001" -295114,LG Washing Machine,1,600.0,11/09/19 17:31,"760 2nd St, Dallas, TX 75001" -295115,Lightning Charging Cable,1,14.95,11/18/19 11:29,"401 14th St, Los Angeles, CA 90001" -295116,AAA Batteries (4-pack),1,2.99,11/09/19 00:56,"976 Chestnut St, Dallas, TX 75001" -295117,Wired Headphones,1,11.99,11/19/19 00:13,"841 Jackson St, Atlanta, GA 30301" -295118,AAA Batteries (4-pack),2,2.99,11/23/19 01:11,"207 Chestnut St, Austin, TX 73301" -295119,Flatscreen TV,1,300,11/04/19 06:41,"616 Chestnut St, Portland, OR 97035" -295120,AAA Batteries (4-pack),2,2.99,11/03/19 18:38,"272 Park St, Los Angeles, CA 90001" -295121,Lightning Charging Cable,2,14.95,11/14/19 16:08,"248 Wilson St, Los Angeles, CA 90001" -295121,Bose SoundSport Headphones,1,99.99,11/14/19 16:08,"248 Wilson St, Los Angeles, CA 90001" -295122,Lightning Charging Cable,1,14.95,11/03/19 12:57,"357 Meadow St, Boston, MA 02215" -295123,20in Monitor,1,109.99,11/16/19 00:08,"121 Sunset St, San Francisco, CA 94016" -295124,AA Batteries (4-pack),1,3.84,11/10/19 15:01,"557 Highland St, San Francisco, CA 94016" -295125,34in Ultrawide Monitor,1,379.99,11/26/19 14:12,"652 Highland St, New York City, NY 10001" -295126,ThinkPad Laptop,1,999.99,11/22/19 10:49,"296 Jefferson St, Seattle, WA 98101" -295127,ThinkPad Laptop,1,999.99,11/15/19 00:51,"813 Elm St, San Francisco, CA 94016" -295128,Lightning Charging Cable,2,14.95,11/21/19 20:47,"262 Ridge St, San Francisco, CA 94016" -295129,USB-C Charging Cable,1,11.95,11/06/19 14:10,"352 14th St, Dallas, TX 75001" -295130,Wired Headphones,1,11.99,11/16/19 09:29,"836 5th St, San Francisco, CA 94016" -295131,AA Batteries (4-pack),1,3.84,11/05/19 20:41,"201 Ridge St, Austin, TX 73301" -295132,AA Batteries (4-pack),1,3.84,11/04/19 21:45,"108 Johnson St, Los Angeles, CA 90001" -295133,ThinkPad Laptop,1,999.99,11/15/19 21:58,"70 Hickory St, San Francisco, CA 94016" -295134,Apple Airpods Headphones,1,150,11/07/19 22:02,"926 Walnut St, New York City, NY 10001" -295135,USB-C Charging Cable,1,11.95,11/10/19 15:57,"215 Chestnut St, Dallas, TX 75001" -295136,iPhone,1,700,11/19/19 09:32,"647 Forest St, San Francisco, CA 94016" -295137,USB-C Charging Cable,1,11.95,11/23/19 18:57,"367 Park St, New York City, NY 10001" -295138,iPhone,1,700,11/21/19 10:23,"768 Chestnut St, Seattle, WA 98101" -295139,20in Monitor,1,109.99,11/24/19 22:00,"215 Church St, Dallas, TX 75001" -295140,Wired Headphones,2,11.99,11/30/19 11:14,"982 Adams St, Austin, TX 73301" -295141,AAA Batteries (4-pack),2,2.99,11/05/19 05:43,"299 Center St, Seattle, WA 98101" -295142,Lightning Charging Cable,1,14.95,11/02/19 11:09,"825 Willow St, Boston, MA 02215" -295143,27in FHD Monitor,1,149.99,11/10/19 14:11,"164 Lincoln St, Los Angeles, CA 90001" -295144,27in FHD Monitor,1,149.99,11/19/19 22:43,"545 Forest St, Boston, MA 02215" -295145,Macbook Pro Laptop,1,1700,11/29/19 12:49,"121 Main St, Atlanta, GA 30301" -295146,Apple Airpods Headphones,1,150,11/28/19 14:49,"273 6th St, Boston, MA 02215" -295147,AAA Batteries (4-pack),1,2.99,11/09/19 22:13,"67 Hickory St, New York City, NY 10001" -295148,Bose SoundSport Headphones,1,99.99,11/13/19 09:59,"905 Willow St, New York City, NY 10001" -295149,AAA Batteries (4-pack),1,2.99,11/15/19 16:57,"362 5th St, Atlanta, GA 30301" -295150,27in 4K Gaming Monitor,1,389.99,11/04/19 20:31,"795 Chestnut St, Austin, TX 73301" -295151,Macbook Pro Laptop,1,1700,11/23/19 07:11,"209 Maple St, New York City, NY 10001" -295152,Macbook Pro Laptop,1,1700,11/25/19 05:26,"905 Lincoln St, San Francisco, CA 94016" -295153,AA Batteries (4-pack),1,3.84,11/04/19 11:34,"45 Church St, Los Angeles, CA 90001" -295154,USB-C Charging Cable,1,11.95,11/29/19 20:15,"657 8th St, San Francisco, CA 94016" -295155,AA Batteries (4-pack),2,3.84,11/19/19 09:00,"596 West St, Atlanta, GA 30301" -295156,USB-C Charging Cable,1,11.95,11/19/19 10:36,"609 Madison St, San Francisco, CA 94016" -295157,Flatscreen TV,1,300,11/28/19 21:16,"513 6th St, Portland, OR 97035" -295158,Wired Headphones,2,11.99,11/07/19 14:31,"674 10th St, San Francisco, CA 94016" -295159,Lightning Charging Cable,1,14.95,11/27/19 20:14,"181 9th St, Seattle, WA 98101" -295160,AAA Batteries (4-pack),1,2.99,11/13/19 11:52,"150 Center St, Los Angeles, CA 90001" -295161,Wired Headphones,1,11.99,11/26/19 08:39,"647 Elm St, Atlanta, GA 30301" -295162,iPhone,1,700,11/29/19 17:44,"354 Lake St, San Francisco, CA 94016" -295163,27in 4K Gaming Monitor,1,389.99,11/30/19 19:43,"674 5th St, Dallas, TX 75001" -295164,Apple Airpods Headphones,1,150,11/30/19 17:51,"566 1st St, Boston, MA 02215" -295165,Apple Airpods Headphones,1,150,11/02/19 19:33,"209 11th St, Boston, MA 02215" -295166,AAA Batteries (4-pack),1,2.99,11/30/19 13:52,"522 Highland St, Atlanta, GA 30301" -295167,AA Batteries (4-pack),1,3.84,11/09/19 00:37,"65 Washington St, Portland, ME 04101" -295168,27in 4K Gaming Monitor,1,389.99,11/23/19 23:31,"859 Walnut St, Los Angeles, CA 90001" -295169,USB-C Charging Cable,1,11.95,11/21/19 00:48,"546 Highland St, Seattle, WA 98101" -295170,20in Monitor,1,109.99,11/12/19 11:33,"679 West St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -295171,AAA Batteries (4-pack),1,2.99,11/23/19 23:25,"84 Pine St, Portland, ME 04101" -295172,AA Batteries (4-pack),1,3.84,11/01/19 22:50,"693 Highland St, Atlanta, GA 30301" -295173,Bose SoundSport Headphones,1,99.99,11/17/19 15:28,"870 West St, San Francisco, CA 94016" -295174,AAA Batteries (4-pack),1,2.99,11/05/19 09:23,"810 Washington St, Atlanta, GA 30301" -295175,AAA Batteries (4-pack),1,2.99,11/07/19 21:47,"93 Main St, San Francisco, CA 94016" -295176,ThinkPad Laptop,1,999.99,11/11/19 14:45,"152 Hickory St, Dallas, TX 75001" -295177,Flatscreen TV,1,300,11/16/19 08:25,"74 8th St, San Francisco, CA 94016" -295178,Lightning Charging Cable,1,14.95,11/13/19 19:37,"374 Church St, San Francisco, CA 94016" -295179,Google Phone,1,600,11/06/19 10:33,"59 4th St, Los Angeles, CA 90001" -295180,Wired Headphones,1,11.99,11/29/19 18:47,"559 Lincoln St, San Francisco, CA 94016" -295181,Lightning Charging Cable,1,14.95,11/24/19 16:54,"490 Cherry St, San Francisco, CA 94016" -295182,27in FHD Monitor,1,149.99,11/29/19 16:49,"784 5th St, Los Angeles, CA 90001" -295183,Macbook Pro Laptop,1,1700,11/24/19 11:55,"668 Spruce St, Boston, MA 02215" -295184,34in Ultrawide Monitor,1,379.99,11/27/19 19:15,"47 Cherry St, Los Angeles, CA 90001" -295185,Google Phone,1,600,11/21/19 18:02,"963 4th St, Los Angeles, CA 90001" -295186,Lightning Charging Cable,1,14.95,11/17/19 13:23,"26 13th St, San Francisco, CA 94016" -295187,Macbook Pro Laptop,1,1700,11/20/19 10:44,"38 Lincoln St, Atlanta, GA 30301" -295188,Bose SoundSport Headphones,1,99.99,11/10/19 10:28,"436 Lake St, Boston, MA 02215" -295189,Macbook Pro Laptop,1,1700,11/22/19 21:12,"544 Johnson St, Atlanta, GA 30301" -295190,AA Batteries (4-pack),1,3.84,11/03/19 20:15,"447 10th St, Dallas, TX 75001" -295191,AAA Batteries (4-pack),2,2.99,11/30/19 16:58,"338 13th St, Dallas, TX 75001" -295192,Apple Airpods Headphones,1,150,11/30/19 11:06,"233 14th St, Los Angeles, CA 90001" -295193,ThinkPad Laptop,1,999.99,11/21/19 13:48,"620 River St, Boston, MA 02215" -295194,Wired Headphones,1,11.99,11/10/19 19:08,"474 South St, San Francisco, CA 94016" -295195,Wired Headphones,1,11.99,11/25/19 19:51,"5 Highland St, New York City, NY 10001" -295196,Flatscreen TV,1,300,11/25/19 16:35,"699 Chestnut St, Austin, TX 73301" -295197,AAA Batteries (4-pack),1,2.99,11/16/19 20:24,"713 Main St, San Francisco, CA 94016" -295198,Lightning Charging Cable,1,14.95,11/19/19 15:14,"803 Spruce St, Los Angeles, CA 90001" -295199,USB-C Charging Cable,1,11.95,11/03/19 19:07,"678 4th St, Boston, MA 02215" -295200,AAA Batteries (4-pack),1,2.99,11/23/19 18:23,"212 9th St, Boston, MA 02215" -295201,Lightning Charging Cable,1,14.95,11/25/19 13:06,"356 North St, Boston, MA 02215" -295202,AAA Batteries (4-pack),1,2.99,11/22/19 10:26,"370 Jackson St, Portland, OR 97035" -295203,Wired Headphones,1,11.99,11/27/19 11:49,"311 5th St, San Francisco, CA 94016" -295204,Vareebadd Phone,1,400,11/26/19 13:01,"434 North St, San Francisco, CA 94016" -295205,27in FHD Monitor,1,149.99,11/07/19 13:13,"630 5th St, San Francisco, CA 94016" -295206,Google Phone,1,600,11/11/19 10:59,"159 West St, Dallas, TX 75001" -295206,Bose SoundSport Headphones,1,99.99,11/11/19 10:59,"159 West St, Dallas, TX 75001" -295207,Wired Headphones,1,11.99,11/30/19 13:28,"719 Hill St, Portland, OR 97035" -295208,Lightning Charging Cable,1,14.95,11/18/19 22:46,"863 12th St, San Francisco, CA 94016" -295209,AAA Batteries (4-pack),2,2.99,11/19/19 15:55,"925 Wilson St, Atlanta, GA 30301" -295210,27in FHD Monitor,1,149.99,11/13/19 17:02,"350 Ridge St, San Francisco, CA 94016" -295211,USB-C Charging Cable,1,11.95,11/25/19 11:45,"977 Madison St, San Francisco, CA 94016" -295212,iPhone,1,700,11/18/19 17:53,"320 Elm St, Los Angeles, CA 90001" -295212,Wired Headphones,1,11.99,11/18/19 17:53,"320 Elm St, Los Angeles, CA 90001" -295213,AA Batteries (4-pack),2,3.84,11/19/19 12:43,"978 11th St, San Francisco, CA 94016" -295214,iPhone,1,700,11/10/19 14:53,"713 1st St, Dallas, TX 75001" -295214,Lightning Charging Cable,1,14.95,11/10/19 14:53,"713 1st St, Dallas, TX 75001" -295215,Wired Headphones,1,11.99,11/09/19 23:48,"886 Forest St, San Francisco, CA 94016" -295216,USB-C Charging Cable,1,11.95,11/29/19 07:05,"701 Willow St, Los Angeles, CA 90001" -295217,USB-C Charging Cable,1,11.95,11/25/19 11:34,"629 Chestnut St, New York City, NY 10001" -295218,AAA Batteries (4-pack),1,2.99,11/07/19 10:55,"281 Walnut St, New York City, NY 10001" -295219,Wired Headphones,1,11.99,11/20/19 20:32,"801 Madison St, Dallas, TX 75001" -295220,Bose SoundSport Headphones,1,99.99,11/08/19 22:23,"186 Dogwood St, Los Angeles, CA 90001" -295221,Bose SoundSport Headphones,1,99.99,11/20/19 20:50,"622 Jefferson St, New York City, NY 10001" -295222,Bose SoundSport Headphones,1,99.99,11/21/19 21:18,"507 14th St, Atlanta, GA 30301" -295223,Lightning Charging Cable,1,14.95,11/09/19 16:50,"746 Ridge St, Dallas, TX 75001" -295224,Apple Airpods Headphones,1,150,11/06/19 09:14,"985 1st St, San Francisco, CA 94016" -295225,Lightning Charging Cable,1,14.95,11/17/19 08:25,"360 Spruce St, San Francisco, CA 94016" -295226,AAA Batteries (4-pack),2,2.99,11/18/19 12:08,"305 8th St, New York City, NY 10001" -295227,Wired Headphones,1,11.99,11/11/19 16:41,"663 8th St, Austin, TX 73301" -295228,AA Batteries (4-pack),1,3.84,11/10/19 15:48,"823 Jefferson St, Austin, TX 73301" -295229,AAA Batteries (4-pack),2,2.99,11/19/19 21:29,"563 4th St, Portland, OR 97035" -295230,USB-C Charging Cable,2,11.95,11/12/19 18:18,"228 7th St, New York City, NY 10001" -295231,27in FHD Monitor,1,149.99,11/10/19 09:30,"507 Ridge St, Los Angeles, CA 90001" -295232,Wired Headphones,1,11.99,11/20/19 19:44,"794 Elm St, San Francisco, CA 94016" -295233,USB-C Charging Cable,1,11.95,11/02/19 12:42,"38 Sunset St, Austin, TX 73301" -295234,Bose SoundSport Headphones,1,99.99,11/22/19 16:19,"346 Center St, Seattle, WA 98101" -295235,Bose SoundSport Headphones,1,99.99,11/01/19 17:17,"987 Church St, Los Angeles, CA 90001" -295236,27in FHD Monitor,1,149.99,11/03/19 19:39,"941 Lakeview St, New York City, NY 10001" -295237,AA Batteries (4-pack),1,3.84,11/03/19 22:29,"936 Meadow St, Boston, MA 02215" -295238,USB-C Charging Cable,1,11.95,11/15/19 18:07,"106 Wilson St, San Francisco, CA 94016" -295239,USB-C Charging Cable,1,11.95,11/10/19 07:24,"304 Dogwood St, New York City, NY 10001" -295240,USB-C Charging Cable,1,11.95,11/01/19 13:35,"247 Hickory St, San Francisco, CA 94016" -295241,34in Ultrawide Monitor,1,379.99,11/07/19 11:56,"371 Wilson St, New York City, NY 10001" -295242,AA Batteries (4-pack),2,3.84,11/24/19 15:59,"32 Walnut St, Seattle, WA 98101" -295243,AA Batteries (4-pack),1,3.84,11/01/19 10:32,"755 Willow St, New York City, NY 10001" -295244,AA Batteries (4-pack),1,3.84,11/03/19 20:25,"504 Hill St, Los Angeles, CA 90001" -295245,USB-C Charging Cable,1,11.95,11/13/19 16:33,"870 6th St, Seattle, WA 98101" -295246,USB-C Charging Cable,1,11.95,11/16/19 09:00,"665 7th St, Los Angeles, CA 90001" -,,,,, -295247,Lightning Charging Cable,1,14.95,11/12/19 13:53,"522 Meadow St, Boston, MA 02215" -295247,Wired Headphones,2,11.99,11/12/19 13:53,"522 Meadow St, Boston, MA 02215" -295248,AA Batteries (4-pack),1,3.84,11/11/19 11:47,"928 Johnson St, New York City, NY 10001" -295249,AA Batteries (4-pack),1,3.84,11/05/19 08:10,"957 Lake St, San Francisco, CA 94016" -295250,Lightning Charging Cable,1,14.95,11/20/19 12:37,"313 Hill St, Dallas, TX 75001" -295251,Flatscreen TV,1,300,11/04/19 15:27,"89 9th St, Los Angeles, CA 90001" -295252,Lightning Charging Cable,1,14.95,11/14/19 23:30,"215 4th St, Los Angeles, CA 90001" -295253,AA Batteries (4-pack),1,3.84,11/28/19 11:17,"42 Lakeview St, Seattle, WA 98101" -295254,Lightning Charging Cable,1,14.95,11/12/19 14:06,"439 Maple St, San Francisco, CA 94016" -295255,Apple Airpods Headphones,1,150,11/06/19 21:47,"849 11th St, Portland, OR 97035" -295256,34in Ultrawide Monitor,1,379.99,11/16/19 15:38,"12 9th St, Dallas, TX 75001" -295257,Flatscreen TV,1,300,11/10/19 19:22,"398 Hickory St, San Francisco, CA 94016" -295258,27in 4K Gaming Monitor,1,389.99,11/15/19 11:20,"847 Johnson St, San Francisco, CA 94016" -295259,AAA Batteries (4-pack),1,2.99,11/21/19 18:33,"130 Wilson St, Dallas, TX 75001" -295260,iPhone,1,700,11/10/19 12:10,"59 6th St, Portland, OR 97035" -295261,Wired Headphones,1,11.99,11/30/19 13:53,"574 Jefferson St, New York City, NY 10001" -295262,USB-C Charging Cable,3,11.95,11/11/19 17:19,"15 6th St, San Francisco, CA 94016" -295263,USB-C Charging Cable,1,11.95,11/04/19 12:10,"800 Dogwood St, Boston, MA 02215" -295264,Bose SoundSport Headphones,1,99.99,11/10/19 18:04,"770 South St, San Francisco, CA 94016" -295265,Apple Airpods Headphones,1,150,11/11/19 04:06,"261 9th St, Portland, ME 04101" -295266,USB-C Charging Cable,1,11.95,11/17/19 13:49,"521 6th St, Los Angeles, CA 90001" -295267,ThinkPad Laptop,1,999.99,11/04/19 22:25,"898 5th St, Los Angeles, CA 90001" -295268,Wired Headphones,1,11.99,11/21/19 09:46,"361 Jefferson St, Atlanta, GA 30301" -295269,Macbook Pro Laptop,1,1700,11/20/19 13:33,"791 Walnut St, San Francisco, CA 94016" -295270,Lightning Charging Cable,1,14.95,11/30/19 14:29,"730 Forest St, New York City, NY 10001" -295271,27in FHD Monitor,1,149.99,11/26/19 07:14,"663 8th St, Portland, OR 97035" -295272,USB-C Charging Cable,1,11.95,11/19/19 04:12,"557 8th St, Los Angeles, CA 90001" -295273,Wired Headphones,1,11.99,11/25/19 21:49,"629 River St, New York City, NY 10001" -295274,27in 4K Gaming Monitor,1,389.99,11/13/19 18:13,"431 Johnson St, Dallas, TX 75001" -295275,ThinkPad Laptop,1,999.99,11/29/19 12:27,"280 Maple St, San Francisco, CA 94016" -295276,USB-C Charging Cable,1,11.95,11/13/19 16:34,"526 Main St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -295277,AAA Batteries (4-pack),1,2.99,11/03/19 17:45,"486 Maple St, New York City, NY 10001" -295278,Bose SoundSport Headphones,1,99.99,11/20/19 13:25,"362 Highland St, Austin, TX 73301" -295279,AAA Batteries (4-pack),3,2.99,11/30/19 18:59,"640 Walnut St, New York City, NY 10001" -295280,USB-C Charging Cable,1,11.95,11/10/19 13:50,"597 5th St, San Francisco, CA 94016" -295281,Google Phone,1,600,11/13/19 06:44,"69 Pine St, Boston, MA 02215" -295282,AA Batteries (4-pack),1,3.84,11/02/19 12:30,"939 Cherry St, San Francisco, CA 94016" -295283,USB-C Charging Cable,1,11.95,11/22/19 17:19,"759 River St, Boston, MA 02215" -295284,USB-C Charging Cable,2,11.95,11/11/19 13:10,"883 8th St, Seattle, WA 98101" -295285,27in FHD Monitor,1,149.99,11/23/19 20:57,"598 Main St, Atlanta, GA 30301" -295286,AAA Batteries (4-pack),1,2.99,11/25/19 20:22,"759 Willow St, San Francisco, CA 94016" -295287,AA Batteries (4-pack),1,3.84,11/01/19 23:37,"795 West St, Austin, TX 73301" -295288,USB-C Charging Cable,2,11.95,11/25/19 12:19,"735 Sunset St, New York City, NY 10001" -295289,Apple Airpods Headphones,1,150,11/14/19 19:07,"500 Cherry St, Atlanta, GA 30301" -295290,Apple Airpods Headphones,1,150,11/17/19 18:39,"258 7th St, Boston, MA 02215" -295291,iPhone,1,700,11/02/19 20:19,"841 Dogwood St, Seattle, WA 98101" -295292,Macbook Pro Laptop,1,1700,11/05/19 13:55,"826 5th St, San Francisco, CA 94016" -295293,Lightning Charging Cable,1,14.95,11/25/19 09:36,"346 Johnson St, Los Angeles, CA 90001" -295294,Wired Headphones,1,11.99,11/27/19 09:01,"84 12th St, Los Angeles, CA 90001" -295295,AA Batteries (4-pack),1,3.84,11/06/19 19:44,"10 Cherry St, Atlanta, GA 30301" -295296,27in FHD Monitor,1,149.99,11/21/19 10:01,"663 5th St, New York City, NY 10001" -295297,AAA Batteries (4-pack),1,2.99,11/10/19 20:09,"478 Church St, Los Angeles, CA 90001" -295298,ThinkPad Laptop,1,999.99,11/28/19 12:24,"959 6th St, Portland, OR 97035" -295299,27in FHD Monitor,1,149.99,11/22/19 17:00,"953 South St, Boston, MA 02215" -295300,Lightning Charging Cable,1,14.95,11/16/19 12:11,"683 South St, Dallas, TX 75001" -295301,27in FHD Monitor,1,149.99,11/09/19 03:29,"744 Madison St, Los Angeles, CA 90001" -295302,AA Batteries (4-pack),1,3.84,11/23/19 21:04,"49 River St, San Francisco, CA 94016" -295303,AAA Batteries (4-pack),1,2.99,11/07/19 12:40,"25 Ridge St, Dallas, TX 75001" -295304,Apple Airpods Headphones,1,150,11/16/19 19:04,"442 Spruce St, Los Angeles, CA 90001" -295305,AA Batteries (4-pack),1,3.84,11/19/19 15:33,"518 Church St, Austin, TX 73301" -295306,Apple Airpods Headphones,1,150,11/23/19 07:02,"761 14th St, Boston, MA 02215" -295307,USB-C Charging Cable,1,11.95,11/13/19 13:37,"982 Main St, New York City, NY 10001" -295308,Wired Headphones,1,11.99,11/21/19 20:39,"742 13th St, New York City, NY 10001" -295309,Lightning Charging Cable,1,14.95,11/07/19 12:34,"503 Center St, Boston, MA 02215" -295310,Bose SoundSport Headphones,1,99.99,11/24/19 20:43,"608 11th St, New York City, NY 10001" -295311,AA Batteries (4-pack),1,3.84,11/23/19 08:14,"912 Adams St, Seattle, WA 98101" -295312,Google Phone,1,600,11/05/19 09:42,"877 River St, Los Angeles, CA 90001" -295312,USB-C Charging Cable,2,11.95,11/05/19 09:42,"877 River St, Los Angeles, CA 90001" -295313,USB-C Charging Cable,1,11.95,11/01/19 20:00,"77 Washington St, Austin, TX 73301" -295314,Lightning Charging Cable,1,14.95,11/15/19 20:23,"505 Spruce St, New York City, NY 10001" -295315,iPhone,1,700,11/01/19 06:18,"774 4th St, Atlanta, GA 30301" -295316,Google Phone,1,600,11/20/19 17:32,"730 Lakeview St, Los Angeles, CA 90001" -295317,AA Batteries (4-pack),1,3.84,11/05/19 07:19,"934 Meadow St, San Francisco, CA 94016" -295318,Wired Headphones,1,11.99,11/11/19 12:14,"787 11th St, San Francisco, CA 94016" -295319,AA Batteries (4-pack),1,3.84,11/02/19 18:03,"96 Elm St, San Francisco, CA 94016" -295320,AA Batteries (4-pack),1,3.84,11/16/19 07:02,"740 8th St, Dallas, TX 75001" -295321,AA Batteries (4-pack),1,3.84,11/11/19 17:09,"298 Hill St, San Francisco, CA 94016" -295322,AA Batteries (4-pack),1,3.84,11/13/19 18:43,"398 Hickory St, Austin, TX 73301" -295323,USB-C Charging Cable,1,11.95,11/07/19 07:55,"444 9th St, San Francisco, CA 94016" -295324,Bose SoundSport Headphones,1,99.99,11/16/19 13:36,"991 Johnson St, Seattle, WA 98101" -295325,ThinkPad Laptop,1,999.99,11/09/19 22:57,"421 7th St, Dallas, TX 75001" -295326,Bose SoundSport Headphones,1,99.99,11/18/19 08:42,"949 Sunset St, Seattle, WA 98101" -295327,Lightning Charging Cable,1,14.95,11/17/19 00:26,"149 Forest St, San Francisco, CA 94016" -295328,AA Batteries (4-pack),1,3.84,11/22/19 15:49,"325 Elm St, Portland, OR 97035" -295329,USB-C Charging Cable,1,11.95,11/24/19 14:15,"813 Willow St, Boston, MA 02215" -295330,AAA Batteries (4-pack),1,2.99,11/02/19 21:21,"167 Ridge St, Portland, OR 97035" -295331,Apple Airpods Headphones,1,150,11/21/19 18:06,"433 Cedar St, Portland, ME 04101" -295332,27in FHD Monitor,1,149.99,11/30/19 11:01,"380 Adams St, Boston, MA 02215" -295333,Bose SoundSport Headphones,1,99.99,11/08/19 15:29,"766 Adams St, Dallas, TX 75001" -295334,Wired Headphones,1,11.99,11/12/19 08:09,"95 Adams St, Los Angeles, CA 90001" -295335,iPhone,1,700,11/29/19 20:05,"431 Lake St, Los Angeles, CA 90001" -295335,Lightning Charging Cable,1,14.95,11/29/19 20:05,"431 Lake St, Los Angeles, CA 90001" -295336,27in 4K Gaming Monitor,1,389.99,11/24/19 08:30,"446 11th St, Dallas, TX 75001" -295337,20in Monitor,1,109.99,11/19/19 11:54,"725 14th St, Atlanta, GA 30301" -295338,AAA Batteries (4-pack),2,2.99,11/05/19 12:07,"343 Maple St, Los Angeles, CA 90001" -295339,AA Batteries (4-pack),1,3.84,11/19/19 12:23,"165 North St, Dallas, TX 75001" -295339,AAA Batteries (4-pack),1,2.99,11/19/19 12:23,"165 North St, Dallas, TX 75001" -295340,ThinkPad Laptop,1,999.99,11/15/19 12:21,"811 Park St, New York City, NY 10001" -295341,AAA Batteries (4-pack),3,2.99,11/18/19 07:03,"859 Walnut St, San Francisco, CA 94016" -295342,27in FHD Monitor,1,149.99,11/12/19 18:42,"426 Center St, San Francisco, CA 94016" -295343,AA Batteries (4-pack),1,3.84,11/08/19 17:47,"406 12th St, Los Angeles, CA 90001" -295344,AA Batteries (4-pack),1,3.84,11/10/19 22:05,"115 Ridge St, Los Angeles, CA 90001" -295345,USB-C Charging Cable,1,11.95,11/17/19 14:09,"99 Willow St, Los Angeles, CA 90001" -295346,Wired Headphones,1,11.99,11/29/19 22:52,"607 Walnut St, Los Angeles, CA 90001" -295347,USB-C Charging Cable,1,11.95,11/12/19 09:35,"343 11th St, Seattle, WA 98101" -295348,Bose SoundSport Headphones,1,99.99,11/08/19 13:15,"37 South St, Portland, ME 04101" -295349,USB-C Charging Cable,1,11.95,11/25/19 13:15,"927 Washington St, San Francisco, CA 94016" -295350,Lightning Charging Cable,1,14.95,11/19/19 10:33,"960 Chestnut St, Boston, MA 02215" -295351,iPhone,1,700,11/26/19 06:19,"503 Maple St, Seattle, WA 98101" -295352,34in Ultrawide Monitor,1,379.99,11/10/19 10:08,"456 Lincoln St, New York City, NY 10001" -295353,Wired Headphones,1,11.99,11/17/19 13:51,"115 Lake St, Boston, MA 02215" -295354,34in Ultrawide Monitor,1,379.99,11/12/19 22:37,"243 Cedar St, New York City, NY 10001" -295355,Bose SoundSport Headphones,1,99.99,11/14/19 09:14,"107 Ridge St, New York City, NY 10001" -295356,Lightning Charging Cable,1,14.95,11/03/19 21:57,"861 11th St, Austin, TX 73301" -295357,Google Phone,1,600,11/30/19 11:05,"685 2nd St, Portland, OR 97035" -295358,AA Batteries (4-pack),1,3.84,11/18/19 20:30,"179 1st St, San Francisco, CA 94016" -295359,AA Batteries (4-pack),2,3.84,11/30/19 18:13,"243 Hill St, Atlanta, GA 30301" -295360,USB-C Charging Cable,2,11.95,11/13/19 11:12,"620 4th St, Los Angeles, CA 90001" -295361,USB-C Charging Cable,1,11.95,11/26/19 11:01,"251 Ridge St, New York City, NY 10001" -295362,Bose SoundSport Headphones,1,99.99,11/14/19 15:50,"183 Highland St, Atlanta, GA 30301" -295363,Lightning Charging Cable,1,14.95,11/22/19 19:10,"580 Lake St, Los Angeles, CA 90001" -295364,27in FHD Monitor,1,149.99,11/24/19 11:29,"568 Park St, San Francisco, CA 94016" -295365,Lightning Charging Cable,1,14.95,11/15/19 16:12,"975 Lincoln St, New York City, NY 10001" -295366,AAA Batteries (4-pack),1,2.99,11/10/19 09:56,"465 Pine St, Portland, OR 97035" -295367,USB-C Charging Cable,1,11.95,11/30/19 11:58,"957 Meadow St, Dallas, TX 75001" -295368,Bose SoundSport Headphones,1,99.99,11/16/19 15:19,"208 5th St, Austin, TX 73301" -295369,Lightning Charging Cable,1,14.95,11/06/19 19:33,"11 Center St, Los Angeles, CA 90001" -295370,Apple Airpods Headphones,1,150,11/30/19 18:14,"457 7th St, Atlanta, GA 30301" -295371,iPhone,1,700,11/26/19 08:33,"11 Willow St, Boston, MA 02215" -295372,USB-C Charging Cable,1,11.95,11/03/19 19:10,"145 1st St, New York City, NY 10001" -295373,USB-C Charging Cable,1,11.95,11/05/19 19:01,"266 Elm St, Portland, OR 97035" -295374,AAA Batteries (4-pack),1,2.99,11/07/19 21:34,"421 South St, New York City, NY 10001" -295375,Vareebadd Phone,1,400,11/03/19 21:37,"276 Center St, Los Angeles, CA 90001" -295376,AAA Batteries (4-pack),1,2.99,11/15/19 20:08,"772 Sunset St, Boston, MA 02215" -295377,AAA Batteries (4-pack),1,2.99,11/01/19 22:22,"596 Lakeview St, San Francisco, CA 94016" -295378,Wired Headphones,1,11.99,11/09/19 06:48,"723 Cedar St, Los Angeles, CA 90001" -295379,AA Batteries (4-pack),1,3.84,11/06/19 14:31,"68 10th St, San Francisco, CA 94016" -295380,Wired Headphones,1,11.99,11/20/19 01:49,"151 Jefferson St, Dallas, TX 75001" -295381,Lightning Charging Cable,1,14.95,11/16/19 17:37,"751 Willow St, San Francisco, CA 94016" -295382,Wired Headphones,1,11.99,11/22/19 15:02,"390 Lincoln St, Seattle, WA 98101" -295383,Lightning Charging Cable,1,14.95,11/16/19 15:28,"758 Adams St, Boston, MA 02215" -295384,AAA Batteries (4-pack),2,2.99,11/20/19 13:09,"670 6th St, Los Angeles, CA 90001" -295385,USB-C Charging Cable,2,11.95,11/27/19 21:01,"470 West St, Seattle, WA 98101" -295386,AA Batteries (4-pack),1,3.84,11/06/19 21:33,"739 West St, San Francisco, CA 94016" -295387,Macbook Pro Laptop,1,1700,11/12/19 06:09,"695 Cherry St, Los Angeles, CA 90001" -295388,Wired Headphones,1,11.99,11/01/19 07:07,"554 Walnut St, New York City, NY 10001" -295389,Google Phone,1,600,11/17/19 12:58,"482 West St, San Francisco, CA 94016" -295390,AAA Batteries (4-pack),2,2.99,11/06/19 10:55,"816 Lakeview St, Los Angeles, CA 90001" -295391,AA Batteries (4-pack),2,3.84,11/18/19 08:01,"193 Dogwood St, Atlanta, GA 30301" -295392,Wired Headphones,1,11.99,11/07/19 23:18,"804 1st St, New York City, NY 10001" -295393,AAA Batteries (4-pack),1,2.99,11/23/19 20:07,"859 13th St, Portland, OR 97035" -295394,USB-C Charging Cable,1,11.95,11/13/19 22:00,"47 12th St, San Francisco, CA 94016" -295395,Apple Airpods Headphones,1,150,11/18/19 18:14,"84 Dogwood St, Seattle, WA 98101" -295396,Apple Airpods Headphones,1,150,11/02/19 13:56,"130 Washington St, New York City, NY 10001" -295397,Apple Airpods Headphones,1,150,11/11/19 15:18,"577 Meadow St, Los Angeles, CA 90001" -295398,Lightning Charging Cable,1,14.95,11/02/19 21:12,"381 Forest St, Boston, MA 02215" -295399,iPhone,1,700,11/10/19 08:39,"188 11th St, New York City, NY 10001" -295399,Apple Airpods Headphones,1,150,11/10/19 08:39,"188 11th St, New York City, NY 10001" -295400,Lightning Charging Cable,2,14.95,11/23/19 00:10,"129 Main St, Dallas, TX 75001" -295401,ThinkPad Laptop,1,999.99,11/17/19 18:25,"923 Elm St, Atlanta, GA 30301" -295402,Wired Headphones,1,11.99,11/27/19 11:40,"661 Cherry St, Portland, OR 97035" -295403,Wired Headphones,1,11.99,11/23/19 01:27,"843 Adams St, Los Angeles, CA 90001" -295404,AAA Batteries (4-pack),2,2.99,11/23/19 12:25,"481 Maple St, Atlanta, GA 30301" -295405,Lightning Charging Cable,1,14.95,11/26/19 23:24,"272 Maple St, San Francisco, CA 94016" -295406,Bose SoundSport Headphones,1,99.99,11/19/19 12:05,"166 Cherry St, Boston, MA 02215" -295407,Apple Airpods Headphones,1,150,11/16/19 15:29,"908 Spruce St, Los Angeles, CA 90001" -295408,Vareebadd Phone,1,400,11/25/19 11:39,"849 1st St, Boston, MA 02215" -295408,USB-C Charging Cable,1,11.95,11/25/19 11:39,"849 1st St, Boston, MA 02215" -295409,Lightning Charging Cable,1,14.95,11/17/19 19:25,"942 Church St, Seattle, WA 98101" -295410,LG Dryer,1,600.0,11/03/19 21:17,"267 Main St, Atlanta, GA 30301" -295411,USB-C Charging Cable,1,11.95,11/09/19 09:19,"807 Maple St, Los Angeles, CA 90001" -295412,Wired Headphones,1,11.99,11/10/19 14:28,"786 Hickory St, Dallas, TX 75001" -295413,27in 4K Gaming Monitor,1,389.99,11/28/19 14:31,"834 West St, Atlanta, GA 30301" -295414,ThinkPad Laptop,1,999.99,11/07/19 15:33,"795 9th St, San Francisco, CA 94016" -295415,AAA Batteries (4-pack),1,2.99,11/24/19 00:51,"580 West St, Los Angeles, CA 90001" -295416,Lightning Charging Cable,1,14.95,11/03/19 12:58,"173 Walnut St, San Francisco, CA 94016" -295417,AAA Batteries (4-pack),6,2.99,11/25/19 11:02,"204 Church St, New York City, NY 10001" -295418,34in Ultrawide Monitor,1,379.99,11/25/19 10:35,"447 11th St, Austin, TX 73301" -295419,USB-C Charging Cable,1,11.95,11/28/19 07:10,"735 5th St, Portland, OR 97035" -295420,Wired Headphones,1,11.99,11/26/19 21:41,"640 Lakeview St, Los Angeles, CA 90001" -295421,Lightning Charging Cable,1,14.95,11/06/19 01:29,"456 Adams St, Boston, MA 02215" -295422,AA Batteries (4-pack),1,3.84,11/30/19 21:02,"14 Sunset St, Seattle, WA 98101" -295423,Lightning Charging Cable,1,14.95,11/02/19 10:04,"146 11th St, San Francisco, CA 94016" -295424,Vareebadd Phone,1,400,11/26/19 14:43,"602 Wilson St, Boston, MA 02215" -295425,27in 4K Gaming Monitor,1,389.99,11/24/19 19:43,"900 Cherry St, New York City, NY 10001" -295426,Apple Airpods Headphones,1,150,11/22/19 20:10,"123 4th St, Los Angeles, CA 90001" -295427,AA Batteries (4-pack),2,3.84,11/04/19 21:48,"421 Elm St, San Francisco, CA 94016" -295428,Lightning Charging Cable,1,14.95,11/14/19 12:06,"897 6th St, Los Angeles, CA 90001" -295429,Wired Headphones,1,11.99,11/14/19 20:34,"590 9th St, New York City, NY 10001" -295430,Wired Headphones,1,11.99,11/12/19 20:05,"361 9th St, Atlanta, GA 30301" -295431,AA Batteries (4-pack),1,3.84,11/14/19 16:21,"930 River St, Dallas, TX 75001" -295432,Apple Airpods Headphones,1,150,11/21/19 19:15,"130 Madison St, New York City, NY 10001" -295433,AA Batteries (4-pack),1,3.84,11/15/19 18:44,"382 2nd St, Boston, MA 02215" -295434,Flatscreen TV,1,300,11/30/19 14:29,"438 Lakeview St, Dallas, TX 75001" -295435,USB-C Charging Cable,1,11.95,11/10/19 18:09,"294 Lake St, Los Angeles, CA 90001" -295436,iPhone,1,700,11/25/19 07:01,"743 Madison St, San Francisco, CA 94016" -295437,34in Ultrawide Monitor,1,379.99,11/02/19 18:45,"483 10th St, Boston, MA 02215" -295438,Flatscreen TV,1,300,11/07/19 11:20,"318 Dogwood St, Seattle, WA 98101" -295439,USB-C Charging Cable,2,11.95,11/07/19 18:43,"380 Maple St, Los Angeles, CA 90001" -295440,Flatscreen TV,1,300,11/30/19 09:08,"606 13th St, New York City, NY 10001" -295441,Macbook Pro Laptop,1,1700,11/05/19 12:34,"224 Spruce St, Austin, TX 73301" -295442,AA Batteries (4-pack),1,3.84,11/13/19 14:52,"474 Pine St, Austin, TX 73301" -295443,USB-C Charging Cable,1,11.95,11/26/19 08:31,"841 10th St, Seattle, WA 98101" -295444,Lightning Charging Cable,1,14.95,11/19/19 21:45,"975 8th St, San Francisco, CA 94016" -295445,Bose SoundSport Headphones,1,99.99,11/14/19 12:52,"347 Forest St, Portland, OR 97035" -295446,AAA Batteries (4-pack),2,2.99,11/14/19 14:30,"598 Willow St, San Francisco, CA 94016" -295447,Vareebadd Phone,1,400,11/01/19 06:20,"662 Highland St, New York City, NY 10001" -295447,Wired Headphones,1,11.99,11/01/19 06:20,"662 Highland St, New York City, NY 10001" -295448,AA Batteries (4-pack),2,3.84,11/02/19 23:18,"52 11th St, San Francisco, CA 94016" -295449,USB-C Charging Cable,1,11.95,11/01/19 12:22,"81 Center St, San Francisco, CA 94016" -295450,Wired Headphones,1,11.99,11/02/19 11:02,"674 North St, San Francisco, CA 94016" -295451,LG Dryer,1,600.0,11/17/19 10:58,"266 Adams St, Los Angeles, CA 90001" -295452,iPhone,1,700,11/04/19 13:51,"371 1st St, San Francisco, CA 94016" -295453,USB-C Charging Cable,1,11.95,11/22/19 05:55,"941 Sunset St, San Francisco, CA 94016" -295454,Bose SoundSport Headphones,1,99.99,11/05/19 12:53,"787 Jefferson St, Boston, MA 02215" -295455,AAA Batteries (4-pack),1,2.99,11/04/19 23:42,"362 Lincoln St, San Francisco, CA 94016" -295456,Wired Headphones,1,11.99,11/17/19 13:53,"566 Sunset St, Dallas, TX 75001" -295457,USB-C Charging Cable,1,11.95,11/10/19 19:13,"535 Park St, New York City, NY 10001" -295458,AAA Batteries (4-pack),6,2.99,11/19/19 20:02,"258 Madison St, Portland, OR 97035" -295459,Apple Airpods Headphones,1,150,11/02/19 13:14,"993 7th St, Austin, TX 73301" -295460,Flatscreen TV,1,300,11/13/19 20:11,"782 13th St, Boston, MA 02215" -295461,AA Batteries (4-pack),1,3.84,11/18/19 11:11,"820 12th St, Los Angeles, CA 90001" -295462,USB-C Charging Cable,1,11.95,11/30/19 18:37,"690 Church St, Boston, MA 02215" -295463,USB-C Charging Cable,2,11.95,11/02/19 18:21,"640 Park St, Los Angeles, CA 90001" -295464,27in 4K Gaming Monitor,1,389.99,11/28/19 12:48,"101 7th St, New York City, NY 10001" -295465,AAA Batteries (4-pack),2,2.99,11/25/19 23:32,"554 Lincoln St, San Francisco, CA 94016" -295466,Apple Airpods Headphones,1,150,11/21/19 16:54,"103 Adams St, San Francisco, CA 94016" -295467,Bose SoundSport Headphones,1,99.99,11/17/19 20:16,"38 West St, San Francisco, CA 94016" -295468,Wired Headphones,1,11.99,11/03/19 16:36,"599 Hickory St, Los Angeles, CA 90001" -295469,AAA Batteries (4-pack),1,2.99,11/16/19 09:30,"115 11th St, Boston, MA 02215" -295470,AA Batteries (4-pack),1,3.84,11/21/19 07:59,"200 5th St, Los Angeles, CA 90001" -295471,Flatscreen TV,1,300,11/14/19 13:09,"668 Willow St, San Francisco, CA 94016" -295472,USB-C Charging Cable,1,11.95,11/12/19 13:29,"727 Lakeview St, San Francisco, CA 94016" -295473,USB-C Charging Cable,1,11.95,11/08/19 15:00,"272 Cedar St, San Francisco, CA 94016" -295474,Google Phone,1,600,11/22/19 11:50,"878 Ridge St, Boston, MA 02215" -,,,,, -295475,34in Ultrawide Monitor,1,379.99,11/12/19 09:38,"138 Cherry St, San Francisco, CA 94016" -295476,USB-C Charging Cable,1,11.95,11/17/19 16:08,"53 Madison St, San Francisco, CA 94016" -295477,Apple Airpods Headphones,1,150,11/15/19 12:48,"92 1st St, Los Angeles, CA 90001" -295478,AAA Batteries (4-pack),1,2.99,11/28/19 22:46,"467 Elm St, New York City, NY 10001" -,,,,, -295479,AAA Batteries (4-pack),1,2.99,11/03/19 15:22,"593 13th St, Atlanta, GA 30301" -295480,27in FHD Monitor,1,149.99,11/01/19 11:03,"880 1st St, Seattle, WA 98101" -295481,AA Batteries (4-pack),1,3.84,11/17/19 08:03,"643 Cherry St, Los Angeles, CA 90001" -295482,Flatscreen TV,1,300,11/04/19 13:17,"912 Dogwood St, New York City, NY 10001" -295483,Bose SoundSport Headphones,1,99.99,11/15/19 13:01,"370 Chestnut St, New York City, NY 10001" -295484,27in FHD Monitor,1,149.99,11/11/19 20:28,"392 South St, Portland, ME 04101" -295485,34in Ultrawide Monitor,1,379.99,11/18/19 20:43,"829 Jefferson St, Atlanta, GA 30301" -295486,Apple Airpods Headphones,1,150,11/30/19 23:48,"826 10th St, San Francisco, CA 94016" -295487,Apple Airpods Headphones,1,150,11/23/19 19:22,"235 Main St, San Francisco, CA 94016" -295487,Macbook Pro Laptop,1,1700,11/23/19 19:22,"235 Main St, San Francisco, CA 94016" -295488,Lightning Charging Cable,1,14.95,11/16/19 07:09,"876 Dogwood St, Boston, MA 02215" -295489,Wired Headphones,1,11.99,11/27/19 16:59,"373 Walnut St, Dallas, TX 75001" -295490,Lightning Charging Cable,1,14.95,11/24/19 20:10,"79 Sunset St, San Francisco, CA 94016" -295491,USB-C Charging Cable,1,11.95,11/29/19 12:28,"841 1st St, Seattle, WA 98101" -295492,Bose SoundSport Headphones,1,99.99,11/28/19 22:51,"554 6th St, New York City, NY 10001" -295493,Vareebadd Phone,1,400,11/24/19 16:37,"49 Chestnut St, San Francisco, CA 94016" -295494,Flatscreen TV,1,300,11/12/19 19:11,"944 7th St, Atlanta, GA 30301" -295495,Bose SoundSport Headphones,1,99.99,11/12/19 18:49,"723 South St, Dallas, TX 75001" -295496,Wired Headphones,1,11.99,11/02/19 18:56,"401 Walnut St, San Francisco, CA 94016" -295497,Lightning Charging Cable,2,14.95,11/18/19 18:21,"395 Main St, San Francisco, CA 94016" -295498,USB-C Charging Cable,1,11.95,11/17/19 12:55,"909 Lake St, Los Angeles, CA 90001" -295499,Macbook Pro Laptop,1,1700,11/19/19 16:10,"381 Park St, Dallas, TX 75001" -295500,Lightning Charging Cable,1,14.95,11/23/19 15:13,"894 6th St, Los Angeles, CA 90001" -295501,Lightning Charging Cable,1,14.95,11/06/19 12:43,"562 Hickory St, Seattle, WA 98101" -295502,AA Batteries (4-pack),1,3.84,11/05/19 13:04,"931 Forest St, New York City, NY 10001" -295503,AAA Batteries (4-pack),1,2.99,11/08/19 20:40,"559 Forest St, New York City, NY 10001" -295504,AAA Batteries (4-pack),2,2.99,11/04/19 10:52,"682 Madison St, San Francisco, CA 94016" -295505,AA Batteries (4-pack),1,3.84,11/23/19 00:17,"786 Highland St, Portland, OR 97035" -295506,Apple Airpods Headphones,1,150,11/10/19 11:10,"167 Jefferson St, Dallas, TX 75001" -295507,Lightning Charging Cable,1,14.95,11/27/19 16:19,"943 Maple St, Los Angeles, CA 90001" -295508,ThinkPad Laptop,1,999.99,11/21/19 20:48,"591 Spruce St, San Francisco, CA 94016" -295509,AAA Batteries (4-pack),1,2.99,11/27/19 14:36,"241 13th St, New York City, NY 10001" -295510,Wired Headphones,1,11.99,11/01/19 18:55,"496 Willow St, Boston, MA 02215" -295511,LG Dryer,1,600.0,11/20/19 18:44,"187 Lake St, San Francisco, CA 94016" -295512,AAA Batteries (4-pack),2,2.99,11/20/19 12:52,"978 South St, San Francisco, CA 94016" -295513,iPhone,1,700,11/02/19 09:28,"497 South St, San Francisco, CA 94016" -295513,Lightning Charging Cable,1,14.95,11/02/19 09:28,"497 South St, San Francisco, CA 94016" -295514,27in 4K Gaming Monitor,1,389.99,11/12/19 14:36,"955 9th St, Seattle, WA 98101" -295515,AA Batteries (4-pack),1,3.84,11/02/19 22:25,"760 Johnson St, Boston, MA 02215" -295516,iPhone,1,700,11/19/19 23:16,"603 4th St, Los Angeles, CA 90001" -295517,Flatscreen TV,1,300,11/02/19 20:09,"158 Wilson St, Dallas, TX 75001" -295518,27in FHD Monitor,1,149.99,11/29/19 16:25,"122 Lake St, Portland, ME 04101" -295519,Lightning Charging Cable,1,14.95,11/19/19 19:04,"979 Wilson St, New York City, NY 10001" -295520,AA Batteries (4-pack),3,3.84,11/25/19 20:18,"749 5th St, Los Angeles, CA 90001" -295521,27in FHD Monitor,1,149.99,11/07/19 09:41,"102 Pine St, New York City, NY 10001" -295522,AAA Batteries (4-pack),1,2.99,11/02/19 13:16,"882 9th St, New York City, NY 10001" -295523,AAA Batteries (4-pack),1,2.99,11/19/19 17:52,"965 Elm St, San Francisco, CA 94016" -295524,Wired Headphones,1,11.99,11/13/19 18:49,"166 1st St, San Francisco, CA 94016" -295525,USB-C Charging Cable,1,11.95,11/22/19 20:26,"453 12th St, New York City, NY 10001" -295526,Apple Airpods Headphones,1,150,11/21/19 11:26,"550 Park St, Dallas, TX 75001" -295526,27in FHD Monitor,1,149.99,11/21/19 11:26,"550 Park St, Dallas, TX 75001" -295527,AA Batteries (4-pack),1,3.84,11/08/19 18:38,"559 Jefferson St, Seattle, WA 98101" -295528,AA Batteries (4-pack),1,3.84,11/27/19 18:10,"354 8th St, San Francisco, CA 94016" -295529,Wired Headphones,1,11.99,11/16/19 10:46,"810 Lakeview St, Los Angeles, CA 90001" -295530,AAA Batteries (4-pack),2,2.99,11/27/19 19:13,"580 Center St, Austin, TX 73301" -295531,AA Batteries (4-pack),1,3.84,11/26/19 07:12,"793 Jefferson St, Austin, TX 73301" -295532,34in Ultrawide Monitor,1,379.99,11/01/19 10:16,"176 Main St, Portland, ME 04101" -295533,USB-C Charging Cable,1,11.95,11/20/19 19:08,"925 Meadow St, Austin, TX 73301" -295534,Google Phone,1,600,11/06/19 19:21,"22 Pine St, Boston, MA 02215" -295534,USB-C Charging Cable,1,11.95,11/06/19 19:21,"22 Pine St, Boston, MA 02215" -295535,Bose SoundSport Headphones,1,99.99,11/15/19 10:52,"501 Washington St, Seattle, WA 98101" -295536,iPhone,1,700,11/26/19 10:28,"162 Meadow St, Los Angeles, CA 90001" -295537,Google Phone,1,600,11/09/19 12:42,"591 Maple St, Atlanta, GA 30301" -295538,AAA Batteries (4-pack),1,2.99,11/11/19 05:44,"325 9th St, Atlanta, GA 30301" -295539,Wired Headphones,2,11.99,11/05/19 18:58,"407 Forest St, Seattle, WA 98101" -295540,Apple Airpods Headphones,1,150,11/25/19 20:43,"560 Hickory St, San Francisco, CA 94016" -295541,Lightning Charging Cable,1,14.95,11/15/19 16:25,"774 Madison St, Boston, MA 02215" -295542,LG Washing Machine,1,600.0,11/25/19 13:47,"406 Pine St, San Francisco, CA 94016" -295543,Lightning Charging Cable,1,14.95,11/13/19 08:07,"959 Jefferson St, New York City, NY 10001" -295544,Wired Headphones,1,11.99,11/07/19 23:22,"977 Forest St, San Francisco, CA 94016" -295545,USB-C Charging Cable,1,11.95,11/24/19 21:52,"851 Pine St, New York City, NY 10001" -295546,ThinkPad Laptop,1,999.99,11/07/19 14:15,"221 Walnut St, San Francisco, CA 94016" -295547,USB-C Charging Cable,1,11.95,11/30/19 19:36,"883 Lakeview St, Portland, ME 04101" -295548,USB-C Charging Cable,1,11.95,11/07/19 13:52,"39 Pine St, Los Angeles, CA 90001" -295549,34in Ultrawide Monitor,1,379.99,11/09/19 14:25,"881 Jackson St, Seattle, WA 98101" -295550,34in Ultrawide Monitor,1,379.99,11/07/19 16:00,"71 Elm St, Boston, MA 02215" -295551,Wired Headphones,1,11.99,11/12/19 23:05,"330 Forest St, New York City, NY 10001" -295552,iPhone,1,700,11/17/19 00:08,"45 Pine St, Los Angeles, CA 90001" -295553,AAA Batteries (4-pack),1,2.99,11/27/19 20:08,"549 Madison St, Seattle, WA 98101" -295554,Wired Headphones,1,11.99,11/05/19 19:20,"535 Sunset St, Atlanta, GA 30301" -295555,Macbook Pro Laptop,1,1700,11/12/19 21:31,"712 Maple St, San Francisco, CA 94016" -295556,AA Batteries (4-pack),1,3.84,11/29/19 10:22,"499 5th St, Los Angeles, CA 90001" -295557,Wired Headphones,1,11.99,11/17/19 14:30,"412 Adams St, San Francisco, CA 94016" -295558,ThinkPad Laptop,1,999.99,11/28/19 13:09,"577 1st St, San Francisco, CA 94016" -295559,Google Phone,1,600,11/18/19 17:37,"227 Hill St, San Francisco, CA 94016" -295560,Flatscreen TV,1,300,11/06/19 11:47,"916 Chestnut St, Los Angeles, CA 90001" -295561,Wired Headphones,1,11.99,11/08/19 17:50,"700 Cherry St, Seattle, WA 98101" -295562,Wired Headphones,1,11.99,11/29/19 17:57,"188 Meadow St, San Francisco, CA 94016" -295563,AA Batteries (4-pack),1,3.84,11/21/19 22:48,"113 Johnson St, Portland, OR 97035" -295564,Wired Headphones,1,11.99,11/11/19 11:08,"100 6th St, San Francisco, CA 94016" -295565,27in FHD Monitor,1,149.99,11/11/19 19:24,"900 10th St, Los Angeles, CA 90001" -295566,Wired Headphones,1,11.99,11/26/19 11:00,"526 Center St, Los Angeles, CA 90001" -295567,Apple Airpods Headphones,1,150,11/20/19 10:38,"672 Maple St, Dallas, TX 75001" -295568,Wired Headphones,1,11.99,11/18/19 22:57,"477 10th St, Los Angeles, CA 90001" -295569,34in Ultrawide Monitor,1,379.99,11/21/19 05:27,"631 9th St, Los Angeles, CA 90001" -295570,AAA Batteries (4-pack),1,2.99,11/02/19 08:59,"726 South St, New York City, NY 10001" -295571,Wired Headphones,1,11.99,11/06/19 12:54,"513 Ridge St, San Francisco, CA 94016" -295572,Bose SoundSport Headphones,1,99.99,11/16/19 13:53,"516 Ridge St, Atlanta, GA 30301" -295573,AA Batteries (4-pack),3,3.84,11/24/19 12:34,"865 Park St, San Francisco, CA 94016" -295574,Macbook Pro Laptop,1,1700,11/25/19 16:05,"592 Lincoln St, Atlanta, GA 30301" -295575,34in Ultrawide Monitor,1,379.99,11/26/19 06:34,"197 14th St, Boston, MA 02215" -295576,AA Batteries (4-pack),2,3.84,11/09/19 17:06,"269 2nd St, New York City, NY 10001" -295577,USB-C Charging Cable,1,11.95,11/02/19 21:52,"404 Highland St, Portland, OR 97035" -295578,Lightning Charging Cable,1,14.95,11/18/19 20:35,"319 Ridge St, Seattle, WA 98101" -295579,27in FHD Monitor,1,149.99,11/30/19 21:32,"627 Main St, Seattle, WA 98101" -295580,AA Batteries (4-pack),2,3.84,11/04/19 21:25,"111 7th St, New York City, NY 10001" -295581,Lightning Charging Cable,1,14.95,11/08/19 21:01,"288 Johnson St, New York City, NY 10001" -295582,Bose SoundSport Headphones,1,99.99,11/15/19 18:26,"820 Center St, San Francisco, CA 94016" -295583,AAA Batteries (4-pack),3,2.99,11/08/19 12:44,"575 Forest St, Los Angeles, CA 90001" -295584,Apple Airpods Headphones,1,150,11/15/19 19:07,"747 Forest St, New York City, NY 10001" -295585,Flatscreen TV,1,300,11/03/19 06:03,"380 Willow St, Los Angeles, CA 90001" -295586,USB-C Charging Cable,1,11.95,11/15/19 20:42,"138 North St, Boston, MA 02215" -295587,Bose SoundSport Headphones,2,99.99,11/27/19 00:07,"966 Main St, Los Angeles, CA 90001" -295588,Lightning Charging Cable,1,14.95,11/02/19 16:07,"416 Madison St, San Francisco, CA 94016" -295589,iPhone,1,700,11/14/19 16:06,"946 7th St, San Francisco, CA 94016" -295590,AA Batteries (4-pack),1,3.84,11/19/19 09:41,"772 South St, New York City, NY 10001" -295591,Lightning Charging Cable,1,14.95,11/29/19 14:00,"923 Highland St, New York City, NY 10001" -295592,Bose SoundSport Headphones,1,99.99,11/28/19 00:35,"99 West St, San Francisco, CA 94016" -295593,Apple Airpods Headphones,1,150,11/07/19 20:00,"481 Hickory St, Dallas, TX 75001" -295594,Lightning Charging Cable,1,14.95,11/26/19 07:27,"901 Madison St, New York City, NY 10001" -295595,Lightning Charging Cable,1,14.95,11/08/19 07:20,"405 Park St, New York City, NY 10001" -295596,Wired Headphones,1,11.99,11/19/19 00:34,"865 Lincoln St, San Francisco, CA 94016" -295597,ThinkPad Laptop,1,999.99,11/29/19 21:47,"587 11th St, Los Angeles, CA 90001" -295598,AAA Batteries (4-pack),1,2.99,11/24/19 22:39,"88 Johnson St, Atlanta, GA 30301" -295599,iPhone,1,700,11/25/19 21:17,"258 Ridge St, New York City, NY 10001" -295599,Apple Airpods Headphones,1,150,11/25/19 21:17,"258 Ridge St, New York City, NY 10001" -295600,AA Batteries (4-pack),1,3.84,11/17/19 11:53,"665 14th St, Seattle, WA 98101" -295601,27in FHD Monitor,1,149.99,11/09/19 15:09,"609 Cherry St, New York City, NY 10001" -295602,Bose SoundSport Headphones,1,99.99,11/24/19 14:49,"927 5th St, New York City, NY 10001" -295603,Lightning Charging Cable,1,14.95,11/08/19 19:55,"485 Wilson St, New York City, NY 10001" -295604,34in Ultrawide Monitor,1,379.99,11/10/19 21:14,"655 Walnut St, Los Angeles, CA 90001" -295605,Apple Airpods Headphones,1,150,11/17/19 17:47,"969 Hill St, San Francisco, CA 94016" -295606,Apple Airpods Headphones,1,150,11/09/19 05:41,"566 11th St, Austin, TX 73301" -295607,27in FHD Monitor,1,149.99,11/15/19 19:46,"92 12th St, San Francisco, CA 94016" -295608,AAA Batteries (4-pack),1,2.99,11/12/19 17:19,"769 Hickory St, Portland, OR 97035" -295609,20in Monitor,1,109.99,11/01/19 10:21,"307 Hickory St, San Francisco, CA 94016" -295610,Wired Headphones,1,11.99,11/30/19 06:07,"277 Jackson St, New York City, NY 10001" -295611,AAA Batteries (4-pack),1,2.99,11/13/19 19:00,"577 13th St, Atlanta, GA 30301" -295612,Bose SoundSport Headphones,1,99.99,11/24/19 17:50,"813 8th St, New York City, NY 10001" -295613,USB-C Charging Cable,1,11.95,11/18/19 20:21,"802 2nd St, Boston, MA 02215" -295614,AAA Batteries (4-pack),1,2.99,11/29/19 10:25,"816 Jackson St, Boston, MA 02215" -295615,Wired Headphones,1,11.99,11/14/19 13:21,"774 10th St, Dallas, TX 75001" -295616,USB-C Charging Cable,2,11.95,11/17/19 15:28,"726 South St, Atlanta, GA 30301" -295617,USB-C Charging Cable,1,11.95,11/20/19 12:11,"246 Chestnut St, Austin, TX 73301" -295618,Wired Headphones,1,11.99,11/10/19 13:17,"894 Ridge St, Atlanta, GA 30301" -295619,Apple Airpods Headphones,2,150,11/01/19 12:58,"610 Ridge St, Los Angeles, CA 90001" -295620,AA Batteries (4-pack),2,3.84,11/18/19 23:39,"802 9th St, Dallas, TX 75001" -295621,Bose SoundSport Headphones,1,99.99,11/14/19 00:29,"629 1st St, Los Angeles, CA 90001" -295622,Apple Airpods Headphones,1,150,11/22/19 15:13,"210 Elm St, Los Angeles, CA 90001" -295623,Bose SoundSport Headphones,1,99.99,11/30/19 12:59,"259 Sunset St, Atlanta, GA 30301" -295624,iPhone,1,700,11/22/19 14:57,"305 1st St, Austin, TX 73301" -295625,ThinkPad Laptop,1,999.99,11/22/19 15:16,"504 7th St, New York City, NY 10001" -295626,27in FHD Monitor,2,149.99,11/01/19 09:53,"786 Maple St, Dallas, TX 75001" -295627,34in Ultrawide Monitor,1,379.99,11/23/19 21:01,"982 Jefferson St, New York City, NY 10001" -295628,AA Batteries (4-pack),1,3.84,11/09/19 22:12,"515 Elm St, Boston, MA 02215" -295629,34in Ultrawide Monitor,1,379.99,11/21/19 13:09,"239 River St, Austin, TX 73301" -295630,ThinkPad Laptop,1,999.99,11/16/19 15:12,"382 10th St, Los Angeles, CA 90001" -295631,USB-C Charging Cable,1,11.95,11/27/19 17:12,"547 Jackson St, San Francisco, CA 94016" -295632,Lightning Charging Cable,2,14.95,11/22/19 17:46,"899 Main St, Dallas, TX 75001" -295633,Apple Airpods Headphones,1,150,11/22/19 20:59,"253 11th St, San Francisco, CA 94016" -295634,AA Batteries (4-pack),1,3.84,11/24/19 08:03,"378 Sunset St, Boston, MA 02215" -295635,Bose SoundSport Headphones,1,99.99,11/17/19 09:11,"379 Sunset St, San Francisco, CA 94016" -295636,AA Batteries (4-pack),2,3.84,12/01/19 00:20,"204 Walnut St, Dallas, TX 75001" -295637,AAA Batteries (4-pack),1,2.99,11/09/19 20:35,"516 Lincoln St, Seattle, WA 98101" -295638,Bose SoundSport Headphones,1,99.99,11/11/19 12:39,"359 Main St, Austin, TX 73301" -295639,Wired Headphones,1,11.99,11/04/19 08:48,"999 Jefferson St, Austin, TX 73301" -295640,USB-C Charging Cable,1,11.95,11/18/19 14:41,"862 Washington St, New York City, NY 10001" -295641,USB-C Charging Cable,1,11.95,11/16/19 00:26,"568 Adams St, San Francisco, CA 94016" -295642,AA Batteries (4-pack),1,3.84,11/05/19 21:21,"93 Washington St, Austin, TX 73301" -295643,20in Monitor,1,109.99,11/27/19 14:25,"530 13th St, Boston, MA 02215" -295644,AAA Batteries (4-pack),1,2.99,11/12/19 20:53,"558 6th St, Portland, OR 97035" -295645,USB-C Charging Cable,1,11.95,11/04/19 18:27,"213 Ridge St, Los Angeles, CA 90001" -295646,Flatscreen TV,1,300,11/09/19 15:13,"133 Park St, New York City, NY 10001" -295647,34in Ultrawide Monitor,1,379.99,11/14/19 21:12,"720 4th St, Boston, MA 02215" -295648,Bose SoundSport Headphones,1,99.99,11/23/19 16:05,"920 Hill St, San Francisco, CA 94016" -295649,AA Batteries (4-pack),1,3.84,11/15/19 20:52,"118 8th St, Los Angeles, CA 90001" -295650,Apple Airpods Headphones,1,150,11/17/19 10:08,"643 Main St, Atlanta, GA 30301" -295651,Macbook Pro Laptop,1,1700,11/27/19 14:41,"842 Chestnut St, New York City, NY 10001" -295652,Macbook Pro Laptop,1,1700,11/22/19 10:29,"983 Highland St, San Francisco, CA 94016" -295653,AA Batteries (4-pack),1,3.84,11/24/19 16:06,"299 Spruce St, New York City, NY 10001" -295654,Apple Airpods Headphones,1,150,11/18/19 12:50,"635 Wilson St, San Francisco, CA 94016" -295655,Wired Headphones,1,11.99,11/10/19 10:39,"246 Ridge St, New York City, NY 10001" -295656,Wired Headphones,1,11.99,11/04/19 16:26,"320 Pine St, Atlanta, GA 30301" -295657,AA Batteries (4-pack),1,3.84,11/02/19 18:29,"596 Cherry St, Atlanta, GA 30301" -295658,Google Phone,1,600,11/17/19 13:37,"949 River St, San Francisco, CA 94016" -295659,AA Batteries (4-pack),3,3.84,11/22/19 20:07,"173 11th St, San Francisco, CA 94016" -295660,AAA Batteries (4-pack),2,2.99,11/04/19 14:17,"574 4th St, Los Angeles, CA 90001" -295661,USB-C Charging Cable,1,11.95,11/23/19 07:22,"359 1st St, Austin, TX 73301" -295662,Lightning Charging Cable,1,14.95,11/13/19 16:12,"900 10th St, Boston, MA 02215" -295663,AAA Batteries (4-pack),1,2.99,11/17/19 17:08,"592 Sunset St, Boston, MA 02215" -295664,Google Phone,1,600,11/17/19 16:13,"428 Jackson St, Boston, MA 02215" -259358,34in Ultrawide Monitor,1,379.99,10/28/19 10:56,"609 Cherry St, Dallas, TX 75001" -259359,27in 4K Gaming Monitor,1,389.99,10/28/19 17:26,"225 5th St, Los Angeles, CA 90001" -259360,AAA Batteries (4-pack),2,2.99,10/24/19 17:20,"967 12th St, New York City, NY 10001" -259361,27in FHD Monitor,1,149.99,10/14/19 22:26,"628 Jefferson St, New York City, NY 10001" -259362,Wired Headphones,1,11.99,10/07/19 16:10,"534 14th St, Los Angeles, CA 90001" -259363,AAA Batteries (4-pack),1,2.99,10/01/19 18:55,"976 Lake St, New York City, NY 10001" -259364,Wired Headphones,1,11.99,10/29/19 11:02,"874 North St, Los Angeles, CA 90001" -259365,Lightning Charging Cable,1,14.95,10/29/19 11:19,"127 12th St, Los Angeles, CA 90001" -259366,Apple Airpods Headphones,1,150.0,10/20/19 11:52,"955 9th St, Los Angeles, CA 90001" -259367,Apple Airpods Headphones,1,150.0,10/16/19 16:19,"742 14th St, San Francisco, CA 94016" -259368,27in FHD Monitor,1,149.99,10/13/19 13:47,"960 Ridge St, Boston, MA 02215" -259369,USB-C Charging Cable,1,11.95,10/26/19 10:54,"538 Johnson St, Portland, OR 97035" -259370,20in Monitor,1,109.99,10/28/19 23:56,"528 Forest St, San Francisco, CA 94016" -259371,iPhone,1,700.0,10/26/19 12:12,"306 Main St, Los Angeles, CA 90001" -259372,Wired Headphones,1,11.99,10/17/19 11:07,"434 Madison St, San Francisco, CA 94016" -259373,27in FHD Monitor,1,149.99,10/31/19 20:15,"924 Church St, San Francisco, CA 94016" -259374,Apple Airpods Headphones,1,150.0,10/17/19 22:14,"784 6th St, Los Angeles, CA 90001" -259375,USB-C Charging Cable,1,11.95,10/10/19 08:53,"557 Forest St, San Francisco, CA 94016" -259376,27in FHD Monitor,1,149.99,10/12/19 00:03,"218 14th St, San Francisco, CA 94016" -259377,Bose SoundSport Headphones,1,99.99,10/23/19 16:49,"88 Main St, Boston, MA 02215" -259378,Lightning Charging Cable,1,14.95,10/18/19 16:45,"997 1st St, Boston, MA 02215" -259379,27in 4K Gaming Monitor,1,389.99,10/09/19 13:15,"148 Lincoln St, San Francisco, CA 94016" -259380,Apple Airpods Headphones,1,150.0,10/19/19 12:21,"424 North St, San Francisco, CA 94016" -259381,ThinkPad Laptop,1,999.99,10/25/19 08:44,"887 12th St, New York City, NY 10001" -259382,Wired Headphones,1,11.99,10/18/19 14:16,"605 Ridge St, New York City, NY 10001" -259383,Apple Airpods Headphones,1,150.0,10/13/19 12:32,"597 6th St, Los Angeles, CA 90001" -259384,ThinkPad Laptop,1,999.99,10/29/19 23:22,"383 Cedar St, Dallas, TX 75001" -259385,Lightning Charging Cable,1,14.95,10/28/19 15:28,"892 1st St, Los Angeles, CA 90001" -259386,Lightning Charging Cable,1,14.95,10/16/19 21:39,"966 Hickory St, Los Angeles, CA 90001" -259387,Bose SoundSport Headphones,1,99.99,10/01/19 13:58,"695 6th St, New York City, NY 10001" -259388,AA Batteries (4-pack),1,3.84,10/12/19 13:15,"948 Forest St, San Francisco, CA 94016" -259389,AAA Batteries (4-pack),1,2.99,10/17/19 14:14,"661 Maple St, Dallas, TX 75001" -259390,Lightning Charging Cable,1,14.95,10/08/19 12:35,"134 Cherry St, Atlanta, GA 30301" -259391,Google Phone,1,600.0,10/24/19 12:51,"374 Hill St, Dallas, TX 75001" -259392,Wired Headphones,1,11.99,10/19/19 15:26,"374 Forest St, Los Angeles, CA 90001" -259393,AA Batteries (4-pack),1,3.84,10/22/19 20:35,"2 13th St, New York City, NY 10001" -259394,AA Batteries (4-pack),1,3.84,10/24/19 18:58,"909 Lake St, Atlanta, GA 30301" -259395,Bose SoundSport Headphones,1,99.99,10/13/19 13:55,"235 Adams St, Atlanta, GA 30301" -259396,AAA Batteries (4-pack),1,2.99,10/23/19 22:40,"218 Spruce St, Austin, TX 73301" -259397,Wired Headphones,1,11.99,10/01/19 14:39,"901 Walnut St, Atlanta, GA 30301" -259398,Bose SoundSport Headphones,1,99.99,10/22/19 10:20,"367 Pine St, Seattle, WA 98101" -259399,AAA Batteries (4-pack),2,2.99,10/31/19 19:06,"263 Willow St, San Francisco, CA 94016" -259400,27in 4K Gaming Monitor,1,389.99,10/19/19 09:24,"628 Forest St, Los Angeles, CA 90001" -259401,Wired Headphones,1,11.99,10/15/19 23:39,"291 Lincoln St, Los Angeles, CA 90001" -259402,AA Batteries (4-pack),3,3.84,10/09/19 20:27,"11 Lakeview St, Seattle, WA 98101" -259403,USB-C Charging Cable,1,11.95,10/25/19 19:42,"255 Cedar St, New York City, NY 10001" -259404,Bose SoundSport Headphones,1,99.99,10/07/19 19:48,"883 5th St, Boston, MA 02215" -259405,Bose SoundSport Headphones,1,99.99,10/07/19 19:19,"698 Center St, Dallas, TX 75001" -259406,AA Batteries (4-pack),1,3.84,10/12/19 12:01,"665 Elm St, Atlanta, GA 30301" -259407,Lightning Charging Cable,1,14.95,10/30/19 12:09,"189 Chestnut St, San Francisco, CA 94016" -259408,34in Ultrawide Monitor,1,379.99,10/21/19 20:09,"36 Pine St, Los Angeles, CA 90001" -259409,27in FHD Monitor,1,149.99,10/03/19 16:26,"854 Main St, Austin, TX 73301" -259410,AA Batteries (4-pack),2,3.84,10/01/19 21:32,"110 Hill St, San Francisco, CA 94016" -259411,AA Batteries (4-pack),1,3.84,10/09/19 14:47,"39 West St, San Francisco, CA 94016" -259412,Apple Airpods Headphones,1,150.0,10/24/19 18:05,"276 North St, Los Angeles, CA 90001" -259413,Bose SoundSport Headphones,1,99.99,10/30/19 09:54,"387 West St, Boston, MA 02215" -259414,Apple Airpods Headphones,1,150.0,10/08/19 21:01,"29 Washington St, San Francisco, CA 94016" -259415,AAA Batteries (4-pack),2,2.99,10/16/19 19:13,"280 8th St, Portland, OR 97035" -259416,Vareebadd Phone,1,400.0,10/10/19 19:10,"680 South St, Dallas, TX 75001" -259417,Wired Headphones,1,11.99,10/08/19 16:27,"908 Washington St, Seattle, WA 98101" -259418,iPhone,1,700.0,10/25/19 12:06,"253 8th St, Austin, TX 73301" -259419,USB-C Charging Cable,1,11.95,10/28/19 08:13,"820 South St, Los Angeles, CA 90001" -259420,Google Phone,1,600.0,10/18/19 08:54,"791 Forest St, Los Angeles, CA 90001" -259420,USB-C Charging Cable,2,11.95,10/18/19 08:54,"791 Forest St, Los Angeles, CA 90001" -259421,Wired Headphones,1,11.99,10/19/19 16:52,"240 Chestnut St, San Francisco, CA 94016" -259422,Google Phone,1,600.0,10/05/19 04:53,"849 Ridge St, San Francisco, CA 94016" -259422,USB-C Charging Cable,1,11.95,10/05/19 04:53,"849 Ridge St, San Francisco, CA 94016" -259423,AA Batteries (4-pack),1,3.84,10/14/19 15:37,"32 12th St, New York City, NY 10001" -259424,USB-C Charging Cable,2,11.95,10/31/19 22:54,"64 Lake St, Atlanta, GA 30301" -259425,Lightning Charging Cable,1,14.95,10/18/19 11:36,"81 Spruce St, Austin, TX 73301" -259426,27in 4K Gaming Monitor,1,389.99,10/17/19 10:43,"595 6th St, Dallas, TX 75001" -259427,iPhone,1,700.0,10/06/19 21:23,"528 13th St, New York City, NY 10001" -259428,AA Batteries (4-pack),1,3.84,10/07/19 22:09,"891 14th St, Los Angeles, CA 90001" -259429,Lightning Charging Cable,1,14.95,10/21/19 19:52,"632 Willow St, San Francisco, CA 94016" -259430,USB-C Charging Cable,1,11.95,10/02/19 23:59,"212 Hill St, San Francisco, CA 94016" -259431,27in FHD Monitor,1,149.99,10/23/19 13:13,"962 South St, Boston, MA 02215" -259432,iPhone,1,700.0,10/20/19 15:55,"47 4th St, Boston, MA 02215" -259433,Bose SoundSport Headphones,1,99.99,10/11/19 09:01,"114 Park St, Boston, MA 02215" -259434,Lightning Charging Cable,1,14.95,10/21/19 23:05,"499 2nd St, Boston, MA 02215" -259435,Wired Headphones,1,11.99,10/17/19 16:00,"664 9th St, Boston, MA 02215" -259436,Wired Headphones,2,11.99,10/26/19 00:30,"23 Walnut St, San Francisco, CA 94016" -259437,AA Batteries (4-pack),1,3.84,10/02/19 18:52,"935 Willow St, Seattle, WA 98101" -259438,iPhone,1,700.0,10/29/19 09:47,"176 5th St, Los Angeles, CA 90001" -259438,Lightning Charging Cable,1,14.95,10/29/19 09:47,"176 5th St, Los Angeles, CA 90001" -259439,USB-C Charging Cable,1,11.95,10/15/19 09:57,"5 Hill St, San Francisco, CA 94016" -259440,AA Batteries (4-pack),1,3.84,10/04/19 10:22,"71 Meadow St, Los Angeles, CA 90001" -259441,AA Batteries (4-pack),1,3.84,10/26/19 14:32,"413 7th St, San Francisco, CA 94016" -259442,USB-C Charging Cable,1,11.95,10/05/19 19:07,"966 14th St, Los Angeles, CA 90001" -259443,Vareebadd Phone,1,400.0,10/01/19 10:20,"875 Lakeview St, Los Angeles, CA 90001" -259444,Google Phone,1,600.0,10/29/19 14:27,"982 8th St, Austin, TX 73301" -259445,USB-C Charging Cable,1,11.95,10/29/19 15:45,"301 4th St, Atlanta, GA 30301" -259446,20in Monitor,1,109.99,10/16/19 15:01,"796 Washington St, Los Angeles, CA 90001" -259447,27in FHD Monitor,1,149.99,10/02/19 16:55,"886 1st St, San Francisco, CA 94016" -259448,AA Batteries (4-pack),2,3.84,10/18/19 21:47,"145 River St, Los Angeles, CA 90001" -259449,AA Batteries (4-pack),1,3.84,10/11/19 14:31,"947 Sunset St, Boston, MA 02215" -259450,AAA Batteries (4-pack),1,2.99,10/16/19 19:49,"796 8th St, San Francisco, CA 94016" -259451,34in Ultrawide Monitor,1,379.99,10/13/19 19:46,"951 Elm St, Dallas, TX 75001" -259452,USB-C Charging Cable,1,11.95,10/27/19 02:21,"709 Madison St, San Francisco, CA 94016" -259453,Flatscreen TV,1,300.0,10/10/19 12:59,"94 Spruce St, Los Angeles, CA 90001" -259454,Wired Headphones,1,11.99,10/02/19 18:36,"387 7th St, New York City, NY 10001" -259455,Lightning Charging Cable,1,14.95,10/13/19 12:32,"750 7th St, San Francisco, CA 94016" -259456,Lightning Charging Cable,1,14.95,10/25/19 22:06,"271 River St, Dallas, TX 75001" -259457,Apple Airpods Headphones,1,150.0,10/25/19 08:51,"860 Main St, Boston, MA 02215" -259458,34in Ultrawide Monitor,1,379.99,10/08/19 09:08,"728 1st St, Portland, OR 97035" -259458,ThinkPad Laptop,1,999.99,10/08/19 09:08,"728 1st St, Portland, OR 97035" -259459,Bose SoundSport Headphones,1,99.99,10/25/19 10:20,"384 Ridge St, Boston, MA 02215" -259460,Apple Airpods Headphones,1,150.0,10/11/19 17:51,"368 Maple St, Atlanta, GA 30301" -259461,Apple Airpods Headphones,1,150.0,10/08/19 15:21,"495 Hickory St, Boston, MA 02215" -259462,USB-C Charging Cable,1,11.95,10/18/19 12:48,"582 2nd St, Boston, MA 02215" -259463,Wired Headphones,1,11.99,10/27/19 00:49,"647 8th St, Los Angeles, CA 90001" -259464,Lightning Charging Cable,1,14.95,10/24/19 16:04,"478 Church St, Austin, TX 73301" -259465,Wired Headphones,1,11.99,10/08/19 12:39,"953 West St, San Francisco, CA 94016" -259466,USB-C Charging Cable,1,11.95,10/26/19 10:29,"454 Ridge St, New York City, NY 10001" -259467,AA Batteries (4-pack),3,3.84,10/06/19 12:22,"512 1st St, Austin, TX 73301" -259468,Bose SoundSport Headphones,1,99.99,10/28/19 14:13,"221 River St, Portland, OR 97035" -259469,Macbook Pro Laptop,1,1700.0,10/19/19 19:28,"822 9th St, Atlanta, GA 30301" -259470,27in FHD Monitor,1,149.99,10/28/19 13:41,"226 Sunset St, San Francisco, CA 94016" -259471,Google Phone,1,600.0,10/12/19 16:43,"243 West St, Los Angeles, CA 90001" -259472,27in FHD Monitor,1,149.99,10/25/19 14:46,"144 Ridge St, Atlanta, GA 30301" -259473,Apple Airpods Headphones,1,150.0,10/24/19 10:43,"26 Chestnut St, Atlanta, GA 30301" -259474,Apple Airpods Headphones,1,150.0,10/21/19 15:21,"460 14th St, Austin, TX 73301" -259475,Bose SoundSport Headphones,1,99.99,10/05/19 11:33,"339 Spruce St, Los Angeles, CA 90001" -259476,Google Phone,1,600.0,10/13/19 10:23,"995 Main St, San Francisco, CA 94016" -259477,LG Dryer,1,600.0,10/12/19 09:38,"822 North St, San Francisco, CA 94016" -259477,AAA Batteries (4-pack),1,2.99,10/12/19 09:38,"822 North St, San Francisco, CA 94016" -259478,AAA Batteries (4-pack),2,2.99,10/12/19 19:49,"874 1st St, New York City, NY 10001" -259479,20in Monitor,1,109.99,10/29/19 18:42,"43 Sunset St, Atlanta, GA 30301" -259480,AAA Batteries (4-pack),1,2.99,10/14/19 23:10,"231 Ridge St, New York City, NY 10001" -259481,USB-C Charging Cable,1,11.95,10/08/19 15:53,"205 12th St, Seattle, WA 98101" -259482,Lightning Charging Cable,1,14.95,10/24/19 16:53,"280 Cherry St, New York City, NY 10001" -259483,AAA Batteries (4-pack),1,2.99,10/23/19 22:12,"872 Lakeview St, San Francisco, CA 94016" -259484,AAA Batteries (4-pack),1,2.99,10/03/19 14:40,"27 Cedar St, Seattle, WA 98101" -259485,27in 4K Gaming Monitor,1,389.99,10/23/19 13:57,"118 6th St, Los Angeles, CA 90001" -259486,34in Ultrawide Monitor,1,379.99,10/27/19 13:22,"766 Hickory St, San Francisco, CA 94016" -259487,ThinkPad Laptop,1,999.99,10/09/19 12:35,"699 Lake St, San Francisco, CA 94016" -259488,USB-C Charging Cable,1,11.95,10/06/19 13:59,"388 Highland St, New York City, NY 10001" -259489,Apple Airpods Headphones,1,150.0,10/10/19 13:10,"778 Maple St, Atlanta, GA 30301" -259490,Macbook Pro Laptop,1,1700.0,10/29/19 04:08,"721 8th St, New York City, NY 10001" -259491,Lightning Charging Cable,1,14.95,10/05/19 07:19,"592 Highland St, Los Angeles, CA 90001" -259492,USB-C Charging Cable,1,11.95,10/27/19 10:18,"930 Elm St, Los Angeles, CA 90001" -259493,Flatscreen TV,1,300.0,10/19/19 06:12,"336 Wilson St, Boston, MA 02215" -259494,Flatscreen TV,1,300.0,10/06/19 19:12,"252 Lake St, Atlanta, GA 30301" -259495,USB-C Charging Cable,1,11.95,10/07/19 09:10,"275 Washington St, Boston, MA 02215" -259496,Lightning Charging Cable,1,14.95,10/13/19 23:19,"325 Cherry St, San Francisco, CA 94016" -259497,Apple Airpods Headphones,1,150.0,10/29/19 11:20,"264 Willow St, Austin, TX 73301" -259498,Bose SoundSport Headphones,1,99.99,10/11/19 20:58,"253 8th St, Los Angeles, CA 90001" -259499,AAA Batteries (4-pack),2,2.99,10/23/19 20:00,"670 West St, Los Angeles, CA 90001" -259500,Wired Headphones,1,11.99,10/21/19 09:04,"221 Wilson St, Los Angeles, CA 90001" -259501,AA Batteries (4-pack),1,3.84,10/16/19 12:17,"7 11th St, Dallas, TX 75001" -259502,Wired Headphones,1,11.99,10/06/19 08:37,"381 Center St, Dallas, TX 75001" -259503,Lightning Charging Cable,1,14.95,10/23/19 15:07,"130 Highland St, San Francisco, CA 94016" -259504,AA Batteries (4-pack),1,3.84,10/22/19 23:14,"178 Washington St, Dallas, TX 75001" -259505,Apple Airpods Headphones,1,150.0,10/24/19 22:21,"375 River St, Los Angeles, CA 90001" -259506,Lightning Charging Cable,1,14.95,10/24/19 01:52,"114 Dogwood St, Boston, MA 02215" -259507,AAA Batteries (4-pack),1,2.99,10/23/19 06:32,"359 Lincoln St, Boston, MA 02215" -259508,USB-C Charging Cable,1,11.95,10/28/19 08:58,"63 South St, San Francisco, CA 94016" -259509,AAA Batteries (4-pack),2,2.99,10/16/19 14:48,"68 Chestnut St, New York City, NY 10001" -259510,AA Batteries (4-pack),4,3.84,10/14/19 11:54,"817 Maple St, San Francisco, CA 94016" -259511,AAA Batteries (4-pack),2,2.99,10/03/19 13:05,"237 Adams St, Los Angeles, CA 90001" -259512,Wired Headphones,1,11.99,10/31/19 15:38,"758 11th St, New York City, NY 10001" -259513,Lightning Charging Cable,1,14.95,10/05/19 17:17,"499 7th St, Boston, MA 02215" -259514,Lightning Charging Cable,1,14.95,10/02/19 21:05,"211 West St, San Francisco, CA 94016" -259515,Flatscreen TV,1,300.0,10/12/19 10:35,"279 Madison St, Austin, TX 73301" -259516,USB-C Charging Cable,1,11.95,10/19/19 08:13,"169 Maple St, Atlanta, GA 30301" -259517,Apple Airpods Headphones,1,150.0,10/01/19 20:35,"92 West St, San Francisco, CA 94016" -259518,34in Ultrawide Monitor,1,379.99,10/25/19 14:09,"662 West St, San Francisco, CA 94016" -259519,Google Phone,1,600.0,10/14/19 19:02,"448 11th St, Los Angeles, CA 90001" -259520,AA Batteries (4-pack),1,3.84,10/09/19 20:07,"427 Washington St, San Francisco, CA 94016" -259521,Wired Headphones,1,11.99,10/03/19 11:40,"24 Wilson St, Atlanta, GA 30301" -259522,Lightning Charging Cable,1,14.95,10/27/19 06:57,"653 5th St, New York City, NY 10001" -259523,27in FHD Monitor,1,149.99,10/11/19 05:09,"697 Chestnut St, New York City, NY 10001" -259524,34in Ultrawide Monitor,1,379.99,10/12/19 21:04,"384 Chestnut St, San Francisco, CA 94016" -259525,Lightning Charging Cable,1,14.95,10/07/19 19:46,"270 Main St, Los Angeles, CA 90001" -259526,Lightning Charging Cable,1,14.95,10/07/19 13:14,"836 Jackson St, Boston, MA 02215" -259527,Apple Airpods Headphones,1,150.0,10/18/19 22:10,"293 Hickory St, Austin, TX 73301" -259528,27in FHD Monitor,1,149.99,10/22/19 22:48,"936 Sunset St, Seattle, WA 98101" -259529,iPhone,1,700.0,10/14/19 14:41,"84 Washington St, San Francisco, CA 94016" -259529,Apple Airpods Headphones,1,150.0,10/14/19 14:41,"84 Washington St, San Francisco, CA 94016" -259529,Wired Headphones,1,11.99,10/14/19 14:41,"84 Washington St, San Francisco, CA 94016" -259530,AA Batteries (4-pack),1,3.84,10/31/19 11:45,"521 Maple St, Los Angeles, CA 90001" -259531,Lightning Charging Cable,1,14.95,10/27/19 14:18,"23 13th St, Boston, MA 02215" -259532,Apple Airpods Headphones,1,150.0,10/28/19 11:09,"895 Lincoln St, Boston, MA 02215" -259533,AA Batteries (4-pack),3,3.84,10/19/19 17:38,"730 Lakeview St, New York City, NY 10001" -259534,Wired Headphones,1,11.99,10/22/19 19:23,"714 River St, San Francisco, CA 94016" -259535,Wired Headphones,1,11.99,10/09/19 16:11,"812 11th St, Dallas, TX 75001" -259536,Lightning Charging Cable,1,14.95,10/05/19 00:33,"568 14th St, Atlanta, GA 30301" -259537,AAA Batteries (4-pack),2,2.99,10/02/19 16:01,"387 12th St, San Francisco, CA 94016" -259537,USB-C Charging Cable,1,11.95,10/02/19 16:01,"387 12th St, San Francisco, CA 94016" -259538,Lightning Charging Cable,1,14.95,10/27/19 16:42,"600 Hill St, Atlanta, GA 30301" -259539,AAA Batteries (4-pack),1,2.99,10/27/19 12:48,"444 Lakeview St, Portland, OR 97035" -259540,AAA Batteries (4-pack),4,2.99,10/19/19 07:27,"545 7th St, New York City, NY 10001" -259541,Bose SoundSport Headphones,1,99.99,10/22/19 15:51,"563 12th St, Dallas, TX 75001" -259542,AAA Batteries (4-pack),2,2.99,10/22/19 00:11,"227 Lake St, Boston, MA 02215" -259543,AAA Batteries (4-pack),1,2.99,10/06/19 14:00,"668 Johnson St, San Francisco, CA 94016" -259544,Wired Headphones,1,11.99,10/28/19 10:26,"238 Ridge St, New York City, NY 10001" -259545,Wired Headphones,1,11.99,10/04/19 11:41,"234 Sunset St, Austin, TX 73301" -259546,AA Batteries (4-pack),2,3.84,10/22/19 18:05,"113 Spruce St, Seattle, WA 98101" -259547,AAA Batteries (4-pack),1,2.99,10/12/19 14:17,"908 Hickory St, Atlanta, GA 30301" -259548,27in 4K Gaming Monitor,1,389.99,10/30/19 16:01,"941 1st St, Dallas, TX 75001" -259549,Wired Headphones,1,11.99,10/22/19 07:43,"479 Spruce St, New York City, NY 10001" -259550,USB-C Charging Cable,2,11.95,10/24/19 16:14,"359 6th St, Dallas, TX 75001" -259551,20in Monitor,1,109.99,10/29/19 19:50,"836 North St, Boston, MA 02215" -259552,AAA Batteries (4-pack),1,2.99,10/12/19 09:05,"663 Spruce St, Los Angeles, CA 90001" -259553,Google Phone,1,600.0,10/04/19 13:30,"149 Cedar St, Portland, OR 97035" -259554,Apple Airpods Headphones,1,150.0,10/07/19 15:22,"751 Hill St, Los Angeles, CA 90001" -259554,USB-C Charging Cable,1,11.95,10/07/19 15:22,"751 Hill St, Los Angeles, CA 90001" -259555,Lightning Charging Cable,1,14.95,10/05/19 13:02,"928 Park St, Los Angeles, CA 90001" -259556,AAA Batteries (4-pack),1,2.99,10/08/19 14:45,"946 South St, Los Angeles, CA 90001" -259557,iPhone,1,700.0,10/12/19 09:56,"605 13th St, Boston, MA 02215" -259558,AA Batteries (4-pack),1,3.84,10/26/19 20:35,"469 Lincoln St, New York City, NY 10001" -259559,USB-C Charging Cable,1,11.95,10/16/19 01:41,"589 Dogwood St, San Francisco, CA 94016" -259560,Wired Headphones,1,11.99,10/25/19 12:29,"669 5th St, Los Angeles, CA 90001" -259561,AAA Batteries (4-pack),1,2.99,10/27/19 20:38,"65 Jefferson St, Portland, OR 97035" -259562,34in Ultrawide Monitor,1,379.99,10/05/19 20:03,"85 8th St, Boston, MA 02215" -259563,AA Batteries (4-pack),1,3.84,10/17/19 20:23,"454 Highland St, New York City, NY 10001" -259564,AAA Batteries (4-pack),1,2.99,10/24/19 11:47,"55 Cherry St, San Francisco, CA 94016" -259565,AAA Batteries (4-pack),2,2.99,10/21/19 09:25,"358 8th St, Seattle, WA 98101" -259566,Macbook Pro Laptop,1,1700.0,10/20/19 23:46,"989 Main St, Los Angeles, CA 90001" -259567,Lightning Charging Cable,1,14.95,10/21/19 15:21,"667 Forest St, Los Angeles, CA 90001" -259568,USB-C Charging Cable,2,11.95,10/31/19 02:08,"312 Highland St, New York City, NY 10001" -259569,Lightning Charging Cable,2,14.95,10/21/19 10:38,"50 7th St, New York City, NY 10001" -259570,27in 4K Gaming Monitor,1,389.99,10/31/19 18:05,"854 Adams St, San Francisco, CA 94016" -259571,Apple Airpods Headphones,1,150.0,10/14/19 00:57,"844 14th St, Dallas, TX 75001" -259572,Wired Headphones,2,11.99,10/26/19 10:53,"668 Church St, San Francisco, CA 94016" -259573,USB-C Charging Cable,1,11.95,10/23/19 18:59,"606 2nd St, Atlanta, GA 30301" -259574,Apple Airpods Headphones,1,150.0,10/06/19 21:27,"310 1st St, New York City, NY 10001" -259575,AAA Batteries (4-pack),3,2.99,10/01/19 05:32,"434 Center St, Seattle, WA 98101" -259576,Apple Airpods Headphones,1,150.0,10/01/19 09:41,"682 Hickory St, Los Angeles, CA 90001" -259577,Wired Headphones,1,11.99,10/05/19 21:57,"437 Jefferson St, Los Angeles, CA 90001" -259578,Vareebadd Phone,1,400.0,10/29/19 00:32,"858 Willow St, San Francisco, CA 94016" -259579,Apple Airpods Headphones,1,150.0,10/09/19 19:26,"588 6th St, Portland, OR 97035" -259580,iPhone,1,700.0,10/28/19 14:22,"885 Willow St, Dallas, TX 75001" -259581,Bose SoundSport Headphones,1,99.99,10/27/19 18:41,"227 Lincoln St, Dallas, TX 75001" -259582,ThinkPad Laptop,1,999.99,10/04/19 14:43,"124 14th St, Dallas, TX 75001" -259583,Bose SoundSport Headphones,1,99.99,10/20/19 17:44,"686 Johnson St, Atlanta, GA 30301" -259584,iPhone,1,700.0,10/20/19 21:05,"311 Maple St, Seattle, WA 98101" -259584,Lightning Charging Cable,1,14.95,10/20/19 21:05,"311 Maple St, Seattle, WA 98101" -259585,AAA Batteries (4-pack),1,2.99,10/16/19 19:00,"751 Pine St, Seattle, WA 98101" -259586,USB-C Charging Cable,1,11.95,10/27/19 11:18,"133 12th St, San Francisco, CA 94016" -259587,Lightning Charging Cable,1,14.95,10/11/19 11:25,"117 Jackson St, San Francisco, CA 94016" -259588,USB-C Charging Cable,1,11.95,10/14/19 12:03,"554 Main St, Atlanta, GA 30301" -259589,27in 4K Gaming Monitor,1,389.99,10/30/19 08:59,"793 Park St, San Francisco, CA 94016" -259590,AA Batteries (4-pack),1,3.84,10/02/19 12:31,"792 Wilson St, San Francisco, CA 94016" -259591,AAA Batteries (4-pack),1,2.99,10/08/19 15:55,"999 7th St, Boston, MA 02215" -259592,Google Phone,1,600.0,10/12/19 10:02,"948 9th St, Boston, MA 02215" -259593,iPhone,1,700.0,10/31/19 10:17,"61 6th St, Dallas, TX 75001" -259594,AAA Batteries (4-pack),5,2.99,10/18/19 10:06,"165 Lincoln St, Los Angeles, CA 90001" -259595,Bose SoundSport Headphones,1,99.99,10/22/19 12:22,"735 Ridge St, San Francisco, CA 94016" -259596,Wired Headphones,1,11.99,10/03/19 09:48,"648 Elm St, Portland, OR 97035" -259597,Lightning Charging Cable,1,14.95,10/22/19 12:26,"600 Spruce St, Dallas, TX 75001" -259598,Lightning Charging Cable,1,14.95,10/22/19 21:14,"373 14th St, Los Angeles, CA 90001" -259599,AA Batteries (4-pack),2,3.84,10/02/19 03:48,"435 Cedar St, Seattle, WA 98101" -259600,Lightning Charging Cable,1,14.95,10/14/19 09:12,"530 Chestnut St, San Francisco, CA 94016" -259601,Lightning Charging Cable,1,14.95,10/08/19 01:45,"112 Ridge St, Atlanta, GA 30301" -259602,AAA Batteries (4-pack),2,2.99,10/09/19 03:13,"594 Lincoln St, Los Angeles, CA 90001" -259603,AA Batteries (4-pack),1,3.84,10/07/19 20:39,"437 Church St, Dallas, TX 75001" -259604,Apple Airpods Headphones,1,150.0,10/04/19 21:57,"62 Hill St, Los Angeles, CA 90001" -259605,Bose SoundSport Headphones,1,99.99,10/11/19 16:44,"746 6th St, Austin, TX 73301" -259606,USB-C Charging Cable,1,11.95,10/08/19 16:53,"263 Meadow St, Seattle, WA 98101" -259607,iPhone,1,700.0,10/12/19 12:01,"358 Center St, Portland, OR 97035" -259607,Lightning Charging Cable,1,14.95,10/12/19 12:01,"358 Center St, Portland, OR 97035" -259608,27in 4K Gaming Monitor,1,389.99,10/01/19 08:55,"447 Ridge St, Austin, TX 73301" -259609,USB-C Charging Cable,1,11.95,10/03/19 12:01,"112 West St, San Francisco, CA 94016" -259610,Lightning Charging Cable,1,14.95,10/18/19 20:37,"269 12th St, Boston, MA 02215" -259611,AAA Batteries (4-pack),4,2.99,10/25/19 15:00,"554 North St, Portland, OR 97035" -259612,USB-C Charging Cable,1,11.95,10/01/19 08:41,"735 Madison St, San Francisco, CA 94016" -259613,Apple Airpods Headphones,1,150.0,10/20/19 22:52,"632 Center St, Boston, MA 02215" -259614,AA Batteries (4-pack),1,3.84,10/06/19 21:23,"450 Highland St, Dallas, TX 75001" -259615,AA Batteries (4-pack),3,3.84,10/02/19 22:45,"282 North St, New York City, NY 10001" -259616,AA Batteries (4-pack),3,3.84,10/06/19 22:34,"809 Sunset St, Los Angeles, CA 90001" -259617,Wired Headphones,1,11.99,10/02/19 14:02,"416 Dogwood St, Los Angeles, CA 90001" -259618,34in Ultrawide Monitor,1,379.99,10/03/19 16:16,"11 Forest St, Dallas, TX 75001" -259619,Lightning Charging Cable,1,14.95,10/08/19 17:48,"151 Hickory St, Los Angeles, CA 90001" -259620,Google Phone,1,600.0,10/29/19 12:19,"514 10th St, Dallas, TX 75001" -259620,USB-C Charging Cable,1,11.95,10/29/19 12:19,"514 10th St, Dallas, TX 75001" -259621,Bose SoundSport Headphones,1,99.99,10/19/19 06:46,"997 Lincoln St, Seattle, WA 98101" -259622,AA Batteries (4-pack),1,3.84,10/25/19 11:54,"33 2nd St, Portland, OR 97035" -259623,Apple Airpods Headphones,1,150.0,10/20/19 21:12,"128 River St, San Francisco, CA 94016" -259624,34in Ultrawide Monitor,1,379.99,10/30/19 12:45,"60 9th St, Austin, TX 73301" -259625,AAA Batteries (4-pack),1,2.99,10/30/19 18:37,"946 13th St, San Francisco, CA 94016" -259626,AAA Batteries (4-pack),2,2.99,10/22/19 15:15,"419 South St, Seattle, WA 98101" -259627,AAA Batteries (4-pack),1,2.99,10/09/19 20:05,"30 Lake St, San Francisco, CA 94016" -,,,,, -259628,Lightning Charging Cable,1,14.95,10/03/19 18:36,"432 12th St, San Francisco, CA 94016" -259629,Lightning Charging Cable,1,14.95,10/13/19 15:15,"80 Hickory St, Seattle, WA 98101" -259630,34in Ultrawide Monitor,1,379.99,10/06/19 18:22,"615 Wilson St, Seattle, WA 98101" -259631,AA Batteries (4-pack),2,3.84,10/25/19 20:34,"668 Madison St, San Francisco, CA 94016" -259632,Lightning Charging Cable,1,14.95,10/02/19 11:38,"909 Main St, Portland, OR 97035" -259633,Wired Headphones,1,11.99,10/06/19 22:44,"785 Lincoln St, Los Angeles, CA 90001" -259634,Macbook Pro Laptop,1,1700,10/06/19 11:33,"122 2nd St, New York City, NY 10001" -259635,AAA Batteries (4-pack),1,2.99,10/08/19 05:15,"115 Meadow St, San Francisco, CA 94016" -259636,iPhone,1,700,10/26/19 15:57,"489 Madison St, Los Angeles, CA 90001" -259637,Wired Headphones,2,11.99,10/22/19 16:26,"361 River St, Atlanta, GA 30301" -259638,AAA Batteries (4-pack),1,2.99,10/24/19 14:47,"498 Church St, Dallas, TX 75001" -259639,AAA Batteries (4-pack),2,2.99,10/31/19 12:06,"375 Jefferson St, Dallas, TX 75001" -259640,USB-C Charging Cable,1,11.95,10/18/19 12:42,"656 Hill St, Boston, MA 02215" -259641,AAA Batteries (4-pack),1,2.99,10/21/19 15:06,"95 Forest St, San Francisco, CA 94016" -259642,AA Batteries (4-pack),1,3.84,10/15/19 03:56,"814 13th St, Seattle, WA 98101" -259643,AAA Batteries (4-pack),1,2.99,10/26/19 07:01,"301 9th St, Portland, OR 97035" -259644,ThinkPad Laptop,1,999.99,10/01/19 13:26,"477 Madison St, Portland, OR 97035" -259645,Apple Airpods Headphones,1,150,10/17/19 14:09,"249 Lake St, San Francisco, CA 94016" -259646,AA Batteries (4-pack),1,3.84,10/16/19 21:42,"281 Cedar St, San Francisco, CA 94016" -259647,Apple Airpods Headphones,1,150,10/12/19 12:21,"201 5th St, Boston, MA 02215" -259648,Bose SoundSport Headphones,1,99.99,10/26/19 06:03,"270 Forest St, Atlanta, GA 30301" -259649,AAA Batteries (4-pack),1,2.99,10/22/19 19:59,"966 Sunset St, San Francisco, CA 94016" -259650,AAA Batteries (4-pack),2,2.99,10/06/19 17:24,"805 Spruce St, Atlanta, GA 30301" -259651,AA Batteries (4-pack),4,3.84,10/16/19 01:41,"486 Main St, Los Angeles, CA 90001" -259652,USB-C Charging Cable,1,11.95,10/10/19 23:05,"736 Johnson St, New York City, NY 10001" -259653,Apple Airpods Headphones,1,150,10/19/19 19:52,"858 Hickory St, San Francisco, CA 94016" -259654,Google Phone,1,600,10/06/19 20:46,"271 Johnson St, Seattle, WA 98101" -259655,Google Phone,1,600,10/13/19 14:41,"154 Johnson St, New York City, NY 10001" -259656,iPhone,1,700,10/05/19 19:33,"173 Willow St, Dallas, TX 75001" -259657,27in 4K Gaming Monitor,1,389.99,10/13/19 19:24,"171 Forest St, San Francisco, CA 94016" -259658,AAA Batteries (4-pack),2,2.99,10/03/19 23:17,"79 5th St, Los Angeles, CA 90001" -259659,27in FHD Monitor,1,149.99,10/19/19 13:13,"354 Sunset St, Los Angeles, CA 90001" -259660,Google Phone,1,600,10/19/19 17:07,"957 2nd St, Boston, MA 02215" -259661,20in Monitor,1,109.99,10/18/19 11:55,"449 9th St, San Francisco, CA 94016" -259662,Lightning Charging Cable,1,14.95,10/29/19 21:50,"108 Cedar St, Los Angeles, CA 90001" -259663,USB-C Charging Cable,1,11.95,10/11/19 15:16,"138 9th St, Dallas, TX 75001" -259664,AAA Batteries (4-pack),2,2.99,10/06/19 14:00,"766 Hickory St, Los Angeles, CA 90001" -259665,Macbook Pro Laptop,1,1700,10/10/19 17:34,"117 River St, Atlanta, GA 30301" -259666,27in FHD Monitor,1,149.99,10/27/19 22:37,"962 12th St, San Francisco, CA 94016" -259667,AA Batteries (4-pack),1,3.84,10/02/19 09:27,"890 13th St, Boston, MA 02215" -259668,Lightning Charging Cable,1,14.95,10/09/19 15:51,"856 Jackson St, Los Angeles, CA 90001" -259669,27in FHD Monitor,1,149.99,10/06/19 01:56,"448 Maple St, Portland, OR 97035" -259670,AAA Batteries (4-pack),1,2.99,10/17/19 23:53,"658 Willow St, Austin, TX 73301" -259671,iPhone,1,700,10/26/19 15:05,"490 14th St, Seattle, WA 98101" -259672,AA Batteries (4-pack),1,3.84,10/24/19 15:50,"239 North St, Seattle, WA 98101" -259673,AA Batteries (4-pack),1,3.84,10/18/19 20:01,"746 12th St, Atlanta, GA 30301" -259674,ThinkPad Laptop,1,999.99,10/06/19 20:30,"325 14th St, San Francisco, CA 94016" -259675,Apple Airpods Headphones,1,150,10/09/19 13:30,"193 Meadow St, San Francisco, CA 94016" -259675,Wired Headphones,1,11.99,10/09/19 13:30,"193 Meadow St, San Francisco, CA 94016" -259676,AA Batteries (4-pack),1,3.84,10/09/19 19:43,"963 13th St, Los Angeles, CA 90001" -259677,34in Ultrawide Monitor,1,379.99,10/14/19 17:16,"363 Chestnut St, Atlanta, GA 30301" -259678,Vareebadd Phone,1,400,10/29/19 09:16,"782 Maple St, San Francisco, CA 94016" -259679,AA Batteries (4-pack),1,3.84,10/24/19 18:42,"76 West St, New York City, NY 10001" -259680,27in 4K Gaming Monitor,1,389.99,10/06/19 09:08,"239 Johnson St, Los Angeles, CA 90001" -259681,27in FHD Monitor,1,149.99,10/21/19 13:31,"499 Maple St, Los Angeles, CA 90001" -259682,Wired Headphones,1,11.99,10/20/19 04:35,"256 2nd St, Los Angeles, CA 90001" -259683,Apple Airpods Headphones,1,150,10/17/19 11:13,"104 Elm St, Los Angeles, CA 90001" -259684,Bose SoundSport Headphones,1,99.99,10/21/19 18:50,"300 North St, Los Angeles, CA 90001" -259685,Apple Airpods Headphones,1,150,10/15/19 18:25,"509 6th St, Dallas, TX 75001" -259686,AA Batteries (4-pack),1,3.84,10/31/19 12:58,"879 Ridge St, New York City, NY 10001" -259687,USB-C Charging Cable,1,11.95,10/12/19 17:04,"826 West St, San Francisco, CA 94016" -259688,AA Batteries (4-pack),1,3.84,10/27/19 13:52,"314 1st St, Atlanta, GA 30301" -259688,Bose SoundSport Headphones,1,99.99,10/27/19 13:52,"314 1st St, Atlanta, GA 30301" -259689,Apple Airpods Headphones,1,150,10/08/19 19:28,"807 12th St, Dallas, TX 75001" -259690,AAA Batteries (4-pack),1,2.99,10/09/19 15:29,"239 Park St, San Francisco, CA 94016" -259691,Lightning Charging Cable,1,14.95,10/05/19 13:34,"350 Main St, San Francisco, CA 94016" -259692,Flatscreen TV,1,300,10/21/19 21:13,"384 11th St, Dallas, TX 75001" -259693,Bose SoundSport Headphones,1,99.99,10/16/19 16:14,"497 Maple St, Los Angeles, CA 90001" -259694,Wired Headphones,1,11.99,10/14/19 17:11,"608 9th St, Portland, OR 97035" -259695,AAA Batteries (4-pack),1,2.99,10/22/19 16:48,"166 Hill St, San Francisco, CA 94016" -259696,Wired Headphones,1,11.99,10/20/19 10:49,"407 River St, New York City, NY 10001" -259697,Google Phone,1,600,10/04/19 12:09,"672 2nd St, Atlanta, GA 30301" -259697,USB-C Charging Cable,1,11.95,10/04/19 12:09,"672 2nd St, Atlanta, GA 30301" -259698,USB-C Charging Cable,1,11.95,10/19/19 20:40,"106 Jefferson St, San Francisco, CA 94016" -259699,USB-C Charging Cable,1,11.95,10/07/19 10:26,"448 Cedar St, Atlanta, GA 30301" -259700,Wired Headphones,1,11.99,10/01/19 13:19,"17 Lakeview St, Los Angeles, CA 90001" -259701,AAA Batteries (4-pack),2,2.99,10/19/19 10:55,"371 Adams St, Los Angeles, CA 90001" -259702,Vareebadd Phone,1,400,10/13/19 23:10,"239 Sunset St, Dallas, TX 75001" -259702,Wired Headphones,1,11.99,10/13/19 23:10,"239 Sunset St, Dallas, TX 75001" -259703,Lightning Charging Cable,1,14.95,10/06/19 10:14,"792 Dogwood St, New York City, NY 10001" -259704,Flatscreen TV,1,300,10/13/19 16:45,"281 Park St, New York City, NY 10001" -259705,Google Phone,1,600,10/08/19 11:46,"920 Chestnut St, Portland, ME 04101" -259705,USB-C Charging Cable,1,11.95,10/08/19 11:46,"920 Chestnut St, Portland, ME 04101" -259706,USB-C Charging Cable,1,11.95,10/11/19 16:53,"59 Adams St, Atlanta, GA 30301" -259707,Lightning Charging Cable,1,14.95,10/12/19 19:47,"892 Jefferson St, Seattle, WA 98101" -259708,Bose SoundSport Headphones,1,99.99,10/22/19 21:42,"66 Johnson St, Portland, OR 97035" -259709,ThinkPad Laptop,1,999.99,10/12/19 22:28,"729 Cedar St, Boston, MA 02215" -259710,Apple Airpods Headphones,1,150,10/25/19 21:26,"449 Church St, Atlanta, GA 30301" -259711,USB-C Charging Cable,1,11.95,10/10/19 14:19,"145 Walnut St, Los Angeles, CA 90001" -259712,AAA Batteries (4-pack),1,2.99,10/06/19 22:14,"625 Lincoln St, Los Angeles, CA 90001" -259713,34in Ultrawide Monitor,1,379.99,10/17/19 11:58,"777 2nd St, Los Angeles, CA 90001" -259714,Apple Airpods Headphones,1,150,10/07/19 17:34,"509 Elm St, New York City, NY 10001" -259715,Lightning Charging Cable,1,14.95,10/21/19 11:37,"317 River St, New York City, NY 10001" -259716,Wired Headphones,2,11.99,10/07/19 18:09,"279 Cherry St, San Francisco, CA 94016" -259717,27in 4K Gaming Monitor,1,389.99,10/02/19 03:27,"404 Forest St, New York City, NY 10001" -259718,Lightning Charging Cable,1,14.95,10/06/19 10:39,"368 Meadow St, San Francisco, CA 94016" -259719,AAA Batteries (4-pack),1,2.99,10/09/19 13:10,"227 Lincoln St, Los Angeles, CA 90001" -259720,Wired Headphones,1,11.99,10/10/19 13:41,"865 Cedar St, Atlanta, GA 30301" -259721,AA Batteries (4-pack),2,3.84,10/16/19 19:57,"546 Meadow St, Atlanta, GA 30301" -259722,34in Ultrawide Monitor,1,379.99,10/22/19 19:14,"47 Hickory St, Los Angeles, CA 90001" -259723,AA Batteries (4-pack),1,3.84,10/10/19 17:09,"720 Cedar St, Los Angeles, CA 90001" -259724,Apple Airpods Headphones,1,150,10/03/19 11:41,"875 6th St, Seattle, WA 98101" -259725,AA Batteries (4-pack),1,3.84,10/28/19 20:37,"586 13th St, New York City, NY 10001" -259726,Bose SoundSport Headphones,1,99.99,10/05/19 08:53,"548 4th St, San Francisco, CA 94016" -259727,Bose SoundSport Headphones,1,99.99,10/12/19 20:59,"288 5th St, Portland, OR 97035" -259728,AA Batteries (4-pack),1,3.84,10/07/19 13:37,"637 4th St, Los Angeles, CA 90001" -259729,Wired Headphones,1,11.99,10/24/19 00:32,"266 Lincoln St, Portland, OR 97035" -259730,AA Batteries (4-pack),2,3.84,10/25/19 13:52,"33 West St, New York City, NY 10001" -259731,Wired Headphones,1,11.99,10/08/19 15:27,"67 Spruce St, San Francisco, CA 94016" -259732,20in Monitor,1,109.99,10/01/19 13:03,"977 7th St, New York City, NY 10001" -259733,AA Batteries (4-pack),1,3.84,10/30/19 13:29,"786 South St, Dallas, TX 75001" -259734,AAA Batteries (4-pack),1,2.99,10/30/19 19:06,"192 Willow St, Dallas, TX 75001" -259735,AAA Batteries (4-pack),2,2.99,10/04/19 08:35,"320 Dogwood St, Los Angeles, CA 90001" -259736,Google Phone,1,600,10/28/19 18:50,"719 Wilson St, Los Angeles, CA 90001" -259737,Lightning Charging Cable,2,14.95,10/22/19 19:18,"811 Adams St, Los Angeles, CA 90001" -259738,USB-C Charging Cable,1,11.95,10/31/19 11:47,"316 10th St, Atlanta, GA 30301" -259739,AAA Batteries (4-pack),1,2.99,10/24/19 22:48,"321 Johnson St, San Francisco, CA 94016" -259740,AA Batteries (4-pack),1,3.84,10/17/19 11:54,"783 7th St, Portland, OR 97035" -259741,AA Batteries (4-pack),1,3.84,10/05/19 13:52,"790 Washington St, San Francisco, CA 94016" -259742,ThinkPad Laptop,1,999.99,10/15/19 19:38,"121 Lincoln St, Dallas, TX 75001" -259743,AA Batteries (4-pack),2,3.84,10/08/19 12:15,"816 Washington St, Dallas, TX 75001" -259744,Wired Headphones,2,11.99,10/24/19 14:01,"44 Sunset St, Atlanta, GA 30301" -259745,27in FHD Monitor,1,149.99,10/14/19 11:08,"798 14th St, Portland, ME 04101" -259746,AA Batteries (4-pack),1,3.84,10/25/19 18:21,"613 6th St, Los Angeles, CA 90001" -259747,20in Monitor,1,109.99,10/21/19 15:07,"24 Lincoln St, San Francisco, CA 94016" -259748,AA Batteries (4-pack),2,3.84,10/12/19 16:53,"870 Elm St, Atlanta, GA 30301" -259749,27in 4K Gaming Monitor,1,389.99,10/20/19 16:08,"925 Lincoln St, Atlanta, GA 30301" -259750,AAA Batteries (4-pack),2,2.99,10/30/19 15:25,"453 9th St, Austin, TX 73301" -259751,Macbook Pro Laptop,1,1700,10/01/19 19:30,"745 12th St, Los Angeles, CA 90001" -259752,AA Batteries (4-pack),1,3.84,10/10/19 15:14,"52 14th St, New York City, NY 10001" -259753,Macbook Pro Laptop,1,1700,10/22/19 16:52,"771 Forest St, Seattle, WA 98101" -259754,USB-C Charging Cable,1,11.95,10/25/19 07:57,"78 Park St, Boston, MA 02215" -259755,Macbook Pro Laptop,1,1700,10/01/19 15:12,"871 Wilson St, Boston, MA 02215" -259756,Lightning Charging Cable,1,14.95,10/21/19 15:24,"996 Washington St, Los Angeles, CA 90001" -259757,USB-C Charging Cable,1,11.95,10/13/19 08:57,"80 Church St, San Francisco, CA 94016" -259758,USB-C Charging Cable,2,11.95,10/07/19 15:48,"588 Walnut St, New York City, NY 10001" -259759,Apple Airpods Headphones,1,150,10/04/19 05:42,"756 Spruce St, Boston, MA 02215" -259760,Macbook Pro Laptop,1,1700,10/12/19 01:59,"836 North St, Atlanta, GA 30301" -259761,iPhone,1,700,10/22/19 21:13,"980 4th St, Seattle, WA 98101" -259762,ThinkPad Laptop,1,999.99,10/19/19 14:33,"370 10th St, Boston, MA 02215" -259763,27in FHD Monitor,1,149.99,10/06/19 14:16,"154 8th St, San Francisco, CA 94016" -259764,USB-C Charging Cable,1,11.95,10/11/19 08:51,"97 Lake St, Seattle, WA 98101" -259765,Lightning Charging Cable,1,14.95,10/24/19 17:21,"580 Lakeview St, San Francisco, CA 94016" -259766,AAA Batteries (4-pack),3,2.99,10/16/19 16:20,"145 Highland St, Seattle, WA 98101" -259767,Bose SoundSport Headphones,1,99.99,10/24/19 12:35,"274 10th St, Boston, MA 02215" -259768,Bose SoundSport Headphones,1,99.99,10/27/19 17:41,"845 2nd St, New York City, NY 10001" -259769,Wired Headphones,1,11.99,10/15/19 08:19,"459 Dogwood St, New York City, NY 10001" -259770,USB-C Charging Cable,1,11.95,10/12/19 07:47,"986 6th St, Los Angeles, CA 90001" -259771,Apple Airpods Headphones,1,150,10/10/19 18:47,"492 Jackson St, Dallas, TX 75001" -259772,Google Phone,1,600,10/01/19 16:43,"900 10th St, San Francisco, CA 94016" -259773,Flatscreen TV,1,300,10/15/19 16:18,"885 14th St, Seattle, WA 98101" -259774,USB-C Charging Cable,1,11.95,10/27/19 17:45,"749 South St, Boston, MA 02215" -259775,AAA Batteries (4-pack),1,2.99,10/11/19 12:26,"871 Chestnut St, Austin, TX 73301" -259776,AAA Batteries (4-pack),1,2.99,10/05/19 15:11,"620 Maple St, Dallas, TX 75001" -259777,AAA Batteries (4-pack),2,2.99,10/06/19 17:19,"148 14th St, Boston, MA 02215" -259778,AAA Batteries (4-pack),1,2.99,10/03/19 07:57,"253 12th St, Los Angeles, CA 90001" -259779,AAA Batteries (4-pack),2,2.99,10/17/19 20:17,"268 North St, Dallas, TX 75001" -259780,34in Ultrawide Monitor,1,379.99,10/06/19 14:02,"148 West St, San Francisco, CA 94016" -259781,27in 4K Gaming Monitor,1,389.99,10/12/19 14:16,"574 Church St, San Francisco, CA 94016" -259782,LG Washing Machine,1,600.0,10/19/19 04:50,"145 14th St, Portland, OR 97035" -259783,AAA Batteries (4-pack),1,2.99,10/06/19 16:36,"253 Church St, San Francisco, CA 94016" -259784,ThinkPad Laptop,1,999.99,10/17/19 21:49,"537 8th St, Seattle, WA 98101" -259785,Apple Airpods Headphones,1,150,10/26/19 18:12,"226 Main St, Seattle, WA 98101" -259786,Lightning Charging Cable,1,14.95,10/26/19 20:26,"513 Walnut St, Atlanta, GA 30301" -259787,Flatscreen TV,1,300,10/04/19 16:59,"421 7th St, New York City, NY 10001" -259788,USB-C Charging Cable,2,11.95,10/25/19 12:13,"849 Willow St, San Francisco, CA 94016" -259789,Lightning Charging Cable,1,14.95,10/29/19 21:44,"453 Meadow St, Seattle, WA 98101" -259790,Wired Headphones,1,11.99,10/16/19 18:39,"895 Church St, Seattle, WA 98101" -259791,Lightning Charging Cable,2,14.95,10/29/19 11:56,"209 River St, Boston, MA 02215" -259792,AAA Batteries (4-pack),2,2.99,10/29/19 05:22,"434 4th St, Los Angeles, CA 90001" -259793,ThinkPad Laptop,1,999.99,10/09/19 07:31,"835 Willow St, New York City, NY 10001" -259794,AAA Batteries (4-pack),1,2.99,10/05/19 18:19,"604 8th St, Seattle, WA 98101" -259794,iPhone,1,700,10/05/19 18:19,"604 8th St, Seattle, WA 98101" -259795,Bose SoundSport Headphones,1,99.99,10/03/19 17:00,"589 Pine St, Boston, MA 02215" -259796,Apple Airpods Headphones,1,150,10/29/19 12:07,"586 Elm St, Los Angeles, CA 90001" -259797,Lightning Charging Cable,1,14.95,10/03/19 15:18,"670 Sunset St, San Francisco, CA 94016" -259798,AAA Batteries (4-pack),1,2.99,10/05/19 20:11,"538 Meadow St, Boston, MA 02215" -259799,Wired Headphones,1,11.99,10/16/19 02:52,"650 Madison St, San Francisco, CA 94016" -259800,34in Ultrawide Monitor,1,379.99,10/27/19 14:21,"372 9th St, San Francisco, CA 94016" -259801,Lightning Charging Cable,1,14.95,10/11/19 13:33,"245 South St, Dallas, TX 75001" -259802,Wired Headphones,1,11.99,10/28/19 20:41,"816 West St, San Francisco, CA 94016" -259803,Macbook Pro Laptop,1,1700,10/18/19 00:35,"861 Main St, Los Angeles, CA 90001" -259804,Macbook Pro Laptop,1,1700,10/27/19 16:22,"702 12th St, Los Angeles, CA 90001" -259805,27in 4K Gaming Monitor,1,389.99,10/18/19 11:39,"795 Spruce St, San Francisco, CA 94016" -259806,ThinkPad Laptop,1,999.99,10/23/19 06:26,"650 Jackson St, New York City, NY 10001" -259807,USB-C Charging Cable,1,11.95,10/15/19 15:15,"235 Lakeview St, Boston, MA 02215" -259808,27in 4K Gaming Monitor,1,389.99,10/23/19 14:16,"940 Elm St, Boston, MA 02215" -259809,Apple Airpods Headphones,1,150,10/26/19 13:33,"38 Jackson St, Boston, MA 02215" -259810,USB-C Charging Cable,1,11.95,10/31/19 21:16,"428 Forest St, Austin, TX 73301" -259811,Lightning Charging Cable,1,14.95,10/10/19 19:07,"143 Maple St, Los Angeles, CA 90001" -259812,AA Batteries (4-pack),1,3.84,10/23/19 15:55,"273 South St, San Francisco, CA 94016" -259813,27in 4K Gaming Monitor,1,389.99,10/12/19 21:29,"499 Washington St, Portland, OR 97035" -259814,AA Batteries (4-pack),1,3.84,10/09/19 11:33,"338 Walnut St, San Francisco, CA 94016" -259815,34in Ultrawide Monitor,1,379.99,10/04/19 03:11,"16 Park St, Los Angeles, CA 90001" -259816,27in 4K Gaming Monitor,1,389.99,10/20/19 14:22,"3 10th St, Portland, ME 04101" -259817,20in Monitor,1,109.99,10/19/19 14:14,"723 Center St, Los Angeles, CA 90001" -259818,Apple Airpods Headphones,1,150,10/04/19 00:51,"791 8th St, Boston, MA 02215" -259819,27in FHD Monitor,1,149.99,10/18/19 15:06,"253 River St, Dallas, TX 75001" -259820,Wired Headphones,1,11.99,10/11/19 22:04,"552 Cherry St, Los Angeles, CA 90001" -259821,USB-C Charging Cable,1,11.95,10/21/19 10:00,"537 South St, San Francisco, CA 94016" -259822,Apple Airpods Headphones,1,150,10/17/19 00:26,"890 2nd St, Boston, MA 02215" -259823,Bose SoundSport Headphones,1,99.99,10/16/19 12:53,"34 Ridge St, San Francisco, CA 94016" -259823,27in 4K Gaming Monitor,1,389.99,10/16/19 12:53,"34 Ridge St, San Francisco, CA 94016" -259824,AA Batteries (4-pack),2,3.84,10/20/19 07:43,"200 Spruce St, San Francisco, CA 94016" -259825,iPhone,1,700,10/12/19 20:59,"929 5th St, Boston, MA 02215" -259826,AA Batteries (4-pack),2,3.84,10/30/19 15:06,"896 Main St, Los Angeles, CA 90001" -259827,AAA Batteries (4-pack),1,2.99,10/01/19 17:36,"527 Meadow St, Dallas, TX 75001" -259828,Wired Headphones,1,11.99,10/26/19 22:34,"902 Lincoln St, San Francisco, CA 94016" -259829,Apple Airpods Headphones,1,150,10/30/19 12:20,"472 7th St, San Francisco, CA 94016" -259830,Lightning Charging Cable,1,14.95,10/25/19 12:40,"666 West St, Los Angeles, CA 90001" -259831,AAA Batteries (4-pack),1,2.99,10/25/19 18:30,"21 Cedar St, Seattle, WA 98101" -259832,Google Phone,1,600,10/28/19 08:54,"420 Jackson St, San Francisco, CA 94016" -259833,Apple Airpods Headphones,1,150,10/05/19 10:09,"402 Lincoln St, Dallas, TX 75001" -259834,Wired Headphones,1,11.99,10/10/19 00:57,"58 Lakeview St, Dallas, TX 75001" -259835,Google Phone,1,600,10/04/19 06:16,"551 River St, Seattle, WA 98101" -259835,Bose SoundSport Headphones,1,99.99,10/04/19 06:16,"551 River St, Seattle, WA 98101" -259836,Wired Headphones,1,11.99,10/22/19 08:51,"287 Maple St, New York City, NY 10001" -259837,Bose SoundSport Headphones,1,99.99,10/20/19 14:09,"81 1st St, San Francisco, CA 94016" -259838,ThinkPad Laptop,1,999.99,10/09/19 12:05,"200 5th St, San Francisco, CA 94016" -259838,USB-C Charging Cable,1,11.95,10/09/19 12:05,"200 5th St, San Francisco, CA 94016" -259839,27in FHD Monitor,1,149.99,10/04/19 21:09,"847 Spruce St, New York City, NY 10001" -259840,34in Ultrawide Monitor,1,379.99,10/06/19 13:32,"755 Church St, Austin, TX 73301" -259841,AAA Batteries (4-pack),2,2.99,10/17/19 22:19,"736 Jefferson St, Boston, MA 02215" -259842,27in FHD Monitor,1,149.99,10/05/19 12:33,"172 North St, Boston, MA 02215" -259843,Bose SoundSport Headphones,1,99.99,10/05/19 21:41,"807 Madison St, Atlanta, GA 30301" -259844,AAA Batteries (4-pack),1,2.99,10/18/19 20:27,"585 4th St, Seattle, WA 98101" -,,,,, -259845,20in Monitor,1,109.99,10/04/19 17:08,"492 4th St, Portland, OR 97035" -259846,Wired Headphones,1,11.99,10/23/19 23:49,"79 Dogwood St, Boston, MA 02215" -259847,AA Batteries (4-pack),1,3.84,10/13/19 11:22,"703 Walnut St, Austin, TX 73301" -259848,AAA Batteries (4-pack),2,2.99,10/20/19 13:20,"616 Maple St, Austin, TX 73301" -259849,Apple Airpods Headphones,1,150,10/30/19 21:33,"232 Ridge St, New York City, NY 10001" -259850,iPhone,1,700,10/02/19 08:43,"226 Lincoln St, Boston, MA 02215" -259851,27in FHD Monitor,1,149.99,10/21/19 16:22,"968 7th St, San Francisco, CA 94016" -259852,USB-C Charging Cable,1,11.95,10/06/19 23:14,"872 Jackson St, Boston, MA 02215" -259853,USB-C Charging Cable,1,11.95,10/06/19 18:47,"459 5th St, Dallas, TX 75001" -259854,Google Phone,1,600,10/05/19 09:20,"777 10th St, Boston, MA 02215" -259855,Wired Headphones,1,11.99,10/04/19 06:51,"829 South St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -259856,Lightning Charging Cable,1,14.95,10/28/19 00:17,"647 6th St, New York City, NY 10001" -259857,iPhone,1,700,10/07/19 14:25,"221 Spruce St, Seattle, WA 98101" -259858,Lightning Charging Cable,1,14.95,10/26/19 20:32,"422 Hill St, San Francisco, CA 94016" -259859,AA Batteries (4-pack),1,3.84,10/30/19 12:29,"535 Highland St, New York City, NY 10001" -259860,Wired Headphones,1,11.99,10/20/19 16:52,"268 4th St, Dallas, TX 75001" -259861,Bose SoundSport Headphones,1,99.99,10/14/19 17:40,"317 Lake St, Los Angeles, CA 90001" -259862,iPhone,1,700,10/05/19 19:12,"587 Cedar St, San Francisco, CA 94016" -259862,Lightning Charging Cable,1,14.95,10/05/19 19:12,"587 Cedar St, San Francisco, CA 94016" -259863,AA Batteries (4-pack),1,3.84,10/20/19 18:11,"10 2nd St, Boston, MA 02215" -259864,Lightning Charging Cable,1,14.95,10/21/19 17:36,"869 1st St, San Francisco, CA 94016" -259865,27in 4K Gaming Monitor,1,389.99,10/23/19 07:40,"128 Chestnut St, Atlanta, GA 30301" -259866,27in FHD Monitor,1,149.99,10/30/19 20:16,"979 Sunset St, San Francisco, CA 94016" -259867,iPhone,1,700,10/26/19 11:37,"844 Willow St, Los Angeles, CA 90001" -259868,Macbook Pro Laptop,1,1700,10/13/19 13:09,"133 Ridge St, New York City, NY 10001" -259869,Apple Airpods Headphones,1,150,10/07/19 21:32,"186 7th St, Austin, TX 73301" -259870,Vareebadd Phone,1,400,10/20/19 18:18,"850 Lincoln St, New York City, NY 10001" -259871,Apple Airpods Headphones,1,150,10/03/19 18:19,"428 Elm St, Seattle, WA 98101" -259872,Lightning Charging Cable,1,14.95,10/09/19 12:14,"272 Forest St, San Francisco, CA 94016" -259873,AA Batteries (4-pack),1,3.84,10/03/19 10:13,"155 Pine St, Portland, OR 97035" -259874,Bose SoundSport Headphones,1,99.99,10/25/19 13:03,"946 9th St, Seattle, WA 98101" -259875,USB-C Charging Cable,1,11.95,10/19/19 21:28,"711 Elm St, Austin, TX 73301" -259876,AAA Batteries (4-pack),1,2.99,10/19/19 18:37,"951 5th St, Austin, TX 73301" -259877,Apple Airpods Headphones,1,150,10/10/19 20:17,"789 Center St, San Francisco, CA 94016" -259878,AAA Batteries (4-pack),1,2.99,10/09/19 13:45,"386 9th St, Atlanta, GA 30301" -259879,Vareebadd Phone,1,400,10/26/19 15:02,"618 Church St, New York City, NY 10001" -259879,USB-C Charging Cable,1,11.95,10/26/19 15:02,"618 Church St, New York City, NY 10001" -259880,USB-C Charging Cable,1,11.95,10/08/19 12:45,"93 14th St, Boston, MA 02215" -259881,AA Batteries (4-pack),2,3.84,10/26/19 12:52,"562 Johnson St, Portland, OR 97035" -259882,Wired Headphones,1,11.99,10/17/19 12:04,"525 Center St, New York City, NY 10001" -259883,Lightning Charging Cable,1,14.95,10/15/19 13:13,"917 14th St, Dallas, TX 75001" -259884,Apple Airpods Headphones,2,150,10/01/19 16:40,"180 Center St, Portland, OR 97035" -259885,AA Batteries (4-pack),1,3.84,10/27/19 11:13,"935 Johnson St, Boston, MA 02215" -259886,Apple Airpods Headphones,1,150,10/04/19 00:42,"2 Spruce St, Atlanta, GA 30301" -259887,34in Ultrawide Monitor,1,379.99,10/24/19 16:34,"946 7th St, New York City, NY 10001" -259888,Google Phone,1,600,10/23/19 17:28,"453 Washington St, Atlanta, GA 30301" -259889,AA Batteries (4-pack),3,3.84,10/24/19 12:37,"467 Church St, Los Angeles, CA 90001" -259890,USB-C Charging Cable,1,11.95,10/22/19 15:48,"161 Ridge St, Los Angeles, CA 90001" -259891,AAA Batteries (4-pack),1,2.99,10/23/19 14:28,"673 Elm St, New York City, NY 10001" -259892,Flatscreen TV,1,300,10/26/19 22:14,"928 Cedar St, New York City, NY 10001" -259893,USB-C Charging Cable,1,11.95,10/15/19 18:36,"647 13th St, San Francisco, CA 94016" -259894,AAA Batteries (4-pack),3,2.99,10/08/19 10:33,"360 North St, Boston, MA 02215" -259895,Wired Headphones,1,11.99,10/06/19 12:30,"144 Wilson St, Los Angeles, CA 90001" -259896,Lightning Charging Cable,1,14.95,10/05/19 09:43,"174 South St, San Francisco, CA 94016" -259897,AAA Batteries (4-pack),1,2.99,10/03/19 09:00,"480 5th St, San Francisco, CA 94016" -259898,USB-C Charging Cable,1,11.95,10/24/19 08:24,"679 6th St, Boston, MA 02215" -259899,USB-C Charging Cable,1,11.95,10/23/19 17:41,"949 2nd St, Boston, MA 02215" -259900,AA Batteries (4-pack),1,3.84,10/30/19 21:14,"143 Washington St, Los Angeles, CA 90001" -259901,34in Ultrawide Monitor,1,379.99,10/07/19 14:41,"917 Spruce St, San Francisco, CA 94016" -259902,27in FHD Monitor,1,149.99,10/10/19 19:58,"934 Cherry St, Portland, OR 97035" -259903,AA Batteries (4-pack),1,3.84,10/22/19 06:14,"792 Jefferson St, Seattle, WA 98101" -259904,AAA Batteries (4-pack),2,2.99,10/08/19 07:54,"482 Jefferson St, Dallas, TX 75001" -259905,Lightning Charging Cable,1,14.95,10/22/19 19:09,"883 Lake St, New York City, NY 10001" -259906,27in 4K Gaming Monitor,1,389.99,10/26/19 18:41,"925 Hickory St, Portland, OR 97035" -259907,Apple Airpods Headphones,1,150,10/12/19 17:33,"1 Wilson St, San Francisco, CA 94016" -259908,USB-C Charging Cable,3,11.95,10/04/19 13:54,"663 Sunset St, San Francisco, CA 94016" -259909,Apple Airpods Headphones,1,150,10/19/19 16:46,"592 Maple St, Austin, TX 73301" -259910,Lightning Charging Cable,1,14.95,10/28/19 20:20,"931 Lake St, Dallas, TX 75001" -259911,AAA Batteries (4-pack),1,2.99,10/17/19 18:39,"695 Hill St, Seattle, WA 98101" -259912,Wired Headphones,1,11.99,10/21/19 21:57,"353 Sunset St, Boston, MA 02215" -259913,27in FHD Monitor,1,149.99,10/03/19 01:00,"156 6th St, Atlanta, GA 30301" -259914,20in Monitor,1,109.99,10/14/19 19:27,"584 Cedar St, Boston, MA 02215" -259915,iPhone,1,700,10/22/19 12:29,"399 Jackson St, New York City, NY 10001" -259916,Lightning Charging Cable,1,14.95,10/28/19 21:49,"302 Forest St, New York City, NY 10001" -259917,Apple Airpods Headphones,1,150,10/13/19 10:13,"695 Pine St, San Francisco, CA 94016" -259918,USB-C Charging Cable,1,11.95,10/30/19 10:04,"148 9th St, Boston, MA 02215" -259919,Bose SoundSport Headphones,1,99.99,10/26/19 21:53,"309 Dogwood St, New York City, NY 10001" -259920,34in Ultrawide Monitor,1,379.99,10/13/19 23:22,"659 River St, San Francisco, CA 94016" -259921,USB-C Charging Cable,1,11.95,10/13/19 14:41,"321 6th St, San Francisco, CA 94016" -259922,USB-C Charging Cable,1,11.95,10/30/19 14:52,"471 8th St, New York City, NY 10001" -259923,AA Batteries (4-pack),1,3.84,10/05/19 10:34,"442 Center St, Boston, MA 02215" -259923,AAA Batteries (4-pack),2,2.99,10/05/19 10:34,"442 Center St, Boston, MA 02215" -259924,Google Phone,1,600,10/21/19 15:06,"883 Cedar St, Austin, TX 73301" -259924,USB-C Charging Cable,1,11.95,10/21/19 15:06,"883 Cedar St, Austin, TX 73301" -259925,Lightning Charging Cable,1,14.95,10/05/19 12:09,"112 Highland St, Portland, OR 97035" -259925,27in FHD Monitor,1,149.99,10/05/19 12:09,"112 Highland St, Portland, OR 97035" -259926,AA Batteries (4-pack),2,3.84,10/15/19 14:44,"560 Church St, Seattle, WA 98101" -259927,Bose SoundSport Headphones,1,99.99,10/27/19 09:03,"194 12th St, San Francisco, CA 94016" -259928,AAA Batteries (4-pack),1,2.99,10/22/19 18:11,"963 Adams St, San Francisco, CA 94016" -259929,USB-C Charging Cable,1,11.95,10/12/19 18:23,"283 14th St, San Francisco, CA 94016" -259930,AAA Batteries (4-pack),1,2.99,10/24/19 18:30,"868 Cedar St, San Francisco, CA 94016" -259931,Apple Airpods Headphones,1,150,10/31/19 18:59,"79 8th St, San Francisco, CA 94016" -259932,AA Batteries (4-pack),1,3.84,10/19/19 18:46,"91 7th St, Los Angeles, CA 90001" -259933,27in FHD Monitor,1,149.99,10/28/19 08:47,"149 9th St, Los Angeles, CA 90001" -259934,ThinkPad Laptop,1,999.99,10/19/19 16:21,"532 Dogwood St, San Francisco, CA 94016" -259935,Apple Airpods Headphones,1,150,10/15/19 15:25,"947 Dogwood St, Austin, TX 73301" -259936,Wired Headphones,1,11.99,10/14/19 20:58,"585 Walnut St, San Francisco, CA 94016" -259936,34in Ultrawide Monitor,1,379.99,10/14/19 20:58,"585 Walnut St, San Francisco, CA 94016" -259937,Bose SoundSport Headphones,1,99.99,10/23/19 19:54,"274 Cherry St, Los Angeles, CA 90001" -259938,AA Batteries (4-pack),2,3.84,10/25/19 21:38,"128 12th St, Los Angeles, CA 90001" -259939,AAA Batteries (4-pack),4,2.99,10/07/19 19:06,"460 6th St, Los Angeles, CA 90001" -259940,Bose SoundSport Headphones,1,99.99,10/12/19 14:27,"667 6th St, Seattle, WA 98101" -259941,USB-C Charging Cable,1,11.95,10/20/19 00:53,"979 Lakeview St, Atlanta, GA 30301" -259942,AAA Batteries (4-pack),3,2.99,10/03/19 10:33,"317 West St, Los Angeles, CA 90001" -259943,AA Batteries (4-pack),1,3.84,10/12/19 09:57,"996 Center St, Seattle, WA 98101" -259944,Bose SoundSport Headphones,1,99.99,10/31/19 20:04,"958 Highland St, New York City, NY 10001" -259945,USB-C Charging Cable,1,11.95,10/12/19 12:01,"987 Center St, Boston, MA 02215" -259946,USB-C Charging Cable,1,11.95,10/06/19 10:02,"19 Cedar St, Atlanta, GA 30301" -259947,USB-C Charging Cable,1,11.95,10/26/19 19:15,"946 Meadow St, New York City, NY 10001" -259948,Wired Headphones,1,11.99,10/15/19 14:47,"90 Jefferson St, Los Angeles, CA 90001" -259949,AAA Batteries (4-pack),2,2.99,10/12/19 15:06,"922 Wilson St, Seattle, WA 98101" -259950,Wired Headphones,1,11.99,10/20/19 17:57,"386 10th St, Dallas, TX 75001" -259951,27in FHD Monitor,1,149.99,10/16/19 06:41,"224 8th St, Dallas, TX 75001" -259952,AA Batteries (4-pack),1,3.84,10/29/19 11:29,"493 Center St, New York City, NY 10001" -259953,AAA Batteries (4-pack),1,2.99,10/19/19 12:41,"411 River St, San Francisco, CA 94016" -259954,Wired Headphones,1,11.99,10/05/19 16:00,"868 Elm St, Boston, MA 02215" -259955,20in Monitor,1,109.99,10/29/19 07:06,"39 10th St, San Francisco, CA 94016" -259956,ThinkPad Laptop,1,999.99,10/25/19 20:20,"262 Cedar St, Los Angeles, CA 90001" -259957,AAA Batteries (4-pack),1,2.99,10/26/19 23:53,"603 14th St, Boston, MA 02215" -259958,27in FHD Monitor,1,149.99,10/17/19 19:19,"829 River St, Portland, OR 97035" -259959,AAA Batteries (4-pack),1,2.99,10/24/19 10:37,"680 Center St, Austin, TX 73301" -259960,Bose SoundSport Headphones,1,99.99,10/26/19 12:01,"194 8th St, San Francisco, CA 94016" -259961,AAA Batteries (4-pack),2,2.99,10/28/19 13:54,"772 River St, New York City, NY 10001" -259962,Apple Airpods Headphones,1,150,10/15/19 11:21,"664 Lakeview St, San Francisco, CA 94016" -259963,USB-C Charging Cable,1,11.95,10/15/19 21:53,"862 Jefferson St, Boston, MA 02215" -259964,27in 4K Gaming Monitor,1,389.99,10/13/19 08:32,"645 Lincoln St, Boston, MA 02215" -259965,Bose SoundSport Headphones,1,99.99,10/15/19 09:04,"521 Walnut St, Los Angeles, CA 90001" -259965,34in Ultrawide Monitor,1,379.99,10/15/19 09:04,"521 Walnut St, Los Angeles, CA 90001" -259966,AAA Batteries (4-pack),1,2.99,10/15/19 04:04,"893 Cherry St, San Francisco, CA 94016" -259967,Lightning Charging Cable,1,14.95,10/14/19 18:49,"596 Pine St, Los Angeles, CA 90001" -259968,Bose SoundSport Headphones,1,99.99,10/11/19 12:01,"871 Lincoln St, New York City, NY 10001" -259969,USB-C Charging Cable,1,11.95,10/05/19 09:29,"73 11th St, Dallas, TX 75001" -259970,Bose SoundSport Headphones,1,99.99,10/01/19 13:12,"559 5th St, Dallas, TX 75001" -259971,AAA Batteries (4-pack),1,2.99,10/06/19 09:37,"650 Jefferson St, Boston, MA 02215" -259972,Macbook Pro Laptop,1,1700,10/31/19 13:10,"871 7th St, Boston, MA 02215" -259973,ThinkPad Laptop,1,999.99,10/20/19 16:43,"721 Cedar St, Dallas, TX 75001" -259974,Google Phone,1,600,10/10/19 11:10,"40 Adams St, San Francisco, CA 94016" -259975,iPhone,1,700,10/22/19 10:23,"861 Elm St, New York City, NY 10001" -259976,Apple Airpods Headphones,1,150,10/11/19 23:26,"676 Adams St, Boston, MA 02215" -259977,20in Monitor,1,109.99,10/16/19 17:53,"777 Spruce St, Los Angeles, CA 90001" -259978,USB-C Charging Cable,1,11.95,10/16/19 14:07,"214 8th St, Los Angeles, CA 90001" -259979,Lightning Charging Cable,1,14.95,10/29/19 10:38,"239 Lakeview St, Austin, TX 73301" -259980,Apple Airpods Headphones,1,150,10/02/19 13:19,"849 Dogwood St, New York City, NY 10001" -259981,USB-C Charging Cable,1,11.95,10/24/19 17:14,"103 Jefferson St, New York City, NY 10001" -259982,Bose SoundSport Headphones,1,99.99,10/18/19 15:21,"81 11th St, San Francisco, CA 94016" -259983,Wired Headphones,1,11.99,10/18/19 12:48,"442 Lake St, Los Angeles, CA 90001" -259984,iPhone,1,700,10/12/19 09:44,"291 Madison St, Portland, OR 97035" -259985,Lightning Charging Cable,1,14.95,10/26/19 22:52,"165 13th St, Los Angeles, CA 90001" -259986,Lightning Charging Cable,1,14.95,10/23/19 23:53,"260 South St, San Francisco, CA 94016" -259987,Bose SoundSport Headphones,1,99.99,10/23/19 10:10,"161 Dogwood St, San Francisco, CA 94016" -259988,Apple Airpods Headphones,1,150,10/24/19 13:59,"312 Madison St, Los Angeles, CA 90001" -259989,AA Batteries (4-pack),1,3.84,10/29/19 18:06,"965 Lincoln St, Los Angeles, CA 90001" -259990,AA Batteries (4-pack),3,3.84,10/11/19 23:10,"961 7th St, San Francisco, CA 94016" -259991,AA Batteries (4-pack),1,3.84,10/26/19 17:31,"837 8th St, Los Angeles, CA 90001" -259992,AA Batteries (4-pack),1,3.84,10/07/19 21:17,"26 Meadow St, Los Angeles, CA 90001" -259993,Lightning Charging Cable,1,14.95,10/13/19 14:45,"93 Sunset St, New York City, NY 10001" -259993,AA Batteries (4-pack),1,3.84,10/13/19 14:45,"93 Sunset St, New York City, NY 10001" -259994,USB-C Charging Cable,1,11.95,10/28/19 16:36,"949 Ridge St, San Francisco, CA 94016" -259995,iPhone,1,700,10/27/19 09:47,"683 Cedar St, New York City, NY 10001" -259996,AA Batteries (4-pack),1,3.84,10/04/19 13:46,"384 Jackson St, New York City, NY 10001" -259997,27in 4K Gaming Monitor,1,389.99,10/08/19 15:19,"948 Elm St, Austin, TX 73301" -259998,AA Batteries (4-pack),2,3.84,10/17/19 18:20,"330 River St, Dallas, TX 75001" -259999,Flatscreen TV,1,300,10/06/19 18:21,"656 Washington St, New York City, NY 10001" -260000,Wired Headphones,1,11.99,10/03/19 08:58,"228 Jackson St, San Francisco, CA 94016" -260001,Google Phone,1,600,10/10/19 20:05,"741 Chestnut St, San Francisco, CA 94016" -260001,USB-C Charging Cable,1,11.95,10/10/19 20:05,"741 Chestnut St, San Francisco, CA 94016" -260002,Wired Headphones,1,11.99,10/21/19 20:01,"50 Dogwood St, Dallas, TX 75001" -260003,AA Batteries (4-pack),1,3.84,10/10/19 11:14,"296 Meadow St, New York City, NY 10001" -260004,34in Ultrawide Monitor,1,379.99,10/21/19 21:34,"690 13th St, San Francisco, CA 94016" -260005,34in Ultrawide Monitor,1,379.99,10/09/19 08:50,"112 12th St, Boston, MA 02215" -260006,Google Phone,1,600,10/09/19 12:35,"312 Jefferson St, San Francisco, CA 94016" -260006,USB-C Charging Cable,1,11.95,10/09/19 12:35,"312 Jefferson St, San Francisco, CA 94016" -260007,Apple Airpods Headphones,1,150,10/26/19 08:08,"509 South St, Los Angeles, CA 90001" -260008,Google Phone,1,600,10/16/19 16:02,"4 4th St, San Francisco, CA 94016" -260009,Apple Airpods Headphones,1,150,10/26/19 14:57,"53 Jackson St, Los Angeles, CA 90001" -260010,Flatscreen TV,1,300,10/07/19 09:57,"436 6th St, San Francisco, CA 94016" -260011,USB-C Charging Cable,1,11.95,10/14/19 14:10,"101 Cedar St, San Francisco, CA 94016" -260012,Wired Headphones,3,11.99,10/14/19 21:13,"248 9th St, Los Angeles, CA 90001" -260013,Wired Headphones,1,11.99,10/06/19 21:56,"53 Meadow St, Seattle, WA 98101" -260014,Apple Airpods Headphones,1,150,10/13/19 20:32,"469 12th St, Boston, MA 02215" -260015,Macbook Pro Laptop,1,1700,10/12/19 14:18,"442 Highland St, Atlanta, GA 30301" -260016,34in Ultrawide Monitor,1,379.99,10/30/19 17:24,"706 Main St, Los Angeles, CA 90001" -260017,iPhone,1,700,10/03/19 09:23,"831 14th St, San Francisco, CA 94016" -260017,AAA Batteries (4-pack),1,2.99,10/03/19 09:23,"831 14th St, San Francisco, CA 94016" -260018,AA Batteries (4-pack),1,3.84,10/09/19 17:47,"431 Hill St, Los Angeles, CA 90001" -260019,USB-C Charging Cable,1,11.95,10/08/19 11:52,"310 Lake St, San Francisco, CA 94016" -260020,20in Monitor,1,109.99,10/07/19 14:41,"853 Wilson St, San Francisco, CA 94016" -260021,Lightning Charging Cable,1,14.95,10/27/19 15:40,"320 Maple St, Boston, MA 02215" -260022,Apple Airpods Headphones,1,150,10/15/19 20:18,"874 Johnson St, Austin, TX 73301" -260023,Vareebadd Phone,1,400,10/19/19 09:11,"224 Lake St, Atlanta, GA 30301" -260023,USB-C Charging Cable,1,11.95,10/19/19 09:11,"224 Lake St, Atlanta, GA 30301" -260024,iPhone,1,700,10/28/19 14:11,"525 Washington St, Seattle, WA 98101" -260025,34in Ultrawide Monitor,1,379.99,10/08/19 17:05,"849 Willow St, Atlanta, GA 30301" -260026,USB-C Charging Cable,1,11.95,10/26/19 02:00,"637 Lake St, San Francisco, CA 94016" -260027,27in 4K Gaming Monitor,1,389.99,10/16/19 21:33,"366 Elm St, Portland, OR 97035" -260028,iPhone,1,700,10/30/19 18:57,"145 Chestnut St, San Francisco, CA 94016" -260029,Lightning Charging Cable,1,14.95,10/25/19 09:16,"666 11th St, San Francisco, CA 94016" -260030,Flatscreen TV,1,300,10/23/19 10:07,"211 10th St, Austin, TX 73301" -260031,Wired Headphones,1,11.99,10/19/19 10:27,"231 Park St, Portland, ME 04101" -260032,Apple Airpods Headphones,1,150,10/18/19 21:00,"22 Cherry St, Los Angeles, CA 90001" -260033,Apple Airpods Headphones,1,150,10/21/19 16:25,"454 6th St, Los Angeles, CA 90001" -260034,Lightning Charging Cable,1,14.95,10/27/19 20:07,"255 Wilson St, Portland, OR 97035" -260035,Lightning Charging Cable,1,14.95,10/22/19 16:02,"449 13th St, New York City, NY 10001" -260036,Bose SoundSport Headphones,1,99.99,10/04/19 20:35,"326 Chestnut St, San Francisco, CA 94016" -260037,Bose SoundSport Headphones,1,99.99,10/05/19 17:01,"864 Hickory St, Los Angeles, CA 90001" -260038,ThinkPad Laptop,1,999.99,10/07/19 17:01,"556 Meadow St, Los Angeles, CA 90001" -260039,27in FHD Monitor,1,149.99,10/20/19 22:27,"366 12th St, Los Angeles, CA 90001" -260040,AAA Batteries (4-pack),3,2.99,10/01/19 22:51,"301 Meadow St, Portland, OR 97035" -260041,AAA Batteries (4-pack),1,2.99,10/04/19 07:33,"396 Meadow St, Boston, MA 02215" -260042,AAA Batteries (4-pack),1,2.99,10/22/19 00:03,"315 Elm St, Atlanta, GA 30301" -260043,USB-C Charging Cable,2,11.95,10/19/19 22:37,"725 6th St, Atlanta, GA 30301" -260044,USB-C Charging Cable,1,11.95,10/08/19 19:51,"32 9th St, New York City, NY 10001" -260044,27in FHD Monitor,1,149.99,10/08/19 19:51,"32 9th St, New York City, NY 10001" -260045,AAA Batteries (4-pack),2,2.99,10/28/19 14:43,"263 Washington St, Los Angeles, CA 90001" -260046,USB-C Charging Cable,1,11.95,10/25/19 15:38,"649 Hill St, San Francisco, CA 94016" -260047,AAA Batteries (4-pack),1,2.99,10/31/19 07:32,"85 Lake St, Los Angeles, CA 90001" -260048,AAA Batteries (4-pack),2,2.99,10/29/19 17:22,"455 Lakeview St, Boston, MA 02215" -260049,AAA Batteries (4-pack),2,2.99,10/11/19 21:54,"185 5th St, Boston, MA 02215" -260050,Apple Airpods Headphones,1,150,10/24/19 21:02,"358 River St, Portland, OR 97035" -260051,34in Ultrawide Monitor,1,379.99,10/19/19 10:50,"777 North St, San Francisco, CA 94016" -260052,Apple Airpods Headphones,1,150,10/08/19 13:11,"964 12th St, San Francisco, CA 94016" -260053,Flatscreen TV,1,300,10/04/19 22:18,"185 7th St, Dallas, TX 75001" -260054,27in 4K Gaming Monitor,1,389.99,10/26/19 17:18,"67 South St, Seattle, WA 98101" -260055,ThinkPad Laptop,1,999.99,10/12/19 21:11,"258 Elm St, New York City, NY 10001" -260055,34in Ultrawide Monitor,1,379.99,10/12/19 21:11,"258 Elm St, New York City, NY 10001" -260056,USB-C Charging Cable,1,11.95,10/18/19 13:47,"70 Church St, San Francisco, CA 94016" -260057,27in 4K Gaming Monitor,1,389.99,10/20/19 00:12,"997 Spruce St, Dallas, TX 75001" -260058,Flatscreen TV,1,300,10/30/19 18:16,"268 Lakeview St, Seattle, WA 98101" -260059,iPhone,1,700,10/29/19 18:51,"649 11th St, Atlanta, GA 30301" -260060,Wired Headphones,1,11.99,10/13/19 21:37,"640 9th St, Los Angeles, CA 90001" -260061,AA Batteries (4-pack),3,3.84,10/16/19 12:49,"530 Forest St, San Francisco, CA 94016" -260062,Lightning Charging Cable,1,14.95,10/13/19 00:37,"606 Center St, Seattle, WA 98101" -260063,AAA Batteries (4-pack),2,2.99,10/20/19 09:16,"701 South St, New York City, NY 10001" -260064,Flatscreen TV,1,300,10/21/19 14:14,"33 Johnson St, Boston, MA 02215" -260065,AA Batteries (4-pack),1,3.84,10/06/19 08:25,"629 14th St, San Francisco, CA 94016" -260066,Lightning Charging Cable,1,14.95,10/11/19 15:17,"370 8th St, Boston, MA 02215" -260067,Lightning Charging Cable,1,14.95,10/23/19 07:48,"990 Main St, Austin, TX 73301" -260068,Bose SoundSport Headphones,1,99.99,10/14/19 22:20,"154 West St, San Francisco, CA 94016" -260069,Macbook Pro Laptop,1,1700,10/23/19 16:04,"754 13th St, Portland, OR 97035" -260070,AA Batteries (4-pack),1,3.84,10/07/19 06:12,"922 8th St, Austin, TX 73301" -260071,Wired Headphones,1,11.99,10/13/19 17:37,"407 North St, Atlanta, GA 30301" -260072,AAA Batteries (4-pack),1,2.99,10/10/19 21:16,"681 Willow St, Boston, MA 02215" -260073,Bose SoundSport Headphones,1,99.99,10/28/19 23:03,"670 Johnson St, San Francisco, CA 94016" -260074,27in FHD Monitor,1,149.99,10/25/19 12:46,"547 Lincoln St, San Francisco, CA 94016" -260075,AAA Batteries (4-pack),2,2.99,10/27/19 18:37,"562 7th St, Los Angeles, CA 90001" -260076,AA Batteries (4-pack),1,3.84,10/15/19 19:35,"495 Lincoln St, New York City, NY 10001" -260077,USB-C Charging Cable,1,11.95,10/19/19 09:51,"153 6th St, New York City, NY 10001" -260078,AAA Batteries (4-pack),1,2.99,10/19/19 23:59,"7 Ridge St, San Francisco, CA 94016" -260079,Flatscreen TV,1,300,10/05/19 07:29,"645 Forest St, New York City, NY 10001" -260080,Apple Airpods Headphones,1,150,10/01/19 19:27,"75 Cedar St, Dallas, TX 75001" -260081,Lightning Charging Cable,1,14.95,10/13/19 08:21,"632 Jefferson St, Los Angeles, CA 90001" -260082,20in Monitor,1,109.99,10/10/19 19:08,"679 River St, Portland, OR 97035" -260083,USB-C Charging Cable,1,11.95,10/03/19 16:26,"874 11th St, Atlanta, GA 30301" -260084,Wired Headphones,1,11.99,10/06/19 14:56,"769 Center St, New York City, NY 10001" -260085,34in Ultrawide Monitor,1,379.99,10/28/19 12:27,"987 Wilson St, Portland, OR 97035" -260086,Lightning Charging Cable,1,14.95,10/13/19 12:34,"685 8th St, Boston, MA 02215" -260087,Apple Airpods Headphones,1,150,10/28/19 18:50,"987 Maple St, Austin, TX 73301" -260088,Lightning Charging Cable,1,14.95,10/10/19 19:51,"135 Elm St, San Francisco, CA 94016" -260089,USB-C Charging Cable,2,11.95,10/05/19 16:39,"382 River St, Boston, MA 02215" -260090,AA Batteries (4-pack),1,3.84,10/02/19 18:46,"128 Main St, Seattle, WA 98101" -260091,AAA Batteries (4-pack),1,2.99,10/07/19 21:41,"379 Church St, Boston, MA 02215" -260092,20in Monitor,1,109.99,10/20/19 18:23,"608 5th St, New York City, NY 10001" -260093,AAA Batteries (4-pack),1,2.99,10/16/19 10:40,"921 Washington St, Portland, OR 97035" -260094,iPhone,1,700,10/10/19 12:08,"202 Maple St, San Francisco, CA 94016" -260095,USB-C Charging Cable,1,11.95,10/09/19 07:13,"270 11th St, Boston, MA 02215" -260096,Wired Headphones,2,11.99,10/01/19 18:44,"648 Dogwood St, Los Angeles, CA 90001" -260097,USB-C Charging Cable,1,11.95,10/22/19 14:09,"745 13th St, Dallas, TX 75001" -260098,AA Batteries (4-pack),1,3.84,10/30/19 22:59,"91 Adams St, Los Angeles, CA 90001" -260099,USB-C Charging Cable,1,11.95,10/30/19 12:03,"702 Cedar St, San Francisco, CA 94016" -260100,Flatscreen TV,1,300,10/25/19 21:55,"819 14th St, Atlanta, GA 30301" -260101,Flatscreen TV,1,300,10/08/19 11:53,"559 4th St, Austin, TX 73301" -260102,AAA Batteries (4-pack),3,2.99,10/23/19 06:36,"626 Highland St, Seattle, WA 98101" -260103,AAA Batteries (4-pack),4,2.99,10/24/19 12:01,"327 11th St, New York City, NY 10001" -260104,AA Batteries (4-pack),1,3.84,10/19/19 19:20,"383 1st St, Portland, OR 97035" -260105,Apple Airpods Headphones,1,150,10/13/19 23:38,"777 Church St, Los Angeles, CA 90001" -260106,Wired Headphones,1,11.99,10/15/19 12:46,"473 8th St, Los Angeles, CA 90001" -260107,Lightning Charging Cable,1,14.95,10/20/19 20:16,"820 Center St, Atlanta, GA 30301" -260108,Wired Headphones,1,11.99,10/22/19 12:23,"954 Wilson St, Austin, TX 73301" -260109,Wired Headphones,1,11.99,10/16/19 17:32,"933 Dogwood St, New York City, NY 10001" -260110,34in Ultrawide Monitor,1,379.99,10/17/19 20:32,"472 River St, San Francisco, CA 94016" -260111,AAA Batteries (4-pack),1,2.99,10/06/19 20:15,"406 Madison St, Los Angeles, CA 90001" -260112,AA Batteries (4-pack),1,3.84,10/11/19 10:24,"626 Maple St, San Francisco, CA 94016" -260113,34in Ultrawide Monitor,1,379.99,10/29/19 15:42,"115 Jackson St, Seattle, WA 98101" -260114,AAA Batteries (4-pack),1,2.99,10/19/19 23:31,"645 7th St, Seattle, WA 98101" -260115,USB-C Charging Cable,1,11.95,10/16/19 13:21,"360 Walnut St, Seattle, WA 98101" -260116,Wired Headphones,1,11.99,10/10/19 21:17,"726 Cherry St, San Francisco, CA 94016" -260117,Wired Headphones,1,11.99,10/23/19 17:25,"740 River St, Portland, OR 97035" -260118,Wired Headphones,1,11.99,10/02/19 16:30,"727 Sunset St, San Francisco, CA 94016" -260119,Bose SoundSport Headphones,1,99.99,10/26/19 15:25,"319 Pine St, San Francisco, CA 94016" -260120,AA Batteries (4-pack),1,3.84,10/15/19 18:52,"980 Elm St, Austin, TX 73301" -260121,Lightning Charging Cable,1,14.95,10/25/19 08:34,"852 Chestnut St, San Francisco, CA 94016" -260122,Macbook Pro Laptop,1,1700,10/29/19 23:29,"466 Madison St, Portland, OR 97035" -260123,AA Batteries (4-pack),1,3.84,10/09/19 12:50,"573 1st St, Austin, TX 73301" -260124,iPhone,1,700,10/22/19 21:09,"358 Main St, Los Angeles, CA 90001" -260125,AAA Batteries (4-pack),2,2.99,10/31/19 09:31,"500 North St, Portland, OR 97035" -260126,Apple Airpods Headphones,1,150,10/17/19 18:31,"371 7th St, Los Angeles, CA 90001" -260127,iPhone,1,700,10/06/19 23:57,"227 Willow St, San Francisco, CA 94016" -260127,Lightning Charging Cable,1,14.95,10/06/19 23:57,"227 Willow St, San Francisco, CA 94016" -260127,Wired Headphones,1,11.99,10/06/19 23:57,"227 Willow St, San Francisco, CA 94016" -260128,AAA Batteries (4-pack),2,2.99,10/18/19 12:54,"360 Hill St, Atlanta, GA 30301" -260129,USB-C Charging Cable,1,11.95,10/14/19 13:17,"49 8th St, Los Angeles, CA 90001" -260130,AA Batteries (4-pack),1,3.84,10/23/19 21:29,"825 Chestnut St, Los Angeles, CA 90001" -260131,AA Batteries (4-pack),1,3.84,10/07/19 22:29,"766 Lakeview St, San Francisco, CA 94016" -260132,AA Batteries (4-pack),1,3.84,10/25/19 16:48,"920 Cedar St, Boston, MA 02215" -260133,Flatscreen TV,1,300,10/18/19 19:32,"245 Park St, Los Angeles, CA 90001" -260134,Bose SoundSport Headphones,1,99.99,10/01/19 11:15,"424 14th St, Boston, MA 02215" -260135,34in Ultrawide Monitor,1,379.99,10/01/19 07:35,"550 Cherry St, San Francisco, CA 94016" -260135,AA Batteries (4-pack),1,3.84,10/01/19 07:35,"550 Cherry St, San Francisco, CA 94016" -260136,AAA Batteries (4-pack),1,2.99,10/16/19 08:12,"532 13th St, Seattle, WA 98101" -260137,34in Ultrawide Monitor,1,379.99,10/10/19 19:24,"801 West St, Austin, TX 73301" -260138,AA Batteries (4-pack),3,3.84,10/26/19 20:57,"65 North St, Boston, MA 02215" -260139,Lightning Charging Cable,1,14.95,10/14/19 19:35,"775 12th St, San Francisco, CA 94016" -260140,USB-C Charging Cable,1,11.95,10/11/19 17:14,"822 14th St, San Francisco, CA 94016" -260141,AAA Batteries (4-pack),1,2.99,10/30/19 00:20,"574 Cedar St, New York City, NY 10001" -260142,Lightning Charging Cable,1,14.95,10/09/19 13:59,"781 Maple St, New York City, NY 10001" -260143,Apple Airpods Headphones,1,150,10/23/19 10:11,"94 Wilson St, San Francisco, CA 94016" -260144,27in FHD Monitor,1,149.99,10/18/19 14:49,"80 River St, Portland, OR 97035" -260145,Lightning Charging Cable,1,14.95,10/09/19 14:15,"436 Main St, San Francisco, CA 94016" -260146,AA Batteries (4-pack),2,3.84,10/30/19 21:28,"613 Church St, San Francisco, CA 94016" -260147,AAA Batteries (4-pack),1,2.99,10/08/19 19:14,"844 Cedar St, San Francisco, CA 94016" -260148,AAA Batteries (4-pack),1,2.99,10/22/19 11:55,"127 Highland St, Los Angeles, CA 90001" -260149,Wired Headphones,2,11.99,10/01/19 07:08,"382 Hill St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -260150,Lightning Charging Cable,1,14.95,10/31/19 12:14,"852 Wilson St, San Francisco, CA 94016" -260151,USB-C Charging Cable,1,11.95,10/16/19 12:31,"660 7th St, Austin, TX 73301" -260152,Macbook Pro Laptop,1,1700,10/23/19 17:25,"926 Spruce St, San Francisco, CA 94016" -260153,AAA Batteries (4-pack),1,2.99,10/13/19 05:49,"274 Johnson St, San Francisco, CA 94016" -,,,,, -260154,AA Batteries (4-pack),1,3.84,10/15/19 14:03,"368 Park St, Dallas, TX 75001" -260155,AA Batteries (4-pack),1,3.84,10/07/19 10:52,"425 River St, Atlanta, GA 30301" -260156,AA Batteries (4-pack),2,3.84,10/20/19 12:56,"514 Adams St, Seattle, WA 98101" -260157,USB-C Charging Cable,1,11.95,10/04/19 21:41,"637 Spruce St, Atlanta, GA 30301" -260158,AA Batteries (4-pack),2,3.84,10/23/19 19:35,"86 South St, San Francisco, CA 94016" -260159,Lightning Charging Cable,1,14.95,10/26/19 15:06,"765 Cedar St, Boston, MA 02215" -260160,AA Batteries (4-pack),1,3.84,10/10/19 14:16,"100 Pine St, Boston, MA 02215" -260161,USB-C Charging Cable,1,11.95,10/30/19 11:30,"124 Cedar St, Dallas, TX 75001" -260162,Lightning Charging Cable,1,14.95,10/21/19 11:37,"977 Forest St, Atlanta, GA 30301" -260163,Wired Headphones,2,11.99,10/10/19 00:31,"372 Dogwood St, Portland, OR 97035" -260164,ThinkPad Laptop,1,999.99,10/10/19 13:03,"394 2nd St, Boston, MA 02215" -260165,Bose SoundSport Headphones,1,99.99,10/28/19 00:03,"509 9th St, San Francisco, CA 94016" -260166,Apple Airpods Headphones,1,150,10/20/19 09:52,"375 5th St, Seattle, WA 98101" -260167,Google Phone,1,600,10/22/19 12:31,"251 Dogwood St, Boston, MA 02215" -260168,Wired Headphones,1,11.99,10/25/19 09:24,"731 Pine St, Dallas, TX 75001" -260169,Lightning Charging Cable,1,14.95,10/07/19 00:38,"429 Ridge St, Dallas, TX 75001" -260170,27in 4K Gaming Monitor,1,389.99,10/08/19 12:31,"275 Sunset St, Los Angeles, CA 90001" -260171,Wired Headphones,1,11.99,10/28/19 18:02,"386 2nd St, Portland, OR 97035" -260172,Bose SoundSport Headphones,1,99.99,10/16/19 21:03,"636 Elm St, Boston, MA 02215" -260173,20in Monitor,1,109.99,10/26/19 11:38,"350 Washington St, Boston, MA 02215" -260174,USB-C Charging Cable,1,11.95,10/16/19 09:22,"889 Maple St, Austin, TX 73301" -260175,20in Monitor,1,109.99,10/24/19 19:01,"658 Church St, Dallas, TX 75001" -260176,34in Ultrawide Monitor,1,379.99,10/20/19 22:37,"209 West St, San Francisco, CA 94016" -260177,USB-C Charging Cable,1,11.95,10/13/19 21:05,"301 Pine St, San Francisco, CA 94016" -260178,USB-C Charging Cable,1,11.95,10/30/19 14:04,"478 Hickory St, Boston, MA 02215" -260179,AAA Batteries (4-pack),1,2.99,10/20/19 10:30,"328 7th St, Dallas, TX 75001" -260180,iPhone,1,700,10/21/19 16:14,"26 Meadow St, Austin, TX 73301" -260181,Bose SoundSport Headphones,1,99.99,10/22/19 18:18,"266 10th St, New York City, NY 10001" -260182,Wired Headphones,1,11.99,10/20/19 16:14,"32 Johnson St, Boston, MA 02215" -260183,Bose SoundSport Headphones,1,99.99,10/17/19 01:16,"184 West St, Atlanta, GA 30301" -260183,Lightning Charging Cable,1,14.95,10/17/19 01:16,"184 West St, Atlanta, GA 30301" -260184,AAA Batteries (4-pack),1,2.99,10/09/19 11:50,"607 Sunset St, San Francisco, CA 94016" -260185,iPhone,1,700,10/20/19 10:18,"52 Meadow St, San Francisco, CA 94016" -260186,ThinkPad Laptop,1,999.99,10/16/19 14:19,"697 Johnson St, New York City, NY 10001" -260187,20in Monitor,1,109.99,10/21/19 08:34,"113 Cedar St, Dallas, TX 75001" -260188,USB-C Charging Cable,1,11.95,10/19/19 14:44,"901 Park St, New York City, NY 10001" -260189,Google Phone,1,600,10/17/19 23:22,"257 South St, San Francisco, CA 94016" -260190,USB-C Charging Cable,1,11.95,10/24/19 19:41,"418 Walnut St, Atlanta, GA 30301" -260191,Bose SoundSport Headphones,1,99.99,10/13/19 17:06,"326 Highland St, San Francisco, CA 94016" -260192,USB-C Charging Cable,1,11.95,10/09/19 13:00,"358 14th St, Portland, OR 97035" -260193,Lightning Charging Cable,1,14.95,10/25/19 22:10,"521 Cedar St, San Francisco, CA 94016" -260194,AA Batteries (4-pack),1,3.84,10/10/19 17:08,"298 River St, Los Angeles, CA 90001" -260195,USB-C Charging Cable,1,11.95,10/09/19 01:40,"520 Sunset St, Los Angeles, CA 90001" -260196,Bose SoundSport Headphones,1,99.99,10/20/19 13:34,"904 12th St, New York City, NY 10001" -260197,USB-C Charging Cable,1,11.95,10/09/19 16:02,"409 Adams St, Dallas, TX 75001" -260198,AAA Batteries (4-pack),3,2.99,10/17/19 19:32,"428 9th St, San Francisco, CA 94016" -260199,AA Batteries (4-pack),1,3.84,10/26/19 11:46,"964 7th St, Los Angeles, CA 90001" -260200,34in Ultrawide Monitor,1,379.99,10/12/19 19:19,"40 Ridge St, Los Angeles, CA 90001" -260201,Bose SoundSport Headphones,1,99.99,10/20/19 12:04,"953 Spruce St, Los Angeles, CA 90001" -,,,,, -260202,Lightning Charging Cable,1,14.95,10/02/19 01:53,"677 North St, Atlanta, GA 30301" -260203,Wired Headphones,1,11.99,10/20/19 13:01,"588 Lake St, San Francisco, CA 94016" -260204,Lightning Charging Cable,1,14.95,10/31/19 10:57,"135 Johnson St, New York City, NY 10001" -260205,Lightning Charging Cable,1,14.95,10/13/19 18:33,"281 Lakeview St, Los Angeles, CA 90001" -260206,USB-C Charging Cable,1,11.95,10/09/19 12:30,"987 West St, Atlanta, GA 30301" -260207,Apple Airpods Headphones,1,150,10/04/19 14:45,"129 2nd St, Dallas, TX 75001" -260208,27in 4K Gaming Monitor,1,389.99,10/16/19 18:47,"121 Cherry St, San Francisco, CA 94016" -260209,Wired Headphones,1,11.99,10/01/19 18:09,"14 2nd St, Atlanta, GA 30301" -260210,27in 4K Gaming Monitor,1,389.99,10/03/19 09:33,"332 Dogwood St, Los Angeles, CA 90001" -260211,Apple Airpods Headphones,1,150,10/27/19 23:30,"716 Cedar St, New York City, NY 10001" -260212,Apple Airpods Headphones,1,150,10/06/19 20:26,"29 7th St, Boston, MA 02215" -260213,AA Batteries (4-pack),3,3.84,10/08/19 22:03,"210 Johnson St, Austin, TX 73301" -260214,Wired Headphones,1,11.99,10/04/19 18:21,"482 Chestnut St, Los Angeles, CA 90001" -260215,Google Phone,1,600,10/09/19 18:49,"630 1st St, Boston, MA 02215" -260215,USB-C Charging Cable,1,11.95,10/09/19 18:49,"630 1st St, Boston, MA 02215" -260216,USB-C Charging Cable,1,11.95,10/28/19 12:38,"971 West St, New York City, NY 10001" -260217,AA Batteries (4-pack),1,3.84,10/15/19 16:32,"482 Church St, Portland, OR 97035" -260218,Bose SoundSport Headphones,1,99.99,10/14/19 11:52,"56 Meadow St, New York City, NY 10001" -260219,27in FHD Monitor,1,149.99,10/01/19 14:26,"309 Pine St, Boston, MA 02215" -260219,USB-C Charging Cable,1,11.95,10/01/19 14:26,"309 Pine St, Boston, MA 02215" -260220,AA Batteries (4-pack),1,3.84,10/13/19 17:36,"898 6th St, Dallas, TX 75001" -260221,Apple Airpods Headphones,1,150,10/14/19 20:13,"208 Wilson St, Austin, TX 73301" -260222,27in FHD Monitor,1,149.99,10/23/19 20:14,"242 4th St, Boston, MA 02215" -260223,Wired Headphones,1,11.99,10/10/19 19:06,"678 Jackson St, Los Angeles, CA 90001" -260224,AAA Batteries (4-pack),1,2.99,10/01/19 16:27,"764 Forest St, San Francisco, CA 94016" -260225,Lightning Charging Cable,1,14.95,10/19/19 19:15,"323 Willow St, San Francisco, CA 94016" -260225,20in Monitor,1,109.99,10/19/19 19:15,"323 Willow St, San Francisco, CA 94016" -260226,iPhone,1,700,10/01/19 22:41,"121 4th St, Boston, MA 02215" -260226,Lightning Charging Cable,1,14.95,10/01/19 22:41,"121 4th St, Boston, MA 02215" -260227,27in FHD Monitor,1,149.99,10/25/19 14:36,"647 10th St, Dallas, TX 75001" -260228,Google Phone,1,600,10/29/19 01:12,"4 Lake St, Atlanta, GA 30301" -260229,AA Batteries (4-pack),1,3.84,10/09/19 14:57,"94 Wilson St, San Francisco, CA 94016" -260230,iPhone,1,700,10/26/19 11:41,"840 5th St, Dallas, TX 75001" -260231,27in FHD Monitor,1,149.99,10/07/19 16:35,"213 Washington St, Dallas, TX 75001" -260232,Apple Airpods Headphones,1,150,10/01/19 17:51,"292 North St, Austin, TX 73301" -260233,AA Batteries (4-pack),1,3.84,10/15/19 19:00,"30 Jefferson St, New York City, NY 10001" -260234,USB-C Charging Cable,1,11.95,10/22/19 12:58,"664 Jefferson St, New York City, NY 10001" -260235,USB-C Charging Cable,1,11.95,10/10/19 13:23,"275 River St, San Francisco, CA 94016" -260236,AA Batteries (4-pack),1,3.84,10/04/19 18:50,"52 Jackson St, Los Angeles, CA 90001" -260237,Bose SoundSport Headphones,1,99.99,10/05/19 16:05,"569 Elm St, San Francisco, CA 94016" -260238,Lightning Charging Cable,1,14.95,10/17/19 16:00,"887 Main St, Seattle, WA 98101" -260239,USB-C Charging Cable,1,11.95,10/02/19 23:54,"462 11th St, Los Angeles, CA 90001" -260240,AA Batteries (4-pack),1,3.84,10/09/19 16:08,"314 Ridge St, San Francisco, CA 94016" -260241,27in FHD Monitor,1,149.99,10/21/19 08:08,"920 Madison St, Boston, MA 02215" -260242,Lightning Charging Cable,1,14.95,10/21/19 19:19,"446 Pine St, San Francisco, CA 94016" -260243,AAA Batteries (4-pack),1,2.99,10/08/19 20:33,"796 Chestnut St, New York City, NY 10001" -260244,Wired Headphones,1,11.99,10/22/19 09:19,"353 Elm St, Dallas, TX 75001" -260245,AAA Batteries (4-pack),1,2.99,10/06/19 13:18,"207 5th St, San Francisco, CA 94016" -260246,AA Batteries (4-pack),3,3.84,10/23/19 10:35,"879 12th St, Atlanta, GA 30301" -260247,AAA Batteries (4-pack),1,2.99,10/29/19 12:51,"265 North St, Los Angeles, CA 90001" -260248,Lightning Charging Cable,2,14.95,10/30/19 19:11,"67 9th St, Dallas, TX 75001" -260249,Bose SoundSport Headphones,1,99.99,10/02/19 15:52,"973 7th St, Seattle, WA 98101" -260250,AA Batteries (4-pack),1,3.84,10/20/19 18:13,"25 North St, New York City, NY 10001" -260251,AAA Batteries (4-pack),1,2.99,10/03/19 22:59,"209 River St, Los Angeles, CA 90001" -260251,Google Phone,1,600,10/03/19 22:59,"209 River St, Los Angeles, CA 90001" -260252,20in Monitor,1,109.99,10/10/19 22:45,"809 Main St, Atlanta, GA 30301" -260253,Lightning Charging Cable,1,14.95,10/07/19 10:57,"997 Lakeview St, Seattle, WA 98101" -260254,USB-C Charging Cable,1,11.95,10/03/19 17:31,"444 Church St, Los Angeles, CA 90001" -260255,AA Batteries (4-pack),1,3.84,10/01/19 14:45,"72 Wilson St, Dallas, TX 75001" -260256,USB-C Charging Cable,1,11.95,10/08/19 12:04,"515 7th St, San Francisco, CA 94016" -260257,AAA Batteries (4-pack),1,2.99,10/10/19 08:21,"994 10th St, Seattle, WA 98101" -260258,Apple Airpods Headphones,1,150,10/08/19 09:24,"998 Dogwood St, Dallas, TX 75001" -260259,Wired Headphones,1,11.99,10/09/19 16:25,"761 Lake St, Atlanta, GA 30301" -260260,AA Batteries (4-pack),1,3.84,10/21/19 06:27,"490 River St, Los Angeles, CA 90001" -260261,Lightning Charging Cable,2,14.95,10/05/19 12:04,"526 4th St, Seattle, WA 98101" -260262,Apple Airpods Headphones,1,150,10/26/19 17:08,"282 Johnson St, Atlanta, GA 30301" -260263,Flatscreen TV,1,300,10/02/19 15:02,"903 2nd St, Seattle, WA 98101" -260264,Macbook Pro Laptop,1,1700,10/28/19 13:39,"310 North St, Dallas, TX 75001" -260265,27in FHD Monitor,1,149.99,10/21/19 20:55,"695 Elm St, New York City, NY 10001" -260266,AAA Batteries (4-pack),4,2.99,10/26/19 00:53,"487 9th St, New York City, NY 10001" -260267,AAA Batteries (4-pack),1,2.99,10/13/19 16:08,"931 South St, Boston, MA 02215" -260268,USB-C Charging Cable,1,11.95,10/08/19 18:19,"152 Park St, Atlanta, GA 30301" -260269,ThinkPad Laptop,1,999.99,10/26/19 16:16,"25 Sunset St, Boston, MA 02215" -260270,iPhone,1,700,10/12/19 16:24,"41 Lincoln St, San Francisco, CA 94016" -260271,27in FHD Monitor,1,149.99,10/24/19 18:18,"18 River St, San Francisco, CA 94016" -260272,Wired Headphones,1,11.99,10/24/19 17:45,"593 Forest St, Portland, ME 04101" -260273,27in 4K Gaming Monitor,1,389.99,10/05/19 13:18,"699 Park St, San Francisco, CA 94016" -260274,USB-C Charging Cable,2,11.95,10/01/19 22:42,"146 Hill St, San Francisco, CA 94016" -260275,Wired Headphones,1,11.99,10/08/19 08:57,"37 10th St, Dallas, TX 75001" -260276,USB-C Charging Cable,1,11.95,10/25/19 13:05,"31 North St, Los Angeles, CA 90001" -260277,Bose SoundSport Headphones,1,99.99,10/22/19 15:52,"959 Lakeview St, Dallas, TX 75001" -260278,USB-C Charging Cable,1,11.95,10/28/19 02:37,"309 Wilson St, Portland, OR 97035" -260279,Wired Headphones,1,11.99,10/18/19 15:40,"910 Lakeview St, San Francisco, CA 94016" -260280,Lightning Charging Cable,1,14.95,10/04/19 11:46,"185 1st St, Los Angeles, CA 90001" -260281,Macbook Pro Laptop,1,1700,10/13/19 18:15,"985 Adams St, Los Angeles, CA 90001" -260282,Lightning Charging Cable,1,14.95,10/26/19 19:24,"224 1st St, Boston, MA 02215" -260283,20in Monitor,1,109.99,10/02/19 06:26,"29 Pine St, San Francisco, CA 94016" -260284,Wired Headphones,1,11.99,10/17/19 07:28,"606 8th St, Los Angeles, CA 90001" -260285,AAA Batteries (4-pack),1,2.99,10/27/19 12:15,"956 Jackson St, Portland, ME 04101" -260286,AA Batteries (4-pack),1,3.84,10/25/19 18:18,"529 River St, New York City, NY 10001" -260286,AA Batteries (4-pack),1,3.84,10/25/19 18:18,"529 River St, New York City, NY 10001" -260287,Macbook Pro Laptop,1,1700,10/04/19 16:26,"620 9th St, New York City, NY 10001" -260288,Apple Airpods Headphones,1,150,10/14/19 19:54,"293 13th St, San Francisco, CA 94016" -260289,AAA Batteries (4-pack),1,2.99,10/18/19 03:50,"497 Spruce St, Seattle, WA 98101" -260290,34in Ultrawide Monitor,1,379.99,10/17/19 13:12,"812 Lakeview St, New York City, NY 10001" -260291,Apple Airpods Headphones,1,150,10/01/19 19:23,"896 Washington St, San Francisco, CA 94016" -260292,AA Batteries (4-pack),1,3.84,10/03/19 20:43,"137 Jefferson St, San Francisco, CA 94016" -260293,Google Phone,1,600,10/10/19 11:44,"795 Willow St, Los Angeles, CA 90001" -260293,Wired Headphones,1,11.99,10/10/19 11:44,"795 Willow St, Los Angeles, CA 90001" -260294,AAA Batteries (4-pack),1,2.99,10/25/19 15:47,"280 5th St, Los Angeles, CA 90001" -260295,Wired Headphones,1,11.99,10/06/19 21:31,"412 Church St, Portland, ME 04101" -260296,Lightning Charging Cable,1,14.95,10/29/19 17:58,"214 Jefferson St, San Francisco, CA 94016" -260297,USB-C Charging Cable,1,11.95,10/11/19 12:32,"428 Center St, New York City, NY 10001" -260298,iPhone,1,700,10/31/19 16:21,"561 Willow St, Austin, TX 73301" -260299,Lightning Charging Cable,1,14.95,10/20/19 08:46,"506 7th St, San Francisco, CA 94016" -260300,Vareebadd Phone,1,400,10/28/19 11:33,"806 Jefferson St, Atlanta, GA 30301" -260300,USB-C Charging Cable,1,11.95,10/28/19 11:33,"806 Jefferson St, Atlanta, GA 30301" -260301,iPhone,1,700,10/12/19 12:28,"209 Park St, Los Angeles, CA 90001" -260302,USB-C Charging Cable,1,11.95,10/28/19 23:54,"232 9th St, San Francisco, CA 94016" -260303,20in Monitor,1,109.99,10/18/19 17:57,"737 Jackson St, San Francisco, CA 94016" -260304,Lightning Charging Cable,1,14.95,10/02/19 20:40,"994 14th St, Seattle, WA 98101" -260305,27in 4K Gaming Monitor,1,389.99,10/17/19 14:15,"822 Pine St, San Francisco, CA 94016" -260306,34in Ultrawide Monitor,1,379.99,10/20/19 11:51,"872 Lakeview St, Seattle, WA 98101" -260307,Macbook Pro Laptop,1,1700,10/10/19 17:25,"500 Forest St, Seattle, WA 98101" -260308,Flatscreen TV,1,300,10/05/19 10:28,"814 Dogwood St, Seattle, WA 98101" -260309,27in 4K Gaming Monitor,1,389.99,10/02/19 18:12,"782 Wilson St, Austin, TX 73301" -260310,ThinkPad Laptop,1,999.99,10/11/19 06:51,"244 Willow St, Seattle, WA 98101" -260311,AA Batteries (4-pack),1,3.84,10/15/19 18:41,"111 11th St, Los Angeles, CA 90001" -260312,Bose SoundSport Headphones,1,99.99,10/05/19 11:47,"605 Walnut St, Dallas, TX 75001" -260313,Lightning Charging Cable,1,14.95,10/22/19 11:16,"448 River St, Austin, TX 73301" -260314,Wired Headphones,1,11.99,10/27/19 13:24,"960 Cherry St, Atlanta, GA 30301" -260315,AAA Batteries (4-pack),1,2.99,10/30/19 22:39,"984 Church St, Portland, OR 97035" -260316,AAA Batteries (4-pack),1,2.99,10/28/19 04:31,"875 6th St, Atlanta, GA 30301" -260317,AA Batteries (4-pack),2,3.84,10/19/19 06:48,"493 Cedar St, San Francisco, CA 94016" -260318,AA Batteries (4-pack),1,3.84,10/19/19 12:44,"847 Lakeview St, New York City, NY 10001" -260319,AAA Batteries (4-pack),1,2.99,10/09/19 13:23,"814 River St, New York City, NY 10001" -260320,Wired Headphones,1,11.99,10/05/19 09:30,"47 14th St, Dallas, TX 75001" -260321,USB-C Charging Cable,1,11.95,10/22/19 21:49,"252 Highland St, Los Angeles, CA 90001" -260322,Bose SoundSport Headphones,1,99.99,10/02/19 11:14,"724 1st St, Austin, TX 73301" -260323,Wired Headphones,1,11.99,10/09/19 19:12,"248 Pine St, San Francisco, CA 94016" -260324,Lightning Charging Cable,1,14.95,10/26/19 18:23,"645 Ridge St, Portland, OR 97035" -260325,20in Monitor,1,109.99,10/03/19 11:08,"416 Adams St, Boston, MA 02215" -260326,Bose SoundSport Headphones,1,99.99,10/09/19 19:59,"673 Maple St, Los Angeles, CA 90001" -260327,Wired Headphones,1,11.99,10/12/19 05:26,"834 Elm St, Austin, TX 73301" -260328,34in Ultrawide Monitor,1,379.99,10/23/19 13:39,"613 Main St, Austin, TX 73301" -260329,Vareebadd Phone,1,400,10/20/19 13:46,"808 South St, New York City, NY 10001" -260330,USB-C Charging Cable,1,11.95,10/28/19 10:53,"866 1st St, San Francisco, CA 94016" -260331,27in FHD Monitor,1,149.99,10/31/19 11:39,"881 Church St, Atlanta, GA 30301" -260332,27in FHD Monitor,1,149.99,10/25/19 14:02,"718 Lincoln St, Dallas, TX 75001" -260333,Apple Airpods Headphones,1,150,10/31/19 18:19,"615 North St, Portland, OR 97035" -260334,Wired Headphones,1,11.99,10/01/19 21:49,"992 7th St, Los Angeles, CA 90001" -260335,34in Ultrawide Monitor,1,379.99,10/09/19 18:49,"141 Jackson St, Seattle, WA 98101" -260336,AA Batteries (4-pack),1,3.84,10/30/19 17:24,"250 Lincoln St, Portland, OR 97035" -260337,AAA Batteries (4-pack),1,2.99,10/25/19 20:48,"591 Sunset St, Los Angeles, CA 90001" -260338,Lightning Charging Cable,1,14.95,10/12/19 16:21,"813 Spruce St, San Francisco, CA 94016" -260339,USB-C Charging Cable,1,11.95,10/27/19 19:26,"745 Cherry St, Los Angeles, CA 90001" -260340,Wired Headphones,1,11.99,10/08/19 16:26,"138 Hill St, San Francisco, CA 94016" -260341,27in FHD Monitor,1,149.99,10/14/19 17:14,"624 Spruce St, New York City, NY 10001" -260342,Lightning Charging Cable,1,14.95,10/16/19 14:44,"491 Lake St, Portland, OR 97035" -260343,iPhone,1,700,10/12/19 21:45,"404 River St, New York City, NY 10001" -260344,ThinkPad Laptop,1,999.99,10/30/19 08:24,"140 Church St, Seattle, WA 98101" -260345,Bose SoundSport Headphones,1,99.99,10/31/19 18:11,"78 8th St, Portland, OR 97035" -260346,iPhone,1,700,10/30/19 21:28,"328 Meadow St, Boston, MA 02215" -260346,Lightning Charging Cable,1,14.95,10/30/19 21:28,"328 Meadow St, Boston, MA 02215" -260347,Lightning Charging Cable,1,14.95,10/07/19 20:23,"856 Lake St, San Francisco, CA 94016" -260348,Wired Headphones,1,11.99,10/29/19 12:08,"893 13th St, San Francisco, CA 94016" -260349,Bose SoundSport Headphones,1,99.99,10/14/19 19:33,"621 River St, Portland, OR 97035" -260350,AAA Batteries (4-pack),5,2.99,10/04/19 22:03,"185 9th St, Atlanta, GA 30301" -260351,AAA Batteries (4-pack),1,2.99,10/03/19 18:51,"10 Park St, San Francisco, CA 94016" -260352,34in Ultrawide Monitor,1,379.99,10/02/19 11:57,"126 Cherry St, San Francisco, CA 94016" -260353,iPhone,1,700,10/07/19 13:18,"531 Cedar St, San Francisco, CA 94016" -260353,Lightning Charging Cable,1,14.95,10/07/19 13:18,"531 Cedar St, San Francisco, CA 94016" -260354,AA Batteries (4-pack),2,3.84,10/14/19 13:16,"505 Elm St, Seattle, WA 98101" -260355,USB-C Charging Cable,2,11.95,10/26/19 13:38,"500 Walnut St, Los Angeles, CA 90001" -260356,Apple Airpods Headphones,1,150,10/06/19 23:55,"953 Lincoln St, Los Angeles, CA 90001" -260357,Wired Headphones,2,11.99,10/25/19 23:27,"278 Walnut St, San Francisco, CA 94016" -260358,Lightning Charging Cable,2,14.95,10/25/19 19:41,"610 14th St, Portland, OR 97035" -260359,AAA Batteries (4-pack),1,2.99,10/09/19 12:50,"550 2nd St, Los Angeles, CA 90001" -260360,ThinkPad Laptop,1,999.99,10/11/19 19:46,"778 13th St, Austin, TX 73301" -260361,Lightning Charging Cable,1,14.95,10/19/19 21:35,"322 Church St, San Francisco, CA 94016" -260362,Flatscreen TV,1,300,10/10/19 01:12,"966 Adams St, Portland, OR 97035" -260363,27in 4K Gaming Monitor,1,389.99,10/14/19 15:50,"106 Highland St, San Francisco, CA 94016" -260364,Lightning Charging Cable,2,14.95,10/15/19 17:42,"616 8th St, New York City, NY 10001" -260365,Apple Airpods Headphones,1,150,10/14/19 17:41,"124 Chestnut St, Seattle, WA 98101" -260366,AAA Batteries (4-pack),1,2.99,10/24/19 11:43,"471 Dogwood St, San Francisco, CA 94016" -260367,Lightning Charging Cable,1,14.95,10/10/19 13:35,"443 14th St, San Francisco, CA 94016" -260368,USB-C Charging Cable,1,11.95,10/06/19 23:25,"649 Chestnut St, New York City, NY 10001" -260369,Flatscreen TV,1,300,10/30/19 05:25,"401 Spruce St, Seattle, WA 98101" -260370,Bose SoundSport Headphones,1,99.99,10/04/19 11:12,"224 Meadow St, Austin, TX 73301" -260371,34in Ultrawide Monitor,1,379.99,10/03/19 11:08,"163 Hill St, Boston, MA 02215" -260372,Vareebadd Phone,1,400,10/21/19 12:15,"672 Washington St, San Francisco, CA 94016" -260372,Wired Headphones,1,11.99,10/21/19 12:15,"672 Washington St, San Francisco, CA 94016" -260373,AA Batteries (4-pack),1,3.84,10/31/19 08:48,"283 6th St, Boston, MA 02215" -260374,Apple Airpods Headphones,1,150,10/31/19 10:40,"281 Lincoln St, Portland, OR 97035" -260375,ThinkPad Laptop,1,999.99,10/16/19 10:42,"195 14th St, San Francisco, CA 94016" -260376,Macbook Pro Laptop,1,1700,10/07/19 12:01,"444 Park St, Los Angeles, CA 90001" -260377,Bose SoundSport Headphones,1,99.99,10/03/19 09:43,"151 13th St, Seattle, WA 98101" -260378,iPhone,1,700,10/28/19 21:23,"163 Walnut St, New York City, NY 10001" -260379,AAA Batteries (4-pack),1,2.99,10/03/19 16:01,"67 River St, San Francisco, CA 94016" -260380,34in Ultrawide Monitor,1,379.99,10/02/19 20:47,"35 10th St, New York City, NY 10001" -260381,Wired Headphones,1,11.99,10/18/19 12:46,"443 Jackson St, New York City, NY 10001" -260382,Wired Headphones,1,11.99,10/14/19 22:01,"480 9th St, Atlanta, GA 30301" -260383,Lightning Charging Cable,1,14.95,10/27/19 13:55,"911 Washington St, Los Angeles, CA 90001" -260384,USB-C Charging Cable,1,11.95,10/23/19 06:27,"701 Cedar St, Portland, ME 04101" -260385,ThinkPad Laptop,1,999.99,10/09/19 21:46,"539 Johnson St, San Francisco, CA 94016" -260386,Lightning Charging Cable,1,14.95,10/28/19 17:57,"348 Jefferson St, New York City, NY 10001" -260387,AAA Batteries (4-pack),1,2.99,10/24/19 21:28,"738 Ridge St, Austin, TX 73301" -260388,Lightning Charging Cable,1,14.95,10/07/19 15:42,"242 Center St, Boston, MA 02215" -260389,Lightning Charging Cable,1,14.95,10/15/19 12:20,"396 Wilson St, Dallas, TX 75001" -260390,AA Batteries (4-pack),1,3.84,10/25/19 20:12,"855 Church St, Los Angeles, CA 90001" -260391,AA Batteries (4-pack),1,3.84,10/28/19 14:11,"45 Madison St, San Francisco, CA 94016" -260392,Bose SoundSport Headphones,2,99.99,10/18/19 13:58,"809 Church St, San Francisco, CA 94016" -260393,Apple Airpods Headphones,1,150,10/17/19 14:43,"159 Washington St, San Francisco, CA 94016" -260394,AA Batteries (4-pack),1,3.84,10/27/19 13:38,"26 11th St, Atlanta, GA 30301" -260395,AA Batteries (4-pack),3,3.84,10/11/19 13:26,"413 West St, New York City, NY 10001" -260396,Wired Headphones,1,11.99,10/11/19 11:26,"994 Willow St, San Francisco, CA 94016" -260397,34in Ultrawide Monitor,1,379.99,10/18/19 00:45,"11 1st St, Dallas, TX 75001" -260398,ThinkPad Laptop,1,999.99,10/16/19 14:17,"407 14th St, Boston, MA 02215" -260399,Flatscreen TV,1,300,10/31/19 06:33,"985 Cedar St, San Francisco, CA 94016" -260400,27in FHD Monitor,1,149.99,10/15/19 05:36,"689 Center St, San Francisco, CA 94016" -260401,Apple Airpods Headphones,1,150,10/22/19 05:45,"767 Maple St, San Francisco, CA 94016" -260402,USB-C Charging Cable,1,11.95,10/05/19 21:18,"395 9th St, San Francisco, CA 94016" -260403,27in 4K Gaming Monitor,1,389.99,10/15/19 21:14,"744 Sunset St, Atlanta, GA 30301" -260404,Flatscreen TV,1,300,10/24/19 22:12,"937 4th St, San Francisco, CA 94016" -260405,AA Batteries (4-pack),1,3.84,10/25/19 09:25,"769 5th St, Atlanta, GA 30301" -260406,ThinkPad Laptop,1,999.99,10/09/19 23:25,"847 5th St, San Francisco, CA 94016" -260407,27in 4K Gaming Monitor,1,389.99,10/22/19 09:06,"730 Adams St, San Francisco, CA 94016" -260408,USB-C Charging Cable,1,11.95,10/01/19 09:23,"399 8th St, San Francisco, CA 94016" -260409,Macbook Pro Laptop,1,1700,10/17/19 19:33,"499 5th St, San Francisco, CA 94016" -260410,AAA Batteries (4-pack),1,2.99,10/06/19 01:40,"543 9th St, San Francisco, CA 94016" -260411,Wired Headphones,1,11.99,10/05/19 09:59,"576 8th St, Dallas, TX 75001" -260412,Lightning Charging Cable,1,14.95,10/14/19 12:25,"5 Chestnut St, Atlanta, GA 30301" -260413,iPhone,1,700,10/06/19 16:29,"662 West St, Boston, MA 02215" -260414,USB-C Charging Cable,1,11.95,10/27/19 21:41,"866 Spruce St, Seattle, WA 98101" -260415,Lightning Charging Cable,1,14.95,10/02/19 10:50,"325 1st St, San Francisco, CA 94016" -260416,27in FHD Monitor,1,149.99,10/24/19 14:51,"61 Center St, Los Angeles, CA 90001" -260417,Apple Airpods Headphones,1,150,10/14/19 14:17,"34 13th St, Seattle, WA 98101" -260418,Wired Headphones,1,11.99,10/20/19 23:16,"612 Pine St, Los Angeles, CA 90001" -260419,Wired Headphones,1,11.99,10/01/19 23:14,"803 Lincoln St, San Francisco, CA 94016" -260420,USB-C Charging Cable,1,11.95,10/18/19 22:29,"11 Jefferson St, Dallas, TX 75001" -260421,Flatscreen TV,1,300,10/18/19 20:39,"500 7th St, Atlanta, GA 30301" -260422,Macbook Pro Laptop,1,1700,10/31/19 13:11,"650 6th St, Los Angeles, CA 90001" -260423,34in Ultrawide Monitor,1,379.99,10/02/19 10:12,"419 Church St, Los Angeles, CA 90001" -260424,AA Batteries (4-pack),1,3.84,10/28/19 08:54,"671 5th St, Atlanta, GA 30301" -260425,Wired Headphones,2,11.99,10/09/19 16:52,"16 Lincoln St, Boston, MA 02215" -260426,iPhone,1,700,10/26/19 21:57,"164 Dogwood St, Atlanta, GA 30301" -260427,ThinkPad Laptop,1,999.99,10/27/19 22:19,"800 Adams St, San Francisco, CA 94016" -260428,AA Batteries (4-pack),1,3.84,10/19/19 17:09,"130 4th St, Portland, ME 04101" -260429,iPhone,1,700,10/14/19 10:14,"802 7th St, Portland, ME 04101" -260429,Apple Airpods Headphones,1,150,10/14/19 10:14,"802 7th St, Portland, ME 04101" -260430,27in 4K Gaming Monitor,1,389.99,10/08/19 08:35,"801 Chestnut St, Portland, OR 97035" -260431,Flatscreen TV,1,300,10/12/19 13:34,"977 West St, Los Angeles, CA 90001" -260432,Apple Airpods Headphones,1,150,10/24/19 11:29,"259 7th St, Los Angeles, CA 90001" -260433,Apple Airpods Headphones,1,150,10/01/19 09:41,"775 Sunset St, San Francisco, CA 94016" -260434,USB-C Charging Cable,1,11.95,10/16/19 14:46,"313 West St, Seattle, WA 98101" -260435,27in FHD Monitor,1,149.99,10/05/19 20:15,"676 11th St, San Francisco, CA 94016" -260436,AA Batteries (4-pack),1,3.84,10/24/19 22:43,"526 10th St, Dallas, TX 75001" -260437,ThinkPad Laptop,1,999.99,10/24/19 08:33,"100 Elm St, San Francisco, CA 94016" -260438,AA Batteries (4-pack),1,3.84,10/20/19 12:37,"143 4th St, Austin, TX 73301" -260439,USB-C Charging Cable,1,11.95,10/09/19 20:30,"809 13th St, Boston, MA 02215" -260440,Lightning Charging Cable,1,14.95,10/26/19 13:40,"581 6th St, San Francisco, CA 94016" -260441,USB-C Charging Cable,3,11.95,10/17/19 20:35,"559 Spruce St, Los Angeles, CA 90001" -260442,27in 4K Gaming Monitor,1,389.99,10/04/19 23:32,"971 Highland St, New York City, NY 10001" -260443,Wired Headphones,2,11.99,10/25/19 09:22,"8 Cherry St, New York City, NY 10001" -260444,AAA Batteries (4-pack),1,2.99,10/28/19 19:00,"3 Center St, New York City, NY 10001" -260445,AA Batteries (4-pack),1,3.84,10/03/19 11:59,"599 Lakeview St, Boston, MA 02215" -260446,Wired Headphones,1,11.99,10/18/19 22:12,"226 North St, Austin, TX 73301" -260447,Wired Headphones,1,11.99,10/03/19 19:28,"930 Hill St, New York City, NY 10001" -260448,AA Batteries (4-pack),1,3.84,10/05/19 20:29,"648 Pine St, Portland, OR 97035" -260449,Lightning Charging Cable,1,14.95,10/08/19 17:23,"765 Wilson St, Los Angeles, CA 90001" -260450,AAA Batteries (4-pack),1,2.99,10/18/19 09:09,"415 Hickory St, San Francisco, CA 94016" -260451,Vareebadd Phone,1,400,10/17/19 09:25,"441 Madison St, San Francisco, CA 94016" -260451,USB-C Charging Cable,1,11.95,10/17/19 09:25,"441 Madison St, San Francisco, CA 94016" -260452,Bose SoundSport Headphones,1,99.99,10/05/19 00:26,"874 Madison St, Atlanta, GA 30301" -260453,27in 4K Gaming Monitor,1,389.99,10/20/19 15:28,"742 Adams St, San Francisco, CA 94016" -260454,AA Batteries (4-pack),1,3.84,10/29/19 22:45,"153 Lakeview St, San Francisco, CA 94016" -260455,AA Batteries (4-pack),2,3.84,10/15/19 15:10,"718 Dogwood St, San Francisco, CA 94016" -260456,Apple Airpods Headphones,1,150,10/20/19 23:35,"849 4th St, Atlanta, GA 30301" -260457,AAA Batteries (4-pack),1,2.99,10/19/19 14:30,"530 River St, New York City, NY 10001" -260458,Google Phone,1,600,10/18/19 13:59,"9 Jackson St, New York City, NY 10001" -260459,Wired Headphones,1,11.99,10/10/19 21:02,"537 5th St, New York City, NY 10001" -260460,Google Phone,1,600,10/20/19 05:34,"565 11th St, San Francisco, CA 94016" -260461,USB-C Charging Cable,1,11.95,10/29/19 23:35,"730 Elm St, San Francisco, CA 94016" -260462,Wired Headphones,1,11.99,10/04/19 00:10,"502 14th St, San Francisco, CA 94016" -260463,Wired Headphones,1,11.99,10/17/19 10:29,"737 Meadow St, Atlanta, GA 30301" -260464,34in Ultrawide Monitor,1,379.99,10/02/19 12:55,"92 Jefferson St, Seattle, WA 98101" -260465,Bose SoundSport Headphones,1,99.99,10/24/19 12:17,"49 1st St, Boston, MA 02215" -260466,AAA Batteries (4-pack),1,2.99,10/07/19 13:56,"777 Sunset St, Boston, MA 02215" -260467,ThinkPad Laptop,1,999.99,10/19/19 09:37,"658 Pine St, San Francisco, CA 94016" -260468,iPhone,1,700,10/20/19 22:44,"746 Jefferson St, Dallas, TX 75001" -,,,,, -260469,20in Monitor,1,109.99,10/20/19 14:20,"689 Highland St, San Francisco, CA 94016" -260470,Apple Airpods Headphones,1,150,10/20/19 15:07,"11 Wilson St, San Francisco, CA 94016" -260471,Apple Airpods Headphones,1,150,10/09/19 21:04,"736 Spruce St, Austin, TX 73301" -260472,Bose SoundSport Headphones,1,99.99,10/14/19 20:33,"360 12th St, San Francisco, CA 94016" -260473,USB-C Charging Cable,1,11.95,10/08/19 14:04,"970 Sunset St, Boston, MA 02215" -260474,Bose SoundSport Headphones,1,99.99,10/22/19 18:07,"206 Cherry St, San Francisco, CA 94016" -260475,Wired Headphones,1,11.99,10/15/19 21:38,"638 12th St, Boston, MA 02215" -260476,AA Batteries (4-pack),1,3.84,10/05/19 17:03,"896 Jackson St, San Francisco, CA 94016" -260477,AAA Batteries (4-pack),1,2.99,10/29/19 01:06,"71 Chestnut St, Seattle, WA 98101" -260478,34in Ultrawide Monitor,1,379.99,10/08/19 17:47,"693 7th St, New York City, NY 10001" -260479,34in Ultrawide Monitor,1,379.99,10/25/19 19:30,"737 West St, San Francisco, CA 94016" -260480,AA Batteries (4-pack),1,3.84,10/16/19 02:38,"364 10th St, New York City, NY 10001" -260481,Lightning Charging Cable,1,14.95,10/07/19 04:16,"714 2nd St, Dallas, TX 75001" -260482,Apple Airpods Headphones,1,150,10/22/19 17:56,"768 Walnut St, Boston, MA 02215" -260483,Lightning Charging Cable,1,14.95,10/08/19 10:08,"319 14th St, San Francisco, CA 94016" -260484,Wired Headphones,2,11.99,10/26/19 13:09,"366 9th St, Seattle, WA 98101" -260485,Apple Airpods Headphones,1,150,10/16/19 15:46,"258 Hickory St, Boston, MA 02215" -260486,AA Batteries (4-pack),1,3.84,10/13/19 11:22,"592 1st St, Los Angeles, CA 90001" -260487,Lightning Charging Cable,1,14.95,10/28/19 18:00,"861 Cedar St, San Francisco, CA 94016" -260488,20in Monitor,1,109.99,10/17/19 09:42,"562 South St, San Francisco, CA 94016" -260489,AA Batteries (4-pack),2,3.84,10/10/19 16:41,"860 Center St, Los Angeles, CA 90001" -260490,Lightning Charging Cable,1,14.95,10/11/19 12:00,"733 Madison St, New York City, NY 10001" -260491,AA Batteries (4-pack),1,3.84,10/23/19 15:49,"937 Hill St, New York City, NY 10001" -260492,Google Phone,1,600,10/24/19 11:08,"605 Lakeview St, San Francisco, CA 94016" -260493,AAA Batteries (4-pack),1,2.99,10/23/19 07:21,"425 5th St, Los Angeles, CA 90001" -260494,AAA Batteries (4-pack),1,2.99,10/02/19 08:34,"978 4th St, New York City, NY 10001" -260495,Apple Airpods Headphones,1,150,10/07/19 09:15,"377 Hickory St, San Francisco, CA 94016" -260496,AAA Batteries (4-pack),1,2.99,10/22/19 11:26,"761 Washington St, Los Angeles, CA 90001" -260497,AA Batteries (4-pack),3,3.84,10/07/19 14:01,"12 Spruce St, New York City, NY 10001" -260498,Lightning Charging Cable,1,14.95,10/14/19 15:01,"945 Elm St, Boston, MA 02215" -260499,Google Phone,1,600,10/25/19 19:09,"521 11th St, San Francisco, CA 94016" -260500,Bose SoundSport Headphones,1,99.99,10/24/19 14:11,"8 Hill St, Dallas, TX 75001" -260501,Google Phone,1,600,10/30/19 23:12,"155 South St, Dallas, TX 75001" -260501,USB-C Charging Cable,1,11.95,10/30/19 23:12,"155 South St, Dallas, TX 75001" -260502,AAA Batteries (4-pack),1,2.99,10/19/19 21:22,"586 Center St, San Francisco, CA 94016" -260503,AAA Batteries (4-pack),1,2.99,10/13/19 19:29,"152 Cedar St, Seattle, WA 98101" -260504,Lightning Charging Cable,2,14.95,10/22/19 19:39,"306 Lakeview St, Los Angeles, CA 90001" -260505,27in FHD Monitor,1,149.99,10/12/19 11:49,"508 Johnson St, New York City, NY 10001" -260506,Lightning Charging Cable,1,14.95,10/06/19 11:23,"632 Spruce St, San Francisco, CA 94016" -260507,Bose SoundSport Headphones,1,99.99,10/13/19 12:14,"485 Adams St, Seattle, WA 98101" -260508,20in Monitor,1,109.99,10/23/19 14:00,"999 Main St, San Francisco, CA 94016" -260509,Apple Airpods Headphones,1,150,10/22/19 16:43,"504 Park St, Boston, MA 02215" -260510,Lightning Charging Cable,1,14.95,10/08/19 15:52,"728 Wilson St, Atlanta, GA 30301" -260511,iPhone,1,700,10/24/19 13:48,"224 7th St, Atlanta, GA 30301" -260512,Wired Headphones,1,11.99,10/20/19 10:20,"68 Cedar St, San Francisco, CA 94016" -260513,Macbook Pro Laptop,1,1700,10/12/19 08:45,"311 4th St, Seattle, WA 98101" -260514,Lightning Charging Cable,1,14.95,10/18/19 10:49,"464 River St, San Francisco, CA 94016" -260515,iPhone,1,700,10/17/19 22:41,"340 12th St, New York City, NY 10001" -260516,USB-C Charging Cable,1,11.95,10/16/19 12:00,"312 13th St, San Francisco, CA 94016" -260517,AAA Batteries (4-pack),2,2.99,10/29/19 17:54,"881 Cherry St, Dallas, TX 75001" -260518,AA Batteries (4-pack),1,3.84,10/13/19 20:26,"673 Maple St, New York City, NY 10001" -260519,27in FHD Monitor,1,149.99,10/27/19 13:20,"151 Hill St, San Francisco, CA 94016" -260520,Apple Airpods Headphones,1,150,10/11/19 15:14,"480 11th St, Los Angeles, CA 90001" -260521,Wired Headphones,1,11.99,10/31/19 23:36,"727 2nd St, Los Angeles, CA 90001" -260522,AAA Batteries (4-pack),3,2.99,10/05/19 23:07,"154 Ridge St, Portland, OR 97035" -260523,20in Monitor,1,109.99,10/06/19 10:52,"238 13th St, Seattle, WA 98101" -260524,AA Batteries (4-pack),1,3.84,10/24/19 18:57,"911 Cherry St, Dallas, TX 75001" -260525,Lightning Charging Cable,1,14.95,10/14/19 18:08,"416 Walnut St, New York City, NY 10001" -260526,AA Batteries (4-pack),1,3.84,10/30/19 09:54,"481 Willow St, San Francisco, CA 94016" -260526,Bose SoundSport Headphones,1,99.99,10/30/19 09:54,"481 Willow St, San Francisco, CA 94016" -260527,Wired Headphones,1,11.99,10/02/19 10:24,"229 Willow St, New York City, NY 10001" -260528,AAA Batteries (4-pack),2,2.99,10/06/19 21:54,"777 14th St, Austin, TX 73301" -260529,Bose SoundSport Headphones,1,99.99,10/22/19 11:27,"480 5th St, Portland, ME 04101" -260530,AAA Batteries (4-pack),1,2.99,10/02/19 21:55,"170 1st St, San Francisco, CA 94016" -260531,Wired Headphones,1,11.99,10/06/19 19:51,"719 Maple St, Boston, MA 02215" -260532,27in FHD Monitor,1,149.99,10/24/19 10:34,"721 2nd St, Boston, MA 02215" -260533,Wired Headphones,2,11.99,10/04/19 15:53,"187 Chestnut St, Seattle, WA 98101" -260534,Wired Headphones,1,11.99,10/26/19 23:26,"932 Cedar St, Boston, MA 02215" -260535,Lightning Charging Cable,1,14.95,10/05/19 21:45,"632 Adams St, New York City, NY 10001" -260536,Lightning Charging Cable,1,14.95,10/31/19 19:46,"260 Washington St, Boston, MA 02215" -260537,AAA Batteries (4-pack),1,2.99,10/02/19 17:46,"802 1st St, San Francisco, CA 94016" -260538,34in Ultrawide Monitor,1,379.99,10/11/19 10:38,"813 South St, Dallas, TX 75001" -260539,Wired Headphones,1,11.99,10/09/19 13:18,"451 North St, Portland, OR 97035" -260540,27in 4K Gaming Monitor,1,389.99,10/25/19 18:53,"136 12th St, Portland, OR 97035" -260541,AA Batteries (4-pack),1,3.84,10/12/19 09:32,"571 Hill St, San Francisco, CA 94016" -260542,Bose SoundSport Headphones,1,99.99,10/13/19 15:56,"926 River St, San Francisco, CA 94016" -260543,USB-C Charging Cable,2,11.95,10/14/19 09:52,"626 Elm St, Los Angeles, CA 90001" -260544,20in Monitor,1,109.99,10/23/19 13:52,"384 Lincoln St, Atlanta, GA 30301" -260545,Macbook Pro Laptop,1,1700,10/06/19 18:31,"50 Lake St, Boston, MA 02215" -260546,34in Ultrawide Monitor,1,379.99,10/06/19 20:54,"645 Johnson St, Atlanta, GA 30301" -260547,Wired Headphones,1,11.99,10/18/19 13:31,"881 11th St, Austin, TX 73301" -260548,Bose SoundSport Headphones,1,99.99,10/15/19 14:04,"888 Cherry St, Austin, TX 73301" -260549,AA Batteries (4-pack),1,3.84,10/16/19 15:03,"424 13th St, San Francisco, CA 94016" -260550,Vareebadd Phone,1,400,10/23/19 21:45,"515 Madison St, San Francisco, CA 94016" -260550,Wired Headphones,1,11.99,10/23/19 21:45,"515 Madison St, San Francisco, CA 94016" -260551,27in 4K Gaming Monitor,1,389.99,10/19/19 09:06,"475 Church St, Austin, TX 73301" -260552,Apple Airpods Headphones,1,150,10/10/19 10:55,"580 Johnson St, Boston, MA 02215" -260553,Macbook Pro Laptop,1,1700,10/21/19 17:36,"997 North St, San Francisco, CA 94016" -260554,Wired Headphones,2,11.99,10/17/19 21:02,"551 Chestnut St, San Francisco, CA 94016" -260555,20in Monitor,1,109.99,10/28/19 07:36,"601 Jefferson St, San Francisco, CA 94016" -260556,AAA Batteries (4-pack),2,2.99,10/14/19 01:34,"143 Forest St, New York City, NY 10001" -260557,Wired Headphones,1,11.99,10/15/19 13:47,"750 Washington St, San Francisco, CA 94016" -260558,USB-C Charging Cable,2,11.95,10/07/19 07:20,"486 13th St, San Francisco, CA 94016" -260559,AA Batteries (4-pack),2,3.84,10/23/19 20:41,"60 Adams St, Boston, MA 02215" -260560,AAA Batteries (4-pack),1,2.99,10/24/19 15:17,"382 6th St, New York City, NY 10001" -260560,Lightning Charging Cable,1,14.95,10/24/19 15:17,"382 6th St, New York City, NY 10001" -260561,AA Batteries (4-pack),1,3.84,10/02/19 11:15,"356 Jefferson St, Dallas, TX 75001" -260562,27in FHD Monitor,1,149.99,10/16/19 23:02,"773 Johnson St, Dallas, TX 75001" -260563,Lightning Charging Cable,1,14.95,10/28/19 15:08,"10 Main St, Los Angeles, CA 90001" -260564,Wired Headphones,2,11.99,10/06/19 15:07,"246 Ridge St, Los Angeles, CA 90001" -260565,Apple Airpods Headphones,1,150,10/26/19 06:52,"564 Adams St, Portland, ME 04101" -260566,AAA Batteries (4-pack),1,2.99,10/23/19 16:49,"266 Ridge St, Los Angeles, CA 90001" -260567,27in FHD Monitor,1,149.99,10/07/19 15:00,"530 Walnut St, Los Angeles, CA 90001" -260568,20in Monitor,1,109.99,10/03/19 20:02,"448 2nd St, Dallas, TX 75001" -260569,Macbook Pro Laptop,1,1700,10/08/19 19:49,"117 South St, San Francisco, CA 94016" -260570,Bose SoundSport Headphones,1,99.99,10/21/19 09:25,"43 8th St, San Francisco, CA 94016" -260571,Apple Airpods Headphones,1,150,10/03/19 21:19,"539 12th St, Los Angeles, CA 90001" -260572,AAA Batteries (4-pack),1,2.99,10/08/19 20:29,"439 Lakeview St, Los Angeles, CA 90001" -260573,Flatscreen TV,1,300,10/08/19 22:57,"683 13th St, Atlanta, GA 30301" -260574,Lightning Charging Cable,1,14.95,10/09/19 17:09,"332 Ridge St, San Francisco, CA 94016" -260575,USB-C Charging Cable,1,11.95,10/12/19 15:34,"49 14th St, San Francisco, CA 94016" -260576,Wired Headphones,1,11.99,10/22/19 20:08,"896 14th St, Portland, OR 97035" -260577,Bose SoundSport Headphones,1,99.99,10/25/19 20:18,"358 Meadow St, New York City, NY 10001" -260578,USB-C Charging Cable,1,11.95,10/08/19 12:33,"853 North St, Seattle, WA 98101" -260579,Google Phone,1,600,10/14/19 22:40,"245 Adams St, Los Angeles, CA 90001" -260579,Apple Airpods Headphones,1,150,10/14/19 22:40,"245 Adams St, Los Angeles, CA 90001" -260580,Lightning Charging Cable,1,14.95,10/06/19 06:42,"838 Adams St, Atlanta, GA 30301" -260581,AAA Batteries (4-pack),1,2.99,10/28/19 18:10,"532 Washington St, San Francisco, CA 94016" -260582,AAA Batteries (4-pack),1,2.99,10/20/19 16:38,"102 Main St, New York City, NY 10001" -260583,Wired Headphones,1,11.99,10/27/19 17:42,"647 Jefferson St, New York City, NY 10001" -260584,AAA Batteries (4-pack),1,2.99,10/18/19 22:44,"262 Spruce St, Los Angeles, CA 90001" -260585,Lightning Charging Cable,1,14.95,10/17/19 23:22,"623 Johnson St, Boston, MA 02215" -260586,34in Ultrawide Monitor,1,379.99,10/14/19 08:33,"873 Elm St, Boston, MA 02215" -260587,Lightning Charging Cable,1,14.95,10/10/19 12:33,"297 South St, San Francisco, CA 94016" -260588,27in FHD Monitor,1,149.99,10/18/19 02:19,"485 6th St, New York City, NY 10001" -260589,Lightning Charging Cable,1,14.95,10/18/19 11:25,"716 1st St, San Francisco, CA 94016" -260590,Macbook Pro Laptop,1,1700,10/18/19 07:57,"506 7th St, San Francisco, CA 94016" -260591,ThinkPad Laptop,1,999.99,10/14/19 05:35,"599 Washington St, San Francisco, CA 94016" -260592,Bose SoundSport Headphones,1,99.99,10/01/19 11:03,"820 1st St, Austin, TX 73301" -260593,Bose SoundSport Headphones,1,99.99,10/24/19 11:36,"731 Cherry St, New York City, NY 10001" -260594,Apple Airpods Headphones,1,150,10/30/19 14:30,"457 Cedar St, Seattle, WA 98101" -260595,Lightning Charging Cable,1,14.95,10/19/19 22:51,"189 River St, Boston, MA 02215" -260596,Wired Headphones,1,11.99,10/07/19 02:26,"149 11th St, San Francisco, CA 94016" -260597,USB-C Charging Cable,1,11.95,10/18/19 15:27,"720 North St, San Francisco, CA 94016" -260598,Wired Headphones,1,11.99,10/01/19 19:15,"564 Washington St, San Francisco, CA 94016" -260599,27in 4K Gaming Monitor,1,389.99,10/27/19 16:44,"833 Park St, San Francisco, CA 94016" -260600,Wired Headphones,1,11.99,10/29/19 16:09,"763 Forest St, San Francisco, CA 94016" -260601,Google Phone,1,600,10/30/19 11:24,"108 North St, Portland, OR 97035" -260602,USB-C Charging Cable,1,11.95,10/12/19 21:10,"324 5th St, San Francisco, CA 94016" -260603,27in 4K Gaming Monitor,1,389.99,10/23/19 04:11,"532 Spruce St, San Francisco, CA 94016" -260604,AAA Batteries (4-pack),1,2.99,10/24/19 19:26,"262 Johnson St, Seattle, WA 98101" -260605,Apple Airpods Headphones,1,150,10/01/19 12:22,"117 Lakeview St, San Francisco, CA 94016" -260606,Wired Headphones,1,11.99,10/31/19 22:31,"807 Cedar St, San Francisco, CA 94016" -260607,Bose SoundSport Headphones,1,99.99,10/10/19 12:14,"542 South St, New York City, NY 10001" -260608,AA Batteries (4-pack),1,3.84,10/07/19 08:51,"522 Cherry St, Dallas, TX 75001" -260609,Apple Airpods Headphones,1,150,10/15/19 07:52,"808 Hill St, Boston, MA 02215" -260610,Wired Headphones,1,11.99,10/02/19 22:08,"548 Cherry St, Dallas, TX 75001" -260611,USB-C Charging Cable,2,11.95,10/25/19 07:39,"157 Walnut St, San Francisco, CA 94016" -260612,AAA Batteries (4-pack),4,2.99,10/31/19 13:48,"805 4th St, New York City, NY 10001" -260613,Apple Airpods Headphones,1,150,10/09/19 14:36,"968 Main St, Boston, MA 02215" -260614,USB-C Charging Cable,1,11.95,10/30/19 01:10,"427 Forest St, San Francisco, CA 94016" -260615,Lightning Charging Cable,1,14.95,10/07/19 16:52,"254 1st St, San Francisco, CA 94016" -260616,Apple Airpods Headphones,1,150,10/12/19 19:13,"519 Jackson St, Los Angeles, CA 90001" -260617,27in 4K Gaming Monitor,1,389.99,10/11/19 02:16,"136 Walnut St, Los Angeles, CA 90001" -260618,ThinkPad Laptop,1,999.99,10/13/19 09:05,"950 Park St, San Francisco, CA 94016" -260619,USB-C Charging Cable,1,11.95,10/09/19 09:50,"15 South St, San Francisco, CA 94016" -260620,iPhone,1,700,10/04/19 17:16,"103 Jefferson St, San Francisco, CA 94016" -260620,LG Washing Machine,1,600.0,10/04/19 17:16,"103 Jefferson St, San Francisco, CA 94016" -260621,34in Ultrawide Monitor,1,379.99,10/21/19 09:56,"812 Hickory St, Austin, TX 73301" -260622,Flatscreen TV,1,300,10/02/19 12:23,"823 West St, Portland, OR 97035" -260623,Bose SoundSport Headphones,1,99.99,10/24/19 14:01,"248 14th St, Boston, MA 02215" -260624,AA Batteries (4-pack),1,3.84,10/23/19 22:55,"833 Lincoln St, San Francisco, CA 94016" -260624,Macbook Pro Laptop,1,1700,10/23/19 22:55,"833 Lincoln St, San Francisco, CA 94016" -260625,34in Ultrawide Monitor,1,379.99,10/10/19 21:18,"24 River St, Dallas, TX 75001" -260626,Apple Airpods Headphones,1,150,10/29/19 15:03,"697 8th St, Dallas, TX 75001" -260627,AA Batteries (4-pack),1,3.84,10/18/19 15:44,"622 Meadow St, Boston, MA 02215" -260628,Wired Headphones,1,11.99,10/02/19 11:38,"836 14th St, Austin, TX 73301" -260629,AA Batteries (4-pack),1,3.84,10/20/19 19:45,"560 Lakeview St, Boston, MA 02215" -260630,Google Phone,1,600,10/24/19 13:57,"686 Jackson St, Seattle, WA 98101" -260631,AAA Batteries (4-pack),2,2.99,10/16/19 23:29,"828 Maple St, Dallas, TX 75001" -260632,iPhone,1,700,10/26/19 20:18,"39 Ridge St, New York City, NY 10001" -260633,34in Ultrawide Monitor,1,379.99,10/27/19 17:39,"112 Jackson St, Austin, TX 73301" -260634,Apple Airpods Headphones,1,150,10/07/19 14:34,"131 Church St, New York City, NY 10001" -260635,Apple Airpods Headphones,1,150,10/19/19 17:38,"37 Lincoln St, Los Angeles, CA 90001" -260636,AAA Batteries (4-pack),1,2.99,10/29/19 15:05,"265 4th St, New York City, NY 10001" -260637,27in 4K Gaming Monitor,1,389.99,10/01/19 09:23,"768 Hill St, Dallas, TX 75001" -260638,Wired Headphones,1,11.99,10/08/19 15:29,"352 Cedar St, Austin, TX 73301" -260639,20in Monitor,1,109.99,10/18/19 07:33,"636 Elm St, Los Angeles, CA 90001" -260640,Lightning Charging Cable,1,14.95,10/19/19 14:10,"45 West St, San Francisco, CA 94016" -260641,27in 4K Gaming Monitor,1,389.99,10/24/19 11:40,"891 Forest St, New York City, NY 10001" -260642,Wired Headphones,1,11.99,10/18/19 09:51,"158 Maple St, New York City, NY 10001" -260643,Macbook Pro Laptop,1,1700,10/05/19 19:08,"621 10th St, San Francisco, CA 94016" -260644,AA Batteries (4-pack),1,3.84,10/28/19 18:48,"125 River St, New York City, NY 10001" -260645,AAA Batteries (4-pack),1,2.99,10/12/19 00:09,"966 Madison St, Dallas, TX 75001" -260646,Vareebadd Phone,1,400,10/24/19 11:05,"84 Center St, Boston, MA 02215" -260647,Bose SoundSport Headphones,1,99.99,10/10/19 08:20,"306 11th St, Portland, ME 04101" -260648,AA Batteries (4-pack),1,3.84,10/19/19 22:49,"546 10th St, Atlanta, GA 30301" -260649,Bose SoundSport Headphones,1,99.99,10/04/19 11:28,"980 Jefferson St, Los Angeles, CA 90001" -260650,AA Batteries (4-pack),1,3.84,10/08/19 13:38,"343 Meadow St, New York City, NY 10001" -260651,AAA Batteries (4-pack),1,2.99,10/18/19 20:24,"685 Center St, Atlanta, GA 30301" -260652,AAA Batteries (4-pack),1,2.99,10/06/19 19:48,"90 Elm St, Portland, ME 04101" -260653,Wired Headphones,1,11.99,10/12/19 19:37,"212 Cedar St, San Francisco, CA 94016" -260654,AAA Batteries (4-pack),1,2.99,10/24/19 21:26,"387 10th St, Atlanta, GA 30301" -260655,Lightning Charging Cable,1,14.95,10/29/19 11:33,"680 Center St, New York City, NY 10001" -260656,Wired Headphones,2,11.99,10/07/19 14:23,"671 8th St, New York City, NY 10001" -260657,AA Batteries (4-pack),1,3.84,10/18/19 18:30,"945 11th St, San Francisco, CA 94016" -260658,Bose SoundSport Headphones,1,99.99,10/01/19 22:20,"444 5th St, Dallas, TX 75001" -260659,USB-C Charging Cable,1,11.95,10/24/19 11:16,"445 Washington St, San Francisco, CA 94016" -260660,Bose SoundSport Headphones,1,99.99,10/19/19 22:20,"237 Cedar St, Los Angeles, CA 90001" -260661,Wired Headphones,1,11.99,10/12/19 13:44,"376 1st St, Dallas, TX 75001" -260662,27in FHD Monitor,1,149.99,10/27/19 22:14,"381 Johnson St, Atlanta, GA 30301" -260663,Lightning Charging Cable,1,14.95,10/29/19 13:57,"687 4th St, Atlanta, GA 30301" -260664,Apple Airpods Headphones,1,150,10/08/19 21:22,"748 Walnut St, San Francisco, CA 94016" -260665,Wired Headphones,2,11.99,10/16/19 08:31,"865 7th St, Portland, OR 97035" -260666,Apple Airpods Headphones,1,150,10/11/19 11:04,"316 12th St, New York City, NY 10001" -260667,AA Batteries (4-pack),1,3.84,10/17/19 17:00,"448 South St, Portland, OR 97035" -260668,Lightning Charging Cable,1,14.95,10/18/19 14:45,"321 13th St, Los Angeles, CA 90001" -260669,Google Phone,1,600,10/16/19 12:55,"176 2nd St, Los Angeles, CA 90001" -260670,USB-C Charging Cable,1,11.95,10/27/19 20:20,"688 Jefferson St, San Francisco, CA 94016" -260671,34in Ultrawide Monitor,1,379.99,10/30/19 10:21,"663 Meadow St, New York City, NY 10001" -260672,Bose SoundSport Headphones,1,99.99,10/13/19 09:29,"785 Forest St, Los Angeles, CA 90001" -260673,Apple Airpods Headphones,1,150,10/06/19 21:39,"35 9th St, New York City, NY 10001" -260674,AAA Batteries (4-pack),2,2.99,10/16/19 16:29,"581 Pine St, Portland, OR 97035" -260675,Lightning Charging Cable,1,14.95,10/17/19 09:45,"475 Sunset St, Los Angeles, CA 90001" -260676,Macbook Pro Laptop,1,1700,10/28/19 13:57,"290 Lincoln St, Atlanta, GA 30301" -260676,USB-C Charging Cable,1,11.95,10/28/19 13:57,"290 Lincoln St, Atlanta, GA 30301" -260677,Wired Headphones,2,11.99,10/18/19 10:27,"595 2nd St, Dallas, TX 75001" -260678,USB-C Charging Cable,2,11.95,10/11/19 12:22,"696 Lincoln St, San Francisco, CA 94016" -260679,Bose SoundSport Headphones,1,99.99,10/31/19 14:41,"973 9th St, New York City, NY 10001" -260680,Macbook Pro Laptop,1,1700,10/15/19 12:46,"344 Lake St, San Francisco, CA 94016" -260681,USB-C Charging Cable,1,11.95,10/09/19 14:19,"281 Lake St, Boston, MA 02215" -260682,Lightning Charging Cable,1,14.95,10/28/19 08:31,"747 Cedar St, San Francisco, CA 94016" -260683,34in Ultrawide Monitor,1,379.99,10/04/19 06:31,"480 West St, Austin, TX 73301" -260684,Lightning Charging Cable,1,14.95,10/16/19 21:10,"708 Sunset St, San Francisco, CA 94016" -260685,Lightning Charging Cable,1,14.95,10/05/19 13:08,"198 Highland St, New York City, NY 10001" -260686,34in Ultrawide Monitor,1,379.99,10/18/19 09:33,"811 9th St, San Francisco, CA 94016" -,,,,, -260687,AA Batteries (4-pack),2,3.84,10/16/19 14:39,"337 Elm St, San Francisco, CA 94016" -260688,AAA Batteries (4-pack),1,2.99,10/19/19 12:49,"547 5th St, Austin, TX 73301" -260689,Apple Airpods Headphones,1,150,10/09/19 09:49,"317 8th St, Los Angeles, CA 90001" -260690,Lightning Charging Cable,1,14.95,10/20/19 07:35,"75 Adams St, New York City, NY 10001" -260691,Wired Headphones,1,11.99,10/28/19 11:57,"69 Park St, Dallas, TX 75001" -260692,Apple Airpods Headphones,2,150,10/15/19 20:46,"945 Elm St, San Francisco, CA 94016" -260693,Bose SoundSport Headphones,1,99.99,10/03/19 22:45,"999 12th St, Los Angeles, CA 90001" -260694,Lightning Charging Cable,1,14.95,10/20/19 14:02,"37 Jackson St, Dallas, TX 75001" -260695,AA Batteries (4-pack),1,3.84,10/15/19 19:26,"908 Lincoln St, Seattle, WA 98101" -260695,Wired Headphones,1,11.99,10/15/19 19:26,"908 Lincoln St, Seattle, WA 98101" -260696,27in 4K Gaming Monitor,1,389.99,10/26/19 12:12,"410 7th St, Dallas, TX 75001" -260697,Google Phone,1,600,10/14/19 16:05,"195 Maple St, Atlanta, GA 30301" -260697,Wired Headphones,2,11.99,10/14/19 16:05,"195 Maple St, Atlanta, GA 30301" -260698,Bose SoundSport Headphones,1,99.99,10/13/19 11:22,"459 Dogwood St, Los Angeles, CA 90001" -260699,AA Batteries (4-pack),1,3.84,10/30/19 16:44,"261 7th St, Boston, MA 02215" -260699,Wired Headphones,1,11.99,10/30/19 16:44,"261 7th St, Boston, MA 02215" -260700,Bose SoundSport Headphones,1,99.99,10/07/19 12:47,"864 Elm St, San Francisco, CA 94016" -260701,Wired Headphones,2,11.99,10/11/19 16:10,"256 South St, Atlanta, GA 30301" -260702,Wired Headphones,1,11.99,10/10/19 13:00,"870 West St, Austin, TX 73301" -260703,USB-C Charging Cable,1,11.95,10/06/19 18:56,"392 Center St, Portland, OR 97035" -260704,27in FHD Monitor,1,149.99,10/17/19 05:23,"304 River St, San Francisco, CA 94016" -260705,Flatscreen TV,1,300,10/29/19 15:29,"57 Highland St, New York City, NY 10001" -260706,AAA Batteries (4-pack),1,2.99,10/24/19 15:14,"479 Willow St, Dallas, TX 75001" -260707,AA Batteries (4-pack),1,3.84,10/09/19 15:45,"134 Walnut St, New York City, NY 10001" -260708,AAA Batteries (4-pack),1,2.99,10/06/19 20:00,"55 West St, Boston, MA 02215" -260709,Wired Headphones,1,11.99,10/30/19 16:44,"537 Center St, Los Angeles, CA 90001" -260710,27in 4K Gaming Monitor,1,389.99,10/16/19 17:55,"107 Hill St, New York City, NY 10001" -260711,Bose SoundSport Headphones,1,99.99,10/22/19 12:22,"38 6th St, Portland, ME 04101" -260712,Lightning Charging Cable,1,14.95,10/25/19 06:15,"292 Ridge St, Los Angeles, CA 90001" -260713,27in 4K Gaming Monitor,1,389.99,10/09/19 21:08,"380 6th St, Seattle, WA 98101" -260714,34in Ultrawide Monitor,1,379.99,10/31/19 14:19,"791 8th St, Atlanta, GA 30301" -260715,AAA Batteries (4-pack),2,2.99,10/22/19 10:48,"182 7th St, Los Angeles, CA 90001" -260716,Google Phone,1,600,10/13/19 08:48,"110 Chestnut St, San Francisco, CA 94016" -260717,34in Ultrawide Monitor,1,379.99,10/24/19 18:15,"12 Park St, New York City, NY 10001" -260718,Wired Headphones,1,11.99,10/19/19 20:58,"205 Elm St, Atlanta, GA 30301" -260719,Macbook Pro Laptop,1,1700,10/10/19 17:34,"837 Wilson St, Los Angeles, CA 90001" -260720,27in FHD Monitor,1,149.99,10/02/19 09:06,"329 Sunset St, Los Angeles, CA 90001" -260721,ThinkPad Laptop,1,999.99,10/01/19 13:00,"11 Park St, San Francisco, CA 94016" -260722,AAA Batteries (4-pack),1,2.99,10/09/19 21:47,"984 Lakeview St, Boston, MA 02215" -260723,AA Batteries (4-pack),1,3.84,10/15/19 20:29,"496 Ridge St, Boston, MA 02215" -260724,Wired Headphones,1,11.99,10/07/19 10:01,"586 Pine St, Boston, MA 02215" -260725,USB-C Charging Cable,1,11.95,10/10/19 11:28,"634 9th St, Atlanta, GA 30301" -260726,Lightning Charging Cable,2,14.95,10/08/19 15:04,"776 Park St, Dallas, TX 75001" -260727,Lightning Charging Cable,1,14.95,10/17/19 07:53,"920 Chestnut St, Atlanta, GA 30301" -260728,ThinkPad Laptop,1,999.99,10/17/19 21:08,"683 Meadow St, San Francisco, CA 94016" -260729,Bose SoundSport Headphones,1,99.99,10/10/19 09:34,"587 7th St, Boston, MA 02215" -260730,USB-C Charging Cable,1,11.95,10/17/19 17:23,"217 Adams St, Dallas, TX 75001" -260731,Lightning Charging Cable,1,14.95,10/08/19 08:09,"112 Main St, Atlanta, GA 30301" -260732,USB-C Charging Cable,1,11.95,10/12/19 19:46,"319 West St, New York City, NY 10001" -260733,AA Batteries (4-pack),1,3.84,10/01/19 18:38,"18 Wilson St, Los Angeles, CA 90001" -260734,Wired Headphones,1,11.99,10/05/19 07:35,"7 Lakeview St, Dallas, TX 75001" -260735,Apple Airpods Headphones,1,150,10/18/19 13:08,"443 10th St, Atlanta, GA 30301" -260736,Lightning Charging Cable,1,14.95,10/01/19 18:31,"453 River St, New York City, NY 10001" -260737,USB-C Charging Cable,1,11.95,10/06/19 12:43,"356 Hill St, Dallas, TX 75001" -260738,AAA Batteries (4-pack),1,2.99,10/22/19 09:44,"928 2nd St, New York City, NY 10001" -260739,AAA Batteries (4-pack),1,2.99,10/09/19 23:06,"372 9th St, Seattle, WA 98101" -260739,AAA Batteries (4-pack),1,2.99,10/09/19 23:06,"372 9th St, Seattle, WA 98101" -260740,Wired Headphones,1,11.99,10/02/19 13:08,"110 Dogwood St, San Francisco, CA 94016" -260741,Bose SoundSport Headphones,1,99.99,10/07/19 21:36,"106 12th St, Los Angeles, CA 90001" -260742,Vareebadd Phone,1,400,10/20/19 08:57,"411 Pine St, Boston, MA 02215" -260743,USB-C Charging Cable,1,11.95,10/02/19 13:05,"538 Cherry St, Boston, MA 02215" -260743,27in FHD Monitor,1,149.99,10/02/19 13:05,"538 Cherry St, Boston, MA 02215" -260744,Flatscreen TV,1,300,10/07/19 17:27,"261 Spruce St, Atlanta, GA 30301" -260745,USB-C Charging Cable,1,11.95,10/29/19 14:52,"984 Walnut St, New York City, NY 10001" -260746,USB-C Charging Cable,1,11.95,10/29/19 12:30,"710 Pine St, Dallas, TX 75001" -260747,AA Batteries (4-pack),1,3.84,10/27/19 20:16,"727 Cedar St, Dallas, TX 75001" -260748,USB-C Charging Cable,1,11.95,10/27/19 23:57,"923 Madison St, Boston, MA 02215" -260749,Lightning Charging Cable,1,14.95,10/12/19 14:05,"74 7th St, Atlanta, GA 30301" -260750,34in Ultrawide Monitor,1,379.99,10/16/19 19:24,"871 Lincoln St, Portland, OR 97035" -260751,Lightning Charging Cable,1,14.95,10/11/19 19:13,"453 Main St, Dallas, TX 75001" -260752,USB-C Charging Cable,2,11.95,10/07/19 08:18,"36 Park St, Atlanta, GA 30301" -260752,Flatscreen TV,1,300,10/07/19 08:18,"36 Park St, Atlanta, GA 30301" -260753,AA Batteries (4-pack),1,3.84,10/12/19 21:27,"550 Park St, Los Angeles, CA 90001" -260754,AA Batteries (4-pack),1,3.84,10/01/19 14:53,"674 Willow St, San Francisco, CA 94016" -260755,Lightning Charging Cable,1,14.95,10/14/19 20:09,"613 Center St, Portland, OR 97035" -260756,Lightning Charging Cable,1,14.95,10/09/19 18:26,"293 Cherry St, San Francisco, CA 94016" -260757,AA Batteries (4-pack),2,3.84,10/20/19 18:58,"348 1st St, Boston, MA 02215" -260758,AA Batteries (4-pack),2,3.84,10/13/19 10:52,"224 12th St, Dallas, TX 75001" -260759,Vareebadd Phone,1,400,10/26/19 09:07,"364 West St, Seattle, WA 98101" -260759,USB-C Charging Cable,2,11.95,10/26/19 09:07,"364 West St, Seattle, WA 98101" -260760,USB-C Charging Cable,1,11.95,10/17/19 21:39,"692 South St, Dallas, TX 75001" -260761,Google Phone,1,600,10/14/19 02:25,"38 Meadow St, Seattle, WA 98101" -260762,Apple Airpods Headphones,1,150,10/13/19 20:30,"600 Maple St, New York City, NY 10001" -260763,iPhone,1,700,10/01/19 11:59,"951 West St, Dallas, TX 75001" -260763,Apple Airpods Headphones,1,150,10/01/19 11:59,"951 West St, Dallas, TX 75001" -260764,AA Batteries (4-pack),1,3.84,10/26/19 15:59,"714 Cedar St, New York City, NY 10001" -260765,Lightning Charging Cable,1,14.95,10/08/19 22:26,"481 Lakeview St, Boston, MA 02215" -260766,27in FHD Monitor,1,149.99,10/26/19 04:54,"954 Lincoln St, Boston, MA 02215" -260767,AA Batteries (4-pack),2,3.84,10/17/19 16:33,"651 Maple St, New York City, NY 10001" -260768,Vareebadd Phone,1,400,10/07/19 08:49,"530 8th St, Los Angeles, CA 90001" -260769,Apple Airpods Headphones,1,150,10/28/19 09:47,"906 2nd St, San Francisco, CA 94016" -260770,Apple Airpods Headphones,1,150,10/13/19 18:36,"17 Spruce St, Los Angeles, CA 90001" -260771,20in Monitor,1,109.99,10/03/19 18:37,"748 13th St, New York City, NY 10001" -260772,iPhone,1,700,10/27/19 15:41,"508 Jackson St, Portland, OR 97035" -260772,Lightning Charging Cable,1,14.95,10/27/19 15:41,"508 Jackson St, Portland, OR 97035" -260773,AAA Batteries (4-pack),1,2.99,10/18/19 12:45,"347 12th St, Seattle, WA 98101" -260774,Bose SoundSport Headphones,1,99.99,10/27/19 18:25,"311 Chestnut St, Seattle, WA 98101" -260775,Wired Headphones,1,11.99,10/30/19 12:19,"302 Spruce St, Atlanta, GA 30301" -260776,AAA Batteries (4-pack),1,2.99,10/11/19 08:31,"183 Center St, San Francisco, CA 94016" -260777,Lightning Charging Cable,1,14.95,10/19/19 22:37,"733 Ridge St, Boston, MA 02215" -260778,AA Batteries (4-pack),1,3.84,10/30/19 00:47,"156 14th St, Seattle, WA 98101" -260779,Bose SoundSport Headphones,1,99.99,10/15/19 19:01,"83 Jefferson St, New York City, NY 10001" -260780,Bose SoundSport Headphones,1,99.99,10/31/19 18:02,"520 Lake St, Portland, OR 97035" -260781,Flatscreen TV,1,300,10/27/19 14:48,"304 Church St, San Francisco, CA 94016" -260782,27in 4K Gaming Monitor,1,389.99,10/17/19 18:10,"429 Lincoln St, Seattle, WA 98101" -260783,Google Phone,1,600,10/24/19 07:52,"934 North St, Los Angeles, CA 90001" -260784,Macbook Pro Laptop,1,1700,10/31/19 14:19,"317 Willow St, San Francisco, CA 94016" -260785,USB-C Charging Cable,1,11.95,10/21/19 20:57,"155 13th St, Los Angeles, CA 90001" -260786,Wired Headphones,1,11.99,10/05/19 20:30,"84 Center St, Los Angeles, CA 90001" -260787,27in 4K Gaming Monitor,1,389.99,10/22/19 11:45,"979 Hill St, San Francisco, CA 94016" -260788,20in Monitor,1,109.99,10/13/19 11:35,"160 13th St, Seattle, WA 98101" -260789,Wired Headphones,1,11.99,10/25/19 13:11,"105 South St, San Francisco, CA 94016" -260790,iPhone,1,700,10/17/19 22:34,"57 2nd St, New York City, NY 10001" -260791,27in FHD Monitor,1,149.99,10/15/19 13:49,"120 Dogwood St, New York City, NY 10001" -260792,34in Ultrawide Monitor,1,379.99,10/24/19 12:39,"827 Walnut St, Portland, OR 97035" -260793,Bose SoundSport Headphones,1,99.99,10/18/19 00:38,"170 Main St, Boston, MA 02215" -260794,Vareebadd Phone,1,400,10/21/19 14:23,"257 9th St, New York City, NY 10001" -260795,AA Batteries (4-pack),2,3.84,10/03/19 15:25,"379 9th St, Boston, MA 02215" -260796,Google Phone,1,600,10/06/19 20:13,"94 14th St, Dallas, TX 75001" -260796,USB-C Charging Cable,1,11.95,10/06/19 20:13,"94 14th St, Dallas, TX 75001" -260797,AAA Batteries (4-pack),1,2.99,10/07/19 15:49,"507 Jefferson St, New York City, NY 10001" -260798,Lightning Charging Cable,2,14.95,10/10/19 07:50,"630 Lake St, Portland, ME 04101" -260799,AAA Batteries (4-pack),2,2.99,10/25/19 15:39,"515 Johnson St, Portland, OR 97035" -260800,27in FHD Monitor,1,149.99,10/19/19 22:51,"554 Lake St, New York City, NY 10001" -260801,USB-C Charging Cable,1,11.95,10/02/19 21:19,"218 2nd St, San Francisco, CA 94016" -260802,USB-C Charging Cable,1,11.95,10/27/19 12:23,"371 5th St, Los Angeles, CA 90001" -260803,iPhone,1,700,10/27/19 16:32,"776 Pine St, Seattle, WA 98101" -260803,Apple Airpods Headphones,1,150,10/27/19 16:32,"776 Pine St, Seattle, WA 98101" -260804,27in FHD Monitor,1,149.99,10/23/19 17:21,"201 Dogwood St, San Francisco, CA 94016" -260805,AA Batteries (4-pack),1,3.84,10/20/19 00:26,"729 Lakeview St, New York City, NY 10001" -260806,Macbook Pro Laptop,1,1700,10/26/19 21:37,"947 Johnson St, Dallas, TX 75001" -260807,iPhone,1,700,10/21/19 16:16,"604 Wilson St, Atlanta, GA 30301" -260808,AAA Batteries (4-pack),3,2.99,10/03/19 18:43,"607 Main St, New York City, NY 10001" -260809,Wired Headphones,1,11.99,10/21/19 12:26,"254 Elm St, San Francisco, CA 94016" -260810,USB-C Charging Cable,1,11.95,10/13/19 17:06,"723 Main St, San Francisco, CA 94016" -260811,Apple Airpods Headphones,1,150,10/01/19 12:34,"236 Madison St, San Francisco, CA 94016" -260812,Lightning Charging Cable,1,14.95,10/09/19 19:08,"115 Main St, San Francisco, CA 94016" -260813,iPhone,1,700,10/31/19 00:45,"82 14th St, New York City, NY 10001" -260813,Lightning Charging Cable,1,14.95,10/31/19 00:45,"82 14th St, New York City, NY 10001" -260814,Apple Airpods Headphones,1,150,10/30/19 08:35,"692 Main St, Atlanta, GA 30301" -260815,USB-C Charging Cable,1,11.95,10/28/19 19:40,"40 Adams St, Los Angeles, CA 90001" -260816,AAA Batteries (4-pack),1,2.99,10/23/19 16:09,"842 North St, New York City, NY 10001" -260817,AAA Batteries (4-pack),1,2.99,10/09/19 14:12,"931 Dogwood St, Portland, OR 97035" -260818,Lightning Charging Cable,1,14.95,10/11/19 15:46,"30 Pine St, New York City, NY 10001" -260819,27in 4K Gaming Monitor,1,389.99,10/16/19 18:54,"637 7th St, Dallas, TX 75001" -260820,USB-C Charging Cable,1,11.95,10/21/19 14:56,"621 1st St, San Francisco, CA 94016" -260821,AAA Batteries (4-pack),1,2.99,10/05/19 21:44,"86 10th St, San Francisco, CA 94016" -260822,Apple Airpods Headphones,1,150,10/05/19 13:49,"290 Ridge St, Portland, OR 97035" -260823,Lightning Charging Cable,1,14.95,10/11/19 19:34,"935 9th St, Los Angeles, CA 90001" -260824,ThinkPad Laptop,1,999.99,10/27/19 10:15,"48 West St, Boston, MA 02215" -260825,Bose SoundSport Headphones,1,99.99,10/22/19 11:50,"53 Highland St, San Francisco, CA 94016" -260826,Lightning Charging Cable,1,14.95,10/01/19 18:12,"270 Madison St, Boston, MA 02215" -260827,Apple Airpods Headphones,1,150,10/08/19 13:39,"951 14th St, San Francisco, CA 94016" -260828,Apple Airpods Headphones,1,150,10/13/19 16:14,"375 Highland St, Portland, OR 97035" -260829,Google Phone,1,600,10/26/19 14:41,"82 Forest St, San Francisco, CA 94016" -260830,Macbook Pro Laptop,1,1700,10/04/19 18:26,"129 12th St, Dallas, TX 75001" -260831,USB-C Charging Cable,1,11.95,10/18/19 21:06,"844 Jackson St, Austin, TX 73301" -260832,AAA Batteries (4-pack),1,2.99,10/24/19 15:56,"701 9th St, Boston, MA 02215" -260833,Wired Headphones,1,11.99,10/02/19 19:03,"77 Hill St, San Francisco, CA 94016" -260834,Lightning Charging Cable,1,14.95,10/30/19 17:54,"591 Jefferson St, Boston, MA 02215" -260835,Vareebadd Phone,1,400,10/03/19 09:53,"337 Park St, San Francisco, CA 94016" -260836,USB-C Charging Cable,1,11.95,10/18/19 11:28,"366 Maple St, San Francisco, CA 94016" -260837,Wired Headphones,1,11.99,10/12/19 17:43,"296 Spruce St, Portland, OR 97035" -260838,USB-C Charging Cable,1,11.95,10/19/19 14:53,"865 Johnson St, Los Angeles, CA 90001" -260839,Flatscreen TV,1,300,10/25/19 09:01,"296 Walnut St, San Francisco, CA 94016" -260840,Lightning Charging Cable,1,14.95,10/18/19 00:37,"718 Center St, San Francisco, CA 94016" -260841,USB-C Charging Cable,1,11.95,10/08/19 09:59,"835 7th St, Boston, MA 02215" -260842,AA Batteries (4-pack),4,3.84,10/24/19 11:56,"134 Forest St, Atlanta, GA 30301" -260843,Apple Airpods Headphones,1,150,10/31/19 20:25,"492 7th St, New York City, NY 10001" -260844,USB-C Charging Cable,1,11.95,10/02/19 21:16,"590 Highland St, Dallas, TX 75001" -260845,Lightning Charging Cable,1,14.95,10/31/19 11:27,"150 Cherry St, San Francisco, CA 94016" -260846,AA Batteries (4-pack),1,3.84,10/20/19 18:52,"793 Highland St, Portland, ME 04101" -260847,Apple Airpods Headphones,1,150,10/01/19 10:33,"327 Cherry St, San Francisco, CA 94016" -260848,Lightning Charging Cable,1,14.95,10/11/19 21:03,"688 Lakeview St, Boston, MA 02215" -260849,iPhone,1,700,10/01/19 15:26,"705 South St, Austin, TX 73301" -260850,USB-C Charging Cable,1,11.95,10/16/19 11:06,"923 6th St, Portland, OR 97035" -260851,Google Phone,1,600,10/13/19 19:12,"418 Church St, San Francisco, CA 94016" -260852,AA Batteries (4-pack),1,3.84,10/14/19 11:28,"98 Center St, Los Angeles, CA 90001" -260853,20in Monitor,1,109.99,10/09/19 21:16,"408 North St, San Francisco, CA 94016" -260854,27in 4K Gaming Monitor,1,389.99,10/04/19 23:24,"168 11th St, San Francisco, CA 94016" -260855,AAA Batteries (4-pack),3,2.99,10/16/19 03:19,"976 Johnson St, Austin, TX 73301" -260856,AAA Batteries (4-pack),1,2.99,10/25/19 13:51,"753 Cedar St, Austin, TX 73301" -260857,USB-C Charging Cable,1,11.95,10/20/19 13:56,"265 Sunset St, Boston, MA 02215" -260858,27in 4K Gaming Monitor,1,389.99,10/25/19 14:51,"946 12th St, Los Angeles, CA 90001" -260859,AA Batteries (4-pack),1,3.84,10/19/19 12:40,"907 North St, San Francisco, CA 94016" -260860,Bose SoundSport Headphones,1,99.99,10/25/19 21:57,"285 12th St, Los Angeles, CA 90001" -260861,USB-C Charging Cable,1,11.95,10/12/19 20:52,"599 Pine St, Portland, OR 97035" -260862,AA Batteries (4-pack),2,3.84,10/22/19 19:35,"352 12th St, San Francisco, CA 94016" -260863,27in FHD Monitor,1,149.99,10/28/19 02:18,"101 North St, New York City, NY 10001" -260864,27in 4K Gaming Monitor,1,389.99,10/24/19 16:39,"582 5th St, Austin, TX 73301" -260865,Lightning Charging Cable,1,14.95,10/03/19 17:20,"740 Highland St, Seattle, WA 98101" -260866,ThinkPad Laptop,1,999.99,10/22/19 11:38,"611 Dogwood St, San Francisco, CA 94016" -260867,USB-C Charging Cable,1,11.95,10/04/19 11:33,"163 13th St, Los Angeles, CA 90001" -260868,ThinkPad Laptop,1,999.99,10/10/19 17:22,"759 Cherry St, Boston, MA 02215" -260869,AA Batteries (4-pack),1,3.84,10/05/19 23:44,"547 Maple St, San Francisco, CA 94016" -260870,ThinkPad Laptop,1,999.99,10/07/19 12:16,"614 Sunset St, New York City, NY 10001" -260871,Macbook Pro Laptop,1,1700,10/23/19 12:44,"162 Spruce St, Los Angeles, CA 90001" -260872,AA Batteries (4-pack),1,3.84,10/26/19 20:43,"630 Spruce St, New York City, NY 10001" -260873,Macbook Pro Laptop,1,1700,10/16/19 03:30,"166 14th St, San Francisco, CA 94016" -260874,Lightning Charging Cable,2,14.95,10/29/19 16:45,"173 Walnut St, New York City, NY 10001" -260875,27in FHD Monitor,1,149.99,10/12/19 00:07,"265 Hill St, New York City, NY 10001" -260876,AA Batteries (4-pack),1,3.84,10/09/19 10:04,"910 2nd St, San Francisco, CA 94016" -260877,AA Batteries (4-pack),1,3.84,10/06/19 15:50,"781 Walnut St, Seattle, WA 98101" -260878,Apple Airpods Headphones,1,150,10/30/19 13:29,"718 Washington St, New York City, NY 10001" -260879,AA Batteries (4-pack),1,3.84,10/19/19 13:16,"477 Adams St, Dallas, TX 75001" -260880,AA Batteries (4-pack),1,3.84,10/25/19 14:56,"704 Walnut St, Portland, OR 97035" -260881,Flatscreen TV,1,300,10/10/19 10:34,"690 Maple St, Portland, OR 97035" -260882,iPhone,1,700,10/06/19 20:49,"386 Johnson St, New York City, NY 10001" -260883,Flatscreen TV,1,300,10/16/19 13:27,"290 Hill St, Seattle, WA 98101" -,,,,, -260884,USB-C Charging Cable,1,11.95,10/31/19 11:07,"193 12th St, San Francisco, CA 94016" -260885,Lightning Charging Cable,1,14.95,10/15/19 21:30,"964 North St, New York City, NY 10001" -260886,Apple Airpods Headphones,1,150,10/24/19 03:46,"495 Hickory St, San Francisco, CA 94016" -260887,iPhone,1,700,10/24/19 22:29,"349 11th St, Los Angeles, CA 90001" -260888,AAA Batteries (4-pack),2,2.99,10/12/19 14:51,"333 Hickory St, Boston, MA 02215" -260889,AAA Batteries (4-pack),1,2.99,10/02/19 07:58,"926 Elm St, Los Angeles, CA 90001" -260890,34in Ultrawide Monitor,1,379.99,10/09/19 17:45,"85 Madison St, Austin, TX 73301" -260891,AAA Batteries (4-pack),1,2.99,10/24/19 09:58,"714 Wilson St, Portland, OR 97035" -260892,USB-C Charging Cable,1,11.95,10/01/19 15:07,"673 Jefferson St, San Francisco, CA 94016" -260893,27in FHD Monitor,1,149.99,10/18/19 03:11,"388 9th St, New York City, NY 10001" -260894,iPhone,1,700,10/17/19 05:30,"930 Elm St, Los Angeles, CA 90001" -260895,AA Batteries (4-pack),1,3.84,10/27/19 07:51,"440 Jefferson St, Austin, TX 73301" -260896,Google Phone,1,600,10/15/19 11:12,"923 Hill St, New York City, NY 10001" -260896,Wired Headphones,1,11.99,10/15/19 11:12,"923 Hill St, New York City, NY 10001" -260897,AA Batteries (4-pack),1,3.84,10/02/19 18:21,"419 Washington St, San Francisco, CA 94016" -260898,iPhone,1,700,10/04/19 09:16,"543 Johnson St, Los Angeles, CA 90001" -260898,Lightning Charging Cable,1,14.95,10/04/19 09:16,"543 Johnson St, Los Angeles, CA 90001" -260899,Apple Airpods Headphones,1,150,10/12/19 00:24,"713 9th St, New York City, NY 10001" -260900,Lightning Charging Cable,1,14.95,10/05/19 22:35,"769 Pine St, Seattle, WA 98101" -260901,AAA Batteries (4-pack),1,2.99,10/22/19 13:20,"657 Johnson St, Atlanta, GA 30301" -260902,Lightning Charging Cable,1,14.95,10/30/19 18:52,"597 Lincoln St, Austin, TX 73301" -260903,Wired Headphones,1,11.99,10/16/19 17:31,"665 Jackson St, Austin, TX 73301" -260904,Flatscreen TV,1,300,10/30/19 18:16,"607 Johnson St, New York City, NY 10001" -260905,AA Batteries (4-pack),2,3.84,10/06/19 12:34,"247 West St, Dallas, TX 75001" -260906,AAA Batteries (4-pack),1,2.99,10/28/19 15:18,"536 2nd St, Dallas, TX 75001" -260907,27in FHD Monitor,1,149.99,10/26/19 16:30,"185 Lakeview St, San Francisco, CA 94016" -260908,27in 4K Gaming Monitor,1,389.99,10/04/19 08:05,"168 Adams St, San Francisco, CA 94016" -260909,AAA Batteries (4-pack),1,2.99,10/07/19 21:43,"550 Jackson St, San Francisco, CA 94016" -260909,20in Monitor,1,109.99,10/07/19 21:43,"550 Jackson St, San Francisco, CA 94016" -260910,27in FHD Monitor,1,149.99,10/29/19 12:25,"366 Forest St, San Francisco, CA 94016" -260911,Bose SoundSport Headphones,1,99.99,10/25/19 09:57,"433 Hickory St, San Francisco, CA 94016" -260912,AAA Batteries (4-pack),1,2.99,10/18/19 10:33,"639 11th St, Los Angeles, CA 90001" -260913,USB-C Charging Cable,1,11.95,10/27/19 13:09,"521 Meadow St, Boston, MA 02215" -260914,Bose SoundSport Headphones,1,99.99,10/11/19 22:10,"706 Lakeview St, Los Angeles, CA 90001" -260915,Vareebadd Phone,1,400,10/27/19 22:52,"100 Johnson St, Atlanta, GA 30301" -260915,USB-C Charging Cable,1,11.95,10/27/19 22:52,"100 Johnson St, Atlanta, GA 30301" -260916,Lightning Charging Cable,1,14.95,10/08/19 15:55,"754 South St, Los Angeles, CA 90001" -260917,AAA Batteries (4-pack),2,2.99,10/24/19 13:33,"742 Hill St, Los Angeles, CA 90001" -260918,Wired Headphones,1,11.99,10/23/19 16:37,"839 5th St, New York City, NY 10001" -260919,Bose SoundSport Headphones,1,99.99,10/11/19 16:36,"121 9th St, Dallas, TX 75001" -260920,Wired Headphones,1,11.99,10/20/19 20:06,"190 West St, Boston, MA 02215" -260921,Wired Headphones,1,11.99,10/07/19 09:09,"273 River St, Seattle, WA 98101" -260922,Wired Headphones,1,11.99,10/20/19 21:07,"68 River St, Seattle, WA 98101" -260923,Macbook Pro Laptop,1,1700,10/22/19 17:48,"101 Adams St, Boston, MA 02215" -260924,Macbook Pro Laptop,1,1700,10/14/19 16:39,"935 Forest St, Boston, MA 02215" -260925,Macbook Pro Laptop,1,1700,10/19/19 21:11,"822 North St, Los Angeles, CA 90001" -260926,USB-C Charging Cable,1,11.95,10/06/19 08:02,"123 West St, Portland, OR 97035" -260927,Lightning Charging Cable,1,14.95,10/06/19 13:49,"332 Hickory St, Seattle, WA 98101" -260928,USB-C Charging Cable,1,11.95,10/02/19 11:05,"153 Hill St, Boston, MA 02215" -260929,Wired Headphones,1,11.99,10/04/19 17:48,"934 Willow St, Portland, OR 97035" -260930,AAA Batteries (4-pack),1,2.99,10/18/19 13:26,"733 Sunset St, Seattle, WA 98101" -260931,AA Batteries (4-pack),1,3.84,10/30/19 13:07,"273 7th St, Los Angeles, CA 90001" -260932,27in FHD Monitor,1,149.99,10/30/19 13:27,"176 Hickory St, Atlanta, GA 30301" -260933,27in 4K Gaming Monitor,1,389.99,10/29/19 13:59,"850 Cherry St, Austin, TX 73301" -260934,USB-C Charging Cable,1,11.95,10/31/19 00:46,"966 Center St, San Francisco, CA 94016" -260935,Apple Airpods Headphones,1,150,10/12/19 09:36,"292 Elm St, Austin, TX 73301" -260936,USB-C Charging Cable,1,11.95,10/06/19 10:43,"358 12th St, Atlanta, GA 30301" -260937,iPhone,1,700,10/04/19 14:16,"245 Maple St, San Francisco, CA 94016" -260938,Google Phone,1,600,10/29/19 14:14,"218 1st St, Los Angeles, CA 90001" -260939,Wired Headphones,1,11.99,10/13/19 18:14,"190 Cherry St, Los Angeles, CA 90001" -260940,USB-C Charging Cable,1,11.95,10/30/19 18:14,"316 Center St, New York City, NY 10001" -260941,34in Ultrawide Monitor,1,379.99,10/06/19 11:07,"693 Highland St, Los Angeles, CA 90001" -260942,USB-C Charging Cable,1,11.95,10/14/19 11:50,"692 10th St, Los Angeles, CA 90001" -260943,USB-C Charging Cable,1,11.95,10/17/19 19:30,"892 Main St, Portland, OR 97035" -260944,AAA Batteries (4-pack),1,2.99,10/22/19 17:24,"45 West St, Boston, MA 02215" -260945,Bose SoundSport Headphones,1,99.99,10/25/19 20:24,"534 Highland St, San Francisco, CA 94016" -260946,Lightning Charging Cable,1,14.95,10/21/19 12:02,"253 Elm St, Seattle, WA 98101" -260947,Wired Headphones,1,11.99,10/26/19 11:45,"430 Sunset St, Austin, TX 73301" -260948,Apple Airpods Headphones,1,150,10/15/19 19:18,"185 Elm St, Los Angeles, CA 90001" -260949,USB-C Charging Cable,2,11.95,10/25/19 00:53,"562 Washington St, New York City, NY 10001" -260950,Bose SoundSport Headphones,1,99.99,10/07/19 16:42,"523 Washington St, San Francisco, CA 94016" -260951,USB-C Charging Cable,1,11.95,10/05/19 15:24,"503 5th St, New York City, NY 10001" -260952,AAA Batteries (4-pack),2,2.99,10/12/19 11:22,"372 Madison St, Atlanta, GA 30301" -260953,USB-C Charging Cable,1,11.95,10/05/19 10:57,"123 Hill St, Los Angeles, CA 90001" -260954,Lightning Charging Cable,1,14.95,10/15/19 19:46,"873 Willow St, Dallas, TX 75001" -260955,AAA Batteries (4-pack),1,2.99,10/21/19 21:33,"320 Madison St, New York City, NY 10001" -260956,Lightning Charging Cable,1,14.95,10/23/19 12:40,"298 Meadow St, Seattle, WA 98101" -260957,34in Ultrawide Monitor,1,379.99,10/02/19 09:56,"43 Highland St, Dallas, TX 75001" -260958,AAA Batteries (4-pack),1,2.99,10/30/19 10:31,"899 Adams St, Austin, TX 73301" -260959,Bose SoundSport Headphones,1,99.99,10/29/19 14:38,"753 10th St, Los Angeles, CA 90001" -260960,USB-C Charging Cable,1,11.95,10/21/19 16:29,"898 Forest St, San Francisco, CA 94016" -260961,Bose SoundSport Headphones,1,99.99,10/23/19 07:47,"883 5th St, San Francisco, CA 94016" -260962,USB-C Charging Cable,1,11.95,10/28/19 19:18,"660 West St, Dallas, TX 75001" -260963,AAA Batteries (4-pack),1,2.99,10/21/19 13:38,"220 Pine St, San Francisco, CA 94016" -260964,Lightning Charging Cable,1,14.95,10/29/19 13:44,"257 Center St, Atlanta, GA 30301" -260965,Lightning Charging Cable,1,14.95,10/22/19 22:04,"211 Main St, New York City, NY 10001" -260966,20in Monitor,1,109.99,10/17/19 17:06,"606 Jackson St, Austin, TX 73301" -260967,USB-C Charging Cable,1,11.95,10/13/19 12:44,"569 Washington St, New York City, NY 10001" -260968,AA Batteries (4-pack),2,3.84,10/01/19 08:52,"381 Lakeview St, Seattle, WA 98101" -260969,ThinkPad Laptop,1,999.99,10/24/19 17:17,"175 Dogwood St, Portland, ME 04101" -260970,Google Phone,1,600,10/21/19 19:33,"214 10th St, Los Angeles, CA 90001" -260971,USB-C Charging Cable,1,11.95,10/28/19 06:56,"715 Maple St, Los Angeles, CA 90001" -260972,Bose SoundSport Headphones,1,99.99,10/15/19 18:25,"25 5th St, New York City, NY 10001" -260973,AAA Batteries (4-pack),1,2.99,10/05/19 10:57,"38 Highland St, Seattle, WA 98101" -260974,USB-C Charging Cable,1,11.95,10/15/19 22:59,"659 Spruce St, New York City, NY 10001" -260975,Wired Headphones,2,11.99,10/11/19 10:57,"106 Washington St, San Francisco, CA 94016" -260976,Wired Headphones,1,11.99,10/24/19 14:33,"317 Walnut St, Atlanta, GA 30301" -260977,iPhone,1,700,10/09/19 17:39,"657 14th St, Los Angeles, CA 90001" -260978,AA Batteries (4-pack),1,3.84,10/09/19 21:16,"856 Wilson St, Dallas, TX 75001" -260979,Flatscreen TV,1,300,10/11/19 22:30,"726 Main St, San Francisco, CA 94016" -260980,Apple Airpods Headphones,1,150,10/11/19 13:56,"774 Pine St, San Francisco, CA 94016" -260981,Bose SoundSport Headphones,1,99.99,10/12/19 17:06,"86 Madison St, Atlanta, GA 30301" -260982,34in Ultrawide Monitor,1,379.99,10/18/19 20:39,"627 Maple St, Atlanta, GA 30301" -260983,20in Monitor,1,109.99,10/06/19 19:52,"796 Cherry St, San Francisco, CA 94016" -260984,34in Ultrawide Monitor,1,379.99,10/10/19 21:34,"879 8th St, Seattle, WA 98101" -260985,34in Ultrawide Monitor,1,379.99,10/13/19 12:39,"506 Johnson St, Dallas, TX 75001" -260986,Macbook Pro Laptop,1,1700,10/09/19 16:27,"110 Hill St, Los Angeles, CA 90001" -260987,20in Monitor,1,109.99,10/24/19 18:29,"909 Park St, San Francisco, CA 94016" -260988,AAA Batteries (4-pack),2,2.99,10/07/19 23:04,"783 Cherry St, Dallas, TX 75001" -260989,34in Ultrawide Monitor,1,379.99,10/26/19 10:28,"39 Elm St, New York City, NY 10001" -260990,27in FHD Monitor,1,149.99,10/06/19 12:36,"677 Chestnut St, San Francisco, CA 94016" -260991,USB-C Charging Cable,1,11.95,10/12/19 11:48,"240 Forest St, Los Angeles, CA 90001" -260992,Wired Headphones,1,11.99,10/20/19 10:55,"664 Cedar St, Dallas, TX 75001" -260993,USB-C Charging Cable,1,11.95,10/25/19 10:11,"266 West St, Atlanta, GA 30301" -260994,Google Phone,1,600,10/07/19 20:40,"421 Church St, Los Angeles, CA 90001" -260994,USB-C Charging Cable,1,11.95,10/07/19 20:40,"421 Church St, Los Angeles, CA 90001" -260995,27in 4K Gaming Monitor,1,389.99,10/22/19 08:50,"61 Forest St, Boston, MA 02215" -260995,Bose SoundSport Headphones,1,99.99,10/22/19 08:50,"61 Forest St, Boston, MA 02215" -260996,Wired Headphones,1,11.99,10/27/19 09:00,"849 South St, Los Angeles, CA 90001" -260997,Apple Airpods Headphones,1,150,10/15/19 08:27,"533 North St, San Francisco, CA 94016" -260998,Flatscreen TV,1,300,10/25/19 09:25,"549 South St, Boston, MA 02215" -260999,Wired Headphones,1,11.99,10/13/19 22:45,"308 14th St, San Francisco, CA 94016" -260999,Macbook Pro Laptop,1,1700,10/13/19 22:45,"308 14th St, San Francisco, CA 94016" -261000,AA Batteries (4-pack),1,3.84,10/28/19 12:59,"363 10th St, San Francisco, CA 94016" -261001,USB-C Charging Cable,1,11.95,10/19/19 23:17,"774 Spruce St, San Francisco, CA 94016" -261002,iPhone,1,700,10/22/19 00:41,"895 Willow St, New York City, NY 10001" -261003,ThinkPad Laptop,1,999.99,10/12/19 22:30,"735 Spruce St, Seattle, WA 98101" -261004,AAA Batteries (4-pack),1,2.99,10/23/19 17:34,"484 Sunset St, Los Angeles, CA 90001" -261005,34in Ultrawide Monitor,1,379.99,10/01/19 20:18,"67 Sunset St, Los Angeles, CA 90001" -261006,20in Monitor,1,109.99,10/22/19 01:21,"778 Willow St, Atlanta, GA 30301" -261007,AA Batteries (4-pack),1,3.84,10/02/19 16:29,"922 4th St, San Francisco, CA 94016" -261008,AAA Batteries (4-pack),1,2.99,10/03/19 09:55,"627 9th St, Austin, TX 73301" -261009,Apple Airpods Headphones,1,150,10/03/19 20:24,"589 12th St, Seattle, WA 98101" -261010,Bose SoundSport Headphones,1,99.99,10/08/19 16:38,"510 Madison St, New York City, NY 10001" -261011,Bose SoundSport Headphones,1,99.99,10/19/19 17:36,"272 1st St, Austin, TX 73301" -261012,34in Ultrawide Monitor,1,379.99,10/19/19 18:39,"42 12th St, Seattle, WA 98101" -261013,20in Monitor,1,109.99,10/06/19 07:09,"266 11th St, Dallas, TX 75001" -261014,Lightning Charging Cable,1,14.95,10/11/19 07:54,"792 4th St, Portland, OR 97035" -261015,27in 4K Gaming Monitor,1,389.99,10/05/19 16:22,"953 Elm St, New York City, NY 10001" -261016,34in Ultrawide Monitor,1,379.99,10/17/19 21:01,"442 Elm St, Los Angeles, CA 90001" -261017,iPhone,1,700,10/31/19 15:07,"584 Maple St, San Francisco, CA 94016" -261018,Wired Headphones,1,11.99,10/09/19 08:38,"665 2nd St, Los Angeles, CA 90001" -261019,Bose SoundSport Headphones,1,99.99,10/15/19 14:40,"839 1st St, Dallas, TX 75001" -261020,Flatscreen TV,1,300,10/09/19 20:18,"74 13th St, Seattle, WA 98101" -261021,AAA Batteries (4-pack),2,2.99,10/15/19 16:42,"14 Meadow St, San Francisco, CA 94016" -261022,Flatscreen TV,1,300,10/25/19 10:58,"314 Walnut St, San Francisco, CA 94016" -261023,ThinkPad Laptop,1,999.99,10/23/19 17:55,"445 Lakeview St, Dallas, TX 75001" -261024,USB-C Charging Cable,1,11.95,10/29/19 10:57,"202 Meadow St, Austin, TX 73301" -261025,Bose SoundSport Headphones,1,99.99,10/21/19 10:40,"822 Meadow St, Austin, TX 73301" -261026,Apple Airpods Headphones,1,150,10/11/19 21:40,"940 7th St, Dallas, TX 75001" -261027,Wired Headphones,1,11.99,10/19/19 14:58,"8 9th St, Boston, MA 02215" -261028,27in FHD Monitor,1,149.99,10/17/19 15:46,"971 14th St, Atlanta, GA 30301" -261029,Google Phone,1,600,10/16/19 13:56,"193 Washington St, Atlanta, GA 30301" -261030,ThinkPad Laptop,1,999.99,10/18/19 16:36,"445 Cedar St, Austin, TX 73301" -261031,USB-C Charging Cable,2,11.95,10/16/19 05:58,"910 12th St, Boston, MA 02215" -261032,AAA Batteries (4-pack),1,2.99,10/25/19 17:57,"763 Dogwood St, Dallas, TX 75001" -261033,34in Ultrawide Monitor,1,379.99,10/26/19 19:42,"330 Willow St, Boston, MA 02215" -261034,AA Batteries (4-pack),1,3.84,10/21/19 18:57,"785 Jackson St, Atlanta, GA 30301" -261035,Bose SoundSport Headphones,1,99.99,10/23/19 09:57,"24 6th St, San Francisco, CA 94016" -261036,USB-C Charging Cable,1,11.95,10/29/19 09:58,"299 Pine St, Seattle, WA 98101" -261037,USB-C Charging Cable,1,11.95,10/31/19 21:27,"418 1st St, San Francisco, CA 94016" -261038,USB-C Charging Cable,1,11.95,10/04/19 17:18,"891 Elm St, Atlanta, GA 30301" -261039,LG Washing Machine,1,600.0,10/11/19 07:21,"910 Jackson St, Dallas, TX 75001" -261040,27in FHD Monitor,1,149.99,10/11/19 10:21,"223 Dogwood St, New York City, NY 10001" -261041,USB-C Charging Cable,1,11.95,10/12/19 11:21,"441 Lincoln St, Los Angeles, CA 90001" -261042,ThinkPad Laptop,1,999.99,10/20/19 14:10,"717 Chestnut St, Austin, TX 73301" -261043,AAA Batteries (4-pack),1,2.99,10/29/19 18:41,"408 Spruce St, Boston, MA 02215" -261044,AA Batteries (4-pack),1,3.84,10/07/19 10:39,"490 North St, Boston, MA 02215" -261045,Lightning Charging Cable,1,14.95,10/26/19 18:55,"374 Dogwood St, San Francisco, CA 94016" -261046,Wired Headphones,2,11.99,10/14/19 11:03,"906 Jefferson St, Boston, MA 02215" -261047,Macbook Pro Laptop,1,1700,10/20/19 20:13,"403 5th St, Portland, ME 04101" -261048,AA Batteries (4-pack),1,3.84,10/31/19 13:42,"346 Dogwood St, San Francisco, CA 94016" -261049,27in 4K Gaming Monitor,1,389.99,10/27/19 15:28,"811 Walnut St, New York City, NY 10001" -261050,Wired Headphones,1,11.99,10/02/19 18:00,"533 Cedar St, Portland, OR 97035" -261051,Wired Headphones,1,11.99,10/25/19 19:36,"821 Hickory St, Dallas, TX 75001" -261052,Flatscreen TV,1,300,10/07/19 21:51,"597 Cherry St, New York City, NY 10001" -261053,Lightning Charging Cable,1,14.95,10/10/19 10:28,"992 South St, New York City, NY 10001" -261054,iPhone,1,700,10/02/19 11:14,"992 Cherry St, Atlanta, GA 30301" -261055,Macbook Pro Laptop,1,1700,10/14/19 21:37,"243 Dogwood St, Los Angeles, CA 90001" -261056,Lightning Charging Cable,1,14.95,10/22/19 08:41,"188 Sunset St, Los Angeles, CA 90001" -261057,34in Ultrawide Monitor,1,379.99,10/27/19 17:13,"526 1st St, San Francisco, CA 94016" -261058,LG Washing Machine,1,600.0,10/13/19 13:26,"419 9th St, Boston, MA 02215" -261059,AAA Batteries (4-pack),1,2.99,10/15/19 18:59,"975 2nd St, Dallas, TX 75001" -261060,Wired Headphones,1,11.99,10/22/19 23:16,"951 Jackson St, Los Angeles, CA 90001" -261061,Flatscreen TV,1,300,10/07/19 12:55,"214 6th St, Boston, MA 02215" -261062,AAA Batteries (4-pack),2,2.99,10/09/19 11:31,"81 Center St, Dallas, TX 75001" -261063,iPhone,1,700,10/03/19 14:20,"455 Pine St, Atlanta, GA 30301" -261064,USB-C Charging Cable,1,11.95,10/10/19 19:29,"230 14th St, Portland, OR 97035" -261065,ThinkPad Laptop,1,999.99,10/21/19 21:55,"81 Spruce St, Boston, MA 02215" -261066,AAA Batteries (4-pack),1,2.99,10/30/19 07:22,"141 Cedar St, San Francisco, CA 94016" -261067,USB-C Charging Cable,1,11.95,10/19/19 15:39,"807 10th St, Atlanta, GA 30301" -261068,USB-C Charging Cable,1,11.95,10/03/19 23:27,"370 Chestnut St, San Francisco, CA 94016" -261069,Lightning Charging Cable,1,14.95,10/07/19 17:04,"209 Wilson St, Los Angeles, CA 90001" -261070,AA Batteries (4-pack),1,3.84,10/22/19 20:14,"499 5th St, Los Angeles, CA 90001" -261071,34in Ultrawide Monitor,1,379.99,10/02/19 16:52,"49 Dogwood St, Portland, OR 97035" -261072,ThinkPad Laptop,1,999.99,10/02/19 17:29,"881 13th St, Los Angeles, CA 90001" -261073,Wired Headphones,1,11.99,10/31/19 09:19,"625 North St, New York City, NY 10001" -261074,Lightning Charging Cable,1,14.95,10/20/19 10:22,"785 Lake St, Boston, MA 02215" -261075,Wired Headphones,1,11.99,10/15/19 20:22,"287 Chestnut St, Austin, TX 73301" -261076,27in 4K Gaming Monitor,1,389.99,10/27/19 20:03,"861 Main St, Atlanta, GA 30301" -261077,34in Ultrawide Monitor,1,379.99,10/24/19 13:28,"807 Lincoln St, New York City, NY 10001" -261078,USB-C Charging Cable,1,11.95,10/31/19 20:33,"855 12th St, Boston, MA 02215" -261079,USB-C Charging Cable,2,11.95,10/04/19 18:15,"272 6th St, Los Angeles, CA 90001" -261080,AA Batteries (4-pack),1,3.84,10/18/19 18:21,"708 Highland St, Portland, OR 97035" -261081,Lightning Charging Cable,1,14.95,10/13/19 20:29,"170 Walnut St, New York City, NY 10001" -261082,Google Phone,1,600,10/14/19 17:14,"186 14th St, Portland, OR 97035" -261083,AA Batteries (4-pack),1,3.84,10/28/19 17:45,"324 Adams St, Los Angeles, CA 90001" -261084,Bose SoundSport Headphones,1,99.99,10/01/19 14:10,"936 7th St, New York City, NY 10001" -261085,AA Batteries (4-pack),1,3.84,10/19/19 20:54,"918 South St, New York City, NY 10001" -261086,AA Batteries (4-pack),4,3.84,10/02/19 11:58,"814 Hill St, San Francisco, CA 94016" -261087,USB-C Charging Cable,1,11.95,10/05/19 13:04,"649 Jackson St, Los Angeles, CA 90001" -261088,AA Batteries (4-pack),1,3.84,10/23/19 13:43,"972 Ridge St, Boston, MA 02215" -261089,AA Batteries (4-pack),1,3.84,10/27/19 18:20,"962 Spruce St, Boston, MA 02215" -261090,USB-C Charging Cable,1,11.95,10/19/19 20:50,"53 Spruce St, San Francisco, CA 94016" -261091,AAA Batteries (4-pack),1,2.99,10/25/19 10:26,"158 6th St, San Francisco, CA 94016" -261092,iPhone,1,700,10/14/19 11:13,"472 Lincoln St, San Francisco, CA 94016" -261093,Apple Airpods Headphones,1,150,10/28/19 20:03,"550 West St, San Francisco, CA 94016" -261094,AAA Batteries (4-pack),1,2.99,10/01/19 18:58,"798 Jefferson St, San Francisco, CA 94016" -261095,AAA Batteries (4-pack),1,2.99,10/13/19 23:30,"547 9th St, Los Angeles, CA 90001" -261096,AAA Batteries (4-pack),1,2.99,10/21/19 11:37,"844 Lakeview St, San Francisco, CA 94016" -261097,Wired Headphones,1,11.99,10/18/19 23:57,"415 2nd St, Los Angeles, CA 90001" -261098,Google Phone,1,600,10/10/19 18:39,"107 Walnut St, San Francisco, CA 94016" -261098,USB-C Charging Cable,1,11.95,10/10/19 18:39,"107 Walnut St, San Francisco, CA 94016" -261099,Wired Headphones,1,11.99,10/24/19 13:24,"516 Highland St, Austin, TX 73301" -261100,Apple Airpods Headphones,1,150,10/19/19 12:05,"903 6th St, Seattle, WA 98101" -261101,USB-C Charging Cable,1,11.95,10/14/19 14:50,"521 Wilson St, New York City, NY 10001" -261102,ThinkPad Laptop,1,999.99,10/08/19 20:16,"727 10th St, San Francisco, CA 94016" -261103,AA Batteries (4-pack),2,3.84,10/07/19 17:29,"231 11th St, San Francisco, CA 94016" -261104,Bose SoundSport Headphones,1,99.99,10/27/19 09:11,"994 9th St, Portland, OR 97035" -261105,34in Ultrawide Monitor,1,379.99,10/20/19 18:14,"454 Hill St, Los Angeles, CA 90001" -261106,34in Ultrawide Monitor,1,379.99,10/18/19 20:56,"236 Center St, Austin, TX 73301" -261107,Apple Airpods Headphones,1,150,10/28/19 15:23,"998 Forest St, Austin, TX 73301" -261108,34in Ultrawide Monitor,1,379.99,10/03/19 17:40,"906 Dogwood St, New York City, NY 10001" -261109,Bose SoundSport Headphones,1,99.99,10/03/19 21:39,"260 Jackson St, New York City, NY 10001" -261110,27in 4K Gaming Monitor,1,389.99,10/25/19 14:47,"473 Lake St, Austin, TX 73301" -261111,Bose SoundSport Headphones,1,99.99,10/31/19 15:01,"978 11th St, Boston, MA 02215" -261112,Apple Airpods Headphones,1,150,10/02/19 17:26,"60 7th St, San Francisco, CA 94016" -261113,AAA Batteries (4-pack),1,2.99,10/30/19 05:19,"768 Hickory St, San Francisco, CA 94016" -261114,Wired Headphones,1,11.99,10/09/19 18:51,"337 7th St, Los Angeles, CA 90001" -261115,Bose SoundSport Headphones,1,99.99,10/29/19 19:50,"779 6th St, Austin, TX 73301" -261116,Lightning Charging Cable,1,14.95,10/22/19 13:44,"366 Elm St, Dallas, TX 75001" -261117,Apple Airpods Headphones,1,150,10/03/19 00:59,"387 Chestnut St, San Francisco, CA 94016" -261118,20in Monitor,1,109.99,10/07/19 15:46,"387 Walnut St, Boston, MA 02215" -261119,27in FHD Monitor,1,149.99,10/21/19 13:04,"160 Elm St, Los Angeles, CA 90001" -261120,Apple Airpods Headphones,1,150,10/20/19 01:20,"466 Lake St, Los Angeles, CA 90001" -261121,Bose SoundSport Headphones,1,99.99,10/16/19 21:17,"210 Highland St, San Francisco, CA 94016" -261122,ThinkPad Laptop,1,999.99,10/17/19 11:02,"975 Meadow St, Los Angeles, CA 90001" -261123,Apple Airpods Headphones,1,150,10/31/19 11:49,"345 Madison St, Atlanta, GA 30301" -261124,Wired Headphones,1,11.99,10/27/19 04:55,"57 Adams St, Atlanta, GA 30301" -261125,Wired Headphones,1,11.99,10/13/19 13:02,"603 North St, Los Angeles, CA 90001" -261126,27in 4K Gaming Monitor,1,389.99,10/26/19 11:23,"144 North St, San Francisco, CA 94016" -261127,34in Ultrawide Monitor,1,379.99,11/01/19 01:49,"917 Madison St, Seattle, WA 98101" -261128,AA Batteries (4-pack),2,3.84,10/11/19 21:30,"184 Jefferson St, Boston, MA 02215" -261129,Lightning Charging Cable,1,14.95,10/16/19 11:04,"81 Chestnut St, San Francisco, CA 94016" -261130,34in Ultrawide Monitor,1,379.99,10/22/19 23:52,"792 Hickory St, Portland, ME 04101" -261131,Wired Headphones,1,11.99,10/25/19 10:06,"277 4th St, Seattle, WA 98101" -261132,Google Phone,1,600,10/24/19 12:15,"13 Lincoln St, San Francisco, CA 94016" -261132,USB-C Charging Cable,1,11.95,10/24/19 12:15,"13 Lincoln St, San Francisco, CA 94016" -261133,USB-C Charging Cable,1,11.95,10/15/19 01:08,"903 Johnson St, San Francisco, CA 94016" -261134,iPhone,1,700,10/25/19 15:02,"985 Elm St, Seattle, WA 98101" -261135,Lightning Charging Cable,1,14.95,10/24/19 08:58,"60 Wilson St, Seattle, WA 98101" -261136,Google Phone,1,600,10/24/19 12:45,"888 4th St, San Francisco, CA 94016" -261136,USB-C Charging Cable,1,11.95,10/24/19 12:45,"888 4th St, San Francisco, CA 94016" -261137,AAA Batteries (4-pack),1,2.99,10/17/19 12:58,"854 Highland St, San Francisco, CA 94016" -261138,Lightning Charging Cable,1,14.95,10/11/19 10:56,"272 Ridge St, New York City, NY 10001" -261139,AAA Batteries (4-pack),1,2.99,10/09/19 19:06,"862 Maple St, Atlanta, GA 30301" -261140,Wired Headphones,2,11.99,10/05/19 21:00,"600 Center St, San Francisco, CA 94016" -261141,27in FHD Monitor,1,149.99,10/24/19 09:05,"573 Wilson St, Los Angeles, CA 90001" -261142,Lightning Charging Cable,1,14.95,10/25/19 14:33,"39 Forest St, Los Angeles, CA 90001" -261143,27in 4K Gaming Monitor,1,389.99,10/21/19 11:40,"163 Wilson St, San Francisco, CA 94016" -261144,Flatscreen TV,1,300,10/05/19 13:55,"595 Church St, Seattle, WA 98101" -261145,USB-C Charging Cable,2,11.95,10/13/19 16:48,"981 1st St, Atlanta, GA 30301" -261146,Google Phone,1,600,10/14/19 12:28,"530 5th St, San Francisco, CA 94016" -261147,USB-C Charging Cable,1,11.95,10/10/19 00:51,"240 Dogwood St, San Francisco, CA 94016" -261148,Wired Headphones,1,11.99,10/02/19 12:52,"389 4th St, Seattle, WA 98101" -261149,Google Phone,1,600,10/04/19 23:23,"799 Jackson St, San Francisco, CA 94016" -261149,Wired Headphones,2,11.99,10/04/19 23:23,"799 Jackson St, San Francisco, CA 94016" -261150,Macbook Pro Laptop,1,1700,10/23/19 19:48,"310 Madison St, Seattle, WA 98101" -261151,27in FHD Monitor,1,149.99,10/29/19 14:08,"6 Elm St, Seattle, WA 98101" -261152,Lightning Charging Cable,1,14.95,10/04/19 19:30,"600 River St, Los Angeles, CA 90001" -261153,Google Phone,1,600,10/30/19 23:42,"430 Spruce St, Dallas, TX 75001" -261154,USB-C Charging Cable,1,11.95,10/30/19 01:23,"967 Maple St, Austin, TX 73301" -261155,34in Ultrawide Monitor,1,379.99,10/25/19 19:39,"691 Johnson St, Los Angeles, CA 90001" -261156,Macbook Pro Laptop,1,1700,10/25/19 10:45,"144 Cedar St, Boston, MA 02215" -261157,AAA Batteries (4-pack),1,2.99,10/01/19 10:20,"445 Hickory St, Austin, TX 73301" -261158,Google Phone,1,600,10/10/19 20:48,"190 Chestnut St, Los Angeles, CA 90001" -261159,AA Batteries (4-pack),1,3.84,10/18/19 16:28,"395 Cherry St, New York City, NY 10001" -261160,Wired Headphones,1,11.99,10/22/19 20:01,"563 10th St, San Francisco, CA 94016" -261161,Apple Airpods Headphones,1,150,10/09/19 21:50,"698 South St, Atlanta, GA 30301" -261162,USB-C Charging Cable,1,11.95,10/06/19 17:17,"637 5th St, New York City, NY 10001" -261163,USB-C Charging Cable,1,11.95,10/29/19 11:05,"107 Elm St, San Francisco, CA 94016" -261164,Wired Headphones,1,11.99,10/11/19 21:51,"976 Spruce St, Seattle, WA 98101" -261165,Lightning Charging Cable,1,14.95,10/26/19 18:18,"544 12th St, Dallas, TX 75001" -261166,AAA Batteries (4-pack),1,2.99,10/21/19 09:47,"603 Main St, Austin, TX 73301" -261167,Wired Headphones,1,11.99,10/31/19 21:15,"736 Johnson St, San Francisco, CA 94016" -261168,USB-C Charging Cable,1,11.95,10/19/19 13:03,"419 4th St, Atlanta, GA 30301" -261169,Wired Headphones,1,11.99,10/12/19 12:58,"442 Lakeview St, Portland, OR 97035" -261170,USB-C Charging Cable,1,11.95,10/02/19 21:03,"688 Hickory St, Dallas, TX 75001" -261171,Wired Headphones,1,11.99,10/08/19 10:37,"952 Willow St, San Francisco, CA 94016" -261172,Google Phone,1,600,10/24/19 11:54,"849 Dogwood St, Los Angeles, CA 90001" -261173,Wired Headphones,1,11.99,10/05/19 22:54,"387 Jefferson St, San Francisco, CA 94016" -261174,Apple Airpods Headphones,1,150,10/05/19 21:14,"315 12th St, Boston, MA 02215" -261175,27in FHD Monitor,1,149.99,10/22/19 11:13,"209 Ridge St, Atlanta, GA 30301" -261176,AAA Batteries (4-pack),1,2.99,10/17/19 19:16,"684 Meadow St, New York City, NY 10001" -261177,Wired Headphones,1,11.99,10/18/19 09:32,"229 Willow St, Los Angeles, CA 90001" -261178,Macbook Pro Laptop,1,1700,10/13/19 12:22,"630 4th St, New York City, NY 10001" -261179,USB-C Charging Cable,1,11.95,10/07/19 14:52,"127 Madison St, San Francisco, CA 94016" -261180,Wired Headphones,1,11.99,10/11/19 21:11,"234 Elm St, San Francisco, CA 94016" -261181,27in 4K Gaming Monitor,1,389.99,10/30/19 18:23,"896 Main St, Los Angeles, CA 90001" -261182,AA Batteries (4-pack),2,3.84,10/29/19 20:08,"630 Walnut St, Austin, TX 73301" -261183,Wired Headphones,2,11.99,10/12/19 21:31,"998 Ridge St, Boston, MA 02215" -261184,iPhone,1,700,10/23/19 16:49,"1 North St, Atlanta, GA 30301" -261185,AA Batteries (4-pack),2,3.84,10/03/19 20:18,"775 Maple St, San Francisco, CA 94016" -261186,USB-C Charging Cable,1,11.95,10/22/19 11:11,"755 5th St, Los Angeles, CA 90001" -261187,AAA Batteries (4-pack),1,2.99,10/24/19 12:52,"639 Park St, Los Angeles, CA 90001" -261188,AAA Batteries (4-pack),3,2.99,10/26/19 12:20,"602 Willow St, Atlanta, GA 30301" -261189,USB-C Charging Cable,1,11.95,10/12/19 19:27,"34 11th St, Los Angeles, CA 90001" -261190,Google Phone,1,600,10/17/19 20:43,"391 Pine St, Seattle, WA 98101" -261190,USB-C Charging Cable,1,11.95,10/17/19 20:43,"391 Pine St, Seattle, WA 98101" -261191,USB-C Charging Cable,1,11.95,10/10/19 15:38,"211 10th St, Los Angeles, CA 90001" -261192,AAA Batteries (4-pack),2,2.99,10/03/19 20:06,"520 Jefferson St, Los Angeles, CA 90001" -261192,Lightning Charging Cable,1,14.95,10/03/19 20:06,"520 Jefferson St, Los Angeles, CA 90001" -261193,Apple Airpods Headphones,1,150,10/30/19 11:04,"620 Washington St, Austin, TX 73301" -261194,AAA Batteries (4-pack),1,2.99,10/05/19 13:59,"553 Church St, Seattle, WA 98101" -261195,Flatscreen TV,1,300,10/21/19 00:03,"687 10th St, Dallas, TX 75001" -261196,AA Batteries (4-pack),2,3.84,10/11/19 20:10,"424 11th St, San Francisco, CA 94016" -261197,AAA Batteries (4-pack),1,2.99,10/10/19 16:59,"134 South St, Atlanta, GA 30301" -261198,USB-C Charging Cable,1,11.95,10/16/19 10:11,"255 West St, Dallas, TX 75001" -261199,ThinkPad Laptop,1,999.99,10/13/19 01:35,"884 Maple St, Dallas, TX 75001" -261200,Apple Airpods Headphones,1,150,10/18/19 12:15,"336 Center St, New York City, NY 10001" -261201,Bose SoundSport Headphones,1,99.99,10/21/19 12:36,"132 13th St, Atlanta, GA 30301" -261202,Wired Headphones,1,11.99,10/11/19 15:46,"216 Johnson St, San Francisco, CA 94016" -261203,Flatscreen TV,1,300,10/20/19 12:17,"42 Spruce St, Boston, MA 02215" -261204,Lightning Charging Cable,1,14.95,10/13/19 13:36,"24 Center St, Seattle, WA 98101" -261205,ThinkPad Laptop,1,999.99,10/25/19 12:09,"637 Lake St, San Francisco, CA 94016" -261206,AA Batteries (4-pack),1,3.84,10/01/19 14:11,"271 Meadow St, Boston, MA 02215" -261207,Apple Airpods Headphones,1,150,10/10/19 14:55,"710 Johnson St, New York City, NY 10001" -261208,USB-C Charging Cable,1,11.95,10/27/19 13:59,"599 Adams St, San Francisco, CA 94016" -261209,Macbook Pro Laptop,1,1700,10/05/19 16:32,"66 Center St, Boston, MA 02215" -261210,Apple Airpods Headphones,1,150,10/05/19 00:18,"550 Center St, New York City, NY 10001" -261211,Google Phone,1,600,10/18/19 11:53,"687 West St, Boston, MA 02215" -261212,Apple Airpods Headphones,1,150,10/20/19 08:34,"46 River St, San Francisco, CA 94016" -261213,AAA Batteries (4-pack),2,2.99,10/08/19 11:53,"560 12th St, Boston, MA 02215" -261214,Lightning Charging Cable,2,14.95,10/01/19 14:31,"515 River St, Austin, TX 73301" -261215,AAA Batteries (4-pack),2,2.99,10/08/19 04:46,"138 4th St, New York City, NY 10001" -261216,USB-C Charging Cable,1,11.95,10/02/19 17:19,"201 6th St, New York City, NY 10001" -261217,AAA Batteries (4-pack),1,2.99,10/19/19 22:25,"579 Chestnut St, Seattle, WA 98101" -261218,USB-C Charging Cable,1,11.95,10/11/19 10:59,"398 4th St, New York City, NY 10001" -261219,Wired Headphones,1,11.99,10/24/19 11:28,"276 North St, New York City, NY 10001" -261220,USB-C Charging Cable,1,11.95,10/29/19 05:48,"578 Ridge St, Boston, MA 02215" -261221,Google Phone,1,600,10/18/19 21:49,"883 Maple St, Los Angeles, CA 90001" -261222,USB-C Charging Cable,1,11.95,10/17/19 19:20,"2 Park St, San Francisco, CA 94016" -261223,Wired Headphones,1,11.99,10/20/19 19:25,"260 5th St, Los Angeles, CA 90001" -261224,AA Batteries (4-pack),1,3.84,10/06/19 10:53,"605 Ridge St, Los Angeles, CA 90001" -261225,Macbook Pro Laptop,1,1700,10/29/19 05:33,"36 Cherry St, Dallas, TX 75001" -261226,Wired Headphones,1,11.99,10/14/19 18:55,"376 Lincoln St, San Francisco, CA 94016" -261227,Google Phone,1,600,10/01/19 12:23,"622 Elm St, Boston, MA 02215" -,,,,, -261228,USB-C Charging Cable,1,11.95,10/17/19 09:11,"800 South St, San Francisco, CA 94016" -261229,Macbook Pro Laptop,1,1700,10/06/19 11:05,"725 8th St, Boston, MA 02215" -261230,34in Ultrawide Monitor,1,379.99,10/06/19 11:13,"839 South St, San Francisco, CA 94016" -261231,Wired Headphones,1,11.99,10/10/19 09:44,"410 Meadow St, Boston, MA 02215" -261232,AA Batteries (4-pack),1,3.84,10/19/19 11:00,"830 Center St, Dallas, TX 75001" -261233,iPhone,1,700,10/24/19 11:33,"754 Hill St, San Francisco, CA 94016" -261234,27in 4K Gaming Monitor,1,389.99,10/23/19 14:36,"171 Walnut St, San Francisco, CA 94016" -261235,27in 4K Gaming Monitor,1,389.99,10/16/19 12:23,"873 8th St, San Francisco, CA 94016" -261236,Bose SoundSport Headphones,1,99.99,10/20/19 00:35,"754 Main St, Boston, MA 02215" -261237,20in Monitor,1,109.99,10/01/19 12:08,"376 West St, San Francisco, CA 94016" -261238,USB-C Charging Cable,1,11.95,10/28/19 12:37,"826 Jefferson St, Seattle, WA 98101" -261239,Flatscreen TV,1,300,10/17/19 13:21,"320 Center St, Los Angeles, CA 90001" -261240,Google Phone,1,600,10/22/19 18:21,"758 Maple St, San Francisco, CA 94016" -261240,USB-C Charging Cable,1,11.95,10/22/19 18:21,"758 Maple St, San Francisco, CA 94016" -261241,AAA Batteries (4-pack),1,2.99,10/17/19 15:52,"909 9th St, New York City, NY 10001" -261242,Apple Airpods Headphones,1,150,10/23/19 14:12,"439 Main St, Seattle, WA 98101" -261243,Lightning Charging Cable,1,14.95,10/21/19 19:26,"461 Lincoln St, New York City, NY 10001" -261244,Flatscreen TV,1,300,10/20/19 13:00,"803 Jefferson St, Atlanta, GA 30301" -261245,Lightning Charging Cable,1,14.95,10/22/19 17:53,"779 Park St, Boston, MA 02215" -261246,Flatscreen TV,1,300,10/04/19 16:52,"788 4th St, Boston, MA 02215" -261247,AA Batteries (4-pack),1,3.84,10/07/19 06:02,"786 Adams St, San Francisco, CA 94016" -261248,Wired Headphones,1,11.99,10/18/19 15:12,"938 Center St, Portland, OR 97035" -261249,Wired Headphones,1,11.99,10/07/19 17:01,"519 Church St, Seattle, WA 98101" -261250,Flatscreen TV,1,300,10/26/19 11:32,"469 Jackson St, New York City, NY 10001" -261251,Google Phone,1,600,10/25/19 15:20,"541 Washington St, San Francisco, CA 94016" -261252,USB-C Charging Cable,2,11.95,10/31/19 04:37,"212 Center St, San Francisco, CA 94016" -261253,20in Monitor,1,109.99,10/08/19 10:42,"387 South St, Seattle, WA 98101" -261254,Lightning Charging Cable,1,14.95,10/09/19 22:16,"679 Chestnut St, San Francisco, CA 94016" -261255,Macbook Pro Laptop,1,1700,10/15/19 18:03,"655 Dogwood St, San Francisco, CA 94016" -261256,AAA Batteries (4-pack),1,2.99,10/07/19 11:42,"11 Cherry St, San Francisco, CA 94016" -261257,AA Batteries (4-pack),2,3.84,10/15/19 17:43,"220 Maple St, New York City, NY 10001" -261258,Bose SoundSport Headphones,1,99.99,10/21/19 17:39,"706 Jefferson St, New York City, NY 10001" -261259,Lightning Charging Cable,1,14.95,10/11/19 20:56,"617 River St, Portland, OR 97035" -261260,iPhone,1,700,10/29/19 13:26,"283 Lincoln St, New York City, NY 10001" -261261,AAA Batteries (4-pack),1,2.99,10/03/19 21:26,"862 River St, Los Angeles, CA 90001" -261262,27in 4K Gaming Monitor,1,389.99,10/24/19 11:06,"172 Lake St, Dallas, TX 75001" -261263,USB-C Charging Cable,1,11.95,10/22/19 14:37,"810 6th St, San Francisco, CA 94016" -261264,27in 4K Gaming Monitor,1,389.99,10/01/19 08:25,"786 9th St, Atlanta, GA 30301" -261265,AA Batteries (4-pack),1,3.84,10/07/19 07:57,"151 5th St, San Francisco, CA 94016" -261266,AA Batteries (4-pack),3,3.84,10/23/19 19:30,"866 Jackson St, Seattle, WA 98101" -261267,27in FHD Monitor,1,149.99,10/16/19 23:58,"176 Dogwood St, Dallas, TX 75001" -261268,AAA Batteries (4-pack),2,2.99,10/14/19 04:59,"837 Park St, San Francisco, CA 94016" -261269,Lightning Charging Cable,1,14.95,10/07/19 13:05,"169 South St, Los Angeles, CA 90001" -261270,Wired Headphones,2,11.99,10/26/19 11:02,"920 12th St, San Francisco, CA 94016" -261271,AAA Batteries (4-pack),1,2.99,10/08/19 19:38,"789 Church St, Portland, OR 97035" -261272,AA Batteries (4-pack),1,3.84,10/26/19 12:23,"56 Sunset St, Dallas, TX 75001" -261273,20in Monitor,1,109.99,10/28/19 10:14,"27 Dogwood St, Portland, OR 97035" -261274,AAA Batteries (4-pack),1,2.99,10/26/19 18:04,"109 7th St, Boston, MA 02215" -261275,USB-C Charging Cable,1,11.95,10/29/19 02:19,"670 Jackson St, Atlanta, GA 30301" -261276,AA Batteries (4-pack),1,3.84,10/05/19 13:25,"251 Lake St, New York City, NY 10001" -261277,AAA Batteries (4-pack),2,2.99,10/30/19 17:23,"120 Jefferson St, Atlanta, GA 30301" -261278,Wired Headphones,1,11.99,10/08/19 18:44,"68 14th St, New York City, NY 10001" -261279,34in Ultrawide Monitor,1,379.99,10/09/19 09:35,"606 4th St, Portland, OR 97035" -261280,Macbook Pro Laptop,1,1700,10/29/19 10:06,"25 Lake St, Dallas, TX 75001" -261281,AA Batteries (4-pack),1,3.84,10/04/19 13:41,"854 Pine St, Boston, MA 02215" -261282,USB-C Charging Cable,2,11.95,10/21/19 23:12,"363 Center St, Portland, OR 97035" -261283,20in Monitor,1,109.99,10/29/19 14:44,"374 5th St, New York City, NY 10001" -261284,Google Phone,1,600,10/31/19 06:56,"764 14th St, Dallas, TX 75001" -261284,USB-C Charging Cable,1,11.95,10/31/19 06:56,"764 14th St, Dallas, TX 75001" -261285,27in 4K Gaming Monitor,1,389.99,10/28/19 00:03,"108 Lincoln St, San Francisco, CA 94016" -261286,Apple Airpods Headphones,1,150,10/26/19 00:10,"292 2nd St, San Francisco, CA 94016" -261287,USB-C Charging Cable,1,11.95,10/30/19 10:40,"339 Meadow St, Seattle, WA 98101" -261288,AAA Batteries (4-pack),4,2.99,10/16/19 11:49,"512 West St, Portland, OR 97035" -261289,Lightning Charging Cable,1,14.95,10/26/19 18:28,"527 Cherry St, San Francisco, CA 94016" -261290,20in Monitor,1,109.99,10/16/19 13:04,"210 6th St, Portland, OR 97035" -261291,Lightning Charging Cable,1,14.95,10/23/19 16:22,"643 1st St, San Francisco, CA 94016" -261292,Apple Airpods Headphones,1,150,10/27/19 13:31,"613 Center St, Atlanta, GA 30301" -261293,AAA Batteries (4-pack),1,2.99,10/03/19 15:58,"660 Cedar St, San Francisco, CA 94016" -,,,,, -261294,USB-C Charging Cable,1,11.95,10/05/19 13:35,"871 Cedar St, Boston, MA 02215" -261295,Wired Headphones,1,11.99,10/28/19 21:18,"802 Lake St, Los Angeles, CA 90001" -261296,USB-C Charging Cable,1,11.95,10/09/19 23:33,"731 Hickory St, San Francisco, CA 94016" -261297,Lightning Charging Cable,1,14.95,10/21/19 15:42,"362 Lakeview St, Portland, OR 97035" -261298,AA Batteries (4-pack),1,3.84,10/26/19 12:17,"463 River St, Seattle, WA 98101" -261299,Wired Headphones,1,11.99,10/19/19 19:53,"572 Maple St, Boston, MA 02215" -261300,Lightning Charging Cable,1,14.95,10/21/19 11:26,"902 River St, Seattle, WA 98101" -261301,iPhone,1,700,10/18/19 20:54,"625 Willow St, Los Angeles, CA 90001" -261301,Apple Airpods Headphones,1,150,10/18/19 20:54,"625 Willow St, Los Angeles, CA 90001" -261302,Lightning Charging Cable,1,14.95,10/16/19 11:01,"763 2nd St, Los Angeles, CA 90001" -261303,Lightning Charging Cable,1,14.95,10/28/19 00:33,"940 Main St, San Francisco, CA 94016" -261304,Wired Headphones,1,11.99,10/14/19 23:07,"875 Lake St, Los Angeles, CA 90001" -261305,Lightning Charging Cable,1,14.95,10/17/19 12:14,"46 Forest St, Los Angeles, CA 90001" -261306,Flatscreen TV,1,300,10/15/19 16:12,"305 Walnut St, Boston, MA 02215" -261307,Lightning Charging Cable,1,14.95,10/17/19 22:50,"730 10th St, New York City, NY 10001" -261308,27in FHD Monitor,1,149.99,10/20/19 12:21,"443 Main St, San Francisco, CA 94016" -261309,Apple Airpods Headphones,1,150,10/07/19 09:32,"921 Hill St, Portland, OR 97035" -261310,Apple Airpods Headphones,1,150,10/19/19 14:16,"865 Lakeview St, Dallas, TX 75001" -261311,Wired Headphones,1,11.99,10/14/19 06:24,"520 Chestnut St, Los Angeles, CA 90001" -261312,iPhone,1,700,10/16/19 19:52,"774 Walnut St, New York City, NY 10001" -261313,27in FHD Monitor,1,149.99,10/31/19 02:03,"778 7th St, Atlanta, GA 30301" -261314,Apple Airpods Headphones,1,150,10/21/19 13:44,"365 Cedar St, San Francisco, CA 94016" -261315,34in Ultrawide Monitor,1,379.99,10/14/19 19:05,"29 Cherry St, Portland, OR 97035" -261316,USB-C Charging Cable,1,11.95,10/07/19 09:07,"498 Washington St, San Francisco, CA 94016" -261317,ThinkPad Laptop,1,999.99,10/29/19 17:04,"869 Meadow St, Los Angeles, CA 90001" -261318,Bose SoundSport Headphones,1,99.99,10/13/19 17:27,"700 Walnut St, San Francisco, CA 94016" -261319,Google Phone,1,600,10/22/19 13:44,"13 Washington St, San Francisco, CA 94016" -261320,Wired Headphones,1,11.99,10/29/19 14:08,"300 Lakeview St, Portland, OR 97035" -261321,USB-C Charging Cable,1,11.95,10/15/19 09:18,"452 Cherry St, Los Angeles, CA 90001" -261322,AA Batteries (4-pack),1,3.84,10/03/19 14:22,"371 Meadow St, San Francisco, CA 94016" -261323,Wired Headphones,1,11.99,10/08/19 11:58,"135 10th St, Atlanta, GA 30301" -261324,Wired Headphones,1,11.99,10/31/19 13:12,"848 Ridge St, Portland, OR 97035" -261325,AA Batteries (4-pack),1,3.84,10/15/19 14:17,"666 Elm St, Seattle, WA 98101" -261326,27in 4K Gaming Monitor,1,389.99,10/14/19 16:26,"688 South St, Los Angeles, CA 90001" -261327,Bose SoundSport Headphones,1,99.99,10/26/19 00:09,"485 Lakeview St, San Francisco, CA 94016" -261328,iPhone,1,700,10/27/19 10:08,"150 Highland St, Boston, MA 02215" -261329,34in Ultrawide Monitor,1,379.99,10/09/19 11:08,"790 4th St, Boston, MA 02215" -261330,Wired Headphones,1,11.99,10/29/19 14:05,"14 Johnson St, Austin, TX 73301" -261331,20in Monitor,1,109.99,10/16/19 12:41,"115 1st St, Seattle, WA 98101" -261332,Apple Airpods Headphones,1,150,10/19/19 17:38,"642 Highland St, Los Angeles, CA 90001" -261333,AAA Batteries (4-pack),2,2.99,10/10/19 02:35,"34 Main St, Boston, MA 02215" -261334,27in 4K Gaming Monitor,1,389.99,10/24/19 21:15,"777 Hill St, Los Angeles, CA 90001" -261335,AA Batteries (4-pack),1,3.84,10/29/19 13:29,"832 Sunset St, Los Angeles, CA 90001" -261336,AAA Batteries (4-pack),2,2.99,10/27/19 18:14,"687 Walnut St, San Francisco, CA 94016" -261337,AA Batteries (4-pack),1,3.84,10/11/19 08:45,"405 Hill St, Los Angeles, CA 90001" -261338,Google Phone,1,600,10/15/19 15:32,"606 West St, Boston, MA 02215" -261339,AA Batteries (4-pack),3,3.84,10/15/19 20:43,"195 13th St, San Francisco, CA 94016" -261340,27in FHD Monitor,1,149.99,10/20/19 17:39,"70 6th St, Dallas, TX 75001" -261341,Lightning Charging Cable,1,14.95,10/07/19 09:02,"36 12th St, Los Angeles, CA 90001" -261342,Wired Headphones,1,11.99,10/22/19 05:04,"468 Cedar St, Boston, MA 02215" -261343,AAA Batteries (4-pack),1,2.99,10/10/19 21:54,"402 14th St, Atlanta, GA 30301" -261344,USB-C Charging Cable,1,11.95,10/04/19 10:05,"952 Center St, New York City, NY 10001" -261345,Lightning Charging Cable,1,14.95,10/04/19 22:00,"62 14th St, Atlanta, GA 30301" -261346,Wired Headphones,1,11.99,10/14/19 19:04,"374 Sunset St, San Francisco, CA 94016" -261347,AAA Batteries (4-pack),3,2.99,10/28/19 14:15,"907 8th St, Seattle, WA 98101" -261348,27in FHD Monitor,1,149.99,10/30/19 17:36,"22 Jefferson St, Seattle, WA 98101" -261349,Lightning Charging Cable,1,14.95,10/18/19 12:44,"297 South St, San Francisco, CA 94016" -261350,AAA Batteries (4-pack),1,2.99,10/17/19 01:18,"272 Jackson St, Atlanta, GA 30301" -261351,27in FHD Monitor,1,149.99,10/26/19 20:29,"515 5th St, Los Angeles, CA 90001" -261352,AA Batteries (4-pack),1,3.84,10/14/19 11:16,"504 Wilson St, New York City, NY 10001" -261353,ThinkPad Laptop,1,999.99,10/11/19 10:27,"316 9th St, Austin, TX 73301" -261354,Lightning Charging Cable,1,14.95,10/09/19 21:38,"768 Hill St, Los Angeles, CA 90001" -261355,Flatscreen TV,1,300,10/28/19 19:42,"329 1st St, Portland, OR 97035" -261356,Lightning Charging Cable,1,14.95,10/13/19 16:20,"454 Church St, Boston, MA 02215" -261357,USB-C Charging Cable,1,11.95,10/31/19 22:11,"186 River St, Dallas, TX 75001" -261358,Apple Airpods Headphones,1,150,10/04/19 08:17,"587 9th St, Atlanta, GA 30301" -261359,iPhone,1,700,10/27/19 08:36,"180 Church St, Los Angeles, CA 90001" -261360,27in FHD Monitor,1,149.99,10/31/19 10:45,"952 Park St, Atlanta, GA 30301" -261361,Bose SoundSport Headphones,1,99.99,10/19/19 10:05,"729 7th St, New York City, NY 10001" -261362,Flatscreen TV,1,300,10/20/19 17:45,"867 Adams St, Los Angeles, CA 90001" -261363,AA Batteries (4-pack),1,3.84,10/21/19 07:31,"855 14th St, Portland, OR 97035" -261364,Wired Headphones,1,11.99,10/31/19 18:39,"820 Johnson St, Dallas, TX 75001" -261365,Lightning Charging Cable,1,14.95,10/27/19 21:52,"245 Madison St, San Francisco, CA 94016" -261366,Flatscreen TV,1,300,10/24/19 16:28,"728 Center St, Atlanta, GA 30301" -261367,Lightning Charging Cable,1,14.95,10/23/19 21:36,"860 Forest St, Los Angeles, CA 90001" -261368,Wired Headphones,1,11.99,10/26/19 15:26,"887 Forest St, Los Angeles, CA 90001" -261369,iPhone,1,700,10/29/19 13:43,"86 Jackson St, San Francisco, CA 94016" -261370,USB-C Charging Cable,2,11.95,10/20/19 10:52,"552 Spruce St, Los Angeles, CA 90001" -261371,USB-C Charging Cable,1,11.95,10/13/19 22:31,"805 Dogwood St, Seattle, WA 98101" -261372,27in 4K Gaming Monitor,1,389.99,10/24/19 16:22,"151 West St, Dallas, TX 75001" -261373,Google Phone,1,600,10/27/19 01:28,"72 Sunset St, San Francisco, CA 94016" -261374,AAA Batteries (4-pack),2,2.99,10/11/19 21:19,"18 Wilson St, Portland, OR 97035" -261375,27in FHD Monitor,1,149.99,10/18/19 19:33,"448 Meadow St, San Francisco, CA 94016" -261376,Macbook Pro Laptop,1,1700,10/20/19 14:18,"167 Lakeview St, Los Angeles, CA 90001" -261377,Wired Headphones,1,11.99,10/01/19 13:05,"579 Dogwood St, Seattle, WA 98101" -261378,Bose SoundSport Headphones,1,99.99,10/19/19 12:02,"489 Washington St, Austin, TX 73301" -261379,20in Monitor,1,109.99,10/19/19 19:46,"537 4th St, New York City, NY 10001" -261380,Wired Headphones,1,11.99,10/14/19 19:48,"182 5th St, San Francisco, CA 94016" -261381,AAA Batteries (4-pack),2,2.99,10/04/19 19:14,"544 Hill St, Atlanta, GA 30301" -261382,ThinkPad Laptop,1,999.99,10/24/19 06:36,"866 Dogwood St, Seattle, WA 98101" -261383,iPhone,1,700,10/18/19 18:18,"646 Meadow St, New York City, NY 10001" -261384,Bose SoundSport Headphones,2,99.99,10/21/19 22:46,"624 10th St, Portland, ME 04101" -261385,Wired Headphones,1,11.99,10/18/19 16:05,"693 10th St, Seattle, WA 98101" -261386,AA Batteries (4-pack),3,3.84,10/13/19 16:27,"617 Jefferson St, Portland, OR 97035" -261387,Apple Airpods Headphones,1,150,10/04/19 07:31,"103 Elm St, San Francisco, CA 94016" -261388,AA Batteries (4-pack),2,3.84,10/26/19 15:50,"528 10th St, Dallas, TX 75001" -261389,Flatscreen TV,1,300,10/03/19 12:30,"498 Main St, Boston, MA 02215" -261390,Wired Headphones,1,11.99,10/08/19 10:08,"16 Highland St, San Francisco, CA 94016" -261391,Bose SoundSport Headphones,1,99.99,10/25/19 12:27,"995 10th St, Portland, OR 97035" -261392,Apple Airpods Headphones,1,150,10/07/19 14:29,"592 Center St, San Francisco, CA 94016" -261393,Apple Airpods Headphones,1,150,10/06/19 19:44,"179 Sunset St, Portland, OR 97035" -261394,AA Batteries (4-pack),1,3.84,10/22/19 23:54,"818 Forest St, Atlanta, GA 30301" -261395,Wired Headphones,1,11.99,10/22/19 16:21,"880 12th St, Boston, MA 02215" -261396,Macbook Pro Laptop,1,1700,10/07/19 11:26,"722 West St, Austin, TX 73301" -261397,USB-C Charging Cable,1,11.95,10/16/19 08:26,"410 Johnson St, San Francisco, CA 94016" -261398,Wired Headphones,1,11.99,10/01/19 15:24,"755 Sunset St, New York City, NY 10001" -261399,AA Batteries (4-pack),1,3.84,10/18/19 20:36,"980 Elm St, Seattle, WA 98101" -261400,iPhone,1,700,10/11/19 14:36,"336 Highland St, San Francisco, CA 94016" -261400,Wired Headphones,1,11.99,10/11/19 14:36,"336 Highland St, San Francisco, CA 94016" -261401,Bose SoundSport Headphones,1,99.99,10/19/19 19:25,"559 Pine St, Austin, TX 73301" -261402,AA Batteries (4-pack),3,3.84,10/19/19 20:35,"9 Ridge St, New York City, NY 10001" -261403,AA Batteries (4-pack),1,3.84,10/23/19 22:02,"755 Park St, Portland, OR 97035" -261404,27in 4K Gaming Monitor,1,389.99,10/06/19 16:13,"710 Chestnut St, Los Angeles, CA 90001" -261405,Flatscreen TV,1,300,10/07/19 17:16,"418 Adams St, Austin, TX 73301" -261406,Bose SoundSport Headphones,1,99.99,10/19/19 11:34,"840 South St, San Francisco, CA 94016" -261407,AAA Batteries (4-pack),1,2.99,10/04/19 22:22,"956 Jackson St, Boston, MA 02215" -261408,AA Batteries (4-pack),1,3.84,10/07/19 13:16,"2 Cherry St, Boston, MA 02215" -261409,Bose SoundSport Headphones,1,99.99,10/15/19 11:57,"258 North St, Atlanta, GA 30301" -261410,AA Batteries (4-pack),2,3.84,10/26/19 17:23,"404 13th St, Los Angeles, CA 90001" -261411,27in 4K Gaming Monitor,1,389.99,10/21/19 09:03,"329 West St, Los Angeles, CA 90001" -261412,34in Ultrawide Monitor,1,379.99,10/26/19 17:24,"421 Main St, Los Angeles, CA 90001" -261413,Google Phone,1,600,10/27/19 11:51,"756 Maple St, San Francisco, CA 94016" -261414,USB-C Charging Cable,2,11.95,10/12/19 12:23,"41 Wilson St, Portland, ME 04101" -261415,USB-C Charging Cable,1,11.95,10/15/19 16:53,"708 Ridge St, Austin, TX 73301" -261416,Bose SoundSport Headphones,1,99.99,10/21/19 22:10,"440 North St, San Francisco, CA 94016" -261417,AA Batteries (4-pack),1,3.84,10/19/19 12:24,"738 Cherry St, Los Angeles, CA 90001" -261418,Google Phone,1,600,10/26/19 08:40,"848 Dogwood St, Portland, OR 97035" -261419,Lightning Charging Cable,1,14.95,10/05/19 10:16,"932 North St, San Francisco, CA 94016" -261420,ThinkPad Laptop,1,999.99,10/18/19 13:21,"676 Hill St, Boston, MA 02215" -261421,AAA Batteries (4-pack),1,2.99,10/28/19 19:45,"352 Jackson St, Seattle, WA 98101" -261422,Flatscreen TV,1,300,10/26/19 00:11,"274 13th St, Los Angeles, CA 90001" -261423,USB-C Charging Cable,1,11.95,10/14/19 21:40,"875 Hickory St, Dallas, TX 75001" -261424,AAA Batteries (4-pack),1,2.99,10/20/19 17:02,"617 West St, San Francisco, CA 94016" -261425,USB-C Charging Cable,2,11.95,10/17/19 12:44,"736 Dogwood St, San Francisco, CA 94016" -261426,Apple Airpods Headphones,1,150,10/07/19 18:33,"412 Hickory St, San Francisco, CA 94016" -261427,Lightning Charging Cable,1,14.95,10/09/19 17:56,"917 Hickory St, Atlanta, GA 30301" -261428,AAA Batteries (4-pack),1,2.99,10/08/19 11:03,"517 Willow St, Seattle, WA 98101" -261429,AA Batteries (4-pack),1,3.84,10/29/19 13:47,"266 Forest St, Boston, MA 02215" -261430,Bose SoundSport Headphones,1,99.99,10/03/19 00:45,"960 Park St, Austin, TX 73301" -261431,AA Batteries (4-pack),1,3.84,10/07/19 14:24,"788 Jefferson St, Portland, OR 97035" -261432,AAA Batteries (4-pack),1,2.99,10/24/19 08:40,"675 Hill St, Boston, MA 02215" -261433,27in 4K Gaming Monitor,1,389.99,10/08/19 12:41,"521 Cherry St, Dallas, TX 75001" -261434,USB-C Charging Cable,1,11.95,10/31/19 00:51,"668 Cherry St, Austin, TX 73301" -261435,Macbook Pro Laptop,1,1700,10/22/19 10:45,"813 Lincoln St, Los Angeles, CA 90001" -261436,Apple Airpods Headphones,1,150,10/06/19 17:21,"827 Ridge St, San Francisco, CA 94016" -261437,Wired Headphones,1,11.99,10/25/19 21:20,"713 6th St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -261438,USB-C Charging Cable,1,11.95,10/07/19 17:51,"677 8th St, Los Angeles, CA 90001" -261439,Lightning Charging Cable,1,14.95,10/26/19 20:12,"468 Spruce St, Atlanta, GA 30301" -261440,USB-C Charging Cable,1,11.95,10/08/19 15:00,"90 12th St, Atlanta, GA 30301" -261441,Wired Headphones,1,11.99,10/21/19 19:16,"100 Forest St, Portland, OR 97035" -261442,AAA Batteries (4-pack),8,2.99,10/16/19 20:31,"36 Center St, Boston, MA 02215" -261443,AAA Batteries (4-pack),3,2.99,10/10/19 16:36,"63 Park St, Austin, TX 73301" -261444,ThinkPad Laptop,1,999.99,10/27/19 02:44,"250 Hill St, New York City, NY 10001" -261445,AA Batteries (4-pack),1,3.84,10/31/19 11:37,"15 West St, New York City, NY 10001" -261446,20in Monitor,1,109.99,10/16/19 19:22,"378 Park St, New York City, NY 10001" -261447,Macbook Pro Laptop,1,1700,10/04/19 16:28,"628 Wilson St, New York City, NY 10001" -261448,Apple Airpods Headphones,1,150,10/11/19 15:36,"873 Lakeview St, Los Angeles, CA 90001" -261449,Wired Headphones,1,11.99,10/25/19 08:21,"651 Main St, Los Angeles, CA 90001" -261450,USB-C Charging Cable,1,11.95,10/27/19 11:44,"784 12th St, Seattle, WA 98101" -261451,Bose SoundSport Headphones,1,99.99,10/20/19 10:21,"289 Washington St, Seattle, WA 98101" -261452,Bose SoundSport Headphones,1,99.99,10/09/19 11:35,"127 Lake St, Seattle, WA 98101" -261453,USB-C Charging Cable,1,11.95,10/10/19 12:57,"838 Willow St, Dallas, TX 75001" -261454,Apple Airpods Headphones,1,150,10/23/19 11:06,"376 Johnson St, Los Angeles, CA 90001" -261455,Lightning Charging Cable,1,14.95,10/15/19 17:38,"460 Highland St, New York City, NY 10001" -261456,Apple Airpods Headphones,1,150,10/31/19 15:39,"131 River St, New York City, NY 10001" -261457,Apple Airpods Headphones,1,150,10/05/19 09:25,"989 Dogwood St, Los Angeles, CA 90001" -261458,Bose SoundSport Headphones,1,99.99,10/12/19 22:13,"269 Dogwood St, Los Angeles, CA 90001" -261459,AA Batteries (4-pack),1,3.84,10/26/19 20:24,"245 Lincoln St, Atlanta, GA 30301" -261460,USB-C Charging Cable,1,11.95,10/14/19 19:44,"322 Wilson St, Los Angeles, CA 90001" -261461,ThinkPad Laptop,1,999.99,10/10/19 15:31,"522 Pine St, Atlanta, GA 30301" -261462,USB-C Charging Cable,2,11.95,10/21/19 05:43,"327 Dogwood St, San Francisco, CA 94016" -261463,USB-C Charging Cable,1,11.95,10/11/19 00:24,"78 Park St, Portland, OR 97035" -261464,Lightning Charging Cable,1,14.95,10/01/19 15:18,"339 West St, San Francisco, CA 94016" -261465,20in Monitor,1,109.99,10/14/19 10:38,"90 Church St, New York City, NY 10001" -261466,iPhone,1,700,10/04/19 16:48,"221 Main St, Portland, OR 97035" -261466,Wired Headphones,2,11.99,10/04/19 16:48,"221 Main St, Portland, OR 97035" -261467,27in 4K Gaming Monitor,1,389.99,10/13/19 18:00,"14 Cedar St, Boston, MA 02215" -261468,Apple Airpods Headphones,1,150,10/02/19 18:55,"544 North St, San Francisco, CA 94016" -261469,USB-C Charging Cable,1,11.95,10/09/19 13:09,"980 Walnut St, Austin, TX 73301" -261470,Vareebadd Phone,1,400,10/07/19 13:58,"548 West St, Portland, OR 97035" -261470,USB-C Charging Cable,2,11.95,10/07/19 13:58,"548 West St, Portland, OR 97035" -261471,USB-C Charging Cable,1,11.95,10/28/19 10:38,"551 Sunset St, Los Angeles, CA 90001" -261472,Lightning Charging Cable,1,14.95,10/09/19 15:14,"667 Lakeview St, Austin, TX 73301" -261473,Wired Headphones,1,11.99,10/07/19 16:24,"662 Lincoln St, Los Angeles, CA 90001" -261474,Lightning Charging Cable,1,14.95,10/25/19 11:54,"41 Maple St, Los Angeles, CA 90001" -261475,AA Batteries (4-pack),1,3.84,10/08/19 17:31,"584 Wilson St, New York City, NY 10001" -261476,Lightning Charging Cable,1,14.95,10/29/19 21:47,"946 Center St, Austin, TX 73301" -261477,Apple Airpods Headphones,1,150,10/21/19 19:59,"128 13th St, Dallas, TX 75001" -261478,iPhone,1,700,10/08/19 20:04,"398 13th St, Austin, TX 73301" -261479,Vareebadd Phone,1,400,10/30/19 21:10,"59 12th St, Dallas, TX 75001" -261480,Apple Airpods Headphones,1,150,10/13/19 09:39,"902 9th St, Austin, TX 73301" -261481,Google Phone,1,600,10/19/19 17:25,"881 7th St, Los Angeles, CA 90001" -261482,Flatscreen TV,1,300,10/09/19 18:58,"145 Cedar St, San Francisco, CA 94016" -261483,Bose SoundSport Headphones,1,99.99,10/13/19 13:42,"462 10th St, Seattle, WA 98101" -261484,Lightning Charging Cable,1,14.95,10/05/19 14:17,"782 Meadow St, Dallas, TX 75001" -261485,USB-C Charging Cable,1,11.95,10/01/19 14:54,"657 Cedar St, San Francisco, CA 94016" -261486,AA Batteries (4-pack),1,3.84,10/09/19 16:19,"402 Cedar St, Seattle, WA 98101" -261487,AAA Batteries (4-pack),3,2.99,10/12/19 12:36,"905 Jackson St, Los Angeles, CA 90001" -261488,AA Batteries (4-pack),2,3.84,10/15/19 10:09,"212 Madison St, San Francisco, CA 94016" -261489,USB-C Charging Cable,2,11.95,10/15/19 20:21,"381 Johnson St, Atlanta, GA 30301" -261490,Google Phone,1,600,10/29/19 16:07,"993 Highland St, New York City, NY 10001" -261491,27in 4K Gaming Monitor,1,389.99,10/05/19 12:16,"518 River St, Atlanta, GA 30301" -261492,AA Batteries (4-pack),1,3.84,10/17/19 09:35,"590 Walnut St, San Francisco, CA 94016" -261493,Lightning Charging Cable,1,14.95,10/31/19 12:05,"32 1st St, Los Angeles, CA 90001" -261494,Bose SoundSport Headphones,1,99.99,10/17/19 14:08,"946 Cedar St, Austin, TX 73301" -261495,Apple Airpods Headphones,1,150,10/11/19 09:32,"609 Adams St, New York City, NY 10001" -261496,iPhone,1,700,10/29/19 14:35,"67 Wilson St, Atlanta, GA 30301" -261496,Wired Headphones,1,11.99,10/29/19 14:35,"67 Wilson St, Atlanta, GA 30301" -261497,Google Phone,1,600,10/09/19 21:14,"649 Meadow St, Dallas, TX 75001" -261498,Flatscreen TV,1,300,10/19/19 11:10,"605 Jefferson St, Los Angeles, CA 90001" -261499,ThinkPad Laptop,1,999.99,10/11/19 14:05,"27 Wilson St, Dallas, TX 75001" -261500,AA Batteries (4-pack),3,3.84,10/31/19 10:01,"289 7th St, Boston, MA 02215" -261501,Lightning Charging Cable,1,14.95,10/20/19 10:01,"969 Ridge St, Austin, TX 73301" -261502,Bose SoundSport Headphones,1,99.99,10/05/19 07:21,"469 Lake St, San Francisco, CA 94016" -261503,Lightning Charging Cable,1,14.95,10/08/19 12:22,"203 Jefferson St, Portland, OR 97035" -261503,20in Monitor,1,109.99,10/08/19 12:22,"203 Jefferson St, Portland, OR 97035" -261504,USB-C Charging Cable,1,11.95,10/21/19 10:01,"241 Cedar St, Boston, MA 02215" -261505,USB-C Charging Cable,1,11.95,10/12/19 13:31,"574 North St, New York City, NY 10001" -261506,iPhone,1,700,10/06/19 23:50,"2 Forest St, Dallas, TX 75001" -261507,USB-C Charging Cable,1,11.95,10/18/19 16:53,"180 Spruce St, Los Angeles, CA 90001" -261508,Macbook Pro Laptop,1,1700,10/12/19 01:34,"663 Meadow St, New York City, NY 10001" -261509,Flatscreen TV,1,300,10/14/19 11:39,"919 Wilson St, Boston, MA 02215" -261510,Apple Airpods Headphones,1,150,10/20/19 12:19,"883 Pine St, Seattle, WA 98101" -261511,AA Batteries (4-pack),1,3.84,10/28/19 00:52,"456 Meadow St, New York City, NY 10001" -261512,Bose SoundSport Headphones,1,99.99,10/10/19 20:32,"408 Church St, San Francisco, CA 94016" -261513,USB-C Charging Cable,1,11.95,10/27/19 14:11,"865 South St, San Francisco, CA 94016" -261514,USB-C Charging Cable,1,11.95,10/31/19 06:10,"72 Spruce St, San Francisco, CA 94016" -261515,34in Ultrawide Monitor,1,379.99,10/01/19 16:39,"51 Lakeview St, Los Angeles, CA 90001" -261516,AAA Batteries (4-pack),1,2.99,10/02/19 20:50,"280 Johnson St, San Francisco, CA 94016" -261517,Wired Headphones,1,11.99,10/28/19 18:43,"39 Willow St, Dallas, TX 75001" -261518,USB-C Charging Cable,1,11.95,10/06/19 02:00,"755 Lakeview St, Los Angeles, CA 90001" -261519,AA Batteries (4-pack),1,3.84,10/11/19 18:02,"182 Lincoln St, San Francisco, CA 94016" -261520,Macbook Pro Laptop,1,1700,10/29/19 23:11,"628 Maple St, Dallas, TX 75001" -261521,AA Batteries (4-pack),1,3.84,10/13/19 09:56,"431 Lake St, Dallas, TX 75001" -261522,Lightning Charging Cable,1,14.95,10/30/19 18:59,"482 14th St, Austin, TX 73301" -261523,AA Batteries (4-pack),1,3.84,10/17/19 12:55,"997 5th St, Austin, TX 73301" -261524,Google Phone,1,600,10/27/19 14:14,"812 Highland St, Boston, MA 02215" -261525,AA Batteries (4-pack),1,3.84,10/30/19 12:03,"892 13th St, Los Angeles, CA 90001" -261526,AA Batteries (4-pack),1,3.84,10/14/19 16:45,"54 Chestnut St, Los Angeles, CA 90001" -261527,AA Batteries (4-pack),2,3.84,10/26/19 18:15,"346 Wilson St, Boston, MA 02215" -261528,Lightning Charging Cable,1,14.95,10/02/19 21:59,"121 North St, Boston, MA 02215" -261529,Lightning Charging Cable,1,14.95,10/25/19 22:31,"595 Cherry St, Portland, OR 97035" -261530,Bose SoundSport Headphones,1,99.99,10/30/19 21:16,"876 Pine St, San Francisco, CA 94016" -261531,Apple Airpods Headphones,1,150,10/03/19 19:37,"642 Hickory St, San Francisco, CA 94016" -261532,Macbook Pro Laptop,1,1700,10/10/19 19:57,"394 Cedar St, Portland, ME 04101" -261533,Lightning Charging Cable,2,14.95,10/24/19 08:31,"245 Walnut St, Los Angeles, CA 90001" -261534,Lightning Charging Cable,1,14.95,10/29/19 20:33,"646 Elm St, New York City, NY 10001" -261535,iPhone,1,700,10/25/19 16:22,"885 14th St, Los Angeles, CA 90001" -261535,Wired Headphones,1,11.99,10/25/19 16:22,"885 14th St, Los Angeles, CA 90001" -261536,USB-C Charging Cable,1,11.95,10/19/19 23:05,"422 Center St, San Francisco, CA 94016" -261537,20in Monitor,1,109.99,10/06/19 18:42,"902 Main St, Los Angeles, CA 90001" -261538,AA Batteries (4-pack),1,3.84,10/12/19 17:23,"422 Madison St, Portland, OR 97035" -261539,Bose SoundSport Headphones,1,99.99,10/18/19 15:52,"467 Jefferson St, San Francisco, CA 94016" -261540,27in FHD Monitor,1,149.99,10/19/19 16:13,"404 10th St, Los Angeles, CA 90001" -261541,Flatscreen TV,1,300,10/07/19 16:47,"725 Ridge St, New York City, NY 10001" -261542,Flatscreen TV,1,300,10/05/19 17:31,"951 Adams St, New York City, NY 10001" -261543,iPhone,1,700,10/03/19 16:45,"246 Pine St, San Francisco, CA 94016" -261543,Lightning Charging Cable,1,14.95,10/03/19 16:45,"246 Pine St, San Francisco, CA 94016" -261543,Wired Headphones,1,11.99,10/03/19 16:45,"246 Pine St, San Francisco, CA 94016" -261544,AA Batteries (4-pack),1,3.84,10/26/19 19:53,"452 9th St, Los Angeles, CA 90001" -261545,USB-C Charging Cable,1,11.95,10/20/19 21:34,"225 South St, New York City, NY 10001" -261546,27in 4K Gaming Monitor,1,389.99,10/14/19 06:43,"172 Wilson St, Boston, MA 02215" -261547,Apple Airpods Headphones,1,150,10/27/19 12:18,"109 Elm St, Boston, MA 02215" -261548,Wired Headphones,1,11.99,10/24/19 21:13,"302 14th St, San Francisco, CA 94016" -261549,Flatscreen TV,1,300,10/14/19 09:51,"823 6th St, San Francisco, CA 94016" -261550,Lightning Charging Cable,1,14.95,10/30/19 09:18,"379 13th St, San Francisco, CA 94016" -261551,Lightning Charging Cable,1,14.95,10/16/19 13:23,"627 Cedar St, San Francisco, CA 94016" -261552,AAA Batteries (4-pack),1,2.99,10/31/19 10:04,"570 6th St, New York City, NY 10001" -261553,Wired Headphones,1,11.99,10/22/19 17:38,"927 Madison St, Dallas, TX 75001" -261554,USB-C Charging Cable,1,11.95,10/14/19 21:58,"139 Walnut St, Dallas, TX 75001" -261555,iPhone,1,700,10/27/19 23:32,"168 Highland St, Seattle, WA 98101" -261556,iPhone,1,700,10/08/19 16:24,"141 Madison St, Los Angeles, CA 90001" -261557,34in Ultrawide Monitor,1,379.99,10/09/19 19:51,"284 Johnson St, Seattle, WA 98101" -261558,20in Monitor,1,109.99,10/21/19 05:43,"79 2nd St, Dallas, TX 75001" -261559,AA Batteries (4-pack),1,3.84,10/13/19 20:21,"223 2nd St, Los Angeles, CA 90001" -261560,Lightning Charging Cable,1,14.95,10/10/19 16:05,"804 11th St, Dallas, TX 75001" -261561,AAA Batteries (4-pack),1,2.99,10/21/19 07:32,"350 10th St, Atlanta, GA 30301" -261562,Lightning Charging Cable,1,14.95,10/01/19 12:00,"578 13th St, Boston, MA 02215" -261563,iPhone,1,700,10/11/19 11:46,"969 Church St, Dallas, TX 75001" -261564,Macbook Pro Laptop,1,1700,10/23/19 01:08,"486 1st St, Los Angeles, CA 90001" -261565,Wired Headphones,1,11.99,10/30/19 21:19,"149 West St, Los Angeles, CA 90001" -261566,Macbook Pro Laptop,1,1700,10/30/19 13:51,"659 Cedar St, Atlanta, GA 30301" -261567,AAA Batteries (4-pack),1,2.99,10/18/19 22:52,"809 Lake St, San Francisco, CA 94016" -261568,Wired Headphones,1,11.99,10/19/19 20:03,"399 8th St, San Francisco, CA 94016" -261569,iPhone,1,700,10/10/19 04:03,"976 8th St, Los Angeles, CA 90001" -261569,Apple Airpods Headphones,1,150,10/10/19 04:03,"976 8th St, Los Angeles, CA 90001" -261570,AAA Batteries (4-pack),1,2.99,10/09/19 12:49,"502 Pine St, Portland, OR 97035" -261571,AA Batteries (4-pack),1,3.84,10/25/19 19:17,"930 13th St, Los Angeles, CA 90001" -261572,Lightning Charging Cable,1,14.95,10/14/19 15:48,"545 Walnut St, San Francisco, CA 94016" -261573,iPhone,1,700,10/01/19 09:40,"461 9th St, Atlanta, GA 30301" -261574,iPhone,1,700,10/07/19 21:55,"883 Walnut St, New York City, NY 10001" -261575,USB-C Charging Cable,1,11.95,10/02/19 16:45,"931 Maple St, Atlanta, GA 30301" -261576,Lightning Charging Cable,1,14.95,10/11/19 08:55,"85 Adams St, San Francisco, CA 94016" -261577,AA Batteries (4-pack),2,3.84,10/01/19 17:18,"941 9th St, Boston, MA 02215" -261578,Wired Headphones,1,11.99,10/15/19 12:27,"786 2nd St, Los Angeles, CA 90001" -261579,AA Batteries (4-pack),1,3.84,10/30/19 12:23,"393 Church St, Los Angeles, CA 90001" -261580,27in 4K Gaming Monitor,1,389.99,10/11/19 22:48,"581 Adams St, New York City, NY 10001" -261581,27in FHD Monitor,1,149.99,10/23/19 09:52,"711 Center St, Boston, MA 02215" -261582,Vareebadd Phone,1,400,10/04/19 08:58,"438 5th St, San Francisco, CA 94016" -261583,Lightning Charging Cable,1,14.95,10/12/19 20:15,"287 Walnut St, Los Angeles, CA 90001" -261584,Wired Headphones,1,11.99,10/04/19 09:12,"583 Willow St, San Francisco, CA 94016" -261585,20in Monitor,1,109.99,10/09/19 14:36,"74 Lakeview St, Atlanta, GA 30301" -261586,AAA Batteries (4-pack),1,2.99,10/11/19 20:03,"703 Main St, Los Angeles, CA 90001" -261586,AAA Batteries (4-pack),1,2.99,10/11/19 20:03,"703 Main St, Los Angeles, CA 90001" -261587,AAA Batteries (4-pack),1,2.99,10/19/19 15:12,"751 4th St, Los Angeles, CA 90001" -261588,34in Ultrawide Monitor,1,379.99,10/16/19 17:10,"887 Lake St, Boston, MA 02215" -261589,Flatscreen TV,1,300,10/25/19 09:15,"836 River St, San Francisco, CA 94016" -261590,Flatscreen TV,1,300,10/07/19 22:03,"851 Sunset St, Atlanta, GA 30301" -261591,USB-C Charging Cable,1,11.95,10/15/19 14:14,"77 Dogwood St, San Francisco, CA 94016" -261592,27in 4K Gaming Monitor,1,389.99,10/31/19 18:34,"938 Spruce St, Boston, MA 02215" -261593,Wired Headphones,1,11.99,10/04/19 18:53,"295 Spruce St, Dallas, TX 75001" -261594,iPhone,1,700,10/26/19 07:43,"267 Pine St, San Francisco, CA 94016" -261595,AAA Batteries (4-pack),2,2.99,10/22/19 18:43,"200 Pine St, San Francisco, CA 94016" -261596,Flatscreen TV,1,300,10/12/19 11:26,"603 Cedar St, Portland, OR 97035" -261597,34in Ultrawide Monitor,1,379.99,10/18/19 22:07,"817 Center St, Dallas, TX 75001" -261598,Bose SoundSport Headphones,1,99.99,10/02/19 06:11,"799 14th St, San Francisco, CA 94016" -261599,Bose SoundSport Headphones,1,99.99,10/16/19 18:17,"694 Main St, San Francisco, CA 94016" -261600,Lightning Charging Cable,1,14.95,10/06/19 18:37,"772 1st St, Los Angeles, CA 90001" -261601,27in FHD Monitor,1,149.99,10/17/19 20:58,"218 Meadow St, Boston, MA 02215" -261602,Wired Headphones,1,11.99,10/17/19 23:51,"750 Highland St, Seattle, WA 98101" -261603,AAA Batteries (4-pack),1,2.99,10/16/19 20:32,"852 Elm St, Dallas, TX 75001" -261604,Apple Airpods Headphones,1,150,10/30/19 20:55,"703 13th St, Portland, OR 97035" -261605,Lightning Charging Cable,1,14.95,10/04/19 20:10,"470 Elm St, Boston, MA 02215" -261606,AA Batteries (4-pack),1,3.84,10/01/19 07:49,"945 Hill St, Seattle, WA 98101" -261607,Wired Headphones,1,11.99,10/24/19 20:23,"83 6th St, Dallas, TX 75001" -261608,27in FHD Monitor,1,149.99,10/13/19 09:33,"823 Jefferson St, Los Angeles, CA 90001" -261609,USB-C Charging Cable,1,11.95,10/11/19 19:09,"981 Lake St, Seattle, WA 98101" -261610,Bose SoundSport Headphones,1,99.99,10/30/19 02:05,"879 Spruce St, New York City, NY 10001" -261611,27in FHD Monitor,1,149.99,10/27/19 14:30,"820 Main St, New York City, NY 10001" -261612,Google Phone,1,600,10/03/19 07:46,"883 12th St, Portland, OR 97035" -261613,AA Batteries (4-pack),1,3.84,10/07/19 21:57,"706 Madison St, Atlanta, GA 30301" -261614,27in 4K Gaming Monitor,1,389.99,10/07/19 06:46,"343 West St, San Francisco, CA 94016" -261615,34in Ultrawide Monitor,1,379.99,10/28/19 12:29,"98 Chestnut St, Atlanta, GA 30301" -261616,Bose SoundSport Headphones,1,99.99,10/05/19 16:18,"931 10th St, Seattle, WA 98101" -261617,Google Phone,1,600,10/01/19 09:01,"725 Adams St, San Francisco, CA 94016" -261617,USB-C Charging Cable,1,11.95,10/01/19 09:01,"725 Adams St, San Francisco, CA 94016" -261618,Lightning Charging Cable,2,14.95,10/30/19 20:21,"879 Cedar St, Los Angeles, CA 90001" -261619,34in Ultrawide Monitor,1,379.99,10/25/19 10:43,"979 Pine St, Los Angeles, CA 90001" -261620,AA Batteries (4-pack),1,3.84,10/31/19 13:06,"853 Hickory St, New York City, NY 10001" -261621,AA Batteries (4-pack),1,3.84,10/31/19 23:18,"959 Willow St, New York City, NY 10001" -261622,Apple Airpods Headphones,1,150,10/21/19 21:20,"215 Sunset St, San Francisco, CA 94016" -261623,iPhone,1,700,10/20/19 20:18,"775 West St, San Francisco, CA 94016" -261624,USB-C Charging Cable,2,11.95,10/15/19 20:57,"158 9th St, Austin, TX 73301" -261625,USB-C Charging Cable,1,11.95,10/17/19 16:20,"890 Meadow St, New York City, NY 10001" -261626,Bose SoundSport Headphones,1,99.99,10/19/19 21:31,"965 6th St, Austin, TX 73301" -261627,Lightning Charging Cable,1,14.95,10/04/19 15:58,"169 2nd St, New York City, NY 10001" -261628,Apple Airpods Headphones,1,150,10/19/19 09:53,"784 Ridge St, New York City, NY 10001" -261629,AAA Batteries (4-pack),1,2.99,10/31/19 12:54,"442 5th St, San Francisco, CA 94016" -261630,27in 4K Gaming Monitor,1,389.99,10/05/19 12:15,"323 Cherry St, Seattle, WA 98101" -261631,Apple Airpods Headphones,1,150,10/15/19 09:40,"493 4th St, New York City, NY 10001" -261632,AAA Batteries (4-pack),2,2.99,10/17/19 09:12,"353 Maple St, Atlanta, GA 30301" -261633,Lightning Charging Cable,1,14.95,10/22/19 11:57,"488 Hickory St, San Francisco, CA 94016" -261634,AA Batteries (4-pack),1,3.84,10/09/19 13:04,"199 Wilson St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -261635,Apple Airpods Headphones,1,150,10/30/19 09:05,"546 Hickory St, San Francisco, CA 94016" -261636,AAA Batteries (4-pack),1,2.99,10/27/19 21:15,"869 Adams St, Los Angeles, CA 90001" -261637,Macbook Pro Laptop,1,1700,10/09/19 20:16,"43 5th St, San Francisco, CA 94016" -261638,Bose SoundSport Headphones,1,99.99,10/01/19 20:29,"640 Park St, San Francisco, CA 94016" -261639,Wired Headphones,1,11.99,10/13/19 21:19,"494 Cedar St, Los Angeles, CA 90001" -261639,AAA Batteries (4-pack),1,2.99,10/13/19 21:19,"494 Cedar St, Los Angeles, CA 90001" -261640,Google Phone,1,600,10/11/19 13:09,"161 Lakeview St, Dallas, TX 75001" -261641,20in Monitor,1,109.99,10/31/19 17:09,"424 Dogwood St, New York City, NY 10001" -261642,Macbook Pro Laptop,1,1700,10/05/19 17:05,"558 Washington St, New York City, NY 10001" -261643,Lightning Charging Cable,1,14.95,10/23/19 10:43,"530 Cherry St, New York City, NY 10001" -261644,27in FHD Monitor,1,149.99,10/18/19 14:04,"975 12th St, New York City, NY 10001" -261645,Apple Airpods Headphones,1,150,10/21/19 22:30,"508 Wilson St, Boston, MA 02215" -261646,Lightning Charging Cable,1,14.95,10/30/19 10:52,"194 2nd St, San Francisco, CA 94016" -261647,AA Batteries (4-pack),2,3.84,10/30/19 20:33,"817 West St, Portland, OR 97035" -261648,Wired Headphones,1,11.99,10/04/19 06:54,"943 Cherry St, New York City, NY 10001" -261649,USB-C Charging Cable,1,11.95,10/02/19 21:07,"895 North St, Boston, MA 02215" -261650,27in FHD Monitor,1,149.99,10/27/19 12:13,"209 5th St, San Francisco, CA 94016" -261651,Wired Headphones,1,11.99,10/19/19 13:05,"903 11th St, Dallas, TX 75001" -261652,AAA Batteries (4-pack),1,2.99,10/11/19 10:44,"931 Jackson St, New York City, NY 10001" -261652,27in FHD Monitor,1,149.99,10/11/19 10:44,"931 Jackson St, New York City, NY 10001" -261653,USB-C Charging Cable,1,11.95,10/29/19 17:24,"127 6th St, Dallas, TX 75001" -261654,AA Batteries (4-pack),3,3.84,10/07/19 11:05,"363 Chestnut St, Boston, MA 02215" -261655,AAA Batteries (4-pack),1,2.99,10/12/19 09:33,"468 Adams St, Portland, OR 97035" -261656,Lightning Charging Cable,1,14.95,10/10/19 23:33,"390 Adams St, Los Angeles, CA 90001" -261657,USB-C Charging Cable,1,11.95,10/08/19 18:37,"704 Chestnut St, San Francisco, CA 94016" -261658,AA Batteries (4-pack),1,3.84,10/17/19 12:05,"737 Washington St, Boston, MA 02215" -261659,AAA Batteries (4-pack),1,2.99,10/24/19 09:19,"743 Ridge St, Austin, TX 73301" -261660,AAA Batteries (4-pack),1,2.99,10/11/19 16:08,"455 Pine St, San Francisco, CA 94016" -261661,20in Monitor,1,109.99,10/03/19 20:37,"361 Adams St, Dallas, TX 75001" -261662,USB-C Charging Cable,1,11.95,10/16/19 12:45,"175 Walnut St, Atlanta, GA 30301" -261663,Apple Airpods Headphones,1,150,10/14/19 10:26,"54 6th St, Dallas, TX 75001" -261664,Lightning Charging Cable,1,14.95,10/05/19 20:14,"45 North St, New York City, NY 10001" -261665,27in FHD Monitor,1,149.99,10/17/19 20:21,"880 Main St, Dallas, TX 75001" -261666,Bose SoundSport Headphones,1,99.99,10/07/19 21:54,"679 4th St, San Francisco, CA 94016" -261667,Lightning Charging Cable,2,14.95,10/05/19 22:57,"637 Chestnut St, Los Angeles, CA 90001" -261668,Apple Airpods Headphones,1,150,10/31/19 14:28,"794 2nd St, Austin, TX 73301" -261669,AA Batteries (4-pack),1,3.84,10/02/19 11:34,"998 Center St, Portland, OR 97035" -261670,ThinkPad Laptop,1,999.99,10/29/19 12:32,"393 13th St, New York City, NY 10001" -261671,Wired Headphones,1,11.99,10/23/19 13:06,"356 4th St, Seattle, WA 98101" -261672,USB-C Charging Cable,1,11.95,10/23/19 12:55,"532 6th St, Boston, MA 02215" -261673,Bose SoundSport Headphones,1,99.99,10/16/19 07:55,"857 4th St, Los Angeles, CA 90001" -261674,34in Ultrawide Monitor,1,379.99,10/26/19 13:50,"263 Spruce St, Atlanta, GA 30301" -261675,AA Batteries (4-pack),2,3.84,10/28/19 14:47,"22 Maple St, San Francisco, CA 94016" -261676,Flatscreen TV,1,300,10/25/19 19:02,"990 Forest St, Dallas, TX 75001" -261677,AA Batteries (4-pack),2,3.84,10/31/19 13:15,"244 Lincoln St, Boston, MA 02215" -261678,LG Washing Machine,1,600.0,10/04/19 11:44,"88 Spruce St, Boston, MA 02215" -261679,USB-C Charging Cable,1,11.95,10/05/19 11:44,"97 11th St, San Francisco, CA 94016" -261680,AAA Batteries (4-pack),1,2.99,10/28/19 07:35,"656 12th St, San Francisco, CA 94016" -261681,20in Monitor,1,109.99,10/07/19 13:09,"758 Forest St, New York City, NY 10001" -261682,Lightning Charging Cable,1,14.95,10/08/19 01:00,"451 Wilson St, Seattle, WA 98101" -261683,Macbook Pro Laptop,1,1700,10/04/19 11:29,"392 Madison St, Dallas, TX 75001" -261683,ThinkPad Laptop,1,999.99,10/04/19 11:29,"392 Madison St, Dallas, TX 75001" -261684,20in Monitor,1,109.99,10/12/19 13:17,"434 Maple St, Boston, MA 02215" -261685,USB-C Charging Cable,1,11.95,10/03/19 19:49,"531 9th St, Seattle, WA 98101" -261686,USB-C Charging Cable,2,11.95,10/30/19 19:07,"761 Washington St, Austin, TX 73301" -261687,Macbook Pro Laptop,1,1700,10/17/19 09:04,"555 Highland St, Portland, OR 97035" -261688,Bose SoundSport Headphones,1,99.99,10/03/19 16:12,"58 Johnson St, New York City, NY 10001" -261689,34in Ultrawide Monitor,1,379.99,10/14/19 09:13,"569 Washington St, Austin, TX 73301" -261690,Wired Headphones,1,11.99,10/13/19 14:45,"951 Chestnut St, Los Angeles, CA 90001" -261691,27in FHD Monitor,1,149.99,10/12/19 03:19,"940 Cedar St, Austin, TX 73301" -261692,Bose SoundSport Headphones,1,99.99,10/11/19 18:08,"819 Meadow St, San Francisco, CA 94016" -261693,USB-C Charging Cable,1,11.95,10/18/19 18:32,"47 Cedar St, New York City, NY 10001" -261693,Apple Airpods Headphones,1,150,10/18/19 18:32,"47 Cedar St, New York City, NY 10001" -261694,Bose SoundSport Headphones,1,99.99,10/06/19 19:50,"184 8th St, New York City, NY 10001" -261695,27in 4K Gaming Monitor,1,389.99,10/22/19 13:25,"537 Sunset St, Boston, MA 02215" -261696,Wired Headphones,1,11.99,10/27/19 13:36,"266 11th St, Seattle, WA 98101" -261697,AAA Batteries (4-pack),1,2.99,10/28/19 12:53,"520 Walnut St, Los Angeles, CA 90001" -261698,AAA Batteries (4-pack),1,2.99,10/28/19 20:43,"499 Adams St, Boston, MA 02215" -261699,Lightning Charging Cable,2,14.95,10/05/19 11:12,"7 Sunset St, San Francisco, CA 94016" -261700,USB-C Charging Cable,1,11.95,10/21/19 07:25,"47 Park St, Atlanta, GA 30301" -261701,Macbook Pro Laptop,1,1700,10/22/19 09:53,"239 Church St, San Francisco, CA 94016" -261702,Wired Headphones,1,11.99,10/06/19 12:49,"209 Willow St, San Francisco, CA 94016" -261703,Bose SoundSport Headphones,1,99.99,10/25/19 15:16,"544 Highland St, Los Angeles, CA 90001" -261704,Apple Airpods Headphones,1,150,10/22/19 17:35,"808 Main St, Los Angeles, CA 90001" -261705,USB-C Charging Cable,1,11.95,10/27/19 20:02,"779 Hill St, Boston, MA 02215" -261706,AAA Batteries (4-pack),1,2.99,10/26/19 15:36,"683 Johnson St, San Francisco, CA 94016" -261707,USB-C Charging Cable,1,11.95,10/24/19 10:24,"30 6th St, New York City, NY 10001" -261708,AAA Batteries (4-pack),1,2.99,10/09/19 21:17,"569 5th St, San Francisco, CA 94016" -261709,AA Batteries (4-pack),1,3.84,10/26/19 18:51,"182 12th St, Portland, ME 04101" -261710,Macbook Pro Laptop,1,1700,10/23/19 21:12,"705 6th St, San Francisco, CA 94016" -261711,AA Batteries (4-pack),1,3.84,10/21/19 15:21,"521 9th St, New York City, NY 10001" -261712,Apple Airpods Headphones,1,150,10/25/19 10:18,"406 Lincoln St, Los Angeles, CA 90001" -261713,AAA Batteries (4-pack),2,2.99,10/22/19 19:49,"248 7th St, Portland, OR 97035" -261714,AA Batteries (4-pack),3,3.84,10/20/19 18:54,"393 Hickory St, Portland, OR 97035" -261715,Bose SoundSport Headphones,1,99.99,10/25/19 12:05,"3 West St, San Francisco, CA 94016" -261716,AAA Batteries (4-pack),1,2.99,10/06/19 22:16,"740 Ridge St, San Francisco, CA 94016" -261717,34in Ultrawide Monitor,1,379.99,10/13/19 17:12,"691 Church St, San Francisco, CA 94016" -261718,Apple Airpods Headphones,1,150,10/21/19 15:33,"151 Adams St, New York City, NY 10001" -261719,USB-C Charging Cable,1,11.95,10/06/19 12:08,"987 Madison St, Seattle, WA 98101" -261720,Macbook Pro Laptop,1,1700,10/19/19 19:23,"667 Elm St, Atlanta, GA 30301" -261721,AA Batteries (4-pack),2,3.84,10/19/19 20:00,"579 River St, Dallas, TX 75001" -261722,AAA Batteries (4-pack),1,2.99,10/23/19 20:28,"523 8th St, Los Angeles, CA 90001" -261723,27in 4K Gaming Monitor,1,389.99,10/23/19 14:41,"13 Jackson St, New York City, NY 10001" -261724,AAA Batteries (4-pack),1,2.99,10/09/19 18:25,"63 9th St, Los Angeles, CA 90001" -261725,AAA Batteries (4-pack),1,2.99,10/14/19 11:28,"205 North St, Dallas, TX 75001" -261726,Wired Headphones,1,11.99,10/06/19 14:28,"844 2nd St, New York City, NY 10001" -261727,Wired Headphones,1,11.99,10/25/19 12:12,"459 9th St, Austin, TX 73301" -261728,USB-C Charging Cable,1,11.95,10/18/19 22:45,"512 Highland St, Dallas, TX 75001" -261729,USB-C Charging Cable,1,11.95,10/03/19 16:58,"753 Park St, Los Angeles, CA 90001" -261730,USB-C Charging Cable,1,11.95,10/23/19 21:02,"907 Highland St, San Francisco, CA 94016" -261731,Wired Headphones,1,11.99,10/19/19 15:08,"14 West St, San Francisco, CA 94016" -261732,AA Batteries (4-pack),1,3.84,10/10/19 23:01,"229 12th St, San Francisco, CA 94016" -261733,34in Ultrawide Monitor,1,379.99,10/10/19 17:43,"874 4th St, San Francisco, CA 94016" -261734,20in Monitor,1,109.99,10/11/19 02:27,"452 9th St, Seattle, WA 98101" -261735,Bose SoundSport Headphones,1,99.99,11/01/19 00:10,"582 Spruce St, Atlanta, GA 30301" -261736,Wired Headphones,1,11.99,10/23/19 18:26,"139 Pine St, Seattle, WA 98101" -261737,Wired Headphones,1,11.99,10/22/19 13:49,"34 Highland St, Portland, OR 97035" -261738,Google Phone,1,600,10/06/19 10:11,"264 12th St, Seattle, WA 98101" -261739,27in FHD Monitor,1,149.99,10/10/19 21:50,"547 Jackson St, Los Angeles, CA 90001" -261740,AA Batteries (4-pack),2,3.84,10/25/19 15:12,"105 11th St, New York City, NY 10001" -261741,Lightning Charging Cable,1,14.95,10/18/19 09:19,"887 North St, Portland, OR 97035" -261742,iPhone,1,700,10/14/19 14:33,"816 4th St, Dallas, TX 75001" -261743,USB-C Charging Cable,1,11.95,10/25/19 17:26,"814 Johnson St, New York City, NY 10001" -261744,Wired Headphones,1,11.99,10/13/19 09:29,"975 Meadow St, New York City, NY 10001" -261745,27in FHD Monitor,1,149.99,10/07/19 10:19,"578 2nd St, Los Angeles, CA 90001" -261746,Google Phone,1,600,10/22/19 14:14,"715 Cedar St, San Francisco, CA 94016" -261747,27in 4K Gaming Monitor,1,389.99,10/12/19 19:38,"586 Lake St, Los Angeles, CA 90001" -261748,USB-C Charging Cable,1,11.95,10/07/19 12:43,"632 Cherry St, Atlanta, GA 30301" -261749,AAA Batteries (4-pack),1,2.99,10/22/19 16:48,"285 Park St, San Francisco, CA 94016" -261750,AA Batteries (4-pack),1,3.84,10/08/19 13:40,"880 Elm St, San Francisco, CA 94016" -261751,27in FHD Monitor,1,149.99,10/26/19 19:14,"763 6th St, San Francisco, CA 94016" -261752,ThinkPad Laptop,1,999.99,10/11/19 00:26,"79 4th St, Los Angeles, CA 90001" -261753,27in FHD Monitor,1,149.99,10/06/19 11:29,"635 Main St, Los Angeles, CA 90001" -261754,Lightning Charging Cable,1,14.95,10/10/19 14:17,"387 Park St, Portland, OR 97035" -261755,27in FHD Monitor,1,149.99,10/16/19 16:16,"272 Pine St, Atlanta, GA 30301" -261756,27in FHD Monitor,1,149.99,10/01/19 13:25,"954 8th St, Portland, OR 97035" -261757,AAA Batteries (4-pack),2,2.99,10/04/19 07:14,"612 Washington St, Austin, TX 73301" -261758,27in FHD Monitor,1,149.99,10/31/19 13:19,"992 Madison St, Atlanta, GA 30301" -261759,20in Monitor,1,109.99,10/26/19 19:37,"248 12th St, Atlanta, GA 30301" -261760,AAA Batteries (4-pack),1,2.99,10/10/19 23:43,"680 14th St, Seattle, WA 98101" -261761,AA Batteries (4-pack),1,3.84,10/23/19 09:54,"2 North St, Portland, ME 04101" -261762,AA Batteries (4-pack),1,3.84,10/30/19 20:46,"259 Cherry St, San Francisco, CA 94016" -261763,USB-C Charging Cable,1,11.95,10/06/19 21:47,"657 Cedar St, San Francisco, CA 94016" -261764,AA Batteries (4-pack),1,3.84,10/24/19 16:01,"215 Lincoln St, San Francisco, CA 94016" -261765,Lightning Charging Cable,1,14.95,10/26/19 00:19,"435 Hickory St, Portland, OR 97035" -261766,AA Batteries (4-pack),2,3.84,10/26/19 12:41,"937 10th St, Boston, MA 02215" -261767,USB-C Charging Cable,1,11.95,10/01/19 08:52,"241 Jackson St, New York City, NY 10001" -261768,USB-C Charging Cable,1,11.95,10/26/19 12:01,"680 Meadow St, Dallas, TX 75001" -261769,Vareebadd Phone,1,400,10/03/19 19:44,"650 11th St, New York City, NY 10001" -261770,Apple Airpods Headphones,1,150,10/23/19 20:39,"326 Pine St, San Francisco, CA 94016" -261771,Google Phone,1,600,10/09/19 11:11,"24 Hickory St, San Francisco, CA 94016" -261771,USB-C Charging Cable,1,11.95,10/09/19 11:11,"24 Hickory St, San Francisco, CA 94016" -261772,iPhone,1,700,10/24/19 12:57,"732 Jackson St, San Francisco, CA 94016" -261773,AAA Batteries (4-pack),1,2.99,10/14/19 10:17,"212 Meadow St, San Francisco, CA 94016" -261774,Wired Headphones,1,11.99,10/18/19 18:21,"563 Center St, Seattle, WA 98101" -261775,AA Batteries (4-pack),1,3.84,10/28/19 14:10,"533 5th St, Atlanta, GA 30301" -261776,AAA Batteries (4-pack),1,2.99,10/31/19 22:06,"927 8th St, Seattle, WA 98101" -261777,USB-C Charging Cable,1,11.95,10/28/19 19:23,"727 South St, Portland, OR 97035" -261778,27in FHD Monitor,1,149.99,10/17/19 23:26,"604 Cherry St, Austin, TX 73301" -261778,ThinkPad Laptop,1,999.99,10/17/19 23:26,"604 Cherry St, Austin, TX 73301" -261779,USB-C Charging Cable,1,11.95,10/30/19 21:24,"315 Madison St, Portland, OR 97035" -261780,Google Phone,1,600,10/10/19 20:17,"165 Adams St, Los Angeles, CA 90001" -261781,Bose SoundSport Headphones,1,99.99,10/02/19 22:41,"471 Johnson St, Boston, MA 02215" -261782,Wired Headphones,1,11.99,10/15/19 02:46,"523 West St, San Francisco, CA 94016" -261783,AAA Batteries (4-pack),2,2.99,10/30/19 19:26,"293 4th St, San Francisco, CA 94016" -261784,AAA Batteries (4-pack),1,2.99,10/22/19 18:38,"451 8th St, Seattle, WA 98101" -261785,Lightning Charging Cable,1,14.95,10/01/19 10:02,"793 North St, Los Angeles, CA 90001" -261786,AA Batteries (4-pack),1,3.84,10/27/19 11:31,"966 Main St, Los Angeles, CA 90001" -261787,AA Batteries (4-pack),1,3.84,10/07/19 13:32,"236 Lincoln St, Boston, MA 02215" -261788,34in Ultrawide Monitor,1,379.99,10/26/19 13:27,"879 Highland St, Seattle, WA 98101" -261789,Wired Headphones,2,11.99,10/20/19 10:39,"180 Elm St, San Francisco, CA 94016" -261790,USB-C Charging Cable,1,11.95,10/19/19 12:06,"252 2nd St, New York City, NY 10001" -261791,Lightning Charging Cable,1,14.95,10/25/19 23:08,"452 1st St, Austin, TX 73301" -261792,USB-C Charging Cable,1,11.95,10/29/19 00:28,"923 11th St, San Francisco, CA 94016" -261793,iPhone,1,700,10/07/19 11:40,"301 Adams St, San Francisco, CA 94016" -261794,Bose SoundSport Headphones,1,99.99,10/02/19 12:35,"180 4th St, Dallas, TX 75001" -,,,,, -261795,Flatscreen TV,1,300,10/20/19 18:12,"256 11th St, San Francisco, CA 94016" -261796,27in FHD Monitor,1,149.99,10/12/19 02:35,"516 Lakeview St, Dallas, TX 75001" -261797,Lightning Charging Cable,1,14.95,10/13/19 21:23,"647 Highland St, San Francisco, CA 94016" -261798,Apple Airpods Headphones,1,150,10/03/19 15:11,"143 South St, Portland, OR 97035" -261799,Apple Airpods Headphones,1,150,10/10/19 22:16,"763 West St, Los Angeles, CA 90001" -261800,USB-C Charging Cable,1,11.95,10/04/19 20:15,"900 Wilson St, Los Angeles, CA 90001" -261801,USB-C Charging Cable,1,11.95,10/15/19 10:06,"985 Johnson St, San Francisco, CA 94016" -261802,USB-C Charging Cable,1,11.95,10/21/19 16:33,"247 Meadow St, Austin, TX 73301" -261803,Wired Headphones,1,11.99,10/15/19 17:45,"741 1st St, Los Angeles, CA 90001" -261804,27in FHD Monitor,1,149.99,10/10/19 10:48,"133 Adams St, Dallas, TX 75001" -261805,AA Batteries (4-pack),1,3.84,10/10/19 15:53,"829 Church St, Portland, OR 97035" -261806,Lightning Charging Cable,1,14.95,10/19/19 22:56,"843 Main St, Dallas, TX 75001" -261807,Google Phone,1,600,10/15/19 16:58,"398 Hickory St, Boston, MA 02215" -261807,USB-C Charging Cable,1,11.95,10/15/19 16:58,"398 Hickory St, Boston, MA 02215" -261808,27in FHD Monitor,1,149.99,10/29/19 19:41,"876 Johnson St, Los Angeles, CA 90001" -261809,AA Batteries (4-pack),1,3.84,10/06/19 21:04,"119 8th St, New York City, NY 10001" -261810,Wired Headphones,1,11.99,10/07/19 17:45,"259 Dogwood St, Los Angeles, CA 90001" -261811,AAA Batteries (4-pack),2,2.99,10/15/19 23:01,"861 1st St, Austin, TX 73301" -261812,Apple Airpods Headphones,1,150,10/05/19 22:53,"886 Forest St, Los Angeles, CA 90001" -261813,Google Phone,1,600,10/28/19 19:04,"433 Center St, New York City, NY 10001" -261814,Bose SoundSport Headphones,1,99.99,10/04/19 18:12,"410 6th St, San Francisco, CA 94016" -261815,27in FHD Monitor,1,149.99,10/27/19 18:48,"229 South St, Dallas, TX 75001" -261816,USB-C Charging Cable,1,11.95,10/20/19 16:17,"999 6th St, Seattle, WA 98101" -261817,iPhone,1,700,10/04/19 20:17,"170 Ridge St, Seattle, WA 98101" -261818,Macbook Pro Laptop,1,1700,10/28/19 21:38,"512 Sunset St, Austin, TX 73301" -261819,Flatscreen TV,1,300,10/17/19 08:40,"236 Center St, San Francisco, CA 94016" -261820,Apple Airpods Headphones,1,150,10/09/19 18:58,"936 West St, Portland, OR 97035" -261821,iPhone,1,700,10/23/19 12:18,"769 8th St, San Francisco, CA 94016" -261822,Lightning Charging Cable,1,14.95,10/30/19 21:41,"216 South St, Los Angeles, CA 90001" -261823,AA Batteries (4-pack),1,3.84,10/14/19 00:15,"171 Wilson St, Austin, TX 73301" -261824,Wired Headphones,1,11.99,10/14/19 18:16,"240 8th St, New York City, NY 10001" -261825,Bose SoundSport Headphones,1,99.99,10/11/19 07:53,"354 Highland St, San Francisco, CA 94016" -261826,Lightning Charging Cable,1,14.95,10/23/19 19:36,"154 Church St, Portland, ME 04101" -261827,Apple Airpods Headphones,1,150,10/25/19 21:20,"760 Highland St, San Francisco, CA 94016" -261828,ThinkPad Laptop,1,999.99,10/16/19 10:34,"789 Pine St, Seattle, WA 98101" -261829,Flatscreen TV,1,300,10/16/19 16:36,"132 West St, San Francisco, CA 94016" -261830,USB-C Charging Cable,1,11.95,10/24/19 13:10,"478 Maple St, Atlanta, GA 30301" -261831,Wired Headphones,1,11.99,10/18/19 16:42,"684 South St, Boston, MA 02215" -261832,Wired Headphones,1,11.99,10/01/19 06:29,"299 Sunset St, San Francisco, CA 94016" -261833,Lightning Charging Cable,1,14.95,10/05/19 11:07,"292 River St, San Francisco, CA 94016" -261834,Google Phone,1,600,10/26/19 12:41,"637 13th St, Los Angeles, CA 90001" -261835,27in FHD Monitor,1,149.99,10/29/19 18:54,"41 Dogwood St, Boston, MA 02215" -261836,Macbook Pro Laptop,1,1700,10/04/19 13:41,"382 Dogwood St, San Francisco, CA 94016" -261837,iPhone,1,700,10/19/19 21:10,"79 West St, San Francisco, CA 94016" -261837,Apple Airpods Headphones,1,150,10/19/19 21:10,"79 West St, San Francisco, CA 94016" -261838,Flatscreen TV,1,300,10/01/19 18:07,"951 Spruce St, San Francisco, CA 94016" -261839,Lightning Charging Cable,1,14.95,10/31/19 10:59,"94 Washington St, Dallas, TX 75001" -261840,27in FHD Monitor,1,149.99,10/29/19 20:45,"463 14th St, Boston, MA 02215" -261841,AA Batteries (4-pack),1,3.84,10/19/19 11:40,"42 Washington St, Portland, OR 97035" -261841,AAA Batteries (4-pack),1,2.99,10/19/19 11:40,"42 Washington St, Portland, OR 97035" -261842,Apple Airpods Headphones,1,150,10/03/19 19:11,"69 Main St, Los Angeles, CA 90001" -261843,Bose SoundSport Headphones,1,99.99,10/31/19 20:28,"545 Lake St, Seattle, WA 98101" -261844,Bose SoundSport Headphones,1,99.99,10/24/19 12:36,"218 Spruce St, Boston, MA 02215" -261845,Bose SoundSport Headphones,1,99.99,10/28/19 14:44,"653 Sunset St, Seattle, WA 98101" -261846,USB-C Charging Cable,1,11.95,10/15/19 15:36,"323 Church St, Austin, TX 73301" -261847,AA Batteries (4-pack),1,3.84,10/02/19 17:50,"506 1st St, New York City, NY 10001" -261848,Lightning Charging Cable,1,14.95,10/15/19 20:01,"231 8th St, Boston, MA 02215" -261849,Apple Airpods Headphones,1,150,10/20/19 22:36,"442 9th St, Los Angeles, CA 90001" -261850,Apple Airpods Headphones,1,150,10/15/19 08:26,"783 Wilson St, Atlanta, GA 30301" -261851,Vareebadd Phone,1,400,10/06/19 18:39,"592 Willow St, Los Angeles, CA 90001" -261851,USB-C Charging Cable,1,11.95,10/06/19 18:39,"592 Willow St, Los Angeles, CA 90001" -261851,Bose SoundSport Headphones,1,99.99,10/06/19 18:39,"592 Willow St, Los Angeles, CA 90001" -261852,27in FHD Monitor,1,149.99,10/02/19 06:44,"207 South St, Dallas, TX 75001" -261853,AAA Batteries (4-pack),2,2.99,10/13/19 14:25,"763 Hill St, Los Angeles, CA 90001" -261854,Wired Headphones,1,11.99,10/13/19 00:02,"494 Lincoln St, Boston, MA 02215" -261855,USB-C Charging Cable,3,11.95,10/08/19 18:50,"222 5th St, Dallas, TX 75001" -261856,AAA Batteries (4-pack),1,2.99,10/20/19 14:30,"890 Wilson St, Los Angeles, CA 90001" -261857,AA Batteries (4-pack),1,3.84,10/27/19 17:07,"334 Madison St, San Francisco, CA 94016" -261858,AAA Batteries (4-pack),1,2.99,10/14/19 12:16,"922 Madison St, Seattle, WA 98101" -261858,Wired Headphones,1,11.99,10/14/19 12:16,"922 Madison St, Seattle, WA 98101" -261859,34in Ultrawide Monitor,1,379.99,10/31/19 15:36,"589 Lakeview St, Atlanta, GA 30301" -261860,ThinkPad Laptop,1,999.99,10/20/19 17:08,"180 Lakeview St, New York City, NY 10001" -261861,Lightning Charging Cable,1,14.95,10/12/19 08:46,"467 Madison St, New York City, NY 10001" -261862,USB-C Charging Cable,1,11.95,10/27/19 08:03,"872 10th St, New York City, NY 10001" -261863,Wired Headphones,1,11.99,10/10/19 22:01,"861 Chestnut St, San Francisco, CA 94016" -261864,Lightning Charging Cable,1,14.95,10/02/19 02:26,"781 West St, New York City, NY 10001" -261865,Google Phone,1,600,10/10/19 20:46,"124 Hill St, Los Angeles, CA 90001" -261866,AAA Batteries (4-pack),2,2.99,10/10/19 07:24,"430 Johnson St, Los Angeles, CA 90001" -261867,Apple Airpods Headphones,1,150,10/26/19 17:32,"354 2nd St, San Francisco, CA 94016" -261868,20in Monitor,1,109.99,10/05/19 15:36,"34 9th St, San Francisco, CA 94016" -261869,Apple Airpods Headphones,1,150,10/29/19 10:03,"643 4th St, New York City, NY 10001" -261870,Wired Headphones,1,11.99,10/06/19 19:17,"914 Center St, Los Angeles, CA 90001" -261871,Lightning Charging Cable,1,14.95,10/19/19 16:47,"300 Johnson St, Los Angeles, CA 90001" -261872,27in FHD Monitor,1,149.99,10/30/19 22:20,"232 Jefferson St, Atlanta, GA 30301" -261873,Google Phone,1,600,10/05/19 08:35,"145 12th St, Los Angeles, CA 90001" -261873,Bose SoundSport Headphones,1,99.99,10/05/19 08:35,"145 12th St, Los Angeles, CA 90001" -261874,Wired Headphones,1,11.99,10/22/19 13:27,"953 Forest St, New York City, NY 10001" -261875,Wired Headphones,1,11.99,10/08/19 20:04,"328 13th St, Seattle, WA 98101" -261876,34in Ultrawide Monitor,1,379.99,10/21/19 10:43,"382 Sunset St, San Francisco, CA 94016" -261877,USB-C Charging Cable,1,11.95,10/11/19 13:02,"928 Adams St, Los Angeles, CA 90001" -261878,AAA Batteries (4-pack),1,2.99,10/26/19 16:56,"644 Jackson St, Boston, MA 02215" -261879,LG Dryer,1,600.0,10/16/19 17:16,"289 Walnut St, Dallas, TX 75001" -261880,AA Batteries (4-pack),1,3.84,10/18/19 15:08,"52 10th St, Boston, MA 02215" -261881,Bose SoundSport Headphones,1,99.99,10/20/19 21:49,"804 Spruce St, New York City, NY 10001" -261882,27in FHD Monitor,1,149.99,10/13/19 15:13,"803 Hickory St, Seattle, WA 98101" -261883,AA Batteries (4-pack),1,3.84,10/04/19 16:26,"833 Jefferson St, New York City, NY 10001" -261884,ThinkPad Laptop,1,999.99,10/19/19 12:23,"785 12th St, San Francisco, CA 94016" -261885,USB-C Charging Cable,1,11.95,10/14/19 15:55,"170 Jefferson St, Boston, MA 02215" -261886,USB-C Charging Cable,1,11.95,10/15/19 22:09,"802 4th St, San Francisco, CA 94016" -261887,Bose SoundSport Headphones,1,99.99,10/05/19 12:26,"453 Hickory St, Seattle, WA 98101" -261887,AAA Batteries (4-pack),1,2.99,10/05/19 12:26,"453 Hickory St, Seattle, WA 98101" -261888,USB-C Charging Cable,1,11.95,10/05/19 17:19,"131 River St, Los Angeles, CA 90001" -261889,Apple Airpods Headphones,1,150,10/23/19 14:14,"959 Sunset St, Atlanta, GA 30301" -261890,Flatscreen TV,1,300,10/24/19 16:31,"657 Church St, Seattle, WA 98101" -261891,Lightning Charging Cable,1,14.95,10/30/19 16:30,"846 Lakeview St, Los Angeles, CA 90001" -261892,USB-C Charging Cable,1,11.95,10/11/19 19:56,"370 4th St, Los Angeles, CA 90001" -261893,USB-C Charging Cable,1,11.95,10/02/19 13:59,"582 Ridge St, New York City, NY 10001" -261894,Wired Headphones,1,11.99,10/22/19 09:39,"463 Maple St, Los Angeles, CA 90001" -261895,Flatscreen TV,1,300,10/31/19 21:31,"552 Madison St, Seattle, WA 98101" -261896,AA Batteries (4-pack),1,3.84,10/17/19 15:22,"936 Maple St, Los Angeles, CA 90001" -261897,Apple Airpods Headphones,1,150,10/13/19 12:55,"768 Lake St, San Francisco, CA 94016" -261898,Lightning Charging Cable,1,14.95,10/06/19 15:05,"898 14th St, Dallas, TX 75001" -261899,AA Batteries (4-pack),3,3.84,10/27/19 07:04,"93 Hickory St, Atlanta, GA 30301" -261900,Lightning Charging Cable,1,14.95,10/28/19 04:19,"812 Highland St, Seattle, WA 98101" -261901,27in 4K Gaming Monitor,1,389.99,10/27/19 07:30,"146 1st St, Boston, MA 02215" -261902,AAA Batteries (4-pack),1,2.99,10/29/19 11:07,"560 Church St, San Francisco, CA 94016" -261903,AA Batteries (4-pack),1,3.84,10/27/19 14:28,"894 10th St, New York City, NY 10001" -261904,LG Washing Machine,1,600.0,10/15/19 11:54,"694 4th St, San Francisco, CA 94016" -261905,Wired Headphones,1,11.99,10/02/19 20:10,"538 Jefferson St, Los Angeles, CA 90001" -261906,AA Batteries (4-pack),2,3.84,10/05/19 15:47,"851 7th St, Seattle, WA 98101" -261907,Apple Airpods Headphones,1,150,10/27/19 16:05,"484 8th St, San Francisco, CA 94016" -261907,Wired Headphones,1,11.99,10/27/19 16:05,"484 8th St, San Francisco, CA 94016" -261908,AA Batteries (4-pack),1,3.84,10/27/19 22:08,"262 14th St, Boston, MA 02215" -261909,AAA Batteries (4-pack),2,2.99,10/08/19 13:10,"391 14th St, New York City, NY 10001" -261910,Bose SoundSport Headphones,1,99.99,10/24/19 22:48,"854 South St, San Francisco, CA 94016" -261911,Apple Airpods Headphones,1,150,10/13/19 16:50,"886 Pine St, Boston, MA 02215" -261912,USB-C Charging Cable,1,11.95,10/06/19 04:08,"212 North St, Los Angeles, CA 90001" -261913,Bose SoundSport Headphones,1,99.99,10/24/19 16:18,"495 Lincoln St, San Francisco, CA 94016" -261914,27in FHD Monitor,1,149.99,10/19/19 12:34,"204 Ridge St, Los Angeles, CA 90001" -261915,USB-C Charging Cable,1,11.95,10/07/19 10:12,"232 Lakeview St, Austin, TX 73301" -261916,AAA Batteries (4-pack),1,2.99,10/27/19 18:59,"58 Jefferson St, New York City, NY 10001" -261917,Wired Headphones,1,11.99,10/14/19 03:01,"535 Hill St, Dallas, TX 75001" -261918,27in 4K Gaming Monitor,1,389.99,10/22/19 14:54,"516 Madison St, Los Angeles, CA 90001" -261919,AAA Batteries (4-pack),2,2.99,10/22/19 15:37,"778 West St, Boston, MA 02215" -261920,27in 4K Gaming Monitor,1,389.99,10/21/19 00:02,"690 Cherry St, San Francisco, CA 94016" -261921,Apple Airpods Headphones,1,150,10/10/19 10:54,"435 12th St, Portland, ME 04101" -261922,AA Batteries (4-pack),2,3.84,10/07/19 14:23,"888 Highland St, San Francisco, CA 94016" -261923,AA Batteries (4-pack),1,3.84,10/21/19 17:28,"724 Pine St, Austin, TX 73301" -261924,USB-C Charging Cable,1,11.95,10/17/19 20:17,"663 11th St, Los Angeles, CA 90001" -261925,20in Monitor,1,109.99,10/02/19 10:56,"988 Park St, Atlanta, GA 30301" -261926,Wired Headphones,1,11.99,10/24/19 21:21,"49 Meadow St, New York City, NY 10001" -261927,USB-C Charging Cable,1,11.95,10/02/19 21:21,"689 1st St, Atlanta, GA 30301" -261928,AA Batteries (4-pack),1,3.84,10/08/19 14:22,"781 1st St, New York City, NY 10001" -261929,USB-C Charging Cable,1,11.95,10/09/19 20:09,"75 Cedar St, Seattle, WA 98101" -261930,Apple Airpods Headphones,1,150,10/24/19 19:41,"93 Sunset St, Los Angeles, CA 90001" -261931,AA Batteries (4-pack),1,3.84,10/23/19 23:36,"640 Walnut St, Seattle, WA 98101" -261932,iPhone,1,700,10/10/19 10:17,"523 12th St, San Francisco, CA 94016" -261933,27in 4K Gaming Monitor,1,389.99,10/31/19 18:49,"413 9th St, San Francisco, CA 94016" -261934,Apple Airpods Headphones,1,150,10/21/19 12:23,"538 11th St, Los Angeles, CA 90001" -261935,Bose SoundSport Headphones,1,99.99,10/08/19 14:26,"127 Cherry St, San Francisco, CA 94016" -261936,ThinkPad Laptop,1,999.99,10/27/19 21:59,"169 5th St, New York City, NY 10001" -261937,27in 4K Gaming Monitor,1,389.99,10/10/19 13:44,"717 Main St, Atlanta, GA 30301" -261938,AAA Batteries (4-pack),1,2.99,10/10/19 01:24,"897 Washington St, San Francisco, CA 94016" -261939,Bose SoundSport Headphones,2,99.99,10/21/19 18:42,"501 Lake St, Atlanta, GA 30301" -261940,AAA Batteries (4-pack),2,2.99,10/10/19 20:55,"636 11th St, New York City, NY 10001" -261941,27in 4K Gaming Monitor,1,389.99,10/15/19 23:44,"800 Park St, New York City, NY 10001" -261941,34in Ultrawide Monitor,1,379.99,10/15/19 23:44,"800 Park St, New York City, NY 10001" -261942,AAA Batteries (4-pack),2,2.99,10/22/19 21:25,"535 Washington St, Dallas, TX 75001" -261943,AAA Batteries (4-pack),1,2.99,10/11/19 08:36,"575 Maple St, New York City, NY 10001" -261944,USB-C Charging Cable,1,11.95,10/28/19 20:38,"121 Meadow St, New York City, NY 10001" -261945,Lightning Charging Cable,1,14.95,10/30/19 10:39,"779 5th St, Atlanta, GA 30301" -261946,USB-C Charging Cable,1,11.95,10/19/19 20:33,"37 Willow St, Atlanta, GA 30301" -261947,ThinkPad Laptop,1,999.99,10/09/19 13:29,"977 Lakeview St, Atlanta, GA 30301" -261948,Wired Headphones,1,11.99,10/28/19 17:32,"321 Meadow St, Austin, TX 73301" -261949,Lightning Charging Cable,1,14.95,10/16/19 17:00,"467 Dogwood St, Dallas, TX 75001" -261950,Wired Headphones,2,11.99,10/05/19 14:34,"713 Walnut St, San Francisco, CA 94016" -261951,AA Batteries (4-pack),1,3.84,10/22/19 11:10,"432 Main St, Dallas, TX 75001" -261952,ThinkPad Laptop,1,999.99,10/28/19 20:36,"431 Ridge St, Atlanta, GA 30301" -261953,AA Batteries (4-pack),1,3.84,10/10/19 10:19,"719 North St, San Francisco, CA 94016" -261954,Apple Airpods Headphones,1,150,10/13/19 16:17,"942 Ridge St, San Francisco, CA 94016" -261955,AAA Batteries (4-pack),2,2.99,10/16/19 09:58,"558 Lakeview St, Austin, TX 73301" -261956,Wired Headphones,1,11.99,10/17/19 15:59,"261 7th St, Atlanta, GA 30301" -261957,Google Phone,1,600,10/14/19 18:12,"170 2nd St, San Francisco, CA 94016" -261958,AAA Batteries (4-pack),1,2.99,10/27/19 23:25,"409 6th St, Austin, TX 73301" -261959,AAA Batteries (4-pack),1,2.99,10/14/19 01:11,"513 Park St, Austin, TX 73301" -261960,ThinkPad Laptop,1,999.99,10/25/19 12:46,"32 7th St, Los Angeles, CA 90001" -261961,AA Batteries (4-pack),1,3.84,10/03/19 12:35,"479 Cherry St, Los Angeles, CA 90001" -261962,27in 4K Gaming Monitor,1,389.99,10/17/19 12:02,"727 River St, Boston, MA 02215" -261963,27in FHD Monitor,1,149.99,10/01/19 09:09,"769 Jackson St, Dallas, TX 75001" -261964,Bose SoundSport Headphones,1,99.99,10/26/19 05:27,"596 North St, Los Angeles, CA 90001" -261965,AA Batteries (4-pack),1,3.84,10/27/19 11:54,"916 Church St, San Francisco, CA 94016" -261966,Bose SoundSport Headphones,1,99.99,10/09/19 11:53,"134 Main St, Atlanta, GA 30301" -261967,Lightning Charging Cable,1,14.95,10/29/19 11:09,"386 Lakeview St, Portland, OR 97035" -261968,iPhone,1,700,10/28/19 04:53,"638 Dogwood St, New York City, NY 10001" -261968,Lightning Charging Cable,1,14.95,10/28/19 04:53,"638 Dogwood St, New York City, NY 10001" -261969,Vareebadd Phone,1,400,10/21/19 12:48,"626 Elm St, Dallas, TX 75001" -261970,Lightning Charging Cable,1,14.95,10/26/19 08:22,"509 Cherry St, Seattle, WA 98101" -261971,34in Ultrawide Monitor,1,379.99,10/08/19 16:27,"156 Ridge St, Dallas, TX 75001" -261972,Bose SoundSport Headphones,1,99.99,10/03/19 23:17,"791 Church St, San Francisco, CA 94016" -261973,Lightning Charging Cable,1,14.95,10/04/19 07:37,"328 12th St, San Francisco, CA 94016" -261974,Vareebadd Phone,1,400,10/16/19 15:49,"149 Main St, Boston, MA 02215" -261975,Bose SoundSport Headphones,1,99.99,10/11/19 18:18,"313 Lake St, San Francisco, CA 94016" -261976,27in FHD Monitor,1,149.99,10/26/19 13:21,"662 Highland St, Los Angeles, CA 90001" -261977,Flatscreen TV,1,300,10/23/19 10:01,"201 Chestnut St, San Francisco, CA 94016" -261978,Bose SoundSport Headphones,1,99.99,10/03/19 21:01,"620 5th St, Los Angeles, CA 90001" -261979,iPhone,1,700,10/10/19 18:00,"635 North St, New York City, NY 10001" -261980,Lightning Charging Cable,1,14.95,10/23/19 19:35,"746 Lakeview St, Seattle, WA 98101" -261981,Bose SoundSport Headphones,1,99.99,10/20/19 18:06,"231 Highland St, Dallas, TX 75001" -261982,iPhone,1,700,10/18/19 00:14,"350 13th St, Los Angeles, CA 90001" -261983,27in 4K Gaming Monitor,1,389.99,10/25/19 16:30,"778 Pine St, New York City, NY 10001" -261984,AAA Batteries (4-pack),2,2.99,10/21/19 13:45,"852 Jefferson St, San Francisco, CA 94016" -261985,Lightning Charging Cable,1,14.95,10/18/19 19:10,"436 Washington St, San Francisco, CA 94016" -261986,AAA Batteries (4-pack),1,2.99,10/08/19 23:15,"876 1st St, San Francisco, CA 94016" -261987,Flatscreen TV,1,300,10/02/19 22:30,"244 Forest St, New York City, NY 10001" -261988,Wired Headphones,1,11.99,10/13/19 09:48,"382 Center St, Atlanta, GA 30301" -261989,Lightning Charging Cable,1,14.95,10/06/19 16:39,"53 9th St, Dallas, TX 75001" -261990,27in FHD Monitor,1,149.99,10/17/19 20:56,"464 Maple St, Portland, OR 97035" -261991,Bose SoundSport Headphones,1,99.99,10/23/19 08:55,"653 West St, Portland, OR 97035" -261992,iPhone,1,700,10/08/19 13:07,"286 Cherry St, San Francisco, CA 94016" -261993,Wired Headphones,1,11.99,10/30/19 22:32,"64 Adams St, San Francisco, CA 94016" -261994,Flatscreen TV,1,300,10/06/19 17:48,"634 Main St, Boston, MA 02215" -261995,Lightning Charging Cable,1,14.95,10/05/19 17:42,"378 Park St, San Francisco, CA 94016" -261996,Wired Headphones,1,11.99,10/17/19 13:06,"607 Highland St, New York City, NY 10001" -261997,Wired Headphones,1,11.99,10/28/19 23:38,"190 10th St, Boston, MA 02215" -261998,AA Batteries (4-pack),2,3.84,10/20/19 13:55,"758 Johnson St, Portland, OR 97035" -261999,USB-C Charging Cable,1,11.95,10/24/19 11:09,"46 Maple St, Los Angeles, CA 90001" -262000,AA Batteries (4-pack),1,3.84,10/20/19 19:22,"761 Lake St, Boston, MA 02215" -262001,27in FHD Monitor,1,149.99,10/31/19 15:29,"632 13th St, Portland, OR 97035" -262002,Wired Headphones,1,11.99,10/22/19 14:47,"252 Jackson St, Boston, MA 02215" -262003,AAA Batteries (4-pack),1,2.99,10/26/19 18:49,"110 Sunset St, San Francisco, CA 94016" -262004,ThinkPad Laptop,1,999.99,10/02/19 23:41,"672 Meadow St, Portland, OR 97035" -262005,Lightning Charging Cable,1,14.95,10/11/19 23:33,"413 1st St, Seattle, WA 98101" -262006,Wired Headphones,1,11.99,10/28/19 14:17,"107 Jefferson St, San Francisco, CA 94016" -262007,iPhone,1,700,10/13/19 19:51,"575 7th St, San Francisco, CA 94016" -262008,Apple Airpods Headphones,1,150,10/22/19 10:36,"178 Wilson St, San Francisco, CA 94016" -262009,Macbook Pro Laptop,1,1700,10/22/19 09:51,"8 Washington St, Seattle, WA 98101" -262010,AA Batteries (4-pack),2,3.84,10/13/19 11:16,"17 Spruce St, San Francisco, CA 94016" -262011,Wired Headphones,1,11.99,10/15/19 07:11,"30 2nd St, New York City, NY 10001" -262012,Wired Headphones,1,11.99,10/07/19 13:52,"568 Hill St, Austin, TX 73301" -262013,Bose SoundSport Headphones,1,99.99,10/26/19 15:41,"321 Chestnut St, Dallas, TX 75001" -262014,Lightning Charging Cable,1,14.95,10/26/19 21:15,"783 Elm St, Austin, TX 73301" -262015,ThinkPad Laptop,1,999.99,10/31/19 13:50,"329 River St, Los Angeles, CA 90001" -262016,AAA Batteries (4-pack),1,2.99,10/02/19 08:45,"562 Jackson St, Boston, MA 02215" -262017,Bose SoundSport Headphones,1,99.99,10/16/19 17:53,"286 5th St, San Francisco, CA 94016" -262018,AAA Batteries (4-pack),1,2.99,10/21/19 18:10,"216 Walnut St, San Francisco, CA 94016" -262019,Google Phone,1,600,10/22/19 00:18,"280 Chestnut St, Boston, MA 02215" -262019,USB-C Charging Cable,1,11.95,10/22/19 00:18,"280 Chestnut St, Boston, MA 02215" -262019,Wired Headphones,1,11.99,10/22/19 00:18,"280 Chestnut St, Boston, MA 02215" -262020,Apple Airpods Headphones,1,150,10/03/19 11:16,"835 14th St, Dallas, TX 75001" -262021,AA Batteries (4-pack),1,3.84,10/29/19 17:19,"625 Highland St, San Francisco, CA 94016" -262022,AA Batteries (4-pack),1,3.84,10/05/19 18:34,"543 7th St, Boston, MA 02215" -262023,AA Batteries (4-pack),1,3.84,10/10/19 21:54,"788 Cherry St, Boston, MA 02215" -262024,Lightning Charging Cable,1,14.95,10/12/19 13:13,"801 Ridge St, San Francisco, CA 94016" -262025,Apple Airpods Headphones,1,150,10/08/19 23:43,"33 Chestnut St, Portland, OR 97035" -262026,Vareebadd Phone,1,400,10/24/19 20:04,"758 Lakeview St, Los Angeles, CA 90001" -262027,27in FHD Monitor,1,149.99,10/14/19 17:07,"489 Jackson St, Portland, OR 97035" -262028,Wired Headphones,1,11.99,10/23/19 17:59,"841 Highland St, Austin, TX 73301" -262029,27in FHD Monitor,1,149.99,10/04/19 00:27,"169 5th St, Portland, OR 97035" -262030,AAA Batteries (4-pack),1,2.99,10/21/19 19:27,"518 5th St, Boston, MA 02215" -262031,Google Phone,1,600,10/26/19 16:21,"281 10th St, New York City, NY 10001" -262032,AA Batteries (4-pack),1,3.84,10/27/19 09:43,"516 North St, Atlanta, GA 30301" -262033,ThinkPad Laptop,1,999.99,10/10/19 12:24,"571 River St, Los Angeles, CA 90001" -262034,Bose SoundSport Headphones,1,99.99,10/22/19 22:23,"960 North St, Los Angeles, CA 90001" -262035,AA Batteries (4-pack),1,3.84,10/31/19 07:05,"656 Wilson St, Portland, ME 04101" -262036,AA Batteries (4-pack),3,3.84,10/03/19 22:01,"481 Park St, Los Angeles, CA 90001" -262037,Lightning Charging Cable,1,14.95,10/05/19 12:55,"531 14th St, San Francisco, CA 94016" -262038,Lightning Charging Cable,1,14.95,10/11/19 17:45,"89 9th St, Portland, OR 97035" -262039,AA Batteries (4-pack),1,3.84,10/29/19 17:16,"540 Park St, Atlanta, GA 30301" -262040,Vareebadd Phone,1,400,10/08/19 10:05,"378 4th St, New York City, NY 10001" -262041,Bose SoundSport Headphones,1,99.99,10/08/19 14:02,"839 Ridge St, Los Angeles, CA 90001" -262042,34in Ultrawide Monitor,1,379.99,10/02/19 16:50,"62 Johnson St, Los Angeles, CA 90001" -262043,AAA Batteries (4-pack),4,2.99,10/23/19 12:05,"860 14th St, San Francisco, CA 94016" -262044,Lightning Charging Cable,2,14.95,10/18/19 18:14,"849 Chestnut St, Seattle, WA 98101" -262045,AA Batteries (4-pack),2,3.84,10/12/19 10:58,"247 Church St, Austin, TX 73301" -262046,USB-C Charging Cable,1,11.95,10/20/19 18:59,"874 Maple St, New York City, NY 10001" -262047,USB-C Charging Cable,1,11.95,10/16/19 13:21,"672 Cedar St, Portland, OR 97035" -262047,AAA Batteries (4-pack),2,2.99,10/16/19 13:21,"672 Cedar St, Portland, OR 97035" -262048,Lightning Charging Cable,1,14.95,10/08/19 02:16,"399 Lakeview St, San Francisco, CA 94016" -262049,USB-C Charging Cable,1,11.95,10/26/19 09:27,"848 Adams St, Los Angeles, CA 90001" -262050,Wired Headphones,1,11.99,10/29/19 07:44,"986 Meadow St, Seattle, WA 98101" -262051,AA Batteries (4-pack),1,3.84,10/30/19 11:37,"8 Elm St, San Francisco, CA 94016" -262052,USB-C Charging Cable,1,11.95,10/18/19 21:15,"832 12th St, Boston, MA 02215" -262053,Vareebadd Phone,1,400,10/31/19 13:39,"239 Chestnut St, Atlanta, GA 30301" -262054,AAA Batteries (4-pack),2,2.99,10/24/19 11:44,"533 Lakeview St, Seattle, WA 98101" -262055,20in Monitor,1,109.99,10/22/19 20:28,"549 Lincoln St, San Francisco, CA 94016" -262056,27in FHD Monitor,1,149.99,10/14/19 13:26,"38 Walnut St, Atlanta, GA 30301" -262057,Macbook Pro Laptop,1,1700,10/31/19 15:39,"724 West St, San Francisco, CA 94016" -262058,Wired Headphones,1,11.99,10/24/19 18:33,"931 11th St, Atlanta, GA 30301" -262059,34in Ultrawide Monitor,1,379.99,10/31/19 16:20,"77 Jackson St, Portland, OR 97035" -262060,Wired Headphones,1,11.99,10/06/19 20:58,"767 Lincoln St, Dallas, TX 75001" -262061,Lightning Charging Cable,1,14.95,10/26/19 19:50,"978 Ridge St, Portland, OR 97035" -262062,USB-C Charging Cable,1,11.95,10/24/19 00:19,"220 Forest St, Seattle, WA 98101" -262063,Lightning Charging Cable,1,14.95,10/27/19 20:12,"915 Lake St, San Francisco, CA 94016" -262064,27in FHD Monitor,1,149.99,10/15/19 16:00,"452 Forest St, New York City, NY 10001" -262065,Macbook Pro Laptop,1,1700,10/08/19 21:01,"298 Ridge St, Dallas, TX 75001" -262066,27in FHD Monitor,1,149.99,10/14/19 16:23,"383 Lake St, New York City, NY 10001" -262067,Lightning Charging Cable,1,14.95,10/15/19 07:55,"354 14th St, San Francisco, CA 94016" -262068,AAA Batteries (4-pack),2,2.99,10/23/19 19:43,"150 Pine St, Los Angeles, CA 90001" -262069,Bose SoundSport Headphones,1,99.99,10/09/19 17:42,"689 12th St, Boston, MA 02215" -262070,AAA Batteries (4-pack),1,2.99,10/03/19 18:20,"725 5th St, San Francisco, CA 94016" -262071,AA Batteries (4-pack),1,3.84,10/30/19 15:25,"742 Meadow St, Los Angeles, CA 90001" -262072,AAA Batteries (4-pack),5,2.99,10/03/19 15:10,"796 South St, San Francisco, CA 94016" -262073,Google Phone,1,600,10/20/19 15:19,"85 Pine St, San Francisco, CA 94016" -262074,AAA Batteries (4-pack),1,2.99,10/03/19 21:47,"19 Lakeview St, San Francisco, CA 94016" -262075,AA Batteries (4-pack),1,3.84,10/13/19 23:12,"432 Walnut St, Boston, MA 02215" -262076,AA Batteries (4-pack),1,3.84,10/13/19 11:38,"711 Lincoln St, Portland, ME 04101" -262077,Wired Headphones,1,11.99,10/16/19 22:02,"633 10th St, Los Angeles, CA 90001" -262078,Bose SoundSport Headphones,1,99.99,10/01/19 15:22,"158 Cherry St, San Francisco, CA 94016" -262078,Bose SoundSport Headphones,1,99.99,10/01/19 15:22,"158 Cherry St, San Francisco, CA 94016" -262079,Bose SoundSport Headphones,1,99.99,10/12/19 16:57,"326 11th St, Los Angeles, CA 90001" -262080,Bose SoundSport Headphones,1,99.99,10/10/19 15:55,"906 9th St, San Francisco, CA 94016" -262080,AAA Batteries (4-pack),1,2.99,10/10/19 15:55,"906 9th St, San Francisco, CA 94016" -262081,Wired Headphones,1,11.99,10/08/19 17:19,"603 South St, New York City, NY 10001" -262082,Flatscreen TV,1,300,10/10/19 17:39,"385 Willow St, Dallas, TX 75001" -262083,AA Batteries (4-pack),2,3.84,10/27/19 19:34,"213 Maple St, Dallas, TX 75001" -262084,ThinkPad Laptop,1,999.99,10/31/19 11:41,"489 Lakeview St, New York City, NY 10001" -262085,AA Batteries (4-pack),1,3.84,10/19/19 20:22,"81 Willow St, Boston, MA 02215" -262086,34in Ultrawide Monitor,1,379.99,10/23/19 18:12,"172 4th St, San Francisco, CA 94016" -262087,AA Batteries (4-pack),1,3.84,10/20/19 09:18,"564 Lakeview St, Dallas, TX 75001" -262088,Wired Headphones,1,11.99,10/07/19 17:58,"746 Sunset St, Austin, TX 73301" -262089,USB-C Charging Cable,2,11.95,10/24/19 11:43,"175 Lincoln St, Dallas, TX 75001" -262090,Bose SoundSport Headphones,1,99.99,10/02/19 08:12,"273 10th St, Portland, ME 04101" -262091,AA Batteries (4-pack),2,3.84,10/23/19 17:31,"69 Dogwood St, Los Angeles, CA 90001" -262092,Apple Airpods Headphones,1,150,10/28/19 17:06,"478 13th St, San Francisco, CA 94016" -262093,USB-C Charging Cable,1,11.95,10/03/19 09:00,"964 Pine St, San Francisco, CA 94016" -262094,34in Ultrawide Monitor,1,379.99,10/29/19 11:59,"762 14th St, San Francisco, CA 94016" -262094,Wired Headphones,1,11.99,10/29/19 11:59,"762 14th St, San Francisco, CA 94016" -262095,Google Phone,1,600,10/07/19 07:38,"394 9th St, Seattle, WA 98101" -262095,USB-C Charging Cable,1,11.95,10/07/19 07:38,"394 9th St, Seattle, WA 98101" -262096,27in FHD Monitor,1,149.99,10/31/19 09:53,"321 Chestnut St, San Francisco, CA 94016" -262097,Lightning Charging Cable,1,14.95,10/11/19 23:33,"202 11th St, San Francisco, CA 94016" -262098,Wired Headphones,1,11.99,10/21/19 14:29,"537 Washington St, Seattle, WA 98101" -262099,Apple Airpods Headphones,1,150,10/10/19 10:55,"980 9th St, Boston, MA 02215" -262100,AAA Batteries (4-pack),1,2.99,10/05/19 08:42,"439 Johnson St, San Francisco, CA 94016" -262101,AAA Batteries (4-pack),1,2.99,10/26/19 15:41,"548 11th St, Austin, TX 73301" -262102,AA Batteries (4-pack),1,3.84,10/20/19 10:34,"773 Wilson St, Atlanta, GA 30301" -262103,Lightning Charging Cable,1,14.95,10/16/19 13:21,"545 Madison St, New York City, NY 10001" -262104,Lightning Charging Cable,1,14.95,10/14/19 11:40,"728 11th St, Atlanta, GA 30301" -262105,AAA Batteries (4-pack),1,2.99,10/27/19 20:06,"774 West St, New York City, NY 10001" -262106,Wired Headphones,1,11.99,10/01/19 11:34,"260 Cedar St, Seattle, WA 98101" -262107,Bose SoundSport Headphones,1,99.99,10/30/19 19:00,"187 Madison St, Boston, MA 02215" -262108,Vareebadd Phone,1,400,10/04/19 06:08,"210 10th St, Los Angeles, CA 90001" -262108,USB-C Charging Cable,1,11.95,10/04/19 06:08,"210 10th St, Los Angeles, CA 90001" -262109,Vareebadd Phone,1,400,10/02/19 09:20,"522 Park St, Atlanta, GA 30301" -262110,USB-C Charging Cable,1,11.95,10/20/19 10:56,"204 12th St, Dallas, TX 75001" -262111,Flatscreen TV,1,300,10/25/19 21:21,"777 Spruce St, San Francisco, CA 94016" -262112,LG Washing Machine,1,600.0,10/19/19 11:26,"99 Cedar St, Los Angeles, CA 90001" -262113,USB-C Charging Cable,1,11.95,10/30/19 18:59,"548 Forest St, New York City, NY 10001" -262114,USB-C Charging Cable,1,11.95,10/14/19 10:40,"87 River St, Portland, OR 97035" -262115,34in Ultrawide Monitor,1,379.99,10/26/19 12:07,"183 Hill St, San Francisco, CA 94016" -262116,27in 4K Gaming Monitor,1,389.99,10/26/19 20:00,"399 Meadow St, Boston, MA 02215" -262117,AA Batteries (4-pack),1,3.84,10/17/19 21:44,"104 Dogwood St, San Francisco, CA 94016" -262118,Bose SoundSport Headphones,1,99.99,10/06/19 07:15,"564 North St, San Francisco, CA 94016" -262119,Google Phone,1,600,10/26/19 08:42,"62 Jackson St, Atlanta, GA 30301" -262120,Apple Airpods Headphones,1,150,10/18/19 20:07,"664 Maple St, New York City, NY 10001" -262121,27in 4K Gaming Monitor,1,389.99,10/26/19 11:18,"439 Hickory St, Austin, TX 73301" -262122,Google Phone,1,600,10/16/19 14:08,"927 Washington St, New York City, NY 10001" -262123,iPhone,1,700,10/31/19 15:40,"16 7th St, Portland, ME 04101" -262124,iPhone,1,700,10/25/19 15:25,"439 Cedar St, Los Angeles, CA 90001" -262125,AAA Batteries (4-pack),1,2.99,10/10/19 12:05,"832 Main St, Los Angeles, CA 90001" -262126,USB-C Charging Cable,1,11.95,10/11/19 16:33,"370 Jefferson St, Los Angeles, CA 90001" -262127,Wired Headphones,1,11.99,10/02/19 19:14,"833 2nd St, Boston, MA 02215" -262128,AAA Batteries (4-pack),1,2.99,10/02/19 20:55,"894 Lakeview St, New York City, NY 10001" -262129,Wired Headphones,2,11.99,10/30/19 10:10,"840 Cherry St, Portland, ME 04101" -262130,Apple Airpods Headphones,1,150,10/24/19 18:40,"675 4th St, Atlanta, GA 30301" -262131,USB-C Charging Cable,2,11.95,10/02/19 06:23,"154 Dogwood St, San Francisco, CA 94016" -262132,Wired Headphones,1,11.99,10/20/19 12:47,"522 Walnut St, Boston, MA 02215" -262133,Wired Headphones,1,11.99,10/05/19 11:58,"993 4th St, Los Angeles, CA 90001" -262134,34in Ultrawide Monitor,1,379.99,10/25/19 22:25,"448 Meadow St, Los Angeles, CA 90001" -262135,Bose SoundSport Headphones,1,99.99,10/09/19 19:00,"346 Lincoln St, Dallas, TX 75001" -262136,Macbook Pro Laptop,1,1700,10/23/19 15:33,"613 7th St, Los Angeles, CA 90001" -262137,USB-C Charging Cable,1,11.95,10/13/19 15:07,"877 Willow St, Boston, MA 02215" -262138,AAA Batteries (4-pack),1,2.99,10/19/19 12:42,"152 Adams St, Dallas, TX 75001" -262139,Apple Airpods Headphones,1,150,10/12/19 13:13,"411 South St, Boston, MA 02215" -262140,AA Batteries (4-pack),2,3.84,10/05/19 13:23,"418 Madison St, Boston, MA 02215" -262141,USB-C Charging Cable,1,11.95,10/31/19 01:13,"492 Lakeview St, San Francisco, CA 94016" -262142,Lightning Charging Cable,1,14.95,10/05/19 21:05,"307 Madison St, Seattle, WA 98101" -262143,Apple Airpods Headphones,1,150,10/29/19 14:42,"130 4th St, Boston, MA 02215" -262144,27in 4K Gaming Monitor,1,389.99,10/04/19 14:47,"87 13th St, Portland, OR 97035" -262145,Macbook Pro Laptop,1,1700,10/19/19 02:54,"469 2nd St, San Francisco, CA 94016" -262146,Wired Headphones,1,11.99,10/25/19 09:44,"406 Chestnut St, Portland, OR 97035" -262147,AA Batteries (4-pack),1,3.84,10/20/19 16:21,"370 Church St, New York City, NY 10001" -262148,iPhone,1,700,10/15/19 22:45,"150 Highland St, Boston, MA 02215" -262148,Lightning Charging Cable,1,14.95,10/15/19 22:45,"150 Highland St, Boston, MA 02215" -262148,USB-C Charging Cable,1,11.95,10/15/19 22:45,"150 Highland St, Boston, MA 02215" -262149,Google Phone,1,600,10/17/19 10:06,"274 Maple St, Dallas, TX 75001" -262150,Apple Airpods Headphones,1,150,10/17/19 20:53,"940 Willow St, Seattle, WA 98101" -262151,Lightning Charging Cable,1,14.95,10/11/19 08:34,"207 Dogwood St, Austin, TX 73301" -262152,Apple Airpods Headphones,1,150,10/11/19 18:48,"169 1st St, San Francisco, CA 94016" -262153,USB-C Charging Cable,1,11.95,10/25/19 01:03,"703 Highland St, Los Angeles, CA 90001" -262154,Vareebadd Phone,1,400,10/28/19 07:44,"377 Cedar St, New York City, NY 10001" -262154,USB-C Charging Cable,1,11.95,10/28/19 07:44,"377 Cedar St, New York City, NY 10001" -262155,AA Batteries (4-pack),1,3.84,10/21/19 14:54,"653 4th St, San Francisco, CA 94016" -262156,Apple Airpods Headphones,1,150,10/21/19 20:11,"50 Church St, Austin, TX 73301" -262156,Lightning Charging Cable,1,14.95,10/21/19 20:11,"50 Church St, Austin, TX 73301" -262157,USB-C Charging Cable,1,11.95,10/11/19 13:30,"449 Maple St, Boston, MA 02215" -262158,27in 4K Gaming Monitor,1,389.99,10/09/19 08:40,"382 Sunset St, Los Angeles, CA 90001" -262159,Macbook Pro Laptop,1,1700,10/26/19 12:41,"823 Hill St, Portland, OR 97035" -262160,AAA Batteries (4-pack),1,2.99,10/08/19 09:06,"371 Johnson St, Dallas, TX 75001" -262161,AAA Batteries (4-pack),1,2.99,10/28/19 00:18,"777 Lincoln St, San Francisco, CA 94016" -262162,AAA Batteries (4-pack),1,2.99,10/16/19 18:26,"822 Sunset St, Los Angeles, CA 90001" -262163,Lightning Charging Cable,1,14.95,10/11/19 12:10,"604 14th St, Los Angeles, CA 90001" -262164,AAA Batteries (4-pack),2,2.99,10/27/19 23:50,"930 11th St, San Francisco, CA 94016" -262165,Google Phone,1,600,10/22/19 14:29,"200 Johnson St, San Francisco, CA 94016" -262165,Wired Headphones,2,11.99,10/22/19 14:29,"200 Johnson St, San Francisco, CA 94016" -262166,USB-C Charging Cable,1,11.95,10/06/19 11:17,"902 Hill St, Boston, MA 02215" -262167,Lightning Charging Cable,1,14.95,10/24/19 12:57,"376 Center St, Portland, OR 97035" -262168,AAA Batteries (4-pack),1,2.99,10/30/19 10:10,"615 Center St, Atlanta, GA 30301" -262169,iPhone,1,700,10/08/19 21:16,"412 1st St, San Francisco, CA 94016" -262170,Lightning Charging Cable,1,14.95,10/15/19 15:09,"213 Chestnut St, Los Angeles, CA 90001" -262171,Lightning Charging Cable,1,14.95,10/06/19 01:31,"969 2nd St, Los Angeles, CA 90001" -262172,Lightning Charging Cable,1,14.95,10/06/19 11:19,"920 Chestnut St, Seattle, WA 98101" -262173,LG Washing Machine,1,600.0,10/13/19 08:20,"621 Lakeview St, Seattle, WA 98101" -262174,Apple Airpods Headphones,1,150,10/14/19 14:23,"380 Hickory St, San Francisco, CA 94016" -262175,Apple Airpods Headphones,1,150,10/22/19 13:03,"257 Cherry St, San Francisco, CA 94016" -262176,Bose SoundSport Headphones,1,99.99,10/25/19 13:45,"811 Willow St, Boston, MA 02215" -262177,AA Batteries (4-pack),2,3.84,10/17/19 15:07,"113 Meadow St, Boston, MA 02215" -262178,USB-C Charging Cable,1,11.95,10/29/19 11:55,"603 Hill St, Atlanta, GA 30301" -262179,27in 4K Gaming Monitor,1,389.99,10/22/19 14:02,"24 13th St, San Francisco, CA 94016" -262180,AA Batteries (4-pack),4,3.84,10/30/19 10:47,"475 Main St, Los Angeles, CA 90001" -262181,AA Batteries (4-pack),1,3.84,10/11/19 23:35,"651 Meadow St, Atlanta, GA 30301" -262182,AA Batteries (4-pack),2,3.84,10/10/19 09:31,"445 Willow St, Seattle, WA 98101" -262183,AAA Batteries (4-pack),1,2.99,10/11/19 11:13,"538 Highland St, San Francisco, CA 94016" -262184,20in Monitor,1,109.99,10/27/19 09:14,"291 Pine St, San Francisco, CA 94016" -262185,AA Batteries (4-pack),1,3.84,10/05/19 15:12,"75 Walnut St, Portland, OR 97035" -262186,Lightning Charging Cable,1,14.95,10/18/19 11:15,"250 13th St, Austin, TX 73301" -262187,ThinkPad Laptop,1,999.99,10/03/19 07:00,"695 Lakeview St, San Francisco, CA 94016" -262188,Lightning Charging Cable,1,14.95,10/15/19 15:16,"110 8th St, San Francisco, CA 94016" -262189,USB-C Charging Cable,1,11.95,10/23/19 10:37,"926 8th St, New York City, NY 10001" -262190,USB-C Charging Cable,1,11.95,10/26/19 13:28,"416 2nd St, Atlanta, GA 30301" -262191,Apple Airpods Headphones,1,150,10/27/19 11:08,"422 2nd St, Portland, OR 97035" -262192,ThinkPad Laptop,1,999.99,10/05/19 00:08,"493 Ridge St, Boston, MA 02215" -262193,34in Ultrawide Monitor,1,379.99,10/08/19 19:51,"319 6th St, San Francisco, CA 94016" -262194,AA Batteries (4-pack),2,3.84,10/18/19 11:32,"4 11th St, Dallas, TX 75001" -262195,20in Monitor,1,109.99,10/05/19 20:39,"240 West St, San Francisco, CA 94016" -262196,AA Batteries (4-pack),3,3.84,10/05/19 09:26,"785 Forest St, San Francisco, CA 94016" -262197,USB-C Charging Cable,1,11.95,10/28/19 16:32,"718 5th St, Portland, OR 97035" -262198,Lightning Charging Cable,1,14.95,10/29/19 08:06,"34 2nd St, Portland, OR 97035" -262199,AA Batteries (4-pack),1,3.84,10/14/19 14:52,"608 Johnson St, Seattle, WA 98101" -262200,USB-C Charging Cable,1,11.95,10/26/19 07:54,"461 Johnson St, Seattle, WA 98101" -262201,27in FHD Monitor,1,149.99,10/30/19 09:54,"211 Spruce St, Boston, MA 02215" -262202,USB-C Charging Cable,1,11.95,10/21/19 00:39,"32 5th St, Boston, MA 02215" -262203,AA Batteries (4-pack),1,3.84,10/12/19 18:36,"295 Lakeview St, San Francisco, CA 94016" -262204,Lightning Charging Cable,1,14.95,10/12/19 18:37,"160 Cherry St, Boston, MA 02215" -262205,Apple Airpods Headphones,1,150,10/02/19 20:30,"507 Jefferson St, San Francisco, CA 94016" -262206,AAA Batteries (4-pack),4,2.99,10/28/19 21:34,"455 13th St, Los Angeles, CA 90001" -262207,iPhone,1,700,10/22/19 11:45,"46 Elm St, Austin, TX 73301" -262207,Wired Headphones,1,11.99,10/22/19 11:45,"46 Elm St, Austin, TX 73301" -262208,Bose SoundSport Headphones,1,99.99,10/04/19 23:32,"856 10th St, New York City, NY 10001" -262209,Wired Headphones,1,11.99,10/09/19 13:35,"187 Park St, San Francisco, CA 94016" -262210,Lightning Charging Cable,1,14.95,10/24/19 06:55,"434 River St, Portland, OR 97035" -262211,34in Ultrawide Monitor,1,379.99,10/11/19 07:27,"527 Hickory St, Seattle, WA 98101" -262212,Wired Headphones,1,11.99,10/13/19 18:41,"225 14th St, Atlanta, GA 30301" -262213,AAA Batteries (4-pack),2,2.99,10/30/19 13:49,"231 Walnut St, Los Angeles, CA 90001" -262214,Wired Headphones,1,11.99,10/02/19 20:29,"502 Lakeview St, Dallas, TX 75001" -262215,Lightning Charging Cable,1,14.95,10/19/19 16:22,"489 12th St, Austin, TX 73301" -262216,Wired Headphones,1,11.99,10/04/19 11:13,"745 Cedar St, Los Angeles, CA 90001" -262217,iPhone,1,700,10/02/19 11:25,"404 Washington St, Atlanta, GA 30301" -262218,USB-C Charging Cable,1,11.95,10/19/19 17:44,"342 Cherry St, Boston, MA 02215" -262219,iPhone,1,700,10/09/19 08:02,"311 Forest St, Seattle, WA 98101" -262220,Lightning Charging Cable,1,14.95,10/28/19 09:21,"839 7th St, Los Angeles, CA 90001" -262221,AA Batteries (4-pack),1,3.84,10/23/19 19:53,"309 Meadow St, New York City, NY 10001" -262222,Flatscreen TV,1,300,10/27/19 23:20,"233 Jefferson St, Los Angeles, CA 90001" -262223,USB-C Charging Cable,1,11.95,10/20/19 20:13,"603 Adams St, Seattle, WA 98101" -262224,Google Phone,1,600,10/04/19 08:00,"737 Sunset St, San Francisco, CA 94016" -262225,Google Phone,1,600,10/28/19 14:01,"954 Pine St, San Francisco, CA 94016" -262225,Wired Headphones,1,11.99,10/28/19 14:01,"954 Pine St, San Francisco, CA 94016" -262226,Google Phone,1,600,10/20/19 16:57,"814 Adams St, Los Angeles, CA 90001" -262226,USB-C Charging Cable,1,11.95,10/20/19 16:57,"814 Adams St, Los Angeles, CA 90001" -262227,20in Monitor,1,109.99,10/07/19 19:34,"244 Lakeview St, New York City, NY 10001" -262228,LG Dryer,1,600.0,10/10/19 10:06,"697 Cherry St, Los Angeles, CA 90001" -262229,Flatscreen TV,1,300,10/30/19 10:34,"853 Park St, San Francisco, CA 94016" -262230,Flatscreen TV,1,300,10/10/19 12:40,"239 Walnut St, Seattle, WA 98101" -262231,Lightning Charging Cable,1,14.95,10/18/19 12:10,"192 Center St, San Francisco, CA 94016" -262232,Bose SoundSport Headphones,1,99.99,10/14/19 15:07,"193 9th St, Los Angeles, CA 90001" -262233,AA Batteries (4-pack),2,3.84,10/02/19 01:09,"119 14th St, Los Angeles, CA 90001" -262234,Apple Airpods Headphones,1,150,10/13/19 16:34,"773 Cherry St, Boston, MA 02215" -262235,AAA Batteries (4-pack),1,2.99,10/23/19 21:18,"918 9th St, San Francisco, CA 94016" -262236,Lightning Charging Cable,1,14.95,10/27/19 11:14,"133 4th St, Atlanta, GA 30301" -262237,Apple Airpods Headphones,1,150,10/06/19 13:23,"844 Jackson St, San Francisco, CA 94016" -262238,Google Phone,1,600,10/26/19 18:19,"929 Adams St, San Francisco, CA 94016" -262239,USB-C Charging Cable,2,11.95,10/07/19 21:55,"4 Center St, Los Angeles, CA 90001" -262240,AAA Batteries (4-pack),1,2.99,10/24/19 11:49,"626 Hill St, New York City, NY 10001" -262241,Apple Airpods Headphones,1,150,10/29/19 10:32,"576 Cherry St, Atlanta, GA 30301" -262242,iPhone,1,700,10/11/19 09:35,"558 6th St, Boston, MA 02215" -262242,Wired Headphones,1,11.99,10/11/19 09:35,"558 6th St, Boston, MA 02215" -262243,34in Ultrawide Monitor,1,379.99,10/31/19 10:14,"177 Chestnut St, Atlanta, GA 30301" -262244,AAA Batteries (4-pack),2,2.99,10/22/19 12:03,"38 Sunset St, Seattle, WA 98101" -262245,AA Batteries (4-pack),2,3.84,10/24/19 10:41,"666 Washington St, Austin, TX 73301" -262246,Vareebadd Phone,1,400,10/30/19 21:28,"106 Dogwood St, Dallas, TX 75001" -262246,USB-C Charging Cable,1,11.95,10/30/19 21:28,"106 Dogwood St, Dallas, TX 75001" -262247,AA Batteries (4-pack),1,3.84,10/11/19 19:09,"668 5th St, San Francisco, CA 94016" -262248,AA Batteries (4-pack),1,3.84,10/24/19 14:03,"412 Sunset St, Boston, MA 02215" -262249,Wired Headphones,1,11.99,10/21/19 09:34,"866 Johnson St, New York City, NY 10001" -262250,Apple Airpods Headphones,1,150,10/10/19 11:54,"415 Maple St, Los Angeles, CA 90001" -262250,USB-C Charging Cable,1,11.95,10/10/19 11:54,"415 Maple St, Los Angeles, CA 90001" -262251,Wired Headphones,1,11.99,10/03/19 18:16,"253 Hickory St, Los Angeles, CA 90001" -262252,20in Monitor,1,109.99,10/09/19 12:11,"302 Cedar St, San Francisco, CA 94016" -262253,Lightning Charging Cable,1,14.95,10/03/19 16:08,"737 12th St, Los Angeles, CA 90001" -262254,Lightning Charging Cable,1,14.95,10/09/19 12:46,"644 12th St, San Francisco, CA 94016" -262255,Lightning Charging Cable,1,14.95,10/10/19 11:56,"528 Maple St, San Francisco, CA 94016" -262256,Lightning Charging Cable,1,14.95,10/19/19 17:12,"904 4th St, San Francisco, CA 94016" -262257,Flatscreen TV,1,300,10/07/19 16:22,"896 Park St, San Francisco, CA 94016" -262258,Wired Headphones,1,11.99,10/09/19 20:28,"77 Jefferson St, Portland, OR 97035" -262259,AA Batteries (4-pack),2,3.84,10/25/19 20:21,"324 Walnut St, Dallas, TX 75001" -262260,AAA Batteries (4-pack),1,2.99,10/11/19 01:22,"710 9th St, New York City, NY 10001" -262261,20in Monitor,1,109.99,10/26/19 08:00,"442 Walnut St, Boston, MA 02215" -262262,iPhone,1,700,10/20/19 07:50,"828 8th St, San Francisco, CA 94016" -262262,Lightning Charging Cable,1,14.95,10/20/19 07:50,"828 8th St, San Francisco, CA 94016" -262263,Apple Airpods Headphones,1,150,10/26/19 10:30,"241 Forest St, Seattle, WA 98101" -262264,Vareebadd Phone,1,400,10/12/19 12:24,"579 Pine St, New York City, NY 10001" -262265,AA Batteries (4-pack),1,3.84,10/05/19 12:55,"800 Madison St, Austin, TX 73301" -262266,iPhone,1,700,10/17/19 16:49,"508 Cedar St, Portland, OR 97035" -262267,Bose SoundSport Headphones,1,99.99,10/17/19 11:32,"282 Cherry St, Los Angeles, CA 90001" -262268,USB-C Charging Cable,1,11.95,10/02/19 21:43,"653 Walnut St, Los Angeles, CA 90001" -262269,AA Batteries (4-pack),1,3.84,10/19/19 20:47,"137 Spruce St, Boston, MA 02215" -262270,Lightning Charging Cable,1,14.95,10/31/19 07:07,"628 Meadow St, Seattle, WA 98101" -262271,AAA Batteries (4-pack),1,2.99,10/11/19 16:44,"699 14th St, Portland, OR 97035" -262272,USB-C Charging Cable,1,11.95,10/23/19 14:45,"56 Maple St, San Francisco, CA 94016" -262273,USB-C Charging Cable,1,11.95,10/09/19 16:02,"207 Lincoln St, New York City, NY 10001" -262274,Apple Airpods Headphones,1,150,10/02/19 13:40,"469 Walnut St, Austin, TX 73301" -262275,Lightning Charging Cable,1,14.95,10/13/19 12:10,"989 Lincoln St, Portland, OR 97035" -262276,Wired Headphones,1,11.99,10/04/19 12:55,"906 Dogwood St, Los Angeles, CA 90001" -262277,Wired Headphones,2,11.99,10/26/19 22:19,"859 Sunset St, New York City, NY 10001" -262278,AA Batteries (4-pack),1,3.84,10/22/19 18:11,"905 Meadow St, Portland, OR 97035" -262279,USB-C Charging Cable,1,11.95,10/08/19 16:59,"871 Jackson St, Seattle, WA 98101" -262280,Apple Airpods Headphones,1,150,10/25/19 18:00,"898 5th St, Portland, OR 97035" -262281,AAA Batteries (4-pack),1,2.99,10/03/19 17:24,"37 6th St, Boston, MA 02215" -262282,ThinkPad Laptop,1,999.99,10/04/19 09:36,"788 River St, New York City, NY 10001" -262283,Wired Headphones,1,11.99,10/03/19 13:32,"996 6th St, San Francisco, CA 94016" -262284,AAA Batteries (4-pack),1,2.99,10/17/19 08:53,"464 Hill St, Los Angeles, CA 90001" -262285,Lightning Charging Cable,1,14.95,10/01/19 10:23,"367 13th St, New York City, NY 10001" -262286,27in FHD Monitor,1,149.99,10/01/19 06:49,"95 11th St, Austin, TX 73301" -262287,27in FHD Monitor,1,149.99,10/19/19 11:46,"850 9th St, Dallas, TX 75001" -262288,Google Phone,1,600,10/06/19 09:28,"377 Dogwood St, Atlanta, GA 30301" -262288,Bose SoundSport Headphones,1,99.99,10/06/19 09:28,"377 Dogwood St, Atlanta, GA 30301" -262289,Wired Headphones,1,11.99,10/10/19 22:36,"326 Walnut St, San Francisco, CA 94016" -262290,Lightning Charging Cable,1,14.95,10/29/19 21:19,"135 Willow St, Boston, MA 02215" -262291,USB-C Charging Cable,1,11.95,10/21/19 19:40,"531 Hill St, Boston, MA 02215" -262292,Bose SoundSport Headphones,1,99.99,10/20/19 21:46,"922 Park St, Portland, OR 97035" -262293,27in FHD Monitor,1,149.99,10/16/19 13:45,"310 Sunset St, Portland, OR 97035" -262293,AA Batteries (4-pack),2,3.84,10/16/19 13:45,"310 Sunset St, Portland, OR 97035" -262294,27in 4K Gaming Monitor,1,389.99,10/18/19 16:36,"417 Lincoln St, Boston, MA 02215" -262295,AAA Batteries (4-pack),2,2.99,10/21/19 18:48,"871 Lake St, Los Angeles, CA 90001" -262296,Wired Headphones,1,11.99,10/28/19 19:41,"109 5th St, Dallas, TX 75001" -262297,AAA Batteries (4-pack),1,2.99,10/22/19 11:41,"647 Forest St, Dallas, TX 75001" -262298,AAA Batteries (4-pack),1,2.99,10/04/19 23:59,"92 Sunset St, Portland, OR 97035" -262299,Bose SoundSport Headphones,1,99.99,10/30/19 15:04,"421 12th St, Los Angeles, CA 90001" -262300,AA Batteries (4-pack),1,3.84,10/13/19 09:07,"953 Washington St, Dallas, TX 75001" -262301,Macbook Pro Laptop,1,1700,10/14/19 12:13,"12 South St, Los Angeles, CA 90001" -262302,Lightning Charging Cable,1,14.95,10/17/19 21:30,"217 Jefferson St, Atlanta, GA 30301" -262303,AAA Batteries (4-pack),2,2.99,10/17/19 21:42,"517 1st St, Austin, TX 73301" -262304,ThinkPad Laptop,1,999.99,10/17/19 19:08,"232 Hill St, Atlanta, GA 30301" -262305,Wired Headphones,1,11.99,10/01/19 14:46,"8 Lakeview St, Portland, ME 04101" -262306,AA Batteries (4-pack),1,3.84,10/24/19 15:39,"235 Pine St, San Francisco, CA 94016" -262307,AA Batteries (4-pack),1,3.84,10/21/19 06:38,"451 Forest St, Los Angeles, CA 90001" -262308,Bose SoundSport Headphones,1,99.99,10/15/19 21:43,"15 Forest St, New York City, NY 10001" -262309,Macbook Pro Laptop,1,1700,10/07/19 17:02,"72 2nd St, Dallas, TX 75001" -262310,Flatscreen TV,1,300,10/08/19 16:12,"809 Ridge St, San Francisco, CA 94016" -262311,Google Phone,1,600,10/31/19 08:06,"890 Jackson St, San Francisco, CA 94016" -262312,Wired Headphones,1,11.99,10/21/19 19:05,"403 6th St, New York City, NY 10001" -262313,AA Batteries (4-pack),1,3.84,10/30/19 23:34,"904 Willow St, Los Angeles, CA 90001" -262314,USB-C Charging Cable,1,11.95,10/18/19 22:22,"537 Madison St, San Francisco, CA 94016" -262315,Apple Airpods Headphones,1,150,10/28/19 09:34,"487 2nd St, Los Angeles, CA 90001" -262316,Apple Airpods Headphones,1,150,10/24/19 19:23,"621 Maple St, Seattle, WA 98101" -262316,Bose SoundSport Headphones,1,99.99,10/24/19 19:23,"621 Maple St, Seattle, WA 98101" -262317,iPhone,1,700,10/31/19 22:13,"108 Center St, New York City, NY 10001" -262318,Wired Headphones,1,11.99,10/12/19 20:33,"858 Meadow St, Los Angeles, CA 90001" -262319,ThinkPad Laptop,1,999.99,10/31/19 17:28,"245 Madison St, San Francisco, CA 94016" -262320,20in Monitor,1,109.99,10/16/19 15:12,"696 Main St, Los Angeles, CA 90001" -262321,Apple Airpods Headphones,1,150,10/29/19 19:12,"783 Pine St, Dallas, TX 75001" -262322,Bose SoundSport Headphones,1,99.99,10/05/19 19:22,"670 Jackson St, New York City, NY 10001" -262323,AA Batteries (4-pack),2,3.84,10/08/19 13:10,"23 South St, Los Angeles, CA 90001" -262324,AA Batteries (4-pack),3,3.84,10/26/19 20:56,"127 11th St, Seattle, WA 98101" -262325,USB-C Charging Cable,1,11.95,10/05/19 11:04,"592 Johnson St, Los Angeles, CA 90001" -262326,AA Batteries (4-pack),1,3.84,10/25/19 23:05,"724 12th St, Los Angeles, CA 90001" -262327,Wired Headphones,1,11.99,10/06/19 22:06,"808 5th St, Los Angeles, CA 90001" -262328,Wired Headphones,1,11.99,10/03/19 16:21,"13 6th St, Boston, MA 02215" -262329,Lightning Charging Cable,1,14.95,10/19/19 11:15,"946 Wilson St, Atlanta, GA 30301" -262330,27in 4K Gaming Monitor,1,389.99,10/01/19 08:08,"763 River St, Portland, OR 97035" -262331,Macbook Pro Laptop,1,1700,10/04/19 21:24,"451 Maple St, Atlanta, GA 30301" -262332,AA Batteries (4-pack),2,3.84,10/28/19 10:34,"33 2nd St, Portland, OR 97035" -262333,AA Batteries (4-pack),1,3.84,10/04/19 12:33,"637 Walnut St, New York City, NY 10001" -262334,Macbook Pro Laptop,1,1700,10/30/19 11:12,"995 4th St, Seattle, WA 98101" -262335,Apple Airpods Headphones,1,150,10/29/19 17:15,"317 Walnut St, San Francisco, CA 94016" -262336,Wired Headphones,1,11.99,10/08/19 20:24,"112 Chestnut St, Atlanta, GA 30301" -262337,Wired Headphones,1,11.99,10/28/19 13:54,"514 Hill St, Seattle, WA 98101" -262338,27in FHD Monitor,1,149.99,10/10/19 17:21,"839 12th St, New York City, NY 10001" -262339,AA Batteries (4-pack),1,3.84,10/04/19 15:00,"687 Ridge St, Boston, MA 02215" -262340,Lightning Charging Cable,1,14.95,10/13/19 16:40,"266 Hickory St, Dallas, TX 75001" -262341,Lightning Charging Cable,1,14.95,10/26/19 11:04,"876 8th St, Boston, MA 02215" -262342,27in 4K Gaming Monitor,1,389.99,10/05/19 13:16,"242 River St, Austin, TX 73301" -262343,Wired Headphones,1,11.99,10/01/19 17:19,"644 South St, Dallas, TX 75001" -262344,Macbook Pro Laptop,1,1700,10/19/19 19:45,"245 Park St, Dallas, TX 75001" -262345,AA Batteries (4-pack),1,3.84,10/19/19 06:57,"531 Walnut St, San Francisco, CA 94016" -262346,Apple Airpods Headphones,1,150,10/10/19 15:26,"363 Highland St, New York City, NY 10001" -262347,34in Ultrawide Monitor,1,379.99,10/22/19 05:40,"433 Ridge St, Atlanta, GA 30301" -262348,Bose SoundSport Headphones,1,99.99,10/26/19 19:37,"341 Church St, San Francisco, CA 94016" -262349,iPhone,1,700,10/06/19 18:14,"152 Spruce St, Portland, OR 97035" -262350,Lightning Charging Cable,1,14.95,10/31/19 21:32,"5 Wilson St, San Francisco, CA 94016" -262351,AAA Batteries (4-pack),2,2.99,10/07/19 08:02,"865 South St, Boston, MA 02215" -262352,Bose SoundSport Headphones,1,99.99,10/29/19 23:07,"415 Hill St, San Francisco, CA 94016" -262353,AAA Batteries (4-pack),2,2.99,10/25/19 11:03,"398 Walnut St, San Francisco, CA 94016" -262354,Google Phone,1,600,10/17/19 22:17,"404 8th St, Atlanta, GA 30301" -262354,USB-C Charging Cable,1,11.95,10/17/19 22:17,"404 8th St, Atlanta, GA 30301" -262355,Google Phone,1,600,10/15/19 10:25,"554 Washington St, Seattle, WA 98101" -262356,Google Phone,1,600,10/07/19 11:44,"434 River St, Los Angeles, CA 90001" -262357,Lightning Charging Cable,1,14.95,10/09/19 11:04,"476 Forest St, Austin, TX 73301" -262358,AAA Batteries (4-pack),1,2.99,10/25/19 15:09,"59 Main St, Boston, MA 02215" -262359,AA Batteries (4-pack),1,3.84,10/28/19 01:57,"657 Washington St, Los Angeles, CA 90001" -262360,Lightning Charging Cable,1,14.95,10/03/19 17:26,"880 14th St, Austin, TX 73301" -262361,Bose SoundSport Headphones,1,99.99,10/08/19 12:49,"271 Meadow St, San Francisco, CA 94016" -262362,34in Ultrawide Monitor,1,379.99,10/23/19 11:40,"135 North St, Boston, MA 02215" -262363,34in Ultrawide Monitor,1,379.99,10/31/19 13:53,"709 9th St, Dallas, TX 75001" -262364,Bose SoundSport Headphones,1,99.99,10/17/19 20:14,"135 4th St, San Francisco, CA 94016" -262365,Wired Headphones,1,11.99,10/06/19 21:35,"347 Spruce St, Atlanta, GA 30301" -262366,Apple Airpods Headphones,1,150,10/04/19 19:26,"875 Forest St, Portland, OR 97035" -262367,Bose SoundSport Headphones,1,99.99,10/18/19 06:50,"782 12th St, San Francisco, CA 94016" -262368,USB-C Charging Cable,1,11.95,10/07/19 00:54,"556 7th St, Dallas, TX 75001" -262369,AA Batteries (4-pack),1,3.84,10/02/19 14:26,"901 Lincoln St, Dallas, TX 75001" -262370,AA Batteries (4-pack),1,3.84,10/28/19 12:03,"1 North St, San Francisco, CA 94016" -262371,34in Ultrawide Monitor,1,379.99,10/23/19 22:48,"514 Ridge St, Atlanta, GA 30301" -262372,Wired Headphones,1,11.99,10/24/19 14:36,"860 Maple St, San Francisco, CA 94016" -262373,Bose SoundSport Headphones,1,99.99,10/02/19 09:03,"191 River St, San Francisco, CA 94016" -262374,AAA Batteries (4-pack),1,2.99,10/29/19 06:04,"80 Forest St, New York City, NY 10001" -262375,AA Batteries (4-pack),1,3.84,10/06/19 20:03,"603 2nd St, New York City, NY 10001" -262376,Wired Headphones,1,11.99,10/31/19 11:14,"332 Highland St, Seattle, WA 98101" -262377,AAA Batteries (4-pack),1,2.99,10/24/19 19:59,"3 South St, Portland, OR 97035" -262378,34in Ultrawide Monitor,1,379.99,10/20/19 14:34,"408 4th St, Los Angeles, CA 90001" -262379,USB-C Charging Cable,1,11.95,10/05/19 10:52,"717 Spruce St, Austin, TX 73301" -262380,AAA Batteries (4-pack),1,2.99,10/22/19 13:14,"891 4th St, Boston, MA 02215" -262381,AAA Batteries (4-pack),1,2.99,10/11/19 08:38,"904 Jackson St, San Francisco, CA 94016" -262382,USB-C Charging Cable,1,11.95,10/19/19 17:52,"674 7th St, Portland, OR 97035" -262383,USB-C Charging Cable,1,11.95,10/15/19 20:20,"277 Wilson St, San Francisco, CA 94016" -262384,iPhone,1,700,10/30/19 16:19,"994 Highland St, San Francisco, CA 94016" -262385,Bose SoundSport Headphones,1,99.99,10/02/19 12:55,"805 Forest St, San Francisco, CA 94016" -262386,34in Ultrawide Monitor,1,379.99,10/20/19 10:47,"836 Maple St, Los Angeles, CA 90001" -262387,20in Monitor,1,109.99,10/21/19 21:47,"922 Willow St, Boston, MA 02215" -262388,Apple Airpods Headphones,1,150,10/14/19 13:37,"705 Jefferson St, Portland, ME 04101" -262389,AAA Batteries (4-pack),1,2.99,10/02/19 19:30,"34 Maple St, San Francisco, CA 94016" -262390,AAA Batteries (4-pack),1,2.99,10/17/19 11:52,"507 Pine St, San Francisco, CA 94016" -262391,Lightning Charging Cable,1,14.95,10/16/19 11:09,"372 North St, Los Angeles, CA 90001" -262392,Wired Headphones,1,11.99,10/09/19 19:26,"570 Elm St, San Francisco, CA 94016" -262393,USB-C Charging Cable,1,11.95,10/27/19 23:23,"705 West St, Portland, OR 97035" -262394,AA Batteries (4-pack),2,3.84,10/09/19 14:20,"592 Chestnut St, Los Angeles, CA 90001" -262395,Apple Airpods Headphones,1,150,10/21/19 15:26,"938 Lake St, New York City, NY 10001" -262396,USB-C Charging Cable,1,11.95,10/29/19 12:33,"995 Willow St, Austin, TX 73301" -262397,Wired Headphones,2,11.99,10/28/19 13:00,"670 Lincoln St, Austin, TX 73301" -262398,AAA Batteries (4-pack),1,2.99,10/08/19 16:17,"989 Adams St, Los Angeles, CA 90001" -262399,Apple Airpods Headphones,1,150,10/16/19 09:51,"913 Ridge St, Portland, OR 97035" -262400,Lightning Charging Cable,1,14.95,10/30/19 11:43,"462 Willow St, San Francisco, CA 94016" -262401,34in Ultrawide Monitor,1,379.99,10/27/19 22:15,"986 Spruce St, Austin, TX 73301" -262402,AAA Batteries (4-pack),1,2.99,10/27/19 13:31,"23 Forest St, Los Angeles, CA 90001" -262403,AA Batteries (4-pack),1,3.84,10/23/19 18:54,"463 9th St, Atlanta, GA 30301" -262404,Apple Airpods Headphones,1,150,10/20/19 06:19,"281 1st St, New York City, NY 10001" -262405,AAA Batteries (4-pack),1,2.99,10/10/19 18:16,"681 12th St, San Francisco, CA 94016" -262406,AAA Batteries (4-pack),1,2.99,10/14/19 16:01,"592 Willow St, Seattle, WA 98101" -262407,AAA Batteries (4-pack),3,2.99,10/25/19 13:53,"638 12th St, Los Angeles, CA 90001" -262408,Wired Headphones,1,11.99,10/15/19 13:13,"276 Park St, Dallas, TX 75001" -262409,Wired Headphones,1,11.99,10/17/19 15:45,"311 12th St, Los Angeles, CA 90001" -262410,Vareebadd Phone,1,400,10/23/19 09:38,"561 Meadow St, New York City, NY 10001" -262411,20in Monitor,1,109.99,10/17/19 04:17,"8 Walnut St, San Francisco, CA 94016" -262412,Lightning Charging Cable,1,14.95,10/27/19 10:21,"946 Center St, Portland, OR 97035" -262413,ThinkPad Laptop,1,999.99,10/02/19 19:28,"775 Cedar St, Boston, MA 02215" -262414,AA Batteries (4-pack),1,3.84,10/19/19 07:37,"484 Madison St, Los Angeles, CA 90001" -262415,Lightning Charging Cable,1,14.95,10/26/19 10:42,"297 Lake St, San Francisco, CA 94016" -262416,USB-C Charging Cable,1,11.95,10/01/19 10:01,"568 Johnson St, Boston, MA 02215" -262417,Lightning Charging Cable,1,14.95,10/27/19 18:33,"518 Meadow St, San Francisco, CA 94016" -262418,AAA Batteries (4-pack),1,2.99,10/23/19 09:01,"279 River St, San Francisco, CA 94016" -262419,Bose SoundSport Headphones,1,99.99,10/17/19 10:36,"577 Highland St, New York City, NY 10001" -262420,Flatscreen TV,1,300,10/05/19 18:47,"411 Jefferson St, Dallas, TX 75001" -262421,27in 4K Gaming Monitor,1,389.99,10/07/19 22:12,"15 River St, Atlanta, GA 30301" -262422,AA Batteries (4-pack),1,3.84,10/14/19 21:12,"533 Chestnut St, San Francisco, CA 94016" -262423,34in Ultrawide Monitor,1,379.99,10/28/19 11:48,"887 Elm St, Dallas, TX 75001" -262424,Apple Airpods Headphones,1,150,10/06/19 12:37,"445 Dogwood St, Atlanta, GA 30301" -262425,Lightning Charging Cable,2,14.95,10/23/19 20:58,"222 1st St, Boston, MA 02215" -262426,USB-C Charging Cable,1,11.95,10/31/19 21:35,"444 1st St, Boston, MA 02215" -262427,Lightning Charging Cable,1,14.95,10/02/19 01:25,"121 12th St, San Francisco, CA 94016" -262428,Lightning Charging Cable,1,14.95,10/16/19 19:20,"761 Washington St, Dallas, TX 75001" -262429,20in Monitor,1,109.99,10/03/19 09:16,"461 14th St, San Francisco, CA 94016" -262430,Lightning Charging Cable,1,14.95,10/06/19 12:44,"683 Chestnut St, New York City, NY 10001" -262431,AA Batteries (4-pack),1,3.84,10/02/19 16:52,"82 Walnut St, Los Angeles, CA 90001" -262432,Flatscreen TV,1,300,10/20/19 19:08,"413 Adams St, Austin, TX 73301" -262433,iPhone,1,700,10/24/19 13:32,"472 10th St, Boston, MA 02215" -262434,Bose SoundSport Headphones,1,99.99,10/02/19 19:58,"253 River St, New York City, NY 10001" -262435,AAA Batteries (4-pack),1,2.99,10/30/19 12:02,"505 Highland St, San Francisco, CA 94016" -262436,Lightning Charging Cable,1,14.95,10/11/19 09:15,"957 Cherry St, Boston, MA 02215" -262437,ThinkPad Laptop,1,999.99,10/02/19 14:28,"146 Jackson St, Seattle, WA 98101" -262438,Wired Headphones,1,11.99,10/04/19 13:33,"547 Main St, Boston, MA 02215" -262439,Bose SoundSport Headphones,1,99.99,10/23/19 17:48,"557 South St, Los Angeles, CA 90001" -262440,Lightning Charging Cable,1,14.95,10/04/19 17:45,"672 Pine St, Dallas, TX 75001" -262441,Lightning Charging Cable,1,14.95,10/31/19 15:43,"883 5th St, New York City, NY 10001" -262442,AA Batteries (4-pack),1,3.84,10/06/19 12:22,"431 9th St, Los Angeles, CA 90001" -262443,AAA Batteries (4-pack),1,2.99,10/03/19 14:04,"179 8th St, Atlanta, GA 30301" -262444,USB-C Charging Cable,1,11.95,10/16/19 12:37,"683 Lakeview St, San Francisco, CA 94016" -262445,Wired Headphones,1,11.99,10/08/19 13:07,"695 Maple St, San Francisco, CA 94016" -262446,AA Batteries (4-pack),1,3.84,10/24/19 08:53,"842 Meadow St, San Francisco, CA 94016" -262447,AA Batteries (4-pack),1,3.84,10/28/19 18:04,"549 1st St, Los Angeles, CA 90001" -262448,Bose SoundSport Headphones,1,99.99,10/30/19 10:36,"303 Willow St, Portland, OR 97035" -262449,Lightning Charging Cable,1,14.95,10/20/19 21:22,"565 Meadow St, Seattle, WA 98101" -262450,Bose SoundSport Headphones,1,99.99,10/06/19 17:25,"219 13th St, New York City, NY 10001" -262451,ThinkPad Laptop,1,999.99,10/18/19 12:27,"137 Lake St, San Francisco, CA 94016" -262452,Bose SoundSport Headphones,1,99.99,10/26/19 13:26,"95 Wilson St, Portland, OR 97035" -262453,Lightning Charging Cable,1,14.95,10/02/19 14:19,"890 Sunset St, Portland, OR 97035" -262454,Flatscreen TV,1,300,10/16/19 16:49,"836 2nd St, San Francisco, CA 94016" -262455,Apple Airpods Headphones,1,150,10/10/19 13:41,"511 Church St, Atlanta, GA 30301" -262456,Google Phone,1,600,10/05/19 14:48,"556 Adams St, Boston, MA 02215" -262457,USB-C Charging Cable,1,11.95,10/19/19 17:37,"574 Ridge St, San Francisco, CA 94016" -262458,USB-C Charging Cable,1,11.95,10/28/19 16:57,"497 5th St, Seattle, WA 98101" -262459,Macbook Pro Laptop,1,1700,10/21/19 13:27,"949 Lake St, Portland, OR 97035" -262460,Lightning Charging Cable,1,14.95,10/23/19 06:57,"664 Chestnut St, San Francisco, CA 94016" -262461,AAA Batteries (4-pack),3,2.99,10/31/19 19:17,"255 11th St, New York City, NY 10001" -262462,Lightning Charging Cable,1,14.95,10/27/19 11:50,"585 4th St, Portland, OR 97035" -262462,27in 4K Gaming Monitor,1,389.99,10/27/19 11:50,"585 4th St, Portland, OR 97035" -262463,AAA Batteries (4-pack),1,2.99,10/22/19 01:00,"206 Highland St, Los Angeles, CA 90001" -262464,AA Batteries (4-pack),1,3.84,10/16/19 10:27,"845 Sunset St, San Francisco, CA 94016" -262465,Bose SoundSport Headphones,1,99.99,10/20/19 08:28,"561 Lakeview St, Portland, OR 97035" -262466,USB-C Charging Cable,1,11.95,10/31/19 14:49,"228 South St, Dallas, TX 75001" -262467,Lightning Charging Cable,1,14.95,10/15/19 19:27,"654 Chestnut St, Atlanta, GA 30301" -262468,Flatscreen TV,1,300,10/24/19 14:49,"274 Chestnut St, San Francisco, CA 94016" -262469,Lightning Charging Cable,1,14.95,10/18/19 17:10,"923 1st St, Los Angeles, CA 90001" -262470,34in Ultrawide Monitor,1,379.99,10/19/19 18:18,"129 5th St, Dallas, TX 75001" -262471,Google Phone,1,600,10/03/19 15:52,"197 Lakeview St, Los Angeles, CA 90001" -262471,USB-C Charging Cable,1,11.95,10/03/19 15:52,"197 Lakeview St, Los Angeles, CA 90001" -262472,ThinkPad Laptop,1,999.99,10/05/19 12:55,"285 Park St, New York City, NY 10001" -262473,27in 4K Gaming Monitor,1,389.99,10/11/19 16:33,"769 Sunset St, Dallas, TX 75001" -262474,20in Monitor,1,109.99,10/31/19 00:25,"51 Ridge St, Boston, MA 02215" -262475,AAA Batteries (4-pack),2,2.99,10/23/19 22:49,"829 Wilson St, San Francisco, CA 94016" -262476,Macbook Pro Laptop,1,1700,10/28/19 18:20,"723 Lincoln St, New York City, NY 10001" -262477,Google Phone,1,600,10/02/19 08:08,"147 11th St, New York City, NY 10001" -262478,27in 4K Gaming Monitor,1,389.99,10/01/19 09:35,"971 Center St, New York City, NY 10001" -262479,Lightning Charging Cable,1,14.95,10/27/19 13:24,"526 Jefferson St, Austin, TX 73301" -262480,AAA Batteries (4-pack),1,2.99,10/03/19 11:23,"721 7th St, San Francisco, CA 94016" -262481,27in FHD Monitor,1,149.99,10/09/19 21:55,"519 8th St, San Francisco, CA 94016" -262482,Google Phone,1,600,10/14/19 11:39,"644 Ridge St, Dallas, TX 75001" -262483,Lightning Charging Cable,1,14.95,10/06/19 15:01,"523 1st St, Austin, TX 73301" -262484,20in Monitor,1,109.99,10/11/19 15:48,"992 Wilson St, San Francisco, CA 94016" -262485,Lightning Charging Cable,1,14.95,10/15/19 12:39,"197 Adams St, New York City, NY 10001" -262486,Bose SoundSport Headphones,1,99.99,10/26/19 16:21,"917 North St, San Francisco, CA 94016" -262487,Google Phone,1,600,10/01/19 23:16,"308 Johnson St, San Francisco, CA 94016" -262488,Macbook Pro Laptop,1,1700,10/02/19 16:50,"604 2nd St, San Francisco, CA 94016" -262489,Lightning Charging Cable,1,14.95,10/12/19 11:13,"436 Forest St, San Francisco, CA 94016" -262490,Lightning Charging Cable,1,14.95,10/31/19 17:13,"901 Adams St, New York City, NY 10001" -262491,AA Batteries (4-pack),1,3.84,10/23/19 22:44,"246 Lake St, San Francisco, CA 94016" -262492,USB-C Charging Cable,2,11.95,10/06/19 18:59,"111 2nd St, New York City, NY 10001" -262493,USB-C Charging Cable,1,11.95,10/18/19 08:35,"488 River St, San Francisco, CA 94016" -262494,27in FHD Monitor,1,149.99,10/16/19 20:41,"327 Forest St, New York City, NY 10001" -262495,Wired Headphones,2,11.99,10/15/19 13:33,"587 Forest St, Boston, MA 02215" -262496,Lightning Charging Cable,1,14.95,10/02/19 09:39,"423 Washington St, New York City, NY 10001" -262497,Lightning Charging Cable,1,14.95,10/11/19 10:52,"118 7th St, Seattle, WA 98101" -262498,Macbook Pro Laptop,1,1700,10/05/19 23:10,"290 Church St, Los Angeles, CA 90001" -262499,AAA Batteries (4-pack),2,2.99,10/15/19 02:49,"183 Wilson St, Portland, OR 97035" -262500,AA Batteries (4-pack),2,3.84,10/13/19 16:48,"329 Elm St, San Francisco, CA 94016" -262501,ThinkPad Laptop,1,999.99,10/28/19 17:24,"549 Adams St, Austin, TX 73301" -262502,27in 4K Gaming Monitor,1,389.99,10/07/19 09:56,"174 5th St, San Francisco, CA 94016" -262503,Wired Headphones,1,11.99,10/28/19 08:49,"233 Pine St, Dallas, TX 75001" -262504,Wired Headphones,4,11.99,10/26/19 12:41,"846 Meadow St, Seattle, WA 98101" -262505,LG Dryer,1,600.0,10/02/19 12:53,"541 Wilson St, New York City, NY 10001" -262506,Apple Airpods Headphones,1,150,10/22/19 21:54,"829 Church St, Atlanta, GA 30301" -262507,Flatscreen TV,1,300,10/14/19 22:26,"184 Hill St, San Francisco, CA 94016" -262508,USB-C Charging Cable,1,11.95,10/02/19 13:57,"102 Pine St, San Francisco, CA 94016" -262509,Bose SoundSport Headphones,1,99.99,10/23/19 05:32,"470 8th St, San Francisco, CA 94016" -262510,Lightning Charging Cable,1,14.95,10/15/19 15:54,"481 6th St, Los Angeles, CA 90001" -262511,Apple Airpods Headphones,1,150,10/27/19 17:34,"846 14th St, San Francisco, CA 94016" -262512,AAA Batteries (4-pack),2,2.99,10/28/19 22:32,"361 Walnut St, Austin, TX 73301" -262513,iPhone,1,700,10/18/19 14:34,"837 Spruce St, Atlanta, GA 30301" -262513,Lightning Charging Cable,1,14.95,10/18/19 14:34,"837 Spruce St, Atlanta, GA 30301" -262514,iPhone,1,700,10/28/19 20:13,"895 Park St, Los Angeles, CA 90001" -262514,Wired Headphones,2,11.99,10/28/19 20:13,"895 Park St, Los Angeles, CA 90001" -262515,34in Ultrawide Monitor,1,379.99,10/25/19 07:30,"373 Cedar St, Seattle, WA 98101" -262516,AAA Batteries (4-pack),1,2.99,10/05/19 20:34,"612 Cherry St, Austin, TX 73301" -262517,Wired Headphones,1,11.99,10/10/19 13:01,"415 Jackson St, San Francisco, CA 94016" -262518,Bose SoundSport Headphones,1,99.99,10/10/19 16:36,"737 Maple St, Portland, OR 97035" -262519,Lightning Charging Cable,2,14.95,10/04/19 17:21,"142 8th St, New York City, NY 10001" -262520,34in Ultrawide Monitor,1,379.99,10/22/19 13:24,"877 North St, Austin, TX 73301" -262521,AA Batteries (4-pack),1,3.84,10/15/19 14:36,"66 Walnut St, Boston, MA 02215" -262522,Apple Airpods Headphones,1,150,10/12/19 10:59,"446 14th St, New York City, NY 10001" -262523,Apple Airpods Headphones,1,150,10/23/19 10:44,"953 Pine St, Los Angeles, CA 90001" -262524,27in FHD Monitor,1,149.99,10/15/19 06:27,"840 Johnson St, Atlanta, GA 30301" -262525,Apple Airpods Headphones,1,150,10/16/19 20:32,"168 Meadow St, San Francisco, CA 94016" -262526,Google Phone,1,600,10/02/19 16:21,"240 Hickory St, Boston, MA 02215" -262527,Lightning Charging Cable,1,14.95,10/16/19 13:23,"621 Dogwood St, Boston, MA 02215" -262528,34in Ultrawide Monitor,1,379.99,10/03/19 15:56,"514 Hickory St, Boston, MA 02215" -262529,34in Ultrawide Monitor,1,379.99,10/23/19 13:44,"832 Dogwood St, San Francisco, CA 94016" -262530,Apple Airpods Headphones,1,150,10/10/19 09:55,"506 Cedar St, Atlanta, GA 30301" -262531,Lightning Charging Cable,1,14.95,10/30/19 21:05,"723 Lincoln St, Dallas, TX 75001" -262532,AA Batteries (4-pack),2,3.84,10/04/19 00:15,"193 Spruce St, Atlanta, GA 30301" -262533,iPhone,1,700,10/14/19 21:33,"921 Lake St, San Francisco, CA 94016" -262534,USB-C Charging Cable,2,11.95,10/07/19 15:36,"523 14th St, San Francisco, CA 94016" -262535,AA Batteries (4-pack),3,3.84,10/24/19 10:04,"535 South St, Atlanta, GA 30301" -262536,Wired Headphones,2,11.99,10/20/19 09:34,"518 West St, New York City, NY 10001" -262537,USB-C Charging Cable,1,11.95,10/16/19 20:37,"873 Washington St, Los Angeles, CA 90001" -262538,Bose SoundSport Headphones,1,99.99,10/27/19 01:47,"55 Wilson St, San Francisco, CA 94016" -262539,Wired Headphones,1,11.99,10/01/19 23:40,"874 Lakeview St, San Francisco, CA 94016" -262540,AAA Batteries (4-pack),1,2.99,10/31/19 23:38,"647 Maple St, Los Angeles, CA 90001" -262541,AA Batteries (4-pack),1,3.84,10/21/19 21:32,"452 Adams St, San Francisco, CA 94016" -262542,Apple Airpods Headphones,1,150,10/05/19 08:44,"874 Highland St, Los Angeles, CA 90001" -262543,34in Ultrawide Monitor,1,379.99,10/13/19 15:30,"890 Lincoln St, Portland, OR 97035" -262544,USB-C Charging Cable,1,11.95,10/09/19 10:56,"337 Cherry St, Los Angeles, CA 90001" -262545,Lightning Charging Cable,1,14.95,10/17/19 23:50,"525 6th St, San Francisco, CA 94016" -262546,Lightning Charging Cable,1,14.95,10/10/19 16:15,"468 Cedar St, Los Angeles, CA 90001" -,,,,, -262547,Lightning Charging Cable,1,14.95,10/08/19 22:29,"296 10th St, San Francisco, CA 94016" -262548,Apple Airpods Headphones,1,150,10/14/19 16:38,"879 Cherry St, Boston, MA 02215" -262549,AAA Batteries (4-pack),1,2.99,10/13/19 12:50,"911 River St, San Francisco, CA 94016" -262550,27in 4K Gaming Monitor,1,389.99,10/31/19 20:03,"372 14th St, Austin, TX 73301" -262551,AAA Batteries (4-pack),1,2.99,10/30/19 00:55,"844 Pine St, Atlanta, GA 30301" -262552,AAA Batteries (4-pack),4,2.99,10/04/19 14:47,"56 Cedar St, Los Angeles, CA 90001" -262553,Apple Airpods Headphones,1,150,10/28/19 13:42,"366 Spruce St, Los Angeles, CA 90001" -262554,AAA Batteries (4-pack),1,2.99,10/21/19 16:43,"188 Wilson St, Seattle, WA 98101" -262555,Lightning Charging Cable,1,14.95,10/23/19 08:23,"216 1st St, Austin, TX 73301" -262556,AA Batteries (4-pack),1,3.84,10/01/19 21:06,"932 6th St, Los Angeles, CA 90001" -262557,AAA Batteries (4-pack),3,2.99,10/02/19 09:10,"608 Dogwood St, Seattle, WA 98101" -262558,AA Batteries (4-pack),1,3.84,10/15/19 19:35,"428 10th St, Portland, OR 97035" -262559,34in Ultrawide Monitor,1,379.99,10/18/19 09:20,"500 Meadow St, Boston, MA 02215" -262560,AA Batteries (4-pack),2,3.84,10/23/19 13:48,"619 Meadow St, Atlanta, GA 30301" -262561,USB-C Charging Cable,1,11.95,10/07/19 22:58,"949 Sunset St, Los Angeles, CA 90001" -262562,Macbook Pro Laptop,1,1700,10/27/19 08:46,"424 West St, San Francisco, CA 94016" -262563,Wired Headphones,2,11.99,10/03/19 14:09,"693 Hill St, Los Angeles, CA 90001" -262564,Apple Airpods Headphones,1,150,10/27/19 16:30,"543 1st St, San Francisco, CA 94016" -262565,Macbook Pro Laptop,1,1700,10/04/19 15:56,"779 Cedar St, New York City, NY 10001" -262566,Bose SoundSport Headphones,1,99.99,10/20/19 16:12,"483 Pine St, San Francisco, CA 94016" -262567,USB-C Charging Cable,3,11.95,10/01/19 22:42,"6 Park St, Los Angeles, CA 90001" -262568,34in Ultrawide Monitor,1,379.99,10/07/19 14:05,"666 Lake St, New York City, NY 10001" -262569,Flatscreen TV,1,300,10/23/19 10:07,"930 6th St, Atlanta, GA 30301" -262570,Lightning Charging Cable,1,14.95,10/21/19 18:28,"255 7th St, Seattle, WA 98101" -262571,AA Batteries (4-pack),1,3.84,10/13/19 20:09,"288 Chestnut St, Los Angeles, CA 90001" -262572,27in FHD Monitor,1,149.99,10/15/19 21:47,"595 West St, Los Angeles, CA 90001" -262573,Wired Headphones,1,11.99,10/01/19 13:41,"944 Pine St, San Francisco, CA 94016" -262574,Lightning Charging Cable,1,14.95,10/09/19 14:36,"10 Lincoln St, Portland, OR 97035" -262575,Apple Airpods Headphones,1,150,10/15/19 15:26,"502 Chestnut St, Los Angeles, CA 90001" -262576,Apple Airpods Headphones,1,150,10/11/19 10:12,"590 Washington St, Los Angeles, CA 90001" -262577,USB-C Charging Cable,1,11.95,10/02/19 11:04,"269 10th St, Seattle, WA 98101" -262578,27in 4K Gaming Monitor,1,389.99,10/12/19 21:34,"922 Center St, San Francisco, CA 94016" -262579,Wired Headphones,1,11.99,10/04/19 12:50,"141 Pine St, New York City, NY 10001" -262580,AAA Batteries (4-pack),1,2.99,10/03/19 01:54,"699 Park St, Los Angeles, CA 90001" -262581,27in FHD Monitor,1,149.99,10/24/19 13:55,"505 West St, Boston, MA 02215" -262582,USB-C Charging Cable,1,11.95,10/13/19 18:56,"167 Washington St, Los Angeles, CA 90001" -262583,iPhone,1,700,10/22/19 19:36,"359 Forest St, New York City, NY 10001" -262584,Lightning Charging Cable,1,14.95,10/04/19 17:32,"795 Jackson St, Atlanta, GA 30301" -262585,27in FHD Monitor,1,149.99,10/27/19 11:44,"77 Johnson St, Portland, ME 04101" -262586,Lightning Charging Cable,1,14.95,10/16/19 15:18,"440 Center St, San Francisco, CA 94016" -262587,Apple Airpods Headphones,1,150,10/18/19 20:05,"258 Lake St, Los Angeles, CA 90001" -262588,AA Batteries (4-pack),1,3.84,10/26/19 12:43,"405 1st St, Seattle, WA 98101" -262589,Apple Airpods Headphones,1,150,10/10/19 11:07,"154 Maple St, Los Angeles, CA 90001" -262590,AA Batteries (4-pack),2,3.84,10/11/19 17:11,"991 2nd St, Los Angeles, CA 90001" -262591,34in Ultrawide Monitor,1,379.99,10/15/19 14:45,"671 Willow St, San Francisco, CA 94016" -262592,USB-C Charging Cable,2,11.95,10/10/19 17:11,"464 Chestnut St, Dallas, TX 75001" -262593,iPhone,1,700,10/14/19 07:51,"284 8th St, New York City, NY 10001" -262594,AA Batteries (4-pack),1,3.84,10/10/19 11:19,"492 Forest St, Boston, MA 02215" -262595,Macbook Pro Laptop,1,1700,10/08/19 21:03,"134 Johnson St, Dallas, TX 75001" -262596,iPhone,1,700,10/11/19 09:59,"725 Lake St, Dallas, TX 75001" -262596,Apple Airpods Headphones,1,150,10/11/19 09:59,"725 Lake St, Dallas, TX 75001" -262597,AA Batteries (4-pack),1,3.84,10/08/19 12:02,"111 14th St, San Francisco, CA 94016" -262598,Wired Headphones,1,11.99,10/22/19 20:45,"236 Lincoln St, Portland, OR 97035" -262599,USB-C Charging Cable,1,11.95,10/24/19 00:05,"842 Johnson St, New York City, NY 10001" -262600,Wired Headphones,1,11.99,10/25/19 21:39,"810 Lake St, Dallas, TX 75001" -262601,AA Batteries (4-pack),1,3.84,10/07/19 19:54,"914 Center St, Dallas, TX 75001" -,,,,, -262602,AAA Batteries (4-pack),4,2.99,10/14/19 09:42,"372 Hickory St, Seattle, WA 98101" -262603,ThinkPad Laptop,1,999.99,10/29/19 10:32,"386 Lincoln St, Dallas, TX 75001" -262604,Bose SoundSport Headphones,1,99.99,10/12/19 23:49,"523 12th St, Los Angeles, CA 90001" -262605,Bose SoundSport Headphones,1,99.99,10/11/19 10:43,"913 Willow St, Boston, MA 02215" -262606,AAA Batteries (4-pack),3,2.99,10/16/19 18:35,"220 Cherry St, New York City, NY 10001" -262607,Lightning Charging Cable,1,14.95,10/26/19 14:50,"637 Center St, Austin, TX 73301" -262608,AAA Batteries (4-pack),4,2.99,10/10/19 13:42,"590 Meadow St, New York City, NY 10001" -262609,AA Batteries (4-pack),1,3.84,10/12/19 14:19,"721 Willow St, Boston, MA 02215" -262610,Apple Airpods Headphones,1,150,10/16/19 13:01,"888 Cherry St, Los Angeles, CA 90001" -262611,AA Batteries (4-pack),1,3.84,10/15/19 20:38,"187 Adams St, San Francisco, CA 94016" -262612,iPhone,1,700,10/03/19 20:19,"247 Highland St, San Francisco, CA 94016" -262613,Wired Headphones,1,11.99,10/12/19 17:09,"417 14th St, Portland, OR 97035" -262614,AA Batteries (4-pack),1,3.84,10/11/19 12:43,"673 Spruce St, Los Angeles, CA 90001" -262615,20in Monitor,1,109.99,10/20/19 08:00,"378 Lake St, Seattle, WA 98101" -262616,USB-C Charging Cable,1,11.95,10/25/19 08:58,"247 Church St, San Francisco, CA 94016" -262617,Bose SoundSport Headphones,1,99.99,10/23/19 15:09,"41 Madison St, Atlanta, GA 30301" -262618,Bose SoundSport Headphones,1,99.99,10/06/19 04:49,"507 South St, Los Angeles, CA 90001" -262619,USB-C Charging Cable,2,11.95,10/27/19 01:39,"358 10th St, Boston, MA 02215" -262620,iPhone,1,700,10/31/19 22:22,"826 Sunset St, New York City, NY 10001" -262620,Apple Airpods Headphones,1,150,10/31/19 22:22,"826 Sunset St, New York City, NY 10001" -262621,USB-C Charging Cable,1,11.95,10/25/19 21:20,"205 River St, Portland, OR 97035" -262622,USB-C Charging Cable,1,11.95,10/04/19 20:18,"671 1st St, San Francisco, CA 94016" -262623,AAA Batteries (4-pack),1,2.99,10/08/19 10:17,"229 Maple St, Atlanta, GA 30301" -262624,Flatscreen TV,1,300,10/05/19 17:26,"575 7th St, Dallas, TX 75001" -262625,iPhone,1,700,10/02/19 19:37,"594 Main St, Boston, MA 02215" -262626,Bose SoundSport Headphones,1,99.99,10/08/19 23:36,"52 5th St, San Francisco, CA 94016" -262627,Apple Airpods Headphones,1,150,10/20/19 13:32,"413 2nd St, Seattle, WA 98101" -262628,34in Ultrawide Monitor,1,379.99,10/17/19 18:01,"128 Lakeview St, San Francisco, CA 94016" -262629,20in Monitor,1,109.99,10/12/19 19:54,"319 Elm St, Austin, TX 73301" -262630,Macbook Pro Laptop,1,1700,10/18/19 23:47,"700 Hickory St, Los Angeles, CA 90001" -262631,Lightning Charging Cable,1,14.95,10/03/19 11:55,"453 11th St, San Francisco, CA 94016" -262632,Google Phone,1,600,10/19/19 13:39,"239 Hickory St, Boston, MA 02215" -262633,Lightning Charging Cable,1,14.95,10/29/19 14:17,"454 Maple St, Austin, TX 73301" -262634,Macbook Pro Laptop,1,1700,10/31/19 00:42,"927 Hickory St, Boston, MA 02215" -262635,ThinkPad Laptop,1,999.99,10/17/19 18:55,"885 South St, Seattle, WA 98101" -262636,Wired Headphones,1,11.99,10/31/19 16:44,"124 Pine St, Seattle, WA 98101" -262637,Lightning Charging Cable,1,14.95,10/14/19 09:03,"3 Park St, San Francisco, CA 94016" -262638,AA Batteries (4-pack),1,3.84,10/08/19 12:17,"383 Washington St, Los Angeles, CA 90001" -262639,27in FHD Monitor,1,149.99,10/18/19 20:27,"476 Hickory St, Portland, ME 04101" -262640,AAA Batteries (4-pack),2,2.99,10/24/19 12:35,"105 Meadow St, Portland, OR 97035" -262641,Bose SoundSport Headphones,1,99.99,10/28/19 09:43,"633 14th St, San Francisco, CA 94016" -262642,27in FHD Monitor,1,149.99,10/21/19 16:02,"588 13th St, Seattle, WA 98101" -262643,Lightning Charging Cable,1,14.95,10/30/19 10:54,"152 Forest St, Boston, MA 02215" -262644,Flatscreen TV,1,300,10/31/19 22:08,"128 River St, Boston, MA 02215" -262645,Lightning Charging Cable,1,14.95,10/25/19 19:51,"59 Dogwood St, New York City, NY 10001" -262646,Google Phone,1,600,10/24/19 18:18,"420 West St, San Francisco, CA 94016" -262647,AA Batteries (4-pack),2,3.84,10/17/19 21:54,"564 14th St, Los Angeles, CA 90001" -262648,AA Batteries (4-pack),1,3.84,10/26/19 17:52,"818 12th St, Portland, OR 97035" -262649,AAA Batteries (4-pack),1,2.99,10/09/19 07:37,"631 Center St, San Francisco, CA 94016" -262650,27in 4K Gaming Monitor,1,389.99,10/10/19 17:45,"312 River St, Atlanta, GA 30301" -262651,Bose SoundSport Headphones,1,99.99,10/09/19 18:05,"565 5th St, Seattle, WA 98101" -262652,Google Phone,1,600,10/12/19 21:56,"898 5th St, San Francisco, CA 94016" -262653,Google Phone,1,600,10/01/19 12:36,"430 Dogwood St, New York City, NY 10001" -262654,AA Batteries (4-pack),2,3.84,10/21/19 08:11,"96 2nd St, San Francisco, CA 94016" -262655,AAA Batteries (4-pack),1,2.99,10/21/19 21:36,"761 Lakeview St, New York City, NY 10001" -262656,Google Phone,1,600,10/16/19 01:19,"207 Hill St, Dallas, TX 75001" -262657,AA Batteries (4-pack),1,3.84,10/04/19 23:13,"659 12th St, San Francisco, CA 94016" -262658,AAA Batteries (4-pack),2,2.99,10/21/19 08:44,"436 14th St, Dallas, TX 75001" -262659,Apple Airpods Headphones,1,150,10/18/19 17:19,"832 Walnut St, Atlanta, GA 30301" -262660,Bose SoundSport Headphones,1,99.99,10/26/19 00:53,"892 Hickory St, Los Angeles, CA 90001" -262661,AAA Batteries (4-pack),1,2.99,10/10/19 18:45,"511 Hickory St, San Francisco, CA 94016" -262662,AA Batteries (4-pack),1,3.84,10/11/19 13:20,"983 Chestnut St, Seattle, WA 98101" -262663,Lightning Charging Cable,1,14.95,10/30/19 18:12,"676 Forest St, Boston, MA 02215" -262664,AA Batteries (4-pack),1,3.84,10/17/19 15:40,"689 North St, New York City, NY 10001" -262665,Lightning Charging Cable,1,14.95,10/11/19 13:14,"638 Adams St, San Francisco, CA 94016" -262666,34in Ultrawide Monitor,1,379.99,10/28/19 23:49,"705 Ridge St, Austin, TX 73301" -262667,USB-C Charging Cable,1,11.95,10/08/19 20:59,"954 Forest St, San Francisco, CA 94016" -262668,Bose SoundSport Headphones,1,99.99,10/18/19 08:15,"500 Chestnut St, New York City, NY 10001" -262669,Lightning Charging Cable,1,14.95,10/04/19 19:57,"516 5th St, Seattle, WA 98101" -262670,USB-C Charging Cable,1,11.95,10/09/19 13:04,"517 Meadow St, Dallas, TX 75001" -262671,USB-C Charging Cable,1,11.95,10/15/19 15:38,"193 Jackson St, Dallas, TX 75001" -262672,AA Batteries (4-pack),1,3.84,10/16/19 00:27,"305 Sunset St, Los Angeles, CA 90001" -262673,Lightning Charging Cable,1,14.95,10/23/19 09:16,"394 Lakeview St, Seattle, WA 98101" -262674,AA Batteries (4-pack),1,3.84,10/28/19 10:23,"463 Lakeview St, Seattle, WA 98101" -262674,Wired Headphones,1,11.99,10/28/19 10:23,"463 Lakeview St, Seattle, WA 98101" -262675,ThinkPad Laptop,1,999.99,10/12/19 11:32,"291 Lakeview St, Los Angeles, CA 90001" -262676,AA Batteries (4-pack),1,3.84,10/04/19 22:32,"5 Pine St, New York City, NY 10001" -262677,Bose SoundSport Headphones,1,99.99,10/25/19 14:44,"760 6th St, Austin, TX 73301" -262678,Wired Headphones,1,11.99,10/02/19 23:32,"84 Park St, Boston, MA 02215" -262679,AA Batteries (4-pack),1,3.84,10/14/19 20:22,"715 Washington St, Atlanta, GA 30301" -262680,ThinkPad Laptop,1,999.99,10/01/19 14:22,"119 Adams St, San Francisco, CA 94016" -262681,AA Batteries (4-pack),1,3.84,10/08/19 21:00,"135 Forest St, Boston, MA 02215" -262682,Lightning Charging Cable,1,14.95,10/25/19 22:14,"572 6th St, San Francisco, CA 94016" -262683,AAA Batteries (4-pack),1,2.99,10/29/19 12:46,"511 10th St, San Francisco, CA 94016" -262684,AA Batteries (4-pack),2,3.84,10/18/19 23:13,"778 11th St, Los Angeles, CA 90001" -262685,Lightning Charging Cable,1,14.95,10/22/19 10:51,"441 Johnson St, San Francisco, CA 94016" -262686,Lightning Charging Cable,1,14.95,10/07/19 05:19,"211 11th St, San Francisco, CA 94016" -262687,Bose SoundSport Headphones,1,99.99,10/13/19 16:20,"130 Lincoln St, Boston, MA 02215" -262688,ThinkPad Laptop,1,999.99,10/18/19 16:50,"499 Hill St, Los Angeles, CA 90001" -262689,ThinkPad Laptop,1,999.99,10/31/19 17:49,"896 Lincoln St, Portland, OR 97035" -262690,Macbook Pro Laptop,1,1700,10/12/19 18:56,"835 Spruce St, San Francisco, CA 94016" -262691,Wired Headphones,1,11.99,10/03/19 20:34,"57 North St, San Francisco, CA 94016" -262692,Lightning Charging Cable,1,14.95,10/17/19 14:08,"653 Cedar St, San Francisco, CA 94016" -262693,AAA Batteries (4-pack),1,2.99,10/30/19 13:13,"400 Chestnut St, New York City, NY 10001" -262694,Bose SoundSport Headphones,1,99.99,10/12/19 21:28,"419 Madison St, Los Angeles, CA 90001" -262695,USB-C Charging Cable,1,11.95,10/25/19 12:34,"742 Lakeview St, Los Angeles, CA 90001" -262696,ThinkPad Laptop,1,999.99,10/19/19 23:29,"851 Ridge St, Boston, MA 02215" -262697,AA Batteries (4-pack),1,3.84,10/18/19 13:41,"620 West St, Dallas, TX 75001" -262698,27in 4K Gaming Monitor,1,389.99,10/07/19 21:19,"15 7th St, Seattle, WA 98101" -262699,Apple Airpods Headphones,1,150,10/09/19 00:28,"69 Sunset St, San Francisco, CA 94016" -262700,Lightning Charging Cable,1,14.95,10/11/19 16:05,"857 4th St, Dallas, TX 75001" -262701,Apple Airpods Headphones,1,150,10/22/19 07:47,"404 9th St, Dallas, TX 75001" -262702,AAA Batteries (4-pack),4,2.99,10/13/19 16:51,"121 South St, San Francisco, CA 94016" -262703,AAA Batteries (4-pack),1,2.99,10/16/19 13:57,"325 Spruce St, New York City, NY 10001" -262704,AA Batteries (4-pack),1,3.84,10/29/19 07:38,"678 Madison St, Portland, OR 97035" -262705,Lightning Charging Cable,1,14.95,10/11/19 19:24,"952 Main St, Portland, ME 04101" -262706,USB-C Charging Cable,1,11.95,10/06/19 01:46,"759 Washington St, Atlanta, GA 30301" -262707,iPhone,1,700,10/16/19 12:33,"494 4th St, Los Angeles, CA 90001" -262708,27in FHD Monitor,1,149.99,10/14/19 11:30,"494 Johnson St, Austin, TX 73301" -262709,Bose SoundSport Headphones,1,99.99,10/09/19 13:46,"458 9th St, Boston, MA 02215" -262710,AA Batteries (4-pack),1,3.84,10/18/19 15:22,"95 7th St, San Francisco, CA 94016" -262711,AA Batteries (4-pack),1,3.84,10/02/19 21:23,"106 Washington St, Atlanta, GA 30301" -262712,AAA Batteries (4-pack),1,2.99,10/07/19 19:44,"385 North St, San Francisco, CA 94016" -262713,AAA Batteries (4-pack),2,2.99,10/03/19 13:58,"954 Hickory St, Los Angeles, CA 90001" -262714,Bose SoundSport Headphones,1,99.99,10/02/19 09:44,"793 Johnson St, Austin, TX 73301" -262715,USB-C Charging Cable,2,11.95,10/18/19 18:27,"373 Walnut St, Los Angeles, CA 90001" -262716,27in FHD Monitor,1,149.99,10/05/19 22:31,"163 8th St, Boston, MA 02215" -262717,27in 4K Gaming Monitor,1,389.99,10/08/19 09:08,"629 2nd St, Portland, OR 97035" -262718,Wired Headphones,2,11.99,10/25/19 10:54,"510 Chestnut St, San Francisco, CA 94016" -262719,Lightning Charging Cable,1,14.95,10/29/19 11:20,"837 Maple St, Atlanta, GA 30301" -262720,USB-C Charging Cable,1,11.95,10/24/19 22:59,"497 Madison St, Seattle, WA 98101" -262721,iPhone,1,700,10/07/19 18:52,"117 Washington St, San Francisco, CA 94016" -262721,Lightning Charging Cable,1,14.95,10/07/19 18:52,"117 Washington St, San Francisco, CA 94016" -262722,iPhone,1,700,10/03/19 14:31,"850 Walnut St, Austin, TX 73301" -262723,Wired Headphones,1,11.99,10/27/19 12:47,"50 Lake St, Boston, MA 02215" -262724,27in 4K Gaming Monitor,1,389.99,10/11/19 17:43,"876 9th St, Dallas, TX 75001" -262725,AAA Batteries (4-pack),1,2.99,10/22/19 19:29,"212 South St, Dallas, TX 75001" -262725,Bose SoundSport Headphones,1,99.99,10/22/19 19:29,"212 South St, Dallas, TX 75001" -262726,Apple Airpods Headphones,1,150,10/02/19 20:21,"600 Adams St, New York City, NY 10001" -262727,Wired Headphones,1,11.99,10/14/19 19:34,"348 Forest St, Seattle, WA 98101" -262728,20in Monitor,1,109.99,10/25/19 10:22,"118 6th St, San Francisco, CA 94016" -262729,20in Monitor,1,109.99,10/03/19 18:20,"420 Chestnut St, San Francisco, CA 94016" -262730,USB-C Charging Cable,1,11.95,10/06/19 20:35,"969 Dogwood St, Portland, OR 97035" -262731,AAA Batteries (4-pack),1,2.99,10/16/19 16:30,"667 Hickory St, New York City, NY 10001" -262732,USB-C Charging Cable,1,11.95,10/26/19 14:55,"474 Highland St, Austin, TX 73301" -262733,AA Batteries (4-pack),1,3.84,10/23/19 16:20,"474 Adams St, Atlanta, GA 30301" -262734,AAA Batteries (4-pack),1,2.99,10/18/19 12:07,"686 9th St, Boston, MA 02215" -262735,AAA Batteries (4-pack),1,2.99,10/23/19 18:04,"854 Pine St, New York City, NY 10001" -262736,Macbook Pro Laptop,1,1700,10/24/19 07:17,"443 14th St, Seattle, WA 98101" -262737,Flatscreen TV,1,300,10/16/19 10:17,"838 Sunset St, San Francisco, CA 94016" -262738,27in 4K Gaming Monitor,1,389.99,10/18/19 10:21,"636 8th St, New York City, NY 10001" -262739,20in Monitor,1,109.99,10/04/19 12:20,"905 Spruce St, San Francisco, CA 94016" -262740,Apple Airpods Headphones,1,150,10/15/19 22:17,"112 10th St, Los Angeles, CA 90001" -262741,Bose SoundSport Headphones,1,99.99,10/08/19 07:59,"541 2nd St, Seattle, WA 98101" -262742,Wired Headphones,1,11.99,10/22/19 19:53,"246 12th St, San Francisco, CA 94016" -262743,USB-C Charging Cable,1,11.95,10/26/19 08:29,"113 8th St, Boston, MA 02215" -262744,27in FHD Monitor,1,149.99,10/03/19 07:16,"452 West St, Los Angeles, CA 90001" -262745,AAA Batteries (4-pack),3,2.99,10/22/19 17:48,"378 Willow St, Los Angeles, CA 90001" -262746,AA Batteries (4-pack),1,3.84,10/21/19 12:07,"649 1st St, Los Angeles, CA 90001" -262747,AA Batteries (4-pack),1,3.84,10/12/19 17:34,"165 Washington St, Portland, OR 97035" -262748,iPhone,1,700,10/25/19 14:40,"907 13th St, Seattle, WA 98101" -262749,Lightning Charging Cable,1,14.95,10/09/19 07:02,"883 Sunset St, Los Angeles, CA 90001" -262750,Lightning Charging Cable,1,14.95,10/24/19 19:55,"231 8th St, Los Angeles, CA 90001" -262751,AA Batteries (4-pack),1,3.84,10/15/19 20:10,"168 Spruce St, Portland, ME 04101" -262752,Apple Airpods Headphones,1,150,10/04/19 11:30,"374 13th St, Seattle, WA 98101" -262753,ThinkPad Laptop,1,999.99,10/20/19 10:35,"477 Main St, Los Angeles, CA 90001" -262754,Bose SoundSport Headphones,1,99.99,10/05/19 21:41,"342 Highland St, Boston, MA 02215" -262755,iPhone,1,700,10/12/19 19:36,"496 Hill St, New York City, NY 10001" -262756,AAA Batteries (4-pack),1,2.99,10/26/19 11:47,"979 Chestnut St, Boston, MA 02215" -262756,Lightning Charging Cable,1,14.95,10/26/19 11:47,"979 Chestnut St, Boston, MA 02215" -262757,USB-C Charging Cable,1,11.95,10/12/19 19:53,"481 10th St, New York City, NY 10001" -262758,34in Ultrawide Monitor,1,379.99,10/05/19 10:26,"226 Pine St, San Francisco, CA 94016" -262759,Macbook Pro Laptop,1,1700,10/03/19 17:11,"721 Spruce St, Portland, ME 04101" -262760,Lightning Charging Cable,1,14.95,10/20/19 20:17,"990 Sunset St, Portland, OR 97035" -262761,AA Batteries (4-pack),1,3.84,10/11/19 12:01,"26 Ridge St, Austin, TX 73301" -262762,AA Batteries (4-pack),1,3.84,10/08/19 20:43,"855 Ridge St, Los Angeles, CA 90001" -262763,ThinkPad Laptop,1,999.99,10/06/19 22:35,"309 5th St, Atlanta, GA 30301" -262764,USB-C Charging Cable,1,11.95,10/30/19 22:17,"176 Forest St, San Francisco, CA 94016" -262765,Lightning Charging Cable,1,14.95,10/14/19 16:22,"912 2nd St, New York City, NY 10001" -262766,34in Ultrawide Monitor,1,379.99,10/01/19 09:34,"600 Main St, Austin, TX 73301" -262767,Bose SoundSport Headphones,1,99.99,10/01/19 15:55,"262 Main St, Boston, MA 02215" -262768,27in FHD Monitor,1,149.99,10/30/19 17:58,"174 4th St, Boston, MA 02215" -262769,Lightning Charging Cable,1,14.95,10/18/19 21:30,"334 Meadow St, San Francisco, CA 94016" -262770,Lightning Charging Cable,2,14.95,10/17/19 01:11,"368 11th St, New York City, NY 10001" -262771,Lightning Charging Cable,1,14.95,10/30/19 19:57,"416 Sunset St, Los Angeles, CA 90001" -262772,Google Phone,1,600,10/14/19 18:14,"18 South St, Dallas, TX 75001" -262772,Bose SoundSport Headphones,1,99.99,10/14/19 18:14,"18 South St, Dallas, TX 75001" -262772,Lightning Charging Cable,1,14.95,10/14/19 18:14,"18 South St, Dallas, TX 75001" -262773,ThinkPad Laptop,1,999.99,10/04/19 19:51,"115 Washington St, New York City, NY 10001" -262774,Bose SoundSport Headphones,1,99.99,10/28/19 16:09,"484 Meadow St, Los Angeles, CA 90001" -262775,Lightning Charging Cable,1,14.95,10/02/19 17:17,"242 Forest St, San Francisco, CA 94016" -262776,AA Batteries (4-pack),1,3.84,10/01/19 22:52,"893 North St, Austin, TX 73301" -262776,AAA Batteries (4-pack),1,2.99,10/01/19 22:52,"893 North St, Austin, TX 73301" -262777,iPhone,1,700,10/17/19 13:33,"979 Washington St, Seattle, WA 98101" -262777,Wired Headphones,1,11.99,10/17/19 13:33,"979 Washington St, Seattle, WA 98101" -262778,27in FHD Monitor,1,149.99,10/04/19 13:56,"479 13th St, Portland, OR 97035" -262779,Google Phone,1,600,10/03/19 00:39,"117 Lincoln St, Portland, ME 04101" -262780,ThinkPad Laptop,1,999.99,10/26/19 12:07,"392 Main St, Dallas, TX 75001" -262781,27in FHD Monitor,1,149.99,10/23/19 01:10,"406 2nd St, San Francisco, CA 94016" -262782,AA Batteries (4-pack),1,3.84,10/19/19 22:08,"794 13th St, Atlanta, GA 30301" -262783,Lightning Charging Cable,1,14.95,10/04/19 19:15,"29 Pine St, San Francisco, CA 94016" -262784,AA Batteries (4-pack),1,3.84,10/06/19 10:23,"138 Cedar St, New York City, NY 10001" -262785,Bose SoundSport Headphones,1,99.99,10/19/19 14:48,"431 Washington St, Boston, MA 02215" -262786,Wired Headphones,1,11.99,10/28/19 15:23,"426 Center St, San Francisco, CA 94016" -262787,Lightning Charging Cable,1,14.95,10/11/19 14:32,"161 Sunset St, Boston, MA 02215" -262788,Apple Airpods Headphones,1,150,10/06/19 21:15,"207 Jefferson St, Dallas, TX 75001" -262789,Lightning Charging Cable,1,14.95,10/27/19 15:34,"581 9th St, New York City, NY 10001" -262790,Apple Airpods Headphones,1,150,10/13/19 14:17,"506 8th St, Portland, OR 97035" -262791,Apple Airpods Headphones,1,150,10/24/19 23:40,"924 Forest St, San Francisco, CA 94016" -262792,27in 4K Gaming Monitor,1,389.99,10/29/19 12:55,"536 Lakeview St, San Francisco, CA 94016" -262792,27in 4K Gaming Monitor,1,389.99,10/29/19 12:55,"536 Lakeview St, San Francisco, CA 94016" -262793,Google Phone,1,600,10/15/19 01:37,"361 Lincoln St, New York City, NY 10001" -262794,iPhone,1,700,10/02/19 19:27,"559 Adams St, Los Angeles, CA 90001" -262795,AA Batteries (4-pack),1,3.84,10/05/19 11:13,"224 Hill St, Seattle, WA 98101" -262796,Apple Airpods Headphones,1,150,10/19/19 22:48,"311 Lakeview St, Atlanta, GA 30301" -262797,Apple Airpods Headphones,1,150,10/12/19 00:21,"115 Jefferson St, Los Angeles, CA 90001" -262798,Bose SoundSport Headphones,1,99.99,10/18/19 16:26,"705 Maple St, Austin, TX 73301" -262799,AAA Batteries (4-pack),1,2.99,10/19/19 10:39,"508 River St, Los Angeles, CA 90001" -262800,Bose SoundSport Headphones,1,99.99,10/02/19 14:14,"694 Jefferson St, Dallas, TX 75001" -262801,Flatscreen TV,1,300,10/22/19 16:58,"581 11th St, Los Angeles, CA 90001" -262802,20in Monitor,1,109.99,10/26/19 04:50,"812 12th St, Seattle, WA 98101" -262803,Bose SoundSport Headphones,1,99.99,10/05/19 16:25,"472 Lincoln St, San Francisco, CA 94016" -262804,Bose SoundSport Headphones,1,99.99,10/08/19 13:55,"915 Chestnut St, San Francisco, CA 94016" -262805,Wired Headphones,1,11.99,10/20/19 19:44,"479 13th St, Los Angeles, CA 90001" -262806,Google Phone,1,600,10/04/19 02:00,"930 Cherry St, Boston, MA 02215" -262807,USB-C Charging Cable,1,11.95,10/08/19 09:07,"443 Maple St, New York City, NY 10001" -262808,Lightning Charging Cable,1,14.95,10/31/19 07:03,"388 Cherry St, Atlanta, GA 30301" -262809,Wired Headphones,1,11.99,10/19/19 11:01,"217 14th St, San Francisco, CA 94016" -262810,Google Phone,1,600,10/20/19 19:20,"471 Dogwood St, Atlanta, GA 30301" -262811,AAA Batteries (4-pack),1,2.99,10/17/19 09:34,"256 11th St, New York City, NY 10001" -262812,Wired Headphones,1,11.99,10/25/19 20:11,"734 West St, Los Angeles, CA 90001" -262813,ThinkPad Laptop,1,999.99,10/04/19 11:21,"235 Madison St, Dallas, TX 75001" -262814,27in FHD Monitor,1,149.99,10/06/19 19:22,"166 Lakeview St, Dallas, TX 75001" -262815,Flatscreen TV,1,300,10/05/19 21:52,"643 Park St, San Francisco, CA 94016" -262816,Bose SoundSport Headphones,1,99.99,10/26/19 09:42,"205 Center St, Seattle, WA 98101" -262817,Lightning Charging Cable,1,14.95,10/12/19 10:56,"436 Jefferson St, New York City, NY 10001" -262818,Wired Headphones,1,11.99,10/04/19 20:52,"141 Meadow St, San Francisco, CA 94016" -262819,AA Batteries (4-pack),1,3.84,10/23/19 12:36,"267 Center St, San Francisco, CA 94016" -262820,AAA Batteries (4-pack),4,2.99,10/19/19 19:00,"36 Lake St, Boston, MA 02215" -262821,iPhone,1,700,10/07/19 16:30,"220 Sunset St, Los Angeles, CA 90001" -262821,Lightning Charging Cable,1,14.95,10/07/19 16:30,"220 Sunset St, Los Angeles, CA 90001" -262822,USB-C Charging Cable,1,11.95,10/04/19 09:37,"91 Johnson St, Austin, TX 73301" -262823,Apple Airpods Headphones,1,150,10/22/19 11:43,"454 13th St, Austin, TX 73301" -262824,Apple Airpods Headphones,1,150,10/05/19 18:32,"560 Jefferson St, Atlanta, GA 30301" -262825,Apple Airpods Headphones,1,150,10/25/19 11:06,"146 7th St, Los Angeles, CA 90001" -262826,Vareebadd Phone,1,400,10/31/19 20:12,"90 Hickory St, Seattle, WA 98101" -262827,Bose SoundSport Headphones,1,99.99,10/20/19 11:38,"59 14th St, Los Angeles, CA 90001" -262828,USB-C Charging Cable,2,11.95,10/22/19 00:42,"203 Lakeview St, Dallas, TX 75001" -262829,AA Batteries (4-pack),1,3.84,10/19/19 20:50,"69 8th St, San Francisco, CA 94016" -262830,34in Ultrawide Monitor,1,379.99,10/17/19 14:04,"101 Meadow St, San Francisco, CA 94016" -262831,34in Ultrawide Monitor,1,379.99,10/31/19 20:41,"741 Walnut St, Boston, MA 02215" -262832,27in 4K Gaming Monitor,1,389.99,10/27/19 15:35,"191 1st St, Atlanta, GA 30301" -262833,AAA Batteries (4-pack),3,2.99,10/07/19 09:31,"687 14th St, Portland, ME 04101" -262834,USB-C Charging Cable,1,11.95,10/15/19 10:44,"37 Dogwood St, Boston, MA 02215" -262835,AA Batteries (4-pack),2,3.84,10/26/19 18:15,"664 11th St, Boston, MA 02215" -262836,Google Phone,1,600,10/24/19 08:48,"840 Willow St, New York City, NY 10001" -262837,AA Batteries (4-pack),1,3.84,10/30/19 19:47,"12 7th St, Atlanta, GA 30301" -262838,Lightning Charging Cable,1,14.95,10/15/19 12:32,"720 13th St, Austin, TX 73301" -262839,Bose SoundSport Headphones,1,99.99,10/02/19 21:36,"46 Meadow St, Los Angeles, CA 90001" -262840,Lightning Charging Cable,1,14.95,10/17/19 22:35,"511 Lake St, Portland, ME 04101" -262841,Wired Headphones,1,11.99,10/26/19 12:21,"1 12th St, New York City, NY 10001" -262842,Google Phone,1,600,10/02/19 09:19,"157 North St, San Francisco, CA 94016" -262842,USB-C Charging Cable,2,11.95,10/02/19 09:19,"157 North St, San Francisco, CA 94016" -262843,AA Batteries (4-pack),1,3.84,10/18/19 20:51,"473 Madison St, San Francisco, CA 94016" -262843,27in FHD Monitor,1,149.99,10/18/19 20:51,"473 Madison St, San Francisco, CA 94016" -262844,USB-C Charging Cable,1,11.95,10/03/19 12:10,"356 Johnson St, San Francisco, CA 94016" -262845,Macbook Pro Laptop,1,1700,10/26/19 20:50,"271 4th St, Boston, MA 02215" -262846,Apple Airpods Headphones,1,150,10/24/19 14:45,"770 Jefferson St, San Francisco, CA 94016" -262847,Wired Headphones,1,11.99,10/31/19 01:44,"557 South St, Los Angeles, CA 90001" -262848,AAA Batteries (4-pack),1,2.99,10/28/19 19:35,"963 1st St, New York City, NY 10001" -262849,Apple Airpods Headphones,1,150,10/16/19 08:27,"176 Washington St, Dallas, TX 75001" -262850,Wired Headphones,1,11.99,10/19/19 21:16,"580 Hill St, Atlanta, GA 30301" -262851,27in FHD Monitor,1,149.99,10/20/19 10:00,"289 Elm St, Los Angeles, CA 90001" -262852,Macbook Pro Laptop,1,1700,10/05/19 01:28,"171 Adams St, New York City, NY 10001" -262853,AAA Batteries (4-pack),2,2.99,10/02/19 14:38,"604 Forest St, New York City, NY 10001" -262854,Lightning Charging Cable,1,14.95,10/14/19 07:57,"489 Jackson St, San Francisco, CA 94016" -262855,Google Phone,1,600,10/19/19 21:24,"704 7th St, New York City, NY 10001" -262855,USB-C Charging Cable,1,11.95,10/19/19 21:24,"704 7th St, New York City, NY 10001" -262856,ThinkPad Laptop,1,999.99,10/30/19 20:31,"958 Elm St, San Francisco, CA 94016" -262857,USB-C Charging Cable,1,11.95,10/07/19 18:28,"799 Lincoln St, Dallas, TX 75001" -262858,ThinkPad Laptop,1,999.99,10/12/19 20:28,"419 2nd St, Atlanta, GA 30301" -262859,Bose SoundSport Headphones,1,99.99,10/21/19 18:01,"264 Pine St, Portland, ME 04101" -262860,27in FHD Monitor,1,149.99,10/14/19 10:52,"939 4th St, San Francisco, CA 94016" -262861,Lightning Charging Cable,1,14.95,10/01/19 23:08,"307 Chestnut St, Atlanta, GA 30301" -262862,USB-C Charging Cable,1,11.95,10/12/19 11:16,"172 11th St, Boston, MA 02215" -262863,Macbook Pro Laptop,1,1700,10/21/19 14:33,"270 Meadow St, San Francisco, CA 94016" -262864,AAA Batteries (4-pack),1,2.99,10/26/19 19:05,"729 Spruce St, Atlanta, GA 30301" -262865,AA Batteries (4-pack),1,3.84,10/11/19 23:00,"51 Maple St, San Francisco, CA 94016" -262866,Apple Airpods Headphones,1,150,10/22/19 16:34,"742 Cherry St, Los Angeles, CA 90001" -262867,Wired Headphones,1,11.99,10/28/19 15:58,"58 Sunset St, Los Angeles, CA 90001" -262868,AAA Batteries (4-pack),1,2.99,10/01/19 13:48,"339 Elm St, Austin, TX 73301" -262869,27in FHD Monitor,1,149.99,10/08/19 19:02,"208 River St, Dallas, TX 75001" -262870,Wired Headphones,1,11.99,10/27/19 13:53,"359 Cherry St, Los Angeles, CA 90001" -262871,27in 4K Gaming Monitor,1,389.99,10/01/19 16:37,"384 Dogwood St, Atlanta, GA 30301" -262872,USB-C Charging Cable,1,11.95,10/28/19 22:23,"118 8th St, San Francisco, CA 94016" -262873,Lightning Charging Cable,1,14.95,10/17/19 19:38,"772 1st St, Boston, MA 02215" -262874,Wired Headphones,1,11.99,10/19/19 15:49,"560 Main St, Los Angeles, CA 90001" -262875,Wired Headphones,1,11.99,10/29/19 21:06,"573 Forest St, San Francisco, CA 94016" -262876,Apple Airpods Headphones,1,150,10/19/19 22:17,"977 6th St, Portland, OR 97035" -262877,Lightning Charging Cable,1,14.95,10/01/19 13:22,"899 Park St, Austin, TX 73301" -262878,Macbook Pro Laptop,1,1700,10/01/19 21:19,"529 Lake St, Portland, OR 97035" -262879,Lightning Charging Cable,1,14.95,10/31/19 18:16,"181 Spruce St, New York City, NY 10001" -262880,Macbook Pro Laptop,1,1700,10/26/19 16:15,"59 8th St, Dallas, TX 75001" -262881,Wired Headphones,1,11.99,10/05/19 21:24,"94 Walnut St, Dallas, TX 75001" -262882,Vareebadd Phone,1,400,10/06/19 17:09,"627 10th St, Austin, TX 73301" -262883,AAA Batteries (4-pack),1,2.99,10/08/19 18:43,"84 9th St, Boston, MA 02215" -262884,Lightning Charging Cable,1,14.95,10/10/19 18:00,"720 Chestnut St, San Francisco, CA 94016" -262885,27in FHD Monitor,1,149.99,10/13/19 13:42,"338 Main St, Dallas, TX 75001" -262886,AA Batteries (4-pack),1,3.84,10/08/19 23:36,"318 Hickory St, San Francisco, CA 94016" -262887,Bose SoundSport Headphones,1,99.99,10/15/19 08:23,"343 Johnson St, Dallas, TX 75001" -262888,Lightning Charging Cable,1,14.95,10/01/19 11:41,"951 1st St, New York City, NY 10001" -262889,AA Batteries (4-pack),2,3.84,10/03/19 13:49,"465 9th St, Austin, TX 73301" -262890,Macbook Pro Laptop,1,1700,10/16/19 19:41,"678 Sunset St, Boston, MA 02215" -262891,Wired Headphones,2,11.99,10/24/19 16:20,"706 Adams St, Dallas, TX 75001" -262892,27in 4K Gaming Monitor,1,389.99,10/14/19 21:44,"390 Park St, San Francisco, CA 94016" -262892,Google Phone,1,600,10/14/19 21:44,"390 Park St, San Francisco, CA 94016" -262893,34in Ultrawide Monitor,1,379.99,10/08/19 22:33,"227 Forest St, Boston, MA 02215" -262894,Wired Headphones,1,11.99,10/14/19 20:12,"36 12th St, Dallas, TX 75001" -262895,AA Batteries (4-pack),1,3.84,10/23/19 23:09,"363 Chestnut St, San Francisco, CA 94016" -262896,USB-C Charging Cable,1,11.95,10/25/19 07:49,"498 Center St, San Francisco, CA 94016" -262897,AAA Batteries (4-pack),2,2.99,10/01/19 10:50,"844 Chestnut St, Boston, MA 02215" -262898,AAA Batteries (4-pack),1,2.99,10/28/19 18:04,"873 2nd St, San Francisco, CA 94016" -262899,Wired Headphones,1,11.99,10/19/19 19:08,"971 Church St, Los Angeles, CA 90001" -262900,USB-C Charging Cable,1,11.95,10/19/19 11:32,"169 Johnson St, Los Angeles, CA 90001" -262901,Lightning Charging Cable,1,14.95,10/04/19 19:31,"978 Adams St, Atlanta, GA 30301" -262902,Vareebadd Phone,1,400,10/04/19 18:24,"378 West St, Boston, MA 02215" -262902,USB-C Charging Cable,1,11.95,10/04/19 18:24,"378 West St, Boston, MA 02215" -262903,Google Phone,1,600,10/07/19 19:57,"725 10th St, Seattle, WA 98101" -262904,Macbook Pro Laptop,1,1700,10/22/19 13:56,"174 12th St, Austin, TX 73301" -262905,AAA Batteries (4-pack),1,2.99,10/19/19 06:41,"951 Jefferson St, Atlanta, GA 30301" -262906,Wired Headphones,1,11.99,10/11/19 20:51,"203 Sunset St, Boston, MA 02215" -262907,USB-C Charging Cable,1,11.95,10/26/19 14:17,"394 South St, Los Angeles, CA 90001" -262908,AA Batteries (4-pack),1,3.84,10/04/19 14:23,"934 Center St, Los Angeles, CA 90001" -262909,AA Batteries (4-pack),1,3.84,10/19/19 09:33,"971 Hill St, Seattle, WA 98101" -262910,USB-C Charging Cable,1,11.95,10/06/19 00:08,"786 14th St, San Francisco, CA 94016" -262911,AA Batteries (4-pack),1,3.84,10/10/19 14:20,"349 12th St, Atlanta, GA 30301" -262912,AA Batteries (4-pack),1,3.84,10/08/19 16:41,"17 14th St, Los Angeles, CA 90001" -262913,Flatscreen TV,1,300,10/30/19 17:51,"72 Hickory St, Atlanta, GA 30301" -262914,Bose SoundSport Headphones,1,99.99,10/12/19 10:53,"663 9th St, Austin, TX 73301" -262915,AAA Batteries (4-pack),1,2.99,10/17/19 20:08,"427 14th St, Los Angeles, CA 90001" -262916,Apple Airpods Headphones,1,150,10/26/19 12:55,"164 Jackson St, Los Angeles, CA 90001" -262917,34in Ultrawide Monitor,1,379.99,10/25/19 13:58,"749 Maple St, New York City, NY 10001" -262918,LG Dryer,1,600.0,10/26/19 15:39,"376 South St, San Francisco, CA 94016" -262919,AAA Batteries (4-pack),1,2.99,10/23/19 10:07,"651 Sunset St, New York City, NY 10001" -262920,Bose SoundSport Headphones,1,99.99,10/10/19 20:04,"274 Hill St, Atlanta, GA 30301" -262921,Wired Headphones,1,11.99,10/20/19 09:23,"286 6th St, Boston, MA 02215" -262922,Bose SoundSport Headphones,1,99.99,10/03/19 13:52,"368 Lakeview St, Boston, MA 02215" -262923,USB-C Charging Cable,1,11.95,10/07/19 14:42,"386 Lakeview St, Boston, MA 02215" -262924,Apple Airpods Headphones,1,150,10/08/19 20:32,"609 7th St, Austin, TX 73301" -262925,USB-C Charging Cable,1,11.95,10/21/19 23:16,"941 6th St, San Francisco, CA 94016" -262926,USB-C Charging Cable,1,11.95,10/30/19 10:56,"928 Pine St, San Francisco, CA 94016" -262927,20in Monitor,1,109.99,10/02/19 05:45,"930 Madison St, Atlanta, GA 30301" -262928,Lightning Charging Cable,1,14.95,11/01/19 02:33,"89 4th St, New York City, NY 10001" -262929,Lightning Charging Cable,1,14.95,10/02/19 01:38,"784 Ridge St, Los Angeles, CA 90001" -262930,AA Batteries (4-pack),1,3.84,10/13/19 17:21,"278 River St, San Francisco, CA 94016" -262931,Flatscreen TV,1,300,10/17/19 10:20,"790 Hickory St, Austin, TX 73301" -262932,Lightning Charging Cable,1,14.95,10/18/19 07:26,"447 Spruce St, Boston, MA 02215" -262933,AAA Batteries (4-pack),2,2.99,10/12/19 08:25,"406 9th St, Atlanta, GA 30301" -262934,AAA Batteries (4-pack),1,2.99,10/16/19 10:53,"329 South St, Portland, OR 97035" -262935,Lightning Charging Cable,1,14.95,10/24/19 10:12,"232 6th St, Austin, TX 73301" -262936,Flatscreen TV,1,300,10/17/19 22:52,"764 11th St, San Francisco, CA 94016" -262937,Google Phone,1,600,10/01/19 08:38,"513 14th St, Boston, MA 02215" -262938,27in 4K Gaming Monitor,1,389.99,10/12/19 09:25,"406 5th St, San Francisco, CA 94016" -262939,34in Ultrawide Monitor,1,379.99,10/13/19 19:52,"270 Walnut St, San Francisco, CA 94016" -262940,27in FHD Monitor,1,149.99,10/02/19 20:07,"307 4th St, San Francisco, CA 94016" -262941,AA Batteries (4-pack),2,3.84,10/25/19 11:53,"228 Pine St, Los Angeles, CA 90001" -262942,AA Batteries (4-pack),1,3.84,10/28/19 15:24,"676 River St, Los Angeles, CA 90001" -262943,Lightning Charging Cable,1,14.95,10/22/19 20:17,"325 Ridge St, Los Angeles, CA 90001" -262944,Apple Airpods Headphones,1,150,10/10/19 12:55,"180 Elm St, Boston, MA 02215" -262945,Wired Headphones,1,11.99,10/07/19 05:06,"268 South St, Portland, OR 97035" -262946,34in Ultrawide Monitor,1,379.99,10/04/19 15:53,"99 14th St, Atlanta, GA 30301" -262947,Apple Airpods Headphones,1,150,10/07/19 15:17,"279 Wilson St, San Francisco, CA 94016" -262948,Apple Airpods Headphones,1,150,10/28/19 09:24,"755 Center St, Atlanta, GA 30301" -262949,Google Phone,1,600,10/27/19 12:03,"955 Walnut St, Boston, MA 02215" -262950,27in FHD Monitor,1,149.99,10/30/19 20:55,"44 12th St, San Francisco, CA 94016" -262951,Wired Headphones,1,11.99,10/05/19 15:54,"331 Sunset St, San Francisco, CA 94016" -262952,Flatscreen TV,1,300,10/12/19 16:55,"938 6th St, Boston, MA 02215" -262953,Macbook Pro Laptop,1,1700,10/20/19 13:12,"789 4th St, Atlanta, GA 30301" -262954,Lightning Charging Cable,1,14.95,10/31/19 18:10,"642 10th St, Austin, TX 73301" -262955,Apple Airpods Headphones,1,150,10/17/19 13:37,"819 4th St, San Francisco, CA 94016" -262956,USB-C Charging Cable,1,11.95,10/03/19 04:12,"364 Wilson St, San Francisco, CA 94016" -262957,27in 4K Gaming Monitor,1,389.99,10/09/19 13:05,"176 Willow St, New York City, NY 10001" -262958,Apple Airpods Headphones,1,150,10/29/19 15:58,"768 6th St, Dallas, TX 75001" -262959,AA Batteries (4-pack),1,3.84,10/26/19 11:15,"98 Cedar St, Atlanta, GA 30301" -262960,27in 4K Gaming Monitor,1,389.99,10/17/19 11:32,"681 7th St, San Francisco, CA 94016" -262961,20in Monitor,1,109.99,10/05/19 17:20,"473 Lake St, San Francisco, CA 94016" -262962,Wired Headphones,1,11.99,10/28/19 17:54,"921 Madison St, Los Angeles, CA 90001" -262963,Flatscreen TV,1,300,10/14/19 19:35,"899 Maple St, Seattle, WA 98101" -262964,Wired Headphones,1,11.99,10/27/19 19:32,"400 4th St, San Francisco, CA 94016" -262965,Macbook Pro Laptop,1,1700,10/20/19 10:07,"317 South St, Los Angeles, CA 90001" -262965,AAA Batteries (4-pack),1,2.99,10/20/19 10:07,"317 South St, Los Angeles, CA 90001" -262966,ThinkPad Laptop,1,999.99,10/08/19 07:21,"193 Pine St, Los Angeles, CA 90001" -262967,Lightning Charging Cable,1,14.95,10/11/19 13:26,"568 14th St, Los Angeles, CA 90001" -262968,USB-C Charging Cable,1,11.95,10/13/19 19:20,"739 4th St, Portland, OR 97035" -262969,AA Batteries (4-pack),1,3.84,10/22/19 22:13,"760 8th St, Los Angeles, CA 90001" -262970,Wired Headphones,1,11.99,10/12/19 10:17,"557 Maple St, Los Angeles, CA 90001" -262971,Bose SoundSport Headphones,1,99.99,10/25/19 17:03,"634 West St, Portland, OR 97035" -262972,AAA Batteries (4-pack),1,2.99,10/04/19 22:44,"811 6th St, Los Angeles, CA 90001" -262973,AA Batteries (4-pack),1,3.84,10/29/19 16:24,"138 Pine St, San Francisco, CA 94016" -262974,Lightning Charging Cable,1,14.95,10/31/19 18:19,"842 Willow St, New York City, NY 10001" -262975,Lightning Charging Cable,1,14.95,10/26/19 11:37,"100 Main St, New York City, NY 10001" -262976,27in 4K Gaming Monitor,1,389.99,10/08/19 15:26,"199 Main St, Boston, MA 02215" -262977,Apple Airpods Headphones,1,150,10/03/19 16:23,"482 Dogwood St, New York City, NY 10001" -262978,Wired Headphones,1,11.99,10/02/19 14:21,"600 2nd St, Los Angeles, CA 90001" -262979,Lightning Charging Cable,1,14.95,10/10/19 21:29,"713 Walnut St, San Francisco, CA 94016" -262980,Apple Airpods Headphones,1,150,10/08/19 17:49,"466 4th St, Los Angeles, CA 90001" -262981,27in FHD Monitor,1,149.99,10/06/19 13:59,"560 Jefferson St, Atlanta, GA 30301" -262982,AA Batteries (4-pack),1,3.84,10/07/19 16:00,"637 West St, Atlanta, GA 30301" -262983,Apple Airpods Headphones,1,150,10/10/19 20:20,"195 Pine St, Atlanta, GA 30301" -262984,Wired Headphones,1,11.99,10/03/19 13:04,"283 Spruce St, San Francisco, CA 94016" -262985,Google Phone,1,600,10/06/19 05:34,"680 Ridge St, San Francisco, CA 94016" -262985,Bose SoundSport Headphones,1,99.99,10/06/19 05:34,"680 Ridge St, San Francisco, CA 94016" -262986,Macbook Pro Laptop,1,1700,10/09/19 10:40,"86 Cherry St, New York City, NY 10001" -262987,27in 4K Gaming Monitor,1,389.99,10/23/19 11:32,"829 Walnut St, Boston, MA 02215" -262988,27in FHD Monitor,1,149.99,10/31/19 18:34,"827 11th St, San Francisco, CA 94016" -262989,AA Batteries (4-pack),1,3.84,10/12/19 11:28,"316 Jackson St, Atlanta, GA 30301" -262990,AA Batteries (4-pack),1,3.84,10/10/19 21:28,"967 Elm St, New York City, NY 10001" -262991,34in Ultrawide Monitor,1,379.99,10/25/19 13:58,"65 9th St, Portland, OR 97035" -262992,Lightning Charging Cable,1,14.95,10/20/19 19:46,"426 2nd St, Atlanta, GA 30301" -262993,ThinkPad Laptop,1,999.99,10/15/19 19:12,"917 Cherry St, San Francisco, CA 94016" -262994,Lightning Charging Cable,1,14.95,10/08/19 21:31,"204 8th St, Los Angeles, CA 90001" -262995,Wired Headphones,1,11.99,10/18/19 21:28,"824 Hickory St, Portland, OR 97035" -262996,Apple Airpods Headphones,1,150,10/26/19 20:02,"701 13th St, San Francisco, CA 94016" -262997,Macbook Pro Laptop,1,1700,10/10/19 10:03,"899 11th St, New York City, NY 10001" -262998,Google Phone,1,600,10/23/19 06:19,"645 6th St, Los Angeles, CA 90001" -262999,USB-C Charging Cable,1,11.95,10/04/19 13:07,"288 Jackson St, Seattle, WA 98101" -263000,Google Phone,1,600,10/07/19 19:02,"986 Wilson St, Austin, TX 73301" -263001,AAA Batteries (4-pack),1,2.99,10/09/19 15:34,"926 Park St, San Francisco, CA 94016" -263002,Lightning Charging Cable,1,14.95,10/18/19 10:00,"983 Jackson St, Los Angeles, CA 90001" -263003,ThinkPad Laptop,1,999.99,10/27/19 02:23,"719 Forest St, Boston, MA 02215" -263004,USB-C Charging Cable,1,11.95,10/09/19 11:09,"995 Washington St, New York City, NY 10001" -263005,AA Batteries (4-pack),4,3.84,10/04/19 20:09,"237 Jackson St, Dallas, TX 75001" -263006,34in Ultrawide Monitor,1,379.99,10/30/19 22:40,"274 6th St, San Francisco, CA 94016" -263007,Bose SoundSport Headphones,1,99.99,10/20/19 07:05,"174 Madison St, Atlanta, GA 30301" -263008,ThinkPad Laptop,1,999.99,10/31/19 13:21,"263 Maple St, New York City, NY 10001" -263009,AA Batteries (4-pack),1,3.84,10/26/19 16:49,"168 8th St, New York City, NY 10001" -263010,Lightning Charging Cable,1,14.95,10/03/19 12:29,"94 Lake St, New York City, NY 10001" -263011,Bose SoundSport Headphones,1,99.99,10/15/19 17:08,"73 5th St, San Francisco, CA 94016" -263012,Wired Headphones,1,11.99,10/06/19 16:16,"982 South St, Dallas, TX 75001" -263013,Macbook Pro Laptop,1,1700,10/05/19 08:56,"943 12th St, Dallas, TX 75001" -263014,20in Monitor,1,109.99,10/15/19 17:34,"206 Adams St, Los Angeles, CA 90001" -263015,Apple Airpods Headphones,1,150,10/25/19 23:29,"953 Jefferson St, Atlanta, GA 30301" -263016,Wired Headphones,1,11.99,10/30/19 21:26,"581 Forest St, New York City, NY 10001" -263017,Macbook Pro Laptop,1,1700,10/01/19 15:17,"911 West St, Boston, MA 02215" -263018,27in FHD Monitor,1,149.99,10/23/19 20:08,"932 10th St, New York City, NY 10001" -263019,Lightning Charging Cable,1,14.95,10/22/19 15:46,"795 Meadow St, Boston, MA 02215" -263020,Flatscreen TV,1,300,10/19/19 14:40,"143 Wilson St, New York City, NY 10001" -263021,USB-C Charging Cable,2,11.95,10/16/19 12:59,"102 Forest St, Boston, MA 02215" -263022,AAA Batteries (4-pack),1,2.99,10/28/19 19:22,"4 Lakeview St, San Francisco, CA 94016" -263023,Lightning Charging Cable,1,14.95,10/08/19 08:31,"741 Cherry St, New York City, NY 10001" -263024,Apple Airpods Headphones,1,150,10/29/19 14:01,"23 Dogwood St, San Francisco, CA 94016" -263025,Wired Headphones,1,11.99,10/07/19 12:01,"524 Hill St, San Francisco, CA 94016" -263026,USB-C Charging Cable,1,11.95,10/05/19 15:40,"501 Center St, New York City, NY 10001" -263027,AAA Batteries (4-pack),1,2.99,10/03/19 10:18,"62 Elm St, Atlanta, GA 30301" -263028,AAA Batteries (4-pack),1,2.99,10/25/19 20:51,"351 Adams St, Atlanta, GA 30301" -263029,Lightning Charging Cable,1,14.95,10/31/19 13:10,"977 Maple St, Los Angeles, CA 90001" -263030,AA Batteries (4-pack),1,3.84,10/12/19 21:10,"203 1st St, Boston, MA 02215" -263031,Wired Headphones,1,11.99,10/04/19 20:38,"125 6th St, Portland, ME 04101" -263032,AAA Batteries (4-pack),1,2.99,10/13/19 21:37,"768 Jefferson St, Dallas, TX 75001" -263033,Apple Airpods Headphones,1,150,10/26/19 18:42,"769 12th St, Seattle, WA 98101" -263034,USB-C Charging Cable,1,11.95,10/05/19 12:48,"799 Hill St, San Francisco, CA 94016" -263035,34in Ultrawide Monitor,1,379.99,10/03/19 09:53,"113 Spruce St, New York City, NY 10001" -263036,AA Batteries (4-pack),1,3.84,10/29/19 11:19,"843 Lakeview St, Seattle, WA 98101" -263037,AA Batteries (4-pack),1,3.84,10/03/19 21:22,"182 Elm St, Boston, MA 02215" -263038,20in Monitor,1,109.99,10/27/19 09:12,"275 Main St, Dallas, TX 75001" -263039,AA Batteries (4-pack),1,3.84,10/06/19 21:38,"810 Center St, Los Angeles, CA 90001" -263040,USB-C Charging Cable,1,11.95,10/17/19 18:27,"618 11th St, Los Angeles, CA 90001" -263041,iPhone,1,700,10/06/19 16:29,"339 Park St, Los Angeles, CA 90001" -263042,AAA Batteries (4-pack),1,2.99,10/15/19 10:54,"513 2nd St, Austin, TX 73301" -263043,Wired Headphones,1,11.99,10/10/19 17:48,"267 Meadow St, San Francisco, CA 94016" -263044,Google Phone,1,600,10/03/19 19:00,"36 Elm St, Los Angeles, CA 90001" -263044,Wired Headphones,1,11.99,10/03/19 19:00,"36 Elm St, Los Angeles, CA 90001" -263045,Lightning Charging Cable,1,14.95,10/31/19 08:41,"389 Hickory St, Atlanta, GA 30301" -263046,Lightning Charging Cable,1,14.95,10/19/19 14:22,"798 Hickory St, Austin, TX 73301" -263047,USB-C Charging Cable,1,11.95,10/23/19 19:15,"783 Ridge St, Boston, MA 02215" -263048,Macbook Pro Laptop,1,1700,10/30/19 12:45,"644 Washington St, San Francisco, CA 94016" -263049,27in 4K Gaming Monitor,1,389.99,10/20/19 19:31,"931 South St, Dallas, TX 75001" -263050,Lightning Charging Cable,1,14.95,10/11/19 17:36,"932 Dogwood St, San Francisco, CA 94016" -263051,AAA Batteries (4-pack),1,2.99,10/19/19 15:42,"384 Pine St, Los Angeles, CA 90001" -263052,LG Washing Machine,1,600.0,10/13/19 06:47,"613 5th St, Los Angeles, CA 90001" -263053,USB-C Charging Cable,1,11.95,10/27/19 13:53,"329 Pine St, Boston, MA 02215" -263054,Bose SoundSport Headphones,1,99.99,10/20/19 14:21,"20 Ridge St, Seattle, WA 98101" -263055,Wired Headphones,1,11.99,10/24/19 08:58,"720 Dogwood St, San Francisco, CA 94016" -263056,Bose SoundSport Headphones,1,99.99,10/17/19 08:00,"287 North St, New York City, NY 10001" -263057,AA Batteries (4-pack),1,3.84,10/07/19 17:33,"10 Center St, Austin, TX 73301" -263058,Wired Headphones,1,11.99,10/29/19 20:05,"345 Jefferson St, San Francisco, CA 94016" -263059,Lightning Charging Cable,1,14.95,10/11/19 10:27,"801 11th St, Atlanta, GA 30301" -263060,AAA Batteries (4-pack),1,2.99,10/19/19 22:51,"666 Lakeview St, Boston, MA 02215" -263061,USB-C Charging Cable,1,11.95,10/15/19 15:21,"693 Willow St, Atlanta, GA 30301" -263062,Macbook Pro Laptop,1,1700,10/09/19 10:39,"78 Maple St, Atlanta, GA 30301" -263063,Bose SoundSport Headphones,1,99.99,10/07/19 17:23,"31 Johnson St, Boston, MA 02215" -263064,Wired Headphones,1,11.99,10/29/19 15:18,"491 Sunset St, Atlanta, GA 30301" -263065,Apple Airpods Headphones,1,150,10/20/19 09:53,"985 Lakeview St, San Francisco, CA 94016" -263066,Apple Airpods Headphones,1,150,10/13/19 14:45,"8 South St, San Francisco, CA 94016" -263067,Apple Airpods Headphones,1,150,10/07/19 16:41,"938 Maple St, Boston, MA 02215" -263068,34in Ultrawide Monitor,1,379.99,10/13/19 19:13,"537 Hill St, San Francisco, CA 94016" -263069,Apple Airpods Headphones,1,150,10/05/19 17:37,"590 14th St, Los Angeles, CA 90001" -263070,AA Batteries (4-pack),1,3.84,10/23/19 17:33,"82 12th St, San Francisco, CA 94016" -263071,AAA Batteries (4-pack),1,2.99,10/14/19 10:03,"725 Johnson St, Seattle, WA 98101" -263072,Flatscreen TV,1,300,10/12/19 16:27,"670 Johnson St, Atlanta, GA 30301" -263073,USB-C Charging Cable,1,11.95,10/21/19 07:31,"24 South St, Los Angeles, CA 90001" -263074,Lightning Charging Cable,1,14.95,10/25/19 21:30,"450 Ridge St, Dallas, TX 75001" -263075,AAA Batteries (4-pack),1,2.99,10/23/19 12:43,"370 Sunset St, Atlanta, GA 30301" -263076,Flatscreen TV,1,300,10/10/19 14:08,"208 River St, New York City, NY 10001" -263077,Bose SoundSport Headphones,1,99.99,10/09/19 20:19,"779 Main St, Los Angeles, CA 90001" -263078,USB-C Charging Cable,1,11.95,10/20/19 09:37,"390 Jackson St, Austin, TX 73301" -263079,Wired Headphones,1,11.99,10/31/19 14:30,"311 Sunset St, Los Angeles, CA 90001" -263080,Flatscreen TV,1,300,10/31/19 11:35,"878 Lakeview St, San Francisco, CA 94016" -263081,Wired Headphones,1,11.99,10/17/19 21:24,"744 5th St, Austin, TX 73301" -263082,AA Batteries (4-pack),1,3.84,10/22/19 22:28,"74 Sunset St, Los Angeles, CA 90001" -263083,Wired Headphones,1,11.99,10/24/19 08:57,"427 Jackson St, Dallas, TX 75001" -263084,AAA Batteries (4-pack),2,2.99,10/13/19 14:06,"280 Church St, Boston, MA 02215" -263085,Wired Headphones,1,11.99,10/10/19 11:05,"621 Pine St, Portland, OR 97035" -263086,Google Phone,1,600,10/02/19 10:58,"898 14th St, San Francisco, CA 94016" -263087,34in Ultrawide Monitor,1,379.99,10/24/19 20:11,"453 2nd St, Dallas, TX 75001" -263088,AA Batteries (4-pack),1,3.84,10/28/19 15:21,"777 4th St, Los Angeles, CA 90001" -263089,AAA Batteries (4-pack),1,2.99,10/08/19 19:38,"521 8th St, Atlanta, GA 30301" -263090,AAA Batteries (4-pack),1,2.99,10/07/19 16:39,"872 6th St, Los Angeles, CA 90001" -263091,Wired Headphones,1,11.99,10/12/19 22:18,"79 6th St, Dallas, TX 75001" -263092,Flatscreen TV,1,300,10/23/19 13:18,"852 Cedar St, Portland, OR 97035" -263093,AAA Batteries (4-pack),1,2.99,10/05/19 13:20,"803 11th St, Portland, OR 97035" -263094,Apple Airpods Headphones,1,150,10/11/19 18:12,"55 Ridge St, Los Angeles, CA 90001" -263095,Bose SoundSport Headphones,1,99.99,10/05/19 13:20,"860 Jackson St, Boston, MA 02215" -263096,Lightning Charging Cable,1,14.95,10/20/19 12:59,"359 12th St, San Francisco, CA 94016" -263097,Apple Airpods Headphones,1,150,10/07/19 13:02,"592 Maple St, San Francisco, CA 94016" -263098,Apple Airpods Headphones,1,150,10/26/19 12:45,"81 5th St, Los Angeles, CA 90001" -263099,20in Monitor,1,109.99,10/13/19 10:14,"484 Madison St, Portland, OR 97035" -263100,AAA Batteries (4-pack),1,2.99,10/11/19 13:54,"852 10th St, Portland, OR 97035" -263101,USB-C Charging Cable,1,11.95,10/15/19 20:05,"28 Willow St, Austin, TX 73301" -263102,USB-C Charging Cable,1,11.95,10/12/19 11:33,"282 Forest St, Los Angeles, CA 90001" -263103,USB-C Charging Cable,1,11.95,10/27/19 12:31,"902 Church St, New York City, NY 10001" -263104,AA Batteries (4-pack),1,3.84,10/29/19 14:27,"250 2nd St, Boston, MA 02215" -263105,Vareebadd Phone,1,400,10/23/19 11:02,"435 Madison St, San Francisco, CA 94016" -263105,USB-C Charging Cable,1,11.95,10/23/19 11:02,"435 Madison St, San Francisco, CA 94016" -263105,Bose SoundSport Headphones,1,99.99,10/23/19 11:02,"435 Madison St, San Francisco, CA 94016" -263106,AAA Batteries (4-pack),1,2.99,10/30/19 18:29,"523 Dogwood St, San Francisco, CA 94016" -263107,Google Phone,1,600,10/28/19 12:33,"343 11th St, Los Angeles, CA 90001" -263107,USB-C Charging Cable,1,11.95,10/28/19 12:33,"343 11th St, Los Angeles, CA 90001" -263108,iPhone,1,700,10/26/19 09:19,"590 Elm St, San Francisco, CA 94016" -263108,Macbook Pro Laptop,1,1700,10/26/19 09:19,"590 Elm St, San Francisco, CA 94016" -263109,Wired Headphones,1,11.99,10/27/19 22:12,"624 South St, Portland, OR 97035" -263110,AA Batteries (4-pack),1,3.84,10/31/19 02:59,"624 Washington St, Atlanta, GA 30301" -263111,Wired Headphones,1,11.99,10/23/19 20:07,"4 Meadow St, Los Angeles, CA 90001" -263112,Bose SoundSport Headphones,1,99.99,10/12/19 20:52,"599 Ridge St, Austin, TX 73301" -263113,Bose SoundSport Headphones,1,99.99,10/28/19 21:22,"980 Main St, New York City, NY 10001" -263114,AAA Batteries (4-pack),2,2.99,10/08/19 11:32,"465 South St, Los Angeles, CA 90001" -263115,AAA Batteries (4-pack),1,2.99,10/01/19 11:24,"864 Main St, San Francisco, CA 94016" -263116,AAA Batteries (4-pack),2,2.99,10/07/19 12:19,"371 11th St, Seattle, WA 98101" -263117,USB-C Charging Cable,1,11.95,10/26/19 00:25,"441 South St, Austin, TX 73301" -263118,AA Batteries (4-pack),3,3.84,10/09/19 18:39,"852 4th St, Los Angeles, CA 90001" -263119,27in FHD Monitor,1,149.99,10/29/19 20:15,"100 9th St, San Francisco, CA 94016" -263120,USB-C Charging Cable,2,11.95,10/21/19 09:12,"140 11th St, San Francisco, CA 94016" -263121,Wired Headphones,2,11.99,10/24/19 18:09,"745 North St, Dallas, TX 75001" -263122,Vareebadd Phone,1,400,10/06/19 14:12,"543 Forest St, Austin, TX 73301" -263122,Wired Headphones,1,11.99,10/06/19 14:12,"543 Forest St, Austin, TX 73301" -263123,27in FHD Monitor,1,149.99,10/20/19 17:11,"359 8th St, Portland, OR 97035" -263124,Apple Airpods Headphones,1,150,10/07/19 12:50,"564 Lincoln St, New York City, NY 10001" -263125,USB-C Charging Cable,1,11.95,10/10/19 17:30,"663 Jackson St, San Francisco, CA 94016" -263126,AAA Batteries (4-pack),1,2.99,10/27/19 23:44,"861 Walnut St, Los Angeles, CA 90001" -263127,Google Phone,1,600,10/20/19 22:50,"926 2nd St, Los Angeles, CA 90001" -263128,USB-C Charging Cable,1,11.95,10/06/19 20:28,"360 5th St, San Francisco, CA 94016" -263129,Apple Airpods Headphones,1,150,10/31/19 16:28,"344 Spruce St, San Francisco, CA 94016" -263130,AAA Batteries (4-pack),1,2.99,10/25/19 15:46,"649 Lakeview St, San Francisco, CA 94016" -263131,Vareebadd Phone,1,400,10/14/19 21:21,"555 South St, Los Angeles, CA 90001" -263132,Lightning Charging Cable,1,14.95,10/28/19 10:00,"233 Johnson St, Los Angeles, CA 90001" -263133,Lightning Charging Cable,1,14.95,10/27/19 12:28,"81 Chestnut St, Seattle, WA 98101" -263134,Google Phone,1,600,10/25/19 14:29,"277 Washington St, Los Angeles, CA 90001" -263135,Lightning Charging Cable,1,14.95,10/23/19 12:59,"944 North St, San Francisco, CA 94016" -263136,Lightning Charging Cable,1,14.95,10/08/19 16:13,"973 Jackson St, New York City, NY 10001" -263137,Vareebadd Phone,1,400,10/02/19 21:31,"227 Cherry St, New York City, NY 10001" -263138,Google Phone,1,600,10/11/19 21:18,"52 13th St, Boston, MA 02215" -263139,AA Batteries (4-pack),1,3.84,10/28/19 12:19,"853 Willow St, Seattle, WA 98101" -263140,USB-C Charging Cable,1,11.95,10/09/19 10:20,"669 Center St, Boston, MA 02215" -263141,27in 4K Gaming Monitor,1,389.99,10/20/19 11:32,"720 Forest St, San Francisco, CA 94016" -263142,Wired Headphones,1,11.99,10/26/19 18:30,"905 Hickory St, Atlanta, GA 30301" -263143,Macbook Pro Laptop,1,1700,10/16/19 19:06,"156 Chestnut St, New York City, NY 10001" -263144,AA Batteries (4-pack),1,3.84,10/11/19 11:25,"83 Spruce St, San Francisco, CA 94016" -263145,Wired Headphones,2,11.99,10/16/19 09:57,"212 Lakeview St, Portland, OR 97035" -263146,USB-C Charging Cable,1,11.95,10/15/19 15:46,"889 Highland St, Dallas, TX 75001" -263147,iPhone,1,700,10/31/19 11:43,"177 6th St, Atlanta, GA 30301" -263148,USB-C Charging Cable,2,11.95,10/16/19 09:52,"262 River St, Seattle, WA 98101" -263149,Google Phone,1,600,10/15/19 12:05,"16 13th St, Los Angeles, CA 90001" -263150,USB-C Charging Cable,2,11.95,10/08/19 15:05,"98 Center St, Seattle, WA 98101" -263151,Bose SoundSport Headphones,1,99.99,10/16/19 10:27,"452 2nd St, Portland, OR 97035" -263152,Vareebadd Phone,1,400,10/03/19 14:37,"303 Ridge St, Dallas, TX 75001" -263153,Apple Airpods Headphones,1,150,10/30/19 12:30,"803 5th St, New York City, NY 10001" -263154,27in 4K Gaming Monitor,1,389.99,10/15/19 09:57,"185 Lincoln St, Portland, ME 04101" -263155,Lightning Charging Cable,1,14.95,10/30/19 20:17,"544 Johnson St, Portland, OR 97035" -263156,USB-C Charging Cable,1,11.95,10/30/19 13:36,"515 Washington St, Boston, MA 02215" -263157,AA Batteries (4-pack),1,3.84,10/17/19 22:35,"540 10th St, Atlanta, GA 30301" -263158,34in Ultrawide Monitor,1,379.99,10/03/19 12:57,"64 Dogwood St, Atlanta, GA 30301" -,,,,, -263159,Lightning Charging Cable,1,14.95,10/20/19 09:14,"637 Maple St, San Francisco, CA 94016" -263160,Wired Headphones,1,11.99,10/16/19 00:31,"479 Walnut St, Boston, MA 02215" -263161,Flatscreen TV,1,300,10/19/19 17:12,"310 Wilson St, Los Angeles, CA 90001" -263162,AAA Batteries (4-pack),1,2.99,11/01/19 00:09,"741 Dogwood St, Austin, TX 73301" -263163,AAA Batteries (4-pack),4,2.99,10/14/19 09:24,"366 Wilson St, Austin, TX 73301" -263164,USB-C Charging Cable,1,11.95,10/04/19 14:15,"619 Jackson St, San Francisco, CA 94016" -263165,Lightning Charging Cable,1,14.95,10/29/19 20:56,"856 4th St, Atlanta, GA 30301" -263166,Apple Airpods Headphones,1,150,10/04/19 15:19,"648 Lakeview St, Austin, TX 73301" -263167,Bose SoundSport Headphones,1,99.99,10/19/19 15:54,"622 Willow St, Atlanta, GA 30301" -263168,Apple Airpods Headphones,1,150,10/11/19 21:57,"749 North St, Los Angeles, CA 90001" -263169,ThinkPad Laptop,1,999.99,10/23/19 19:46,"532 4th St, Los Angeles, CA 90001" -263170,AAA Batteries (4-pack),1,2.99,10/23/19 12:30,"520 Jackson St, Atlanta, GA 30301" -263171,Lightning Charging Cable,1,14.95,10/15/19 09:53,"451 Lake St, Boston, MA 02215" -263172,Wired Headphones,1,11.99,10/30/19 09:56,"275 8th St, San Francisco, CA 94016" -263173,Bose SoundSport Headphones,1,99.99,10/05/19 17:17,"744 Washington St, San Francisco, CA 94016" -263174,Apple Airpods Headphones,1,150,10/24/19 13:00,"373 Cedar St, Boston, MA 02215" -263175,iPhone,1,700,10/27/19 20:10,"278 Hill St, Dallas, TX 75001" -263175,Lightning Charging Cable,1,14.95,10/27/19 20:10,"278 Hill St, Dallas, TX 75001" -263176,Wired Headphones,1,11.99,10/06/19 17:02,"739 Lake St, Dallas, TX 75001" -263177,AAA Batteries (4-pack),4,2.99,10/05/19 14:28,"358 Center St, New York City, NY 10001" -263178,AAA Batteries (4-pack),2,2.99,10/01/19 13:48,"711 Elm St, Dallas, TX 75001" -263179,Google Phone,1,600,10/11/19 17:54,"861 5th St, Portland, OR 97035" -263180,Apple Airpods Headphones,1,150,10/08/19 17:57,"150 Sunset St, San Francisco, CA 94016" -263181,AAA Batteries (4-pack),1,2.99,10/11/19 18:18,"404 Pine St, Portland, OR 97035" -263182,AA Batteries (4-pack),1,3.84,10/22/19 18:00,"415 2nd St, Atlanta, GA 30301" -263183,27in FHD Monitor,1,149.99,10/21/19 07:34,"209 4th St, New York City, NY 10001" -263184,Wired Headphones,1,11.99,10/21/19 22:21,"210 Johnson St, Atlanta, GA 30301" -263185,AA Batteries (4-pack),1,3.84,10/09/19 18:18,"299 13th St, Atlanta, GA 30301" -263186,Wired Headphones,1,11.99,10/03/19 21:07,"634 Maple St, New York City, NY 10001" -263187,27in FHD Monitor,1,149.99,10/09/19 14:06,"757 Washington St, Los Angeles, CA 90001" -263188,Wired Headphones,1,11.99,10/02/19 18:43,"990 Jefferson St, New York City, NY 10001" -263189,iPhone,1,700,10/25/19 13:01,"268 6th St, San Francisco, CA 94016" -263190,USB-C Charging Cable,1,11.95,10/25/19 11:28,"446 Hickory St, San Francisco, CA 94016" -263191,AA Batteries (4-pack),1,3.84,10/29/19 18:23,"689 Hill St, Los Angeles, CA 90001" -263192,Apple Airpods Headphones,1,150,10/10/19 11:38,"722 Forest St, Boston, MA 02215" -263193,USB-C Charging Cable,1,11.95,10/06/19 22:42,"924 Lake St, New York City, NY 10001" -263194,AA Batteries (4-pack),1,3.84,10/16/19 11:13,"560 North St, Boston, MA 02215" -263195,Wired Headphones,1,11.99,10/08/19 22:56,"851 7th St, Atlanta, GA 30301" -263196,AAA Batteries (4-pack),1,2.99,10/28/19 19:06,"960 Lake St, Atlanta, GA 30301" -263197,Apple Airpods Headphones,1,150,10/21/19 12:39,"731 10th St, Boston, MA 02215" -263198,USB-C Charging Cable,1,11.95,10/01/19 12:15,"243 13th St, New York City, NY 10001" -263199,Google Phone,1,600,10/29/19 06:07,"950 Lakeview St, Boston, MA 02215" -263200,Apple Airpods Headphones,1,150,10/26/19 11:33,"797 Dogwood St, San Francisco, CA 94016" -263201,AA Batteries (4-pack),1,3.84,10/11/19 19:37,"495 Forest St, Los Angeles, CA 90001" -263202,AA Batteries (4-pack),1,3.84,10/23/19 00:50,"740 Johnson St, Seattle, WA 98101" -263203,USB-C Charging Cable,1,11.95,10/08/19 13:27,"36 Chestnut St, Portland, OR 97035" -263204,AA Batteries (4-pack),1,3.84,10/07/19 23:44,"114 8th St, Seattle, WA 98101" -263205,Lightning Charging Cable,1,14.95,10/10/19 10:20,"491 Lake St, Portland, OR 97035" -263206,Apple Airpods Headphones,1,150,10/12/19 19:06,"579 River St, Atlanta, GA 30301" -263207,Wired Headphones,1,11.99,10/31/19 11:05,"682 River St, New York City, NY 10001" -263208,AAA Batteries (4-pack),1,2.99,10/26/19 23:37,"503 6th St, New York City, NY 10001" -263209,Apple Airpods Headphones,1,150,10/21/19 19:13,"724 9th St, Austin, TX 73301" -263210,USB-C Charging Cable,1,11.95,10/01/19 10:11,"15 Wilson St, Seattle, WA 98101" -263211,Apple Airpods Headphones,1,150,10/23/19 18:00,"87 Highland St, San Francisco, CA 94016" -263212,Wired Headphones,1,11.99,10/04/19 09:02,"935 Elm St, San Francisco, CA 94016" -263213,AA Batteries (4-pack),3,3.84,10/11/19 12:55,"27 Elm St, Seattle, WA 98101" -263214,27in FHD Monitor,1,149.99,10/30/19 17:56,"54 Chestnut St, New York City, NY 10001" -263215,Flatscreen TV,1,300,10/28/19 11:55,"24 Jefferson St, New York City, NY 10001" -263216,Apple Airpods Headphones,1,150,10/22/19 19:13,"928 Pine St, Dallas, TX 75001" -263217,27in FHD Monitor,1,149.99,10/21/19 11:09,"23 Park St, Seattle, WA 98101" -263218,AA Batteries (4-pack),2,3.84,10/22/19 07:06,"493 Willow St, Atlanta, GA 30301" -263219,27in 4K Gaming Monitor,1,389.99,10/27/19 04:55,"33 Ridge St, San Francisco, CA 94016" -263220,Bose SoundSport Headphones,1,99.99,10/25/19 15:21,"300 Cedar St, Atlanta, GA 30301" -263221,AAA Batteries (4-pack),1,2.99,10/17/19 17:38,"790 Center St, Austin, TX 73301" -263222,Apple Airpods Headphones,1,150,10/26/19 20:36,"483 Walnut St, Boston, MA 02215" -263223,AA Batteries (4-pack),2,3.84,10/27/19 07:02,"532 Ridge St, Los Angeles, CA 90001" -263224,Apple Airpods Headphones,1,150,10/19/19 09:08,"110 Meadow St, Dallas, TX 75001" -263225,iPhone,1,700,10/06/19 14:46,"496 4th St, New York City, NY 10001" -263226,Macbook Pro Laptop,1,1700,10/31/19 18:20,"713 Highland St, San Francisco, CA 94016" -263227,USB-C Charging Cable,1,11.95,10/31/19 16:28,"666 Walnut St, New York City, NY 10001" -263228,AA Batteries (4-pack),1,3.84,10/10/19 17:39,"626 Chestnut St, Dallas, TX 75001" -263229,Wired Headphones,1,11.99,10/23/19 09:02,"330 11th St, New York City, NY 10001" -263230,34in Ultrawide Monitor,1,379.99,10/24/19 00:48,"97 Chestnut St, San Francisco, CA 94016" -263231,USB-C Charging Cable,1,11.95,10/25/19 20:25,"727 Dogwood St, Seattle, WA 98101" -263232,USB-C Charging Cable,1,11.95,10/10/19 22:11,"689 Pine St, Atlanta, GA 30301" -263233,USB-C Charging Cable,1,11.95,10/10/19 14:14,"977 7th St, Dallas, TX 75001" -263234,USB-C Charging Cable,1,11.95,10/28/19 20:08,"928 Park St, Portland, OR 97035" -263235,27in FHD Monitor,1,149.99,10/25/19 18:47,"96 West St, Atlanta, GA 30301" -263236,27in FHD Monitor,1,149.99,10/27/19 14:51,"513 4th St, Seattle, WA 98101" -263237,Apple Airpods Headphones,1,150,10/19/19 14:16,"282 River St, San Francisco, CA 94016" -263238,Lightning Charging Cable,1,14.95,10/08/19 00:41,"757 Elm St, San Francisco, CA 94016" -263239,Apple Airpods Headphones,1,150,10/21/19 23:11,"249 Sunset St, Boston, MA 02215" -263240,27in 4K Gaming Monitor,1,389.99,10/11/19 23:27,"147 10th St, New York City, NY 10001" -263241,Apple Airpods Headphones,1,150,10/22/19 10:32,"349 2nd St, Los Angeles, CA 90001" -263242,Lightning Charging Cable,1,14.95,10/17/19 17:24,"232 12th St, Los Angeles, CA 90001" -263243,Apple Airpods Headphones,1,150,10/20/19 09:53,"912 Ridge St, Seattle, WA 98101" -263244,Lightning Charging Cable,1,14.95,10/20/19 19:53,"384 Church St, Los Angeles, CA 90001" -263245,AAA Batteries (4-pack),1,2.99,10/03/19 16:05,"68 Wilson St, Los Angeles, CA 90001" -263246,USB-C Charging Cable,1,11.95,10/21/19 09:41,"90 Chestnut St, San Francisco, CA 94016" -263247,20in Monitor,1,109.99,10/31/19 15:12,"794 Sunset St, Boston, MA 02215" -263248,Apple Airpods Headphones,1,150,10/20/19 12:37,"175 Meadow St, Los Angeles, CA 90001" -263249,USB-C Charging Cable,2,11.95,10/10/19 10:55,"677 West St, Boston, MA 02215" -263249,20in Monitor,1,109.99,10/10/19 10:55,"677 West St, Boston, MA 02215" -263250,USB-C Charging Cable,1,11.95,10/19/19 20:33,"308 1st St, Portland, OR 97035" -263251,AA Batteries (4-pack),1,3.84,10/19/19 20:51,"356 Elm St, San Francisco, CA 94016" -263252,USB-C Charging Cable,1,11.95,10/25/19 19:48,"72 Adams St, San Francisco, CA 94016" -263253,LG Washing Machine,1,600.0,10/07/19 17:44,"274 River St, San Francisco, CA 94016" -263254,Google Phone,1,600,10/27/19 06:49,"865 10th St, Los Angeles, CA 90001" -263255,Wired Headphones,1,11.99,10/16/19 10:43,"151 Center St, Dallas, TX 75001" -263256,AA Batteries (4-pack),2,3.84,10/30/19 11:41,"58 West St, New York City, NY 10001" -263257,27in 4K Gaming Monitor,1,389.99,10/27/19 19:36,"921 5th St, New York City, NY 10001" -263258,Wired Headphones,1,11.99,10/27/19 05:09,"963 Madison St, Seattle, WA 98101" -263259,27in FHD Monitor,1,149.99,10/07/19 12:21,"111 Lake St, New York City, NY 10001" -263260,AAA Batteries (4-pack),2,2.99,10/05/19 11:03,"924 Lake St, Boston, MA 02215" -263261,USB-C Charging Cable,1,11.95,10/17/19 18:54,"109 Washington St, New York City, NY 10001" -263262,AAA Batteries (4-pack),1,2.99,10/02/19 07:54,"912 Johnson St, Boston, MA 02215" -263263,Wired Headphones,1,11.99,10/15/19 21:00,"511 Center St, Atlanta, GA 30301" -263264,ThinkPad Laptop,1,999.99,10/02/19 21:52,"860 South St, Boston, MA 02215" -263265,Macbook Pro Laptop,1,1700,10/13/19 10:00,"699 Cedar St, Los Angeles, CA 90001" -263266,USB-C Charging Cable,1,11.95,10/18/19 15:43,"217 Wilson St, Los Angeles, CA 90001" -263267,AA Batteries (4-pack),1,3.84,10/09/19 16:14,"945 Lakeview St, Boston, MA 02215" -263268,Apple Airpods Headphones,1,150,10/06/19 21:37,"755 Walnut St, Portland, OR 97035" -263269,27in FHD Monitor,1,149.99,10/22/19 02:15,"823 Elm St, Boston, MA 02215" -263270,Wired Headphones,1,11.99,10/07/19 17:45,"216 9th St, San Francisco, CA 94016" -263271,AAA Batteries (4-pack),3,2.99,10/20/19 21:51,"408 Willow St, San Francisco, CA 94016" -263272,AAA Batteries (4-pack),1,2.99,10/01/19 16:53,"992 Willow St, San Francisco, CA 94016" -263273,Google Phone,1,600,10/29/19 12:54,"796 Park St, San Francisco, CA 94016" -263274,Lightning Charging Cable,1,14.95,10/26/19 14:40,"695 Lakeview St, Austin, TX 73301" -263275,AAA Batteries (4-pack),1,2.99,10/15/19 21:20,"914 Pine St, Atlanta, GA 30301" -263276,Apple Airpods Headphones,1,150,10/14/19 19:15,"967 Madison St, Seattle, WA 98101" -263277,Wired Headphones,2,11.99,10/05/19 16:11,"11 Jefferson St, Atlanta, GA 30301" -263278,AAA Batteries (4-pack),1,2.99,10/03/19 20:23,"433 Meadow St, Austin, TX 73301" -263279,AAA Batteries (4-pack),3,2.99,10/04/19 01:19,"177 Willow St, Los Angeles, CA 90001" -263280,AA Batteries (4-pack),1,3.84,10/13/19 15:40,"388 South St, San Francisco, CA 94016" -263281,AAA Batteries (4-pack),3,2.99,10/22/19 14:07,"173 Lincoln St, Boston, MA 02215" -263282,USB-C Charging Cable,1,11.95,10/02/19 09:54,"184 Center St, San Francisco, CA 94016" -263283,Bose SoundSport Headphones,1,99.99,10/05/19 09:00,"994 Park St, Los Angeles, CA 90001" -263284,AA Batteries (4-pack),2,3.84,10/25/19 07:38,"95 Cherry St, Atlanta, GA 30301" -263285,AAA Batteries (4-pack),1,2.99,10/30/19 10:44,"435 12th St, San Francisco, CA 94016" -263286,AA Batteries (4-pack),1,3.84,10/31/19 13:46,"488 Lakeview St, Austin, TX 73301" -263287,USB-C Charging Cable,2,11.95,10/12/19 18:32,"504 4th St, Los Angeles, CA 90001" -263288,Lightning Charging Cable,1,14.95,10/26/19 19:11,"960 Maple St, San Francisco, CA 94016" -263289,Apple Airpods Headphones,1,150,10/15/19 23:03,"469 South St, Los Angeles, CA 90001" -263290,Flatscreen TV,1,300,10/16/19 09:14,"720 Center St, Atlanta, GA 30301" -263291,AA Batteries (4-pack),1,3.84,10/17/19 18:19,"555 Ridge St, San Francisco, CA 94016" -263292,Lightning Charging Cable,1,14.95,10/19/19 16:00,"62 10th St, San Francisco, CA 94016" -263293,iPhone,1,700,10/18/19 11:15,"957 Washington St, San Francisco, CA 94016" -263294,Macbook Pro Laptop,1,1700,10/08/19 17:59,"442 Adams St, Seattle, WA 98101" -263295,AA Batteries (4-pack),1,3.84,10/17/19 15:13,"673 Maple St, San Francisco, CA 94016" -263296,27in FHD Monitor,1,149.99,10/15/19 13:20,"430 Main St, San Francisco, CA 94016" -263297,AAA Batteries (4-pack),1,2.99,10/17/19 11:19,"245 Sunset St, Seattle, WA 98101" -263298,27in FHD Monitor,1,149.99,10/07/19 19:55,"614 Hill St, Los Angeles, CA 90001" -263299,27in 4K Gaming Monitor,1,389.99,10/21/19 21:43,"395 Highland St, San Francisco, CA 94016" -263300,USB-C Charging Cable,1,11.95,10/31/19 12:09,"681 9th St, San Francisco, CA 94016" -263301,AAA Batteries (4-pack),1,2.99,10/08/19 21:23,"845 Chestnut St, Seattle, WA 98101" -263302,Apple Airpods Headphones,1,150,10/28/19 11:55,"812 7th St, Boston, MA 02215" -263303,AA Batteries (4-pack),1,3.84,10/23/19 07:24,"223 Chestnut St, New York City, NY 10001" -263304,Bose SoundSport Headphones,1,99.99,10/30/19 13:51,"426 Washington St, Atlanta, GA 30301" -263305,AA Batteries (4-pack),1,3.84,10/30/19 15:17,"853 Ridge St, Los Angeles, CA 90001" -263306,Wired Headphones,1,11.99,10/26/19 12:32,"402 Highland St, Los Angeles, CA 90001" -263307,USB-C Charging Cable,1,11.95,10/18/19 14:46,"601 10th St, New York City, NY 10001" -263308,27in FHD Monitor,1,149.99,10/20/19 19:59,"484 Forest St, Austin, TX 73301" -263309,27in FHD Monitor,1,149.99,10/08/19 13:13,"851 Madison St, Boston, MA 02215" -263310,27in 4K Gaming Monitor,1,389.99,10/11/19 10:20,"69 Pine St, Dallas, TX 75001" -263311,iPhone,1,700,10/18/19 18:39,"814 14th St, San Francisco, CA 94016" -263311,Wired Headphones,1,11.99,10/18/19 18:39,"814 14th St, San Francisco, CA 94016" -263312,AA Batteries (4-pack),1,3.84,10/13/19 13:39,"503 Highland St, Los Angeles, CA 90001" -263313,Lightning Charging Cable,1,14.95,10/08/19 17:47,"423 Center St, San Francisco, CA 94016" -263314,AAA Batteries (4-pack),1,2.99,10/31/19 22:09,"613 12th St, Atlanta, GA 30301" -263315,Lightning Charging Cable,1,14.95,10/22/19 19:46,"679 Hickory St, Seattle, WA 98101" -263316,AA Batteries (4-pack),1,3.84,10/21/19 01:55,"384 Hill St, New York City, NY 10001" -263317,27in 4K Gaming Monitor,1,389.99,10/08/19 08:09,"1 South St, Atlanta, GA 30301" -263318,20in Monitor,1,109.99,10/08/19 21:40,"360 11th St, Los Angeles, CA 90001" -263319,Lightning Charging Cable,1,14.95,10/19/19 23:48,"696 River St, Atlanta, GA 30301" -263320,USB-C Charging Cable,1,11.95,10/25/19 22:45,"96 Jackson St, San Francisco, CA 94016" -263321,USB-C Charging Cable,1,11.95,10/02/19 15:47,"256 Adams St, New York City, NY 10001" -263322,27in FHD Monitor,1,149.99,10/19/19 13:22,"729 Center St, Atlanta, GA 30301" -263323,AAA Batteries (4-pack),2,2.99,10/19/19 19:40,"635 Maple St, Atlanta, GA 30301" -263324,AA Batteries (4-pack),1,3.84,10/27/19 15:49,"476 Center St, Atlanta, GA 30301" -263325,AAA Batteries (4-pack),1,2.99,10/09/19 14:22,"84 Jackson St, Dallas, TX 75001" -263326,AAA Batteries (4-pack),1,2.99,10/16/19 17:21,"546 9th St, San Francisco, CA 94016" -263327,USB-C Charging Cable,1,11.95,10/11/19 13:31,"194 14th St, San Francisco, CA 94016" -263328,LG Dryer,1,600.0,10/13/19 18:11,"586 Elm St, San Francisco, CA 94016" -263329,34in Ultrawide Monitor,1,379.99,10/02/19 06:53,"671 14th St, Portland, OR 97035" -263330,27in 4K Gaming Monitor,1,389.99,10/02/19 11:01,"313 10th St, Boston, MA 02215" -263331,LG Washing Machine,1,600.0,10/13/19 14:47,"174 Maple St, Portland, OR 97035" -263332,Lightning Charging Cable,1,14.95,10/30/19 14:30,"11 Ridge St, Los Angeles, CA 90001" -263333,34in Ultrawide Monitor,1,379.99,10/30/19 21:39,"525 Meadow St, San Francisco, CA 94016" -263334,Lightning Charging Cable,1,14.95,10/14/19 19:21,"300 Dogwood St, San Francisco, CA 94016" -263335,iPhone,1,700,10/15/19 14:25,"610 Madison St, Atlanta, GA 30301" -263336,Wired Headphones,1,11.99,10/08/19 18:49,"613 Adams St, New York City, NY 10001" -263337,Lightning Charging Cable,1,14.95,10/22/19 17:18,"126 12th St, Portland, OR 97035" -263338,Bose SoundSport Headphones,1,99.99,10/13/19 16:30,"27 Wilson St, Seattle, WA 98101" -263339,Macbook Pro Laptop,1,1700,10/05/19 12:22,"42 11th St, Seattle, WA 98101" -263340,USB-C Charging Cable,1,11.95,10/11/19 19:21,"212 Hill St, Austin, TX 73301" -263341,Wired Headphones,1,11.99,10/15/19 22:02,"432 4th St, Atlanta, GA 30301" -263342,iPhone,1,700,10/18/19 06:26,"779 Madison St, Boston, MA 02215" -263343,Lightning Charging Cable,2,14.95,10/13/19 10:22,"206 Walnut St, Dallas, TX 75001" -263344,iPhone,1,700,10/24/19 20:54,"622 Center St, Portland, OR 97035" -263345,ThinkPad Laptop,1,999.99,10/05/19 22:39,"971 Jackson St, Atlanta, GA 30301" -263346,Flatscreen TV,1,300,10/21/19 18:23,"846 1st St, San Francisco, CA 94016" -263347,Lightning Charging Cable,1,14.95,10/13/19 19:09,"259 Walnut St, Los Angeles, CA 90001" -263348,Google Phone,1,600,10/13/19 10:32,"800 Willow St, San Francisco, CA 94016" -263349,AA Batteries (4-pack),2,3.84,10/19/19 12:56,"409 Adams St, Portland, OR 97035" -263350,Macbook Pro Laptop,1,1700,10/23/19 12:08,"77 Johnson St, San Francisco, CA 94016" -263350,Wired Headphones,1,11.99,10/23/19 12:08,"77 Johnson St, San Francisco, CA 94016" -263351,Wired Headphones,1,11.99,10/21/19 12:57,"440 12th St, San Francisco, CA 94016" -263352,Lightning Charging Cable,1,14.95,10/23/19 08:26,"890 Center St, Los Angeles, CA 90001" -263353,Lightning Charging Cable,1,14.95,10/10/19 14:01,"567 Chestnut St, Seattle, WA 98101" -263354,AA Batteries (4-pack),1,3.84,10/31/19 00:31,"337 Cedar St, Dallas, TX 75001" -263355,AA Batteries (4-pack),1,3.84,10/01/19 10:53,"539 9th St, Boston, MA 02215" -263355,USB-C Charging Cable,1,11.95,10/01/19 10:53,"539 9th St, Boston, MA 02215" -263356,Bose SoundSport Headphones,1,99.99,10/31/19 21:23,"581 10th St, New York City, NY 10001" -263357,AAA Batteries (4-pack),1,2.99,10/01/19 06:21,"407 9th St, San Francisco, CA 94016" -263358,Wired Headphones,1,11.99,10/24/19 15:42,"810 Adams St, Atlanta, GA 30301" -263359,USB-C Charging Cable,1,11.95,10/31/19 17:13,"606 Church St, Portland, OR 97035" -263360,34in Ultrawide Monitor,1,379.99,10/03/19 17:37,"507 Dogwood St, San Francisco, CA 94016" -263361,27in FHD Monitor,1,149.99,10/15/19 09:24,"479 Jackson St, San Francisco, CA 94016" -263362,Lightning Charging Cable,1,14.95,10/09/19 17:36,"96 Center St, New York City, NY 10001" -263363,AAA Batteries (4-pack),1,2.99,10/07/19 21:02,"161 Ridge St, Atlanta, GA 30301" -263364,AAA Batteries (4-pack),1,2.99,10/14/19 02:05,"97 Cherry St, New York City, NY 10001" -263365,Bose SoundSport Headphones,1,99.99,10/01/19 21:31,"153 8th St, Portland, OR 97035" -263366,AA Batteries (4-pack),1,3.84,10/27/19 09:31,"480 14th St, Los Angeles, CA 90001" -263367,Apple Airpods Headphones,1,150,10/12/19 09:28,"254 12th St, San Francisco, CA 94016" -263368,27in 4K Gaming Monitor,1,389.99,10/25/19 19:29,"530 Ridge St, Los Angeles, CA 90001" -263369,20in Monitor,1,109.99,10/15/19 17:06,"23 Lakeview St, Atlanta, GA 30301" -263370,Google Phone,1,600,10/17/19 00:24,"422 Ridge St, Seattle, WA 98101" -263370,USB-C Charging Cable,1,11.95,10/17/19 00:24,"422 Ridge St, Seattle, WA 98101" -263371,Lightning Charging Cable,1,14.95,10/21/19 10:27,"631 Park St, New York City, NY 10001" -263372,iPhone,1,700,10/04/19 19:48,"766 2nd St, Los Angeles, CA 90001" -263373,USB-C Charging Cable,1,11.95,10/10/19 16:45,"670 13th St, San Francisco, CA 94016" -263374,34in Ultrawide Monitor,1,379.99,10/13/19 08:19,"822 Pine St, Dallas, TX 75001" -263375,AAA Batteries (4-pack),5,2.99,10/18/19 12:57,"438 4th St, San Francisco, CA 94016" -263376,AAA Batteries (4-pack),1,2.99,10/03/19 15:56,"19 14th St, San Francisco, CA 94016" -263377,USB-C Charging Cable,1,11.95,10/11/19 06:53,"971 River St, Atlanta, GA 30301" -263378,LG Washing Machine,1,600.0,10/15/19 10:01,"514 South St, Seattle, WA 98101" -263379,27in 4K Gaming Monitor,1,389.99,10/23/19 15:50,"658 7th St, San Francisco, CA 94016" -263380,ThinkPad Laptop,1,999.99,10/21/19 17:55,"317 Lincoln St, Seattle, WA 98101" -263381,27in FHD Monitor,1,149.99,10/08/19 14:37,"681 10th St, Boston, MA 02215" -263382,AA Batteries (4-pack),2,3.84,10/10/19 09:17,"642 Meadow St, Atlanta, GA 30301" -263383,27in 4K Gaming Monitor,1,389.99,10/27/19 19:39,"745 Washington St, San Francisco, CA 94016" -263384,AA Batteries (4-pack),1,3.84,10/08/19 20:20,"901 6th St, Boston, MA 02215" -263385,Bose SoundSport Headphones,1,99.99,10/25/19 19:25,"773 Walnut St, New York City, NY 10001" -263386,Bose SoundSport Headphones,1,99.99,10/07/19 13:09,"793 11th St, Boston, MA 02215" -263387,Google Phone,1,600,10/30/19 22:18,"97 Cedar St, Boston, MA 02215" -263387,USB-C Charging Cable,1,11.95,10/30/19 22:18,"97 Cedar St, Boston, MA 02215" -263387,Wired Headphones,1,11.99,10/30/19 22:18,"97 Cedar St, Boston, MA 02215" -263388,Apple Airpods Headphones,1,150,10/20/19 00:19,"281 7th St, San Francisco, CA 94016" -263389,Lightning Charging Cable,1,14.95,10/05/19 11:42,"887 Dogwood St, San Francisco, CA 94016" -263390,iPhone,1,700,10/07/19 12:21,"187 1st St, Seattle, WA 98101" -263391,USB-C Charging Cable,1,11.95,10/14/19 18:09,"337 Washington St, New York City, NY 10001" -263392,AAA Batteries (4-pack),1,2.99,10/11/19 12:53,"605 Pine St, Portland, OR 97035" -263393,Apple Airpods Headphones,1,150,10/17/19 14:58,"644 5th St, Los Angeles, CA 90001" -263394,AA Batteries (4-pack),1,3.84,10/24/19 13:17,"437 Adams St, Los Angeles, CA 90001" -263395,Flatscreen TV,1,300,10/16/19 11:52,"527 10th St, Atlanta, GA 30301" -263396,Lightning Charging Cable,1,14.95,10/04/19 13:47,"883 10th St, Dallas, TX 75001" -263397,ThinkPad Laptop,1,999.99,10/23/19 23:44,"953 Madison St, Atlanta, GA 30301" -263398,34in Ultrawide Monitor,1,379.99,10/22/19 12:10,"558 Church St, Boston, MA 02215" -263399,ThinkPad Laptop,1,999.99,10/23/19 18:37,"469 Cedar St, Boston, MA 02215" -263400,Lightning Charging Cable,1,14.95,10/11/19 19:06,"573 7th St, Boston, MA 02215" -263401,USB-C Charging Cable,1,11.95,10/21/19 04:59,"676 Ridge St, Los Angeles, CA 90001" -263402,iPhone,1,700,10/05/19 13:49,"829 13th St, Dallas, TX 75001" -263402,Wired Headphones,1,11.99,10/05/19 13:49,"829 13th St, Dallas, TX 75001" -263403,Apple Airpods Headphones,1,150,10/20/19 20:58,"30 13th St, New York City, NY 10001" -263404,Lightning Charging Cable,1,14.95,10/25/19 15:21,"414 4th St, Boston, MA 02215" -263405,AAA Batteries (4-pack),2,2.99,10/22/19 10:30,"861 1st St, San Francisco, CA 94016" -263406,Lightning Charging Cable,1,14.95,10/10/19 00:19,"278 10th St, Portland, OR 97035" -263407,Apple Airpods Headphones,1,150,10/20/19 14:23,"699 South St, Portland, ME 04101" -263408,Lightning Charging Cable,1,14.95,10/16/19 02:35,"576 South St, Atlanta, GA 30301" -263409,USB-C Charging Cable,1,11.95,10/01/19 12:08,"625 Lake St, Boston, MA 02215" -263410,Wired Headphones,1,11.99,10/06/19 13:56,"391 Adams St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -263411,iPhone,1,700,10/29/19 00:35,"647 11th St, New York City, NY 10001" -263411,Wired Headphones,1,11.99,10/29/19 00:35,"647 11th St, New York City, NY 10001" -263412,AA Batteries (4-pack),1,3.84,10/24/19 16:15,"978 Wilson St, San Francisco, CA 94016" -263413,Wired Headphones,1,11.99,10/14/19 12:43,"161 8th St, Dallas, TX 75001" -263414,Lightning Charging Cable,1,14.95,10/28/19 11:30,"866 Lincoln St, San Francisco, CA 94016" -263415,iPhone,1,700,10/12/19 12:39,"521 Hickory St, Dallas, TX 75001" -263415,Wired Headphones,1,11.99,10/12/19 12:39,"521 Hickory St, Dallas, TX 75001" -263416,Bose SoundSport Headphones,1,99.99,10/25/19 17:27,"911 Lincoln St, New York City, NY 10001" -263417,AA Batteries (4-pack),1,3.84,10/04/19 23:10,"266 Madison St, Dallas, TX 75001" -263418,Macbook Pro Laptop,1,1700,10/23/19 12:40,"236 6th St, Austin, TX 73301" -263419,Apple Airpods Headphones,1,150,10/03/19 00:04,"102 Elm St, Portland, OR 97035" -,,,,, -263420,Bose SoundSport Headphones,1,99.99,10/04/19 11:23,"836 River St, San Francisco, CA 94016" -263421,Google Phone,1,600,10/01/19 09:06,"765 Jackson St, San Francisco, CA 94016" -263421,USB-C Charging Cable,1,11.95,10/01/19 09:06,"765 Jackson St, San Francisco, CA 94016" -263422,AAA Batteries (4-pack),1,2.99,10/01/19 07:44,"826 Main St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -263423,20in Monitor,1,109.99,10/15/19 19:20,"837 River St, San Francisco, CA 94016" -263424,Bose SoundSport Headphones,1,99.99,10/22/19 10:05,"827 Maple St, Austin, TX 73301" -263424,Lightning Charging Cable,1,14.95,10/22/19 10:05,"827 Maple St, Austin, TX 73301" -263425,Bose SoundSport Headphones,1,99.99,10/05/19 18:15,"870 11th St, Dallas, TX 75001" -263426,AAA Batteries (4-pack),2,2.99,10/16/19 20:47,"782 Chestnut St, San Francisco, CA 94016" -263427,USB-C Charging Cable,1,11.95,10/01/19 14:46,"907 6th St, Boston, MA 02215" -263428,AA Batteries (4-pack),1,3.84,10/19/19 21:47,"198 10th St, New York City, NY 10001" -263429,Apple Airpods Headphones,1,150,10/26/19 10:57,"51 Walnut St, San Francisco, CA 94016" -263430,iPhone,1,700,10/17/19 19:48,"686 14th St, San Francisco, CA 94016" -263430,Lightning Charging Cable,1,14.95,10/17/19 19:48,"686 14th St, San Francisco, CA 94016" -263431,Apple Airpods Headphones,1,150,10/31/19 01:41,"640 Lakeview St, New York City, NY 10001" -263432,USB-C Charging Cable,1,11.95,10/16/19 21:47,"664 Lakeview St, Portland, OR 97035" -263433,AA Batteries (4-pack),1,3.84,10/04/19 19:03,"985 Dogwood St, Portland, OR 97035" -263434,Lightning Charging Cable,1,14.95,10/09/19 16:37,"459 Wilson St, Atlanta, GA 30301" -263435,Bose SoundSport Headphones,1,99.99,10/25/19 16:02,"478 Forest St, New York City, NY 10001" -263436,USB-C Charging Cable,1,11.95,10/31/19 13:15,"793 North St, Dallas, TX 75001" -263437,Wired Headphones,1,11.99,10/24/19 19:40,"36 Willow St, Los Angeles, CA 90001" -263438,Wired Headphones,1,11.99,10/30/19 21:47,"868 Hill St, Boston, MA 02215" -263439,Macbook Pro Laptop,1,1700,10/12/19 20:58,"614 9th St, Boston, MA 02215" -263440,Bose SoundSport Headphones,1,99.99,10/28/19 15:52,"485 Hickory St, Los Angeles, CA 90001" -263441,Wired Headphones,1,11.99,10/16/19 19:24,"690 Lincoln St, Austin, TX 73301" -263442,Apple Airpods Headphones,1,150,10/03/19 19:25,"247 River St, Boston, MA 02215" -263443,Apple Airpods Headphones,1,150,10/02/19 21:24,"499 8th St, Portland, OR 97035" -263444,Lightning Charging Cable,1,14.95,10/21/19 09:51,"544 Church St, Boston, MA 02215" -263445,USB-C Charging Cable,1,11.95,10/20/19 16:35,"371 13th St, San Francisco, CA 94016" -263446,ThinkPad Laptop,1,999.99,10/20/19 00:44,"195 Johnson St, Atlanta, GA 30301" -263447,Flatscreen TV,1,300,10/26/19 11:21,"265 Park St, San Francisco, CA 94016" -263448,AAA Batteries (4-pack),1,2.99,10/21/19 20:44,"564 Willow St, San Francisco, CA 94016" -263449,USB-C Charging Cable,1,11.95,10/16/19 10:19,"16 Willow St, San Francisco, CA 94016" -263450,Lightning Charging Cable,3,14.95,10/25/19 08:11,"946 Wilson St, Los Angeles, CA 90001" -263451,AA Batteries (4-pack),1,3.84,10/24/19 07:11,"467 11th St, Atlanta, GA 30301" -263452,Apple Airpods Headphones,1,150,10/17/19 09:40,"302 Dogwood St, Los Angeles, CA 90001" -263453,AAA Batteries (4-pack),1,2.99,10/03/19 21:14,"795 Jefferson St, San Francisco, CA 94016" -263454,Apple Airpods Headphones,1,150,10/29/19 11:24,"202 Madison St, Boston, MA 02215" -263455,AAA Batteries (4-pack),1,2.99,10/18/19 12:59,"487 Cedar St, Atlanta, GA 30301" -263456,34in Ultrawide Monitor,1,379.99,10/23/19 13:22,"418 Park St, New York City, NY 10001" -263457,Wired Headphones,1,11.99,10/19/19 18:16,"458 Highland St, San Francisco, CA 94016" -263458,Lightning Charging Cable,1,14.95,10/18/19 11:13,"192 10th St, San Francisco, CA 94016" -263458,AAA Batteries (4-pack),4,2.99,10/18/19 11:13,"192 10th St, San Francisco, CA 94016" -263459,Wired Headphones,1,11.99,10/12/19 13:46,"677 Main St, Atlanta, GA 30301" -263460,Apple Airpods Headphones,1,150,10/31/19 15:48,"158 West St, Seattle, WA 98101" -263461,Lightning Charging Cable,1,14.95,10/25/19 16:46,"439 Jefferson St, San Francisco, CA 94016" -263462,Apple Airpods Headphones,1,150,10/25/19 20:17,"704 Lincoln St, Boston, MA 02215" -263463,AAA Batteries (4-pack),1,2.99,10/09/19 00:49,"48 6th St, Seattle, WA 98101" -263464,ThinkPad Laptop,1,999.99,10/28/19 15:54,"936 2nd St, Dallas, TX 75001" -263465,34in Ultrawide Monitor,1,379.99,10/08/19 12:12,"198 Meadow St, San Francisco, CA 94016" -263466,AA Batteries (4-pack),1,3.84,10/16/19 10:31,"780 13th St, San Francisco, CA 94016" -263467,AA Batteries (4-pack),1,3.84,10/23/19 23:57,"207 Cherry St, Seattle, WA 98101" -263468,Flatscreen TV,1,300,10/23/19 07:32,"772 Johnson St, Boston, MA 02215" -263469,Apple Airpods Headphones,1,150,10/29/19 09:53,"59 Wilson St, San Francisco, CA 94016" -263470,Flatscreen TV,1,300,10/15/19 12:06,"552 14th St, San Francisco, CA 94016" -263471,USB-C Charging Cable,1,11.95,10/08/19 13:23,"182 Ridge St, Dallas, TX 75001" -263472,Wired Headphones,1,11.99,10/28/19 19:23,"900 11th St, San Francisco, CA 94016" -263473,AA Batteries (4-pack),1,3.84,10/05/19 12:22,"781 Hill St, Boston, MA 02215" -263474,Apple Airpods Headphones,1,150,10/23/19 15:03,"287 Elm St, Dallas, TX 75001" -263475,Wired Headphones,1,11.99,10/19/19 18:03,"312 Meadow St, Boston, MA 02215" -263476,AA Batteries (4-pack),1,3.84,10/02/19 11:46,"162 Hill St, Portland, OR 97035" -263477,USB-C Charging Cable,1,11.95,10/08/19 19:54,"751 14th St, Boston, MA 02215" -263478,AAA Batteries (4-pack),2,2.99,10/12/19 17:27,"626 Washington St, Los Angeles, CA 90001" -263479,USB-C Charging Cable,1,11.95,10/10/19 09:53,"805 Lake St, San Francisco, CA 94016" -263479,27in FHD Monitor,1,149.99,10/10/19 09:53,"805 Lake St, San Francisco, CA 94016" -263480,Google Phone,1,600,10/23/19 10:08,"735 13th St, Seattle, WA 98101" -263480,Wired Headphones,1,11.99,10/23/19 10:08,"735 13th St, Seattle, WA 98101" -263481,27in FHD Monitor,1,149.99,10/21/19 16:20,"225 River St, San Francisco, CA 94016" -263482,Apple Airpods Headphones,1,150,10/05/19 11:37,"98 Dogwood St, Los Angeles, CA 90001" -263483,AAA Batteries (4-pack),1,2.99,10/17/19 06:00,"122 Cedar St, Dallas, TX 75001" -263484,Wired Headphones,1,11.99,10/17/19 02:34,"914 5th St, New York City, NY 10001" -263485,AA Batteries (4-pack),2,3.84,10/24/19 18:43,"324 Meadow St, New York City, NY 10001" -263486,USB-C Charging Cable,1,11.95,10/27/19 11:31,"258 Sunset St, Boston, MA 02215" -263487,Apple Airpods Headphones,1,150,10/10/19 13:59,"447 Willow St, Portland, OR 97035" -263488,Wired Headphones,2,11.99,10/14/19 08:27,"427 10th St, San Francisco, CA 94016" -263489,USB-C Charging Cable,1,11.95,10/21/19 12:37,"248 13th St, Los Angeles, CA 90001" -263490,Wired Headphones,1,11.99,10/05/19 20:07,"847 14th St, San Francisco, CA 94016" -263491,Wired Headphones,1,11.99,10/18/19 20:42,"94 Dogwood St, New York City, NY 10001" -263492,Google Phone,1,600,10/24/19 18:38,"717 9th St, Austin, TX 73301" -263493,Lightning Charging Cable,1,14.95,10/18/19 20:53,"748 West St, San Francisco, CA 94016" -263494,AA Batteries (4-pack),1,3.84,10/10/19 00:02,"425 14th St, New York City, NY 10001" -263495,Lightning Charging Cable,1,14.95,10/04/19 13:27,"217 Main St, Los Angeles, CA 90001" -263496,USB-C Charging Cable,1,11.95,10/12/19 16:43,"643 Lakeview St, Atlanta, GA 30301" -263497,USB-C Charging Cable,1,11.95,10/17/19 16:49,"742 North St, Austin, TX 73301" -263498,Google Phone,1,600,10/21/19 09:33,"451 4th St, Los Angeles, CA 90001" -263499,AA Batteries (4-pack),1,3.84,10/08/19 12:08,"292 Hickory St, Portland, OR 97035" -263500,Bose SoundSport Headphones,1,99.99,10/25/19 10:53,"123 River St, San Francisco, CA 94016" -263501,AAA Batteries (4-pack),1,2.99,10/03/19 10:08,"347 Hill St, Los Angeles, CA 90001" -263502,34in Ultrawide Monitor,1,379.99,10/17/19 21:54,"946 Park St, Boston, MA 02215" -263503,27in 4K Gaming Monitor,1,389.99,10/10/19 05:07,"566 Hickory St, Boston, MA 02215" -263504,Lightning Charging Cable,1,14.95,10/10/19 16:12,"935 Elm St, Atlanta, GA 30301" -263505,Flatscreen TV,1,300,10/27/19 12:16,"469 13th St, Los Angeles, CA 90001" -263506,USB-C Charging Cable,1,11.95,10/22/19 09:19,"901 Pine St, Portland, OR 97035" -263507,Wired Headphones,1,11.99,10/22/19 19:30,"771 West St, Los Angeles, CA 90001" -263508,34in Ultrawide Monitor,1,379.99,10/21/19 19:06,"765 Jefferson St, Dallas, TX 75001" -263509,Apple Airpods Headphones,1,150,10/14/19 10:37,"69 Jefferson St, Los Angeles, CA 90001" -263510,iPhone,1,700,10/06/19 12:18,"368 Sunset St, San Francisco, CA 94016" -263511,AA Batteries (4-pack),1,3.84,10/21/19 12:24,"318 Church St, Portland, ME 04101" -263512,Lightning Charging Cable,1,14.95,10/26/19 22:54,"262 Jefferson St, Boston, MA 02215" -263513,Apple Airpods Headphones,1,150,10/11/19 19:39,"156 Hill St, Boston, MA 02215" -263514,AAA Batteries (4-pack),1,2.99,10/12/19 18:44,"732 Willow St, New York City, NY 10001" -263515,Apple Airpods Headphones,1,150,10/16/19 17:45,"496 Forest St, Boston, MA 02215" -263516,AA Batteries (4-pack),1,3.84,10/02/19 16:41,"384 Meadow St, Los Angeles, CA 90001" -263517,AAA Batteries (4-pack),1,2.99,10/22/19 17:07,"660 Sunset St, Los Angeles, CA 90001" -263518,Wired Headphones,1,11.99,10/24/19 18:15,"478 Forest St, Dallas, TX 75001" -263519,34in Ultrawide Monitor,1,379.99,10/08/19 14:45,"371 Forest St, Los Angeles, CA 90001" -263520,Apple Airpods Headphones,1,150,10/16/19 21:20,"182 Lakeview St, Atlanta, GA 30301" -263521,iPhone,1,700,10/03/19 20:55,"128 11th St, Dallas, TX 75001" -263522,Wired Headphones,1,11.99,10/21/19 13:34,"503 Adams St, New York City, NY 10001" -263523,Apple Airpods Headphones,1,150,10/30/19 10:06,"946 14th St, San Francisco, CA 94016" -263524,AA Batteries (4-pack),1,3.84,10/17/19 16:28,"676 Hickory St, San Francisco, CA 94016" -263525,Google Phone,1,600,10/13/19 23:01,"207 Jackson St, San Francisco, CA 94016" -263526,Bose SoundSport Headphones,1,99.99,10/22/19 17:10,"543 Pine St, Seattle, WA 98101" -263527,Apple Airpods Headphones,1,150,10/09/19 23:53,"633 14th St, Boston, MA 02215" -263528,AAA Batteries (4-pack),2,2.99,10/20/19 16:38,"531 River St, San Francisco, CA 94016" -263529,ThinkPad Laptop,1,999.99,10/21/19 01:36,"761 Elm St, Los Angeles, CA 90001" -263530,Apple Airpods Headphones,1,150,10/10/19 10:13,"115 9th St, Austin, TX 73301" -263531,AAA Batteries (4-pack),1,2.99,10/07/19 19:27,"212 West St, New York City, NY 10001" -263532,Wired Headphones,1,11.99,10/07/19 19:52,"216 Maple St, Los Angeles, CA 90001" -263533,USB-C Charging Cable,1,11.95,10/17/19 13:12,"562 11th St, Boston, MA 02215" -263534,AA Batteries (4-pack),1,3.84,10/23/19 09:38,"429 4th St, Seattle, WA 98101" -263534,34in Ultrawide Monitor,1,379.99,10/23/19 09:38,"429 4th St, Seattle, WA 98101" -263535,34in Ultrawide Monitor,1,379.99,10/26/19 16:36,"67 Ridge St, Boston, MA 02215" -263536,AAA Batteries (4-pack),1,2.99,10/17/19 16:47,"163 Ridge St, Boston, MA 02215" -263537,AA Batteries (4-pack),1,3.84,10/24/19 11:37,"157 Sunset St, Atlanta, GA 30301" -263538,Lightning Charging Cable,1,14.95,10/29/19 15:27,"826 Center St, Austin, TX 73301" -263539,Lightning Charging Cable,1,14.95,10/18/19 00:49,"143 Johnson St, Portland, OR 97035" -263540,Wired Headphones,1,11.99,10/02/19 15:54,"890 Jefferson St, Seattle, WA 98101" -263541,Lightning Charging Cable,3,14.95,10/31/19 16:19,"781 Park St, New York City, NY 10001" -263542,27in 4K Gaming Monitor,1,389.99,10/05/19 15:26,"471 8th St, San Francisco, CA 94016" -263543,AAA Batteries (4-pack),2,2.99,10/10/19 21:38,"319 Park St, Seattle, WA 98101" -263544,AAA Batteries (4-pack),1,2.99,10/30/19 10:49,"580 2nd St, Los Angeles, CA 90001" -263545,27in FHD Monitor,1,149.99,10/10/19 09:35,"672 8th St, Seattle, WA 98101" -263546,Wired Headphones,1,11.99,10/31/19 08:41,"5 Highland St, Austin, TX 73301" -263547,Wired Headphones,1,11.99,10/28/19 12:42,"496 Jackson St, Atlanta, GA 30301" -263548,AAA Batteries (4-pack),1,2.99,10/22/19 23:29,"498 Hickory St, Boston, MA 02215" -263549,USB-C Charging Cable,1,11.95,10/14/19 09:18,"300 Johnson St, Boston, MA 02215" -263550,iPhone,1,700,10/24/19 08:12,"519 Wilson St, San Francisco, CA 94016" -263551,Wired Headphones,1,11.99,10/10/19 09:58,"529 Adams St, New York City, NY 10001" -263552,Lightning Charging Cable,1,14.95,10/18/19 14:23,"746 Chestnut St, Seattle, WA 98101" -263553,USB-C Charging Cable,1,11.95,10/25/19 20:04,"386 4th St, Atlanta, GA 30301" -263554,USB-C Charging Cable,3,11.95,10/26/19 21:40,"810 Hickory St, Portland, OR 97035" -263555,Apple Airpods Headphones,1,150,10/22/19 12:01,"862 Main St, Austin, TX 73301" -263556,ThinkPad Laptop,1,999.99,10/10/19 17:35,"368 Lake St, Austin, TX 73301" -263557,Bose SoundSport Headphones,1,99.99,10/31/19 12:41,"403 10th St, Austin, TX 73301" -263558,Lightning Charging Cable,1,14.95,10/29/19 11:27,"428 13th St, San Francisco, CA 94016" -263559,Apple Airpods Headphones,1,150,10/24/19 09:10,"696 Willow St, Seattle, WA 98101" -263560,Bose SoundSport Headphones,1,99.99,10/18/19 11:36,"364 Jackson St, Atlanta, GA 30301" -263561,USB-C Charging Cable,1,11.95,10/24/19 14:16,"630 Hill St, New York City, NY 10001" -263561,Wired Headphones,1,11.99,10/24/19 14:16,"630 Hill St, New York City, NY 10001" -263562,Apple Airpods Headphones,1,150,10/10/19 19:53,"119 Spruce St, Austin, TX 73301" -263563,Lightning Charging Cable,1,14.95,10/28/19 23:17,"526 7th St, San Francisco, CA 94016" -263564,AAA Batteries (4-pack),1,2.99,10/16/19 00:05,"989 Main St, Seattle, WA 98101" -263565,27in 4K Gaming Monitor,1,389.99,10/30/19 11:29,"160 Wilson St, Portland, OR 97035" -263566,AAA Batteries (4-pack),1,2.99,10/31/19 16:07,"86 Forest St, Seattle, WA 98101" -263567,Wired Headphones,1,11.99,10/21/19 10:19,"176 Park St, Seattle, WA 98101" -263568,USB-C Charging Cable,1,11.95,10/12/19 14:14,"467 13th St, Boston, MA 02215" -263569,ThinkPad Laptop,1,999.99,10/17/19 20:28,"399 2nd St, San Francisco, CA 94016" -263570,Bose SoundSport Headphones,1,99.99,10/14/19 18:46,"483 Dogwood St, Seattle, WA 98101" -263571,27in FHD Monitor,1,149.99,10/27/19 15:54,"437 Meadow St, New York City, NY 10001" -263572,Bose SoundSport Headphones,1,99.99,10/20/19 11:18,"277 Highland St, San Francisco, CA 94016" -263573,Lightning Charging Cable,1,14.95,10/02/19 22:09,"741 Lincoln St, Atlanta, GA 30301" -263574,AAA Batteries (4-pack),1,2.99,10/10/19 23:20,"130 Walnut St, Austin, TX 73301" -263575,AA Batteries (4-pack),1,3.84,10/14/19 16:42,"719 Johnson St, Seattle, WA 98101" -263576,USB-C Charging Cable,1,11.95,10/23/19 23:25,"292 Hickory St, Boston, MA 02215" -263577,27in FHD Monitor,1,149.99,10/27/19 09:12,"572 14th St, San Francisco, CA 94016" -263578,ThinkPad Laptop,1,999.99,10/20/19 17:51,"971 10th St, San Francisco, CA 94016" -263579,Wired Headphones,1,11.99,10/07/19 00:32,"550 Main St, San Francisco, CA 94016" -263580,27in FHD Monitor,1,149.99,10/16/19 12:39,"922 Lakeview St, Atlanta, GA 30301" -263581,AA Batteries (4-pack),1,3.84,10/02/19 14:45,"928 West St, Los Angeles, CA 90001" -263582,AAA Batteries (4-pack),1,2.99,10/19/19 23:40,"918 Hickory St, New York City, NY 10001" -263583,Flatscreen TV,1,300,10/05/19 12:35,"634 Adams St, Los Angeles, CA 90001" -263584,Macbook Pro Laptop,1,1700,10/27/19 17:08,"76 8th St, Atlanta, GA 30301" -263585,Lightning Charging Cable,1,14.95,10/30/19 16:57,"659 Cedar St, San Francisco, CA 94016" -263586,USB-C Charging Cable,2,11.95,10/04/19 22:54,"160 South St, Boston, MA 02215" -263587,Lightning Charging Cable,1,14.95,10/07/19 10:31,"545 Sunset St, Los Angeles, CA 90001" -263588,Apple Airpods Headphones,1,150,10/21/19 17:35,"321 Johnson St, San Francisco, CA 94016" -263589,Wired Headphones,1,11.99,10/26/19 21:36,"777 9th St, San Francisco, CA 94016" -263590,Wired Headphones,1,11.99,10/22/19 00:49,"943 Washington St, Dallas, TX 75001" -263591,USB-C Charging Cable,2,11.95,10/14/19 13:28,"289 Hickory St, Los Angeles, CA 90001" -263592,34in Ultrawide Monitor,1,379.99,10/12/19 20:48,"659 West St, Los Angeles, CA 90001" -263593,Wired Headphones,2,11.99,10/08/19 16:55,"630 Jackson St, Los Angeles, CA 90001" -263594,AAA Batteries (4-pack),1,2.99,10/30/19 18:30,"972 West St, Atlanta, GA 30301" -263595,20in Monitor,1,109.99,10/23/19 20:38,"665 South St, Portland, ME 04101" -263596,34in Ultrawide Monitor,1,379.99,10/09/19 14:00,"292 Washington St, San Francisco, CA 94016" -263597,AAA Batteries (4-pack),1,2.99,10/31/19 18:49,"948 9th St, New York City, NY 10001" -263598,Apple Airpods Headphones,1,150,10/24/19 15:09,"785 7th St, Los Angeles, CA 90001" -263599,Bose SoundSport Headphones,1,99.99,10/08/19 22:30,"132 9th St, New York City, NY 10001" -263600,iPhone,1,700,10/06/19 01:36,"561 Meadow St, Seattle, WA 98101" -263600,Lightning Charging Cable,1,14.95,10/06/19 01:36,"561 Meadow St, Seattle, WA 98101" -263600,Apple Airpods Headphones,1,150,10/06/19 01:36,"561 Meadow St, Seattle, WA 98101" -263601,iPhone,1,700,10/28/19 22:23,"908 Pine St, Portland, OR 97035" -263602,AAA Batteries (4-pack),1,2.99,10/23/19 15:43,"412 13th St, San Francisco, CA 94016" -263603,USB-C Charging Cable,1,11.95,10/04/19 14:03,"127 Forest St, Portland, OR 97035" -263604,iPhone,1,700,10/02/19 12:32,"863 7th St, Austin, TX 73301" -263605,Bose SoundSport Headphones,1,99.99,10/24/19 16:52,"369 Lakeview St, San Francisco, CA 94016" -263606,iPhone,1,700,10/07/19 16:35,"251 South St, San Francisco, CA 94016" -263606,Lightning Charging Cable,1,14.95,10/07/19 16:35,"251 South St, San Francisco, CA 94016" -263607,Flatscreen TV,1,300,10/28/19 21:45,"61 Lincoln St, New York City, NY 10001" -263608,USB-C Charging Cable,1,11.95,10/29/19 07:46,"586 Willow St, Boston, MA 02215" -263609,Wired Headphones,1,11.99,10/03/19 14:21,"979 2nd St, Los Angeles, CA 90001" -263610,Wired Headphones,1,11.99,10/06/19 08:33,"542 Elm St, Seattle, WA 98101" -263611,USB-C Charging Cable,1,11.95,10/17/19 09:21,"508 9th St, Austin, TX 73301" -263612,27in FHD Monitor,1,149.99,10/10/19 18:34,"516 Walnut St, Los Angeles, CA 90001" -263613,Apple Airpods Headphones,1,150,10/23/19 00:38,"312 8th St, New York City, NY 10001" -263614,AAA Batteries (4-pack),1,2.99,10/19/19 12:12,"502 Willow St, Atlanta, GA 30301" -263615,Wired Headphones,1,11.99,10/14/19 12:23,"916 12th St, Seattle, WA 98101" -263615,27in 4K Gaming Monitor,1,389.99,10/14/19 12:23,"916 12th St, Seattle, WA 98101" -263616,USB-C Charging Cable,2,11.95,10/27/19 15:56,"816 Jackson St, New York City, NY 10001" -263617,20in Monitor,1,109.99,10/27/19 12:01,"772 North St, Boston, MA 02215" -263618,AAA Batteries (4-pack),2,2.99,10/13/19 09:58,"501 5th St, Seattle, WA 98101" -263619,Apple Airpods Headphones,1,150,11/01/19 01:45,"87 Sunset St, Atlanta, GA 30301" -263620,Bose SoundSport Headphones,1,99.99,10/16/19 12:43,"249 9th St, Austin, TX 73301" -263621,Wired Headphones,1,11.99,10/14/19 12:52,"147 Hickory St, Boston, MA 02215" -263622,Flatscreen TV,1,300,10/15/19 22:57,"198 Forest St, Los Angeles, CA 90001" -263623,Bose SoundSport Headphones,1,99.99,10/10/19 09:53,"800 2nd St, San Francisco, CA 94016" -263624,Lightning Charging Cable,1,14.95,10/06/19 20:34,"714 4th St, Atlanta, GA 30301" -263625,Apple Airpods Headphones,1,150,10/06/19 15:46,"28 Lake St, San Francisco, CA 94016" -263626,Bose SoundSport Headphones,1,99.99,10/17/19 12:18,"367 10th St, Austin, TX 73301" -263627,AAA Batteries (4-pack),1,2.99,10/16/19 18:58,"323 Main St, New York City, NY 10001" -263628,Bose SoundSport Headphones,1,99.99,10/07/19 20:34,"777 Lincoln St, Los Angeles, CA 90001" -263629,Lightning Charging Cable,1,14.95,10/04/19 20:18,"201 Johnson St, Los Angeles, CA 90001" -263630,27in FHD Monitor,1,149.99,10/23/19 07:28,"221 Jefferson St, San Francisco, CA 94016" -263631,34in Ultrawide Monitor,1,379.99,10/11/19 16:03,"468 Forest St, Austin, TX 73301" -263632,USB-C Charging Cable,1,11.95,10/16/19 19:30,"323 9th St, Boston, MA 02215" -263633,Wired Headphones,1,11.99,10/16/19 07:56,"852 14th St, Boston, MA 02215" -263634,27in FHD Monitor,1,149.99,10/17/19 11:41,"647 Spruce St, San Francisco, CA 94016" -263635,27in FHD Monitor,1,149.99,10/15/19 20:31,"416 Washington St, Atlanta, GA 30301" -263636,AAA Batteries (4-pack),1,2.99,10/18/19 08:14,"160 6th St, Boston, MA 02215" -263637,Macbook Pro Laptop,1,1700,10/16/19 11:23,"674 Ridge St, San Francisco, CA 94016" -263638,USB-C Charging Cable,1,11.95,10/19/19 21:59,"160 Walnut St, Seattle, WA 98101" -263639,Lightning Charging Cable,1,14.95,10/26/19 19:26,"356 Church St, Los Angeles, CA 90001" -263640,Lightning Charging Cable,1,14.95,10/09/19 16:32,"133 South St, Seattle, WA 98101" -263641,20in Monitor,1,109.99,10/01/19 22:17,"258 5th St, Dallas, TX 75001" -263642,USB-C Charging Cable,1,11.95,10/07/19 20:24,"62 7th St, Los Angeles, CA 90001" -263643,Wired Headphones,1,11.99,10/15/19 10:17,"225 Park St, Los Angeles, CA 90001" -263644,Wired Headphones,1,11.99,10/16/19 18:49,"433 Walnut St, New York City, NY 10001" -263645,AA Batteries (4-pack),1,3.84,10/13/19 09:19,"675 12th St, San Francisco, CA 94016" -263646,Apple Airpods Headphones,1,150,10/12/19 13:15,"122 Park St, Austin, TX 73301" -263647,AA Batteries (4-pack),1,3.84,10/27/19 15:54,"259 Cherry St, Portland, OR 97035" -263648,Lightning Charging Cable,1,14.95,10/11/19 16:20,"251 14th St, New York City, NY 10001" -263649,Apple Airpods Headphones,1,150,10/29/19 21:35,"186 Spruce St, New York City, NY 10001" -263650,Wired Headphones,1,11.99,10/01/19 21:45,"94 Cedar St, San Francisco, CA 94016" -263651,ThinkPad Laptop,1,999.99,10/09/19 15:14,"946 Jefferson St, Seattle, WA 98101" -263652,27in 4K Gaming Monitor,1,389.99,10/12/19 10:38,"871 Forest St, San Francisco, CA 94016" -263653,Apple Airpods Headphones,1,150,10/26/19 23:59,"270 Washington St, Los Angeles, CA 90001" -263654,Wired Headphones,1,11.99,10/19/19 16:52,"433 14th St, Austin, TX 73301" -263655,AAA Batteries (4-pack),1,2.99,10/05/19 08:41,"319 North St, Seattle, WA 98101" -263656,Apple Airpods Headphones,1,150,10/13/19 18:09,"784 Park St, Boston, MA 02215" -263657,USB-C Charging Cable,1,11.95,10/06/19 04:28,"708 Main St, San Francisco, CA 94016" -263658,AA Batteries (4-pack),1,3.84,10/07/19 21:59,"867 6th St, San Francisco, CA 94016" -263659,Apple Airpods Headphones,1,150,10/31/19 13:27,"258 14th St, Atlanta, GA 30301" -263660,Wired Headphones,1,11.99,10/21/19 10:00,"334 Elm St, New York City, NY 10001" -263661,AA Batteries (4-pack),1,3.84,10/03/19 19:12,"910 River St, San Francisco, CA 94016" -263662,ThinkPad Laptop,1,999.99,10/12/19 15:30,"376 Walnut St, New York City, NY 10001" -263663,Lightning Charging Cable,1,14.95,10/06/19 18:08,"652 1st St, San Francisco, CA 94016" -263664,Lightning Charging Cable,1,14.95,10/23/19 13:20,"843 Washington St, San Francisco, CA 94016" -263665,Wired Headphones,1,11.99,10/11/19 23:30,"210 Main St, Portland, OR 97035" -263666,34in Ultrawide Monitor,1,379.99,10/16/19 05:29,"763 Lincoln St, Atlanta, GA 30301" -263667,USB-C Charging Cable,1,11.95,10/18/19 00:15,"695 Meadow St, Boston, MA 02215" -263668,Apple Airpods Headphones,1,150,10/10/19 11:14,"47 2nd St, Boston, MA 02215" -263669,AA Batteries (4-pack),2,3.84,10/20/19 21:59,"907 1st St, San Francisco, CA 94016" -263670,AAA Batteries (4-pack),2,2.99,10/27/19 23:17,"268 Jefferson St, San Francisco, CA 94016" -263671,AAA Batteries (4-pack),1,2.99,10/01/19 18:43,"304 Cherry St, Los Angeles, CA 90001" -263672,20in Monitor,1,109.99,10/20/19 20:23,"290 5th St, New York City, NY 10001" -263673,Lightning Charging Cable,1,14.95,10/05/19 20:53,"526 11th St, Portland, OR 97035" -263674,Lightning Charging Cable,1,14.95,10/02/19 17:41,"898 South St, Seattle, WA 98101" -263675,Lightning Charging Cable,1,14.95,10/19/19 21:21,"352 5th St, Boston, MA 02215" -263676,AAA Batteries (4-pack),1,2.99,10/24/19 18:17,"553 Cherry St, Boston, MA 02215" -263676,Wired Headphones,2,11.99,10/24/19 18:17,"553 Cherry St, Boston, MA 02215" -263677,20in Monitor,1,109.99,10/11/19 16:32,"252 6th St, San Francisco, CA 94016" -263678,Lightning Charging Cable,1,14.95,10/15/19 12:18,"335 West St, San Francisco, CA 94016" -263679,Lightning Charging Cable,1,14.95,10/25/19 16:01,"751 Highland St, Dallas, TX 75001" -263680,Lightning Charging Cable,1,14.95,10/05/19 12:51,"683 Chestnut St, San Francisco, CA 94016" -263681,27in 4K Gaming Monitor,1,389.99,10/03/19 18:48,"426 1st St, San Francisco, CA 94016" -263682,Bose SoundSport Headphones,1,99.99,10/12/19 22:13,"332 Chestnut St, Los Angeles, CA 90001" -263683,USB-C Charging Cable,1,11.95,10/10/19 21:21,"614 4th St, Boston, MA 02215" -263684,Bose SoundSport Headphones,1,99.99,10/06/19 09:49,"175 Main St, Los Angeles, CA 90001" -263685,Wired Headphones,1,11.99,10/21/19 00:24,"471 Highland St, New York City, NY 10001" -263686,Wired Headphones,1,11.99,10/21/19 21:56,"504 13th St, Boston, MA 02215" -263687,AAA Batteries (4-pack),1,2.99,10/26/19 20:36,"270 Highland St, Seattle, WA 98101" -263688,27in FHD Monitor,1,149.99,10/05/19 18:27,"202 7th St, San Francisco, CA 94016" -263689,AA Batteries (4-pack),1,3.84,10/05/19 15:52,"599 Walnut St, Los Angeles, CA 90001" -263689,Bose SoundSport Headphones,1,99.99,10/05/19 15:52,"599 Walnut St, Los Angeles, CA 90001" -263690,Wired Headphones,1,11.99,10/30/19 02:04,"650 Willow St, Austin, TX 73301" -263691,iPhone,1,700,10/18/19 12:04,"320 Willow St, Atlanta, GA 30301" -263691,Apple Airpods Headphones,1,150,10/18/19 12:04,"320 Willow St, Atlanta, GA 30301" -263692,AAA Batteries (4-pack),1,2.99,10/17/19 10:04,"6 Ridge St, Portland, OR 97035" -263693,Lightning Charging Cable,1,14.95,10/09/19 13:23,"859 Dogwood St, Los Angeles, CA 90001" -263694,Apple Airpods Headphones,1,150,10/22/19 10:14,"603 Lakeview St, Seattle, WA 98101" -263695,ThinkPad Laptop,1,999.99,10/17/19 18:49,"842 Cherry St, New York City, NY 10001" -263696,Apple Airpods Headphones,1,150,10/05/19 10:41,"183 North St, San Francisco, CA 94016" -263697,AAA Batteries (4-pack),1,2.99,10/03/19 20:49,"474 Highland St, Seattle, WA 98101" -263698,Apple Airpods Headphones,1,150,10/31/19 05:34,"726 Willow St, Boston, MA 02215" -263699,Lightning Charging Cable,1,14.95,10/18/19 13:21,"473 Elm St, San Francisco, CA 94016" -263700,Bose SoundSport Headphones,1,99.99,10/08/19 12:23,"931 Washington St, Los Angeles, CA 90001" -263701,USB-C Charging Cable,1,11.95,10/30/19 17:53,"534 Jefferson St, San Francisco, CA 94016" -263702,AAA Batteries (4-pack),1,2.99,10/28/19 17:08,"122 Wilson St, San Francisco, CA 94016" -263703,AA Batteries (4-pack),1,3.84,10/12/19 13:42,"449 6th St, Seattle, WA 98101" -263704,Lightning Charging Cable,1,14.95,10/26/19 07:40,"348 West St, Seattle, WA 98101" -263705,Lightning Charging Cable,1,14.95,10/23/19 21:14,"81 West St, Boston, MA 02215" -263706,27in 4K Gaming Monitor,1,389.99,10/22/19 10:08,"439 Forest St, Atlanta, GA 30301" -263707,USB-C Charging Cable,1,11.95,10/23/19 13:02,"733 Jefferson St, New York City, NY 10001" -263708,Lightning Charging Cable,1,14.95,10/10/19 18:55,"938 Pine St, Austin, TX 73301" -263709,34in Ultrawide Monitor,1,379.99,10/31/19 12:34,"293 South St, San Francisco, CA 94016" -263710,Wired Headphones,1,11.99,10/29/19 13:14,"192 Jackson St, Austin, TX 73301" -263711,Apple Airpods Headphones,1,150,10/17/19 19:00,"18 River St, Atlanta, GA 30301" -263712,iPhone,1,700,10/06/19 15:05,"610 5th St, New York City, NY 10001" -263712,Wired Headphones,1,11.99,10/06/19 15:05,"610 5th St, New York City, NY 10001" -263713,Lightning Charging Cable,1,14.95,10/30/19 00:22,"642 Park St, San Francisco, CA 94016" -263714,Macbook Pro Laptop,1,1700,10/17/19 21:31,"410 Johnson St, Portland, ME 04101" -263715,Flatscreen TV,1,300,10/04/19 15:23,"739 Walnut St, New York City, NY 10001" -263716,USB-C Charging Cable,1,11.95,10/08/19 10:47,"760 Hickory St, Atlanta, GA 30301" -263717,Lightning Charging Cable,1,14.95,10/28/19 20:20,"520 Dogwood St, San Francisco, CA 94016" -263718,Apple Airpods Headphones,1,150,10/09/19 14:04,"969 North St, Los Angeles, CA 90001" -263719,Google Phone,1,600,10/28/19 11:44,"404 7th St, San Francisco, CA 94016" -263719,Bose SoundSport Headphones,1,99.99,10/28/19 11:44,"404 7th St, San Francisco, CA 94016" -263719,Wired Headphones,1,11.99,10/28/19 11:44,"404 7th St, San Francisco, CA 94016" -263720,AA Batteries (4-pack),1,3.84,10/18/19 15:13,"107 Lake St, New York City, NY 10001" -263721,Wired Headphones,1,11.99,10/13/19 08:21,"527 1st St, Boston, MA 02215" -263722,AA Batteries (4-pack),1,3.84,10/21/19 17:57,"388 6th St, Atlanta, GA 30301" -263723,USB-C Charging Cable,1,11.95,10/23/19 22:31,"604 River St, Dallas, TX 75001" -263724,Vareebadd Phone,1,400,10/19/19 21:42,"625 Madison St, San Francisco, CA 94016" -263724,Wired Headphones,1,11.99,10/19/19 21:42,"625 Madison St, San Francisco, CA 94016" -263725,Bose SoundSport Headphones,1,99.99,10/09/19 07:40,"712 1st St, New York City, NY 10001" -263726,USB-C Charging Cable,1,11.95,10/19/19 18:59,"693 Adams St, Atlanta, GA 30301" -263727,ThinkPad Laptop,1,999.99,10/20/19 15:49,"141 Park St, San Francisco, CA 94016" -263728,Bose SoundSport Headphones,1,99.99,10/30/19 19:18,"23 Park St, Los Angeles, CA 90001" -263729,Apple Airpods Headphones,1,150,10/19/19 18:38,"333 Dogwood St, Atlanta, GA 30301" -263730,iPhone,1,700,10/06/19 12:07,"305 Maple St, Los Angeles, CA 90001" -263731,ThinkPad Laptop,1,999.99,10/29/19 19:00,"366 Johnson St, Portland, ME 04101" -263732,ThinkPad Laptop,1,999.99,10/29/19 10:08,"20 Hickory St, Boston, MA 02215" -263733,AAA Batteries (4-pack),1,2.99,10/24/19 15:54,"979 Cherry St, New York City, NY 10001" -263734,AA Batteries (4-pack),1,3.84,10/13/19 18:16,"822 Main St, San Francisco, CA 94016" -263735,LG Dryer,1,600.0,10/11/19 23:01,"337 14th St, San Francisco, CA 94016" -263736,Apple Airpods Headphones,1,150,10/18/19 10:37,"863 4th St, Portland, OR 97035" -263737,Apple Airpods Headphones,1,150,10/06/19 09:51,"197 Adams St, Atlanta, GA 30301" -263738,ThinkPad Laptop,1,999.99,10/21/19 07:56,"390 Sunset St, San Francisco, CA 94016" -263739,AAA Batteries (4-pack),1,2.99,10/13/19 17:58,"806 North St, Atlanta, GA 30301" -263740,AA Batteries (4-pack),1,3.84,10/15/19 20:17,"210 13th St, Los Angeles, CA 90001" -263741,Apple Airpods Headphones,1,150,10/24/19 23:41,"163 Lincoln St, Boston, MA 02215" -263742,Bose SoundSport Headphones,1,99.99,10/16/19 19:20,"958 Dogwood St, Dallas, TX 75001" -263743,AA Batteries (4-pack),1,3.84,10/14/19 09:08,"471 Highland St, Seattle, WA 98101" -263744,AAA Batteries (4-pack),1,2.99,10/27/19 17:14,"123 8th St, Los Angeles, CA 90001" -263745,AA Batteries (4-pack),2,3.84,10/07/19 22:59,"10 4th St, San Francisco, CA 94016" -263746,Google Phone,1,600,10/18/19 10:27,"983 6th St, Los Angeles, CA 90001" -263747,Lightning Charging Cable,1,14.95,10/28/19 17:17,"171 Chestnut St, Atlanta, GA 30301" -263748,AAA Batteries (4-pack),1,2.99,10/28/19 19:26,"725 Adams St, San Francisco, CA 94016" -263749,Bose SoundSport Headphones,1,99.99,10/04/19 23:06,"473 South St, Los Angeles, CA 90001" -263750,Wired Headphones,1,11.99,10/10/19 10:56,"510 Ridge St, San Francisco, CA 94016" -263751,Lightning Charging Cable,1,14.95,10/29/19 08:59,"452 2nd St, San Francisco, CA 94016" -263752,USB-C Charging Cable,1,11.95,10/09/19 13:22,"752 Lake St, Atlanta, GA 30301" -263753,Apple Airpods Headphones,1,150,10/08/19 07:34,"886 North St, San Francisco, CA 94016" -263754,AAA Batteries (4-pack),2,2.99,10/20/19 11:45,"267 5th St, Austin, TX 73301" -263755,AAA Batteries (4-pack),2,2.99,10/22/19 17:14,"415 Washington St, Seattle, WA 98101" -263756,Apple Airpods Headphones,1,150,10/10/19 21:47,"832 Madison St, San Francisco, CA 94016" -263757,AAA Batteries (4-pack),1,2.99,10/29/19 20:09,"74 Washington St, San Francisco, CA 94016" -263758,Wired Headphones,1,11.99,10/26/19 19:23,"703 Hickory St, Dallas, TX 75001" -263759,Macbook Pro Laptop,1,1700,10/13/19 19:36,"656 Park St, San Francisco, CA 94016" -263760,AA Batteries (4-pack),3,3.84,10/17/19 17:26,"406 Elm St, Los Angeles, CA 90001" -263761,Lightning Charging Cable,1,14.95,10/29/19 17:50,"750 7th St, San Francisco, CA 94016" -263762,AAA Batteries (4-pack),2,2.99,10/17/19 21:59,"240 Sunset St, Boston, MA 02215" -263763,USB-C Charging Cable,1,11.95,10/26/19 17:18,"631 8th St, Atlanta, GA 30301" -263764,Bose SoundSport Headphones,1,99.99,10/17/19 08:25,"457 Madison St, Boston, MA 02215" -263765,AA Batteries (4-pack),2,3.84,10/01/19 18:32,"503 Cedar St, San Francisco, CA 94016" -263766,Lightning Charging Cable,1,14.95,10/16/19 17:22,"932 Maple St, Atlanta, GA 30301" -263767,27in FHD Monitor,1,149.99,10/07/19 21:10,"958 2nd St, Los Angeles, CA 90001" -263768,Apple Airpods Headphones,1,150,10/31/19 15:27,"277 Main St, Boston, MA 02215" -263769,Lightning Charging Cable,1,14.95,10/06/19 22:32,"604 Forest St, Austin, TX 73301" -263770,Bose SoundSport Headphones,1,99.99,10/21/19 17:31,"321 14th St, San Francisco, CA 94016" -263771,USB-C Charging Cable,1,11.95,10/17/19 20:07,"557 11th St, New York City, NY 10001" -263772,USB-C Charging Cable,1,11.95,10/26/19 14:09,"752 11th St, San Francisco, CA 94016" -263773,AAA Batteries (4-pack),1,2.99,10/24/19 10:31,"878 Hill St, Seattle, WA 98101" -263774,27in 4K Gaming Monitor,1,389.99,10/17/19 16:11,"931 Hill St, Seattle, WA 98101" -263775,USB-C Charging Cable,1,11.95,10/23/19 12:39,"163 Lake St, Boston, MA 02215" -263776,USB-C Charging Cable,1,11.95,10/27/19 10:10,"80 Main St, San Francisco, CA 94016" -263777,Bose SoundSport Headphones,1,99.99,10/29/19 08:02,"650 Madison St, Los Angeles, CA 90001" -263778,20in Monitor,1,109.99,10/11/19 07:24,"886 Center St, San Francisco, CA 94016" -263779,34in Ultrawide Monitor,1,379.99,10/12/19 12:12,"723 4th St, San Francisco, CA 94016" -263780,27in 4K Gaming Monitor,1,389.99,10/11/19 10:23,"403 Jefferson St, Los Angeles, CA 90001" -263781,AAA Batteries (4-pack),1,2.99,10/30/19 10:59,"654 12th St, Los Angeles, CA 90001" -263782,Google Phone,1,600,10/06/19 01:59,"661 Washington St, New York City, NY 10001" -263783,Bose SoundSport Headphones,1,99.99,10/02/19 00:52,"821 Johnson St, San Francisco, CA 94016" -263784,Flatscreen TV,1,300,10/22/19 09:14,"421 Cherry St, Austin, TX 73301" -263785,AAA Batteries (4-pack),4,2.99,10/24/19 14:04,"341 Spruce St, New York City, NY 10001" -263786,Lightning Charging Cable,1,14.95,10/05/19 11:51,"443 Jefferson St, San Francisco, CA 94016" -263787,27in 4K Gaming Monitor,1,389.99,10/26/19 08:14,"353 West St, New York City, NY 10001" -263788,AA Batteries (4-pack),1,3.84,10/31/19 09:27,"76 Sunset St, New York City, NY 10001" -263789,20in Monitor,1,109.99,10/04/19 17:37,"280 4th St, New York City, NY 10001" -263790,iPhone,1,700,10/05/19 18:25,"79 Ridge St, San Francisco, CA 94016" -263791,Wired Headphones,1,11.99,10/21/19 04:22,"254 Church St, Seattle, WA 98101" -263792,AAA Batteries (4-pack),3,2.99,10/26/19 22:14,"464 Church St, Los Angeles, CA 90001" -263793,Bose SoundSport Headphones,1,99.99,10/24/19 23:05,"187 Cedar St, Los Angeles, CA 90001" -263794,AAA Batteries (4-pack),1,2.99,10/08/19 19:50,"388 6th St, Atlanta, GA 30301" -263795,USB-C Charging Cable,1,11.95,10/10/19 10:20,"114 13th St, Portland, OR 97035" -263796,AA Batteries (4-pack),1,3.84,10/27/19 19:21,"946 Lake St, San Francisco, CA 94016" -263797,27in 4K Gaming Monitor,1,389.99,10/31/19 22:12,"565 Forest St, San Francisco, CA 94016" -263798,ThinkPad Laptop,1,999.99,10/28/19 12:32,"966 Dogwood St, Boston, MA 02215" -263799,Wired Headphones,1,11.99,10/04/19 22:19,"779 Washington St, Portland, OR 97035" -263800,Vareebadd Phone,1,400,10/11/19 01:44,"433 North St, New York City, NY 10001" -263800,Wired Headphones,1,11.99,10/11/19 01:44,"433 North St, New York City, NY 10001" -263801,27in FHD Monitor,1,149.99,10/23/19 11:09,"594 Johnson St, New York City, NY 10001" -263802,Macbook Pro Laptop,1,1700,10/03/19 14:33,"262 Lakeview St, San Francisco, CA 94016" -263803,AAA Batteries (4-pack),1,2.99,10/12/19 09:19,"915 Elm St, Los Angeles, CA 90001" -263804,27in 4K Gaming Monitor,1,389.99,10/03/19 09:39,"334 12th St, San Francisco, CA 94016" -263805,Google Phone,1,600,10/05/19 01:52,"261 Wilson St, San Francisco, CA 94016" -263806,20in Monitor,1,109.99,10/14/19 17:47,"133 10th St, Los Angeles, CA 90001" -263807,AAA Batteries (4-pack),1,2.99,10/27/19 17:19,"456 Chestnut St, New York City, NY 10001" -263808,Wired Headphones,2,11.99,10/19/19 12:14,"423 13th St, Atlanta, GA 30301" -263809,AA Batteries (4-pack),1,3.84,10/10/19 13:12,"487 Meadow St, New York City, NY 10001" -263810,AAA Batteries (4-pack),1,2.99,10/30/19 20:22,"537 6th St, San Francisco, CA 94016" -263811,iPhone,1,700,10/18/19 13:31,"371 14th St, San Francisco, CA 94016" -263812,Bose SoundSport Headphones,1,99.99,10/23/19 09:46,"274 Meadow St, San Francisco, CA 94016" -263813,Lightning Charging Cable,1,14.95,10/21/19 22:39,"525 Park St, Portland, OR 97035" -263814,AAA Batteries (4-pack),2,2.99,10/04/19 14:15,"29 14th St, Los Angeles, CA 90001" -263815,Apple Airpods Headphones,1,150,10/01/19 19:05,"916 Lake St, Los Angeles, CA 90001" -263816,Macbook Pro Laptop,1,1700,10/09/19 23:14,"834 5th St, New York City, NY 10001" -263817,USB-C Charging Cable,1,11.95,10/01/19 19:48,"409 Elm St, Dallas, TX 75001" -263818,20in Monitor,1,109.99,10/14/19 11:41,"680 Lincoln St, Seattle, WA 98101" -263819,Lightning Charging Cable,1,14.95,10/14/19 13:39,"290 Madison St, Los Angeles, CA 90001" -263820,AA Batteries (4-pack),1,3.84,10/17/19 07:31,"40 Maple St, San Francisco, CA 94016" -263821,Flatscreen TV,1,300,10/14/19 08:59,"810 Lake St, New York City, NY 10001" -263822,Bose SoundSport Headphones,1,99.99,10/31/19 13:17,"259 14th St, Atlanta, GA 30301" -263823,Apple Airpods Headphones,1,150,10/08/19 20:02,"311 Highland St, Seattle, WA 98101" -263824,AAA Batteries (4-pack),1,2.99,10/17/19 21:47,"18 River St, New York City, NY 10001" -263825,Bose SoundSport Headphones,1,99.99,10/12/19 10:41,"902 Forest St, Dallas, TX 75001" -263826,USB-C Charging Cable,1,11.95,10/24/19 11:19,"943 4th St, New York City, NY 10001" -263827,Lightning Charging Cable,1,14.95,10/14/19 18:12,"286 7th St, Atlanta, GA 30301" -263828,AAA Batteries (4-pack),1,2.99,10/05/19 22:23,"260 Wilson St, San Francisco, CA 94016" -263829,Wired Headphones,1,11.99,10/24/19 17:49,"162 4th St, San Francisco, CA 94016" -263830,Macbook Pro Laptop,1,1700,10/24/19 16:34,"140 Hill St, Austin, TX 73301" -263831,iPhone,1,700,10/03/19 11:41,"966 4th St, San Francisco, CA 94016" -263832,Bose SoundSport Headphones,1,99.99,10/06/19 08:31,"851 Adams St, Austin, TX 73301" -263833,34in Ultrawide Monitor,1,379.99,10/16/19 09:54,"14 Spruce St, Seattle, WA 98101" -263834,Wired Headphones,1,11.99,10/10/19 19:00,"855 Washington St, Portland, OR 97035" -263835,27in FHD Monitor,1,149.99,10/09/19 14:49,"120 Willow St, Seattle, WA 98101" -263836,ThinkPad Laptop,1,999.99,10/09/19 12:29,"827 Lincoln St, New York City, NY 10001" -263837,Bose SoundSport Headphones,1,99.99,10/18/19 03:10,"239 West St, Boston, MA 02215" -263838,Apple Airpods Headphones,1,150,10/17/19 19:40,"109 Cherry St, Boston, MA 02215" -263839,Wired Headphones,1,11.99,10/14/19 13:38,"442 Lake St, Seattle, WA 98101" -263840,USB-C Charging Cable,1,11.95,10/03/19 18:28,"794 Hickory St, Portland, OR 97035" -263841,Lightning Charging Cable,1,14.95,10/10/19 11:54,"644 7th St, New York City, NY 10001" -263842,AA Batteries (4-pack),1,3.84,10/25/19 14:48,"548 Lakeview St, Boston, MA 02215" -263843,34in Ultrawide Monitor,1,379.99,10/20/19 21:07,"900 Center St, Austin, TX 73301" -263844,USB-C Charging Cable,1,11.95,10/21/19 14:18,"520 Willow St, Seattle, WA 98101" -263845,iPhone,1,700,10/26/19 12:11,"339 Willow St, Los Angeles, CA 90001" -263846,Apple Airpods Headphones,1,150,10/23/19 15:11,"704 Spruce St, New York City, NY 10001" -263847,USB-C Charging Cable,3,11.95,10/28/19 11:19,"841 Forest St, Los Angeles, CA 90001" -263848,AA Batteries (4-pack),1,3.84,10/11/19 10:54,"654 Willow St, Seattle, WA 98101" -263849,Macbook Pro Laptop,1,1700,10/16/19 21:53,"347 Adams St, Seattle, WA 98101" -263850,Apple Airpods Headphones,1,150,10/06/19 16:56,"666 10th St, New York City, NY 10001" -263851,AA Batteries (4-pack),2,3.84,10/24/19 09:48,"738 4th St, Los Angeles, CA 90001" -263852,Lightning Charging Cable,1,14.95,10/25/19 15:46,"841 6th St, New York City, NY 10001" -263853,AAA Batteries (4-pack),2,2.99,10/14/19 18:38,"286 Forest St, Los Angeles, CA 90001" -263854,27in 4K Gaming Monitor,1,389.99,10/29/19 08:17,"472 Chestnut St, Boston, MA 02215" -263855,Apple Airpods Headphones,1,150,10/28/19 09:59,"330 10th St, San Francisco, CA 94016" -263856,ThinkPad Laptop,1,999.99,10/12/19 09:49,"568 Adams St, Los Angeles, CA 90001" -263857,Bose SoundSport Headphones,1,99.99,10/29/19 18:24,"545 Johnson St, Dallas, TX 75001" -263858,ThinkPad Laptop,1,999.99,10/24/19 18:33,"617 Jefferson St, Portland, ME 04101" -263859,AA Batteries (4-pack),1,3.84,10/08/19 20:50,"298 South St, Portland, OR 97035" -263860,Bose SoundSport Headphones,1,99.99,10/05/19 13:21,"380 Ridge St, Seattle, WA 98101" -263861,USB-C Charging Cable,1,11.95,10/24/19 18:13,"980 Center St, Seattle, WA 98101" -263862,Macbook Pro Laptop,1,1700,10/20/19 10:02,"333 6th St, New York City, NY 10001" -263863,AA Batteries (4-pack),1,3.84,10/08/19 15:01,"506 Maple St, New York City, NY 10001" -263864,Google Phone,1,600,10/13/19 11:23,"552 River St, San Francisco, CA 94016" -263865,AAA Batteries (4-pack),2,2.99,10/13/19 00:37,"885 Willow St, Los Angeles, CA 90001" -263866,AA Batteries (4-pack),1,3.84,10/30/19 09:03,"95 River St, Los Angeles, CA 90001" -263867,Flatscreen TV,1,300,10/07/19 06:35,"452 11th St, Boston, MA 02215" -263868,AAA Batteries (4-pack),2,2.99,10/05/19 14:50,"403 Highland St, New York City, NY 10001" -263869,Wired Headphones,1,11.99,10/30/19 12:07,"440 Walnut St, Los Angeles, CA 90001" -263870,Wired Headphones,1,11.99,10/22/19 11:04,"89 Ridge St, Boston, MA 02215" -263871,Flatscreen TV,1,300,10/07/19 11:11,"277 Johnson St, San Francisco, CA 94016" -263872,AA Batteries (4-pack),1,3.84,10/04/19 10:05,"428 Lakeview St, San Francisco, CA 94016" -263873,Apple Airpods Headphones,1,150,10/07/19 21:22,"292 Park St, Boston, MA 02215" -263874,AA Batteries (4-pack),1,3.84,10/09/19 20:26,"244 Cherry St, New York City, NY 10001" -263875,Lightning Charging Cable,1,14.95,10/29/19 18:37,"788 Forest St, Boston, MA 02215" -263876,AA Batteries (4-pack),5,3.84,10/02/19 10:46,"34 5th St, Los Angeles, CA 90001" -263877,Google Phone,1,600,10/18/19 13:25,"249 14th St, New York City, NY 10001" -263878,27in 4K Gaming Monitor,1,389.99,10/02/19 22:44,"265 Park St, Austin, TX 73301" -263879,Wired Headphones,1,11.99,10/09/19 15:41,"933 Johnson St, New York City, NY 10001" -263880,AA Batteries (4-pack),1,3.84,10/22/19 15:57,"443 12th St, Los Angeles, CA 90001" -263881,AA Batteries (4-pack),1,3.84,10/15/19 17:04,"199 North St, Seattle, WA 98101" -263882,Lightning Charging Cable,1,14.95,10/20/19 16:23,"152 Hickory St, Dallas, TX 75001" -263883,Lightning Charging Cable,1,14.95,10/10/19 17:51,"291 Forest St, Portland, OR 97035" -263884,Macbook Pro Laptop,1,1700,10/10/19 06:50,"350 Hill St, Boston, MA 02215" -263885,Wired Headphones,1,11.99,10/31/19 17:46,"635 Willow St, Austin, TX 73301" -263886,27in FHD Monitor,1,149.99,10/01/19 17:59,"948 12th St, San Francisco, CA 94016" -263887,Lightning Charging Cable,1,14.95,10/18/19 17:32,"75 Lakeview St, San Francisco, CA 94016" -263888,Lightning Charging Cable,1,14.95,10/31/19 15:52,"82 Center St, New York City, NY 10001" -263889,Bose SoundSport Headphones,1,99.99,10/22/19 18:20,"604 Lakeview St, Boston, MA 02215" -263890,AAA Batteries (4-pack),1,2.99,10/29/19 14:35,"173 Hill St, Dallas, TX 75001" -263891,Wired Headphones,1,11.99,10/10/19 19:53,"737 Spruce St, New York City, NY 10001" -263892,Wired Headphones,1,11.99,10/11/19 20:43,"251 Wilson St, New York City, NY 10001" -263893,Bose SoundSport Headphones,1,99.99,10/26/19 22:16,"709 12th St, Atlanta, GA 30301" -263894,iPhone,1,700,10/18/19 14:12,"415 9th St, Austin, TX 73301" -263894,Lightning Charging Cable,1,14.95,10/18/19 14:12,"415 9th St, Austin, TX 73301" -263895,AA Batteries (4-pack),1,3.84,10/30/19 20:23,"990 1st St, Boston, MA 02215" -263896,Lightning Charging Cable,1,14.95,10/01/19 15:28,"350 13th St, San Francisco, CA 94016" -263897,Bose SoundSport Headphones,1,99.99,10/04/19 18:06,"766 Walnut St, San Francisco, CA 94016" -263898,Bose SoundSport Headphones,1,99.99,10/21/19 13:10,"152 6th St, Seattle, WA 98101" -263899,AAA Batteries (4-pack),1,2.99,10/29/19 22:00,"356 Wilson St, Portland, OR 97035" -263900,Lightning Charging Cable,1,14.95,10/20/19 16:00,"537 Wilson St, Los Angeles, CA 90001" -263901,Wired Headphones,1,11.99,10/23/19 11:17,"631 2nd St, San Francisco, CA 94016" -263902,iPhone,1,700,10/03/19 12:25,"678 Cedar St, Los Angeles, CA 90001" -263903,Apple Airpods Headphones,1,150,10/10/19 12:19,"75 Lake St, Atlanta, GA 30301" -263904,AAA Batteries (4-pack),1,2.99,10/25/19 13:46,"450 Park St, New York City, NY 10001" -263904,Wired Headphones,1,11.99,10/25/19 13:46,"450 Park St, New York City, NY 10001" -263905,Bose SoundSport Headphones,1,99.99,10/05/19 18:11,"359 Park St, Seattle, WA 98101" -263906,AA Batteries (4-pack),2,3.84,10/04/19 14:59,"538 Walnut St, Seattle, WA 98101" -263907,Wired Headphones,1,11.99,10/01/19 17:31,"31 Forest St, Boston, MA 02215" -263908,34in Ultrawide Monitor,1,379.99,10/09/19 21:37,"701 Adams St, Atlanta, GA 30301" -263909,USB-C Charging Cable,1,11.95,10/12/19 06:12,"943 Center St, Seattle, WA 98101" -263910,AAA Batteries (4-pack),2,2.99,10/23/19 03:13,"182 Willow St, New York City, NY 10001" -263911,USB-C Charging Cable,1,11.95,10/20/19 08:05,"519 8th St, Dallas, TX 75001" -263912,AA Batteries (4-pack),2,3.84,10/23/19 15:23,"453 2nd St, Los Angeles, CA 90001" -263913,Wired Headphones,1,11.99,10/02/19 08:57,"780 Pine St, Boston, MA 02215" -263914,Apple Airpods Headphones,1,150,10/05/19 19:40,"509 10th St, New York City, NY 10001" -263915,AA Batteries (4-pack),1,3.84,10/15/19 21:24,"922 Adams St, New York City, NY 10001" -263916,AAA Batteries (4-pack),2,2.99,10/19/19 00:25,"657 4th St, Austin, TX 73301" -263917,AAA Batteries (4-pack),1,2.99,10/18/19 13:41,"530 14th St, New York City, NY 10001" -263918,Vareebadd Phone,1,400,10/31/19 10:17,"680 West St, San Francisco, CA 94016" -263918,USB-C Charging Cable,1,11.95,10/31/19 10:17,"680 West St, San Francisco, CA 94016" -263918,Bose SoundSport Headphones,1,99.99,10/31/19 10:17,"680 West St, San Francisco, CA 94016" -263918,Wired Headphones,1,11.99,10/31/19 10:17,"680 West St, San Francisco, CA 94016" -263919,AA Batteries (4-pack),1,3.84,10/04/19 19:59,"178 Hickory St, Portland, OR 97035" -263920,Wired Headphones,1,11.99,10/27/19 13:24,"118 Elm St, Dallas, TX 75001" -263921,AAA Batteries (4-pack),2,2.99,10/03/19 16:03,"936 Dogwood St, Boston, MA 02215" -263922,Wired Headphones,1,11.99,10/23/19 06:03,"313 Main St, Boston, MA 02215" -263923,iPhone,1,700,10/16/19 15:31,"349 Highland St, Atlanta, GA 30301" -263924,Wired Headphones,1,11.99,10/18/19 18:03,"323 Park St, San Francisco, CA 94016" -263925,Apple Airpods Headphones,1,150,10/19/19 10:41,"802 Johnson St, San Francisco, CA 94016" -263926,Bose SoundSport Headphones,1,99.99,10/22/19 18:27,"834 2nd St, Boston, MA 02215" -263927,Bose SoundSport Headphones,1,99.99,10/07/19 19:32,"888 Jackson St, Los Angeles, CA 90001" -263928,AAA Batteries (4-pack),1,2.99,10/29/19 21:22,"747 Cherry St, Austin, TX 73301" -263929,34in Ultrawide Monitor,1,379.99,10/13/19 13:43,"80 Lincoln St, Boston, MA 02215" -263930,Google Phone,1,600,10/06/19 15:51,"794 1st St, New York City, NY 10001" -263931,AAA Batteries (4-pack),1,2.99,10/07/19 10:54,"156 8th St, Austin, TX 73301" -263932,Lightning Charging Cable,1,14.95,10/21/19 16:31,"577 Hill St, Portland, ME 04101" -263933,Bose SoundSport Headphones,1,99.99,10/04/19 20:12,"405 8th St, New York City, NY 10001" -263934,Wired Headphones,1,11.99,10/30/19 20:29,"856 Pine St, New York City, NY 10001" -263935,Bose SoundSport Headphones,1,99.99,10/14/19 05:53,"911 Jackson St, San Francisco, CA 94016" -263936,USB-C Charging Cable,1,11.95,10/24/19 20:52,"947 Jefferson St, Boston, MA 02215" -263937,Wired Headphones,1,11.99,10/08/19 01:16,"141 Hill St, San Francisco, CA 94016" -263938,Flatscreen TV,1,300,10/27/19 22:01,"444 Lincoln St, Seattle, WA 98101" -263939,Apple Airpods Headphones,1,150,10/23/19 23:51,"53 Cedar St, Atlanta, GA 30301" -263940,Apple Airpods Headphones,1,150,10/13/19 13:54,"403 14th St, Boston, MA 02215" -263941,Apple Airpods Headphones,1,150,10/31/19 19:00,"544 10th St, Los Angeles, CA 90001" -263942,AAA Batteries (4-pack),3,2.99,10/17/19 14:57,"793 Willow St, Atlanta, GA 30301" -263943,AAA Batteries (4-pack),1,2.99,10/09/19 22:06,"850 Chestnut St, New York City, NY 10001" -263944,iPhone,1,700,10/18/19 13:40,"92 Maple St, Boston, MA 02215" -263945,Wired Headphones,1,11.99,10/04/19 22:27,"848 North St, San Francisco, CA 94016" -263946,AA Batteries (4-pack),1,3.84,10/27/19 18:23,"530 Jackson St, New York City, NY 10001" -263947,34in Ultrawide Monitor,1,379.99,10/31/19 12:15,"13 5th St, Boston, MA 02215" -263948,USB-C Charging Cable,1,11.95,10/20/19 20:46,"918 7th St, San Francisco, CA 94016" -263949,34in Ultrawide Monitor,1,379.99,10/22/19 18:18,"317 10th St, Atlanta, GA 30301" -263950,Wired Headphones,1,11.99,10/09/19 19:09,"427 Spruce St, Atlanta, GA 30301" -263951,USB-C Charging Cable,1,11.95,10/17/19 13:21,"264 8th St, New York City, NY 10001" -263952,Wired Headphones,1,11.99,10/26/19 11:52,"383 7th St, Los Angeles, CA 90001" -263953,USB-C Charging Cable,1,11.95,10/15/19 17:00,"313 Center St, Los Angeles, CA 90001" -263954,Apple Airpods Headphones,1,150,10/08/19 18:54,"307 Maple St, Atlanta, GA 30301" -263955,AA Batteries (4-pack),1,3.84,10/14/19 21:01,"519 Lincoln St, Seattle, WA 98101" -263956,Wired Headphones,1,11.99,10/13/19 10:50,"454 Main St, San Francisco, CA 94016" -263957,Wired Headphones,1,11.99,10/12/19 14:20,"596 7th St, Los Angeles, CA 90001" -263958,27in 4K Gaming Monitor,1,389.99,10/28/19 17:24,"112 Cherry St, Atlanta, GA 30301" -263959,AAA Batteries (4-pack),1,2.99,10/03/19 11:29,"602 North St, Seattle, WA 98101" -263960,ThinkPad Laptop,1,999.99,10/03/19 09:18,"221 10th St, San Francisco, CA 94016" -263961,Flatscreen TV,1,300,10/02/19 13:17,"885 Lakeview St, Atlanta, GA 30301" -263962,Apple Airpods Headphones,1,150,10/29/19 00:34,"733 7th St, Atlanta, GA 30301" -263963,Bose SoundSport Headphones,1,99.99,10/12/19 20:08,"765 Hill St, Los Angeles, CA 90001" -263964,AA Batteries (4-pack),1,3.84,10/19/19 14:07,"218 Johnson St, Portland, OR 97035" -263965,Wired Headphones,1,11.99,10/28/19 21:52,"749 Sunset St, San Francisco, CA 94016" -263966,Macbook Pro Laptop,1,1700,10/01/19 17:51,"550 Wilson St, New York City, NY 10001" -263967,27in FHD Monitor,1,149.99,10/08/19 16:06,"738 14th St, Portland, OR 97035" -263968,Wired Headphones,1,11.99,10/07/19 20:23,"292 Maple St, Boston, MA 02215" -263969,ThinkPad Laptop,1,999.99,10/22/19 23:26,"328 Chestnut St, Seattle, WA 98101" -263970,Lightning Charging Cable,1,14.95,10/14/19 10:12,"913 Chestnut St, Los Angeles, CA 90001" -263971,AAA Batteries (4-pack),2,2.99,10/28/19 23:03,"635 Madison St, Dallas, TX 75001" -263971,Google Phone,1,600,10/28/19 23:03,"635 Madison St, Dallas, TX 75001" -263972,Apple Airpods Headphones,1,150,10/06/19 19:47,"150 Lakeview St, San Francisco, CA 94016" -263973,AAA Batteries (4-pack),3,2.99,10/28/19 12:26,"155 South St, New York City, NY 10001" -263974,USB-C Charging Cable,1,11.95,10/04/19 14:06,"824 Meadow St, New York City, NY 10001" -263975,27in FHD Monitor,1,149.99,10/05/19 03:14,"771 Ridge St, Boston, MA 02215" -263976,USB-C Charging Cable,1,11.95,10/31/19 10:48,"19 North St, Los Angeles, CA 90001" -263977,Wired Headphones,1,11.99,10/13/19 18:33,"277 14th St, San Francisco, CA 94016" -263978,27in FHD Monitor,1,149.99,10/03/19 22:30,"165 Madison St, Boston, MA 02215" -263979,Wired Headphones,1,11.99,10/24/19 19:01,"944 Chestnut St, San Francisco, CA 94016" -263980,27in 4K Gaming Monitor,1,389.99,10/23/19 10:47,"565 Ridge St, New York City, NY 10001" -263981,AA Batteries (4-pack),1,3.84,10/15/19 22:23,"934 Highland St, Los Angeles, CA 90001" -263982,USB-C Charging Cable,1,11.95,10/06/19 21:02,"173 Lakeview St, Atlanta, GA 30301" -263983,USB-C Charging Cable,1,11.95,10/23/19 18:28,"13 Cedar St, New York City, NY 10001" -263984,AAA Batteries (4-pack),3,2.99,10/07/19 16:34,"567 Sunset St, Austin, TX 73301" -263985,Apple Airpods Headphones,1,150,10/15/19 22:04,"91 1st St, Dallas, TX 75001" -263986,Flatscreen TV,1,300,10/19/19 13:56,"668 7th St, San Francisco, CA 94016" -263987,AAA Batteries (4-pack),1,2.99,10/26/19 07:34,"320 Main St, Seattle, WA 98101" -263988,AAA Batteries (4-pack),1,2.99,10/07/19 13:59,"313 Meadow St, Dallas, TX 75001" -263989,Bose SoundSport Headphones,2,99.99,10/07/19 19:48,"237 Johnson St, Austin, TX 73301" -263990,Lightning Charging Cable,1,14.95,10/20/19 14:48,"965 8th St, New York City, NY 10001" -263991,AAA Batteries (4-pack),1,2.99,10/21/19 22:20,"506 Lake St, Boston, MA 02215" -263992,Lightning Charging Cable,2,14.95,10/02/19 22:00,"21 Cherry St, Seattle, WA 98101" -263993,LG Washing Machine,1,600.0,10/31/19 21:10,"237 North St, Seattle, WA 98101" -263994,Lightning Charging Cable,3,14.95,10/25/19 11:07,"3 Walnut St, Atlanta, GA 30301" -263995,USB-C Charging Cable,1,11.95,10/10/19 08:55,"511 Adams St, Los Angeles, CA 90001" -263996,LG Washing Machine,1,600.0,10/25/19 13:46,"547 13th St, Boston, MA 02215" -263997,USB-C Charging Cable,1,11.95,10/16/19 23:34,"600 2nd St, Austin, TX 73301" -263998,Lightning Charging Cable,1,14.95,10/01/19 20:42,"877 Elm St, Portland, ME 04101" -263999,AAA Batteries (4-pack),2,2.99,10/31/19 07:32,"19 11th St, Los Angeles, CA 90001" -264000,USB-C Charging Cable,1,11.95,10/15/19 12:49,"937 River St, New York City, NY 10001" -264001,Wired Headphones,1,11.99,10/19/19 15:48,"826 Lake St, Dallas, TX 75001" -264001,USB-C Charging Cable,1,11.95,10/19/19 15:48,"826 Lake St, Dallas, TX 75001" -264002,USB-C Charging Cable,1,11.95,10/28/19 14:48,"625 7th St, Atlanta, GA 30301" -264003,Wired Headphones,1,11.99,10/18/19 19:19,"918 5th St, New York City, NY 10001" -264004,ThinkPad Laptop,1,999.99,10/14/19 15:42,"565 Dogwood St, Los Angeles, CA 90001" -264005,AAA Batteries (4-pack),1,2.99,10/22/19 10:22,"915 Johnson St, San Francisco, CA 94016" -264006,AAA Batteries (4-pack),2,2.99,10/05/19 11:54,"487 Highland St, Portland, OR 97035" -264007,Lightning Charging Cable,1,14.95,10/09/19 19:33,"933 Sunset St, San Francisco, CA 94016" -264008,Bose SoundSport Headphones,1,99.99,10/28/19 16:17,"458 Lake St, San Francisco, CA 94016" -264009,Wired Headphones,1,11.99,10/14/19 14:11,"759 Dogwood St, Los Angeles, CA 90001" -264010,Lightning Charging Cable,1,14.95,10/13/19 20:51,"65 8th St, Seattle, WA 98101" -264011,USB-C Charging Cable,1,11.95,10/11/19 00:54,"246 Willow St, Los Angeles, CA 90001" -264012,ThinkPad Laptop,1,999.99,10/06/19 15:49,"148 1st St, San Francisco, CA 94016" -264013,AA Batteries (4-pack),1,3.84,10/20/19 07:30,"891 West St, New York City, NY 10001" -264014,27in FHD Monitor,1,149.99,10/10/19 18:02,"274 4th St, San Francisco, CA 94016" -264015,Apple Airpods Headphones,1,150,10/23/19 13:53,"243 10th St, San Francisco, CA 94016" -264016,Google Phone,1,600,10/30/19 09:46,"861 North St, New York City, NY 10001" -264017,AAA Batteries (4-pack),1,2.99,10/27/19 16:17,"465 West St, San Francisco, CA 94016" -264018,Bose SoundSport Headphones,1,99.99,10/27/19 08:28,"813 Lincoln St, San Francisco, CA 94016" -264019,Apple Airpods Headphones,1,150,10/11/19 20:55,"726 Ridge St, Boston, MA 02215" -264020,Apple Airpods Headphones,1,150,10/04/19 11:51,"939 Center St, Los Angeles, CA 90001" -264021,ThinkPad Laptop,1,999.99,10/12/19 12:16,"975 Jackson St, Seattle, WA 98101" -264022,USB-C Charging Cable,1,11.95,10/13/19 04:42,"169 Cherry St, San Francisco, CA 94016" -264023,Bose SoundSport Headphones,1,99.99,10/16/19 17:22,"410 Johnson St, Los Angeles, CA 90001" -264024,Bose SoundSport Headphones,1,99.99,10/03/19 12:15,"557 Washington St, San Francisco, CA 94016" -264025,AA Batteries (4-pack),1,3.84,10/22/19 19:58,"228 Lake St, Boston, MA 02215" -264026,AA Batteries (4-pack),1,3.84,10/01/19 17:43,"41 2nd St, Boston, MA 02215" -264027,AA Batteries (4-pack),1,3.84,10/05/19 20:23,"116 Lincoln St, Los Angeles, CA 90001" -264028,AAA Batteries (4-pack),1,2.99,10/23/19 19:15,"418 Chestnut St, San Francisco, CA 94016" -264029,Wired Headphones,1,11.99,10/25/19 15:59,"510 Jackson St, New York City, NY 10001" -264030,AAA Batteries (4-pack),1,2.99,10/16/19 20:43,"160 1st St, Austin, TX 73301" -264031,Apple Airpods Headphones,1,150,10/03/19 17:46,"136 Hill St, San Francisco, CA 94016" -264032,USB-C Charging Cable,1,11.95,10/15/19 20:35,"115 Church St, Atlanta, GA 30301" -264033,Lightning Charging Cable,1,14.95,10/15/19 14:18,"900 12th St, Seattle, WA 98101" -264034,Wired Headphones,1,11.99,10/30/19 20:04,"541 12th St, Portland, ME 04101" -264035,USB-C Charging Cable,1,11.95,10/16/19 15:51,"817 12th St, Los Angeles, CA 90001" -264036,Lightning Charging Cable,1,14.95,10/07/19 17:14,"443 Highland St, Los Angeles, CA 90001" -264037,27in 4K Gaming Monitor,1,389.99,10/15/19 15:34,"107 Pine St, Atlanta, GA 30301" -264038,Wired Headphones,1,11.99,10/01/19 05:01,"347 4th St, Los Angeles, CA 90001" -264039,AAA Batteries (4-pack),1,2.99,10/15/19 19:59,"608 West St, Atlanta, GA 30301" -264040,Bose SoundSport Headphones,1,99.99,10/07/19 18:02,"231 2nd St, Seattle, WA 98101" -264041,USB-C Charging Cable,1,11.95,10/19/19 14:37,"673 Adams St, New York City, NY 10001" -264042,AAA Batteries (4-pack),1,2.99,10/27/19 11:01,"667 Hill St, Atlanta, GA 30301" -264043,USB-C Charging Cable,2,11.95,10/31/19 15:24,"830 6th St, Los Angeles, CA 90001" -264044,Bose SoundSport Headphones,1,99.99,10/17/19 20:29,"457 Hill St, San Francisco, CA 94016" -264045,AAA Batteries (4-pack),2,2.99,10/30/19 12:13,"364 Lakeview St, San Francisco, CA 94016" -264046,USB-C Charging Cable,1,11.95,10/24/19 08:23,"269 Cedar St, Seattle, WA 98101" -264047,27in 4K Gaming Monitor,1,389.99,10/25/19 20:53,"783 West St, Portland, OR 97035" -264048,Wired Headphones,1,11.99,10/04/19 17:14,"210 13th St, New York City, NY 10001" -264049,LG Dryer,1,600.0,10/13/19 08:45,"528 River St, Austin, TX 73301" -264050,Macbook Pro Laptop,1,1700,10/28/19 07:36,"509 Adams St, Portland, OR 97035" -264051,Lightning Charging Cable,1,14.95,10/23/19 21:42,"936 12th St, Austin, TX 73301" -264052,USB-C Charging Cable,2,11.95,10/18/19 11:45,"776 Chestnut St, Boston, MA 02215" -264053,USB-C Charging Cable,1,11.95,10/14/19 22:43,"945 Jackson St, Portland, OR 97035" -264053,iPhone,1,700,10/14/19 22:43,"945 Jackson St, Portland, OR 97035" -264054,Vareebadd Phone,1,400,10/19/19 03:38,"520 10th St, San Francisco, CA 94016" -264054,Bose SoundSport Headphones,1,99.99,10/19/19 03:38,"520 10th St, San Francisco, CA 94016" -264055,Macbook Pro Laptop,1,1700,10/15/19 08:42,"102 Hickory St, San Francisco, CA 94016" -264056,USB-C Charging Cable,1,11.95,10/17/19 22:32,"556 Center St, Portland, OR 97035" -264057,LG Washing Machine,1,600.0,10/07/19 07:50,"456 8th St, Seattle, WA 98101" -264058,AAA Batteries (4-pack),2,2.99,10/19/19 11:11,"789 8th St, San Francisco, CA 94016" -264059,AAA Batteries (4-pack),1,2.99,10/28/19 19:43,"505 4th St, Seattle, WA 98101" -264060,Lightning Charging Cable,1,14.95,10/08/19 05:22,"848 Lake St, Los Angeles, CA 90001" -264061,USB-C Charging Cable,1,11.95,10/14/19 12:52,"38 7th St, Boston, MA 02215" -264061,Lightning Charging Cable,2,14.95,10/14/19 12:52,"38 7th St, Boston, MA 02215" -264062,Bose SoundSport Headphones,1,99.99,10/24/19 19:47,"854 Washington St, Los Angeles, CA 90001" -264063,Flatscreen TV,1,300,10/26/19 14:22,"709 Lake St, Los Angeles, CA 90001" -264064,USB-C Charging Cable,1,11.95,10/08/19 10:25,"856 Jefferson St, Portland, OR 97035" -264065,Wired Headphones,1,11.99,10/16/19 21:36,"687 9th St, San Francisco, CA 94016" -264066,Lightning Charging Cable,1,14.95,10/24/19 12:11,"107 Wilson St, Boston, MA 02215" -264067,AA Batteries (4-pack),1,3.84,10/02/19 13:20,"356 Maple St, Los Angeles, CA 90001" -264068,27in FHD Monitor,1,149.99,10/06/19 19:28,"142 South St, New York City, NY 10001" -264069,Lightning Charging Cable,1,14.95,10/07/19 07:45,"868 Jefferson St, Austin, TX 73301" -264070,Flatscreen TV,1,300,10/08/19 08:04,"213 South St, Boston, MA 02215" -264071,Bose SoundSport Headphones,1,99.99,10/08/19 20:35,"673 Cedar St, Los Angeles, CA 90001" -264072,Google Phone,1,600,10/15/19 19:23,"176 Lincoln St, Boston, MA 02215" -264072,Wired Headphones,1,11.99,10/15/19 19:23,"176 Lincoln St, Boston, MA 02215" -264073,USB-C Charging Cable,1,11.95,10/11/19 16:43,"256 12th St, Boston, MA 02215" -264074,Lightning Charging Cable,1,14.95,10/13/19 06:36,"644 West St, Portland, OR 97035" -264075,Wired Headphones,1,11.99,10/10/19 11:55,"943 13th St, Portland, OR 97035" -264076,AAA Batteries (4-pack),1,2.99,10/08/19 11:46,"505 1st St, Boston, MA 02215" -264077,Lightning Charging Cable,1,14.95,10/03/19 19:51,"673 Highland St, Seattle, WA 98101" -264078,AA Batteries (4-pack),1,3.84,10/23/19 12:41,"498 Madison St, Atlanta, GA 30301" -264079,27in 4K Gaming Monitor,1,389.99,10/01/19 23:18,"759 Highland St, New York City, NY 10001" -264080,20in Monitor,1,109.99,10/07/19 15:38,"96 Forest St, Los Angeles, CA 90001" -264081,iPhone,1,700,10/26/19 11:00,"162 13th St, Los Angeles, CA 90001" -264082,Lightning Charging Cable,1,14.95,10/21/19 10:05,"6 Forest St, Atlanta, GA 30301" -264083,Lightning Charging Cable,1,14.95,10/17/19 14:09,"37 Sunset St, Portland, ME 04101" -264084,27in 4K Gaming Monitor,1,389.99,10/10/19 00:35,"676 Hill St, Seattle, WA 98101" -264085,34in Ultrawide Monitor,1,379.99,10/01/19 18:19,"242 Hickory St, New York City, NY 10001" -264086,Google Phone,1,600,10/19/19 19:06,"807 Johnson St, Los Angeles, CA 90001" -264087,Wired Headphones,1,11.99,10/25/19 16:54,"233 9th St, Boston, MA 02215" -264088,Wired Headphones,1,11.99,10/15/19 10:04,"444 Church St, Boston, MA 02215" -264089,Apple Airpods Headphones,1,150,10/20/19 18:33,"602 9th St, Boston, MA 02215" -264090,Vareebadd Phone,1,400,10/02/19 21:16,"971 Washington St, Seattle, WA 98101" -264090,USB-C Charging Cable,1,11.95,10/02/19 21:16,"971 Washington St, Seattle, WA 98101" -264091,AA Batteries (4-pack),1,3.84,10/11/19 12:45,"527 2nd St, San Francisco, CA 94016" -264092,Macbook Pro Laptop,1,1700,10/11/19 08:50,"85 Cedar St, San Francisco, CA 94016" -264093,AA Batteries (4-pack),1,3.84,10/30/19 11:29,"779 Jefferson St, New York City, NY 10001" -264094,Macbook Pro Laptop,1,1700,10/01/19 17:52,"557 Johnson St, Los Angeles, CA 90001" -264095,ThinkPad Laptop,1,999.99,10/05/19 17:36,"195 Adams St, Atlanta, GA 30301" -264096,USB-C Charging Cable,1,11.95,10/17/19 17:35,"338 13th St, San Francisco, CA 94016" -264097,27in FHD Monitor,1,149.99,10/25/19 00:56,"148 Jackson St, Los Angeles, CA 90001" -264098,Lightning Charging Cable,1,14.95,10/26/19 11:08,"490 Lincoln St, Dallas, TX 75001" -264099,Vareebadd Phone,1,400,10/17/19 08:54,"217 4th St, Dallas, TX 75001" -264100,Macbook Pro Laptop,1,1700,10/14/19 21:58,"493 Maple St, Los Angeles, CA 90001" -264101,Wired Headphones,2,11.99,10/31/19 21:14,"623 River St, San Francisco, CA 94016" -264102,Apple Airpods Headphones,1,150,10/09/19 18:47,"616 Washington St, New York City, NY 10001" -264103,AA Batteries (4-pack),1,3.84,10/19/19 13:04,"682 Johnson St, San Francisco, CA 94016" -264104,Wired Headphones,1,11.99,10/22/19 13:41,"572 5th St, Portland, ME 04101" -264105,Wired Headphones,1,11.99,10/14/19 17:06,"334 West St, Austin, TX 73301" -264106,AA Batteries (4-pack),1,3.84,10/05/19 10:51,"594 Johnson St, San Francisco, CA 94016" -264107,Google Phone,1,600,10/04/19 14:25,"299 Hickory St, New York City, NY 10001" -264108,Lightning Charging Cable,1,14.95,10/04/19 07:32,"33 Lake St, Austin, TX 73301" -264109,Lightning Charging Cable,1,14.95,10/26/19 17:46,"896 Wilson St, Boston, MA 02215" -264110,Bose SoundSport Headphones,1,99.99,10/16/19 18:53,"679 Main St, Seattle, WA 98101" -264111,Lightning Charging Cable,1,14.95,10/26/19 09:38,"431 6th St, San Francisco, CA 94016" -264112,Lightning Charging Cable,1,14.95,10/14/19 23:00,"355 1st St, San Francisco, CA 94016" -264113,Bose SoundSport Headphones,1,99.99,10/28/19 17:42,"995 Cherry St, Boston, MA 02215" -264114,Vareebadd Phone,1,400,10/04/19 13:35,"595 Dogwood St, New York City, NY 10001" -264114,Bose SoundSport Headphones,1,99.99,10/04/19 13:35,"595 Dogwood St, New York City, NY 10001" -264115,27in FHD Monitor,1,149.99,10/22/19 14:27,"878 Adams St, New York City, NY 10001" -264116,USB-C Charging Cable,1,11.95,10/20/19 03:08,"456 Main St, San Francisco, CA 94016" -264117,Wired Headphones,1,11.99,10/25/19 18:14,"368 Willow St, Los Angeles, CA 90001" -264118,Lightning Charging Cable,1,14.95,10/14/19 08:45,"15 Walnut St, Los Angeles, CA 90001" -264119,Lightning Charging Cable,1,14.95,10/21/19 09:39,"919 Park St, San Francisco, CA 94016" -264120,USB-C Charging Cable,1,11.95,10/07/19 21:15,"95 Church St, Boston, MA 02215" -264121,Lightning Charging Cable,1,14.95,10/03/19 11:46,"906 North St, Los Angeles, CA 90001" -264122,Apple Airpods Headphones,1,150,10/18/19 18:14,"702 7th St, San Francisco, CA 94016" -264123,Lightning Charging Cable,1,14.95,10/29/19 09:50,"711 Willow St, Boston, MA 02215" -264124,Bose SoundSport Headphones,1,99.99,10/01/19 20:21,"99 Wilson St, San Francisco, CA 94016" -264125,AAA Batteries (4-pack),1,2.99,10/16/19 15:55,"715 Jackson St, Portland, OR 97035" -264126,Lightning Charging Cable,1,14.95,10/10/19 08:09,"42 Jefferson St, Seattle, WA 98101" -264127,AA Batteries (4-pack),2,3.84,10/28/19 18:36,"515 River St, Portland, OR 97035" -264128,Lightning Charging Cable,1,14.95,10/16/19 09:50,"562 Meadow St, New York City, NY 10001" -264129,USB-C Charging Cable,1,11.95,10/19/19 15:20,"844 Highland St, San Francisco, CA 94016" -264130,AA Batteries (4-pack),1,3.84,10/15/19 12:28,"153 Meadow St, Portland, ME 04101" -264131,Apple Airpods Headphones,1,150,10/09/19 10:48,"256 Spruce St, Dallas, TX 75001" -,,,,, -264132,AAA Batteries (4-pack),2,2.99,10/06/19 07:43,"663 Maple St, San Francisco, CA 94016" -264133,Wired Headphones,1,11.99,10/26/19 18:48,"910 Walnut St, San Francisco, CA 94016" -264134,34in Ultrawide Monitor,1,379.99,10/10/19 11:44,"979 Park St, Dallas, TX 75001" -264135,AA Batteries (4-pack),2,3.84,10/18/19 20:20,"353 Walnut St, Los Angeles, CA 90001" -264136,Macbook Pro Laptop,1,1700,10/03/19 13:32,"312 Elm St, San Francisco, CA 94016" -264137,Lightning Charging Cable,1,14.95,10/06/19 22:33,"69 Spruce St, Atlanta, GA 30301" -264138,USB-C Charging Cable,1,11.95,10/22/19 11:44,"468 Elm St, Dallas, TX 75001" -264139,AA Batteries (4-pack),2,3.84,10/26/19 11:14,"317 Hickory St, San Francisco, CA 94016" -264140,AA Batteries (4-pack),1,3.84,10/18/19 22:12,"861 Elm St, Atlanta, GA 30301" -264141,Bose SoundSport Headphones,1,99.99,10/31/19 10:56,"580 14th St, Boston, MA 02215" -264142,Apple Airpods Headphones,1,150,10/01/19 14:15,"783 11th St, San Francisco, CA 94016" -264143,AAA Batteries (4-pack),1,2.99,10/25/19 15:28,"782 4th St, Boston, MA 02215" -264144,34in Ultrawide Monitor,1,379.99,10/14/19 19:05,"815 River St, New York City, NY 10001" -264145,Lightning Charging Cable,1,14.95,10/12/19 21:22,"560 Center St, Boston, MA 02215" -264146,ThinkPad Laptop,1,999.99,10/17/19 11:10,"601 Park St, Boston, MA 02215" -264147,Lightning Charging Cable,1,14.95,10/29/19 09:20,"288 Maple St, San Francisco, CA 94016" -264148,34in Ultrawide Monitor,1,379.99,10/29/19 17:34,"869 Hickory St, Boston, MA 02215" -264149,Lightning Charging Cable,1,14.95,10/25/19 12:13,"896 Adams St, San Francisco, CA 94016" -264150,Wired Headphones,1,11.99,10/11/19 16:37,"210 4th St, Atlanta, GA 30301" -264151,Google Phone,1,600,10/04/19 16:53,"447 Forest St, San Francisco, CA 94016" -264152,Lightning Charging Cable,1,14.95,10/12/19 00:37,"196 Willow St, Dallas, TX 75001" -264153,Wired Headphones,1,11.99,10/19/19 09:16,"943 Maple St, San Francisco, CA 94016" -264154,Lightning Charging Cable,1,14.95,10/26/19 16:08,"683 Sunset St, Dallas, TX 75001" -264155,27in FHD Monitor,1,149.99,10/30/19 18:59,"230 Hickory St, Los Angeles, CA 90001" -264156,USB-C Charging Cable,1,11.95,10/15/19 19:29,"471 Wilson St, Atlanta, GA 30301" -264157,27in FHD Monitor,1,149.99,10/25/19 18:27,"505 River St, Los Angeles, CA 90001" -264158,Apple Airpods Headphones,1,150,10/30/19 18:26,"647 1st St, San Francisco, CA 94016" -264159,USB-C Charging Cable,1,11.95,10/12/19 13:42,"905 Highland St, Seattle, WA 98101" -264160,Wired Headphones,1,11.99,10/10/19 12:38,"594 6th St, San Francisco, CA 94016" -264161,AAA Batteries (4-pack),1,2.99,10/18/19 09:34,"359 10th St, Los Angeles, CA 90001" -264162,USB-C Charging Cable,1,11.95,10/14/19 23:40,"783 Johnson St, Los Angeles, CA 90001" -264163,Apple Airpods Headphones,1,150,10/25/19 08:59,"648 Madison St, Dallas, TX 75001" -264164,Wired Headphones,1,11.99,10/02/19 10:57,"282 Wilson St, Los Angeles, CA 90001" -264164,Lightning Charging Cable,1,14.95,10/02/19 10:57,"282 Wilson St, Los Angeles, CA 90001" -264165,27in FHD Monitor,1,149.99,10/26/19 08:14,"326 7th St, Austin, TX 73301" -264165,20in Monitor,1,109.99,10/26/19 08:14,"326 7th St, Austin, TX 73301" -264166,Apple Airpods Headphones,1,150,10/20/19 12:18,"734 Jackson St, San Francisco, CA 94016" -264167,USB-C Charging Cable,2,11.95,10/14/19 16:10,"504 8th St, Los Angeles, CA 90001" -264168,27in FHD Monitor,1,149.99,10/17/19 18:53,"611 11th St, Dallas, TX 75001" -,,,,, -264169,AA Batteries (4-pack),1,3.84,10/02/19 10:50,"126 4th St, San Francisco, CA 94016" -264170,Lightning Charging Cable,1,14.95,10/13/19 14:24,"448 12th St, San Francisco, CA 94016" -264171,Vareebadd Phone,1,400,10/15/19 22:11,"815 North St, Dallas, TX 75001" -264171,USB-C Charging Cable,1,11.95,10/15/19 22:11,"815 North St, Dallas, TX 75001" -264172,Apple Airpods Headphones,1,150,10/29/19 23:24,"515 Elm St, Los Angeles, CA 90001" -264173,Lightning Charging Cable,1,14.95,10/09/19 22:20,"327 4th St, San Francisco, CA 94016" -264174,27in FHD Monitor,1,149.99,10/22/19 13:11,"248 Meadow St, Dallas, TX 75001" -264175,Wired Headphones,1,11.99,10/21/19 16:08,"570 Adams St, New York City, NY 10001" -264176,AA Batteries (4-pack),2,3.84,10/31/19 17:57,"98 Madison St, Seattle, WA 98101" -264177,ThinkPad Laptop,1,999.99,10/27/19 15:30,"476 River St, San Francisco, CA 94016" -264178,Google Phone,1,600,10/18/19 17:54,"483 Church St, Dallas, TX 75001" -264179,AA Batteries (4-pack),1,3.84,10/18/19 04:14,"259 Park St, Dallas, TX 75001" -264180,27in 4K Gaming Monitor,1,389.99,10/31/19 19:51,"815 Washington St, Atlanta, GA 30301" -264181,Lightning Charging Cable,1,14.95,10/02/19 11:53,"209 5th St, Austin, TX 73301" -264182,Lightning Charging Cable,1,14.95,10/18/19 19:39,"321 5th St, Los Angeles, CA 90001" -264183,27in FHD Monitor,1,149.99,10/27/19 11:19,"247 8th St, Atlanta, GA 30301" -264184,Macbook Pro Laptop,1,1700,10/25/19 22:12,"117 2nd St, San Francisco, CA 94016" -264185,Lightning Charging Cable,1,14.95,10/12/19 22:26,"396 Jefferson St, Los Angeles, CA 90001" -264186,Apple Airpods Headphones,1,150,10/29/19 13:09,"667 Highland St, Atlanta, GA 30301" -264187,USB-C Charging Cable,1,11.95,10/30/19 13:24,"972 Lincoln St, Dallas, TX 75001" -264188,Apple Airpods Headphones,1,150,10/19/19 23:43,"74 North St, New York City, NY 10001" -264189,AA Batteries (4-pack),1,3.84,10/19/19 08:15,"54 Washington St, San Francisco, CA 94016" -264190,Wired Headphones,1,11.99,10/21/19 15:08,"780 1st St, Atlanta, GA 30301" -264191,ThinkPad Laptop,1,999.99,10/10/19 09:38,"833 Johnson St, New York City, NY 10001" -264192,iPhone,1,700,10/21/19 20:50,"637 Dogwood St, San Francisco, CA 94016" -264193,AAA Batteries (4-pack),1,2.99,10/16/19 19:23,"196 Spruce St, San Francisco, CA 94016" -264194,Lightning Charging Cable,1,14.95,10/21/19 22:08,"818 6th St, San Francisco, CA 94016" -264195,USB-C Charging Cable,1,11.95,10/13/19 00:37,"698 4th St, Los Angeles, CA 90001" -264196,Lightning Charging Cable,1,14.95,10/15/19 11:51,"321 Dogwood St, Portland, OR 97035" -264197,Wired Headphones,1,11.99,10/07/19 07:30,"788 Ridge St, Portland, OR 97035" -264198,Flatscreen TV,1,300,10/23/19 17:58,"889 5th St, Los Angeles, CA 90001" -264199,AA Batteries (4-pack),3,3.84,10/03/19 20:18,"582 5th St, San Francisco, CA 94016" -264200,iPhone,1,700,10/31/19 19:08,"314 Chestnut St, Dallas, TX 75001" -264200,Lightning Charging Cable,1,14.95,10/31/19 19:08,"314 Chestnut St, Dallas, TX 75001" -264201,AAA Batteries (4-pack),1,2.99,10/15/19 21:16,"754 Main St, Dallas, TX 75001" -264202,Apple Airpods Headphones,1,150,10/08/19 15:58,"988 Lincoln St, Los Angeles, CA 90001" -264203,AAA Batteries (4-pack),1,2.99,10/10/19 22:22,"231 5th St, Austin, TX 73301" -264204,AA Batteries (4-pack),2,3.84,10/20/19 15:32,"553 8th St, Boston, MA 02215" -264205,Wired Headphones,1,11.99,10/31/19 05:50,"95 West St, Seattle, WA 98101" -264206,Lightning Charging Cable,1,14.95,10/02/19 15:03,"416 Cedar St, Portland, OR 97035" -264206,27in FHD Monitor,1,149.99,10/02/19 15:03,"416 Cedar St, Portland, OR 97035" -264207,LG Washing Machine,1,600.0,10/25/19 15:51,"875 Pine St, Seattle, WA 98101" -264208,USB-C Charging Cable,1,11.95,10/28/19 20:04,"678 Jackson St, San Francisco, CA 94016" -264209,AA Batteries (4-pack),2,3.84,10/15/19 19:08,"721 Wilson St, Seattle, WA 98101" -264210,AA Batteries (4-pack),1,3.84,10/20/19 18:56,"355 Church St, Los Angeles, CA 90001" -264211,AAA Batteries (4-pack),2,2.99,10/15/19 15:03,"228 Wilson St, San Francisco, CA 94016" -264212,USB-C Charging Cable,2,11.95,10/23/19 21:30,"726 6th St, Boston, MA 02215" -264213,USB-C Charging Cable,1,11.95,10/24/19 00:21,"926 Forest St, New York City, NY 10001" -264214,Lightning Charging Cable,1,14.95,10/05/19 09:03,"335 Jefferson St, Boston, MA 02215" -264215,Lightning Charging Cable,1,14.95,10/12/19 23:25,"79 Sunset St, San Francisco, CA 94016" -264216,AAA Batteries (4-pack),2,2.99,10/03/19 16:56,"948 Lincoln St, Los Angeles, CA 90001" -,,,,, -264217,Flatscreen TV,1,300,10/10/19 06:22,"1 Meadow St, Boston, MA 02215" -264218,Bose SoundSport Headphones,1,99.99,10/15/19 11:35,"430 Pine St, Boston, MA 02215" -264219,Lightning Charging Cable,1,14.95,10/03/19 12:20,"197 14th St, Seattle, WA 98101" -264220,Apple Airpods Headphones,1,150,10/22/19 15:04,"612 7th St, San Francisco, CA 94016" -264221,AA Batteries (4-pack),1,3.84,10/21/19 11:11,"583 10th St, Boston, MA 02215" -264222,27in FHD Monitor,1,149.99,10/20/19 22:17,"861 Maple St, San Francisco, CA 94016" -264223,USB-C Charging Cable,1,11.95,10/02/19 22:40,"300 Jackson St, San Francisco, CA 94016" -264224,USB-C Charging Cable,1,11.95,10/20/19 12:57,"343 2nd St, San Francisco, CA 94016" -264225,Wired Headphones,1,11.99,10/06/19 12:33,"381 Forest St, Los Angeles, CA 90001" -264226,Lightning Charging Cable,1,14.95,10/22/19 15:30,"973 4th St, Boston, MA 02215" -264227,Apple Airpods Headphones,1,150,10/07/19 12:51,"769 Highland St, Boston, MA 02215" -264228,AAA Batteries (4-pack),1,2.99,10/24/19 20:24,"602 10th St, San Francisco, CA 94016" -264229,USB-C Charging Cable,2,11.95,10/21/19 15:43,"136 South St, Portland, ME 04101" -264230,USB-C Charging Cable,2,11.95,10/24/19 12:06,"136 Center St, Dallas, TX 75001" -264231,iPhone,1,700,10/25/19 22:57,"835 Washington St, San Francisco, CA 94016" -264231,Apple Airpods Headphones,1,150,10/25/19 22:57,"835 Washington St, San Francisco, CA 94016" -264232,USB-C Charging Cable,1,11.95,10/18/19 17:50,"747 Highland St, San Francisco, CA 94016" -264233,Lightning Charging Cable,1,14.95,10/14/19 09:17,"624 Ridge St, Boston, MA 02215" -264234,Wired Headphones,1,11.99,10/30/19 18:19,"579 Madison St, San Francisco, CA 94016" -264235,Lightning Charging Cable,1,14.95,10/04/19 10:24,"351 9th St, Portland, OR 97035" -264236,AAA Batteries (4-pack),1,2.99,10/14/19 12:08,"907 6th St, San Francisco, CA 94016" -264237,Apple Airpods Headphones,1,150,10/14/19 21:22,"537 Highland St, San Francisco, CA 94016" -264238,Lightning Charging Cable,1,14.95,10/16/19 20:14,"347 Park St, New York City, NY 10001" -264239,AA Batteries (4-pack),1,3.84,10/26/19 08:09,"282 Sunset St, San Francisco, CA 94016" -264240,USB-C Charging Cable,1,11.95,10/08/19 09:10,"967 West St, New York City, NY 10001" -264241,34in Ultrawide Monitor,1,379.99,10/23/19 15:16,"992 11th St, Portland, OR 97035" -264242,USB-C Charging Cable,1,11.95,10/20/19 07:51,"951 Park St, Austin, TX 73301" -264243,Apple Airpods Headphones,1,150,10/03/19 10:43,"251 Center St, San Francisco, CA 94016" -264244,AAA Batteries (4-pack),2,2.99,10/15/19 20:34,"100 12th St, New York City, NY 10001" -264245,Apple Airpods Headphones,1,150,10/01/19 22:04,"616 6th St, Seattle, WA 98101" -264246,iPhone,1,700,10/10/19 07:28,"979 Maple St, San Francisco, CA 94016" -264247,USB-C Charging Cable,1,11.95,10/21/19 15:55,"949 Maple St, Atlanta, GA 30301" -264248,AA Batteries (4-pack),1,3.84,10/25/19 21:57,"255 River St, Los Angeles, CA 90001" -264249,AA Batteries (4-pack),1,3.84,10/15/19 15:57,"659 Main St, Portland, OR 97035" -264250,Bose SoundSport Headphones,1,99.99,10/30/19 20:55,"896 Lincoln St, Seattle, WA 98101" -264251,AA Batteries (4-pack),3,3.84,10/07/19 17:43,"800 Church St, San Francisco, CA 94016" -264252,AAA Batteries (4-pack),1,2.99,10/14/19 09:29,"540 Highland St, New York City, NY 10001" -264253,Flatscreen TV,1,300,10/28/19 13:49,"635 Lake St, San Francisco, CA 94016" -264254,iPhone,1,700,10/20/19 14:28,"774 Jefferson St, Atlanta, GA 30301" -264254,Flatscreen TV,1,300,10/20/19 14:28,"774 Jefferson St, Atlanta, GA 30301" -264255,Apple Airpods Headphones,1,150,10/21/19 12:07,"43 8th St, Boston, MA 02215" -264256,Bose SoundSport Headphones,1,99.99,10/14/19 17:13,"514 West St, Los Angeles, CA 90001" -264257,USB-C Charging Cable,1,11.95,10/10/19 21:07,"57 Cedar St, Boston, MA 02215" -264258,ThinkPad Laptop,1,999.99,10/22/19 15:16,"142 Hill St, San Francisco, CA 94016" -264259,Lightning Charging Cable,1,14.95,10/02/19 16:03,"343 Madison St, Boston, MA 02215" -264260,27in 4K Gaming Monitor,1,389.99,10/04/19 15:56,"13 Meadow St, Atlanta, GA 30301" -264261,USB-C Charging Cable,1,11.95,10/18/19 19:01,"678 Johnson St, New York City, NY 10001" -264262,34in Ultrawide Monitor,1,379.99,10/01/19 19:27,"637 7th St, Atlanta, GA 30301" -264263,USB-C Charging Cable,1,11.95,10/16/19 19:18,"899 Lincoln St, Dallas, TX 75001" -264264,27in FHD Monitor,1,149.99,10/31/19 12:50,"694 12th St, Los Angeles, CA 90001" -264265,Wired Headphones,1,11.99,10/14/19 15:05,"572 5th St, Los Angeles, CA 90001" -264266,Lightning Charging Cable,1,14.95,10/06/19 18:52,"316 Washington St, New York City, NY 10001" -264267,Lightning Charging Cable,1,14.95,10/04/19 11:18,"729 Hickory St, Boston, MA 02215" -264268,Flatscreen TV,1,300,10/26/19 08:26,"707 Adams St, Los Angeles, CA 90001" -264269,AA Batteries (4-pack),2,3.84,10/13/19 18:13,"475 South St, Seattle, WA 98101" -264270,AA Batteries (4-pack),1,3.84,10/12/19 13:15,"387 Center St, San Francisco, CA 94016" -264271,Apple Airpods Headphones,1,150,10/07/19 07:25,"767 Sunset St, Dallas, TX 75001" -264272,AAA Batteries (4-pack),2,2.99,10/23/19 13:47,"8 9th St, Dallas, TX 75001" -264273,USB-C Charging Cable,1,11.95,10/19/19 07:15,"120 1st St, San Francisco, CA 94016" -264274,Bose SoundSport Headphones,1,99.99,10/27/19 16:41,"62 5th St, Dallas, TX 75001" -264275,20in Monitor,1,109.99,10/11/19 12:21,"537 11th St, San Francisco, CA 94016" -264275,Bose SoundSport Headphones,1,99.99,10/11/19 12:21,"537 11th St, San Francisco, CA 94016" -264276,Apple Airpods Headphones,1,150,10/12/19 17:01,"606 Maple St, San Francisco, CA 94016" -264277,AA Batteries (4-pack),1,3.84,10/07/19 08:53,"356 Main St, Dallas, TX 75001" -264278,AA Batteries (4-pack),1,3.84,10/02/19 15:21,"476 Ridge St, San Francisco, CA 94016" -264279,34in Ultrawide Monitor,1,379.99,10/18/19 23:38,"758 Chestnut St, Los Angeles, CA 90001" -264280,AAA Batteries (4-pack),2,2.99,10/08/19 12:40,"240 8th St, Boston, MA 02215" -264281,Lightning Charging Cable,1,14.95,10/19/19 13:32,"31 Hickory St, Boston, MA 02215" -264282,iPhone,1,700,10/07/19 13:26,"88 South St, Austin, TX 73301" -264283,20in Monitor,1,109.99,10/25/19 16:12,"186 Jefferson St, Los Angeles, CA 90001" -264284,34in Ultrawide Monitor,1,379.99,10/25/19 08:08,"938 1st St, Portland, ME 04101" -264285,USB-C Charging Cable,1,11.95,10/03/19 12:45,"17 Hill St, Atlanta, GA 30301" -264286,AA Batteries (4-pack),1,3.84,10/13/19 22:50,"921 Forest St, Los Angeles, CA 90001" -264287,Apple Airpods Headphones,1,150,10/02/19 22:29,"331 Main St, Austin, TX 73301" -264288,Wired Headphones,1,11.99,10/20/19 01:04,"847 Park St, San Francisco, CA 94016" -264289,USB-C Charging Cable,1,11.95,10/24/19 19:21,"408 7th St, New York City, NY 10001" -264290,Bose SoundSport Headphones,1,99.99,10/03/19 14:37,"886 North St, San Francisco, CA 94016" -264291,Flatscreen TV,1,300,10/17/19 08:38,"341 11th St, Los Angeles, CA 90001" -264292,Wired Headphones,1,11.99,10/21/19 17:56,"766 Maple St, San Francisco, CA 94016" -264293,Google Phone,1,600,10/24/19 11:27,"749 11th St, Boston, MA 02215" -264294,Apple Airpods Headphones,1,150,10/28/19 09:21,"455 North St, Seattle, WA 98101" -264295,Lightning Charging Cable,1,14.95,10/30/19 11:52,"29 Pine St, Los Angeles, CA 90001" -264296,iPhone,1,700,10/18/19 22:43,"825 Church St, San Francisco, CA 94016" -264297,Apple Airpods Headphones,1,150,10/03/19 16:34,"222 Johnson St, New York City, NY 10001" -264298,LG Washing Machine,1,600.0,10/08/19 15:29,"850 10th St, Seattle, WA 98101" -264299,USB-C Charging Cable,1,11.95,10/26/19 23:39,"602 South St, New York City, NY 10001" -264300,Apple Airpods Headphones,1,150,10/05/19 12:52,"415 Madison St, Los Angeles, CA 90001" -264301,AA Batteries (4-pack),1,3.84,10/09/19 13:51,"962 Lakeview St, New York City, NY 10001" -264301,Google Phone,1,600,10/09/19 13:51,"962 Lakeview St, New York City, NY 10001" -264302,20in Monitor,1,109.99,10/10/19 15:52,"958 Lincoln St, New York City, NY 10001" -264303,Wired Headphones,1,11.99,10/02/19 17:40,"934 12th St, Los Angeles, CA 90001" -264304,AA Batteries (4-pack),1,3.84,10/05/19 08:31,"637 Park St, Los Angeles, CA 90001" -264305,Lightning Charging Cable,1,14.95,10/19/19 06:11,"354 Maple St, San Francisco, CA 94016" -264306,Lightning Charging Cable,1,14.95,10/14/19 16:14,"317 Park St, San Francisco, CA 94016" -264307,34in Ultrawide Monitor,1,379.99,10/24/19 19:49,"234 Hill St, New York City, NY 10001" -264308,27in 4K Gaming Monitor,1,389.99,10/08/19 16:04,"988 10th St, Seattle, WA 98101" -264309,Apple Airpods Headphones,1,150,10/12/19 17:35,"799 14th St, Los Angeles, CA 90001" -264310,Apple Airpods Headphones,1,150,10/31/19 22:31,"595 Madison St, Seattle, WA 98101" -264311,Apple Airpods Headphones,1,150,10/05/19 15:11,"661 4th St, San Francisco, CA 94016" -264312,Wired Headphones,1,11.99,10/20/19 20:51,"344 5th St, Boston, MA 02215" -264312,Macbook Pro Laptop,1,1700,10/20/19 20:51,"344 5th St, Boston, MA 02215" -264313,20in Monitor,1,109.99,10/18/19 20:01,"345 Highland St, New York City, NY 10001" -264314,AA Batteries (4-pack),1,3.84,10/03/19 15:30,"700 Ridge St, Atlanta, GA 30301" -264315,AA Batteries (4-pack),1,3.84,10/28/19 11:30,"954 Hickory St, New York City, NY 10001" -264316,AAA Batteries (4-pack),2,2.99,10/23/19 16:54,"829 12th St, Boston, MA 02215" -264317,27in 4K Gaming Monitor,1,389.99,10/10/19 12:28,"647 10th St, Atlanta, GA 30301" -264318,USB-C Charging Cable,1,11.95,10/17/19 11:21,"719 Church St, Portland, ME 04101" -264319,Wired Headphones,1,11.99,10/21/19 21:37,"498 Center St, San Francisco, CA 94016" -264320,34in Ultrawide Monitor,1,379.99,10/17/19 14:24,"464 West St, New York City, NY 10001" -264321,Vareebadd Phone,1,400,10/31/19 23:13,"436 Cedar St, New York City, NY 10001" -264322,Bose SoundSport Headphones,1,99.99,10/19/19 11:49,"595 Wilson St, Seattle, WA 98101" -264323,Apple Airpods Headphones,1,150,10/11/19 12:58,"844 Pine St, Los Angeles, CA 90001" -264324,Apple Airpods Headphones,1,150,10/19/19 15:08,"834 6th St, Atlanta, GA 30301" -264325,Wired Headphones,2,11.99,10/17/19 19:26,"416 2nd St, New York City, NY 10001" -264326,Apple Airpods Headphones,1,150,10/22/19 19:32,"456 9th St, San Francisco, CA 94016" -264327,Bose SoundSport Headphones,1,99.99,10/07/19 19:13,"142 Park St, San Francisco, CA 94016" -264328,Bose SoundSport Headphones,1,99.99,10/20/19 12:47,"113 Lake St, Seattle, WA 98101" -264329,LG Washing Machine,1,600.0,10/13/19 20:09,"34 13th St, San Francisco, CA 94016" -264330,Macbook Pro Laptop,1,1700,10/07/19 10:44,"597 Lincoln St, Atlanta, GA 30301" -264331,AA Batteries (4-pack),1,3.84,10/12/19 21:06,"955 Madison St, New York City, NY 10001" -264332,27in FHD Monitor,1,149.99,10/24/19 11:35,"24 4th St, Atlanta, GA 30301" -264333,34in Ultrawide Monitor,1,379.99,10/23/19 15:12,"576 Lincoln St, Austin, TX 73301" -264334,USB-C Charging Cable,1,11.95,10/21/19 17:22,"381 4th St, Atlanta, GA 30301" -264335,Apple Airpods Headphones,1,150,10/31/19 03:58,"256 Willow St, Portland, OR 97035" -264336,USB-C Charging Cable,2,11.95,10/11/19 19:26,"527 Hickory St, Los Angeles, CA 90001" -264337,USB-C Charging Cable,1,11.95,10/31/19 18:32,"260 Johnson St, Portland, OR 97035" -264338,Wired Headphones,1,11.99,10/30/19 13:14,"764 Lakeview St, San Francisco, CA 94016" -264339,Wired Headphones,1,11.99,10/29/19 21:38,"169 Wilson St, Dallas, TX 75001" -264340,Lightning Charging Cable,1,14.95,10/28/19 20:18,"702 Lincoln St, Boston, MA 02215" -264341,Apple Airpods Headphones,1,150,10/29/19 16:48,"997 Center St, San Francisco, CA 94016" -264342,Lightning Charging Cable,1,14.95,10/28/19 20:45,"142 Johnson St, San Francisco, CA 94016" -264343,iPhone,1,700,10/18/19 10:57,"806 Church St, Atlanta, GA 30301" -264344,AA Batteries (4-pack),1,3.84,10/15/19 21:21,"310 Jefferson St, Los Angeles, CA 90001" -264345,Wired Headphones,1,11.99,10/15/19 21:46,"817 Madison St, Dallas, TX 75001" -264346,AAA Batteries (4-pack),1,2.99,10/11/19 23:25,"431 Sunset St, Los Angeles, CA 90001" -264347,Apple Airpods Headphones,1,150,10/02/19 19:24,"523 Lincoln St, New York City, NY 10001" -264348,Bose SoundSport Headphones,1,99.99,10/21/19 16:39,"278 Sunset St, Boston, MA 02215" -264349,AAA Batteries (4-pack),1,2.99,10/14/19 21:52,"47 Forest St, San Francisco, CA 94016" -264350,Apple Airpods Headphones,1,150,10/28/19 19:14,"9 2nd St, San Francisco, CA 94016" -264351,27in FHD Monitor,1,149.99,10/31/19 22:08,"689 6th St, Austin, TX 73301" -264351,27in FHD Monitor,1,149.99,10/31/19 22:08,"689 6th St, Austin, TX 73301" -264352,AA Batteries (4-pack),1,3.84,10/09/19 14:47,"520 2nd St, New York City, NY 10001" -264353,Wired Headphones,1,11.99,10/23/19 16:44,"448 Church St, Atlanta, GA 30301" -264354,AA Batteries (4-pack),1,3.84,10/09/19 13:58,"757 Chestnut St, New York City, NY 10001" -264355,Vareebadd Phone,1,400,10/09/19 19:16,"640 Church St, Seattle, WA 98101" -264356,AA Batteries (4-pack),1,3.84,10/04/19 17:45,"300 9th St, Atlanta, GA 30301" -264357,Lightning Charging Cable,1,14.95,10/22/19 22:20,"235 Hickory St, New York City, NY 10001" -264358,AA Batteries (4-pack),1,3.84,10/03/19 20:22,"529 Meadow St, New York City, NY 10001" -264359,iPhone,1,700,10/05/19 14:04,"261 West St, San Francisco, CA 94016" -264360,Macbook Pro Laptop,1,1700,10/28/19 11:13,"135 Center St, Los Angeles, CA 90001" -264361,USB-C Charging Cable,1,11.95,10/22/19 04:43,"870 West St, Boston, MA 02215" -264362,AA Batteries (4-pack),2,3.84,10/18/19 21:36,"58 10th St, Austin, TX 73301" -264363,AAA Batteries (4-pack),1,2.99,10/06/19 11:49,"13 14th St, Atlanta, GA 30301" -264364,ThinkPad Laptop,1,999.99,10/11/19 08:03,"198 Cedar St, Los Angeles, CA 90001" -264365,AAA Batteries (4-pack),2,2.99,10/23/19 22:07,"746 1st St, San Francisco, CA 94016" -264366,Lightning Charging Cable,1,14.95,10/07/19 23:27,"285 Hill St, Atlanta, GA 30301" -264367,Lightning Charging Cable,1,14.95,10/23/19 20:49,"78 Sunset St, Seattle, WA 98101" -264368,Bose SoundSport Headphones,1,99.99,10/08/19 11:05,"906 8th St, Boston, MA 02215" -264369,ThinkPad Laptop,1,999.99,10/19/19 22:52,"674 7th St, Seattle, WA 98101" -264370,27in FHD Monitor,1,149.99,10/06/19 15:04,"880 14th St, Atlanta, GA 30301" -264371,AAA Batteries (4-pack),1,2.99,10/03/19 23:31,"989 14th St, Los Angeles, CA 90001" -264372,AA Batteries (4-pack),1,3.84,10/01/19 13:54,"60 7th St, San Francisco, CA 94016" -264373,Lightning Charging Cable,1,14.95,10/13/19 10:46,"621 Willow St, San Francisco, CA 94016" -264374,Wired Headphones,1,11.99,10/25/19 14:28,"789 Spruce St, Portland, OR 97035" -264375,Lightning Charging Cable,1,14.95,10/08/19 16:04,"652 1st St, San Francisco, CA 94016" -264376,USB-C Charging Cable,1,11.95,10/18/19 15:32,"94 Ridge St, San Francisco, CA 94016" -264377,AAA Batteries (4-pack),1,2.99,10/07/19 09:26,"298 Hickory St, New York City, NY 10001" -264378,Wired Headphones,1,11.99,10/29/19 14:01,"604 Meadow St, Boston, MA 02215" -264379,AAA Batteries (4-pack),1,2.99,10/04/19 08:13,"693 Pine St, New York City, NY 10001" -264380,USB-C Charging Cable,1,11.95,10/22/19 18:55,"733 10th St, Portland, OR 97035" -264381,ThinkPad Laptop,1,999.99,10/07/19 05:41,"224 5th St, Portland, OR 97035" -264382,27in FHD Monitor,1,149.99,10/22/19 03:40,"593 13th St, Boston, MA 02215" -264383,AAA Batteries (4-pack),2,2.99,10/01/19 20:29,"904 Madison St, New York City, NY 10001" -264384,Wired Headphones,2,11.99,10/03/19 11:04,"579 Hill St, Portland, ME 04101" -264385,27in FHD Monitor,1,149.99,10/20/19 19:30,"789 Park St, New York City, NY 10001" -264386,Wired Headphones,1,11.99,10/16/19 12:21,"387 Park St, Dallas, TX 75001" -264387,AA Batteries (4-pack),1,3.84,10/04/19 17:55,"76 Madison St, San Francisco, CA 94016" -264388,Apple Airpods Headphones,1,150,10/25/19 09:35,"277 Willow St, Austin, TX 73301" -264389,Flatscreen TV,1,300,10/12/19 15:03,"535 Hickory St, Seattle, WA 98101" -264390,AAA Batteries (4-pack),1,2.99,10/30/19 10:02,"662 Adams St, San Francisco, CA 94016" -264391,Wired Headphones,1,11.99,10/21/19 17:41,"997 Jackson St, Los Angeles, CA 90001" -264392,AAA Batteries (4-pack),1,2.99,10/01/19 15:25,"326 Jefferson St, Portland, OR 97035" -264393,AAA Batteries (4-pack),1,2.99,10/29/19 10:05,"30 Madison St, Los Angeles, CA 90001" -264394,20in Monitor,1,109.99,10/17/19 16:16,"837 Center St, Boston, MA 02215" -264395,USB-C Charging Cable,1,11.95,10/21/19 17:08,"917 Park St, Los Angeles, CA 90001" -264396,USB-C Charging Cable,1,11.95,10/17/19 15:12,"78 Willow St, New York City, NY 10001" -264397,Wired Headphones,1,11.99,10/19/19 16:03,"391 Ridge St, Atlanta, GA 30301" -264398,Lightning Charging Cable,2,14.95,10/26/19 08:56,"658 Cherry St, Atlanta, GA 30301" -264399,Wired Headphones,1,11.99,10/27/19 11:46,"173 Main St, San Francisco, CA 94016" -264400,AAA Batteries (4-pack),1,2.99,10/24/19 09:55,"764 Jackson St, Boston, MA 02215" -264401,AAA Batteries (4-pack),2,2.99,10/12/19 09:51,"703 Hill St, Los Angeles, CA 90001" -264402,AA Batteries (4-pack),1,3.84,10/24/19 14:50,"548 Meadow St, San Francisco, CA 94016" -264403,Apple Airpods Headphones,1,150,10/21/19 18:13,"67 10th St, Austin, TX 73301" -264404,AA Batteries (4-pack),2,3.84,10/16/19 11:23,"543 Jefferson St, New York City, NY 10001" -264405,34in Ultrawide Monitor,1,379.99,10/17/19 12:03,"516 Wilson St, New York City, NY 10001" -264406,ThinkPad Laptop,1,999.99,10/15/19 12:52,"66 12th St, Los Angeles, CA 90001" -264407,USB-C Charging Cable,1,11.95,11/01/19 00:34,"455 Walnut St, Portland, OR 97035" -264408,USB-C Charging Cable,1,11.95,10/05/19 14:03,"807 Highland St, Portland, OR 97035" -264409,27in 4K Gaming Monitor,1,389.99,10/02/19 19:46,"850 2nd St, San Francisco, CA 94016" -264410,Vareebadd Phone,1,400,10/15/19 14:48,"88 Cherry St, San Francisco, CA 94016" -264411,Wired Headphones,1,11.99,10/17/19 17:45,"667 River St, Austin, TX 73301" -264412,AA Batteries (4-pack),1,3.84,10/22/19 22:34,"912 Hickory St, San Francisco, CA 94016" -264413,Wired Headphones,1,11.99,10/29/19 13:29,"957 Lincoln St, San Francisco, CA 94016" -264414,AAA Batteries (4-pack),3,2.99,10/09/19 22:27,"883 Adams St, Atlanta, GA 30301" -264415,Apple Airpods Headphones,1,150,10/19/19 18:17,"210 2nd St, New York City, NY 10001" -264416,Google Phone,1,600,10/26/19 18:42,"361 Ridge St, San Francisco, CA 94016" -264417,AAA Batteries (4-pack),1,2.99,10/19/19 07:54,"273 Walnut St, Austin, TX 73301" -264418,Google Phone,1,600,10/12/19 11:54,"390 Ridge St, New York City, NY 10001" -264419,AA Batteries (4-pack),1,3.84,10/18/19 11:07,"964 12th St, Seattle, WA 98101" -264420,Lightning Charging Cable,1,14.95,10/18/19 15:06,"889 Sunset St, Seattle, WA 98101" -264421,34in Ultrawide Monitor,1,379.99,10/29/19 23:59,"344 Church St, Boston, MA 02215" -264422,AA Batteries (4-pack),3,3.84,10/02/19 23:07,"103 Lakeview St, Seattle, WA 98101" -264423,AAA Batteries (4-pack),1,2.99,10/31/19 18:43,"763 Main St, New York City, NY 10001" -264424,AA Batteries (4-pack),1,3.84,10/16/19 15:01,"758 14th St, San Francisco, CA 94016" -264425,AAA Batteries (4-pack),2,2.99,10/22/19 10:43,"134 14th St, Boston, MA 02215" -264426,AAA Batteries (4-pack),2,2.99,10/07/19 13:47,"780 11th St, Los Angeles, CA 90001" -264427,AAA Batteries (4-pack),1,2.99,10/29/19 21:23,"129 12th St, Portland, OR 97035" -264428,AA Batteries (4-pack),1,3.84,10/15/19 11:58,"469 Pine St, Los Angeles, CA 90001" -264429,Lightning Charging Cable,1,14.95,10/09/19 11:56,"425 5th St, San Francisco, CA 94016" -264430,AA Batteries (4-pack),1,3.84,10/02/19 17:36,"621 5th St, Los Angeles, CA 90001" -264431,Apple Airpods Headphones,1,150,10/01/19 19:25,"536 North St, New York City, NY 10001" -264432,USB-C Charging Cable,1,11.95,10/23/19 09:58,"807 River St, San Francisco, CA 94016" -264433,AA Batteries (4-pack),2,3.84,10/29/19 23:41,"652 8th St, San Francisco, CA 94016" -264434,USB-C Charging Cable,1,11.95,10/28/19 17:38,"401 Cedar St, Los Angeles, CA 90001" -264435,AAA Batteries (4-pack),1,2.99,10/23/19 19:10,"726 Highland St, Atlanta, GA 30301" -264436,Lightning Charging Cable,1,14.95,10/19/19 19:50,"87 Lake St, San Francisco, CA 94016" -264437,Flatscreen TV,1,300,10/30/19 14:51,"671 Wilson St, San Francisco, CA 94016" -264438,Wired Headphones,1,11.99,10/17/19 21:19,"122 6th St, Los Angeles, CA 90001" -264439,Lightning Charging Cable,1,14.95,10/21/19 12:55,"873 Pine St, San Francisco, CA 94016" -264440,ThinkPad Laptop,1,999.99,10/10/19 22:25,"78 Lakeview St, Los Angeles, CA 90001" -264441,Wired Headphones,1,11.99,10/19/19 14:01,"683 4th St, Portland, OR 97035" -264442,Vareebadd Phone,1,400,10/22/19 16:45,"992 6th St, Austin, TX 73301" -264443,Wired Headphones,1,11.99,10/25/19 14:32,"843 9th St, San Francisco, CA 94016" -264444,27in 4K Gaming Monitor,1,389.99,10/24/19 16:44,"955 7th St, San Francisco, CA 94016" -264445,27in 4K Gaming Monitor,1,389.99,10/14/19 12:20,"654 Walnut St, Dallas, TX 75001" -264445,AAA Batteries (4-pack),2,2.99,10/14/19 12:20,"654 Walnut St, Dallas, TX 75001" -264446,AAA Batteries (4-pack),2,2.99,10/06/19 19:40,"294 Center St, Austin, TX 73301" -264447,ThinkPad Laptop,1,999.99,10/03/19 17:16,"967 12th St, Los Angeles, CA 90001" -264448,AA Batteries (4-pack),1,3.84,10/23/19 14:05,"106 Dogwood St, New York City, NY 10001" -264449,Lightning Charging Cable,1,14.95,10/27/19 18:50,"279 Meadow St, Boston, MA 02215" -264450,AAA Batteries (4-pack),4,2.99,10/19/19 17:55,"578 Maple St, Los Angeles, CA 90001" -264451,Apple Airpods Headphones,1,150,10/26/19 12:08,"311 Sunset St, Atlanta, GA 30301" -264452,AA Batteries (4-pack),2,3.84,10/24/19 13:05,"744 13th St, Los Angeles, CA 90001" -264453,USB-C Charging Cable,1,11.95,10/17/19 14:24,"9 Walnut St, New York City, NY 10001" -264453,iPhone,1,700,10/17/19 14:24,"9 Walnut St, New York City, NY 10001" -264454,Macbook Pro Laptop,1,1700,10/24/19 16:22,"49 Highland St, Los Angeles, CA 90001" -264455,Lightning Charging Cable,1,14.95,10/18/19 13:38,"951 Forest St, Boston, MA 02215" -264456,AA Batteries (4-pack),1,3.84,10/22/19 19:45,"31 Wilson St, Atlanta, GA 30301" -264457,Google Phone,1,600,10/26/19 17:22,"853 6th St, Austin, TX 73301" -264457,Bose SoundSport Headphones,1,99.99,10/26/19 17:22,"853 6th St, Austin, TX 73301" -264458,iPhone,1,700,10/22/19 14:40,"816 2nd St, San Francisco, CA 94016" -264459,Lightning Charging Cable,1,14.95,10/25/19 19:41,"456 9th St, Los Angeles, CA 90001" -264460,Bose SoundSport Headphones,1,99.99,10/04/19 11:44,"353 10th St, Austin, TX 73301" -264461,Apple Airpods Headphones,1,150,10/14/19 13:44,"323 Hill St, Los Angeles, CA 90001" -264462,ThinkPad Laptop,1,999.99,10/01/19 15:50,"271 Chestnut St, Los Angeles, CA 90001" -264463,Bose SoundSport Headphones,1,99.99,10/04/19 09:31,"362 North St, Portland, OR 97035" -264464,Lightning Charging Cable,1,14.95,10/15/19 17:10,"39 Church St, San Francisco, CA 94016" -264465,34in Ultrawide Monitor,1,379.99,10/20/19 16:28,"949 Adams St, Los Angeles, CA 90001" -264466,27in 4K Gaming Monitor,1,389.99,10/11/19 23:48,"237 13th St, Los Angeles, CA 90001" -264467,AA Batteries (4-pack),1,3.84,10/10/19 09:57,"662 Lake St, Dallas, TX 75001" -264468,ThinkPad Laptop,1,999.99,10/13/19 19:01,"10 7th St, Portland, ME 04101" -264469,USB-C Charging Cable,1,11.95,10/20/19 09:21,"439 Madison St, Boston, MA 02215" -264470,USB-C Charging Cable,1,11.95,10/15/19 07:02,"701 Forest St, San Francisco, CA 94016" -264471,34in Ultrawide Monitor,1,379.99,10/02/19 23:04,"400 Hill St, San Francisco, CA 94016" -264472,USB-C Charging Cable,1,11.95,10/07/19 21:03,"639 River St, Los Angeles, CA 90001" -264473,34in Ultrawide Monitor,1,379.99,10/25/19 13:05,"493 1st St, Boston, MA 02215" -264474,Lightning Charging Cable,1,14.95,10/17/19 15:16,"84 9th St, Los Angeles, CA 90001" -264475,Wired Headphones,1,11.99,10/25/19 14:33,"505 Willow St, Los Angeles, CA 90001" -264476,Wired Headphones,1,11.99,10/30/19 01:14,"642 Highland St, Austin, TX 73301" -264477,34in Ultrawide Monitor,1,379.99,10/09/19 21:50,"968 9th St, San Francisco, CA 94016" -264478,Lightning Charging Cable,1,14.95,10/10/19 16:05,"451 13th St, Boston, MA 02215" -264479,AAA Batteries (4-pack),1,2.99,10/28/19 23:13,"16 Lakeview St, Boston, MA 02215" -264480,27in 4K Gaming Monitor,1,389.99,10/24/19 12:51,"616 Jefferson St, Seattle, WA 98101" -264481,AAA Batteries (4-pack),1,2.99,10/08/19 21:20,"101 Spruce St, San Francisco, CA 94016" -264482,USB-C Charging Cable,1,11.95,10/12/19 04:51,"755 Cedar St, New York City, NY 10001" -264483,LG Dryer,1,600.0,10/26/19 14:15,"740 Ridge St, Los Angeles, CA 90001" -264484,Apple Airpods Headphones,1,150,10/16/19 23:47,"38 4th St, New York City, NY 10001" -264485,AAA Batteries (4-pack),1,2.99,10/22/19 14:57,"99 12th St, San Francisco, CA 94016" -264486,AAA Batteries (4-pack),1,2.99,10/06/19 12:07,"768 Walnut St, New York City, NY 10001" -264487,Vareebadd Phone,1,400,10/25/19 16:13,"943 Pine St, New York City, NY 10001" -264488,AA Batteries (4-pack),1,3.84,10/18/19 12:44,"305 Spruce St, San Francisco, CA 94016" -264489,AAA Batteries (4-pack),1,2.99,10/06/19 22:34,"934 Cedar St, New York City, NY 10001" -264490,USB-C Charging Cable,1,11.95,10/18/19 08:26,"433 Elm St, San Francisco, CA 94016" -264491,Bose SoundSport Headphones,1,99.99,10/14/19 11:32,"96 Main St, San Francisco, CA 94016" -264492,Apple Airpods Headphones,1,150,10/24/19 10:20,"492 8th St, San Francisco, CA 94016" -264493,Apple Airpods Headphones,1,150,10/05/19 13:06,"486 Lincoln St, San Francisco, CA 94016" -264494,AAA Batteries (4-pack),1,2.99,10/17/19 04:14,"963 14th St, San Francisco, CA 94016" -264494,27in FHD Monitor,1,149.99,10/17/19 04:14,"963 14th St, San Francisco, CA 94016" -264495,USB-C Charging Cable,1,11.95,10/21/19 18:01,"512 Washington St, Los Angeles, CA 90001" -264496,USB-C Charging Cable,1,11.95,10/24/19 13:58,"619 Pine St, Los Angeles, CA 90001" -264497,Lightning Charging Cable,2,14.95,10/10/19 10:54,"325 Madison St, Dallas, TX 75001" -264498,AAA Batteries (4-pack),1,2.99,10/06/19 19:37,"401 8th St, Boston, MA 02215" -264499,AA Batteries (4-pack),1,3.84,10/23/19 22:18,"783 9th St, Dallas, TX 75001" -264500,AAA Batteries (4-pack),1,2.99,10/10/19 12:55,"885 Cedar St, Atlanta, GA 30301" -264501,Bose SoundSport Headphones,1,99.99,10/31/19 11:40,"862 2nd St, Atlanta, GA 30301" -264502,Flatscreen TV,1,300,10/01/19 07:50,"497 Cherry St, Atlanta, GA 30301" -,,,,, -264503,Bose SoundSport Headphones,1,99.99,10/06/19 17:38,"811 Maple St, New York City, NY 10001" -,,,,, -264504,USB-C Charging Cable,1,11.95,10/05/19 19:10,"39 West St, Los Angeles, CA 90001" -264505,USB-C Charging Cable,3,11.95,10/24/19 13:49,"801 Johnson St, Los Angeles, CA 90001" -264506,Wired Headphones,1,11.99,10/19/19 13:01,"945 Center St, San Francisco, CA 94016" -264507,Google Phone,1,600,10/09/19 07:42,"213 Lincoln St, Los Angeles, CA 90001" -264508,AA Batteries (4-pack),1,3.84,10/29/19 14:20,"647 Walnut St, San Francisco, CA 94016" -264509,Bose SoundSport Headphones,1,99.99,10/21/19 23:27,"781 8th St, Atlanta, GA 30301" -264510,Lightning Charging Cable,1,14.95,10/25/19 19:04,"965 Pine St, San Francisco, CA 94016" -264511,27in 4K Gaming Monitor,1,389.99,10/14/19 09:47,"970 5th St, New York City, NY 10001" -264512,Google Phone,1,600,10/20/19 17:51,"487 River St, Austin, TX 73301" -264513,Apple Airpods Headphones,1,150,10/29/19 10:07,"824 8th St, Seattle, WA 98101" -264514,Vareebadd Phone,1,400,10/31/19 14:34,"901 11th St, Portland, OR 97035" -264514,Bose SoundSport Headphones,1,99.99,10/31/19 14:34,"901 11th St, Portland, OR 97035" -264515,Vareebadd Phone,1,400,10/20/19 00:51,"202 Chestnut St, Boston, MA 02215" -264516,AAA Batteries (4-pack),3,2.99,10/05/19 09:43,"459 Spruce St, San Francisco, CA 94016" -264516,ThinkPad Laptop,1,999.99,10/05/19 09:43,"459 Spruce St, San Francisco, CA 94016" -264517,Wired Headphones,1,11.99,10/17/19 23:24,"814 Adams St, Boston, MA 02215" -264518,AAA Batteries (4-pack),1,2.99,10/24/19 14:16,"432 Church St, San Francisco, CA 94016" -264519,Bose SoundSport Headphones,1,99.99,10/25/19 08:54,"792 Church St, San Francisco, CA 94016" -264520,27in 4K Gaming Monitor,1,389.99,10/13/19 11:46,"765 Lincoln St, San Francisco, CA 94016" -264521,AA Batteries (4-pack),1,3.84,10/13/19 07:38,"6 South St, Atlanta, GA 30301" -264522,AA Batteries (4-pack),1,3.84,10/21/19 18:29,"42 Sunset St, New York City, NY 10001" -264523,ThinkPad Laptop,1,999.99,10/17/19 09:24,"689 Lakeview St, Los Angeles, CA 90001" -264524,Apple Airpods Headphones,1,150,10/10/19 10:34,"263 Wilson St, Dallas, TX 75001" -264525,Google Phone,1,600,10/17/19 12:18,"329 2nd St, Boston, MA 02215" -264525,Wired Headphones,1,11.99,10/17/19 12:18,"329 2nd St, Boston, MA 02215" -264526,27in 4K Gaming Monitor,1,389.99,10/22/19 11:42,"15 Wilson St, Boston, MA 02215" -264527,AA Batteries (4-pack),1,3.84,10/02/19 14:56,"618 Hickory St, Dallas, TX 75001" -264528,27in 4K Gaming Monitor,1,389.99,10/11/19 17:02,"554 13th St, Seattle, WA 98101" -264529,20in Monitor,1,109.99,10/17/19 13:02,"603 Elm St, New York City, NY 10001" -264530,Wired Headphones,1,11.99,10/08/19 01:05,"113 Jackson St, Austin, TX 73301" -264531,Vareebadd Phone,1,400,10/03/19 13:17,"298 Hill St, San Francisco, CA 94016" -264532,Flatscreen TV,1,300,10/19/19 17:34,"473 Meadow St, New York City, NY 10001" -264533,AA Batteries (4-pack),1,3.84,10/21/19 20:22,"918 West St, San Francisco, CA 94016" -264534,AAA Batteries (4-pack),2,2.99,10/24/19 10:43,"381 12th St, Boston, MA 02215" -264534,AAA Batteries (4-pack),2,2.99,10/24/19 10:43,"381 12th St, Boston, MA 02215" -264535,Macbook Pro Laptop,1,1700,10/09/19 15:08,"289 Park St, Atlanta, GA 30301" -264536,27in 4K Gaming Monitor,1,389.99,10/28/19 17:29,"909 12th St, Seattle, WA 98101" -264537,Apple Airpods Headphones,1,150,10/05/19 21:32,"264 Elm St, San Francisco, CA 94016" -264538,27in FHD Monitor,1,149.99,10/24/19 13:59,"169 Johnson St, New York City, NY 10001" -264539,AAA Batteries (4-pack),1,2.99,10/13/19 11:11,"983 Chestnut St, Dallas, TX 75001" -264540,Google Phone,1,600,10/28/19 16:50,"329 Lincoln St, Seattle, WA 98101" -264540,USB-C Charging Cable,1,11.95,10/28/19 16:50,"329 Lincoln St, Seattle, WA 98101" -264541,Google Phone,1,600,10/16/19 23:33,"971 4th St, Dallas, TX 75001" -264541,USB-C Charging Cable,1,11.95,10/16/19 23:33,"971 4th St, Dallas, TX 75001" -264542,USB-C Charging Cable,1,11.95,10/05/19 21:49,"793 Walnut St, Dallas, TX 75001" -264543,AA Batteries (4-pack),2,3.84,10/22/19 08:52,"277 Meadow St, New York City, NY 10001" -264544,AA Batteries (4-pack),1,3.84,10/12/19 21:18,"732 Main St, Seattle, WA 98101" -264545,USB-C Charging Cable,4,11.95,10/15/19 14:05,"744 10th St, Los Angeles, CA 90001" -264546,Wired Headphones,1,11.99,10/12/19 10:15,"487 Lincoln St, Boston, MA 02215" -264547,USB-C Charging Cable,1,11.95,10/03/19 10:47,"425 Lake St, San Francisco, CA 94016" -264548,AAA Batteries (4-pack),1,2.99,10/26/19 17:28,"100 6th St, New York City, NY 10001" -264549,Lightning Charging Cable,1,14.95,10/09/19 23:26,"231 Church St, San Francisco, CA 94016" -264550,Wired Headphones,1,11.99,10/17/19 18:42,"726 5th St, Atlanta, GA 30301" -264551,34in Ultrawide Monitor,1,379.99,10/23/19 20:37,"703 Cedar St, Los Angeles, CA 90001" -264552,AAA Batteries (4-pack),1,2.99,10/20/19 13:40,"303 Adams St, Portland, OR 97035" -264553,AAA Batteries (4-pack),1,2.99,10/19/19 19:46,"82 Highland St, New York City, NY 10001" -264554,USB-C Charging Cable,1,11.95,10/27/19 21:09,"183 South St, Los Angeles, CA 90001" -264555,USB-C Charging Cable,1,11.95,10/01/19 20:05,"356 Washington St, Boston, MA 02215" -264556,34in Ultrawide Monitor,1,379.99,10/22/19 13:47,"243 Park St, Seattle, WA 98101" -264557,Wired Headphones,1,11.99,10/02/19 17:15,"793 14th St, Los Angeles, CA 90001" -264558,AA Batteries (4-pack),1,3.84,10/03/19 14:33,"350 Spruce St, Seattle, WA 98101" -264559,USB-C Charging Cable,1,11.95,10/02/19 09:25,"745 11th St, Boston, MA 02215" -264560,USB-C Charging Cable,1,11.95,10/23/19 19:37,"453 11th St, Seattle, WA 98101" -264561,27in 4K Gaming Monitor,1,389.99,10/05/19 20:22,"370 8th St, Dallas, TX 75001" -264562,iPhone,1,700,10/14/19 06:38,"929 Center St, Austin, TX 73301" -264563,Bose SoundSport Headphones,1,99.99,10/19/19 14:15,"225 Dogwood St, San Francisco, CA 94016" -264564,USB-C Charging Cable,1,11.95,10/23/19 13:35,"175 Dogwood St, San Francisco, CA 94016" -264565,Lightning Charging Cable,1,14.95,10/13/19 15:58,"368 Center St, Los Angeles, CA 90001" -264566,20in Monitor,1,109.99,10/02/19 20:58,"417 Johnson St, Atlanta, GA 30301" -264567,34in Ultrawide Monitor,1,379.99,10/18/19 17:56,"608 Elm St, San Francisco, CA 94016" -264568,Macbook Pro Laptop,1,1700,10/26/19 13:27,"246 Willow St, Portland, OR 97035" -264568,USB-C Charging Cable,1,11.95,10/26/19 13:27,"246 Willow St, Portland, OR 97035" -264569,Google Phone,1,600,10/08/19 09:47,"255 Pine St, Boston, MA 02215" -264570,USB-C Charging Cable,1,11.95,10/11/19 19:49,"693 13th St, Portland, OR 97035" -264571,Lightning Charging Cable,2,14.95,10/25/19 11:22,"619 Lincoln St, San Francisco, CA 94016" -264572,27in 4K Gaming Monitor,1,389.99,10/22/19 12:37,"981 Church St, Boston, MA 02215" -264573,Wired Headphones,1,11.99,10/29/19 13:46,"313 13th St, Los Angeles, CA 90001" -264574,AAA Batteries (4-pack),2,2.99,10/22/19 03:12,"962 North St, New York City, NY 10001" -264575,AA Batteries (4-pack),1,3.84,10/17/19 22:19,"361 Elm St, San Francisco, CA 94016" -264576,AA Batteries (4-pack),1,3.84,10/13/19 18:08,"850 10th St, Atlanta, GA 30301" -264577,Lightning Charging Cable,1,14.95,10/22/19 01:20,"21 4th St, San Francisco, CA 94016" -264578,AA Batteries (4-pack),1,3.84,10/13/19 11:42,"548 Johnson St, San Francisco, CA 94016" -264579,AA Batteries (4-pack),1,3.84,10/20/19 09:36,"842 Dogwood St, New York City, NY 10001" -264580,Wired Headphones,1,11.99,10/04/19 17:32,"886 Jackson St, Los Angeles, CA 90001" -264581,Macbook Pro Laptop,1,1700,10/30/19 20:13,"129 Willow St, Atlanta, GA 30301" -264582,Bose SoundSport Headphones,1,99.99,10/27/19 20:47,"890 Cherry St, Seattle, WA 98101" -264583,USB-C Charging Cable,1,11.95,10/09/19 00:17,"119 Hill St, San Francisco, CA 94016" -264584,AAA Batteries (4-pack),1,2.99,10/02/19 22:39,"36 7th St, Seattle, WA 98101" -264585,34in Ultrawide Monitor,1,379.99,10/17/19 13:39,"595 8th St, Boston, MA 02215" -264586,34in Ultrawide Monitor,1,379.99,10/19/19 11:34,"182 Hill St, Dallas, TX 75001" -264587,Lightning Charging Cable,1,14.95,10/09/19 19:46,"417 Meadow St, Los Angeles, CA 90001" -264588,iPhone,1,700,10/10/19 12:46,"653 South St, San Francisco, CA 94016" -264589,USB-C Charging Cable,1,11.95,10/07/19 17:49,"47 Spruce St, Seattle, WA 98101" -264590,USB-C Charging Cable,1,11.95,10/03/19 02:31,"656 Wilson St, San Francisco, CA 94016" -264591,Apple Airpods Headphones,1,150,10/14/19 00:17,"160 Willow St, Boston, MA 02215" -264592,AA Batteries (4-pack),1,3.84,10/03/19 13:21,"240 Ridge St, Los Angeles, CA 90001" -264593,Apple Airpods Headphones,1,150,10/28/19 19:34,"994 Lincoln St, Boston, MA 02215" -264594,AA Batteries (4-pack),2,3.84,10/26/19 23:41,"202 Lakeview St, New York City, NY 10001" -264595,AA Batteries (4-pack),1,3.84,10/30/19 19:42,"68 Adams St, Los Angeles, CA 90001" -264596,Bose SoundSport Headphones,1,99.99,10/25/19 01:01,"638 Chestnut St, San Francisco, CA 94016" -264597,USB-C Charging Cable,1,11.95,10/14/19 17:04,"672 Lake St, Boston, MA 02215" -264598,USB-C Charging Cable,1,11.95,10/10/19 17:00,"325 Meadow St, Los Angeles, CA 90001" -264599,Lightning Charging Cable,1,14.95,10/10/19 11:38,"975 10th St, Boston, MA 02215" -264600,AA Batteries (4-pack),1,3.84,10/07/19 13:23,"532 Maple St, San Francisco, CA 94016" -264601,iPhone,1,700,10/27/19 00:42,"958 Church St, Austin, TX 73301" -264602,27in 4K Gaming Monitor,1,389.99,10/02/19 16:59,"246 Chestnut St, Los Angeles, CA 90001" -264603,Wired Headphones,1,11.99,10/28/19 19:30,"401 Washington St, Los Angeles, CA 90001" -264604,Macbook Pro Laptop,1,1700,10/17/19 17:59,"222 4th St, Dallas, TX 75001" -264605,Wired Headphones,1,11.99,10/07/19 09:41,"346 7th St, San Francisco, CA 94016" -264606,Apple Airpods Headphones,1,150,10/16/19 09:22,"17 Madison St, New York City, NY 10001" -264607,AAA Batteries (4-pack),3,2.99,10/29/19 07:15,"173 10th St, New York City, NY 10001" -264607,Apple Airpods Headphones,1,150,10/29/19 07:15,"173 10th St, New York City, NY 10001" -264608,Bose SoundSport Headphones,1,99.99,10/01/19 10:20,"261 6th St, Portland, ME 04101" -264609,Bose SoundSport Headphones,1,99.99,10/02/19 17:39,"299 Pine St, Los Angeles, CA 90001" -264610,Lightning Charging Cable,1,14.95,10/16/19 14:07,"299 Chestnut St, Portland, OR 97035" -264611,Wired Headphones,1,11.99,10/14/19 15:39,"152 13th St, San Francisco, CA 94016" -264612,34in Ultrawide Monitor,1,379.99,10/21/19 00:27,"90 Jefferson St, Seattle, WA 98101" -264613,Wired Headphones,1,11.99,10/28/19 03:18,"349 Madison St, Dallas, TX 75001" -264614,20in Monitor,1,109.99,10/02/19 08:39,"482 Adams St, San Francisco, CA 94016" -264615,20in Monitor,1,109.99,10/15/19 21:44,"58 10th St, Atlanta, GA 30301" -264616,Wired Headphones,1,11.99,10/04/19 17:34,"931 Maple St, Boston, MA 02215" -264617,Wired Headphones,2,11.99,10/13/19 13:47,"595 Hickory St, Seattle, WA 98101" -264618,Wired Headphones,1,11.99,10/10/19 18:25,"122 Willow St, Boston, MA 02215" -264619,USB-C Charging Cable,1,11.95,10/25/19 12:07,"288 Chestnut St, Los Angeles, CA 90001" -264620,Flatscreen TV,1,300,10/13/19 14:25,"152 Adams St, Seattle, WA 98101" -264621,Vareebadd Phone,1,400,10/17/19 01:07,"879 Spruce St, New York City, NY 10001" -264621,USB-C Charging Cable,1,11.95,10/17/19 01:07,"879 Spruce St, New York City, NY 10001" -264622,USB-C Charging Cable,1,11.95,10/31/19 13:09,"651 11th St, Portland, OR 97035" -264623,AA Batteries (4-pack),1,3.84,10/11/19 18:16,"432 Walnut St, San Francisco, CA 94016" -264624,Google Phone,1,600,10/10/19 16:45,"56 Pine St, Boston, MA 02215" -264625,Wired Headphones,1,11.99,10/10/19 20:14,"54 West St, San Francisco, CA 94016" -264626,Vareebadd Phone,1,400,10/31/19 07:52,"594 River St, Atlanta, GA 30301" -264627,34in Ultrawide Monitor,1,379.99,10/17/19 13:57,"3 Madison St, Dallas, TX 75001" -264628,USB-C Charging Cable,1,11.95,10/05/19 18:09,"47 12th St, San Francisco, CA 94016" -264629,AAA Batteries (4-pack),2,2.99,10/07/19 22:37,"59 Wilson St, Los Angeles, CA 90001" -264630,Lightning Charging Cable,1,14.95,10/31/19 23:14,"1 Wilson St, New York City, NY 10001" -264631,Apple Airpods Headphones,1,150,10/26/19 20:57,"81 6th St, Dallas, TX 75001" -264632,AAA Batteries (4-pack),1,2.99,10/15/19 20:57,"612 13th St, Atlanta, GA 30301" -264633,AAA Batteries (4-pack),2,2.99,10/25/19 01:06,"438 12th St, Seattle, WA 98101" -264634,AAA Batteries (4-pack),1,2.99,10/18/19 08:32,"649 Church St, Atlanta, GA 30301" -264635,Lightning Charging Cable,1,14.95,10/08/19 17:44,"428 11th St, San Francisco, CA 94016" -264636,AA Batteries (4-pack),1,3.84,10/05/19 21:30,"210 Center St, San Francisco, CA 94016" -264637,Wired Headphones,1,11.99,10/30/19 18:59,"373 Meadow St, Portland, OR 97035" -264638,AAA Batteries (4-pack),1,2.99,10/18/19 18:26,"872 2nd St, Atlanta, GA 30301" -264639,Lightning Charging Cable,2,14.95,10/09/19 11:15,"666 14th St, San Francisco, CA 94016" -264640,LG Dryer,1,600.0,10/04/19 13:21,"350 Park St, Seattle, WA 98101" -264641,Apple Airpods Headphones,1,150,10/07/19 21:21,"67 Sunset St, Seattle, WA 98101" -264642,AAA Batteries (4-pack),1,2.99,10/23/19 10:46,"47 North St, New York City, NY 10001" -264643,Bose SoundSport Headphones,1,99.99,10/30/19 20:30,"710 Washington St, Atlanta, GA 30301" -264644,Bose SoundSport Headphones,1,99.99,10/03/19 22:12,"842 Elm St, New York City, NY 10001" -264645,34in Ultrawide Monitor,1,379.99,10/09/19 17:24,"879 Johnson St, Boston, MA 02215" -264646,AAA Batteries (4-pack),2,2.99,10/29/19 15:25,"922 Pine St, Los Angeles, CA 90001" -264647,Lightning Charging Cable,2,14.95,10/26/19 20:17,"879 Elm St, New York City, NY 10001" -264648,AA Batteries (4-pack),1,3.84,10/24/19 06:22,"76 Main St, Dallas, TX 75001" -264649,Macbook Pro Laptop,1,1700,10/01/19 21:05,"230 Lake St, Los Angeles, CA 90001" -264650,Macbook Pro Laptop,1,1700,10/07/19 16:41,"812 2nd St, Atlanta, GA 30301" -264651,AA Batteries (4-pack),1,3.84,10/15/19 20:24,"328 Lake St, Dallas, TX 75001" -264652,27in 4K Gaming Monitor,1,389.99,10/04/19 19:28,"357 Adams St, San Francisco, CA 94016" -264653,Lightning Charging Cable,1,14.95,10/21/19 11:18,"849 Wilson St, Boston, MA 02215" -264654,AAA Batteries (4-pack),2,2.99,10/18/19 14:31,"970 Cherry St, Atlanta, GA 30301" -264655,Lightning Charging Cable,1,14.95,10/02/19 13:43,"213 12th St, New York City, NY 10001" -264656,ThinkPad Laptop,1,999.99,10/05/19 08:18,"714 North St, Seattle, WA 98101" -264657,USB-C Charging Cable,1,11.95,10/10/19 10:26,"48 12th St, Boston, MA 02215" -264658,Wired Headphones,1,11.99,10/14/19 14:00,"570 Adams St, Boston, MA 02215" -264659,AA Batteries (4-pack),1,3.84,10/20/19 19:57,"335 Maple St, San Francisco, CA 94016" -264660,Lightning Charging Cable,1,14.95,10/19/19 21:58,"955 Cedar St, Austin, TX 73301" -264661,34in Ultrawide Monitor,1,379.99,10/29/19 19:18,"709 14th St, Los Angeles, CA 90001" -264662,Lightning Charging Cable,1,14.95,10/07/19 17:51,"637 West St, San Francisco, CA 94016" -264663,Apple Airpods Headphones,1,150,10/06/19 12:49,"453 Adams St, Boston, MA 02215" -264664,Wired Headphones,1,11.99,10/23/19 17:52,"394 13th St, San Francisco, CA 94016" -264665,AA Batteries (4-pack),1,3.84,10/30/19 17:24,"564 14th St, Dallas, TX 75001" -264666,USB-C Charging Cable,1,11.95,10/21/19 18:41,"82 14th St, Los Angeles, CA 90001" -264667,Bose SoundSport Headphones,1,99.99,10/30/19 17:37,"24 Lake St, Los Angeles, CA 90001" -264668,Lightning Charging Cable,2,14.95,10/26/19 16:03,"519 Spruce St, San Francisco, CA 94016" -264669,Lightning Charging Cable,1,14.95,10/24/19 15:15,"303 Ridge St, Austin, TX 73301" -264670,27in FHD Monitor,1,149.99,10/13/19 14:26,"134 2nd St, Los Angeles, CA 90001" -264671,AA Batteries (4-pack),1,3.84,10/16/19 17:31,"920 14th St, San Francisco, CA 94016" -264672,Flatscreen TV,1,300,10/13/19 10:01,"590 9th St, Portland, OR 97035" -264673,Lightning Charging Cable,1,14.95,10/27/19 23:44,"542 8th St, San Francisco, CA 94016" -264674,Lightning Charging Cable,1,14.95,10/22/19 16:57,"431 12th St, Seattle, WA 98101" -264675,Apple Airpods Headphones,1,150,10/12/19 16:20,"58 Lincoln St, New York City, NY 10001" -264676,Wired Headphones,2,11.99,10/22/19 09:45,"130 Walnut St, San Francisco, CA 94016" -264677,Lightning Charging Cable,1,14.95,10/09/19 18:46,"573 South St, Portland, OR 97035" -264678,Wired Headphones,2,11.99,10/21/19 22:10,"266 Pine St, Austin, TX 73301" -264679,27in FHD Monitor,2,149.99,10/05/19 19:17,"736 Walnut St, Dallas, TX 75001" -264680,AA Batteries (4-pack),1,3.84,10/31/19 09:53,"11 Forest St, Portland, OR 97035" -264681,27in 4K Gaming Monitor,1,389.99,10/14/19 18:55,"76 6th St, Portland, ME 04101" -264682,AAA Batteries (4-pack),3,2.99,10/26/19 14:16,"729 Lake St, San Francisco, CA 94016" -264683,Wired Headphones,1,11.99,10/18/19 22:59,"212 Meadow St, Portland, ME 04101" -264684,34in Ultrawide Monitor,1,379.99,10/30/19 09:56,"26 Hickory St, New York City, NY 10001" -264685,Wired Headphones,1,11.99,10/25/19 22:30,"299 Pine St, Portland, ME 04101" -264686,AA Batteries (4-pack),1,3.84,10/28/19 08:23,"123 10th St, San Francisco, CA 94016" -264687,Lightning Charging Cable,1,14.95,10/06/19 11:32,"297 10th St, San Francisco, CA 94016" -264688,Bose SoundSport Headphones,1,99.99,10/31/19 15:23,"706 Center St, Los Angeles, CA 90001" -264689,Wired Headphones,1,11.99,10/06/19 13:25,"644 4th St, San Francisco, CA 94016" -264690,ThinkPad Laptop,1,999.99,10/03/19 11:27,"165 South St, Los Angeles, CA 90001" -264691,Google Phone,1,600,10/31/19 14:27,"927 Hill St, Atlanta, GA 30301" -264691,USB-C Charging Cable,1,11.95,10/31/19 14:27,"927 Hill St, Atlanta, GA 30301" -264692,Wired Headphones,1,11.99,10/14/19 10:03,"94 9th St, San Francisco, CA 94016" -264693,Lightning Charging Cable,1,14.95,10/04/19 21:52,"807 6th St, Atlanta, GA 30301" -264694,27in FHD Monitor,1,149.99,10/19/19 06:41,"820 Sunset St, Los Angeles, CA 90001" -264695,USB-C Charging Cable,1,11.95,10/21/19 19:05,"539 North St, Atlanta, GA 30301" -264696,Apple Airpods Headphones,1,150,10/02/19 17:53,"987 Adams St, Austin, TX 73301" -264697,USB-C Charging Cable,1,11.95,10/08/19 08:54,"437 Madison St, Dallas, TX 75001" -264698,27in FHD Monitor,1,149.99,10/24/19 15:15,"712 Park St, New York City, NY 10001" -264699,Google Phone,1,600,10/06/19 11:57,"385 Cherry St, Austin, TX 73301" -264700,AAA Batteries (4-pack),2,2.99,10/04/19 07:15,"816 6th St, Atlanta, GA 30301" -264701,USB-C Charging Cable,1,11.95,10/09/19 12:26,"278 River St, Atlanta, GA 30301" -264702,Lightning Charging Cable,1,14.95,10/01/19 16:54,"223 11th St, Portland, OR 97035" -264703,AA Batteries (4-pack),2,3.84,10/07/19 09:03,"570 13th St, Portland, OR 97035" -264704,AA Batteries (4-pack),1,3.84,10/07/19 12:53,"790 Jefferson St, Boston, MA 02215" -264705,Lightning Charging Cable,1,14.95,10/13/19 19:15,"906 Maple St, Boston, MA 02215" -264706,Lightning Charging Cable,1,14.95,10/16/19 21:12,"137 Cherry St, Los Angeles, CA 90001" -264707,USB-C Charging Cable,1,11.95,10/22/19 15:22,"709 14th St, New York City, NY 10001" -264708,Wired Headphones,1,11.99,10/13/19 15:07,"874 14th St, Los Angeles, CA 90001" -264709,USB-C Charging Cable,1,11.95,10/12/19 23:32,"375 Lincoln St, San Francisco, CA 94016" -264710,Lightning Charging Cable,1,14.95,10/03/19 04:13,"902 Church St, Boston, MA 02215" -264711,Lightning Charging Cable,1,14.95,10/13/19 17:45,"819 North St, Boston, MA 02215" -264712,USB-C Charging Cable,2,11.95,10/16/19 15:11,"1 14th St, Portland, OR 97035" -264712,Macbook Pro Laptop,1,1700,10/16/19 15:11,"1 14th St, Portland, OR 97035" -264713,34in Ultrawide Monitor,1,379.99,10/09/19 14:30,"986 North St, Boston, MA 02215" -264714,34in Ultrawide Monitor,1,379.99,10/05/19 10:52,"86 North St, Dallas, TX 75001" -264715,Wired Headphones,1,11.99,10/17/19 20:56,"9 Johnson St, Dallas, TX 75001" -264716,AA Batteries (4-pack),1,3.84,10/29/19 20:25,"85 Cedar St, San Francisco, CA 94016" -264717,AAA Batteries (4-pack),1,2.99,10/14/19 20:58,"758 Sunset St, San Francisco, CA 94016" -264718,Bose SoundSport Headphones,1,99.99,10/07/19 21:23,"779 14th St, Los Angeles, CA 90001" -264719,AAA Batteries (4-pack),1,2.99,10/18/19 01:54,"941 Johnson St, Seattle, WA 98101" -264720,Lightning Charging Cable,1,14.95,10/06/19 00:08,"465 Ridge St, Dallas, TX 75001" -264721,20in Monitor,1,109.99,10/24/19 15:01,"852 Cedar St, Seattle, WA 98101" -264722,USB-C Charging Cable,1,11.95,10/29/19 16:13,"796 Hill St, Portland, ME 04101" -264723,ThinkPad Laptop,1,999.99,10/19/19 14:35,"894 13th St, San Francisco, CA 94016" -264724,Wired Headphones,2,11.99,10/19/19 18:43,"313 14th St, New York City, NY 10001" -264725,AA Batteries (4-pack),1,3.84,10/01/19 21:02,"80 Center St, Los Angeles, CA 90001" -264726,Apple Airpods Headphones,1,150,10/22/19 22:19,"905 1st St, Atlanta, GA 30301" -264727,Apple Airpods Headphones,1,150,10/25/19 15:31,"935 Meadow St, San Francisco, CA 94016" -264728,Apple Airpods Headphones,1,150,10/01/19 21:54,"814 South St, San Francisco, CA 94016" -264729,Wired Headphones,1,11.99,10/03/19 14:38,"349 Johnson St, Los Angeles, CA 90001" -264730,AA Batteries (4-pack),1,3.84,10/06/19 20:50,"427 14th St, Dallas, TX 75001" -264731,USB-C Charging Cable,1,11.95,10/22/19 22:44,"288 Adams St, Dallas, TX 75001" -264732,Wired Headphones,1,11.99,10/19/19 17:13,"868 Forest St, Austin, TX 73301" -264732,USB-C Charging Cable,1,11.95,10/19/19 17:13,"868 Forest St, Austin, TX 73301" -264733,Bose SoundSport Headphones,1,99.99,10/01/19 10:23,"357 Sunset St, San Francisco, CA 94016" -264734,iPhone,1,700,10/10/19 20:34,"955 9th St, Seattle, WA 98101" -264735,AA Batteries (4-pack),1,3.84,10/26/19 11:27,"767 Cedar St, New York City, NY 10001" -264736,27in 4K Gaming Monitor,1,389.99,10/26/19 09:30,"839 Spruce St, San Francisco, CA 94016" -264737,Wired Headphones,1,11.99,10/26/19 18:02,"375 Johnson St, San Francisco, CA 94016" -264738,AA Batteries (4-pack),2,3.84,10/02/19 09:04,"598 Park St, Dallas, TX 75001" -264739,Wired Headphones,1,11.99,10/09/19 16:08,"476 2nd St, San Francisco, CA 94016" -264740,Google Phone,1,600,10/02/19 00:56,"95 Dogwood St, Los Angeles, CA 90001" -264741,20in Monitor,1,109.99,10/19/19 12:14,"261 Jefferson St, San Francisco, CA 94016" -264742,Flatscreen TV,1,300,10/22/19 15:38,"230 1st St, Boston, MA 02215" -264743,Wired Headphones,2,11.99,10/26/19 14:16,"988 River St, New York City, NY 10001" -264744,Lightning Charging Cable,1,14.95,10/06/19 19:09,"935 13th St, Dallas, TX 75001" -264745,Google Phone,1,600,10/21/19 10:56,"682 9th St, Dallas, TX 75001" -264745,Lightning Charging Cable,1,14.95,10/21/19 10:56,"682 9th St, Dallas, TX 75001" -264746,34in Ultrawide Monitor,1,379.99,10/26/19 12:20,"163 Lakeview St, San Francisco, CA 94016" -264747,Apple Airpods Headphones,1,150,10/03/19 23:27,"326 12th St, Atlanta, GA 30301" -264748,AA Batteries (4-pack),1,3.84,10/25/19 21:29,"298 Willow St, Seattle, WA 98101" -264749,Lightning Charging Cable,1,14.95,10/10/19 16:37,"127 West St, San Francisco, CA 94016" -264750,USB-C Charging Cable,1,11.95,10/19/19 13:57,"972 Meadow St, Portland, OR 97035" -264751,Flatscreen TV,1,300,10/15/19 13:26,"835 Spruce St, San Francisco, CA 94016" -264752,AA Batteries (4-pack),1,3.84,10/25/19 13:03,"854 Spruce St, Atlanta, GA 30301" -264753,iPhone,1,700,10/01/19 10:53,"378 Adams St, San Francisco, CA 94016" -264754,AAA Batteries (4-pack),2,2.99,10/21/19 19:37,"949 10th St, Atlanta, GA 30301" -264755,AAA Batteries (4-pack),6,2.99,10/03/19 20:52,"311 Lincoln St, New York City, NY 10001" -264756,Apple Airpods Headphones,1,150,10/28/19 09:55,"74 14th St, Los Angeles, CA 90001" -264757,Lightning Charging Cable,1,14.95,10/17/19 17:19,"102 Center St, Dallas, TX 75001" -264758,Lightning Charging Cable,1,14.95,10/04/19 16:16,"497 Johnson St, Los Angeles, CA 90001" -264759,AA Batteries (4-pack),1,3.84,10/26/19 14:39,"374 Hill St, New York City, NY 10001" -264760,AA Batteries (4-pack),1,3.84,10/28/19 01:15,"947 8th St, Austin, TX 73301" -264761,Lightning Charging Cable,1,14.95,10/24/19 10:50,"332 7th St, Austin, TX 73301" -264761,AA Batteries (4-pack),1,3.84,10/24/19 10:50,"332 7th St, Austin, TX 73301" -264762,Lightning Charging Cable,1,14.95,10/09/19 14:35,"712 Lincoln St, New York City, NY 10001" -264763,Bose SoundSport Headphones,1,99.99,10/24/19 07:47,"701 Walnut St, Boston, MA 02215" -264764,27in FHD Monitor,1,149.99,10/04/19 15:10,"910 Meadow St, San Francisco, CA 94016" -264765,AAA Batteries (4-pack),1,2.99,10/08/19 10:32,"258 Highland St, San Francisco, CA 94016" -264766,Wired Headphones,1,11.99,10/28/19 16:37,"409 Highland St, New York City, NY 10001" -264767,Lightning Charging Cable,1,14.95,10/07/19 07:21,"145 8th St, Los Angeles, CA 90001" -264768,Macbook Pro Laptop,1,1700,10/06/19 16:44,"276 Lincoln St, Dallas, TX 75001" -264768,LG Washing Machine,1,600.0,10/06/19 16:44,"276 Lincoln St, Dallas, TX 75001" -264769,27in 4K Gaming Monitor,1,389.99,10/23/19 15:54,"836 North St, Seattle, WA 98101" -264770,iPhone,1,700,10/26/19 20:48,"632 Lake St, San Francisco, CA 94016" -264770,Wired Headphones,1,11.99,10/26/19 20:48,"632 Lake St, San Francisco, CA 94016" -264771,Bose SoundSport Headphones,1,99.99,10/20/19 16:24,"668 Adams St, New York City, NY 10001" -264772,AA Batteries (4-pack),1,3.84,10/02/19 17:59,"64 Wilson St, Austin, TX 73301" -264773,USB-C Charging Cable,1,11.95,10/31/19 22:33,"213 Jackson St, Los Angeles, CA 90001" -264774,AA Batteries (4-pack),1,3.84,10/05/19 20:12,"738 Dogwood St, Portland, ME 04101" -264775,USB-C Charging Cable,1,11.95,10/02/19 19:37,"347 5th St, Dallas, TX 75001" -264776,34in Ultrawide Monitor,1,379.99,10/30/19 15:36,"267 14th St, Seattle, WA 98101" -264777,Wired Headphones,1,11.99,10/24/19 10:32,"363 1st St, San Francisco, CA 94016" -264778,AA Batteries (4-pack),1,3.84,10/04/19 18:56,"974 Meadow St, Seattle, WA 98101" -264779,USB-C Charging Cable,1,11.95,10/27/19 19:24,"417 Sunset St, Boston, MA 02215" -264780,34in Ultrawide Monitor,1,379.99,10/16/19 16:44,"350 Wilson St, Portland, OR 97035" -264781,Flatscreen TV,1,300,10/02/19 07:27,"672 North St, Los Angeles, CA 90001" -264782,Flatscreen TV,1,300,10/05/19 23:23,"763 9th St, San Francisco, CA 94016" -264783,Lightning Charging Cable,1,14.95,10/13/19 11:14,"607 North St, Portland, ME 04101" -264784,27in FHD Monitor,1,149.99,10/25/19 22:49,"304 South St, Seattle, WA 98101" -264785,AA Batteries (4-pack),1,3.84,10/11/19 06:39,"639 12th St, San Francisco, CA 94016" -264786,AAA Batteries (4-pack),7,2.99,10/29/19 20:51,"415 Hickory St, Los Angeles, CA 90001" -264787,AA Batteries (4-pack),1,3.84,10/09/19 14:17,"457 Johnson St, Atlanta, GA 30301" -264788,27in 4K Gaming Monitor,1,389.99,10/14/19 22:51,"225 Church St, Boston, MA 02215" -264789,iPhone,1,700,10/28/19 21:54,"766 10th St, Atlanta, GA 30301" -264790,AA Batteries (4-pack),1,3.84,10/14/19 05:29,"370 Jefferson St, Dallas, TX 75001" -264791,USB-C Charging Cable,1,11.95,10/30/19 20:20,"546 10th St, San Francisco, CA 94016" -264792,AA Batteries (4-pack),1,3.84,10/15/19 15:07,"967 6th St, New York City, NY 10001" -264793,Apple Airpods Headphones,1,150,10/31/19 13:35,"420 Johnson St, New York City, NY 10001" -264794,Flatscreen TV,1,300,10/26/19 13:26,"612 Hickory St, Los Angeles, CA 90001" -264795,AA Batteries (4-pack),2,3.84,10/22/19 18:07,"274 Lake St, Boston, MA 02215" -264796,Lightning Charging Cable,1,14.95,10/11/19 20:09,"862 Highland St, Atlanta, GA 30301" -264797,Lightning Charging Cable,1,14.95,10/30/19 09:42,"373 River St, San Francisco, CA 94016" -264798,USB-C Charging Cable,1,11.95,10/25/19 20:28,"987 Lakeview St, Los Angeles, CA 90001" -264799,AAA Batteries (4-pack),1,2.99,10/26/19 22:59,"471 12th St, Los Angeles, CA 90001" -264800,AA Batteries (4-pack),1,3.84,10/14/19 17:28,"17 Pine St, Dallas, TX 75001" -264801,Google Phone,1,600,10/11/19 20:41,"530 Cedar St, San Francisco, CA 94016" -264802,Macbook Pro Laptop,1,1700,10/26/19 14:22,"637 Maple St, Boston, MA 02215" -264803,Google Phone,1,600,10/23/19 22:51,"556 Jackson St, San Francisco, CA 94016" -264803,USB-C Charging Cable,1,11.95,10/23/19 22:51,"556 Jackson St, San Francisco, CA 94016" -264804,Wired Headphones,1,11.99,10/08/19 17:13,"9 Pine St, Boston, MA 02215" -264805,USB-C Charging Cable,1,11.95,10/26/19 17:37,"507 Center St, New York City, NY 10001" -264806,Lightning Charging Cable,1,14.95,10/05/19 23:32,"420 Willow St, Seattle, WA 98101" -264807,Apple Airpods Headphones,1,150,10/18/19 21:06,"844 West St, Boston, MA 02215" -264808,27in 4K Gaming Monitor,1,389.99,10/01/19 10:53,"450 Meadow St, San Francisco, CA 94016" -264809,Wired Headphones,1,11.99,10/15/19 17:55,"58 Hickory St, Los Angeles, CA 90001" -264810,Lightning Charging Cable,1,14.95,10/13/19 10:59,"550 Cedar St, Los Angeles, CA 90001" -264811,AA Batteries (4-pack),1,3.84,10/20/19 08:37,"254 Lincoln St, San Francisco, CA 94016" -264812,USB-C Charging Cable,1,11.95,10/29/19 22:12,"247 5th St, Boston, MA 02215" -264812,Wired Headphones,1,11.99,10/29/19 22:12,"247 5th St, Boston, MA 02215" -264813,Bose SoundSport Headphones,1,99.99,10/16/19 20:19,"236 Willow St, New York City, NY 10001" -264814,27in 4K Gaming Monitor,1,389.99,10/27/19 05:56,"546 Cherry St, Austin, TX 73301" -264815,USB-C Charging Cable,1,11.95,10/05/19 13:24,"588 Meadow St, Dallas, TX 75001" -264816,USB-C Charging Cable,1,11.95,10/14/19 18:33,"940 Willow St, San Francisco, CA 94016" -264817,Lightning Charging Cable,2,14.95,10/01/19 19:18,"429 Madison St, San Francisco, CA 94016" -264818,ThinkPad Laptop,1,999.99,10/28/19 20:58,"800 Dogwood St, New York City, NY 10001" -264819,AAA Batteries (4-pack),2,2.99,10/05/19 12:44,"947 12th St, Austin, TX 73301" -264820,Lightning Charging Cable,1,14.95,10/16/19 21:21,"35 Jefferson St, Atlanta, GA 30301" -264821,27in FHD Monitor,1,149.99,10/14/19 00:19,"892 Elm St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -264822,Google Phone,1,600,10/08/19 19:20,"358 Pine St, Los Angeles, CA 90001" -264823,Lightning Charging Cable,1,14.95,10/31/19 08:31,"390 Highland St, San Francisco, CA 94016" -264824,Lightning Charging Cable,1,14.95,10/10/19 14:56,"922 Madison St, San Francisco, CA 94016" -264825,Lightning Charging Cable,1,14.95,10/12/19 16:35,"270 Johnson St, Los Angeles, CA 90001" -264826,34in Ultrawide Monitor,1,379.99,10/11/19 21:26,"423 8th St, San Francisco, CA 94016" -264827,27in FHD Monitor,1,149.99,10/02/19 18:52,"110 1st St, Atlanta, GA 30301" -264828,Bose SoundSport Headphones,1,99.99,10/13/19 01:16,"559 Jefferson St, San Francisco, CA 94016" -264829,AAA Batteries (4-pack),1,2.99,10/04/19 19:17,"599 Main St, San Francisco, CA 94016" -264830,Apple Airpods Headphones,1,150,10/15/19 20:45,"956 Highland St, San Francisco, CA 94016" -264831,Wired Headphones,1,11.99,10/18/19 14:22,"42 Chestnut St, Seattle, WA 98101" -264832,Macbook Pro Laptop,1,1700,10/16/19 15:57,"229 Lakeview St, San Francisco, CA 94016" -264833,USB-C Charging Cable,1,11.95,10/11/19 14:03,"78 Hill St, New York City, NY 10001" -264834,AAA Batteries (4-pack),1,2.99,10/08/19 23:23,"938 6th St, Los Angeles, CA 90001" -264835,Wired Headphones,1,11.99,10/23/19 12:28,"732 Highland St, New York City, NY 10001" -264836,34in Ultrawide Monitor,1,379.99,10/18/19 18:10,"54 9th St, San Francisco, CA 94016" -264837,Apple Airpods Headphones,1,150,10/29/19 08:50,"248 South St, New York City, NY 10001" -264838,AAA Batteries (4-pack),1,2.99,10/27/19 23:58,"623 Jackson St, Austin, TX 73301" -264839,iPhone,1,700,10/09/19 13:33,"133 North St, San Francisco, CA 94016" -264840,USB-C Charging Cable,1,11.95,10/28/19 20:04,"209 Lincoln St, Seattle, WA 98101" -264841,AA Batteries (4-pack),1,3.84,10/16/19 22:09,"97 Pine St, Austin, TX 73301" -264842,Wired Headphones,1,11.99,10/22/19 23:17,"514 Adams St, Dallas, TX 75001" -264843,AAA Batteries (4-pack),1,2.99,10/02/19 19:34,"421 Lake St, Los Angeles, CA 90001" -264844,20in Monitor,1,109.99,10/28/19 10:02,"155 Highland St, San Francisco, CA 94016" -264845,AAA Batteries (4-pack),1,2.99,10/26/19 08:13,"939 Elm St, Austin, TX 73301" -264846,Lightning Charging Cable,1,14.95,10/16/19 02:52,"731 Lake St, Seattle, WA 98101" -264847,27in FHD Monitor,1,149.99,10/28/19 20:16,"978 4th St, Boston, MA 02215" -264848,Apple Airpods Headphones,1,150,10/10/19 12:02,"218 9th St, Atlanta, GA 30301" -264849,USB-C Charging Cable,1,11.95,10/21/19 12:37,"127 Lincoln St, Seattle, WA 98101" -264850,Google Phone,1,600,10/30/19 12:59,"649 14th St, New York City, NY 10001" -264851,Wired Headphones,1,11.99,10/03/19 01:39,"386 Forest St, Seattle, WA 98101" -264852,Google Phone,1,600,10/16/19 07:39,"499 4th St, San Francisco, CA 94016" -264852,USB-C Charging Cable,1,11.95,10/16/19 07:39,"499 4th St, San Francisco, CA 94016" -264852,Wired Headphones,1,11.99,10/16/19 07:39,"499 4th St, San Francisco, CA 94016" -264853,AA Batteries (4-pack),1,3.84,10/28/19 20:01,"771 11th St, Boston, MA 02215" -264854,Wired Headphones,1,11.99,10/22/19 17:20,"752 Spruce St, Los Angeles, CA 90001" -264855,27in FHD Monitor,1,149.99,10/17/19 10:21,"762 Cedar St, San Francisco, CA 94016" -264856,USB-C Charging Cable,1,11.95,10/16/19 12:27,"32 Lake St, New York City, NY 10001" -264857,Lightning Charging Cable,2,14.95,10/07/19 07:57,"384 Johnson St, Portland, OR 97035" -264858,27in 4K Gaming Monitor,1,389.99,10/14/19 10:44,"149 Highland St, Los Angeles, CA 90001" -264859,USB-C Charging Cable,1,11.95,10/30/19 00:26,"693 9th St, New York City, NY 10001" -264860,Apple Airpods Headphones,1,150,10/22/19 15:55,"767 Jackson St, Boston, MA 02215" -264861,Macbook Pro Laptop,1,1700,10/21/19 13:43,"119 5th St, San Francisco, CA 94016" -264862,Bose SoundSport Headphones,1,99.99,10/31/19 12:21,"238 10th St, San Francisco, CA 94016" -264863,ThinkPad Laptop,1,999.99,10/19/19 19:36,"841 Elm St, Los Angeles, CA 90001" -264864,Bose SoundSport Headphones,1,99.99,10/04/19 13:06,"917 West St, San Francisco, CA 94016" -264865,USB-C Charging Cable,2,11.95,10/27/19 23:09,"795 Maple St, New York City, NY 10001" -264866,Wired Headphones,1,11.99,10/25/19 13:53,"54 6th St, San Francisco, CA 94016" -264867,Wired Headphones,1,11.99,10/08/19 17:07,"23 10th St, San Francisco, CA 94016" -264868,Apple Airpods Headphones,1,150,10/20/19 08:56,"473 Maple St, Seattle, WA 98101" -264869,27in FHD Monitor,1,149.99,10/10/19 19:23,"37 Jefferson St, New York City, NY 10001" -264870,iPhone,1,700,10/19/19 22:53,"882 Park St, Los Angeles, CA 90001" -264871,AAA Batteries (4-pack),1,2.99,10/22/19 07:28,"465 Walnut St, Seattle, WA 98101" -264872,USB-C Charging Cable,1,11.95,10/09/19 20:51,"526 Lincoln St, Dallas, TX 75001" -264873,27in FHD Monitor,1,149.99,10/06/19 16:59,"847 5th St, San Francisco, CA 94016" -264874,Wired Headphones,1,11.99,10/26/19 15:17,"38 Cedar St, Portland, OR 97035" -264875,Vareebadd Phone,1,400,10/30/19 15:18,"918 Spruce St, San Francisco, CA 94016" -264876,Flatscreen TV,1,300,10/18/19 08:13,"437 Highland St, Dallas, TX 75001" -264877,Wired Headphones,1,11.99,10/31/19 09:22,"497 Walnut St, Boston, MA 02215" -264878,Lightning Charging Cable,1,14.95,10/10/19 18:38,"746 River St, Los Angeles, CA 90001" -264879,Wired Headphones,1,11.99,10/19/19 16:16,"321 4th St, San Francisco, CA 94016" -264880,AAA Batteries (4-pack),1,2.99,10/06/19 20:13,"553 Madison St, San Francisco, CA 94016" -264881,Apple Airpods Headphones,1,150,10/03/19 11:55,"4 Cedar St, Los Angeles, CA 90001" -264882,AAA Batteries (4-pack),1,2.99,10/23/19 12:32,"419 Forest St, New York City, NY 10001" -264883,Google Phone,1,600,10/07/19 19:28,"170 Main St, San Francisco, CA 94016" -264884,ThinkPad Laptop,1,999.99,10/01/19 16:43,"802 Chestnut St, Seattle, WA 98101" -264885,AA Batteries (4-pack),1,3.84,10/28/19 21:10,"814 Walnut St, Dallas, TX 75001" -264886,Vareebadd Phone,1,400,10/31/19 09:19,"128 Pine St, Boston, MA 02215" -264887,Wired Headphones,1,11.99,10/04/19 11:35,"291 Dogwood St, Atlanta, GA 30301" -264888,Google Phone,1,600,10/31/19 22:07,"798 Madison St, Seattle, WA 98101" -264889,AA Batteries (4-pack),1,3.84,10/30/19 14:30,"241 Ridge St, San Francisco, CA 94016" -264890,Wired Headphones,1,11.99,10/01/19 10:06,"638 Lake St, Seattle, WA 98101" -264891,Flatscreen TV,1,300,10/26/19 15:59,"887 Meadow St, Dallas, TX 75001" -264892,USB-C Charging Cable,1,11.95,10/25/19 10:53,"449 1st St, Los Angeles, CA 90001" -264893,27in FHD Monitor,1,149.99,10/05/19 15:23,"588 Church St, Los Angeles, CA 90001" -264894,Lightning Charging Cable,1,14.95,10/22/19 11:47,"399 River St, San Francisco, CA 94016" -264895,Lightning Charging Cable,1,14.95,10/19/19 08:03,"39 Elm St, New York City, NY 10001" -264896,Lightning Charging Cable,1,14.95,10/05/19 20:06,"215 6th St, New York City, NY 10001" -264897,Bose SoundSport Headphones,1,99.99,10/22/19 11:22,"432 5th St, Los Angeles, CA 90001" -264898,Google Phone,1,600,10/16/19 16:30,"349 Park St, San Francisco, CA 94016" -264899,27in 4K Gaming Monitor,1,389.99,10/17/19 03:34,"196 Hill St, Seattle, WA 98101" -264900,USB-C Charging Cable,1,11.95,10/08/19 23:00,"557 14th St, San Francisco, CA 94016" -264901,Apple Airpods Headphones,1,150,10/20/19 23:34,"124 South St, Seattle, WA 98101" -264902,Wired Headphones,1,11.99,10/05/19 07:05,"509 Jefferson St, San Francisco, CA 94016" -264903,Macbook Pro Laptop,1,1700,10/27/19 12:46,"954 Adams St, Austin, TX 73301" -264904,34in Ultrawide Monitor,1,379.99,10/11/19 15:05,"591 Main St, New York City, NY 10001" -264905,AAA Batteries (4-pack),1,2.99,10/15/19 19:08,"195 1st St, New York City, NY 10001" -264906,AAA Batteries (4-pack),1,2.99,10/21/19 17:00,"846 6th St, San Francisco, CA 94016" -264907,USB-C Charging Cable,1,11.95,10/31/19 16:11,"535 Park St, Dallas, TX 75001" -264908,iPhone,1,700,10/03/19 13:41,"284 Main St, Atlanta, GA 30301" -264909,AAA Batteries (4-pack),1,2.99,10/31/19 18:56,"735 Willow St, New York City, NY 10001" -264910,Lightning Charging Cable,1,14.95,10/10/19 22:01,"555 Lincoln St, Dallas, TX 75001" -264911,AA Batteries (4-pack),1,3.84,10/21/19 17:52,"959 4th St, Los Angeles, CA 90001" -264912,Wired Headphones,2,11.99,10/12/19 15:18,"384 River St, Atlanta, GA 30301" -264913,Wired Headphones,1,11.99,10/23/19 11:24,"859 Meadow St, Seattle, WA 98101" -264914,27in FHD Monitor,1,149.99,10/14/19 20:38,"682 14th St, Los Angeles, CA 90001" -264915,Lightning Charging Cable,1,14.95,10/31/19 07:46,"502 1st St, San Francisco, CA 94016" -264916,AAA Batteries (4-pack),1,2.99,10/26/19 13:05,"801 South St, Dallas, TX 75001" -264917,AA Batteries (4-pack),1,3.84,10/04/19 18:24,"20 11th St, San Francisco, CA 94016" -264918,Google Phone,1,600,10/29/19 14:58,"351 West St, Dallas, TX 75001" -264919,iPhone,1,700,10/27/19 10:13,"458 South St, New York City, NY 10001" -264920,34in Ultrawide Monitor,1,379.99,10/12/19 01:26,"76 Lakeview St, San Francisco, CA 94016" -264921,Google Phone,1,600,10/23/19 22:04,"211 West St, San Francisco, CA 94016" -264922,USB-C Charging Cable,1,11.95,10/01/19 10:49,"449 Meadow St, San Francisco, CA 94016" -264923,AA Batteries (4-pack),1,3.84,10/08/19 15:59,"594 Willow St, Austin, TX 73301" -264924,Lightning Charging Cable,1,14.95,10/13/19 18:31,"517 Cherry St, Boston, MA 02215" -264925,iPhone,1,700,10/02/19 01:01,"75 9th St, Portland, OR 97035" -264925,Apple Airpods Headphones,1,150,10/02/19 01:01,"75 9th St, Portland, OR 97035" -264926,Lightning Charging Cable,1,14.95,10/12/19 11:41,"116 8th St, Boston, MA 02215" -264927,AAA Batteries (4-pack),1,2.99,10/03/19 15:03,"656 1st St, New York City, NY 10001" -264928,USB-C Charging Cable,1,11.95,10/28/19 19:20,"574 1st St, Seattle, WA 98101" -264929,AA Batteries (4-pack),2,3.84,10/27/19 00:52,"137 2nd St, Atlanta, GA 30301" -264930,34in Ultrawide Monitor,1,379.99,10/12/19 13:19,"840 14th St, Atlanta, GA 30301" -264931,27in FHD Monitor,1,149.99,10/06/19 10:19,"661 Jackson St, Boston, MA 02215" -264932,27in 4K Gaming Monitor,1,389.99,10/18/19 15:15,"389 Adams St, New York City, NY 10001" -264933,27in 4K Gaming Monitor,1,389.99,10/06/19 13:37,"494 Lake St, Austin, TX 73301" -264934,Flatscreen TV,1,300,10/07/19 19:50,"541 Highland St, Austin, TX 73301" -264935,AAA Batteries (4-pack),2,2.99,10/18/19 18:16,"195 Walnut St, Seattle, WA 98101" -264936,Apple Airpods Headphones,1,150,10/13/19 10:38,"239 12th St, San Francisco, CA 94016" -264937,Macbook Pro Laptop,1,1700,10/20/19 19:27,"78 Park St, New York City, NY 10001" -264938,ThinkPad Laptop,1,999.99,10/08/19 22:22,"782 2nd St, San Francisco, CA 94016" -264939,Bose SoundSport Headphones,1,99.99,10/28/19 17:01,"683 Meadow St, San Francisco, CA 94016" -264940,AAA Batteries (4-pack),1,2.99,10/06/19 14:31,"653 Highland St, Los Angeles, CA 90001" -264941,AA Batteries (4-pack),2,3.84,10/02/19 19:13,"756 11th St, New York City, NY 10001" -264942,27in 4K Gaming Monitor,1,389.99,10/02/19 11:07,"864 Spruce St, Boston, MA 02215" -264943,Wired Headphones,1,11.99,10/24/19 17:03,"658 Hill St, Seattle, WA 98101" -264944,Wired Headphones,1,11.99,10/31/19 22:05,"881 Center St, San Francisco, CA 94016" -264945,Lightning Charging Cable,1,14.95,10/31/19 14:53,"308 13th St, Los Angeles, CA 90001" -264946,Bose SoundSport Headphones,1,99.99,10/12/19 07:26,"786 Wilson St, San Francisco, CA 94016" -264947,27in 4K Gaming Monitor,1,389.99,10/11/19 15:25,"337 Lincoln St, Boston, MA 02215" -264948,27in FHD Monitor,1,149.99,10/29/19 00:24,"311 2nd St, Boston, MA 02215" -264949,Bose SoundSport Headphones,1,99.99,10/28/19 14:49,"737 Lakeview St, Austin, TX 73301" -264950,AAA Batteries (4-pack),1,2.99,10/25/19 08:51,"645 Lake St, Los Angeles, CA 90001" -264951,iPhone,1,700,10/30/19 13:38,"725 Walnut St, Dallas, TX 75001" -264952,AAA Batteries (4-pack),1,2.99,10/14/19 11:25,"223 7th St, Los Angeles, CA 90001" -264953,USB-C Charging Cable,1,11.95,10/01/19 12:20,"874 Jefferson St, New York City, NY 10001" -264954,AA Batteries (4-pack),1,3.84,10/15/19 04:10,"433 Highland St, New York City, NY 10001" -264955,AAA Batteries (4-pack),1,2.99,10/12/19 21:08,"670 Cedar St, Boston, MA 02215" -264956,ThinkPad Laptop,1,999.99,10/31/19 09:02,"580 7th St, New York City, NY 10001" -264957,AAA Batteries (4-pack),1,2.99,10/15/19 14:56,"120 Jefferson St, Boston, MA 02215" -264958,Lightning Charging Cable,1,14.95,10/12/19 21:11,"882 Spruce St, Seattle, WA 98101" -264959,20in Monitor,1,109.99,10/03/19 15:15,"770 Hickory St, Austin, TX 73301" -264960,27in FHD Monitor,1,149.99,10/02/19 15:00,"917 Walnut St, Atlanta, GA 30301" -264961,Lightning Charging Cable,1,14.95,10/09/19 17:04,"341 South St, Portland, OR 97035" -264962,Lightning Charging Cable,1,14.95,10/12/19 11:08,"118 Cherry St, Los Angeles, CA 90001" -264963,27in FHD Monitor,1,149.99,10/13/19 06:00,"905 Center St, Atlanta, GA 30301" -264964,Wired Headphones,1,11.99,10/20/19 09:35,"451 9th St, Boston, MA 02215" -264965,Apple Airpods Headphones,1,150,10/27/19 18:02,"20 River St, Portland, ME 04101" -264966,iPhone,1,700,10/29/19 12:58,"203 Church St, San Francisco, CA 94016" -264967,AAA Batteries (4-pack),1,2.99,10/19/19 19:27,"438 Spruce St, Dallas, TX 75001" -264968,AAA Batteries (4-pack),1,2.99,10/06/19 09:37,"235 14th St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -264969,AAA Batteries (4-pack),3,2.99,10/24/19 23:22,"170 12th St, New York City, NY 10001" -264970,20in Monitor,1,109.99,10/25/19 19:03,"350 11th St, San Francisco, CA 94016" -264971,Apple Airpods Headphones,1,150,10/21/19 00:56,"16 Elm St, San Francisco, CA 94016" -264972,Apple Airpods Headphones,1,150,10/27/19 12:45,"278 Adams St, Portland, OR 97035" -264973,27in 4K Gaming Monitor,1,389.99,10/09/19 14:49,"376 4th St, Dallas, TX 75001" -264974,USB-C Charging Cable,1,11.95,10/30/19 15:05,"911 4th St, San Francisco, CA 94016" -264975,Lightning Charging Cable,1,14.95,10/11/19 22:03,"110 1st St, Seattle, WA 98101" -264976,34in Ultrawide Monitor,1,379.99,10/10/19 14:22,"713 5th St, New York City, NY 10001" -264977,Lightning Charging Cable,1,14.95,10/04/19 21:35,"536 Ridge St, Los Angeles, CA 90001" -264978,Apple Airpods Headphones,1,150,10/01/19 08:17,"534 Maple St, Los Angeles, CA 90001" -264979,Apple Airpods Headphones,1,150,10/04/19 19:23,"211 Park St, Atlanta, GA 30301" -264980,USB-C Charging Cable,1,11.95,10/07/19 18:47,"835 Hill St, Los Angeles, CA 90001" -264981,AAA Batteries (4-pack),2,2.99,10/29/19 21:19,"795 Church St, New York City, NY 10001" -264982,Wired Headphones,1,11.99,10/31/19 22:38,"728 River St, Atlanta, GA 30301" -264983,USB-C Charging Cable,1,11.95,10/26/19 18:17,"444 Wilson St, Boston, MA 02215" -264984,AAA Batteries (4-pack),1,2.99,10/30/19 22:22,"967 Madison St, Atlanta, GA 30301" -264985,Wired Headphones,1,11.99,10/27/19 17:10,"964 11th St, Portland, OR 97035" -264986,Apple Airpods Headphones,1,150,10/26/19 11:41,"42 Dogwood St, Atlanta, GA 30301" -264987,20in Monitor,1,109.99,10/10/19 13:09,"508 Elm St, New York City, NY 10001" -264988,27in FHD Monitor,1,149.99,10/03/19 02:41,"193 Hickory St, San Francisco, CA 94016" -264989,AA Batteries (4-pack),1,3.84,10/30/19 16:09,"443 Jefferson St, New York City, NY 10001" -264990,Bose SoundSport Headphones,2,99.99,10/28/19 17:37,"658 River St, Austin, TX 73301" -264991,Lightning Charging Cable,1,14.95,10/18/19 12:06,"465 Lake St, Dallas, TX 75001" -264992,USB-C Charging Cable,1,11.95,10/25/19 13:58,"659 14th St, Boston, MA 02215" -264993,Apple Airpods Headphones,1,150,10/01/19 19:02,"267 North St, Boston, MA 02215" -264994,AA Batteries (4-pack),1,3.84,10/20/19 20:11,"925 13th St, New York City, NY 10001" -264995,Wired Headphones,2,11.99,10/22/19 11:49,"348 8th St, San Francisco, CA 94016" -264996,Wired Headphones,1,11.99,10/18/19 18:11,"149 11th St, Portland, OR 97035" -264997,Apple Airpods Headphones,1,150,10/15/19 08:46,"516 5th St, San Francisco, CA 94016" -264998,Wired Headphones,1,11.99,10/19/19 13:00,"902 7th St, Dallas, TX 75001" -264999,27in 4K Gaming Monitor,1,389.99,10/05/19 17:56,"169 Elm St, San Francisco, CA 94016" -265000,Bose SoundSport Headphones,1,99.99,10/11/19 11:33,"333 Park St, Seattle, WA 98101" -265001,27in 4K Gaming Monitor,1,389.99,10/03/19 04:41,"157 1st St, Los Angeles, CA 90001" -265002,AA Batteries (4-pack),1,3.84,10/04/19 18:18,"723 West St, San Francisco, CA 94016" -265003,AAA Batteries (4-pack),1,2.99,10/06/19 10:42,"214 11th St, New York City, NY 10001" -265004,AA Batteries (4-pack),1,3.84,10/26/19 21:00,"582 Cherry St, New York City, NY 10001" -265005,AA Batteries (4-pack),2,3.84,10/31/19 12:38,"516 9th St, Los Angeles, CA 90001" -265006,AA Batteries (4-pack),1,3.84,10/26/19 14:43,"817 Madison St, Boston, MA 02215" -265007,Wired Headphones,1,11.99,10/10/19 16:58,"463 13th St, San Francisco, CA 94016" -265008,Wired Headphones,1,11.99,10/12/19 10:33,"4 Lincoln St, Los Angeles, CA 90001" -265009,iPhone,1,700,10/14/19 08:09,"528 Chestnut St, Los Angeles, CA 90001" -265010,AAA Batteries (4-pack),2,2.99,10/28/19 13:28,"318 4th St, Los Angeles, CA 90001" -265011,Apple Airpods Headphones,1,150,10/08/19 21:05,"225 1st St, Austin, TX 73301" -265012,USB-C Charging Cable,1,11.95,10/26/19 07:19,"804 North St, Seattle, WA 98101" -265013,Wired Headphones,1,11.99,10/14/19 13:10,"275 Highland St, Portland, OR 97035" -265014,AAA Batteries (4-pack),3,2.99,10/27/19 09:11,"995 11th St, Los Angeles, CA 90001" -265015,USB-C Charging Cable,1,11.95,10/06/19 17:18,"431 Church St, San Francisco, CA 94016" -265016,AAA Batteries (4-pack),1,2.99,10/13/19 18:33,"636 Hill St, Boston, MA 02215" -265017,Bose SoundSport Headphones,1,99.99,10/26/19 13:01,"425 West St, Boston, MA 02215" -265018,Lightning Charging Cable,2,14.95,10/25/19 11:28,"275 2nd St, San Francisco, CA 94016" -265019,34in Ultrawide Monitor,1,379.99,10/15/19 20:11,"271 Jefferson St, Boston, MA 02215" -265020,20in Monitor,1,109.99,10/31/19 08:25,"265 Johnson St, San Francisco, CA 94016" -265021,Wired Headphones,1,11.99,10/06/19 12:05,"716 South St, San Francisco, CA 94016" -265022,USB-C Charging Cable,1,11.95,10/23/19 18:56,"154 Wilson St, Boston, MA 02215" -265023,Wired Headphones,1,11.99,10/13/19 22:39,"78 Cedar St, San Francisco, CA 94016" -265024,ThinkPad Laptop,1,999.99,10/07/19 21:46,"535 Willow St, Portland, OR 97035" -265025,Apple Airpods Headphones,1,150,10/03/19 18:36,"513 West St, Austin, TX 73301" -265026,Wired Headphones,1,11.99,10/21/19 09:12,"422 Church St, Portland, OR 97035" -265027,AAA Batteries (4-pack),1,2.99,10/20/19 19:57,"232 8th St, Los Angeles, CA 90001" -265028,34in Ultrawide Monitor,1,379.99,10/12/19 16:19,"337 13th St, Portland, OR 97035" -265029,34in Ultrawide Monitor,1,379.99,10/02/19 12:05,"960 West St, Atlanta, GA 30301" -265030,34in Ultrawide Monitor,1,379.99,10/06/19 18:45,"393 11th St, Atlanta, GA 30301" -265031,Apple Airpods Headphones,1,150,10/14/19 14:59,"598 Pine St, San Francisco, CA 94016" -265032,Bose SoundSport Headphones,1,99.99,10/12/19 19:46,"239 Jackson St, Austin, TX 73301" -265033,Wired Headphones,1,11.99,10/26/19 12:08,"393 Lakeview St, Atlanta, GA 30301" -265034,Flatscreen TV,1,300,10/10/19 17:38,"505 Jefferson St, Boston, MA 02215" -265035,20in Monitor,1,109.99,10/10/19 19:43,"804 Johnson St, San Francisco, CA 94016" -265036,iPhone,1,700,10/21/19 18:41,"453 Lakeview St, Portland, OR 97035" -265036,Lightning Charging Cable,1,14.95,10/21/19 18:41,"453 Lakeview St, Portland, OR 97035" -265037,27in FHD Monitor,1,149.99,10/23/19 20:13,"543 Washington St, San Francisco, CA 94016" -265038,Flatscreen TV,1,300,10/15/19 16:37,"6 4th St, Los Angeles, CA 90001" -265039,AA Batteries (4-pack),1,3.84,10/26/19 16:22,"945 Lincoln St, New York City, NY 10001" -265040,USB-C Charging Cable,1,11.95,10/26/19 01:33,"596 Washington St, San Francisco, CA 94016" -265041,Lightning Charging Cable,1,14.95,10/13/19 16:19,"716 12th St, Los Angeles, CA 90001" -265042,Google Phone,1,600,10/31/19 10:52,"563 Maple St, Dallas, TX 75001" -265042,Bose SoundSport Headphones,1,99.99,10/31/19 10:52,"563 Maple St, Dallas, TX 75001" -265043,Bose SoundSport Headphones,1,99.99,10/28/19 16:28,"195 South St, Dallas, TX 75001" -265044,27in FHD Monitor,1,149.99,10/28/19 09:42,"624 South St, New York City, NY 10001" -265045,Wired Headphones,1,11.99,10/28/19 11:36,"119 7th St, Los Angeles, CA 90001" -265046,AA Batteries (4-pack),3,3.84,10/02/19 19:13,"291 Main St, San Francisco, CA 94016" -265047,Wired Headphones,1,11.99,10/03/19 12:42,"549 Sunset St, Los Angeles, CA 90001" -265048,Google Phone,1,600,10/05/19 08:08,"27 5th St, Boston, MA 02215" -265049,Apple Airpods Headphones,1,150,10/12/19 14:54,"197 Walnut St, San Francisco, CA 94016" -265050,27in 4K Gaming Monitor,1,389.99,10/15/19 11:21,"457 River St, Los Angeles, CA 90001" -265051,Lightning Charging Cable,1,14.95,10/07/19 19:53,"151 Walnut St, Portland, OR 97035" -265052,Google Phone,1,600,10/07/19 19:23,"395 Chestnut St, New York City, NY 10001" -265053,Bose SoundSport Headphones,1,99.99,10/31/19 19:59,"29 Forest St, Los Angeles, CA 90001" -265054,Google Phone,1,600,10/09/19 23:01,"580 Madison St, Dallas, TX 75001" -265055,AAA Batteries (4-pack),1,2.99,10/30/19 14:53,"119 13th St, Dallas, TX 75001" -265056,AAA Batteries (4-pack),1,2.99,10/31/19 14:28,"338 9th St, San Francisco, CA 94016" -265057,Wired Headphones,1,11.99,10/24/19 20:01,"68 Wilson St, San Francisco, CA 94016" -265058,Lightning Charging Cable,1,14.95,10/14/19 08:01,"234 Jackson St, Los Angeles, CA 90001" -265059,Lightning Charging Cable,1,14.95,10/22/19 21:26,"418 6th St, Los Angeles, CA 90001" -265060,AA Batteries (4-pack),5,3.84,10/08/19 18:49,"25 14th St, Boston, MA 02215" -265061,Apple Airpods Headphones,1,150,10/18/19 11:00,"865 Jefferson St, Austin, TX 73301" -265062,Vareebadd Phone,1,400,10/12/19 20:46,"340 Ridge St, Los Angeles, CA 90001" -265063,USB-C Charging Cable,1,11.95,10/16/19 10:58,"953 Forest St, Dallas, TX 75001" -265064,AA Batteries (4-pack),1,3.84,10/18/19 07:06,"654 Johnson St, Austin, TX 73301" -265065,34in Ultrawide Monitor,1,379.99,10/31/19 20:35,"120 Wilson St, San Francisco, CA 94016" -265066,20in Monitor,1,109.99,10/25/19 05:50,"193 Lakeview St, Los Angeles, CA 90001" -265067,ThinkPad Laptop,1,999.99,10/10/19 17:03,"64 7th St, New York City, NY 10001" -265068,AAA Batteries (4-pack),1,2.99,10/06/19 17:47,"152 7th St, Dallas, TX 75001" -265069,AA Batteries (4-pack),1,3.84,10/13/19 13:57,"92 Elm St, Los Angeles, CA 90001" -265070,Lightning Charging Cable,1,14.95,10/30/19 16:57,"42 Sunset St, San Francisco, CA 94016" -265071,Google Phone,1,600,10/22/19 12:03,"572 Johnson St, Seattle, WA 98101" -265072,34in Ultrawide Monitor,1,379.99,10/15/19 19:23,"54 South St, Seattle, WA 98101" -265073,AAA Batteries (4-pack),1,2.99,10/22/19 08:47,"403 12th St, Los Angeles, CA 90001" -265074,AAA Batteries (4-pack),1,2.99,10/09/19 18:15,"79 9th St, San Francisco, CA 94016" -265075,Bose SoundSport Headphones,1,99.99,10/17/19 16:53,"385 Meadow St, New York City, NY 10001" -265076,USB-C Charging Cable,2,11.95,10/21/19 23:42,"678 Jefferson St, Seattle, WA 98101" -265077,Wired Headphones,1,11.99,10/16/19 14:10,"461 4th St, Los Angeles, CA 90001" -265078,AA Batteries (4-pack),1,3.84,10/18/19 21:15,"845 Spruce St, Seattle, WA 98101" -265079,ThinkPad Laptop,1,999.99,10/01/19 10:03,"526 Sunset St, Dallas, TX 75001" -265080,USB-C Charging Cable,1,11.95,10/16/19 13:22,"807 Main St, New York City, NY 10001" -265081,AA Batteries (4-pack),1,3.84,10/10/19 09:27,"888 Madison St, Atlanta, GA 30301" -265082,Apple Airpods Headphones,1,150,10/09/19 12:01,"929 Johnson St, Seattle, WA 98101" -265083,AAA Batteries (4-pack),1,2.99,10/31/19 13:43,"114 5th St, New York City, NY 10001" -265084,AA Batteries (4-pack),1,3.84,10/26/19 20:13,"384 Chestnut St, Atlanta, GA 30301" -265085,ThinkPad Laptop,1,999.99,10/26/19 08:37,"349 Hickory St, Atlanta, GA 30301" -265086,Lightning Charging Cable,1,14.95,10/06/19 13:32,"527 Highland St, San Francisco, CA 94016" -265087,Flatscreen TV,1,300,10/20/19 21:58,"725 Meadow St, Austin, TX 73301" -265088,Wired Headphones,2,11.99,10/26/19 20:53,"511 14th St, Los Angeles, CA 90001" -265089,Flatscreen TV,1,300,10/10/19 19:38,"154 South St, San Francisco, CA 94016" -265090,Wired Headphones,1,11.99,10/13/19 11:09,"335 Hickory St, Seattle, WA 98101" -265091,27in 4K Gaming Monitor,1,389.99,10/03/19 13:09,"637 Sunset St, Boston, MA 02215" -265092,Bose SoundSport Headphones,1,99.99,10/12/19 09:59,"809 Jackson St, Dallas, TX 75001" -265093,iPhone,1,700,10/01/19 21:36,"95 Lake St, New York City, NY 10001" -265093,Lightning Charging Cable,1,14.95,10/01/19 21:36,"95 Lake St, New York City, NY 10001" -265094,34in Ultrawide Monitor,1,379.99,10/22/19 21:38,"205 Adams St, San Francisco, CA 94016" -265095,Wired Headphones,1,11.99,10/08/19 10:14,"583 Park St, San Francisco, CA 94016" -265096,AAA Batteries (4-pack),3,2.99,10/13/19 10:27,"317 Maple St, Atlanta, GA 30301" -265097,Wired Headphones,1,11.99,10/12/19 21:16,"544 6th St, San Francisco, CA 94016" -265098,Flatscreen TV,1,300,10/15/19 21:06,"572 Maple St, Atlanta, GA 30301" -265099,Lightning Charging Cable,1,14.95,10/29/19 22:58,"997 Center St, Los Angeles, CA 90001" -265100,iPhone,1,700,10/02/19 12:53,"23 Adams St, Dallas, TX 75001" -265101,Lightning Charging Cable,1,14.95,10/22/19 22:32,"95 Jefferson St, San Francisco, CA 94016" -265102,Lightning Charging Cable,1,14.95,10/29/19 01:19,"387 Forest St, Austin, TX 73301" -265103,20in Monitor,1,109.99,10/07/19 21:58,"334 8th St, Los Angeles, CA 90001" -265104,Wired Headphones,1,11.99,10/09/19 19:08,"247 Main St, Seattle, WA 98101" -265105,Bose SoundSport Headphones,1,99.99,10/22/19 14:24,"804 13th St, San Francisco, CA 94016" -265106,27in 4K Gaming Monitor,1,389.99,10/28/19 13:38,"815 Spruce St, Atlanta, GA 30301" -265107,AA Batteries (4-pack),1,3.84,10/23/19 09:53,"936 Church St, New York City, NY 10001" -265108,Vareebadd Phone,1,400,10/21/19 19:53,"851 Highland St, Seattle, WA 98101" -265109,USB-C Charging Cable,1,11.95,10/03/19 16:46,"872 Church St, New York City, NY 10001" -265110,Wired Headphones,1,11.99,10/19/19 16:31,"735 8th St, Los Angeles, CA 90001" -265111,Wired Headphones,1,11.99,10/24/19 10:51,"896 Washington St, Los Angeles, CA 90001" -265112,iPhone,1,700,10/23/19 11:07,"598 Willow St, Portland, OR 97035" -265113,Bose SoundSport Headphones,1,99.99,10/21/19 08:37,"913 Pine St, New York City, NY 10001" -265114,Wired Headphones,1,11.99,10/21/19 14:11,"937 Walnut St, Los Angeles, CA 90001" -265115,iPhone,1,700,10/11/19 21:48,"817 14th St, Dallas, TX 75001" -265115,Lightning Charging Cable,1,14.95,10/11/19 21:48,"817 14th St, Dallas, TX 75001" -265116,AAA Batteries (4-pack),1,2.99,10/31/19 11:01,"689 13th St, Austin, TX 73301" -265117,20in Monitor,1,109.99,10/23/19 13:50,"279 4th St, Seattle, WA 98101" -265118,Wired Headphones,1,11.99,10/31/19 22:17,"330 Hickory St, Atlanta, GA 30301" -265119,Bose SoundSport Headphones,1,99.99,10/04/19 16:27,"506 14th St, Austin, TX 73301" -265120,Vareebadd Phone,1,400,10/31/19 09:08,"386 Church St, Los Angeles, CA 90001" -265121,AAA Batteries (4-pack),1,2.99,10/14/19 18:45,"565 Adams St, San Francisco, CA 94016" -265122,USB-C Charging Cable,1,11.95,10/28/19 22:05,"769 Lincoln St, Seattle, WA 98101" -265123,AAA Batteries (4-pack),1,2.99,10/20/19 11:52,"56 Cherry St, Los Angeles, CA 90001" -265124,USB-C Charging Cable,1,11.95,10/13/19 03:37,"100 Hickory St, Los Angeles, CA 90001" -265125,Flatscreen TV,1,300,10/07/19 13:36,"624 8th St, Boston, MA 02215" -265126,USB-C Charging Cable,1,11.95,10/17/19 07:50,"275 2nd St, New York City, NY 10001" -,,,,, -265127,AAA Batteries (4-pack),2,2.99,10/26/19 20:56,"726 Wilson St, Los Angeles, CA 90001" -265128,Lightning Charging Cable,1,14.95,10/23/19 19:17,"325 Jackson St, San Francisco, CA 94016" -265129,Wired Headphones,1,11.99,10/08/19 20:08,"602 5th St, Seattle, WA 98101" -265130,iPhone,1,700,10/25/19 08:04,"816 Park St, Los Angeles, CA 90001" -265131,Lightning Charging Cable,1,14.95,10/27/19 08:01,"874 Wilson St, San Francisco, CA 94016" -265132,Macbook Pro Laptop,1,1700,10/29/19 18:45,"242 Church St, Seattle, WA 98101" -265133,iPhone,1,700,10/05/19 12:14,"386 4th St, Seattle, WA 98101" -265134,iPhone,1,700,10/03/19 23:11,"874 Church St, Los Angeles, CA 90001" -265135,USB-C Charging Cable,1,11.95,10/04/19 18:41,"346 14th St, San Francisco, CA 94016" -265135,ThinkPad Laptop,1,999.99,10/04/19 18:41,"346 14th St, San Francisco, CA 94016" -265136,AA Batteries (4-pack),1,3.84,10/18/19 14:49,"196 Jackson St, Boston, MA 02215" -265137,27in FHD Monitor,1,149.99,10/10/19 20:22,"14 7th St, New York City, NY 10001" -265138,27in 4K Gaming Monitor,1,389.99,10/18/19 22:20,"543 Spruce St, Boston, MA 02215" -265139,AAA Batteries (4-pack),1,2.99,10/10/19 04:35,"854 Adams St, Atlanta, GA 30301" -265140,Bose SoundSport Headphones,1,99.99,10/26/19 13:00,"281 Johnson St, New York City, NY 10001" -265141,iPhone,1,700,10/04/19 15:37,"869 Dogwood St, New York City, NY 10001" -265142,Lightning Charging Cable,1,14.95,10/12/19 11:38,"413 Walnut St, Atlanta, GA 30301" -265143,Wired Headphones,2,11.99,10/09/19 23:25,"912 5th St, Boston, MA 02215" -265144,Lightning Charging Cable,1,14.95,10/25/19 14:07,"636 6th St, San Francisco, CA 94016" -265145,USB-C Charging Cable,1,11.95,10/26/19 16:25,"201 North St, Portland, OR 97035" -265146,USB-C Charging Cable,1,11.95,10/16/19 13:06,"856 Elm St, New York City, NY 10001" -265147,34in Ultrawide Monitor,1,379.99,10/06/19 19:27,"791 Adams St, Portland, ME 04101" -265148,AAA Batteries (4-pack),1,2.99,10/31/19 12:10,"61 Sunset St, San Francisco, CA 94016" -265149,USB-C Charging Cable,1,11.95,10/26/19 15:38,"881 6th St, San Francisco, CA 94016" -265150,USB-C Charging Cable,1,11.95,10/01/19 20:40,"698 Pine St, New York City, NY 10001" -265151,Macbook Pro Laptop,1,1700,10/29/19 09:43,"815 Walnut St, San Francisco, CA 94016" -265152,Bose SoundSport Headphones,1,99.99,10/15/19 08:55,"330 7th St, Seattle, WA 98101" -265153,USB-C Charging Cable,1,11.95,10/23/19 10:10,"675 Center St, Atlanta, GA 30301" -265154,iPhone,1,700,10/28/19 18:06,"758 Johnson St, Los Angeles, CA 90001" -265155,AAA Batteries (4-pack),4,2.99,10/21/19 14:19,"691 7th St, Austin, TX 73301" -265156,Flatscreen TV,1,300,10/26/19 21:50,"463 Lakeview St, Atlanta, GA 30301" -265157,Wired Headphones,1,11.99,10/14/19 18:15,"4 Walnut St, San Francisco, CA 94016" -265158,Macbook Pro Laptop,1,1700,10/01/19 08:58,"351 Pine St, Los Angeles, CA 90001" -265159,Wired Headphones,1,11.99,10/29/19 22:49,"44 Cedar St, Portland, OR 97035" -265160,AA Batteries (4-pack),1,3.84,10/03/19 20:43,"613 5th St, San Francisco, CA 94016" -265161,Wired Headphones,1,11.99,10/10/19 08:21,"348 Cedar St, Boston, MA 02215" -265162,Apple Airpods Headphones,1,150,10/07/19 05:31,"265 Spruce St, Atlanta, GA 30301" -265163,AAA Batteries (4-pack),2,2.99,10/21/19 19:26,"342 Wilson St, Los Angeles, CA 90001" -265164,AA Batteries (4-pack),1,3.84,10/22/19 19:16,"123 Madison St, Seattle, WA 98101" -265165,Apple Airpods Headphones,1,150,10/22/19 10:49,"291 Main St, Dallas, TX 75001" -265166,Flatscreen TV,1,300,10/05/19 15:17,"289 Lake St, New York City, NY 10001" -265167,Bose SoundSport Headphones,1,99.99,10/09/19 21:56,"453 Hickory St, Seattle, WA 98101" -265168,Bose SoundSport Headphones,1,99.99,10/13/19 13:22,"9 Hill St, Boston, MA 02215" -265169,Wired Headphones,1,11.99,10/28/19 08:37,"799 Ridge St, Los Angeles, CA 90001" -265170,27in 4K Gaming Monitor,1,389.99,10/04/19 12:30,"678 Jefferson St, New York City, NY 10001" -265171,Lightning Charging Cable,1,14.95,10/25/19 14:41,"952 Cherry St, Seattle, WA 98101" -265172,USB-C Charging Cable,1,11.95,10/18/19 12:10,"731 Lincoln St, Los Angeles, CA 90001" -265173,Lightning Charging Cable,1,14.95,10/15/19 09:01,"317 6th St, San Francisco, CA 94016" -265174,USB-C Charging Cable,1,11.95,10/20/19 17:09,"368 Hill St, Boston, MA 02215" -265175,AA Batteries (4-pack),1,3.84,10/15/19 14:44,"390 2nd St, Boston, MA 02215" -265176,AAA Batteries (4-pack),1,2.99,10/20/19 17:10,"541 1st St, Los Angeles, CA 90001" -265177,Apple Airpods Headphones,1,150,10/05/19 13:49,"242 Pine St, Boston, MA 02215" -265178,AAA Batteries (4-pack),2,2.99,10/19/19 18:36,"512 Cherry St, San Francisco, CA 94016" -265179,Wired Headphones,1,11.99,10/29/19 12:12,"336 Cherry St, Portland, OR 97035" -265180,Apple Airpods Headphones,1,150,10/03/19 21:54,"162 Lincoln St, Austin, TX 73301" -265181,iPhone,1,700,10/21/19 09:05,"228 Lincoln St, Portland, OR 97035" -265182,ThinkPad Laptop,1,999.99,10/19/19 16:34,"471 4th St, New York City, NY 10001" -265183,AA Batteries (4-pack),1,3.84,10/27/19 15:55,"709 12th St, Los Angeles, CA 90001" -265184,Wired Headphones,1,11.99,10/30/19 14:18,"315 Jackson St, Austin, TX 73301" -265185,AAA Batteries (4-pack),1,2.99,10/09/19 13:46,"951 Dogwood St, San Francisco, CA 94016" -265186,USB-C Charging Cable,2,11.95,10/13/19 08:14,"146 6th St, Dallas, TX 75001" -265187,Bose SoundSport Headphones,1,99.99,10/18/19 18:41,"383 Lakeview St, Los Angeles, CA 90001" -265188,AA Batteries (4-pack),1,3.84,10/04/19 20:33,"202 Maple St, Boston, MA 02215" -265189,AAA Batteries (4-pack),1,2.99,10/17/19 08:05,"662 Main St, Dallas, TX 75001" -265190,AAA Batteries (4-pack),1,2.99,10/20/19 20:55,"647 Washington St, Dallas, TX 75001" -265191,ThinkPad Laptop,1,999.99,10/13/19 23:36,"805 Willow St, Los Angeles, CA 90001" -265192,20in Monitor,1,109.99,10/19/19 18:06,"991 Hickory St, New York City, NY 10001" -265193,Google Phone,1,600,10/08/19 20:26,"463 12th St, Atlanta, GA 30301" -265193,USB-C Charging Cable,1,11.95,10/08/19 20:26,"463 12th St, Atlanta, GA 30301" -265194,USB-C Charging Cable,1,11.95,10/21/19 14:29,"55 12th St, Portland, ME 04101" -265195,ThinkPad Laptop,1,999.99,10/09/19 18:05,"253 Jackson St, Atlanta, GA 30301" -265196,Flatscreen TV,1,300,10/06/19 00:10,"70 1st St, Boston, MA 02215" -265197,AAA Batteries (4-pack),1,2.99,10/19/19 09:50,"160 11th St, Los Angeles, CA 90001" -265198,Wired Headphones,1,11.99,10/22/19 10:17,"279 1st St, Atlanta, GA 30301" -265199,AAA Batteries (4-pack),1,2.99,10/09/19 06:55,"962 2nd St, Portland, OR 97035" -265200,Wired Headphones,2,11.99,10/08/19 10:44,"507 6th St, Seattle, WA 98101" -265201,Lightning Charging Cable,1,14.95,10/10/19 14:20,"138 12th St, New York City, NY 10001" -265202,Apple Airpods Headphones,1,150,10/01/19 20:38,"885 Cherry St, Austin, TX 73301" -265203,Bose SoundSport Headphones,1,99.99,10/24/19 14:17,"61 Main St, Seattle, WA 98101" -265204,27in FHD Monitor,1,149.99,10/15/19 15:30,"128 Park St, Boston, MA 02215" -265205,Macbook Pro Laptop,1,1700,10/29/19 11:38,"575 Cedar St, San Francisco, CA 94016" -265206,AA Batteries (4-pack),1,3.84,10/26/19 19:31,"341 Hickory St, Los Angeles, CA 90001" -265207,Apple Airpods Headphones,1,150,10/20/19 19:53,"544 Lincoln St, New York City, NY 10001" -265208,Apple Airpods Headphones,1,150,10/31/19 00:16,"672 Lake St, San Francisco, CA 94016" -265209,AAA Batteries (4-pack),2,2.99,10/02/19 01:06,"509 Hickory St, Portland, ME 04101" -265210,Macbook Pro Laptop,1,1700,10/01/19 12:18,"947 Willow St, Boston, MA 02215" -265211,Flatscreen TV,1,300,10/03/19 21:11,"613 Chestnut St, New York City, NY 10001" -265212,Apple Airpods Headphones,1,150,10/30/19 20:07,"581 6th St, Portland, OR 97035" -265213,Apple Airpods Headphones,1,150,10/10/19 10:17,"662 Sunset St, Los Angeles, CA 90001" -265214,Wired Headphones,1,11.99,10/20/19 07:25,"878 1st St, San Francisco, CA 94016" -265215,AA Batteries (4-pack),3,3.84,10/13/19 16:57,"605 South St, San Francisco, CA 94016" -265216,USB-C Charging Cable,1,11.95,10/11/19 10:28,"323 Hickory St, Austin, TX 73301" -265217,27in 4K Gaming Monitor,1,389.99,10/15/19 19:03,"504 Hickory St, Atlanta, GA 30301" -265218,Wired Headphones,1,11.99,10/10/19 19:18,"365 Spruce St, New York City, NY 10001" -265219,27in 4K Gaming Monitor,1,389.99,10/17/19 22:27,"686 7th St, San Francisco, CA 94016" -265220,Apple Airpods Headphones,1,150,10/29/19 08:34,"165 Maple St, Atlanta, GA 30301" -265221,USB-C Charging Cable,1,11.95,10/23/19 13:04,"743 Jackson St, New York City, NY 10001" -265222,Bose SoundSport Headphones,1,99.99,10/09/19 09:30,"786 6th St, Seattle, WA 98101" -265223,Wired Headphones,1,11.99,10/13/19 13:11,"911 Meadow St, Portland, OR 97035" -265224,Lightning Charging Cable,1,14.95,10/01/19 10:34,"304 Highland St, Los Angeles, CA 90001" -265224,Lightning Charging Cable,1,14.95,10/01/19 10:34,"304 Highland St, Los Angeles, CA 90001" -265225,Wired Headphones,1,11.99,10/22/19 12:32,"599 Maple St, New York City, NY 10001" -265226,Bose SoundSport Headphones,1,99.99,10/30/19 15:43,"829 Jackson St, Los Angeles, CA 90001" -265227,Macbook Pro Laptop,1,1700,10/28/19 23:40,"88 Jefferson St, Los Angeles, CA 90001" -265228,AAA Batteries (4-pack),1,2.99,10/23/19 09:15,"238 2nd St, San Francisco, CA 94016" -265229,AA Batteries (4-pack),1,3.84,10/25/19 11:37,"911 Ridge St, Atlanta, GA 30301" -265230,Flatscreen TV,1,300,10/08/19 22:00,"102 Sunset St, New York City, NY 10001" -265231,34in Ultrawide Monitor,1,379.99,10/31/19 18:03,"270 South St, Los Angeles, CA 90001" -265232,Wired Headphones,1,11.99,10/31/19 06:31,"862 7th St, San Francisco, CA 94016" -265233,Apple Airpods Headphones,1,150,10/23/19 21:22,"714 12th St, Atlanta, GA 30301" -265234,iPhone,1,700,10/08/19 21:27,"767 Willow St, New York City, NY 10001" -265235,AA Batteries (4-pack),1,3.84,10/31/19 08:52,"829 Sunset St, New York City, NY 10001" -265236,AAA Batteries (4-pack),1,2.99,10/15/19 10:09,"255 13th St, San Francisco, CA 94016" -265237,AA Batteries (4-pack),1,3.84,10/23/19 17:24,"785 Lakeview St, Los Angeles, CA 90001" -265238,Wired Headphones,1,11.99,10/23/19 19:15,"220 Lincoln St, New York City, NY 10001" -265239,USB-C Charging Cable,1,11.95,10/11/19 10:30,"119 South St, San Francisco, CA 94016" -265240,27in 4K Gaming Monitor,1,389.99,10/01/19 12:34,"333 Cedar St, Los Angeles, CA 90001" -265241,AAA Batteries (4-pack),1,2.99,10/29/19 21:29,"530 Cedar St, Los Angeles, CA 90001" -265242,27in 4K Gaming Monitor,1,389.99,10/28/19 20:19,"539 Hickory St, New York City, NY 10001" -265243,AA Batteries (4-pack),1,3.84,10/26/19 16:51,"907 Willow St, Boston, MA 02215" -265244,AAA Batteries (4-pack),1,2.99,10/26/19 18:23,"882 Spruce St, San Francisco, CA 94016" -265245,Lightning Charging Cable,1,14.95,10/01/19 08:33,"104 5th St, New York City, NY 10001" -265246,AA Batteries (4-pack),1,3.84,10/26/19 21:08,"2 Sunset St, San Francisco, CA 94016" -265247,Wired Headphones,1,11.99,10/22/19 11:50,"844 Jackson St, Austin, TX 73301" -265248,Lightning Charging Cable,1,14.95,10/02/19 12:00,"797 Spruce St, New York City, NY 10001" -265249,Wired Headphones,1,11.99,10/08/19 11:11,"421 9th St, Boston, MA 02215" -265250,Google Phone,1,600,10/04/19 22:03,"761 6th St, New York City, NY 10001" -265251,Macbook Pro Laptop,1,1700,10/14/19 15:07,"318 8th St, San Francisco, CA 94016" -265252,34in Ultrawide Monitor,1,379.99,10/10/19 18:00,"717 Ridge St, San Francisco, CA 94016" -265253,Flatscreen TV,1,300,10/04/19 11:35,"852 Jackson St, Dallas, TX 75001" -265254,Apple Airpods Headphones,1,150,10/19/19 22:03,"169 Hickory St, New York City, NY 10001" -265255,AA Batteries (4-pack),1,3.84,10/28/19 13:59,"759 5th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -265256,iPhone,1,700,10/31/19 08:59,"126 Hill St, Los Angeles, CA 90001" -265257,Lightning Charging Cable,1,14.95,10/20/19 19:39,"2 Adams St, San Francisco, CA 94016" -265258,Bose SoundSport Headphones,1,99.99,10/01/19 13:46,"642 Spruce St, San Francisco, CA 94016" -265259,Google Phone,1,600,10/20/19 07:45,"33 11th St, Los Angeles, CA 90001" -265260,Wired Headphones,1,11.99,10/16/19 22:24,"798 Johnson St, Dallas, TX 75001" -265261,USB-C Charging Cable,1,11.95,10/21/19 17:23,"867 Walnut St, Dallas, TX 75001" -265262,USB-C Charging Cable,1,11.95,10/22/19 13:28,"33 4th St, Boston, MA 02215" -265263,Wired Headphones,1,11.99,10/18/19 16:31,"571 Lincoln St, Portland, OR 97035" -265264,Flatscreen TV,1,300,10/24/19 21:27,"110 5th St, Los Angeles, CA 90001" -265265,AAA Batteries (4-pack),1,2.99,10/27/19 12:58,"803 North St, Los Angeles, CA 90001" -265266,iPhone,1,700,10/29/19 19:27,"716 Main St, San Francisco, CA 94016" -265266,Lightning Charging Cable,1,14.95,10/29/19 19:27,"716 Main St, San Francisco, CA 94016" -265267,AAA Batteries (4-pack),1,2.99,10/07/19 07:44,"345 Johnson St, Dallas, TX 75001" -265268,Bose SoundSport Headphones,1,99.99,10/28/19 08:49,"74 4th St, San Francisco, CA 94016" -265269,Lightning Charging Cable,1,14.95,10/09/19 11:54,"750 Highland St, Los Angeles, CA 90001" -265270,Google Phone,1,600,10/08/19 06:23,"743 River St, Seattle, WA 98101" -265271,Bose SoundSport Headphones,1,99.99,10/17/19 11:23,"241 Elm St, Los Angeles, CA 90001" -265272,Bose SoundSport Headphones,1,99.99,10/23/19 23:21,"366 Center St, Dallas, TX 75001" -265273,Lightning Charging Cable,1,14.95,10/04/19 12:25,"655 Johnson St, Los Angeles, CA 90001" -265274,AAA Batteries (4-pack),1,2.99,10/28/19 19:07,"350 Cherry St, San Francisco, CA 94016" -265275,iPhone,1,700,10/23/19 14:26,"702 Willow St, New York City, NY 10001" -265276,USB-C Charging Cable,1,11.95,10/19/19 10:23,"792 Hill St, New York City, NY 10001" -265277,Lightning Charging Cable,1,14.95,10/08/19 21:24,"980 Washington St, San Francisco, CA 94016" -265278,USB-C Charging Cable,1,11.95,10/29/19 20:33,"558 Wilson St, Boston, MA 02215" -265279,USB-C Charging Cable,1,11.95,10/28/19 10:20,"446 North St, Austin, TX 73301" -265280,Flatscreen TV,1,300,10/03/19 12:08,"291 1st St, Austin, TX 73301" -265281,Apple Airpods Headphones,1,150,10/14/19 07:50,"919 West St, Los Angeles, CA 90001" -265282,Apple Airpods Headphones,1,150,10/17/19 12:42,"916 West St, Seattle, WA 98101" -265283,Lightning Charging Cable,1,14.95,10/02/19 01:09,"227 Willow St, Los Angeles, CA 90001" -265284,Bose SoundSport Headphones,1,99.99,10/04/19 19:43,"841 Main St, Atlanta, GA 30301" -265285,USB-C Charging Cable,1,11.95,10/24/19 18:06,"82 Dogwood St, Atlanta, GA 30301" -265286,Wired Headphones,1,11.99,10/01/19 10:18,"736 Johnson St, San Francisco, CA 94016" -265287,iPhone,1,700,10/23/19 12:42,"535 12th St, Portland, OR 97035" -265287,Apple Airpods Headphones,1,150,10/23/19 12:42,"535 12th St, Portland, OR 97035" -265288,Bose SoundSport Headphones,1,99.99,10/06/19 09:58,"292 Dogwood St, Seattle, WA 98101" -265289,Bose SoundSport Headphones,1,99.99,10/26/19 09:03,"659 Lincoln St, Boston, MA 02215" -265290,USB-C Charging Cable,1,11.95,10/03/19 01:19,"281 Hickory St, Los Angeles, CA 90001" -265291,Bose SoundSport Headphones,1,99.99,10/30/19 03:44,"681 Church St, Seattle, WA 98101" -265292,Lightning Charging Cable,1,14.95,10/13/19 08:54,"63 Park St, Seattle, WA 98101" -265293,Lightning Charging Cable,1,14.95,10/27/19 13:43,"534 Cherry St, Los Angeles, CA 90001" -265294,34in Ultrawide Monitor,1,379.99,10/18/19 10:17,"513 7th St, Dallas, TX 75001" -265295,iPhone,1,700,10/01/19 09:23,"258 Center St, San Francisco, CA 94016" -265295,Wired Headphones,1,11.99,10/01/19 09:23,"258 Center St, San Francisco, CA 94016" -265296,AA Batteries (4-pack),1,3.84,10/18/19 09:51,"3 Lincoln St, New York City, NY 10001" -265297,USB-C Charging Cable,1,11.95,10/22/19 00:16,"298 Lake St, New York City, NY 10001" -265298,27in 4K Gaming Monitor,1,389.99,10/05/19 19:55,"241 10th St, Portland, ME 04101" -265299,AAA Batteries (4-pack),2,2.99,10/24/19 14:07,"172 Forest St, Los Angeles, CA 90001" -265300,AA Batteries (4-pack),1,3.84,10/27/19 11:58,"974 Lake St, New York City, NY 10001" -265301,USB-C Charging Cable,1,11.95,10/28/19 16:11,"19 Lakeview St, Atlanta, GA 30301" -265302,USB-C Charging Cable,1,11.95,10/08/19 12:44,"841 Walnut St, San Francisco, CA 94016" -265303,AAA Batteries (4-pack),1,2.99,10/11/19 16:07,"637 Pine St, Portland, OR 97035" -265304,Wired Headphones,1,11.99,10/20/19 12:18,"256 Lakeview St, Boston, MA 02215" -265305,Wired Headphones,1,11.99,10/29/19 10:59,"204 Sunset St, Los Angeles, CA 90001" -265306,AAA Batteries (4-pack),1,2.99,10/24/19 14:54,"193 Park St, San Francisco, CA 94016" -265307,Bose SoundSport Headphones,1,99.99,10/08/19 13:17,"631 Center St, Los Angeles, CA 90001" -265308,iPhone,1,700,10/09/19 15:55,"335 Adams St, Seattle, WA 98101" -265309,AA Batteries (4-pack),2,3.84,10/20/19 20:48,"257 Lakeview St, Atlanta, GA 30301" -265310,27in FHD Monitor,1,149.99,10/05/19 11:13,"303 Center St, Seattle, WA 98101" -265311,Lightning Charging Cable,1,14.95,10/22/19 10:38,"742 West St, San Francisco, CA 94016" -265312,Apple Airpods Headphones,1,150,10/22/19 15:47,"546 Wilson St, Los Angeles, CA 90001" -265313,USB-C Charging Cable,1,11.95,10/21/19 16:06,"239 6th St, Atlanta, GA 30301" -265314,Apple Airpods Headphones,1,150,10/26/19 10:37,"814 6th St, Boston, MA 02215" -265315,USB-C Charging Cable,1,11.95,10/28/19 22:17,"799 South St, San Francisco, CA 94016" -265316,AA Batteries (4-pack),1,3.84,10/17/19 18:26,"734 Pine St, Portland, OR 97035" -265317,AA Batteries (4-pack),1,3.84,10/08/19 11:37,"867 Hill St, Seattle, WA 98101" -265318,USB-C Charging Cable,1,11.95,10/28/19 07:31,"867 South St, San Francisco, CA 94016" -265319,27in 4K Gaming Monitor,1,389.99,10/03/19 14:34,"632 Hickory St, Dallas, TX 75001" -265320,AA Batteries (4-pack),1,3.84,10/10/19 16:58,"900 Willow St, Portland, OR 97035" -265321,AA Batteries (4-pack),1,3.84,10/03/19 10:41,"940 2nd St, Boston, MA 02215" -265322,AA Batteries (4-pack),1,3.84,10/08/19 12:16,"241 Jefferson St, Portland, OR 97035" -265323,Flatscreen TV,1,300,10/16/19 17:46,"291 7th St, Los Angeles, CA 90001" -265324,Wired Headphones,1,11.99,10/13/19 21:51,"101 Forest St, Seattle, WA 98101" -265325,AA Batteries (4-pack),1,3.84,10/29/19 21:26,"977 Lake St, San Francisco, CA 94016" -265326,iPhone,1,700,10/05/19 16:44,"164 Hill St, San Francisco, CA 94016" -265327,Wired Headphones,1,11.99,10/27/19 18:56,"902 12th St, Austin, TX 73301" -265328,Lightning Charging Cable,1,14.95,10/16/19 12:47,"945 Maple St, Atlanta, GA 30301" -265329,AAA Batteries (4-pack),1,2.99,10/19/19 17:27,"612 Church St, San Francisco, CA 94016" -265330,Lightning Charging Cable,1,14.95,10/14/19 19:11,"410 12th St, Los Angeles, CA 90001" -265331,27in 4K Gaming Monitor,1,389.99,10/15/19 15:26,"366 10th St, San Francisco, CA 94016" -265332,Apple Airpods Headphones,1,150,10/14/19 15:23,"892 Meadow St, Seattle, WA 98101" -265333,Macbook Pro Laptop,1,1700,10/11/19 02:00,"561 7th St, Atlanta, GA 30301" -265334,Flatscreen TV,1,300,10/11/19 00:37,"177 Hickory St, San Francisco, CA 94016" -265335,Lightning Charging Cable,1,14.95,10/25/19 10:57,"981 Hill St, Seattle, WA 98101" -265336,USB-C Charging Cable,1,11.95,10/03/19 19:18,"132 Washington St, San Francisco, CA 94016" -265337,iPhone,1,700,10/20/19 15:59,"84 Maple St, Atlanta, GA 30301" -265338,iPhone,1,700,10/16/19 22:30,"359 Lake St, Atlanta, GA 30301" -265339,27in 4K Gaming Monitor,1,389.99,10/12/19 08:54,"297 4th St, Portland, OR 97035" -265340,ThinkPad Laptop,1,999.99,10/29/19 12:35,"870 4th St, Seattle, WA 98101" -265341,Bose SoundSport Headphones,1,99.99,10/02/19 07:01,"503 4th St, Atlanta, GA 30301" -265342,Wired Headphones,1,11.99,10/03/19 22:35,"689 Cedar St, Seattle, WA 98101" -265343,iPhone,1,700,10/21/19 14:25,"454 Ridge St, Los Angeles, CA 90001" -265343,Apple Airpods Headphones,1,150,10/21/19 14:25,"454 Ridge St, Los Angeles, CA 90001" -265344,AA Batteries (4-pack),3,3.84,10/22/19 13:11,"178 10th St, Austin, TX 73301" -265345,Bose SoundSport Headphones,1,99.99,10/08/19 14:41,"309 Highland St, Los Angeles, CA 90001" -265346,AA Batteries (4-pack),2,3.84,10/31/19 16:21,"884 2nd St, San Francisco, CA 94016" -265347,USB-C Charging Cable,1,11.95,10/13/19 18:55,"419 South St, San Francisco, CA 94016" -265348,Lightning Charging Cable,1,14.95,10/01/19 18:04,"700 Chestnut St, Austin, TX 73301" -265349,27in FHD Monitor,1,149.99,10/11/19 13:21,"949 Park St, Boston, MA 02215" -265350,Wired Headphones,1,11.99,10/20/19 20:07,"294 8th St, Austin, TX 73301" -265351,AAA Batteries (4-pack),1,2.99,10/15/19 15:47,"643 Church St, New York City, NY 10001" -265352,AA Batteries (4-pack),1,3.84,10/07/19 13:37,"630 4th St, New York City, NY 10001" -265353,AA Batteries (4-pack),2,3.84,10/07/19 15:27,"492 13th St, Dallas, TX 75001" -265354,Wired Headphones,3,11.99,10/19/19 13:48,"284 Sunset St, San Francisco, CA 94016" -265355,34in Ultrawide Monitor,1,379.99,10/17/19 14:23,"330 Chestnut St, New York City, NY 10001" -265356,AA Batteries (4-pack),1,3.84,10/12/19 06:40,"323 Church St, Dallas, TX 75001" -265357,Wired Headphones,1,11.99,10/10/19 14:34,"634 7th St, Los Angeles, CA 90001" -265358,Wired Headphones,1,11.99,10/10/19 13:46,"153 Forest St, Los Angeles, CA 90001" -265359,Apple Airpods Headphones,2,150,10/12/19 12:27,"339 Center St, Portland, ME 04101" -265360,iPhone,1,700,10/22/19 19:49,"120 5th St, Portland, OR 97035" -265361,Flatscreen TV,1,300,10/25/19 11:23,"654 5th St, Atlanta, GA 30301" -265362,Google Phone,1,600,10/13/19 18:21,"265 5th St, Dallas, TX 75001" -265363,AAA Batteries (4-pack),1,2.99,10/30/19 11:14,"872 Highland St, Portland, OR 97035" -265364,AAA Batteries (4-pack),1,2.99,10/04/19 23:51,"689 Maple St, Austin, TX 73301" -265365,Lightning Charging Cable,1,14.95,10/22/19 20:30,"256 Wilson St, Boston, MA 02215" -265365,Wired Headphones,1,11.99,10/22/19 20:30,"256 Wilson St, Boston, MA 02215" -265366,AA Batteries (4-pack),1,3.84,10/24/19 19:36,"357 Ridge St, San Francisco, CA 94016" -265367,Wired Headphones,2,11.99,10/02/19 20:14,"522 Walnut St, Portland, OR 97035" -265368,Bose SoundSport Headphones,1,99.99,10/10/19 19:19,"714 Washington St, Atlanta, GA 30301" -265369,USB-C Charging Cable,1,11.95,10/27/19 19:46,"249 Elm St, Atlanta, GA 30301" -265370,AAA Batteries (4-pack),2,2.99,10/27/19 10:43,"818 13th St, San Francisco, CA 94016" -265371,AAA Batteries (4-pack),1,2.99,10/06/19 13:41,"568 North St, Los Angeles, CA 90001" -265372,AAA Batteries (4-pack),1,2.99,10/19/19 19:37,"439 Johnson St, New York City, NY 10001" -265373,Flatscreen TV,1,300,10/09/19 23:32,"876 Hill St, San Francisco, CA 94016" -265374,27in 4K Gaming Monitor,1,389.99,10/23/19 19:49,"987 Lake St, Boston, MA 02215" -265375,Lightning Charging Cable,1,14.95,10/04/19 22:37,"686 10th St, New York City, NY 10001" -265376,Wired Headphones,1,11.99,10/21/19 11:32,"79 Elm St, Seattle, WA 98101" -265377,Apple Airpods Headphones,1,150,10/23/19 18:29,"135 10th St, Los Angeles, CA 90001" -265378,Apple Airpods Headphones,1,150,10/02/19 11:45,"42 Washington St, Austin, TX 73301" -265379,Lightning Charging Cable,1,14.95,10/25/19 11:56,"389 Lake St, Los Angeles, CA 90001" -265380,Apple Airpods Headphones,1,150,10/02/19 16:41,"675 Walnut St, Los Angeles, CA 90001" -265381,Macbook Pro Laptop,1,1700,10/08/19 21:10,"16 9th St, Portland, ME 04101" -265382,Bose SoundSport Headphones,1,99.99,10/03/19 00:44,"752 Adams St, New York City, NY 10001" -265382,AAA Batteries (4-pack),3,2.99,10/03/19 00:44,"752 Adams St, New York City, NY 10001" -265383,AAA Batteries (4-pack),3,2.99,10/05/19 09:44,"951 Cedar St, Dallas, TX 75001" -265384,Bose SoundSport Headphones,1,99.99,10/19/19 11:36,"30 Johnson St, New York City, NY 10001" -265385,34in Ultrawide Monitor,1,379.99,10/18/19 21:50,"105 Cedar St, San Francisco, CA 94016" -265386,27in FHD Monitor,1,149.99,10/05/19 00:27,"258 Dogwood St, Boston, MA 02215" -265387,USB-C Charging Cable,1,11.95,10/09/19 11:08,"438 Hickory St, Boston, MA 02215" -265388,Wired Headphones,1,11.99,10/30/19 14:49,"229 Madison St, Atlanta, GA 30301" -265389,Google Phone,1,600,10/09/19 17:53,"680 Sunset St, San Francisco, CA 94016" -265390,Macbook Pro Laptop,1,1700,10/28/19 19:35,"617 Pine St, Dallas, TX 75001" -265391,Google Phone,1,600,10/28/19 14:15,"768 Elm St, San Francisco, CA 94016" -265392,Wired Headphones,1,11.99,10/05/19 18:04,"963 Forest St, San Francisco, CA 94016" -265393,Apple Airpods Headphones,1,150,10/21/19 00:08,"632 Highland St, Boston, MA 02215" -265394,Apple Airpods Headphones,1,150,10/02/19 12:47,"843 Wilson St, Dallas, TX 75001" -265395,Lightning Charging Cable,1,14.95,10/17/19 15:40,"920 Wilson St, San Francisco, CA 94016" -265396,20in Monitor,1,109.99,10/12/19 14:34,"544 8th St, Dallas, TX 75001" -265397,Google Phone,1,600,10/11/19 16:26,"698 5th St, New York City, NY 10001" -265398,Bose SoundSport Headphones,1,99.99,10/21/19 12:56,"51 Lakeview St, San Francisco, CA 94016" -265399,USB-C Charging Cable,2,11.95,10/25/19 19:24,"893 North St, New York City, NY 10001" -265400,Bose SoundSport Headphones,1,99.99,10/04/19 20:57,"711 Washington St, Los Angeles, CA 90001" -265401,ThinkPad Laptop,1,999.99,10/18/19 10:24,"239 Chestnut St, Boston, MA 02215" -265402,AA Batteries (4-pack),1,3.84,10/14/19 18:08,"293 Johnson St, San Francisco, CA 94016" -265403,Apple Airpods Headphones,1,150,10/18/19 22:05,"575 Lincoln St, Seattle, WA 98101" -265404,Lightning Charging Cable,1,14.95,10/19/19 20:00,"588 River St, Dallas, TX 75001" -265405,Bose SoundSport Headphones,1,99.99,10/01/19 19:17,"472 Pine St, Boston, MA 02215" -265406,AAA Batteries (4-pack),2,2.99,10/18/19 14:38,"591 Lincoln St, New York City, NY 10001" -265407,AAA Batteries (4-pack),1,2.99,10/18/19 06:42,"378 6th St, Austin, TX 73301" -265408,Lightning Charging Cable,1,14.95,10/04/19 19:45,"920 South St, Seattle, WA 98101" -265409,27in FHD Monitor,1,149.99,10/08/19 13:27,"709 Ridge St, San Francisco, CA 94016" -265410,Lightning Charging Cable,2,14.95,10/20/19 16:07,"104 West St, San Francisco, CA 94016" -265411,34in Ultrawide Monitor,1,379.99,10/06/19 10:26,"707 Walnut St, New York City, NY 10001" -265412,Lightning Charging Cable,1,14.95,10/20/19 21:19,"610 8th St, Los Angeles, CA 90001" -265413,Wired Headphones,2,11.99,10/28/19 20:17,"559 4th St, San Francisco, CA 94016" -265414,Google Phone,1,600,10/22/19 10:54,"130 Lincoln St, Dallas, TX 75001" -265415,AAA Batteries (4-pack),4,2.99,10/20/19 14:56,"819 Johnson St, Boston, MA 02215" -265416,Wired Headphones,1,11.99,10/01/19 15:06,"862 13th St, San Francisco, CA 94016" -265417,AA Batteries (4-pack),1,3.84,10/04/19 15:10,"821 Center St, Boston, MA 02215" -265418,Flatscreen TV,1,300,10/15/19 22:02,"103 10th St, Atlanta, GA 30301" -265419,LG Washing Machine,1,600.0,10/26/19 12:43,"249 Pine St, San Francisco, CA 94016" -265420,USB-C Charging Cable,1,11.95,10/16/19 17:19,"759 2nd St, Austin, TX 73301" -265421,AAA Batteries (4-pack),2,2.99,10/01/19 15:58,"696 Johnson St, San Francisco, CA 94016" -265422,ThinkPad Laptop,1,999.99,10/09/19 16:59,"169 Church St, Boston, MA 02215" -265423,Lightning Charging Cable,1,14.95,10/13/19 10:03,"770 Jackson St, New York City, NY 10001" -265424,27in 4K Gaming Monitor,1,389.99,10/10/19 11:01,"166 Willow St, Austin, TX 73301" -265425,Flatscreen TV,1,300,10/02/19 10:37,"895 Jefferson St, Austin, TX 73301" -265426,Google Phone,1,600,10/23/19 14:07,"777 Main St, San Francisco, CA 94016" -265427,Bose SoundSport Headphones,1,99.99,10/19/19 12:35,"853 Center St, San Francisco, CA 94016" -265427,Lightning Charging Cable,1,14.95,10/19/19 12:35,"853 Center St, San Francisco, CA 94016" -265428,Bose SoundSport Headphones,1,99.99,10/05/19 17:09,"840 14th St, San Francisco, CA 94016" -265429,34in Ultrawide Monitor,1,379.99,10/20/19 18:28,"86 Spruce St, San Francisco, CA 94016" -265430,27in FHD Monitor,1,149.99,10/09/19 12:20,"78 Church St, Los Angeles, CA 90001" -265431,Lightning Charging Cable,1,14.95,10/31/19 13:06,"605 Madison St, Los Angeles, CA 90001" -265432,34in Ultrawide Monitor,1,379.99,10/29/19 22:11,"756 Main St, San Francisco, CA 94016" -265433,Apple Airpods Headphones,1,150,10/26/19 12:11,"463 Johnson St, San Francisco, CA 94016" -265434,Apple Airpods Headphones,1,150,10/24/19 07:11,"190 Highland St, Los Angeles, CA 90001" -265435,AAA Batteries (4-pack),2,2.99,10/17/19 15:44,"542 Forest St, Los Angeles, CA 90001" -265436,AAA Batteries (4-pack),2,2.99,10/18/19 07:45,"476 Meadow St, San Francisco, CA 94016" -265437,AA Batteries (4-pack),1,3.84,10/30/19 08:48,"128 9th St, Boston, MA 02215" -265438,Lightning Charging Cable,1,14.95,10/22/19 18:51,"102 Cherry St, Dallas, TX 75001" -265439,Wired Headphones,1,11.99,10/17/19 12:39,"827 North St, Seattle, WA 98101" -265440,Wired Headphones,1,11.99,10/04/19 01:14,"669 Chestnut St, Boston, MA 02215" -265441,USB-C Charging Cable,1,11.95,10/09/19 10:08,"759 14th St, Atlanta, GA 30301" -265442,AA Batteries (4-pack),1,3.84,10/03/19 18:14,"778 Highland St, New York City, NY 10001" -265443,AA Batteries (4-pack),2,3.84,10/11/19 10:40,"716 Park St, New York City, NY 10001" -265444,USB-C Charging Cable,1,11.95,10/22/19 12:44,"688 1st St, San Francisco, CA 94016" -265445,AA Batteries (4-pack),2,3.84,10/15/19 23:24,"644 Chestnut St, New York City, NY 10001" -265446,Wired Headphones,1,11.99,10/04/19 10:14,"203 Forest St, San Francisco, CA 94016" -265447,AAA Batteries (4-pack),1,2.99,10/29/19 21:00,"256 Elm St, Austin, TX 73301" -265448,iPhone,1,700,10/29/19 16:41,"377 Meadow St, New York City, NY 10001" -265449,USB-C Charging Cable,1,11.95,10/17/19 13:40,"96 Willow St, Los Angeles, CA 90001" -265450,AAA Batteries (4-pack),3,2.99,10/16/19 09:00,"115 Lake St, Boston, MA 02215" -265451,Lightning Charging Cable,1,14.95,10/06/19 19:26,"799 Spruce St, Los Angeles, CA 90001" -265452,20in Monitor,1,109.99,10/10/19 23:20,"86 Hill St, Portland, OR 97035" -265453,USB-C Charging Cable,1,11.95,10/25/19 11:39,"42 Church St, Seattle, WA 98101" -265454,AAA Batteries (4-pack),1,2.99,10/27/19 14:32,"983 14th St, San Francisco, CA 94016" -265455,AA Batteries (4-pack),1,3.84,10/16/19 08:09,"329 Hill St, San Francisco, CA 94016" -265456,34in Ultrawide Monitor,1,379.99,10/30/19 18:34,"950 Hill St, Boston, MA 02215" -265457,ThinkPad Laptop,1,999.99,10/01/19 14:37,"31 5th St, Dallas, TX 75001" -265458,USB-C Charging Cable,1,11.95,10/18/19 19:54,"872 Dogwood St, Portland, OR 97035" -265459,Macbook Pro Laptop,1,1700,10/14/19 02:30,"747 Church St, New York City, NY 10001" -265460,Bose SoundSport Headphones,1,99.99,10/27/19 11:45,"285 Meadow St, Seattle, WA 98101" -265461,27in 4K Gaming Monitor,1,389.99,10/10/19 06:35,"423 South St, Portland, OR 97035" -265462,USB-C Charging Cable,1,11.95,10/25/19 15:46,"577 Sunset St, Boston, MA 02215" -265463,AA Batteries (4-pack),1,3.84,10/18/19 08:38,"141 Main St, Atlanta, GA 30301" -265464,Lightning Charging Cable,1,14.95,10/22/19 11:53,"514 Jefferson St, New York City, NY 10001" -265465,Bose SoundSport Headphones,1,99.99,10/18/19 12:25,"220 West St, Seattle, WA 98101" -265466,Wired Headphones,1,11.99,10/12/19 01:13,"804 13th St, Seattle, WA 98101" -265467,AA Batteries (4-pack),1,3.84,10/22/19 12:52,"824 Lincoln St, Dallas, TX 75001" -265468,Bose SoundSport Headphones,1,99.99,10/01/19 14:45,"47 Pine St, Portland, ME 04101" -265469,34in Ultrawide Monitor,1,379.99,10/08/19 02:08,"170 Madison St, New York City, NY 10001" -265470,Lightning Charging Cable,1,14.95,10/06/19 20:07,"203 10th St, Los Angeles, CA 90001" -265471,Lightning Charging Cable,1,14.95,10/16/19 15:12,"221 Maple St, San Francisco, CA 94016" -265472,iPhone,1,700,10/16/19 20:16,"195 Spruce St, Seattle, WA 98101" -265472,Wired Headphones,1,11.99,10/16/19 20:16,"195 Spruce St, Seattle, WA 98101" -265473,Wired Headphones,1,11.99,10/04/19 11:56,"972 West St, Boston, MA 02215" -265474,Wired Headphones,1,11.99,10/10/19 20:35,"641 Sunset St, San Francisco, CA 94016" -265475,USB-C Charging Cable,1,11.95,10/30/19 21:42,"213 9th St, New York City, NY 10001" -265476,Lightning Charging Cable,1,14.95,10/16/19 06:56,"348 Washington St, New York City, NY 10001" -265477,27in FHD Monitor,1,149.99,10/19/19 12:03,"334 Main St, Boston, MA 02215" -265478,USB-C Charging Cable,1,11.95,10/03/19 22:06,"537 Cedar St, Boston, MA 02215" -265479,Bose SoundSport Headphones,1,99.99,10/13/19 15:24,"476 Cedar St, New York City, NY 10001" -265480,Lightning Charging Cable,1,14.95,10/23/19 15:41,"341 Lakeview St, San Francisco, CA 94016" -265480,Lightning Charging Cable,1,14.95,10/23/19 15:41,"341 Lakeview St, San Francisco, CA 94016" -265481,Vareebadd Phone,1,400,10/24/19 01:46,"807 Jackson St, Boston, MA 02215" -265482,Wired Headphones,1,11.99,10/21/19 19:10,"109 Lakeview St, Austin, TX 73301" -265483,Wired Headphones,1,11.99,10/05/19 18:50,"686 Washington St, Seattle, WA 98101" -265484,Macbook Pro Laptop,1,1700,10/08/19 12:30,"80 Ridge St, Dallas, TX 75001" -265485,27in FHD Monitor,1,149.99,10/14/19 13:40,"205 Elm St, Atlanta, GA 30301" -265486,Flatscreen TV,1,300,10/11/19 09:59,"259 Wilson St, New York City, NY 10001" -265487,Lightning Charging Cable,1,14.95,10/10/19 19:36,"2 Willow St, San Francisco, CA 94016" -265488,AAA Batteries (4-pack),1,2.99,10/21/19 14:03,"188 14th St, Dallas, TX 75001" -265489,Macbook Pro Laptop,1,1700,10/23/19 10:29,"4 Pine St, Dallas, TX 75001" -265490,iPhone,1,700,10/30/19 11:05,"902 13th St, Los Angeles, CA 90001" -265491,AAA Batteries (4-pack),1,2.99,10/15/19 10:52,"900 12th St, San Francisco, CA 94016" -265492,USB-C Charging Cable,1,11.95,10/19/19 09:16,"349 Center St, San Francisco, CA 94016" -265493,Flatscreen TV,1,300,10/21/19 10:32,"470 Maple St, New York City, NY 10001" -265494,Bose SoundSport Headphones,1,99.99,10/29/19 17:09,"538 Ridge St, Atlanta, GA 30301" -265495,Wired Headphones,1,11.99,10/17/19 15:34,"860 Highland St, Austin, TX 73301" -265496,iPhone,1,700,10/11/19 16:55,"137 Meadow St, San Francisco, CA 94016" -265497,USB-C Charging Cable,1,11.95,10/11/19 16:32,"245 9th St, Atlanta, GA 30301" -265498,USB-C Charging Cable,1,11.95,10/27/19 16:58,"731 Park St, San Francisco, CA 94016" -265499,Wired Headphones,1,11.99,10/10/19 12:50,"894 Jackson St, San Francisco, CA 94016" -265500,AAA Batteries (4-pack),1,2.99,10/23/19 06:18,"848 2nd St, Seattle, WA 98101" -265501,34in Ultrawide Monitor,1,379.99,10/10/19 17:15,"366 Cedar St, New York City, NY 10001" -265502,Bose SoundSport Headphones,1,99.99,10/26/19 19:55,"29 Forest St, San Francisco, CA 94016" -265503,20in Monitor,1,109.99,10/10/19 15:12,"990 Sunset St, Boston, MA 02215" -265504,USB-C Charging Cable,1,11.95,10/03/19 07:29,"511 Johnson St, San Francisco, CA 94016" -265505,Apple Airpods Headphones,1,150,10/03/19 11:25,"29 13th St, San Francisco, CA 94016" -265506,Wired Headphones,1,11.99,10/24/19 13:25,"711 1st St, San Francisco, CA 94016" -265507,LG Washing Machine,1,600.0,10/25/19 13:03,"273 Dogwood St, San Francisco, CA 94016" -265508,USB-C Charging Cable,1,11.95,10/20/19 10:55,"564 6th St, Atlanta, GA 30301" -265509,Apple Airpods Headphones,1,150,10/29/19 17:04,"120 Spruce St, Boston, MA 02215" -265510,USB-C Charging Cable,1,11.95,10/15/19 08:27,"890 Jackson St, Dallas, TX 75001" -265511,AAA Batteries (4-pack),1,2.99,10/18/19 11:06,"745 5th St, Los Angeles, CA 90001" -265512,27in 4K Gaming Monitor,1,389.99,10/30/19 10:27,"671 Spruce St, San Francisco, CA 94016" -265513,Apple Airpods Headphones,1,150,10/22/19 13:49,"22 Elm St, Atlanta, GA 30301" -265514,27in FHD Monitor,1,149.99,10/04/19 20:26,"609 South St, Portland, OR 97035" -265515,Wired Headphones,1,11.99,10/31/19 10:57,"806 Main St, San Francisco, CA 94016" -265516,USB-C Charging Cable,1,11.95,10/07/19 19:26,"768 6th St, Dallas, TX 75001" -265517,Apple Airpods Headphones,1,150,10/23/19 21:33,"854 6th St, Dallas, TX 75001" -265518,AA Batteries (4-pack),1,3.84,10/15/19 09:33,"92 Forest St, Los Angeles, CA 90001" -265519,34in Ultrawide Monitor,1,379.99,10/27/19 20:15,"582 Jackson St, Seattle, WA 98101" -265520,27in 4K Gaming Monitor,1,389.99,10/09/19 09:10,"479 Washington St, Austin, TX 73301" -265521,Wired Headphones,1,11.99,10/26/19 20:15,"655 Lakeview St, Seattle, WA 98101" -265522,AAA Batteries (4-pack),1,2.99,10/27/19 22:23,"643 11th St, Dallas, TX 75001" -265523,AA Batteries (4-pack),1,3.84,10/01/19 11:52,"484 Highland St, Austin, TX 73301" -265524,Vareebadd Phone,1,400,10/09/19 21:09,"177 Spruce St, San Francisco, CA 94016" -265525,LG Dryer,1,600.0,10/12/19 18:34,"882 Highland St, San Francisco, CA 94016" -265526,Lightning Charging Cable,1,14.95,10/13/19 11:39,"750 Cherry St, Seattle, WA 98101" -265527,Bose SoundSport Headphones,1,99.99,10/24/19 13:34,"309 Highland St, Boston, MA 02215" -265528,27in FHD Monitor,1,149.99,10/27/19 16:26,"699 1st St, New York City, NY 10001" -265529,AAA Batteries (4-pack),1,2.99,10/14/19 15:33,"870 Lincoln St, Austin, TX 73301" -265530,Lightning Charging Cable,1,14.95,10/16/19 16:34,"756 Elm St, Portland, ME 04101" -265531,AAA Batteries (4-pack),1,2.99,10/24/19 19:52,"801 Lakeview St, New York City, NY 10001" -265532,27in FHD Monitor,1,149.99,10/10/19 20:30,"359 12th St, Boston, MA 02215" -265533,Lightning Charging Cable,1,14.95,10/22/19 15:28,"129 Highland St, Los Angeles, CA 90001" -265534,AAA Batteries (4-pack),1,2.99,10/13/19 23:35,"303 8th St, San Francisco, CA 94016" -265535,AA Batteries (4-pack),1,3.84,10/28/19 17:29,"827 Lincoln St, New York City, NY 10001" -265536,AA Batteries (4-pack),1,3.84,10/17/19 20:07,"855 Chestnut St, New York City, NY 10001" -265537,Wired Headphones,1,11.99,10/18/19 17:48,"811 River St, New York City, NY 10001" -265538,Wired Headphones,1,11.99,10/11/19 21:31,"446 Dogwood St, Los Angeles, CA 90001" -265539,AA Batteries (4-pack),1,3.84,10/19/19 12:10,"15 West St, Dallas, TX 75001" -265540,USB-C Charging Cable,1,11.95,10/10/19 10:44,"145 Madison St, New York City, NY 10001" -265541,Apple Airpods Headphones,1,150,10/15/19 09:39,"277 11th St, San Francisco, CA 94016" -265542,Apple Airpods Headphones,1,150,10/19/19 15:08,"890 River St, Boston, MA 02215" -265543,AA Batteries (4-pack),1,3.84,10/11/19 17:50,"120 8th St, Portland, OR 97035" -265544,Lightning Charging Cable,1,14.95,10/14/19 09:29,"578 Church St, San Francisco, CA 94016" -265545,20in Monitor,1,109.99,10/09/19 14:41,"369 14th St, Seattle, WA 98101" -265546,Wired Headphones,1,11.99,10/29/19 13:13,"827 4th St, Los Angeles, CA 90001" -265547,Lightning Charging Cable,1,14.95,10/17/19 21:26,"585 Hill St, New York City, NY 10001" -265548,Lightning Charging Cable,1,14.95,10/14/19 19:09,"6 Pine St, Los Angeles, CA 90001" -265549,AAA Batteries (4-pack),1,2.99,10/07/19 14:14,"574 Elm St, Los Angeles, CA 90001" -265550,AAA Batteries (4-pack),2,2.99,10/23/19 17:50,"615 Hickory St, San Francisco, CA 94016" -265551,Vareebadd Phone,1,400,10/25/19 11:51,"601 9th St, Los Angeles, CA 90001" -265552,USB-C Charging Cable,1,11.95,10/30/19 15:01,"288 Lincoln St, San Francisco, CA 94016" -265553,Apple Airpods Headphones,1,150,10/26/19 16:15,"793 Cedar St, Boston, MA 02215" -265554,USB-C Charging Cable,1,11.95,10/13/19 03:54,"877 Cherry St, Atlanta, GA 30301" -265555,USB-C Charging Cable,1,11.95,10/15/19 23:12,"229 Adams St, San Francisco, CA 94016" -265556,USB-C Charging Cable,1,11.95,10/09/19 16:34,"942 Cherry St, San Francisco, CA 94016" -265557,Wired Headphones,1,11.99,10/25/19 20:16,"441 4th St, Seattle, WA 98101" -265558,Flatscreen TV,1,300,10/17/19 19:22,"842 Madison St, Austin, TX 73301" -265559,USB-C Charging Cable,2,11.95,10/01/19 15:15,"373 Lakeview St, New York City, NY 10001" -265560,Wired Headphones,1,11.99,10/14/19 16:17,"777 Cedar St, Boston, MA 02215" -265561,Wired Headphones,1,11.99,10/09/19 00:04,"972 Lakeview St, Los Angeles, CA 90001" -265562,Lightning Charging Cable,2,14.95,10/13/19 03:22,"593 6th St, Austin, TX 73301" -265563,Vareebadd Phone,1,400,10/19/19 14:20,"419 6th St, San Francisco, CA 94016" -265563,Wired Headphones,1,11.99,10/19/19 14:20,"419 6th St, San Francisco, CA 94016" -265564,AA Batteries (4-pack),1,3.84,10/12/19 14:43,"526 Walnut St, Portland, OR 97035" -265565,USB-C Charging Cable,1,11.95,10/21/19 00:28,"503 Dogwood St, Seattle, WA 98101" -265566,USB-C Charging Cable,1,11.95,10/20/19 21:42,"174 12th St, New York City, NY 10001" -265567,Wired Headphones,1,11.99,10/28/19 08:10,"451 1st St, New York City, NY 10001" -265568,AAA Batteries (4-pack),1,2.99,10/19/19 19:09,"812 Johnson St, Austin, TX 73301" -265569,Apple Airpods Headphones,1,150,10/09/19 12:57,"914 Sunset St, San Francisco, CA 94016" -265570,USB-C Charging Cable,1,11.95,10/04/19 14:42,"668 10th St, New York City, NY 10001" -265571,27in 4K Gaming Monitor,1,389.99,10/31/19 11:12,"999 Dogwood St, Los Angeles, CA 90001" -265572,27in 4K Gaming Monitor,1,389.99,10/22/19 14:25,"504 Washington St, Dallas, TX 75001" -265573,ThinkPad Laptop,1,999.99,10/13/19 11:18,"686 12th St, San Francisco, CA 94016" -265574,Bose SoundSport Headphones,1,99.99,10/11/19 14:44,"917 Meadow St, New York City, NY 10001" -265575,Macbook Pro Laptop,1,1700,10/13/19 13:35,"89 6th St, Los Angeles, CA 90001" -265576,AAA Batteries (4-pack),1,2.99,10/24/19 15:28,"218 13th St, San Francisco, CA 94016" -265577,Bose SoundSport Headphones,1,99.99,10/28/19 12:25,"617 Dogwood St, Los Angeles, CA 90001" -265578,Wired Headphones,1,11.99,10/20/19 18:26,"110 Elm St, Atlanta, GA 30301" -265579,Apple Airpods Headphones,1,150,10/19/19 14:53,"805 Jackson St, Atlanta, GA 30301" -265580,AAA Batteries (4-pack),1,2.99,10/28/19 19:03,"797 Chestnut St, New York City, NY 10001" -265581,27in FHD Monitor,1,149.99,10/26/19 11:02,"311 Main St, Los Angeles, CA 90001" -265582,Apple Airpods Headphones,1,150,10/22/19 23:27,"790 Madison St, Atlanta, GA 30301" -265583,Bose SoundSport Headphones,1,99.99,10/29/19 14:18,"87 10th St, San Francisco, CA 94016" -265584,Wired Headphones,1,11.99,10/07/19 18:46,"481 West St, Atlanta, GA 30301" -265585,27in 4K Gaming Monitor,1,389.99,10/03/19 07:37,"453 2nd St, Los Angeles, CA 90001" -265586,34in Ultrawide Monitor,1,379.99,10/08/19 11:57,"576 Adams St, Dallas, TX 75001" -265587,AAA Batteries (4-pack),1,2.99,10/25/19 18:19,"483 8th St, Boston, MA 02215" -265588,Lightning Charging Cable,1,14.95,10/11/19 22:22,"995 Lake St, San Francisco, CA 94016" -265589,Lightning Charging Cable,1,14.95,10/15/19 00:37,"819 4th St, Los Angeles, CA 90001" -265590,Bose SoundSport Headphones,1,99.99,10/01/19 13:22,"162 North St, Boston, MA 02215" -265591,27in FHD Monitor,1,149.99,10/31/19 18:08,"751 Cherry St, Seattle, WA 98101" -265592,27in 4K Gaming Monitor,1,389.99,10/20/19 21:25,"745 2nd St, New York City, NY 10001" -265593,Wired Headphones,1,11.99,10/01/19 08:53,"50 Madison St, New York City, NY 10001" -265594,AA Batteries (4-pack),1,3.84,10/12/19 04:40,"198 Forest St, Austin, TX 73301" -265595,Apple Airpods Headphones,1,150,10/20/19 00:14,"524 8th St, Los Angeles, CA 90001" -265596,Lightning Charging Cable,1,14.95,10/04/19 16:04,"631 Park St, San Francisco, CA 94016" -265597,Lightning Charging Cable,1,14.95,10/18/19 10:53,"654 2nd St, San Francisco, CA 94016" -265598,AAA Batteries (4-pack),1,2.99,10/29/19 11:11,"914 Washington St, New York City, NY 10001" -265599,USB-C Charging Cable,1,11.95,10/03/19 14:16,"37 River St, San Francisco, CA 94016" -265600,AA Batteries (4-pack),1,3.84,10/19/19 22:36,"144 Jackson St, Boston, MA 02215" -265601,Bose SoundSport Headphones,1,99.99,10/23/19 00:05,"107 Maple St, Portland, OR 97035" -265602,Google Phone,1,600,10/31/19 16:38,"858 Walnut St, Boston, MA 02215" -265603,Bose SoundSport Headphones,1,99.99,10/02/19 22:21,"386 West St, Austin, TX 73301" -265604,Wired Headphones,1,11.99,10/24/19 19:54,"706 Wilson St, Los Angeles, CA 90001" -265605,Lightning Charging Cable,1,14.95,10/26/19 18:36,"841 Ridge St, Portland, ME 04101" -265606,Google Phone,1,600,10/31/19 16:17,"852 Center St, Los Angeles, CA 90001" -265606,Bose SoundSport Headphones,1,99.99,10/31/19 16:17,"852 Center St, Los Angeles, CA 90001" -265607,iPhone,1,700,10/27/19 16:11,"83 Cedar St, Boston, MA 02215" -265607,Wired Headphones,1,11.99,10/27/19 16:11,"83 Cedar St, Boston, MA 02215" -265608,Apple Airpods Headphones,1,150,10/17/19 22:24,"685 7th St, San Francisco, CA 94016" -265609,iPhone,1,700,10/14/19 18:51,"832 5th St, San Francisco, CA 94016" -265610,Macbook Pro Laptop,1,1700,10/07/19 19:48,"864 9th St, Los Angeles, CA 90001" -265611,Apple Airpods Headphones,1,150,10/29/19 06:37,"999 Main St, Austin, TX 73301" -265612,Apple Airpods Headphones,1,150,10/26/19 13:07,"545 Cedar St, Austin, TX 73301" -265613,Wired Headphones,1,11.99,10/06/19 20:08,"620 4th St, Portland, OR 97035" -265614,iPhone,1,700,10/10/19 16:11,"246 Johnson St, New York City, NY 10001" -265615,AAA Batteries (4-pack),2,2.99,10/29/19 16:58,"523 Highland St, San Francisco, CA 94016" -265616,AAA Batteries (4-pack),1,2.99,10/18/19 22:49,"882 Hickory St, Atlanta, GA 30301" -265617,Apple Airpods Headphones,1,150,10/16/19 00:42,"844 Jefferson St, Atlanta, GA 30301" -265618,Bose SoundSport Headphones,1,99.99,10/11/19 18:54,"613 Lincoln St, Los Angeles, CA 90001" -265619,AAA Batteries (4-pack),5,2.99,10/28/19 13:02,"699 Jefferson St, San Francisco, CA 94016" -265620,AA Batteries (4-pack),1,3.84,10/15/19 16:56,"557 Lake St, Dallas, TX 75001" -265621,Apple Airpods Headphones,1,150,10/10/19 20:49,"561 Center St, Austin, TX 73301" -265622,AAA Batteries (4-pack),1,2.99,10/13/19 19:10,"419 Lakeview St, San Francisco, CA 94016" -265623,Apple Airpods Headphones,1,150,10/28/19 14:01,"48 Jefferson St, San Francisco, CA 94016" -265624,USB-C Charging Cable,1,11.95,10/16/19 16:22,"183 South St, Seattle, WA 98101" -265625,AAA Batteries (4-pack),1,2.99,10/01/19 23:45,"116 Main St, San Francisco, CA 94016" -265626,27in FHD Monitor,1,149.99,10/16/19 17:22,"572 Walnut St, New York City, NY 10001" -265627,AAA Batteries (4-pack),2,2.99,10/22/19 22:36,"19 Washington St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -265628,27in 4K Gaming Monitor,1,389.99,10/20/19 11:46,"515 10th St, San Francisco, CA 94016" -265629,USB-C Charging Cable,1,11.95,10/06/19 22:55,"547 10th St, Boston, MA 02215" -265630,ThinkPad Laptop,1,999.99,10/24/19 23:08,"381 Church St, Los Angeles, CA 90001" -265631,20in Monitor,1,109.99,10/27/19 16:14,"446 Forest St, Los Angeles, CA 90001" -265632,27in FHD Monitor,1,149.99,10/22/19 19:40,"702 Hickory St, New York City, NY 10001" -265633,AAA Batteries (4-pack),2,2.99,10/27/19 10:46,"265 Park St, Seattle, WA 98101" -265634,AA Batteries (4-pack),1,3.84,10/15/19 16:05,"319 Walnut St, Los Angeles, CA 90001" -265635,Apple Airpods Headphones,1,150,10/07/19 17:43,"413 Forest St, Los Angeles, CA 90001" -265636,Bose SoundSport Headphones,1,99.99,10/05/19 21:46,"773 Meadow St, San Francisco, CA 94016" -265637,AA Batteries (4-pack),2,3.84,10/06/19 11:55,"988 Hickory St, Boston, MA 02215" -265638,iPhone,1,700,10/24/19 11:22,"178 13th St, Boston, MA 02215" -265638,Lightning Charging Cable,1,14.95,10/24/19 11:22,"178 13th St, Boston, MA 02215" -265639,Lightning Charging Cable,1,14.95,10/22/19 11:10,"972 Willow St, Dallas, TX 75001" -265640,Wired Headphones,1,11.99,10/28/19 12:56,"60 13th St, New York City, NY 10001" -265641,34in Ultrawide Monitor,1,379.99,10/20/19 17:31,"789 8th St, San Francisco, CA 94016" -265642,USB-C Charging Cable,2,11.95,10/12/19 17:36,"740 Pine St, Los Angeles, CA 90001" -265643,Apple Airpods Headphones,1,150,10/13/19 21:08,"11 10th St, Seattle, WA 98101" -265644,AA Batteries (4-pack),6,3.84,10/12/19 13:02,"441 11th St, Los Angeles, CA 90001" -265645,Wired Headphones,1,11.99,10/08/19 23:24,"900 Lincoln St, Boston, MA 02215" -265646,USB-C Charging Cable,1,11.95,10/13/19 19:07,"803 10th St, San Francisco, CA 94016" -265647,Wired Headphones,1,11.99,10/25/19 11:44,"212 11th St, New York City, NY 10001" -265648,AAA Batteries (4-pack),2,2.99,10/16/19 07:48,"278 Spruce St, Atlanta, GA 30301" -265649,Lightning Charging Cable,1,14.95,10/23/19 10:25,"852 Madison St, New York City, NY 10001" -265650,ThinkPad Laptop,1,999.99,10/11/19 12:15,"388 12th St, San Francisco, CA 94016" -265651,Flatscreen TV,1,300,10/29/19 18:35,"577 Chestnut St, San Francisco, CA 94016" -265652,AA Batteries (4-pack),1,3.84,10/11/19 11:23,"788 Washington St, Los Angeles, CA 90001" -265653,Apple Airpods Headphones,1,150,10/24/19 09:49,"737 West St, San Francisco, CA 94016" -265654,AAA Batteries (4-pack),1,2.99,10/16/19 21:19,"731 Lakeview St, Seattle, WA 98101" -265655,34in Ultrawide Monitor,1,379.99,10/26/19 22:40,"863 Ridge St, San Francisco, CA 94016" -265656,Lightning Charging Cable,1,14.95,10/02/19 20:55,"708 Elm St, Austin, TX 73301" -265657,USB-C Charging Cable,1,11.95,10/28/19 23:03,"280 River St, Atlanta, GA 30301" -265658,Apple Airpods Headphones,1,150,10/01/19 22:27,"165 Cedar St, San Francisco, CA 94016" -265659,USB-C Charging Cable,1,11.95,10/08/19 21:47,"666 Washington St, New York City, NY 10001" -265660,Apple Airpods Headphones,1,150,10/16/19 10:51,"494 Jackson St, San Francisco, CA 94016" -265661,Apple Airpods Headphones,1,150,10/12/19 21:24,"114 1st St, Los Angeles, CA 90001" -265662,Lightning Charging Cable,1,14.95,10/29/19 19:55,"196 11th St, New York City, NY 10001" -265663,34in Ultrawide Monitor,1,379.99,10/31/19 15:25,"563 Forest St, Dallas, TX 75001" -265664,Lightning Charging Cable,1,14.95,10/03/19 10:01,"739 Johnson St, Atlanta, GA 30301" -265665,Bose SoundSport Headphones,1,99.99,10/25/19 20:05,"11 Willow St, Portland, ME 04101" -265666,Wired Headphones,1,11.99,10/21/19 09:02,"203 5th St, San Francisco, CA 94016" -265667,Wired Headphones,1,11.99,10/03/19 09:44,"785 Dogwood St, San Francisco, CA 94016" -265668,Apple Airpods Headphones,1,150,10/27/19 14:18,"741 Lake St, Boston, MA 02215" -265669,20in Monitor,1,109.99,10/13/19 15:12,"446 Chestnut St, Los Angeles, CA 90001" -265670,Google Phone,1,600,10/12/19 20:30,"137 Maple St, San Francisco, CA 94016" -265670,Wired Headphones,1,11.99,10/12/19 20:30,"137 Maple St, San Francisco, CA 94016" -265671,AAA Batteries (4-pack),1,2.99,10/15/19 21:15,"166 Meadow St, Atlanta, GA 30301" -265672,iPhone,1,700,10/20/19 14:26,"204 Wilson St, San Francisco, CA 94016" -265673,34in Ultrawide Monitor,1,379.99,10/18/19 00:42,"545 West St, Los Angeles, CA 90001" -265674,Lightning Charging Cable,1,14.95,10/24/19 14:35,"645 Church St, Los Angeles, CA 90001" -265674,Bose SoundSport Headphones,1,99.99,10/24/19 14:35,"645 Church St, Los Angeles, CA 90001" -265675,Lightning Charging Cable,1,14.95,10/29/19 13:48,"585 South St, New York City, NY 10001" -265676,Wired Headphones,1,11.99,10/17/19 14:48,"229 14th St, San Francisco, CA 94016" -265677,AA Batteries (4-pack),2,3.84,10/23/19 10:36,"438 Willow St, Boston, MA 02215" -265678,ThinkPad Laptop,1,999.99,10/04/19 13:35,"570 West St, Atlanta, GA 30301" -265679,Lightning Charging Cable,1,14.95,10/03/19 07:57,"910 9th St, Atlanta, GA 30301" -265679,Wired Headphones,1,11.99,10/03/19 07:57,"910 9th St, Atlanta, GA 30301" -265680,USB-C Charging Cable,1,11.95,10/25/19 19:53,"280 13th St, New York City, NY 10001" -265681,Wired Headphones,1,11.99,10/31/19 16:52,"19 Jackson St, San Francisco, CA 94016" -265682,AA Batteries (4-pack),1,3.84,10/11/19 11:49,"336 Ridge St, Los Angeles, CA 90001" -265683,Bose SoundSport Headphones,1,99.99,10/23/19 18:22,"689 6th St, San Francisco, CA 94016" -265684,AAA Batteries (4-pack),1,2.99,10/26/19 07:17,"402 6th St, San Francisco, CA 94016" -265685,Lightning Charging Cable,1,14.95,10/05/19 07:28,"79 Lake St, San Francisco, CA 94016" -265686,AAA Batteries (4-pack),2,2.99,10/14/19 00:16,"140 Chestnut St, Boston, MA 02215" -265687,USB-C Charging Cable,1,11.95,10/23/19 13:54,"671 Meadow St, San Francisco, CA 94016" -265688,AA Batteries (4-pack),1,3.84,10/22/19 18:54,"98 Lincoln St, Boston, MA 02215" -265689,Wired Headphones,1,11.99,10/17/19 11:44,"633 14th St, Los Angeles, CA 90001" -265690,AA Batteries (4-pack),1,3.84,10/12/19 13:28,"232 13th St, Los Angeles, CA 90001" -265691,Apple Airpods Headphones,1,150,10/21/19 21:31,"603 Highland St, Los Angeles, CA 90001" -265692,Lightning Charging Cable,1,14.95,10/04/19 18:35,"829 Chestnut St, Atlanta, GA 30301" -265693,USB-C Charging Cable,1,11.95,10/15/19 09:15,"392 Spruce St, New York City, NY 10001" -265694,Bose SoundSport Headphones,1,99.99,10/30/19 18:38,"358 Spruce St, Boston, MA 02215" -265695,AA Batteries (4-pack),2,3.84,10/02/19 20:34,"368 Lakeview St, Portland, OR 97035" -265696,Bose SoundSport Headphones,1,99.99,10/11/19 15:03,"331 6th St, Atlanta, GA 30301" -265697,Lightning Charging Cable,1,14.95,10/09/19 11:37,"965 10th St, Boston, MA 02215" -265698,Google Phone,1,600,10/11/19 01:45,"50 Center St, Portland, ME 04101" -265699,AA Batteries (4-pack),1,3.84,10/09/19 14:12,"441 2nd St, Austin, TX 73301" -265700,Wired Headphones,1,11.99,10/19/19 10:34,"945 Cedar St, New York City, NY 10001" -265701,Wired Headphones,1,11.99,10/04/19 19:01,"718 Hickory St, San Francisco, CA 94016" -265702,27in FHD Monitor,1,149.99,10/03/19 14:26,"892 Church St, Atlanta, GA 30301" -265703,Lightning Charging Cable,1,14.95,10/08/19 14:38,"705 Sunset St, New York City, NY 10001" -265704,27in 4K Gaming Monitor,1,389.99,10/23/19 14:48,"453 9th St, San Francisco, CA 94016" -265705,AA Batteries (4-pack),2,3.84,10/25/19 19:27,"355 14th St, Los Angeles, CA 90001" -265706,Flatscreen TV,1,300,10/08/19 15:09,"949 2nd St, San Francisco, CA 94016" -265707,AAA Batteries (4-pack),1,2.99,10/29/19 06:22,"94 Walnut St, San Francisco, CA 94016" -265708,Lightning Charging Cable,1,14.95,10/23/19 02:48,"942 Maple St, San Francisco, CA 94016" -265709,Bose SoundSport Headphones,1,99.99,10/15/19 20:17,"760 Cherry St, Los Angeles, CA 90001" -265710,Bose SoundSport Headphones,1,99.99,10/30/19 14:07,"539 Ridge St, San Francisco, CA 94016" -265711,Lightning Charging Cable,1,14.95,10/07/19 17:09,"262 Walnut St, San Francisco, CA 94016" -265712,Lightning Charging Cable,1,14.95,10/21/19 13:39,"788 Maple St, Dallas, TX 75001" -265713,USB-C Charging Cable,1,11.95,10/29/19 18:38,"246 West St, Seattle, WA 98101" -265714,AAA Batteries (4-pack),1,2.99,10/06/19 16:08,"349 9th St, Los Angeles, CA 90001" -265715,Lightning Charging Cable,1,14.95,10/10/19 10:30,"524 Spruce St, San Francisco, CA 94016" -265716,AA Batteries (4-pack),1,3.84,10/11/19 08:25,"356 Hickory St, Boston, MA 02215" -265717,Apple Airpods Headphones,1,150,10/19/19 10:53,"883 Church St, Seattle, WA 98101" -265718,Flatscreen TV,1,300,10/04/19 21:07,"806 Jackson St, San Francisco, CA 94016" -265719,Macbook Pro Laptop,1,1700,10/22/19 12:38,"498 11th St, San Francisco, CA 94016" -265720,Bose SoundSport Headphones,1,99.99,10/07/19 20:16,"1 Adams St, Los Angeles, CA 90001" -265721,iPhone,1,700,10/16/19 23:25,"131 7th St, New York City, NY 10001" -265722,AA Batteries (4-pack),2,3.84,10/04/19 17:39,"798 1st St, San Francisco, CA 94016" -265723,AA Batteries (4-pack),1,3.84,10/06/19 09:50,"881 Church St, Austin, TX 73301" -265724,Apple Airpods Headphones,1,150,10/17/19 18:55,"694 Adams St, Atlanta, GA 30301" -265725,Lightning Charging Cable,1,14.95,10/09/19 08:52,"619 Chestnut St, Los Angeles, CA 90001" -265726,27in FHD Monitor,1,149.99,10/23/19 12:02,"138 Madison St, San Francisco, CA 94016" -265727,Apple Airpods Headphones,1,150,10/06/19 14:55,"733 North St, New York City, NY 10001" -265728,AA Batteries (4-pack),1,3.84,10/15/19 16:38,"480 Elm St, New York City, NY 10001" -265729,Macbook Pro Laptop,1,1700,10/29/19 22:30,"765 Elm St, Portland, OR 97035" -265730,Lightning Charging Cable,1,14.95,10/20/19 19:15,"257 Willow St, San Francisco, CA 94016" -265731,USB-C Charging Cable,1,11.95,10/07/19 09:51,"416 Johnson St, Dallas, TX 75001" -265732,AAA Batteries (4-pack),2,2.99,10/16/19 14:58,"990 Maple St, Dallas, TX 75001" -265733,AAA Batteries (4-pack),1,2.99,10/23/19 14:32,"417 Maple St, New York City, NY 10001" -265734,AA Batteries (4-pack),1,3.84,10/01/19 18:41,"516 Lake St, San Francisco, CA 94016" -265735,Lightning Charging Cable,1,14.95,10/22/19 18:35,"546 Pine St, Boston, MA 02215" -265736,Bose SoundSport Headphones,1,99.99,10/06/19 04:17,"12 Adams St, Dallas, TX 75001" -265736,Wired Headphones,1,11.99,10/06/19 04:17,"12 Adams St, Dallas, TX 75001" -265737,34in Ultrawide Monitor,1,379.99,10/21/19 15:49,"59 4th St, Boston, MA 02215" -265738,USB-C Charging Cable,1,11.95,10/22/19 14:30,"169 Chestnut St, Los Angeles, CA 90001" -265739,Flatscreen TV,1,300,10/05/19 17:36,"441 Lakeview St, Austin, TX 73301" -265740,iPhone,1,700,10/01/19 10:16,"224 Walnut St, Los Angeles, CA 90001" -265740,Apple Airpods Headphones,1,150,10/01/19 10:16,"224 Walnut St, Los Angeles, CA 90001" -265741,Wired Headphones,1,11.99,10/21/19 21:58,"999 Lincoln St, Boston, MA 02215" -265742,Apple Airpods Headphones,1,150,10/20/19 13:43,"486 Main St, Seattle, WA 98101" -265743,ThinkPad Laptop,1,999.99,10/06/19 19:48,"527 Elm St, New York City, NY 10001" -265744,Wired Headphones,1,11.99,10/24/19 15:45,"536 Lake St, Austin, TX 73301" -265745,Wired Headphones,1,11.99,10/04/19 09:42,"180 10th St, San Francisco, CA 94016" -265746,USB-C Charging Cable,1,11.95,10/29/19 10:57,"345 Johnson St, Boston, MA 02215" -265747,Macbook Pro Laptop,1,1700,10/02/19 19:59,"712 Hill St, New York City, NY 10001" -265748,AA Batteries (4-pack),1,3.84,10/06/19 09:36,"352 Lincoln St, Portland, OR 97035" -265749,Bose SoundSport Headphones,1,99.99,10/29/19 13:52,"742 Washington St, Seattle, WA 98101" -265750,Lightning Charging Cable,1,14.95,10/10/19 17:31,"675 Cherry St, San Francisco, CA 94016" -265751,AA Batteries (4-pack),1,3.84,10/27/19 06:36,"525 Sunset St, New York City, NY 10001" -265752,AAA Batteries (4-pack),3,2.99,10/08/19 19:44,"828 Hickory St, New York City, NY 10001" -265753,AA Batteries (4-pack),2,3.84,10/03/19 19:25,"855 Cedar St, San Francisco, CA 94016" -265754,USB-C Charging Cable,2,11.95,10/23/19 20:00,"993 Maple St, San Francisco, CA 94016" -265755,34in Ultrawide Monitor,1,379.99,10/26/19 20:18,"367 Hill St, New York City, NY 10001" -265756,AAA Batteries (4-pack),2,2.99,10/27/19 19:06,"975 West St, New York City, NY 10001" -265757,Lightning Charging Cable,1,14.95,10/04/19 20:13,"931 Wilson St, Seattle, WA 98101" -265758,20in Monitor,1,109.99,10/02/19 21:09,"147 14th St, Seattle, WA 98101" -265759,AAA Batteries (4-pack),1,2.99,10/26/19 15:25,"75 Forest St, New York City, NY 10001" -265760,USB-C Charging Cable,1,11.95,10/07/19 18:08,"302 Hickory St, Portland, OR 97035" -265761,20in Monitor,1,109.99,10/06/19 01:10,"564 Chestnut St, Los Angeles, CA 90001" -265762,Bose SoundSport Headphones,1,99.99,10/08/19 20:52,"478 Maple St, San Francisco, CA 94016" -265763,Lightning Charging Cable,1,14.95,10/08/19 19:55,"699 8th St, Los Angeles, CA 90001" -265764,Wired Headphones,1,11.99,10/01/19 15:30,"880 5th St, New York City, NY 10001" -265765,USB-C Charging Cable,1,11.95,10/24/19 15:32,"660 Center St, Boston, MA 02215" -265765,USB-C Charging Cable,1,11.95,10/24/19 15:32,"660 Center St, Boston, MA 02215" -265766,Apple Airpods Headphones,1,150,10/16/19 21:38,"431 Cherry St, Dallas, TX 75001" -265767,Wired Headphones,1,11.99,10/31/19 00:18,"18 12th St, Austin, TX 73301" -265768,USB-C Charging Cable,1,11.95,10/02/19 11:27,"827 8th St, Dallas, TX 75001" -265769,Vareebadd Phone,1,400,10/30/19 08:38,"960 Church St, Dallas, TX 75001" -265770,AA Batteries (4-pack),1,3.84,10/10/19 17:01,"290 Church St, Portland, OR 97035" -265771,AAA Batteries (4-pack),2,2.99,10/17/19 20:38,"819 Forest St, Portland, OR 97035" -265772,AAA Batteries (4-pack),1,2.99,10/18/19 11:17,"518 1st St, Los Angeles, CA 90001" -265772,AAA Batteries (4-pack),1,2.99,10/18/19 11:17,"518 1st St, Los Angeles, CA 90001" -265773,USB-C Charging Cable,1,11.95,10/21/19 18:33,"949 5th St, Boston, MA 02215" -265774,Google Phone,1,600,10/20/19 12:25,"882 Spruce St, Atlanta, GA 30301" -265775,Bose SoundSport Headphones,1,99.99,10/15/19 11:12,"33 West St, San Francisco, CA 94016" -265776,AA Batteries (4-pack),1,3.84,10/10/19 18:30,"66 14th St, Los Angeles, CA 90001" -265777,USB-C Charging Cable,1,11.95,10/02/19 21:32,"462 Dogwood St, Los Angeles, CA 90001" -265778,USB-C Charging Cable,1,11.95,10/06/19 21:07,"513 Cherry St, San Francisco, CA 94016" -,,,,, -265779,34in Ultrawide Monitor,1,379.99,10/24/19 21:17,"482 10th St, Seattle, WA 98101" -265780,AAA Batteries (4-pack),1,2.99,10/10/19 14:33,"516 Dogwood St, Los Angeles, CA 90001" -265781,Lightning Charging Cable,3,14.95,10/20/19 10:42,"798 8th St, Atlanta, GA 30301" -265782,27in 4K Gaming Monitor,1,389.99,10/30/19 02:26,"183 Church St, Atlanta, GA 30301" -265783,USB-C Charging Cable,1,11.95,10/15/19 18:52,"908 Church St, Atlanta, GA 30301" -265784,LG Dryer,1,600.0,10/31/19 20:09,"618 River St, Los Angeles, CA 90001" -265785,AAA Batteries (4-pack),2,2.99,10/03/19 19:58,"947 Highland St, Seattle, WA 98101" -265786,Flatscreen TV,1,300,10/23/19 11:04,"677 Pine St, San Francisco, CA 94016" -265787,ThinkPad Laptop,1,999.99,10/07/19 21:50,"166 River St, Austin, TX 73301" -265788,AA Batteries (4-pack),1,3.84,10/14/19 15:11,"45 13th St, Los Angeles, CA 90001" -265789,AA Batteries (4-pack),1,3.84,10/02/19 01:22,"30 Adams St, Los Angeles, CA 90001" -265790,Lightning Charging Cable,1,14.95,10/22/19 14:08,"66 Wilson St, San Francisco, CA 94016" -265791,ThinkPad Laptop,1,999.99,10/11/19 11:56,"256 Spruce St, Atlanta, GA 30301" -265792,20in Monitor,1,109.99,10/11/19 18:36,"264 Park St, New York City, NY 10001" -265793,20in Monitor,1,109.99,10/02/19 12:58,"483 River St, New York City, NY 10001" -265794,Vareebadd Phone,1,400,10/10/19 15:17,"245 West St, San Francisco, CA 94016" -265795,Macbook Pro Laptop,1,1700,10/12/19 12:59,"852 Johnson St, New York City, NY 10001" -265796,Flatscreen TV,1,300,10/15/19 12:17,"810 Cedar St, Portland, OR 97035" -265797,Apple Airpods Headphones,1,150,10/10/19 11:16,"312 Dogwood St, Dallas, TX 75001" -265798,Wired Headphones,1,11.99,10/27/19 16:33,"405 Madison St, Boston, MA 02215" -265799,AAA Batteries (4-pack),1,2.99,10/07/19 21:08,"247 8th St, Seattle, WA 98101" -265800,Lightning Charging Cable,1,14.95,10/21/19 20:09,"909 Jackson St, Atlanta, GA 30301" -265801,Bose SoundSport Headphones,1,99.99,10/24/19 11:41,"499 River St, San Francisco, CA 94016" -265802,Lightning Charging Cable,1,14.95,10/30/19 23:25,"204 7th St, San Francisco, CA 94016" -265803,Apple Airpods Headphones,1,150,10/06/19 21:03,"158 Chestnut St, Boston, MA 02215" -265804,Apple Airpods Headphones,1,150,10/18/19 20:22,"197 Lake St, New York City, NY 10001" -265805,Lightning Charging Cable,1,14.95,10/11/19 03:25,"852 8th St, San Francisco, CA 94016" -265806,AA Batteries (4-pack),1,3.84,10/25/19 20:05,"174 South St, Boston, MA 02215" -265807,27in 4K Gaming Monitor,1,389.99,10/19/19 22:22,"280 Jefferson St, Los Angeles, CA 90001" -265808,Bose SoundSport Headphones,1,99.99,10/09/19 16:40,"800 Johnson St, Dallas, TX 75001" -265809,AAA Batteries (4-pack),1,2.99,10/25/19 13:55,"478 13th St, Los Angeles, CA 90001" -265810,ThinkPad Laptop,1,999.99,10/12/19 22:12,"946 Chestnut St, Austin, TX 73301" -265811,Apple Airpods Headphones,1,150,10/20/19 15:04,"366 Meadow St, San Francisco, CA 94016" -265812,AAA Batteries (4-pack),1,2.99,10/23/19 15:11,"479 8th St, San Francisco, CA 94016" -265813,Lightning Charging Cable,1,14.95,10/15/19 21:09,"496 Hickory St, Boston, MA 02215" -265814,USB-C Charging Cable,1,11.95,10/27/19 19:43,"434 Cedar St, Dallas, TX 75001" -265815,Lightning Charging Cable,1,14.95,10/29/19 18:17,"424 9th St, San Francisco, CA 94016" -265816,Lightning Charging Cable,1,14.95,10/29/19 16:17,"211 North St, Dallas, TX 75001" -265817,Bose SoundSport Headphones,1,99.99,10/23/19 16:29,"235 1st St, Dallas, TX 75001" -265818,AA Batteries (4-pack),1,3.84,10/23/19 15:27,"218 Wilson St, San Francisco, CA 94016" -265819,USB-C Charging Cable,1,11.95,10/21/19 23:22,"604 11th St, New York City, NY 10001" -265820,AA Batteries (4-pack),2,3.84,10/11/19 00:33,"401 5th St, Seattle, WA 98101" -265821,20in Monitor,1,109.99,10/18/19 20:35,"905 River St, Boston, MA 02215" -265822,Wired Headphones,1,11.99,10/05/19 19:37,"612 Jefferson St, New York City, NY 10001" -265823,Bose SoundSport Headphones,1,99.99,10/30/19 09:39,"760 13th St, New York City, NY 10001" -265824,AAA Batteries (4-pack),3,2.99,10/31/19 18:51,"613 Washington St, Boston, MA 02215" -265825,Google Phone,1,600,10/16/19 11:53,"477 Jackson St, Portland, OR 97035" -265825,Wired Headphones,1,11.99,10/16/19 11:53,"477 Jackson St, Portland, OR 97035" -265826,Apple Airpods Headphones,1,150,10/02/19 12:50,"39 West St, New York City, NY 10001" -265827,Vareebadd Phone,1,400,10/03/19 06:55,"839 Ridge St, San Francisco, CA 94016" -265828,AA Batteries (4-pack),1,3.84,10/27/19 20:00,"232 1st St, Portland, OR 97035" -265829,AA Batteries (4-pack),1,3.84,10/19/19 18:34,"655 12th St, Atlanta, GA 30301" -265830,USB-C Charging Cable,1,11.95,10/04/19 14:32,"183 Park St, Atlanta, GA 30301" -265831,AA Batteries (4-pack),1,3.84,10/23/19 19:16,"323 Walnut St, Los Angeles, CA 90001" -265832,Wired Headphones,1,11.99,10/03/19 13:26,"963 Park St, New York City, NY 10001" -265833,iPhone,1,700,10/20/19 07:02,"581 2nd St, San Francisco, CA 94016" -265833,Lightning Charging Cable,1,14.95,10/20/19 07:02,"581 2nd St, San Francisco, CA 94016" -265834,20in Monitor,1,109.99,10/08/19 16:56,"956 Adams St, San Francisco, CA 94016" -265835,Lightning Charging Cable,1,14.95,10/13/19 19:15,"296 12th St, San Francisco, CA 94016" -265836,Lightning Charging Cable,1,14.95,10/08/19 21:20,"657 1st St, San Francisco, CA 94016" -265837,Flatscreen TV,1,300,10/06/19 14:51,"364 Adams St, San Francisco, CA 94016" -265838,Wired Headphones,1,11.99,10/22/19 14:47,"813 North St, Atlanta, GA 30301" -265839,AAA Batteries (4-pack),1,2.99,10/27/19 22:21,"54 South St, San Francisco, CA 94016" -265840,Wired Headphones,1,11.99,10/23/19 13:03,"328 River St, Austin, TX 73301" -265841,AAA Batteries (4-pack),2,2.99,10/02/19 19:27,"978 Hickory St, Atlanta, GA 30301" -265842,AA Batteries (4-pack),1,3.84,10/20/19 21:20,"443 Lincoln St, San Francisco, CA 94016" -265843,Bose SoundSport Headphones,1,99.99,10/01/19 14:27,"481 1st St, San Francisco, CA 94016" -265844,Bose SoundSport Headphones,1,99.99,10/12/19 12:04,"833 Park St, San Francisco, CA 94016" -265845,Google Phone,1,600,10/10/19 08:10,"244 14th St, Los Angeles, CA 90001" -265846,Bose SoundSport Headphones,1,99.99,10/31/19 13:57,"584 North St, Los Angeles, CA 90001" -265847,USB-C Charging Cable,1,11.95,10/02/19 10:21,"606 Lakeview St, San Francisco, CA 94016" -265848,Bose SoundSport Headphones,1,99.99,10/08/19 11:39,"875 Spruce St, Atlanta, GA 30301" -265849,AA Batteries (4-pack),1,3.84,10/01/19 14:05,"922 Hickory St, San Francisco, CA 94016" -265850,USB-C Charging Cable,1,11.95,10/03/19 09:39,"748 Willow St, Los Angeles, CA 90001" -265851,Bose SoundSport Headphones,1,99.99,10/02/19 22:41,"302 Park St, Boston, MA 02215" -265852,AAA Batteries (4-pack),1,2.99,10/08/19 09:02,"970 Pine St, San Francisco, CA 94016" -265853,Apple Airpods Headphones,1,150,10/26/19 15:30,"265 12th St, New York City, NY 10001" -,,,,, -265854,27in 4K Gaming Monitor,1,389.99,10/30/19 11:34,"739 Pine St, Los Angeles, CA 90001" -265855,27in 4K Gaming Monitor,1,389.99,10/13/19 11:57,"693 Walnut St, Portland, OR 97035" -265856,27in FHD Monitor,1,149.99,10/10/19 13:13,"844 Forest St, New York City, NY 10001" -265857,AA Batteries (4-pack),2,3.84,10/27/19 21:26,"4 Willow St, San Francisco, CA 94016" -265858,Apple Airpods Headphones,1,150,10/15/19 21:15,"616 Meadow St, Los Angeles, CA 90001" -265859,AA Batteries (4-pack),1,3.84,10/07/19 22:15,"700 Meadow St, Austin, TX 73301" -265860,Apple Airpods Headphones,1,150,10/09/19 10:20,"982 1st St, New York City, NY 10001" -265861,Wired Headphones,1,11.99,10/14/19 12:22,"958 14th St, Los Angeles, CA 90001" -265862,Wired Headphones,1,11.99,10/13/19 13:00,"629 Maple St, Boston, MA 02215" -265863,iPhone,1,700,10/02/19 16:27,"609 7th St, Austin, TX 73301" -265863,AA Batteries (4-pack),1,3.84,10/02/19 16:27,"609 7th St, Austin, TX 73301" -265864,Wired Headphones,1,11.99,10/22/19 20:41,"848 Pine St, Boston, MA 02215" -265865,USB-C Charging Cable,1,11.95,10/04/19 18:36,"391 Madison St, New York City, NY 10001" -265866,AA Batteries (4-pack),1,3.84,10/15/19 19:57,"130 5th St, Los Angeles, CA 90001" -265867,Lightning Charging Cable,2,14.95,10/31/19 22:17,"632 Highland St, Seattle, WA 98101" -265868,Apple Airpods Headphones,1,150,10/17/19 12:28,"642 Chestnut St, New York City, NY 10001" -265869,AA Batteries (4-pack),1,3.84,10/10/19 21:52,"37 Church St, San Francisco, CA 94016" -265870,USB-C Charging Cable,1,11.95,10/25/19 19:15,"97 Spruce St, Boston, MA 02215" -265871,Bose SoundSport Headphones,1,99.99,10/15/19 23:05,"448 10th St, San Francisco, CA 94016" -265872,Lightning Charging Cable,1,14.95,10/30/19 16:40,"404 Pine St, Los Angeles, CA 90001" -265873,Apple Airpods Headphones,1,150,10/16/19 10:25,"792 Main St, Portland, OR 97035" -265874,Apple Airpods Headphones,1,150,10/14/19 11:02,"686 10th St, San Francisco, CA 94016" -265875,AA Batteries (4-pack),1,3.84,10/10/19 09:51,"200 Chestnut St, Seattle, WA 98101" -265876,27in 4K Gaming Monitor,1,389.99,10/12/19 21:33,"399 Pine St, Los Angeles, CA 90001" -265877,Bose SoundSport Headphones,1,99.99,10/06/19 19:06,"403 Main St, Los Angeles, CA 90001" -265878,Lightning Charging Cable,1,14.95,10/11/19 05:07,"761 Elm St, Austin, TX 73301" -265879,20in Monitor,1,109.99,10/13/19 11:48,"950 Center St, New York City, NY 10001" -265880,USB-C Charging Cable,3,11.95,10/13/19 19:17,"547 12th St, Boston, MA 02215" -265881,iPhone,1,700,10/09/19 13:52,"308 Meadow St, New York City, NY 10001" -265882,27in 4K Gaming Monitor,1,389.99,10/19/19 08:24,"109 13th St, San Francisco, CA 94016" -265883,Lightning Charging Cable,1,14.95,10/15/19 09:17,"181 South St, Los Angeles, CA 90001" -265884,Wired Headphones,1,11.99,10/19/19 22:52,"112 14th St, Portland, OR 97035" -265885,Lightning Charging Cable,1,14.95,10/27/19 05:55,"405 Lake St, New York City, NY 10001" -265886,Bose SoundSport Headphones,1,99.99,10/10/19 11:07,"892 Jackson St, New York City, NY 10001" -265887,Google Phone,1,600,10/27/19 20:57,"597 Hickory St, Los Angeles, CA 90001" -265888,34in Ultrawide Monitor,1,379.99,10/19/19 11:27,"344 Chestnut St, Atlanta, GA 30301" -265889,USB-C Charging Cable,1,11.95,10/02/19 09:57,"196 Hill St, Dallas, TX 75001" -265890,Lightning Charging Cable,2,14.95,10/03/19 15:01,"992 Elm St, San Francisco, CA 94016" -265891,Lightning Charging Cable,1,14.95,10/09/19 20:11,"824 Jefferson St, San Francisco, CA 94016" -265892,ThinkPad Laptop,1,999.99,10/04/19 12:31,"862 Madison St, Boston, MA 02215" -265893,Apple Airpods Headphones,1,150,10/23/19 15:55,"592 Madison St, San Francisco, CA 94016" -265894,Lightning Charging Cable,1,14.95,10/02/19 20:00,"416 Elm St, San Francisco, CA 94016" -265895,Apple Airpods Headphones,1,150,10/28/19 02:22,"723 9th St, San Francisco, CA 94016" -265896,Google Phone,1,600,10/29/19 10:52,"295 Sunset St, Seattle, WA 98101" -265897,Wired Headphones,1,11.99,10/15/19 14:26,"736 Lakeview St, Boston, MA 02215" -265897,AAA Batteries (4-pack),1,2.99,10/15/19 14:26,"736 Lakeview St, Boston, MA 02215" -265898,AA Batteries (4-pack),1,3.84,10/04/19 11:20,"157 7th St, New York City, NY 10001" -265899,iPhone,1,700,10/06/19 21:10,"71 Walnut St, San Francisco, CA 94016" -265900,20in Monitor,1,109.99,10/19/19 08:46,"649 Willow St, San Francisco, CA 94016" -265901,AA Batteries (4-pack),1,3.84,10/05/19 21:11,"727 Sunset St, New York City, NY 10001" -265901,Apple Airpods Headphones,1,150,10/05/19 21:11,"727 Sunset St, New York City, NY 10001" -265902,AA Batteries (4-pack),1,3.84,10/29/19 11:46,"928 Meadow St, Portland, OR 97035" -265903,27in FHD Monitor,1,149.99,10/20/19 13:58,"595 2nd St, Portland, OR 97035" -265904,Lightning Charging Cable,1,14.95,10/28/19 12:32,"671 Main St, Portland, OR 97035" -265905,Wired Headphones,1,11.99,10/02/19 05:20,"245 Lake St, Boston, MA 02215" -265906,AA Batteries (4-pack),2,3.84,10/07/19 06:29,"457 Cedar St, Los Angeles, CA 90001" -265907,Bose SoundSport Headphones,1,99.99,10/20/19 14:29,"212 Lake St, Austin, TX 73301" -265908,Macbook Pro Laptop,1,1700,10/31/19 14:34,"990 10th St, San Francisco, CA 94016" -265909,AA Batteries (4-pack),2,3.84,10/15/19 13:51,"753 Hickory St, San Francisco, CA 94016" -265910,Lightning Charging Cable,1,14.95,10/21/19 12:41,"772 North St, New York City, NY 10001" -265911,Lightning Charging Cable,1,14.95,10/25/19 14:29,"124 Hickory St, Boston, MA 02215" -265912,Google Phone,1,600,10/06/19 16:36,"293 Jackson St, Los Angeles, CA 90001" -265912,Bose SoundSport Headphones,1,99.99,10/06/19 16:36,"293 Jackson St, Los Angeles, CA 90001" -265913,27in 4K Gaming Monitor,1,389.99,10/02/19 12:31,"306 Cherry St, New York City, NY 10001" -265914,Macbook Pro Laptop,1,1700,10/07/19 20:20,"821 11th St, New York City, NY 10001" -265915,Wired Headphones,1,11.99,10/09/19 02:40,"430 Hill St, Los Angeles, CA 90001" -265916,AA Batteries (4-pack),2,3.84,10/28/19 05:39,"669 10th St, New York City, NY 10001" -265917,Bose SoundSport Headphones,1,99.99,10/17/19 16:16,"66 South St, Los Angeles, CA 90001" -265918,20in Monitor,1,109.99,10/29/19 22:51,"882 South St, New York City, NY 10001" -265919,34in Ultrawide Monitor,1,379.99,10/20/19 14:38,"46 Cedar St, Atlanta, GA 30301" -265920,Flatscreen TV,1,300,10/18/19 21:21,"663 Willow St, New York City, NY 10001" -265921,27in 4K Gaming Monitor,1,389.99,10/16/19 19:42,"788 Johnson St, Austin, TX 73301" -265922,Wired Headphones,1,11.99,10/12/19 18:55,"723 West St, San Francisco, CA 94016" -265923,AAA Batteries (4-pack),1,2.99,10/03/19 19:17,"275 Johnson St, Boston, MA 02215" -265924,Macbook Pro Laptop,1,1700,10/17/19 23:19,"317 11th St, Boston, MA 02215" -265925,27in FHD Monitor,1,149.99,10/09/19 14:17,"974 Walnut St, Los Angeles, CA 90001" -265926,Bose SoundSport Headphones,1,99.99,10/04/19 21:44,"731 Forest St, San Francisco, CA 94016" -265927,AAA Batteries (4-pack),1,2.99,10/21/19 16:56,"765 Cherry St, Portland, OR 97035" -265928,AA Batteries (4-pack),1,3.84,10/14/19 19:59,"600 9th St, Atlanta, GA 30301" -265929,AA Batteries (4-pack),2,3.84,10/21/19 17:03,"798 9th St, Austin, TX 73301" -265930,USB-C Charging Cable,1,11.95,10/03/19 12:33,"826 6th St, Los Angeles, CA 90001" -265931,Lightning Charging Cable,2,14.95,10/25/19 18:25,"539 Main St, Portland, OR 97035" -265932,Apple Airpods Headphones,1,150,10/06/19 01:55,"889 Church St, New York City, NY 10001" -265933,AAA Batteries (4-pack),1,2.99,10/17/19 18:03,"674 11th St, Boston, MA 02215" -265934,AA Batteries (4-pack),1,3.84,10/22/19 22:24,"509 Willow St, New York City, NY 10001" -265935,34in Ultrawide Monitor,1,379.99,10/17/19 17:02,"989 Jackson St, Atlanta, GA 30301" -265936,USB-C Charging Cable,1,11.95,10/12/19 18:14,"298 Lake St, San Francisco, CA 94016" -265937,Vareebadd Phone,1,400,10/05/19 08:38,"771 Wilson St, San Francisco, CA 94016" -265938,USB-C Charging Cable,1,11.95,10/07/19 13:37,"389 Spruce St, Atlanta, GA 30301" -265939,Vareebadd Phone,1,400,10/14/19 15:10,"644 4th St, San Francisco, CA 94016" -265940,Lightning Charging Cable,1,14.95,10/30/19 13:26,"962 Chestnut St, Los Angeles, CA 90001" -265941,Wired Headphones,2,11.99,10/15/19 11:34,"213 Meadow St, San Francisco, CA 94016" -265942,Macbook Pro Laptop,1,1700,10/11/19 18:33,"7 Washington St, New York City, NY 10001" -265943,AAA Batteries (4-pack),2,2.99,10/08/19 10:24,"881 Johnson St, Seattle, WA 98101" -265944,AAA Batteries (4-pack),5,2.99,10/14/19 10:12,"660 Sunset St, Los Angeles, CA 90001" -265945,Lightning Charging Cable,1,14.95,10/25/19 06:55,"388 Chestnut St, Dallas, TX 75001" -265946,iPhone,1,700,10/09/19 17:27,"371 Hill St, San Francisco, CA 94016" -265947,Macbook Pro Laptop,1,1700,10/27/19 12:38,"949 Spruce St, Los Angeles, CA 90001" -265948,20in Monitor,1,109.99,10/22/19 22:32,"113 Ridge St, Dallas, TX 75001" -265949,USB-C Charging Cable,1,11.95,10/21/19 13:19,"462 6th St, San Francisco, CA 94016" -265950,Lightning Charging Cable,1,14.95,10/10/19 20:39,"748 Wilson St, Atlanta, GA 30301" -265951,Lightning Charging Cable,1,14.95,10/26/19 18:01,"87 Dogwood St, Atlanta, GA 30301" -265952,Lightning Charging Cable,1,14.95,10/11/19 07:51,"524 Chestnut St, New York City, NY 10001" -265953,Apple Airpods Headphones,1,150,10/12/19 07:31,"582 River St, Los Angeles, CA 90001" -265954,Wired Headphones,1,11.99,10/10/19 11:41,"200 13th St, Los Angeles, CA 90001" -265955,Wired Headphones,1,11.99,10/12/19 10:56,"578 Pine St, San Francisco, CA 94016" -265956,AAA Batteries (4-pack),1,2.99,10/02/19 11:04,"860 13th St, Boston, MA 02215" -265957,ThinkPad Laptop,1,999.99,10/30/19 21:22,"814 Spruce St, Los Angeles, CA 90001" -265958,AAA Batteries (4-pack),1,2.99,10/26/19 03:26,"393 1st St, San Francisco, CA 94016" -265959,Apple Airpods Headphones,1,150,10/21/19 16:38,"884 Church St, San Francisco, CA 94016" -265960,Wired Headphones,1,11.99,10/27/19 10:54,"837 Center St, Seattle, WA 98101" -265961,Flatscreen TV,1,300,10/02/19 23:04,"331 Main St, Boston, MA 02215" -265962,USB-C Charging Cable,1,11.95,10/19/19 16:45,"781 Madison St, Atlanta, GA 30301" -265963,Lightning Charging Cable,1,14.95,10/09/19 21:49,"463 Lincoln St, New York City, NY 10001" -265964,AA Batteries (4-pack),1,3.84,10/28/19 14:20,"642 Cedar St, Boston, MA 02215" -265965,Wired Headphones,1,11.99,10/03/19 11:28,"525 Highland St, Los Angeles, CA 90001" -265966,AA Batteries (4-pack),2,3.84,10/10/19 12:06,"409 Church St, San Francisco, CA 94016" -265967,AA Batteries (4-pack),3,3.84,10/10/19 21:01,"803 6th St, Atlanta, GA 30301" -265968,ThinkPad Laptop,1,999.99,10/19/19 22:16,"357 Madison St, New York City, NY 10001" -265969,AA Batteries (4-pack),2,3.84,10/18/19 13:04,"613 9th St, Seattle, WA 98101" -265970,iPhone,1,700,10/17/19 12:47,"803 Center St, San Francisco, CA 94016" -265971,USB-C Charging Cable,1,11.95,10/21/19 18:55,"757 9th St, San Francisco, CA 94016" -265972,USB-C Charging Cable,1,11.95,10/01/19 20:00,"490 Lake St, San Francisco, CA 94016" -265973,Wired Headphones,1,11.99,10/19/19 20:58,"267 Hill St, New York City, NY 10001" -265974,Apple Airpods Headphones,1,150,10/15/19 19:03,"604 Hill St, San Francisco, CA 94016" -265975,27in 4K Gaming Monitor,1,389.99,10/19/19 14:42,"665 Park St, San Francisco, CA 94016" -265976,iPhone,1,700,10/21/19 02:19,"204 Chestnut St, Atlanta, GA 30301" -265977,Lightning Charging Cable,1,14.95,10/22/19 23:22,"688 Hill St, Portland, OR 97035" -265978,AAA Batteries (4-pack),3,2.99,10/16/19 19:50,"123 14th St, San Francisco, CA 94016" -265979,AA Batteries (4-pack),1,3.84,10/12/19 12:50,"536 Jackson St, New York City, NY 10001" -265980,Apple Airpods Headphones,1,150,10/04/19 15:04,"447 5th St, New York City, NY 10001" -265981,Apple Airpods Headphones,1,150,10/09/19 09:29,"855 Sunset St, Dallas, TX 75001" -265982,Wired Headphones,1,11.99,10/07/19 21:09,"280 Dogwood St, Dallas, TX 75001" -265983,iPhone,1,700,10/12/19 12:57,"588 River St, San Francisco, CA 94016" -265984,USB-C Charging Cable,1,11.95,10/06/19 14:58,"717 Forest St, Atlanta, GA 30301" -265985,27in FHD Monitor,1,149.99,10/05/19 08:23,"571 Cherry St, Dallas, TX 75001" -265986,AA Batteries (4-pack),2,3.84,10/09/19 14:22,"184 Jackson St, Los Angeles, CA 90001" -265987,Apple Airpods Headphones,2,150,10/08/19 08:55,"851 Wilson St, Dallas, TX 75001" -265988,Bose SoundSport Headphones,1,99.99,10/12/19 17:01,"986 Adams St, San Francisco, CA 94016" -265989,Wired Headphones,1,11.99,10/30/19 21:09,"397 Spruce St, Boston, MA 02215" -265990,Lightning Charging Cable,1,14.95,10/28/19 22:06,"179 Chestnut St, San Francisco, CA 94016" -265991,Lightning Charging Cable,1,14.95,10/13/19 13:19,"793 1st St, San Francisco, CA 94016" -265992,USB-C Charging Cable,1,11.95,10/17/19 04:27,"718 Center St, Boston, MA 02215" -265993,27in 4K Gaming Monitor,1,389.99,10/08/19 13:38,"743 Park St, Los Angeles, CA 90001" -265994,AAA Batteries (4-pack),2,2.99,10/18/19 19:17,"127 2nd St, Los Angeles, CA 90001" -265995,20in Monitor,1,109.99,10/02/19 13:04,"511 11th St, Austin, TX 73301" -265996,Bose SoundSport Headphones,1,99.99,10/22/19 17:07,"447 Hill St, New York City, NY 10001" -265997,Bose SoundSport Headphones,1,99.99,10/30/19 16:45,"917 13th St, Portland, OR 97035" -265998,USB-C Charging Cable,1,11.95,10/23/19 13:52,"555 Adams St, Austin, TX 73301" -265999,USB-C Charging Cable,1,11.95,10/01/19 21:16,"432 6th St, Boston, MA 02215" -266000,USB-C Charging Cable,1,11.95,10/28/19 21:31,"103 Chestnut St, Austin, TX 73301" -266001,Lightning Charging Cable,1,14.95,10/09/19 11:01,"239 Dogwood St, San Francisco, CA 94016" -266002,Bose SoundSport Headphones,1,99.99,10/16/19 12:32,"551 Elm St, Los Angeles, CA 90001" -266003,Lightning Charging Cable,1,14.95,10/01/19 17:50,"278 8th St, Los Angeles, CA 90001" -266004,34in Ultrawide Monitor,1,379.99,10/02/19 21:33,"313 Forest St, New York City, NY 10001" -266005,Google Phone,1,600,10/11/19 17:32,"555 Jackson St, Dallas, TX 75001" -266006,ThinkPad Laptop,1,999.99,10/30/19 22:43,"573 Jackson St, San Francisco, CA 94016" -266007,AA Batteries (4-pack),2,3.84,10/10/19 11:06,"465 Maple St, New York City, NY 10001" -266008,AA Batteries (4-pack),1,3.84,10/17/19 15:23,"587 Jefferson St, New York City, NY 10001" -266009,34in Ultrawide Monitor,1,379.99,10/01/19 21:20,"544 Jackson St, Seattle, WA 98101" -266010,27in 4K Gaming Monitor,1,389.99,10/02/19 12:22,"46 2nd St, San Francisco, CA 94016" -266011,Apple Airpods Headphones,1,150,10/09/19 22:53,"316 Forest St, Atlanta, GA 30301" -266012,Macbook Pro Laptop,1,1700,10/10/19 17:45,"210 Park St, Atlanta, GA 30301" -266013,iPhone,1,700,10/11/19 21:13,"157 Highland St, Boston, MA 02215" -266013,Lightning Charging Cable,1,14.95,10/11/19 21:13,"157 Highland St, Boston, MA 02215" -266014,USB-C Charging Cable,1,11.95,10/27/19 08:42,"362 Ridge St, New York City, NY 10001" -266015,iPhone,1,700,10/31/19 21:45,"148 Adams St, New York City, NY 10001" -266016,27in 4K Gaming Monitor,1,389.99,10/24/19 15:34,"838 4th St, Los Angeles, CA 90001" -266017,Lightning Charging Cable,1,14.95,10/26/19 19:20,"636 Walnut St, Boston, MA 02215" -266018,USB-C Charging Cable,1,11.95,10/27/19 13:29,"724 Madison St, New York City, NY 10001" -266019,Bose SoundSport Headphones,1,99.99,10/29/19 20:48,"140 Ridge St, Seattle, WA 98101" -266020,USB-C Charging Cable,1,11.95,10/16/19 16:00,"934 West St, Dallas, TX 75001" -266021,AAA Batteries (4-pack),3,2.99,10/13/19 17:57,"11 Adams St, Portland, OR 97035" -266022,AAA Batteries (4-pack),1,2.99,10/20/19 21:49,"72 9th St, New York City, NY 10001" -266023,Bose SoundSport Headphones,1,99.99,10/30/19 13:10,"843 River St, San Francisco, CA 94016" -266024,AAA Batteries (4-pack),1,2.99,10/02/19 05:27,"409 6th St, Boston, MA 02215" -266025,ThinkPad Laptop,1,999.99,10/15/19 10:25,"563 Chestnut St, Seattle, WA 98101" -266026,Google Phone,1,600,10/11/19 21:38,"164 Lakeview St, Boston, MA 02215" -266027,AAA Batteries (4-pack),1,2.99,10/19/19 15:58,"347 Ridge St, Seattle, WA 98101" -266028,Wired Headphones,1,11.99,10/23/19 15:31,"612 Chestnut St, Atlanta, GA 30301" -266029,27in 4K Gaming Monitor,1,389.99,10/19/19 23:18,"983 South St, Atlanta, GA 30301" -266030,27in FHD Monitor,1,149.99,10/02/19 07:12,"525 Lake St, San Francisco, CA 94016" -266031,34in Ultrawide Monitor,1,379.99,10/23/19 18:30,"201 6th St, New York City, NY 10001" -266032,AA Batteries (4-pack),1,3.84,10/02/19 21:21,"532 Cedar St, Boston, MA 02215" -266033,Lightning Charging Cable,1,14.95,10/08/19 17:27,"278 Adams St, Austin, TX 73301" -266034,LG Dryer,1,600.0,10/12/19 11:09,"804 Meadow St, Los Angeles, CA 90001" -266035,AAA Batteries (4-pack),3,2.99,10/16/19 11:22,"358 Pine St, Atlanta, GA 30301" -266036,USB-C Charging Cable,1,11.95,10/12/19 07:08,"876 Lake St, San Francisco, CA 94016" -266037,USB-C Charging Cable,1,11.95,10/16/19 19:49,"756 Park St, Portland, OR 97035" -266038,Wired Headphones,1,11.99,10/27/19 11:18,"599 Maple St, San Francisco, CA 94016" -266039,USB-C Charging Cable,1,11.95,10/10/19 11:26,"42 Wilson St, Seattle, WA 98101" -266040,Wired Headphones,2,11.99,10/23/19 22:25,"619 Spruce St, San Francisco, CA 94016" -266041,Wired Headphones,1,11.99,10/28/19 16:21,"759 Forest St, San Francisco, CA 94016" -266042,USB-C Charging Cable,1,11.95,10/27/19 12:47,"794 Elm St, Boston, MA 02215" -266043,USB-C Charging Cable,1,11.95,10/04/19 10:32,"535 11th St, Portland, ME 04101" -266044,AAA Batteries (4-pack),1,2.99,10/02/19 09:23,"619 Park St, San Francisco, CA 94016" -266045,ThinkPad Laptop,1,999.99,10/29/19 14:17,"744 12th St, Seattle, WA 98101" -266046,AAA Batteries (4-pack),1,2.99,10/19/19 10:29,"23 Forest St, Dallas, TX 75001" -266047,27in FHD Monitor,1,149.99,10/29/19 22:08,"658 4th St, Seattle, WA 98101" -266048,Flatscreen TV,1,300,10/30/19 13:39,"269 Lake St, Dallas, TX 75001" -,,,,, -266049,AAA Batteries (4-pack),1,2.99,10/15/19 11:49,"206 Church St, San Francisco, CA 94016" -266050,Lightning Charging Cable,1,14.95,10/31/19 15:51,"386 South St, Portland, OR 97035" -266051,Wired Headphones,1,11.99,10/29/19 10:23,"239 Lakeview St, Boston, MA 02215" -266052,20in Monitor,1,109.99,10/11/19 22:29,"945 South St, San Francisco, CA 94016" -266053,USB-C Charging Cable,1,11.95,10/03/19 19:05,"88 Park St, Seattle, WA 98101" -266054,Bose SoundSport Headphones,1,99.99,10/29/19 06:45,"62 North St, New York City, NY 10001" -266054,AAA Batteries (4-pack),1,2.99,10/29/19 06:45,"62 North St, New York City, NY 10001" -266055,iPhone,1,700,10/14/19 16:10,"594 Cherry St, San Francisco, CA 94016" -266055,Wired Headphones,1,11.99,10/14/19 16:10,"594 Cherry St, San Francisco, CA 94016" -266056,AAA Batteries (4-pack),1,2.99,10/13/19 17:17,"954 Hickory St, Seattle, WA 98101" -266057,USB-C Charging Cable,1,11.95,10/26/19 17:52,"571 South St, Seattle, WA 98101" -266058,Wired Headphones,1,11.99,10/10/19 22:36,"434 Park St, Austin, TX 73301" -266058,USB-C Charging Cable,1,11.95,10/10/19 22:36,"434 Park St, Austin, TX 73301" -266059,Bose SoundSport Headphones,1,99.99,10/16/19 15:13,"569 Hickory St, Boston, MA 02215" -266060,Flatscreen TV,1,300,10/11/19 20:35,"655 5th St, Boston, MA 02215" -266061,Bose SoundSport Headphones,1,99.99,10/26/19 08:00,"881 5th St, Boston, MA 02215" -266062,Vareebadd Phone,1,400,10/22/19 22:30,"167 Ridge St, San Francisco, CA 94016" -266063,Apple Airpods Headphones,1,150,10/02/19 19:54,"389 1st St, New York City, NY 10001" -266064,AAA Batteries (4-pack),1,2.99,10/20/19 09:58,"254 Jackson St, Boston, MA 02215" -266065,AAA Batteries (4-pack),1,2.99,10/15/19 19:20,"99 Spruce St, New York City, NY 10001" -266066,Lightning Charging Cable,1,14.95,10/17/19 21:07,"251 10th St, San Francisco, CA 94016" -266067,Wired Headphones,1,11.99,10/18/19 08:35,"752 Center St, San Francisco, CA 94016" -266068,Lightning Charging Cable,1,14.95,10/07/19 01:50,"24 9th St, San Francisco, CA 94016" -266069,Wired Headphones,1,11.99,10/31/19 20:26,"641 2nd St, Portland, ME 04101" -266070,USB-C Charging Cable,1,11.95,10/10/19 11:34,"975 Jackson St, New York City, NY 10001" -266071,Google Phone,1,600,10/13/19 21:24,"664 Maple St, Los Angeles, CA 90001" -266071,Lightning Charging Cable,1,14.95,10/13/19 21:24,"664 Maple St, Los Angeles, CA 90001" -266072,Macbook Pro Laptop,1,1700,10/27/19 13:05,"521 River St, New York City, NY 10001" -266073,AA Batteries (4-pack),1,3.84,10/20/19 18:04,"888 Lincoln St, San Francisco, CA 94016" -266074,Wired Headphones,1,11.99,10/06/19 00:31,"418 South St, San Francisco, CA 94016" -266075,Lightning Charging Cable,1,14.95,10/13/19 17:03,"506 Wilson St, Austin, TX 73301" -,,,,, -266076,AA Batteries (4-pack),1,3.84,10/11/19 23:49,"316 North St, Seattle, WA 98101" -266077,Lightning Charging Cable,1,14.95,10/02/19 10:40,"407 Ridge St, Portland, OR 97035" -266078,Google Phone,1,600,10/17/19 16:14,"896 Ridge St, San Francisco, CA 94016" -266079,AA Batteries (4-pack),1,3.84,10/18/19 11:16,"377 Hickory St, Austin, TX 73301" -266080,iPhone,1,700,10/08/19 12:11,"952 Dogwood St, Dallas, TX 75001" -266081,Apple Airpods Headphones,1,150,10/17/19 17:23,"501 Main St, Los Angeles, CA 90001" -266082,AAA Batteries (4-pack),2,2.99,10/26/19 10:47,"146 9th St, New York City, NY 10001" -266083,Apple Airpods Headphones,1,150,10/01/19 08:03,"767 Wilson St, Los Angeles, CA 90001" -266084,Flatscreen TV,1,300,10/23/19 06:26,"303 Center St, Atlanta, GA 30301" -266085,Bose SoundSport Headphones,1,99.99,10/21/19 12:29,"351 River St, San Francisco, CA 94016" -266086,Wired Headphones,1,11.99,10/07/19 18:06,"14 Willow St, Portland, ME 04101" -266087,Wired Headphones,1,11.99,10/25/19 15:52,"815 Spruce St, Boston, MA 02215" -266088,Apple Airpods Headphones,1,150,10/29/19 16:12,"405 6th St, San Francisco, CA 94016" -266089,USB-C Charging Cable,1,11.95,10/22/19 08:13,"631 13th St, Boston, MA 02215" -266090,27in 4K Gaming Monitor,1,389.99,10/07/19 19:19,"501 Center St, Los Angeles, CA 90001" -266091,27in 4K Gaming Monitor,1,389.99,10/10/19 20:27,"310 Elm St, San Francisco, CA 94016" -266092,ThinkPad Laptop,1,999.99,10/09/19 09:59,"265 Adams St, Dallas, TX 75001" -266093,Macbook Pro Laptop,1,1700,10/11/19 11:00,"953 Johnson St, Los Angeles, CA 90001" -266094,AA Batteries (4-pack),3,3.84,10/17/19 18:42,"72 12th St, Atlanta, GA 30301" -266095,20in Monitor,1,109.99,10/29/19 23:22,"267 Chestnut St, San Francisco, CA 94016" -266096,Apple Airpods Headphones,1,150,10/20/19 17:26,"451 6th St, New York City, NY 10001" -266097,Flatscreen TV,1,300,10/05/19 19:51,"114 10th St, San Francisco, CA 94016" -266098,Lightning Charging Cable,1,14.95,10/01/19 15:39,"696 Cherry St, Portland, OR 97035" -266099,Flatscreen TV,1,300,10/31/19 09:13,"109 Chestnut St, Atlanta, GA 30301" -266100,Bose SoundSport Headphones,1,99.99,10/10/19 14:57,"587 Walnut St, New York City, NY 10001" -266101,Lightning Charging Cable,1,14.95,10/11/19 19:49,"301 Sunset St, San Francisco, CA 94016" -266102,iPhone,1,700,10/22/19 21:29,"974 Main St, Dallas, TX 75001" -266103,AA Batteries (4-pack),1,3.84,10/31/19 02:54,"496 5th St, Seattle, WA 98101" -266104,Lightning Charging Cable,1,14.95,10/27/19 20:30,"984 1st St, Portland, OR 97035" -266105,Macbook Pro Laptop,1,1700,10/07/19 11:31,"773 8th St, New York City, NY 10001" -266106,34in Ultrawide Monitor,1,379.99,10/19/19 09:25,"289 North St, Seattle, WA 98101" -266107,Lightning Charging Cable,1,14.95,10/06/19 08:55,"212 Jackson St, Boston, MA 02215" -266108,iPhone,1,700,10/31/19 13:49,"57 Pine St, Portland, OR 97035" -266109,iPhone,1,700,10/09/19 12:43,"663 Wilson St, Seattle, WA 98101" -266110,USB-C Charging Cable,2,11.95,10/25/19 17:22,"88 13th St, San Francisco, CA 94016" -266111,iPhone,1,700,10/11/19 22:21,"61 Johnson St, Los Angeles, CA 90001" -266112,Macbook Pro Laptop,1,1700,10/06/19 21:08,"664 Cherry St, Los Angeles, CA 90001" -266113,ThinkPad Laptop,1,999.99,10/02/19 21:37,"16 Highland St, Atlanta, GA 30301" -266114,27in 4K Gaming Monitor,1,389.99,10/23/19 00:44,"573 6th St, Los Angeles, CA 90001" -266115,AAA Batteries (4-pack),3,2.99,10/06/19 17:40,"243 North St, San Francisco, CA 94016" -266116,USB-C Charging Cable,1,11.95,10/02/19 08:56,"887 Sunset St, San Francisco, CA 94016" -266116,AA Batteries (4-pack),1,3.84,10/02/19 08:56,"887 Sunset St, San Francisco, CA 94016" -266117,Apple Airpods Headphones,1,150,10/01/19 14:56,"692 8th St, Dallas, TX 75001" -266118,AAA Batteries (4-pack),5,2.99,10/05/19 00:45,"852 West St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -266119,USB-C Charging Cable,1,11.95,10/12/19 15:53,"993 Ridge St, San Francisco, CA 94016" -266120,34in Ultrawide Monitor,1,379.99,10/03/19 20:30,"532 Maple St, Seattle, WA 98101" -266121,Wired Headphones,1,11.99,10/22/19 11:48,"698 Meadow St, Seattle, WA 98101" -266122,USB-C Charging Cable,1,11.95,10/29/19 12:55,"260 8th St, Atlanta, GA 30301" -266123,27in FHD Monitor,1,149.99,10/05/19 17:57,"170 Spruce St, Atlanta, GA 30301" -266124,Macbook Pro Laptop,1,1700,10/25/19 16:38,"136 Hickory St, Austin, TX 73301" -266125,Lightning Charging Cable,1,14.95,10/21/19 22:19,"173 Sunset St, San Francisco, CA 94016" -266126,USB-C Charging Cable,2,11.95,10/26/19 21:13,"626 Maple St, Portland, OR 97035" -266127,Apple Airpods Headphones,1,150,10/21/19 14:37,"737 4th St, Dallas, TX 75001" -266128,27in FHD Monitor,1,149.99,10/10/19 11:58,"690 Center St, Seattle, WA 98101" -266129,AAA Batteries (4-pack),2,2.99,10/06/19 19:18,"820 Pine St, San Francisco, CA 94016" -266130,20in Monitor,1,109.99,10/13/19 14:45,"82 Main St, San Francisco, CA 94016" -266131,34in Ultrawide Monitor,1,379.99,10/28/19 09:14,"630 Pine St, Seattle, WA 98101" -266132,Apple Airpods Headphones,1,150,10/27/19 22:18,"692 Walnut St, Seattle, WA 98101" -266133,USB-C Charging Cable,1,11.95,10/20/19 13:07,"892 14th St, New York City, NY 10001" -266134,27in 4K Gaming Monitor,1,389.99,10/13/19 16:44,"846 South St, San Francisco, CA 94016" -266135,Google Phone,1,600,11/01/19 01:10,"551 Cherry St, Dallas, TX 75001" -266136,27in 4K Gaming Monitor,1,389.99,10/08/19 11:19,"899 13th St, Portland, OR 97035" -266137,AAA Batteries (4-pack),1,2.99,10/31/19 14:06,"274 Cedar St, Austin, TX 73301" -266138,AA Batteries (4-pack),2,3.84,10/22/19 16:31,"588 Forest St, Austin, TX 73301" -266139,Bose SoundSport Headphones,1,99.99,10/05/19 01:20,"807 2nd St, Dallas, TX 75001" -266140,Bose SoundSport Headphones,1,99.99,10/30/19 15:27,"346 14th St, San Francisco, CA 94016" -266141,Apple Airpods Headphones,1,150,10/02/19 14:43,"569 Chestnut St, Portland, OR 97035" -266142,Lightning Charging Cable,1,14.95,10/26/19 08:36,"248 Center St, Los Angeles, CA 90001" -266143,AAA Batteries (4-pack),2,2.99,10/14/19 10:32,"53 Walnut St, San Francisco, CA 94016" -266144,20in Monitor,1,109.99,10/28/19 10:58,"846 9th St, San Francisco, CA 94016" -266145,Lightning Charging Cable,1,14.95,10/06/19 17:01,"701 West St, San Francisco, CA 94016" -266146,AAA Batteries (4-pack),1,2.99,10/06/19 08:57,"316 Park St, San Francisco, CA 94016" -266147,Lightning Charging Cable,1,14.95,10/26/19 10:59,"169 Cedar St, New York City, NY 10001" -266148,Lightning Charging Cable,1,14.95,10/25/19 07:52,"996 Chestnut St, San Francisco, CA 94016" -266149,AA Batteries (4-pack),1,3.84,10/22/19 18:35,"259 Main St, San Francisco, CA 94016" -266150,Wired Headphones,1,11.99,10/11/19 11:37,"268 4th St, Boston, MA 02215" -266151,USB-C Charging Cable,1,11.95,10/31/19 21:13,"321 Hickory St, Portland, OR 97035" -266152,27in 4K Gaming Monitor,1,389.99,10/18/19 13:00,"129 Washington St, Los Angeles, CA 90001" -266153,Macbook Pro Laptop,1,1700,10/22/19 13:25,"825 Madison St, Seattle, WA 98101" -266154,Google Phone,1,600,10/23/19 13:33,"37 South St, Atlanta, GA 30301" -266155,27in FHD Monitor,1,149.99,10/24/19 12:18,"210 5th St, San Francisco, CA 94016" -266156,Google Phone,1,600,10/23/19 10:40,"341 River St, Los Angeles, CA 90001" -266156,Wired Headphones,1,11.99,10/23/19 10:40,"341 River St, Los Angeles, CA 90001" -266157,Lightning Charging Cable,1,14.95,10/07/19 07:29,"742 6th St, Dallas, TX 75001" -266158,Apple Airpods Headphones,1,150,10/27/19 17:26,"227 South St, San Francisco, CA 94016" -266159,Lightning Charging Cable,1,14.95,10/05/19 18:33,"751 6th St, Austin, TX 73301" -266160,AAA Batteries (4-pack),3,2.99,10/21/19 21:11,"86 Lincoln St, Dallas, TX 75001" -266161,Lightning Charging Cable,1,14.95,10/04/19 21:58,"507 Willow St, Boston, MA 02215" -266162,Apple Airpods Headphones,1,150,10/31/19 22:18,"475 Church St, Dallas, TX 75001" -266163,USB-C Charging Cable,1,11.95,10/21/19 08:40,"745 Pine St, San Francisco, CA 94016" -266164,Bose SoundSport Headphones,1,99.99,10/20/19 23:15,"966 Adams St, Los Angeles, CA 90001" -266165,Apple Airpods Headphones,1,150,10/25/19 16:17,"254 North St, New York City, NY 10001" -266166,Flatscreen TV,1,300,10/21/19 18:54,"277 Washington St, San Francisco, CA 94016" -266167,Apple Airpods Headphones,1,150,10/16/19 17:12,"766 North St, Los Angeles, CA 90001" -266168,27in 4K Gaming Monitor,1,389.99,10/27/19 19:22,"859 4th St, Seattle, WA 98101" -266169,Flatscreen TV,1,300,10/28/19 08:45,"384 Chestnut St, San Francisco, CA 94016" -266170,34in Ultrawide Monitor,1,379.99,10/05/19 16:19,"478 6th St, San Francisco, CA 94016" -266171,AAA Batteries (4-pack),1,2.99,10/09/19 08:50,"182 Cherry St, Seattle, WA 98101" -266172,Lightning Charging Cable,1,14.95,10/02/19 14:01,"575 Church St, Dallas, TX 75001" -266173,AA Batteries (4-pack),1,3.84,10/17/19 15:25,"224 2nd St, San Francisco, CA 94016" -266174,Bose SoundSport Headphones,1,99.99,10/03/19 18:05,"669 Cherry St, San Francisco, CA 94016" -266175,Lightning Charging Cable,1,14.95,10/31/19 09:54,"154 River St, Boston, MA 02215" -266176,27in FHD Monitor,1,149.99,10/09/19 16:40,"159 Elm St, San Francisco, CA 94016" -266177,Lightning Charging Cable,1,14.95,10/20/19 15:18,"250 7th St, Los Angeles, CA 90001" -266178,Wired Headphones,1,11.99,10/25/19 14:08,"995 9th St, Los Angeles, CA 90001" -266179,Lightning Charging Cable,1,14.95,10/07/19 21:50,"972 Jackson St, Atlanta, GA 30301" -266180,USB-C Charging Cable,1,11.95,10/10/19 19:56,"943 12th St, San Francisco, CA 94016" -266181,34in Ultrawide Monitor,1,379.99,10/05/19 23:14,"334 Elm St, San Francisco, CA 94016" -266182,AA Batteries (4-pack),1,3.84,10/28/19 18:32,"306 Willow St, San Francisco, CA 94016" -266183,AA Batteries (4-pack),1,3.84,10/15/19 01:07,"975 Jackson St, San Francisco, CA 94016" -266184,Bose SoundSport Headphones,1,99.99,10/01/19 11:35,"114 Spruce St, San Francisco, CA 94016" -266185,Wired Headphones,1,11.99,10/18/19 21:17,"32 8th St, Los Angeles, CA 90001" -266186,USB-C Charging Cable,2,11.95,10/30/19 22:54,"445 Meadow St, Seattle, WA 98101" -266187,Apple Airpods Headphones,1,150,10/20/19 05:54,"630 Johnson St, Los Angeles, CA 90001" -266188,Wired Headphones,1,11.99,10/05/19 15:36,"646 9th St, Austin, TX 73301" -266189,Lightning Charging Cable,1,14.95,10/18/19 08:15,"779 Adams St, San Francisco, CA 94016" -266190,ThinkPad Laptop,1,999.99,10/12/19 20:58,"934 Adams St, New York City, NY 10001" -266191,AA Batteries (4-pack),1,3.84,10/13/19 16:09,"797 Cherry St, Austin, TX 73301" -266192,20in Monitor,1,109.99,10/21/19 16:54,"268 Willow St, Boston, MA 02215" -266193,iPhone,1,700,10/08/19 01:48,"535 13th St, Los Angeles, CA 90001" -266194,Lightning Charging Cable,1,14.95,10/02/19 20:27,"822 Cedar St, Austin, TX 73301" -266195,ThinkPad Laptop,1,999.99,10/08/19 20:00,"443 4th St, Los Angeles, CA 90001" -266196,AAA Batteries (4-pack),1,2.99,10/05/19 07:43,"93 Maple St, Los Angeles, CA 90001" -266197,27in 4K Gaming Monitor,1,389.99,10/01/19 06:05,"349 11th St, Dallas, TX 75001" -266198,USB-C Charging Cable,1,11.95,10/23/19 19:00,"545 Sunset St, New York City, NY 10001" -266199,Bose SoundSport Headphones,1,99.99,10/13/19 15:19,"41 Maple St, Austin, TX 73301" -266200,Bose SoundSport Headphones,1,99.99,10/21/19 12:59,"476 10th St, Seattle, WA 98101" -266201,Bose SoundSport Headphones,1,99.99,10/27/19 20:07,"785 14th St, Austin, TX 73301" -266202,27in FHD Monitor,1,149.99,10/15/19 05:49,"479 13th St, San Francisco, CA 94016" -266203,27in FHD Monitor,1,149.99,10/15/19 13:30,"120 14th St, Boston, MA 02215" -266204,USB-C Charging Cable,1,11.95,10/17/19 19:53,"277 Cedar St, Austin, TX 73301" -266205,AA Batteries (4-pack),1,3.84,10/16/19 22:07,"331 Cedar St, Atlanta, GA 30301" -266206,AAA Batteries (4-pack),1,2.99,10/30/19 08:59,"516 Johnson St, Atlanta, GA 30301" -266207,Lightning Charging Cable,2,14.95,10/09/19 17:26,"636 West St, Portland, OR 97035" -266208,USB-C Charging Cable,1,11.95,10/26/19 10:42,"169 9th St, Dallas, TX 75001" -266209,AAA Batteries (4-pack),1,2.99,10/15/19 12:19,"778 Elm St, San Francisco, CA 94016" -266210,Flatscreen TV,1,300,10/22/19 10:48,"739 12th St, San Francisco, CA 94016" -266211,Wired Headphones,1,11.99,10/30/19 07:40,"204 Meadow St, San Francisco, CA 94016" -266212,Apple Airpods Headphones,1,150,10/02/19 09:39,"935 Park St, Atlanta, GA 30301" -266213,Lightning Charging Cable,1,14.95,10/28/19 22:02,"176 Pine St, Dallas, TX 75001" -266214,Apple Airpods Headphones,1,150,10/24/19 14:59,"265 Walnut St, Dallas, TX 75001" -266215,AAA Batteries (4-pack),1,2.99,10/25/19 12:44,"708 Jefferson St, Dallas, TX 75001" -266216,Wired Headphones,1,11.99,10/21/19 14:56,"706 6th St, Seattle, WA 98101" -266217,Apple Airpods Headphones,1,150,10/03/19 19:36,"190 Center St, Los Angeles, CA 90001" -266218,AA Batteries (4-pack),1,3.84,10/27/19 09:45,"514 12th St, Boston, MA 02215" -266219,Apple Airpods Headphones,1,150,10/01/19 08:47,"645 West St, Portland, OR 97035" -266220,iPhone,1,700,10/19/19 13:43,"415 Cherry St, Atlanta, GA 30301" -266221,Apple Airpods Headphones,1,150,10/29/19 12:05,"255 11th St, New York City, NY 10001" -266222,Lightning Charging Cable,1,14.95,10/12/19 00:51,"31 South St, Los Angeles, CA 90001" -266223,USB-C Charging Cable,1,11.95,10/22/19 18:13,"898 Washington St, Portland, OR 97035" -266224,34in Ultrawide Monitor,1,379.99,10/15/19 19:36,"425 14th St, New York City, NY 10001" -266225,USB-C Charging Cable,1,11.95,10/15/19 10:22,"165 Madison St, Seattle, WA 98101" -266226,USB-C Charging Cable,1,11.95,10/11/19 00:42,"802 8th St, Atlanta, GA 30301" -266227,Wired Headphones,1,11.99,10/11/19 21:07,"898 Dogwood St, San Francisco, CA 94016" -266228,34in Ultrawide Monitor,1,379.99,10/05/19 13:47,"161 West St, Dallas, TX 75001" -266229,AAA Batteries (4-pack),1,2.99,10/09/19 17:22,"216 North St, San Francisco, CA 94016" -266230,AA Batteries (4-pack),2,3.84,10/07/19 09:14,"357 Forest St, Los Angeles, CA 90001" -266231,Bose SoundSport Headphones,1,99.99,10/24/19 16:46,"305 River St, Atlanta, GA 30301" -266232,AA Batteries (4-pack),1,3.84,10/10/19 20:34,"479 Madison St, Atlanta, GA 30301" -266233,AA Batteries (4-pack),1,3.84,10/05/19 17:55,"768 12th St, Atlanta, GA 30301" -266234,Vareebadd Phone,1,400,10/30/19 19:47,"936 Highland St, San Francisco, CA 94016" -266235,AAA Batteries (4-pack),4,2.99,10/27/19 02:15,"402 Park St, Seattle, WA 98101" -266236,AAA Batteries (4-pack),2,2.99,10/10/19 16:31,"591 Washington St, Los Angeles, CA 90001" -266237,Apple Airpods Headphones,1,150,10/21/19 23:37,"221 Jefferson St, Portland, OR 97035" -266238,27in FHD Monitor,1,149.99,10/21/19 06:29,"98 Washington St, New York City, NY 10001" -266239,Lightning Charging Cable,1,14.95,10/25/19 20:39,"622 Wilson St, Los Angeles, CA 90001" -266240,27in FHD Monitor,1,149.99,10/30/19 17:16,"969 Adams St, New York City, NY 10001" -266241,Bose SoundSport Headphones,1,99.99,10/22/19 16:06,"407 Church St, San Francisco, CA 94016" -266242,Lightning Charging Cable,1,14.95,10/19/19 23:05,"72 Wilson St, Portland, OR 97035" -266243,Wired Headphones,1,11.99,10/18/19 13:26,"899 Highland St, Portland, OR 97035" -266244,Bose SoundSport Headphones,1,99.99,10/26/19 12:52,"707 Chestnut St, Los Angeles, CA 90001" -266245,Bose SoundSport Headphones,1,99.99,10/08/19 20:07,"991 Forest St, Austin, TX 73301" -266246,AA Batteries (4-pack),1,3.84,10/06/19 20:04,"556 Meadow St, New York City, NY 10001" -266247,20in Monitor,1,109.99,10/15/19 16:24,"938 Madison St, New York City, NY 10001" -266247,AA Batteries (4-pack),1,3.84,10/15/19 16:24,"938 Madison St, New York City, NY 10001" -266248,AA Batteries (4-pack),1,3.84,10/25/19 16:47,"945 2nd St, Boston, MA 02215" -266249,Wired Headphones,1,11.99,10/13/19 08:47,"555 Hill St, Los Angeles, CA 90001" -266250,AA Batteries (4-pack),3,3.84,10/16/19 09:07,"646 Hill St, Seattle, WA 98101" -266251,AAA Batteries (4-pack),1,2.99,10/21/19 18:14,"634 Hickory St, San Francisco, CA 94016" -266252,AA Batteries (4-pack),4,3.84,10/05/19 21:19,"14 Adams St, New York City, NY 10001" -266253,AA Batteries (4-pack),3,3.84,10/19/19 20:18,"262 Cherry St, New York City, NY 10001" -266254,20in Monitor,1,109.99,10/18/19 11:33,"687 6th St, Dallas, TX 75001" -266255,AAA Batteries (4-pack),2,2.99,10/27/19 18:32,"541 Washington St, Boston, MA 02215" -266256,Lightning Charging Cable,1,14.95,10/05/19 10:46,"967 River St, San Francisco, CA 94016" -266257,Apple Airpods Headphones,1,150,10/25/19 14:28,"987 2nd St, New York City, NY 10001" -266258,USB-C Charging Cable,1,11.95,10/26/19 10:24,"959 Adams St, Atlanta, GA 30301" -266259,Wired Headphones,1,11.99,10/22/19 22:59,"105 Main St, Los Angeles, CA 90001" -266260,Apple Airpods Headphones,1,150,10/30/19 20:52,"318 Cedar St, Dallas, TX 75001" -266261,AAA Batteries (4-pack),2,2.99,10/04/19 17:59,"583 Elm St, San Francisco, CA 94016" -266262,Lightning Charging Cable,1,14.95,10/20/19 15:59,"644 Maple St, Boston, MA 02215" -266263,AA Batteries (4-pack),2,3.84,10/29/19 20:08,"158 11th St, Boston, MA 02215" -266264,USB-C Charging Cable,1,11.95,10/26/19 05:23,"609 Spruce St, New York City, NY 10001" -266265,Vareebadd Phone,1,400,10/26/19 12:59,"449 Maple St, New York City, NY 10001" -266266,Wired Headphones,1,11.99,10/30/19 22:14,"837 Church St, Dallas, TX 75001" -266267,Lightning Charging Cable,1,14.95,10/08/19 12:59,"417 Lakeview St, Boston, MA 02215" -266268,USB-C Charging Cable,2,11.95,10/11/19 18:40,"606 Hill St, Boston, MA 02215" -266269,27in 4K Gaming Monitor,1,389.99,10/02/19 11:07,"148 9th St, San Francisco, CA 94016" -266270,ThinkPad Laptop,1,999.99,10/31/19 10:49,"675 Adams St, Dallas, TX 75001" -266271,Apple Airpods Headphones,1,150,10/15/19 11:11,"902 6th St, Dallas, TX 75001" -266272,Wired Headphones,1,11.99,10/13/19 09:23,"621 7th St, Los Angeles, CA 90001" -266273,AA Batteries (4-pack),1,3.84,10/06/19 08:15,"13 Elm St, New York City, NY 10001" -266274,USB-C Charging Cable,1,11.95,10/27/19 22:44,"37 9th St, Dallas, TX 75001" -266275,27in FHD Monitor,1,149.99,10/08/19 21:38,"997 Hickory St, San Francisco, CA 94016" -266276,AA Batteries (4-pack),2,3.84,10/11/19 21:39,"124 Johnson St, San Francisco, CA 94016" -266277,Wired Headphones,1,11.99,10/14/19 00:59,"433 Center St, San Francisco, CA 94016" -266278,ThinkPad Laptop,1,999.99,10/23/19 18:35,"168 Forest St, New York City, NY 10001" -266279,USB-C Charging Cable,1,11.95,10/18/19 21:15,"988 13th St, Seattle, WA 98101" -266280,USB-C Charging Cable,1,11.95,10/02/19 11:11,"53 Dogwood St, Portland, OR 97035" -266280,USB-C Charging Cable,1,11.95,10/02/19 11:11,"53 Dogwood St, Portland, OR 97035" -266281,Bose SoundSport Headphones,1,99.99,10/20/19 12:15,"847 Hickory St, Seattle, WA 98101" -266282,USB-C Charging Cable,1,11.95,10/12/19 17:25,"573 Main St, Los Angeles, CA 90001" -266283,ThinkPad Laptop,1,999.99,10/20/19 12:08,"689 Highland St, Atlanta, GA 30301" -266284,Bose SoundSport Headphones,1,99.99,10/30/19 14:52,"237 5th St, San Francisco, CA 94016" -266285,USB-C Charging Cable,1,11.95,10/21/19 11:04,"362 Johnson St, San Francisco, CA 94016" -266286,AAA Batteries (4-pack),2,2.99,10/30/19 07:26,"564 Maple St, New York City, NY 10001" -266286,AAA Batteries (4-pack),1,2.99,10/30/19 07:26,"564 Maple St, New York City, NY 10001" -266287,Wired Headphones,1,11.99,10/02/19 02:26,"702 Ridge St, New York City, NY 10001" -266288,Apple Airpods Headphones,1,150,10/01/19 11:31,"717 Park St, San Francisco, CA 94016" -266289,Macbook Pro Laptop,1,1700,10/10/19 16:14,"797 Wilson St, New York City, NY 10001" -266290,Wired Headphones,1,11.99,10/17/19 11:40,"75 Park St, Los Angeles, CA 90001" -266291,AAA Batteries (4-pack),1,2.99,10/31/19 15:56,"196 West St, Austin, TX 73301" -266292,Lightning Charging Cable,1,14.95,10/02/19 10:27,"719 South St, Boston, MA 02215" -266293,USB-C Charging Cable,1,11.95,10/18/19 01:15,"370 9th St, Boston, MA 02215" -266294,Apple Airpods Headphones,1,150,10/21/19 01:15,"199 Cherry St, San Francisco, CA 94016" -266295,Wired Headphones,1,11.99,10/21/19 16:20,"854 10th St, Austin, TX 73301" -266296,Lightning Charging Cable,1,14.95,10/27/19 23:49,"662 9th St, Boston, MA 02215" -266297,Apple Airpods Headphones,1,150,10/04/19 02:11,"244 South St, Boston, MA 02215" -266298,AA Batteries (4-pack),1,3.84,10/03/19 23:17,"107 Park St, San Francisco, CA 94016" -266299,Lightning Charging Cable,1,14.95,10/08/19 18:12,"786 6th St, Los Angeles, CA 90001" -266300,27in FHD Monitor,1,149.99,10/05/19 16:31,"24 5th St, San Francisco, CA 94016" -266301,iPhone,1,700,10/15/19 20:55,"253 Johnson St, Los Angeles, CA 90001" -266302,AAA Batteries (4-pack),1,2.99,10/12/19 20:14,"738 Sunset St, Dallas, TX 75001" -266303,ThinkPad Laptop,1,999.99,10/01/19 17:52,"329 10th St, Los Angeles, CA 90001" -266304,AA Batteries (4-pack),1,3.84,10/02/19 19:54,"232 1st St, Boston, MA 02215" -266305,iPhone,1,700,10/12/19 11:40,"80 Highland St, Portland, OR 97035" -266306,Macbook Pro Laptop,1,1700,10/06/19 21:45,"399 Cedar St, New York City, NY 10001" -266307,Vareebadd Phone,1,400,10/31/19 19:14,"768 Chestnut St, New York City, NY 10001" -266308,Wired Headphones,1,11.99,10/08/19 15:24,"472 Washington St, Austin, TX 73301" -266309,iPhone,1,700,10/19/19 12:40,"519 Wilson St, Seattle, WA 98101" -266310,Apple Airpods Headphones,1,150,10/03/19 10:22,"821 Pine St, San Francisco, CA 94016" -266311,AA Batteries (4-pack),2,3.84,10/15/19 22:15,"90 7th St, New York City, NY 10001" -266312,34in Ultrawide Monitor,1,379.99,10/30/19 11:17,"850 2nd St, Los Angeles, CA 90001" -266313,Lightning Charging Cable,1,14.95,10/09/19 11:31,"650 9th St, Los Angeles, CA 90001" -266314,USB-C Charging Cable,1,11.95,10/07/19 10:20,"932 6th St, San Francisco, CA 94016" -266315,AAA Batteries (4-pack),1,2.99,10/25/19 13:22,"133 11th St, New York City, NY 10001" -266316,Apple Airpods Headphones,1,150,10/14/19 21:05,"574 South St, San Francisco, CA 94016" -266317,AAA Batteries (4-pack),1,2.99,10/20/19 18:19,"95 9th St, Los Angeles, CA 90001" -266318,Lightning Charging Cable,1,14.95,10/30/19 20:09,"161 Dogwood St, New York City, NY 10001" -266319,USB-C Charging Cable,1,11.95,10/26/19 12:17,"222 Cedar St, Atlanta, GA 30301" -266320,USB-C Charging Cable,1,11.95,10/09/19 20:42,"508 Lake St, Boston, MA 02215" -266321,Macbook Pro Laptop,1,1700,10/06/19 14:20,"762 Main St, Los Angeles, CA 90001" -266322,iPhone,1,700,10/15/19 21:40,"843 Cherry St, Boston, MA 02215" -266323,20in Monitor,1,109.99,10/16/19 23:17,"427 Madison St, Portland, ME 04101" -266324,27in 4K Gaming Monitor,1,389.99,10/12/19 13:07,"276 Jackson St, New York City, NY 10001" -266325,USB-C Charging Cable,1,11.95,10/20/19 12:55,"330 9th St, Portland, OR 97035" -266326,Bose SoundSport Headphones,1,99.99,10/16/19 21:56,"170 Jackson St, New York City, NY 10001" -266327,Apple Airpods Headphones,1,150,10/05/19 14:39,"868 Lake St, Los Angeles, CA 90001" -266328,Bose SoundSport Headphones,1,99.99,10/11/19 13:37,"8 Madison St, San Francisco, CA 94016" -266329,Wired Headphones,1,11.99,10/07/19 15:18,"594 1st St, Boston, MA 02215" -266330,Lightning Charging Cable,1,14.95,10/16/19 12:07,"279 Jefferson St, Portland, OR 97035" -266331,Wired Headphones,1,11.99,10/26/19 21:59,"483 10th St, Seattle, WA 98101" -266331,20in Monitor,1,109.99,10/26/19 21:59,"483 10th St, Seattle, WA 98101" -266332,AA Batteries (4-pack),1,3.84,10/23/19 15:55,"108 Lake St, New York City, NY 10001" -266333,iPhone,1,700,10/15/19 13:06,"899 5th St, San Francisco, CA 94016" -266334,iPhone,1,700,10/07/19 19:34,"165 Church St, Seattle, WA 98101" -266335,27in FHD Monitor,1,149.99,10/22/19 16:16,"321 Dogwood St, Los Angeles, CA 90001" -266336,ThinkPad Laptop,1,999.99,10/16/19 15:07,"805 West St, Austin, TX 73301" -266337,AAA Batteries (4-pack),1,2.99,10/26/19 18:55,"60 Walnut St, Dallas, TX 75001" -266338,Flatscreen TV,1,300,10/21/19 01:36,"670 Jackson St, Boston, MA 02215" -266339,34in Ultrawide Monitor,1,379.99,10/20/19 18:57,"62 9th St, Dallas, TX 75001" -266340,AAA Batteries (4-pack),1,2.99,10/02/19 20:27,"920 14th St, Los Angeles, CA 90001" -266341,USB-C Charging Cable,1,11.95,10/05/19 07:51,"547 10th St, Atlanta, GA 30301" -266342,iPhone,1,700,10/25/19 08:54,"67 Meadow St, Atlanta, GA 30301" -266343,USB-C Charging Cable,1,11.95,10/29/19 12:53,"14 Hickory St, Atlanta, GA 30301" -266344,34in Ultrawide Monitor,1,379.99,10/02/19 11:42,"351 Spruce St, New York City, NY 10001" -266345,Macbook Pro Laptop,1,1700,10/08/19 11:26,"833 12th St, San Francisco, CA 94016" -266346,USB-C Charging Cable,1,11.95,10/02/19 22:07,"688 Spruce St, San Francisco, CA 94016" -266347,Google Phone,1,600,10/14/19 04:18,"302 8th St, Atlanta, GA 30301" -266347,Wired Headphones,1,11.99,10/14/19 04:18,"302 8th St, Atlanta, GA 30301" -266348,USB-C Charging Cable,1,11.95,10/26/19 12:02,"40 2nd St, Seattle, WA 98101" -266349,AA Batteries (4-pack),2,3.84,10/05/19 12:56,"427 Forest St, Los Angeles, CA 90001" -266350,Wired Headphones,3,11.99,10/01/19 10:53,"127 Cherry St, Seattle, WA 98101" -266351,iPhone,1,700,10/07/19 10:20,"317 Ridge St, San Francisco, CA 94016" -266352,USB-C Charging Cable,1,11.95,10/06/19 22:38,"992 11th St, Los Angeles, CA 90001" -266353,USB-C Charging Cable,1,11.95,10/02/19 15:55,"826 Pine St, Los Angeles, CA 90001" -266354,27in 4K Gaming Monitor,1,389.99,10/06/19 16:34,"173 Elm St, Portland, OR 97035" -266355,Wired Headphones,1,11.99,10/02/19 11:26,"986 Dogwood St, New York City, NY 10001" -266356,Wired Headphones,1,11.99,10/29/19 21:42,"10 Hill St, Boston, MA 02215" -266357,ThinkPad Laptop,1,999.99,10/05/19 11:06,"357 North St, Dallas, TX 75001" -266358,Macbook Pro Laptop,1,1700,10/03/19 11:02,"771 Church St, Dallas, TX 75001" -266359,USB-C Charging Cable,1,11.95,10/27/19 20:56,"168 8th St, New York City, NY 10001" -266360,27in FHD Monitor,1,149.99,10/22/19 21:36,"7 Dogwood St, Austin, TX 73301" -266361,AAA Batteries (4-pack),1,2.99,10/15/19 21:59,"715 Wilson St, Boston, MA 02215" -266362,Bose SoundSport Headphones,1,99.99,10/06/19 23:32,"866 Forest St, Seattle, WA 98101" -266363,AAA Batteries (4-pack),1,2.99,10/03/19 11:10,"36 7th St, New York City, NY 10001" -266364,AA Batteries (4-pack),1,3.84,10/19/19 21:57,"291 11th St, San Francisco, CA 94016" -266365,AAA Batteries (4-pack),3,2.99,10/21/19 00:46,"692 Walnut St, Portland, OR 97035" -266366,Lightning Charging Cable,1,14.95,10/01/19 19:27,"359 Lakeview St, Atlanta, GA 30301" -266367,USB-C Charging Cable,1,11.95,10/14/19 21:17,"397 Main St, New York City, NY 10001" -266368,27in FHD Monitor,1,149.99,10/20/19 14:38,"743 12th St, Portland, OR 97035" -266369,iPhone,1,700,10/02/19 11:01,"216 Lincoln St, Austin, TX 73301" -266370,AAA Batteries (4-pack),2,2.99,10/16/19 10:34,"934 Sunset St, Portland, OR 97035" -266371,Macbook Pro Laptop,1,1700,10/05/19 17:15,"556 Hickory St, Boston, MA 02215" -266372,iPhone,1,700,10/22/19 02:27,"685 Center St, Dallas, TX 75001" -266373,Macbook Pro Laptop,1,1700,10/10/19 14:30,"731 Lakeview St, Portland, OR 97035" -266374,AA Batteries (4-pack),1,3.84,10/17/19 20:54,"774 Willow St, Los Angeles, CA 90001" -266375,Bose SoundSport Headphones,1,99.99,10/29/19 18:47,"828 4th St, Portland, OR 97035" -266376,27in FHD Monitor,1,149.99,10/26/19 18:16,"622 Dogwood St, New York City, NY 10001" -266377,AA Batteries (4-pack),1,3.84,10/15/19 15:01,"705 10th St, New York City, NY 10001" -266378,AAA Batteries (4-pack),1,2.99,10/20/19 09:08,"650 Highland St, San Francisco, CA 94016" -266379,AAA Batteries (4-pack),2,2.99,10/24/19 17:51,"149 Walnut St, Atlanta, GA 30301" -266380,USB-C Charging Cable,1,11.95,10/07/19 11:15,"267 Jefferson St, Los Angeles, CA 90001" -266381,Lightning Charging Cable,1,14.95,10/03/19 11:13,"203 Sunset St, Boston, MA 02215" -266382,20in Monitor,1,109.99,10/09/19 07:27,"359 Elm St, Seattle, WA 98101" -266383,Wired Headphones,1,11.99,10/18/19 00:50,"139 Lincoln St, Portland, OR 97035" -266384,AAA Batteries (4-pack),1,2.99,10/02/19 22:07,"462 1st St, San Francisco, CA 94016" -266385,Bose SoundSport Headphones,1,99.99,10/08/19 17:09,"395 Cedar St, Los Angeles, CA 90001" -266386,Wired Headphones,1,11.99,10/09/19 21:08,"643 Main St, New York City, NY 10001" -266387,USB-C Charging Cable,1,11.95,10/08/19 09:53,"445 Meadow St, San Francisco, CA 94016" -266388,AAA Batteries (4-pack),2,2.99,10/13/19 12:06,"13 10th St, San Francisco, CA 94016" -266389,AAA Batteries (4-pack),1,2.99,10/07/19 20:26,"818 Walnut St, Los Angeles, CA 90001" -266390,Wired Headphones,1,11.99,10/06/19 15:54,"689 Jackson St, Dallas, TX 75001" -266391,AAA Batteries (4-pack),1,2.99,10/11/19 08:26,"673 Jefferson St, Seattle, WA 98101" -266392,USB-C Charging Cable,1,11.95,10/25/19 08:50,"641 Washington St, Seattle, WA 98101" -266393,AA Batteries (4-pack),1,3.84,10/11/19 20:21,"842 Lakeview St, Seattle, WA 98101" -266394,Apple Airpods Headphones,1,150,10/04/19 11:17,"112 Ridge St, Seattle, WA 98101" -266395,AA Batteries (4-pack),1,3.84,10/31/19 21:16,"784 Hickory St, Atlanta, GA 30301" -266396,34in Ultrawide Monitor,1,379.99,10/04/19 02:26,"837 Main St, San Francisco, CA 94016" -266397,Bose SoundSport Headphones,1,99.99,10/19/19 14:02,"736 West St, Portland, OR 97035" -266398,Macbook Pro Laptop,1,1700,10/26/19 23:39,"170 Ridge St, New York City, NY 10001" -266399,AAA Batteries (4-pack),1,2.99,10/31/19 12:20,"963 Willow St, Seattle, WA 98101" -266400,27in 4K Gaming Monitor,1,389.99,10/28/19 12:15,"244 Wilson St, Los Angeles, CA 90001" -266401,AA Batteries (4-pack),1,3.84,10/20/19 22:07,"189 6th St, San Francisco, CA 94016" -266402,Bose SoundSport Headphones,1,99.99,10/03/19 21:11,"291 Church St, New York City, NY 10001" -266403,27in 4K Gaming Monitor,1,389.99,10/09/19 22:48,"905 13th St, Boston, MA 02215" -,,,,, -266404,LG Dryer,1,600.0,10/09/19 21:54,"808 Lincoln St, San Francisco, CA 94016" -266405,27in 4K Gaming Monitor,1,389.99,10/10/19 06:26,"250 1st St, Austin, TX 73301" -266406,USB-C Charging Cable,1,11.95,10/30/19 15:27,"639 Lincoln St, San Francisco, CA 94016" -266407,Lightning Charging Cable,1,14.95,10/13/19 11:16,"156 2nd St, Portland, OR 97035" -266408,AAA Batteries (4-pack),4,2.99,10/12/19 13:41,"67 5th St, Los Angeles, CA 90001" -266409,USB-C Charging Cable,1,11.95,10/20/19 07:59,"396 10th St, Dallas, TX 75001" -266410,Wired Headphones,1,11.99,10/02/19 13:21,"989 North St, San Francisco, CA 94016" -266411,AA Batteries (4-pack),1,3.84,10/18/19 18:13,"322 Johnson St, Los Angeles, CA 90001" -266412,Bose SoundSport Headphones,1,99.99,10/08/19 13:30,"457 Madison St, Boston, MA 02215" -266413,Lightning Charging Cable,1,14.95,10/29/19 22:28,"883 Wilson St, Atlanta, GA 30301" -266414,27in 4K Gaming Monitor,1,389.99,10/24/19 08:44,"676 Wilson St, San Francisco, CA 94016" -266415,Apple Airpods Headphones,1,150,10/02/19 15:19,"852 Pine St, San Francisco, CA 94016" -266416,AAA Batteries (4-pack),1,2.99,10/20/19 17:55,"606 14th St, San Francisco, CA 94016" -266417,27in 4K Gaming Monitor,1,389.99,10/16/19 15:58,"481 Maple St, Atlanta, GA 30301" -266418,Apple Airpods Headphones,1,150,10/25/19 22:15,"916 Maple St, San Francisco, CA 94016" -266419,Bose SoundSport Headphones,1,99.99,10/06/19 17:56,"768 South St, Atlanta, GA 30301" -266420,Google Phone,1,600,10/28/19 16:24,"731 Walnut St, Portland, ME 04101" -266421,Wired Headphones,1,11.99,10/29/19 10:41,"455 Ridge St, Seattle, WA 98101" -266422,USB-C Charging Cable,1,11.95,10/12/19 02:17,"559 Jefferson St, New York City, NY 10001" -266423,USB-C Charging Cable,1,11.95,10/18/19 08:30,"468 Church St, Los Angeles, CA 90001" -266424,Lightning Charging Cable,1,14.95,10/31/19 16:03,"500 9th St, Los Angeles, CA 90001" -266425,AAA Batteries (4-pack),1,2.99,10/11/19 13:04,"259 Chestnut St, Los Angeles, CA 90001" -266426,USB-C Charging Cable,1,11.95,10/19/19 19:52,"93 South St, Los Angeles, CA 90001" -266427,Macbook Pro Laptop,1,1700,10/05/19 08:35,"798 Lincoln St, San Francisco, CA 94016" -266428,Flatscreen TV,1,300,10/07/19 13:40,"4 Main St, Portland, OR 97035" -266429,Lightning Charging Cable,1,14.95,10/30/19 17:27,"627 Meadow St, Atlanta, GA 30301" -266430,Google Phone,1,600,10/04/19 22:41,"753 North St, Portland, OR 97035" -266431,Bose SoundSport Headphones,1,99.99,10/22/19 08:44,"708 Main St, Los Angeles, CA 90001" -266431,Lightning Charging Cable,2,14.95,10/22/19 08:44,"708 Main St, Los Angeles, CA 90001" -266432,AA Batteries (4-pack),1,3.84,10/30/19 21:31,"802 6th St, San Francisco, CA 94016" -266433,USB-C Charging Cable,1,11.95,10/23/19 00:15,"893 Center St, San Francisco, CA 94016" -266434,Wired Headphones,1,11.99,10/18/19 16:28,"187 Center St, Boston, MA 02215" -266435,34in Ultrawide Monitor,1,379.99,10/11/19 16:24,"828 Lake St, Dallas, TX 75001" -266436,20in Monitor,1,109.99,10/27/19 22:46,"415 Pine St, Atlanta, GA 30301" -266437,ThinkPad Laptop,1,999.99,10/19/19 11:49,"718 Spruce St, Atlanta, GA 30301" -266438,AAA Batteries (4-pack),2,2.99,10/11/19 06:45,"990 Chestnut St, San Francisco, CA 94016" -266439,34in Ultrawide Monitor,1,379.99,10/15/19 00:44,"810 Main St, New York City, NY 10001" -266440,Wired Headphones,1,11.99,10/17/19 10:57,"29 Meadow St, Dallas, TX 75001" -266441,Google Phone,1,600,10/07/19 18:03,"218 Main St, Dallas, TX 75001" -266442,AA Batteries (4-pack),1,3.84,10/31/19 19:55,"705 9th St, San Francisco, CA 94016" -266443,Apple Airpods Headphones,1,150,10/11/19 11:01,"607 Washington St, San Francisco, CA 94016" -266444,Wired Headphones,1,11.99,10/30/19 13:53,"409 Meadow St, Austin, TX 73301" -266445,Apple Airpods Headphones,1,150,10/14/19 18:26,"177 7th St, Boston, MA 02215" -266446,Bose SoundSport Headphones,1,99.99,10/25/19 17:56,"320 5th St, New York City, NY 10001" -266447,Wired Headphones,1,11.99,10/05/19 19:45,"154 Dogwood St, San Francisco, CA 94016" -266448,USB-C Charging Cable,1,11.95,10/14/19 20:20,"163 River St, Portland, OR 97035" -266449,USB-C Charging Cable,1,11.95,10/19/19 11:11,"934 11th St, San Francisco, CA 94016" -266450,Google Phone,1,600,10/23/19 22:48,"774 9th St, Dallas, TX 75001" -266451,Bose SoundSport Headphones,1,99.99,10/29/19 12:33,"158 Lakeview St, Dallas, TX 75001" -266452,AAA Batteries (4-pack),1,2.99,10/26/19 19:23,"567 Meadow St, San Francisco, CA 94016" -266453,AAA Batteries (4-pack),1,2.99,10/15/19 17:22,"729 8th St, New York City, NY 10001" -266454,Wired Headphones,1,11.99,10/28/19 20:15,"980 Willow St, New York City, NY 10001" -266455,AA Batteries (4-pack),1,3.84,10/20/19 21:41,"858 Adams St, San Francisco, CA 94016" -266456,Lightning Charging Cable,1,14.95,10/20/19 16:25,"63 Madison St, San Francisco, CA 94016" -266457,Lightning Charging Cable,1,14.95,10/03/19 04:30,"417 Wilson St, Atlanta, GA 30301" -266458,AA Batteries (4-pack),1,3.84,10/28/19 07:18,"466 Lake St, San Francisco, CA 94016" -266459,AA Batteries (4-pack),2,3.84,10/08/19 13:37,"829 West St, San Francisco, CA 94016" -266460,USB-C Charging Cable,1,11.95,10/21/19 10:48,"411 13th St, Seattle, WA 98101" -266461,Flatscreen TV,1,300,10/02/19 21:23,"209 Adams St, San Francisco, CA 94016" -266462,Wired Headphones,1,11.99,10/28/19 21:30,"57 1st St, Atlanta, GA 30301" -266463,27in FHD Monitor,1,149.99,10/07/19 09:47,"487 Wilson St, Boston, MA 02215" -266464,AA Batteries (4-pack),1,3.84,10/18/19 11:38,"796 Cherry St, Seattle, WA 98101" -266465,Bose SoundSport Headphones,1,99.99,10/19/19 14:21,"136 11th St, Los Angeles, CA 90001" -266466,USB-C Charging Cable,2,11.95,10/11/19 00:54,"146 Washington St, Los Angeles, CA 90001" -266467,AAA Batteries (4-pack),1,2.99,10/21/19 17:50,"313 Elm St, Dallas, TX 75001" -266468,USB-C Charging Cable,1,11.95,10/08/19 21:12,"997 Lakeview St, Los Angeles, CA 90001" -266469,Google Phone,1,600,10/05/19 10:26,"665 5th St, New York City, NY 10001" -266470,USB-C Charging Cable,1,11.95,10/12/19 15:41,"264 Johnson St, Boston, MA 02215" -266471,AAA Batteries (4-pack),1,2.99,10/16/19 21:14,"245 South St, Boston, MA 02215" -266472,USB-C Charging Cable,1,11.95,10/05/19 13:34,"886 South St, Boston, MA 02215" -266473,27in 4K Gaming Monitor,1,389.99,10/03/19 19:52,"883 Lake St, Dallas, TX 75001" -266474,Wired Headphones,1,11.99,10/23/19 14:50,"333 1st St, Boston, MA 02215" -266475,Bose SoundSport Headphones,1,99.99,10/04/19 08:40,"312 Sunset St, San Francisco, CA 94016" -266476,AA Batteries (4-pack),1,3.84,10/17/19 02:24,"331 Sunset St, Portland, OR 97035" -266477,Apple Airpods Headphones,1,150,10/10/19 10:01,"845 Lincoln St, San Francisco, CA 94016" -266478,20in Monitor,1,109.99,10/09/19 18:23,"106 Sunset St, Atlanta, GA 30301" -266479,Apple Airpods Headphones,1,150,10/15/19 20:03,"751 Highland St, New York City, NY 10001" -266480,Apple Airpods Headphones,1,150,10/10/19 14:07,"273 Park St, Los Angeles, CA 90001" -266481,iPhone,1,700,10/20/19 20:14,"545 Dogwood St, Los Angeles, CA 90001" -266482,34in Ultrawide Monitor,1,379.99,10/13/19 10:08,"784 Madison St, San Francisco, CA 94016" -266483,Wired Headphones,2,11.99,10/31/19 19:38,"817 Center St, San Francisco, CA 94016" -266484,AAA Batteries (4-pack),1,2.99,10/26/19 08:03,"7 Chestnut St, San Francisco, CA 94016" -266485,USB-C Charging Cable,1,11.95,10/09/19 16:12,"142 7th St, Seattle, WA 98101" -266486,Apple Airpods Headphones,1,150,10/20/19 12:03,"657 Cedar St, Austin, TX 73301" -266487,Google Phone,1,600,10/23/19 20:32,"982 5th St, New York City, NY 10001" -266488,iPhone,1,700,10/08/19 00:37,"632 Hill St, New York City, NY 10001" -266489,Apple Airpods Headphones,1,150,10/28/19 09:58,"207 Pine St, Atlanta, GA 30301" -266490,20in Monitor,1,109.99,10/04/19 13:44,"480 4th St, Austin, TX 73301" -266491,USB-C Charging Cable,1,11.95,10/17/19 11:46,"363 10th St, New York City, NY 10001" -266492,USB-C Charging Cable,1,11.95,10/10/19 07:17,"820 Sunset St, Boston, MA 02215" -266493,ThinkPad Laptop,1,999.99,10/10/19 17:22,"473 Madison St, Austin, TX 73301" -266494,Wired Headphones,1,11.99,10/10/19 08:20,"679 Church St, Austin, TX 73301" -266495,Wired Headphones,1,11.99,10/25/19 11:19,"21 Johnson St, Portland, OR 97035" -266496,AA Batteries (4-pack),2,3.84,10/26/19 18:55,"129 Chestnut St, New York City, NY 10001" -266497,Lightning Charging Cable,1,14.95,10/30/19 10:32,"501 14th St, Boston, MA 02215" -266498,34in Ultrawide Monitor,1,379.99,10/30/19 07:04,"185 Lake St, Los Angeles, CA 90001" -266498,Apple Airpods Headphones,1,150,10/30/19 07:04,"185 Lake St, Los Angeles, CA 90001" -266499,Apple Airpods Headphones,1,150,10/02/19 22:53,"79 12th St, Atlanta, GA 30301" -266500,34in Ultrawide Monitor,1,379.99,10/06/19 20:35,"551 1st St, Boston, MA 02215" -266501,AAA Batteries (4-pack),1,2.99,10/24/19 21:24,"291 Sunset St, Boston, MA 02215" -266502,USB-C Charging Cable,1,11.95,10/03/19 22:09,"839 Jackson St, New York City, NY 10001" -266503,Bose SoundSport Headphones,1,99.99,10/13/19 14:18,"133 Madison St, Dallas, TX 75001" -266504,ThinkPad Laptop,1,999.99,10/29/19 15:46,"807 Lincoln St, Portland, ME 04101" -266504,AA Batteries (4-pack),2,3.84,10/29/19 15:46,"807 Lincoln St, Portland, ME 04101" -266505,USB-C Charging Cable,1,11.95,10/05/19 14:36,"377 6th St, New York City, NY 10001" -266506,iPhone,1,700,10/20/19 09:15,"899 Wilson St, Boston, MA 02215" -266506,Lightning Charging Cable,2,14.95,10/20/19 09:15,"899 Wilson St, Boston, MA 02215" -266506,Wired Headphones,1,11.99,10/20/19 09:15,"899 Wilson St, Boston, MA 02215" -266507,Wired Headphones,1,11.99,10/04/19 12:36,"46 Spruce St, Boston, MA 02215" -266508,Bose SoundSport Headphones,1,99.99,10/22/19 22:02,"68 Park St, Atlanta, GA 30301" -266509,ThinkPad Laptop,1,999.99,10/24/19 17:04,"439 Lakeview St, Los Angeles, CA 90001" -266510,AAA Batteries (4-pack),3,2.99,10/01/19 09:39,"355 13th St, New York City, NY 10001" -266511,20in Monitor,1,109.99,10/05/19 21:10,"581 Main St, Boston, MA 02215" -266512,Google Phone,1,600,10/24/19 20:32,"44 Johnson St, San Francisco, CA 94016" -266513,AA Batteries (4-pack),1,3.84,10/07/19 00:24,"285 Park St, San Francisco, CA 94016" -266514,Wired Headphones,1,11.99,10/01/19 21:23,"530 Hickory St, New York City, NY 10001" -266515,AAA Batteries (4-pack),1,2.99,10/12/19 10:40,"582 Johnson St, San Francisco, CA 94016" -266516,27in FHD Monitor,1,149.99,10/22/19 08:27,"189 Willow St, San Francisco, CA 94016" -266517,AAA Batteries (4-pack),1,2.99,10/04/19 09:42,"382 Forest St, San Francisco, CA 94016" -266518,Google Phone,1,600,10/25/19 18:40,"99 River St, Atlanta, GA 30301" -266519,AA Batteries (4-pack),3,3.84,10/01/19 14:28,"50 Cedar St, Boston, MA 02215" -266520,USB-C Charging Cable,1,11.95,10/02/19 21:54,"373 5th St, San Francisco, CA 94016" -266521,20in Monitor,1,109.99,10/23/19 19:12,"416 West St, San Francisco, CA 94016" -266522,Wired Headphones,1,11.99,10/10/19 11:59,"22 Highland St, Dallas, TX 75001" -266523,Wired Headphones,1,11.99,10/11/19 22:43,"379 Spruce St, New York City, NY 10001" -266524,Bose SoundSport Headphones,1,99.99,10/31/19 18:53,"862 Wilson St, Atlanta, GA 30301" -266525,Lightning Charging Cable,1,14.95,10/18/19 08:58,"181 13th St, San Francisco, CA 94016" -266526,Apple Airpods Headphones,1,150,10/24/19 09:44,"787 Jefferson St, Boston, MA 02215" -266527,Apple Airpods Headphones,1,150,10/10/19 12:58,"440 14th St, Dallas, TX 75001" -266528,AAA Batteries (4-pack),1,2.99,10/17/19 12:55,"418 8th St, Portland, OR 97035" -266529,Flatscreen TV,1,300,10/29/19 17:06,"294 Hill St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -266530,Lightning Charging Cable,1,14.95,10/07/19 21:37,"703 Dogwood St, San Francisco, CA 94016" -266531,LG Washing Machine,1,600.0,10/28/19 16:04,"121 Lincoln St, Boston, MA 02215" -266532,USB-C Charging Cable,1,11.95,10/22/19 14:31,"116 6th St, Los Angeles, CA 90001" -266533,20in Monitor,1,109.99,10/08/19 09:28,"255 Elm St, San Francisco, CA 94016" -266534,27in 4K Gaming Monitor,1,389.99,10/13/19 20:35,"291 Chestnut St, Boston, MA 02215" -266535,AA Batteries (4-pack),1,3.84,10/11/19 10:33,"811 Park St, Los Angeles, CA 90001" -266536,Lightning Charging Cable,1,14.95,10/18/19 18:30,"50 Main St, Atlanta, GA 30301" -266537,AAA Batteries (4-pack),3,2.99,10/24/19 10:56,"995 4th St, Atlanta, GA 30301" -266538,Google Phone,1,600,10/17/19 16:32,"794 12th St, San Francisco, CA 94016" -266539,AAA Batteries (4-pack),1,2.99,10/29/19 15:52,"350 8th St, Los Angeles, CA 90001" -266540,Wired Headphones,1,11.99,10/30/19 16:12,"785 Park St, Dallas, TX 75001" -266541,27in 4K Gaming Monitor,1,389.99,10/30/19 14:08,"313 11th St, San Francisco, CA 94016" -266542,27in 4K Gaming Monitor,1,389.99,10/29/19 14:02,"679 North St, Los Angeles, CA 90001" -266543,AA Batteries (4-pack),1,3.84,10/16/19 13:00,"740 2nd St, Dallas, TX 75001" -266544,Lightning Charging Cable,1,14.95,10/04/19 12:29,"984 Highland St, Seattle, WA 98101" -266545,AA Batteries (4-pack),5,3.84,10/23/19 20:40,"451 Elm St, Boston, MA 02215" -266546,27in FHD Monitor,1,149.99,10/05/19 09:51,"936 Meadow St, San Francisco, CA 94016" -266547,27in 4K Gaming Monitor,1,389.99,10/25/19 19:33,"409 2nd St, New York City, NY 10001" -266548,Bose SoundSport Headphones,1,99.99,10/17/19 05:34,"27 Jackson St, Los Angeles, CA 90001" -266549,USB-C Charging Cable,1,11.95,10/07/19 09:24,"661 Hill St, Los Angeles, CA 90001" -266550,Google Phone,1,600,10/19/19 17:54,"67 11th St, Los Angeles, CA 90001" -266551,Bose SoundSport Headphones,1,99.99,10/26/19 16:15,"375 8th St, Dallas, TX 75001" -266552,Apple Airpods Headphones,1,150,10/02/19 22:44,"299 Main St, Boston, MA 02215" -266553,27in FHD Monitor,1,149.99,10/05/19 20:25,"776 11th St, New York City, NY 10001" -266554,34in Ultrawide Monitor,1,379.99,10/09/19 13:25,"229 5th St, New York City, NY 10001" -266555,AAA Batteries (4-pack),1,2.99,10/14/19 09:54,"841 9th St, Boston, MA 02215" -266556,AA Batteries (4-pack),1,3.84,10/09/19 11:35,"202 Lincoln St, San Francisco, CA 94016" -266557,20in Monitor,1,109.99,10/18/19 18:32,"728 2nd St, Austin, TX 73301" -266558,iPhone,1,700,10/28/19 18:53,"610 Pine St, San Francisco, CA 94016" -266559,ThinkPad Laptop,1,999.99,10/24/19 15:55,"108 Lakeview St, San Francisco, CA 94016" -266560,AA Batteries (4-pack),2,3.84,10/12/19 06:18,"22 River St, San Francisco, CA 94016" -266561,27in FHD Monitor,1,149.99,10/25/19 16:35,"126 8th St, San Francisco, CA 94016" -266562,Apple Airpods Headphones,1,150,10/22/19 23:52,"489 Johnson St, Los Angeles, CA 90001" -266563,Lightning Charging Cable,1,14.95,10/25/19 09:27,"145 14th St, New York City, NY 10001" -266564,Apple Airpods Headphones,1,150,10/06/19 10:55,"686 6th St, San Francisco, CA 94016" -266565,Bose SoundSport Headphones,1,99.99,10/31/19 15:08,"664 Main St, Los Angeles, CA 90001" -266566,Bose SoundSport Headphones,1,99.99,10/27/19 13:15,"618 West St, New York City, NY 10001" -266567,Google Phone,1,600,10/18/19 09:01,"637 Johnson St, Seattle, WA 98101" -266568,AAA Batteries (4-pack),1,2.99,10/20/19 13:16,"134 Forest St, Portland, ME 04101" -266569,27in 4K Gaming Monitor,1,389.99,10/25/19 18:30,"994 Cherry St, San Francisco, CA 94016" -266570,Apple Airpods Headphones,1,150,10/22/19 07:37,"696 Forest St, San Francisco, CA 94016" -266571,Bose SoundSport Headphones,1,99.99,10/03/19 19:35,"636 Ridge St, Portland, OR 97035" -266572,Lightning Charging Cable,1,14.95,10/12/19 11:58,"485 2nd St, San Francisco, CA 94016" -266573,Flatscreen TV,1,300,10/21/19 21:04,"710 Pine St, Los Angeles, CA 90001" -266574,Bose SoundSport Headphones,1,99.99,10/15/19 11:47,"628 Sunset St, Los Angeles, CA 90001" -266575,Lightning Charging Cable,2,14.95,10/16/19 13:57,"195 Johnson St, San Francisco, CA 94016" -266576,Apple Airpods Headphones,1,150,10/25/19 20:26,"652 6th St, Portland, OR 97035" -266577,AA Batteries (4-pack),1,3.84,10/06/19 21:44,"308 Main St, Seattle, WA 98101" -266578,USB-C Charging Cable,1,11.95,10/11/19 17:06,"838 Sunset St, New York City, NY 10001" -266579,iPhone,1,700,10/23/19 22:25,"519 North St, Los Angeles, CA 90001" -266580,27in FHD Monitor,1,149.99,10/19/19 11:54,"588 Madison St, Boston, MA 02215" -266581,AA Batteries (4-pack),1,3.84,10/02/19 20:09,"271 Washington St, Atlanta, GA 30301" -266582,Bose SoundSport Headphones,1,99.99,10/05/19 19:35,"481 Johnson St, Austin, TX 73301" -266583,AAA Batteries (4-pack),2,2.99,10/09/19 12:14,"908 Ridge St, Boston, MA 02215" -266584,Lightning Charging Cable,1,14.95,10/23/19 21:57,"406 Cedar St, Austin, TX 73301" -266585,Bose SoundSport Headphones,1,99.99,10/05/19 19:21,"57 Lakeview St, Austin, TX 73301" -266586,AAA Batteries (4-pack),1,2.99,10/06/19 14:01,"999 Lakeview St, Boston, MA 02215" -266587,AA Batteries (4-pack),1,3.84,10/21/19 14:47,"722 Elm St, San Francisco, CA 94016" -266588,Wired Headphones,2,11.99,10/10/19 04:04,"554 Spruce St, Seattle, WA 98101" -266589,27in FHD Monitor,1,149.99,10/30/19 12:24,"805 7th St, Los Angeles, CA 90001" -266590,iPhone,1,700,10/31/19 10:05,"583 Spruce St, Los Angeles, CA 90001" -266590,Wired Headphones,1,11.99,10/31/19 10:05,"583 Spruce St, Los Angeles, CA 90001" -266591,Wired Headphones,1,11.99,10/26/19 05:16,"673 Church St, San Francisco, CA 94016" -266592,Lightning Charging Cable,1,14.95,10/06/19 21:49,"390 Pine St, San Francisco, CA 94016" -266593,27in FHD Monitor,1,149.99,10/15/19 17:27,"337 Lakeview St, Atlanta, GA 30301" -266594,AAA Batteries (4-pack),1,2.99,10/18/19 10:22,"193 5th St, Los Angeles, CA 90001" -266595,27in 4K Gaming Monitor,1,389.99,10/18/19 17:44,"331 12th St, New York City, NY 10001" -266596,ThinkPad Laptop,1,999.99,10/12/19 13:14,"823 Adams St, New York City, NY 10001" -266597,USB-C Charging Cable,1,11.95,10/06/19 22:47,"412 Sunset St, Portland, OR 97035" -266598,Bose SoundSport Headphones,1,99.99,10/03/19 20:57,"785 7th St, Austin, TX 73301" -266599,Bose SoundSport Headphones,1,99.99,10/10/19 07:22,"755 Johnson St, Atlanta, GA 30301" -266600,AA Batteries (4-pack),1,3.84,10/18/19 17:37,"430 Center St, Atlanta, GA 30301" -266601,20in Monitor,1,109.99,10/19/19 15:22,"471 Church St, Los Angeles, CA 90001" -266602,USB-C Charging Cable,1,11.95,10/27/19 22:34,"653 Hickory St, Dallas, TX 75001" -266603,Lightning Charging Cable,1,14.95,10/23/19 13:03,"615 Lake St, Boston, MA 02215" -266604,Lightning Charging Cable,1,14.95,10/22/19 15:33,"979 Jackson St, Los Angeles, CA 90001" -266605,Google Phone,1,600,10/05/19 12:38,"173 Chestnut St, Dallas, TX 75001" -266606,Macbook Pro Laptop,1,1700,10/03/19 17:19,"298 11th St, Boston, MA 02215" -266607,Apple Airpods Headphones,1,150,10/19/19 15:43,"574 Center St, Seattle, WA 98101" -266608,27in 4K Gaming Monitor,1,389.99,10/03/19 14:24,"161 Jefferson St, Atlanta, GA 30301" -266609,AAA Batteries (4-pack),2,2.99,10/03/19 09:11,"297 Lincoln St, Atlanta, GA 30301" -266610,iPhone,1,700,10/31/19 12:19,"142 Walnut St, San Francisco, CA 94016" -266611,Wired Headphones,1,11.99,10/17/19 17:14,"169 Church St, Austin, TX 73301" -266612,USB-C Charging Cable,2,11.95,10/26/19 11:11,"132 Wilson St, Seattle, WA 98101" -266613,20in Monitor,1,109.99,10/12/19 14:03,"663 Lake St, New York City, NY 10001" -266614,Wired Headphones,1,11.99,10/02/19 16:44,"192 Johnson St, Portland, OR 97035" -266615,AAA Batteries (4-pack),1,2.99,10/17/19 15:38,"319 14th St, Los Angeles, CA 90001" -266616,Wired Headphones,1,11.99,10/09/19 09:56,"44 1st St, Austin, TX 73301" -266617,34in Ultrawide Monitor,1,379.99,10/29/19 21:51,"409 Willow St, Atlanta, GA 30301" -266618,Google Phone,1,600,10/28/19 23:06,"513 Maple St, Austin, TX 73301" -266619,Apple Airpods Headphones,1,150,10/26/19 10:14,"326 Elm St, New York City, NY 10001" -266620,Lightning Charging Cable,2,14.95,10/13/19 06:38,"679 Maple St, San Francisco, CA 94016" -266621,iPhone,1,700,10/06/19 13:55,"225 Hickory St, Portland, ME 04101" -266622,Wired Headphones,1,11.99,10/23/19 08:27,"44 Highland St, Austin, TX 73301" -266623,Bose SoundSport Headphones,1,99.99,10/22/19 23:24,"200 12th St, San Francisco, CA 94016" -266624,ThinkPad Laptop,1,999.99,10/25/19 22:00,"616 Jackson St, New York City, NY 10001" -266625,Wired Headphones,1,11.99,10/24/19 12:31,"854 Wilson St, San Francisco, CA 94016" -266626,Flatscreen TV,1,300,10/11/19 08:48,"679 Hickory St, Portland, ME 04101" -266627,Apple Airpods Headphones,1,150,10/17/19 14:19,"785 2nd St, Seattle, WA 98101" -266628,AA Batteries (4-pack),2,3.84,10/16/19 02:26,"802 Adams St, San Francisco, CA 94016" -266629,USB-C Charging Cable,1,11.95,10/21/19 23:22,"404 Highland St, New York City, NY 10001" -266630,AAA Batteries (4-pack),3,2.99,10/22/19 22:40,"751 Hill St, San Francisco, CA 94016" -266631,Lightning Charging Cable,1,14.95,10/11/19 10:43,"594 Washington St, San Francisco, CA 94016" -266632,Apple Airpods Headphones,1,150,10/17/19 14:48,"207 Highland St, San Francisco, CA 94016" -266633,Flatscreen TV,1,300,10/20/19 05:48,"725 Main St, San Francisco, CA 94016" -266633,AAA Batteries (4-pack),1,2.99,10/20/19 05:48,"725 Main St, San Francisco, CA 94016" -266634,Lightning Charging Cable,1,14.95,10/23/19 10:57,"499 9th St, San Francisco, CA 94016" -266635,Lightning Charging Cable,1,14.95,10/09/19 22:48,"789 Jackson St, Atlanta, GA 30301" -266636,AAA Batteries (4-pack),1,2.99,10/23/19 19:06,"17 11th St, Austin, TX 73301" -266637,Macbook Pro Laptop,1,1700,10/17/19 21:48,"316 Elm St, New York City, NY 10001" -266637,Google Phone,1,600,10/17/19 21:48,"316 Elm St, New York City, NY 10001" -266638,AA Batteries (4-pack),2,3.84,10/24/19 18:23,"488 Jefferson St, Los Angeles, CA 90001" -266639,Macbook Pro Laptop,1,1700,10/16/19 01:19,"81 Church St, San Francisco, CA 94016" -266640,USB-C Charging Cable,1,11.95,10/30/19 11:24,"43 Walnut St, Los Angeles, CA 90001" -266641,AA Batteries (4-pack),1,3.84,10/29/19 20:30,"939 8th St, San Francisco, CA 94016" -266642,AAA Batteries (4-pack),1,2.99,10/31/19 21:10,"559 10th St, San Francisco, CA 94016" -266643,Lightning Charging Cable,1,14.95,10/05/19 13:34,"350 Hickory St, Dallas, TX 75001" -266644,Apple Airpods Headphones,1,150,10/02/19 19:15,"561 Adams St, Dallas, TX 75001" -266645,Bose SoundSport Headphones,1,99.99,10/03/19 07:03,"494 South St, Los Angeles, CA 90001" -266646,20in Monitor,1,109.99,10/02/19 08:17,"655 Johnson St, San Francisco, CA 94016" -266647,AAA Batteries (4-pack),1,2.99,10/19/19 18:36,"705 Washington St, Portland, OR 97035" -266648,Wired Headphones,1,11.99,10/31/19 12:39,"198 West St, Atlanta, GA 30301" -266648,Wired Headphones,1,11.99,10/31/19 12:39,"198 West St, Atlanta, GA 30301" -266649,Lightning Charging Cable,1,14.95,10/29/19 17:28,"986 Park St, Los Angeles, CA 90001" -266650,Bose SoundSport Headphones,1,99.99,10/21/19 17:58,"734 Pine St, Dallas, TX 75001" -266651,ThinkPad Laptop,1,999.99,10/03/19 16:35,"399 11th St, Los Angeles, CA 90001" -266652,iPhone,1,700,10/29/19 20:00,"751 Ridge St, Dallas, TX 75001" -266653,Wired Headphones,1,11.99,10/05/19 22:42,"99 North St, San Francisco, CA 94016" -266654,Macbook Pro Laptop,1,1700,10/17/19 21:35,"599 Pine St, San Francisco, CA 94016" -266655,USB-C Charging Cable,1,11.95,10/12/19 00:41,"400 14th St, Portland, OR 97035" -266656,USB-C Charging Cable,1,11.95,10/14/19 00:32,"705 Cherry St, Seattle, WA 98101" -266657,AAA Batteries (4-pack),1,2.99,10/07/19 13:49,"75 2nd St, San Francisco, CA 94016" -266658,Apple Airpods Headphones,1,150,10/09/19 22:28,"737 Hill St, New York City, NY 10001" -266659,AA Batteries (4-pack),1,3.84,10/22/19 15:33,"530 Johnson St, Los Angeles, CA 90001" -266660,USB-C Charging Cable,1,11.95,10/30/19 08:55,"147 Church St, San Francisco, CA 94016" -266661,iPhone,1,700,10/20/19 17:43,"972 North St, Portland, OR 97035" -266662,Lightning Charging Cable,1,14.95,10/08/19 09:39,"451 Madison St, Los Angeles, CA 90001" -266663,20in Monitor,1,109.99,10/04/19 19:31,"363 Lincoln St, San Francisco, CA 94016" -266664,Wired Headphones,1,11.99,10/11/19 15:55,"60 Adams St, Boston, MA 02215" -266665,USB-C Charging Cable,1,11.95,10/08/19 03:47,"962 9th St, Boston, MA 02215" -266666,AA Batteries (4-pack),1,3.84,10/20/19 10:22,"826 4th St, San Francisco, CA 94016" -266667,Flatscreen TV,1,300,10/18/19 16:30,"245 South St, Atlanta, GA 30301" -266668,AA Batteries (4-pack),1,3.84,10/12/19 12:35,"440 West St, Seattle, WA 98101" -266669,AAA Batteries (4-pack),2,2.99,10/30/19 21:03,"150 Forest St, New York City, NY 10001" -266670,Wired Headphones,1,11.99,10/24/19 20:41,"68 Pine St, Atlanta, GA 30301" -266671,Flatscreen TV,1,300,10/02/19 09:13,"375 5th St, Boston, MA 02215" -266672,ThinkPad Laptop,1,999.99,10/04/19 23:02,"354 Center St, Los Angeles, CA 90001" -266673,Macbook Pro Laptop,1,1700,10/20/19 14:43,"8 Jackson St, Portland, OR 97035" -266674,LG Washing Machine,1,600.0,10/27/19 18:14,"485 12th St, Portland, ME 04101" -266675,AA Batteries (4-pack),1,3.84,10/17/19 14:47,"941 Meadow St, Atlanta, GA 30301" -266676,AA Batteries (4-pack),1,3.84,10/08/19 10:39,"650 Hill St, San Francisco, CA 94016" -266677,USB-C Charging Cable,1,11.95,10/30/19 20:14,"746 Jackson St, Seattle, WA 98101" -266678,AAA Batteries (4-pack),1,2.99,10/09/19 16:28,"419 Lincoln St, Boston, MA 02215" -266679,Lightning Charging Cable,1,14.95,10/19/19 23:00,"646 Cedar St, Seattle, WA 98101" -266680,AAA Batteries (4-pack),1,2.99,10/13/19 01:34,"860 Johnson St, Los Angeles, CA 90001" -266681,Apple Airpods Headphones,1,150,10/23/19 08:06,"445 9th St, Los Angeles, CA 90001" -266682,Wired Headphones,1,11.99,10/25/19 15:10,"656 4th St, Boston, MA 02215" -266683,USB-C Charging Cable,1,11.95,10/15/19 12:44,"70 2nd St, New York City, NY 10001" -266684,Wired Headphones,1,11.99,10/30/19 20:17,"660 Maple St, Dallas, TX 75001" -266685,AAA Batteries (4-pack),4,2.99,10/03/19 00:29,"560 9th St, Los Angeles, CA 90001" -266686,AA Batteries (4-pack),1,3.84,10/13/19 13:22,"713 River St, Boston, MA 02215" -266687,USB-C Charging Cable,1,11.95,10/16/19 00:16,"475 Sunset St, New York City, NY 10001" -266688,Wired Headphones,1,11.99,10/01/19 11:53,"666 Washington St, Los Angeles, CA 90001" -266689,AAA Batteries (4-pack),1,2.99,10/31/19 09:05,"354 Madison St, Los Angeles, CA 90001" -266690,AAA Batteries (4-pack),1,2.99,10/16/19 17:01,"627 Dogwood St, San Francisco, CA 94016" -266691,27in FHD Monitor,1,149.99,10/30/19 21:59,"421 Center St, Los Angeles, CA 90001" -266692,Bose SoundSport Headphones,1,99.99,10/21/19 13:42,"664 Dogwood St, Atlanta, GA 30301" -266693,USB-C Charging Cable,1,11.95,10/15/19 18:23,"856 North St, Atlanta, GA 30301" -266694,Lightning Charging Cable,1,14.95,10/12/19 20:18,"226 Church St, Seattle, WA 98101" -266695,AA Batteries (4-pack),3,3.84,10/16/19 06:55,"218 Sunset St, Boston, MA 02215" -266696,27in FHD Monitor,1,149.99,10/12/19 15:52,"745 Jackson St, San Francisco, CA 94016" -266697,USB-C Charging Cable,1,11.95,10/05/19 13:46,"722 Wilson St, New York City, NY 10001" -266698,27in FHD Monitor,1,149.99,10/22/19 18:45,"136 Lincoln St, Los Angeles, CA 90001" -266699,Wired Headphones,1,11.99,10/22/19 22:28,"796 5th St, San Francisco, CA 94016" -266700,Lightning Charging Cable,1,14.95,10/17/19 18:23,"900 Church St, San Francisco, CA 94016" -266701,AAA Batteries (4-pack),1,2.99,10/10/19 23:07,"939 Main St, Los Angeles, CA 90001" -266702,Wired Headphones,1,11.99,10/24/19 21:00,"128 Lake St, New York City, NY 10001" -266703,Lightning Charging Cable,1,14.95,10/21/19 16:24,"355 Meadow St, New York City, NY 10001" -266704,27in 4K Gaming Monitor,1,389.99,10/07/19 11:38,"980 11th St, Los Angeles, CA 90001" -266705,Lightning Charging Cable,1,14.95,10/12/19 13:20,"881 Madison St, Portland, OR 97035" -266706,AAA Batteries (4-pack),2,2.99,10/27/19 06:31,"51 Johnson St, Boston, MA 02215" -266707,USB-C Charging Cable,1,11.95,10/19/19 18:58,"46 Hickory St, Seattle, WA 98101" -266708,Bose SoundSport Headphones,1,99.99,10/03/19 09:49,"333 Forest St, San Francisco, CA 94016" -266709,USB-C Charging Cable,1,11.95,10/26/19 17:53,"541 Church St, Atlanta, GA 30301" -266710,AAA Batteries (4-pack),1,2.99,10/13/19 21:27,"516 West St, New York City, NY 10001" -266711,34in Ultrawide Monitor,1,379.99,10/28/19 01:57,"625 Highland St, New York City, NY 10001" -266712,AAA Batteries (4-pack),1,2.99,10/25/19 21:54,"30 River St, Los Angeles, CA 90001" -266713,Apple Airpods Headphones,1,150,10/01/19 16:06,"467 12th St, Seattle, WA 98101" -266714,27in FHD Monitor,1,149.99,10/16/19 18:30,"106 Highland St, San Francisco, CA 94016" -266715,AA Batteries (4-pack),1,3.84,10/17/19 13:31,"713 9th St, Boston, MA 02215" -266716,Bose SoundSport Headphones,1,99.99,10/18/19 01:10,"662 Cedar St, Atlanta, GA 30301" -266717,Lightning Charging Cable,1,14.95,10/22/19 14:24,"236 Forest St, Los Angeles, CA 90001" -266718,Apple Airpods Headphones,1,150,10/18/19 13:51,"212 Adams St, Seattle, WA 98101" -266719,AAA Batteries (4-pack),1,2.99,10/11/19 14:27,"217 River St, Atlanta, GA 30301" -266720,Lightning Charging Cable,1,14.95,10/31/19 20:10,"862 Jackson St, Boston, MA 02215" -266721,USB-C Charging Cable,2,11.95,10/27/19 17:28,"865 Jackson St, Seattle, WA 98101" -266722,Wired Headphones,1,11.99,10/21/19 11:55,"95 Washington St, New York City, NY 10001" -266723,Flatscreen TV,1,300,10/23/19 21:49,"437 Johnson St, New York City, NY 10001" -266724,LG Dryer,1,600.0,10/22/19 21:32,"692 Spruce St, Los Angeles, CA 90001" -266725,USB-C Charging Cable,1,11.95,10/31/19 20:19,"213 Lakeview St, Seattle, WA 98101" -266726,AA Batteries (4-pack),1,3.84,10/22/19 14:01,"809 Forest St, Los Angeles, CA 90001" -266727,AAA Batteries (4-pack),2,2.99,10/18/19 12:28,"90 Highland St, Los Angeles, CA 90001" -266728,27in 4K Gaming Monitor,1,389.99,10/02/19 11:37,"144 Main St, Dallas, TX 75001" -266729,AA Batteries (4-pack),1,3.84,10/06/19 10:08,"398 1st St, New York City, NY 10001" -266730,iPhone,1,700,10/04/19 06:15,"649 Lakeview St, San Francisco, CA 94016" -266731,27in FHD Monitor,1,149.99,10/21/19 20:51,"245 Meadow St, Austin, TX 73301" -266732,AA Batteries (4-pack),1,3.84,10/31/19 09:33,"102 Sunset St, Portland, ME 04101" -266733,Wired Headphones,1,11.99,10/01/19 17:10,"519 Willow St, Portland, OR 97035" -266734,Wired Headphones,1,11.99,10/24/19 17:28,"780 4th St, San Francisco, CA 94016" -266735,34in Ultrawide Monitor,1,379.99,10/17/19 20:50,"494 6th St, San Francisco, CA 94016" -266736,AA Batteries (4-pack),1,3.84,10/02/19 04:24,"765 6th St, San Francisco, CA 94016" -266737,Lightning Charging Cable,1,14.95,10/14/19 12:39,"699 Chestnut St, Atlanta, GA 30301" -266738,34in Ultrawide Monitor,1,379.99,10/02/19 18:17,"822 Walnut St, Boston, MA 02215" -266739,USB-C Charging Cable,1,11.95,10/08/19 16:05,"635 Pine St, San Francisco, CA 94016" -266740,Bose SoundSport Headphones,1,99.99,10/01/19 19:21,"301 9th St, Seattle, WA 98101" -266741,Google Phone,1,600,10/22/19 10:19,"365 Lincoln St, Dallas, TX 75001" -266741,20in Monitor,1,109.99,10/22/19 10:19,"365 Lincoln St, Dallas, TX 75001" -266742,27in 4K Gaming Monitor,1,389.99,10/09/19 13:29,"176 North St, San Francisco, CA 94016" -266743,Lightning Charging Cable,1,14.95,10/19/19 21:34,"811 Lake St, Los Angeles, CA 90001" -266744,AAA Batteries (4-pack),2,2.99,10/01/19 10:22,"344 Madison St, San Francisco, CA 94016" -266745,Wired Headphones,1,11.99,10/10/19 14:22,"655 Hill St, Austin, TX 73301" -266746,USB-C Charging Cable,1,11.95,10/27/19 11:25,"369 11th St, Seattle, WA 98101" -266747,iPhone,1,700,10/28/19 16:58,"487 Dogwood St, Atlanta, GA 30301" -266748,AAA Batteries (4-pack),4,2.99,10/02/19 12:08,"727 West St, Austin, TX 73301" -266749,USB-C Charging Cable,1,11.95,10/06/19 18:00,"554 Madison St, Portland, OR 97035" -266750,USB-C Charging Cable,1,11.95,10/13/19 23:06,"425 Cedar St, Dallas, TX 75001" -266751,Lightning Charging Cable,1,14.95,10/06/19 13:50,"153 Hickory St, Los Angeles, CA 90001" -266752,Bose SoundSport Headphones,1,99.99,10/04/19 22:47,"974 Chestnut St, New York City, NY 10001" -266753,Flatscreen TV,1,300,10/23/19 09:35,"176 Elm St, Dallas, TX 75001" -266754,Bose SoundSport Headphones,1,99.99,10/07/19 17:13,"159 10th St, Los Angeles, CA 90001" -266755,USB-C Charging Cable,1,11.95,10/22/19 19:11,"194 8th St, Atlanta, GA 30301" -266756,AAA Batteries (4-pack),1,2.99,10/04/19 10:55,"658 Forest St, San Francisco, CA 94016" -266757,Wired Headphones,1,11.99,10/11/19 12:08,"651 Spruce St, Atlanta, GA 30301" -266758,34in Ultrawide Monitor,1,379.99,10/22/19 21:39,"681 Cedar St, Dallas, TX 75001" -266759,AAA Batteries (4-pack),1,2.99,10/08/19 09:38,"486 Ridge St, Dallas, TX 75001" -266760,Wired Headphones,1,11.99,10/20/19 15:15,"90 Jackson St, Boston, MA 02215" -266761,Wired Headphones,1,11.99,10/26/19 18:41,"437 Lakeview St, Portland, OR 97035" -266762,USB-C Charging Cable,1,11.95,10/24/19 20:23,"700 Spruce St, Dallas, TX 75001" -266763,USB-C Charging Cable,1,11.95,10/03/19 18:09,"439 Main St, Portland, ME 04101" -266764,Lightning Charging Cable,1,14.95,10/28/19 17:17,"265 Dogwood St, New York City, NY 10001" -266765,Google Phone,1,600,10/20/19 15:23,"593 Ridge St, Los Angeles, CA 90001" -266765,USB-C Charging Cable,1,11.95,10/20/19 15:23,"593 Ridge St, Los Angeles, CA 90001" -266766,Macbook Pro Laptop,1,1700,10/03/19 17:59,"529 Washington St, Boston, MA 02215" -266767,Bose SoundSport Headphones,1,99.99,10/08/19 22:18,"554 Sunset St, Atlanta, GA 30301" -266768,Wired Headphones,1,11.99,10/03/19 16:36,"175 Church St, San Francisco, CA 94016" -266769,AAA Batteries (4-pack),1,2.99,10/12/19 13:16,"856 South St, Boston, MA 02215" -266770,Wired Headphones,1,11.99,10/14/19 18:11,"608 8th St, Dallas, TX 75001" -266771,Lightning Charging Cable,1,14.95,10/04/19 19:08,"51 Pine St, Boston, MA 02215" -266772,USB-C Charging Cable,2,11.95,10/09/19 19:40,"908 6th St, San Francisco, CA 94016" -266773,27in 4K Gaming Monitor,1,389.99,10/11/19 17:26,"56 Cherry St, Los Angeles, CA 90001" -266774,Wired Headphones,1,11.99,10/11/19 19:50,"460 6th St, Dallas, TX 75001" -266775,27in FHD Monitor,1,149.99,10/26/19 14:12,"735 Park St, San Francisco, CA 94016" -266775,Bose SoundSport Headphones,1,99.99,10/26/19 14:12,"735 Park St, San Francisco, CA 94016" -266776,iPhone,1,700,10/30/19 11:04,"4 8th St, San Francisco, CA 94016" -266776,Wired Headphones,1,11.99,10/30/19 11:04,"4 8th St, San Francisco, CA 94016" -266777,Bose SoundSport Headphones,1,99.99,10/27/19 19:59,"322 Johnson St, Seattle, WA 98101" -266778,Lightning Charging Cable,1,14.95,10/10/19 18:00,"735 Elm St, New York City, NY 10001" -266779,Wired Headphones,1,11.99,10/18/19 20:31,"575 2nd St, Los Angeles, CA 90001" -266780,ThinkPad Laptop,1,999.99,10/05/19 13:59,"760 Jefferson St, San Francisco, CA 94016" -266781,USB-C Charging Cable,1,11.95,10/01/19 16:43,"326 Ridge St, Boston, MA 02215" -266782,USB-C Charging Cable,1,11.95,10/01/19 09:18,"365 Lincoln St, Los Angeles, CA 90001" -266783,Wired Headphones,1,11.99,10/27/19 13:10,"318 Sunset St, San Francisco, CA 94016" -266784,Google Phone,1,600,10/14/19 08:08,"176 Main St, Dallas, TX 75001" -266785,AAA Batteries (4-pack),1,2.99,10/27/19 13:16,"995 7th St, Dallas, TX 75001" -266786,Wired Headphones,1,11.99,10/02/19 07:51,"436 Elm St, Seattle, WA 98101" -266787,USB-C Charging Cable,1,11.95,10/02/19 09:16,"267 Adams St, Boston, MA 02215" -266788,Wired Headphones,1,11.99,10/05/19 19:54,"23 Highland St, San Francisco, CA 94016" -266789,AA Batteries (4-pack),1,3.84,10/09/19 10:46,"980 Jefferson St, Dallas, TX 75001" -266790,27in 4K Gaming Monitor,1,389.99,10/23/19 16:03,"902 Jackson St, Los Angeles, CA 90001" -266791,Wired Headphones,1,11.99,10/29/19 15:37,"338 Lakeview St, Dallas, TX 75001" -266792,Google Phone,1,600,10/03/19 13:11,"463 8th St, Seattle, WA 98101" -266792,Wired Headphones,1,11.99,10/03/19 13:11,"463 8th St, Seattle, WA 98101" -266793,AA Batteries (4-pack),1,3.84,10/18/19 20:30,"951 8th St, Los Angeles, CA 90001" -266794,Wired Headphones,1,11.99,10/17/19 18:13,"354 5th St, Austin, TX 73301" -266795,Lightning Charging Cable,1,14.95,10/08/19 19:29,"612 West St, San Francisco, CA 94016" -266796,Lightning Charging Cable,1,14.95,10/31/19 12:06,"352 5th St, Atlanta, GA 30301" -266797,Wired Headphones,1,11.99,10/05/19 17:44,"670 13th St, Portland, OR 97035" -266798,Lightning Charging Cable,1,14.95,10/20/19 05:53,"230 Forest St, Dallas, TX 75001" -266799,Bose SoundSport Headphones,1,99.99,10/13/19 23:12,"262 4th St, Boston, MA 02215" -266800,Lightning Charging Cable,1,14.95,10/06/19 22:40,"902 Spruce St, Los Angeles, CA 90001" -266801,Flatscreen TV,1,300,10/17/19 10:16,"374 13th St, New York City, NY 10001" -266802,USB-C Charging Cable,2,11.95,10/31/19 20:20,"816 7th St, Boston, MA 02215" -266803,AA Batteries (4-pack),1,3.84,10/25/19 11:59,"120 Lincoln St, Portland, OR 97035" -266804,Wired Headphones,1,11.99,10/20/19 12:32,"664 4th St, Atlanta, GA 30301" -266805,AAA Batteries (4-pack),1,2.99,10/15/19 10:36,"727 Hickory St, San Francisco, CA 94016" -266806,20in Monitor,1,109.99,10/30/19 21:28,"21 Jackson St, Seattle, WA 98101" -266807,AAA Batteries (4-pack),1,2.99,10/14/19 01:21,"515 Walnut St, Austin, TX 73301" -266808,Apple Airpods Headphones,1,150,10/29/19 16:23,"68 1st St, San Francisco, CA 94016" -266809,Lightning Charging Cable,1,14.95,10/31/19 17:58,"627 Lakeview St, Los Angeles, CA 90001" -266810,Bose SoundSport Headphones,1,99.99,10/16/19 01:37,"257 Pine St, San Francisco, CA 94016" -266811,Apple Airpods Headphones,1,150,10/06/19 16:00,"176 Ridge St, New York City, NY 10001" -266812,AA Batteries (4-pack),2,3.84,10/29/19 01:12,"54 Maple St, Boston, MA 02215" -266813,AA Batteries (4-pack),1,3.84,10/17/19 19:01,"702 13th St, Atlanta, GA 30301" -266814,Wired Headphones,1,11.99,10/27/19 21:33,"444 North St, Seattle, WA 98101" -266815,LG Dryer,1,600.0,10/12/19 06:23,"76 Forest St, Dallas, TX 75001" -266816,Apple Airpods Headphones,1,150,10/28/19 18:45,"780 Spruce St, Dallas, TX 75001" -266817,27in 4K Gaming Monitor,1,389.99,10/28/19 18:35,"902 Forest St, Seattle, WA 98101" -266818,AAA Batteries (4-pack),3,2.99,10/09/19 10:39,"218 Ridge St, San Francisco, CA 94016" -266819,AA Batteries (4-pack),1,3.84,10/20/19 14:15,"841 Maple St, Dallas, TX 75001" -266820,20in Monitor,1,109.99,10/16/19 16:27,"89 Wilson St, Seattle, WA 98101" -266821,USB-C Charging Cable,1,11.95,10/12/19 22:13,"617 Johnson St, Los Angeles, CA 90001" -266822,ThinkPad Laptop,1,999.99,10/25/19 22:11,"380 12th St, Dallas, TX 75001" -266823,Lightning Charging Cable,1,14.95,10/14/19 05:35,"232 Pine St, San Francisco, CA 94016" -266824,USB-C Charging Cable,1,11.95,10/22/19 20:24,"295 Hickory St, Boston, MA 02215" -266825,Macbook Pro Laptop,1,1700,10/03/19 15:02,"876 West St, Seattle, WA 98101" -266826,AAA Batteries (4-pack),1,2.99,10/23/19 03:21,"831 Church St, Austin, TX 73301" -266827,Lightning Charging Cable,1,14.95,10/20/19 20:21,"311 Dogwood St, San Francisco, CA 94016" -266828,27in FHD Monitor,1,149.99,10/08/19 17:35,"181 Cherry St, New York City, NY 10001" -266829,AA Batteries (4-pack),1,3.84,10/22/19 13:29,"683 Jefferson St, Dallas, TX 75001" -266830,Apple Airpods Headphones,1,150,10/10/19 18:14,"265 Lincoln St, Los Angeles, CA 90001" -266831,Bose SoundSport Headphones,1,99.99,10/30/19 14:01,"537 6th St, Portland, OR 97035" -266832,AAA Batteries (4-pack),1,2.99,10/09/19 16:19,"214 Wilson St, New York City, NY 10001" -266833,Apple Airpods Headphones,1,150,10/08/19 20:51,"572 Main St, Atlanta, GA 30301" -266834,Bose SoundSport Headphones,1,99.99,10/20/19 17:32,"270 Madison St, San Francisco, CA 94016" -266835,Wired Headphones,1,11.99,10/29/19 23:18,"997 Pine St, Boston, MA 02215" -266836,Apple Airpods Headphones,1,150,10/30/19 19:59,"830 Jackson St, Seattle, WA 98101" -266837,Flatscreen TV,1,300,10/15/19 16:01,"146 Meadow St, San Francisco, CA 94016" -266838,Lightning Charging Cable,1,14.95,10/04/19 12:35,"557 9th St, New York City, NY 10001" -266839,Bose SoundSport Headphones,1,99.99,10/27/19 12:13,"762 Johnson St, Los Angeles, CA 90001" -266840,iPhone,1,700,10/10/19 22:54,"838 Hickory St, Los Angeles, CA 90001" -266841,Lightning Charging Cable,1,14.95,10/08/19 16:08,"375 Jackson St, San Francisco, CA 94016" -266842,27in FHD Monitor,1,149.99,10/23/19 14:01,"650 13th St, Atlanta, GA 30301" -266843,Wired Headphones,1,11.99,10/22/19 23:34,"740 Maple St, Boston, MA 02215" -266844,AA Batteries (4-pack),1,3.84,10/19/19 09:54,"908 Meadow St, Los Angeles, CA 90001" -266845,Bose SoundSport Headphones,1,99.99,10/27/19 17:54,"186 Jefferson St, Seattle, WA 98101" -266846,Apple Airpods Headphones,1,150,10/24/19 18:39,"519 Maple St, Boston, MA 02215" -266847,USB-C Charging Cable,1,11.95,10/24/19 12:32,"963 Hill St, San Francisco, CA 94016" -266848,iPhone,1,700,10/14/19 00:22,"467 Cedar St, Boston, MA 02215" -266849,AAA Batteries (4-pack),1,2.99,10/16/19 21:56,"283 North St, San Francisco, CA 94016" -266850,AAA Batteries (4-pack),2,2.99,10/21/19 22:49,"126 Madison St, New York City, NY 10001" -266851,Bose SoundSport Headphones,1,99.99,10/05/19 16:16,"733 14th St, Portland, OR 97035" -266852,Lightning Charging Cable,1,14.95,10/06/19 21:52,"232 Highland St, Los Angeles, CA 90001" -266853,AAA Batteries (4-pack),1,2.99,10/28/19 15:49,"484 North St, Los Angeles, CA 90001" -266854,Lightning Charging Cable,1,14.95,10/17/19 22:01,"39 Center St, Dallas, TX 75001" -266855,AA Batteries (4-pack),1,3.84,10/14/19 07:37,"291 Hickory St, New York City, NY 10001" -266856,Lightning Charging Cable,1,14.95,10/05/19 14:44,"880 Lake St, Boston, MA 02215" -266857,AA Batteries (4-pack),1,3.84,10/11/19 14:04,"450 Walnut St, San Francisco, CA 94016" -266858,Apple Airpods Headphones,1,150,10/12/19 17:32,"569 Adams St, San Francisco, CA 94016" -266859,AA Batteries (4-pack),1,3.84,10/06/19 15:47,"947 5th St, Atlanta, GA 30301" -266860,27in 4K Gaming Monitor,1,389.99,10/31/19 21:49,"173 Adams St, San Francisco, CA 94016" -266861,Apple Airpods Headphones,1,150,10/19/19 14:51,"342 5th St, Boston, MA 02215" -266862,AAA Batteries (4-pack),1,2.99,10/10/19 12:15,"842 Pine St, Austin, TX 73301" -266863,AAA Batteries (4-pack),2,2.99,10/05/19 13:47,"822 11th St, San Francisco, CA 94016" -266864,Apple Airpods Headphones,1,150,10/02/19 23:33,"999 Lincoln St, Seattle, WA 98101" -266865,Lightning Charging Cable,1,14.95,10/20/19 09:21,"930 Spruce St, San Francisco, CA 94016" -266866,USB-C Charging Cable,1,11.95,10/09/19 15:56,"925 Park St, San Francisco, CA 94016" -266867,Wired Headphones,1,11.99,10/01/19 13:45,"804 Johnson St, San Francisco, CA 94016" -266868,Lightning Charging Cable,1,14.95,10/28/19 14:12,"141 Ridge St, Atlanta, GA 30301" -266869,AA Batteries (4-pack),1,3.84,10/19/19 17:55,"839 Highland St, Seattle, WA 98101" -266870,iPhone,1,700,10/03/19 10:16,"320 Madison St, Portland, ME 04101" -266870,Wired Headphones,1,11.99,10/03/19 10:16,"320 Madison St, Portland, ME 04101" -266871,Apple Airpods Headphones,1,150,10/02/19 06:17,"426 Walnut St, Los Angeles, CA 90001" -266872,Lightning Charging Cable,1,14.95,10/24/19 13:05,"310 Jefferson St, San Francisco, CA 94016" -266873,AA Batteries (4-pack),1,3.84,10/05/19 10:54,"5 Madison St, San Francisco, CA 94016" -266874,Wired Headphones,2,11.99,10/06/19 23:36,"413 Cedar St, Boston, MA 02215" -266875,Lightning Charging Cable,1,14.95,10/03/19 19:47,"697 Pine St, Seattle, WA 98101" -266876,AAA Batteries (4-pack),1,2.99,10/04/19 21:48,"867 1st St, San Francisco, CA 94016" -266877,Bose SoundSport Headphones,1,99.99,10/30/19 10:11,"989 Spruce St, San Francisco, CA 94016" -266878,Bose SoundSport Headphones,1,99.99,10/25/19 13:58,"838 Cherry St, Seattle, WA 98101" -266878,AA Batteries (4-pack),1,3.84,10/25/19 13:58,"838 Cherry St, Seattle, WA 98101" -266879,27in 4K Gaming Monitor,1,389.99,10/10/19 16:12,"133 Cherry St, Atlanta, GA 30301" -266880,AA Batteries (4-pack),1,3.84,10/10/19 20:27,"533 Spruce St, Boston, MA 02215" -266881,Lightning Charging Cable,1,14.95,10/20/19 10:28,"254 Walnut St, San Francisco, CA 94016" -266882,iPhone,1,700,10/25/19 09:55,"872 Cherry St, Atlanta, GA 30301" -266882,Wired Headphones,1,11.99,10/25/19 09:55,"872 Cherry St, Atlanta, GA 30301" -266883,Lightning Charging Cable,1,14.95,10/04/19 16:59,"644 Hill St, Los Angeles, CA 90001" -,,,,, -266884,Lightning Charging Cable,1,14.95,10/28/19 21:54,"198 5th St, Atlanta, GA 30301" -266885,AAA Batteries (4-pack),1,2.99,10/01/19 17:08,"392 1st St, Portland, OR 97035" -266886,USB-C Charging Cable,2,11.95,10/01/19 10:52,"126 Dogwood St, Los Angeles, CA 90001" -266887,Apple Airpods Headphones,1,150,10/09/19 21:55,"3 Madison St, Atlanta, GA 30301" -266888,Bose SoundSport Headphones,1,99.99,10/19/19 20:20,"669 Highland St, Boston, MA 02215" -266889,USB-C Charging Cable,1,11.95,10/26/19 22:24,"301 Center St, San Francisco, CA 94016" -266890,USB-C Charging Cable,1,11.95,10/25/19 17:30,"921 Cedar St, Dallas, TX 75001" -266891,Lightning Charging Cable,1,14.95,10/27/19 09:32,"832 Adams St, New York City, NY 10001" -266892,27in 4K Gaming Monitor,1,389.99,10/06/19 16:35,"133 South St, Austin, TX 73301" -266893,USB-C Charging Cable,1,11.95,10/02/19 13:48,"899 Wilson St, New York City, NY 10001" -266894,Bose SoundSport Headphones,1,99.99,10/17/19 19:02,"55 Chestnut St, Los Angeles, CA 90001" -266895,Lightning Charging Cable,1,14.95,10/06/19 23:26,"820 4th St, Portland, OR 97035" -266896,AA Batteries (4-pack),1,3.84,10/27/19 16:05,"826 Main St, Austin, TX 73301" -266897,34in Ultrawide Monitor,1,379.99,10/20/19 18:01,"37 8th St, Dallas, TX 75001" -266898,27in 4K Gaming Monitor,1,389.99,10/01/19 23:21,"233 Adams St, Los Angeles, CA 90001" -266899,Flatscreen TV,1,300,10/15/19 00:03,"600 Cherry St, Austin, TX 73301" -266900,Apple Airpods Headphones,1,150,10/22/19 09:01,"202 14th St, Los Angeles, CA 90001" -266901,USB-C Charging Cable,1,11.95,10/28/19 14:15,"81 11th St, Austin, TX 73301" -266902,AA Batteries (4-pack),1,3.84,10/14/19 23:26,"890 Lakeview St, Seattle, WA 98101" -266903,USB-C Charging Cable,1,11.95,10/25/19 01:40,"55 4th St, Dallas, TX 75001" -266904,AAA Batteries (4-pack),4,2.99,10/27/19 00:49,"438 10th St, Boston, MA 02215" -266905,Lightning Charging Cable,1,14.95,10/06/19 22:14,"829 9th St, Seattle, WA 98101" -266906,AA Batteries (4-pack),1,3.84,10/21/19 15:50,"294 Main St, San Francisco, CA 94016" -266907,Wired Headphones,1,11.99,10/24/19 10:16,"376 River St, New York City, NY 10001" -266908,Google Phone,1,600,10/01/19 15:00,"66 Jackson St, Seattle, WA 98101" -266908,Bose SoundSport Headphones,1,99.99,10/01/19 15:00,"66 Jackson St, Seattle, WA 98101" -266909,Bose SoundSport Headphones,1,99.99,10/08/19 19:25,"672 13th St, San Francisco, CA 94016" -266910,Apple Airpods Headphones,1,150,10/06/19 09:41,"157 Cedar St, Atlanta, GA 30301" -266911,Macbook Pro Laptop,1,1700,10/11/19 18:02,"820 Hickory St, New York City, NY 10001" -266912,Flatscreen TV,1,300,10/19/19 19:46,"914 Cedar St, New York City, NY 10001" -266913,AAA Batteries (4-pack),1,2.99,10/20/19 10:44,"192 13th St, Dallas, TX 75001" -266914,Apple Airpods Headphones,1,150,10/05/19 10:12,"382 Center St, Portland, OR 97035" -266915,Lightning Charging Cable,1,14.95,10/21/19 00:08,"555 Main St, New York City, NY 10001" -266916,Bose SoundSport Headphones,1,99.99,10/05/19 13:05,"847 West St, Atlanta, GA 30301" -266917,AA Batteries (4-pack),1,3.84,10/25/19 12:36,"511 Wilson St, Seattle, WA 98101" -266918,Macbook Pro Laptop,1,1700,10/23/19 17:00,"848 12th St, Los Angeles, CA 90001" -266919,Wired Headphones,1,11.99,10/05/19 12:05,"600 1st St, Dallas, TX 75001" -266920,Wired Headphones,1,11.99,10/29/19 11:27,"81 9th St, San Francisco, CA 94016" -266921,AAA Batteries (4-pack),1,2.99,10/05/19 18:48,"831 1st St, Boston, MA 02215" -266922,Wired Headphones,1,11.99,10/27/19 19:21,"561 Highland St, Boston, MA 02215" -266923,34in Ultrawide Monitor,1,379.99,10/17/19 20:43,"97 Main St, Los Angeles, CA 90001" -266924,USB-C Charging Cable,1,11.95,10/08/19 12:51,"612 12th St, San Francisco, CA 94016" -266925,AA Batteries (4-pack),1,3.84,10/15/19 10:18,"801 Jackson St, San Francisco, CA 94016" -266926,27in 4K Gaming Monitor,1,389.99,10/11/19 11:36,"504 North St, Los Angeles, CA 90001" -266927,AA Batteries (4-pack),1,3.84,10/01/19 12:21,"380 14th St, San Francisco, CA 94016" -266928,Wired Headphones,1,11.99,10/01/19 09:56,"499 8th St, Los Angeles, CA 90001" -266929,27in FHD Monitor,1,149.99,10/24/19 14:36,"115 4th St, Los Angeles, CA 90001" -266930,Lightning Charging Cable,1,14.95,10/15/19 22:41,"675 Highland St, Seattle, WA 98101" -266931,AAA Batteries (4-pack),1,2.99,10/26/19 20:31,"395 Center St, Austin, TX 73301" -266932,AAA Batteries (4-pack),2,2.99,10/27/19 08:34,"18 Chestnut St, San Francisco, CA 94016" -266933,27in 4K Gaming Monitor,1,389.99,10/11/19 11:20,"103 Johnson St, Los Angeles, CA 90001" -266934,Wired Headphones,1,11.99,10/25/19 23:24,"538 5th St, Los Angeles, CA 90001" -266935,AAA Batteries (4-pack),1,2.99,10/13/19 18:55,"692 Lakeview St, San Francisco, CA 94016" -266936,AA Batteries (4-pack),1,3.84,10/16/19 08:29,"749 7th St, San Francisco, CA 94016" -266937,Bose SoundSport Headphones,1,99.99,10/22/19 15:15,"67 13th St, Dallas, TX 75001" -266938,34in Ultrawide Monitor,1,379.99,10/20/19 08:52,"28 1st St, Los Angeles, CA 90001" -266939,AAA Batteries (4-pack),3,2.99,10/13/19 14:24,"760 Hill St, Boston, MA 02215" -266940,Flatscreen TV,1,300,10/02/19 15:21,"739 Cedar St, Los Angeles, CA 90001" -266941,Lightning Charging Cable,1,14.95,10/03/19 13:00,"639 Johnson St, San Francisco, CA 94016" -266942,USB-C Charging Cable,1,11.95,10/25/19 12:45,"116 6th St, San Francisco, CA 94016" -266943,Bose SoundSport Headphones,1,99.99,10/27/19 18:03,"984 Park St, Los Angeles, CA 90001" -266944,Apple Airpods Headphones,1,150,10/05/19 17:49,"115 Lincoln St, Boston, MA 02215" -266945,Bose SoundSport Headphones,1,99.99,10/19/19 09:35,"695 Cherry St, Los Angeles, CA 90001" -266946,27in 4K Gaming Monitor,1,389.99,10/17/19 17:20,"706 West St, Seattle, WA 98101" -266947,27in FHD Monitor,1,149.99,10/24/19 09:23,"177 8th St, Boston, MA 02215" -266948,Lightning Charging Cable,1,14.95,10/10/19 22:03,"687 12th St, Los Angeles, CA 90001" -266949,AAA Batteries (4-pack),2,2.99,10/11/19 17:42,"305 Jefferson St, Portland, OR 97035" -266950,Apple Airpods Headphones,1,150,10/08/19 15:08,"166 Ridge St, San Francisco, CA 94016" -266951,Wired Headphones,1,11.99,10/06/19 15:53,"638 14th St, Boston, MA 02215" -266952,USB-C Charging Cable,1,11.95,10/16/19 15:53,"653 Maple St, Los Angeles, CA 90001" -266953,USB-C Charging Cable,1,11.95,10/15/19 14:09,"51 River St, Portland, OR 97035" -266954,Lightning Charging Cable,1,14.95,10/06/19 17:26,"680 Maple St, Portland, OR 97035" -266955,27in FHD Monitor,1,149.99,10/21/19 10:19,"12 Washington St, Atlanta, GA 30301" -266956,20in Monitor,1,109.99,10/23/19 15:29,"703 11th St, San Francisco, CA 94016" -266957,AAA Batteries (4-pack),1,2.99,10/09/19 09:00,"312 14th St, Seattle, WA 98101" -266958,Lightning Charging Cable,1,14.95,10/13/19 08:24,"566 Main St, Los Angeles, CA 90001" -266959,AA Batteries (4-pack),2,3.84,10/29/19 21:21,"851 North St, Seattle, WA 98101" -266960,USB-C Charging Cable,1,11.95,10/06/19 11:48,"364 Lakeview St, San Francisco, CA 94016" -266961,Wired Headphones,1,11.99,10/09/19 07:35,"376 Johnson St, Seattle, WA 98101" -266962,Apple Airpods Headphones,1,150,10/25/19 08:30,"110 Hickory St, New York City, NY 10001" -266963,Apple Airpods Headphones,1,150,10/01/19 20:31,"916 North St, New York City, NY 10001" -266964,AAA Batteries (4-pack),1,2.99,10/02/19 00:00,"438 Washington St, Boston, MA 02215" -266965,27in FHD Monitor,1,149.99,10/30/19 22:53,"654 Center St, San Francisco, CA 94016" -266966,USB-C Charging Cable,1,11.95,10/31/19 07:43,"986 7th St, Los Angeles, CA 90001" -266967,USB-C Charging Cable,1,11.95,10/21/19 06:03,"719 Walnut St, San Francisco, CA 94016" -266968,AA Batteries (4-pack),1,3.84,10/31/19 14:54,"560 Spruce St, Boston, MA 02215" -266969,AAA Batteries (4-pack),3,2.99,10/04/19 09:13,"1 Sunset St, Austin, TX 73301" -266970,AAA Batteries (4-pack),1,2.99,10/23/19 21:04,"712 Maple St, San Francisco, CA 94016" -266971,AA Batteries (4-pack),1,3.84,10/01/19 10:47,"100 6th St, New York City, NY 10001" -266972,Lightning Charging Cable,1,14.95,10/25/19 22:46,"480 Center St, Dallas, TX 75001" -266973,Apple Airpods Headphones,1,150,10/20/19 13:50,"937 10th St, San Francisco, CA 94016" -266974,ThinkPad Laptop,1,999.99,10/29/19 06:55,"5 Center St, Los Angeles, CA 90001" -266975,AA Batteries (4-pack),2,3.84,10/14/19 11:40,"418 Jefferson St, Seattle, WA 98101" -266976,Bose SoundSport Headphones,1,99.99,10/09/19 11:50,"478 Meadow St, San Francisco, CA 94016" -266977,Vareebadd Phone,1,400,10/22/19 10:14,"757 Chestnut St, Seattle, WA 98101" -266977,USB-C Charging Cable,1,11.95,10/22/19 10:14,"757 Chestnut St, Seattle, WA 98101" -266977,Wired Headphones,1,11.99,10/22/19 10:14,"757 Chestnut St, Seattle, WA 98101" -266978,Lightning Charging Cable,1,14.95,10/08/19 19:48,"223 Hickory St, Portland, OR 97035" -266979,USB-C Charging Cable,1,11.95,10/15/19 10:43,"761 Jackson St, New York City, NY 10001" -266980,Wired Headphones,1,11.99,10/21/19 23:09,"89 4th St, Dallas, TX 75001" -266980,Apple Airpods Headphones,1,150,10/21/19 23:09,"89 4th St, Dallas, TX 75001" -266981,Lightning Charging Cable,2,14.95,10/07/19 21:16,"418 4th St, San Francisco, CA 94016" -266982,Apple Airpods Headphones,1,150,10/02/19 19:41,"70 Pine St, Seattle, WA 98101" -266983,AAA Batteries (4-pack),2,2.99,10/24/19 13:32,"548 10th St, Seattle, WA 98101" -266984,AAA Batteries (4-pack),1,2.99,10/07/19 09:50,"907 4th St, Boston, MA 02215" -266985,AAA Batteries (4-pack),1,2.99,10/12/19 09:19,"912 Johnson St, Los Angeles, CA 90001" -266986,Apple Airpods Headphones,1,150,10/23/19 08:41,"90 Highland St, San Francisco, CA 94016" -266987,AAA Batteries (4-pack),1,2.99,10/30/19 13:21,"756 Hill St, Boston, MA 02215" -266988,Lightning Charging Cable,1,14.95,10/09/19 10:47,"401 Cherry St, Dallas, TX 75001" -266989,Apple Airpods Headphones,1,150,10/26/19 10:37,"167 Center St, Dallas, TX 75001" -266990,AA Batteries (4-pack),2,3.84,10/02/19 09:34,"767 Wilson St, Boston, MA 02215" -266991,Bose SoundSport Headphones,1,99.99,10/09/19 14:34,"408 Cedar St, Austin, TX 73301" -266992,Lightning Charging Cable,1,14.95,10/15/19 15:27,"85 River St, Los Angeles, CA 90001" -266993,Flatscreen TV,2,300,10/21/19 16:47,"646 9th St, Los Angeles, CA 90001" -266994,Bose SoundSport Headphones,1,99.99,10/22/19 08:37,"617 1st St, Boston, MA 02215" -266995,34in Ultrawide Monitor,1,379.99,10/16/19 06:52,"370 Spruce St, Los Angeles, CA 90001" -266996,20in Monitor,1,109.99,10/11/19 12:47,"440 6th St, San Francisco, CA 94016" -266997,iPhone,1,700,10/20/19 17:54,"228 1st St, Austin, TX 73301" -266997,Lightning Charging Cable,1,14.95,10/20/19 17:54,"228 1st St, Austin, TX 73301" -266998,27in 4K Gaming Monitor,1,389.99,10/01/19 19:32,"712 Main St, San Francisco, CA 94016" -266999,Lightning Charging Cable,1,14.95,10/02/19 13:04,"370 Willow St, Dallas, TX 75001" -,,,,, -267000,Apple Airpods Headphones,1,150,10/04/19 19:37,"557 Lakeview St, Los Angeles, CA 90001" -267001,USB-C Charging Cable,1,11.95,10/29/19 11:02,"126 Cherry St, San Francisco, CA 94016" -267002,Vareebadd Phone,1,400,10/17/19 22:44,"907 Cedar St, San Francisco, CA 94016" -267002,Bose SoundSport Headphones,1,99.99,10/17/19 22:44,"907 Cedar St, San Francisco, CA 94016" -267003,Apple Airpods Headphones,1,150,10/21/19 11:47,"76 Washington St, Boston, MA 02215" -267004,AAA Batteries (4-pack),2,2.99,10/06/19 15:21,"507 8th St, Austin, TX 73301" -267005,27in FHD Monitor,1,149.99,10/06/19 06:46,"981 South St, Los Angeles, CA 90001" -267006,AA Batteries (4-pack),1,3.84,10/15/19 22:43,"278 Chestnut St, New York City, NY 10001" -267007,Wired Headphones,1,11.99,10/06/19 11:51,"637 Wilson St, Los Angeles, CA 90001" -267008,Bose SoundSport Headphones,1,99.99,10/03/19 17:27,"683 Lincoln St, San Francisco, CA 94016" -267009,Bose SoundSport Headphones,1,99.99,10/02/19 15:28,"964 Cherry St, San Francisco, CA 94016" -267010,iPhone,1,700,10/02/19 19:09,"917 Cherry St, Dallas, TX 75001" -267011,USB-C Charging Cable,2,11.95,10/03/19 09:18,"929 Wilson St, Austin, TX 73301" -267012,Wired Headphones,1,11.99,10/06/19 18:12,"900 Jefferson St, Dallas, TX 75001" -267013,Lightning Charging Cable,1,14.95,10/07/19 11:37,"823 Highland St, New York City, NY 10001" -267013,AAA Batteries (4-pack),2,2.99,10/07/19 11:37,"823 Highland St, New York City, NY 10001" -267014,Flatscreen TV,1,300,10/03/19 08:18,"799 9th St, Seattle, WA 98101" -267015,USB-C Charging Cable,1,11.95,10/03/19 09:02,"266 Chestnut St, Los Angeles, CA 90001" -267016,AAA Batteries (4-pack),1,2.99,10/03/19 16:36,"996 Hickory St, Los Angeles, CA 90001" -267017,Flatscreen TV,1,300,10/27/19 14:20,"123 Willow St, Portland, OR 97035" -267018,USB-C Charging Cable,1,11.95,10/06/19 19:30,"937 Hickory St, San Francisco, CA 94016" -267019,Wired Headphones,1,11.99,10/06/19 15:20,"259 Willow St, Atlanta, GA 30301" -267020,iPhone,1,700,10/16/19 18:39,"162 Ridge St, New York City, NY 10001" -267021,USB-C Charging Cable,1,11.95,10/29/19 19:34,"689 11th St, Seattle, WA 98101" -267022,USB-C Charging Cable,1,11.95,10/30/19 18:13,"194 2nd St, Los Angeles, CA 90001" -267023,USB-C Charging Cable,1,11.95,10/17/19 11:43,"635 Main St, Dallas, TX 75001" -267024,Lightning Charging Cable,1,14.95,10/02/19 10:36,"704 Sunset St, San Francisco, CA 94016" -267025,AA Batteries (4-pack),1,3.84,10/11/19 08:50,"907 Church St, Atlanta, GA 30301" -267026,Bose SoundSport Headphones,1,99.99,10/16/19 13:06,"150 Maple St, San Francisco, CA 94016" -267027,USB-C Charging Cable,1,11.95,10/14/19 20:28,"344 9th St, San Francisco, CA 94016" -267028,USB-C Charging Cable,1,11.95,10/28/19 17:42,"194 5th St, Atlanta, GA 30301" -267029,AAA Batteries (4-pack),1,2.99,10/14/19 10:03,"483 Walnut St, San Francisco, CA 94016" -267030,Apple Airpods Headphones,1,150,10/19/19 22:45,"714 Hill St, Dallas, TX 75001" -267031,AAA Batteries (4-pack),4,2.99,10/17/19 16:59,"540 Pine St, Portland, ME 04101" -267032,USB-C Charging Cable,1,11.95,10/14/19 09:01,"714 Madison St, Los Angeles, CA 90001" -267032,Apple Airpods Headphones,1,150,10/14/19 09:01,"714 Madison St, Los Angeles, CA 90001" -267033,Macbook Pro Laptop,1,1700,10/02/19 19:59,"98 Dogwood St, Portland, OR 97035" -267034,Apple Airpods Headphones,1,150,10/30/19 13:38,"987 Lake St, Dallas, TX 75001" -267035,Apple Airpods Headphones,1,150,10/24/19 07:57,"704 Hickory St, Los Angeles, CA 90001" -267036,Lightning Charging Cable,1,14.95,10/04/19 20:48,"637 Sunset St, Los Angeles, CA 90001" -267037,27in FHD Monitor,1,149.99,10/05/19 03:18,"176 Cherry St, Seattle, WA 98101" -267038,Bose SoundSport Headphones,1,99.99,10/13/19 22:05,"141 Elm St, San Francisco, CA 94016" -267039,AA Batteries (4-pack),1,3.84,10/21/19 03:44,"219 Johnson St, Los Angeles, CA 90001" -267040,27in FHD Monitor,1,149.99,10/16/19 14:37,"174 Cedar St, Los Angeles, CA 90001" -267041,Lightning Charging Cable,1,14.95,10/12/19 19:39,"148 Washington St, San Francisco, CA 94016" -267042,Apple Airpods Headphones,1,150,10/15/19 11:06,"700 Main St, Atlanta, GA 30301" -267043,Bose SoundSport Headphones,1,99.99,10/20/19 11:41,"207 Chestnut St, New York City, NY 10001" -267044,27in FHD Monitor,1,149.99,10/21/19 00:25,"163 Madison St, Atlanta, GA 30301" -267045,AAA Batteries (4-pack),1,2.99,10/03/19 06:41,"578 12th St, Boston, MA 02215" -267046,AA Batteries (4-pack),1,3.84,10/05/19 16:44,"663 River St, San Francisco, CA 94016" -267047,LG Dryer,1,600.0,10/30/19 12:05,"712 2nd St, Los Angeles, CA 90001" -267048,USB-C Charging Cable,1,11.95,10/21/19 17:23,"740 West St, Boston, MA 02215" -267049,AAA Batteries (4-pack),1,2.99,10/16/19 23:46,"68 Elm St, New York City, NY 10001" -267050,Vareebadd Phone,1,400,10/13/19 18:16,"505 10th St, Atlanta, GA 30301" -267051,Lightning Charging Cable,2,14.95,10/01/19 23:25,"958 Ridge St, San Francisco, CA 94016" -267052,AAA Batteries (4-pack),1,2.99,10/26/19 02:49,"808 Madison St, New York City, NY 10001" -267053,Lightning Charging Cable,1,14.95,10/10/19 10:42,"318 Walnut St, New York City, NY 10001" -267054,Wired Headphones,1,11.99,10/08/19 10:50,"827 Lakeview St, San Francisco, CA 94016" -267055,AAA Batteries (4-pack),2,2.99,10/15/19 06:52,"924 Lincoln St, Los Angeles, CA 90001" -267056,Macbook Pro Laptop,1,1700,10/25/19 21:13,"432 Park St, Atlanta, GA 30301" -267057,Lightning Charging Cable,1,14.95,10/04/19 20:19,"311 7th St, San Francisco, CA 94016" -267058,iPhone,1,700,10/21/19 19:48,"982 Willow St, Seattle, WA 98101" -267059,AAA Batteries (4-pack),1,2.99,10/04/19 19:34,"755 Pine St, Los Angeles, CA 90001" -267060,34in Ultrawide Monitor,1,379.99,10/05/19 20:33,"162 River St, San Francisco, CA 94016" -267061,Bose SoundSport Headphones,1,99.99,10/28/19 03:55,"792 7th St, Boston, MA 02215" -267062,AAA Batteries (4-pack),1,2.99,10/25/19 22:11,"84 2nd St, San Francisco, CA 94016" -267063,Vareebadd Phone,1,400,10/07/19 01:10,"844 Willow St, San Francisco, CA 94016" -267064,USB-C Charging Cable,1,11.95,10/27/19 22:08,"266 Forest St, Seattle, WA 98101" -267065,Macbook Pro Laptop,1,1700,10/22/19 20:36,"133 Church St, Dallas, TX 75001" -267066,27in FHD Monitor,1,149.99,10/16/19 15:27,"266 Cherry St, Seattle, WA 98101" -267067,27in 4K Gaming Monitor,1,389.99,10/05/19 10:55,"508 South St, Atlanta, GA 30301" -267068,AA Batteries (4-pack),1,3.84,10/08/19 18:15,"154 Lincoln St, Los Angeles, CA 90001" -267069,USB-C Charging Cable,1,11.95,10/07/19 09:30,"603 5th St, Seattle, WA 98101" -267070,ThinkPad Laptop,1,999.99,10/21/19 18:40,"668 Jefferson St, New York City, NY 10001" -267071,Bose SoundSport Headphones,1,99.99,10/21/19 12:37,"688 Church St, Los Angeles, CA 90001" -267072,ThinkPad Laptop,1,999.99,10/15/19 07:41,"988 6th St, Portland, OR 97035" -267073,USB-C Charging Cable,1,11.95,10/28/19 20:17,"675 Washington St, Dallas, TX 75001" -267074,Google Phone,1,600,10/05/19 12:21,"91 9th St, New York City, NY 10001" -267074,Wired Headphones,1,11.99,10/05/19 12:21,"91 9th St, New York City, NY 10001" -267075,AA Batteries (4-pack),2,3.84,10/05/19 16:34,"7 Forest St, Seattle, WA 98101" -267076,Lightning Charging Cable,2,14.95,10/06/19 09:45,"516 Willow St, Los Angeles, CA 90001" -267077,AA Batteries (4-pack),1,3.84,10/18/19 16:48,"268 Hill St, Boston, MA 02215" -267078,AAA Batteries (4-pack),1,2.99,10/07/19 08:24,"438 10th St, Dallas, TX 75001" -267079,Macbook Pro Laptop,1,1700,10/28/19 13:04,"478 14th St, San Francisco, CA 94016" -267080,AA Batteries (4-pack),1,3.84,10/16/19 18:43,"48 Hill St, Austin, TX 73301" -267081,Lightning Charging Cable,1,14.95,10/10/19 12:45,"643 Forest St, Boston, MA 02215" -267082,Apple Airpods Headphones,1,150,10/08/19 10:04,"547 Walnut St, Los Angeles, CA 90001" -267083,Macbook Pro Laptop,1,1700,10/18/19 12:00,"434 Jackson St, Atlanta, GA 30301" -267084,Wired Headphones,1,11.99,10/05/19 20:33,"345 11th St, Austin, TX 73301" -267085,Lightning Charging Cable,1,14.95,10/19/19 05:39,"569 Hill St, Seattle, WA 98101" -267086,Apple Airpods Headphones,1,150,10/11/19 12:44,"87 Main St, Boston, MA 02215" -267087,USB-C Charging Cable,1,11.95,10/23/19 14:46,"682 Jackson St, Atlanta, GA 30301" -267088,Lightning Charging Cable,1,14.95,10/28/19 16:29,"730 Hill St, San Francisco, CA 94016" -267089,Bose SoundSport Headphones,1,99.99,10/18/19 20:14,"402 Maple St, San Francisco, CA 94016" -267090,Macbook Pro Laptop,1,1700,10/14/19 23:43,"259 Sunset St, Dallas, TX 75001" -267091,Apple Airpods Headphones,1,150,10/05/19 13:39,"912 Forest St, Seattle, WA 98101" -267092,AAA Batteries (4-pack),1,2.99,10/27/19 15:08,"942 Ridge St, Boston, MA 02215" -267093,Wired Headphones,1,11.99,10/06/19 17:11,"268 Cedar St, New York City, NY 10001" -267094,AA Batteries (4-pack),2,3.84,10/30/19 10:23,"519 Walnut St, Atlanta, GA 30301" -267095,Lightning Charging Cable,1,14.95,10/14/19 18:22,"44 10th St, Portland, OR 97035" -267096,Macbook Pro Laptop,1,1700,10/20/19 14:08,"450 Walnut St, Los Angeles, CA 90001" -267097,AA Batteries (4-pack),2,3.84,10/24/19 05:53,"953 Willow St, Boston, MA 02215" -267098,AAA Batteries (4-pack),1,2.99,10/03/19 22:04,"902 Main St, Portland, OR 97035" -267099,Google Phone,1,600,10/16/19 09:39,"295 Church St, Los Angeles, CA 90001" -267100,AAA Batteries (4-pack),2,2.99,10/31/19 19:29,"644 Lakeview St, San Francisco, CA 94016" -267101,Apple Airpods Headphones,1,150,10/15/19 07:51,"354 Forest St, San Francisco, CA 94016" -267102,Macbook Pro Laptop,1,1700,10/09/19 20:50,"320 Church St, San Francisco, CA 94016" -267103,USB-C Charging Cable,1,11.95,10/08/19 11:07,"408 Washington St, Austin, TX 73301" -267103,Lightning Charging Cable,1,14.95,10/08/19 11:07,"408 Washington St, Austin, TX 73301" -267104,iPhone,1,700,10/14/19 21:15,"333 10th St, Atlanta, GA 30301" -267105,AAA Batteries (4-pack),1,2.99,10/24/19 14:33,"877 2nd St, Los Angeles, CA 90001" -267106,AAA Batteries (4-pack),2,2.99,10/07/19 01:14,"753 Sunset St, New York City, NY 10001" -267107,AAA Batteries (4-pack),1,2.99,10/06/19 10:06,"330 Jackson St, Austin, TX 73301" -267108,Lightning Charging Cable,1,14.95,10/26/19 11:32,"639 Elm St, San Francisco, CA 94016" -267109,Apple Airpods Headphones,1,150,10/29/19 17:57,"705 Highland St, San Francisco, CA 94016" -267110,34in Ultrawide Monitor,1,379.99,10/09/19 13:21,"858 14th St, Dallas, TX 75001" -267111,USB-C Charging Cable,2,11.95,10/26/19 12:46,"720 Lake St, San Francisco, CA 94016" -267112,AA Batteries (4-pack),1,3.84,10/05/19 10:36,"701 Adams St, Boston, MA 02215" -267113,Bose SoundSport Headphones,1,99.99,10/12/19 10:38,"632 14th St, Boston, MA 02215" -267114,Bose SoundSport Headphones,1,99.99,10/22/19 23:06,"620 Wilson St, Seattle, WA 98101" -267115,Vareebadd Phone,1,400,10/20/19 10:59,"562 Johnson St, Seattle, WA 98101" -267115,USB-C Charging Cable,1,11.95,10/20/19 10:59,"562 Johnson St, Seattle, WA 98101" -267115,Wired Headphones,1,11.99,10/20/19 10:59,"562 Johnson St, Seattle, WA 98101" -267116,USB-C Charging Cable,1,11.95,10/03/19 05:39,"268 Chestnut St, Los Angeles, CA 90001" -267117,20in Monitor,1,109.99,10/10/19 13:21,"555 North St, Los Angeles, CA 90001" -267118,AAA Batteries (4-pack),1,2.99,10/28/19 15:50,"386 1st St, Seattle, WA 98101" -267119,Apple Airpods Headphones,1,150,10/08/19 14:12,"377 Wilson St, Los Angeles, CA 90001" -267120,Lightning Charging Cable,1,14.95,10/02/19 11:18,"169 Cedar St, New York City, NY 10001" -267121,USB-C Charging Cable,2,11.95,10/07/19 21:26,"918 North St, Boston, MA 02215" -267122,Wired Headphones,1,11.99,10/11/19 17:29,"992 Cherry St, San Francisco, CA 94016" -267123,20in Monitor,1,109.99,10/01/19 14:05,"495 North St, San Francisco, CA 94016" -267124,USB-C Charging Cable,1,11.95,10/11/19 13:47,"751 Washington St, San Francisco, CA 94016" -267125,Lightning Charging Cable,1,14.95,10/13/19 19:19,"912 Elm St, San Francisco, CA 94016" -267126,AAA Batteries (4-pack),1,2.99,10/13/19 13:25,"586 5th St, Dallas, TX 75001" -267127,iPhone,1,700,10/07/19 22:41,"630 1st St, New York City, NY 10001" -267128,iPhone,1,700,10/23/19 01:56,"318 Ridge St, Dallas, TX 75001" -267128,Wired Headphones,1,11.99,10/23/19 01:56,"318 Ridge St, Dallas, TX 75001" -267129,Lightning Charging Cable,1,14.95,10/22/19 00:55,"207 Cherry St, Dallas, TX 75001" -267130,Google Phone,1,600,10/25/19 13:00,"720 Lake St, Seattle, WA 98101" -267131,USB-C Charging Cable,1,11.95,10/16/19 11:52,"233 South St, Seattle, WA 98101" -267132,AA Batteries (4-pack),2,3.84,10/27/19 11:59,"238 10th St, Seattle, WA 98101" -267133,27in 4K Gaming Monitor,1,389.99,10/22/19 17:00,"38 South St, New York City, NY 10001" -267134,USB-C Charging Cable,2,11.95,10/12/19 18:38,"594 7th St, San Francisco, CA 94016" -267135,LG Dryer,1,600.0,10/04/19 19:47,"620 West St, Los Angeles, CA 90001" -267136,iPhone,1,700,10/28/19 01:20,"678 North St, Dallas, TX 75001" -267137,27in FHD Monitor,1,149.99,10/16/19 16:59,"89 13th St, Seattle, WA 98101" -267138,AA Batteries (4-pack),1,3.84,10/09/19 11:09,"84 10th St, Atlanta, GA 30301" -267139,Macbook Pro Laptop,1,1700,10/22/19 14:37,"135 Jackson St, Austin, TX 73301" -267140,AA Batteries (4-pack),1,3.84,10/19/19 12:01,"806 6th St, San Francisco, CA 94016" -267141,Wired Headphones,1,11.99,10/20/19 05:45,"906 Willow St, Seattle, WA 98101" -267142,Google Phone,1,600,10/12/19 13:51,"499 6th St, Seattle, WA 98101" -267143,iPhone,1,700,10/27/19 17:04,"939 Madison St, Los Angeles, CA 90001" -267144,AAA Batteries (4-pack),1,2.99,10/13/19 16:41,"583 4th St, Seattle, WA 98101" -267145,AAA Batteries (4-pack),1,2.99,10/28/19 18:33,"89 South St, New York City, NY 10001" -267146,Wired Headphones,1,11.99,10/15/19 14:45,"820 Cedar St, Los Angeles, CA 90001" -267147,USB-C Charging Cable,1,11.95,10/15/19 18:59,"803 9th St, San Francisco, CA 94016" -267148,Lightning Charging Cable,1,14.95,10/30/19 10:02,"196 2nd St, Atlanta, GA 30301" -267149,Vareebadd Phone,1,400,10/03/19 12:28,"684 Dogwood St, Dallas, TX 75001" -267150,AA Batteries (4-pack),1,3.84,10/31/19 11:56,"525 Lake St, San Francisco, CA 94016" -267151,iPhone,1,700,10/02/19 10:39,"183 Highland St, San Francisco, CA 94016" -267151,Lightning Charging Cable,1,14.95,10/02/19 10:39,"183 Highland St, San Francisco, CA 94016" -267152,AA Batteries (4-pack),1,3.84,10/21/19 11:59,"120 13th St, San Francisco, CA 94016" -267153,ThinkPad Laptop,1,999.99,10/25/19 16:01,"248 Walnut St, Los Angeles, CA 90001" -267154,iPhone,1,700,10/01/19 18:22,"80 6th St, New York City, NY 10001" -267155,AA Batteries (4-pack),1,3.84,10/12/19 16:39,"568 Hickory St, Boston, MA 02215" -267156,Wired Headphones,1,11.99,10/21/19 11:16,"840 North St, Boston, MA 02215" -267157,Wired Headphones,1,11.99,10/10/19 09:50,"561 Wilson St, Los Angeles, CA 90001" -267158,Wired Headphones,1,11.99,10/04/19 10:27,"377 Wilson St, Dallas, TX 75001" -267159,AAA Batteries (4-pack),1,2.99,10/13/19 08:05,"49 14th St, Boston, MA 02215" -267160,Lightning Charging Cable,1,14.95,10/01/19 20:48,"833 Pine St, San Francisco, CA 94016" -267161,Lightning Charging Cable,1,14.95,10/10/19 19:30,"986 Main St, Los Angeles, CA 90001" -267162,AAA Batteries (4-pack),1,2.99,10/07/19 16:47,"151 Highland St, San Francisco, CA 94016" -267163,Lightning Charging Cable,1,14.95,10/25/19 18:35,"32 7th St, Los Angeles, CA 90001" -267164,Bose SoundSport Headphones,1,99.99,10/15/19 13:32,"916 8th St, Los Angeles, CA 90001" -267165,Lightning Charging Cable,1,14.95,10/26/19 17:15,"287 Center St, San Francisco, CA 94016" -267166,27in FHD Monitor,1,149.99,10/15/19 20:04,"253 Willow St, Boston, MA 02215" -267167,Apple Airpods Headphones,1,150,10/28/19 20:15,"628 1st St, Los Angeles, CA 90001" -267168,Apple Airpods Headphones,1,150,10/31/19 06:49,"860 14th St, Los Angeles, CA 90001" -267169,Wired Headphones,1,11.99,10/21/19 09:34,"185 Park St, Boston, MA 02215" -267170,27in FHD Monitor,1,149.99,10/23/19 17:52,"511 Lakeview St, Dallas, TX 75001" -267171,Apple Airpods Headphones,1,150,10/08/19 06:46,"225 Main St, Los Angeles, CA 90001" -267172,AAA Batteries (4-pack),1,2.99,10/23/19 09:23,"895 Spruce St, San Francisco, CA 94016" -267173,USB-C Charging Cable,1,11.95,10/20/19 21:31,"578 Sunset St, Los Angeles, CA 90001" -267174,Lightning Charging Cable,1,14.95,10/29/19 15:17,"341 13th St, Los Angeles, CA 90001" -267175,Wired Headphones,1,11.99,10/28/19 22:48,"591 Adams St, San Francisco, CA 94016" -267176,AA Batteries (4-pack),1,3.84,10/25/19 20:40,"325 Jackson St, San Francisco, CA 94016" -267177,Bose SoundSport Headphones,1,99.99,10/01/19 09:40,"302 5th St, Los Angeles, CA 90001" -267178,Macbook Pro Laptop,1,1700,10/15/19 17:02,"360 Madison St, Boston, MA 02215" -267179,ThinkPad Laptop,1,999.99,10/23/19 13:37,"984 4th St, Austin, TX 73301" -267180,Apple Airpods Headphones,1,150,10/22/19 13:08,"421 Washington St, Seattle, WA 98101" -267181,Apple Airpods Headphones,2,150,10/02/19 17:44,"463 Lakeview St, Portland, OR 97035" -267182,Google Phone,1,600,10/26/19 08:11,"501 Sunset St, Los Angeles, CA 90001" -267183,Wired Headphones,1,11.99,10/12/19 09:47,"159 12th St, New York City, NY 10001" -267184,AAA Batteries (4-pack),2,2.99,10/27/19 11:00,"401 Sunset St, New York City, NY 10001" -267184,Wired Headphones,1,11.99,10/27/19 11:00,"401 Sunset St, New York City, NY 10001" -267185,AAA Batteries (4-pack),1,2.99,10/03/19 19:23,"346 13th St, Los Angeles, CA 90001" -267186,Apple Airpods Headphones,1,150,10/27/19 12:07,"98 Adams St, New York City, NY 10001" -267187,20in Monitor,1,109.99,10/01/19 13:26,"9 Church St, New York City, NY 10001" -267188,Macbook Pro Laptop,1,1700,10/16/19 14:32,"805 Ridge St, San Francisco, CA 94016" -267189,Lightning Charging Cable,2,14.95,10/09/19 19:45,"68 Sunset St, San Francisco, CA 94016" -267190,Lightning Charging Cable,1,14.95,10/25/19 13:56,"547 Maple St, New York City, NY 10001" -267191,27in FHD Monitor,1,149.99,10/17/19 08:29,"61 Johnson St, New York City, NY 10001" -267192,USB-C Charging Cable,1,11.95,10/13/19 14:28,"792 Forest St, Los Angeles, CA 90001" -267193,Apple Airpods Headphones,1,150,10/16/19 17:11,"78 14th St, Dallas, TX 75001" -267194,AAA Batteries (4-pack),3,2.99,10/26/19 08:00,"329 13th St, Los Angeles, CA 90001" -267195,Bose SoundSport Headphones,1,99.99,10/23/19 17:03,"40 Forest St, Seattle, WA 98101" -267196,Lightning Charging Cable,1,14.95,10/20/19 14:43,"7 12th St, Portland, OR 97035" -267197,Google Phone,1,600,10/12/19 11:39,"204 Wilson St, Boston, MA 02215" -267198,34in Ultrawide Monitor,1,379.99,10/04/19 11:45,"925 Pine St, San Francisco, CA 94016" -267199,USB-C Charging Cable,1,11.95,10/02/19 10:48,"406 10th St, San Francisco, CA 94016" -267200,20in Monitor,1,109.99,10/01/19 20:13,"971 Pine St, San Francisco, CA 94016" -267201,Bose SoundSport Headphones,1,99.99,10/04/19 10:36,"231 Chestnut St, Seattle, WA 98101" -267202,Lightning Charging Cable,1,14.95,10/23/19 17:39,"195 Walnut St, New York City, NY 10001" -267203,Lightning Charging Cable,1,14.95,10/06/19 20:32,"888 8th St, San Francisco, CA 94016" -267204,27in 4K Gaming Monitor,1,389.99,10/02/19 18:53,"939 Dogwood St, San Francisco, CA 94016" -267205,Lightning Charging Cable,1,14.95,10/19/19 18:48,"978 North St, Boston, MA 02215" -267206,Flatscreen TV,1,300,10/04/19 10:07,"749 Hill St, Boston, MA 02215" -267207,AA Batteries (4-pack),1,3.84,10/14/19 14:46,"273 River St, San Francisco, CA 94016" -267208,ThinkPad Laptop,1,999.99,10/25/19 13:20,"444 4th St, Austin, TX 73301" -267209,Bose SoundSport Headphones,1,99.99,10/01/19 18:10,"851 2nd St, Portland, OR 97035" -267210,AA Batteries (4-pack),2,3.84,10/17/19 10:03,"778 Spruce St, San Francisco, CA 94016" -267211,USB-C Charging Cable,1,11.95,10/14/19 19:11,"909 Meadow St, Los Angeles, CA 90001" -267212,Google Phone,1,600,10/22/19 13:57,"852 North St, San Francisco, CA 94016" -267212,Wired Headphones,1,11.99,10/22/19 13:57,"852 North St, San Francisco, CA 94016" -267213,AA Batteries (4-pack),1,3.84,10/11/19 19:20,"267 Forest St, Austin, TX 73301" -267214,USB-C Charging Cable,1,11.95,10/15/19 23:00,"581 Maple St, San Francisco, CA 94016" -267215,iPhone,1,700,10/11/19 11:27,"836 Hill St, Los Angeles, CA 90001" -267215,Apple Airpods Headphones,1,150,10/11/19 11:27,"836 Hill St, Los Angeles, CA 90001" -267216,Wired Headphones,1,11.99,10/16/19 19:16,"901 Maple St, San Francisco, CA 94016" -267217,Flatscreen TV,1,300,10/07/19 13:54,"73 Jackson St, New York City, NY 10001" -267218,AA Batteries (4-pack),1,3.84,10/20/19 14:12,"9 Willow St, Boston, MA 02215" -267219,Lightning Charging Cable,1,14.95,10/01/19 10:01,"299 River St, New York City, NY 10001" -267220,AAA Batteries (4-pack),1,2.99,10/20/19 17:46,"957 12th St, Los Angeles, CA 90001" -267221,Lightning Charging Cable,1,14.95,10/04/19 06:23,"841 Highland St, New York City, NY 10001" -267222,20in Monitor,1,109.99,10/07/19 09:23,"694 Chestnut St, San Francisco, CA 94016" -267223,Lightning Charging Cable,1,14.95,10/13/19 14:02,"742 Hickory St, Boston, MA 02215" -267224,Bose SoundSport Headphones,1,99.99,10/26/19 11:39,"763 Main St, Portland, OR 97035" -267225,ThinkPad Laptop,1,999.99,10/09/19 17:54,"760 Park St, Portland, OR 97035" -267226,Lightning Charging Cable,1,14.95,10/26/19 06:24,"713 11th St, San Francisco, CA 94016" -267227,Bose SoundSport Headphones,1,99.99,10/22/19 10:13,"535 Maple St, San Francisco, CA 94016" -267228,Lightning Charging Cable,1,14.95,10/21/19 19:46,"637 6th St, Boston, MA 02215" -267229,USB-C Charging Cable,1,11.95,10/07/19 00:16,"812 Spruce St, Dallas, TX 75001" -267230,AA Batteries (4-pack),1,3.84,10/26/19 17:44,"852 Forest St, Portland, ME 04101" -267231,AAA Batteries (4-pack),1,2.99,10/25/19 13:59,"810 13th St, Atlanta, GA 30301" -267232,Lightning Charging Cable,1,14.95,10/21/19 19:55,"664 Jackson St, Boston, MA 02215" -267233,AAA Batteries (4-pack),2,2.99,10/19/19 18:08,"300 Hill St, New York City, NY 10001" -267234,AAA Batteries (4-pack),1,2.99,10/31/19 08:55,"608 Lakeview St, New York City, NY 10001" -267235,Macbook Pro Laptop,1,1700,10/04/19 13:32,"303 Meadow St, Austin, TX 73301" -267236,AA Batteries (4-pack),1,3.84,10/10/19 18:13,"266 10th St, Austin, TX 73301" -267237,iPhone,1,700,10/25/19 00:06,"244 Walnut St, San Francisco, CA 94016" -267238,USB-C Charging Cable,1,11.95,10/25/19 21:32,"254 14th St, New York City, NY 10001" -267239,27in FHD Monitor,1,149.99,10/05/19 07:43,"611 Forest St, Boston, MA 02215" -267240,iPhone,1,700,10/30/19 21:07,"593 Wilson St, Los Angeles, CA 90001" -267241,Lightning Charging Cable,1,14.95,10/24/19 22:44,"403 Washington St, San Francisco, CA 94016" -267242,USB-C Charging Cable,1,11.95,10/22/19 07:42,"940 Jackson St, Los Angeles, CA 90001" -267243,AA Batteries (4-pack),1,3.84,10/17/19 23:50,"137 Lake St, Austin, TX 73301" -267244,AA Batteries (4-pack),1,3.84,10/06/19 10:18,"201 Meadow St, New York City, NY 10001" -267245,20in Monitor,1,109.99,10/27/19 20:35,"605 Cherry St, Dallas, TX 75001" -267246,iPhone,1,700,10/22/19 08:50,"769 Wilson St, Portland, ME 04101" -267247,27in FHD Monitor,1,149.99,10/08/19 15:53,"301 River St, Austin, TX 73301" -267248,27in 4K Gaming Monitor,1,389.99,10/18/19 15:36,"70 14th St, Boston, MA 02215" -267249,Bose SoundSport Headphones,1,99.99,10/22/19 11:29,"136 Elm St, Los Angeles, CA 90001" -267250,ThinkPad Laptop,1,999.99,10/30/19 16:27,"371 Maple St, San Francisco, CA 94016" -267251,USB-C Charging Cable,1,11.95,10/29/19 21:03,"873 10th St, Boston, MA 02215" -267252,Lightning Charging Cable,1,14.95,10/03/19 16:25,"895 Cedar St, Atlanta, GA 30301" -267253,Flatscreen TV,1,300,10/05/19 14:51,"638 5th St, Portland, OR 97035" -267254,Bose SoundSport Headphones,1,99.99,10/06/19 14:36,"491 South St, Austin, TX 73301" -267255,Bose SoundSport Headphones,1,99.99,10/16/19 22:13,"92 Forest St, Boston, MA 02215" -267256,AA Batteries (4-pack),1,3.84,10/24/19 09:42,"510 River St, Boston, MA 02215" -267257,20in Monitor,1,109.99,10/07/19 13:35,"757 6th St, Portland, OR 97035" -267258,27in 4K Gaming Monitor,1,389.99,10/30/19 20:46,"37 10th St, Seattle, WA 98101" -267259,Lightning Charging Cable,1,14.95,10/05/19 13:59,"887 South St, Dallas, TX 75001" -267260,Lightning Charging Cable,1,14.95,10/21/19 00:09,"544 Park St, San Francisco, CA 94016" -267261,27in 4K Gaming Monitor,1,389.99,10/03/19 16:52,"421 North St, San Francisco, CA 94016" -267262,Lightning Charging Cable,1,14.95,10/08/19 17:47,"122 Lake St, Boston, MA 02215" -267263,Macbook Pro Laptop,1,1700,10/31/19 23:48,"912 South St, Los Angeles, CA 90001" -267264,Lightning Charging Cable,1,14.95,10/14/19 11:46,"852 Hickory St, San Francisco, CA 94016" -267265,Lightning Charging Cable,1,14.95,10/15/19 12:24,"127 Jefferson St, Boston, MA 02215" -267266,Bose SoundSport Headphones,1,99.99,10/14/19 09:08,"558 Johnson St, San Francisco, CA 94016" -267267,Wired Headphones,1,11.99,10/25/19 16:58,"956 Wilson St, Dallas, TX 75001" -267268,Google Phone,1,600,10/26/19 22:09,"291 Main St, Dallas, TX 75001" -267269,AAA Batteries (4-pack),1,2.99,10/11/19 14:31,"957 Cherry St, New York City, NY 10001" -267270,USB-C Charging Cable,1,11.95,10/13/19 22:28,"97 8th St, Los Angeles, CA 90001" -267271,AAA Batteries (4-pack),3,2.99,10/07/19 11:00,"524 9th St, Boston, MA 02215" -267272,Apple Airpods Headphones,1,150,10/17/19 01:38,"844 Chestnut St, Los Angeles, CA 90001" -267273,USB-C Charging Cable,1,11.95,10/21/19 17:37,"628 14th St, Atlanta, GA 30301" -267274,ThinkPad Laptop,1,999.99,10/05/19 11:13,"223 North St, Boston, MA 02215" -267275,Wired Headphones,1,11.99,10/06/19 10:46,"562 Dogwood St, San Francisco, CA 94016" -267276,AAA Batteries (4-pack),1,2.99,10/06/19 13:38,"444 Willow St, San Francisco, CA 94016" -267277,AA Batteries (4-pack),1,3.84,10/02/19 18:45,"325 River St, Austin, TX 73301" -267278,AAA Batteries (4-pack),1,2.99,10/21/19 19:20,"933 Washington St, Portland, OR 97035" -267279,Lightning Charging Cable,1,14.95,10/22/19 21:20,"459 7th St, Dallas, TX 75001" -267279,AAA Batteries (4-pack),1,2.99,10/22/19 21:20,"459 7th St, Dallas, TX 75001" -267280,AA Batteries (4-pack),1,3.84,10/25/19 11:45,"872 Main St, Los Angeles, CA 90001" -267281,Bose SoundSport Headphones,1,99.99,10/17/19 14:37,"624 5th St, San Francisco, CA 94016" -267282,Flatscreen TV,1,300,10/06/19 23:50,"433 Main St, Atlanta, GA 30301" -267283,Apple Airpods Headphones,1,150,10/22/19 20:58,"931 Washington St, Los Angeles, CA 90001" -267284,LG Washing Machine,1,600.0,10/24/19 06:42,"779 13th St, Atlanta, GA 30301" -267285,AAA Batteries (4-pack),1,2.99,10/28/19 16:56,"607 Spruce St, San Francisco, CA 94016" -267286,Apple Airpods Headphones,1,150,10/29/19 23:13,"671 Chestnut St, Los Angeles, CA 90001" -267287,Macbook Pro Laptop,1,1700,10/12/19 12:00,"858 Walnut St, Dallas, TX 75001" -267288,AA Batteries (4-pack),3,3.84,10/27/19 10:52,"443 North St, San Francisco, CA 94016" -267289,AA Batteries (4-pack),1,3.84,10/20/19 11:35,"746 Adams St, Atlanta, GA 30301" -267290,Lightning Charging Cable,1,14.95,10/19/19 15:37,"1 14th St, New York City, NY 10001" -267291,AAA Batteries (4-pack),1,2.99,10/15/19 09:46,"25 Walnut St, New York City, NY 10001" -267292,27in FHD Monitor,1,149.99,10/14/19 00:18,"995 River St, Portland, ME 04101" -267293,AA Batteries (4-pack),2,3.84,10/23/19 15:20,"399 Forest St, Atlanta, GA 30301" -267294,Bose SoundSport Headphones,1,99.99,10/20/19 17:41,"294 Washington St, Portland, OR 97035" -267295,Bose SoundSport Headphones,1,99.99,10/12/19 15:58,"937 Lakeview St, Los Angeles, CA 90001" -267296,Google Phone,1,600,10/28/19 13:12,"621 8th St, Los Angeles, CA 90001" -267297,34in Ultrawide Monitor,1,379.99,10/09/19 19:01,"648 Park St, Austin, TX 73301" -267298,34in Ultrawide Monitor,1,379.99,10/18/19 07:05,"698 Meadow St, Austin, TX 73301" -267299,Apple Airpods Headphones,1,150,10/16/19 10:09,"284 1st St, San Francisco, CA 94016" -267300,AAA Batteries (4-pack),2,2.99,10/03/19 10:05,"951 Cedar St, Boston, MA 02215" -267301,Wired Headphones,1,11.99,10/15/19 18:40,"932 Sunset St, Atlanta, GA 30301" -267302,AA Batteries (4-pack),2,3.84,10/16/19 10:02,"862 4th St, Atlanta, GA 30301" -267303,USB-C Charging Cable,1,11.95,10/30/19 17:45,"113 8th St, Austin, TX 73301" -267304,iPhone,1,700,10/27/19 10:57,"154 Maple St, San Francisco, CA 94016" -267305,AAA Batteries (4-pack),1,2.99,10/31/19 10:34,"637 2nd St, Boston, MA 02215" -267306,Lightning Charging Cable,1,14.95,10/01/19 21:58,"512 Forest St, Boston, MA 02215" -267307,AA Batteries (4-pack),1,3.84,10/26/19 11:12,"660 2nd St, San Francisco, CA 94016" -267308,LG Dryer,1,600.0,10/12/19 09:54,"814 Main St, Dallas, TX 75001" -267309,USB-C Charging Cable,1,11.95,10/11/19 20:16,"431 5th St, San Francisco, CA 94016" -267310,Apple Airpods Headphones,1,150,10/05/19 21:39,"368 Hickory St, New York City, NY 10001" -267311,Apple Airpods Headphones,1,150,10/10/19 20:49,"569 Highland St, New York City, NY 10001" -267312,iPhone,1,700,10/21/19 21:35,"456 1st St, San Francisco, CA 94016" -267312,Lightning Charging Cable,1,14.95,10/21/19 21:35,"456 1st St, San Francisco, CA 94016" -267313,Lightning Charging Cable,1,14.95,10/13/19 15:12,"70 14th St, San Francisco, CA 94016" -267314,LG Dryer,1,600.0,10/03/19 11:50,"124 Hickory St, Los Angeles, CA 90001" -267315,iPhone,1,700,10/29/19 18:07,"140 8th St, Austin, TX 73301" -267316,Macbook Pro Laptop,1,1700,10/13/19 09:50,"63 11th St, San Francisco, CA 94016" -267317,AA Batteries (4-pack),1,3.84,10/02/19 12:20,"407 Center St, New York City, NY 10001" -267318,Wired Headphones,1,11.99,10/25/19 12:09,"461 4th St, Portland, OR 97035" -267319,Wired Headphones,1,11.99,10/03/19 09:19,"96 Madison St, Los Angeles, CA 90001" -267320,Wired Headphones,1,11.99,10/16/19 12:21,"739 Washington St, Dallas, TX 75001" -267321,AA Batteries (4-pack),3,3.84,10/31/19 09:18,"232 Dogwood St, New York City, NY 10001" -267322,Bose SoundSport Headphones,1,99.99,10/30/19 00:24,"17 Park St, Dallas, TX 75001" -267322,Bose SoundSport Headphones,1,99.99,10/30/19 00:24,"17 Park St, Dallas, TX 75001" -267323,USB-C Charging Cable,1,11.95,10/25/19 22:04,"317 2nd St, Portland, OR 97035" -267324,Apple Airpods Headphones,1,150,10/28/19 23:16,"829 Park St, Seattle, WA 98101" -267325,Wired Headphones,2,11.99,10/18/19 12:19,"815 Hickory St, Atlanta, GA 30301" -267325,Lightning Charging Cable,1,14.95,10/18/19 12:19,"815 Hickory St, Atlanta, GA 30301" -267326,AAA Batteries (4-pack),1,2.99,10/27/19 12:03,"90 8th St, Austin, TX 73301" -267327,Bose SoundSport Headphones,1,99.99,10/15/19 22:27,"558 Adams St, New York City, NY 10001" -267328,Flatscreen TV,1,300,10/06/19 00:41,"263 Church St, San Francisco, CA 94016" -267329,Google Phone,1,600,10/24/19 15:39,"673 2nd St, Boston, MA 02215" -267330,USB-C Charging Cable,1,11.95,10/05/19 13:46,"690 Lake St, Dallas, TX 75001" -267331,AA Batteries (4-pack),1,3.84,10/18/19 00:10,"174 West St, Boston, MA 02215" -267332,ThinkPad Laptop,1,999.99,10/29/19 19:48,"801 Spruce St, San Francisco, CA 94016" -267333,AAA Batteries (4-pack),4,2.99,10/16/19 14:47,"831 Lakeview St, Los Angeles, CA 90001" -267334,27in 4K Gaming Monitor,1,389.99,10/15/19 09:30,"429 Chestnut St, Los Angeles, CA 90001" -267335,27in FHD Monitor,1,149.99,10/30/19 21:18,"634 Park St, Atlanta, GA 30301" -267336,AA Batteries (4-pack),1,3.84,10/17/19 17:40,"753 5th St, Portland, OR 97035" -267337,AAA Batteries (4-pack),1,2.99,10/19/19 14:01,"676 Pine St, Portland, OR 97035" -267338,USB-C Charging Cable,1,11.95,10/10/19 10:27,"588 South St, San Francisco, CA 94016" -267339,AA Batteries (4-pack),1,3.84,10/25/19 11:53,"128 Spruce St, San Francisco, CA 94016" -267340,Macbook Pro Laptop,1,1700,10/21/19 14:23,"68 River St, Los Angeles, CA 90001" -267341,AAA Batteries (4-pack),1,2.99,10/09/19 23:21,"926 Hickory St, Los Angeles, CA 90001" -267342,AAA Batteries (4-pack),1,2.99,10/15/19 09:29,"102 2nd St, Boston, MA 02215" -267343,AA Batteries (4-pack),1,3.84,10/24/19 22:06,"544 Meadow St, San Francisco, CA 94016" -267344,LG Washing Machine,1,600.0,10/09/19 19:09,"634 Cherry St, Dallas, TX 75001" -267345,Lightning Charging Cable,1,14.95,10/28/19 10:36,"729 4th St, Los Angeles, CA 90001" -267346,AAA Batteries (4-pack),2,2.99,10/28/19 08:33,"346 8th St, Los Angeles, CA 90001" -267347,27in 4K Gaming Monitor,1,389.99,10/12/19 21:16,"869 1st St, Austin, TX 73301" -267348,Macbook Pro Laptop,1,1700,10/01/19 18:15,"800 Lake St, Dallas, TX 75001" -267349,AA Batteries (4-pack),1,3.84,10/28/19 10:47,"159 Maple St, Atlanta, GA 30301" -267350,USB-C Charging Cable,1,11.95,10/31/19 15:02,"783 1st St, Atlanta, GA 30301" -267350,AAA Batteries (4-pack),1,2.99,10/31/19 15:02,"783 1st St, Atlanta, GA 30301" -267351,Apple Airpods Headphones,1,150,10/06/19 13:20,"422 Spruce St, San Francisco, CA 94016" -267352,Apple Airpods Headphones,1,150,10/13/19 13:07,"951 Adams St, Seattle, WA 98101" -267353,Wired Headphones,1,11.99,10/01/19 17:53,"440 Cedar St, San Francisco, CA 94016" -267354,Flatscreen TV,1,300,10/27/19 14:40,"559 Sunset St, Los Angeles, CA 90001" -267355,AA Batteries (4-pack),2,3.84,10/13/19 22:41,"860 Lincoln St, San Francisco, CA 94016" -267355,AA Batteries (4-pack),1,3.84,10/13/19 22:41,"860 Lincoln St, San Francisco, CA 94016" -267356,Apple Airpods Headphones,1,150,10/30/19 15:39,"393 Park St, Los Angeles, CA 90001" -267357,Bose SoundSport Headphones,1,99.99,10/03/19 19:13,"49 Main St, Atlanta, GA 30301" -267358,USB-C Charging Cable,1,11.95,10/19/19 13:14,"157 12th St, New York City, NY 10001" -267359,Wired Headphones,1,11.99,10/14/19 18:03,"616 Jackson St, San Francisco, CA 94016" -267360,Lightning Charging Cable,1,14.95,10/20/19 07:36,"55 13th St, Los Angeles, CA 90001" -267361,USB-C Charging Cable,1,11.95,10/04/19 09:15,"320 North St, New York City, NY 10001" -267362,AAA Batteries (4-pack),1,2.99,10/04/19 21:02,"388 7th St, San Francisco, CA 94016" -267363,AA Batteries (4-pack),1,3.84,10/25/19 16:26,"281 Cedar St, Los Angeles, CA 90001" -267364,Lightning Charging Cable,1,14.95,10/22/19 00:32,"129 Church St, Portland, OR 97035" -267365,Google Phone,1,600,10/13/19 02:42,"947 Jackson St, Portland, OR 97035" -267365,USB-C Charging Cable,1,11.95,10/13/19 02:42,"947 Jackson St, Portland, OR 97035" -267365,Wired Headphones,1,11.99,10/13/19 02:42,"947 Jackson St, Portland, OR 97035" -267366,34in Ultrawide Monitor,1,379.99,10/22/19 19:13,"368 11th St, San Francisco, CA 94016" -267367,iPhone,1,700,10/24/19 10:00,"114 South St, Los Angeles, CA 90001" -267367,Wired Headphones,1,11.99,10/24/19 10:00,"114 South St, Los Angeles, CA 90001" -267368,Google Phone,1,600,10/07/19 10:02,"233 1st St, Austin, TX 73301" -267368,Bose SoundSport Headphones,1,99.99,10/07/19 10:02,"233 1st St, Austin, TX 73301" -267369,iPhone,1,700,10/16/19 02:39,"22 Lakeview St, Boston, MA 02215" -267370,20in Monitor,1,109.99,10/16/19 15:54,"379 Walnut St, San Francisco, CA 94016" -267371,AAA Batteries (4-pack),1,2.99,10/16/19 18:54,"952 Lake St, Atlanta, GA 30301" -267372,iPhone,1,700,10/04/19 11:39,"540 2nd St, Austin, TX 73301" -267373,Apple Airpods Headphones,1,150,10/12/19 10:12,"234 Jefferson St, San Francisco, CA 94016" -267374,USB-C Charging Cable,1,11.95,10/24/19 16:41,"326 Meadow St, Atlanta, GA 30301" -267375,AAA Batteries (4-pack),1,2.99,10/26/19 17:33,"308 North St, Atlanta, GA 30301" -267376,Google Phone,1,600,10/22/19 12:24,"246 Lake St, Portland, OR 97035" -267376,USB-C Charging Cable,1,11.95,10/22/19 12:24,"246 Lake St, Portland, OR 97035" -267376,Bose SoundSport Headphones,1,99.99,10/22/19 12:24,"246 Lake St, Portland, OR 97035" -267377,Lightning Charging Cable,1,14.95,10/13/19 13:23,"490 Church St, Los Angeles, CA 90001" -267378,Lightning Charging Cable,1,14.95,10/12/19 15:16,"374 14th St, San Francisco, CA 94016" -267378,Lightning Charging Cable,1,14.95,10/12/19 15:16,"374 14th St, San Francisco, CA 94016" -267379,Wired Headphones,1,11.99,10/27/19 11:39,"455 Jefferson St, San Francisco, CA 94016" -267380,Wired Headphones,1,11.99,10/04/19 16:08,"500 Spruce St, Atlanta, GA 30301" -267381,AAA Batteries (4-pack),1,2.99,10/04/19 22:42,"13 Hickory St, San Francisco, CA 94016" -267382,Bose SoundSport Headphones,1,99.99,10/11/19 13:48,"856 Maple St, San Francisco, CA 94016" -267383,Bose SoundSport Headphones,1,99.99,10/01/19 13:30,"464 14th St, San Francisco, CA 94016" -267384,27in FHD Monitor,1,149.99,10/03/19 20:44,"268 Park St, Seattle, WA 98101" -267385,Lightning Charging Cable,1,14.95,10/02/19 15:18,"795 Hill St, San Francisco, CA 94016" -267386,Lightning Charging Cable,1,14.95,10/24/19 12:32,"260 5th St, Atlanta, GA 30301" -267387,Google Phone,1,600,10/19/19 00:41,"114 Church St, Seattle, WA 98101" -267388,27in 4K Gaming Monitor,1,389.99,10/12/19 19:57,"758 2nd St, Atlanta, GA 30301" -267388,Apple Airpods Headphones,1,150,10/12/19 19:57,"758 2nd St, Atlanta, GA 30301" -267389,USB-C Charging Cable,1,11.95,10/20/19 00:14,"2 Church St, Boston, MA 02215" -267390,USB-C Charging Cable,1,11.95,10/26/19 16:56,"121 Adams St, New York City, NY 10001" -267391,AAA Batteries (4-pack),1,2.99,10/29/19 14:19,"665 Pine St, New York City, NY 10001" -267391,Flatscreen TV,1,300,10/29/19 14:19,"665 Pine St, New York City, NY 10001" -267392,Wired Headphones,1,11.99,10/21/19 20:12,"399 8th St, New York City, NY 10001" -267393,27in FHD Monitor,1,149.99,10/31/19 14:45,"695 5th St, Los Angeles, CA 90001" -267394,Lightning Charging Cable,1,14.95,10/13/19 18:51,"444 Maple St, Portland, OR 97035" -267395,AAA Batteries (4-pack),1,2.99,10/10/19 19:53,"423 Ridge St, San Francisco, CA 94016" -267396,AA Batteries (4-pack),1,3.84,10/10/19 10:10,"942 Church St, Seattle, WA 98101" -267397,iPhone,1,700,10/28/19 12:49,"704 Lakeview St, San Francisco, CA 94016" -267398,Bose SoundSport Headphones,1,99.99,10/06/19 17:59,"105 Willow St, Boston, MA 02215" -267399,AAA Batteries (4-pack),1,2.99,10/19/19 21:40,"718 8th St, Austin, TX 73301" -267400,AA Batteries (4-pack),1,3.84,10/04/19 13:25,"918 Cedar St, Los Angeles, CA 90001" -267401,27in 4K Gaming Monitor,1,389.99,10/22/19 10:19,"31 Jackson St, San Francisco, CA 94016" -267402,USB-C Charging Cable,1,11.95,10/21/19 09:56,"27 Cherry St, Boston, MA 02215" -267403,Macbook Pro Laptop,1,1700,10/10/19 14:41,"940 Washington St, New York City, NY 10001" -267404,Apple Airpods Headphones,1,150,10/03/19 19:28,"670 Highland St, Dallas, TX 75001" -267405,Lightning Charging Cable,1,14.95,10/03/19 22:49,"716 1st St, New York City, NY 10001" -267406,Apple Airpods Headphones,1,150,10/03/19 21:04,"299 Adams St, Portland, ME 04101" -267407,USB-C Charging Cable,1,11.95,10/25/19 20:21,"418 8th St, New York City, NY 10001" -267408,AA Batteries (4-pack),1,3.84,10/03/19 10:46,"958 Jefferson St, Seattle, WA 98101" -267409,USB-C Charging Cable,1,11.95,10/17/19 20:55,"63 Meadow St, Seattle, WA 98101" -267410,Bose SoundSport Headphones,1,99.99,10/05/19 16:14,"484 Maple St, Atlanta, GA 30301" -267411,20in Monitor,1,109.99,10/14/19 12:41,"649 Elm St, Los Angeles, CA 90001" -267412,Apple Airpods Headphones,1,150,10/24/19 23:30,"115 11th St, Los Angeles, CA 90001" -267413,AAA Batteries (4-pack),3,2.99,10/08/19 19:21,"489 13th St, Dallas, TX 75001" -267414,Lightning Charging Cable,1,14.95,10/20/19 07:01,"230 Madison St, San Francisco, CA 94016" -267415,AAA Batteries (4-pack),1,2.99,10/17/19 13:01,"397 Pine St, San Francisco, CA 94016" -267416,Apple Airpods Headphones,1,150,10/18/19 07:06,"127 Madison St, New York City, NY 10001" -,,,,, -267417,AA Batteries (4-pack),1,3.84,10/13/19 21:02,"308 South St, San Francisco, CA 94016" -267418,AAA Batteries (4-pack),1,2.99,10/18/19 21:01,"677 Church St, Portland, OR 97035" -267419,20in Monitor,1,109.99,10/13/19 21:55,"864 Main St, New York City, NY 10001" -267420,Wired Headphones,1,11.99,10/05/19 16:52,"113 Spruce St, Atlanta, GA 30301" -267421,34in Ultrawide Monitor,1,379.99,10/04/19 11:49,"312 Wilson St, New York City, NY 10001" -267422,USB-C Charging Cable,2,11.95,10/22/19 17:51,"375 Park St, Portland, ME 04101" -267423,Wired Headphones,1,11.99,10/22/19 14:04,"589 Park St, Seattle, WA 98101" -267424,Wired Headphones,1,11.99,10/31/19 00:15,"103 Sunset St, Portland, ME 04101" -267425,Wired Headphones,2,11.99,10/02/19 13:29,"724 Willow St, Los Angeles, CA 90001" -267426,Lightning Charging Cable,1,14.95,10/26/19 12:21,"725 Johnson St, Los Angeles, CA 90001" -267427,AAA Batteries (4-pack),1,2.99,10/31/19 13:00,"779 Adams St, Boston, MA 02215" -267428,20in Monitor,1,109.99,10/10/19 12:33,"5 Hickory St, Los Angeles, CA 90001" -267428,Google Phone,1,600,10/10/19 12:33,"5 Hickory St, Los Angeles, CA 90001" -267429,Wired Headphones,1,11.99,10/14/19 15:10,"970 Sunset St, Boston, MA 02215" -267430,Google Phone,1,600,10/14/19 00:30,"882 5th St, San Francisco, CA 94016" -267431,27in 4K Gaming Monitor,1,389.99,10/12/19 20:59,"251 Jefferson St, Los Angeles, CA 90001" -267432,Google Phone,1,600,10/07/19 14:15,"491 7th St, Atlanta, GA 30301" -267433,AA Batteries (4-pack),1,3.84,10/23/19 06:49,"895 6th St, San Francisco, CA 94016" -267434,iPhone,1,700,10/05/19 08:40,"132 Maple St, San Francisco, CA 94016" -267435,Lightning Charging Cable,1,14.95,10/09/19 10:45,"914 9th St, San Francisco, CA 94016" -267435,AA Batteries (4-pack),1,3.84,10/09/19 10:45,"914 9th St, San Francisco, CA 94016" -267436,Wired Headphones,1,11.99,10/22/19 19:37,"824 Center St, New York City, NY 10001" -267437,ThinkPad Laptop,1,999.99,10/08/19 12:09,"512 Church St, San Francisco, CA 94016" -267438,Apple Airpods Headphones,1,150,10/13/19 01:35,"74 6th St, San Francisco, CA 94016" -267439,USB-C Charging Cable,1,11.95,10/23/19 19:11,"861 Cherry St, Los Angeles, CA 90001" -267440,USB-C Charging Cable,1,11.95,10/25/19 21:36,"867 Center St, San Francisco, CA 94016" -267441,20in Monitor,1,109.99,10/12/19 14:10,"599 Willow St, Dallas, TX 75001" -267442,AAA Batteries (4-pack),1,2.99,10/02/19 06:20,"917 Meadow St, Seattle, WA 98101" -267443,Vareebadd Phone,1,400,10/16/19 09:55,"339 Forest St, New York City, NY 10001" -267443,USB-C Charging Cable,1,11.95,10/16/19 09:55,"339 Forest St, New York City, NY 10001" -267444,Wired Headphones,1,11.99,10/25/19 16:55,"648 8th St, San Francisco, CA 94016" -267444,ThinkPad Laptop,1,999.99,10/25/19 16:55,"648 8th St, San Francisco, CA 94016" -267445,AA Batteries (4-pack),1,3.84,10/20/19 10:16,"627 Jefferson St, Austin, TX 73301" -267446,AAA Batteries (4-pack),2,2.99,10/24/19 11:26,"173 4th St, Los Angeles, CA 90001" -267447,AA Batteries (4-pack),1,3.84,10/20/19 09:01,"689 Johnson St, San Francisco, CA 94016" -267448,Bose SoundSport Headphones,1,99.99,10/13/19 18:03,"348 Center St, Los Angeles, CA 90001" -267449,Lightning Charging Cable,1,14.95,10/03/19 19:31,"372 Spruce St, Portland, OR 97035" -267450,27in FHD Monitor,1,149.99,10/22/19 09:18,"647 Sunset St, New York City, NY 10001" -267451,Lightning Charging Cable,1,14.95,10/23/19 14:28,"262 7th St, Los Angeles, CA 90001" -267452,Wired Headphones,1,11.99,10/03/19 01:32,"222 Sunset St, Los Angeles, CA 90001" -267453,Lightning Charging Cable,1,14.95,10/03/19 16:58,"766 7th St, Boston, MA 02215" -267454,Bose SoundSport Headphones,1,99.99,10/18/19 11:45,"429 Main St, San Francisco, CA 94016" -267455,Bose SoundSport Headphones,2,99.99,10/23/19 14:45,"984 Cedar St, San Francisco, CA 94016" -267456,27in FHD Monitor,1,149.99,10/04/19 19:23,"597 4th St, Boston, MA 02215" -267457,USB-C Charging Cable,2,11.95,10/08/19 08:55,"246 Hill St, Boston, MA 02215" -267458,USB-C Charging Cable,1,11.95,10/10/19 15:31,"19 Lakeview St, Los Angeles, CA 90001" -267459,27in FHD Monitor,1,149.99,10/01/19 16:47,"283 Ridge St, San Francisco, CA 94016" -267460,Lightning Charging Cable,1,14.95,10/31/19 08:20,"18 Jackson St, Austin, TX 73301" -267461,Apple Airpods Headphones,1,150,10/03/19 20:16,"643 Park St, Dallas, TX 75001" -267462,AA Batteries (4-pack),1,3.84,10/16/19 11:35,"755 Hill St, Seattle, WA 98101" -267463,Flatscreen TV,1,300,10/01/19 17:16,"862 Lincoln St, Los Angeles, CA 90001" -267464,Vareebadd Phone,1,400,10/07/19 20:59,"819 West St, Atlanta, GA 30301" -267464,USB-C Charging Cable,2,11.95,10/07/19 20:59,"819 West St, Atlanta, GA 30301" -267465,Apple Airpods Headphones,1,150,10/25/19 12:53,"402 Maple St, Austin, TX 73301" -267466,Apple Airpods Headphones,1,150,10/24/19 00:21,"296 River St, Boston, MA 02215" -267467,Lightning Charging Cable,1,14.95,10/12/19 07:57,"750 4th St, Los Angeles, CA 90001" -267468,34in Ultrawide Monitor,1,379.99,10/28/19 14:36,"890 4th St, Atlanta, GA 30301" -267469,Wired Headphones,1,11.99,10/10/19 13:46,"708 2nd St, San Francisco, CA 94016" -267470,Flatscreen TV,1,300,10/16/19 21:35,"766 Church St, Boston, MA 02215" -267471,AA Batteries (4-pack),2,3.84,10/19/19 10:23,"433 Lakeview St, San Francisco, CA 94016" -267472,AAA Batteries (4-pack),3,2.99,10/18/19 20:21,"991 6th St, New York City, NY 10001" -267473,Bose SoundSport Headphones,1,99.99,10/13/19 19:12,"907 Spruce St, New York City, NY 10001" -267474,Bose SoundSport Headphones,1,99.99,10/08/19 13:02,"461 West St, Dallas, TX 75001" -267475,Lightning Charging Cable,1,14.95,10/25/19 15:15,"671 11th St, Portland, ME 04101" -267476,27in 4K Gaming Monitor,1,389.99,10/25/19 18:36,"832 10th St, San Francisco, CA 94016" -267477,Flatscreen TV,1,300,10/30/19 22:25,"299 Cedar St, San Francisco, CA 94016" -267478,Apple Airpods Headphones,1,150,10/24/19 21:51,"781 Wilson St, Dallas, TX 75001" -267479,USB-C Charging Cable,2,11.95,10/22/19 07:32,"706 Chestnut St, Portland, OR 97035" -267480,Flatscreen TV,1,300,10/22/19 18:01,"278 Hill St, Los Angeles, CA 90001" -267481,iPhone,1,700,10/29/19 12:43,"586 6th St, Austin, TX 73301" -267482,Bose SoundSport Headphones,1,99.99,10/19/19 18:00,"650 West St, San Francisco, CA 94016" -267483,Apple Airpods Headphones,1,150,10/31/19 21:21,"559 Walnut St, Dallas, TX 75001" -267484,Macbook Pro Laptop,1,1700,10/20/19 20:20,"401 11th St, Boston, MA 02215" -267485,USB-C Charging Cable,1,11.95,10/18/19 14:38,"417 2nd St, San Francisco, CA 94016" -267486,AA Batteries (4-pack),1,3.84,10/24/19 11:41,"964 Washington St, San Francisco, CA 94016" -267487,27in FHD Monitor,1,149.99,10/04/19 17:22,"22 7th St, Los Angeles, CA 90001" -267488,USB-C Charging Cable,1,11.95,10/31/19 17:52,"768 Church St, San Francisco, CA 94016" -267489,Lightning Charging Cable,1,14.95,10/27/19 16:48,"952 2nd St, Boston, MA 02215" -267490,Wired Headphones,1,11.99,10/01/19 16:36,"22 Main St, Los Angeles, CA 90001" -267491,AAA Batteries (4-pack),1,2.99,10/27/19 15:45,"622 Hill St, Austin, TX 73301" -267492,27in 4K Gaming Monitor,1,389.99,10/19/19 13:55,"168 Hill St, Dallas, TX 75001" -267493,Apple Airpods Headphones,1,150,10/17/19 11:11,"178 Johnson St, Atlanta, GA 30301" -267494,AA Batteries (4-pack),1,3.84,10/19/19 20:40,"186 Forest St, New York City, NY 10001" -267495,34in Ultrawide Monitor,1,379.99,10/01/19 20:42,"194 Main St, Los Angeles, CA 90001" -267496,Flatscreen TV,1,300,10/26/19 09:27,"242 Adams St, Portland, OR 97035" -267497,AA Batteries (4-pack),1,3.84,10/21/19 10:27,"955 Forest St, Boston, MA 02215" -267498,AA Batteries (4-pack),1,3.84,10/01/19 19:44,"76 Ridge St, San Francisco, CA 94016" -267499,USB-C Charging Cable,2,11.95,10/15/19 02:28,"773 Lakeview St, Atlanta, GA 30301" -267500,USB-C Charging Cable,1,11.95,10/13/19 20:04,"153 Adams St, San Francisco, CA 94016" -267501,AAA Batteries (4-pack),3,2.99,10/07/19 13:19,"497 Lincoln St, Boston, MA 02215" -267502,USB-C Charging Cable,1,11.95,10/13/19 10:29,"539 Main St, Portland, OR 97035" -267503,AAA Batteries (4-pack),1,2.99,10/14/19 09:21,"303 Johnson St, Portland, OR 97035" -267504,Lightning Charging Cable,1,14.95,10/24/19 14:47,"482 Sunset St, San Francisco, CA 94016" -267505,USB-C Charging Cable,1,11.95,10/13/19 11:58,"828 Highland St, Portland, OR 97035" -267506,USB-C Charging Cable,1,11.95,10/10/19 22:10,"215 Lincoln St, Seattle, WA 98101" -267507,Apple Airpods Headphones,1,150,10/08/19 10:40,"422 Hill St, San Francisco, CA 94016" -267508,USB-C Charging Cable,1,11.95,10/18/19 19:41,"466 4th St, Atlanta, GA 30301" -267509,Apple Airpods Headphones,1,150,10/14/19 12:02,"213 Willow St, Atlanta, GA 30301" -267510,27in 4K Gaming Monitor,1,389.99,10/17/19 20:16,"310 Forest St, San Francisco, CA 94016" -267511,AA Batteries (4-pack),1,3.84,10/15/19 11:07,"743 Walnut St, Los Angeles, CA 90001" -267512,Macbook Pro Laptop,1,1700,10/11/19 11:29,"503 11th St, New York City, NY 10001" -267512,Wired Headphones,1,11.99,10/11/19 11:29,"503 11th St, New York City, NY 10001" -267513,27in 4K Gaming Monitor,1,389.99,10/25/19 11:15,"891 2nd St, Los Angeles, CA 90001" -267514,AA Batteries (4-pack),1,3.84,10/30/19 09:04,"923 5th St, Los Angeles, CA 90001" -267515,27in FHD Monitor,1,149.99,10/26/19 09:27,"693 Church St, Atlanta, GA 30301" -267516,27in FHD Monitor,1,149.99,10/30/19 20:03,"619 Adams St, San Francisco, CA 94016" -267517,27in FHD Monitor,1,149.99,10/25/19 11:12,"727 7th St, Seattle, WA 98101" -267518,iPhone,1,700,10/03/19 19:17,"435 10th St, Los Angeles, CA 90001" -267518,Lightning Charging Cable,1,14.95,10/03/19 19:17,"435 10th St, Los Angeles, CA 90001" -267519,AAA Batteries (4-pack),2,2.99,10/11/19 15:24,"659 Cedar St, Austin, TX 73301" -267520,Flatscreen TV,1,300,10/04/19 18:40,"126 Chestnut St, San Francisco, CA 94016" -267521,Flatscreen TV,1,300,10/04/19 12:55,"668 11th St, Austin, TX 73301" -267522,AA Batteries (4-pack),1,3.84,10/19/19 14:25,"427 Center St, New York City, NY 10001" -267523,Lightning Charging Cable,1,14.95,10/08/19 18:26,"651 Forest St, San Francisco, CA 94016" -267524,USB-C Charging Cable,1,11.95,10/14/19 07:22,"775 South St, New York City, NY 10001" -267525,Lightning Charging Cable,1,14.95,10/19/19 01:51,"638 12th St, Portland, OR 97035" -267526,AAA Batteries (4-pack),1,2.99,10/01/19 19:04,"795 7th St, Los Angeles, CA 90001" -267527,ThinkPad Laptop,1,999.99,10/05/19 18:14,"611 2nd St, Los Angeles, CA 90001" -267528,USB-C Charging Cable,1,11.95,10/19/19 14:41,"367 Lake St, Seattle, WA 98101" -267529,USB-C Charging Cable,1,11.95,10/13/19 17:14,"513 Chestnut St, New York City, NY 10001" -267530,Flatscreen TV,1,300,10/19/19 08:26,"944 13th St, San Francisco, CA 94016" -267531,Google Phone,1,600,10/06/19 07:24,"258 Pine St, Dallas, TX 75001" -267532,AAA Batteries (4-pack),1,2.99,10/25/19 20:31,"474 9th St, Boston, MA 02215" -267533,Lightning Charging Cable,2,14.95,10/23/19 10:12,"865 Lakeview St, Los Angeles, CA 90001" -267534,27in FHD Monitor,1,149.99,10/01/19 16:55,"884 Hill St, Portland, OR 97035" -267535,USB-C Charging Cable,1,11.95,10/11/19 10:25,"908 Forest St, Atlanta, GA 30301" -267536,20in Monitor,1,109.99,10/05/19 12:01,"808 Main St, Austin, TX 73301" -267537,USB-C Charging Cable,1,11.95,10/01/19 15:31,"962 Spruce St, Seattle, WA 98101" -267538,USB-C Charging Cable,1,11.95,10/23/19 14:35,"163 West St, Los Angeles, CA 90001" -267539,Bose SoundSport Headphones,2,99.99,10/16/19 15:29,"200 Chestnut St, Austin, TX 73301" -267540,Lightning Charging Cable,1,14.95,10/27/19 18:14,"131 Cedar St, San Francisco, CA 94016" -267541,AA Batteries (4-pack),2,3.84,10/22/19 06:25,"384 12th St, Seattle, WA 98101" -267542,Wired Headphones,1,11.99,10/13/19 22:01,"612 Maple St, Los Angeles, CA 90001" -267543,Bose SoundSport Headphones,1,99.99,10/06/19 08:36,"657 1st St, Austin, TX 73301" -267544,Bose SoundSport Headphones,1,99.99,10/01/19 17:17,"777 Church St, Portland, ME 04101" -267545,AA Batteries (4-pack),1,3.84,10/14/19 18:02,"471 Meadow St, Dallas, TX 75001" -267546,Bose SoundSport Headphones,1,99.99,10/25/19 16:59,"229 Walnut St, Austin, TX 73301" -267547,iPhone,1,700,10/05/19 09:46,"762 Willow St, Los Angeles, CA 90001" -267548,Macbook Pro Laptop,1,1700,10/22/19 13:59,"329 Lincoln St, Los Angeles, CA 90001" -267549,Google Phone,1,600,10/17/19 14:09,"680 Hill St, San Francisco, CA 94016" -267550,27in FHD Monitor,1,149.99,10/30/19 16:43,"778 Walnut St, New York City, NY 10001" -267551,Bose SoundSport Headphones,1,99.99,10/08/19 08:56,"946 Jefferson St, New York City, NY 10001" -267552,Apple Airpods Headphones,1,150,10/08/19 11:17,"138 Jefferson St, Boston, MA 02215" -267553,AA Batteries (4-pack),1,3.84,10/30/19 22:37,"318 North St, Dallas, TX 75001" -267554,USB-C Charging Cable,1,11.95,10/03/19 08:10,"716 5th St, Boston, MA 02215" -267555,Lightning Charging Cable,1,14.95,10/07/19 16:09,"411 9th St, San Francisco, CA 94016" -267556,Macbook Pro Laptop,1,1700,10/28/19 17:31,"713 Hickory St, Los Angeles, CA 90001" -267557,Macbook Pro Laptop,1,1700,10/29/19 16:23,"862 Pine St, Atlanta, GA 30301" -267558,Wired Headphones,1,11.99,10/21/19 09:01,"805 West St, San Francisco, CA 94016" -267559,AAA Batteries (4-pack),1,2.99,10/28/19 19:11,"773 Lincoln St, Boston, MA 02215" -267560,Wired Headphones,2,11.99,10/16/19 11:31,"708 Cherry St, Los Angeles, CA 90001" -267561,USB-C Charging Cable,1,11.95,10/02/19 11:11,"491 Lincoln St, San Francisco, CA 94016" -267562,27in FHD Monitor,1,149.99,10/10/19 13:07,"811 Wilson St, Austin, TX 73301" -267563,Wired Headphones,1,11.99,10/29/19 11:44,"461 8th St, New York City, NY 10001" -267564,Apple Airpods Headphones,1,150,10/21/19 16:13,"437 9th St, Seattle, WA 98101" -267565,Lightning Charging Cable,1,14.95,10/30/19 09:11,"542 13th St, Boston, MA 02215" -267566,Wired Headphones,1,11.99,10/20/19 15:59,"932 4th St, San Francisco, CA 94016" -267567,Apple Airpods Headphones,1,150,10/08/19 19:01,"568 Johnson St, San Francisco, CA 94016" -267568,Wired Headphones,1,11.99,10/20/19 18:34,"831 North St, Boston, MA 02215" -267569,Vareebadd Phone,1,400,10/23/19 22:48,"338 4th St, Atlanta, GA 30301" -267570,Lightning Charging Cable,1,14.95,10/02/19 13:50,"489 Lincoln St, San Francisco, CA 94016" -267571,Apple Airpods Headphones,1,150,10/12/19 11:23,"632 Jefferson St, Portland, OR 97035" -267572,Lightning Charging Cable,1,14.95,10/23/19 12:32,"132 Hill St, Atlanta, GA 30301" -267572,Flatscreen TV,1,300,10/23/19 12:32,"132 Hill St, Atlanta, GA 30301" -267573,Wired Headphones,4,11.99,10/26/19 09:24,"510 Center St, Austin, TX 73301" -267574,Wired Headphones,1,11.99,10/28/19 13:30,"951 Madison St, Boston, MA 02215" -267575,Lightning Charging Cable,1,14.95,10/08/19 14:09,"20 West St, San Francisco, CA 94016" -267576,Lightning Charging Cable,1,14.95,10/28/19 20:29,"128 Elm St, San Francisco, CA 94016" -267577,Google Phone,1,600,10/19/19 17:14,"654 Pine St, Atlanta, GA 30301" -267578,Lightning Charging Cable,1,14.95,10/02/19 16:47,"74 South St, Austin, TX 73301" -267579,AA Batteries (4-pack),1,3.84,10/03/19 11:19,"275 6th St, Austin, TX 73301" -267580,Macbook Pro Laptop,1,1700,10/31/19 09:32,"507 Jackson St, Boston, MA 02215" -267581,Lightning Charging Cable,1,14.95,10/10/19 16:08,"721 Jackson St, New York City, NY 10001" -267582,USB-C Charging Cable,1,11.95,10/24/19 15:47,"18 Highland St, San Francisco, CA 94016" -267583,Wired Headphones,1,11.99,10/31/19 23:29,"174 4th St, Los Angeles, CA 90001" -267584,iPhone,1,700,10/12/19 16:28,"725 Elm St, Seattle, WA 98101" -267585,USB-C Charging Cable,1,11.95,10/04/19 17:25,"633 Johnson St, New York City, NY 10001" -267586,USB-C Charging Cable,2,11.95,10/07/19 11:25,"999 Lake St, Austin, TX 73301" -267587,USB-C Charging Cable,1,11.95,10/31/19 18:19,"637 Forest St, Boston, MA 02215" -267588,Bose SoundSport Headphones,1,99.99,10/05/19 15:21,"993 Church St, Boston, MA 02215" -267589,34in Ultrawide Monitor,1,379.99,10/26/19 18:28,"921 5th St, Los Angeles, CA 90001" -267590,Macbook Pro Laptop,1,1700,10/23/19 21:23,"146 Highland St, Los Angeles, CA 90001" -267591,Google Phone,1,600,10/13/19 22:21,"422 11th St, New York City, NY 10001" -267591,Wired Headphones,1,11.99,10/13/19 22:21,"422 11th St, New York City, NY 10001" -267592,AA Batteries (4-pack),1,3.84,10/02/19 16:21,"217 Dogwood St, Dallas, TX 75001" -267593,Bose SoundSport Headphones,1,99.99,10/02/19 19:33,"732 Wilson St, Los Angeles, CA 90001" -267594,USB-C Charging Cable,1,11.95,10/22/19 21:36,"678 Maple St, Dallas, TX 75001" -267595,AAA Batteries (4-pack),1,2.99,10/14/19 17:17,"759 1st St, New York City, NY 10001" -267596,Bose SoundSport Headphones,1,99.99,10/03/19 17:33,"989 South St, Portland, OR 97035" -267597,AA Batteries (4-pack),1,3.84,10/23/19 20:37,"550 Dogwood St, Portland, ME 04101" -267598,USB-C Charging Cable,1,11.95,10/08/19 18:23,"228 Johnson St, New York City, NY 10001" -267599,USB-C Charging Cable,1,11.95,10/29/19 04:32,"553 2nd St, Seattle, WA 98101" -267600,Apple Airpods Headphones,1,150,10/12/19 11:08,"101 2nd St, San Francisco, CA 94016" -267601,Apple Airpods Headphones,1,150,10/16/19 20:20,"854 Walnut St, San Francisco, CA 94016" -267602,AA Batteries (4-pack),1,3.84,10/05/19 11:35,"274 Church St, San Francisco, CA 94016" -267603,Lightning Charging Cable,2,14.95,10/21/19 12:12,"153 Jackson St, New York City, NY 10001" -267604,Apple Airpods Headphones,1,150,10/07/19 22:04,"259 Hickory St, Austin, TX 73301" -267605,Macbook Pro Laptop,1,1700,10/11/19 16:16,"462 Lincoln St, San Francisco, CA 94016" -267606,AAA Batteries (4-pack),1,2.99,10/04/19 16:23,"790 Lake St, Atlanta, GA 30301" -267607,Wired Headphones,1,11.99,10/02/19 13:53,"933 7th St, Dallas, TX 75001" -267608,USB-C Charging Cable,1,11.95,10/22/19 13:21,"779 7th St, Dallas, TX 75001" -267609,Bose SoundSport Headphones,1,99.99,10/31/19 13:18,"490 River St, Seattle, WA 98101" -267610,Apple Airpods Headphones,1,150,10/19/19 18:30,"237 Pine St, Austin, TX 73301" -267611,Google Phone,1,600,10/29/19 20:21,"788 4th St, Seattle, WA 98101" -267612,USB-C Charging Cable,1,11.95,10/20/19 10:24,"298 Maple St, Portland, OR 97035" -267613,27in FHD Monitor,1,149.99,10/06/19 15:02,"138 Lincoln St, Dallas, TX 75001" -267614,27in 4K Gaming Monitor,1,389.99,10/11/19 20:41,"732 Walnut St, Seattle, WA 98101" -267615,AAA Batteries (4-pack),1,2.99,10/26/19 16:14,"859 Madison St, Portland, OR 97035" -267616,Wired Headphones,1,11.99,10/09/19 10:29,"966 Lincoln St, Los Angeles, CA 90001" -267617,Lightning Charging Cable,1,14.95,10/08/19 21:38,"251 Main St, Los Angeles, CA 90001" -267618,20in Monitor,1,109.99,10/27/19 22:29,"583 Willow St, Portland, ME 04101" -267619,AAA Batteries (4-pack),1,2.99,10/12/19 17:42,"17 Cherry St, Los Angeles, CA 90001" -267620,AA Batteries (4-pack),2,3.84,10/18/19 16:14,"574 North St, Boston, MA 02215" -267621,Apple Airpods Headphones,1,150,10/03/19 12:51,"814 12th St, Seattle, WA 98101" -267622,Lightning Charging Cable,1,14.95,10/25/19 08:14,"449 South St, Los Angeles, CA 90001" -267623,AAA Batteries (4-pack),1,2.99,10/17/19 16:46,"708 Wilson St, New York City, NY 10001" -267624,AAA Batteries (4-pack),2,2.99,10/14/19 15:06,"778 Chestnut St, Dallas, TX 75001" -267625,Lightning Charging Cable,1,14.95,10/26/19 12:30,"406 Pine St, San Francisco, CA 94016" -267626,AA Batteries (4-pack),1,3.84,10/06/19 19:40,"412 6th St, San Francisco, CA 94016" -267627,USB-C Charging Cable,1,11.95,10/13/19 20:30,"99 Pine St, New York City, NY 10001" -267628,Lightning Charging Cable,2,14.95,10/26/19 21:37,"796 Lake St, Los Angeles, CA 90001" -267629,USB-C Charging Cable,1,11.95,10/29/19 19:31,"753 Meadow St, Dallas, TX 75001" -267630,USB-C Charging Cable,1,11.95,10/06/19 21:32,"181 Park St, Atlanta, GA 30301" -267631,AAA Batteries (4-pack),1,2.99,10/01/19 12:58,"507 West St, San Francisco, CA 94016" -267632,Apple Airpods Headphones,1,150,10/08/19 16:06,"704 11th St, Atlanta, GA 30301" -267633,AA Batteries (4-pack),1,3.84,10/29/19 17:24,"366 River St, Boston, MA 02215" -267634,27in FHD Monitor,1,149.99,10/28/19 21:18,"599 Main St, Austin, TX 73301" -267635,Wired Headphones,2,11.99,10/27/19 21:47,"747 9th St, San Francisco, CA 94016" -267636,AAA Batteries (4-pack),1,2.99,10/07/19 17:30,"103 Johnson St, Atlanta, GA 30301" -267637,AA Batteries (4-pack),4,3.84,10/28/19 13:28,"833 Jackson St, Los Angeles, CA 90001" -267638,Flatscreen TV,1,300,10/12/19 09:50,"618 Maple St, Atlanta, GA 30301" -267639,34in Ultrawide Monitor,1,379.99,10/09/19 12:45,"270 Adams St, San Francisco, CA 94016" -267640,AA Batteries (4-pack),1,3.84,10/21/19 12:04,"527 Walnut St, New York City, NY 10001" -267641,Lightning Charging Cable,1,14.95,10/01/19 19:26,"762 7th St, Portland, ME 04101" -267642,AA Batteries (4-pack),1,3.84,10/04/19 10:08,"792 Center St, Portland, OR 97035" -267643,iPhone,1,700,10/23/19 12:25,"109 Cedar St, San Francisco, CA 94016" -267644,Bose SoundSport Headphones,1,99.99,10/07/19 00:04,"953 Jackson St, Portland, OR 97035" -267645,AA Batteries (4-pack),1,3.84,10/08/19 21:27,"676 River St, San Francisco, CA 94016" -267646,Lightning Charging Cable,1,14.95,10/10/19 16:06,"480 10th St, Dallas, TX 75001" -267647,iPhone,1,700,10/07/19 19:46,"165 Main St, San Francisco, CA 94016" -267648,Flatscreen TV,1,300,10/05/19 15:18,"496 6th St, San Francisco, CA 94016" -267649,Apple Airpods Headphones,1,150,10/25/19 17:59,"227 Lakeview St, San Francisco, CA 94016" -267650,27in FHD Monitor,1,149.99,10/11/19 12:14,"754 Maple St, Dallas, TX 75001" -267651,AAA Batteries (4-pack),1,2.99,10/20/19 21:10,"358 6th St, San Francisco, CA 94016" -267652,Wired Headphones,1,11.99,10/22/19 12:20,"802 Forest St, Seattle, WA 98101" -267653,Apple Airpods Headphones,1,150,10/29/19 11:24,"733 Madison St, San Francisco, CA 94016" -267654,AAA Batteries (4-pack),1,2.99,10/28/19 12:07,"539 Madison St, Los Angeles, CA 90001" -267655,Macbook Pro Laptop,1,1700,10/28/19 01:02,"324 Jackson St, Atlanta, GA 30301" -267656,Apple Airpods Headphones,1,150,10/04/19 18:27,"214 River St, New York City, NY 10001" -267657,ThinkPad Laptop,1,999.99,10/25/19 11:37,"515 Center St, Austin, TX 73301" -267658,ThinkPad Laptop,1,999.99,10/10/19 23:31,"387 Willow St, Seattle, WA 98101" -267659,iPhone,1,700,10/11/19 21:09,"997 Pine St, Austin, TX 73301" -267659,Lightning Charging Cable,1,14.95,10/11/19 21:09,"997 Pine St, Austin, TX 73301" -267660,AAA Batteries (4-pack),1,2.99,10/28/19 21:57,"271 Highland St, Austin, TX 73301" -267661,Google Phone,1,600,10/21/19 12:35,"765 7th St, New York City, NY 10001" -267662,USB-C Charging Cable,1,11.95,10/17/19 16:54,"981 Park St, New York City, NY 10001" -267663,27in 4K Gaming Monitor,1,389.99,10/19/19 00:01,"28 Lincoln St, Dallas, TX 75001" -267664,USB-C Charging Cable,1,11.95,10/09/19 17:34,"573 Washington St, Los Angeles, CA 90001" -267665,USB-C Charging Cable,1,11.95,10/11/19 16:59,"767 11th St, New York City, NY 10001" -267666,Lightning Charging Cable,1,14.95,10/02/19 20:44,"890 Washington St, Los Angeles, CA 90001" -267667,27in 4K Gaming Monitor,1,389.99,10/02/19 23:09,"805 Elm St, Portland, OR 97035" -267668,USB-C Charging Cable,1,11.95,10/23/19 14:57,"845 Walnut St, San Francisco, CA 94016" -267669,AA Batteries (4-pack),1,3.84,10/28/19 21:54,"875 Johnson St, Dallas, TX 75001" -267670,27in FHD Monitor,1,149.99,10/13/19 00:17,"982 Meadow St, San Francisco, CA 94016" -267671,Wired Headphones,1,11.99,10/19/19 19:03,"374 Cherry St, Los Angeles, CA 90001" -267672,AA Batteries (4-pack),1,3.84,10/17/19 21:09,"864 River St, New York City, NY 10001" -267673,Bose SoundSport Headphones,1,99.99,10/10/19 21:23,"812 Park St, New York City, NY 10001" -267674,Wired Headphones,1,11.99,10/24/19 07:00,"25 7th St, Seattle, WA 98101" -267675,Wired Headphones,1,11.99,10/26/19 18:02,"572 2nd St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -267676,Google Phone,1,600,10/04/19 01:11,"689 Chestnut St, Atlanta, GA 30301" -267676,Wired Headphones,1,11.99,10/04/19 01:11,"689 Chestnut St, Atlanta, GA 30301" -267677,AA Batteries (4-pack),1,3.84,10/29/19 20:46,"880 14th St, New York City, NY 10001" -267678,Lightning Charging Cable,2,14.95,10/04/19 22:13,"378 9th St, Austin, TX 73301" -267679,iPhone,1,700,10/08/19 08:31,"812 Dogwood St, Dallas, TX 75001" -267680,Lightning Charging Cable,1,14.95,10/10/19 13:40,"691 Forest St, San Francisco, CA 94016" -267681,27in FHD Monitor,1,149.99,10/10/19 17:13,"498 Spruce St, Portland, OR 97035" -267682,Bose SoundSport Headphones,1,99.99,10/23/19 12:46,"33 Center St, Dallas, TX 75001" -267683,Apple Airpods Headphones,1,150,10/14/19 17:51,"614 North St, Boston, MA 02215" -267684,27in FHD Monitor,1,149.99,10/17/19 13:07,"668 Lakeview St, Los Angeles, CA 90001" -267685,iPhone,1,700,10/22/19 20:03,"208 North St, Los Angeles, CA 90001" -267686,AAA Batteries (4-pack),1,2.99,10/04/19 07:58,"953 Adams St, Los Angeles, CA 90001" -267687,AA Batteries (4-pack),1,3.84,10/25/19 23:33,"462 Jackson St, Seattle, WA 98101" -267688,USB-C Charging Cable,1,11.95,10/30/19 15:30,"680 River St, Atlanta, GA 30301" -267689,AAA Batteries (4-pack),1,2.99,10/28/19 01:03,"348 Highland St, San Francisco, CA 94016" -267690,AAA Batteries (4-pack),1,2.99,10/20/19 12:21,"870 Forest St, Portland, OR 97035" -267691,27in 4K Gaming Monitor,1,389.99,10/28/19 02:57,"667 Maple St, Portland, OR 97035" -267692,Apple Airpods Headphones,1,150,10/03/19 11:35,"294 Center St, Atlanta, GA 30301" -267693,Flatscreen TV,1,300,10/24/19 23:36,"272 Chestnut St, San Francisco, CA 94016" -267694,Lightning Charging Cable,1,14.95,10/11/19 09:56,"888 Hickory St, San Francisco, CA 94016" -267695,Bose SoundSport Headphones,1,99.99,10/26/19 01:07,"952 Willow St, San Francisco, CA 94016" -267696,Lightning Charging Cable,1,14.95,10/26/19 15:06,"649 7th St, Los Angeles, CA 90001" -267697,ThinkPad Laptop,1,999.99,10/23/19 15:39,"277 Jefferson St, San Francisco, CA 94016" -267698,Flatscreen TV,1,300,10/25/19 14:44,"378 2nd St, San Francisco, CA 94016" -267699,USB-C Charging Cable,1,11.95,10/30/19 11:00,"143 9th St, New York City, NY 10001" -267700,Lightning Charging Cable,1,14.95,10/11/19 12:26,"567 10th St, Atlanta, GA 30301" -267701,27in FHD Monitor,1,149.99,10/13/19 11:26,"302 Highland St, Los Angeles, CA 90001" -267702,Lightning Charging Cable,1,14.95,10/15/19 07:30,"42 9th St, San Francisco, CA 94016" -267703,Lightning Charging Cable,1,14.95,10/14/19 17:57,"657 Forest St, New York City, NY 10001" -267704,Wired Headphones,1,11.99,10/15/19 14:43,"138 River St, Atlanta, GA 30301" -267705,Lightning Charging Cable,1,14.95,10/09/19 14:47,"632 Center St, San Francisco, CA 94016" -267705,27in 4K Gaming Monitor,1,389.99,10/09/19 14:47,"632 Center St, San Francisco, CA 94016" -267706,Wired Headphones,1,11.99,10/15/19 12:26,"803 Lincoln St, Los Angeles, CA 90001" -267707,Google Phone,1,600,10/21/19 20:34,"876 8th St, Atlanta, GA 30301" -267708,AA Batteries (4-pack),1,3.84,10/04/19 21:41,"611 12th St, Boston, MA 02215" -267709,Macbook Pro Laptop,1,1700,10/22/19 22:44,"375 Washington St, New York City, NY 10001" -267710,AAA Batteries (4-pack),1,2.99,10/30/19 07:28,"774 Maple St, New York City, NY 10001" -267711,Lightning Charging Cable,1,14.95,10/30/19 11:45,"987 Hickory St, Atlanta, GA 30301" -267712,USB-C Charging Cable,1,11.95,10/05/19 20:11,"268 Highland St, Seattle, WA 98101" -267713,USB-C Charging Cable,3,11.95,10/01/19 19:40,"634 2nd St, Atlanta, GA 30301" -267714,27in FHD Monitor,1,149.99,10/31/19 03:33,"283 Elm St, Los Angeles, CA 90001" -267715,Wired Headphones,1,11.99,10/10/19 22:17,"992 5th St, Seattle, WA 98101" -267716,Wired Headphones,2,11.99,10/08/19 02:35,"449 Pine St, Austin, TX 73301" -267717,Vareebadd Phone,1,400,10/29/19 13:04,"294 South St, Austin, TX 73301" -267718,Wired Headphones,1,11.99,10/25/19 16:45,"95 4th St, Los Angeles, CA 90001" -267719,Wired Headphones,1,11.99,10/09/19 15:35,"172 10th St, Los Angeles, CA 90001" -267720,USB-C Charging Cable,1,11.95,10/31/19 12:31,"45 1st St, Portland, ME 04101" -267721,Flatscreen TV,1,300,10/22/19 20:44,"856 Lakeview St, Los Angeles, CA 90001" -267722,AA Batteries (4-pack),1,3.84,10/17/19 12:57,"348 Hickory St, Los Angeles, CA 90001" -267723,USB-C Charging Cable,1,11.95,10/31/19 23:04,"929 Jackson St, Seattle, WA 98101" -267724,Apple Airpods Headphones,1,150,10/11/19 19:44,"876 12th St, San Francisco, CA 94016" -267725,27in FHD Monitor,1,149.99,10/18/19 17:56,"981 North St, San Francisco, CA 94016" -267726,Wired Headphones,1,11.99,10/17/19 18:30,"495 Wilson St, Boston, MA 02215" -267727,AA Batteries (4-pack),1,3.84,10/14/19 14:52,"814 Adams St, New York City, NY 10001" -267728,Bose SoundSport Headphones,1,99.99,10/25/19 23:04,"208 Cedar St, Boston, MA 02215" -267729,USB-C Charging Cable,1,11.95,10/13/19 16:45,"257 Dogwood St, Boston, MA 02215" -267730,Wired Headphones,1,11.99,10/08/19 18:43,"352 Elm St, Dallas, TX 75001" -267731,Wired Headphones,1,11.99,10/23/19 22:14,"201 Hill St, San Francisco, CA 94016" -267732,Wired Headphones,1,11.99,10/20/19 11:19,"932 Willow St, New York City, NY 10001" -267733,27in 4K Gaming Monitor,1,389.99,10/04/19 21:05,"90 South St, San Francisco, CA 94016" -267734,AAA Batteries (4-pack),1,2.99,10/21/19 13:54,"111 Johnson St, Portland, OR 97035" -267735,AAA Batteries (4-pack),1,2.99,10/09/19 08:52,"759 1st St, New York City, NY 10001" -267736,Wired Headphones,1,11.99,10/24/19 17:20,"865 8th St, Los Angeles, CA 90001" -267737,Bose SoundSport Headphones,1,99.99,10/13/19 06:56,"495 6th St, San Francisco, CA 94016" -267738,USB-C Charging Cable,1,11.95,10/30/19 18:58,"840 Highland St, Atlanta, GA 30301" -267739,AAA Batteries (4-pack),1,2.99,10/27/19 18:09,"589 4th St, San Francisco, CA 94016" -267740,Wired Headphones,1,11.99,10/18/19 07:43,"234 Lincoln St, San Francisco, CA 94016" -267741,Google Phone,1,600,10/30/19 07:01,"362 West St, Dallas, TX 75001" -267741,Wired Headphones,2,11.99,10/30/19 07:01,"362 West St, Dallas, TX 75001" -267742,Lightning Charging Cable,2,14.95,10/30/19 02:55,"724 Sunset St, San Francisco, CA 94016" -267743,Wired Headphones,1,11.99,10/13/19 19:09,"186 Cherry St, San Francisco, CA 94016" -267744,Wired Headphones,1,11.99,10/11/19 09:40,"162 2nd St, Los Angeles, CA 90001" -267745,27in 4K Gaming Monitor,1,389.99,10/09/19 08:11,"315 11th St, Boston, MA 02215" -267746,USB-C Charging Cable,1,11.95,10/25/19 09:36,"95 6th St, Austin, TX 73301" -267747,AA Batteries (4-pack),1,3.84,10/13/19 11:00,"706 Spruce St, Seattle, WA 98101" -267748,Lightning Charging Cable,1,14.95,10/09/19 17:48,"268 Cedar St, New York City, NY 10001" -267749,Bose SoundSport Headphones,1,99.99,10/14/19 10:45,"51 Cherry St, Dallas, TX 75001" -267750,iPhone,1,700,10/19/19 19:16,"2 Lake St, Los Angeles, CA 90001" -267750,Wired Headphones,1,11.99,10/19/19 19:16,"2 Lake St, Los Angeles, CA 90001" -267751,AA Batteries (4-pack),2,3.84,10/18/19 17:17,"946 South St, Los Angeles, CA 90001" -267752,AAA Batteries (4-pack),1,2.99,10/16/19 21:08,"834 Park St, Atlanta, GA 30301" -267753,Wired Headphones,1,11.99,10/13/19 12:07,"719 Center St, Boston, MA 02215" -267754,Apple Airpods Headphones,1,150,10/04/19 14:07,"304 Sunset St, Los Angeles, CA 90001" -267755,Lightning Charging Cable,1,14.95,10/28/19 15:13,"652 Lakeview St, Los Angeles, CA 90001" -267756,Lightning Charging Cable,1,14.95,10/17/19 10:44,"604 North St, Los Angeles, CA 90001" -267757,AAA Batteries (4-pack),4,2.99,10/12/19 12:35,"551 Maple St, Austin, TX 73301" -267758,USB-C Charging Cable,1,11.95,10/02/19 14:27,"812 Madison St, Austin, TX 73301" -267759,AA Batteries (4-pack),2,3.84,10/02/19 11:10,"859 Wilson St, New York City, NY 10001" -267760,AAA Batteries (4-pack),2,2.99,10/16/19 09:29,"209 South St, San Francisco, CA 94016" -267761,AAA Batteries (4-pack),1,2.99,10/31/19 14:13,"580 Willow St, New York City, NY 10001" -267762,27in FHD Monitor,1,149.99,10/22/19 13:23,"278 Park St, Austin, TX 73301" -267763,USB-C Charging Cable,1,11.95,10/17/19 13:29,"410 13th St, San Francisco, CA 94016" -267764,AA Batteries (4-pack),1,3.84,10/22/19 08:56,"523 Jackson St, Boston, MA 02215" -267764,Apple Airpods Headphones,1,150,10/22/19 08:56,"523 Jackson St, Boston, MA 02215" -267765,Lightning Charging Cable,1,14.95,10/24/19 20:42,"450 Lake St, Dallas, TX 75001" -267766,20in Monitor,1,109.99,10/28/19 22:52,"753 Maple St, Seattle, WA 98101" -267767,AAA Batteries (4-pack),1,2.99,10/01/19 19:08,"274 Walnut St, Austin, TX 73301" -267768,AA Batteries (4-pack),1,3.84,10/28/19 09:55,"212 13th St, Los Angeles, CA 90001" -267769,LG Washing Machine,1,600.0,10/31/19 21:18,"431 10th St, Portland, OR 97035" -267770,AA Batteries (4-pack),1,3.84,10/08/19 17:28,"221 11th St, New York City, NY 10001" -267771,AA Batteries (4-pack),1,3.84,10/28/19 12:16,"283 Meadow St, New York City, NY 10001" -267772,Wired Headphones,1,11.99,10/22/19 12:54,"244 1st St, New York City, NY 10001" -267773,Vareebadd Phone,1,400,10/25/19 20:46,"898 14th St, Dallas, TX 75001" -267774,Bose SoundSport Headphones,1,99.99,10/03/19 19:10,"512 2nd St, Los Angeles, CA 90001" -267775,Lightning Charging Cable,2,14.95,10/31/19 12:21,"618 Washington St, San Francisco, CA 94016" -267776,AAA Batteries (4-pack),2,2.99,10/30/19 05:42,"565 8th St, Los Angeles, CA 90001" -267777,USB-C Charging Cable,1,11.95,10/09/19 14:46,"110 Washington St, Atlanta, GA 30301" -267778,Lightning Charging Cable,1,14.95,10/31/19 07:07,"316 Walnut St, Atlanta, GA 30301" -267779,Vareebadd Phone,1,400,10/13/19 14:04,"929 Jefferson St, San Francisco, CA 94016" -267780,AA Batteries (4-pack),1,3.84,10/13/19 14:38,"135 Washington St, Los Angeles, CA 90001" -267781,Flatscreen TV,1,300,10/25/19 18:42,"638 Spruce St, Los Angeles, CA 90001" -267782,20in Monitor,1,109.99,10/29/19 01:08,"125 8th St, Austin, TX 73301" -267783,USB-C Charging Cable,1,11.95,10/18/19 14:34,"805 Cedar St, Los Angeles, CA 90001" -267784,Lightning Charging Cable,1,14.95,10/07/19 17:17,"255 Willow St, Austin, TX 73301" -267785,Wired Headphones,1,11.99,10/06/19 20:06,"937 Sunset St, San Francisco, CA 94016" -267786,Macbook Pro Laptop,1,1700,10/26/19 19:38,"9 Forest St, Seattle, WA 98101" -267787,Vareebadd Phone,1,400,10/23/19 22:07,"460 Forest St, Los Angeles, CA 90001" -267788,Bose SoundSport Headphones,1,99.99,10/17/19 11:51,"783 Jackson St, New York City, NY 10001" -267789,Lightning Charging Cable,1,14.95,10/14/19 13:25,"411 10th St, Atlanta, GA 30301" -267790,iPhone,1,700,10/28/19 19:15,"587 Dogwood St, Atlanta, GA 30301" -267791,AAA Batteries (4-pack),1,2.99,10/27/19 21:00,"739 Meadow St, Los Angeles, CA 90001" -267792,USB-C Charging Cable,3,11.95,10/01/19 19:10,"220 Johnson St, San Francisco, CA 94016" -267793,20in Monitor,1,109.99,10/21/19 11:58,"767 Chestnut St, San Francisco, CA 94016" -267794,Flatscreen TV,1,300,10/30/19 14:07,"870 8th St, Dallas, TX 75001" -267795,Bose SoundSport Headphones,2,99.99,10/09/19 22:58,"817 South St, Atlanta, GA 30301" -267796,USB-C Charging Cable,1,11.95,10/16/19 12:34,"52 Johnson St, Austin, TX 73301" -267797,27in FHD Monitor,1,149.99,10/06/19 18:05,"697 Park St, Boston, MA 02215" -267798,Wired Headphones,1,11.99,10/25/19 19:23,"197 Maple St, Boston, MA 02215" -267798,Lightning Charging Cable,1,14.95,10/25/19 19:23,"197 Maple St, Boston, MA 02215" -267799,27in FHD Monitor,1,149.99,10/17/19 09:08,"439 Lakeview St, San Francisco, CA 94016" -267800,AAA Batteries (4-pack),1,2.99,10/02/19 19:54,"791 Willow St, Portland, ME 04101" -267801,AA Batteries (4-pack),4,3.84,10/25/19 23:13,"998 Chestnut St, Dallas, TX 75001" -267802,Apple Airpods Headphones,1,150,10/25/19 19:12,"395 Ridge St, San Francisco, CA 94016" -267803,AA Batteries (4-pack),1,3.84,10/05/19 19:47,"326 10th St, Boston, MA 02215" -267804,AAA Batteries (4-pack),1,2.99,10/06/19 13:09,"129 Highland St, San Francisco, CA 94016" -267805,Wired Headphones,1,11.99,10/16/19 18:41,"116 Chestnut St, Portland, OR 97035" -267806,27in FHD Monitor,1,149.99,10/02/19 04:27,"836 14th St, Portland, OR 97035" -267807,Google Phone,1,600,10/06/19 19:33,"354 Cedar St, Dallas, TX 75001" -267808,AA Batteries (4-pack),1,3.84,10/23/19 11:12,"842 1st St, New York City, NY 10001" -267808,Bose SoundSport Headphones,1,99.99,10/23/19 11:12,"842 1st St, New York City, NY 10001" -267809,Apple Airpods Headphones,1,150,10/23/19 09:47,"146 Hickory St, New York City, NY 10001" -267810,AAA Batteries (4-pack),2,2.99,10/25/19 18:58,"430 Park St, Los Angeles, CA 90001" -267811,Apple Airpods Headphones,1,150,10/21/19 12:07,"110 1st St, San Francisco, CA 94016" -267812,Flatscreen TV,1,300,10/11/19 11:30,"73 Forest St, San Francisco, CA 94016" -267813,34in Ultrawide Monitor,1,379.99,10/13/19 13:28,"384 Walnut St, New York City, NY 10001" -267813,AA Batteries (4-pack),3,3.84,10/13/19 13:28,"384 Walnut St, New York City, NY 10001" -267814,Flatscreen TV,1,300,10/14/19 08:25,"403 4th St, Los Angeles, CA 90001" -267815,Wired Headphones,1,11.99,10/20/19 20:52,"944 Lake St, Los Angeles, CA 90001" -267816,iPhone,1,700,10/22/19 18:11,"773 Madison St, Portland, ME 04101" -267816,Lightning Charging Cable,1,14.95,10/22/19 18:11,"773 Madison St, Portland, ME 04101" -267817,AAA Batteries (4-pack),1,2.99,10/19/19 11:44,"380 Lincoln St, Los Angeles, CA 90001" -267818,Wired Headphones,1,11.99,10/08/19 12:02,"164 10th St, San Francisco, CA 94016" -267819,34in Ultrawide Monitor,1,379.99,10/10/19 01:07,"757 6th St, San Francisco, CA 94016" -267820,Apple Airpods Headphones,1,150,10/02/19 21:11,"467 Madison St, Dallas, TX 75001" -267821,Wired Headphones,1,11.99,10/09/19 11:45,"452 7th St, Los Angeles, CA 90001" -267822,27in FHD Monitor,1,149.99,10/08/19 12:08,"918 North St, San Francisco, CA 94016" -267823,ThinkPad Laptop,1,999.99,10/29/19 00:32,"609 Sunset St, San Francisco, CA 94016" -267824,Bose SoundSport Headphones,1,99.99,10/26/19 23:14,"58 Washington St, New York City, NY 10001" -267825,AAA Batteries (4-pack),3,2.99,10/04/19 11:51,"50 Meadow St, Austin, TX 73301" -267826,Apple Airpods Headphones,1,150,10/14/19 12:49,"828 Chestnut St, San Francisco, CA 94016" -267827,AA Batteries (4-pack),1,3.84,10/19/19 13:36,"21 Center St, Boston, MA 02215" -267828,Wired Headphones,1,11.99,10/20/19 13:48,"162 Jefferson St, San Francisco, CA 94016" -267829,iPhone,1,700,10/23/19 14:53,"461 12th St, Boston, MA 02215" -267830,27in 4K Gaming Monitor,1,389.99,10/16/19 21:17,"3 River St, Seattle, WA 98101" -267831,Wired Headphones,1,11.99,10/20/19 11:49,"508 Hickory St, Los Angeles, CA 90001" -267831,Apple Airpods Headphones,1,150,10/20/19 11:49,"508 Hickory St, Los Angeles, CA 90001" -267832,Macbook Pro Laptop,1,1700,10/26/19 06:37,"368 Dogwood St, San Francisco, CA 94016" -267833,AAA Batteries (4-pack),3,2.99,10/17/19 16:11,"381 Washington St, New York City, NY 10001" -267834,20in Monitor,1,109.99,10/07/19 21:09,"863 Highland St, Atlanta, GA 30301" -267835,Google Phone,1,600,10/15/19 11:51,"431 Sunset St, San Francisco, CA 94016" -267835,Bose SoundSport Headphones,1,99.99,10/15/19 11:51,"431 Sunset St, San Francisco, CA 94016" -267836,USB-C Charging Cable,1,11.95,10/08/19 20:33,"464 North St, San Francisco, CA 94016" -267837,34in Ultrawide Monitor,1,379.99,10/09/19 10:12,"96 Spruce St, Boston, MA 02215" -267837,AAA Batteries (4-pack),3,2.99,10/09/19 10:12,"96 Spruce St, Boston, MA 02215" -267838,Wired Headphones,1,11.99,10/31/19 08:04,"374 7th St, New York City, NY 10001" -267839,Wired Headphones,1,11.99,10/27/19 21:11,"543 Park St, Los Angeles, CA 90001" -267840,USB-C Charging Cable,1,11.95,10/31/19 06:39,"945 River St, San Francisco, CA 94016" -267841,AA Batteries (4-pack),2,3.84,10/08/19 21:05,"388 8th St, Portland, OR 97035" -267842,Wired Headphones,1,11.99,10/17/19 21:34,"658 South St, Boston, MA 02215" -267843,Lightning Charging Cable,1,14.95,10/11/19 09:08,"107 Center St, San Francisco, CA 94016" -267844,Lightning Charging Cable,1,14.95,10/28/19 06:03,"429 4th St, New York City, NY 10001" -267845,AAA Batteries (4-pack),1,2.99,10/10/19 19:02,"173 Madison St, Portland, OR 97035" -267846,27in FHD Monitor,1,149.99,10/13/19 11:34,"199 10th St, New York City, NY 10001" -267847,20in Monitor,1,109.99,10/30/19 04:52,"718 Hill St, Seattle, WA 98101" -267848,AAA Batteries (4-pack),1,2.99,10/01/19 14:46,"860 Hill St, New York City, NY 10001" -267849,Lightning Charging Cable,1,14.95,10/31/19 09:33,"200 1st St, Los Angeles, CA 90001" -267850,iPhone,1,700,10/12/19 20:40,"854 Chestnut St, Los Angeles, CA 90001" -267851,Lightning Charging Cable,1,14.95,10/01/19 10:24,"106 Washington St, New York City, NY 10001" -267852,Vareebadd Phone,1,400,10/09/19 07:31,"195 Spruce St, New York City, NY 10001" -267852,Wired Headphones,1,11.99,10/09/19 07:31,"195 Spruce St, New York City, NY 10001" -267853,Bose SoundSport Headphones,1,99.99,10/13/19 11:28,"892 Highland St, Boston, MA 02215" -267854,AAA Batteries (4-pack),2,2.99,10/10/19 16:04,"262 South St, Dallas, TX 75001" -267855,Lightning Charging Cable,1,14.95,10/29/19 10:26,"514 Cherry St, Dallas, TX 75001" -267856,27in FHD Monitor,1,149.99,10/14/19 10:43,"591 Lincoln St, Seattle, WA 98101" -267857,Apple Airpods Headphones,1,150,10/10/19 11:39,"338 4th St, Los Angeles, CA 90001" -267858,AA Batteries (4-pack),2,3.84,10/06/19 18:02,"263 Lakeview St, Austin, TX 73301" -267859,Bose SoundSport Headphones,1,99.99,10/21/19 23:24,"877 South St, San Francisco, CA 94016" -267860,USB-C Charging Cable,1,11.95,10/25/19 09:03,"808 West St, Los Angeles, CA 90001" -267861,Flatscreen TV,1,300,10/09/19 00:29,"552 Ridge St, Seattle, WA 98101" -267862,LG Washing Machine,1,600.0,10/18/19 21:49,"760 Cherry St, Austin, TX 73301" -267863,USB-C Charging Cable,1,11.95,10/19/19 12:11,"421 Johnson St, Portland, OR 97035" -267864,Apple Airpods Headphones,1,150,10/13/19 07:23,"718 Walnut St, Atlanta, GA 30301" -267865,Bose SoundSport Headphones,1,99.99,10/20/19 17:14,"561 Walnut St, San Francisco, CA 94016" -267866,Lightning Charging Cable,1,14.95,10/31/19 18:08,"605 5th St, New York City, NY 10001" -267867,AAA Batteries (4-pack),1,2.99,10/12/19 18:11,"315 11th St, Los Angeles, CA 90001" -267868,Wired Headphones,1,11.99,10/24/19 11:09,"573 Church St, San Francisco, CA 94016" -267869,USB-C Charging Cable,1,11.95,10/21/19 03:50,"510 Johnson St, Seattle, WA 98101" -267870,27in FHD Monitor,1,149.99,10/01/19 19:55,"468 13th St, San Francisco, CA 94016" -267871,Bose SoundSport Headphones,1,99.99,10/09/19 21:45,"600 Chestnut St, Boston, MA 02215" -267872,Wired Headphones,2,11.99,10/03/19 23:16,"6 Center St, Seattle, WA 98101" -267873,USB-C Charging Cable,1,11.95,10/16/19 18:24,"9 1st St, San Francisco, CA 94016" -267874,27in FHD Monitor,1,149.99,10/01/19 13:40,"597 Maple St, San Francisco, CA 94016" -267875,Macbook Pro Laptop,1,1700,10/29/19 08:45,"11 Spruce St, Los Angeles, CA 90001" -267876,USB-C Charging Cable,1,11.95,10/25/19 21:35,"798 Spruce St, Boston, MA 02215" -267877,AAA Batteries (4-pack),1,2.99,10/23/19 18:12,"827 Cherry St, Atlanta, GA 30301" -267878,AA Batteries (4-pack),1,3.84,10/30/19 12:27,"141 Lakeview St, Los Angeles, CA 90001" -267879,Lightning Charging Cable,1,14.95,10/21/19 20:22,"329 Center St, New York City, NY 10001" -267880,Lightning Charging Cable,1,14.95,10/03/19 10:57,"983 Wilson St, Los Angeles, CA 90001" -267881,AA Batteries (4-pack),1,3.84,10/24/19 15:34,"257 Maple St, Seattle, WA 98101" -267882,Apple Airpods Headphones,1,150,10/25/19 18:50,"231 4th St, San Francisco, CA 94016" -267883,USB-C Charging Cable,1,11.95,10/12/19 18:29,"733 Lake St, New York City, NY 10001" -267884,Bose SoundSport Headphones,1,99.99,10/15/19 12:53,"728 Spruce St, San Francisco, CA 94016" -267885,Apple Airpods Headphones,1,150,10/17/19 11:51,"18 Highland St, New York City, NY 10001" -267886,Macbook Pro Laptop,1,1700,10/31/19 09:53,"879 South St, Austin, TX 73301" -267887,Flatscreen TV,1,300,10/05/19 19:34,"47 South St, New York City, NY 10001" -267888,Bose SoundSport Headphones,1,99.99,10/10/19 07:31,"450 North St, Seattle, WA 98101" -267889,27in 4K Gaming Monitor,1,389.99,10/01/19 15:10,"868 Lakeview St, San Francisco, CA 94016" -267890,AAA Batteries (4-pack),3,2.99,10/06/19 15:33,"366 10th St, New York City, NY 10001" -267891,34in Ultrawide Monitor,1,379.99,10/20/19 16:01,"54 12th St, Atlanta, GA 30301" -267892,Apple Airpods Headphones,1,150,10/09/19 23:46,"590 Elm St, San Francisco, CA 94016" -267893,USB-C Charging Cable,1,11.95,10/07/19 06:58,"754 Adams St, San Francisco, CA 94016" -267894,Lightning Charging Cable,1,14.95,10/16/19 13:57,"814 River St, Los Angeles, CA 90001" -267895,AAA Batteries (4-pack),1,2.99,10/06/19 20:37,"32 Lake St, Boston, MA 02215" -267896,Apple Airpods Headphones,1,150,10/19/19 11:01,"528 Lincoln St, Portland, OR 97035" -267897,iPhone,1,700,10/18/19 16:42,"554 Willow St, Seattle, WA 98101" -267898,USB-C Charging Cable,1,11.95,10/15/19 08:34,"165 6th St, Atlanta, GA 30301" -267899,Apple Airpods Headphones,1,150,10/30/19 19:56,"951 Forest St, San Francisco, CA 94016" -267900,USB-C Charging Cable,1,11.95,10/29/19 17:38,"937 11th St, Atlanta, GA 30301" -267901,Wired Headphones,1,11.99,10/14/19 11:24,"410 12th St, New York City, NY 10001" -267902,Apple Airpods Headphones,1,150,10/19/19 16:20,"911 Forest St, San Francisco, CA 94016" -267903,AAA Batteries (4-pack),1,2.99,10/27/19 08:10,"887 14th St, Los Angeles, CA 90001" -267904,Lightning Charging Cable,1,14.95,10/24/19 11:29,"716 13th St, Atlanta, GA 30301" -267905,Bose SoundSport Headphones,1,99.99,10/25/19 12:50,"920 Adams St, Dallas, TX 75001" -267906,Lightning Charging Cable,1,14.95,10/26/19 12:31,"666 Madison St, Seattle, WA 98101" -267906,27in FHD Monitor,1,149.99,10/26/19 12:31,"666 Madison St, Seattle, WA 98101" -267907,ThinkPad Laptop,1,999.99,10/31/19 14:50,"929 5th St, Los Angeles, CA 90001" -267908,Lightning Charging Cable,1,14.95,10/24/19 08:54,"404 Park St, Seattle, WA 98101" -267909,AAA Batteries (4-pack),4,2.99,10/19/19 16:21,"175 8th St, San Francisco, CA 94016" -267910,Google Phone,1,600,10/02/19 10:24,"321 Dogwood St, Boston, MA 02215" -267911,Apple Airpods Headphones,1,150,10/18/19 18:57,"186 2nd St, Seattle, WA 98101" -267912,Macbook Pro Laptop,1,1700,10/25/19 11:53,"47 Cherry St, San Francisco, CA 94016" -267913,Macbook Pro Laptop,1,1700,10/02/19 21:26,"905 Chestnut St, Boston, MA 02215" -267914,AA Batteries (4-pack),1,3.84,10/16/19 15:45,"355 10th St, Portland, OR 97035" -267915,ThinkPad Laptop,1,999.99,10/24/19 22:45,"562 West St, Boston, MA 02215" -267916,AA Batteries (4-pack),1,3.84,10/22/19 13:44,"83 Forest St, New York City, NY 10001" -267917,AA Batteries (4-pack),1,3.84,10/23/19 22:26,"767 Main St, Boston, MA 02215" -267918,Lightning Charging Cable,1,14.95,10/09/19 12:32,"868 Hill St, Seattle, WA 98101" -267919,Wired Headphones,1,11.99,10/13/19 18:16,"554 5th St, New York City, NY 10001" -267920,Wired Headphones,1,11.99,10/14/19 14:54,"208 Main St, Dallas, TX 75001" -267920,AA Batteries (4-pack),1,3.84,10/14/19 14:54,"208 Main St, Dallas, TX 75001" -267921,USB-C Charging Cable,1,11.95,10/31/19 23:51,"344 Center St, Boston, MA 02215" -267922,AA Batteries (4-pack),1,3.84,10/23/19 11:29,"106 Lake St, San Francisco, CA 94016" -267923,Wired Headphones,1,11.99,10/23/19 11:16,"105 2nd St, Seattle, WA 98101" -267924,AA Batteries (4-pack),2,3.84,10/18/19 23:00,"940 Ridge St, Boston, MA 02215" -267925,Lightning Charging Cable,1,14.95,10/01/19 17:26,"326 Park St, New York City, NY 10001" -267926,Wired Headphones,1,11.99,10/19/19 11:05,"165 Johnson St, Dallas, TX 75001" -267927,Flatscreen TV,1,300,10/12/19 11:02,"754 Elm St, Los Angeles, CA 90001" -267928,Wired Headphones,1,11.99,10/08/19 08:37,"714 Chestnut St, Boston, MA 02215" -267929,Bose SoundSport Headphones,1,99.99,10/13/19 20:31,"899 Lake St, Dallas, TX 75001" -267930,AA Batteries (4-pack),1,3.84,10/06/19 12:37,"499 Main St, Portland, OR 97035" -267931,20in Monitor,1,109.99,10/29/19 09:38,"52 Madison St, San Francisco, CA 94016" -267932,AAA Batteries (4-pack),1,2.99,10/22/19 11:47,"72 Jefferson St, San Francisco, CA 94016" -267933,AAA Batteries (4-pack),2,2.99,10/05/19 20:59,"474 Wilson St, Austin, TX 73301" -267934,iPhone,1,700,10/23/19 19:38,"74 Meadow St, Los Angeles, CA 90001" -267935,AA Batteries (4-pack),1,3.84,10/17/19 13:19,"432 13th St, Boston, MA 02215" -267936,AA Batteries (4-pack),1,3.84,10/21/19 16:34,"872 4th St, Los Angeles, CA 90001" -267937,ThinkPad Laptop,1,999.99,10/29/19 12:48,"533 Hill St, San Francisco, CA 94016" -267938,AA Batteries (4-pack),2,3.84,10/11/19 19:02,"145 Chestnut St, Dallas, TX 75001" -267939,34in Ultrawide Monitor,1,379.99,10/05/19 15:13,"226 7th St, Dallas, TX 75001" -267940,27in 4K Gaming Monitor,1,389.99,10/09/19 19:24,"553 Walnut St, Seattle, WA 98101" -267941,Apple Airpods Headphones,1,150,10/10/19 12:53,"699 River St, Boston, MA 02215" -267942,USB-C Charging Cable,2,11.95,10/14/19 16:06,"756 Wilson St, Portland, OR 97035" -267943,Lightning Charging Cable,1,14.95,10/19/19 16:34,"386 South St, Los Angeles, CA 90001" -267944,Wired Headphones,1,11.99,10/15/19 16:28,"469 Madison St, Los Angeles, CA 90001" -267945,Wired Headphones,1,11.99,10/22/19 16:06,"669 Pine St, San Francisco, CA 94016" -267946,Google Phone,1,600,10/12/19 12:14,"146 14th St, Portland, OR 97035" -267947,Wired Headphones,1,11.99,10/10/19 21:50,"158 Meadow St, Dallas, TX 75001" -267948,AAA Batteries (4-pack),1,2.99,10/24/19 22:49,"47 11th St, New York City, NY 10001" -267949,34in Ultrawide Monitor,1,379.99,10/14/19 15:47,"295 Lakeview St, Los Angeles, CA 90001" -267950,Bose SoundSport Headphones,1,99.99,10/18/19 11:52,"923 8th St, Atlanta, GA 30301" -267951,AAA Batteries (4-pack),1,2.99,10/02/19 09:23,"163 Jackson St, Portland, OR 97035" -267952,Apple Airpods Headphones,1,150,10/01/19 23:30,"723 Highland St, Atlanta, GA 30301" -267953,Apple Airpods Headphones,1,150,10/20/19 08:31,"790 West St, San Francisco, CA 94016" -267954,34in Ultrawide Monitor,1,379.99,10/26/19 11:14,"440 Center St, Seattle, WA 98101" -267955,AA Batteries (4-pack),1,3.84,10/23/19 10:39,"314 12th St, Los Angeles, CA 90001" -267956,iPhone,1,700,10/28/19 11:01,"912 Washington St, Seattle, WA 98101" -267956,Lightning Charging Cable,1,14.95,10/28/19 11:01,"912 Washington St, Seattle, WA 98101" -267957,Wired Headphones,1,11.99,10/20/19 13:02,"610 North St, San Francisco, CA 94016" -267957,27in FHD Monitor,1,149.99,10/20/19 13:02,"610 North St, San Francisco, CA 94016" -267958,Wired Headphones,2,11.99,10/04/19 17:37,"740 8th St, Los Angeles, CA 90001" -267959,Apple Airpods Headphones,1,150,10/07/19 16:26,"973 Dogwood St, Dallas, TX 75001" -267960,Google Phone,1,600,10/04/19 23:27,"195 Lincoln St, Seattle, WA 98101" -267961,Bose SoundSport Headphones,1,99.99,10/30/19 15:13,"587 Forest St, San Francisco, CA 94016" -267962,AA Batteries (4-pack),1,3.84,10/23/19 10:04,"928 Jefferson St, Austin, TX 73301" -267963,AAA Batteries (4-pack),1,2.99,10/12/19 10:25,"442 Johnson St, San Francisco, CA 94016" -267964,USB-C Charging Cable,1,11.95,10/20/19 15:37,"726 Lake St, Portland, ME 04101" -267965,USB-C Charging Cable,1,11.95,10/20/19 13:11,"275 7th St, San Francisco, CA 94016" -267966,Apple Airpods Headphones,1,150,10/04/19 14:30,"985 Johnson St, Portland, OR 97035" -267967,AAA Batteries (4-pack),1,2.99,10/10/19 11:53,"951 Hickory St, San Francisco, CA 94016" -267968,27in 4K Gaming Monitor,1,389.99,10/28/19 19:44,"699 Lincoln St, Los Angeles, CA 90001" -267969,Wired Headphones,1,11.99,10/30/19 16:50,"760 Adams St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -267970,AAA Batteries (4-pack),1,2.99,10/05/19 17:10,"810 Elm St, Dallas, TX 75001" -267971,USB-C Charging Cable,1,11.95,10/28/19 00:18,"992 Lake St, Los Angeles, CA 90001" -267972,AA Batteries (4-pack),1,3.84,10/09/19 17:36,"945 Park St, Austin, TX 73301" -267973,AAA Batteries (4-pack),1,2.99,10/09/19 18:55,"79 Willow St, Atlanta, GA 30301" -267974,AA Batteries (4-pack),1,3.84,10/07/19 06:54,"56 South St, Dallas, TX 75001" -267975,Lightning Charging Cable,1,14.95,10/10/19 21:03,"444 River St, Boston, MA 02215" -267976,AAA Batteries (4-pack),1,2.99,10/10/19 13:15,"2 Lake St, Atlanta, GA 30301" -267977,Flatscreen TV,1,300,10/24/19 10:29,"274 Maple St, Atlanta, GA 30301" -267978,Wired Headphones,1,11.99,10/25/19 21:37,"289 Ridge St, Boston, MA 02215" -267979,27in FHD Monitor,1,149.99,10/18/19 19:17,"94 Cedar St, Seattle, WA 98101" -267980,20in Monitor,1,109.99,10/26/19 14:46,"282 5th St, Los Angeles, CA 90001" -267981,Lightning Charging Cable,1,14.95,10/30/19 01:03,"185 4th St, Austin, TX 73301" -267982,Bose SoundSport Headphones,1,99.99,10/02/19 01:05,"178 Wilson St, New York City, NY 10001" -267983,AAA Batteries (4-pack),1,2.99,10/16/19 17:29,"61 Pine St, Portland, OR 97035" -267984,iPhone,1,700,10/04/19 21:40,"651 Lake St, New York City, NY 10001" -267985,Google Phone,1,600,10/17/19 18:18,"196 Pine St, Atlanta, GA 30301" -267986,AA Batteries (4-pack),2,3.84,10/08/19 18:53,"496 8th St, Boston, MA 02215" -267987,Apple Airpods Headphones,1,150,10/09/19 19:41,"594 Cedar St, Seattle, WA 98101" -267988,Apple Airpods Headphones,1,150,10/12/19 19:26,"188 Main St, Dallas, TX 75001" -267989,Lightning Charging Cable,1,14.95,10/06/19 09:53,"331 Madison St, San Francisco, CA 94016" -267990,AAA Batteries (4-pack),1,2.99,10/27/19 01:11,"13 Washington St, New York City, NY 10001" -267991,Lightning Charging Cable,1,14.95,10/07/19 17:58,"456 Spruce St, Seattle, WA 98101" -267992,34in Ultrawide Monitor,1,379.99,10/25/19 22:54,"884 Johnson St, Los Angeles, CA 90001" -267993,27in FHD Monitor,1,149.99,10/03/19 21:27,"465 Forest St, Seattle, WA 98101" -267994,AA Batteries (4-pack),1,3.84,10/09/19 20:56,"542 Forest St, Austin, TX 73301" -267995,AA Batteries (4-pack),1,3.84,10/24/19 13:15,"777 4th St, New York City, NY 10001" -267996,USB-C Charging Cable,1,11.95,10/14/19 15:13,"721 Cherry St, Boston, MA 02215" -267997,AAA Batteries (4-pack),1,2.99,10/08/19 21:47,"632 Dogwood St, San Francisco, CA 94016" -267998,Apple Airpods Headphones,1,150,10/12/19 12:29,"535 Forest St, New York City, NY 10001" -267999,Bose SoundSport Headphones,1,99.99,10/09/19 11:42,"886 Lincoln St, Dallas, TX 75001" -267999,Bose SoundSport Headphones,1,99.99,10/09/19 11:42,"886 Lincoln St, Dallas, TX 75001" -268000,27in FHD Monitor,1,149.99,10/21/19 01:45,"742 Spruce St, San Francisco, CA 94016" -268001,AA Batteries (4-pack),1,3.84,10/17/19 10:43,"653 Lake St, Seattle, WA 98101" -268002,Bose SoundSport Headphones,1,99.99,10/28/19 20:16,"81 Lincoln St, Boston, MA 02215" -268003,Apple Airpods Headphones,1,150,10/15/19 08:49,"227 12th St, Atlanta, GA 30301" -268004,Flatscreen TV,1,300,10/28/19 13:04,"643 5th St, Los Angeles, CA 90001" -268005,27in FHD Monitor,1,149.99,10/04/19 14:59,"415 1st St, Atlanta, GA 30301" -268006,USB-C Charging Cable,1,11.95,10/10/19 16:05,"344 9th St, New York City, NY 10001" -268007,AA Batteries (4-pack),1,3.84,10/16/19 07:05,"809 1st St, San Francisco, CA 94016" -268008,27in FHD Monitor,1,149.99,10/03/19 13:43,"775 South St, San Francisco, CA 94016" -268009,Lightning Charging Cable,1,14.95,10/26/19 13:19,"659 1st St, San Francisco, CA 94016" -268010,Bose SoundSport Headphones,1,99.99,10/19/19 06:21,"678 Chestnut St, Los Angeles, CA 90001" -268011,Apple Airpods Headphones,1,150,10/26/19 19:50,"664 9th St, Dallas, TX 75001" -268012,Lightning Charging Cable,2,14.95,10/13/19 12:03,"855 Highland St, Atlanta, GA 30301" -268012,Lightning Charging Cable,1,14.95,10/13/19 12:03,"855 Highland St, Atlanta, GA 30301" -268013,Apple Airpods Headphones,1,150,10/10/19 10:38,"852 Park St, San Francisco, CA 94016" -268014,Google Phone,1,600,10/03/19 16:46,"502 Pine St, San Francisco, CA 94016" -268015,Macbook Pro Laptop,1,1700,10/17/19 18:33,"972 2nd St, New York City, NY 10001" -268016,AA Batteries (4-pack),1,3.84,10/19/19 16:41,"572 Johnson St, Los Angeles, CA 90001" -268017,Lightning Charging Cable,1,14.95,10/21/19 17:46,"939 Johnson St, San Francisco, CA 94016" -268018,27in 4K Gaming Monitor,1,389.99,10/11/19 15:21,"13 Highland St, Boston, MA 02215" -268019,34in Ultrawide Monitor,1,379.99,10/13/19 13:02,"954 Park St, Los Angeles, CA 90001" -268020,Wired Headphones,1,11.99,10/03/19 13:31,"327 Willow St, Los Angeles, CA 90001" -268021,AA Batteries (4-pack),2,3.84,10/22/19 15:38,"22 Lakeview St, Dallas, TX 75001" -268021,20in Monitor,1,109.99,10/22/19 15:38,"22 Lakeview St, Dallas, TX 75001" -268022,USB-C Charging Cable,1,11.95,10/03/19 19:02,"6 Cherry St, Portland, OR 97035" -268023,AA Batteries (4-pack),1,3.84,10/22/19 13:23,"911 9th St, New York City, NY 10001" -268024,Wired Headphones,1,11.99,10/03/19 16:53,"454 West St, San Francisco, CA 94016" -268025,AA Batteries (4-pack),2,3.84,10/23/19 13:25,"842 Spruce St, Austin, TX 73301" -268026,Apple Airpods Headphones,1,150,10/10/19 20:59,"233 Cherry St, San Francisco, CA 94016" -268027,Bose SoundSport Headphones,1,99.99,10/26/19 19:14,"709 Maple St, Dallas, TX 75001" -268028,Lightning Charging Cable,1,14.95,10/13/19 23:36,"923 9th St, Los Angeles, CA 90001" -268029,USB-C Charging Cable,2,11.95,10/22/19 15:06,"368 Washington St, Los Angeles, CA 90001" -268030,iPhone,1,700,10/21/19 19:11,"701 Hill St, Los Angeles, CA 90001" -268030,Lightning Charging Cable,1,14.95,10/21/19 19:11,"701 Hill St, Los Angeles, CA 90001" -268031,ThinkPad Laptop,1,999.99,10/17/19 21:58,"79 Center St, San Francisco, CA 94016" -268032,20in Monitor,1,109.99,10/13/19 15:42,"624 Jefferson St, Austin, TX 73301" -268033,USB-C Charging Cable,1,11.95,10/05/19 21:58,"859 13th St, San Francisco, CA 94016" -268034,USB-C Charging Cable,1,11.95,10/02/19 21:35,"55 10th St, Seattle, WA 98101" -268035,AAA Batteries (4-pack),3,2.99,10/07/19 13:40,"542 West St, Seattle, WA 98101" -268036,AAA Batteries (4-pack),1,2.99,10/01/19 09:58,"252 Willow St, Seattle, WA 98101" -268037,Vareebadd Phone,1,400,10/06/19 21:32,"36 7th St, Portland, OR 97035" -268037,Wired Headphones,1,11.99,10/06/19 21:32,"36 7th St, Portland, OR 97035" -268038,Apple Airpods Headphones,1,150,10/13/19 07:15,"933 Maple St, New York City, NY 10001" -268039,AAA Batteries (4-pack),1,2.99,10/08/19 19:47,"669 South St, New York City, NY 10001" -268040,AA Batteries (4-pack),1,3.84,10/16/19 14:53,"284 11th St, Atlanta, GA 30301" -268041,Apple Airpods Headphones,1,150,10/06/19 10:26,"456 Ridge St, San Francisco, CA 94016" -268041,Bose SoundSport Headphones,1,99.99,10/06/19 10:26,"456 Ridge St, San Francisco, CA 94016" -268042,20in Monitor,1,109.99,10/28/19 10:46,"408 Main St, Portland, OR 97035" -268043,Flatscreen TV,1,300,10/20/19 19:59,"262 Meadow St, Austin, TX 73301" -268044,Lightning Charging Cable,1,14.95,10/13/19 08:27,"586 12th St, Seattle, WA 98101" -268045,iPhone,1,700,10/21/19 18:36,"278 Chestnut St, San Francisco, CA 94016" -268045,Wired Headphones,1,11.99,10/21/19 18:36,"278 Chestnut St, San Francisco, CA 94016" -268046,Apple Airpods Headphones,1,150,10/22/19 15:02,"672 4th St, San Francisco, CA 94016" -268047,34in Ultrawide Monitor,1,379.99,10/18/19 06:36,"196 Pine St, Austin, TX 73301" -268048,Apple Airpods Headphones,1,150,10/04/19 21:16,"421 Jefferson St, New York City, NY 10001" -268049,AAA Batteries (4-pack),2,2.99,10/04/19 16:35,"809 Jackson St, Los Angeles, CA 90001" -268050,AA Batteries (4-pack),1,3.84,10/10/19 20:57,"702 11th St, Los Angeles, CA 90001" -268051,Bose SoundSport Headphones,1,99.99,10/05/19 20:36,"279 Jefferson St, New York City, NY 10001" -268052,AA Batteries (4-pack),1,3.84,10/19/19 23:22,"529 Washington St, Boston, MA 02215" -268053,AA Batteries (4-pack),1,3.84,10/15/19 12:51,"760 Park St, Portland, ME 04101" -268054,AA Batteries (4-pack),1,3.84,10/22/19 21:38,"743 14th St, Seattle, WA 98101" -268055,iPhone,1,700,10/10/19 15:56,"476 Willow St, Los Angeles, CA 90001" -268056,Lightning Charging Cable,1,14.95,10/05/19 20:01,"130 River St, San Francisco, CA 94016" -268057,iPhone,1,700,10/08/19 17:27,"646 Hill St, Boston, MA 02215" -268058,Wired Headphones,1,11.99,10/17/19 11:48,"723 5th St, San Francisco, CA 94016" -268059,USB-C Charging Cable,2,11.95,10/01/19 10:42,"871 Hill St, Seattle, WA 98101" -268060,USB-C Charging Cable,1,11.95,10/03/19 16:54,"475 Adams St, San Francisco, CA 94016" -268060,Lightning Charging Cable,2,14.95,10/03/19 16:54,"475 Adams St, San Francisco, CA 94016" -268061,LG Dryer,1,600.0,10/14/19 16:06,"205 Madison St, Atlanta, GA 30301" -268062,Bose SoundSport Headphones,1,99.99,10/20/19 11:46,"198 Adams St, Dallas, TX 75001" -268063,USB-C Charging Cable,1,11.95,10/25/19 12:12,"646 River St, New York City, NY 10001" -268064,USB-C Charging Cable,1,11.95,10/12/19 10:53,"470 Hill St, Los Angeles, CA 90001" -268065,Bose SoundSport Headphones,1,99.99,10/09/19 05:38,"549 Cherry St, New York City, NY 10001" -268066,27in 4K Gaming Monitor,1,389.99,10/27/19 23:04,"181 8th St, Atlanta, GA 30301" -268067,AA Batteries (4-pack),4,3.84,10/16/19 14:57,"787 1st St, New York City, NY 10001" -268068,Wired Headphones,1,11.99,10/10/19 19:45,"366 Center St, New York City, NY 10001" -268069,iPhone,1,700,10/13/19 15:15,"959 1st St, Dallas, TX 75001" -268070,AA Batteries (4-pack),3,3.84,10/28/19 09:56,"549 Ridge St, Portland, OR 97035" -268071,Bose SoundSport Headphones,1,99.99,10/31/19 00:34,"471 Elm St, San Francisco, CA 94016" -268072,iPhone,1,700,10/27/19 11:56,"448 8th St, Boston, MA 02215" -268073,Bose SoundSport Headphones,1,99.99,10/30/19 18:47,"550 Sunset St, San Francisco, CA 94016" -268074,27in 4K Gaming Monitor,1,389.99,10/29/19 11:38,"922 Hickory St, Los Angeles, CA 90001" -268075,27in FHD Monitor,1,149.99,10/21/19 09:03,"648 7th St, New York City, NY 10001" -268076,Wired Headphones,1,11.99,10/14/19 12:58,"699 Cedar St, New York City, NY 10001" -268077,AAA Batteries (4-pack),1,2.99,10/17/19 15:35,"583 Elm St, Dallas, TX 75001" -268078,Google Phone,1,600,10/15/19 10:27,"133 Willow St, San Francisco, CA 94016" -268078,USB-C Charging Cable,1,11.95,10/15/19 10:27,"133 Willow St, San Francisco, CA 94016" -268079,27in FHD Monitor,1,149.99,10/16/19 17:26,"660 Walnut St, Portland, OR 97035" -268080,27in 4K Gaming Monitor,1,389.99,10/20/19 00:19,"269 Church St, San Francisco, CA 94016" -268081,Bose SoundSport Headphones,1,99.99,11/01/19 02:15,"140 13th St, Atlanta, GA 30301" -268082,Flatscreen TV,1,300,10/20/19 10:03,"554 South St, Dallas, TX 75001" -268083,20in Monitor,1,109.99,10/20/19 21:15,"665 10th St, San Francisco, CA 94016" -268084,Wired Headphones,1,11.99,10/28/19 11:11,"804 Wilson St, Atlanta, GA 30301" -268085,Macbook Pro Laptop,1,1700,10/13/19 12:27,"646 Wilson St, New York City, NY 10001" -268086,AA Batteries (4-pack),5,3.84,10/21/19 15:30,"301 Cherry St, Atlanta, GA 30301" -268087,AA Batteries (4-pack),1,3.84,10/24/19 19:38,"427 Maple St, Seattle, WA 98101" -268088,Flatscreen TV,1,300,10/12/19 11:15,"404 1st St, New York City, NY 10001" -268089,USB-C Charging Cable,1,11.95,10/20/19 17:16,"271 Cedar St, Boston, MA 02215" -268090,Macbook Pro Laptop,1,1700,10/31/19 11:03,"782 2nd St, New York City, NY 10001" -268091,AAA Batteries (4-pack),2,2.99,10/17/19 18:54,"588 Lincoln St, Boston, MA 02215" -268092,Lightning Charging Cable,1,14.95,10/23/19 21:29,"811 Cedar St, Dallas, TX 75001" -268093,AA Batteries (4-pack),1,3.84,10/05/19 06:45,"780 12th St, San Francisco, CA 94016" -268093,AAA Batteries (4-pack),2,2.99,10/05/19 06:45,"780 12th St, San Francisco, CA 94016" -268094,34in Ultrawide Monitor,1,379.99,10/04/19 15:17,"935 Maple St, New York City, NY 10001" -268095,AA Batteries (4-pack),2,3.84,10/05/19 08:54,"630 Wilson St, Los Angeles, CA 90001" -268096,34in Ultrawide Monitor,1,379.99,10/01/19 10:29,"384 Chestnut St, Boston, MA 02215" -268097,Apple Airpods Headphones,1,150,10/08/19 17:58,"742 14th St, Seattle, WA 98101" -268098,Macbook Pro Laptop,1,1700,10/06/19 12:30,"791 12th St, Los Angeles, CA 90001" -268099,Macbook Pro Laptop,1,1700,10/05/19 08:56,"797 8th St, San Francisco, CA 94016" -268100,Lightning Charging Cable,1,14.95,10/29/19 19:27,"20 Wilson St, Seattle, WA 98101" -268101,Lightning Charging Cable,1,14.95,10/20/19 13:19,"658 Main St, New York City, NY 10001" -268102,Apple Airpods Headphones,1,150,10/07/19 20:35,"493 Willow St, Boston, MA 02215" -268103,iPhone,1,700,10/31/19 12:59,"929 7th St, Seattle, WA 98101" -268103,Lightning Charging Cable,1,14.95,10/31/19 12:59,"929 7th St, Seattle, WA 98101" -268104,Google Phone,1,600,10/26/19 18:06,"336 11th St, Dallas, TX 75001" -268104,Bose SoundSport Headphones,1,99.99,10/26/19 18:06,"336 11th St, Dallas, TX 75001" -268104,Wired Headphones,1,11.99,10/26/19 18:06,"336 11th St, Dallas, TX 75001" -268105,AAA Batteries (4-pack),1,2.99,10/02/19 09:34,"776 Chestnut St, New York City, NY 10001" -268106,iPhone,1,700,10/04/19 14:59,"503 Hill St, San Francisco, CA 94016" -268107,27in 4K Gaming Monitor,1,389.99,10/10/19 11:02,"921 Jackson St, San Francisco, CA 94016" -268108,Wired Headphones,1,11.99,10/11/19 14:54,"516 Maple St, Seattle, WA 98101" -268109,Bose SoundSport Headphones,1,99.99,10/13/19 18:02,"306 Pine St, San Francisco, CA 94016" -268109,27in 4K Gaming Monitor,1,389.99,10/13/19 18:02,"306 Pine St, San Francisco, CA 94016" -268110,AA Batteries (4-pack),1,3.84,10/24/19 22:33,"644 Elm St, Atlanta, GA 30301" -268111,iPhone,1,700,10/09/19 20:06,"114 Main St, Los Angeles, CA 90001" -268112,Lightning Charging Cable,1,14.95,10/25/19 19:01,"831 Forest St, New York City, NY 10001" -268113,AAA Batteries (4-pack),1,2.99,10/24/19 19:39,"42 Willow St, Dallas, TX 75001" -268114,Bose SoundSport Headphones,1,99.99,10/04/19 10:33,"114 Jackson St, Portland, OR 97035" -268115,USB-C Charging Cable,1,11.95,10/24/19 14:27,"996 6th St, Boston, MA 02215" -268116,AAA Batteries (4-pack),3,2.99,10/03/19 13:23,"466 5th St, Los Angeles, CA 90001" -268117,AA Batteries (4-pack),1,3.84,10/09/19 16:49,"742 14th St, San Francisco, CA 94016" -268118,Lightning Charging Cable,1,14.95,10/24/19 11:37,"879 Jefferson St, Los Angeles, CA 90001" -268119,AAA Batteries (4-pack),2,2.99,10/26/19 20:10,"624 5th St, New York City, NY 10001" -268120,AAA Batteries (4-pack),5,2.99,10/29/19 10:47,"701 5th St, Los Angeles, CA 90001" -268121,AA Batteries (4-pack),1,3.84,10/19/19 11:09,"890 Walnut St, Boston, MA 02215" -268122,Bose SoundSport Headphones,1,99.99,10/24/19 19:19,"180 Spruce St, Seattle, WA 98101" -268123,AAA Batteries (4-pack),1,2.99,10/07/19 11:41,"612 West St, San Francisco, CA 94016" -268124,USB-C Charging Cable,1,11.95,10/02/19 10:01,"957 Meadow St, San Francisco, CA 94016" -268125,Google Phone,1,600,10/15/19 13:57,"356 North St, New York City, NY 10001" -268126,Flatscreen TV,1,300,10/28/19 19:11,"61 Main St, Los Angeles, CA 90001" -268127,Macbook Pro Laptop,1,1700,10/24/19 06:53,"787 Willow St, Portland, OR 97035" -268128,Apple Airpods Headphones,1,150,10/08/19 16:37,"203 Sunset St, San Francisco, CA 94016" -268129,AA Batteries (4-pack),1,3.84,10/28/19 18:57,"76 1st St, Atlanta, GA 30301" -268130,AAA Batteries (4-pack),1,2.99,10/10/19 19:25,"674 13th St, Los Angeles, CA 90001" -268131,Macbook Pro Laptop,1,1700,10/28/19 08:37,"916 Washington St, San Francisco, CA 94016" -268132,Apple Airpods Headphones,1,150,10/16/19 15:58,"223 Hickory St, New York City, NY 10001" -268133,USB-C Charging Cable,1,11.95,10/21/19 11:09,"782 Center St, Dallas, TX 75001" -268134,Google Phone,1,600,10/25/19 22:38,"826 Meadow St, San Francisco, CA 94016" -268134,Bose SoundSport Headphones,1,99.99,10/25/19 22:38,"826 Meadow St, San Francisco, CA 94016" -268135,Wired Headphones,1,11.99,10/16/19 12:12,"336 Lakeview St, Boston, MA 02215" -268136,Flatscreen TV,1,300,10/11/19 08:39,"32 South St, Boston, MA 02215" -268137,USB-C Charging Cable,2,11.95,10/19/19 13:06,"303 Church St, Boston, MA 02215" -268138,USB-C Charging Cable,1,11.95,10/04/19 22:17,"956 Highland St, Portland, OR 97035" -268139,AAA Batteries (4-pack),2,2.99,10/06/19 15:17,"694 Jefferson St, New York City, NY 10001" -268140,USB-C Charging Cable,1,11.95,10/08/19 16:36,"607 Cedar St, New York City, NY 10001" -268141,Apple Airpods Headphones,1,150,10/08/19 12:52,"977 Park St, San Francisco, CA 94016" -268142,USB-C Charging Cable,1,11.95,10/18/19 19:55,"565 Lakeview St, San Francisco, CA 94016" -268143,Wired Headphones,1,11.99,10/06/19 20:49,"213 Spruce St, San Francisco, CA 94016" -268144,USB-C Charging Cable,1,11.95,10/12/19 13:20,"170 4th St, San Francisco, CA 94016" -268145,AA Batteries (4-pack),1,3.84,10/13/19 19:22,"957 River St, Los Angeles, CA 90001" -268146,27in FHD Monitor,1,149.99,10/01/19 18:19,"504 Johnson St, Dallas, TX 75001" -268147,Apple Airpods Headphones,1,150,10/05/19 09:46,"188 7th St, Portland, ME 04101" -268148,Lightning Charging Cable,1,14.95,10/01/19 08:34,"81 2nd St, San Francisco, CA 94016" -268149,AAA Batteries (4-pack),2,2.99,10/26/19 21:21,"339 Jackson St, Seattle, WA 98101" -268150,Wired Headphones,1,11.99,10/31/19 03:08,"490 9th St, Atlanta, GA 30301" -268151,20in Monitor,1,109.99,10/31/19 09:17,"772 Elm St, Dallas, TX 75001" -268152,AAA Batteries (4-pack),2,2.99,10/23/19 21:52,"588 7th St, San Francisco, CA 94016" -268153,27in 4K Gaming Monitor,1,389.99,10/25/19 17:08,"861 14th St, Los Angeles, CA 90001" -268154,34in Ultrawide Monitor,1,379.99,10/22/19 00:51,"292 1st St, Seattle, WA 98101" -268155,Wired Headphones,2,11.99,10/05/19 09:45,"523 Cherry St, Seattle, WA 98101" -268156,Apple Airpods Headphones,1,150,10/01/19 21:31,"93 Center St, Los Angeles, CA 90001" -268157,Apple Airpods Headphones,1,150,10/12/19 19:55,"320 Center St, San Francisco, CA 94016" -268158,AAA Batteries (4-pack),1,2.99,10/13/19 16:40,"174 1st St, San Francisco, CA 94016" -268159,AA Batteries (4-pack),1,3.84,10/30/19 09:35,"383 4th St, Los Angeles, CA 90001" -268160,Flatscreen TV,1,300,10/24/19 15:59,"583 Hill St, Los Angeles, CA 90001" -268160,Macbook Pro Laptop,1,1700,10/24/19 15:59,"583 Hill St, Los Angeles, CA 90001" -268161,USB-C Charging Cable,1,11.95,10/03/19 17:17,"259 Madison St, Los Angeles, CA 90001" -268162,Lightning Charging Cable,1,14.95,10/26/19 16:53,"844 Center St, Boston, MA 02215" -268163,Wired Headphones,1,11.99,10/06/19 08:25,"259 Dogwood St, Portland, OR 97035" -268164,Bose SoundSport Headphones,1,99.99,10/25/19 16:06,"892 1st St, Austin, TX 73301" -268165,AAA Batteries (4-pack),1,2.99,10/15/19 13:15,"939 Hickory St, Dallas, TX 75001" -268166,Lightning Charging Cable,2,14.95,10/16/19 17:21,"839 11th St, Seattle, WA 98101" -268167,AAA Batteries (4-pack),1,2.99,10/26/19 13:49,"816 Johnson St, Seattle, WA 98101" -268168,Flatscreen TV,1,300,10/07/19 09:14,"884 River St, Atlanta, GA 30301" -268169,Flatscreen TV,1,300,10/25/19 16:00,"768 Chestnut St, Austin, TX 73301" -268170,34in Ultrawide Monitor,1,379.99,10/11/19 19:44,"607 14th St, Los Angeles, CA 90001" -268171,Apple Airpods Headphones,1,150,10/31/19 20:06,"762 11th St, Portland, OR 97035" -268172,Wired Headphones,1,11.99,10/08/19 23:45,"282 4th St, San Francisco, CA 94016" -268173,Flatscreen TV,1,300,10/10/19 20:06,"939 River St, Atlanta, GA 30301" -268174,27in 4K Gaming Monitor,1,389.99,10/05/19 10:54,"193 South St, Los Angeles, CA 90001" -268175,Macbook Pro Laptop,1,1700,10/11/19 11:19,"992 Willow St, Los Angeles, CA 90001" -268176,USB-C Charging Cable,1,11.95,10/13/19 20:42,"811 7th St, San Francisco, CA 94016" -268177,Wired Headphones,1,11.99,10/11/19 16:47,"755 1st St, San Francisco, CA 94016" -268178,Wired Headphones,1,11.99,10/02/19 20:13,"403 Sunset St, Portland, OR 97035" -268179,ThinkPad Laptop,1,999.99,10/09/19 17:08,"926 Madison St, San Francisco, CA 94016" -268180,AA Batteries (4-pack),1,3.84,10/31/19 11:12,"337 7th St, New York City, NY 10001" -268181,Wired Headphones,1,11.99,10/13/19 13:43,"76 Park St, Austin, TX 73301" -268182,AA Batteries (4-pack),2,3.84,10/13/19 20:07,"187 North St, Boston, MA 02215" -268183,USB-C Charging Cable,1,11.95,10/06/19 00:16,"756 North St, New York City, NY 10001" -268184,ThinkPad Laptop,1,999.99,10/13/19 16:12,"517 9th St, Seattle, WA 98101" -268185,AAA Batteries (4-pack),1,2.99,10/27/19 04:49,"155 14th St, Portland, ME 04101" -268186,20in Monitor,1,109.99,10/04/19 13:59,"686 Spruce St, San Francisco, CA 94016" -268187,Lightning Charging Cable,1,14.95,10/08/19 12:38,"746 Pine St, Boston, MA 02215" -268188,27in FHD Monitor,1,149.99,10/07/19 00:21,"989 Forest St, Atlanta, GA 30301" -268189,Wired Headphones,2,11.99,10/21/19 12:30,"27 10th St, Los Angeles, CA 90001" -268190,27in FHD Monitor,1,149.99,10/06/19 22:25,"715 4th St, New York City, NY 10001" -268191,Flatscreen TV,1,300,10/02/19 11:59,"110 Hickory St, San Francisco, CA 94016" -268192,Flatscreen TV,1,300,10/22/19 20:27,"180 Willow St, New York City, NY 10001" -268193,AA Batteries (4-pack),1,3.84,10/23/19 17:16,"920 Sunset St, San Francisco, CA 94016" -268194,Apple Airpods Headphones,1,150,10/31/19 21:17,"490 2nd St, Austin, TX 73301" -268195,Wired Headphones,1,11.99,10/05/19 17:29,"367 6th St, San Francisco, CA 94016" -268195,AAA Batteries (4-pack),2,2.99,10/05/19 17:29,"367 6th St, San Francisco, CA 94016" -268196,ThinkPad Laptop,1,999.99,10/31/19 21:28,"833 10th St, New York City, NY 10001" -268197,Apple Airpods Headphones,1,150,10/22/19 21:01,"382 11th St, San Francisco, CA 94016" -268198,AA Batteries (4-pack),1,3.84,10/17/19 11:34,"611 Meadow St, Los Angeles, CA 90001" -268199,ThinkPad Laptop,1,999.99,10/08/19 19:16,"502 4th St, Boston, MA 02215" -268200,USB-C Charging Cable,1,11.95,10/28/19 21:11,"999 14th St, Atlanta, GA 30301" -268201,27in 4K Gaming Monitor,1,389.99,10/23/19 22:49,"439 7th St, Dallas, TX 75001" -268202,27in FHD Monitor,1,149.99,10/28/19 09:16,"756 Forest St, San Francisco, CA 94016" -268203,AA Batteries (4-pack),1,3.84,10/02/19 19:14,"636 Pine St, New York City, NY 10001" -268204,AA Batteries (4-pack),1,3.84,10/10/19 16:05,"591 11th St, New York City, NY 10001" -268205,ThinkPad Laptop,1,999.99,10/27/19 15:34,"259 Willow St, Los Angeles, CA 90001" -268206,Flatscreen TV,1,300,10/29/19 12:38,"983 Walnut St, Atlanta, GA 30301" -268207,Vareebadd Phone,1,400,10/27/19 19:58,"7 Maple St, Dallas, TX 75001" -268208,iPhone,1,700,10/11/19 18:24,"54 Park St, Los Angeles, CA 90001" -268209,Flatscreen TV,1,300,10/12/19 01:06,"694 Park St, San Francisco, CA 94016" -268210,USB-C Charging Cable,1,11.95,10/11/19 23:39,"468 11th St, Portland, OR 97035" -268211,Bose SoundSport Headphones,1,99.99,10/14/19 22:23,"65 Walnut St, San Francisco, CA 94016" -268212,Apple Airpods Headphones,1,150,10/15/19 11:31,"812 11th St, Los Angeles, CA 90001" -268213,ThinkPad Laptop,1,999.99,10/03/19 21:28,"966 9th St, Dallas, TX 75001" -268214,AAA Batteries (4-pack),1,2.99,10/12/19 08:54,"418 Washington St, San Francisco, CA 94016" -268215,Wired Headphones,1,11.99,10/11/19 20:39,"327 9th St, New York City, NY 10001" -268216,AAA Batteries (4-pack),1,2.99,10/31/19 15:36,"341 10th St, New York City, NY 10001" -268217,Wired Headphones,1,11.99,10/23/19 17:33,"957 Jefferson St, Austin, TX 73301" -268218,34in Ultrawide Monitor,1,379.99,10/21/19 10:18,"802 Wilson St, San Francisco, CA 94016" -268219,AAA Batteries (4-pack),3,2.99,10/19/19 11:40,"388 7th St, Dallas, TX 75001" -268220,USB-C Charging Cable,1,11.95,10/09/19 16:07,"794 Meadow St, Los Angeles, CA 90001" -268221,AA Batteries (4-pack),1,3.84,10/18/19 11:13,"497 Lincoln St, San Francisco, CA 94016" -268222,Wired Headphones,1,11.99,10/12/19 16:15,"42 5th St, Austin, TX 73301" -268223,USB-C Charging Cable,1,11.95,10/01/19 22:46,"206 Willow St, Dallas, TX 75001" -268224,34in Ultrawide Monitor,1,379.99,10/18/19 10:37,"818 Forest St, San Francisco, CA 94016" -268225,AAA Batteries (4-pack),1,2.99,10/03/19 12:57,"93 Lake St, San Francisco, CA 94016" -268226,USB-C Charging Cable,1,11.95,10/17/19 05:56,"272 12th St, Seattle, WA 98101" -268227,AA Batteries (4-pack),1,3.84,10/08/19 18:41,"917 10th St, Los Angeles, CA 90001" -268228,Wired Headphones,2,11.99,10/06/19 20:13,"505 7th St, Los Angeles, CA 90001" -268229,Wired Headphones,1,11.99,10/14/19 11:02,"316 North St, Atlanta, GA 30301" -268230,Bose SoundSport Headphones,1,99.99,10/05/19 10:44,"728 South St, Boston, MA 02215" -268231,AA Batteries (4-pack),1,3.84,10/19/19 02:03,"983 Church St, San Francisco, CA 94016" -268232,Apple Airpods Headphones,1,150,10/04/19 18:21,"506 7th St, New York City, NY 10001" -268233,Wired Headphones,1,11.99,10/15/19 13:03,"952 4th St, New York City, NY 10001" -268234,USB-C Charging Cable,1,11.95,10/22/19 15:21,"822 11th St, Boston, MA 02215" -268235,iPhone,1,700,10/14/19 20:14,"56 Willow St, Seattle, WA 98101" -268236,USB-C Charging Cable,2,11.95,10/09/19 13:34,"689 12th St, San Francisco, CA 94016" -268237,20in Monitor,1,109.99,10/26/19 22:42,"583 11th St, Los Angeles, CA 90001" -268238,AAA Batteries (4-pack),1,2.99,10/29/19 19:44,"962 Highland St, Seattle, WA 98101" -268239,Apple Airpods Headphones,1,150,10/10/19 19:17,"123 Lakeview St, Portland, ME 04101" -268240,USB-C Charging Cable,1,11.95,10/26/19 16:23,"665 Sunset St, Boston, MA 02215" -268241,USB-C Charging Cable,1,11.95,10/30/19 14:54,"883 Maple St, Dallas, TX 75001" -268242,20in Monitor,1,109.99,10/06/19 23:47,"921 Lake St, San Francisco, CA 94016" -268243,27in 4K Gaming Monitor,1,389.99,10/20/19 21:01,"920 Park St, New York City, NY 10001" -268244,AA Batteries (4-pack),1,3.84,10/29/19 01:51,"835 Elm St, New York City, NY 10001" -268245,Apple Airpods Headphones,1,150,10/09/19 09:20,"736 River St, San Francisco, CA 94016" -268245,27in FHD Monitor,1,149.99,10/09/19 09:20,"736 River St, San Francisco, CA 94016" -268246,USB-C Charging Cable,1,11.95,10/24/19 23:00,"203 Forest St, San Francisco, CA 94016" -268247,AA Batteries (4-pack),1,3.84,10/05/19 17:07,"799 Highland St, San Francisco, CA 94016" -268248,iPhone,1,700,10/27/19 19:31,"981 Pine St, San Francisco, CA 94016" -268248,Lightning Charging Cable,1,14.95,10/27/19 19:31,"981 Pine St, San Francisco, CA 94016" -268249,Lightning Charging Cable,1,14.95,10/16/19 22:31,"587 Ridge St, Boston, MA 02215" -268250,Apple Airpods Headphones,1,150,10/04/19 19:30,"43 North St, San Francisco, CA 94016" -268251,USB-C Charging Cable,1,11.95,10/22/19 11:21,"556 Chestnut St, New York City, NY 10001" -268252,27in FHD Monitor,1,149.99,10/13/19 13:04,"643 14th St, Dallas, TX 75001" -268253,USB-C Charging Cable,1,11.95,10/16/19 19:24,"920 5th St, New York City, NY 10001" -268254,27in 4K Gaming Monitor,1,389.99,10/09/19 12:30,"776 Center St, San Francisco, CA 94016" -268255,Lightning Charging Cable,1,14.95,10/04/19 14:04,"732 11th St, Dallas, TX 75001" -268256,AAA Batteries (4-pack),1,2.99,10/04/19 13:37,"141 Park St, Austin, TX 73301" -268257,USB-C Charging Cable,1,11.95,10/25/19 13:31,"731 Lake St, Atlanta, GA 30301" -268258,AAA Batteries (4-pack),1,2.99,10/12/19 17:47,"910 River St, Los Angeles, CA 90001" -268259,Lightning Charging Cable,1,14.95,10/30/19 11:11,"367 9th St, New York City, NY 10001" -268260,Apple Airpods Headphones,1,150,10/14/19 14:02,"802 Ridge St, San Francisco, CA 94016" -268261,Lightning Charging Cable,1,14.95,10/31/19 21:30,"717 Ridge St, Los Angeles, CA 90001" -268262,iPhone,1,700,10/15/19 22:49,"910 Highland St, Atlanta, GA 30301" -268263,Lightning Charging Cable,1,14.95,10/24/19 20:52,"280 Ridge St, Boston, MA 02215" -268264,AA Batteries (4-pack),2,3.84,10/16/19 16:43,"766 Pine St, Seattle, WA 98101" -268265,27in 4K Gaming Monitor,1,389.99,10/27/19 17:02,"974 7th St, Los Angeles, CA 90001" -268266,Macbook Pro Laptop,1,1700,10/13/19 13:32,"169 Madison St, Atlanta, GA 30301" -268267,34in Ultrawide Monitor,1,379.99,10/27/19 12:59,"593 Walnut St, Austin, TX 73301" -268268,Google Phone,1,600,10/15/19 18:09,"960 Highland St, Portland, OR 97035" -268269,USB-C Charging Cable,1,11.95,10/20/19 11:42,"946 4th St, Portland, OR 97035" -268270,27in 4K Gaming Monitor,1,389.99,10/09/19 23:03,"925 14th St, Boston, MA 02215" -268271,Wired Headphones,1,11.99,10/04/19 18:20,"675 12th St, Los Angeles, CA 90001" -268272,Apple Airpods Headphones,1,150,10/13/19 10:46,"67 South St, Dallas, TX 75001" -268273,AAA Batteries (4-pack),3,2.99,10/19/19 12:24,"827 Lincoln St, New York City, NY 10001" -268274,27in 4K Gaming Monitor,1,389.99,10/31/19 15:11,"933 Cherry St, San Francisco, CA 94016" -268275,USB-C Charging Cable,1,11.95,10/28/19 19:19,"931 Johnson St, New York City, NY 10001" -268276,iPhone,1,700,10/30/19 15:33,"88 Highland St, San Francisco, CA 94016" -268277,34in Ultrawide Monitor,1,379.99,10/15/19 21:21,"377 Jefferson St, New York City, NY 10001" -268278,Wired Headphones,1,11.99,10/22/19 12:22,"686 South St, Austin, TX 73301" -268279,iPhone,1,700,10/04/19 14:16,"858 5th St, Dallas, TX 75001" -268279,Lightning Charging Cable,1,14.95,10/04/19 14:16,"858 5th St, Dallas, TX 75001" -,,,,, -268280,USB-C Charging Cable,1,11.95,10/01/19 21:20,"930 North St, New York City, NY 10001" -268281,AAA Batteries (4-pack),1,2.99,10/03/19 19:31,"520 River St, Portland, ME 04101" -268282,Bose SoundSport Headphones,1,99.99,10/28/19 09:49,"364 Wilson St, Los Angeles, CA 90001" -268283,Apple Airpods Headphones,1,150,10/09/19 18:58,"985 12th St, Portland, ME 04101" -268284,AAA Batteries (4-pack),2,2.99,10/18/19 15:41,"859 5th St, Austin, TX 73301" -268285,iPhone,1,700,10/10/19 12:23,"233 13th St, Atlanta, GA 30301" -268286,Bose SoundSport Headphones,1,99.99,10/18/19 23:17,"424 South St, Seattle, WA 98101" -268287,Wired Headphones,1,11.99,10/08/19 18:18,"39 Forest St, Los Angeles, CA 90001" -268288,Wired Headphones,1,11.99,10/23/19 16:25,"857 Meadow St, Los Angeles, CA 90001" -268289,USB-C Charging Cable,1,11.95,10/28/19 19:53,"596 Pine St, Austin, TX 73301" -268290,Apple Airpods Headphones,1,150,10/23/19 15:41,"958 Sunset St, Seattle, WA 98101" -268291,Apple Airpods Headphones,1,150,10/06/19 18:03,"402 Jackson St, New York City, NY 10001" -268292,34in Ultrawide Monitor,1,379.99,10/14/19 12:39,"558 West St, San Francisco, CA 94016" -268293,Apple Airpods Headphones,1,150,10/17/19 23:12,"870 9th St, Austin, TX 73301" -268294,Vareebadd Phone,1,400,10/13/19 16:01,"653 Washington St, San Francisco, CA 94016" -268295,Apple Airpods Headphones,1,150,10/28/19 11:29,"450 West St, San Francisco, CA 94016" -268296,Lightning Charging Cable,1,14.95,10/26/19 00:10,"156 Cherry St, Atlanta, GA 30301" -268297,Wired Headphones,1,11.99,10/30/19 01:02,"989 Johnson St, New York City, NY 10001" -268298,USB-C Charging Cable,1,11.95,10/04/19 14:04,"931 11th St, San Francisco, CA 94016" -268299,Bose SoundSport Headphones,1,99.99,10/16/19 13:54,"47 Wilson St, Los Angeles, CA 90001" -268300,Apple Airpods Headphones,1,150,10/15/19 18:56,"954 8th St, San Francisco, CA 94016" -268301,Lightning Charging Cable,1,14.95,10/13/19 21:07,"329 South St, San Francisco, CA 94016" -268302,AAA Batteries (4-pack),1,2.99,10/02/19 13:07,"617 Sunset St, Seattle, WA 98101" -268303,AA Batteries (4-pack),2,3.84,10/17/19 17:29,"117 Maple St, New York City, NY 10001" -268304,AAA Batteries (4-pack),1,2.99,10/05/19 20:30,"695 Cherry St, Los Angeles, CA 90001" -268305,Bose SoundSport Headphones,1,99.99,10/26/19 21:06,"13 11th St, New York City, NY 10001" -268306,Bose SoundSport Headphones,1,99.99,10/24/19 06:27,"201 West St, Portland, ME 04101" -268307,Apple Airpods Headphones,1,150,10/14/19 10:24,"994 Madison St, New York City, NY 10001" -268308,AAA Batteries (4-pack),1,2.99,10/28/19 20:54,"896 Dogwood St, Seattle, WA 98101" -268309,AAA Batteries (4-pack),1,2.99,10/14/19 15:08,"608 Ridge St, Boston, MA 02215" -268310,Apple Airpods Headphones,1,150,10/16/19 16:09,"660 Jefferson St, San Francisco, CA 94016" -268311,Vareebadd Phone,1,400,10/09/19 18:04,"685 Willow St, New York City, NY 10001" -268312,USB-C Charging Cable,1,11.95,10/04/19 22:45,"339 Walnut St, Atlanta, GA 30301" -268313,Wired Headphones,1,11.99,10/14/19 23:24,"214 4th St, San Francisco, CA 94016" -268314,Apple Airpods Headphones,1,150,10/06/19 11:33,"95 Sunset St, Los Angeles, CA 90001" -268315,USB-C Charging Cable,1,11.95,10/30/19 16:15,"284 South St, Portland, OR 97035" -268316,ThinkPad Laptop,1,999.99,10/23/19 18:33,"111 Lakeview St, Austin, TX 73301" -268317,AAA Batteries (4-pack),1,2.99,10/16/19 07:35,"423 Center St, New York City, NY 10001" -268318,USB-C Charging Cable,1,11.95,10/31/19 14:14,"712 Walnut St, Boston, MA 02215" -268319,Lightning Charging Cable,1,14.95,10/31/19 19:01,"271 Sunset St, Los Angeles, CA 90001" -268320,Bose SoundSport Headphones,1,99.99,10/28/19 09:32,"80 6th St, New York City, NY 10001" -268321,AA Batteries (4-pack),1,3.84,10/24/19 22:38,"238 Walnut St, Seattle, WA 98101" -268322,AA Batteries (4-pack),2,3.84,10/23/19 17:12,"859 10th St, San Francisco, CA 94016" -268323,Bose SoundSport Headphones,1,99.99,10/18/19 22:28,"34 River St, Los Angeles, CA 90001" -268324,iPhone,1,700,10/14/19 19:37,"724 Meadow St, Los Angeles, CA 90001" -268325,AAA Batteries (4-pack),1,2.99,10/08/19 14:08,"171 Chestnut St, San Francisco, CA 94016" -268326,Bose SoundSport Headphones,1,99.99,10/23/19 08:22,"605 12th St, Boston, MA 02215" -268327,Lightning Charging Cable,1,14.95,10/21/19 14:24,"509 Park St, Austin, TX 73301" -268328,Wired Headphones,1,11.99,10/10/19 16:01,"267 Center St, Austin, TX 73301" -268329,Bose SoundSport Headphones,1,99.99,10/21/19 16:39,"442 1st St, Dallas, TX 75001" -268330,Apple Airpods Headphones,1,150,10/10/19 10:41,"399 Sunset St, Dallas, TX 75001" -268331,Bose SoundSport Headphones,1,99.99,10/29/19 21:02,"102 8th St, San Francisco, CA 94016" -268332,iPhone,1,700,10/12/19 23:31,"475 South St, Los Angeles, CA 90001" -268333,AA Batteries (4-pack),1,3.84,10/06/19 07:12,"166 Meadow St, San Francisco, CA 94016" -268334,27in 4K Gaming Monitor,1,389.99,10/08/19 19:52,"559 Maple St, New York City, NY 10001" -268335,LG Washing Machine,1,600.0,10/15/19 12:47,"391 1st St, San Francisco, CA 94016" -268336,27in 4K Gaming Monitor,1,389.99,10/18/19 10:30,"597 11th St, Boston, MA 02215" -268337,LG Washing Machine,1,600.0,10/09/19 21:20,"28 7th St, Los Angeles, CA 90001" -268338,Apple Airpods Headphones,1,150,10/09/19 17:30,"819 1st St, Dallas, TX 75001" -268339,Flatscreen TV,1,300,10/24/19 19:48,"998 River St, Dallas, TX 75001" -268340,Apple Airpods Headphones,1,150,10/18/19 19:45,"382 Chestnut St, Boston, MA 02215" -268341,iPhone,1,700,10/24/19 21:37,"891 Jefferson St, Boston, MA 02215" -268342,20in Monitor,1,109.99,10/15/19 21:09,"929 5th St, Los Angeles, CA 90001" -268343,27in FHD Monitor,1,149.99,10/14/19 07:01,"358 Jefferson St, Dallas, TX 75001" -268344,AAA Batteries (4-pack),1,2.99,10/10/19 14:47,"166 Chestnut St, Portland, OR 97035" -268345,Lightning Charging Cable,1,14.95,10/03/19 12:55,"100 Lincoln St, San Francisco, CA 94016" -268346,Macbook Pro Laptop,1,1700,10/06/19 14:32,"242 5th St, San Francisco, CA 94016" -268347,AA Batteries (4-pack),1,3.84,10/02/19 07:43,"771 Lincoln St, San Francisco, CA 94016" -268348,Macbook Pro Laptop,1,1700,10/20/19 19:35,"431 Lincoln St, Boston, MA 02215" -268349,Apple Airpods Headphones,1,150,10/23/19 12:36,"770 Highland St, New York City, NY 10001" -268350,Wired Headphones,1,11.99,10/08/19 16:03,"803 Main St, Los Angeles, CA 90001" -268351,Wired Headphones,1,11.99,10/29/19 19:03,"515 Jackson St, Portland, OR 97035" -268352,Wired Headphones,1,11.99,10/24/19 10:58,"6 Hill St, Boston, MA 02215" -268353,USB-C Charging Cable,1,11.95,10/22/19 00:25,"302 6th St, San Francisco, CA 94016" -268354,Bose SoundSport Headphones,1,99.99,10/06/19 22:50,"189 Lincoln St, Seattle, WA 98101" -268355,27in FHD Monitor,1,149.99,10/25/19 12:00,"893 Lincoln St, Los Angeles, CA 90001" -268356,Wired Headphones,1,11.99,10/08/19 15:17,"463 2nd St, Boston, MA 02215" -268357,Bose SoundSport Headphones,1,99.99,10/12/19 22:25,"537 Washington St, Atlanta, GA 30301" -268358,Lightning Charging Cable,1,14.95,10/12/19 18:11,"552 11th St, Austin, TX 73301" -268359,Lightning Charging Cable,1,14.95,10/20/19 16:56,"717 Cherry St, Los Angeles, CA 90001" -268359,Bose SoundSport Headphones,1,99.99,10/20/19 16:56,"717 Cherry St, Los Angeles, CA 90001" -268360,Bose SoundSport Headphones,1,99.99,10/27/19 04:56,"22 West St, San Francisco, CA 94016" -268361,Lightning Charging Cable,1,14.95,10/14/19 17:05,"409 Hill St, Atlanta, GA 30301" -268362,AA Batteries (4-pack),2,3.84,10/07/19 22:17,"848 Ridge St, Los Angeles, CA 90001" -268363,Wired Headphones,1,11.99,10/13/19 07:05,"253 Adams St, Dallas, TX 75001" -268364,AA Batteries (4-pack),1,3.84,10/21/19 08:28,"611 Johnson St, Atlanta, GA 30301" -268365,27in 4K Gaming Monitor,1,389.99,10/19/19 10:29,"594 Lincoln St, Austin, TX 73301" -268366,Lightning Charging Cable,1,14.95,10/22/19 15:14,"16 Elm St, Portland, OR 97035" -268367,AAA Batteries (4-pack),1,2.99,10/14/19 23:03,"101 1st St, Seattle, WA 98101" -268368,USB-C Charging Cable,1,11.95,10/10/19 13:06,"935 Maple St, Portland, OR 97035" -268369,AA Batteries (4-pack),1,3.84,10/22/19 17:25,"364 West St, Seattle, WA 98101" -268370,Bose SoundSport Headphones,1,99.99,10/25/19 09:23,"485 Walnut St, Dallas, TX 75001" -268371,27in 4K Gaming Monitor,1,389.99,10/12/19 09:34,"510 Meadow St, Portland, OR 97035" -268372,27in 4K Gaming Monitor,1,389.99,10/18/19 20:28,"15 Maple St, Portland, OR 97035" -268373,AAA Batteries (4-pack),1,2.99,10/26/19 20:42,"796 Sunset St, San Francisco, CA 94016" -268374,AA Batteries (4-pack),1,3.84,10/25/19 12:12,"567 Sunset St, Austin, TX 73301" -268375,Wired Headphones,2,11.99,10/28/19 20:04,"661 Pine St, New York City, NY 10001" -268376,USB-C Charging Cable,1,11.95,10/15/19 17:00,"309 Meadow St, Los Angeles, CA 90001" -268377,Bose SoundSport Headphones,1,99.99,10/10/19 11:31,"20 8th St, New York City, NY 10001" -,,,,, -268378,Lightning Charging Cable,1,14.95,10/07/19 17:25,"431 Madison St, Seattle, WA 98101" -268379,Wired Headphones,1,11.99,10/05/19 22:41,"865 14th St, San Francisco, CA 94016" -268380,Lightning Charging Cable,1,14.95,10/08/19 15:30,"37 River St, Boston, MA 02215" -268381,Bose SoundSport Headphones,1,99.99,10/19/19 23:30,"522 8th St, Atlanta, GA 30301" -268382,Apple Airpods Headphones,1,150,10/01/19 10:56,"845 Madison St, Seattle, WA 98101" -268383,AAA Batteries (4-pack),1,2.99,10/17/19 21:42,"528 South St, Seattle, WA 98101" -268384,LG Dryer,1,600.0,10/22/19 11:18,"719 Cherry St, San Francisco, CA 94016" -268385,Vareebadd Phone,1,400,10/29/19 21:05,"77 Main St, Boston, MA 02215" -268386,AA Batteries (4-pack),1,3.84,10/22/19 11:28,"52 Jackson St, San Francisco, CA 94016" -268387,Bose SoundSport Headphones,1,99.99,10/19/19 18:53,"747 Jackson St, New York City, NY 10001" -268388,Lightning Charging Cable,1,14.95,10/27/19 12:47,"347 Lake St, San Francisco, CA 94016" -268389,Apple Airpods Headphones,1,150,10/22/19 18:56,"606 Hill St, Los Angeles, CA 90001" -268390,Macbook Pro Laptop,1,1700,10/18/19 11:49,"793 Chestnut St, San Francisco, CA 94016" -268391,Wired Headphones,1,11.99,10/21/19 15:28,"41 Church St, Seattle, WA 98101" -268392,Apple Airpods Headphones,1,150,10/30/19 14:08,"255 Johnson St, New York City, NY 10001" -268393,AA Batteries (4-pack),1,3.84,10/26/19 00:35,"550 North St, Portland, OR 97035" -268394,Bose SoundSport Headphones,1,99.99,10/23/19 11:58,"726 Cedar St, San Francisco, CA 94016" -268395,Vareebadd Phone,1,400,10/17/19 21:15,"137 Chestnut St, San Francisco, CA 94016" -268396,AA Batteries (4-pack),1,3.84,10/09/19 14:41,"179 Park St, Atlanta, GA 30301" -268397,Lightning Charging Cable,1,14.95,10/21/19 10:54,"612 Jackson St, Portland, OR 97035" -268398,Apple Airpods Headphones,1,150,10/03/19 12:00,"767 7th St, Austin, TX 73301" -268399,27in 4K Gaming Monitor,1,389.99,10/13/19 20:37,"781 Pine St, New York City, NY 10001" -268400,Bose SoundSport Headphones,1,99.99,10/07/19 14:27,"618 Highland St, New York City, NY 10001" -268401,USB-C Charging Cable,1,11.95,10/20/19 13:39,"240 Sunset St, Los Angeles, CA 90001" -268402,27in 4K Gaming Monitor,1,389.99,10/13/19 19:46,"427 Forest St, Dallas, TX 75001" -268403,34in Ultrawide Monitor,1,379.99,10/13/19 20:47,"411 Spruce St, San Francisco, CA 94016" -268404,20in Monitor,1,109.99,10/21/19 05:18,"722 4th St, Austin, TX 73301" -268405,Apple Airpods Headphones,1,150,10/12/19 11:57,"269 North St, Los Angeles, CA 90001" -268406,Wired Headphones,2,11.99,10/31/19 12:10,"618 9th St, San Francisco, CA 94016" -268407,Lightning Charging Cable,1,14.95,10/24/19 15:42,"776 Madison St, New York City, NY 10001" -268408,27in FHD Monitor,1,149.99,10/14/19 20:52,"299 Spruce St, San Francisco, CA 94016" -268409,Apple Airpods Headphones,1,150,10/22/19 12:32,"630 Church St, Dallas, TX 75001" -268410,AAA Batteries (4-pack),3,2.99,10/02/19 00:33,"985 Chestnut St, Boston, MA 02215" -268411,AAA Batteries (4-pack),1,2.99,10/09/19 08:00,"39 Maple St, Boston, MA 02215" -268412,USB-C Charging Cable,1,11.95,10/06/19 22:38,"560 Madison St, Austin, TX 73301" -268413,AA Batteries (4-pack),2,3.84,10/27/19 22:29,"262 Dogwood St, San Francisco, CA 94016" -268414,Flatscreen TV,1,300,10/31/19 12:42,"669 Washington St, Los Angeles, CA 90001" -268415,Wired Headphones,1,11.99,10/27/19 10:14,"93 Main St, San Francisco, CA 94016" -268416,AAA Batteries (4-pack),1,2.99,10/25/19 11:37,"111 Johnson St, San Francisco, CA 94016" -268417,Apple Airpods Headphones,1,150,10/20/19 23:27,"968 Johnson St, Seattle, WA 98101" -268418,27in FHD Monitor,1,149.99,10/10/19 09:39,"799 River St, New York City, NY 10001" -268419,USB-C Charging Cable,1,11.95,10/13/19 14:29,"831 Maple St, New York City, NY 10001" -268420,iPhone,1,700,10/29/19 10:50,"653 14th St, Los Angeles, CA 90001" -268421,AAA Batteries (4-pack),1,2.99,10/07/19 20:15,"386 11th St, Seattle, WA 98101" -268422,Wired Headphones,1,11.99,10/18/19 17:53,"760 8th St, San Francisco, CA 94016" -268423,Wired Headphones,1,11.99,10/19/19 11:21,"366 Maple St, Seattle, WA 98101" -268424,Lightning Charging Cable,1,14.95,10/04/19 12:33,"736 Hickory St, Boston, MA 02215" -268425,Wired Headphones,1,11.99,10/15/19 14:51,"444 Lincoln St, Los Angeles, CA 90001" -268426,Lightning Charging Cable,1,14.95,10/22/19 19:18,"788 Walnut St, Seattle, WA 98101" -268427,20in Monitor,1,109.99,10/06/19 19:03,"402 Cedar St, New York City, NY 10001" -268428,Wired Headphones,1,11.99,10/16/19 12:02,"617 Pine St, Los Angeles, CA 90001" -268429,AA Batteries (4-pack),1,3.84,10/26/19 09:16,"373 10th St, New York City, NY 10001" -268430,AA Batteries (4-pack),1,3.84,10/29/19 12:45,"769 Sunset St, Los Angeles, CA 90001" -268431,27in 4K Gaming Monitor,1,389.99,10/01/19 15:23,"51 Ridge St, Boston, MA 02215" -268432,AAA Batteries (4-pack),3,2.99,10/27/19 20:57,"439 Center St, San Francisco, CA 94016" -268433,Apple Airpods Headphones,1,150,10/23/19 20:10,"106 14th St, San Francisco, CA 94016" -268434,USB-C Charging Cable,1,11.95,10/24/19 20:28,"876 South St, Dallas, TX 75001" -268435,Bose SoundSport Headphones,1,99.99,10/18/19 21:42,"729 13th St, Los Angeles, CA 90001" -268435,USB-C Charging Cable,1,11.95,10/18/19 21:42,"729 13th St, Los Angeles, CA 90001" -268436,iPhone,1,700,10/31/19 18:47,"516 Lakeview St, Los Angeles, CA 90001" -268437,Wired Headphones,1,11.99,10/08/19 15:33,"460 2nd St, Atlanta, GA 30301" -268438,AA Batteries (4-pack),2,3.84,10/17/19 13:51,"50 Lake St, Seattle, WA 98101" -268439,USB-C Charging Cable,2,11.95,10/15/19 20:51,"439 Park St, San Francisco, CA 94016" -268440,Bose SoundSport Headphones,1,99.99,10/03/19 17:39,"36 2nd St, San Francisco, CA 94016" -268441,Wired Headphones,1,11.99,10/08/19 22:06,"950 Elm St, Los Angeles, CA 90001" -268442,34in Ultrawide Monitor,1,379.99,10/28/19 09:01,"472 Forest St, Boston, MA 02215" -268443,AAA Batteries (4-pack),2,2.99,10/22/19 15:13,"440 Jackson St, Seattle, WA 98101" -268444,Bose SoundSport Headphones,1,99.99,10/27/19 19:29,"644 Cedar St, San Francisco, CA 94016" -268445,AAA Batteries (4-pack),1,2.99,10/30/19 14:11,"541 Pine St, San Francisco, CA 94016" -268446,27in 4K Gaming Monitor,1,389.99,10/28/19 16:23,"30 Jefferson St, San Francisco, CA 94016" -268447,AA Batteries (4-pack),1,3.84,10/18/19 09:50,"787 Chestnut St, San Francisco, CA 94016" -268448,Lightning Charging Cable,1,14.95,10/25/19 12:07,"363 Elm St, Austin, TX 73301" -268449,Wired Headphones,1,11.99,10/26/19 23:07,"740 1st St, Portland, OR 97035" -268450,Apple Airpods Headphones,1,150,10/10/19 17:01,"923 12th St, Portland, OR 97035" -268451,Flatscreen TV,1,300,10/24/19 07:28,"14 Highland St, Boston, MA 02215" -268452,USB-C Charging Cable,1,11.95,10/25/19 22:12,"359 Lake St, Portland, OR 97035" -268453,AA Batteries (4-pack),1,3.84,10/22/19 17:31,"610 Hickory St, Atlanta, GA 30301" -268454,AA Batteries (4-pack),1,3.84,10/24/19 09:19,"217 Dogwood St, Dallas, TX 75001" -268455,Google Phone,1,600,10/13/19 20:29,"103 Cedar St, Atlanta, GA 30301" -268456,USB-C Charging Cable,1,11.95,10/08/19 19:28,"540 Forest St, Los Angeles, CA 90001" -268457,AAA Batteries (4-pack),1,2.99,10/10/19 13:03,"161 Walnut St, Los Angeles, CA 90001" -268458,Bose SoundSport Headphones,1,99.99,10/03/19 08:23,"84 Sunset St, Los Angeles, CA 90001" -268459,ThinkPad Laptop,1,999.99,10/09/19 09:21,"240 Ridge St, Portland, OR 97035" -268460,ThinkPad Laptop,1,999.99,10/03/19 07:33,"483 14th St, Portland, OR 97035" -268461,USB-C Charging Cable,1,11.95,10/13/19 22:22,"26 6th St, San Francisco, CA 94016" -268462,20in Monitor,1,109.99,10/25/19 10:02,"350 Highland St, Boston, MA 02215" -268463,27in 4K Gaming Monitor,1,389.99,10/04/19 08:58,"909 South St, Boston, MA 02215" -268464,AA Batteries (4-pack),1,3.84,10/13/19 08:17,"59 Madison St, San Francisco, CA 94016" -268465,USB-C Charging Cable,1,11.95,10/20/19 06:13,"491 Willow St, Dallas, TX 75001" -268466,AAA Batteries (4-pack),2,2.99,10/30/19 16:59,"653 Pine St, New York City, NY 10001" -268467,USB-C Charging Cable,1,11.95,10/07/19 19:16,"358 Pine St, San Francisco, CA 94016" -268468,34in Ultrawide Monitor,1,379.99,10/31/19 12:13,"404 Washington St, New York City, NY 10001" -268469,Bose SoundSport Headphones,1,99.99,10/19/19 16:47,"533 Ridge St, New York City, NY 10001" -268470,AA Batteries (4-pack),1,3.84,10/31/19 22:55,"146 Lincoln St, Seattle, WA 98101" -268471,Macbook Pro Laptop,1,1700,10/17/19 17:54,"398 Madison St, Boston, MA 02215" -268472,AA Batteries (4-pack),2,3.84,10/13/19 20:46,"181 West St, Austin, TX 73301" -268473,USB-C Charging Cable,1,11.95,10/16/19 11:59,"592 Elm St, San Francisco, CA 94016" -268474,27in FHD Monitor,1,149.99,10/20/19 14:37,"25 12th St, San Francisco, CA 94016" -268475,Bose SoundSport Headphones,1,99.99,10/06/19 18:55,"571 Jackson St, Seattle, WA 98101" -268476,AA Batteries (4-pack),1,3.84,10/10/19 22:06,"56 Ridge St, Portland, OR 97035" -268477,AA Batteries (4-pack),2,3.84,10/28/19 14:26,"354 Forest St, New York City, NY 10001" -268478,USB-C Charging Cable,1,11.95,10/29/19 12:51,"924 Adams St, New York City, NY 10001" -268479,AAA Batteries (4-pack),4,2.99,10/13/19 10:56,"476 Willow St, New York City, NY 10001" -268480,ThinkPad Laptop,1,999.99,10/19/19 12:41,"139 Highland St, Boston, MA 02215" -268481,Macbook Pro Laptop,1,1700,10/05/19 06:33,"351 Dogwood St, Seattle, WA 98101" -268482,Google Phone,1,600,10/16/19 22:04,"297 Park St, Dallas, TX 75001" -268483,Wired Headphones,1,11.99,10/01/19 18:39,"263 Church St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -,,,,, -268484,iPhone,1,700,10/18/19 13:56,"380 Sunset St, Los Angeles, CA 90001" -268485,Wired Headphones,1,11.99,10/26/19 09:53,"191 Forest St, Atlanta, GA 30301" -268486,Bose SoundSport Headphones,1,99.99,10/15/19 18:23,"998 Wilson St, Atlanta, GA 30301" -268486,USB-C Charging Cable,1,11.95,10/15/19 18:23,"998 Wilson St, Atlanta, GA 30301" -268487,20in Monitor,1,109.99,10/14/19 19:45,"310 Meadow St, Boston, MA 02215" -268488,USB-C Charging Cable,1,11.95,10/24/19 00:14,"127 Madison St, Atlanta, GA 30301" -268489,USB-C Charging Cable,1,11.95,10/16/19 21:01,"529 Center St, Austin, TX 73301" -268490,Wired Headphones,1,11.99,10/15/19 16:20,"490 14th St, Seattle, WA 98101" -268491,Wired Headphones,1,11.99,10/21/19 15:22,"701 2nd St, Portland, OR 97035" -268492,AA Batteries (4-pack),2,3.84,10/05/19 04:40,"21 9th St, Atlanta, GA 30301" -268493,Lightning Charging Cable,1,14.95,10/23/19 18:45,"479 10th St, Atlanta, GA 30301" -268494,USB-C Charging Cable,1,11.95,10/18/19 16:48,"508 Adams St, San Francisco, CA 94016" -268495,27in 4K Gaming Monitor,1,389.99,10/07/19 09:20,"294 Meadow St, Atlanta, GA 30301" -268496,ThinkPad Laptop,1,999.99,10/12/19 15:24,"277 Highland St, Los Angeles, CA 90001" -268497,AAA Batteries (4-pack),1,2.99,10/01/19 19:24,"66 9th St, Los Angeles, CA 90001" -268498,Lightning Charging Cable,1,14.95,10/08/19 14:32,"377 North St, Boston, MA 02215" -268499,AA Batteries (4-pack),1,3.84,10/06/19 04:28,"347 Dogwood St, Portland, OR 97035" -268500,Apple Airpods Headphones,1,150,10/03/19 12:53,"513 Walnut St, Los Angeles, CA 90001" -268501,Bose SoundSport Headphones,1,99.99,10/07/19 19:17,"463 Meadow St, San Francisco, CA 94016" -268502,Apple Airpods Headphones,1,150,10/17/19 00:59,"443 5th St, San Francisco, CA 94016" -268502,Macbook Pro Laptop,1,1700,10/17/19 00:59,"443 5th St, San Francisco, CA 94016" -268503,AA Batteries (4-pack),1,3.84,10/20/19 23:03,"550 Ridge St, San Francisco, CA 94016" -268504,AA Batteries (4-pack),1,3.84,10/04/19 18:41,"866 10th St, Austin, TX 73301" -268505,Lightning Charging Cable,1,14.95,10/08/19 22:34,"676 Center St, Atlanta, GA 30301" -268506,USB-C Charging Cable,1,11.95,10/03/19 02:36,"120 Hickory St, San Francisco, CA 94016" -268506,Google Phone,1,600,10/03/19 02:36,"120 Hickory St, San Francisco, CA 94016" -268507,Wired Headphones,1,11.99,10/22/19 16:07,"834 Walnut St, Austin, TX 73301" -268508,AA Batteries (4-pack),1,3.84,10/05/19 00:34,"971 North St, Boston, MA 02215" -268509,Wired Headphones,1,11.99,10/11/19 23:52,"609 5th St, Los Angeles, CA 90001" -268510,AAA Batteries (4-pack),1,2.99,10/10/19 08:04,"560 Spruce St, Boston, MA 02215" -268511,Wired Headphones,1,11.99,10/10/19 22:56,"700 Pine St, Los Angeles, CA 90001" -268512,Lightning Charging Cable,1,14.95,10/03/19 19:21,"713 Johnson St, Los Angeles, CA 90001" -268513,Apple Airpods Headphones,1,150,10/13/19 18:05,"407 Sunset St, Seattle, WA 98101" -268514,27in FHD Monitor,1,149.99,10/24/19 17:34,"302 Willow St, Atlanta, GA 30301" -268515,27in FHD Monitor,1,149.99,10/25/19 10:09,"330 Walnut St, Portland, ME 04101" -268516,Vareebadd Phone,1,400,10/01/19 20:01,"890 Dogwood St, New York City, NY 10001" -268516,USB-C Charging Cable,1,11.95,10/01/19 20:01,"890 Dogwood St, New York City, NY 10001" -268517,Apple Airpods Headphones,1,150,10/12/19 16:43,"987 Lincoln St, New York City, NY 10001" -268518,Lightning Charging Cable,1,14.95,10/28/19 12:29,"368 4th St, Boston, MA 02215" -268519,AA Batteries (4-pack),1,3.84,10/02/19 20:46,"172 Wilson St, San Francisco, CA 94016" -268520,Flatscreen TV,1,300,10/18/19 18:27,"637 Maple St, New York City, NY 10001" -268521,Vareebadd Phone,1,400,10/18/19 21:11,"744 12th St, Seattle, WA 98101" -268522,Wired Headphones,1,11.99,10/24/19 12:41,"573 Pine St, Austin, TX 73301" -268523,AAA Batteries (4-pack),1,2.99,10/27/19 16:20,"738 Maple St, Boston, MA 02215" -268524,USB-C Charging Cable,1,11.95,10/01/19 15:43,"960 Hickory St, Seattle, WA 98101" -268525,AAA Batteries (4-pack),1,2.99,10/23/19 15:41,"856 Main St, San Francisco, CA 94016" -268526,Lightning Charging Cable,1,14.95,10/27/19 06:39,"768 14th St, New York City, NY 10001" -268527,Bose SoundSport Headphones,1,99.99,10/07/19 10:57,"753 River St, San Francisco, CA 94016" -268528,Google Phone,1,600,10/06/19 16:55,"12 Dogwood St, Los Angeles, CA 90001" -268529,USB-C Charging Cable,1,11.95,10/27/19 23:09,"95 River St, New York City, NY 10001" -268529,iPhone,1,700,10/27/19 23:09,"95 River St, New York City, NY 10001" -268530,AA Batteries (4-pack),2,3.84,10/13/19 23:23,"644 West St, Boston, MA 02215" -268531,AAA Batteries (4-pack),1,2.99,10/22/19 18:36,"619 Pine St, Seattle, WA 98101" -268532,AA Batteries (4-pack),1,3.84,10/22/19 13:07,"158 North St, New York City, NY 10001" -268533,Macbook Pro Laptop,1,1700,10/26/19 21:51,"834 North St, Atlanta, GA 30301" -268533,Bose SoundSport Headphones,1,99.99,10/26/19 21:51,"834 North St, Atlanta, GA 30301" -268534,Macbook Pro Laptop,1,1700,10/16/19 11:47,"182 Church St, Atlanta, GA 30301" -268535,Wired Headphones,1,11.99,10/22/19 22:34,"994 South St, Los Angeles, CA 90001" -268536,Bose SoundSport Headphones,1,99.99,10/27/19 18:41,"674 5th St, Dallas, TX 75001" -268537,27in 4K Gaming Monitor,1,389.99,10/08/19 23:23,"822 10th St, San Francisco, CA 94016" -268538,iPhone,1,700,10/19/19 10:23,"233 Church St, Atlanta, GA 30301" -268539,iPhone,1,700,10/20/19 18:25,"422 10th St, Boston, MA 02215" -268540,AAA Batteries (4-pack),2,2.99,10/24/19 17:15,"127 5th St, San Francisco, CA 94016" -268541,AA Batteries (4-pack),1,3.84,10/07/19 14:58,"854 Willow St, San Francisco, CA 94016" -268542,iPhone,1,700,10/10/19 09:01,"509 Sunset St, Los Angeles, CA 90001" -268543,Wired Headphones,1,11.99,10/31/19 14:19,"641 Ridge St, San Francisco, CA 94016" -268544,Apple Airpods Headphones,1,150,10/10/19 09:42,"401 Hill St, Atlanta, GA 30301" -268545,Wired Headphones,1,11.99,10/12/19 21:10,"837 Church St, San Francisco, CA 94016" -268546,Lightning Charging Cable,1,14.95,10/31/19 07:52,"628 8th St, Atlanta, GA 30301" -268547,Wired Headphones,1,11.99,10/19/19 20:43,"476 Jackson St, Boston, MA 02215" -268547,ThinkPad Laptop,1,999.99,10/19/19 20:43,"476 Jackson St, Boston, MA 02215" -268548,AAA Batteries (4-pack),1,2.99,10/04/19 20:54,"222 Cedar St, Boston, MA 02215" -268549,27in 4K Gaming Monitor,1,389.99,10/14/19 18:28,"775 Elm St, San Francisco, CA 94016" -268550,AAA Batteries (4-pack),1,2.99,10/07/19 02:56,"362 5th St, San Francisco, CA 94016" -268551,Lightning Charging Cable,1,14.95,10/02/19 15:20,"515 Pine St, San Francisco, CA 94016" -268551,Lightning Charging Cable,1,14.95,10/02/19 15:20,"515 Pine St, San Francisco, CA 94016" -268552,USB-C Charging Cable,1,11.95,10/20/19 21:55,"86 Adams St, San Francisco, CA 94016" -268553,Wired Headphones,1,11.99,10/28/19 16:43,"480 Lincoln St, Portland, OR 97035" -268554,AA Batteries (4-pack),1,3.84,10/15/19 22:27,"528 Madison St, New York City, NY 10001" -268555,Wired Headphones,1,11.99,10/03/19 11:10,"307 Cedar St, Atlanta, GA 30301" -268556,34in Ultrawide Monitor,1,379.99,10/12/19 10:19,"278 1st St, San Francisco, CA 94016" -268557,AAA Batteries (4-pack),1,2.99,10/06/19 11:04,"660 8th St, Dallas, TX 75001" -268558,Bose SoundSport Headphones,1,99.99,10/02/19 09:20,"670 Johnson St, San Francisco, CA 94016" -268559,Bose SoundSport Headphones,1,99.99,10/30/19 21:28,"337 North St, Portland, OR 97035" -268560,USB-C Charging Cable,1,11.95,10/25/19 12:29,"265 Walnut St, Atlanta, GA 30301" -268561,Apple Airpods Headphones,1,150,10/27/19 12:52,"42 Chestnut St, Los Angeles, CA 90001" -268562,USB-C Charging Cable,1,11.95,10/10/19 21:08,"8 Adams St, Los Angeles, CA 90001" -268563,Lightning Charging Cable,1,14.95,10/11/19 17:30,"825 Highland St, Portland, OR 97035" -268564,Apple Airpods Headphones,1,150,10/21/19 10:36,"381 Pine St, Dallas, TX 75001" -268565,27in 4K Gaming Monitor,1,389.99,10/04/19 16:05,"552 6th St, Los Angeles, CA 90001" -268566,Bose SoundSport Headphones,1,99.99,10/21/19 00:12,"278 12th St, San Francisco, CA 94016" -268567,Lightning Charging Cable,2,14.95,10/10/19 16:41,"80 Sunset St, Seattle, WA 98101" -268568,Bose SoundSport Headphones,1,99.99,10/21/19 13:19,"439 6th St, San Francisco, CA 94016" -268569,AA Batteries (4-pack),1,3.84,10/22/19 05:43,"410 Lake St, San Francisco, CA 94016" -268570,Bose SoundSport Headphones,1,99.99,10/13/19 00:49,"436 13th St, Austin, TX 73301" -268571,AAA Batteries (4-pack),2,2.99,10/20/19 06:36,"607 Highland St, San Francisco, CA 94016" -268572,Lightning Charging Cable,3,14.95,10/23/19 15:21,"905 Willow St, Boston, MA 02215" -268573,AA Batteries (4-pack),1,3.84,10/02/19 14:14,"270 5th St, Portland, ME 04101" -268574,AA Batteries (4-pack),2,3.84,10/19/19 02:30,"449 14th St, Atlanta, GA 30301" -268575,Bose SoundSport Headphones,1,99.99,10/30/19 11:18,"191 Maple St, Boston, MA 02215" -268576,27in FHD Monitor,1,149.99,10/08/19 10:26,"926 Wilson St, Los Angeles, CA 90001" -268577,AAA Batteries (4-pack),1,2.99,10/30/19 11:56,"275 Lakeview St, Austin, TX 73301" -268578,Lightning Charging Cable,1,14.95,10/13/19 23:52,"422 Highland St, Portland, OR 97035" -268579,Macbook Pro Laptop,1,1700,10/13/19 14:07,"639 5th St, San Francisco, CA 94016" -268580,Bose SoundSport Headphones,1,99.99,10/02/19 13:59,"592 Dogwood St, New York City, NY 10001" -268581,Macbook Pro Laptop,1,1700,10/04/19 08:24,"317 Spruce St, Boston, MA 02215" -268582,Apple Airpods Headphones,1,150,10/14/19 18:24,"586 14th St, Los Angeles, CA 90001" -268583,Apple Airpods Headphones,1,150,10/22/19 20:37,"337 9th St, Seattle, WA 98101" -268584,USB-C Charging Cable,1,11.95,10/23/19 21:19,"214 Forest St, Los Angeles, CA 90001" -268585,iPhone,1,700,10/22/19 19:21,"16 12th St, San Francisco, CA 94016" -268586,Lightning Charging Cable,1,14.95,10/08/19 18:56,"586 Sunset St, Los Angeles, CA 90001" -268587,Wired Headphones,1,11.99,10/30/19 17:57,"686 Chestnut St, Boston, MA 02215" -268588,Wired Headphones,1,11.99,10/18/19 11:17,"283 North St, Los Angeles, CA 90001" -268589,AAA Batteries (4-pack),1,2.99,10/09/19 16:19,"721 7th St, Los Angeles, CA 90001" -268590,Google Phone,1,600,10/11/19 17:34,"451 Maple St, New York City, NY 10001" -268591,Wired Headphones,1,11.99,10/24/19 09:45,"444 Adams St, San Francisco, CA 94016" -268592,AAA Batteries (4-pack),1,2.99,10/28/19 18:33,"60 8th St, Los Angeles, CA 90001" -268593,AA Batteries (4-pack),1,3.84,10/12/19 10:36,"427 Walnut St, New York City, NY 10001" -268594,USB-C Charging Cable,1,11.95,10/15/19 12:17,"716 13th St, San Francisco, CA 94016" -268595,34in Ultrawide Monitor,1,379.99,10/17/19 11:54,"782 Pine St, Los Angeles, CA 90001" -268596,Lightning Charging Cable,1,14.95,10/13/19 07:35,"344 10th St, Los Angeles, CA 90001" -268597,Wired Headphones,1,11.99,10/17/19 11:54,"354 13th St, Seattle, WA 98101" -268598,USB-C Charging Cable,1,11.95,10/08/19 18:18,"690 8th St, Los Angeles, CA 90001" -268599,iPhone,1,700,10/04/19 12:06,"457 Center St, Los Angeles, CA 90001" -268600,Lightning Charging Cable,1,14.95,10/14/19 08:35,"562 5th St, San Francisco, CA 94016" -268601,AAA Batteries (4-pack),1,2.99,10/31/19 20:35,"736 North St, San Francisco, CA 94016" -268602,USB-C Charging Cable,1,11.95,10/25/19 18:27,"142 Church St, Boston, MA 02215" -268603,AAA Batteries (4-pack),1,2.99,10/24/19 22:25,"33 Hickory St, New York City, NY 10001" -268604,27in 4K Gaming Monitor,1,389.99,10/08/19 09:10,"475 Sunset St, San Francisco, CA 94016" -268605,Flatscreen TV,1,300,10/26/19 15:10,"657 Forest St, Portland, OR 97035" -268606,Lightning Charging Cable,1,14.95,10/07/19 10:12,"150 2nd St, New York City, NY 10001" -268607,Wired Headphones,1,11.99,10/17/19 11:59,"469 Adams St, Seattle, WA 98101" -268608,Apple Airpods Headphones,1,150,10/28/19 19:38,"16 Meadow St, Boston, MA 02215" -268609,AAA Batteries (4-pack),1,2.99,10/25/19 19:43,"885 Ridge St, Seattle, WA 98101" -268610,20in Monitor,1,109.99,10/17/19 11:03,"223 Lake St, Los Angeles, CA 90001" -268611,Wired Headphones,1,11.99,10/12/19 11:30,"411 Madison St, Dallas, TX 75001" -268612,Wired Headphones,1,11.99,10/27/19 19:28,"55 6th St, New York City, NY 10001" -268613,AA Batteries (4-pack),1,3.84,10/26/19 07:05,"399 Pine St, Los Angeles, CA 90001" -268614,Macbook Pro Laptop,1,1700,10/31/19 19:44,"884 2nd St, San Francisco, CA 94016" -268615,AA Batteries (4-pack),2,3.84,10/27/19 16:37,"749 2nd St, Seattle, WA 98101" -268616,Apple Airpods Headphones,1,150,10/21/19 11:29,"422 Walnut St, New York City, NY 10001" -268617,Bose SoundSport Headphones,1,99.99,10/13/19 21:01,"618 South St, San Francisco, CA 94016" -268618,27in 4K Gaming Monitor,1,389.99,10/29/19 01:27,"604 9th St, Portland, OR 97035" -268619,iPhone,1,700,10/14/19 17:24,"330 8th St, Austin, TX 73301" -268619,Lightning Charging Cable,1,14.95,10/14/19 17:24,"330 8th St, Austin, TX 73301" -268619,Wired Headphones,1,11.99,10/14/19 17:24,"330 8th St, Austin, TX 73301" -268620,Lightning Charging Cable,1,14.95,10/07/19 08:39,"517 Hill St, Los Angeles, CA 90001" -268621,Lightning Charging Cable,1,14.95,10/19/19 02:32,"810 4th St, Portland, OR 97035" -268622,34in Ultrawide Monitor,1,379.99,10/17/19 11:09,"859 River St, Dallas, TX 75001" -268623,AA Batteries (4-pack),3,3.84,10/20/19 12:30,"765 2nd St, San Francisco, CA 94016" -268623,AAA Batteries (4-pack),3,2.99,10/20/19 12:30,"765 2nd St, San Francisco, CA 94016" -268624,Google Phone,1,600,10/16/19 23:41,"489 11th St, Boston, MA 02215" -268625,Google Phone,1,600,10/16/19 19:38,"795 4th St, Boston, MA 02215" -268625,Wired Headphones,1,11.99,10/16/19 19:38,"795 4th St, Boston, MA 02215" -268626,27in FHD Monitor,1,149.99,10/04/19 09:18,"958 Jackson St, Austin, TX 73301" -268627,Lightning Charging Cable,1,14.95,10/27/19 22:07,"466 Lakeview St, San Francisco, CA 94016" -268628,Lightning Charging Cable,1,14.95,10/25/19 11:13,"279 4th St, Dallas, TX 75001" -268629,Vareebadd Phone,1,400,10/10/19 23:52,"735 Forest St, Seattle, WA 98101" -268629,USB-C Charging Cable,1,11.95,10/10/19 23:52,"735 Forest St, Seattle, WA 98101" -268630,Wired Headphones,1,11.99,10/18/19 09:50,"880 6th St, Boston, MA 02215" -268631,Vareebadd Phone,1,400,10/21/19 20:41,"865 Maple St, New York City, NY 10001" -268631,USB-C Charging Cable,1,11.95,10/21/19 20:41,"865 Maple St, New York City, NY 10001" -268632,27in 4K Gaming Monitor,1,389.99,10/28/19 11:07,"739 8th St, Boston, MA 02215" -268633,Lightning Charging Cable,1,14.95,10/28/19 13:13,"41 Johnson St, Atlanta, GA 30301" -268634,Lightning Charging Cable,1,14.95,10/09/19 13:19,"947 7th St, Atlanta, GA 30301" -268635,Apple Airpods Headphones,1,150,10/31/19 02:29,"509 Madison St, Los Angeles, CA 90001" -268636,27in 4K Gaming Monitor,1,389.99,10/30/19 16:08,"861 9th St, Dallas, TX 75001" -268637,Apple Airpods Headphones,1,150,10/17/19 10:26,"130 6th St, Seattle, WA 98101" -268638,Flatscreen TV,1,300,10/18/19 13:35,"651 Cherry St, Austin, TX 73301" -268639,Apple Airpods Headphones,1,150,10/17/19 07:52,"303 Johnson St, Portland, ME 04101" -268640,AAA Batteries (4-pack),1,2.99,10/13/19 09:25,"502 Chestnut St, Atlanta, GA 30301" -268641,USB-C Charging Cable,2,11.95,10/31/19 09:04,"695 2nd St, Atlanta, GA 30301" -268642,Apple Airpods Headphones,1,150,10/19/19 23:02,"985 Pine St, Atlanta, GA 30301" -268643,USB-C Charging Cable,1,11.95,10/22/19 13:45,"851 6th St, San Francisco, CA 94016" -268644,AA Batteries (4-pack),1,3.84,10/25/19 23:09,"517 Walnut St, San Francisco, CA 94016" -268645,AA Batteries (4-pack),2,3.84,10/19/19 12:56,"767 7th St, San Francisco, CA 94016" -268646,27in 4K Gaming Monitor,1,389.99,10/24/19 14:02,"108 9th St, New York City, NY 10001" -268647,34in Ultrawide Monitor,1,379.99,10/10/19 21:40,"4 Washington St, San Francisco, CA 94016" -268648,27in FHD Monitor,1,149.99,10/03/19 11:55,"96 South St, Atlanta, GA 30301" -268649,AA Batteries (4-pack),1,3.84,10/07/19 17:27,"209 5th St, New York City, NY 10001" -268650,Apple Airpods Headphones,1,150,10/28/19 13:50,"893 6th St, Boston, MA 02215" -268651,Apple Airpods Headphones,1,150,10/05/19 10:05,"477 14th St, Boston, MA 02215" -268652,Wired Headphones,1,11.99,10/05/19 22:33,"402 13th St, Los Angeles, CA 90001" -268653,Google Phone,1,600,10/08/19 08:29,"331 Elm St, Los Angeles, CA 90001" -268654,Apple Airpods Headphones,1,150,10/31/19 13:59,"970 River St, Austin, TX 73301" -268655,27in 4K Gaming Monitor,1,389.99,10/31/19 12:05,"812 Meadow St, Seattle, WA 98101" -268656,Flatscreen TV,1,300,10/14/19 18:24,"373 Walnut St, Los Angeles, CA 90001" -268657,Lightning Charging Cable,1,14.95,10/10/19 15:26,"129 Park St, Los Angeles, CA 90001" -268658,34in Ultrawide Monitor,1,379.99,10/22/19 17:13,"912 Washington St, Los Angeles, CA 90001" -268659,27in FHD Monitor,1,149.99,10/27/19 21:08,"233 Washington St, New York City, NY 10001" -268660,27in FHD Monitor,1,149.99,10/22/19 23:01,"575 Park St, Dallas, TX 75001" -268661,Apple Airpods Headphones,1,150,10/22/19 19:44,"79 Johnson St, San Francisco, CA 94016" -268662,Wired Headphones,1,11.99,10/14/19 10:45,"462 9th St, Boston, MA 02215" -268663,AA Batteries (4-pack),2,3.84,10/07/19 14:08,"961 4th St, San Francisco, CA 94016" -268664,AAA Batteries (4-pack),1,2.99,10/04/19 13:15,"782 Ridge St, Dallas, TX 75001" -268665,USB-C Charging Cable,1,11.95,10/27/19 15:46,"661 Spruce St, New York City, NY 10001" -268666,USB-C Charging Cable,1,11.95,10/03/19 10:33,"959 8th St, New York City, NY 10001" -268667,Apple Airpods Headphones,1,150,10/05/19 09:18,"974 Chestnut St, New York City, NY 10001" -268668,AA Batteries (4-pack),1,3.84,10/03/19 13:04,"228 Jackson St, San Francisco, CA 94016" -268669,27in FHD Monitor,1,149.99,10/19/19 14:10,"877 Dogwood St, Boston, MA 02215" -268670,AA Batteries (4-pack),1,3.84,10/23/19 10:46,"380 Lincoln St, Los Angeles, CA 90001" -268671,AAA Batteries (4-pack),2,2.99,10/27/19 14:20,"200 4th St, Boston, MA 02215" -268672,Apple Airpods Headphones,1,150,10/18/19 09:50,"840 2nd St, Dallas, TX 75001" -268673,USB-C Charging Cable,1,11.95,10/18/19 21:04,"21 Jefferson St, New York City, NY 10001" -268674,Wired Headphones,1,11.99,10/23/19 09:54,"244 11th St, Los Angeles, CA 90001" -268675,AAA Batteries (4-pack),1,2.99,10/05/19 17:35,"880 West St, San Francisco, CA 94016" -268676,USB-C Charging Cable,1,11.95,10/26/19 11:47,"759 Walnut St, Los Angeles, CA 90001" -268677,iPhone,1,700,10/26/19 23:52,"364 Maple St, Atlanta, GA 30301" -268678,USB-C Charging Cable,1,11.95,10/24/19 21:16,"319 14th St, Los Angeles, CA 90001" -268679,USB-C Charging Cable,2,11.95,10/01/19 10:17,"59 Center St, Seattle, WA 98101" -268680,Bose SoundSport Headphones,1,99.99,10/12/19 22:57,"453 Jefferson St, San Francisco, CA 94016" -268681,Bose SoundSport Headphones,1,99.99,10/31/19 15:22,"690 Hickory St, Dallas, TX 75001" -268682,Vareebadd Phone,1,400,10/22/19 13:11,"55 Highland St, Seattle, WA 98101" -268683,Apple Airpods Headphones,1,150,10/23/19 14:48,"780 1st St, Atlanta, GA 30301" -268684,34in Ultrawide Monitor,1,379.99,10/21/19 22:35,"881 13th St, Dallas, TX 75001" -268684,USB-C Charging Cable,1,11.95,10/21/19 22:35,"881 13th St, Dallas, TX 75001" -268685,Apple Airpods Headphones,1,150,10/17/19 10:38,"226 10th St, Portland, OR 97035" -268686,Bose SoundSport Headphones,1,99.99,10/09/19 03:48,"336 Church St, Portland, OR 97035" -268687,Bose SoundSport Headphones,1,99.99,10/06/19 13:08,"870 6th St, San Francisco, CA 94016" -268688,USB-C Charging Cable,1,11.95,10/24/19 09:11,"956 13th St, Portland, ME 04101" -268689,USB-C Charging Cable,2,11.95,10/28/19 15:06,"732 10th St, Dallas, TX 75001" -268690,Apple Airpods Headphones,1,150,10/02/19 19:45,"637 Maple St, San Francisco, CA 94016" -268691,USB-C Charging Cable,1,11.95,10/16/19 09:44,"381 West St, New York City, NY 10001" -268692,USB-C Charging Cable,1,11.95,10/24/19 16:01,"294 Main St, Atlanta, GA 30301" -268693,Google Phone,1,600,10/16/19 21:01,"351 Willow St, New York City, NY 10001" -268693,Wired Headphones,1,11.99,10/16/19 21:01,"351 Willow St, New York City, NY 10001" -268694,USB-C Charging Cable,1,11.95,10/02/19 13:03,"63 Cedar St, Los Angeles, CA 90001" -268695,USB-C Charging Cable,1,11.95,10/17/19 09:44,"957 Hill St, Los Angeles, CA 90001" -268696,AAA Batteries (4-pack),1,2.99,10/10/19 23:22,"969 Spruce St, Los Angeles, CA 90001" -268697,Wired Headphones,3,11.99,10/01/19 16:02,"734 8th St, New York City, NY 10001" -268698,Bose SoundSport Headphones,1,99.99,10/15/19 20:58,"91 Forest St, San Francisco, CA 94016" -268699,iPhone,1,700,10/13/19 09:02,"468 South St, Seattle, WA 98101" -268700,Google Phone,1,600,10/15/19 19:06,"482 1st St, Seattle, WA 98101" -268700,Bose SoundSport Headphones,1,99.99,10/15/19 19:06,"482 1st St, Seattle, WA 98101" -268701,AAA Batteries (4-pack),4,2.99,10/28/19 16:33,"493 Center St, San Francisco, CA 94016" -268702,Lightning Charging Cable,1,14.95,10/05/19 19:53,"149 Willow St, Dallas, TX 75001" -268703,Lightning Charging Cable,1,14.95,10/07/19 08:38,"304 13th St, New York City, NY 10001" -268704,Wired Headphones,1,11.99,10/06/19 13:09,"473 Dogwood St, Atlanta, GA 30301" -268705,Vareebadd Phone,1,400,10/02/19 19:55,"487 Sunset St, Boston, MA 02215" -268705,USB-C Charging Cable,1,11.95,10/02/19 19:55,"487 Sunset St, Boston, MA 02215" -268706,27in 4K Gaming Monitor,1,389.99,10/09/19 12:01,"50 5th St, Atlanta, GA 30301" -268707,Apple Airpods Headphones,1,150,10/02/19 17:32,"864 6th St, San Francisco, CA 94016" -268708,Lightning Charging Cable,1,14.95,10/12/19 08:57,"578 North St, New York City, NY 10001" -268709,AAA Batteries (4-pack),1,2.99,10/09/19 16:22,"996 Sunset St, Boston, MA 02215" -268710,Lightning Charging Cable,1,14.95,10/01/19 18:15,"112 8th St, New York City, NY 10001" -268711,20in Monitor,1,109.99,10/05/19 22:33,"356 West St, New York City, NY 10001" -268712,AAA Batteries (4-pack),1,2.99,10/27/19 13:49,"704 Center St, Los Angeles, CA 90001" -268713,Lightning Charging Cable,1,14.95,10/31/19 11:31,"600 Lincoln St, Boston, MA 02215" -268714,USB-C Charging Cable,1,11.95,10/24/19 17:15,"58 Cherry St, New York City, NY 10001" -268715,AAA Batteries (4-pack),1,2.99,10/25/19 12:01,"141 Highland St, Boston, MA 02215" -268716,AA Batteries (4-pack),1,3.84,10/17/19 17:35,"271 Center St, Los Angeles, CA 90001" -268717,Vareebadd Phone,1,400,10/08/19 14:03,"384 West St, Los Angeles, CA 90001" -268718,AA Batteries (4-pack),1,3.84,10/04/19 10:54,"531 Jefferson St, Los Angeles, CA 90001" -268719,iPhone,1,700,10/02/19 19:42,"530 Madison St, San Francisco, CA 94016" -268720,AA Batteries (4-pack),1,3.84,10/15/19 18:14,"549 12th St, San Francisco, CA 94016" -268721,Lightning Charging Cable,1,14.95,10/19/19 18:07,"251 Lincoln St, Boston, MA 02215" -268722,AA Batteries (4-pack),1,3.84,10/30/19 15:50,"597 Hickory St, Boston, MA 02215" -268723,Lightning Charging Cable,1,14.95,10/05/19 03:34,"259 Ridge St, Portland, OR 97035" -268724,AA Batteries (4-pack),1,3.84,10/15/19 22:52,"357 Main St, Austin, TX 73301" -268725,ThinkPad Laptop,1,999.99,10/25/19 16:57,"173 10th St, Atlanta, GA 30301" -268726,Flatscreen TV,1,300,10/04/19 12:15,"606 10th St, San Francisco, CA 94016" -268727,20in Monitor,1,109.99,10/15/19 22:52,"164 Dogwood St, Boston, MA 02215" -268728,Apple Airpods Headphones,1,150,10/16/19 01:28,"230 12th St, Los Angeles, CA 90001" -268729,Bose SoundSport Headphones,1,99.99,10/26/19 16:05,"457 Main St, Boston, MA 02215" -,,,,, -268730,USB-C Charging Cable,1,11.95,10/17/19 12:36,"83 Meadow St, Boston, MA 02215" -268731,Lightning Charging Cable,1,14.95,10/09/19 08:23,"649 West St, Austin, TX 73301" -268732,Lightning Charging Cable,1,14.95,10/20/19 21:01,"603 West St, Boston, MA 02215" -268733,Wired Headphones,1,11.99,10/12/19 12:50,"668 11th St, Atlanta, GA 30301" -268734,USB-C Charging Cable,1,11.95,10/06/19 19:46,"274 West St, New York City, NY 10001" -268735,20in Monitor,1,109.99,10/13/19 18:11,"120 Cedar St, Boston, MA 02215" -268736,AAA Batteries (4-pack),2,2.99,10/17/19 14:39,"144 Jackson St, New York City, NY 10001" -268737,Wired Headphones,1,11.99,10/24/19 15:17,"198 5th St, San Francisco, CA 94016" -268738,Lightning Charging Cable,1,14.95,10/18/19 20:43,"95 Jackson St, San Francisco, CA 94016" -268739,27in 4K Gaming Monitor,1,389.99,10/05/19 16:57,"856 Dogwood St, San Francisco, CA 94016" -268740,Lightning Charging Cable,1,14.95,10/28/19 12:51,"310 Sunset St, Seattle, WA 98101" -268741,AAA Batteries (4-pack),1,2.99,10/15/19 21:48,"229 Hill St, Los Angeles, CA 90001" -268742,AA Batteries (4-pack),1,3.84,10/18/19 19:41,"882 River St, San Francisco, CA 94016" -268742,Google Phone,1,600,10/18/19 19:41,"882 River St, San Francisco, CA 94016" -268743,Wired Headphones,1,11.99,10/30/19 18:54,"372 14th St, Boston, MA 02215" -268744,AA Batteries (4-pack),4,3.84,10/17/19 17:53,"625 6th St, Dallas, TX 75001" -268745,USB-C Charging Cable,1,11.95,10/03/19 14:29,"147 8th St, Austin, TX 73301" -268746,Apple Airpods Headphones,1,150,10/24/19 10:31,"244 11th St, Los Angeles, CA 90001" -268747,27in FHD Monitor,1,149.99,10/24/19 13:32,"781 Center St, Seattle, WA 98101" -268748,34in Ultrawide Monitor,1,379.99,10/31/19 13:33,"727 Dogwood St, Dallas, TX 75001" -268749,AAA Batteries (4-pack),4,2.99,10/26/19 10:16,"177 8th St, San Francisco, CA 94016" -268750,USB-C Charging Cable,1,11.95,10/03/19 16:47,"200 7th St, San Francisco, CA 94016" -268751,Bose SoundSport Headphones,1,99.99,10/14/19 23:25,"639 Highland St, San Francisco, CA 94016" -268752,Macbook Pro Laptop,1,1700,10/29/19 10:55,"126 Wilson St, Dallas, TX 75001" -268753,iPhone,1,700,10/02/19 23:17,"375 9th St, New York City, NY 10001" -268753,Apple Airpods Headphones,1,150,10/02/19 23:17,"375 9th St, New York City, NY 10001" -268754,AAA Batteries (4-pack),2,2.99,10/07/19 18:07,"864 14th St, San Francisco, CA 94016" -268755,27in FHD Monitor,1,149.99,10/16/19 23:35,"802 Cherry St, Los Angeles, CA 90001" -268756,27in FHD Monitor,1,149.99,10/01/19 20:28,"791 Wilson St, Los Angeles, CA 90001" -268757,USB-C Charging Cable,1,11.95,10/12/19 14:27,"615 Willow St, Dallas, TX 75001" -268758,27in FHD Monitor,1,149.99,10/06/19 21:55,"422 Center St, Los Angeles, CA 90001" -268759,AAA Batteries (4-pack),1,2.99,10/28/19 07:53,"911 Spruce St, Boston, MA 02215" -268760,AA Batteries (4-pack),2,3.84,10/25/19 12:54,"26 Main St, San Francisco, CA 94016" -268761,Wired Headphones,1,11.99,10/11/19 17:27,"846 Jefferson St, San Francisco, CA 94016" -268762,Wired Headphones,1,11.99,10/10/19 21:10,"88 1st St, Atlanta, GA 30301" -268763,Macbook Pro Laptop,1,1700,10/08/19 20:48,"87 2nd St, Dallas, TX 75001" -268764,AAA Batteries (4-pack),2,2.99,10/09/19 17:27,"788 14th St, Seattle, WA 98101" -268765,Bose SoundSport Headphones,1,99.99,10/29/19 03:16,"226 14th St, Los Angeles, CA 90001" -268766,Bose SoundSport Headphones,1,99.99,10/29/19 18:21,"543 2nd St, San Francisco, CA 94016" -268767,Bose SoundSport Headphones,1,99.99,10/10/19 22:19,"948 South St, Portland, OR 97035" -268768,Wired Headphones,1,11.99,10/18/19 17:01,"426 7th St, San Francisco, CA 94016" -268769,Apple Airpods Headphones,1,150,10/29/19 13:51,"527 11th St, Dallas, TX 75001" -268770,iPhone,1,700,10/12/19 12:59,"833 Jefferson St, Portland, OR 97035" -268770,Wired Headphones,1,11.99,10/12/19 12:59,"833 Jefferson St, Portland, OR 97035" -268771,AAA Batteries (4-pack),1,2.99,10/27/19 08:54,"578 Center St, New York City, NY 10001" -268772,Wired Headphones,2,11.99,10/07/19 10:07,"357 11th St, Portland, OR 97035" -268773,USB-C Charging Cable,1,11.95,10/15/19 11:35,"278 Highland St, New York City, NY 10001" -268774,Bose SoundSport Headphones,1,99.99,10/31/19 12:21,"389 Forest St, Los Angeles, CA 90001" -268775,AA Batteries (4-pack),1,3.84,10/10/19 18:20,"280 Hill St, Los Angeles, CA 90001" -,,,,, -268776,Lightning Charging Cable,1,14.95,10/18/19 09:31,"798 Church St, Dallas, TX 75001" -268777,Bose SoundSport Headphones,1,99.99,10/11/19 14:33,"493 Maple St, Portland, OR 97035" -268778,AAA Batteries (4-pack),2,2.99,10/21/19 21:52,"559 4th St, Austin, TX 73301" -268779,ThinkPad Laptop,1,999.99,10/15/19 21:46,"31 5th St, New York City, NY 10001" -268780,AAA Batteries (4-pack),2,2.99,10/17/19 11:52,"81 Cedar St, New York City, NY 10001" -268781,USB-C Charging Cable,1,11.95,10/17/19 01:30,"413 9th St, Los Angeles, CA 90001" -268782,Bose SoundSport Headphones,2,99.99,10/30/19 19:12,"591 Jackson St, Portland, ME 04101" -268783,AAA Batteries (4-pack),2,2.99,10/22/19 10:54,"83 5th St, San Francisco, CA 94016" -268784,AAA Batteries (4-pack),1,2.99,10/03/19 22:17,"954 7th St, San Francisco, CA 94016" -268785,Macbook Pro Laptop,1,1700,10/11/19 22:26,"138 Madison St, Dallas, TX 75001" -268786,Lightning Charging Cable,1,14.95,10/08/19 15:42,"134 Chestnut St, Seattle, WA 98101" -268787,27in 4K Gaming Monitor,1,389.99,10/02/19 09:30,"558 14th St, Portland, OR 97035" -268788,AAA Batteries (4-pack),1,2.99,10/08/19 14:38,"651 Main St, Austin, TX 73301" -268789,Wired Headphones,1,11.99,10/02/19 18:26,"497 11th St, San Francisco, CA 94016" -268790,AA Batteries (4-pack),1,3.84,10/05/19 10:44,"611 Cedar St, San Francisco, CA 94016" -268791,Wired Headphones,1,11.99,10/09/19 19:28,"999 North St, San Francisco, CA 94016" -268792,Wired Headphones,1,11.99,10/11/19 14:45,"835 Hill St, Dallas, TX 75001" -268793,AAA Batteries (4-pack),1,2.99,10/25/19 21:49,"322 Ridge St, Seattle, WA 98101" -268794,20in Monitor,1,109.99,10/11/19 12:10,"393 Dogwood St, Los Angeles, CA 90001" -268795,USB-C Charging Cable,1,11.95,10/07/19 13:39,"605 13th St, San Francisco, CA 94016" -268796,Apple Airpods Headphones,1,150,10/06/19 22:17,"879 Cherry St, Los Angeles, CA 90001" -268797,Lightning Charging Cable,1,14.95,10/20/19 17:46,"485 Main St, San Francisco, CA 94016" -268798,Lightning Charging Cable,1,14.95,10/17/19 17:59,"830 Elm St, Los Angeles, CA 90001" -268799,Apple Airpods Headphones,1,150,10/15/19 00:52,"795 7th St, Los Angeles, CA 90001" -268800,Wired Headphones,1,11.99,10/30/19 11:17,"249 10th St, San Francisco, CA 94016" -268801,Macbook Pro Laptop,1,1700,10/27/19 13:28,"95 Sunset St, Dallas, TX 75001" -268802,AAA Batteries (4-pack),2,2.99,10/26/19 16:16,"244 8th St, New York City, NY 10001" -268803,USB-C Charging Cable,1,11.95,10/04/19 19:25,"861 North St, Boston, MA 02215" -268804,27in 4K Gaming Monitor,1,389.99,10/28/19 12:58,"562 Chestnut St, Atlanta, GA 30301" -268805,Wired Headphones,1,11.99,10/30/19 23:47,"916 Lakeview St, Boston, MA 02215" -268806,USB-C Charging Cable,1,11.95,10/26/19 02:10,"445 Elm St, Boston, MA 02215" -268807,Lightning Charging Cable,1,14.95,10/28/19 23:36,"417 7th St, Los Angeles, CA 90001" -268808,Google Phone,1,600,10/02/19 19:54,"36 Church St, Boston, MA 02215" -268809,AA Batteries (4-pack),1,3.84,10/08/19 09:12,"592 10th St, New York City, NY 10001" -268810,27in 4K Gaming Monitor,1,389.99,10/27/19 20:32,"23 9th St, San Francisco, CA 94016" -268811,Apple Airpods Headphones,1,150,10/20/19 16:33,"852 Elm St, Seattle, WA 98101" -268812,Lightning Charging Cable,2,14.95,10/01/19 12:04,"517 Washington St, Los Angeles, CA 90001" -268813,Apple Airpods Headphones,1,150,10/24/19 14:17,"907 14th St, New York City, NY 10001" -268814,AA Batteries (4-pack),2,3.84,10/18/19 17:38,"58 5th St, Portland, OR 97035" -268815,iPhone,1,700,10/27/19 20:21,"159 4th St, New York City, NY 10001" -268816,Apple Airpods Headphones,1,150,10/15/19 06:21,"965 Willow St, Los Angeles, CA 90001" -268817,27in FHD Monitor,1,149.99,10/19/19 14:55,"677 Hill St, Los Angeles, CA 90001" -268818,USB-C Charging Cable,2,11.95,10/02/19 20:09,"740 13th St, New York City, NY 10001" -268819,USB-C Charging Cable,1,11.95,10/16/19 19:30,"132 Meadow St, Los Angeles, CA 90001" -268820,USB-C Charging Cable,1,11.95,10/05/19 18:32,"619 Forest St, Austin, TX 73301" -268821,Wired Headphones,1,11.99,10/22/19 11:36,"941 13th St, Austin, TX 73301" -268822,ThinkPad Laptop,1,999.99,10/17/19 15:22,"229 Cedar St, San Francisco, CA 94016" -268823,Bose SoundSport Headphones,1,99.99,10/16/19 18:50,"418 River St, Dallas, TX 75001" -268824,Wired Headphones,1,11.99,10/20/19 13:53,"901 West St, San Francisco, CA 94016" -268825,AAA Batteries (4-pack),4,2.99,10/18/19 14:22,"956 Dogwood St, San Francisco, CA 94016" -268826,Apple Airpods Headphones,1,150,10/19/19 10:40,"458 8th St, Dallas, TX 75001" -268826,Bose SoundSport Headphones,1,99.99,10/19/19 10:40,"458 8th St, Dallas, TX 75001" -268827,USB-C Charging Cable,1,11.95,10/11/19 13:30,"843 Madison St, Atlanta, GA 30301" -268827,Lightning Charging Cable,1,14.95,10/11/19 13:30,"843 Madison St, Atlanta, GA 30301" -268828,Bose SoundSport Headphones,1,99.99,10/08/19 17:06,"755 14th St, New York City, NY 10001" -268829,iPhone,1,700,10/20/19 21:10,"344 South St, Boston, MA 02215" -268830,Bose SoundSport Headphones,1,99.99,10/28/19 08:39,"22 Park St, Seattle, WA 98101" -268831,AAA Batteries (4-pack),1,2.99,10/18/19 12:05,"796 13th St, Seattle, WA 98101" -268832,AA Batteries (4-pack),1,3.84,10/15/19 17:39,"833 Church St, New York City, NY 10001" -268833,AAA Batteries (4-pack),1,2.99,10/28/19 19:30,"773 7th St, New York City, NY 10001" -268834,USB-C Charging Cable,1,11.95,10/11/19 07:38,"66 Willow St, San Francisco, CA 94016" -268835,Google Phone,1,600,10/05/19 20:55,"89 Lake St, San Francisco, CA 94016" -268835,USB-C Charging Cable,1,11.95,10/05/19 20:55,"89 Lake St, San Francisco, CA 94016" -268836,Wired Headphones,1,11.99,10/11/19 12:38,"599 Jefferson St, New York City, NY 10001" -268837,AA Batteries (4-pack),2,3.84,10/02/19 15:53,"215 6th St, Atlanta, GA 30301" -268838,Apple Airpods Headphones,1,150,10/28/19 15:15,"427 North St, Seattle, WA 98101" -268839,Wired Headphones,1,11.99,10/21/19 21:19,"770 5th St, Seattle, WA 98101" -268840,AAA Batteries (4-pack),3,2.99,10/08/19 13:15,"751 5th St, Los Angeles, CA 90001" -268841,AAA Batteries (4-pack),1,2.99,10/31/19 11:17,"775 Meadow St, Dallas, TX 75001" -268842,Flatscreen TV,1,300,10/11/19 16:31,"468 4th St, New York City, NY 10001" -268843,AAA Batteries (4-pack),1,2.99,10/01/19 07:08,"234 1st St, New York City, NY 10001" -268844,Apple Airpods Headphones,1,150,10/31/19 11:38,"442 Highland St, Boston, MA 02215" -268845,AA Batteries (4-pack),1,3.84,10/29/19 16:32,"151 River St, Portland, OR 97035" -268846,USB-C Charging Cable,1,11.95,10/21/19 22:14,"429 9th St, Dallas, TX 75001" -268847,USB-C Charging Cable,1,11.95,10/22/19 07:24,"148 Main St, Seattle, WA 98101" -268848,AAA Batteries (4-pack),1,2.99,10/26/19 16:51,"343 South St, San Francisco, CA 94016" -268849,Lightning Charging Cable,1,14.95,10/02/19 21:05,"632 Highland St, Los Angeles, CA 90001" -268850,Bose SoundSport Headphones,1,99.99,10/12/19 11:33,"328 Cedar St, Seattle, WA 98101" -268851,AAA Batteries (4-pack),1,2.99,10/25/19 09:07,"643 Hickory St, Seattle, WA 98101" -268852,Apple Airpods Headphones,1,150,10/01/19 21:43,"919 12th St, Boston, MA 02215" -268853,27in 4K Gaming Monitor,1,389.99,10/22/19 17:19,"70 7th St, Atlanta, GA 30301" -268854,AAA Batteries (4-pack),1,2.99,10/05/19 14:15,"152 Jefferson St, Austin, TX 73301" -268855,AAA Batteries (4-pack),1,2.99,10/12/19 19:05,"427 Wilson St, San Francisco, CA 94016" -268856,Bose SoundSport Headphones,1,99.99,10/13/19 12:36,"749 14th St, Los Angeles, CA 90001" -268857,Bose SoundSport Headphones,1,99.99,10/04/19 07:46,"212 South St, Los Angeles, CA 90001" -268858,20in Monitor,1,109.99,10/16/19 19:09,"759 South St, Atlanta, GA 30301" -268859,Lightning Charging Cable,1,14.95,10/16/19 13:58,"432 4th St, New York City, NY 10001" -268860,ThinkPad Laptop,1,999.99,10/17/19 09:37,"851 Highland St, Atlanta, GA 30301" -268861,AA Batteries (4-pack),1,3.84,10/09/19 23:17,"985 Wilson St, San Francisco, CA 94016" -268862,AAA Batteries (4-pack),1,2.99,10/03/19 10:05,"686 Lake St, San Francisco, CA 94016" -268863,USB-C Charging Cable,1,11.95,10/15/19 13:57,"42 Meadow St, San Francisco, CA 94016" -268864,AAA Batteries (4-pack),1,2.99,10/21/19 19:13,"274 Willow St, Boston, MA 02215" -268865,USB-C Charging Cable,1,11.95,10/30/19 12:58,"244 Sunset St, San Francisco, CA 94016" -268866,AA Batteries (4-pack),1,3.84,10/09/19 07:02,"865 Hickory St, San Francisco, CA 94016" -268867,Lightning Charging Cable,1,14.95,10/01/19 17:36,"283 North St, San Francisco, CA 94016" -268868,Wired Headphones,1,11.99,10/05/19 18:38,"346 Sunset St, San Francisco, CA 94016" -268869,AAA Batteries (4-pack),1,2.99,10/10/19 14:51,"676 South St, San Francisco, CA 94016" -268870,20in Monitor,1,109.99,10/04/19 13:08,"37 Church St, Dallas, TX 75001" -268871,Vareebadd Phone,1,400,10/27/19 22:16,"473 14th St, San Francisco, CA 94016" -268872,Wired Headphones,1,11.99,10/22/19 02:43,"38 Lake St, San Francisco, CA 94016" -268873,USB-C Charging Cable,1,11.95,10/08/19 08:04,"585 2nd St, Los Angeles, CA 90001" -268874,AA Batteries (4-pack),1,3.84,10/17/19 19:50,"260 Hill St, New York City, NY 10001" -268875,Lightning Charging Cable,1,14.95,10/04/19 19:29,"99 Forest St, Boston, MA 02215" -268876,Apple Airpods Headphones,1,150,10/29/19 10:55,"366 Pine St, Los Angeles, CA 90001" -268877,AA Batteries (4-pack),2,3.84,10/10/19 20:17,"972 River St, San Francisco, CA 94016" -268878,Bose SoundSport Headphones,1,99.99,10/21/19 11:34,"119 North St, Dallas, TX 75001" -268879,Lightning Charging Cable,1,14.95,10/23/19 16:01,"778 7th St, San Francisco, CA 94016" -268879,20in Monitor,1,109.99,10/23/19 16:01,"778 7th St, San Francisco, CA 94016" -268880,Lightning Charging Cable,1,14.95,10/22/19 12:35,"63 7th St, Boston, MA 02215" -268881,ThinkPad Laptop,1,999.99,10/19/19 23:52,"84 Hill St, Austin, TX 73301" -268882,AA Batteries (4-pack),2,3.84,10/25/19 17:37,"955 6th St, San Francisco, CA 94016" -268883,Wired Headphones,1,11.99,10/31/19 12:40,"732 North St, Austin, TX 73301" -268884,Bose SoundSport Headphones,1,99.99,10/15/19 17:58,"154 5th St, San Francisco, CA 94016" -268885,AAA Batteries (4-pack),1,2.99,10/30/19 11:54,"540 Lakeview St, New York City, NY 10001" -268886,Apple Airpods Headphones,1,150,10/05/19 16:59,"630 Elm St, Seattle, WA 98101" -268887,Apple Airpods Headphones,1,150,10/04/19 12:37,"534 Walnut St, San Francisco, CA 94016" -268888,Macbook Pro Laptop,1,1700,10/14/19 21:40,"537 Church St, Seattle, WA 98101" -268889,AA Batteries (4-pack),1,3.84,10/17/19 21:54,"150 7th St, Boston, MA 02215" -268890,27in FHD Monitor,1,149.99,10/13/19 21:19,"421 Highland St, Portland, OR 97035" -268891,USB-C Charging Cable,1,11.95,10/17/19 12:57,"737 Sunset St, Boston, MA 02215" -268892,Apple Airpods Headphones,1,150,10/04/19 08:37,"263 6th St, Atlanta, GA 30301" -268893,AA Batteries (4-pack),2,3.84,10/08/19 19:50,"611 Meadow St, Portland, ME 04101" -268894,AA Batteries (4-pack),1,3.84,10/07/19 06:15,"597 8th St, San Francisco, CA 94016" -268895,ThinkPad Laptop,1,999.99,10/23/19 16:43,"891 Cedar St, Austin, TX 73301" -268896,Lightning Charging Cable,1,14.95,10/05/19 22:23,"859 2nd St, Portland, OR 97035" -268897,Wired Headphones,1,11.99,10/06/19 11:37,"132 West St, Dallas, TX 75001" -268898,AAA Batteries (4-pack),1,2.99,11/01/19 00:24,"654 12th St, New York City, NY 10001" -268899,ThinkPad Laptop,1,999.99,10/26/19 21:06,"194 Cedar St, Austin, TX 73301" -268900,Lightning Charging Cable,1,14.95,10/25/19 23:45,"771 Meadow St, San Francisco, CA 94016" -268901,AA Batteries (4-pack),1,3.84,10/24/19 14:23,"335 Jackson St, New York City, NY 10001" -268902,27in 4K Gaming Monitor,1,389.99,10/30/19 17:08,"408 River St, Seattle, WA 98101" -268903,AA Batteries (4-pack),1,3.84,10/27/19 11:07,"879 Elm St, Dallas, TX 75001" -268904,AAA Batteries (4-pack),1,2.99,10/29/19 00:13,"867 Hickory St, Boston, MA 02215" -268905,AA Batteries (4-pack),1,3.84,10/11/19 12:55,"37 11th St, Dallas, TX 75001" -268906,AAA Batteries (4-pack),2,2.99,10/09/19 11:28,"777 10th St, San Francisco, CA 94016" -268907,AA Batteries (4-pack),2,3.84,10/29/19 20:27,"524 Jackson St, Atlanta, GA 30301" -268908,USB-C Charging Cable,1,11.95,10/20/19 18:27,"456 6th St, Portland, OR 97035" -268909,AAA Batteries (4-pack),7,2.99,10/03/19 15:30,"744 North St, Austin, TX 73301" -268910,Lightning Charging Cable,1,14.95,10/03/19 18:17,"864 Johnson St, Boston, MA 02215" -268911,27in 4K Gaming Monitor,1,389.99,10/29/19 03:04,"279 Wilson St, Atlanta, GA 30301" -268912,Google Phone,1,600,10/12/19 22:45,"8 9th St, Boston, MA 02215" -268912,Bose SoundSport Headphones,1,99.99,10/12/19 22:45,"8 9th St, Boston, MA 02215" -268913,27in FHD Monitor,1,149.99,10/29/19 16:02,"733 7th St, Boston, MA 02215" -268914,AAA Batteries (4-pack),2,2.99,10/25/19 20:03,"987 North St, Seattle, WA 98101" -268915,Flatscreen TV,1,300,10/23/19 10:24,"216 Dogwood St, Atlanta, GA 30301" -268916,Google Phone,1,600,10/16/19 20:27,"612 Willow St, Portland, OR 97035" -268917,27in 4K Gaming Monitor,1,389.99,10/27/19 16:22,"191 5th St, New York City, NY 10001" -268918,Lightning Charging Cable,1,14.95,10/01/19 20:57,"637 South St, Los Angeles, CA 90001" -268919,Bose SoundSport Headphones,1,99.99,10/26/19 00:03,"310 South St, Los Angeles, CA 90001" -268920,Lightning Charging Cable,1,14.95,10/20/19 17:35,"751 Pine St, Portland, OR 97035" -268921,AA Batteries (4-pack),2,3.84,10/03/19 11:12,"984 Pine St, Los Angeles, CA 90001" -268922,27in 4K Gaming Monitor,1,389.99,10/29/19 10:14,"570 Madison St, New York City, NY 10001" -268923,AAA Batteries (4-pack),1,2.99,10/17/19 01:52,"833 Hill St, Austin, TX 73301" -268924,Wired Headphones,1,11.99,10/05/19 10:40,"19 Jefferson St, Los Angeles, CA 90001" -268925,AAA Batteries (4-pack),1,2.99,10/02/19 14:07,"953 11th St, Portland, OR 97035" -268926,27in FHD Monitor,1,149.99,10/28/19 23:14,"833 River St, Los Angeles, CA 90001" -268927,iPhone,1,700,10/24/19 12:31,"952 Main St, San Francisco, CA 94016" -268928,Lightning Charging Cable,1,14.95,10/20/19 21:16,"52 Center St, Austin, TX 73301" -268929,Lightning Charging Cable,1,14.95,10/28/19 21:52,"133 1st St, Atlanta, GA 30301" -268930,AA Batteries (4-pack),1,3.84,10/12/19 22:50,"713 Wilson St, Los Angeles, CA 90001" -268931,Apple Airpods Headphones,1,150,10/23/19 10:06,"920 Cherry St, Portland, ME 04101" -268932,34in Ultrawide Monitor,1,379.99,10/15/19 00:10,"46 Meadow St, Seattle, WA 98101" -268933,Lightning Charging Cable,1,14.95,10/06/19 19:38,"355 Madison St, San Francisco, CA 94016" -268934,USB-C Charging Cable,1,11.95,10/07/19 12:40,"437 1st St, San Francisco, CA 94016" -268935,Bose SoundSport Headphones,1,99.99,10/16/19 18:56,"920 5th St, New York City, NY 10001" -268936,AAA Batteries (4-pack),1,2.99,10/27/19 12:38,"367 7th St, Boston, MA 02215" -268937,Apple Airpods Headphones,1,150,10/08/19 19:07,"192 Cherry St, San Francisco, CA 94016" -268938,AA Batteries (4-pack),3,3.84,10/08/19 10:41,"77 Walnut St, New York City, NY 10001" -268939,Lightning Charging Cable,1,14.95,10/13/19 18:46,"528 14th St, Austin, TX 73301" -268940,AAA Batteries (4-pack),1,2.99,10/30/19 21:08,"949 10th St, Los Angeles, CA 90001" -268941,Bose SoundSport Headphones,1,99.99,10/09/19 08:32,"471 Center St, Portland, OR 97035" -268942,Bose SoundSport Headphones,1,99.99,10/27/19 10:01,"188 Walnut St, Portland, OR 97035" -268943,Apple Airpods Headphones,1,150,10/09/19 14:18,"312 8th St, Portland, OR 97035" -268944,Wired Headphones,1,11.99,10/05/19 17:59,"622 Pine St, Austin, TX 73301" -268945,Lightning Charging Cable,1,14.95,10/30/19 19:05,"691 South St, Portland, OR 97035" -268946,Bose SoundSport Headphones,1,99.99,10/02/19 16:41,"752 13th St, Atlanta, GA 30301" -268947,Macbook Pro Laptop,1,1700,10/25/19 03:05,"823 River St, San Francisco, CA 94016" -268948,27in FHD Monitor,1,149.99,10/21/19 19:16,"648 14th St, San Francisco, CA 94016" -268949,Apple Airpods Headphones,1,150,10/25/19 09:46,"909 Main St, Seattle, WA 98101" -268950,AAA Batteries (4-pack),3,2.99,10/02/19 12:00,"564 9th St, Boston, MA 02215" -268951,Lightning Charging Cable,1,14.95,10/06/19 20:46,"461 Ridge St, Boston, MA 02215" -268952,Flatscreen TV,1,300,10/01/19 10:26,"249 Center St, San Francisco, CA 94016" -268953,Macbook Pro Laptop,1,1700,10/28/19 16:02,"15 River St, San Francisco, CA 94016" -268954,Apple Airpods Headphones,1,150,10/29/19 09:31,"184 1st St, Atlanta, GA 30301" -268955,AAA Batteries (4-pack),2,2.99,10/10/19 18:31,"826 Lakeview St, Dallas, TX 75001" -268956,Lightning Charging Cable,1,14.95,10/07/19 22:18,"60 Jackson St, Boston, MA 02215" -268957,USB-C Charging Cable,1,11.95,10/06/19 19:34,"243 Willow St, Los Angeles, CA 90001" -268958,AA Batteries (4-pack),1,3.84,10/26/19 13:17,"953 7th St, San Francisco, CA 94016" -268959,AAA Batteries (4-pack),1,2.99,10/13/19 21:01,"766 11th St, Atlanta, GA 30301" -268960,Google Phone,1,600,10/27/19 10:08,"50 13th St, Los Angeles, CA 90001" -268961,AA Batteries (4-pack),1,3.84,10/20/19 21:34,"281 9th St, Los Angeles, CA 90001" -268962,AAA Batteries (4-pack),1,2.99,10/25/19 11:27,"891 Church St, Atlanta, GA 30301" -268963,AAA Batteries (4-pack),1,2.99,10/07/19 19:05,"85 Elm St, Atlanta, GA 30301" -268964,AAA Batteries (4-pack),2,2.99,10/29/19 10:35,"952 Lakeview St, New York City, NY 10001" -268965,Lightning Charging Cable,1,14.95,10/02/19 19:34,"998 Adams St, New York City, NY 10001" -268966,Google Phone,1,600,10/02/19 21:46,"472 6th St, New York City, NY 10001" -268967,AA Batteries (4-pack),1,3.84,10/16/19 19:41,"829 Madison St, San Francisco, CA 94016" -268968,AA Batteries (4-pack),1,3.84,10/05/19 15:34,"358 Hickory St, San Francisco, CA 94016" -268969,Google Phone,1,600,10/21/19 19:55,"221 4th St, New York City, NY 10001" -268970,USB-C Charging Cable,1,11.95,10/15/19 19:59,"69 North St, Dallas, TX 75001" -268971,Lightning Charging Cable,1,14.95,10/09/19 00:35,"666 Sunset St, Los Angeles, CA 90001" -268972,AA Batteries (4-pack),1,3.84,10/06/19 12:12,"354 Johnson St, Seattle, WA 98101" -268973,AAA Batteries (4-pack),2,2.99,10/17/19 11:42,"388 West St, Atlanta, GA 30301" -268974,Apple Airpods Headphones,1,150,10/30/19 13:20,"598 Jackson St, Los Angeles, CA 90001" -268975,Wired Headphones,1,11.99,10/31/19 10:29,"774 10th St, San Francisco, CA 94016" -268976,AAA Batteries (4-pack),3,2.99,10/15/19 18:58,"989 6th St, Dallas, TX 75001" -268977,Lightning Charging Cable,1,14.95,10/19/19 13:03,"551 River St, San Francisco, CA 94016" -268978,Google Phone,1,600,10/26/19 18:18,"449 Meadow St, Austin, TX 73301" -268979,USB-C Charging Cable,1,11.95,10/27/19 12:10,"383 Hickory St, Atlanta, GA 30301" -268980,Apple Airpods Headphones,1,150,10/23/19 20:04,"891 Meadow St, Los Angeles, CA 90001" -268981,AA Batteries (4-pack),1,3.84,10/21/19 12:38,"109 9th St, San Francisco, CA 94016" -268982,Lightning Charging Cable,1,14.95,10/10/19 07:54,"926 Spruce St, Portland, ME 04101" -268983,USB-C Charging Cable,1,11.95,10/20/19 23:41,"318 Adams St, Portland, OR 97035" -268984,Flatscreen TV,1,300,10/06/19 14:17,"36 Maple St, Los Angeles, CA 90001" -268985,AA Batteries (4-pack),1,3.84,10/19/19 20:05,"770 Sunset St, New York City, NY 10001" -268986,27in FHD Monitor,1,149.99,10/06/19 19:21,"155 6th St, Boston, MA 02215" -268987,Lightning Charging Cable,2,14.95,10/27/19 21:44,"109 5th St, San Francisco, CA 94016" -268988,Apple Airpods Headphones,1,150,10/22/19 19:07,"222 Maple St, Portland, OR 97035" -268989,Wired Headphones,1,11.99,10/17/19 12:13,"130 Wilson St, Los Angeles, CA 90001" -268990,AA Batteries (4-pack),1,3.84,10/01/19 14:46,"39 Maple St, Los Angeles, CA 90001" -268991,AAA Batteries (4-pack),1,2.99,10/12/19 10:23,"955 Lake St, New York City, NY 10001" -268992,Bose SoundSport Headphones,1,99.99,10/29/19 19:55,"394 12th St, New York City, NY 10001" -268993,AA Batteries (4-pack),1,3.84,10/20/19 20:48,"731 Meadow St, San Francisco, CA 94016" -268994,iPhone,2,700,10/13/19 08:31,"477 4th St, Seattle, WA 98101" -268995,Apple Airpods Headphones,1,150,10/19/19 08:33,"669 South St, San Francisco, CA 94016" -268996,Macbook Pro Laptop,1,1700,10/18/19 03:03,"787 Spruce St, Portland, OR 97035" -268997,20in Monitor,1,109.99,10/17/19 11:10,"749 Pine St, Atlanta, GA 30301" -268998,AA Batteries (4-pack),2,3.84,10/30/19 14:32,"910 14th St, Boston, MA 02215" -268999,27in 4K Gaming Monitor,1,389.99,10/12/19 12:55,"368 8th St, Seattle, WA 98101" -269000,USB-C Charging Cable,1,11.95,10/14/19 23:36,"368 West St, Los Angeles, CA 90001" -269001,Apple Airpods Headphones,1,150,10/23/19 19:09,"994 Center St, Austin, TX 73301" -269002,AAA Batteries (4-pack),1,2.99,10/10/19 22:22,"462 13th St, Atlanta, GA 30301" -269003,ThinkPad Laptop,1,999.99,10/31/19 22:12,"646 Lake St, New York City, NY 10001" -269004,Lightning Charging Cable,1,14.95,10/21/19 12:01,"37 Lake St, Los Angeles, CA 90001" -269005,27in 4K Gaming Monitor,1,389.99,10/08/19 15:54,"333 Willow St, San Francisco, CA 94016" -269006,Apple Airpods Headphones,1,150,10/19/19 15:10,"578 Main St, San Francisco, CA 94016" -269007,Lightning Charging Cable,1,14.95,10/06/19 13:42,"258 9th St, San Francisco, CA 94016" -269008,Bose SoundSport Headphones,1,99.99,10/16/19 16:00,"802 Ridge St, Los Angeles, CA 90001" -269009,Lightning Charging Cable,1,14.95,10/04/19 17:51,"912 8th St, Boston, MA 02215" -269010,Wired Headphones,1,11.99,10/31/19 06:09,"942 Forest St, Seattle, WA 98101" -269011,iPhone,1,700,10/12/19 17:18,"772 13th St, Los Angeles, CA 90001" -269012,Macbook Pro Laptop,1,1700,10/29/19 19:35,"9 Lincoln St, New York City, NY 10001" -269013,Bose SoundSport Headphones,1,99.99,10/11/19 20:35,"708 Cherry St, New York City, NY 10001" -269014,Bose SoundSport Headphones,1,99.99,10/15/19 08:20,"139 Chestnut St, Portland, OR 97035" -269015,Apple Airpods Headphones,1,150,10/26/19 04:35,"607 6th St, San Francisco, CA 94016" -269016,Bose SoundSport Headphones,1,99.99,10/09/19 17:26,"374 West St, Boston, MA 02215" -269017,Apple Airpods Headphones,1,150,10/20/19 07:15,"371 1st St, Portland, OR 97035" -269018,Apple Airpods Headphones,1,150,10/16/19 12:54,"234 Dogwood St, Los Angeles, CA 90001" -269019,AAA Batteries (4-pack),1,2.99,10/30/19 11:38,"267 Lake St, Seattle, WA 98101" -269020,AAA Batteries (4-pack),2,2.99,10/25/19 15:46,"635 12th St, Portland, OR 97035" -269021,Apple Airpods Headphones,1,150,10/12/19 09:51,"198 Ridge St, Los Angeles, CA 90001" -269022,USB-C Charging Cable,1,11.95,10/07/19 05:51,"65 Lake St, San Francisco, CA 94016" -269023,20in Monitor,1,109.99,10/08/19 19:31,"508 Center St, Los Angeles, CA 90001" -269024,AA Batteries (4-pack),1,3.84,10/01/19 07:30,"570 Cherry St, Austin, TX 73301" -269025,Bose SoundSport Headphones,1,99.99,10/23/19 20:51,"239 Lake St, Portland, OR 97035" -269026,AA Batteries (4-pack),1,3.84,10/29/19 20:53,"289 Church St, Dallas, TX 75001" -269027,27in 4K Gaming Monitor,1,389.99,10/28/19 14:54,"643 Spruce St, San Francisco, CA 94016" -269028,USB-C Charging Cable,1,11.95,10/25/19 11:31,"654 Washington St, Boston, MA 02215" -269029,Google Phone,1,600,10/30/19 22:33,"362 Center St, San Francisco, CA 94016" -269030,iPhone,1,700,10/14/19 21:44,"922 Lake St, Seattle, WA 98101" -269031,AAA Batteries (4-pack),1,2.99,10/17/19 13:54,"573 Spruce St, Dallas, TX 75001" -269032,AAA Batteries (4-pack),1,2.99,10/07/19 12:47,"72 12th St, Seattle, WA 98101" -269033,Google Phone,1,600,10/30/19 00:50,"47 Hill St, Atlanta, GA 30301" -269034,AAA Batteries (4-pack),1,2.99,10/20/19 12:21,"374 Highland St, San Francisco, CA 94016" -269035,Apple Airpods Headphones,1,150,10/03/19 14:13,"648 Spruce St, New York City, NY 10001" -269036,USB-C Charging Cable,1,11.95,10/22/19 20:54,"278 12th St, New York City, NY 10001" -269037,27in 4K Gaming Monitor,1,389.99,10/22/19 19:25,"621 Spruce St, San Francisco, CA 94016" -269038,AA Batteries (4-pack),2,3.84,10/26/19 00:43,"344 Lake St, New York City, NY 10001" -269039,Bose SoundSport Headphones,1,99.99,10/03/19 18:29,"790 Sunset St, New York City, NY 10001" -269040,Bose SoundSport Headphones,1,99.99,10/27/19 17:11,"349 Chestnut St, Los Angeles, CA 90001" -269041,Lightning Charging Cable,2,14.95,10/12/19 14:32,"801 Hickory St, San Francisco, CA 94016" -269042,Wired Headphones,1,11.99,10/28/19 10:30,"895 Wilson St, Boston, MA 02215" -269043,USB-C Charging Cable,1,11.95,10/26/19 08:50,"486 2nd St, New York City, NY 10001" -269044,Wired Headphones,1,11.99,10/17/19 01:22,"575 Wilson St, Portland, ME 04101" -269045,AA Batteries (4-pack),1,3.84,10/26/19 15:56,"822 West St, San Francisco, CA 94016" -269046,AA Batteries (4-pack),2,3.84,10/25/19 11:37,"516 Sunset St, San Francisco, CA 94016" -269047,AAA Batteries (4-pack),4,2.99,10/01/19 22:07,"189 Ridge St, San Francisco, CA 94016" -269048,AAA Batteries (4-pack),2,2.99,10/08/19 19:00,"763 1st St, San Francisco, CA 94016" -269049,34in Ultrawide Monitor,1,379.99,10/15/19 14:54,"91 Adams St, New York City, NY 10001" -269050,Bose SoundSport Headphones,1,99.99,10/02/19 17:40,"601 Spruce St, Los Angeles, CA 90001" -269051,Apple Airpods Headphones,1,150,10/07/19 14:52,"887 Lincoln St, Los Angeles, CA 90001" -269052,USB-C Charging Cable,1,11.95,10/06/19 11:54,"675 Madison St, Austin, TX 73301" -269053,AAA Batteries (4-pack),1,2.99,10/23/19 16:09,"387 Cherry St, San Francisco, CA 94016" -269054,Wired Headphones,1,11.99,10/22/19 11:15,"689 Maple St, Los Angeles, CA 90001" -269055,Flatscreen TV,1,300,10/01/19 18:49,"890 Adams St, Atlanta, GA 30301" -269056,AAA Batteries (4-pack),1,2.99,10/24/19 10:57,"426 Main St, New York City, NY 10001" -269057,Lightning Charging Cable,1,14.95,10/16/19 09:43,"828 Jefferson St, San Francisco, CA 94016" -269058,Bose SoundSport Headphones,1,99.99,10/01/19 11:45,"169 Ridge St, Seattle, WA 98101" -269059,ThinkPad Laptop,1,999.99,10/04/19 17:37,"832 2nd St, Austin, TX 73301" -269060,Apple Airpods Headphones,1,150,10/15/19 15:49,"515 14th St, Los Angeles, CA 90001" -269061,27in 4K Gaming Monitor,1,389.99,10/07/19 20:08,"714 14th St, Boston, MA 02215" -269062,34in Ultrawide Monitor,1,379.99,10/28/19 20:36,"328 North St, Seattle, WA 98101" -269063,AA Batteries (4-pack),2,3.84,10/16/19 13:07,"261 13th St, San Francisco, CA 94016" -269064,27in FHD Monitor,1,149.99,10/06/19 15:57,"177 Maple St, Los Angeles, CA 90001" -269065,USB-C Charging Cable,1,11.95,10/19/19 18:14,"870 Cedar St, Seattle, WA 98101" -269066,27in FHD Monitor,1,149.99,10/29/19 15:47,"274 9th St, Boston, MA 02215" -269067,Lightning Charging Cable,1,14.95,10/31/19 14:05,"655 Spruce St, Austin, TX 73301" -269068,AA Batteries (4-pack),1,3.84,10/06/19 13:13,"221 13th St, Los Angeles, CA 90001" -269069,USB-C Charging Cable,1,11.95,10/24/19 17:15,"264 Maple St, Portland, OR 97035" -269070,20in Monitor,1,109.99,10/06/19 12:56,"190 Highland St, New York City, NY 10001" -269071,USB-C Charging Cable,1,11.95,10/31/19 06:46,"439 Wilson St, Seattle, WA 98101" -269072,AA Batteries (4-pack),3,3.84,10/20/19 13:12,"909 Park St, San Francisco, CA 94016" -269073,Lightning Charging Cable,1,14.95,10/18/19 08:19,"1 West St, Los Angeles, CA 90001" -269074,AA Batteries (4-pack),1,3.84,10/22/19 08:50,"615 Washington St, San Francisco, CA 94016" -269075,AAA Batteries (4-pack),2,2.99,10/09/19 10:51,"47 Forest St, Los Angeles, CA 90001" -269076,Wired Headphones,1,11.99,10/16/19 14:08,"826 Spruce St, Los Angeles, CA 90001" -269077,Wired Headphones,1,11.99,10/18/19 07:41,"612 Church St, Dallas, TX 75001" -269078,20in Monitor,1,109.99,10/22/19 19:02,"143 1st St, New York City, NY 10001" -269079,AA Batteries (4-pack),1,3.84,10/30/19 10:04,"45 Meadow St, Dallas, TX 75001" -269080,iPhone,1,700,10/23/19 12:19,"855 Spruce St, Boston, MA 02215" -269081,Apple Airpods Headphones,1,150,10/06/19 12:53,"667 1st St, Seattle, WA 98101" -269082,Apple Airpods Headphones,1,150,10/07/19 10:42,"434 West St, Boston, MA 02215" -269083,Flatscreen TV,1,300,10/24/19 15:27,"714 Adams St, San Francisco, CA 94016" -269084,USB-C Charging Cable,1,11.95,10/31/19 13:47,"358 North St, Dallas, TX 75001" -269085,Wired Headphones,1,11.99,10/30/19 20:45,"940 Madison St, New York City, NY 10001" -269086,Flatscreen TV,1,300,10/07/19 20:45,"348 5th St, San Francisco, CA 94016" -269087,Wired Headphones,1,11.99,10/15/19 19:33,"3 Adams St, Los Angeles, CA 90001" -269088,AA Batteries (4-pack),1,3.84,10/14/19 11:05,"279 South St, San Francisco, CA 94016" -269089,USB-C Charging Cable,1,11.95,10/20/19 11:00,"680 Lincoln St, San Francisco, CA 94016" -269090,Wired Headphones,1,11.99,10/23/19 12:46,"618 7th St, Seattle, WA 98101" -269091,Lightning Charging Cable,1,14.95,10/23/19 10:51,"208 Main St, San Francisco, CA 94016" -269092,27in 4K Gaming Monitor,1,389.99,10/06/19 15:27,"287 14th St, San Francisco, CA 94016" -269093,Wired Headphones,1,11.99,10/27/19 16:42,"715 11th St, New York City, NY 10001" -269094,Lightning Charging Cable,1,14.95,10/07/19 18:39,"11 9th St, Los Angeles, CA 90001" -269095,USB-C Charging Cable,1,11.95,10/21/19 10:58,"137 Chestnut St, Dallas, TX 75001" -269096,AAA Batteries (4-pack),2,2.99,10/30/19 11:52,"815 Willow St, Boston, MA 02215" -269097,Apple Airpods Headphones,1,150,10/25/19 18:00,"995 Madison St, Seattle, WA 98101" -269098,Lightning Charging Cable,1,14.95,10/06/19 20:31,"590 9th St, Seattle, WA 98101" -269099,Wired Headphones,1,11.99,10/31/19 12:43,"976 Cherry St, San Francisco, CA 94016" -269100,USB-C Charging Cable,2,11.95,10/05/19 18:57,"931 2nd St, Los Angeles, CA 90001" -269101,Apple Airpods Headphones,1,150,10/10/19 18:50,"575 Walnut St, New York City, NY 10001" -269102,Macbook Pro Laptop,1,1700,10/08/19 21:45,"865 Highland St, Los Angeles, CA 90001" -269103,Lightning Charging Cable,1,14.95,10/17/19 06:48,"374 Lake St, San Francisco, CA 94016" -269104,USB-C Charging Cable,1,11.95,10/21/19 21:29,"139 Pine St, San Francisco, CA 94016" -269105,AAA Batteries (4-pack),1,2.99,10/07/19 23:11,"807 Highland St, San Francisco, CA 94016" -269106,USB-C Charging Cable,1,11.95,10/12/19 20:50,"73 Sunset St, Austin, TX 73301" -269107,AAA Batteries (4-pack),2,2.99,10/12/19 22:24,"398 Ridge St, Boston, MA 02215" -269108,AA Batteries (4-pack),1,3.84,10/20/19 13:00,"325 River St, San Francisco, CA 94016" -269109,Flatscreen TV,1,300,10/07/19 16:38,"334 1st St, Atlanta, GA 30301" -269110,Macbook Pro Laptop,1,1700,10/19/19 20:21,"602 South St, Seattle, WA 98101" -269111,USB-C Charging Cable,1,11.95,10/12/19 10:13,"720 14th St, San Francisco, CA 94016" -269112,Apple Airpods Headphones,1,150,10/23/19 13:15,"36 Lake St, Atlanta, GA 30301" -269113,Macbook Pro Laptop,1,1700,10/19/19 16:13,"400 7th St, Seattle, WA 98101" -269114,Wired Headphones,1,11.99,10/23/19 16:05,"80 North St, San Francisco, CA 94016" -269114,AAA Batteries (4-pack),2,2.99,10/23/19 16:05,"80 North St, San Francisco, CA 94016" -269115,iPhone,1,700,10/28/19 22:11,"157 Spruce St, Portland, OR 97035" -269116,AAA Batteries (4-pack),1,2.99,10/19/19 20:52,"283 Lincoln St, Los Angeles, CA 90001" -269117,Apple Airpods Headphones,1,150,10/18/19 18:14,"246 West St, New York City, NY 10001" -269118,iPhone,1,700,10/02/19 11:44,"513 Lincoln St, Seattle, WA 98101" -269119,USB-C Charging Cable,1,11.95,10/20/19 11:42,"820 Dogwood St, Los Angeles, CA 90001" -269120,34in Ultrawide Monitor,1,379.99,10/23/19 14:30,"530 9th St, Boston, MA 02215" -269121,Bose SoundSport Headphones,1,99.99,10/25/19 23:05,"266 14th St, Dallas, TX 75001" -269122,AA Batteries (4-pack),1,3.84,10/13/19 21:33,"527 Wilson St, Dallas, TX 75001" -269123,Flatscreen TV,1,300,10/22/19 12:52,"745 Willow St, New York City, NY 10001" -269124,34in Ultrawide Monitor,1,379.99,10/27/19 11:42,"363 Center St, New York City, NY 10001" -269125,Lightning Charging Cable,1,14.95,10/28/19 13:06,"658 4th St, Los Angeles, CA 90001" -269126,AA Batteries (4-pack),1,3.84,10/30/19 14:44,"73 Center St, San Francisco, CA 94016" -269127,Flatscreen TV,1,300,10/22/19 12:20,"531 North St, New York City, NY 10001" -269128,AA Batteries (4-pack),1,3.84,10/16/19 15:27,"57 Spruce St, Portland, OR 97035" -269129,USB-C Charging Cable,1,11.95,10/13/19 10:28,"438 Lake St, Seattle, WA 98101" -269130,Wired Headphones,1,11.99,10/28/19 23:48,"590 1st St, Seattle, WA 98101" -269131,AAA Batteries (4-pack),1,2.99,10/19/19 19:21,"891 Dogwood St, San Francisco, CA 94016" -269132,AAA Batteries (4-pack),1,2.99,10/19/19 11:32,"816 Jefferson St, Dallas, TX 75001" -269133,USB-C Charging Cable,1,11.95,10/12/19 20:25,"101 Jackson St, Los Angeles, CA 90001" -269134,Wired Headphones,2,11.99,10/19/19 06:48,"147 Lake St, Dallas, TX 75001" -269135,Lightning Charging Cable,2,14.95,10/31/19 11:01,"547 River St, San Francisco, CA 94016" -269136,Wired Headphones,1,11.99,10/30/19 09:31,"516 Jackson St, Los Angeles, CA 90001" -269137,Google Phone,1,600,10/18/19 16:59,"569 Spruce St, Dallas, TX 75001" -269138,34in Ultrawide Monitor,1,379.99,10/14/19 14:22,"59 Willow St, New York City, NY 10001" -269139,AA Batteries (4-pack),1,3.84,10/04/19 14:24,"352 Maple St, Los Angeles, CA 90001" -269140,27in 4K Gaming Monitor,1,389.99,10/17/19 21:29,"216 12th St, Seattle, WA 98101" -269141,Lightning Charging Cable,1,14.95,10/02/19 18:07,"350 Park St, San Francisco, CA 94016" -269142,Apple Airpods Headphones,1,150,10/30/19 11:01,"892 2nd St, San Francisco, CA 94016" -269143,Google Phone,1,600,10/25/19 13:58,"176 8th St, New York City, NY 10001" -269144,27in 4K Gaming Monitor,1,389.99,10/12/19 00:07,"547 Lincoln St, Los Angeles, CA 90001" -269145,Apple Airpods Headphones,1,150,10/17/19 23:44,"147 Park St, San Francisco, CA 94016" -269146,USB-C Charging Cable,1,11.95,10/08/19 17:44,"399 Center St, Portland, ME 04101" -269147,Apple Airpods Headphones,1,150,10/25/19 17:51,"558 Highland St, San Francisco, CA 94016" -269148,AA Batteries (4-pack),1,3.84,10/06/19 00:14,"361 7th St, Dallas, TX 75001" -269149,Wired Headphones,1,11.99,10/20/19 15:12,"182 10th St, New York City, NY 10001" -269150,Macbook Pro Laptop,1,1700,10/25/19 11:16,"115 13th St, Atlanta, GA 30301" -269151,AA Batteries (4-pack),2,3.84,10/10/19 11:58,"907 Highland St, Los Angeles, CA 90001" -269152,Apple Airpods Headphones,1,150,10/15/19 20:09,"495 Lincoln St, Portland, OR 97035" -269153,USB-C Charging Cable,1,11.95,10/10/19 14:59,"302 Lincoln St, Los Angeles, CA 90001" -269154,34in Ultrawide Monitor,1,379.99,10/13/19 14:19,"558 Washington St, San Francisco, CA 94016" -269155,USB-C Charging Cable,1,11.95,10/02/19 18:40,"451 5th St, Los Angeles, CA 90001" -269156,Lightning Charging Cable,1,14.95,10/08/19 18:43,"329 Walnut St, Boston, MA 02215" -269157,Bose SoundSport Headphones,1,99.99,10/11/19 07:38,"268 South St, Boston, MA 02215" -269158,Apple Airpods Headphones,1,150,10/25/19 17:47,"797 Pine St, Portland, ME 04101" -269159,Vareebadd Phone,1,400,10/23/19 08:16,"198 North St, Atlanta, GA 30301" -269160,34in Ultrawide Monitor,1,379.99,10/21/19 18:21,"200 2nd St, San Francisco, CA 94016" -269161,USB-C Charging Cable,1,11.95,10/18/19 11:20,"897 Washington St, Austin, TX 73301" -269162,AA Batteries (4-pack),1,3.84,10/13/19 01:10,"333 North St, Los Angeles, CA 90001" -269163,Lightning Charging Cable,1,14.95,10/24/19 19:44,"909 Park St, New York City, NY 10001" -269164,20in Monitor,1,109.99,10/01/19 04:24,"856 13th St, New York City, NY 10001" -269165,Bose SoundSport Headphones,1,99.99,10/14/19 09:06,"167 12th St, San Francisco, CA 94016" -269166,27in FHD Monitor,1,149.99,10/19/19 21:51,"490 7th St, New York City, NY 10001" -269167,AAA Batteries (4-pack),1,2.99,10/24/19 18:35,"189 5th St, Dallas, TX 75001" -269168,LG Dryer,1,600.0,10/14/19 17:27,"504 Hickory St, Atlanta, GA 30301" -269169,27in FHD Monitor,1,149.99,10/23/19 15:13,"356 Cedar St, Portland, OR 97035" -269170,Vareebadd Phone,1,400,10/27/19 00:12,"706 Park St, San Francisco, CA 94016" -269171,Google Phone,1,600,10/06/19 20:15,"30 Jefferson St, San Francisco, CA 94016" -269172,Wired Headphones,1,11.99,10/02/19 18:48,"330 Jackson St, Boston, MA 02215" -269173,iPhone,1,700,10/28/19 18:50,"678 Center St, Dallas, TX 75001" -269174,AAA Batteries (4-pack),3,2.99,10/31/19 16:38,"652 9th St, Los Angeles, CA 90001" -269175,Lightning Charging Cable,1,14.95,10/22/19 14:13,"151 9th St, Atlanta, GA 30301" -269176,Lightning Charging Cable,1,14.95,10/07/19 20:13,"4 South St, San Francisco, CA 94016" -269177,Apple Airpods Headphones,1,150,10/11/19 10:21,"883 Walnut St, San Francisco, CA 94016" -269178,USB-C Charging Cable,1,11.95,10/03/19 20:19,"139 1st St, New York City, NY 10001" -269179,27in 4K Gaming Monitor,1,389.99,10/25/19 21:00,"232 Pine St, San Francisco, CA 94016" -269180,Lightning Charging Cable,3,14.95,10/11/19 14:25,"274 Center St, Los Angeles, CA 90001" -269181,AA Batteries (4-pack),3,3.84,10/12/19 02:33,"461 Park St, Boston, MA 02215" -269182,AA Batteries (4-pack),1,3.84,10/03/19 21:57,"18 Hill St, Dallas, TX 75001" -269183,20in Monitor,1,109.99,10/25/19 12:31,"598 Madison St, San Francisco, CA 94016" -269184,USB-C Charging Cable,2,11.95,10/27/19 19:21,"694 River St, Austin, TX 73301" -269185,LG Washing Machine,1,600.0,10/09/19 10:24,"777 Cedar St, San Francisco, CA 94016" -269186,Google Phone,1,600,10/05/19 20:11,"971 North St, Boston, MA 02215" -269187,Google Phone,1,600,10/26/19 16:49,"171 Main St, Austin, TX 73301" -269188,AA Batteries (4-pack),3,3.84,10/23/19 21:58,"295 River St, New York City, NY 10001" -269189,AA Batteries (4-pack),1,3.84,10/26/19 22:05,"547 Lincoln St, Los Angeles, CA 90001" -269190,Apple Airpods Headphones,1,150,10/02/19 19:24,"537 8th St, San Francisco, CA 94016" -269191,AA Batteries (4-pack),1,3.84,10/25/19 18:48,"247 Madison St, Austin, TX 73301" -269192,AA Batteries (4-pack),1,3.84,10/16/19 17:34,"122 8th St, San Francisco, CA 94016" -269193,Google Phone,1,600,10/20/19 22:52,"229 9th St, Atlanta, GA 30301" -269194,AAA Batteries (4-pack),1,2.99,10/23/19 22:59,"857 Church St, Atlanta, GA 30301" -269195,Vareebadd Phone,1,400,10/31/19 11:11,"339 Washington St, Seattle, WA 98101" -269196,AA Batteries (4-pack),3,3.84,10/17/19 12:16,"589 Elm St, San Francisco, CA 94016" -269197,Lightning Charging Cable,1,14.95,10/17/19 20:39,"97 West St, Portland, OR 97035" -269198,AA Batteries (4-pack),4,3.84,10/25/19 11:50,"97 12th St, San Francisco, CA 94016" -269199,LG Washing Machine,1,600.0,10/01/19 15:13,"181 South St, Los Angeles, CA 90001" -269200,27in FHD Monitor,1,149.99,10/03/19 19:17,"963 Pine St, Atlanta, GA 30301" -269201,USB-C Charging Cable,1,11.95,10/15/19 12:18,"506 11th St, New York City, NY 10001" -269202,USB-C Charging Cable,1,11.95,10/29/19 17:05,"98 5th St, Los Angeles, CA 90001" -269203,USB-C Charging Cable,1,11.95,10/14/19 15:30,"954 Meadow St, Boston, MA 02215" -269204,USB-C Charging Cable,1,11.95,10/12/19 23:32,"523 Hill St, Portland, ME 04101" -269205,Wired Headphones,1,11.99,10/01/19 15:01,"238 Chestnut St, San Francisco, CA 94016" -269206,USB-C Charging Cable,2,11.95,10/30/19 22:04,"907 Cedar St, Atlanta, GA 30301" -269207,Macbook Pro Laptop,1,1700,10/04/19 20:51,"605 Church St, San Francisco, CA 94016" -269208,AAA Batteries (4-pack),1,2.99,10/07/19 19:02,"701 Maple St, Seattle, WA 98101" -269209,AA Batteries (4-pack),4,3.84,10/18/19 23:43,"442 West St, Portland, OR 97035" -269210,Wired Headphones,1,11.99,10/05/19 13:20,"188 Sunset St, Boston, MA 02215" -269211,Apple Airpods Headphones,1,150,10/22/19 21:36,"490 Spruce St, Seattle, WA 98101" -269212,Wired Headphones,1,11.99,10/08/19 21:23,"870 River St, Atlanta, GA 30301" -269213,LG Washing Machine,1,600.0,10/15/19 18:04,"244 Dogwood St, Seattle, WA 98101" -269214,20in Monitor,1,109.99,10/10/19 15:16,"738 Meadow St, San Francisco, CA 94016" -269215,AAA Batteries (4-pack),2,2.99,10/01/19 20:59,"332 Jefferson St, Atlanta, GA 30301" -269216,Wired Headphones,1,11.99,10/26/19 17:42,"653 Meadow St, Los Angeles, CA 90001" -269217,AA Batteries (4-pack),1,3.84,10/26/19 20:29,"63 South St, San Francisco, CA 94016" -269218,Wired Headphones,1,11.99,10/05/19 20:12,"826 Madison St, New York City, NY 10001" -269219,Bose SoundSport Headphones,1,99.99,10/27/19 09:24,"436 10th St, Portland, OR 97035" -269220,AAA Batteries (4-pack),2,2.99,10/29/19 09:13,"468 6th St, Boston, MA 02215" -269221,27in 4K Gaming Monitor,1,389.99,10/15/19 20:42,"621 Sunset St, Austin, TX 73301" -269222,Apple Airpods Headphones,1,150,10/19/19 20:40,"880 Jefferson St, Atlanta, GA 30301" -269223,Wired Headphones,1,11.99,10/16/19 13:20,"255 Chestnut St, San Francisco, CA 94016" -269224,USB-C Charging Cable,1,11.95,10/19/19 18:19,"540 Dogwood St, Los Angeles, CA 90001" -269225,Lightning Charging Cable,1,14.95,10/04/19 17:23,"43 Sunset St, San Francisco, CA 94016" -269226,AA Batteries (4-pack),1,3.84,10/12/19 02:01,"173 13th St, Portland, OR 97035" -269227,Flatscreen TV,1,300,10/09/19 21:35,"421 1st St, Seattle, WA 98101" -269228,Vareebadd Phone,1,400,10/23/19 13:46,"547 10th St, Los Angeles, CA 90001" -269229,27in FHD Monitor,1,149.99,10/06/19 20:26,"105 Lakeview St, San Francisco, CA 94016" -269230,Apple Airpods Headphones,1,150,10/14/19 07:38,"834 Lakeview St, New York City, NY 10001" -269231,Flatscreen TV,1,300,10/19/19 19:54,"916 5th St, Portland, OR 97035" -269232,Wired Headphones,1,11.99,10/13/19 23:22,"82 Chestnut St, Austin, TX 73301" -269233,Lightning Charging Cable,1,14.95,10/26/19 23:14,"991 Pine St, Seattle, WA 98101" -269234,Wired Headphones,2,11.99,10/20/19 20:58,"636 Madison St, Los Angeles, CA 90001" -269235,AA Batteries (4-pack),1,3.84,10/09/19 07:44,"313 6th St, San Francisco, CA 94016" -269236,Apple Airpods Headphones,1,150,10/16/19 09:48,"948 Cherry St, San Francisco, CA 94016" -269237,Bose SoundSport Headphones,1,99.99,10/23/19 09:47,"679 7th St, New York City, NY 10001" -269238,USB-C Charging Cable,1,11.95,10/22/19 10:57,"382 Walnut St, San Francisco, CA 94016" -269239,Wired Headphones,2,11.99,10/02/19 18:45,"564 Walnut St, Atlanta, GA 30301" -269240,Lightning Charging Cable,2,14.95,10/11/19 21:48,"905 Sunset St, Atlanta, GA 30301" -269241,Lightning Charging Cable,1,14.95,10/15/19 18:40,"997 Meadow St, Atlanta, GA 30301" -269242,27in 4K Gaming Monitor,1,389.99,10/19/19 19:40,"736 South St, Boston, MA 02215" -269243,Wired Headphones,1,11.99,10/20/19 01:37,"941 Spruce St, Boston, MA 02215" -269244,Wired Headphones,1,11.99,10/04/19 12:25,"87 Madison St, Boston, MA 02215" -269245,Wired Headphones,1,11.99,10/18/19 07:50,"952 14th St, San Francisco, CA 94016" -269246,USB-C Charging Cable,1,11.95,10/27/19 20:22,"456 Spruce St, Boston, MA 02215" -269247,Macbook Pro Laptop,1,1700,10/20/19 21:11,"483 Cedar St, Seattle, WA 98101" -269248,AA Batteries (4-pack),3,3.84,10/21/19 19:59,"907 9th St, Dallas, TX 75001" -269249,Wired Headphones,1,11.99,10/19/19 12:47,"519 River St, Seattle, WA 98101" -269249,AA Batteries (4-pack),3,3.84,10/19/19 12:47,"519 River St, Seattle, WA 98101" -269250,Bose SoundSport Headphones,1,99.99,10/22/19 15:59,"52 Center St, Los Angeles, CA 90001" -269251,34in Ultrawide Monitor,1,379.99,10/13/19 22:37,"590 Willow St, Atlanta, GA 30301" -269251,Macbook Pro Laptop,1,1700,10/13/19 22:37,"590 Willow St, Atlanta, GA 30301" -269252,Bose SoundSport Headphones,1,99.99,10/18/19 22:18,"794 Hickory St, Atlanta, GA 30301" -269253,AAA Batteries (4-pack),1,2.99,10/25/19 01:04,"390 Lake St, San Francisco, CA 94016" -269254,USB-C Charging Cable,1,11.95,10/25/19 22:01,"554 Highland St, San Francisco, CA 94016" -269255,Apple Airpods Headphones,1,150,10/18/19 12:28,"123 4th St, Boston, MA 02215" -269256,Wired Headphones,1,11.99,10/27/19 11:14,"195 Elm St, Boston, MA 02215" -269257,Wired Headphones,1,11.99,10/16/19 23:58,"803 Highland St, San Francisco, CA 94016" -269258,Apple Airpods Headphones,1,150,10/31/19 08:11,"879 12th St, San Francisco, CA 94016" -269259,AAA Batteries (4-pack),2,2.99,10/24/19 20:29,"216 4th St, Austin, TX 73301" -269260,AAA Batteries (4-pack),1,2.99,10/28/19 08:30,"753 Jefferson St, Los Angeles, CA 90001" -269261,Flatscreen TV,1,300,10/23/19 19:15,"62 1st St, San Francisco, CA 94016" -269262,27in 4K Gaming Monitor,1,389.99,10/17/19 17:38,"899 South St, Portland, OR 97035" -269263,Apple Airpods Headphones,1,150,10/01/19 11:42,"75 7th St, Los Angeles, CA 90001" -269264,Apple Airpods Headphones,1,150,10/01/19 21:14,"212 Dogwood St, San Francisco, CA 94016" -269265,AA Batteries (4-pack),1,3.84,10/22/19 09:00,"660 8th St, Seattle, WA 98101" -269266,USB-C Charging Cable,2,11.95,10/12/19 19:59,"347 Hill St, New York City, NY 10001" -269267,USB-C Charging Cable,1,11.95,10/22/19 16:52,"743 North St, Dallas, TX 75001" -269268,Google Phone,1,600,10/20/19 18:08,"928 Dogwood St, New York City, NY 10001" -269268,Bose SoundSport Headphones,1,99.99,10/20/19 18:08,"928 Dogwood St, New York City, NY 10001" -269269,USB-C Charging Cable,3,11.95,10/09/19 10:01,"529 Dogwood St, San Francisco, CA 94016" -269270,Flatscreen TV,1,300,10/20/19 01:40,"135 7th St, Los Angeles, CA 90001" -269271,Apple Airpods Headphones,1,150,10/13/19 14:20,"88 Chestnut St, Portland, OR 97035" -269272,iPhone,1,700,10/31/19 11:48,"204 Willow St, San Francisco, CA 94016" -269273,Google Phone,1,600,10/05/19 19:09,"751 Hickory St, Los Angeles, CA 90001" -269274,Lightning Charging Cable,1,14.95,10/05/19 01:09,"189 Cedar St, Atlanta, GA 30301" -269275,27in FHD Monitor,1,149.99,10/13/19 10:19,"319 12th St, Seattle, WA 98101" -269276,Apple Airpods Headphones,1,150,10/29/19 20:14,"821 Madison St, Seattle, WA 98101" -269277,AA Batteries (4-pack),1,3.84,10/11/19 15:26,"66 Willow St, Seattle, WA 98101" -269278,Apple Airpods Headphones,1,150,10/04/19 12:01,"961 South St, San Francisco, CA 94016" -269279,20in Monitor,1,109.99,10/24/19 00:09,"313 Johnson St, Boston, MA 02215" -269280,Lightning Charging Cable,1,14.95,10/22/19 18:43,"492 1st St, San Francisco, CA 94016" -269281,AA Batteries (4-pack),2,3.84,10/15/19 18:47,"343 Ridge St, Atlanta, GA 30301" -269282,20in Monitor,1,109.99,10/21/19 00:32,"301 8th St, Portland, OR 97035" -269283,Wired Headphones,1,11.99,10/25/19 11:48,"501 Adams St, Seattle, WA 98101" -269284,Macbook Pro Laptop,1,1700,10/18/19 10:47,"117 Meadow St, San Francisco, CA 94016" -269285,AAA Batteries (4-pack),2,2.99,10/20/19 19:58,"391 Cedar St, Portland, OR 97035" -269286,Lightning Charging Cable,1,14.95,10/25/19 09:34,"542 Willow St, Portland, OR 97035" -269287,27in FHD Monitor,1,149.99,10/02/19 02:13,"398 North St, New York City, NY 10001" -269288,Vareebadd Phone,1,400,10/10/19 18:27,"55 Ridge St, Los Angeles, CA 90001" -269289,Wired Headphones,1,11.99,10/23/19 16:56,"452 Hickory St, Atlanta, GA 30301" -269290,Lightning Charging Cable,1,14.95,10/08/19 13:58,"527 River St, San Francisco, CA 94016" -269291,AA Batteries (4-pack),1,3.84,10/08/19 20:58,"657 9th St, Atlanta, GA 30301" -269292,Bose SoundSport Headphones,1,99.99,10/02/19 13:21,"216 12th St, Seattle, WA 98101" -269293,USB-C Charging Cable,1,11.95,10/22/19 15:41,"373 River St, Los Angeles, CA 90001" -269294,34in Ultrawide Monitor,1,379.99,10/30/19 21:13,"937 6th St, Dallas, TX 75001" -269295,Bose SoundSport Headphones,2,99.99,10/07/19 16:49,"314 Center St, Austin, TX 73301" -269296,AAA Batteries (4-pack),1,2.99,10/19/19 20:55,"517 7th St, Seattle, WA 98101" -269297,34in Ultrawide Monitor,1,379.99,10/18/19 17:01,"233 Lincoln St, Los Angeles, CA 90001" -269298,Wired Headphones,1,11.99,10/11/19 16:31,"765 Lakeview St, San Francisco, CA 94016" -269299,Google Phone,1,600,10/24/19 21:09,"929 Dogwood St, San Francisco, CA 94016" -269300,Vareebadd Phone,1,400,10/14/19 19:09,"178 14th St, New York City, NY 10001" -269301,Lightning Charging Cable,1,14.95,10/03/19 17:08,"315 13th St, San Francisco, CA 94016" -269302,Lightning Charging Cable,1,14.95,10/27/19 09:38,"518 Jefferson St, San Francisco, CA 94016" -269303,Lightning Charging Cable,1,14.95,10/20/19 10:08,"2 River St, Austin, TX 73301" -,,,,, -269304,27in FHD Monitor,1,149.99,10/19/19 13:29,"263 2nd St, San Francisco, CA 94016" -269305,Vareebadd Phone,1,400,10/28/19 18:29,"916 Dogwood St, Dallas, TX 75001" -269306,USB-C Charging Cable,2,11.95,10/28/19 06:06,"477 5th St, Seattle, WA 98101" -269307,AAA Batteries (4-pack),3,2.99,10/31/19 12:54,"916 Cherry St, San Francisco, CA 94016" -269308,AAA Batteries (4-pack),1,2.99,10/18/19 17:54,"207 Park St, Seattle, WA 98101" -269309,Lightning Charging Cable,1,14.95,10/22/19 19:31,"456 Hickory St, Portland, OR 97035" -269310,LG Washing Machine,1,600.0,10/15/19 15:56,"599 13th St, Los Angeles, CA 90001" -269311,Wired Headphones,1,11.99,10/31/19 13:18,"350 Cherry St, San Francisco, CA 94016" -269312,Apple Airpods Headphones,1,150,10/01/19 17:45,"273 Main St, San Francisco, CA 94016" -269313,Bose SoundSport Headphones,1,99.99,10/28/19 04:26,"641 9th St, Austin, TX 73301" -269314,LG Dryer,1,600.0,10/29/19 17:24,"178 Chestnut St, New York City, NY 10001" -269315,Apple Airpods Headphones,1,150,10/17/19 19:33,"460 2nd St, Los Angeles, CA 90001" -269316,Bose SoundSport Headphones,1,99.99,10/31/19 18:53,"970 Meadow St, Los Angeles, CA 90001" -269317,AAA Batteries (4-pack),1,2.99,10/31/19 11:09,"545 Lake St, San Francisco, CA 94016" -269317,Vareebadd Phone,1,400,10/31/19 11:09,"545 Lake St, San Francisco, CA 94016" -269318,AA Batteries (4-pack),1,3.84,10/27/19 02:16,"643 5th St, Austin, TX 73301" -269319,AA Batteries (4-pack),1,3.84,10/07/19 23:06,"52 7th St, San Francisco, CA 94016" -269320,Flatscreen TV,1,300,10/24/19 20:20,"874 South St, San Francisco, CA 94016" -269321,27in FHD Monitor,1,149.99,10/09/19 20:09,"7 10th St, San Francisco, CA 94016" -269322,Apple Airpods Headphones,1,150,10/05/19 19:23,"848 Adams St, Los Angeles, CA 90001" -269323,AA Batteries (4-pack),1,3.84,10/28/19 01:27,"99 North St, Seattle, WA 98101" -269324,Bose SoundSport Headphones,1,99.99,10/18/19 09:27,"332 14th St, Los Angeles, CA 90001" -269324,USB-C Charging Cable,1,11.95,10/18/19 09:27,"332 14th St, Los Angeles, CA 90001" -269325,Wired Headphones,1,11.99,10/26/19 15:51,"821 Ridge St, San Francisco, CA 94016" -269326,Wired Headphones,1,11.99,10/29/19 21:59,"937 Main St, Portland, OR 97035" -269327,AA Batteries (4-pack),1,3.84,10/23/19 14:11,"803 Elm St, Los Angeles, CA 90001" -269328,27in 4K Gaming Monitor,1,389.99,10/25/19 21:34,"599 Hickory St, Los Angeles, CA 90001" -269329,AA Batteries (4-pack),2,3.84,10/02/19 18:14,"709 Church St, New York City, NY 10001" -269330,AA Batteries (4-pack),2,3.84,10/09/19 18:07,"508 Jefferson St, San Francisco, CA 94016" -269331,USB-C Charging Cable,1,11.95,10/09/19 11:01,"323 Madison St, San Francisco, CA 94016" -269332,ThinkPad Laptop,1,999.99,10/01/19 13:36,"658 Adams St, San Francisco, CA 94016" -269333,AAA Batteries (4-pack),2,2.99,10/20/19 11:40,"22 Willow St, San Francisco, CA 94016" -269334,AAA Batteries (4-pack),2,2.99,10/29/19 19:40,"545 13th St, San Francisco, CA 94016" -269335,AAA Batteries (4-pack),3,2.99,10/16/19 17:05,"508 Highland St, Los Angeles, CA 90001" -269336,AAA Batteries (4-pack),1,2.99,10/08/19 15:05,"628 Jefferson St, New York City, NY 10001" -269337,Google Phone,1,600,10/24/19 08:16,"14 Church St, Los Angeles, CA 90001" -269338,Wired Headphones,1,11.99,10/16/19 08:09,"647 West St, New York City, NY 10001" -269339,27in 4K Gaming Monitor,1,389.99,10/20/19 16:03,"327 Johnson St, Los Angeles, CA 90001" -269340,AA Batteries (4-pack),2,3.84,10/23/19 10:05,"976 Highland St, Boston, MA 02215" -269341,AAA Batteries (4-pack),2,2.99,10/21/19 23:42,"618 Madison St, Los Angeles, CA 90001" -269342,AAA Batteries (4-pack),1,2.99,10/08/19 17:34,"233 Center St, Los Angeles, CA 90001" -269343,iPhone,1,700,10/14/19 18:50,"586 Lincoln St, Los Angeles, CA 90001" -269344,AA Batteries (4-pack),2,3.84,10/05/19 00:38,"992 Jefferson St, Dallas, TX 75001" -269345,AAA Batteries (4-pack),1,2.99,10/14/19 11:42,"613 Sunset St, Seattle, WA 98101" -269346,AAA Batteries (4-pack),1,2.99,10/07/19 18:57,"920 Jackson St, San Francisco, CA 94016" -269347,27in 4K Gaming Monitor,1,389.99,10/12/19 17:40,"4 Willow St, Los Angeles, CA 90001" -269348,Wired Headphones,1,11.99,10/20/19 17:45,"460 Elm St, San Francisco, CA 94016" -269349,Bose SoundSport Headphones,1,99.99,10/16/19 14:12,"315 10th St, San Francisco, CA 94016" -269350,AAA Batteries (4-pack),1,2.99,10/02/19 09:03,"740 Church St, Boston, MA 02215" -269351,Wired Headphones,1,11.99,10/03/19 23:27,"759 West St, New York City, NY 10001" -269352,AAA Batteries (4-pack),1,2.99,10/27/19 16:23,"655 Pine St, Los Angeles, CA 90001" -269353,AA Batteries (4-pack),1,3.84,10/23/19 17:39,"195 Lake St, San Francisco, CA 94016" -269354,USB-C Charging Cable,1,11.95,10/27/19 19:34,"41 Lake St, Boston, MA 02215" -269355,Lightning Charging Cable,1,14.95,10/14/19 16:23,"37 Elm St, Dallas, TX 75001" -269356,USB-C Charging Cable,1,11.95,10/04/19 10:41,"994 12th St, Portland, OR 97035" -269357,Bose SoundSport Headphones,1,99.99,10/17/19 19:46,"833 9th St, Dallas, TX 75001" -269358,AAA Batteries (4-pack),1,2.99,10/03/19 15:40,"857 Adams St, Atlanta, GA 30301" -269359,Lightning Charging Cable,1,14.95,10/03/19 10:20,"60 Sunset St, Dallas, TX 75001" -269360,Wired Headphones,1,11.99,10/27/19 18:41,"61 9th St, Seattle, WA 98101" -269361,AAA Batteries (4-pack),1,2.99,10/07/19 18:17,"237 Lincoln St, Boston, MA 02215" -269362,Bose SoundSport Headphones,1,99.99,10/16/19 23:03,"18 Cherry St, Dallas, TX 75001" -269363,Apple Airpods Headphones,1,150,10/12/19 23:27,"520 2nd St, Portland, OR 97035" -269363,Bose SoundSport Headphones,1,99.99,10/12/19 23:27,"520 2nd St, Portland, OR 97035" -269364,ThinkPad Laptop,1,999.99,10/11/19 21:12,"862 Dogwood St, Los Angeles, CA 90001" -269365,USB-C Charging Cable,1,11.95,10/01/19 19:36,"298 14th St, Austin, TX 73301" -269366,Apple Airpods Headphones,1,150,10/13/19 09:05,"585 Willow St, Portland, OR 97035" -269367,Wired Headphones,1,11.99,10/29/19 20:57,"922 Madison St, Dallas, TX 75001" -269368,USB-C Charging Cable,1,11.95,10/01/19 09:46,"234 1st St, New York City, NY 10001" -269369,USB-C Charging Cable,1,11.95,10/26/19 11:08,"919 Lincoln St, Seattle, WA 98101" -269370,Lightning Charging Cable,1,14.95,10/05/19 12:12,"275 Wilson St, Boston, MA 02215" -269371,iPhone,1,700,10/25/19 17:14,"248 North St, San Francisco, CA 94016" -269372,34in Ultrawide Monitor,1,379.99,10/11/19 18:48,"492 14th St, San Francisco, CA 94016" -269373,AAA Batteries (4-pack),2,2.99,10/05/19 19:48,"90 Chestnut St, New York City, NY 10001" -269374,Wired Headphones,1,11.99,10/02/19 13:37,"19 Jefferson St, New York City, NY 10001" -269375,Wired Headphones,1,11.99,10/02/19 11:15,"503 Walnut St, Atlanta, GA 30301" -269376,AA Batteries (4-pack),1,3.84,10/12/19 17:55,"671 10th St, San Francisco, CA 94016" -269377,Wired Headphones,1,11.99,10/06/19 15:02,"332 River St, New York City, NY 10001" -269378,AAA Batteries (4-pack),1,2.99,10/30/19 06:09,"90 11th St, Boston, MA 02215" -269379,USB-C Charging Cable,1,11.95,10/23/19 01:55,"952 9th St, Dallas, TX 75001" -269380,AAA Batteries (4-pack),1,2.99,10/07/19 21:45,"821 6th St, San Francisco, CA 94016" -269381,AAA Batteries (4-pack),2,2.99,10/18/19 17:37,"75 West St, Dallas, TX 75001" -269382,AA Batteries (4-pack),1,3.84,10/22/19 19:58,"606 Adams St, New York City, NY 10001" -269383,Bose SoundSport Headphones,1,99.99,10/21/19 19:12,"25 Main St, Los Angeles, CA 90001" -269384,Wired Headphones,1,11.99,10/30/19 14:37,"338 13th St, Austin, TX 73301" -269385,USB-C Charging Cable,1,11.95,10/31/19 13:49,"844 Park St, Los Angeles, CA 90001" -269386,Flatscreen TV,1,300,10/15/19 11:34,"490 4th St, San Francisco, CA 94016" -269387,Apple Airpods Headphones,1,150,10/08/19 11:16,"953 Madison St, New York City, NY 10001" -269388,AA Batteries (4-pack),1,3.84,10/10/19 12:40,"383 Chestnut St, San Francisco, CA 94016" -269389,Wired Headphones,1,11.99,10/17/19 10:29,"293 Johnson St, Los Angeles, CA 90001" -269390,27in 4K Gaming Monitor,1,389.99,10/08/19 20:10,"241 Johnson St, Austin, TX 73301" -269391,Wired Headphones,1,11.99,10/22/19 20:23,"430 Lakeview St, Atlanta, GA 30301" -269392,iPhone,1,700,10/19/19 20:21,"354 Highland St, Dallas, TX 75001" -269393,Bose SoundSport Headphones,1,99.99,10/22/19 09:11,"398 Lake St, Boston, MA 02215" -269394,Lightning Charging Cable,1,14.95,10/21/19 15:22,"213 Johnson St, San Francisco, CA 94016" -269395,Google Phone,1,600,10/13/19 08:35,"552 Sunset St, Dallas, TX 75001" -269396,AA Batteries (4-pack),1,3.84,10/05/19 15:22,"176 Washington St, Austin, TX 73301" -269397,Macbook Pro Laptop,1,1700,10/12/19 15:11,"836 Sunset St, Los Angeles, CA 90001" -269398,Flatscreen TV,1,300,10/28/19 19:44,"399 2nd St, New York City, NY 10001" -269399,34in Ultrawide Monitor,1,379.99,10/09/19 15:36,"838 Church St, New York City, NY 10001" -269400,AAA Batteries (4-pack),1,2.99,10/06/19 16:16,"643 Park St, Los Angeles, CA 90001" -269401,AA Batteries (4-pack),1,3.84,10/07/19 13:15,"569 Lincoln St, Boston, MA 02215" -269402,iPhone,1,700,10/18/19 20:56,"823 1st St, San Francisco, CA 94016" -269403,Bose SoundSport Headphones,1,99.99,10/29/19 21:52,"997 Elm St, Los Angeles, CA 90001" -269404,Bose SoundSport Headphones,1,99.99,10/19/19 15:37,"865 8th St, San Francisco, CA 94016" -269405,Google Phone,1,600,10/16/19 19:42,"899 Highland St, Atlanta, GA 30301" -269405,USB-C Charging Cable,1,11.95,10/16/19 19:42,"899 Highland St, Atlanta, GA 30301" -269406,Wired Headphones,1,11.99,10/13/19 21:42,"264 Adams St, Dallas, TX 75001" -269407,Wired Headphones,1,11.99,10/29/19 22:58,"520 Main St, San Francisco, CA 94016" -269408,AAA Batteries (4-pack),3,2.99,10/17/19 13:50,"285 Highland St, Boston, MA 02215" -269409,Vareebadd Phone,1,400,10/03/19 12:43,"307 Willow St, Boston, MA 02215" -269410,Apple Airpods Headphones,1,150,10/15/19 14:42,"335 Jefferson St, Portland, OR 97035" -269411,AAA Batteries (4-pack),1,2.99,10/17/19 10:16,"485 11th St, Boston, MA 02215" -269412,AAA Batteries (4-pack),2,2.99,10/02/19 13:34,"421 Center St, Boston, MA 02215" -269413,Apple Airpods Headphones,1,150,10/21/19 18:44,"448 Elm St, New York City, NY 10001" -269414,27in 4K Gaming Monitor,1,389.99,10/12/19 17:56,"215 Willow St, San Francisco, CA 94016" -269415,AA Batteries (4-pack),2,3.84,10/26/19 10:48,"76 Adams St, San Francisco, CA 94016" -269416,Apple Airpods Headphones,1,150,10/24/19 00:29,"338 11th St, New York City, NY 10001" -269417,Apple Airpods Headphones,1,150,10/05/19 07:01,"197 Maple St, San Francisco, CA 94016" -269418,Apple Airpods Headphones,1,150,10/23/19 13:23,"168 Hickory St, New York City, NY 10001" -269419,USB-C Charging Cable,1,11.95,10/25/19 19:23,"782 Highland St, San Francisco, CA 94016" -269420,USB-C Charging Cable,1,11.95,10/29/19 22:17,"321 Chestnut St, Los Angeles, CA 90001" -269421,Wired Headphones,1,11.99,10/02/19 18:45,"291 Wilson St, Los Angeles, CA 90001" -269422,USB-C Charging Cable,1,11.95,10/10/19 17:12,"726 Spruce St, San Francisco, CA 94016" -269423,Wired Headphones,1,11.99,10/29/19 10:31,"897 9th St, Boston, MA 02215" -269424,AA Batteries (4-pack),1,3.84,10/02/19 10:23,"692 Willow St, Atlanta, GA 30301" -269425,AA Batteries (4-pack),1,3.84,10/06/19 13:31,"766 Johnson St, San Francisco, CA 94016" -269426,20in Monitor,1,109.99,10/16/19 08:00,"662 Meadow St, New York City, NY 10001" -269427,AAA Batteries (4-pack),1,2.99,10/26/19 06:31,"192 8th St, San Francisco, CA 94016" -269428,USB-C Charging Cable,1,11.95,10/16/19 18:12,"717 Hickory St, Seattle, WA 98101" -269429,34in Ultrawide Monitor,1,379.99,10/17/19 16:47,"578 Walnut St, San Francisco, CA 94016" -269430,ThinkPad Laptop,1,999.99,10/28/19 14:59,"160 13th St, New York City, NY 10001" -269431,Apple Airpods Headphones,1,150,10/21/19 16:56,"409 5th St, Portland, OR 97035" -269432,iPhone,1,700,10/17/19 22:44,"863 4th St, Los Angeles, CA 90001" -269433,USB-C Charging Cable,1,11.95,10/30/19 15:34,"840 11th St, Seattle, WA 98101" -269434,AAA Batteries (4-pack),4,2.99,10/29/19 19:22,"827 Park St, Los Angeles, CA 90001" -269435,Wired Headphones,1,11.99,10/02/19 16:18,"275 Johnson St, New York City, NY 10001" -269436,AAA Batteries (4-pack),1,2.99,10/04/19 08:30,"27 Forest St, New York City, NY 10001" -269437,AA Batteries (4-pack),1,3.84,10/04/19 13:00,"715 Ridge St, Los Angeles, CA 90001" -269438,USB-C Charging Cable,1,11.95,10/20/19 12:56,"363 Willow St, Los Angeles, CA 90001" -269439,27in 4K Gaming Monitor,1,389.99,10/23/19 13:45,"430 Spruce St, San Francisco, CA 94016" -269440,AA Batteries (4-pack),1,3.84,10/08/19 00:41,"678 Lakeview St, Boston, MA 02215" -269441,Bose SoundSport Headphones,1,99.99,10/26/19 18:11,"18 Hickory St, Atlanta, GA 30301" -269442,Google Phone,1,600,10/18/19 23:00,"153 Jackson St, Austin, TX 73301" -269443,Bose SoundSport Headphones,1,99.99,10/11/19 12:25,"601 13th St, San Francisco, CA 94016" -269444,USB-C Charging Cable,1,11.95,10/30/19 12:29,"830 Willow St, Atlanta, GA 30301" -269445,USB-C Charging Cable,1,11.95,10/07/19 20:26,"962 River St, Dallas, TX 75001" -269446,AAA Batteries (4-pack),1,2.99,10/17/19 13:22,"359 Lakeview St, Seattle, WA 98101" -269447,USB-C Charging Cable,1,11.95,10/19/19 09:41,"443 Main St, Dallas, TX 75001" -269448,Lightning Charging Cable,2,14.95,10/07/19 21:31,"289 Madison St, Austin, TX 73301" -269449,USB-C Charging Cable,1,11.95,10/05/19 21:09,"757 2nd St, Los Angeles, CA 90001" -269450,Bose SoundSport Headphones,1,99.99,10/11/19 16:43,"43 7th St, Dallas, TX 75001" -269451,Bose SoundSport Headphones,1,99.99,10/29/19 18:14,"672 North St, Los Angeles, CA 90001" -269452,USB-C Charging Cable,1,11.95,10/25/19 12:07,"638 Madison St, Seattle, WA 98101" -269453,USB-C Charging Cable,1,11.95,10/28/19 13:47,"464 Elm St, New York City, NY 10001" -269454,AA Batteries (4-pack),2,3.84,10/22/19 07:45,"261 River St, New York City, NY 10001" -269455,Wired Headphones,1,11.99,10/10/19 22:58,"764 4th St, Los Angeles, CA 90001" -269456,AAA Batteries (4-pack),3,2.99,10/31/19 13:59,"886 Johnson St, New York City, NY 10001" -269457,Wired Headphones,1,11.99,10/18/19 08:40,"798 Washington St, Portland, OR 97035" -269458,USB-C Charging Cable,1,11.95,10/04/19 10:04,"633 Wilson St, New York City, NY 10001" -269458,Bose SoundSport Headphones,1,99.99,10/04/19 10:04,"633 Wilson St, New York City, NY 10001" -269459,Wired Headphones,1,11.99,10/14/19 16:36,"796 Dogwood St, San Francisco, CA 94016" -269460,Macbook Pro Laptop,1,1700,10/22/19 16:44,"64 Spruce St, San Francisco, CA 94016" -269461,Lightning Charging Cable,1,14.95,10/18/19 12:12,"653 4th St, Seattle, WA 98101" -269462,AA Batteries (4-pack),1,3.84,10/21/19 09:50,"600 2nd St, Boston, MA 02215" -269463,Wired Headphones,2,11.99,10/31/19 00:35,"164 Madison St, Boston, MA 02215" -269464,iPhone,1,700,10/14/19 21:19,"129 14th St, Austin, TX 73301" -269465,AAA Batteries (4-pack),1,2.99,10/30/19 23:36,"150 Lakeview St, Seattle, WA 98101" -269466,AAA Batteries (4-pack),1,2.99,10/14/19 12:38,"288 Johnson St, San Francisco, CA 94016" -269467,Vareebadd Phone,1,400,10/02/19 13:39,"965 Sunset St, Austin, TX 73301" -269468,Wired Headphones,2,11.99,10/20/19 20:28,"74 4th St, Dallas, TX 75001" -269469,Apple Airpods Headphones,1,150,10/15/19 16:48,"231 Madison St, San Francisco, CA 94016" -269470,27in 4K Gaming Monitor,1,389.99,10/12/19 19:53,"606 12th St, Seattle, WA 98101" -269471,Lightning Charging Cable,1,14.95,10/09/19 23:23,"858 Hill St, Boston, MA 02215" -269472,34in Ultrawide Monitor,1,379.99,10/06/19 09:58,"265 Elm St, San Francisco, CA 94016" -269473,Wired Headphones,1,11.99,10/31/19 12:51,"994 Lincoln St, Boston, MA 02215" -269474,Wired Headphones,1,11.99,10/05/19 17:19,"570 Madison St, Atlanta, GA 30301" -269475,Wired Headphones,1,11.99,10/16/19 18:03,"391 14th St, Portland, ME 04101" -269476,USB-C Charging Cable,1,11.95,10/02/19 21:42,"81 West St, New York City, NY 10001" -269477,27in FHD Monitor,1,149.99,10/31/19 09:17,"497 Maple St, Boston, MA 02215" -269478,Flatscreen TV,1,300,10/12/19 16:27,"593 Spruce St, San Francisco, CA 94016" -269479,Apple Airpods Headphones,1,150,10/06/19 20:41,"442 Lake St, Atlanta, GA 30301" -269480,AAA Batteries (4-pack),1,2.99,10/25/19 14:11,"68 Jackson St, Los Angeles, CA 90001" -269481,AA Batteries (4-pack),1,3.84,10/11/19 23:59,"602 2nd St, San Francisco, CA 94016" -269482,AAA Batteries (4-pack),4,2.99,10/19/19 10:45,"428 13th St, Austin, TX 73301" -269483,AAA Batteries (4-pack),1,2.99,10/16/19 19:04,"523 Chestnut St, Boston, MA 02215" -269484,iPhone,1,700,10/29/19 14:53,"927 Ridge St, Boston, MA 02215" -269485,Lightning Charging Cable,1,14.95,10/15/19 12:16,"493 5th St, New York City, NY 10001" -269486,iPhone,1,700,10/23/19 17:26,"486 11th St, Dallas, TX 75001" -269487,AA Batteries (4-pack),1,3.84,10/18/19 13:20,"416 Hickory St, Seattle, WA 98101" -269488,AAA Batteries (4-pack),1,2.99,10/28/19 15:30,"934 River St, Atlanta, GA 30301" -269489,Flatscreen TV,1,300,10/23/19 16:10,"222 8th St, Los Angeles, CA 90001" -269490,Apple Airpods Headphones,1,150,10/20/19 13:53,"178 Hill St, New York City, NY 10001" -269491,Apple Airpods Headphones,1,150,10/11/19 21:05,"833 Hill St, Los Angeles, CA 90001" -269492,Wired Headphones,1,11.99,10/03/19 13:35,"275 Cedar St, Seattle, WA 98101" -269493,Lightning Charging Cable,1,14.95,10/18/19 05:16,"342 Jackson St, San Francisco, CA 94016" -269494,AA Batteries (4-pack),1,3.84,10/21/19 14:03,"782 13th St, Boston, MA 02215" -269495,Bose SoundSport Headphones,1,99.99,10/03/19 09:50,"287 Washington St, Boston, MA 02215" -269496,USB-C Charging Cable,1,11.95,10/17/19 19:05,"681 Sunset St, Los Angeles, CA 90001" -269497,AAA Batteries (4-pack),1,2.99,10/13/19 21:20,"912 1st St, Dallas, TX 75001" -269498,AAA Batteries (4-pack),2,2.99,10/25/19 19:39,"158 14th St, Dallas, TX 75001" -269499,Lightning Charging Cable,2,14.95,10/15/19 09:06,"545 Church St, Los Angeles, CA 90001" -269500,Google Phone,1,600,10/25/19 20:45,"243 West St, Los Angeles, CA 90001" -269501,USB-C Charging Cable,1,11.95,10/25/19 13:04,"218 Elm St, San Francisco, CA 94016" -269502,USB-C Charging Cable,2,11.95,10/06/19 13:12,"856 Walnut St, San Francisco, CA 94016" -269503,AAA Batteries (4-pack),3,2.99,10/18/19 19:46,"697 Chestnut St, Atlanta, GA 30301" -269504,Lightning Charging Cable,1,14.95,10/05/19 12:38,"321 8th St, Portland, OR 97035" -269505,AA Batteries (4-pack),1,3.84,10/01/19 08:19,"879 14th St, Portland, OR 97035" -269506,Lightning Charging Cable,1,14.95,10/27/19 17:00,"468 Sunset St, Portland, OR 97035" -269507,AA Batteries (4-pack),1,3.84,10/28/19 17:58,"756 Jefferson St, Dallas, TX 75001" -269508,Lightning Charging Cable,1,14.95,10/06/19 12:47,"524 1st St, Dallas, TX 75001" -269509,Bose SoundSport Headphones,1,99.99,10/22/19 14:08,"927 Madison St, Seattle, WA 98101" -269510,USB-C Charging Cable,1,11.95,10/10/19 21:33,"241 Elm St, Los Angeles, CA 90001" -269511,ThinkPad Laptop,1,999.99,10/31/19 16:15,"622 13th St, Seattle, WA 98101" -269512,Lightning Charging Cable,1,14.95,10/30/19 18:38,"4 Adams St, Dallas, TX 75001" -269513,AAA Batteries (4-pack),2,2.99,10/22/19 23:37,"256 Washington St, Seattle, WA 98101" -269514,AA Batteries (4-pack),1,3.84,10/02/19 15:42,"70 Hill St, Portland, OR 97035" -269515,Flatscreen TV,1,300,10/18/19 10:34,"976 Sunset St, Seattle, WA 98101" -269516,AA Batteries (4-pack),1,3.84,10/12/19 07:24,"449 1st St, Boston, MA 02215" -269517,27in FHD Monitor,1,149.99,10/24/19 19:31,"264 Cherry St, New York City, NY 10001" -269518,27in FHD Monitor,1,149.99,10/02/19 10:40,"601 Wilson St, Seattle, WA 98101" -269519,Lightning Charging Cable,1,14.95,10/11/19 16:10,"323 Lake St, Los Angeles, CA 90001" -269520,27in FHD Monitor,1,149.99,10/28/19 20:01,"126 Church St, Seattle, WA 98101" -269521,iPhone,1,700,10/20/19 19:06,"304 Ridge St, Seattle, WA 98101" -269522,AAA Batteries (4-pack),1,2.99,10/07/19 13:25,"244 14th St, Los Angeles, CA 90001" -269523,USB-C Charging Cable,1,11.95,10/18/19 11:24,"492 Park St, San Francisco, CA 94016" -269524,USB-C Charging Cable,1,11.95,10/30/19 15:30,"177 Johnson St, Atlanta, GA 30301" -269525,ThinkPad Laptop,1,999.99,10/27/19 08:19,"156 Madison St, Los Angeles, CA 90001" -269526,Lightning Charging Cable,1,14.95,10/11/19 22:53,"861 River St, Atlanta, GA 30301" -269527,AA Batteries (4-pack),1,3.84,10/17/19 19:36,"405 Cherry St, New York City, NY 10001" -269528,AAA Batteries (4-pack),1,2.99,10/17/19 15:35,"848 2nd St, Los Angeles, CA 90001" -269529,Apple Airpods Headphones,1,150,10/13/19 14:14,"733 Ridge St, Dallas, TX 75001" -269530,Google Phone,1,600,10/19/19 10:02,"31 Meadow St, San Francisco, CA 94016" -269531,Bose SoundSport Headphones,2,99.99,10/17/19 04:54,"753 North St, Los Angeles, CA 90001" -269532,USB-C Charging Cable,1,11.95,10/24/19 00:09,"627 Jackson St, New York City, NY 10001" -269533,27in 4K Gaming Monitor,1,389.99,10/26/19 22:43,"977 11th St, Seattle, WA 98101" -269534,USB-C Charging Cable,1,11.95,10/27/19 16:44,"443 Jefferson St, Los Angeles, CA 90001" -269535,USB-C Charging Cable,1,11.95,10/14/19 13:15,"635 Sunset St, Seattle, WA 98101" -269536,USB-C Charging Cable,1,11.95,10/11/19 06:51,"371 Madison St, Boston, MA 02215" -269537,Bose SoundSport Headphones,1,99.99,10/09/19 13:55,"960 Hill St, Los Angeles, CA 90001" -269538,AA Batteries (4-pack),1,3.84,10/18/19 17:32,"118 Lake St, Portland, OR 97035" -269539,Wired Headphones,1,11.99,10/20/19 21:53,"444 South St, San Francisco, CA 94016" -269540,Apple Airpods Headphones,1,150,10/02/19 10:12,"741 Center St, Seattle, WA 98101" -269541,Flatscreen TV,1,300,10/26/19 08:36,"888 Washington St, San Francisco, CA 94016" -269542,Lightning Charging Cable,1,14.95,10/27/19 20:00,"346 7th St, New York City, NY 10001" -269543,USB-C Charging Cable,1,11.95,10/01/19 19:54,"808 5th St, San Francisco, CA 94016" -269544,AA Batteries (4-pack),2,3.84,10/15/19 12:37,"858 Church St, Portland, OR 97035" -269545,USB-C Charging Cable,1,11.95,10/14/19 14:39,"899 Pine St, New York City, NY 10001" -269546,AAA Batteries (4-pack),1,2.99,10/04/19 20:11,"964 Sunset St, Los Angeles, CA 90001" -269547,27in 4K Gaming Monitor,1,389.99,10/07/19 19:52,"667 Washington St, San Francisco, CA 94016" -269548,USB-C Charging Cable,1,11.95,10/09/19 10:50,"25 Church St, New York City, NY 10001" -269549,27in FHD Monitor,1,149.99,10/20/19 10:16,"553 4th St, Los Angeles, CA 90001" -269550,Flatscreen TV,1,300,10/17/19 11:37,"882 Washington St, Los Angeles, CA 90001" -269551,USB-C Charging Cable,1,11.95,10/18/19 17:38,"341 Cherry St, Los Angeles, CA 90001" -269552,20in Monitor,1,109.99,10/01/19 13:13,"784 14th St, Boston, MA 02215" -269553,USB-C Charging Cable,1,11.95,10/15/19 21:54,"897 Hill St, Los Angeles, CA 90001" -269554,iPhone,1,700,10/18/19 01:06,"891 Sunset St, Dallas, TX 75001" -269554,Apple Airpods Headphones,1,150,10/18/19 01:06,"891 Sunset St, Dallas, TX 75001" -269555,AAA Batteries (4-pack),3,2.99,10/31/19 21:30,"322 North St, Portland, OR 97035" -269556,iPhone,1,700,10/27/19 16:37,"406 13th St, San Francisco, CA 94016" -269557,Google Phone,1,600,10/15/19 23:11,"605 7th St, Seattle, WA 98101" -269557,USB-C Charging Cable,1,11.95,10/15/19 23:11,"605 7th St, Seattle, WA 98101" -269558,USB-C Charging Cable,1,11.95,10/30/19 18:23,"535 Dogwood St, Atlanta, GA 30301" -,,,,, -269559,AAA Batteries (4-pack),5,2.99,10/14/19 16:27,"507 11th St, San Francisco, CA 94016" -269560,Apple Airpods Headphones,1,150,10/12/19 10:52,"816 Hill St, Boston, MA 02215" -269561,Wired Headphones,1,11.99,10/29/19 00:23,"319 11th St, Dallas, TX 75001" -269562,27in 4K Gaming Monitor,1,389.99,10/31/19 03:41,"383 Cedar St, Los Angeles, CA 90001" -269563,iPhone,1,700,10/08/19 15:24,"924 Meadow St, Boston, MA 02215" -269563,Apple Airpods Headphones,1,150,10/08/19 15:24,"924 Meadow St, Boston, MA 02215" -269564,Apple Airpods Headphones,1,150,10/05/19 14:11,"833 Johnson St, New York City, NY 10001" -269565,Flatscreen TV,1,300,10/25/19 00:55,"899 1st St, Los Angeles, CA 90001" -269566,Apple Airpods Headphones,1,150,10/30/19 02:58,"326 12th St, New York City, NY 10001" -269567,iPhone,1,700,10/20/19 08:29,"203 Pine St, San Francisco, CA 94016" -269567,Lightning Charging Cable,1,14.95,10/20/19 08:29,"203 Pine St, San Francisco, CA 94016" -,,,,, -269568,AA Batteries (4-pack),1,3.84,10/28/19 11:53,"952 Center St, Seattle, WA 98101" -269569,AAA Batteries (4-pack),2,2.99,10/18/19 18:39,"313 13th St, Boston, MA 02215" -269570,LG Dryer,1,600.0,10/27/19 23:49,"552 4th St, Boston, MA 02215" -269571,27in 4K Gaming Monitor,1,389.99,10/02/19 14:22,"903 Lakeview St, San Francisco, CA 94016" -269572,34in Ultrawide Monitor,1,379.99,10/03/19 13:00,"367 Pine St, Los Angeles, CA 90001" -269573,Bose SoundSport Headphones,1,99.99,10/10/19 09:28,"914 Jackson St, Boston, MA 02215" -269574,Wired Headphones,1,11.99,10/21/19 17:09,"781 9th St, San Francisco, CA 94016" -269575,Google Phone,1,600,10/26/19 22:09,"910 Hickory St, Boston, MA 02215" -269575,USB-C Charging Cable,1,11.95,10/26/19 22:09,"910 Hickory St, Boston, MA 02215" -269576,Bose SoundSport Headphones,1,99.99,10/16/19 14:11,"319 Adams St, Seattle, WA 98101" -269577,Flatscreen TV,1,300,10/20/19 10:47,"564 Jefferson St, Dallas, TX 75001" -269578,27in FHD Monitor,1,149.99,10/25/19 09:31,"585 Sunset St, Austin, TX 73301" -269579,Lightning Charging Cable,1,14.95,10/03/19 08:14,"694 6th St, San Francisco, CA 94016" -269580,Wired Headphones,1,11.99,10/23/19 13:32,"4 Walnut St, San Francisco, CA 94016" -269581,Wired Headphones,1,11.99,10/14/19 14:08,"841 Walnut St, San Francisco, CA 94016" -269582,iPhone,1,700,10/09/19 02:08,"490 North St, Dallas, TX 75001" -269583,Lightning Charging Cable,1,14.95,10/13/19 21:09,"39 Forest St, San Francisco, CA 94016" -269584,Wired Headphones,1,11.99,10/11/19 11:54,"829 Jefferson St, Boston, MA 02215" -269585,Apple Airpods Headphones,1,150,10/12/19 11:36,"201 Madison St, Atlanta, GA 30301" -269586,iPhone,1,700,10/14/19 18:50,"334 11th St, Seattle, WA 98101" -269587,AAA Batteries (4-pack),2,2.99,10/30/19 20:18,"60 South St, Los Angeles, CA 90001" -269588,AA Batteries (4-pack),1,3.84,10/10/19 10:04,"209 Maple St, Boston, MA 02215" -269589,Lightning Charging Cable,1,14.95,10/28/19 14:37,"123 Dogwood St, Boston, MA 02215" -269589,AA Batteries (4-pack),1,3.84,10/28/19 14:37,"123 Dogwood St, Boston, MA 02215" -269590,ThinkPad Laptop,1,999.99,10/01/19 03:12,"907 2nd St, Los Angeles, CA 90001" -269591,Lightning Charging Cable,1,14.95,10/01/19 19:17,"447 Jackson St, Dallas, TX 75001" -269592,USB-C Charging Cable,1,11.95,10/19/19 12:28,"239 Meadow St, New York City, NY 10001" -269593,USB-C Charging Cable,2,11.95,10/30/19 15:19,"857 Center St, Boston, MA 02215" -269594,Wired Headphones,1,11.99,10/18/19 10:16,"687 South St, Boston, MA 02215" -269595,ThinkPad Laptop,1,999.99,10/16/19 15:39,"704 Wilson St, Los Angeles, CA 90001" -269596,Lightning Charging Cable,1,14.95,10/21/19 13:11,"740 Madison St, Los Angeles, CA 90001" -269597,AAA Batteries (4-pack),1,2.99,10/08/19 06:23,"767 1st St, Austin, TX 73301" -269598,Lightning Charging Cable,1,14.95,10/17/19 10:54,"649 Wilson St, Atlanta, GA 30301" -269599,USB-C Charging Cable,1,11.95,10/31/19 08:03,"48 Cedar St, New York City, NY 10001" -269600,27in FHD Monitor,1,149.99,10/08/19 11:42,"344 Adams St, San Francisco, CA 94016" -269601,27in 4K Gaming Monitor,1,389.99,10/06/19 17:35,"549 Jackson St, Boston, MA 02215" -269602,Bose SoundSport Headphones,1,99.99,10/07/19 11:54,"978 Jefferson St, Los Angeles, CA 90001" -269603,iPhone,1,700,10/29/19 22:19,"785 13th St, New York City, NY 10001" -269604,Flatscreen TV,1,300,10/09/19 18:38,"819 Hickory St, Los Angeles, CA 90001" -269605,27in FHD Monitor,1,149.99,10/28/19 16:41,"904 14th St, Los Angeles, CA 90001" -269606,Google Phone,1,600,10/13/19 10:18,"426 9th St, New York City, NY 10001" -269606,Bose SoundSport Headphones,1,99.99,10/13/19 10:18,"426 9th St, New York City, NY 10001" -269607,USB-C Charging Cable,1,11.95,10/08/19 16:06,"380 Pine St, San Francisco, CA 94016" -269608,Bose SoundSport Headphones,1,99.99,10/23/19 18:39,"945 Forest St, Austin, TX 73301" -269609,USB-C Charging Cable,1,11.95,10/02/19 16:45,"525 8th St, Boston, MA 02215" -269610,USB-C Charging Cable,1,11.95,10/13/19 22:02,"519 Walnut St, Atlanta, GA 30301" -269611,Bose SoundSport Headphones,1,99.99,10/03/19 18:54,"245 Johnson St, Atlanta, GA 30301" -269612,AAA Batteries (4-pack),1,2.99,10/01/19 15:02,"930 9th St, Seattle, WA 98101" -269613,AAA Batteries (4-pack),1,2.99,10/08/19 19:08,"658 10th St, San Francisco, CA 94016" -269614,USB-C Charging Cable,2,11.95,10/27/19 19:56,"287 10th St, Los Angeles, CA 90001" -269615,Google Phone,1,600,10/14/19 15:04,"153 Chestnut St, Los Angeles, CA 90001" -269616,USB-C Charging Cable,1,11.95,10/21/19 23:53,"100 Highland St, San Francisco, CA 94016" -269617,Flatscreen TV,1,300,10/06/19 16:12,"865 Johnson St, San Francisco, CA 94016" -269618,Lightning Charging Cable,1,14.95,10/01/19 12:44,"161 12th St, Dallas, TX 75001" -269619,Wired Headphones,1,11.99,10/27/19 21:29,"880 Walnut St, Dallas, TX 75001" -269620,USB-C Charging Cable,1,11.95,10/10/19 20:03,"502 Center St, Seattle, WA 98101" -269621,AA Batteries (4-pack),2,3.84,10/01/19 12:42,"23 6th St, San Francisco, CA 94016" -269622,iPhone,1,700,10/20/19 15:35,"509 Highland St, San Francisco, CA 94016" -269623,27in 4K Gaming Monitor,1,389.99,10/18/19 12:45,"294 Ridge St, Boston, MA 02215" -269624,AAA Batteries (4-pack),2,2.99,10/10/19 12:27,"78 Meadow St, Portland, ME 04101" -269625,Bose SoundSport Headphones,1,99.99,10/03/19 21:01,"885 Highland St, Austin, TX 73301" -269626,Apple Airpods Headphones,1,150,10/20/19 13:06,"871 Ridge St, Los Angeles, CA 90001" -269626,27in 4K Gaming Monitor,1,389.99,10/20/19 13:06,"871 Ridge St, Los Angeles, CA 90001" -269627,20in Monitor,1,109.99,10/23/19 15:06,"32 Spruce St, New York City, NY 10001" -269628,Apple Airpods Headphones,1,150,10/02/19 21:46,"552 Jefferson St, New York City, NY 10001" -269629,iPhone,1,700,10/20/19 09:50,"357 Lake St, Atlanta, GA 30301" -269629,Lightning Charging Cable,1,14.95,10/20/19 09:50,"357 Lake St, Atlanta, GA 30301" -269630,27in 4K Gaming Monitor,1,389.99,10/05/19 17:22,"796 6th St, Los Angeles, CA 90001" -269631,AAA Batteries (4-pack),1,2.99,10/14/19 13:32,"388 South St, San Francisco, CA 94016" -269632,Lightning Charging Cable,1,14.95,10/26/19 04:44,"340 Jackson St, San Francisco, CA 94016" -269633,Flatscreen TV,1,300,10/23/19 16:54,"338 Johnson St, New York City, NY 10001" -269634,Wired Headphones,1,11.99,10/04/19 11:41,"14 Main St, San Francisco, CA 94016" -269635,Wired Headphones,1,11.99,10/03/19 12:45,"65 8th St, San Francisco, CA 94016" -269636,AA Batteries (4-pack),1,3.84,10/21/19 19:01,"968 14th St, Portland, OR 97035" -269637,Apple Airpods Headphones,1,150,10/16/19 12:05,"352 2nd St, Dallas, TX 75001" -269638,Macbook Pro Laptop,1,1700,10/18/19 07:47,"130 West St, Los Angeles, CA 90001" -269639,27in FHD Monitor,1,149.99,10/09/19 13:37,"464 14th St, Dallas, TX 75001" -269640,Wired Headphones,1,11.99,10/30/19 18:08,"226 13th St, Austin, TX 73301" -269641,Bose SoundSport Headphones,1,99.99,10/10/19 12:55,"741 Dogwood St, San Francisco, CA 94016" -269642,USB-C Charging Cable,1,11.95,10/23/19 20:49,"915 Spruce St, Portland, OR 97035" -269643,Lightning Charging Cable,1,14.95,10/18/19 09:33,"745 Lakeview St, San Francisco, CA 94016" -269644,USB-C Charging Cable,1,11.95,10/20/19 15:22,"680 13th St, San Francisco, CA 94016" -269645,Google Phone,1,600,10/29/19 20:48,"736 Lincoln St, San Francisco, CA 94016" -269646,USB-C Charging Cable,1,11.95,10/15/19 09:20,"218 Spruce St, San Francisco, CA 94016" -269647,AA Batteries (4-pack),1,3.84,10/08/19 23:03,"451 5th St, Boston, MA 02215" -269648,iPhone,1,700,10/10/19 22:30,"947 9th St, San Francisco, CA 94016" -269649,20in Monitor,1,109.99,10/21/19 15:03,"383 Highland St, Portland, OR 97035" -269650,27in 4K Gaming Monitor,1,389.99,10/18/19 10:21,"282 9th St, Portland, ME 04101" -269650,27in FHD Monitor,1,149.99,10/18/19 10:21,"282 9th St, Portland, ME 04101" -269651,iPhone,1,700,10/15/19 12:55,"26 Jackson St, Portland, OR 97035" -269652,Bose SoundSport Headphones,1,99.99,10/26/19 09:43,"971 Chestnut St, San Francisco, CA 94016" -269653,USB-C Charging Cable,3,11.95,10/11/19 18:03,"40 5th St, Los Angeles, CA 90001" -269654,Wired Headphones,1,11.99,10/11/19 17:21,"724 Hill St, Austin, TX 73301" -269655,Bose SoundSport Headphones,1,99.99,10/16/19 10:13,"768 Jackson St, San Francisco, CA 94016" -269656,Macbook Pro Laptop,1,1700,10/10/19 12:24,"18 Washington St, Austin, TX 73301" -269657,AAA Batteries (4-pack),1,2.99,10/07/19 16:56,"665 Willow St, San Francisco, CA 94016" -269658,iPhone,1,700,10/29/19 20:46,"125 7th St, Boston, MA 02215" -269658,Apple Airpods Headphones,1,150,10/29/19 20:46,"125 7th St, Boston, MA 02215" -269659,AA Batteries (4-pack),1,3.84,10/29/19 17:04,"604 4th St, San Francisco, CA 94016" -269660,AA Batteries (4-pack),1,3.84,10/25/19 09:19,"986 Hickory St, New York City, NY 10001" -269661,USB-C Charging Cable,1,11.95,10/02/19 12:08,"116 Forest St, San Francisco, CA 94016" -269662,Bose SoundSport Headphones,1,99.99,10/05/19 20:13,"164 6th St, Boston, MA 02215" -269663,27in FHD Monitor,1,149.99,10/08/19 00:15,"261 13th St, Los Angeles, CA 90001" -269664,20in Monitor,1,109.99,10/04/19 22:35,"125 Forest St, Los Angeles, CA 90001" -269665,Flatscreen TV,1,300,10/25/19 18:12,"53 Park St, San Francisco, CA 94016" -269666,Apple Airpods Headphones,1,150,10/21/19 21:46,"310 Park St, Los Angeles, CA 90001" -269667,Wired Headphones,1,11.99,10/08/19 03:54,"204 Maple St, Los Angeles, CA 90001" -269668,AA Batteries (4-pack),2,3.84,10/16/19 20:43,"568 Jefferson St, Portland, OR 97035" -269669,Macbook Pro Laptop,1,1700,10/20/19 16:21,"961 Jackson St, New York City, NY 10001" -269670,AAA Batteries (4-pack),3,2.99,10/11/19 15:41,"508 Spruce St, Boston, MA 02215" -269671,AAA Batteries (4-pack),1,2.99,10/06/19 20:23,"520 11th St, Los Angeles, CA 90001" -269672,Apple Airpods Headphones,1,150,10/21/19 13:27,"275 Walnut St, New York City, NY 10001" -269673,Bose SoundSport Headphones,1,99.99,10/12/19 17:03,"477 11th St, San Francisco, CA 94016" -269674,Google Phone,1,600,10/10/19 20:33,"927 Hickory St, San Francisco, CA 94016" -269675,Wired Headphones,1,11.99,10/16/19 00:02,"217 11th St, Boston, MA 02215" -269676,Lightning Charging Cable,1,14.95,10/10/19 13:06,"188 Ridge St, San Francisco, CA 94016" -269677,Macbook Pro Laptop,1,1700,10/31/19 19:24,"466 Hill St, San Francisco, CA 94016" -269678,AAA Batteries (4-pack),1,2.99,10/30/19 19:55,"780 Cherry St, Atlanta, GA 30301" -269679,Flatscreen TV,1,300,10/12/19 15:43,"43 Highland St, Seattle, WA 98101" -269680,Apple Airpods Headphones,1,150,10/07/19 16:33,"585 Maple St, Austin, TX 73301" -269681,USB-C Charging Cable,1,11.95,10/08/19 17:38,"18 5th St, San Francisco, CA 94016" -269682,AA Batteries (4-pack),1,3.84,10/14/19 10:42,"105 Cedar St, Dallas, TX 75001" -269683,ThinkPad Laptop,1,999.99,10/31/19 16:33,"944 10th St, New York City, NY 10001" -269684,Macbook Pro Laptop,1,1700,10/16/19 21:37,"195 Lake St, New York City, NY 10001" -269685,Macbook Pro Laptop,1,1700,10/25/19 11:29,"174 9th St, Seattle, WA 98101" -269686,Macbook Pro Laptop,1,1700,10/16/19 14:41,"341 Adams St, Boston, MA 02215" -269687,Wired Headphones,1,11.99,10/16/19 16:12,"910 Chestnut St, New York City, NY 10001" -269688,iPhone,1,700,10/29/19 16:36,"317 North St, Dallas, TX 75001" -269688,Lightning Charging Cable,1,14.95,10/29/19 16:36,"317 North St, Dallas, TX 75001" -269689,USB-C Charging Cable,1,11.95,10/04/19 13:25,"678 Sunset St, New York City, NY 10001" -269690,USB-C Charging Cable,2,11.95,10/24/19 13:38,"702 Wilson St, Portland, OR 97035" -269691,USB-C Charging Cable,1,11.95,10/25/19 22:11,"235 8th St, Atlanta, GA 30301" -269692,AAA Batteries (4-pack),1,2.99,10/07/19 09:10,"377 Madison St, Portland, OR 97035" -269693,Apple Airpods Headphones,1,150,10/19/19 09:41,"753 Willow St, Los Angeles, CA 90001" -269694,27in FHD Monitor,1,149.99,10/07/19 17:16,"944 Lakeview St, New York City, NY 10001" -269694,AAA Batteries (4-pack),1,2.99,10/07/19 17:16,"944 Lakeview St, New York City, NY 10001" -269695,USB-C Charging Cable,1,11.95,10/27/19 18:57,"387 2nd St, New York City, NY 10001" -269696,AA Batteries (4-pack),5,3.84,10/10/19 13:06,"326 12th St, Seattle, WA 98101" -269697,Bose SoundSport Headphones,1,99.99,10/22/19 18:51,"605 Adams St, Austin, TX 73301" -269698,Lightning Charging Cable,1,14.95,10/19/19 19:19,"801 Hickory St, Seattle, WA 98101" -269699,AA Batteries (4-pack),1,3.84,10/28/19 22:49,"925 Spruce St, Los Angeles, CA 90001" -269700,AAA Batteries (4-pack),2,2.99,10/07/19 18:52,"589 7th St, Los Angeles, CA 90001" -269701,Wired Headphones,1,11.99,10/09/19 23:21,"735 11th St, Los Angeles, CA 90001" -269702,Bose SoundSport Headphones,1,99.99,10/21/19 21:23,"21 Hickory St, Los Angeles, CA 90001" -269703,Google Phone,1,600,10/03/19 16:33,"972 Dogwood St, Dallas, TX 75001" -269703,USB-C Charging Cable,1,11.95,10/03/19 16:33,"972 Dogwood St, Dallas, TX 75001" -269703,Wired Headphones,1,11.99,10/03/19 16:33,"972 Dogwood St, Dallas, TX 75001" -269704,USB-C Charging Cable,1,11.95,10/25/19 09:13,"867 Ridge St, Atlanta, GA 30301" -,,,,, -269705,Lightning Charging Cable,1,14.95,10/16/19 10:26,"543 2nd St, San Francisco, CA 94016" -269706,AA Batteries (4-pack),1,3.84,10/11/19 20:28,"370 Johnson St, Dallas, TX 75001" -269707,Lightning Charging Cable,1,14.95,10/24/19 19:10,"93 Hill St, New York City, NY 10001" -269708,Apple Airpods Headphones,1,150,10/29/19 11:47,"203 10th St, San Francisco, CA 94016" -269709,AAA Batteries (4-pack),2,2.99,10/26/19 17:20,"644 Madison St, San Francisco, CA 94016" -269710,Apple Airpods Headphones,1,150,10/15/19 08:50,"251 Highland St, Los Angeles, CA 90001" -269711,AA Batteries (4-pack),1,3.84,10/04/19 21:45,"932 10th St, Boston, MA 02215" -269712,Macbook Pro Laptop,1,1700,10/21/19 18:33,"1 11th St, Los Angeles, CA 90001" -269713,27in FHD Monitor,1,149.99,10/18/19 18:09,"938 Chestnut St, Boston, MA 02215" -269714,Apple Airpods Headphones,1,150,10/07/19 18:50,"40 Adams St, Austin, TX 73301" -269714,Lightning Charging Cable,1,14.95,10/07/19 18:50,"40 Adams St, Austin, TX 73301" -269715,AAA Batteries (4-pack),1,2.99,10/30/19 08:07,"956 10th St, Austin, TX 73301" -269716,Wired Headphones,2,11.99,10/22/19 10:51,"496 Hickory St, Atlanta, GA 30301" -269717,34in Ultrawide Monitor,1,379.99,10/03/19 01:34,"211 Washington St, Austin, TX 73301" -269718,AA Batteries (4-pack),1,3.84,10/15/19 08:05,"42 River St, Atlanta, GA 30301" -269719,AAA Batteries (4-pack),2,2.99,10/27/19 11:32,"423 1st St, Portland, OR 97035" -269720,iPhone,1,700,10/09/19 19:39,"119 14th St, San Francisco, CA 94016" -269721,Macbook Pro Laptop,1,1700,10/06/19 22:06,"949 Hickory St, New York City, NY 10001" -269722,USB-C Charging Cable,1,11.95,10/31/19 06:20,"902 5th St, Boston, MA 02215" -269723,Apple Airpods Headphones,1,150,10/12/19 01:22,"879 Cherry St, San Francisco, CA 94016" -269724,Bose SoundSport Headphones,1,99.99,10/01/19 21:05,"521 Hill St, Dallas, TX 75001" -269725,Lightning Charging Cable,1,14.95,10/01/19 12:55,"508 4th St, Los Angeles, CA 90001" -269726,Wired Headphones,1,11.99,10/19/19 19:57,"919 11th St, Los Angeles, CA 90001" -269727,AAA Batteries (4-pack),1,2.99,10/09/19 11:21,"387 Willow St, Seattle, WA 98101" -269728,AAA Batteries (4-pack),1,2.99,10/05/19 19:10,"121 North St, Atlanta, GA 30301" -269729,Bose SoundSport Headphones,1,99.99,10/28/19 17:36,"959 Dogwood St, San Francisco, CA 94016" -269730,Wired Headphones,1,11.99,10/01/19 21:44,"704 6th St, New York City, NY 10001" -269731,AA Batteries (4-pack),1,3.84,10/11/19 21:06,"605 10th St, New York City, NY 10001" -269732,AA Batteries (4-pack),2,3.84,10/02/19 17:08,"718 Wilson St, Boston, MA 02215" -269733,AA Batteries (4-pack),1,3.84,10/30/19 09:57,"615 Church St, Dallas, TX 75001" -269734,Google Phone,1,600,10/04/19 20:08,"935 Cherry St, Atlanta, GA 30301" -269734,Wired Headphones,1,11.99,10/04/19 20:08,"935 Cherry St, Atlanta, GA 30301" -269735,Macbook Pro Laptop,1,1700,10/13/19 18:04,"993 Lakeview St, Atlanta, GA 30301" -269736,USB-C Charging Cable,1,11.95,10/06/19 10:42,"764 Main St, Los Angeles, CA 90001" -269737,Lightning Charging Cable,1,14.95,10/13/19 15:08,"875 Meadow St, San Francisco, CA 94016" -269738,USB-C Charging Cable,1,11.95,10/20/19 15:05,"394 Maple St, San Francisco, CA 94016" -269739,Bose SoundSport Headphones,1,99.99,10/24/19 12:08,"26 Ridge St, Portland, OR 97035" -269740,Macbook Pro Laptop,1,1700,10/19/19 12:12,"667 Church St, Boston, MA 02215" -269740,Wired Headphones,1,11.99,10/19/19 12:12,"667 Church St, Boston, MA 02215" -269741,Wired Headphones,1,11.99,10/14/19 15:24,"424 2nd St, Atlanta, GA 30301" -269742,Lightning Charging Cable,1,14.95,10/04/19 17:10,"639 Lakeview St, Los Angeles, CA 90001" -269743,LG Washing Machine,1,600.0,10/12/19 22:30,"34 Dogwood St, San Francisco, CA 94016" -269744,34in Ultrawide Monitor,1,379.99,10/04/19 19:03,"400 Hickory St, Portland, ME 04101" -269745,27in 4K Gaming Monitor,1,389.99,10/07/19 17:28,"676 11th St, New York City, NY 10001" -269745,USB-C Charging Cable,2,11.95,10/07/19 17:28,"676 11th St, New York City, NY 10001" -269746,Apple Airpods Headphones,1,150,10/24/19 18:43,"621 Maple St, Atlanta, GA 30301" -269747,Wired Headphones,1,11.99,10/11/19 12:06,"726 9th St, New York City, NY 10001" -269748,USB-C Charging Cable,1,11.95,10/23/19 19:42,"577 Maple St, San Francisco, CA 94016" -269749,AAA Batteries (4-pack),4,2.99,10/15/19 11:01,"466 South St, San Francisco, CA 94016" -269750,AA Batteries (4-pack),3,3.84,10/23/19 09:06,"643 Ridge St, Austin, TX 73301" -269751,Lightning Charging Cable,1,14.95,10/09/19 04:49,"564 5th St, New York City, NY 10001" -269752,USB-C Charging Cable,1,11.95,10/05/19 18:32,"709 Lake St, Seattle, WA 98101" -269753,LG Dryer,1,600.0,10/25/19 12:24,"737 Hill St, Los Angeles, CA 90001" -269754,AAA Batteries (4-pack),2,2.99,10/19/19 20:26,"304 Meadow St, Seattle, WA 98101" -269755,Macbook Pro Laptop,1,1700,10/27/19 21:14,"963 River St, Boston, MA 02215" -269756,Vareebadd Phone,1,400,10/18/19 21:38,"73 10th St, Los Angeles, CA 90001" -269757,Google Phone,1,600,10/18/19 09:38,"866 8th St, Los Angeles, CA 90001" -269758,Wired Headphones,1,11.99,10/11/19 23:32,"190 Lakeview St, Dallas, TX 75001" -269759,Bose SoundSport Headphones,1,99.99,10/20/19 21:39,"90 Jefferson St, San Francisco, CA 94016" -269760,AA Batteries (4-pack),1,3.84,10/06/19 15:38,"322 Walnut St, Austin, TX 73301" -269761,34in Ultrawide Monitor,1,379.99,10/24/19 18:05,"509 Main St, Seattle, WA 98101" -269762,Apple Airpods Headphones,1,150,10/05/19 18:54,"730 Madison St, Boston, MA 02215" -269763,ThinkPad Laptop,1,999.99,10/26/19 11:21,"515 Wilson St, Dallas, TX 75001" -269764,USB-C Charging Cable,1,11.95,10/19/19 10:30,"466 Park St, San Francisco, CA 94016" -269765,AAA Batteries (4-pack),2,2.99,10/03/19 11:10,"121 Hill St, Atlanta, GA 30301" -269766,27in 4K Gaming Monitor,1,389.99,10/04/19 11:03,"261 Hickory St, Los Angeles, CA 90001" -269767,AAA Batteries (4-pack),2,2.99,10/20/19 19:41,"465 Elm St, Seattle, WA 98101" -269768,Lightning Charging Cable,1,14.95,10/15/19 20:48,"635 Wilson St, Seattle, WA 98101" -269769,Lightning Charging Cable,1,14.95,10/01/19 08:15,"358 14th St, Portland, OR 97035" -269770,AA Batteries (4-pack),1,3.84,10/27/19 23:40,"70 Washington St, Los Angeles, CA 90001" -269771,USB-C Charging Cable,1,11.95,10/10/19 11:16,"739 Spruce St, Los Angeles, CA 90001" -269772,27in 4K Gaming Monitor,1,389.99,10/28/19 22:28,"737 North St, Seattle, WA 98101" -269773,Lightning Charging Cable,1,14.95,10/11/19 15:23,"774 Elm St, Portland, OR 97035" -269774,Google Phone,1,600,10/02/19 11:47,"270 10th St, Boston, MA 02215" -269775,USB-C Charging Cable,1,11.95,10/04/19 12:57,"138 Hill St, Atlanta, GA 30301" -,,,,, -269776,Google Phone,1,600,10/12/19 22:36,"212 12th St, Seattle, WA 98101" -269776,USB-C Charging Cable,1,11.95,10/12/19 22:36,"212 12th St, Seattle, WA 98101" -269777,Apple Airpods Headphones,1,150,10/08/19 19:10,"125 5th St, San Francisco, CA 94016" -269778,USB-C Charging Cable,1,11.95,10/06/19 19:10,"769 Madison St, Los Angeles, CA 90001" -269779,Apple Airpods Headphones,1,150,10/28/19 08:05,"538 Ridge St, Atlanta, GA 30301" -269780,USB-C Charging Cable,2,11.95,10/19/19 17:11,"272 Main St, San Francisco, CA 94016" -269781,Apple Airpods Headphones,1,150,10/16/19 13:55,"425 Dogwood St, Los Angeles, CA 90001" -269782,USB-C Charging Cable,1,11.95,10/18/19 18:11,"91 Johnson St, Austin, TX 73301" -269783,AAA Batteries (4-pack),1,2.99,10/18/19 19:10,"925 Church St, Dallas, TX 75001" -269784,20in Monitor,1,109.99,10/11/19 16:17,"629 Center St, San Francisco, CA 94016" -269785,ThinkPad Laptop,1,999.99,10/09/19 09:26,"898 North St, New York City, NY 10001" -269786,USB-C Charging Cable,1,11.95,10/08/19 22:51,"97 Center St, San Francisco, CA 94016" -269787,USB-C Charging Cable,1,11.95,10/20/19 20:08,"528 Hickory St, Los Angeles, CA 90001" -269788,AA Batteries (4-pack),2,3.84,10/07/19 15:06,"553 Pine St, New York City, NY 10001" -269789,AA Batteries (4-pack),1,3.84,10/07/19 06:25,"897 Main St, Los Angeles, CA 90001" -269789,USB-C Charging Cable,1,11.95,10/07/19 06:25,"897 Main St, Los Angeles, CA 90001" -269790,USB-C Charging Cable,1,11.95,10/24/19 16:34,"587 Center St, Portland, OR 97035" -269791,27in 4K Gaming Monitor,1,389.99,10/16/19 09:50,"524 8th St, Los Angeles, CA 90001" -269792,AA Batteries (4-pack),1,3.84,10/11/19 17:36,"488 11th St, Los Angeles, CA 90001" -269793,AAA Batteries (4-pack),1,2.99,10/11/19 07:56,"933 8th St, New York City, NY 10001" -269794,Wired Headphones,1,11.99,10/11/19 01:14,"486 Spruce St, Atlanta, GA 30301" -269795,AAA Batteries (4-pack),1,2.99,10/12/19 21:04,"620 South St, Los Angeles, CA 90001" -269796,Bose SoundSport Headphones,1,99.99,10/12/19 18:30,"93 South St, San Francisco, CA 94016" -269797,27in 4K Gaming Monitor,1,389.99,10/31/19 18:34,"551 Dogwood St, Atlanta, GA 30301" -269798,Lightning Charging Cable,1,14.95,10/16/19 14:52,"473 6th St, Boston, MA 02215" -269799,Wired Headphones,1,11.99,10/13/19 21:24,"383 West St, San Francisco, CA 94016" -269800,34in Ultrawide Monitor,1,379.99,10/20/19 00:56,"825 Church St, Los Angeles, CA 90001" -269801,AA Batteries (4-pack),3,3.84,10/19/19 00:44,"656 5th St, Portland, OR 97035" -269802,27in FHD Monitor,1,149.99,10/13/19 12:25,"263 Sunset St, San Francisco, CA 94016" -269803,27in 4K Gaming Monitor,1,389.99,10/20/19 19:05,"249 Maple St, Seattle, WA 98101" -269804,AA Batteries (4-pack),1,3.84,10/03/19 14:30,"742 8th St, San Francisco, CA 94016" -269805,Macbook Pro Laptop,1,1700,10/02/19 01:40,"331 Hickory St, Portland, OR 97035" -269806,Lightning Charging Cable,1,14.95,10/09/19 20:06,"688 14th St, Seattle, WA 98101" -269807,AA Batteries (4-pack),1,3.84,10/29/19 15:30,"29 Wilson St, San Francisco, CA 94016" -269808,Wired Headphones,1,11.99,10/20/19 15:01,"85 Lake St, Los Angeles, CA 90001" -269809,Flatscreen TV,1,300,10/21/19 15:25,"659 Sunset St, New York City, NY 10001" -269810,Wired Headphones,1,11.99,10/19/19 11:04,"108 West St, Austin, TX 73301" -269811,USB-C Charging Cable,1,11.95,10/27/19 20:53,"113 Spruce St, Boston, MA 02215" -269812,27in FHD Monitor,1,149.99,10/24/19 14:34,"811 5th St, Austin, TX 73301" -269813,27in FHD Monitor,1,149.99,10/10/19 21:23,"367 Spruce St, Los Angeles, CA 90001" -269814,Macbook Pro Laptop,1,1700,10/01/19 16:27,"79 13th St, Boston, MA 02215" -269815,Apple Airpods Headphones,1,150,10/01/19 19:41,"684 Jackson St, Atlanta, GA 30301" -269816,AA Batteries (4-pack),1,3.84,10/30/19 23:57,"128 River St, Seattle, WA 98101" -269817,AAA Batteries (4-pack),2,2.99,10/01/19 13:53,"740 Adams St, Seattle, WA 98101" -269818,AAA Batteries (4-pack),1,2.99,10/30/19 19:45,"898 Madison St, San Francisco, CA 94016" -269819,AA Batteries (4-pack),1,3.84,10/21/19 21:06,"240 Pine St, Atlanta, GA 30301" -269820,Wired Headphones,1,11.99,10/26/19 22:23,"463 7th St, New York City, NY 10001" -269821,Apple Airpods Headphones,1,150,10/11/19 08:10,"276 Maple St, Dallas, TX 75001" -269822,Apple Airpods Headphones,1,150,10/30/19 20:53,"434 Center St, San Francisco, CA 94016" -269823,Wired Headphones,1,11.99,10/20/19 11:11,"690 Sunset St, San Francisco, CA 94016" -269824,Google Phone,1,600,10/19/19 17:31,"999 Sunset St, Atlanta, GA 30301" -269825,AA Batteries (4-pack),1,3.84,10/07/19 16:52,"463 1st St, Seattle, WA 98101" -269826,Wired Headphones,1,11.99,10/18/19 19:25,"936 11th St, San Francisco, CA 94016" -269827,Wired Headphones,2,11.99,10/01/19 21:36,"37 Adams St, San Francisco, CA 94016" -269828,20in Monitor,1,109.99,10/05/19 13:08,"681 Jackson St, New York City, NY 10001" -269829,AA Batteries (4-pack),1,3.84,10/30/19 17:54,"827 1st St, Boston, MA 02215" -269830,Google Phone,1,600,10/28/19 12:56,"519 Highland St, San Francisco, CA 94016" -269831,Wired Headphones,1,11.99,10/10/19 22:57,"501 Adams St, San Francisco, CA 94016" -269832,iPhone,1,700,10/10/19 22:04,"936 Main St, Dallas, TX 75001" -269833,AA Batteries (4-pack),1,3.84,10/03/19 02:14,"660 Forest St, Austin, TX 73301" -269834,Flatscreen TV,1,300,10/21/19 22:17,"849 Church St, Seattle, WA 98101" -269835,Lightning Charging Cable,1,14.95,10/05/19 09:29,"338 Adams St, Atlanta, GA 30301" -269836,Google Phone,1,600,10/18/19 21:30,"842 1st St, Boston, MA 02215" -269836,USB-C Charging Cable,1,11.95,10/18/19 21:30,"842 1st St, Boston, MA 02215" -269837,Wired Headphones,1,11.99,10/03/19 13:12,"89 2nd St, New York City, NY 10001" -269838,20in Monitor,1,109.99,10/05/19 20:05,"24 Dogwood St, New York City, NY 10001" -269839,Apple Airpods Headphones,1,150,10/02/19 15:32,"594 14th St, New York City, NY 10001" -269840,USB-C Charging Cable,1,11.95,10/03/19 12:19,"922 Chestnut St, Atlanta, GA 30301" -269841,AAA Batteries (4-pack),2,2.99,10/23/19 22:00,"931 River St, San Francisco, CA 94016" -269842,AA Batteries (4-pack),1,3.84,10/31/19 10:56,"58 14th St, Atlanta, GA 30301" -269843,Apple Airpods Headphones,1,150,10/18/19 10:16,"28 Washington St, San Francisco, CA 94016" -269844,Lightning Charging Cable,1,14.95,10/15/19 00:43,"770 Spruce St, Dallas, TX 75001" -269845,ThinkPad Laptop,1,999.99,10/14/19 10:16,"545 North St, Seattle, WA 98101" -269846,USB-C Charging Cable,1,11.95,10/20/19 09:24,"253 West St, Seattle, WA 98101" -269847,Lightning Charging Cable,1,14.95,10/25/19 09:48,"652 Park St, Los Angeles, CA 90001" -269848,Lightning Charging Cable,1,14.95,10/09/19 16:04,"367 Lakeview St, Los Angeles, CA 90001" -269849,27in 4K Gaming Monitor,1,389.99,10/01/19 18:58,"388 Cherry St, San Francisco, CA 94016" -269850,AAA Batteries (4-pack),1,2.99,10/28/19 21:09,"108 Wilson St, Seattle, WA 98101" -269851,Apple Airpods Headphones,1,150,10/19/19 17:20,"843 Highland St, New York City, NY 10001" -269852,AAA Batteries (4-pack),2,2.99,10/09/19 21:34,"448 Hickory St, San Francisco, CA 94016" -269853,Bose SoundSport Headphones,1,99.99,10/02/19 18:36,"914 Center St, New York City, NY 10001" -269854,27in 4K Gaming Monitor,1,389.99,10/23/19 11:30,"66 Chestnut St, Austin, TX 73301" -269855,Lightning Charging Cable,1,14.95,10/01/19 18:45,"839 5th St, Los Angeles, CA 90001" -269856,Lightning Charging Cable,1,14.95,10/28/19 07:51,"377 Cherry St, Los Angeles, CA 90001" -269857,Wired Headphones,2,11.99,10/24/19 10:45,"603 Jackson St, San Francisco, CA 94016" -269858,Google Phone,1,600,10/12/19 22:49,"127 Forest St, Boston, MA 02215" -269859,Bose SoundSport Headphones,1,99.99,10/12/19 14:32,"988 Center St, San Francisco, CA 94016" -269860,Bose SoundSport Headphones,1,99.99,10/23/19 10:54,"657 Hill St, San Francisco, CA 94016" -269861,Bose SoundSport Headphones,1,99.99,10/24/19 14:08,"855 7th St, Los Angeles, CA 90001" -269862,20in Monitor,1,109.99,10/11/19 08:22,"371 Lake St, Portland, OR 97035" -269863,USB-C Charging Cable,1,11.95,10/08/19 12:12,"497 Forest St, New York City, NY 10001" -269864,iPhone,1,700,10/13/19 12:55,"81 Jefferson St, San Francisco, CA 94016" -269865,Wired Headphones,1,11.99,10/28/19 08:27,"369 Jefferson St, Los Angeles, CA 90001" -269866,Bose SoundSport Headphones,1,99.99,10/28/19 17:10,"783 Willow St, Atlanta, GA 30301" -269867,AA Batteries (4-pack),1,3.84,10/23/19 02:56,"389 Center St, San Francisco, CA 94016" -269868,AAA Batteries (4-pack),1,2.99,10/06/19 04:45,"858 Spruce St, Boston, MA 02215" -269869,AA Batteries (4-pack),1,3.84,10/24/19 23:41,"662 14th St, Austin, TX 73301" -269870,Google Phone,1,600,10/15/19 18:56,"774 Forest St, Boston, MA 02215" -269871,Bose SoundSport Headphones,1,99.99,10/25/19 16:44,"252 4th St, New York City, NY 10001" -269872,AAA Batteries (4-pack),2,2.99,10/04/19 07:26,"422 Walnut St, San Francisco, CA 94016" -269873,20in Monitor,1,109.99,10/15/19 09:08,"480 10th St, New York City, NY 10001" -269874,AAA Batteries (4-pack),1,2.99,10/24/19 15:49,"469 Johnson St, Los Angeles, CA 90001" -269875,AA Batteries (4-pack),1,3.84,10/02/19 10:03,"650 Adams St, Los Angeles, CA 90001" -269876,USB-C Charging Cable,1,11.95,10/01/19 10:27,"478 9th St, Los Angeles, CA 90001" -269877,Apple Airpods Headphones,1,150,10/09/19 17:56,"833 North St, San Francisco, CA 94016" -269878,Flatscreen TV,1,300,10/16/19 18:15,"803 Main St, San Francisco, CA 94016" -269879,Bose SoundSport Headphones,1,99.99,10/22/19 19:55,"56 Park St, Seattle, WA 98101" -269880,AA Batteries (4-pack),1,3.84,10/28/19 20:55,"906 13th St, New York City, NY 10001" -269881,Lightning Charging Cable,1,14.95,10/07/19 06:08,"119 Hickory St, Los Angeles, CA 90001" -269882,Lightning Charging Cable,1,14.95,10/29/19 07:23,"740 13th St, Seattle, WA 98101" -269883,AA Batteries (4-pack),1,3.84,10/12/19 12:05,"849 7th St, San Francisco, CA 94016" -269884,27in FHD Monitor,1,149.99,10/10/19 18:57,"543 Hill St, Austin, TX 73301" -269885,Lightning Charging Cable,2,14.95,10/28/19 18:04,"480 8th St, San Francisco, CA 94016" -269886,27in 4K Gaming Monitor,1,389.99,10/06/19 08:53,"252 2nd St, San Francisco, CA 94016" -269887,iPhone,1,700,10/17/19 12:59,"302 West St, Atlanta, GA 30301" -269888,Google Phone,1,600,10/01/19 17:44,"468 North St, Portland, OR 97035" -269889,iPhone,1,700,10/16/19 15:10,"229 10th St, Austin, TX 73301" -269889,Lightning Charging Cable,1,14.95,10/16/19 15:10,"229 10th St, Austin, TX 73301" -269890,Apple Airpods Headphones,1,150,10/28/19 09:30,"546 South St, Dallas, TX 75001" -269891,Google Phone,1,600,10/12/19 14:39,"401 6th St, San Francisco, CA 94016" -269891,USB-C Charging Cable,1,11.95,10/12/19 14:39,"401 6th St, San Francisco, CA 94016" -269892,27in 4K Gaming Monitor,1,389.99,10/14/19 09:44,"126 North St, Los Angeles, CA 90001" -269893,AA Batteries (4-pack),2,3.84,10/12/19 12:35,"397 West St, Boston, MA 02215" -269894,Flatscreen TV,1,300,10/01/19 10:18,"128 2nd St, New York City, NY 10001" -269895,27in FHD Monitor,1,149.99,10/25/19 19:09,"159 Walnut St, San Francisco, CA 94016" -269896,USB-C Charging Cable,1,11.95,10/24/19 14:15,"271 Johnson St, Dallas, TX 75001" -269897,AAA Batteries (4-pack),1,2.99,10/29/19 20:21,"664 Elm St, Boston, MA 02215" -269898,Apple Airpods Headphones,1,150,10/21/19 14:50,"13 North St, Los Angeles, CA 90001" -269899,27in 4K Gaming Monitor,1,389.99,10/16/19 18:46,"844 Forest St, Seattle, WA 98101" -269900,Wired Headphones,1,11.99,10/11/19 14:14,"321 Washington St, Atlanta, GA 30301" -269901,iPhone,1,700,10/17/19 11:22,"735 Spruce St, Seattle, WA 98101" -269901,Lightning Charging Cable,1,14.95,10/17/19 11:22,"735 Spruce St, Seattle, WA 98101" -269901,Wired Headphones,1,11.99,10/17/19 11:22,"735 Spruce St, Seattle, WA 98101" -269902,USB-C Charging Cable,2,11.95,10/01/19 19:51,"844 Willow St, Boston, MA 02215" -269903,Lightning Charging Cable,1,14.95,10/25/19 14:38,"918 Jackson St, Los Angeles, CA 90001" -269904,Bose SoundSport Headphones,1,99.99,10/22/19 12:44,"511 Elm St, Boston, MA 02215" -269905,AA Batteries (4-pack),1,3.84,10/20/19 09:38,"39 Meadow St, Dallas, TX 75001" -269906,Apple Airpods Headphones,1,150,10/24/19 13:02,"828 West St, New York City, NY 10001" -269907,AAA Batteries (4-pack),1,2.99,10/23/19 21:50,"806 Madison St, San Francisco, CA 94016" -269908,Lightning Charging Cable,1,14.95,10/23/19 14:48,"842 12th St, Los Angeles, CA 90001" -269909,Lightning Charging Cable,1,14.95,10/12/19 20:08,"630 Meadow St, Atlanta, GA 30301" -269910,AAA Batteries (4-pack),1,2.99,10/02/19 20:39,"818 1st St, New York City, NY 10001" -269911,34in Ultrawide Monitor,1,379.99,10/12/19 17:45,"866 9th St, Seattle, WA 98101" -269912,Wired Headphones,1,11.99,10/23/19 22:59,"283 South St, Los Angeles, CA 90001" -269913,Lightning Charging Cable,1,14.95,10/22/19 12:48,"916 Park St, Atlanta, GA 30301" -269914,Wired Headphones,1,11.99,10/02/19 21:15,"922 Madison St, Seattle, WA 98101" -269915,AA Batteries (4-pack),1,3.84,10/29/19 12:51,"782 1st St, New York City, NY 10001" -269916,AAA Batteries (4-pack),1,2.99,10/12/19 01:56,"144 West St, Atlanta, GA 30301" -269917,USB-C Charging Cable,2,11.95,10/06/19 13:08,"14 Jackson St, Seattle, WA 98101" -269918,Lightning Charging Cable,1,14.95,10/26/19 17:41,"651 Hickory St, Atlanta, GA 30301" -269919,Apple Airpods Headphones,1,150,10/11/19 17:32,"431 Meadow St, Dallas, TX 75001" -269920,Bose SoundSport Headphones,1,99.99,10/16/19 19:58,"967 West St, San Francisco, CA 94016" -269921,27in FHD Monitor,1,149.99,10/07/19 11:39,"133 Washington St, Dallas, TX 75001" -269922,27in FHD Monitor,1,149.99,10/28/19 09:35,"74 Church St, Seattle, WA 98101" -269923,Macbook Pro Laptop,1,1700,10/17/19 19:06,"170 12th St, Seattle, WA 98101" -269924,AAA Batteries (4-pack),2,2.99,10/22/19 10:52,"314 2nd St, Boston, MA 02215" -269925,Bose SoundSport Headphones,1,99.99,10/28/19 12:16,"174 Pine St, Seattle, WA 98101" -269926,Wired Headphones,1,11.99,10/15/19 10:58,"280 North St, Los Angeles, CA 90001" -269927,Apple Airpods Headphones,1,150,10/25/19 14:48,"107 8th St, New York City, NY 10001" -269928,Bose SoundSport Headphones,2,99.99,10/18/19 07:34,"471 Pine St, Boston, MA 02215" -269929,34in Ultrawide Monitor,1,379.99,10/29/19 23:27,"813 4th St, New York City, NY 10001" -269930,Lightning Charging Cable,1,14.95,10/30/19 15:10,"98 6th St, New York City, NY 10001" -269931,AAA Batteries (4-pack),2,2.99,10/27/19 19:38,"744 Ridge St, New York City, NY 10001" -269932,Lightning Charging Cable,1,14.95,10/19/19 03:16,"594 Maple St, Portland, OR 97035" -269933,AAA Batteries (4-pack),2,2.99,10/21/19 08:32,"415 6th St, Atlanta, GA 30301" -269934,Flatscreen TV,1,300,10/04/19 13:07,"981 River St, Seattle, WA 98101" -269935,27in FHD Monitor,1,149.99,10/08/19 06:00,"88 4th St, Austin, TX 73301" -269936,Lightning Charging Cable,1,14.95,10/17/19 14:29,"796 Maple St, Portland, OR 97035" -269937,USB-C Charging Cable,1,11.95,10/13/19 12:29,"400 Jefferson St, Austin, TX 73301" -269938,20in Monitor,1,109.99,10/11/19 11:46,"653 Ridge St, San Francisco, CA 94016" -269939,AA Batteries (4-pack),1,3.84,10/30/19 22:15,"119 8th St, Austin, TX 73301" -269940,AA Batteries (4-pack),2,3.84,10/31/19 18:20,"329 Center St, Atlanta, GA 30301" -269941,iPhone,1,700,10/31/19 06:35,"170 Hickory St, Dallas, TX 75001" -269942,USB-C Charging Cable,1,11.95,10/24/19 15:41,"734 Meadow St, Boston, MA 02215" -269943,AAA Batteries (4-pack),2,2.99,10/16/19 22:04,"650 9th St, New York City, NY 10001" -269944,Apple Airpods Headphones,1,150,10/24/19 18:06,"836 9th St, Los Angeles, CA 90001" -269945,Vareebadd Phone,1,400,10/26/19 14:26,"130 6th St, Boston, MA 02215" -269946,27in 4K Gaming Monitor,1,389.99,10/12/19 13:49,"654 8th St, Boston, MA 02215" -269947,Lightning Charging Cable,2,14.95,10/11/19 21:35,"41 Forest St, Los Angeles, CA 90001" -269948,AA Batteries (4-pack),1,3.84,10/01/19 08:58,"263 Park St, New York City, NY 10001" -269949,27in 4K Gaming Monitor,1,389.99,10/31/19 23:34,"375 12th St, Austin, TX 73301" -269950,AA Batteries (4-pack),1,3.84,10/08/19 20:10,"386 Wilson St, Austin, TX 73301" -269951,Flatscreen TV,1,300,10/24/19 12:54,"80 Church St, Boston, MA 02215" -269952,AA Batteries (4-pack),2,3.84,10/12/19 20:17,"176 Willow St, Seattle, WA 98101" -269953,Apple Airpods Headphones,1,150,10/16/19 16:19,"966 5th St, Los Angeles, CA 90001" -269954,34in Ultrawide Monitor,1,379.99,10/31/19 19:54,"599 Highland St, Atlanta, GA 30301" -269955,Wired Headphones,1,11.99,10/05/19 00:46,"763 Willow St, Austin, TX 73301" -269956,AA Batteries (4-pack),2,3.84,10/03/19 12:28,"447 Cherry St, Dallas, TX 75001" -269957,27in FHD Monitor,1,149.99,10/14/19 18:38,"21 West St, Atlanta, GA 30301" -269958,Wired Headphones,1,11.99,10/26/19 19:58,"681 Willow St, Portland, ME 04101" -269959,AA Batteries (4-pack),1,3.84,10/04/19 12:54,"599 Lake St, Dallas, TX 75001" -269960,Wired Headphones,1,11.99,10/29/19 18:28,"43 8th St, Boston, MA 02215" -269961,AAA Batteries (4-pack),1,2.99,10/25/19 16:44,"966 Highland St, San Francisco, CA 94016" -269962,USB-C Charging Cable,1,11.95,10/22/19 12:31,"75 Jefferson St, San Francisco, CA 94016" -269963,Bose SoundSport Headphones,1,99.99,10/08/19 14:06,"748 Lakeview St, San Francisco, CA 94016" -269964,Flatscreen TV,1,300,10/01/19 15:09,"940 Forest St, New York City, NY 10001" -269965,Bose SoundSport Headphones,1,99.99,10/26/19 12:49,"411 6th St, Portland, OR 97035" -269966,ThinkPad Laptop,1,999.99,10/21/19 05:30,"462 Hill St, Dallas, TX 75001" -269967,AA Batteries (4-pack),1,3.84,10/02/19 17:22,"18 Lakeview St, Atlanta, GA 30301" -269968,AA Batteries (4-pack),1,3.84,10/28/19 08:22,"411 Lake St, Boston, MA 02215" -269969,27in FHD Monitor,1,149.99,10/29/19 20:17,"100 8th St, Los Angeles, CA 90001" -269970,Bose SoundSport Headphones,1,99.99,10/30/19 18:13,"238 Jackson St, San Francisco, CA 94016" -269971,Wired Headphones,1,11.99,10/24/19 17:25,"276 5th St, Austin, TX 73301" -269972,AA Batteries (4-pack),1,3.84,10/16/19 19:35,"497 12th St, Los Angeles, CA 90001" -269973,Lightning Charging Cable,1,14.95,10/29/19 13:39,"853 Spruce St, Atlanta, GA 30301" -269974,Lightning Charging Cable,1,14.95,10/15/19 01:46,"979 Highland St, San Francisco, CA 94016" -269975,Flatscreen TV,1,300,10/16/19 07:02,"599 Chestnut St, New York City, NY 10001" -269976,34in Ultrawide Monitor,1,379.99,10/29/19 21:15,"508 Adams St, New York City, NY 10001" -269977,USB-C Charging Cable,1,11.95,10/24/19 20:54,"330 Church St, Dallas, TX 75001" -269978,USB-C Charging Cable,1,11.95,10/28/19 17:19,"140 Cedar St, Los Angeles, CA 90001" -269979,Google Phone,1,600,10/18/19 11:44,"83 14th St, Dallas, TX 75001" -269979,Bose SoundSport Headphones,1,99.99,10/18/19 11:44,"83 14th St, Dallas, TX 75001" -269979,Wired Headphones,1,11.99,10/18/19 11:44,"83 14th St, Dallas, TX 75001" -269980,Macbook Pro Laptop,1,1700,10/18/19 20:11,"894 4th St, Portland, OR 97035" -269981,Lightning Charging Cable,1,14.95,10/02/19 13:20,"401 Elm St, Seattle, WA 98101" -269982,Wired Headphones,2,11.99,10/22/19 11:50,"304 Pine St, Austin, TX 73301" -269983,34in Ultrawide Monitor,1,379.99,10/16/19 19:15,"595 12th St, Boston, MA 02215" -269984,Wired Headphones,1,11.99,10/26/19 13:37,"842 Lake St, New York City, NY 10001" -269985,Lightning Charging Cable,1,14.95,10/03/19 06:06,"509 Lake St, Los Angeles, CA 90001" -269986,Macbook Pro Laptop,1,1700,10/16/19 21:42,"201 7th St, San Francisco, CA 94016" -269987,AA Batteries (4-pack),1,3.84,10/19/19 22:47,"645 13th St, Seattle, WA 98101" -269987,AAA Batteries (4-pack),3,2.99,10/19/19 22:47,"645 13th St, Seattle, WA 98101" -269988,Lightning Charging Cable,1,14.95,10/30/19 17:21,"251 Ridge St, San Francisco, CA 94016" -269989,iPhone,1,700,10/27/19 18:11,"439 Spruce St, San Francisco, CA 94016" -269990,USB-C Charging Cable,1,11.95,10/24/19 13:07,"316 Forest St, New York City, NY 10001" -269991,AA Batteries (4-pack),1,3.84,10/10/19 10:14,"714 Walnut St, Los Angeles, CA 90001" -269992,Bose SoundSport Headphones,1,99.99,10/04/19 13:57,"803 13th St, Boston, MA 02215" -269993,Bose SoundSport Headphones,1,99.99,10/25/19 09:00,"517 Lincoln St, Dallas, TX 75001" -269994,Bose SoundSport Headphones,1,99.99,10/25/19 21:12,"441 Walnut St, Portland, OR 97035" -269995,27in 4K Gaming Monitor,1,389.99,10/16/19 10:49,"849 Lincoln St, Austin, TX 73301" -269996,AAA Batteries (4-pack),1,2.99,10/31/19 15:56,"735 Ridge St, Austin, TX 73301" -269997,AA Batteries (4-pack),1,3.84,10/04/19 15:03,"496 14th St, Atlanta, GA 30301" -269998,Bose SoundSport Headphones,1,99.99,10/23/19 20:44,"758 9th St, Los Angeles, CA 90001" -269999,ThinkPad Laptop,1,999.99,10/22/19 07:00,"980 Jefferson St, New York City, NY 10001" -270000,Google Phone,1,600,10/09/19 11:54,"140 Hill St, San Francisco, CA 94016" -270001,Google Phone,1,600,10/03/19 18:08,"40 River St, San Francisco, CA 94016" -270002,Bose SoundSport Headphones,1,99.99,10/02/19 17:15,"583 Highland St, Los Angeles, CA 90001" -270003,AAA Batteries (4-pack),1,2.99,10/16/19 17:25,"260 Park St, Los Angeles, CA 90001" -270004,Wired Headphones,2,11.99,10/15/19 01:23,"495 Chestnut St, Boston, MA 02215" -270005,Flatscreen TV,1,300,10/10/19 17:36,"967 Cherry St, New York City, NY 10001" -270006,AAA Batteries (4-pack),1,2.99,10/14/19 07:30,"900 Madison St, New York City, NY 10001" -270007,Google Phone,1,600,10/17/19 07:45,"536 Center St, Los Angeles, CA 90001" -270008,Wired Headphones,1,11.99,10/27/19 12:49,"149 Highland St, Portland, OR 97035" -270009,Lightning Charging Cable,1,14.95,10/22/19 16:19,"549 2nd St, Austin, TX 73301" -270010,27in FHD Monitor,1,149.99,10/27/19 14:49,"932 Cherry St, Los Angeles, CA 90001" -270011,Flatscreen TV,1,300,10/27/19 16:36,"294 Highland St, Boston, MA 02215" -270012,AAA Batteries (4-pack),1,2.99,10/13/19 01:09,"136 7th St, New York City, NY 10001" -270013,AAA Batteries (4-pack),1,2.99,10/01/19 10:56,"360 Lincoln St, New York City, NY 10001" -270014,Apple Airpods Headphones,1,150,10/06/19 11:49,"463 14th St, Dallas, TX 75001" -270015,iPhone,1,700,10/06/19 15:34,"533 Jackson St, Boston, MA 02215" -270016,27in FHD Monitor,1,149.99,10/23/19 08:25,"890 14th St, San Francisco, CA 94016" -270017,AA Batteries (4-pack),3,3.84,10/27/19 12:43,"69 Cherry St, New York City, NY 10001" -270018,27in 4K Gaming Monitor,1,389.99,10/21/19 10:00,"926 Willow St, Los Angeles, CA 90001" -270019,Flatscreen TV,1,300,10/17/19 10:36,"833 10th St, Boston, MA 02215" -270020,ThinkPad Laptop,1,999.99,10/21/19 22:11,"421 Church St, San Francisco, CA 94016" -270021,Wired Headphones,1,11.99,10/09/19 06:44,"525 11th St, New York City, NY 10001" -270022,USB-C Charging Cable,2,11.95,10/30/19 12:20,"541 10th St, Seattle, WA 98101" -270023,Apple Airpods Headphones,1,150,10/12/19 21:42,"362 Church St, Dallas, TX 75001" -270024,AAA Batteries (4-pack),1,2.99,10/07/19 16:19,"280 5th St, Boston, MA 02215" -270025,AAA Batteries (4-pack),1,2.99,10/05/19 11:11,"253 West St, San Francisco, CA 94016" -270026,Lightning Charging Cable,1,14.95,10/30/19 10:44,"755 North St, Boston, MA 02215" -270027,AA Batteries (4-pack),1,3.84,10/30/19 11:10,"820 11th St, San Francisco, CA 94016" -270028,AA Batteries (4-pack),1,3.84,10/19/19 20:22,"370 Center St, New York City, NY 10001" -270029,Wired Headphones,2,11.99,10/09/19 02:17,"87 Willow St, San Francisco, CA 94016" -270030,Lightning Charging Cable,1,14.95,10/11/19 17:13,"432 Elm St, Los Angeles, CA 90001" -270031,Bose SoundSport Headphones,1,99.99,10/06/19 14:42,"835 South St, San Francisco, CA 94016" -270032,Wired Headphones,2,11.99,10/23/19 20:12,"227 Meadow St, Portland, OR 97035" -270033,Bose SoundSport Headphones,1,99.99,10/12/19 00:44,"238 Hickory St, Atlanta, GA 30301" -270034,USB-C Charging Cable,1,11.95,10/04/19 08:20,"367 13th St, Boston, MA 02215" -270035,USB-C Charging Cable,1,11.95,10/15/19 07:58,"818 Sunset St, Dallas, TX 75001" -270036,Wired Headphones,1,11.99,10/22/19 11:03,"791 South St, Los Angeles, CA 90001" -270037,Bose SoundSport Headphones,2,99.99,10/12/19 19:31,"424 Highland St, Seattle, WA 98101" -270038,USB-C Charging Cable,1,11.95,10/04/19 14:35,"312 West St, Boston, MA 02215" -270039,Bose SoundSport Headphones,1,99.99,10/17/19 06:11,"59 Dogwood St, New York City, NY 10001" -270040,Bose SoundSport Headphones,1,99.99,10/07/19 11:59,"380 6th St, San Francisco, CA 94016" -270041,USB-C Charging Cable,1,11.95,10/02/19 13:51,"59 Walnut St, New York City, NY 10001" -270042,USB-C Charging Cable,1,11.95,10/11/19 14:26,"345 Washington St, Dallas, TX 75001" -270043,Apple Airpods Headphones,1,150,10/02/19 02:14,"319 4th St, San Francisco, CA 94016" -270044,USB-C Charging Cable,1,11.95,10/16/19 07:01,"540 1st St, Portland, OR 97035" -270045,34in Ultrawide Monitor,1,379.99,10/03/19 20:27,"171 5th St, Los Angeles, CA 90001" -270046,Lightning Charging Cable,1,14.95,10/26/19 14:17,"114 Washington St, New York City, NY 10001" -270047,27in 4K Gaming Monitor,1,389.99,10/29/19 09:16,"120 Madison St, San Francisco, CA 94016" -270048,AAA Batteries (4-pack),1,2.99,10/04/19 22:37,"669 Jackson St, Seattle, WA 98101" -270049,iPhone,1,700,10/05/19 14:35,"404 6th St, Dallas, TX 75001" -270050,AA Batteries (4-pack),1,3.84,10/12/19 11:17,"773 1st St, Atlanta, GA 30301" -270050,Wired Headphones,1,11.99,10/12/19 11:17,"773 1st St, Atlanta, GA 30301" -270051,Wired Headphones,1,11.99,10/05/19 21:46,"296 Ridge St, Atlanta, GA 30301" -270052,Wired Headphones,1,11.99,10/20/19 13:12,"191 Cherry St, San Francisco, CA 94016" -270053,Wired Headphones,1,11.99,10/10/19 19:42,"720 7th St, San Francisco, CA 94016" -270054,USB-C Charging Cable,1,11.95,10/31/19 08:12,"946 Lakeview St, Seattle, WA 98101" -270055,AAA Batteries (4-pack),1,2.99,10/28/19 12:56,"840 Johnson St, San Francisco, CA 94016" -270056,ThinkPad Laptop,1,999.99,10/14/19 10:58,"810 Church St, Dallas, TX 75001" -270057,Wired Headphones,1,11.99,10/19/19 00:27,"542 Ridge St, Los Angeles, CA 90001" -270058,Lightning Charging Cable,1,14.95,10/30/19 19:15,"959 Center St, New York City, NY 10001" -270059,USB-C Charging Cable,1,11.95,10/08/19 16:52,"823 North St, San Francisco, CA 94016" -270060,AA Batteries (4-pack),2,3.84,10/15/19 13:20,"649 Ridge St, San Francisco, CA 94016" -270060,Wired Headphones,2,11.99,10/15/19 13:20,"649 Ridge St, San Francisco, CA 94016" -270061,Bose SoundSport Headphones,1,99.99,10/24/19 13:28,"439 Lakeview St, San Francisco, CA 94016" -270062,Bose SoundSport Headphones,1,99.99,10/26/19 20:15,"389 10th St, Seattle, WA 98101" -270063,USB-C Charging Cable,1,11.95,10/20/19 06:08,"144 North St, Austin, TX 73301" -270064,AAA Batteries (4-pack),2,2.99,10/15/19 17:30,"399 Highland St, Austin, TX 73301" -270065,27in FHD Monitor,1,149.99,10/29/19 20:17,"71 10th St, Portland, ME 04101" -270066,Wired Headphones,1,11.99,10/14/19 23:14,"265 River St, Dallas, TX 75001" -270067,34in Ultrawide Monitor,1,379.99,10/25/19 19:54,"579 4th St, San Francisco, CA 94016" -270068,AA Batteries (4-pack),2,3.84,10/01/19 13:24,"513 Pine St, Dallas, TX 75001" -270069,27in FHD Monitor,1,149.99,10/11/19 18:39,"156 Hickory St, Atlanta, GA 30301" -270070,20in Monitor,1,109.99,10/18/19 12:44,"289 Ridge St, San Francisco, CA 94016" -270071,Bose SoundSport Headphones,1,99.99,10/30/19 10:58,"739 Wilson St, Seattle, WA 98101" -270072,Lightning Charging Cable,1,14.95,10/20/19 18:23,"389 South St, Los Angeles, CA 90001" -270072,Flatscreen TV,1,300,10/20/19 18:23,"389 South St, Los Angeles, CA 90001" -270073,USB-C Charging Cable,1,11.95,10/11/19 00:11,"490 Park St, Seattle, WA 98101" -270074,Google Phone,1,600,10/22/19 11:46,"817 Elm St, San Francisco, CA 94016" -270075,Wired Headphones,1,11.99,10/07/19 11:30,"484 Pine St, Atlanta, GA 30301" -270076,AAA Batteries (4-pack),1,2.99,10/04/19 07:17,"996 4th St, Atlanta, GA 30301" -270077,Bose SoundSport Headphones,1,99.99,10/26/19 16:04,"298 11th St, San Francisco, CA 94016" -270078,27in FHD Monitor,1,149.99,10/21/19 03:50,"810 Sunset St, San Francisco, CA 94016" -270079,Apple Airpods Headphones,1,150,10/18/19 10:51,"783 West St, Seattle, WA 98101" -270080,Wired Headphones,1,11.99,10/13/19 11:54,"403 9th St, Los Angeles, CA 90001" -270081,USB-C Charging Cable,1,11.95,10/21/19 08:54,"725 Hickory St, San Francisco, CA 94016" -270082,AA Batteries (4-pack),1,3.84,10/21/19 06:34,"899 Church St, Los Angeles, CA 90001" -270083,20in Monitor,1,109.99,10/30/19 18:04,"777 9th St, New York City, NY 10001" -270084,20in Monitor,1,109.99,10/08/19 17:17,"667 Madison St, Atlanta, GA 30301" -270085,AA Batteries (4-pack),1,3.84,10/25/19 22:37,"179 Main St, San Francisco, CA 94016" -270086,USB-C Charging Cable,1,11.95,10/05/19 15:48,"760 12th St, New York City, NY 10001" -270087,Lightning Charging Cable,1,14.95,10/16/19 17:50,"115 Spruce St, New York City, NY 10001" -270088,Wired Headphones,1,11.99,10/25/19 17:14,"571 Lake St, San Francisco, CA 94016" -270089,USB-C Charging Cable,1,11.95,10/21/19 15:50,"410 12th St, New York City, NY 10001" -270090,ThinkPad Laptop,1,999.99,10/29/19 15:44,"219 14th St, San Francisco, CA 94016" -270091,Lightning Charging Cable,1,14.95,10/05/19 10:53,"507 4th St, Boston, MA 02215" -270092,27in 4K Gaming Monitor,1,389.99,10/12/19 15:10,"546 9th St, Dallas, TX 75001" -270093,USB-C Charging Cable,1,11.95,10/15/19 16:31,"886 Wilson St, Atlanta, GA 30301" -270094,34in Ultrawide Monitor,1,379.99,10/17/19 10:43,"920 13th St, San Francisco, CA 94016" -270095,USB-C Charging Cable,1,11.95,10/12/19 20:13,"801 6th St, Seattle, WA 98101" -270096,USB-C Charging Cable,1,11.95,10/24/19 22:07,"169 Willow St, Los Angeles, CA 90001" -270097,AA Batteries (4-pack),1,3.84,10/18/19 16:56,"91 4th St, San Francisco, CA 94016" -270098,Vareebadd Phone,1,400,10/04/19 14:01,"742 Cherry St, Dallas, TX 75001" -270099,20in Monitor,1,109.99,10/04/19 08:02,"632 10th St, New York City, NY 10001" -270100,Macbook Pro Laptop,1,1700,10/15/19 21:27,"61 Wilson St, Los Angeles, CA 90001" -270101,AA Batteries (4-pack),1,3.84,10/28/19 09:49,"314 Jackson St, Los Angeles, CA 90001" -270102,AA Batteries (4-pack),1,3.84,10/06/19 14:38,"668 8th St, San Francisco, CA 94016" -270103,20in Monitor,1,109.99,10/22/19 11:44,"864 Hill St, San Francisco, CA 94016" -270104,Lightning Charging Cable,1,14.95,10/02/19 22:31,"147 Walnut St, New York City, NY 10001" -270105,AA Batteries (4-pack),1,3.84,10/24/19 17:08,"943 River St, New York City, NY 10001" -270106,Bose SoundSport Headphones,1,99.99,10/04/19 20:24,"583 10th St, New York City, NY 10001" -270107,Google Phone,1,600,10/08/19 01:36,"301 Forest St, Seattle, WA 98101" -270107,USB-C Charging Cable,1,11.95,10/08/19 01:36,"301 Forest St, Seattle, WA 98101" -270108,AAA Batteries (4-pack),1,2.99,10/08/19 07:37,"597 Hickory St, Boston, MA 02215" -270109,AA Batteries (4-pack),1,3.84,10/26/19 19:42,"871 Willow St, Atlanta, GA 30301" -270110,Apple Airpods Headphones,1,150,10/21/19 12:03,"654 Lincoln St, Seattle, WA 98101" -270111,Lightning Charging Cable,2,14.95,10/22/19 13:29,"745 North St, Dallas, TX 75001" -270112,34in Ultrawide Monitor,1,379.99,10/21/19 15:28,"676 Walnut St, Boston, MA 02215" -270113,27in FHD Monitor,1,149.99,10/30/19 09:01,"790 Wilson St, Seattle, WA 98101" -270114,Bose SoundSport Headphones,1,99.99,10/03/19 16:04,"822 Pine St, Boston, MA 02215" -270115,Apple Airpods Headphones,1,150,10/21/19 22:53,"923 Cedar St, New York City, NY 10001" -270116,AAA Batteries (4-pack),3,2.99,10/22/19 06:15,"662 7th St, San Francisco, CA 94016" -270117,AA Batteries (4-pack),1,3.84,10/25/19 08:03,"1 River St, New York City, NY 10001" -270118,USB-C Charging Cable,2,11.95,10/27/19 20:43,"101 12th St, Portland, OR 97035" -270119,Apple Airpods Headphones,1,150,10/16/19 00:03,"244 South St, New York City, NY 10001" -270120,27in 4K Gaming Monitor,1,389.99,10/31/19 17:32,"710 Adams St, Dallas, TX 75001" -270121,AAA Batteries (4-pack),1,2.99,10/08/19 11:19,"806 14th St, Austin, TX 73301" -270122,Google Phone,1,600,10/26/19 13:12,"777 Forest St, Boston, MA 02215" -270123,Lightning Charging Cable,1,14.95,10/01/19 14:06,"139 Madison St, San Francisco, CA 94016" -270124,AAA Batteries (4-pack),1,2.99,10/23/19 08:14,"912 Church St, Boston, MA 02215" -270125,USB-C Charging Cable,1,11.95,10/24/19 09:31,"344 Willow St, Seattle, WA 98101" -270126,Lightning Charging Cable,1,14.95,10/31/19 21:43,"153 4th St, Boston, MA 02215" -270127,AAA Batteries (4-pack),1,2.99,10/06/19 16:15,"207 Jefferson St, New York City, NY 10001" -270128,34in Ultrawide Monitor,1,379.99,10/31/19 13:44,"537 Church St, Austin, TX 73301" -270129,Bose SoundSport Headphones,1,99.99,10/29/19 19:04,"26 4th St, San Francisco, CA 94016" -270130,iPhone,1,700,10/26/19 18:25,"530 Cherry St, Austin, TX 73301" -270131,Google Phone,1,600,10/01/19 13:38,"51 Highland St, Los Angeles, CA 90001" -270132,AA Batteries (4-pack),1,3.84,10/07/19 19:21,"696 Maple St, New York City, NY 10001" -270133,iPhone,1,700,10/03/19 18:57,"273 Jackson St, Boston, MA 02215" -270134,27in FHD Monitor,1,149.99,10/15/19 20:20,"952 Sunset St, Los Angeles, CA 90001" -270135,Apple Airpods Headphones,1,150,10/09/19 17:28,"691 Cedar St, San Francisco, CA 94016" -270136,Bose SoundSport Headphones,1,99.99,10/28/19 10:30,"911 Adams St, San Francisco, CA 94016" -270137,AA Batteries (4-pack),1,3.84,10/17/19 14:33,"668 1st St, Seattle, WA 98101" -270138,Apple Airpods Headphones,1,150,10/08/19 07:36,"162 10th St, New York City, NY 10001" -270139,USB-C Charging Cable,2,11.95,10/15/19 19:17,"51 Wilson St, Los Angeles, CA 90001" -270140,Apple Airpods Headphones,1,150,10/13/19 17:10,"443 Forest St, Boston, MA 02215" -270141,Apple Airpods Headphones,1,150,10/13/19 01:09,"908 Hickory St, New York City, NY 10001" -270142,AAA Batteries (4-pack),1,2.99,10/31/19 19:30,"596 Cherry St, Atlanta, GA 30301" -270142,Lightning Charging Cable,1,14.95,10/31/19 19:30,"596 Cherry St, Atlanta, GA 30301" -270143,27in FHD Monitor,1,149.99,10/17/19 10:41,"593 Wilson St, Dallas, TX 75001" -270144,Apple Airpods Headphones,1,150,10/12/19 14:43,"483 Cedar St, San Francisco, CA 94016" -270145,Wired Headphones,1,11.99,10/18/19 02:32,"673 10th St, Los Angeles, CA 90001" -270146,27in 4K Gaming Monitor,1,389.99,10/10/19 15:00,"440 Elm St, Austin, TX 73301" -270147,AA Batteries (4-pack),1,3.84,10/19/19 17:42,"270 Hill St, Los Angeles, CA 90001" -270148,AAA Batteries (4-pack),1,2.99,10/01/19 19:06,"3 Madison St, Portland, OR 97035" -270149,27in FHD Monitor,1,149.99,10/26/19 13:30,"198 Church St, Los Angeles, CA 90001" -270150,Bose SoundSport Headphones,1,99.99,10/28/19 11:50,"857 Highland St, Atlanta, GA 30301" -270151,Bose SoundSport Headphones,1,99.99,10/28/19 12:23,"782 10th St, San Francisco, CA 94016" -270152,Wired Headphones,1,11.99,10/03/19 12:10,"186 North St, Boston, MA 02215" -270153,USB-C Charging Cable,1,11.95,10/04/19 23:29,"283 River St, San Francisco, CA 94016" -270154,Wired Headphones,1,11.99,10/15/19 14:14,"462 Wilson St, Los Angeles, CA 90001" -270155,Bose SoundSport Headphones,1,99.99,10/14/19 03:35,"964 Hickory St, Atlanta, GA 30301" -270156,AAA Batteries (4-pack),1,2.99,10/30/19 16:38,"817 West St, Boston, MA 02215" -270157,34in Ultrawide Monitor,1,379.99,10/31/19 16:31,"149 South St, San Francisco, CA 94016" -270158,Apple Airpods Headphones,1,150,10/27/19 12:07,"884 Sunset St, San Francisco, CA 94016" -270159,AAA Batteries (4-pack),1,2.99,10/09/19 18:15,"671 South St, San Francisco, CA 94016" -270160,iPhone,1,700,10/21/19 11:54,"860 Jackson St, Austin, TX 73301" -270161,Google Phone,1,600,10/29/19 13:04,"171 Chestnut St, Los Angeles, CA 90001" -270162,Lightning Charging Cable,1,14.95,10/22/19 09:54,"452 Center St, Dallas, TX 75001" -270163,USB-C Charging Cable,1,11.95,10/29/19 13:36,"886 Ridge St, San Francisco, CA 94016" -270164,Bose SoundSport Headphones,1,99.99,10/20/19 00:36,"193 Hickory St, Los Angeles, CA 90001" -270165,AA Batteries (4-pack),2,3.84,10/26/19 00:21,"122 Main St, New York City, NY 10001" -270166,Macbook Pro Laptop,1,1700,10/19/19 15:18,"343 Park St, New York City, NY 10001" -270167,27in FHD Monitor,1,149.99,10/15/19 21:17,"944 Forest St, Atlanta, GA 30301" -270168,USB-C Charging Cable,1,11.95,10/30/19 13:30,"557 North St, New York City, NY 10001" -270169,iPhone,1,700,10/17/19 15:37,"22 Maple St, Boston, MA 02215" -270170,Macbook Pro Laptop,1,1700,10/02/19 12:21,"737 13th St, Seattle, WA 98101" -270171,AA Batteries (4-pack),1,3.84,10/14/19 13:05,"924 Adams St, Los Angeles, CA 90001" -270172,AAA Batteries (4-pack),1,2.99,10/12/19 11:00,"20 Sunset St, Atlanta, GA 30301" -270173,34in Ultrawide Monitor,1,379.99,10/21/19 16:32,"967 9th St, New York City, NY 10001" -270174,Wired Headphones,1,11.99,10/05/19 09:38,"482 Lakeview St, New York City, NY 10001" -270175,AAA Batteries (4-pack),1,2.99,10/25/19 10:57,"201 Elm St, Boston, MA 02215" -270175,Apple Airpods Headphones,1,150,10/25/19 10:57,"201 Elm St, Boston, MA 02215" -270176,Bose SoundSport Headphones,1,99.99,10/06/19 14:17,"522 Highland St, Dallas, TX 75001" -270177,20in Monitor,1,109.99,10/09/19 21:33,"313 Sunset St, Seattle, WA 98101" -270178,Wired Headphones,1,11.99,10/19/19 16:09,"378 Sunset St, Los Angeles, CA 90001" -270179,Lightning Charging Cable,1,14.95,10/31/19 08:18,"524 Chestnut St, Portland, OR 97035" -270180,AAA Batteries (4-pack),2,2.99,10/23/19 08:28,"165 Lakeview St, New York City, NY 10001" -270181,Apple Airpods Headphones,1,150,10/23/19 12:18,"651 River St, Dallas, TX 75001" -270182,AA Batteries (4-pack),1,3.84,10/14/19 20:12,"47 Sunset St, Seattle, WA 98101" -270183,Macbook Pro Laptop,1,1700,10/25/19 15:44,"655 Wilson St, Atlanta, GA 30301" -270184,AA Batteries (4-pack),1,3.84,10/21/19 21:02,"275 Main St, Dallas, TX 75001" -270185,Bose SoundSport Headphones,1,99.99,10/18/19 21:29,"585 14th St, San Francisco, CA 94016" -270186,Lightning Charging Cable,1,14.95,10/14/19 20:34,"419 Washington St, Boston, MA 02215" -270187,AA Batteries (4-pack),1,3.84,10/23/19 16:21,"812 River St, Portland, OR 97035" -270188,Wired Headphones,1,11.99,10/08/19 16:41,"712 Johnson St, New York City, NY 10001" -270189,USB-C Charging Cable,1,11.95,10/31/19 15:40,"13 Ridge St, Boston, MA 02215" -270190,Bose SoundSport Headphones,2,99.99,10/26/19 23:29,"135 1st St, Boston, MA 02215" -270191,Wired Headphones,1,11.99,10/17/19 18:15,"410 Chestnut St, New York City, NY 10001" -270192,AA Batteries (4-pack),1,3.84,10/31/19 11:42,"997 South St, Boston, MA 02215" -270193,Wired Headphones,1,11.99,10/24/19 11:28,"345 Hickory St, San Francisco, CA 94016" -270194,USB-C Charging Cable,1,11.95,10/08/19 17:31,"295 Sunset St, Los Angeles, CA 90001" -270195,Flatscreen TV,1,300,10/31/19 09:12,"326 North St, Dallas, TX 75001" -270196,USB-C Charging Cable,1,11.95,10/22/19 02:22,"265 Johnson St, San Francisco, CA 94016" -270197,Google Phone,1,600,10/26/19 13:12,"179 Cherry St, New York City, NY 10001" -270198,AAA Batteries (4-pack),1,2.99,10/06/19 12:32,"402 Jefferson St, San Francisco, CA 94016" -270199,AA Batteries (4-pack),4,3.84,10/21/19 18:35,"6 Walnut St, Los Angeles, CA 90001" -270200,Lightning Charging Cable,1,14.95,10/18/19 20:00,"364 Cherry St, Los Angeles, CA 90001" -270201,Macbook Pro Laptop,1,1700,10/01/19 20:29,"966 1st St, Atlanta, GA 30301" -270202,Wired Headphones,1,11.99,10/23/19 11:02,"614 Madison St, Boston, MA 02215" -270203,ThinkPad Laptop,1,999.99,10/16/19 15:52,"205 Madison St, Atlanta, GA 30301" -270204,Apple Airpods Headphones,1,150,10/06/19 07:03,"344 1st St, Atlanta, GA 30301" -270205,27in 4K Gaming Monitor,1,389.99,10/06/19 22:31,"678 Johnson St, Seattle, WA 98101" -270206,27in 4K Gaming Monitor,1,389.99,10/23/19 12:47,"783 Hill St, Dallas, TX 75001" -270207,AAA Batteries (4-pack),1,2.99,10/29/19 10:20,"304 13th St, New York City, NY 10001" -270208,Google Phone,1,600,10/05/19 17:16,"548 Jefferson St, Dallas, TX 75001" -270208,USB-C Charging Cable,1,11.95,10/05/19 17:16,"548 Jefferson St, Dallas, TX 75001" -270209,Bose SoundSport Headphones,1,99.99,10/09/19 12:39,"192 8th St, Portland, ME 04101" -270210,27in 4K Gaming Monitor,1,389.99,10/17/19 17:13,"591 4th St, San Francisco, CA 94016" -270211,Wired Headphones,1,11.99,10/04/19 12:37,"176 1st St, Portland, OR 97035" -270212,ThinkPad Laptop,1,999.99,10/16/19 22:44,"996 Elm St, Boston, MA 02215" -270213,Wired Headphones,1,11.99,10/21/19 17:07,"808 Dogwood St, San Francisco, CA 94016" -270214,Lightning Charging Cable,1,14.95,10/13/19 22:36,"547 South St, San Francisco, CA 94016" -270215,USB-C Charging Cable,1,11.95,10/06/19 16:40,"458 West St, Los Angeles, CA 90001" -270216,Bose SoundSport Headphones,1,99.99,10/25/19 15:47,"770 Hickory St, Austin, TX 73301" -270217,Apple Airpods Headphones,1,150,10/11/19 14:37,"837 Jefferson St, New York City, NY 10001" -270218,Flatscreen TV,1,300,10/06/19 17:11,"912 Jefferson St, Los Angeles, CA 90001" -270219,Apple Airpods Headphones,1,150,10/21/19 13:07,"128 Pine St, New York City, NY 10001" -270220,Wired Headphones,1,11.99,10/12/19 21:32,"102 11th St, New York City, NY 10001" -270221,Flatscreen TV,1,300,10/31/19 12:11,"673 Willow St, Portland, OR 97035" -270222,ThinkPad Laptop,1,999.99,10/23/19 08:47,"337 12th St, San Francisco, CA 94016" -270223,Google Phone,1,600,10/25/19 18:53,"423 Elm St, Boston, MA 02215" -270223,Bose SoundSport Headphones,1,99.99,10/25/19 18:53,"423 Elm St, Boston, MA 02215" -270224,27in FHD Monitor,1,149.99,10/26/19 00:10,"981 8th St, San Francisco, CA 94016" -270225,USB-C Charging Cable,1,11.95,10/20/19 20:58,"647 Lakeview St, New York City, NY 10001" -270226,Bose SoundSport Headphones,1,99.99,10/01/19 20:49,"210 Adams St, Los Angeles, CA 90001" -270227,AA Batteries (4-pack),3,3.84,10/17/19 14:13,"42 Meadow St, New York City, NY 10001" -270228,Vareebadd Phone,1,400,10/13/19 11:28,"33 South St, Portland, OR 97035" -270228,USB-C Charging Cable,2,11.95,10/13/19 11:28,"33 South St, Portland, OR 97035" -270229,Flatscreen TV,1,300,10/07/19 14:41,"7 Hill St, Los Angeles, CA 90001" -270230,Wired Headphones,1,11.99,10/23/19 14:45,"592 West St, San Francisco, CA 94016" -270231,Lightning Charging Cable,1,14.95,10/04/19 00:15,"854 8th St, Boston, MA 02215" -270232,USB-C Charging Cable,1,11.95,10/09/19 20:03,"943 Sunset St, San Francisco, CA 94016" -270233,AA Batteries (4-pack),3,3.84,10/10/19 18:23,"459 Hill St, New York City, NY 10001" -270234,Lightning Charging Cable,1,14.95,10/01/19 11:34,"75 Maple St, San Francisco, CA 94016" -270235,Apple Airpods Headphones,1,150,10/15/19 14:48,"40 Park St, Austin, TX 73301" -270236,Wired Headphones,1,11.99,10/04/19 19:11,"771 Johnson St, Boston, MA 02215" -270237,Wired Headphones,1,11.99,10/03/19 09:19,"635 8th St, San Francisco, CA 94016" -270238,Bose SoundSport Headphones,1,99.99,10/13/19 19:50,"340 Lake St, Los Angeles, CA 90001" -270239,Lightning Charging Cable,1,14.95,10/15/19 16:25,"533 Forest St, San Francisco, CA 94016" -270240,Lightning Charging Cable,1,14.95,10/20/19 02:36,"237 Church St, Atlanta, GA 30301" -270241,Lightning Charging Cable,1,14.95,10/18/19 11:38,"579 8th St, Portland, OR 97035" -270242,AA Batteries (4-pack),1,3.84,10/25/19 10:11,"193 Highland St, Dallas, TX 75001" -270243,Macbook Pro Laptop,1,1700,10/02/19 17:13,"699 9th St, San Francisco, CA 94016" -270244,ThinkPad Laptop,1,999.99,10/19/19 10:33,"88 West St, Portland, ME 04101" -270245,AAA Batteries (4-pack),1,2.99,10/13/19 12:34,"210 Highland St, Austin, TX 73301" -270246,27in 4K Gaming Monitor,1,389.99,10/24/19 14:19,"290 Cherry St, Atlanta, GA 30301" -270246,USB-C Charging Cable,1,11.95,10/24/19 14:19,"290 Cherry St, Atlanta, GA 30301" -270247,Lightning Charging Cable,1,14.95,10/08/19 14:34,"145 11th St, Boston, MA 02215" -270248,Bose SoundSport Headphones,1,99.99,10/19/19 12:20,"470 Maple St, Atlanta, GA 30301" -270249,Flatscreen TV,1,300,10/01/19 16:02,"422 13th St, Dallas, TX 75001" -270250,USB-C Charging Cable,2,11.95,10/16/19 20:36,"695 Spruce St, New York City, NY 10001" -270251,Bose SoundSport Headphones,1,99.99,10/19/19 16:47,"187 Park St, Atlanta, GA 30301" -270252,USB-C Charging Cable,1,11.95,10/21/19 18:50,"4 8th St, Seattle, WA 98101" -270253,Lightning Charging Cable,1,14.95,10/31/19 22:44,"332 Lincoln St, Atlanta, GA 30301" -270254,ThinkPad Laptop,1,999.99,10/26/19 17:17,"403 Madison St, Los Angeles, CA 90001" -270255,27in FHD Monitor,1,149.99,10/06/19 17:14,"672 Lake St, Seattle, WA 98101" -270256,AA Batteries (4-pack),2,3.84,10/08/19 11:24,"16 Dogwood St, New York City, NY 10001" -270257,AA Batteries (4-pack),1,3.84,10/01/19 17:41,"267 Meadow St, Los Angeles, CA 90001" -270258,Google Phone,1,600,10/31/19 11:30,"934 North St, Boston, MA 02215" -270259,USB-C Charging Cable,1,11.95,10/09/19 15:42,"921 5th St, Austin, TX 73301" -270260,AA Batteries (4-pack),1,3.84,10/13/19 22:31,"278 Johnson St, San Francisco, CA 94016" -270261,Lightning Charging Cable,1,14.95,10/10/19 09:28,"597 Jefferson St, Atlanta, GA 30301" -270262,Lightning Charging Cable,1,14.95,10/25/19 13:10,"825 14th St, Boston, MA 02215" -270263,Bose SoundSport Headphones,1,99.99,10/19/19 08:56,"481 5th St, Los Angeles, CA 90001" -270264,AA Batteries (4-pack),1,3.84,10/04/19 10:37,"431 Cedar St, Los Angeles, CA 90001" -270265,34in Ultrawide Monitor,1,379.99,10/02/19 13:23,"584 8th St, Portland, OR 97035" -270266,Bose SoundSport Headphones,1,99.99,10/19/19 22:56,"496 Willow St, Dallas, TX 75001" -270267,Lightning Charging Cable,1,14.95,10/18/19 17:43,"345 Jackson St, New York City, NY 10001" -270268,Google Phone,1,600,10/26/19 16:09,"479 Highland St, San Francisco, CA 94016" -270268,Bose SoundSport Headphones,1,99.99,10/26/19 16:09,"479 Highland St, San Francisco, CA 94016" -270269,USB-C Charging Cable,1,11.95,10/16/19 10:45,"408 Cedar St, Portland, OR 97035" -270270,34in Ultrawide Monitor,1,379.99,10/11/19 10:03,"65 River St, Atlanta, GA 30301" -270271,Wired Headphones,1,11.99,10/30/19 19:49,"375 West St, Seattle, WA 98101" -270272,Flatscreen TV,1,300,10/07/19 21:14,"136 Elm St, San Francisco, CA 94016" -270273,USB-C Charging Cable,1,11.95,10/23/19 11:57,"406 Pine St, New York City, NY 10001" -270274,Bose SoundSport Headphones,1,99.99,10/11/19 19:20,"958 Wilson St, Los Angeles, CA 90001" -270274,AAA Batteries (4-pack),1,2.99,10/11/19 19:20,"958 Wilson St, Los Angeles, CA 90001" -270275,Google Phone,1,600,10/10/19 01:24,"437 Lakeview St, San Francisco, CA 94016" -270276,AA Batteries (4-pack),1,3.84,10/11/19 19:34,"727 Sunset St, Dallas, TX 75001" -270277,Wired Headphones,1,11.99,10/16/19 20:34,"20 Dogwood St, Los Angeles, CA 90001" -270278,Bose SoundSport Headphones,1,99.99,10/15/19 12:08,"242 Wilson St, Dallas, TX 75001" -270279,27in FHD Monitor,1,149.99,10/08/19 15:09,"326 Walnut St, Boston, MA 02215" -270280,Google Phone,1,600,10/21/19 21:29,"72 Cherry St, San Francisco, CA 94016" -270281,Lightning Charging Cable,2,14.95,10/22/19 11:50,"44 5th St, Dallas, TX 75001" -270282,USB-C Charging Cable,1,11.95,10/17/19 20:10,"694 Jackson St, Dallas, TX 75001" -270283,Wired Headphones,1,11.99,10/02/19 14:51,"327 Meadow St, San Francisco, CA 94016" -270283,Wired Headphones,1,11.99,10/02/19 14:51,"327 Meadow St, San Francisco, CA 94016" -270284,Google Phone,1,600,10/08/19 18:15,"803 Willow St, New York City, NY 10001" -270285,AA Batteries (4-pack),1,3.84,10/13/19 17:04,"128 Lincoln St, Dallas, TX 75001" -270286,Wired Headphones,1,11.99,10/08/19 20:55,"916 1st St, Seattle, WA 98101" -270287,Wired Headphones,1,11.99,10/01/19 10:01,"934 Lakeview St, Dallas, TX 75001" -270288,Apple Airpods Headphones,1,150,10/01/19 17:34,"934 Forest St, New York City, NY 10001" -270289,27in FHD Monitor,1,149.99,10/22/19 15:31,"853 Johnson St, Austin, TX 73301" -270290,Macbook Pro Laptop,1,1700,10/25/19 22:10,"179 5th St, Atlanta, GA 30301" -270291,ThinkPad Laptop,1,999.99,10/02/19 20:17,"16 Washington St, Atlanta, GA 30301" -270292,Bose SoundSport Headphones,1,99.99,10/03/19 15:54,"64 Pine St, New York City, NY 10001" -270293,Wired Headphones,1,11.99,10/18/19 01:52,"851 Hill St, New York City, NY 10001" -270294,Wired Headphones,2,11.99,10/12/19 13:40,"503 Highland St, Seattle, WA 98101" -270295,Apple Airpods Headphones,1,150,10/29/19 14:57,"465 Church St, Los Angeles, CA 90001" -270296,20in Monitor,1,109.99,10/09/19 11:26,"906 Lake St, Los Angeles, CA 90001" -270297,USB-C Charging Cable,1,11.95,10/07/19 20:03,"91 13th St, New York City, NY 10001" -270298,iPhone,1,700,10/02/19 11:50,"901 13th St, Seattle, WA 98101" -270299,USB-C Charging Cable,1,11.95,10/13/19 11:29,"482 Dogwood St, San Francisco, CA 94016" -270300,27in 4K Gaming Monitor,1,389.99,10/27/19 22:59,"596 Hickory St, New York City, NY 10001" -270301,34in Ultrawide Monitor,1,379.99,10/23/19 10:50,"608 10th St, San Francisco, CA 94016" -270302,Wired Headphones,1,11.99,10/28/19 21:44,"452 Jefferson St, Boston, MA 02215" -270303,AAA Batteries (4-pack),2,2.99,10/02/19 11:59,"447 West St, Austin, TX 73301" -270304,Wired Headphones,1,11.99,10/07/19 10:26,"345 Cherry St, New York City, NY 10001" -270305,Wired Headphones,1,11.99,10/05/19 20:03,"140 Lakeview St, Dallas, TX 75001" -270306,iPhone,1,700,10/04/19 16:46,"311 Park St, San Francisco, CA 94016" -270307,Bose SoundSport Headphones,1,99.99,10/29/19 19:12,"410 Walnut St, Austin, TX 73301" -270308,USB-C Charging Cable,1,11.95,10/24/19 13:58,"453 Sunset St, Dallas, TX 75001" -270309,27in FHD Monitor,1,149.99,10/17/19 12:29,"912 8th St, San Francisco, CA 94016" -270310,Lightning Charging Cable,1,14.95,10/23/19 08:21,"521 South St, New York City, NY 10001" -270311,LG Washing Machine,1,600.0,10/22/19 17:23,"963 14th St, New York City, NY 10001" -270312,AAA Batteries (4-pack),1,2.99,10/15/19 10:13,"683 Center St, Seattle, WA 98101" -270313,Lightning Charging Cable,1,14.95,10/15/19 08:48,"34 Lincoln St, San Francisco, CA 94016" -270314,34in Ultrawide Monitor,1,379.99,10/27/19 18:27,"801 Center St, Los Angeles, CA 90001" -270315,AAA Batteries (4-pack),2,2.99,10/19/19 12:25,"169 8th St, Atlanta, GA 30301" -270316,AA Batteries (4-pack),1,3.84,10/29/19 13:50,"920 Ridge St, San Francisco, CA 94016" -270317,Lightning Charging Cable,1,14.95,10/10/19 19:52,"346 Walnut St, San Francisco, CA 94016" -270318,Wired Headphones,1,11.99,10/18/19 15:57,"530 Dogwood St, Los Angeles, CA 90001" -270319,AA Batteries (4-pack),1,3.84,10/28/19 08:25,"993 Johnson St, Atlanta, GA 30301" -270320,34in Ultrawide Monitor,1,379.99,10/20/19 10:12,"563 North St, Austin, TX 73301" -270321,27in FHD Monitor,1,149.99,10/09/19 13:00,"961 Spruce St, Austin, TX 73301" -270322,27in 4K Gaming Monitor,1,389.99,10/16/19 14:19,"162 4th St, Boston, MA 02215" -270323,Macbook Pro Laptop,1,1700,10/12/19 10:14,"240 8th St, Portland, ME 04101" -270324,USB-C Charging Cable,2,11.95,10/09/19 21:05,"656 Wilson St, Los Angeles, CA 90001" -270325,AA Batteries (4-pack),2,3.84,10/04/19 12:10,"627 Center St, San Francisco, CA 94016" -270326,Apple Airpods Headphones,1,150,10/29/19 19:58,"912 Adams St, San Francisco, CA 94016" -270327,Vareebadd Phone,1,400,10/21/19 20:04,"628 Willow St, San Francisco, CA 94016" -270328,Apple Airpods Headphones,1,150,10/04/19 15:10,"247 Lakeview St, New York City, NY 10001" -270329,27in FHD Monitor,1,149.99,10/03/19 11:50,"166 13th St, San Francisco, CA 94016" -270330,20in Monitor,1,109.99,10/29/19 09:29,"629 Lakeview St, Los Angeles, CA 90001" -270331,Wired Headphones,1,11.99,10/27/19 09:26,"10 Pine St, San Francisco, CA 94016" -270332,AA Batteries (4-pack),1,3.84,10/10/19 20:28,"553 Jefferson St, Los Angeles, CA 90001" -270333,Wired Headphones,2,11.99,10/04/19 18:00,"76 North St, Seattle, WA 98101" -270334,Apple Airpods Headphones,1,150,10/28/19 23:06,"580 Johnson St, Boston, MA 02215" -270335,Apple Airpods Headphones,1,150,10/10/19 12:25,"385 9th St, New York City, NY 10001" -270336,AA Batteries (4-pack),1,3.84,10/11/19 22:57,"820 Willow St, Atlanta, GA 30301" -270337,iPhone,1,700,10/07/19 11:29,"623 10th St, Boston, MA 02215" -270338,Bose SoundSport Headphones,1,99.99,10/12/19 16:45,"396 11th St, New York City, NY 10001" -270339,20in Monitor,1,109.99,10/12/19 16:57,"960 River St, San Francisco, CA 94016" -270340,Macbook Pro Laptop,1,1700,10/08/19 14:51,"896 8th St, Dallas, TX 75001" -270341,Apple Airpods Headphones,1,150,10/31/19 23:24,"228 Wilson St, Los Angeles, CA 90001" -270342,Wired Headphones,1,11.99,10/01/19 11:56,"233 Main St, Boston, MA 02215" -270343,Wired Headphones,1,11.99,10/14/19 15:44,"520 South St, San Francisco, CA 94016" -270344,ThinkPad Laptop,1,999.99,10/06/19 15:35,"175 12th St, Boston, MA 02215" -270345,USB-C Charging Cable,1,11.95,10/17/19 23:27,"504 River St, San Francisco, CA 94016" -270346,AA Batteries (4-pack),1,3.84,10/04/19 00:00,"809 13th St, San Francisco, CA 94016" -270347,USB-C Charging Cable,1,11.95,10/31/19 17:58,"783 Ridge St, San Francisco, CA 94016" -270348,USB-C Charging Cable,1,11.95,10/12/19 16:09,"234 Johnson St, Seattle, WA 98101" -270349,34in Ultrawide Monitor,1,379.99,10/14/19 06:34,"637 West St, Atlanta, GA 30301" -270350,AAA Batteries (4-pack),2,2.99,10/04/19 18:26,"303 Center St, New York City, NY 10001" -270351,AA Batteries (4-pack),1,3.84,10/23/19 13:56,"697 Park St, Dallas, TX 75001" -270352,Apple Airpods Headphones,1,150,10/03/19 15:06,"306 Willow St, Austin, TX 73301" -270353,Lightning Charging Cable,1,14.95,10/08/19 18:11,"719 Elm St, San Francisco, CA 94016" -270354,34in Ultrawide Monitor,1,379.99,10/16/19 14:57,"767 11th St, Los Angeles, CA 90001" -270355,Apple Airpods Headphones,1,150,10/16/19 19:13,"652 14th St, San Francisco, CA 94016" -270356,USB-C Charging Cable,1,11.95,10/26/19 19:38,"365 Lakeview St, San Francisco, CA 94016" -270357,Flatscreen TV,1,300,10/21/19 13:01,"490 Forest St, Los Angeles, CA 90001" -270358,AA Batteries (4-pack),2,3.84,10/31/19 22:32,"18 Hill St, San Francisco, CA 94016" -270359,AA Batteries (4-pack),1,3.84,10/21/19 20:30,"836 Hill St, San Francisco, CA 94016" -270360,iPhone,1,700,10/20/19 16:25,"650 Spruce St, Austin, TX 73301" -270361,Lightning Charging Cable,1,14.95,10/14/19 10:33,"49 Park St, Boston, MA 02215" -270362,AA Batteries (4-pack),1,3.84,10/13/19 09:40,"588 Main St, New York City, NY 10001" -270363,ThinkPad Laptop,1,999.99,10/13/19 17:46,"317 1st St, New York City, NY 10001" -270364,AAA Batteries (4-pack),2,2.99,10/10/19 19:37,"342 Washington St, San Francisco, CA 94016" -270365,AAA Batteries (4-pack),2,2.99,10/15/19 16:27,"791 Park St, New York City, NY 10001" -270366,Bose SoundSport Headphones,1,99.99,10/01/19 16:50,"528 Jackson St, Atlanta, GA 30301" -270367,Bose SoundSport Headphones,1,99.99,10/17/19 10:59,"516 13th St, Dallas, TX 75001" -270368,USB-C Charging Cable,1,11.95,10/31/19 12:53,"877 Lake St, Boston, MA 02215" -270369,27in 4K Gaming Monitor,1,389.99,10/06/19 06:23,"686 14th St, New York City, NY 10001" -270370,AA Batteries (4-pack),1,3.84,10/20/19 13:25,"728 10th St, Dallas, TX 75001" -270371,Wired Headphones,1,11.99,10/29/19 08:54,"258 Forest St, Seattle, WA 98101" -270372,AAA Batteries (4-pack),1,2.99,10/05/19 23:08,"36 10th St, Los Angeles, CA 90001" -270373,Apple Airpods Headphones,1,150,10/10/19 22:53,"907 8th St, Portland, ME 04101" -270374,Wired Headphones,1,11.99,10/24/19 10:36,"715 West St, Seattle, WA 98101" -270375,iPhone,1,700,10/03/19 09:23,"284 Adams St, Portland, OR 97035" -270375,Lightning Charging Cable,2,14.95,10/03/19 09:23,"284 Adams St, Portland, OR 97035" -270376,AA Batteries (4-pack),1,3.84,10/28/19 11:21,"956 Park St, Atlanta, GA 30301" -270377,34in Ultrawide Monitor,1,379.99,10/24/19 16:44,"241 Wilson St, Los Angeles, CA 90001" -270378,AA Batteries (4-pack),2,3.84,10/19/19 12:19,"497 Lake St, Austin, TX 73301" -270379,Bose SoundSport Headphones,1,99.99,10/19/19 19:18,"931 12th St, Portland, OR 97035" -270380,AAA Batteries (4-pack),1,2.99,10/21/19 13:35,"67 Ridge St, Boston, MA 02215" -270381,USB-C Charging Cable,1,11.95,10/18/19 13:23,"353 8th St, Atlanta, GA 30301" -270382,AAA Batteries (4-pack),1,2.99,10/22/19 23:09,"241 Lakeview St, New York City, NY 10001" -270383,Apple Airpods Headphones,1,150,10/25/19 16:37,"721 South St, Atlanta, GA 30301" -270384,AA Batteries (4-pack),1,3.84,10/22/19 10:55,"387 8th St, San Francisco, CA 94016" -270385,USB-C Charging Cable,1,11.95,10/20/19 13:07,"234 Wilson St, Austin, TX 73301" -270386,Lightning Charging Cable,1,14.95,10/30/19 23:21,"641 Lincoln St, Austin, TX 73301" -270387,iPhone,1,700,10/08/19 09:35,"406 Wilson St, Los Angeles, CA 90001" -270387,Wired Headphones,1,11.99,10/08/19 09:35,"406 Wilson St, Los Angeles, CA 90001" -270388,Apple Airpods Headphones,1,150,10/11/19 21:13,"616 Washington St, San Francisco, CA 94016" -270389,USB-C Charging Cable,1,11.95,10/19/19 14:02,"873 Church St, San Francisco, CA 94016" -270390,AA Batteries (4-pack),2,3.84,10/20/19 16:16,"96 Lake St, Austin, TX 73301" -270391,Apple Airpods Headphones,1,150,10/19/19 18:52,"94 Spruce St, Austin, TX 73301" -270392,Google Phone,1,600,10/11/19 15:24,"922 Hickory St, San Francisco, CA 94016" -270392,USB-C Charging Cable,1,11.95,10/11/19 15:24,"922 Hickory St, San Francisco, CA 94016" -270393,AAA Batteries (4-pack),2,2.99,10/27/19 12:50,"986 11th St, New York City, NY 10001" -270394,AA Batteries (4-pack),1,3.84,10/14/19 13:45,"566 9th St, Boston, MA 02215" -270395,USB-C Charging Cable,1,11.95,10/31/19 22:40,"221 Ridge St, San Francisco, CA 94016" -270396,USB-C Charging Cable,1,11.95,10/18/19 18:38,"819 9th St, Seattle, WA 98101" -270397,Lightning Charging Cable,1,14.95,10/16/19 16:03,"626 Sunset St, Los Angeles, CA 90001" -270398,Bose SoundSport Headphones,1,99.99,10/20/19 19:57,"474 Madison St, San Francisco, CA 94016" -270399,AA Batteries (4-pack),1,3.84,10/23/19 17:32,"779 Washington St, San Francisco, CA 94016" -270400,ThinkPad Laptop,1,999.99,10/19/19 11:03,"882 Spruce St, Austin, TX 73301" -270401,Apple Airpods Headphones,1,150,10/14/19 21:37,"343 Elm St, New York City, NY 10001" -270402,AAA Batteries (4-pack),2,2.99,10/03/19 09:14,"312 Lakeview St, San Francisco, CA 94016" -270403,Lightning Charging Cable,1,14.95,10/06/19 23:25,"488 Park St, Dallas, TX 75001" -270404,27in FHD Monitor,1,149.99,10/18/19 12:53,"54 Willow St, New York City, NY 10001" -270405,Bose SoundSport Headphones,1,99.99,10/10/19 12:12,"359 Pine St, Seattle, WA 98101" -270406,USB-C Charging Cable,1,11.95,10/28/19 19:18,"170 4th St, San Francisco, CA 94016" -270407,Bose SoundSport Headphones,1,99.99,10/02/19 16:14,"734 Jackson St, Dallas, TX 75001" -270408,USB-C Charging Cable,1,11.95,10/27/19 10:46,"639 14th St, New York City, NY 10001" -270409,Vareebadd Phone,1,400,10/31/19 21:32,"693 Lakeview St, Dallas, TX 75001" -270410,Lightning Charging Cable,1,14.95,10/22/19 07:45,"950 Wilson St, Portland, OR 97035" -270411,Bose SoundSport Headphones,1,99.99,10/06/19 13:56,"291 Lakeview St, San Francisco, CA 94016" -270412,Lightning Charging Cable,1,14.95,10/28/19 11:07,"756 Jackson St, Portland, OR 97035" -270413,Apple Airpods Headphones,1,150,10/02/19 09:25,"130 Johnson St, Atlanta, GA 30301" -270414,27in 4K Gaming Monitor,1,389.99,10/18/19 23:05,"401 Washington St, Dallas, TX 75001" -270415,AAA Batteries (4-pack),3,2.99,10/03/19 05:46,"312 11th St, Los Angeles, CA 90001" -270416,USB-C Charging Cable,1,11.95,10/25/19 11:55,"368 Sunset St, Los Angeles, CA 90001" -270417,AAA Batteries (4-pack),2,2.99,10/22/19 14:50,"392 Madison St, San Francisco, CA 94016" -270418,Wired Headphones,1,11.99,10/10/19 10:30,"55 Jackson St, Seattle, WA 98101" -270419,Lightning Charging Cable,1,14.95,10/17/19 21:00,"488 Wilson St, San Francisco, CA 94016" -270420,34in Ultrawide Monitor,1,379.99,10/10/19 19:57,"676 Highland St, San Francisco, CA 94016" -270421,Lightning Charging Cable,1,14.95,10/09/19 18:16,"491 Park St, San Francisco, CA 94016" -270422,34in Ultrawide Monitor,1,379.99,10/03/19 14:19,"331 4th St, Portland, ME 04101" -270423,AA Batteries (4-pack),1,3.84,10/14/19 22:51,"479 Madison St, New York City, NY 10001" -270424,Vareebadd Phone,1,400,10/27/19 06:31,"183 Washington St, New York City, NY 10001" -270424,Wired Headphones,1,11.99,10/27/19 06:31,"183 Washington St, New York City, NY 10001" -270425,Apple Airpods Headphones,1,150,10/10/19 23:17,"292 Highland St, Los Angeles, CA 90001" -270426,34in Ultrawide Monitor,1,379.99,10/24/19 13:30,"626 Hill St, San Francisco, CA 94016" -270427,27in FHD Monitor,1,149.99,10/06/19 21:33,"402 Forest St, New York City, NY 10001" -270428,Lightning Charging Cable,1,14.95,10/07/19 21:01,"96 Cedar St, New York City, NY 10001" -270429,AAA Batteries (4-pack),1,2.99,10/24/19 08:18,"919 Main St, Los Angeles, CA 90001" -270430,Google Phone,1,600,10/27/19 09:38,"550 7th St, Boston, MA 02215" -270430,Bose SoundSport Headphones,1,99.99,10/27/19 09:38,"550 7th St, Boston, MA 02215" -270431,iPhone,1,700,10/06/19 09:07,"369 9th St, New York City, NY 10001" -270432,AA Batteries (4-pack),2,3.84,10/30/19 16:20,"752 Madison St, Atlanta, GA 30301" -270433,USB-C Charging Cable,1,11.95,10/29/19 20:18,"941 13th St, Seattle, WA 98101" -270434,Apple Airpods Headphones,1,150,10/28/19 22:01,"404 Hickory St, Los Angeles, CA 90001" -270435,USB-C Charging Cable,1,11.95,10/28/19 18:04,"978 South St, Los Angeles, CA 90001" -270436,34in Ultrawide Monitor,1,379.99,10/12/19 18:16,"607 2nd St, Atlanta, GA 30301" -270436,Lightning Charging Cable,1,14.95,10/12/19 18:16,"607 2nd St, Atlanta, GA 30301" -270437,USB-C Charging Cable,1,11.95,10/17/19 14:09,"423 Madison St, New York City, NY 10001" -270438,AA Batteries (4-pack),1,3.84,10/17/19 15:13,"731 Park St, Portland, OR 97035" -270439,Apple Airpods Headphones,1,150,10/10/19 17:07,"91 Wilson St, Atlanta, GA 30301" -270440,Apple Airpods Headphones,1,150,10/07/19 00:00,"70 West St, Boston, MA 02215" -270441,USB-C Charging Cable,1,11.95,10/13/19 19:31,"533 South St, Dallas, TX 75001" -270442,USB-C Charging Cable,1,11.95,10/14/19 12:34,"252 5th St, New York City, NY 10001" -270443,Lightning Charging Cable,1,14.95,10/08/19 17:49,"36 14th St, Boston, MA 02215" -270444,Wired Headphones,1,11.99,10/23/19 22:55,"487 9th St, Los Angeles, CA 90001" -270445,Apple Airpods Headphones,1,150,10/31/19 15:50,"39 Maple St, New York City, NY 10001" -270446,ThinkPad Laptop,1,999.99,10/13/19 15:53,"465 Main St, New York City, NY 10001" -270447,27in 4K Gaming Monitor,1,389.99,10/12/19 13:44,"35 Washington St, Boston, MA 02215" -270448,27in 4K Gaming Monitor,1,389.99,10/28/19 12:12,"588 Lakeview St, San Francisco, CA 94016" -270449,Flatscreen TV,1,300,10/27/19 14:42,"521 Highland St, San Francisco, CA 94016" -270450,27in FHD Monitor,1,149.99,10/03/19 19:27,"514 10th St, Austin, TX 73301" -270451,Lightning Charging Cable,1,14.95,10/05/19 10:20,"940 9th St, San Francisco, CA 94016" -270452,27in FHD Monitor,1,149.99,10/11/19 15:42,"476 6th St, Los Angeles, CA 90001" -270453,Apple Airpods Headphones,1,150,10/19/19 12:28,"107 Pine St, New York City, NY 10001" -270454,AA Batteries (4-pack),1,3.84,10/05/19 17:20,"497 Hill St, Dallas, TX 75001" -270455,USB-C Charging Cable,1,11.95,10/27/19 19:50,"255 Meadow St, Los Angeles, CA 90001" -270456,Apple Airpods Headphones,1,150,10/16/19 17:37,"44 North St, Los Angeles, CA 90001" -270457,iPhone,1,700,10/21/19 09:35,"340 West St, San Francisco, CA 94016" -270458,34in Ultrawide Monitor,1,379.99,10/16/19 18:20,"412 West St, Portland, OR 97035" -270459,34in Ultrawide Monitor,1,379.99,10/02/19 15:05,"559 South St, Seattle, WA 98101" -270460,Wired Headphones,1,11.99,10/22/19 13:50,"413 Dogwood St, Los Angeles, CA 90001" -270461,iPhone,1,700,10/23/19 16:13,"437 Main St, San Francisco, CA 94016" -270461,Lightning Charging Cable,1,14.95,10/23/19 16:13,"437 Main St, San Francisco, CA 94016" -270462,ThinkPad Laptop,1,999.99,10/09/19 12:36,"918 Sunset St, San Francisco, CA 94016" -270463,ThinkPad Laptop,1,999.99,10/07/19 07:43,"705 6th St, Dallas, TX 75001" -270464,Apple Airpods Headphones,1,150,10/02/19 00:04,"588 14th St, Los Angeles, CA 90001" -270465,Apple Airpods Headphones,1,150,10/11/19 10:17,"426 9th St, Boston, MA 02215" -270466,Bose SoundSport Headphones,2,99.99,10/11/19 23:54,"789 Willow St, Los Angeles, CA 90001" -270467,AAA Batteries (4-pack),2,2.99,10/07/19 12:50,"808 7th St, Dallas, TX 75001" -270468,AAA Batteries (4-pack),3,2.99,10/24/19 11:31,"748 Main St, Portland, OR 97035" -270468,ThinkPad Laptop,1,999.99,10/24/19 11:31,"748 Main St, Portland, OR 97035" -270469,34in Ultrawide Monitor,1,379.99,10/10/19 11:04,"88 Center St, New York City, NY 10001" -270470,Wired Headphones,1,11.99,10/15/19 07:11,"603 10th St, San Francisco, CA 94016" -270471,Lightning Charging Cable,1,14.95,10/16/19 15:31,"103 Washington St, San Francisco, CA 94016" -270472,AA Batteries (4-pack),1,3.84,10/20/19 17:23,"6 Cedar St, Boston, MA 02215" -270473,34in Ultrawide Monitor,1,379.99,10/17/19 22:36,"521 Jefferson St, Atlanta, GA 30301" -270474,AAA Batteries (4-pack),1,2.99,10/13/19 07:40,"307 12th St, Boston, MA 02215" -270475,AAA Batteries (4-pack),1,2.99,10/23/19 19:25,"935 13th St, New York City, NY 10001" -270476,Macbook Pro Laptop,1,1700,10/14/19 18:53,"663 Pine St, Los Angeles, CA 90001" -270477,Bose SoundSport Headphones,1,99.99,10/10/19 13:52,"146 Spruce St, Atlanta, GA 30301" -270478,USB-C Charging Cable,1,11.95,10/17/19 10:29,"946 Spruce St, San Francisco, CA 94016" -270479,AAA Batteries (4-pack),1,2.99,10/07/19 12:13,"503 Lake St, Dallas, TX 75001" -270480,Wired Headphones,1,11.99,10/13/19 18:23,"891 West St, Los Angeles, CA 90001" -270481,Lightning Charging Cable,1,14.95,10/17/19 18:52,"60 Lake St, Austin, TX 73301" -270482,Apple Airpods Headphones,1,150,10/22/19 02:37,"987 12th St, San Francisco, CA 94016" -270483,AA Batteries (4-pack),1,3.84,10/02/19 01:22,"345 Highland St, Los Angeles, CA 90001" -270484,AA Batteries (4-pack),2,3.84,10/25/19 12:05,"8 Wilson St, Boston, MA 02215" -270485,20in Monitor,1,109.99,10/31/19 06:21,"905 Cedar St, San Francisco, CA 94016" -270486,USB-C Charging Cable,1,11.95,10/21/19 06:34,"296 Lakeview St, New York City, NY 10001" -270487,Apple Airpods Headphones,1,150,10/13/19 19:20,"378 Jefferson St, San Francisco, CA 94016" -270488,Bose SoundSport Headphones,1,99.99,10/21/19 08:53,"702 Elm St, Los Angeles, CA 90001" -270489,Lightning Charging Cable,2,14.95,10/20/19 18:32,"913 Chestnut St, San Francisco, CA 94016" -270490,Bose SoundSport Headphones,1,99.99,10/03/19 22:50,"525 Washington St, Boston, MA 02215" -270491,Apple Airpods Headphones,1,150,10/03/19 17:14,"160 Madison St, San Francisco, CA 94016" -270492,ThinkPad Laptop,1,999.99,10/24/19 14:07,"82 Cedar St, Los Angeles, CA 90001" -270492,USB-C Charging Cable,1,11.95,10/24/19 14:07,"82 Cedar St, Los Angeles, CA 90001" -270493,AAA Batteries (4-pack),1,2.99,10/12/19 21:28,"514 Main St, Dallas, TX 75001" -270494,Wired Headphones,1,11.99,10/18/19 10:55,"494 Cedar St, Los Angeles, CA 90001" -270495,iPhone,1,700,10/31/19 12:34,"560 Center St, Austin, TX 73301" -270496,Apple Airpods Headphones,1,150,10/06/19 11:13,"365 Church St, San Francisco, CA 94016" -270497,Apple Airpods Headphones,1,150,10/18/19 09:09,"771 Main St, Dallas, TX 75001" -270498,Google Phone,1,600,10/09/19 11:29,"334 Washington St, San Francisco, CA 94016" -270498,Wired Headphones,1,11.99,10/09/19 11:29,"334 Washington St, San Francisco, CA 94016" -270499,Lightning Charging Cable,1,14.95,10/26/19 22:36,"62 7th St, New York City, NY 10001" -270500,AAA Batteries (4-pack),1,2.99,10/17/19 09:23,"798 6th St, Los Angeles, CA 90001" -270501,USB-C Charging Cable,1,11.95,10/20/19 12:55,"755 2nd St, Seattle, WA 98101" -270502,Bose SoundSport Headphones,1,99.99,10/28/19 19:59,"281 13th St, Los Angeles, CA 90001" -270503,34in Ultrawide Monitor,1,379.99,10/04/19 11:43,"308 Dogwood St, New York City, NY 10001" -270504,Google Phone,1,600,10/18/19 08:13,"274 Adams St, Dallas, TX 75001" -270505,27in FHD Monitor,1,149.99,10/06/19 07:11,"772 Elm St, Los Angeles, CA 90001" -270506,Google Phone,1,600,10/29/19 16:49,"556 2nd St, San Francisco, CA 94016" -270507,Wired Headphones,1,11.99,10/14/19 12:16,"503 Dogwood St, Los Angeles, CA 90001" -270508,Lightning Charging Cable,2,14.95,10/14/19 19:41,"174 11th St, San Francisco, CA 94016" -270509,Flatscreen TV,1,300,10/07/19 12:57,"444 7th St, New York City, NY 10001" -270510,Flatscreen TV,1,300,10/09/19 13:20,"911 Park St, Boston, MA 02215" -270511,34in Ultrawide Monitor,1,379.99,10/31/19 18:10,"659 5th St, Portland, OR 97035" -270512,AA Batteries (4-pack),1,3.84,10/23/19 19:01,"589 Maple St, Seattle, WA 98101" -270513,27in 4K Gaming Monitor,1,389.99,10/29/19 00:15,"589 Hickory St, Austin, TX 73301" -270514,USB-C Charging Cable,1,11.95,10/22/19 18:24,"202 Forest St, Dallas, TX 75001" -270515,Wired Headphones,1,11.99,10/11/19 12:25,"121 Dogwood St, Austin, TX 73301" -270516,Apple Airpods Headphones,1,150,10/14/19 16:54,"319 Chestnut St, Austin, TX 73301" -270517,AAA Batteries (4-pack),1,2.99,10/29/19 13:43,"266 Elm St, Atlanta, GA 30301" -270518,AA Batteries (4-pack),1,3.84,10/18/19 19:25,"969 11th St, New York City, NY 10001" -270519,AA Batteries (4-pack),1,3.84,10/03/19 13:03,"608 Pine St, Los Angeles, CA 90001" -270520,AA Batteries (4-pack),2,3.84,10/13/19 13:41,"699 Jefferson St, Los Angeles, CA 90001" -270521,Lightning Charging Cable,3,14.95,10/13/19 20:34,"17 Spruce St, Boston, MA 02215" -270522,USB-C Charging Cable,1,11.95,10/04/19 13:03,"761 2nd St, Atlanta, GA 30301" -270523,AA Batteries (4-pack),1,3.84,10/17/19 23:22,"51 Dogwood St, San Francisco, CA 94016" -270524,Lightning Charging Cable,1,14.95,10/27/19 10:28,"820 6th St, San Francisco, CA 94016" -270525,USB-C Charging Cable,1,11.95,10/22/19 20:47,"293 North St, Los Angeles, CA 90001" -270526,Bose SoundSport Headphones,1,99.99,10/01/19 05:11,"973 9th St, Los Angeles, CA 90001" -270527,27in FHD Monitor,1,149.99,10/19/19 19:40,"788 2nd St, Los Angeles, CA 90001" -270528,Bose SoundSport Headphones,1,99.99,10/26/19 22:06,"793 11th St, San Francisco, CA 94016" -270529,AA Batteries (4-pack),1,3.84,10/28/19 22:30,"776 4th St, Los Angeles, CA 90001" -270530,27in 4K Gaming Monitor,1,389.99,10/07/19 09:47,"617 4th St, Austin, TX 73301" -270531,34in Ultrawide Monitor,1,379.99,10/13/19 08:50,"693 8th St, Boston, MA 02215" -270532,AAA Batteries (4-pack),4,2.99,10/08/19 14:31,"746 1st St, San Francisco, CA 94016" -270533,USB-C Charging Cable,1,11.95,10/20/19 11:48,"897 Church St, Portland, OR 97035" -270534,Flatscreen TV,1,300,10/01/19 10:57,"829 Pine St, San Francisco, CA 94016" -270535,Google Phone,1,600,10/18/19 11:58,"859 13th St, Atlanta, GA 30301" -270535,USB-C Charging Cable,1,11.95,10/18/19 11:58,"859 13th St, Atlanta, GA 30301" -270536,Lightning Charging Cable,1,14.95,10/05/19 16:16,"234 Jefferson St, Los Angeles, CA 90001" -270537,USB-C Charging Cable,1,11.95,10/06/19 18:59,"381 9th St, Boston, MA 02215" -270538,27in FHD Monitor,1,149.99,10/31/19 16:46,"664 North St, New York City, NY 10001" -270539,Bose SoundSport Headphones,1,99.99,10/12/19 08:16,"218 Cedar St, San Francisco, CA 94016" -270540,AAA Batteries (4-pack),1,2.99,10/18/19 16:16,"253 Park St, Dallas, TX 75001" -270541,Lightning Charging Cable,1,14.95,10/27/19 16:09,"511 Lakeview St, San Francisco, CA 94016" -270542,USB-C Charging Cable,1,11.95,10/26/19 13:45,"637 Johnson St, San Francisco, CA 94016" -270543,AAA Batteries (4-pack),4,2.99,10/29/19 13:37,"946 Church St, New York City, NY 10001" -270544,Macbook Pro Laptop,1,1700,10/01/19 12:58,"753 Jefferson St, Los Angeles, CA 90001" -270545,Lightning Charging Cable,1,14.95,10/14/19 08:22,"71 Maple St, Portland, ME 04101" -270546,27in FHD Monitor,1,149.99,10/28/19 21:15,"988 Jackson St, Seattle, WA 98101" -270547,34in Ultrawide Monitor,1,379.99,10/12/19 16:56,"931 Church St, San Francisco, CA 94016" -270547,USB-C Charging Cable,1,11.95,10/12/19 16:56,"931 Church St, San Francisco, CA 94016" -270548,20in Monitor,1,109.99,10/07/19 10:57,"339 Lakeview St, Dallas, TX 75001" -270549,Macbook Pro Laptop,1,1700,10/02/19 20:15,"993 Hickory St, Los Angeles, CA 90001" -270550,iPhone,1,700,10/16/19 19:43,"569 Lake St, New York City, NY 10001" -270551,USB-C Charging Cable,1,11.95,10/25/19 22:41,"543 6th St, Atlanta, GA 30301" -270552,AA Batteries (4-pack),1,3.84,10/18/19 13:12,"257 Madison St, Los Angeles, CA 90001" -270553,AA Batteries (4-pack),1,3.84,10/08/19 13:04,"168 2nd St, Boston, MA 02215" -270554,Apple Airpods Headphones,1,150,10/28/19 12:42,"766 Lincoln St, Los Angeles, CA 90001" -270555,USB-C Charging Cable,1,11.95,10/14/19 16:26,"226 Washington St, Dallas, TX 75001" -270556,USB-C Charging Cable,1,11.95,10/06/19 00:58,"291 River St, San Francisco, CA 94016" -270557,AAA Batteries (4-pack),1,2.99,10/28/19 18:05,"570 9th St, Los Angeles, CA 90001" -270558,Vareebadd Phone,1,400,10/09/19 08:24,"841 6th St, San Francisco, CA 94016" -270558,Wired Headphones,1,11.99,10/09/19 08:24,"841 6th St, San Francisco, CA 94016" -270559,Wired Headphones,1,11.99,10/22/19 11:09,"547 2nd St, Austin, TX 73301" -270560,Apple Airpods Headphones,1,150,10/02/19 11:47,"443 Johnson St, New York City, NY 10001" -270561,USB-C Charging Cable,1,11.95,10/03/19 10:44,"613 Washington St, Los Angeles, CA 90001" -270562,Lightning Charging Cable,1,14.95,10/10/19 12:06,"191 12th St, Dallas, TX 75001" -270563,27in FHD Monitor,1,149.99,10/04/19 19:24,"891 Center St, Los Angeles, CA 90001" -270564,Flatscreen TV,1,300,10/26/19 15:03,"153 10th St, New York City, NY 10001" -270565,34in Ultrawide Monitor,1,379.99,10/24/19 10:39,"993 Adams St, San Francisco, CA 94016" -270566,27in FHD Monitor,1,149.99,10/13/19 09:27,"929 Lakeview St, New York City, NY 10001" -270567,Lightning Charging Cable,1,14.95,10/25/19 21:39,"705 Lake St, Seattle, WA 98101" -270568,27in FHD Monitor,1,149.99,10/21/19 16:42,"398 Elm St, Portland, OR 97035" -270569,AAA Batteries (4-pack),1,2.99,10/17/19 14:43,"172 6th St, New York City, NY 10001" -270570,iPhone,1,700,10/02/19 10:15,"625 Center St, Los Angeles, CA 90001" -270571,27in 4K Gaming Monitor,1,389.99,10/25/19 11:24,"335 Lakeview St, New York City, NY 10001" -270572,Apple Airpods Headphones,1,150,10/10/19 11:23,"594 4th St, San Francisco, CA 94016" -270573,Lightning Charging Cable,1,14.95,10/25/19 18:13,"995 Cherry St, Portland, OR 97035" -270574,27in 4K Gaming Monitor,1,389.99,10/21/19 08:02,"334 Jefferson St, San Francisco, CA 94016" -270575,Bose SoundSport Headphones,1,99.99,10/13/19 19:21,"803 Lincoln St, Portland, ME 04101" -270576,AAA Batteries (4-pack),1,2.99,10/15/19 13:25,"449 Cherry St, Los Angeles, CA 90001" -270577,Google Phone,1,600,10/17/19 15:31,"696 Lake St, San Francisco, CA 94016" -270578,27in FHD Monitor,1,149.99,10/20/19 12:37,"435 9th St, Atlanta, GA 30301" -270579,Apple Airpods Headphones,1,150,10/25/19 20:43,"939 Maple St, Dallas, TX 75001" -270580,USB-C Charging Cable,1,11.95,10/29/19 14:49,"497 Pine St, San Francisco, CA 94016" -270581,Macbook Pro Laptop,1,1700,10/13/19 18:53,"492 Elm St, Atlanta, GA 30301" -270581,27in 4K Gaming Monitor,1,389.99,10/13/19 18:53,"492 Elm St, Atlanta, GA 30301" -270582,AAA Batteries (4-pack),2,2.99,10/26/19 21:05,"842 Park St, Seattle, WA 98101" -270583,Lightning Charging Cable,1,14.95,10/14/19 22:13,"138 9th St, New York City, NY 10001" -270584,AAA Batteries (4-pack),3,2.99,10/04/19 20:56,"677 Center St, Atlanta, GA 30301" -270585,AA Batteries (4-pack),2,3.84,10/11/19 21:50,"9 Elm St, Atlanta, GA 30301" -270586,Lightning Charging Cable,1,14.95,10/17/19 07:24,"944 Madison St, Seattle, WA 98101" -270587,34in Ultrawide Monitor,1,379.99,10/05/19 08:46,"329 4th St, New York City, NY 10001" -270588,USB-C Charging Cable,1,11.95,10/26/19 16:44,"380 Cherry St, Atlanta, GA 30301" -270589,AA Batteries (4-pack),1,3.84,10/06/19 18:53,"217 Cedar St, San Francisco, CA 94016" -270590,27in 4K Gaming Monitor,1,389.99,10/31/19 13:54,"656 Maple St, Portland, OR 97035" -270591,Macbook Pro Laptop,1,1700,10/31/19 19:46,"706 South St, Los Angeles, CA 90001" -270592,AAA Batteries (4-pack),2,2.99,10/01/19 08:18,"261 11th St, Austin, TX 73301" -270593,USB-C Charging Cable,1,11.95,10/31/19 15:40,"882 6th St, Los Angeles, CA 90001" -270594,Wired Headphones,1,11.99,10/08/19 20:35,"704 Church St, Dallas, TX 75001" -,,,,, -270595,AA Batteries (4-pack),1,3.84,10/10/19 12:29,"927 Wilson St, Seattle, WA 98101" -270596,AA Batteries (4-pack),1,3.84,10/06/19 19:50,"884 Meadow St, Seattle, WA 98101" -270597,Lightning Charging Cable,1,14.95,10/02/19 11:01,"175 Center St, San Francisco, CA 94016" -270598,AAA Batteries (4-pack),1,2.99,10/14/19 20:10,"32 8th St, San Francisco, CA 94016" -270599,Bose SoundSport Headphones,1,99.99,10/03/19 15:59,"283 12th St, Dallas, TX 75001" -270600,USB-C Charging Cable,1,11.95,10/14/19 21:42,"22 Ridge St, Boston, MA 02215" -270601,USB-C Charging Cable,2,11.95,10/21/19 23:43,"391 Pine St, Austin, TX 73301" -270602,Google Phone,1,600,10/01/19 15:15,"637 Meadow St, Atlanta, GA 30301" -270603,AAA Batteries (4-pack),1,2.99,10/25/19 06:58,"634 South St, Atlanta, GA 30301" -270604,Apple Airpods Headphones,1,150,10/21/19 17:33,"62 Meadow St, Portland, OR 97035" -270605,AA Batteries (4-pack),1,3.84,10/19/19 16:47,"89 14th St, Atlanta, GA 30301" -270606,AAA Batteries (4-pack),3,2.99,10/16/19 17:40,"385 South St, San Francisco, CA 94016" -270607,AAA Batteries (4-pack),2,2.99,10/31/19 13:07,"659 14th St, Boston, MA 02215" -270608,Macbook Pro Laptop,1,1700,10/09/19 20:02,"987 Lake St, San Francisco, CA 94016" -270609,Macbook Pro Laptop,1,1700,10/07/19 01:04,"283 Spruce St, Los Angeles, CA 90001" -270610,Flatscreen TV,1,300,10/05/19 13:14,"276 5th St, San Francisco, CA 94016" -270611,34in Ultrawide Monitor,1,379.99,10/26/19 19:07,"195 Hill St, Portland, OR 97035" -270612,Apple Airpods Headphones,1,150,10/01/19 12:14,"50 Lincoln St, Atlanta, GA 30301" -270613,AA Batteries (4-pack),1,3.84,10/02/19 19:06,"205 Jackson St, Los Angeles, CA 90001" -270614,Google Phone,1,600,10/21/19 15:50,"417 Wilson St, New York City, NY 10001" -270615,USB-C Charging Cable,1,11.95,10/23/19 12:54,"366 8th St, San Francisco, CA 94016" -270616,Bose SoundSport Headphones,1,99.99,10/17/19 02:55,"176 North St, San Francisco, CA 94016" -270617,USB-C Charging Cable,1,11.95,10/02/19 11:18,"51 Park St, Boston, MA 02215" -270618,Wired Headphones,1,11.99,10/26/19 14:49,"531 7th St, Boston, MA 02215" -270619,AAA Batteries (4-pack),2,2.99,10/03/19 09:21,"238 14th St, Atlanta, GA 30301" -270620,USB-C Charging Cable,1,11.95,10/14/19 07:02,"834 Meadow St, San Francisco, CA 94016" -270621,USB-C Charging Cable,1,11.95,10/03/19 06:47,"476 North St, New York City, NY 10001" -270622,LG Washing Machine,1,600.0,10/11/19 10:00,"771 Park St, New York City, NY 10001" -270623,Lightning Charging Cable,1,14.95,10/27/19 14:42,"438 Elm St, Boston, MA 02215" -270624,USB-C Charging Cable,1,11.95,10/19/19 10:41,"998 Forest St, Atlanta, GA 30301" -270624,USB-C Charging Cable,1,11.95,10/19/19 10:41,"998 Forest St, Atlanta, GA 30301" -270625,Bose SoundSport Headphones,1,99.99,10/08/19 23:12,"457 9th St, Los Angeles, CA 90001" -270626,Apple Airpods Headphones,1,150,10/09/19 12:12,"568 Maple St, New York City, NY 10001" -270627,AAA Batteries (4-pack),2,2.99,10/05/19 17:57,"193 7th St, Atlanta, GA 30301" -270628,Macbook Pro Laptop,1,1700,10/04/19 00:03,"845 Jefferson St, Los Angeles, CA 90001" -270629,Google Phone,1,600,10/20/19 23:05,"415 Lake St, Los Angeles, CA 90001" -270629,USB-C Charging Cable,1,11.95,10/20/19 23:05,"415 Lake St, Los Angeles, CA 90001" -270630,Google Phone,1,600,10/06/19 20:34,"280 5th St, San Francisco, CA 94016" -270631,AA Batteries (4-pack),1,3.84,10/22/19 18:14,"362 Hickory St, Atlanta, GA 30301" -270632,Lightning Charging Cable,1,14.95,10/20/19 10:13,"583 1st St, New York City, NY 10001" -270633,AA Batteries (4-pack),2,3.84,10/23/19 17:48,"706 Wilson St, Boston, MA 02215" -270634,Lightning Charging Cable,1,14.95,10/19/19 22:59,"237 Wilson St, Dallas, TX 75001" -270635,AA Batteries (4-pack),1,3.84,10/07/19 08:49,"695 Lakeview St, Seattle, WA 98101" -270636,USB-C Charging Cable,1,11.95,10/04/19 16:18,"756 Center St, San Francisco, CA 94016" -270637,USB-C Charging Cable,1,11.95,10/22/19 20:46,"11 10th St, Boston, MA 02215" -270638,AA Batteries (4-pack),1,3.84,10/03/19 20:23,"611 Pine St, Dallas, TX 75001" -270639,34in Ultrawide Monitor,1,379.99,10/11/19 15:31,"601 Jackson St, San Francisco, CA 94016" -270640,USB-C Charging Cable,2,11.95,10/10/19 18:36,"906 Jackson St, New York City, NY 10001" -270641,Wired Headphones,1,11.99,10/15/19 23:11,"611 Sunset St, San Francisco, CA 94016" -270642,AAA Batteries (4-pack),4,2.99,10/25/19 12:35,"336 Adams St, Atlanta, GA 30301" -270643,Lightning Charging Cable,1,14.95,10/15/19 12:58,"222 West St, San Francisco, CA 94016" -270644,USB-C Charging Cable,1,11.95,10/25/19 00:00,"765 Cherry St, New York City, NY 10001" -270645,Lightning Charging Cable,1,14.95,10/07/19 20:06,"802 Ridge St, New York City, NY 10001" -270646,iPhone,1,700,10/10/19 16:39,"630 14th St, San Francisco, CA 94016" -270646,Apple Airpods Headphones,1,150,10/10/19 16:39,"630 14th St, San Francisco, CA 94016" -270647,USB-C Charging Cable,2,11.95,10/03/19 14:24,"179 Park St, Seattle, WA 98101" -270648,AAA Batteries (4-pack),1,2.99,10/28/19 11:05,"450 Lincoln St, Austin, TX 73301" -270649,27in 4K Gaming Monitor,1,389.99,10/22/19 23:27,"189 West St, San Francisco, CA 94016" -270650,USB-C Charging Cable,1,11.95,10/02/19 20:36,"832 Forest St, San Francisco, CA 94016" -270651,27in FHD Monitor,1,149.99,10/08/19 09:55,"533 Pine St, Dallas, TX 75001" -270652,Wired Headphones,1,11.99,10/04/19 11:45,"568 Jefferson St, Austin, TX 73301" -270653,USB-C Charging Cable,1,11.95,10/30/19 18:30,"698 Highland St, Los Angeles, CA 90001" -270654,Lightning Charging Cable,1,14.95,10/15/19 13:15,"363 Elm St, Boston, MA 02215" -270655,Macbook Pro Laptop,1,1700,10/12/19 10:33,"462 Cedar St, Dallas, TX 75001" -270656,27in 4K Gaming Monitor,1,389.99,10/25/19 16:38,"551 Center St, Portland, OR 97035" -270657,AAA Batteries (4-pack),1,2.99,10/09/19 14:18,"689 Park St, Los Angeles, CA 90001" -270658,Flatscreen TV,1,300,10/08/19 08:23,"872 4th St, San Francisco, CA 94016" -270659,AAA Batteries (4-pack),1,2.99,10/24/19 08:48,"944 Pine St, San Francisco, CA 94016" -270660,AAA Batteries (4-pack),3,2.99,10/19/19 09:48,"187 Wilson St, Los Angeles, CA 90001" -270661,USB-C Charging Cable,2,11.95,10/31/19 23:03,"652 Hill St, Atlanta, GA 30301" -270662,AA Batteries (4-pack),1,3.84,10/01/19 14:00,"913 Highland St, Los Angeles, CA 90001" -270663,Flatscreen TV,1,300,10/19/19 20:20,"400 Lakeview St, San Francisco, CA 94016" -270664,Apple Airpods Headphones,1,150,10/06/19 19:20,"32 14th St, Seattle, WA 98101" -270665,AA Batteries (4-pack),1,3.84,10/24/19 03:57,"206 14th St, New York City, NY 10001" -270666,Lightning Charging Cable,1,14.95,10/13/19 17:56,"86 4th St, Austin, TX 73301" -270667,Lightning Charging Cable,2,14.95,10/14/19 19:02,"105 Sunset St, Portland, OR 97035" -270668,USB-C Charging Cable,1,11.95,10/04/19 16:24,"508 Center St, San Francisco, CA 94016" -270669,Wired Headphones,2,11.99,10/28/19 16:46,"338 Lakeview St, Dallas, TX 75001" -270670,Google Phone,1,600,10/20/19 21:15,"276 Jefferson St, Dallas, TX 75001" -270670,Wired Headphones,1,11.99,10/20/19 21:15,"276 Jefferson St, Dallas, TX 75001" -270671,iPhone,1,700,10/13/19 08:38,"431 Pine St, Los Angeles, CA 90001" -270672,Wired Headphones,1,11.99,10/07/19 10:51,"995 Ridge St, Seattle, WA 98101" -270673,Lightning Charging Cable,1,14.95,10/07/19 15:21,"185 Pine St, New York City, NY 10001" -270674,Wired Headphones,1,11.99,10/28/19 09:32,"142 11th St, Los Angeles, CA 90001" -270675,Bose SoundSport Headphones,1,99.99,10/01/19 18:33,"58 Walnut St, Seattle, WA 98101" -270676,iPhone,1,700,10/20/19 13:39,"693 5th St, San Francisco, CA 94016" -270676,Wired Headphones,1,11.99,10/20/19 13:39,"693 5th St, San Francisco, CA 94016" -270677,AAA Batteries (4-pack),1,2.99,10/06/19 17:11,"479 Adams St, New York City, NY 10001" -270678,AAA Batteries (4-pack),2,2.99,10/24/19 12:01,"814 South St, Boston, MA 02215" -270679,27in FHD Monitor,1,149.99,10/03/19 15:11,"15 Lakeview St, Dallas, TX 75001" -270680,USB-C Charging Cable,1,11.95,10/05/19 09:00,"921 8th St, New York City, NY 10001" -270681,Apple Airpods Headphones,1,150,10/20/19 22:39,"272 5th St, Dallas, TX 75001" -270682,USB-C Charging Cable,1,11.95,10/05/19 10:42,"367 Spruce St, San Francisco, CA 94016" -270683,AA Batteries (4-pack),1,3.84,10/21/19 11:44,"141 Center St, San Francisco, CA 94016" -270684,20in Monitor,2,109.99,10/16/19 09:04,"77 Elm St, San Francisco, CA 94016" -270685,34in Ultrawide Monitor,1,379.99,10/21/19 16:21,"407 9th St, San Francisco, CA 94016" -270686,USB-C Charging Cable,1,11.95,10/16/19 19:35,"791 Maple St, Dallas, TX 75001" -270687,AA Batteries (4-pack),1,3.84,10/05/19 16:33,"732 Church St, New York City, NY 10001" -270688,AAA Batteries (4-pack),1,2.99,10/05/19 09:12,"735 Pine St, Boston, MA 02215" -270689,USB-C Charging Cable,1,11.95,10/10/19 09:53,"684 River St, Boston, MA 02215" -270690,Lightning Charging Cable,2,14.95,10/27/19 10:20,"958 Dogwood St, Los Angeles, CA 90001" -270691,USB-C Charging Cable,1,11.95,10/09/19 14:34,"622 Lake St, San Francisco, CA 94016" -270692,Macbook Pro Laptop,1,1700,10/11/19 11:31,"154 Lake St, New York City, NY 10001" -270693,Lightning Charging Cable,1,14.95,10/08/19 14:42,"980 Johnson St, Los Angeles, CA 90001" -270694,USB-C Charging Cable,2,11.95,10/22/19 08:55,"954 Forest St, San Francisco, CA 94016" -270695,Lightning Charging Cable,1,14.95,10/14/19 18:03,"687 Madison St, San Francisco, CA 94016" -270696,AA Batteries (4-pack),2,3.84,10/18/19 23:21,"937 Lincoln St, San Francisco, CA 94016" -270697,USB-C Charging Cable,1,11.95,10/22/19 18:48,"452 Lakeview St, San Francisco, CA 94016" -270697,27in FHD Monitor,1,149.99,10/22/19 18:48,"452 Lakeview St, San Francisco, CA 94016" -270698,Lightning Charging Cable,1,14.95,10/26/19 18:59,"926 Forest St, San Francisco, CA 94016" -270699,Bose SoundSport Headphones,1,99.99,10/12/19 13:23,"349 Lakeview St, Atlanta, GA 30301" -270700,Bose SoundSport Headphones,1,99.99,10/08/19 13:24,"897 Forest St, San Francisco, CA 94016" -270701,Macbook Pro Laptop,1,1700,10/05/19 18:16,"503 Chestnut St, San Francisco, CA 94016" -270702,20in Monitor,1,109.99,10/05/19 17:46,"641 Cherry St, New York City, NY 10001" -270703,AAA Batteries (4-pack),1,2.99,10/07/19 15:26,"290 7th St, San Francisco, CA 94016" -270704,Apple Airpods Headphones,1,150,10/06/19 17:23,"737 9th St, Los Angeles, CA 90001" -270705,20in Monitor,1,109.99,10/21/19 14:02,"402 Johnson St, Los Angeles, CA 90001" -270706,20in Monitor,1,109.99,10/01/19 10:57,"273 11th St, San Francisco, CA 94016" -270707,Bose SoundSport Headphones,1,99.99,10/12/19 18:42,"899 Church St, Los Angeles, CA 90001" -270708,Apple Airpods Headphones,1,150,10/12/19 12:18,"257 Ridge St, New York City, NY 10001" -270709,AAA Batteries (4-pack),1,2.99,10/31/19 12:49,"259 Walnut St, Boston, MA 02215" -270710,USB-C Charging Cable,1,11.95,10/08/19 17:09,"663 Ridge St, Atlanta, GA 30301" -270711,Lightning Charging Cable,1,14.95,10/17/19 09:26,"106 11th St, San Francisco, CA 94016" -270712,AAA Batteries (4-pack),1,2.99,10/08/19 11:24,"728 Center St, Dallas, TX 75001" -270713,AAA Batteries (4-pack),1,2.99,10/30/19 11:57,"427 Lincoln St, Atlanta, GA 30301" -270714,Bose SoundSport Headphones,1,99.99,10/30/19 18:15,"185 Park St, San Francisco, CA 94016" -270715,AA Batteries (4-pack),2,3.84,10/20/19 13:41,"637 Dogwood St, Portland, OR 97035" -270716,27in 4K Gaming Monitor,1,389.99,10/30/19 01:44,"659 9th St, New York City, NY 10001" -270717,34in Ultrawide Monitor,1,379.99,10/16/19 20:09,"654 Chestnut St, San Francisco, CA 94016" -270718,Bose SoundSport Headphones,1,99.99,10/24/19 12:45,"110 6th St, New York City, NY 10001" -270719,Lightning Charging Cable,2,14.95,10/06/19 22:24,"597 Elm St, Los Angeles, CA 90001" -270720,AAA Batteries (4-pack),5,2.99,10/18/19 17:58,"550 Center St, New York City, NY 10001" -270721,Bose SoundSport Headphones,1,99.99,10/18/19 15:49,"999 8th St, Los Angeles, CA 90001" -270722,Lightning Charging Cable,1,14.95,10/31/19 16:13,"842 Dogwood St, New York City, NY 10001" -270723,27in 4K Gaming Monitor,1,389.99,10/12/19 16:45,"281 Chestnut St, New York City, NY 10001" -270724,USB-C Charging Cable,1,11.95,10/29/19 23:00,"319 Dogwood St, Los Angeles, CA 90001" -270725,Apple Airpods Headphones,1,150,10/15/19 14:14,"737 Willow St, Dallas, TX 75001" -270726,AA Batteries (4-pack),1,3.84,10/31/19 06:48,"13 Washington St, Boston, MA 02215" -270727,USB-C Charging Cable,1,11.95,10/19/19 08:05,"511 Wilson St, Seattle, WA 98101" -270728,Google Phone,1,600,10/18/19 10:09,"337 12th St, San Francisco, CA 94016" -270728,USB-C Charging Cable,1,11.95,10/18/19 10:09,"337 12th St, San Francisco, CA 94016" -270728,Wired Headphones,1,11.99,10/18/19 10:09,"337 12th St, San Francisco, CA 94016" -270729,iPhone,1,700,10/02/19 13:53,"563 West St, Atlanta, GA 30301" -270730,AA Batteries (4-pack),1,3.84,10/14/19 00:53,"674 North St, Seattle, WA 98101" -270731,AAA Batteries (4-pack),1,2.99,10/18/19 07:13,"926 Madison St, New York City, NY 10001" -270732,34in Ultrawide Monitor,1,379.99,10/24/19 16:15,"248 Jackson St, San Francisco, CA 94016" -270732,Apple Airpods Headphones,1,150,10/24/19 16:15,"248 Jackson St, San Francisco, CA 94016" -270733,Lightning Charging Cable,1,14.95,10/01/19 15:50,"16 6th St, Atlanta, GA 30301" -270734,Wired Headphones,1,11.99,10/30/19 22:07,"791 Wilson St, San Francisco, CA 94016" -270735,Google Phone,1,600,10/02/19 23:31,"662 Chestnut St, New York City, NY 10001" -270736,Bose SoundSport Headphones,1,99.99,10/08/19 12:34,"890 Meadow St, Los Angeles, CA 90001" -270737,Wired Headphones,1,11.99,10/10/19 14:11,"831 Lake St, Boston, MA 02215" -270738,27in FHD Monitor,1,149.99,10/05/19 17:22,"790 Center St, San Francisco, CA 94016" -270739,Macbook Pro Laptop,1,1700,10/07/19 17:07,"414 Main St, Atlanta, GA 30301" -270740,USB-C Charging Cable,1,11.95,10/29/19 12:10,"404 14th St, Boston, MA 02215" -270741,34in Ultrawide Monitor,1,379.99,10/31/19 09:57,"443 Center St, Boston, MA 02215" -270742,USB-C Charging Cable,1,11.95,10/21/19 15:20,"22 Ridge St, Los Angeles, CA 90001" -270743,27in FHD Monitor,1,149.99,10/27/19 20:29,"862 Spruce St, San Francisco, CA 94016" -270744,iPhone,1,700,10/07/19 11:31,"615 Park St, Boston, MA 02215" -270745,iPhone,1,700,10/12/19 16:01,"260 Adams St, San Francisco, CA 94016" -270746,27in FHD Monitor,1,149.99,10/17/19 18:24,"217 Church St, New York City, NY 10001" -270747,Bose SoundSport Headphones,1,99.99,10/20/19 10:41,"2 West St, Boston, MA 02215" -270748,Bose SoundSport Headphones,1,99.99,10/25/19 10:45,"63 4th St, San Francisco, CA 94016" -270749,Flatscreen TV,1,300,10/21/19 17:58,"834 1st St, Dallas, TX 75001" -270750,iPhone,1,700,10/08/19 21:27,"21 13th St, San Francisco, CA 94016" -270751,ThinkPad Laptop,1,999.99,10/15/19 17:44,"151 Jefferson St, Boston, MA 02215" -270752,USB-C Charging Cable,1,11.95,10/19/19 17:31,"271 Walnut St, San Francisco, CA 94016" -270753,Bose SoundSport Headphones,1,99.99,10/22/19 15:20,"580 Center St, Portland, OR 97035" -270754,AAA Batteries (4-pack),3,2.99,10/10/19 07:57,"351 7th St, Seattle, WA 98101" -270755,AA Batteries (4-pack),1,3.84,10/24/19 18:45,"305 North St, Seattle, WA 98101" -270756,AAA Batteries (4-pack),3,2.99,10/26/19 09:53,"959 Elm St, Dallas, TX 75001" -270757,Wired Headphones,1,11.99,10/25/19 16:58,"26 Park St, New York City, NY 10001" -270758,ThinkPad Laptop,1,999.99,10/22/19 23:45,"458 Adams St, New York City, NY 10001" -270759,Google Phone,1,600,10/04/19 18:32,"944 Elm St, Dallas, TX 75001" -270760,USB-C Charging Cable,1,11.95,10/31/19 17:35,"255 Church St, San Francisco, CA 94016" -270761,34in Ultrawide Monitor,1,379.99,10/28/19 11:55,"546 Jackson St, Portland, ME 04101" -270762,34in Ultrawide Monitor,1,379.99,10/06/19 22:45,"263 Hill St, San Francisco, CA 94016" -270763,Flatscreen TV,1,300,10/30/19 12:17,"659 Madison St, San Francisco, CA 94016" -270764,USB-C Charging Cable,1,11.95,10/30/19 15:39,"816 10th St, New York City, NY 10001" -270765,Flatscreen TV,1,300,10/11/19 21:08,"625 Chestnut St, San Francisco, CA 94016" -270766,AAA Batteries (4-pack),2,2.99,10/27/19 19:30,"46 Meadow St, Boston, MA 02215" -270767,AAA Batteries (4-pack),1,2.99,10/16/19 20:37,"660 13th St, San Francisco, CA 94016" -270768,Apple Airpods Headphones,1,150,10/06/19 04:10,"705 Adams St, Los Angeles, CA 90001" -270769,Apple Airpods Headphones,1,150,10/11/19 00:06,"36 4th St, Austin, TX 73301" -270770,USB-C Charging Cable,1,11.95,10/31/19 11:55,"820 South St, Los Angeles, CA 90001" -270771,Lightning Charging Cable,2,14.95,10/20/19 17:21,"778 Center St, Los Angeles, CA 90001" -270772,20in Monitor,1,109.99,10/03/19 13:44,"653 Park St, Boston, MA 02215" -270773,AAA Batteries (4-pack),1,2.99,10/03/19 14:38,"971 5th St, Boston, MA 02215" -270774,27in FHD Monitor,1,149.99,10/22/19 09:48,"812 Sunset St, Los Angeles, CA 90001" -270775,USB-C Charging Cable,1,11.95,10/16/19 08:45,"928 Cedar St, Boston, MA 02215" -270776,Lightning Charging Cable,1,14.95,10/15/19 22:44,"829 12th St, San Francisco, CA 94016" -270777,USB-C Charging Cable,1,11.95,10/17/19 17:51,"698 10th St, Portland, OR 97035" -270778,27in FHD Monitor,1,149.99,10/30/19 22:22,"370 Ridge St, Seattle, WA 98101" -270779,AA Batteries (4-pack),1,3.84,10/24/19 13:39,"705 Elm St, San Francisco, CA 94016" -270780,USB-C Charging Cable,1,11.95,10/09/19 15:27,"871 10th St, Seattle, WA 98101" -270781,Apple Airpods Headphones,1,150,10/22/19 19:28,"27 Meadow St, Los Angeles, CA 90001" -270782,Wired Headphones,2,11.99,10/09/19 19:34,"17 9th St, Los Angeles, CA 90001" -270783,AAA Batteries (4-pack),2,2.99,10/21/19 16:42,"61 Pine St, San Francisco, CA 94016" -270784,AA Batteries (4-pack),2,3.84,10/27/19 18:46,"282 South St, New York City, NY 10001" -270785,AAA Batteries (4-pack),1,2.99,10/02/19 18:13,"565 Hickory St, Portland, OR 97035" -270786,27in FHD Monitor,1,149.99,10/31/19 11:37,"105 Hill St, Atlanta, GA 30301" -270787,27in FHD Monitor,1,149.99,10/23/19 15:01,"765 12th St, Seattle, WA 98101" -270788,Flatscreen TV,1,300,10/23/19 01:07,"424 Maple St, San Francisco, CA 94016" -270789,Bose SoundSport Headphones,1,99.99,10/20/19 10:29,"346 Maple St, Seattle, WA 98101" -270790,USB-C Charging Cable,1,11.95,10/26/19 09:14,"120 River St, Atlanta, GA 30301" -270791,Google Phone,1,600,10/08/19 13:36,"363 Meadow St, Dallas, TX 75001" -270792,Wired Headphones,1,11.99,10/18/19 16:35,"858 Madison St, Boston, MA 02215" -270793,27in 4K Gaming Monitor,1,389.99,10/28/19 09:59,"319 Maple St, Boston, MA 02215" -270794,27in 4K Gaming Monitor,1,389.99,10/25/19 11:02,"671 Meadow St, Seattle, WA 98101" -,,,,, -270795,Macbook Pro Laptop,1,1700,10/26/19 14:57,"335 Madison St, Dallas, TX 75001" -270796,USB-C Charging Cable,1,11.95,10/21/19 16:18,"843 Jefferson St, Los Angeles, CA 90001" -270797,USB-C Charging Cable,1,11.95,10/05/19 17:30,"677 Cherry St, Austin, TX 73301" -270798,AAA Batteries (4-pack),3,2.99,10/09/19 13:27,"258 Spruce St, Atlanta, GA 30301" -270799,Wired Headphones,1,11.99,10/20/19 11:00,"876 Jackson St, New York City, NY 10001" -270800,AAA Batteries (4-pack),1,2.99,10/21/19 19:22,"668 6th St, San Francisco, CA 94016" -270801,Lightning Charging Cable,1,14.95,10/11/19 12:34,"334 8th St, Dallas, TX 75001" -270802,Google Phone,1,600,10/07/19 10:11,"897 Lake St, San Francisco, CA 94016" -270803,AA Batteries (4-pack),2,3.84,10/21/19 21:33,"189 13th St, Boston, MA 02215" -270804,AAA Batteries (4-pack),1,2.99,10/21/19 09:27,"943 7th St, San Francisco, CA 94016" -270805,Bose SoundSport Headphones,1,99.99,10/11/19 17:43,"808 2nd St, San Francisco, CA 94016" -270806,AA Batteries (4-pack),1,3.84,10/15/19 16:13,"212 Dogwood St, Boston, MA 02215" -270807,Google Phone,1,600,10/14/19 22:40,"219 14th St, Atlanta, GA 30301" -270807,Wired Headphones,1,11.99,10/14/19 22:40,"219 14th St, Atlanta, GA 30301" -270808,USB-C Charging Cable,1,11.95,10/10/19 10:12,"354 Park St, San Francisco, CA 94016" -270809,Apple Airpods Headphones,1,150,10/05/19 11:56,"362 Washington St, Dallas, TX 75001" -270810,34in Ultrawide Monitor,1,379.99,10/28/19 13:12,"533 9th St, Seattle, WA 98101" -270811,AAA Batteries (4-pack),1,2.99,10/11/19 22:33,"423 Meadow St, Portland, OR 97035" -270812,Wired Headphones,1,11.99,10/02/19 11:07,"667 7th St, Austin, TX 73301" -270813,AA Batteries (4-pack),1,3.84,10/24/19 20:44,"416 Lakeview St, Los Angeles, CA 90001" -270814,Macbook Pro Laptop,1,1700,10/25/19 09:23,"383 West St, San Francisco, CA 94016" -270815,Apple Airpods Headphones,1,150,10/23/19 21:48,"40 Pine St, Atlanta, GA 30301" -270816,Lightning Charging Cable,1,14.95,10/12/19 07:02,"346 Johnson St, San Francisco, CA 94016" -270817,USB-C Charging Cable,1,11.95,10/29/19 12:30,"718 Madison St, New York City, NY 10001" -270818,Apple Airpods Headphones,1,150,10/22/19 13:33,"611 Maple St, Seattle, WA 98101" -270819,Wired Headphones,1,11.99,10/03/19 14:46,"303 Lake St, Austin, TX 73301" -270820,34in Ultrawide Monitor,1,379.99,10/10/19 15:11,"290 Jackson St, San Francisco, CA 94016" -270821,Lightning Charging Cable,1,14.95,10/21/19 10:47,"253 4th St, San Francisco, CA 94016" -270822,Lightning Charging Cable,1,14.95,10/27/19 07:23,"344 Dogwood St, Boston, MA 02215" -270822,AAA Batteries (4-pack),1,2.99,10/27/19 07:23,"344 Dogwood St, Boston, MA 02215" -270823,ThinkPad Laptop,1,999.99,10/17/19 15:37,"381 Hill St, Dallas, TX 75001" -270824,Apple Airpods Headphones,1,150,10/01/19 18:41,"770 5th St, Dallas, TX 75001" -270825,Lightning Charging Cable,1,14.95,10/21/19 10:02,"95 River St, Atlanta, GA 30301" -270826,USB-C Charging Cable,1,11.95,10/05/19 14:10,"517 7th St, Dallas, TX 75001" -270827,AAA Batteries (4-pack),1,2.99,10/26/19 19:32,"388 10th St, Atlanta, GA 30301" -270828,Lightning Charging Cable,1,14.95,10/25/19 12:03,"695 5th St, Los Angeles, CA 90001" -270829,Apple Airpods Headphones,1,150,10/24/19 10:00,"689 Lakeview St, San Francisco, CA 94016" -270830,Lightning Charging Cable,1,14.95,10/13/19 19:46,"180 5th St, Seattle, WA 98101" -270831,USB-C Charging Cable,1,11.95,10/24/19 23:04,"249 7th St, Atlanta, GA 30301" -270832,Apple Airpods Headphones,1,150,10/09/19 14:05,"724 Walnut St, Portland, OR 97035" -270833,Apple Airpods Headphones,1,150,10/07/19 19:42,"995 12th St, Boston, MA 02215" -270834,AA Batteries (4-pack),1,3.84,10/30/19 14:34,"131 Lake St, Los Angeles, CA 90001" -270835,AAA Batteries (4-pack),1,2.99,10/03/19 18:26,"288 Elm St, San Francisco, CA 94016" -270836,AAA Batteries (4-pack),2,2.99,10/03/19 05:44,"567 1st St, Seattle, WA 98101" -270837,Lightning Charging Cable,1,14.95,10/17/19 18:45,"320 7th St, Atlanta, GA 30301" -270838,AAA Batteries (4-pack),2,2.99,10/17/19 11:17,"413 6th St, New York City, NY 10001" -270839,USB-C Charging Cable,1,11.95,10/04/19 05:40,"628 West St, Portland, ME 04101" -270840,Wired Headphones,1,11.99,10/12/19 14:45,"644 Lakeview St, Los Angeles, CA 90001" -270841,27in FHD Monitor,1,149.99,10/20/19 14:08,"777 1st St, Los Angeles, CA 90001" -270842,AAA Batteries (4-pack),1,2.99,10/14/19 21:28,"148 Walnut St, Seattle, WA 98101" -270843,Apple Airpods Headphones,1,150,10/04/19 16:34,"242 Main St, Dallas, TX 75001" -270844,USB-C Charging Cable,1,11.95,10/09/19 11:25,"231 Maple St, Atlanta, GA 30301" -270845,USB-C Charging Cable,1,11.95,10/20/19 17:54,"277 7th St, Los Angeles, CA 90001" -270846,Bose SoundSport Headphones,1,99.99,10/19/19 16:24,"325 9th St, Atlanta, GA 30301" -270847,Bose SoundSport Headphones,1,99.99,10/25/19 15:33,"590 Sunset St, Boston, MA 02215" -270848,Lightning Charging Cable,2,14.95,10/14/19 22:22,"625 Sunset St, Los Angeles, CA 90001" -270849,AA Batteries (4-pack),2,3.84,10/09/19 10:27,"317 8th St, San Francisco, CA 94016" -270850,iPhone,1,700,10/19/19 14:46,"14 Forest St, Dallas, TX 75001" -270850,Lightning Charging Cable,1,14.95,10/19/19 14:46,"14 Forest St, Dallas, TX 75001" -270851,Lightning Charging Cable,1,14.95,10/26/19 15:04,"31 Chestnut St, Boston, MA 02215" -270852,Wired Headphones,1,11.99,10/28/19 19:22,"896 Lake St, New York City, NY 10001" -270853,AA Batteries (4-pack),1,3.84,10/15/19 21:14,"941 Forest St, Boston, MA 02215" -270854,27in 4K Gaming Monitor,1,389.99,10/19/19 20:38,"454 Elm St, New York City, NY 10001" -270855,USB-C Charging Cable,1,11.95,10/13/19 09:33,"288 Elm St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -270856,Apple Airpods Headphones,1,150,10/04/19 18:30,"945 Spruce St, Atlanta, GA 30301" -270857,iPhone,1,700,10/01/19 12:38,"449 Center St, Dallas, TX 75001" -270857,Apple Airpods Headphones,1,150,10/01/19 12:38,"449 Center St, Dallas, TX 75001" -270858,Lightning Charging Cable,1,14.95,10/01/19 12:31,"854 Cherry St, New York City, NY 10001" -270859,Lightning Charging Cable,1,14.95,10/10/19 20:34,"973 9th St, San Francisco, CA 94016" -270860,AA Batteries (4-pack),1,3.84,10/27/19 09:58,"360 4th St, San Francisco, CA 94016" -270861,AA Batteries (4-pack),2,3.84,10/25/19 19:11,"933 Elm St, Dallas, TX 75001" -270862,Macbook Pro Laptop,1,1700,10/25/19 10:26,"657 8th St, Austin, TX 73301" -270863,Bose SoundSport Headphones,1,99.99,10/01/19 18:02,"531 Johnson St, Austin, TX 73301" -270864,27in FHD Monitor,1,149.99,10/01/19 14:09,"871 5th St, New York City, NY 10001" -270865,AAA Batteries (4-pack),1,2.99,10/17/19 19:58,"890 6th St, New York City, NY 10001" -270866,Wired Headphones,1,11.99,10/30/19 21:54,"569 Meadow St, Portland, ME 04101" -270867,Wired Headphones,1,11.99,10/29/19 15:14,"632 Forest St, Dallas, TX 75001" -270868,34in Ultrawide Monitor,1,379.99,10/19/19 18:52,"330 Jefferson St, New York City, NY 10001" -270869,34in Ultrawide Monitor,1,379.99,10/03/19 11:11,"444 Lake St, Los Angeles, CA 90001" -270870,Flatscreen TV,1,300,10/09/19 17:35,"24 Hill St, New York City, NY 10001" -270871,Wired Headphones,1,11.99,10/02/19 15:00,"650 Cedar St, Boston, MA 02215" -270872,AAA Batteries (4-pack),2,2.99,10/30/19 20:56,"904 Park St, San Francisco, CA 94016" -270873,Vareebadd Phone,1,400,10/22/19 14:38,"657 South St, Boston, MA 02215" -270874,Lightning Charging Cable,1,14.95,10/29/19 00:33,"434 Highland St, Seattle, WA 98101" -270875,AAA Batteries (4-pack),1,2.99,10/28/19 20:52,"922 7th St, Seattle, WA 98101" -270876,AAA Batteries (4-pack),1,2.99,10/12/19 19:16,"203 Hickory St, Los Angeles, CA 90001" -270877,Bose SoundSport Headphones,1,99.99,10/14/19 19:09,"973 14th St, Dallas, TX 75001" -270878,Macbook Pro Laptop,1,1700,10/27/19 12:26,"251 Washington St, Atlanta, GA 30301" -270879,Bose SoundSport Headphones,1,99.99,10/13/19 11:54,"608 Jefferson St, Portland, OR 97035" -270880,Wired Headphones,1,11.99,10/29/19 21:36,"635 Hickory St, Portland, OR 97035" -270881,AAA Batteries (4-pack),1,2.99,10/13/19 11:52,"606 Sunset St, Dallas, TX 75001" -270882,AA Batteries (4-pack),2,3.84,10/09/19 22:50,"3 Lincoln St, Seattle, WA 98101" -270883,Bose SoundSport Headphones,1,99.99,10/12/19 16:26,"4 2nd St, Los Angeles, CA 90001" -270884,27in FHD Monitor,1,149.99,10/29/19 00:11,"220 7th St, Seattle, WA 98101" -270885,Bose SoundSport Headphones,1,99.99,10/12/19 22:09,"753 Spruce St, Los Angeles, CA 90001" -270886,AA Batteries (4-pack),1,3.84,10/25/19 18:59,"785 Chestnut St, Boston, MA 02215" -270887,Wired Headphones,1,11.99,10/21/19 11:56,"62 Wilson St, Seattle, WA 98101" -270888,Apple Airpods Headphones,1,150,10/27/19 09:08,"959 Adams St, Portland, OR 97035" -270889,iPhone,1,700,10/30/19 21:02,"364 6th St, New York City, NY 10001" -270890,AA Batteries (4-pack),2,3.84,10/13/19 22:15,"176 Park St, Austin, TX 73301" -270891,AA Batteries (4-pack),1,3.84,10/19/19 01:01,"554 Highland St, New York City, NY 10001" -270892,Bose SoundSport Headphones,1,99.99,10/15/19 21:50,"568 5th St, San Francisco, CA 94016" -270893,Bose SoundSport Headphones,1,99.99,10/07/19 22:13,"614 Jackson St, Los Angeles, CA 90001" -270894,AAA Batteries (4-pack),1,2.99,10/19/19 11:18,"622 11th St, San Francisco, CA 94016" -270895,AA Batteries (4-pack),1,3.84,10/13/19 22:57,"936 Jefferson St, Boston, MA 02215" -270896,Bose SoundSport Headphones,1,99.99,10/07/19 11:19,"300 Elm St, Dallas, TX 75001" -270897,AAA Batteries (4-pack),1,2.99,10/28/19 03:42,"860 Madison St, New York City, NY 10001" -270898,USB-C Charging Cable,1,11.95,10/09/19 09:43,"115 South St, Dallas, TX 75001" -270899,34in Ultrawide Monitor,1,379.99,10/06/19 11:51,"928 Walnut St, Seattle, WA 98101" -270900,iPhone,1,700,10/24/19 20:56,"594 5th St, New York City, NY 10001" -270900,Apple Airpods Headphones,1,150,10/24/19 20:56,"594 5th St, New York City, NY 10001" -270901,34in Ultrawide Monitor,1,379.99,10/26/19 21:26,"812 14th St, Dallas, TX 75001" -270901,iPhone,1,700,10/26/19 21:26,"812 14th St, Dallas, TX 75001" -270902,USB-C Charging Cable,1,11.95,10/18/19 15:44,"755 South St, Dallas, TX 75001" -270903,Apple Airpods Headphones,1,150,10/25/19 19:48,"595 North St, Portland, OR 97035" -270904,Apple Airpods Headphones,1,150,10/30/19 10:47,"933 7th St, Dallas, TX 75001" -270905,27in FHD Monitor,1,149.99,10/29/19 14:08,"224 River St, Los Angeles, CA 90001" -270906,Bose SoundSport Headphones,1,99.99,10/09/19 12:12,"562 11th St, New York City, NY 10001" -270907,Apple Airpods Headphones,1,150,10/11/19 18:35,"805 Meadow St, Portland, ME 04101" -270908,AAA Batteries (4-pack),1,2.99,10/27/19 08:32,"364 Park St, Los Angeles, CA 90001" -270909,ThinkPad Laptop,1,999.99,10/26/19 21:39,"826 9th St, Dallas, TX 75001" -270910,Bose SoundSport Headphones,1,99.99,10/03/19 15:19,"286 Cedar St, San Francisco, CA 94016" -270911,AAA Batteries (4-pack),2,2.99,10/24/19 08:34,"615 2nd St, Seattle, WA 98101" -270912,USB-C Charging Cable,1,11.95,10/27/19 11:41,"395 8th St, Dallas, TX 75001" -270913,Flatscreen TV,1,300,10/10/19 11:37,"853 Adams St, San Francisco, CA 94016" -270914,Flatscreen TV,1,300,10/06/19 16:02,"980 Cedar St, New York City, NY 10001" -270915,Lightning Charging Cable,1,14.95,10/05/19 08:03,"399 Pine St, Los Angeles, CA 90001" -270916,Apple Airpods Headphones,1,150,10/22/19 12:32,"55 Lake St, San Francisco, CA 94016" -270917,Lightning Charging Cable,1,14.95,10/19/19 17:18,"866 10th St, Portland, OR 97035" -270918,AAA Batteries (4-pack),1,2.99,10/15/19 09:34,"790 5th St, Boston, MA 02215" -270919,USB-C Charging Cable,1,11.95,10/05/19 12:25,"91 Main St, San Francisco, CA 94016" -270920,Apple Airpods Headphones,1,150,10/31/19 16:42,"797 Park St, Boston, MA 02215" -270921,Wired Headphones,1,11.99,10/20/19 11:59,"800 Walnut St, Boston, MA 02215" -270922,Flatscreen TV,1,300,10/19/19 18:15,"32 Hickory St, San Francisco, CA 94016" -270923,Lightning Charging Cable,1,14.95,10/11/19 10:05,"397 Madison St, Los Angeles, CA 90001" -270924,Apple Airpods Headphones,1,150,10/09/19 15:21,"64 Dogwood St, San Francisco, CA 94016" -270925,Lightning Charging Cable,1,14.95,10/10/19 21:09,"467 Madison St, Dallas, TX 75001" -270926,ThinkPad Laptop,1,999.99,10/05/19 09:47,"660 Chestnut St, Portland, OR 97035" -270927,Wired Headphones,1,11.99,10/14/19 09:59,"622 12th St, New York City, NY 10001" -270928,34in Ultrawide Monitor,1,379.99,10/27/19 21:48,"978 Maple St, Los Angeles, CA 90001" -270929,ThinkPad Laptop,1,999.99,10/11/19 11:09,"919 Chestnut St, San Francisco, CA 94016" -270930,Wired Headphones,1,11.99,10/22/19 22:06,"118 Dogwood St, Austin, TX 73301" -270931,ThinkPad Laptop,1,999.99,10/31/19 19:25,"232 Elm St, San Francisco, CA 94016" -270932,Apple Airpods Headphones,1,150,10/26/19 12:21,"384 Hickory St, New York City, NY 10001" -270933,Bose SoundSport Headphones,1,99.99,10/22/19 06:49,"496 Pine St, Seattle, WA 98101" -270934,34in Ultrawide Monitor,1,379.99,10/27/19 08:52,"896 Hickory St, Los Angeles, CA 90001" -270935,34in Ultrawide Monitor,1,379.99,10/12/19 16:08,"854 Center St, Dallas, TX 75001" -270936,USB-C Charging Cable,1,11.95,10/18/19 12:30,"376 Church St, New York City, NY 10001" -270937,USB-C Charging Cable,1,11.95,10/19/19 21:14,"941 South St, Dallas, TX 75001" -270938,USB-C Charging Cable,1,11.95,10/29/19 12:40,"896 Chestnut St, Boston, MA 02215" -270939,Lightning Charging Cable,1,14.95,10/30/19 21:00,"831 Adams St, New York City, NY 10001" -270940,AA Batteries (4-pack),1,3.84,10/18/19 18:22,"206 Main St, Atlanta, GA 30301" -270941,Lightning Charging Cable,1,14.95,10/25/19 14:48,"672 Church St, New York City, NY 10001" -270941,Bose SoundSport Headphones,2,99.99,10/25/19 14:48,"672 Church St, New York City, NY 10001" -270942,27in 4K Gaming Monitor,1,389.99,10/21/19 18:06,"213 Church St, San Francisco, CA 94016" -270943,Lightning Charging Cable,1,14.95,10/27/19 14:22,"448 Maple St, Portland, ME 04101" -270944,Apple Airpods Headphones,1,150,10/06/19 06:26,"373 Forest St, Boston, MA 02215" -270945,Lightning Charging Cable,1,14.95,10/03/19 12:59,"522 Cherry St, San Francisco, CA 94016" -270946,Apple Airpods Headphones,1,150,10/22/19 19:19,"415 Forest St, Atlanta, GA 30301" -270946,Wired Headphones,1,11.99,10/22/19 19:19,"415 Forest St, Atlanta, GA 30301" -270947,Lightning Charging Cable,1,14.95,10/20/19 20:58,"627 6th St, Los Angeles, CA 90001" -270948,Lightning Charging Cable,1,14.95,10/04/19 19:42,"32 Cedar St, San Francisco, CA 94016" -270949,Lightning Charging Cable,1,14.95,10/11/19 13:25,"464 Cherry St, Los Angeles, CA 90001" -270950,Wired Headphones,1,11.99,10/10/19 21:26,"181 Main St, Los Angeles, CA 90001" -270951,Flatscreen TV,1,300,10/30/19 11:27,"447 10th St, Boston, MA 02215" -270952,AAA Batteries (4-pack),2,2.99,10/17/19 12:02,"339 Maple St, San Francisco, CA 94016" -270953,AAA Batteries (4-pack),1,2.99,10/12/19 13:02,"59 9th St, Dallas, TX 75001" -270954,Wired Headphones,1,11.99,10/30/19 18:44,"612 Adams St, Portland, ME 04101" -270955,Bose SoundSport Headphones,1,99.99,10/06/19 15:00,"656 Park St, New York City, NY 10001" -270956,Bose SoundSport Headphones,1,99.99,10/19/19 21:02,"633 1st St, Boston, MA 02215" -270957,AA Batteries (4-pack),1,3.84,10/24/19 22:06,"332 Cherry St, Dallas, TX 75001" -270958,27in 4K Gaming Monitor,1,389.99,10/18/19 22:02,"666 13th St, San Francisco, CA 94016" -270959,LG Dryer,1,600.0,10/23/19 23:44,"583 6th St, San Francisco, CA 94016" -270960,USB-C Charging Cable,1,11.95,10/01/19 15:23,"780 Willow St, Boston, MA 02215" -270961,Flatscreen TV,1,300,10/19/19 21:55,"680 Hill St, Dallas, TX 75001" -270962,Wired Headphones,1,11.99,10/23/19 10:01,"164 Lakeview St, New York City, NY 10001" -270963,USB-C Charging Cable,1,11.95,10/31/19 08:35,"978 13th St, New York City, NY 10001" -270964,34in Ultrawide Monitor,1,379.99,10/25/19 21:58,"444 11th St, San Francisco, CA 94016" -270965,USB-C Charging Cable,1,11.95,10/08/19 01:10,"870 Lakeview St, San Francisco, CA 94016" -270966,USB-C Charging Cable,1,11.95,10/03/19 09:06,"807 7th St, San Francisco, CA 94016" -270967,ThinkPad Laptop,1,999.99,10/26/19 20:20,"796 Walnut St, San Francisco, CA 94016" -270968,27in 4K Gaming Monitor,1,389.99,10/06/19 23:04,"602 Sunset St, New York City, NY 10001" -270969,Apple Airpods Headphones,1,150,10/05/19 20:24,"583 Cedar St, Seattle, WA 98101" -270970,Lightning Charging Cable,1,14.95,10/14/19 15:17,"459 2nd St, Los Angeles, CA 90001" -270971,AA Batteries (4-pack),2,3.84,10/18/19 14:36,"409 Madison St, San Francisco, CA 94016" -270972,Wired Headphones,1,11.99,10/27/19 16:01,"113 1st St, Los Angeles, CA 90001" -270973,USB-C Charging Cable,1,11.95,10/27/19 10:40,"859 Walnut St, Seattle, WA 98101" -270974,34in Ultrawide Monitor,1,379.99,10/11/19 16:27,"277 Church St, Atlanta, GA 30301" -270975,iPhone,1,700,10/05/19 00:38,"916 Chestnut St, New York City, NY 10001" -270976,AA Batteries (4-pack),1,3.84,10/14/19 20:32,"424 Dogwood St, Dallas, TX 75001" -270977,Bose SoundSport Headphones,1,99.99,10/27/19 11:20,"101 Hill St, San Francisco, CA 94016" -270978,AA Batteries (4-pack),2,3.84,10/31/19 13:14,"533 Hill St, Los Angeles, CA 90001" -270979,27in FHD Monitor,1,149.99,10/02/19 22:09,"127 Lake St, San Francisco, CA 94016" -270980,Wired Headphones,1,11.99,10/15/19 17:39,"380 2nd St, San Francisco, CA 94016" -270981,AA Batteries (4-pack),2,3.84,10/02/19 18:43,"851 9th St, San Francisco, CA 94016" -270982,ThinkPad Laptop,1,999.99,10/11/19 10:17,"593 5th St, San Francisco, CA 94016" -270982,USB-C Charging Cable,1,11.95,10/11/19 10:17,"593 5th St, San Francisco, CA 94016" -270983,Wired Headphones,1,11.99,10/20/19 21:05,"828 River St, Portland, OR 97035" -270984,20in Monitor,1,109.99,10/08/19 16:59,"737 Lakeview St, New York City, NY 10001" -270985,Wired Headphones,1,11.99,10/07/19 13:37,"171 Highland St, Dallas, TX 75001" -270986,USB-C Charging Cable,1,11.95,10/01/19 11:33,"318 Dogwood St, Austin, TX 73301" -270987,USB-C Charging Cable,1,11.95,10/12/19 13:59,"716 Spruce St, Los Angeles, CA 90001" -270988,USB-C Charging Cable,1,11.95,10/15/19 08:33,"968 Lincoln St, Seattle, WA 98101" -270989,USB-C Charging Cable,1,11.95,10/30/19 18:26,"370 6th St, Dallas, TX 75001" -270990,Bose SoundSport Headphones,1,99.99,10/26/19 23:31,"183 Cedar St, Austin, TX 73301" -270991,20in Monitor,1,109.99,10/05/19 16:21,"466 10th St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -270992,Bose SoundSport Headphones,1,99.99,10/23/19 14:58,"349 River St, Los Angeles, CA 90001" -270993,AAA Batteries (4-pack),1,2.99,10/02/19 19:45,"49 Ridge St, Boston, MA 02215" -270994,Wired Headphones,1,11.99,10/23/19 15:32,"496 Highland St, Austin, TX 73301" -270995,USB-C Charging Cable,1,11.95,10/08/19 16:11,"991 Adams St, Los Angeles, CA 90001" -270996,Bose SoundSport Headphones,1,99.99,10/30/19 09:37,"553 North St, Seattle, WA 98101" -270997,AA Batteries (4-pack),1,3.84,10/17/19 20:44,"642 Wilson St, San Francisco, CA 94016" -270998,AA Batteries (4-pack),3,3.84,10/01/19 11:46,"291 Dogwood St, Los Angeles, CA 90001" -270999,AA Batteries (4-pack),1,3.84,10/26/19 10:14,"813 2nd St, Los Angeles, CA 90001" -271000,AA Batteries (4-pack),1,3.84,10/18/19 00:09,"435 12th St, San Francisco, CA 94016" -271001,27in FHD Monitor,1,149.99,10/16/19 20:25,"900 1st St, Boston, MA 02215" -271002,AA Batteries (4-pack),2,3.84,10/21/19 17:52,"668 West St, Atlanta, GA 30301" -271003,27in 4K Gaming Monitor,1,389.99,10/07/19 09:51,"190 10th St, San Francisco, CA 94016" -271004,Macbook Pro Laptop,1,1700,10/27/19 18:37,"842 Willow St, New York City, NY 10001" -271005,Lightning Charging Cable,1,14.95,10/14/19 21:36,"54 Hickory St, Portland, OR 97035" -271006,AAA Batteries (4-pack),1,2.99,10/31/19 03:50,"615 Church St, San Francisco, CA 94016" -271007,Apple Airpods Headphones,1,150,10/30/19 02:18,"913 4th St, Boston, MA 02215" -271008,34in Ultrawide Monitor,1,379.99,10/14/19 18:07,"404 South St, Boston, MA 02215" -271009,Apple Airpods Headphones,1,150,10/09/19 20:51,"682 Lakeview St, Seattle, WA 98101" -271010,Lightning Charging Cable,1,14.95,10/21/19 10:51,"298 Madison St, Los Angeles, CA 90001" -271011,27in FHD Monitor,1,149.99,10/16/19 21:10,"283 2nd St, New York City, NY 10001" -271012,Bose SoundSport Headphones,1,99.99,10/01/19 19:55,"827 Highland St, Austin, TX 73301" -271013,USB-C Charging Cable,1,11.95,10/08/19 15:05,"525 Chestnut St, Portland, ME 04101" -271014,AA Batteries (4-pack),1,3.84,10/07/19 17:56,"435 Center St, Boston, MA 02215" -271015,AAA Batteries (4-pack),1,2.99,10/01/19 08:53,"221 Ridge St, Dallas, TX 75001" -271016,Lightning Charging Cable,1,14.95,10/30/19 14:50,"856 Johnson St, Seattle, WA 98101" -271017,Google Phone,1,600,10/13/19 11:50,"195 Sunset St, Atlanta, GA 30301" -271018,Lightning Charging Cable,1,14.95,10/31/19 20:42,"646 West St, Portland, OR 97035" -271019,Lightning Charging Cable,1,14.95,10/31/19 07:02,"405 Hill St, Los Angeles, CA 90001" -271020,Bose SoundSport Headphones,1,99.99,10/26/19 14:39,"958 1st St, Boston, MA 02215" -271021,Bose SoundSport Headphones,1,99.99,10/04/19 12:37,"580 Sunset St, Los Angeles, CA 90001" -271022,Lightning Charging Cable,1,14.95,10/31/19 15:16,"973 Church St, San Francisco, CA 94016" -271023,USB-C Charging Cable,1,11.95,10/21/19 14:48,"827 8th St, San Francisco, CA 94016" -271024,iPhone,1,700,10/01/19 12:31,"130 Spruce St, San Francisco, CA 94016" -271025,AAA Batteries (4-pack),2,2.99,10/20/19 15:51,"949 North St, Boston, MA 02215" -271026,Flatscreen TV,1,300,10/10/19 20:26,"441 Highland St, Austin, TX 73301" -271027,Lightning Charging Cable,1,14.95,10/06/19 18:42,"486 5th St, Portland, ME 04101" -271028,USB-C Charging Cable,1,11.95,10/01/19 06:42,"432 Lincoln St, Boston, MA 02215" -271029,AA Batteries (4-pack),1,3.84,10/30/19 17:32,"184 Hickory St, Los Angeles, CA 90001" -271030,Google Phone,1,600,10/31/19 12:00,"843 North St, Portland, OR 97035" -271031,27in 4K Gaming Monitor,1,389.99,10/14/19 11:35,"625 Park St, Atlanta, GA 30301" -271032,Google Phone,1,600,10/13/19 10:35,"490 7th St, San Francisco, CA 94016" -271033,AA Batteries (4-pack),1,3.84,10/03/19 18:39,"115 13th St, Los Angeles, CA 90001" -271033,Flatscreen TV,1,300,10/03/19 18:39,"115 13th St, Los Angeles, CA 90001" -271034,Wired Headphones,1,11.99,10/28/19 07:50,"347 West St, Dallas, TX 75001" -271035,Bose SoundSport Headphones,1,99.99,10/09/19 02:01,"586 River St, Los Angeles, CA 90001" -271036,Vareebadd Phone,1,400,10/02/19 18:14,"357 Park St, Dallas, TX 75001" -271037,Apple Airpods Headphones,1,150,10/14/19 16:44,"165 Johnson St, Boston, MA 02215" -271038,Apple Airpods Headphones,1,150,10/22/19 15:41,"575 Lakeview St, Atlanta, GA 30301" -271039,27in 4K Gaming Monitor,1,389.99,10/20/19 22:53,"336 Washington St, Portland, ME 04101" -271040,AAA Batteries (4-pack),2,2.99,10/07/19 12:57,"468 Highland St, San Francisco, CA 94016" -271041,Bose SoundSport Headphones,1,99.99,10/14/19 15:04,"621 Madison St, Los Angeles, CA 90001" -271042,Wired Headphones,1,11.99,10/25/19 16:46,"960 Meadow St, Los Angeles, CA 90001" -271043,AA Batteries (4-pack),1,3.84,10/04/19 20:27,"557 Elm St, San Francisco, CA 94016" -271044,USB-C Charging Cable,1,11.95,10/16/19 09:58,"609 Forest St, New York City, NY 10001" -271045,27in 4K Gaming Monitor,1,389.99,10/31/19 23:49,"259 10th St, Los Angeles, CA 90001" -271046,Wired Headphones,1,11.99,10/05/19 16:09,"684 Washington St, New York City, NY 10001" -271047,Lightning Charging Cable,1,14.95,10/03/19 13:14,"309 Lincoln St, San Francisco, CA 94016" -271048,Flatscreen TV,1,300,10/17/19 19:50,"120 Cedar St, Boston, MA 02215" -271049,AAA Batteries (4-pack),1,2.99,10/30/19 19:05,"647 12th St, Los Angeles, CA 90001" -271050,AAA Batteries (4-pack),2,2.99,10/13/19 22:15,"879 6th St, San Francisco, CA 94016" -271051,34in Ultrawide Monitor,1,379.99,10/03/19 15:45,"670 11th St, Seattle, WA 98101" -271052,34in Ultrawide Monitor,1,379.99,10/23/19 21:26,"510 13th St, Dallas, TX 75001" -271053,Bose SoundSport Headphones,1,99.99,10/09/19 20:34,"853 4th St, Dallas, TX 75001" -271054,Flatscreen TV,1,300,10/18/19 11:53,"986 Center St, New York City, NY 10001" -271055,27in FHD Monitor,1,149.99,10/29/19 12:35,"436 14th St, Atlanta, GA 30301" -271056,Lightning Charging Cable,1,14.95,10/25/19 13:25,"343 River St, New York City, NY 10001" -271056,AAA Batteries (4-pack),1,2.99,10/25/19 13:25,"343 River St, New York City, NY 10001" -271057,Lightning Charging Cable,1,14.95,10/23/19 06:08,"439 5th St, San Francisco, CA 94016" -271058,Apple Airpods Headphones,1,150,10/19/19 21:08,"497 Church St, Los Angeles, CA 90001" -271059,AA Batteries (4-pack),1,3.84,10/12/19 14:31,"374 Walnut St, San Francisco, CA 94016" -271060,Wired Headphones,1,11.99,10/17/19 21:52,"492 Maple St, Boston, MA 02215" -271061,USB-C Charging Cable,1,11.95,10/06/19 06:14,"723 1st St, Los Angeles, CA 90001" -271062,USB-C Charging Cable,1,11.95,10/24/19 21:56,"204 5th St, New York City, NY 10001" -271063,27in 4K Gaming Monitor,1,389.99,10/12/19 16:35,"777 Dogwood St, Boston, MA 02215" -271064,AA Batteries (4-pack),2,3.84,10/11/19 19:23,"481 7th St, San Francisco, CA 94016" -271065,Apple Airpods Headphones,1,150,10/06/19 20:29,"949 Church St, Seattle, WA 98101" -271066,AA Batteries (4-pack),1,3.84,10/21/19 11:14,"958 Hickory St, Boston, MA 02215" -271067,27in FHD Monitor,1,149.99,10/14/19 13:25,"400 12th St, Los Angeles, CA 90001" -271068,AAA Batteries (4-pack),3,2.99,10/04/19 09:47,"496 River St, San Francisco, CA 94016" -271069,Google Phone,1,600,10/08/19 12:02,"67 Jackson St, Los Angeles, CA 90001" -271069,USB-C Charging Cable,1,11.95,10/08/19 12:02,"67 Jackson St, Los Angeles, CA 90001" -271070,20in Monitor,1,109.99,10/11/19 23:00,"876 Lake St, Dallas, TX 75001" -271071,Apple Airpods Headphones,1,150,10/04/19 19:45,"35 West St, San Francisco, CA 94016" -271072,USB-C Charging Cable,1,11.95,10/05/19 18:53,"519 Park St, Portland, ME 04101" -271073,AA Batteries (4-pack),1,3.84,10/26/19 12:29,"860 Lake St, San Francisco, CA 94016" -271074,Apple Airpods Headphones,1,150,10/02/19 11:18,"965 13th St, Portland, ME 04101" -271075,27in 4K Gaming Monitor,1,389.99,10/05/19 19:04,"417 5th St, San Francisco, CA 94016" -271076,AA Batteries (4-pack),1,3.84,10/16/19 12:04,"168 Sunset St, Austin, TX 73301" -271077,Bose SoundSport Headphones,1,99.99,10/31/19 15:13,"576 Forest St, Portland, OR 97035" -271078,USB-C Charging Cable,1,11.95,10/07/19 18:29,"70 Cedar St, San Francisco, CA 94016" -271079,Lightning Charging Cable,1,14.95,10/23/19 07:46,"434 West St, Atlanta, GA 30301" -271080,AA Batteries (4-pack),1,3.84,10/07/19 00:14,"821 10th St, Dallas, TX 75001" -271081,Lightning Charging Cable,1,14.95,10/18/19 22:02,"192 Pine St, San Francisco, CA 94016" -271082,Lightning Charging Cable,1,14.95,10/04/19 13:32,"70 1st St, San Francisco, CA 94016" -271083,Bose SoundSport Headphones,1,99.99,10/23/19 11:21,"303 Church St, San Francisco, CA 94016" -271084,USB-C Charging Cable,1,11.95,10/16/19 17:21,"216 Wilson St, San Francisco, CA 94016" -271085,Vareebadd Phone,1,400,10/29/19 12:41,"189 Wilson St, San Francisco, CA 94016" -271085,Bose SoundSport Headphones,1,99.99,10/29/19 12:41,"189 Wilson St, San Francisco, CA 94016" -271086,Bose SoundSport Headphones,1,99.99,10/06/19 18:54,"922 9th St, Atlanta, GA 30301" -271087,Lightning Charging Cable,1,14.95,10/07/19 17:46,"731 River St, New York City, NY 10001" -271088,USB-C Charging Cable,1,11.95,10/17/19 10:58,"350 Washington St, San Francisco, CA 94016" -271089,Wired Headphones,1,11.99,10/20/19 16:57,"156 Pine St, Boston, MA 02215" -271090,Wired Headphones,1,11.99,10/22/19 20:04,"535 5th St, San Francisco, CA 94016" -271091,AAA Batteries (4-pack),1,2.99,10/17/19 15:22,"939 South St, Seattle, WA 98101" -271092,AA Batteries (4-pack),1,3.84,10/31/19 17:36,"831 2nd St, Portland, ME 04101" -271093,Wired Headphones,1,11.99,10/12/19 12:29,"392 Ridge St, Atlanta, GA 30301" -271094,AAA Batteries (4-pack),6,2.99,10/08/19 16:36,"494 11th St, Portland, OR 97035" -271095,AAA Batteries (4-pack),1,2.99,10/08/19 22:02,"763 11th St, Seattle, WA 98101" -271096,Bose SoundSport Headphones,1,99.99,10/23/19 09:21,"615 Lincoln St, New York City, NY 10001" -271097,Vareebadd Phone,1,400,10/10/19 18:37,"290 Jefferson St, Dallas, TX 75001" -271098,Bose SoundSport Headphones,1,99.99,10/23/19 12:26,"360 Jackson St, Los Angeles, CA 90001" -271099,Apple Airpods Headphones,1,150,10/17/19 15:07,"70 Maple St, Boston, MA 02215" -271100,Lightning Charging Cable,1,14.95,10/27/19 09:49,"770 8th St, Los Angeles, CA 90001" -271101,AAA Batteries (4-pack),2,2.99,10/22/19 02:08,"479 5th St, New York City, NY 10001" -271102,AA Batteries (4-pack),1,3.84,10/05/19 21:36,"696 West St, New York City, NY 10001" -271103,Apple Airpods Headphones,1,150,10/13/19 11:52,"635 Johnson St, New York City, NY 10001" -271104,USB-C Charging Cable,1,11.95,10/28/19 21:35,"352 5th St, New York City, NY 10001" -271105,Bose SoundSport Headphones,1,99.99,10/15/19 20:00,"212 Sunset St, Boston, MA 02215" -271106,AAA Batteries (4-pack),1,2.99,10/19/19 20:46,"493 Cherry St, Atlanta, GA 30301" -271107,27in 4K Gaming Monitor,1,389.99,10/24/19 14:43,"31 8th St, Portland, OR 97035" -271108,AA Batteries (4-pack),1,3.84,10/23/19 09:35,"970 12th St, Los Angeles, CA 90001" -271109,Lightning Charging Cable,1,14.95,10/26/19 22:43,"37 Sunset St, Austin, TX 73301" -271110,Flatscreen TV,1,300,10/20/19 08:48,"861 Jefferson St, Boston, MA 02215" -271111,AA Batteries (4-pack),3,3.84,10/03/19 11:50,"31 9th St, Los Angeles, CA 90001" -271112,27in 4K Gaming Monitor,1,389.99,10/18/19 16:37,"205 Pine St, Atlanta, GA 30301" -271113,Wired Headphones,1,11.99,10/30/19 23:15,"311 River St, San Francisco, CA 94016" -271114,Google Phone,1,600,10/05/19 18:51,"943 2nd St, Los Angeles, CA 90001" -271115,AAA Batteries (4-pack),1,2.99,10/26/19 23:05,"10 Lakeview St, Dallas, TX 75001" -271116,Flatscreen TV,1,300,10/21/19 20:59,"988 6th St, Boston, MA 02215" -271117,Wired Headphones,1,11.99,10/05/19 17:06,"425 7th St, New York City, NY 10001" -271118,AA Batteries (4-pack),1,3.84,10/05/19 19:11,"289 12th St, Dallas, TX 75001" -271119,Lightning Charging Cable,1,14.95,10/22/19 10:11,"986 Forest St, Boston, MA 02215" -271120,AA Batteries (4-pack),2,3.84,10/08/19 11:03,"906 Spruce St, Boston, MA 02215" -271121,Wired Headphones,1,11.99,10/18/19 18:04,"451 Jackson St, Los Angeles, CA 90001" -271122,Apple Airpods Headphones,1,150,10/23/19 09:55,"245 Ridge St, San Francisco, CA 94016" -271123,Bose SoundSport Headphones,1,99.99,10/08/19 19:39,"653 1st St, Los Angeles, CA 90001" -271124,Macbook Pro Laptop,1,1700,10/04/19 16:50,"752 6th St, Seattle, WA 98101" -271125,Apple Airpods Headphones,1,150,10/04/19 22:04,"678 South St, San Francisco, CA 94016" -271126,Lightning Charging Cable,1,14.95,10/23/19 11:02,"37 Center St, Los Angeles, CA 90001" -271127,AA Batteries (4-pack),3,3.84,10/31/19 07:38,"639 9th St, Los Angeles, CA 90001" -271128,AAA Batteries (4-pack),2,2.99,10/06/19 18:39,"860 Lincoln St, Austin, TX 73301" -271129,USB-C Charging Cable,1,11.95,10/24/19 18:26,"903 Pine St, Los Angeles, CA 90001" -271130,Wired Headphones,1,11.99,10/13/19 23:16,"953 Jefferson St, New York City, NY 10001" -271131,AA Batteries (4-pack),1,3.84,10/06/19 09:20,"298 Church St, Portland, OR 97035" -271132,27in 4K Gaming Monitor,2,389.99,10/10/19 10:43,"758 2nd St, Portland, OR 97035" -271133,Apple Airpods Headphones,1,150,10/24/19 12:47,"367 Lincoln St, San Francisco, CA 94016" -271134,27in FHD Monitor,1,149.99,10/27/19 20:31,"74 Park St, Los Angeles, CA 90001" -271135,Apple Airpods Headphones,2,150,10/05/19 10:59,"458 8th St, San Francisco, CA 94016" -271136,USB-C Charging Cable,1,11.95,10/15/19 08:39,"411 Maple St, Seattle, WA 98101" -271137,27in 4K Gaming Monitor,1,389.99,10/05/19 10:12,"125 Forest St, San Francisco, CA 94016" -271138,USB-C Charging Cable,2,11.95,10/10/19 18:02,"597 Wilson St, Los Angeles, CA 90001" -271139,USB-C Charging Cable,1,11.95,10/11/19 14:43,"722 Dogwood St, Los Angeles, CA 90001" -271140,Lightning Charging Cable,1,14.95,10/02/19 16:35,"224 1st St, San Francisco, CA 94016" -271141,USB-C Charging Cable,1,11.95,10/16/19 13:00,"269 Madison St, Seattle, WA 98101" -271142,20in Monitor,1,109.99,10/09/19 10:11,"968 12th St, New York City, NY 10001" -271143,27in 4K Gaming Monitor,1,389.99,10/21/19 08:43,"234 Cedar St, Austin, TX 73301" -271144,AAA Batteries (4-pack),1,2.99,10/29/19 20:29,"951 4th St, New York City, NY 10001" -271145,27in FHD Monitor,1,149.99,10/18/19 19:28,"869 12th St, Portland, OR 97035" -271146,Bose SoundSport Headphones,1,99.99,10/16/19 23:46,"308 Maple St, Austin, TX 73301" -271147,Lightning Charging Cable,1,14.95,10/18/19 01:09,"589 Hickory St, Austin, TX 73301" -271148,27in FHD Monitor,1,149.99,10/15/19 20:03,"414 Madison St, Los Angeles, CA 90001" -271149,Bose SoundSport Headphones,1,99.99,10/18/19 11:05,"479 Church St, San Francisco, CA 94016" -271150,27in FHD Monitor,1,149.99,10/03/19 16:51,"149 Johnson St, San Francisco, CA 94016" -271151,AA Batteries (4-pack),1,3.84,10/10/19 09:08,"67 13th St, Austin, TX 73301" -271152,27in FHD Monitor,1,149.99,10/31/19 14:13,"476 Maple St, Dallas, TX 75001" -271153,Bose SoundSport Headphones,1,99.99,10/30/19 16:19,"740 Park St, San Francisco, CA 94016" -271154,iPhone,1,700,10/19/19 15:16,"579 Willow St, San Francisco, CA 94016" -271155,AA Batteries (4-pack),2,3.84,10/27/19 21:28,"88 Center St, Atlanta, GA 30301" -271156,Apple Airpods Headphones,1,150,10/17/19 15:19,"912 Cedar St, Los Angeles, CA 90001" -271157,Wired Headphones,1,11.99,10/11/19 11:53,"622 4th St, New York City, NY 10001" -271158,USB-C Charging Cable,1,11.95,10/17/19 10:17,"362 Madison St, Los Angeles, CA 90001" -271159,AA Batteries (4-pack),1,3.84,10/19/19 17:07,"204 1st St, Atlanta, GA 30301" -271160,Bose SoundSport Headphones,1,99.99,10/02/19 17:24,"572 Johnson St, Seattle, WA 98101" -271161,USB-C Charging Cable,1,11.95,10/05/19 17:34,"904 Willow St, Dallas, TX 75001" -271162,Lightning Charging Cable,1,14.95,10/16/19 21:14,"38 13th St, Atlanta, GA 30301" -271163,27in FHD Monitor,1,149.99,10/03/19 17:38,"827 River St, Portland, OR 97035" -271164,Bose SoundSport Headphones,1,99.99,10/29/19 19:11,"663 Main St, San Francisco, CA 94016" -271165,Bose SoundSport Headphones,1,99.99,10/27/19 09:06,"204 5th St, San Francisco, CA 94016" -271166,Lightning Charging Cable,1,14.95,10/16/19 23:22,"327 Sunset St, New York City, NY 10001" -271167,Wired Headphones,1,11.99,10/25/19 13:46,"656 Wilson St, New York City, NY 10001" -271168,Apple Airpods Headphones,1,150,10/24/19 08:32,"244 Forest St, Atlanta, GA 30301" -271169,ThinkPad Laptop,1,999.99,10/10/19 15:33,"119 Washington St, Dallas, TX 75001" -271170,Apple Airpods Headphones,1,150,10/06/19 16:23,"871 Hill St, San Francisco, CA 94016" -271171,Apple Airpods Headphones,1,150,10/27/19 00:10,"98 Wilson St, Atlanta, GA 30301" -271172,Apple Airpods Headphones,1,150,10/06/19 17:01,"839 Jefferson St, Seattle, WA 98101" -271173,Google Phone,1,600,10/05/19 18:35,"244 Hickory St, Seattle, WA 98101" -271174,Lightning Charging Cable,1,14.95,10/31/19 18:09,"918 6th St, Atlanta, GA 30301" -271175,USB-C Charging Cable,1,11.95,10/19/19 13:03,"764 Willow St, Los Angeles, CA 90001" -271176,Lightning Charging Cable,1,14.95,10/29/19 07:00,"884 Lakeview St, New York City, NY 10001" -271177,Wired Headphones,1,11.99,10/19/19 23:24,"82 Lakeview St, Dallas, TX 75001" -271178,Apple Airpods Headphones,1,150,10/16/19 12:30,"392 Park St, Dallas, TX 75001" -271179,USB-C Charging Cable,1,11.95,10/23/19 13:46,"475 Cedar St, Dallas, TX 75001" -271180,Lightning Charging Cable,1,14.95,10/12/19 18:04,"329 6th St, Dallas, TX 75001" -271181,34in Ultrawide Monitor,1,379.99,10/16/19 18:19,"465 Church St, Seattle, WA 98101" -271182,Wired Headphones,1,11.99,10/06/19 14:10,"35 11th St, San Francisco, CA 94016" -271183,Macbook Pro Laptop,1,1700,10/01/19 23:49,"361 12th St, Los Angeles, CA 90001" -271184,USB-C Charging Cable,1,11.95,10/30/19 11:43,"400 Highland St, San Francisco, CA 94016" -271185,AAA Batteries (4-pack),1,2.99,10/23/19 14:59,"97 Wilson St, Portland, OR 97035" -271186,Wired Headphones,1,11.99,10/29/19 00:14,"761 Lake St, Portland, OR 97035" -271187,USB-C Charging Cable,1,11.95,10/14/19 12:33,"864 Church St, New York City, NY 10001" -271188,AA Batteries (4-pack),2,3.84,10/27/19 10:58,"809 7th St, New York City, NY 10001" -271189,iPhone,1,700,10/21/19 12:34,"706 13th St, San Francisco, CA 94016" -271189,Lightning Charging Cable,1,14.95,10/21/19 12:34,"706 13th St, San Francisco, CA 94016" -271190,27in 4K Gaming Monitor,1,389.99,10/10/19 22:16,"664 11th St, Boston, MA 02215" -271191,Google Phone,1,600,10/13/19 16:20,"855 Cherry St, Dallas, TX 75001" -271191,USB-C Charging Cable,1,11.95,10/13/19 16:20,"855 Cherry St, Dallas, TX 75001" -271192,Vareebadd Phone,1,400,10/14/19 09:56,"276 Lincoln St, New York City, NY 10001" -271193,USB-C Charging Cable,1,11.95,10/30/19 09:21,"638 Center St, New York City, NY 10001" -271194,Wired Headphones,1,11.99,10/08/19 06:44,"984 12th St, San Francisco, CA 94016" -271195,AAA Batteries (4-pack),2,2.99,10/26/19 21:19,"875 14th St, New York City, NY 10001" -271196,34in Ultrawide Monitor,1,379.99,10/09/19 12:14,"136 1st St, New York City, NY 10001" -271197,USB-C Charging Cable,1,11.95,10/12/19 07:13,"918 Maple St, Los Angeles, CA 90001" -271198,Lightning Charging Cable,1,14.95,10/28/19 19:09,"191 Hickory St, Los Angeles, CA 90001" -271199,Vareebadd Phone,1,400,10/13/19 18:21,"305 River St, Boston, MA 02215" -271199,USB-C Charging Cable,1,11.95,10/13/19 18:21,"305 River St, Boston, MA 02215" -271200,27in 4K Gaming Monitor,1,389.99,10/10/19 19:49,"767 Meadow St, Boston, MA 02215" -271201,AA Batteries (4-pack),1,3.84,10/23/19 10:40,"247 Pine St, Los Angeles, CA 90001" -271202,AAA Batteries (4-pack),1,2.99,10/30/19 13:41,"245 Dogwood St, Los Angeles, CA 90001" -271203,Wired Headphones,1,11.99,10/30/19 20:03,"337 Dogwood St, Seattle, WA 98101" -271204,Google Phone,1,600,10/21/19 19:18,"815 5th St, Boston, MA 02215" -271205,AA Batteries (4-pack),2,3.84,10/08/19 09:44,"882 Elm St, San Francisco, CA 94016" -271206,iPhone,1,700,10/31/19 15:39,"688 Church St, Seattle, WA 98101" -271207,Apple Airpods Headphones,1,150,10/28/19 13:01,"580 River St, Los Angeles, CA 90001" -271208,Bose SoundSport Headphones,1,99.99,10/04/19 19:16,"763 Adams St, Los Angeles, CA 90001" -271209,AA Batteries (4-pack),1,3.84,10/19/19 23:41,"183 8th St, Boston, MA 02215" -271209,34in Ultrawide Monitor,1,379.99,10/19/19 23:41,"183 8th St, Boston, MA 02215" -271210,AA Batteries (4-pack),2,3.84,10/05/19 08:19,"162 Adams St, Austin, TX 73301" -271211,AAA Batteries (4-pack),3,2.99,10/15/19 00:16,"645 5th St, Boston, MA 02215" -271212,34in Ultrawide Monitor,1,379.99,10/06/19 17:14,"353 South St, Austin, TX 73301" -271213,Macbook Pro Laptop,1,1700,10/30/19 17:07,"78 Dogwood St, Portland, OR 97035" -271214,Apple Airpods Headphones,1,150,10/22/19 05:07,"74 Wilson St, Austin, TX 73301" -271215,Flatscreen TV,1,300,10/03/19 11:10,"876 Wilson St, San Francisco, CA 94016" -271216,USB-C Charging Cable,1,11.95,10/12/19 20:45,"657 Wilson St, San Francisco, CA 94016" -271217,Wired Headphones,1,11.99,10/11/19 20:36,"769 Willow St, Dallas, TX 75001" -271218,Bose SoundSport Headphones,1,99.99,10/13/19 22:52,"301 Main St, Los Angeles, CA 90001" -271219,AAA Batteries (4-pack),2,2.99,10/18/19 16:58,"855 South St, New York City, NY 10001" -271220,Lightning Charging Cable,1,14.95,10/29/19 18:39,"675 River St, San Francisco, CA 94016" -271221,27in FHD Monitor,1,149.99,10/30/19 16:17,"100 Madison St, Los Angeles, CA 90001" -271222,USB-C Charging Cable,1,11.95,10/16/19 10:59,"716 Cherry St, Atlanta, GA 30301" -271223,USB-C Charging Cable,1,11.95,10/10/19 20:38,"491 Chestnut St, Atlanta, GA 30301" -271224,Lightning Charging Cable,1,14.95,10/11/19 13:50,"756 9th St, Atlanta, GA 30301" -271225,Macbook Pro Laptop,1,1700,10/26/19 07:41,"413 Spruce St, San Francisco, CA 94016" -271226,34in Ultrawide Monitor,1,379.99,10/05/19 18:26,"559 2nd St, San Francisco, CA 94016" -271227,27in 4K Gaming Monitor,1,389.99,10/27/19 22:24,"753 Willow St, New York City, NY 10001" -271228,USB-C Charging Cable,1,11.95,10/23/19 19:38,"685 South St, Boston, MA 02215" -271229,Apple Airpods Headphones,1,150,10/28/19 21:46,"810 Madison St, New York City, NY 10001" -271230,27in 4K Gaming Monitor,1,389.99,10/02/19 19:19,"866 Lincoln St, Boston, MA 02215" -271231,AAA Batteries (4-pack),2,2.99,10/12/19 17:11,"245 Lincoln St, Dallas, TX 75001" -271232,USB-C Charging Cable,1,11.95,10/09/19 20:12,"811 Washington St, Seattle, WA 98101" -271233,Wired Headphones,1,11.99,10/02/19 19:18,"515 Center St, San Francisco, CA 94016" -271234,AAA Batteries (4-pack),1,2.99,10/04/19 13:20,"179 Elm St, Los Angeles, CA 90001" -271235,Bose SoundSport Headphones,1,99.99,10/17/19 18:41,"421 Pine St, San Francisco, CA 94016" -271236,Lightning Charging Cable,1,14.95,10/25/19 00:49,"679 Dogwood St, New York City, NY 10001" -271237,Lightning Charging Cable,1,14.95,10/12/19 11:41,"814 5th St, Portland, OR 97035" -271238,AAA Batteries (4-pack),2,2.99,10/28/19 07:35,"83 Johnson St, Boston, MA 02215" -271239,USB-C Charging Cable,1,11.95,10/07/19 08:53,"311 North St, San Francisco, CA 94016" -271240,AAA Batteries (4-pack),1,2.99,10/02/19 01:51,"492 Cedar St, Seattle, WA 98101" -271241,27in 4K Gaming Monitor,1,389.99,10/29/19 11:29,"508 Lakeview St, San Francisco, CA 94016" -271242,Bose SoundSport Headphones,1,99.99,10/17/19 11:54,"594 Meadow St, Atlanta, GA 30301" -271243,20in Monitor,1,109.99,10/12/19 07:53,"484 Johnson St, Atlanta, GA 30301" -271244,AAA Batteries (4-pack),1,2.99,10/11/19 09:14,"901 Madison St, Portland, OR 97035" -271245,AA Batteries (4-pack),1,3.84,10/14/19 12:48,"113 Main St, Dallas, TX 75001" -271246,Lightning Charging Cable,1,14.95,10/29/19 10:22,"354 River St, Austin, TX 73301" -271247,AAA Batteries (4-pack),2,2.99,10/28/19 11:53,"414 Forest St, Boston, MA 02215" -271248,Lightning Charging Cable,1,14.95,10/16/19 08:54,"312 Walnut St, Boston, MA 02215" -271249,AAA Batteries (4-pack),1,2.99,10/22/19 20:16,"927 River St, Atlanta, GA 30301" -271250,AA Batteries (4-pack),1,3.84,10/11/19 13:34,"308 Dogwood St, Los Angeles, CA 90001" -271251,Apple Airpods Headphones,1,150,10/26/19 09:44,"220 Meadow St, New York City, NY 10001" -271252,27in FHD Monitor,1,149.99,10/21/19 12:12,"635 North St, New York City, NY 10001" -271253,AA Batteries (4-pack),1,3.84,10/12/19 08:36,"45 Lake St, San Francisco, CA 94016" -271254,Wired Headphones,1,11.99,10/27/19 18:12,"470 Chestnut St, Los Angeles, CA 90001" -271255,Vareebadd Phone,1,400,10/24/19 15:49,"963 Johnson St, Los Angeles, CA 90001" -271256,Bose SoundSport Headphones,1,99.99,10/26/19 19:42,"84 Jackson St, San Francisco, CA 94016" -271257,Bose SoundSport Headphones,1,99.99,10/27/19 13:40,"382 Willow St, Austin, TX 73301" -271258,Wired Headphones,1,11.99,10/22/19 18:18,"383 2nd St, Austin, TX 73301" -271259,USB-C Charging Cable,1,11.95,10/15/19 09:14,"728 West St, Boston, MA 02215" -271260,27in FHD Monitor,1,149.99,10/05/19 17:39,"233 6th St, New York City, NY 10001" -271261,AA Batteries (4-pack),1,3.84,10/07/19 10:59,"206 Forest St, Boston, MA 02215" -271262,Lightning Charging Cable,1,14.95,10/10/19 17:24,"342 Forest St, Los Angeles, CA 90001" -271263,27in 4K Gaming Monitor,1,389.99,10/31/19 22:00,"742 Maple St, New York City, NY 10001" -271264,ThinkPad Laptop,1,999.99,10/04/19 18:56,"821 Church St, Seattle, WA 98101" -271265,20in Monitor,1,109.99,10/09/19 19:41,"369 Highland St, Atlanta, GA 30301" -271266,Lightning Charging Cable,1,14.95,10/29/19 17:42,"977 Elm St, San Francisco, CA 94016" -271267,iPhone,1,700,10/25/19 07:50,"311 Center St, Portland, OR 97035" -271268,USB-C Charging Cable,2,11.95,10/31/19 12:53,"927 Sunset St, Seattle, WA 98101" -271269,Bose SoundSport Headphones,1,99.99,10/22/19 15:41,"585 Pine St, San Francisco, CA 94016" -271270,AA Batteries (4-pack),1,3.84,10/09/19 15:14,"822 Hill St, Dallas, TX 75001" -271271,USB-C Charging Cable,1,11.95,10/19/19 13:11,"732 Spruce St, Los Angeles, CA 90001" -271272,Apple Airpods Headphones,1,150,10/01/19 10:57,"127 7th St, Los Angeles, CA 90001" -271273,Macbook Pro Laptop,1,1700,10/10/19 07:34,"197 2nd St, Dallas, TX 75001" -271274,Wired Headphones,2,11.99,10/05/19 14:44,"299 Forest St, San Francisco, CA 94016" -271275,27in FHD Monitor,1,149.99,10/15/19 22:24,"208 5th St, Portland, OR 97035" -271276,34in Ultrawide Monitor,1,379.99,10/01/19 13:23,"900 Lake St, Portland, OR 97035" -271277,USB-C Charging Cable,1,11.95,10/21/19 11:37,"235 7th St, Boston, MA 02215" -271278,27in 4K Gaming Monitor,1,389.99,10/28/19 21:36,"392 Highland St, San Francisco, CA 94016" -271279,Lightning Charging Cable,1,14.95,10/23/19 20:19,"7 11th St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -271280,20in Monitor,1,109.99,10/20/19 19:26,"407 Cherry St, Los Angeles, CA 90001" -271281,Lightning Charging Cable,1,14.95,10/12/19 18:00,"267 10th St, New York City, NY 10001" -271282,USB-C Charging Cable,1,11.95,10/12/19 09:19,"530 7th St, Los Angeles, CA 90001" -271283,Lightning Charging Cable,1,14.95,10/28/19 19:54,"880 Pine St, Boston, MA 02215" -271284,USB-C Charging Cable,1,11.95,10/12/19 10:18,"219 Chestnut St, Boston, MA 02215" -271285,Apple Airpods Headphones,1,150,10/18/19 18:03,"581 North St, San Francisco, CA 94016" -271286,AAA Batteries (4-pack),1,2.99,10/20/19 20:07,"296 Dogwood St, Boston, MA 02215" -271287,34in Ultrawide Monitor,1,379.99,10/16/19 20:42,"791 Main St, Los Angeles, CA 90001" -271288,Lightning Charging Cable,1,14.95,10/03/19 09:25,"223 2nd St, Portland, OR 97035" -271289,AAA Batteries (4-pack),1,2.99,10/11/19 19:42,"22 Lake St, Los Angeles, CA 90001" -271290,USB-C Charging Cable,1,11.95,10/18/19 13:16,"473 Willow St, San Francisco, CA 94016" -271291,Wired Headphones,1,11.99,10/31/19 21:57,"345 Jackson St, Los Angeles, CA 90001" -271292,Apple Airpods Headphones,1,150,10/15/19 15:26,"956 Maple St, Los Angeles, CA 90001" -271293,20in Monitor,1,109.99,10/03/19 16:43,"861 Pine St, Austin, TX 73301" -271294,Apple Airpods Headphones,1,150,10/03/19 15:07,"48 Lincoln St, San Francisco, CA 94016" -271295,Apple Airpods Headphones,1,150,10/08/19 18:56,"613 Ridge St, Austin, TX 73301" -271296,AA Batteries (4-pack),1,3.84,10/02/19 15:54,"722 Park St, San Francisco, CA 94016" -271297,AA Batteries (4-pack),3,3.84,10/16/19 21:48,"588 Elm St, Dallas, TX 75001" -271298,AA Batteries (4-pack),1,3.84,10/12/19 22:22,"372 Cedar St, San Francisco, CA 94016" -271299,AAA Batteries (4-pack),2,2.99,10/12/19 10:46,"858 Spruce St, Austin, TX 73301" -271300,AA Batteries (4-pack),1,3.84,10/25/19 07:21,"501 Center St, San Francisco, CA 94016" -271301,AA Batteries (4-pack),2,3.84,10/04/19 19:59,"474 Elm St, San Francisco, CA 94016" -271302,AA Batteries (4-pack),1,3.84,10/27/19 22:41,"889 Main St, Los Angeles, CA 90001" -271303,AA Batteries (4-pack),1,3.84,10/18/19 13:49,"101 Main St, Boston, MA 02215" -271304,27in FHD Monitor,1,149.99,10/14/19 22:23,"371 12th St, Portland, OR 97035" -271305,AA Batteries (4-pack),2,3.84,10/06/19 17:25,"608 1st St, New York City, NY 10001" -271306,Wired Headphones,1,11.99,10/14/19 14:43,"999 5th St, San Francisco, CA 94016" -271307,Apple Airpods Headphones,1,150,10/16/19 15:31,"507 Forest St, New York City, NY 10001" -271308,ThinkPad Laptop,1,999.99,10/13/19 08:10,"476 10th St, Boston, MA 02215" -271309,Apple Airpods Headphones,1,150,10/14/19 17:04,"374 12th St, San Francisco, CA 94016" -271310,Lightning Charging Cable,1,14.95,10/15/19 14:50,"849 Jackson St, New York City, NY 10001" -271311,AAA Batteries (4-pack),1,2.99,10/27/19 22:15,"768 8th St, New York City, NY 10001" -271312,AA Batteries (4-pack),1,3.84,10/03/19 17:26,"115 South St, New York City, NY 10001" -271313,USB-C Charging Cable,1,11.95,10/04/19 13:18,"255 2nd St, Portland, OR 97035" -271314,Bose SoundSport Headphones,1,99.99,10/30/19 14:36,"322 Meadow St, Los Angeles, CA 90001" -271315,27in FHD Monitor,1,149.99,10/27/19 11:28,"947 Lake St, San Francisco, CA 94016" -271316,Wired Headphones,1,11.99,10/11/19 22:37,"384 Dogwood St, Los Angeles, CA 90001" -271317,iPhone,1,700,10/26/19 13:06,"466 Lakeview St, New York City, NY 10001" -271318,34in Ultrawide Monitor,1,379.99,10/12/19 12:18,"634 Lakeview St, San Francisco, CA 94016" -271319,27in 4K Gaming Monitor,1,389.99,10/30/19 18:26,"414 Lakeview St, New York City, NY 10001" -271320,27in 4K Gaming Monitor,1,389.99,10/06/19 13:01,"289 Forest St, Los Angeles, CA 90001" -271321,AA Batteries (4-pack),1,3.84,10/23/19 22:12,"299 Wilson St, San Francisco, CA 94016" -271322,iPhone,1,700,10/03/19 15:23,"727 Washington St, Boston, MA 02215" -271323,Apple Airpods Headphones,1,150,10/20/19 21:56,"86 Lake St, San Francisco, CA 94016" -271324,Lightning Charging Cable,1,14.95,10/21/19 10:01,"683 Walnut St, Portland, OR 97035" -271325,Flatscreen TV,1,300,10/18/19 15:34,"785 11th St, New York City, NY 10001" -271326,Bose SoundSport Headphones,1,99.99,10/07/19 10:41,"607 Forest St, Austin, TX 73301" -271327,AAA Batteries (4-pack),1,2.99,10/19/19 20:37,"225 River St, Atlanta, GA 30301" -271328,Google Phone,1,600,10/15/19 07:14,"736 Washington St, San Francisco, CA 94016" -271328,USB-C Charging Cable,1,11.95,10/15/19 07:14,"736 Washington St, San Francisco, CA 94016" -271329,Lightning Charging Cable,2,14.95,10/19/19 16:10,"882 Main St, Dallas, TX 75001" -271330,USB-C Charging Cable,1,11.95,10/26/19 08:50,"128 5th St, New York City, NY 10001" -271331,AAA Batteries (4-pack),1,2.99,10/15/19 21:19,"816 Adams St, San Francisco, CA 94016" -271332,Apple Airpods Headphones,1,150,10/11/19 22:37,"275 10th St, Boston, MA 02215" -271333,Bose SoundSport Headphones,1,99.99,10/05/19 18:51,"706 River St, New York City, NY 10001" -271334,20in Monitor,1,109.99,10/01/19 13:53,"255 Maple St, Portland, OR 97035" -271335,AAA Batteries (4-pack),1,2.99,10/31/19 10:27,"117 Willow St, Los Angeles, CA 90001" -271336,Bose SoundSport Headphones,1,99.99,10/15/19 10:24,"131 8th St, Austin, TX 73301" -271337,Wired Headphones,1,11.99,10/07/19 16:09,"695 Jackson St, Boston, MA 02215" -271338,USB-C Charging Cable,1,11.95,10/24/19 21:59,"406 Adams St, Los Angeles, CA 90001" -271339,AA Batteries (4-pack),4,3.84,10/01/19 20:02,"533 Lincoln St, New York City, NY 10001" -271340,Lightning Charging Cable,1,14.95,10/03/19 10:28,"12 12th St, San Francisco, CA 94016" -271340,Apple Airpods Headphones,1,150,10/03/19 10:28,"12 12th St, San Francisco, CA 94016" -271341,Wired Headphones,1,11.99,10/26/19 12:42,"530 Highland St, San Francisco, CA 94016" -271342,iPhone,1,700,10/18/19 22:54,"124 Forest St, Seattle, WA 98101" -271343,AAA Batteries (4-pack),1,2.99,10/25/19 19:18,"549 Park St, San Francisco, CA 94016" -271344,Bose SoundSport Headphones,1,99.99,10/07/19 19:33,"158 4th St, New York City, NY 10001" -271345,Wired Headphones,1,11.99,10/31/19 07:54,"181 Hickory St, San Francisco, CA 94016" -271346,Apple Airpods Headphones,1,150,10/31/19 13:28,"582 Lincoln St, Los Angeles, CA 90001" -271347,iPhone,1,700,10/11/19 21:31,"966 4th St, Portland, OR 97035" -271348,USB-C Charging Cable,1,11.95,10/04/19 12:30,"684 7th St, Seattle, WA 98101" -271349,27in FHD Monitor,1,149.99,10/11/19 15:22,"416 Hill St, San Francisco, CA 94016" -271350,Flatscreen TV,1,300,10/29/19 04:33,"281 10th St, New York City, NY 10001" -271351,AAA Batteries (4-pack),1,2.99,10/25/19 00:44,"576 Center St, Dallas, TX 75001" -271352,Wired Headphones,1,11.99,10/04/19 10:57,"330 Hill St, Los Angeles, CA 90001" -271353,iPhone,1,700,10/30/19 11:55,"569 Main St, New York City, NY 10001" -271354,Google Phone,1,600,10/07/19 19:55,"47 4th St, Seattle, WA 98101" -271355,iPhone,1,700,10/06/19 18:36,"519 West St, Boston, MA 02215" -271355,Lightning Charging Cable,1,14.95,10/06/19 18:36,"519 West St, Boston, MA 02215" -271356,Wired Headphones,1,11.99,10/17/19 13:01,"63 2nd St, New York City, NY 10001" -271357,AA Batteries (4-pack),1,3.84,10/03/19 21:14,"789 North St, New York City, NY 10001" -271358,AAA Batteries (4-pack),3,2.99,10/10/19 10:01,"718 Meadow St, Boston, MA 02215" -271359,iPhone,1,700,10/25/19 23:17,"703 Lakeview St, Boston, MA 02215" -271359,Lightning Charging Cable,1,14.95,10/25/19 23:17,"703 Lakeview St, Boston, MA 02215" -271360,Apple Airpods Headphones,1,150,10/18/19 21:49,"315 Hill St, Los Angeles, CA 90001" -271361,AAA Batteries (4-pack),3,2.99,10/14/19 21:18,"715 7th St, Portland, OR 97035" -271362,Lightning Charging Cable,2,14.95,10/02/19 10:32,"698 North St, Seattle, WA 98101" -271363,Lightning Charging Cable,1,14.95,10/10/19 17:41,"820 Dogwood St, Boston, MA 02215" -271364,Wired Headphones,1,11.99,10/21/19 15:53,"684 Ridge St, Los Angeles, CA 90001" -271365,ThinkPad Laptop,1,999.99,10/16/19 13:21,"829 7th St, San Francisco, CA 94016" -271366,USB-C Charging Cable,1,11.95,10/12/19 06:16,"111 Spruce St, San Francisco, CA 94016" -271367,AA Batteries (4-pack),1,3.84,10/14/19 16:41,"338 Cedar St, Boston, MA 02215" -271368,Wired Headphones,1,11.99,10/05/19 08:09,"343 Wilson St, San Francisco, CA 94016" -271369,ThinkPad Laptop,1,999.99,10/16/19 23:03,"991 Hickory St, Dallas, TX 75001" -271370,AAA Batteries (4-pack),2,2.99,10/20/19 10:05,"209 Jackson St, Portland, OR 97035" -271371,iPhone,1,700,10/15/19 10:11,"86 West St, San Francisco, CA 94016" -271372,34in Ultrawide Monitor,1,379.99,10/26/19 13:38,"809 Main St, Austin, TX 73301" -271373,Flatscreen TV,1,300,10/11/19 10:09,"144 7th St, Dallas, TX 75001" -271374,Lightning Charging Cable,1,14.95,10/19/19 18:51,"233 Hickory St, Dallas, TX 75001" -271375,Flatscreen TV,1,300,10/17/19 12:32,"415 12th St, Atlanta, GA 30301" -271376,Lightning Charging Cable,1,14.95,10/05/19 00:11,"64 North St, Dallas, TX 75001" -271377,Lightning Charging Cable,1,14.95,10/08/19 08:15,"485 Lakeview St, San Francisco, CA 94016" -271378,USB-C Charging Cable,1,11.95,10/23/19 17:16,"952 Washington St, Los Angeles, CA 90001" -271378,AAA Batteries (4-pack),1,2.99,10/23/19 17:16,"952 Washington St, Los Angeles, CA 90001" -271379,Lightning Charging Cable,1,14.95,10/06/19 12:29,"784 11th St, Austin, TX 73301" -271380,iPhone,1,700,10/11/19 09:15,"138 South St, San Francisco, CA 94016" -271381,27in 4K Gaming Monitor,1,389.99,10/26/19 06:25,"891 2nd St, New York City, NY 10001" -271382,iPhone,1,700,10/10/19 15:06,"246 Hickory St, New York City, NY 10001" -271383,Macbook Pro Laptop,1,1700,10/08/19 10:41,"324 Jefferson St, New York City, NY 10001" -271384,USB-C Charging Cable,1,11.95,10/15/19 13:06,"136 13th St, San Francisco, CA 94016" -271385,27in FHD Monitor,1,149.99,10/10/19 13:19,"857 South St, Seattle, WA 98101" -271386,AAA Batteries (4-pack),2,2.99,10/02/19 14:18,"889 Forest St, Los Angeles, CA 90001" -271387,20in Monitor,1,109.99,10/17/19 13:25,"508 Ridge St, Los Angeles, CA 90001" -271388,AAA Batteries (4-pack),1,2.99,10/26/19 12:53,"318 5th St, Los Angeles, CA 90001" -271389,USB-C Charging Cable,1,11.95,10/07/19 14:52,"946 11th St, New York City, NY 10001" -271390,Bose SoundSport Headphones,1,99.99,10/27/19 08:54,"36 14th St, Boston, MA 02215" -271391,Macbook Pro Laptop,1,1700,10/01/19 11:57,"380 Sunset St, Los Angeles, CA 90001" -271392,Lightning Charging Cable,2,14.95,10/28/19 00:14,"413 Lake St, San Francisco, CA 94016" -271393,27in FHD Monitor,1,149.99,10/20/19 12:34,"416 1st St, Atlanta, GA 30301" -271393,Lightning Charging Cable,1,14.95,10/20/19 12:34,"416 1st St, Atlanta, GA 30301" -271394,USB-C Charging Cable,1,11.95,10/06/19 21:28,"993 Park St, New York City, NY 10001" -271395,Apple Airpods Headphones,1,150,10/07/19 22:07,"790 8th St, Atlanta, GA 30301" -271396,USB-C Charging Cable,1,11.95,10/07/19 16:40,"861 Jackson St, San Francisco, CA 94016" -271397,USB-C Charging Cable,1,11.95,10/15/19 12:10,"71 Ridge St, Seattle, WA 98101" -271398,Bose SoundSport Headphones,1,99.99,10/15/19 13:27,"382 North St, San Francisco, CA 94016" -271399,AAA Batteries (4-pack),1,2.99,10/27/19 00:39,"522 Center St, Los Angeles, CA 90001" -271400,Lightning Charging Cable,1,14.95,10/05/19 20:25,"53 Adams St, Boston, MA 02215" -271401,Wired Headphones,2,11.99,10/16/19 12:14,"209 West St, Seattle, WA 98101" -271402,27in FHD Monitor,1,149.99,10/19/19 12:42,"726 Chestnut St, New York City, NY 10001" -271403,AA Batteries (4-pack),1,3.84,10/25/19 16:45,"502 Meadow St, Dallas, TX 75001" -271404,27in 4K Gaming Monitor,1,389.99,10/27/19 18:29,"972 2nd St, Los Angeles, CA 90001" -271405,Apple Airpods Headphones,1,150,10/02/19 11:46,"28 South St, Los Angeles, CA 90001" -271405,iPhone,1,700,10/02/19 11:46,"28 South St, Los Angeles, CA 90001" -271406,AA Batteries (4-pack),1,3.84,10/21/19 21:05,"205 Johnson St, New York City, NY 10001" -271407,Lightning Charging Cable,1,14.95,10/29/19 11:03,"191 12th St, Los Angeles, CA 90001" -271408,Lightning Charging Cable,1,14.95,10/13/19 14:29,"699 Forest St, Boston, MA 02215" -271409,iPhone,1,700,10/29/19 12:16,"420 1st St, San Francisco, CA 94016" -271409,Wired Headphones,1,11.99,10/29/19 12:16,"420 1st St, San Francisco, CA 94016" -271410,USB-C Charging Cable,1,11.95,10/16/19 21:31,"20 Ridge St, New York City, NY 10001" -271411,AAA Batteries (4-pack),1,2.99,10/10/19 06:48,"724 Forest St, Atlanta, GA 30301" -271412,Bose SoundSport Headphones,1,99.99,10/23/19 00:49,"572 7th St, San Francisco, CA 94016" -271413,Bose SoundSport Headphones,1,99.99,10/23/19 20:55,"369 Pine St, San Francisco, CA 94016" -271414,AAA Batteries (4-pack),3,2.99,10/31/19 16:46,"637 Lakeview St, New York City, NY 10001" -271415,Google Phone,1,600,10/29/19 18:54,"919 Jackson St, Portland, OR 97035" -271415,Wired Headphones,1,11.99,10/29/19 18:54,"919 Jackson St, Portland, OR 97035" -271416,Wired Headphones,1,11.99,10/22/19 19:14,"599 Lincoln St, San Francisco, CA 94016" -271417,AAA Batteries (4-pack),1,2.99,10/23/19 15:38,"80 Hickory St, Los Angeles, CA 90001" -271418,Bose SoundSport Headphones,1,99.99,10/30/19 00:00,"104 Jackson St, New York City, NY 10001" -271419,Apple Airpods Headphones,1,150,10/03/19 12:42,"76 Lake St, Atlanta, GA 30301" -271420,USB-C Charging Cable,1,11.95,10/06/19 15:20,"209 West St, San Francisco, CA 94016" -271421,iPhone,1,700,10/22/19 13:32,"27 2nd St, Portland, OR 97035" -271422,Wired Headphones,1,11.99,10/08/19 21:28,"365 Hill St, Atlanta, GA 30301" -271423,Apple Airpods Headphones,1,150,10/26/19 12:20,"190 Ridge St, San Francisco, CA 94016" -271424,Lightning Charging Cable,1,14.95,10/09/19 16:46,"799 11th St, Los Angeles, CA 90001" -271425,Apple Airpods Headphones,1,150,10/14/19 00:04,"708 Willow St, Los Angeles, CA 90001" -271426,Apple Airpods Headphones,1,150,10/07/19 09:13,"776 Highland St, San Francisco, CA 94016" -271427,27in FHD Monitor,1,149.99,10/26/19 10:01,"204 6th St, New York City, NY 10001" -271428,AA Batteries (4-pack),1,3.84,10/27/19 21:01,"37 Highland St, San Francisco, CA 94016" -271429,USB-C Charging Cable,3,11.95,10/29/19 14:07,"502 Dogwood St, Atlanta, GA 30301" -271430,Lightning Charging Cable,1,14.95,10/29/19 16:35,"535 Church St, Austin, TX 73301" -271431,Lightning Charging Cable,2,14.95,10/24/19 11:27,"48 8th St, Los Angeles, CA 90001" -271432,Wired Headphones,1,11.99,10/07/19 16:10,"383 Forest St, San Francisco, CA 94016" -271433,Wired Headphones,1,11.99,10/24/19 13:51,"985 Madison St, San Francisco, CA 94016" -271434,27in FHD Monitor,1,149.99,10/06/19 10:39,"616 Madison St, Boston, MA 02215" -271435,27in FHD Monitor,1,149.99,10/07/19 23:11,"85 Cedar St, Dallas, TX 75001" -271436,Bose SoundSport Headphones,1,99.99,10/10/19 14:30,"474 Sunset St, Atlanta, GA 30301" -271437,Lightning Charging Cable,1,14.95,10/01/19 22:10,"14 Madison St, Los Angeles, CA 90001" -271438,AA Batteries (4-pack),1,3.84,10/22/19 23:23,"717 12th St, New York City, NY 10001" -271439,AAA Batteries (4-pack),1,2.99,10/12/19 07:02,"575 5th St, Boston, MA 02215" -271440,AA Batteries (4-pack),1,3.84,10/10/19 19:07,"215 Lake St, Boston, MA 02215" -271441,Wired Headphones,1,11.99,10/18/19 20:38,"109 Main St, Los Angeles, CA 90001" -271442,AAA Batteries (4-pack),1,2.99,10/13/19 19:59,"143 Johnson St, Boston, MA 02215" -271443,Wired Headphones,1,11.99,10/03/19 23:07,"898 Johnson St, San Francisco, CA 94016" -271444,AAA Batteries (4-pack),1,2.99,10/30/19 14:24,"415 River St, Boston, MA 02215" -271445,Google Phone,1,600,10/03/19 16:08,"649 13th St, Dallas, TX 75001" -271446,Lightning Charging Cable,2,14.95,10/25/19 14:51,"887 Forest St, Portland, OR 97035" -271447,USB-C Charging Cable,1,11.95,10/17/19 04:23,"806 Dogwood St, New York City, NY 10001" -271448,Wired Headphones,1,11.99,10/02/19 19:23,"831 Lakeview St, Dallas, TX 75001" -271449,20in Monitor,1,109.99,10/30/19 21:47,"498 10th St, Los Angeles, CA 90001" -271450,Google Phone,1,600,10/09/19 21:48,"192 Cherry St, Seattle, WA 98101" -271451,Lightning Charging Cable,1,14.95,10/17/19 09:25,"672 7th St, Austin, TX 73301" -271452,Lightning Charging Cable,2,14.95,10/13/19 19:56,"790 Willow St, Los Angeles, CA 90001" -271453,Wired Headphones,1,11.99,10/10/19 21:11,"698 8th St, San Francisco, CA 94016" -271454,Apple Airpods Headphones,1,150,10/27/19 12:45,"370 Chestnut St, Seattle, WA 98101" -271455,20in Monitor,1,109.99,10/12/19 21:15,"821 North St, Boston, MA 02215" -271456,Wired Headphones,1,11.99,10/07/19 10:30,"377 Hickory St, Los Angeles, CA 90001" -271457,AAA Batteries (4-pack),1,2.99,10/11/19 18:46,"386 Chestnut St, Los Angeles, CA 90001" -271458,Lightning Charging Cable,1,14.95,10/01/19 20:22,"64 5th St, Boston, MA 02215" -271459,USB-C Charging Cable,1,11.95,10/21/19 00:04,"283 Maple St, San Francisco, CA 94016" -271460,ThinkPad Laptop,1,999.99,10/11/19 11:41,"483 5th St, New York City, NY 10001" -271461,Apple Airpods Headphones,1,150,10/24/19 12:54,"193 Chestnut St, Atlanta, GA 30301" -271462,27in FHD Monitor,1,149.99,10/20/19 17:15,"173 Cherry St, Dallas, TX 75001" -271463,Lightning Charging Cable,1,14.95,10/02/19 10:15,"362 Cedar St, New York City, NY 10001" -271464,ThinkPad Laptop,1,999.99,10/20/19 21:08,"367 6th St, Los Angeles, CA 90001" -271465,AA Batteries (4-pack),3,3.84,10/18/19 12:56,"290 Dogwood St, San Francisco, CA 94016" -271466,USB-C Charging Cable,1,11.95,10/03/19 15:06,"31 Willow St, San Francisco, CA 94016" -271467,Bose SoundSport Headphones,1,99.99,10/26/19 23:51,"323 Meadow St, Los Angeles, CA 90001" -271468,Wired Headphones,1,11.99,10/09/19 23:20,"523 4th St, Atlanta, GA 30301" -271469,Wired Headphones,1,11.99,10/30/19 20:36,"611 Wilson St, Los Angeles, CA 90001" -271470,AA Batteries (4-pack),1,3.84,10/23/19 11:00,"54 2nd St, Portland, OR 97035" -271471,AAA Batteries (4-pack),1,2.99,10/04/19 15:33,"164 Lincoln St, San Francisco, CA 94016" -271472,Google Phone,1,600,10/13/19 06:13,"307 Dogwood St, New York City, NY 10001" -271473,Apple Airpods Headphones,1,150,10/17/19 23:24,"531 9th St, Los Angeles, CA 90001" -271474,27in 4K Gaming Monitor,1,389.99,10/11/19 22:47,"682 Cedar St, San Francisco, CA 94016" -271475,Apple Airpods Headphones,1,150,10/12/19 21:49,"897 Main St, Los Angeles, CA 90001" -271476,LG Washing Machine,1,600.0,10/16/19 21:22,"259 13th St, San Francisco, CA 94016" -271477,Bose SoundSport Headphones,1,99.99,10/21/19 23:33,"834 Spruce St, Portland, OR 97035" -271478,Google Phone,1,600,10/04/19 13:51,"542 Wilson St, San Francisco, CA 94016" -271479,USB-C Charging Cable,1,11.95,10/19/19 09:40,"803 11th St, Seattle, WA 98101" -271480,Bose SoundSport Headphones,1,99.99,10/31/19 10:59,"419 South St, Los Angeles, CA 90001" -271481,AA Batteries (4-pack),1,3.84,10/28/19 17:06,"118 Cedar St, Portland, OR 97035" -271482,Lightning Charging Cable,1,14.95,10/27/19 14:30,"780 Spruce St, New York City, NY 10001" -271483,AA Batteries (4-pack),1,3.84,10/03/19 18:29,"727 Maple St, San Francisco, CA 94016" -271484,USB-C Charging Cable,1,11.95,10/26/19 06:57,"372 1st St, Portland, OR 97035" -271485,AA Batteries (4-pack),1,3.84,10/08/19 21:03,"107 Jackson St, Atlanta, GA 30301" -271486,AAA Batteries (4-pack),2,2.99,10/31/19 20:04,"492 River St, San Francisco, CA 94016" -271487,Lightning Charging Cable,1,14.95,10/30/19 15:29,"756 Lake St, San Francisco, CA 94016" -271488,AAA Batteries (4-pack),1,2.99,10/23/19 22:01,"82 12th St, Los Angeles, CA 90001" -271489,Apple Airpods Headphones,1,150,10/23/19 14:35,"573 Maple St, Boston, MA 02215" -271490,LG Dryer,1,600.0,10/22/19 18:51,"8 13th St, Boston, MA 02215" -271491,iPhone,1,700,10/08/19 10:57,"448 Sunset St, San Francisco, CA 94016" -271491,Wired Headphones,1,11.99,10/08/19 10:57,"448 Sunset St, San Francisco, CA 94016" -271492,USB-C Charging Cable,1,11.95,10/27/19 07:16,"958 9th St, Dallas, TX 75001" -271493,Lightning Charging Cable,1,14.95,10/09/19 13:15,"684 13th St, New York City, NY 10001" -271494,AAA Batteries (4-pack),1,2.99,10/03/19 07:16,"751 13th St, New York City, NY 10001" -271495,AAA Batteries (4-pack),2,2.99,10/28/19 11:57,"534 Meadow St, Boston, MA 02215" -271496,Wired Headphones,1,11.99,10/09/19 12:09,"307 Lincoln St, San Francisco, CA 94016" -271497,Wired Headphones,1,11.99,10/05/19 07:49,"740 10th St, Boston, MA 02215" -271498,34in Ultrawide Monitor,1,379.99,10/11/19 18:10,"321 9th St, Los Angeles, CA 90001" -271499,USB-C Charging Cable,1,11.95,10/16/19 19:16,"76 Chestnut St, San Francisco, CA 94016" -271500,Google Phone,1,600,10/01/19 15:42,"503 Main St, New York City, NY 10001" -271501,Lightning Charging Cable,1,14.95,10/17/19 22:18,"145 1st St, Los Angeles, CA 90001" -271502,Bose SoundSport Headphones,1,99.99,10/06/19 10:20,"491 Forest St, San Francisco, CA 94016" -271503,Lightning Charging Cable,1,14.95,10/16/19 22:28,"539 Elm St, San Francisco, CA 94016" -271504,AA Batteries (4-pack),1,3.84,10/08/19 20:12,"387 Sunset St, Boston, MA 02215" -271505,Wired Headphones,1,11.99,10/29/19 18:03,"537 Lakeview St, Portland, OR 97035" -271506,Apple Airpods Headphones,1,150,10/22/19 22:23,"267 Elm St, San Francisco, CA 94016" -271507,Lightning Charging Cable,1,14.95,10/30/19 12:54,"933 Highland St, San Francisco, CA 94016" -271508,iPhone,1,700,10/18/19 18:41,"609 Dogwood St, Seattle, WA 98101" -271509,AA Batteries (4-pack),1,3.84,10/24/19 17:06,"824 4th St, Dallas, TX 75001" -271510,Wired Headphones,2,11.99,10/23/19 17:02,"837 Elm St, Dallas, TX 75001" -271511,Bose SoundSport Headphones,1,99.99,10/24/19 18:57,"328 Hill St, Dallas, TX 75001" -271512,USB-C Charging Cable,1,11.95,10/30/19 16:41,"667 Johnson St, Los Angeles, CA 90001" -271513,USB-C Charging Cable,1,11.95,10/17/19 17:04,"901 Church St, Boston, MA 02215" -271514,AAA Batteries (4-pack),1,2.99,10/03/19 13:59,"660 2nd St, Los Angeles, CA 90001" -271515,Wired Headphones,1,11.99,10/04/19 08:53,"291 Meadow St, Los Angeles, CA 90001" -271516,Lightning Charging Cable,3,14.95,10/31/19 17:09,"974 Willow St, Los Angeles, CA 90001" -271517,Lightning Charging Cable,1,14.95,10/26/19 22:01,"635 2nd St, Los Angeles, CA 90001" -271518,27in FHD Monitor,1,149.99,10/23/19 02:11,"649 Church St, Los Angeles, CA 90001" -271519,AA Batteries (4-pack),1,3.84,10/09/19 12:00,"579 Church St, Los Angeles, CA 90001" -271519,AAA Batteries (4-pack),1,2.99,10/09/19 12:00,"579 Church St, Los Angeles, CA 90001" -271520,Apple Airpods Headphones,1,150,10/24/19 12:17,"954 9th St, Seattle, WA 98101" -271521,20in Monitor,1,109.99,10/14/19 18:50,"814 8th St, Dallas, TX 75001" -271522,iPhone,1,700,10/26/19 13:37,"678 Ridge St, Boston, MA 02215" -271523,Wired Headphones,1,11.99,10/16/19 08:41,"171 Meadow St, San Francisco, CA 94016" -271524,Bose SoundSport Headphones,1,99.99,10/15/19 08:57,"925 Meadow St, New York City, NY 10001" -271525,Wired Headphones,1,11.99,10/13/19 10:43,"686 Jackson St, Los Angeles, CA 90001" -271526,Apple Airpods Headphones,1,150,10/29/19 17:46,"98 Ridge St, Austin, TX 73301" -271527,27in FHD Monitor,1,149.99,10/02/19 18:20,"973 4th St, Portland, OR 97035" -271528,Lightning Charging Cable,2,14.95,10/08/19 19:40,"554 Cedar St, New York City, NY 10001" -271529,27in FHD Monitor,1,149.99,10/23/19 18:37,"109 Spruce St, Los Angeles, CA 90001" -271530,Bose SoundSport Headphones,1,99.99,10/21/19 13:46,"455 Park St, Los Angeles, CA 90001" -271531,Lightning Charging Cable,1,14.95,10/20/19 17:54,"742 Jefferson St, Atlanta, GA 30301" -271532,AA Batteries (4-pack),1,3.84,10/24/19 01:48,"513 Washington St, San Francisco, CA 94016" -271533,Lightning Charging Cable,1,14.95,10/13/19 10:08,"393 Sunset St, San Francisco, CA 94016" -271534,Macbook Pro Laptop,1,1700,10/07/19 20:29,"923 South St, New York City, NY 10001" -271535,USB-C Charging Cable,2,11.95,10/21/19 17:41,"595 Adams St, Boston, MA 02215" -271536,ThinkPad Laptop,1,999.99,10/28/19 06:46,"257 Adams St, Boston, MA 02215" -271537,AA Batteries (4-pack),1,3.84,10/22/19 11:34,"746 Walnut St, Boston, MA 02215" -271538,34in Ultrawide Monitor,1,379.99,10/07/19 16:01,"444 Madison St, Atlanta, GA 30301" -271539,Lightning Charging Cable,1,14.95,10/25/19 21:45,"829 Lake St, San Francisco, CA 94016" -271540,Lightning Charging Cable,1,14.95,10/25/19 14:21,"798 Elm St, Seattle, WA 98101" -271541,iPhone,1,700,10/20/19 22:19,"396 South St, Austin, TX 73301" -271542,ThinkPad Laptop,1,999.99,10/20/19 00:31,"764 Washington St, Seattle, WA 98101" -271543,27in 4K Gaming Monitor,1,389.99,10/22/19 12:21,"778 13th St, Boston, MA 02215" -271544,Apple Airpods Headphones,1,150,10/29/19 16:12,"648 13th St, Los Angeles, CA 90001" -271545,AA Batteries (4-pack),1,3.84,10/20/19 18:22,"483 Lake St, Seattle, WA 98101" -271546,Bose SoundSport Headphones,1,99.99,10/29/19 08:55,"105 Elm St, Portland, OR 97035" -271547,34in Ultrawide Monitor,1,379.99,10/19/19 09:47,"822 4th St, San Francisco, CA 94016" -271548,AA Batteries (4-pack),1,3.84,10/01/19 19:15,"825 Spruce St, Los Angeles, CA 90001" -271549,27in 4K Gaming Monitor,1,389.99,10/26/19 15:37,"63 6th St, New York City, NY 10001" -271550,20in Monitor,1,109.99,10/06/19 18:00,"939 6th St, San Francisco, CA 94016" -271551,Lightning Charging Cable,1,14.95,10/09/19 14:07,"618 4th St, San Francisco, CA 94016" -271552,AAA Batteries (4-pack),1,2.99,10/29/19 14:54,"996 Adams St, Austin, TX 73301" -271553,AA Batteries (4-pack),1,3.84,10/17/19 20:51,"903 Pine St, San Francisco, CA 94016" -271554,ThinkPad Laptop,1,999.99,10/08/19 21:49,"244 Park St, San Francisco, CA 94016" -271555,Lightning Charging Cable,1,14.95,10/04/19 07:41,"911 Johnson St, Dallas, TX 75001" -271556,Lightning Charging Cable,1,14.95,10/24/19 14:03,"294 Park St, San Francisco, CA 94016" -271557,27in FHD Monitor,1,149.99,10/09/19 18:28,"158 Forest St, Los Angeles, CA 90001" -271558,Apple Airpods Headphones,1,150,10/24/19 21:50,"737 Washington St, New York City, NY 10001" -271559,Lightning Charging Cable,1,14.95,10/14/19 14:27,"13 Ridge St, Los Angeles, CA 90001" -271560,AA Batteries (4-pack),1,3.84,10/19/19 13:31,"317 Hickory St, Atlanta, GA 30301" -271561,AA Batteries (4-pack),3,3.84,10/25/19 20:46,"843 Dogwood St, New York City, NY 10001" -271562,Wired Headphones,1,11.99,10/15/19 09:54,"256 6th St, Boston, MA 02215" -271563,Flatscreen TV,1,300,10/21/19 13:01,"140 Highland St, San Francisco, CA 94016" -271564,USB-C Charging Cable,1,11.95,10/03/19 12:16,"442 12th St, Los Angeles, CA 90001" -271565,AA Batteries (4-pack),1,3.84,10/06/19 18:40,"938 12th St, New York City, NY 10001" -271566,Lightning Charging Cable,1,14.95,10/10/19 21:26,"463 Pine St, Los Angeles, CA 90001" -271567,Bose SoundSport Headphones,1,99.99,10/24/19 15:25,"409 Spruce St, Los Angeles, CA 90001" -271568,27in 4K Gaming Monitor,1,389.99,10/07/19 11:48,"289 7th St, Los Angeles, CA 90001" -271569,Macbook Pro Laptop,1,1700,10/29/19 17:00,"160 Park St, Los Angeles, CA 90001" -271570,Apple Airpods Headphones,1,150,10/21/19 15:59,"460 Johnson St, San Francisco, CA 94016" -271571,Lightning Charging Cable,1,14.95,10/15/19 10:48,"953 1st St, Boston, MA 02215" -271572,Apple Airpods Headphones,1,150,10/24/19 18:04,"578 10th St, San Francisco, CA 94016" -271573,Bose SoundSport Headphones,1,99.99,10/17/19 10:32,"560 South St, Dallas, TX 75001" -271574,USB-C Charging Cable,1,11.95,10/17/19 04:09,"944 Park St, Austin, TX 73301" -271575,Apple Airpods Headphones,1,150,10/16/19 20:27,"846 5th St, Los Angeles, CA 90001" -271576,AAA Batteries (4-pack),1,2.99,10/30/19 11:58,"81 South St, New York City, NY 10001" -271577,iPhone,1,700,10/17/19 13:34,"746 West St, Austin, TX 73301" -271578,AA Batteries (4-pack),4,3.84,10/08/19 20:33,"690 Chestnut St, Portland, OR 97035" -271579,USB-C Charging Cable,1,11.95,10/26/19 18:06,"579 River St, Dallas, TX 75001" -271580,Bose SoundSport Headphones,1,99.99,10/16/19 09:00,"877 8th St, Seattle, WA 98101" -271581,Google Phone,1,600,10/14/19 09:11,"607 13th St, Los Angeles, CA 90001" -271581,USB-C Charging Cable,2,11.95,10/14/19 09:11,"607 13th St, Los Angeles, CA 90001" -271582,USB-C Charging Cable,1,11.95,10/21/19 11:01,"421 11th St, Atlanta, GA 30301" -271583,Wired Headphones,1,11.99,10/14/19 12:40,"76 Johnson St, Seattle, WA 98101" -271584,AAA Batteries (4-pack),1,2.99,10/17/19 17:58,"449 Forest St, Boston, MA 02215" -271585,Apple Airpods Headphones,1,150,10/09/19 07:48,"261 7th St, Seattle, WA 98101" -271586,27in 4K Gaming Monitor,1,389.99,10/25/19 11:27,"51 Cedar St, Seattle, WA 98101" -271587,20in Monitor,1,109.99,10/02/19 06:14,"753 Park St, Los Angeles, CA 90001" -271588,Apple Airpods Headphones,1,150,10/05/19 15:14,"812 Church St, Los Angeles, CA 90001" -271589,AAA Batteries (4-pack),1,2.99,10/23/19 15:11,"539 Wilson St, Atlanta, GA 30301" -271590,Lightning Charging Cable,1,14.95,10/23/19 22:13,"899 Meadow St, New York City, NY 10001" -271591,Flatscreen TV,1,300,10/13/19 17:10,"185 7th St, Los Angeles, CA 90001" -271592,LG Washing Machine,1,600.0,10/05/19 09:33,"719 Adams St, Boston, MA 02215" -271593,Apple Airpods Headphones,1,150,10/20/19 10:38,"883 Wilson St, Dallas, TX 75001" -271594,Apple Airpods Headphones,1,150,10/09/19 11:40,"114 Dogwood St, Dallas, TX 75001" -271594,Wired Headphones,1,11.99,10/09/19 11:40,"114 Dogwood St, Dallas, TX 75001" -271595,iPhone,1,700,10/13/19 16:38,"911 South St, New York City, NY 10001" -271596,AAA Batteries (4-pack),1,2.99,10/25/19 05:48,"688 10th St, New York City, NY 10001" -271597,AAA Batteries (4-pack),2,2.99,10/14/19 15:10,"171 Adams St, Atlanta, GA 30301" -271598,20in Monitor,1,109.99,10/05/19 18:20,"93 Park St, Dallas, TX 75001" -271599,Lightning Charging Cable,1,14.95,10/09/19 15:49,"778 Meadow St, San Francisco, CA 94016" -271600,AA Batteries (4-pack),1,3.84,10/06/19 14:26,"804 Hill St, Los Angeles, CA 90001" -271601,Wired Headphones,1,11.99,10/27/19 07:48,"890 13th St, Los Angeles, CA 90001" -271602,Macbook Pro Laptop,1,1700,10/21/19 19:53,"814 Cedar St, Seattle, WA 98101" -271603,iPhone,1,700,10/23/19 01:26,"960 2nd St, Los Angeles, CA 90001" -271604,USB-C Charging Cable,2,11.95,10/18/19 09:55,"480 Ridge St, San Francisco, CA 94016" -271605,USB-C Charging Cable,1,11.95,10/06/19 17:25,"513 Sunset St, New York City, NY 10001" -271606,27in FHD Monitor,1,149.99,10/11/19 09:33,"691 Lincoln St, Los Angeles, CA 90001" -271607,USB-C Charging Cable,1,11.95,10/11/19 18:05,"639 4th St, San Francisco, CA 94016" -271608,iPhone,1,700,10/12/19 20:19,"204 Ridge St, Boston, MA 02215" -271609,Bose SoundSport Headphones,1,99.99,10/18/19 13:30,"454 Jefferson St, Atlanta, GA 30301" -271610,Macbook Pro Laptop,1,1700,10/14/19 22:13,"915 South St, Los Angeles, CA 90001" -271611,Lightning Charging Cable,1,14.95,10/16/19 21:10,"684 Pine St, Atlanta, GA 30301" -271612,AA Batteries (4-pack),2,3.84,10/10/19 09:59,"69 6th St, Boston, MA 02215" -271613,Bose SoundSport Headphones,1,99.99,10/17/19 06:35,"739 Forest St, San Francisco, CA 94016" -271614,Macbook Pro Laptop,1,1700,10/12/19 13:42,"13 South St, Atlanta, GA 30301" -271615,27in FHD Monitor,1,149.99,10/30/19 07:55,"724 Maple St, San Francisco, CA 94016" -271616,ThinkPad Laptop,1,999.99,10/31/19 10:29,"978 Cedar St, Los Angeles, CA 90001" -271617,USB-C Charging Cable,1,11.95,10/06/19 13:59,"382 Willow St, San Francisco, CA 94016" -271618,ThinkPad Laptop,1,999.99,10/01/19 12:00,"451 Cedar St, Boston, MA 02215" -271619,AA Batteries (4-pack),1,3.84,10/29/19 16:02,"812 6th St, New York City, NY 10001" -271620,Wired Headphones,1,11.99,10/22/19 08:29,"165 1st St, New York City, NY 10001" -271621,iPhone,1,700,10/26/19 19:14,"134 Meadow St, Boston, MA 02215" -271621,Lightning Charging Cable,1,14.95,10/26/19 19:14,"134 Meadow St, Boston, MA 02215" -271621,Apple Airpods Headphones,1,150,10/26/19 19:14,"134 Meadow St, Boston, MA 02215" -271622,Lightning Charging Cable,1,14.95,10/22/19 18:02,"555 Cedar St, Boston, MA 02215" -271623,Apple Airpods Headphones,1,150,10/19/19 19:59,"861 Church St, Los Angeles, CA 90001" -271624,Wired Headphones,1,11.99,10/25/19 13:40,"962 Johnson St, San Francisco, CA 94016" -271625,USB-C Charging Cable,1,11.95,10/31/19 10:24,"546 2nd St, Seattle, WA 98101" -271626,AA Batteries (4-pack),1,3.84,10/07/19 20:48,"171 Sunset St, Los Angeles, CA 90001" -271627,AAA Batteries (4-pack),1,2.99,10/10/19 20:48,"367 1st St, Austin, TX 73301" -271628,AA Batteries (4-pack),1,3.84,10/17/19 16:24,"908 Highland St, San Francisco, CA 94016" -271629,Vareebadd Phone,1,400,10/05/19 22:52,"966 Lake St, New York City, NY 10001" -271630,Wired Headphones,1,11.99,10/11/19 17:53,"915 11th St, New York City, NY 10001" -271631,27in 4K Gaming Monitor,1,389.99,10/10/19 20:52,"801 13th St, Atlanta, GA 30301" -271632,Lightning Charging Cable,1,14.95,10/29/19 21:36,"475 Johnson St, Boston, MA 02215" -271633,Wired Headphones,1,11.99,10/22/19 09:49,"242 Madison St, Seattle, WA 98101" -271634,Lightning Charging Cable,1,14.95,10/13/19 12:09,"270 2nd St, New York City, NY 10001" -271635,Apple Airpods Headphones,1,150,10/18/19 18:50,"670 Elm St, Austin, TX 73301" -271636,Lightning Charging Cable,1,14.95,10/04/19 09:10,"418 North St, San Francisco, CA 94016" -271637,Google Phone,1,600,10/08/19 18:29,"719 Dogwood St, Austin, TX 73301" -271638,27in FHD Monitor,1,149.99,10/30/19 18:20,"192 Washington St, New York City, NY 10001" -271639,USB-C Charging Cable,1,11.95,10/19/19 10:17,"186 Willow St, Portland, OR 97035" -271640,USB-C Charging Cable,1,11.95,10/04/19 22:08,"122 Johnson St, San Francisco, CA 94016" -271641,USB-C Charging Cable,1,11.95,10/22/19 11:30,"827 Park St, Los Angeles, CA 90001" -271642,AA Batteries (4-pack),1,3.84,10/25/19 21:13,"504 7th St, Los Angeles, CA 90001" -271643,AA Batteries (4-pack),1,3.84,10/11/19 17:47,"190 Johnson St, Dallas, TX 75001" -271644,ThinkPad Laptop,1,999.99,10/07/19 14:59,"33 10th St, San Francisco, CA 94016" -271645,AA Batteries (4-pack),1,3.84,10/29/19 15:32,"3 Wilson St, San Francisco, CA 94016" -271646,Wired Headphones,1,11.99,10/03/19 19:30,"560 Walnut St, Los Angeles, CA 90001" -271647,20in Monitor,1,109.99,10/29/19 17:40,"905 11th St, Boston, MA 02215" -271648,Lightning Charging Cable,1,14.95,10/21/19 16:47,"866 13th St, Atlanta, GA 30301" -271649,ThinkPad Laptop,1,999.99,10/17/19 20:37,"20 Cedar St, Los Angeles, CA 90001" -271650,Lightning Charging Cable,1,14.95,10/16/19 20:59,"230 Ridge St, Atlanta, GA 30301" -271651,Lightning Charging Cable,1,14.95,10/03/19 22:37,"113 Highland St, Atlanta, GA 30301" -271652,USB-C Charging Cable,1,11.95,10/06/19 19:23,"271 Elm St, Los Angeles, CA 90001" -271653,27in FHD Monitor,1,149.99,10/05/19 10:37,"883 4th St, Boston, MA 02215" -271654,AA Batteries (4-pack),1,3.84,10/06/19 10:41,"162 West St, Austin, TX 73301" -271655,AA Batteries (4-pack),1,3.84,10/28/19 17:14,"670 Park St, New York City, NY 10001" -271656,Wired Headphones,1,11.99,10/29/19 14:32,"599 Lake St, Austin, TX 73301" -271657,AA Batteries (4-pack),1,3.84,10/23/19 19:12,"569 Cherry St, San Francisco, CA 94016" -271658,AAA Batteries (4-pack),1,2.99,10/14/19 14:18,"638 Meadow St, San Francisco, CA 94016" -271659,AAA Batteries (4-pack),1,2.99,10/30/19 16:40,"878 Walnut St, Austin, TX 73301" -271660,Apple Airpods Headphones,1,150,10/22/19 15:22,"767 10th St, San Francisco, CA 94016" -271661,AAA Batteries (4-pack),1,2.99,10/19/19 18:16,"104 7th St, San Francisco, CA 94016" -271662,27in FHD Monitor,1,149.99,10/22/19 08:42,"852 Meadow St, New York City, NY 10001" -271663,27in FHD Monitor,1,149.99,10/18/19 11:36,"263 Park St, San Francisco, CA 94016" -271664,USB-C Charging Cable,1,11.95,10/15/19 12:29,"408 Meadow St, Boston, MA 02215" -271665,USB-C Charging Cable,1,11.95,10/06/19 11:32,"685 Madison St, Boston, MA 02215" -271666,USB-C Charging Cable,1,11.95,10/15/19 11:28,"296 Chestnut St, San Francisco, CA 94016" -271667,Lightning Charging Cable,1,14.95,10/13/19 15:34,"266 6th St, San Francisco, CA 94016" -271668,Vareebadd Phone,1,400,10/19/19 21:51,"288 Walnut St, Seattle, WA 98101" -271668,Bose SoundSport Headphones,1,99.99,10/19/19 21:51,"288 Walnut St, Seattle, WA 98101" -271668,Flatscreen TV,1,300,10/19/19 21:51,"288 Walnut St, Seattle, WA 98101" -271669,AAA Batteries (4-pack),1,2.99,10/31/19 23:31,"529 Dogwood St, Austin, TX 73301" -271670,Wired Headphones,1,11.99,10/16/19 10:53,"432 Forest St, San Francisco, CA 94016" -271671,Flatscreen TV,1,300,10/16/19 21:09,"955 Forest St, San Francisco, CA 94016" -271672,USB-C Charging Cable,1,11.95,10/21/19 14:21,"650 6th St, Los Angeles, CA 90001" -271673,ThinkPad Laptop,1,999.99,10/01/19 11:44,"41 11th St, New York City, NY 10001" -271674,AA Batteries (4-pack),1,3.84,10/01/19 12:06,"97 Spruce St, San Francisco, CA 94016" -271675,Lightning Charging Cable,1,14.95,10/20/19 01:33,"846 Cedar St, Dallas, TX 75001" -271676,Flatscreen TV,1,300,10/03/19 16:26,"20 Lincoln St, Los Angeles, CA 90001" -271677,USB-C Charging Cable,1,11.95,10/04/19 19:40,"446 Walnut St, Los Angeles, CA 90001" -271678,iPhone,1,700,10/21/19 10:17,"67 14th St, Los Angeles, CA 90001" -271679,Bose SoundSport Headphones,1,99.99,10/22/19 13:37,"325 West St, Atlanta, GA 30301" -271680,AA Batteries (4-pack),1,3.84,10/26/19 13:26,"439 10th St, New York City, NY 10001" -271681,USB-C Charging Cable,1,11.95,10/08/19 08:31,"499 South St, Atlanta, GA 30301" -271681,AA Batteries (4-pack),2,3.84,10/08/19 08:31,"499 South St, Atlanta, GA 30301" -271682,Wired Headphones,1,11.99,10/27/19 22:11,"470 Jefferson St, Portland, OR 97035" -271683,34in Ultrawide Monitor,1,379.99,10/07/19 23:12,"722 Highland St, Dallas, TX 75001" -271684,iPhone,1,700,10/27/19 10:40,"93 11th St, Dallas, TX 75001" -271685,Wired Headphones,1,11.99,10/20/19 15:37,"422 Wilson St, Boston, MA 02215" -271686,Wired Headphones,1,11.99,10/05/19 22:50,"251 4th St, San Francisco, CA 94016" -271687,34in Ultrawide Monitor,1,379.99,10/13/19 09:45,"946 Ridge St, Boston, MA 02215" -271688,Google Phone,1,600,10/05/19 19:26,"299 8th St, Portland, OR 97035" -271688,USB-C Charging Cable,1,11.95,10/05/19 19:26,"299 8th St, Portland, OR 97035" -271688,Wired Headphones,1,11.99,10/05/19 19:26,"299 8th St, Portland, OR 97035" -271689,Lightning Charging Cable,1,14.95,10/01/19 19:21,"433 Highland St, Austin, TX 73301" -271690,Lightning Charging Cable,1,14.95,10/07/19 19:14,"750 1st St, San Francisco, CA 94016" -271691,Macbook Pro Laptop,1,1700,10/14/19 23:21,"489 13th St, Seattle, WA 98101" -271691,AA Batteries (4-pack),1,3.84,10/14/19 23:21,"489 13th St, Seattle, WA 98101" -271692,Google Phone,1,600,10/21/19 15:23,"426 Wilson St, Portland, OR 97035" -271693,AA Batteries (4-pack),1,3.84,10/24/19 14:47,"806 6th St, New York City, NY 10001" -271694,ThinkPad Laptop,1,999.99,10/08/19 14:39,"980 1st St, Los Angeles, CA 90001" -271695,ThinkPad Laptop,1,999.99,10/14/19 19:35,"402 North St, Atlanta, GA 30301" -271696,Lightning Charging Cable,1,14.95,10/05/19 12:09,"311 South St, San Francisco, CA 94016" -271697,Apple Airpods Headphones,1,150,10/09/19 20:42,"197 13th St, Boston, MA 02215" -271697,27in FHD Monitor,1,149.99,10/09/19 20:42,"197 13th St, Boston, MA 02215" -271698,USB-C Charging Cable,1,11.95,10/01/19 19:36,"308 Walnut St, Portland, OR 97035" -271699,Wired Headphones,1,11.99,10/08/19 20:40,"120 Center St, Portland, OR 97035" -271700,AAA Batteries (4-pack),2,2.99,10/31/19 12:46,"797 6th St, Dallas, TX 75001" -271701,Wired Headphones,1,11.99,10/15/19 20:10,"453 Park St, Austin, TX 73301" -271702,AA Batteries (4-pack),1,3.84,10/23/19 11:58,"988 Lake St, Atlanta, GA 30301" -271703,27in 4K Gaming Monitor,1,389.99,10/21/19 10:08,"717 5th St, New York City, NY 10001" -271704,iPhone,1,700,10/10/19 19:59,"413 Ridge St, San Francisco, CA 94016" -271704,Apple Airpods Headphones,1,150,10/10/19 19:59,"413 Ridge St, San Francisco, CA 94016" -271705,Bose SoundSport Headphones,1,99.99,10/28/19 16:04,"355 Jefferson St, Atlanta, GA 30301" -271706,Google Phone,1,600,10/24/19 10:36,"535 Jackson St, Portland, OR 97035" -271707,AAA Batteries (4-pack),2,2.99,10/31/19 08:31,"102 Lakeview St, Los Angeles, CA 90001" -271708,AAA Batteries (4-pack),1,2.99,10/30/19 09:25,"372 12th St, Portland, OR 97035" -271709,Lightning Charging Cable,1,14.95,10/18/19 10:36,"620 Wilson St, New York City, NY 10001" -271710,Lightning Charging Cable,1,14.95,10/02/19 18:24,"782 Dogwood St, Los Angeles, CA 90001" -271711,27in FHD Monitor,1,149.99,10/20/19 18:29,"58 9th St, Los Angeles, CA 90001" -271712,27in FHD Monitor,1,149.99,10/05/19 09:32,"141 West St, San Francisco, CA 94016" -271713,Wired Headphones,1,11.99,10/02/19 16:19,"424 Elm St, Atlanta, GA 30301" -271714,Bose SoundSport Headphones,2,99.99,10/18/19 17:37,"83 Spruce St, Boston, MA 02215" -271715,27in FHD Monitor,1,149.99,10/03/19 15:10,"244 Sunset St, New York City, NY 10001" -271716,27in 4K Gaming Monitor,1,389.99,10/15/19 01:47,"691 Adams St, Portland, OR 97035" -271717,USB-C Charging Cable,1,11.95,10/14/19 00:53,"120 Spruce St, San Francisco, CA 94016" -271718,iPhone,1,700,10/11/19 10:30,"274 Cedar St, Boston, MA 02215" -271719,34in Ultrawide Monitor,1,379.99,10/28/19 08:25,"53 Forest St, San Francisco, CA 94016" -271720,AA Batteries (4-pack),1,3.84,10/30/19 14:59,"128 Elm St, San Francisco, CA 94016" -271721,USB-C Charging Cable,1,11.95,10/18/19 06:58,"217 Park St, San Francisco, CA 94016" -271722,27in FHD Monitor,1,149.99,10/20/19 08:59,"725 Park St, Portland, OR 97035" -271723,AA Batteries (4-pack),1,3.84,10/23/19 10:11,"54 Washington St, Los Angeles, CA 90001" -271724,USB-C Charging Cable,1,11.95,10/11/19 00:18,"407 Jefferson St, San Francisco, CA 94016" -271725,USB-C Charging Cable,1,11.95,10/20/19 18:36,"123 West St, Los Angeles, CA 90001" -271726,Macbook Pro Laptop,1,1700,10/05/19 07:46,"133 Willow St, New York City, NY 10001" -271727,USB-C Charging Cable,1,11.95,10/05/19 19:13,"438 Lincoln St, Seattle, WA 98101" -271727,AA Batteries (4-pack),1,3.84,10/05/19 19:13,"438 Lincoln St, Seattle, WA 98101" -271728,Lightning Charging Cable,1,14.95,10/22/19 20:34,"308 9th St, San Francisco, CA 94016" -271729,Lightning Charging Cable,1,14.95,10/07/19 22:45,"10 Johnson St, San Francisco, CA 94016" -271729,Bose SoundSport Headphones,1,99.99,10/07/19 22:45,"10 Johnson St, San Francisco, CA 94016" -271730,Bose SoundSport Headphones,1,99.99,10/17/19 20:01,"861 Lakeview St, Los Angeles, CA 90001" -271731,AA Batteries (4-pack),1,3.84,10/18/19 19:19,"697 Forest St, New York City, NY 10001" -271732,Google Phone,1,600,10/31/19 06:31,"616 10th St, Dallas, TX 75001" -271733,Wired Headphones,1,11.99,10/12/19 21:27,"854 Johnson St, Los Angeles, CA 90001" -271734,AA Batteries (4-pack),1,3.84,10/25/19 17:10,"690 Spruce St, San Francisco, CA 94016" -271735,Macbook Pro Laptop,1,1700,10/16/19 16:33,"192 5th St, Portland, OR 97035" -271736,Wired Headphones,1,11.99,10/29/19 15:49,"185 6th St, New York City, NY 10001" -271737,Wired Headphones,1,11.99,10/22/19 10:49,"99 Cedar St, San Francisco, CA 94016" -271738,34in Ultrawide Monitor,1,379.99,10/28/19 10:09,"391 5th St, Los Angeles, CA 90001" -271739,34in Ultrawide Monitor,1,379.99,10/16/19 07:08,"292 9th St, New York City, NY 10001" -271740,AA Batteries (4-pack),1,3.84,10/03/19 00:11,"251 Cherry St, Los Angeles, CA 90001" -271741,AA Batteries (4-pack),1,3.84,10/16/19 18:30,"938 Church St, Portland, OR 97035" -271742,Bose SoundSport Headphones,1,99.99,10/20/19 20:29,"347 Center St, San Francisco, CA 94016" -271743,Wired Headphones,1,11.99,10/03/19 08:34,"633 Elm St, San Francisco, CA 94016" -271744,Bose SoundSport Headphones,1,99.99,10/29/19 10:49,"618 11th St, Boston, MA 02215" -271745,Wired Headphones,1,11.99,10/13/19 12:25,"379 Forest St, New York City, NY 10001" -271746,ThinkPad Laptop,1,999.99,10/10/19 07:30,"333 13th St, Atlanta, GA 30301" -271747,Lightning Charging Cable,1,14.95,10/23/19 09:02,"202 Meadow St, Portland, OR 97035" -271748,Wired Headphones,1,11.99,10/14/19 17:04,"927 South St, New York City, NY 10001" -271748,AAA Batteries (4-pack),1,2.99,10/14/19 17:04,"927 South St, New York City, NY 10001" -271749,20in Monitor,1,109.99,10/17/19 20:51,"857 Johnson St, Boston, MA 02215" -271750,USB-C Charging Cable,1,11.95,10/16/19 01:00,"574 14th St, Portland, OR 97035" -271751,AA Batteries (4-pack),4,3.84,10/23/19 18:42,"192 Forest St, New York City, NY 10001" -271752,Macbook Pro Laptop,1,1700,10/06/19 14:48,"992 Adams St, Boston, MA 02215" -271753,34in Ultrawide Monitor,1,379.99,10/22/19 13:11,"139 4th St, Atlanta, GA 30301" -271754,Apple Airpods Headphones,1,150,10/31/19 13:23,"569 Ridge St, Los Angeles, CA 90001" -271755,Apple Airpods Headphones,1,150,10/09/19 10:14,"16 Madison St, Los Angeles, CA 90001" -271756,iPhone,1,700,10/18/19 12:23,"780 Dogwood St, Boston, MA 02215" -271756,Lightning Charging Cable,1,14.95,10/18/19 12:23,"780 Dogwood St, Boston, MA 02215" -271757,Vareebadd Phone,1,400,10/28/19 20:35,"401 Madison St, Atlanta, GA 30301" -271757,USB-C Charging Cable,1,11.95,10/28/19 20:35,"401 Madison St, Atlanta, GA 30301" -271758,Apple Airpods Headphones,1,150,10/02/19 11:30,"138 Lake St, Los Angeles, CA 90001" -271759,Macbook Pro Laptop,1,1700,10/06/19 19:55,"875 13th St, San Francisco, CA 94016" -271760,27in 4K Gaming Monitor,1,389.99,10/22/19 11:36,"887 Hickory St, San Francisco, CA 94016" -271761,AA Batteries (4-pack),1,3.84,10/31/19 13:13,"141 Maple St, San Francisco, CA 94016" -271762,USB-C Charging Cable,2,11.95,10/21/19 18:05,"393 South St, New York City, NY 10001" -271763,27in FHD Monitor,1,149.99,10/12/19 09:33,"722 Cedar St, Los Angeles, CA 90001" -271764,Flatscreen TV,1,300,10/25/19 13:10,"645 Church St, Los Angeles, CA 90001" -271765,Wired Headphones,1,11.99,10/13/19 17:55,"322 Spruce St, New York City, NY 10001" -271766,Bose SoundSport Headphones,1,99.99,10/07/19 16:27,"567 2nd St, Portland, OR 97035" -271767,27in 4K Gaming Monitor,1,389.99,10/26/19 17:11,"217 Jefferson St, Austin, TX 73301" -271768,AA Batteries (4-pack),1,3.84,10/21/19 07:36,"333 Willow St, Boston, MA 02215" -271769,Bose SoundSport Headphones,1,99.99,10/16/19 19:31,"325 Washington St, Dallas, TX 75001" -271770,ThinkPad Laptop,1,999.99,10/05/19 22:17,"150 Highland St, Portland, ME 04101" -271771,Lightning Charging Cable,1,14.95,10/28/19 21:08,"750 Cedar St, San Francisco, CA 94016" -271772,Wired Headphones,1,11.99,10/28/19 08:51,"42 Wilson St, Los Angeles, CA 90001" -271773,AA Batteries (4-pack),3,3.84,10/04/19 13:53,"172 Hickory St, San Francisco, CA 94016" -271774,AA Batteries (4-pack),1,3.84,10/27/19 23:04,"485 Meadow St, San Francisco, CA 94016" -271775,20in Monitor,1,109.99,10/08/19 13:44,"656 5th St, Los Angeles, CA 90001" -,,,,, -271776,Apple Airpods Headphones,1,150,10/01/19 12:14,"863 5th St, Dallas, TX 75001" -271777,Bose SoundSport Headphones,1,99.99,10/19/19 20:05,"121 7th St, Atlanta, GA 30301" -271778,27in FHD Monitor,1,149.99,10/04/19 23:09,"92 Elm St, Dallas, TX 75001" -271779,Google Phone,1,600,10/03/19 12:30,"230 6th St, Seattle, WA 98101" -271779,USB-C Charging Cable,1,11.95,10/03/19 12:30,"230 6th St, Seattle, WA 98101" -271780,Apple Airpods Headphones,1,150,10/02/19 08:33,"790 14th St, Portland, ME 04101" -271781,27in FHD Monitor,1,149.99,10/21/19 15:10,"357 Lakeview St, Seattle, WA 98101" -271782,AAA Batteries (4-pack),1,2.99,10/02/19 12:13,"40 2nd St, New York City, NY 10001" -271783,Bose SoundSport Headphones,1,99.99,10/02/19 09:18,"928 Cedar St, Atlanta, GA 30301" -271784,AA Batteries (4-pack),1,3.84,10/11/19 19:34,"799 Johnson St, New York City, NY 10001" -271785,Lightning Charging Cable,1,14.95,10/11/19 12:38,"701 Forest St, San Francisco, CA 94016" -271786,Google Phone,1,600,10/27/19 22:49,"757 1st St, Los Angeles, CA 90001" -271787,27in 4K Gaming Monitor,1,389.99,10/30/19 15:53,"783 South St, Boston, MA 02215" -271788,AAA Batteries (4-pack),1,2.99,10/01/19 13:13,"454 Willow St, Portland, OR 97035" -271789,27in FHD Monitor,1,149.99,10/14/19 10:56,"384 1st St, New York City, NY 10001" -271790,Lightning Charging Cable,1,14.95,10/25/19 12:22,"919 Cherry St, New York City, NY 10001" -271791,AA Batteries (4-pack),1,3.84,10/27/19 04:05,"284 Sunset St, Seattle, WA 98101" -271792,ThinkPad Laptop,1,999.99,10/29/19 15:33,"302 Chestnut St, Atlanta, GA 30301" -271793,Bose SoundSport Headphones,1,99.99,10/22/19 16:25,"236 Wilson St, Austin, TX 73301" -271794,Google Phone,1,600,10/23/19 06:20,"949 9th St, Austin, TX 73301" -271795,AAA Batteries (4-pack),2,2.99,10/30/19 18:42,"727 Lakeview St, Portland, OR 97035" -271796,Lightning Charging Cable,1,14.95,10/07/19 18:33,"283 Maple St, Los Angeles, CA 90001" -271797,AA Batteries (4-pack),1,3.84,10/11/19 11:24,"776 Madison St, Dallas, TX 75001" -271798,Wired Headphones,1,11.99,10/19/19 09:27,"155 Forest St, Atlanta, GA 30301" -271799,AAA Batteries (4-pack),3,2.99,10/17/19 22:21,"674 9th St, San Francisco, CA 94016" -271800,iPhone,1,700,10/01/19 18:51,"960 Park St, Dallas, TX 75001" -271801,Lightning Charging Cable,1,14.95,10/12/19 00:28,"67 Dogwood St, Los Angeles, CA 90001" -271802,AA Batteries (4-pack),2,3.84,10/04/19 20:35,"87 South St, Atlanta, GA 30301" -271802,Flatscreen TV,1,300,10/04/19 20:35,"87 South St, Atlanta, GA 30301" -271803,Bose SoundSport Headphones,1,99.99,10/04/19 10:58,"370 West St, Los Angeles, CA 90001" -271804,AA Batteries (4-pack),1,3.84,10/13/19 08:16,"974 North St, Portland, OR 97035" -271805,27in 4K Gaming Monitor,2,389.99,10/28/19 19:18,"394 Chestnut St, San Francisco, CA 94016" -271806,Lightning Charging Cable,1,14.95,10/23/19 10:57,"42 Chestnut St, Los Angeles, CA 90001" -271807,Wired Headphones,1,11.99,10/22/19 14:18,"303 North St, San Francisco, CA 94016" -271808,AAA Batteries (4-pack),1,2.99,10/19/19 11:43,"60 Hickory St, Seattle, WA 98101" -271809,AAA Batteries (4-pack),3,2.99,10/30/19 13:09,"794 Park St, Los Angeles, CA 90001" -271810,Wired Headphones,1,11.99,10/11/19 16:31,"90 Meadow St, New York City, NY 10001" -271811,Wired Headphones,1,11.99,10/23/19 17:38,"615 South St, Seattle, WA 98101" -271812,AA Batteries (4-pack),2,3.84,10/06/19 10:44,"501 11th St, Portland, ME 04101" -271813,Lightning Charging Cable,1,14.95,10/01/19 15:51,"533 2nd St, San Francisco, CA 94016" -271814,Apple Airpods Headphones,1,150,10/15/19 21:09,"226 North St, Los Angeles, CA 90001" -271814,AAA Batteries (4-pack),1,2.99,10/15/19 21:09,"226 North St, Los Angeles, CA 90001" -271815,AAA Batteries (4-pack),2,2.99,10/01/19 23:26,"97 Lake St, Los Angeles, CA 90001" -271816,AAA Batteries (4-pack),1,2.99,10/24/19 12:10,"568 Forest St, Portland, OR 97035" -271817,Lightning Charging Cable,1,14.95,10/31/19 22:22,"535 6th St, Boston, MA 02215" -271818,20in Monitor,1,109.99,10/27/19 10:53,"682 12th St, Los Angeles, CA 90001" -271819,Apple Airpods Headphones,1,150,10/25/19 19:19,"784 Madison St, Dallas, TX 75001" -271820,Bose SoundSport Headphones,1,99.99,10/14/19 19:13,"543 Elm St, Los Angeles, CA 90001" -271821,Lightning Charging Cable,1,14.95,10/07/19 15:35,"662 Park St, Dallas, TX 75001" -271822,Flatscreen TV,1,300,10/31/19 07:46,"180 Cedar St, Los Angeles, CA 90001" -271823,AA Batteries (4-pack),1,3.84,10/14/19 21:25,"30 1st St, Los Angeles, CA 90001" -271824,USB-C Charging Cable,1,11.95,10/04/19 20:49,"448 Center St, Atlanta, GA 30301" -271825,iPhone,1,700,10/01/19 20:49,"588 5th St, New York City, NY 10001" -271826,34in Ultrawide Monitor,1,379.99,10/11/19 13:51,"257 Hickory St, Portland, OR 97035" -271827,Lightning Charging Cable,1,14.95,10/31/19 19:18,"283 Spruce St, New York City, NY 10001" -271828,AA Batteries (4-pack),1,3.84,10/12/19 18:02,"344 Willow St, New York City, NY 10001" -271829,AA Batteries (4-pack),1,3.84,10/08/19 20:24,"700 Hickory St, New York City, NY 10001" -271830,34in Ultrawide Monitor,1,379.99,10/26/19 23:12,"713 Pine St, San Francisco, CA 94016" -271831,Wired Headphones,1,11.99,10/14/19 12:17,"645 Lakeview St, Boston, MA 02215" -271832,Vareebadd Phone,1,400,10/30/19 13:59,"855 Pine St, San Francisco, CA 94016" -271833,20in Monitor,1,109.99,10/20/19 12:11,"572 Maple St, Boston, MA 02215" -271834,Google Phone,1,600,10/04/19 02:31,"488 Chestnut St, Austin, TX 73301" -271835,Apple Airpods Headphones,1,150,10/04/19 21:11,"639 River St, Los Angeles, CA 90001" -271836,27in FHD Monitor,1,149.99,10/24/19 18:02,"281 4th St, Seattle, WA 98101" -271837,Google Phone,1,600,10/23/19 19:52,"502 Spruce St, New York City, NY 10001" -271838,27in FHD Monitor,1,149.99,10/31/19 21:34,"799 Maple St, Atlanta, GA 30301" -271839,AAA Batteries (4-pack),1,2.99,10/17/19 13:47,"444 Elm St, Austin, TX 73301" -271840,Apple Airpods Headphones,1,150,10/16/19 22:08,"549 West St, New York City, NY 10001" -271841,iPhone,1,700,10/11/19 20:04,"26 Jackson St, Los Angeles, CA 90001" -271842,Apple Airpods Headphones,1,150,10/22/19 16:47,"41 7th St, Seattle, WA 98101" -271843,Bose SoundSport Headphones,1,99.99,10/08/19 12:39,"673 Highland St, Seattle, WA 98101" -271844,USB-C Charging Cable,1,11.95,10/30/19 10:27,"680 Jackson St, Portland, ME 04101" -271845,34in Ultrawide Monitor,1,379.99,10/01/19 14:50,"826 7th St, Seattle, WA 98101" -271846,Google Phone,1,600,10/31/19 19:56,"95 Center St, New York City, NY 10001" -271847,Apple Airpods Headphones,1,150,10/04/19 10:56,"994 Chestnut St, Atlanta, GA 30301" -271848,USB-C Charging Cable,1,11.95,10/19/19 16:10,"199 9th St, Los Angeles, CA 90001" -271849,34in Ultrawide Monitor,1,379.99,10/23/19 00:21,"351 Main St, Seattle, WA 98101" -271850,Apple Airpods Headphones,1,150,10/19/19 10:18,"193 6th St, San Francisco, CA 94016" -271851,USB-C Charging Cable,1,11.95,10/03/19 23:48,"104 Washington St, Seattle, WA 98101" -271852,27in 4K Gaming Monitor,1,389.99,10/02/19 15:51,"54 Jackson St, Seattle, WA 98101" -271853,USB-C Charging Cable,1,11.95,10/07/19 19:54,"41 Park St, Atlanta, GA 30301" -271854,AAA Batteries (4-pack),2,2.99,10/17/19 13:43,"944 West St, San Francisco, CA 94016" -271855,Wired Headphones,1,11.99,10/01/19 15:14,"468 Elm St, San Francisco, CA 94016" -271856,Lightning Charging Cable,1,14.95,10/22/19 16:14,"763 13th St, Seattle, WA 98101" -271857,USB-C Charging Cable,1,11.95,10/08/19 22:25,"562 Cedar St, Los Angeles, CA 90001" -271858,USB-C Charging Cable,1,11.95,10/30/19 11:13,"290 Madison St, New York City, NY 10001" -271859,AA Batteries (4-pack),1,3.84,10/05/19 21:40,"417 Elm St, Dallas, TX 75001" -271860,Lightning Charging Cable,1,14.95,10/18/19 19:18,"241 Dogwood St, Los Angeles, CA 90001" -271861,USB-C Charging Cable,1,11.95,10/12/19 16:51,"99 Main St, Boston, MA 02215" -271862,AAA Batteries (4-pack),1,2.99,10/17/19 21:01,"765 Lincoln St, Boston, MA 02215" -271863,USB-C Charging Cable,1,11.95,10/31/19 22:00,"604 Jackson St, New York City, NY 10001" -271864,AAA Batteries (4-pack),1,2.99,10/07/19 09:34,"596 Park St, New York City, NY 10001" -271865,AA Batteries (4-pack),1,3.84,10/19/19 15:52,"981 Jackson St, Dallas, TX 75001" -271866,27in FHD Monitor,1,149.99,10/11/19 18:00,"758 Jackson St, Los Angeles, CA 90001" -271867,Lightning Charging Cable,1,14.95,10/13/19 12:15,"225 9th St, Los Angeles, CA 90001" -271868,27in FHD Monitor,1,149.99,10/11/19 19:21,"561 Ridge St, Seattle, WA 98101" -271869,AAA Batteries (4-pack),3,2.99,10/06/19 13:11,"487 Spruce St, San Francisco, CA 94016" -271870,Google Phone,1,600,10/17/19 17:31,"890 6th St, Portland, OR 97035" -271871,Wired Headphones,1,11.99,10/28/19 18:50,"77 Elm St, Seattle, WA 98101" -271872,27in 4K Gaming Monitor,1,389.99,10/18/19 09:11,"93 River St, Austin, TX 73301" -271873,Macbook Pro Laptop,1,1700,10/04/19 22:10,"873 Washington St, Los Angeles, CA 90001" -271874,USB-C Charging Cable,1,11.95,10/03/19 21:44,"472 Sunset St, Atlanta, GA 30301" -271875,Macbook Pro Laptop,1,1700,10/12/19 22:18,"695 Johnson St, Atlanta, GA 30301" -271876,Bose SoundSport Headphones,1,99.99,10/05/19 21:05,"689 Madison St, Los Angeles, CA 90001" -271877,Wired Headphones,1,11.99,10/01/19 16:44,"433 Washington St, Portland, OR 97035" -271878,Lightning Charging Cable,1,14.95,10/11/19 19:35,"590 Spruce St, San Francisco, CA 94016" -271879,Lightning Charging Cable,1,14.95,10/15/19 12:41,"417 8th St, Seattle, WA 98101" -271880,Lightning Charging Cable,1,14.95,10/01/19 15:26,"395 10th St, San Francisco, CA 94016" -271880,Lightning Charging Cable,2,14.95,10/01/19 15:26,"395 10th St, San Francisco, CA 94016" -271881,Apple Airpods Headphones,1,150,10/21/19 17:39,"60 Forest St, Seattle, WA 98101" -271882,ThinkPad Laptop,1,999.99,10/24/19 10:21,"683 Hickory St, Portland, OR 97035" -271883,Google Phone,1,600,10/07/19 13:30,"902 11th St, Dallas, TX 75001" -271883,USB-C Charging Cable,1,11.95,10/07/19 13:30,"902 11th St, Dallas, TX 75001" -271884,USB-C Charging Cable,1,11.95,10/24/19 15:58,"149 Chestnut St, Los Angeles, CA 90001" -271885,Lightning Charging Cable,1,14.95,10/21/19 16:11,"649 Jefferson St, Seattle, WA 98101" -271886,Lightning Charging Cable,1,14.95,10/08/19 22:15,"44 North St, Portland, OR 97035" -271887,Bose SoundSport Headphones,1,99.99,10/05/19 18:08,"488 5th St, Seattle, WA 98101" -271888,AA Batteries (4-pack),2,3.84,10/21/19 17:05,"486 Hill St, San Francisco, CA 94016" -271889,Apple Airpods Headphones,1,150,10/17/19 21:34,"357 Spruce St, Atlanta, GA 30301" -271890,Wired Headphones,1,11.99,10/08/19 15:41,"14 Jackson St, Seattle, WA 98101" -,,,,, -271891,Bose SoundSport Headphones,1,99.99,10/06/19 12:53,"677 Hickory St, Los Angeles, CA 90001" -271892,AAA Batteries (4-pack),1,2.99,10/17/19 08:10,"406 12th St, Los Angeles, CA 90001" -271893,USB-C Charging Cable,1,11.95,10/16/19 21:21,"893 Park St, Los Angeles, CA 90001" -271894,Lightning Charging Cable,1,14.95,10/02/19 19:20,"760 5th St, Portland, ME 04101" -271895,Wired Headphones,1,11.99,10/17/19 01:12,"383 Forest St, San Francisco, CA 94016" -271896,USB-C Charging Cable,1,11.95,10/12/19 10:39,"289 11th St, San Francisco, CA 94016" -271897,Wired Headphones,1,11.99,10/25/19 21:44,"654 North St, San Francisco, CA 94016" -271898,34in Ultrawide Monitor,1,379.99,10/15/19 02:23,"197 Adams St, San Francisco, CA 94016" -271899,AAA Batteries (4-pack),1,2.99,10/12/19 19:05,"442 5th St, Seattle, WA 98101" -271900,Bose SoundSport Headphones,1,99.99,10/12/19 18:29,"342 Pine St, Los Angeles, CA 90001" -271901,34in Ultrawide Monitor,1,379.99,10/14/19 19:38,"239 Church St, Los Angeles, CA 90001" -271902,20in Monitor,1,109.99,10/22/19 08:57,"293 13th St, San Francisco, CA 94016" -271903,AA Batteries (4-pack),1,3.84,10/23/19 18:53,"918 North St, Portland, OR 97035" -271904,Lightning Charging Cable,1,14.95,10/16/19 15:53,"919 Walnut St, Austin, TX 73301" -271905,ThinkPad Laptop,1,999.99,10/30/19 10:16,"631 6th St, Atlanta, GA 30301" -271906,iPhone,1,700,10/28/19 09:01,"515 2nd St, Atlanta, GA 30301" -271907,USB-C Charging Cable,1,11.95,10/27/19 18:42,"395 Park St, San Francisco, CA 94016" -271908,Lightning Charging Cable,1,14.95,10/14/19 21:55,"947 9th St, Seattle, WA 98101" -271909,iPhone,1,700,10/27/19 09:25,"862 6th St, Boston, MA 02215" -271910,Macbook Pro Laptop,1,1700,10/23/19 08:51,"761 Lake St, New York City, NY 10001" -271911,27in FHD Monitor,1,149.99,10/08/19 10:50,"258 Hill St, San Francisco, CA 94016" -271912,USB-C Charging Cable,1,11.95,10/29/19 23:16,"688 Spruce St, San Francisco, CA 94016" -271913,USB-C Charging Cable,2,11.95,10/29/19 16:38,"384 10th St, San Francisco, CA 94016" -271914,34in Ultrawide Monitor,1,379.99,10/04/19 13:44,"531 10th St, New York City, NY 10001" -271915,Lightning Charging Cable,1,14.95,10/04/19 20:03,"199 10th St, San Francisco, CA 94016" -271916,USB-C Charging Cable,1,11.95,10/16/19 19:55,"161 8th St, New York City, NY 10001" -271917,20in Monitor,1,109.99,10/31/19 20:40,"985 River St, San Francisco, CA 94016" -271918,USB-C Charging Cable,1,11.95,10/10/19 21:13,"866 Walnut St, San Francisco, CA 94016" -271919,Wired Headphones,1,11.99,10/03/19 12:36,"356 Johnson St, San Francisco, CA 94016" -271920,Bose SoundSport Headphones,1,99.99,10/07/19 22:15,"757 14th St, San Francisco, CA 94016" -271921,AA Batteries (4-pack),1,3.84,10/29/19 09:57,"917 14th St, New York City, NY 10001" -271922,Apple Airpods Headphones,1,150,10/29/19 12:54,"836 River St, Dallas, TX 75001" -271923,AAA Batteries (4-pack),1,2.99,10/22/19 05:32,"411 Lake St, New York City, NY 10001" -271924,Wired Headphones,1,11.99,10/18/19 10:41,"592 Meadow St, San Francisco, CA 94016" -271925,Bose SoundSport Headphones,1,99.99,10/04/19 18:16,"768 Lincoln St, Atlanta, GA 30301" -271926,Apple Airpods Headphones,1,150,10/23/19 14:02,"39 Park St, San Francisco, CA 94016" -271927,AA Batteries (4-pack),1,3.84,10/20/19 10:18,"211 Chestnut St, New York City, NY 10001" -271928,AA Batteries (4-pack),1,3.84,10/02/19 16:05,"129 Elm St, Portland, OR 97035" -271929,Wired Headphones,1,11.99,10/23/19 11:52,"125 Hickory St, Austin, TX 73301" -271930,USB-C Charging Cable,1,11.95,10/22/19 12:14,"479 North St, San Francisco, CA 94016" -271931,Wired Headphones,2,11.99,10/23/19 13:58,"215 North St, New York City, NY 10001" -271932,AA Batteries (4-pack),1,3.84,10/29/19 19:27,"768 Main St, Los Angeles, CA 90001" -271933,Wired Headphones,1,11.99,10/09/19 18:19,"710 8th St, Seattle, WA 98101" -271934,Lightning Charging Cable,1,14.95,10/12/19 14:19,"23 8th St, San Francisco, CA 94016" -271935,Wired Headphones,1,11.99,10/02/19 10:57,"987 Willow St, Dallas, TX 75001" -271936,Bose SoundSport Headphones,1,99.99,10/30/19 20:55,"792 Park St, Portland, ME 04101" -271937,Lightning Charging Cable,1,14.95,10/17/19 12:28,"739 Adams St, Boston, MA 02215" -271938,USB-C Charging Cable,1,11.95,10/28/19 16:35,"621 Washington St, San Francisco, CA 94016" -271939,USB-C Charging Cable,1,11.95,10/07/19 19:39,"398 West St, Boston, MA 02215" -271940,AA Batteries (4-pack),1,3.84,10/14/19 16:44,"880 Cedar St, Dallas, TX 75001" -271941,34in Ultrawide Monitor,1,379.99,10/13/19 19:08,"645 Dogwood St, Atlanta, GA 30301" -271942,34in Ultrawide Monitor,1,379.99,10/03/19 10:16,"584 Hill St, Atlanta, GA 30301" -271943,Lightning Charging Cable,1,14.95,10/27/19 10:50,"192 13th St, Atlanta, GA 30301" -271944,Wired Headphones,1,11.99,10/11/19 21:22,"763 Elm St, Atlanta, GA 30301" -271945,34in Ultrawide Monitor,1,379.99,10/26/19 20:39,"468 Center St, Portland, ME 04101" -271946,AAA Batteries (4-pack),1,2.99,10/03/19 13:06,"980 Center St, New York City, NY 10001" -271947,Lightning Charging Cable,1,14.95,10/30/19 15:27,"501 Wilson St, San Francisco, CA 94016" -271948,iPhone,1,700,10/02/19 11:23,"638 Chestnut St, San Francisco, CA 94016" -271949,iPhone,1,700,10/31/19 19:53,"792 12th St, San Francisco, CA 94016" -271950,Apple Airpods Headphones,1,150,10/27/19 17:54,"744 Dogwood St, Portland, OR 97035" -271951,27in FHD Monitor,1,149.99,11/01/19 00:31,"817 Highland St, Portland, OR 97035" -271952,AA Batteries (4-pack),1,3.84,10/11/19 16:01,"152 Church St, New York City, NY 10001" -271953,Bose SoundSport Headphones,1,99.99,10/26/19 15:48,"382 Cedar St, Boston, MA 02215" -271954,Wired Headphones,1,11.99,10/07/19 12:28,"890 Highland St, Austin, TX 73301" -271955,iPhone,1,700,10/13/19 09:38,"453 Maple St, San Francisco, CA 94016" -271955,Lightning Charging Cable,1,14.95,10/13/19 09:38,"453 Maple St, San Francisco, CA 94016" -271956,Vareebadd Phone,1,400,10/14/19 06:59,"595 Johnson St, Los Angeles, CA 90001" -271957,Apple Airpods Headphones,1,150,10/22/19 08:08,"764 5th St, Los Angeles, CA 90001" -271958,Wired Headphones,1,11.99,10/05/19 15:15,"687 Main St, San Francisco, CA 94016" -271959,AA Batteries (4-pack),2,3.84,10/16/19 20:05,"116 Wilson St, Atlanta, GA 30301" -271960,Apple Airpods Headphones,1,150,10/29/19 21:01,"685 5th St, Seattle, WA 98101" -271961,Macbook Pro Laptop,1,1700,10/21/19 16:50,"508 10th St, New York City, NY 10001" -271962,USB-C Charging Cable,1,11.95,10/20/19 05:07,"533 8th St, San Francisco, CA 94016" -271963,ThinkPad Laptop,1,999.99,10/15/19 15:30,"880 Lincoln St, San Francisco, CA 94016" -271964,27in 4K Gaming Monitor,1,389.99,10/24/19 22:13,"978 Center St, Austin, TX 73301" -271965,34in Ultrawide Monitor,1,379.99,10/25/19 10:03,"271 Park St, Dallas, TX 75001" -271966,AA Batteries (4-pack),2,3.84,10/19/19 21:40,"189 Ridge St, New York City, NY 10001" -271967,AA Batteries (4-pack),1,3.84,10/23/19 23:55,"825 Highland St, San Francisco, CA 94016" -271968,Google Phone,1,600,10/16/19 10:42,"555 Lincoln St, San Francisco, CA 94016" -271968,USB-C Charging Cable,1,11.95,10/16/19 10:42,"555 Lincoln St, San Francisco, CA 94016" -271969,Wired Headphones,1,11.99,10/25/19 20:14,"341 Dogwood St, New York City, NY 10001" -271970,LG Dryer,1,600.0,10/10/19 14:48,"583 Maple St, San Francisco, CA 94016" -271971,AAA Batteries (4-pack),1,2.99,10/24/19 18:50,"897 Spruce St, Los Angeles, CA 90001" -271972,27in FHD Monitor,1,149.99,10/19/19 19:08,"547 Church St, Atlanta, GA 30301" -271973,Google Phone,1,600,10/22/19 10:09,"313 Forest St, Los Angeles, CA 90001" -271973,Wired Headphones,1,11.99,10/22/19 10:09,"313 Forest St, Los Angeles, CA 90001" -271974,34in Ultrawide Monitor,1,379.99,10/02/19 19:36,"760 Willow St, Dallas, TX 75001" -271975,Lightning Charging Cable,1,14.95,10/30/19 22:16,"778 Walnut St, Boston, MA 02215" -271976,Apple Airpods Headphones,1,150,10/07/19 13:57,"976 Washington St, Dallas, TX 75001" -271977,AAA Batteries (4-pack),3,2.99,10/09/19 21:51,"324 Lakeview St, New York City, NY 10001" -271978,AAA Batteries (4-pack),1,2.99,10/07/19 23:17,"702 Wilson St, Portland, OR 97035" -271979,AA Batteries (4-pack),2,3.84,10/07/19 12:19,"948 7th St, Portland, OR 97035" -271980,Bose SoundSport Headphones,1,99.99,10/12/19 23:26,"735 11th St, Boston, MA 02215" -271981,Lightning Charging Cable,1,14.95,10/13/19 08:33,"453 Walnut St, San Francisco, CA 94016" -271982,Apple Airpods Headphones,1,150,10/31/19 12:44,"586 Park St, Boston, MA 02215" -271983,AA Batteries (4-pack),1,3.84,10/13/19 20:43,"16 14th St, New York City, NY 10001" -271984,AA Batteries (4-pack),1,3.84,10/14/19 10:31,"372 Forest St, New York City, NY 10001" -271985,34in Ultrawide Monitor,1,379.99,10/25/19 20:28,"104 Chestnut St, New York City, NY 10001" -271986,iPhone,1,700,10/17/19 17:47,"637 12th St, Los Angeles, CA 90001" -271987,27in 4K Gaming Monitor,1,389.99,10/31/19 19:06,"425 Lake St, Austin, TX 73301" -271988,Wired Headphones,1,11.99,10/08/19 12:04,"709 11th St, Los Angeles, CA 90001" -271989,AAA Batteries (4-pack),1,2.99,10/07/19 12:36,"885 Jefferson St, Seattle, WA 98101" -271990,34in Ultrawide Monitor,1,379.99,10/04/19 16:14,"643 Center St, San Francisco, CA 94016" -271990,Wired Headphones,1,11.99,10/04/19 16:14,"643 Center St, San Francisco, CA 94016" -271991,Flatscreen TV,1,300,10/26/19 12:57,"860 Lincoln St, Atlanta, GA 30301" -271992,AAA Batteries (4-pack),1,2.99,10/12/19 19:46,"807 Ridge St, Boston, MA 02215" -271993,34in Ultrawide Monitor,1,379.99,10/31/19 13:30,"820 Ridge St, Seattle, WA 98101" -271994,Apple Airpods Headphones,1,150,10/21/19 13:11,"93 Walnut St, Austin, TX 73301" -271995,Apple Airpods Headphones,1,150,10/31/19 17:01,"974 5th St, New York City, NY 10001" -271996,iPhone,1,700,10/16/19 10:00,"17 Meadow St, New York City, NY 10001" -271997,USB-C Charging Cable,1,11.95,10/10/19 13:09,"53 Meadow St, Boston, MA 02215" -271998,iPhone,1,700,10/27/19 20:41,"395 Maple St, Portland, OR 97035" -271999,34in Ultrawide Monitor,1,379.99,10/19/19 20:39,"570 1st St, Dallas, TX 75001" -272000,Bose SoundSport Headphones,1,99.99,10/29/19 19:25,"623 River St, Los Angeles, CA 90001" -272001,Bose SoundSport Headphones,1,99.99,10/31/19 08:20,"553 11th St, Dallas, TX 75001" -272002,USB-C Charging Cable,1,11.95,10/19/19 21:55,"380 Sunset St, Seattle, WA 98101" -272002,AAA Batteries (4-pack),1,2.99,10/19/19 21:55,"380 Sunset St, Seattle, WA 98101" -272003,AA Batteries (4-pack),1,3.84,10/16/19 18:43,"151 Chestnut St, New York City, NY 10001" -272004,Bose SoundSport Headphones,1,99.99,10/23/19 14:04,"831 Adams St, New York City, NY 10001" -272005,AAA Batteries (4-pack),3,2.99,10/19/19 05:30,"712 Highland St, New York City, NY 10001" -272006,iPhone,1,700,10/13/19 14:13,"968 River St, Boston, MA 02215" -272007,Lightning Charging Cable,1,14.95,10/17/19 08:29,"594 Lincoln St, Atlanta, GA 30301" -272008,AA Batteries (4-pack),1,3.84,10/04/19 14:36,"508 Chestnut St, Austin, TX 73301" -272009,Wired Headphones,1,11.99,10/17/19 09:53,"183 7th St, New York City, NY 10001" -272010,Lightning Charging Cable,1,14.95,10/31/19 19:22,"281 11th St, Atlanta, GA 30301" -272011,iPhone,1,700,10/05/19 01:20,"240 Ridge St, Atlanta, GA 30301" -272011,Wired Headphones,1,11.99,10/05/19 01:20,"240 Ridge St, Atlanta, GA 30301" -272012,27in FHD Monitor,1,149.99,10/06/19 16:17,"788 12th St, San Francisco, CA 94016" -272013,AA Batteries (4-pack),1,3.84,10/29/19 18:08,"629 Elm St, Atlanta, GA 30301" -272014,Wired Headphones,1,11.99,10/31/19 12:05,"743 14th St, New York City, NY 10001" -272015,AA Batteries (4-pack),1,3.84,10/05/19 18:56,"836 1st St, Austin, TX 73301" -272016,34in Ultrawide Monitor,1,379.99,10/24/19 04:39,"747 7th St, Los Angeles, CA 90001" -272017,AA Batteries (4-pack),1,3.84,10/26/19 21:29,"345 Johnson St, Atlanta, GA 30301" -272018,Vareebadd Phone,1,400,10/26/19 12:57,"604 Highland St, Los Angeles, CA 90001" -272019,AA Batteries (4-pack),1,3.84,10/27/19 19:12,"276 Cherry St, San Francisco, CA 94016" -272020,Macbook Pro Laptop,1,1700,10/08/19 23:40,"917 5th St, San Francisco, CA 94016" -272021,Wired Headphones,1,11.99,10/25/19 11:47,"28 Ridge St, New York City, NY 10001" -272022,USB-C Charging Cable,1,11.95,10/18/19 07:18,"76 South St, San Francisco, CA 94016" -272023,iPhone,1,700,10/14/19 09:09,"840 Johnson St, Atlanta, GA 30301" -272024,Lightning Charging Cable,1,14.95,10/17/19 13:20,"750 14th St, Portland, OR 97035" -272025,Apple Airpods Headphones,1,150,10/04/19 22:56,"372 Jackson St, Dallas, TX 75001" -272026,AA Batteries (4-pack),1,3.84,10/03/19 21:18,"821 14th St, San Francisco, CA 94016" -,,,,, -272027,AAA Batteries (4-pack),1,2.99,10/18/19 11:55,"962 Sunset St, Atlanta, GA 30301" -272028,AAA Batteries (4-pack),1,2.99,10/26/19 10:31,"626 Walnut St, San Francisco, CA 94016" -272029,AA Batteries (4-pack),1,3.84,10/24/19 16:36,"711 Park St, Los Angeles, CA 90001" -272030,AA Batteries (4-pack),2,3.84,10/31/19 19:21,"575 Maple St, San Francisco, CA 94016" -272031,AA Batteries (4-pack),3,3.84,10/31/19 15:44,"9 Highland St, Boston, MA 02215" -272032,AAA Batteries (4-pack),3,2.99,10/01/19 20:15,"39 10th St, Austin, TX 73301" -272033,AA Batteries (4-pack),1,3.84,10/14/19 12:21,"719 6th St, New York City, NY 10001" -272034,Lightning Charging Cable,1,14.95,10/02/19 14:53,"520 10th St, Los Angeles, CA 90001" -272035,AA Batteries (4-pack),1,3.84,10/02/19 04:57,"180 Park St, Atlanta, GA 30301" -272036,AAA Batteries (4-pack),1,2.99,10/19/19 12:47,"657 Ridge St, Los Angeles, CA 90001" -272037,ThinkPad Laptop,1,999.99,10/07/19 06:58,"624 Cedar St, San Francisco, CA 94016" -272038,Macbook Pro Laptop,1,1700,10/30/19 12:46,"532 5th St, San Francisco, CA 94016" -272039,20in Monitor,1,109.99,10/14/19 18:39,"241 Jackson St, Los Angeles, CA 90001" -272040,AA Batteries (4-pack),1,3.84,10/30/19 19:58,"537 Cherry St, New York City, NY 10001" -272041,27in 4K Gaming Monitor,1,389.99,10/03/19 20:43,"908 Walnut St, Portland, OR 97035" -272042,Wired Headphones,1,11.99,10/29/19 14:28,"733 Washington St, Boston, MA 02215" -272043,20in Monitor,1,109.99,10/28/19 08:30,"187 Center St, Dallas, TX 75001" -272044,AAA Batteries (4-pack),3,2.99,10/21/19 13:43,"724 12th St, San Francisco, CA 94016" -272045,USB-C Charging Cable,1,11.95,10/06/19 13:13,"957 Washington St, San Francisco, CA 94016" -272046,Wired Headphones,1,11.99,10/12/19 12:42,"930 Lakeview St, Dallas, TX 75001" -272047,USB-C Charging Cable,1,11.95,10/28/19 18:13,"22 Sunset St, Los Angeles, CA 90001" -272048,Lightning Charging Cable,1,14.95,10/16/19 18:41,"997 Maple St, Austin, TX 73301" -272049,AA Batteries (4-pack),2,3.84,10/27/19 14:35,"244 Sunset St, Seattle, WA 98101" -272050,Lightning Charging Cable,1,14.95,10/08/19 11:45,"108 11th St, New York City, NY 10001" -272051,ThinkPad Laptop,1,999.99,10/08/19 12:28,"696 10th St, Portland, ME 04101" -272052,Wired Headphones,1,11.99,10/17/19 14:47,"620 Dogwood St, San Francisco, CA 94016" -272053,AA Batteries (4-pack),1,3.84,10/24/19 18:21,"261 Forest St, San Francisco, CA 94016" -272054,ThinkPad Laptop,1,999.99,10/06/19 23:39,"392 Hickory St, New York City, NY 10001" -272055,AAA Batteries (4-pack),2,2.99,10/01/19 07:02,"550 Spruce St, Boston, MA 02215" -272056,Apple Airpods Headphones,1,150,10/10/19 11:28,"99 Church St, New York City, NY 10001" -272057,Lightning Charging Cable,1,14.95,10/27/19 21:17,"684 Jackson St, San Francisco, CA 94016" -272057,iPhone,1,700,10/27/19 21:17,"684 Jackson St, San Francisco, CA 94016" -272058,Bose SoundSport Headphones,1,99.99,10/02/19 11:29,"454 West St, Seattle, WA 98101" -272059,USB-C Charging Cable,1,11.95,10/23/19 21:20,"809 Chestnut St, Austin, TX 73301" -272060,Wired Headphones,1,11.99,10/20/19 21:12,"568 Center St, Seattle, WA 98101" -272061,Apple Airpods Headphones,1,150,10/18/19 15:53,"212 Main St, Los Angeles, CA 90001" -272062,Apple Airpods Headphones,1,150,10/23/19 07:30,"936 Hill St, Los Angeles, CA 90001" -272063,Apple Airpods Headphones,1,150,10/31/19 07:17,"917 Lakeview St, San Francisco, CA 94016" -272064,Flatscreen TV,1,300,10/31/19 19:51,"371 5th St, New York City, NY 10001" -272065,iPhone,1,700,10/22/19 22:07,"902 Lake St, San Francisco, CA 94016" -272066,AAA Batteries (4-pack),1,2.99,10/23/19 07:06,"354 Lake St, Dallas, TX 75001" -272067,AAA Batteries (4-pack),1,2.99,10/11/19 22:13,"162 6th St, Austin, TX 73301" -272068,AAA Batteries (4-pack),2,2.99,10/06/19 13:28,"90 14th St, Austin, TX 73301" -272069,Macbook Pro Laptop,1,1700,10/16/19 19:58,"570 West St, San Francisco, CA 94016" -272070,27in 4K Gaming Monitor,1,389.99,10/02/19 18:02,"90 Jefferson St, New York City, NY 10001" -272071,Wired Headphones,1,11.99,10/13/19 10:16,"364 Maple St, San Francisco, CA 94016" -272072,ThinkPad Laptop,1,999.99,10/07/19 18:05,"643 Pine St, Los Angeles, CA 90001" -272073,Apple Airpods Headphones,1,150,10/27/19 13:47,"999 West St, Boston, MA 02215" -272074,AAA Batteries (4-pack),1,2.99,10/02/19 19:14,"491 Johnson St, Dallas, TX 75001" -272075,Wired Headphones,1,11.99,10/16/19 19:13,"891 8th St, Los Angeles, CA 90001" -272076,USB-C Charging Cable,1,11.95,10/25/19 21:15,"256 Forest St, Boston, MA 02215" -272077,AAA Batteries (4-pack),1,2.99,10/03/19 17:50,"649 Pine St, Boston, MA 02215" -272078,USB-C Charging Cable,1,11.95,10/11/19 14:23,"929 Wilson St, Boston, MA 02215" -272079,ThinkPad Laptop,1,999.99,10/02/19 08:31,"901 River St, Austin, TX 73301" -272080,AAA Batteries (4-pack),1,2.99,10/08/19 12:25,"281 River St, San Francisco, CA 94016" -272081,34in Ultrawide Monitor,1,379.99,10/15/19 11:12,"752 West St, New York City, NY 10001" -272082,Bose SoundSport Headphones,1,99.99,10/11/19 14:38,"908 Lakeview St, Seattle, WA 98101" -272083,27in FHD Monitor,1,149.99,10/09/19 16:43,"816 14th St, Los Angeles, CA 90001" -272084,Lightning Charging Cable,1,14.95,10/16/19 03:33,"911 Pine St, New York City, NY 10001" -272085,Apple Airpods Headphones,1,150,10/03/19 17:48,"959 Meadow St, Seattle, WA 98101" -272086,Google Phone,1,600,10/20/19 12:14,"333 North St, San Francisco, CA 94016" -272087,USB-C Charging Cable,1,11.95,10/30/19 13:50,"272 Center St, Portland, ME 04101" -272088,AAA Batteries (4-pack),2,2.99,10/01/19 13:13,"299 11th St, Boston, MA 02215" -272089,27in FHD Monitor,1,149.99,10/14/19 19:58,"493 Johnson St, San Francisco, CA 94016" -272090,AAA Batteries (4-pack),1,2.99,10/30/19 22:10,"596 Willow St, Boston, MA 02215" -272091,Lightning Charging Cable,1,14.95,10/12/19 11:16,"333 9th St, Atlanta, GA 30301" -272092,iPhone,1,700,10/04/19 14:25,"267 Church St, Seattle, WA 98101" -272092,Lightning Charging Cable,1,14.95,10/04/19 14:25,"267 Church St, Seattle, WA 98101" -272093,iPhone,1,700,10/19/19 02:02,"378 Johnson St, Atlanta, GA 30301" -272093,Lightning Charging Cable,1,14.95,10/19/19 02:02,"378 Johnson St, Atlanta, GA 30301" -272094,AAA Batteries (4-pack),1,2.99,10/26/19 12:12,"82 Forest St, San Francisco, CA 94016" -272095,ThinkPad Laptop,1,999.99,10/15/19 19:54,"757 Main St, Dallas, TX 75001" -272096,AAA Batteries (4-pack),4,2.99,10/23/19 12:49,"269 Washington St, San Francisco, CA 94016" -272097,AAA Batteries (4-pack),1,2.99,10/31/19 10:24,"596 14th St, Seattle, WA 98101" -272098,Bose SoundSport Headphones,1,99.99,10/03/19 12:26,"145 7th St, Seattle, WA 98101" -272099,Google Phone,1,600,10/29/19 13:37,"589 Dogwood St, Dallas, TX 75001" -272100,Lightning Charging Cable,1,14.95,10/12/19 16:35,"332 Park St, San Francisco, CA 94016" -272101,AA Batteries (4-pack),2,3.84,10/19/19 13:40,"164 11th St, San Francisco, CA 94016" -272102,Lightning Charging Cable,1,14.95,10/21/19 13:59,"171 North St, Los Angeles, CA 90001" -272103,AAA Batteries (4-pack),2,2.99,10/25/19 16:52,"506 11th St, Austin, TX 73301" -272104,AA Batteries (4-pack),1,3.84,10/04/19 09:52,"82 Jefferson St, San Francisco, CA 94016" -272105,Lightning Charging Cable,1,14.95,10/08/19 17:04,"902 Lincoln St, San Francisco, CA 94016" -272106,AA Batteries (4-pack),2,3.84,10/21/19 15:05,"707 6th St, New York City, NY 10001" -272107,34in Ultrawide Monitor,1,379.99,10/01/19 14:33,"80 Pine St, New York City, NY 10001" -272108,Lightning Charging Cable,1,14.95,10/17/19 18:16,"616 Willow St, Boston, MA 02215" -272109,Wired Headphones,1,11.99,10/27/19 19:05,"30 Jackson St, Seattle, WA 98101" -272110,27in FHD Monitor,1,149.99,10/10/19 19:57,"310 Spruce St, New York City, NY 10001" -272111,Lightning Charging Cable,1,14.95,10/04/19 21:30,"695 Dogwood St, New York City, NY 10001" -272112,USB-C Charging Cable,1,11.95,10/30/19 15:40,"523 Jefferson St, Portland, OR 97035" -272113,Lightning Charging Cable,1,14.95,10/26/19 21:05,"127 Maple St, San Francisco, CA 94016" -272114,Lightning Charging Cable,1,14.95,10/26/19 12:58,"722 6th St, Atlanta, GA 30301" -272115,27in FHD Monitor,1,149.99,10/01/19 09:48,"43 West St, New York City, NY 10001" -272116,AAA Batteries (4-pack),1,2.99,10/28/19 11:55,"852 South St, San Francisco, CA 94016" -272117,Apple Airpods Headphones,1,150,10/18/19 11:09,"291 2nd St, Portland, OR 97035" -272118,Wired Headphones,1,11.99,10/13/19 22:33,"366 Forest St, San Francisco, CA 94016" -272119,AAA Batteries (4-pack),2,2.99,10/24/19 17:32,"398 13th St, San Francisco, CA 94016" -272120,Bose SoundSport Headphones,1,99.99,10/10/19 19:53,"619 Forest St, Portland, OR 97035" -272121,Google Phone,1,600,10/05/19 01:20,"551 Johnson St, Dallas, TX 75001" -272121,Wired Headphones,2,11.99,10/05/19 01:20,"551 Johnson St, Dallas, TX 75001" -272122,AAA Batteries (4-pack),1,2.99,10/12/19 17:49,"859 Cedar St, Los Angeles, CA 90001" -272123,Wired Headphones,1,11.99,10/22/19 00:50,"677 Jefferson St, New York City, NY 10001" -272124,20in Monitor,1,109.99,10/27/19 20:10,"795 Sunset St, Los Angeles, CA 90001" -272125,Wired Headphones,1,11.99,10/05/19 19:46,"675 Ridge St, San Francisco, CA 94016" -272126,AAA Batteries (4-pack),2,2.99,10/07/19 00:42,"520 11th St, Portland, OR 97035" -272127,Wired Headphones,1,11.99,10/20/19 10:34,"128 12th St, New York City, NY 10001" -272128,AAA Batteries (4-pack),2,2.99,10/06/19 15:38,"600 Chestnut St, Los Angeles, CA 90001" -272129,AA Batteries (4-pack),3,3.84,10/23/19 01:22,"414 5th St, San Francisco, CA 94016" -272130,Wired Headphones,1,11.99,10/30/19 09:47,"872 Lake St, Seattle, WA 98101" -272131,Google Phone,1,600,10/29/19 10:13,"361 Chestnut St, San Francisco, CA 94016" -272132,AA Batteries (4-pack),2,3.84,10/03/19 12:23,"78 Lake St, Portland, OR 97035" -272132,27in FHD Monitor,1,149.99,10/03/19 12:23,"78 Lake St, Portland, OR 97035" -272133,USB-C Charging Cable,1,11.95,10/09/19 11:37,"634 Church St, Atlanta, GA 30301" -272134,USB-C Charging Cable,1,11.95,10/04/19 11:14,"379 1st St, New York City, NY 10001" -272135,Lightning Charging Cable,1,14.95,10/08/19 13:02,"689 Dogwood St, Austin, TX 73301" -272136,Bose SoundSport Headphones,1,99.99,10/16/19 11:23,"345 Church St, Boston, MA 02215" -272137,USB-C Charging Cable,1,11.95,10/02/19 20:32,"265 Lincoln St, San Francisco, CA 94016" -272138,Lightning Charging Cable,1,14.95,10/05/19 12:41,"768 Cedar St, Los Angeles, CA 90001" -272139,Lightning Charging Cable,1,14.95,10/07/19 18:47,"796 Cherry St, San Francisco, CA 94016" -272140,Lightning Charging Cable,1,14.95,10/26/19 23:51,"951 Main St, Seattle, WA 98101" -272141,AA Batteries (4-pack),2,3.84,10/08/19 20:58,"608 13th St, Los Angeles, CA 90001" -272142,AA Batteries (4-pack),1,3.84,10/15/19 19:32,"220 Lakeview St, New York City, NY 10001" -272143,AA Batteries (4-pack),1,3.84,10/10/19 10:04,"932 14th St, San Francisco, CA 94016" -272144,AAA Batteries (4-pack),4,2.99,10/27/19 19:52,"809 Walnut St, New York City, NY 10001" -272145,Bose SoundSport Headphones,1,99.99,10/25/19 19:18,"946 Washington St, Portland, OR 97035" -272146,Wired Headphones,1,11.99,10/12/19 10:26,"220 Spruce St, Boston, MA 02215" -272147,Apple Airpods Headphones,1,150,10/10/19 15:41,"378 8th St, Los Angeles, CA 90001" -272148,USB-C Charging Cable,1,11.95,10/22/19 10:14,"336 Lincoln St, New York City, NY 10001" -272149,USB-C Charging Cable,1,11.95,10/16/19 10:38,"747 5th St, New York City, NY 10001" -272150,AAA Batteries (4-pack),1,2.99,10/01/19 14:55,"783 Park St, Boston, MA 02215" -272151,Macbook Pro Laptop,1,1700,10/17/19 12:26,"609 Dogwood St, Seattle, WA 98101" -272152,Lightning Charging Cable,1,14.95,10/15/19 20:54,"716 2nd St, Boston, MA 02215" -272153,AAA Batteries (4-pack),2,2.99,10/19/19 19:37,"511 Madison St, San Francisco, CA 94016" -272154,Google Phone,1,600,10/01/19 10:01,"480 2nd St, San Francisco, CA 94016" -272154,USB-C Charging Cable,2,11.95,10/01/19 10:01,"480 2nd St, San Francisco, CA 94016" -272155,Macbook Pro Laptop,1,1700,10/29/19 14:20,"87 Park St, Boston, MA 02215" -272156,AA Batteries (4-pack),2,3.84,10/28/19 17:26,"876 Main St, Dallas, TX 75001" -272157,Lightning Charging Cable,1,14.95,10/05/19 15:03,"740 9th St, Atlanta, GA 30301" -272158,USB-C Charging Cable,1,11.95,10/03/19 17:15,"751 7th St, Atlanta, GA 30301" -272159,AA Batteries (4-pack),1,3.84,10/01/19 19:43,"214 Jefferson St, San Francisco, CA 94016" -272160,Apple Airpods Headphones,1,150,10/22/19 08:05,"164 Maple St, Seattle, WA 98101" -272161,ThinkPad Laptop,1,999.99,10/14/19 23:40,"536 Wilson St, New York City, NY 10001" -272162,Bose SoundSport Headphones,1,99.99,10/12/19 13:14,"310 8th St, Los Angeles, CA 90001" -,,,,, -272163,27in FHD Monitor,1,149.99,10/07/19 17:37,"910 Spruce St, San Francisco, CA 94016" -272164,Macbook Pro Laptop,1,1700,10/20/19 09:15,"315 Chestnut St, Portland, OR 97035" -272165,Bose SoundSport Headphones,1,99.99,10/13/19 13:47,"135 Park St, New York City, NY 10001" -272166,AA Batteries (4-pack),2,3.84,10/21/19 15:22,"875 Adams St, Portland, ME 04101" -272167,Lightning Charging Cable,1,14.95,10/05/19 12:00,"895 11th St, Portland, OR 97035" -272168,Apple Airpods Headphones,1,150,10/10/19 15:39,"77 River St, Boston, MA 02215" -272169,AA Batteries (4-pack),1,3.84,10/30/19 16:18,"668 Willow St, Atlanta, GA 30301" -272170,AA Batteries (4-pack),1,3.84,10/13/19 13:52,"676 Johnson St, San Francisco, CA 94016" -272171,AA Batteries (4-pack),2,3.84,10/15/19 13:02,"648 4th St, Boston, MA 02215" -,,,,, -272172,Macbook Pro Laptop,1,1700,10/17/19 12:34,"859 North St, San Francisco, CA 94016" -272173,34in Ultrawide Monitor,1,379.99,10/09/19 18:54,"390 South St, San Francisco, CA 94016" -272174,iPhone,1,700,10/22/19 13:06,"472 Park St, New York City, NY 10001" -272175,27in 4K Gaming Monitor,1,389.99,10/07/19 13:46,"883 Walnut St, Los Angeles, CA 90001" -272176,AA Batteries (4-pack),2,3.84,10/02/19 15:37,"950 9th St, San Francisco, CA 94016" -272177,Apple Airpods Headphones,1,150,10/10/19 09:32,"2 Johnson St, Austin, TX 73301" -272178,Lightning Charging Cable,1,14.95,10/27/19 10:25,"295 Hill St, New York City, NY 10001" -272179,AAA Batteries (4-pack),3,2.99,10/19/19 18:05,"120 Church St, Dallas, TX 75001" -272180,AA Batteries (4-pack),1,3.84,10/02/19 17:04,"190 River St, Los Angeles, CA 90001" -272181,20in Monitor,1,109.99,10/18/19 14:25,"569 6th St, San Francisco, CA 94016" -272182,ThinkPad Laptop,1,999.99,10/31/19 15:53,"768 Park St, Dallas, TX 75001" -272183,AA Batteries (4-pack),1,3.84,10/24/19 23:49,"860 Sunset St, Los Angeles, CA 90001" -272184,USB-C Charging Cable,1,11.95,10/22/19 21:25,"250 Highland St, San Francisco, CA 94016" -272185,AA Batteries (4-pack),1,3.84,10/30/19 15:38,"742 Cherry St, San Francisco, CA 94016" -272186,ThinkPad Laptop,1,999.99,10/06/19 11:54,"260 Jackson St, Austin, TX 73301" -272187,Wired Headphones,1,11.99,10/07/19 19:53,"929 4th St, Dallas, TX 75001" -272188,Wired Headphones,1,11.99,10/18/19 10:05,"134 Elm St, Los Angeles, CA 90001" -272189,USB-C Charging Cable,1,11.95,10/15/19 17:19,"683 South St, Austin, TX 73301" -272190,34in Ultrawide Monitor,1,379.99,10/30/19 21:54,"356 Lake St, Los Angeles, CA 90001" -272191,USB-C Charging Cable,1,11.95,10/22/19 19:42,"118 Wilson St, Portland, OR 97035" -272192,USB-C Charging Cable,1,11.95,10/31/19 11:54,"752 13th St, Seattle, WA 98101" -272193,Vareebadd Phone,1,400,10/07/19 07:56,"265 Main St, Boston, MA 02215" -272194,AAA Batteries (4-pack),1,2.99,10/02/19 17:32,"186 2nd St, San Francisco, CA 94016" -272194,Lightning Charging Cable,1,14.95,10/02/19 17:32,"186 2nd St, San Francisco, CA 94016" -272195,ThinkPad Laptop,1,999.99,10/30/19 07:34,"852 Jefferson St, Dallas, TX 75001" -272196,Wired Headphones,1,11.99,10/06/19 16:43,"105 1st St, Boston, MA 02215" -272197,27in FHD Monitor,1,149.99,10/08/19 19:48,"608 Jackson St, San Francisco, CA 94016" -272198,iPhone,1,700,10/28/19 15:04,"587 Hill St, Los Angeles, CA 90001" -272198,Lightning Charging Cable,1,14.95,10/28/19 15:04,"587 Hill St, Los Angeles, CA 90001" -272199,AAA Batteries (4-pack),2,2.99,10/04/19 20:34,"428 9th St, Dallas, TX 75001" -272200,Wired Headphones,1,11.99,10/03/19 10:05,"95 Washington St, Atlanta, GA 30301" -272201,Apple Airpods Headphones,1,150,10/17/19 11:36,"567 Washington St, Dallas, TX 75001" -272202,USB-C Charging Cable,1,11.95,10/20/19 18:16,"526 Maple St, Atlanta, GA 30301" -272203,USB-C Charging Cable,1,11.95,10/23/19 23:08,"30 Lincoln St, Portland, OR 97035" -272204,ThinkPad Laptop,1,999.99,10/12/19 04:45,"31 Church St, Boston, MA 02215" -272205,USB-C Charging Cable,1,11.95,10/06/19 18:27,"202 Meadow St, Boston, MA 02215" -272206,Macbook Pro Laptop,1,1700,10/25/19 20:21,"939 Lake St, Los Angeles, CA 90001" -272207,USB-C Charging Cable,2,11.95,10/16/19 09:29,"681 Church St, San Francisco, CA 94016" -272208,Flatscreen TV,1,300,10/20/19 18:21,"956 2nd St, Atlanta, GA 30301" -272209,AA Batteries (4-pack),2,3.84,10/19/19 22:32,"14 Sunset St, Portland, ME 04101" -272210,Lightning Charging Cable,1,14.95,10/24/19 21:55,"199 North St, San Francisco, CA 94016" -272211,Bose SoundSport Headphones,1,99.99,10/10/19 16:00,"853 River St, Boston, MA 02215" -272212,Google Phone,1,600,10/06/19 03:16,"311 Willow St, Atlanta, GA 30301" -272213,Lightning Charging Cable,1,14.95,10/18/19 20:08,"750 Madison St, New York City, NY 10001" -272214,Lightning Charging Cable,1,14.95,10/13/19 20:53,"614 12th St, Los Angeles, CA 90001" -272215,Lightning Charging Cable,1,14.95,10/10/19 12:58,"371 9th St, San Francisco, CA 94016" -272216,Wired Headphones,1,11.99,10/22/19 08:43,"134 West St, Portland, OR 97035" -272217,27in 4K Gaming Monitor,1,389.99,10/31/19 16:37,"48 Church St, New York City, NY 10001" -272218,Bose SoundSport Headphones,1,99.99,10/06/19 19:30,"611 6th St, Los Angeles, CA 90001" -272219,AAA Batteries (4-pack),1,2.99,10/22/19 13:40,"986 8th St, Los Angeles, CA 90001" -272220,34in Ultrawide Monitor,1,379.99,10/07/19 20:34,"219 River St, Dallas, TX 75001" -272221,27in 4K Gaming Monitor,1,389.99,10/01/19 13:05,"860 River St, Austin, TX 73301" -272222,AAA Batteries (4-pack),2,2.99,10/24/19 10:36,"145 Adams St, San Francisco, CA 94016" -272223,AA Batteries (4-pack),1,3.84,10/19/19 21:54,"622 6th St, Portland, OR 97035" -272224,Apple Airpods Headphones,1,150,10/29/19 20:58,"969 5th St, Dallas, TX 75001" -272225,AAA Batteries (4-pack),2,2.99,10/08/19 19:55,"332 Adams St, San Francisco, CA 94016" -272226,Apple Airpods Headphones,1,150,10/07/19 13:52,"397 Ridge St, New York City, NY 10001" -272227,Wired Headphones,2,11.99,10/05/19 22:44,"510 1st St, Los Angeles, CA 90001" -272228,AAA Batteries (4-pack),4,2.99,10/16/19 14:05,"974 Johnson St, Los Angeles, CA 90001" -272229,27in FHD Monitor,1,149.99,10/31/19 18:03,"305 Madison St, New York City, NY 10001" -272230,Flatscreen TV,1,300,10/25/19 21:35,"142 Sunset St, Los Angeles, CA 90001" -272231,Apple Airpods Headphones,1,150,10/27/19 08:25,"887 Madison St, Los Angeles, CA 90001" -272232,AAA Batteries (4-pack),1,2.99,10/24/19 12:12,"584 Hickory St, Seattle, WA 98101" -272233,iPhone,1,700,10/16/19 12:10,"946 7th St, Atlanta, GA 30301" -272234,Apple Airpods Headphones,1,150,10/14/19 10:20,"976 8th St, Boston, MA 02215" -272235,34in Ultrawide Monitor,1,379.99,10/03/19 09:07,"115 Jackson St, San Francisco, CA 94016" -272236,AAA Batteries (4-pack),1,2.99,10/04/19 08:13,"359 Willow St, Seattle, WA 98101" -272237,Google Phone,1,600,10/11/19 13:55,"914 Washington St, San Francisco, CA 94016" -272237,USB-C Charging Cable,1,11.95,10/11/19 13:55,"914 Washington St, San Francisco, CA 94016" -272238,AA Batteries (4-pack),1,3.84,10/27/19 15:44,"405 Lakeview St, New York City, NY 10001" -272239,Apple Airpods Headphones,1,150,10/19/19 10:13,"775 Madison St, San Francisco, CA 94016" -272240,Wired Headphones,1,11.99,10/09/19 10:13,"248 Jackson St, Boston, MA 02215" -272241,Lightning Charging Cable,1,14.95,10/26/19 22:33,"643 North St, Los Angeles, CA 90001" -272242,Google Phone,1,600,10/14/19 11:48,"295 Spruce St, San Francisco, CA 94016" -272243,Apple Airpods Headphones,1,150,10/25/19 21:53,"533 Lakeview St, Austin, TX 73301" -272244,34in Ultrawide Monitor,1,379.99,10/04/19 12:23,"294 1st St, Los Angeles, CA 90001" -272245,Bose SoundSport Headphones,1,99.99,10/16/19 00:57,"521 5th St, San Francisco, CA 94016" -272246,20in Monitor,1,109.99,10/17/19 15:33,"460 Jackson St, Atlanta, GA 30301" -272247,ThinkPad Laptop,1,999.99,10/19/19 20:06,"818 Washington St, Los Angeles, CA 90001" -272248,USB-C Charging Cable,1,11.95,10/28/19 17:09,"299 West St, New York City, NY 10001" -272249,27in 4K Gaming Monitor,1,389.99,10/27/19 23:14,"364 4th St, Boston, MA 02215" -272250,AAA Batteries (4-pack),1,2.99,10/08/19 08:45,"767 River St, San Francisco, CA 94016" -272251,34in Ultrawide Monitor,1,379.99,10/09/19 16:31,"719 Jefferson St, Los Angeles, CA 90001" -272252,Wired Headphones,1,11.99,10/01/19 16:22,"441 Spruce St, Dallas, TX 75001" -272253,Bose SoundSport Headphones,1,99.99,10/29/19 18:44,"13 Park St, Los Angeles, CA 90001" -272254,AAA Batteries (4-pack),4,2.99,10/30/19 18:10,"93 Pine St, Dallas, TX 75001" -272255,USB-C Charging Cable,1,11.95,10/03/19 21:57,"195 Highland St, Seattle, WA 98101" -272256,27in 4K Gaming Monitor,1,389.99,10/02/19 20:35,"14 Johnson St, San Francisco, CA 94016" -272257,Wired Headphones,1,11.99,10/04/19 17:10,"24 10th St, Boston, MA 02215" -272258,ThinkPad Laptop,1,999.99,10/30/19 15:37,"83 Lakeview St, San Francisco, CA 94016" -272259,34in Ultrawide Monitor,1,379.99,10/31/19 07:58,"981 Main St, Los Angeles, CA 90001" -272260,Lightning Charging Cable,1,14.95,10/27/19 12:17,"542 Pine St, Portland, OR 97035" -272261,ThinkPad Laptop,1,999.99,10/07/19 20:40,"746 Ridge St, San Francisco, CA 94016" -272262,Wired Headphones,1,11.99,10/14/19 12:04,"751 6th St, Boston, MA 02215" -272263,Lightning Charging Cable,1,14.95,10/19/19 19:04,"924 Lake St, Portland, ME 04101" -272264,Lightning Charging Cable,1,14.95,10/24/19 01:35,"164 12th St, Seattle, WA 98101" -272265,27in FHD Monitor,1,149.99,10/11/19 11:30,"561 Hickory St, Seattle, WA 98101" -272266,Lightning Charging Cable,1,14.95,10/25/19 17:13,"688 Madison St, Atlanta, GA 30301" -272267,27in FHD Monitor,1,149.99,10/28/19 19:24,"311 Wilson St, Los Angeles, CA 90001" -272268,iPhone,1,700,10/15/19 06:03,"414 Washington St, Los Angeles, CA 90001" -272269,Lightning Charging Cable,1,14.95,10/23/19 11:24,"641 Hill St, Los Angeles, CA 90001" -272270,Apple Airpods Headphones,1,150,10/27/19 07:52,"626 10th St, Portland, ME 04101" -272271,Wired Headphones,2,11.99,10/11/19 13:42,"612 Maple St, New York City, NY 10001" -272272,AA Batteries (4-pack),2,3.84,10/12/19 17:43,"803 Jefferson St, Austin, TX 73301" -272273,Apple Airpods Headphones,1,150,10/09/19 12:35,"99 Spruce St, San Francisco, CA 94016" -272274,Apple Airpods Headphones,1,150,10/08/19 18:18,"926 Ridge St, New York City, NY 10001" -272275,Google Phone,1,600,10/13/19 15:34,"136 Elm St, Portland, OR 97035" -272276,Bose SoundSport Headphones,1,99.99,10/21/19 15:03,"568 Adams St, San Francisco, CA 94016" -272277,Apple Airpods Headphones,1,150,10/05/19 10:08,"250 Lakeview St, San Francisco, CA 94016" -272278,AA Batteries (4-pack),1,3.84,10/12/19 18:37,"969 Pine St, New York City, NY 10001" -272279,Apple Airpods Headphones,1,150,10/17/19 19:33,"580 Ridge St, San Francisco, CA 94016" -272279,Bose SoundSport Headphones,1,99.99,10/17/19 19:33,"580 Ridge St, San Francisco, CA 94016" -272280,27in 4K Gaming Monitor,1,389.99,10/11/19 22:11,"283 10th St, Los Angeles, CA 90001" -272281,34in Ultrawide Monitor,1,379.99,10/27/19 07:34,"431 Cedar St, Los Angeles, CA 90001" -272282,AAA Batteries (4-pack),1,2.99,10/29/19 21:21,"551 Hickory St, Boston, MA 02215" -272283,Flatscreen TV,1,300,10/26/19 20:17,"326 Wilson St, Atlanta, GA 30301" -272284,Apple Airpods Headphones,1,150,10/19/19 16:43,"544 Cherry St, Seattle, WA 98101" -272285,AA Batteries (4-pack),1,3.84,10/11/19 14:02,"903 6th St, Seattle, WA 98101" -272286,27in FHD Monitor,1,149.99,10/23/19 09:18,"855 Johnson St, New York City, NY 10001" -272286,Lightning Charging Cable,1,14.95,10/23/19 09:18,"855 Johnson St, New York City, NY 10001" -272287,Google Phone,1,600,10/05/19 22:24,"546 Sunset St, New York City, NY 10001" -272288,27in FHD Monitor,1,149.99,10/17/19 19:54,"456 4th St, San Francisco, CA 94016" -272288,27in FHD Monitor,1,149.99,10/17/19 19:54,"456 4th St, San Francisco, CA 94016" -272289,AAA Batteries (4-pack),2,2.99,10/23/19 10:49,"238 Maple St, Atlanta, GA 30301" -272290,Lightning Charging Cable,1,14.95,10/29/19 18:14,"561 Madison St, New York City, NY 10001" -272291,34in Ultrawide Monitor,1,379.99,10/20/19 19:24,"263 7th St, Austin, TX 73301" -272292,Wired Headphones,1,11.99,10/10/19 19:37,"917 Spruce St, Dallas, TX 75001" -272293,AAA Batteries (4-pack),1,2.99,10/08/19 22:56,"172 11th St, New York City, NY 10001" -272294,Wired Headphones,1,11.99,10/17/19 16:29,"468 Pine St, Portland, OR 97035" -272295,AAA Batteries (4-pack),1,2.99,10/02/19 10:12,"326 Sunset St, Atlanta, GA 30301" -272296,20in Monitor,1,109.99,10/16/19 15:01,"428 Jackson St, Boston, MA 02215" -272297,Lightning Charging Cable,1,14.95,10/23/19 23:28,"447 10th St, Los Angeles, CA 90001" -272298,20in Monitor,1,109.99,10/09/19 11:27,"394 4th St, Dallas, TX 75001" -272299,LG Dryer,1,600.0,10/20/19 22:49,"400 8th St, Portland, OR 97035" -272300,AA Batteries (4-pack),1,3.84,10/18/19 21:36,"694 Highland St, Los Angeles, CA 90001" -272301,Lightning Charging Cable,1,14.95,10/23/19 00:02,"742 7th St, San Francisco, CA 94016" -272302,Macbook Pro Laptop,1,1700,10/25/19 14:02,"698 South St, San Francisco, CA 94016" -272303,AAA Batteries (4-pack),1,2.99,10/28/19 13:19,"810 Hill St, New York City, NY 10001" -272304,iPhone,1,700,10/24/19 18:50,"343 Lakeview St, San Francisco, CA 94016" -272305,34in Ultrawide Monitor,1,379.99,10/11/19 12:26,"911 Forest St, Seattle, WA 98101" -272306,AA Batteries (4-pack),1,3.84,10/11/19 13:09,"461 South St, Atlanta, GA 30301" -272307,Apple Airpods Headphones,1,150,10/03/19 11:24,"792 5th St, New York City, NY 10001" -272308,Wired Headphones,2,11.99,10/22/19 18:47,"846 5th St, New York City, NY 10001" -272309,iPhone,1,700,10/01/19 11:58,"238 Maple St, Atlanta, GA 30301" -272310,Lightning Charging Cable,1,14.95,10/10/19 13:00,"242 River St, Austin, TX 73301" -272311,USB-C Charging Cable,2,11.95,10/22/19 19:59,"188 2nd St, Dallas, TX 75001" -272312,USB-C Charging Cable,3,11.95,10/26/19 14:16,"917 Dogwood St, Los Angeles, CA 90001" -272313,AA Batteries (4-pack),1,3.84,10/07/19 13:54,"630 Maple St, Los Angeles, CA 90001" -272314,27in 4K Gaming Monitor,1,389.99,10/05/19 16:28,"800 Park St, San Francisco, CA 94016" -272315,Apple Airpods Headphones,1,150,10/31/19 09:41,"638 Church St, Los Angeles, CA 90001" -272316,Wired Headphones,1,11.99,10/05/19 17:16,"292 Cedar St, Dallas, TX 75001" -272317,AAA Batteries (4-pack),2,2.99,10/04/19 17:38,"793 Spruce St, Atlanta, GA 30301" -272318,AAA Batteries (4-pack),1,2.99,10/23/19 21:12,"106 Cherry St, Atlanta, GA 30301" -272319,AAA Batteries (4-pack),3,2.99,10/29/19 14:26,"807 Walnut St, San Francisco, CA 94016" -272320,AAA Batteries (4-pack),1,2.99,10/24/19 19:09,"240 Johnson St, Los Angeles, CA 90001" -272321,Lightning Charging Cable,1,14.95,10/17/19 11:33,"707 Johnson St, San Francisco, CA 94016" -272322,Flatscreen TV,1,300,10/10/19 09:09,"996 Adams St, San Francisco, CA 94016" -272323,AA Batteries (4-pack),4,3.84,10/22/19 19:32,"307 4th St, Portland, OR 97035" -272324,AA Batteries (4-pack),1,3.84,10/07/19 15:29,"353 South St, Boston, MA 02215" -272325,20in Monitor,1,109.99,10/19/19 08:28,"849 4th St, New York City, NY 10001" -272326,Vareebadd Phone,1,400,10/28/19 19:39,"692 Main St, San Francisco, CA 94016" -272327,Lightning Charging Cable,1,14.95,10/19/19 01:07,"372 Church St, New York City, NY 10001" -272328,USB-C Charging Cable,1,11.95,10/13/19 15:13,"381 Meadow St, San Francisco, CA 94016" -272329,27in FHD Monitor,1,149.99,10/04/19 11:15,"544 Adams St, Dallas, TX 75001" -272330,Bose SoundSport Headphones,1,99.99,10/28/19 19:11,"899 West St, New York City, NY 10001" -272331,AA Batteries (4-pack),1,3.84,10/23/19 17:17,"339 Jackson St, Boston, MA 02215" -272332,iPhone,1,700,10/03/19 09:03,"81 Sunset St, San Francisco, CA 94016" -272332,Wired Headphones,1,11.99,10/03/19 09:03,"81 Sunset St, San Francisco, CA 94016" -272333,Google Phone,1,600,10/30/19 11:18,"952 Pine St, Portland, OR 97035" -272333,USB-C Charging Cable,1,11.95,10/30/19 11:18,"952 Pine St, Portland, OR 97035" -272334,AA Batteries (4-pack),3,3.84,10/02/19 15:07,"173 Dogwood St, Seattle, WA 98101" -272335,Bose SoundSport Headphones,1,99.99,10/12/19 12:58,"969 Lakeview St, Atlanta, GA 30301" -272336,Vareebadd Phone,1,400,10/26/19 00:28,"890 5th St, San Francisco, CA 94016" -272337,USB-C Charging Cable,1,11.95,10/12/19 11:23,"677 14th St, Dallas, TX 75001" -272338,AAA Batteries (4-pack),1,2.99,10/27/19 21:21,"335 Willow St, Los Angeles, CA 90001" -272339,Wired Headphones,1,11.99,10/14/19 10:16,"619 Pine St, Boston, MA 02215" -272340,27in FHD Monitor,1,149.99,10/27/19 09:14,"748 Cedar St, Portland, OR 97035" -272341,AA Batteries (4-pack),1,3.84,10/22/19 07:40,"641 Jefferson St, Boston, MA 02215" -272342,34in Ultrawide Monitor,1,379.99,10/29/19 13:58,"528 Forest St, Los Angeles, CA 90001" -272343,Apple Airpods Headphones,1,150,10/15/19 21:27,"540 Wilson St, Atlanta, GA 30301" -272344,AA Batteries (4-pack),1,3.84,10/23/19 11:19,"898 12th St, Atlanta, GA 30301" -272345,ThinkPad Laptop,1,999.99,10/22/19 08:33,"473 Cedar St, Seattle, WA 98101" -272346,Apple Airpods Headphones,1,150,10/03/19 11:54,"945 Jackson St, Portland, OR 97035" -272347,20in Monitor,1,109.99,10/01/19 07:47,"621 South St, San Francisco, CA 94016" -272348,Wired Headphones,1,11.99,10/28/19 09:07,"835 Lakeview St, Boston, MA 02215" -272349,27in 4K Gaming Monitor,1,389.99,10/21/19 07:59,"701 Madison St, Boston, MA 02215" -272350,27in FHD Monitor,1,149.99,10/13/19 12:47,"638 6th St, Portland, OR 97035" -272351,Bose SoundSport Headphones,1,99.99,10/08/19 17:12,"765 Cherry St, Dallas, TX 75001" -272352,Wired Headphones,2,11.99,10/06/19 11:48,"111 2nd St, Portland, ME 04101" -272353,Lightning Charging Cable,1,14.95,10/02/19 17:49,"183 Spruce St, San Francisco, CA 94016" -272354,Wired Headphones,1,11.99,10/16/19 13:33,"406 Lincoln St, Seattle, WA 98101" -272355,Lightning Charging Cable,1,14.95,10/15/19 21:55,"5 River St, Seattle, WA 98101" -272356,Bose SoundSport Headphones,1,99.99,10/27/19 22:51,"69 South St, New York City, NY 10001" -272357,AA Batteries (4-pack),1,3.84,10/12/19 10:02,"944 Ridge St, Seattle, WA 98101" -272358,USB-C Charging Cable,1,11.95,10/28/19 14:00,"155 Adams St, San Francisco, CA 94016" -272359,Bose SoundSport Headphones,1,99.99,10/13/19 10:34,"855 Jackson St, San Francisco, CA 94016" -272360,iPhone,1,700,10/04/19 19:47,"6 Lakeview St, Atlanta, GA 30301" -272361,LG Dryer,1,600.0,10/12/19 18:42,"288 Church St, Austin, TX 73301" -272362,27in FHD Monitor,1,149.99,10/09/19 13:31,"13 Meadow St, Atlanta, GA 30301" -272363,Lightning Charging Cable,2,14.95,10/13/19 23:49,"531 Washington St, San Francisco, CA 94016" -272364,Lightning Charging Cable,1,14.95,10/28/19 07:51,"338 Cedar St, San Francisco, CA 94016" -272365,USB-C Charging Cable,1,11.95,10/17/19 23:17,"210 Meadow St, Atlanta, GA 30301" -272366,27in FHD Monitor,1,149.99,10/21/19 15:49,"990 8th St, Los Angeles, CA 90001" -272367,Lightning Charging Cable,1,14.95,10/31/19 18:23,"439 Madison St, Atlanta, GA 30301" -272368,AA Batteries (4-pack),1,3.84,10/10/19 13:38,"530 Maple St, Seattle, WA 98101" -272369,Wired Headphones,1,11.99,10/27/19 20:26,"225 11th St, New York City, NY 10001" -272370,Wired Headphones,1,11.99,10/23/19 14:43,"510 Main St, Boston, MA 02215" -272371,Lightning Charging Cable,1,14.95,10/14/19 07:38,"782 Cedar St, Boston, MA 02215" -272372,34in Ultrawide Monitor,1,379.99,10/25/19 13:43,"259 Chestnut St, Los Angeles, CA 90001" -272373,Lightning Charging Cable,1,14.95,10/19/19 09:20,"305 4th St, San Francisco, CA 94016" -272374,USB-C Charging Cable,1,11.95,10/01/19 11:32,"23 Ridge St, New York City, NY 10001" -272375,34in Ultrawide Monitor,1,379.99,10/07/19 12:52,"301 Ridge St, Austin, TX 73301" -272376,34in Ultrawide Monitor,1,379.99,10/27/19 11:52,"784 Lake St, New York City, NY 10001" -272377,Apple Airpods Headphones,1,150,10/30/19 04:13,"836 7th St, Los Angeles, CA 90001" -272378,Bose SoundSport Headphones,1,99.99,10/24/19 18:50,"819 Willow St, Austin, TX 73301" -272379,34in Ultrawide Monitor,1,379.99,10/25/19 11:48,"463 Ridge St, Austin, TX 73301" -272380,Wired Headphones,1,11.99,10/06/19 14:13,"875 Park St, Boston, MA 02215" -272381,Wired Headphones,1,11.99,10/24/19 09:54,"410 8th St, San Francisco, CA 94016" -272382,Lightning Charging Cable,1,14.95,10/28/19 13:31,"56 1st St, Seattle, WA 98101" -272383,Lightning Charging Cable,1,14.95,10/10/19 12:33,"994 Cedar St, Atlanta, GA 30301" -272384,Bose SoundSport Headphones,1,99.99,10/22/19 18:02,"75 Lincoln St, Los Angeles, CA 90001" -272385,AAA Batteries (4-pack),2,2.99,10/23/19 06:20,"53 Johnson St, San Francisco, CA 94016" -272386,AAA Batteries (4-pack),4,2.99,10/01/19 11:12,"646 Park St, Seattle, WA 98101" -272387,Wired Headphones,1,11.99,10/15/19 00:01,"749 Meadow St, Atlanta, GA 30301" -272388,USB-C Charging Cable,1,11.95,10/24/19 21:11,"869 Cherry St, Los Angeles, CA 90001" -272389,Lightning Charging Cable,2,14.95,10/05/19 13:05,"276 Wilson St, Los Angeles, CA 90001" -272390,27in FHD Monitor,1,149.99,10/04/19 21:37,"375 Ridge St, Boston, MA 02215" -272391,ThinkPad Laptop,1,999.99,10/14/19 10:18,"729 Willow St, San Francisco, CA 94016" -272392,27in FHD Monitor,1,149.99,10/05/19 01:03,"970 12th St, Dallas, TX 75001" -272393,Wired Headphones,1,11.99,10/15/19 04:03,"670 6th St, Portland, OR 97035" -272394,Lightning Charging Cable,1,14.95,10/31/19 20:54,"726 7th St, San Francisco, CA 94016" -272395,iPhone,1,700,10/31/19 19:33,"593 Spruce St, Los Angeles, CA 90001" -272396,Apple Airpods Headphones,1,150,10/09/19 11:29,"36 Lincoln St, Los Angeles, CA 90001" -272397,27in 4K Gaming Monitor,1,389.99,10/18/19 23:54,"262 8th St, Portland, OR 97035" -272398,Bose SoundSport Headphones,1,99.99,10/30/19 10:45,"826 Park St, Atlanta, GA 30301" -272399,USB-C Charging Cable,1,11.95,10/07/19 13:15,"774 Wilson St, Atlanta, GA 30301" -272400,27in 4K Gaming Monitor,1,389.99,10/12/19 17:06,"600 Wilson St, Seattle, WA 98101" -272401,AA Batteries (4-pack),1,3.84,10/18/19 10:18,"58 Hickory St, Austin, TX 73301" -272402,Apple Airpods Headphones,1,150,10/14/19 21:30,"134 Elm St, San Francisco, CA 94016" -272403,Flatscreen TV,1,300,10/22/19 20:45,"905 Elm St, Atlanta, GA 30301" -272404,Macbook Pro Laptop,1,1700,10/30/19 12:51,"408 Forest St, New York City, NY 10001" -272405,USB-C Charging Cable,1,11.95,10/22/19 00:23,"586 12th St, San Francisco, CA 94016" -272406,iPhone,1,700,10/11/19 22:02,"503 Center St, Seattle, WA 98101" -272407,USB-C Charging Cable,1,11.95,10/09/19 20:43,"499 Spruce St, Boston, MA 02215" -272408,Apple Airpods Headphones,1,150,10/13/19 17:59,"398 Madison St, San Francisco, CA 94016" -272409,AA Batteries (4-pack),2,3.84,10/27/19 06:11,"494 Elm St, Los Angeles, CA 90001" -272410,Apple Airpods Headphones,1,150,10/16/19 17:24,"416 2nd St, Dallas, TX 75001" -272411,USB-C Charging Cable,1,11.95,10/24/19 08:23,"50 River St, Boston, MA 02215" -272412,AAA Batteries (4-pack),1,2.99,10/23/19 19:15,"957 Lake St, New York City, NY 10001" -272413,Google Phone,1,600,10/24/19 18:34,"891 Center St, New York City, NY 10001" -272414,AAA Batteries (4-pack),1,2.99,10/07/19 22:15,"481 Highland St, San Francisco, CA 94016" -272415,AA Batteries (4-pack),1,3.84,10/18/19 15:11,"294 1st St, Boston, MA 02215" -272416,27in 4K Gaming Monitor,1,389.99,10/03/19 20:43,"649 6th St, Austin, TX 73301" -272417,27in FHD Monitor,1,149.99,10/06/19 17:43,"737 Park St, Seattle, WA 98101" -272418,AAA Batteries (4-pack),1,2.99,10/29/19 19:05,"849 Hickory St, Boston, MA 02215" -272419,Bose SoundSport Headphones,1,99.99,10/12/19 13:00,"931 Willow St, San Francisco, CA 94016" -272420,Lightning Charging Cable,1,14.95,10/05/19 13:24,"858 12th St, Seattle, WA 98101" -272421,Google Phone,1,600,10/16/19 07:16,"490 13th St, San Francisco, CA 94016" -272422,Wired Headphones,1,11.99,10/18/19 14:13,"85 8th St, Boston, MA 02215" -272423,Lightning Charging Cable,1,14.95,10/31/19 19:45,"902 7th St, San Francisco, CA 94016" -272424,Apple Airpods Headphones,1,150,10/14/19 17:32,"66 9th St, Seattle, WA 98101" -272425,AAA Batteries (4-pack),2,2.99,10/05/19 08:57,"2 South St, Boston, MA 02215" -272426,AA Batteries (4-pack),1,3.84,10/11/19 16:33,"781 14th St, Atlanta, GA 30301" -272427,Lightning Charging Cable,1,14.95,10/27/19 01:55,"24 Sunset St, New York City, NY 10001" -272428,Wired Headphones,1,11.99,10/01/19 12:38,"94 Wilson St, Austin, TX 73301" -272429,Google Phone,1,600,10/04/19 22:58,"709 Forest St, Los Angeles, CA 90001" -272430,Macbook Pro Laptop,1,1700,10/27/19 19:34,"641 Ridge St, Seattle, WA 98101" -272431,27in FHD Monitor,1,149.99,10/07/19 10:54,"975 Johnson St, Dallas, TX 75001" -272432,iPhone,1,700,10/11/19 11:58,"531 Chestnut St, New York City, NY 10001" -272432,Lightning Charging Cable,1,14.95,10/11/19 11:58,"531 Chestnut St, New York City, NY 10001" -272433,AA Batteries (4-pack),2,3.84,10/15/19 13:31,"152 Jefferson St, Boston, MA 02215" -272434,AAA Batteries (4-pack),1,2.99,10/15/19 17:51,"331 11th St, Boston, MA 02215" -272435,AAA Batteries (4-pack),1,2.99,10/19/19 09:40,"333 12th St, Atlanta, GA 30301" -272436,AA Batteries (4-pack),1,3.84,10/10/19 13:49,"771 11th St, San Francisco, CA 94016" -272437,27in FHD Monitor,1,149.99,10/16/19 06:30,"379 9th St, Los Angeles, CA 90001" -272438,AA Batteries (4-pack),1,3.84,10/28/19 11:39,"307 Johnson St, Boston, MA 02215" -272439,Lightning Charging Cable,1,14.95,10/17/19 15:14,"467 9th St, San Francisco, CA 94016" -272440,AAA Batteries (4-pack),1,2.99,10/21/19 10:28,"707 4th St, San Francisco, CA 94016" -272441,USB-C Charging Cable,1,11.95,10/13/19 15:04,"68 Pine St, Boston, MA 02215" -272442,Apple Airpods Headphones,1,150,10/11/19 18:55,"712 Washington St, San Francisco, CA 94016" -272443,iPhone,1,700,10/04/19 18:50,"89 Sunset St, Los Angeles, CA 90001" -272444,USB-C Charging Cable,1,11.95,10/09/19 14:12,"314 North St, San Francisco, CA 94016" -272445,Flatscreen TV,1,300,10/29/19 05:17,"106 Johnson St, Dallas, TX 75001" -272446,Lightning Charging Cable,1,14.95,10/26/19 12:51,"239 Forest St, Seattle, WA 98101" -272447,Macbook Pro Laptop,1,1700,10/15/19 23:04,"362 West St, Dallas, TX 75001" -272448,USB-C Charging Cable,1,11.95,10/08/19 10:23,"630 Maple St, Boston, MA 02215" -272449,AAA Batteries (4-pack),2,2.99,10/24/19 14:13,"653 Meadow St, Seattle, WA 98101" -272450,AAA Batteries (4-pack),1,2.99,10/24/19 16:41,"944 13th St, San Francisco, CA 94016" -272451,Lightning Charging Cable,1,14.95,10/16/19 18:38,"869 Wilson St, San Francisco, CA 94016" -272452,USB-C Charging Cable,1,11.95,10/06/19 15:37,"684 Washington St, Boston, MA 02215" -272453,Apple Airpods Headphones,1,150,10/14/19 11:26,"662 Elm St, Los Angeles, CA 90001" -272454,iPhone,1,700,10/01/19 16:48,"845 Maple St, Austin, TX 73301" -272455,ThinkPad Laptop,1,999.99,10/26/19 18:09,"148 Pine St, Seattle, WA 98101" -272456,Lightning Charging Cable,1,14.95,10/07/19 15:20,"883 Johnson St, Boston, MA 02215" -272457,Lightning Charging Cable,1,14.95,10/13/19 15:17,"406 Lakeview St, Boston, MA 02215" -272458,Bose SoundSport Headphones,1,99.99,10/30/19 17:15,"252 Wilson St, Seattle, WA 98101" -272459,USB-C Charging Cable,1,11.95,10/21/19 11:24,"383 Church St, Los Angeles, CA 90001" -272460,AAA Batteries (4-pack),1,2.99,10/20/19 14:07,"933 Walnut St, New York City, NY 10001" -272461,AAA Batteries (4-pack),1,2.99,10/11/19 00:44,"3 Chestnut St, Seattle, WA 98101" -272462,AA Batteries (4-pack),2,3.84,10/15/19 22:37,"941 Lake St, San Francisco, CA 94016" -272463,Google Phone,1,600,10/06/19 08:50,"120 Center St, Dallas, TX 75001" -272464,Bose SoundSport Headphones,1,99.99,10/18/19 10:45,"795 1st St, Los Angeles, CA 90001" -272465,AA Batteries (4-pack),1,3.84,10/18/19 14:51,"284 5th St, New York City, NY 10001" -272466,34in Ultrawide Monitor,1,379.99,10/10/19 11:51,"137 Cherry St, Seattle, WA 98101" -272467,USB-C Charging Cable,2,11.95,10/16/19 16:34,"776 Maple St, Austin, TX 73301" -272468,27in 4K Gaming Monitor,1,389.99,10/15/19 10:01,"841 Church St, New York City, NY 10001" -272469,Lightning Charging Cable,1,14.95,10/06/19 12:11,"149 Maple St, Boston, MA 02215" -272470,iPhone,1,700,10/05/19 19:39,"175 Lake St, New York City, NY 10001" -272470,Apple Airpods Headphones,1,150,10/05/19 19:39,"175 Lake St, New York City, NY 10001" -272471,AAA Batteries (4-pack),1,2.99,10/05/19 18:11,"229 12th St, Atlanta, GA 30301" -272472,AA Batteries (4-pack),1,3.84,10/25/19 21:25,"481 4th St, Los Angeles, CA 90001" -272473,34in Ultrawide Monitor,1,379.99,10/22/19 12:15,"574 Pine St, San Francisco, CA 94016" -272474,20in Monitor,1,109.99,10/24/19 14:30,"171 Wilson St, New York City, NY 10001" -272475,AAA Batteries (4-pack),2,2.99,10/28/19 12:07,"722 2nd St, Los Angeles, CA 90001" -272476,Lightning Charging Cable,1,14.95,10/27/19 16:06,"747 11th St, Boston, MA 02215" -272476,Apple Airpods Headphones,1,150,10/27/19 16:06,"747 11th St, Boston, MA 02215" -272477,Lightning Charging Cable,1,14.95,10/23/19 10:32,"618 Lincoln St, Seattle, WA 98101" -272478,ThinkPad Laptop,1,999.99,10/26/19 16:54,"453 Adams St, San Francisco, CA 94016" -272479,AAA Batteries (4-pack),1,2.99,10/30/19 18:34,"455 River St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -272480,Wired Headphones,1,11.99,10/04/19 15:59,"471 Hill St, Los Angeles, CA 90001" -272480,Apple Airpods Headphones,1,150,10/04/19 15:59,"471 Hill St, Los Angeles, CA 90001" -272481,LG Dryer,1,600.0,10/16/19 11:34,"344 Cherry St, San Francisco, CA 94016" -272482,Wired Headphones,1,11.99,10/12/19 21:53,"165 North St, Portland, OR 97035" -272483,Lightning Charging Cable,1,14.95,10/18/19 14:01,"116 Ridge St, Atlanta, GA 30301" -272484,Lightning Charging Cable,1,14.95,10/01/19 11:34,"910 8th St, San Francisco, CA 94016" -272485,AA Batteries (4-pack),1,3.84,10/03/19 17:23,"134 Ridge St, Atlanta, GA 30301" -272486,Apple Airpods Headphones,1,150,10/19/19 14:40,"808 Washington St, San Francisco, CA 94016" -272487,Apple Airpods Headphones,1,150,10/02/19 05:15,"506 Jefferson St, New York City, NY 10001" -272488,AAA Batteries (4-pack),2,2.99,10/21/19 16:47,"733 Maple St, Boston, MA 02215" -272489,AA Batteries (4-pack),1,3.84,10/30/19 20:19,"34 Meadow St, New York City, NY 10001" -272490,iPhone,1,700,10/06/19 12:18,"386 Elm St, Los Angeles, CA 90001" -272490,Lightning Charging Cable,1,14.95,10/06/19 12:18,"386 Elm St, Los Angeles, CA 90001" -272491,USB-C Charging Cable,1,11.95,10/16/19 23:04,"116 Cedar St, Portland, ME 04101" -272491,Apple Airpods Headphones,1,150,10/16/19 23:04,"116 Cedar St, Portland, ME 04101" -272492,USB-C Charging Cable,1,11.95,10/24/19 21:03,"211 Jackson St, New York City, NY 10001" -272493,Lightning Charging Cable,1,14.95,10/15/19 15:42,"82 Jackson St, Los Angeles, CA 90001" -272494,Wired Headphones,1,11.99,10/01/19 13:01,"681 Jackson St, Atlanta, GA 30301" -272495,Lightning Charging Cable,1,14.95,10/09/19 17:09,"615 Church St, Boston, MA 02215" -272496,Wired Headphones,1,11.99,10/21/19 19:19,"628 Willow St, New York City, NY 10001" -272496,Lightning Charging Cable,1,14.95,10/21/19 19:19,"628 Willow St, New York City, NY 10001" -272497,AA Batteries (4-pack),1,3.84,10/06/19 08:16,"93 Main St, Los Angeles, CA 90001" -272498,Google Phone,1,600,10/05/19 18:14,"835 Ridge St, Los Angeles, CA 90001" -272498,Wired Headphones,1,11.99,10/05/19 18:14,"835 Ridge St, Los Angeles, CA 90001" -272499,27in 4K Gaming Monitor,1,389.99,10/21/19 13:16,"490 Walnut St, San Francisco, CA 94016" -272500,Lightning Charging Cable,1,14.95,10/09/19 17:01,"526 Park St, San Francisco, CA 94016" -272501,USB-C Charging Cable,1,11.95,10/14/19 09:57,"651 14th St, Atlanta, GA 30301" -272502,USB-C Charging Cable,1,11.95,10/13/19 08:40,"705 7th St, New York City, NY 10001" -272503,Apple Airpods Headphones,1,150,10/26/19 08:05,"389 Church St, Atlanta, GA 30301" -272504,USB-C Charging Cable,1,11.95,10/16/19 22:20,"203 River St, San Francisco, CA 94016" -272505,USB-C Charging Cable,1,11.95,10/13/19 17:03,"216 Cedar St, Los Angeles, CA 90001" -272506,Wired Headphones,1,11.99,10/26/19 21:05,"567 8th St, Dallas, TX 75001" -272507,Flatscreen TV,1,300,10/23/19 21:46,"957 Church St, Boston, MA 02215" -272508,AAA Batteries (4-pack),2,2.99,10/01/19 22:46,"115 Meadow St, Boston, MA 02215" -272509,USB-C Charging Cable,1,11.95,10/26/19 11:25,"879 8th St, San Francisco, CA 94016" -272510,Vareebadd Phone,1,400,10/17/19 15:26,"151 12th St, New York City, NY 10001" -272510,USB-C Charging Cable,1,11.95,10/17/19 15:26,"151 12th St, New York City, NY 10001" -272511,AAA Batteries (4-pack),1,2.99,10/22/19 11:58,"541 Cherry St, Dallas, TX 75001" -272512,USB-C Charging Cable,1,11.95,10/27/19 06:08,"828 Sunset St, Atlanta, GA 30301" -272513,Lightning Charging Cable,1,14.95,10/13/19 05:52,"250 5th St, Boston, MA 02215" -272514,USB-C Charging Cable,1,11.95,10/05/19 11:44,"896 4th St, Boston, MA 02215" -272515,Wired Headphones,1,11.99,10/12/19 10:32,"980 7th St, Dallas, TX 75001" -272516,Lightning Charging Cable,1,14.95,10/30/19 10:58,"70 Lincoln St, San Francisco, CA 94016" -272517,AAA Batteries (4-pack),2,2.99,10/23/19 17:48,"588 Jackson St, San Francisco, CA 94016" -272518,Vareebadd Phone,1,400,10/08/19 20:31,"32 4th St, San Francisco, CA 94016" -272518,Wired Headphones,1,11.99,10/08/19 20:31,"32 4th St, San Francisco, CA 94016" -272519,Google Phone,1,600,10/19/19 23:55,"75 Main St, Atlanta, GA 30301" -272519,USB-C Charging Cable,1,11.95,10/19/19 23:55,"75 Main St, Atlanta, GA 30301" -272520,Wired Headphones,1,11.99,10/30/19 11:29,"298 14th St, Dallas, TX 75001" -272521,Wired Headphones,1,11.99,10/12/19 11:55,"366 Willow St, Atlanta, GA 30301" -272522,AA Batteries (4-pack),1,3.84,10/21/19 13:06,"351 Washington St, New York City, NY 10001" -272523,Lightning Charging Cable,1,14.95,10/13/19 11:04,"642 Walnut St, Austin, TX 73301" -272524,USB-C Charging Cable,1,11.95,10/17/19 21:08,"894 Hickory St, San Francisco, CA 94016" -272525,USB-C Charging Cable,2,11.95,10/30/19 10:59,"802 13th St, Boston, MA 02215" -272526,Lightning Charging Cable,1,14.95,10/19/19 15:00,"928 Washington St, Dallas, TX 75001" -272527,Apple Airpods Headphones,1,150,10/10/19 20:59,"438 5th St, Seattle, WA 98101" -272528,Bose SoundSport Headphones,1,99.99,10/30/19 16:17,"115 Meadow St, Seattle, WA 98101" -272529,34in Ultrawide Monitor,1,379.99,10/18/19 15:51,"460 Jefferson St, Dallas, TX 75001" -272530,27in 4K Gaming Monitor,1,389.99,10/11/19 20:52,"657 8th St, San Francisco, CA 94016" -272531,AAA Batteries (4-pack),4,2.99,10/14/19 12:00,"776 Main St, San Francisco, CA 94016" -272532,Google Phone,1,600,10/26/19 18:12,"562 Park St, Dallas, TX 75001" -272533,Bose SoundSport Headphones,1,99.99,10/23/19 13:21,"922 Lincoln St, Seattle, WA 98101" -272534,AAA Batteries (4-pack),1,2.99,10/11/19 23:09,"507 Dogwood St, Portland, OR 97035" -272535,LG Washing Machine,1,600.0,10/27/19 13:24,"748 Highland St, Los Angeles, CA 90001" -272536,27in 4K Gaming Monitor,1,389.99,10/11/19 14:17,"616 Forest St, Atlanta, GA 30301" -272537,Wired Headphones,1,11.99,10/25/19 15:52,"234 4th St, Boston, MA 02215" -272538,20in Monitor,1,109.99,10/19/19 23:21,"384 River St, Dallas, TX 75001" -272539,AAA Batteries (4-pack),1,2.99,10/11/19 21:37,"74 7th St, San Francisco, CA 94016" -272540,Wired Headphones,1,11.99,10/15/19 13:23,"739 10th St, Los Angeles, CA 90001" -272541,AA Batteries (4-pack),2,3.84,10/15/19 19:09,"452 North St, New York City, NY 10001" -272542,Lightning Charging Cable,2,14.95,10/21/19 13:23,"978 Forest St, Portland, OR 97035" -272543,27in 4K Gaming Monitor,1,389.99,10/07/19 21:19,"314 Chestnut St, Boston, MA 02215" -272544,Lightning Charging Cable,2,14.95,10/16/19 17:37,"124 9th St, Boston, MA 02215" -272545,USB-C Charging Cable,1,11.95,10/13/19 17:14,"461 Highland St, Atlanta, GA 30301" -272546,Wired Headphones,1,11.99,10/29/19 17:19,"39 12th St, San Francisco, CA 94016" -272547,Apple Airpods Headphones,1,150,10/29/19 17:37,"948 Cedar St, Portland, ME 04101" -272548,AAA Batteries (4-pack),2,2.99,10/03/19 18:47,"306 Meadow St, Los Angeles, CA 90001" -272549,Apple Airpods Headphones,1,150,10/24/19 09:25,"320 Washington St, Atlanta, GA 30301" -272550,Bose SoundSport Headphones,1,99.99,10/03/19 21:14,"456 2nd St, New York City, NY 10001" -272551,Wired Headphones,2,11.99,10/11/19 11:10,"527 Lincoln St, Dallas, TX 75001" -272552,AAA Batteries (4-pack),2,2.99,10/16/19 13:36,"53 Cedar St, Dallas, TX 75001" -272553,Macbook Pro Laptop,1,1700,10/11/19 21:13,"661 Cherry St, Dallas, TX 75001" -272554,USB-C Charging Cable,1,11.95,10/31/19 22:11,"352 Jefferson St, Dallas, TX 75001" -272555,Lightning Charging Cable,1,14.95,10/24/19 08:55,"651 6th St, San Francisco, CA 94016" -272556,Lightning Charging Cable,1,14.95,10/14/19 14:07,"266 Center St, New York City, NY 10001" -272557,27in FHD Monitor,1,149.99,10/22/19 22:03,"803 6th St, Dallas, TX 75001" -272558,AA Batteries (4-pack),1,3.84,10/28/19 18:34,"704 Cedar St, Atlanta, GA 30301" -272559,Wired Headphones,1,11.99,10/26/19 11:46,"378 Elm St, San Francisco, CA 94016" -272560,Flatscreen TV,1,300,10/05/19 17:08,"758 12th St, Portland, OR 97035" -272561,Flatscreen TV,1,300,10/07/19 11:37,"930 Lake St, Portland, OR 97035" -272562,USB-C Charging Cable,1,11.95,10/23/19 23:56,"933 1st St, San Francisco, CA 94016" -272563,Bose SoundSport Headphones,1,99.99,10/20/19 23:13,"521 2nd St, Dallas, TX 75001" -272564,AAA Batteries (4-pack),2,2.99,10/25/19 21:59,"643 North St, Portland, OR 97035" -272565,20in Monitor,1,109.99,10/06/19 22:41,"177 1st St, Austin, TX 73301" -272566,Apple Airpods Headphones,1,150,10/06/19 14:43,"808 Center St, Atlanta, GA 30301" -272567,AA Batteries (4-pack),1,3.84,10/13/19 16:12,"918 1st St, Atlanta, GA 30301" -272568,AAA Batteries (4-pack),1,2.99,10/07/19 19:37,"446 9th St, Atlanta, GA 30301" -272569,AA Batteries (4-pack),3,3.84,10/24/19 21:39,"70 South St, New York City, NY 10001" -272570,USB-C Charging Cable,1,11.95,10/29/19 00:47,"613 Cedar St, Los Angeles, CA 90001" -272571,Wired Headphones,1,11.99,10/24/19 18:41,"140 Pine St, New York City, NY 10001" -272572,iPhone,1,700,10/27/19 20:40,"885 11th St, Los Angeles, CA 90001" -272572,Lightning Charging Cable,1,14.95,10/27/19 20:40,"885 11th St, Los Angeles, CA 90001" -272572,Wired Headphones,1,11.99,10/27/19 20:40,"885 11th St, Los Angeles, CA 90001" -272573,AAA Batteries (4-pack),1,2.99,10/16/19 19:07,"870 Highland St, Los Angeles, CA 90001" -272574,27in 4K Gaming Monitor,1,389.99,10/16/19 23:01,"119 Jackson St, Atlanta, GA 30301" -272575,USB-C Charging Cable,1,11.95,10/25/19 12:17,"688 9th St, New York City, NY 10001" -272576,27in 4K Gaming Monitor,1,389.99,10/15/19 11:35,"959 1st St, Boston, MA 02215" -272577,LG Washing Machine,1,600.0,10/26/19 00:09,"41 Madison St, San Francisco, CA 94016" -272578,AA Batteries (4-pack),1,3.84,10/12/19 09:54,"638 Madison St, New York City, NY 10001" -272579,AAA Batteries (4-pack),1,2.99,10/05/19 19:05,"388 7th St, San Francisco, CA 94016" -272580,Wired Headphones,1,11.99,10/31/19 12:52,"871 Jackson St, San Francisco, CA 94016" -272581,Apple Airpods Headphones,1,150,10/22/19 18:14,"395 1st St, New York City, NY 10001" -272582,USB-C Charging Cable,1,11.95,10/14/19 11:46,"135 Cedar St, New York City, NY 10001" -272583,AA Batteries (4-pack),1,3.84,10/23/19 08:36,"986 River St, New York City, NY 10001" -272584,AA Batteries (4-pack),1,3.84,10/17/19 07:54,"349 Main St, San Francisco, CA 94016" -272585,27in 4K Gaming Monitor,1,389.99,10/19/19 16:01,"951 Sunset St, Los Angeles, CA 90001" -272586,Apple Airpods Headphones,1,150,10/06/19 20:56,"246 Lakeview St, Dallas, TX 75001" -272587,AAA Batteries (4-pack),1,2.99,10/11/19 14:13,"113 Walnut St, Boston, MA 02215" -272588,Apple Airpods Headphones,1,150,10/26/19 10:43,"755 2nd St, Los Angeles, CA 90001" -272588,Wired Headphones,1,11.99,10/26/19 10:43,"755 2nd St, Los Angeles, CA 90001" -272589,AA Batteries (4-pack),1,3.84,10/13/19 07:15,"230 Lake St, Dallas, TX 75001" -272590,AA Batteries (4-pack),1,3.84,10/25/19 18:15,"116 River St, Atlanta, GA 30301" -272591,27in FHD Monitor,1,149.99,10/25/19 19:30,"289 13th St, Boston, MA 02215" -272592,Lightning Charging Cable,1,14.95,10/08/19 14:34,"785 Lake St, San Francisco, CA 94016" -272593,Flatscreen TV,1,300,10/14/19 12:41,"363 Jackson St, Los Angeles, CA 90001" -272594,Apple Airpods Headphones,1,150,10/25/19 10:33,"907 Jackson St, San Francisco, CA 94016" -272595,27in FHD Monitor,1,149.99,10/08/19 12:02,"727 7th St, San Francisco, CA 94016" -272596,AA Batteries (4-pack),1,3.84,10/28/19 15:19,"245 4th St, San Francisco, CA 94016" -272597,27in 4K Gaming Monitor,1,389.99,10/09/19 16:06,"291 5th St, San Francisco, CA 94016" -272598,ThinkPad Laptop,1,999.99,10/13/19 01:46,"483 Forest St, Seattle, WA 98101" -272599,AA Batteries (4-pack),2,3.84,10/11/19 11:43,"684 Jefferson St, Boston, MA 02215" -272600,Bose SoundSport Headphones,1,99.99,10/08/19 21:40,"3 4th St, Atlanta, GA 30301" -272601,Lightning Charging Cable,1,14.95,10/23/19 10:48,"960 Adams St, San Francisco, CA 94016" -272602,Lightning Charging Cable,1,14.95,10/01/19 21:17,"230 Highland St, Los Angeles, CA 90001" -272603,USB-C Charging Cable,1,11.95,10/25/19 11:50,"96 Lincoln St, San Francisco, CA 94016" -272604,Apple Airpods Headphones,1,150,10/26/19 02:42,"881 Forest St, Atlanta, GA 30301" -272605,Apple Airpods Headphones,1,150,10/03/19 06:01,"66 Pine St, San Francisco, CA 94016" -272606,AAA Batteries (4-pack),1,2.99,10/24/19 18:31,"985 4th St, Los Angeles, CA 90001" -272607,Macbook Pro Laptop,1,1700,10/21/19 13:20,"34 6th St, San Francisco, CA 94016" -272608,USB-C Charging Cable,1,11.95,10/01/19 19:55,"448 Pine St, San Francisco, CA 94016" -272609,Lightning Charging Cable,1,14.95,10/05/19 10:17,"698 Spruce St, Boston, MA 02215" -272610,Apple Airpods Headphones,1,150,10/05/19 14:46,"925 7th St, Seattle, WA 98101" -272611,Apple Airpods Headphones,1,150,10/30/19 19:27,"531 Maple St, Austin, TX 73301" -272612,AAA Batteries (4-pack),1,2.99,10/21/19 16:03,"985 12th St, San Francisco, CA 94016" -272613,Lightning Charging Cable,1,14.95,10/09/19 21:49,"418 Johnson St, Dallas, TX 75001" -272614,USB-C Charging Cable,2,11.95,10/24/19 14:04,"786 Chestnut St, San Francisco, CA 94016" -272615,Bose SoundSport Headphones,1,99.99,10/28/19 11:34,"511 Highland St, Los Angeles, CA 90001" -272616,AAA Batteries (4-pack),2,2.99,10/03/19 21:41,"998 Chestnut St, Portland, OR 97035" -272617,Google Phone,1,600,10/28/19 06:30,"731 Dogwood St, San Francisco, CA 94016" -272618,Lightning Charging Cable,2,14.95,10/30/19 14:21,"527 Lake St, Boston, MA 02215" -272619,AA Batteries (4-pack),1,3.84,10/11/19 14:54,"331 Cedar St, Boston, MA 02215" -272620,Apple Airpods Headphones,1,150,10/29/19 22:13,"745 6th St, Atlanta, GA 30301" -272621,AA Batteries (4-pack),1,3.84,10/03/19 20:01,"676 9th St, San Francisco, CA 94016" -272622,Bose SoundSport Headphones,1,99.99,10/07/19 08:33,"11 Center St, New York City, NY 10001" -272623,27in 4K Gaming Monitor,1,389.99,10/23/19 19:57,"594 6th St, Seattle, WA 98101" -272624,Wired Headphones,1,11.99,10/12/19 06:27,"529 Walnut St, Dallas, TX 75001" -272625,Bose SoundSport Headphones,1,99.99,10/16/19 21:06,"646 Jackson St, Los Angeles, CA 90001" -272626,34in Ultrawide Monitor,1,379.99,10/08/19 14:59,"768 Meadow St, San Francisco, CA 94016" -272627,Bose SoundSport Headphones,1,99.99,10/02/19 12:53,"823 Hill St, Austin, TX 73301" -272628,AA Batteries (4-pack),1,3.84,10/13/19 09:14,"568 Cedar St, San Francisco, CA 94016" -272629,27in 4K Gaming Monitor,1,389.99,10/03/19 21:59,"834 North St, New York City, NY 10001" -272630,iPhone,1,700,10/30/19 23:11,"644 Church St, San Francisco, CA 94016" -272631,Apple Airpods Headphones,1,150,10/12/19 09:49,"810 River St, Seattle, WA 98101" -272632,USB-C Charging Cable,1,11.95,10/07/19 10:56,"279 Forest St, Portland, OR 97035" -272633,Lightning Charging Cable,1,14.95,10/24/19 10:41,"830 7th St, Boston, MA 02215" -272634,27in 4K Gaming Monitor,1,389.99,10/06/19 14:27,"380 8th St, Los Angeles, CA 90001" -272635,34in Ultrawide Monitor,1,379.99,10/29/19 14:22,"550 Chestnut St, Los Angeles, CA 90001" -272636,Bose SoundSport Headphones,1,99.99,10/19/19 21:52,"382 Willow St, San Francisco, CA 94016" -272637,AAA Batteries (4-pack),2,2.99,10/15/19 11:18,"80 11th St, San Francisco, CA 94016" -272638,Lightning Charging Cable,1,14.95,10/04/19 01:16,"828 1st St, Dallas, TX 75001" -272639,iPhone,1,700,10/17/19 00:41,"642 2nd St, Boston, MA 02215" -272640,AA Batteries (4-pack),1,3.84,10/11/19 12:01,"148 Jackson St, San Francisco, CA 94016" -272641,27in 4K Gaming Monitor,1,389.99,10/09/19 19:15,"430 Spruce St, Los Angeles, CA 90001" -272642,USB-C Charging Cable,4,11.95,10/14/19 21:35,"717 Main St, Los Angeles, CA 90001" -272643,ThinkPad Laptop,1,999.99,10/12/19 20:16,"614 South St, San Francisco, CA 94016" -272644,Wired Headphones,1,11.99,10/04/19 14:51,"556 Church St, Los Angeles, CA 90001" -272645,Macbook Pro Laptop,1,1700,10/18/19 16:46,"473 9th St, San Francisco, CA 94016" -272646,AAA Batteries (4-pack),1,2.99,10/03/19 20:01,"67 Elm St, Los Angeles, CA 90001" -272647,Lightning Charging Cable,2,14.95,10/09/19 12:17,"876 Ridge St, Dallas, TX 75001" -272648,Wired Headphones,1,11.99,10/16/19 13:44,"645 Madison St, Los Angeles, CA 90001" -272649,AA Batteries (4-pack),1,3.84,10/02/19 20:01,"763 9th St, Los Angeles, CA 90001" -272650,AA Batteries (4-pack),1,3.84,10/09/19 14:00,"722 Jefferson St, San Francisco, CA 94016" -272651,Google Phone,1,600,10/09/19 01:02,"763 Lake St, Dallas, TX 75001" -272652,AA Batteries (4-pack),1,3.84,10/15/19 11:24,"771 4th St, Boston, MA 02215" -272653,Lightning Charging Cable,1,14.95,10/20/19 14:42,"595 Forest St, Los Angeles, CA 90001" -272654,AA Batteries (4-pack),1,3.84,10/22/19 14:11,"873 5th St, Los Angeles, CA 90001" -272655,USB-C Charging Cable,1,11.95,10/23/19 19:29,"902 1st St, Seattle, WA 98101" -272656,AAA Batteries (4-pack),2,2.99,10/04/19 14:28,"307 5th St, Los Angeles, CA 90001" -272657,Lightning Charging Cable,1,14.95,10/19/19 12:25,"678 South St, New York City, NY 10001" -272658,Wired Headphones,1,11.99,10/21/19 09:15,"534 6th St, Los Angeles, CA 90001" -272659,Wired Headphones,1,11.99,10/28/19 23:33,"943 West St, New York City, NY 10001" -272660,USB-C Charging Cable,1,11.95,10/24/19 12:59,"93 Wilson St, Austin, TX 73301" -272661,AAA Batteries (4-pack),1,2.99,10/11/19 19:21,"597 West St, Dallas, TX 75001" -272662,USB-C Charging Cable,1,11.95,10/12/19 19:01,"182 Main St, New York City, NY 10001" -272663,Bose SoundSport Headphones,1,99.99,10/05/19 22:05,"492 2nd St, Portland, OR 97035" -272664,ThinkPad Laptop,1,999.99,10/29/19 09:05,"102 Hickory St, Seattle, WA 98101" -272665,Wired Headphones,1,11.99,10/29/19 19:52,"138 Madison St, Dallas, TX 75001" -272665,Wired Headphones,1,11.99,10/29/19 19:52,"138 Madison St, Dallas, TX 75001" -272666,27in FHD Monitor,1,149.99,10/29/19 01:36,"638 Park St, San Francisco, CA 94016" -272667,Wired Headphones,1,11.99,10/13/19 18:09,"542 Hill St, San Francisco, CA 94016" -272668,27in FHD Monitor,1,149.99,10/24/19 12:01,"231 Forest St, Los Angeles, CA 90001" -272669,USB-C Charging Cable,1,11.95,10/23/19 11:22,"752 Sunset St, Los Angeles, CA 90001" -272670,AA Batteries (4-pack),1,3.84,10/12/19 14:50,"11 4th St, San Francisco, CA 94016" -272671,AA Batteries (4-pack),1,3.84,10/16/19 13:32,"410 Meadow St, Seattle, WA 98101" -272672,Wired Headphones,1,11.99,10/20/19 12:03,"270 14th St, Los Angeles, CA 90001" -272673,AAA Batteries (4-pack),1,2.99,10/16/19 16:24,"145 Meadow St, Los Angeles, CA 90001" -272674,27in FHD Monitor,1,149.99,10/17/19 12:11,"373 6th St, Portland, ME 04101" -272675,AAA Batteries (4-pack),1,2.99,10/07/19 20:34,"343 4th St, San Francisco, CA 94016" -272676,USB-C Charging Cable,1,11.95,10/05/19 17:20,"666 Cherry St, Atlanta, GA 30301" -272677,Lightning Charging Cable,1,14.95,10/09/19 14:29,"244 South St, New York City, NY 10001" -272678,27in FHD Monitor,1,149.99,10/06/19 09:48,"400 Park St, Atlanta, GA 30301" -272679,Lightning Charging Cable,1,14.95,10/24/19 19:01,"943 North St, Los Angeles, CA 90001" -272680,Bose SoundSport Headphones,1,99.99,10/08/19 09:11,"303 Forest St, Seattle, WA 98101" -272681,AAA Batteries (4-pack),1,2.99,10/15/19 14:34,"558 Jackson St, Dallas, TX 75001" -272682,USB-C Charging Cable,1,11.95,10/30/19 13:41,"507 7th St, Boston, MA 02215" -272683,USB-C Charging Cable,1,11.95,10/30/19 17:51,"113 South St, Austin, TX 73301" -272684,AA Batteries (4-pack),2,3.84,10/08/19 20:26,"477 11th St, Los Angeles, CA 90001" -272685,AAA Batteries (4-pack),1,2.99,10/10/19 11:58,"210 Sunset St, Portland, OR 97035" -272686,27in FHD Monitor,1,149.99,10/31/19 20:29,"258 Pine St, New York City, NY 10001" -272687,USB-C Charging Cable,1,11.95,10/23/19 11:55,"730 Madison St, San Francisco, CA 94016" -272688,USB-C Charging Cable,1,11.95,10/02/19 21:36,"635 Lake St, San Francisco, CA 94016" -272689,Google Phone,1,600,10/04/19 22:43,"366 Lincoln St, New York City, NY 10001" -272690,Wired Headphones,1,11.99,10/14/19 12:25,"252 Forest St, Boston, MA 02215" -272691,AAA Batteries (4-pack),1,2.99,10/31/19 10:11,"995 Wilson St, Austin, TX 73301" -272692,Wired Headphones,1,11.99,10/15/19 17:19,"49 12th St, San Francisco, CA 94016" -272693,AA Batteries (4-pack),1,3.84,10/25/19 08:30,"687 10th St, Austin, TX 73301" -272694,27in FHD Monitor,1,149.99,10/15/19 11:03,"685 Madison St, San Francisco, CA 94016" -272695,Bose SoundSport Headphones,1,99.99,10/08/19 15:32,"909 Lakeview St, New York City, NY 10001" -272696,USB-C Charging Cable,1,11.95,10/03/19 00:05,"931 Highland St, San Francisco, CA 94016" -272697,AA Batteries (4-pack),1,3.84,10/07/19 16:42,"871 5th St, Atlanta, GA 30301" -272698,Bose SoundSport Headphones,1,99.99,10/20/19 10:35,"766 4th St, San Francisco, CA 94016" -272699,Wired Headphones,1,11.99,10/30/19 19:46,"453 West St, Portland, OR 97035" -272700,USB-C Charging Cable,1,11.95,10/12/19 22:05,"277 Meadow St, San Francisco, CA 94016" -272701,Apple Airpods Headphones,1,150,10/15/19 09:26,"514 Cherry St, Los Angeles, CA 90001" -272702,Flatscreen TV,1,300,10/17/19 20:28,"677 Forest St, San Francisco, CA 94016" -272703,iPhone,1,700,10/29/19 05:51,"251 Jackson St, San Francisco, CA 94016" -272703,Lightning Charging Cable,1,14.95,10/29/19 05:51,"251 Jackson St, San Francisco, CA 94016" -272704,Flatscreen TV,1,300,10/09/19 12:41,"554 Maple St, Los Angeles, CA 90001" -272705,iPhone,1,700,10/01/19 17:38,"979 Park St, San Francisco, CA 94016" -272706,27in FHD Monitor,1,149.99,10/13/19 17:55,"14 Cedar St, Austin, TX 73301" -272707,Flatscreen TV,1,300,10/20/19 21:05,"499 Lakeview St, Seattle, WA 98101" -272708,Lightning Charging Cable,1,14.95,10/04/19 10:59,"64 6th St, Boston, MA 02215" -272709,Apple Airpods Headphones,1,150,10/10/19 22:19,"250 4th St, San Francisco, CA 94016" -272710,AAA Batteries (4-pack),4,2.99,10/02/19 01:12,"277 Lake St, Atlanta, GA 30301" -272711,iPhone,1,700,10/21/19 19:30,"750 Chestnut St, New York City, NY 10001" -272712,Wired Headphones,1,11.99,10/30/19 09:41,"658 Lakeview St, Los Angeles, CA 90001" -272713,Apple Airpods Headphones,1,150,10/13/19 09:28,"802 12th St, Boston, MA 02215" -272714,27in FHD Monitor,1,149.99,10/23/19 19:03,"657 8th St, New York City, NY 10001" -272715,AAA Batteries (4-pack),1,2.99,10/18/19 19:32,"79 14th St, New York City, NY 10001" -272715,Lightning Charging Cable,1,14.95,10/18/19 19:32,"79 14th St, New York City, NY 10001" -272716,27in FHD Monitor,1,149.99,10/31/19 18:39,"19 Elm St, Boston, MA 02215" -272717,USB-C Charging Cable,1,11.95,10/13/19 18:33,"850 Spruce St, Boston, MA 02215" -272718,AA Batteries (4-pack),1,3.84,10/06/19 15:11,"619 Lincoln St, Seattle, WA 98101" -272719,USB-C Charging Cable,1,11.95,10/06/19 19:11,"979 Walnut St, Dallas, TX 75001" -272720,Macbook Pro Laptop,1,1700,10/05/19 17:34,"434 Forest St, Seattle, WA 98101" -272721,USB-C Charging Cable,1,11.95,10/30/19 14:26,"188 Walnut St, Atlanta, GA 30301" -272722,Lightning Charging Cable,1,14.95,10/23/19 10:34,"450 Madison St, Los Angeles, CA 90001" -272723,USB-C Charging Cable,1,11.95,10/07/19 13:45,"64 Elm St, San Francisco, CA 94016" -272724,34in Ultrawide Monitor,1,379.99,10/30/19 06:55,"21 1st St, Austin, TX 73301" -272725,USB-C Charging Cable,1,11.95,10/17/19 10:36,"706 13th St, Atlanta, GA 30301" -272726,34in Ultrawide Monitor,1,379.99,10/26/19 14:10,"331 14th St, New York City, NY 10001" -272727,Lightning Charging Cable,1,14.95,10/01/19 10:34,"218 Cherry St, Atlanta, GA 30301" -272728,27in 4K Gaming Monitor,1,389.99,10/05/19 20:57,"305 Elm St, Seattle, WA 98101" -272729,27in 4K Gaming Monitor,1,389.99,10/13/19 19:29,"898 Lincoln St, San Francisco, CA 94016" -272730,Wired Headphones,1,11.99,10/07/19 16:11,"84 Cedar St, Los Angeles, CA 90001" -272731,USB-C Charging Cable,1,11.95,10/27/19 12:56,"13 River St, Seattle, WA 98101" -272732,USB-C Charging Cable,1,11.95,10/11/19 09:11,"36 13th St, Dallas, TX 75001" -272733,Wired Headphones,1,11.99,10/25/19 12:29,"327 14th St, Atlanta, GA 30301" -272734,Bose SoundSport Headphones,1,99.99,10/02/19 07:29,"392 Main St, New York City, NY 10001" -272735,USB-C Charging Cable,1,11.95,10/12/19 17:36,"213 Chestnut St, San Francisco, CA 94016" -272736,34in Ultrawide Monitor,1,379.99,10/09/19 09:32,"51 Cherry St, Dallas, TX 75001" -272737,Lightning Charging Cable,1,14.95,10/30/19 11:47,"822 Chestnut St, New York City, NY 10001" -272738,iPhone,1,700,10/16/19 09:51,"931 Lakeview St, New York City, NY 10001" -272739,Wired Headphones,1,11.99,10/02/19 22:44,"843 Cedar St, New York City, NY 10001" -272740,AAA Batteries (4-pack),1,2.99,10/08/19 23:56,"228 West St, Austin, TX 73301" -272741,AA Batteries (4-pack),1,3.84,10/18/19 17:49,"979 11th St, San Francisco, CA 94016" -272742,34in Ultrawide Monitor,1,379.99,10/03/19 20:42,"361 North St, San Francisco, CA 94016" -272743,Bose SoundSport Headphones,1,99.99,10/14/19 10:23,"869 Maple St, Los Angeles, CA 90001" -272744,iPhone,1,700,10/30/19 22:49,"991 Main St, Los Angeles, CA 90001" -272745,34in Ultrawide Monitor,1,379.99,10/30/19 19:00,"385 Center St, Portland, OR 97035" -272746,Bose SoundSport Headphones,1,99.99,10/09/19 23:06,"189 11th St, Atlanta, GA 30301" -272747,Wired Headphones,1,11.99,10/18/19 08:38,"929 Cherry St, Los Angeles, CA 90001" -272748,AA Batteries (4-pack),2,3.84,10/17/19 23:06,"978 South St, Boston, MA 02215" -272749,34in Ultrawide Monitor,1,379.99,10/17/19 22:51,"490 Walnut St, San Francisco, CA 94016" -272750,USB-C Charging Cable,1,11.95,10/05/19 00:19,"433 12th St, San Francisco, CA 94016" -272751,Vareebadd Phone,1,400,10/03/19 11:02,"990 Cedar St, Los Angeles, CA 90001" -272752,Apple Airpods Headphones,1,150,10/25/19 21:52,"292 Lakeview St, Los Angeles, CA 90001" -272753,USB-C Charging Cable,1,11.95,10/25/19 11:32,"426 Chestnut St, New York City, NY 10001" -272754,Lightning Charging Cable,1,14.95,10/20/19 22:19,"14 Jefferson St, Dallas, TX 75001" -272755,Apple Airpods Headphones,1,150,10/09/19 01:01,"425 2nd St, Austin, TX 73301" -272756,AAA Batteries (4-pack),2,2.99,10/20/19 13:23,"271 Chestnut St, Boston, MA 02215" -272757,Wired Headphones,1,11.99,10/31/19 06:43,"787 Dogwood St, New York City, NY 10001" -272758,AA Batteries (4-pack),1,3.84,10/26/19 09:44,"298 12th St, Austin, TX 73301" -272759,Apple Airpods Headphones,1,150,10/12/19 19:27,"377 Main St, Dallas, TX 75001" -272760,AAA Batteries (4-pack),1,2.99,10/10/19 14:39,"658 1st St, Los Angeles, CA 90001" -272761,Lightning Charging Cable,1,14.95,10/04/19 07:15,"986 Forest St, New York City, NY 10001" -272762,Wired Headphones,1,11.99,10/26/19 11:17,"857 5th St, San Francisco, CA 94016" -272763,AA Batteries (4-pack),1,3.84,10/08/19 14:18,"686 7th St, Los Angeles, CA 90001" -272763,Apple Airpods Headphones,1,150,10/08/19 14:18,"686 7th St, Los Angeles, CA 90001" -272764,USB-C Charging Cable,1,11.95,10/23/19 21:08,"272 Wilson St, San Francisco, CA 94016" -272765,34in Ultrawide Monitor,1,379.99,10/13/19 09:56,"268 Wilson St, New York City, NY 10001" -272766,USB-C Charging Cable,1,11.95,10/15/19 15:48,"314 Chestnut St, San Francisco, CA 94016" -272767,Bose SoundSport Headphones,1,99.99,10/26/19 08:13,"13 1st St, Portland, OR 97035" -272768,AA Batteries (4-pack),3,3.84,10/05/19 10:05,"990 Chestnut St, Dallas, TX 75001" -272769,Lightning Charging Cable,1,14.95,10/19/19 11:30,"590 Dogwood St, San Francisco, CA 94016" -272770,AAA Batteries (4-pack),2,2.99,10/16/19 00:05,"986 Adams St, Los Angeles, CA 90001" -272771,Apple Airpods Headphones,1,150,10/05/19 19:46,"226 2nd St, New York City, NY 10001" -272772,Apple Airpods Headphones,1,150,10/20/19 23:37,"70 Hickory St, New York City, NY 10001" -272773,iPhone,1,700,10/24/19 17:43,"422 7th St, Austin, TX 73301" -272773,Apple Airpods Headphones,1,150,10/24/19 17:43,"422 7th St, Austin, TX 73301" -272774,AA Batteries (4-pack),1,3.84,10/25/19 01:42,"751 Chestnut St, San Francisco, CA 94016" -272775,ThinkPad Laptop,1,999.99,10/24/19 14:41,"668 Madison St, Dallas, TX 75001" -272776,AA Batteries (4-pack),1,3.84,10/17/19 11:58,"977 4th St, Portland, OR 97035" -272777,Apple Airpods Headphones,1,150,10/13/19 03:26,"541 Washington St, San Francisco, CA 94016" -272778,34in Ultrawide Monitor,1,379.99,10/27/19 07:52,"822 Cedar St, Dallas, TX 75001" -272779,Lightning Charging Cable,1,14.95,10/05/19 19:09,"527 South St, Austin, TX 73301" -272780,Apple Airpods Headphones,1,150,10/25/19 00:47,"48 Church St, San Francisco, CA 94016" -272781,AA Batteries (4-pack),2,3.84,10/14/19 18:17,"803 8th St, Dallas, TX 75001" -272782,AAA Batteries (4-pack),1,2.99,10/03/19 16:06,"885 Maple St, Boston, MA 02215" -272783,Apple Airpods Headphones,1,150,10/24/19 12:27,"554 Pine St, Boston, MA 02215" -272784,AAA Batteries (4-pack),1,2.99,10/05/19 11:53,"159 11th St, Seattle, WA 98101" -272785,27in 4K Gaming Monitor,1,389.99,10/18/19 22:52,"12 Lakeview St, New York City, NY 10001" -272786,Wired Headphones,1,11.99,10/02/19 16:12,"874 Lincoln St, San Francisco, CA 94016" -272787,Lightning Charging Cable,1,14.95,10/22/19 21:03,"604 Wilson St, Los Angeles, CA 90001" -272788,AAA Batteries (4-pack),1,2.99,10/19/19 08:28,"526 14th St, Seattle, WA 98101" -272789,Wired Headphones,2,11.99,10/04/19 17:03,"783 5th St, San Francisco, CA 94016" -272790,USB-C Charging Cable,1,11.95,10/25/19 11:35,"424 Ridge St, San Francisco, CA 94016" -272790,USB-C Charging Cable,1,11.95,10/25/19 11:35,"424 Ridge St, San Francisco, CA 94016" -272791,AA Batteries (4-pack),2,3.84,10/07/19 18:53,"267 Hickory St, Atlanta, GA 30301" -272792,Wired Headphones,1,11.99,10/30/19 21:20,"554 Ridge St, New York City, NY 10001" -272793,Lightning Charging Cable,1,14.95,10/12/19 08:38,"378 12th St, San Francisco, CA 94016" -272794,Google Phone,1,600,10/04/19 03:35,"92 10th St, Portland, OR 97035" -272795,Apple Airpods Headphones,1,150,10/01/19 10:10,"955 7th St, Austin, TX 73301" -272796,Wired Headphones,1,11.99,10/16/19 13:08,"581 Park St, Los Angeles, CA 90001" -272797,27in FHD Monitor,1,149.99,10/09/19 19:18,"490 Forest St, Boston, MA 02215" -272798,Flatscreen TV,1,300,10/02/19 20:14,"972 13th St, San Francisco, CA 94016" -272799,USB-C Charging Cable,1,11.95,10/14/19 13:17,"824 Maple St, Boston, MA 02215" -272800,AAA Batteries (4-pack),1,2.99,10/20/19 13:28,"944 Cedar St, New York City, NY 10001" -272801,AAA Batteries (4-pack),1,2.99,10/08/19 20:42,"377 Park St, Boston, MA 02215" -272802,AA Batteries (4-pack),1,3.84,10/29/19 19:15,"174 Lakeview St, Seattle, WA 98101" -272803,USB-C Charging Cable,1,11.95,10/08/19 12:16,"853 North St, San Francisco, CA 94016" -272804,Wired Headphones,1,11.99,10/13/19 17:00,"503 South St, Portland, OR 97035" -272805,AA Batteries (4-pack),1,3.84,10/09/19 06:21,"592 13th St, Dallas, TX 75001" -272806,Lightning Charging Cable,1,14.95,10/23/19 19:36,"261 Lake St, San Francisco, CA 94016" -272807,Wired Headphones,1,11.99,10/28/19 22:06,"126 12th St, Portland, OR 97035" -272808,ThinkPad Laptop,1,999.99,10/08/19 21:03,"386 10th St, Boston, MA 02215" -272809,Lightning Charging Cable,1,14.95,10/05/19 22:42,"301 Jefferson St, Portland, ME 04101" -272810,Vareebadd Phone,1,400,10/02/19 15:54,"798 Cedar St, Dallas, TX 75001" -272811,Macbook Pro Laptop,1,1700,10/08/19 01:08,"847 5th St, Los Angeles, CA 90001" -272812,Bose SoundSport Headphones,1,99.99,10/22/19 14:42,"730 Forest St, San Francisco, CA 94016" -272813,27in 4K Gaming Monitor,1,389.99,10/10/19 14:08,"157 Park St, Boston, MA 02215" -272814,Apple Airpods Headphones,1,150,10/30/19 10:26,"107 Cedar St, Boston, MA 02215" -272815,USB-C Charging Cable,1,11.95,10/18/19 17:04,"761 Church St, Seattle, WA 98101" -272816,AA Batteries (4-pack),1,3.84,10/15/19 08:10,"557 Maple St, Atlanta, GA 30301" -272817,Bose SoundSport Headphones,1,99.99,10/10/19 17:02,"820 8th St, Dallas, TX 75001" -272818,Vareebadd Phone,1,400,10/04/19 00:17,"444 Highland St, New York City, NY 10001" -272819,Lightning Charging Cable,1,14.95,10/24/19 17:08,"917 5th St, Austin, TX 73301" -272820,AAA Batteries (4-pack),1,2.99,10/31/19 12:03,"466 Ridge St, Los Angeles, CA 90001" -272821,USB-C Charging Cable,1,11.95,10/12/19 10:49,"852 Lakeview St, New York City, NY 10001" -272822,27in FHD Monitor,1,149.99,10/09/19 06:52,"663 4th St, San Francisco, CA 94016" -272823,AA Batteries (4-pack),2,3.84,10/26/19 08:11,"146 Meadow St, New York City, NY 10001" -272824,ThinkPad Laptop,1,999.99,10/08/19 13:35,"888 Main St, Atlanta, GA 30301" -272825,AAA Batteries (4-pack),2,2.99,10/15/19 21:08,"185 River St, Los Angeles, CA 90001" -272826,Lightning Charging Cable,1,14.95,10/25/19 13:13,"780 Dogwood St, Boston, MA 02215" -272827,Flatscreen TV,1,300,10/21/19 16:21,"417 Cherry St, Dallas, TX 75001" -272828,27in 4K Gaming Monitor,1,389.99,10/03/19 20:48,"490 Sunset St, Los Angeles, CA 90001" -272829,USB-C Charging Cable,2,11.95,10/28/19 11:35,"87 Dogwood St, Portland, OR 97035" -272830,USB-C Charging Cable,1,11.95,10/03/19 20:02,"692 Washington St, New York City, NY 10001" -272831,AAA Batteries (4-pack),1,2.99,10/21/19 16:45,"958 11th St, Boston, MA 02215" -272832,27in FHD Monitor,1,149.99,10/22/19 15:49,"755 Adams St, Austin, TX 73301" -272833,AAA Batteries (4-pack),1,2.99,10/28/19 21:33,"509 10th St, New York City, NY 10001" -272834,27in FHD Monitor,1,149.99,10/23/19 03:26,"626 Meadow St, New York City, NY 10001" -272835,Flatscreen TV,1,300,10/21/19 17:17,"533 Johnson St, Atlanta, GA 30301" -272836,20in Monitor,1,109.99,10/04/19 18:31,"899 Church St, San Francisco, CA 94016" -272837,Bose SoundSport Headphones,1,99.99,10/18/19 09:52,"928 West St, Dallas, TX 75001" -272838,Lightning Charging Cable,1,14.95,10/31/19 14:06,"879 Main St, Austin, TX 73301" -272839,Apple Airpods Headphones,1,150,10/03/19 13:10,"24 Park St, Seattle, WA 98101" -272840,Apple Airpods Headphones,1,150,10/01/19 19:03,"456 Walnut St, Dallas, TX 75001" -272841,USB-C Charging Cable,1,11.95,10/18/19 17:38,"297 Elm St, Boston, MA 02215" -272842,Lightning Charging Cable,1,14.95,10/17/19 12:16,"772 Chestnut St, New York City, NY 10001" -272843,AAA Batteries (4-pack),1,2.99,10/14/19 13:16,"695 Jackson St, Austin, TX 73301" -272844,USB-C Charging Cable,1,11.95,10/14/19 17:25,"116 Hill St, Los Angeles, CA 90001" -272845,USB-C Charging Cable,1,11.95,10/06/19 13:39,"283 Spruce St, Los Angeles, CA 90001" -272846,AA Batteries (4-pack),4,3.84,10/02/19 20:10,"285 North St, Los Angeles, CA 90001" -272847,34in Ultrawide Monitor,1,379.99,10/07/19 23:28,"339 Washington St, Austin, TX 73301" -272848,Lightning Charging Cable,1,14.95,10/19/19 10:42,"235 5th St, San Francisco, CA 94016" -272849,Lightning Charging Cable,1,14.95,10/05/19 08:42,"418 Cedar St, San Francisco, CA 94016" -272850,27in 4K Gaming Monitor,1,389.99,10/17/19 18:25,"837 Maple St, Boston, MA 02215" -272851,AA Batteries (4-pack),1,3.84,10/05/19 18:33,"314 Willow St, New York City, NY 10001" -272852,iPhone,1,700,10/07/19 20:12,"564 Church St, New York City, NY 10001" -272853,Apple Airpods Headphones,1,150,10/05/19 15:16,"202 2nd St, Atlanta, GA 30301" -272854,Lightning Charging Cable,1,14.95,10/08/19 11:30,"596 Pine St, San Francisco, CA 94016" -272855,34in Ultrawide Monitor,1,379.99,10/21/19 08:33,"493 Jefferson St, Los Angeles, CA 90001" -272856,Bose SoundSport Headphones,1,99.99,10/09/19 19:26,"29 Dogwood St, Austin, TX 73301" -272857,AA Batteries (4-pack),1,3.84,10/08/19 22:21,"484 Ridge St, Portland, ME 04101" -272858,AA Batteries (4-pack),3,3.84,10/19/19 18:08,"536 Jackson St, Los Angeles, CA 90001" -272859,USB-C Charging Cable,1,11.95,10/14/19 07:58,"153 Church St, Portland, OR 97035" -272860,AAA Batteries (4-pack),1,2.99,10/15/19 18:53,"546 Sunset St, New York City, NY 10001" -272861,Apple Airpods Headphones,1,150,10/25/19 18:53,"347 Jackson St, Dallas, TX 75001" -272862,USB-C Charging Cable,1,11.95,10/31/19 13:26,"42 9th St, San Francisco, CA 94016" -272863,AAA Batteries (4-pack),2,2.99,10/28/19 08:15,"492 Church St, San Francisco, CA 94016" -272864,USB-C Charging Cable,1,11.95,10/02/19 08:49,"85 South St, Boston, MA 02215" -272865,AAA Batteries (4-pack),1,2.99,10/20/19 11:33,"83 14th St, Dallas, TX 75001" -272866,Bose SoundSport Headphones,1,99.99,10/08/19 00:23,"639 Cherry St, Austin, TX 73301" -272867,USB-C Charging Cable,1,11.95,10/17/19 10:31,"918 West St, San Francisco, CA 94016" -272868,AAA Batteries (4-pack),1,2.99,10/24/19 11:23,"356 Jefferson St, Dallas, TX 75001" -272869,Apple Airpods Headphones,1,150,10/11/19 14:25,"533 South St, San Francisco, CA 94016" -272870,Wired Headphones,1,11.99,10/23/19 01:44,"211 Pine St, Boston, MA 02215" -272871,USB-C Charging Cable,2,11.95,10/27/19 11:23,"344 Church St, Boston, MA 02215" -272872,iPhone,1,700,10/08/19 20:11,"800 Willow St, San Francisco, CA 94016" -272873,AAA Batteries (4-pack),2,2.99,10/22/19 23:20,"148 Chestnut St, Los Angeles, CA 90001" -272874,ThinkPad Laptop,1,999.99,10/03/19 18:04,"656 Willow St, Los Angeles, CA 90001" -272875,34in Ultrawide Monitor,1,379.99,10/08/19 18:11,"100 Meadow St, New York City, NY 10001" -272876,AAA Batteries (4-pack),1,2.99,10/28/19 15:28,"491 Lake St, Seattle, WA 98101" -272877,AA Batteries (4-pack),1,3.84,10/07/19 13:31,"471 10th St, Portland, OR 97035" -272878,USB-C Charging Cable,1,11.95,10/05/19 17:18,"845 Sunset St, Los Angeles, CA 90001" -272879,34in Ultrawide Monitor,1,379.99,10/26/19 10:24,"769 Cedar St, San Francisco, CA 94016" -272880,AA Batteries (4-pack),1,3.84,10/19/19 22:45,"388 11th St, New York City, NY 10001" -272881,AA Batteries (4-pack),2,3.84,10/12/19 23:06,"581 Dogwood St, Dallas, TX 75001" -272882,iPhone,1,700,10/26/19 16:32,"114 Cedar St, San Francisco, CA 94016" -272883,ThinkPad Laptop,1,999.99,10/02/19 15:21,"618 Spruce St, San Francisco, CA 94016" -272884,Apple Airpods Headphones,1,150,10/16/19 12:23,"423 Dogwood St, Los Angeles, CA 90001" -272885,Lightning Charging Cable,1,14.95,10/02/19 01:49,"133 11th St, New York City, NY 10001" -272886,27in 4K Gaming Monitor,1,389.99,10/19/19 14:57,"239 Johnson St, San Francisco, CA 94016" -272887,Lightning Charging Cable,1,14.95,10/26/19 17:19,"829 Cedar St, Austin, TX 73301" -272888,AAA Batteries (4-pack),2,2.99,10/13/19 15:37,"371 Madison St, Portland, OR 97035" -272889,Bose SoundSport Headphones,1,99.99,10/20/19 19:11,"166 10th St, Dallas, TX 75001" -272890,Lightning Charging Cable,1,14.95,10/30/19 18:54,"952 South St, Boston, MA 02215" -272891,AAA Batteries (4-pack),1,2.99,10/30/19 17:38,"19 South St, Los Angeles, CA 90001" -272892,Apple Airpods Headphones,1,150,10/21/19 12:03,"476 Dogwood St, Dallas, TX 75001" -272893,Bose SoundSport Headphones,1,99.99,10/14/19 21:22,"552 Jackson St, San Francisco, CA 94016" -272894,27in 4K Gaming Monitor,1,389.99,10/15/19 14:27,"99 West St, San Francisco, CA 94016" -272895,iPhone,1,700,10/27/19 00:11,"676 Wilson St, Dallas, TX 75001" -272896,AAA Batteries (4-pack),1,2.99,10/23/19 18:12,"475 12th St, San Francisco, CA 94016" -272897,Lightning Charging Cable,1,14.95,10/20/19 09:12,"572 14th St, Los Angeles, CA 90001" -272898,USB-C Charging Cable,2,11.95,10/20/19 12:21,"180 Maple St, Los Angeles, CA 90001" -272899,Apple Airpods Headphones,1,150,10/01/19 20:52,"258 West St, San Francisco, CA 94016" -272900,Bose SoundSport Headphones,1,99.99,10/07/19 16:56,"841 Highland St, New York City, NY 10001" -272901,Bose SoundSport Headphones,1,99.99,10/29/19 15:22,"294 2nd St, New York City, NY 10001" -272902,LG Dryer,1,600.0,10/05/19 17:51,"905 5th St, San Francisco, CA 94016" -272903,Google Phone,1,600,10/22/19 11:48,"91 Lake St, Seattle, WA 98101" -272904,USB-C Charging Cable,1,11.95,10/18/19 12:24,"676 Lincoln St, Portland, ME 04101" -272905,27in FHD Monitor,1,149.99,10/09/19 18:16,"63 Johnson St, New York City, NY 10001" -272906,27in 4K Gaming Monitor,1,389.99,10/06/19 11:45,"120 8th St, San Francisco, CA 94016" -272907,Lightning Charging Cable,1,14.95,10/25/19 20:54,"435 Spruce St, Boston, MA 02215" -272908,AAA Batteries (4-pack),1,2.99,10/18/19 13:49,"633 Park St, Seattle, WA 98101" -272909,27in FHD Monitor,1,149.99,10/28/19 14:14,"882 Dogwood St, San Francisco, CA 94016" -272910,USB-C Charging Cable,1,11.95,10/01/19 18:58,"233 Cedar St, San Francisco, CA 94016" -272911,Wired Headphones,1,11.99,10/28/19 10:21,"182 6th St, San Francisco, CA 94016" -272912,AAA Batteries (4-pack),3,2.99,10/24/19 22:14,"312 Highland St, San Francisco, CA 94016" -272913,Lightning Charging Cable,1,14.95,10/27/19 10:24,"270 Hill St, Atlanta, GA 30301" -272914,iPhone,1,700,10/22/19 20:15,"973 Johnson St, New York City, NY 10001" -272915,Apple Airpods Headphones,1,150,10/30/19 20:25,"844 Lake St, San Francisco, CA 94016" -272916,USB-C Charging Cable,1,11.95,10/15/19 18:40,"361 Lake St, Boston, MA 02215" -272917,iPhone,1,700,10/18/19 09:12,"623 North St, Austin, TX 73301" -272918,AA Batteries (4-pack),1,3.84,10/27/19 10:29,"287 Elm St, New York City, NY 10001" -272919,Lightning Charging Cable,1,14.95,10/29/19 19:24,"881 1st St, San Francisco, CA 94016" -272920,Lightning Charging Cable,2,14.95,10/12/19 09:27,"543 Adams St, San Francisco, CA 94016" -272921,Wired Headphones,1,11.99,10/10/19 20:24,"5 10th St, Dallas, TX 75001" -272922,USB-C Charging Cable,1,11.95,10/05/19 13:16,"946 Center St, Boston, MA 02215" -272923,27in FHD Monitor,1,149.99,10/15/19 10:23,"868 Washington St, San Francisco, CA 94016" -272924,Wired Headphones,1,11.99,10/30/19 20:26,"208 2nd St, Los Angeles, CA 90001" -272925,AAA Batteries (4-pack),2,2.99,10/15/19 21:01,"303 Jefferson St, Seattle, WA 98101" -,,,,, -272926,Apple Airpods Headphones,1,150,10/24/19 13:09,"735 10th St, Seattle, WA 98101" -272927,Lightning Charging Cable,1,14.95,10/16/19 15:42,"331 Jackson St, Atlanta, GA 30301" -272928,AA Batteries (4-pack),2,3.84,10/26/19 14:36,"979 Park St, Boston, MA 02215" -272929,AA Batteries (4-pack),3,3.84,10/04/19 12:18,"814 Chestnut St, San Francisco, CA 94016" -272930,AAA Batteries (4-pack),2,2.99,10/20/19 10:39,"792 Hickory St, San Francisco, CA 94016" -272931,34in Ultrawide Monitor,1,379.99,10/29/19 15:54,"477 West St, San Francisco, CA 94016" -272932,LG Washing Machine,1,600.0,10/23/19 11:43,"962 Elm St, Boston, MA 02215" -272933,Google Phone,1,600,10/15/19 19:56,"898 12th St, San Francisco, CA 94016" -272934,Bose SoundSport Headphones,1,99.99,10/31/19 16:10,"754 Park St, San Francisco, CA 94016" -272935,AA Batteries (4-pack),1,3.84,10/23/19 19:01,"923 Center St, San Francisco, CA 94016" -272936,AAA Batteries (4-pack),1,2.99,10/22/19 08:17,"102 Walnut St, San Francisco, CA 94016" -272937,Vareebadd Phone,1,400,10/27/19 10:32,"907 Chestnut St, Portland, OR 97035" -272937,USB-C Charging Cable,1,11.95,10/27/19 10:32,"907 Chestnut St, Portland, OR 97035" -272938,Apple Airpods Headphones,1,150,10/15/19 17:27,"282 Johnson St, Seattle, WA 98101" -272939,USB-C Charging Cable,1,11.95,10/29/19 10:58,"231 Lincoln St, Boston, MA 02215" -272940,Lightning Charging Cable,1,14.95,10/05/19 22:31,"304 Spruce St, Los Angeles, CA 90001" -272941,Lightning Charging Cable,1,14.95,10/29/19 00:52,"98 Forest St, Seattle, WA 98101" -272941,Wired Headphones,2,11.99,10/29/19 00:52,"98 Forest St, Seattle, WA 98101" -272942,Wired Headphones,2,11.99,10/24/19 00:34,"565 River St, Boston, MA 02215" -272943,Google Phone,1,600,10/05/19 18:59,"450 9th St, New York City, NY 10001" -272944,34in Ultrawide Monitor,1,379.99,10/17/19 23:08,"628 5th St, Atlanta, GA 30301" -272945,USB-C Charging Cable,1,11.95,10/27/19 21:44,"50 Sunset St, New York City, NY 10001" -272946,Lightning Charging Cable,1,14.95,10/22/19 21:19,"380 Dogwood St, San Francisco, CA 94016" -272947,Wired Headphones,1,11.99,10/14/19 08:10,"416 Jefferson St, Austin, TX 73301" -272948,AAA Batteries (4-pack),1,2.99,10/12/19 22:56,"578 Johnson St, Boston, MA 02215" -272949,AAA Batteries (4-pack),1,2.99,10/12/19 17:48,"817 Forest St, New York City, NY 10001" -272950,34in Ultrawide Monitor,1,379.99,10/11/19 19:19,"104 Elm St, Los Angeles, CA 90001" -272951,AA Batteries (4-pack),1,3.84,10/11/19 21:18,"15 Wilson St, Austin, TX 73301" -272952,Lightning Charging Cable,1,14.95,10/07/19 12:15,"899 Willow St, San Francisco, CA 94016" -272953,Apple Airpods Headphones,1,150,10/30/19 23:20,"747 Sunset St, San Francisco, CA 94016" -272954,Apple Airpods Headphones,1,150,10/04/19 20:36,"206 Washington St, San Francisco, CA 94016" -272955,AAA Batteries (4-pack),1,2.99,10/15/19 10:07,"642 West St, San Francisco, CA 94016" -272956,Apple Airpods Headphones,1,150,10/04/19 06:07,"273 11th St, Seattle, WA 98101" -272957,AA Batteries (4-pack),1,3.84,11/01/19 00:00,"125 Sunset St, Seattle, WA 98101" -272958,Macbook Pro Laptop,1,1700,10/31/19 08:31,"604 7th St, Portland, OR 97035" -272959,USB-C Charging Cable,1,11.95,10/26/19 17:43,"430 Ridge St, San Francisco, CA 94016" -272960,AA Batteries (4-pack),1,3.84,10/11/19 19:03,"713 12th St, Portland, OR 97035" -272961,34in Ultrawide Monitor,1,379.99,10/27/19 07:27,"121 Walnut St, Portland, OR 97035" -272962,AA Batteries (4-pack),2,3.84,10/27/19 10:37,"915 Walnut St, Boston, MA 02215" -272963,AAA Batteries (4-pack),2,2.99,10/28/19 18:15,"43 Forest St, Los Angeles, CA 90001" -272964,20in Monitor,1,109.99,10/23/19 10:33,"722 Highland St, Boston, MA 02215" -272965,Bose SoundSport Headphones,1,99.99,10/07/19 19:09,"118 6th St, Boston, MA 02215" -272966,Lightning Charging Cable,1,14.95,10/07/19 14:45,"702 Hickory St, New York City, NY 10001" -272967,Apple Airpods Headphones,1,150,10/12/19 09:01,"125 Park St, Boston, MA 02215" -272968,27in 4K Gaming Monitor,1,389.99,10/08/19 23:57,"207 Jefferson St, Portland, OR 97035" -272969,USB-C Charging Cable,1,11.95,10/09/19 20:08,"722 11th St, San Francisco, CA 94016" -272970,Macbook Pro Laptop,1,1700,10/28/19 18:11,"565 Hill St, Atlanta, GA 30301" -272970,USB-C Charging Cable,1,11.95,10/28/19 18:11,"565 Hill St, Atlanta, GA 30301" -272971,AA Batteries (4-pack),1,3.84,10/28/19 16:29,"750 Hickory St, Seattle, WA 98101" -272972,AAA Batteries (4-pack),3,2.99,10/08/19 20:44,"300 Jackson St, Boston, MA 02215" -272973,Vareebadd Phone,1,400,10/18/19 08:26,"211 4th St, New York City, NY 10001" -272974,Google Phone,1,600,10/23/19 12:06,"235 Ridge St, San Francisco, CA 94016" -272975,iPhone,1,700,10/12/19 19:34,"715 West St, Portland, OR 97035" -272976,AAA Batteries (4-pack),1,2.99,10/15/19 18:05,"401 Pine St, Los Angeles, CA 90001" -272977,AAA Batteries (4-pack),4,2.99,10/30/19 02:59,"124 Chestnut St, Portland, OR 97035" -272978,AA Batteries (4-pack),2,3.84,10/14/19 16:29,"537 Pine St, San Francisco, CA 94016" -272979,Apple Airpods Headphones,1,150,10/09/19 22:09,"612 Main St, New York City, NY 10001" -272980,USB-C Charging Cable,1,11.95,10/16/19 06:23,"210 Wilson St, Los Angeles, CA 90001" -272981,AAA Batteries (4-pack),1,2.99,10/12/19 15:08,"373 Willow St, Austin, TX 73301" -272982,Google Phone,1,600,10/31/19 05:50,"541 Main St, Austin, TX 73301" -272982,USB-C Charging Cable,1,11.95,10/31/19 05:50,"541 Main St, Austin, TX 73301" -272983,Apple Airpods Headphones,1,150,10/30/19 21:07,"735 Lake St, San Francisco, CA 94016" -272984,AA Batteries (4-pack),1,3.84,10/05/19 17:57,"9 2nd St, Boston, MA 02215" -272985,AAA Batteries (4-pack),1,2.99,10/27/19 15:36,"779 Forest St, New York City, NY 10001" -272986,AAA Batteries (4-pack),3,2.99,10/15/19 14:27,"774 Madison St, Dallas, TX 75001" -272987,AAA Batteries (4-pack),1,2.99,10/11/19 15:20,"268 Spruce St, Portland, OR 97035" -272988,27in 4K Gaming Monitor,1,389.99,10/17/19 12:15,"883 Willow St, New York City, NY 10001" -272989,iPhone,1,700,10/05/19 09:58,"725 Highland St, San Francisco, CA 94016" -272990,Lightning Charging Cable,1,14.95,10/26/19 00:16,"115 Wilson St, Atlanta, GA 30301" -272991,USB-C Charging Cable,1,11.95,10/01/19 20:37,"967 14th St, Seattle, WA 98101" -272992,USB-C Charging Cable,1,11.95,10/26/19 15:19,"403 Chestnut St, Atlanta, GA 30301" -272993,Macbook Pro Laptop,1,1700,10/07/19 19:33,"679 5th St, Portland, OR 97035" -272994,iPhone,1,700,10/28/19 16:55,"78 11th St, Atlanta, GA 30301" -272995,Google Phone,1,600,10/15/19 12:42,"625 4th St, San Francisco, CA 94016" -272995,USB-C Charging Cable,1,11.95,10/15/19 12:42,"625 4th St, San Francisco, CA 94016" -272996,Bose SoundSport Headphones,1,99.99,10/26/19 19:04,"566 Forest St, New York City, NY 10001" -272997,AAA Batteries (4-pack),1,2.99,10/02/19 22:12,"687 Lincoln St, Los Angeles, CA 90001" -272998,Wired Headphones,1,11.99,10/07/19 14:04,"653 13th St, San Francisco, CA 94016" -272999,USB-C Charging Cable,1,11.95,10/19/19 21:55,"829 Sunset St, San Francisco, CA 94016" -273000,Bose SoundSport Headphones,1,99.99,10/25/19 19:52,"802 4th St, Los Angeles, CA 90001" -273001,AA Batteries (4-pack),1,3.84,10/26/19 16:46,"686 11th St, Dallas, TX 75001" -273002,Wired Headphones,1,11.99,10/17/19 18:58,"81 10th St, New York City, NY 10001" -273003,Flatscreen TV,1,300,10/01/19 17:55,"49 Dogwood St, Boston, MA 02215" -273004,USB-C Charging Cable,1,11.95,10/04/19 12:59,"26 Hickory St, New York City, NY 10001" -273005,Lightning Charging Cable,1,14.95,10/22/19 01:16,"9 Lincoln St, San Francisco, CA 94016" -273006,AAA Batteries (4-pack),1,2.99,10/07/19 14:50,"778 Wilson St, New York City, NY 10001" -273007,USB-C Charging Cable,1,11.95,10/23/19 18:03,"754 Madison St, Dallas, TX 75001" -273008,Bose SoundSport Headphones,1,99.99,10/10/19 16:42,"400 Cherry St, Seattle, WA 98101" -273009,iPhone,1,700,10/04/19 14:30,"913 7th St, Atlanta, GA 30301" -273010,Macbook Pro Laptop,1,1700,10/14/19 14:06,"894 Dogwood St, Seattle, WA 98101" -273011,USB-C Charging Cable,1,11.95,10/04/19 19:43,"111 Washington St, Austin, TX 73301" -273012,AAA Batteries (4-pack),3,2.99,10/05/19 17:54,"609 Dogwood St, Atlanta, GA 30301" -273013,27in FHD Monitor,1,149.99,10/27/19 17:02,"589 Center St, Portland, OR 97035" -273014,AAA Batteries (4-pack),1,2.99,10/22/19 13:29,"436 Maple St, Boston, MA 02215" -273015,Lightning Charging Cable,1,14.95,10/08/19 20:21,"142 Ridge St, Seattle, WA 98101" -273016,USB-C Charging Cable,1,11.95,10/18/19 13:58,"848 Center St, Los Angeles, CA 90001" -273017,Bose SoundSport Headphones,1,99.99,10/07/19 09:51,"597 Spruce St, Atlanta, GA 30301" -273018,Lightning Charging Cable,1,14.95,10/12/19 21:20,"572 Lake St, Seattle, WA 98101" -273019,Google Phone,1,600,10/11/19 19:03,"557 Johnson St, New York City, NY 10001" -273020,Wired Headphones,1,11.99,10/06/19 12:14,"772 Cherry St, Seattle, WA 98101" -273021,Wired Headphones,1,11.99,10/24/19 15:51,"500 8th St, Los Angeles, CA 90001" -273022,Wired Headphones,1,11.99,10/03/19 21:01,"657 Washington St, New York City, NY 10001" -273023,Lightning Charging Cable,1,14.95,10/07/19 11:38,"301 6th St, Los Angeles, CA 90001" -273024,USB-C Charging Cable,1,11.95,10/16/19 19:00,"736 Washington St, New York City, NY 10001" -273025,Lightning Charging Cable,2,14.95,10/21/19 15:26,"306 Chestnut St, San Francisco, CA 94016" -273026,34in Ultrawide Monitor,1,379.99,10/24/19 20:38,"126 4th St, Seattle, WA 98101" -273027,USB-C Charging Cable,1,11.95,10/26/19 23:45,"328 Dogwood St, Los Angeles, CA 90001" -273028,34in Ultrawide Monitor,1,379.99,10/02/19 12:55,"215 Ridge St, Portland, OR 97035" -273029,Flatscreen TV,1,300,10/05/19 00:03,"947 7th St, New York City, NY 10001" -273030,AA Batteries (4-pack),1,3.84,10/09/19 21:26,"529 Meadow St, Portland, OR 97035" -273031,AA Batteries (4-pack),1,3.84,10/08/19 19:36,"109 Johnson St, New York City, NY 10001" -273032,AAA Batteries (4-pack),1,2.99,10/17/19 21:17,"148 South St, Atlanta, GA 30301" -273033,Bose SoundSport Headphones,1,99.99,10/29/19 18:53,"456 Highland St, Seattle, WA 98101" -273034,Lightning Charging Cable,1,14.95,10/09/19 09:32,"776 14th St, Los Angeles, CA 90001" -273035,USB-C Charging Cable,2,11.95,10/10/19 11:35,"920 Walnut St, San Francisco, CA 94016" -273036,Lightning Charging Cable,1,14.95,10/24/19 20:16,"264 Highland St, Austin, TX 73301" -273037,27in 4K Gaming Monitor,1,389.99,10/16/19 09:57,"393 South St, Los Angeles, CA 90001" -273038,20in Monitor,1,109.99,10/06/19 20:18,"68 5th St, Dallas, TX 75001" -273039,Wired Headphones,1,11.99,10/28/19 17:21,"122 7th St, New York City, NY 10001" -273040,Vareebadd Phone,1,400,10/27/19 16:32,"441 Park St, Boston, MA 02215" -273041,20in Monitor,1,109.99,10/15/19 11:16,"765 14th St, San Francisco, CA 94016" -273042,AAA Batteries (4-pack),1,2.99,10/28/19 15:52,"495 7th St, New York City, NY 10001" -273043,27in 4K Gaming Monitor,1,389.99,10/27/19 17:00,"762 Hill St, San Francisco, CA 94016" -273044,Apple Airpods Headphones,1,150,10/25/19 19:54,"589 Adams St, San Francisco, CA 94016" -273045,Wired Headphones,1,11.99,10/03/19 15:45,"20 Lakeview St, Los Angeles, CA 90001" -273046,Apple Airpods Headphones,1,150,10/29/19 19:24,"881 14th St, San Francisco, CA 94016" -273047,USB-C Charging Cable,1,11.95,10/11/19 09:22,"743 Pine St, San Francisco, CA 94016" -273048,Lightning Charging Cable,1,14.95,10/16/19 09:36,"172 South St, Atlanta, GA 30301" -273049,Bose SoundSport Headphones,1,99.99,10/10/19 10:29,"589 Main St, Atlanta, GA 30301" -273050,Apple Airpods Headphones,1,150,10/21/19 13:50,"485 Elm St, Portland, OR 97035" -273051,AA Batteries (4-pack),1,3.84,10/23/19 08:19,"297 Wilson St, Los Angeles, CA 90001" -273052,Wired Headphones,1,11.99,10/26/19 22:41,"338 12th St, San Francisco, CA 94016" -273053,AA Batteries (4-pack),1,3.84,10/07/19 21:12,"300 Highland St, Los Angeles, CA 90001" -273054,iPhone,1,700,10/31/19 16:33,"876 8th St, Dallas, TX 75001" -273055,Wired Headphones,1,11.99,10/27/19 19:41,"17 Pine St, San Francisco, CA 94016" -273056,Wired Headphones,2,11.99,10/28/19 16:42,"741 1st St, San Francisco, CA 94016" -273057,Wired Headphones,2,11.99,10/02/19 11:19,"683 Lakeview St, Los Angeles, CA 90001" -273058,AAA Batteries (4-pack),2,2.99,10/14/19 10:53,"754 North St, Los Angeles, CA 90001" -273059,Apple Airpods Headphones,1,150,10/11/19 13:07,"690 Sunset St, Dallas, TX 75001" -273060,Wired Headphones,1,11.99,10/12/19 11:59,"59 Elm St, Atlanta, GA 30301" -273061,AAA Batteries (4-pack),1,2.99,10/16/19 16:05,"76 Willow St, San Francisco, CA 94016" -273062,34in Ultrawide Monitor,1,379.99,10/25/19 11:25,"691 10th St, San Francisco, CA 94016" -273063,ThinkPad Laptop,1,999.99,10/10/19 21:50,"737 Hickory St, Dallas, TX 75001" -273064,USB-C Charging Cable,1,11.95,10/09/19 10:52,"757 13th St, Dallas, TX 75001" -273065,AAA Batteries (4-pack),3,2.99,10/12/19 19:01,"706 Forest St, San Francisco, CA 94016" -273066,AAA Batteries (4-pack),1,2.99,10/03/19 11:50,"387 10th St, San Francisco, CA 94016" -273067,AAA Batteries (4-pack),6,2.99,10/12/19 11:26,"775 Willow St, New York City, NY 10001" -273068,USB-C Charging Cable,1,11.95,10/20/19 19:25,"490 Spruce St, Los Angeles, CA 90001" -273069,AAA Batteries (4-pack),1,2.99,10/29/19 13:06,"152 Madison St, New York City, NY 10001" -273070,20in Monitor,1,109.99,10/01/19 12:02,"484 Pine St, Boston, MA 02215" -273071,USB-C Charging Cable,1,11.95,10/30/19 16:46,"569 Jefferson St, Seattle, WA 98101" -273072,Flatscreen TV,1,300,10/29/19 19:34,"726 Ridge St, San Francisco, CA 94016" -273073,AA Batteries (4-pack),1,3.84,10/13/19 22:23,"671 Park St, Seattle, WA 98101" -273074,AAA Batteries (4-pack),2,2.99,10/05/19 14:14,"501 5th St, San Francisco, CA 94016" -273075,AA Batteries (4-pack),2,3.84,10/04/19 16:09,"779 Jackson St, San Francisco, CA 94016" -273076,34in Ultrawide Monitor,1,379.99,10/31/19 02:36,"660 Park St, San Francisco, CA 94016" -273077,AA Batteries (4-pack),1,3.84,10/17/19 16:13,"668 Walnut St, Los Angeles, CA 90001" -273078,Wired Headphones,2,11.99,10/27/19 12:27,"141 Spruce St, Portland, OR 97035" -273079,iPhone,1,700,10/04/19 19:19,"840 11th St, Los Angeles, CA 90001" -273079,Wired Headphones,1,11.99,10/04/19 19:19,"840 11th St, Los Angeles, CA 90001" -273080,AA Batteries (4-pack),1,3.84,10/02/19 00:09,"403 Pine St, San Francisco, CA 94016" -273081,34in Ultrawide Monitor,1,379.99,10/31/19 22:38,"404 Lake St, Seattle, WA 98101" -273082,USB-C Charging Cable,1,11.95,10/31/19 15:29,"130 West St, Boston, MA 02215" -273083,AA Batteries (4-pack),2,3.84,10/04/19 00:43,"618 Walnut St, Austin, TX 73301" -273084,AAA Batteries (4-pack),1,2.99,10/30/19 19:27,"76 Ridge St, Los Angeles, CA 90001" -273085,USB-C Charging Cable,1,11.95,10/24/19 19:10,"657 West St, San Francisco, CA 94016" -273086,Bose SoundSport Headphones,1,99.99,10/24/19 20:12,"573 Madison St, San Francisco, CA 94016" -273087,USB-C Charging Cable,1,11.95,10/15/19 23:24,"933 Lincoln St, Los Angeles, CA 90001" -273088,34in Ultrawide Monitor,1,379.99,10/18/19 13:59,"840 Lakeview St, Seattle, WA 98101" -273089,34in Ultrawide Monitor,1,379.99,10/30/19 19:28,"303 10th St, Dallas, TX 75001" -273090,Lightning Charging Cable,1,14.95,10/10/19 21:09,"33 Jackson St, Los Angeles, CA 90001" -273091,Lightning Charging Cable,2,14.95,10/10/19 15:43,"528 5th St, Seattle, WA 98101" -273092,iPhone,1,700,10/08/19 19:24,"414 Park St, Los Angeles, CA 90001" -273093,27in FHD Monitor,1,149.99,10/14/19 14:40,"474 West St, Seattle, WA 98101" -273094,iPhone,1,700,10/29/19 14:40,"661 5th St, Seattle, WA 98101" -273095,Apple Airpods Headphones,1,150,10/04/19 21:43,"607 Johnson St, Atlanta, GA 30301" -273096,AAA Batteries (4-pack),1,2.99,10/13/19 19:01,"467 6th St, Los Angeles, CA 90001" -273097,iPhone,1,700,10/28/19 10:40,"428 Lakeview St, Seattle, WA 98101" -273098,Apple Airpods Headphones,1,150,10/07/19 16:45,"70 River St, Seattle, WA 98101" -273099,USB-C Charging Cable,1,11.95,10/14/19 22:25,"81 4th St, San Francisco, CA 94016" -273100,AAA Batteries (4-pack),1,2.99,10/13/19 23:20,"938 Main St, Seattle, WA 98101" -273101,Bose SoundSport Headphones,1,99.99,10/06/19 19:34,"364 8th St, Los Angeles, CA 90001" -273102,Apple Airpods Headphones,1,150,10/14/19 16:45,"929 Lakeview St, Atlanta, GA 30301" -273103,USB-C Charging Cable,1,11.95,10/01/19 16:59,"766 10th St, Boston, MA 02215" -273104,Macbook Pro Laptop,1,1700,10/29/19 09:57,"530 North St, New York City, NY 10001" -273105,AAA Batteries (4-pack),2,2.99,10/17/19 02:01,"733 Lake St, Seattle, WA 98101" -273106,AA Batteries (4-pack),1,3.84,10/26/19 08:42,"979 Lakeview St, Dallas, TX 75001" -273107,AA Batteries (4-pack),1,3.84,10/01/19 10:50,"217 Hill St, Los Angeles, CA 90001" -273108,AA Batteries (4-pack),3,3.84,10/20/19 12:30,"646 Madison St, New York City, NY 10001" -273109,Apple Airpods Headphones,1,150,10/18/19 20:00,"90 Dogwood St, Dallas, TX 75001" -273110,USB-C Charging Cable,1,11.95,10/27/19 20:08,"556 6th St, Boston, MA 02215" -273111,iPhone,1,700,10/30/19 11:33,"249 North St, Atlanta, GA 30301" -273112,AA Batteries (4-pack),2,3.84,10/22/19 12:00,"144 5th St, New York City, NY 10001" -273113,20in Monitor,1,109.99,10/01/19 05:24,"472 Cedar St, Los Angeles, CA 90001" -273114,iPhone,1,700,10/14/19 12:46,"590 Lakeview St, Seattle, WA 98101" -273114,Lightning Charging Cable,1,14.95,10/14/19 12:46,"590 Lakeview St, Seattle, WA 98101" -273115,Bose SoundSport Headphones,2,99.99,10/31/19 12:08,"121 Main St, San Francisco, CA 94016" -273116,Google Phone,1,600,10/11/19 18:36,"791 Lakeview St, San Francisco, CA 94016" -273117,Flatscreen TV,1,300,10/11/19 20:08,"274 North St, Atlanta, GA 30301" -273118,Google Phone,1,600,10/04/19 12:05,"439 Cedar St, New York City, NY 10001" -273119,Lightning Charging Cable,1,14.95,10/27/19 13:47,"300 Main St, New York City, NY 10001" -273120,AA Batteries (4-pack),1,3.84,10/28/19 16:09,"955 Hickory St, Los Angeles, CA 90001" -273121,34in Ultrawide Monitor,1,379.99,10/31/19 09:41,"713 1st St, New York City, NY 10001" -273122,Wired Headphones,1,11.99,10/20/19 20:01,"425 River St, New York City, NY 10001" -273123,ThinkPad Laptop,1,999.99,10/10/19 18:46,"110 Willow St, New York City, NY 10001" -273124,Bose SoundSport Headphones,1,99.99,10/29/19 11:06,"98 Meadow St, New York City, NY 10001" -273125,AA Batteries (4-pack),1,3.84,10/30/19 13:27,"588 8th St, New York City, NY 10001" -273126,iPhone,1,700,10/10/19 11:45,"85 Jefferson St, New York City, NY 10001" -273127,USB-C Charging Cable,2,11.95,10/31/19 17:11,"486 5th St, Dallas, TX 75001" -273128,AAA Batteries (4-pack),4,2.99,10/05/19 12:44,"222 Highland St, Los Angeles, CA 90001" -273129,AA Batteries (4-pack),2,3.84,10/12/19 18:07,"147 Jefferson St, Dallas, TX 75001" -273130,Bose SoundSport Headphones,1,99.99,10/02/19 16:28,"278 14th St, New York City, NY 10001" -273131,Lightning Charging Cable,1,14.95,10/07/19 12:25,"215 4th St, San Francisco, CA 94016" -273132,AA Batteries (4-pack),1,3.84,10/06/19 16:57,"648 Forest St, San Francisco, CA 94016" -273133,Bose SoundSport Headphones,1,99.99,10/07/19 08:06,"358 Maple St, Los Angeles, CA 90001" -273134,Flatscreen TV,1,300,10/07/19 13:26,"933 Jackson St, San Francisco, CA 94016" -273135,Lightning Charging Cable,1,14.95,10/01/19 16:33,"621 Jackson St, New York City, NY 10001" -273136,Google Phone,1,600,10/10/19 22:04,"304 4th St, Atlanta, GA 30301" -273137,USB-C Charging Cable,1,11.95,10/19/19 11:00,"418 River St, Seattle, WA 98101" -273138,Google Phone,1,600,10/26/19 14:50,"142 Wilson St, Portland, OR 97035" -273139,27in FHD Monitor,1,149.99,10/11/19 13:55,"642 Park St, New York City, NY 10001" -273140,Apple Airpods Headphones,1,150,10/17/19 00:34,"370 Wilson St, Dallas, TX 75001" -273141,Lightning Charging Cable,1,14.95,10/11/19 15:47,"898 9th St, Seattle, WA 98101" -273142,Apple Airpods Headphones,1,150,10/18/19 00:59,"45 5th St, San Francisco, CA 94016" -273143,Google Phone,1,600,10/24/19 11:49,"205 Cherry St, San Francisco, CA 94016" -273144,20in Monitor,1,109.99,10/13/19 01:57,"194 8th St, Atlanta, GA 30301" -273145,Wired Headphones,1,11.99,10/12/19 10:00,"665 Madison St, Seattle, WA 98101" -273146,LG Dryer,1,600.0,10/13/19 10:50,"619 Cedar St, San Francisco, CA 94016" -273147,USB-C Charging Cable,1,11.95,10/27/19 15:25,"937 Pine St, San Francisco, CA 94016" -273148,34in Ultrawide Monitor,1,379.99,10/05/19 05:14,"199 Washington St, Seattle, WA 98101" -273149,Apple Airpods Headphones,1,150,10/27/19 08:42,"140 7th St, San Francisco, CA 94016" -273150,Lightning Charging Cable,1,14.95,10/12/19 19:08,"781 2nd St, San Francisco, CA 94016" -273151,Bose SoundSport Headphones,1,99.99,10/13/19 15:00,"295 11th St, Seattle, WA 98101" -273152,iPhone,1,700,10/14/19 07:58,"322 Johnson St, New York City, NY 10001" -273152,Lightning Charging Cable,1,14.95,10/14/19 07:58,"322 Johnson St, New York City, NY 10001" -273153,AAA Batteries (4-pack),1,2.99,10/13/19 12:27,"737 Hill St, New York City, NY 10001" -273154,Wired Headphones,1,11.99,10/25/19 22:53,"626 10th St, New York City, NY 10001" -273155,Wired Headphones,1,11.99,10/04/19 19:00,"664 Church St, Boston, MA 02215" -273156,Lightning Charging Cable,1,14.95,10/13/19 14:11,"630 South St, Portland, OR 97035" -273157,USB-C Charging Cable,1,11.95,10/24/19 10:13,"551 9th St, San Francisco, CA 94016" -273158,Lightning Charging Cable,1,14.95,10/15/19 14:40,"616 5th St, Los Angeles, CA 90001" -273159,Bose SoundSport Headphones,1,99.99,10/18/19 11:27,"916 Washington St, Seattle, WA 98101" -273160,Lightning Charging Cable,1,14.95,10/04/19 17:37,"727 8th St, San Francisco, CA 94016" -273161,AAA Batteries (4-pack),1,2.99,10/27/19 22:38,"371 13th St, San Francisco, CA 94016" -273162,Apple Airpods Headphones,1,150,10/21/19 18:11,"477 7th St, Los Angeles, CA 90001" -273163,Apple Airpods Headphones,1,150,10/02/19 03:42,"73 South St, San Francisco, CA 94016" -273164,AA Batteries (4-pack),1,3.84,10/05/19 12:43,"969 Highland St, New York City, NY 10001" -273165,AAA Batteries (4-pack),1,2.99,10/27/19 12:15,"208 Ridge St, San Francisco, CA 94016" -273166,Apple Airpods Headphones,1,150,10/17/19 13:52,"492 Lincoln St, Atlanta, GA 30301" -273167,Apple Airpods Headphones,2,150,10/21/19 10:15,"656 Main St, Dallas, TX 75001" -273168,Bose SoundSport Headphones,1,99.99,10/09/19 20:39,"926 8th St, San Francisco, CA 94016" -273169,Lightning Charging Cable,1,14.95,10/29/19 19:36,"246 Washington St, Dallas, TX 75001" -273170,Wired Headphones,1,11.99,10/19/19 19:00,"291 Chestnut St, San Francisco, CA 94016" -273171,AA Batteries (4-pack),1,3.84,10/29/19 03:13,"350 14th St, San Francisco, CA 94016" -273172,27in 4K Gaming Monitor,1,389.99,10/13/19 19:17,"361 Lake St, Austin, TX 73301" -273173,Wired Headphones,1,11.99,10/11/19 10:09,"967 Hill St, Boston, MA 02215" -273174,Lightning Charging Cable,1,14.95,10/17/19 19:12,"676 Willow St, Los Angeles, CA 90001" -273175,20in Monitor,1,109.99,10/21/19 11:51,"265 14th St, Dallas, TX 75001" -273176,27in FHD Monitor,1,149.99,10/06/19 20:41,"509 Center St, Boston, MA 02215" -273177,AA Batteries (4-pack),2,3.84,10/03/19 06:27,"953 Lincoln St, San Francisco, CA 94016" -273178,27in FHD Monitor,1,149.99,10/31/19 17:15,"992 Park St, Austin, TX 73301" -273179,ThinkPad Laptop,1,999.99,10/19/19 00:01,"185 Church St, Atlanta, GA 30301" -273180,ThinkPad Laptop,1,999.99,10/06/19 10:42,"704 Spruce St, Austin, TX 73301" -273181,Google Phone,1,600,10/16/19 06:15,"61 Main St, San Francisco, CA 94016" -273181,USB-C Charging Cable,1,11.95,10/16/19 06:15,"61 Main St, San Francisco, CA 94016" -273182,USB-C Charging Cable,1,11.95,10/10/19 08:13,"702 13th St, Dallas, TX 75001" -273183,AAA Batteries (4-pack),1,2.99,10/12/19 18:01,"344 Johnson St, San Francisco, CA 94016" -273184,Macbook Pro Laptop,1,1700,10/22/19 15:34,"829 12th St, New York City, NY 10001" -273184,Bose SoundSport Headphones,1,99.99,10/22/19 15:34,"829 12th St, New York City, NY 10001" -273185,AAA Batteries (4-pack),1,2.99,10/17/19 03:33,"252 West St, San Francisco, CA 94016" -273186,Wired Headphones,1,11.99,10/04/19 10:44,"613 Pine St, San Francisco, CA 94016" -273187,34in Ultrawide Monitor,1,379.99,10/06/19 15:06,"510 North St, Austin, TX 73301" -273188,USB-C Charging Cable,1,11.95,10/08/19 23:15,"97 Chestnut St, Dallas, TX 75001" -273189,Wired Headphones,1,11.99,10/27/19 10:39,"70 Church St, Los Angeles, CA 90001" -273190,Apple Airpods Headphones,1,150,10/08/19 19:25,"730 Hill St, Dallas, TX 75001" -273191,AA Batteries (4-pack),1,3.84,10/05/19 11:43,"450 Johnson St, Seattle, WA 98101" -273192,Macbook Pro Laptop,1,1700,10/17/19 15:58,"10 Walnut St, New York City, NY 10001" -273193,AAA Batteries (4-pack),2,2.99,10/17/19 14:18,"644 6th St, Dallas, TX 75001" -273194,Apple Airpods Headphones,1,150,10/22/19 16:39,"336 Ridge St, Seattle, WA 98101" -273195,iPhone,1,700,10/07/19 18:56,"465 11th St, New York City, NY 10001" -273196,AAA Batteries (4-pack),3,2.99,10/08/19 16:17,"47 Highland St, Seattle, WA 98101" -273197,iPhone,1,700,10/01/19 16:16,"270 South St, Seattle, WA 98101" -273198,27in 4K Gaming Monitor,1,389.99,10/02/19 18:43,"401 1st St, Portland, OR 97035" -273199,Macbook Pro Laptop,1,1700,10/10/19 23:13,"67 13th St, New York City, NY 10001" -273200,Lightning Charging Cable,1,14.95,10/01/19 15:31,"703 Maple St, San Francisco, CA 94016" -273201,Apple Airpods Headphones,1,150,10/03/19 14:24,"472 Ridge St, Boston, MA 02215" -273202,AA Batteries (4-pack),1,3.84,10/10/19 11:09,"228 Meadow St, Boston, MA 02215" -273203,AAA Batteries (4-pack),1,2.99,10/19/19 11:21,"88 Washington St, Atlanta, GA 30301" -273204,iPhone,1,700,10/14/19 17:43,"462 Jefferson St, Boston, MA 02215" -273205,USB-C Charging Cable,1,11.95,10/30/19 11:49,"849 Washington St, Los Angeles, CA 90001" -273206,Apple Airpods Headphones,1,150,10/27/19 18:16,"135 11th St, Los Angeles, CA 90001" -273207,AA Batteries (4-pack),1,3.84,10/28/19 16:00,"388 Lakeview St, New York City, NY 10001" -273208,AAA Batteries (4-pack),1,2.99,10/02/19 15:10,"724 North St, Boston, MA 02215" -273209,AAA Batteries (4-pack),1,2.99,10/10/19 11:23,"260 Lake St, Boston, MA 02215" -273210,Apple Airpods Headphones,1,150,10/10/19 10:58,"795 10th St, Dallas, TX 75001" -273211,AAA Batteries (4-pack),1,2.99,10/10/19 20:00,"186 13th St, San Francisco, CA 94016" -273212,USB-C Charging Cable,1,11.95,10/10/19 10:05,"845 2nd St, Portland, OR 97035" -273213,AAA Batteries (4-pack),1,2.99,10/30/19 16:54,"382 12th St, Los Angeles, CA 90001" -273214,AAA Batteries (4-pack),1,2.99,10/03/19 17:46,"941 13th St, San Francisco, CA 94016" -273215,AA Batteries (4-pack),1,3.84,10/06/19 16:44,"315 Main St, Los Angeles, CA 90001" -273216,iPhone,1,700,10/29/19 18:46,"435 Cherry St, Seattle, WA 98101" -273217,AA Batteries (4-pack),1,3.84,10/08/19 19:35,"640 12th St, San Francisco, CA 94016" -273218,AAA Batteries (4-pack),1,2.99,10/25/19 20:37,"733 13th St, Boston, MA 02215" -273219,AA Batteries (4-pack),1,3.84,10/02/19 11:54,"597 9th St, Los Angeles, CA 90001" -273220,27in 4K Gaming Monitor,1,389.99,10/24/19 18:46,"969 Maple St, Los Angeles, CA 90001" -273221,Lightning Charging Cable,1,14.95,10/12/19 20:17,"428 14th St, Boston, MA 02215" -273222,USB-C Charging Cable,2,11.95,10/15/19 22:52,"922 Spruce St, New York City, NY 10001" -273223,27in FHD Monitor,1,149.99,10/15/19 21:48,"529 Lakeview St, Dallas, TX 75001" -273224,Apple Airpods Headphones,1,150,10/02/19 21:44,"686 Lake St, Los Angeles, CA 90001" -273225,Lightning Charging Cable,1,14.95,10/01/19 15:44,"429 13th St, San Francisco, CA 94016" -273226,ThinkPad Laptop,1,999.99,10/01/19 17:43,"61 13th St, New York City, NY 10001" -273227,AAA Batteries (4-pack),1,2.99,10/30/19 12:16,"616 Cedar St, New York City, NY 10001" -273228,Flatscreen TV,1,300,10/09/19 11:10,"501 Wilson St, Austin, TX 73301" -273229,Wired Headphones,1,11.99,10/18/19 18:52,"417 Adams St, Austin, TX 73301" -273230,Bose SoundSport Headphones,1,99.99,10/07/19 12:36,"185 13th St, Portland, OR 97035" -273231,AA Batteries (4-pack),1,3.84,10/06/19 13:38,"11 Washington St, Seattle, WA 98101" -273232,AA Batteries (4-pack),1,3.84,10/01/19 18:50,"607 Spruce St, New York City, NY 10001" -273233,34in Ultrawide Monitor,1,379.99,10/16/19 10:07,"502 Sunset St, New York City, NY 10001" -273234,Lightning Charging Cable,1,14.95,10/31/19 14:11,"994 Hickory St, Boston, MA 02215" -273235,Lightning Charging Cable,1,14.95,10/28/19 18:45,"468 2nd St, San Francisco, CA 94016" -273236,27in FHD Monitor,1,149.99,10/01/19 10:38,"67 1st St, New York City, NY 10001" -273236,AA Batteries (4-pack),1,3.84,10/01/19 10:38,"67 1st St, New York City, NY 10001" -273237,AAA Batteries (4-pack),1,2.99,10/29/19 17:33,"664 North St, Boston, MA 02215" -273238,AAA Batteries (4-pack),2,2.99,10/02/19 22:16,"248 Elm St, Los Angeles, CA 90001" -273239,20in Monitor,1,109.99,10/20/19 05:08,"157 11th St, San Francisco, CA 94016" -273240,Flatscreen TV,1,300,10/16/19 09:01,"77 4th St, New York City, NY 10001" -273241,AA Batteries (4-pack),1,3.84,10/07/19 16:54,"886 North St, Austin, TX 73301" -273242,Lightning Charging Cable,1,14.95,10/18/19 16:50,"237 Lake St, San Francisco, CA 94016" -273243,AA Batteries (4-pack),2,3.84,10/02/19 12:47,"146 West St, Dallas, TX 75001" -273244,Lightning Charging Cable,1,14.95,10/27/19 12:03,"172 Meadow St, Seattle, WA 98101" -273245,AA Batteries (4-pack),1,3.84,10/31/19 14:36,"218 Chestnut St, New York City, NY 10001" -273246,Bose SoundSport Headphones,1,99.99,10/30/19 20:25,"319 Church St, Portland, OR 97035" -273247,Apple Airpods Headphones,1,150,10/31/19 12:12,"310 Dogwood St, Dallas, TX 75001" -273248,AA Batteries (4-pack),1,3.84,10/22/19 22:06,"159 Wilson St, Los Angeles, CA 90001" -273249,AAA Batteries (4-pack),1,2.99,10/12/19 09:51,"796 Elm St, Los Angeles, CA 90001" -273250,iPhone,1,700,10/12/19 21:15,"453 Cedar St, San Francisco, CA 94016" -273250,Lightning Charging Cable,1,14.95,10/12/19 21:15,"453 Cedar St, San Francisco, CA 94016" -273251,USB-C Charging Cable,1,11.95,10/12/19 15:46,"974 12th St, Boston, MA 02215" -273252,Flatscreen TV,1,300,10/29/19 21:46,"194 Chestnut St, Austin, TX 73301" -273253,27in FHD Monitor,1,149.99,10/19/19 06:40,"487 Lincoln St, New York City, NY 10001" -273254,34in Ultrawide Monitor,1,379.99,10/18/19 14:20,"582 Highland St, Austin, TX 73301" -273255,USB-C Charging Cable,1,11.95,10/23/19 10:47,"830 13th St, Los Angeles, CA 90001" -273256,Wired Headphones,1,11.99,10/03/19 07:02,"763 Highland St, Portland, OR 97035" -273257,AA Batteries (4-pack),1,3.84,10/18/19 14:40,"952 West St, Seattle, WA 98101" -273258,27in FHD Monitor,1,149.99,10/07/19 19:30,"6 West St, Boston, MA 02215" -273259,AA Batteries (4-pack),1,3.84,10/16/19 19:50,"624 10th St, San Francisco, CA 94016" -273260,Lightning Charging Cable,1,14.95,10/30/19 18:49,"357 Main St, San Francisco, CA 94016" -273261,USB-C Charging Cable,1,11.95,10/22/19 19:53,"262 Hickory St, Los Angeles, CA 90001" -273262,Flatscreen TV,1,300,11/01/19 01:26,"14 5th St, Portland, OR 97035" -273263,Macbook Pro Laptop,1,1700,10/17/19 20:06,"709 Hickory St, New York City, NY 10001" -273264,Lightning Charging Cable,1,14.95,10/26/19 17:48,"36 Hickory St, Portland, OR 97035" -273265,Macbook Pro Laptop,1,1700,10/20/19 21:52,"527 13th St, Boston, MA 02215" -273266,Wired Headphones,1,11.99,10/28/19 09:04,"823 Ridge St, Seattle, WA 98101" -273267,USB-C Charging Cable,1,11.95,10/11/19 21:45,"950 Johnson St, San Francisco, CA 94016" -273268,Lightning Charging Cable,1,14.95,10/27/19 23:12,"407 12th St, Los Angeles, CA 90001" -273269,iPhone,1,700,10/24/19 05:33,"498 11th St, Los Angeles, CA 90001" -273270,AAA Batteries (4-pack),1,2.99,10/13/19 21:56,"815 Willow St, New York City, NY 10001" -273271,Vareebadd Phone,1,400,10/27/19 23:51,"40 Main St, Boston, MA 02215" -273272,USB-C Charging Cable,1,11.95,10/10/19 01:19,"92 Wilson St, San Francisco, CA 94016" -273273,Apple Airpods Headphones,1,150,10/20/19 11:57,"730 Hickory St, Boston, MA 02215" -273274,iPhone,1,700,10/16/19 15:10,"207 West St, Atlanta, GA 30301" -273275,AA Batteries (4-pack),1,3.84,10/31/19 08:46,"242 Chestnut St, Los Angeles, CA 90001" -273276,Lightning Charging Cable,1,14.95,10/06/19 20:08,"946 Jefferson St, New York City, NY 10001" -273277,Lightning Charging Cable,1,14.95,10/11/19 19:34,"647 Cedar St, San Francisco, CA 94016" -273278,27in 4K Gaming Monitor,1,389.99,10/28/19 19:54,"118 Meadow St, Seattle, WA 98101" -273279,Bose SoundSport Headphones,1,99.99,10/10/19 20:58,"549 Wilson St, San Francisco, CA 94016" -273280,34in Ultrawide Monitor,1,379.99,10/20/19 19:26,"563 Elm St, Seattle, WA 98101" -273281,27in 4K Gaming Monitor,1,389.99,10/13/19 11:23,"124 Chestnut St, Dallas, TX 75001" -273282,Wired Headphones,1,11.99,10/21/19 17:53,"443 Main St, Austin, TX 73301" -273283,USB-C Charging Cable,1,11.95,10/28/19 16:15,"298 Lincoln St, Los Angeles, CA 90001" -273284,27in FHD Monitor,1,149.99,10/05/19 16:19,"609 7th St, New York City, NY 10001" -273285,AA Batteries (4-pack),2,3.84,10/25/19 22:52,"406 7th St, Dallas, TX 75001" -273286,AAA Batteries (4-pack),1,2.99,10/20/19 18:15,"297 10th St, Boston, MA 02215" -273287,AAA Batteries (4-pack),2,2.99,10/26/19 19:56,"806 Cedar St, Atlanta, GA 30301" -273288,Bose SoundSport Headphones,1,99.99,10/14/19 10:46,"727 Lincoln St, Dallas, TX 75001" -273289,27in FHD Monitor,1,149.99,10/23/19 20:58,"759 Jackson St, New York City, NY 10001" -273290,Lightning Charging Cable,1,14.95,10/17/19 15:14,"30 Main St, San Francisco, CA 94016" -273291,27in 4K Gaming Monitor,1,389.99,10/26/19 08:30,"609 12th St, San Francisco, CA 94016" -273292,AA Batteries (4-pack),2,3.84,10/18/19 10:34,"891 Main St, Portland, OR 97035" -273293,USB-C Charging Cable,1,11.95,10/14/19 13:34,"73 2nd St, Austin, TX 73301" -273294,AAA Batteries (4-pack),4,2.99,10/23/19 12:24,"760 Jefferson St, Boston, MA 02215" -273294,AA Batteries (4-pack),1,3.84,10/23/19 12:24,"760 Jefferson St, Boston, MA 02215" -273295,27in FHD Monitor,1,149.99,10/26/19 05:37,"439 7th St, San Francisco, CA 94016" -273296,Lightning Charging Cable,1,14.95,10/25/19 08:06,"642 Chestnut St, San Francisco, CA 94016" -273297,AAA Batteries (4-pack),4,2.99,10/16/19 22:09,"569 Cherry St, Atlanta, GA 30301" -273298,ThinkPad Laptop,1,999.99,10/18/19 09:03,"450 Maple St, San Francisco, CA 94016" -273299,iPhone,1,700,10/27/19 11:32,"362 Jefferson St, San Francisco, CA 94016" -273300,27in 4K Gaming Monitor,1,389.99,10/11/19 16:20,"590 Washington St, Boston, MA 02215" -273301,27in FHD Monitor,1,149.99,10/03/19 14:54,"991 Spruce St, San Francisco, CA 94016" -273302,27in FHD Monitor,1,149.99,10/16/19 18:16,"395 4th St, Boston, MA 02215" -273303,Google Phone,1,600,10/02/19 06:58,"377 North St, Seattle, WA 98101" -273304,AAA Batteries (4-pack),1,2.99,10/12/19 22:26,"544 Madison St, New York City, NY 10001" -273305,Wired Headphones,1,11.99,10/28/19 01:20,"854 8th St, Los Angeles, CA 90001" -273306,27in FHD Monitor,1,149.99,10/10/19 16:52,"816 South St, Dallas, TX 75001" -273307,Vareebadd Phone,1,400,10/20/19 12:30,"347 Sunset St, Dallas, TX 75001" -273308,27in FHD Monitor,1,149.99,10/12/19 18:26,"799 12th St, Portland, OR 97035" -273309,USB-C Charging Cable,1,11.95,10/30/19 23:19,"824 Church St, Austin, TX 73301" -273310,USB-C Charging Cable,1,11.95,10/15/19 18:30,"844 6th St, Portland, OR 97035" -273311,USB-C Charging Cable,1,11.95,10/25/19 13:55,"548 North St, Atlanta, GA 30301" -273312,Apple Airpods Headphones,1,150,10/17/19 16:35,"305 Sunset St, San Francisco, CA 94016" -273313,USB-C Charging Cable,1,11.95,10/04/19 19:49,"437 Washington St, San Francisco, CA 94016" -273314,Lightning Charging Cable,1,14.95,10/07/19 22:42,"813 Jackson St, Austin, TX 73301" -273315,USB-C Charging Cable,2,11.95,10/16/19 18:44,"127 10th St, San Francisco, CA 94016" -273316,iPhone,1,700,10/18/19 13:59,"708 Center St, Los Angeles, CA 90001" -273317,Lightning Charging Cable,1,14.95,10/03/19 17:03,"969 Hill St, Los Angeles, CA 90001" -273318,Apple Airpods Headphones,1,150,10/11/19 11:52,"800 Lincoln St, San Francisco, CA 94016" -273319,AA Batteries (4-pack),1,3.84,10/01/19 10:42,"728 Cherry St, Seattle, WA 98101" -273320,ThinkPad Laptop,1,999.99,10/20/19 13:06,"677 Lakeview St, San Francisco, CA 94016" -273321,Lightning Charging Cable,1,14.95,10/28/19 17:56,"788 Adams St, Atlanta, GA 30301" -273322,Bose SoundSport Headphones,1,99.99,10/30/19 18:12,"424 Church St, San Francisco, CA 94016" -273323,Bose SoundSport Headphones,1,99.99,10/25/19 15:42,"493 Main St, Seattle, WA 98101" -273324,Lightning Charging Cable,1,14.95,10/05/19 14:44,"50 11th St, San Francisco, CA 94016" -273325,Bose SoundSport Headphones,1,99.99,10/23/19 09:38,"871 Lake St, New York City, NY 10001" -273326,Flatscreen TV,1,300,10/30/19 16:55,"825 4th St, Dallas, TX 75001" -273327,Apple Airpods Headphones,1,150,10/11/19 20:11,"635 South St, New York City, NY 10001" -273328,Google Phone,1,600,10/18/19 12:36,"853 Willow St, New York City, NY 10001" -273328,USB-C Charging Cable,1,11.95,10/18/19 12:36,"853 Willow St, New York City, NY 10001" -273329,20in Monitor,1,109.99,10/17/19 16:39,"177 Meadow St, Dallas, TX 75001" -273330,27in FHD Monitor,1,149.99,10/25/19 11:33,"7 7th St, San Francisco, CA 94016" -273331,AAA Batteries (4-pack),1,2.99,10/08/19 17:33,"723 Church St, Atlanta, GA 30301" -273332,Wired Headphones,1,11.99,10/18/19 20:45,"294 Cedar St, San Francisco, CA 94016" -273333,AA Batteries (4-pack),1,3.84,10/24/19 11:46,"543 Willow St, Dallas, TX 75001" -273334,Lightning Charging Cable,1,14.95,10/01/19 18:19,"691 Ridge St, Boston, MA 02215" -273335,Wired Headphones,1,11.99,10/14/19 13:25,"827 Sunset St, San Francisco, CA 94016" -273336,Lightning Charging Cable,1,14.95,10/10/19 11:36,"195 Lincoln St, Boston, MA 02215" -273337,Apple Airpods Headphones,1,150,10/18/19 02:55,"775 Dogwood St, San Francisco, CA 94016" -273338,AA Batteries (4-pack),1,3.84,10/14/19 10:35,"640 8th St, Atlanta, GA 30301" -273339,Lightning Charging Cable,1,14.95,10/01/19 23:47,"522 Dogwood St, Dallas, TX 75001" -273340,AA Batteries (4-pack),1,3.84,10/08/19 13:39,"928 Wilson St, San Francisco, CA 94016" -273341,AA Batteries (4-pack),1,3.84,10/09/19 17:04,"305 Jackson St, Portland, OR 97035" -273342,Macbook Pro Laptop,1,1700,10/26/19 20:11,"516 6th St, Los Angeles, CA 90001" -273343,Flatscreen TV,1,300,10/17/19 15:09,"762 Forest St, Seattle, WA 98101" -273344,AAA Batteries (4-pack),1,2.99,10/23/19 09:26,"681 Lincoln St, San Francisco, CA 94016" -273345,Bose SoundSport Headphones,1,99.99,10/23/19 10:37,"768 Madison St, San Francisco, CA 94016" -273346,AAA Batteries (4-pack),1,2.99,10/21/19 09:47,"615 Sunset St, Los Angeles, CA 90001" -273347,AA Batteries (4-pack),1,3.84,10/10/19 11:37,"352 North St, Austin, TX 73301" -273348,Lightning Charging Cable,1,14.95,10/26/19 10:51,"713 Johnson St, Los Angeles, CA 90001" -273349,20in Monitor,1,109.99,10/30/19 13:25,"538 Spruce St, San Francisco, CA 94016" -273350,20in Monitor,1,109.99,10/20/19 06:52,"124 Chestnut St, New York City, NY 10001" -273351,27in FHD Monitor,1,149.99,10/28/19 18:02,"294 Church St, San Francisco, CA 94016" -273352,Macbook Pro Laptop,1,1700,10/26/19 11:30,"234 Lake St, Los Angeles, CA 90001" -273353,AA Batteries (4-pack),1,3.84,10/24/19 22:41,"818 1st St, Portland, OR 97035" -273354,USB-C Charging Cable,1,11.95,10/09/19 16:24,"203 Wilson St, Seattle, WA 98101" -273355,Lightning Charging Cable,1,14.95,10/07/19 01:53,"565 Church St, Boston, MA 02215" -273356,AA Batteries (4-pack),1,3.84,10/07/19 21:20,"660 Highland St, San Francisco, CA 94016" -273357,USB-C Charging Cable,1,11.95,10/26/19 17:38,"615 Ridge St, San Francisco, CA 94016" -273358,Lightning Charging Cable,1,14.95,10/04/19 21:36,"992 North St, San Francisco, CA 94016" -273359,Lightning Charging Cable,1,14.95,10/05/19 19:22,"71 Hill St, Atlanta, GA 30301" -273360,27in 4K Gaming Monitor,1,389.99,10/08/19 18:37,"632 Lakeview St, Los Angeles, CA 90001" -273361,Google Phone,1,600,10/22/19 04:24,"854 Cedar St, Los Angeles, CA 90001" -273362,USB-C Charging Cable,1,11.95,10/05/19 22:48,"874 Main St, San Francisco, CA 94016" -273363,AA Batteries (4-pack),2,3.84,10/06/19 14:52,"547 Meadow St, Atlanta, GA 30301" -273364,AAA Batteries (4-pack),2,2.99,10/04/19 10:30,"458 Willow St, San Francisco, CA 94016" -273365,Wired Headphones,1,11.99,10/26/19 19:58,"940 6th St, Atlanta, GA 30301" -273366,Lightning Charging Cable,1,14.95,10/01/19 16:51,"107 South St, Atlanta, GA 30301" -273367,Apple Airpods Headphones,1,150,10/11/19 18:47,"142 Main St, Austin, TX 73301" -273368,Apple Airpods Headphones,1,150,10/25/19 19:30,"144 5th St, Dallas, TX 75001" -273369,27in 4K Gaming Monitor,1,389.99,10/08/19 07:20,"547 9th St, Seattle, WA 98101" -273370,Lightning Charging Cable,1,14.95,10/14/19 13:28,"527 Highland St, San Francisco, CA 94016" -273371,Wired Headphones,1,11.99,10/18/19 22:51,"752 5th St, New York City, NY 10001" -273372,34in Ultrawide Monitor,1,379.99,10/29/19 14:17,"736 5th St, Dallas, TX 75001" -273373,Flatscreen TV,1,300,10/30/19 09:30,"117 North St, San Francisco, CA 94016" -273374,27in 4K Gaming Monitor,1,389.99,10/01/19 07:25,"215 Walnut St, Los Angeles, CA 90001" -273375,USB-C Charging Cable,2,11.95,10/17/19 14:34,"429 River St, Seattle, WA 98101" -273376,Lightning Charging Cable,1,14.95,10/07/19 18:19,"865 Spruce St, New York City, NY 10001" -273377,USB-C Charging Cable,1,11.95,10/31/19 19:17,"630 Lincoln St, New York City, NY 10001" -273378,Apple Airpods Headphones,1,150,10/03/19 13:14,"963 West St, Boston, MA 02215" -273379,27in 4K Gaming Monitor,1,389.99,10/11/19 11:47,"529 Lincoln St, Boston, MA 02215" -273380,Lightning Charging Cable,1,14.95,10/24/19 18:19,"795 4th St, San Francisco, CA 94016" -273381,Wired Headphones,1,11.99,10/12/19 16:30,"328 Adams St, San Francisco, CA 94016" -273382,Bose SoundSport Headphones,1,99.99,10/21/19 21:47,"791 Cherry St, New York City, NY 10001" -273383,AAA Batteries (4-pack),1,2.99,10/19/19 13:17,"350 Lake St, San Francisco, CA 94016" -273384,Lightning Charging Cable,1,14.95,10/01/19 17:45,"174 Maple St, Dallas, TX 75001" -273385,iPhone,1,700,10/20/19 13:15,"328 Pine St, New York City, NY 10001" -273386,AA Batteries (4-pack),1,3.84,10/18/19 12:28,"510 13th St, San Francisco, CA 94016" -273387,Lightning Charging Cable,1,14.95,10/21/19 17:08,"5 River St, Los Angeles, CA 90001" -273388,AAA Batteries (4-pack),1,2.99,10/10/19 16:47,"217 4th St, Los Angeles, CA 90001" -273389,AA Batteries (4-pack),1,3.84,10/24/19 17:07,"346 Jefferson St, San Francisco, CA 94016" -273390,AA Batteries (4-pack),4,3.84,10/18/19 12:21,"760 9th St, San Francisco, CA 94016" -273391,AA Batteries (4-pack),1,3.84,10/25/19 22:48,"124 Lincoln St, Los Angeles, CA 90001" -273392,Bose SoundSport Headphones,1,99.99,10/03/19 19:05,"59 Center St, Dallas, TX 75001" -273393,34in Ultrawide Monitor,1,379.99,10/21/19 07:30,"532 Willow St, New York City, NY 10001" -273394,20in Monitor,1,109.99,10/04/19 09:41,"445 Jefferson St, San Francisco, CA 94016" -273395,USB-C Charging Cable,1,11.95,10/03/19 05:21,"956 Lake St, Seattle, WA 98101" -273396,Vareebadd Phone,1,400,10/29/19 01:36,"624 Elm St, San Francisco, CA 94016" -273396,USB-C Charging Cable,1,11.95,10/29/19 01:36,"624 Elm St, San Francisco, CA 94016" -273397,Macbook Pro Laptop,1,1700,10/13/19 17:15,"118 Church St, Los Angeles, CA 90001" -273398,AA Batteries (4-pack),1,3.84,10/21/19 08:35,"19 West St, Los Angeles, CA 90001" -273399,AAA Batteries (4-pack),1,2.99,10/30/19 20:54,"564 Hickory St, Los Angeles, CA 90001" -273400,Wired Headphones,1,11.99,10/14/19 16:08,"945 11th St, Portland, OR 97035" -273401,Bose SoundSport Headphones,1,99.99,10/31/19 21:10,"738 5th St, New York City, NY 10001" -273402,USB-C Charging Cable,1,11.95,10/01/19 19:19,"999 6th St, Los Angeles, CA 90001" -273403,USB-C Charging Cable,1,11.95,10/22/19 09:14,"81 10th St, Austin, TX 73301" -273404,Lightning Charging Cable,1,14.95,10/11/19 09:29,"586 West St, Boston, MA 02215" -273405,Lightning Charging Cable,1,14.95,10/18/19 14:02,"917 Lincoln St, San Francisco, CA 94016" -273406,Google Phone,1,600,10/14/19 18:36,"516 Washington St, Seattle, WA 98101" -273407,USB-C Charging Cable,1,11.95,10/14/19 19:07,"688 Jackson St, Boston, MA 02215" -273408,Lightning Charging Cable,1,14.95,10/03/19 22:34,"335 6th St, San Francisco, CA 94016" -273409,Bose SoundSport Headphones,1,99.99,10/16/19 00:56,"324 Elm St, Boston, MA 02215" -273410,Apple Airpods Headphones,1,150,10/15/19 21:07,"370 13th St, Portland, ME 04101" -273411,Macbook Pro Laptop,1,1700,10/24/19 16:47,"852 Sunset St, San Francisco, CA 94016" -273412,Lightning Charging Cable,1,14.95,10/19/19 15:18,"276 Forest St, San Francisco, CA 94016" -273413,AAA Batteries (4-pack),1,2.99,10/15/19 20:09,"993 Forest St, Los Angeles, CA 90001" -273414,USB-C Charging Cable,1,11.95,10/10/19 18:47,"365 12th St, Boston, MA 02215" -273415,USB-C Charging Cable,1,11.95,10/27/19 22:10,"870 Lincoln St, San Francisco, CA 94016" -273416,Wired Headphones,1,11.99,10/04/19 12:39,"255 Highland St, Atlanta, GA 30301" -273417,Lightning Charging Cable,1,14.95,10/19/19 21:04,"670 Cherry St, San Francisco, CA 94016" -273418,Google Phone,1,600,10/21/19 23:33,"155 West St, Dallas, TX 75001" -273418,USB-C Charging Cable,1,11.95,10/21/19 23:33,"155 West St, Dallas, TX 75001" -273419,AAA Batteries (4-pack),2,2.99,10/16/19 10:19,"210 Washington St, Los Angeles, CA 90001" -273419,USB-C Charging Cable,1,11.95,10/16/19 10:19,"210 Washington St, Los Angeles, CA 90001" -273420,Lightning Charging Cable,1,14.95,10/05/19 19:23,"625 River St, Los Angeles, CA 90001" -273421,USB-C Charging Cable,1,11.95,10/07/19 08:06,"882 9th St, San Francisco, CA 94016" -273422,Bose SoundSport Headphones,1,99.99,10/13/19 14:02,"647 Washington St, Boston, MA 02215" -273423,Wired Headphones,1,11.99,10/21/19 09:30,"586 Madison St, New York City, NY 10001" -273424,Lightning Charging Cable,1,14.95,10/03/19 00:56,"612 12th St, Austin, TX 73301" -,,,,, -273425,AA Batteries (4-pack),1,3.84,10/31/19 11:48,"771 Jefferson St, Seattle, WA 98101" -273426,Wired Headphones,1,11.99,10/26/19 18:37,"338 Willow St, Los Angeles, CA 90001" -273427,USB-C Charging Cable,1,11.95,10/29/19 12:02,"359 Highland St, Dallas, TX 75001" -273428,Apple Airpods Headphones,1,150,10/07/19 05:26,"649 Church St, Boston, MA 02215" -273429,Wired Headphones,1,11.99,10/20/19 09:48,"781 Hickory St, Dallas, TX 75001" -273430,USB-C Charging Cable,1,11.95,10/11/19 18:01,"447 Ridge St, San Francisco, CA 94016" -273431,27in FHD Monitor,1,149.99,10/26/19 14:32,"453 North St, Los Angeles, CA 90001" -273432,AAA Batteries (4-pack),1,2.99,10/28/19 16:34,"896 Dogwood St, San Francisco, CA 94016" -273433,AA Batteries (4-pack),3,3.84,10/08/19 13:29,"551 Center St, Los Angeles, CA 90001" -273434,Macbook Pro Laptop,1,1700,10/24/19 15:25,"234 Park St, New York City, NY 10001" -273435,Lightning Charging Cable,1,14.95,10/21/19 02:21,"471 River St, San Francisco, CA 94016" -273436,Bose SoundSport Headphones,1,99.99,10/07/19 20:04,"891 Sunset St, New York City, NY 10001" -273437,USB-C Charging Cable,1,11.95,10/20/19 09:35,"781 2nd St, New York City, NY 10001" -273438,Wired Headphones,2,11.99,10/23/19 01:56,"285 Lake St, San Francisco, CA 94016" -273439,AAA Batteries (4-pack),1,2.99,10/13/19 09:50,"592 Lincoln St, Seattle, WA 98101" -273440,27in 4K Gaming Monitor,1,389.99,10/07/19 08:09,"473 Walnut St, New York City, NY 10001" -273441,27in 4K Gaming Monitor,1,389.99,10/12/19 18:21,"250 9th St, Atlanta, GA 30301" -273442,20in Monitor,1,109.99,10/20/19 19:15,"276 14th St, New York City, NY 10001" -273443,Google Phone,1,600,10/01/19 08:00,"118 7th St, San Francisco, CA 94016" -273443,USB-C Charging Cable,1,11.95,10/01/19 08:00,"118 7th St, San Francisco, CA 94016" -273444,Wired Headphones,1,11.99,10/24/19 00:21,"746 Jefferson St, Seattle, WA 98101" -273445,27in FHD Monitor,1,149.99,10/13/19 19:01,"387 Pine St, Austin, TX 73301" -273446,Bose SoundSport Headphones,1,99.99,10/19/19 11:16,"682 Center St, Boston, MA 02215" -273447,iPhone,1,700,10/12/19 13:17,"246 Adams St, Seattle, WA 98101" -273447,Lightning Charging Cable,1,14.95,10/12/19 13:17,"246 Adams St, Seattle, WA 98101" -273447,Flatscreen TV,1,300,10/12/19 13:17,"246 Adams St, Seattle, WA 98101" -273448,iPhone,1,700,10/05/19 09:52,"682 Chestnut St, San Francisco, CA 94016" -273449,Bose SoundSport Headphones,1,99.99,10/21/19 20:49,"702 Lakeview St, Boston, MA 02215" -273450,Lightning Charging Cable,1,14.95,10/05/19 11:34,"43 14th St, New York City, NY 10001" -273451,USB-C Charging Cable,3,11.95,10/09/19 20:14,"996 Center St, San Francisco, CA 94016" -273452,iPhone,1,700,10/07/19 11:31,"30 Madison St, San Francisco, CA 94016" -273452,Wired Headphones,1,11.99,10/07/19 11:31,"30 Madison St, San Francisco, CA 94016" -273453,Wired Headphones,1,11.99,10/30/19 12:22,"541 Center St, San Francisco, CA 94016" -273454,Apple Airpods Headphones,1,150,10/29/19 08:10,"634 13th St, Boston, MA 02215" -273455,USB-C Charging Cable,1,11.95,10/20/19 13:13,"502 Johnson St, Portland, OR 97035" -273456,iPhone,1,700,10/18/19 10:03,"780 7th St, San Francisco, CA 94016" -273456,Wired Headphones,1,11.99,10/18/19 10:03,"780 7th St, San Francisco, CA 94016" -273457,27in 4K Gaming Monitor,1,389.99,10/29/19 14:22,"94 9th St, Los Angeles, CA 90001" -273458,Lightning Charging Cable,1,14.95,10/29/19 07:50,"923 14th St, San Francisco, CA 94016" -273459,AA Batteries (4-pack),1,3.84,10/12/19 14:40,"722 Meadow St, Portland, OR 97035" -273460,Wired Headphones,1,11.99,10/27/19 13:14,"111 Hickory St, Portland, OR 97035" -273461,USB-C Charging Cable,2,11.95,10/02/19 18:56,"428 Maple St, Atlanta, GA 30301" -273462,AA Batteries (4-pack),1,3.84,10/28/19 23:52,"473 Lakeview St, San Francisco, CA 94016" -273463,Macbook Pro Laptop,1,1700,10/17/19 00:02,"585 10th St, Boston, MA 02215" -273464,iPhone,1,700,10/15/19 17:08,"921 Hill St, Austin, TX 73301" -273465,AA Batteries (4-pack),1,3.84,10/07/19 17:37,"410 Lake St, Austin, TX 73301" -273466,Apple Airpods Headphones,1,150,10/06/19 10:51,"558 Lakeview St, New York City, NY 10001" -273467,Bose SoundSport Headphones,1,99.99,10/12/19 19:05,"527 11th St, Seattle, WA 98101" -273468,AA Batteries (4-pack),1,3.84,10/15/19 15:30,"102 Chestnut St, Los Angeles, CA 90001" -273469,Wired Headphones,1,11.99,10/10/19 12:10,"685 10th St, Boston, MA 02215" -273469,USB-C Charging Cable,1,11.95,10/10/19 12:10,"685 10th St, Boston, MA 02215" -273470,AAA Batteries (4-pack),1,2.99,10/19/19 18:32,"747 Jefferson St, New York City, NY 10001" -273471,USB-C Charging Cable,1,11.95,10/02/19 22:49,"613 Main St, San Francisco, CA 94016" -273472,AAA Batteries (4-pack),2,2.99,10/11/19 22:17,"279 Cherry St, New York City, NY 10001" -273473,USB-C Charging Cable,1,11.95,10/18/19 18:27,"200 10th St, San Francisco, CA 94016" -273474,USB-C Charging Cable,3,11.95,10/26/19 20:52,"918 14th St, Atlanta, GA 30301" -273475,Bose SoundSport Headphones,1,99.99,10/31/19 17:55,"364 Spruce St, Portland, OR 97035" -273476,Apple Airpods Headphones,1,150,10/25/19 21:01,"971 Spruce St, Seattle, WA 98101" -273477,27in FHD Monitor,1,149.99,10/08/19 09:29,"839 Sunset St, San Francisco, CA 94016" -273478,Apple Airpods Headphones,1,150,10/24/19 09:40,"276 Ridge St, Dallas, TX 75001" -273479,34in Ultrawide Monitor,1,379.99,10/02/19 19:15,"28 Center St, Boston, MA 02215" -273479,Bose SoundSport Headphones,1,99.99,10/02/19 19:15,"28 Center St, Boston, MA 02215" -273480,AA Batteries (4-pack),1,3.84,10/05/19 08:23,"640 Lake St, Seattle, WA 98101" -273481,Apple Airpods Headphones,1,150,10/03/19 08:41,"775 Ridge St, Boston, MA 02215" -273482,AA Batteries (4-pack),1,3.84,10/06/19 11:29,"839 Ridge St, San Francisco, CA 94016" -273483,Apple Airpods Headphones,1,150,10/30/19 12:16,"944 North St, Seattle, WA 98101" -273484,Bose SoundSport Headphones,1,99.99,10/31/19 16:40,"644 North St, Los Angeles, CA 90001" -273485,AA Batteries (4-pack),1,3.84,10/19/19 12:09,"829 Hickory St, San Francisco, CA 94016" -273486,34in Ultrawide Monitor,1,379.99,10/26/19 13:26,"599 1st St, Los Angeles, CA 90001" -273487,27in 4K Gaming Monitor,1,389.99,10/14/19 16:44,"262 Cherry St, New York City, NY 10001" -273488,USB-C Charging Cable,1,11.95,10/14/19 11:56,"640 Adams St, Los Angeles, CA 90001" -273489,Lightning Charging Cable,1,14.95,10/06/19 05:01,"134 5th St, San Francisco, CA 94016" -273490,AAA Batteries (4-pack),3,2.99,10/26/19 16:00,"456 10th St, New York City, NY 10001" -273491,Wired Headphones,1,11.99,10/27/19 07:09,"794 Jefferson St, San Francisco, CA 94016" -273491,AAA Batteries (4-pack),1,2.99,10/27/19 07:09,"794 Jefferson St, San Francisco, CA 94016" -273492,27in 4K Gaming Monitor,1,389.99,10/12/19 19:09,"57 Hickory St, Austin, TX 73301" -273493,iPhone,1,700,10/13/19 15:55,"779 South St, Los Angeles, CA 90001" -273493,Lightning Charging Cable,2,14.95,10/13/19 15:55,"779 South St, Los Angeles, CA 90001" -273494,AA Batteries (4-pack),1,3.84,10/22/19 20:46,"359 Washington St, Boston, MA 02215" -273495,ThinkPad Laptop,1,999.99,10/28/19 13:25,"856 Main St, Dallas, TX 75001" -273496,AA Batteries (4-pack),1,3.84,10/01/19 21:39,"830 13th St, Los Angeles, CA 90001" -273497,34in Ultrawide Monitor,1,379.99,10/12/19 13:22,"405 2nd St, San Francisco, CA 94016" -273498,ThinkPad Laptop,1,999.99,10/02/19 00:29,"507 Cedar St, Boston, MA 02215" -273499,USB-C Charging Cable,2,11.95,10/17/19 08:13,"981 Madison St, Portland, OR 97035" -273500,Lightning Charging Cable,1,14.95,10/19/19 11:55,"545 Spruce St, Boston, MA 02215" -273501,27in FHD Monitor,1,149.99,10/06/19 04:54,"643 Meadow St, San Francisco, CA 94016" -273502,20in Monitor,1,109.99,10/29/19 20:15,"20 Johnson St, Los Angeles, CA 90001" -273503,USB-C Charging Cable,1,11.95,10/03/19 11:09,"640 Highland St, San Francisco, CA 94016" -273504,Lightning Charging Cable,1,14.95,10/25/19 23:25,"89 4th St, San Francisco, CA 94016" -273505,iPhone,1,700,10/05/19 17:57,"895 River St, Atlanta, GA 30301" -273506,AA Batteries (4-pack),1,3.84,10/11/19 22:57,"230 Elm St, New York City, NY 10001" -273507,27in FHD Monitor,1,149.99,10/05/19 19:12,"354 Meadow St, Boston, MA 02215" -273508,AA Batteries (4-pack),1,3.84,10/01/19 22:28,"637 Hill St, San Francisco, CA 94016" -273509,AAA Batteries (4-pack),2,2.99,10/27/19 21:02,"445 Sunset St, Los Angeles, CA 90001" -273510,Macbook Pro Laptop,1,1700,10/07/19 13:05,"212 2nd St, Seattle, WA 98101" -273511,USB-C Charging Cable,1,11.95,10/26/19 16:33,"65 12th St, Atlanta, GA 30301" -273512,Apple Airpods Headphones,1,150,10/29/19 16:30,"787 Lincoln St, Los Angeles, CA 90001" -273513,27in 4K Gaming Monitor,1,389.99,10/26/19 12:50,"368 Willow St, Seattle, WA 98101" -273514,Bose SoundSport Headphones,1,99.99,10/25/19 19:15,"227 Cedar St, New York City, NY 10001" -273515,USB-C Charging Cable,1,11.95,10/24/19 20:02,"986 10th St, Boston, MA 02215" -273516,27in FHD Monitor,1,149.99,10/06/19 16:01,"835 6th St, San Francisco, CA 94016" -273516,USB-C Charging Cable,1,11.95,10/06/19 16:01,"835 6th St, San Francisco, CA 94016" -273517,27in FHD Monitor,1,149.99,10/09/19 01:06,"984 North St, Seattle, WA 98101" -273518,AAA Batteries (4-pack),3,2.99,10/09/19 20:41,"70 Walnut St, San Francisco, CA 94016" -273519,AA Batteries (4-pack),1,3.84,10/13/19 19:28,"802 Meadow St, Los Angeles, CA 90001" -273519,Lightning Charging Cable,1,14.95,10/13/19 19:28,"802 Meadow St, Los Angeles, CA 90001" -273520,Flatscreen TV,1,300,10/18/19 16:06,"798 Hill St, New York City, NY 10001" -273521,USB-C Charging Cable,2,11.95,10/14/19 11:03,"205 Walnut St, San Francisco, CA 94016" -273522,AAA Batteries (4-pack),2,2.99,10/19/19 14:20,"186 Walnut St, Atlanta, GA 30301" -273523,27in FHD Monitor,1,149.99,10/23/19 12:04,"514 11th St, San Francisco, CA 94016" -273524,AAA Batteries (4-pack),1,2.99,10/20/19 11:59,"725 Jefferson St, San Francisco, CA 94016" -273525,AAA Batteries (4-pack),1,2.99,10/01/19 17:11,"520 4th St, Los Angeles, CA 90001" -273526,Lightning Charging Cable,1,14.95,10/15/19 10:19,"453 Johnson St, San Francisco, CA 94016" -273527,Lightning Charging Cable,1,14.95,10/02/19 18:07,"687 12th St, Seattle, WA 98101" -273528,34in Ultrawide Monitor,1,379.99,10/29/19 10:11,"943 14th St, San Francisco, CA 94016" -273529,Bose SoundSport Headphones,1,99.99,10/06/19 01:47,"29 Forest St, Atlanta, GA 30301" -273530,ThinkPad Laptop,1,999.99,10/24/19 18:08,"530 Highland St, San Francisco, CA 94016" -273531,34in Ultrawide Monitor,1,379.99,10/18/19 23:26,"306 Center St, Dallas, TX 75001" -273532,USB-C Charging Cable,1,11.95,10/06/19 17:13,"799 10th St, San Francisco, CA 94016" -273533,Flatscreen TV,1,300,10/17/19 11:23,"350 Pine St, Boston, MA 02215" -273533,Bose SoundSport Headphones,1,99.99,10/17/19 11:23,"350 Pine St, Boston, MA 02215" -273534,AA Batteries (4-pack),1,3.84,10/08/19 11:01,"96 Elm St, Seattle, WA 98101" -273535,AAA Batteries (4-pack),3,2.99,10/01/19 17:26,"166 Pine St, San Francisco, CA 94016" -273536,Lightning Charging Cable,1,14.95,10/11/19 18:03,"59 Maple St, Los Angeles, CA 90001" -273537,Bose SoundSport Headphones,1,99.99,10/06/19 12:42,"971 South St, Portland, ME 04101" -273538,Wired Headphones,1,11.99,10/05/19 06:04,"754 Maple St, Boston, MA 02215" -273538,AAA Batteries (4-pack),1,2.99,10/05/19 06:04,"754 Maple St, Boston, MA 02215" -273539,Apple Airpods Headphones,1,150,10/30/19 11:55,"402 Johnson St, New York City, NY 10001" -273540,27in 4K Gaming Monitor,1,389.99,10/24/19 16:28,"165 Dogwood St, New York City, NY 10001" -273541,Lightning Charging Cable,2,14.95,10/18/19 08:26,"970 Center St, San Francisco, CA 94016" -273542,27in FHD Monitor,1,149.99,10/05/19 13:15,"734 7th St, Dallas, TX 75001" -273543,ThinkPad Laptop,1,999.99,10/04/19 10:52,"502 7th St, Los Angeles, CA 90001" -273544,Apple Airpods Headphones,1,150,10/29/19 16:45,"895 Adams St, San Francisco, CA 94016" -273545,34in Ultrawide Monitor,1,379.99,10/05/19 13:58,"92 Jefferson St, Los Angeles, CA 90001" -273546,Apple Airpods Headphones,1,150,10/09/19 19:05,"998 Adams St, San Francisco, CA 94016" -273547,27in 4K Gaming Monitor,1,389.99,10/18/19 22:08,"771 Washington St, Atlanta, GA 30301" -273548,27in 4K Gaming Monitor,1,389.99,10/04/19 21:35,"454 6th St, San Francisco, CA 94016" -273549,Bose SoundSport Headphones,1,99.99,10/20/19 18:01,"424 Center St, Boston, MA 02215" -273550,USB-C Charging Cable,1,11.95,10/09/19 21:35,"805 8th St, San Francisco, CA 94016" -273551,USB-C Charging Cable,1,11.95,10/19/19 19:37,"881 Madison St, Boston, MA 02215" -273552,Bose SoundSport Headphones,1,99.99,10/13/19 03:31,"74 12th St, San Francisco, CA 94016" -273553,ThinkPad Laptop,1,999.99,10/29/19 18:40,"874 4th St, San Francisco, CA 94016" -273554,27in 4K Gaming Monitor,1,389.99,10/23/19 19:47,"898 Jackson St, New York City, NY 10001" -273555,27in FHD Monitor,1,149.99,10/14/19 12:33,"963 Johnson St, Dallas, TX 75001" -273556,Google Phone,1,600,10/16/19 10:55,"948 11th St, Atlanta, GA 30301" -273557,USB-C Charging Cable,1,11.95,10/22/19 21:44,"643 West St, San Francisco, CA 94016" -273558,AAA Batteries (4-pack),1,2.99,10/29/19 18:52,"489 Walnut St, Boston, MA 02215" -273559,27in FHD Monitor,1,149.99,10/22/19 18:29,"534 Park St, Boston, MA 02215" -273560,Wired Headphones,1,11.99,10/21/19 22:23,"357 Johnson St, Boston, MA 02215" -273561,27in 4K Gaming Monitor,1,389.99,10/13/19 16:38,"120 Madison St, Los Angeles, CA 90001" -273562,Wired Headphones,1,11.99,10/12/19 07:45,"268 Lincoln St, San Francisco, CA 94016" -273563,Apple Airpods Headphones,1,150,10/21/19 19:15,"86 14th St, New York City, NY 10001" -273564,Bose SoundSport Headphones,1,99.99,10/18/19 11:24,"775 8th St, San Francisco, CA 94016" -273565,Lightning Charging Cable,1,14.95,10/04/19 09:38,"692 14th St, San Francisco, CA 94016" -273566,Bose SoundSport Headphones,1,99.99,10/25/19 17:31,"140 Cedar St, San Francisco, CA 94016" -273567,27in 4K Gaming Monitor,1,389.99,10/27/19 16:42,"835 Chestnut St, Seattle, WA 98101" -273568,AA Batteries (4-pack),2,3.84,10/08/19 07:49,"864 Cedar St, Boston, MA 02215" -273569,AA Batteries (4-pack),1,3.84,10/29/19 09:44,"573 Dogwood St, Seattle, WA 98101" -273570,Apple Airpods Headphones,1,150,10/20/19 16:13,"814 6th St, New York City, NY 10001" -273571,Flatscreen TV,1,300,10/22/19 18:28,"85 Spruce St, San Francisco, CA 94016" -273572,AAA Batteries (4-pack),1,2.99,10/15/19 16:09,"926 Main St, Dallas, TX 75001" -273573,USB-C Charging Cable,1,11.95,11/01/19 00:34,"288 Lake St, Boston, MA 02215" -273574,34in Ultrawide Monitor,1,379.99,10/29/19 08:12,"946 12th St, San Francisco, CA 94016" -273575,27in FHD Monitor,1,149.99,10/30/19 00:44,"517 Hill St, Atlanta, GA 30301" -273576,Apple Airpods Headphones,1,150,10/16/19 13:54,"175 Lincoln St, Boston, MA 02215" -273577,34in Ultrawide Monitor,1,379.99,10/11/19 07:42,"45 Chestnut St, Atlanta, GA 30301" -273578,Lightning Charging Cable,1,14.95,10/04/19 18:53,"896 Center St, Los Angeles, CA 90001" -273579,Lightning Charging Cable,1,14.95,10/08/19 10:20,"688 8th St, Portland, OR 97035" -273580,Apple Airpods Headphones,1,150,10/19/19 15:55,"89 West St, Los Angeles, CA 90001" -273581,USB-C Charging Cable,1,11.95,10/13/19 11:15,"375 Ridge St, Los Angeles, CA 90001" -273582,AA Batteries (4-pack),1,3.84,10/05/19 13:04,"437 9th St, Los Angeles, CA 90001" -273583,Lightning Charging Cable,1,14.95,10/10/19 16:07,"332 Wilson St, Seattle, WA 98101" -273584,Lightning Charging Cable,1,14.95,10/14/19 15:54,"56 Elm St, Los Angeles, CA 90001" -273585,USB-C Charging Cable,1,11.95,10/14/19 19:52,"791 Washington St, Dallas, TX 75001" -273586,AAA Batteries (4-pack),1,2.99,10/12/19 09:14,"544 Lincoln St, Boston, MA 02215" -273587,iPhone,1,700,10/28/19 10:23,"784 Church St, Seattle, WA 98101" -273588,Apple Airpods Headphones,1,150,10/16/19 12:35,"227 4th St, Dallas, TX 75001" -273589,AA Batteries (4-pack),1,3.84,10/07/19 12:47,"10 Willow St, Austin, TX 73301" -273590,USB-C Charging Cable,1,11.95,10/28/19 11:38,"415 Pine St, Dallas, TX 75001" -273591,Wired Headphones,1,11.99,10/10/19 00:08,"720 Willow St, Los Angeles, CA 90001" -273592,34in Ultrawide Monitor,1,379.99,10/29/19 18:49,"704 7th St, Dallas, TX 75001" -273593,Wired Headphones,1,11.99,10/30/19 14:42,"385 Cedar St, New York City, NY 10001" -273594,Flatscreen TV,1,300,10/10/19 00:46,"38 Park St, San Francisco, CA 94016" -273595,34in Ultrawide Monitor,1,379.99,10/18/19 20:31,"859 9th St, New York City, NY 10001" -273596,ThinkPad Laptop,1,999.99,10/05/19 21:14,"254 Meadow St, Los Angeles, CA 90001" -273597,USB-C Charging Cable,1,11.95,10/08/19 15:52,"549 Main St, San Francisco, CA 94016" -273598,27in FHD Monitor,1,149.99,10/27/19 12:01,"515 West St, Austin, TX 73301" -273599,iPhone,1,700,10/31/19 21:37,"357 Pine St, Boston, MA 02215" -273600,LG Dryer,1,600.0,10/08/19 14:23,"257 Forest St, Los Angeles, CA 90001" -273601,AAA Batteries (4-pack),1,2.99,10/26/19 14:53,"32 Ridge St, San Francisco, CA 94016" -273602,27in 4K Gaming Monitor,1,389.99,10/27/19 17:57,"332 Lake St, New York City, NY 10001" -273603,Bose SoundSport Headphones,1,99.99,10/01/19 16:21,"326 South St, San Francisco, CA 94016" -273604,Bose SoundSport Headphones,1,99.99,10/13/19 09:50,"976 Cedar St, Boston, MA 02215" -273605,34in Ultrawide Monitor,1,379.99,10/18/19 17:15,"928 Spruce St, San Francisco, CA 94016" -273606,Wired Headphones,1,11.99,10/12/19 08:16,"540 Maple St, San Francisco, CA 94016" -273607,iPhone,1,700,10/01/19 10:57,"548 Hill St, San Francisco, CA 94016" -273607,Lightning Charging Cable,1,14.95,10/01/19 10:57,"548 Hill St, San Francisco, CA 94016" -273608,Bose SoundSport Headphones,1,99.99,10/19/19 14:55,"600 9th St, San Francisco, CA 94016" -273609,Apple Airpods Headphones,1,150,10/24/19 23:40,"598 Washington St, Dallas, TX 75001" -273610,AA Batteries (4-pack),1,3.84,10/18/19 14:16,"474 Cedar St, Los Angeles, CA 90001" -273611,Lightning Charging Cable,1,14.95,10/20/19 18:56,"879 Madison St, Dallas, TX 75001" -273612,AA Batteries (4-pack),2,3.84,10/04/19 12:07,"359 North St, Boston, MA 02215" -273613,AA Batteries (4-pack),1,3.84,10/18/19 10:36,"454 Pine St, Dallas, TX 75001" -273614,Bose SoundSport Headphones,1,99.99,10/30/19 11:28,"711 11th St, Dallas, TX 75001" -273615,Google Phone,1,600,10/18/19 18:38,"143 Lincoln St, Atlanta, GA 30301" -273616,34in Ultrawide Monitor,1,379.99,10/17/19 20:57,"117 7th St, New York City, NY 10001" -273617,AAA Batteries (4-pack),1,2.99,10/04/19 16:06,"667 Forest St, New York City, NY 10001" -273618,Flatscreen TV,1,300,10/11/19 08:55,"158 Lakeview St, New York City, NY 10001" -273619,Lightning Charging Cable,2,14.95,10/21/19 15:10,"596 7th St, Boston, MA 02215" -273620,AA Batteries (4-pack),1,3.84,10/07/19 09:01,"313 10th St, Austin, TX 73301" -273621,Apple Airpods Headphones,1,150,10/15/19 15:27,"369 2nd St, Atlanta, GA 30301" -273622,Flatscreen TV,1,300,10/13/19 14:53,"836 Spruce St, Los Angeles, CA 90001" -273623,34in Ultrawide Monitor,1,379.99,10/06/19 00:21,"179 12th St, Austin, TX 73301" -273624,AAA Batteries (4-pack),1,2.99,10/08/19 12:47,"685 Lakeview St, Los Angeles, CA 90001" -273625,34in Ultrawide Monitor,1,379.99,10/25/19 23:34,"361 8th St, Dallas, TX 75001" -273626,LG Dryer,1,600.0,10/02/19 07:49,"959 14th St, San Francisco, CA 94016" -273627,Bose SoundSport Headphones,1,99.99,10/11/19 17:24,"357 2nd St, San Francisco, CA 94016" -273628,Apple Airpods Headphones,1,150,10/07/19 19:55,"84 West St, New York City, NY 10001" -273629,Wired Headphones,1,11.99,10/13/19 15:14,"970 13th St, San Francisco, CA 94016" -273630,USB-C Charging Cable,3,11.95,10/28/19 22:35,"135 Lake St, Los Angeles, CA 90001" -273631,Lightning Charging Cable,1,14.95,10/15/19 20:41,"251 Adams St, Boston, MA 02215" -273632,AA Batteries (4-pack),1,3.84,10/19/19 13:12,"720 4th St, Atlanta, GA 30301" -273633,AAA Batteries (4-pack),2,2.99,10/13/19 14:01,"532 River St, Los Angeles, CA 90001" -273634,Wired Headphones,1,11.99,10/11/19 14:29,"995 9th St, Boston, MA 02215" -273635,Bose SoundSport Headphones,1,99.99,10/11/19 20:25,"448 Spruce St, San Francisco, CA 94016" -273636,Flatscreen TV,1,300,10/08/19 07:25,"197 River St, Atlanta, GA 30301" -273637,USB-C Charging Cable,1,11.95,10/25/19 22:05,"902 5th St, San Francisco, CA 94016" -273638,USB-C Charging Cable,1,11.95,10/02/19 07:50,"510 Walnut St, Atlanta, GA 30301" -273639,Lightning Charging Cable,1,14.95,10/29/19 16:09,"636 Wilson St, New York City, NY 10001" -273640,AA Batteries (4-pack),1,3.84,10/04/19 18:41,"276 Lake St, Portland, OR 97035" -273641,AA Batteries (4-pack),1,3.84,10/26/19 22:22,"869 Jackson St, Boston, MA 02215" -273642,USB-C Charging Cable,1,11.95,10/17/19 19:00,"302 Church St, Los Angeles, CA 90001" -273643,USB-C Charging Cable,1,11.95,10/21/19 12:30,"763 Wilson St, New York City, NY 10001" -,,,,, -273644,27in 4K Gaming Monitor,1,389.99,10/18/19 09:02,"791 Center St, Seattle, WA 98101" -273645,Google Phone,1,600,10/20/19 08:13,"594 West St, Los Angeles, CA 90001" -273645,USB-C Charging Cable,1,11.95,10/20/19 08:13,"594 West St, Los Angeles, CA 90001" -273646,USB-C Charging Cable,1,11.95,10/01/19 18:26,"899 Madison St, New York City, NY 10001" -273647,Wired Headphones,1,11.99,10/18/19 20:23,"516 Highland St, Los Angeles, CA 90001" -273648,USB-C Charging Cable,1,11.95,10/10/19 19:02,"944 Walnut St, Boston, MA 02215" -273649,AAA Batteries (4-pack),2,2.99,10/03/19 22:44,"38 Lake St, San Francisco, CA 94016" -273650,AA Batteries (4-pack),1,3.84,10/21/19 20:44,"108 Cedar St, New York City, NY 10001" -273651,USB-C Charging Cable,1,11.95,10/15/19 20:05,"524 West St, San Francisco, CA 94016" -273652,Bose SoundSport Headphones,1,99.99,10/22/19 10:08,"835 Willow St, Los Angeles, CA 90001" -273653,Lightning Charging Cable,1,14.95,10/13/19 13:35,"114 Sunset St, San Francisco, CA 94016" -273654,AAA Batteries (4-pack),1,2.99,10/13/19 16:43,"783 13th St, San Francisco, CA 94016" -273655,Apple Airpods Headphones,1,150,11/01/19 01:58,"313 Jefferson St, New York City, NY 10001" -273656,USB-C Charging Cable,1,11.95,10/04/19 20:46,"37 8th St, Los Angeles, CA 90001" -273657,Lightning Charging Cable,1,14.95,10/27/19 13:30,"933 Washington St, Atlanta, GA 30301" -273658,Wired Headphones,1,11.99,10/05/19 22:19,"137 Church St, Seattle, WA 98101" -273659,Apple Airpods Headphones,1,150,10/28/19 01:32,"260 Jefferson St, Seattle, WA 98101" -273660,Lightning Charging Cable,1,14.95,10/23/19 11:11,"685 Spruce St, New York City, NY 10001" -273661,Bose SoundSport Headphones,1,99.99,10/22/19 23:21,"528 Lakeview St, Dallas, TX 75001" -273662,Wired Headphones,1,11.99,10/28/19 18:56,"31 11th St, Boston, MA 02215" -273663,AA Batteries (4-pack),1,3.84,10/10/19 15:33,"37 13th St, San Francisco, CA 94016" -273664,AA Batteries (4-pack),2,3.84,10/14/19 19:15,"771 Ridge St, Austin, TX 73301" -273665,USB-C Charging Cable,1,11.95,10/19/19 18:22,"825 5th St, Los Angeles, CA 90001" -273666,AA Batteries (4-pack),1,3.84,10/31/19 03:22,"533 Cedar St, Boston, MA 02215" -273666,AA Batteries (4-pack),2,3.84,10/31/19 03:22,"533 Cedar St, Boston, MA 02215" -273667,AAA Batteries (4-pack),2,2.99,10/01/19 13:43,"880 West St, San Francisco, CA 94016" -273668,Apple Airpods Headphones,1,150,10/14/19 23:02,"225 Main St, Los Angeles, CA 90001" -273669,27in FHD Monitor,1,149.99,10/21/19 12:42,"181 Chestnut St, Atlanta, GA 30301" -273670,AAA Batteries (4-pack),1,2.99,10/09/19 07:00,"546 6th St, San Francisco, CA 94016" -273671,AAA Batteries (4-pack),1,2.99,10/14/19 16:52,"875 Hickory St, Portland, OR 97035" -273672,Bose SoundSport Headphones,1,99.99,10/14/19 12:59,"320 6th St, New York City, NY 10001" -273673,Apple Airpods Headphones,1,150,10/31/19 07:46,"478 Willow St, Seattle, WA 98101" -273674,27in 4K Gaming Monitor,1,389.99,10/25/19 13:15,"810 14th St, New York City, NY 10001" -273675,Lightning Charging Cable,2,14.95,10/01/19 10:41,"979 Johnson St, New York City, NY 10001" -273676,AA Batteries (4-pack),4,3.84,10/07/19 13:14,"444 10th St, Boston, MA 02215" -273677,Macbook Pro Laptop,1,1700,10/28/19 16:00,"947 Jackson St, Dallas, TX 75001" -273678,USB-C Charging Cable,1,11.95,10/02/19 11:38,"309 North St, San Francisco, CA 94016" -273679,Bose SoundSport Headphones,1,99.99,10/10/19 10:59,"416 10th St, Austin, TX 73301" -273680,Lightning Charging Cable,1,14.95,10/30/19 19:36,"984 Meadow St, Boston, MA 02215" -273681,Wired Headphones,1,11.99,10/28/19 18:43,"498 River St, San Francisco, CA 94016" -273681,AAA Batteries (4-pack),1,2.99,10/28/19 18:43,"498 River St, San Francisco, CA 94016" -273682,Apple Airpods Headphones,1,150,10/25/19 19:24,"932 Madison St, San Francisco, CA 94016" -273683,27in FHD Monitor,1,149.99,10/21/19 10:55,"311 2nd St, San Francisco, CA 94016" -273684,Lightning Charging Cable,1,14.95,10/25/19 22:33,"847 10th St, Seattle, WA 98101" -273685,USB-C Charging Cable,1,11.95,10/15/19 19:17,"50 Adams St, Austin, TX 73301" -273686,Bose SoundSport Headphones,1,99.99,10/07/19 12:42,"933 Willow St, San Francisco, CA 94016" -273687,Lightning Charging Cable,1,14.95,10/25/19 17:13,"874 9th St, San Francisco, CA 94016" -273688,USB-C Charging Cable,1,11.95,10/31/19 13:13,"656 Elm St, Seattle, WA 98101" -273689,AA Batteries (4-pack),1,3.84,10/02/19 21:08,"350 West St, Seattle, WA 98101" -273690,27in 4K Gaming Monitor,1,389.99,10/20/19 10:24,"644 Maple St, Boston, MA 02215" -273691,Apple Airpods Headphones,1,150,10/27/19 19:35,"858 Spruce St, Dallas, TX 75001" -273692,Bose SoundSport Headphones,1,99.99,10/27/19 14:52,"969 13th St, Dallas, TX 75001" -273693,iPhone,1,700,10/17/19 16:16,"998 Washington St, Boston, MA 02215" -273693,USB-C Charging Cable,1,11.95,10/17/19 16:16,"998 Washington St, Boston, MA 02215" -273694,20in Monitor,1,109.99,10/10/19 13:36,"2 Hill St, San Francisco, CA 94016" -273695,Wired Headphones,2,11.99,10/16/19 11:01,"76 Dogwood St, Atlanta, GA 30301" -273696,Wired Headphones,1,11.99,10/19/19 09:56,"794 14th St, New York City, NY 10001" -273697,Bose SoundSport Headphones,1,99.99,10/08/19 17:59,"295 Highland St, Boston, MA 02215" -273698,AA Batteries (4-pack),1,3.84,10/11/19 17:54,"488 Ridge St, Boston, MA 02215" -273699,Lightning Charging Cable,1,14.95,10/26/19 16:50,"412 Sunset St, New York City, NY 10001" -273700,27in FHD Monitor,1,149.99,10/16/19 23:09,"352 5th St, San Francisco, CA 94016" -273701,Lightning Charging Cable,1,14.95,10/17/19 20:44,"56 South St, Dallas, TX 75001" -273702,USB-C Charging Cable,1,11.95,10/28/19 11:55,"782 Highland St, San Francisco, CA 94016" -273703,AA Batteries (4-pack),2,3.84,10/19/19 08:35,"997 2nd St, Seattle, WA 98101" -273704,LG Washing Machine,1,600.0,10/12/19 21:18,"998 11th St, Boston, MA 02215" -273705,Flatscreen TV,1,300,10/30/19 20:44,"944 11th St, San Francisco, CA 94016" -273706,AAA Batteries (4-pack),1,2.99,10/09/19 12:38,"848 West St, Seattle, WA 98101" -273707,AAA Batteries (4-pack),2,2.99,10/04/19 09:17,"756 Ridge St, Los Angeles, CA 90001" -273708,USB-C Charging Cable,1,11.95,10/17/19 05:18,"996 1st St, Atlanta, GA 30301" -273709,USB-C Charging Cable,1,11.95,10/01/19 13:27,"839 Walnut St, Boston, MA 02215" -273710,AAA Batteries (4-pack),1,2.99,10/19/19 18:04,"619 10th St, Los Angeles, CA 90001" -273711,Apple Airpods Headphones,1,150,10/23/19 08:18,"72 Adams St, Dallas, TX 75001" -273712,AA Batteries (4-pack),1,3.84,10/30/19 19:04,"164 13th St, New York City, NY 10001" -273713,USB-C Charging Cable,1,11.95,10/07/19 18:48,"770 10th St, Portland, OR 97035" -273714,27in 4K Gaming Monitor,1,389.99,10/08/19 04:03,"549 2nd St, Seattle, WA 98101" -273715,Wired Headphones,1,11.99,10/22/19 13:01,"88 Willow St, Los Angeles, CA 90001" -273716,AAA Batteries (4-pack),1,2.99,10/17/19 23:02,"449 Sunset St, Austin, TX 73301" -273717,Wired Headphones,1,11.99,10/12/19 18:45,"973 Cherry St, Los Angeles, CA 90001" -273718,34in Ultrawide Monitor,1,379.99,10/06/19 22:27,"856 Pine St, Austin, TX 73301" -273719,Bose SoundSport Headphones,1,99.99,10/23/19 12:46,"490 Jackson St, San Francisco, CA 94016" -273720,27in FHD Monitor,1,149.99,10/29/19 18:52,"441 Chestnut St, Dallas, TX 75001" -273721,AA Batteries (4-pack),3,3.84,10/20/19 11:37,"819 11th St, New York City, NY 10001" -273722,AAA Batteries (4-pack),1,2.99,10/18/19 19:49,"967 North St, Atlanta, GA 30301" -273723,ThinkPad Laptop,1,999.99,10/21/19 07:09,"753 5th St, Austin, TX 73301" -273724,Apple Airpods Headphones,1,150,10/07/19 18:12,"78 1st St, Portland, OR 97035" -273725,AA Batteries (4-pack),1,3.84,10/25/19 19:45,"132 North St, San Francisco, CA 94016" -273726,Apple Airpods Headphones,1,150,10/07/19 20:15,"328 Highland St, New York City, NY 10001" -273727,USB-C Charging Cable,1,11.95,10/25/19 23:49,"484 River St, San Francisco, CA 94016" -273728,AAA Batteries (4-pack),1,2.99,10/04/19 13:42,"106 5th St, San Francisco, CA 94016" -273729,Google Phone,1,600,10/06/19 12:20,"578 9th St, Seattle, WA 98101" -273730,USB-C Charging Cable,2,11.95,10/29/19 19:58,"376 West St, Boston, MA 02215" -273731,AA Batteries (4-pack),1,3.84,10/11/19 10:01,"441 14th St, Seattle, WA 98101" -273732,Apple Airpods Headphones,1,150,10/09/19 12:18,"417 Washington St, New York City, NY 10001" -273733,27in FHD Monitor,1,149.99,10/17/19 10:40,"443 Wilson St, New York City, NY 10001" -273734,AA Batteries (4-pack),1,3.84,10/03/19 19:40,"137 4th St, San Francisco, CA 94016" -273735,Apple Airpods Headphones,1,150,10/15/19 23:33,"139 Wilson St, Portland, OR 97035" -273736,Flatscreen TV,1,300,10/04/19 08:05,"758 13th St, Seattle, WA 98101" -273737,AA Batteries (4-pack),1,3.84,10/20/19 19:53,"32 10th St, New York City, NY 10001" -273738,34in Ultrawide Monitor,1,379.99,10/31/19 11:43,"400 River St, Boston, MA 02215" -273739,Macbook Pro Laptop,1,1700,10/19/19 15:07,"948 Cedar St, Atlanta, GA 30301" -273740,USB-C Charging Cable,1,11.95,10/04/19 20:23,"40 Church St, Boston, MA 02215" -273741,Bose SoundSport Headphones,1,99.99,10/16/19 22:37,"663 Elm St, Boston, MA 02215" -273742,Flatscreen TV,1,300,10/15/19 08:58,"323 11th St, Boston, MA 02215" -273743,Lightning Charging Cable,1,14.95,10/16/19 12:19,"53 11th St, Los Angeles, CA 90001" -273744,USB-C Charging Cable,1,11.95,10/03/19 16:25,"270 Park St, Los Angeles, CA 90001" -273745,Apple Airpods Headphones,1,150,10/03/19 14:11,"741 6th St, Seattle, WA 98101" -273746,Wired Headphones,1,11.99,10/11/19 01:50,"852 Ridge St, Austin, TX 73301" -273747,Macbook Pro Laptop,1,1700,10/22/19 08:50,"934 10th St, Dallas, TX 75001" -273748,Lightning Charging Cable,1,14.95,10/01/19 15:18,"29 Highland St, San Francisco, CA 94016" -273749,AAA Batteries (4-pack),1,2.99,10/01/19 13:29,"28 Highland St, Los Angeles, CA 90001" -273750,Apple Airpods Headphones,1,150,10/07/19 14:07,"198 1st St, Los Angeles, CA 90001" -273751,iPhone,1,700,11/01/19 00:47,"678 4th St, San Francisco, CA 94016" -273751,Apple Airpods Headphones,1,150,11/01/19 00:47,"678 4th St, San Francisco, CA 94016" -273751,Wired Headphones,1,11.99,11/01/19 00:47,"678 4th St, San Francisco, CA 94016" -273752,Macbook Pro Laptop,1,1700,10/13/19 20:04,"690 8th St, New York City, NY 10001" -273753,Lightning Charging Cable,1,14.95,10/19/19 15:19,"503 South St, Austin, TX 73301" -273754,AAA Batteries (4-pack),1,2.99,10/01/19 17:41,"150 Hill St, Los Angeles, CA 90001" -273755,Wired Headphones,1,11.99,10/17/19 13:12,"201 Highland St, San Francisco, CA 94016" -273756,27in FHD Monitor,1,149.99,10/11/19 23:30,"341 Cherry St, Atlanta, GA 30301" -273757,34in Ultrawide Monitor,1,379.99,10/24/19 22:53,"220 Spruce St, New York City, NY 10001" -273758,USB-C Charging Cable,1,11.95,10/03/19 09:40,"926 5th St, San Francisco, CA 94016" -273759,Macbook Pro Laptop,1,1700,10/15/19 19:57,"350 6th St, Dallas, TX 75001" -273760,27in FHD Monitor,1,149.99,10/13/19 12:53,"844 9th St, San Francisco, CA 94016" -273761,Bose SoundSport Headphones,1,99.99,10/14/19 14:13,"271 12th St, Portland, OR 97035" -273762,Flatscreen TV,1,300,10/23/19 21:10,"697 Dogwood St, Atlanta, GA 30301" -273763,Google Phone,1,600,10/30/19 10:09,"37 8th St, Seattle, WA 98101" -273764,AAA Batteries (4-pack),3,2.99,10/14/19 13:30,"651 Main St, Austin, TX 73301" -273765,Lightning Charging Cable,1,14.95,10/09/19 17:34,"23 Highland St, Austin, TX 73301" -273766,Lightning Charging Cable,1,14.95,10/26/19 09:50,"693 5th St, Austin, TX 73301" -273767,USB-C Charging Cable,1,11.95,10/14/19 19:30,"889 Willow St, Boston, MA 02215" -273768,Lightning Charging Cable,1,14.95,10/31/19 20:50,"510 South St, San Francisco, CA 94016" -273769,USB-C Charging Cable,1,11.95,10/04/19 01:32,"415 1st St, New York City, NY 10001" -273770,Lightning Charging Cable,1,14.95,10/21/19 17:56,"692 Chestnut St, Los Angeles, CA 90001" -273771,AA Batteries (4-pack),1,3.84,10/04/19 15:19,"333 5th St, San Francisco, CA 94016" -273772,Apple Airpods Headphones,1,150,10/03/19 22:36,"897 Willow St, San Francisco, CA 94016" -273773,Wired Headphones,1,11.99,10/23/19 09:59,"198 Lincoln St, San Francisco, CA 94016" -273774,AA Batteries (4-pack),1,3.84,10/06/19 17:04,"49 Hill St, San Francisco, CA 94016" -273775,Wired Headphones,1,11.99,10/01/19 11:14,"938 Chestnut St, Dallas, TX 75001" -273776,Lightning Charging Cable,1,14.95,10/27/19 19:30,"643 13th St, New York City, NY 10001" -273777,Apple Airpods Headphones,1,150,10/15/19 21:15,"189 Dogwood St, Los Angeles, CA 90001" -273778,AA Batteries (4-pack),1,3.84,10/13/19 08:40,"243 Hill St, San Francisco, CA 94016" -273779,34in Ultrawide Monitor,1,379.99,10/22/19 00:59,"827 10th St, Los Angeles, CA 90001" -273780,27in FHD Monitor,1,149.99,10/29/19 18:36,"777 Jefferson St, New York City, NY 10001" -273781,AAA Batteries (4-pack),1,2.99,10/12/19 07:53,"252 6th St, New York City, NY 10001" -273782,Bose SoundSport Headphones,1,99.99,10/02/19 08:08,"227 8th St, Seattle, WA 98101" -273783,Wired Headphones,1,11.99,10/23/19 18:17,"274 9th St, San Francisco, CA 94016" -273784,Apple Airpods Headphones,1,150,10/08/19 10:00,"196 Jackson St, New York City, NY 10001" -273785,USB-C Charging Cable,1,11.95,10/03/19 13:55,"317 Washington St, Boston, MA 02215" -273786,USB-C Charging Cable,2,11.95,10/15/19 16:53,"744 Park St, Seattle, WA 98101" -273787,27in 4K Gaming Monitor,1,389.99,10/11/19 12:27,"610 Lake St, San Francisco, CA 94016" -273788,iPhone,1,700,10/06/19 19:38,"795 Church St, San Francisco, CA 94016" -273789,Bose SoundSport Headphones,1,99.99,10/27/19 19:57,"400 Sunset St, Los Angeles, CA 90001" -273790,34in Ultrawide Monitor,1,379.99,10/06/19 17:36,"686 Ridge St, San Francisco, CA 94016" -273791,Vareebadd Phone,1,400,10/24/19 19:27,"141 Jackson St, New York City, NY 10001" -273792,USB-C Charging Cable,1,11.95,10/19/19 00:49,"461 Chestnut St, San Francisco, CA 94016" -273793,Lightning Charging Cable,1,14.95,10/19/19 10:39,"405 Forest St, Austin, TX 73301" -273794,LG Washing Machine,1,600.0,10/02/19 10:05,"473 Walnut St, Seattle, WA 98101" -273795,USB-C Charging Cable,2,11.95,10/31/19 20:16,"448 Chestnut St, Portland, OR 97035" -273796,Apple Airpods Headphones,1,150,10/05/19 00:54,"455 Cherry St, Los Angeles, CA 90001" -273797,Apple Airpods Headphones,1,150,10/10/19 16:28,"985 Park St, Portland, OR 97035" -273798,AAA Batteries (4-pack),1,2.99,10/20/19 13:57,"44 4th St, Portland, OR 97035" -273799,Wired Headphones,1,11.99,10/23/19 18:48,"323 Jackson St, Los Angeles, CA 90001" -273800,Wired Headphones,1,11.99,10/13/19 17:52,"567 Hickory St, San Francisco, CA 94016" -273801,27in FHD Monitor,1,149.99,10/09/19 21:27,"478 Meadow St, Los Angeles, CA 90001" -273801,Lightning Charging Cable,1,14.95,10/09/19 21:27,"478 Meadow St, Los Angeles, CA 90001" -273802,Wired Headphones,1,11.99,10/03/19 19:46,"676 Dogwood St, Atlanta, GA 30301" -273803,AAA Batteries (4-pack),1,2.99,10/28/19 15:10,"729 1st St, San Francisco, CA 94016" -273804,Wired Headphones,1,11.99,10/04/19 17:05,"765 Lincoln St, Los Angeles, CA 90001" -273805,Apple Airpods Headphones,1,150,10/13/19 17:48,"558 Wilson St, New York City, NY 10001" -273806,Lightning Charging Cable,1,14.95,10/15/19 13:35,"358 Johnson St, New York City, NY 10001" -273807,Apple Airpods Headphones,1,150,10/25/19 13:05,"144 Washington St, San Francisco, CA 94016" -273808,ThinkPad Laptop,1,999.99,10/12/19 19:08,"788 4th St, Portland, OR 97035" -273809,AAA Batteries (4-pack),1,2.99,10/08/19 11:43,"734 Elm St, Los Angeles, CA 90001" -273810,USB-C Charging Cable,1,11.95,10/17/19 23:38,"599 13th St, Atlanta, GA 30301" -273811,AA Batteries (4-pack),1,3.84,10/31/19 15:35,"74 Hickory St, Boston, MA 02215" -273812,Wired Headphones,1,11.99,10/19/19 17:47,"983 Ridge St, Portland, ME 04101" -273813,Vareebadd Phone,1,400,10/24/19 13:07,"630 Chestnut St, New York City, NY 10001" -273813,USB-C Charging Cable,1,11.95,10/24/19 13:07,"630 Chestnut St, New York City, NY 10001" -273814,AA Batteries (4-pack),1,3.84,10/06/19 18:54,"937 Church St, Dallas, TX 75001" -273815,Wired Headphones,3,11.99,10/25/19 12:49,"432 10th St, Los Angeles, CA 90001" -273816,AA Batteries (4-pack),2,3.84,10/23/19 05:37,"59 Elm St, Portland, ME 04101" -273817,USB-C Charging Cable,1,11.95,10/17/19 06:43,"956 Ridge St, Dallas, TX 75001" -273818,AA Batteries (4-pack),2,3.84,10/28/19 00:45,"442 10th St, San Francisco, CA 94016" -273819,AAA Batteries (4-pack),3,2.99,10/12/19 11:10,"927 Jackson St, San Francisco, CA 94016" -273820,27in FHD Monitor,1,149.99,10/20/19 13:27,"272 Willow St, Dallas, TX 75001" -273821,Lightning Charging Cable,1,14.95,10/27/19 19:39,"181 Washington St, San Francisco, CA 94016" -273822,Lightning Charging Cable,1,14.95,10/26/19 11:04,"733 Adams St, San Francisco, CA 94016" -273823,Macbook Pro Laptop,1,1700,10/13/19 10:18,"59 7th St, Los Angeles, CA 90001" -273824,Lightning Charging Cable,1,14.95,10/14/19 16:50,"635 10th St, New York City, NY 10001" -273825,20in Monitor,1,109.99,10/31/19 06:35,"770 Washington St, San Francisco, CA 94016" -273826,Flatscreen TV,1,300,10/03/19 14:15,"459 Ridge St, New York City, NY 10001" -273827,Lightning Charging Cable,1,14.95,10/28/19 17:03,"575 Church St, Seattle, WA 98101" -273828,AAA Batteries (4-pack),1,2.99,10/08/19 22:41,"972 Hickory St, San Francisco, CA 94016" -273829,27in FHD Monitor,1,149.99,10/27/19 12:41,"113 Ridge St, Seattle, WA 98101" -273830,Lightning Charging Cable,1,14.95,10/14/19 08:46,"245 2nd St, New York City, NY 10001" -273831,USB-C Charging Cable,1,11.95,10/10/19 14:43,"460 Dogwood St, Atlanta, GA 30301" -273832,Google Phone,1,600,10/13/19 23:09,"14 Willow St, Seattle, WA 98101" -273832,USB-C Charging Cable,1,11.95,10/13/19 23:09,"14 Willow St, Seattle, WA 98101" -273832,Wired Headphones,1,11.99,10/13/19 23:09,"14 Willow St, Seattle, WA 98101" -273833,20in Monitor,1,109.99,10/07/19 18:41,"785 Adams St, Austin, TX 73301" -273834,27in 4K Gaming Monitor,1,389.99,10/03/19 08:32,"480 Forest St, Atlanta, GA 30301" -273835,iPhone,1,700,10/08/19 11:20,"905 1st St, Los Angeles, CA 90001" -273836,iPhone,1,700,10/24/19 10:28,"160 Center St, San Francisco, CA 94016" -273836,Lightning Charging Cable,1,14.95,10/24/19 10:28,"160 Center St, San Francisco, CA 94016" -273837,AAA Batteries (4-pack),1,2.99,10/16/19 17:13,"443 Adams St, Seattle, WA 98101" -273838,AA Batteries (4-pack),1,3.84,10/21/19 12:09,"884 7th St, Dallas, TX 75001" -273839,Wired Headphones,1,11.99,10/15/19 17:10,"676 Cedar St, San Francisco, CA 94016" -273840,ThinkPad Laptop,1,999.99,10/14/19 19:49,"872 14th St, San Francisco, CA 94016" -273841,Apple Airpods Headphones,1,150,10/12/19 19:37,"331 Highland St, New York City, NY 10001" -273842,Apple Airpods Headphones,1,150,10/13/19 07:38,"647 6th St, Los Angeles, CA 90001" -273843,iPhone,1,700,10/16/19 10:14,"19 Spruce St, Seattle, WA 98101" -273844,Apple Airpods Headphones,1,150,10/14/19 08:40,"402 Jefferson St, Seattle, WA 98101" -273845,Flatscreen TV,1,300,10/25/19 13:01,"555 Hill St, Boston, MA 02215" -273846,27in FHD Monitor,1,149.99,10/02/19 09:34,"138 Forest St, San Francisco, CA 94016" -273847,AA Batteries (4-pack),2,3.84,10/30/19 16:35,"943 5th St, Boston, MA 02215" -273848,34in Ultrawide Monitor,1,379.99,10/26/19 13:26,"948 6th St, San Francisco, CA 94016" -273849,Wired Headphones,1,11.99,10/22/19 15:12,"713 Chestnut St, Dallas, TX 75001" -273850,Wired Headphones,1,11.99,10/22/19 19:44,"364 Cherry St, Atlanta, GA 30301" -273851,AAA Batteries (4-pack),3,2.99,10/31/19 10:07,"803 12th St, Atlanta, GA 30301" -273852,Wired Headphones,1,11.99,10/01/19 10:25,"236 Chestnut St, Boston, MA 02215" -273853,Wired Headphones,1,11.99,10/02/19 19:28,"832 Lake St, Austin, TX 73301" -273854,USB-C Charging Cable,2,11.95,10/10/19 23:24,"978 Lake St, Portland, ME 04101" -273855,Wired Headphones,1,11.99,10/26/19 12:32,"995 Adams St, Portland, ME 04101" -273856,Bose SoundSport Headphones,1,99.99,10/28/19 09:49,"324 1st St, Los Angeles, CA 90001" -273857,Lightning Charging Cable,1,14.95,10/21/19 19:07,"227 Jackson St, Seattle, WA 98101" -273858,USB-C Charging Cable,1,11.95,10/30/19 20:52,"509 Ridge St, Seattle, WA 98101" -273859,27in FHD Monitor,1,149.99,10/06/19 21:16,"20 Sunset St, Boston, MA 02215" -273860,AA Batteries (4-pack),1,3.84,10/31/19 11:27,"245 Forest St, New York City, NY 10001" -273861,Apple Airpods Headphones,1,150,10/04/19 11:05,"565 Hill St, Los Angeles, CA 90001" -273862,Wired Headphones,1,11.99,10/21/19 20:26,"349 Hickory St, New York City, NY 10001" -273862,34in Ultrawide Monitor,1,379.99,10/21/19 20:26,"349 Hickory St, New York City, NY 10001" -273863,27in FHD Monitor,1,149.99,10/05/19 13:14,"841 Cedar St, New York City, NY 10001" -273864,Apple Airpods Headphones,1,150,10/03/19 17:44,"720 Center St, New York City, NY 10001" -273865,USB-C Charging Cable,1,11.95,10/28/19 11:04,"967 Elm St, Seattle, WA 98101" -273866,Wired Headphones,1,11.99,10/14/19 18:43,"420 6th St, Los Angeles, CA 90001" -273867,Wired Headphones,1,11.99,10/07/19 18:53,"72 9th St, Los Angeles, CA 90001" -273868,20in Monitor,1,109.99,10/20/19 10:56,"568 6th St, New York City, NY 10001" -273869,AA Batteries (4-pack),1,3.84,10/18/19 10:02,"522 North St, San Francisco, CA 94016" -273869,Wired Headphones,1,11.99,10/18/19 10:02,"522 North St, San Francisco, CA 94016" -273870,Wired Headphones,1,11.99,10/13/19 16:27,"293 Park St, Los Angeles, CA 90001" -273871,Apple Airpods Headphones,1,150,10/02/19 02:47,"76 South St, San Francisco, CA 94016" -273872,Apple Airpods Headphones,1,150,10/28/19 19:32,"234 Main St, Los Angeles, CA 90001" -273873,AA Batteries (4-pack),1,3.84,10/13/19 08:34,"77 Lakeview St, Los Angeles, CA 90001" -273874,Apple Airpods Headphones,1,150,10/17/19 10:18,"294 Cherry St, New York City, NY 10001" -273875,Vareebadd Phone,1,400,10/28/19 13:55,"167 11th St, Austin, TX 73301" -273876,Wired Headphones,1,11.99,10/14/19 02:36,"949 Church St, New York City, NY 10001" -273877,AAA Batteries (4-pack),1,2.99,10/27/19 17:09,"372 Lincoln St, Los Angeles, CA 90001" -273878,Apple Airpods Headphones,1,150,10/07/19 16:06,"914 Center St, San Francisco, CA 94016" -273879,Lightning Charging Cable,1,14.95,10/26/19 13:59,"761 Wilson St, Los Angeles, CA 90001" -273880,27in 4K Gaming Monitor,1,389.99,10/19/19 07:12,"297 Lake St, Los Angeles, CA 90001" -273881,Bose SoundSport Headphones,1,99.99,10/27/19 21:52,"437 Church St, New York City, NY 10001" -273882,USB-C Charging Cable,1,11.95,10/09/19 19:39,"514 1st St, Dallas, TX 75001" -273883,Wired Headphones,1,11.99,10/24/19 16:00,"803 14th St, San Francisco, CA 94016" -273884,USB-C Charging Cable,2,11.95,10/14/19 17:36,"567 Maple St, San Francisco, CA 94016" -273885,USB-C Charging Cable,1,11.95,10/14/19 21:38,"240 Lincoln St, Austin, TX 73301" -273886,27in FHD Monitor,1,149.99,10/20/19 22:16,"786 Johnson St, Seattle, WA 98101" -273886,Macbook Pro Laptop,1,1700,10/20/19 22:16,"786 Johnson St, Seattle, WA 98101" -273887,AAA Batteries (4-pack),3,2.99,10/04/19 18:37,"703 Lincoln St, Portland, OR 97035" -273888,Bose SoundSport Headphones,1,99.99,10/04/19 18:22,"922 South St, Dallas, TX 75001" -273889,27in 4K Gaming Monitor,1,389.99,10/17/19 10:27,"349 Spruce St, Austin, TX 73301" -273890,Bose SoundSport Headphones,1,99.99,10/06/19 15:51,"456 Elm St, Los Angeles, CA 90001" -273891,AA Batteries (4-pack),1,3.84,10/29/19 17:56,"394 Adams St, San Francisco, CA 94016" -273892,Apple Airpods Headphones,1,150,10/01/19 14:15,"456 Cherry St, Boston, MA 02215" -273893,AAA Batteries (4-pack),1,2.99,10/14/19 20:32,"751 10th St, San Francisco, CA 94016" -273894,AAA Batteries (4-pack),3,2.99,10/15/19 18:14,"114 Hickory St, San Francisco, CA 94016" -273895,27in 4K Gaming Monitor,1,389.99,10/20/19 14:29,"127 Willow St, Atlanta, GA 30301" -273896,Macbook Pro Laptop,1,1700,10/12/19 19:45,"773 Main St, San Francisco, CA 94016" -273897,Macbook Pro Laptop,1,1700,10/19/19 14:09,"795 1st St, Atlanta, GA 30301" -273898,Bose SoundSport Headphones,1,99.99,10/25/19 13:34,"573 South St, New York City, NY 10001" -273899,Wired Headphones,1,11.99,10/29/19 09:26,"738 Wilson St, Los Angeles, CA 90001" -273900,AA Batteries (4-pack),1,3.84,10/05/19 09:27,"899 Dogwood St, Seattle, WA 98101" -273901,Wired Headphones,1,11.99,10/30/19 18:01,"849 River St, Boston, MA 02215" -273902,USB-C Charging Cable,1,11.95,10/28/19 20:55,"838 Spruce St, Dallas, TX 75001" -273903,AAA Batteries (4-pack),1,2.99,10/27/19 22:55,"987 Maple St, San Francisco, CA 94016" -273904,Bose SoundSport Headphones,1,99.99,10/05/19 21:54,"776 1st St, Boston, MA 02215" -273905,Macbook Pro Laptop,1,1700,10/14/19 13:08,"614 Spruce St, San Francisco, CA 94016" -273906,Lightning Charging Cable,1,14.95,10/14/19 14:51,"473 6th St, New York City, NY 10001" -273907,AAA Batteries (4-pack),1,2.99,10/17/19 09:37,"211 12th St, New York City, NY 10001" -273908,Lightning Charging Cable,1,14.95,10/09/19 10:50,"914 4th St, Portland, OR 97035" -273909,AAA Batteries (4-pack),1,2.99,10/19/19 19:40,"314 8th St, San Francisco, CA 94016" -273910,Wired Headphones,1,11.99,10/18/19 21:44,"678 West St, Los Angeles, CA 90001" -273911,Vareebadd Phone,1,400,10/06/19 05:19,"886 11th St, San Francisco, CA 94016" -273912,Lightning Charging Cable,1,14.95,10/20/19 17:32,"815 Ridge St, San Francisco, CA 94016" -273913,USB-C Charging Cable,1,11.95,10/19/19 22:36,"440 6th St, Atlanta, GA 30301" -273914,Bose SoundSport Headphones,1,99.99,10/27/19 19:18,"760 Hill St, San Francisco, CA 94016" -273915,Google Phone,1,600,10/30/19 11:59,"693 Main St, New York City, NY 10001" -273916,iPhone,1,700,10/07/19 13:20,"91 Walnut St, Los Angeles, CA 90001" -273917,27in 4K Gaming Monitor,1,389.99,10/01/19 13:28,"556 Forest St, San Francisco, CA 94016" -273918,USB-C Charging Cable,1,11.95,10/11/19 20:59,"917 Church St, New York City, NY 10001" -273919,Bose SoundSport Headphones,1,99.99,10/22/19 23:29,"276 Cherry St, San Francisco, CA 94016" -273920,Bose SoundSport Headphones,1,99.99,10/22/19 12:28,"520 Main St, San Francisco, CA 94016" -273921,USB-C Charging Cable,1,11.95,10/25/19 12:29,"623 Main St, Austin, TX 73301" -273922,USB-C Charging Cable,1,11.95,10/22/19 10:43,"389 7th St, Seattle, WA 98101" -273923,ThinkPad Laptop,1,999.99,10/10/19 16:59,"59 Walnut St, Portland, OR 97035" -273924,Lightning Charging Cable,1,14.95,10/20/19 02:38,"675 Main St, Seattle, WA 98101" -273925,AAA Batteries (4-pack),1,2.99,10/02/19 10:17,"925 Elm St, Atlanta, GA 30301" -273926,Vareebadd Phone,1,400,10/28/19 15:45,"848 11th St, Seattle, WA 98101" -273926,Wired Headphones,1,11.99,10/28/19 15:45,"848 11th St, Seattle, WA 98101" -273927,AA Batteries (4-pack),1,3.84,10/26/19 10:30,"255 Jefferson St, Portland, OR 97035" -273928,Wired Headphones,1,11.99,10/23/19 12:45,"385 11th St, San Francisco, CA 94016" -273929,Wired Headphones,1,11.99,10/29/19 09:51,"358 Lake St, Dallas, TX 75001" -273930,Apple Airpods Headphones,1,150,10/01/19 08:31,"191 Chestnut St, Boston, MA 02215" -273931,34in Ultrawide Monitor,1,379.99,10/25/19 12:04,"83 Washington St, Portland, OR 97035" -273932,USB-C Charging Cable,1,11.95,10/26/19 14:57,"715 6th St, Los Angeles, CA 90001" -273933,AAA Batteries (4-pack),1,2.99,10/17/19 17:03,"921 9th St, San Francisco, CA 94016" -273934,27in FHD Monitor,1,149.99,10/29/19 12:43,"235 West St, San Francisco, CA 94016" -273935,Apple Airpods Headphones,1,150,10/01/19 22:52,"988 Pine St, Seattle, WA 98101" -273936,Wired Headphones,1,11.99,10/30/19 19:22,"54 Lakeview St, New York City, NY 10001" -273937,iPhone,1,700,10/15/19 11:12,"428 Madison St, Atlanta, GA 30301" -273938,Macbook Pro Laptop,1,1700,10/11/19 11:05,"958 Wilson St, New York City, NY 10001" -273939,27in FHD Monitor,1,149.99,10/05/19 22:02,"660 Cedar St, Boston, MA 02215" -273940,34in Ultrawide Monitor,1,379.99,10/18/19 16:39,"937 Maple St, Boston, MA 02215" -273941,USB-C Charging Cable,1,11.95,10/27/19 07:24,"574 5th St, Atlanta, GA 30301" -273942,27in 4K Gaming Monitor,1,389.99,10/07/19 17:03,"344 Jackson St, Dallas, TX 75001" -273943,USB-C Charging Cable,1,11.95,10/12/19 00:45,"478 Sunset St, Seattle, WA 98101" -273944,20in Monitor,1,109.99,10/21/19 22:19,"698 2nd St, Portland, OR 97035" -273945,Wired Headphones,1,11.99,10/09/19 22:52,"773 Maple St, Los Angeles, CA 90001" -273946,Google Phone,1,600,10/07/19 16:18,"232 Madison St, Seattle, WA 98101" -273946,Wired Headphones,1,11.99,10/07/19 16:18,"232 Madison St, Seattle, WA 98101" -273947,27in FHD Monitor,1,149.99,10/19/19 11:47,"290 Lake St, Los Angeles, CA 90001" -273948,Apple Airpods Headphones,1,150,10/22/19 09:06,"196 6th St, Atlanta, GA 30301" -273949,Wired Headphones,1,11.99,10/29/19 16:48,"24 Lincoln St, San Francisco, CA 94016" -273950,Lightning Charging Cable,1,14.95,10/31/19 17:08,"619 Center St, Dallas, TX 75001" -273951,Bose SoundSport Headphones,1,99.99,10/30/19 11:23,"731 West St, Seattle, WA 98101" -273952,AAA Batteries (4-pack),1,2.99,10/23/19 07:57,"303 Cherry St, New York City, NY 10001" -273953,USB-C Charging Cable,1,11.95,10/20/19 21:25,"999 8th St, Atlanta, GA 30301" -273954,AA Batteries (4-pack),1,3.84,10/15/19 11:09,"265 Highland St, Los Angeles, CA 90001" -273955,20in Monitor,1,109.99,10/20/19 19:44,"213 14th St, Boston, MA 02215" -273956,AAA Batteries (4-pack),1,2.99,10/25/19 21:46,"835 Elm St, Dallas, TX 75001" -273956,AAA Batteries (4-pack),1,2.99,10/25/19 21:46,"835 Elm St, Dallas, TX 75001" -273957,USB-C Charging Cable,1,11.95,10/29/19 22:46,"898 Cherry St, New York City, NY 10001" -273958,USB-C Charging Cable,1,11.95,10/08/19 20:02,"132 Willow St, New York City, NY 10001" -273959,Lightning Charging Cable,1,14.95,10/14/19 11:45,"330 West St, New York City, NY 10001" -273959,AA Batteries (4-pack),1,3.84,10/14/19 11:45,"330 West St, New York City, NY 10001" -273960,ThinkPad Laptop,1,999.99,10/24/19 22:51,"193 Dogwood St, Seattle, WA 98101" -273961,USB-C Charging Cable,1,11.95,10/18/19 16:07,"821 Elm St, Los Angeles, CA 90001" -273961,Lightning Charging Cable,1,14.95,10/18/19 16:07,"821 Elm St, Los Angeles, CA 90001" -273962,20in Monitor,1,109.99,10/01/19 20:11,"970 Willow St, San Francisco, CA 94016" -273963,Macbook Pro Laptop,1,1700,10/17/19 20:48,"198 Main St, Los Angeles, CA 90001" -273964,Lightning Charging Cable,1,14.95,10/04/19 12:35,"574 West St, San Francisco, CA 94016" -273965,Macbook Pro Laptop,1,1700,10/18/19 14:28,"470 Adams St, Austin, TX 73301" -273966,Lightning Charging Cable,1,14.95,10/23/19 21:50,"6 2nd St, Los Angeles, CA 90001" -273967,Wired Headphones,1,11.99,10/31/19 16:52,"37 Wilson St, Portland, OR 97035" -273968,Macbook Pro Laptop,1,1700,10/28/19 21:05,"380 Cherry St, Dallas, TX 75001" -273969,34in Ultrawide Monitor,1,379.99,10/05/19 22:18,"55 Lincoln St, Los Angeles, CA 90001" -273970,USB-C Charging Cable,1,11.95,10/16/19 20:29,"234 Center St, San Francisco, CA 94016" -273970,Apple Airpods Headphones,1,150,10/16/19 20:29,"234 Center St, San Francisco, CA 94016" -273971,USB-C Charging Cable,1,11.95,10/17/19 22:55,"716 6th St, Los Angeles, CA 90001" -273972,27in 4K Gaming Monitor,1,389.99,10/03/19 20:43,"180 Highland St, Atlanta, GA 30301" -273973,Lightning Charging Cable,1,14.95,10/25/19 16:49,"189 River St, Dallas, TX 75001" -273974,Lightning Charging Cable,1,14.95,10/09/19 10:36,"956 Chestnut St, Atlanta, GA 30301" -273975,27in FHD Monitor,1,149.99,10/13/19 15:18,"449 Willow St, San Francisco, CA 94016" -273976,USB-C Charging Cable,1,11.95,10/23/19 12:40,"903 Meadow St, New York City, NY 10001" -273977,Lightning Charging Cable,1,14.95,10/28/19 21:40,"810 7th St, Seattle, WA 98101" -273978,20in Monitor,1,109.99,10/26/19 09:47,"132 Forest St, Los Angeles, CA 90001" -273979,Wired Headphones,1,11.99,10/10/19 10:18,"332 Park St, Seattle, WA 98101" -273980,iPhone,1,700,10/17/19 06:26,"738 Cherry St, Portland, ME 04101" -273980,Lightning Charging Cable,1,14.95,10/17/19 06:26,"738 Cherry St, Portland, ME 04101" -273981,USB-C Charging Cable,1,11.95,10/05/19 12:10,"947 Lake St, Boston, MA 02215" -273982,AA Batteries (4-pack),2,3.84,10/25/19 03:39,"266 South St, Seattle, WA 98101" -273983,iPhone,1,700,10/04/19 06:54,"208 Pine St, Portland, OR 97035" -273984,34in Ultrawide Monitor,1,379.99,10/14/19 16:28,"314 Lincoln St, New York City, NY 10001" -273985,Wired Headphones,2,11.99,10/04/19 14:15,"463 5th St, Atlanta, GA 30301" -273986,AAA Batteries (4-pack),2,2.99,10/23/19 19:12,"844 Dogwood St, Seattle, WA 98101" -273987,USB-C Charging Cable,1,11.95,10/24/19 20:15,"675 River St, Boston, MA 02215" -273988,Wired Headphones,1,11.99,10/15/19 00:46,"631 Maple St, Seattle, WA 98101" -273989,27in 4K Gaming Monitor,1,389.99,10/11/19 23:03,"617 5th St, Seattle, WA 98101" -273990,AA Batteries (4-pack),1,3.84,10/17/19 19:51,"100 Pine St, Los Angeles, CA 90001" -273991,AA Batteries (4-pack),2,3.84,10/08/19 14:46,"936 9th St, Austin, TX 73301" -273992,Wired Headphones,1,11.99,10/12/19 20:33,"479 14th St, San Francisco, CA 94016" -273993,Apple Airpods Headphones,1,150,10/16/19 18:22,"788 South St, Los Angeles, CA 90001" -273994,AAA Batteries (4-pack),1,2.99,10/06/19 10:55,"489 River St, Boston, MA 02215" -273995,Apple Airpods Headphones,1,150,10/27/19 09:21,"474 Spruce St, Dallas, TX 75001" -273996,20in Monitor,1,109.99,10/23/19 09:48,"355 North St, New York City, NY 10001" -273997,Wired Headphones,1,11.99,10/10/19 21:44,"261 Pine St, Los Angeles, CA 90001" -273998,Bose SoundSport Headphones,1,99.99,10/14/19 00:34,"759 6th St, Portland, OR 97035" -273999,Apple Airpods Headphones,1,150,10/01/19 22:06,"248 Spruce St, Seattle, WA 98101" -274000,Macbook Pro Laptop,1,1700,10/12/19 14:56,"671 Lakeview St, San Francisco, CA 94016" -274001,AAA Batteries (4-pack),1,2.99,10/11/19 16:52,"8 Forest St, New York City, NY 10001" -274002,Apple Airpods Headphones,1,150,10/15/19 10:42,"323 Cherry St, New York City, NY 10001" -274003,20in Monitor,1,109.99,10/26/19 19:47,"337 2nd St, Dallas, TX 75001" -274004,Wired Headphones,2,11.99,10/10/19 21:37,"277 1st St, Seattle, WA 98101" -274005,Apple Airpods Headphones,1,150,10/22/19 10:48,"215 10th St, Los Angeles, CA 90001" -274006,Lightning Charging Cable,1,14.95,10/17/19 01:59,"89 9th St, Dallas, TX 75001" -274007,USB-C Charging Cable,1,11.95,10/04/19 00:04,"231 9th St, Austin, TX 73301" -274008,iPhone,1,700,10/21/19 16:27,"87 Meadow St, Dallas, TX 75001" -274008,Lightning Charging Cable,1,14.95,10/21/19 16:27,"87 Meadow St, Dallas, TX 75001" -274009,Apple Airpods Headphones,1,150,10/28/19 11:41,"615 Dogwood St, Boston, MA 02215" -274010,Macbook Pro Laptop,1,1700,10/15/19 19:25,"85 8th St, New York City, NY 10001" -274011,Lightning Charging Cable,1,14.95,10/26/19 10:02,"722 2nd St, Los Angeles, CA 90001" -274012,Google Phone,1,600,10/28/19 12:32,"178 Forest St, San Francisco, CA 94016" -274012,USB-C Charging Cable,1,11.95,10/28/19 12:32,"178 Forest St, San Francisco, CA 94016" -274013,Apple Airpods Headphones,1,150,10/16/19 09:33,"454 North St, Los Angeles, CA 90001" -274014,USB-C Charging Cable,2,11.95,10/19/19 10:52,"479 Park St, Austin, TX 73301" -274015,27in 4K Gaming Monitor,1,389.99,10/12/19 15:02,"746 Center St, San Francisco, CA 94016" -274016,34in Ultrawide Monitor,1,379.99,10/10/19 21:13,"315 Highland St, San Francisco, CA 94016" -274017,ThinkPad Laptop,1,999.99,10/14/19 19:28,"451 6th St, San Francisco, CA 94016" -274018,USB-C Charging Cable,1,11.95,10/06/19 22:14,"690 Main St, Seattle, WA 98101" -274019,Wired Headphones,1,11.99,10/15/19 16:36,"532 Highland St, New York City, NY 10001" -274020,LG Washing Machine,1,600.0,10/08/19 07:56,"884 Jackson St, Seattle, WA 98101" -274021,Flatscreen TV,1,300,10/22/19 18:51,"338 Hill St, Boston, MA 02215" -274022,Flatscreen TV,1,300,10/30/19 03:10,"669 7th St, Seattle, WA 98101" -274023,USB-C Charging Cable,1,11.95,10/24/19 00:58,"980 5th St, San Francisco, CA 94016" -274024,Wired Headphones,1,11.99,10/24/19 10:23,"701 Cherry St, New York City, NY 10001" -274025,AAA Batteries (4-pack),1,2.99,10/03/19 13:03,"8 Forest St, San Francisco, CA 94016" -274026,27in 4K Gaming Monitor,1,389.99,10/01/19 12:08,"920 Sunset St, Seattle, WA 98101" -274027,iPhone,1,700,10/13/19 06:14,"356 Maple St, San Francisco, CA 94016" -274028,Lightning Charging Cable,1,14.95,10/25/19 23:16,"908 Elm St, Los Angeles, CA 90001" -274029,USB-C Charging Cable,1,11.95,10/24/19 20:03,"34 Ridge St, Seattle, WA 98101" -274030,27in 4K Gaming Monitor,1,389.99,10/21/19 17:03,"814 Walnut St, Dallas, TX 75001" -274031,Bose SoundSport Headphones,1,99.99,10/22/19 13:04,"120 Forest St, San Francisco, CA 94016" -274032,Lightning Charging Cable,1,14.95,10/05/19 17:40,"273 1st St, Atlanta, GA 30301" -274032,Wired Headphones,1,11.99,10/05/19 17:40,"273 1st St, Atlanta, GA 30301" -274033,Lightning Charging Cable,1,14.95,10/18/19 13:50,"474 Center St, Atlanta, GA 30301" -274034,Lightning Charging Cable,1,14.95,10/24/19 06:33,"760 Dogwood St, Los Angeles, CA 90001" -274035,AAA Batteries (4-pack),1,2.99,10/21/19 12:19,"106 Jefferson St, Austin, TX 73301" -274036,Wired Headphones,2,11.99,10/25/19 23:47,"842 11th St, San Francisco, CA 94016" -274037,Apple Airpods Headphones,1,150,10/01/19 13:36,"680 Pine St, Dallas, TX 75001" -274038,Google Phone,1,600,10/18/19 12:28,"417 9th St, Los Angeles, CA 90001" -274039,Lightning Charging Cable,1,14.95,10/16/19 21:24,"619 Maple St, Atlanta, GA 30301" -274040,Apple Airpods Headphones,1,150,10/31/19 17:43,"788 Church St, Los Angeles, CA 90001" -274041,AA Batteries (4-pack),1,3.84,10/02/19 07:15,"993 14th St, Boston, MA 02215" -274042,Apple Airpods Headphones,1,150,10/06/19 08:07,"39 Hill St, Dallas, TX 75001" -274043,Wired Headphones,1,11.99,10/17/19 10:32,"906 9th St, Dallas, TX 75001" -274044,iPhone,1,700,10/01/19 09:18,"746 Maple St, Seattle, WA 98101" -274045,iPhone,1,700,10/30/19 14:38,"123 Hickory St, Seattle, WA 98101" -274046,Apple Airpods Headphones,1,150,10/07/19 18:02,"489 Hill St, Boston, MA 02215" -274047,AAA Batteries (4-pack),3,2.99,10/08/19 10:53,"818 Pine St, New York City, NY 10001" -274048,Lightning Charging Cable,1,14.95,10/14/19 19:02,"504 Walnut St, Seattle, WA 98101" -274049,27in 4K Gaming Monitor,1,389.99,10/14/19 15:43,"604 Main St, Portland, ME 04101" -274050,Apple Airpods Headphones,1,150,10/21/19 16:23,"47 Hill St, Seattle, WA 98101" -274051,USB-C Charging Cable,2,11.95,10/02/19 12:57,"40 Main St, Atlanta, GA 30301" -274052,Wired Headphones,1,11.99,10/08/19 13:35,"862 River St, Los Angeles, CA 90001" -274053,Macbook Pro Laptop,1,1700,10/21/19 16:13,"350 Park St, San Francisco, CA 94016" -274054,iPhone,1,700,10/22/19 17:35,"949 6th St, San Francisco, CA 94016" -274055,AAA Batteries (4-pack),2,2.99,10/19/19 08:30,"452 6th St, Seattle, WA 98101" -274056,USB-C Charging Cable,1,11.95,10/08/19 13:18,"198 Ridge St, New York City, NY 10001" -274057,AA Batteries (4-pack),3,3.84,10/19/19 19:21,"239 Highland St, San Francisco, CA 94016" -274058,USB-C Charging Cable,1,11.95,10/25/19 21:16,"5 Elm St, Seattle, WA 98101" -274059,27in 4K Gaming Monitor,1,389.99,10/08/19 11:41,"962 8th St, Austin, TX 73301" -274060,Wired Headphones,1,11.99,10/05/19 13:30,"934 Center St, Los Angeles, CA 90001" -274061,27in 4K Gaming Monitor,1,389.99,10/14/19 03:17,"741 Chestnut St, Portland, OR 97035" -274062,AA Batteries (4-pack),1,3.84,10/25/19 14:55,"359 5th St, New York City, NY 10001" -274063,27in 4K Gaming Monitor,1,389.99,10/17/19 20:22,"598 South St, San Francisco, CA 94016" -274064,AA Batteries (4-pack),1,3.84,10/11/19 21:55,"745 5th St, Portland, OR 97035" -274065,Macbook Pro Laptop,1,1700,10/07/19 09:47,"978 Cedar St, Los Angeles, CA 90001" -274066,iPhone,1,700,10/24/19 11:58,"861 Pine St, New York City, NY 10001" -274066,Lightning Charging Cable,2,14.95,10/24/19 11:58,"861 Pine St, New York City, NY 10001" -274067,Apple Airpods Headphones,1,150,10/06/19 17:19,"560 Johnson St, Atlanta, GA 30301" -274068,AAA Batteries (4-pack),2,2.99,10/01/19 10:38,"951 Lake St, New York City, NY 10001" -274069,Bose SoundSport Headphones,1,99.99,10/09/19 16:11,"534 Forest St, Atlanta, GA 30301" -274070,20in Monitor,1,109.99,10/21/19 09:38,"509 9th St, Seattle, WA 98101" -274071,27in 4K Gaming Monitor,1,389.99,10/26/19 22:25,"202 North St, Los Angeles, CA 90001" -274072,20in Monitor,1,109.99,10/22/19 09:03,"894 Lincoln St, New York City, NY 10001" -274073,AA Batteries (4-pack),1,3.84,10/07/19 14:05,"798 4th St, Dallas, TX 75001" -274074,Lightning Charging Cable,1,14.95,10/18/19 16:31,"260 Wilson St, New York City, NY 10001" -274075,27in FHD Monitor,1,149.99,10/19/19 14:35,"412 Main St, Seattle, WA 98101" -274076,20in Monitor,1,109.99,10/17/19 18:31,"533 4th St, Atlanta, GA 30301" -274077,AA Batteries (4-pack),2,3.84,10/11/19 14:53,"84 12th St, Los Angeles, CA 90001" -274078,iPhone,1,700,10/03/19 09:53,"936 Lakeview St, Atlanta, GA 30301" -274079,Google Phone,1,600,10/24/19 06:58,"939 Jackson St, Los Angeles, CA 90001" -274080,AA Batteries (4-pack),1,3.84,10/01/19 12:08,"34 Church St, Los Angeles, CA 90001" -274081,Macbook Pro Laptop,1,1700,10/30/19 12:18,"534 North St, Austin, TX 73301" -274082,Wired Headphones,2,11.99,10/28/19 00:49,"729 Lincoln St, Austin, TX 73301" -274083,AAA Batteries (4-pack),1,2.99,10/15/19 18:08,"52 6th St, Dallas, TX 75001" -274084,AAA Batteries (4-pack),1,2.99,10/05/19 15:33,"353 Meadow St, Boston, MA 02215" -274085,USB-C Charging Cable,1,11.95,10/02/19 10:55,"609 1st St, Boston, MA 02215" -274086,Flatscreen TV,1,300,10/19/19 23:55,"209 2nd St, New York City, NY 10001" -274087,27in FHD Monitor,1,149.99,10/10/19 14:03,"516 Willow St, Boston, MA 02215" -274088,Bose SoundSport Headphones,1,99.99,10/12/19 23:35,"669 Church St, Portland, ME 04101" -274089,AA Batteries (4-pack),2,3.84,10/04/19 16:08,"57 Madison St, San Francisco, CA 94016" -274090,AAA Batteries (4-pack),1,2.99,10/04/19 10:41,"726 Wilson St, Boston, MA 02215" -274091,Bose SoundSport Headphones,1,99.99,10/18/19 11:21,"294 Chestnut St, San Francisco, CA 94016" -274092,USB-C Charging Cable,1,11.95,10/13/19 18:35,"751 13th St, Boston, MA 02215" -274093,Bose SoundSport Headphones,1,99.99,10/15/19 08:37,"1 Chestnut St, San Francisco, CA 94016" -274094,Lightning Charging Cable,1,14.95,10/05/19 16:35,"662 Ridge St, Boston, MA 02215" -274095,iPhone,1,700,10/04/19 18:10,"801 West St, Los Angeles, CA 90001" -274096,AAA Batteries (4-pack),1,2.99,10/03/19 11:51,"324 Johnson St, San Francisco, CA 94016" -274097,AA Batteries (4-pack),1,3.84,10/29/19 20:49,"188 14th St, Austin, TX 73301" -274097,27in 4K Gaming Monitor,1,389.99,10/29/19 20:49,"188 14th St, Austin, TX 73301" -274098,Apple Airpods Headphones,1,150,10/28/19 20:40,"380 Jackson St, Dallas, TX 75001" -274099,27in FHD Monitor,1,149.99,10/31/19 21:08,"329 Hickory St, New York City, NY 10001" -274100,Bose SoundSport Headphones,1,99.99,10/10/19 22:42,"859 9th St, Seattle, WA 98101" -274101,Lightning Charging Cable,1,14.95,10/19/19 14:34,"227 Hickory St, San Francisco, CA 94016" -274101,Lightning Charging Cable,1,14.95,10/19/19 14:34,"227 Hickory St, San Francisco, CA 94016" -274102,Bose SoundSport Headphones,1,99.99,10/09/19 10:14,"448 7th St, New York City, NY 10001" -274103,27in 4K Gaming Monitor,1,389.99,10/14/19 12:37,"938 Johnson St, San Francisco, CA 94016" -274104,AAA Batteries (4-pack),1,2.99,10/30/19 18:08,"665 6th St, Dallas, TX 75001" -274105,AA Batteries (4-pack),4,3.84,10/17/19 07:52,"87 Jefferson St, Seattle, WA 98101" -274106,AAA Batteries (4-pack),1,2.99,10/11/19 11:53,"599 9th St, San Francisco, CA 94016" -274107,Wired Headphones,1,11.99,10/21/19 22:13,"181 West St, Austin, TX 73301" -274108,Wired Headphones,1,11.99,10/18/19 16:32,"869 Highland St, San Francisco, CA 94016" -274109,Wired Headphones,1,11.99,10/14/19 18:22,"20 Main St, Los Angeles, CA 90001" -274110,Apple Airpods Headphones,1,150,10/20/19 19:49,"309 Johnson St, Los Angeles, CA 90001" -274111,Apple Airpods Headphones,1,150,10/15/19 21:59,"485 7th St, New York City, NY 10001" -274112,Lightning Charging Cable,1,14.95,10/31/19 10:16,"703 Chestnut St, Seattle, WA 98101" -274113,AAA Batteries (4-pack),1,2.99,10/01/19 09:38,"87 Main St, Boston, MA 02215" -274114,Bose SoundSport Headphones,1,99.99,10/23/19 10:24,"221 9th St, San Francisco, CA 94016" -274115,USB-C Charging Cable,1,11.95,10/20/19 11:12,"700 2nd St, Atlanta, GA 30301" -274116,Lightning Charging Cable,1,14.95,10/07/19 09:50,"427 11th St, Boston, MA 02215" -274117,AAA Batteries (4-pack),1,2.99,10/02/19 13:16,"614 Dogwood St, Boston, MA 02215" -274118,Lightning Charging Cable,1,14.95,10/07/19 10:10,"319 West St, Boston, MA 02215" -274119,USB-C Charging Cable,1,11.95,10/28/19 12:30,"515 Cherry St, Boston, MA 02215" -274120,AA Batteries (4-pack),1,3.84,10/05/19 09:46,"695 8th St, New York City, NY 10001" -274121,AA Batteries (4-pack),2,3.84,10/03/19 18:45,"181 Elm St, Seattle, WA 98101" -274122,Flatscreen TV,1,300,10/28/19 15:28,"170 8th St, Austin, TX 73301" -274123,Lightning Charging Cable,1,14.95,10/27/19 17:34,"388 Dogwood St, Los Angeles, CA 90001" -274123,27in FHD Monitor,1,149.99,10/27/19 17:34,"388 Dogwood St, Los Angeles, CA 90001" -274124,AAA Batteries (4-pack),1,2.99,10/28/19 13:57,"48 Church St, Boston, MA 02215" -274125,USB-C Charging Cable,1,11.95,10/02/19 22:43,"562 12th St, San Francisco, CA 94016" -274126,iPhone,1,700,10/16/19 12:33,"177 Adams St, San Francisco, CA 94016" -274127,Lightning Charging Cable,1,14.95,10/18/19 20:57,"946 Hickory St, Dallas, TX 75001" -274128,Bose SoundSport Headphones,1,99.99,10/20/19 20:08,"710 Hill St, Los Angeles, CA 90001" -274129,27in FHD Monitor,1,149.99,10/27/19 20:33,"338 Jefferson St, Dallas, TX 75001" -274130,Wired Headphones,1,11.99,10/10/19 04:34,"428 11th St, Los Angeles, CA 90001" -274131,AAA Batteries (4-pack),1,2.99,10/14/19 10:51,"108 Walnut St, San Francisco, CA 94016" -274132,Lightning Charging Cable,1,14.95,10/17/19 18:35,"554 Spruce St, San Francisco, CA 94016" -274133,AA Batteries (4-pack),1,3.84,10/06/19 17:44,"82 Dogwood St, New York City, NY 10001" -274134,34in Ultrawide Monitor,1,379.99,10/10/19 11:17,"669 Madison St, Austin, TX 73301" -274135,AAA Batteries (4-pack),1,2.99,10/24/19 16:02,"896 14th St, Portland, OR 97035" -274136,27in 4K Gaming Monitor,1,389.99,10/17/19 00:07,"224 5th St, San Francisco, CA 94016" -274137,Flatscreen TV,1,300,10/06/19 00:57,"82 Elm St, Boston, MA 02215" -274138,AA Batteries (4-pack),1,3.84,10/21/19 18:05,"105 South St, Boston, MA 02215" -274139,Vareebadd Phone,1,400,10/29/19 10:22,"453 Spruce St, Los Angeles, CA 90001" -274139,USB-C Charging Cable,1,11.95,10/29/19 10:22,"453 Spruce St, Los Angeles, CA 90001" -274140,Bose SoundSport Headphones,1,99.99,10/08/19 11:53,"860 8th St, Los Angeles, CA 90001" -274141,AA Batteries (4-pack),1,3.84,10/16/19 17:54,"168 Forest St, Portland, OR 97035" -274142,Lightning Charging Cable,1,14.95,10/04/19 10:01,"890 Meadow St, San Francisco, CA 94016" -274143,Wired Headphones,1,11.99,10/19/19 01:30,"588 Walnut St, Seattle, WA 98101" -274144,AAA Batteries (4-pack),1,2.99,10/25/19 12:27,"952 4th St, Boston, MA 02215" -274145,Lightning Charging Cable,1,14.95,10/14/19 20:47,"913 Jackson St, Boston, MA 02215" -274146,Macbook Pro Laptop,1,1700,10/14/19 15:36,"983 Forest St, Atlanta, GA 30301" -274147,Wired Headphones,1,11.99,10/18/19 15:34,"497 Maple St, Atlanta, GA 30301" -274148,AA Batteries (4-pack),1,3.84,10/04/19 10:10,"151 Forest St, Boston, MA 02215" -274149,Apple Airpods Headphones,1,150,10/31/19 07:21,"184 6th St, Portland, OR 97035" -274150,27in FHD Monitor,1,149.99,10/05/19 12:32,"774 Lincoln St, Austin, TX 73301" -274151,ThinkPad Laptop,1,999.99,10/01/19 14:50,"716 Church St, Boston, MA 02215" -274152,Macbook Pro Laptop,1,1700,10/01/19 16:25,"387 11th St, Boston, MA 02215" -274153,AA Batteries (4-pack),1,3.84,10/21/19 10:11,"41 Chestnut St, Boston, MA 02215" -274154,Bose SoundSport Headphones,1,99.99,10/06/19 11:23,"525 Cedar St, Boston, MA 02215" -274155,Google Phone,1,600,10/18/19 19:33,"12 Madison St, Atlanta, GA 30301" -274156,AAA Batteries (4-pack),1,2.99,10/10/19 20:51,"446 7th St, Seattle, WA 98101" -274157,AA Batteries (4-pack),1,3.84,10/10/19 19:11,"126 Chestnut St, San Francisco, CA 94016" -274158,Macbook Pro Laptop,1,1700,10/06/19 13:01,"430 Park St, Austin, TX 73301" -274159,AAA Batteries (4-pack),1,2.99,10/07/19 13:48,"432 Elm St, New York City, NY 10001" -274160,Bose SoundSport Headphones,1,99.99,10/09/19 09:58,"568 Madison St, Portland, OR 97035" -274161,Wired Headphones,1,11.99,10/28/19 11:36,"161 Ridge St, San Francisco, CA 94016" -274162,Wired Headphones,2,11.99,10/31/19 16:06,"722 Johnson St, Dallas, TX 75001" -274163,USB-C Charging Cable,1,11.95,10/28/19 14:29,"873 Wilson St, New York City, NY 10001" -274164,Bose SoundSport Headphones,1,99.99,10/13/19 10:20,"162 North St, Austin, TX 73301" -274165,Lightning Charging Cable,1,14.95,10/22/19 15:02,"357 Jefferson St, Atlanta, GA 30301" -274166,Wired Headphones,1,11.99,10/23/19 15:56,"999 Madison St, Seattle, WA 98101" -274167,27in 4K Gaming Monitor,1,389.99,10/07/19 13:10,"623 Cherry St, San Francisco, CA 94016" -274168,AAA Batteries (4-pack),2,2.99,10/18/19 05:50,"116 Ridge St, Los Angeles, CA 90001" -274169,iPhone,1,700,10/08/19 12:44,"377 Highland St, Los Angeles, CA 90001" -274170,Bose SoundSport Headphones,1,99.99,10/10/19 21:08,"746 8th St, Los Angeles, CA 90001" -274171,Wired Headphones,1,11.99,10/10/19 17:28,"522 Adams St, New York City, NY 10001" -274172,USB-C Charging Cable,1,11.95,10/22/19 19:35,"534 West St, New York City, NY 10001" -274173,AA Batteries (4-pack),2,3.84,10/09/19 14:05,"385 Lake St, Los Angeles, CA 90001" -274174,AA Batteries (4-pack),1,3.84,10/18/19 10:55,"825 Pine St, Dallas, TX 75001" -274175,Lightning Charging Cable,1,14.95,10/28/19 07:26,"32 River St, Boston, MA 02215" -274175,Lightning Charging Cable,1,14.95,10/28/19 07:26,"32 River St, Boston, MA 02215" -274176,USB-C Charging Cable,1,11.95,10/24/19 21:23,"895 Jefferson St, Dallas, TX 75001" -274177,Lightning Charging Cable,1,14.95,10/20/19 20:36,"887 Highland St, Los Angeles, CA 90001" -274178,Lightning Charging Cable,1,14.95,10/01/19 07:26,"775 Walnut St, Seattle, WA 98101" -274179,ThinkPad Laptop,1,999.99,10/12/19 12:21,"561 8th St, Atlanta, GA 30301" -274180,Wired Headphones,1,11.99,10/06/19 22:11,"268 Jackson St, Los Angeles, CA 90001" -274181,Lightning Charging Cable,1,14.95,10/21/19 12:42,"778 Center St, Seattle, WA 98101" -274182,USB-C Charging Cable,1,11.95,10/21/19 20:22,"808 Johnson St, Los Angeles, CA 90001" -274183,AA Batteries (4-pack),3,3.84,10/22/19 13:53,"857 Lakeview St, New York City, NY 10001" -274184,AA Batteries (4-pack),1,3.84,10/26/19 19:25,"947 7th St, San Francisco, CA 94016" -274185,Apple Airpods Headphones,1,150,10/20/19 13:45,"799 6th St, Dallas, TX 75001" -274186,Wired Headphones,1,11.99,10/23/19 21:21,"412 Hickory St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -274187,Bose SoundSport Headphones,1,99.99,10/09/19 09:17,"715 13th St, Atlanta, GA 30301" -274188,AA Batteries (4-pack),2,3.84,10/02/19 12:42,"194 8th St, Los Angeles, CA 90001" -274189,Lightning Charging Cable,1,14.95,10/01/19 09:02,"811 River St, Seattle, WA 98101" -274190,34in Ultrawide Monitor,1,379.99,10/21/19 20:08,"449 Chestnut St, San Francisco, CA 94016" -274191,Apple Airpods Headphones,1,150,10/31/19 19:55,"568 Jefferson St, Boston, MA 02215" -274192,Lightning Charging Cable,1,14.95,10/15/19 09:03,"353 Hill St, Dallas, TX 75001" -274193,AA Batteries (4-pack),1,3.84,10/12/19 18:25,"683 Church St, San Francisco, CA 94016" -274194,Macbook Pro Laptop,1,1700,10/08/19 22:01,"224 Willow St, Atlanta, GA 30301" -274195,27in FHD Monitor,1,149.99,10/08/19 12:48,"779 Willow St, Boston, MA 02215" -274196,27in FHD Monitor,1,149.99,10/31/19 10:09,"620 Spruce St, New York City, NY 10001" -274197,AAA Batteries (4-pack),2,2.99,10/12/19 10:19,"965 Lincoln St, San Francisco, CA 94016" -274198,27in FHD Monitor,1,149.99,10/23/19 14:30,"702 Jackson St, San Francisco, CA 94016" -274199,Macbook Pro Laptop,1,1700,10/02/19 11:45,"210 Meadow St, San Francisco, CA 94016" -274200,AAA Batteries (4-pack),2,2.99,10/07/19 14:17,"536 Adams St, New York City, NY 10001" -274201,Apple Airpods Headphones,1,150,10/07/19 10:01,"613 Dogwood St, San Francisco, CA 94016" -274202,USB-C Charging Cable,1,11.95,10/03/19 22:08,"907 Willow St, Austin, TX 73301" -274203,AA Batteries (4-pack),2,3.84,10/11/19 21:40,"290 Willow St, Los Angeles, CA 90001" -274204,Flatscreen TV,1,300,10/06/19 17:33,"550 5th St, Portland, OR 97035" -274205,AA Batteries (4-pack),1,3.84,10/13/19 21:52,"78 14th St, Dallas, TX 75001" -274206,ThinkPad Laptop,1,999.99,10/30/19 21:36,"141 Washington St, New York City, NY 10001" -274207,Apple Airpods Headphones,1,150,10/18/19 14:26,"21 4th St, Los Angeles, CA 90001" -274207,Apple Airpods Headphones,1,150,10/18/19 14:26,"21 4th St, Los Angeles, CA 90001" -274208,AAA Batteries (4-pack),4,2.99,10/04/19 12:57,"499 Meadow St, New York City, NY 10001" -274209,27in FHD Monitor,1,149.99,10/24/19 14:30,"433 Hill St, Boston, MA 02215" -274210,AA Batteries (4-pack),1,3.84,10/13/19 17:28,"467 12th St, Boston, MA 02215" -274211,USB-C Charging Cable,1,11.95,10/16/19 00:27,"545 Lincoln St, San Francisco, CA 94016" -274212,27in 4K Gaming Monitor,1,389.99,10/06/19 17:14,"506 Willow St, Los Angeles, CA 90001" -274213,AA Batteries (4-pack),1,3.84,10/06/19 04:00,"745 Walnut St, New York City, NY 10001" -274214,Bose SoundSport Headphones,1,99.99,10/08/19 15:00,"456 Pine St, Atlanta, GA 30301" -274215,Lightning Charging Cable,1,14.95,10/05/19 11:00,"703 Hill St, Dallas, TX 75001" -274216,Apple Airpods Headphones,1,150,10/16/19 18:34,"801 Wilson St, San Francisco, CA 94016" -274217,Macbook Pro Laptop,1,1700,10/10/19 07:01,"638 West St, Los Angeles, CA 90001" -274218,iPhone,1,700,10/12/19 21:39,"594 Madison St, Seattle, WA 98101" -274219,Flatscreen TV,1,300,10/12/19 20:05,"493 14th St, Boston, MA 02215" -274220,Flatscreen TV,1,300,10/14/19 23:11,"542 Main St, San Francisco, CA 94016" -274221,AA Batteries (4-pack),1,3.84,10/10/19 15:54,"549 Main St, Los Angeles, CA 90001" -274222,Wired Headphones,1,11.99,10/12/19 14:09,"968 Willow St, Seattle, WA 98101" -274223,ThinkPad Laptop,1,999.99,10/09/19 15:56,"859 South St, Los Angeles, CA 90001" -274224,iPhone,1,700,10/07/19 18:35,"323 South St, Seattle, WA 98101" -274225,34in Ultrawide Monitor,1,379.99,10/19/19 14:59,"413 Jefferson St, Atlanta, GA 30301" -274226,Google Phone,1,600,10/03/19 13:16,"990 Lincoln St, Los Angeles, CA 90001" -274226,Wired Headphones,1,11.99,10/03/19 13:16,"990 Lincoln St, Los Angeles, CA 90001" -274227,USB-C Charging Cable,1,11.95,10/04/19 01:24,"37 1st St, Boston, MA 02215" -274228,Apple Airpods Headphones,1,150,10/28/19 17:21,"777 South St, San Francisco, CA 94016" -274229,Wired Headphones,1,11.99,10/15/19 01:05,"626 Lakeview St, Seattle, WA 98101" -274230,ThinkPad Laptop,1,999.99,10/04/19 13:29,"946 1st St, Los Angeles, CA 90001" -274231,Wired Headphones,1,11.99,10/08/19 11:07,"418 Lincoln St, Portland, OR 97035" -274232,27in 4K Gaming Monitor,1,389.99,10/20/19 08:56,"636 Johnson St, Portland, OR 97035" -274233,Lightning Charging Cable,1,14.95,10/10/19 14:45,"99 Highland St, Seattle, WA 98101" -274234,USB-C Charging Cable,1,11.95,10/18/19 13:40,"311 North St, Los Angeles, CA 90001" -274235,Flatscreen TV,1,300,10/14/19 12:14,"658 14th St, San Francisco, CA 94016" -274236,Macbook Pro Laptop,1,1700,10/11/19 14:59,"839 Ridge St, Seattle, WA 98101" -274237,LG Washing Machine,1,600.0,10/13/19 13:48,"886 South St, New York City, NY 10001" -274238,Lightning Charging Cable,1,14.95,10/08/19 16:20,"599 14th St, San Francisco, CA 94016" -274239,ThinkPad Laptop,1,999.99,10/30/19 11:56,"909 11th St, Austin, TX 73301" -274240,AAA Batteries (4-pack),1,2.99,10/15/19 22:07,"700 Main St, Boston, MA 02215" -274241,Lightning Charging Cable,1,14.95,10/18/19 10:30,"143 Cherry St, Los Angeles, CA 90001" -274242,AAA Batteries (4-pack),1,2.99,10/10/19 18:39,"965 Ridge St, San Francisco, CA 94016" -274243,USB-C Charging Cable,1,11.95,10/19/19 14:43,"799 5th St, San Francisco, CA 94016" -274244,20in Monitor,1,109.99,10/14/19 23:27,"445 Hickory St, Los Angeles, CA 90001" -274245,Macbook Pro Laptop,1,1700,10/20/19 21:38,"226 Hill St, San Francisco, CA 94016" -274246,Lightning Charging Cable,1,14.95,10/02/19 21:15,"742 Madison St, San Francisco, CA 94016" -274246,27in FHD Monitor,1,149.99,10/02/19 21:15,"742 Madison St, San Francisco, CA 94016" -274247,AAA Batteries (4-pack),1,2.99,10/29/19 18:41,"677 Forest St, Boston, MA 02215" -274248,iPhone,1,700,10/05/19 19:06,"790 Jackson St, Portland, ME 04101" -274249,Apple Airpods Headphones,1,150,10/31/19 13:16,"36 Maple St, Atlanta, GA 30301" -274250,AA Batteries (4-pack),1,3.84,10/17/19 08:03,"320 Lincoln St, Los Angeles, CA 90001" -274251,Lightning Charging Cable,1,14.95,10/09/19 20:20,"612 West St, Dallas, TX 75001" -274252,34in Ultrawide Monitor,1,379.99,10/28/19 14:31,"417 4th St, Los Angeles, CA 90001" -274253,AA Batteries (4-pack),1,3.84,10/18/19 16:55,"548 South St, San Francisco, CA 94016" -274254,Google Phone,1,600,10/28/19 14:44,"908 Wilson St, Los Angeles, CA 90001" -274255,Wired Headphones,1,11.99,10/31/19 14:28,"342 Willow St, Boston, MA 02215" -274256,LG Washing Machine,1,600.0,10/13/19 09:39,"138 Park St, Boston, MA 02215" -274257,iPhone,1,700,10/15/19 17:25,"37 Johnson St, Dallas, TX 75001" -274257,Lightning Charging Cable,1,14.95,10/15/19 17:25,"37 Johnson St, Dallas, TX 75001" -274258,27in FHD Monitor,1,149.99,10/09/19 14:55,"115 Chestnut St, San Francisco, CA 94016" -274259,Google Phone,1,600,10/23/19 09:32,"601 Maple St, New York City, NY 10001" -274260,Macbook Pro Laptop,1,1700,10/25/19 14:59,"392 8th St, New York City, NY 10001" -274261,Wired Headphones,1,11.99,10/11/19 10:44,"241 Center St, San Francisco, CA 94016" -274262,Flatscreen TV,1,300,10/05/19 13:12,"739 11th St, Atlanta, GA 30301" -274262,USB-C Charging Cable,2,11.95,10/05/19 13:12,"739 11th St, Atlanta, GA 30301" -274263,Lightning Charging Cable,2,14.95,10/28/19 13:22,"234 Chestnut St, New York City, NY 10001" -274264,Lightning Charging Cable,1,14.95,10/02/19 09:32,"908 Forest St, New York City, NY 10001" -274265,Lightning Charging Cable,1,14.95,10/08/19 09:33,"436 1st St, Los Angeles, CA 90001" -274266,Lightning Charging Cable,1,14.95,10/05/19 13:42,"959 Cedar St, San Francisco, CA 94016" -274267,27in FHD Monitor,1,149.99,10/25/19 13:29,"528 10th St, Boston, MA 02215" -274268,Macbook Pro Laptop,1,1700,10/17/19 17:52,"325 Pine St, Los Angeles, CA 90001" -274269,AAA Batteries (4-pack),1,2.99,10/14/19 20:18,"80 Center St, New York City, NY 10001" -274270,27in 4K Gaming Monitor,1,389.99,10/07/19 16:03,"561 Meadow St, Los Angeles, CA 90001" -274271,AA Batteries (4-pack),1,3.84,10/18/19 22:51,"321 Hickory St, Portland, OR 97035" -274272,AA Batteries (4-pack),3,3.84,10/02/19 23:29,"688 6th St, Austin, TX 73301" -274273,AA Batteries (4-pack),2,3.84,10/31/19 20:18,"108 South St, Los Angeles, CA 90001" -274274,USB-C Charging Cable,2,11.95,10/11/19 12:44,"218 Chestnut St, Dallas, TX 75001" -274275,AA Batteries (4-pack),1,3.84,10/29/19 13:51,"750 Willow St, Los Angeles, CA 90001" -274276,AAA Batteries (4-pack),1,2.99,10/02/19 21:59,"531 5th St, Boston, MA 02215" -274277,USB-C Charging Cable,1,11.95,10/23/19 10:35,"600 South St, Austin, TX 73301" -274278,27in FHD Monitor,1,149.99,10/11/19 10:48,"311 Park St, Seattle, WA 98101" -274279,Apple Airpods Headphones,1,150,10/28/19 13:11,"565 South St, Los Angeles, CA 90001" -274280,AAA Batteries (4-pack),2,2.99,10/04/19 14:25,"602 Madison St, New York City, NY 10001" -274281,Apple Airpods Headphones,1,150,10/14/19 18:18,"906 9th St, Seattle, WA 98101" -274282,Macbook Pro Laptop,1,1700,10/03/19 14:47,"29 South St, San Francisco, CA 94016" -274283,ThinkPad Laptop,1,999.99,10/19/19 15:16,"418 Hickory St, Boston, MA 02215" -274284,Apple Airpods Headphones,1,150,10/25/19 19:49,"88 Lake St, San Francisco, CA 94016" -274285,AA Batteries (4-pack),1,3.84,10/30/19 01:44,"464 Hickory St, Portland, OR 97035" -274286,AAA Batteries (4-pack),5,2.99,10/06/19 16:47,"433 Spruce St, Los Angeles, CA 90001" -274287,iPhone,1,700,10/27/19 18:36,"158 11th St, Boston, MA 02215" -274288,27in 4K Gaming Monitor,1,389.99,10/08/19 15:43,"225 Elm St, Los Angeles, CA 90001" -274289,Macbook Pro Laptop,1,1700,10/27/19 14:08,"786 Dogwood St, Los Angeles, CA 90001" -274290,Wired Headphones,1,11.99,10/28/19 02:10,"253 Park St, Seattle, WA 98101" -274291,27in 4K Gaming Monitor,1,389.99,10/03/19 23:53,"517 Jefferson St, Dallas, TX 75001" -274292,Lightning Charging Cable,1,14.95,10/31/19 19:12,"535 10th St, Los Angeles, CA 90001" -274293,USB-C Charging Cable,1,11.95,10/10/19 18:37,"677 Center St, Los Angeles, CA 90001" -274294,27in FHD Monitor,1,149.99,10/09/19 16:05,"337 13th St, Los Angeles, CA 90001" -274295,27in 4K Gaming Monitor,1,389.99,10/06/19 12:36,"522 4th St, San Francisco, CA 94016" -274296,Apple Airpods Headphones,1,150,10/03/19 08:06,"889 Cedar St, San Francisco, CA 94016" -274297,ThinkPad Laptop,1,999.99,10/27/19 23:08,"584 Maple St, Boston, MA 02215" -274298,Bose SoundSport Headphones,1,99.99,10/21/19 08:56,"826 10th St, Austin, TX 73301" -274299,Wired Headphones,1,11.99,10/07/19 20:02,"512 13th St, Portland, OR 97035" -274300,AAA Batteries (4-pack),2,2.99,10/21/19 19:02,"863 14th St, Los Angeles, CA 90001" -274301,27in 4K Gaming Monitor,1,389.99,10/09/19 20:54,"249 Forest St, Atlanta, GA 30301" -274302,AA Batteries (4-pack),1,3.84,10/31/19 12:58,"395 North St, San Francisco, CA 94016" -274303,AA Batteries (4-pack),1,3.84,10/24/19 12:59,"51 10th St, New York City, NY 10001" -274304,Apple Airpods Headphones,1,150,10/08/19 14:07,"625 Forest St, Austin, TX 73301" -274305,Macbook Pro Laptop,1,1700,10/13/19 02:18,"902 Main St, Austin, TX 73301" -274306,Vareebadd Phone,1,400,10/13/19 15:40,"718 Spruce St, New York City, NY 10001" -274307,AA Batteries (4-pack),1,3.84,10/22/19 01:33,"107 Johnson St, Austin, TX 73301" -274308,27in 4K Gaming Monitor,1,389.99,10/21/19 15:42,"775 4th St, Los Angeles, CA 90001" -274309,Apple Airpods Headphones,1,150,10/06/19 13:30,"30 5th St, Seattle, WA 98101" -274310,34in Ultrawide Monitor,1,379.99,10/20/19 20:29,"912 North St, Portland, OR 97035" -274311,34in Ultrawide Monitor,1,379.99,10/27/19 13:32,"754 Meadow St, Seattle, WA 98101" -274312,USB-C Charging Cable,1,11.95,10/14/19 10:15,"790 Highland St, Los Angeles, CA 90001" -274313,Lightning Charging Cable,1,14.95,10/09/19 15:52,"587 8th St, San Francisco, CA 94016" -274314,Lightning Charging Cable,1,14.95,10/21/19 18:36,"873 2nd St, San Francisco, CA 94016" -274315,Lightning Charging Cable,1,14.95,10/25/19 17:44,"210 Meadow St, Austin, TX 73301" -274316,Wired Headphones,1,11.99,10/21/19 21:02,"126 Park St, San Francisco, CA 94016" -274317,27in FHD Monitor,1,149.99,10/10/19 14:46,"990 Center St, Los Angeles, CA 90001" -274318,Wired Headphones,1,11.99,10/20/19 22:14,"662 11th St, New York City, NY 10001" -274319,USB-C Charging Cable,1,11.95,10/23/19 15:38,"718 13th St, San Francisco, CA 94016" -274320,USB-C Charging Cable,1,11.95,10/23/19 08:46,"895 Highland St, Boston, MA 02215" -274321,34in Ultrawide Monitor,1,379.99,10/27/19 16:14,"312 6th St, Los Angeles, CA 90001" -274322,USB-C Charging Cable,1,11.95,10/18/19 13:44,"696 Willow St, Atlanta, GA 30301" -274323,Wired Headphones,1,11.99,10/15/19 12:53,"207 Meadow St, San Francisco, CA 94016" -274324,27in 4K Gaming Monitor,1,389.99,10/04/19 10:38,"827 South St, Dallas, TX 75001" -274325,Bose SoundSport Headphones,1,99.99,10/12/19 01:07,"695 Jackson St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -274326,Lightning Charging Cable,2,14.95,10/12/19 13:22,"579 1st St, San Francisco, CA 94016" -274327,27in FHD Monitor,1,149.99,10/21/19 20:14,"533 2nd St, Austin, TX 73301" -274328,Lightning Charging Cable,1,14.95,10/28/19 22:07,"773 Church St, Los Angeles, CA 90001" -274329,AAA Batteries (4-pack),1,2.99,10/15/19 09:43,"701 Willow St, Los Angeles, CA 90001" -274330,34in Ultrawide Monitor,1,379.99,10/20/19 11:05,"752 Church St, Atlanta, GA 30301" -274331,AAA Batteries (4-pack),3,2.99,10/30/19 19:01,"248 Wilson St, San Francisco, CA 94016" -274332,Apple Airpods Headphones,1,150,10/04/19 20:26,"66 1st St, Dallas, TX 75001" -274333,AAA Batteries (4-pack),1,2.99,10/10/19 22:19,"669 1st St, Boston, MA 02215" -274334,Wired Headphones,1,11.99,10/06/19 19:17,"486 11th St, Dallas, TX 75001" -274335,Apple Airpods Headphones,1,150,10/03/19 18:48,"884 11th St, San Francisco, CA 94016" -274336,27in FHD Monitor,1,149.99,10/22/19 18:47,"342 Maple St, Austin, TX 73301" -274337,Lightning Charging Cable,1,14.95,10/23/19 12:29,"254 Highland St, Dallas, TX 75001" -274338,AAA Batteries (4-pack),1,2.99,10/26/19 11:38,"496 Jackson St, Los Angeles, CA 90001" -274339,Wired Headphones,1,11.99,10/30/19 22:20,"622 Center St, Seattle, WA 98101" -274340,27in FHD Monitor,1,149.99,10/19/19 13:14,"277 Highland St, Boston, MA 02215" -274341,34in Ultrawide Monitor,1,379.99,10/26/19 10:41,"978 Center St, Austin, TX 73301" -274342,Apple Airpods Headphones,1,150,10/11/19 12:24,"188 Lincoln St, Los Angeles, CA 90001" -274343,Vareebadd Phone,1,400,10/29/19 13:45,"182 Hickory St, Dallas, TX 75001" -274343,USB-C Charging Cable,1,11.95,10/29/19 13:45,"182 Hickory St, Dallas, TX 75001" -274344,20in Monitor,1,109.99,10/25/19 12:54,"172 Cherry St, Los Angeles, CA 90001" -274345,AAA Batteries (4-pack),3,2.99,10/11/19 23:38,"728 Wilson St, New York City, NY 10001" -274346,iPhone,1,700,10/19/19 18:50,"317 14th St, San Francisco, CA 94016" -274347,USB-C Charging Cable,1,11.95,10/13/19 10:14,"384 Madison St, Atlanta, GA 30301" -274348,USB-C Charging Cable,3,11.95,10/16/19 20:46,"708 Ridge St, New York City, NY 10001" -274349,Wired Headphones,1,11.99,10/30/19 17:12,"462 Adams St, Portland, OR 97035" -274350,Lightning Charging Cable,1,14.95,10/29/19 15:04,"997 11th St, Austin, TX 73301" -274351,USB-C Charging Cable,1,11.95,10/18/19 10:51,"367 Center St, San Francisco, CA 94016" -274352,iPhone,1,700,10/17/19 18:34,"549 Jackson St, Los Angeles, CA 90001" -274352,Lightning Charging Cable,1,14.95,10/17/19 18:34,"549 Jackson St, Los Angeles, CA 90001" -274353,LG Washing Machine,1,600.0,10/25/19 00:18,"463 River St, Seattle, WA 98101" -274354,Apple Airpods Headphones,1,150,10/08/19 13:36,"683 Wilson St, Seattle, WA 98101" -274355,Apple Airpods Headphones,1,150,10/27/19 22:47,"810 Center St, San Francisco, CA 94016" -274356,27in 4K Gaming Monitor,1,389.99,10/06/19 11:30,"429 Center St, Portland, OR 97035" -274357,34in Ultrawide Monitor,1,379.99,10/29/19 21:44,"267 Cedar St, Boston, MA 02215" -274358,Bose SoundSport Headphones,1,99.99,10/15/19 06:36,"158 Lincoln St, San Francisco, CA 94016" -274359,AA Batteries (4-pack),1,3.84,10/11/19 20:49,"205 Lake St, Boston, MA 02215" -274360,AA Batteries (4-pack),3,3.84,10/13/19 22:40,"172 Park St, Austin, TX 73301" -274361,Google Phone,1,600,10/08/19 20:18,"585 Hickory St, New York City, NY 10001" -274361,USB-C Charging Cable,1,11.95,10/08/19 20:18,"585 Hickory St, New York City, NY 10001" -274362,Bose SoundSport Headphones,1,99.99,10/02/19 14:24,"276 River St, New York City, NY 10001" -274363,Bose SoundSport Headphones,1,99.99,10/30/19 23:41,"57 Chestnut St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -274364,Lightning Charging Cable,1,14.95,10/06/19 15:56,"747 12th St, Boston, MA 02215" -274365,AAA Batteries (4-pack),1,2.99,10/22/19 08:14,"618 14th St, Boston, MA 02215" -274366,AAA Batteries (4-pack),1,2.99,10/04/19 10:46,"622 Center St, Seattle, WA 98101" -274367,AAA Batteries (4-pack),1,2.99,10/05/19 12:33,"980 Jackson St, San Francisco, CA 94016" -274368,USB-C Charging Cable,1,11.95,10/13/19 12:01,"176 Wilson St, San Francisco, CA 94016" -274369,27in FHD Monitor,1,149.99,10/25/19 13:30,"598 Hickory St, Atlanta, GA 30301" -274370,Wired Headphones,1,11.99,10/06/19 17:39,"983 Main St, San Francisco, CA 94016" -274371,Lightning Charging Cable,1,14.95,10/20/19 10:35,"257 4th St, San Francisco, CA 94016" -274372,Vareebadd Phone,1,400,10/01/19 23:48,"529 13th St, Dallas, TX 75001" -274372,USB-C Charging Cable,1,11.95,10/01/19 23:48,"529 13th St, Dallas, TX 75001" -274373,Bose SoundSport Headphones,1,99.99,10/27/19 10:18,"195 Willow St, San Francisco, CA 94016" -274374,Apple Airpods Headphones,1,150,10/22/19 02:17,"27 West St, New York City, NY 10001" -274375,Wired Headphones,1,11.99,10/16/19 10:58,"239 Cedar St, Los Angeles, CA 90001" -274376,iPhone,1,700,10/23/19 10:54,"107 6th St, Los Angeles, CA 90001" -274377,AA Batteries (4-pack),2,3.84,10/23/19 16:00,"200 13th St, San Francisco, CA 94016" -274378,LG Dryer,1,600.0,10/30/19 14:48,"59 Wilson St, Dallas, TX 75001" -274379,AAA Batteries (4-pack),1,2.99,10/13/19 13:20,"354 Lake St, San Francisco, CA 94016" -274380,AA Batteries (4-pack),1,3.84,10/03/19 10:41,"277 Ridge St, Los Angeles, CA 90001" -274381,LG Washing Machine,1,600.0,10/23/19 00:31,"211 Cedar St, Atlanta, GA 30301" -274382,Google Phone,1,600,10/22/19 09:30,"711 9th St, San Francisco, CA 94016" -274382,USB-C Charging Cable,1,11.95,10/22/19 09:30,"711 9th St, San Francisco, CA 94016" -274382,AA Batteries (4-pack),1,3.84,10/22/19 09:30,"711 9th St, San Francisco, CA 94016" -274383,Lightning Charging Cable,1,14.95,10/02/19 18:47,"706 11th St, Austin, TX 73301" -,,,,, -274384,Macbook Pro Laptop,1,1700,10/07/19 20:52,"221 2nd St, San Francisco, CA 94016" -274385,Bose SoundSport Headphones,1,99.99,10/31/19 17:14,"846 13th St, Boston, MA 02215" -274386,Lightning Charging Cable,1,14.95,10/03/19 16:28,"851 South St, New York City, NY 10001" -274387,AA Batteries (4-pack),1,3.84,10/20/19 17:15,"599 13th St, Los Angeles, CA 90001" -274388,27in FHD Monitor,1,149.99,10/20/19 19:51,"137 Dogwood St, Los Angeles, CA 90001" -274389,34in Ultrawide Monitor,1,379.99,10/29/19 20:16,"747 Lake St, San Francisco, CA 94016" -274390,20in Monitor,1,109.99,10/07/19 16:31,"803 Church St, San Francisco, CA 94016" -274391,AA Batteries (4-pack),1,3.84,10/02/19 22:14,"487 10th St, Austin, TX 73301" -274392,AA Batteries (4-pack),1,3.84,10/08/19 19:10,"499 Meadow St, Boston, MA 02215" -274393,Wired Headphones,1,11.99,10/09/19 13:49,"388 River St, Seattle, WA 98101" -274394,Wired Headphones,1,11.99,10/20/19 00:25,"131 Cedar St, Seattle, WA 98101" -274395,Lightning Charging Cable,1,14.95,10/12/19 11:12,"243 Lakeview St, San Francisco, CA 94016" -274396,Apple Airpods Headphones,1,150,10/21/19 20:15,"135 Church St, Dallas, TX 75001" -274397,AAA Batteries (4-pack),1,2.99,10/05/19 16:37,"305 Hickory St, Los Angeles, CA 90001" -274398,USB-C Charging Cable,1,11.95,10/06/19 16:42,"88 Washington St, Seattle, WA 98101" -274399,USB-C Charging Cable,1,11.95,10/19/19 17:32,"829 Cedar St, Portland, ME 04101" -274400,Lightning Charging Cable,1,14.95,10/28/19 17:58,"860 South St, New York City, NY 10001" -274401,27in 4K Gaming Monitor,1,389.99,10/23/19 05:45,"306 13th St, Los Angeles, CA 90001" -274402,Apple Airpods Headphones,1,150,10/23/19 11:17,"654 2nd St, New York City, NY 10001" -274403,AA Batteries (4-pack),1,3.84,10/16/19 10:26,"738 Hill St, Seattle, WA 98101" -274404,Google Phone,1,600,10/28/19 21:02,"33 Maple St, Atlanta, GA 30301" -274405,Google Phone,1,600,10/19/19 15:44,"528 River St, Boston, MA 02215" -274405,Wired Headphones,1,11.99,10/19/19 15:44,"528 River St, Boston, MA 02215" -274406,AAA Batteries (4-pack),2,2.99,10/21/19 12:46,"740 Church St, New York City, NY 10001" -274407,USB-C Charging Cable,1,11.95,10/28/19 18:44,"466 Adams St, Dallas, TX 75001" -274408,USB-C Charging Cable,1,11.95,10/18/19 15:02,"265 8th St, Los Angeles, CA 90001" -274409,iPhone,1,700,10/08/19 15:55,"368 North St, Portland, OR 97035" -274409,Lightning Charging Cable,1,14.95,10/08/19 15:55,"368 North St, Portland, OR 97035" -274410,Wired Headphones,1,11.99,10/24/19 16:47,"112 Adams St, San Francisco, CA 94016" -274411,Wired Headphones,1,11.99,10/06/19 13:13,"771 Hickory St, Los Angeles, CA 90001" -274412,USB-C Charging Cable,2,11.95,10/10/19 23:34,"19 12th St, Los Angeles, CA 90001" -274413,Wired Headphones,1,11.99,10/01/19 22:03,"332 Cherry St, Boston, MA 02215" -274414,Bose SoundSport Headphones,1,99.99,10/08/19 11:27,"57 Meadow St, San Francisco, CA 94016" -274415,Bose SoundSport Headphones,1,99.99,10/26/19 18:47,"156 Sunset St, Los Angeles, CA 90001" -274416,27in FHD Monitor,1,149.99,10/06/19 17:52,"159 Madison St, Atlanta, GA 30301" -274417,Macbook Pro Laptop,1,1700,10/24/19 12:32,"119 1st St, Los Angeles, CA 90001" -274418,AA Batteries (4-pack),1,3.84,10/13/19 17:28,"970 Highland St, San Francisco, CA 94016" -274419,AA Batteries (4-pack),2,3.84,10/23/19 09:28,"818 12th St, Atlanta, GA 30301" -274420,Bose SoundSport Headphones,1,99.99,10/31/19 10:14,"584 Hickory St, Dallas, TX 75001" -274421,Bose SoundSport Headphones,1,99.99,10/21/19 20:13,"645 10th St, San Francisco, CA 94016" -274422,AAA Batteries (4-pack),1,2.99,10/29/19 18:12,"802 Ridge St, Los Angeles, CA 90001" -274423,Apple Airpods Headphones,1,150,10/22/19 19:12,"381 Cherry St, Seattle, WA 98101" -274424,USB-C Charging Cable,1,11.95,10/13/19 23:01,"215 Park St, Boston, MA 02215" -274425,Lightning Charging Cable,1,14.95,10/16/19 15:59,"88 12th St, New York City, NY 10001" -274426,USB-C Charging Cable,1,11.95,10/05/19 10:01,"109 Ridge St, Portland, OR 97035" -274427,Apple Airpods Headphones,1,150,10/14/19 10:13,"358 Jefferson St, San Francisco, CA 94016" -274427,Lightning Charging Cable,1,14.95,10/14/19 10:13,"358 Jefferson St, San Francisco, CA 94016" -274428,Bose SoundSport Headphones,1,99.99,10/06/19 18:17,"277 Walnut St, Dallas, TX 75001" -274429,USB-C Charging Cable,1,11.95,10/09/19 16:24,"569 10th St, San Francisco, CA 94016" -274430,Flatscreen TV,1,300,10/31/19 10:16,"690 7th St, Dallas, TX 75001" -274431,Wired Headphones,1,11.99,10/01/19 13:04,"187 West St, Boston, MA 02215" -274431,USB-C Charging Cable,2,11.95,10/01/19 13:04,"187 West St, Boston, MA 02215" -274432,AA Batteries (4-pack),1,3.84,10/10/19 10:11,"926 North St, Seattle, WA 98101" -274433,USB-C Charging Cable,1,11.95,10/25/19 11:38,"903 Walnut St, Seattle, WA 98101" -274434,Flatscreen TV,1,300,10/24/19 15:40,"845 4th St, Dallas, TX 75001" -274435,AAA Batteries (4-pack),1,2.99,10/24/19 18:23,"302 River St, Austin, TX 73301" -274436,AAA Batteries (4-pack),4,2.99,10/26/19 07:50,"426 2nd St, Austin, TX 73301" -274437,27in 4K Gaming Monitor,1,389.99,10/03/19 18:59,"965 Pine St, Los Angeles, CA 90001" -274438,USB-C Charging Cable,1,11.95,10/10/19 16:31,"514 Maple St, Austin, TX 73301" -274439,Lightning Charging Cable,1,14.95,10/24/19 04:39,"998 Adams St, Dallas, TX 75001" -274440,Bose SoundSport Headphones,1,99.99,10/23/19 21:45,"749 West St, San Francisco, CA 94016" -274441,Apple Airpods Headphones,1,150,10/10/19 12:01,"491 11th St, New York City, NY 10001" -274442,Flatscreen TV,1,300,10/03/19 20:31,"131 Chestnut St, New York City, NY 10001" -274443,Bose SoundSport Headphones,2,99.99,10/17/19 13:36,"827 2nd St, Seattle, WA 98101" -274444,Google Phone,1,600,10/07/19 20:56,"203 Forest St, San Francisco, CA 94016" -274444,USB-C Charging Cable,1,11.95,10/07/19 20:56,"203 Forest St, San Francisco, CA 94016" -274445,AA Batteries (4-pack),1,3.84,10/03/19 16:29,"898 6th St, San Francisco, CA 94016" -274446,Lightning Charging Cable,1,14.95,10/13/19 15:42,"770 Pine St, San Francisco, CA 94016" -274447,AAA Batteries (4-pack),2,2.99,10/12/19 18:47,"487 Madison St, San Francisco, CA 94016" -274448,27in 4K Gaming Monitor,1,389.99,10/03/19 16:30,"323 Johnson St, Seattle, WA 98101" -274449,AA Batteries (4-pack),1,3.84,10/23/19 02:01,"721 Maple St, San Francisco, CA 94016" -274450,iPhone,1,700,10/25/19 12:49,"805 Hill St, Atlanta, GA 30301" -274450,Lightning Charging Cable,2,14.95,10/25/19 12:49,"805 Hill St, Atlanta, GA 30301" -274450,Wired Headphones,1,11.99,10/25/19 12:49,"805 Hill St, Atlanta, GA 30301" -274451,27in 4K Gaming Monitor,1,389.99,10/19/19 08:06,"264 Johnson St, Dallas, TX 75001" -274452,iPhone,1,700,10/19/19 19:35,"10 8th St, Seattle, WA 98101" -274453,Bose SoundSport Headphones,1,99.99,10/15/19 13:52,"928 Meadow St, Atlanta, GA 30301" -274454,20in Monitor,1,109.99,10/03/19 19:39,"945 6th St, Los Angeles, CA 90001" -274455,Apple Airpods Headphones,1,150,10/02/19 14:01,"378 4th St, Los Angeles, CA 90001" -274456,AA Batteries (4-pack),1,3.84,10/01/19 17:21,"452 Madison St, Dallas, TX 75001" -274457,AA Batteries (4-pack),1,3.84,10/09/19 19:34,"204 Cedar St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -274458,Google Phone,1,600,10/04/19 22:31,"663 Wilson St, Los Angeles, CA 90001" -274459,Lightning Charging Cable,1,14.95,10/19/19 13:59,"154 Wilson St, Portland, OR 97035" -274460,USB-C Charging Cable,1,11.95,10/14/19 19:27,"679 Lake St, San Francisco, CA 94016" -274461,Wired Headphones,1,11.99,10/21/19 11:17,"15 8th St, San Francisco, CA 94016" -274462,AA Batteries (4-pack),1,3.84,10/30/19 10:11,"168 Center St, Portland, OR 97035" -274463,Wired Headphones,1,11.99,10/25/19 14:33,"852 7th St, Atlanta, GA 30301" -274464,Apple Airpods Headphones,1,150,10/02/19 12:02,"454 Hill St, Los Angeles, CA 90001" -274465,AA Batteries (4-pack),1,3.84,10/11/19 09:47,"336 Washington St, New York City, NY 10001" -274466,27in 4K Gaming Monitor,1,389.99,10/17/19 06:51,"427 6th St, Boston, MA 02215" -274467,Lightning Charging Cable,1,14.95,10/21/19 21:18,"473 Church St, Dallas, TX 75001" -274468,AA Batteries (4-pack),1,3.84,10/28/19 22:40,"246 Jefferson St, Boston, MA 02215" -274469,AA Batteries (4-pack),1,3.84,10/20/19 20:48,"407 13th St, Austin, TX 73301" -274470,Lightning Charging Cable,1,14.95,10/08/19 15:19,"114 Chestnut St, Atlanta, GA 30301" -274471,AA Batteries (4-pack),2,3.84,10/15/19 18:27,"886 Cedar St, San Francisco, CA 94016" -274472,20in Monitor,1,109.99,10/03/19 10:54,"662 Spruce St, Portland, OR 97035" -274473,USB-C Charging Cable,1,11.95,10/24/19 17:27,"741 Lakeview St, Boston, MA 02215" -274474,Apple Airpods Headphones,1,150,10/05/19 13:39,"435 Johnson St, San Francisco, CA 94016" -274475,Apple Airpods Headphones,1,150,10/23/19 17:08,"390 Cedar St, Boston, MA 02215" -274476,20in Monitor,1,109.99,10/03/19 12:39,"321 Johnson St, Los Angeles, CA 90001" -274477,Apple Airpods Headphones,1,150,10/13/19 12:42,"278 Park St, Los Angeles, CA 90001" -274478,AAA Batteries (4-pack),2,2.99,10/15/19 19:24,"375 Hickory St, Seattle, WA 98101" -274479,Flatscreen TV,1,300,10/12/19 21:21,"720 River St, New York City, NY 10001" -274480,USB-C Charging Cable,1,11.95,10/26/19 18:40,"908 Chestnut St, Dallas, TX 75001" -274481,Lightning Charging Cable,1,14.95,10/17/19 22:02,"792 Main St, Austin, TX 73301" -274482,Apple Airpods Headphones,1,150,10/12/19 12:45,"562 Highland St, Los Angeles, CA 90001" -274483,Wired Headphones,1,11.99,10/09/19 22:18,"196 Meadow St, Seattle, WA 98101" -274484,Vareebadd Phone,1,400,10/13/19 12:33,"205 Wilson St, Dallas, TX 75001" -274484,USB-C Charging Cable,1,11.95,10/13/19 12:33,"205 Wilson St, Dallas, TX 75001" -274485,34in Ultrawide Monitor,1,379.99,10/06/19 14:49,"179 10th St, New York City, NY 10001" -274486,Wired Headphones,2,11.99,10/21/19 08:27,"274 11th St, Boston, MA 02215" -274487,AAA Batteries (4-pack),2,2.99,10/29/19 19:31,"492 South St, San Francisco, CA 94016" -274488,Google Phone,1,600,10/22/19 16:49,"846 Elm St, Boston, MA 02215" -274489,27in 4K Gaming Monitor,2,389.99,10/23/19 13:29,"714 Cherry St, Dallas, TX 75001" -274490,Lightning Charging Cable,1,14.95,10/29/19 13:46,"234 Forest St, Los Angeles, CA 90001" -274491,AA Batteries (4-pack),1,3.84,10/20/19 00:22,"369 13th St, San Francisco, CA 94016" -274492,Bose SoundSport Headphones,1,99.99,10/27/19 17:38,"504 10th St, San Francisco, CA 94016" -274493,Lightning Charging Cable,1,14.95,10/03/19 03:11,"411 Johnson St, San Francisco, CA 94016" -274494,Wired Headphones,1,11.99,10/13/19 21:34,"127 Main St, Boston, MA 02215" -274495,Lightning Charging Cable,1,14.95,10/12/19 15:38,"102 Center St, Portland, OR 97035" -274496,ThinkPad Laptop,1,999.99,10/13/19 20:51,"271 Madison St, Dallas, TX 75001" -274497,AA Batteries (4-pack),1,3.84,10/25/19 15:15,"773 9th St, Dallas, TX 75001" -274498,Bose SoundSport Headphones,1,99.99,10/19/19 00:41,"408 Maple St, Los Angeles, CA 90001" -274499,Lightning Charging Cable,1,14.95,10/04/19 22:58,"994 Chestnut St, San Francisco, CA 94016" -274500,USB-C Charging Cable,1,11.95,10/07/19 18:38,"624 14th St, Los Angeles, CA 90001" -274501,Bose SoundSport Headphones,1,99.99,10/23/19 07:07,"560 1st St, Los Angeles, CA 90001" -274502,Google Phone,1,600,10/23/19 11:52,"916 Meadow St, San Francisco, CA 94016" -274503,27in 4K Gaming Monitor,1,389.99,10/06/19 13:04,"725 Hill St, San Francisco, CA 94016" -274504,USB-C Charging Cable,1,11.95,10/01/19 14:21,"623 Forest St, San Francisco, CA 94016" -274505,Wired Headphones,1,11.99,10/16/19 10:31,"833 Madison St, Boston, MA 02215" -274506,Lightning Charging Cable,1,14.95,10/24/19 00:45,"502 Sunset St, Los Angeles, CA 90001" -274507,AAA Batteries (4-pack),1,2.99,10/09/19 21:55,"200 Spruce St, Austin, TX 73301" -274508,AAA Batteries (4-pack),1,2.99,10/24/19 08:55,"274 Adams St, San Francisco, CA 94016" -274509,LG Dryer,1,600.0,10/10/19 15:01,"936 7th St, Seattle, WA 98101" -274510,Wired Headphones,1,11.99,10/09/19 21:44,"820 11th St, Los Angeles, CA 90001" -274511,Bose SoundSport Headphones,1,99.99,10/01/19 18:52,"118 Elm St, Los Angeles, CA 90001" -274512,Apple Airpods Headphones,1,150,10/05/19 01:56,"206 Spruce St, Atlanta, GA 30301" -274513,USB-C Charging Cable,1,11.95,10/25/19 16:38,"204 Jackson St, San Francisco, CA 94016" -274514,iPhone,1,700,10/09/19 10:05,"931 Willow St, Austin, TX 73301" -274515,Wired Headphones,1,11.99,10/06/19 10:19,"43 Dogwood St, Dallas, TX 75001" -274516,Apple Airpods Headphones,1,150,10/18/19 15:38,"838 Cherry St, Boston, MA 02215" -274517,USB-C Charging Cable,1,11.95,10/26/19 00:22,"219 Walnut St, Dallas, TX 75001" -274518,AAA Batteries (4-pack),1,2.99,10/05/19 23:07,"268 10th St, Seattle, WA 98101" -274519,Lightning Charging Cable,2,14.95,10/26/19 21:36,"188 Sunset St, Dallas, TX 75001" -274520,20in Monitor,1,109.99,10/07/19 12:58,"668 2nd St, San Francisco, CA 94016" -274521,Apple Airpods Headphones,1,150,10/29/19 03:12,"369 Jefferson St, Boston, MA 02215" -274522,Bose SoundSport Headphones,1,99.99,10/05/19 10:31,"751 1st St, New York City, NY 10001" -274523,USB-C Charging Cable,1,11.95,10/20/19 21:11,"405 Pine St, San Francisco, CA 94016" -274524,Apple Airpods Headphones,1,150,10/28/19 13:27,"483 Maple St, Boston, MA 02215" -274525,Wired Headphones,1,11.99,10/24/19 18:32,"367 10th St, Boston, MA 02215" -274526,AA Batteries (4-pack),1,3.84,10/18/19 20:32,"202 Cedar St, San Francisco, CA 94016" -274527,USB-C Charging Cable,1,11.95,10/22/19 08:21,"100 Highland St, San Francisco, CA 94016" -274528,27in 4K Gaming Monitor,1,389.99,10/20/19 12:59,"570 Meadow St, New York City, NY 10001" -274529,Apple Airpods Headphones,1,150,10/24/19 22:32,"217 Church St, San Francisco, CA 94016" -274530,Apple Airpods Headphones,1,150,10/07/19 18:19,"910 6th St, New York City, NY 10001" -274531,Bose SoundSport Headphones,1,99.99,10/29/19 21:16,"383 Wilson St, Portland, OR 97035" -274532,USB-C Charging Cable,1,11.95,10/28/19 19:31,"7 Cherry St, San Francisco, CA 94016" -274533,Wired Headphones,1,11.99,10/31/19 16:10,"808 Lake St, Austin, TX 73301" -274534,Lightning Charging Cable,1,14.95,10/09/19 18:38,"55 North St, Atlanta, GA 30301" -274535,Flatscreen TV,1,300,10/02/19 08:41,"327 Madison St, Los Angeles, CA 90001" -274536,Lightning Charging Cable,1,14.95,10/03/19 16:53,"150 Park St, Dallas, TX 75001" -274537,20in Monitor,1,109.99,10/04/19 18:44,"306 River St, Austin, TX 73301" -274538,Wired Headphones,2,11.99,10/26/19 04:19,"423 Main St, San Francisco, CA 94016" -274539,AAA Batteries (4-pack),1,2.99,10/21/19 21:56,"548 Dogwood St, San Francisco, CA 94016" -274540,AA Batteries (4-pack),1,3.84,10/04/19 11:33,"716 Cherry St, Los Angeles, CA 90001" -274541,iPhone,1,700,10/04/19 01:42,"638 Main St, San Francisco, CA 94016" -274541,Wired Headphones,1,11.99,10/04/19 01:42,"638 Main St, San Francisco, CA 94016" -274542,USB-C Charging Cable,1,11.95,10/10/19 08:32,"990 Hickory St, Seattle, WA 98101" -274543,AA Batteries (4-pack),2,3.84,10/17/19 12:45,"399 2nd St, Los Angeles, CA 90001" -274544,Wired Headphones,1,11.99,10/12/19 18:13,"124 4th St, San Francisco, CA 94016" -274545,Flatscreen TV,1,300,10/26/19 08:58,"674 Washington St, Los Angeles, CA 90001" -274546,AAA Batteries (4-pack),1,2.99,10/17/19 15:28,"892 12th St, Boston, MA 02215" -274547,Google Phone,1,600,10/24/19 07:27,"927 Center St, Atlanta, GA 30301" -274548,USB-C Charging Cable,1,11.95,10/27/19 10:25,"664 Willow St, Seattle, WA 98101" -274549,AAA Batteries (4-pack),1,2.99,10/08/19 16:36,"473 Lincoln St, Boston, MA 02215" -274550,AAA Batteries (4-pack),1,2.99,10/07/19 19:16,"353 8th St, New York City, NY 10001" -274551,iPhone,1,700,10/25/19 19:39,"174 Hill St, Los Angeles, CA 90001" -274551,Apple Airpods Headphones,1,150,10/25/19 19:39,"174 Hill St, Los Angeles, CA 90001" -274552,Lightning Charging Cable,1,14.95,10/17/19 10:43,"469 12th St, Austin, TX 73301" -274553,Macbook Pro Laptop,1,1700,10/13/19 10:23,"468 Jefferson St, San Francisco, CA 94016" -274554,Wired Headphones,1,11.99,10/05/19 20:21,"755 1st St, Seattle, WA 98101" -274555,27in 4K Gaming Monitor,1,389.99,10/17/19 14:05,"767 1st St, Portland, OR 97035" -274556,ThinkPad Laptop,1,999.99,10/14/19 19:51,"370 North St, New York City, NY 10001" -274557,Macbook Pro Laptop,1,1700,10/06/19 21:09,"386 Forest St, New York City, NY 10001" -274558,Apple Airpods Headphones,1,150,10/03/19 15:40,"956 Adams St, New York City, NY 10001" -274559,AAA Batteries (4-pack),3,2.99,10/02/19 12:16,"988 Highland St, Seattle, WA 98101" -274560,AA Batteries (4-pack),1,3.84,10/26/19 18:41,"819 Dogwood St, Los Angeles, CA 90001" -274561,Flatscreen TV,1,300,10/15/19 11:37,"244 North St, Dallas, TX 75001" -274562,Google Phone,1,600,10/06/19 10:44,"617 Lincoln St, New York City, NY 10001" -274563,Flatscreen TV,1,300,10/06/19 01:52,"862 Center St, New York City, NY 10001" -274564,USB-C Charging Cable,1,11.95,10/13/19 09:30,"984 12th St, Boston, MA 02215" -274565,34in Ultrawide Monitor,1,379.99,10/19/19 16:05,"294 2nd St, Los Angeles, CA 90001" -274566,27in FHD Monitor,1,149.99,10/02/19 13:30,"752 Hill St, Seattle, WA 98101" -274567,34in Ultrawide Monitor,2,379.99,10/17/19 15:22,"994 Lakeview St, Atlanta, GA 30301" -274568,34in Ultrawide Monitor,1,379.99,10/16/19 17:55,"386 5th St, San Francisco, CA 94016" -274569,34in Ultrawide Monitor,1,379.99,10/15/19 21:58,"879 Park St, San Francisco, CA 94016" -274569,Bose SoundSport Headphones,1,99.99,10/15/19 21:58,"879 Park St, San Francisco, CA 94016" -274570,Lightning Charging Cable,1,14.95,10/28/19 21:56,"33 11th St, Atlanta, GA 30301" -274571,Bose SoundSport Headphones,1,99.99,10/22/19 02:42,"468 Lincoln St, Boston, MA 02215" -274572,USB-C Charging Cable,1,11.95,10/09/19 11:15,"213 7th St, Dallas, TX 75001" -274573,Flatscreen TV,1,300,10/27/19 11:57,"731 Elm St, Atlanta, GA 30301" -274574,Lightning Charging Cable,1,14.95,10/28/19 10:45,"961 12th St, San Francisco, CA 94016" -274575,Macbook Pro Laptop,1,1700,10/22/19 06:43,"212 River St, Portland, ME 04101" -274576,USB-C Charging Cable,1,11.95,10/19/19 20:19,"682 River St, Seattle, WA 98101" -274577,ThinkPad Laptop,1,999.99,10/15/19 17:18,"611 11th St, Portland, OR 97035" -274578,AAA Batteries (4-pack),1,2.99,10/25/19 20:52,"703 Willow St, San Francisco, CA 94016" -274579,Bose SoundSport Headphones,1,99.99,10/06/19 10:24,"97 Jackson St, Dallas, TX 75001" -274580,Bose SoundSport Headphones,1,99.99,10/14/19 20:48,"661 Elm St, New York City, NY 10001" -274581,Wired Headphones,1,11.99,10/01/19 06:18,"303 12th St, Seattle, WA 98101" -274582,Lightning Charging Cable,1,14.95,10/13/19 23:41,"114 Meadow St, Seattle, WA 98101" -274583,Apple Airpods Headphones,1,150,10/17/19 09:09,"443 Cherry St, Los Angeles, CA 90001" -274584,Vareebadd Phone,1,400,10/07/19 15:32,"386 Spruce St, Dallas, TX 75001" -,,,,, -274585,USB-C Charging Cable,1,11.95,10/03/19 11:16,"960 5th St, New York City, NY 10001" -274586,Bose SoundSport Headphones,1,99.99,10/05/19 08:55,"476 11th St, San Francisco, CA 94016" -274587,Lightning Charging Cable,1,14.95,10/27/19 19:23,"151 Lake St, Seattle, WA 98101" -274588,Google Phone,1,600,10/26/19 19:32,"60 Hickory St, New York City, NY 10001" -274588,Wired Headphones,1,11.99,10/26/19 19:32,"60 Hickory St, New York City, NY 10001" -274589,AAA Batteries (4-pack),1,2.99,10/09/19 07:50,"243 Meadow St, San Francisco, CA 94016" -274590,AAA Batteries (4-pack),1,2.99,10/28/19 18:16,"915 Jackson St, Boston, MA 02215" -274591,Flatscreen TV,1,300,10/08/19 11:27,"647 West St, Austin, TX 73301" -274592,Google Phone,1,600,10/12/19 06:01,"404 Sunset St, Boston, MA 02215" -274593,AA Batteries (4-pack),1,3.84,10/07/19 19:35,"607 Hickory St, Austin, TX 73301" -274594,USB-C Charging Cable,1,11.95,10/01/19 20:44,"887 Forest St, New York City, NY 10001" -274594,AA Batteries (4-pack),1,3.84,10/01/19 20:44,"887 Forest St, New York City, NY 10001" -274595,USB-C Charging Cable,2,11.95,10/16/19 13:59,"185 14th St, New York City, NY 10001" -274596,iPhone,1,700,10/13/19 17:37,"395 Church St, San Francisco, CA 94016" -274597,Bose SoundSport Headphones,1,99.99,10/01/19 15:05,"866 7th St, San Francisco, CA 94016" -274598,Lightning Charging Cable,1,14.95,10/31/19 13:11,"153 Church St, Portland, OR 97035" -274599,Lightning Charging Cable,1,14.95,10/25/19 18:00,"721 Dogwood St, New York City, NY 10001" -274600,Wired Headphones,1,11.99,10/04/19 12:12,"180 Main St, San Francisco, CA 94016" -274601,AAA Batteries (4-pack),1,2.99,10/29/19 18:47,"247 Dogwood St, New York City, NY 10001" -274602,Wired Headphones,1,11.99,10/04/19 11:32,"463 South St, Boston, MA 02215" -274603,LG Dryer,1,600.0,10/06/19 18:20,"842 14th St, San Francisco, CA 94016" -274604,Bose SoundSport Headphones,1,99.99,10/10/19 12:02,"378 South St, New York City, NY 10001" -274605,Lightning Charging Cable,1,14.95,10/15/19 09:48,"965 10th St, Los Angeles, CA 90001" -274606,AAA Batteries (4-pack),1,2.99,10/15/19 15:42,"71 Highland St, New York City, NY 10001" -274607,Google Phone,1,600,10/26/19 09:53,"691 Jackson St, San Francisco, CA 94016" -274608,Wired Headphones,1,11.99,10/01/19 14:33,"719 Washington St, New York City, NY 10001" -274609,20in Monitor,1,109.99,10/07/19 21:14,"916 Church St, Austin, TX 73301" -274610,AAA Batteries (4-pack),1,2.99,10/24/19 19:07,"392 Cedar St, Los Angeles, CA 90001" -274611,Lightning Charging Cable,1,14.95,10/12/19 17:03,"611 Johnson St, San Francisco, CA 94016" -274612,ThinkPad Laptop,1,999.99,10/13/19 13:27,"190 5th St, Dallas, TX 75001" -274613,Wired Headphones,2,11.99,10/23/19 19:10,"228 4th St, Los Angeles, CA 90001" -274614,Macbook Pro Laptop,1,1700,10/22/19 12:26,"746 Center St, San Francisco, CA 94016" -274615,34in Ultrawide Monitor,1,379.99,10/05/19 11:45,"441 Main St, New York City, NY 10001" -274616,Lightning Charging Cable,1,14.95,10/06/19 07:13,"861 West St, Los Angeles, CA 90001" -274617,Lightning Charging Cable,1,14.95,10/10/19 21:06,"206 14th St, New York City, NY 10001" -274618,Wired Headphones,1,11.99,10/01/19 16:52,"789 1st St, San Francisco, CA 94016" -274619,Flatscreen TV,1,300,10/15/19 18:22,"850 Sunset St, Seattle, WA 98101" -274620,Apple Airpods Headphones,1,150,10/17/19 21:01,"226 Jefferson St, Portland, OR 97035" -274621,27in 4K Gaming Monitor,1,389.99,10/07/19 11:50,"139 Church St, Los Angeles, CA 90001" -274622,AA Batteries (4-pack),2,3.84,10/22/19 15:03,"210 River St, Portland, OR 97035" -274623,20in Monitor,1,109.99,10/02/19 23:16,"860 13th St, Dallas, TX 75001" -274624,AA Batteries (4-pack),1,3.84,10/19/19 16:38,"688 Lake St, San Francisco, CA 94016" -274625,AA Batteries (4-pack),1,3.84,10/21/19 10:37,"729 4th St, Dallas, TX 75001" -274626,Apple Airpods Headphones,1,150,10/20/19 22:29,"300 South St, Seattle, WA 98101" -274627,Google Phone,1,600,10/21/19 09:54,"380 Ridge St, Dallas, TX 75001" -274628,Lightning Charging Cable,1,14.95,10/23/19 17:43,"993 North St, Austin, TX 73301" -274629,Vareebadd Phone,1,400,10/23/19 06:05,"470 North St, San Francisco, CA 94016" -274630,27in 4K Gaming Monitor,1,389.99,10/08/19 01:23,"581 Hickory St, Boston, MA 02215" -274631,Apple Airpods Headphones,1,150,10/28/19 16:39,"836 Pine St, Dallas, TX 75001" -274631,AAA Batteries (4-pack),2,2.99,10/28/19 16:39,"836 Pine St, Dallas, TX 75001" -274632,AA Batteries (4-pack),1,3.84,10/28/19 22:19,"950 Center St, Boston, MA 02215" -274633,Bose SoundSport Headphones,1,99.99,10/28/19 17:42,"340 Chestnut St, San Francisco, CA 94016" -274634,Wired Headphones,1,11.99,10/30/19 23:18,"889 Maple St, Boston, MA 02215" -274635,Flatscreen TV,1,300,10/21/19 05:07,"119 Highland St, Seattle, WA 98101" -274636,AAA Batteries (4-pack),4,2.99,10/01/19 13:48,"890 Elm St, San Francisco, CA 94016" -274637,iPhone,1,700,10/21/19 19:08,"592 Washington St, Los Angeles, CA 90001" -274638,USB-C Charging Cable,1,11.95,10/10/19 21:59,"982 Hickory St, Los Angeles, CA 90001" -274639,ThinkPad Laptop,1,999.99,10/18/19 23:11,"223 5th St, Atlanta, GA 30301" -274640,Wired Headphones,1,11.99,10/14/19 12:46,"754 Chestnut St, Dallas, TX 75001" -274641,20in Monitor,1,109.99,10/22/19 11:54,"958 Johnson St, New York City, NY 10001" -274642,Lightning Charging Cable,1,14.95,10/15/19 11:18,"591 Jefferson St, Atlanta, GA 30301" -274643,Apple Airpods Headphones,1,150,10/02/19 14:24,"343 14th St, Atlanta, GA 30301" -274644,iPhone,1,700,10/30/19 11:30,"597 Center St, Dallas, TX 75001" -274644,Lightning Charging Cable,1,14.95,10/30/19 11:30,"597 Center St, Dallas, TX 75001" -274645,27in FHD Monitor,1,149.99,10/24/19 09:44,"533 Johnson St, Boston, MA 02215" -274646,AAA Batteries (4-pack),1,2.99,10/09/19 08:16,"639 Maple St, San Francisco, CA 94016" -274647,USB-C Charging Cable,1,11.95,10/01/19 07:38,"624 7th St, New York City, NY 10001" -274648,USB-C Charging Cable,1,11.95,10/25/19 13:29,"155 Spruce St, Portland, OR 97035" -274649,AA Batteries (4-pack),2,3.84,10/28/19 10:57,"842 Pine St, Seattle, WA 98101" -274650,Macbook Pro Laptop,1,1700,10/15/19 10:58,"316 11th St, Atlanta, GA 30301" -274651,Lightning Charging Cable,1,14.95,10/20/19 20:20,"900 Lakeview St, San Francisco, CA 94016" -274652,Macbook Pro Laptop,1,1700,10/22/19 17:37,"496 Lakeview St, Dallas, TX 75001" -274653,Wired Headphones,1,11.99,10/25/19 15:55,"275 Lincoln St, Boston, MA 02215" -274654,AAA Batteries (4-pack),1,2.99,10/02/19 21:08,"475 1st St, Dallas, TX 75001" -274654,Wired Headphones,1,11.99,10/02/19 21:08,"475 1st St, Dallas, TX 75001" -274655,USB-C Charging Cable,1,11.95,10/26/19 15:22,"736 North St, San Francisco, CA 94016" -274656,Wired Headphones,2,11.99,10/04/19 12:17,"908 Meadow St, Seattle, WA 98101" -274657,Lightning Charging Cable,1,14.95,10/06/19 00:32,"590 Chestnut St, Atlanta, GA 30301" -274658,AAA Batteries (4-pack),1,2.99,10/31/19 20:52,"151 Lake St, Portland, ME 04101" -274659,Apple Airpods Headphones,1,150,10/12/19 07:17,"36 Spruce St, Dallas, TX 75001" -274660,AAA Batteries (4-pack),4,2.99,10/24/19 21:17,"890 River St, New York City, NY 10001" -274661,Vareebadd Phone,1,400,10/05/19 08:10,"805 Elm St, New York City, NY 10001" -274662,Lightning Charging Cable,1,14.95,10/08/19 22:00,"127 North St, Los Angeles, CA 90001" -274663,AA Batteries (4-pack),1,3.84,10/17/19 14:48,"303 Dogwood St, Los Angeles, CA 90001" -274664,Lightning Charging Cable,1,14.95,10/16/19 08:02,"349 Pine St, Portland, OR 97035" -274665,iPhone,1,700,10/21/19 08:33,"112 Church St, Los Angeles, CA 90001" -274666,Flatscreen TV,1,300,10/26/19 18:15,"380 Cherry St, San Francisco, CA 94016" -274667,AA Batteries (4-pack),1,3.84,10/15/19 12:03,"906 Jefferson St, New York City, NY 10001" -274668,AA Batteries (4-pack),1,3.84,10/23/19 21:03,"448 1st St, Dallas, TX 75001" -274669,Wired Headphones,1,11.99,10/08/19 11:10,"809 Wilson St, New York City, NY 10001" -274670,Wired Headphones,1,11.99,10/28/19 14:56,"972 13th St, San Francisco, CA 94016" -274671,AA Batteries (4-pack),1,3.84,10/08/19 14:53,"118 Park St, Atlanta, GA 30301" -274672,AA Batteries (4-pack),1,3.84,10/11/19 10:06,"841 6th St, San Francisco, CA 94016" -274673,34in Ultrawide Monitor,1,379.99,10/29/19 08:10,"753 Cedar St, Los Angeles, CA 90001" -274674,AAA Batteries (4-pack),1,2.99,10/04/19 22:59,"383 5th St, New York City, NY 10001" -274675,Lightning Charging Cable,1,14.95,10/20/19 16:38,"191 Highland St, San Francisco, CA 94016" -274675,27in 4K Gaming Monitor,1,389.99,10/20/19 16:38,"191 Highland St, San Francisco, CA 94016" -274676,ThinkPad Laptop,1,999.99,10/02/19 21:06,"618 Jackson St, Los Angeles, CA 90001" -274677,Wired Headphones,1,11.99,10/28/19 10:04,"127 Dogwood St, Los Angeles, CA 90001" -274678,LG Washing Machine,1,600.0,10/14/19 12:58,"327 Sunset St, New York City, NY 10001" -274679,Wired Headphones,1,11.99,10/27/19 22:13,"502 Lake St, Los Angeles, CA 90001" -274680,USB-C Charging Cable,1,11.95,10/15/19 11:10,"362 Jefferson St, New York City, NY 10001" -274681,Lightning Charging Cable,1,14.95,10/09/19 10:47,"603 9th St, New York City, NY 10001" -274682,Bose SoundSport Headphones,1,99.99,10/04/19 14:52,"686 12th St, Boston, MA 02215" -274683,20in Monitor,1,109.99,10/28/19 12:47,"327 North St, Seattle, WA 98101" -274684,Wired Headphones,1,11.99,10/22/19 19:31,"76 2nd St, San Francisco, CA 94016" -274685,Lightning Charging Cable,1,14.95,10/27/19 19:37,"112 North St, San Francisco, CA 94016" -274686,Google Phone,1,600,10/04/19 18:53,"135 6th St, Boston, MA 02215" -274687,AAA Batteries (4-pack),2,2.99,10/15/19 13:23,"91 10th St, Los Angeles, CA 90001" -274688,USB-C Charging Cable,1,11.95,10/31/19 19:01,"74 Cherry St, Atlanta, GA 30301" -274689,20in Monitor,1,109.99,10/02/19 18:57,"385 Cherry St, Dallas, TX 75001" -274690,USB-C Charging Cable,1,11.95,10/07/19 06:13,"793 Lake St, Boston, MA 02215" -274691,AAA Batteries (4-pack),1,2.99,10/28/19 10:01,"432 Center St, Los Angeles, CA 90001" -274692,AA Batteries (4-pack),1,3.84,10/21/19 15:08,"509 9th St, Portland, OR 97035" -274693,USB-C Charging Cable,1,11.95,10/06/19 14:21,"627 Jackson St, San Francisco, CA 94016" -274694,Lightning Charging Cable,1,14.95,10/08/19 14:58,"376 Lakeview St, Boston, MA 02215" -274695,Lightning Charging Cable,1,14.95,10/20/19 11:07,"901 Lincoln St, Austin, TX 73301" -274696,AAA Batteries (4-pack),6,2.99,10/19/19 14:50,"869 Pine St, Dallas, TX 75001" -274697,Wired Headphones,1,11.99,10/01/19 07:23,"822 North St, San Francisco, CA 94016" -274698,USB-C Charging Cable,1,11.95,10/09/19 11:45,"374 Madison St, Dallas, TX 75001" -274699,iPhone,1,700,10/18/19 17:26,"741 Cherry St, Seattle, WA 98101" -274700,Lightning Charging Cable,1,14.95,10/04/19 16:08,"913 10th St, Los Angeles, CA 90001" -274701,AAA Batteries (4-pack),1,2.99,10/12/19 20:36,"85 Meadow St, Dallas, TX 75001" -274702,USB-C Charging Cable,2,11.95,10/12/19 18:48,"132 5th St, New York City, NY 10001" -274703,Wired Headphones,1,11.99,10/26/19 20:44,"701 Dogwood St, San Francisco, CA 94016" -274704,Apple Airpods Headphones,1,150,10/31/19 15:47,"146 Maple St, Los Angeles, CA 90001" -274705,USB-C Charging Cable,1,11.95,10/18/19 14:24,"188 Washington St, New York City, NY 10001" -274706,Apple Airpods Headphones,1,150,10/18/19 12:11,"460 7th St, Austin, TX 73301" -274707,Bose SoundSport Headphones,1,99.99,10/18/19 13:03,"418 Lincoln St, Dallas, TX 75001" -274708,ThinkPad Laptop,1,999.99,10/09/19 14:33,"842 Washington St, Portland, OR 97035" -274709,Lightning Charging Cable,2,14.95,10/09/19 07:42,"152 Sunset St, Austin, TX 73301" -274710,iPhone,1,700,10/10/19 19:58,"722 Cedar St, Los Angeles, CA 90001" -274711,Wired Headphones,1,11.99,10/29/19 13:36,"78 Pine St, Los Angeles, CA 90001" -274712,Lightning Charging Cable,1,14.95,10/19/19 08:38,"38 Lake St, New York City, NY 10001" -274713,Bose SoundSport Headphones,1,99.99,10/03/19 17:35,"365 Cedar St, Dallas, TX 75001" -274714,Bose SoundSport Headphones,1,99.99,10/31/19 20:59,"282 Jefferson St, Los Angeles, CA 90001" -274715,Apple Airpods Headphones,1,150,10/19/19 21:23,"586 Ridge St, Atlanta, GA 30301" -274716,USB-C Charging Cable,1,11.95,10/05/19 22:48,"323 8th St, Los Angeles, CA 90001" -274717,Wired Headphones,2,11.99,10/23/19 17:20,"993 Church St, San Francisco, CA 94016" -274718,AAA Batteries (4-pack),3,2.99,10/31/19 15:23,"815 Johnson St, Dallas, TX 75001" -274719,ThinkPad Laptop,1,999.99,10/18/19 21:30,"176 Dogwood St, Portland, OR 97035" -274720,USB-C Charging Cable,1,11.95,10/02/19 20:36,"614 Center St, New York City, NY 10001" -274721,34in Ultrawide Monitor,1,379.99,10/08/19 10:45,"572 Cherry St, Atlanta, GA 30301" -274722,27in 4K Gaming Monitor,1,389.99,10/04/19 16:54,"755 Lakeview St, Boston, MA 02215" -274723,AA Batteries (4-pack),1,3.84,10/19/19 16:19,"421 11th St, Boston, MA 02215" -274724,Bose SoundSport Headphones,1,99.99,10/24/19 19:17,"619 11th St, Seattle, WA 98101" -274725,iPhone,1,700,10/23/19 17:26,"76 Cherry St, New York City, NY 10001" -274726,27in 4K Gaming Monitor,1,389.99,10/27/19 12:19,"794 11th St, Austin, TX 73301" -274727,Google Phone,1,600,10/27/19 22:25,"42 Maple St, Dallas, TX 75001" -274727,USB-C Charging Cable,1,11.95,10/27/19 22:25,"42 Maple St, Dallas, TX 75001" -274728,iPhone,1,700,10/25/19 12:36,"345 5th St, Los Angeles, CA 90001" -274729,USB-C Charging Cable,1,11.95,10/28/19 23:03,"448 Lake St, Portland, OR 97035" -274730,Apple Airpods Headphones,1,150,10/17/19 12:36,"183 Lincoln St, Los Angeles, CA 90001" -274731,AAA Batteries (4-pack),1,2.99,10/25/19 10:18,"790 Lincoln St, Los Angeles, CA 90001" -274732,Wired Headphones,1,11.99,10/17/19 21:52,"312 Wilson St, Atlanta, GA 30301" -274733,Lightning Charging Cable,1,14.95,10/01/19 12:55,"555 South St, Austin, TX 73301" -274734,AA Batteries (4-pack),2,3.84,10/14/19 17:15,"940 Madison St, San Francisco, CA 94016" -274735,AA Batteries (4-pack),1,3.84,10/04/19 18:50,"703 Church St, Atlanta, GA 30301" -274736,Apple Airpods Headphones,1,150,10/29/19 07:00,"991 Jefferson St, New York City, NY 10001" -274737,Lightning Charging Cable,1,14.95,10/09/19 14:00,"585 8th St, San Francisco, CA 94016" -274738,Apple Airpods Headphones,1,150,10/06/19 13:51,"761 Meadow St, San Francisco, CA 94016" -274739,AAA Batteries (4-pack),1,2.99,10/18/19 12:32,"60 Spruce St, Boston, MA 02215" -274740,Apple Airpods Headphones,1,150,10/05/19 22:14,"164 Forest St, Atlanta, GA 30301" -274741,AA Batteries (4-pack),2,3.84,10/04/19 11:19,"920 Meadow St, New York City, NY 10001" -274742,Apple Airpods Headphones,1,150,10/06/19 10:08,"754 Highland St, Boston, MA 02215" -274743,Lightning Charging Cable,1,14.95,10/15/19 17:52,"784 11th St, New York City, NY 10001" -274744,AAA Batteries (4-pack),1,2.99,10/22/19 11:11,"688 Jefferson St, Portland, OR 97035" -274745,Wired Headphones,1,11.99,10/19/19 20:13,"277 14th St, New York City, NY 10001" -274746,Lightning Charging Cable,1,14.95,10/18/19 16:19,"881 Dogwood St, Portland, ME 04101" -274747,Bose SoundSport Headphones,1,99.99,10/08/19 12:35,"448 8th St, San Francisco, CA 94016" -274748,27in 4K Gaming Monitor,1,389.99,10/29/19 23:40,"638 8th St, New York City, NY 10001" -274748,AAA Batteries (4-pack),1,2.99,10/29/19 23:40,"638 8th St, New York City, NY 10001" -274749,USB-C Charging Cable,1,11.95,10/25/19 21:23,"303 Johnson St, Seattle, WA 98101" -274750,AAA Batteries (4-pack),1,2.99,10/19/19 20:57,"68 Forest St, Dallas, TX 75001" -274751,Bose SoundSport Headphones,1,99.99,10/17/19 10:36,"956 Lake St, Los Angeles, CA 90001" -274752,ThinkPad Laptop,1,999.99,10/07/19 08:49,"109 Cedar St, Seattle, WA 98101" -274753,AAA Batteries (4-pack),1,2.99,10/24/19 09:08,"869 Chestnut St, Dallas, TX 75001" -274754,USB-C Charging Cable,1,11.95,10/09/19 18:10,"351 Maple St, Boston, MA 02215" -274755,Bose SoundSport Headphones,1,99.99,10/18/19 17:23,"906 Chestnut St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -274756,AA Batteries (4-pack),1,3.84,10/16/19 00:02,"198 10th St, Los Angeles, CA 90001" -274757,USB-C Charging Cable,1,11.95,10/27/19 21:11,"396 Washington St, Austin, TX 73301" -274758,AA Batteries (4-pack),1,3.84,10/20/19 13:50,"925 North St, San Francisco, CA 94016" -274759,Apple Airpods Headphones,1,150,10/26/19 21:51,"721 Pine St, Seattle, WA 98101" -274760,27in FHD Monitor,1,149.99,10/08/19 23:25,"228 4th St, San Francisco, CA 94016" -274761,Bose SoundSport Headphones,1,99.99,10/02/19 15:51,"467 13th St, Los Angeles, CA 90001" -274762,Macbook Pro Laptop,1,1700,10/02/19 18:48,"739 Pine St, San Francisco, CA 94016" -274762,34in Ultrawide Monitor,1,379.99,10/02/19 18:48,"739 Pine St, San Francisco, CA 94016" -274763,Wired Headphones,1,11.99,10/15/19 11:14,"482 Maple St, San Francisco, CA 94016" -,,,,, -274764,USB-C Charging Cable,1,11.95,10/19/19 18:43,"45 Meadow St, Boston, MA 02215" -274765,Wired Headphones,1,11.99,10/06/19 15:23,"589 2nd St, Portland, ME 04101" -274766,Apple Airpods Headphones,1,150,10/19/19 17:05,"338 14th St, New York City, NY 10001" -274767,Lightning Charging Cable,1,14.95,10/23/19 13:45,"942 Spruce St, San Francisco, CA 94016" -274768,AAA Batteries (4-pack),1,2.99,10/25/19 02:57,"546 South St, Atlanta, GA 30301" -274769,20in Monitor,1,109.99,10/21/19 14:25,"143 Center St, Austin, TX 73301" -274770,AA Batteries (4-pack),1,3.84,10/02/19 18:30,"892 14th St, Los Angeles, CA 90001" -274771,Wired Headphones,1,11.99,10/15/19 00:13,"263 8th St, Dallas, TX 75001" -274772,27in FHD Monitor,1,149.99,10/21/19 19:17,"449 Madison St, Dallas, TX 75001" -274773,USB-C Charging Cable,1,11.95,10/26/19 00:33,"493 2nd St, Boston, MA 02215" -274774,27in FHD Monitor,1,149.99,10/15/19 16:55,"4 13th St, Atlanta, GA 30301" -274775,AA Batteries (4-pack),2,3.84,10/27/19 03:24,"813 Highland St, Seattle, WA 98101" -274776,USB-C Charging Cable,1,11.95,10/10/19 19:21,"759 West St, Dallas, TX 75001" -274777,20in Monitor,1,109.99,10/23/19 15:24,"284 Jackson St, Los Angeles, CA 90001" -274778,Lightning Charging Cable,1,14.95,10/13/19 11:21,"626 Jefferson St, Austin, TX 73301" -274779,Wired Headphones,1,11.99,10/20/19 20:08,"1 Jackson St, Los Angeles, CA 90001" -274780,Bose SoundSport Headphones,1,99.99,10/31/19 17:32,"785 Pine St, Seattle, WA 98101" -274781,AA Batteries (4-pack),1,3.84,10/27/19 12:25,"589 12th St, New York City, NY 10001" -274782,USB-C Charging Cable,1,11.95,10/03/19 09:16,"389 Adams St, Atlanta, GA 30301" -274783,USB-C Charging Cable,1,11.95,10/14/19 22:06,"799 Highland St, Portland, OR 97035" -274784,AAA Batteries (4-pack),2,2.99,10/30/19 08:37,"73 Main St, Portland, ME 04101" -274785,Lightning Charging Cable,1,14.95,10/04/19 20:56,"540 Church St, San Francisco, CA 94016" -274786,ThinkPad Laptop,1,999.99,10/28/19 11:22,"796 Dogwood St, San Francisco, CA 94016" -274787,Flatscreen TV,1,300,10/03/19 14:05,"43 Johnson St, Portland, OR 97035" -274788,AAA Batteries (4-pack),1,2.99,10/07/19 14:07,"8 Meadow St, San Francisco, CA 94016" -274789,27in FHD Monitor,1,149.99,10/30/19 14:00,"441 7th St, San Francisco, CA 94016" -274790,iPhone,1,700,10/20/19 16:18,"904 Chestnut St, San Francisco, CA 94016" -274791,AA Batteries (4-pack),2,3.84,10/12/19 20:31,"490 Jefferson St, Los Angeles, CA 90001" -274792,Apple Airpods Headphones,1,150,10/31/19 09:28,"169 7th St, Seattle, WA 98101" -274793,Apple Airpods Headphones,1,150,10/26/19 20:24,"892 9th St, San Francisco, CA 94016" -274794,USB-C Charging Cable,1,11.95,10/31/19 18:38,"373 Hill St, New York City, NY 10001" -274795,20in Monitor,1,109.99,10/26/19 22:28,"204 Sunset St, Boston, MA 02215" -274796,Macbook Pro Laptop,1,1700,10/18/19 07:50,"429 Elm St, New York City, NY 10001" -274797,AA Batteries (4-pack),2,3.84,10/02/19 00:39,"977 Dogwood St, Dallas, TX 75001" -274798,USB-C Charging Cable,1,11.95,10/17/19 15:02,"109 1st St, San Francisco, CA 94016" -274799,34in Ultrawide Monitor,1,379.99,10/31/19 11:15,"785 Jackson St, San Francisco, CA 94016" -274800,AAA Batteries (4-pack),1,2.99,10/23/19 15:27,"17 Walnut St, Dallas, TX 75001" -,,,,, -274801,AAA Batteries (4-pack),1,2.99,10/20/19 13:25,"789 Maple St, Seattle, WA 98101" -274801,27in 4K Gaming Monitor,1,389.99,10/20/19 13:25,"789 Maple St, Seattle, WA 98101" -274802,Macbook Pro Laptop,1,1700,10/16/19 22:50,"25 South St, Boston, MA 02215" -274803,ThinkPad Laptop,1,999.99,10/25/19 11:23,"783 Lincoln St, Atlanta, GA 30301" -274804,USB-C Charging Cable,1,11.95,10/30/19 08:32,"118 Jackson St, San Francisco, CA 94016" -274805,USB-C Charging Cable,1,11.95,10/14/19 07:20,"617 14th St, Boston, MA 02215" -274806,AAA Batteries (4-pack),3,2.99,10/04/19 07:15,"827 Johnson St, Austin, TX 73301" -274807,Apple Airpods Headphones,1,150,10/07/19 12:15,"268 Jefferson St, San Francisco, CA 94016" -274808,Flatscreen TV,1,300,10/31/19 11:24,"944 12th St, Los Angeles, CA 90001" -274809,AAA Batteries (4-pack),1,2.99,10/01/19 14:19,"212 5th St, Seattle, WA 98101" -274810,27in 4K Gaming Monitor,1,389.99,10/21/19 20:40,"47 Maple St, Atlanta, GA 30301" -274811,Apple Airpods Headphones,1,150,10/02/19 10:07,"259 6th St, Boston, MA 02215" -274812,Lightning Charging Cable,1,14.95,10/23/19 19:25,"716 Washington St, San Francisco, CA 94016" -274813,20in Monitor,1,109.99,10/16/19 19:05,"864 Cherry St, Dallas, TX 75001" -274814,Wired Headphones,1,11.99,10/04/19 13:12,"925 14th St, Austin, TX 73301" -274815,USB-C Charging Cable,1,11.95,10/15/19 15:00,"364 5th St, San Francisco, CA 94016" -274816,20in Monitor,1,109.99,10/26/19 00:18,"153 Park St, Austin, TX 73301" -274817,AAA Batteries (4-pack),2,2.99,10/20/19 20:50,"456 12th St, Portland, OR 97035" -274818,ThinkPad Laptop,1,999.99,10/21/19 22:37,"519 Church St, San Francisco, CA 94016" -274819,AA Batteries (4-pack),3,3.84,10/17/19 22:10,"478 7th St, Los Angeles, CA 90001" -274820,Wired Headphones,1,11.99,10/01/19 16:58,"560 5th St, New York City, NY 10001" -274821,AA Batteries (4-pack),1,3.84,10/20/19 23:21,"204 Adams St, Los Angeles, CA 90001" -274822,Lightning Charging Cable,1,14.95,10/09/19 16:45,"886 Pine St, Dallas, TX 75001" -274823,Apple Airpods Headphones,1,150,10/30/19 17:47,"765 Dogwood St, San Francisco, CA 94016" -274824,27in FHD Monitor,1,149.99,10/19/19 21:06,"98 Lake St, Portland, ME 04101" -274825,Lightning Charging Cable,1,14.95,10/06/19 12:22,"811 Church St, Dallas, TX 75001" -274826,Apple Airpods Headphones,1,150,10/25/19 00:01,"781 Madison St, Los Angeles, CA 90001" -274827,Vareebadd Phone,1,400,10/01/19 13:06,"745 Walnut St, Seattle, WA 98101" -274827,USB-C Charging Cable,1,11.95,10/01/19 13:06,"745 Walnut St, Seattle, WA 98101" -274828,Bose SoundSport Headphones,1,99.99,10/30/19 20:24,"405 Center St, Los Angeles, CA 90001" -274829,Bose SoundSport Headphones,1,99.99,10/28/19 16:30,"314 Hill St, San Francisco, CA 94016" -274830,Wired Headphones,1,11.99,10/07/19 11:38,"87 Church St, Boston, MA 02215" -274831,Bose SoundSport Headphones,1,99.99,10/26/19 22:29,"539 Center St, Boston, MA 02215" -274832,USB-C Charging Cable,1,11.95,10/05/19 20:19,"854 Lincoln St, Atlanta, GA 30301" -274833,iPhone,1,700,10/23/19 15:00,"38 5th St, Los Angeles, CA 90001" -274834,Macbook Pro Laptop,1,1700,10/22/19 09:17,"205 14th St, Los Angeles, CA 90001" -274835,Lightning Charging Cable,1,14.95,10/09/19 15:30,"278 6th St, Portland, OR 97035" -274836,AA Batteries (4-pack),1,3.84,10/21/19 19:39,"890 Washington St, Los Angeles, CA 90001" -274837,34in Ultrawide Monitor,1,379.99,10/16/19 13:13,"570 Dogwood St, Seattle, WA 98101" -274838,Wired Headphones,1,11.99,10/06/19 09:22,"92 9th St, Dallas, TX 75001" -274839,34in Ultrawide Monitor,1,379.99,10/21/19 16:22,"277 Center St, Boston, MA 02215" -274840,Flatscreen TV,1,300,10/30/19 15:05,"980 1st St, Los Angeles, CA 90001" -274841,AA Batteries (4-pack),3,3.84,10/22/19 13:12,"107 Spruce St, Los Angeles, CA 90001" -274842,Lightning Charging Cable,1,14.95,10/07/19 01:06,"44 Church St, San Francisco, CA 94016" -274843,ThinkPad Laptop,1,999.99,10/01/19 11:13,"207 Highland St, Atlanta, GA 30301" -274844,Apple Airpods Headphones,1,150,10/16/19 14:59,"953 Hill St, Austin, TX 73301" -274845,AAA Batteries (4-pack),3,2.99,10/09/19 14:09,"499 7th St, Los Angeles, CA 90001" -274846,Lightning Charging Cable,1,14.95,10/13/19 11:43,"125 Madison St, Atlanta, GA 30301" -274847,USB-C Charging Cable,1,11.95,10/14/19 15:14,"703 11th St, Los Angeles, CA 90001" -274848,Bose SoundSport Headphones,1,99.99,10/17/19 12:01,"963 Walnut St, Boston, MA 02215" -274849,27in FHD Monitor,1,149.99,10/02/19 21:39,"950 Church St, Boston, MA 02215" -274850,AA Batteries (4-pack),4,3.84,10/24/19 14:23,"767 8th St, Dallas, TX 75001" -274851,Apple Airpods Headphones,1,150,10/30/19 13:07,"948 Meadow St, San Francisco, CA 94016" -274852,20in Monitor,1,109.99,10/26/19 21:05,"426 Jefferson St, Los Angeles, CA 90001" -274853,USB-C Charging Cable,1,11.95,10/07/19 07:40,"169 Jackson St, Seattle, WA 98101" -274854,Lightning Charging Cable,1,14.95,10/26/19 18:00,"581 Madison St, Portland, OR 97035" -274855,Macbook Pro Laptop,1,1700,10/06/19 12:00,"790 Adams St, Portland, OR 97035" -274856,USB-C Charging Cable,1,11.95,10/24/19 15:43,"619 Jackson St, San Francisco, CA 94016" -274857,Apple Airpods Headphones,1,150,10/07/19 13:08,"438 Lakeview St, Dallas, TX 75001" -274858,AA Batteries (4-pack),1,3.84,10/10/19 08:28,"842 Meadow St, Dallas, TX 75001" -274859,USB-C Charging Cable,1,11.95,10/16/19 08:42,"640 Cherry St, Los Angeles, CA 90001" -274860,AAA Batteries (4-pack),1,2.99,10/06/19 17:48,"31 Lakeview St, Dallas, TX 75001" -274861,iPhone,1,700,10/18/19 14:37,"876 North St, Seattle, WA 98101" -274862,27in 4K Gaming Monitor,1,389.99,10/11/19 00:32,"135 9th St, San Francisco, CA 94016" -274863,AA Batteries (4-pack),1,3.84,10/27/19 21:20,"259 Center St, Seattle, WA 98101" -274864,27in FHD Monitor,1,149.99,10/21/19 16:13,"821 Spruce St, Austin, TX 73301" -274865,USB-C Charging Cable,1,11.95,10/15/19 11:29,"893 Pine St, San Francisco, CA 94016" -274866,27in FHD Monitor,1,149.99,10/26/19 16:10,"348 Willow St, Los Angeles, CA 90001" -274867,Bose SoundSport Headphones,1,99.99,10/27/19 17:23,"740 Spruce St, Portland, OR 97035" -274868,Bose SoundSport Headphones,1,99.99,10/13/19 10:58,"581 Lake St, New York City, NY 10001" -274869,AAA Batteries (4-pack),1,2.99,10/21/19 13:25,"585 Center St, Los Angeles, CA 90001" -274870,Lightning Charging Cable,1,14.95,10/09/19 16:41,"258 2nd St, Los Angeles, CA 90001" -274871,34in Ultrawide Monitor,1,379.99,10/12/19 09:01,"170 Sunset St, New York City, NY 10001" -274872,USB-C Charging Cable,1,11.95,10/12/19 21:24,"989 Jackson St, Austin, TX 73301" -274873,Lightning Charging Cable,2,14.95,10/26/19 14:57,"568 6th St, Atlanta, GA 30301" -274874,AAA Batteries (4-pack),1,2.99,10/24/19 20:37,"204 Maple St, Austin, TX 73301" -274875,Wired Headphones,1,11.99,10/11/19 19:52,"83 2nd St, Austin, TX 73301" -274876,Apple Airpods Headphones,1,150,10/23/19 19:32,"379 5th St, San Francisco, CA 94016" -274877,USB-C Charging Cable,1,11.95,10/09/19 10:39,"628 South St, Austin, TX 73301" -274878,Bose SoundSport Headphones,1,99.99,10/06/19 11:38,"768 9th St, New York City, NY 10001" -274879,USB-C Charging Cable,1,11.95,10/18/19 12:02,"479 River St, Dallas, TX 75001" -274879,AA Batteries (4-pack),1,3.84,10/18/19 12:02,"479 River St, Dallas, TX 75001" -274880,USB-C Charging Cable,1,11.95,10/13/19 13:15,"457 Lake St, Dallas, TX 75001" -274881,AA Batteries (4-pack),2,3.84,10/26/19 14:50,"84 Center St, Atlanta, GA 30301" -274882,27in FHD Monitor,1,149.99,10/11/19 20:46,"263 Dogwood St, Portland, OR 97035" -274883,Lightning Charging Cable,1,14.95,10/01/19 10:29,"58 14th St, Dallas, TX 75001" -274884,USB-C Charging Cable,1,11.95,10/09/19 06:57,"562 Ridge St, Austin, TX 73301" -274885,Google Phone,1,600,10/27/19 11:58,"626 Maple St, Atlanta, GA 30301" -274885,Bose SoundSport Headphones,1,99.99,10/27/19 11:58,"626 Maple St, Atlanta, GA 30301" -274886,Flatscreen TV,1,300,10/29/19 01:45,"394 Wilson St, Los Angeles, CA 90001" -274887,Lightning Charging Cable,2,14.95,10/13/19 21:42,"975 2nd St, Los Angeles, CA 90001" -274888,USB-C Charging Cable,1,11.95,10/24/19 21:10,"73 Meadow St, New York City, NY 10001" -274889,Apple Airpods Headphones,1,150,10/29/19 11:57,"307 Center St, Boston, MA 02215" -274890,Wired Headphones,1,11.99,10/29/19 22:57,"535 1st St, Boston, MA 02215" -274891,Lightning Charging Cable,1,14.95,10/17/19 11:15,"436 West St, Austin, TX 73301" -274892,Lightning Charging Cable,1,14.95,10/03/19 20:58,"839 Cherry St, Atlanta, GA 30301" -274893,AAA Batteries (4-pack),3,2.99,10/31/19 07:46,"78 Pine St, San Francisco, CA 94016" -274894,ThinkPad Laptop,1,999.99,10/15/19 12:59,"304 Elm St, Atlanta, GA 30301" -274895,Lightning Charging Cable,1,14.95,10/13/19 14:01,"750 Washington St, San Francisco, CA 94016" -274896,27in 4K Gaming Monitor,1,389.99,10/27/19 22:59,"877 Jefferson St, Dallas, TX 75001" -274897,AAA Batteries (4-pack),1,2.99,10/12/19 10:51,"676 Highland St, Los Angeles, CA 90001" -274898,34in Ultrawide Monitor,1,379.99,10/17/19 12:26,"743 Lake St, New York City, NY 10001" -274899,27in FHD Monitor,1,149.99,10/29/19 22:15,"113 Church St, Seattle, WA 98101" -274900,34in Ultrawide Monitor,1,379.99,10/10/19 16:42,"620 2nd St, Portland, OR 97035" -274901,AA Batteries (4-pack),1,3.84,10/10/19 08:36,"166 Cherry St, New York City, NY 10001" -274902,AAA Batteries (4-pack),1,2.99,10/12/19 13:21,"85 Highland St, Los Angeles, CA 90001" -274903,Lightning Charging Cable,1,14.95,10/06/19 10:48,"925 Meadow St, Dallas, TX 75001" -274904,Lightning Charging Cable,1,14.95,10/17/19 11:40,"565 Hickory St, Dallas, TX 75001" -274905,20in Monitor,1,109.99,10/07/19 22:06,"357 South St, Austin, TX 73301" -274906,AA Batteries (4-pack),1,3.84,10/19/19 19:07,"864 Willow St, New York City, NY 10001" -274907,AA Batteries (4-pack),1,3.84,10/13/19 12:45,"235 Meadow St, New York City, NY 10001" -274908,Lightning Charging Cable,1,14.95,10/12/19 13:23,"653 Main St, Los Angeles, CA 90001" -274909,27in 4K Gaming Monitor,1,389.99,10/28/19 20:47,"719 Jackson St, Atlanta, GA 30301" -274910,Wired Headphones,1,11.99,10/29/19 00:43,"982 North St, Los Angeles, CA 90001" -274911,Lightning Charging Cable,1,14.95,10/19/19 21:51,"679 Meadow St, Boston, MA 02215" -274912,Wired Headphones,1,11.99,10/28/19 21:29,"451 South St, Seattle, WA 98101" -274913,AAA Batteries (4-pack),1,2.99,10/28/19 09:55,"542 South St, New York City, NY 10001" -274914,Lightning Charging Cable,1,14.95,10/09/19 13:56,"959 Jackson St, New York City, NY 10001" -274915,USB-C Charging Cable,1,11.95,10/24/19 11:10,"11 Jefferson St, New York City, NY 10001" -274916,27in FHD Monitor,1,149.99,10/30/19 10:51,"955 Wilson St, New York City, NY 10001" -274917,27in 4K Gaming Monitor,1,389.99,10/06/19 22:46,"84 14th St, Boston, MA 02215" -274918,USB-C Charging Cable,1,11.95,10/27/19 07:13,"295 West St, Seattle, WA 98101" -274919,Macbook Pro Laptop,1,1700,10/28/19 00:32,"865 14th St, Boston, MA 02215" -274920,LG Dryer,1,600.0,10/11/19 22:16,"642 7th St, San Francisco, CA 94016" -274921,34in Ultrawide Monitor,1,379.99,10/02/19 15:07,"469 5th St, Seattle, WA 98101" -274922,AAA Batteries (4-pack),2,2.99,10/26/19 08:19,"529 10th St, Seattle, WA 98101" -274923,27in 4K Gaming Monitor,1,389.99,10/20/19 12:06,"640 Highland St, Boston, MA 02215" -274924,20in Monitor,1,109.99,10/06/19 21:58,"123 Chestnut St, Dallas, TX 75001" -274925,27in 4K Gaming Monitor,1,389.99,10/18/19 10:22,"265 Johnson St, San Francisco, CA 94016" -274925,Apple Airpods Headphones,1,150,10/18/19 10:22,"265 Johnson St, San Francisco, CA 94016" -274926,27in 4K Gaming Monitor,1,389.99,10/11/19 13:09,"769 Church St, Dallas, TX 75001" -274927,AAA Batteries (4-pack),1,2.99,10/19/19 22:41,"159 7th St, Atlanta, GA 30301" -274928,AA Batteries (4-pack),2,3.84,10/13/19 12:06,"772 Lake St, New York City, NY 10001" -274929,AA Batteries (4-pack),1,3.84,10/12/19 18:24,"920 14th St, Los Angeles, CA 90001" -274930,iPhone,1,700,10/11/19 08:11,"959 Madison St, Boston, MA 02215" -274931,AA Batteries (4-pack),1,3.84,10/06/19 20:39,"141 South St, Dallas, TX 75001" -274932,Apple Airpods Headphones,1,150,10/19/19 20:12,"229 Walnut St, Los Angeles, CA 90001" -274933,USB-C Charging Cable,1,11.95,10/07/19 15:00,"198 Johnson St, Los Angeles, CA 90001" -274934,AA Batteries (4-pack),1,3.84,10/31/19 11:28,"870 Lincoln St, San Francisco, CA 94016" -274935,Apple Airpods Headphones,1,150,10/28/19 01:06,"24 Hickory St, San Francisco, CA 94016" -274936,Lightning Charging Cable,1,14.95,10/02/19 10:28,"22 7th St, Seattle, WA 98101" -274937,Lightning Charging Cable,1,14.95,10/01/19 09:38,"574 8th St, Los Angeles, CA 90001" -274938,iPhone,1,700,10/03/19 19:02,"688 Highland St, Boston, MA 02215" -274938,Wired Headphones,1,11.99,10/03/19 19:02,"688 Highland St, Boston, MA 02215" -274939,Wired Headphones,1,11.99,10/27/19 16:04,"241 Willow St, New York City, NY 10001" -274940,AA Batteries (4-pack),3,3.84,10/14/19 12:32,"11 Hickory St, Los Angeles, CA 90001" -274941,Apple Airpods Headphones,1,150,10/13/19 11:06,"791 Highland St, Seattle, WA 98101" -274942,AA Batteries (4-pack),1,3.84,10/22/19 12:58,"669 Meadow St, San Francisco, CA 94016" -274943,Lightning Charging Cable,1,14.95,10/13/19 14:28,"226 South St, San Francisco, CA 94016" -,,,,, -274944,USB-C Charging Cable,1,11.95,10/18/19 19:40,"944 8th St, Austin, TX 73301" -274945,Flatscreen TV,1,300,10/07/19 11:44,"491 Madison St, Portland, OR 97035" -274946,AAA Batteries (4-pack),1,2.99,10/28/19 20:25,"190 Jefferson St, Atlanta, GA 30301" -274947,27in 4K Gaming Monitor,1,389.99,10/12/19 16:53,"874 Wilson St, New York City, NY 10001" -274948,Wired Headphones,1,11.99,10/09/19 22:13,"586 Jackson St, Dallas, TX 75001" -274949,Wired Headphones,1,11.99,10/21/19 08:21,"800 11th St, Dallas, TX 75001" -274950,27in FHD Monitor,1,149.99,10/19/19 19:08,"580 Forest St, San Francisco, CA 94016" -274951,ThinkPad Laptop,1,999.99,10/06/19 21:23,"621 7th St, New York City, NY 10001" -274952,Apple Airpods Headphones,1,150,10/15/19 16:18,"121 Maple St, San Francisco, CA 94016" -274953,Bose SoundSport Headphones,1,99.99,10/04/19 09:17,"102 North St, Boston, MA 02215" -274954,AAA Batteries (4-pack),1,2.99,10/16/19 19:19,"136 14th St, Boston, MA 02215" -274955,Lightning Charging Cable,1,14.95,10/16/19 20:19,"31 Elm St, Portland, OR 97035" -274956,Lightning Charging Cable,1,14.95,10/21/19 13:19,"287 Center St, Los Angeles, CA 90001" -274957,ThinkPad Laptop,1,999.99,10/14/19 17:25,"967 Main St, Los Angeles, CA 90001" -274958,Vareebadd Phone,1,400,10/07/19 17:26,"95 Wilson St, Atlanta, GA 30301" -274959,27in FHD Monitor,1,149.99,10/01/19 12:36,"271 Chestnut St, Los Angeles, CA 90001" -274960,Bose SoundSport Headphones,1,99.99,10/15/19 12:27,"562 Willow St, Los Angeles, CA 90001" -274961,AAA Batteries (4-pack),1,2.99,10/31/19 10:35,"590 11th St, Portland, OR 97035" -274962,AAA Batteries (4-pack),2,2.99,10/06/19 04:36,"971 Lakeview St, Seattle, WA 98101" -274963,34in Ultrawide Monitor,1,379.99,10/20/19 20:04,"387 Jefferson St, San Francisco, CA 94016" -274964,Wired Headphones,1,11.99,10/25/19 00:05,"93 Lakeview St, Los Angeles, CA 90001" -274965,Apple Airpods Headphones,1,150,10/30/19 09:20,"823 Highland St, San Francisco, CA 94016" -274966,27in FHD Monitor,1,149.99,10/10/19 10:43,"646 Maple St, New York City, NY 10001" -274967,Apple Airpods Headphones,1,150,10/02/19 18:27,"660 Jefferson St, New York City, NY 10001" -274968,AAA Batteries (4-pack),3,2.99,10/20/19 16:57,"27 Cedar St, Dallas, TX 75001" -274969,Apple Airpods Headphones,1,150,10/10/19 15:38,"356 Lincoln St, Seattle, WA 98101" -274970,AA Batteries (4-pack),1,3.84,10/06/19 01:18,"15 Spruce St, Seattle, WA 98101" -274971,Google Phone,1,600,10/07/19 12:17,"364 Dogwood St, Los Angeles, CA 90001" -274971,Bose SoundSport Headphones,1,99.99,10/07/19 12:17,"364 Dogwood St, Los Angeles, CA 90001" -274971,Wired Headphones,1,11.99,10/07/19 12:17,"364 Dogwood St, Los Angeles, CA 90001" -274972,ThinkPad Laptop,1,999.99,10/28/19 18:55,"172 1st St, Los Angeles, CA 90001" -274973,USB-C Charging Cable,1,11.95,10/06/19 21:35,"790 Hickory St, Los Angeles, CA 90001" -274974,Wired Headphones,1,11.99,10/18/19 00:17,"625 1st St, San Francisco, CA 94016" -,,,,, -274975,Wired Headphones,1,11.99,10/08/19 09:26,"163 Jefferson St, Portland, OR 97035" -274976,Google Phone,1,600,10/27/19 13:40,"793 12th St, Atlanta, GA 30301" -274977,27in 4K Gaming Monitor,1,389.99,10/08/19 22:04,"907 11th St, Seattle, WA 98101" -274978,Lightning Charging Cable,1,14.95,10/05/19 15:51,"429 Washington St, New York City, NY 10001" -274979,USB-C Charging Cable,1,11.95,10/10/19 03:39,"501 Hickory St, San Francisco, CA 94016" -274980,Macbook Pro Laptop,1,1700,10/18/19 18:51,"436 Lincoln St, Los Angeles, CA 90001" -274981,Wired Headphones,1,11.99,10/31/19 22:59,"947 Willow St, Los Angeles, CA 90001" -274982,Lightning Charging Cable,2,14.95,10/27/19 21:54,"601 Adams St, San Francisco, CA 94016" -274983,AAA Batteries (4-pack),2,2.99,10/04/19 19:20,"287 2nd St, San Francisco, CA 94016" -274984,Macbook Pro Laptop,1,1700,10/27/19 21:14,"329 Maple St, Seattle, WA 98101" -274985,USB-C Charging Cable,1,11.95,10/23/19 22:14,"988 Johnson St, Dallas, TX 75001" -274986,Bose SoundSport Headphones,1,99.99,10/29/19 00:26,"636 Washington St, San Francisco, CA 94016" -274987,USB-C Charging Cable,1,11.95,10/28/19 14:23,"313 Forest St, Portland, OR 97035" -274988,Flatscreen TV,1,300,10/15/19 13:45,"538 12th St, Boston, MA 02215" -274989,20in Monitor,1,109.99,10/21/19 17:28,"712 14th St, Los Angeles, CA 90001" -274990,AAA Batteries (4-pack),1,2.99,10/02/19 05:34,"523 11th St, San Francisco, CA 94016" -274991,Bose SoundSport Headphones,1,99.99,10/31/19 20:13,"322 Chestnut St, Portland, OR 97035" -274992,Wired Headphones,1,11.99,10/21/19 19:10,"104 Church St, Portland, OR 97035" -274993,AAA Batteries (4-pack),2,2.99,10/21/19 18:55,"979 Cedar St, Atlanta, GA 30301" -274994,AAA Batteries (4-pack),1,2.99,10/13/19 04:18,"85 West St, Portland, ME 04101" -274995,Bose SoundSport Headphones,1,99.99,10/22/19 09:28,"277 Ridge St, Boston, MA 02215" -274996,AA Batteries (4-pack),2,3.84,10/04/19 10:58,"723 Elm St, Atlanta, GA 30301" -274997,34in Ultrawide Monitor,1,379.99,10/04/19 23:46,"66 Lakeview St, New York City, NY 10001" -274998,ThinkPad Laptop,1,999.99,10/25/19 12:19,"570 Wilson St, San Francisco, CA 94016" -274999,AAA Batteries (4-pack),1,2.99,10/19/19 20:32,"27 Pine St, San Francisco, CA 94016" -275000,Bose SoundSport Headphones,1,99.99,10/18/19 19:42,"98 Madison St, Dallas, TX 75001" -275001,34in Ultrawide Monitor,1,379.99,10/02/19 16:36,"731 River St, New York City, NY 10001" -275002,Google Phone,1,600,10/01/19 20:31,"470 Lincoln St, San Francisco, CA 94016" -275003,Lightning Charging Cable,1,14.95,10/23/19 21:30,"151 Wilson St, Dallas, TX 75001" -275004,20in Monitor,1,109.99,10/21/19 00:17,"967 Maple St, San Francisco, CA 94016" -275005,LG Washing Machine,1,600.0,10/17/19 18:21,"943 12th St, New York City, NY 10001" -275006,AA Batteries (4-pack),1,3.84,10/21/19 19:17,"175 Madison St, Boston, MA 02215" -275007,iPhone,1,700,10/17/19 13:27,"95 Walnut St, Dallas, TX 75001" -275008,Macbook Pro Laptop,1,1700,10/01/19 14:16,"168 Church St, Boston, MA 02215" -275009,Apple Airpods Headphones,1,150,10/11/19 23:08,"493 Lake St, Portland, OR 97035" -275010,Lightning Charging Cable,1,14.95,10/14/19 13:01,"282 Spruce St, Atlanta, GA 30301" -275011,Lightning Charging Cable,1,14.95,10/25/19 21:30,"748 12th St, San Francisco, CA 94016" -275012,USB-C Charging Cable,1,11.95,10/26/19 00:15,"583 Chestnut St, Boston, MA 02215" -275013,Lightning Charging Cable,1,14.95,10/06/19 08:46,"757 Center St, Austin, TX 73301" -275014,AA Batteries (4-pack),1,3.84,10/18/19 20:19,"294 Maple St, Boston, MA 02215" -275015,AAA Batteries (4-pack),2,2.99,10/06/19 19:30,"459 Madison St, Austin, TX 73301" -275016,AAA Batteries (4-pack),1,2.99,10/23/19 07:24,"201 2nd St, Portland, OR 97035" -275017,Apple Airpods Headphones,1,150,10/14/19 13:25,"433 Hill St, San Francisco, CA 94016" -275018,Apple Airpods Headphones,1,150,10/20/19 06:07,"293 Cedar St, Los Angeles, CA 90001" -275019,Flatscreen TV,1,300,10/24/19 14:05,"563 Maple St, Boston, MA 02215" -275020,USB-C Charging Cable,1,11.95,10/12/19 21:13,"339 Spruce St, Atlanta, GA 30301" -275021,iPhone,1,700,10/15/19 21:59,"853 Maple St, New York City, NY 10001" -275021,Lightning Charging Cable,1,14.95,10/15/19 21:59,"853 Maple St, New York City, NY 10001" -275022,USB-C Charging Cable,1,11.95,10/08/19 04:27,"241 2nd St, Austin, TX 73301" -275023,AA Batteries (4-pack),1,3.84,10/11/19 14:13,"991 11th St, San Francisco, CA 94016" -275024,iPhone,1,700,10/24/19 23:58,"218 5th St, Boston, MA 02215" -275025,Wired Headphones,1,11.99,10/04/19 16:25,"220 Lakeview St, Atlanta, GA 30301" -275026,Bose SoundSport Headphones,1,99.99,10/15/19 10:44,"357 9th St, Atlanta, GA 30301" -275026,AA Batteries (4-pack),1,3.84,10/15/19 10:44,"357 9th St, Atlanta, GA 30301" -275027,27in 4K Gaming Monitor,1,389.99,10/10/19 14:30,"183 Center St, New York City, NY 10001" -275028,Lightning Charging Cable,1,14.95,10/25/19 19:49,"72 8th St, Austin, TX 73301" -275028,Lightning Charging Cable,1,14.95,10/25/19 19:49,"72 8th St, Austin, TX 73301" -275029,USB-C Charging Cable,1,11.95,10/14/19 11:42,"646 13th St, New York City, NY 10001" -275029,AA Batteries (4-pack),1,3.84,10/14/19 11:42,"646 13th St, New York City, NY 10001" -275030,Bose SoundSport Headphones,1,99.99,10/10/19 20:00,"155 5th St, Austin, TX 73301" -275031,AA Batteries (4-pack),2,3.84,10/04/19 16:08,"288 Ridge St, San Francisco, CA 94016" -275032,Google Phone,1,600,10/13/19 12:34,"47 Washington St, Portland, OR 97035" -275032,Wired Headphones,1,11.99,10/13/19 12:34,"47 Washington St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -275033,AA Batteries (4-pack),1,3.84,10/13/19 00:39,"384 Lakeview St, San Francisco, CA 94016" -275034,34in Ultrawide Monitor,1,379.99,10/16/19 10:27,"976 Forest St, San Francisco, CA 94016" -275035,Wired Headphones,1,11.99,10/24/19 13:18,"601 Jackson St, Los Angeles, CA 90001" -275036,Lightning Charging Cable,1,14.95,10/08/19 07:32,"933 South St, Dallas, TX 75001" -275037,Flatscreen TV,1,300,10/06/19 13:31,"992 1st St, San Francisco, CA 94016" -275038,Bose SoundSport Headphones,1,99.99,10/05/19 18:47,"111 13th St, New York City, NY 10001" -275039,Apple Airpods Headphones,1,150,10/18/19 14:46,"178 7th St, San Francisco, CA 94016" -275040,Wired Headphones,2,11.99,10/01/19 17:14,"485 5th St, Dallas, TX 75001" -275041,20in Monitor,1,109.99,10/02/19 16:40,"31 Cherry St, New York City, NY 10001" -275042,AAA Batteries (4-pack),1,2.99,10/13/19 20:32,"111 Church St, Los Angeles, CA 90001" -275043,Flatscreen TV,1,300,10/15/19 19:06,"920 Maple St, Boston, MA 02215" -275044,20in Monitor,1,109.99,10/14/19 20:30,"200 7th St, Boston, MA 02215" -275045,27in 4K Gaming Monitor,1,389.99,10/27/19 22:20,"568 Sunset St, Los Angeles, CA 90001" -275046,AAA Batteries (4-pack),1,2.99,10/14/19 08:14,"987 7th St, Atlanta, GA 30301" -275047,Lightning Charging Cable,1,14.95,10/10/19 09:36,"354 Wilson St, Los Angeles, CA 90001" -275048,Macbook Pro Laptop,1,1700,10/17/19 14:26,"764 Center St, Portland, OR 97035" -275049,27in FHD Monitor,1,149.99,10/12/19 11:58,"327 11th St, Los Angeles, CA 90001" -275050,USB-C Charging Cable,2,11.95,10/01/19 09:34,"244 Main St, Los Angeles, CA 90001" -275051,Apple Airpods Headphones,1,150,10/05/19 21:22,"151 Willow St, San Francisco, CA 94016" -275052,Macbook Pro Laptop,1,1700,10/23/19 20:04,"37 Center St, New York City, NY 10001" -275053,27in 4K Gaming Monitor,1,389.99,10/02/19 18:41,"767 Pine St, Seattle, WA 98101" -275054,AAA Batteries (4-pack),1,2.99,10/17/19 06:41,"473 Main St, Boston, MA 02215" -275055,Flatscreen TV,1,300,10/15/19 06:15,"154 Lake St, San Francisco, CA 94016" -275056,Wired Headphones,1,11.99,10/21/19 13:59,"937 5th St, Boston, MA 02215" -275057,AAA Batteries (4-pack),5,2.99,10/02/19 08:24,"368 Forest St, Los Angeles, CA 90001" -275058,Bose SoundSport Headphones,1,99.99,10/12/19 04:17,"417 Center St, San Francisco, CA 94016" -275059,Google Phone,1,600,10/02/19 15:03,"439 Cedar St, Boston, MA 02215" -275060,USB-C Charging Cable,1,11.95,10/25/19 21:32,"910 Chestnut St, San Francisco, CA 94016" -275061,34in Ultrawide Monitor,1,379.99,10/29/19 18:57,"739 Center St, New York City, NY 10001" -275062,27in FHD Monitor,1,149.99,10/03/19 04:44,"654 11th St, Los Angeles, CA 90001" -275063,Lightning Charging Cable,1,14.95,10/02/19 11:17,"219 Dogwood St, Boston, MA 02215" -275064,20in Monitor,1,109.99,10/29/19 17:55,"301 Church St, Seattle, WA 98101" -275065,USB-C Charging Cable,1,11.95,10/30/19 09:22,"816 Dogwood St, Los Angeles, CA 90001" -275066,USB-C Charging Cable,1,11.95,10/29/19 17:45,"511 Church St, Boston, MA 02215" -275067,Macbook Pro Laptop,1,1700,10/17/19 05:33,"92 6th St, Seattle, WA 98101" -275068,Lightning Charging Cable,1,14.95,10/06/19 19:14,"493 River St, Los Angeles, CA 90001" -275069,AA Batteries (4-pack),1,3.84,10/15/19 18:07,"742 5th St, Portland, OR 97035" -275070,AA Batteries (4-pack),5,3.84,10/11/19 14:05,"894 Lakeview St, Boston, MA 02215" -275071,USB-C Charging Cable,1,11.95,10/09/19 23:05,"343 River St, New York City, NY 10001" -275072,AA Batteries (4-pack),1,3.84,10/29/19 22:45,"231 Lincoln St, Boston, MA 02215" -275073,34in Ultrawide Monitor,1,379.99,10/19/19 10:02,"466 River St, New York City, NY 10001" -275074,USB-C Charging Cable,1,11.95,10/15/19 16:31,"200 Johnson St, Atlanta, GA 30301" -275075,USB-C Charging Cable,1,11.95,10/23/19 12:54,"632 1st St, Los Angeles, CA 90001" -275076,Apple Airpods Headphones,1,150,10/29/19 06:00,"190 11th St, San Francisco, CA 94016" -275077,Google Phone,1,600,10/23/19 14:15,"91 Adams St, San Francisco, CA 94016" -275078,AAA Batteries (4-pack),1,2.99,10/27/19 09:21,"816 Maple St, Los Angeles, CA 90001" -275079,USB-C Charging Cable,1,11.95,10/06/19 18:35,"620 12th St, Atlanta, GA 30301" -275080,27in FHD Monitor,1,149.99,10/31/19 00:18,"47 Cherry St, Austin, TX 73301" -275081,34in Ultrawide Monitor,1,379.99,10/14/19 17:30,"273 Elm St, San Francisco, CA 94016" -275082,27in FHD Monitor,1,149.99,10/24/19 19:44,"109 Willow St, San Francisco, CA 94016" -275082,AA Batteries (4-pack),4,3.84,10/24/19 19:44,"109 Willow St, San Francisco, CA 94016" -275083,AA Batteries (4-pack),1,3.84,10/10/19 12:56,"133 Lake St, Seattle, WA 98101" -275084,Lightning Charging Cable,1,14.95,10/30/19 05:03,"512 Lake St, Portland, OR 97035" -275085,27in 4K Gaming Monitor,1,389.99,10/18/19 17:38,"11 Highland St, Los Angeles, CA 90001" -275086,34in Ultrawide Monitor,1,379.99,10/11/19 20:39,"66 Lakeview St, New York City, NY 10001" -275087,27in FHD Monitor,1,149.99,10/05/19 21:08,"673 5th St, Seattle, WA 98101" -275088,Bose SoundSport Headphones,1,99.99,10/20/19 15:02,"625 Sunset St, Los Angeles, CA 90001" -275089,34in Ultrawide Monitor,1,379.99,10/14/19 00:03,"334 Maple St, Atlanta, GA 30301" -275090,ThinkPad Laptop,1,999.99,10/06/19 12:07,"723 2nd St, Los Angeles, CA 90001" -275091,AAA Batteries (4-pack),1,2.99,10/23/19 12:33,"327 5th St, Los Angeles, CA 90001" -275092,Lightning Charging Cable,1,14.95,10/14/19 09:36,"971 Highland St, Seattle, WA 98101" -275093,AA Batteries (4-pack),2,3.84,10/04/19 13:41,"855 Hickory St, San Francisco, CA 94016" -275094,Wired Headphones,1,11.99,10/17/19 18:12,"490 14th St, San Francisco, CA 94016" -275095,Apple Airpods Headphones,1,150,10/15/19 09:24,"972 Cedar St, San Francisco, CA 94016" -275096,34in Ultrawide Monitor,1,379.99,10/23/19 21:09,"113 Adams St, Portland, OR 97035" -275097,ThinkPad Laptop,1,999.99,10/10/19 11:27,"436 Cedar St, New York City, NY 10001" -275098,Lightning Charging Cable,1,14.95,10/19/19 21:09,"855 8th St, Dallas, TX 75001" -275099,Apple Airpods Headphones,1,150,10/05/19 18:01,"800 14th St, Austin, TX 73301" -275100,iPhone,1,700,10/14/19 19:33,"178 Willow St, Atlanta, GA 30301" -275101,AAA Batteries (4-pack),1,2.99,10/13/19 16:06,"815 Park St, Los Angeles, CA 90001" -275102,iPhone,1,700,10/25/19 08:03,"294 Main St, Boston, MA 02215" -275103,AAA Batteries (4-pack),1,2.99,10/22/19 01:22,"583 7th St, San Francisco, CA 94016" -275104,Wired Headphones,1,11.99,10/14/19 15:02,"142 Center St, Seattle, WA 98101" -275105,iPhone,1,700,10/14/19 04:06,"474 Spruce St, San Francisco, CA 94016" -275106,Lightning Charging Cable,1,14.95,10/07/19 09:14,"768 River St, San Francisco, CA 94016" -275107,Lightning Charging Cable,1,14.95,10/02/19 12:16,"497 Cherry St, San Francisco, CA 94016" -275108,Google Phone,1,600,10/19/19 11:21,"889 Maple St, Seattle, WA 98101" -275109,AAA Batteries (4-pack),2,2.99,10/21/19 01:01,"148 River St, Atlanta, GA 30301" -275110,Lightning Charging Cable,1,14.95,10/30/19 13:38,"793 9th St, San Francisco, CA 94016" -275111,iPhone,1,700,10/19/19 18:59,"762 5th St, San Francisco, CA 94016" -275112,27in 4K Gaming Monitor,1,389.99,10/13/19 12:13,"997 Ridge St, New York City, NY 10001" -275113,Lightning Charging Cable,2,14.95,10/29/19 19:55,"328 Johnson St, New York City, NY 10001" -275114,Wired Headphones,1,11.99,10/19/19 06:14,"532 Meadow St, San Francisco, CA 94016" -275115,ThinkPad Laptop,1,999.99,10/10/19 17:06,"556 Chestnut St, New York City, NY 10001" -275116,Apple Airpods Headphones,1,150,10/15/19 13:08,"692 Wilson St, New York City, NY 10001" -275117,Wired Headphones,1,11.99,10/21/19 23:24,"373 11th St, New York City, NY 10001" -275118,ThinkPad Laptop,1,999.99,10/28/19 16:04,"125 1st St, Seattle, WA 98101" -275119,Bose SoundSport Headphones,1,99.99,10/12/19 13:37,"58 12th St, San Francisco, CA 94016" -275120,AA Batteries (4-pack),1,3.84,10/26/19 17:27,"722 Main St, Boston, MA 02215" -275121,AAA Batteries (4-pack),1,2.99,10/03/19 16:49,"888 Cherry St, New York City, NY 10001" -275122,USB-C Charging Cable,1,11.95,10/20/19 21:00,"616 9th St, Austin, TX 73301" -275123,Lightning Charging Cable,1,14.95,10/01/19 08:48,"817 Cedar St, Seattle, WA 98101" -275124,USB-C Charging Cable,1,11.95,10/20/19 19:51,"230 Jefferson St, New York City, NY 10001" -275125,AAA Batteries (4-pack),3,2.99,10/31/19 19:48,"349 7th St, Dallas, TX 75001" -275126,AAA Batteries (4-pack),2,2.99,10/05/19 16:43,"883 Washington St, Los Angeles, CA 90001" -275127,27in 4K Gaming Monitor,1,389.99,10/11/19 15:04,"899 12th St, Los Angeles, CA 90001" -275128,AA Batteries (4-pack),1,3.84,10/15/19 22:19,"92 Johnson St, Atlanta, GA 30301" -275129,Wired Headphones,1,11.99,10/17/19 12:51,"465 Cedar St, Los Angeles, CA 90001" -275130,Flatscreen TV,1,300,10/26/19 21:05,"181 Cherry St, New York City, NY 10001" -275131,ThinkPad Laptop,1,999.99,10/27/19 13:02,"683 Hill St, San Francisco, CA 94016" -275132,AAA Batteries (4-pack),1,2.99,10/17/19 20:37,"654 West St, Boston, MA 02215" -275133,Wired Headphones,1,11.99,10/20/19 14:24,"18 Chestnut St, New York City, NY 10001" -275134,27in 4K Gaming Monitor,1,389.99,10/04/19 15:03,"245 Hill St, Atlanta, GA 30301" -275135,Lightning Charging Cable,1,14.95,10/25/19 19:58,"129 1st St, Seattle, WA 98101" -275136,Wired Headphones,1,11.99,10/03/19 16:18,"295 Pine St, Atlanta, GA 30301" -275137,Bose SoundSport Headphones,1,99.99,10/19/19 12:49,"709 Hickory St, San Francisco, CA 94016" -275138,27in FHD Monitor,1,149.99,10/22/19 13:05,"688 Chestnut St, San Francisco, CA 94016" -275139,Apple Airpods Headphones,1,150,10/05/19 09:22,"172 5th St, Dallas, TX 75001" -275140,27in FHD Monitor,1,149.99,10/23/19 20:54,"282 Hickory St, San Francisco, CA 94016" -275141,Wired Headphones,1,11.99,10/13/19 14:57,"150 4th St, Dallas, TX 75001" -275142,USB-C Charging Cable,1,11.95,10/15/19 20:24,"20 Chestnut St, Dallas, TX 75001" -275143,Wired Headphones,1,11.99,10/10/19 13:44,"318 Sunset St, Los Angeles, CA 90001" -275144,LG Dryer,1,600.0,10/01/19 17:28,"214 7th St, Los Angeles, CA 90001" -275145,Lightning Charging Cable,1,14.95,10/27/19 16:48,"727 Washington St, Seattle, WA 98101" -275146,Lightning Charging Cable,2,14.95,10/19/19 06:57,"90 13th St, Dallas, TX 75001" -275147,27in FHD Monitor,1,149.99,10/19/19 22:14,"915 Elm St, New York City, NY 10001" -275148,Google Phone,1,600,10/25/19 21:37,"341 4th St, Boston, MA 02215" -275149,Bose SoundSport Headphones,1,99.99,10/30/19 22:37,"370 Madison St, San Francisco, CA 94016" -275150,Wired Headphones,1,11.99,10/13/19 14:38,"88 5th St, San Francisco, CA 94016" -275151,AA Batteries (4-pack),2,3.84,10/08/19 17:54,"878 Cedar St, San Francisco, CA 94016" -275152,Bose SoundSport Headphones,1,99.99,10/27/19 17:50,"145 5th St, Austin, TX 73301" -275153,Wired Headphones,1,11.99,10/08/19 20:49,"42 Chestnut St, Los Angeles, CA 90001" -275154,Apple Airpods Headphones,1,150,10/04/19 13:21,"65 Sunset St, Atlanta, GA 30301" -275155,AAA Batteries (4-pack),1,2.99,10/27/19 20:27,"547 Hill St, Austin, TX 73301" -275156,iPhone,1,700,10/05/19 11:44,"168 13th St, Austin, TX 73301" -275157,AA Batteries (4-pack),2,3.84,10/21/19 12:26,"887 5th St, Atlanta, GA 30301" -275158,AA Batteries (4-pack),1,3.84,10/07/19 23:14,"566 Spruce St, Dallas, TX 75001" -275159,USB-C Charging Cable,1,11.95,10/27/19 00:37,"540 Washington St, Boston, MA 02215" -275160,Bose SoundSport Headphones,1,99.99,10/01/19 13:41,"376 Church St, Los Angeles, CA 90001" -275161,USB-C Charging Cable,1,11.95,10/04/19 08:07,"374 Church St, New York City, NY 10001" -275162,Lightning Charging Cable,1,14.95,10/14/19 12:01,"141 Meadow St, Atlanta, GA 30301" -275163,USB-C Charging Cable,1,11.95,10/28/19 21:51,"804 8th St, Austin, TX 73301" -275164,Google Phone,1,600,10/24/19 20:25,"250 4th St, San Francisco, CA 94016" -275164,USB-C Charging Cable,1,11.95,10/24/19 20:25,"250 4th St, San Francisco, CA 94016" -275165,Wired Headphones,1,11.99,10/07/19 17:54,"866 Cedar St, San Francisco, CA 94016" -275166,Lightning Charging Cable,1,14.95,10/25/19 17:42,"515 12th St, Los Angeles, CA 90001" -275167,Vareebadd Phone,1,400,10/08/19 19:58,"402 Willow St, Portland, OR 97035" -275168,27in FHD Monitor,1,149.99,10/22/19 11:15,"907 Highland St, Boston, MA 02215" -275169,AA Batteries (4-pack),1,3.84,10/18/19 20:21,"86 14th St, Los Angeles, CA 90001" -275170,iPhone,1,700,10/30/19 21:58,"96 Pine St, San Francisco, CA 94016" -275170,Lightning Charging Cable,1,14.95,10/30/19 21:58,"96 Pine St, San Francisco, CA 94016" -275171,AAA Batteries (4-pack),1,2.99,10/12/19 17:44,"418 Ridge St, New York City, NY 10001" -275172,AA Batteries (4-pack),3,3.84,10/09/19 18:38,"433 8th St, Boston, MA 02215" -275173,ThinkPad Laptop,1,999.99,10/20/19 11:20,"328 South St, Dallas, TX 75001" -275174,Lightning Charging Cable,1,14.95,10/10/19 13:45,"978 Meadow St, Portland, OR 97035" -275175,Wired Headphones,1,11.99,10/29/19 19:47,"588 Dogwood St, Portland, OR 97035" -275176,AA Batteries (4-pack),1,3.84,10/12/19 20:53,"247 Cedar St, Portland, OR 97035" -275177,USB-C Charging Cable,1,11.95,10/27/19 05:28,"824 Maple St, Los Angeles, CA 90001" -275178,Lightning Charging Cable,1,14.95,10/07/19 20:33,"185 Washington St, Los Angeles, CA 90001" -275179,AA Batteries (4-pack),2,3.84,10/22/19 16:08,"605 Adams St, Boston, MA 02215" -275180,Apple Airpods Headphones,1,150,10/07/19 19:55,"336 11th St, San Francisco, CA 94016" -275181,Bose SoundSport Headphones,1,99.99,10/04/19 12:23,"768 Lincoln St, Austin, TX 73301" -275182,Flatscreen TV,1,300,10/05/19 14:29,"952 Hickory St, Portland, OR 97035" -275183,Macbook Pro Laptop,1,1700,10/25/19 12:52,"561 Elm St, New York City, NY 10001" -275184,Flatscreen TV,1,300,10/31/19 16:52,"524 Cedar St, Los Angeles, CA 90001" -275185,Lightning Charging Cable,1,14.95,10/25/19 18:01,"368 Washington St, Los Angeles, CA 90001" -275186,Wired Headphones,1,11.99,10/15/19 20:27,"818 Center St, San Francisco, CA 94016" -275187,AAA Batteries (4-pack),1,2.99,10/13/19 16:26,"335 13th St, San Francisco, CA 94016" -275188,ThinkPad Laptop,1,999.99,10/22/19 16:43,"231 River St, Austin, TX 73301" -275189,Flatscreen TV,1,300,10/31/19 23:50,"668 9th St, New York City, NY 10001" -275190,Apple Airpods Headphones,1,150,10/31/19 20:23,"659 Main St, Los Angeles, CA 90001" -275191,AA Batteries (4-pack),1,3.84,10/18/19 20:01,"869 Highland St, Portland, OR 97035" -275192,27in 4K Gaming Monitor,1,389.99,10/05/19 18:15,"448 4th St, Boston, MA 02215" -275193,ThinkPad Laptop,1,999.99,10/13/19 07:50,"657 Jackson St, Atlanta, GA 30301" -275194,Bose SoundSport Headphones,1,99.99,10/08/19 11:21,"475 Dogwood St, Los Angeles, CA 90001" -275195,Apple Airpods Headphones,1,150,10/23/19 16:44,"447 River St, Dallas, TX 75001" -275196,AAA Batteries (4-pack),2,2.99,10/04/19 16:57,"399 5th St, New York City, NY 10001" -275197,LG Washing Machine,1,600.0,10/23/19 22:52,"899 11th St, New York City, NY 10001" -275198,Lightning Charging Cable,2,14.95,10/18/19 21:33,"560 Adams St, Atlanta, GA 30301" -275199,Google Phone,1,600,10/10/19 23:45,"321 Sunset St, Portland, OR 97035" -275199,USB-C Charging Cable,1,11.95,10/10/19 23:45,"321 Sunset St, Portland, OR 97035" -275200,Bose SoundSport Headphones,1,99.99,10/13/19 21:35,"711 Jackson St, Boston, MA 02215" -275201,AAA Batteries (4-pack),2,2.99,11/01/19 00:47,"859 Jefferson St, New York City, NY 10001" -275202,AA Batteries (4-pack),2,3.84,10/30/19 21:27,"430 Hill St, Los Angeles, CA 90001" -275203,Lightning Charging Cable,1,14.95,10/15/19 21:33,"764 Adams St, Los Angeles, CA 90001" -275204,Lightning Charging Cable,1,14.95,10/28/19 19:47,"714 Cedar St, Los Angeles, CA 90001" -275205,AAA Batteries (4-pack),1,2.99,10/19/19 13:51,"531 Jefferson St, Los Angeles, CA 90001" -275206,Vareebadd Phone,1,400,10/19/19 14:05,"836 Meadow St, Los Angeles, CA 90001" -275206,USB-C Charging Cable,1,11.95,10/19/19 14:05,"836 Meadow St, Los Angeles, CA 90001" -275207,ThinkPad Laptop,1,999.99,10/06/19 10:55,"100 7th St, San Francisco, CA 94016" -275208,27in FHD Monitor,1,149.99,10/26/19 09:44,"354 Elm St, Los Angeles, CA 90001" -275209,Bose SoundSport Headphones,1,99.99,10/29/19 06:20,"934 Center St, Dallas, TX 75001" -275210,20in Monitor,1,109.99,10/23/19 12:13,"678 Walnut St, Dallas, TX 75001" -275211,Lightning Charging Cable,1,14.95,10/24/19 01:21,"971 Madison St, San Francisco, CA 94016" -275212,34in Ultrawide Monitor,1,379.99,10/12/19 23:59,"68 Walnut St, New York City, NY 10001" -275213,AA Batteries (4-pack),1,3.84,10/10/19 17:23,"164 Jefferson St, San Francisco, CA 94016" -275214,AAA Batteries (4-pack),1,2.99,10/06/19 16:22,"678 5th St, Seattle, WA 98101" -275215,AAA Batteries (4-pack),1,2.99,10/09/19 06:47,"429 Lake St, San Francisco, CA 94016" -275216,USB-C Charging Cable,1,11.95,10/03/19 00:08,"261 Willow St, Dallas, TX 75001" -275217,Flatscreen TV,1,300,10/22/19 20:35,"983 Jackson St, Boston, MA 02215" -275218,Lightning Charging Cable,1,14.95,10/15/19 19:48,"558 Park St, New York City, NY 10001" -275219,Lightning Charging Cable,1,14.95,10/28/19 21:51,"279 Cedar St, New York City, NY 10001" -275220,Google Phone,1,600,10/25/19 19:01,"380 Ridge St, New York City, NY 10001" -275221,AAA Batteries (4-pack),1,2.99,10/23/19 16:31,"794 4th St, New York City, NY 10001" -275222,Lightning Charging Cable,1,14.95,10/09/19 19:29,"550 Dogwood St, Atlanta, GA 30301" -275223,27in FHD Monitor,1,149.99,10/16/19 17:23,"658 Maple St, San Francisco, CA 94016" -275224,Google Phone,1,600,10/27/19 07:29,"150 7th St, Austin, TX 73301" -275224,USB-C Charging Cable,1,11.95,10/27/19 07:29,"150 7th St, Austin, TX 73301" -275225,Bose SoundSport Headphones,1,99.99,10/26/19 20:00,"621 Johnson St, Dallas, TX 75001" -275226,AA Batteries (4-pack),1,3.84,10/09/19 16:58,"405 Lincoln St, New York City, NY 10001" -275227,AA Batteries (4-pack),1,3.84,10/12/19 09:25,"26 Walnut St, Boston, MA 02215" -275228,USB-C Charging Cable,1,11.95,10/23/19 11:26,"501 7th St, San Francisco, CA 94016" -275229,Lightning Charging Cable,1,14.95,10/23/19 10:21,"718 Wilson St, Seattle, WA 98101" -275230,27in 4K Gaming Monitor,1,389.99,10/12/19 00:40,"255 7th St, New York City, NY 10001" -275231,AA Batteries (4-pack),1,3.84,10/26/19 13:02,"624 Adams St, New York City, NY 10001" -275232,Wired Headphones,1,11.99,10/15/19 19:21,"617 Center St, Los Angeles, CA 90001" -275233,Bose SoundSport Headphones,1,99.99,10/11/19 21:55,"87 Willow St, Atlanta, GA 30301" -275234,AA Batteries (4-pack),1,3.84,10/02/19 23:11,"29 5th St, New York City, NY 10001" -275235,34in Ultrawide Monitor,1,379.99,10/08/19 18:54,"728 Sunset St, New York City, NY 10001" -275236,USB-C Charging Cable,1,11.95,10/07/19 08:20,"317 Johnson St, Seattle, WA 98101" -275237,AA Batteries (4-pack),1,3.84,10/08/19 18:18,"725 12th St, Los Angeles, CA 90001" -275238,Google Phone,1,600,10/24/19 14:04,"88 11th St, Los Angeles, CA 90001" -275239,34in Ultrawide Monitor,1,379.99,10/10/19 14:31,"453 Maple St, New York City, NY 10001" -275240,USB-C Charging Cable,1,11.95,10/30/19 21:29,"983 Sunset St, Atlanta, GA 30301" -275241,Lightning Charging Cable,1,14.95,10/03/19 17:07,"970 14th St, Seattle, WA 98101" -275242,27in 4K Gaming Monitor,1,389.99,10/04/19 13:41,"250 2nd St, San Francisco, CA 94016" -275243,34in Ultrawide Monitor,1,379.99,10/15/19 13:28,"686 2nd St, Los Angeles, CA 90001" -275244,Bose SoundSport Headphones,1,99.99,10/26/19 14:15,"304 Wilson St, Los Angeles, CA 90001" -275245,27in FHD Monitor,1,149.99,10/01/19 07:46,"945 Ridge St, Seattle, WA 98101" -275246,Macbook Pro Laptop,1,1700,10/11/19 14:48,"193 Washington St, Boston, MA 02215" -275247,iPhone,1,700,10/04/19 21:23,"962 Johnson St, Austin, TX 73301" -275248,Wired Headphones,1,11.99,10/23/19 17:59,"119 Park St, New York City, NY 10001" -275249,AAA Batteries (4-pack),2,2.99,10/23/19 15:30,"315 Jackson St, San Francisco, CA 94016" -275250,USB-C Charging Cable,1,11.95,10/04/19 22:06,"21 Chestnut St, Seattle, WA 98101" -275251,27in FHD Monitor,1,149.99,10/28/19 12:08,"397 Pine St, Dallas, TX 75001" -275252,34in Ultrawide Monitor,1,379.99,10/08/19 17:29,"727 Cedar St, San Francisco, CA 94016" -275253,AAA Batteries (4-pack),2,2.99,10/25/19 20:12,"976 Meadow St, San Francisco, CA 94016" -275254,iPhone,1,700,10/03/19 09:48,"247 River St, Seattle, WA 98101" -275255,AA Batteries (4-pack),1,3.84,10/29/19 10:12,"795 Washington St, Portland, OR 97035" -275256,Apple Airpods Headphones,1,150,10/02/19 11:27,"274 Spruce St, Dallas, TX 75001" -275257,AA Batteries (4-pack),1,3.84,10/12/19 20:13,"193 Madison St, Los Angeles, CA 90001" -275258,27in 4K Gaming Monitor,1,389.99,10/11/19 02:04,"328 1st St, Atlanta, GA 30301" -275259,AA Batteries (4-pack),1,3.84,10/25/19 19:54,"94 Lake St, New York City, NY 10001" -275260,Apple Airpods Headphones,1,150,10/12/19 18:02,"983 Forest St, San Francisco, CA 94016" -275261,Flatscreen TV,1,300,10/15/19 22:14,"303 Cherry St, Boston, MA 02215" -275262,Wired Headphones,1,11.99,10/26/19 23:10,"679 River St, Los Angeles, CA 90001" -275263,AAA Batteries (4-pack),1,2.99,10/27/19 09:01,"942 Highland St, San Francisco, CA 94016" -275264,Apple Airpods Headphones,1,150,10/24/19 16:57,"264 10th St, San Francisco, CA 94016" -275265,AA Batteries (4-pack),1,3.84,10/26/19 14:20,"918 10th St, Dallas, TX 75001" -275266,USB-C Charging Cable,1,11.95,10/11/19 20:28,"612 Adams St, Atlanta, GA 30301" -275267,Bose SoundSport Headphones,1,99.99,10/05/19 21:02,"697 2nd St, San Francisco, CA 94016" -275268,AA Batteries (4-pack),1,3.84,10/12/19 23:13,"419 8th St, Portland, ME 04101" -275269,Apple Airpods Headphones,1,150,10/05/19 13:22,"230 Center St, Atlanta, GA 30301" -275270,Apple Airpods Headphones,1,150,10/15/19 22:55,"362 Hickory St, San Francisco, CA 94016" -275271,Apple Airpods Headphones,1,150,10/02/19 20:04,"691 14th St, Boston, MA 02215" -275272,34in Ultrawide Monitor,1,379.99,10/30/19 14:16,"616 Lakeview St, New York City, NY 10001" -275273,Lightning Charging Cable,1,14.95,10/06/19 18:15,"457 Hickory St, Dallas, TX 75001" -275274,AA Batteries (4-pack),1,3.84,10/25/19 19:29,"932 Adams St, New York City, NY 10001" -275275,iPhone,1,700,10/15/19 10:09,"752 Highland St, San Francisco, CA 94016" -275276,AA Batteries (4-pack),1,3.84,10/24/19 09:43,"588 River St, New York City, NY 10001" -275277,iPhone,1,700,10/26/19 10:13,"176 10th St, Seattle, WA 98101" -275278,AA Batteries (4-pack),1,3.84,10/07/19 19:03,"479 6th St, Portland, OR 97035" -275279,AA Batteries (4-pack),1,3.84,10/28/19 15:39,"269 Church St, San Francisco, CA 94016" -275280,27in FHD Monitor,1,149.99,10/11/19 13:42,"26 6th St, San Francisco, CA 94016" -275281,AA Batteries (4-pack),1,3.84,10/31/19 21:01,"413 Ridge St, Seattle, WA 98101" -275282,Apple Airpods Headphones,1,150,10/08/19 07:07,"713 1st St, Los Angeles, CA 90001" -275283,Macbook Pro Laptop,1,1700,10/22/19 14:10,"112 Walnut St, Los Angeles, CA 90001" -275284,AA Batteries (4-pack),2,3.84,10/28/19 15:06,"572 Lake St, Seattle, WA 98101" -275285,iPhone,1,700,10/09/19 16:56,"642 8th St, Los Angeles, CA 90001" -275286,Apple Airpods Headphones,1,150,10/08/19 23:33,"346 Willow St, Boston, MA 02215" -275287,Macbook Pro Laptop,1,1700,10/25/19 14:10,"45 Madison St, Los Angeles, CA 90001" -275288,Apple Airpods Headphones,1,150,10/03/19 16:01,"806 Highland St, Boston, MA 02215" -275289,Google Phone,1,600,10/29/19 18:24,"656 Church St, Atlanta, GA 30301" -275290,Bose SoundSport Headphones,1,99.99,10/10/19 15:14,"855 Adams St, Boston, MA 02215" -275291,Macbook Pro Laptop,1,1700,10/18/19 11:14,"39 Hickory St, San Francisco, CA 94016" -275292,Bose SoundSport Headphones,1,99.99,10/07/19 09:49,"240 Elm St, Los Angeles, CA 90001" -275293,AAA Batteries (4-pack),1,2.99,10/09/19 13:47,"286 Jefferson St, Los Angeles, CA 90001" -275294,LG Washing Machine,1,600.0,10/08/19 12:48,"257 12th St, San Francisco, CA 94016" -275295,AAA Batteries (4-pack),2,2.99,10/09/19 12:19,"75 Jackson St, Dallas, TX 75001" -275296,Google Phone,1,600,10/06/19 11:21,"50 Sunset St, San Francisco, CA 94016" -275296,Bose SoundSport Headphones,1,99.99,10/06/19 11:21,"50 Sunset St, San Francisco, CA 94016" -275297,AAA Batteries (4-pack),1,2.99,10/19/19 16:35,"558 Chestnut St, Portland, OR 97035" -275298,Lightning Charging Cable,1,14.95,10/31/19 23:31,"253 2nd St, San Francisco, CA 94016" -275299,Lightning Charging Cable,1,14.95,10/20/19 10:27,"474 13th St, San Francisco, CA 94016" -275300,Apple Airpods Headphones,1,150,10/19/19 07:52,"332 Spruce St, Portland, OR 97035" -275301,Apple Airpods Headphones,1,150,10/06/19 19:46,"349 Johnson St, San Francisco, CA 94016" -275302,iPhone,1,700,10/06/19 18:41,"932 8th St, San Francisco, CA 94016" -275303,20in Monitor,1,109.99,10/19/19 14:57,"867 10th St, San Francisco, CA 94016" -275304,AA Batteries (4-pack),2,3.84,10/16/19 10:40,"992 6th St, Portland, ME 04101" -275305,Lightning Charging Cable,1,14.95,10/12/19 16:26,"565 Sunset St, Dallas, TX 75001" -275306,USB-C Charging Cable,1,11.95,10/14/19 10:51,"271 Chestnut St, Los Angeles, CA 90001" -275307,Lightning Charging Cable,1,14.95,10/31/19 19:13,"129 Dogwood St, New York City, NY 10001" -275308,AA Batteries (4-pack),2,3.84,10/18/19 19:24,"809 8th St, Los Angeles, CA 90001" -275309,USB-C Charging Cable,1,11.95,10/01/19 20:18,"665 Elm St, Portland, OR 97035" -275310,34in Ultrawide Monitor,1,379.99,10/16/19 21:42,"675 Hickory St, San Francisco, CA 94016" -275311,Flatscreen TV,1,300,10/03/19 18:04,"771 Johnson St, New York City, NY 10001" -275312,USB-C Charging Cable,1,11.95,10/16/19 09:16,"93 Meadow St, Los Angeles, CA 90001" -275313,USB-C Charging Cable,1,11.95,10/13/19 17:19,"402 4th St, Boston, MA 02215" -275314,Flatscreen TV,1,300,10/23/19 13:16,"273 Pine St, Atlanta, GA 30301" -275315,Bose SoundSport Headphones,1,99.99,10/05/19 12:13,"752 Meadow St, Boston, MA 02215" -275316,USB-C Charging Cable,1,11.95,10/18/19 12:51,"571 Lakeview St, Dallas, TX 75001" -275317,AAA Batteries (4-pack),2,2.99,10/27/19 11:16,"760 South St, Los Angeles, CA 90001" -275318,Wired Headphones,1,11.99,10/20/19 16:42,"338 Johnson St, Los Angeles, CA 90001" -275319,USB-C Charging Cable,1,11.95,10/13/19 12:22,"347 2nd St, Portland, OR 97035" -275320,USB-C Charging Cable,1,11.95,10/02/19 19:24,"883 6th St, San Francisco, CA 94016" -275321,USB-C Charging Cable,1,11.95,10/16/19 14:05,"709 1st St, Seattle, WA 98101" -275322,Apple Airpods Headphones,1,150,10/17/19 15:20,"253 Lake St, Boston, MA 02215" -275323,Apple Airpods Headphones,1,150,10/12/19 11:12,"655 14th St, New York City, NY 10001" -275324,USB-C Charging Cable,1,11.95,10/11/19 10:25,"586 Lakeview St, Atlanta, GA 30301" -275325,AA Batteries (4-pack),1,3.84,10/30/19 15:34,"184 Lincoln St, Austin, TX 73301" -275326,Macbook Pro Laptop,1,1700,10/19/19 20:45,"517 7th St, San Francisco, CA 94016" -275327,AAA Batteries (4-pack),1,2.99,10/25/19 07:05,"259 6th St, San Francisco, CA 94016" -275328,27in 4K Gaming Monitor,1,389.99,10/30/19 13:22,"726 Willow St, New York City, NY 10001" -275329,Wired Headphones,1,11.99,10/24/19 21:09,"75 Elm St, Los Angeles, CA 90001" -275330,34in Ultrawide Monitor,1,379.99,10/14/19 02:53,"343 6th St, Seattle, WA 98101" -275331,Lightning Charging Cable,1,14.95,10/08/19 21:48,"230 Cherry St, San Francisco, CA 94016" -275332,Flatscreen TV,1,300,10/27/19 10:09,"512 Madison St, Austin, TX 73301" -275333,Bose SoundSport Headphones,1,99.99,10/14/19 20:39,"107 Elm St, San Francisco, CA 94016" -275334,Lightning Charging Cable,1,14.95,10/06/19 23:52,"543 Lincoln St, Los Angeles, CA 90001" -275335,USB-C Charging Cable,1,11.95,10/30/19 11:49,"315 North St, Seattle, WA 98101" -275336,USB-C Charging Cable,1,11.95,10/29/19 12:31,"61 West St, San Francisco, CA 94016" -275337,Apple Airpods Headphones,1,150,10/02/19 14:06,"245 2nd St, Dallas, TX 75001" -275338,AAA Batteries (4-pack),3,2.99,10/10/19 21:12,"157 Madison St, Los Angeles, CA 90001" -275339,Lightning Charging Cable,1,14.95,10/11/19 18:45,"374 Lake St, Seattle, WA 98101" -275340,Apple Airpods Headphones,1,150,10/23/19 21:08,"692 13th St, Los Angeles, CA 90001" -275341,27in 4K Gaming Monitor,1,389.99,10/25/19 19:57,"349 Lincoln St, Dallas, TX 75001" -275342,Lightning Charging Cable,1,14.95,10/19/19 16:48,"738 West St, San Francisco, CA 94016" -275343,Wired Headphones,1,11.99,10/23/19 21:20,"28 Wilson St, Atlanta, GA 30301" -275344,Bose SoundSport Headphones,1,99.99,10/05/19 23:28,"5 Highland St, San Francisco, CA 94016" -275345,Apple Airpods Headphones,1,150,10/06/19 20:42,"559 9th St, Los Angeles, CA 90001" -275346,USB-C Charging Cable,1,11.95,10/20/19 12:38,"57 12th St, Seattle, WA 98101" -275347,USB-C Charging Cable,1,11.95,10/22/19 11:12,"535 12th St, San Francisco, CA 94016" -275348,Lightning Charging Cable,1,14.95,10/20/19 10:50,"132 River St, Seattle, WA 98101" -275348,USB-C Charging Cable,1,11.95,10/20/19 10:50,"132 River St, Seattle, WA 98101" -275349,AAA Batteries (4-pack),1,2.99,10/03/19 11:05,"831 Jefferson St, Dallas, TX 75001" -275350,USB-C Charging Cable,1,11.95,10/02/19 17:10,"623 5th St, San Francisco, CA 94016" -275351,AAA Batteries (4-pack),1,2.99,10/08/19 12:44,"287 Lakeview St, Boston, MA 02215" -275352,AA Batteries (4-pack),1,3.84,10/25/19 12:12,"822 Wilson St, Los Angeles, CA 90001" -275353,Bose SoundSport Headphones,1,99.99,10/12/19 00:45,"15 Johnson St, San Francisco, CA 94016" -275354,Bose SoundSport Headphones,1,99.99,10/10/19 22:59,"927 Main St, Los Angeles, CA 90001" -275355,Wired Headphones,1,11.99,10/12/19 10:12,"832 1st St, San Francisco, CA 94016" -275356,USB-C Charging Cable,1,11.95,10/25/19 16:56,"853 River St, Boston, MA 02215" -275357,USB-C Charging Cable,1,11.95,10/05/19 08:49,"142 4th St, Los Angeles, CA 90001" -275358,USB-C Charging Cable,1,11.95,10/13/19 15:06,"596 Hickory St, Portland, OR 97035" -275359,AA Batteries (4-pack),1,3.84,10/15/19 05:18,"413 Pine St, New York City, NY 10001" -275360,Apple Airpods Headphones,1,150,10/11/19 12:24,"646 Park St, Portland, ME 04101" -275361,Lightning Charging Cable,1,14.95,10/18/19 16:37,"258 Dogwood St, Boston, MA 02215" -275362,iPhone,1,700,10/12/19 20:42,"479 9th St, Portland, OR 97035" -275363,Google Phone,1,600,10/01/19 07:59,"696 Highland St, New York City, NY 10001" -275364,AAA Batteries (4-pack),3,2.99,10/26/19 14:14,"796 1st St, Los Angeles, CA 90001" -275364,Lightning Charging Cable,1,14.95,10/26/19 14:14,"796 1st St, Los Angeles, CA 90001" -275365,Lightning Charging Cable,1,14.95,10/23/19 09:53,"369 Washington St, Seattle, WA 98101" -275366,Apple Airpods Headphones,1,150,10/21/19 10:31,"313 North St, Dallas, TX 75001" -275367,Bose SoundSport Headphones,1,99.99,10/08/19 19:04,"627 4th St, Atlanta, GA 30301" -275368,AAA Batteries (4-pack),1,2.99,10/29/19 13:21,"665 North St, New York City, NY 10001" -275369,20in Monitor,1,109.99,10/24/19 16:15,"177 Ridge St, Boston, MA 02215" -275370,Macbook Pro Laptop,1,1700,10/08/19 22:25,"888 Spruce St, Austin, TX 73301" -275371,USB-C Charging Cable,1,11.95,10/03/19 18:31,"425 Center St, Boston, MA 02215" -275372,AAA Batteries (4-pack),4,2.99,10/30/19 11:16,"687 Maple St, Los Angeles, CA 90001" -275373,Google Phone,1,600,10/31/19 14:36,"725 Dogwood St, Portland, OR 97035" -275373,Lightning Charging Cable,1,14.95,10/31/19 14:36,"725 Dogwood St, Portland, OR 97035" -275374,AAA Batteries (4-pack),1,2.99,10/28/19 20:26,"517 Meadow St, San Francisco, CA 94016" -275375,Lightning Charging Cable,1,14.95,10/30/19 12:46,"129 Sunset St, Boston, MA 02215" -275376,USB-C Charging Cable,1,11.95,10/04/19 21:00,"710 6th St, Los Angeles, CA 90001" -275377,ThinkPad Laptop,1,999.99,10/28/19 21:55,"468 8th St, Dallas, TX 75001" -275378,Bose SoundSport Headphones,1,99.99,10/10/19 12:30,"829 Washington St, New York City, NY 10001" -275379,iPhone,1,700,10/04/19 14:27,"66 Cedar St, San Francisco, CA 94016" -275380,Bose SoundSport Headphones,1,99.99,10/23/19 09:34,"353 Center St, New York City, NY 10001" -275381,ThinkPad Laptop,1,999.99,10/01/19 11:03,"198 1st St, San Francisco, CA 94016" -275382,27in 4K Gaming Monitor,1,389.99,10/24/19 17:25,"576 7th St, Los Angeles, CA 90001" -275383,27in 4K Gaming Monitor,1,389.99,10/06/19 16:33,"18 Chestnut St, New York City, NY 10001" -275384,Macbook Pro Laptop,1,1700,10/05/19 15:00,"610 14th St, Los Angeles, CA 90001" -275385,AA Batteries (4-pack),2,3.84,10/30/19 14:09,"169 Lincoln St, San Francisco, CA 94016" -275386,Vareebadd Phone,1,400,10/22/19 15:34,"911 Main St, Dallas, TX 75001" -275387,27in FHD Monitor,1,149.99,10/17/19 16:04,"75 Main St, Dallas, TX 75001" -275388,Wired Headphones,1,11.99,10/28/19 07:54,"512 6th St, Los Angeles, CA 90001" -275389,AA Batteries (4-pack),1,3.84,10/12/19 14:53,"404 Elm St, Atlanta, GA 30301" -275390,Bose SoundSport Headphones,1,99.99,10/25/19 12:02,"59 North St, Los Angeles, CA 90001" -275391,Lightning Charging Cable,2,14.95,10/03/19 10:36,"539 Lake St, New York City, NY 10001" -275392,Flatscreen TV,1,300,10/16/19 20:02,"972 Wilson St, San Francisco, CA 94016" -275393,AA Batteries (4-pack),3,3.84,10/19/19 11:51,"705 South St, Dallas, TX 75001" -275394,34in Ultrawide Monitor,1,379.99,10/05/19 09:51,"147 Jefferson St, New York City, NY 10001" -275395,Wired Headphones,1,11.99,10/09/19 14:28,"50 Church St, San Francisco, CA 94016" -275396,USB-C Charging Cable,1,11.95,10/05/19 05:36,"648 Jackson St, San Francisco, CA 94016" -275397,AAA Batteries (4-pack),1,2.99,10/02/19 23:32,"23 Maple St, Austin, TX 73301" -275398,ThinkPad Laptop,1,999.99,10/25/19 07:24,"111 4th St, Seattle, WA 98101" -275399,27in FHD Monitor,1,149.99,10/20/19 12:34,"134 Forest St, New York City, NY 10001" -275400,AAA Batteries (4-pack),4,2.99,10/19/19 23:53,"510 West St, Los Angeles, CA 90001" -275401,AA Batteries (4-pack),1,3.84,10/06/19 12:33,"706 Hill St, San Francisco, CA 94016" -275402,Lightning Charging Cable,1,14.95,10/28/19 17:58,"122 Cherry St, Austin, TX 73301" -275403,USB-C Charging Cable,2,11.95,10/06/19 19:37,"53 Maple St, Atlanta, GA 30301" -275404,AA Batteries (4-pack),1,3.84,10/05/19 22:31,"759 2nd St, Los Angeles, CA 90001" -275405,Apple Airpods Headphones,1,150,10/17/19 15:21,"599 Church St, Los Angeles, CA 90001" -275406,AA Batteries (4-pack),1,3.84,10/23/19 21:28,"385 Meadow St, Los Angeles, CA 90001" -275407,Flatscreen TV,1,300,10/26/19 10:29,"965 Chestnut St, San Francisco, CA 94016" -275408,27in FHD Monitor,1,149.99,10/14/19 08:56,"186 Adams St, San Francisco, CA 94016" -275409,USB-C Charging Cable,1,11.95,10/16/19 14:28,"185 Cedar St, Portland, OR 97035" -275410,AAA Batteries (4-pack),1,2.99,10/24/19 22:57,"289 West St, San Francisco, CA 94016" -275411,AA Batteries (4-pack),1,3.84,10/14/19 20:35,"784 9th St, Los Angeles, CA 90001" -275412,Wired Headphones,1,11.99,10/22/19 17:49,"897 5th St, Los Angeles, CA 90001" -275413,20in Monitor,1,109.99,10/20/19 11:38,"976 Elm St, Boston, MA 02215" -275414,Macbook Pro Laptop,1,1700,10/06/19 16:54,"475 4th St, San Francisco, CA 94016" -275415,AA Batteries (4-pack),1,3.84,10/11/19 12:21,"970 River St, Los Angeles, CA 90001" -275416,USB-C Charging Cable,1,11.95,10/20/19 10:32,"160 6th St, Portland, OR 97035" -275417,Wired Headphones,2,11.99,10/31/19 15:35,"746 Church St, Boston, MA 02215" -275418,Apple Airpods Headphones,1,150,10/05/19 15:21,"895 6th St, New York City, NY 10001" -275418,Wired Headphones,1,11.99,10/05/19 15:21,"895 6th St, New York City, NY 10001" -275419,20in Monitor,1,109.99,10/30/19 12:09,"728 Lake St, San Francisco, CA 94016" -275420,Lightning Charging Cable,1,14.95,10/17/19 16:20,"975 Jackson St, Boston, MA 02215" -275421,iPhone,1,700,10/02/19 11:36,"815 10th St, New York City, NY 10001" -275422,Bose SoundSport Headphones,1,99.99,10/08/19 12:45,"734 5th St, Boston, MA 02215" -275423,27in 4K Gaming Monitor,1,389.99,10/04/19 15:45,"38 Ridge St, Atlanta, GA 30301" -275424,Apple Airpods Headphones,1,150,10/09/19 16:45,"126 Johnson St, New York City, NY 10001" -275425,Wired Headphones,1,11.99,10/20/19 13:14,"995 Church St, Dallas, TX 75001" -275426,AAA Batteries (4-pack),1,2.99,10/11/19 05:29,"167 6th St, Dallas, TX 75001" -275427,34in Ultrawide Monitor,1,379.99,10/26/19 12:54,"154 10th St, Dallas, TX 75001" -275428,Macbook Pro Laptop,1,1700,10/28/19 17:07,"392 2nd St, Seattle, WA 98101" -275429,Flatscreen TV,1,300,10/30/19 20:29,"703 5th St, Portland, OR 97035" -275430,Google Phone,1,600,10/04/19 06:16,"367 North St, San Francisco, CA 94016" -275431,USB-C Charging Cable,1,11.95,10/10/19 22:00,"168 Washington St, San Francisco, CA 94016" -275432,AA Batteries (4-pack),1,3.84,10/02/19 11:39,"65 North St, Los Angeles, CA 90001" -275433,Apple Airpods Headphones,1,150,10/27/19 08:01,"410 Willow St, Los Angeles, CA 90001" -275434,AAA Batteries (4-pack),1,2.99,10/27/19 12:58,"194 4th St, Dallas, TX 75001" -275435,34in Ultrawide Monitor,1,379.99,10/25/19 17:51,"852 Park St, Atlanta, GA 30301" -275436,USB-C Charging Cable,1,11.95,10/31/19 12:07,"757 Highland St, Portland, ME 04101" -275437,USB-C Charging Cable,1,11.95,10/20/19 12:48,"785 Spruce St, Portland, OR 97035" -275438,AAA Batteries (4-pack),2,2.99,10/13/19 22:06,"575 8th St, New York City, NY 10001" -275439,AA Batteries (4-pack),3,3.84,10/25/19 11:54,"133 Park St, Seattle, WA 98101" -275440,Lightning Charging Cable,1,14.95,10/10/19 15:20,"854 Jackson St, New York City, NY 10001" -275441,AA Batteries (4-pack),1,3.84,10/03/19 22:39,"158 Hill St, San Francisco, CA 94016" -275442,Lightning Charging Cable,1,14.95,10/23/19 22:05,"635 Ridge St, San Francisco, CA 94016" -275443,Bose SoundSport Headphones,1,99.99,10/10/19 17:44,"547 North St, Boston, MA 02215" -275444,34in Ultrawide Monitor,1,379.99,10/09/19 05:46,"435 Lake St, Los Angeles, CA 90001" -275445,34in Ultrawide Monitor,1,379.99,10/06/19 22:36,"282 Meadow St, Portland, OR 97035" -275446,Bose SoundSport Headphones,1,99.99,10/31/19 11:41,"750 Church St, Los Angeles, CA 90001" -275447,Lightning Charging Cable,1,14.95,10/19/19 10:19,"155 Willow St, Austin, TX 73301" -275448,Lightning Charging Cable,1,14.95,10/31/19 15:55,"724 Spruce St, Dallas, TX 75001" -275449,USB-C Charging Cable,1,11.95,10/28/19 11:49,"726 10th St, New York City, NY 10001" -275450,iPhone,1,700,10/01/19 05:20,"337 North St, Dallas, TX 75001" -275451,Macbook Pro Laptop,1,1700,10/29/19 21:35,"164 Madison St, New York City, NY 10001" -275452,Bose SoundSport Headphones,1,99.99,10/19/19 14:48,"699 Forest St, Seattle, WA 98101" -275453,27in 4K Gaming Monitor,1,389.99,10/10/19 21:15,"486 Adams St, Dallas, TX 75001" -275454,Google Phone,1,600,10/19/19 22:25,"900 River St, Portland, OR 97035" -275455,20in Monitor,1,109.99,10/01/19 12:22,"739 9th St, San Francisco, CA 94016" -275456,AA Batteries (4-pack),1,3.84,10/27/19 20:01,"796 14th St, Los Angeles, CA 90001" -275456,iPhone,1,700,10/27/19 20:01,"796 14th St, Los Angeles, CA 90001" -275457,Macbook Pro Laptop,1,1700,10/15/19 09:44,"710 8th St, Portland, ME 04101" -275458,AA Batteries (4-pack),1,3.84,10/21/19 15:14,"293 Wilson St, San Francisco, CA 94016" -275459,USB-C Charging Cable,1,11.95,10/20/19 06:27,"396 Spruce St, Atlanta, GA 30301" -275460,AA Batteries (4-pack),1,3.84,10/08/19 14:08,"673 Jefferson St, Boston, MA 02215" -275461,Lightning Charging Cable,1,14.95,10/20/19 08:48,"698 Center St, Atlanta, GA 30301" -275462,Wired Headphones,1,11.99,10/07/19 15:21,"557 12th St, Los Angeles, CA 90001" -275463,34in Ultrawide Monitor,1,379.99,10/18/19 11:32,"229 Jackson St, New York City, NY 10001" -275463,USB-C Charging Cable,1,11.95,10/18/19 11:32,"229 Jackson St, New York City, NY 10001" -275464,AA Batteries (4-pack),1,3.84,10/02/19 11:23,"869 Cherry St, Boston, MA 02215" -275465,27in 4K Gaming Monitor,1,389.99,10/16/19 08:53,"211 Elm St, San Francisco, CA 94016" -275466,AAA Batteries (4-pack),1,2.99,10/12/19 15:25,"858 Hill St, Portland, ME 04101" -275467,Lightning Charging Cable,1,14.95,10/16/19 19:04,"984 8th St, San Francisco, CA 94016" -275468,USB-C Charging Cable,1,11.95,10/25/19 15:32,"503 Cherry St, New York City, NY 10001" -275469,Lightning Charging Cable,1,14.95,10/30/19 14:58,"129 West St, Portland, OR 97035" -275470,AAA Batteries (4-pack),2,2.99,10/30/19 00:15,"601 Hill St, Boston, MA 02215" -275471,LG Washing Machine,1,600.0,10/09/19 09:35,"962 Chestnut St, Boston, MA 02215" -275472,USB-C Charging Cable,2,11.95,10/08/19 15:48,"385 Adams St, Atlanta, GA 30301" -275473,Bose SoundSport Headphones,1,99.99,10/29/19 22:36,"574 Jefferson St, Boston, MA 02215" -275474,iPhone,1,700,10/01/19 10:14,"554 Jefferson St, Austin, TX 73301" -275474,Wired Headphones,1,11.99,10/01/19 10:14,"554 Jefferson St, Austin, TX 73301" -275475,USB-C Charging Cable,2,11.95,10/18/19 18:56,"505 Ridge St, Los Angeles, CA 90001" -275476,Wired Headphones,1,11.99,10/09/19 22:20,"925 Center St, San Francisco, CA 94016" -275477,Wired Headphones,1,11.99,10/21/19 09:55,"145 11th St, Atlanta, GA 30301" -275478,Wired Headphones,1,11.99,10/06/19 14:36,"385 Walnut St, Seattle, WA 98101" -275479,Flatscreen TV,1,300,10/23/19 01:06,"657 Sunset St, Dallas, TX 75001" -275480,Lightning Charging Cable,1,14.95,10/30/19 21:05,"943 6th St, New York City, NY 10001" -275481,AAA Batteries (4-pack),1,2.99,10/28/19 00:08,"27 Cherry St, Boston, MA 02215" -275482,34in Ultrawide Monitor,1,379.99,10/11/19 23:11,"358 Jackson St, New York City, NY 10001" -275483,Vareebadd Phone,1,400,10/09/19 17:53,"523 Highland St, Portland, OR 97035" -275484,20in Monitor,1,109.99,10/27/19 12:10,"311 River St, Los Angeles, CA 90001" -275485,Wired Headphones,1,11.99,10/09/19 17:29,"448 Dogwood St, Los Angeles, CA 90001" -275486,27in 4K Gaming Monitor,1,389.99,10/30/19 09:21,"847 Johnson St, Boston, MA 02215" -275487,AAA Batteries (4-pack),1,2.99,10/20/19 06:01,"217 Dogwood St, New York City, NY 10001" -275488,Lightning Charging Cable,1,14.95,10/09/19 12:42,"815 Church St, Seattle, WA 98101" -275489,20in Monitor,1,109.99,10/20/19 11:51,"515 Cedar St, Boston, MA 02215" -275490,Google Phone,1,600,10/18/19 16:29,"546 Highland St, San Francisco, CA 94016" -275490,USB-C Charging Cable,4,11.95,10/18/19 16:29,"546 Highland St, San Francisco, CA 94016" -275491,Apple Airpods Headphones,1,150,10/26/19 10:29,"62 Hickory St, New York City, NY 10001" -275492,AAA Batteries (4-pack),1,2.99,10/17/19 14:10,"418 13th St, Los Angeles, CA 90001" -275493,USB-C Charging Cable,1,11.95,10/11/19 17:52,"72 7th St, Boston, MA 02215" -275494,Google Phone,1,600,10/28/19 16:39,"915 Forest St, Atlanta, GA 30301" -275495,Apple Airpods Headphones,1,150,10/10/19 18:05,"402 Madison St, Atlanta, GA 30301" -275496,USB-C Charging Cable,1,11.95,10/22/19 12:21,"635 5th St, Austin, TX 73301" -275497,Flatscreen TV,1,300,10/10/19 21:34,"881 West St, Boston, MA 02215" -275498,AAA Batteries (4-pack),1,2.99,10/26/19 09:25,"487 Meadow St, San Francisco, CA 94016" -275499,AAA Batteries (4-pack),1,2.99,10/05/19 14:36,"4 Forest St, San Francisco, CA 94016" -275500,34in Ultrawide Monitor,1,379.99,10/08/19 19:26,"734 Lakeview St, New York City, NY 10001" -275501,27in 4K Gaming Monitor,1,389.99,10/28/19 10:56,"528 Adams St, Boston, MA 02215" -275502,20in Monitor,1,109.99,10/25/19 19:26,"747 12th St, Boston, MA 02215" -275503,27in 4K Gaming Monitor,1,389.99,10/10/19 13:02,"360 10th St, Los Angeles, CA 90001" -275504,AA Batteries (4-pack),2,3.84,10/30/19 11:56,"110 Dogwood St, San Francisco, CA 94016" -275505,27in 4K Gaming Monitor,1,389.99,10/20/19 20:30,"710 Lake St, Seattle, WA 98101" -275506,USB-C Charging Cable,2,11.95,10/31/19 12:32,"825 Cedar St, Seattle, WA 98101" -275507,Lightning Charging Cable,1,14.95,10/02/19 17:01,"235 River St, Los Angeles, CA 90001" -275508,Wired Headphones,1,11.99,10/04/19 17:44,"41 Pine St, New York City, NY 10001" -275509,20in Monitor,1,109.99,10/17/19 18:41,"45 North St, Dallas, TX 75001" -275510,AAA Batteries (4-pack),2,2.99,10/07/19 12:00,"55 9th St, San Francisco, CA 94016" -275511,Apple Airpods Headphones,1,150,10/13/19 18:35,"732 12th St, San Francisco, CA 94016" -275512,Bose SoundSport Headphones,1,99.99,10/24/19 06:04,"680 4th St, San Francisco, CA 94016" -275513,AAA Batteries (4-pack),2,2.99,10/19/19 18:22,"308 River St, Seattle, WA 98101" -275514,Apple Airpods Headphones,1,150,10/06/19 12:33,"639 Center St, Los Angeles, CA 90001" -275515,Flatscreen TV,1,300,10/28/19 19:36,"643 Main St, New York City, NY 10001" -275516,AAA Batteries (4-pack),1,2.99,10/05/19 12:29,"516 Ridge St, Los Angeles, CA 90001" -275517,AA Batteries (4-pack),1,3.84,10/15/19 16:40,"271 12th St, Dallas, TX 75001" -275518,AA Batteries (4-pack),1,3.84,10/12/19 08:48,"48 10th St, San Francisco, CA 94016" -275519,Bose SoundSport Headphones,1,99.99,10/05/19 21:00,"148 Spruce St, Boston, MA 02215" -275520,ThinkPad Laptop,1,999.99,10/29/19 11:32,"979 9th St, Portland, OR 97035" -275521,Lightning Charging Cable,1,14.95,10/12/19 21:11,"602 Church St, Los Angeles, CA 90001" -275522,Lightning Charging Cable,2,14.95,10/13/19 19:27,"350 9th St, Boston, MA 02215" -275523,USB-C Charging Cable,1,11.95,10/03/19 20:24,"518 14th St, San Francisco, CA 94016" -275524,AA Batteries (4-pack),1,3.84,10/22/19 15:17,"146 Madison St, New York City, NY 10001" -275525,AAA Batteries (4-pack),1,2.99,10/13/19 13:00,"565 Lakeview St, Seattle, WA 98101" -275526,Lightning Charging Cable,1,14.95,10/18/19 09:59,"258 Madison St, Atlanta, GA 30301" -275527,AA Batteries (4-pack),2,3.84,10/10/19 20:14,"848 14th St, Austin, TX 73301" -275528,AA Batteries (4-pack),1,3.84,10/14/19 14:22,"938 Sunset St, Boston, MA 02215" -275529,Lightning Charging Cable,1,14.95,10/03/19 22:35,"423 Adams St, New York City, NY 10001" -275530,27in FHD Monitor,1,149.99,10/30/19 19:14,"23 12th St, Los Angeles, CA 90001" -275531,Apple Airpods Headphones,1,150,10/31/19 09:06,"35 Dogwood St, Austin, TX 73301" -275532,Google Phone,1,600,10/17/19 18:24,"393 Church St, San Francisco, CA 94016" -275533,Wired Headphones,1,11.99,10/29/19 00:15,"104 2nd St, San Francisco, CA 94016" -275534,USB-C Charging Cable,1,11.95,10/04/19 11:41,"305 6th St, Los Angeles, CA 90001" -275535,Flatscreen TV,1,300,10/14/19 00:57,"905 Lakeview St, San Francisco, CA 94016" -275536,Lightning Charging Cable,1,14.95,10/25/19 06:45,"373 South St, Portland, OR 97035" -275537,Wired Headphones,1,11.99,10/20/19 22:20,"774 Pine St, San Francisco, CA 94016" -275538,Wired Headphones,1,11.99,10/20/19 16:05,"579 Willow St, Atlanta, GA 30301" -275539,Lightning Charging Cable,1,14.95,10/27/19 18:12,"615 River St, New York City, NY 10001" -275540,20in Monitor,1,109.99,10/27/19 17:27,"310 1st St, Los Angeles, CA 90001" -275541,Macbook Pro Laptop,1,1700,10/29/19 21:45,"320 Ridge St, Los Angeles, CA 90001" -275542,AAA Batteries (4-pack),1,2.99,10/02/19 12:34,"899 West St, Atlanta, GA 30301" -275543,AAA Batteries (4-pack),2,2.99,10/02/19 21:48,"629 Pine St, San Francisco, CA 94016" -275544,AAA Batteries (4-pack),2,2.99,10/20/19 16:52,"324 Spruce St, Austin, TX 73301" -275545,Google Phone,1,600,10/20/19 15:46,"592 Park St, New York City, NY 10001" -275545,USB-C Charging Cable,1,11.95,10/20/19 15:46,"592 Park St, New York City, NY 10001" -275545,Wired Headphones,1,11.99,10/20/19 15:46,"592 Park St, New York City, NY 10001" -275546,USB-C Charging Cable,2,11.95,11/01/19 02:38,"571 North St, Seattle, WA 98101" -275547,Bose SoundSport Headphones,1,99.99,10/05/19 00:21,"367 Dogwood St, Boston, MA 02215" -275548,USB-C Charging Cable,1,11.95,10/04/19 06:37,"665 River St, Atlanta, GA 30301" -275549,AAA Batteries (4-pack),1,2.99,10/14/19 20:22,"664 Park St, Boston, MA 02215" -275550,27in 4K Gaming Monitor,1,389.99,10/18/19 18:16,"901 Jackson St, San Francisco, CA 94016" -275551,27in FHD Monitor,1,149.99,10/10/19 15:06,"810 Hill St, Los Angeles, CA 90001" -275552,Flatscreen TV,1,300,10/04/19 08:51,"940 14th St, San Francisco, CA 94016" -275553,Lightning Charging Cable,1,14.95,10/01/19 11:21,"402 Adams St, Boston, MA 02215" -275554,iPhone,1,700,10/05/19 17:17,"773 7th St, Atlanta, GA 30301" -275554,Wired Headphones,1,11.99,10/05/19 17:17,"773 7th St, Atlanta, GA 30301" -275555,Apple Airpods Headphones,1,150,10/24/19 01:13,"652 7th St, Los Angeles, CA 90001" -275556,Lightning Charging Cable,1,14.95,10/14/19 07:12,"260 14th St, Austin, TX 73301" -275557,20in Monitor,1,109.99,10/09/19 21:51,"736 Johnson St, San Francisco, CA 94016" -275558,Wired Headphones,1,11.99,10/06/19 18:32,"262 Adams St, Los Angeles, CA 90001" -275559,Bose SoundSport Headphones,1,99.99,10/06/19 10:04,"326 2nd St, Atlanta, GA 30301" -275560,Lightning Charging Cable,1,14.95,10/29/19 16:08,"564 Jackson St, New York City, NY 10001" -275561,Apple Airpods Headphones,1,150,10/15/19 04:21,"883 Center St, Austin, TX 73301" -275562,34in Ultrawide Monitor,1,379.99,10/29/19 14:52,"877 Jefferson St, Dallas, TX 75001" -275563,Apple Airpods Headphones,1,150,10/03/19 10:57,"230 Hickory St, Boston, MA 02215" -275564,iPhone,1,700,10/30/19 02:07,"686 Chestnut St, San Francisco, CA 94016" -275565,Lightning Charging Cable,1,14.95,10/09/19 15:34,"881 Church St, San Francisco, CA 94016" -275565,34in Ultrawide Monitor,1,379.99,10/09/19 15:34,"881 Church St, San Francisco, CA 94016" -275566,USB-C Charging Cable,1,11.95,10/15/19 11:30,"682 12th St, San Francisco, CA 94016" -275567,AAA Batteries (4-pack),1,2.99,10/09/19 12:13,"136 Spruce St, New York City, NY 10001" -275568,Wired Headphones,1,11.99,10/31/19 12:28,"535 West St, Boston, MA 02215" -275569,AAA Batteries (4-pack),1,2.99,10/21/19 03:52,"1 Church St, New York City, NY 10001" -275570,USB-C Charging Cable,2,11.95,10/20/19 21:38,"521 West St, Los Angeles, CA 90001" -275571,AAA Batteries (4-pack),2,2.99,10/11/19 19:59,"256 Lincoln St, San Francisco, CA 94016" -275572,USB-C Charging Cable,1,11.95,10/19/19 23:46,"301 Adams St, Portland, OR 97035" -275573,Apple Airpods Headphones,1,150,10/10/19 11:20,"390 Elm St, Los Angeles, CA 90001" -275574,AAA Batteries (4-pack),2,2.99,10/27/19 12:03,"955 5th St, New York City, NY 10001" -275575,Lightning Charging Cable,1,14.95,10/03/19 19:25,"849 Cedar St, San Francisco, CA 94016" -275576,USB-C Charging Cable,1,11.95,10/15/19 13:16,"903 11th St, Los Angeles, CA 90001" -275577,iPhone,1,700,10/11/19 21:29,"181 Center St, Atlanta, GA 30301" -275578,Apple Airpods Headphones,1,150,10/22/19 09:44,"154 Walnut St, Atlanta, GA 30301" -275579,Vareebadd Phone,1,400,10/12/19 11:28,"132 Ridge St, Seattle, WA 98101" -275580,Flatscreen TV,1,300,10/01/19 22:17,"906 12th St, Seattle, WA 98101" -275581,USB-C Charging Cable,1,11.95,10/10/19 12:49,"671 1st St, San Francisco, CA 94016" -275582,Lightning Charging Cable,1,14.95,10/05/19 14:29,"205 Wilson St, Portland, OR 97035" -275583,AA Batteries (4-pack),1,3.84,10/11/19 08:32,"26 Sunset St, Los Angeles, CA 90001" -275584,27in 4K Gaming Monitor,1,389.99,10/23/19 17:43,"502 West St, San Francisco, CA 94016" -275585,Apple Airpods Headphones,1,150,10/22/19 20:07,"6 Park St, Seattle, WA 98101" -275586,Apple Airpods Headphones,1,150,10/02/19 16:09,"677 Walnut St, Atlanta, GA 30301" -275587,Wired Headphones,1,11.99,10/24/19 21:53,"533 Lakeview St, Los Angeles, CA 90001" -275588,AAA Batteries (4-pack),1,2.99,10/11/19 19:44,"848 Jefferson St, Los Angeles, CA 90001" -275589,AAA Batteries (4-pack),1,2.99,10/25/19 21:37,"411 Hill St, Los Angeles, CA 90001" -275590,USB-C Charging Cable,1,11.95,10/31/19 08:30,"362 12th St, San Francisco, CA 94016" -275591,Wired Headphones,1,11.99,10/07/19 09:04,"380 Ridge St, Boston, MA 02215" -275592,LG Washing Machine,1,600.0,10/31/19 19:36,"400 Sunset St, Los Angeles, CA 90001" -275593,20in Monitor,1,109.99,10/01/19 07:25,"51 Main St, Atlanta, GA 30301" -275594,AA Batteries (4-pack),1,3.84,10/15/19 00:57,"89 North St, New York City, NY 10001" -275595,Bose SoundSport Headphones,1,99.99,10/04/19 13:40,"108 Chestnut St, Boston, MA 02215" -275596,Lightning Charging Cable,1,14.95,10/15/19 23:23,"279 Jackson St, San Francisco, CA 94016" -275597,27in 4K Gaming Monitor,1,389.99,10/08/19 15:15,"922 Madison St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -275598,Lightning Charging Cable,1,14.95,10/19/19 17:22,"463 Spruce St, San Francisco, CA 94016" -275599,USB-C Charging Cable,1,11.95,10/21/19 08:36,"390 5th St, San Francisco, CA 94016" -275600,Bose SoundSport Headphones,1,99.99,10/08/19 20:52,"665 Main St, Dallas, TX 75001" -275601,Wired Headphones,1,11.99,10/07/19 12:06,"170 Wilson St, Boston, MA 02215" -275602,27in 4K Gaming Monitor,1,389.99,10/18/19 22:35,"635 Walnut St, Boston, MA 02215" -275603,AAA Batteries (4-pack),1,2.99,10/26/19 10:32,"588 2nd St, Atlanta, GA 30301" -275604,34in Ultrawide Monitor,1,379.99,10/14/19 19:45,"946 Hill St, San Francisco, CA 94016" -275605,USB-C Charging Cable,1,11.95,10/12/19 13:00,"556 6th St, New York City, NY 10001" -275606,Lightning Charging Cable,2,14.95,10/26/19 10:15,"697 11th St, Los Angeles, CA 90001" -275606,34in Ultrawide Monitor,1,379.99,10/26/19 10:15,"697 11th St, Los Angeles, CA 90001" -275607,AA Batteries (4-pack),1,3.84,10/14/19 19:49,"522 West St, Austin, TX 73301" -275608,AA Batteries (4-pack),1,3.84,10/11/19 14:05,"336 1st St, Dallas, TX 75001" -275609,27in FHD Monitor,1,149.99,10/15/19 20:36,"36 Hickory St, Portland, OR 97035" -275610,Bose SoundSport Headphones,1,99.99,10/28/19 10:35,"327 Lake St, Atlanta, GA 30301" -275611,Google Phone,1,600,10/01/19 12:32,"196 Jackson St, Portland, OR 97035" -275612,Bose SoundSport Headphones,1,99.99,10/12/19 23:34,"166 South St, New York City, NY 10001" -275613,Apple Airpods Headphones,1,150,10/25/19 14:11,"550 Walnut St, Atlanta, GA 30301" -275614,AA Batteries (4-pack),1,3.84,10/11/19 20:02,"783 West St, San Francisco, CA 94016" -275615,27in FHD Monitor,1,149.99,10/15/19 19:48,"762 South St, Portland, OR 97035" -275616,Lightning Charging Cable,1,14.95,10/06/19 06:06,"967 5th St, Boston, MA 02215" -275617,Bose SoundSport Headphones,1,99.99,10/31/19 13:55,"874 Dogwood St, New York City, NY 10001" -275618,Apple Airpods Headphones,2,150,10/26/19 20:29,"921 Cedar St, Los Angeles, CA 90001" -275619,Apple Airpods Headphones,1,150,10/31/19 19:07,"319 Spruce St, New York City, NY 10001" -275620,Lightning Charging Cable,1,14.95,10/05/19 19:42,"167 Madison St, New York City, NY 10001" -275621,iPhone,1,700,10/28/19 07:38,"430 Dogwood St, New York City, NY 10001" -275621,Apple Airpods Headphones,1,150,10/28/19 07:38,"430 Dogwood St, New York City, NY 10001" -275622,LG Dryer,1,600.0,10/07/19 10:32,"122 Wilson St, Los Angeles, CA 90001" -275623,AAA Batteries (4-pack),1,2.99,10/30/19 22:42,"124 9th St, San Francisco, CA 94016" -275624,Bose SoundSport Headphones,1,99.99,10/13/19 19:07,"585 River St, Atlanta, GA 30301" -275625,AAA Batteries (4-pack),1,2.99,10/18/19 12:31,"71 Jefferson St, Portland, ME 04101" -275626,Lightning Charging Cable,1,14.95,10/09/19 10:49,"54 Jackson St, New York City, NY 10001" -275627,27in 4K Gaming Monitor,1,389.99,10/24/19 10:44,"892 8th St, Dallas, TX 75001" -275627,Apple Airpods Headphones,1,150,10/24/19 10:44,"892 8th St, Dallas, TX 75001" -275628,AA Batteries (4-pack),1,3.84,10/18/19 17:55,"426 Jackson St, Dallas, TX 75001" -275629,Google Phone,1,600,10/05/19 03:38,"912 Hill St, Atlanta, GA 30301" -275630,Lightning Charging Cable,1,14.95,10/20/19 11:36,"462 Lakeview St, New York City, NY 10001" -275631,Flatscreen TV,1,300,10/01/19 18:32,"427 6th St, Dallas, TX 75001" -275632,Lightning Charging Cable,1,14.95,10/23/19 08:09,"444 Wilson St, Los Angeles, CA 90001" -275633,20in Monitor,1,109.99,10/02/19 13:48,"500 7th St, San Francisco, CA 94016" -275634,Wired Headphones,1,11.99,10/01/19 20:19,"355 5th St, Dallas, TX 75001" -275635,Lightning Charging Cable,1,14.95,10/19/19 04:47,"245 14th St, San Francisco, CA 94016" -275636,Lightning Charging Cable,2,14.95,10/04/19 18:49,"717 14th St, Boston, MA 02215" -275637,Wired Headphones,2,11.99,10/17/19 19:21,"657 Main St, Dallas, TX 75001" -275638,Google Phone,1,600,10/15/19 14:17,"689 Pine St, San Francisco, CA 94016" -275638,Wired Headphones,1,11.99,10/15/19 14:17,"689 Pine St, San Francisco, CA 94016" -275639,Lightning Charging Cable,1,14.95,10/20/19 17:55,"756 Madison St, Portland, OR 97035" -275640,Bose SoundSport Headphones,1,99.99,10/13/19 07:19,"912 Adams St, Portland, OR 97035" -275641,Apple Airpods Headphones,1,150,10/05/19 12:04,"877 Lakeview St, San Francisco, CA 94016" -275642,iPhone,1,700,10/24/19 10:39,"324 Madison St, San Francisco, CA 94016" -275642,Wired Headphones,1,11.99,10/24/19 10:39,"324 Madison St, San Francisco, CA 94016" -275643,Google Phone,1,600,10/29/19 19:48,"674 9th St, New York City, NY 10001" -275643,Bose SoundSport Headphones,1,99.99,10/29/19 19:48,"674 9th St, New York City, NY 10001" -275644,AAA Batteries (4-pack),1,2.99,10/11/19 10:01,"195 8th St, San Francisco, CA 94016" -275645,Flatscreen TV,1,300,10/26/19 21:18,"97 9th St, Los Angeles, CA 90001" -275646,Google Phone,1,600,10/04/19 17:57,"28 Jackson St, Boston, MA 02215" -275647,Wired Headphones,2,11.99,10/25/19 18:59,"983 Lakeview St, Atlanta, GA 30301" -275647,AA Batteries (4-pack),1,3.84,10/25/19 18:59,"983 Lakeview St, Atlanta, GA 30301" -275648,AA Batteries (4-pack),1,3.84,10/31/19 13:27,"659 Washington St, San Francisco, CA 94016" -275649,Lightning Charging Cable,2,14.95,10/29/19 15:11,"869 Cedar St, Boston, MA 02215" -275650,20in Monitor,1,109.99,10/27/19 20:36,"664 Chestnut St, New York City, NY 10001" -275651,AAA Batteries (4-pack),2,2.99,10/20/19 14:53,"33 River St, Boston, MA 02215" -275652,USB-C Charging Cable,1,11.95,10/27/19 09:48,"585 Forest St, Dallas, TX 75001" -275653,Bose SoundSport Headphones,1,99.99,10/30/19 11:29,"399 Maple St, New York City, NY 10001" -275654,Google Phone,1,600,10/30/19 23:53,"102 Lincoln St, Los Angeles, CA 90001" -275655,AAA Batteries (4-pack),1,2.99,10/21/19 08:29,"561 Willow St, Seattle, WA 98101" -275656,iPhone,1,700,10/27/19 14:06,"693 Maple St, New York City, NY 10001" -275657,Lightning Charging Cable,1,14.95,10/08/19 19:32,"108 Hickory St, Portland, OR 97035" -275658,Lightning Charging Cable,1,14.95,10/26/19 21:00,"851 North St, Los Angeles, CA 90001" -275659,Wired Headphones,1,11.99,10/27/19 10:28,"166 Cedar St, Seattle, WA 98101" -275660,AAA Batteries (4-pack),1,2.99,10/29/19 19:04,"620 11th St, Portland, OR 97035" -275661,Apple Airpods Headphones,1,150,10/07/19 17:29,"508 Madison St, Austin, TX 73301" -275662,AAA Batteries (4-pack),1,2.99,10/08/19 14:36,"507 Jackson St, San Francisco, CA 94016" -275663,Vareebadd Phone,1,400,10/04/19 22:24,"69 Cedar St, Atlanta, GA 30301" -275664,Wired Headphones,1,11.99,10/24/19 09:31,"494 Highland St, Boston, MA 02215" -275665,27in FHD Monitor,1,149.99,10/30/19 16:32,"629 Pine St, Austin, TX 73301" -275666,Bose SoundSport Headphones,1,99.99,10/05/19 09:37,"379 Elm St, Seattle, WA 98101" -275667,AAA Batteries (4-pack),2,2.99,10/26/19 19:34,"873 14th St, San Francisco, CA 94016" -275668,Flatscreen TV,1,300,10/26/19 16:04,"685 Cherry St, Atlanta, GA 30301" -275669,Wired Headphones,1,11.99,10/28/19 14:21,"836 Lakeview St, New York City, NY 10001" -275670,27in 4K Gaming Monitor,1,389.99,10/26/19 09:56,"491 Elm St, New York City, NY 10001" -275671,AA Batteries (4-pack),1,3.84,10/11/19 15:09,"152 Madison St, San Francisco, CA 94016" -275672,AA Batteries (4-pack),2,3.84,10/22/19 19:25,"588 8th St, Dallas, TX 75001" -275673,Lightning Charging Cable,1,14.95,10/30/19 18:48,"364 Hill St, Dallas, TX 75001" -275674,Apple Airpods Headphones,1,150,10/22/19 12:17,"513 6th St, San Francisco, CA 94016" -275675,Lightning Charging Cable,1,14.95,10/14/19 18:09,"159 West St, Los Angeles, CA 90001" -275676,iPhone,1,700,10/28/19 16:29,"657 Lakeview St, Los Angeles, CA 90001" -275677,AAA Batteries (4-pack),3,2.99,10/23/19 20:28,"845 7th St, Boston, MA 02215" -275678,Lightning Charging Cable,1,14.95,10/03/19 12:51,"276 Cedar St, Portland, ME 04101" -275679,Google Phone,1,600,10/02/19 12:56,"64 Maple St, San Francisco, CA 94016" -275680,USB-C Charging Cable,1,11.95,10/07/19 01:47,"650 Hickory St, Dallas, TX 75001" -275681,AA Batteries (4-pack),1,3.84,10/14/19 13:04,"905 13th St, Los Angeles, CA 90001" -275682,Bose SoundSport Headphones,1,99.99,10/02/19 21:36,"548 14th St, San Francisco, CA 94016" -275683,USB-C Charging Cable,2,11.95,10/12/19 20:53,"684 Lakeview St, Austin, TX 73301" -275684,Wired Headphones,1,11.99,10/24/19 18:35,"536 6th St, Seattle, WA 98101" -275685,20in Monitor,1,109.99,10/16/19 16:01,"672 Willow St, Boston, MA 02215" -275686,34in Ultrawide Monitor,1,379.99,10/25/19 23:42,"500 Jefferson St, New York City, NY 10001" -275686,Lightning Charging Cable,1,14.95,10/25/19 23:42,"500 Jefferson St, New York City, NY 10001" -275687,AAA Batteries (4-pack),1,2.99,10/25/19 12:22,"176 Center St, Los Angeles, CA 90001" -275688,27in 4K Gaming Monitor,1,389.99,10/29/19 20:15,"89 Church St, Portland, OR 97035" -275689,AA Batteries (4-pack),1,3.84,10/03/19 11:30,"496 West St, Seattle, WA 98101" -275690,ThinkPad Laptop,1,999.99,10/01/19 11:59,"721 Chestnut St, Dallas, TX 75001" -275691,USB-C Charging Cable,1,11.95,10/24/19 19:16,"259 2nd St, Los Angeles, CA 90001" -275692,AAA Batteries (4-pack),1,2.99,10/16/19 14:35,"976 River St, San Francisco, CA 94016" -275693,Lightning Charging Cable,1,14.95,10/27/19 20:55,"610 Park St, San Francisco, CA 94016" -275694,Lightning Charging Cable,1,14.95,10/02/19 10:53,"453 Pine St, New York City, NY 10001" -275695,Lightning Charging Cable,1,14.95,10/20/19 15:56,"274 Highland St, Seattle, WA 98101" -275696,AAA Batteries (4-pack),2,2.99,10/06/19 17:03,"191 Jackson St, San Francisco, CA 94016" -275697,USB-C Charging Cable,1,11.95,10/09/19 13:29,"648 Park St, San Francisco, CA 94016" -275698,AAA Batteries (4-pack),1,2.99,10/21/19 18:30,"184 12th St, San Francisco, CA 94016" -275699,USB-C Charging Cable,1,11.95,10/20/19 16:25,"385 9th St, Los Angeles, CA 90001" -275700,AA Batteries (4-pack),2,3.84,10/09/19 11:53,"328 North St, Seattle, WA 98101" -275701,34in Ultrawide Monitor,1,379.99,10/04/19 00:22,"116 10th St, New York City, NY 10001" -275702,Wired Headphones,1,11.99,10/18/19 16:54,"17 Elm St, Los Angeles, CA 90001" -275703,Apple Airpods Headphones,1,150,10/11/19 19:53,"867 2nd St, San Francisco, CA 94016" -275704,USB-C Charging Cable,1,11.95,10/16/19 09:27,"826 Highland St, Dallas, TX 75001" -275705,Wired Headphones,1,11.99,10/11/19 05:25,"820 5th St, San Francisco, CA 94016" -275705,20in Monitor,1,109.99,10/11/19 05:25,"820 5th St, San Francisco, CA 94016" -275706,USB-C Charging Cable,1,11.95,10/20/19 18:36,"394 Hill St, Seattle, WA 98101" -275707,27in FHD Monitor,1,149.99,10/07/19 12:09,"264 Meadow St, Boston, MA 02215" -275708,AAA Batteries (4-pack),1,2.99,10/01/19 13:41,"989 Hill St, Seattle, WA 98101" -275709,AAA Batteries (4-pack),1,2.99,10/28/19 00:40,"786 Center St, New York City, NY 10001" -275710,Macbook Pro Laptop,1,1700,10/23/19 13:18,"254 1st St, San Francisco, CA 94016" -275711,AAA Batteries (4-pack),1,2.99,10/30/19 18:55,"852 Lake St, San Francisco, CA 94016" -275712,Lightning Charging Cable,1,14.95,10/28/19 07:48,"179 Park St, New York City, NY 10001" -275713,Apple Airpods Headphones,1,150,10/27/19 14:31,"215 9th St, Atlanta, GA 30301" -275714,Macbook Pro Laptop,1,1700,10/19/19 19:43,"477 Hickory St, San Francisco, CA 94016" -275715,Apple Airpods Headphones,1,150,10/05/19 20:51,"221 1st St, San Francisco, CA 94016" -275716,Lightning Charging Cable,1,14.95,10/27/19 14:27,"800 West St, Seattle, WA 98101" -275717,USB-C Charging Cable,1,11.95,10/13/19 23:12,"827 Dogwood St, New York City, NY 10001" -275717,27in 4K Gaming Monitor,1,389.99,10/13/19 23:12,"827 Dogwood St, New York City, NY 10001" -275718,USB-C Charging Cable,1,11.95,10/28/19 11:09,"317 Elm St, New York City, NY 10001" -275719,USB-C Charging Cable,1,11.95,10/28/19 06:24,"636 Lincoln St, Los Angeles, CA 90001" -275720,27in 4K Gaming Monitor,1,389.99,10/12/19 12:40,"426 Willow St, New York City, NY 10001" -275721,USB-C Charging Cable,1,11.95,10/10/19 15:59,"499 Elm St, Los Angeles, CA 90001" -275722,Lightning Charging Cable,1,14.95,10/22/19 10:05,"813 Lincoln St, San Francisco, CA 94016" -275723,USB-C Charging Cable,1,11.95,10/11/19 09:28,"976 Jefferson St, Dallas, TX 75001" -275724,AA Batteries (4-pack),1,3.84,10/26/19 14:06,"964 2nd St, New York City, NY 10001" -275725,Google Phone,1,600,10/30/19 16:20,"695 Spruce St, San Francisco, CA 94016" -275726,Macbook Pro Laptop,1,1700,10/11/19 18:24,"256 Hill St, San Francisco, CA 94016" -275727,Lightning Charging Cable,1,14.95,10/14/19 13:13,"785 13th St, Austin, TX 73301" -275728,Apple Airpods Headphones,1,150,10/25/19 14:08,"605 Walnut St, Boston, MA 02215" -275729,Lightning Charging Cable,1,14.95,10/05/19 00:28,"679 Johnson St, Austin, TX 73301" -275730,AAA Batteries (4-pack),1,2.99,10/23/19 18:39,"385 7th St, Seattle, WA 98101" -275731,AAA Batteries (4-pack),1,2.99,10/05/19 10:18,"817 Spruce St, Atlanta, GA 30301" -275732,AAA Batteries (4-pack),1,2.99,10/14/19 23:48,"103 Church St, Los Angeles, CA 90001" -275733,Google Phone,1,600,10/25/19 15:04,"128 Sunset St, San Francisco, CA 94016" -275734,LG Dryer,1,600.0,10/30/19 18:09,"544 Highland St, Portland, OR 97035" -275735,USB-C Charging Cable,1,11.95,10/23/19 22:11,"9 Chestnut St, Dallas, TX 75001" -275736,USB-C Charging Cable,1,11.95,10/30/19 22:11,"768 5th St, Austin, TX 73301" -275737,AA Batteries (4-pack),1,3.84,10/28/19 00:23,"164 8th St, Los Angeles, CA 90001" -275738,Lightning Charging Cable,1,14.95,10/08/19 09:50,"334 Johnson St, Boston, MA 02215" -275739,USB-C Charging Cable,1,11.95,10/03/19 17:06,"192 Hickory St, New York City, NY 10001" -275740,USB-C Charging Cable,1,11.95,10/11/19 19:04,"185 Jefferson St, Boston, MA 02215" -275741,Lightning Charging Cable,1,14.95,10/28/19 12:47,"493 Pine St, San Francisco, CA 94016" -275742,Google Phone,1,600,10/08/19 15:36,"1 Dogwood St, New York City, NY 10001" -275743,Apple Airpods Headphones,1,150,10/04/19 15:41,"398 7th St, Boston, MA 02215" -275744,Lightning Charging Cable,1,14.95,10/09/19 21:38,"110 Park St, San Francisco, CA 94016" -275745,USB-C Charging Cable,2,11.95,10/06/19 14:57,"181 14th St, Dallas, TX 75001" -275746,AAA Batteries (4-pack),3,2.99,10/09/19 01:22,"322 Adams St, Portland, OR 97035" -275747,Wired Headphones,1,11.99,10/02/19 14:08,"775 Hickory St, San Francisco, CA 94016" -275748,27in 4K Gaming Monitor,1,389.99,10/28/19 16:50,"568 Wilson St, Atlanta, GA 30301" -275749,Macbook Pro Laptop,1,1700,10/22/19 00:19,"724 Meadow St, San Francisco, CA 94016" -275750,Lightning Charging Cable,1,14.95,10/24/19 14:10,"962 Spruce St, San Francisco, CA 94016" -275751,AA Batteries (4-pack),1,3.84,10/18/19 19:35,"34 Sunset St, Los Angeles, CA 90001" -275752,AAA Batteries (4-pack),1,2.99,10/03/19 18:23,"985 Adams St, Boston, MA 02215" -275753,AA Batteries (4-pack),1,3.84,10/21/19 14:58,"497 Ridge St, Los Angeles, CA 90001" -275754,Flatscreen TV,1,300,10/01/19 16:48,"998 7th St, Boston, MA 02215" -275755,USB-C Charging Cable,1,11.95,10/11/19 12:07,"309 Elm St, Dallas, TX 75001" -275756,Flatscreen TV,1,300,10/02/19 20:47,"410 Spruce St, Seattle, WA 98101" -275757,27in FHD Monitor,1,149.99,10/31/19 16:59,"912 West St, Boston, MA 02215" -275758,Lightning Charging Cable,1,14.95,10/17/19 19:20,"175 Hickory St, Portland, OR 97035" -275759,27in 4K Gaming Monitor,1,389.99,10/07/19 21:24,"665 West St, Boston, MA 02215" -275760,iPhone,1,700,10/27/19 13:04,"42 Church St, Seattle, WA 98101" -275760,Lightning Charging Cable,2,14.95,10/27/19 13:04,"42 Church St, Seattle, WA 98101" -275761,27in FHD Monitor,1,149.99,10/26/19 12:43,"598 Forest St, Los Angeles, CA 90001" -275762,Wired Headphones,1,11.99,10/08/19 10:56,"756 7th St, Portland, OR 97035" -275763,USB-C Charging Cable,1,11.95,10/24/19 13:26,"73 9th St, New York City, NY 10001" -275764,Wired Headphones,1,11.99,10/12/19 12:51,"219 1st St, New York City, NY 10001" -275765,AA Batteries (4-pack),1,3.84,10/19/19 22:30,"388 Johnson St, San Francisco, CA 94016" -275766,Lightning Charging Cable,1,14.95,10/15/19 11:51,"75 5th St, Boston, MA 02215" -275767,AAA Batteries (4-pack),3,2.99,10/13/19 10:15,"246 1st St, San Francisco, CA 94016" -275768,Bose SoundSport Headphones,1,99.99,10/02/19 10:54,"355 10th St, Portland, OR 97035" -275769,AA Batteries (4-pack),1,3.84,10/26/19 11:41,"350 9th St, Boston, MA 02215" -275770,Flatscreen TV,1,300,10/01/19 22:42,"327 Jefferson St, Boston, MA 02215" -275771,AA Batteries (4-pack),1,3.84,10/01/19 11:04,"969 Pine St, Los Angeles, CA 90001" -275772,AAA Batteries (4-pack),2,2.99,10/02/19 22:10,"352 Lake St, Los Angeles, CA 90001" -275773,Wired Headphones,1,11.99,10/16/19 21:24,"625 Lincoln St, Seattle, WA 98101" -275774,AA Batteries (4-pack),2,3.84,10/11/19 19:09,"122 5th St, Los Angeles, CA 90001" -275775,AAA Batteries (4-pack),1,2.99,10/15/19 16:28,"817 South St, Los Angeles, CA 90001" -275776,AA Batteries (4-pack),2,3.84,10/02/19 18:22,"974 1st St, San Francisco, CA 94016" -275777,USB-C Charging Cable,1,11.95,10/08/19 11:30,"197 Walnut St, New York City, NY 10001" -275778,AAA Batteries (4-pack),1,2.99,10/04/19 09:09,"119 Jackson St, Los Angeles, CA 90001" -275779,AA Batteries (4-pack),2,3.84,10/27/19 22:03,"569 10th St, New York City, NY 10001" -275780,Vareebadd Phone,1,400,10/19/19 06:29,"624 Madison St, New York City, NY 10001" -275780,USB-C Charging Cable,1,11.95,10/19/19 06:29,"624 Madison St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -275781,Lightning Charging Cable,1,14.95,10/12/19 02:49,"460 14th St, Atlanta, GA 30301" -275782,Vareebadd Phone,1,400,10/18/19 20:23,"927 Adams St, Boston, MA 02215" -275783,AAA Batteries (4-pack),1,2.99,10/19/19 22:26,"443 Church St, Seattle, WA 98101" -275784,Vareebadd Phone,1,400,10/18/19 17:44,"2 11th St, San Francisco, CA 94016" -275785,Google Phone,1,600,10/20/19 19:17,"748 8th St, New York City, NY 10001" -275786,34in Ultrawide Monitor,1,379.99,10/23/19 13:04,"872 Pine St, Portland, OR 97035" -275787,Lightning Charging Cable,1,14.95,10/22/19 11:11,"783 Sunset St, Portland, OR 97035" -275788,AA Batteries (4-pack),1,3.84,10/30/19 12:24,"996 Jackson St, San Francisco, CA 94016" -275789,20in Monitor,1,109.99,10/04/19 08:40,"747 Center St, Dallas, TX 75001" -275790,iPhone,1,700,10/08/19 14:43,"686 Walnut St, Boston, MA 02215" -275790,Apple Airpods Headphones,1,150,10/08/19 14:43,"686 Walnut St, Boston, MA 02215" -275791,ThinkPad Laptop,1,999.99,10/12/19 17:59,"630 Jefferson St, Seattle, WA 98101" -275792,Lightning Charging Cable,1,14.95,10/21/19 18:57,"783 Jackson St, Seattle, WA 98101" -275793,AA Batteries (4-pack),1,3.84,10/09/19 09:10,"490 Cherry St, Austin, TX 73301" -275794,USB-C Charging Cable,2,11.95,10/18/19 00:53,"856 7th St, Boston, MA 02215" -275795,Google Phone,1,600,10/16/19 08:11,"710 Adams St, New York City, NY 10001" -275796,AAA Batteries (4-pack),1,2.99,10/28/19 10:20,"495 14th St, Los Angeles, CA 90001" -275797,Lightning Charging Cable,1,14.95,10/02/19 20:16,"211 West St, Boston, MA 02215" -275798,AAA Batteries (4-pack),1,2.99,10/31/19 08:41,"526 Adams St, San Francisco, CA 94016" -275799,27in 4K Gaming Monitor,1,389.99,10/27/19 19:18,"285 Washington St, Boston, MA 02215" -275800,34in Ultrawide Monitor,1,379.99,10/10/19 00:59,"414 13th St, Dallas, TX 75001" -275801,27in FHD Monitor,1,149.99,10/18/19 16:17,"169 5th St, New York City, NY 10001" -275801,Lightning Charging Cable,1,14.95,10/18/19 16:17,"169 5th St, New York City, NY 10001" -275802,AA Batteries (4-pack),1,3.84,10/10/19 10:47,"143 Dogwood St, San Francisco, CA 94016" -275803,Macbook Pro Laptop,1,1700,10/15/19 12:39,"628 Forest St, Dallas, TX 75001" -275804,27in FHD Monitor,1,149.99,10/10/19 22:59,"783 Maple St, Boston, MA 02215" -275805,Wired Headphones,1,11.99,10/17/19 11:57,"763 14th St, Seattle, WA 98101" -275806,Bose SoundSport Headphones,1,99.99,10/15/19 07:48,"819 Wilson St, Boston, MA 02215" -275807,AA Batteries (4-pack),1,3.84,10/05/19 16:28,"377 8th St, Dallas, TX 75001" -275808,Google Phone,1,600,10/13/19 17:01,"777 Lincoln St, Boston, MA 02215" -275809,Lightning Charging Cable,1,14.95,10/07/19 14:23,"157 13th St, Atlanta, GA 30301" -275810,AA Batteries (4-pack),2,3.84,10/24/19 12:30,"678 Walnut St, Los Angeles, CA 90001" -275811,AA Batteries (4-pack),1,3.84,10/27/19 20:28,"939 Washington St, Portland, OR 97035" -275812,USB-C Charging Cable,1,11.95,10/10/19 23:11,"806 10th St, Los Angeles, CA 90001" -,,,,, -275813,20in Monitor,1,109.99,10/01/19 12:55,"808 Madison St, New York City, NY 10001" -275814,Lightning Charging Cable,1,14.95,10/02/19 20:46,"225 Lake St, San Francisco, CA 94016" -275815,Apple Airpods Headphones,1,150,10/05/19 11:22,"103 2nd St, Austin, TX 73301" -275816,Bose SoundSport Headphones,1,99.99,10/02/19 10:32,"499 Elm St, San Francisco, CA 94016" -275817,27in 4K Gaming Monitor,1,389.99,10/02/19 13:54,"802 Elm St, Boston, MA 02215" -275818,Lightning Charging Cable,1,14.95,10/24/19 18:16,"139 5th St, Boston, MA 02215" -275818,ThinkPad Laptop,1,999.99,10/24/19 18:16,"139 5th St, Boston, MA 02215" -275819,AA Batteries (4-pack),1,3.84,10/06/19 18:53,"493 14th St, Seattle, WA 98101" -275820,Apple Airpods Headphones,1,150,10/28/19 21:41,"617 Cherry St, Portland, ME 04101" -275821,Lightning Charging Cable,1,14.95,10/26/19 19:35,"467 Highland St, Los Angeles, CA 90001" -275822,Wired Headphones,1,11.99,10/03/19 14:18,"140 2nd St, Seattle, WA 98101" -275823,Apple Airpods Headphones,1,150,10/27/19 19:02,"441 2nd St, Los Angeles, CA 90001" -275824,Lightning Charging Cable,1,14.95,10/11/19 13:26,"160 Lake St, San Francisco, CA 94016" -275825,Google Phone,1,600,10/01/19 06:38,"809 Main St, San Francisco, CA 94016" -275826,USB-C Charging Cable,1,11.95,10/04/19 04:40,"99 5th St, Seattle, WA 98101" -275827,AA Batteries (4-pack),3,3.84,10/03/19 23:36,"939 Lincoln St, Seattle, WA 98101" -275828,USB-C Charging Cable,1,11.95,10/23/19 13:32,"479 Wilson St, New York City, NY 10001" -275829,USB-C Charging Cable,1,11.95,10/03/19 20:26,"816 9th St, San Francisco, CA 94016" -275830,USB-C Charging Cable,1,11.95,10/18/19 08:32,"744 11th St, Dallas, TX 75001" -275831,27in FHD Monitor,1,149.99,10/26/19 19:56,"337 Spruce St, Los Angeles, CA 90001" -275832,Flatscreen TV,1,300,10/17/19 12:46,"127 2nd St, Austin, TX 73301" -275833,ThinkPad Laptop,1,999.99,10/05/19 21:06,"431 Ridge St, San Francisco, CA 94016" -275834,Lightning Charging Cable,1,14.95,10/29/19 08:38,"132 Forest St, San Francisco, CA 94016" -275835,USB-C Charging Cable,1,11.95,10/21/19 01:58,"300 Willow St, San Francisco, CA 94016" -275836,Apple Airpods Headphones,1,150,10/09/19 19:11,"416 Walnut St, Dallas, TX 75001" -275837,Bose SoundSport Headphones,1,99.99,10/20/19 12:09,"150 Highland St, Boston, MA 02215" -275838,Lightning Charging Cable,1,14.95,10/17/19 00:30,"418 9th St, Portland, OR 97035" -275839,Apple Airpods Headphones,1,150,10/03/19 15:45,"590 Meadow St, Dallas, TX 75001" -275840,AA Batteries (4-pack),1,3.84,10/21/19 17:23,"520 Cedar St, Seattle, WA 98101" -275841,Macbook Pro Laptop,1,1700,10/21/19 19:01,"345 Pine St, Austin, TX 73301" -275842,27in 4K Gaming Monitor,1,389.99,10/29/19 23:04,"975 Dogwood St, Los Angeles, CA 90001" -275843,Bose SoundSport Headphones,1,99.99,10/02/19 16:10,"96 11th St, San Francisco, CA 94016" -275844,Google Phone,1,600,10/28/19 13:51,"451 1st St, San Francisco, CA 94016" -275845,34in Ultrawide Monitor,1,379.99,10/18/19 12:24,"8 1st St, San Francisco, CA 94016" -275846,AA Batteries (4-pack),2,3.84,10/10/19 22:23,"258 9th St, Portland, OR 97035" -275847,Lightning Charging Cable,1,14.95,10/14/19 11:24,"351 Maple St, New York City, NY 10001" -275848,34in Ultrawide Monitor,1,379.99,10/31/19 13:39,"696 Hill St, San Francisco, CA 94016" -275849,27in 4K Gaming Monitor,1,389.99,10/26/19 15:17,"444 Dogwood St, Boston, MA 02215" -275850,AAA Batteries (4-pack),1,2.99,10/06/19 22:33,"998 Dogwood St, San Francisco, CA 94016" -275851,Apple Airpods Headphones,1,150,10/07/19 16:27,"474 7th St, Los Angeles, CA 90001" -275852,34in Ultrawide Monitor,1,379.99,10/16/19 12:44,"252 Center St, Portland, ME 04101" -275853,AAA Batteries (4-pack),1,2.99,10/14/19 11:14,"118 Forest St, Dallas, TX 75001" -275854,27in FHD Monitor,1,149.99,10/31/19 13:29,"234 2nd St, Dallas, TX 75001" -275855,Bose SoundSport Headphones,1,99.99,10/17/19 14:19,"218 14th St, Dallas, TX 75001" -275856,AA Batteries (4-pack),1,3.84,10/02/19 07:08,"960 Adams St, Boston, MA 02215" -275857,Lightning Charging Cable,1,14.95,10/24/19 20:33,"865 Chestnut St, Dallas, TX 75001" -275858,Lightning Charging Cable,1,14.95,10/22/19 13:00,"695 Wilson St, Seattle, WA 98101" -275859,USB-C Charging Cable,1,11.95,10/16/19 14:53,"804 Highland St, Boston, MA 02215" -275860,Apple Airpods Headphones,1,150,10/29/19 06:41,"151 Johnson St, San Francisco, CA 94016" -275861,Lightning Charging Cable,1,14.95,10/04/19 13:59,"524 Washington St, San Francisco, CA 94016" -275862,27in 4K Gaming Monitor,1,389.99,10/07/19 16:53,"450 Willow St, Boston, MA 02215" -275863,AAA Batteries (4-pack),1,2.99,10/06/19 11:48,"251 Lincoln St, San Francisco, CA 94016" -275864,AA Batteries (4-pack),1,3.84,10/04/19 19:53,"286 Hickory St, San Francisco, CA 94016" -275865,iPhone,1,700,10/01/19 22:07,"476 11th St, Atlanta, GA 30301" -275866,AA Batteries (4-pack),1,3.84,10/06/19 20:12,"944 Lake St, San Francisco, CA 94016" -275867,Lightning Charging Cable,1,14.95,10/31/19 23:21,"726 2nd St, Los Angeles, CA 90001" -275868,AAA Batteries (4-pack),1,2.99,10/02/19 12:36,"59 8th St, Portland, OR 97035" -275869,34in Ultrawide Monitor,1,379.99,10/26/19 12:08,"189 13th St, San Francisco, CA 94016" -275870,AA Batteries (4-pack),1,3.84,10/17/19 13:53,"812 Main St, New York City, NY 10001" -275871,Apple Airpods Headphones,1,150,10/19/19 12:26,"877 Ridge St, Los Angeles, CA 90001" -275872,Apple Airpods Headphones,1,150,11/01/19 01:11,"939 South St, Los Angeles, CA 90001" -275873,AA Batteries (4-pack),1,3.84,10/13/19 17:33,"887 Chestnut St, Boston, MA 02215" -275874,20in Monitor,1,109.99,10/06/19 15:46,"828 Forest St, Austin, TX 73301" -275875,Bose SoundSport Headphones,1,99.99,10/29/19 08:05,"456 Cherry St, San Francisco, CA 94016" -275876,AA Batteries (4-pack),1,3.84,10/14/19 09:51,"925 Elm St, Dallas, TX 75001" -275877,Wired Headphones,3,11.99,10/10/19 20:26,"959 Adams St, Austin, TX 73301" -275878,Lightning Charging Cable,2,14.95,10/29/19 10:12,"331 Main St, Atlanta, GA 30301" -275879,Google Phone,1,600,10/29/19 15:19,"555 Madison St, Seattle, WA 98101" -275880,20in Monitor,1,109.99,10/08/19 09:57,"553 7th St, Boston, MA 02215" -275881,Bose SoundSport Headphones,1,99.99,10/27/19 21:14,"867 Lake St, Boston, MA 02215" -275882,AAA Batteries (4-pack),4,2.99,10/23/19 17:49,"565 5th St, San Francisco, CA 94016" -275883,27in FHD Monitor,1,149.99,10/30/19 18:27,"233 Elm St, Dallas, TX 75001" -275884,AAA Batteries (4-pack),1,2.99,10/31/19 18:06,"54 Jefferson St, New York City, NY 10001" -275885,Lightning Charging Cable,1,14.95,10/05/19 07:15,"904 Cherry St, San Francisco, CA 94016" -275886,iPhone,1,700,10/11/19 12:17,"753 Cherry St, Portland, OR 97035" -275887,Flatscreen TV,1,300,10/09/19 11:26,"749 14th St, San Francisco, CA 94016" -275888,Macbook Pro Laptop,1,1700,10/21/19 12:53,"796 South St, Atlanta, GA 30301" -275889,Apple Airpods Headphones,1,150,10/26/19 22:19,"838 Adams St, Los Angeles, CA 90001" -275890,USB-C Charging Cable,1,11.95,10/03/19 18:35,"590 11th St, San Francisco, CA 94016" -275891,USB-C Charging Cable,1,11.95,10/03/19 20:37,"999 Dogwood St, San Francisco, CA 94016" -275892,27in 4K Gaming Monitor,1,389.99,10/03/19 18:28,"359 2nd St, Austin, TX 73301" -275893,USB-C Charging Cable,1,11.95,10/23/19 08:27,"74 Lincoln St, San Francisco, CA 94016" -275894,20in Monitor,1,109.99,10/14/19 15:04,"797 6th St, Boston, MA 02215" -275895,ThinkPad Laptop,1,999.99,10/29/19 00:33,"351 Sunset St, San Francisco, CA 94016" -275896,27in 4K Gaming Monitor,1,389.99,10/21/19 16:29,"314 Jefferson St, Los Angeles, CA 90001" -275897,Apple Airpods Headphones,1,150,10/16/19 14:27,"550 Dogwood St, San Francisco, CA 94016" -275898,Bose SoundSport Headphones,1,99.99,10/06/19 21:34,"445 10th St, San Francisco, CA 94016" -275899,AAA Batteries (4-pack),2,2.99,10/03/19 18:25,"131 Jefferson St, Los Angeles, CA 90001" -275900,AAA Batteries (4-pack),2,2.99,10/18/19 21:19,"508 5th St, Austin, TX 73301" -275901,Wired Headphones,1,11.99,10/06/19 23:53,"914 4th St, New York City, NY 10001" -275902,Wired Headphones,1,11.99,10/18/19 18:58,"49 14th St, Dallas, TX 75001" -275903,34in Ultrawide Monitor,1,379.99,10/27/19 19:47,"877 12th St, Seattle, WA 98101" -275904,AAA Batteries (4-pack),3,2.99,10/08/19 10:52,"427 14th St, Seattle, WA 98101" -275905,AAA Batteries (4-pack),1,2.99,10/21/19 19:46,"219 Center St, San Francisco, CA 94016" -275906,AA Batteries (4-pack),1,3.84,10/02/19 11:00,"931 Highland St, Atlanta, GA 30301" -275907,Bose SoundSport Headphones,1,99.99,10/04/19 23:52,"254 Forest St, Dallas, TX 75001" -275908,LG Washing Machine,1,600.0,10/23/19 23:03,"212 North St, San Francisco, CA 94016" -275909,Lightning Charging Cable,1,14.95,10/25/19 20:36,"993 2nd St, Atlanta, GA 30301" -275910,27in FHD Monitor,1,149.99,10/05/19 12:05,"155 1st St, Boston, MA 02215" -275910,Wired Headphones,1,11.99,10/05/19 12:05,"155 1st St, Boston, MA 02215" -275911,Apple Airpods Headphones,1,150,10/29/19 13:09,"88 Adams St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -275912,USB-C Charging Cable,1,11.95,10/04/19 21:39,"479 Forest St, Los Angeles, CA 90001" -275913,AAA Batteries (4-pack),1,2.99,10/10/19 15:36,"106 Lincoln St, San Francisco, CA 94016" -275914,USB-C Charging Cable,1,11.95,10/19/19 12:44,"376 Ridge St, Los Angeles, CA 90001" -275915,ThinkPad Laptop,1,999.99,10/22/19 15:28,"653 Park St, Los Angeles, CA 90001" -275916,USB-C Charging Cable,1,11.95,10/22/19 14:08,"474 West St, Austin, TX 73301" -275917,AA Batteries (4-pack),1,3.84,10/25/19 11:25,"386 Hill St, Los Angeles, CA 90001" -275918,AAA Batteries (4-pack),1,2.99,10/27/19 00:13,"447 Church St, San Francisco, CA 94016" -275919,27in 4K Gaming Monitor,1,389.99,10/14/19 13:10,"312 Spruce St, New York City, NY 10001" -275920,AA Batteries (4-pack),1,3.84,10/26/19 16:52,"628 Ridge St, New York City, NY 10001" -275921,Lightning Charging Cable,2,14.95,10/31/19 07:05,"806 Hill St, Seattle, WA 98101" -275921,AA Batteries (4-pack),1,3.84,10/31/19 07:05,"806 Hill St, Seattle, WA 98101" -275922,USB-C Charging Cable,1,11.95,10/30/19 11:43,"101 Cherry St, Seattle, WA 98101" -275923,27in FHD Monitor,1,149.99,10/07/19 08:50,"246 7th St, New York City, NY 10001" -275924,Lightning Charging Cable,1,14.95,10/11/19 13:29,"622 14th St, Atlanta, GA 30301" -275925,Apple Airpods Headphones,1,150,10/08/19 11:02,"980 West St, Boston, MA 02215" -275926,Vareebadd Phone,1,400,10/03/19 08:33,"906 Elm St, Seattle, WA 98101" -275927,27in 4K Gaming Monitor,1,389.99,10/22/19 00:21,"131 Dogwood St, Boston, MA 02215" -275928,AAA Batteries (4-pack),1,2.99,10/10/19 18:32,"50 Forest St, Austin, TX 73301" -275929,AA Batteries (4-pack),1,3.84,10/28/19 23:17,"677 8th St, San Francisco, CA 94016" -275930,AAA Batteries (4-pack),5,2.99,10/04/19 13:51,"260 Walnut St, Dallas, TX 75001" -275931,USB-C Charging Cable,1,11.95,10/14/19 20:55,"446 11th St, San Francisco, CA 94016" -275932,Lightning Charging Cable,1,14.95,10/20/19 15:57,"401 Cedar St, San Francisco, CA 94016" -275933,Bose SoundSport Headphones,1,99.99,10/12/19 16:02,"104 10th St, New York City, NY 10001" -275934,USB-C Charging Cable,1,11.95,10/10/19 18:50,"671 6th St, Boston, MA 02215" -275935,Wired Headphones,1,11.99,10/27/19 05:23,"80 Forest St, Seattle, WA 98101" -275936,Flatscreen TV,1,300,10/06/19 17:06,"832 Hill St, Los Angeles, CA 90001" -275937,27in 4K Gaming Monitor,2,389.99,10/02/19 12:02,"9 7th St, San Francisco, CA 94016" -275938,Bose SoundSport Headphones,1,99.99,10/21/19 10:43,"521 Center St, Los Angeles, CA 90001" -275939,AAA Batteries (4-pack),1,2.99,10/23/19 20:31,"698 Jefferson St, San Francisco, CA 94016" -275940,AA Batteries (4-pack),1,3.84,10/28/19 11:40,"46 Hickory St, Los Angeles, CA 90001" -275941,27in FHD Monitor,1,149.99,10/31/19 19:46,"763 North St, San Francisco, CA 94016" -275942,Wired Headphones,1,11.99,10/14/19 11:48,"13 Lake St, Atlanta, GA 30301" -275943,34in Ultrawide Monitor,1,379.99,10/25/19 20:49,"821 Lake St, Seattle, WA 98101" -275944,USB-C Charging Cable,1,11.95,10/01/19 18:29,"472 Spruce St, Portland, ME 04101" -275945,Apple Airpods Headphones,1,150,10/03/19 16:49,"942 Maple St, Dallas, TX 75001" -275946,27in FHD Monitor,1,149.99,10/06/19 14:15,"845 12th St, Portland, OR 97035" -275947,27in FHD Monitor,1,149.99,10/26/19 11:41,"795 9th St, New York City, NY 10001" -275948,Flatscreen TV,1,300,10/14/19 19:09,"887 4th St, Atlanta, GA 30301" -275949,Apple Airpods Headphones,1,150,10/10/19 17:07,"950 Madison St, San Francisco, CA 94016" -275950,AAA Batteries (4-pack),1,2.99,10/18/19 16:42,"51 Jackson St, Boston, MA 02215" -275951,Macbook Pro Laptop,1,1700,10/22/19 19:32,"591 12th St, Austin, TX 73301" -275952,ThinkPad Laptop,1,999.99,10/19/19 19:34,"964 14th St, Dallas, TX 75001" -275952,Flatscreen TV,1,300,10/19/19 19:34,"964 14th St, Dallas, TX 75001" -275953,Apple Airpods Headphones,1,150,10/15/19 18:03,"232 Main St, Seattle, WA 98101" -275954,Wired Headphones,1,11.99,10/09/19 22:25,"515 Church St, San Francisco, CA 94016" -275955,Google Phone,1,600,10/03/19 15:25,"993 Meadow St, New York City, NY 10001" -275956,Lightning Charging Cable,1,14.95,10/07/19 15:42,"171 1st St, Dallas, TX 75001" -275957,Lightning Charging Cable,1,14.95,10/15/19 10:39,"20 7th St, New York City, NY 10001" -275958,Lightning Charging Cable,1,14.95,10/13/19 09:59,"574 Highland St, New York City, NY 10001" -275959,Wired Headphones,2,11.99,10/22/19 12:37,"524 Willow St, San Francisco, CA 94016" -275959,27in 4K Gaming Monitor,1,389.99,10/22/19 12:37,"524 Willow St, San Francisco, CA 94016" -275960,Lightning Charging Cable,1,14.95,10/30/19 23:54,"184 South St, Dallas, TX 75001" -275961,Lightning Charging Cable,1,14.95,10/27/19 10:46,"423 Adams St, Seattle, WA 98101" -275962,27in 4K Gaming Monitor,1,389.99,10/28/19 23:44,"557 Dogwood St, Austin, TX 73301" -275963,Lightning Charging Cable,1,14.95,10/01/19 22:28,"814 5th St, Los Angeles, CA 90001" -275964,Wired Headphones,1,11.99,10/25/19 18:55,"590 Church St, Boston, MA 02215" -275965,AAA Batteries (4-pack),1,2.99,10/20/19 20:34,"790 Spruce St, Atlanta, GA 30301" -275966,ThinkPad Laptop,1,999.99,10/11/19 12:58,"540 12th St, Seattle, WA 98101" -275967,Wired Headphones,1,11.99,10/01/19 17:03,"839 7th St, Seattle, WA 98101" -275968,Vareebadd Phone,1,400,10/13/19 15:39,"645 Walnut St, San Francisco, CA 94016" -275969,27in 4K Gaming Monitor,1,389.99,10/05/19 13:24,"74 Madison St, San Francisco, CA 94016" -275970,Wired Headphones,1,11.99,10/09/19 14:29,"38 River St, New York City, NY 10001" -275971,USB-C Charging Cable,2,11.95,10/10/19 12:10,"52 13th St, Boston, MA 02215" -275972,Lightning Charging Cable,1,14.95,10/23/19 09:09,"926 Washington St, New York City, NY 10001" -275973,Bose SoundSport Headphones,1,99.99,10/14/19 19:05,"806 Maple St, San Francisco, CA 94016" -275974,AAA Batteries (4-pack),1,2.99,10/06/19 12:42,"371 8th St, New York City, NY 10001" -275975,Google Phone,1,600,10/27/19 08:59,"850 13th St, Boston, MA 02215" -275975,Bose SoundSport Headphones,1,99.99,10/27/19 08:59,"850 13th St, Boston, MA 02215" -275976,34in Ultrawide Monitor,1,379.99,10/04/19 13:23,"533 Hill St, Los Angeles, CA 90001" -275977,Flatscreen TV,1,300,10/05/19 18:02,"716 Jackson St, Austin, TX 73301" -275978,Lightning Charging Cable,1,14.95,10/28/19 01:26,"967 Maple St, Dallas, TX 75001" -275979,Vareebadd Phone,1,400,10/02/19 12:51,"163 11th St, Atlanta, GA 30301" -275979,USB-C Charging Cable,2,11.95,10/02/19 12:51,"163 11th St, Atlanta, GA 30301" -275980,Apple Airpods Headphones,1,150,10/17/19 19:46,"119 Center St, Los Angeles, CA 90001" -275981,Apple Airpods Headphones,1,150,10/26/19 21:58,"566 Main St, New York City, NY 10001" -275982,Wired Headphones,1,11.99,10/28/19 11:25,"277 West St, San Francisco, CA 94016" -275983,Vareebadd Phone,1,400,10/21/19 11:50,"264 West St, Dallas, TX 75001" -275984,Wired Headphones,1,11.99,10/13/19 22:19,"398 Elm St, Los Angeles, CA 90001" -275985,AA Batteries (4-pack),2,3.84,10/02/19 00:42,"976 Main St, San Francisco, CA 94016" -275986,27in FHD Monitor,1,149.99,10/05/19 22:22,"911 Maple St, San Francisco, CA 94016" -275987,AAA Batteries (4-pack),2,2.99,10/29/19 08:59,"227 Meadow St, San Francisco, CA 94016" -275988,AAA Batteries (4-pack),1,2.99,10/11/19 20:25,"468 8th St, San Francisco, CA 94016" -275989,AA Batteries (4-pack),4,3.84,10/18/19 06:35,"113 14th St, Boston, MA 02215" -275990,AA Batteries (4-pack),1,3.84,10/20/19 14:59,"714 Dogwood St, Portland, OR 97035" -275991,AA Batteries (4-pack),1,3.84,10/06/19 10:53,"683 1st St, Portland, OR 97035" -275992,20in Monitor,1,109.99,10/27/19 17:37,"418 14th St, New York City, NY 10001" -275993,AA Batteries (4-pack),1,3.84,10/06/19 19:58,"250 1st St, Seattle, WA 98101" -275994,Apple Airpods Headphones,1,150,10/10/19 16:49,"237 Walnut St, Portland, OR 97035" -275995,27in 4K Gaming Monitor,1,389.99,10/02/19 14:42,"843 13th St, New York City, NY 10001" -275996,AA Batteries (4-pack),1,3.84,10/01/19 08:57,"319 Wilson St, Austin, TX 73301" -275997,AA Batteries (4-pack),2,3.84,10/07/19 20:48,"261 Spruce St, New York City, NY 10001" -275998,AA Batteries (4-pack),1,3.84,10/18/19 14:35,"41 11th St, San Francisco, CA 94016" -275999,Lightning Charging Cable,2,14.95,10/24/19 09:19,"923 Cedar St, Atlanta, GA 30301" -276000,USB-C Charging Cable,1,11.95,10/18/19 11:56,"257 Wilson St, Atlanta, GA 30301" -276001,Apple Airpods Headphones,1,150,10/10/19 11:51,"21 Meadow St, Portland, OR 97035" -276002,USB-C Charging Cable,1,11.95,10/20/19 10:15,"795 Hickory St, Los Angeles, CA 90001" -276003,Bose SoundSport Headphones,1,99.99,10/18/19 17:03,"871 6th St, Seattle, WA 98101" -276004,Apple Airpods Headphones,1,150,10/26/19 22:02,"483 Washington St, Dallas, TX 75001" -276005,AAA Batteries (4-pack),3,2.99,10/31/19 00:23,"175 Spruce St, Seattle, WA 98101" -276006,AAA Batteries (4-pack),1,2.99,10/14/19 20:36,"898 10th St, Los Angeles, CA 90001" -276007,Wired Headphones,1,11.99,10/01/19 17:57,"193 Hickory St, Dallas, TX 75001" -276008,AAA Batteries (4-pack),1,2.99,10/17/19 15:20,"942 6th St, Los Angeles, CA 90001" -276009,27in FHD Monitor,1,149.99,10/07/19 13:53,"845 Park St, Boston, MA 02215" -276010,ThinkPad Laptop,1,999.99,10/20/19 16:48,"345 West St, New York City, NY 10001" -276011,AAA Batteries (4-pack),1,2.99,10/26/19 18:52,"221 Pine St, Atlanta, GA 30301" -276012,USB-C Charging Cable,1,11.95,10/02/19 13:46,"842 Spruce St, Atlanta, GA 30301" -276013,USB-C Charging Cable,1,11.95,10/30/19 21:10,"375 4th St, Boston, MA 02215" -276014,USB-C Charging Cable,1,11.95,10/16/19 16:16,"32 Jackson St, Los Angeles, CA 90001" -276015,Flatscreen TV,1,300,10/30/19 18:45,"86 Highland St, San Francisco, CA 94016" -276016,Lightning Charging Cable,1,14.95,10/12/19 21:51,"804 Lincoln St, Portland, OR 97035" -276017,USB-C Charging Cable,1,11.95,10/09/19 22:00,"353 Highland St, New York City, NY 10001" -276018,Google Phone,1,600,10/24/19 01:46,"581 Wilson St, New York City, NY 10001" -276019,Bose SoundSport Headphones,1,99.99,10/12/19 16:00,"581 Lakeview St, Seattle, WA 98101" -276020,Bose SoundSport Headphones,1,99.99,10/13/19 20:41,"935 Johnson St, Los Angeles, CA 90001" -276021,Apple Airpods Headphones,1,150,10/18/19 19:28,"89 Elm St, New York City, NY 10001" -276022,iPhone,1,700,10/06/19 10:18,"470 1st St, Seattle, WA 98101" -276023,Lightning Charging Cable,1,14.95,10/31/19 10:55,"529 Adams St, New York City, NY 10001" -276024,Lightning Charging Cable,1,14.95,10/13/19 16:51,"750 Cedar St, Dallas, TX 75001" -276025,USB-C Charging Cable,1,11.95,10/14/19 16:45,"690 10th St, New York City, NY 10001" -276026,Lightning Charging Cable,1,14.95,10/07/19 07:43,"273 10th St, Los Angeles, CA 90001" -276027,AA Batteries (4-pack),1,3.84,10/26/19 21:47,"574 Church St, New York City, NY 10001" -276028,AA Batteries (4-pack),2,3.84,10/16/19 09:48,"103 Spruce St, Seattle, WA 98101" -276029,Wired Headphones,1,11.99,10/28/19 12:54,"824 Park St, Atlanta, GA 30301" -276030,Apple Airpods Headphones,1,150,10/02/19 12:39,"873 5th St, San Francisco, CA 94016" -276031,Bose SoundSport Headphones,1,99.99,10/03/19 10:04,"624 Washington St, New York City, NY 10001" -276032,27in 4K Gaming Monitor,1,389.99,10/28/19 13:56,"818 Chestnut St, Los Angeles, CA 90001" -276033,Wired Headphones,1,11.99,10/23/19 22:55,"938 Wilson St, San Francisco, CA 94016" -276034,USB-C Charging Cable,1,11.95,10/05/19 06:25,"617 Lakeview St, Los Angeles, CA 90001" -276035,Lightning Charging Cable,1,14.95,10/21/19 17:56,"272 Willow St, San Francisco, CA 94016" -276036,Wired Headphones,1,11.99,10/30/19 21:54,"747 Jefferson St, Seattle, WA 98101" -276037,Lightning Charging Cable,1,14.95,10/10/19 09:13,"850 Forest St, Austin, TX 73301" -276038,20in Monitor,1,109.99,10/20/19 14:52,"290 South St, San Francisco, CA 94016" -276039,Wired Headphones,1,11.99,10/19/19 15:19,"219 Lakeview St, Boston, MA 02215" -276040,AA Batteries (4-pack),1,3.84,10/21/19 19:47,"85 Jackson St, San Francisco, CA 94016" -276041,USB-C Charging Cable,1,11.95,10/05/19 11:36,"546 14th St, New York City, NY 10001" -276042,Lightning Charging Cable,1,14.95,10/26/19 11:22,"800 Washington St, San Francisco, CA 94016" -276043,AAA Batteries (4-pack),2,2.99,10/15/19 18:34,"364 4th St, Los Angeles, CA 90001" -276044,AA Batteries (4-pack),1,3.84,10/21/19 22:37,"711 Cherry St, Dallas, TX 75001" -276045,ThinkPad Laptop,1,999.99,10/19/19 22:34,"353 10th St, Seattle, WA 98101" -276046,AAA Batteries (4-pack),1,2.99,10/23/19 16:55,"590 Jefferson St, Los Angeles, CA 90001" -276047,20in Monitor,1,109.99,10/13/19 16:11,"300 Hill St, Atlanta, GA 30301" -276048,iPhone,1,700,10/03/19 23:03,"360 Hill St, Los Angeles, CA 90001" -276048,Lightning Charging Cable,1,14.95,10/03/19 23:03,"360 Hill St, Los Angeles, CA 90001" -276049,USB-C Charging Cable,1,11.95,10/14/19 14:40,"234 12th St, Austin, TX 73301" -276050,Flatscreen TV,1,300,10/18/19 12:21,"744 10th St, Los Angeles, CA 90001" -276051,Wired Headphones,1,11.99,10/29/19 21:35,"928 2nd St, Atlanta, GA 30301" -276052,Wired Headphones,1,11.99,10/19/19 11:57,"675 Maple St, Austin, TX 73301" -276053,27in FHD Monitor,1,149.99,10/30/19 15:29,"146 4th St, Los Angeles, CA 90001" -276054,Flatscreen TV,1,300,10/14/19 09:03,"48 Meadow St, Seattle, WA 98101" -276055,ThinkPad Laptop,1,999.99,10/15/19 00:53,"908 Forest St, Boston, MA 02215" -276056,AA Batteries (4-pack),1,3.84,10/13/19 08:20,"828 6th St, San Francisco, CA 94016" -276057,27in FHD Monitor,1,149.99,10/23/19 12:43,"900 Chestnut St, Boston, MA 02215" -276058,USB-C Charging Cable,1,11.95,10/01/19 12:54,"183 9th St, Atlanta, GA 30301" -276059,ThinkPad Laptop,1,999.99,10/29/19 13:15,"957 Highland St, Dallas, TX 75001" -276060,Google Phone,1,600,10/08/19 23:26,"676 Lakeview St, Portland, ME 04101" -276061,Macbook Pro Laptop,1,1700,10/04/19 13:10,"846 Wilson St, Los Angeles, CA 90001" -276062,Flatscreen TV,1,300,10/17/19 09:14,"592 Spruce St, Portland, OR 97035" -276063,Wired Headphones,2,11.99,10/10/19 09:36,"155 Elm St, Seattle, WA 98101" -276064,20in Monitor,1,109.99,10/13/19 20:24,"381 1st St, New York City, NY 10001" -276065,AAA Batteries (4-pack),1,2.99,10/23/19 18:08,"816 7th St, San Francisco, CA 94016" -276066,Bose SoundSport Headphones,1,99.99,10/17/19 01:41,"762 Center St, New York City, NY 10001" -276067,34in Ultrawide Monitor,1,379.99,10/17/19 11:22,"499 Maple St, San Francisco, CA 94016" -276068,34in Ultrawide Monitor,1,379.99,10/02/19 13:52,"333 13th St, Seattle, WA 98101" -276069,Apple Airpods Headphones,1,150,10/16/19 00:24,"464 Lincoln St, New York City, NY 10001" -276070,27in 4K Gaming Monitor,1,389.99,10/26/19 16:56,"702 Jackson St, San Francisco, CA 94016" -276071,27in 4K Gaming Monitor,1,389.99,10/16/19 18:54,"593 Ridge St, New York City, NY 10001" -276072,Lightning Charging Cable,1,14.95,10/10/19 12:07,"475 Highland St, Los Angeles, CA 90001" -276073,USB-C Charging Cable,1,11.95,10/28/19 21:30,"248 Hickory St, Portland, OR 97035" -276074,iPhone,1,700,10/06/19 08:31,"217 2nd St, San Francisco, CA 94016" -276075,Apple Airpods Headphones,1,150,10/18/19 08:46,"198 West St, Boston, MA 02215" -276076,34in Ultrawide Monitor,1,379.99,10/07/19 17:32,"726 Adams St, Boston, MA 02215" -276077,AAA Batteries (4-pack),2,2.99,10/15/19 14:29,"81 River St, Dallas, TX 75001" -276078,AA Batteries (4-pack),1,3.84,10/21/19 11:00,"906 Washington St, San Francisco, CA 94016" -276079,iPhone,1,700,10/06/19 15:41,"37 4th St, Los Angeles, CA 90001" -276079,Lightning Charging Cable,1,14.95,10/06/19 15:41,"37 4th St, Los Angeles, CA 90001" -276080,Wired Headphones,1,11.99,10/15/19 10:34,"836 Ridge St, New York City, NY 10001" -276081,AAA Batteries (4-pack),1,2.99,10/02/19 09:51,"59 South St, San Francisco, CA 94016" -276082,AA Batteries (4-pack),1,3.84,10/11/19 16:08,"614 Spruce St, Portland, OR 97035" -276083,iPhone,1,700,10/19/19 13:24,"545 2nd St, San Francisco, CA 94016" -276083,Apple Airpods Headphones,1,150,10/19/19 13:24,"545 2nd St, San Francisco, CA 94016" -276083,Wired Headphones,1,11.99,10/19/19 13:24,"545 2nd St, San Francisco, CA 94016" -276084,Wired Headphones,1,11.99,10/09/19 21:39,"189 Sunset St, Los Angeles, CA 90001" -276085,AA Batteries (4-pack),1,3.84,10/03/19 21:49,"756 6th St, Seattle, WA 98101" -276086,Lightning Charging Cable,2,14.95,10/17/19 17:04,"195 West St, Boston, MA 02215" -276087,27in FHD Monitor,1,149.99,10/20/19 20:56,"767 Park St, San Francisco, CA 94016" -276088,AAA Batteries (4-pack),1,2.99,10/23/19 19:14,"168 Forest St, Austin, TX 73301" -276089,Flatscreen TV,1,300,10/14/19 19:49,"405 Sunset St, Austin, TX 73301" -276090,USB-C Charging Cable,1,11.95,10/26/19 17:51,"205 River St, Los Angeles, CA 90001" -,,,,, -276091,Wired Headphones,1,11.99,10/04/19 19:20,"949 Johnson St, Portland, OR 97035" -276092,Bose SoundSport Headphones,1,99.99,10/08/19 14:37,"838 Ridge St, Atlanta, GA 30301" -276093,USB-C Charging Cable,1,11.95,10/23/19 22:42,"412 Sunset St, Los Angeles, CA 90001" -276094,Wired Headphones,1,11.99,10/08/19 09:11,"137 Pine St, Los Angeles, CA 90001" -276095,AAA Batteries (4-pack),2,2.99,10/28/19 15:38,"915 Lake St, San Francisco, CA 94016" -276096,Apple Airpods Headphones,1,150,10/24/19 13:54,"886 10th St, Los Angeles, CA 90001" -276097,Lightning Charging Cable,1,14.95,10/07/19 19:46,"312 Ridge St, Seattle, WA 98101" -276098,AA Batteries (4-pack),1,3.84,10/16/19 19:04,"896 5th St, Seattle, WA 98101" -276099,27in 4K Gaming Monitor,1,389.99,10/22/19 13:38,"339 Maple St, Los Angeles, CA 90001" -276100,AA Batteries (4-pack),2,3.84,10/10/19 12:48,"562 Maple St, Los Angeles, CA 90001" -276101,Bose SoundSport Headphones,1,99.99,10/09/19 00:03,"770 Walnut St, Los Angeles, CA 90001" -276102,27in 4K Gaming Monitor,1,389.99,10/11/19 09:04,"893 7th St, New York City, NY 10001" -276103,USB-C Charging Cable,1,11.95,10/27/19 20:24,"984 Chestnut St, Dallas, TX 75001" -276104,20in Monitor,1,109.99,10/11/19 07:31,"96 4th St, Los Angeles, CA 90001" -276105,Bose SoundSport Headphones,1,99.99,10/31/19 16:32,"541 Pine St, San Francisco, CA 94016" -276106,27in FHD Monitor,1,149.99,10/07/19 15:01,"959 River St, Los Angeles, CA 90001" -276107,27in 4K Gaming Monitor,1,389.99,10/19/19 11:07,"455 Madison St, Portland, OR 97035" -276108,Wired Headphones,1,11.99,10/11/19 11:07,"841 Jefferson St, Portland, OR 97035" -276109,Apple Airpods Headphones,1,150,10/28/19 07:32,"228 Pine St, New York City, NY 10001" -276110,27in FHD Monitor,1,149.99,10/12/19 17:44,"279 Lake St, Los Angeles, CA 90001" -276111,27in 4K Gaming Monitor,1,389.99,10/02/19 18:17,"815 Church St, Dallas, TX 75001" -276112,20in Monitor,1,109.99,10/02/19 01:28,"487 Cedar St, Dallas, TX 75001" -276113,27in FHD Monitor,1,149.99,10/07/19 13:36,"325 Dogwood St, Dallas, TX 75001" -276114,Bose SoundSport Headphones,1,99.99,10/21/19 13:49,"570 Church St, Atlanta, GA 30301" -276115,Wired Headphones,1,11.99,10/21/19 23:30,"261 Pine St, Portland, OR 97035" -276116,AA Batteries (4-pack),1,3.84,10/10/19 15:41,"466 Cedar St, Boston, MA 02215" -276117,Google Phone,1,600,10/30/19 17:28,"886 Lakeview St, Seattle, WA 98101" -276118,34in Ultrawide Monitor,1,379.99,10/07/19 16:49,"174 Meadow St, Seattle, WA 98101" -276119,AAA Batteries (4-pack),2,2.99,10/19/19 09:43,"4 Center St, Portland, OR 97035" -276120,USB-C Charging Cable,1,11.95,10/10/19 14:18,"613 Lincoln St, Portland, OR 97035" -276121,iPhone,1,700,10/22/19 15:33,"321 Cedar St, New York City, NY 10001" -276122,27in FHD Monitor,1,149.99,10/21/19 11:15,"749 Madison St, Atlanta, GA 30301" -276123,34in Ultrawide Monitor,1,379.99,10/03/19 15:15,"111 Hickory St, New York City, NY 10001" -276124,AA Batteries (4-pack),1,3.84,10/09/19 19:36,"86 Cedar St, San Francisco, CA 94016" -276125,AA Batteries (4-pack),1,3.84,10/11/19 10:47,"623 9th St, Austin, TX 73301" -276126,iPhone,1,700,10/18/19 11:42,"20 Lakeview St, Boston, MA 02215" -276127,Lightning Charging Cable,1,14.95,10/09/19 12:49,"687 West St, Seattle, WA 98101" -276128,Wired Headphones,1,11.99,10/20/19 08:13,"446 West St, Los Angeles, CA 90001" -276129,LG Washing Machine,1,600.0,10/15/19 08:55,"863 Adams St, Los Angeles, CA 90001" -276130,27in FHD Monitor,1,149.99,10/11/19 02:01,"862 Lakeview St, San Francisco, CA 94016" -276131,Lightning Charging Cable,1,14.95,10/05/19 10:34,"95 Johnson St, Los Angeles, CA 90001" -276132,ThinkPad Laptop,1,999.99,10/16/19 20:15,"190 8th St, Los Angeles, CA 90001" -276132,USB-C Charging Cable,1,11.95,10/16/19 20:15,"190 8th St, Los Angeles, CA 90001" -276133,Wired Headphones,1,11.99,10/25/19 13:07,"955 Elm St, Los Angeles, CA 90001" -276134,Macbook Pro Laptop,1,1700,10/19/19 21:49,"601 Park St, New York City, NY 10001" -276135,Wired Headphones,1,11.99,10/12/19 17:41,"937 Cherry St, Seattle, WA 98101" -276136,Bose SoundSport Headphones,1,99.99,10/15/19 09:44,"490 Center St, Portland, ME 04101" -276137,27in FHD Monitor,1,149.99,10/30/19 09:45,"799 Maple St, Boston, MA 02215" -276138,27in FHD Monitor,1,149.99,10/26/19 14:13,"576 Willow St, Boston, MA 02215" -276139,ThinkPad Laptop,1,999.99,10/17/19 06:45,"53 Willow St, Seattle, WA 98101" -276140,AA Batteries (4-pack),1,3.84,10/24/19 23:01,"804 Cedar St, San Francisco, CA 94016" -276141,34in Ultrawide Monitor,1,379.99,10/26/19 23:41,"633 Church St, New York City, NY 10001" -276142,USB-C Charging Cable,1,11.95,10/08/19 10:04,"995 Lincoln St, New York City, NY 10001" -276143,Lightning Charging Cable,1,14.95,10/31/19 12:45,"219 9th St, Dallas, TX 75001" -276144,AA Batteries (4-pack),1,3.84,10/13/19 13:45,"767 Lincoln St, Austin, TX 73301" -276145,USB-C Charging Cable,1,11.95,10/12/19 13:22,"626 North St, New York City, NY 10001" -276146,Apple Airpods Headphones,1,150,10/02/19 05:35,"731 North St, New York City, NY 10001" -276146,AA Batteries (4-pack),1,3.84,10/02/19 05:35,"731 North St, New York City, NY 10001" -276147,Bose SoundSport Headphones,1,99.99,10/31/19 19:00,"279 West St, Boston, MA 02215" -276148,USB-C Charging Cable,1,11.95,10/12/19 23:25,"127 Center St, Boston, MA 02215" -276149,AA Batteries (4-pack),3,3.84,10/27/19 21:46,"706 Meadow St, New York City, NY 10001" -276150,Bose SoundSport Headphones,1,99.99,10/11/19 15:36,"582 10th St, San Francisco, CA 94016" -276151,Bose SoundSport Headphones,1,99.99,10/22/19 20:10,"169 Lincoln St, San Francisco, CA 94016" -276152,Apple Airpods Headphones,1,150,10/18/19 20:52,"697 North St, Seattle, WA 98101" -276153,AA Batteries (4-pack),1,3.84,10/17/19 15:11,"192 South St, Dallas, TX 75001" -276154,Bose SoundSport Headphones,1,99.99,10/28/19 17:01,"871 Jackson St, San Francisco, CA 94016" -276155,USB-C Charging Cable,1,11.95,10/24/19 16:21,"260 14th St, Boston, MA 02215" -276156,Lightning Charging Cable,1,14.95,10/16/19 19:19,"284 Adams St, Los Angeles, CA 90001" -276157,Apple Airpods Headphones,1,150,10/26/19 16:05,"202 Spruce St, Los Angeles, CA 90001" -276158,iPhone,1,700,10/05/19 17:56,"899 4th St, Boston, MA 02215" -276159,AAA Batteries (4-pack),1,2.99,10/19/19 23:21,"637 1st St, Seattle, WA 98101" -276160,Wired Headphones,1,11.99,10/06/19 08:46,"39 Highland St, Atlanta, GA 30301" -276161,iPhone,1,700,10/25/19 18:41,"315 Center St, San Francisco, CA 94016" -276162,Flatscreen TV,1,300,10/19/19 15:01,"258 Cedar St, New York City, NY 10001" -276163,Lightning Charging Cable,1,14.95,10/14/19 15:37,"923 9th St, Los Angeles, CA 90001" -276164,USB-C Charging Cable,1,11.95,10/27/19 20:34,"341 9th St, Los Angeles, CA 90001" -276165,AAA Batteries (4-pack),2,2.99,10/30/19 13:29,"951 Adams St, Dallas, TX 75001" -276166,34in Ultrawide Monitor,1,379.99,10/29/19 12:35,"394 Main St, Los Angeles, CA 90001" -276167,Bose SoundSport Headphones,1,99.99,10/26/19 09:49,"284 Cedar St, San Francisco, CA 94016" -276168,AA Batteries (4-pack),1,3.84,10/07/19 22:35,"741 River St, Los Angeles, CA 90001" -276169,Lightning Charging Cable,1,14.95,10/25/19 16:03,"477 Johnson St, Atlanta, GA 30301" -276170,USB-C Charging Cable,1,11.95,10/07/19 18:07,"13 12th St, Austin, TX 73301" -276171,Bose SoundSport Headphones,1,99.99,10/11/19 22:23,"215 Hickory St, Los Angeles, CA 90001" -276172,USB-C Charging Cable,1,11.95,10/21/19 10:33,"904 Pine St, San Francisco, CA 94016" -276173,Lightning Charging Cable,1,14.95,10/18/19 17:11,"548 Main St, Dallas, TX 75001" -276174,AAA Batteries (4-pack),1,2.99,10/30/19 11:23,"762 5th St, Boston, MA 02215" -276175,Flatscreen TV,1,300,10/24/19 19:05,"953 11th St, New York City, NY 10001" -276176,iPhone,1,700,10/27/19 11:38,"374 Meadow St, San Francisco, CA 94016" -276177,Lightning Charging Cable,1,14.95,10/08/19 16:36,"300 Hickory St, Portland, OR 97035" -276178,Lightning Charging Cable,1,14.95,10/16/19 22:34,"766 Jefferson St, Boston, MA 02215" -276179,iPhone,1,700,10/15/19 19:17,"931 11th St, New York City, NY 10001" -276180,Apple Airpods Headphones,1,150,10/24/19 19:18,"152 Dogwood St, Los Angeles, CA 90001" -276181,iPhone,1,700,10/10/19 12:19,"545 Adams St, Los Angeles, CA 90001" -276182,USB-C Charging Cable,1,11.95,10/17/19 13:51,"180 10th St, San Francisco, CA 94016" -276183,AA Batteries (4-pack),1,3.84,10/02/19 13:26,"899 Willow St, Dallas, TX 75001" -276184,Bose SoundSport Headphones,1,99.99,10/31/19 15:31,"979 Sunset St, Los Angeles, CA 90001" -276185,USB-C Charging Cable,1,11.95,10/07/19 16:55,"953 Main St, Portland, OR 97035" -276186,27in FHD Monitor,1,149.99,10/13/19 13:52,"262 Jefferson St, Seattle, WA 98101" -276187,Wired Headphones,1,11.99,10/31/19 10:12,"786 Cedar St, Los Angeles, CA 90001" -276188,Flatscreen TV,1,300,10/07/19 11:44,"188 North St, Boston, MA 02215" -276189,Bose SoundSport Headphones,1,99.99,10/19/19 20:41,"505 Cedar St, Seattle, WA 98101" -276190,Wired Headphones,1,11.99,10/16/19 11:13,"246 Church St, San Francisco, CA 94016" -276191,AAA Batteries (4-pack),1,2.99,10/12/19 23:07,"600 Cedar St, Austin, TX 73301" -276192,Wired Headphones,1,11.99,10/02/19 22:08,"714 Cherry St, Seattle, WA 98101" -276193,AA Batteries (4-pack),1,3.84,10/24/19 08:08,"501 Elm St, Los Angeles, CA 90001" -276194,AAA Batteries (4-pack),1,2.99,10/26/19 17:56,"462 9th St, New York City, NY 10001" -276195,20in Monitor,1,109.99,10/18/19 23:05,"915 Park St, Los Angeles, CA 90001" -276196,Bose SoundSport Headphones,1,99.99,10/20/19 09:28,"844 Jackson St, New York City, NY 10001" -276197,AA Batteries (4-pack),1,3.84,10/10/19 14:35,"778 13th St, New York City, NY 10001" -276198,USB-C Charging Cable,1,11.95,10/18/19 19:31,"888 North St, Austin, TX 73301" -276199,Macbook Pro Laptop,1,1700,10/28/19 15:17,"753 Johnson St, Los Angeles, CA 90001" -276200,USB-C Charging Cable,1,11.95,10/11/19 11:26,"290 Center St, San Francisco, CA 94016" -276201,USB-C Charging Cable,1,11.95,10/22/19 22:33,"445 7th St, Portland, OR 97035" -276202,Bose SoundSport Headphones,1,99.99,10/10/19 15:17,"220 13th St, New York City, NY 10001" -276203,Lightning Charging Cable,1,14.95,10/02/19 15:03,"643 Park St, Los Angeles, CA 90001" -276204,27in 4K Gaming Monitor,1,389.99,10/07/19 14:29,"583 Willow St, Atlanta, GA 30301" -276205,Flatscreen TV,1,300,10/14/19 10:16,"281 Jackson St, San Francisco, CA 94016" -276206,Wired Headphones,1,11.99,10/20/19 16:27,"891 Walnut St, Boston, MA 02215" -276207,34in Ultrawide Monitor,1,379.99,10/05/19 00:31,"873 Walnut St, San Francisco, CA 94016" -276208,Macbook Pro Laptop,1,1700,10/30/19 15:03,"652 10th St, Boston, MA 02215" -276209,ThinkPad Laptop,1,999.99,10/21/19 18:20,"184 Chestnut St, Dallas, TX 75001" -276210,ThinkPad Laptop,1,999.99,10/06/19 18:08,"251 Highland St, San Francisco, CA 94016" -276211,34in Ultrawide Monitor,1,379.99,10/09/19 22:25,"212 Spruce St, Boston, MA 02215" -276212,Bose SoundSport Headphones,1,99.99,10/10/19 12:48,"628 Maple St, Boston, MA 02215" -276213,Lightning Charging Cable,1,14.95,10/08/19 21:56,"859 5th St, New York City, NY 10001" -276214,Bose SoundSport Headphones,1,99.99,10/31/19 16:43,"531 6th St, Los Angeles, CA 90001" -276215,Bose SoundSport Headphones,1,99.99,10/08/19 14:16,"442 Wilson St, Boston, MA 02215" -276216,Lightning Charging Cable,1,14.95,10/17/19 14:10,"790 10th St, Boston, MA 02215" -276217,USB-C Charging Cable,1,11.95,10/27/19 19:11,"142 River St, Dallas, TX 75001" -276218,ThinkPad Laptop,1,999.99,10/17/19 19:20,"987 South St, Boston, MA 02215" -276219,27in FHD Monitor,1,149.99,10/18/19 15:02,"412 6th St, Atlanta, GA 30301" -276220,ThinkPad Laptop,1,999.99,10/15/19 16:25,"929 Lakeview St, Boston, MA 02215" -276221,27in 4K Gaming Monitor,1,389.99,10/27/19 22:51,"739 4th St, San Francisco, CA 94016" -276222,Bose SoundSport Headphones,1,99.99,10/02/19 21:22,"159 Spruce St, Boston, MA 02215" -276223,Bose SoundSport Headphones,1,99.99,10/03/19 15:06,"931 Spruce St, San Francisco, CA 94016" -276224,Bose SoundSport Headphones,1,99.99,10/24/19 19:19,"650 Johnson St, New York City, NY 10001" -276225,AAA Batteries (4-pack),1,2.99,10/21/19 20:05,"803 8th St, Portland, OR 97035" -276225,Flatscreen TV,1,300,10/21/19 20:05,"803 8th St, Portland, OR 97035" -276226,Lightning Charging Cable,1,14.95,10/25/19 10:39,"154 Cherry St, Boston, MA 02215" -276227,Bose SoundSport Headphones,1,99.99,10/11/19 17:50,"161 Ridge St, Portland, OR 97035" -276228,ThinkPad Laptop,1,999.99,10/01/19 23:17,"666 Sunset St, Los Angeles, CA 90001" -276229,USB-C Charging Cable,1,11.95,10/01/19 12:18,"928 Highland St, Los Angeles, CA 90001" -276230,34in Ultrawide Monitor,1,379.99,10/02/19 20:18,"222 14th St, New York City, NY 10001" -276231,Apple Airpods Headphones,1,150,10/28/19 11:54,"80 Wilson St, Seattle, WA 98101" -276232,USB-C Charging Cable,1,11.95,10/20/19 19:09,"118 14th St, Los Angeles, CA 90001" -276233,AA Batteries (4-pack),1,3.84,10/31/19 18:48,"380 Madison St, San Francisco, CA 94016" -276234,Wired Headphones,1,11.99,10/24/19 13:51,"194 Willow St, San Francisco, CA 94016" -276235,Google Phone,1,600,10/25/19 11:00,"587 Spruce St, Los Angeles, CA 90001" -276236,Bose SoundSport Headphones,1,99.99,10/31/19 14:27,"937 7th St, Portland, OR 97035" -276237,AAA Batteries (4-pack),1,2.99,10/02/19 16:25,"800 9th St, Dallas, TX 75001" -276238,AAA Batteries (4-pack),1,2.99,10/01/19 21:00,"64 Pine St, Austin, TX 73301" -276238,LG Dryer,1,600.0,10/01/19 21:00,"64 Pine St, Austin, TX 73301" -276239,Google Phone,1,600,10/04/19 19:15,"625 South St, Dallas, TX 75001" -276240,Bose SoundSport Headphones,1,99.99,10/05/19 09:56,"43 Dogwood St, San Francisco, CA 94016" -276240,AAA Batteries (4-pack),2,2.99,10/05/19 09:56,"43 Dogwood St, San Francisco, CA 94016" -276241,Lightning Charging Cable,1,14.95,10/19/19 10:27,"208 11th St, Los Angeles, CA 90001" -276242,Wired Headphones,1,11.99,10/14/19 10:26,"641 Jefferson St, New York City, NY 10001" -276243,iPhone,1,700,10/15/19 11:48,"257 Lakeview St, San Francisco, CA 94016" -276244,AA Batteries (4-pack),1,3.84,10/08/19 06:14,"492 Madison St, San Francisco, CA 94016" -276245,Bose SoundSport Headphones,1,99.99,10/26/19 23:36,"147 Willow St, San Francisco, CA 94016" -276246,AA Batteries (4-pack),1,3.84,10/30/19 15:49,"859 2nd St, Seattle, WA 98101" -276247,AA Batteries (4-pack),2,3.84,10/28/19 19:35,"409 Washington St, Atlanta, GA 30301" -276248,Bose SoundSport Headphones,1,99.99,10/11/19 22:30,"699 Cedar St, San Francisco, CA 94016" -276249,Google Phone,1,600,10/10/19 15:02,"722 Cherry St, San Francisco, CA 94016" -276249,USB-C Charging Cable,2,11.95,10/10/19 15:02,"722 Cherry St, San Francisco, CA 94016" -276250,Macbook Pro Laptop,1,1700,10/17/19 11:26,"503 4th St, San Francisco, CA 94016" -276251,Lightning Charging Cable,1,14.95,10/08/19 08:02,"117 Pine St, Seattle, WA 98101" -276252,Flatscreen TV,1,300,10/06/19 08:14,"547 9th St, Seattle, WA 98101" -276253,USB-C Charging Cable,1,11.95,10/22/19 21:07,"617 7th St, San Francisco, CA 94016" -276254,Vareebadd Phone,1,400,10/31/19 11:13,"889 11th St, San Francisco, CA 94016" -276255,Bose SoundSport Headphones,1,99.99,10/28/19 14:57,"193 Washington St, Los Angeles, CA 90001" -276256,AAA Batteries (4-pack),1,2.99,10/11/19 07:47,"646 Cherry St, Dallas, TX 75001" -276257,AA Batteries (4-pack),1,3.84,10/12/19 16:18,"885 4th St, San Francisco, CA 94016" -276258,Bose SoundSport Headphones,1,99.99,10/07/19 21:04,"666 Washington St, Atlanta, GA 30301" -276259,Macbook Pro Laptop,1,1700,10/06/19 06:07,"111 5th St, New York City, NY 10001" -276260,Flatscreen TV,1,300,10/21/19 12:06,"695 Johnson St, Los Angeles, CA 90001" -276261,27in 4K Gaming Monitor,1,389.99,10/17/19 18:12,"739 Cherry St, Boston, MA 02215" -276262,Lightning Charging Cable,1,14.95,10/06/19 16:18,"318 7th St, San Francisco, CA 94016" -276263,20in Monitor,1,109.99,10/16/19 08:24,"2 Adams St, Portland, ME 04101" -276264,Lightning Charging Cable,1,14.95,10/22/19 08:06,"326 Spruce St, New York City, NY 10001" -276265,USB-C Charging Cable,1,11.95,10/24/19 13:08,"224 Cedar St, Austin, TX 73301" -276266,27in FHD Monitor,1,149.99,10/19/19 12:42,"558 Madison St, Seattle, WA 98101" -276267,Google Phone,1,600,10/21/19 08:49,"669 Lakeview St, Portland, ME 04101" -276268,USB-C Charging Cable,1,11.95,10/24/19 12:49,"516 Washington St, Los Angeles, CA 90001" -276269,Lightning Charging Cable,1,14.95,10/06/19 22:33,"428 5th St, Los Angeles, CA 90001" -276270,Wired Headphones,1,11.99,10/27/19 14:30,"513 Jefferson St, Boston, MA 02215" -276271,34in Ultrawide Monitor,1,379.99,10/07/19 21:12,"113 Willow St, Boston, MA 02215" -276272,Lightning Charging Cable,1,14.95,10/09/19 20:57,"280 Madison St, New York City, NY 10001" -276273,34in Ultrawide Monitor,1,379.99,10/29/19 10:56,"229 Washington St, San Francisco, CA 94016" -276274,20in Monitor,1,109.99,10/18/19 19:10,"527 5th St, San Francisco, CA 94016" -276275,USB-C Charging Cable,1,11.95,10/20/19 14:55,"189 Lake St, Atlanta, GA 30301" -276276,USB-C Charging Cable,1,11.95,10/10/19 11:19,"482 Lakeview St, Atlanta, GA 30301" -276277,27in FHD Monitor,1,149.99,10/30/19 23:19,"39 4th St, San Francisco, CA 94016" -276278,Lightning Charging Cable,1,14.95,10/31/19 21:53,"82 West St, San Francisco, CA 94016" -276279,Bose SoundSport Headphones,1,99.99,10/19/19 18:21,"231 Walnut St, San Francisco, CA 94016" -276280,Lightning Charging Cable,1,14.95,10/15/19 14:58,"154 Cherry St, Dallas, TX 75001" -276281,Bose SoundSport Headphones,1,99.99,10/26/19 20:23,"89 6th St, Austin, TX 73301" -276282,Apple Airpods Headphones,1,150,10/19/19 20:47,"858 10th St, San Francisco, CA 94016" -276283,Wired Headphones,1,11.99,10/17/19 15:29,"733 Adams St, Portland, ME 04101" -276284,Bose SoundSport Headphones,1,99.99,10/26/19 10:15,"387 8th St, New York City, NY 10001" -276285,AA Batteries (4-pack),1,3.84,10/07/19 09:58,"321 South St, San Francisco, CA 94016" -276286,Wired Headphones,1,11.99,10/01/19 07:26,"420 11th St, Austin, TX 73301" -276287,Flatscreen TV,1,300,10/07/19 06:56,"258 Johnson St, Boston, MA 02215" -276288,USB-C Charging Cable,1,11.95,10/22/19 17:23,"923 Jefferson St, San Francisco, CA 94016" -276289,AAA Batteries (4-pack),1,2.99,10/30/19 16:08,"588 Jefferson St, Atlanta, GA 30301" -276290,USB-C Charging Cable,1,11.95,10/24/19 09:37,"689 Spruce St, Atlanta, GA 30301" -276291,AAA Batteries (4-pack),1,2.99,10/06/19 10:15,"864 Pine St, Seattle, WA 98101" -276292,Vareebadd Phone,1,400,10/10/19 23:16,"614 Spruce St, Boston, MA 02215" -276292,USB-C Charging Cable,1,11.95,10/10/19 23:16,"614 Spruce St, Boston, MA 02215" -276293,Lightning Charging Cable,1,14.95,10/23/19 13:17,"931 5th St, San Francisco, CA 94016" -276294,AA Batteries (4-pack),1,3.84,10/22/19 22:30,"658 Chestnut St, Dallas, TX 75001" -276295,Bose SoundSport Headphones,1,99.99,10/08/19 12:49,"555 Forest St, Seattle, WA 98101" -276296,USB-C Charging Cable,1,11.95,10/15/19 12:33,"642 Cherry St, Portland, OR 97035" -276297,AAA Batteries (4-pack),1,2.99,10/11/19 15:59,"44 Lincoln St, Seattle, WA 98101" -276298,Wired Headphones,1,11.99,10/10/19 17:38,"26 Madison St, Los Angeles, CA 90001" -276299,Macbook Pro Laptop,1,1700,10/20/19 20:14,"153 Washington St, New York City, NY 10001" -276300,Apple Airpods Headphones,1,150,10/04/19 19:19,"173 Wilson St, San Francisco, CA 94016" -276301,USB-C Charging Cable,1,11.95,10/30/19 23:22,"750 13th St, Portland, OR 97035" -276302,Apple Airpods Headphones,1,150,10/14/19 11:11,"523 5th St, San Francisco, CA 94016" -276303,Google Phone,1,600,10/20/19 11:04,"988 12th St, Los Angeles, CA 90001" -276304,Wired Headphones,1,11.99,10/04/19 10:38,"844 West St, Dallas, TX 75001" -276305,USB-C Charging Cable,1,11.95,10/06/19 16:34,"881 11th St, Seattle, WA 98101" -276306,ThinkPad Laptop,1,999.99,10/06/19 19:30,"33 Adams St, Portland, ME 04101" -276307,Lightning Charging Cable,1,14.95,10/26/19 23:34,"265 Willow St, New York City, NY 10001" -276308,27in FHD Monitor,1,149.99,10/24/19 23:33,"865 Adams St, Austin, TX 73301" -276309,Lightning Charging Cable,3,14.95,10/28/19 11:12,"186 Spruce St, Seattle, WA 98101" -276310,34in Ultrawide Monitor,1,379.99,10/08/19 14:42,"378 Lakeview St, Los Angeles, CA 90001" -276311,AA Batteries (4-pack),2,3.84,10/01/19 15:48,"832 Sunset St, Los Angeles, CA 90001" -276312,USB-C Charging Cable,1,11.95,10/27/19 01:08,"934 Willow St, New York City, NY 10001" -276313,Bose SoundSport Headphones,1,99.99,10/05/19 22:47,"77 8th St, Austin, TX 73301" -276314,AAA Batteries (4-pack),1,2.99,10/02/19 12:08,"375 11th St, New York City, NY 10001" -276315,AAA Batteries (4-pack),1,2.99,10/12/19 23:45,"8 8th St, New York City, NY 10001" -276316,Wired Headphones,1,11.99,10/22/19 19:16,"727 West St, Portland, OR 97035" -276317,AAA Batteries (4-pack),1,2.99,10/29/19 11:00,"287 Park St, San Francisco, CA 94016" -276318,USB-C Charging Cable,1,11.95,10/27/19 18:50,"752 Ridge St, New York City, NY 10001" -276319,Wired Headphones,1,11.99,10/17/19 22:17,"405 5th St, Atlanta, GA 30301" -276320,Lightning Charging Cable,1,14.95,10/15/19 19:40,"805 Madison St, New York City, NY 10001" -276321,Flatscreen TV,1,300,10/18/19 08:26,"209 Forest St, San Francisco, CA 94016" -276322,Apple Airpods Headphones,1,150,10/28/19 19:14,"142 Hickory St, Boston, MA 02215" -276323,AA Batteries (4-pack),1,3.84,10/24/19 20:54,"985 Lincoln St, Seattle, WA 98101" -276324,Lightning Charging Cable,1,14.95,10/14/19 09:32,"174 Jackson St, Los Angeles, CA 90001" -276325,ThinkPad Laptop,1,999.99,10/18/19 15:28,"56 4th St, San Francisco, CA 94016" -276326,USB-C Charging Cable,1,11.95,10/04/19 09:17,"581 11th St, Los Angeles, CA 90001" -276327,AA Batteries (4-pack),1,3.84,10/26/19 20:05,"472 8th St, Atlanta, GA 30301" -276328,ThinkPad Laptop,1,999.99,10/23/19 21:30,"811 4th St, Los Angeles, CA 90001" -276329,AAA Batteries (4-pack),1,2.99,10/20/19 09:55,"402 Meadow St, Los Angeles, CA 90001" -276330,27in FHD Monitor,1,149.99,10/31/19 13:34,"542 14th St, San Francisco, CA 94016" -276331,27in FHD Monitor,1,149.99,10/11/19 05:28,"662 Ridge St, Los Angeles, CA 90001" -276332,Lightning Charging Cable,1,14.95,10/09/19 17:11,"219 River St, Boston, MA 02215" -276332,Bose SoundSport Headphones,2,99.99,10/09/19 17:11,"219 River St, Boston, MA 02215" -276333,27in FHD Monitor,1,149.99,10/08/19 11:58,"569 Walnut St, Los Angeles, CA 90001" -276334,Flatscreen TV,1,300,10/10/19 11:16,"570 13th St, Austin, TX 73301" -276335,Wired Headphones,1,11.99,10/17/19 21:31,"852 Madison St, Seattle, WA 98101" -276336,USB-C Charging Cable,1,11.95,10/08/19 22:17,"548 Lakeview St, Boston, MA 02215" -276337,Lightning Charging Cable,1,14.95,10/29/19 16:15,"447 Cedar St, San Francisco, CA 94016" -276338,ThinkPad Laptop,1,999.99,10/15/19 17:35,"817 8th St, Austin, TX 73301" -276339,USB-C Charging Cable,1,11.95,10/06/19 22:32,"123 Hill St, New York City, NY 10001" -276340,AA Batteries (4-pack),1,3.84,10/11/19 15:29,"628 Walnut St, San Francisco, CA 94016" -276341,20in Monitor,1,109.99,10/20/19 17:03,"779 North St, New York City, NY 10001" -276342,USB-C Charging Cable,1,11.95,10/17/19 22:17,"38 Dogwood St, Los Angeles, CA 90001" -276343,Wired Headphones,1,11.99,10/23/19 17:00,"20 Washington St, San Francisco, CA 94016" -276344,Apple Airpods Headphones,1,150,10/29/19 21:13,"261 6th St, New York City, NY 10001" -276345,Apple Airpods Headphones,1,150,10/17/19 19:15,"17 Chestnut St, New York City, NY 10001" -276346,Wired Headphones,1,11.99,10/03/19 19:12,"732 4th St, San Francisco, CA 94016" -276347,AAA Batteries (4-pack),1,2.99,10/05/19 18:30,"361 South St, Los Angeles, CA 90001" -276348,Vareebadd Phone,1,400,10/19/19 10:53,"749 Jefferson St, Los Angeles, CA 90001" -276349,AAA Batteries (4-pack),1,2.99,10/29/19 19:17,"816 Forest St, Los Angeles, CA 90001" -276350,Google Phone,1,600,10/29/19 02:39,"251 8th St, San Francisco, CA 94016" -276351,Wired Headphones,2,11.99,10/17/19 15:16,"140 Meadow St, San Francisco, CA 94016" -276352,Apple Airpods Headphones,1,150,10/07/19 18:23,"166 13th St, Portland, ME 04101" -276353,USB-C Charging Cable,1,11.95,10/19/19 16:56,"696 1st St, Boston, MA 02215" -276354,Wired Headphones,1,11.99,10/10/19 14:22,"740 West St, Los Angeles, CA 90001" -276355,Wired Headphones,1,11.99,10/13/19 20:32,"131 Pine St, San Francisco, CA 94016" -276356,Wired Headphones,1,11.99,10/17/19 06:51,"443 7th St, San Francisco, CA 94016" -276357,AAA Batteries (4-pack),1,2.99,10/27/19 16:25,"410 Dogwood St, Los Angeles, CA 90001" -276357,27in FHD Monitor,1,149.99,10/27/19 16:25,"410 Dogwood St, Los Angeles, CA 90001" -276358,iPhone,1,700,10/28/19 11:52,"25 Lincoln St, Los Angeles, CA 90001" -276359,AA Batteries (4-pack),2,3.84,10/24/19 22:48,"415 Jefferson St, Los Angeles, CA 90001" -276360,Bose SoundSport Headphones,1,99.99,10/17/19 10:43,"741 Washington St, Seattle, WA 98101" -276361,USB-C Charging Cable,1,11.95,10/04/19 20:31,"372 Willow St, New York City, NY 10001" -276362,USB-C Charging Cable,1,11.95,10/06/19 11:54,"612 South St, Dallas, TX 75001" -276363,Bose SoundSport Headphones,1,99.99,10/26/19 10:05,"761 Lakeview St, San Francisco, CA 94016" -276364,Wired Headphones,1,11.99,10/05/19 09:06,"585 Washington St, New York City, NY 10001" -276365,27in FHD Monitor,1,149.99,10/09/19 08:43,"476 Hill St, New York City, NY 10001" -276366,USB-C Charging Cable,1,11.95,10/31/19 19:04,"783 Madison St, Dallas, TX 75001" -276367,Lightning Charging Cable,1,14.95,10/25/19 18:30,"239 Chestnut St, Dallas, TX 75001" -276368,AA Batteries (4-pack),1,3.84,10/28/19 05:41,"177 Lake St, Atlanta, GA 30301" -276369,27in 4K Gaming Monitor,1,389.99,10/27/19 15:17,"778 Lake St, Dallas, TX 75001" -276370,Lightning Charging Cable,1,14.95,10/01/19 22:25,"330 North St, San Francisco, CA 94016" -276371,Lightning Charging Cable,1,14.95,10/11/19 21:07,"26 Spruce St, Los Angeles, CA 90001" -276372,Apple Airpods Headphones,1,150,10/05/19 20:28,"995 Jefferson St, Portland, OR 97035" -276373,USB-C Charging Cable,1,11.95,10/15/19 19:09,"215 Elm St, New York City, NY 10001" -276374,Macbook Pro Laptop,1,1700,10/06/19 08:30,"45 Chestnut St, San Francisco, CA 94016" -276375,27in 4K Gaming Monitor,1,389.99,10/17/19 07:39,"469 Madison St, Dallas, TX 75001" -276376,AAA Batteries (4-pack),1,2.99,10/02/19 13:58,"933 Madison St, Boston, MA 02215" -276377,34in Ultrawide Monitor,1,379.99,10/07/19 23:08,"231 Cedar St, San Francisco, CA 94016" -276378,Wired Headphones,1,11.99,10/05/19 19:40,"385 Meadow St, Los Angeles, CA 90001" -276379,Bose SoundSport Headphones,1,99.99,10/30/19 19:37,"550 Chestnut St, New York City, NY 10001" -276380,USB-C Charging Cable,1,11.95,10/13/19 20:01,"433 4th St, New York City, NY 10001" -276381,Lightning Charging Cable,1,14.95,10/05/19 18:27,"852 Chestnut St, San Francisco, CA 94016" -276382,Flatscreen TV,1,300,10/02/19 18:30,"401 Jackson St, New York City, NY 10001" -276383,27in 4K Gaming Monitor,1,389.99,10/08/19 23:19,"76 Meadow St, San Francisco, CA 94016" -276384,AAA Batteries (4-pack),2,2.99,10/27/19 18:26,"812 Highland St, San Francisco, CA 94016" -276385,AAA Batteries (4-pack),1,2.99,10/23/19 15:16,"940 Jefferson St, Boston, MA 02215" -276386,27in 4K Gaming Monitor,1,389.99,10/14/19 21:29,"716 14th St, San Francisco, CA 94016" -276387,Wired Headphones,1,11.99,10/17/19 11:52,"332 Lake St, Seattle, WA 98101" -276388,ThinkPad Laptop,1,999.99,10/26/19 03:30,"572 Johnson St, Los Angeles, CA 90001" -276389,Macbook Pro Laptop,1,1700,10/11/19 19:44,"429 5th St, Portland, OR 97035" -276390,Wired Headphones,1,11.99,10/19/19 12:52,"664 1st St, New York City, NY 10001" -276391,Lightning Charging Cable,1,14.95,10/30/19 14:35,"446 Adams St, San Francisco, CA 94016" -276392,iPhone,1,700,10/22/19 19:12,"479 Center St, San Francisco, CA 94016" -276393,AA Batteries (4-pack),2,3.84,10/12/19 09:03,"259 South St, Atlanta, GA 30301" -276393,AA Batteries (4-pack),1,3.84,10/12/19 09:03,"259 South St, Atlanta, GA 30301" -276394,USB-C Charging Cable,1,11.95,10/24/19 06:50,"48 10th St, Portland, OR 97035" -276395,USB-C Charging Cable,1,11.95,10/05/19 22:43,"128 Elm St, New York City, NY 10001" -276396,ThinkPad Laptop,1,999.99,10/06/19 07:36,"366 9th St, Seattle, WA 98101" -276397,USB-C Charging Cable,1,11.95,10/28/19 17:34,"421 Lakeview St, San Francisco, CA 94016" -276398,27in FHD Monitor,1,149.99,10/23/19 21:05,"556 Jackson St, Dallas, TX 75001" -276399,Bose SoundSport Headphones,1,99.99,10/09/19 11:56,"750 14th St, Seattle, WA 98101" -276400,27in 4K Gaming Monitor,1,389.99,10/24/19 19:04,"412 Church St, Dallas, TX 75001" -276401,Wired Headphones,1,11.99,10/29/19 16:14,"362 Spruce St, Seattle, WA 98101" -276402,Lightning Charging Cable,1,14.95,10/25/19 20:14,"684 13th St, Boston, MA 02215" -276403,Lightning Charging Cable,1,14.95,10/01/19 18:55,"248 Washington St, Atlanta, GA 30301" -276404,USB-C Charging Cable,1,11.95,10/29/19 10:49,"605 Wilson St, Seattle, WA 98101" -276405,Bose SoundSport Headphones,1,99.99,10/08/19 15:20,"293 Meadow St, New York City, NY 10001" -276406,AAA Batteries (4-pack),1,2.99,10/08/19 17:55,"643 Highland St, Los Angeles, CA 90001" -276407,Apple Airpods Headphones,1,150,10/24/19 08:04,"369 River St, San Francisco, CA 94016" -276408,34in Ultrawide Monitor,1,379.99,10/21/19 10:36,"674 6th St, Los Angeles, CA 90001" -276409,Lightning Charging Cable,1,14.95,10/13/19 13:25,"733 Spruce St, New York City, NY 10001" -276410,Wired Headphones,1,11.99,10/28/19 18:45,"277 Walnut St, Portland, OR 97035" -276411,Flatscreen TV,1,300,10/03/19 06:32,"800 Center St, San Francisco, CA 94016" -,,,,, -276412,Apple Airpods Headphones,1,150,10/03/19 15:41,"885 Sunset St, San Francisco, CA 94016" -276413,USB-C Charging Cable,1,11.95,10/30/19 12:29,"393 Lincoln St, New York City, NY 10001" -276414,AA Batteries (4-pack),1,3.84,10/27/19 17:39,"965 Park St, Seattle, WA 98101" -276415,Macbook Pro Laptop,1,1700,10/14/19 11:24,"731 2nd St, Boston, MA 02215" -276416,27in FHD Monitor,1,149.99,10/18/19 20:36,"438 Highland St, Seattle, WA 98101" -276417,Lightning Charging Cable,1,14.95,10/14/19 17:38,"615 4th St, Los Angeles, CA 90001" -276418,34in Ultrawide Monitor,1,379.99,10/24/19 10:00,"670 Center St, San Francisco, CA 94016" -276419,27in 4K Gaming Monitor,1,389.99,10/02/19 12:42,"324 South St, Seattle, WA 98101" -276420,Apple Airpods Headphones,1,150,10/08/19 12:42,"836 6th St, San Francisco, CA 94016" -276421,Wired Headphones,1,11.99,10/30/19 12:02,"770 7th St, Dallas, TX 75001" -276422,USB-C Charging Cable,1,11.95,10/24/19 19:13,"948 Dogwood St, San Francisco, CA 94016" -276423,Apple Airpods Headphones,1,150,10/25/19 15:13,"866 Lakeview St, New York City, NY 10001" -276424,USB-C Charging Cable,1,11.95,10/18/19 22:36,"871 Adams St, Seattle, WA 98101" -276425,AA Batteries (4-pack),1,3.84,10/10/19 08:39,"937 7th St, San Francisco, CA 94016" -276426,Lightning Charging Cable,1,14.95,10/28/19 08:10,"440 Lakeview St, Portland, OR 97035" -276427,Google Phone,1,600,10/11/19 09:25,"497 Forest St, New York City, NY 10001" -276427,Bose SoundSport Headphones,1,99.99,10/11/19 09:25,"497 Forest St, New York City, NY 10001" -276428,27in FHD Monitor,1,149.99,10/18/19 16:35,"639 Jackson St, New York City, NY 10001" -276429,AA Batteries (4-pack),2,3.84,10/14/19 12:33,"280 10th St, Los Angeles, CA 90001" -276430,AA Batteries (4-pack),1,3.84,10/13/19 20:13,"706 Cedar St, Seattle, WA 98101" -276431,USB-C Charging Cable,1,11.95,10/04/19 15:06,"636 6th St, Portland, OR 97035" -276432,Lightning Charging Cable,1,14.95,10/08/19 13:58,"280 1st St, Los Angeles, CA 90001" -276433,27in FHD Monitor,1,149.99,10/08/19 21:36,"695 Center St, Los Angeles, CA 90001" -276434,27in FHD Monitor,1,149.99,10/31/19 17:27,"926 Sunset St, San Francisco, CA 94016" -276435,Apple Airpods Headphones,1,150,10/29/19 16:27,"465 Elm St, New York City, NY 10001" -276436,Wired Headphones,1,11.99,10/21/19 17:20,"781 4th St, Los Angeles, CA 90001" -276437,iPhone,1,700,10/17/19 11:50,"429 14th St, Los Angeles, CA 90001" -276438,Bose SoundSport Headphones,1,99.99,10/08/19 19:50,"798 8th St, San Francisco, CA 94016" -276439,27in 4K Gaming Monitor,1,389.99,10/20/19 20:19,"841 2nd St, Boston, MA 02215" -276440,Flatscreen TV,1,300,10/12/19 18:50,"886 Park St, San Francisco, CA 94016" -276441,Vareebadd Phone,1,400,10/02/19 14:12,"967 2nd St, San Francisco, CA 94016" -276442,Apple Airpods Headphones,1,150,10/01/19 09:45,"157 Meadow St, Boston, MA 02215" -276443,USB-C Charging Cable,1,11.95,10/30/19 16:09,"116 West St, Seattle, WA 98101" -276444,Wired Headphones,1,11.99,10/27/19 13:20,"8 12th St, Boston, MA 02215" -276445,20in Monitor,1,109.99,10/04/19 20:37,"342 Lincoln St, New York City, NY 10001" -276446,AA Batteries (4-pack),1,3.84,10/06/19 08:43,"624 Church St, San Francisco, CA 94016" -276447,AA Batteries (4-pack),1,3.84,10/11/19 20:39,"622 12th St, Seattle, WA 98101" -276448,Apple Airpods Headphones,1,150,10/24/19 11:18,"656 South St, New York City, NY 10001" -276449,iPhone,1,700,10/17/19 00:05,"487 13th St, Boston, MA 02215" -,,,,, -276450,AA Batteries (4-pack),1,3.84,10/07/19 00:01,"216 Madison St, New York City, NY 10001" -276451,AA Batteries (4-pack),1,3.84,10/16/19 21:01,"840 7th St, Boston, MA 02215" -276452,USB-C Charging Cable,1,11.95,10/12/19 23:25,"150 Center St, Dallas, TX 75001" -276453,ThinkPad Laptop,1,999.99,10/31/19 14:07,"890 Elm St, Atlanta, GA 30301" -276454,Lightning Charging Cable,1,14.95,10/23/19 10:16,"237 14th St, Portland, OR 97035" -276455,AA Batteries (4-pack),1,3.84,10/03/19 14:17,"397 Jefferson St, Seattle, WA 98101" -276456,Wired Headphones,1,11.99,10/17/19 22:29,"110 Spruce St, San Francisco, CA 94016" -276457,AAA Batteries (4-pack),2,2.99,10/12/19 21:43,"432 14th St, San Francisco, CA 94016" -276458,Bose SoundSport Headphones,1,99.99,10/27/19 10:44,"54 13th St, Los Angeles, CA 90001" -276459,AA Batteries (4-pack),1,3.84,10/14/19 19:46,"51 Elm St, San Francisco, CA 94016" -276460,Wired Headphones,1,11.99,10/27/19 10:09,"613 Park St, Boston, MA 02215" -276461,AAA Batteries (4-pack),1,2.99,10/12/19 13:52,"739 Madison St, San Francisco, CA 94016" -276462,ThinkPad Laptop,1,999.99,10/09/19 15:23,"527 8th St, Austin, TX 73301" -276463,34in Ultrawide Monitor,1,379.99,10/14/19 09:49,"576 Center St, Los Angeles, CA 90001" -276464,27in FHD Monitor,1,149.99,10/06/19 16:38,"39 2nd St, Atlanta, GA 30301" -276465,27in 4K Gaming Monitor,1,389.99,10/21/19 19:42,"565 13th St, New York City, NY 10001" -276466,27in FHD Monitor,1,149.99,10/05/19 19:27,"967 9th St, Dallas, TX 75001" -276467,USB-C Charging Cable,1,11.95,10/05/19 20:22,"398 2nd St, Seattle, WA 98101" -276468,Lightning Charging Cable,1,14.95,10/25/19 20:36,"756 Highland St, Seattle, WA 98101" -276469,Vareebadd Phone,1,400,10/22/19 18:57,"577 10th St, Seattle, WA 98101" -276470,AA Batteries (4-pack),1,3.84,10/15/19 14:28,"784 North St, Seattle, WA 98101" -276471,34in Ultrawide Monitor,1,379.99,10/11/19 11:15,"956 5th St, San Francisco, CA 94016" -276472,20in Monitor,1,109.99,10/27/19 00:14,"853 Hickory St, Atlanta, GA 30301" -276473,AAA Batteries (4-pack),2,2.99,10/29/19 18:12,"951 Jackson St, Atlanta, GA 30301" -276474,ThinkPad Laptop,1,999.99,10/06/19 21:52,"189 5th St, San Francisco, CA 94016" -276475,AAA Batteries (4-pack),2,2.99,10/15/19 16:29,"585 Church St, San Francisco, CA 94016" -276476,Flatscreen TV,1,300,10/16/19 00:16,"930 Main St, New York City, NY 10001" -276476,34in Ultrawide Monitor,1,379.99,10/16/19 00:16,"930 Main St, New York City, NY 10001" -276477,USB-C Charging Cable,1,11.95,10/10/19 19:32,"722 Walnut St, Austin, TX 73301" -276478,Wired Headphones,1,11.99,10/15/19 21:56,"748 Meadow St, San Francisco, CA 94016" -276479,USB-C Charging Cable,1,11.95,10/21/19 19:13,"762 Sunset St, Atlanta, GA 30301" -276480,Google Phone,1,600,10/12/19 01:11,"751 Adams St, Seattle, WA 98101" -276480,Bose SoundSport Headphones,1,99.99,10/12/19 01:11,"751 Adams St, Seattle, WA 98101" -276481,Lightning Charging Cable,2,14.95,10/29/19 17:00,"508 Main St, Atlanta, GA 30301" -276482,AAA Batteries (4-pack),1,2.99,10/26/19 22:10,"575 Sunset St, San Francisco, CA 94016" -276483,AA Batteries (4-pack),1,3.84,10/12/19 14:23,"247 Maple St, San Francisco, CA 94016" -276484,Lightning Charging Cable,1,14.95,10/03/19 18:43,"422 5th St, Boston, MA 02215" -276485,Apple Airpods Headphones,1,150,10/03/19 12:00,"446 Spruce St, San Francisco, CA 94016" -276486,AAA Batteries (4-pack),1,2.99,10/21/19 13:01,"390 Cherry St, Atlanta, GA 30301" -276487,Flatscreen TV,1,300,10/06/19 13:16,"310 Center St, Boston, MA 02215" -276488,Bose SoundSport Headphones,1,99.99,10/20/19 13:04,"872 Adams St, Los Angeles, CA 90001" -276489,Apple Airpods Headphones,1,150,10/14/19 14:36,"98 7th St, New York City, NY 10001" -276490,27in 4K Gaming Monitor,1,389.99,10/07/19 16:14,"618 Jefferson St, San Francisco, CA 94016" -276491,34in Ultrawide Monitor,1,379.99,10/07/19 22:12,"476 Main St, Austin, TX 73301" -276492,Google Phone,1,600,10/24/19 16:35,"614 Madison St, Los Angeles, CA 90001" -276493,Lightning Charging Cable,1,14.95,10/23/19 18:19,"437 14th St, Dallas, TX 75001" -276494,27in FHD Monitor,1,149.99,10/12/19 20:11,"105 Park St, Los Angeles, CA 90001" -276495,Lightning Charging Cable,1,14.95,10/20/19 21:09,"518 6th St, Boston, MA 02215" -276496,ThinkPad Laptop,1,999.99,10/31/19 09:21,"156 Hill St, Austin, TX 73301" -276497,AA Batteries (4-pack),3,3.84,10/04/19 11:15,"713 Jackson St, San Francisco, CA 94016" -276498,AAA Batteries (4-pack),1,2.99,10/20/19 17:35,"235 1st St, Austin, TX 73301" -276499,AAA Batteries (4-pack),2,2.99,10/24/19 07:55,"145 5th St, Boston, MA 02215" -276500,Apple Airpods Headphones,1,150,10/30/19 15:26,"750 14th St, San Francisco, CA 94016" -276501,AAA Batteries (4-pack),2,2.99,10/18/19 16:26,"272 14th St, Portland, OR 97035" -276502,AAA Batteries (4-pack),1,2.99,10/24/19 07:05,"710 Adams St, San Francisco, CA 94016" -276503,AAA Batteries (4-pack),1,2.99,10/08/19 01:04,"481 Adams St, Atlanta, GA 30301" -276504,AA Batteries (4-pack),2,3.84,10/16/19 12:47,"218 Hickory St, Atlanta, GA 30301" -276505,Lightning Charging Cable,1,14.95,10/14/19 14:18,"153 9th St, New York City, NY 10001" -276506,USB-C Charging Cable,1,11.95,10/21/19 08:33,"843 Park St, Los Angeles, CA 90001" -276507,Lightning Charging Cable,1,14.95,10/27/19 15:51,"606 Washington St, Atlanta, GA 30301" -276508,27in 4K Gaming Monitor,1,389.99,10/16/19 21:31,"149 1st St, Portland, OR 97035" -276509,Apple Airpods Headphones,1,150,10/21/19 13:02,"79 Elm St, Boston, MA 02215" -276510,Lightning Charging Cable,1,14.95,10/10/19 11:10,"527 Maple St, Dallas, TX 75001" -276511,Lightning Charging Cable,1,14.95,10/02/19 04:49,"3 Dogwood St, Boston, MA 02215" -276512,Bose SoundSport Headphones,1,99.99,10/17/19 17:52,"152 1st St, Seattle, WA 98101" -276513,Lightning Charging Cable,1,14.95,10/15/19 17:17,"376 Ridge St, Dallas, TX 75001" -276514,Flatscreen TV,1,300,10/14/19 20:02,"580 Hill St, San Francisco, CA 94016" -276515,AAA Batteries (4-pack),1,2.99,10/11/19 19:44,"565 2nd St, New York City, NY 10001" -276515,AA Batteries (4-pack),1,3.84,10/11/19 19:44,"565 2nd St, New York City, NY 10001" -276516,Wired Headphones,1,11.99,10/15/19 10:47,"961 Maple St, San Francisco, CA 94016" -276517,AA Batteries (4-pack),1,3.84,10/30/19 23:37,"990 9th St, San Francisco, CA 94016" -276518,USB-C Charging Cable,1,11.95,10/14/19 23:06,"167 7th St, New York City, NY 10001" -276519,Wired Headphones,1,11.99,10/26/19 17:47,"763 North St, Seattle, WA 98101" -276520,Bose SoundSport Headphones,1,99.99,10/06/19 14:07,"220 Dogwood St, San Francisco, CA 94016" -276521,34in Ultrawide Monitor,1,379.99,10/28/19 20:05,"869 Lincoln St, New York City, NY 10001" -276522,AAA Batteries (4-pack),1,2.99,10/19/19 22:04,"697 Lakeview St, Portland, ME 04101" -276523,Lightning Charging Cable,1,14.95,10/18/19 10:57,"758 Church St, Austin, TX 73301" -276524,Wired Headphones,1,11.99,10/29/19 12:53,"785 Main St, Los Angeles, CA 90001" -276525,27in 4K Gaming Monitor,1,389.99,10/09/19 11:43,"600 Lincoln St, New York City, NY 10001" -276526,AAA Batteries (4-pack),2,2.99,10/04/19 22:01,"558 Maple St, Seattle, WA 98101" -276527,Lightning Charging Cable,1,14.95,10/05/19 21:36,"515 West St, Dallas, TX 75001" -276528,Wired Headphones,1,11.99,10/21/19 21:06,"837 Madison St, Austin, TX 73301" -276529,Apple Airpods Headphones,1,150,10/04/19 19:51,"549 Cedar St, San Francisco, CA 94016" -276530,USB-C Charging Cable,2,11.95,10/29/19 16:14,"633 Lincoln St, San Francisco, CA 94016" -276531,Lightning Charging Cable,1,14.95,10/21/19 08:44,"703 1st St, Dallas, TX 75001" -276532,AAA Batteries (4-pack),1,2.99,10/03/19 11:54,"410 Elm St, Boston, MA 02215" -276533,AA Batteries (4-pack),1,3.84,10/25/19 11:45,"690 Elm St, Dallas, TX 75001" -276534,AAA Batteries (4-pack),1,2.99,10/31/19 20:38,"677 Washington St, Boston, MA 02215" -276535,Lightning Charging Cable,1,14.95,10/07/19 08:27,"993 11th St, New York City, NY 10001" -276536,ThinkPad Laptop,1,999.99,10/04/19 15:28,"701 Hill St, Dallas, TX 75001" -276537,Wired Headphones,1,11.99,10/15/19 19:09,"807 Hill St, Los Angeles, CA 90001" -276537,Bose SoundSport Headphones,1,99.99,10/15/19 19:09,"807 Hill St, Los Angeles, CA 90001" -276538,Apple Airpods Headphones,1,150,10/25/19 21:26,"385 Highland St, Seattle, WA 98101" -276539,34in Ultrawide Monitor,1,379.99,10/18/19 18:23,"573 Washington St, Los Angeles, CA 90001" -276540,AAA Batteries (4-pack),1,2.99,10/24/19 12:05,"957 14th St, New York City, NY 10001" -276541,Wired Headphones,1,11.99,10/05/19 08:19,"89 South St, San Francisco, CA 94016" -276542,Bose SoundSport Headphones,1,99.99,10/25/19 14:06,"433 Johnson St, San Francisco, CA 94016" -276543,Lightning Charging Cable,1,14.95,10/10/19 21:51,"944 Center St, San Francisco, CA 94016" -276544,AAA Batteries (4-pack),1,2.99,10/29/19 19:12,"361 Maple St, Atlanta, GA 30301" -276545,27in FHD Monitor,1,149.99,10/12/19 21:59,"579 Willow St, New York City, NY 10001" -276546,27in FHD Monitor,1,149.99,10/12/19 09:36,"461 5th St, Atlanta, GA 30301" -276547,Lightning Charging Cable,1,14.95,10/05/19 17:57,"637 Hickory St, Boston, MA 02215" -276548,Apple Airpods Headphones,1,150,10/28/19 09:27,"591 West St, Los Angeles, CA 90001" -276549,Lightning Charging Cable,1,14.95,10/26/19 12:42,"692 South St, Seattle, WA 98101" -276550,AAA Batteries (4-pack),1,2.99,10/02/19 23:46,"929 Spruce St, San Francisco, CA 94016" -276551,AAA Batteries (4-pack),1,2.99,10/23/19 09:57,"830 Lake St, Boston, MA 02215" -276552,Lightning Charging Cable,1,14.95,10/07/19 16:57,"636 Church St, Portland, OR 97035" -276553,27in 4K Gaming Monitor,1,389.99,10/03/19 10:52,"561 8th St, Seattle, WA 98101" -276554,AA Batteries (4-pack),2,3.84,10/01/19 09:36,"811 4th St, Los Angeles, CA 90001" -276555,USB-C Charging Cable,1,11.95,10/05/19 23:05,"385 Dogwood St, Los Angeles, CA 90001" -276556,Apple Airpods Headphones,1,150,10/28/19 20:36,"83 Madison St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -276557,AAA Batteries (4-pack),1,2.99,10/07/19 20:38,"525 Hill St, Los Angeles, CA 90001" -276558,27in 4K Gaming Monitor,1,389.99,10/15/19 18:05,"77 South St, Boston, MA 02215" -276559,ThinkPad Laptop,1,999.99,10/21/19 14:34,"805 Jefferson St, New York City, NY 10001" -276560,Apple Airpods Headphones,1,150,10/26/19 08:56,"684 River St, Dallas, TX 75001" -276561,Lightning Charging Cable,1,14.95,10/27/19 21:09,"329 12th St, Los Angeles, CA 90001" -276562,Wired Headphones,1,11.99,10/11/19 18:34,"418 10th St, Los Angeles, CA 90001" -276563,AA Batteries (4-pack),1,3.84,10/17/19 12:51,"932 Lincoln St, New York City, NY 10001" -276564,Lightning Charging Cable,1,14.95,10/16/19 11:37,"395 5th St, San Francisco, CA 94016" -276565,Wired Headphones,1,11.99,10/10/19 08:50,"774 1st St, New York City, NY 10001" -276566,AA Batteries (4-pack),1,3.84,10/12/19 19:39,"790 12th St, Austin, TX 73301" -276567,AAA Batteries (4-pack),1,2.99,10/22/19 08:43,"182 Willow St, Boston, MA 02215" -276568,AA Batteries (4-pack),1,3.84,10/22/19 11:02,"409 7th St, Boston, MA 02215" -276569,Flatscreen TV,1,300,10/03/19 13:02,"112 Ridge St, Boston, MA 02215" -276570,Lightning Charging Cable,1,14.95,10/19/19 09:56,"529 10th St, San Francisco, CA 94016" -276571,Flatscreen TV,1,300,10/02/19 18:15,"999 Spruce St, Dallas, TX 75001" -276572,27in FHD Monitor,1,149.99,10/29/19 12:48,"79 North St, Boston, MA 02215" -276573,iPhone,1,700,10/05/19 01:31,"979 Meadow St, Portland, OR 97035" -276573,Apple Airpods Headphones,1,150,10/05/19 01:31,"979 Meadow St, Portland, OR 97035" -276574,27in FHD Monitor,1,149.99,10/06/19 17:29,"476 Hill St, Dallas, TX 75001" -276575,27in 4K Gaming Monitor,1,389.99,10/19/19 08:43,"963 Main St, Seattle, WA 98101" -276576,Macbook Pro Laptop,1,1700,10/01/19 15:10,"475 River St, San Francisco, CA 94016" -276577,AAA Batteries (4-pack),1,2.99,10/25/19 15:10,"885 Chestnut St, New York City, NY 10001" -276578,Google Phone,1,600,10/13/19 13:50,"449 5th St, San Francisco, CA 94016" -276578,Wired Headphones,1,11.99,10/13/19 13:50,"449 5th St, San Francisco, CA 94016" -276579,Wired Headphones,2,11.99,10/03/19 12:54,"650 Jackson St, Dallas, TX 75001" -276580,Macbook Pro Laptop,1,1700,10/01/19 17:39,"208 Jackson St, Austin, TX 73301" -276581,Wired Headphones,1,11.99,10/18/19 11:23,"480 5th St, Los Angeles, CA 90001" -276582,Bose SoundSport Headphones,1,99.99,10/26/19 07:22,"306 Jackson St, Portland, OR 97035" -276583,AAA Batteries (4-pack),2,2.99,10/31/19 15:18,"589 Lincoln St, San Francisco, CA 94016" -276584,Lightning Charging Cable,1,14.95,10/15/19 17:18,"973 Cherry St, Los Angeles, CA 90001" -276585,Wired Headphones,1,11.99,10/16/19 08:42,"872 Adams St, Dallas, TX 75001" -276586,20in Monitor,1,109.99,10/23/19 17:04,"267 Madison St, San Francisco, CA 94016" -276587,AAA Batteries (4-pack),4,2.99,10/05/19 23:03,"316 South St, San Francisco, CA 94016" -276588,AAA Batteries (4-pack),3,2.99,10/05/19 09:41,"789 Hickory St, Los Angeles, CA 90001" -276589,Wired Headphones,1,11.99,10/04/19 22:59,"730 14th St, San Francisco, CA 94016" -276590,USB-C Charging Cable,1,11.95,10/10/19 12:46,"186 11th St, San Francisco, CA 94016" -276591,27in FHD Monitor,1,149.99,10/18/19 10:05,"378 Hickory St, Los Angeles, CA 90001" -276592,USB-C Charging Cable,1,11.95,10/08/19 18:52,"680 Wilson St, Los Angeles, CA 90001" -276593,Lightning Charging Cable,1,14.95,10/16/19 12:24,"120 South St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -276594,34in Ultrawide Monitor,1,379.99,10/13/19 23:10,"535 Washington St, New York City, NY 10001" -276595,Wired Headphones,1,11.99,10/03/19 21:19,"681 8th St, New York City, NY 10001" -276596,Apple Airpods Headphones,1,150,10/14/19 14:00,"127 6th St, New York City, NY 10001" -276597,ThinkPad Laptop,1,999.99,10/14/19 19:36,"226 Washington St, Austin, TX 73301" -276598,Macbook Pro Laptop,1,1700,10/31/19 04:02,"232 Sunset St, New York City, NY 10001" -276599,Lightning Charging Cable,1,14.95,10/12/19 14:42,"550 Willow St, Portland, OR 97035" -276600,Wired Headphones,1,11.99,10/12/19 11:32,"158 Highland St, Portland, ME 04101" -276601,AAA Batteries (4-pack),1,2.99,10/11/19 14:19,"482 5th St, Dallas, TX 75001" -276602,27in FHD Monitor,1,149.99,10/17/19 13:22,"357 Lakeview St, Boston, MA 02215" -276603,Apple Airpods Headphones,1,150,10/23/19 07:29,"389 Washington St, Seattle, WA 98101" -276604,Apple Airpods Headphones,1,150,10/22/19 17:31,"213 11th St, Boston, MA 02215" -276605,34in Ultrawide Monitor,1,379.99,10/22/19 22:21,"693 Adams St, Los Angeles, CA 90001" -276606,27in 4K Gaming Monitor,1,389.99,10/22/19 11:50,"253 Elm St, Boston, MA 02215" -276607,27in FHD Monitor,1,149.99,10/22/19 08:32,"821 South St, Atlanta, GA 30301" -276608,iPhone,1,700,10/31/19 15:28,"882 Cedar St, San Francisco, CA 94016" -276609,AAA Batteries (4-pack),1,2.99,10/24/19 19:50,"822 West St, Dallas, TX 75001" -276610,Lightning Charging Cable,1,14.95,10/22/19 09:33,"374 Pine St, New York City, NY 10001" -276611,27in FHD Monitor,1,149.99,10/28/19 06:53,"888 Maple St, New York City, NY 10001" -276612,27in 4K Gaming Monitor,1,389.99,10/24/19 20:59,"655 Church St, San Francisco, CA 94016" -276613,Google Phone,1,600,10/17/19 09:27,"681 12th St, Austin, TX 73301" -276614,Lightning Charging Cable,1,14.95,10/15/19 09:20,"153 Hickory St, San Francisco, CA 94016" -276615,Wired Headphones,1,11.99,10/04/19 08:12,"196 Pine St, Dallas, TX 75001" -276616,34in Ultrawide Monitor,1,379.99,10/23/19 21:20,"606 Dogwood St, San Francisco, CA 94016" -276617,Flatscreen TV,1,300,10/10/19 21:10,"193 1st St, Atlanta, GA 30301" -276618,AAA Batteries (4-pack),3,2.99,10/31/19 10:40,"604 10th St, San Francisco, CA 94016" -276619,34in Ultrawide Monitor,1,379.99,10/12/19 21:21,"780 12th St, San Francisco, CA 94016" -276620,Bose SoundSport Headphones,1,99.99,10/26/19 17:26,"674 Sunset St, San Francisco, CA 94016" -276621,Wired Headphones,1,11.99,10/24/19 13:40,"780 Center St, Austin, TX 73301" -276622,Wired Headphones,1,11.99,10/09/19 17:35,"959 River St, Dallas, TX 75001" -276622,20in Monitor,1,109.99,10/09/19 17:35,"959 River St, Dallas, TX 75001" -276623,34in Ultrawide Monitor,1,379.99,10/26/19 19:15,"2 Sunset St, Seattle, WA 98101" -276624,Apple Airpods Headphones,1,150,10/03/19 11:56,"225 Forest St, Dallas, TX 75001" -276625,ThinkPad Laptop,1,999.99,10/28/19 23:24,"260 4th St, Seattle, WA 98101" -276626,Google Phone,1,600,10/03/19 08:18,"177 Dogwood St, New York City, NY 10001" -276627,Macbook Pro Laptop,1,1700,10/07/19 00:04,"314 Meadow St, San Francisco, CA 94016" -276628,Lightning Charging Cable,1,14.95,10/06/19 22:04,"269 Washington St, Los Angeles, CA 90001" -276629,Lightning Charging Cable,1,14.95,10/20/19 15:10,"735 Dogwood St, San Francisco, CA 94016" -276630,Lightning Charging Cable,1,14.95,10/18/19 11:45,"9 Pine St, San Francisco, CA 94016" -276631,Google Phone,1,600,10/02/19 13:18,"173 Cherry St, Dallas, TX 75001" -276632,20in Monitor,1,109.99,10/29/19 14:38,"628 Sunset St, San Francisco, CA 94016" -276633,Wired Headphones,1,11.99,10/02/19 03:19,"670 Willow St, Dallas, TX 75001" -276634,Lightning Charging Cable,1,14.95,10/22/19 13:56,"623 Maple St, Boston, MA 02215" -276635,AA Batteries (4-pack),1,3.84,10/29/19 22:33,"742 Meadow St, Los Angeles, CA 90001" -276636,Macbook Pro Laptop,1,1700,10/02/19 07:58,"102 6th St, Austin, TX 73301" -276637,AA Batteries (4-pack),1,3.84,10/02/19 09:47,"374 Wilson St, Dallas, TX 75001" -276638,AAA Batteries (4-pack),1,2.99,10/25/19 10:47,"246 Lakeview St, San Francisco, CA 94016" -276639,AA Batteries (4-pack),1,3.84,10/26/19 06:19,"286 7th St, Los Angeles, CA 90001" -276640,Lightning Charging Cable,1,14.95,10/09/19 23:31,"149 Forest St, New York City, NY 10001" -276641,AAA Batteries (4-pack),1,2.99,10/20/19 21:43,"716 Lake St, New York City, NY 10001" -276642,Bose SoundSport Headphones,1,99.99,10/04/19 11:59,"69 Willow St, Atlanta, GA 30301" -276643,AAA Batteries (4-pack),2,2.99,10/28/19 10:35,"13 Lincoln St, Los Angeles, CA 90001" -276644,Apple Airpods Headphones,1,150,10/18/19 13:36,"680 Elm St, New York City, NY 10001" -276645,USB-C Charging Cable,1,11.95,10/17/19 02:14,"441 North St, San Francisco, CA 94016" -276646,Lightning Charging Cable,1,14.95,10/26/19 14:00,"596 North St, Portland, OR 97035" -276647,iPhone,1,700,10/23/19 21:13,"661 Pine St, San Francisco, CA 94016" -276648,USB-C Charging Cable,1,11.95,10/30/19 22:05,"168 6th St, New York City, NY 10001" -276649,Apple Airpods Headphones,1,150,10/26/19 22:13,"376 Main St, Los Angeles, CA 90001" -276650,Lightning Charging Cable,1,14.95,10/18/19 04:52,"85 Lake St, San Francisco, CA 94016" -276651,Lightning Charging Cable,1,14.95,10/02/19 10:30,"49 Walnut St, Los Angeles, CA 90001" -276652,AA Batteries (4-pack),3,3.84,10/25/19 08:14,"708 River St, Seattle, WA 98101" -276653,Lightning Charging Cable,1,14.95,10/03/19 17:24,"558 Hill St, Dallas, TX 75001" -276654,AA Batteries (4-pack),1,3.84,10/19/19 22:36,"121 Spruce St, Los Angeles, CA 90001" -276655,Lightning Charging Cable,1,14.95,10/22/19 22:09,"211 Main St, San Francisco, CA 94016" -276656,Lightning Charging Cable,1,14.95,10/19/19 22:01,"302 Jackson St, San Francisco, CA 94016" -276657,AAA Batteries (4-pack),1,2.99,10/13/19 01:40,"784 Chestnut St, Dallas, TX 75001" -276658,Lightning Charging Cable,2,14.95,10/09/19 20:06,"992 Willow St, Seattle, WA 98101" -276659,AA Batteries (4-pack),1,3.84,10/02/19 16:07,"686 Maple St, Dallas, TX 75001" -276660,Wired Headphones,1,11.99,10/31/19 14:34,"709 Cedar St, Austin, TX 73301" -276661,USB-C Charging Cable,1,11.95,10/01/19 14:34,"846 Spruce St, Los Angeles, CA 90001" -276662,Wired Headphones,1,11.99,10/20/19 19:44,"84 Pine St, Los Angeles, CA 90001" -276663,AA Batteries (4-pack),1,3.84,10/11/19 12:00,"734 Meadow St, San Francisco, CA 94016" -276664,AA Batteries (4-pack),1,3.84,10/09/19 19:36,"210 Walnut St, Seattle, WA 98101" -276665,AAA Batteries (4-pack),1,2.99,10/21/19 15:50,"742 Jackson St, Dallas, TX 75001" -276666,ThinkPad Laptop,1,999.99,10/29/19 10:20,"935 Highland St, Boston, MA 02215" -276667,AA Batteries (4-pack),2,3.84,10/27/19 17:41,"349 1st St, Austin, TX 73301" -276668,AAA Batteries (4-pack),3,2.99,10/20/19 23:08,"854 8th St, Austin, TX 73301" -276669,Wired Headphones,1,11.99,10/16/19 13:47,"51 Jefferson St, San Francisco, CA 94016" -276670,Macbook Pro Laptop,1,1700,10/11/19 13:59,"486 Hickory St, San Francisco, CA 94016" -276671,Google Phone,1,600,10/05/19 18:41,"757 Park St, Dallas, TX 75001" -276672,Bose SoundSport Headphones,1,99.99,10/26/19 23:14,"33 Cherry St, Los Angeles, CA 90001" -276673,AA Batteries (4-pack),1,3.84,10/28/19 09:22,"904 Adams St, New York City, NY 10001" -276674,27in 4K Gaming Monitor,1,389.99,10/26/19 11:23,"170 2nd St, New York City, NY 10001" -276675,AAA Batteries (4-pack),1,2.99,10/29/19 14:57,"16 4th St, Los Angeles, CA 90001" -276676,AA Batteries (4-pack),1,3.84,10/11/19 22:23,"884 Chestnut St, New York City, NY 10001" -276677,USB-C Charging Cable,1,11.95,10/21/19 14:52,"596 7th St, Los Angeles, CA 90001" -276678,27in FHD Monitor,1,149.99,10/25/19 22:22,"179 Cherry St, New York City, NY 10001" -276679,Apple Airpods Headphones,1,150,10/17/19 14:39,"339 4th St, Los Angeles, CA 90001" -276680,Google Phone,1,600,10/05/19 15:22,"621 West St, Los Angeles, CA 90001" -276681,Lightning Charging Cable,1,14.95,10/22/19 18:34,"301 Hickory St, San Francisco, CA 94016" -276682,ThinkPad Laptop,1,999.99,10/09/19 18:28,"296 Elm St, Portland, OR 97035" -276683,27in 4K Gaming Monitor,1,389.99,10/16/19 18:14,"530 West St, Boston, MA 02215" -276684,Macbook Pro Laptop,1,1700,10/28/19 22:34,"811 5th St, San Francisco, CA 94016" -276685,AA Batteries (4-pack),1,3.84,10/22/19 15:38,"371 Hill St, New York City, NY 10001" -276686,AA Batteries (4-pack),1,3.84,10/02/19 12:47,"314 Willow St, Portland, OR 97035" -276687,AAA Batteries (4-pack),1,2.99,10/27/19 04:56,"738 Lake St, San Francisco, CA 94016" -276688,20in Monitor,1,109.99,10/02/19 18:12,"623 7th St, New York City, NY 10001" -276689,Lightning Charging Cable,1,14.95,10/21/19 18:04,"124 12th St, Boston, MA 02215" -276690,Bose SoundSport Headphones,1,99.99,10/25/19 06:03,"701 Pine St, Dallas, TX 75001" -276691,Wired Headphones,1,11.99,10/08/19 21:08,"203 Walnut St, Los Angeles, CA 90001" -276692,20in Monitor,1,109.99,10/23/19 10:52,"939 River St, Atlanta, GA 30301" -276692,20in Monitor,1,109.99,10/23/19 10:52,"939 River St, Atlanta, GA 30301" -276693,USB-C Charging Cable,1,11.95,10/09/19 16:55,"6 Meadow St, Dallas, TX 75001" -276694,AAA Batteries (4-pack),2,2.99,10/08/19 13:14,"972 4th St, New York City, NY 10001" -276695,Lightning Charging Cable,1,14.95,10/30/19 10:50,"43 Madison St, Los Angeles, CA 90001" -276696,Bose SoundSport Headphones,1,99.99,10/29/19 15:51,"475 Wilson St, San Francisco, CA 94016" -276697,Wired Headphones,1,11.99,10/20/19 09:27,"641 River St, Austin, TX 73301" -276698,Lightning Charging Cable,1,14.95,10/02/19 00:16,"90 Chestnut St, New York City, NY 10001" -276699,USB-C Charging Cable,1,11.95,10/02/19 21:50,"39 Pine St, Dallas, TX 75001" -276700,34in Ultrawide Monitor,1,379.99,10/16/19 23:19,"375 Spruce St, San Francisco, CA 94016" -276701,Macbook Pro Laptop,1,1700,10/14/19 09:43,"358 7th St, Seattle, WA 98101" -276702,Flatscreen TV,1,300,10/07/19 22:19,"935 Church St, Los Angeles, CA 90001" -276703,AA Batteries (4-pack),1,3.84,10/08/19 17:33,"875 Jackson St, Dallas, TX 75001" -276704,AAA Batteries (4-pack),5,2.99,10/12/19 10:33,"238 West St, Dallas, TX 75001" -276705,Lightning Charging Cable,1,14.95,10/27/19 10:58,"359 Chestnut St, Austin, TX 73301" -276706,Vareebadd Phone,1,400,10/28/19 20:11,"541 Lakeview St, Dallas, TX 75001" -276707,Lightning Charging Cable,1,14.95,10/24/19 19:44,"335 West St, Los Angeles, CA 90001" -276708,Google Phone,1,600,10/22/19 13:24,"274 West St, San Francisco, CA 94016" -276708,Bose SoundSport Headphones,1,99.99,10/22/19 13:24,"274 West St, San Francisco, CA 94016" -276708,Wired Headphones,2,11.99,10/22/19 13:24,"274 West St, San Francisco, CA 94016" -276709,USB-C Charging Cable,1,11.95,10/09/19 18:09,"81 Lincoln St, Los Angeles, CA 90001" -276710,Bose SoundSport Headphones,1,99.99,10/31/19 18:58,"315 Forest St, San Francisco, CA 94016" -276711,AA Batteries (4-pack),2,3.84,10/17/19 02:44,"988 Meadow St, New York City, NY 10001" -276712,27in FHD Monitor,1,149.99,10/24/19 18:47,"119 Walnut St, Los Angeles, CA 90001" -276713,27in 4K Gaming Monitor,1,389.99,10/24/19 18:59,"553 Highland St, San Francisco, CA 94016" -276714,27in 4K Gaming Monitor,1,389.99,10/01/19 12:31,"635 Lincoln St, Boston, MA 02215" -276715,USB-C Charging Cable,2,11.95,10/18/19 19:48,"945 Jackson St, New York City, NY 10001" -276716,AA Batteries (4-pack),1,3.84,10/01/19 18:59,"52 Walnut St, Los Angeles, CA 90001" -276717,Wired Headphones,1,11.99,10/05/19 09:58,"322 Jefferson St, San Francisco, CA 94016" -276718,34in Ultrawide Monitor,1,379.99,10/13/19 18:00,"248 Ridge St, Atlanta, GA 30301" -276719,Lightning Charging Cable,1,14.95,10/21/19 07:19,"394 10th St, New York City, NY 10001" -276720,Apple Airpods Headphones,1,150,10/15/19 18:24,"890 6th St, Boston, MA 02215" -276721,AA Batteries (4-pack),1,3.84,10/15/19 20:52,"302 10th St, Portland, OR 97035" -276722,AAA Batteries (4-pack),1,2.99,10/08/19 10:44,"303 Lakeview St, New York City, NY 10001" -276723,27in FHD Monitor,1,149.99,10/13/19 03:23,"377 Adams St, San Francisco, CA 94016" -276724,Bose SoundSport Headphones,2,99.99,10/12/19 11:29,"333 Ridge St, Los Angeles, CA 90001" -276725,AAA Batteries (4-pack),1,2.99,10/12/19 15:25,"992 Lake St, San Francisco, CA 94016" -276726,Wired Headphones,1,11.99,10/15/19 10:16,"702 Chestnut St, Los Angeles, CA 90001" -276727,Wired Headphones,1,11.99,10/09/19 16:09,"866 Park St, San Francisco, CA 94016" -276728,USB-C Charging Cable,1,11.95,10/07/19 16:20,"832 Washington St, Dallas, TX 75001" -276729,Lightning Charging Cable,1,14.95,10/13/19 07:59,"420 2nd St, Los Angeles, CA 90001" -276730,Google Phone,1,600,10/24/19 00:15,"899 12th St, Seattle, WA 98101" -276731,Apple Airpods Headphones,1,150,10/07/19 12:28,"191 Sunset St, Dallas, TX 75001" -276732,27in 4K Gaming Monitor,1,389.99,10/29/19 13:33,"197 Dogwood St, Los Angeles, CA 90001" -276733,USB-C Charging Cable,1,11.95,10/03/19 02:05,"507 Wilson St, New York City, NY 10001" -276734,AA Batteries (4-pack),1,3.84,10/15/19 20:54,"411 7th St, San Francisco, CA 94016" -276735,Vareebadd Phone,1,400,10/08/19 23:51,"297 South St, San Francisco, CA 94016" -276736,Lightning Charging Cable,1,14.95,10/18/19 15:02,"198 Johnson St, Atlanta, GA 30301" -276737,iPhone,1,700,10/19/19 23:43,"589 Spruce St, Atlanta, GA 30301" -276738,AA Batteries (4-pack),1,3.84,10/31/19 21:31,"718 6th St, Portland, ME 04101" -276739,Wired Headphones,1,11.99,10/01/19 18:56,"373 4th St, Portland, OR 97035" -276740,iPhone,1,700,10/28/19 17:12,"692 Lincoln St, New York City, NY 10001" -276741,27in 4K Gaming Monitor,1,389.99,10/13/19 17:02,"41 Cedar St, Los Angeles, CA 90001" -276742,Bose SoundSport Headphones,1,99.99,10/13/19 20:02,"866 2nd St, Boston, MA 02215" -276743,Lightning Charging Cable,1,14.95,10/24/19 15:52,"20 Jefferson St, San Francisco, CA 94016" -276744,Wired Headphones,1,11.99,10/23/19 12:05,"605 Willow St, San Francisco, CA 94016" -276745,Bose SoundSport Headphones,1,99.99,10/20/19 15:39,"810 Cherry St, San Francisco, CA 94016" -276746,AAA Batteries (4-pack),1,2.99,10/17/19 20:13,"226 Ridge St, Atlanta, GA 30301" -276747,Lightning Charging Cable,1,14.95,10/02/19 20:33,"783 River St, Los Angeles, CA 90001" -276748,Wired Headphones,1,11.99,10/15/19 19:14,"411 8th St, Dallas, TX 75001" -276749,Wired Headphones,1,11.99,10/26/19 04:48,"20 Park St, San Francisco, CA 94016" -276750,Lightning Charging Cable,1,14.95,10/22/19 06:58,"186 Highland St, Dallas, TX 75001" -276751,Lightning Charging Cable,1,14.95,10/26/19 17:51,"83 4th St, Seattle, WA 98101" -276752,AAA Batteries (4-pack),6,2.99,10/16/19 16:39,"45 13th St, Boston, MA 02215" -276753,Wired Headphones,1,11.99,10/13/19 13:25,"506 Spruce St, San Francisco, CA 94016" -276754,AAA Batteries (4-pack),1,2.99,10/22/19 20:52,"220 Hickory St, Los Angeles, CA 90001" -276755,AAA Batteries (4-pack),2,2.99,10/24/19 23:26,"937 Meadow St, San Francisco, CA 94016" -276756,Bose SoundSport Headphones,1,99.99,10/22/19 21:09,"780 Forest St, Boston, MA 02215" -276757,Google Phone,1,600,10/22/19 13:28,"963 Lincoln St, Boston, MA 02215" -276758,Bose SoundSport Headphones,1,99.99,10/05/19 12:12,"220 Center St, San Francisco, CA 94016" -276759,27in FHD Monitor,1,149.99,10/28/19 16:01,"503 River St, New York City, NY 10001" -276760,Lightning Charging Cable,1,14.95,10/14/19 21:59,"858 Dogwood St, Boston, MA 02215" -276761,AA Batteries (4-pack),1,3.84,10/02/19 11:44,"655 River St, Atlanta, GA 30301" -276762,Google Phone,1,600,10/02/19 13:30,"509 Ridge St, Dallas, TX 75001" -276763,Apple Airpods Headphones,1,150,10/09/19 20:15,"891 Park St, Seattle, WA 98101" -276764,Wired Headphones,1,11.99,10/29/19 15:00,"806 River St, Boston, MA 02215" -276765,USB-C Charging Cable,1,11.95,10/31/19 15:26,"833 Lincoln St, Boston, MA 02215" -276766,Wired Headphones,1,11.99,10/12/19 04:54,"8 Johnson St, Austin, TX 73301" -276767,Wired Headphones,1,11.99,10/02/19 07:15,"600 7th St, Seattle, WA 98101" -276768,AA Batteries (4-pack),1,3.84,10/03/19 21:28,"612 Chestnut St, San Francisco, CA 94016" -276769,27in 4K Gaming Monitor,1,389.99,10/07/19 19:47,"4 13th St, Seattle, WA 98101" -276770,Lightning Charging Cable,1,14.95,10/14/19 19:18,"303 8th St, Boston, MA 02215" -276771,AAA Batteries (4-pack),1,2.99,10/08/19 23:22,"662 12th St, Austin, TX 73301" -276772,Apple Airpods Headphones,1,150,10/04/19 00:03,"394 Jefferson St, Dallas, TX 75001" -276773,Flatscreen TV,1,300,10/19/19 21:18,"107 Madison St, San Francisco, CA 94016" -276774,Lightning Charging Cable,1,14.95,10/17/19 16:41,"482 Willow St, Los Angeles, CA 90001" -276775,20in Monitor,1,109.99,10/20/19 09:07,"972 Elm St, San Francisco, CA 94016" -276776,AAA Batteries (4-pack),2,2.99,10/17/19 06:09,"965 Wilson St, Seattle, WA 98101" -276777,Lightning Charging Cable,1,14.95,10/14/19 09:43,"929 Highland St, Seattle, WA 98101" -276778,Wired Headphones,1,11.99,10/03/19 19:15,"445 7th St, New York City, NY 10001" -276779,Wired Headphones,2,11.99,10/07/19 15:32,"744 Highland St, Los Angeles, CA 90001" -276780,Wired Headphones,1,11.99,10/06/19 18:41,"881 6th St, New York City, NY 10001" -276781,AA Batteries (4-pack),1,3.84,10/27/19 16:58,"703 Adams St, San Francisco, CA 94016" -276782,AAA Batteries (4-pack),1,2.99,10/19/19 05:16,"400 8th St, Los Angeles, CA 90001" -276783,Bose SoundSport Headphones,1,99.99,10/07/19 15:15,"882 Maple St, San Francisco, CA 94016" -276784,Lightning Charging Cable,2,14.95,10/07/19 12:47,"384 Spruce St, San Francisco, CA 94016" -276785,AAA Batteries (4-pack),1,2.99,10/10/19 12:01,"343 Hickory St, Los Angeles, CA 90001" -276786,27in 4K Gaming Monitor,1,389.99,10/30/19 18:02,"838 4th St, Boston, MA 02215" -276787,Bose SoundSport Headphones,1,99.99,10/20/19 08:44,"790 Dogwood St, Portland, OR 97035" -276788,Wired Headphones,1,11.99,10/12/19 20:24,"378 North St, San Francisco, CA 94016" -276788,AAA Batteries (4-pack),1,2.99,10/12/19 20:24,"378 North St, San Francisco, CA 94016" -276789,AA Batteries (4-pack),1,3.84,10/13/19 10:06,"307 13th St, New York City, NY 10001" -276790,AAA Batteries (4-pack),1,2.99,10/25/19 20:01,"100 Johnson St, San Francisco, CA 94016" -276791,Lightning Charging Cable,1,14.95,10/03/19 07:01,"823 Sunset St, Boston, MA 02215" -276792,Wired Headphones,1,11.99,10/04/19 22:32,"472 13th St, Portland, OR 97035" -276793,Flatscreen TV,1,300,10/13/19 12:34,"358 7th St, Los Angeles, CA 90001" -276794,20in Monitor,1,109.99,10/12/19 20:31,"926 7th St, Atlanta, GA 30301" -276795,Lightning Charging Cable,1,14.95,10/06/19 06:19,"303 Willow St, Dallas, TX 75001" -276796,27in FHD Monitor,1,149.99,10/12/19 06:54,"668 Walnut St, Seattle, WA 98101" -276797,AAA Batteries (4-pack),1,2.99,10/27/19 11:32,"322 Maple St, Austin, TX 73301" -276798,Flatscreen TV,1,300,10/11/19 13:03,"220 Johnson St, New York City, NY 10001" -276799,Apple Airpods Headphones,1,150,10/19/19 17:41,"610 Elm St, Dallas, TX 75001" -276800,Bose SoundSport Headphones,2,99.99,10/04/19 03:46,"734 9th St, San Francisco, CA 94016" -276801,ThinkPad Laptop,1,999.99,10/20/19 21:43,"489 Ridge St, Seattle, WA 98101" -276802,AA Batteries (4-pack),2,3.84,10/19/19 23:16,"825 North St, San Francisco, CA 94016" -276803,Wired Headphones,1,11.99,10/18/19 13:42,"846 Main St, New York City, NY 10001" -276804,27in 4K Gaming Monitor,1,389.99,10/18/19 10:36,"500 South St, Boston, MA 02215" -276805,Flatscreen TV,1,300,10/13/19 10:47,"363 5th St, San Francisco, CA 94016" -276806,Bose SoundSport Headphones,2,99.99,10/02/19 16:56,"627 Main St, Portland, OR 97035" -276807,AAA Batteries (4-pack),1,2.99,10/25/19 13:55,"256 Spruce St, San Francisco, CA 94016" -276808,AAA Batteries (4-pack),2,2.99,10/05/19 12:51,"454 Lake St, Boston, MA 02215" -276809,27in FHD Monitor,1,149.99,10/23/19 07:36,"961 Forest St, San Francisco, CA 94016" -276810,USB-C Charging Cable,1,11.95,10/30/19 16:15,"432 Walnut St, Seattle, WA 98101" -276810,USB-C Charging Cable,1,11.95,10/30/19 16:15,"432 Walnut St, Seattle, WA 98101" -276811,Macbook Pro Laptop,1,1700,10/10/19 16:49,"110 North St, Los Angeles, CA 90001" -276812,USB-C Charging Cable,1,11.95,10/29/19 14:31,"627 Walnut St, Atlanta, GA 30301" -276813,27in FHD Monitor,1,149.99,10/06/19 01:03,"107 Wilson St, San Francisco, CA 94016" -276814,AAA Batteries (4-pack),2,2.99,10/10/19 19:02,"677 Cherry St, Boston, MA 02215" -276815,AAA Batteries (4-pack),1,2.99,10/07/19 17:15,"67 Willow St, Atlanta, GA 30301" -276816,27in FHD Monitor,1,149.99,10/25/19 18:23,"841 South St, San Francisco, CA 94016" -276817,USB-C Charging Cable,1,11.95,10/18/19 11:58,"529 Willow St, New York City, NY 10001" -276818,34in Ultrawide Monitor,1,379.99,10/14/19 15:40,"388 South St, Los Angeles, CA 90001" -276819,AAA Batteries (4-pack),1,2.99,10/07/19 19:16,"5 Center St, Los Angeles, CA 90001" -276820,Wired Headphones,1,11.99,10/25/19 12:43,"445 13th St, Los Angeles, CA 90001" -276821,Wired Headphones,1,11.99,10/31/19 21:34,"540 11th St, Los Angeles, CA 90001" -276822,iPhone,1,700,10/13/19 21:14,"532 South St, San Francisco, CA 94016" -276823,Wired Headphones,1,11.99,10/08/19 12:29,"481 Main St, San Francisco, CA 94016" -,,,,, -276824,USB-C Charging Cable,1,11.95,10/03/19 15:22,"273 12th St, New York City, NY 10001" -276825,Apple Airpods Headphones,1,150,10/27/19 18:59,"762 Washington St, New York City, NY 10001" -276826,20in Monitor,1,109.99,10/07/19 14:32,"945 Cherry St, San Francisco, CA 94016" -276827,34in Ultrawide Monitor,1,379.99,10/22/19 12:06,"186 Spruce St, Portland, OR 97035" -276828,AA Batteries (4-pack),3,3.84,10/04/19 16:07,"214 Cherry St, Los Angeles, CA 90001" -276829,AAA Batteries (4-pack),1,2.99,10/03/19 04:42,"386 Maple St, San Francisco, CA 94016" -276830,Lightning Charging Cable,1,14.95,10/04/19 11:16,"715 1st St, Boston, MA 02215" -276831,Apple Airpods Headphones,1,150,10/23/19 04:49,"204 Meadow St, San Francisco, CA 94016" -276832,AA Batteries (4-pack),1,3.84,10/26/19 17:46,"675 North St, Seattle, WA 98101" -276833,Lightning Charging Cable,1,14.95,10/21/19 17:39,"104 2nd St, New York City, NY 10001" -276834,USB-C Charging Cable,1,11.95,10/08/19 14:37,"569 Johnson St, Portland, OR 97035" -276835,AAA Batteries (4-pack),3,2.99,10/07/19 20:52,"661 14th St, Portland, ME 04101" -276836,AAA Batteries (4-pack),1,2.99,10/05/19 05:00,"630 Ridge St, Boston, MA 02215" -276837,AAA Batteries (4-pack),1,2.99,10/14/19 12:47,"669 West St, Atlanta, GA 30301" -276838,Flatscreen TV,1,300,10/22/19 00:44,"233 Jefferson St, San Francisco, CA 94016" -276839,Apple Airpods Headphones,1,150,10/16/19 21:16,"374 Center St, Los Angeles, CA 90001" -276839,Wired Headphones,1,11.99,10/16/19 21:16,"374 Center St, Los Angeles, CA 90001" -276840,USB-C Charging Cable,1,11.95,10/31/19 09:03,"691 Jackson St, New York City, NY 10001" -276841,USB-C Charging Cable,1,11.95,10/23/19 21:18,"2 7th St, Dallas, TX 75001" -276842,27in FHD Monitor,1,149.99,10/25/19 11:11,"316 7th St, Seattle, WA 98101" -276843,Google Phone,1,600,10/06/19 22:58,"557 Lakeview St, Boston, MA 02215" -276844,Flatscreen TV,1,300,10/26/19 22:51,"44 Cedar St, San Francisco, CA 94016" -276845,AA Batteries (4-pack),1,3.84,10/12/19 16:41,"839 4th St, Dallas, TX 75001" -276846,AAA Batteries (4-pack),1,2.99,10/11/19 11:07,"819 Park St, Atlanta, GA 30301" -276847,AAA Batteries (4-pack),4,2.99,10/01/19 05:03,"907 Meadow St, Portland, OR 97035" -276847,Wired Headphones,2,11.99,10/01/19 05:03,"907 Meadow St, Portland, OR 97035" -276848,iPhone,1,700,10/13/19 20:09,"319 12th St, New York City, NY 10001" -276848,Lightning Charging Cable,1,14.95,10/13/19 20:09,"319 12th St, New York City, NY 10001" -276849,27in FHD Monitor,1,149.99,10/09/19 17:07,"843 Ridge St, San Francisco, CA 94016" -276850,AAA Batteries (4-pack),3,2.99,10/22/19 09:45,"758 7th St, San Francisco, CA 94016" -276851,20in Monitor,1,109.99,10/26/19 13:22,"33 River St, San Francisco, CA 94016" -276852,Apple Airpods Headphones,1,150,10/24/19 11:25,"249 Lincoln St, Austin, TX 73301" -276853,Flatscreen TV,1,300,10/05/19 17:39,"571 14th St, Seattle, WA 98101" -276854,USB-C Charging Cable,1,11.95,10/17/19 23:38,"553 Wilson St, San Francisco, CA 94016" -276855,Bose SoundSport Headphones,1,99.99,10/17/19 21:47,"275 Forest St, San Francisco, CA 94016" -276856,Lightning Charging Cable,1,14.95,10/17/19 09:37,"724 Ridge St, Boston, MA 02215" -276857,Lightning Charging Cable,1,14.95,10/03/19 20:04,"385 5th St, Dallas, TX 75001" -276858,USB-C Charging Cable,1,11.95,10/23/19 16:31,"784 Washington St, New York City, NY 10001" -276859,Lightning Charging Cable,1,14.95,10/20/19 07:21,"831 2nd St, Boston, MA 02215" -276860,USB-C Charging Cable,1,11.95,10/30/19 22:49,"224 Washington St, Dallas, TX 75001" -276861,Lightning Charging Cable,1,14.95,10/23/19 18:16,"79 Adams St, New York City, NY 10001" -276862,iPhone,1,700,10/03/19 19:21,"870 South St, Atlanta, GA 30301" -276863,Wired Headphones,1,11.99,10/28/19 23:29,"134 Wilson St, Los Angeles, CA 90001" -276864,Bose SoundSport Headphones,1,99.99,10/10/19 08:44,"363 West St, Los Angeles, CA 90001" -276865,Wired Headphones,1,11.99,10/23/19 20:51,"775 Adams St, Dallas, TX 75001" -276866,Lightning Charging Cable,1,14.95,10/14/19 13:30,"475 13th St, San Francisco, CA 94016" -276867,27in FHD Monitor,1,149.99,10/29/19 16:13,"161 Elm St, San Francisco, CA 94016" -276868,Wired Headphones,1,11.99,10/09/19 17:23,"681 Pine St, Atlanta, GA 30301" -276869,Wired Headphones,1,11.99,10/02/19 16:22,"664 Dogwood St, Portland, OR 97035" -276870,Wired Headphones,1,11.99,10/12/19 13:51,"864 12th St, Seattle, WA 98101" -276871,AA Batteries (4-pack),1,3.84,10/19/19 13:53,"114 Hill St, Los Angeles, CA 90001" -276872,AA Batteries (4-pack),2,3.84,10/04/19 20:21,"660 8th St, Boston, MA 02215" -276873,Bose SoundSport Headphones,1,99.99,10/26/19 19:29,"963 Adams St, Austin, TX 73301" -276874,AA Batteries (4-pack),1,3.84,10/05/19 17:44,"938 1st St, Boston, MA 02215" -276875,AAA Batteries (4-pack),3,2.99,10/16/19 18:30,"726 Willow St, San Francisco, CA 94016" -276876,Wired Headphones,1,11.99,10/27/19 23:42,"283 Meadow St, San Francisco, CA 94016" -276877,AAA Batteries (4-pack),1,2.99,10/06/19 06:52,"150 Walnut St, Los Angeles, CA 90001" -276878,Flatscreen TV,1,300,10/04/19 12:02,"519 Cherry St, San Francisco, CA 94016" -276879,27in FHD Monitor,1,149.99,10/13/19 16:42,"176 West St, Boston, MA 02215" -276879,Apple Airpods Headphones,1,150,10/13/19 16:42,"176 West St, Boston, MA 02215" -276880,AAA Batteries (4-pack),1,2.99,10/23/19 19:43,"700 River St, Boston, MA 02215" -276881,Apple Airpods Headphones,1,150,10/24/19 09:51,"374 River St, Los Angeles, CA 90001" -276882,USB-C Charging Cable,1,11.95,10/07/19 21:54,"953 Sunset St, San Francisco, CA 94016" -276883,AA Batteries (4-pack),1,3.84,10/19/19 22:47,"940 South St, San Francisco, CA 94016" -276884,Flatscreen TV,1,300,10/10/19 20:44,"677 Walnut St, Los Angeles, CA 90001" -276885,AA Batteries (4-pack),1,3.84,10/27/19 16:23,"453 2nd St, New York City, NY 10001" -276886,USB-C Charging Cable,1,11.95,10/08/19 17:27,"623 4th St, Dallas, TX 75001" -276887,iPhone,1,700,10/27/19 05:35,"571 Sunset St, San Francisco, CA 94016" -276887,Lightning Charging Cable,1,14.95,10/27/19 05:35,"571 Sunset St, San Francisco, CA 94016" -276887,Wired Headphones,1,11.99,10/27/19 05:35,"571 Sunset St, San Francisco, CA 94016" -276888,Bose SoundSport Headphones,1,99.99,10/10/19 21:48,"928 Meadow St, Boston, MA 02215" -276889,AA Batteries (4-pack),1,3.84,10/06/19 13:32,"62 12th St, San Francisco, CA 94016" -276890,27in FHD Monitor,1,149.99,10/27/19 13:44,"871 Adams St, New York City, NY 10001" -276891,20in Monitor,1,109.99,10/20/19 19:58,"471 6th St, Los Angeles, CA 90001" -276892,AAA Batteries (4-pack),1,2.99,10/26/19 13:30,"86 Johnson St, Los Angeles, CA 90001" -276893,AAA Batteries (4-pack),1,2.99,10/01/19 15:52,"269 Wilson St, New York City, NY 10001" -276893,27in FHD Monitor,1,149.99,10/01/19 15:52,"269 Wilson St, New York City, NY 10001" -276894,27in 4K Gaming Monitor,1,389.99,10/15/19 07:49,"338 Willow St, Atlanta, GA 30301" -276895,AAA Batteries (4-pack),3,2.99,10/16/19 15:23,"463 12th St, Austin, TX 73301" -276896,USB-C Charging Cable,1,11.95,10/30/19 17:39,"898 Forest St, San Francisco, CA 94016" -276897,AAA Batteries (4-pack),4,2.99,10/29/19 21:50,"814 Willow St, San Francisco, CA 94016" -276898,Wired Headphones,1,11.99,10/04/19 14:31,"824 Cherry St, Portland, ME 04101" -276899,27in FHD Monitor,1,149.99,10/11/19 06:16,"666 6th St, Dallas, TX 75001" -276900,34in Ultrawide Monitor,1,379.99,10/30/19 00:42,"407 South St, Atlanta, GA 30301" -276901,AAA Batteries (4-pack),1,2.99,10/30/19 12:27,"69 10th St, Portland, OR 97035" -276902,Wired Headphones,1,11.99,10/05/19 16:38,"99 Forest St, San Francisco, CA 94016" -276903,Vareebadd Phone,1,400,10/06/19 21:45,"274 10th St, Boston, MA 02215" -276904,27in FHD Monitor,1,149.99,10/13/19 20:47,"606 8th St, Seattle, WA 98101" -276905,Bose SoundSport Headphones,1,99.99,10/28/19 19:34,"875 2nd St, Los Angeles, CA 90001" -276906,20in Monitor,1,109.99,10/07/19 09:50,"207 Main St, Portland, ME 04101" -276907,Apple Airpods Headphones,1,150,10/05/19 06:37,"662 Chestnut St, Boston, MA 02215" -276908,Lightning Charging Cable,1,14.95,10/25/19 18:59,"636 7th St, Los Angeles, CA 90001" -276909,27in 4K Gaming Monitor,1,389.99,10/22/19 18:26,"234 Cherry St, Los Angeles, CA 90001" -276910,Wired Headphones,2,11.99,10/20/19 14:47,"547 6th St, New York City, NY 10001" -276911,AA Batteries (4-pack),3,3.84,10/08/19 17:42,"971 Main St, Los Angeles, CA 90001" -276912,USB-C Charging Cable,1,11.95,10/16/19 14:06,"510 Madison St, New York City, NY 10001" -276913,USB-C Charging Cable,1,11.95,10/30/19 12:02,"859 Adams St, San Francisco, CA 94016" -276914,Vareebadd Phone,1,400,10/16/19 09:07,"766 Hill St, Los Angeles, CA 90001" -276915,Lightning Charging Cable,1,14.95,10/16/19 16:10,"583 Johnson St, Los Angeles, CA 90001" -276916,Apple Airpods Headphones,1,150,10/26/19 10:29,"747 Pine St, Austin, TX 73301" -276917,Bose SoundSport Headphones,1,99.99,10/16/19 13:07,"58 Jackson St, Atlanta, GA 30301" -276918,Wired Headphones,1,11.99,10/27/19 18:02,"405 9th St, San Francisco, CA 94016" -276918,Vareebadd Phone,1,400,10/27/19 18:02,"405 9th St, San Francisco, CA 94016" -276919,USB-C Charging Cable,1,11.95,10/23/19 17:04,"451 Lakeview St, Portland, OR 97035" -276920,Apple Airpods Headphones,1,150,10/05/19 17:28,"873 Chestnut St, San Francisco, CA 94016" -276921,iPhone,1,700,10/11/19 21:48,"225 River St, Dallas, TX 75001" -276922,AAA Batteries (4-pack),2,2.99,10/07/19 21:30,"648 6th St, San Francisco, CA 94016" -276923,Apple Airpods Headphones,1,150,10/22/19 20:01,"51 Washington St, Los Angeles, CA 90001" -276924,Wired Headphones,1,11.99,10/21/19 17:58,"21 Maple St, San Francisco, CA 94016" -276925,iPhone,1,700,10/03/19 15:56,"357 Sunset St, San Francisco, CA 94016" -276925,Apple Airpods Headphones,1,150,10/03/19 15:56,"357 Sunset St, San Francisco, CA 94016" -276925,Wired Headphones,1,11.99,10/03/19 15:56,"357 Sunset St, San Francisco, CA 94016" -276926,Lightning Charging Cable,1,14.95,10/13/19 09:57,"97 Hill St, Dallas, TX 75001" -276927,Wired Headphones,1,11.99,10/28/19 19:08,"906 Jefferson St, Seattle, WA 98101" -276928,AAA Batteries (4-pack),1,2.99,10/26/19 10:43,"908 Sunset St, Portland, OR 97035" -276929,Wired Headphones,1,11.99,10/19/19 19:26,"294 Maple St, Los Angeles, CA 90001" -276930,USB-C Charging Cable,1,11.95,10/27/19 12:37,"214 Wilson St, Boston, MA 02215" -276931,USB-C Charging Cable,1,11.95,10/05/19 21:42,"403 Johnson St, San Francisco, CA 94016" -276932,AA Batteries (4-pack),2,3.84,10/17/19 19:15,"560 Johnson St, Atlanta, GA 30301" -276933,Wired Headphones,1,11.99,10/03/19 18:28,"279 South St, Austin, TX 73301" -276934,27in FHD Monitor,1,149.99,10/26/19 18:51,"572 North St, Los Angeles, CA 90001" -276935,USB-C Charging Cable,1,11.95,10/12/19 14:09,"392 Sunset St, San Francisco, CA 94016" -276936,AA Batteries (4-pack),1,3.84,10/22/19 20:14,"855 13th St, New York City, NY 10001" -276937,USB-C Charging Cable,1,11.95,10/20/19 21:43,"579 Adams St, Seattle, WA 98101" -276938,Apple Airpods Headphones,1,150,10/26/19 14:08,"365 Sunset St, Austin, TX 73301" -276939,27in FHD Monitor,1,149.99,10/14/19 23:18,"885 6th St, New York City, NY 10001" -276940,Lightning Charging Cable,1,14.95,10/23/19 16:16,"322 North St, Los Angeles, CA 90001" -276941,Bose SoundSport Headphones,1,99.99,10/05/19 17:12,"537 Jackson St, Atlanta, GA 30301" -276941,Lightning Charging Cable,1,14.95,10/05/19 17:12,"537 Jackson St, Atlanta, GA 30301" -276942,34in Ultrawide Monitor,1,379.99,10/27/19 19:33,"537 Center St, Atlanta, GA 30301" -276943,AAA Batteries (4-pack),1,2.99,10/06/19 22:34,"320 Jefferson St, Dallas, TX 75001" -276944,Bose SoundSport Headphones,1,99.99,10/19/19 13:11,"169 Spruce St, Los Angeles, CA 90001" -276945,Wired Headphones,1,11.99,10/25/19 21:35,"335 Cedar St, Boston, MA 02215" -276946,AA Batteries (4-pack),1,3.84,10/25/19 11:27,"501 Hill St, Portland, OR 97035" -276947,USB-C Charging Cable,1,11.95,10/18/19 21:16,"958 Spruce St, New York City, NY 10001" -276948,20in Monitor,1,109.99,10/19/19 15:19,"597 9th St, San Francisco, CA 94016" -276949,Lightning Charging Cable,1,14.95,10/14/19 15:05,"530 Pine St, Boston, MA 02215" -276950,USB-C Charging Cable,1,11.95,10/30/19 20:19,"123 Park St, Seattle, WA 98101" -276951,iPhone,1,700,10/12/19 20:07,"232 Adams St, Atlanta, GA 30301" -276952,USB-C Charging Cable,2,11.95,10/19/19 11:03,"983 Walnut St, New York City, NY 10001" -276953,USB-C Charging Cable,1,11.95,10/15/19 15:11,"850 12th St, Los Angeles, CA 90001" -276954,USB-C Charging Cable,1,11.95,10/05/19 19:48,"414 4th St, Los Angeles, CA 90001" -276955,USB-C Charging Cable,1,11.95,10/01/19 08:27,"822 13th St, San Francisco, CA 94016" -276956,Lightning Charging Cable,1,14.95,10/13/19 19:09,"864 Dogwood St, Austin, TX 73301" -276957,AA Batteries (4-pack),1,3.84,10/20/19 13:57,"393 Maple St, San Francisco, CA 94016" -276958,Wired Headphones,1,11.99,10/21/19 09:42,"877 Jefferson St, Los Angeles, CA 90001" -276959,AAA Batteries (4-pack),2,2.99,10/14/19 10:44,"37 Ridge St, Boston, MA 02215" -276960,Wired Headphones,1,11.99,10/29/19 13:15,"177 Main St, Boston, MA 02215" -276961,Bose SoundSport Headphones,1,99.99,10/04/19 18:16,"846 Forest St, Los Angeles, CA 90001" -276962,USB-C Charging Cable,1,11.95,10/13/19 11:02,"442 Meadow St, New York City, NY 10001" -276963,27in FHD Monitor,1,149.99,10/20/19 19:59,"475 14th St, Seattle, WA 98101" -276964,AAA Batteries (4-pack),1,2.99,10/28/19 10:53,"482 14th St, New York City, NY 10001" -276965,iPhone,1,700,10/07/19 13:37,"325 Jefferson St, New York City, NY 10001" -276966,27in 4K Gaming Monitor,1,389.99,10/26/19 01:20,"134 Chestnut St, Dallas, TX 75001" -276967,Wired Headphones,1,11.99,10/13/19 21:00,"666 River St, Los Angeles, CA 90001" -276968,Flatscreen TV,1,300,10/02/19 13:46,"916 River St, Boston, MA 02215" -276969,Bose SoundSport Headphones,1,99.99,10/24/19 15:20,"633 Wilson St, New York City, NY 10001" -276970,iPhone,1,700,10/14/19 07:32,"243 6th St, Los Angeles, CA 90001" -276971,Lightning Charging Cable,1,14.95,10/20/19 13:23,"911 Park St, Boston, MA 02215" -276972,Lightning Charging Cable,1,14.95,10/26/19 12:29,"405 Center St, San Francisco, CA 94016" -276973,34in Ultrawide Monitor,1,379.99,10/09/19 18:40,"319 Cherry St, Los Angeles, CA 90001" -276974,Bose SoundSport Headphones,1,99.99,10/07/19 11:43,"833 Dogwood St, Los Angeles, CA 90001" -276975,USB-C Charging Cable,1,11.95,10/25/19 18:58,"262 Cedar St, New York City, NY 10001" -276976,Bose SoundSport Headphones,1,99.99,10/20/19 17:16,"391 Chestnut St, Los Angeles, CA 90001" -276977,Macbook Pro Laptop,1,1700,10/03/19 14:00,"828 Church St, New York City, NY 10001" -276978,Macbook Pro Laptop,1,1700,10/25/19 00:16,"819 Lake St, Boston, MA 02215" -276979,Bose SoundSport Headphones,1,99.99,10/27/19 16:37,"609 Church St, Portland, OR 97035" -276980,AAA Batteries (4-pack),4,2.99,10/12/19 21:38,"246 Highland St, Atlanta, GA 30301" -276981,AA Batteries (4-pack),1,3.84,10/15/19 09:02,"474 Meadow St, Atlanta, GA 30301" -276982,Lightning Charging Cable,1,14.95,10/20/19 10:26,"377 Dogwood St, Portland, ME 04101" -276983,Lightning Charging Cable,1,14.95,10/17/19 17:47,"827 Lincoln St, Seattle, WA 98101" -276984,USB-C Charging Cable,1,11.95,10/12/19 18:46,"656 Willow St, Dallas, TX 75001" -276985,USB-C Charging Cable,1,11.95,10/24/19 23:46,"685 Wilson St, Atlanta, GA 30301" -276986,USB-C Charging Cable,1,11.95,10/20/19 00:31,"651 11th St, Atlanta, GA 30301" -276987,Wired Headphones,3,11.99,10/05/19 21:33,"605 Forest St, Atlanta, GA 30301" -276988,Lightning Charging Cable,1,14.95,10/24/19 13:06,"898 Wilson St, Boston, MA 02215" -276989,USB-C Charging Cable,1,11.95,10/06/19 12:32,"591 Center St, Seattle, WA 98101" -276990,AA Batteries (4-pack),2,3.84,10/12/19 17:00,"537 10th St, Los Angeles, CA 90001" -276991,Lightning Charging Cable,1,14.95,10/10/19 15:19,"275 4th St, New York City, NY 10001" -276992,AA Batteries (4-pack),3,3.84,10/12/19 00:45,"248 Lincoln St, Los Angeles, CA 90001" -276993,27in FHD Monitor,1,149.99,10/26/19 16:09,"842 Chestnut St, Austin, TX 73301" -276994,Apple Airpods Headphones,1,150,10/29/19 15:25,"298 10th St, Los Angeles, CA 90001" -276995,20in Monitor,1,109.99,10/13/19 14:33,"511 South St, Los Angeles, CA 90001" -276996,USB-C Charging Cable,1,11.95,10/25/19 20:12,"321 Meadow St, Dallas, TX 75001" -276997,Lightning Charging Cable,1,14.95,10/04/19 11:43,"428 Pine St, Atlanta, GA 30301" -276998,Bose SoundSport Headphones,1,99.99,10/03/19 20:46,"523 1st St, Dallas, TX 75001" -276999,USB-C Charging Cable,1,11.95,10/21/19 18:23,"962 4th St, Austin, TX 73301" -277000,AAA Batteries (4-pack),2,2.99,10/10/19 16:17,"286 8th St, Boston, MA 02215" -277001,Lightning Charging Cable,1,14.95,10/28/19 14:38,"474 4th St, Seattle, WA 98101" -277002,Wired Headphones,1,11.99,10/03/19 19:41,"251 Washington St, Los Angeles, CA 90001" -277003,Bose SoundSport Headphones,1,99.99,10/20/19 13:20,"110 9th St, Los Angeles, CA 90001" -277004,AAA Batteries (4-pack),3,2.99,10/03/19 23:07,"583 Lincoln St, Seattle, WA 98101" -277005,AA Batteries (4-pack),1,3.84,10/16/19 07:45,"551 8th St, Los Angeles, CA 90001" -277006,AA Batteries (4-pack),1,3.84,10/26/19 21:12,"564 12th St, San Francisco, CA 94016" -277007,Lightning Charging Cable,1,14.95,10/19/19 00:46,"497 5th St, Los Angeles, CA 90001" -277008,AA Batteries (4-pack),1,3.84,10/31/19 20:48,"259 West St, Austin, TX 73301" -277009,Lightning Charging Cable,1,14.95,10/04/19 20:18,"180 13th St, Dallas, TX 75001" -277010,Apple Airpods Headphones,1,150,10/21/19 23:30,"428 Cherry St, San Francisco, CA 94016" -277011,20in Monitor,1,109.99,10/04/19 17:32,"525 10th St, Austin, TX 73301" -277012,Wired Headphones,1,11.99,10/14/19 10:57,"439 Forest St, Los Angeles, CA 90001" -277013,Lightning Charging Cable,1,14.95,10/30/19 07:22,"355 North St, Dallas, TX 75001" -277014,AAA Batteries (4-pack),1,2.99,10/03/19 18:37,"760 5th St, San Francisco, CA 94016" -277015,USB-C Charging Cable,1,11.95,10/30/19 17:14,"750 Main St, San Francisco, CA 94016" -277016,AAA Batteries (4-pack),2,2.99,10/16/19 09:28,"859 Park St, Dallas, TX 75001" -277017,Bose SoundSport Headphones,1,99.99,10/29/19 23:30,"258 Elm St, New York City, NY 10001" -277018,Apple Airpods Headphones,1,150,10/29/19 18:15,"47 Washington St, Austin, TX 73301" -277019,Wired Headphones,1,11.99,10/06/19 21:18,"922 1st St, Boston, MA 02215" -277020,USB-C Charging Cable,1,11.95,10/28/19 13:22,"736 Sunset St, San Francisco, CA 94016" -277021,Wired Headphones,1,11.99,10/21/19 18:17,"630 14th St, New York City, NY 10001" -277022,AAA Batteries (4-pack),2,2.99,10/07/19 11:04,"593 Cedar St, Portland, OR 97035" -277023,Lightning Charging Cable,1,14.95,10/27/19 14:34,"683 Main St, Dallas, TX 75001" -277024,20in Monitor,1,109.99,10/11/19 06:21,"44 10th St, San Francisco, CA 94016" -277025,Bose SoundSport Headphones,1,99.99,10/27/19 10:37,"604 13th St, Los Angeles, CA 90001" -277026,Wired Headphones,1,11.99,10/10/19 14:17,"198 Lake St, Seattle, WA 98101" -277027,Macbook Pro Laptop,1,1700,10/05/19 18:01,"899 14th St, Los Angeles, CA 90001" -277028,AA Batteries (4-pack),1,3.84,10/03/19 11:51,"82 Jackson St, Boston, MA 02215" -277029,USB-C Charging Cable,1,11.95,10/15/19 20:12,"540 Hill St, San Francisco, CA 94016" -277030,AAA Batteries (4-pack),1,2.99,10/06/19 21:09,"318 Wilson St, New York City, NY 10001" -277031,Wired Headphones,1,11.99,10/11/19 14:38,"824 Sunset St, Atlanta, GA 30301" -277032,27in FHD Monitor,1,149.99,10/04/19 18:45,"980 Park St, Boston, MA 02215" -277033,20in Monitor,1,109.99,10/18/19 10:29,"164 13th St, San Francisco, CA 94016" -277034,Google Phone,1,600,10/07/19 13:11,"418 12th St, Los Angeles, CA 90001" -277034,USB-C Charging Cable,1,11.95,10/07/19 13:11,"418 12th St, Los Angeles, CA 90001" -277035,USB-C Charging Cable,1,11.95,10/17/19 22:25,"755 13th St, New York City, NY 10001" -277036,Bose SoundSport Headphones,1,99.99,10/11/19 17:37,"403 4th St, Los Angeles, CA 90001" -277037,Lightning Charging Cable,1,14.95,10/28/19 23:36,"420 1st St, San Francisco, CA 94016" -277038,ThinkPad Laptop,1,999.99,10/14/19 09:56,"592 Spruce St, Boston, MA 02215" -277039,Lightning Charging Cable,1,14.95,10/01/19 12:35,"873 Cedar St, Dallas, TX 75001" -277040,USB-C Charging Cable,1,11.95,10/15/19 14:46,"25 4th St, San Francisco, CA 94016" -277041,AA Batteries (4-pack),1,3.84,10/15/19 21:08,"846 Church St, Boston, MA 02215" -277042,AA Batteries (4-pack),1,3.84,10/25/19 00:23,"437 Pine St, Dallas, TX 75001" -277043,USB-C Charging Cable,1,11.95,10/26/19 10:12,"616 13th St, Atlanta, GA 30301" -277044,Apple Airpods Headphones,1,150,10/16/19 11:05,"204 Jefferson St, San Francisco, CA 94016" -277044,Apple Airpods Headphones,1,150,10/16/19 11:05,"204 Jefferson St, San Francisco, CA 94016" -277045,27in 4K Gaming Monitor,1,389.99,10/07/19 20:31,"894 9th St, Seattle, WA 98101" -277046,27in 4K Gaming Monitor,1,389.99,10/14/19 22:01,"386 Wilson St, Boston, MA 02215" -277047,ThinkPad Laptop,1,999.99,10/04/19 21:25,"724 Chestnut St, San Francisco, CA 94016" -277048,AA Batteries (4-pack),1,3.84,10/28/19 10:40,"106 10th St, Atlanta, GA 30301" -277049,Lightning Charging Cable,1,14.95,10/21/19 12:44,"324 Highland St, San Francisco, CA 94016" -277050,Bose SoundSport Headphones,1,99.99,10/03/19 09:00,"444 Sunset St, New York City, NY 10001" -277051,Lightning Charging Cable,1,14.95,10/10/19 22:24,"330 14th St, Dallas, TX 75001" -277052,iPhone,1,700,10/23/19 09:38,"116 Highland St, Atlanta, GA 30301" -277053,Lightning Charging Cable,1,14.95,10/13/19 22:56,"393 4th St, San Francisco, CA 94016" -277054,Bose SoundSport Headphones,1,99.99,10/20/19 09:21,"998 Adams St, Dallas, TX 75001" -277055,Apple Airpods Headphones,1,150,10/07/19 23:10,"541 Washington St, New York City, NY 10001" -277056,USB-C Charging Cable,1,11.95,10/29/19 19:44,"825 Center St, Boston, MA 02215" -277057,Vareebadd Phone,1,400,10/20/19 22:37,"267 Dogwood St, Los Angeles, CA 90001" -277058,Apple Airpods Headphones,1,150,10/25/19 20:16,"406 Elm St, Atlanta, GA 30301" -277059,ThinkPad Laptop,1,999.99,10/25/19 11:28,"427 4th St, Portland, OR 97035" -277060,AA Batteries (4-pack),1,3.84,10/15/19 00:47,"639 1st St, New York City, NY 10001" -277061,Macbook Pro Laptop,1,1700,10/25/19 04:38,"244 Chestnut St, San Francisco, CA 94016" -277061,Bose SoundSport Headphones,1,99.99,10/25/19 04:38,"244 Chestnut St, San Francisco, CA 94016" -277062,AAA Batteries (4-pack),3,2.99,10/17/19 13:05,"3 Wilson St, Atlanta, GA 30301" -277063,Lightning Charging Cable,1,14.95,10/05/19 08:19,"907 Hill St, New York City, NY 10001" -277064,AA Batteries (4-pack),2,3.84,10/04/19 22:52,"102 Center St, Portland, ME 04101" -277065,Wired Headphones,1,11.99,10/14/19 06:03,"430 South St, Dallas, TX 75001" -277065,34in Ultrawide Monitor,1,379.99,10/14/19 06:03,"430 South St, Dallas, TX 75001" -277066,Apple Airpods Headphones,1,150,10/19/19 06:57,"508 South St, Portland, OR 97035" -277067,USB-C Charging Cable,1,11.95,10/26/19 19:29,"545 Johnson St, New York City, NY 10001" -277068,Wired Headphones,1,11.99,10/19/19 23:21,"447 Pine St, San Francisco, CA 94016" -277069,AAA Batteries (4-pack),1,2.99,10/01/19 12:01,"612 North St, Portland, OR 97035" -277070,Lightning Charging Cable,1,14.95,10/02/19 16:27,"805 5th St, Los Angeles, CA 90001" -277071,Wired Headphones,2,11.99,10/09/19 13:00,"990 Cedar St, New York City, NY 10001" -277072,AAA Batteries (4-pack),3,2.99,10/07/19 12:23,"489 Dogwood St, San Francisco, CA 94016" -277073,LG Washing Machine,1,600.0,10/19/19 12:39,"39 2nd St, Los Angeles, CA 90001" -277074,USB-C Charging Cable,1,11.95,10/23/19 08:14,"911 Adams St, Austin, TX 73301" -277075,Lightning Charging Cable,1,14.95,10/31/19 06:27,"837 South St, San Francisco, CA 94016" -277076,Lightning Charging Cable,1,14.95,10/10/19 09:53,"163 2nd St, New York City, NY 10001" -277077,Flatscreen TV,1,300,10/11/19 08:21,"574 Willow St, Boston, MA 02215" -277078,27in FHD Monitor,1,149.99,10/12/19 09:52,"319 Wilson St, Dallas, TX 75001" -277079,AA Batteries (4-pack),1,3.84,10/14/19 11:56,"274 12th St, Dallas, TX 75001" -277080,34in Ultrawide Monitor,1,379.99,10/29/19 13:27,"463 North St, Portland, OR 97035" -277081,Flatscreen TV,1,300,10/27/19 10:33,"301 12th St, Portland, ME 04101" -277081,Flatscreen TV,1,300,10/27/19 10:33,"301 12th St, Portland, ME 04101" -277082,USB-C Charging Cable,1,11.95,10/30/19 18:04,"682 14th St, Dallas, TX 75001" -277083,AAA Batteries (4-pack),2,2.99,10/10/19 11:47,"158 Center St, Atlanta, GA 30301" -277084,USB-C Charging Cable,1,11.95,10/28/19 11:32,"624 Hill St, Atlanta, GA 30301" -277085,Wired Headphones,1,11.99,10/12/19 18:02,"215 Ridge St, Atlanta, GA 30301" -277086,Lightning Charging Cable,1,14.95,10/02/19 06:39,"673 Forest St, Portland, ME 04101" -277087,Lightning Charging Cable,1,14.95,10/31/19 20:47,"577 Dogwood St, San Francisco, CA 94016" -277088,34in Ultrawide Monitor,1,379.99,10/21/19 15:31,"389 Adams St, Los Angeles, CA 90001" -277089,USB-C Charging Cable,1,11.95,10/03/19 11:14,"575 Chestnut St, San Francisco, CA 94016" -277090,Lightning Charging Cable,1,14.95,10/30/19 06:43,"267 Park St, Boston, MA 02215" -277091,AAA Batteries (4-pack),1,2.99,10/21/19 06:22,"392 Willow St, Portland, OR 97035" -277092,Bose SoundSport Headphones,1,99.99,10/01/19 19:56,"941 South St, New York City, NY 10001" -277093,Lightning Charging Cable,1,14.95,10/24/19 11:53,"264 Lincoln St, Boston, MA 02215" -277094,AAA Batteries (4-pack),1,2.99,10/24/19 19:21,"706 Ridge St, Boston, MA 02215" -277095,iPhone,1,700,10/22/19 16:30,"849 Lakeview St, New York City, NY 10001" -277096,Bose SoundSport Headphones,1,99.99,10/10/19 20:58,"15 Adams St, Dallas, TX 75001" -277097,27in FHD Monitor,1,149.99,10/11/19 15:12,"197 1st St, San Francisco, CA 94016" -277098,Wired Headphones,1,11.99,10/05/19 15:36,"340 9th St, Los Angeles, CA 90001" -277099,USB-C Charging Cable,2,11.95,10/03/19 12:16,"692 Elm St, San Francisco, CA 94016" -277100,AAA Batteries (4-pack),1,2.99,10/15/19 10:05,"876 Sunset St, New York City, NY 10001" -277101,AAA Batteries (4-pack),2,2.99,10/05/19 17:10,"391 Madison St, Atlanta, GA 30301" -277102,iPhone,1,700,10/24/19 04:57,"559 Johnson St, Portland, OR 97035" -277102,Apple Airpods Headphones,1,150,10/24/19 04:57,"559 Johnson St, Portland, OR 97035" -277103,AAA Batteries (4-pack),1,2.99,10/23/19 11:44,"99 Johnson St, Seattle, WA 98101" -277104,Macbook Pro Laptop,1,1700,10/09/19 10:34,"762 Spruce St, Los Angeles, CA 90001" -277105,Google Phone,1,600,10/29/19 11:24,"544 Jackson St, New York City, NY 10001" -277105,USB-C Charging Cable,1,11.95,10/29/19 11:24,"544 Jackson St, New York City, NY 10001" -277106,iPhone,1,700,10/07/19 01:38,"240 Elm St, San Francisco, CA 94016" -277107,Bose SoundSport Headphones,1,99.99,10/21/19 21:16,"29 Walnut St, Austin, TX 73301" -277108,AAA Batteries (4-pack),3,2.99,10/08/19 13:48,"548 Elm St, Boston, MA 02215" -277109,Bose SoundSport Headphones,1,99.99,10/05/19 17:42,"661 Wilson St, Dallas, TX 75001" -277110,Apple Airpods Headphones,1,150,10/10/19 09:25,"701 Hill St, Los Angeles, CA 90001" -277111,Google Phone,1,600,10/20/19 13:04,"225 4th St, San Francisco, CA 94016" -277112,Apple Airpods Headphones,1,150,10/10/19 16:55,"167 Meadow St, Dallas, TX 75001" -277113,Bose SoundSport Headphones,1,99.99,10/26/19 17:27,"257 West St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -277114,AA Batteries (4-pack),1,3.84,10/07/19 12:04,"929 13th St, Portland, ME 04101" -277115,Wired Headphones,1,11.99,10/13/19 16:37,"275 Dogwood St, San Francisco, CA 94016" -277116,Wired Headphones,1,11.99,10/07/19 20:14,"11 Chestnut St, Boston, MA 02215" -277117,27in 4K Gaming Monitor,1,389.99,10/16/19 21:16,"734 Cherry St, Los Angeles, CA 90001" -277118,AAA Batteries (4-pack),1,2.99,10/08/19 17:34,"806 6th St, Los Angeles, CA 90001" -277119,Wired Headphones,1,11.99,10/22/19 16:50,"322 Lake St, Los Angeles, CA 90001" -277120,AA Batteries (4-pack),1,3.84,10/20/19 08:57,"884 Walnut St, San Francisco, CA 94016" -277121,Lightning Charging Cable,1,14.95,10/31/19 20:45,"356 Ridge St, Portland, ME 04101" -277122,Wired Headphones,1,11.99,10/29/19 19:37,"823 Hickory St, Los Angeles, CA 90001" -277123,Apple Airpods Headphones,1,150,10/19/19 15:12,"9 West St, San Francisco, CA 94016" -277124,Lightning Charging Cable,1,14.95,10/11/19 16:22,"79 Johnson St, Atlanta, GA 30301" -277125,Bose SoundSport Headphones,1,99.99,10/14/19 10:40,"124 Cedar St, Portland, OR 97035" -277126,USB-C Charging Cable,1,11.95,10/15/19 22:04,"765 North St, Boston, MA 02215" -277127,Wired Headphones,1,11.99,10/10/19 09:52,"593 12th St, Los Angeles, CA 90001" -277128,27in FHD Monitor,1,149.99,10/13/19 20:56,"414 11th St, Atlanta, GA 30301" -277129,Bose SoundSport Headphones,1,99.99,10/15/19 20:27,"248 Maple St, San Francisco, CA 94016" -277130,Wired Headphones,1,11.99,10/26/19 22:42,"516 Cherry St, Atlanta, GA 30301" -277131,ThinkPad Laptop,1,999.99,10/25/19 00:44,"32 Park St, Boston, MA 02215" -277132,Bose SoundSport Headphones,1,99.99,10/26/19 21:59,"310 Wilson St, New York City, NY 10001" -277133,Macbook Pro Laptop,1,1700,10/06/19 16:19,"554 8th St, San Francisco, CA 94016" -277134,USB-C Charging Cable,1,11.95,10/09/19 07:21,"8 Lake St, Austin, TX 73301" -277135,AA Batteries (4-pack),1,3.84,10/19/19 18:43,"725 14th St, San Francisco, CA 94016" -277136,AA Batteries (4-pack),2,3.84,10/28/19 12:18,"409 Hickory St, Dallas, TX 75001" -277136,34in Ultrawide Monitor,1,379.99,10/28/19 12:18,"409 Hickory St, Dallas, TX 75001" -277137,AAA Batteries (4-pack),4,2.99,10/20/19 07:10,"944 West St, San Francisco, CA 94016" -277138,Google Phone,1,600,10/13/19 13:02,"35 Elm St, San Francisco, CA 94016" -277139,Apple Airpods Headphones,1,150,10/24/19 06:18,"961 9th St, San Francisco, CA 94016" -277140,27in 4K Gaming Monitor,1,389.99,10/22/19 17:02,"964 South St, Austin, TX 73301" -277141,Lightning Charging Cable,1,14.95,10/24/19 17:10,"855 Wilson St, New York City, NY 10001" -277142,Lightning Charging Cable,1,14.95,10/18/19 20:56,"658 Willow St, Austin, TX 73301" -277143,AAA Batteries (4-pack),2,2.99,10/01/19 17:43,"691 Lake St, New York City, NY 10001" -277144,AAA Batteries (4-pack),1,2.99,10/04/19 09:22,"36 6th St, Boston, MA 02215" -277145,Google Phone,1,600,10/05/19 19:19,"372 Johnson St, Los Angeles, CA 90001" -277146,USB-C Charging Cable,1,11.95,10/06/19 16:38,"729 10th St, New York City, NY 10001" -277147,Wired Headphones,1,11.99,10/10/19 09:29,"863 Lincoln St, New York City, NY 10001" -277147,USB-C Charging Cable,1,11.95,10/10/19 09:29,"863 Lincoln St, New York City, NY 10001" -277148,Flatscreen TV,1,300,10/31/19 18:35,"294 Ridge St, San Francisco, CA 94016" -277149,Macbook Pro Laptop,1,1700,10/06/19 18:18,"190 12th St, Atlanta, GA 30301" -277150,AAA Batteries (4-pack),1,2.99,10/07/19 12:52,"433 Hill St, San Francisco, CA 94016" -277151,AAA Batteries (4-pack),1,2.99,10/13/19 12:36,"598 Lake St, Dallas, TX 75001" -277152,20in Monitor,1,109.99,10/25/19 12:17,"249 Willow St, Dallas, TX 75001" -277153,AAA Batteries (4-pack),2,2.99,10/14/19 10:49,"236 Ridge St, Los Angeles, CA 90001" -277154,AA Batteries (4-pack),2,3.84,10/13/19 21:02,"825 Washington St, Seattle, WA 98101" -277155,Macbook Pro Laptop,1,1700,10/09/19 19:10,"481 Lakeview St, San Francisco, CA 94016" -277156,Lightning Charging Cable,1,14.95,10/21/19 07:54,"137 Johnson St, Austin, TX 73301" -277157,Wired Headphones,2,11.99,10/05/19 10:32,"613 Church St, New York City, NY 10001" -277158,AA Batteries (4-pack),2,3.84,10/06/19 03:16,"113 5th St, San Francisco, CA 94016" -277159,AA Batteries (4-pack),1,3.84,10/11/19 20:54,"461 Park St, New York City, NY 10001" -277160,27in 4K Gaming Monitor,1,389.99,10/22/19 18:47,"653 Church St, San Francisco, CA 94016" -277161,AAA Batteries (4-pack),1,2.99,10/17/19 16:56,"436 Sunset St, Los Angeles, CA 90001" -277162,USB-C Charging Cable,1,11.95,10/29/19 13:51,"196 Center St, San Francisco, CA 94016" -277163,Lightning Charging Cable,1,14.95,10/03/19 07:28,"576 Center St, Portland, ME 04101" -277164,Lightning Charging Cable,1,14.95,10/03/19 00:28,"921 Lake St, Seattle, WA 98101" -277165,Lightning Charging Cable,1,14.95,10/11/19 15:05,"888 Sunset St, Boston, MA 02215" -277166,34in Ultrawide Monitor,1,379.99,10/22/19 21:56,"989 Park St, Dallas, TX 75001" -277167,Wired Headphones,1,11.99,10/03/19 15:39,"924 West St, Los Angeles, CA 90001" -277168,USB-C Charging Cable,1,11.95,10/08/19 13:40,"405 Hill St, San Francisco, CA 94016" -277169,Bose SoundSport Headphones,1,99.99,10/13/19 12:29,"24 2nd St, Portland, OR 97035" -277170,Lightning Charging Cable,1,14.95,10/16/19 21:39,"20 River St, Austin, TX 73301" -277171,USB-C Charging Cable,1,11.95,10/28/19 09:23,"698 10th St, San Francisco, CA 94016" -277172,AAA Batteries (4-pack),2,2.99,10/07/19 18:12,"396 4th St, New York City, NY 10001" -277173,Flatscreen TV,1,300,10/16/19 19:33,"752 Johnson St, San Francisco, CA 94016" -277174,Wired Headphones,1,11.99,10/04/19 13:10,"331 South St, San Francisco, CA 94016" -277175,AAA Batteries (4-pack),1,2.99,10/17/19 11:00,"377 Ridge St, Los Angeles, CA 90001" -277176,AAA Batteries (4-pack),2,2.99,10/07/19 16:09,"181 Washington St, Boston, MA 02215" -277177,AAA Batteries (4-pack),1,2.99,10/23/19 20:28,"75 Adams St, Boston, MA 02215" -277178,Lightning Charging Cable,1,14.95,10/14/19 20:01,"241 Hickory St, San Francisco, CA 94016" -277179,AA Batteries (4-pack),1,3.84,10/15/19 15:19,"49 Maple St, San Francisco, CA 94016" -277180,Bose SoundSport Headphones,1,99.99,10/06/19 19:38,"725 South St, San Francisco, CA 94016" -277181,AA Batteries (4-pack),1,3.84,10/13/19 19:18,"398 Spruce St, Portland, OR 97035" -277182,Bose SoundSport Headphones,1,99.99,10/07/19 00:34,"532 Ridge St, Dallas, TX 75001" -277183,Lightning Charging Cable,1,14.95,10/24/19 22:14,"761 9th St, New York City, NY 10001" -277184,20in Monitor,1,109.99,10/06/19 16:13,"641 Ridge St, Seattle, WA 98101" -277185,AAA Batteries (4-pack),2,2.99,10/21/19 16:33,"532 Center St, Dallas, TX 75001" -277186,AA Batteries (4-pack),1,3.84,10/05/19 21:55,"397 Center St, Los Angeles, CA 90001" -277187,AA Batteries (4-pack),3,3.84,10/09/19 01:07,"122 Johnson St, Los Angeles, CA 90001" -277188,Wired Headphones,2,11.99,10/02/19 06:52,"814 North St, San Francisco, CA 94016" -277189,Wired Headphones,1,11.99,10/27/19 06:46,"458 Wilson St, San Francisco, CA 94016" -277190,Vareebadd Phone,1,400,10/20/19 19:05,"972 Pine St, Boston, MA 02215" -277191,AA Batteries (4-pack),2,3.84,10/01/19 09:23,"565 Adams St, Dallas, TX 75001" -277192,27in 4K Gaming Monitor,1,389.99,10/26/19 22:36,"163 9th St, San Francisco, CA 94016" -277193,AAA Batteries (4-pack),1,2.99,10/12/19 12:22,"491 Meadow St, Seattle, WA 98101" -277194,AAA Batteries (4-pack),1,2.99,10/04/19 12:07,"974 North St, Boston, MA 02215" -277195,Macbook Pro Laptop,1,1700,10/24/19 16:21,"291 6th St, Dallas, TX 75001" -277196,Flatscreen TV,1,300,10/09/19 23:02,"451 12th St, New York City, NY 10001" -277197,Wired Headphones,1,11.99,10/19/19 20:52,"465 Maple St, Dallas, TX 75001" -277197,27in FHD Monitor,1,149.99,10/19/19 20:52,"465 Maple St, Dallas, TX 75001" -277198,iPhone,1,700,10/06/19 20:59,"24 14th St, Portland, OR 97035" -277199,AAA Batteries (4-pack),1,2.99,10/28/19 15:10,"19 Forest St, Atlanta, GA 30301" -277200,USB-C Charging Cable,1,11.95,10/30/19 20:59,"738 1st St, San Francisco, CA 94016" -277201,Google Phone,1,600,10/17/19 13:28,"152 9th St, Austin, TX 73301" -277202,Wired Headphones,1,11.99,10/17/19 16:52,"671 14th St, San Francisco, CA 94016" -277203,34in Ultrawide Monitor,1,379.99,10/31/19 22:34,"645 Center St, New York City, NY 10001" -277204,Bose SoundSport Headphones,1,99.99,10/26/19 21:27,"43 Washington St, Portland, OR 97035" -277205,AAA Batteries (4-pack),1,2.99,10/11/19 01:00,"937 11th St, Seattle, WA 98101" -277206,20in Monitor,1,109.99,10/06/19 12:57,"906 North St, Los Angeles, CA 90001" -277207,Flatscreen TV,1,300,10/16/19 15:14,"44 1st St, Dallas, TX 75001" -277208,USB-C Charging Cable,1,11.95,10/04/19 00:48,"100 1st St, Los Angeles, CA 90001" -277209,AA Batteries (4-pack),1,3.84,10/15/19 17:45,"233 8th St, Seattle, WA 98101" -277210,ThinkPad Laptop,1,999.99,10/21/19 20:23,"765 Washington St, Los Angeles, CA 90001" -277211,AA Batteries (4-pack),1,3.84,10/16/19 06:54,"421 7th St, San Francisco, CA 94016" -277211,USB-C Charging Cable,1,11.95,10/16/19 06:54,"421 7th St, San Francisco, CA 94016" -277212,AA Batteries (4-pack),2,3.84,10/29/19 16:44,"814 Cedar St, Dallas, TX 75001" -277213,20in Monitor,1,109.99,10/02/19 12:50,"809 Dogwood St, Austin, TX 73301" -277214,USB-C Charging Cable,2,11.95,10/03/19 13:06,"698 14th St, Portland, ME 04101" -277215,AA Batteries (4-pack),1,3.84,10/11/19 19:56,"205 Park St, Seattle, WA 98101" -277216,27in 4K Gaming Monitor,1,389.99,10/27/19 19:40,"180 Highland St, Los Angeles, CA 90001" -277217,Lightning Charging Cable,1,14.95,10/16/19 08:58,"4 Park St, Boston, MA 02215" -277218,AA Batteries (4-pack),3,3.84,10/18/19 13:19,"128 Jackson St, San Francisco, CA 94016" -277219,Lightning Charging Cable,1,14.95,10/13/19 13:48,"349 Lincoln St, Los Angeles, CA 90001" -277219,Wired Headphones,2,11.99,10/13/19 13:48,"349 Lincoln St, Los Angeles, CA 90001" -277220,AA Batteries (4-pack),1,3.84,10/06/19 14:42,"27 Wilson St, Portland, OR 97035" -277221,Wired Headphones,1,11.99,10/03/19 17:11,"125 Elm St, Seattle, WA 98101" -277222,ThinkPad Laptop,1,999.99,10/25/19 23:31,"945 Cedar St, Boston, MA 02215" -277223,Flatscreen TV,1,300,10/12/19 06:28,"325 5th St, Dallas, TX 75001" -277224,34in Ultrawide Monitor,1,379.99,10/18/19 16:45,"491 Dogwood St, San Francisco, CA 94016" -277225,Flatscreen TV,1,300,10/07/19 20:13,"575 8th St, Boston, MA 02215" -277226,Lightning Charging Cable,1,14.95,10/22/19 14:42,"461 South St, Los Angeles, CA 90001" -277227,Lightning Charging Cable,1,14.95,10/19/19 09:37,"475 Dogwood St, San Francisco, CA 94016" -277228,AAA Batteries (4-pack),1,2.99,10/23/19 13:32,"995 Meadow St, San Francisco, CA 94016" -277229,AA Batteries (4-pack),1,3.84,10/06/19 10:09,"263 Walnut St, San Francisco, CA 94016" -277230,27in 4K Gaming Monitor,1,389.99,10/17/19 20:27,"938 Willow St, San Francisco, CA 94016" -277231,AAA Batteries (4-pack),2,2.99,10/23/19 17:00,"782 Spruce St, San Francisco, CA 94016" -277232,USB-C Charging Cable,1,11.95,10/01/19 17:56,"455 7th St, San Francisco, CA 94016" -277233,Bose SoundSport Headphones,2,99.99,10/16/19 10:40,"186 Washington St, Atlanta, GA 30301" -277234,AA Batteries (4-pack),1,3.84,10/26/19 11:56,"553 Ridge St, San Francisco, CA 94016" -277235,AA Batteries (4-pack),1,3.84,10/26/19 11:47,"905 Lakeview St, Seattle, WA 98101" -277236,Lightning Charging Cable,1,14.95,10/15/19 13:52,"191 Center St, San Francisco, CA 94016" -277237,Bose SoundSport Headphones,1,99.99,10/10/19 00:48,"383 Willow St, Portland, ME 04101" -277238,AAA Batteries (4-pack),1,2.99,10/02/19 22:43,"590 Walnut St, New York City, NY 10001" -277239,AA Batteries (4-pack),1,3.84,10/14/19 18:43,"537 Church St, San Francisco, CA 94016" -277240,Lightning Charging Cable,1,14.95,10/06/19 17:38,"957 Pine St, Portland, OR 97035" -277241,Lightning Charging Cable,1,14.95,10/09/19 11:48,"572 Adams St, San Francisco, CA 94016" -277242,27in 4K Gaming Monitor,1,389.99,10/01/19 09:40,"378 2nd St, San Francisco, CA 94016" -277243,USB-C Charging Cable,1,11.95,10/14/19 14:42,"610 Hickory St, Atlanta, GA 30301" -277244,34in Ultrawide Monitor,1,379.99,10/22/19 20:00,"33 North St, San Francisco, CA 94016" -277244,AA Batteries (4-pack),1,3.84,10/22/19 20:00,"33 North St, San Francisco, CA 94016" -277245,Bose SoundSport Headphones,1,99.99,10/28/19 00:22,"361 1st St, San Francisco, CA 94016" -277246,Bose SoundSport Headphones,1,99.99,10/05/19 16:05,"411 Hill St, New York City, NY 10001" -277247,Apple Airpods Headphones,1,150,10/05/19 19:09,"220 Hill St, San Francisco, CA 94016" -277248,27in FHD Monitor,1,149.99,10/02/19 16:54,"149 Maple St, San Francisco, CA 94016" -277249,Wired Headphones,1,11.99,10/19/19 14:30,"425 Elm St, Boston, MA 02215" -277250,Google Phone,1,600,10/05/19 14:24,"243 Adams St, New York City, NY 10001" -277251,Google Phone,1,600,10/16/19 15:07,"705 Washington St, Los Angeles, CA 90001" -277251,USB-C Charging Cable,1,11.95,10/16/19 15:07,"705 Washington St, Los Angeles, CA 90001" -277252,AAA Batteries (4-pack),1,2.99,10/24/19 11:47,"794 4th St, San Francisco, CA 94016" -277253,27in 4K Gaming Monitor,1,389.99,10/31/19 13:23,"991 Pine St, Dallas, TX 75001" -277254,AA Batteries (4-pack),2,3.84,10/11/19 15:05,"415 Dogwood St, Seattle, WA 98101" -277255,AAA Batteries (4-pack),3,2.99,10/01/19 15:25,"631 River St, Los Angeles, CA 90001" -277256,iPhone,1,700,10/24/19 23:21,"656 Willow St, Austin, TX 73301" -,,,,, -277257,USB-C Charging Cable,1,11.95,10/31/19 12:43,"977 Lake St, Atlanta, GA 30301" -277258,Apple Airpods Headphones,1,150,10/08/19 21:25,"527 Lincoln St, New York City, NY 10001" -277259,AAA Batteries (4-pack),1,2.99,10/11/19 06:02,"557 Wilson St, New York City, NY 10001" -277260,Bose SoundSport Headphones,1,99.99,10/22/19 19:38,"833 8th St, Atlanta, GA 30301" -277261,Flatscreen TV,1,300,10/24/19 16:40,"446 Wilson St, New York City, NY 10001" -277262,Bose SoundSport Headphones,1,99.99,10/03/19 13:50,"136 North St, New York City, NY 10001" -277263,Bose SoundSport Headphones,1,99.99,10/11/19 14:46,"637 South St, Portland, OR 97035" -277264,Lightning Charging Cable,1,14.95,10/26/19 15:33,"578 Adams St, Austin, TX 73301" -277265,AA Batteries (4-pack),1,3.84,10/17/19 00:04,"283 Church St, Austin, TX 73301" -277266,AA Batteries (4-pack),1,3.84,10/24/19 12:43,"896 Willow St, Los Angeles, CA 90001" -277267,AAA Batteries (4-pack),1,2.99,10/07/19 11:29,"181 Hickory St, Boston, MA 02215" -277268,USB-C Charging Cable,1,11.95,10/09/19 21:32,"784 10th St, New York City, NY 10001" -277269,Lightning Charging Cable,1,14.95,10/05/19 22:42,"956 Lincoln St, San Francisco, CA 94016" -277269,USB-C Charging Cable,1,11.95,10/05/19 22:42,"956 Lincoln St, San Francisco, CA 94016" -277270,Macbook Pro Laptop,1,1700,10/01/19 21:13,"762 Lake St, Austin, TX 73301" -277271,AAA Batteries (4-pack),2,2.99,10/18/19 07:26,"586 Willow St, Portland, OR 97035" -277272,AA Batteries (4-pack),2,3.84,10/22/19 11:55,"840 Lakeview St, Los Angeles, CA 90001" -277273,AAA Batteries (4-pack),2,2.99,10/29/19 20:07,"435 West St, Dallas, TX 75001" -277274,Wired Headphones,1,11.99,10/16/19 17:58,"297 Jefferson St, Los Angeles, CA 90001" -277275,iPhone,1,700,10/26/19 11:45,"724 Cherry St, Los Angeles, CA 90001" -277276,AA Batteries (4-pack),1,3.84,10/14/19 14:51,"408 Dogwood St, Los Angeles, CA 90001" -277277,Flatscreen TV,1,300,10/01/19 21:11,"174 Washington St, San Francisco, CA 94016" -277278,USB-C Charging Cable,1,11.95,10/18/19 23:38,"627 1st St, Boston, MA 02215" -277279,27in 4K Gaming Monitor,1,389.99,10/19/19 19:40,"820 Jefferson St, Austin, TX 73301" -277280,AA Batteries (4-pack),2,3.84,10/09/19 01:10,"673 13th St, New York City, NY 10001" -277281,Google Phone,1,600,10/06/19 02:52,"765 West St, Seattle, WA 98101" -277281,USB-C Charging Cable,1,11.95,10/06/19 02:52,"765 West St, Seattle, WA 98101" -277282,AAA Batteries (4-pack),1,2.99,10/01/19 16:13,"574 Walnut St, San Francisco, CA 94016" -277283,34in Ultrawide Monitor,1,379.99,10/16/19 20:29,"498 Forest St, Portland, ME 04101" -277284,ThinkPad Laptop,1,999.99,10/23/19 12:49,"114 4th St, San Francisco, CA 94016" -277285,AA Batteries (4-pack),1,3.84,10/11/19 18:43,"892 Lake St, New York City, NY 10001" -277286,Lightning Charging Cable,1,14.95,10/23/19 00:01,"830 Washington St, New York City, NY 10001" -277287,AAA Batteries (4-pack),1,2.99,10/17/19 21:53,"419 Meadow St, Los Angeles, CA 90001" -277288,Wired Headphones,1,11.99,10/05/19 16:23,"362 Ridge St, Los Angeles, CA 90001" -277289,AA Batteries (4-pack),1,3.84,10/25/19 22:34,"974 Hill St, Los Angeles, CA 90001" -277290,34in Ultrawide Monitor,1,379.99,10/21/19 02:31,"169 Cherry St, Los Angeles, CA 90001" -277291,27in FHD Monitor,1,149.99,10/09/19 09:57,"244 10th St, New York City, NY 10001" -277292,USB-C Charging Cable,1,11.95,10/22/19 12:25,"144 North St, Boston, MA 02215" -277293,Bose SoundSport Headphones,1,99.99,10/12/19 11:26,"696 Maple St, New York City, NY 10001" -277294,Wired Headphones,1,11.99,10/29/19 12:42,"730 11th St, New York City, NY 10001" -277295,Flatscreen TV,1,300,10/28/19 19:34,"352 Dogwood St, San Francisco, CA 94016" -277296,Wired Headphones,1,11.99,10/06/19 13:36,"478 Willow St, Atlanta, GA 30301" -277297,Lightning Charging Cable,1,14.95,10/17/19 10:13,"608 8th St, Seattle, WA 98101" -277298,AAA Batteries (4-pack),3,2.99,10/08/19 12:12,"986 Cherry St, Los Angeles, CA 90001" -277299,AA Batteries (4-pack),2,3.84,10/02/19 14:15,"922 Park St, Boston, MA 02215" -277300,Lightning Charging Cable,1,14.95,10/15/19 11:17,"388 Jefferson St, Seattle, WA 98101" -277301,AAA Batteries (4-pack),2,2.99,10/18/19 11:44,"763 Dogwood St, San Francisco, CA 94016" -277302,34in Ultrawide Monitor,1,379.99,10/29/19 11:38,"259 Johnson St, New York City, NY 10001" -277303,Wired Headphones,1,11.99,10/28/19 23:28,"668 Chestnut St, Portland, OR 97035" -277304,27in 4K Gaming Monitor,1,389.99,10/15/19 11:09,"600 Forest St, Los Angeles, CA 90001" -277305,27in 4K Gaming Monitor,1,389.99,10/07/19 13:22,"543 10th St, San Francisco, CA 94016" -277306,AA Batteries (4-pack),1,3.84,10/20/19 22:40,"328 2nd St, Dallas, TX 75001" -277307,ThinkPad Laptop,1,999.99,10/02/19 15:37,"920 Maple St, Seattle, WA 98101" -277308,AA Batteries (4-pack),1,3.84,10/16/19 12:05,"407 12th St, Austin, TX 73301" -277309,Wired Headphones,1,11.99,10/08/19 19:17,"289 River St, Seattle, WA 98101" -277310,Apple Airpods Headphones,1,150,10/19/19 09:34,"325 5th St, San Francisco, CA 94016" -277311,Google Phone,1,600,10/24/19 15:42,"952 5th St, Portland, OR 97035" -277311,USB-C Charging Cable,1,11.95,10/24/19 15:42,"952 5th St, Portland, OR 97035" -277312,Google Phone,1,600,10/21/19 10:08,"795 Center St, San Francisco, CA 94016" -277313,34in Ultrawide Monitor,1,379.99,10/03/19 12:02,"566 14th St, San Francisco, CA 94016" -277314,Bose SoundSport Headphones,1,99.99,10/14/19 12:28,"622 1st St, Seattle, WA 98101" -277315,Lightning Charging Cable,1,14.95,10/30/19 09:23,"843 Main St, Atlanta, GA 30301" -277316,USB-C Charging Cable,1,11.95,10/22/19 22:41,"728 Walnut St, New York City, NY 10001" -277317,USB-C Charging Cable,1,11.95,10/04/19 19:28,"299 Main St, Portland, OR 97035" -277318,27in FHD Monitor,1,149.99,10/24/19 21:58,"22 Center St, Portland, OR 97035" -277319,Lightning Charging Cable,1,14.95,10/20/19 10:16,"145 Hill St, Boston, MA 02215" -277320,AA Batteries (4-pack),2,3.84,10/16/19 12:47,"39 West St, San Francisco, CA 94016" -277321,34in Ultrawide Monitor,1,379.99,10/10/19 10:58,"109 14th St, Los Angeles, CA 90001" -277322,Lightning Charging Cable,1,14.95,10/15/19 12:13,"81 2nd St, Boston, MA 02215" -277323,Macbook Pro Laptop,1,1700,10/22/19 19:21,"92 Highland St, Seattle, WA 98101" -277324,AA Batteries (4-pack),1,3.84,10/15/19 15:23,"576 Cherry St, Los Angeles, CA 90001" -277325,Wired Headphones,2,11.99,10/02/19 00:58,"439 Meadow St, Los Angeles, CA 90001" -277326,Wired Headphones,1,11.99,10/22/19 20:09,"397 2nd St, Portland, OR 97035" -277327,AA Batteries (4-pack),1,3.84,10/12/19 14:07,"550 Hill St, Seattle, WA 98101" -277328,27in 4K Gaming Monitor,1,389.99,10/08/19 12:27,"169 Wilson St, Los Angeles, CA 90001" -277329,27in FHD Monitor,1,149.99,10/27/19 00:09,"612 Hill St, Los Angeles, CA 90001" -277330,AA Batteries (4-pack),1,3.84,10/18/19 13:34,"717 South St, Seattle, WA 98101" -277331,Lightning Charging Cable,1,14.95,10/18/19 13:14,"564 14th St, Seattle, WA 98101" -277332,Apple Airpods Headphones,1,150,10/09/19 11:46,"12 North St, Los Angeles, CA 90001" -277333,USB-C Charging Cable,1,11.95,10/21/19 16:18,"620 Lakeview St, Austin, TX 73301" -277334,Macbook Pro Laptop,1,1700,10/14/19 21:50,"50 Highland St, New York City, NY 10001" -277335,LG Dryer,1,600.0,10/24/19 13:51,"79 10th St, San Francisco, CA 94016" -277336,Lightning Charging Cable,1,14.95,10/05/19 18:42,"158 North St, New York City, NY 10001" -277337,34in Ultrawide Monitor,1,379.99,10/27/19 22:20,"592 Hill St, Austin, TX 73301" -277338,Flatscreen TV,1,300,10/13/19 17:35,"13 Hill St, Seattle, WA 98101" -277339,Wired Headphones,1,11.99,10/09/19 08:53,"297 14th St, Dallas, TX 75001" -277340,Apple Airpods Headphones,1,150,10/20/19 13:34,"955 6th St, San Francisco, CA 94016" -277341,Wired Headphones,1,11.99,10/25/19 15:20,"863 Cherry St, New York City, NY 10001" -277342,Lightning Charging Cable,1,14.95,10/28/19 12:35,"576 Main St, San Francisco, CA 94016" -277343,USB-C Charging Cable,1,11.95,10/05/19 19:12,"790 Jackson St, Los Angeles, CA 90001" -277344,27in 4K Gaming Monitor,1,389.99,10/11/19 13:02,"874 Jefferson St, New York City, NY 10001" -277345,USB-C Charging Cable,1,11.95,10/15/19 21:41,"273 Dogwood St, San Francisco, CA 94016" -277346,Lightning Charging Cable,1,14.95,10/28/19 22:23,"838 Elm St, San Francisco, CA 94016" -277346,AA Batteries (4-pack),1,3.84,10/28/19 22:23,"838 Elm St, San Francisco, CA 94016" -277347,AA Batteries (4-pack),1,3.84,10/03/19 15:08,"739 8th St, San Francisco, CA 94016" -277348,27in FHD Monitor,1,149.99,10/29/19 16:02,"568 Willow St, New York City, NY 10001" -277349,Google Phone,1,600,10/29/19 17:48,"990 Lincoln St, Boston, MA 02215" -277349,USB-C Charging Cable,1,11.95,10/29/19 17:48,"990 Lincoln St, Boston, MA 02215" -277350,ThinkPad Laptop,1,999.99,10/31/19 13:39,"884 Jefferson St, Atlanta, GA 30301" -277351,27in 4K Gaming Monitor,1,389.99,10/31/19 22:39,"803 West St, Seattle, WA 98101" -277352,AAA Batteries (4-pack),1,2.99,10/26/19 23:52,"829 Jackson St, Portland, OR 97035" -277353,Apple Airpods Headphones,1,150,10/28/19 19:09,"472 Center St, Atlanta, GA 30301" -277354,AAA Batteries (4-pack),1,2.99,10/15/19 09:30,"114 14th St, San Francisco, CA 94016" -277355,Apple Airpods Headphones,1,150,10/12/19 14:10,"912 2nd St, Boston, MA 02215" -277356,AAA Batteries (4-pack),1,2.99,10/10/19 16:47,"605 4th St, San Francisco, CA 94016" -277357,USB-C Charging Cable,1,11.95,10/11/19 20:12,"661 South St, New York City, NY 10001" -277358,Macbook Pro Laptop,1,1700,10/20/19 12:43,"719 North St, Portland, ME 04101" -277359,Lightning Charging Cable,1,14.95,10/04/19 06:58,"649 South St, Dallas, TX 75001" -277360,Lightning Charging Cable,1,14.95,10/16/19 23:29,"592 Lakeview St, Dallas, TX 75001" -277361,iPhone,1,700,10/14/19 17:35,"937 Elm St, Atlanta, GA 30301" -277362,AAA Batteries (4-pack),2,2.99,10/29/19 17:55,"949 North St, Dallas, TX 75001" -277363,AAA Batteries (4-pack),1,2.99,10/17/19 11:39,"457 Hill St, San Francisco, CA 94016" -277364,Google Phone,1,600,10/26/19 14:36,"997 Hickory St, Portland, OR 97035" -277364,USB-C Charging Cable,1,11.95,10/26/19 14:36,"997 Hickory St, Portland, OR 97035" -277365,USB-C Charging Cable,1,11.95,10/26/19 17:33,"9 Meadow St, San Francisco, CA 94016" -277366,AA Batteries (4-pack),2,3.84,10/07/19 19:35,"535 2nd St, San Francisco, CA 94016" -277367,27in 4K Gaming Monitor,1,389.99,10/09/19 19:21,"435 Cherry St, New York City, NY 10001" -277368,USB-C Charging Cable,1,11.95,10/04/19 18:12,"893 Lake St, Los Angeles, CA 90001" -277369,Flatscreen TV,1,300,10/22/19 18:26,"39 Lincoln St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -277370,iPhone,1,700,10/30/19 04:07,"211 Pine St, Boston, MA 02215" -277371,Lightning Charging Cable,1,14.95,10/30/19 22:09,"281 Maple St, Los Angeles, CA 90001" -277372,27in 4K Gaming Monitor,1,389.99,10/13/19 10:29,"379 Jefferson St, Seattle, WA 98101" -277373,Wired Headphones,2,11.99,10/26/19 18:59,"749 14th St, San Francisco, CA 94016" -277374,27in FHD Monitor,1,149.99,10/18/19 19:08,"125 4th St, Atlanta, GA 30301" -277375,Apple Airpods Headphones,1,150,10/11/19 23:08,"121 River St, Austin, TX 73301" -277376,20in Monitor,1,109.99,10/19/19 03:37,"679 Chestnut St, Dallas, TX 75001" -277377,Wired Headphones,1,11.99,10/11/19 12:58,"869 South St, Seattle, WA 98101" -277378,Wired Headphones,1,11.99,10/13/19 15:56,"36 Spruce St, San Francisco, CA 94016" -277379,Apple Airpods Headphones,1,150,10/07/19 22:44,"407 Center St, Boston, MA 02215" -277380,Apple Airpods Headphones,1,150,10/09/19 07:33,"781 Maple St, Boston, MA 02215" -277381,Wired Headphones,1,11.99,10/08/19 20:53,"681 West St, Atlanta, GA 30301" -277382,Bose SoundSport Headphones,1,99.99,10/03/19 17:44,"342 Lakeview St, New York City, NY 10001" -277383,20in Monitor,1,109.99,10/25/19 18:52,"560 Cherry St, San Francisco, CA 94016" -277384,ThinkPad Laptop,1,999.99,10/31/19 10:27,"622 Meadow St, Los Angeles, CA 90001" -277385,Lightning Charging Cable,1,14.95,10/09/19 23:02,"998 7th St, San Francisco, CA 94016" -277386,Lightning Charging Cable,1,14.95,10/21/19 20:20,"716 Adams St, Portland, OR 97035" -277387,Wired Headphones,1,11.99,10/13/19 20:31,"152 Hickory St, Portland, OR 97035" -277388,Bose SoundSport Headphones,1,99.99,10/07/19 22:04,"968 North St, Atlanta, GA 30301" -277389,Google Phone,1,600,10/23/19 13:28,"811 11th St, Dallas, TX 75001" -277390,Bose SoundSport Headphones,1,99.99,10/02/19 18:33,"491 Maple St, Los Angeles, CA 90001" -277391,Lightning Charging Cable,1,14.95,10/21/19 12:58,"408 Highland St, San Francisco, CA 94016" -277392,20in Monitor,1,109.99,10/27/19 10:31,"734 Main St, Los Angeles, CA 90001" -277393,iPhone,1,700,10/28/19 16:39,"882 Cherry St, Portland, OR 97035" -277394,USB-C Charging Cable,1,11.95,10/01/19 16:40,"151 Washington St, San Francisco, CA 94016" -277395,AA Batteries (4-pack),1,3.84,10/10/19 13:46,"529 River St, Austin, TX 73301" -277396,ThinkPad Laptop,1,999.99,10/30/19 23:12,"613 River St, Austin, TX 73301" -277397,27in FHD Monitor,1,149.99,10/05/19 17:59,"411 Hickory St, Seattle, WA 98101" -277398,AA Batteries (4-pack),1,3.84,10/06/19 01:12,"962 Walnut St, Boston, MA 02215" -277399,AA Batteries (4-pack),1,3.84,10/08/19 16:30,"204 South St, Boston, MA 02215" -277400,AAA Batteries (4-pack),2,2.99,10/02/19 18:53,"452 Center St, San Francisco, CA 94016" -277401,Lightning Charging Cable,1,14.95,10/27/19 19:59,"807 Washington St, Los Angeles, CA 90001" -277402,iPhone,1,700,10/25/19 18:53,"688 Adams St, Austin, TX 73301" -277403,AA Batteries (4-pack),1,3.84,10/12/19 13:45,"385 Willow St, Portland, OR 97035" -277404,AAA Batteries (4-pack),2,2.99,10/22/19 12:32,"417 Hickory St, Dallas, TX 75001" -277405,Bose SoundSport Headphones,1,99.99,10/16/19 22:58,"561 Elm St, Seattle, WA 98101" -277406,AAA Batteries (4-pack),1,2.99,10/23/19 18:30,"107 Sunset St, Boston, MA 02215" -277407,AA Batteries (4-pack),1,3.84,10/07/19 19:27,"461 Chestnut St, Seattle, WA 98101" -277408,AAA Batteries (4-pack),1,2.99,10/28/19 14:45,"459 Wilson St, Los Angeles, CA 90001" -277409,AA Batteries (4-pack),1,3.84,10/18/19 15:28,"128 Cedar St, Boston, MA 02215" -277410,Wired Headphones,1,11.99,10/04/19 23:03,"783 North St, New York City, NY 10001" -277411,Lightning Charging Cable,1,14.95,10/15/19 16:28,"299 Wilson St, New York City, NY 10001" -277412,USB-C Charging Cable,1,11.95,10/20/19 21:22,"18 Cherry St, Austin, TX 73301" -277413,Lightning Charging Cable,1,14.95,10/14/19 18:00,"957 6th St, Seattle, WA 98101" -277414,AA Batteries (4-pack),1,3.84,10/28/19 20:58,"833 Church St, New York City, NY 10001" -277415,AA Batteries (4-pack),2,3.84,10/24/19 16:06,"309 Meadow St, Seattle, WA 98101" -277416,USB-C Charging Cable,1,11.95,10/28/19 17:51,"586 12th St, Atlanta, GA 30301" -277417,Wired Headphones,1,11.99,10/14/19 14:30,"428 Meadow St, New York City, NY 10001" -277418,Wired Headphones,1,11.99,10/25/19 17:39,"199 Washington St, Boston, MA 02215" -277419,USB-C Charging Cable,1,11.95,10/24/19 21:18,"533 Forest St, Boston, MA 02215" -277420,Bose SoundSport Headphones,1,99.99,10/07/19 15:05,"900 Jefferson St, Seattle, WA 98101" -277421,USB-C Charging Cable,1,11.95,10/13/19 11:35,"260 Adams St, San Francisco, CA 94016" -277422,AAA Batteries (4-pack),1,2.99,10/15/19 13:05,"389 5th St, Atlanta, GA 30301" -277423,iPhone,1,700,10/13/19 16:10,"272 Lake St, Dallas, TX 75001" -277424,AA Batteries (4-pack),4,3.84,10/10/19 17:33,"62 Hill St, San Francisco, CA 94016" -277425,Macbook Pro Laptop,1,1700,10/30/19 21:20,"462 West St, Dallas, TX 75001" -277426,ThinkPad Laptop,1,999.99,10/29/19 18:45,"778 7th St, Atlanta, GA 30301" -277427,Lightning Charging Cable,1,14.95,10/15/19 08:08,"857 14th St, Seattle, WA 98101" -277428,AAA Batteries (4-pack),1,2.99,10/03/19 23:00,"667 Willow St, Boston, MA 02215" -277429,Macbook Pro Laptop,1,1700,10/28/19 19:15,"226 Cherry St, Boston, MA 02215" -277430,Lightning Charging Cable,1,14.95,10/24/19 09:21,"635 5th St, Los Angeles, CA 90001" -277431,Lightning Charging Cable,1,14.95,10/15/19 12:53,"747 7th St, San Francisco, CA 94016" -277432,USB-C Charging Cable,1,11.95,10/07/19 20:34,"334 Washington St, Portland, OR 97035" -277432,Wired Headphones,1,11.99,10/07/19 20:34,"334 Washington St, Portland, OR 97035" -277433,Wired Headphones,2,11.99,10/28/19 21:50,"443 South St, Los Angeles, CA 90001" -277434,Lightning Charging Cable,1,14.95,10/22/19 10:38,"136 Lincoln St, Seattle, WA 98101" -277435,AA Batteries (4-pack),1,3.84,10/30/19 00:05,"659 Jackson St, Boston, MA 02215" -277436,Wired Headphones,1,11.99,10/10/19 20:30,"100 Main St, Boston, MA 02215" -277437,Bose SoundSport Headphones,1,99.99,10/06/19 11:32,"421 Jackson St, Los Angeles, CA 90001" -277438,Apple Airpods Headphones,1,150,10/13/19 10:00,"954 8th St, San Francisco, CA 94016" -277439,Lightning Charging Cable,1,14.95,10/08/19 14:50,"472 Highland St, San Francisco, CA 94016" -277440,Apple Airpods Headphones,1,150,10/05/19 17:20,"961 Johnson St, Portland, ME 04101" -277441,AA Batteries (4-pack),2,3.84,10/20/19 12:09,"634 Jackson St, New York City, NY 10001" -277442,Apple Airpods Headphones,1,150,10/17/19 10:44,"364 7th St, Seattle, WA 98101" -277443,AAA Batteries (4-pack),1,2.99,10/01/19 20:13,"157 Park St, Portland, OR 97035" -277444,Vareebadd Phone,1,400,10/28/19 14:14,"934 Washington St, Los Angeles, CA 90001" -277445,Lightning Charging Cable,1,14.95,10/05/19 16:58,"941 7th St, Seattle, WA 98101" -277446,AAA Batteries (4-pack),1,2.99,10/27/19 21:30,"550 Park St, Portland, OR 97035" -277447,USB-C Charging Cable,1,11.95,10/23/19 16:39,"16 Lake St, New York City, NY 10001" -277448,27in 4K Gaming Monitor,1,389.99,10/26/19 12:04,"352 4th St, San Francisco, CA 94016" -277449,Lightning Charging Cable,1,14.95,10/04/19 16:37,"665 Park St, Dallas, TX 75001" -277450,Apple Airpods Headphones,1,150,10/19/19 20:43,"702 Adams St, Boston, MA 02215" -277451,AA Batteries (4-pack),1,3.84,10/14/19 00:42,"30 Jackson St, Boston, MA 02215" -277452,USB-C Charging Cable,1,11.95,10/15/19 10:14,"936 4th St, Atlanta, GA 30301" -277453,USB-C Charging Cable,1,11.95,10/14/19 11:54,"541 Chestnut St, Los Angeles, CA 90001" -277454,AAA Batteries (4-pack),3,2.99,10/05/19 17:27,"50 5th St, Dallas, TX 75001" -277455,USB-C Charging Cable,1,11.95,10/22/19 11:06,"799 2nd St, New York City, NY 10001" -277456,AA Batteries (4-pack),1,3.84,10/28/19 10:26,"547 Jackson St, Los Angeles, CA 90001" -277457,Lightning Charging Cable,1,14.95,10/20/19 22:25,"178 Forest St, San Francisco, CA 94016" -277458,Wired Headphones,1,11.99,10/15/19 20:02,"261 Dogwood St, San Francisco, CA 94016" -277459,Wired Headphones,1,11.99,10/08/19 13:20,"109 Lincoln St, Los Angeles, CA 90001" -277460,iPhone,1,700,10/12/19 02:00,"213 Sunset St, Seattle, WA 98101" -277460,Apple Airpods Headphones,1,150,10/12/19 02:00,"213 Sunset St, Seattle, WA 98101" -277461,ThinkPad Laptop,1,999.99,10/01/19 10:00,"484 2nd St, Los Angeles, CA 90001" -277462,Macbook Pro Laptop,1,1700,10/28/19 18:24,"512 Pine St, Portland, OR 97035" -277463,USB-C Charging Cable,1,11.95,10/01/19 20:27,"228 Highland St, Boston, MA 02215" -277464,Lightning Charging Cable,1,14.95,10/12/19 18:41,"267 Johnson St, Los Angeles, CA 90001" -277465,Google Phone,1,600,10/22/19 17:09,"162 Willow St, Los Angeles, CA 90001" -277466,AAA Batteries (4-pack),1,2.99,10/02/19 12:03,"523 13th St, Boston, MA 02215" -277467,AA Batteries (4-pack),2,3.84,10/31/19 16:33,"692 Center St, Dallas, TX 75001" -277468,Google Phone,1,600,10/01/19 08:08,"462 9th St, New York City, NY 10001" -277469,27in FHD Monitor,1,149.99,10/28/19 12:24,"444 Dogwood St, Los Angeles, CA 90001" -277470,AAA Batteries (4-pack),1,2.99,10/19/19 18:44,"40 Washington St, Austin, TX 73301" -277471,AAA Batteries (4-pack),7,2.99,10/09/19 17:48,"158 Lakeview St, San Francisco, CA 94016" -277472,AA Batteries (4-pack),1,3.84,10/26/19 11:48,"124 Forest St, Dallas, TX 75001" -277473,AA Batteries (4-pack),2,3.84,10/24/19 21:12,"531 12th St, San Francisco, CA 94016" -277474,AA Batteries (4-pack),2,3.84,10/07/19 07:19,"16 Maple St, Dallas, TX 75001" -277475,Apple Airpods Headphones,1,150,10/17/19 12:24,"118 Lake St, San Francisco, CA 94016" -277476,AA Batteries (4-pack),1,3.84,10/17/19 22:35,"628 Lake St, Los Angeles, CA 90001" -277477,AAA Batteries (4-pack),1,2.99,10/17/19 19:31,"350 Washington St, Boston, MA 02215" -277478,Wired Headphones,1,11.99,10/12/19 14:42,"23 Jackson St, New York City, NY 10001" -277479,Apple Airpods Headphones,1,150,10/19/19 20:58,"953 Park St, Los Angeles, CA 90001" -277480,Bose SoundSport Headphones,1,99.99,10/06/19 20:18,"443 9th St, Los Angeles, CA 90001" -277481,Wired Headphones,1,11.99,10/20/19 21:36,"581 Cherry St, San Francisco, CA 94016" -277482,Google Phone,1,600,10/29/19 08:02,"156 Dogwood St, Boston, MA 02215" -277483,USB-C Charging Cable,3,11.95,10/30/19 18:07,"23 Lincoln St, San Francisco, CA 94016" -277484,Wired Headphones,1,11.99,10/06/19 16:04,"516 Wilson St, Portland, OR 97035" -277485,Lightning Charging Cable,1,14.95,10/02/19 11:24,"865 10th St, Los Angeles, CA 90001" -277486,USB-C Charging Cable,1,11.95,10/26/19 14:11,"409 11th St, New York City, NY 10001" -277487,Lightning Charging Cable,1,14.95,10/12/19 12:39,"662 Maple St, Boston, MA 02215" -277488,Vareebadd Phone,1,400,10/07/19 22:38,"958 5th St, Dallas, TX 75001" -277489,Lightning Charging Cable,1,14.95,10/30/19 21:16,"656 Jefferson St, San Francisco, CA 94016" -277490,Apple Airpods Headphones,1,150,10/11/19 17:43,"585 Highland St, San Francisco, CA 94016" -277491,Bose SoundSport Headphones,1,99.99,10/17/19 19:25,"304 Willow St, San Francisco, CA 94016" -277492,Lightning Charging Cable,1,14.95,10/11/19 14:16,"391 Willow St, New York City, NY 10001" -277493,Lightning Charging Cable,1,14.95,10/26/19 14:08,"38 Spruce St, Seattle, WA 98101" -277494,ThinkPad Laptop,1,999.99,10/12/19 18:05,"426 9th St, Los Angeles, CA 90001" -277495,Lightning Charging Cable,2,14.95,10/05/19 20:49,"748 9th St, Atlanta, GA 30301" -277496,20in Monitor,1,109.99,10/27/19 14:27,"67 Pine St, Dallas, TX 75001" -277497,AA Batteries (4-pack),1,3.84,10/02/19 16:31,"472 13th St, Los Angeles, CA 90001" -277498,Bose SoundSport Headphones,1,99.99,10/20/19 15:49,"556 Meadow St, San Francisco, CA 94016" -277499,Lightning Charging Cable,1,14.95,10/26/19 00:04,"112 Center St, Dallas, TX 75001" -277500,Wired Headphones,1,11.99,10/21/19 19:05,"350 Forest St, Portland, OR 97035" -277501,Flatscreen TV,1,300,10/29/19 10:34,"570 Maple St, Dallas, TX 75001" -277502,AA Batteries (4-pack),1,3.84,10/04/19 23:34,"212 Wilson St, Los Angeles, CA 90001" -277503,Macbook Pro Laptop,1,1700,10/04/19 20:27,"602 Hickory St, Austin, TX 73301" -277504,USB-C Charging Cable,1,11.95,10/23/19 15:39,"991 Chestnut St, San Francisco, CA 94016" -277505,USB-C Charging Cable,1,11.95,10/18/19 19:22,"332 Sunset St, San Francisco, CA 94016" -277506,AA Batteries (4-pack),2,3.84,10/27/19 13:53,"978 Dogwood St, Seattle, WA 98101" -277507,iPhone,1,700,10/18/19 13:06,"727 Highland St, Los Angeles, CA 90001" -277507,Wired Headphones,1,11.99,10/18/19 13:06,"727 Highland St, Los Angeles, CA 90001" -277508,Bose SoundSport Headphones,1,99.99,10/05/19 21:26,"276 Ridge St, Portland, OR 97035" -277509,AAA Batteries (4-pack),2,2.99,10/10/19 01:07,"823 Chestnut St, New York City, NY 10001" -277510,34in Ultrawide Monitor,1,379.99,10/01/19 13:01,"557 11th St, Atlanta, GA 30301" -277511,Apple Airpods Headphones,1,150,10/28/19 21:13,"483 Johnson St, Los Angeles, CA 90001" -277512,Google Phone,1,600,10/15/19 11:58,"218 2nd St, Portland, OR 97035" -277513,AAA Batteries (4-pack),1,2.99,10/30/19 21:09,"150 Hill St, San Francisco, CA 94016" -277514,27in 4K Gaming Monitor,1,389.99,10/16/19 05:19,"94 12th St, New York City, NY 10001" -277515,Apple Airpods Headphones,1,150,10/28/19 11:54,"92 Elm St, New York City, NY 10001" -277516,USB-C Charging Cable,1,11.95,10/27/19 20:51,"693 13th St, Atlanta, GA 30301" -277517,27in FHD Monitor,1,149.99,10/23/19 12:02,"146 7th St, Portland, OR 97035" -277518,USB-C Charging Cable,1,11.95,10/03/19 01:17,"151 Maple St, Los Angeles, CA 90001" -277519,USB-C Charging Cable,1,11.95,10/24/19 00:33,"198 Adams St, San Francisco, CA 94016" -277520,AAA Batteries (4-pack),1,2.99,10/27/19 06:39,"626 Madison St, Seattle, WA 98101" -277521,USB-C Charging Cable,1,11.95,10/05/19 13:02,"807 West St, Seattle, WA 98101" -277522,Wired Headphones,1,11.99,10/12/19 22:11,"238 8th St, San Francisco, CA 94016" -277523,Lightning Charging Cable,1,14.95,10/08/19 19:13,"172 Lakeview St, Los Angeles, CA 90001" -277524,Lightning Charging Cable,1,14.95,10/18/19 19:02,"453 Madison St, New York City, NY 10001" -277525,Google Phone,1,600,10/07/19 20:37,"262 14th St, New York City, NY 10001" -277525,USB-C Charging Cable,1,11.95,10/07/19 20:37,"262 14th St, New York City, NY 10001" -277526,27in FHD Monitor,1,149.99,10/26/19 13:32,"4 Adams St, Atlanta, GA 30301" -277527,AA Batteries (4-pack),1,3.84,10/21/19 21:43,"625 Jefferson St, New York City, NY 10001" -277528,Bose SoundSport Headphones,1,99.99,10/15/19 15:39,"25 Washington St, Los Angeles, CA 90001" -277529,Lightning Charging Cable,1,14.95,10/23/19 19:36,"893 Ridge St, San Francisco, CA 94016" -277530,AAA Batteries (4-pack),6,2.99,10/01/19 11:44,"324 Hill St, Boston, MA 02215" -277531,Wired Headphones,1,11.99,10/04/19 02:29,"311 2nd St, San Francisco, CA 94016" -277532,USB-C Charging Cable,1,11.95,10/11/19 14:44,"521 8th St, New York City, NY 10001" -277533,AA Batteries (4-pack),3,3.84,10/23/19 15:47,"563 South St, Boston, MA 02215" -277534,Wired Headphones,1,11.99,10/13/19 14:14,"327 Elm St, Austin, TX 73301" -277535,ThinkPad Laptop,1,999.99,10/16/19 17:24,"91 12th St, Portland, OR 97035" -277536,Wired Headphones,1,11.99,10/24/19 00:21,"378 Jackson St, Dallas, TX 75001" -277537,Lightning Charging Cable,1,14.95,10/26/19 14:07,"105 Wilson St, Boston, MA 02215" -277538,AAA Batteries (4-pack),1,2.99,10/02/19 20:56,"993 Meadow St, Atlanta, GA 30301" -277539,AA Batteries (4-pack),1,3.84,10/03/19 13:51,"807 Madison St, San Francisco, CA 94016" -277540,AAA Batteries (4-pack),2,2.99,10/02/19 22:54,"335 Pine St, Seattle, WA 98101" -277541,Apple Airpods Headphones,1,150,10/20/19 01:24,"622 Madison St, Boston, MA 02215" -277542,34in Ultrawide Monitor,1,379.99,10/22/19 11:46,"139 Church St, New York City, NY 10001" -277543,Lightning Charging Cable,1,14.95,10/04/19 16:50,"994 Hill St, Los Angeles, CA 90001" -277544,AAA Batteries (4-pack),1,2.99,10/29/19 11:24,"268 Ridge St, Los Angeles, CA 90001" -277545,Apple Airpods Headphones,1,150,10/31/19 17:04,"65 5th St, Seattle, WA 98101" -277546,Google Phone,1,600,10/18/19 15:55,"808 Maple St, Austin, TX 73301" -277547,Google Phone,1,600,10/13/19 22:56,"155 Hickory St, New York City, NY 10001" -277548,LG Dryer,1,600.0,10/06/19 04:45,"455 River St, Atlanta, GA 30301" -277548,27in 4K Gaming Monitor,1,389.99,10/06/19 04:45,"455 River St, Atlanta, GA 30301" -277549,34in Ultrawide Monitor,1,379.99,10/23/19 19:07,"262 4th St, New York City, NY 10001" -277550,AA Batteries (4-pack),1,3.84,10/13/19 13:52,"272 8th St, Seattle, WA 98101" -277551,Flatscreen TV,1,300,10/02/19 15:54,"391 Jackson St, Austin, TX 73301" -277552,Lightning Charging Cable,1,14.95,10/03/19 15:11,"465 2nd St, Austin, TX 73301" -277553,Wired Headphones,1,11.99,10/28/19 17:14,"102 South St, New York City, NY 10001" -277554,27in FHD Monitor,1,149.99,10/08/19 00:37,"560 Sunset St, Los Angeles, CA 90001" -277555,Google Phone,1,600,10/06/19 22:03,"297 Johnson St, Boston, MA 02215" -277556,USB-C Charging Cable,1,11.95,10/15/19 07:51,"442 Washington St, San Francisco, CA 94016" -277557,Lightning Charging Cable,1,14.95,10/31/19 11:04,"957 Main St, Boston, MA 02215" -277558,AAA Batteries (4-pack),1,2.99,10/18/19 01:57,"235 7th St, Boston, MA 02215" -277559,ThinkPad Laptop,1,999.99,10/10/19 14:20,"377 Sunset St, Dallas, TX 75001" -277560,27in 4K Gaming Monitor,1,389.99,10/10/19 11:51,"582 10th St, Austin, TX 73301" -277561,27in 4K Gaming Monitor,1,389.99,10/27/19 13:48,"74 Ridge St, San Francisco, CA 94016" -277562,34in Ultrawide Monitor,1,379.99,10/31/19 17:49,"939 Chestnut St, Boston, MA 02215" -277563,Apple Airpods Headphones,1,150,10/08/19 16:42,"640 West St, San Francisco, CA 94016" -277564,AAA Batteries (4-pack),3,2.99,10/04/19 08:14,"426 13th St, Dallas, TX 75001" -277565,Wired Headphones,1,11.99,10/11/19 20:39,"911 Wilson St, Los Angeles, CA 90001" -277566,AAA Batteries (4-pack),1,2.99,10/31/19 19:16,"884 Adams St, Dallas, TX 75001" -277567,27in FHD Monitor,1,149.99,10/31/19 11:53,"730 Sunset St, New York City, NY 10001" -277568,Apple Airpods Headphones,1,150,10/14/19 20:47,"605 Jefferson St, New York City, NY 10001" -277569,Lightning Charging Cable,1,14.95,10/22/19 16:59,"247 Willow St, Seattle, WA 98101" -277570,USB-C Charging Cable,1,11.95,10/02/19 19:51,"400 14th St, Los Angeles, CA 90001" -277571,Flatscreen TV,1,300,10/24/19 23:57,"421 Main St, Los Angeles, CA 90001" -277572,27in FHD Monitor,1,149.99,10/05/19 18:06,"724 2nd St, San Francisco, CA 94016" -277573,AA Batteries (4-pack),1,3.84,10/17/19 12:37,"2 8th St, Boston, MA 02215" -277574,Wired Headphones,1,11.99,10/03/19 12:09,"568 6th St, San Francisco, CA 94016" -277575,27in 4K Gaming Monitor,1,389.99,10/13/19 20:10,"130 Hill St, Atlanta, GA 30301" -277576,AA Batteries (4-pack),1,3.84,10/31/19 18:45,"301 Chestnut St, Portland, OR 97035" -277577,Wired Headphones,3,11.99,10/21/19 10:23,"986 Lincoln St, Dallas, TX 75001" -277578,Macbook Pro Laptop,1,1700,10/09/19 21:13,"400 Hill St, Los Angeles, CA 90001" -277578,Lightning Charging Cable,1,14.95,10/09/19 21:13,"400 Hill St, Los Angeles, CA 90001" -277579,AAA Batteries (4-pack),1,2.99,10/22/19 17:28,"554 Johnson St, Austin, TX 73301" -277580,Bose SoundSport Headphones,1,99.99,10/27/19 23:04,"875 Adams St, New York City, NY 10001" -277581,AAA Batteries (4-pack),1,2.99,10/26/19 01:45,"491 13th St, San Francisco, CA 94016" -277582,Flatscreen TV,1,300,10/14/19 17:04,"900 Chestnut St, Portland, OR 97035" -277583,Lightning Charging Cable,1,14.95,10/12/19 23:51,"694 Hill St, San Francisco, CA 94016" -277584,20in Monitor,1,109.99,10/04/19 12:57,"820 Main St, Atlanta, GA 30301" -277585,Google Phone,1,600,10/02/19 15:28,"739 Jefferson St, Portland, OR 97035" -277585,USB-C Charging Cable,1,11.95,10/02/19 15:28,"739 Jefferson St, Portland, OR 97035" -277585,Bose SoundSport Headphones,1,99.99,10/02/19 15:28,"739 Jefferson St, Portland, OR 97035" -277586,Google Phone,1,600,10/08/19 14:29,"180 7th St, San Francisco, CA 94016" -277586,Wired Headphones,1,11.99,10/08/19 14:29,"180 7th St, San Francisco, CA 94016" -277587,Wired Headphones,1,11.99,10/08/19 19:56,"14 North St, Dallas, TX 75001" -277588,Apple Airpods Headphones,1,150,10/03/19 15:47,"660 6th St, Boston, MA 02215" -277589,Lightning Charging Cable,1,14.95,10/04/19 00:06,"153 Madison St, San Francisco, CA 94016" -277590,Lightning Charging Cable,1,14.95,10/19/19 22:06,"538 Highland St, San Francisco, CA 94016" -277591,Wired Headphones,1,11.99,10/20/19 12:26,"355 Washington St, Los Angeles, CA 90001" -277592,AAA Batteries (4-pack),1,2.99,10/11/19 16:19,"129 Meadow St, Los Angeles, CA 90001" -277593,USB-C Charging Cable,1,11.95,10/16/19 01:25,"984 Lake St, San Francisco, CA 94016" -277594,Apple Airpods Headphones,1,150,10/09/19 08:50,"702 6th St, San Francisco, CA 94016" -277595,USB-C Charging Cable,1,11.95,10/17/19 14:18,"403 Cedar St, San Francisco, CA 94016" -277596,AA Batteries (4-pack),3,3.84,10/26/19 11:04,"391 Walnut St, San Francisco, CA 94016" -277597,AAA Batteries (4-pack),1,2.99,10/03/19 20:50,"107 Lincoln St, Portland, OR 97035" -277598,iPhone,1,700,10/05/19 17:05,"341 Dogwood St, New York City, NY 10001" -277599,27in 4K Gaming Monitor,1,389.99,10/02/19 11:19,"683 6th St, Dallas, TX 75001" -277600,Lightning Charging Cable,1,14.95,10/20/19 12:46,"81 2nd St, San Francisco, CA 94016" -277601,AAA Batteries (4-pack),1,2.99,10/23/19 12:34,"536 11th St, New York City, NY 10001" -277602,Macbook Pro Laptop,1,1700,10/20/19 10:53,"312 Main St, San Francisco, CA 94016" -277603,Apple Airpods Headphones,1,150,10/07/19 15:38,"194 Church St, Boston, MA 02215" -277604,34in Ultrawide Monitor,1,379.99,10/03/19 04:07,"78 8th St, Portland, OR 97035" -277605,AA Batteries (4-pack),2,3.84,10/21/19 07:41,"180 Ridge St, San Francisco, CA 94016" -277606,27in FHD Monitor,1,149.99,10/13/19 10:11,"179 Spruce St, San Francisco, CA 94016" -277607,Lightning Charging Cable,1,14.95,10/29/19 10:57,"201 Spruce St, New York City, NY 10001" -277608,Lightning Charging Cable,1,14.95,10/26/19 19:11,"694 River St, Boston, MA 02215" -277608,USB-C Charging Cable,1,11.95,10/26/19 19:11,"694 River St, Boston, MA 02215" -277609,AA Batteries (4-pack),1,3.84,10/15/19 14:53,"568 Church St, Boston, MA 02215" -277610,USB-C Charging Cable,1,11.95,10/25/19 14:45,"555 Walnut St, Seattle, WA 98101" -277611,AA Batteries (4-pack),1,3.84,10/29/19 11:52,"159 Spruce St, Portland, ME 04101" -277612,USB-C Charging Cable,1,11.95,10/12/19 10:13,"4 Lake St, Los Angeles, CA 90001" -277613,Lightning Charging Cable,1,14.95,10/11/19 16:59,"791 Church St, San Francisco, CA 94016" -,,,,, -277614,Lightning Charging Cable,1,14.95,10/07/19 15:19,"609 Wilson St, Los Angeles, CA 90001" -277615,34in Ultrawide Monitor,1,379.99,10/23/19 20:45,"761 Meadow St, San Francisco, CA 94016" -277616,USB-C Charging Cable,1,11.95,10/08/19 07:55,"867 Maple St, San Francisco, CA 94016" -277617,AAA Batteries (4-pack),1,2.99,10/15/19 18:35,"444 7th St, Los Angeles, CA 90001" -277618,Wired Headphones,1,11.99,10/05/19 14:27,"973 Lincoln St, Portland, ME 04101" -277619,USB-C Charging Cable,1,11.95,10/31/19 11:19,"324 Highland St, Seattle, WA 98101" -277620,ThinkPad Laptop,1,999.99,10/19/19 20:34,"386 4th St, San Francisco, CA 94016" -277621,iPhone,1,700,10/12/19 08:49,"681 Maple St, San Francisco, CA 94016" -277621,Apple Airpods Headphones,1,150,10/12/19 08:49,"681 Maple St, San Francisco, CA 94016" -277622,AAA Batteries (4-pack),1,2.99,10/16/19 21:53,"289 Ridge St, Los Angeles, CA 90001" -277623,USB-C Charging Cable,1,11.95,10/03/19 09:37,"450 Washington St, San Francisco, CA 94016" -277623,Apple Airpods Headphones,1,150,10/03/19 09:37,"450 Washington St, San Francisco, CA 94016" -277624,20in Monitor,1,109.99,10/27/19 19:45,"163 Adams St, San Francisco, CA 94016" -277625,Apple Airpods Headphones,1,150,10/07/19 13:59,"395 9th St, San Francisco, CA 94016" -277626,USB-C Charging Cable,1,11.95,10/23/19 15:27,"509 Elm St, Dallas, TX 75001" -277627,USB-C Charging Cable,1,11.95,10/30/19 09:12,"337 5th St, San Francisco, CA 94016" -277627,Bose SoundSport Headphones,1,99.99,10/30/19 09:12,"337 5th St, San Francisco, CA 94016" -277628,USB-C Charging Cable,2,11.95,10/27/19 07:09,"928 Adams St, Portland, OR 97035" -277629,AAA Batteries (4-pack),2,2.99,10/19/19 10:39,"70 Maple St, San Francisco, CA 94016" -277630,27in 4K Gaming Monitor,1,389.99,10/13/19 19:22,"980 Dogwood St, San Francisco, CA 94016" -277631,AAA Batteries (4-pack),1,2.99,10/17/19 22:39,"895 Wilson St, Los Angeles, CA 90001" -277632,AA Batteries (4-pack),1,3.84,10/03/19 10:36,"226 Highland St, Boston, MA 02215" -277633,AAA Batteries (4-pack),2,2.99,10/01/19 16:50,"279 8th St, Los Angeles, CA 90001" -277634,AA Batteries (4-pack),2,3.84,10/11/19 19:53,"514 Sunset St, Portland, OR 97035" -277635,USB-C Charging Cable,1,11.95,10/31/19 14:33,"152 13th St, Atlanta, GA 30301" -277636,AA Batteries (4-pack),1,3.84,10/05/19 17:39,"714 South St, Boston, MA 02215" -277637,Lightning Charging Cable,1,14.95,10/20/19 05:23,"188 Forest St, San Francisco, CA 94016" -277638,Lightning Charging Cable,1,14.95,10/13/19 11:28,"89 West St, Boston, MA 02215" -277639,AAA Batteries (4-pack),2,2.99,10/10/19 16:39,"571 Wilson St, Atlanta, GA 30301" -277640,Apple Airpods Headphones,1,150,10/01/19 14:14,"392 6th St, Austin, TX 73301" -277641,Vareebadd Phone,1,400,10/26/19 01:58,"231 Walnut St, Dallas, TX 75001" -277642,Flatscreen TV,1,300,10/23/19 12:23,"454 Maple St, Dallas, TX 75001" -277643,USB-C Charging Cable,1,11.95,10/27/19 19:25,"285 Center St, San Francisco, CA 94016" -277644,USB-C Charging Cable,1,11.95,10/27/19 13:23,"451 Jefferson St, Atlanta, GA 30301" -277645,AAA Batteries (4-pack),1,2.99,10/04/19 17:24,"66 Cedar St, Seattle, WA 98101" -277646,AAA Batteries (4-pack),2,2.99,10/28/19 18:49,"930 12th St, San Francisco, CA 94016" -277647,27in 4K Gaming Monitor,1,389.99,11/01/19 02:15,"72 River St, Boston, MA 02215" -277648,Wired Headphones,2,11.99,10/02/19 05:10,"928 Adams St, Seattle, WA 98101" -277649,27in FHD Monitor,1,149.99,10/10/19 05:59,"425 8th St, Los Angeles, CA 90001" -277650,AA Batteries (4-pack),1,3.84,10/30/19 09:41,"662 Willow St, San Francisco, CA 94016" -277651,USB-C Charging Cable,2,11.95,10/01/19 19:36,"882 8th St, San Francisco, CA 94016" -277652,Lightning Charging Cable,1,14.95,10/27/19 03:38,"174 Walnut St, Portland, OR 97035" -277653,Apple Airpods Headphones,1,150,10/23/19 09:05,"805 4th St, Seattle, WA 98101" -277654,Wired Headphones,1,11.99,10/25/19 19:52,"293 Jefferson St, Seattle, WA 98101" -277655,Wired Headphones,1,11.99,10/03/19 00:13,"59 Cedar St, San Francisco, CA 94016" -277656,AA Batteries (4-pack),1,3.84,10/23/19 18:31,"29 River St, Los Angeles, CA 90001" -277657,AA Batteries (4-pack),1,3.84,10/14/19 13:52,"998 8th St, Dallas, TX 75001" -277658,AA Batteries (4-pack),1,3.84,10/29/19 23:16,"555 Madison St, Boston, MA 02215" -277659,AA Batteries (4-pack),1,3.84,10/07/19 23:37,"182 North St, Boston, MA 02215" -277660,20in Monitor,1,109.99,10/19/19 11:12,"285 2nd St, Dallas, TX 75001" -277661,34in Ultrawide Monitor,1,379.99,10/11/19 11:38,"809 North St, Dallas, TX 75001" -277662,Apple Airpods Headphones,1,150,10/02/19 20:28,"739 5th St, San Francisco, CA 94016" -277663,20in Monitor,1,109.99,10/17/19 21:15,"983 13th St, New York City, NY 10001" -277664,ThinkPad Laptop,1,999.99,10/31/19 16:53,"381 Madison St, Portland, OR 97035" -277665,Flatscreen TV,1,300,10/16/19 16:23,"967 Center St, Boston, MA 02215" -277666,ThinkPad Laptop,1,999.99,10/05/19 12:26,"778 13th St, San Francisco, CA 94016" -277667,27in FHD Monitor,1,149.99,10/28/19 16:29,"664 Spruce St, Los Angeles, CA 90001" -277668,iPhone,1,700,10/22/19 07:59,"346 Jefferson St, New York City, NY 10001" -277668,20in Monitor,1,109.99,10/22/19 07:59,"346 Jefferson St, New York City, NY 10001" -277669,iPhone,1,700,10/30/19 22:27,"152 Ridge St, Seattle, WA 98101" -277670,Bose SoundSport Headphones,1,99.99,10/21/19 15:18,"329 11th St, San Francisco, CA 94016" -277671,Lightning Charging Cable,1,14.95,10/12/19 22:05,"322 12th St, Dallas, TX 75001" -277672,Wired Headphones,1,11.99,10/25/19 00:24,"972 Main St, San Francisco, CA 94016" -277673,ThinkPad Laptop,1,999.99,10/17/19 08:45,"575 Meadow St, Los Angeles, CA 90001" -277674,Wired Headphones,1,11.99,10/25/19 21:03,"927 13th St, Seattle, WA 98101" -277675,Apple Airpods Headphones,1,150,10/04/19 20:22,"640 Cherry St, San Francisco, CA 94016" -277676,Lightning Charging Cable,1,14.95,10/29/19 22:44,"552 Sunset St, Dallas, TX 75001" -277677,27in FHD Monitor,1,149.99,10/10/19 20:45,"383 7th St, Atlanta, GA 30301" -277678,Google Phone,1,600,10/07/19 22:33,"908 Jackson St, Los Angeles, CA 90001" -277679,Lightning Charging Cable,1,14.95,10/29/19 14:52,"60 10th St, Austin, TX 73301" -277679,iPhone,1,700,10/29/19 14:52,"60 10th St, Austin, TX 73301" -277680,USB-C Charging Cable,1,11.95,10/12/19 20:59,"922 Pine St, San Francisco, CA 94016" -277681,USB-C Charging Cable,1,11.95,10/08/19 12:35,"96 4th St, New York City, NY 10001" -277682,Macbook Pro Laptop,1,1700,10/09/19 09:47,"953 Park St, Los Angeles, CA 90001" -277683,27in 4K Gaming Monitor,1,389.99,10/23/19 11:24,"420 Church St, Los Angeles, CA 90001" -277684,Wired Headphones,1,11.99,10/16/19 19:48,"345 Dogwood St, Dallas, TX 75001" -277685,AAA Batteries (4-pack),1,2.99,10/16/19 22:05,"827 6th St, Los Angeles, CA 90001" -277686,Apple Airpods Headphones,1,150,10/22/19 18:43,"93 9th St, Atlanta, GA 30301" -277687,USB-C Charging Cable,2,11.95,10/19/19 16:19,"322 Hill St, San Francisco, CA 94016" -277688,Lightning Charging Cable,1,14.95,10/17/19 13:23,"916 Washington St, Boston, MA 02215" -277689,iPhone,1,700,10/29/19 12:50,"871 Dogwood St, Portland, OR 97035" -277689,Lightning Charging Cable,1,14.95,10/29/19 12:50,"871 Dogwood St, Portland, OR 97035" -277689,Apple Airpods Headphones,1,150,10/29/19 12:50,"871 Dogwood St, Portland, OR 97035" -277690,Apple Airpods Headphones,1,150,10/25/19 21:08,"444 Jefferson St, Los Angeles, CA 90001" -277691,iPhone,1,700,10/26/19 14:43,"346 1st St, Los Angeles, CA 90001" -277692,Bose SoundSport Headphones,1,99.99,10/14/19 22:43,"577 Cherry St, San Francisco, CA 94016" -277692,34in Ultrawide Monitor,1,379.99,10/14/19 22:43,"577 Cherry St, San Francisco, CA 94016" -277693,27in FHD Monitor,1,149.99,10/04/19 16:36,"718 7th St, Austin, TX 73301" -277694,AAA Batteries (4-pack),2,2.99,10/13/19 11:44,"322 Main St, San Francisco, CA 94016" -277695,Wired Headphones,1,11.99,10/31/19 14:04,"789 Madison St, Atlanta, GA 30301" -277696,USB-C Charging Cable,1,11.95,10/26/19 21:09,"377 Walnut St, Los Angeles, CA 90001" -277697,Bose SoundSport Headphones,1,99.99,10/26/19 12:06,"791 Hickory St, Los Angeles, CA 90001" -277698,34in Ultrawide Monitor,1,379.99,10/27/19 23:20,"201 Forest St, New York City, NY 10001" -277699,USB-C Charging Cable,1,11.95,10/26/19 15:07,"249 Hill St, Dallas, TX 75001" -277700,USB-C Charging Cable,1,11.95,10/15/19 18:57,"462 Main St, New York City, NY 10001" -277701,Lightning Charging Cable,1,14.95,10/29/19 16:21,"386 10th St, San Francisco, CA 94016" -277701,Lightning Charging Cable,1,14.95,10/29/19 16:21,"386 10th St, San Francisco, CA 94016" -277702,Apple Airpods Headphones,1,150,10/06/19 07:37,"336 Elm St, San Francisco, CA 94016" -277703,AAA Batteries (4-pack),1,2.99,10/22/19 10:24,"575 9th St, Boston, MA 02215" -277704,Bose SoundSport Headphones,1,99.99,10/15/19 12:31,"140 9th St, San Francisco, CA 94016" -277705,Apple Airpods Headphones,1,150,10/15/19 09:30,"686 10th St, Seattle, WA 98101" -277706,Apple Airpods Headphones,1,150,10/31/19 11:39,"846 12th St, Boston, MA 02215" -277707,USB-C Charging Cable,1,11.95,10/28/19 13:47,"980 7th St, Atlanta, GA 30301" -277708,34in Ultrawide Monitor,1,379.99,10/05/19 18:45,"146 Spruce St, Los Angeles, CA 90001" -277709,34in Ultrawide Monitor,1,379.99,10/15/19 17:36,"679 11th St, Los Angeles, CA 90001" -277710,USB-C Charging Cable,1,11.95,10/30/19 16:28,"332 Jackson St, New York City, NY 10001" -277711,AA Batteries (4-pack),2,3.84,10/12/19 20:48,"864 Elm St, Atlanta, GA 30301" -277712,Wired Headphones,1,11.99,10/07/19 20:02,"363 Main St, Portland, OR 97035" -277713,Flatscreen TV,1,300,10/02/19 03:37,"986 North St, Los Angeles, CA 90001" -277714,AA Batteries (4-pack),1,3.84,10/11/19 14:11,"329 7th St, San Francisco, CA 94016" -277715,AA Batteries (4-pack),1,3.84,10/13/19 10:42,"22 Chestnut St, Dallas, TX 75001" -277716,Macbook Pro Laptop,1,1700,10/01/19 11:32,"986 Washington St, Seattle, WA 98101" -277717,Macbook Pro Laptop,1,1700,10/25/19 19:14,"787 4th St, Seattle, WA 98101" -277718,Apple Airpods Headphones,1,150,10/08/19 19:57,"189 Lincoln St, Los Angeles, CA 90001" -277719,Lightning Charging Cable,1,14.95,10/27/19 19:45,"858 7th St, New York City, NY 10001" -277720,34in Ultrawide Monitor,1,379.99,10/16/19 15:51,"907 9th St, New York City, NY 10001" -277721,AAA Batteries (4-pack),2,2.99,10/10/19 13:11,"937 Walnut St, Portland, OR 97035" -277722,USB-C Charging Cable,1,11.95,10/26/19 06:36,"243 West St, New York City, NY 10001" -277723,Bose SoundSport Headphones,1,99.99,10/20/19 03:00,"763 Main St, Seattle, WA 98101" -277724,ThinkPad Laptop,1,999.99,10/01/19 20:55,"67 9th St, Los Angeles, CA 90001" -277725,AA Batteries (4-pack),1,3.84,10/23/19 09:27,"923 10th St, Los Angeles, CA 90001" -277726,AA Batteries (4-pack),1,3.84,10/29/19 19:28,"963 Maple St, San Francisco, CA 94016" -277727,AAA Batteries (4-pack),1,2.99,10/12/19 11:35,"612 8th St, Boston, MA 02215" -277728,Apple Airpods Headphones,1,150,10/26/19 16:31,"769 Madison St, Atlanta, GA 30301" -277729,27in 4K Gaming Monitor,1,389.99,10/29/19 12:53,"784 Cedar St, Los Angeles, CA 90001" -277730,Lightning Charging Cable,1,14.95,10/12/19 17:12,"483 13th St, Atlanta, GA 30301" -277731,USB-C Charging Cable,1,11.95,10/22/19 15:25,"461 Church St, Los Angeles, CA 90001" -277732,USB-C Charging Cable,1,11.95,10/29/19 19:15,"754 Main St, Boston, MA 02215" -277733,USB-C Charging Cable,1,11.95,10/09/19 10:50,"203 Ridge St, Boston, MA 02215" -277734,Wired Headphones,1,11.99,10/20/19 09:39,"248 Forest St, Atlanta, GA 30301" -277735,Wired Headphones,1,11.99,10/06/19 19:20,"769 13th St, Los Angeles, CA 90001" -277736,LG Washing Machine,1,600.0,10/03/19 11:57,"22 11th St, Los Angeles, CA 90001" -277737,Apple Airpods Headphones,1,150,10/27/19 19:40,"635 Maple St, Los Angeles, CA 90001" -277738,Lightning Charging Cable,1,14.95,10/19/19 08:21,"351 Willow St, San Francisco, CA 94016" -277739,Lightning Charging Cable,1,14.95,10/25/19 18:32,"448 West St, Portland, ME 04101" -277740,Apple Airpods Headphones,1,150,10/01/19 09:54,"901 Main St, New York City, NY 10001" -277741,USB-C Charging Cable,1,11.95,10/20/19 09:15,"204 Lake St, Atlanta, GA 30301" -277742,ThinkPad Laptop,1,999.99,10/06/19 11:00,"911 Forest St, Boston, MA 02215" -277743,Apple Airpods Headphones,1,150,10/06/19 11:22,"777 7th St, San Francisco, CA 94016" -277744,AAA Batteries (4-pack),1,2.99,10/29/19 11:00,"964 Hill St, Atlanta, GA 30301" -277745,AAA Batteries (4-pack),1,2.99,10/28/19 10:20,"420 9th St, New York City, NY 10001" -277746,iPhone,1,700,10/22/19 18:41,"894 Lake St, San Francisco, CA 94016" -277747,27in 4K Gaming Monitor,1,389.99,10/20/19 21:57,"919 Hill St, New York City, NY 10001" -277748,Apple Airpods Headphones,1,150,10/23/19 17:14,"667 Johnson St, Los Angeles, CA 90001" -277749,iPhone,1,700,10/19/19 13:34,"829 Madison St, Los Angeles, CA 90001" -277750,AAA Batteries (4-pack),1,2.99,10/19/19 18:42,"528 Highland St, Los Angeles, CA 90001" -277751,AAA Batteries (4-pack),1,2.99,10/27/19 13:29,"421 Cedar St, Boston, MA 02215" -277752,Apple Airpods Headphones,1,150,10/26/19 11:52,"90 Walnut St, Los Angeles, CA 90001" -277753,USB-C Charging Cable,1,11.95,10/13/19 23:30,"823 Willow St, Atlanta, GA 30301" -277754,Wired Headphones,1,11.99,10/27/19 17:40,"721 River St, San Francisco, CA 94016" -277755,Google Phone,1,600,10/03/19 11:09,"38 Chestnut St, Boston, MA 02215" -277756,Google Phone,1,600,10/05/19 13:12,"163 6th St, San Francisco, CA 94016" -277757,AAA Batteries (4-pack),2,2.99,10/05/19 01:47,"279 Elm St, San Francisco, CA 94016" -277758,Wired Headphones,1,11.99,10/16/19 05:00,"195 North St, Austin, TX 73301" -277759,Macbook Pro Laptop,1,1700,10/21/19 02:09,"30 Spruce St, Los Angeles, CA 90001" -277760,AA Batteries (4-pack),1,3.84,10/25/19 10:52,"368 Ridge St, Atlanta, GA 30301" -277761,34in Ultrawide Monitor,1,379.99,10/14/19 20:17,"346 Lincoln St, New York City, NY 10001" -277762,AA Batteries (4-pack),1,3.84,10/11/19 11:16,"164 Lakeview St, Dallas, TX 75001" -277763,27in 4K Gaming Monitor,1,389.99,10/14/19 19:54,"291 13th St, Boston, MA 02215" -277764,Apple Airpods Headphones,2,150,10/31/19 07:24,"418 Chestnut St, San Francisco, CA 94016" -277765,Wired Headphones,1,11.99,10/04/19 17:15,"34 4th St, Portland, ME 04101" -277766,USB-C Charging Cable,1,11.95,10/09/19 13:33,"34 14th St, Los Angeles, CA 90001" -277767,Apple Airpods Headphones,1,150,10/04/19 18:55,"815 11th St, Dallas, TX 75001" -277768,Macbook Pro Laptop,1,1700,10/07/19 12:30,"478 12th St, Dallas, TX 75001" -277769,Apple Airpods Headphones,1,150,10/07/19 12:13,"814 Walnut St, Dallas, TX 75001" -277770,USB-C Charging Cable,1,11.95,10/06/19 06:05,"50 Willow St, Atlanta, GA 30301" -277771,AA Batteries (4-pack),1,3.84,10/31/19 18:50,"488 Church St, New York City, NY 10001" -277772,Apple Airpods Headphones,1,150,10/17/19 09:41,"611 Adams St, San Francisco, CA 94016" -277773,Macbook Pro Laptop,1,1700,10/15/19 21:57,"254 Cherry St, San Francisco, CA 94016" -277774,Apple Airpods Headphones,1,150,10/11/19 18:14,"565 Main St, Boston, MA 02215" -277775,Apple Airpods Headphones,1,150,10/30/19 13:16,"602 Elm St, Dallas, TX 75001" -277776,27in FHD Monitor,1,149.99,10/12/19 18:20,"872 Chestnut St, Los Angeles, CA 90001" -277777,AA Batteries (4-pack),1,3.84,10/31/19 15:24,"519 Cherry St, Portland, OR 97035" -277778,Bose SoundSport Headphones,1,99.99,10/10/19 03:59,"972 Meadow St, Dallas, TX 75001" -277779,AA Batteries (4-pack),2,3.84,10/05/19 11:11,"992 Jackson St, Dallas, TX 75001" -277780,34in Ultrawide Monitor,1,379.99,10/17/19 12:14,"508 Johnson St, Seattle, WA 98101" -277781,27in FHD Monitor,1,149.99,10/07/19 20:45,"998 Washington St, Boston, MA 02215" -277782,AA Batteries (4-pack),1,3.84,10/25/19 18:37,"3 Cedar St, San Francisco, CA 94016" -277783,AAA Batteries (4-pack),4,2.99,10/06/19 18:33,"189 South St, Los Angeles, CA 90001" -277784,Wired Headphones,1,11.99,10/27/19 09:02,"558 North St, New York City, NY 10001" -277785,Bose SoundSport Headphones,1,99.99,10/19/19 20:09,"820 Johnson St, Los Angeles, CA 90001" -277786,34in Ultrawide Monitor,1,379.99,10/17/19 08:44,"532 Highland St, Los Angeles, CA 90001" -277787,Apple Airpods Headphones,1,150,10/07/19 18:06,"712 Madison St, Boston, MA 02215" -277788,AAA Batteries (4-pack),1,2.99,10/13/19 19:58,"693 Center St, San Francisco, CA 94016" -277789,USB-C Charging Cable,1,11.95,10/27/19 18:24,"586 10th St, New York City, NY 10001" -277790,USB-C Charging Cable,1,11.95,10/11/19 12:03,"521 Church St, Los Angeles, CA 90001" -277791,AAA Batteries (4-pack),1,2.99,10/17/19 16:35,"631 Pine St, Los Angeles, CA 90001" -277792,20in Monitor,1,109.99,10/24/19 11:33,"19 Washington St, Boston, MA 02215" -277793,Wired Headphones,1,11.99,10/17/19 19:49,"268 Maple St, Boston, MA 02215" -277793,AA Batteries (4-pack),1,3.84,10/17/19 19:49,"268 Maple St, Boston, MA 02215" -277794,27in FHD Monitor,1,149.99,10/19/19 09:20,"764 Pine St, Dallas, TX 75001" -277795,iPhone,1,700,10/03/19 16:52,"526 9th St, San Francisco, CA 94016" -277796,27in FHD Monitor,1,149.99,10/09/19 17:07,"939 Lakeview St, Atlanta, GA 30301" -277797,AA Batteries (4-pack),1,3.84,10/11/19 13:45,"373 11th St, Boston, MA 02215" -277798,AAA Batteries (4-pack),2,2.99,10/27/19 11:12,"53 12th St, Los Angeles, CA 90001" -277799,27in FHD Monitor,1,149.99,10/18/19 10:27,"535 5th St, New York City, NY 10001" -277800,AAA Batteries (4-pack),1,2.99,10/18/19 23:28,"323 13th St, Los Angeles, CA 90001" -277801,AAA Batteries (4-pack),2,2.99,10/25/19 02:10,"536 Adams St, Los Angeles, CA 90001" -277802,ThinkPad Laptop,1,999.99,10/25/19 14:47,"767 Hill St, San Francisco, CA 94016" -277803,Wired Headphones,1,11.99,10/02/19 15:15,"709 Lake St, Seattle, WA 98101" -277804,27in FHD Monitor,1,149.99,10/29/19 02:27,"331 West St, Dallas, TX 75001" -277805,27in FHD Monitor,1,149.99,10/16/19 14:21,"826 11th St, New York City, NY 10001" -277806,Macbook Pro Laptop,1,1700,10/18/19 17:49,"424 Sunset St, Austin, TX 73301" -277807,Lightning Charging Cable,1,14.95,10/29/19 15:34,"696 13th St, New York City, NY 10001" -277808,20in Monitor,1,109.99,10/14/19 17:46,"676 Meadow St, San Francisco, CA 94016" -277809,Flatscreen TV,1,300,10/15/19 21:17,"570 4th St, San Francisco, CA 94016" -277810,Lightning Charging Cable,1,14.95,10/29/19 18:10,"220 Sunset St, Los Angeles, CA 90001" -277811,Apple Airpods Headphones,1,150,10/30/19 16:16,"855 Chestnut St, San Francisco, CA 94016" -277812,AA Batteries (4-pack),1,3.84,10/22/19 15:54,"643 Hickory St, Boston, MA 02215" -277813,AAA Batteries (4-pack),1,2.99,10/11/19 16:07,"261 Walnut St, New York City, NY 10001" -277814,USB-C Charging Cable,2,11.95,10/20/19 08:55,"707 Johnson St, San Francisco, CA 94016" -277815,27in 4K Gaming Monitor,1,389.99,10/17/19 01:55,"40 Cherry St, San Francisco, CA 94016" -277816,27in FHD Monitor,1,149.99,10/06/19 12:38,"346 Park St, New York City, NY 10001" -277817,27in FHD Monitor,1,149.99,10/01/19 15:57,"737 Hickory St, Seattle, WA 98101" -277818,Wired Headphones,1,11.99,10/06/19 19:11,"820 Spruce St, New York City, NY 10001" -277819,20in Monitor,1,109.99,10/15/19 15:25,"56 1st St, San Francisco, CA 94016" -277820,27in FHD Monitor,1,149.99,10/06/19 19:19,"909 Sunset St, San Francisco, CA 94016" -277821,Lightning Charging Cable,1,14.95,10/25/19 21:18,"357 West St, San Francisco, CA 94016" -277822,Wired Headphones,1,11.99,10/26/19 16:01,"992 8th St, San Francisco, CA 94016" -277823,USB-C Charging Cable,1,11.95,10/28/19 19:56,"181 Highland St, Los Angeles, CA 90001" -277824,Lightning Charging Cable,1,14.95,10/26/19 19:47,"374 12th St, Atlanta, GA 30301" -277825,Apple Airpods Headphones,1,150,10/19/19 08:32,"605 Adams St, Portland, OR 97035" -277826,Wired Headphones,1,11.99,10/08/19 21:40,"983 Walnut St, New York City, NY 10001" -277827,27in 4K Gaming Monitor,1,389.99,10/06/19 21:02,"910 10th St, Atlanta, GA 30301" -277828,34in Ultrawide Monitor,1,379.99,10/20/19 14:25,"872 West St, Austin, TX 73301" -277829,Lightning Charging Cable,1,14.95,10/23/19 14:55,"864 Cherry St, Los Angeles, CA 90001" -277830,Apple Airpods Headphones,1,150,10/23/19 09:09,"89 Park St, San Francisco, CA 94016" -277831,Apple Airpods Headphones,1,150,10/04/19 17:08,"353 7th St, Boston, MA 02215" -277832,AA Batteries (4-pack),1,3.84,10/07/19 22:06,"834 Lake St, Seattle, WA 98101" -277833,34in Ultrawide Monitor,1,379.99,10/07/19 13:37,"933 Hickory St, Dallas, TX 75001" -277834,34in Ultrawide Monitor,1,379.99,10/21/19 11:47,"618 Washington St, San Francisco, CA 94016" -277835,Wired Headphones,1,11.99,10/11/19 20:37,"246 Chestnut St, Portland, OR 97035" -277836,USB-C Charging Cable,1,11.95,10/23/19 13:40,"111 6th St, New York City, NY 10001" -277837,iPhone,1,700,10/25/19 21:53,"773 Johnson St, Los Angeles, CA 90001" -277838,Wired Headphones,1,11.99,10/02/19 12:28,"220 10th St, San Francisco, CA 94016" -277839,AAA Batteries (4-pack),1,2.99,10/04/19 12:03,"212 Center St, San Francisco, CA 94016" -277840,Bose SoundSport Headphones,1,99.99,10/24/19 15:59,"70 Spruce St, Dallas, TX 75001" -277841,20in Monitor,1,109.99,10/22/19 13:34,"580 8th St, San Francisco, CA 94016" -277842,USB-C Charging Cable,1,11.95,10/06/19 06:42,"555 Wilson St, Portland, OR 97035" -277843,Macbook Pro Laptop,1,1700,10/18/19 16:50,"217 Forest St, San Francisco, CA 94016" -277844,iPhone,1,700,10/03/19 15:52,"754 Madison St, New York City, NY 10001" -277845,Apple Airpods Headphones,1,150,10/06/19 19:29,"33 Jefferson St, San Francisco, CA 94016" -277846,Wired Headphones,1,11.99,10/24/19 20:52,"886 2nd St, Austin, TX 73301" -277847,USB-C Charging Cable,1,11.95,10/24/19 17:35,"455 Washington St, San Francisco, CA 94016" -277848,27in FHD Monitor,1,149.99,10/16/19 08:40,"703 Meadow St, New York City, NY 10001" -277849,Bose SoundSport Headphones,1,99.99,10/04/19 00:32,"248 Hickory St, Boston, MA 02215" -277850,20in Monitor,1,109.99,10/27/19 21:40,"235 Main St, San Francisco, CA 94016" -277851,27in FHD Monitor,1,149.99,10/18/19 18:29,"325 River St, Dallas, TX 75001" -277852,USB-C Charging Cable,1,11.95,10/13/19 21:46,"133 Highland St, Dallas, TX 75001" -277853,AA Batteries (4-pack),1,3.84,10/29/19 22:06,"92 Lincoln St, Dallas, TX 75001" -277854,Lightning Charging Cable,1,14.95,10/27/19 05:11,"264 8th St, Seattle, WA 98101" -277855,Lightning Charging Cable,1,14.95,10/01/19 08:57,"370 Forest St, Portland, OR 97035" -277856,Lightning Charging Cable,1,14.95,10/01/19 18:09,"916 6th St, San Francisco, CA 94016" -277857,Bose SoundSport Headphones,1,99.99,10/30/19 11:38,"994 7th St, New York City, NY 10001" -277858,ThinkPad Laptop,1,999.99,10/03/19 20:23,"865 Chestnut St, Dallas, TX 75001" -277859,iPhone,1,700,10/26/19 19:17,"943 Sunset St, Seattle, WA 98101" -277859,Wired Headphones,1,11.99,10/26/19 19:17,"943 Sunset St, Seattle, WA 98101" -277860,Bose SoundSport Headphones,1,99.99,10/22/19 14:06,"500 Lakeview St, San Francisco, CA 94016" -277861,Lightning Charging Cable,1,14.95,10/30/19 21:12,"210 4th St, San Francisco, CA 94016" -277862,27in FHD Monitor,1,149.99,10/15/19 18:56,"453 Sunset St, Dallas, TX 75001" -277863,27in FHD Monitor,1,149.99,10/07/19 16:00,"359 Lincoln St, Austin, TX 73301" -277864,Apple Airpods Headphones,1,150,10/07/19 16:47,"184 Dogwood St, San Francisco, CA 94016" -277865,USB-C Charging Cable,1,11.95,10/24/19 18:38,"775 Wilson St, Los Angeles, CA 90001" -277866,Flatscreen TV,1,300,10/04/19 18:10,"193 North St, San Francisco, CA 94016" -277867,Apple Airpods Headphones,1,150,10/29/19 12:01,"806 Lake St, San Francisco, CA 94016" -277868,27in 4K Gaming Monitor,1,389.99,10/18/19 18:20,"494 Cedar St, Boston, MA 02215" -277869,AA Batteries (4-pack),1,3.84,10/03/19 08:24,"587 2nd St, Dallas, TX 75001" -277870,Lightning Charging Cable,1,14.95,10/10/19 16:30,"878 Dogwood St, Dallas, TX 75001" -277871,Wired Headphones,1,11.99,10/23/19 01:34,"369 8th St, Los Angeles, CA 90001" -277872,USB-C Charging Cable,1,11.95,10/08/19 21:45,"31 Maple St, San Francisco, CA 94016" -277873,USB-C Charging Cable,1,11.95,10/08/19 13:38,"602 2nd St, Boston, MA 02215" -277874,27in FHD Monitor,1,149.99,10/06/19 10:41,"522 14th St, San Francisco, CA 94016" -277875,Google Phone,1,600,10/01/19 19:47,"529 10th St, Los Angeles, CA 90001" -277875,USB-C Charging Cable,1,11.95,10/01/19 19:47,"529 10th St, Los Angeles, CA 90001" -277875,Wired Headphones,1,11.99,10/01/19 19:47,"529 10th St, Los Angeles, CA 90001" -277875,iPhone,1,700,10/01/19 19:47,"529 10th St, Los Angeles, CA 90001" -277876,AAA Batteries (4-pack),2,2.99,10/04/19 18:23,"784 Forest St, Atlanta, GA 30301" -277877,27in FHD Monitor,1,149.99,10/26/19 08:13,"929 2nd St, San Francisco, CA 94016" -277878,Bose SoundSport Headphones,1,99.99,10/03/19 19:46,"319 Lincoln St, Dallas, TX 75001" -277879,iPhone,1,700,10/23/19 06:06,"402 Spruce St, San Francisco, CA 94016" -277880,iPhone,1,700,10/26/19 15:19,"435 Church St, New York City, NY 10001" -277881,AA Batteries (4-pack),1,3.84,10/18/19 22:05,"229 13th St, San Francisco, CA 94016" -277882,USB-C Charging Cable,1,11.95,10/07/19 16:51,"470 13th St, Boston, MA 02215" -277883,34in Ultrawide Monitor,1,379.99,10/01/19 16:32,"247 7th St, Austin, TX 73301" -277884,Apple Airpods Headphones,1,150,10/26/19 12:50,"949 Maple St, San Francisco, CA 94016" -277885,Lightning Charging Cable,1,14.95,10/29/19 11:33,"911 Maple St, Seattle, WA 98101" -277886,Lightning Charging Cable,1,14.95,10/12/19 08:31,"676 1st St, Los Angeles, CA 90001" -277887,Apple Airpods Headphones,1,150,10/02/19 12:37,"77 Lake St, San Francisco, CA 94016" -277888,iPhone,1,700,10/30/19 22:26,"166 Church St, Boston, MA 02215" -277889,Macbook Pro Laptop,1,1700,10/11/19 04:11,"882 Madison St, Portland, OR 97035" -277890,Lightning Charging Cable,1,14.95,10/10/19 12:08,"439 Madison St, San Francisco, CA 94016" -277891,USB-C Charging Cable,1,11.95,10/25/19 18:24,"835 Sunset St, New York City, NY 10001" -277892,27in 4K Gaming Monitor,1,389.99,10/04/19 08:34,"928 Lincoln St, Boston, MA 02215" -277893,34in Ultrawide Monitor,1,379.99,10/11/19 09:38,"86 Lakeview St, Boston, MA 02215" -277894,Macbook Pro Laptop,1,1700,10/15/19 17:37,"373 4th St, Los Angeles, CA 90001" -277895,20in Monitor,1,109.99,10/07/19 15:17,"230 Forest St, New York City, NY 10001" -277895,USB-C Charging Cable,1,11.95,10/07/19 15:17,"230 Forest St, New York City, NY 10001" -277896,AA Batteries (4-pack),1,3.84,10/14/19 19:46,"522 Ridge St, Seattle, WA 98101" -277897,Lightning Charging Cable,1,14.95,10/30/19 02:16,"730 Lake St, San Francisco, CA 94016" -277898,27in FHD Monitor,1,149.99,10/31/19 04:41,"298 Madison St, Boston, MA 02215" -277899,Macbook Pro Laptop,1,1700,10/19/19 09:23,"88 Elm St, San Francisco, CA 94016" -277900,Wired Headphones,1,11.99,10/07/19 22:46,"130 Cedar St, Dallas, TX 75001" -277901,AA Batteries (4-pack),1,3.84,10/17/19 16:19,"788 Cedar St, New York City, NY 10001" -277902,Apple Airpods Headphones,1,150,10/02/19 20:07,"943 Hill St, Seattle, WA 98101" -277903,AA Batteries (4-pack),2,3.84,10/27/19 02:22,"963 Forest St, Austin, TX 73301" -277904,AAA Batteries (4-pack),3,2.99,10/09/19 23:40,"510 11th St, Austin, TX 73301" -277905,Google Phone,1,600,10/22/19 22:09,"978 North St, New York City, NY 10001" -277906,34in Ultrawide Monitor,1,379.99,10/12/19 12:58,"171 Elm St, San Francisco, CA 94016" -277907,USB-C Charging Cable,1,11.95,10/28/19 18:37,"67 North St, San Francisco, CA 94016" -277908,AA Batteries (4-pack),1,3.84,10/15/19 19:58,"666 Hickory St, San Francisco, CA 94016" -277909,Flatscreen TV,1,300,10/21/19 19:40,"983 Spruce St, San Francisco, CA 94016" -277910,27in 4K Gaming Monitor,1,389.99,10/23/19 16:52,"280 9th St, Los Angeles, CA 90001" -277911,Wired Headphones,2,11.99,10/26/19 09:51,"941 Park St, Seattle, WA 98101" -277912,AAA Batteries (4-pack),1,2.99,10/24/19 09:56,"934 Willow St, Los Angeles, CA 90001" -277913,AA Batteries (4-pack),4,3.84,10/25/19 16:04,"746 Meadow St, San Francisco, CA 94016" -277914,USB-C Charging Cable,1,11.95,10/07/19 12:34,"221 6th St, Atlanta, GA 30301" -277915,AAA Batteries (4-pack),2,2.99,10/22/19 13:56,"961 River St, Los Angeles, CA 90001" -277916,Lightning Charging Cable,1,14.95,10/27/19 10:05,"149 4th St, Portland, OR 97035" -277917,USB-C Charging Cable,1,11.95,10/19/19 07:49,"159 Main St, San Francisco, CA 94016" -277918,27in 4K Gaming Monitor,1,389.99,10/10/19 16:44,"27 Forest St, New York City, NY 10001" -277919,Flatscreen TV,1,300,10/11/19 10:23,"749 Willow St, Boston, MA 02215" -277920,Wired Headphones,1,11.99,10/01/19 20:22,"894 Jackson St, Boston, MA 02215" -277921,AAA Batteries (4-pack),1,2.99,10/08/19 03:23,"717 4th St, Boston, MA 02215" -277922,Bose SoundSport Headphones,1,99.99,10/30/19 13:08,"987 Ridge St, San Francisco, CA 94016" -277923,Wired Headphones,1,11.99,10/19/19 00:08,"671 River St, San Francisco, CA 94016" -277924,USB-C Charging Cable,1,11.95,10/20/19 12:43,"261 South St, San Francisco, CA 94016" -277925,34in Ultrawide Monitor,1,379.99,10/07/19 08:27,"490 Johnson St, Portland, ME 04101" -277926,Bose SoundSport Headphones,1,99.99,10/19/19 11:00,"376 1st St, San Francisco, CA 94016" -277927,Wired Headphones,1,11.99,10/10/19 18:50,"187 Dogwood St, Los Angeles, CA 90001" -277928,Bose SoundSport Headphones,1,99.99,10/19/19 17:02,"10 8th St, Los Angeles, CA 90001" -277929,Lightning Charging Cable,1,14.95,10/02/19 20:51,"639 Jefferson St, Seattle, WA 98101" -277930,AA Batteries (4-pack),1,3.84,10/08/19 08:36,"173 River St, Los Angeles, CA 90001" -277931,USB-C Charging Cable,1,11.95,10/05/19 23:41,"757 Church St, Seattle, WA 98101" -277932,Lightning Charging Cable,2,14.95,10/13/19 12:17,"646 Jefferson St, San Francisco, CA 94016" -277933,Bose SoundSport Headphones,1,99.99,10/15/19 10:32,"702 13th St, New York City, NY 10001" -277934,iPhone,1,700,10/17/19 09:51,"238 Dogwood St, Los Angeles, CA 90001" -277935,Lightning Charging Cable,1,14.95,10/17/19 09:09,"440 7th St, Los Angeles, CA 90001" -277936,27in 4K Gaming Monitor,1,389.99,10/03/19 14:02,"507 Main St, San Francisco, CA 94016" -277937,iPhone,1,700,10/20/19 06:50,"618 River St, Portland, OR 97035" -277938,Wired Headphones,1,11.99,10/29/19 12:48,"25 13th St, Seattle, WA 98101" -277939,Bose SoundSport Headphones,1,99.99,11/01/19 01:44,"430 Elm St, Los Angeles, CA 90001" -277940,Lightning Charging Cable,1,14.95,10/16/19 17:42,"891 Lakeview St, Dallas, TX 75001" -277941,ThinkPad Laptop,1,999.99,10/19/19 17:15,"187 North St, San Francisco, CA 94016" -277942,Lightning Charging Cable,1,14.95,10/22/19 07:56,"260 Maple St, San Francisco, CA 94016" -277943,Wired Headphones,1,11.99,10/28/19 22:00,"503 Washington St, Boston, MA 02215" -277944,Wired Headphones,1,11.99,10/11/19 09:02,"443 Maple St, San Francisco, CA 94016" -277945,AA Batteries (4-pack),1,3.84,10/29/19 09:09,"499 12th St, Austin, TX 73301" -277946,AAA Batteries (4-pack),1,2.99,10/09/19 08:17,"223 7th St, New York City, NY 10001" -277947,Wired Headphones,1,11.99,10/15/19 20:54,"427 8th St, Portland, OR 97035" -277948,Flatscreen TV,1,300,10/21/19 11:25,"305 Jackson St, Seattle, WA 98101" -277949,Wired Headphones,1,11.99,10/29/19 14:28,"835 Adams St, Dallas, TX 75001" -277950,Bose SoundSport Headphones,1,99.99,10/20/19 10:19,"2 Washington St, New York City, NY 10001" -277951,20in Monitor,1,109.99,10/31/19 11:12,"214 Lake St, San Francisco, CA 94016" -277952,Google Phone,1,600,10/12/19 14:53,"599 Jackson St, Austin, TX 73301" -277953,Wired Headphones,1,11.99,10/31/19 23:24,"600 6th St, Dallas, TX 75001" -277954,AA Batteries (4-pack),1,3.84,10/12/19 08:12,"783 Forest St, Los Angeles, CA 90001" -277955,Flatscreen TV,1,300,10/16/19 19:22,"591 1st St, New York City, NY 10001" -277956,27in 4K Gaming Monitor,1,389.99,10/30/19 05:46,"614 12th St, Boston, MA 02215" -277957,Lightning Charging Cable,1,14.95,10/20/19 05:39,"207 Chestnut St, Boston, MA 02215" -277958,27in FHD Monitor,1,149.99,10/22/19 22:39,"583 7th St, New York City, NY 10001" -277959,Lightning Charging Cable,1,14.95,10/25/19 20:04,"684 Spruce St, Los Angeles, CA 90001" -277960,AAA Batteries (4-pack),2,2.99,10/12/19 18:13,"938 River St, Austin, TX 73301" -277961,Wired Headphones,1,11.99,10/20/19 18:35,"977 Meadow St, Dallas, TX 75001" -277962,Macbook Pro Laptop,1,1700,10/27/19 10:55,"429 Main St, New York City, NY 10001" -277963,AA Batteries (4-pack),2,3.84,10/13/19 20:03,"471 Lincoln St, Dallas, TX 75001" -277964,Lightning Charging Cable,1,14.95,10/20/19 12:33,"968 Washington St, Austin, TX 73301" -277965,AAA Batteries (4-pack),2,2.99,10/15/19 08:13,"737 Meadow St, Portland, OR 97035" -277966,20in Monitor,1,109.99,10/20/19 07:12,"532 14th St, Los Angeles, CA 90001" -277967,USB-C Charging Cable,1,11.95,10/26/19 10:41,"832 9th St, New York City, NY 10001" -277968,LG Washing Machine,1,600.0,10/30/19 11:35,"167 Washington St, Los Angeles, CA 90001" -277969,AA Batteries (4-pack),1,3.84,10/11/19 13:11,"936 14th St, Los Angeles, CA 90001" -277970,AA Batteries (4-pack),1,3.84,10/24/19 10:43,"496 4th St, Los Angeles, CA 90001" -277971,Lightning Charging Cable,1,14.95,10/22/19 19:51,"347 Jefferson St, San Francisco, CA 94016" -277972,Lightning Charging Cable,1,14.95,10/15/19 18:44,"860 Johnson St, Boston, MA 02215" -277973,USB-C Charging Cable,1,11.95,10/15/19 00:58,"503 Madison St, Austin, TX 73301" -277974,27in 4K Gaming Monitor,1,389.99,10/28/19 10:49,"940 Willow St, Dallas, TX 75001" -277975,USB-C Charging Cable,1,11.95,10/27/19 09:13,"877 7th St, San Francisco, CA 94016" -277976,Wired Headphones,2,11.99,10/03/19 00:10,"263 Lakeview St, New York City, NY 10001" -,,,,, -277977,Bose SoundSport Headphones,1,99.99,10/03/19 16:17,"119 Forest St, Los Angeles, CA 90001" -277978,Bose SoundSport Headphones,1,99.99,10/24/19 20:36,"726 Chestnut St, Portland, OR 97035" -277979,27in 4K Gaming Monitor,1,389.99,10/28/19 09:11,"151 Forest St, Dallas, TX 75001" -277980,Wired Headphones,1,11.99,10/27/19 07:09,"886 Jefferson St, Los Angeles, CA 90001" -277981,AA Batteries (4-pack),1,3.84,10/11/19 14:22,"473 Madison St, Portland, OR 97035" -277982,Bose SoundSport Headphones,1,99.99,10/16/19 11:13,"741 9th St, Atlanta, GA 30301" -277983,27in FHD Monitor,1,149.99,10/30/19 12:50,"721 River St, New York City, NY 10001" -277984,Lightning Charging Cable,2,14.95,10/31/19 23:10,"787 Chestnut St, San Francisco, CA 94016" -277985,AAA Batteries (4-pack),1,2.99,10/06/19 09:13,"200 Cherry St, New York City, NY 10001" -277986,AAA Batteries (4-pack),1,2.99,10/04/19 13:59,"162 North St, Atlanta, GA 30301" -277987,AA Batteries (4-pack),1,3.84,10/05/19 16:28,"158 Main St, Los Angeles, CA 90001" -277988,Bose SoundSport Headphones,1,99.99,10/26/19 12:10,"136 Hill St, Los Angeles, CA 90001" -277989,Apple Airpods Headphones,1,150,10/02/19 09:12,"174 Willow St, San Francisco, CA 94016" -277990,AAA Batteries (4-pack),1,2.99,10/27/19 10:46,"527 Johnson St, Dallas, TX 75001" -277991,27in FHD Monitor,1,149.99,10/04/19 11:07,"76 Walnut St, Boston, MA 02215" -277992,AA Batteries (4-pack),1,3.84,10/18/19 19:10,"603 Elm St, San Francisco, CA 94016" -277993,Wired Headphones,1,11.99,10/30/19 15:39,"130 1st St, Boston, MA 02215" -277994,34in Ultrawide Monitor,1,379.99,10/31/19 19:02,"323 Dogwood St, Los Angeles, CA 90001" -277995,Lightning Charging Cable,1,14.95,10/21/19 20:34,"785 Lakeview St, Boston, MA 02215" -277996,Lightning Charging Cable,1,14.95,10/25/19 12:37,"575 North St, New York City, NY 10001" -277997,Lightning Charging Cable,1,14.95,10/19/19 15:52,"634 Maple St, Seattle, WA 98101" -277998,AAA Batteries (4-pack),2,2.99,10/21/19 22:31,"610 Jackson St, Boston, MA 02215" -277999,Lightning Charging Cable,1,14.95,10/05/19 15:45,"27 Forest St, New York City, NY 10001" -278000,iPhone,1,700,10/25/19 10:25,"138 Dogwood St, Seattle, WA 98101" -278001,34in Ultrawide Monitor,1,379.99,10/10/19 09:48,"688 Church St, New York City, NY 10001" -278002,AAA Batteries (4-pack),2,2.99,10/10/19 21:36,"919 Highland St, Atlanta, GA 30301" -278003,Flatscreen TV,1,300,10/27/19 15:05,"97 Cherry St, Dallas, TX 75001" -278004,Lightning Charging Cable,1,14.95,10/07/19 14:26,"31 Elm St, Dallas, TX 75001" -278005,USB-C Charging Cable,1,11.95,10/15/19 18:01,"583 Hill St, Boston, MA 02215" -278006,27in 4K Gaming Monitor,1,389.99,10/23/19 07:39,"665 Wilson St, Atlanta, GA 30301" -278007,Lightning Charging Cable,1,14.95,10/18/19 18:10,"114 Wilson St, Los Angeles, CA 90001" -278008,Apple Airpods Headphones,1,150,10/26/19 12:47,"342 6th St, Portland, OR 97035" -278009,Vareebadd Phone,1,400,10/10/19 14:20,"673 9th St, Dallas, TX 75001" -278010,34in Ultrawide Monitor,1,379.99,10/22/19 12:42,"11 9th St, Los Angeles, CA 90001" -278011,AAA Batteries (4-pack),3,2.99,10/05/19 07:44,"822 West St, Los Angeles, CA 90001" -278012,AAA Batteries (4-pack),2,2.99,10/12/19 08:13,"571 Park St, Los Angeles, CA 90001" -278013,AA Batteries (4-pack),1,3.84,10/05/19 03:21,"409 West St, San Francisco, CA 94016" -278014,ThinkPad Laptop,1,999.99,10/07/19 10:13,"656 Church St, San Francisco, CA 94016" -278015,Apple Airpods Headphones,1,150,10/10/19 21:17,"608 Madison St, Portland, OR 97035" -278016,AA Batteries (4-pack),1,3.84,10/11/19 20:32,"947 Hickory St, Los Angeles, CA 90001" -278017,27in FHD Monitor,1,149.99,10/23/19 05:42,"41 Lincoln St, San Francisco, CA 94016" -278018,Lightning Charging Cable,1,14.95,10/26/19 18:21,"179 Washington St, Atlanta, GA 30301" -278019,27in 4K Gaming Monitor,1,389.99,10/18/19 17:05,"90 Washington St, Portland, OR 97035" -278020,Apple Airpods Headphones,1,150,10/26/19 18:24,"924 Chestnut St, New York City, NY 10001" -278021,Wired Headphones,1,11.99,10/09/19 08:08,"951 Spruce St, San Francisco, CA 94016" -278022,AAA Batteries (4-pack),1,2.99,10/24/19 15:41,"229 Madison St, Dallas, TX 75001" -278023,AA Batteries (4-pack),1,3.84,10/21/19 16:40,"831 Lakeview St, Los Angeles, CA 90001" -278024,AAA Batteries (4-pack),2,2.99,10/23/19 20:14,"847 12th St, San Francisco, CA 94016" -278025,Wired Headphones,1,11.99,10/08/19 11:17,"415 8th St, Seattle, WA 98101" -278026,Bose SoundSport Headphones,1,99.99,10/07/19 16:49,"141 Main St, New York City, NY 10001" -278027,USB-C Charging Cable,1,11.95,10/31/19 19:23,"506 9th St, Los Angeles, CA 90001" -278028,AA Batteries (4-pack),2,3.84,10/19/19 07:07,"92 14th St, Los Angeles, CA 90001" -278029,Flatscreen TV,1,300,10/09/19 19:39,"491 Pine St, Los Angeles, CA 90001" -278030,Bose SoundSport Headphones,1,99.99,10/11/19 13:23,"547 13th St, San Francisco, CA 94016" -278031,20in Monitor,1,109.99,10/18/19 19:44,"220 5th St, New York City, NY 10001" -278032,AAA Batteries (4-pack),1,2.99,10/16/19 17:12,"837 West St, New York City, NY 10001" -278033,Bose SoundSport Headphones,1,99.99,10/03/19 05:11,"808 North St, New York City, NY 10001" -278034,20in Monitor,1,109.99,10/26/19 01:40,"612 Walnut St, New York City, NY 10001" -278035,Apple Airpods Headphones,1,150,10/03/19 18:41,"68 Lake St, Seattle, WA 98101" -278036,Macbook Pro Laptop,1,1700,10/11/19 14:10,"957 Maple St, Atlanta, GA 30301" -278037,Apple Airpods Headphones,1,150,10/09/19 15:03,"367 Main St, Dallas, TX 75001" -278038,Apple Airpods Headphones,1,150,10/18/19 18:51,"897 Cedar St, Atlanta, GA 30301" -278039,Apple Airpods Headphones,1,150,10/01/19 15:31,"997 12th St, New York City, NY 10001" -278040,Apple Airpods Headphones,1,150,10/20/19 01:14,"530 West St, New York City, NY 10001" -278041,AAA Batteries (4-pack),2,2.99,10/15/19 10:40,"84 Lincoln St, New York City, NY 10001" -278042,27in FHD Monitor,1,149.99,10/01/19 12:10,"367 Lakeview St, Los Angeles, CA 90001" -278043,Lightning Charging Cable,1,14.95,10/15/19 20:18,"584 14th St, Boston, MA 02215" -278044,AA Batteries (4-pack),2,3.84,10/14/19 18:47,"316 12th St, Los Angeles, CA 90001" -278045,Google Phone,1,600,10/23/19 09:02,"651 Park St, San Francisco, CA 94016" -278046,Lightning Charging Cable,1,14.95,10/14/19 08:20,"160 11th St, Atlanta, GA 30301" -278047,Bose SoundSport Headphones,1,99.99,10/09/19 16:52,"907 5th St, Seattle, WA 98101" -278048,iPhone,1,700,10/11/19 11:16,"121 Sunset St, San Francisco, CA 94016" -278049,Lightning Charging Cable,1,14.95,10/08/19 05:11,"819 Washington St, San Francisco, CA 94016" -278050,AAA Batteries (4-pack),3,2.99,10/21/19 18:29,"89 Meadow St, Atlanta, GA 30301" -278051,AA Batteries (4-pack),1,3.84,10/18/19 16:21,"555 Meadow St, Boston, MA 02215" -278052,Wired Headphones,1,11.99,10/22/19 13:10,"953 Maple St, New York City, NY 10001" -278053,ThinkPad Laptop,1,999.99,10/15/19 12:39,"519 2nd St, Austin, TX 73301" -278054,Lightning Charging Cable,2,14.95,10/21/19 19:25,"661 8th St, San Francisco, CA 94016" -278055,USB-C Charging Cable,1,11.95,10/15/19 23:14,"21 Adams St, Los Angeles, CA 90001" -278056,Lightning Charging Cable,1,14.95,10/15/19 10:37,"746 Pine St, New York City, NY 10001" -278057,USB-C Charging Cable,1,11.95,10/27/19 19:56,"992 Willow St, Los Angeles, CA 90001" -278058,AA Batteries (4-pack),2,3.84,10/02/19 20:54,"809 South St, Atlanta, GA 30301" -278059,AA Batteries (4-pack),1,3.84,10/10/19 22:46,"492 Lakeview St, Los Angeles, CA 90001" -278060,34in Ultrawide Monitor,1,379.99,10/08/19 15:51,"486 Lake St, Atlanta, GA 30301" -278061,USB-C Charging Cable,1,11.95,10/19/19 21:49,"860 South St, San Francisco, CA 94016" -278062,Wired Headphones,1,11.99,10/02/19 21:39,"769 Walnut St, San Francisco, CA 94016" -278062,Wired Headphones,1,11.99,10/02/19 21:39,"769 Walnut St, San Francisco, CA 94016" -278063,AAA Batteries (4-pack),1,2.99,10/19/19 09:34,"494 South St, Los Angeles, CA 90001" -278064,Lightning Charging Cable,1,14.95,10/30/19 21:27,"945 Pine St, Boston, MA 02215" -278065,AA Batteries (4-pack),1,3.84,10/10/19 20:14,"269 4th St, Seattle, WA 98101" -278066,AA Batteries (4-pack),1,3.84,10/08/19 20:35,"308 Elm St, Dallas, TX 75001" -278067,Bose SoundSport Headphones,1,99.99,10/31/19 06:54,"340 5th St, Atlanta, GA 30301" -278068,iPhone,1,700,10/10/19 19:30,"548 Wilson St, New York City, NY 10001" -278068,Lightning Charging Cable,1,14.95,10/10/19 19:30,"548 Wilson St, New York City, NY 10001" -278068,Wired Headphones,1,11.99,10/10/19 19:30,"548 Wilson St, New York City, NY 10001" -278069,AAA Batteries (4-pack),2,2.99,10/27/19 20:56,"279 Jefferson St, New York City, NY 10001" -278070,AA Batteries (4-pack),1,3.84,10/13/19 22:20,"975 7th St, Los Angeles, CA 90001" -278071,Wired Headphones,2,11.99,10/17/19 13:25,"809 7th St, Austin, TX 73301" -278072,AAA Batteries (4-pack),1,2.99,10/20/19 10:41,"743 Willow St, New York City, NY 10001" -278073,Wired Headphones,1,11.99,10/17/19 12:24,"492 10th St, Portland, OR 97035" -278074,Wired Headphones,1,11.99,10/02/19 19:25,"204 Wilson St, Seattle, WA 98101" -278075,Apple Airpods Headphones,1,150,10/08/19 11:11,"570 Willow St, San Francisco, CA 94016" -278076,Lightning Charging Cable,1,14.95,10/23/19 12:42,"579 1st St, Los Angeles, CA 90001" -278077,Macbook Pro Laptop,1,1700,10/24/19 11:40,"618 14th St, Los Angeles, CA 90001" -278078,Apple Airpods Headphones,1,150,10/07/19 16:15,"435 2nd St, Dallas, TX 75001" -278079,Apple Airpods Headphones,1,150,10/09/19 00:35,"338 Lake St, New York City, NY 10001" -278080,AAA Batteries (4-pack),1,2.99,10/24/19 05:25,"400 Chestnut St, Seattle, WA 98101" -278081,USB-C Charging Cable,1,11.95,10/20/19 13:40,"509 1st St, Atlanta, GA 30301" -278082,Lightning Charging Cable,1,14.95,10/11/19 19:15,"856 Jefferson St, San Francisco, CA 94016" -278083,USB-C Charging Cable,1,11.95,10/26/19 10:59,"809 10th St, Boston, MA 02215" -278084,Flatscreen TV,1,300,10/18/19 09:25,"297 Center St, San Francisco, CA 94016" -278085,Apple Airpods Headphones,1,150,10/11/19 11:35,"425 Washington St, San Francisco, CA 94016" -278086,Bose SoundSport Headphones,1,99.99,10/18/19 20:11,"234 14th St, San Francisco, CA 94016" -278087,Apple Airpods Headphones,1,150,10/24/19 16:58,"857 Meadow St, Boston, MA 02215" -278088,USB-C Charging Cable,1,11.95,10/18/19 19:27,"944 2nd St, Seattle, WA 98101" -278089,USB-C Charging Cable,2,11.95,10/17/19 16:41,"725 Lakeview St, Dallas, TX 75001" -278090,AAA Batteries (4-pack),1,2.99,10/11/19 18:52,"181 1st St, Los Angeles, CA 90001" -278091,Apple Airpods Headphones,1,150,10/25/19 15:57,"986 Madison St, Austin, TX 73301" -278092,iPhone,1,700,10/19/19 12:46,"59 Lincoln St, Seattle, WA 98101" -278093,AAA Batteries (4-pack),2,2.99,10/06/19 22:11,"293 Walnut St, Los Angeles, CA 90001" -278094,Bose SoundSport Headphones,1,99.99,10/01/19 13:43,"356 12th St, San Francisco, CA 94016" -278095,Lightning Charging Cable,1,14.95,10/05/19 11:27,"771 Sunset St, Los Angeles, CA 90001" -278096,Lightning Charging Cable,1,14.95,10/21/19 17:33,"620 1st St, San Francisco, CA 94016" -278097,Wired Headphones,1,11.99,10/22/19 07:36,"184 Ridge St, Los Angeles, CA 90001" -278098,AAA Batteries (4-pack),1,2.99,10/29/19 22:47,"942 Cherry St, New York City, NY 10001" -278099,Wired Headphones,1,11.99,10/17/19 17:40,"312 5th St, Boston, MA 02215" -278100,27in FHD Monitor,1,149.99,10/07/19 13:59,"925 Elm St, Seattle, WA 98101" -278101,Vareebadd Phone,1,400,10/11/19 23:55,"25 2nd St, Portland, OR 97035" -278102,Lightning Charging Cable,1,14.95,10/10/19 19:32,"30 Madison St, Portland, OR 97035" -278103,Lightning Charging Cable,1,14.95,10/02/19 06:50,"177 Hickory St, Austin, TX 73301" -278104,AAA Batteries (4-pack),1,2.99,10/07/19 19:05,"800 Spruce St, Los Angeles, CA 90001" -278105,AA Batteries (4-pack),1,3.84,10/06/19 05:35,"944 Adams St, Dallas, TX 75001" -278106,Apple Airpods Headphones,1,150,10/19/19 16:13,"870 Adams St, Seattle, WA 98101" -278107,AAA Batteries (4-pack),2,2.99,10/25/19 23:32,"386 Dogwood St, Atlanta, GA 30301" -278108,Flatscreen TV,1,300,10/10/19 14:00,"588 8th St, Atlanta, GA 30301" -278109,Lightning Charging Cable,1,14.95,10/16/19 11:08,"396 1st St, San Francisco, CA 94016" -278110,Apple Airpods Headphones,1,150,10/10/19 12:29,"186 Wilson St, Atlanta, GA 30301" -278111,Lightning Charging Cable,1,14.95,10/17/19 09:49,"299 River St, Boston, MA 02215" -278112,Lightning Charging Cable,1,14.95,10/03/19 12:46,"110 North St, Los Angeles, CA 90001" -278113,27in FHD Monitor,1,149.99,10/12/19 03:35,"112 West St, San Francisco, CA 94016" -278114,Lightning Charging Cable,1,14.95,10/23/19 12:36,"132 Cherry St, Austin, TX 73301" -278115,Lightning Charging Cable,1,14.95,10/04/19 16:35,"903 Madison St, Boston, MA 02215" -278116,Apple Airpods Headphones,1,150,10/24/19 17:00,"572 Willow St, New York City, NY 10001" -278117,AA Batteries (4-pack),1,3.84,10/01/19 10:25,"628 Hill St, Portland, ME 04101" -278118,AAA Batteries (4-pack),1,2.99,10/29/19 22:42,"419 Jackson St, Los Angeles, CA 90001" -278119,AA Batteries (4-pack),1,3.84,10/13/19 22:43,"306 6th St, Austin, TX 73301" -278119,20in Monitor,1,109.99,10/13/19 22:43,"306 6th St, Austin, TX 73301" -278120,AAA Batteries (4-pack),3,2.99,10/08/19 09:45,"455 8th St, San Francisco, CA 94016" -278121,Lightning Charging Cable,1,14.95,10/01/19 12:14,"328 Cedar St, Dallas, TX 75001" -278122,20in Monitor,1,109.99,10/02/19 21:40,"94 Johnson St, Portland, OR 97035" -278123,Macbook Pro Laptop,1,1700,10/14/19 11:47,"630 Cherry St, Portland, OR 97035" -278124,Macbook Pro Laptop,1,1700,10/22/19 20:12,"252 Jefferson St, San Francisco, CA 94016" -278125,USB-C Charging Cable,1,11.95,10/17/19 07:03,"446 Sunset St, San Francisco, CA 94016" -278126,iPhone,1,700,10/02/19 17:13,"227 Cedar St, San Francisco, CA 94016" -278126,Apple Airpods Headphones,1,150,10/02/19 17:13,"227 Cedar St, San Francisco, CA 94016" -278126,Wired Headphones,1,11.99,10/02/19 17:13,"227 Cedar St, San Francisco, CA 94016" -278127,USB-C Charging Cable,1,11.95,10/21/19 08:49,"450 Jefferson St, San Francisco, CA 94016" -278128,AA Batteries (4-pack),1,3.84,10/30/19 12:15,"625 Elm St, Boston, MA 02215" -278129,Apple Airpods Headphones,1,150,10/28/19 09:53,"266 5th St, Seattle, WA 98101" -278130,iPhone,1,700,10/27/19 11:35,"465 7th St, Boston, MA 02215" -278131,AAA Batteries (4-pack),2,2.99,10/13/19 23:52,"368 Maple St, Portland, OR 97035" -278132,Bose SoundSport Headphones,1,99.99,10/23/19 10:58,"593 Hickory St, Atlanta, GA 30301" -278133,Apple Airpods Headphones,1,150,10/24/19 14:11,"868 Johnson St, Dallas, TX 75001" -278134,Lightning Charging Cable,1,14.95,10/05/19 11:34,"115 Elm St, Los Angeles, CA 90001" -278135,iPhone,1,700,10/03/19 20:55,"154 12th St, Boston, MA 02215" -278135,Apple Airpods Headphones,1,150,10/03/19 20:55,"154 12th St, Boston, MA 02215" -278136,34in Ultrawide Monitor,1,379.99,10/10/19 16:54,"355 Lake St, Los Angeles, CA 90001" -278137,Google Phone,1,600,10/27/19 05:07,"755 Maple St, Los Angeles, CA 90001" -278137,ThinkPad Laptop,1,999.99,10/27/19 05:07,"755 Maple St, Los Angeles, CA 90001" -278138,Bose SoundSport Headphones,1,99.99,10/27/19 22:37,"322 Wilson St, Dallas, TX 75001" -278139,AAA Batteries (4-pack),2,2.99,10/26/19 12:31,"858 Jefferson St, Los Angeles, CA 90001" -278140,Macbook Pro Laptop,1,1700,10/27/19 15:11,"743 Cedar St, Dallas, TX 75001" -278141,Macbook Pro Laptop,1,1700,10/17/19 13:29,"563 Hill St, Portland, OR 97035" -278142,34in Ultrawide Monitor,1,379.99,10/28/19 23:09,"826 9th St, Dallas, TX 75001" -278143,Lightning Charging Cable,1,14.95,10/03/19 15:18,"973 Dogwood St, Dallas, TX 75001" -278144,34in Ultrawide Monitor,1,379.99,10/09/19 19:01,"141 Highland St, Portland, OR 97035" -278145,Apple Airpods Headphones,1,150,10/24/19 14:36,"971 Walnut St, Boston, MA 02215" -278146,Wired Headphones,1,11.99,10/09/19 14:23,"248 Center St, New York City, NY 10001" -278147,34in Ultrawide Monitor,1,379.99,10/27/19 11:47,"459 9th St, Seattle, WA 98101" -278148,AAA Batteries (4-pack),1,2.99,10/09/19 14:10,"658 Main St, Portland, OR 97035" -278149,USB-C Charging Cable,1,11.95,10/17/19 16:03,"983 Main St, San Francisco, CA 94016" -278150,Apple Airpods Headphones,1,150,10/18/19 17:24,"269 13th St, Seattle, WA 98101" -278151,Bose SoundSport Headphones,1,99.99,10/24/19 01:53,"175 Wilson St, Portland, ME 04101" -278152,Google Phone,1,600,10/10/19 16:28,"643 11th St, Dallas, TX 75001" -278153,AA Batteries (4-pack),2,3.84,10/22/19 21:48,"288 7th St, Dallas, TX 75001" -278154,AAA Batteries (4-pack),1,2.99,10/20/19 11:26,"923 Hickory St, Portland, OR 97035" -278155,34in Ultrawide Monitor,1,379.99,10/09/19 01:53,"483 Hickory St, Boston, MA 02215" -278156,iPhone,1,700,10/12/19 13:59,"123 Park St, New York City, NY 10001" -278157,USB-C Charging Cable,1,11.95,10/25/19 11:43,"362 Main St, Boston, MA 02215" -278158,Google Phone,1,600,10/19/19 21:13,"58 Elm St, Portland, OR 97035" -278158,USB-C Charging Cable,1,11.95,10/19/19 21:13,"58 Elm St, Portland, OR 97035" -278159,USB-C Charging Cable,1,11.95,10/05/19 17:20,"534 Main St, San Francisco, CA 94016" -278160,34in Ultrawide Monitor,1,379.99,10/29/19 17:58,"408 Adams St, New York City, NY 10001" -278161,AA Batteries (4-pack),1,3.84,10/02/19 11:54,"232 Meadow St, New York City, NY 10001" -278162,AAA Batteries (4-pack),1,2.99,10/17/19 17:36,"363 14th St, Los Angeles, CA 90001" -278163,USB-C Charging Cable,1,11.95,10/09/19 22:43,"178 Wilson St, Seattle, WA 98101" -278164,AAA Batteries (4-pack),1,2.99,10/24/19 19:15,"230 Dogwood St, New York City, NY 10001" -278165,Macbook Pro Laptop,1,1700,10/14/19 17:42,"576 Hill St, Austin, TX 73301" -278166,AA Batteries (4-pack),1,3.84,10/12/19 20:47,"811 Chestnut St, San Francisco, CA 94016" -278167,27in FHD Monitor,1,149.99,10/16/19 23:25,"224 14th St, Boston, MA 02215" -278168,Macbook Pro Laptop,1,1700,10/24/19 12:48,"536 River St, Seattle, WA 98101" -278168,Lightning Charging Cable,1,14.95,10/24/19 12:48,"536 River St, Seattle, WA 98101" -278169,Google Phone,1,600,10/07/19 11:27,"447 South St, Austin, TX 73301" -278169,USB-C Charging Cable,1,11.95,10/07/19 11:27,"447 South St, Austin, TX 73301" -278169,Wired Headphones,1,11.99,10/07/19 11:27,"447 South St, Austin, TX 73301" -278170,USB-C Charging Cable,1,11.95,10/28/19 14:58,"288 River St, Boston, MA 02215" -278171,Vareebadd Phone,1,400,10/21/19 21:25,"425 11th St, Atlanta, GA 30301" -278172,AA Batteries (4-pack),1,3.84,10/06/19 17:44,"585 Jefferson St, New York City, NY 10001" -278173,Lightning Charging Cable,1,14.95,10/02/19 11:15,"628 South St, Los Angeles, CA 90001" -278174,Lightning Charging Cable,1,14.95,10/02/19 10:48,"80 Church St, San Francisco, CA 94016" -278175,Bose SoundSport Headphones,1,99.99,10/04/19 17:13,"842 Cherry St, Austin, TX 73301" -278176,USB-C Charging Cable,1,11.95,10/06/19 22:15,"746 West St, New York City, NY 10001" -278176,27in FHD Monitor,1,149.99,10/06/19 22:15,"746 West St, New York City, NY 10001" -278177,Wired Headphones,1,11.99,10/18/19 16:54,"518 Washington St, Austin, TX 73301" -278178,27in FHD Monitor,1,149.99,10/16/19 21:52,"241 Elm St, Portland, ME 04101" -278179,AAA Batteries (4-pack),1,2.99,10/28/19 11:25,"853 9th St, Seattle, WA 98101" -278180,Lightning Charging Cable,1,14.95,10/25/19 21:01,"264 Johnson St, New York City, NY 10001" -278181,Lightning Charging Cable,1,14.95,10/06/19 18:24,"170 10th St, San Francisco, CA 94016" -278182,Wired Headphones,1,11.99,10/16/19 19:05,"739 12th St, Seattle, WA 98101" -278183,Google Phone,1,600,10/01/19 20:42,"198 Main St, Los Angeles, CA 90001" -278184,AA Batteries (4-pack),1,3.84,10/25/19 15:50,"942 Jefferson St, Portland, OR 97035" -278185,AA Batteries (4-pack),1,3.84,10/21/19 10:07,"874 13th St, Boston, MA 02215" -278186,Wired Headphones,1,11.99,10/15/19 12:16,"935 Wilson St, New York City, NY 10001" -278187,USB-C Charging Cable,1,11.95,10/04/19 10:17,"271 South St, Portland, OR 97035" -278188,34in Ultrawide Monitor,1,379.99,10/25/19 13:15,"279 13th St, New York City, NY 10001" -278189,Lightning Charging Cable,1,14.95,10/25/19 19:09,"685 Church St, Los Angeles, CA 90001" -278190,Wired Headphones,1,11.99,10/19/19 14:56,"656 Forest St, Seattle, WA 98101" -278191,USB-C Charging Cable,1,11.95,10/25/19 11:12,"385 7th St, New York City, NY 10001" -278192,AAA Batteries (4-pack),2,2.99,10/01/19 11:07,"41 West St, San Francisco, CA 94016" -278193,AAA Batteries (4-pack),2,2.99,10/31/19 07:34,"870 Johnson St, San Francisco, CA 94016" -278194,AA Batteries (4-pack),1,3.84,10/18/19 14:55,"147 Church St, New York City, NY 10001" -278195,AA Batteries (4-pack),1,3.84,10/02/19 18:45,"593 Walnut St, Austin, TX 73301" -278196,Bose SoundSport Headphones,1,99.99,10/09/19 00:03,"252 Cherry St, Dallas, TX 75001" -278196,Google Phone,1,600,10/09/19 00:03,"252 Cherry St, Dallas, TX 75001" -278197,Lightning Charging Cable,1,14.95,10/12/19 16:39,"504 Madison St, New York City, NY 10001" -278198,AAA Batteries (4-pack),1,2.99,10/31/19 12:58,"265 Dogwood St, Seattle, WA 98101" -278199,iPhone,1,700,10/04/19 18:29,"805 Chestnut St, Seattle, WA 98101" -278200,USB-C Charging Cable,1,11.95,10/07/19 18:02,"92 9th St, San Francisco, CA 94016" -278201,27in 4K Gaming Monitor,1,389.99,10/06/19 08:50,"386 Maple St, Seattle, WA 98101" -278202,Lightning Charging Cable,2,14.95,10/11/19 11:30,"251 West St, San Francisco, CA 94016" -278203,USB-C Charging Cable,1,11.95,10/18/19 09:28,"955 8th St, Los Angeles, CA 90001" -278204,Apple Airpods Headphones,1,150,10/25/19 13:35,"981 Pine St, Boston, MA 02215" -278205,34in Ultrawide Monitor,1,379.99,10/29/19 22:50,"29 Meadow St, Portland, OR 97035" -278206,Macbook Pro Laptop,1,1700,10/14/19 12:45,"984 10th St, Seattle, WA 98101" -278207,Lightning Charging Cable,1,14.95,10/14/19 18:41,"101 5th St, Seattle, WA 98101" -278208,Wired Headphones,1,11.99,10/30/19 12:55,"256 Chestnut St, Los Angeles, CA 90001" -278209,Google Phone,1,600,10/29/19 14:15,"352 Maple St, Los Angeles, CA 90001" -278210,Apple Airpods Headphones,1,150,10/24/19 10:06,"594 Ridge St, Los Angeles, CA 90001" -278211,AA Batteries (4-pack),1,3.84,10/12/19 18:44,"167 Spruce St, San Francisco, CA 94016" -278212,Apple Airpods Headphones,1,150,10/11/19 15:55,"574 Forest St, Dallas, TX 75001" -278213,Macbook Pro Laptop,1,1700,10/21/19 11:40,"155 West St, San Francisco, CA 94016" -278214,Flatscreen TV,1,300,10/31/19 13:27,"204 South St, Boston, MA 02215" -278215,Lightning Charging Cable,1,14.95,10/08/19 23:46,"72 Jackson St, Portland, OR 97035" -278216,Bose SoundSport Headphones,1,99.99,10/04/19 16:00,"197 Elm St, New York City, NY 10001" -278217,AA Batteries (4-pack),1,3.84,10/19/19 22:28,"944 Forest St, Los Angeles, CA 90001" -278218,Macbook Pro Laptop,1,1700,10/21/19 19:55,"764 8th St, San Francisco, CA 94016" -278219,USB-C Charging Cable,1,11.95,10/23/19 20:43,"487 Cedar St, New York City, NY 10001" -278220,iPhone,1,700,10/15/19 12:43,"487 Madison St, Atlanta, GA 30301" -278221,AAA Batteries (4-pack),1,2.99,10/05/19 15:21,"606 Center St, San Francisco, CA 94016" -278222,34in Ultrawide Monitor,1,379.99,10/02/19 21:48,"95 8th St, Dallas, TX 75001" -278223,Lightning Charging Cable,1,14.95,10/18/19 18:02,"58 Ridge St, Los Angeles, CA 90001" -278224,34in Ultrawide Monitor,1,379.99,10/22/19 22:51,"153 Ridge St, Atlanta, GA 30301" -278225,Google Phone,1,600,10/10/19 14:12,"553 Cedar St, New York City, NY 10001" -278226,AA Batteries (4-pack),1,3.84,10/24/19 21:19,"624 River St, San Francisco, CA 94016" -278227,AA Batteries (4-pack),2,3.84,10/10/19 17:14,"826 Forest St, Seattle, WA 98101" -278228,27in 4K Gaming Monitor,1,389.99,10/31/19 14:14,"649 4th St, Los Angeles, CA 90001" -278229,AAA Batteries (4-pack),1,2.99,10/20/19 11:27,"119 10th St, New York City, NY 10001" -278230,AA Batteries (4-pack),1,3.84,10/23/19 10:46,"29 Forest St, Atlanta, GA 30301" -278231,27in FHD Monitor,1,149.99,10/27/19 12:21,"71 Pine St, San Francisco, CA 94016" -278232,USB-C Charging Cable,1,11.95,10/09/19 09:32,"191 2nd St, Boston, MA 02215" -278233,LG Dryer,1,600.0,10/17/19 19:31,"695 12th St, Boston, MA 02215" -278234,Bose SoundSport Headphones,1,99.99,10/10/19 17:52,"949 Lake St, San Francisco, CA 94016" -278235,Google Phone,1,600,10/09/19 09:33,"703 11th St, San Francisco, CA 94016" -278235,USB-C Charging Cable,1,11.95,10/09/19 09:33,"703 11th St, San Francisco, CA 94016" -278236,27in 4K Gaming Monitor,1,389.99,10/08/19 12:48,"111 13th St, Seattle, WA 98101" -278237,Lightning Charging Cable,1,14.95,10/06/19 11:54,"776 12th St, San Francisco, CA 94016" -278238,Bose SoundSport Headphones,1,99.99,10/28/19 09:27,"41 Hickory St, Portland, ME 04101" -278239,Apple Airpods Headphones,1,150,10/31/19 03:14,"759 13th St, Atlanta, GA 30301" -278240,Wired Headphones,1,11.99,10/01/19 07:29,"191 West St, Boston, MA 02215" -278241,AAA Batteries (4-pack),3,2.99,10/27/19 10:20,"674 Johnson St, New York City, NY 10001" -278242,Lightning Charging Cable,1,14.95,10/12/19 11:06,"481 7th St, New York City, NY 10001" -278243,USB-C Charging Cable,1,11.95,10/24/19 12:20,"81 North St, Atlanta, GA 30301" -278244,USB-C Charging Cable,1,11.95,10/30/19 12:11,"963 Ridge St, Portland, OR 97035" -278245,USB-C Charging Cable,1,11.95,10/27/19 15:11,"533 Park St, Los Angeles, CA 90001" -278246,AAA Batteries (4-pack),1,2.99,10/09/19 17:24,"187 Hill St, San Francisco, CA 94016" -278247,Wired Headphones,1,11.99,10/19/19 19:36,"579 Church St, New York City, NY 10001" -278248,AAA Batteries (4-pack),1,2.99,10/31/19 19:23,"771 West St, Los Angeles, CA 90001" -278249,USB-C Charging Cable,1,11.95,10/10/19 12:10,"246 12th St, New York City, NY 10001" -278250,34in Ultrawide Monitor,1,379.99,10/09/19 06:35,"902 Pine St, San Francisco, CA 94016" -278251,27in FHD Monitor,1,149.99,10/21/19 17:17,"666 Walnut St, Portland, OR 97035" -278252,USB-C Charging Cable,1,11.95,10/23/19 09:31,"203 Dogwood St, San Francisco, CA 94016" -278253,Apple Airpods Headphones,1,150,10/11/19 19:43,"85 Cherry St, New York City, NY 10001" -278254,Lightning Charging Cable,1,14.95,10/12/19 22:14,"256 Pine St, Portland, OR 97035" -278255,Bose SoundSport Headphones,1,99.99,10/11/19 19:48,"784 Main St, San Francisco, CA 94016" -278256,Google Phone,1,600,10/02/19 07:18,"909 Church St, Seattle, WA 98101" -278256,USB-C Charging Cable,1,11.95,10/02/19 07:18,"909 Church St, Seattle, WA 98101" -278257,USB-C Charging Cable,1,11.95,10/16/19 01:28,"321 River St, San Francisco, CA 94016" -278258,Bose SoundSport Headphones,1,99.99,10/15/19 18:27,"549 2nd St, Seattle, WA 98101" -278259,27in FHD Monitor,1,149.99,10/26/19 08:50,"187 Church St, San Francisco, CA 94016" -278260,Google Phone,1,600,10/27/19 18:29,"223 West St, New York City, NY 10001" -278261,27in FHD Monitor,1,149.99,10/05/19 12:50,"842 Maple St, Austin, TX 73301" -278262,20in Monitor,1,109.99,10/04/19 00:02,"741 8th St, San Francisco, CA 94016" -278263,27in FHD Monitor,1,149.99,10/12/19 12:06,"944 Jefferson St, San Francisco, CA 94016" -278264,Wired Headphones,2,11.99,10/28/19 19:41,"998 4th St, San Francisco, CA 94016" -278265,Bose SoundSport Headphones,1,99.99,10/29/19 16:13,"182 Lakeview St, Los Angeles, CA 90001" -278266,Google Phone,1,600,10/21/19 07:34,"490 Church St, New York City, NY 10001" -278267,Wired Headphones,1,11.99,10/17/19 10:34,"953 9th St, Seattle, WA 98101" -278268,AA Batteries (4-pack),1,3.84,10/25/19 21:22,"429 13th St, Boston, MA 02215" -278269,34in Ultrawide Monitor,1,379.99,10/05/19 11:49,"630 Meadow St, New York City, NY 10001" -278270,Bose SoundSport Headphones,1,99.99,10/17/19 15:21,"527 1st St, Los Angeles, CA 90001" -278271,Lightning Charging Cable,1,14.95,10/19/19 20:15,"639 Dogwood St, Austin, TX 73301" -278272,27in FHD Monitor,1,149.99,10/14/19 17:56,"275 Maple St, Atlanta, GA 30301" -278273,USB-C Charging Cable,1,11.95,10/27/19 17:17,"955 2nd St, Seattle, WA 98101" -278274,Lightning Charging Cable,1,14.95,10/05/19 20:20,"345 Spruce St, New York City, NY 10001" -278275,USB-C Charging Cable,1,11.95,10/26/19 23:20,"96 Forest St, New York City, NY 10001" -278276,AAA Batteries (4-pack),2,2.99,10/31/19 20:48,"706 Adams St, Boston, MA 02215" -278277,USB-C Charging Cable,1,11.95,10/27/19 12:52,"429 13th St, New York City, NY 10001" -278278,AAA Batteries (4-pack),1,2.99,10/10/19 02:02,"599 Ridge St, Los Angeles, CA 90001" -278279,27in 4K Gaming Monitor,1,389.99,10/22/19 17:30,"235 Lake St, Boston, MA 02215" -278279,Lightning Charging Cable,1,14.95,10/22/19 17:30,"235 Lake St, Boston, MA 02215" -278280,AA Batteries (4-pack),4,3.84,10/05/19 07:52,"443 Dogwood St, New York City, NY 10001" -278281,USB-C Charging Cable,1,11.95,10/22/19 19:07,"722 Ridge St, Los Angeles, CA 90001" -278282,Wired Headphones,1,11.99,10/20/19 14:33,"904 South St, San Francisco, CA 94016" -278283,27in FHD Monitor,1,149.99,10/09/19 11:35,"666 Meadow St, Seattle, WA 98101" -278284,AA Batteries (4-pack),1,3.84,10/20/19 14:40,"523 Church St, Boston, MA 02215" -278285,AA Batteries (4-pack),1,3.84,10/12/19 11:49,"747 Lakeview St, Boston, MA 02215" -278286,Wired Headphones,1,11.99,10/30/19 19:43,"464 12th St, Los Angeles, CA 90001" -278287,Wired Headphones,1,11.99,10/23/19 01:34,"54 Elm St, San Francisco, CA 94016" -278288,Wired Headphones,1,11.99,10/31/19 18:08,"650 Dogwood St, Los Angeles, CA 90001" -278289,Vareebadd Phone,1,400,10/28/19 21:40,"190 Cedar St, San Francisco, CA 94016" -278290,Wired Headphones,1,11.99,10/19/19 12:10,"25 Park St, New York City, NY 10001" -278291,USB-C Charging Cable,1,11.95,10/16/19 13:37,"742 West St, Los Angeles, CA 90001" -278292,27in 4K Gaming Monitor,1,389.99,10/02/19 13:36,"471 Walnut St, Los Angeles, CA 90001" -278293,USB-C Charging Cable,1,11.95,10/17/19 22:45,"135 Willow St, San Francisco, CA 94016" -278294,Lightning Charging Cable,1,14.95,10/12/19 04:28,"29 7th St, Dallas, TX 75001" -278295,USB-C Charging Cable,1,11.95,10/09/19 09:59,"981 Hill St, Portland, OR 97035" -278296,Wired Headphones,3,11.99,10/03/19 00:27,"747 North St, San Francisco, CA 94016" -278297,USB-C Charging Cable,1,11.95,10/02/19 14:20,"905 Maple St, Portland, ME 04101" -278298,20in Monitor,1,109.99,10/07/19 11:11,"481 14th St, Seattle, WA 98101" -278299,Wired Headphones,1,11.99,10/14/19 10:09,"163 Cherry St, San Francisco, CA 94016" -278300,USB-C Charging Cable,1,11.95,10/05/19 20:18,"370 South St, New York City, NY 10001" -278301,Apple Airpods Headphones,1,150,10/27/19 20:09,"281 Church St, Seattle, WA 98101" -278302,AA Batteries (4-pack),1,3.84,10/05/19 14:15,"258 Pine St, Seattle, WA 98101" -278303,27in 4K Gaming Monitor,1,389.99,10/15/19 20:45,"897 Hickory St, Portland, OR 97035" -278304,Lightning Charging Cable,1,14.95,10/16/19 18:52,"184 North St, Seattle, WA 98101" -278305,Apple Airpods Headphones,1,150,10/19/19 10:14,"568 Ridge St, Austin, TX 73301" -278306,Apple Airpods Headphones,1,150,10/28/19 09:54,"197 Highland St, Seattle, WA 98101" -278307,27in 4K Gaming Monitor,1,389.99,10/27/19 10:53,"745 Lakeview St, Atlanta, GA 30301" -278308,Google Phone,1,600,10/03/19 08:15,"910 Hill St, San Francisco, CA 94016" -278308,USB-C Charging Cable,1,11.95,10/03/19 08:15,"910 Hill St, San Francisco, CA 94016" -278309,iPhone,1,700,10/15/19 20:56,"901 5th St, Dallas, TX 75001" -278310,Apple Airpods Headphones,1,150,10/31/19 20:09,"578 Ridge St, San Francisco, CA 94016" -278311,AAA Batteries (4-pack),1,2.99,10/04/19 11:20,"245 8th St, Dallas, TX 75001" -278312,iPhone,1,700,10/23/19 22:00,"251 Forest St, Los Angeles, CA 90001" -278312,Lightning Charging Cable,1,14.95,10/23/19 22:00,"251 Forest St, Los Angeles, CA 90001" -278313,USB-C Charging Cable,1,11.95,10/24/19 18:51,"835 6th St, San Francisco, CA 94016" -278314,Lightning Charging Cable,1,14.95,10/01/19 13:51,"144 Forest St, Austin, TX 73301" -278314,Apple Airpods Headphones,1,150,10/01/19 13:51,"144 Forest St, Austin, TX 73301" -278315,iPhone,1,700,10/04/19 06:12,"945 11th St, Atlanta, GA 30301" -278316,AAA Batteries (4-pack),2,2.99,10/29/19 13:35,"975 Elm St, Boston, MA 02215" -278317,USB-C Charging Cable,1,11.95,10/11/19 11:15,"296 2nd St, Boston, MA 02215" -278318,34in Ultrawide Monitor,1,379.99,10/27/19 12:15,"569 Highland St, San Francisco, CA 94016" -278319,Bose SoundSport Headphones,1,99.99,10/26/19 10:00,"845 South St, Los Angeles, CA 90001" -278320,27in 4K Gaming Monitor,1,389.99,10/17/19 08:26,"658 Dogwood St, Atlanta, GA 30301" -278321,USB-C Charging Cable,1,11.95,10/09/19 10:31,"120 Church St, Portland, OR 97035" -278322,27in 4K Gaming Monitor,1,389.99,10/14/19 11:43,"116 4th St, Portland, OR 97035" -278322,Lightning Charging Cable,1,14.95,10/14/19 11:43,"116 4th St, Portland, OR 97035" -278323,Lightning Charging Cable,1,14.95,10/31/19 20:16,"209 Dogwood St, Boston, MA 02215" -278324,Lightning Charging Cable,1,14.95,10/08/19 14:38,"845 Lakeview St, San Francisco, CA 94016" -278325,Wired Headphones,1,11.99,10/01/19 12:52,"118 Sunset St, Los Angeles, CA 90001" -278326,Google Phone,1,600,10/26/19 18:39,"325 Willow St, San Francisco, CA 94016" -278326,USB-C Charging Cable,1,11.95,10/26/19 18:39,"325 Willow St, San Francisco, CA 94016" -278327,Wired Headphones,2,11.99,10/26/19 00:34,"913 13th St, San Francisco, CA 94016" -278328,Wired Headphones,1,11.99,10/20/19 23:54,"336 6th St, Austin, TX 73301" -278329,Wired Headphones,1,11.99,10/31/19 11:50,"253 Main St, Boston, MA 02215" -278330,Bose SoundSport Headphones,2,99.99,10/17/19 10:28,"223 River St, Los Angeles, CA 90001" -278331,AAA Batteries (4-pack),2,2.99,10/02/19 11:43,"467 Lakeview St, Atlanta, GA 30301" -278332,Macbook Pro Laptop,1,1700,10/16/19 14:29,"600 12th St, Los Angeles, CA 90001" -278333,Lightning Charging Cable,1,14.95,10/06/19 18:10,"337 Johnson St, Dallas, TX 75001" -278334,Google Phone,1,600,10/02/19 18:47,"157 Sunset St, San Francisco, CA 94016" -278335,Apple Airpods Headphones,1,150,10/08/19 13:16,"990 Ridge St, Atlanta, GA 30301" -278336,27in 4K Gaming Monitor,1,389.99,10/10/19 06:46,"426 Lincoln St, Dallas, TX 75001" -278337,Apple Airpods Headphones,1,150,10/21/19 05:12,"335 Washington St, Atlanta, GA 30301" -278338,Bose SoundSport Headphones,1,99.99,10/13/19 01:15,"142 Lincoln St, San Francisco, CA 94016" -278339,Lightning Charging Cable,2,14.95,10/21/19 06:10,"282 2nd St, San Francisco, CA 94016" -278340,27in 4K Gaming Monitor,1,389.99,10/27/19 01:12,"299 South St, Los Angeles, CA 90001" -278341,Lightning Charging Cable,1,14.95,10/03/19 11:16,"286 12th St, Dallas, TX 75001" -278342,27in FHD Monitor,1,149.99,10/30/19 09:10,"972 Willow St, New York City, NY 10001" -278343,AA Batteries (4-pack),2,3.84,10/24/19 09:43,"268 4th St, San Francisco, CA 94016" -278344,AA Batteries (4-pack),1,3.84,10/08/19 01:34,"987 Hickory St, Los Angeles, CA 90001" -278345,AAA Batteries (4-pack),1,2.99,10/21/19 12:24,"395 Sunset St, Boston, MA 02215" -278346,AAA Batteries (4-pack),2,2.99,10/05/19 11:43,"179 14th St, Seattle, WA 98101" -278347,Lightning Charging Cable,1,14.95,10/16/19 18:46,"862 Wilson St, Seattle, WA 98101" -278348,Bose SoundSport Headphones,1,99.99,10/04/19 06:53,"864 Sunset St, Los Angeles, CA 90001" -278349,Google Phone,1,600,10/18/19 15:23,"954 Cherry St, Dallas, TX 75001" -278350,Bose SoundSport Headphones,1,99.99,10/10/19 17:56,"239 9th St, New York City, NY 10001" -278351,Apple Airpods Headphones,1,150,10/19/19 02:01,"452 West St, San Francisco, CA 94016" -278352,Lightning Charging Cable,1,14.95,10/30/19 08:35,"760 7th St, San Francisco, CA 94016" -278353,Apple Airpods Headphones,1,150,10/27/19 12:02,"470 West St, New York City, NY 10001" -278354,Google Phone,1,600,10/21/19 21:47,"370 1st St, Los Angeles, CA 90001" -278355,Wired Headphones,1,11.99,10/05/19 13:02,"961 13th St, Boston, MA 02215" -278356,Wired Headphones,1,11.99,10/22/19 21:42,"416 Jefferson St, San Francisco, CA 94016" -278357,Wired Headphones,1,11.99,10/13/19 17:54,"47 Highland St, San Francisco, CA 94016" -278358,USB-C Charging Cable,1,11.95,10/11/19 19:28,"6 Chestnut St, Los Angeles, CA 90001" -278359,Wired Headphones,1,11.99,10/12/19 18:42,"434 6th St, San Francisco, CA 94016" -278360,Wired Headphones,1,11.99,10/29/19 20:32,"262 11th St, Austin, TX 73301" -278361,Wired Headphones,1,11.99,10/28/19 11:47,"157 Lake St, San Francisco, CA 94016" -278362,Lightning Charging Cable,1,14.95,10/13/19 09:42,"427 9th St, San Francisco, CA 94016" -278363,USB-C Charging Cable,1,11.95,10/16/19 11:19,"269 Elm St, New York City, NY 10001" -278364,Google Phone,1,600,10/04/19 12:19,"459 8th St, Seattle, WA 98101" -278365,Bose SoundSport Headphones,1,99.99,10/22/19 09:35,"68 River St, Dallas, TX 75001" -278366,ThinkPad Laptop,1,999.99,10/20/19 10:13,"825 Walnut St, San Francisco, CA 94016" -278367,Apple Airpods Headphones,1,150,10/31/19 13:33,"148 Spruce St, Dallas, TX 75001" -278368,Bose SoundSport Headphones,1,99.99,10/27/19 13:20,"752 Forest St, San Francisco, CA 94016" -278369,27in 4K Gaming Monitor,1,389.99,10/22/19 09:13,"30 Lakeview St, Austin, TX 73301" -278370,AA Batteries (4-pack),1,3.84,10/18/19 21:37,"286 Adams St, New York City, NY 10001" -278371,27in FHD Monitor,1,149.99,10/01/19 23:09,"427 6th St, San Francisco, CA 94016" -278372,Bose SoundSport Headphones,1,99.99,10/30/19 20:21,"454 Sunset St, New York City, NY 10001" -278373,Wired Headphones,1,11.99,10/23/19 11:09,"955 Meadow St, New York City, NY 10001" -278373,Lightning Charging Cable,1,14.95,10/23/19 11:09,"955 Meadow St, New York City, NY 10001" -278374,USB-C Charging Cable,1,11.95,10/31/19 21:09,"390 South St, Atlanta, GA 30301" -278375,34in Ultrawide Monitor,1,379.99,10/30/19 21:53,"377 Dogwood St, Boston, MA 02215" -278376,AAA Batteries (4-pack),2,2.99,10/06/19 17:36,"465 Washington St, Portland, OR 97035" -278377,34in Ultrawide Monitor,1,379.99,10/03/19 10:15,"733 Maple St, Los Angeles, CA 90001" -278378,Apple Airpods Headphones,1,150,10/27/19 18:52,"257 14th St, Los Angeles, CA 90001" -278379,Lightning Charging Cable,1,14.95,10/24/19 08:52,"496 Walnut St, San Francisco, CA 94016" -278380,Macbook Pro Laptop,1,1700,10/06/19 21:39,"994 Pine St, San Francisco, CA 94016" -278381,Bose SoundSport Headphones,1,99.99,10/18/19 09:10,"972 Park St, San Francisco, CA 94016" -278382,Wired Headphones,1,11.99,10/10/19 20:18,"121 River St, New York City, NY 10001" -278383,AAA Batteries (4-pack),3,2.99,10/25/19 11:44,"197 6th St, Seattle, WA 98101" -278384,Lightning Charging Cable,1,14.95,10/05/19 21:01,"386 14th St, New York City, NY 10001" -278385,AAA Batteries (4-pack),2,2.99,10/20/19 23:27,"671 Forest St, Los Angeles, CA 90001" -278386,Lightning Charging Cable,1,14.95,10/25/19 20:59,"975 West St, Los Angeles, CA 90001" -278387,iPhone,1,700,10/08/19 16:49,"165 Cedar St, Seattle, WA 98101" -278387,Lightning Charging Cable,1,14.95,10/08/19 16:49,"165 Cedar St, Seattle, WA 98101" -278388,AA Batteries (4-pack),1,3.84,10/04/19 18:55,"697 7th St, Atlanta, GA 30301" -278389,Bose SoundSport Headphones,1,99.99,10/04/19 15:56,"244 Lakeview St, San Francisco, CA 94016" -278390,USB-C Charging Cable,1,11.95,10/22/19 12:52,"411 Madison St, San Francisco, CA 94016" -278391,Lightning Charging Cable,1,14.95,10/15/19 14:48,"957 Ridge St, Portland, OR 97035" -278392,Macbook Pro Laptop,1,1700,10/30/19 09:31,"895 Hill St, Los Angeles, CA 90001" -278393,Lightning Charging Cable,1,14.95,10/23/19 14:16,"134 Elm St, New York City, NY 10001" -278394,USB-C Charging Cable,1,11.95,10/29/19 20:02,"30 Highland St, Dallas, TX 75001" -278395,USB-C Charging Cable,1,11.95,10/01/19 22:08,"986 Jefferson St, San Francisco, CA 94016" -278396,USB-C Charging Cable,1,11.95,10/16/19 10:05,"169 Highland St, Austin, TX 73301" -278397,27in FHD Monitor,1,149.99,10/10/19 01:47,"957 7th St, Dallas, TX 75001" -278398,USB-C Charging Cable,1,11.95,10/01/19 12:08,"350 Sunset St, Los Angeles, CA 90001" -278399,20in Monitor,1,109.99,10/24/19 15:57,"70 South St, Dallas, TX 75001" -278400,Lightning Charging Cable,1,14.95,10/08/19 17:27,"72 Main St, Dallas, TX 75001" -278401,AAA Batteries (4-pack),2,2.99,10/29/19 14:00,"523 Elm St, Boston, MA 02215" -278402,Bose SoundSport Headphones,1,99.99,10/23/19 10:46,"172 Cherry St, San Francisco, CA 94016" -278403,AAA Batteries (4-pack),5,2.99,10/04/19 11:37,"823 Pine St, Austin, TX 73301" -278404,USB-C Charging Cable,1,11.95,10/27/19 21:01,"418 Chestnut St, Los Angeles, CA 90001" -278405,Macbook Pro Laptop,1,1700,10/26/19 19:40,"447 Lincoln St, Portland, OR 97035" -278406,Wired Headphones,1,11.99,10/21/19 13:54,"660 2nd St, Austin, TX 73301" -278407,Lightning Charging Cable,1,14.95,10/19/19 13:23,"753 Maple St, Boston, MA 02215" -278408,USB-C Charging Cable,1,11.95,10/23/19 14:27,"686 5th St, New York City, NY 10001" -278409,34in Ultrawide Monitor,1,379.99,10/12/19 19:21,"571 1st St, Los Angeles, CA 90001" -278410,27in FHD Monitor,1,149.99,10/25/19 14:39,"14 1st St, Boston, MA 02215" -278411,Bose SoundSport Headphones,1,99.99,10/01/19 14:41,"177 4th St, Los Angeles, CA 90001" -278412,27in FHD Monitor,1,149.99,10/09/19 16:10,"733 Lincoln St, Boston, MA 02215" -278413,AA Batteries (4-pack),1,3.84,10/15/19 11:16,"323 Meadow St, Seattle, WA 98101" -278414,AA Batteries (4-pack),1,3.84,10/06/19 11:56,"690 14th St, San Francisco, CA 94016" -278415,AAA Batteries (4-pack),2,2.99,10/14/19 15:46,"87 Wilson St, Los Angeles, CA 90001" -278415,iPhone,1,700,10/14/19 15:46,"87 Wilson St, Los Angeles, CA 90001" -278416,Lightning Charging Cable,1,14.95,10/11/19 16:25,"267 8th St, Atlanta, GA 30301" -278417,Apple Airpods Headphones,1,150,10/28/19 14:11,"680 South St, Los Angeles, CA 90001" -278418,Bose SoundSport Headphones,1,99.99,10/01/19 23:16,"138 Center St, San Francisco, CA 94016" -278419,Apple Airpods Headphones,1,150,10/05/19 10:58,"720 Spruce St, Los Angeles, CA 90001" -278420,Apple Airpods Headphones,1,150,10/14/19 20:08,"707 Madison St, Dallas, TX 75001" -278421,Apple Airpods Headphones,1,150,10/25/19 12:25,"854 1st St, San Francisco, CA 94016" -278422,AA Batteries (4-pack),1,3.84,10/06/19 09:58,"138 Sunset St, Boston, MA 02215" -278423,USB-C Charging Cable,1,11.95,10/11/19 17:49,"172 Elm St, New York City, NY 10001" -278424,Wired Headphones,1,11.99,10/24/19 10:53,"766 West St, San Francisco, CA 94016" -278424,AA Batteries (4-pack),3,3.84,10/24/19 10:53,"766 West St, San Francisco, CA 94016" -278425,LG Dryer,1,600.0,10/11/19 15:36,"202 Lake St, Atlanta, GA 30301" -278426,Apple Airpods Headphones,1,150,10/11/19 14:05,"706 South St, Boston, MA 02215" -278427,Wired Headphones,1,11.99,10/18/19 22:07,"709 11th St, Los Angeles, CA 90001" -278428,AA Batteries (4-pack),1,3.84,10/31/19 14:14,"206 9th St, Seattle, WA 98101" -278429,iPhone,1,700,10/19/19 10:04,"148 14th St, Los Angeles, CA 90001" -278430,Bose SoundSport Headphones,1,99.99,10/05/19 15:26,"637 2nd St, Atlanta, GA 30301" -278431,Google Phone,1,600,10/01/19 15:06,"348 8th St, Los Angeles, CA 90001" -278432,Apple Airpods Headphones,1,150,10/02/19 20:39,"294 West St, Boston, MA 02215" -278433,USB-C Charging Cable,1,11.95,10/22/19 19:56,"951 Willow St, Austin, TX 73301" -278434,Wired Headphones,1,11.99,10/20/19 10:03,"232 Highland St, San Francisco, CA 94016" -278435,27in FHD Monitor,1,149.99,10/10/19 18:26,"843 10th St, Dallas, TX 75001" -278436,USB-C Charging Cable,1,11.95,10/21/19 22:40,"486 Adams St, Portland, OR 97035" -278437,Macbook Pro Laptop,1,1700,10/21/19 18:43,"367 Cherry St, San Francisco, CA 94016" -278438,Bose SoundSport Headphones,1,99.99,10/03/19 13:17,"726 Meadow St, Seattle, WA 98101" -278439,AAA Batteries (4-pack),2,2.99,10/20/19 15:06,"54 South St, Boston, MA 02215" -278440,LG Dryer,1,600.0,10/10/19 15:45,"299 Hickory St, Los Angeles, CA 90001" -278441,Wired Headphones,1,11.99,10/27/19 11:03,"856 Maple St, Boston, MA 02215" -278442,20in Monitor,1,109.99,10/18/19 14:05,"437 Park St, New York City, NY 10001" -278443,Apple Airpods Headphones,1,150,10/31/19 18:45,"903 Highland St, Atlanta, GA 30301" -278444,AAA Batteries (4-pack),1,2.99,10/24/19 20:24,"286 Meadow St, Los Angeles, CA 90001" -278445,Vareebadd Phone,1,400,10/24/19 14:08,"755 North St, San Francisco, CA 94016" -278445,Bose SoundSport Headphones,1,99.99,10/24/19 14:08,"755 North St, San Francisco, CA 94016" -278446,Lightning Charging Cable,1,14.95,10/08/19 12:52,"232 14th St, Los Angeles, CA 90001" -278447,AAA Batteries (4-pack),1,2.99,10/25/19 11:46,"945 Pine St, Seattle, WA 98101" -278448,Lightning Charging Cable,1,14.95,10/28/19 20:12,"187 West St, Los Angeles, CA 90001" -278449,USB-C Charging Cable,1,11.95,10/24/19 18:11,"986 Hill St, San Francisco, CA 94016" -278450,iPhone,1,700,10/04/19 07:50,"808 Hickory St, San Francisco, CA 94016" -278451,27in FHD Monitor,1,149.99,10/25/19 15:41,"660 9th St, San Francisco, CA 94016" -278452,Lightning Charging Cable,1,14.95,10/17/19 06:10,"337 Highland St, New York City, NY 10001" -278453,27in FHD Monitor,1,149.99,10/11/19 19:47,"381 South St, Dallas, TX 75001" -278454,27in 4K Gaming Monitor,1,389.99,10/04/19 14:22,"510 6th St, Portland, OR 97035" -278455,Lightning Charging Cable,2,14.95,10/07/19 16:05,"319 Park St, Los Angeles, CA 90001" -278456,Wired Headphones,1,11.99,10/15/19 07:45,"243 Cedar St, San Francisco, CA 94016" -278457,Lightning Charging Cable,2,14.95,10/16/19 12:08,"37 Wilson St, San Francisco, CA 94016" -278458,27in FHD Monitor,1,149.99,10/15/19 19:46,"792 Sunset St, Dallas, TX 75001" -278459,Bose SoundSport Headphones,1,99.99,10/24/19 13:30,"60 South St, Seattle, WA 98101" -278460,Lightning Charging Cable,1,14.95,10/19/19 14:53,"782 Dogwood St, San Francisco, CA 94016" -278461,iPhone,1,700,10/06/19 11:49,"540 12th St, San Francisco, CA 94016" -278462,Wired Headphones,1,11.99,10/29/19 15:17,"582 9th St, New York City, NY 10001" -278463,Bose SoundSport Headphones,1,99.99,10/11/19 04:29,"313 Park St, New York City, NY 10001" -278464,Lightning Charging Cable,2,14.95,10/30/19 20:52,"428 Park St, New York City, NY 10001" -278465,Wired Headphones,1,11.99,10/09/19 19:21,"581 Jackson St, San Francisco, CA 94016" -278466,AA Batteries (4-pack),3,3.84,10/18/19 18:02,"952 Pine St, San Francisco, CA 94016" -278467,Lightning Charging Cable,2,14.95,10/15/19 11:58,"337 Spruce St, Austin, TX 73301" -278468,ThinkPad Laptop,1,999.99,10/29/19 15:25,"153 Maple St, Seattle, WA 98101" -278469,Apple Airpods Headphones,1,150,10/24/19 19:54,"581 Madison St, Atlanta, GA 30301" -278470,AA Batteries (4-pack),1,3.84,10/09/19 07:54,"877 Johnson St, Los Angeles, CA 90001" -278471,USB-C Charging Cable,1,11.95,10/28/19 22:09,"273 Willow St, Dallas, TX 75001" -278472,Lightning Charging Cable,1,14.95,10/24/19 01:41,"567 6th St, Los Angeles, CA 90001" -278473,USB-C Charging Cable,1,11.95,10/11/19 18:02,"944 Cherry St, Austin, TX 73301" -278474,USB-C Charging Cable,1,11.95,10/31/19 10:51,"167 South St, San Francisco, CA 94016" -278475,USB-C Charging Cable,1,11.95,10/17/19 21:13,"488 Lake St, Atlanta, GA 30301" -278476,34in Ultrawide Monitor,1,379.99,10/10/19 13:36,"403 7th St, San Francisco, CA 94016" -278477,Lightning Charging Cable,1,14.95,10/15/19 20:39,"59 Johnson St, San Francisco, CA 94016" -278478,Apple Airpods Headphones,1,150,10/09/19 17:57,"120 Jackson St, Los Angeles, CA 90001" -278479,Flatscreen TV,1,300,10/22/19 18:28,"315 Spruce St, Portland, OR 97035" -278480,iPhone,1,700,10/14/19 19:44,"269 South St, New York City, NY 10001" -278481,Apple Airpods Headphones,1,150,10/06/19 17:27,"996 Park St, Dallas, TX 75001" -278481,Bose SoundSport Headphones,1,99.99,10/06/19 17:27,"996 Park St, Dallas, TX 75001" -278482,Apple Airpods Headphones,1,150,10/13/19 16:43,"10 Adams St, New York City, NY 10001" -278483,Bose SoundSport Headphones,1,99.99,10/09/19 06:28,"93 Adams St, San Francisco, CA 94016" -278484,AAA Batteries (4-pack),1,2.99,10/08/19 20:03,"262 Highland St, Los Angeles, CA 90001" -278485,AA Batteries (4-pack),1,3.84,10/13/19 22:01,"490 13th St, Boston, MA 02215" -278486,Wired Headphones,1,11.99,10/29/19 22:19,"672 4th St, New York City, NY 10001" -278487,AA Batteries (4-pack),2,3.84,10/13/19 09:06,"616 North St, San Francisco, CA 94016" -278488,Wired Headphones,1,11.99,10/01/19 15:20,"914 Park St, Portland, OR 97035" -278489,Bose SoundSport Headphones,1,99.99,10/24/19 00:16,"462 Park St, Boston, MA 02215" -278490,Apple Airpods Headphones,1,150,10/29/19 19:29,"211 Meadow St, New York City, NY 10001" -278491,AA Batteries (4-pack),1,3.84,10/24/19 19:14,"582 9th St, San Francisco, CA 94016" -278492,AAA Batteries (4-pack),1,2.99,10/21/19 17:52,"243 5th St, Boston, MA 02215" -278493,Wired Headphones,1,11.99,10/11/19 13:23,"848 South St, Boston, MA 02215" -278494,Bose SoundSport Headphones,1,99.99,10/23/19 12:37,"960 River St, San Francisco, CA 94016" -278495,AA Batteries (4-pack),1,3.84,10/22/19 15:32,"792 2nd St, Dallas, TX 75001" -278496,20in Monitor,1,109.99,10/31/19 19:06,"249 10th St, Dallas, TX 75001" -278497,Apple Airpods Headphones,1,150,10/27/19 08:35,"717 Madison St, Boston, MA 02215" -278498,Lightning Charging Cable,1,14.95,10/26/19 18:29,"777 River St, Atlanta, GA 30301" -278499,Macbook Pro Laptop,1,1700,10/22/19 09:54,"389 Jefferson St, San Francisco, CA 94016" -278500,USB-C Charging Cable,1,11.95,10/12/19 18:43,"393 7th St, San Francisco, CA 94016" -278501,AAA Batteries (4-pack),1,2.99,10/20/19 13:36,"700 Main St, San Francisco, CA 94016" -278502,USB-C Charging Cable,1,11.95,10/22/19 14:23,"802 Maple St, New York City, NY 10001" -278503,Apple Airpods Headphones,1,150,10/09/19 22:00,"267 Dogwood St, New York City, NY 10001" -278504,Bose SoundSport Headphones,1,99.99,10/09/19 21:16,"265 10th St, New York City, NY 10001" -278505,USB-C Charging Cable,1,11.95,10/14/19 14:27,"204 Hickory St, San Francisco, CA 94016" -278506,USB-C Charging Cable,1,11.95,10/25/19 14:44,"824 1st St, New York City, NY 10001" -278507,27in 4K Gaming Monitor,1,389.99,10/25/19 21:41,"632 Sunset St, Austin, TX 73301" -278508,Bose SoundSport Headphones,1,99.99,10/25/19 12:25,"96 Main St, Portland, OR 97035" -278509,AA Batteries (4-pack),1,3.84,10/14/19 10:42,"979 Spruce St, Seattle, WA 98101" -278510,iPhone,1,700,10/26/19 17:56,"449 Willow St, New York City, NY 10001" -278511,34in Ultrawide Monitor,1,379.99,10/01/19 13:03,"468 2nd St, San Francisco, CA 94016" -278512,34in Ultrawide Monitor,1,379.99,10/08/19 18:41,"924 Spruce St, Seattle, WA 98101" -278513,USB-C Charging Cable,1,11.95,10/23/19 18:09,"980 4th St, Seattle, WA 98101" -278514,Apple Airpods Headphones,1,150,10/01/19 20:55,"31 10th St, Atlanta, GA 30301" -278515,20in Monitor,1,109.99,10/10/19 21:01,"257 10th St, Los Angeles, CA 90001" -278516,USB-C Charging Cable,1,11.95,10/14/19 21:07,"223 Pine St, Austin, TX 73301" -278517,Wired Headphones,1,11.99,10/12/19 12:28,"730 Elm St, Dallas, TX 75001" -278518,AAA Batteries (4-pack),2,2.99,10/08/19 20:56,"160 Walnut St, Los Angeles, CA 90001" -278519,iPhone,1,700,10/26/19 16:46,"471 13th St, New York City, NY 10001" -278520,AA Batteries (4-pack),2,3.84,10/26/19 15:29,"963 Maple St, Austin, TX 73301" -278521,Flatscreen TV,1,300,10/03/19 18:21,"934 Center St, San Francisco, CA 94016" -278522,AAA Batteries (4-pack),2,2.99,10/05/19 17:47,"950 Johnson St, New York City, NY 10001" -278523,Lightning Charging Cable,1,14.95,10/10/19 11:05,"150 12th St, Los Angeles, CA 90001" -278524,Bose SoundSport Headphones,1,99.99,10/26/19 10:40,"760 Main St, Dallas, TX 75001" -278525,Flatscreen TV,1,300,10/18/19 23:18,"64 Adams St, Los Angeles, CA 90001" -278526,Macbook Pro Laptop,1,1700,10/14/19 06:22,"887 Lakeview St, San Francisco, CA 94016" -278527,AA Batteries (4-pack),1,3.84,10/13/19 09:10,"773 Church St, Los Angeles, CA 90001" -278528,Flatscreen TV,1,300,10/22/19 18:21,"714 Meadow St, Atlanta, GA 30301" -278529,iPhone,1,700,10/29/19 18:20,"183 Forest St, Austin, TX 73301" -278530,AAA Batteries (4-pack),2,2.99,10/11/19 18:34,"509 Hickory St, New York City, NY 10001" -278531,AAA Batteries (4-pack),1,2.99,10/18/19 11:36,"983 Main St, Atlanta, GA 30301" -278532,Google Phone,1,600,10/06/19 17:30,"413 Dogwood St, Seattle, WA 98101" -278533,34in Ultrawide Monitor,1,379.99,10/04/19 06:42,"196 2nd St, San Francisco, CA 94016" -278534,Apple Airpods Headphones,1,150,10/08/19 23:56,"746 River St, San Francisco, CA 94016" -278535,Google Phone,1,600,10/13/19 03:54,"912 Highland St, San Francisco, CA 94016" -278536,Wired Headphones,1,11.99,10/27/19 20:30,"158 Center St, San Francisco, CA 94016" -278537,34in Ultrawide Monitor,1,379.99,10/19/19 12:31,"413 14th St, Dallas, TX 75001" -278538,AA Batteries (4-pack),1,3.84,10/26/19 18:17,"941 Hickory St, Seattle, WA 98101" -278539,AAA Batteries (4-pack),1,2.99,10/29/19 16:32,"575 6th St, Atlanta, GA 30301" -278540,USB-C Charging Cable,1,11.95,10/05/19 11:23,"124 1st St, Atlanta, GA 30301" -278541,Bose SoundSport Headphones,1,99.99,10/07/19 12:12,"777 7th St, Boston, MA 02215" -278542,Wired Headphones,1,11.99,10/16/19 22:03,"589 South St, Seattle, WA 98101" -278543,AA Batteries (4-pack),1,3.84,10/13/19 08:12,"878 Highland St, Boston, MA 02215" -278544,AA Batteries (4-pack),1,3.84,10/18/19 12:00,"499 Spruce St, Seattle, WA 98101" -278545,ThinkPad Laptop,1,999.99,10/02/19 20:01,"884 West St, Atlanta, GA 30301" -278546,LG Dryer,1,600.0,10/18/19 14:17,"105 Spruce St, Dallas, TX 75001" -278547,AAA Batteries (4-pack),3,2.99,10/22/19 18:14,"985 Pine St, Atlanta, GA 30301" -278548,Lightning Charging Cable,2,14.95,10/01/19 20:13,"272 Washington St, Portland, OR 97035" -278549,Macbook Pro Laptop,1,1700,10/29/19 11:39,"869 Spruce St, Austin, TX 73301" -278550,Apple Airpods Headphones,1,150,10/28/19 10:32,"179 Chestnut St, Los Angeles, CA 90001" -278551,AA Batteries (4-pack),1,3.84,10/19/19 10:57,"987 10th St, Dallas, TX 75001" -278552,AA Batteries (4-pack),1,3.84,10/23/19 10:38,"130 Main St, Seattle, WA 98101" -278553,USB-C Charging Cable,1,11.95,10/07/19 19:54,"613 6th St, Los Angeles, CA 90001" -278554,34in Ultrawide Monitor,1,379.99,10/24/19 16:19,"25 Jefferson St, Boston, MA 02215" -278555,34in Ultrawide Monitor,1,379.99,10/09/19 19:15,"28 8th St, San Francisco, CA 94016" -278556,20in Monitor,1,109.99,10/22/19 10:25,"790 Main St, Los Angeles, CA 90001" -278557,AAA Batteries (4-pack),3,2.99,10/10/19 12:41,"478 Park St, Seattle, WA 98101" -278558,AA Batteries (4-pack),1,3.84,10/24/19 02:29,"701 Jefferson St, San Francisco, CA 94016" -278559,AAA Batteries (4-pack),2,2.99,10/09/19 16:42,"919 Hickory St, Boston, MA 02215" -278560,Lightning Charging Cable,1,14.95,10/10/19 12:27,"977 Chestnut St, Los Angeles, CA 90001" -278561,USB-C Charging Cable,1,11.95,10/14/19 14:35,"791 South St, Seattle, WA 98101" -278562,Lightning Charging Cable,1,14.95,10/29/19 22:36,"955 Park St, Boston, MA 02215" -278563,Google Phone,1,600,10/08/19 10:10,"542 Adams St, Dallas, TX 75001" -278563,USB-C Charging Cable,1,11.95,10/08/19 10:10,"542 Adams St, Dallas, TX 75001" -278564,AAA Batteries (4-pack),1,2.99,10/13/19 04:33,"404 5th St, San Francisco, CA 94016" -278565,ThinkPad Laptop,1,999.99,10/15/19 14:06,"910 West St, Los Angeles, CA 90001" -278566,AAA Batteries (4-pack),8,2.99,10/13/19 19:07,"992 Park St, Los Angeles, CA 90001" -278567,AAA Batteries (4-pack),1,2.99,10/13/19 14:06,"581 Wilson St, Dallas, TX 75001" -278568,AA Batteries (4-pack),1,3.84,10/29/19 12:49,"392 River St, San Francisco, CA 94016" -278569,ThinkPad Laptop,1,999.99,10/14/19 17:45,"425 Madison St, Los Angeles, CA 90001" -278570,Bose SoundSport Headphones,1,99.99,10/26/19 20:15,"214 Willow St, Los Angeles, CA 90001" -278571,Bose SoundSport Headphones,1,99.99,10/22/19 23:28,"341 Elm St, Los Angeles, CA 90001" -278572,Wired Headphones,1,11.99,10/16/19 10:45,"993 Lakeview St, Dallas, TX 75001" -278573,20in Monitor,1,109.99,10/02/19 17:14,"212 Elm St, San Francisco, CA 94016" -278574,34in Ultrawide Monitor,1,379.99,10/12/19 19:44,"13 1st St, Austin, TX 73301" -278575,AAA Batteries (4-pack),3,2.99,10/02/19 20:15,"889 Dogwood St, Los Angeles, CA 90001" -278576,AAA Batteries (4-pack),1,2.99,10/17/19 18:09,"357 13th St, New York City, NY 10001" -278577,AA Batteries (4-pack),2,3.84,10/26/19 15:45,"592 Meadow St, New York City, NY 10001" -278578,Apple Airpods Headphones,1,150,10/19/19 11:23,"19 7th St, New York City, NY 10001" -278579,27in 4K Gaming Monitor,1,389.99,10/26/19 19:37,"842 Washington St, Boston, MA 02215" -278580,USB-C Charging Cable,1,11.95,10/25/19 11:56,"259 North St, Dallas, TX 75001" -278581,AA Batteries (4-pack),1,3.84,10/24/19 18:56,"916 Maple St, Seattle, WA 98101" -278582,iPhone,1,700,10/15/19 18:17,"993 Elm St, Portland, OR 97035" -278583,AA Batteries (4-pack),2,3.84,10/07/19 17:37,"51 8th St, Boston, MA 02215" -278584,ThinkPad Laptop,1,999.99,10/06/19 00:01,"10 North St, New York City, NY 10001" -278585,Wired Headphones,1,11.99,10/17/19 15:21,"705 Jefferson St, Austin, TX 73301" -278586,Wired Headphones,1,11.99,10/18/19 18:44,"92 Madison St, New York City, NY 10001" -278587,Bose SoundSport Headphones,1,99.99,10/01/19 16:14,"509 14th St, San Francisco, CA 94016" -278588,Lightning Charging Cable,1,14.95,10/13/19 17:04,"201 Forest St, Atlanta, GA 30301" -278589,AA Batteries (4-pack),1,3.84,10/15/19 17:49,"503 2nd St, Portland, OR 97035" -278590,Apple Airpods Headphones,1,150,10/20/19 13:55,"693 Dogwood St, San Francisco, CA 94016" -278591,Bose SoundSport Headphones,1,99.99,10/01/19 13:29,"450 Wilson St, Atlanta, GA 30301" -278592,USB-C Charging Cable,1,11.95,10/05/19 13:28,"861 Forest St, Seattle, WA 98101" -278593,Wired Headphones,1,11.99,10/16/19 18:07,"685 North St, San Francisco, CA 94016" -278594,iPhone,1,700,10/12/19 14:46,"956 Sunset St, San Francisco, CA 94016" -278595,AA Batteries (4-pack),1,3.84,10/02/19 18:07,"179 Spruce St, Portland, OR 97035" -278596,20in Monitor,1,109.99,10/13/19 18:28,"408 8th St, Los Angeles, CA 90001" -278596,Lightning Charging Cable,1,14.95,10/13/19 18:28,"408 8th St, Los Angeles, CA 90001" -278597,Apple Airpods Headphones,1,150,10/25/19 17:59,"739 Spruce St, Los Angeles, CA 90001" -278598,AA Batteries (4-pack),2,3.84,10/05/19 16:46,"272 Hickory St, Portland, OR 97035" -278599,Apple Airpods Headphones,1,150,10/04/19 12:17,"821 Adams St, Los Angeles, CA 90001" -278600,AAA Batteries (4-pack),2,2.99,10/30/19 18:00,"51 6th St, Seattle, WA 98101" -278601,AAA Batteries (4-pack),2,2.99,10/19/19 23:03,"468 6th St, Dallas, TX 75001" -278602,27in FHD Monitor,1,149.99,10/03/19 10:47,"231 Walnut St, Boston, MA 02215" -278603,AAA Batteries (4-pack),1,2.99,10/20/19 00:25,"293 River St, New York City, NY 10001" -278604,20in Monitor,1,109.99,10/05/19 03:43,"418 Adams St, Seattle, WA 98101" -278605,Lightning Charging Cable,1,14.95,10/24/19 07:48,"191 Cherry St, Dallas, TX 75001" -278606,34in Ultrawide Monitor,1,379.99,10/19/19 00:53,"980 Park St, Los Angeles, CA 90001" -278607,AA Batteries (4-pack),3,3.84,10/11/19 07:01,"100 North St, Los Angeles, CA 90001" -278608,27in FHD Monitor,1,149.99,10/05/19 02:06,"81 Pine St, Seattle, WA 98101" -278609,Vareebadd Phone,1,400,10/14/19 15:03,"11 Lake St, Portland, ME 04101" -278610,AAA Batteries (4-pack),1,2.99,10/22/19 08:01,"904 Sunset St, Austin, TX 73301" -278611,USB-C Charging Cable,1,11.95,10/05/19 12:29,"314 8th St, Austin, TX 73301" -278612,Lightning Charging Cable,1,14.95,10/10/19 04:31,"408 12th St, San Francisco, CA 94016" -278613,AAA Batteries (4-pack),1,2.99,10/04/19 22:20,"825 South St, San Francisco, CA 94016" -278614,Bose SoundSport Headphones,1,99.99,10/22/19 23:55,"643 9th St, Boston, MA 02215" -278615,USB-C Charging Cable,1,11.95,10/26/19 13:39,"904 13th St, Seattle, WA 98101" -278616,Lightning Charging Cable,1,14.95,10/28/19 23:12,"829 Highland St, San Francisco, CA 94016" -278617,Apple Airpods Headphones,1,150,10/06/19 19:19,"327 Lincoln St, Los Angeles, CA 90001" -278618,Lightning Charging Cable,1,14.95,10/14/19 15:38,"140 Forest St, Los Angeles, CA 90001" -278619,Google Phone,1,600,10/04/19 15:29,"37 Lakeview St, Portland, OR 97035" -278620,Bose SoundSport Headphones,1,99.99,10/13/19 22:44,"235 Forest St, New York City, NY 10001" -278621,USB-C Charging Cable,1,11.95,10/21/19 19:57,"469 Highland St, Atlanta, GA 30301" -278622,iPhone,1,700,10/02/19 13:17,"879 Ridge St, Dallas, TX 75001" -278623,AAA Batteries (4-pack),1,2.99,10/03/19 22:50,"102 13th St, Boston, MA 02215" -278624,Apple Airpods Headphones,1,150,10/01/19 13:00,"106 Walnut St, Portland, OR 97035" -278625,27in FHD Monitor,1,149.99,10/17/19 23:20,"695 Jackson St, New York City, NY 10001" -278626,USB-C Charging Cable,1,11.95,10/20/19 14:44,"189 Church St, Dallas, TX 75001" -278627,Lightning Charging Cable,1,14.95,10/26/19 11:02,"393 West St, Portland, ME 04101" -278628,Macbook Pro Laptop,1,1700,10/01/19 16:09,"226 7th St, Los Angeles, CA 90001" -278629,Apple Airpods Headphones,1,150,10/13/19 07:39,"153 7th St, Boston, MA 02215" -278630,Wired Headphones,1,11.99,10/05/19 08:55,"429 14th St, San Francisco, CA 94016" -278631,Bose SoundSport Headphones,1,99.99,10/19/19 18:22,"306 Dogwood St, Los Angeles, CA 90001" -278632,34in Ultrawide Monitor,1,379.99,10/04/19 19:58,"820 Hickory St, Seattle, WA 98101" -278633,Lightning Charging Cable,1,14.95,10/06/19 11:47,"593 West St, Dallas, TX 75001" -278634,AA Batteries (4-pack),2,3.84,10/13/19 10:12,"871 8th St, Los Angeles, CA 90001" -278635,iPhone,1,700,10/21/19 18:00,"205 9th St, Dallas, TX 75001" -278636,Macbook Pro Laptop,1,1700,10/10/19 19:38,"328 Madison St, Los Angeles, CA 90001" -278637,ThinkPad Laptop,2,999.99,10/02/19 16:06,"643 Cedar St, Boston, MA 02215" -278638,Lightning Charging Cable,1,14.95,10/19/19 10:56,"133 River St, Seattle, WA 98101" -278639,AA Batteries (4-pack),1,3.84,10/31/19 21:28,"363 6th St, San Francisco, CA 94016" -278640,Bose SoundSport Headphones,1,99.99,10/03/19 17:05,"540 Hickory St, Atlanta, GA 30301" -278641,Wired Headphones,1,11.99,10/24/19 20:47,"481 Cherry St, Dallas, TX 75001" -278642,USB-C Charging Cable,1,11.95,10/22/19 13:12,"166 Highland St, Los Angeles, CA 90001" -278643,Wired Headphones,1,11.99,10/03/19 17:44,"808 9th St, Atlanta, GA 30301" -278644,Macbook Pro Laptop,1,1700,10/21/19 12:47,"703 Willow St, San Francisco, CA 94016" -278645,Lightning Charging Cable,1,14.95,10/29/19 09:19,"221 Church St, Austin, TX 73301" -278646,Wired Headphones,1,11.99,10/10/19 20:34,"798 Maple St, New York City, NY 10001" -278647,USB-C Charging Cable,1,11.95,10/06/19 20:35,"323 6th St, San Francisco, CA 94016" -278648,Bose SoundSport Headphones,1,99.99,10/10/19 17:09,"323 Lake St, Los Angeles, CA 90001" -278649,Wired Headphones,2,11.99,10/28/19 15:44,"323 13th St, Los Angeles, CA 90001" -278650,Flatscreen TV,1,300,10/10/19 20:43,"35 1st St, Los Angeles, CA 90001" -278651,Wired Headphones,1,11.99,10/05/19 21:16,"174 South St, Dallas, TX 75001" -278652,34in Ultrawide Monitor,1,379.99,10/25/19 09:23,"897 Maple St, Dallas, TX 75001" -278653,iPhone,1,700,10/31/19 19:46,"949 Chestnut St, Atlanta, GA 30301" -278653,Lightning Charging Cable,1,14.95,10/31/19 19:46,"949 Chestnut St, Atlanta, GA 30301" -278654,27in 4K Gaming Monitor,1,389.99,10/27/19 18:37,"923 10th St, Los Angeles, CA 90001" -278655,27in 4K Gaming Monitor,1,389.99,10/19/19 20:01,"53 Chestnut St, New York City, NY 10001" -278656,AA Batteries (4-pack),1,3.84,10/16/19 07:04,"270 River St, Los Angeles, CA 90001" -278657,Flatscreen TV,1,300,10/10/19 18:18,"693 11th St, Seattle, WA 98101" -278658,34in Ultrawide Monitor,1,379.99,10/19/19 19:25,"684 Lake St, San Francisco, CA 94016" -278659,iPhone,1,700,10/21/19 22:46,"915 Willow St, Seattle, WA 98101" -278660,AA Batteries (4-pack),1,3.84,10/17/19 20:10,"825 6th St, New York City, NY 10001" -278661,Apple Airpods Headphones,1,150,10/02/19 14:55,"423 12th St, Los Angeles, CA 90001" -278662,USB-C Charging Cable,1,11.95,10/09/19 16:59,"299 Church St, San Francisco, CA 94016" -278663,Bose SoundSport Headphones,1,99.99,10/15/19 18:18,"609 12th St, San Francisco, CA 94016" -278664,20in Monitor,1,109.99,10/08/19 19:42,"891 9th St, Los Angeles, CA 90001" -278665,USB-C Charging Cable,1,11.95,10/20/19 20:47,"982 Cedar St, San Francisco, CA 94016" -278666,Flatscreen TV,1,300,10/03/19 20:27,"624 Forest St, San Francisco, CA 94016" -278667,Lightning Charging Cable,1,14.95,10/25/19 13:43,"330 Adams St, San Francisco, CA 94016" -278668,Apple Airpods Headphones,1,150,10/04/19 22:17,"455 Dogwood St, Los Angeles, CA 90001" -278669,AA Batteries (4-pack),1,3.84,10/26/19 15:41,"51 Chestnut St, Los Angeles, CA 90001" -278670,Wired Headphones,1,11.99,10/04/19 18:43,"979 Park St, New York City, NY 10001" -278671,Bose SoundSport Headphones,1,99.99,10/02/19 13:53,"854 Willow St, Los Angeles, CA 90001" -278672,Apple Airpods Headphones,1,150,10/29/19 14:34,"965 4th St, Los Angeles, CA 90001" -278673,AA Batteries (4-pack),1,3.84,10/03/19 13:37,"349 10th St, San Francisco, CA 94016" -278674,AA Batteries (4-pack),1,3.84,10/09/19 16:17,"178 4th St, Los Angeles, CA 90001" -278675,Apple Airpods Headphones,1,150,10/05/19 11:55,"768 Spruce St, San Francisco, CA 94016" -278676,Bose SoundSport Headphones,1,99.99,10/24/19 10:16,"19 Park St, Los Angeles, CA 90001" -278677,Lightning Charging Cable,1,14.95,10/04/19 19:59,"289 Jefferson St, Los Angeles, CA 90001" -278678,USB-C Charging Cable,1,11.95,10/21/19 16:08,"479 Jackson St, Boston, MA 02215" -278679,AAA Batteries (4-pack),1,2.99,10/11/19 10:20,"422 12th St, New York City, NY 10001" -278680,USB-C Charging Cable,2,11.95,10/25/19 14:01,"561 Dogwood St, Los Angeles, CA 90001" -278681,Wired Headphones,1,11.99,10/13/19 11:28,"535 North St, San Francisco, CA 94016" -278682,Lightning Charging Cable,1,14.95,10/24/19 20:22,"966 Adams St, Boston, MA 02215" -278683,USB-C Charging Cable,1,11.95,10/29/19 23:40,"246 Chestnut St, Atlanta, GA 30301" -278684,Bose SoundSport Headphones,1,99.99,10/11/19 13:07,"830 6th St, San Francisco, CA 94016" -278685,27in FHD Monitor,1,149.99,10/30/19 22:55,"576 River St, Portland, OR 97035" -278686,AA Batteries (4-pack),2,3.84,10/20/19 18:02,"304 Ridge St, Los Angeles, CA 90001" -278687,AA Batteries (4-pack),1,3.84,10/31/19 22:37,"190 Maple St, New York City, NY 10001" -278688,Lightning Charging Cable,1,14.95,10/28/19 17:43,"949 13th St, Boston, MA 02215" -278689,USB-C Charging Cable,1,11.95,10/16/19 08:33,"768 8th St, New York City, NY 10001" -278690,27in 4K Gaming Monitor,1,389.99,10/06/19 12:03,"981 Main St, Seattle, WA 98101" -278691,27in 4K Gaming Monitor,1,389.99,10/22/19 13:16,"793 Elm St, San Francisco, CA 94016" -278692,20in Monitor,1,109.99,10/21/19 15:58,"262 10th St, Dallas, TX 75001" -278693,Bose SoundSport Headphones,1,99.99,10/26/19 10:20,"945 Hill St, Boston, MA 02215" -278694,27in FHD Monitor,1,149.99,10/12/19 20:48,"512 Walnut St, Portland, ME 04101" -278695,Wired Headphones,1,11.99,10/13/19 20:50,"778 Lincoln St, Boston, MA 02215" -278696,Wired Headphones,1,11.99,10/14/19 18:21,"943 Jefferson St, Dallas, TX 75001" -278697,Wired Headphones,1,11.99,10/21/19 13:58,"621 North St, Los Angeles, CA 90001" -278697,27in 4K Gaming Monitor,1,389.99,10/21/19 13:58,"621 North St, Los Angeles, CA 90001" -278698,Apple Airpods Headphones,1,150,10/31/19 19:40,"822 Jackson St, Portland, OR 97035" -278699,AAA Batteries (4-pack),1,2.99,10/14/19 13:46,"36 Chestnut St, Seattle, WA 98101" -278700,AA Batteries (4-pack),1,3.84,10/06/19 14:02,"820 Willow St, San Francisco, CA 94016" -278701,34in Ultrawide Monitor,1,379.99,10/10/19 10:32,"71 9th St, New York City, NY 10001" -278702,Flatscreen TV,1,300,10/29/19 21:08,"357 Park St, New York City, NY 10001" -278703,27in 4K Gaming Monitor,1,389.99,10/15/19 08:19,"166 14th St, Dallas, TX 75001" -278704,34in Ultrawide Monitor,1,379.99,10/10/19 15:43,"871 Cherry St, New York City, NY 10001" -278705,AAA Batteries (4-pack),2,2.99,10/15/19 19:35,"196 Sunset St, New York City, NY 10001" -278706,Google Phone,1,600,10/07/19 18:18,"942 11th St, San Francisco, CA 94016" -278706,USB-C Charging Cable,1,11.95,10/07/19 18:18,"942 11th St, San Francisco, CA 94016" -278707,Bose SoundSport Headphones,1,99.99,10/15/19 08:31,"478 South St, San Francisco, CA 94016" -278708,USB-C Charging Cable,1,11.95,10/15/19 14:19,"748 Hickory St, San Francisco, CA 94016" -278709,Bose SoundSport Headphones,1,99.99,10/23/19 13:38,"773 Johnson St, San Francisco, CA 94016" -278710,USB-C Charging Cable,1,11.95,10/13/19 19:05,"183 5th St, San Francisco, CA 94016" -278710,27in FHD Monitor,1,149.99,10/13/19 19:05,"183 5th St, San Francisco, CA 94016" -278711,Macbook Pro Laptop,1,1700,10/12/19 14:46,"707 13th St, Atlanta, GA 30301" -278712,20in Monitor,1,109.99,10/30/19 16:20,"432 12th St, San Francisco, CA 94016" -278713,iPhone,1,700,10/31/19 20:00,"179 Walnut St, San Francisco, CA 94016" -278714,Lightning Charging Cable,1,14.95,10/03/19 02:40,"925 9th St, New York City, NY 10001" -278715,27in FHD Monitor,1,149.99,10/14/19 21:03,"185 2nd St, San Francisco, CA 94016" -278716,27in 4K Gaming Monitor,1,389.99,10/14/19 12:06,"490 Lake St, Portland, ME 04101" -278717,Wired Headphones,2,11.99,10/13/19 19:28,"388 9th St, San Francisco, CA 94016" -278718,USB-C Charging Cable,1,11.95,10/13/19 12:45,"479 Lincoln St, Atlanta, GA 30301" -278718,Bose SoundSport Headphones,1,99.99,10/13/19 12:45,"479 Lincoln St, Atlanta, GA 30301" -278719,AAA Batteries (4-pack),3,2.99,10/28/19 18:31,"382 Forest St, New York City, NY 10001" -278720,Lightning Charging Cable,1,14.95,10/16/19 20:32,"790 Jefferson St, New York City, NY 10001" -278721,Apple Airpods Headphones,1,150,10/07/19 12:55,"992 North St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -278722,20in Monitor,1,109.99,10/17/19 20:17,"327 Hill St, Boston, MA 02215" -278723,AAA Batteries (4-pack),1,2.99,10/08/19 11:29,"336 Lincoln St, Seattle, WA 98101" -278724,USB-C Charging Cable,1,11.95,10/10/19 20:31,"503 11th St, San Francisco, CA 94016" -278725,Wired Headphones,1,11.99,10/26/19 17:03,"633 Jefferson St, Dallas, TX 75001" -278726,Bose SoundSport Headphones,1,99.99,10/11/19 19:32,"826 12th St, San Francisco, CA 94016" -278727,Apple Airpods Headphones,1,150,10/22/19 07:10,"767 West St, Seattle, WA 98101" -278728,LG Washing Machine,1,600.0,10/13/19 00:09,"541 14th St, San Francisco, CA 94016" -278729,Apple Airpods Headphones,1,150,10/20/19 18:49,"21 Ridge St, New York City, NY 10001" -278730,USB-C Charging Cable,1,11.95,10/30/19 09:21,"890 14th St, Seattle, WA 98101" -278731,20in Monitor,1,109.99,10/12/19 23:58,"809 6th St, Seattle, WA 98101" -278732,Wired Headphones,1,11.99,10/10/19 16:10,"717 Walnut St, Boston, MA 02215" -278733,iPhone,1,700,10/25/19 19:01,"222 7th St, Seattle, WA 98101" -278734,Google Phone,1,600,10/07/19 14:03,"83 12th St, San Francisco, CA 94016" -278735,Macbook Pro Laptop,1,1700,10/18/19 13:18,"284 Jackson St, Seattle, WA 98101" -278736,AA Batteries (4-pack),1,3.84,10/03/19 09:05,"878 14th St, Los Angeles, CA 90001" -278737,Bose SoundSport Headphones,1,99.99,10/07/19 23:00,"138 Jackson St, San Francisco, CA 94016" -278738,ThinkPad Laptop,1,999.99,10/16/19 18:40,"679 West St, Boston, MA 02215" -278739,Lightning Charging Cable,1,14.95,10/11/19 15:53,"55 Adams St, Los Angeles, CA 90001" -278740,iPhone,1,700,10/13/19 09:28,"383 Park St, New York City, NY 10001" -278741,AA Batteries (4-pack),1,3.84,10/15/19 05:19,"353 Wilson St, Austin, TX 73301" -278742,Wired Headphones,1,11.99,10/21/19 16:05,"791 Main St, Los Angeles, CA 90001" -278743,USB-C Charging Cable,1,11.95,10/11/19 10:55,"326 7th St, Austin, TX 73301" -278744,20in Monitor,1,109.99,10/28/19 12:52,"970 8th St, Boston, MA 02215" -278745,34in Ultrawide Monitor,1,379.99,10/26/19 12:39,"311 Pine St, New York City, NY 10001" -278746,Bose SoundSport Headphones,1,99.99,10/11/19 20:11,"219 Lake St, Austin, TX 73301" -278747,27in FHD Monitor,1,149.99,10/08/19 19:56,"223 Johnson St, Seattle, WA 98101" -278748,Flatscreen TV,1,300,10/30/19 11:16,"96 Lake St, San Francisco, CA 94016" -278749,Vareebadd Phone,1,400,10/26/19 22:41,"311 Cherry St, Los Angeles, CA 90001" -278750,Apple Airpods Headphones,1,150,10/19/19 11:47,"194 Pine St, New York City, NY 10001" -278751,Wired Headphones,2,11.99,10/31/19 07:49,"372 Hill St, Boston, MA 02215" -278752,Apple Airpods Headphones,1,150,10/13/19 16:48,"778 South St, New York City, NY 10001" -278753,AA Batteries (4-pack),1,3.84,10/16/19 22:59,"81 Lincoln St, Los Angeles, CA 90001" -278754,34in Ultrawide Monitor,1,379.99,10/30/19 19:54,"798 Lincoln St, Austin, TX 73301" -278755,Wired Headphones,2,11.99,10/05/19 12:35,"507 Ridge St, Los Angeles, CA 90001" -278756,Lightning Charging Cable,1,14.95,10/04/19 14:09,"44 Johnson St, San Francisco, CA 94016" -278757,AAA Batteries (4-pack),1,2.99,10/23/19 11:17,"598 Madison St, Boston, MA 02215" -278758,34in Ultrawide Monitor,1,379.99,10/13/19 18:39,"804 Willow St, Seattle, WA 98101" -278759,Wired Headphones,1,11.99,10/31/19 20:50,"967 South St, Seattle, WA 98101" -278760,AA Batteries (4-pack),1,3.84,10/14/19 20:11,"660 Dogwood St, New York City, NY 10001" -278761,Apple Airpods Headphones,1,150,10/07/19 17:29,"752 Park St, New York City, NY 10001" -278762,Wired Headphones,2,11.99,10/19/19 23:09,"925 9th St, San Francisco, CA 94016" -278763,Macbook Pro Laptop,1,1700,10/04/19 10:48,"165 8th St, Austin, TX 73301" -278764,27in FHD Monitor,1,149.99,10/21/19 13:14,"167 Adams St, Seattle, WA 98101" -278765,Lightning Charging Cable,1,14.95,10/09/19 09:21,"750 12th St, Atlanta, GA 30301" -278766,USB-C Charging Cable,1,11.95,10/26/19 16:02,"672 Washington St, San Francisco, CA 94016" -278767,Apple Airpods Headphones,1,150,10/31/19 18:49,"738 5th St, San Francisco, CA 94016" -278768,Lightning Charging Cable,1,14.95,10/20/19 19:09,"868 South St, New York City, NY 10001" -278769,AA Batteries (4-pack),1,3.84,10/11/19 13:19,"593 Park St, Portland, OR 97035" -278770,Bose SoundSport Headphones,1,99.99,10/14/19 12:34,"652 Meadow St, New York City, NY 10001" -278771,27in FHD Monitor,1,149.99,10/08/19 11:21,"364 7th St, San Francisco, CA 94016" -278772,20in Monitor,1,109.99,10/20/19 08:59,"181 North St, New York City, NY 10001" -278773,LG Washing Machine,1,600.0,10/30/19 21:34,"843 North St, Boston, MA 02215" -278774,Macbook Pro Laptop,1,1700,10/16/19 20:42,"102 8th St, Los Angeles, CA 90001" -278775,20in Monitor,1,109.99,10/13/19 12:00,"400 Hickory St, San Francisco, CA 94016" -278776,USB-C Charging Cable,1,11.95,10/26/19 20:28,"243 Lake St, San Francisco, CA 94016" -278777,USB-C Charging Cable,1,11.95,10/19/19 14:13,"164 Meadow St, Atlanta, GA 30301" -278778,AAA Batteries (4-pack),2,2.99,10/09/19 11:49,"571 Washington St, Atlanta, GA 30301" -278779,USB-C Charging Cable,1,11.95,10/12/19 21:04,"43 12th St, Los Angeles, CA 90001" -278780,Bose SoundSport Headphones,1,99.99,10/19/19 11:44,"174 Lincoln St, Los Angeles, CA 90001" -278781,20in Monitor,1,109.99,10/28/19 22:07,"112 Willow St, Seattle, WA 98101" -278782,USB-C Charging Cable,1,11.95,10/24/19 14:03,"53 5th St, Boston, MA 02215" -278783,Lightning Charging Cable,1,14.95,10/06/19 21:05,"895 Elm St, Austin, TX 73301" -278784,Macbook Pro Laptop,1,1700,10/21/19 11:53,"918 Pine St, San Francisco, CA 94016" -278785,AA Batteries (4-pack),1,3.84,10/03/19 11:51,"841 Cedar St, San Francisco, CA 94016" -278786,Bose SoundSport Headphones,1,99.99,10/11/19 16:57,"231 Hickory St, Atlanta, GA 30301" -278787,iPhone,1,700,10/23/19 17:06,"51 South St, Atlanta, GA 30301" -278788,Lightning Charging Cable,1,14.95,10/26/19 10:14,"347 4th St, San Francisco, CA 94016" -278789,Wired Headphones,1,11.99,10/22/19 08:52,"617 Walnut St, Boston, MA 02215" -278790,USB-C Charging Cable,1,11.95,10/26/19 10:58,"181 8th St, Boston, MA 02215" -278791,AAA Batteries (4-pack),1,2.99,10/18/19 13:08,"537 Hill St, San Francisco, CA 94016" -278792,AA Batteries (4-pack),1,3.84,10/12/19 04:32,"920 Adams St, San Francisco, CA 94016" -278793,Wired Headphones,1,11.99,10/28/19 22:00,"161 Chestnut St, Los Angeles, CA 90001" -278794,AA Batteries (4-pack),1,3.84,10/09/19 20:58,"346 Spruce St, San Francisco, CA 94016" -278795,iPhone,1,700,10/31/19 17:21,"291 Hill St, Seattle, WA 98101" -278796,Wired Headphones,1,11.99,10/13/19 11:20,"547 Jefferson St, Los Angeles, CA 90001" -248151,AA Batteries (4-pack),4,3.84,09/17/19 14:44,"380 North St, Los Angeles, CA 90001" -248152,USB-C Charging Cable,2,11.95,09/29/19 10:19,"511 8th St, Austin, TX 73301" -248153,USB-C Charging Cable,1,11.95,09/16/19 17:48,"151 Johnson St, Los Angeles, CA 90001" -248154,27in FHD Monitor,1,149.99,09/27/19 07:52,"355 Hickory St, Seattle, WA 98101" -248155,USB-C Charging Cable,1,11.95,09/01/19 19:03,"125 5th St, Atlanta, GA 30301" -248156,34in Ultrawide Monitor,1,379.99,09/13/19 14:59,"469 12th St, Los Angeles, CA 90001" -248157,Lightning Charging Cable,1,14.95,09/07/19 09:59,"773 Johnson St, Portland, ME 04101" -248158,Lightning Charging Cable,1,14.95,09/02/19 14:16,"682 Sunset St, Los Angeles, CA 90001" -248159,Vareebadd Phone,1,400.0,09/06/19 16:45,"664 Wilson St, New York City, NY 10001" -248160,Wired Headphones,1,11.99,09/01/19 22:03,"446 9th St, San Francisco, CA 94016" -248161,USB-C Charging Cable,1,11.95,09/24/19 16:26,"439 Spruce St, San Francisco, CA 94016" -248162,AAA Batteries (4-pack),3,2.99,09/14/19 12:52,"439 Walnut St, Seattle, WA 98101" -248163,USB-C Charging Cable,1,11.95,09/25/19 12:32,"41 North St, Portland, OR 97035" -248164,27in FHD Monitor,1,149.99,09/12/19 15:57,"88 9th St, San Francisco, CA 94016" -248165,Lightning Charging Cable,1,14.95,09/15/19 12:42,"585 Adams St, Atlanta, GA 30301" -248166,Apple Airpods Headphones,1,150.0,09/04/19 14:59,"21 9th St, Boston, MA 02215" -248167,Google Phone,1,600.0,09/02/19 18:52,"711 Forest St, San Francisco, CA 94016" -248168,USB-C Charging Cable,1,11.95,09/30/19 18:59,"219 Hickory St, San Francisco, CA 94016" -248169,20in Monitor,1,109.99,09/24/19 19:40,"140 Ridge St, San Francisco, CA 94016" -248170,AAA Batteries (4-pack),1,2.99,09/04/19 02:01,"857 Main St, Boston, MA 02215" -248171,USB-C Charging Cable,1,11.95,09/05/19 15:06,"705 Hill St, New York City, NY 10001" -248171,USB-C Charging Cable,1,11.95,09/05/19 15:06,"705 Hill St, New York City, NY 10001" -248172,Wired Headphones,1,11.99,09/13/19 16:49,"820 Hill St, Boston, MA 02215" -248173,Apple Airpods Headphones,1,150.0,09/14/19 20:47,"789 Lake St, Atlanta, GA 30301" -248174,Bose SoundSport Headphones,1,99.99,09/17/19 22:57,"385 Washington St, Dallas, TX 75001" -248175,iPhone,1,700.0,09/08/19 13:58,"736 4th St, Austin, TX 73301" -248176,AA Batteries (4-pack),2,3.84,09/12/19 13:18,"177 Sunset St, San Francisco, CA 94016" -248177,USB-C Charging Cable,1,11.95,09/24/19 20:36,"452 Adams St, San Francisco, CA 94016" -248178,Apple Airpods Headphones,1,150.0,09/03/19 21:52,"725 Jefferson St, Los Angeles, CA 90001" -248179,27in FHD Monitor,1,149.99,09/13/19 15:06,"510 Hickory St, New York City, NY 10001" -248180,USB-C Charging Cable,1,11.95,09/28/19 15:52,"99 Ridge St, New York City, NY 10001" -248181,Apple Airpods Headphones,1,150.0,09/08/19 12:40,"81 Spruce St, New York City, NY 10001" -248182,Apple Airpods Headphones,1,150.0,09/15/19 13:03,"950 West St, New York City, NY 10001" -248183,34in Ultrawide Monitor,1,379.99,09/18/19 17:47,"968 Ridge St, San Francisco, CA 94016" -248184,AA Batteries (4-pack),1,3.84,09/07/19 11:23,"948 Main St, New York City, NY 10001" -248185,34in Ultrawide Monitor,1,379.99,09/17/19 15:10,"967 Center St, New York City, NY 10001" -248186,USB-C Charging Cable,1,11.95,09/05/19 13:53,"318 Cherry St, Seattle, WA 98101" -248187,AAA Batteries (4-pack),3,2.99,09/07/19 23:31,"173 Elm St, Los Angeles, CA 90001" -248188,Apple Airpods Headphones,1,150.0,09/08/19 22:17,"136 12th St, San Francisco, CA 94016" -248189,Google Phone,1,600.0,09/14/19 12:45,"726 8th St, San Francisco, CA 94016" -248190,Bose SoundSport Headphones,1,99.99,09/24/19 21:47,"350 Lincoln St, New York City, NY 10001" -248191,AAA Batteries (4-pack),1,2.99,09/22/19 11:25,"446 2nd St, San Francisco, CA 94016" -248192,AAA Batteries (4-pack),2,2.99,09/21/19 09:16,"444 North St, Austin, TX 73301" -248193,USB-C Charging Cable,1,11.95,09/05/19 00:40,"867 Hill St, San Francisco, CA 94016" -248194,20in Monitor,1,109.99,09/29/19 20:50,"519 Cherry St, Dallas, TX 75001" -248195,ThinkPad Laptop,1,999.99,09/10/19 23:29,"631 6th St, Dallas, TX 75001" -248196,Lightning Charging Cable,1,14.95,09/29/19 21:56,"608 Spruce St, Dallas, TX 75001" -248197,Apple Airpods Headphones,1,150.0,09/02/19 19:39,"339 Highland St, Portland, OR 97035" -248198,AAA Batteries (4-pack),1,2.99,09/10/19 00:06,"200 Wilson St, Portland, OR 97035" -248199,Google Phone,1,600.0,09/11/19 12:47,"780 4th St, Boston, MA 02215" -248200,Lightning Charging Cable,1,14.95,09/28/19 09:11,"208 Main St, Atlanta, GA 30301" -248201,Bose SoundSport Headphones,1,99.99,09/26/19 07:40,"606 North St, New York City, NY 10001" -248202,27in FHD Monitor,1,149.99,09/28/19 14:30,"392 10th St, Los Angeles, CA 90001" -248203,Apple Airpods Headphones,1,150.0,09/21/19 08:58,"732 Park St, New York City, NY 10001" -248204,Macbook Pro Laptop,1,1700.0,09/02/19 18:42,"940 Madison St, Seattle, WA 98101" -248205,AA Batteries (4-pack),3,3.84,09/06/19 14:09,"353 Lake St, Atlanta, GA 30301" -248206,AAA Batteries (4-pack),1,2.99,09/30/19 21:51,"414 7th St, San Francisco, CA 94016" -248207,Flatscreen TV,1,300.0,09/05/19 14:15,"636 13th St, Los Angeles, CA 90001" -248208,Macbook Pro Laptop,1,1700.0,09/11/19 19:30,"22 7th St, Portland, ME 04101" -248209,Apple Airpods Headphones,1,150.0,09/14/19 20:38,"477 Church St, San Francisco, CA 94016" -248210,iPhone,1,700.0,09/27/19 10:33,"292 Washington St, San Francisco, CA 94016" -248210,Lightning Charging Cable,1,14.95,09/27/19 10:33,"292 Washington St, San Francisco, CA 94016" -248211,AA Batteries (4-pack),1,3.84,09/26/19 09:09,"602 4th St, San Francisco, CA 94016" -248212,USB-C Charging Cable,3,11.95,09/20/19 16:34,"244 Jefferson St, Boston, MA 02215" -248213,27in 4K Gaming Monitor,1,389.99,09/22/19 19:52,"852 Dogwood St, Los Angeles, CA 90001" -248214,Lightning Charging Cable,1,14.95,09/16/19 17:51,"213 West St, San Francisco, CA 94016" -248215,34in Ultrawide Monitor,1,379.99,09/24/19 13:36,"876 Maple St, San Francisco, CA 94016" -248216,AAA Batteries (4-pack),1,2.99,09/19/19 16:43,"394 Madison St, San Francisco, CA 94016" -248217,Apple Airpods Headphones,1,150.0,09/29/19 11:54,"539 Forest St, Boston, MA 02215" -248218,AA Batteries (4-pack),1,3.84,09/16/19 20:56,"258 Forest St, New York City, NY 10001" -248219,Bose SoundSport Headphones,1,99.99,09/24/19 12:48,"665 Maple St, Los Angeles, CA 90001" -248219,Google Phone,1,600.0,09/24/19 12:48,"665 Maple St, Los Angeles, CA 90001" -248220,Lightning Charging Cable,2,14.95,09/18/19 10:33,"751 Johnson St, San Francisco, CA 94016" -248221,AA Batteries (4-pack),1,3.84,09/08/19 07:13,"425 4th St, Los Angeles, CA 90001" -248222,Lightning Charging Cable,1,14.95,09/22/19 22:10,"139 Ridge St, San Francisco, CA 94016" -248223,20in Monitor,1,109.99,09/07/19 20:39,"350 11th St, Seattle, WA 98101" -248224,AAA Batteries (4-pack),2,2.99,09/24/19 14:36,"523 Wilson St, New York City, NY 10001" -248225,Lightning Charging Cable,1,14.95,09/30/19 13:11,"414 12th St, San Francisco, CA 94016" -248226,Wired Headphones,1,11.99,09/23/19 17:50,"316 10th St, Boston, MA 02215" -248227,Lightning Charging Cable,1,14.95,09/07/19 17:23,"182 Hickory St, Austin, TX 73301" -248228,Lightning Charging Cable,1,14.95,09/26/19 19:18,"956 Sunset St, Boston, MA 02215" -248229,Wired Headphones,1,11.99,09/08/19 22:29,"191 Spruce St, San Francisco, CA 94016" -248230,AA Batteries (4-pack),1,3.84,09/14/19 23:11,"939 1st St, San Francisco, CA 94016" -248231,Flatscreen TV,1,300.0,09/20/19 11:14,"753 2nd St, Los Angeles, CA 90001" -248232,Lightning Charging Cable,1,14.95,09/11/19 05:25,"339 Willow St, Los Angeles, CA 90001" -248233,AAA Batteries (4-pack),1,2.99,09/28/19 12:24,"192 Jackson St, Dallas, TX 75001" -248234,34in Ultrawide Monitor,1,379.99,09/05/19 10:46,"855 Forest St, San Francisco, CA 94016" -248235,Lightning Charging Cable,1,14.95,09/26/19 20:16,"374 Cherry St, San Francisco, CA 94016" -248236,Lightning Charging Cable,1,14.95,09/13/19 15:34,"429 Wilson St, Boston, MA 02215" -248237,Wired Headphones,1,11.99,09/23/19 22:15,"255 9th St, New York City, NY 10001" -248238,Wired Headphones,1,11.99,09/04/19 12:59,"741 11th St, Los Angeles, CA 90001" -248239,Wired Headphones,1,11.99,09/13/19 21:31,"276 11th St, Los Angeles, CA 90001" -248240,AAA Batteries (4-pack),1,2.99,09/28/19 15:16,"823 Meadow St, San Francisco, CA 94016" -248241,AA Batteries (4-pack),2,3.84,09/22/19 16:12,"210 Maple St, Seattle, WA 98101" -248242,Lightning Charging Cable,2,14.95,09/13/19 19:21,"832 Johnson St, San Francisco, CA 94016" -248243,USB-C Charging Cable,1,11.95,09/04/19 10:49,"522 12th St, San Francisco, CA 94016" -248244,Lightning Charging Cable,1,14.95,09/21/19 16:01,"57 Willow St, Dallas, TX 75001" -248245,Wired Headphones,1,11.99,09/15/19 10:40,"969 Maple St, Dallas, TX 75001" -248246,Wired Headphones,1,11.99,09/11/19 20:13,"727 Center St, Los Angeles, CA 90001" -248247,27in 4K Gaming Monitor,1,389.99,09/09/19 23:35,"192 7th St, New York City, NY 10001" -248248,Apple Airpods Headphones,1,150.0,09/14/19 15:12,"769 6th St, New York City, NY 10001" -248249,AA Batteries (4-pack),1,3.84,09/10/19 16:32,"428 Center St, Seattle, WA 98101" -248250,iPhone,1,700.0,09/05/19 18:09,"374 Ridge St, Seattle, WA 98101" -248251,Vareebadd Phone,1,400.0,09/22/19 05:16,"652 West St, Dallas, TX 75001" -248252,AA Batteries (4-pack),1,3.84,09/19/19 01:13,"565 Sunset St, Dallas, TX 75001" -248253,Bose SoundSport Headphones,1,99.99,09/13/19 20:41,"296 Highland St, Atlanta, GA 30301" -248254,AAA Batteries (4-pack),2,2.99,09/19/19 18:35,"353 Madison St, San Francisco, CA 94016" -248255,Bose SoundSport Headphones,1,99.99,09/02/19 12:37,"240 Cedar St, Seattle, WA 98101" -248256,Wired Headphones,1,11.99,09/03/19 16:37,"384 Maple St, San Francisco, CA 94016" -248257,USB-C Charging Cable,2,11.95,09/10/19 09:51,"337 11th St, Boston, MA 02215" -248258,Macbook Pro Laptop,1,1700.0,09/21/19 09:57,"535 2nd St, Los Angeles, CA 90001" -248259,USB-C Charging Cable,1,11.95,09/14/19 20:33,"814 Lakeview St, Los Angeles, CA 90001" -248260,Apple Airpods Headphones,1,150.0,09/26/19 15:16,"998 Adams St, Portland, ME 04101" -248261,AAA Batteries (4-pack),2,2.99,09/04/19 06:21,"582 Elm St, San Francisco, CA 94016" -248262,20in Monitor,1,109.99,09/11/19 11:44,"100 Jefferson St, Seattle, WA 98101" -248263,34in Ultrawide Monitor,1,379.99,09/30/19 05:37,"327 Forest St, New York City, NY 10001" -248264,Bose SoundSport Headphones,1,99.99,09/05/19 19:59,"505 Elm St, Dallas, TX 75001" -248265,Vareebadd Phone,1,400.0,09/24/19 14:07,"939 14th St, San Francisco, CA 94016" -248265,Bose SoundSport Headphones,1,99.99,09/24/19 14:07,"939 14th St, San Francisco, CA 94016" -248266,27in 4K Gaming Monitor,1,389.99,09/28/19 23:20,"685 Cherry St, Dallas, TX 75001" -248267,Macbook Pro Laptop,1,1700.0,09/09/19 18:59,"147 Lakeview St, Los Angeles, CA 90001" -248268,Lightning Charging Cable,1,14.95,09/25/19 17:54,"341 Jefferson St, Los Angeles, CA 90001" -248269,Lightning Charging Cable,1,14.95,09/18/19 22:23,"566 Spruce St, Atlanta, GA 30301" -248270,USB-C Charging Cable,1,11.95,09/08/19 11:04,"82 Meadow St, San Francisco, CA 94016" -248271,34in Ultrawide Monitor,1,379.99,09/09/19 15:33,"871 Lincoln St, Boston, MA 02215" -248272,ThinkPad Laptop,1,999.99,09/01/19 11:11,"246 Hill St, Dallas, TX 75001" -248273,AA Batteries (4-pack),1,3.84,09/02/19 08:09,"30 Meadow St, Seattle, WA 98101" -248274,AA Batteries (4-pack),1,3.84,09/27/19 21:49,"418 River St, Boston, MA 02215" -248275,Apple Airpods Headphones,1,150.0,09/18/19 19:05,"530 Main St, Dallas, TX 75001" -248276,iPhone,1,700.0,09/22/19 17:13,"620 North St, New York City, NY 10001" -248277,Macbook Pro Laptop,1,1700.0,09/28/19 12:58,"391 Hill St, New York City, NY 10001" -248278,Wired Headphones,1,11.99,09/09/19 13:02,"811 14th St, Dallas, TX 75001" -248279,Bose SoundSport Headphones,1,99.99,09/25/19 22:43,"322 13th St, Atlanta, GA 30301" -248280,27in FHD Monitor,1,149.99,09/30/19 15:16,"129 Dogwood St, Los Angeles, CA 90001" -248281,Wired Headphones,1,11.99,09/05/19 16:19,"385 8th St, Los Angeles, CA 90001" -248282,Apple Airpods Headphones,1,150.0,09/01/19 22:13,"941 7th St, Boston, MA 02215" -248283,Apple Airpods Headphones,1,150.0,09/10/19 14:13,"687 4th St, Atlanta, GA 30301" -248284,27in 4K Gaming Monitor,1,389.99,09/22/19 04:36,"801 12th St, Los Angeles, CA 90001" -248285,Apple Airpods Headphones,1,150.0,09/30/19 21:10,"134 5th St, Portland, OR 97035" -248286,Wired Headphones,1,11.99,09/17/19 22:10,"806 Lake St, New York City, NY 10001" -248287,Bose SoundSport Headphones,1,99.99,09/26/19 12:02,"375 River St, Portland, OR 97035" -248288,Bose SoundSport Headphones,1,99.99,09/02/19 09:11,"360 4th St, San Francisco, CA 94016" -248289,Wired Headphones,1,11.99,09/11/19 12:35,"566 Main St, Dallas, TX 75001" -248290,AA Batteries (4-pack),1,3.84,09/06/19 21:18,"283 West St, San Francisco, CA 94016" -248291,Apple Airpods Headphones,1,150.0,09/14/19 10:31,"556 Forest St, San Francisco, CA 94016" -248292,Wired Headphones,2,11.99,09/16/19 13:00,"832 West St, San Francisco, CA 94016" -248293,Macbook Pro Laptop,1,1700.0,09/02/19 16:53,"967 4th St, New York City, NY 10001" -248294,Macbook Pro Laptop,1,1700.0,09/07/19 17:08,"165 North St, Portland, OR 97035" -248295,Macbook Pro Laptop,1,1700.0,09/26/19 23:33,"999 North St, San Francisco, CA 94016" -248296,AA Batteries (4-pack),1,3.84,09/17/19 16:39,"342 Hill St, Boston, MA 02215" -248297,AAA Batteries (4-pack),2,2.99,09/08/19 00:07,"358 Willow St, San Francisco, CA 94016" -248298,AA Batteries (4-pack),1,3.84,09/20/19 21:15,"278 North St, Atlanta, GA 30301" -248299,Lightning Charging Cable,1,14.95,09/22/19 20:16,"72 7th St, Portland, OR 97035" -248300,AAA Batteries (4-pack),1,2.99,09/01/19 16:57,"160 7th St, Boston, MA 02215" -248301,AAA Batteries (4-pack),2,2.99,09/05/19 10:38,"465 7th St, New York City, NY 10001" -248302,27in 4K Gaming Monitor,1,389.99,09/08/19 08:52,"787 Hickory St, Boston, MA 02215" -248303,20in Monitor,1,109.99,09/17/19 19:50,"3 Hickory St, Dallas, TX 75001" -248304,AAA Batteries (4-pack),1,2.99,09/21/19 09:10,"445 Walnut St, Atlanta, GA 30301" -248305,Lightning Charging Cable,1,14.95,09/01/19 13:05,"334 14th St, Boston, MA 02215" -248306,USB-C Charging Cable,1,11.95,09/15/19 13:44,"38 2nd St, New York City, NY 10001" -248307,Wired Headphones,1,11.99,09/04/19 20:15,"262 4th St, San Francisco, CA 94016" -248308,27in 4K Gaming Monitor,1,389.99,09/12/19 18:10,"783 Lake St, Los Angeles, CA 90001" -248309,iPhone,1,700.0,09/07/19 14:27,"137 1st St, Seattle, WA 98101" -248310,iPhone,1,700.0,09/05/19 21:00,"201 Spruce St, Austin, TX 73301" -248311,AA Batteries (4-pack),1,3.84,09/21/19 18:09,"532 12th St, Los Angeles, CA 90001" -248312,USB-C Charging Cable,1,11.95,09/14/19 16:29,"613 Madison St, New York City, NY 10001" -248313,Lightning Charging Cable,1,14.95,09/25/19 16:39,"212 Church St, Los Angeles, CA 90001" -248314,Wired Headphones,1,11.99,09/20/19 14:54,"349 12th St, Atlanta, GA 30301" -248315,Wired Headphones,1,11.99,09/13/19 09:07,"157 Madison St, San Francisco, CA 94016" -248316,Lightning Charging Cable,1,14.95,09/15/19 16:11,"479 Park St, San Francisco, CA 94016" -248317,AAA Batteries (4-pack),1,2.99,09/17/19 18:35,"237 Spruce St, Portland, ME 04101" -248318,Google Phone,1,600.0,09/24/19 12:43,"165 Hill St, Austin, TX 73301" -248319,AAA Batteries (4-pack),3,2.99,09/03/19 14:58,"389 4th St, Seattle, WA 98101" -248320,Apple Airpods Headphones,1,150.0,09/10/19 22:49,"343 Lakeview St, Atlanta, GA 30301" -248321,Bose SoundSport Headphones,1,99.99,09/08/19 00:42,"351 Highland St, Seattle, WA 98101" -248322,AA Batteries (4-pack),2,3.84,09/13/19 15:08,"279 Hill St, San Francisco, CA 94016" -248323,Google Phone,1,600.0,09/30/19 20:36,"725 10th St, Portland, OR 97035" -248323,Bose SoundSport Headphones,1,99.99,09/30/19 20:36,"725 10th St, Portland, OR 97035" -248324,20in Monitor,1,109.99,09/12/19 23:11,"728 Hickory St, Dallas, TX 75001" -248325,Lightning Charging Cable,1,14.95,09/14/19 16:10,"859 9th St, San Francisco, CA 94016" -248326,Apple Airpods Headphones,1,150.0,09/18/19 06:53,"283 2nd St, New York City, NY 10001" -248327,34in Ultrawide Monitor,1,379.99,09/14/19 12:05,"52 13th St, San Francisco, CA 94016" -248328,Apple Airpods Headphones,1,150.0,09/26/19 14:27,"191 Willow St, San Francisco, CA 94016" -248329,Vareebadd Phone,1,400.0,09/02/19 15:56,"472 11th St, Austin, TX 73301" -248329,Wired Headphones,1,11.99,09/02/19 15:56,"472 11th St, Austin, TX 73301" -248330,AAA Batteries (4-pack),1,2.99,09/12/19 14:40,"862 Cedar St, Seattle, WA 98101" -248331,iPhone,1,700.0,09/02/19 17:38,"642 2nd St, San Francisco, CA 94016" -248331,Lightning Charging Cable,1,14.95,09/02/19 17:38,"642 2nd St, San Francisco, CA 94016" -248331,Apple Airpods Headphones,1,150.0,09/02/19 17:38,"642 2nd St, San Francisco, CA 94016" -248332,Apple Airpods Headphones,1,150.0,09/08/19 11:16,"57 South St, Seattle, WA 98101" -248333,Flatscreen TV,1,300.0,09/05/19 16:47,"622 Lakeview St, Los Angeles, CA 90001" -248334,Lightning Charging Cable,1,14.95,09/17/19 09:40,"847 Park St, Atlanta, GA 30301" -248335,Apple Airpods Headphones,1,150.0,09/17/19 23:07,"791 South St, New York City, NY 10001" -248336,Apple Airpods Headphones,1,150.0,09/27/19 19:52,"47 Willow St, Atlanta, GA 30301" -248337,AA Batteries (4-pack),1,3.84,09/08/19 19:04,"739 Cedar St, Portland, OR 97035" -248338,USB-C Charging Cable,1,11.95,09/16/19 10:48,"811 12th St, Boston, MA 02215" -248339,Bose SoundSport Headphones,1,99.99,09/08/19 21:04,"723 North St, San Francisco, CA 94016" -248340,AAA Batteries (4-pack),1,2.99,09/13/19 20:08,"896 12th St, Seattle, WA 98101" -,,,,, -248341,USB-C Charging Cable,1,11.95,09/18/19 11:39,"755 5th St, Los Angeles, CA 90001" -248342,Apple Airpods Headphones,1,150,09/11/19 00:43,"922 Elm St, New York City, NY 10001" -248343,USB-C Charging Cable,1,11.95,09/24/19 22:33,"732 Spruce St, Atlanta, GA 30301" -248344,Wired Headphones,1,11.99,09/29/19 09:48,"749 Center St, New York City, NY 10001" -248345,USB-C Charging Cable,1,11.95,09/30/19 19:08,"853 2nd St, Atlanta, GA 30301" -248346,Lightning Charging Cable,1,14.95,09/06/19 03:22,"855 Chestnut St, Los Angeles, CA 90001" -248347,AA Batteries (4-pack),1,3.84,09/19/19 13:30,"187 8th St, New York City, NY 10001" -248348,AA Batteries (4-pack),1,3.84,09/25/19 12:28,"649 North St, San Francisco, CA 94016" -248349,Bose SoundSport Headphones,1,99.99,09/05/19 20:31,"722 12th St, Boston, MA 02215" -248350,iPhone,1,700,09/30/19 19:33,"717 12th St, Los Angeles, CA 90001" -248351,27in 4K Gaming Monitor,1,389.99,09/17/19 18:32,"853 Jackson St, New York City, NY 10001" -248352,Macbook Pro Laptop,1,1700,09/18/19 05:26,"987 Chestnut St, New York City, NY 10001" -248353,Wired Headphones,1,11.99,09/11/19 15:10,"965 7th St, Atlanta, GA 30301" -248354,Macbook Pro Laptop,1,1700,09/21/19 11:54,"514 11th St, Atlanta, GA 30301" -248355,Apple Airpods Headphones,1,150,09/23/19 12:32,"647 Hickory St, New York City, NY 10001" -248356,USB-C Charging Cable,2,11.95,09/21/19 15:29,"41 Main St, San Francisco, CA 94016" -248357,Lightning Charging Cable,1,14.95,09/27/19 19:15,"7 13th St, Atlanta, GA 30301" -248358,USB-C Charging Cable,1,11.95,09/18/19 01:33,"380 Park St, Portland, ME 04101" -248359,Apple Airpods Headphones,1,150,09/27/19 12:35,"176 Jefferson St, San Francisco, CA 94016" -248360,Bose SoundSport Headphones,2,99.99,09/01/19 08:46,"872 North St, San Francisco, CA 94016" -248361,Wired Headphones,1,11.99,09/01/19 10:09,"872 Lake St, San Francisco, CA 94016" -248362,Apple Airpods Headphones,1,150,09/26/19 10:45,"620 10th St, New York City, NY 10001" -248363,34in Ultrawide Monitor,1,379.99,09/29/19 21:35,"182 Maple St, Los Angeles, CA 90001" -248364,27in FHD Monitor,1,149.99,09/13/19 10:47,"535 7th St, New York City, NY 10001" -248365,Google Phone,1,600,09/04/19 19:37,"930 Forest St, Dallas, TX 75001" -248366,Bose SoundSport Headphones,1,99.99,09/29/19 13:17,"158 Lake St, San Francisco, CA 94016" -248367,iPhone,1,700,09/29/19 19:44,"31 Madison St, Atlanta, GA 30301" -248368,AAA Batteries (4-pack),3,2.99,09/19/19 07:55,"552 Hickory St, San Francisco, CA 94016" -248369,USB-C Charging Cable,1,11.95,09/02/19 21:35,"377 Hill St, Los Angeles, CA 90001" -248370,34in Ultrawide Monitor,1,379.99,09/07/19 09:40,"825 Lincoln St, Seattle, WA 98101" -248371,Wired Headphones,1,11.99,09/14/19 09:50,"378 10th St, Boston, MA 02215" -248372,Lightning Charging Cable,1,14.95,09/09/19 20:39,"906 1st St, Atlanta, GA 30301" -248373,USB-C Charging Cable,1,11.95,09/02/19 13:48,"590 Jackson St, New York City, NY 10001" -248374,AA Batteries (4-pack),1,3.84,09/20/19 20:35,"674 Elm St, San Francisco, CA 94016" -248375,AA Batteries (4-pack),2,3.84,09/03/19 12:37,"875 Wilson St, Boston, MA 02215" -248376,20in Monitor,1,109.99,09/22/19 15:14,"982 Adams St, San Francisco, CA 94016" -248377,USB-C Charging Cable,1,11.95,09/13/19 14:05,"965 Center St, Los Angeles, CA 90001" -248378,Lightning Charging Cable,1,14.95,09/12/19 06:19,"662 Walnut St, Los Angeles, CA 90001" -248379,AAA Batteries (4-pack),1,2.99,09/29/19 13:31,"244 2nd St, Portland, ME 04101" -248380,AAA Batteries (4-pack),1,2.99,09/28/19 16:09,"937 Ridge St, New York City, NY 10001" -248381,Bose SoundSport Headphones,1,99.99,09/29/19 14:51,"511 Chestnut St, San Francisco, CA 94016" -248381,34in Ultrawide Monitor,1,379.99,09/29/19 14:51,"511 Chestnut St, San Francisco, CA 94016" -248382,AAA Batteries (4-pack),1,2.99,09/10/19 20:08,"383 Meadow St, San Francisco, CA 94016" -248383,Wired Headphones,1,11.99,09/14/19 23:15,"854 Ridge St, Boston, MA 02215" -248384,20in Monitor,1,109.99,09/17/19 12:48,"202 9th St, San Francisco, CA 94016" -248385,AAA Batteries (4-pack),1,2.99,09/10/19 09:33,"488 Lakeview St, San Francisco, CA 94016" -248386,Wired Headphones,1,11.99,09/06/19 15:27,"771 Hill St, New York City, NY 10001" -248387,AAA Batteries (4-pack),1,2.99,09/02/19 13:32,"534 13th St, Los Angeles, CA 90001" -248388,Lightning Charging Cable,1,14.95,09/02/19 17:35,"508 Chestnut St, Los Angeles, CA 90001" -248389,LG Dryer,1,600.0,09/14/19 08:40,"850 5th St, San Francisco, CA 94016" -248390,Lightning Charging Cable,1,14.95,09/26/19 12:19,"181 12th St, Portland, OR 97035" -248391,Bose SoundSport Headphones,1,99.99,09/07/19 13:09,"159 1st St, San Francisco, CA 94016" -248392,Lightning Charging Cable,1,14.95,09/23/19 11:50,"492 Hickory St, Boston, MA 02215" -248393,Lightning Charging Cable,1,14.95,09/25/19 07:18,"406 Jackson St, Seattle, WA 98101" -248394,Lightning Charging Cable,3,14.95,09/17/19 09:20,"520 11th St, Dallas, TX 75001" -248395,Vareebadd Phone,1,400,09/20/19 19:06,"872 Pine St, New York City, NY 10001" -248396,Macbook Pro Laptop,1,1700,09/11/19 20:20,"284 Madison St, New York City, NY 10001" -248397,Wired Headphones,1,11.99,09/27/19 14:51,"691 South St, New York City, NY 10001" -248398,USB-C Charging Cable,1,11.95,09/01/19 21:04,"259 4th St, San Francisco, CA 94016" -248399,AA Batteries (4-pack),2,3.84,09/28/19 22:54,"512 Spruce St, New York City, NY 10001" -248400,Apple Airpods Headphones,1,150,09/22/19 00:35,"335 Sunset St, Austin, TX 73301" -248401,27in FHD Monitor,1,149.99,09/01/19 06:40,"514 6th St, Seattle, WA 98101" -248402,Lightning Charging Cable,1,14.95,09/18/19 19:30,"756 Sunset St, Atlanta, GA 30301" -248403,Wired Headphones,2,11.99,09/21/19 16:43,"972 Main St, San Francisco, CA 94016" -248404,AA Batteries (4-pack),1,3.84,09/17/19 16:03,"9 South St, Dallas, TX 75001" -248405,AA Batteries (4-pack),1,3.84,09/05/19 20:13,"337 Adams St, New York City, NY 10001" -248406,34in Ultrawide Monitor,1,379.99,09/05/19 16:50,"631 Highland St, Los Angeles, CA 90001" -248407,iPhone,1,700,09/22/19 15:10,"18 Park St, Seattle, WA 98101" -248407,Lightning Charging Cable,1,14.95,09/22/19 15:10,"18 Park St, Seattle, WA 98101" -248407,Apple Airpods Headphones,1,150,09/22/19 15:10,"18 Park St, Seattle, WA 98101" -248408,AAA Batteries (4-pack),1,2.99,09/17/19 15:09,"412 Meadow St, Boston, MA 02215" -248409,USB-C Charging Cable,1,11.95,09/08/19 20:50,"925 6th St, Austin, TX 73301" -248410,Wired Headphones,1,11.99,09/20/19 11:05,"340 Madison St, Austin, TX 73301" -248411,Flatscreen TV,1,300,09/26/19 23:19,"112 13th St, Boston, MA 02215" -248412,Apple Airpods Headphones,1,150,09/03/19 13:33,"155 Highland St, Portland, OR 97035" -248413,Macbook Pro Laptop,1,1700,09/07/19 19:40,"633 West St, Atlanta, GA 30301" -248414,AA Batteries (4-pack),1,3.84,09/05/19 21:56,"607 5th St, Portland, OR 97035" -248415,Lightning Charging Cable,1,14.95,09/25/19 20:00,"893 Forest St, New York City, NY 10001" -248416,Lightning Charging Cable,1,14.95,09/06/19 16:11,"183 Lakeview St, Atlanta, GA 30301" -248417,Bose SoundSport Headphones,1,99.99,09/27/19 13:06,"766 River St, Dallas, TX 75001" -248418,Bose SoundSport Headphones,1,99.99,09/05/19 19:22,"810 Walnut St, San Francisco, CA 94016" -248419,USB-C Charging Cable,1,11.95,09/01/19 14:27,"286 South St, New York City, NY 10001" -248420,Flatscreen TV,1,300,09/10/19 17:09,"157 Ridge St, Portland, OR 97035" -248421,Wired Headphones,1,11.99,09/18/19 11:55,"866 14th St, Seattle, WA 98101" -248422,Apple Airpods Headphones,1,150,09/09/19 17:49,"461 6th St, San Francisco, CA 94016" -248423,Bose SoundSport Headphones,1,99.99,09/08/19 09:11,"955 Lake St, Seattle, WA 98101" -248424,Lightning Charging Cable,1,14.95,09/17/19 21:04,"241 Cedar St, Seattle, WA 98101" -248425,Wired Headphones,1,11.99,09/16/19 22:22,"786 Hickory St, New York City, NY 10001" -248426,USB-C Charging Cable,2,11.95,09/12/19 21:17,"975 Lincoln St, Los Angeles, CA 90001" -248427,Wired Headphones,2,11.99,09/17/19 21:28,"784 5th St, San Francisco, CA 94016" -248428,20in Monitor,1,109.99,09/16/19 19:08,"328 Meadow St, San Francisco, CA 94016" -248429,Bose SoundSport Headphones,1,99.99,09/15/19 22:10,"945 River St, Seattle, WA 98101" -248430,Apple Airpods Headphones,1,150,09/01/19 22:28,"473 Church St, New York City, NY 10001" -248430,Lightning Charging Cable,1,14.95,09/01/19 22:28,"473 Church St, New York City, NY 10001" -248431,Lightning Charging Cable,1,14.95,09/19/19 16:27,"675 Lincoln St, Boston, MA 02215" -248432,Bose SoundSport Headphones,1,99.99,09/26/19 15:32,"236 Spruce St, Los Angeles, CA 90001" -248433,Apple Airpods Headphones,1,150,09/15/19 14:07,"981 2nd St, Boston, MA 02215" -248434,Apple Airpods Headphones,1,150,09/26/19 13:12,"42 Church St, Boston, MA 02215" -248435,Macbook Pro Laptop,1,1700,09/14/19 20:17,"254 Forest St, Los Angeles, CA 90001" -248436,USB-C Charging Cable,1,11.95,09/15/19 22:49,"305 Forest St, San Francisco, CA 94016" -248437,Vareebadd Phone,1,400,09/11/19 20:44,"691 Lakeview St, San Francisco, CA 94016" -248438,27in 4K Gaming Monitor,1,389.99,09/10/19 22:34,"837 Sunset St, Portland, OR 97035" -248439,Wired Headphones,1,11.99,09/09/19 09:36,"647 Sunset St, Boston, MA 02215" -248440,AAA Batteries (4-pack),1,2.99,09/14/19 10:12,"341 2nd St, Seattle, WA 98101" -248441,27in 4K Gaming Monitor,1,389.99,09/01/19 15:29,"102 Wilson St, Atlanta, GA 30301" -248442,Wired Headphones,1,11.99,09/01/19 10:58,"187 Hickory St, Los Angeles, CA 90001" -248443,Macbook Pro Laptop,1,1700,09/14/19 16:33,"158 Willow St, Boston, MA 02215" -248444,34in Ultrawide Monitor,1,379.99,09/02/19 18:14,"779 14th St, New York City, NY 10001" -248445,AA Batteries (4-pack),2,3.84,09/14/19 20:38,"344 Park St, New York City, NY 10001" -248446,AAA Batteries (4-pack),2,2.99,09/14/19 12:51,"684 Dogwood St, Portland, ME 04101" -248447,AAA Batteries (4-pack),2,2.99,09/10/19 17:31,"669 Washington St, San Francisco, CA 94016" -248448,Lightning Charging Cable,1,14.95,09/24/19 13:40,"27 Jackson St, Atlanta, GA 30301" -248449,Lightning Charging Cable,1,14.95,09/11/19 10:00,"656 6th St, New York City, NY 10001" -248450,Apple Airpods Headphones,1,150,09/30/19 11:36,"822 11th St, San Francisco, CA 94016" -248451,AAA Batteries (4-pack),2,2.99,09/16/19 22:15,"79 River St, San Francisco, CA 94016" -248452,Macbook Pro Laptop,1,1700,09/24/19 18:00,"463 Cherry St, Boston, MA 02215" -248453,AAA Batteries (4-pack),1,2.99,09/20/19 23:04,"165 Cherry St, Boston, MA 02215" -248454,27in 4K Gaming Monitor,1,389.99,09/03/19 18:36,"178 Cedar St, Seattle, WA 98101" -248455,USB-C Charging Cable,1,11.95,09/25/19 18:16,"844 8th St, New York City, NY 10001" -248456,USB-C Charging Cable,1,11.95,09/06/19 21:16,"54 11th St, New York City, NY 10001" -248457,USB-C Charging Cable,1,11.95,09/17/19 11:55,"306 Cherry St, Boston, MA 02215" -248458,27in 4K Gaming Monitor,1,389.99,09/20/19 14:44,"799 Spruce St, Atlanta, GA 30301" -248459,USB-C Charging Cable,2,11.95,09/24/19 06:40,"784 Lakeview St, New York City, NY 10001" -248460,USB-C Charging Cable,1,11.95,09/24/19 13:00,"601 Park St, Dallas, TX 75001" -248461,AAA Batteries (4-pack),1,2.99,09/18/19 03:23,"686 Wilson St, San Francisco, CA 94016" -248462,Lightning Charging Cable,2,14.95,09/18/19 13:53,"809 River St, Los Angeles, CA 90001" -248463,USB-C Charging Cable,1,11.95,09/10/19 16:07,"255 Cherry St, New York City, NY 10001" -248464,USB-C Charging Cable,1,11.95,09/23/19 13:59,"620 1st St, Boston, MA 02215" -248465,Apple Airpods Headphones,1,150,09/20/19 08:48,"511 West St, Dallas, TX 75001" -248466,Wired Headphones,1,11.99,09/15/19 15:36,"424 Highland St, Seattle, WA 98101" -248467,USB-C Charging Cable,1,11.95,09/10/19 11:31,"639 Dogwood St, Dallas, TX 75001" -248468,AA Batteries (4-pack),1,3.84,09/10/19 20:33,"259 14th St, Los Angeles, CA 90001" -248469,Bose SoundSport Headphones,1,99.99,09/19/19 17:27,"716 Wilson St, San Francisco, CA 94016" -248470,USB-C Charging Cable,1,11.95,09/06/19 11:48,"71 West St, Austin, TX 73301" -248471,iPhone,1,700,09/20/19 14:55,"763 Johnson St, Austin, TX 73301" -248472,20in Monitor,1,109.99,09/27/19 23:55,"354 12th St, Boston, MA 02215" -248473,USB-C Charging Cable,1,11.95,09/21/19 10:36,"150 6th St, San Francisco, CA 94016" -248474,27in FHD Monitor,1,149.99,09/09/19 19:27,"728 West St, Los Angeles, CA 90001" -248475,AA Batteries (4-pack),1,3.84,09/01/19 21:28,"397 8th St, Los Angeles, CA 90001" -248476,AA Batteries (4-pack),1,3.84,09/04/19 19:46,"320 Willow St, San Francisco, CA 94016" -248477,USB-C Charging Cable,1,11.95,09/09/19 14:17,"978 Elm St, Dallas, TX 75001" -248478,34in Ultrawide Monitor,1,379.99,09/12/19 17:56,"775 12th St, Atlanta, GA 30301" -248479,Wired Headphones,1,11.99,09/11/19 21:07,"484 Park St, Los Angeles, CA 90001" -248480,Bose SoundSport Headphones,1,99.99,09/22/19 20:59,"240 Highland St, San Francisco, CA 94016" -248481,AA Batteries (4-pack),1,3.84,09/25/19 07:51,"546 2nd St, San Francisco, CA 94016" -248482,AA Batteries (4-pack),1,3.84,09/20/19 16:33,"363 10th St, Dallas, TX 75001" -248483,27in 4K Gaming Monitor,1,389.99,09/14/19 20:16,"592 Lake St, Los Angeles, CA 90001" -248484,ThinkPad Laptop,1,999.99,09/29/19 05:18,"346 Hickory St, Seattle, WA 98101" -248485,AAA Batteries (4-pack),1,2.99,09/29/19 17:16,"946 Center St, New York City, NY 10001" -248486,Wired Headphones,1,11.99,09/09/19 21:31,"233 Wilson St, Atlanta, GA 30301" -248487,AA Batteries (4-pack),2,3.84,09/19/19 12:06,"426 5th St, Austin, TX 73301" -248488,Lightning Charging Cable,1,14.95,09/13/19 19:42,"404 Cherry St, New York City, NY 10001" -248489,Lightning Charging Cable,1,14.95,09/21/19 23:42,"403 North St, San Francisco, CA 94016" -248490,USB-C Charging Cable,1,11.95,09/27/19 13:35,"226 Forest St, Los Angeles, CA 90001" -248491,34in Ultrawide Monitor,1,379.99,09/17/19 20:06,"194 Park St, San Francisco, CA 94016" -248492,Apple Airpods Headphones,1,150,09/06/19 16:18,"558 Pine St, San Francisco, CA 94016" -248493,20in Monitor,1,109.99,09/04/19 12:39,"513 9th St, Atlanta, GA 30301" -248494,Bose SoundSport Headphones,1,99.99,09/27/19 17:19,"988 Ridge St, San Francisco, CA 94016" -248495,Lightning Charging Cable,1,14.95,09/30/19 14:32,"896 9th St, San Francisco, CA 94016" -248496,AA Batteries (4-pack),1,3.84,09/19/19 17:00,"833 Pine St, San Francisco, CA 94016" -248497,AAA Batteries (4-pack),1,2.99,09/19/19 01:38,"502 Jefferson St, Boston, MA 02215" -248498,AA Batteries (4-pack),1,3.84,09/11/19 17:24,"553 Highland St, Boston, MA 02215" -248499,Lightning Charging Cable,2,14.95,09/01/19 16:01,"690 Elm St, Seattle, WA 98101" -248500,Bose SoundSport Headphones,1,99.99,09/10/19 07:12,"367 Dogwood St, San Francisco, CA 94016" -248501,ThinkPad Laptop,1,999.99,09/13/19 08:39,"859 Spruce St, Los Angeles, CA 90001" -248502,AAA Batteries (4-pack),1,2.99,09/13/19 23:52,"636 Lake St, Boston, MA 02215" -248503,Lightning Charging Cable,1,14.95,09/09/19 23:02,"1 Main St, New York City, NY 10001" -248504,Wired Headphones,1,11.99,09/20/19 23:23,"991 12th St, Los Angeles, CA 90001" -248505,Apple Airpods Headphones,1,150,09/03/19 18:29,"223 Walnut St, New York City, NY 10001" -248506,Flatscreen TV,1,300,09/16/19 19:57,"538 Hickory St, San Francisco, CA 94016" -248507,Apple Airpods Headphones,1,150,09/09/19 07:11,"572 Meadow St, Austin, TX 73301" -248508,Bose SoundSport Headphones,1,99.99,09/29/19 15:11,"155 Madison St, San Francisco, CA 94016" -248509,USB-C Charging Cable,1,11.95,09/13/19 21:22,"874 13th St, Seattle, WA 98101" -248510,AA Batteries (4-pack),1,3.84,09/10/19 16:47,"335 12th St, New York City, NY 10001" -248511,Lightning Charging Cable,1,14.95,09/20/19 16:51,"272 Chestnut St, Seattle, WA 98101" -248512,Macbook Pro Laptop,1,1700,09/19/19 13:04,"477 1st St, New York City, NY 10001" -248513,AAA Batteries (4-pack),3,2.99,09/18/19 23:11,"898 Center St, Los Angeles, CA 90001" -248514,Wired Headphones,1,11.99,09/21/19 07:20,"543 South St, San Francisco, CA 94016" -248515,Vareebadd Phone,1,400,09/26/19 15:35,"556 Dogwood St, Los Angeles, CA 90001" -248516,AAA Batteries (4-pack),1,2.99,09/20/19 18:32,"965 4th St, Los Angeles, CA 90001" -248517,USB-C Charging Cable,1,11.95,09/26/19 00:48,"376 Lakeview St, San Francisco, CA 94016" -248518,AAA Batteries (4-pack),1,2.99,09/23/19 19:12,"840 West St, San Francisco, CA 94016" -248519,Lightning Charging Cable,1,14.95,09/27/19 14:33,"30 Wilson St, Atlanta, GA 30301" -248520,27in FHD Monitor,1,149.99,09/04/19 09:58,"683 7th St, Boston, MA 02215" -248521,27in 4K Gaming Monitor,1,389.99,09/15/19 15:16,"381 Maple St, Los Angeles, CA 90001" -248522,Apple Airpods Headphones,1,150,09/27/19 14:52,"468 13th St, Dallas, TX 75001" -248523,Apple Airpods Headphones,1,150,09/04/19 07:04,"719 Jackson St, San Francisco, CA 94016" -248524,AA Batteries (4-pack),1,3.84,09/02/19 23:24,"171 Dogwood St, Los Angeles, CA 90001" -248525,27in FHD Monitor,1,149.99,09/23/19 17:39,"202 Sunset St, San Francisco, CA 94016" -248526,Apple Airpods Headphones,1,150,09/21/19 18:45,"439 7th St, Portland, OR 97035" -248527,27in FHD Monitor,1,149.99,09/29/19 21:02,"403 8th St, Los Angeles, CA 90001" -248528,Wired Headphones,1,11.99,09/02/19 20:49,"410 Pine St, New York City, NY 10001" -248529,USB-C Charging Cable,1,11.95,09/14/19 12:18,"5 Johnson St, Los Angeles, CA 90001" -248530,Wired Headphones,1,11.99,09/07/19 13:18,"361 7th St, Austin, TX 73301" -248531,Google Phone,1,600,09/10/19 23:46,"544 5th St, Dallas, TX 75001" -248531,Bose SoundSport Headphones,1,99.99,09/10/19 23:46,"544 5th St, Dallas, TX 75001" -248532,27in FHD Monitor,1,149.99,09/23/19 13:15,"478 5th St, Austin, TX 73301" -248533,Bose SoundSport Headphones,1,99.99,09/29/19 11:42,"622 6th St, Los Angeles, CA 90001" -248534,AAA Batteries (4-pack),1,2.99,09/19/19 09:36,"354 Main St, Atlanta, GA 30301" -248535,34in Ultrawide Monitor,1,379.99,09/30/19 14:25,"585 Elm St, San Francisco, CA 94016" -248536,AA Batteries (4-pack),2,3.84,09/28/19 16:06,"69 2nd St, Dallas, TX 75001" -248537,AA Batteries (4-pack),2,3.84,09/11/19 09:58,"491 Jackson St, Austin, TX 73301" -248538,USB-C Charging Cable,1,11.95,09/22/19 19:06,"970 Lakeview St, Los Angeles, CA 90001" -248539,27in 4K Gaming Monitor,1,389.99,09/01/19 14:19,"255 12th St, Portland, ME 04101" -248540,AAA Batteries (4-pack),1,2.99,09/18/19 11:42,"676 Spruce St, San Francisco, CA 94016" -248541,27in 4K Gaming Monitor,1,389.99,09/28/19 17:23,"40 Wilson St, New York City, NY 10001" -248542,AA Batteries (4-pack),2,3.84,09/05/19 09:42,"69 Hill St, Boston, MA 02215" -248543,AAA Batteries (4-pack),1,2.99,09/25/19 16:01,"98 Meadow St, Dallas, TX 75001" -248544,Macbook Pro Laptop,1,1700,09/13/19 09:19,"299 Highland St, Los Angeles, CA 90001" -248545,iPhone,1,700,09/18/19 20:30,"205 5th St, San Francisco, CA 94016" -248546,USB-C Charging Cable,1,11.95,09/29/19 14:58,"186 10th St, San Francisco, CA 94016" -248547,Apple Airpods Headphones,1,150,09/09/19 10:50,"581 7th St, Los Angeles, CA 90001" -248548,AAA Batteries (4-pack),1,2.99,09/06/19 21:18,"332 9th St, Portland, ME 04101" -248549,ThinkPad Laptop,1,999.99,09/14/19 14:51,"303 Walnut St, New York City, NY 10001" -248550,27in FHD Monitor,1,149.99,09/07/19 17:27,"562 Lakeview St, San Francisco, CA 94016" -248551,AAA Batteries (4-pack),1,2.99,09/26/19 09:48,"252 12th St, New York City, NY 10001" -248552,AA Batteries (4-pack),1,3.84,09/23/19 20:48,"133 Church St, Portland, OR 97035" -248553,USB-C Charging Cable,1,11.95,09/26/19 10:21,"283 Main St, Atlanta, GA 30301" -248554,Lightning Charging Cable,1,14.95,09/25/19 14:20,"220 Forest St, Atlanta, GA 30301" -248555,Bose SoundSport Headphones,1,99.99,09/17/19 20:57,"360 Walnut St, Portland, OR 97035" -248556,Apple Airpods Headphones,1,150,09/18/19 14:52,"856 7th St, Boston, MA 02215" -248557,Bose SoundSport Headphones,1,99.99,09/22/19 18:10,"947 5th St, Los Angeles, CA 90001" -248558,34in Ultrawide Monitor,1,379.99,09/27/19 16:56,"665 Meadow St, San Francisco, CA 94016" -248559,Bose SoundSport Headphones,1,99.99,09/19/19 10:48,"80 Pine St, Seattle, WA 98101" -248560,Google Phone,1,600,09/08/19 11:40,"772 Sunset St, Los Angeles, CA 90001" -248561,AA Batteries (4-pack),2,3.84,09/25/19 11:44,"205 Forest St, New York City, NY 10001" -248562,Bose SoundSport Headphones,1,99.99,09/28/19 22:00,"918 Hill St, Atlanta, GA 30301" -248563,Flatscreen TV,1,300,09/11/19 01:04,"960 Church St, San Francisco, CA 94016" -248564,AA Batteries (4-pack),1,3.84,09/20/19 18:45,"315 Main St, Seattle, WA 98101" -248565,AAA Batteries (4-pack),2,2.99,09/16/19 22:12,"545 Wilson St, San Francisco, CA 94016" -248566,Wired Headphones,1,11.99,09/27/19 19:37,"433 Jefferson St, New York City, NY 10001" -248567,Lightning Charging Cable,1,14.95,09/03/19 12:28,"700 Spruce St, San Francisco, CA 94016" -248568,Wired Headphones,1,11.99,09/09/19 11:32,"341 Johnson St, Atlanta, GA 30301" -248569,Lightning Charging Cable,1,14.95,09/16/19 21:36,"428 Cedar St, New York City, NY 10001" -248570,AAA Batteries (4-pack),1,2.99,09/03/19 19:27,"818 6th St, New York City, NY 10001" -248571,AAA Batteries (4-pack),2,2.99,09/09/19 20:50,"731 Maple St, Austin, TX 73301" -248572,Bose SoundSport Headphones,1,99.99,09/05/19 14:11,"144 Adams St, San Francisco, CA 94016" -248573,USB-C Charging Cable,1,11.95,09/15/19 12:23,"419 Lincoln St, San Francisco, CA 94016" -248574,AAA Batteries (4-pack),1,2.99,09/01/19 23:40,"5 West St, New York City, NY 10001" -248575,Lightning Charging Cable,1,14.95,09/13/19 16:46,"773 Church St, Portland, OR 97035" -248576,USB-C Charging Cable,2,11.95,09/16/19 07:48,"446 Lake St, Los Angeles, CA 90001" -248577,27in 4K Gaming Monitor,1,389.99,09/12/19 09:40,"389 Madison St, San Francisco, CA 94016" -248578,Wired Headphones,1,11.99,09/08/19 14:04,"278 Jackson St, San Francisco, CA 94016" -248579,Lightning Charging Cable,1,14.95,09/15/19 08:06,"803 North St, Seattle, WA 98101" -248580,Apple Airpods Headphones,1,150,09/28/19 17:23,"447 Madison St, Los Angeles, CA 90001" -248581,AAA Batteries (4-pack),1,2.99,09/28/19 11:11,"760 Lakeview St, New York City, NY 10001" -248582,Apple Airpods Headphones,1,150,09/01/19 15:11,"95 4th St, Seattle, WA 98101" -248583,Macbook Pro Laptop,1,1700,09/13/19 16:17,"825 7th St, Boston, MA 02215" -248584,Wired Headphones,1,11.99,09/26/19 22:09,"146 14th St, Los Angeles, CA 90001" -248585,Apple Airpods Headphones,1,150,09/24/19 15:15,"501 Highland St, Dallas, TX 75001" -248586,Wired Headphones,1,11.99,09/25/19 21:16,"998 Church St, Los Angeles, CA 90001" -248587,AAA Batteries (4-pack),1,2.99,09/18/19 14:08,"207 Main St, Seattle, WA 98101" -248588,USB-C Charging Cable,1,11.95,09/20/19 18:18,"846 Hill St, San Francisco, CA 94016" -248589,34in Ultrawide Monitor,1,379.99,09/18/19 18:33,"196 Lakeview St, Seattle, WA 98101" -248590,Lightning Charging Cable,1,14.95,09/24/19 11:59,"550 Madison St, Los Angeles, CA 90001" -248591,Bose SoundSport Headphones,1,99.99,09/24/19 12:06,"640 Spruce St, Austin, TX 73301" -248592,27in 4K Gaming Monitor,1,389.99,09/23/19 08:58,"553 8th St, Boston, MA 02215" -248592,AA Batteries (4-pack),1,3.84,09/23/19 08:58,"553 8th St, Boston, MA 02215" -248593,27in FHD Monitor,1,149.99,09/01/19 20:46,"422 Johnson St, Boston, MA 02215" -248594,Bose SoundSport Headphones,1,99.99,09/29/19 15:53,"608 8th St, New York City, NY 10001" -248595,Vareebadd Phone,1,400,09/21/19 15:44,"912 11th St, Seattle, WA 98101" -248596,Bose SoundSport Headphones,1,99.99,09/20/19 11:24,"469 5th St, San Francisco, CA 94016" -248597,AAA Batteries (4-pack),3,2.99,09/07/19 13:54,"135 Johnson St, Boston, MA 02215" -248598,Bose SoundSport Headphones,1,99.99,09/11/19 16:11,"337 Wilson St, Portland, OR 97035" -248599,Apple Airpods Headphones,1,150,09/11/19 00:59,"54 Center St, New York City, NY 10001" -248600,Bose SoundSport Headphones,1,99.99,09/04/19 15:17,"183 Chestnut St, Austin, TX 73301" -248601,20in Monitor,1,109.99,09/07/19 11:57,"337 12th St, Boston, MA 02215" -248602,34in Ultrawide Monitor,1,379.99,09/19/19 20:26,"174 Sunset St, San Francisco, CA 94016" -248603,USB-C Charging Cable,1,11.95,09/03/19 21:59,"957 11th St, Los Angeles, CA 90001" -248604,ThinkPad Laptop,1,999.99,09/02/19 13:03,"806 Hill St, Seattle, WA 98101" -248605,Apple Airpods Headphones,1,150,09/08/19 09:22,"784 Willow St, New York City, NY 10001" -248606,Bose SoundSport Headphones,1,99.99,09/21/19 11:31,"871 1st St, Austin, TX 73301" -248607,AA Batteries (4-pack),1,3.84,09/01/19 09:23,"869 Lincoln St, New York City, NY 10001" -248608,Lightning Charging Cable,1,14.95,09/23/19 08:27,"74 Lakeview St, Boston, MA 02215" -248609,Flatscreen TV,1,300,09/01/19 16:19,"454 River St, San Francisco, CA 94016" -248610,Wired Headphones,1,11.99,09/28/19 08:49,"929 Wilson St, Atlanta, GA 30301" -248611,Google Phone,1,600,09/17/19 10:37,"448 Jackson St, New York City, NY 10001" -248612,Macbook Pro Laptop,1,1700,09/15/19 18:32,"986 Jackson St, Portland, OR 97035" -248613,Lightning Charging Cable,1,14.95,09/20/19 12:21,"840 Madison St, Portland, OR 97035" -248614,iPhone,1,700,09/04/19 16:41,"907 Park St, Los Angeles, CA 90001" -248615,Bose SoundSport Headphones,1,99.99,09/10/19 23:01,"407 Willow St, Los Angeles, CA 90001" -248616,iPhone,1,700,09/08/19 14:35,"870 Washington St, San Francisco, CA 94016" -248616,Apple Airpods Headphones,1,150,09/08/19 14:35,"870 Washington St, San Francisco, CA 94016" -248617,ThinkPad Laptop,1,999.99,09/07/19 13:55,"126 13th St, New York City, NY 10001" -248618,Wired Headphones,1,11.99,09/30/19 21:02,"232 4th St, San Francisco, CA 94016" -248619,Wired Headphones,1,11.99,09/21/19 13:10,"357 Madison St, Los Angeles, CA 90001" -248620,Apple Airpods Headphones,1,150,09/24/19 12:13,"576 Dogwood St, Portland, ME 04101" -248621,AAA Batteries (4-pack),1,2.99,09/12/19 09:08,"565 11th St, New York City, NY 10001" -248622,27in FHD Monitor,1,149.99,09/01/19 10:58,"594 North St, Seattle, WA 98101" -248623,Wired Headphones,1,11.99,09/17/19 20:17,"506 Jefferson St, Los Angeles, CA 90001" -248624,ThinkPad Laptop,1,999.99,09/26/19 14:43,"713 Jefferson St, New York City, NY 10001" -248625,Macbook Pro Laptop,1,1700,09/14/19 00:53,"978 Jackson St, Los Angeles, CA 90001" -248626,AAA Batteries (4-pack),1,2.99,09/10/19 10:34,"340 13th St, Dallas, TX 75001" -248627,AA Batteries (4-pack),1,3.84,09/25/19 15:24,"135 6th St, Atlanta, GA 30301" -248628,USB-C Charging Cable,1,11.95,09/26/19 14:06,"81 14th St, Los Angeles, CA 90001" -248629,Apple Airpods Headphones,1,150,09/02/19 11:02,"857 13th St, Boston, MA 02215" -248630,Lightning Charging Cable,1,14.95,09/29/19 19:54,"401 2nd St, Atlanta, GA 30301" -248631,ThinkPad Laptop,1,999.99,09/13/19 00:05,"670 12th St, San Francisco, CA 94016" -248632,Wired Headphones,1,11.99,09/28/19 02:21,"904 River St, Portland, OR 97035" -248633,Lightning Charging Cable,1,14.95,09/13/19 14:26,"690 7th St, San Francisco, CA 94016" -248634,Macbook Pro Laptop,1,1700,09/27/19 14:22,"648 Adams St, San Francisco, CA 94016" -248635,Bose SoundSport Headphones,1,99.99,09/03/19 08:02,"834 Highland St, Austin, TX 73301" -248636,Google Phone,1,600,09/25/19 10:28,"159 Jefferson St, Los Angeles, CA 90001" -248637,Wired Headphones,1,11.99,09/11/19 18:03,"979 Main St, Los Angeles, CA 90001" -248638,Wired Headphones,1,11.99,09/10/19 19:16,"402 9th St, New York City, NY 10001" -248639,Apple Airpods Headphones,1,150,09/22/19 10:25,"673 2nd St, New York City, NY 10001" -248640,AA Batteries (4-pack),1,3.84,09/15/19 10:16,"37 10th St, Dallas, TX 75001" -248641,Wired Headphones,1,11.99,09/08/19 09:35,"963 Cedar St, San Francisco, CA 94016" -248642,Wired Headphones,1,11.99,09/03/19 21:00,"227 Elm St, Dallas, TX 75001" -248643,Lightning Charging Cable,1,14.95,10/01/19 01:36,"321 Chestnut St, Austin, TX 73301" -248644,Wired Headphones,1,11.99,09/30/19 18:18,"26 8th St, San Francisco, CA 94016" -248645,ThinkPad Laptop,1,999.99,09/02/19 12:55,"147 8th St, New York City, NY 10001" -248646,Bose SoundSport Headphones,1,99.99,09/10/19 08:01,"354 Jefferson St, Dallas, TX 75001" -248647,AAA Batteries (4-pack),2,2.99,09/30/19 21:27,"227 Washington St, San Francisco, CA 94016" -248648,iPhone,1,700,09/13/19 17:48,"637 Lincoln St, San Francisco, CA 94016" -248649,AA Batteries (4-pack),1,3.84,09/01/19 20:34,"712 6th St, San Francisco, CA 94016" -248650,Wired Headphones,2,11.99,09/22/19 19:45,"564 Dogwood St, Los Angeles, CA 90001" -248651,USB-C Charging Cable,1,11.95,09/12/19 14:48,"722 Forest St, Los Angeles, CA 90001" -248652,Flatscreen TV,1,300,09/13/19 15:46,"962 Park St, Seattle, WA 98101" -248653,USB-C Charging Cable,2,11.95,09/27/19 18:38,"196 West St, San Francisco, CA 94016" -248654,USB-C Charging Cable,1,11.95,09/18/19 23:31,"511 Park St, Los Angeles, CA 90001" -248655,AA Batteries (4-pack),2,3.84,09/12/19 22:37,"217 Park St, Los Angeles, CA 90001" -248656,AA Batteries (4-pack),1,3.84,09/01/19 14:31,"935 Hickory St, Portland, ME 04101" -248657,AA Batteries (4-pack),1,3.84,09/06/19 13:03,"759 Elm St, San Francisco, CA 94016" -248658,Lightning Charging Cable,1,14.95,09/09/19 17:27,"688 South St, Seattle, WA 98101" -248659,Lightning Charging Cable,1,14.95,09/14/19 14:45,"141 Hickory St, New York City, NY 10001" -248660,ThinkPad Laptop,1,999.99,09/23/19 21:31,"708 Church St, New York City, NY 10001" -248661,Lightning Charging Cable,1,14.95,09/05/19 08:44,"162 North St, Portland, OR 97035" -248662,AAA Batteries (4-pack),1,2.99,09/09/19 17:20,"557 Johnson St, San Francisco, CA 94016" -248663,27in FHD Monitor,1,149.99,09/22/19 17:27,"114 Lake St, San Francisco, CA 94016" -248664,Apple Airpods Headphones,1,150,09/28/19 06:03,"374 Washington St, New York City, NY 10001" -248665,27in 4K Gaming Monitor,1,389.99,09/21/19 11:06,"161 2nd St, Los Angeles, CA 90001" -248666,Wired Headphones,1,11.99,09/23/19 11:40,"106 Church St, Dallas, TX 75001" -248667,Wired Headphones,1,11.99,09/21/19 15:59,"751 Highland St, Portland, ME 04101" -248668,USB-C Charging Cable,1,11.95,09/18/19 20:16,"777 Jackson St, Seattle, WA 98101" -248669,Flatscreen TV,1,300,09/18/19 14:46,"410 Madison St, Seattle, WA 98101" -248670,Wired Headphones,1,11.99,09/23/19 11:47,"784 8th St, Los Angeles, CA 90001" -248671,Wired Headphones,1,11.99,09/05/19 11:49,"482 Johnson St, Dallas, TX 75001" -248672,Bose SoundSport Headphones,1,99.99,09/27/19 19:13,"980 North St, Los Angeles, CA 90001" -248673,Lightning Charging Cable,1,14.95,09/14/19 11:04,"207 Meadow St, Seattle, WA 98101" -248674,Macbook Pro Laptop,1,1700,09/26/19 18:27,"901 Cedar St, New York City, NY 10001" -248675,Apple Airpods Headphones,1,150,09/17/19 18:06,"776 5th St, Boston, MA 02215" -248676,Wired Headphones,2,11.99,09/12/19 11:07,"986 Walnut St, Los Angeles, CA 90001" -248677,AA Batteries (4-pack),1,3.84,09/01/19 11:15,"631 8th St, Los Angeles, CA 90001" -248678,AAA Batteries (4-pack),1,2.99,09/28/19 06:08,"934 10th St, Los Angeles, CA 90001" -248679,Vareebadd Phone,1,400,09/15/19 11:04,"47 Meadow St, San Francisco, CA 94016" -248679,USB-C Charging Cable,1,11.95,09/15/19 11:04,"47 Meadow St, San Francisco, CA 94016" -248680,27in FHD Monitor,1,149.99,09/24/19 22:21,"627 Sunset St, New York City, NY 10001" -248681,27in 4K Gaming Monitor,1,389.99,09/13/19 22:37,"570 Lakeview St, Los Angeles, CA 90001" -248682,Macbook Pro Laptop,1,1700,09/28/19 19:17,"666 Willow St, Boston, MA 02215" -248683,Lightning Charging Cable,1,14.95,09/20/19 21:47,"306 14th St, Boston, MA 02215" -248684,34in Ultrawide Monitor,1,379.99,09/23/19 14:18,"681 Wilson St, New York City, NY 10001" -248685,iPhone,1,700,09/20/19 09:55,"613 Cedar St, San Francisco, CA 94016" -248686,AAA Batteries (4-pack),1,2.99,09/18/19 13:19,"670 12th St, Austin, TX 73301" -248687,USB-C Charging Cable,1,11.95,09/25/19 14:45,"182 Ridge St, San Francisco, CA 94016" -248688,Wired Headphones,1,11.99,09/10/19 17:58,"287 5th St, Atlanta, GA 30301" -248689,Google Phone,1,600,09/06/19 09:40,"369 1st St, Dallas, TX 75001" -248690,AAA Batteries (4-pack),1,2.99,09/20/19 09:11,"338 Madison St, San Francisco, CA 94016" -248691,Apple Airpods Headphones,1,150,09/04/19 14:01,"107 Elm St, Portland, OR 97035" -248692,ThinkPad Laptop,1,999.99,09/18/19 23:44,"401 Hill St, Los Angeles, CA 90001" -248693,Bose SoundSport Headphones,1,99.99,09/05/19 12:10,"482 2nd St, Los Angeles, CA 90001" -248694,USB-C Charging Cable,1,11.95,09/07/19 11:07,"625 Jefferson St, Boston, MA 02215" -248695,Bose SoundSport Headphones,1,99.99,09/06/19 10:53,"981 Ridge St, Boston, MA 02215" -248696,Google Phone,1,600,09/19/19 21:55,"676 Jefferson St, Atlanta, GA 30301" -248697,Bose SoundSport Headphones,1,99.99,09/24/19 23:02,"287 Wilson St, Austin, TX 73301" -248698,27in 4K Gaming Monitor,1,389.99,09/03/19 13:43,"232 West St, Austin, TX 73301" -248699,Google Phone,1,600,09/12/19 10:54,"431 Elm St, Portland, OR 97035" -248700,AAA Batteries (4-pack),1,2.99,09/09/19 00:17,"475 Dogwood St, Atlanta, GA 30301" -248701,AAA Batteries (4-pack),3,2.99,09/22/19 15:59,"152 River St, Portland, OR 97035" -248702,AA Batteries (4-pack),1,3.84,09/23/19 06:01,"922 2nd St, San Francisco, CA 94016" -248703,27in 4K Gaming Monitor,1,389.99,09/14/19 17:48,"122 8th St, New York City, NY 10001" -248704,Bose SoundSport Headphones,1,99.99,09/17/19 07:51,"989 Walnut St, Atlanta, GA 30301" -248705,Wired Headphones,1,11.99,09/22/19 17:27,"225 Meadow St, Seattle, WA 98101" -248706,Lightning Charging Cable,1,14.95,09/29/19 22:03,"577 Forest St, Dallas, TX 75001" -248707,Wired Headphones,1,11.99,09/15/19 11:19,"599 Cedar St, Seattle, WA 98101" -,,,,, -248708,AA Batteries (4-pack),2,3.84,09/15/19 14:04,"671 Madison St, Los Angeles, CA 90001" -248709,Wired Headphones,1,11.99,09/25/19 15:27,"878 Hill St, Seattle, WA 98101" -248710,USB-C Charging Cable,1,11.95,09/15/19 14:14,"56 West St, Austin, TX 73301" -248711,USB-C Charging Cable,1,11.95,09/24/19 21:44,"528 11th St, Los Angeles, CA 90001" -248712,Lightning Charging Cable,1,14.95,09/23/19 20:05,"716 Highland St, Los Angeles, CA 90001" -248713,AA Batteries (4-pack),1,3.84,09/05/19 12:55,"745 Main St, Atlanta, GA 30301" -248714,AAA Batteries (4-pack),3,2.99,09/20/19 17:45,"780 Adams St, Boston, MA 02215" -248715,Wired Headphones,1,11.99,09/02/19 00:11,"622 South St, Los Angeles, CA 90001" -248716,AA Batteries (4-pack),1,3.84,09/15/19 22:39,"951 Church St, Dallas, TX 75001" -248717,AAA Batteries (4-pack),1,2.99,09/27/19 15:36,"633 12th St, San Francisco, CA 94016" -248718,Wired Headphones,1,11.99,09/08/19 12:25,"989 Wilson St, New York City, NY 10001" -248719,Google Phone,1,600,09/22/19 19:07,"848 Forest St, Los Angeles, CA 90001" -248720,AA Batteries (4-pack),1,3.84,09/14/19 18:38,"24 Highland St, Boston, MA 02215" -248721,Macbook Pro Laptop,1,1700,09/23/19 04:44,"139 Walnut St, San Francisco, CA 94016" -248722,Wired Headphones,1,11.99,09/25/19 10:16,"414 Cedar St, San Francisco, CA 94016" -248723,34in Ultrawide Monitor,1,379.99,09/26/19 10:58,"336 Washington St, Los Angeles, CA 90001" -248724,Bose SoundSport Headphones,1,99.99,09/23/19 21:39,"491 Walnut St, Los Angeles, CA 90001" -248725,Bose SoundSport Headphones,1,99.99,09/10/19 17:17,"574 5th St, Los Angeles, CA 90001" -248726,Lightning Charging Cable,1,14.95,09/21/19 00:29,"404 11th St, New York City, NY 10001" -248727,Apple Airpods Headphones,1,150,09/20/19 14:14,"583 Pine St, Portland, ME 04101" -248727,Lightning Charging Cable,1,14.95,09/20/19 14:14,"583 Pine St, Portland, ME 04101" -248728,Lightning Charging Cable,1,14.95,09/29/19 08:48,"396 2nd St, Los Angeles, CA 90001" -248729,Apple Airpods Headphones,1,150,09/24/19 05:28,"442 South St, Austin, TX 73301" -248730,AAA Batteries (4-pack),1,2.99,09/26/19 16:32,"845 10th St, New York City, NY 10001" -248731,Lightning Charging Cable,1,14.95,09/24/19 20:39,"388 North St, Los Angeles, CA 90001" -248731,Bose SoundSport Headphones,1,99.99,09/24/19 20:39,"388 North St, Los Angeles, CA 90001" -248732,Apple Airpods Headphones,1,150,09/28/19 13:50,"314 2nd St, San Francisco, CA 94016" -248733,AA Batteries (4-pack),2,3.84,09/20/19 22:06,"826 Spruce St, Portland, OR 97035" -248734,Bose SoundSport Headphones,1,99.99,09/26/19 13:02,"13 Lake St, Seattle, WA 98101" -248735,AAA Batteries (4-pack),1,2.99,09/10/19 15:35,"434 Washington St, Dallas, TX 75001" -248736,Lightning Charging Cable,1,14.95,09/23/19 14:26,"465 South St, Seattle, WA 98101" -248737,Wired Headphones,1,11.99,09/18/19 17:46,"797 Forest St, Seattle, WA 98101" -248738,Apple Airpods Headphones,1,150,09/15/19 17:36,"740 5th St, Los Angeles, CA 90001" -248739,AA Batteries (4-pack),1,3.84,09/17/19 19:22,"952 Sunset St, Los Angeles, CA 90001" -248740,AA Batteries (4-pack),1,3.84,09/20/19 14:39,"783 Jackson St, San Francisco, CA 94016" -248741,Wired Headphones,1,11.99,09/06/19 18:23,"30 10th St, Portland, ME 04101" -248742,34in Ultrawide Monitor,1,379.99,09/13/19 18:44,"533 10th St, San Francisco, CA 94016" -248743,AAA Batteries (4-pack),4,2.99,09/25/19 15:03,"433 North St, Boston, MA 02215" -248744,USB-C Charging Cable,1,11.95,09/07/19 21:25,"44 Lake St, San Francisco, CA 94016" -248745,34in Ultrawide Monitor,1,379.99,09/06/19 08:05,"545 River St, Los Angeles, CA 90001" -248746,Lightning Charging Cable,1,14.95,09/04/19 10:36,"667 Maple St, Austin, TX 73301" -248746,AA Batteries (4-pack),1,3.84,09/04/19 10:36,"667 Maple St, Austin, TX 73301" -248747,AA Batteries (4-pack),1,3.84,09/29/19 20:08,"940 10th St, Seattle, WA 98101" -248748,AA Batteries (4-pack),2,3.84,09/12/19 09:35,"766 River St, Dallas, TX 75001" -248749,AA Batteries (4-pack),1,3.84,09/26/19 17:50,"133 Madison St, Los Angeles, CA 90001" -248750,27in FHD Monitor,1,149.99,09/16/19 08:25,"11 Madison St, New York City, NY 10001" -248751,USB-C Charging Cable,1,11.95,09/25/19 13:50,"152 Sunset St, Los Angeles, CA 90001" -248752,Vareebadd Phone,1,400,09/06/19 22:02,"321 Dogwood St, San Francisco, CA 94016" -248753,AA Batteries (4-pack),1,3.84,09/02/19 23:11,"760 Highland St, Atlanta, GA 30301" -248754,iPhone,1,700,09/06/19 12:58,"221 Center St, New York City, NY 10001" -248755,Lightning Charging Cable,1,14.95,09/26/19 13:01,"364 Washington St, San Francisco, CA 94016" -248756,Lightning Charging Cable,1,14.95,09/03/19 11:04,"43 Forest St, San Francisco, CA 94016" -248757,USB-C Charging Cable,2,11.95,09/05/19 20:43,"373 6th St, Dallas, TX 75001" -248758,USB-C Charging Cable,1,11.95,09/26/19 09:40,"783 Maple St, Boston, MA 02215" -248759,iPhone,1,700,09/21/19 17:04,"740 River St, San Francisco, CA 94016" -248760,AA Batteries (4-pack),1,3.84,09/03/19 00:47,"181 Chestnut St, Austin, TX 73301" -248761,AAA Batteries (4-pack),2,2.99,09/28/19 15:45,"563 Dogwood St, Los Angeles, CA 90001" -248762,Bose SoundSport Headphones,1,99.99,09/09/19 20:20,"315 7th St, Boston, MA 02215" -248763,AA Batteries (4-pack),1,3.84,09/06/19 19:19,"873 Lincoln St, Seattle, WA 98101" -248764,Bose SoundSport Headphones,1,99.99,09/27/19 07:06,"642 Elm St, Seattle, WA 98101" -248765,LG Washing Machine,1,600.0,09/16/19 19:06,"255 West St, New York City, NY 10001" -248766,Lightning Charging Cable,1,14.95,09/01/19 07:23,"48 Adams St, Los Angeles, CA 90001" -248767,AAA Batteries (4-pack),3,2.99,09/03/19 11:24,"819 2nd St, San Francisco, CA 94016" -248768,20in Monitor,1,109.99,09/10/19 00:09,"584 2nd St, San Francisco, CA 94016" -248769,Bose SoundSport Headphones,1,99.99,09/25/19 14:04,"562 1st St, New York City, NY 10001" -248770,USB-C Charging Cable,2,11.95,09/15/19 13:20,"981 Maple St, Austin, TX 73301" -248771,Apple Airpods Headphones,1,150,09/20/19 18:15,"652 Lincoln St, Atlanta, GA 30301" -248772,AA Batteries (4-pack),1,3.84,09/08/19 15:58,"7 Walnut St, Boston, MA 02215" -248773,USB-C Charging Cable,2,11.95,09/28/19 23:21,"494 Cherry St, Los Angeles, CA 90001" -248774,Wired Headphones,1,11.99,09/29/19 19:32,"126 River St, New York City, NY 10001" -248775,Google Phone,1,600,09/14/19 22:20,"858 North St, New York City, NY 10001" -248776,27in FHD Monitor,1,149.99,09/10/19 06:47,"956 North St, Atlanta, GA 30301" -248777,Wired Headphones,1,11.99,09/03/19 10:43,"847 13th St, San Francisco, CA 94016" -248778,AAA Batteries (4-pack),1,2.99,09/02/19 13:04,"613 7th St, Portland, OR 97035" -248779,Bose SoundSport Headphones,1,99.99,09/14/19 22:37,"193 Elm St, Seattle, WA 98101" -248780,Vareebadd Phone,1,400,09/22/19 14:55,"210 9th St, New York City, NY 10001" -248781,USB-C Charging Cable,1,11.95,09/29/19 14:21,"879 Madison St, Boston, MA 02215" -248782,ThinkPad Laptop,1,999.99,09/10/19 22:33,"487 2nd St, New York City, NY 10001" -248783,Wired Headphones,1,11.99,09/01/19 21:55,"568 6th St, San Francisco, CA 94016" -248784,Bose SoundSport Headphones,2,99.99,09/06/19 18:34,"41 14th St, New York City, NY 10001" -248785,iPhone,1,700,09/13/19 19:28,"44 River St, Portland, OR 97035" -248786,Apple Airpods Headphones,1,150,09/17/19 20:26,"90 5th St, New York City, NY 10001" -248787,AA Batteries (4-pack),1,3.84,09/09/19 12:30,"705 Adams St, San Francisco, CA 94016" -248787,AA Batteries (4-pack),1,3.84,09/09/19 12:30,"705 Adams St, San Francisco, CA 94016" -248788,Bose SoundSport Headphones,1,99.99,09/28/19 10:02,"251 Jackson St, San Francisco, CA 94016" -248789,Wired Headphones,1,11.99,09/24/19 10:51,"258 14th St, Seattle, WA 98101" -248790,USB-C Charging Cable,1,11.95,09/07/19 14:36,"358 Spruce St, San Francisco, CA 94016" -248791,Google Phone,1,600,09/07/19 19:36,"952 12th St, New York City, NY 10001" -248792,Bose SoundSport Headphones,1,99.99,09/08/19 23:22,"705 2nd St, San Francisco, CA 94016" -248793,20in Monitor,1,109.99,09/22/19 12:13,"283 Lake St, Los Angeles, CA 90001" -248794,Apple Airpods Headphones,1,150,09/14/19 11:24,"67 North St, New York City, NY 10001" -248795,AAA Batteries (4-pack),1,2.99,09/05/19 17:35,"800 Madison St, Atlanta, GA 30301" -248796,20in Monitor,1,109.99,09/11/19 23:43,"559 Hill St, New York City, NY 10001" -248797,Flatscreen TV,1,300,09/25/19 14:09,"846 Adams St, Atlanta, GA 30301" -248798,USB-C Charging Cable,1,11.95,09/03/19 12:31,"407 13th St, Austin, TX 73301" -248799,27in 4K Gaming Monitor,1,389.99,09/06/19 17:39,"974 Park St, San Francisco, CA 94016" -248800,Macbook Pro Laptop,1,1700,09/28/19 14:06,"882 1st St, San Francisco, CA 94016" -248801,Macbook Pro Laptop,1,1700,09/10/19 20:21,"904 Walnut St, Los Angeles, CA 90001" -248802,AAA Batteries (4-pack),2,2.99,09/15/19 10:12,"595 7th St, New York City, NY 10001" -248803,Bose SoundSport Headphones,1,99.99,09/09/19 08:38,"705 Highland St, Dallas, TX 75001" -248804,Lightning Charging Cable,1,14.95,09/12/19 21:04,"736 Church St, Dallas, TX 75001" -248805,Bose SoundSport Headphones,1,99.99,09/05/19 19:25,"147 Hickory St, Austin, TX 73301" -248806,Apple Airpods Headphones,1,150,09/04/19 11:03,"312 North St, New York City, NY 10001" -248807,AA Batteries (4-pack),3,3.84,09/07/19 20:04,"93 Park St, Atlanta, GA 30301" -248808,Wired Headphones,1,11.99,09/07/19 10:04,"132 2nd St, New York City, NY 10001" -248809,Apple Airpods Headphones,1,150,09/02/19 13:29,"999 North St, Dallas, TX 75001" -248810,Wired Headphones,1,11.99,09/19/19 13:39,"51 5th St, Austin, TX 73301" -248811,Lightning Charging Cable,1,14.95,09/20/19 12:12,"688 Johnson St, San Francisco, CA 94016" -248811,AA Batteries (4-pack),3,3.84,09/20/19 12:12,"688 Johnson St, San Francisco, CA 94016" -248812,Lightning Charging Cable,1,14.95,09/24/19 12:24,"236 Church St, New York City, NY 10001" -248813,Wired Headphones,1,11.99,09/20/19 19:45,"484 Jackson St, New York City, NY 10001" -248814,20in Monitor,1,109.99,09/23/19 06:37,"530 5th St, Los Angeles, CA 90001" -248815,Macbook Pro Laptop,1,1700,09/16/19 11:07,"331 Willow St, San Francisco, CA 94016" -248816,AAA Batteries (4-pack),1,2.99,09/21/19 23:38,"833 Jefferson St, New York City, NY 10001" -248817,AAA Batteries (4-pack),1,2.99,09/03/19 22:10,"258 Washington St, Los Angeles, CA 90001" -248818,Lightning Charging Cable,1,14.95,09/19/19 12:27,"46 Park St, New York City, NY 10001" -248819,Macbook Pro Laptop,1,1700,09/12/19 14:53,"568 Hill St, Dallas, TX 75001" -248820,Wired Headphones,1,11.99,09/02/19 19:13,"668 5th St, Boston, MA 02215" -248821,AAA Batteries (4-pack),2,2.99,09/10/19 13:24,"534 Park St, Austin, TX 73301" -248822,27in 4K Gaming Monitor,1,389.99,09/17/19 20:26,"279 Spruce St, Portland, OR 97035" -248823,Lightning Charging Cable,2,14.95,09/01/19 13:05,"968 12th St, San Francisco, CA 94016" -248824,Apple Airpods Headphones,1,150,09/10/19 17:48,"560 Wilson St, Dallas, TX 75001" -248825,Flatscreen TV,1,300,09/24/19 21:02,"399 9th St, San Francisco, CA 94016" -248826,AA Batteries (4-pack),1,3.84,09/18/19 11:35,"988 7th St, Austin, TX 73301" -248827,Bose SoundSport Headphones,1,99.99,09/04/19 17:34,"290 Park St, Portland, OR 97035" -248828,iPhone,1,700,09/04/19 20:10,"190 Walnut St, Dallas, TX 75001" -248829,Wired Headphones,1,11.99,09/17/19 03:11,"113 Hill St, Seattle, WA 98101" -248830,Wired Headphones,1,11.99,09/16/19 20:45,"226 9th St, Atlanta, GA 30301" -248831,LG Washing Machine,1,600.0,09/30/19 14:10,"160 Hickory St, New York City, NY 10001" -248832,USB-C Charging Cable,1,11.95,09/20/19 09:07,"322 Ridge St, Seattle, WA 98101" -248833,Wired Headphones,1,11.99,09/23/19 19:00,"150 Sunset St, New York City, NY 10001" -248834,USB-C Charging Cable,1,11.95,09/20/19 17:22,"581 12th St, San Francisco, CA 94016" -248835,Bose SoundSport Headphones,1,99.99,09/30/19 09:25,"594 Willow St, San Francisco, CA 94016" -248836,Wired Headphones,1,11.99,09/16/19 12:55,"155 Johnson St, Seattle, WA 98101" -248837,Lightning Charging Cable,1,14.95,09/26/19 11:51,"762 5th St, Seattle, WA 98101" -248837,27in FHD Monitor,1,149.99,09/26/19 11:51,"762 5th St, Seattle, WA 98101" -248838,Lightning Charging Cable,1,14.95,09/29/19 18:31,"483 Johnson St, New York City, NY 10001" -248839,USB-C Charging Cable,1,11.95,09/29/19 21:02,"545 7th St, Portland, OR 97035" -248840,Wired Headphones,1,11.99,09/23/19 13:31,"407 Park St, Los Angeles, CA 90001" -248841,Lightning Charging Cable,2,14.95,09/21/19 10:08,"336 14th St, San Francisco, CA 94016" -248842,Wired Headphones,1,11.99,09/22/19 22:28,"290 Cedar St, San Francisco, CA 94016" -248843,Flatscreen TV,1,300,09/06/19 14:06,"900 South St, Boston, MA 02215" -248844,AA Batteries (4-pack),1,3.84,09/20/19 19:51,"302 6th St, Seattle, WA 98101" -248845,Apple Airpods Headphones,1,150,09/25/19 16:45,"22 Maple St, Seattle, WA 98101" -248846,Lightning Charging Cable,1,14.95,09/22/19 05:38,"438 Cherry St, New York City, NY 10001" -248847,AA Batteries (4-pack),2,3.84,09/16/19 07:26,"32 Chestnut St, Los Angeles, CA 90001" -248848,AA Batteries (4-pack),1,3.84,09/27/19 10:08,"297 4th St, Seattle, WA 98101" -248849,AAA Batteries (4-pack),1,2.99,09/16/19 21:55,"426 South St, Atlanta, GA 30301" -248850,Apple Airpods Headphones,1,150,09/22/19 15:17,"301 Church St, New York City, NY 10001" -248851,27in FHD Monitor,1,149.99,09/04/19 14:07,"392 Wilson St, San Francisco, CA 94016" -248852,Google Phone,1,600,09/07/19 15:01,"612 Sunset St, Seattle, WA 98101" -248853,USB-C Charging Cable,1,11.95,09/24/19 19:22,"722 River St, San Francisco, CA 94016" -248854,34in Ultrawide Monitor,1,379.99,09/20/19 14:27,"674 8th St, Los Angeles, CA 90001" -248855,Lightning Charging Cable,1,14.95,09/03/19 21:29,"617 Madison St, San Francisco, CA 94016" -248856,Vareebadd Phone,1,400,09/15/19 14:00,"514 10th St, Dallas, TX 75001" -248856,USB-C Charging Cable,1,11.95,09/15/19 14:00,"514 10th St, Dallas, TX 75001" -248857,USB-C Charging Cable,1,11.95,09/03/19 10:52,"536 4th St, San Francisco, CA 94016" -248858,27in FHD Monitor,1,149.99,09/07/19 11:20,"103 11th St, Los Angeles, CA 90001" -248859,Lightning Charging Cable,1,14.95,09/02/19 15:21,"626 Maple St, New York City, NY 10001" -248860,Bose SoundSport Headphones,1,99.99,09/20/19 23:09,"912 River St, New York City, NY 10001" -248861,AA Batteries (4-pack),1,3.84,09/12/19 21:39,"738 7th St, San Francisco, CA 94016" -248862,Wired Headphones,1,11.99,09/11/19 18:35,"231 Lincoln St, Boston, MA 02215" -248863,AA Batteries (4-pack),1,3.84,09/23/19 19:41,"169 Lincoln St, Los Angeles, CA 90001" -248864,Lightning Charging Cable,1,14.95,09/26/19 00:17,"647 Jackson St, New York City, NY 10001" -248865,USB-C Charging Cable,1,11.95,09/27/19 19:55,"596 Cedar St, Seattle, WA 98101" -248866,Lightning Charging Cable,1,14.95,09/27/19 09:46,"964 Pine St, Boston, MA 02215" -248867,27in FHD Monitor,1,149.99,09/20/19 16:17,"509 River St, San Francisco, CA 94016" -248868,AAA Batteries (4-pack),3,2.99,09/21/19 18:11,"493 4th St, Austin, TX 73301" -248869,AA Batteries (4-pack),1,3.84,09/18/19 15:32,"297 Madison St, New York City, NY 10001" -248870,Wired Headphones,1,11.99,09/24/19 13:13,"78 Pine St, Los Angeles, CA 90001" -248871,34in Ultrawide Monitor,1,379.99,09/24/19 02:39,"228 West St, Atlanta, GA 30301" -248872,AA Batteries (4-pack),1,3.84,09/15/19 10:02,"90 Willow St, Los Angeles, CA 90001" -248873,Apple Airpods Headphones,1,150,09/16/19 13:03,"719 11th St, Los Angeles, CA 90001" -248874,AAA Batteries (4-pack),1,2.99,09/11/19 09:13,"761 Lake St, Boston, MA 02215" -248875,Wired Headphones,1,11.99,09/22/19 12:20,"172 Ridge St, Los Angeles, CA 90001" -248876,Lightning Charging Cable,1,14.95,09/02/19 16:17,"626 Forest St, San Francisco, CA 94016" -248877,AA Batteries (4-pack),1,3.84,09/16/19 11:27,"13 Hickory St, Austin, TX 73301" -248878,Apple Airpods Headphones,1,150,09/01/19 13:04,"19 14th St, Atlanta, GA 30301" -248879,Lightning Charging Cable,1,14.95,09/18/19 09:57,"365 Hickory St, Atlanta, GA 30301" -248880,Macbook Pro Laptop,1,1700,09/27/19 09:53,"749 Sunset St, Los Angeles, CA 90001" -248881,Bose SoundSport Headphones,1,99.99,09/15/19 18:05,"36 Madison St, Seattle, WA 98101" -248882,Apple Airpods Headphones,1,150,09/12/19 10:23,"365 Cedar St, Boston, MA 02215" -248883,Apple Airpods Headphones,1,150,09/20/19 09:23,"995 Ridge St, Los Angeles, CA 90001" -248884,20in Monitor,1,109.99,09/11/19 15:01,"592 11th St, Austin, TX 73301" -248885,Google Phone,1,600,09/15/19 23:41,"637 Cedar St, Dallas, TX 75001" -248885,USB-C Charging Cable,1,11.95,09/15/19 23:41,"637 Cedar St, Dallas, TX 75001" -248886,USB-C Charging Cable,2,11.95,09/11/19 23:00,"355 12th St, Boston, MA 02215" -248887,AAA Batteries (4-pack),1,2.99,09/13/19 13:20,"846 6th St, Seattle, WA 98101" -248888,iPhone,1,700,09/14/19 16:40,"286 Cedar St, Austin, TX 73301" -248889,USB-C Charging Cable,1,11.95,09/28/19 19:38,"698 Cedar St, Los Angeles, CA 90001" -248890,Flatscreen TV,1,300,09/06/19 18:45,"741 Cedar St, Dallas, TX 75001" -248891,AA Batteries (4-pack),2,3.84,09/10/19 20:20,"263 Lincoln St, San Francisco, CA 94016" -248892,Wired Headphones,1,11.99,09/18/19 19:11,"123 Cherry St, New York City, NY 10001" -248893,AA Batteries (4-pack),1,3.84,09/03/19 10:31,"705 1st St, Los Angeles, CA 90001" -248894,Apple Airpods Headphones,1,150,09/05/19 19:09,"314 2nd St, San Francisco, CA 94016" -248895,Wired Headphones,1,11.99,09/06/19 20:05,"109 Main St, Boston, MA 02215" -248896,Bose SoundSport Headphones,1,99.99,09/15/19 14:19,"14 Madison St, Seattle, WA 98101" -248897,27in 4K Gaming Monitor,1,389.99,09/02/19 07:22,"885 North St, Boston, MA 02215" -248898,Apple Airpods Headphones,1,150,09/22/19 10:29,"773 Spruce St, Boston, MA 02215" -248899,27in FHD Monitor,1,149.99,09/11/19 18:00,"859 Spruce St, New York City, NY 10001" -248900,34in Ultrawide Monitor,1,379.99,09/18/19 20:20,"429 South St, San Francisco, CA 94016" -,,,,, -248901,Google Phone,1,600,09/24/19 08:11,"626 5th St, Los Angeles, CA 90001" -248901,Wired Headphones,1,11.99,09/24/19 08:11,"626 5th St, Los Angeles, CA 90001" -248902,AAA Batteries (4-pack),1,2.99,09/26/19 10:38,"994 Madison St, Los Angeles, CA 90001" -248903,Bose SoundSport Headphones,1,99.99,09/09/19 19:48,"817 River St, Los Angeles, CA 90001" -248904,Apple Airpods Headphones,1,150,09/16/19 13:14,"649 4th St, Atlanta, GA 30301" -248905,AAA Batteries (4-pack),2,2.99,09/26/19 12:16,"790 Lakeview St, New York City, NY 10001" -248906,Bose SoundSport Headphones,1,99.99,09/10/19 14:47,"14 Chestnut St, San Francisco, CA 94016" -248907,Lightning Charging Cable,1,14.95,09/03/19 14:31,"324 Lincoln St, Atlanta, GA 30301" -248908,USB-C Charging Cable,1,11.95,09/01/19 22:28,"96 Cedar St, San Francisco, CA 94016" -248909,Bose SoundSport Headphones,1,99.99,09/15/19 17:15,"639 Jackson St, Los Angeles, CA 90001" -248910,AA Batteries (4-pack),1,3.84,09/17/19 18:42,"965 12th St, New York City, NY 10001" -248911,Wired Headphones,1,11.99,09/15/19 11:38,"763 Adams St, Boston, MA 02215" -248912,Wired Headphones,1,11.99,09/04/19 23:05,"416 4th St, New York City, NY 10001" -248913,Bose SoundSport Headphones,1,99.99,09/26/19 17:38,"308 Church St, New York City, NY 10001" -248914,iPhone,1,700,09/05/19 22:40,"924 Willow St, New York City, NY 10001" -248915,Bose SoundSport Headphones,1,99.99,09/11/19 14:50,"978 Meadow St, Boston, MA 02215" -248916,AA Batteries (4-pack),1,3.84,09/20/19 18:20,"634 Wilson St, Atlanta, GA 30301" -248917,USB-C Charging Cable,1,11.95,09/27/19 18:17,"122 Chestnut St, Atlanta, GA 30301" -248918,Bose SoundSport Headphones,1,99.99,09/07/19 00:47,"857 13th St, Portland, OR 97035" -248919,AA Batteries (4-pack),1,3.84,09/06/19 01:22,"284 5th St, Seattle, WA 98101" -248920,27in FHD Monitor,1,149.99,09/15/19 18:26,"838 Elm St, New York City, NY 10001" -248921,34in Ultrawide Monitor,1,379.99,09/28/19 19:49,"758 14th St, Los Angeles, CA 90001" -248922,Apple Airpods Headphones,1,150,09/01/19 05:10,"39 Spruce St, Portland, ME 04101" -248923,Lightning Charging Cable,1,14.95,09/17/19 22:20,"824 Lakeview St, Boston, MA 02215" -248924,Lightning Charging Cable,1,14.95,09/19/19 13:12,"984 7th St, Seattle, WA 98101" -248924,USB-C Charging Cable,1,11.95,09/19/19 13:12,"984 7th St, Seattle, WA 98101" -248925,AAA Batteries (4-pack),1,2.99,09/05/19 13:33,"341 Hickory St, Los Angeles, CA 90001" -248926,iPhone,1,700,09/29/19 18:10,"723 Church St, Dallas, TX 75001" -248927,Wired Headphones,1,11.99,09/09/19 21:53,"321 Washington St, New York City, NY 10001" -248928,AAA Batteries (4-pack),3,2.99,09/21/19 20:35,"409 Maple St, Los Angeles, CA 90001" -248929,34in Ultrawide Monitor,1,379.99,09/28/19 09:12,"58 Sunset St, Los Angeles, CA 90001" -248930,USB-C Charging Cable,1,11.95,09/21/19 01:30,"923 14th St, New York City, NY 10001" -248931,34in Ultrawide Monitor,1,379.99,09/16/19 16:17,"715 Johnson St, Seattle, WA 98101" -248932,USB-C Charging Cable,1,11.95,09/15/19 15:30,"531 Sunset St, Dallas, TX 75001" -248933,USB-C Charging Cable,1,11.95,09/08/19 14:54,"174 14th St, New York City, NY 10001" -248934,20in Monitor,1,109.99,09/22/19 11:32,"689 West St, Seattle, WA 98101" -248935,AA Batteries (4-pack),1,3.84,09/02/19 16:23,"377 Madison St, Atlanta, GA 30301" -248936,Apple Airpods Headphones,1,150,09/08/19 22:41,"643 7th St, Los Angeles, CA 90001" -248937,Wired Headphones,1,11.99,09/07/19 11:04,"281 Elm St, New York City, NY 10001" -248938,Flatscreen TV,2,300,09/19/19 20:32,"205 North St, Portland, OR 97035" -248939,27in FHD Monitor,1,149.99,09/08/19 00:29,"319 Lake St, Los Angeles, CA 90001" -248940,Bose SoundSport Headphones,1,99.99,09/24/19 17:41,"918 9th St, San Francisco, CA 94016" -248941,Lightning Charging Cable,1,14.95,09/21/19 19:16,"696 Forest St, San Francisco, CA 94016" -248942,AAA Batteries (4-pack),1,2.99,09/23/19 02:47,"436 Jackson St, New York City, NY 10001" -248943,Google Phone,1,600,09/11/19 17:48,"555 Hickory St, Dallas, TX 75001" -248943,USB-C Charging Cable,1,11.95,09/11/19 17:48,"555 Hickory St, Dallas, TX 75001" -248944,ThinkPad Laptop,1,999.99,09/24/19 07:45,"854 2nd St, San Francisco, CA 94016" -248945,Lightning Charging Cable,1,14.95,09/03/19 20:27,"941 Sunset St, Atlanta, GA 30301" -248946,AA Batteries (4-pack),1,3.84,09/18/19 21:39,"619 Maple St, Atlanta, GA 30301" -248947,Lightning Charging Cable,1,14.95,09/13/19 19:59,"71 Hickory St, Seattle, WA 98101" -248948,USB-C Charging Cable,1,11.95,09/06/19 18:15,"171 Jackson St, New York City, NY 10001" -248949,Bose SoundSport Headphones,1,99.99,09/24/19 21:55,"540 Lake St, Atlanta, GA 30301" -248950,Bose SoundSport Headphones,1,99.99,09/18/19 22:48,"606 Washington St, Dallas, TX 75001" -248951,27in FHD Monitor,1,149.99,09/02/19 22:57,"284 Lake St, Seattle, WA 98101" -248952,Flatscreen TV,1,300,09/05/19 22:00,"479 Wilson St, New York City, NY 10001" -248953,Google Phone,1,600,09/18/19 11:13,"789 Jefferson St, Seattle, WA 98101" -248953,Wired Headphones,1,11.99,09/18/19 11:13,"789 Jefferson St, Seattle, WA 98101" -248954,AA Batteries (4-pack),3,3.84,09/02/19 18:15,"991 Pine St, San Francisco, CA 94016" -248955,Apple Airpods Headphones,1,150,09/01/19 16:03,"275 10th St, Los Angeles, CA 90001" -248956,ThinkPad Laptop,1,999.99,09/11/19 11:10,"349 North St, San Francisco, CA 94016" -248957,AA Batteries (4-pack),2,3.84,09/21/19 16:31,"314 West St, Los Angeles, CA 90001" -248958,Lightning Charging Cable,1,14.95,09/09/19 12:18,"89 River St, Boston, MA 02215" -248959,Apple Airpods Headphones,1,150,09/05/19 07:01,"429 Chestnut St, New York City, NY 10001" -248960,Wired Headphones,1,11.99,09/23/19 11:25,"444 Church St, Austin, TX 73301" -248961,USB-C Charging Cable,1,11.95,09/30/19 17:17,"231 13th St, Boston, MA 02215" -248962,iPhone,1,700,09/18/19 17:00,"33 Park St, San Francisco, CA 94016" -248963,27in 4K Gaming Monitor,1,389.99,09/21/19 13:23,"850 West St, Portland, OR 97035" -248964,27in FHD Monitor,1,149.99,09/28/19 09:39,"339 Chestnut St, Boston, MA 02215" -248965,AA Batteries (4-pack),3,3.84,09/08/19 12:48,"344 Elm St, Atlanta, GA 30301" -248966,iPhone,1,700,09/27/19 13:04,"333 Madison St, San Francisco, CA 94016" -248967,Apple Airpods Headphones,1,150,09/25/19 20:20,"395 Forest St, Los Angeles, CA 90001" -248968,Apple Airpods Headphones,1,150,09/08/19 15:20,"418 Cherry St, Los Angeles, CA 90001" -248969,Google Phone,1,600,09/22/19 00:08,"925 Dogwood St, Portland, OR 97035" -248970,AAA Batteries (4-pack),2,2.99,09/17/19 01:41,"746 Johnson St, Atlanta, GA 30301" -248971,34in Ultrawide Monitor,1,379.99,09/09/19 15:36,"417 Chestnut St, New York City, NY 10001" -248972,27in 4K Gaming Monitor,1,389.99,09/19/19 04:30,"836 13th St, Los Angeles, CA 90001" -248973,20in Monitor,1,109.99,09/08/19 14:29,"947 Wilson St, New York City, NY 10001" -248974,Apple Airpods Headphones,1,150,09/12/19 23:11,"367 2nd St, Boston, MA 02215" -248975,Flatscreen TV,1,300,09/11/19 12:31,"934 12th St, San Francisco, CA 94016" -248976,34in Ultrawide Monitor,1,379.99,09/11/19 11:12,"498 2nd St, Los Angeles, CA 90001" -248977,Bose SoundSport Headphones,1,99.99,09/23/19 13:10,"935 Johnson St, San Francisco, CA 94016" -248978,34in Ultrawide Monitor,1,379.99,09/24/19 21:49,"352 Highland St, Dallas, TX 75001" -248979,Wired Headphones,1,11.99,09/28/19 05:39,"124 Washington St, Portland, OR 97035" -248980,AA Batteries (4-pack),2,3.84,09/25/19 09:31,"731 10th St, Dallas, TX 75001" -248981,AAA Batteries (4-pack),1,2.99,09/07/19 09:34,"110 Chestnut St, Atlanta, GA 30301" -248982,Google Phone,1,600,09/27/19 19:13,"525 13th St, Boston, MA 02215" -248983,Bose SoundSport Headphones,1,99.99,09/24/19 13:57,"216 Sunset St, San Francisco, CA 94016" -248984,Flatscreen TV,1,300,09/01/19 22:01,"62 River St, Dallas, TX 75001" -248985,iPhone,1,700,09/24/19 23:17,"82 Chestnut St, Dallas, TX 75001" -248985,Lightning Charging Cable,1,14.95,09/24/19 23:17,"82 Chestnut St, Dallas, TX 75001" -248986,27in 4K Gaming Monitor,1,389.99,09/30/19 20:28,"370 Jefferson St, Atlanta, GA 30301" -248987,AAA Batteries (4-pack),1,2.99,09/08/19 22:48,"503 2nd St, Austin, TX 73301" -248988,AAA Batteries (4-pack),2,2.99,09/04/19 07:11,"904 South St, Atlanta, GA 30301" -248989,AA Batteries (4-pack),1,3.84,09/08/19 10:59,"838 Lincoln St, New York City, NY 10001" -248989,Lightning Charging Cable,1,14.95,09/08/19 10:59,"838 Lincoln St, New York City, NY 10001" -248990,AAA Batteries (4-pack),2,2.99,09/10/19 19:50,"244 North St, Portland, OR 97035" -248991,Flatscreen TV,1,300,09/16/19 09:48,"428 Dogwood St, San Francisco, CA 94016" -248992,Lightning Charging Cable,1,14.95,09/01/19 12:54,"316 9th St, Atlanta, GA 30301" -248993,AA Batteries (4-pack),2,3.84,09/20/19 21:27,"61 Dogwood St, Boston, MA 02215" -248994,AAA Batteries (4-pack),1,2.99,09/25/19 14:12,"263 Elm St, Atlanta, GA 30301" -248995,Lightning Charging Cable,1,14.95,09/12/19 14:17,"497 Hickory St, Atlanta, GA 30301" -248996,Apple Airpods Headphones,1,150,09/26/19 16:23,"114 8th St, San Francisco, CA 94016" -248997,AA Batteries (4-pack),1,3.84,09/24/19 07:08,"844 Maple St, San Francisco, CA 94016" -248998,AA Batteries (4-pack),1,3.84,09/11/19 14:45,"327 Chestnut St, Atlanta, GA 30301" -248999,27in 4K Gaming Monitor,1,389.99,09/29/19 21:22,"450 Jackson St, Los Angeles, CA 90001" -249000,iPhone,1,700,09/12/19 23:18,"301 Elm St, Boston, MA 02215" -249001,ThinkPad Laptop,1,999.99,09/10/19 00:34,"95 Cherry St, Los Angeles, CA 90001" -249001,AAA Batteries (4-pack),1,2.99,09/10/19 00:34,"95 Cherry St, Los Angeles, CA 90001" -249002,AAA Batteries (4-pack),1,2.99,09/16/19 13:35,"319 Madison St, Portland, ME 04101" -249003,Apple Airpods Headphones,1,150,09/26/19 19:22,"576 Willow St, New York City, NY 10001" -249004,34in Ultrawide Monitor,1,379.99,09/29/19 12:17,"192 Washington St, San Francisco, CA 94016" -249005,Apple Airpods Headphones,1,150,09/24/19 05:36,"951 14th St, New York City, NY 10001" -249006,iPhone,1,700,09/13/19 19:15,"451 Sunset St, New York City, NY 10001" -249007,AA Batteries (4-pack),2,3.84,09/04/19 18:02,"390 Main St, San Francisco, CA 94016" -249008,Lightning Charging Cable,1,14.95,09/02/19 18:42,"687 Jackson St, San Francisco, CA 94016" -249009,Bose SoundSport Headphones,1,99.99,09/27/19 10:07,"693 12th St, Boston, MA 02215" -249010,AA Batteries (4-pack),1,3.84,09/10/19 10:07,"436 5th St, New York City, NY 10001" -249011,AAA Batteries (4-pack),2,2.99,09/19/19 11:04,"927 Johnson St, San Francisco, CA 94016" -249012,Apple Airpods Headphones,1,150,09/26/19 08:48,"393 5th St, Seattle, WA 98101" -249013,Lightning Charging Cable,1,14.95,09/24/19 18:02,"321 Walnut St, New York City, NY 10001" -249014,AAA Batteries (4-pack),1,2.99,09/02/19 21:52,"240 Pine St, Atlanta, GA 30301" -249015,Wired Headphones,1,11.99,09/23/19 19:33,"34 Pine St, Boston, MA 02215" -249016,Apple Airpods Headphones,1,150,09/16/19 14:56,"436 Highland St, Seattle, WA 98101" -249017,iPhone,1,700,09/10/19 16:40,"923 8th St, San Francisco, CA 94016" -249018,Wired Headphones,1,11.99,09/07/19 23:21,"697 2nd St, Austin, TX 73301" -249019,Bose SoundSport Headphones,1,99.99,09/14/19 19:56,"763 Church St, Portland, OR 97035" -249020,AA Batteries (4-pack),1,3.84,09/27/19 23:39,"484 5th St, San Francisco, CA 94016" -249021,Bose SoundSport Headphones,1,99.99,09/15/19 16:09,"74 Lincoln St, San Francisco, CA 94016" -249022,27in 4K Gaming Monitor,1,389.99,09/24/19 22:04,"231 Cherry St, Portland, OR 97035" -249023,Lightning Charging Cable,1,14.95,09/27/19 14:56,"612 10th St, Los Angeles, CA 90001" -249024,34in Ultrawide Monitor,1,379.99,09/18/19 09:53,"485 6th St, San Francisco, CA 94016" -249025,34in Ultrawide Monitor,1,379.99,09/10/19 01:35,"864 River St, San Francisco, CA 94016" -249026,20in Monitor,1,109.99,09/03/19 20:10,"587 8th St, Boston, MA 02215" -249027,Apple Airpods Headphones,1,150,09/07/19 09:26,"705 Johnson St, Los Angeles, CA 90001" -249028,20in Monitor,1,109.99,09/27/19 11:13,"64 Jefferson St, Boston, MA 02215" -249029,Wired Headphones,1,11.99,09/27/19 10:56,"778 South St, San Francisco, CA 94016" -249030,iPhone,1,700,09/25/19 01:38,"588 14th St, Los Angeles, CA 90001" -249031,AAA Batteries (4-pack),2,2.99,09/14/19 21:56,"370 Pine St, Portland, OR 97035" -249032,Lightning Charging Cable,1,14.95,09/06/19 18:32,"680 Cedar St, Austin, TX 73301" -249033,AA Batteries (4-pack),2,3.84,09/23/19 20:52,"239 7th St, Los Angeles, CA 90001" -249034,AAA Batteries (4-pack),1,2.99,09/30/19 16:15,"157 Ridge St, Austin, TX 73301" -249035,AA Batteries (4-pack),1,3.84,09/09/19 18:46,"677 Spruce St, Seattle, WA 98101" -249036,AA Batteries (4-pack),5,3.84,09/19/19 11:56,"250 12th St, Atlanta, GA 30301" -249037,Lightning Charging Cable,1,14.95,09/09/19 22:56,"123 Johnson St, Seattle, WA 98101" -249038,AA Batteries (4-pack),1,3.84,09/09/19 12:45,"781 Maple St, Seattle, WA 98101" -249039,AAA Batteries (4-pack),1,2.99,09/09/19 09:02,"200 Dogwood St, San Francisco, CA 94016" -249040,Bose SoundSport Headphones,1,99.99,09/24/19 14:32,"965 Lincoln St, Boston, MA 02215" -249041,Google Phone,1,600,09/10/19 20:16,"762 Hill St, Atlanta, GA 30301" -249042,Wired Headphones,1,11.99,09/03/19 20:49,"570 7th St, San Francisco, CA 94016" -249043,Lightning Charging Cable,1,14.95,09/24/19 16:21,"114 14th St, Los Angeles, CA 90001" -249044,Bose SoundSport Headphones,1,99.99,09/24/19 22:37,"616 12th St, Los Angeles, CA 90001" -249045,USB-C Charging Cable,1,11.95,09/07/19 12:20,"569 River St, Seattle, WA 98101" -249046,Apple Airpods Headphones,1,150,09/08/19 18:37,"560 8th St, New York City, NY 10001" -249047,34in Ultrawide Monitor,1,379.99,09/28/19 22:53,"245 9th St, San Francisco, CA 94016" -249048,Wired Headphones,1,11.99,09/19/19 20:43,"725 River St, New York City, NY 10001" -249049,Lightning Charging Cable,2,14.95,09/20/19 16:16,"667 Willow St, Dallas, TX 75001" -249050,27in FHD Monitor,1,149.99,09/19/19 10:10,"737 13th St, San Francisco, CA 94016" -249051,USB-C Charging Cable,1,11.95,09/13/19 02:49,"303 River St, Boston, MA 02215" -249052,27in 4K Gaming Monitor,1,389.99,09/20/19 22:01,"648 Chestnut St, Los Angeles, CA 90001" -249053,USB-C Charging Cable,3,11.95,09/10/19 10:16,"607 Pine St, New York City, NY 10001" -249054,AAA Batteries (4-pack),1,2.99,09/17/19 07:41,"943 10th St, New York City, NY 10001" -249055,USB-C Charging Cable,1,11.95,09/13/19 22:23,"501 Cedar St, Austin, TX 73301" -249056,USB-C Charging Cable,1,11.95,09/19/19 11:53,"429 River St, New York City, NY 10001" -249057,Apple Airpods Headphones,1,150,09/16/19 12:31,"676 Washington St, San Francisco, CA 94016" -249058,AA Batteries (4-pack),1,3.84,09/14/19 17:37,"612 8th St, Atlanta, GA 30301" -249059,Lightning Charging Cable,1,14.95,09/09/19 08:39,"829 Cherry St, Atlanta, GA 30301" -249060,27in FHD Monitor,1,149.99,09/03/19 19:21,"162 Johnson St, San Francisco, CA 94016" -249061,iPhone,1,700,09/02/19 19:44,"394 5th St, San Francisco, CA 94016" -249062,USB-C Charging Cable,1,11.95,09/16/19 07:56,"24 Pine St, Boston, MA 02215" -249063,34in Ultrawide Monitor,1,379.99,09/15/19 19:31,"891 12th St, Boston, MA 02215" -249064,27in FHD Monitor,1,149.99,09/23/19 21:53,"653 1st St, New York City, NY 10001" -249065,AAA Batteries (4-pack),4,2.99,09/12/19 12:32,"439 Willow St, Atlanta, GA 30301" -249066,Lightning Charging Cable,1,14.95,09/18/19 13:22,"638 Jefferson St, Portland, ME 04101" -249067,Flatscreen TV,1,300,09/14/19 16:30,"629 North St, San Francisco, CA 94016" -249068,AAA Batteries (4-pack),1,2.99,09/17/19 00:55,"363 Chestnut St, San Francisco, CA 94016" -249069,Bose SoundSport Headphones,1,99.99,09/28/19 13:46,"833 Cherry St, San Francisco, CA 94016" -249070,Google Phone,1,600,09/20/19 13:44,"347 Jefferson St, New York City, NY 10001" -249071,AA Batteries (4-pack),1,3.84,09/08/19 13:41,"848 7th St, Boston, MA 02215" -249072,Wired Headphones,1,11.99,09/10/19 01:40,"164 1st St, San Francisco, CA 94016" -249073,27in 4K Gaming Monitor,1,389.99,09/29/19 20:48,"180 Hill St, Los Angeles, CA 90001" -249074,AA Batteries (4-pack),1,3.84,09/29/19 11:53,"781 Lincoln St, Boston, MA 02215" -249075,Bose SoundSport Headphones,1,99.99,09/18/19 18:31,"483 Adams St, San Francisco, CA 94016" -249076,27in FHD Monitor,1,149.99,09/09/19 17:32,"430 4th St, Austin, TX 73301" -249077,USB-C Charging Cable,1,11.95,09/12/19 12:56,"174 Hickory St, San Francisco, CA 94016" -249078,AAA Batteries (4-pack),1,2.99,09/19/19 23:15,"4 13th St, Austin, TX 73301" -249079,Apple Airpods Headphones,1,150,09/05/19 14:47,"753 7th St, Portland, OR 97035" -249080,27in 4K Gaming Monitor,1,389.99,09/13/19 22:17,"779 Lake St, San Francisco, CA 94016" -249081,iPhone,1,700,09/19/19 22:23,"108 Dogwood St, San Francisco, CA 94016" -249081,Lightning Charging Cable,1,14.95,09/19/19 22:23,"108 Dogwood St, San Francisco, CA 94016" -249081,Wired Headphones,1,11.99,09/19/19 22:23,"108 Dogwood St, San Francisco, CA 94016" -249082,USB-C Charging Cable,1,11.95,09/13/19 07:03,"515 11th St, Dallas, TX 75001" -249083,Apple Airpods Headphones,1,150,09/03/19 18:48,"549 Church St, Portland, OR 97035" -249084,Google Phone,1,600,09/15/19 12:22,"604 West St, Los Angeles, CA 90001" -249084,USB-C Charging Cable,1,11.95,09/15/19 12:22,"604 West St, Los Angeles, CA 90001" -249085,Wired Headphones,1,11.99,09/06/19 22:23,"157 Adams St, Los Angeles, CA 90001" -249086,Lightning Charging Cable,1,14.95,09/08/19 04:08,"871 South St, Seattle, WA 98101" -249087,AA Batteries (4-pack),1,3.84,09/05/19 18:36,"706 West St, Boston, MA 02215" -249088,Apple Airpods Headphones,1,150,09/10/19 17:17,"888 Elm St, Dallas, TX 75001" -249089,iPhone,1,700,09/17/19 14:03,"344 Jefferson St, New York City, NY 10001" -249090,USB-C Charging Cable,1,11.95,09/19/19 17:01,"690 Willow St, Los Angeles, CA 90001" -249091,iPhone,1,700,09/15/19 18:30,"462 Cedar St, San Francisco, CA 94016" -249092,AA Batteries (4-pack),1,3.84,09/30/19 10:27,"934 Jackson St, San Francisco, CA 94016" -249093,USB-C Charging Cable,1,11.95,09/09/19 13:43,"958 6th St, Dallas, TX 75001" -249094,AAA Batteries (4-pack),1,2.99,09/21/19 18:56,"912 Cherry St, Austin, TX 73301" -249095,27in FHD Monitor,1,149.99,09/16/19 18:32,"501 8th St, San Francisco, CA 94016" -249096,Google Phone,1,600,09/01/19 09:12,"693 7th St, San Francisco, CA 94016" -249097,Macbook Pro Laptop,1,1700,09/21/19 11:06,"19 Dogwood St, Seattle, WA 98101" -249098,Wired Headphones,1,11.99,09/22/19 21:31,"415 9th St, Seattle, WA 98101" -249099,AAA Batteries (4-pack),1,2.99,09/01/19 15:42,"871 Pine St, San Francisco, CA 94016" -249100,Bose SoundSport Headphones,1,99.99,09/13/19 16:42,"839 Spruce St, Dallas, TX 75001" -249101,27in 4K Gaming Monitor,1,389.99,09/06/19 10:04,"316 8th St, San Francisco, CA 94016" -249102,Lightning Charging Cable,1,14.95,09/27/19 12:38,"834 Pine St, Dallas, TX 75001" -249103,Bose SoundSport Headphones,1,99.99,09/09/19 19:06,"582 Lakeview St, San Francisco, CA 94016" -249104,iPhone,1,700,09/13/19 12:50,"323 2nd St, Boston, MA 02215" -249104,Lightning Charging Cable,1,14.95,09/13/19 12:50,"323 2nd St, Boston, MA 02215" -249105,Wired Headphones,1,11.99,09/29/19 09:11,"63 Madison St, Austin, TX 73301" -249106,Apple Airpods Headphones,1,150,09/23/19 22:21,"25 Jefferson St, Austin, TX 73301" -249107,Wired Headphones,1,11.99,09/14/19 18:09,"606 North St, Los Angeles, CA 90001" -249108,Flatscreen TV,1,300,09/15/19 16:02,"206 West St, Dallas, TX 75001" -249109,ThinkPad Laptop,1,999.99,09/14/19 17:33,"739 Forest St, Seattle, WA 98101" -249110,Google Phone,1,600,09/22/19 14:58,"838 Lakeview St, San Francisco, CA 94016" -249111,iPhone,1,700,09/14/19 12:20,"452 Meadow St, Portland, OR 97035" -249112,Lightning Charging Cable,1,14.95,09/22/19 10:53,"295 Madison St, Los Angeles, CA 90001" -249113,USB-C Charging Cable,1,11.95,09/29/19 12:04,"434 Pine St, Portland, OR 97035" -249114,USB-C Charging Cable,1,11.95,09/22/19 20:22,"794 Lakeview St, Atlanta, GA 30301" -249115,LG Washing Machine,1,600.0,09/15/19 13:06,"988 10th St, New York City, NY 10001" -249116,Google Phone,1,600,09/10/19 13:11,"605 Cedar St, San Francisco, CA 94016" -249116,USB-C Charging Cable,1,11.95,09/10/19 13:11,"605 Cedar St, San Francisco, CA 94016" -249117,Flatscreen TV,1,300,09/11/19 12:44,"107 Hickory St, San Francisco, CA 94016" -249118,Wired Headphones,1,11.99,09/04/19 09:48,"866 Jackson St, Boston, MA 02215" -249119,20in Monitor,1,109.99,09/23/19 23:34,"71 Washington St, Austin, TX 73301" -249120,ThinkPad Laptop,1,999.99,09/12/19 06:43,"729 11th St, San Francisco, CA 94016" -249121,Bose SoundSport Headphones,1,99.99,09/12/19 21:42,"449 7th St, Atlanta, GA 30301" -249122,27in FHD Monitor,1,149.99,09/28/19 14:09,"563 Adams St, Austin, TX 73301" -249123,Macbook Pro Laptop,1,1700,09/06/19 13:37,"778 1st St, San Francisco, CA 94016" -249124,Wired Headphones,1,11.99,09/04/19 21:01,"134 Spruce St, San Francisco, CA 94016" -249125,Flatscreen TV,1,300,09/18/19 21:49,"525 Lake St, Los Angeles, CA 90001" -249126,Apple Airpods Headphones,1,150,09/17/19 06:15,"621 8th St, San Francisco, CA 94016" -249127,iPhone,1,700,09/14/19 17:55,"440 West St, New York City, NY 10001" -249127,Lightning Charging Cable,1,14.95,09/14/19 17:55,"440 West St, New York City, NY 10001" -249128,Apple Airpods Headphones,1,150,09/26/19 14:16,"757 6th St, San Francisco, CA 94016" -249128,Bose SoundSport Headphones,1,99.99,09/26/19 14:16,"757 6th St, San Francisco, CA 94016" -249129,27in 4K Gaming Monitor,1,389.99,09/04/19 08:45,"121 Jackson St, Portland, OR 97035" -249130,Lightning Charging Cable,1,14.95,09/14/19 00:26,"349 Main St, Boston, MA 02215" -249131,AA Batteries (4-pack),1,3.84,09/04/19 09:13,"876 Hickory St, Los Angeles, CA 90001" -249132,27in 4K Gaming Monitor,1,389.99,09/30/19 09:44,"736 South St, San Francisco, CA 94016" -249133,Flatscreen TV,1,300,09/11/19 10:47,"309 Spruce St, New York City, NY 10001" -249134,Flatscreen TV,1,300,09/05/19 16:26,"292 Park St, Dallas, TX 75001" -249135,20in Monitor,1,109.99,09/15/19 17:45,"783 5th St, San Francisco, CA 94016" -249136,Wired Headphones,1,11.99,09/10/19 15:10,"98 Park St, Atlanta, GA 30301" -249137,Apple Airpods Headphones,1,150,09/26/19 17:33,"710 Sunset St, New York City, NY 10001" -249138,Lightning Charging Cable,1,14.95,09/07/19 01:33,"888 Washington St, Seattle, WA 98101" -249139,Wired Headphones,1,11.99,09/17/19 11:58,"616 Johnson St, San Francisco, CA 94016" -249140,20in Monitor,1,109.99,09/23/19 00:07,"270 Hill St, New York City, NY 10001" -249141,AA Batteries (4-pack),1,3.84,09/19/19 14:30,"517 Washington St, Austin, TX 73301" -249142,USB-C Charging Cable,1,11.95,09/12/19 15:42,"897 Meadow St, New York City, NY 10001" -249143,ThinkPad Laptop,1,999.99,09/01/19 20:18,"349 10th St, Austin, TX 73301" -249144,Wired Headphones,1,11.99,09/09/19 15:24,"404 Madison St, Portland, ME 04101" -249145,ThinkPad Laptop,1,999.99,09/26/19 15:52,"820 11th St, Austin, TX 73301" -249146,AAA Batteries (4-pack),1,2.99,09/19/19 09:51,"826 14th St, San Francisco, CA 94016" -249147,iPhone,1,700,09/16/19 18:46,"26 Hill St, New York City, NY 10001" -249148,Apple Airpods Headphones,1,150,09/13/19 15:31,"631 Johnson St, San Francisco, CA 94016" -249149,Macbook Pro Laptop,1,1700,09/04/19 10:46,"353 Madison St, Boston, MA 02215" -249150,AA Batteries (4-pack),1,3.84,09/29/19 16:05,"531 Maple St, New York City, NY 10001" -249151,Wired Headphones,1,11.99,09/24/19 13:58,"67 West St, Seattle, WA 98101" -249152,Apple Airpods Headphones,1,150,09/11/19 21:14,"761 Washington St, New York City, NY 10001" -249153,Lightning Charging Cable,1,14.95,09/20/19 18:02,"325 Lakeview St, Austin, TX 73301" -249154,AA Batteries (4-pack),1,3.84,09/22/19 20:04,"665 9th St, New York City, NY 10001" -249155,USB-C Charging Cable,1,11.95,09/06/19 19:22,"139 Highland St, Dallas, TX 75001" -249156,AA Batteries (4-pack),1,3.84,09/17/19 19:17,"272 12th St, New York City, NY 10001" -249157,AAA Batteries (4-pack),2,2.99,09/10/19 01:00,"553 Washington St, Los Angeles, CA 90001" -249158,Lightning Charging Cable,1,14.95,09/22/19 18:25,"819 Wilson St, Dallas, TX 75001" -249159,AA Batteries (4-pack),1,3.84,09/20/19 18:45,"764 12th St, Dallas, TX 75001" -249160,USB-C Charging Cable,1,11.95,09/18/19 14:18,"357 Cherry St, Los Angeles, CA 90001" -249161,iPhone,1,700,09/22/19 11:36,"838 1st St, Boston, MA 02215" -249162,ThinkPad Laptop,1,999.99,09/27/19 10:24,"594 10th St, Portland, OR 97035" -249163,AA Batteries (4-pack),1,3.84,09/08/19 20:09,"113 Lake St, New York City, NY 10001" -249164,27in FHD Monitor,1,149.99,09/04/19 17:33,"179 South St, Atlanta, GA 30301" -249165,AAA Batteries (4-pack),1,2.99,09/07/19 21:08,"643 Sunset St, Seattle, WA 98101" -249166,Macbook Pro Laptop,1,1700,09/17/19 16:12,"346 Main St, San Francisco, CA 94016" -249167,20in Monitor,1,109.99,09/30/19 21:48,"312 7th St, New York City, NY 10001" -249168,USB-C Charging Cable,1,11.95,09/14/19 19:07,"128 West St, New York City, NY 10001" -249169,AAA Batteries (4-pack),4,2.99,09/14/19 20:06,"151 Highland St, Atlanta, GA 30301" -249170,Google Phone,1,600,09/04/19 20:33,"768 7th St, San Francisco, CA 94016" -249170,27in FHD Monitor,1,149.99,09/04/19 20:33,"768 7th St, San Francisco, CA 94016" -249171,Google Phone,1,600,09/26/19 06:39,"928 Main St, Atlanta, GA 30301" -249172,AA Batteries (4-pack),5,3.84,09/22/19 11:26,"826 Spruce St, Los Angeles, CA 90001" -249173,Lightning Charging Cable,1,14.95,09/24/19 21:08,"402 13th St, Seattle, WA 98101" -249174,Bose SoundSport Headphones,1,99.99,09/09/19 09:52,"808 Adams St, Austin, TX 73301" -249175,AA Batteries (4-pack),1,3.84,09/25/19 21:45,"261 9th St, Portland, OR 97035" -249176,AAA Batteries (4-pack),2,2.99,09/15/19 08:12,"672 4th St, Seattle, WA 98101" -249177,Macbook Pro Laptop,1,1700,09/06/19 10:49,"86 12th St, Portland, ME 04101" -249178,Bose SoundSport Headphones,1,99.99,09/15/19 22:00,"570 Willow St, Atlanta, GA 30301" -249179,Vareebadd Phone,1,400,09/14/19 22:31,"400 Park St, Los Angeles, CA 90001" -249180,Lightning Charging Cable,2,14.95,09/04/19 12:05,"660 Hill St, Los Angeles, CA 90001" -249181,Bose SoundSport Headphones,1,99.99,09/01/19 14:01,"333 Jefferson St, San Francisco, CA 94016" -249182,Google Phone,1,600,09/26/19 21:19,"350 10th St, Dallas, TX 75001" -249183,AA Batteries (4-pack),1,3.84,09/20/19 20:36,"923 Chestnut St, Boston, MA 02215" -249184,AA Batteries (4-pack),2,3.84,09/06/19 22:57,"335 Lake St, Atlanta, GA 30301" -249185,Macbook Pro Laptop,1,1700,09/07/19 17:24,"429 Church St, San Francisco, CA 94016" -249186,Wired Headphones,1,11.99,09/28/19 15:15,"694 West St, Seattle, WA 98101" -249187,LG Dryer,1,600.0,09/17/19 10:27,"629 Dogwood St, Seattle, WA 98101" -249188,AA Batteries (4-pack),1,3.84,09/19/19 20:59,"10 Main St, San Francisco, CA 94016" -249189,USB-C Charging Cable,1,11.95,09/16/19 17:53,"965 Center St, Boston, MA 02215" -249190,Lightning Charging Cable,1,14.95,09/06/19 12:19,"226 Lakeview St, Dallas, TX 75001" -249191,27in FHD Monitor,1,149.99,09/22/19 16:39,"920 2nd St, Seattle, WA 98101" -249192,Apple Airpods Headphones,1,150,09/09/19 22:49,"157 Forest St, Portland, ME 04101" -249193,AAA Batteries (4-pack),1,2.99,09/09/19 16:37,"491 Walnut St, San Francisco, CA 94016" -249194,Lightning Charging Cable,1,14.95,09/17/19 08:22,"610 1st St, Atlanta, GA 30301" -249195,iPhone,1,700,09/22/19 23:47,"149 2nd St, San Francisco, CA 94016" -249196,USB-C Charging Cable,1,11.95,09/26/19 08:12,"534 Lake St, San Francisco, CA 94016" -249197,Apple Airpods Headphones,1,150,09/04/19 17:54,"140 Church St, New York City, NY 10001" -249198,Bose SoundSport Headphones,1,99.99,09/03/19 18:35,"333 South St, Boston, MA 02215" -249199,USB-C Charging Cable,1,11.95,09/02/19 18:44,"165 Spruce St, Atlanta, GA 30301" -249200,Lightning Charging Cable,1,14.95,09/26/19 10:52,"814 Johnson St, Seattle, WA 98101" -249201,AA Batteries (4-pack),2,3.84,09/21/19 22:44,"970 13th St, San Francisco, CA 94016" -249202,Bose SoundSport Headphones,1,99.99,09/27/19 23:32,"8 Hickory St, Seattle, WA 98101" -249203,USB-C Charging Cable,1,11.95,09/20/19 07:24,"97 Spruce St, Boston, MA 02215" -249204,AAA Batteries (4-pack),1,2.99,09/30/19 05:39,"866 Washington St, Los Angeles, CA 90001" -249205,Lightning Charging Cable,2,14.95,09/24/19 22:57,"761 Maple St, Los Angeles, CA 90001" -249206,LG Washing Machine,1,600.0,09/14/19 11:46,"63 Hickory St, San Francisco, CA 94016" -249207,Flatscreen TV,1,300,09/25/19 19:57,"504 Jefferson St, Los Angeles, CA 90001" -249208,27in 4K Gaming Monitor,1,389.99,09/06/19 23:57,"979 Maple St, San Francisco, CA 94016" -249209,Lightning Charging Cable,1,14.95,09/04/19 19:38,"875 Pine St, Seattle, WA 98101" -249210,iPhone,1,700,09/24/19 14:18,"495 Washington St, San Francisco, CA 94016" -249211,Apple Airpods Headphones,1,150,09/02/19 23:05,"546 River St, Boston, MA 02215" -249212,Flatscreen TV,1,300,09/06/19 02:36,"960 North St, Austin, TX 73301" -249213,Lightning Charging Cable,1,14.95,09/17/19 09:18,"513 11th St, Boston, MA 02215" -249214,LG Washing Machine,1,600.0,09/12/19 23:14,"441 Pine St, Austin, TX 73301" -249215,AAA Batteries (4-pack),1,2.99,09/10/19 00:25,"748 Wilson St, San Francisco, CA 94016" -249216,20in Monitor,1,109.99,09/27/19 19:58,"623 Ridge St, Los Angeles, CA 90001" -249217,Apple Airpods Headphones,1,150,09/24/19 21:22,"891 Meadow St, San Francisco, CA 94016" -249218,Wired Headphones,1,11.99,09/12/19 13:12,"611 Center St, Los Angeles, CA 90001" -249219,27in 4K Gaming Monitor,1,389.99,09/29/19 12:50,"261 Cedar St, Austin, TX 73301" -249220,Wired Headphones,1,11.99,09/05/19 20:48,"554 North St, Los Angeles, CA 90001" -249221,USB-C Charging Cable,3,11.95,09/25/19 11:40,"689 North St, Austin, TX 73301" -249222,AA Batteries (4-pack),1,3.84,09/05/19 10:22,"48 11th St, San Francisco, CA 94016" -249223,AAA Batteries (4-pack),1,2.99,09/27/19 09:13,"672 Lakeview St, Dallas, TX 75001" -249224,Google Phone,1,600,09/07/19 18:43,"777 West St, Austin, TX 73301" -249225,Apple Airpods Headphones,1,150,09/25/19 17:35,"189 North St, Portland, OR 97035" -249226,ThinkPad Laptop,1,999.99,09/26/19 10:33,"439 West St, New York City, NY 10001" -249227,Lightning Charging Cable,1,14.95,09/29/19 11:30,"118 Spruce St, San Francisco, CA 94016" -249228,AA Batteries (4-pack),1,3.84,09/02/19 15:03,"553 14th St, New York City, NY 10001" -249229,34in Ultrawide Monitor,1,379.99,09/27/19 12:56,"989 8th St, Dallas, TX 75001" -249230,Lightning Charging Cable,1,14.95,09/05/19 10:26,"179 8th St, San Francisco, CA 94016" -249231,AAA Batteries (4-pack),1,2.99,09/15/19 11:53,"69 Lakeview St, New York City, NY 10001" -249232,AA Batteries (4-pack),1,3.84,09/21/19 12:14,"995 Highland St, Atlanta, GA 30301" -249233,34in Ultrawide Monitor,1,379.99,09/10/19 13:50,"551 Highland St, Portland, OR 97035" -249234,ThinkPad Laptop,1,999.99,09/10/19 20:59,"855 Wilson St, Seattle, WA 98101" -249235,Wired Headphones,1,11.99,09/05/19 13:07,"414 Chestnut St, Atlanta, GA 30301" -249236,27in 4K Gaming Monitor,1,389.99,09/23/19 13:39,"590 Cherry St, New York City, NY 10001" -249237,AAA Batteries (4-pack),1,2.99,09/11/19 12:16,"318 Madison St, Los Angeles, CA 90001" -249238,Apple Airpods Headphones,1,150,09/13/19 17:18,"557 Adams St, Seattle, WA 98101" -249239,AAA Batteries (4-pack),3,2.99,09/19/19 20:09,"644 Lincoln St, San Francisco, CA 94016" -249240,Flatscreen TV,1,300,09/05/19 19:58,"378 Highland St, Atlanta, GA 30301" -249241,Lightning Charging Cable,1,14.95,09/23/19 00:20,"182 Park St, Los Angeles, CA 90001" -249242,Bose SoundSport Headphones,1,99.99,09/08/19 13:28,"470 12th St, Boston, MA 02215" -249243,Macbook Pro Laptop,1,1700,09/11/19 01:24,"361 West St, Boston, MA 02215" -249244,iPhone,1,700,09/25/19 11:25,"170 Pine St, Portland, OR 97035" -249244,Lightning Charging Cable,1,14.95,09/25/19 11:25,"170 Pine St, Portland, OR 97035" -249245,Bose SoundSport Headphones,1,99.99,09/05/19 13:50,"272 Church St, Austin, TX 73301" -249246,Macbook Pro Laptop,1,1700,09/06/19 15:33,"656 South St, Los Angeles, CA 90001" -249247,27in 4K Gaming Monitor,1,389.99,09/06/19 15:31,"874 West St, San Francisco, CA 94016" -249248,Bose SoundSport Headphones,1,99.99,09/20/19 08:29,"52 13th St, Portland, OR 97035" -249249,AA Batteries (4-pack),1,3.84,09/23/19 16:36,"445 Walnut St, Seattle, WA 98101" -249250,Bose SoundSport Headphones,1,99.99,09/06/19 08:33,"476 Adams St, Seattle, WA 98101" -249251,Apple Airpods Headphones,1,150,09/10/19 15:42,"245 8th St, Portland, OR 97035" -249252,27in 4K Gaming Monitor,1,389.99,09/26/19 18:04,"880 Lakeview St, Seattle, WA 98101" -249253,Wired Headphones,1,11.99,09/26/19 18:01,"241 9th St, San Francisco, CA 94016" -249254,Bose SoundSport Headphones,1,99.99,09/14/19 08:48,"126 1st St, Boston, MA 02215" -249255,Lightning Charging Cable,1,14.95,09/23/19 21:10,"724 North St, Dallas, TX 75001" -249256,AA Batteries (4-pack),1,3.84,09/11/19 10:51,"503 7th St, Austin, TX 73301" -249257,Macbook Pro Laptop,1,1700,09/07/19 19:15,"807 10th St, New York City, NY 10001" -249258,AA Batteries (4-pack),1,3.84,09/04/19 09:43,"767 7th St, Los Angeles, CA 90001" -249259,Lightning Charging Cable,1,14.95,09/06/19 18:46,"147 8th St, Atlanta, GA 30301" -249260,Apple Airpods Headphones,1,150,09/23/19 23:57,"183 Wilson St, Boston, MA 02215" -249261,Wired Headphones,1,11.99,09/13/19 12:13,"188 Lakeview St, Los Angeles, CA 90001" -249262,Wired Headphones,1,11.99,09/28/19 13:30,"674 Ridge St, San Francisco, CA 94016" -249263,AAA Batteries (4-pack),1,2.99,09/22/19 13:42,"932 Lake St, Boston, MA 02215" -249264,AAA Batteries (4-pack),1,2.99,09/22/19 15:26,"381 Hickory St, Boston, MA 02215" -249265,Apple Airpods Headphones,1,150,09/24/19 10:38,"266 Jackson St, New York City, NY 10001" -249266,27in FHD Monitor,1,149.99,09/07/19 11:10,"204 Cedar St, Los Angeles, CA 90001" -249267,AAA Batteries (4-pack),2,2.99,09/18/19 12:49,"338 4th St, San Francisco, CA 94016" -249268,AA Batteries (4-pack),2,3.84,09/06/19 07:51,"79 Washington St, Boston, MA 02215" -249269,AAA Batteries (4-pack),1,2.99,09/21/19 17:49,"65 14th St, New York City, NY 10001" -249270,AA Batteries (4-pack),1,3.84,09/24/19 12:38,"312 River St, San Francisco, CA 94016" -249271,Flatscreen TV,1,300,09/01/19 22:17,"759 11th St, San Francisco, CA 94016" -249272,Wired Headphones,1,11.99,09/12/19 19:00,"609 Chestnut St, San Francisco, CA 94016" -249273,iPhone,1,700,09/30/19 11:51,"230 Johnson St, New York City, NY 10001" -249274,Macbook Pro Laptop,1,1700,09/03/19 15:22,"127 Cherry St, New York City, NY 10001" -249275,AA Batteries (4-pack),1,3.84,09/19/19 14:03,"69 Sunset St, New York City, NY 10001" -249276,Wired Headphones,1,11.99,09/10/19 22:10,"225 Hickory St, Seattle, WA 98101" -249277,27in 4K Gaming Monitor,1,389.99,09/09/19 10:24,"786 Jefferson St, Los Angeles, CA 90001" -249278,34in Ultrawide Monitor,1,379.99,09/01/19 20:38,"89 Chestnut St, Dallas, TX 75001" -249279,Google Phone,1,600,09/25/19 16:05,"90 Park St, Boston, MA 02215" -249280,AA Batteries (4-pack),1,3.84,09/24/19 23:52,"799 Johnson St, San Francisco, CA 94016" -249281,AA Batteries (4-pack),1,3.84,09/22/19 10:18,"739 West St, New York City, NY 10001" -249282,Lightning Charging Cable,1,14.95,09/13/19 20:09,"90 12th St, San Francisco, CA 94016" -249283,AA Batteries (4-pack),1,3.84,09/11/19 14:10,"304 2nd St, New York City, NY 10001" -249284,Lightning Charging Cable,1,14.95,09/12/19 12:50,"898 Jefferson St, Atlanta, GA 30301" -249285,Wired Headphones,1,11.99,09/06/19 18:20,"974 Johnson St, San Francisco, CA 94016" -249286,AA Batteries (4-pack),2,3.84,09/26/19 16:10,"907 Park St, Los Angeles, CA 90001" -249287,USB-C Charging Cable,1,11.95,09/13/19 12:09,"286 Park St, Seattle, WA 98101" -249288,AAA Batteries (4-pack),2,2.99,09/04/19 10:40,"139 Willow St, Boston, MA 02215" -249289,ThinkPad Laptop,1,999.99,09/21/19 20:13,"276 1st St, Portland, OR 97035" -249290,Wired Headphones,1,11.99,09/27/19 22:13,"930 South St, Portland, ME 04101" -249291,AA Batteries (4-pack),1,3.84,09/20/19 20:25,"281 4th St, Seattle, WA 98101" -249292,Apple Airpods Headphones,1,150,09/18/19 13:40,"357 Maple St, San Francisco, CA 94016" -249293,Bose SoundSport Headphones,1,99.99,09/10/19 11:46,"361 Spruce St, Portland, OR 97035" -249294,34in Ultrawide Monitor,1,379.99,09/10/19 18:54,"693 Forest St, Austin, TX 73301" -249295,Flatscreen TV,1,300,09/13/19 11:02,"115 Jefferson St, Boston, MA 02215" -249296,27in FHD Monitor,1,149.99,09/27/19 17:59,"519 7th St, Austin, TX 73301" -249297,Apple Airpods Headphones,1,150,09/20/19 21:30,"775 Johnson St, San Francisco, CA 94016" -249298,Wired Headphones,1,11.99,09/26/19 13:19,"69 River St, Los Angeles, CA 90001" -249299,Lightning Charging Cable,1,14.95,09/27/19 23:04,"882 Forest St, Los Angeles, CA 90001" -249300,Lightning Charging Cable,1,14.95,09/23/19 22:20,"977 Lincoln St, Los Angeles, CA 90001" -249301,Lightning Charging Cable,1,14.95,09/07/19 20:53,"363 River St, San Francisco, CA 94016" -249302,ThinkPad Laptop,1,999.99,09/29/19 14:50,"694 Hickory St, Dallas, TX 75001" -249303,34in Ultrawide Monitor,1,379.99,09/10/19 19:29,"498 Lake St, Los Angeles, CA 90001" -249304,USB-C Charging Cable,1,11.95,09/19/19 12:16,"697 River St, Seattle, WA 98101" -249305,Bose SoundSport Headphones,1,99.99,09/15/19 05:24,"740 Park St, Los Angeles, CA 90001" -249306,Lightning Charging Cable,1,14.95,09/23/19 11:39,"639 7th St, Austin, TX 73301" -249306,USB-C Charging Cable,1,11.95,09/23/19 11:39,"639 7th St, Austin, TX 73301" -249307,AA Batteries (4-pack),1,3.84,09/02/19 16:35,"387 Hickory St, New York City, NY 10001" -249308,AAA Batteries (4-pack),2,2.99,09/06/19 21:07,"865 Washington St, Austin, TX 73301" -249309,USB-C Charging Cable,1,11.95,09/05/19 01:20,"270 Hickory St, Atlanta, GA 30301" -249310,Flatscreen TV,1,300,09/12/19 10:45,"673 Johnson St, Los Angeles, CA 90001" -249311,Apple Airpods Headphones,1,150,09/12/19 13:53,"548 Pine St, San Francisco, CA 94016" -249312,Vareebadd Phone,1,400,09/18/19 15:46,"882 Church St, Los Angeles, CA 90001" -249313,AAA Batteries (4-pack),2,2.99,09/05/19 10:05,"221 Elm St, New York City, NY 10001" -249314,AA Batteries (4-pack),1,3.84,09/06/19 15:23,"478 5th St, San Francisco, CA 94016" -249315,AAA Batteries (4-pack),2,2.99,09/17/19 10:59,"375 Lake St, San Francisco, CA 94016" -249316,Google Phone,1,600,09/25/19 00:43,"449 Spruce St, Boston, MA 02215" -249317,AA Batteries (4-pack),2,3.84,09/17/19 18:17,"108 10th St, New York City, NY 10001" -249318,AAA Batteries (4-pack),4,2.99,09/09/19 15:43,"583 Lincoln St, Los Angeles, CA 90001" -249319,AA Batteries (4-pack),1,3.84,09/20/19 21:50,"415 8th St, Boston, MA 02215" -249320,AAA Batteries (4-pack),1,2.99,09/26/19 09:40,"340 10th St, Boston, MA 02215" -249321,20in Monitor,1,109.99,09/20/19 17:19,"53 West St, Boston, MA 02215" -249322,Lightning Charging Cable,1,14.95,09/29/19 22:41,"321 12th St, Austin, TX 73301" -249323,Lightning Charging Cable,1,14.95,09/11/19 14:37,"154 Madison St, New York City, NY 10001" -249324,Flatscreen TV,1,300,09/25/19 20:42,"795 Jackson St, New York City, NY 10001" -249325,USB-C Charging Cable,1,11.95,09/20/19 10:39,"693 Washington St, Boston, MA 02215" -249326,AAA Batteries (4-pack),2,2.99,09/16/19 21:09,"849 4th St, Dallas, TX 75001" -249327,LG Washing Machine,1,600.0,09/26/19 15:44,"556 Lakeview St, New York City, NY 10001" -249328,Google Phone,1,600,09/11/19 20:44,"123 14th St, New York City, NY 10001" -249328,20in Monitor,1,109.99,09/11/19 20:44,"123 14th St, New York City, NY 10001" -249329,27in FHD Monitor,1,149.99,09/24/19 23:41,"88 Main St, Los Angeles, CA 90001" -249330,Flatscreen TV,1,300,09/19/19 23:30,"180 South St, Austin, TX 73301" -249331,27in FHD Monitor,1,149.99,09/19/19 16:20,"625 Washington St, San Francisco, CA 94016" -249332,Lightning Charging Cable,1,14.95,09/05/19 14:02,"325 Cedar St, Austin, TX 73301" -249333,iPhone,1,700,09/15/19 12:06,"282 Ridge St, Seattle, WA 98101" -249334,USB-C Charging Cable,1,11.95,09/20/19 12:43,"813 Cherry St, San Francisco, CA 94016" -249335,Macbook Pro Laptop,1,1700,09/11/19 19:01,"995 Lakeview St, Atlanta, GA 30301" -249336,Lightning Charging Cable,1,14.95,09/08/19 08:37,"96 Forest St, Boston, MA 02215" -249337,AAA Batteries (4-pack),1,2.99,09/14/19 12:52,"934 Jefferson St, New York City, NY 10001" -249338,Wired Headphones,1,11.99,09/03/19 17:01,"748 Ridge St, Boston, MA 02215" -249339,Bose SoundSport Headphones,1,99.99,09/27/19 00:11,"588 Meadow St, Los Angeles, CA 90001" -249340,Flatscreen TV,1,300,09/07/19 08:24,"534 Ridge St, San Francisco, CA 94016" -249341,Lightning Charging Cable,2,14.95,09/09/19 13:50,"905 Spruce St, Atlanta, GA 30301" -249342,27in 4K Gaming Monitor,1,389.99,09/28/19 21:27,"720 Meadow St, Portland, ME 04101" -249343,Bose SoundSport Headphones,1,99.99,09/09/19 13:44,"147 Maple St, Los Angeles, CA 90001" -249344,ThinkPad Laptop,1,999.99,09/30/19 16:36,"935 Jefferson St, Boston, MA 02215" -249345,AAA Batteries (4-pack),1,2.99,09/26/19 16:05,"162 Highland St, Dallas, TX 75001" -249346,Wired Headphones,1,11.99,09/28/19 19:54,"23 2nd St, Seattle, WA 98101" -249347,27in FHD Monitor,1,149.99,09/26/19 10:12,"486 Highland St, Austin, TX 73301" -249348,Bose SoundSport Headphones,1,99.99,09/13/19 11:28,"761 River St, New York City, NY 10001" -249349,Apple Airpods Headphones,1,150,09/30/19 13:02,"607 Lake St, Atlanta, GA 30301" -249350,Apple Airpods Headphones,1,150,09/15/19 21:05,"51 Spruce St, New York City, NY 10001" -249351,AA Batteries (4-pack),1,3.84,09/21/19 12:10,"769 Jackson St, San Francisco, CA 94016" -249352,Lightning Charging Cable,1,14.95,09/23/19 12:32,"233 Maple St, San Francisco, CA 94016" -249353,USB-C Charging Cable,1,11.95,09/03/19 22:53,"246 6th St, Atlanta, GA 30301" -249354,20in Monitor,1,109.99,09/04/19 11:58,"786 8th St, Los Angeles, CA 90001" -249355,20in Monitor,1,109.99,09/30/19 12:40,"408 9th St, Portland, OR 97035" -249356,USB-C Charging Cable,1,11.95,09/28/19 20:30,"107 12th St, San Francisco, CA 94016" -249357,AA Batteries (4-pack),1,3.84,09/06/19 19:57,"428 Hill St, New York City, NY 10001" -249358,AAA Batteries (4-pack),1,2.99,09/16/19 00:19,"711 Wilson St, Los Angeles, CA 90001" -249359,34in Ultrawide Monitor,1,379.99,09/25/19 11:41,"495 Cherry St, Seattle, WA 98101" -249360,Lightning Charging Cable,1,14.95,09/03/19 09:17,"965 Spruce St, Los Angeles, CA 90001" -249361,iPhone,1,700,09/20/19 09:48,"294 12th St, Los Angeles, CA 90001" -249362,USB-C Charging Cable,1,11.95,09/08/19 12:07,"985 Adams St, Seattle, WA 98101" -249363,Apple Airpods Headphones,1,150,09/08/19 11:27,"712 5th St, Los Angeles, CA 90001" -249364,Google Phone,1,600,09/30/19 22:01,"372 Wilson St, New York City, NY 10001" -249365,Bose SoundSport Headphones,1,99.99,09/28/19 13:13,"833 7th St, New York City, NY 10001" -249366,Apple Airpods Headphones,1,150,09/03/19 14:26,"280 West St, Los Angeles, CA 90001" -249367,Wired Headphones,1,11.99,09/08/19 23:03,"80 6th St, Seattle, WA 98101" -249368,USB-C Charging Cable,1,11.95,09/05/19 11:19,"590 Church St, Boston, MA 02215" -249369,USB-C Charging Cable,1,11.95,09/14/19 20:17,"441 South St, Dallas, TX 75001" -249370,USB-C Charging Cable,1,11.95,09/01/19 10:09,"435 10th St, San Francisco, CA 94016" -249371,AAA Batteries (4-pack),2,2.99,09/03/19 16:30,"528 6th St, Atlanta, GA 30301" -249372,Lightning Charging Cable,1,14.95,09/15/19 16:25,"961 Hickory St, New York City, NY 10001" -249373,Lightning Charging Cable,1,14.95,09/17/19 12:11,"337 Lincoln St, San Francisco, CA 94016" -249374,AA Batteries (4-pack),1,3.84,09/21/19 22:51,"549 Walnut St, New York City, NY 10001" -249375,Lightning Charging Cable,2,14.95,09/30/19 16:47,"710 12th St, San Francisco, CA 94016" -249376,USB-C Charging Cable,1,11.95,09/03/19 21:02,"722 Spruce St, San Francisco, CA 94016" -249377,AA Batteries (4-pack),1,3.84,09/07/19 05:19,"135 Adams St, San Francisco, CA 94016" -249378,Vareebadd Phone,1,400,09/12/19 13:29,"437 Highland St, Portland, OR 97035" -249379,USB-C Charging Cable,1,11.95,09/13/19 16:51,"863 Elm St, Atlanta, GA 30301" -249380,iPhone,1,700,09/28/19 19:16,"976 5th St, Los Angeles, CA 90001" -249380,Wired Headphones,1,11.99,09/28/19 19:16,"976 5th St, Los Angeles, CA 90001" -249381,AAA Batteries (4-pack),1,2.99,09/05/19 21:28,"262 Maple St, New York City, NY 10001" -249382,USB-C Charging Cable,2,11.95,09/23/19 21:36,"467 South St, New York City, NY 10001" -249383,Lightning Charging Cable,1,14.95,09/10/19 12:33,"74 North St, Austin, TX 73301" -249384,USB-C Charging Cable,1,11.95,09/07/19 19:48,"832 Forest St, San Francisco, CA 94016" -249385,AA Batteries (4-pack),1,3.84,09/23/19 11:45,"937 6th St, San Francisco, CA 94016" -249386,27in FHD Monitor,1,149.99,09/28/19 15:43,"889 Hill St, New York City, NY 10001" -249387,USB-C Charging Cable,1,11.95,09/22/19 17:17,"205 Jefferson St, Austin, TX 73301" -249388,Lightning Charging Cable,1,14.95,09/03/19 15:36,"487 Lincoln St, San Francisco, CA 94016" -249389,Macbook Pro Laptop,1,1700,09/10/19 14:00,"6 13th St, Seattle, WA 98101" -249389,Google Phone,1,600,09/10/19 14:00,"6 13th St, Seattle, WA 98101" -249390,AA Batteries (4-pack),1,3.84,09/19/19 16:09,"412 Jefferson St, San Francisco, CA 94016" -249390,Lightning Charging Cable,1,14.95,09/19/19 16:09,"412 Jefferson St, San Francisco, CA 94016" -249391,Flatscreen TV,1,300,09/06/19 20:15,"21 Sunset St, San Francisco, CA 94016" -249392,AA Batteries (4-pack),1,3.84,09/16/19 19:55,"287 Willow St, Boston, MA 02215" -249393,AAA Batteries (4-pack),2,2.99,09/01/19 16:57,"942 Church St, Seattle, WA 98101" -249394,AAA Batteries (4-pack),1,2.99,09/13/19 08:23,"882 Dogwood St, Dallas, TX 75001" -249395,Wired Headphones,1,11.99,09/18/19 16:09,"562 Madison St, Los Angeles, CA 90001" -249396,USB-C Charging Cable,1,11.95,09/18/19 23:56,"327 Willow St, San Francisco, CA 94016" -249396,Google Phone,1,600,09/18/19 23:56,"327 Willow St, San Francisco, CA 94016" -249397,Apple Airpods Headphones,1,150,09/08/19 00:01,"132 6th St, Los Angeles, CA 90001" -249398,34in Ultrawide Monitor,1,379.99,09/08/19 15:45,"318 Church St, San Francisco, CA 94016" -249399,USB-C Charging Cable,1,11.95,09/10/19 16:07,"348 Adams St, Dallas, TX 75001" -249400,27in FHD Monitor,1,149.99,09/06/19 10:14,"79 13th St, Portland, OR 97035" -249401,20in Monitor,1,109.99,09/10/19 12:15,"79 Johnson St, Atlanta, GA 30301" -249402,AAA Batteries (4-pack),2,2.99,09/24/19 07:49,"848 14th St, Dallas, TX 75001" -249403,Google Phone,1,600,09/27/19 19:47,"300 Cherry St, Portland, OR 97035" -249404,Wired Headphones,1,11.99,09/14/19 23:37,"393 4th St, Seattle, WA 98101" -249405,Wired Headphones,1,11.99,09/07/19 12:02,"849 Lakeview St, New York City, NY 10001" -249406,Vareebadd Phone,1,400,09/10/19 12:54,"860 Maple St, Portland, OR 97035" -249407,Macbook Pro Laptop,1,1700,09/28/19 15:21,"302 Elm St, San Francisco, CA 94016" -249408,AA Batteries (4-pack),1,3.84,09/02/19 12:07,"550 Spruce St, San Francisco, CA 94016" -249409,AAA Batteries (4-pack),2,2.99,09/21/19 08:20,"801 Dogwood St, Austin, TX 73301" -249410,Bose SoundSport Headphones,1,99.99,09/28/19 22:26,"664 Pine St, New York City, NY 10001" -249411,34in Ultrawide Monitor,1,379.99,09/23/19 11:03,"31 8th St, Los Angeles, CA 90001" -249412,Lightning Charging Cable,2,14.95,09/17/19 19:22,"838 Cherry St, San Francisco, CA 94016" -249413,USB-C Charging Cable,1,11.95,09/25/19 15:54,"858 Maple St, Los Angeles, CA 90001" -249414,USB-C Charging Cable,1,11.95,09/26/19 23:59,"364 2nd St, New York City, NY 10001" -249415,AA Batteries (4-pack),1,3.84,09/23/19 13:20,"227 8th St, Los Angeles, CA 90001" -249416,Apple Airpods Headphones,1,150,09/17/19 18:08,"904 Meadow St, Los Angeles, CA 90001" -249417,AAA Batteries (4-pack),1,2.99,09/02/19 17:14,"679 Walnut St, San Francisco, CA 94016" -249418,Bose SoundSport Headphones,1,99.99,09/05/19 16:41,"159 Jefferson St, Boston, MA 02215" -249419,AAA Batteries (4-pack),2,2.99,09/10/19 20:32,"3 Meadow St, Atlanta, GA 30301" -249420,Macbook Pro Laptop,1,1700,09/18/19 01:28,"33 Elm St, Atlanta, GA 30301" -249421,iPhone,1,700,09/19/19 15:39,"478 Lakeview St, San Francisco, CA 94016" -249421,Lightning Charging Cable,1,14.95,09/19/19 15:39,"478 Lakeview St, San Francisco, CA 94016" -249422,Lightning Charging Cable,1,14.95,09/01/19 07:14,"824 Elm St, San Francisco, CA 94016" -249423,AAA Batteries (4-pack),1,2.99,09/16/19 22:08,"901 Spruce St, Dallas, TX 75001" -249424,Wired Headphones,1,11.99,09/01/19 19:49,"650 Elm St, Los Angeles, CA 90001" -249425,AAA Batteries (4-pack),2,2.99,09/17/19 07:09,"743 Church St, Boston, MA 02215" -249426,AA Batteries (4-pack),1,3.84,09/10/19 16:52,"874 Cherry St, Los Angeles, CA 90001" -249427,AA Batteries (4-pack),3,3.84,09/24/19 21:48,"43 2nd St, San Francisco, CA 94016" -249428,Apple Airpods Headphones,1,150,09/30/19 17:48,"521 Madison St, Boston, MA 02215" -249429,Lightning Charging Cable,1,14.95,09/11/19 09:11,"352 14th St, Austin, TX 73301" -249430,Google Phone,1,600,09/15/19 19:18,"938 Walnut St, Seattle, WA 98101" -249430,Wired Headphones,1,11.99,09/15/19 19:18,"938 Walnut St, Seattle, WA 98101" -249431,Wired Headphones,1,11.99,09/05/19 08:13,"57 Walnut St, San Francisco, CA 94016" -249432,Apple Airpods Headphones,1,150,09/21/19 17:18,"9 7th St, New York City, NY 10001" -249433,Apple Airpods Headphones,1,150,09/02/19 10:29,"284 Spruce St, New York City, NY 10001" -249434,Macbook Pro Laptop,1,1700,09/12/19 21:49,"409 Maple St, Austin, TX 73301" -249435,USB-C Charging Cable,1,11.95,09/15/19 10:52,"269 Pine St, Seattle, WA 98101" -249436,AA Batteries (4-pack),1,3.84,09/02/19 14:14,"839 Walnut St, San Francisco, CA 94016" -249437,AAA Batteries (4-pack),1,2.99,09/28/19 08:27,"224 Forest St, Los Angeles, CA 90001" -249438,Lightning Charging Cable,1,14.95,09/28/19 18:36,"434 North St, New York City, NY 10001" -249439,AA Batteries (4-pack),1,3.84,09/07/19 17:58,"719 12th St, Los Angeles, CA 90001" -249439,27in FHD Monitor,1,149.99,09/07/19 17:58,"719 12th St, Los Angeles, CA 90001" -249440,USB-C Charging Cable,1,11.95,09/30/19 12:03,"344 14th St, Portland, OR 97035" -249441,Lightning Charging Cable,1,14.95,09/02/19 09:26,"815 Madison St, Dallas, TX 75001" -249442,Bose SoundSport Headphones,1,99.99,09/24/19 10:08,"112 Hickory St, Los Angeles, CA 90001" -249443,Apple Airpods Headphones,1,150,09/12/19 16:15,"83 West St, Portland, OR 97035" -249444,Google Phone,1,600,09/27/19 23:42,"86 Madison St, New York City, NY 10001" -249444,Wired Headphones,1,11.99,09/27/19 23:42,"86 Madison St, New York City, NY 10001" -249445,iPhone,1,700,09/27/19 16:18,"591 Cherry St, Los Angeles, CA 90001" -249446,USB-C Charging Cable,1,11.95,09/23/19 20:48,"670 Jackson St, Dallas, TX 75001" -249447,AA Batteries (4-pack),1,3.84,09/06/19 04:27,"127 5th St, Los Angeles, CA 90001" -249448,Lightning Charging Cable,1,14.95,09/21/19 20:44,"676 Johnson St, Austin, TX 73301" -249449,Wired Headphones,1,11.99,09/09/19 21:15,"206 6th St, Seattle, WA 98101" -249450,Apple Airpods Headphones,1,150,09/21/19 09:23,"678 Jefferson St, Seattle, WA 98101" -249451,27in 4K Gaming Monitor,1,389.99,09/08/19 08:11,"521 Lincoln St, Boston, MA 02215" -249452,Lightning Charging Cable,1,14.95,09/08/19 08:48,"893 Church St, Boston, MA 02215" -249453,Wired Headphones,1,11.99,09/15/19 12:37,"130 North St, Boston, MA 02215" -249454,34in Ultrawide Monitor,1,379.99,09/11/19 12:20,"459 Washington St, Dallas, TX 75001" -249455,Google Phone,1,600,09/28/19 21:34,"903 Lake St, San Francisco, CA 94016" -249455,USB-C Charging Cable,1,11.95,09/28/19 21:34,"903 Lake St, San Francisco, CA 94016" -249456,AA Batteries (4-pack),2,3.84,09/30/19 14:16,"357 14th St, Atlanta, GA 30301" -249457,Macbook Pro Laptop,1,1700,09/06/19 18:41,"330 11th St, San Francisco, CA 94016" -249458,AAA Batteries (4-pack),1,2.99,09/25/19 14:17,"313 Cedar St, San Francisco, CA 94016" -249459,Google Phone,1,600,09/09/19 15:06,"797 Hill St, Dallas, TX 75001" -249460,Lightning Charging Cable,1,14.95,09/19/19 18:33,"719 10th St, San Francisco, CA 94016" -249461,Apple Airpods Headphones,1,150,09/23/19 12:47,"558 6th St, Los Angeles, CA 90001" -249462,AAA Batteries (4-pack),1,2.99,09/16/19 21:07,"252 Center St, Atlanta, GA 30301" -249463,Lightning Charging Cable,1,14.95,09/06/19 15:13,"244 Lakeview St, Portland, OR 97035" -249464,Google Phone,1,600,09/16/19 09:33,"559 Sunset St, Dallas, TX 75001" -249465,Apple Airpods Headphones,1,150,09/26/19 19:16,"271 4th St, Dallas, TX 75001" -249466,USB-C Charging Cable,1,11.95,09/20/19 21:26,"247 10th St, Boston, MA 02215" -249467,ThinkPad Laptop,1,999.99,09/05/19 11:56,"293 Cherry St, New York City, NY 10001" -249468,USB-C Charging Cable,1,11.95,09/25/19 11:12,"271 Adams St, Los Angeles, CA 90001" -249468,Wired Headphones,1,11.99,09/25/19 11:12,"271 Adams St, Los Angeles, CA 90001" -249469,Lightning Charging Cable,1,14.95,09/22/19 15:46,"819 North St, New York City, NY 10001" -249470,34in Ultrawide Monitor,1,379.99,09/24/19 14:46,"857 Lake St, Dallas, TX 75001" -249471,Wired Headphones,1,11.99,09/06/19 15:36,"986 5th St, Los Angeles, CA 90001" -249472,USB-C Charging Cable,1,11.95,09/10/19 06:57,"14 Dogwood St, San Francisco, CA 94016" -249473,AA Batteries (4-pack),1,3.84,09/02/19 18:52,"889 Elm St, Boston, MA 02215" -249474,USB-C Charging Cable,2,11.95,09/22/19 18:50,"833 5th St, Austin, TX 73301" -249475,Lightning Charging Cable,1,14.95,09/14/19 21:52,"497 Spruce St, Austin, TX 73301" -249476,Lightning Charging Cable,1,14.95,09/21/19 14:52,"58 Cedar St, San Francisco, CA 94016" -249477,USB-C Charging Cable,1,11.95,09/17/19 08:42,"126 8th St, Los Angeles, CA 90001" -249478,Wired Headphones,1,11.99,09/16/19 11:22,"941 Ridge St, Los Angeles, CA 90001" -,,,,, -249479,Lightning Charging Cable,1,14.95,09/08/19 15:46,"903 Elm St, Los Angeles, CA 90001" -249480,Lightning Charging Cable,1,14.95,09/21/19 10:57,"635 Cedar St, San Francisco, CA 94016" -249481,USB-C Charging Cable,1,11.95,09/26/19 13:36,"830 South St, Los Angeles, CA 90001" -249482,Wired Headphones,1,11.99,09/10/19 16:02,"325 Lakeview St, Boston, MA 02215" -249483,27in 4K Gaming Monitor,1,389.99,09/11/19 15:12,"908 14th St, Los Angeles, CA 90001" -249484,AAA Batteries (4-pack),1,2.99,09/22/19 11:05,"629 9th St, Los Angeles, CA 90001" -249485,Lightning Charging Cable,1,14.95,09/13/19 19:34,"407 Chestnut St, Los Angeles, CA 90001" -249486,ThinkPad Laptop,1,999.99,09/21/19 14:42,"522 Dogwood St, Dallas, TX 75001" -249487,AAA Batteries (4-pack),2,2.99,09/25/19 21:32,"68 Park St, Austin, TX 73301" -249488,AAA Batteries (4-pack),2,2.99,09/15/19 21:22,"347 Maple St, San Francisco, CA 94016" -249489,27in FHD Monitor,1,149.99,09/12/19 21:02,"122 10th St, Los Angeles, CA 90001" -249490,AA Batteries (4-pack),1,3.84,09/26/19 17:11,"343 Church St, Los Angeles, CA 90001" -249491,Lightning Charging Cable,1,14.95,09/17/19 09:24,"840 10th St, Los Angeles, CA 90001" -249492,Bose SoundSport Headphones,1,99.99,09/05/19 11:34,"340 Chestnut St, Dallas, TX 75001" -249493,Lightning Charging Cable,3,14.95,09/26/19 09:43,"617 5th St, Dallas, TX 75001" -249494,AA Batteries (4-pack),1,3.84,09/13/19 12:53,"426 Pine St, San Francisco, CA 94016" -249495,AA Batteries (4-pack),1,3.84,09/25/19 08:32,"492 12th St, Seattle, WA 98101" -249496,Apple Airpods Headphones,1,150,09/28/19 14:30,"644 Center St, Dallas, TX 75001" -249497,AA Batteries (4-pack),2,3.84,09/12/19 12:43,"436 Hill St, Atlanta, GA 30301" -249498,AAA Batteries (4-pack),2,2.99,09/19/19 22:18,"254 Pine St, San Francisco, CA 94016" -249498,Lightning Charging Cable,1,14.95,09/19/19 22:18,"254 Pine St, San Francisco, CA 94016" -249499,USB-C Charging Cable,1,11.95,09/14/19 16:11,"124 Dogwood St, Austin, TX 73301" -249500,27in FHD Monitor,1,149.99,09/08/19 09:57,"298 7th St, Los Angeles, CA 90001" -249501,Flatscreen TV,1,300,09/25/19 20:37,"902 Lakeview St, Dallas, TX 75001" -249502,Flatscreen TV,1,300,09/09/19 06:43,"940 Forest St, San Francisco, CA 94016" -249503,AA Batteries (4-pack),1,3.84,09/20/19 18:52,"383 Hickory St, New York City, NY 10001" -249504,Wired Headphones,2,11.99,09/12/19 10:03,"599 Pine St, New York City, NY 10001" -249505,AAA Batteries (4-pack),1,2.99,09/05/19 17:39,"577 Forest St, San Francisco, CA 94016" -249506,AA Batteries (4-pack),1,3.84,09/20/19 18:09,"272 Hill St, Portland, OR 97035" -249507,ThinkPad Laptop,1,999.99,09/12/19 20:39,"276 Center St, Boston, MA 02215" -249508,Lightning Charging Cable,1,14.95,09/20/19 17:35,"316 Cherry St, San Francisco, CA 94016" -249509,AA Batteries (4-pack),1,3.84,09/09/19 20:52,"724 6th St, San Francisco, CA 94016" -249510,AAA Batteries (4-pack),3,2.99,09/29/19 13:47,"934 Washington St, Los Angeles, CA 90001" -249511,20in Monitor,1,109.99,09/24/19 01:38,"356 7th St, San Francisco, CA 94016" -249512,USB-C Charging Cable,1,11.95,09/02/19 21:21,"109 12th St, Boston, MA 02215" -249513,Apple Airpods Headphones,1,150,09/30/19 10:00,"903 Center St, Austin, TX 73301" -249514,AA Batteries (4-pack),1,3.84,09/23/19 19:59,"176 Maple St, Seattle, WA 98101" -249515,Bose SoundSport Headphones,1,99.99,09/12/19 07:42,"982 West St, Dallas, TX 75001" -249516,AAA Batteries (4-pack),1,2.99,09/10/19 18:47,"731 Madison St, San Francisco, CA 94016" -249517,USB-C Charging Cable,2,11.95,09/19/19 10:52,"735 1st St, Los Angeles, CA 90001" -249518,Wired Headphones,1,11.99,09/01/19 19:34,"751 Forest St, New York City, NY 10001" -249519,AAA Batteries (4-pack),2,2.99,09/18/19 18:46,"516 1st St, Seattle, WA 98101" -249520,Wired Headphones,1,11.99,09/12/19 08:30,"794 Lakeview St, Boston, MA 02215" -249521,AA Batteries (4-pack),1,3.84,09/03/19 19:03,"475 South St, New York City, NY 10001" -249522,iPhone,1,700,09/05/19 20:07,"770 2nd St, New York City, NY 10001" -249523,AA Batteries (4-pack),2,3.84,09/18/19 07:54,"248 Pine St, Boston, MA 02215" -249524,USB-C Charging Cable,1,11.95,09/25/19 22:28,"108 Lakeview St, San Francisco, CA 94016" -249525,AA Batteries (4-pack),2,3.84,09/01/19 15:48,"988 Center St, Boston, MA 02215" -249526,Apple Airpods Headphones,1,150,09/17/19 14:37,"946 6th St, Atlanta, GA 30301" -249527,Bose SoundSport Headphones,1,99.99,09/25/19 10:43,"594 Cherry St, Portland, OR 97035" -249528,AA Batteries (4-pack),1,3.84,09/19/19 01:26,"438 13th St, Seattle, WA 98101" -249529,AA Batteries (4-pack),2,3.84,09/27/19 08:21,"849 Lake St, Los Angeles, CA 90001" -,,,,, -249530,AAA Batteries (4-pack),1,2.99,09/28/19 09:24,"255 Madison St, Los Angeles, CA 90001" -249531,Apple Airpods Headphones,1,150,09/21/19 09:53,"691 Dogwood St, Austin, TX 73301" -249532,iPhone,1,700,09/23/19 11:41,"725 10th St, Los Angeles, CA 90001" -249533,AA Batteries (4-pack),2,3.84,09/27/19 23:49,"665 9th St, Portland, ME 04101" -249534,Wired Headphones,2,11.99,09/16/19 17:20,"144 Maple St, San Francisco, CA 94016" -249535,Lightning Charging Cable,1,14.95,09/20/19 18:42,"769 Main St, New York City, NY 10001" -249536,Google Phone,1,600,09/08/19 14:14,"90 12th St, New York City, NY 10001" -249537,Lightning Charging Cable,2,14.95,09/29/19 13:39,"914 12th St, Portland, OR 97035" -249538,USB-C Charging Cable,3,11.95,09/01/19 15:20,"13 13th St, San Francisco, CA 94016" -249539,Apple Airpods Headphones,1,150,09/04/19 23:56,"608 Wilson St, San Francisco, CA 94016" -249540,Apple Airpods Headphones,1,150,09/06/19 12:17,"747 Center St, San Francisco, CA 94016" -249541,Wired Headphones,1,11.99,09/11/19 18:07,"328 7th St, San Francisco, CA 94016" -249541,AA Batteries (4-pack),2,3.84,09/11/19 18:07,"328 7th St, San Francisco, CA 94016" -249542,Bose SoundSport Headphones,1,99.99,09/15/19 12:55,"819 Ridge St, San Francisco, CA 94016" -249543,27in FHD Monitor,1,149.99,09/15/19 19:49,"649 12th St, Boston, MA 02215" -249544,AA Batteries (4-pack),1,3.84,09/30/19 23:14,"15 Park St, Los Angeles, CA 90001" -249545,Macbook Pro Laptop,1,1700,09/09/19 15:41,"267 4th St, New York City, NY 10001" -249546,27in FHD Monitor,1,149.99,09/29/19 14:02,"143 Ridge St, New York City, NY 10001" -249547,AA Batteries (4-pack),1,3.84,09/14/19 13:38,"116 6th St, Boston, MA 02215" -249548,Lightning Charging Cable,1,14.95,09/21/19 15:52,"147 Walnut St, New York City, NY 10001" -249549,Vareebadd Phone,1,400,09/10/19 15:31,"231 River St, San Francisco, CA 94016" -249549,USB-C Charging Cable,1,11.95,09/10/19 15:31,"231 River St, San Francisco, CA 94016" -249550,Apple Airpods Headphones,1,150,09/06/19 17:39,"363 Sunset St, Austin, TX 73301" -249551,USB-C Charging Cable,1,11.95,09/19/19 18:01,"572 Spruce St, San Francisco, CA 94016" -249552,Wired Headphones,1,11.99,09/10/19 19:34,"491 Forest St, Austin, TX 73301" -249553,Bose SoundSport Headphones,1,99.99,09/07/19 05:51,"364 Chestnut St, Dallas, TX 75001" -249554,34in Ultrawide Monitor,1,379.99,09/22/19 11:35,"331 Adams St, San Francisco, CA 94016" -249555,iPhone,1,700,09/17/19 14:33,"376 5th St, Austin, TX 73301" -,,,,, -249556,AA Batteries (4-pack),1,3.84,09/08/19 06:57,"575 Sunset St, Dallas, TX 75001" -249557,ThinkPad Laptop,1,999.99,09/20/19 08:43,"241 11th St, Seattle, WA 98101" -249558,Lightning Charging Cable,1,14.95,09/13/19 08:46,"642 South St, Los Angeles, CA 90001" -249559,Macbook Pro Laptop,1,1700,09/08/19 13:52,"927 Dogwood St, Dallas, TX 75001" -249560,Bose SoundSport Headphones,1,99.99,09/21/19 23:12,"72 Lincoln St, Los Angeles, CA 90001" -249561,Bose SoundSport Headphones,1,99.99,09/10/19 15:59,"315 Hickory St, Atlanta, GA 30301" -249562,ThinkPad Laptop,1,999.99,09/01/19 12:37,"29 Cherry St, New York City, NY 10001" -249563,USB-C Charging Cable,1,11.95,09/03/19 17:43,"819 Main St, San Francisco, CA 94016" -249564,Lightning Charging Cable,1,14.95,09/10/19 17:25,"732 Lake St, Boston, MA 02215" -249565,27in 4K Gaming Monitor,1,389.99,09/25/19 17:58,"991 1st St, New York City, NY 10001" -249566,Wired Headphones,1,11.99,09/17/19 13:27,"953 Meadow St, Austin, TX 73301" -249567,Bose SoundSport Headphones,1,99.99,09/16/19 11:21,"75 Pine St, Seattle, WA 98101" -249568,USB-C Charging Cable,1,11.95,09/17/19 21:41,"148 12th St, Portland, OR 97035" -249569,Apple Airpods Headphones,1,150,09/18/19 23:33,"760 South St, San Francisco, CA 94016" -249570,AA Batteries (4-pack),1,3.84,09/21/19 00:18,"989 6th St, New York City, NY 10001" -249571,USB-C Charging Cable,1,11.95,09/16/19 21:19,"443 Park St, New York City, NY 10001" -249572,AAA Batteries (4-pack),1,2.99,09/03/19 19:03,"377 Cedar St, New York City, NY 10001" -249573,AAA Batteries (4-pack),2,2.99,09/06/19 12:08,"337 9th St, Boston, MA 02215" -249574,Bose SoundSport Headphones,1,99.99,09/19/19 19:53,"878 Washington St, Boston, MA 02215" -249575,AAA Batteries (4-pack),3,2.99,09/02/19 03:18,"611 Hickory St, San Francisco, CA 94016" -249576,20in Monitor,1,109.99,09/15/19 11:18,"136 Chestnut St, Los Angeles, CA 90001" -249577,ThinkPad Laptop,1,999.99,09/26/19 09:28,"888 Walnut St, San Francisco, CA 94016" -249578,Lightning Charging Cable,1,14.95,09/19/19 12:54,"276 Elm St, Boston, MA 02215" -249579,USB-C Charging Cable,1,11.95,09/30/19 13:01,"827 1st St, San Francisco, CA 94016" -249580,Apple Airpods Headphones,1,150,09/22/19 10:54,"50 Walnut St, Seattle, WA 98101" -249581,Lightning Charging Cable,1,14.95,09/29/19 13:02,"693 Washington St, San Francisco, CA 94016" -249582,Wired Headphones,1,11.99,09/30/19 19:14,"164 Cherry St, San Francisco, CA 94016" -249583,Bose SoundSport Headphones,1,99.99,09/16/19 15:01,"715 South St, Los Angeles, CA 90001" -249584,27in 4K Gaming Monitor,1,389.99,09/06/19 10:28,"813 Chestnut St, San Francisco, CA 94016" -249585,27in 4K Gaming Monitor,1,389.99,09/30/19 16:25,"935 2nd St, Los Angeles, CA 90001" -249586,AA Batteries (4-pack),5,3.84,09/30/19 16:28,"502 Cedar St, Boston, MA 02215" -249587,Apple Airpods Headphones,1,150,09/15/19 20:56,"950 10th St, Los Angeles, CA 90001" -249588,Macbook Pro Laptop,1,1700,09/10/19 08:59,"708 1st St, Austin, TX 73301" -249589,Apple Airpods Headphones,1,150,09/24/19 03:36,"634 Elm St, San Francisco, CA 94016" -249590,Wired Headphones,1,11.99,09/28/19 15:52,"209 Hickory St, San Francisco, CA 94016" -249591,AA Batteries (4-pack),1,3.84,09/03/19 10:59,"732 11th St, Los Angeles, CA 90001" -249592,34in Ultrawide Monitor,1,379.99,09/09/19 08:14,"811 Walnut St, San Francisco, CA 94016" -249593,AAA Batteries (4-pack),1,2.99,09/05/19 14:33,"211 Maple St, Atlanta, GA 30301" -249594,AAA Batteries (4-pack),1,2.99,09/08/19 17:13,"616 Center St, San Francisco, CA 94016" -249595,Lightning Charging Cable,1,14.95,09/11/19 12:36,"233 Chestnut St, San Francisco, CA 94016" -249596,AAA Batteries (4-pack),1,2.99,09/21/19 20:15,"69 10th St, Austin, TX 73301" -249597,Lightning Charging Cable,1,14.95,09/04/19 13:32,"398 13th St, Austin, TX 73301" -249598,AAA Batteries (4-pack),2,2.99,09/21/19 13:27,"774 Lakeview St, Austin, TX 73301" -249599,Apple Airpods Headphones,1,150,09/19/19 08:57,"72 Jefferson St, San Francisco, CA 94016" -249600,AAA Batteries (4-pack),1,2.99,09/09/19 18:33,"240 Jackson St, Atlanta, GA 30301" -249601,AA Batteries (4-pack),1,3.84,09/30/19 23:02,"935 11th St, San Francisco, CA 94016" -249602,Lightning Charging Cable,1,14.95,09/06/19 18:27,"516 Jackson St, New York City, NY 10001" -249603,Google Phone,1,600,09/01/19 17:46,"222 1st St, Seattle, WA 98101" -249604,20in Monitor,1,109.99,09/25/19 08:01,"233 Johnson St, San Francisco, CA 94016" -249605,Apple Airpods Headphones,1,150,09/04/19 16:10,"69 13th St, New York City, NY 10001" -249605,Wired Headphones,1,11.99,09/04/19 16:10,"69 13th St, New York City, NY 10001" -249606,Bose SoundSport Headphones,1,99.99,09/10/19 21:59,"203 Jackson St, New York City, NY 10001" -249607,27in 4K Gaming Monitor,1,389.99,09/02/19 11:02,"156 Maple St, Atlanta, GA 30301" -249608,iPhone,1,700,09/05/19 17:02,"351 14th St, New York City, NY 10001" -249608,Apple Airpods Headphones,1,150,09/05/19 17:02,"351 14th St, New York City, NY 10001" -249609,34in Ultrawide Monitor,1,379.99,09/13/19 19:38,"228 9th St, Portland, OR 97035" -249610,USB-C Charging Cable,1,11.95,09/16/19 17:59,"885 Lincoln St, Los Angeles, CA 90001" -249611,27in FHD Monitor,1,149.99,09/26/19 17:39,"784 Madison St, Seattle, WA 98101" -249612,Apple Airpods Headphones,1,150,09/04/19 15:36,"84 Sunset St, San Francisco, CA 94016" -249613,AAA Batteries (4-pack),1,2.99,09/27/19 13:01,"173 13th St, Los Angeles, CA 90001" -249614,USB-C Charging Cable,1,11.95,09/29/19 00:26,"133 Hickory St, Seattle, WA 98101" -249615,AAA Batteries (4-pack),2,2.99,09/21/19 09:55,"365 Cherry St, San Francisco, CA 94016" -249616,ThinkPad Laptop,1,999.99,09/01/19 16:50,"42 2nd St, San Francisco, CA 94016" -249616,Lightning Charging Cable,1,14.95,09/01/19 16:50,"42 2nd St, San Francisco, CA 94016" -249617,Lightning Charging Cable,1,14.95,09/11/19 19:01,"550 Main St, Boston, MA 02215" -249618,USB-C Charging Cable,1,11.95,09/20/19 13:03,"615 Dogwood St, Austin, TX 73301" -249619,AAA Batteries (4-pack),4,2.99,09/02/19 19:25,"281 South St, San Francisco, CA 94016" -249620,Apple Airpods Headphones,1,150,09/26/19 02:55,"328 River St, Los Angeles, CA 90001" -249621,Wired Headphones,1,11.99,09/12/19 17:41,"215 Johnson St, Boston, MA 02215" -249622,AA Batteries (4-pack),1,3.84,09/07/19 16:29,"870 2nd St, Atlanta, GA 30301" -249623,AAA Batteries (4-pack),2,2.99,09/13/19 01:35,"311 Cedar St, Los Angeles, CA 90001" -249624,AAA Batteries (4-pack),2,2.99,09/01/19 06:47,"460 11th St, New York City, NY 10001" -249625,Lightning Charging Cable,1,14.95,09/10/19 19:57,"184 7th St, Austin, TX 73301" -249626,Wired Headphones,1,11.99,09/15/19 18:23,"508 Dogwood St, San Francisco, CA 94016" -249627,Flatscreen TV,1,300,09/20/19 14:13,"744 1st St, San Francisco, CA 94016" -249628,Wired Headphones,1,11.99,09/01/19 13:22,"535 Lake St, San Francisco, CA 94016" -249629,AAA Batteries (4-pack),1,2.99,09/23/19 21:28,"755 9th St, New York City, NY 10001" -249630,Google Phone,1,600,09/06/19 11:01,"628 Lake St, Boston, MA 02215" -249631,USB-C Charging Cable,1,11.95,09/28/19 14:47,"375 Park St, Atlanta, GA 30301" -249632,Flatscreen TV,1,300,09/03/19 19:29,"632 Wilson St, San Francisco, CA 94016" -249633,iPhone,1,700,09/29/19 18:00,"710 11th St, Boston, MA 02215" -249634,USB-C Charging Cable,1,11.95,09/16/19 14:23,"989 Washington St, San Francisco, CA 94016" -249635,iPhone,1,700,09/30/19 15:57,"425 River St, Portland, ME 04101" -249636,USB-C Charging Cable,1,11.95,09/14/19 14:12,"727 Walnut St, Atlanta, GA 30301" -249637,Bose SoundSport Headphones,1,99.99,09/29/19 10:25,"803 1st St, Austin, TX 73301" -249638,AA Batteries (4-pack),2,3.84,09/26/19 13:36,"321 West St, Boston, MA 02215" -249639,AAA Batteries (4-pack),2,2.99,09/26/19 11:49,"631 1st St, San Francisco, CA 94016" -249640,Lightning Charging Cable,1,14.95,09/06/19 12:24,"282 Pine St, New York City, NY 10001" -249641,34in Ultrawide Monitor,1,379.99,09/22/19 23:29,"853 Hill St, San Francisco, CA 94016" -249642,Flatscreen TV,1,300,09/14/19 12:43,"925 8th St, San Francisco, CA 94016" -249643,Flatscreen TV,1,300,09/28/19 19:54,"275 Forest St, San Francisco, CA 94016" -249644,USB-C Charging Cable,1,11.95,09/28/19 21:13,"432 Madison St, Los Angeles, CA 90001" -249645,Vareebadd Phone,1,400,09/09/19 14:17,"5 Church St, Los Angeles, CA 90001" -249646,AA Batteries (4-pack),3,3.84,09/05/19 13:31,"199 South St, Los Angeles, CA 90001" -249647,AAA Batteries (4-pack),2,2.99,09/14/19 12:28,"669 Lincoln St, Los Angeles, CA 90001" -249648,27in FHD Monitor,1,149.99,09/26/19 15:01,"708 Wilson St, Los Angeles, CA 90001" -249649,Lightning Charging Cable,1,14.95,09/21/19 03:00,"197 14th St, Dallas, TX 75001" -249650,USB-C Charging Cable,1,11.95,09/11/19 00:34,"567 Center St, San Francisco, CA 94016" -249651,ThinkPad Laptop,1,999.99,09/08/19 20:41,"584 Cedar St, New York City, NY 10001" -249652,34in Ultrawide Monitor,1,379.99,09/03/19 01:16,"815 Jefferson St, Atlanta, GA 30301" -249653,USB-C Charging Cable,1,11.95,09/30/19 11:51,"284 Willow St, Portland, ME 04101" -249654,AA Batteries (4-pack),2,3.84,09/15/19 20:57,"692 Johnson St, San Francisco, CA 94016" -249655,Lightning Charging Cable,1,14.95,09/24/19 17:52,"454 Chestnut St, Atlanta, GA 30301" -249656,Lightning Charging Cable,1,14.95,09/08/19 20:23,"315 13th St, Dallas, TX 75001" -249657,Lightning Charging Cable,1,14.95,09/13/19 19:05,"834 Main St, Portland, OR 97035" -249658,USB-C Charging Cable,1,11.95,09/16/19 22:09,"790 Main St, New York City, NY 10001" -249659,ThinkPad Laptop,1,999.99,09/15/19 18:05,"672 Hill St, Seattle, WA 98101" -249660,34in Ultrawide Monitor,1,379.99,09/18/19 20:08,"280 1st St, Seattle, WA 98101" -249661,Lightning Charging Cable,1,14.95,09/18/19 20:47,"33 14th St, New York City, NY 10001" -249662,Macbook Pro Laptop,1,1700,09/26/19 16:35,"773 5th St, Boston, MA 02215" -249663,Lightning Charging Cable,2,14.95,09/24/19 15:05,"772 12th St, Atlanta, GA 30301" -249663,Apple Airpods Headphones,1,150,09/24/19 15:05,"772 12th St, Atlanta, GA 30301" -249664,ThinkPad Laptop,1,999.99,09/18/19 11:35,"793 Park St, San Francisco, CA 94016" -249665,Wired Headphones,1,11.99,09/17/19 22:16,"640 Forest St, San Francisco, CA 94016" -249666,USB-C Charging Cable,1,11.95,09/27/19 17:29,"344 4th St, San Francisco, CA 94016" -249667,AAA Batteries (4-pack),1,2.99,09/24/19 14:35,"292 Chestnut St, Atlanta, GA 30301" -249668,USB-C Charging Cable,1,11.95,09/11/19 09:22,"559 Hill St, San Francisco, CA 94016" -249669,Apple Airpods Headphones,1,150,09/28/19 12:46,"92 1st St, Los Angeles, CA 90001" -249670,Google Phone,1,600,09/17/19 20:10,"195 Chestnut St, San Francisco, CA 94016" -249671,Bose SoundSport Headphones,1,99.99,09/22/19 18:27,"831 Hickory St, Los Angeles, CA 90001" -249672,Lightning Charging Cable,1,14.95,09/28/19 16:54,"969 Forest St, New York City, NY 10001" -249673,AA Batteries (4-pack),3,3.84,09/07/19 12:46,"362 Forest St, Dallas, TX 75001" -249674,27in FHD Monitor,1,149.99,09/12/19 18:27,"888 Sunset St, Los Angeles, CA 90001" -249675,Lightning Charging Cable,1,14.95,09/07/19 15:34,"444 Highland St, Austin, TX 73301" -249676,AAA Batteries (4-pack),2,2.99,09/02/19 11:44,"796 Highland St, Atlanta, GA 30301" -249676,AA Batteries (4-pack),1,3.84,09/02/19 11:44,"796 Highland St, Atlanta, GA 30301" -249677,AA Batteries (4-pack),1,3.84,09/08/19 12:07,"325 Dogwood St, San Francisco, CA 94016" -249678,USB-C Charging Cable,1,11.95,09/30/19 22:18,"979 10th St, Boston, MA 02215" -249679,ThinkPad Laptop,1,999.99,09/29/19 19:18,"807 Dogwood St, Boston, MA 02215" -249680,Wired Headphones,1,11.99,09/28/19 18:20,"753 10th St, Boston, MA 02215" -249681,27in 4K Gaming Monitor,1,389.99,09/13/19 10:54,"551 Jefferson St, Dallas, TX 75001" -249682,AAA Batteries (4-pack),2,2.99,09/06/19 22:44,"178 Madison St, Boston, MA 02215" -249683,Lightning Charging Cable,1,14.95,09/24/19 12:59,"41 Center St, Los Angeles, CA 90001" -249684,ThinkPad Laptop,1,999.99,09/11/19 13:11,"613 Cedar St, Boston, MA 02215" -249685,USB-C Charging Cable,2,11.95,09/21/19 22:42,"350 West St, New York City, NY 10001" -249686,27in FHD Monitor,1,149.99,09/25/19 13:57,"286 12th St, San Francisco, CA 94016" -249687,AA Batteries (4-pack),1,3.84,09/04/19 09:54,"820 Forest St, New York City, NY 10001" -249688,Lightning Charging Cable,1,14.95,09/26/19 14:58,"336 Wilson St, Atlanta, GA 30301" -249689,Wired Headphones,1,11.99,09/02/19 19:57,"331 Main St, Dallas, TX 75001" -249690,Apple Airpods Headphones,1,150,09/20/19 21:34,"624 Forest St, Portland, OR 97035" -249691,AAA Batteries (4-pack),1,2.99,09/27/19 21:09,"909 Washington St, Atlanta, GA 30301" -249692,Lightning Charging Cable,1,14.95,09/20/19 15:17,"307 9th St, Seattle, WA 98101" -249693,20in Monitor,1,109.99,09/21/19 10:03,"828 8th St, San Francisco, CA 94016" -249694,34in Ultrawide Monitor,1,379.99,09/14/19 08:40,"509 2nd St, San Francisco, CA 94016" -249695,USB-C Charging Cable,1,11.95,09/10/19 14:51,"963 Jefferson St, New York City, NY 10001" -249696,AAA Batteries (4-pack),1,2.99,09/12/19 05:59,"697 Hickory St, Boston, MA 02215" -249697,34in Ultrawide Monitor,1,379.99,09/05/19 20:03,"279 Wilson St, Los Angeles, CA 90001" -249698,27in FHD Monitor,1,149.99,09/25/19 16:47,"773 West St, Atlanta, GA 30301" -249699,27in FHD Monitor,1,149.99,09/07/19 23:38,"344 Dogwood St, Seattle, WA 98101" -249700,Google Phone,1,600,09/09/19 18:17,"624 12th St, Atlanta, GA 30301" -249700,USB-C Charging Cable,1,11.95,09/09/19 18:17,"624 12th St, Atlanta, GA 30301" -249701,Bose SoundSport Headphones,1,99.99,09/17/19 19:00,"914 Maple St, Portland, OR 97035" -249702,Wired Headphones,1,11.99,09/03/19 07:02,"584 4th St, Los Angeles, CA 90001" -249703,Flatscreen TV,1,300,09/20/19 11:43,"597 Elm St, Dallas, TX 75001" -249704,AAA Batteries (4-pack),1,2.99,09/29/19 19:43,"75 South St, Boston, MA 02215" -249705,USB-C Charging Cable,1,11.95,09/21/19 09:53,"883 Center St, San Francisco, CA 94016" -249706,USB-C Charging Cable,1,11.95,09/21/19 15:31,"961 Elm St, Austin, TX 73301" -249707,Apple Airpods Headphones,1,150,09/08/19 14:29,"925 Lakeview St, Los Angeles, CA 90001" -249708,Apple Airpods Headphones,1,150,09/23/19 23:52,"653 Maple St, Seattle, WA 98101" -249709,USB-C Charging Cable,1,11.95,09/09/19 16:59,"322 7th St, New York City, NY 10001" -249710,Wired Headphones,1,11.99,09/27/19 12:35,"54 North St, Austin, TX 73301" -249711,USB-C Charging Cable,1,11.95,09/16/19 14:49,"843 North St, San Francisco, CA 94016" -249712,Lightning Charging Cable,1,14.95,09/27/19 15:18,"544 5th St, Portland, OR 97035" -249713,iPhone,1,700,09/19/19 19:09,"806 Adams St, Seattle, WA 98101" -249714,AAA Batteries (4-pack),1,2.99,09/05/19 10:57,"939 Park St, Los Angeles, CA 90001" -249715,Google Phone,1,600,09/02/19 19:09,"654 Madison St, Atlanta, GA 30301" -249716,Apple Airpods Headphones,1,150,09/22/19 14:13,"802 11th St, San Francisco, CA 94016" -249717,Apple Airpods Headphones,1,150,09/13/19 20:25,"997 Ridge St, Seattle, WA 98101" -249718,AAA Batteries (4-pack),3,2.99,09/27/19 14:07,"333 2nd St, San Francisco, CA 94016" -249719,Flatscreen TV,1,300,09/18/19 21:34,"510 Lake St, San Francisco, CA 94016" -249719,AAA Batteries (4-pack),1,2.99,09/18/19 21:34,"510 Lake St, San Francisco, CA 94016" -249720,Vareebadd Phone,1,400,09/19/19 09:35,"154 Hickory St, New York City, NY 10001" -249721,Lightning Charging Cable,2,14.95,09/08/19 17:53,"625 1st St, San Francisco, CA 94016" -249722,Flatscreen TV,1,300,09/29/19 22:13,"737 Maple St, San Francisco, CA 94016" -249723,Wired Headphones,1,11.99,09/29/19 22:13,"265 14th St, Seattle, WA 98101" -249724,Apple Airpods Headphones,1,150,09/05/19 11:13,"66 West St, New York City, NY 10001" -249725,Lightning Charging Cable,1,14.95,09/19/19 09:28,"130 North St, Seattle, WA 98101" -249726,27in 4K Gaming Monitor,1,389.99,09/05/19 18:56,"686 Main St, Los Angeles, CA 90001" -249727,USB-C Charging Cable,1,11.95,09/14/19 19:34,"294 Pine St, San Francisco, CA 94016" -249728,USB-C Charging Cable,1,11.95,09/14/19 21:45,"62 2nd St, Boston, MA 02215" -249729,Bose SoundSport Headphones,1,99.99,09/22/19 16:20,"163 4th St, Austin, TX 73301" -249730,27in FHD Monitor,1,149.99,09/28/19 17:38,"956 Highland St, New York City, NY 10001" -249731,AAA Batteries (4-pack),1,2.99,09/07/19 17:29,"448 Lincoln St, San Francisco, CA 94016" -249732,Apple Airpods Headphones,1,150,09/23/19 15:39,"898 12th St, Los Angeles, CA 90001" -249733,Apple Airpods Headphones,1,150,09/14/19 10:36,"894 Madison St, San Francisco, CA 94016" -249734,AA Batteries (4-pack),2,3.84,09/01/19 20:05,"927 6th St, Los Angeles, CA 90001" -249735,27in 4K Gaming Monitor,1,389.99,09/22/19 11:54,"374 Pine St, New York City, NY 10001" -249736,AA Batteries (4-pack),1,3.84,09/28/19 10:07,"962 Main St, Boston, MA 02215" -249737,Lightning Charging Cable,1,14.95,09/02/19 01:05,"159 Johnson St, San Francisco, CA 94016" -249738,Wired Headphones,1,11.99,09/27/19 12:18,"601 9th St, San Francisco, CA 94016" -249739,AAA Batteries (4-pack),2,2.99,09/05/19 00:30,"869 Ridge St, Los Angeles, CA 90001" -249740,Wired Headphones,1,11.99,09/05/19 11:43,"103 Park St, San Francisco, CA 94016" -249741,Lightning Charging Cable,1,14.95,09/03/19 17:17,"475 9th St, Los Angeles, CA 90001" -249742,27in FHD Monitor,1,149.99,09/26/19 00:50,"849 Cherry St, New York City, NY 10001" -249743,27in FHD Monitor,1,149.99,09/08/19 05:51,"904 6th St, Dallas, TX 75001" -249744,Wired Headphones,1,11.99,09/11/19 21:33,"182 Pine St, San Francisco, CA 94016" -249745,Google Phone,1,600,09/18/19 19:50,"737 5th St, Dallas, TX 75001" -249746,Flatscreen TV,1,300,09/12/19 18:14,"4 Sunset St, Los Angeles, CA 90001" -249747,ThinkPad Laptop,1,999.99,09/01/19 09:56,"817 5th St, Atlanta, GA 30301" -249748,USB-C Charging Cable,1,11.95,09/06/19 06:50,"305 Church St, New York City, NY 10001" -249749,Flatscreen TV,1,300,09/22/19 11:35,"451 Walnut St, Seattle, WA 98101" -249750,USB-C Charging Cable,1,11.95,09/27/19 12:03,"822 4th St, Boston, MA 02215" -249750,AAA Batteries (4-pack),1,2.99,09/27/19 12:03,"822 4th St, Boston, MA 02215" -249751,27in FHD Monitor,1,149.99,09/01/19 19:42,"83 Elm St, San Francisco, CA 94016" -249752,AAA Batteries (4-pack),2,2.99,09/25/19 17:30,"396 Pine St, Boston, MA 02215" -249753,ThinkPad Laptop,1,999.99,09/26/19 09:29,"868 4th St, Los Angeles, CA 90001" -249754,27in FHD Monitor,1,149.99,09/25/19 17:03,"646 Park St, Los Angeles, CA 90001" -249755,AAA Batteries (4-pack),1,2.99,09/30/19 08:04,"266 13th St, New York City, NY 10001" -249756,Lightning Charging Cable,1,14.95,09/14/19 13:01,"514 Center St, Los Angeles, CA 90001" -249757,Bose SoundSport Headphones,1,99.99,09/16/19 01:32,"48 Ridge St, Los Angeles, CA 90001" -249758,LG Dryer,1,600.0,09/03/19 14:29,"648 Lake St, Portland, OR 97035" -249758,Lightning Charging Cable,1,14.95,09/03/19 14:29,"648 Lake St, Portland, OR 97035" -249759,Bose SoundSport Headphones,1,99.99,09/03/19 18:27,"720 14th St, Atlanta, GA 30301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -249760,iPhone,1,700,09/27/19 21:36,"282 South St, Boston, MA 02215" -249761,USB-C Charging Cable,1,11.95,09/17/19 15:40,"68 River St, San Francisco, CA 94016" -249762,34in Ultrawide Monitor,1,379.99,09/23/19 08:23,"273 Spruce St, Los Angeles, CA 90001" -249763,Lightning Charging Cable,1,14.95,09/08/19 20:34,"724 Washington St, Seattle, WA 98101" -249764,ThinkPad Laptop,1,999.99,09/07/19 13:42,"650 North St, Los Angeles, CA 90001" -249765,AA Batteries (4-pack),1,3.84,09/07/19 11:26,"28 Pine St, Los Angeles, CA 90001" -249766,iPhone,1,700,09/30/19 17:21,"864 Maple St, Los Angeles, CA 90001" -249766,Apple Airpods Headphones,1,150,09/30/19 17:21,"864 Maple St, Los Angeles, CA 90001" -249767,27in 4K Gaming Monitor,1,389.99,09/18/19 08:08,"25 14th St, San Francisco, CA 94016" -249768,Vareebadd Phone,1,400,09/26/19 15:52,"610 Forest St, New York City, NY 10001" -249769,Lightning Charging Cable,1,14.95,09/25/19 11:47,"659 Main St, Los Angeles, CA 90001" -249770,Apple Airpods Headphones,1,150,09/06/19 20:13,"97 10th St, Dallas, TX 75001" -249771,AAA Batteries (4-pack),4,2.99,09/01/19 11:45,"161 8th St, Atlanta, GA 30301" -249772,27in 4K Gaming Monitor,1,389.99,09/11/19 17:38,"872 Main St, Boston, MA 02215" -249773,Apple Airpods Headphones,1,150,09/23/19 12:58,"359 11th St, Los Angeles, CA 90001" -249774,AAA Batteries (4-pack),2,2.99,09/04/19 10:22,"337 Lake St, Los Angeles, CA 90001" -249774,Apple Airpods Headphones,1,150,09/04/19 10:22,"337 Lake St, Los Angeles, CA 90001" -249775,Bose SoundSport Headphones,1,99.99,09/18/19 18:37,"271 Dogwood St, Los Angeles, CA 90001" -249776,Bose SoundSport Headphones,1,99.99,09/09/19 19:39,"521 Wilson St, Seattle, WA 98101" -249777,Apple Airpods Headphones,1,150,09/04/19 18:50,"705 Willow St, Portland, OR 97035" -249778,Lightning Charging Cable,1,14.95,09/30/19 20:50,"331 Forest St, Atlanta, GA 30301" -249779,20in Monitor,1,109.99,09/13/19 16:20,"288 Wilson St, San Francisco, CA 94016" -249780,USB-C Charging Cable,1,11.95,09/16/19 10:45,"992 Jackson St, Los Angeles, CA 90001" -249781,USB-C Charging Cable,1,11.95,09/28/19 19:53,"115 Chestnut St, Austin, TX 73301" -249782,34in Ultrawide Monitor,1,379.99,09/18/19 01:39,"597 Lakeview St, San Francisco, CA 94016" -249783,AA Batteries (4-pack),1,3.84,09/26/19 10:41,"892 7th St, Austin, TX 73301" -249784,AAA Batteries (4-pack),2,2.99,09/17/19 14:10,"445 Wilson St, Austin, TX 73301" -249785,AAA Batteries (4-pack),1,2.99,09/17/19 18:45,"137 2nd St, Seattle, WA 98101" -249786,27in FHD Monitor,1,149.99,09/06/19 09:22,"839 14th St, Los Angeles, CA 90001" -249787,USB-C Charging Cable,1,11.95,09/01/19 16:53,"398 Cherry St, Portland, OR 97035" -249788,USB-C Charging Cable,1,11.95,09/29/19 16:34,"576 Lakeview St, San Francisco, CA 94016" -249789,Apple Airpods Headphones,1,150,09/21/19 17:53,"758 Washington St, Dallas, TX 75001" -249790,Lightning Charging Cable,1,14.95,09/17/19 09:50,"910 Cherry St, Atlanta, GA 30301" -249791,AAA Batteries (4-pack),1,2.99,09/12/19 19:30,"829 Forest St, San Francisco, CA 94016" -249792,27in FHD Monitor,1,149.99,09/16/19 13:22,"612 12th St, New York City, NY 10001" -249793,USB-C Charging Cable,2,11.95,09/02/19 10:38,"752 Forest St, Dallas, TX 75001" -249794,Macbook Pro Laptop,1,1700,09/25/19 20:06,"350 7th St, Austin, TX 73301" -249795,27in 4K Gaming Monitor,1,389.99,09/05/19 13:03,"135 9th St, Los Angeles, CA 90001" -249796,Bose SoundSport Headphones,1,99.99,09/24/19 20:01,"757 North St, Dallas, TX 75001" -,,,,, -249797,Lightning Charging Cable,1,14.95,09/11/19 03:10,"626 Lincoln St, Portland, OR 97035" -249798,Vareebadd Phone,1,400,09/27/19 16:44,"446 Jackson St, Los Angeles, CA 90001" -249799,Apple Airpods Headphones,1,150,09/19/19 14:57,"714 Madison St, New York City, NY 10001" -249800,iPhone,1,700,09/27/19 16:46,"404 South St, Portland, ME 04101" -249801,USB-C Charging Cable,1,11.95,09/24/19 05:31,"956 Forest St, Atlanta, GA 30301" -249802,Apple Airpods Headphones,1,150,09/28/19 13:01,"874 13th St, San Francisco, CA 94016" -249803,Lightning Charging Cable,1,14.95,09/01/19 14:21,"435 Lake St, San Francisco, CA 94016" -249804,USB-C Charging Cable,1,11.95,09/06/19 19:38,"891 South St, Los Angeles, CA 90001" -249805,USB-C Charging Cable,2,11.95,09/28/19 13:59,"952 Wilson St, San Francisco, CA 94016" -249806,USB-C Charging Cable,1,11.95,09/28/19 18:20,"683 14th St, New York City, NY 10001" -249807,Bose SoundSport Headphones,1,99.99,09/24/19 19:56,"571 7th St, Atlanta, GA 30301" -249808,Lightning Charging Cable,2,14.95,09/03/19 12:30,"388 South St, San Francisco, CA 94016" -249809,USB-C Charging Cable,1,11.95,09/26/19 19:34,"160 Lakeview St, San Francisco, CA 94016" -249810,AAA Batteries (4-pack),2,2.99,09/20/19 15:52,"292 Sunset St, Atlanta, GA 30301" -249811,Wired Headphones,1,11.99,09/11/19 14:27,"559 8th St, Portland, OR 97035" -249811,AA Batteries (4-pack),1,3.84,09/11/19 14:27,"559 8th St, Portland, OR 97035" -249812,Wired Headphones,1,11.99,09/16/19 23:57,"507 Meadow St, San Francisco, CA 94016" -249813,27in FHD Monitor,1,149.99,09/03/19 21:05,"949 8th St, Dallas, TX 75001" -249814,AA Batteries (4-pack),1,3.84,09/11/19 08:47,"261 Main St, San Francisco, CA 94016" -249815,Apple Airpods Headphones,1,150,09/13/19 07:59,"400 7th St, New York City, NY 10001" -249816,AA Batteries (4-pack),1,3.84,09/06/19 12:55,"732 5th St, San Francisco, CA 94016" -249817,USB-C Charging Cable,1,11.95,09/27/19 13:07,"965 Madison St, New York City, NY 10001" -249818,Lightning Charging Cable,1,14.95,09/21/19 18:08,"270 Willow St, Seattle, WA 98101" -249819,Apple Airpods Headphones,1,150,09/03/19 13:32,"27 Jefferson St, New York City, NY 10001" -249820,27in FHD Monitor,1,149.99,09/08/19 09:56,"825 11th St, New York City, NY 10001" -249821,34in Ultrawide Monitor,1,379.99,09/16/19 10:26,"135 5th St, Los Angeles, CA 90001" -249822,Macbook Pro Laptop,1,1700,09/29/19 08:29,"379 10th St, New York City, NY 10001" -249823,Macbook Pro Laptop,1,1700,09/05/19 19:07,"461 10th St, New York City, NY 10001" -249824,USB-C Charging Cable,1,11.95,09/14/19 20:07,"505 Spruce St, New York City, NY 10001" -249825,34in Ultrawide Monitor,1,379.99,09/20/19 16:27,"347 Walnut St, Austin, TX 73301" -249826,USB-C Charging Cable,1,11.95,09/05/19 13:31,"53 Pine St, Los Angeles, CA 90001" -249827,Vareebadd Phone,1,400,09/01/19 13:14,"827 Chestnut St, New York City, NY 10001" -249828,Lightning Charging Cable,1,14.95,09/09/19 15:57,"266 Dogwood St, Atlanta, GA 30301" -249829,AA Batteries (4-pack),1,3.84,09/27/19 02:57,"389 Main St, Boston, MA 02215" -249830,Google Phone,1,600,09/20/19 17:49,"58 Church St, Boston, MA 02215" -249831,Lightning Charging Cable,1,14.95,09/22/19 16:42,"10 Chestnut St, Atlanta, GA 30301" -249832,Apple Airpods Headphones,1,150,09/12/19 04:02,"69 Meadow St, Atlanta, GA 30301" -249833,USB-C Charging Cable,1,11.95,09/24/19 11:11,"267 Dogwood St, Atlanta, GA 30301" -249834,Lightning Charging Cable,1,14.95,09/10/19 11:37,"72 5th St, Portland, OR 97035" -249835,Wired Headphones,1,11.99,09/02/19 00:41,"243 Elm St, Atlanta, GA 30301" -249836,Lightning Charging Cable,1,14.95,09/10/19 20:34,"29 14th St, Boston, MA 02215" -249837,Lightning Charging Cable,1,14.95,09/23/19 16:05,"772 Dogwood St, Boston, MA 02215" -249838,27in 4K Gaming Monitor,1,389.99,09/21/19 18:44,"778 Wilson St, San Francisco, CA 94016" -249839,Wired Headphones,2,11.99,09/09/19 11:19,"569 11th St, Seattle, WA 98101" -249840,iPhone,1,700,09/20/19 17:40,"108 12th St, New York City, NY 10001" -249841,Bose SoundSport Headphones,1,99.99,09/01/19 14:57,"429 Center St, Los Angeles, CA 90001" -249842,Apple Airpods Headphones,1,150,09/23/19 07:57,"911 9th St, San Francisco, CA 94016" -249843,AAA Batteries (4-pack),2,2.99,09/19/19 13:44,"851 Jackson St, Los Angeles, CA 90001" -249844,34in Ultrawide Monitor,1,379.99,09/15/19 16:05,"793 Ridge St, Portland, OR 97035" -249845,27in FHD Monitor,1,149.99,09/07/19 18:04,"447 Pine St, Boston, MA 02215" -249846,Wired Headphones,1,11.99,09/13/19 11:21,"130 Wilson St, Seattle, WA 98101" -249847,27in 4K Gaming Monitor,1,389.99,09/26/19 10:44,"950 Adams St, Boston, MA 02215" -249848,Macbook Pro Laptop,1,1700,09/23/19 10:24,"66 Park St, New York City, NY 10001" -249849,Macbook Pro Laptop,1,1700,09/06/19 22:25,"768 Lakeview St, Portland, OR 97035" -249850,USB-C Charging Cable,1,11.95,09/03/19 11:10,"767 Main St, San Francisco, CA 94016" -249851,AAA Batteries (4-pack),1,2.99,09/26/19 12:25,"756 12th St, Portland, OR 97035" -249852,Lightning Charging Cable,1,14.95,09/12/19 13:37,"225 Hickory St, Seattle, WA 98101" -249853,Wired Headphones,1,11.99,09/13/19 09:20,"220 Forest St, San Francisco, CA 94016" -249854,iPhone,1,700,09/26/19 18:43,"675 Jackson St, Los Angeles, CA 90001" -249855,USB-C Charging Cable,1,11.95,09/26/19 22:36,"606 Lakeview St, Austin, TX 73301" -249856,Flatscreen TV,2,300,09/07/19 23:53,"444 8th St, Atlanta, GA 30301" -249857,Apple Airpods Headphones,1,150,09/05/19 09:28,"493 Jefferson St, Los Angeles, CA 90001" -249858,AA Batteries (4-pack),1,3.84,09/25/19 10:54,"981 Lincoln St, San Francisco, CA 94016" -249859,iPhone,1,700,09/18/19 16:51,"252 River St, San Francisco, CA 94016" -249860,AA Batteries (4-pack),1,3.84,09/15/19 22:38,"449 5th St, San Francisco, CA 94016" -249861,iPhone,1,700,09/05/19 22:12,"399 Lincoln St, Los Angeles, CA 90001" -249861,Lightning Charging Cable,1,14.95,09/05/19 22:12,"399 Lincoln St, Los Angeles, CA 90001" -249862,Wired Headphones,1,11.99,09/20/19 10:29,"80 Jefferson St, Dallas, TX 75001" -249863,27in 4K Gaming Monitor,1,389.99,09/14/19 19:16,"698 Dogwood St, Austin, TX 73301" -249864,27in FHD Monitor,1,149.99,09/19/19 18:25,"560 Cherry St, San Francisco, CA 94016" -249865,USB-C Charging Cable,1,11.95,09/01/19 22:35,"349 Park St, Portland, ME 04101" -249866,ThinkPad Laptop,1,999.99,09/15/19 15:43,"349 6th St, Los Angeles, CA 90001" -249867,Vareebadd Phone,1,400,09/03/19 12:03,"503 Cedar St, Seattle, WA 98101" -249868,Bose SoundSport Headphones,1,99.99,09/29/19 15:13,"644 9th St, Portland, OR 97035" -249869,Wired Headphones,1,11.99,09/04/19 14:32,"547 7th St, Austin, TX 73301" -249870,Bose SoundSport Headphones,1,99.99,09/10/19 11:42,"837 Adams St, Seattle, WA 98101" -249871,AAA Batteries (4-pack),2,2.99,09/19/19 09:21,"238 Pine St, San Francisco, CA 94016" -249872,iPhone,1,700,09/20/19 22:23,"98 Park St, Austin, TX 73301" -249873,27in FHD Monitor,1,149.99,09/20/19 20:58,"426 Adams St, Boston, MA 02215" -249874,Flatscreen TV,1,300,09/04/19 18:44,"389 Main St, Boston, MA 02215" -249875,Apple Airpods Headphones,1,150,09/27/19 16:31,"171 Hill St, Atlanta, GA 30301" -249876,AAA Batteries (4-pack),1,2.99,09/06/19 18:38,"293 Cedar St, Los Angeles, CA 90001" -249877,34in Ultrawide Monitor,1,379.99,09/24/19 21:51,"549 Dogwood St, Los Angeles, CA 90001" -249878,Flatscreen TV,1,300,09/25/19 16:11,"963 Spruce St, New York City, NY 10001" -249879,Lightning Charging Cable,1,14.95,09/02/19 11:07,"550 Highland St, San Francisco, CA 94016" -249880,Apple Airpods Headphones,1,150,09/11/19 10:48,"985 12th St, Boston, MA 02215" -249881,27in FHD Monitor,1,149.99,09/05/19 11:56,"133 Lakeview St, New York City, NY 10001" -249882,Lightning Charging Cable,1,14.95,09/19/19 20:58,"319 Walnut St, Seattle, WA 98101" -249883,AAA Batteries (4-pack),1,2.99,09/13/19 10:26,"676 Johnson St, Los Angeles, CA 90001" -249884,Google Phone,1,600,09/06/19 20:45,"156 Ridge St, Los Angeles, CA 90001" -249884,USB-C Charging Cable,1,11.95,09/06/19 20:45,"156 Ridge St, Los Angeles, CA 90001" -249885,Wired Headphones,2,11.99,09/20/19 13:14,"644 6th St, Atlanta, GA 30301" -249886,Macbook Pro Laptop,1,1700,09/28/19 13:56,"528 9th St, Los Angeles, CA 90001" -249887,AAA Batteries (4-pack),1,2.99,09/27/19 12:53,"915 Chestnut St, Dallas, TX 75001" -249888,USB-C Charging Cable,1,11.95,09/26/19 20:00,"522 2nd St, Dallas, TX 75001" -249889,Wired Headphones,1,11.99,09/17/19 14:48,"505 Jackson St, Boston, MA 02215" -249890,27in FHD Monitor,1,149.99,09/14/19 20:32,"336 Washington St, New York City, NY 10001" -249891,Macbook Pro Laptop,1,1700,09/09/19 09:48,"177 Center St, Portland, OR 97035" -249892,Apple Airpods Headphones,1,150,09/12/19 22:49,"5 Hickory St, Boston, MA 02215" -249893,AA Batteries (4-pack),1,3.84,09/15/19 11:52,"947 South St, Atlanta, GA 30301" -249894,Apple Airpods Headphones,1,150,09/08/19 00:31,"729 6th St, New York City, NY 10001" -249895,34in Ultrawide Monitor,1,379.99,09/19/19 22:14,"901 South St, San Francisco, CA 94016" -249895,34in Ultrawide Monitor,1,379.99,09/19/19 22:14,"901 South St, San Francisco, CA 94016" -249896,Wired Headphones,1,11.99,09/06/19 18:42,"228 Washington St, San Francisco, CA 94016" -249897,Macbook Pro Laptop,1,1700,09/14/19 19:49,"278 Forest St, Boston, MA 02215" -249898,Apple Airpods Headphones,1,150,09/29/19 13:23,"747 North St, Seattle, WA 98101" -249899,Google Phone,1,600,09/03/19 21:28,"975 Pine St, New York City, NY 10001" -249899,USB-C Charging Cable,1,11.95,09/03/19 21:28,"975 Pine St, New York City, NY 10001" -249900,USB-C Charging Cable,2,11.95,09/14/19 11:54,"98 Sunset St, New York City, NY 10001" -249901,Wired Headphones,1,11.99,09/11/19 15:54,"443 Main St, New York City, NY 10001" -249902,34in Ultrawide Monitor,1,379.99,09/29/19 20:20,"811 Washington St, San Francisco, CA 94016" -249903,AAA Batteries (4-pack),1,2.99,09/08/19 18:33,"814 Madison St, San Francisco, CA 94016" -249904,ThinkPad Laptop,1,999.99,09/29/19 11:37,"800 8th St, San Francisco, CA 94016" -249905,34in Ultrawide Monitor,1,379.99,09/05/19 10:05,"806 Willow St, Atlanta, GA 30301" -249906,Lightning Charging Cable,1,14.95,09/15/19 13:19,"106 Wilson St, Portland, OR 97035" -249907,iPhone,1,700,09/16/19 17:27,"59 Ridge St, Boston, MA 02215" -249908,Flatscreen TV,1,300,09/27/19 08:34,"667 Spruce St, Atlanta, GA 30301" -249909,AAA Batteries (4-pack),1,2.99,09/13/19 16:52,"224 Meadow St, New York City, NY 10001" -249910,AAA Batteries (4-pack),1,2.99,09/09/19 18:34,"295 Meadow St, San Francisco, CA 94016" -249910,AAA Batteries (4-pack),1,2.99,09/09/19 18:34,"295 Meadow St, San Francisco, CA 94016" -249911,Apple Airpods Headphones,1,150,09/15/19 19:00,"75 Maple St, Boston, MA 02215" -249912,Bose SoundSport Headphones,1,99.99,09/26/19 00:54,"151 Park St, Atlanta, GA 30301" -249913,USB-C Charging Cable,1,11.95,09/19/19 13:45,"589 Jefferson St, Los Angeles, CA 90001" -249914,Bose SoundSport Headphones,1,99.99,09/20/19 22:13,"901 Cherry St, Austin, TX 73301" -249915,Google Phone,1,600,09/16/19 19:00,"146 Hickory St, Dallas, TX 75001" -249916,Wired Headphones,1,11.99,09/27/19 21:16,"119 Jackson St, Los Angeles, CA 90001" -249917,iPhone,1,700,09/22/19 15:51,"969 Highland St, Los Angeles, CA 90001" -249918,AAA Batteries (4-pack),1,2.99,09/16/19 22:00,"871 5th St, Portland, OR 97035" -249919,Wired Headphones,1,11.99,09/08/19 07:53,"822 North St, Los Angeles, CA 90001" -249920,Bose SoundSport Headphones,1,99.99,09/13/19 06:43,"65 Hickory St, Austin, TX 73301" -249921,Bose SoundSport Headphones,1,99.99,09/09/19 14:06,"20 Willow St, Boston, MA 02215" -249922,Vareebadd Phone,1,400,09/01/19 08:39,"963 Elm St, New York City, NY 10001" -249923,ThinkPad Laptop,1,999.99,09/11/19 10:42,"112 Maple St, San Francisco, CA 94016" -249924,ThinkPad Laptop,1,999.99,09/14/19 00:39,"206 Walnut St, Atlanta, GA 30301" -249925,Lightning Charging Cable,1,14.95,09/10/19 08:58,"318 Hill St, San Francisco, CA 94016" -249926,ThinkPad Laptop,1,999.99,09/11/19 13:40,"681 Lincoln St, Atlanta, GA 30301" -249927,Wired Headphones,1,11.99,09/19/19 07:45,"744 Elm St, San Francisco, CA 94016" -249928,Apple Airpods Headphones,1,150,09/10/19 18:52,"681 North St, New York City, NY 10001" -249929,34in Ultrawide Monitor,1,379.99,09/10/19 17:00,"677 Cedar St, Los Angeles, CA 90001" -249930,AA Batteries (4-pack),1,3.84,09/08/19 14:07,"969 Meadow St, New York City, NY 10001" -249931,Google Phone,1,600,09/18/19 15:47,"29 Washington St, Los Angeles, CA 90001" -249932,27in FHD Monitor,1,149.99,09/27/19 20:27,"857 Hill St, San Francisco, CA 94016" -249933,27in FHD Monitor,1,149.99,09/20/19 19:21,"77 Elm St, Austin, TX 73301" -249934,Bose SoundSport Headphones,1,99.99,09/29/19 00:12,"712 Spruce St, New York City, NY 10001" -249935,AA Batteries (4-pack),1,3.84,09/12/19 00:22,"794 Highland St, Seattle, WA 98101" -249936,34in Ultrawide Monitor,1,379.99,09/20/19 19:56,"421 Cedar St, Boston, MA 02215" -249937,Flatscreen TV,1,300,09/15/19 16:34,"774 8th St, Dallas, TX 75001" -249938,AAA Batteries (4-pack),1,2.99,09/15/19 22:45,"245 4th St, San Francisco, CA 94016" -249939,Wired Headphones,1,11.99,09/25/19 20:30,"598 Sunset St, Seattle, WA 98101" -249940,Macbook Pro Laptop,1,1700,09/02/19 21:25,"932 Chestnut St, Seattle, WA 98101" -249941,AA Batteries (4-pack),2,3.84,09/06/19 15:22,"184 Meadow St, Atlanta, GA 30301" -249942,27in FHD Monitor,1,149.99,09/09/19 14:05,"618 11th St, Los Angeles, CA 90001" -249943,20in Monitor,1,109.99,09/06/19 03:22,"262 Johnson St, Dallas, TX 75001" -249944,USB-C Charging Cable,1,11.95,09/11/19 12:49,"654 14th St, Portland, OR 97035" -249945,Apple Airpods Headphones,1,150,09/10/19 18:09,"822 West St, Los Angeles, CA 90001" -249946,AA Batteries (4-pack),1,3.84,09/27/19 17:30,"102 9th St, Dallas, TX 75001" -249947,AA Batteries (4-pack),1,3.84,09/15/19 17:41,"336 Lakeview St, Boston, MA 02215" -249948,20in Monitor,1,109.99,09/19/19 11:24,"204 11th St, Portland, OR 97035" -249949,Wired Headphones,1,11.99,09/27/19 19:54,"573 Wilson St, Seattle, WA 98101" -249950,Apple Airpods Headphones,1,150,09/26/19 17:43,"134 Spruce St, Los Angeles, CA 90001" -249951,20in Monitor,1,109.99,09/07/19 20:37,"418 Center St, San Francisco, CA 94016" -249952,AAA Batteries (4-pack),2,2.99,09/27/19 17:23,"363 Ridge St, San Francisco, CA 94016" -249953,Bose SoundSport Headphones,1,99.99,09/14/19 12:56,"821 River St, Los Angeles, CA 90001" -249954,Apple Airpods Headphones,1,150,09/06/19 12:34,"242 4th St, Atlanta, GA 30301" -249955,AA Batteries (4-pack),1,3.84,09/19/19 15:58,"38 Walnut St, New York City, NY 10001" -249956,Apple Airpods Headphones,1,150,09/23/19 14:34,"70 2nd St, Dallas, TX 75001" -249957,Apple Airpods Headphones,1,150,09/17/19 00:03,"41 Madison St, New York City, NY 10001" -249958,Apple Airpods Headphones,1,150,09/05/19 11:58,"584 8th St, Austin, TX 73301" -249959,34in Ultrawide Monitor,1,379.99,09/03/19 19:19,"497 Chestnut St, San Francisco, CA 94016" -249960,Lightning Charging Cable,1,14.95,09/04/19 06:38,"30 Maple St, Dallas, TX 75001" -249961,AAA Batteries (4-pack),2,2.99,09/18/19 23:47,"262 Hill St, Dallas, TX 75001" -249962,AAA Batteries (4-pack),2,2.99,09/04/19 22:51,"126 Adams St, Boston, MA 02215" -249963,Apple Airpods Headphones,1,150,09/25/19 19:37,"977 Cherry St, San Francisco, CA 94016" -249964,USB-C Charging Cable,1,11.95,09/02/19 20:23,"284 Adams St, San Francisco, CA 94016" -249965,USB-C Charging Cable,1,11.95,09/05/19 12:48,"256 1st St, San Francisco, CA 94016" -249966,ThinkPad Laptop,1,999.99,09/12/19 22:13,"481 Ridge St, San Francisco, CA 94016" -249967,20in Monitor,1,109.99,09/13/19 12:14,"227 Pine St, Atlanta, GA 30301" -249968,Lightning Charging Cable,1,14.95,09/02/19 07:33,"662 Walnut St, Los Angeles, CA 90001" -249969,Lightning Charging Cable,2,14.95,09/27/19 13:46,"265 Meadow St, San Francisco, CA 94016" -249970,34in Ultrawide Monitor,1,379.99,09/29/19 17:38,"318 River St, Austin, TX 73301" -249971,27in FHD Monitor,1,149.99,09/29/19 14:29,"55 Madison St, Atlanta, GA 30301" -249972,Wired Headphones,1,11.99,09/30/19 19:26,"51 Jefferson St, Seattle, WA 98101" -249973,Wired Headphones,1,11.99,09/19/19 20:07,"638 8th St, Austin, TX 73301" -249974,AAA Batteries (4-pack),1,2.99,09/18/19 22:11,"401 Center St, San Francisco, CA 94016" -249975,Bose SoundSport Headphones,1,99.99,09/17/19 11:57,"395 Hill St, Seattle, WA 98101" -249976,Google Phone,1,600,09/04/19 13:50,"379 Cedar St, Atlanta, GA 30301" -249976,Wired Headphones,1,11.99,09/04/19 13:50,"379 Cedar St, Atlanta, GA 30301" -249977,Lightning Charging Cable,1,14.95,09/24/19 13:56,"555 14th St, San Francisco, CA 94016" -249978,AA Batteries (4-pack),1,3.84,09/09/19 15:28,"161 West St, Portland, OR 97035" -249979,USB-C Charging Cable,1,11.95,09/29/19 14:18,"506 Wilson St, Austin, TX 73301" -249980,Wired Headphones,1,11.99,09/27/19 23:21,"17 11th St, Seattle, WA 98101" -249981,AAA Batteries (4-pack),1,2.99,09/05/19 12:13,"726 4th St, New York City, NY 10001" -249982,Apple Airpods Headphones,1,150,09/30/19 10:22,"442 Pine St, San Francisco, CA 94016" -249983,Flatscreen TV,1,300,09/23/19 14:06,"75 Ridge St, Portland, OR 97035" -249984,Wired Headphones,1,11.99,09/30/19 11:11,"164 Willow St, San Francisco, CA 94016" -249985,Lightning Charging Cable,1,14.95,09/20/19 22:49,"483 Spruce St, Seattle, WA 98101" -249986,Lightning Charging Cable,1,14.95,09/29/19 20:30,"928 Main St, San Francisco, CA 94016" -249987,27in FHD Monitor,1,149.99,09/10/19 06:57,"329 Sunset St, Los Angeles, CA 90001" -249988,20in Monitor,1,109.99,09/13/19 09:11,"594 Main St, Boston, MA 02215" -249989,AA Batteries (4-pack),1,3.84,09/24/19 15:20,"989 Sunset St, Boston, MA 02215" -249990,Wired Headphones,1,11.99,09/24/19 11:01,"472 Cherry St, Los Angeles, CA 90001" -249991,20in Monitor,1,109.99,09/03/19 11:39,"423 10th St, San Francisco, CA 94016" -249992,Bose SoundSport Headphones,1,99.99,09/28/19 16:09,"641 1st St, New York City, NY 10001" -249992,Macbook Pro Laptop,1,1700,09/28/19 16:09,"641 1st St, New York City, NY 10001" -249993,Macbook Pro Laptop,1,1700,09/09/19 20:17,"459 Chestnut St, Boston, MA 02215" -249994,USB-C Charging Cable,1,11.95,09/06/19 10:00,"105 Lincoln St, San Francisco, CA 94016" -249995,ThinkPad Laptop,1,999.99,09/26/19 17:41,"872 1st St, Atlanta, GA 30301" -249996,Lightning Charging Cable,1,14.95,09/27/19 22:29,"362 Sunset St, San Francisco, CA 94016" -249997,Wired Headphones,1,11.99,09/27/19 21:04,"856 River St, Atlanta, GA 30301" -249998,AA Batteries (4-pack),1,3.84,09/30/19 09:26,"651 Highland St, Portland, OR 97035" -249999,Wired Headphones,2,11.99,09/17/19 23:39,"851 Ridge St, Dallas, TX 75001" -250000,Wired Headphones,1,11.99,09/05/19 23:26,"680 14th St, Boston, MA 02215" -250001,27in 4K Gaming Monitor,1,389.99,09/26/19 17:59,"259 1st St, Dallas, TX 75001" -250002,Bose SoundSport Headphones,1,99.99,09/24/19 18:21,"532 14th St, Seattle, WA 98101" -250003,Apple Airpods Headphones,1,150,09/12/19 17:03,"637 Johnson St, San Francisco, CA 94016" -250004,Apple Airpods Headphones,1,150,09/14/19 21:45,"179 Adams St, Dallas, TX 75001" -250005,Google Phone,1,600,09/08/19 00:58,"360 Hill St, San Francisco, CA 94016" -250005,USB-C Charging Cable,1,11.95,09/08/19 00:58,"360 Hill St, San Francisco, CA 94016" -250006,Wired Headphones,1,11.99,09/20/19 16:31,"744 Lakeview St, San Francisco, CA 94016" -250007,USB-C Charging Cable,1,11.95,09/10/19 17:03,"245 Willow St, San Francisco, CA 94016" -250008,Flatscreen TV,1,300,09/30/19 11:01,"33 Pine St, Portland, ME 04101" -250009,AA Batteries (4-pack),1,3.84,09/09/19 09:33,"956 Meadow St, Boston, MA 02215" -250009,AAA Batteries (4-pack),1,2.99,09/09/19 09:33,"956 Meadow St, Boston, MA 02215" -250010,LG Dryer,1,600.0,09/23/19 09:32,"262 7th St, Boston, MA 02215" -250011,Google Phone,1,600,09/10/19 15:45,"190 Willow St, New York City, NY 10001" -250012,Flatscreen TV,1,300,09/08/19 17:25,"663 Maple St, Los Angeles, CA 90001" -250013,27in 4K Gaming Monitor,1,389.99,09/20/19 12:40,"515 Cherry St, Los Angeles, CA 90001" -250014,USB-C Charging Cable,1,11.95,09/19/19 19:45,"453 10th St, Atlanta, GA 30301" -250015,AA Batteries (4-pack),1,3.84,09/10/19 13:49,"48 6th St, New York City, NY 10001" -250016,Apple Airpods Headphones,1,150,09/26/19 20:20,"724 Hickory St, Dallas, TX 75001" -250017,Lightning Charging Cable,1,14.95,09/21/19 01:09,"432 Wilson St, Los Angeles, CA 90001" -250018,iPhone,1,700,09/14/19 12:16,"516 Church St, Austin, TX 73301" -250019,AA Batteries (4-pack),1,3.84,09/28/19 18:45,"819 Hill St, Seattle, WA 98101" -250020,27in 4K Gaming Monitor,1,389.99,09/13/19 17:00,"444 Jackson St, Portland, OR 97035" -250021,AAA Batteries (4-pack),1,2.99,09/15/19 14:42,"809 Forest St, Austin, TX 73301" -250022,Bose SoundSport Headphones,1,99.99,09/09/19 13:58,"319 Hickory St, Boston, MA 02215" -250023,Apple Airpods Headphones,1,150,09/06/19 23:05,"645 Sunset St, New York City, NY 10001" -250024,Lightning Charging Cable,1,14.95,09/12/19 17:39,"847 6th St, Dallas, TX 75001" -250025,Bose SoundSport Headphones,1,99.99,09/22/19 13:29,"981 4th St, San Francisco, CA 94016" -250026,Apple Airpods Headphones,1,150,09/21/19 07:13,"523 Washington St, Dallas, TX 75001" -250027,Lightning Charging Cable,1,14.95,09/12/19 15:37,"269 Walnut St, Boston, MA 02215" -250028,Macbook Pro Laptop,1,1700,09/25/19 01:07,"80 Madison St, Los Angeles, CA 90001" -250029,AAA Batteries (4-pack),1,2.99,09/20/19 12:49,"443 Wilson St, Seattle, WA 98101" -250030,20in Monitor,1,109.99,09/06/19 07:44,"545 Park St, San Francisco, CA 94016" -250031,USB-C Charging Cable,1,11.95,09/15/19 12:03,"405 Chestnut St, New York City, NY 10001" -250032,Google Phone,1,600,09/23/19 21:41,"461 4th St, New York City, NY 10001" -250033,Apple Airpods Headphones,1,150,09/13/19 21:07,"346 Main St, Atlanta, GA 30301" -250034,USB-C Charging Cable,1,11.95,09/30/19 16:34,"122 Main St, Boston, MA 02215" -250035,Vareebadd Phone,1,400,09/27/19 14:50,"12 Cedar St, San Francisco, CA 94016" -250036,AAA Batteries (4-pack),3,2.99,09/11/19 12:36,"924 Madison St, Los Angeles, CA 90001" -250037,AAA Batteries (4-pack),1,2.99,09/21/19 21:55,"358 Church St, New York City, NY 10001" -250038,AAA Batteries (4-pack),2,2.99,09/19/19 14:02,"473 8th St, Atlanta, GA 30301" -250039,Wired Headphones,1,11.99,09/13/19 11:00,"87 6th St, Atlanta, GA 30301" -250040,Bose SoundSport Headphones,1,99.99,09/19/19 13:53,"403 9th St, New York City, NY 10001" -250041,20in Monitor,1,109.99,09/02/19 22:03,"887 Willow St, Los Angeles, CA 90001" -250042,AAA Batteries (4-pack),1,2.99,09/15/19 16:13,"818 Church St, Boston, MA 02215" -250043,Google Phone,1,600,09/27/19 14:20,"247 South St, Los Angeles, CA 90001" -250044,iPhone,1,700,09/26/19 14:49,"458 South St, San Francisco, CA 94016" -250045,AA Batteries (4-pack),2,3.84,09/07/19 01:38,"475 Madison St, New York City, NY 10001" -250046,Apple Airpods Headphones,1,150,09/07/19 17:10,"931 Wilson St, Seattle, WA 98101" -250047,Bose SoundSport Headphones,1,99.99,09/24/19 08:55,"594 9th St, Atlanta, GA 30301" -250048,Flatscreen TV,1,300,09/29/19 07:03,"11 Lake St, Seattle, WA 98101" -250049,20in Monitor,1,109.99,09/11/19 09:22,"320 8th St, Dallas, TX 75001" -250050,AAA Batteries (4-pack),5,2.99,09/21/19 14:18,"517 North St, San Francisco, CA 94016" -250051,Bose SoundSport Headphones,1,99.99,09/15/19 15:30,"828 Ridge St, Portland, OR 97035" -250052,AAA Batteries (4-pack),1,2.99,09/25/19 18:47,"624 9th St, Los Angeles, CA 90001" -250053,20in Monitor,1,109.99,09/12/19 02:39,"666 Spruce St, Los Angeles, CA 90001" -250054,USB-C Charging Cable,1,11.95,09/22/19 11:52,"590 Cedar St, San Francisco, CA 94016" -250055,Lightning Charging Cable,1,14.95,09/15/19 10:54,"61 Meadow St, Seattle, WA 98101" -250056,USB-C Charging Cable,1,11.95,09/16/19 12:52,"87 Highland St, Los Angeles, CA 90001" -250057,AA Batteries (4-pack),1,3.84,09/26/19 06:49,"597 8th St, San Francisco, CA 94016" -250058,Wired Headphones,1,11.99,09/13/19 21:53,"117 Wilson St, San Francisco, CA 94016" -250059,iPhone,1,700,09/28/19 13:23,"901 1st St, New York City, NY 10001" -250060,AAA Batteries (4-pack),2,2.99,09/17/19 20:54,"674 14th St, Atlanta, GA 30301" -250061,AA Batteries (4-pack),2,3.84,09/02/19 15:03,"217 11th St, New York City, NY 10001" -250062,Lightning Charging Cable,1,14.95,09/15/19 20:54,"565 Hill St, Portland, OR 97035" -250063,Lightning Charging Cable,1,14.95,09/16/19 12:38,"319 8th St, Los Angeles, CA 90001" -250064,Apple Airpods Headphones,1,150,09/03/19 06:47,"470 Cherry St, San Francisco, CA 94016" -250065,Lightning Charging Cable,1,14.95,09/29/19 23:56,"93 Meadow St, Los Angeles, CA 90001" -250066,Wired Headphones,1,11.99,09/19/19 07:34,"561 Pine St, Austin, TX 73301" -250067,Google Phone,1,600,09/03/19 17:21,"316 Hill St, Dallas, TX 75001" -250068,Wired Headphones,1,11.99,09/26/19 20:29,"928 Park St, San Francisco, CA 94016" -250069,AAA Batteries (4-pack),1,2.99,09/13/19 05:37,"157 12th St, Atlanta, GA 30301" -250070,Bose SoundSport Headphones,1,99.99,09/05/19 21:38,"21 Center St, Seattle, WA 98101" -250071,Wired Headphones,1,11.99,09/28/19 21:02,"444 Lincoln St, San Francisco, CA 94016" -250072,27in FHD Monitor,1,149.99,09/04/19 23:13,"664 Highland St, Dallas, TX 75001" -250073,27in FHD Monitor,1,149.99,09/01/19 11:14,"124 Ridge St, New York City, NY 10001" -250074,27in 4K Gaming Monitor,1,389.99,09/15/19 15:42,"169 Lake St, Boston, MA 02215" -250075,Bose SoundSport Headphones,1,99.99,09/14/19 18:48,"915 Meadow St, Seattle, WA 98101" -250076,Lightning Charging Cable,1,14.95,09/10/19 13:53,"554 Highland St, Austin, TX 73301" -250077,Apple Airpods Headphones,1,150,09/01/19 10:24,"638 Hill St, San Francisco, CA 94016" -250078,Google Phone,1,600,09/04/19 21:44,"924 Main St, San Francisco, CA 94016" -250079,Apple Airpods Headphones,1,150,09/06/19 13:56,"372 Washington St, Seattle, WA 98101" -250080,USB-C Charging Cable,1,11.95,09/28/19 21:24,"753 10th St, San Francisco, CA 94016" -250081,Apple Airpods Headphones,1,150,09/04/19 12:56,"61 Adams St, San Francisco, CA 94016" -250082,AA Batteries (4-pack),1,3.84,09/13/19 11:40,"366 Lake St, Portland, OR 97035" -250083,AAA Batteries (4-pack),1,2.99,09/05/19 17:38,"420 7th St, New York City, NY 10001" -250084,Bose SoundSport Headphones,1,99.99,09/17/19 23:07,"640 Meadow St, Atlanta, GA 30301" -250085,AAA Batteries (4-pack),2,2.99,09/09/19 20:15,"186 4th St, Boston, MA 02215" -250086,USB-C Charging Cable,1,11.95,09/12/19 18:55,"916 River St, Atlanta, GA 30301" -250087,Apple Airpods Headphones,1,150,09/08/19 22:35,"338 Lakeview St, Boston, MA 02215" -250088,Apple Airpods Headphones,1,150,09/29/19 20:32,"678 14th St, San Francisco, CA 94016" -250089,AAA Batteries (4-pack),1,2.99,09/25/19 10:58,"807 Forest St, New York City, NY 10001" -250090,Bose SoundSport Headphones,1,99.99,09/06/19 19:06,"813 West St, Seattle, WA 98101" -250091,Apple Airpods Headphones,1,150,09/29/19 23:31,"914 Hickory St, Dallas, TX 75001" -250092,27in FHD Monitor,1,149.99,09/27/19 19:11,"857 South St, Portland, OR 97035" -250093,Google Phone,1,600,09/24/19 17:02,"524 Sunset St, Boston, MA 02215" -250093,USB-C Charging Cable,1,11.95,09/24/19 17:02,"524 Sunset St, Boston, MA 02215" -250094,34in Ultrawide Monitor,1,379.99,09/03/19 08:13,"53 Madison St, Boston, MA 02215" -250095,USB-C Charging Cable,1,11.95,09/14/19 16:16,"31 Pine St, Los Angeles, CA 90001" -250096,Wired Headphones,1,11.99,09/26/19 20:15,"660 2nd St, Los Angeles, CA 90001" -250097,USB-C Charging Cable,1,11.95,09/11/19 21:26,"861 Maple St, Los Angeles, CA 90001" -250098,Bose SoundSport Headphones,1,99.99,09/15/19 14:07,"936 7th St, Los Angeles, CA 90001" -250099,Lightning Charging Cable,1,14.95,09/13/19 11:21,"267 Washington St, San Francisco, CA 94016" -250100,Wired Headphones,1,11.99,09/20/19 19:00,"6 Hickory St, Austin, TX 73301" -250101,USB-C Charging Cable,1,11.95,09/11/19 15:18,"398 Adams St, San Francisco, CA 94016" -250102,27in FHD Monitor,1,149.99,09/05/19 21:59,"653 14th St, New York City, NY 10001" -250103,34in Ultrawide Monitor,1,379.99,09/23/19 14:47,"290 Elm St, New York City, NY 10001" -250104,Apple Airpods Headphones,1,150,09/25/19 13:32,"622 Adams St, Seattle, WA 98101" -250105,USB-C Charging Cable,2,11.95,09/05/19 07:14,"194 Forest St, Seattle, WA 98101" -250106,Apple Airpods Headphones,1,150,09/28/19 08:11,"116 Maple St, Seattle, WA 98101" -250107,iPhone,1,700,09/29/19 10:42,"796 Lincoln St, Atlanta, GA 30301" -250108,Lightning Charging Cable,1,14.95,09/06/19 22:56,"37 1st St, San Francisco, CA 94016" -250109,Macbook Pro Laptop,1,1700,09/11/19 16:48,"165 2nd St, Dallas, TX 75001" -250110,Bose SoundSport Headphones,1,99.99,09/26/19 09:20,"547 Meadow St, Los Angeles, CA 90001" -250111,AAA Batteries (4-pack),1,2.99,09/22/19 19:34,"600 Highland St, Austin, TX 73301" -250112,Lightning Charging Cable,1,14.95,09/25/19 21:11,"311 6th St, Seattle, WA 98101" -250113,Lightning Charging Cable,3,14.95,09/03/19 22:27,"521 Cherry St, Portland, OR 97035" -250114,27in FHD Monitor,1,149.99,09/23/19 15:16,"224 Ridge St, New York City, NY 10001" -250115,USB-C Charging Cable,1,11.95,09/22/19 12:30,"731 Jackson St, Atlanta, GA 30301" -250116,USB-C Charging Cable,1,11.95,09/22/19 21:55,"72 Forest St, San Francisco, CA 94016" -250117,iPhone,1,700,09/23/19 07:54,"525 6th St, Dallas, TX 75001" -250118,ThinkPad Laptop,1,999.99,09/18/19 21:02,"279 Maple St, San Francisco, CA 94016" -250119,Google Phone,1,600,09/20/19 21:08,"716 North St, Portland, ME 04101" -250120,AAA Batteries (4-pack),1,2.99,09/06/19 20:51,"919 Willow St, Los Angeles, CA 90001" -250121,AA Batteries (4-pack),1,3.84,09/23/19 03:11,"487 11th St, San Francisco, CA 94016" -250122,Bose SoundSport Headphones,1,99.99,09/15/19 00:32,"667 Hickory St, Portland, ME 04101" -250123,USB-C Charging Cable,2,11.95,09/23/19 11:46,"186 River St, Boston, MA 02215" -250124,Wired Headphones,1,11.99,09/28/19 13:06,"622 Cedar St, Seattle, WA 98101" -250125,Vareebadd Phone,1,400,09/24/19 19:50,"919 Lincoln St, Boston, MA 02215" -250126,AA Batteries (4-pack),1,3.84,09/04/19 17:21,"918 Ridge St, San Francisco, CA 94016" -250127,Wired Headphones,1,11.99,09/08/19 15:56,"748 14th St, Austin, TX 73301" -250128,Flatscreen TV,1,300,09/05/19 20:11,"808 Maple St, New York City, NY 10001" -250129,AAA Batteries (4-pack),1,2.99,09/09/19 11:31,"511 Center St, Boston, MA 02215" -250130,Bose SoundSport Headphones,1,99.99,09/13/19 21:34,"745 Johnson St, San Francisco, CA 94016" -250131,AAA Batteries (4-pack),1,2.99,09/11/19 21:00,"469 Madison St, Los Angeles, CA 90001" -250131,ThinkPad Laptop,1,999.99,09/11/19 21:00,"469 Madison St, Los Angeles, CA 90001" -250132,Apple Airpods Headphones,1,150,09/29/19 13:01,"496 13th St, Los Angeles, CA 90001" -250133,ThinkPad Laptop,1,999.99,09/30/19 15:32,"653 South St, Dallas, TX 75001" -250134,Wired Headphones,2,11.99,09/09/19 09:58,"146 8th St, Los Angeles, CA 90001" -250135,Bose SoundSport Headphones,1,99.99,09/06/19 11:24,"302 8th St, Los Angeles, CA 90001" -250136,AAA Batteries (4-pack),2,2.99,09/04/19 13:06,"895 Willow St, Austin, TX 73301" -250137,AAA Batteries (4-pack),2,2.99,09/19/19 10:16,"38 11th St, Los Angeles, CA 90001" -250138,AA Batteries (4-pack),1,3.84,09/05/19 20:42,"462 Chestnut St, Los Angeles, CA 90001" -250139,Google Phone,1,600,10/01/19 00:53,"132 10th St, San Francisco, CA 94016" -250139,USB-C Charging Cable,1,11.95,10/01/19 00:53,"132 10th St, San Francisco, CA 94016" -250140,34in Ultrawide Monitor,1,379.99,09/23/19 16:48,"654 7th St, San Francisco, CA 94016" -250141,Wired Headphones,2,11.99,09/17/19 14:43,"449 South St, San Francisco, CA 94016" -250142,Vareebadd Phone,1,400,09/12/19 19:39,"98 Jefferson St, Los Angeles, CA 90001" -250143,USB-C Charging Cable,1,11.95,09/08/19 15:53,"676 2nd St, Atlanta, GA 30301" -250144,AAA Batteries (4-pack),1,2.99,09/07/19 19:56,"993 8th St, Austin, TX 73301" -250145,USB-C Charging Cable,1,11.95,09/29/19 16:15,"527 Johnson St, Los Angeles, CA 90001" -250146,27in 4K Gaming Monitor,1,389.99,09/05/19 00:07,"163 Chestnut St, Seattle, WA 98101" -250147,Apple Airpods Headphones,1,150,09/06/19 23:12,"613 Center St, San Francisco, CA 94016" -250148,Macbook Pro Laptop,1,1700,09/26/19 14:52,"297 Elm St, Atlanta, GA 30301" -250149,LG Dryer,1,600.0,09/22/19 19:56,"215 Jefferson St, New York City, NY 10001" -250150,Apple Airpods Headphones,1,150,09/16/19 05:51,"332 Willow St, Los Angeles, CA 90001" -250151,AAA Batteries (4-pack),1,2.99,09/27/19 09:31,"505 Center St, Atlanta, GA 30301" -250152,Bose SoundSport Headphones,1,99.99,09/15/19 18:19,"938 Adams St, Boston, MA 02215" -250153,AA Batteries (4-pack),2,3.84,09/12/19 20:54,"293 Cedar St, Seattle, WA 98101" -250154,Vareebadd Phone,1,400,09/16/19 14:51,"915 Meadow St, Portland, OR 97035" -250155,AA Batteries (4-pack),1,3.84,09/19/19 09:46,"351 2nd St, Boston, MA 02215" -250156,27in FHD Monitor,1,149.99,09/04/19 19:52,"618 Ridge St, San Francisco, CA 94016" -250157,Vareebadd Phone,1,400,09/08/19 11:12,"459 Madison St, Seattle, WA 98101" -250157,USB-C Charging Cable,1,11.95,09/08/19 11:12,"459 Madison St, Seattle, WA 98101" -250158,27in 4K Gaming Monitor,1,389.99,09/12/19 17:53,"832 Ridge St, Seattle, WA 98101" -250158,USB-C Charging Cable,1,11.95,09/12/19 17:53,"832 Ridge St, Seattle, WA 98101" -250159,20in Monitor,1,109.99,09/11/19 09:28,"923 5th St, New York City, NY 10001" -250160,USB-C Charging Cable,1,11.95,09/25/19 07:53,"37 Church St, Seattle, WA 98101" -250161,Lightning Charging Cable,1,14.95,09/02/19 18:10,"232 Dogwood St, Dallas, TX 75001" -250162,AA Batteries (4-pack),1,3.84,09/27/19 12:32,"410 Church St, Dallas, TX 75001" -250163,AAA Batteries (4-pack),1,2.99,09/24/19 12:48,"655 Madison St, San Francisco, CA 94016" -250164,USB-C Charging Cable,1,11.95,09/17/19 15:51,"6 10th St, Austin, TX 73301" -250165,Lightning Charging Cable,1,14.95,09/09/19 10:38,"565 Dogwood St, New York City, NY 10001" -250166,USB-C Charging Cable,1,11.95,09/27/19 12:16,"92 Maple St, Los Angeles, CA 90001" -250167,AAA Batteries (4-pack),1,2.99,09/06/19 10:16,"554 6th St, New York City, NY 10001" -250168,Apple Airpods Headphones,1,150,09/06/19 07:57,"531 14th St, San Francisco, CA 94016" -250169,iPhone,1,700,09/12/19 19:52,"528 Chestnut St, Boston, MA 02215" -250170,Wired Headphones,2,11.99,09/01/19 17:16,"829 Lakeview St, Austin, TX 73301" -250171,USB-C Charging Cable,1,11.95,09/24/19 12:49,"27 Lincoln St, Atlanta, GA 30301" -250172,Lightning Charging Cable,1,14.95,09/17/19 12:49,"520 Jefferson St, San Francisco, CA 94016" -250173,20in Monitor,1,109.99,09/07/19 18:03,"132 Ridge St, Los Angeles, CA 90001" -250174,Apple Airpods Headphones,1,150,09/30/19 19:32,"490 6th St, New York City, NY 10001" -250174,Apple Airpods Headphones,1,150,09/30/19 19:32,"490 6th St, New York City, NY 10001" -250175,AAA Batteries (4-pack),1,2.99,09/20/19 23:58,"729 Spruce St, Boston, MA 02215" -250176,27in FHD Monitor,1,149.99,09/08/19 13:11,"556 Cedar St, Seattle, WA 98101" -250177,27in 4K Gaming Monitor,1,389.99,09/14/19 23:14,"722 Hill St, Los Angeles, CA 90001" -250178,Bose SoundSport Headphones,1,99.99,09/22/19 15:25,"57 Forest St, New York City, NY 10001" -250179,Google Phone,1,600,09/07/19 11:32,"856 South St, Los Angeles, CA 90001" -250180,27in FHD Monitor,1,149.99,09/25/19 11:23,"842 5th St, New York City, NY 10001" -250181,AA Batteries (4-pack),1,3.84,09/11/19 12:55,"338 6th St, Boston, MA 02215" -250182,Lightning Charging Cable,1,14.95,09/07/19 16:38,"590 Chestnut St, Seattle, WA 98101" -250183,Lightning Charging Cable,1,14.95,09/11/19 11:36,"681 Wilson St, San Francisco, CA 94016" -250184,34in Ultrawide Monitor,1,379.99,09/20/19 11:37,"993 Forest St, Dallas, TX 75001" -250185,AAA Batteries (4-pack),1,2.99,09/18/19 00:46,"354 River St, New York City, NY 10001" -250185,27in FHD Monitor,1,149.99,09/18/19 00:46,"354 River St, New York City, NY 10001" -250186,USB-C Charging Cable,2,11.95,09/27/19 18:27,"764 Jefferson St, Dallas, TX 75001" -250187,Google Phone,1,600,09/02/19 23:35,"545 Madison St, Atlanta, GA 30301" -250187,USB-C Charging Cable,1,11.95,09/02/19 23:35,"545 Madison St, Atlanta, GA 30301" -250188,USB-C Charging Cable,1,11.95,09/13/19 13:54,"100 Main St, Seattle, WA 98101" -250189,AAA Batteries (4-pack),1,2.99,09/04/19 21:11,"856 West St, New York City, NY 10001" -250190,27in FHD Monitor,1,149.99,09/22/19 19:37,"539 Lincoln St, Austin, TX 73301" -250191,Apple Airpods Headphones,1,150,09/27/19 05:59,"22 Lake St, Los Angeles, CA 90001" -250192,Lightning Charging Cable,1,14.95,09/01/19 16:14,"725 Chestnut St, Boston, MA 02215" -250193,Wired Headphones,1,11.99,09/09/19 14:21,"716 South St, San Francisco, CA 94016" -250194,27in FHD Monitor,1,149.99,09/04/19 10:16,"392 9th St, Los Angeles, CA 90001" -250195,Bose SoundSport Headphones,1,99.99,09/23/19 18:28,"986 Walnut St, San Francisco, CA 94016" -250196,Lightning Charging Cable,1,14.95,09/11/19 22:34,"153 14th St, Boston, MA 02215" -250197,USB-C Charging Cable,1,11.95,09/17/19 18:37,"744 Center St, Boston, MA 02215" -250198,27in FHD Monitor,1,149.99,09/25/19 20:13,"267 Center St, Seattle, WA 98101" -250199,Lightning Charging Cable,1,14.95,09/28/19 20:12,"850 Chestnut St, Boston, MA 02215" -250200,Google Phone,1,600,09/27/19 17:06,"256 13th St, San Francisco, CA 94016" -250201,AAA Batteries (4-pack),1,2.99,09/20/19 10:14,"425 North St, Los Angeles, CA 90001" -250202,Flatscreen TV,1,300,09/19/19 16:01,"511 7th St, Los Angeles, CA 90001" -250203,iPhone,1,700,09/28/19 15:43,"124 River St, New York City, NY 10001" -250204,USB-C Charging Cable,1,11.95,09/14/19 08:48,"949 Jackson St, New York City, NY 10001" -250205,AA Batteries (4-pack),1,3.84,09/04/19 10:24,"971 7th St, Atlanta, GA 30301" -250206,AAA Batteries (4-pack),2,2.99,09/16/19 22:08,"101 Ridge St, Austin, TX 73301" -250207,Lightning Charging Cable,1,14.95,09/27/19 21:51,"51 5th St, Atlanta, GA 30301" -250208,Bose SoundSport Headphones,1,99.99,09/27/19 17:54,"865 Jefferson St, San Francisco, CA 94016" -250209,AA Batteries (4-pack),1,3.84,09/16/19 20:57,"966 Church St, San Francisco, CA 94016" -250210,Lightning Charging Cable,1,14.95,09/17/19 21:27,"559 Jackson St, San Francisco, CA 94016" -250211,USB-C Charging Cable,1,11.95,09/08/19 22:42,"331 Maple St, Boston, MA 02215" -250212,Flatscreen TV,1,300,09/19/19 05:41,"264 2nd St, Los Angeles, CA 90001" -250213,AAA Batteries (4-pack),1,2.99,09/17/19 13:29,"690 Dogwood St, San Francisco, CA 94016" -250214,Bose SoundSport Headphones,1,99.99,09/05/19 14:01,"940 Washington St, Los Angeles, CA 90001" -250215,Macbook Pro Laptop,1,1700,09/17/19 12:43,"940 North St, New York City, NY 10001" -250216,Lightning Charging Cable,1,14.95,09/04/19 07:41,"830 Washington St, New York City, NY 10001" -250217,Google Phone,1,600,09/13/19 22:52,"311 Meadow St, Los Angeles, CA 90001" -250218,Flatscreen TV,1,300,09/01/19 18:45,"750 Park St, New York City, NY 10001" -250219,AA Batteries (4-pack),1,3.84,09/09/19 08:34,"357 Johnson St, Los Angeles, CA 90001" -250220,Apple Airpods Headphones,1,150,09/30/19 17:07,"607 7th St, Portland, OR 97035" -250221,Bose SoundSport Headphones,1,99.99,09/10/19 15:36,"880 9th St, New York City, NY 10001" -250222,AA Batteries (4-pack),1,3.84,09/18/19 11:27,"871 Jackson St, Austin, TX 73301" -250223,LG Washing Machine,1,600.0,09/26/19 21:33,"382 1st St, New York City, NY 10001" -250224,AAA Batteries (4-pack),1,2.99,09/29/19 12:45,"432 Walnut St, Boston, MA 02215" -250225,AA Batteries (4-pack),1,3.84,09/29/19 18:26,"60 14th St, Los Angeles, CA 90001" -250226,USB-C Charging Cable,1,11.95,09/24/19 15:04,"348 Ridge St, San Francisco, CA 94016" -250227,Google Phone,1,600,09/30/19 22:13,"205 Pine St, San Francisco, CA 94016" -250228,USB-C Charging Cable,1,11.95,09/27/19 19:20,"185 10th St, Austin, TX 73301" -250229,AA Batteries (4-pack),1,3.84,09/02/19 21:51,"676 8th St, Los Angeles, CA 90001" -250230,AA Batteries (4-pack),1,3.84,09/06/19 13:12,"988 Wilson St, Los Angeles, CA 90001" -250231,Bose SoundSport Headphones,1,99.99,09/07/19 14:23,"194 Cedar St, Dallas, TX 75001" -250232,AAA Batteries (4-pack),2,2.99,09/30/19 19:31,"944 9th St, Los Angeles, CA 90001" -250233,AAA Batteries (4-pack),1,2.99,09/21/19 21:42,"351 Ridge St, Dallas, TX 75001" -250234,Bose SoundSport Headphones,1,99.99,09/06/19 15:59,"946 Sunset St, Boston, MA 02215" -250235,Apple Airpods Headphones,1,150,09/14/19 13:02,"684 14th St, Boston, MA 02215" -250236,Lightning Charging Cable,1,14.95,09/18/19 13:53,"131 Center St, Atlanta, GA 30301" -250237,USB-C Charging Cable,1,11.95,09/03/19 13:36,"202 Elm St, Dallas, TX 75001" -250238,20in Monitor,1,109.99,09/20/19 15:44,"169 9th St, Dallas, TX 75001" -250239,AAA Batteries (4-pack),1,2.99,09/27/19 13:28,"664 Pine St, Austin, TX 73301" -250240,Lightning Charging Cable,1,14.95,09/11/19 13:56,"727 12th St, Los Angeles, CA 90001" -250241,AA Batteries (4-pack),1,3.84,09/06/19 09:46,"3 5th St, Dallas, TX 75001" -250242,Lightning Charging Cable,1,14.95,09/07/19 15:31,"595 Hickory St, San Francisco, CA 94016" -250243,AAA Batteries (4-pack),1,2.99,09/04/19 09:34,"749 9th St, Boston, MA 02215" -250244,iPhone,1,700,09/01/19 11:04,"784 Highland St, New York City, NY 10001" -250244,Apple Airpods Headphones,1,150,09/01/19 11:04,"784 Highland St, New York City, NY 10001" -250245,AAA Batteries (4-pack),2,2.99,09/21/19 20:50,"354 7th St, Portland, OR 97035" -250246,AA Batteries (4-pack),1,3.84,09/06/19 23:15,"200 Elm St, Portland, ME 04101" -250247,USB-C Charging Cable,1,11.95,09/29/19 19:19,"572 Lakeview St, Austin, TX 73301" -250248,Apple Airpods Headphones,1,150,09/26/19 21:05,"537 Walnut St, Atlanta, GA 30301" -250249,AA Batteries (4-pack),2,3.84,09/11/19 15:56,"378 1st St, Los Angeles, CA 90001" -250250,Apple Airpods Headphones,1,150,09/01/19 14:15,"300 5th St, San Francisco, CA 94016" -250251,Apple Airpods Headphones,1,150,09/06/19 23:00,"874 Chestnut St, Atlanta, GA 30301" -250252,AAA Batteries (4-pack),2,2.99,09/01/19 09:11,"433 Elm St, Austin, TX 73301" -250253,27in 4K Gaming Monitor,1,389.99,09/08/19 08:19,"702 South St, New York City, NY 10001" -250254,Lightning Charging Cable,1,14.95,09/20/19 10:10,"778 Hickory St, Los Angeles, CA 90001" -250255,AA Batteries (4-pack),1,3.84,09/05/19 19:57,"275 2nd St, San Francisco, CA 94016" -250256,Lightning Charging Cable,1,14.95,09/03/19 15:32,"905 Spruce St, San Francisco, CA 94016" -250257,AAA Batteries (4-pack),1,2.99,09/18/19 18:33,"430 Dogwood St, Los Angeles, CA 90001" -250258,Lightning Charging Cable,1,14.95,09/14/19 21:55,"482 Wilson St, Portland, OR 97035" -250259,Apple Airpods Headphones,1,150,09/23/19 11:08,"759 Church St, New York City, NY 10001" -250260,Lightning Charging Cable,1,14.95,09/08/19 22:40,"387 Maple St, New York City, NY 10001" -250261,Wired Headphones,1,11.99,09/25/19 11:58,"254 Park St, San Francisco, CA 94016" -250262,27in 4K Gaming Monitor,1,389.99,09/03/19 15:24,"912 11th St, Austin, TX 73301" -250263,AAA Batteries (4-pack),2,2.99,09/22/19 18:48,"188 Hill St, Los Angeles, CA 90001" -250264,AA Batteries (4-pack),1,3.84,09/04/19 10:31,"460 Dogwood St, Seattle, WA 98101" -250265,Wired Headphones,1,11.99,09/11/19 19:45,"289 Church St, Los Angeles, CA 90001" -250266,Flatscreen TV,1,300,09/21/19 17:13,"965 Wilson St, Boston, MA 02215" -250267,34in Ultrawide Monitor,1,379.99,09/21/19 11:57,"272 7th St, Dallas, TX 75001" -250268,Apple Airpods Headphones,1,150,09/30/19 11:44,"883 Walnut St, Dallas, TX 75001" -250269,Bose SoundSport Headphones,1,99.99,09/24/19 18:54,"745 Forest St, San Francisco, CA 94016" -250270,Flatscreen TV,1,300,09/21/19 20:32,"680 Forest St, Dallas, TX 75001" -250271,AAA Batteries (4-pack),1,2.99,09/19/19 14:34,"665 Highland St, Dallas, TX 75001" -250272,USB-C Charging Cable,1,11.95,09/04/19 09:51,"341 Pine St, Atlanta, GA 30301" -250273,AAA Batteries (4-pack),1,2.99,09/11/19 17:02,"419 2nd St, San Francisco, CA 94016" -250274,Macbook Pro Laptop,1,1700,09/26/19 08:14,"651 10th St, San Francisco, CA 94016" -250275,ThinkPad Laptop,1,999.99,10/01/19 00:46,"814 7th St, San Francisco, CA 94016" -250276,USB-C Charging Cable,1,11.95,09/12/19 14:06,"665 Main St, Portland, OR 97035" -250277,AAA Batteries (4-pack),1,2.99,09/14/19 09:36,"114 Maple St, Boston, MA 02215" -250278,Lightning Charging Cable,1,14.95,09/12/19 09:35,"107 11th St, San Francisco, CA 94016" -250279,AAA Batteries (4-pack),3,2.99,09/01/19 09:28,"385 South St, Dallas, TX 75001" -250280,34in Ultrawide Monitor,1,379.99,09/16/19 12:24,"606 Adams St, Los Angeles, CA 90001" -250281,AA Batteries (4-pack),1,3.84,09/13/19 15:24,"175 9th St, San Francisco, CA 94016" -250282,Apple Airpods Headphones,1,150,09/05/19 14:33,"656 12th St, San Francisco, CA 94016" -250283,Wired Headphones,1,11.99,09/05/19 09:00,"168 Spruce St, New York City, NY 10001" -250284,Wired Headphones,1,11.99,09/26/19 18:50,"629 Adams St, San Francisco, CA 94016" -250285,Macbook Pro Laptop,1,1700,09/15/19 18:28,"500 Dogwood St, San Francisco, CA 94016" -250286,Lightning Charging Cable,1,14.95,09/07/19 21:52,"646 Forest St, Los Angeles, CA 90001" -250287,USB-C Charging Cable,1,11.95,09/02/19 10:04,"905 Cedar St, New York City, NY 10001" -250288,27in 4K Gaming Monitor,1,389.99,09/13/19 13:16,"664 Washington St, San Francisco, CA 94016" -250289,USB-C Charging Cable,1,11.95,09/07/19 16:23,"491 9th St, San Francisco, CA 94016" -250290,USB-C Charging Cable,1,11.95,09/25/19 09:55,"796 9th St, Seattle, WA 98101" -250291,AA Batteries (4-pack),1,3.84,09/18/19 15:36,"922 Wilson St, Los Angeles, CA 90001" -250292,Apple Airpods Headphones,1,150,09/12/19 20:54,"188 Highland St, Austin, TX 73301" -250293,AAA Batteries (4-pack),1,2.99,09/02/19 20:55,"413 Park St, Los Angeles, CA 90001" -250294,Lightning Charging Cable,1,14.95,09/22/19 19:22,"84 8th St, New York City, NY 10001" -250295,20in Monitor,1,109.99,09/27/19 23:38,"278 10th St, San Francisco, CA 94016" -250296,Apple Airpods Headphones,1,150,09/01/19 19:59,"980 Lake St, Dallas, TX 75001" -250297,Wired Headphones,1,11.99,09/06/19 13:59,"132 Main St, Los Angeles, CA 90001" -250298,AAA Batteries (4-pack),2,2.99,09/05/19 09:01,"181 13th St, Los Angeles, CA 90001" -250299,iPhone,1,700,09/29/19 12:09,"43 6th St, Atlanta, GA 30301" -250299,Lightning Charging Cable,1,14.95,09/29/19 12:09,"43 6th St, Atlanta, GA 30301" -250300,Lightning Charging Cable,1,14.95,09/18/19 18:56,"824 Pine St, New York City, NY 10001" -250301,Lightning Charging Cable,1,14.95,09/15/19 18:51,"752 Adams St, Seattle, WA 98101" -250302,Bose SoundSport Headphones,1,99.99,09/13/19 16:31,"845 Lake St, Dallas, TX 75001" -250303,AAA Batteries (4-pack),2,2.99,09/06/19 20:41,"504 Hickory St, Boston, MA 02215" -250304,27in FHD Monitor,1,149.99,09/26/19 15:34,"35 6th St, Los Angeles, CA 90001" -250305,iPhone,1,700,09/09/19 10:00,"633 10th St, San Francisco, CA 94016" -250306,AAA Batteries (4-pack),2,2.99,09/13/19 09:24,"164 Sunset St, Los Angeles, CA 90001" -250307,Wired Headphones,1,11.99,09/13/19 18:09,"159 13th St, San Francisco, CA 94016" -250308,Lightning Charging Cable,1,14.95,09/16/19 12:35,"226 Chestnut St, Seattle, WA 98101" -250309,Apple Airpods Headphones,1,150,09/01/19 09:59,"450 10th St, Los Angeles, CA 90001" -250310,34in Ultrawide Monitor,1,379.99,09/16/19 23:57,"675 Maple St, Los Angeles, CA 90001" -250311,AA Batteries (4-pack),2,3.84,09/18/19 21:07,"753 West St, San Francisco, CA 94016" -250312,Apple Airpods Headphones,1,150,09/10/19 05:19,"925 Washington St, New York City, NY 10001" -250313,27in FHD Monitor,1,149.99,09/27/19 16:32,"744 1st St, New York City, NY 10001" -250314,USB-C Charging Cable,1,11.95,09/02/19 10:37,"248 Highland St, Los Angeles, CA 90001" -250315,Bose SoundSport Headphones,1,99.99,09/01/19 18:48,"305 Cherry St, Seattle, WA 98101" -250316,Apple Airpods Headphones,1,150,09/21/19 22:46,"427 Wilson St, Los Angeles, CA 90001" -250317,Lightning Charging Cable,1,14.95,09/24/19 19:44,"751 Sunset St, San Francisco, CA 94016" -250318,AAA Batteries (4-pack),2,2.99,09/18/19 13:51,"183 Meadow St, Portland, OR 97035" -250319,USB-C Charging Cable,1,11.95,09/08/19 16:39,"960 Cedar St, Atlanta, GA 30301" -250320,USB-C Charging Cable,1,11.95,09/23/19 11:11,"912 Highland St, New York City, NY 10001" -250321,27in FHD Monitor,1,149.99,09/02/19 16:17,"173 Wilson St, Boston, MA 02215" -250322,Lightning Charging Cable,1,14.95,09/27/19 19:26,"971 Johnson St, Boston, MA 02215" -250323,27in FHD Monitor,1,149.99,09/24/19 17:56,"255 Cedar St, San Francisco, CA 94016" -250324,Bose SoundSport Headphones,1,99.99,09/30/19 06:54,"846 Main St, New York City, NY 10001" -250325,Apple Airpods Headphones,1,150,09/16/19 16:30,"852 Jackson St, Dallas, TX 75001" -250326,27in 4K Gaming Monitor,1,389.99,09/12/19 22:46,"849 5th St, Dallas, TX 75001" -250327,Lightning Charging Cable,1,14.95,09/18/19 18:49,"912 Ridge St, Los Angeles, CA 90001" -250328,USB-C Charging Cable,1,11.95,09/12/19 05:14,"753 West St, Boston, MA 02215" -250329,USB-C Charging Cable,1,11.95,09/19/19 22:39,"402 Main St, Atlanta, GA 30301" -250330,Wired Headphones,1,11.99,09/09/19 07:52,"717 Dogwood St, San Francisco, CA 94016" -250331,USB-C Charging Cable,1,11.95,09/01/19 10:20,"592 Lincoln St, San Francisco, CA 94016" -250332,Lightning Charging Cable,1,14.95,09/04/19 15:12,"517 North St, Austin, TX 73301" -250333,Bose SoundSport Headphones,1,99.99,09/25/19 21:19,"986 7th St, Atlanta, GA 30301" -250334,AA Batteries (4-pack),1,3.84,09/16/19 10:08,"162 Cherry St, Dallas, TX 75001" -250335,27in 4K Gaming Monitor,1,389.99,09/08/19 08:19,"855 Pine St, Atlanta, GA 30301" -250336,iPhone,1,700,09/26/19 18:46,"966 Highland St, San Francisco, CA 94016" -250337,Lightning Charging Cable,2,14.95,09/14/19 20:04,"584 10th St, Los Angeles, CA 90001" -250338,Apple Airpods Headphones,1,150,09/05/19 04:21,"739 Center St, Boston, MA 02215" -250339,Wired Headphones,1,11.99,09/29/19 11:18,"644 South St, New York City, NY 10001" -250340,USB-C Charging Cable,1,11.95,09/27/19 18:51,"381 Jefferson St, Boston, MA 02215" -250340,27in FHD Monitor,1,149.99,09/27/19 18:51,"381 Jefferson St, Boston, MA 02215" -250341,Apple Airpods Headphones,1,150,09/20/19 18:13,"735 North St, Boston, MA 02215" -250342,Wired Headphones,1,11.99,09/07/19 10:42,"917 Maple St, Boston, MA 02215" -250343,AAA Batteries (4-pack),1,2.99,09/19/19 22:57,"296 14th St, Austin, TX 73301" -250344,Apple Airpods Headphones,1,150,09/26/19 17:27,"743 South St, Austin, TX 73301" -250344,AAA Batteries (4-pack),2,2.99,09/26/19 17:27,"743 South St, Austin, TX 73301" -250345,AAA Batteries (4-pack),1,2.99,09/05/19 13:42,"251 Ridge St, Atlanta, GA 30301" -250346,Wired Headphones,1,11.99,09/30/19 20:50,"405 Spruce St, Los Angeles, CA 90001" -250347,AAA Batteries (4-pack),2,2.99,09/03/19 15:05,"385 Washington St, New York City, NY 10001" -250348,AAA Batteries (4-pack),2,2.99,09/15/19 09:20,"563 Madison St, San Francisco, CA 94016" -250349,Apple Airpods Headphones,1,150,09/23/19 17:34,"439 Chestnut St, Boston, MA 02215" -250350,Bose SoundSport Headphones,1,99.99,09/05/19 16:47,"517 Willow St, Dallas, TX 75001" -250351,Wired Headphones,1,11.99,09/11/19 10:56,"357 Cedar St, New York City, NY 10001" -250352,USB-C Charging Cable,1,11.95,09/03/19 15:58,"401 13th St, Los Angeles, CA 90001" -250353,27in FHD Monitor,1,149.99,09/21/19 15:30,"727 Jefferson St, Portland, OR 97035" -250354,Bose SoundSport Headphones,1,99.99,09/27/19 21:49,"706 6th St, Atlanta, GA 30301" -250355,Lightning Charging Cable,1,14.95,09/25/19 09:11,"701 Dogwood St, New York City, NY 10001" -250356,Apple Airpods Headphones,1,150,09/25/19 22:40,"593 Lake St, San Francisco, CA 94016" -250357,Wired Headphones,1,11.99,09/26/19 20:02,"435 6th St, Boston, MA 02215" -250358,AAA Batteries (4-pack),1,2.99,09/09/19 18:25,"383 1st St, Boston, MA 02215" -250359,Lightning Charging Cable,1,14.95,09/01/19 15:47,"667 Jefferson St, New York City, NY 10001" -250360,ThinkPad Laptop,1,999.99,09/15/19 18:46,"866 5th St, Los Angeles, CA 90001" -250361,Apple Airpods Headphones,1,150,09/29/19 16:01,"133 Ridge St, Dallas, TX 75001" -250362,AAA Batteries (4-pack),2,2.99,09/08/19 16:18,"132 Forest St, Los Angeles, CA 90001" -250363,Wired Headphones,2,11.99,09/30/19 06:49,"250 Lakeview St, New York City, NY 10001" -250364,27in 4K Gaming Monitor,1,389.99,09/29/19 20:50,"135 Adams St, New York City, NY 10001" -250365,Flatscreen TV,1,300,09/18/19 00:30,"655 Hill St, New York City, NY 10001" -250366,34in Ultrawide Monitor,1,379.99,09/25/19 03:48,"608 Johnson St, Los Angeles, CA 90001" -250367,USB-C Charging Cable,1,11.95,09/01/19 13:07,"47 Forest St, Portland, OR 97035" -250368,AAA Batteries (4-pack),1,2.99,09/09/19 19:58,"102 11th St, San Francisco, CA 94016" -250369,Wired Headphones,1,11.99,09/06/19 15:57,"806 8th St, San Francisco, CA 94016" -250370,Apple Airpods Headphones,1,150,09/03/19 18:46,"653 12th St, Los Angeles, CA 90001" -250371,USB-C Charging Cable,1,11.95,09/03/19 18:08,"511 8th St, Atlanta, GA 30301" -250372,USB-C Charging Cable,2,11.95,09/19/19 11:10,"846 Forest St, San Francisco, CA 94016" -250373,27in FHD Monitor,1,149.99,09/26/19 16:52,"563 Elm St, Austin, TX 73301" -250374,Apple Airpods Headphones,1,150,09/23/19 15:02,"529 Dogwood St, Atlanta, GA 30301" -250374,AA Batteries (4-pack),2,3.84,09/23/19 15:02,"529 Dogwood St, Atlanta, GA 30301" -250375,Wired Headphones,1,11.99,09/05/19 17:36,"425 Spruce St, San Francisco, CA 94016" -250376,AAA Batteries (4-pack),1,2.99,09/10/19 22:51,"432 Spruce St, Dallas, TX 75001" -250377,USB-C Charging Cable,1,11.95,09/29/19 12:36,"60 Ridge St, New York City, NY 10001" -250378,Wired Headphones,1,11.99,09/12/19 09:41,"596 Lakeview St, Boston, MA 02215" -250379,AA Batteries (4-pack),1,3.84,09/15/19 21:10,"614 12th St, Boston, MA 02215" -250380,USB-C Charging Cable,1,11.95,09/14/19 00:30,"661 Adams St, Los Angeles, CA 90001" -250381,AA Batteries (4-pack),1,3.84,09/19/19 22:08,"5 2nd St, San Francisco, CA 94016" -250382,AAA Batteries (4-pack),1,2.99,09/27/19 13:22,"460 Wilson St, New York City, NY 10001" -250383,USB-C Charging Cable,1,11.95,09/10/19 22:06,"165 8th St, San Francisco, CA 94016" -250384,27in 4K Gaming Monitor,1,389.99,09/07/19 12:53,"191 14th St, Atlanta, GA 30301" -250385,USB-C Charging Cable,1,11.95,09/18/19 11:01,"475 Church St, Los Angeles, CA 90001" -250386,Flatscreen TV,1,300,09/27/19 12:12,"281 Pine St, San Francisco, CA 94016" -250386,AAA Batteries (4-pack),1,2.99,09/27/19 12:12,"281 Pine St, San Francisco, CA 94016" -250387,USB-C Charging Cable,1,11.95,09/24/19 12:19,"750 Hill St, New York City, NY 10001" -250388,AAA Batteries (4-pack),1,2.99,09/01/19 19:29,"555 Walnut St, Dallas, TX 75001" -250389,AA Batteries (4-pack),2,3.84,09/03/19 10:44,"332 Washington St, Los Angeles, CA 90001" -250390,Bose SoundSport Headphones,1,99.99,09/23/19 12:43,"683 North St, San Francisco, CA 94016" -250391,Lightning Charging Cable,1,14.95,09/26/19 16:14,"90 Lincoln St, Los Angeles, CA 90001" -250392,AAA Batteries (4-pack),1,2.99,09/30/19 16:57,"287 West St, Boston, MA 02215" -250393,AAA Batteries (4-pack),1,2.99,09/17/19 18:44,"618 Washington St, Boston, MA 02215" -250394,Lightning Charging Cable,1,14.95,09/14/19 09:12,"783 Wilson St, San Francisco, CA 94016" -250395,34in Ultrawide Monitor,1,379.99,09/22/19 22:50,"138 Johnson St, San Francisco, CA 94016" -250396,AAA Batteries (4-pack),1,2.99,09/11/19 17:02,"571 2nd St, Boston, MA 02215" -250397,iPhone,1,700,09/19/19 13:16,"943 4th St, Portland, OR 97035" -250398,Lightning Charging Cable,1,14.95,09/18/19 18:25,"362 Forest St, Los Angeles, CA 90001" -250398,20in Monitor,1,109.99,09/18/19 18:25,"362 Forest St, Los Angeles, CA 90001" -250399,Apple Airpods Headphones,1,150,09/22/19 23:55,"458 Willow St, Dallas, TX 75001" -250400,Flatscreen TV,1,300,09/10/19 09:35,"780 Hickory St, Los Angeles, CA 90001" -250401,Lightning Charging Cable,1,14.95,09/18/19 20:20,"313 Forest St, Boston, MA 02215" -250402,USB-C Charging Cable,1,11.95,09/04/19 17:34,"956 11th St, San Francisco, CA 94016" -250403,Wired Headphones,1,11.99,09/15/19 16:05,"766 Willow St, Portland, OR 97035" -250404,AAA Batteries (4-pack),1,2.99,09/03/19 15:46,"475 Adams St, Boston, MA 02215" -250405,AAA Batteries (4-pack),2,2.99,09/29/19 14:21,"266 Main St, Atlanta, GA 30301" -250406,27in FHD Monitor,1,149.99,09/07/19 09:00,"979 Cedar St, New York City, NY 10001" -250407,Flatscreen TV,1,300,09/27/19 16:20,"657 14th St, Atlanta, GA 30301" -250408,AA Batteries (4-pack),1,3.84,09/30/19 15:47,"962 Meadow St, Dallas, TX 75001" -250409,Wired Headphones,1,11.99,09/03/19 05:55,"820 10th St, Atlanta, GA 30301" -250410,Macbook Pro Laptop,1,1700,09/24/19 21:09,"278 Willow St, Los Angeles, CA 90001" -250411,27in 4K Gaming Monitor,1,389.99,09/14/19 20:35,"590 Washington St, San Francisco, CA 94016" -250412,AAA Batteries (4-pack),1,2.99,09/11/19 16:46,"22 Church St, San Francisco, CA 94016" -250413,27in FHD Monitor,1,149.99,09/07/19 06:57,"992 Lincoln St, San Francisco, CA 94016" -250414,Wired Headphones,1,11.99,09/29/19 17:25,"595 Adams St, Dallas, TX 75001" -250415,Apple Airpods Headphones,1,150,09/13/19 17:00,"853 Hickory St, Portland, OR 97035" -250416,AA Batteries (4-pack),1,3.84,09/22/19 19:00,"193 2nd St, Boston, MA 02215" -250417,20in Monitor,1,109.99,09/04/19 06:03,"68 8th St, Austin, TX 73301" -250418,27in FHD Monitor,1,149.99,09/04/19 13:16,"463 Elm St, Los Angeles, CA 90001" -250419,Apple Airpods Headphones,1,150,09/13/19 11:31,"18 Hill St, Dallas, TX 75001" -250420,AA Batteries (4-pack),1,3.84,09/27/19 07:02,"113 Jefferson St, Seattle, WA 98101" -250421,Wired Headphones,2,11.99,09/18/19 18:31,"368 Lincoln St, Seattle, WA 98101" -250422,USB-C Charging Cable,1,11.95,09/15/19 03:37,"281 Lake St, Austin, TX 73301" -250423,Wired Headphones,1,11.99,09/24/19 09:30,"261 Lakeview St, Los Angeles, CA 90001" -250424,AA Batteries (4-pack),3,3.84,09/04/19 15:40,"501 Lincoln St, Los Angeles, CA 90001" -250425,AA Batteries (4-pack),2,3.84,09/11/19 12:27,"644 Lake St, Los Angeles, CA 90001" -250426,USB-C Charging Cable,1,11.95,09/23/19 00:38,"892 Johnson St, San Francisco, CA 94016" -250427,Wired Headphones,1,11.99,09/27/19 14:18,"575 11th St, Portland, OR 97035" -250428,iPhone,1,700,09/27/19 09:56,"498 5th St, San Francisco, CA 94016" -250429,Vareebadd Phone,1,400,09/29/19 11:06,"849 Pine St, Dallas, TX 75001" -250430,Apple Airpods Headphones,1,150,09/24/19 08:48,"562 Adams St, Los Angeles, CA 90001" -250431,Flatscreen TV,1,300,09/05/19 15:46,"732 Meadow St, Atlanta, GA 30301" -250432,AAA Batteries (4-pack),5,2.99,09/22/19 10:18,"634 Sunset St, New York City, NY 10001" -250433,AA Batteries (4-pack),1,3.84,09/15/19 20:28,"942 Lake St, San Francisco, CA 94016" -250434,Wired Headphones,2,11.99,09/08/19 12:27,"250 Johnson St, San Francisco, CA 94016" -250435,AA Batteries (4-pack),1,3.84,09/05/19 12:38,"663 Park St, Dallas, TX 75001" -250436,AAA Batteries (4-pack),3,2.99,09/04/19 11:39,"376 Madison St, Los Angeles, CA 90001" -250437,27in FHD Monitor,1,149.99,09/10/19 12:39,"152 Jackson St, Dallas, TX 75001" -250438,34in Ultrawide Monitor,1,379.99,09/27/19 00:23,"60 Madison St, Los Angeles, CA 90001" -250439,27in 4K Gaming Monitor,1,389.99,09/13/19 18:29,"800 Cherry St, Boston, MA 02215" -250440,Macbook Pro Laptop,1,1700,09/02/19 17:12,"369 Jackson St, Seattle, WA 98101" -250441,Macbook Pro Laptop,1,1700,09/21/19 07:50,"402 Dogwood St, San Francisco, CA 94016" -250442,USB-C Charging Cable,1,11.95,09/02/19 18:45,"649 5th St, Los Angeles, CA 90001" -250443,Wired Headphones,2,11.99,09/20/19 20:00,"965 13th St, Seattle, WA 98101" -250444,Lightning Charging Cable,1,14.95,09/22/19 20:17,"254 Main St, Portland, OR 97035" -250445,Bose SoundSport Headphones,1,99.99,09/26/19 14:38,"112 4th St, Los Angeles, CA 90001" -250446,Google Phone,1,600,09/04/19 14:14,"859 6th St, Seattle, WA 98101" -250447,LG Dryer,1,600.0,09/17/19 13:11,"297 Church St, Austin, TX 73301" -250448,Lightning Charging Cable,1,14.95,09/21/19 13:22,"216 Highland St, San Francisco, CA 94016" -250449,Wired Headphones,1,11.99,09/05/19 09:09,"322 Church St, Boston, MA 02215" -250450,USB-C Charging Cable,1,11.95,09/05/19 18:40,"608 Madison St, New York City, NY 10001" -250451,USB-C Charging Cable,1,11.95,09/27/19 22:33,"624 12th St, San Francisco, CA 94016" -250452,34in Ultrawide Monitor,1,379.99,09/22/19 22:11,"866 Dogwood St, San Francisco, CA 94016" -250453,Apple Airpods Headphones,1,150,09/29/19 11:11,"831 Pine St, Boston, MA 02215" -250454,USB-C Charging Cable,1,11.95,09/03/19 22:13,"378 11th St, Austin, TX 73301" -250455,AA Batteries (4-pack),1,3.84,09/05/19 11:06,"383 Johnson St, Los Angeles, CA 90001" -250456,Apple Airpods Headphones,1,150,09/02/19 22:32,"958 Center St, San Francisco, CA 94016" -250457,Bose SoundSport Headphones,1,99.99,09/17/19 12:12,"314 Meadow St, Boston, MA 02215" -250458,AA Batteries (4-pack),1,3.84,09/20/19 10:45,"787 Johnson St, New York City, NY 10001" -250459,USB-C Charging Cable,1,11.95,09/25/19 11:26,"534 Jackson St, San Francisco, CA 94016" -250460,Lightning Charging Cable,1,14.95,09/05/19 21:25,"897 River St, New York City, NY 10001" -250461,Apple Airpods Headphones,1,150,09/15/19 17:22,"688 West St, Atlanta, GA 30301" -250462,27in FHD Monitor,1,149.99,09/13/19 01:37,"198 Jackson St, New York City, NY 10001" -250463,AA Batteries (4-pack),1,3.84,09/13/19 14:36,"128 Madison St, Portland, OR 97035" -250464,AAA Batteries (4-pack),1,2.99,09/04/19 13:50,"445 6th St, San Francisco, CA 94016" -250465,27in FHD Monitor,1,149.99,09/02/19 16:17,"665 South St, Dallas, TX 75001" -250466,Wired Headphones,1,11.99,09/22/19 13:29,"694 Cedar St, San Francisco, CA 94016" -250467,Apple Airpods Headphones,1,150,09/30/19 13:20,"134 9th St, Dallas, TX 75001" -250468,ThinkPad Laptop,1,999.99,09/23/19 23:50,"137 Adams St, Portland, OR 97035" -250469,iPhone,1,700,09/17/19 19:27,"829 Spruce St, Seattle, WA 98101" -250470,AAA Batteries (4-pack),1,2.99,09/08/19 18:06,"761 Cherry St, Los Angeles, CA 90001" -250471,Apple Airpods Headphones,1,150,09/27/19 17:35,"712 North St, New York City, NY 10001" -250472,Wired Headphones,2,11.99,09/11/19 18:31,"73 Meadow St, Austin, TX 73301" -250473,AA Batteries (4-pack),1,3.84,09/30/19 18:23,"419 5th St, Los Angeles, CA 90001" -250474,Wired Headphones,1,11.99,09/23/19 15:48,"464 Walnut St, Los Angeles, CA 90001" -250475,AA Batteries (4-pack),1,3.84,09/15/19 17:27,"413 Cherry St, San Francisco, CA 94016" -250476,AA Batteries (4-pack),2,3.84,09/25/19 07:25,"341 South St, Los Angeles, CA 90001" -250477,Flatscreen TV,1,300,09/09/19 00:14,"853 Cherry St, Austin, TX 73301" -250478,USB-C Charging Cable,1,11.95,09/23/19 22:43,"37 10th St, New York City, NY 10001" -250479,iPhone,1,700,09/19/19 10:05,"77 Elm St, New York City, NY 10001" -250480,Bose SoundSport Headphones,1,99.99,09/07/19 07:27,"471 Park St, Atlanta, GA 30301" -250481,AAA Batteries (4-pack),1,2.99,09/08/19 14:52,"571 Hickory St, San Francisco, CA 94016" -250482,USB-C Charging Cable,1,11.95,09/25/19 10:11,"864 1st St, New York City, NY 10001" -250483,Wired Headphones,1,11.99,09/13/19 11:40,"640 Dogwood St, Atlanta, GA 30301" -250484,LG Dryer,1,600.0,09/02/19 21:45,"563 Main St, Atlanta, GA 30301" -250484,AA Batteries (4-pack),1,3.84,09/02/19 21:45,"563 Main St, Atlanta, GA 30301" -250485,34in Ultrawide Monitor,1,379.99,09/04/19 20:30,"692 5th St, Los Angeles, CA 90001" -250486,Lightning Charging Cable,1,14.95,09/21/19 19:31,"410 Wilson St, New York City, NY 10001" -250487,Apple Airpods Headphones,1,150,09/23/19 22:14,"243 Willow St, Boston, MA 02215" -250488,ThinkPad Laptop,1,999.99,09/01/19 21:46,"24 Meadow St, San Francisco, CA 94016" -250489,Google Phone,1,600,09/11/19 19:24,"976 2nd St, Seattle, WA 98101" -250490,Lightning Charging Cable,1,14.95,09/21/19 00:56,"989 West St, San Francisco, CA 94016" -250491,34in Ultrawide Monitor,1,379.99,09/22/19 14:23,"42 Lincoln St, San Francisco, CA 94016" -250492,USB-C Charging Cable,1,11.95,09/18/19 20:02,"247 1st St, New York City, NY 10001" -250493,Apple Airpods Headphones,1,150,09/13/19 11:51,"837 4th St, New York City, NY 10001" -250494,27in FHD Monitor,1,149.99,09/06/19 19:42,"827 6th St, Boston, MA 02215" -250495,iPhone,1,700,09/24/19 18:02,"470 Madison St, Seattle, WA 98101" -250496,Bose SoundSport Headphones,1,99.99,09/22/19 19:41,"786 South St, Atlanta, GA 30301" -250497,20in Monitor,1,109.99,09/15/19 18:33,"349 Meadow St, Seattle, WA 98101" -250498,Bose SoundSport Headphones,1,99.99,09/01/19 12:34,"92 Maple St, San Francisco, CA 94016" -250499,USB-C Charging Cable,2,11.95,09/17/19 11:31,"78 Wilson St, Dallas, TX 75001" -250500,Apple Airpods Headphones,1,150,09/12/19 19:28,"630 Madison St, San Francisco, CA 94016" -250501,Lightning Charging Cable,1,14.95,09/20/19 11:00,"356 Jefferson St, Dallas, TX 75001" -250502,USB-C Charging Cable,1,11.95,09/18/19 09:39,"275 11th St, San Francisco, CA 94016" -250503,Apple Airpods Headphones,1,150,09/13/19 12:05,"694 Washington St, San Francisco, CA 94016" -250504,Lightning Charging Cable,1,14.95,09/21/19 14:27,"840 Pine St, Austin, TX 73301" -250505,USB-C Charging Cable,1,11.95,09/02/19 21:08,"355 Adams St, Boston, MA 02215" -250506,Bose SoundSport Headphones,1,99.99,09/13/19 17:04,"964 Ridge St, Atlanta, GA 30301" -250507,27in 4K Gaming Monitor,1,389.99,09/03/19 21:56,"184 Meadow St, San Francisco, CA 94016" -250508,USB-C Charging Cable,1,11.95,09/20/19 18:12,"519 South St, New York City, NY 10001" -250509,AAA Batteries (4-pack),1,2.99,09/11/19 09:04,"600 Elm St, Boston, MA 02215" -250510,Wired Headphones,1,11.99,09/06/19 21:19,"977 13th St, Dallas, TX 75001" -250511,AAA Batteries (4-pack),1,2.99,09/27/19 20:06,"582 Lakeview St, San Francisco, CA 94016" -250512,Bose SoundSport Headphones,1,99.99,09/05/19 03:07,"359 Dogwood St, Austin, TX 73301" -250513,Bose SoundSport Headphones,1,99.99,09/04/19 17:35,"12 Washington St, Seattle, WA 98101" -250514,Apple Airpods Headphones,1,150,09/25/19 09:16,"587 Madison St, Atlanta, GA 30301" -250515,Bose SoundSport Headphones,1,99.99,09/06/19 16:45,"229 14th St, Dallas, TX 75001" -250516,34in Ultrawide Monitor,1,379.99,09/05/19 19:19,"572 South St, San Francisco, CA 94016" -250517,AAA Batteries (4-pack),1,2.99,09/19/19 19:12,"326 Hill St, Seattle, WA 98101" -250518,Bose SoundSport Headphones,1,99.99,09/21/19 15:30,"742 Sunset St, Austin, TX 73301" -250519,Flatscreen TV,1,300,09/06/19 09:19,"577 14th St, San Francisco, CA 94016" -250520,Flatscreen TV,1,300,09/15/19 10:56,"883 8th St, Los Angeles, CA 90001" -250521,Bose SoundSport Headphones,1,99.99,09/10/19 07:37,"613 Chestnut St, San Francisco, CA 94016" -250522,Apple Airpods Headphones,1,150,09/10/19 18:37,"634 Highland St, San Francisco, CA 94016" -250523,AA Batteries (4-pack),2,3.84,09/10/19 12:56,"359 6th St, Boston, MA 02215" -250524,LG Washing Machine,1,600.0,09/14/19 16:04,"591 Pine St, Atlanta, GA 30301" -250525,AAA Batteries (4-pack),1,2.99,09/14/19 10:47,"248 9th St, San Francisco, CA 94016" -250526,Bose SoundSport Headphones,1,99.99,09/11/19 11:37,"542 North St, Dallas, TX 75001" -250527,AAA Batteries (4-pack),1,2.99,09/05/19 00:32,"724 1st St, San Francisco, CA 94016" -250528,Wired Headphones,1,11.99,09/30/19 21:56,"151 Willow St, New York City, NY 10001" -250529,34in Ultrawide Monitor,1,379.99,09/12/19 18:40,"886 Ridge St, San Francisco, CA 94016" -250530,ThinkPad Laptop,1,999.99,09/14/19 14:30,"52 Washington St, New York City, NY 10001" -250531,Apple Airpods Headphones,1,150,09/14/19 16:47,"451 West St, San Francisco, CA 94016" -250532,Bose SoundSport Headphones,1,99.99,09/07/19 09:07,"484 Willow St, Los Angeles, CA 90001" -250533,USB-C Charging Cable,1,11.95,09/12/19 18:58,"832 Walnut St, Portland, OR 97035" -250534,Wired Headphones,1,11.99,09/29/19 21:37,"960 Madison St, Dallas, TX 75001" -250534,iPhone,1,700,09/29/19 21:37,"960 Madison St, Dallas, TX 75001" -250535,AAA Batteries (4-pack),1,2.99,09/07/19 11:43,"349 Spruce St, Boston, MA 02215" -250536,USB-C Charging Cable,1,11.95,09/02/19 21:53,"702 Maple St, Portland, OR 97035" -250537,20in Monitor,1,109.99,09/30/19 20:47,"727 Johnson St, Boston, MA 02215" -250538,Macbook Pro Laptop,1,1700,09/26/19 19:20,"111 4th St, New York City, NY 10001" -250539,Google Phone,1,600,09/06/19 10:50,"569 10th St, Boston, MA 02215" -250540,Wired Headphones,1,11.99,09/14/19 09:15,"497 Adams St, San Francisco, CA 94016" -250541,Apple Airpods Headphones,1,150,09/24/19 16:23,"36 Ridge St, Los Angeles, CA 90001" -250542,Apple Airpods Headphones,1,150,09/18/19 14:23,"832 7th St, San Francisco, CA 94016" -250543,Lightning Charging Cable,1,14.95,09/30/19 18:39,"42 4th St, Los Angeles, CA 90001" -250544,Lightning Charging Cable,2,14.95,09/17/19 20:20,"673 Center St, San Francisco, CA 94016" -250545,Vareebadd Phone,1,400,09/27/19 23:31,"948 Cherry St, San Francisco, CA 94016" -250546,Wired Headphones,1,11.99,09/18/19 16:17,"311 Hickory St, San Francisco, CA 94016" -250547,Lightning Charging Cable,1,14.95,09/01/19 11:08,"111 Park St, San Francisco, CA 94016" -250548,AAA Batteries (4-pack),1,2.99,09/23/19 15:44,"138 Center St, New York City, NY 10001" -250549,iPhone,1,700,09/11/19 08:44,"836 11th St, Seattle, WA 98101" -250549,Lightning Charging Cable,1,14.95,09/11/19 08:44,"836 11th St, Seattle, WA 98101" -250550,20in Monitor,1,109.99,09/08/19 18:45,"335 Adams St, San Francisco, CA 94016" -250551,Flatscreen TV,1,300,09/29/19 00:29,"268 Meadow St, Austin, TX 73301" -250551,Lightning Charging Cable,1,14.95,09/29/19 00:29,"268 Meadow St, Austin, TX 73301" -250552,Apple Airpods Headphones,1,150,09/04/19 22:17,"302 Park St, San Francisco, CA 94016" -250553,Bose SoundSport Headphones,1,99.99,09/29/19 12:10,"209 Washington St, Dallas, TX 75001" -250554,Wired Headphones,1,11.99,09/05/19 09:49,"315 12th St, Atlanta, GA 30301" -250555,Flatscreen TV,1,300,09/21/19 00:50,"381 4th St, Los Angeles, CA 90001" -250556,Google Phone,1,600,09/13/19 16:06,"297 Washington St, San Francisco, CA 94016" -250557,Wired Headphones,1,11.99,09/16/19 09:38,"272 Forest St, New York City, NY 10001" -250558,USB-C Charging Cable,1,11.95,09/14/19 13:41,"160 Church St, Seattle, WA 98101" -250559,Apple Airpods Headphones,1,150,09/18/19 18:45,"882 Willow St, San Francisco, CA 94016" -250560,34in Ultrawide Monitor,1,379.99,09/28/19 20:49,"888 Cherry St, New York City, NY 10001" -250561,USB-C Charging Cable,1,11.95,09/16/19 19:09,"965 6th St, San Francisco, CA 94016" -250562,Lightning Charging Cable,1,14.95,09/26/19 01:14,"817 Lake St, Los Angeles, CA 90001" -250563,USB-C Charging Cable,1,11.95,09/14/19 11:26,"884 1st St, Seattle, WA 98101" -250564,AA Batteries (4-pack),1,3.84,09/04/19 13:11,"829 14th St, Seattle, WA 98101" -250565,Apple Airpods Headphones,1,150,09/09/19 15:44,"314 Ridge St, San Francisco, CA 94016" -250566,AAA Batteries (4-pack),2,2.99,09/24/19 12:55,"63 Hill St, New York City, NY 10001" -250567,USB-C Charging Cable,1,11.95,09/22/19 11:34,"940 Dogwood St, Atlanta, GA 30301" -250568,Lightning Charging Cable,1,14.95,09/27/19 16:31,"583 North St, Austin, TX 73301" -250569,Wired Headphones,1,11.99,09/03/19 13:53,"517 Lakeview St, Los Angeles, CA 90001" -250570,AAA Batteries (4-pack),1,2.99,09/02/19 19:29,"770 Walnut St, San Francisco, CA 94016" -250571,27in FHD Monitor,1,149.99,09/24/19 21:07,"598 Meadow St, Boston, MA 02215" -250572,AAA Batteries (4-pack),1,2.99,09/06/19 19:30,"182 West St, San Francisco, CA 94016" -250573,Bose SoundSport Headphones,1,99.99,09/11/19 20:46,"592 11th St, Seattle, WA 98101" -250574,27in FHD Monitor,1,149.99,09/12/19 18:00,"614 10th St, Dallas, TX 75001" -250575,USB-C Charging Cable,1,11.95,09/30/19 20:09,"913 Willow St, Dallas, TX 75001" -250576,Apple Airpods Headphones,1,150,09/25/19 17:49,"950 River St, Atlanta, GA 30301" -250577,USB-C Charging Cable,1,11.95,09/12/19 22:56,"617 10th St, Dallas, TX 75001" -250578,Wired Headphones,1,11.99,09/11/19 11:05,"954 Walnut St, Boston, MA 02215" -250579,Apple Airpods Headphones,1,150,09/16/19 14:23,"886 Meadow St, Boston, MA 02215" -250580,27in 4K Gaming Monitor,1,389.99,09/08/19 15:36,"3 Jackson St, Austin, TX 73301" -250581,Macbook Pro Laptop,1,1700,09/10/19 18:44,"770 12th St, Austin, TX 73301" -250582,27in FHD Monitor,1,149.99,09/08/19 20:46,"744 8th St, Atlanta, GA 30301" -250583,34in Ultrawide Monitor,1,379.99,09/15/19 18:29,"860 7th St, San Francisco, CA 94016" -250584,Lightning Charging Cable,1,14.95,09/06/19 14:17,"531 5th St, Dallas, TX 75001" -250585,27in FHD Monitor,1,149.99,09/20/19 12:29,"331 Highland St, Atlanta, GA 30301" -250586,Wired Headphones,1,11.99,09/26/19 19:11,"438 Church St, Dallas, TX 75001" -250587,Macbook Pro Laptop,1,1700,09/30/19 11:08,"818 2nd St, Seattle, WA 98101" -250588,AAA Batteries (4-pack),1,2.99,09/22/19 13:32,"287 Jackson St, New York City, NY 10001" -250589,AAA Batteries (4-pack),3,2.99,09/17/19 16:57,"713 9th St, Los Angeles, CA 90001" -250590,34in Ultrawide Monitor,1,379.99,09/03/19 10:36,"629 Church St, Portland, ME 04101" -250591,USB-C Charging Cable,1,11.95,09/15/19 18:56,"477 Johnson St, New York City, NY 10001" -250592,20in Monitor,1,109.99,09/17/19 11:01,"640 Hickory St, New York City, NY 10001" -250593,Lightning Charging Cable,1,14.95,09/28/19 10:16,"345 Church St, New York City, NY 10001" -250594,Lightning Charging Cable,1,14.95,09/03/19 13:24,"531 North St, Portland, OR 97035" -250595,27in FHD Monitor,1,149.99,09/20/19 02:11,"338 Lincoln St, Boston, MA 02215" -250596,AAA Batteries (4-pack),1,2.99,09/20/19 19:21,"994 Johnson St, San Francisco, CA 94016" -250597,AAA Batteries (4-pack),1,2.99,09/22/19 10:30,"804 Sunset St, Los Angeles, CA 90001" -250598,Lightning Charging Cable,1,14.95,09/05/19 21:41,"852 Ridge St, Seattle, WA 98101" -250599,Google Phone,1,600,09/02/19 17:24,"116 1st St, Los Angeles, CA 90001" -250599,USB-C Charging Cable,1,11.95,09/02/19 17:24,"116 1st St, Los Angeles, CA 90001" -250600,Bose SoundSport Headphones,1,99.99,09/21/19 14:45,"532 Forest St, San Francisco, CA 94016" -250601,Wired Headphones,1,11.99,09/13/19 08:51,"236 Walnut St, Boston, MA 02215" -250602,Wired Headphones,1,11.99,09/24/19 14:28,"346 1st St, Boston, MA 02215" -,,,,, -250603,27in FHD Monitor,1,149.99,09/28/19 22:34,"935 1st St, Seattle, WA 98101" -250604,USB-C Charging Cable,1,11.95,09/19/19 15:52,"153 Church St, New York City, NY 10001" -250605,AA Batteries (4-pack),1,3.84,09/08/19 12:58,"818 Wilson St, Los Angeles, CA 90001" -250606,Lightning Charging Cable,1,14.95,09/08/19 20:50,"504 11th St, New York City, NY 10001" -250607,Lightning Charging Cable,1,14.95,09/03/19 11:30,"836 Jackson St, New York City, NY 10001" -250608,27in 4K Gaming Monitor,1,389.99,09/27/19 17:59,"124 Center St, New York City, NY 10001" -250609,Lightning Charging Cable,1,14.95,09/12/19 13:47,"344 10th St, Dallas, TX 75001" -250610,AAA Batteries (4-pack),1,2.99,09/07/19 21:20,"12 Church St, Atlanta, GA 30301" -250611,Wired Headphones,1,11.99,09/03/19 17:17,"617 Madison St, Austin, TX 73301" -250611,Flatscreen TV,1,300,09/03/19 17:17,"617 Madison St, Austin, TX 73301" -250612,USB-C Charging Cable,1,11.95,09/23/19 09:16,"672 River St, Los Angeles, CA 90001" -250613,USB-C Charging Cable,1,11.95,09/15/19 12:57,"305 South St, Boston, MA 02215" -250614,Wired Headphones,1,11.99,09/29/19 21:52,"358 Hickory St, Seattle, WA 98101" -250615,USB-C Charging Cable,1,11.95,09/04/19 20:52,"690 4th St, New York City, NY 10001" -250616,Bose SoundSport Headphones,1,99.99,09/11/19 15:23,"178 12th St, New York City, NY 10001" -250617,20in Monitor,1,109.99,09/16/19 10:51,"949 Cedar St, Austin, TX 73301" -250618,Apple Airpods Headphones,1,150,09/23/19 13:55,"132 Elm St, Portland, ME 04101" -250619,Wired Headphones,1,11.99,09/25/19 09:28,"627 Adams St, Austin, TX 73301" -250620,Bose SoundSport Headphones,1,99.99,09/29/19 10:44,"827 Willow St, Atlanta, GA 30301" -250621,27in 4K Gaming Monitor,1,389.99,09/20/19 17:02,"994 2nd St, New York City, NY 10001" -250622,AAA Batteries (4-pack),2,2.99,09/17/19 19:28,"2 Hickory St, Boston, MA 02215" -250623,Wired Headphones,1,11.99,09/19/19 21:20,"640 Johnson St, Atlanta, GA 30301" -250624,AAA Batteries (4-pack),2,2.99,09/10/19 10:50,"585 Adams St, Seattle, WA 98101" -250625,iPhone,1,700,09/11/19 20:18,"225 Forest St, Austin, TX 73301" -250625,Lightning Charging Cable,1,14.95,09/11/19 20:18,"225 Forest St, Austin, TX 73301" -250626,Apple Airpods Headphones,1,150,09/28/19 18:25,"160 Main St, Boston, MA 02215" -250627,Flatscreen TV,1,300,09/14/19 16:06,"297 Jefferson St, New York City, NY 10001" -250628,Lightning Charging Cable,2,14.95,09/16/19 22:52,"723 Willow St, Portland, ME 04101" -250629,USB-C Charging Cable,1,11.95,09/29/19 00:53,"98 Hill St, San Francisco, CA 94016" -250630,iPhone,1,700,09/28/19 01:29,"850 Church St, Portland, OR 97035" -250631,Lightning Charging Cable,1,14.95,09/13/19 11:58,"910 1st St, Los Angeles, CA 90001" -250632,Lightning Charging Cable,1,14.95,09/17/19 13:09,"48 6th St, New York City, NY 10001" -250633,AAA Batteries (4-pack),1,2.99,09/14/19 21:28,"286 7th St, Boston, MA 02215" -250634,Wired Headphones,1,11.99,09/18/19 16:08,"533 11th St, Boston, MA 02215" -250635,Bose SoundSport Headphones,1,99.99,09/10/19 09:55,"813 11th St, San Francisco, CA 94016" -250636,Bose SoundSport Headphones,1,99.99,09/22/19 20:30,"442 Elm St, Portland, OR 97035" -250637,Bose SoundSport Headphones,1,99.99,09/06/19 08:12,"149 River St, San Francisco, CA 94016" -250638,USB-C Charging Cable,1,11.95,09/27/19 20:29,"269 North St, Seattle, WA 98101" -250639,USB-C Charging Cable,1,11.95,09/19/19 15:24,"442 West St, New York City, NY 10001" -250640,27in 4K Gaming Monitor,1,389.99,09/04/19 21:36,"743 Spruce St, Dallas, TX 75001" -250641,LG Dryer,1,600.0,09/06/19 22:07,"843 7th St, San Francisco, CA 94016" -250642,Lightning Charging Cable,1,14.95,09/03/19 15:01,"753 Madison St, San Francisco, CA 94016" -250643,Wired Headphones,1,11.99,09/26/19 01:53,"541 Hill St, Los Angeles, CA 90001" -250644,LG Dryer,1,600.0,09/08/19 07:46,"560 Cherry St, San Francisco, CA 94016" -250645,Wired Headphones,1,11.99,09/03/19 01:08,"1 Jefferson St, Los Angeles, CA 90001" -250646,USB-C Charging Cable,1,11.95,09/15/19 14:38,"788 8th St, San Francisco, CA 94016" -250647,AAA Batteries (4-pack),1,2.99,09/09/19 12:45,"73 Chestnut St, San Francisco, CA 94016" -250648,AAA Batteries (4-pack),1,2.99,09/16/19 14:55,"943 Wilson St, Seattle, WA 98101" -250649,Apple Airpods Headphones,1,150,09/27/19 22:45,"908 7th St, Seattle, WA 98101" -250650,iPhone,1,700,09/02/19 17:26,"183 Washington St, Portland, OR 97035" -250651,Wired Headphones,1,11.99,09/05/19 07:39,"460 Lincoln St, Austin, TX 73301" -250652,AA Batteries (4-pack),1,3.84,09/01/19 11:58,"316 Cedar St, Portland, OR 97035" -250653,AAA Batteries (4-pack),1,2.99,09/09/19 11:39,"35 Elm St, Atlanta, GA 30301" -250654,Wired Headphones,2,11.99,09/02/19 00:17,"560 Sunset St, San Francisco, CA 94016" -250655,27in FHD Monitor,1,149.99,09/06/19 11:35,"384 Elm St, Boston, MA 02215" -250656,Lightning Charging Cable,1,14.95,09/23/19 22:37,"646 North St, New York City, NY 10001" -250657,ThinkPad Laptop,1,999.99,09/29/19 17:53,"146 Hickory St, Atlanta, GA 30301" -250658,Wired Headphones,1,11.99,09/03/19 09:51,"474 9th St, Dallas, TX 75001" -250659,20in Monitor,1,109.99,09/18/19 08:24,"748 Adams St, San Francisco, CA 94016" -250660,ThinkPad Laptop,1,999.99,09/30/19 08:26,"312 Sunset St, San Francisco, CA 94016" -250661,Apple Airpods Headphones,1,150,09/07/19 09:47,"896 9th St, San Francisco, CA 94016" -250662,Apple Airpods Headphones,1,150,09/28/19 11:42,"869 12th St, San Francisco, CA 94016" -250663,USB-C Charging Cable,1,11.95,09/12/19 17:55,"874 9th St, New York City, NY 10001" -250664,AAA Batteries (4-pack),1,2.99,09/16/19 12:26,"460 9th St, Dallas, TX 75001" -250665,34in Ultrawide Monitor,1,379.99,09/12/19 22:18,"628 Adams St, New York City, NY 10001" -250666,AAA Batteries (4-pack),1,2.99,09/14/19 16:00,"296 Church St, Dallas, TX 75001" -250667,AA Batteries (4-pack),1,3.84,09/22/19 12:21,"220 Center St, Atlanta, GA 30301" -250668,27in FHD Monitor,1,149.99,09/21/19 08:01,"715 10th St, San Francisco, CA 94016" -250669,AA Batteries (4-pack),1,3.84,09/09/19 18:00,"976 Chestnut St, San Francisco, CA 94016" -250670,Flatscreen TV,1,300,09/19/19 19:39,"928 West St, Portland, OR 97035" -250671,USB-C Charging Cable,2,11.95,09/27/19 18:09,"414 Chestnut St, Portland, OR 97035" -250672,Bose SoundSport Headphones,1,99.99,09/05/19 16:21,"50 4th St, San Francisco, CA 94016" -250673,ThinkPad Laptop,1,999.99,09/07/19 11:09,"466 Cherry St, New York City, NY 10001" -250673,LG Dryer,1,600.0,09/07/19 11:09,"466 Cherry St, New York City, NY 10001" -250674,Bose SoundSport Headphones,1,99.99,09/24/19 10:15,"816 9th St, Los Angeles, CA 90001" -250675,USB-C Charging Cable,1,11.95,09/05/19 14:49,"53 4th St, Boston, MA 02215" -250676,AAA Batteries (4-pack),1,2.99,09/18/19 21:36,"354 Willow St, New York City, NY 10001" -250677,AAA Batteries (4-pack),3,2.99,09/10/19 13:09,"270 13th St, Boston, MA 02215" -250678,Lightning Charging Cable,1,14.95,09/06/19 18:16,"315 4th St, New York City, NY 10001" -250679,Lightning Charging Cable,1,14.95,09/21/19 15:36,"398 Center St, New York City, NY 10001" -250680,Google Phone,1,600,09/26/19 08:10,"977 Jackson St, Boston, MA 02215" -250681,Wired Headphones,1,11.99,09/23/19 16:22,"73 Jackson St, Boston, MA 02215" -250682,20in Monitor,1,109.99,09/07/19 12:00,"658 Park St, Austin, TX 73301" -250683,USB-C Charging Cable,1,11.95,09/19/19 23:44,"111 Meadow St, New York City, NY 10001" -250684,AAA Batteries (4-pack),1,2.99,10/01/19 03:38,"985 Pine St, San Francisco, CA 94016" -250685,ThinkPad Laptop,1,999.99,09/10/19 14:01,"511 North St, Boston, MA 02215" -250686,Bose SoundSport Headphones,1,99.99,09/28/19 08:55,"144 Washington St, Boston, MA 02215" -250687,USB-C Charging Cable,1,11.95,09/08/19 07:07,"373 Walnut St, Los Angeles, CA 90001" -250688,Vareebadd Phone,1,400,09/23/19 20:45,"148 Church St, Atlanta, GA 30301" -250689,LG Washing Machine,1,600.0,09/19/19 15:46,"824 Washington St, Los Angeles, CA 90001" -250690,27in 4K Gaming Monitor,1,389.99,09/24/19 10:24,"430 Jackson St, Boston, MA 02215" -250691,34in Ultrawide Monitor,1,379.99,09/15/19 14:57,"475 West St, Portland, OR 97035" -250692,Bose SoundSport Headphones,1,99.99,09/06/19 13:22,"313 2nd St, Los Angeles, CA 90001" -250693,27in FHD Monitor,1,149.99,09/11/19 22:04,"512 Pine St, Los Angeles, CA 90001" -250694,USB-C Charging Cable,1,11.95,09/16/19 10:20,"276 Hickory St, Boston, MA 02215" -250695,AAA Batteries (4-pack),1,2.99,09/02/19 17:41,"875 4th St, Boston, MA 02215" -250696,ThinkPad Laptop,1,999.99,09/10/19 13:09,"312 Willow St, San Francisco, CA 94016" -250697,AA Batteries (4-pack),1,3.84,09/07/19 12:28,"294 12th St, Los Angeles, CA 90001" -250698,27in FHD Monitor,1,149.99,09/13/19 13:26,"585 14th St, Boston, MA 02215" -250699,27in FHD Monitor,1,149.99,09/27/19 22:56,"299 Wilson St, Dallas, TX 75001" -250700,Google Phone,1,600,09/10/19 18:26,"15 Jackson St, Portland, OR 97035" -250701,Apple Airpods Headphones,1,150,09/10/19 00:50,"915 Highland St, San Francisco, CA 94016" -250702,34in Ultrawide Monitor,1,379.99,09/17/19 01:25,"936 Hickory St, Atlanta, GA 30301" -250703,AAA Batteries (4-pack),3,2.99,09/25/19 12:09,"79 Lincoln St, San Francisco, CA 94016" -250704,Vareebadd Phone,1,400,09/10/19 20:42,"841 Lincoln St, New York City, NY 10001" -250705,USB-C Charging Cable,1,11.95,09/15/19 17:27,"579 8th St, New York City, NY 10001" -250706,Lightning Charging Cable,1,14.95,09/27/19 16:28,"192 13th St, San Francisco, CA 94016" -250707,AAA Batteries (4-pack),1,2.99,09/16/19 12:56,"73 Walnut St, New York City, NY 10001" -250708,Lightning Charging Cable,1,14.95,09/17/19 14:45,"857 Walnut St, Dallas, TX 75001" -250709,27in 4K Gaming Monitor,1,389.99,09/16/19 12:47,"865 12th St, Los Angeles, CA 90001" -250710,27in 4K Gaming Monitor,1,389.99,09/19/19 09:42,"485 Jackson St, San Francisco, CA 94016" -250711,AA Batteries (4-pack),2,3.84,09/12/19 17:03,"1 14th St, San Francisco, CA 94016" -250712,AAA Batteries (4-pack),1,2.99,09/27/19 20:11,"213 Maple St, San Francisco, CA 94016" -250713,USB-C Charging Cable,1,11.95,09/25/19 12:43,"623 Willow St, Los Angeles, CA 90001" -250714,USB-C Charging Cable,1,11.95,09/30/19 10:22,"810 Park St, San Francisco, CA 94016" -250715,Wired Headphones,1,11.99,09/03/19 16:50,"534 Lincoln St, New York City, NY 10001" -250716,Wired Headphones,1,11.99,09/20/19 11:47,"477 West St, New York City, NY 10001" -250717,USB-C Charging Cable,1,11.95,09/05/19 21:41,"232 Cherry St, San Francisco, CA 94016" -250718,Macbook Pro Laptop,1,1700,09/28/19 09:32,"999 Jackson St, Boston, MA 02215" -250719,AA Batteries (4-pack),2,3.84,09/02/19 20:48,"304 11th St, Atlanta, GA 30301" -250720,Apple Airpods Headphones,1,150,09/09/19 13:01,"535 4th St, Portland, OR 97035" -250721,Bose SoundSport Headphones,1,99.99,09/16/19 11:11,"23 Highland St, San Francisco, CA 94016" -250722,20in Monitor,1,109.99,09/03/19 06:07,"133 Washington St, New York City, NY 10001" -250723,Lightning Charging Cable,1,14.95,09/25/19 15:01,"630 Forest St, Portland, OR 97035" -250724,Google Phone,1,600,09/26/19 23:07,"385 Johnson St, San Francisco, CA 94016" -250725,Bose SoundSport Headphones,1,99.99,09/20/19 19:04,"699 12th St, New York City, NY 10001" -250726,27in 4K Gaming Monitor,1,389.99,09/27/19 22:29,"909 Forest St, New York City, NY 10001" -250727,27in FHD Monitor,1,149.99,09/06/19 10:11,"843 Ridge St, Austin, TX 73301" -250728,USB-C Charging Cable,1,11.95,09/29/19 09:04,"42 Church St, Seattle, WA 98101" -250729,AA Batteries (4-pack),3,3.84,09/23/19 11:27,"68 Church St, Atlanta, GA 30301" -250730,27in FHD Monitor,1,149.99,09/10/19 17:35,"139 Walnut St, Atlanta, GA 30301" -250731,Bose SoundSport Headphones,1,99.99,09/12/19 12:14,"523 Walnut St, San Francisco, CA 94016" -250732,Macbook Pro Laptop,1,1700,09/06/19 16:37,"268 Hill St, Seattle, WA 98101" -250733,USB-C Charging Cable,1,11.95,09/20/19 21:22,"420 Cedar St, Portland, OR 97035" -250734,USB-C Charging Cable,1,11.95,09/12/19 11:15,"295 Madison St, Atlanta, GA 30301" -250735,Apple Airpods Headphones,1,150,09/24/19 15:19,"929 12th St, San Francisco, CA 94016" -250736,AAA Batteries (4-pack),1,2.99,09/28/19 14:08,"634 5th St, San Francisco, CA 94016" -250737,USB-C Charging Cable,1,11.95,09/02/19 22:04,"851 6th St, Boston, MA 02215" -250738,AA Batteries (4-pack),1,3.84,09/16/19 01:13,"491 Washington St, Seattle, WA 98101" -250739,Bose SoundSport Headphones,1,99.99,09/29/19 16:41,"901 Wilson St, Los Angeles, CA 90001" -250740,iPhone,1,700,09/19/19 09:40,"778 Johnson St, Seattle, WA 98101" -250741,Google Phone,1,600,09/16/19 17:38,"759 Dogwood St, San Francisco, CA 94016" -250742,AA Batteries (4-pack),1,3.84,09/23/19 14:05,"77 Elm St, Boston, MA 02215" -250743,AA Batteries (4-pack),1,3.84,09/27/19 19:21,"923 Chestnut St, New York City, NY 10001" -250744,Macbook Pro Laptop,1,1700,09/25/19 22:05,"683 Dogwood St, San Francisco, CA 94016" -250745,Apple Airpods Headphones,1,150,09/05/19 15:56,"409 River St, San Francisco, CA 94016" -250746,Apple Airpods Headphones,1,150,09/12/19 08:47,"21 West St, Atlanta, GA 30301" -250747,Vareebadd Phone,1,400,09/29/19 13:24,"230 9th St, Seattle, WA 98101" -250747,USB-C Charging Cable,1,11.95,09/29/19 13:24,"230 9th St, Seattle, WA 98101" -250748,Bose SoundSport Headphones,1,99.99,09/04/19 17:27,"728 Jefferson St, Boston, MA 02215" -250749,AAA Batteries (4-pack),1,2.99,09/29/19 16:26,"183 Highland St, San Francisco, CA 94016" -250750,Wired Headphones,1,11.99,09/30/19 14:00,"548 9th St, Portland, OR 97035" -250751,Apple Airpods Headphones,1,150,09/16/19 12:04,"363 Wilson St, Austin, TX 73301" -250752,27in 4K Gaming Monitor,1,389.99,09/25/19 15:57,"602 Elm St, San Francisco, CA 94016" -250753,USB-C Charging Cable,1,11.95,09/02/19 12:57,"749 Maple St, Los Angeles, CA 90001" -250754,iPhone,1,700,09/28/19 12:58,"170 Dogwood St, Portland, OR 97035" -250754,Lightning Charging Cable,1,14.95,09/28/19 12:58,"170 Dogwood St, Portland, OR 97035" -250754,Wired Headphones,1,11.99,09/28/19 12:58,"170 Dogwood St, Portland, OR 97035" -250755,USB-C Charging Cable,1,11.95,09/11/19 20:11,"659 West St, San Francisco, CA 94016" -250756,AAA Batteries (4-pack),1,2.99,09/09/19 17:06,"134 Washington St, Atlanta, GA 30301" -250757,Bose SoundSport Headphones,1,99.99,09/23/19 18:22,"170 Lincoln St, San Francisco, CA 94016" -250758,Apple Airpods Headphones,1,150,09/28/19 16:18,"865 Center St, Seattle, WA 98101" -250759,USB-C Charging Cable,1,11.95,09/27/19 20:25,"243 Jefferson St, Boston, MA 02215" -250760,Lightning Charging Cable,1,14.95,09/07/19 18:41,"727 Hickory St, Austin, TX 73301" -250761,Google Phone,1,600,09/16/19 13:40,"422 Hill St, Los Angeles, CA 90001" -250762,USB-C Charging Cable,1,11.95,09/09/19 01:08,"998 Lincoln St, San Francisco, CA 94016" -250763,Bose SoundSport Headphones,1,99.99,09/08/19 07:32,"360 4th St, Los Angeles, CA 90001" -250764,USB-C Charging Cable,1,11.95,09/07/19 21:15,"829 Walnut St, Los Angeles, CA 90001" -250765,ThinkPad Laptop,1,999.99,09/20/19 07:43,"898 8th St, Boston, MA 02215" -250766,34in Ultrawide Monitor,1,379.99,09/01/19 12:58,"278 11th St, Dallas, TX 75001" -250767,USB-C Charging Cable,1,11.95,09/27/19 01:07,"766 5th St, Seattle, WA 98101" -250768,27in FHD Monitor,1,149.99,09/28/19 21:54,"77 Center St, San Francisco, CA 94016" -250769,Flatscreen TV,1,300,09/19/19 15:20,"773 7th St, San Francisco, CA 94016" -250770,AA Batteries (4-pack),1,3.84,09/07/19 11:09,"626 Meadow St, Seattle, WA 98101" -250771,Wired Headphones,1,11.99,09/29/19 21:54,"689 Maple St, San Francisco, CA 94016" -250772,Lightning Charging Cable,1,14.95,09/16/19 19:17,"107 Adams St, Los Angeles, CA 90001" -250773,27in FHD Monitor,1,149.99,09/10/19 20:58,"164 Hill St, Los Angeles, CA 90001" -250774,AAA Batteries (4-pack),1,2.99,09/04/19 21:39,"938 10th St, San Francisco, CA 94016" -250775,Lightning Charging Cable,1,14.95,09/15/19 20:37,"114 8th St, Los Angeles, CA 90001" -250776,USB-C Charging Cable,1,11.95,09/07/19 17:11,"595 Hickory St, Boston, MA 02215" -250777,34in Ultrawide Monitor,1,379.99,09/21/19 12:31,"774 Spruce St, Seattle, WA 98101" -250778,USB-C Charging Cable,1,11.95,09/18/19 07:25,"193 4th St, New York City, NY 10001" -250779,27in FHD Monitor,1,149.99,09/18/19 16:21,"503 Lakeview St, San Francisco, CA 94016" -250780,Lightning Charging Cable,1,14.95,09/24/19 12:26,"50 11th St, New York City, NY 10001" -250781,Wired Headphones,2,11.99,09/12/19 12:52,"370 6th St, Boston, MA 02215" -250782,USB-C Charging Cable,1,11.95,09/04/19 13:22,"172 Center St, San Francisco, CA 94016" -250783,AA Batteries (4-pack),1,3.84,09/12/19 12:13,"170 Willow St, Los Angeles, CA 90001" -250784,Google Phone,1,600,09/04/19 13:52,"261 Lincoln St, Boston, MA 02215" -250784,USB-C Charging Cable,1,11.95,09/04/19 13:52,"261 Lincoln St, Boston, MA 02215" -250785,34in Ultrawide Monitor,1,379.99,09/23/19 13:18,"136 Spruce St, Boston, MA 02215" -250786,AA Batteries (4-pack),1,3.84,09/05/19 18:24,"406 Ridge St, San Francisco, CA 94016" -250787,AAA Batteries (4-pack),1,2.99,09/13/19 16:33,"618 South St, San Francisco, CA 94016" -250788,AAA Batteries (4-pack),1,2.99,09/19/19 11:07,"453 North St, New York City, NY 10001" -250789,27in FHD Monitor,1,149.99,09/09/19 00:48,"565 Forest St, San Francisco, CA 94016" -250790,AAA Batteries (4-pack),2,2.99,09/07/19 20:53,"92 9th St, Atlanta, GA 30301" -250791,Wired Headphones,1,11.99,09/30/19 11:35,"395 North St, San Francisco, CA 94016" -250792,AA Batteries (4-pack),3,3.84,09/23/19 18:13,"926 Main St, Seattle, WA 98101" -250793,Lightning Charging Cable,1,14.95,09/05/19 12:02,"968 Lakeview St, Dallas, TX 75001" -250794,USB-C Charging Cable,1,11.95,09/21/19 11:52,"655 Johnson St, Portland, OR 97035" -250795,Wired Headphones,1,11.99,09/27/19 00:57,"963 Dogwood St, Portland, OR 97035" -250796,Lightning Charging Cable,1,14.95,09/14/19 18:47,"179 7th St, Los Angeles, CA 90001" -250797,USB-C Charging Cable,1,11.95,09/24/19 21:51,"885 Hill St, Los Angeles, CA 90001" -250798,iPhone,1,700,09/29/19 23:52,"137 Cherry St, San Francisco, CA 94016" -250798,Lightning Charging Cable,1,14.95,09/29/19 23:52,"137 Cherry St, San Francisco, CA 94016" -250799,USB-C Charging Cable,1,11.95,09/05/19 18:45,"181 Lincoln St, Portland, OR 97035" -250800,Apple Airpods Headphones,1,150,09/28/19 20:46,"366 6th St, Los Angeles, CA 90001" -250801,Bose SoundSport Headphones,1,99.99,09/04/19 09:07,"231 Elm St, Boston, MA 02215" -250802,USB-C Charging Cable,1,11.95,09/05/19 20:16,"919 14th St, Boston, MA 02215" -250803,20in Monitor,1,109.99,09/14/19 13:20,"226 Washington St, San Francisco, CA 94016" -250804,Lightning Charging Cable,1,14.95,09/16/19 14:11,"50 Spruce St, New York City, NY 10001" -250805,iPhone,1,700,09/20/19 20:59,"851 Hill St, San Francisco, CA 94016" -250806,AA Batteries (4-pack),2,3.84,09/12/19 13:25,"705 Johnson St, Dallas, TX 75001" -250807,USB-C Charging Cable,1,11.95,09/03/19 02:25,"870 7th St, Austin, TX 73301" -250808,AAA Batteries (4-pack),1,2.99,09/17/19 19:07,"517 Maple St, Los Angeles, CA 90001" -250809,27in 4K Gaming Monitor,1,389.99,09/18/19 20:27,"938 Elm St, San Francisco, CA 94016" -250810,AA Batteries (4-pack),1,3.84,09/26/19 11:27,"784 Elm St, Boston, MA 02215" -250811,AAA Batteries (4-pack),2,2.99,09/04/19 16:59,"540 Church St, Dallas, TX 75001" -250812,34in Ultrawide Monitor,1,379.99,09/12/19 17:00,"302 11th St, Dallas, TX 75001" -250813,USB-C Charging Cable,1,11.95,09/30/19 21:04,"920 Pine St, Los Angeles, CA 90001" -250814,Lightning Charging Cable,1,14.95,09/27/19 16:20,"426 Madison St, Atlanta, GA 30301" -250815,Apple Airpods Headphones,1,150,09/10/19 19:59,"556 Park St, Seattle, WA 98101" -250816,AAA Batteries (4-pack),2,2.99,09/03/19 11:55,"298 Washington St, Boston, MA 02215" -250817,AAA Batteries (4-pack),1,2.99,09/27/19 20:14,"154 Jackson St, Boston, MA 02215" -250818,27in FHD Monitor,1,149.99,09/07/19 13:45,"59 Lake St, Austin, TX 73301" -250818,Apple Airpods Headphones,1,150,09/07/19 13:45,"59 Lake St, Austin, TX 73301" -250819,Wired Headphones,2,11.99,09/24/19 19:14,"681 14th St, New York City, NY 10001" -250820,iPhone,1,700,09/16/19 23:15,"753 Dogwood St, Portland, OR 97035" -250820,Wired Headphones,1,11.99,09/16/19 23:15,"753 Dogwood St, Portland, OR 97035" -250821,Bose SoundSport Headphones,1,99.99,09/14/19 13:32,"212 North St, New York City, NY 10001" -250822,USB-C Charging Cable,1,11.95,09/13/19 11:22,"134 South St, Seattle, WA 98101" -250823,Bose SoundSport Headphones,1,99.99,09/28/19 19:07,"672 North St, Dallas, TX 75001" -250824,Lightning Charging Cable,2,14.95,09/07/19 14:53,"344 Willow St, Seattle, WA 98101" -250825,Apple Airpods Headphones,1,150,09/30/19 16:16,"325 10th St, Seattle, WA 98101" -250826,AAA Batteries (4-pack),1,2.99,09/03/19 12:14,"162 8th St, San Francisco, CA 94016" -250827,iPhone,1,700,09/12/19 00:11,"892 11th St, Seattle, WA 98101" -250828,Apple Airpods Headphones,1,150,09/11/19 13:56,"419 14th St, San Francisco, CA 94016" -250829,USB-C Charging Cable,1,11.95,09/16/19 19:59,"369 Cedar St, Boston, MA 02215" -250830,AA Batteries (4-pack),2,3.84,09/28/19 12:39,"528 South St, Boston, MA 02215" -,,,,, -250831,Lightning Charging Cable,1,14.95,09/19/19 22:25,"275 Madison St, San Francisco, CA 94016" -250832,iPhone,1,700,09/08/19 08:16,"750 Willow St, New York City, NY 10001" -250832,Lightning Charging Cable,2,14.95,09/08/19 08:16,"750 Willow St, New York City, NY 10001" -250833,34in Ultrawide Monitor,1,379.99,09/17/19 23:56,"869 Adams St, Los Angeles, CA 90001" -250834,LG Washing Machine,1,600.0,09/09/19 12:24,"263 Jefferson St, New York City, NY 10001" -250835,Bose SoundSport Headphones,1,99.99,09/12/19 09:56,"805 Jefferson St, New York City, NY 10001" -250836,Lightning Charging Cable,1,14.95,09/03/19 16:19,"21 Elm St, San Francisco, CA 94016" -250837,Google Phone,1,600,09/28/19 14:51,"97 Highland St, Boston, MA 02215" -250837,USB-C Charging Cable,1,11.95,09/28/19 14:51,"97 Highland St, Boston, MA 02215" -250838,27in 4K Gaming Monitor,1,389.99,09/21/19 09:51,"791 Jefferson St, New York City, NY 10001" -250839,AAA Batteries (4-pack),2,2.99,09/15/19 11:04,"515 Lake St, Los Angeles, CA 90001" -250840,27in 4K Gaming Monitor,1,389.99,09/02/19 17:15,"129 9th St, Boston, MA 02215" -250841,AAA Batteries (4-pack),1,2.99,09/05/19 15:46,"835 West St, Seattle, WA 98101" -250842,Apple Airpods Headphones,1,150,09/15/19 16:49,"797 River St, Boston, MA 02215" -250843,USB-C Charging Cable,1,11.95,09/27/19 01:39,"397 Sunset St, Austin, TX 73301" -250844,Lightning Charging Cable,1,14.95,09/19/19 21:11,"443 West St, Dallas, TX 75001" -250845,Bose SoundSport Headphones,1,99.99,09/14/19 01:36,"793 Jefferson St, San Francisco, CA 94016" -250846,Lightning Charging Cable,1,14.95,09/03/19 12:38,"781 8th St, New York City, NY 10001" -250847,Wired Headphones,1,11.99,09/26/19 19:55,"335 7th St, Austin, TX 73301" -250848,AA Batteries (4-pack),1,3.84,09/12/19 14:26,"60 Center St, Atlanta, GA 30301" -250849,34in Ultrawide Monitor,1,379.99,09/27/19 18:54,"552 South St, Atlanta, GA 30301" -250850,Google Phone,1,600,09/15/19 15:29,"186 Lincoln St, Los Angeles, CA 90001" -250850,USB-C Charging Cable,1,11.95,09/15/19 15:29,"186 Lincoln St, Los Angeles, CA 90001" -250851,AA Batteries (4-pack),1,3.84,09/27/19 20:24,"753 Elm St, Los Angeles, CA 90001" -250852,AA Batteries (4-pack),4,3.84,09/19/19 22:35,"473 Main St, Atlanta, GA 30301" -250853,USB-C Charging Cable,1,11.95,09/06/19 19:48,"483 Jefferson St, Los Angeles, CA 90001" -250854,LG Washing Machine,1,600.0,09/29/19 16:59,"47 7th St, San Francisco, CA 94016" -250855,AA Batteries (4-pack),2,3.84,09/13/19 09:20,"456 Spruce St, Portland, OR 97035" -250856,USB-C Charging Cable,1,11.95,09/28/19 20:03,"392 Johnson St, San Francisco, CA 94016" -250857,Apple Airpods Headphones,1,150,09/09/19 18:21,"850 12th St, Boston, MA 02215" -250858,USB-C Charging Cable,1,11.95,09/20/19 15:33,"947 Lake St, Austin, TX 73301" -250859,Wired Headphones,2,11.99,09/03/19 09:23,"174 River St, Dallas, TX 75001" -250860,Lightning Charging Cable,1,14.95,09/27/19 15:41,"944 Lincoln St, San Francisco, CA 94016" -250861,34in Ultrawide Monitor,1,379.99,09/15/19 10:48,"693 Hickory St, San Francisco, CA 94016" -250862,AA Batteries (4-pack),2,3.84,09/20/19 22:59,"42 Wilson St, Portland, OR 97035" -250863,Lightning Charging Cable,1,14.95,09/27/19 17:34,"50 8th St, Los Angeles, CA 90001" -250864,USB-C Charging Cable,1,11.95,09/13/19 10:52,"627 Maple St, Dallas, TX 75001" -250865,27in 4K Gaming Monitor,1,389.99,09/01/19 17:18,"581 11th St, Dallas, TX 75001" -250866,USB-C Charging Cable,1,11.95,09/21/19 10:50,"957 Cherry St, Los Angeles, CA 90001" -250867,ThinkPad Laptop,1,999.99,09/13/19 09:49,"878 7th St, Boston, MA 02215" -250868,AA Batteries (4-pack),1,3.84,09/06/19 18:42,"856 Pine St, San Francisco, CA 94016" -250869,Macbook Pro Laptop,1,1700,09/14/19 15:16,"660 Pine St, San Francisco, CA 94016" -250870,Google Phone,1,600,09/20/19 14:50,"589 Jefferson St, Seattle, WA 98101" -250871,Google Phone,1,600,09/13/19 11:09,"369 Ridge St, Seattle, WA 98101" -250872,USB-C Charging Cable,2,11.95,09/13/19 11:30,"13 9th St, San Francisco, CA 94016" -250873,Macbook Pro Laptop,1,1700,09/25/19 11:20,"576 Maple St, Dallas, TX 75001" -250874,AA Batteries (4-pack),1,3.84,09/24/19 09:05,"841 Park St, New York City, NY 10001" -250875,Wired Headphones,3,11.99,09/13/19 20:07,"791 Wilson St, San Francisco, CA 94016" -250876,Lightning Charging Cable,1,14.95,09/19/19 14:44,"508 6th St, Boston, MA 02215" -250877,27in FHD Monitor,1,149.99,09/23/19 17:01,"854 Dogwood St, San Francisco, CA 94016" -250878,iPhone,1,700,09/12/19 00:10,"509 Dogwood St, Los Angeles, CA 90001" -250879,Wired Headphones,1,11.99,09/26/19 16:19,"946 1st St, Atlanta, GA 30301" -250880,Lightning Charging Cable,1,14.95,09/28/19 13:22,"868 Maple St, New York City, NY 10001" -250881,Apple Airpods Headphones,1,150,09/03/19 13:01,"771 8th St, Austin, TX 73301" -250882,Flatscreen TV,1,300,09/22/19 20:50,"207 Jefferson St, San Francisco, CA 94016" -250883,AA Batteries (4-pack),1,3.84,09/19/19 06:47,"413 Church St, Los Angeles, CA 90001" -250884,Lightning Charging Cable,1,14.95,09/16/19 17:02,"342 Jackson St, San Francisco, CA 94016" -250885,Apple Airpods Headphones,1,150,09/30/19 13:42,"564 South St, Dallas, TX 75001" -250886,iPhone,1,700,09/03/19 20:07,"566 North St, San Francisco, CA 94016" -250886,Lightning Charging Cable,1,14.95,09/03/19 20:07,"566 North St, San Francisco, CA 94016" -250887,USB-C Charging Cable,1,11.95,09/14/19 20:17,"389 Elm St, Seattle, WA 98101" -250888,USB-C Charging Cable,1,11.95,09/09/19 17:46,"776 Spruce St, New York City, NY 10001" -250889,27in FHD Monitor,1,149.99,09/08/19 11:57,"763 North St, Austin, TX 73301" -250890,Apple Airpods Headphones,1,150,09/04/19 19:49,"447 4th St, Austin, TX 73301" -250891,Wired Headphones,1,11.99,09/02/19 23:22,"811 10th St, San Francisco, CA 94016" -250892,Wired Headphones,1,11.99,09/21/19 22:08,"339 Main St, New York City, NY 10001" -250893,iPhone,1,700,09/14/19 11:37,"381 Church St, Seattle, WA 98101" -250894,AAA Batteries (4-pack),3,2.99,09/18/19 14:34,"75 Hickory St, Portland, OR 97035" -250895,34in Ultrawide Monitor,1,379.99,09/28/19 14:03,"60 Lakeview St, Atlanta, GA 30301" -250896,Lightning Charging Cable,1,14.95,09/26/19 14:08,"429 Church St, Los Angeles, CA 90001" -250897,27in 4K Gaming Monitor,1,389.99,09/13/19 18:00,"124 Church St, Atlanta, GA 30301" -250898,Wired Headphones,1,11.99,09/09/19 15:19,"730 South St, Seattle, WA 98101" -250899,Apple Airpods Headphones,1,150,09/07/19 19:43,"572 13th St, New York City, NY 10001" -250900,USB-C Charging Cable,1,11.95,09/20/19 09:36,"907 Highland St, Boston, MA 02215" -250901,USB-C Charging Cable,1,11.95,09/02/19 01:23,"278 Highland St, Los Angeles, CA 90001" -250902,Lightning Charging Cable,1,14.95,09/26/19 09:19,"124 Sunset St, Austin, TX 73301" -250903,Bose SoundSport Headphones,1,99.99,09/13/19 13:27,"496 12th St, New York City, NY 10001" -250904,Lightning Charging Cable,1,14.95,09/02/19 20:09,"105 Lincoln St, Los Angeles, CA 90001" -250905,Bose SoundSport Headphones,1,99.99,09/19/19 21:35,"900 Ridge St, Portland, OR 97035" -250906,AAA Batteries (4-pack),1,2.99,09/17/19 10:34,"703 Jefferson St, Los Angeles, CA 90001" -250907,USB-C Charging Cable,1,11.95,09/30/19 19:30,"631 Lincoln St, Austin, TX 73301" -250908,Wired Headphones,1,11.99,09/26/19 12:30,"353 Meadow St, Dallas, TX 75001" -250909,Apple Airpods Headphones,1,150,09/17/19 18:37,"467 Cedar St, Seattle, WA 98101" -250910,AA Batteries (4-pack),2,3.84,09/25/19 14:50,"376 Forest St, Boston, MA 02215" -250911,Wired Headphones,1,11.99,09/17/19 10:17,"867 Meadow St, Los Angeles, CA 90001" -250912,Flatscreen TV,1,300,09/24/19 23:27,"563 2nd St, Austin, TX 73301" -250913,Bose SoundSport Headphones,1,99.99,09/02/19 15:08,"219 North St, Seattle, WA 98101" -250914,Google Phone,1,600,09/29/19 18:56,"560 Walnut St, Portland, OR 97035" -250914,Bose SoundSport Headphones,1,99.99,09/29/19 18:56,"560 Walnut St, Portland, OR 97035" -250915,Bose SoundSport Headphones,1,99.99,09/04/19 07:27,"714 13th St, San Francisco, CA 94016" -250916,USB-C Charging Cable,1,11.95,09/23/19 15:55,"878 Elm St, Austin, TX 73301" -250917,AA Batteries (4-pack),1,3.84,09/13/19 17:51,"109 2nd St, San Francisco, CA 94016" -250918,AAA Batteries (4-pack),3,2.99,09/09/19 19:24,"364 Cedar St, San Francisco, CA 94016" -250919,Flatscreen TV,1,300,09/21/19 17:21,"696 Main St, Austin, TX 73301" -250920,USB-C Charging Cable,1,11.95,09/20/19 12:04,"263 Meadow St, Portland, OR 97035" -250921,iPhone,1,700,09/18/19 07:43,"155 12th St, Boston, MA 02215" -250922,AAA Batteries (4-pack),1,2.99,09/13/19 10:03,"488 Park St, Portland, OR 97035" -250923,AA Batteries (4-pack),1,3.84,09/21/19 11:18,"94 Pine St, San Francisco, CA 94016" -250924,Wired Headphones,1,11.99,09/13/19 07:24,"331 Willow St, Los Angeles, CA 90001" -250925,20in Monitor,1,109.99,09/25/19 10:31,"977 12th St, Boston, MA 02215" -250926,AAA Batteries (4-pack),1,2.99,09/05/19 18:27,"610 2nd St, Dallas, TX 75001" -250927,20in Monitor,1,109.99,09/02/19 22:27,"282 South St, Boston, MA 02215" -250928,USB-C Charging Cable,1,11.95,09/12/19 15:49,"529 Madison St, San Francisco, CA 94016" -250929,AAA Batteries (4-pack),2,2.99,09/15/19 18:24,"792 Cedar St, San Francisco, CA 94016" -250930,Apple Airpods Headphones,1,150,09/03/19 13:04,"271 Madison St, Seattle, WA 98101" -250931,AAA Batteries (4-pack),1,2.99,09/19/19 05:37,"194 Highland St, Portland, OR 97035" -250932,Vareebadd Phone,1,400,09/15/19 09:54,"645 5th St, Los Angeles, CA 90001" -250933,Lightning Charging Cable,1,14.95,09/28/19 17:41,"110 Hickory St, San Francisco, CA 94016" -250934,Apple Airpods Headphones,1,150,09/28/19 11:41,"775 5th St, Boston, MA 02215" -250935,USB-C Charging Cable,1,11.95,09/04/19 16:00,"583 Cedar St, Seattle, WA 98101" -250936,Lightning Charging Cable,1,14.95,09/26/19 23:47,"10 Ridge St, Austin, TX 73301" -250937,AA Batteries (4-pack),2,3.84,09/28/19 20:09,"437 Hill St, Boston, MA 02215" -250938,AAA Batteries (4-pack),2,2.99,09/12/19 21:35,"752 Lake St, Seattle, WA 98101" -250939,iPhone,1,700,09/24/19 20:17,"645 Meadow St, Austin, TX 73301" -250940,Lightning Charging Cable,1,14.95,09/11/19 22:14,"600 6th St, Atlanta, GA 30301" -250941,34in Ultrawide Monitor,1,379.99,09/24/19 23:56,"682 Spruce St, Dallas, TX 75001" -250942,AAA Batteries (4-pack),1,2.99,09/25/19 15:45,"256 Wilson St, Boston, MA 02215" -250943,Lightning Charging Cable,2,14.95,09/11/19 18:19,"686 12th St, Boston, MA 02215" -250944,Lightning Charging Cable,1,14.95,09/04/19 21:49,"178 Wilson St, Seattle, WA 98101" -250945,USB-C Charging Cable,1,11.95,09/25/19 15:23,"425 Forest St, San Francisco, CA 94016" -250946,Bose SoundSport Headphones,1,99.99,09/13/19 16:10,"293 Lincoln St, Atlanta, GA 30301" -250947,Wired Headphones,1,11.99,09/13/19 02:40,"309 Meadow St, Atlanta, GA 30301" -250948,USB-C Charging Cable,1,11.95,09/18/19 10:07,"971 Center St, Los Angeles, CA 90001" -250949,Apple Airpods Headphones,1,150,09/02/19 15:44,"410 7th St, Boston, MA 02215" -250950,Wired Headphones,1,11.99,09/30/19 01:10,"156 Spruce St, Portland, OR 97035" -250951,AA Batteries (4-pack),1,3.84,09/19/19 10:57,"911 9th St, New York City, NY 10001" -250952,Flatscreen TV,1,300,09/17/19 17:05,"370 Chestnut St, Boston, MA 02215" -250953,AA Batteries (4-pack),1,3.84,09/09/19 10:18,"23 Forest St, Boston, MA 02215" -250954,AA Batteries (4-pack),2,3.84,09/27/19 16:58,"753 West St, Austin, TX 73301" -250955,LG Washing Machine,1,600.0,09/15/19 17:55,"633 7th St, San Francisco, CA 94016" -250956,Apple Airpods Headphones,1,150,09/12/19 11:50,"882 River St, Portland, OR 97035" -250957,AA Batteries (4-pack),1,3.84,09/29/19 14:42,"417 Cedar St, Dallas, TX 75001" -250958,AAA Batteries (4-pack),2,2.99,09/25/19 18:40,"84 11th St, San Francisco, CA 94016" -250959,20in Monitor,1,109.99,09/02/19 12:59,"767 Sunset St, New York City, NY 10001" -250960,USB-C Charging Cable,1,11.95,09/14/19 22:53,"458 12th St, Dallas, TX 75001" -250961,USB-C Charging Cable,1,11.95,09/18/19 15:38,"664 Walnut St, Austin, TX 73301" -250962,AAA Batteries (4-pack),1,2.99,09/23/19 18:33,"581 14th St, San Francisco, CA 94016" -250963,AAA Batteries (4-pack),1,2.99,09/02/19 19:30,"674 Pine St, Boston, MA 02215" -250964,AA Batteries (4-pack),1,3.84,09/04/19 14:50,"113 Wilson St, Austin, TX 73301" -250965,27in FHD Monitor,1,149.99,09/17/19 14:38,"895 11th St, San Francisco, CA 94016" -250966,Lightning Charging Cable,1,14.95,09/17/19 20:43,"427 1st St, Los Angeles, CA 90001" -250967,USB-C Charging Cable,1,11.95,09/04/19 14:03,"572 Jackson St, Los Angeles, CA 90001" -250968,Wired Headphones,1,11.99,09/29/19 19:53,"212 Jefferson St, Dallas, TX 75001" -250969,AAA Batteries (4-pack),4,2.99,09/15/19 21:08,"708 North St, New York City, NY 10001" -250970,Vareebadd Phone,1,400,09/08/19 11:40,"638 Wilson St, Portland, OR 97035" -250971,AA Batteries (4-pack),2,3.84,09/15/19 14:53,"54 South St, Los Angeles, CA 90001" -250972,20in Monitor,1,109.99,09/23/19 18:08,"774 Hickory St, Boston, MA 02215" -250973,AAA Batteries (4-pack),1,2.99,09/24/19 09:33,"294 Walnut St, Dallas, TX 75001" -250974,iPhone,1,700,09/15/19 21:50,"99 14th St, Los Angeles, CA 90001" -250975,AAA Batteries (4-pack),2,2.99,09/28/19 16:10,"606 Washington St, Dallas, TX 75001" -250975,34in Ultrawide Monitor,1,379.99,09/28/19 16:10,"606 Washington St, Dallas, TX 75001" -250976,Wired Headphones,1,11.99,09/14/19 21:47,"775 9th St, Boston, MA 02215" -250977,USB-C Charging Cable,1,11.95,09/22/19 18:53,"671 13th St, Dallas, TX 75001" -250978,Apple Airpods Headphones,1,150,09/22/19 16:36,"156 Lake St, San Francisco, CA 94016" -250978,AA Batteries (4-pack),1,3.84,09/22/19 16:36,"156 Lake St, San Francisco, CA 94016" -250979,20in Monitor,1,109.99,09/18/19 12:38,"782 Pine St, Los Angeles, CA 90001" -250980,ThinkPad Laptop,1,999.99,09/12/19 14:41,"214 North St, Boston, MA 02215" -250981,USB-C Charging Cable,1,11.95,09/11/19 01:20,"444 Lakeview St, Los Angeles, CA 90001" -250982,27in FHD Monitor,1,149.99,09/02/19 22:08,"655 Cedar St, Boston, MA 02215" -250982,34in Ultrawide Monitor,1,379.99,09/02/19 22:08,"655 Cedar St, Boston, MA 02215" -250983,Lightning Charging Cable,1,14.95,09/02/19 20:04,"71 Hickory St, San Francisco, CA 94016" -250984,Apple Airpods Headphones,1,150,09/25/19 11:05,"158 Chestnut St, Austin, TX 73301" -250985,Lightning Charging Cable,1,14.95,09/07/19 15:22,"6 9th St, Boston, MA 02215" -250986,Lightning Charging Cable,1,14.95,09/25/19 19:24,"104 13th St, Seattle, WA 98101" -250987,AA Batteries (4-pack),1,3.84,09/22/19 18:42,"546 Lincoln St, Portland, OR 97035" -250988,27in 4K Gaming Monitor,1,389.99,09/05/19 18:18,"92 Main St, Los Angeles, CA 90001" -250989,AA Batteries (4-pack),1,3.84,09/21/19 09:13,"806 7th St, New York City, NY 10001" -250990,27in FHD Monitor,1,149.99,09/06/19 21:06,"193 9th St, Los Angeles, CA 90001" -250991,AAA Batteries (4-pack),1,2.99,09/30/19 14:05,"582 12th St, Dallas, TX 75001" -250992,Lightning Charging Cable,1,14.95,09/23/19 16:51,"517 Cedar St, Boston, MA 02215" -250993,ThinkPad Laptop,1,999.99,09/15/19 08:25,"694 Madison St, Portland, ME 04101" -250994,AA Batteries (4-pack),1,3.84,09/28/19 07:33,"728 Chestnut St, San Francisco, CA 94016" -250995,USB-C Charging Cable,1,11.95,09/21/19 08:33,"969 Meadow St, Atlanta, GA 30301" -250996,Bose SoundSport Headphones,1,99.99,09/27/19 00:29,"334 Sunset St, San Francisco, CA 94016" -250997,AA Batteries (4-pack),2,3.84,09/15/19 13:15,"577 10th St, San Francisco, CA 94016" -250998,27in FHD Monitor,1,149.99,09/07/19 18:53,"655 Pine St, Boston, MA 02215" -250999,Bose SoundSport Headphones,1,99.99,09/17/19 19:34,"158 Washington St, Dallas, TX 75001" -251000,USB-C Charging Cable,2,11.95,09/20/19 10:03,"126 Walnut St, Dallas, TX 75001" -251001,Lightning Charging Cable,1,14.95,09/08/19 21:42,"685 10th St, Atlanta, GA 30301" -251002,iPhone,1,700,09/21/19 17:25,"269 2nd St, New York City, NY 10001" -251003,Apple Airpods Headphones,1,150,09/06/19 10:00,"816 Center St, Portland, OR 97035" -251004,27in FHD Monitor,1,149.99,09/09/19 22:26,"126 12th St, San Francisco, CA 94016" -251005,Bose SoundSport Headphones,1,99.99,09/15/19 16:01,"552 Meadow St, Seattle, WA 98101" -251006,Bose SoundSport Headphones,1,99.99,09/10/19 14:47,"360 Madison St, Dallas, TX 75001" -251007,AA Batteries (4-pack),2,3.84,09/13/19 22:10,"593 Johnson St, Dallas, TX 75001" -251008,Apple Airpods Headphones,1,150,09/18/19 22:36,"764 11th St, San Francisco, CA 94016" -251009,Wired Headphones,2,11.99,09/07/19 06:48,"828 Washington St, Seattle, WA 98101" -251010,AA Batteries (4-pack),2,3.84,09/24/19 08:57,"11 Ridge St, Seattle, WA 98101" -251011,Wired Headphones,1,11.99,09/23/19 15:36,"847 Lakeview St, New York City, NY 10001" -251012,Vareebadd Phone,1,400,09/04/19 21:19,"283 6th St, Dallas, TX 75001" -251013,Lightning Charging Cable,1,14.95,09/29/19 13:21,"19 Chestnut St, Boston, MA 02215" -251014,27in FHD Monitor,1,149.99,09/19/19 13:08,"371 Spruce St, Los Angeles, CA 90001" -251015,27in 4K Gaming Monitor,1,389.99,09/07/19 11:06,"720 4th St, San Francisco, CA 94016" -251016,20in Monitor,1,109.99,09/02/19 09:46,"866 Spruce St, New York City, NY 10001" -251017,Bose SoundSport Headphones,1,99.99,09/28/19 10:27,"634 Elm St, Austin, TX 73301" -251018,AA Batteries (4-pack),3,3.84,09/14/19 12:15,"333 Willow St, San Francisco, CA 94016" -251019,USB-C Charging Cable,1,11.95,09/29/19 12:57,"560 River St, Atlanta, GA 30301" -251020,USB-C Charging Cable,1,11.95,09/19/19 09:32,"894 14th St, Dallas, TX 75001" -251021,AA Batteries (4-pack),3,3.84,09/27/19 14:49,"62 Park St, San Francisco, CA 94016" -251022,USB-C Charging Cable,1,11.95,09/24/19 12:26,"107 10th St, Boston, MA 02215" -251023,AA Batteries (4-pack),1,3.84,09/12/19 15:35,"815 Wilson St, Boston, MA 02215" -251024,Apple Airpods Headphones,1,150,09/03/19 11:39,"59 Dogwood St, San Francisco, CA 94016" -251025,Lightning Charging Cable,1,14.95,09/24/19 08:23,"880 7th St, San Francisco, CA 94016" -251026,USB-C Charging Cable,1,11.95,09/22/19 13:54,"753 Hill St, Dallas, TX 75001" -251027,Google Phone,1,600,09/01/19 14:22,"889 Sunset St, Austin, TX 73301" -251028,ThinkPad Laptop,1,999.99,09/21/19 07:43,"422 1st St, Los Angeles, CA 90001" -251029,Macbook Pro Laptop,1,1700,09/13/19 14:04,"138 13th St, Dallas, TX 75001" -251030,AAA Batteries (4-pack),1,2.99,09/01/19 12:33,"906 Cedar St, San Francisco, CA 94016" -251031,Apple Airpods Headphones,1,150,09/29/19 12:25,"458 Madison St, San Francisco, CA 94016" -251032,34in Ultrawide Monitor,1,379.99,09/15/19 11:10,"172 Highland St, Portland, OR 97035" -251033,Apple Airpods Headphones,1,150,09/12/19 20:48,"322 Center St, New York City, NY 10001" -251034,Apple Airpods Headphones,1,150,09/15/19 11:25,"70 Cherry St, San Francisco, CA 94016" -251035,AA Batteries (4-pack),1,3.84,09/24/19 08:43,"305 Elm St, Boston, MA 02215" -251036,Vareebadd Phone,1,400,09/20/19 19:34,"561 8th St, Dallas, TX 75001" -251037,Bose SoundSport Headphones,1,99.99,09/05/19 21:39,"213 Washington St, San Francisco, CA 94016" -251038,Bose SoundSport Headphones,1,99.99,09/28/19 19:40,"806 Sunset St, San Francisco, CA 94016" -251039,Wired Headphones,1,11.99,09/11/19 23:38,"584 Highland St, New York City, NY 10001" -251040,USB-C Charging Cable,1,11.95,09/12/19 12:50,"518 Chestnut St, Los Angeles, CA 90001" -251041,ThinkPad Laptop,1,999.99,09/26/19 09:11,"151 South St, Dallas, TX 75001" -251042,AAA Batteries (4-pack),1,2.99,09/14/19 19:46,"886 Chestnut St, New York City, NY 10001" -251043,AA Batteries (4-pack),1,3.84,09/22/19 10:58,"223 Pine St, Boston, MA 02215" -251044,Apple Airpods Headphones,1,150,09/10/19 17:18,"133 Hill St, Dallas, TX 75001" -251045,iPhone,1,700,09/10/19 21:36,"19 13th St, Los Angeles, CA 90001" -251046,Bose SoundSport Headphones,1,99.99,09/05/19 19:56,"957 Madison St, Dallas, TX 75001" -251047,USB-C Charging Cable,1,11.95,09/06/19 15:46,"528 Ridge St, Los Angeles, CA 90001" -251048,Lightning Charging Cable,1,14.95,09/05/19 09:14,"15 2nd St, Boston, MA 02215" -251049,USB-C Charging Cable,1,11.95,09/06/19 10:44,"312 Church St, Atlanta, GA 30301" -251050,Apple Airpods Headphones,1,150,09/05/19 18:56,"731 9th St, Seattle, WA 98101" -251051,Apple Airpods Headphones,1,150,09/06/19 11:20,"883 2nd St, Atlanta, GA 30301" -251052,Bose SoundSport Headphones,1,99.99,09/08/19 10:18,"416 Park St, Atlanta, GA 30301" -251053,USB-C Charging Cable,1,11.95,09/13/19 18:14,"274 12th St, San Francisco, CA 94016" -251054,AAA Batteries (4-pack),1,2.99,09/29/19 20:04,"752 West St, Los Angeles, CA 90001" -251055,ThinkPad Laptop,1,999.99,09/18/19 00:41,"916 Cherry St, San Francisco, CA 94016" -251056,AA Batteries (4-pack),1,3.84,09/29/19 13:50,"956 9th St, Boston, MA 02215" -251057,Lightning Charging Cable,1,14.95,09/26/19 14:20,"16 Walnut St, Seattle, WA 98101" -251058,34in Ultrawide Monitor,1,379.99,09/26/19 12:46,"90 11th St, Seattle, WA 98101" -251059,Bose SoundSport Headphones,1,99.99,09/16/19 22:36,"252 8th St, Los Angeles, CA 90001" -251060,20in Monitor,1,109.99,09/17/19 13:09,"884 South St, Los Angeles, CA 90001" -251061,Lightning Charging Cable,1,14.95,09/03/19 00:29,"648 Meadow St, San Francisco, CA 94016" -251062,AA Batteries (4-pack),1,3.84,09/01/19 14:14,"109 River St, Atlanta, GA 30301" -251063,Wired Headphones,1,11.99,09/22/19 20:56,"238 Madison St, San Francisco, CA 94016" -251064,Macbook Pro Laptop,1,1700,09/02/19 17:26,"81 Hill St, Los Angeles, CA 90001" -251065,Macbook Pro Laptop,1,1700,09/16/19 11:17,"800 9th St, Portland, OR 97035" -251066,Bose SoundSport Headphones,1,99.99,09/29/19 10:15,"826 Meadow St, Los Angeles, CA 90001" -251067,USB-C Charging Cable,2,11.95,09/04/19 21:19,"698 13th St, San Francisco, CA 94016" -251068,Apple Airpods Headphones,1,150,09/02/19 17:35,"463 North St, San Francisco, CA 94016" -251069,AA Batteries (4-pack),1,3.84,09/16/19 21:06,"453 Meadow St, San Francisco, CA 94016" -251070,Wired Headphones,2,11.99,09/22/19 02:31,"105 Forest St, Dallas, TX 75001" -251071,AAA Batteries (4-pack),1,2.99,09/14/19 21:17,"346 11th St, Portland, OR 97035" -251072,Bose SoundSport Headphones,1,99.99,09/14/19 13:31,"786 14th St, Atlanta, GA 30301" -251073,AAA Batteries (4-pack),2,2.99,09/18/19 18:49,"165 Hickory St, Dallas, TX 75001" -251074,Bose SoundSport Headphones,1,99.99,09/01/19 12:31,"510 Walnut St, Dallas, TX 75001" -251075,AAA Batteries (4-pack),1,2.99,09/01/19 19:25,"591 Madison St, San Francisco, CA 94016" -251076,27in FHD Monitor,1,149.99,09/10/19 12:38,"863 North St, Seattle, WA 98101" -251077,Wired Headphones,1,11.99,09/20/19 14:12,"599 Willow St, San Francisco, CA 94016" -251078,AA Batteries (4-pack),1,3.84,09/14/19 12:35,"588 Center St, Atlanta, GA 30301" -251079,LG Washing Machine,1,600.0,09/19/19 09:22,"343 Adams St, San Francisco, CA 94016" -251080,Wired Headphones,1,11.99,09/08/19 23:17,"996 12th St, Boston, MA 02215" -251081,Lightning Charging Cable,2,14.95,09/21/19 12:19,"679 Elm St, Dallas, TX 75001" -251082,USB-C Charging Cable,1,11.95,09/28/19 17:22,"117 North St, New York City, NY 10001" -251083,AA Batteries (4-pack),2,3.84,09/28/19 15:34,"714 Ridge St, Seattle, WA 98101" -251084,Google Phone,1,600,09/02/19 15:03,"926 Forest St, Seattle, WA 98101" -251084,USB-C Charging Cable,2,11.95,09/02/19 15:03,"926 Forest St, Seattle, WA 98101" -251085,USB-C Charging Cable,1,11.95,09/12/19 11:13,"902 Chestnut St, Dallas, TX 75001" -251086,27in FHD Monitor,1,149.99,09/25/19 23:33,"964 Cedar St, Los Angeles, CA 90001" -251087,34in Ultrawide Monitor,1,379.99,09/27/19 01:25,"309 Meadow St, San Francisco, CA 94016" -251088,Wired Headphones,1,11.99,09/20/19 21:53,"837 Church St, Boston, MA 02215" -251089,34in Ultrawide Monitor,1,379.99,09/19/19 20:15,"770 Hickory St, Atlanta, GA 30301" -251090,USB-C Charging Cable,1,11.95,09/03/19 17:32,"601 Lincoln St, Seattle, WA 98101" -251091,Lightning Charging Cable,1,14.95,09/08/19 16:24,"131 6th St, Los Angeles, CA 90001" -251092,34in Ultrawide Monitor,1,379.99,09/15/19 09:18,"985 South St, New York City, NY 10001" -251093,34in Ultrawide Monitor,1,379.99,09/18/19 17:28,"726 11th St, Boston, MA 02215" -251094,AAA Batteries (4-pack),2,2.99,09/22/19 09:06,"454 Jefferson St, Austin, TX 73301" -251095,27in FHD Monitor,1,149.99,09/03/19 12:23,"180 10th St, Los Angeles, CA 90001" -251096,27in FHD Monitor,1,149.99,09/11/19 15:22,"424 Highland St, Los Angeles, CA 90001" -251097,Lightning Charging Cable,1,14.95,09/08/19 11:51,"748 11th St, Los Angeles, CA 90001" -251098,Google Phone,1,600,09/19/19 19:15,"410 Sunset St, Boston, MA 02215" -251099,27in 4K Gaming Monitor,1,389.99,09/18/19 18:52,"636 Meadow St, San Francisco, CA 94016" -251100,Wired Headphones,1,11.99,09/08/19 17:16,"109 Park St, Seattle, WA 98101" -251101,USB-C Charging Cable,1,11.95,09/25/19 13:47,"272 Park St, Boston, MA 02215" -251102,Lightning Charging Cable,1,14.95,09/30/19 17:14,"126 7th St, San Francisco, CA 94016" -251103,Wired Headphones,1,11.99,09/10/19 17:39,"316 Lincoln St, San Francisco, CA 94016" -251104,Bose SoundSport Headphones,1,99.99,09/20/19 12:42,"825 Lakeview St, Los Angeles, CA 90001" -251105,ThinkPad Laptop,1,999.99,09/27/19 15:39,"934 Hickory St, San Francisco, CA 94016" -251106,34in Ultrawide Monitor,1,379.99,09/25/19 20:09,"407 Jackson St, Boston, MA 02215" -251107,Wired Headphones,2,11.99,09/12/19 17:30,"678 Cherry St, San Francisco, CA 94016" -251108,Lightning Charging Cable,1,14.95,09/05/19 08:29,"36 4th St, Austin, TX 73301" -251109,USB-C Charging Cable,1,11.95,09/17/19 12:18,"388 13th St, San Francisco, CA 94016" -251110,Macbook Pro Laptop,1,1700,09/30/19 22:18,"704 13th St, San Francisco, CA 94016" -251111,Macbook Pro Laptop,1,1700,09/05/19 19:36,"218 Meadow St, San Francisco, CA 94016" -251112,Vareebadd Phone,1,400,09/10/19 09:07,"974 Walnut St, San Francisco, CA 94016" -251113,AAA Batteries (4-pack),2,2.99,09/18/19 14:21,"574 8th St, Los Angeles, CA 90001" -251114,AA Batteries (4-pack),2,3.84,09/19/19 18:36,"310 Highland St, Seattle, WA 98101" -251115,Lightning Charging Cable,1,14.95,09/12/19 15:06,"312 Church St, Portland, ME 04101" -251116,Flatscreen TV,1,300,09/05/19 16:57,"464 Forest St, San Francisco, CA 94016" -251117,Lightning Charging Cable,1,14.95,09/12/19 16:43,"200 Meadow St, Dallas, TX 75001" -251118,27in 4K Gaming Monitor,1,389.99,09/04/19 06:19,"516 Church St, Dallas, TX 75001" -251119,Lightning Charging Cable,1,14.95,09/12/19 14:56,"295 North St, Portland, OR 97035" -251120,Wired Headphones,1,11.99,09/17/19 17:13,"996 Main St, Los Angeles, CA 90001" -251121,AAA Batteries (4-pack),1,2.99,09/27/19 17:42,"862 Hill St, Portland, OR 97035" -251122,Lightning Charging Cable,1,14.95,09/24/19 00:22,"781 Walnut St, San Francisco, CA 94016" -251123,Apple Airpods Headphones,1,150,09/16/19 15:55,"674 Johnson St, San Francisco, CA 94016" -251124,Wired Headphones,1,11.99,09/24/19 08:34,"742 Cedar St, Dallas, TX 75001" -251125,27in FHD Monitor,1,149.99,09/15/19 01:17,"489 1st St, Los Angeles, CA 90001" -251126,ThinkPad Laptop,1,999.99,09/21/19 19:18,"684 6th St, San Francisco, CA 94016" -251127,Google Phone,1,600,09/01/19 12:38,"627 Center St, Los Angeles, CA 90001" -251128,Lightning Charging Cable,1,14.95,09/29/19 16:47,"392 Adams St, Dallas, TX 75001" -251129,Bose SoundSport Headphones,1,99.99,09/06/19 17:33,"632 South St, Dallas, TX 75001" -251130,USB-C Charging Cable,1,11.95,09/08/19 18:55,"736 12th St, Boston, MA 02215" -251131,USB-C Charging Cable,1,11.95,09/03/19 10:01,"608 1st St, San Francisco, CA 94016" -251132,AAA Batteries (4-pack),1,2.99,09/26/19 06:30,"406 Lincoln St, San Francisco, CA 94016" -251132,Flatscreen TV,1,300,09/26/19 06:30,"406 Lincoln St, San Francisco, CA 94016" -251133,Apple Airpods Headphones,1,150,09/15/19 21:27,"476 Ridge St, New York City, NY 10001" -251134,iPhone,1,700,09/16/19 12:44,"281 Center St, Boston, MA 02215" -251134,Lightning Charging Cable,1,14.95,09/16/19 12:44,"281 Center St, Boston, MA 02215" -251135,AAA Batteries (4-pack),3,2.99,09/10/19 09:17,"246 Washington St, Los Angeles, CA 90001" -251136,Bose SoundSport Headphones,1,99.99,09/06/19 13:00,"763 10th St, Los Angeles, CA 90001" -251137,AAA Batteries (4-pack),1,2.99,09/26/19 19:47,"547 West St, New York City, NY 10001" -251138,AA Batteries (4-pack),1,3.84,09/26/19 14:42,"85 Center St, San Francisco, CA 94016" -251139,iPhone,1,700,09/27/19 18:21,"929 Ridge St, Los Angeles, CA 90001" -251140,Bose SoundSport Headphones,1,99.99,09/15/19 18:13,"839 Ridge St, Austin, TX 73301" -251141,Lightning Charging Cable,1,14.95,09/21/19 15:10,"93 10th St, San Francisco, CA 94016" -251142,Apple Airpods Headphones,1,150,09/24/19 09:07,"686 Sunset St, San Francisco, CA 94016" -251143,USB-C Charging Cable,1,11.95,09/11/19 23:09,"326 Willow St, Austin, TX 73301" -251144,AAA Batteries (4-pack),2,2.99,09/29/19 15:11,"1 Sunset St, New York City, NY 10001" -251145,Wired Headphones,1,11.99,09/05/19 10:26,"725 Spruce St, San Francisco, CA 94016" -251146,27in 4K Gaming Monitor,1,389.99,09/16/19 13:33,"74 North St, Los Angeles, CA 90001" -251147,Bose SoundSport Headphones,1,99.99,09/11/19 20:42,"208 13th St, Boston, MA 02215" -251148,Wired Headphones,1,11.99,09/02/19 10:52,"704 5th St, San Francisco, CA 94016" -251149,AAA Batteries (4-pack),1,2.99,09/02/19 09:48,"783 Center St, Dallas, TX 75001" -251150,Bose SoundSport Headphones,1,99.99,09/21/19 10:00,"46 Park St, New York City, NY 10001" -251151,Wired Headphones,1,11.99,09/26/19 17:54,"487 Jefferson St, Los Angeles, CA 90001" -251152,iPhone,1,700,09/16/19 15:53,"861 Madison St, Los Angeles, CA 90001" -251153,34in Ultrawide Monitor,1,379.99,09/16/19 10:12,"624 Jefferson St, Los Angeles, CA 90001" -251154,Bose SoundSport Headphones,1,99.99,09/15/19 09:37,"225 5th St, Los Angeles, CA 90001" -251155,Flatscreen TV,1,300,09/01/19 19:52,"510 5th St, San Francisco, CA 94016" -251156,USB-C Charging Cable,1,11.95,09/03/19 20:52,"394 5th St, Boston, MA 02215" -251157,AAA Batteries (4-pack),1,2.99,09/06/19 15:21,"472 Main St, Atlanta, GA 30301" -251158,27in 4K Gaming Monitor,1,389.99,09/11/19 19:24,"66 Forest St, New York City, NY 10001" -251159,USB-C Charging Cable,1,11.95,09/30/19 13:30,"72 Center St, Seattle, WA 98101" -251160,AA Batteries (4-pack),1,3.84,09/29/19 20:22,"709 South St, Austin, TX 73301" -251161,34in Ultrawide Monitor,1,379.99,09/13/19 22:56,"438 Sunset St, Boston, MA 02215" -251162,USB-C Charging Cable,1,11.95,09/26/19 22:03,"991 11th St, Dallas, TX 75001" -251163,Bose SoundSport Headphones,1,99.99,09/23/19 11:41,"931 Ridge St, Seattle, WA 98101" -251164,20in Monitor,1,109.99,09/28/19 11:46,"998 Church St, Seattle, WA 98101" -251165,AAA Batteries (4-pack),1,2.99,09/29/19 18:20,"947 8th St, Boston, MA 02215" -251166,AAA Batteries (4-pack),1,2.99,09/10/19 18:49,"163 4th St, Seattle, WA 98101" -251167,27in FHD Monitor,1,149.99,09/15/19 07:57,"660 Adams St, New York City, NY 10001" -251168,Lightning Charging Cable,1,14.95,09/22/19 20:21,"104 Cedar St, Atlanta, GA 30301" -251169,AAA Batteries (4-pack),1,2.99,09/02/19 18:51,"476 11th St, San Francisco, CA 94016" -251170,AA Batteries (4-pack),1,3.84,09/14/19 16:48,"203 Pine St, San Francisco, CA 94016" -251171,USB-C Charging Cable,2,11.95,09/15/19 08:45,"923 1st St, Atlanta, GA 30301" -251172,Bose SoundSport Headphones,1,99.99,09/12/19 16:28,"36 Willow St, Los Angeles, CA 90001" -251173,AAA Batteries (4-pack),2,2.99,09/26/19 08:33,"351 River St, New York City, NY 10001" -251174,USB-C Charging Cable,1,11.95,09/11/19 00:49,"896 2nd St, San Francisco, CA 94016" -251174,27in 4K Gaming Monitor,1,389.99,09/11/19 00:49,"896 2nd St, San Francisco, CA 94016" -251175,AA Batteries (4-pack),1,3.84,09/07/19 23:41,"853 Lincoln St, New York City, NY 10001" -251176,Apple Airpods Headphones,1,150,09/02/19 15:01,"851 Dogwood St, Atlanta, GA 30301" -251177,Bose SoundSport Headphones,1,99.99,09/25/19 14:06,"86 South St, Dallas, TX 75001" -251178,AA Batteries (4-pack),2,3.84,09/06/19 15:20,"263 Cedar St, Austin, TX 73301" -251179,Lightning Charging Cable,1,14.95,09/22/19 12:33,"857 Johnson St, Boston, MA 02215" -251180,Lightning Charging Cable,1,14.95,09/22/19 07:11,"983 14th St, New York City, NY 10001" -251180,Wired Headphones,1,11.99,09/22/19 07:11,"983 14th St, New York City, NY 10001" -251181,Bose SoundSport Headphones,1,99.99,09/11/19 18:22,"506 Meadow St, New York City, NY 10001" -251182,Apple Airpods Headphones,1,150,09/08/19 19:54,"354 Johnson St, Los Angeles, CA 90001" -251183,27in FHD Monitor,1,149.99,09/14/19 12:04,"263 North St, Dallas, TX 75001" -251184,20in Monitor,1,109.99,09/29/19 11:47,"997 Highland St, Los Angeles, CA 90001" -251185,USB-C Charging Cable,1,11.95,09/08/19 20:13,"680 North St, Austin, TX 73301" -251186,27in 4K Gaming Monitor,1,389.99,09/28/19 15:01,"244 Center St, Dallas, TX 75001" -251187,AA Batteries (4-pack),3,3.84,09/21/19 21:37,"241 Center St, Los Angeles, CA 90001" -251188,AA Batteries (4-pack),1,3.84,09/02/19 12:07,"87 7th St, Boston, MA 02215" -251189,Wired Headphones,1,11.99,09/26/19 09:35,"722 Maple St, Boston, MA 02215" -251190,AA Batteries (4-pack),1,3.84,09/25/19 11:18,"684 Wilson St, San Francisco, CA 94016" -251191,Bose SoundSport Headphones,1,99.99,09/07/19 09:48,"188 1st St, New York City, NY 10001" -251192,Lightning Charging Cable,1,14.95,09/15/19 11:51,"824 Adams St, Atlanta, GA 30301" -251193,Google Phone,1,600,09/09/19 14:58,"379 11th St, San Francisco, CA 94016" -251194,AAA Batteries (4-pack),1,2.99,09/18/19 17:22,"670 Main St, Boston, MA 02215" -251195,27in FHD Monitor,1,149.99,09/07/19 20:55,"160 5th St, San Francisco, CA 94016" -251196,AA Batteries (4-pack),2,3.84,09/19/19 13:49,"281 Highland St, New York City, NY 10001" -251197,AA Batteries (4-pack),1,3.84,09/05/19 22:32,"133 River St, Los Angeles, CA 90001" -251198,USB-C Charging Cable,1,11.95,09/23/19 18:36,"159 Forest St, Dallas, TX 75001" -251199,AAA Batteries (4-pack),2,2.99,09/28/19 13:39,"575 Dogwood St, Seattle, WA 98101" -251200,AAA Batteries (4-pack),1,2.99,09/07/19 12:07,"926 Lincoln St, Atlanta, GA 30301" -251201,Wired Headphones,1,11.99,09/20/19 20:48,"542 North St, Portland, OR 97035" -251202,Wired Headphones,1,11.99,09/06/19 17:58,"971 Adams St, New York City, NY 10001" -251203,Lightning Charging Cable,1,14.95,09/18/19 20:47,"76 Jefferson St, San Francisco, CA 94016" -251204,Google Phone,1,600,09/13/19 20:02,"197 Center St, San Francisco, CA 94016" -251205,Bose SoundSport Headphones,1,99.99,09/12/19 13:55,"456 Chestnut St, Los Angeles, CA 90001" -251206,AA Batteries (4-pack),2,3.84,09/04/19 10:27,"478 South St, San Francisco, CA 94016" -251207,Wired Headphones,1,11.99,09/29/19 22:11,"395 Lincoln St, Los Angeles, CA 90001" -251208,Apple Airpods Headphones,1,150,09/24/19 15:19,"290 14th St, Portland, OR 97035" -251209,AAA Batteries (4-pack),1,2.99,09/07/19 13:11,"48 12th St, Austin, TX 73301" -251210,ThinkPad Laptop,1,999.99,09/09/19 11:09,"119 Lakeview St, New York City, NY 10001" -251211,Wired Headphones,1,11.99,09/19/19 12:07,"127 Sunset St, Boston, MA 02215" -251212,Bose SoundSport Headphones,1,99.99,09/08/19 15:28,"855 Park St, Atlanta, GA 30301" -251213,AAA Batteries (4-pack),1,2.99,09/13/19 14:59,"359 Wilson St, Austin, TX 73301" -251214,USB-C Charging Cable,1,11.95,09/06/19 17:25,"899 Wilson St, Boston, MA 02215" -251215,USB-C Charging Cable,1,11.95,09/27/19 14:40,"742 Adams St, San Francisco, CA 94016" -251216,20in Monitor,1,109.99,09/03/19 08:51,"814 Walnut St, New York City, NY 10001" -251217,Lightning Charging Cable,1,14.95,09/28/19 20:48,"397 Lake St, New York City, NY 10001" -251218,Bose SoundSport Headphones,1,99.99,09/21/19 16:42,"756 Park St, San Francisco, CA 94016" -251219,AA Batteries (4-pack),1,3.84,09/28/19 22:41,"883 South St, Portland, OR 97035" -251220,Wired Headphones,2,11.99,09/17/19 05:49,"153 Meadow St, Portland, ME 04101" -251220,Wired Headphones,1,11.99,09/17/19 05:49,"153 Meadow St, Portland, ME 04101" -251221,Wired Headphones,1,11.99,09/14/19 13:31,"938 8th St, Los Angeles, CA 90001" -251222,AA Batteries (4-pack),1,3.84,09/26/19 00:51,"755 West St, Dallas, TX 75001" -251223,AAA Batteries (4-pack),3,2.99,09/21/19 09:44,"584 Spruce St, Dallas, TX 75001" -251224,Lightning Charging Cable,1,14.95,09/11/19 14:39,"336 2nd St, New York City, NY 10001" -251225,AA Batteries (4-pack),1,3.84,09/21/19 10:32,"528 Jackson St, San Francisco, CA 94016" -251226,Google Phone,1,600,09/07/19 02:09,"999 Lakeview St, Austin, TX 73301" -251226,USB-C Charging Cable,1,11.95,09/07/19 02:09,"999 Lakeview St, Austin, TX 73301" -251227,AAA Batteries (4-pack),1,2.99,09/01/19 14:41,"613 Maple St, San Francisco, CA 94016" -251228,AAA Batteries (4-pack),2,2.99,09/17/19 08:40,"255 Lakeview St, Austin, TX 73301" -251229,AAA Batteries (4-pack),1,2.99,09/27/19 17:45,"488 North St, San Francisco, CA 94016" -251230,USB-C Charging Cable,1,11.95,09/19/19 12:04,"916 8th St, San Francisco, CA 94016" -251231,USB-C Charging Cable,1,11.95,09/23/19 14:52,"24 Lakeview St, New York City, NY 10001" -251232,34in Ultrawide Monitor,1,379.99,09/15/19 19:17,"513 Maple St, Austin, TX 73301" -251233,AA Batteries (4-pack),3,3.84,09/19/19 13:25,"225 14th St, New York City, NY 10001" -251234,Apple Airpods Headphones,1,150,09/03/19 19:20,"434 Center St, Boston, MA 02215" -251235,AAA Batteries (4-pack),1,2.99,09/19/19 10:54,"47 12th St, Los Angeles, CA 90001" -251236,Wired Headphones,1,11.99,09/26/19 14:12,"561 Spruce St, Atlanta, GA 30301" -251237,Lightning Charging Cable,1,14.95,09/02/19 15:21,"615 Lakeview St, Los Angeles, CA 90001" -251238,Bose SoundSport Headphones,1,99.99,09/13/19 12:14,"151 5th St, Atlanta, GA 30301" -251239,AAA Batteries (4-pack),2,2.99,09/23/19 09:34,"509 West St, New York City, NY 10001" -251240,Vareebadd Phone,1,400,09/09/19 19:34,"507 11th St, Seattle, WA 98101" -251240,USB-C Charging Cable,1,11.95,09/09/19 19:34,"507 11th St, Seattle, WA 98101" -251241,Apple Airpods Headphones,1,150,09/04/19 18:24,"837 North St, Los Angeles, CA 90001" -251242,AA Batteries (4-pack),2,3.84,09/05/19 19:09,"847 South St, Atlanta, GA 30301" -251243,Apple Airpods Headphones,1,150,10/01/19 00:09,"854 2nd St, Los Angeles, CA 90001" -251244,USB-C Charging Cable,1,11.95,09/07/19 11:51,"973 Adams St, Seattle, WA 98101" -251245,20in Monitor,1,109.99,09/03/19 19:12,"52 Adams St, Portland, OR 97035" -251246,USB-C Charging Cable,1,11.95,09/10/19 09:05,"524 Jefferson St, San Francisco, CA 94016" -251247,Apple Airpods Headphones,1,150,09/02/19 10:45,"359 South St, Seattle, WA 98101" -251248,27in FHD Monitor,1,149.99,09/24/19 08:23,"204 Wilson St, New York City, NY 10001" -251249,Google Phone,1,600,09/28/19 13:08,"697 Pine St, Portland, OR 97035" -251250,34in Ultrawide Monitor,1,379.99,09/21/19 12:41,"533 2nd St, Los Angeles, CA 90001" -251251,AA Batteries (4-pack),1,3.84,09/28/19 07:38,"420 Madison St, Portland, OR 97035" -251252,Apple Airpods Headphones,1,150,09/29/19 23:59,"836 South St, New York City, NY 10001" -251253,Bose SoundSport Headphones,1,99.99,09/04/19 10:20,"291 Madison St, Seattle, WA 98101" -251254,AA Batteries (4-pack),2,3.84,09/19/19 22:01,"982 Forest St, New York City, NY 10001" -251255,27in FHD Monitor,1,149.99,09/08/19 20:07,"383 Johnson St, San Francisco, CA 94016" -251256,AAA Batteries (4-pack),2,2.99,09/09/19 11:42,"779 Willow St, Seattle, WA 98101" -251257,27in FHD Monitor,1,149.99,09/12/19 14:29,"639 West St, San Francisco, CA 94016" -251258,Lightning Charging Cable,1,14.95,09/04/19 11:48,"171 Cherry St, San Francisco, CA 94016" -251259,27in 4K Gaming Monitor,1,389.99,09/30/19 16:39,"206 Cherry St, Seattle, WA 98101" -251260,27in FHD Monitor,1,149.99,09/20/19 05:31,"974 5th St, Los Angeles, CA 90001" -251261,ThinkPad Laptop,1,999.99,09/03/19 17:40,"569 4th St, Atlanta, GA 30301" -251262,Wired Headphones,1,11.99,09/24/19 10:33,"117 Jefferson St, Los Angeles, CA 90001" -251263,Lightning Charging Cable,1,14.95,09/29/19 22:48,"536 Madison St, San Francisco, CA 94016" -251264,AAA Batteries (4-pack),1,2.99,09/07/19 09:34,"68 Washington St, Los Angeles, CA 90001" -251265,34in Ultrawide Monitor,1,379.99,09/16/19 08:21,"639 Spruce St, San Francisco, CA 94016" -251266,AA Batteries (4-pack),1,3.84,09/01/19 12:12,"989 Lake St, Atlanta, GA 30301" -251267,Wired Headphones,1,11.99,09/30/19 18:09,"255 Chestnut St, Los Angeles, CA 90001" -251268,Apple Airpods Headphones,1,150,09/15/19 11:20,"323 2nd St, San Francisco, CA 94016" -251269,Wired Headphones,1,11.99,09/16/19 21:57,"485 Sunset St, Atlanta, GA 30301" -251270,AAA Batteries (4-pack),1,2.99,09/20/19 19:29,"902 River St, Portland, ME 04101" -251271,27in FHD Monitor,1,149.99,09/04/19 14:29,"476 Dogwood St, Atlanta, GA 30301" -251272,iPhone,1,700,09/17/19 19:46,"780 6th St, Dallas, TX 75001" -251273,Lightning Charging Cable,1,14.95,09/02/19 21:46,"513 Spruce St, New York City, NY 10001" -251274,Wired Headphones,1,11.99,09/04/19 16:17,"253 9th St, San Francisco, CA 94016" -251275,AA Batteries (4-pack),1,3.84,09/13/19 18:06,"176 North St, San Francisco, CA 94016" -251276,ThinkPad Laptop,1,999.99,09/10/19 13:00,"424 Washington St, Portland, OR 97035" -251277,AAA Batteries (4-pack),1,2.99,09/23/19 16:35,"151 Lakeview St, Atlanta, GA 30301" -251278,27in FHD Monitor,1,149.99,09/09/19 01:01,"124 Park St, Austin, TX 73301" -251279,20in Monitor,1,109.99,09/28/19 18:48,"146 Lake St, Austin, TX 73301" -251280,Vareebadd Phone,1,400,09/18/19 14:23,"709 Ridge St, San Francisco, CA 94016" -251280,Bose SoundSport Headphones,1,99.99,09/18/19 14:23,"709 Ridge St, San Francisco, CA 94016" -251281,Wired Headphones,1,11.99,09/10/19 22:42,"995 River St, San Francisco, CA 94016" -251282,USB-C Charging Cable,1,11.95,09/09/19 20:00,"599 Willow St, Los Angeles, CA 90001" -251283,AAA Batteries (4-pack),1,2.99,09/28/19 18:27,"211 Elm St, Portland, ME 04101" -251284,27in 4K Gaming Monitor,1,389.99,09/21/19 06:02,"878 Ridge St, Atlanta, GA 30301" -251285,Apple Airpods Headphones,1,150,09/18/19 12:21,"225 Highland St, San Francisco, CA 94016" -251286,USB-C Charging Cable,1,11.95,09/01/19 13:16,"593 Jackson St, San Francisco, CA 94016" -251287,Bose SoundSport Headphones,1,99.99,09/24/19 08:41,"232 Jefferson St, Los Angeles, CA 90001" -251288,USB-C Charging Cable,1,11.95,09/14/19 12:41,"929 Jackson St, Los Angeles, CA 90001" -251289,Wired Headphones,1,11.99,09/20/19 13:42,"400 Forest St, San Francisco, CA 94016" -251290,Google Phone,1,600,09/28/19 11:24,"180 Jackson St, Seattle, WA 98101" -251291,AA Batteries (4-pack),1,3.84,09/03/19 19:17,"165 Spruce St, Boston, MA 02215" -251292,Google Phone,1,600,09/04/19 02:17,"670 2nd St, Los Angeles, CA 90001" -251293,iPhone,1,700,09/09/19 13:04,"558 North St, Dallas, TX 75001" -251294,USB-C Charging Cable,1,11.95,09/27/19 09:31,"467 Walnut St, Seattle, WA 98101" -251295,34in Ultrawide Monitor,1,379.99,09/05/19 15:11,"63 Wilson St, San Francisco, CA 94016" -251296,Google Phone,1,600,09/17/19 20:27,"624 Highland St, Seattle, WA 98101" -251297,iPhone,1,700,09/13/19 19:25,"390 River St, Portland, OR 97035" -251297,Wired Headphones,1,11.99,09/13/19 19:25,"390 River St, Portland, OR 97035" -251298,Wired Headphones,2,11.99,09/06/19 14:35,"732 River St, Boston, MA 02215" -251299,AA Batteries (4-pack),1,3.84,09/30/19 15:50,"150 River St, Los Angeles, CA 90001" -251300,Lightning Charging Cable,1,14.95,09/02/19 15:23,"608 Dogwood St, Los Angeles, CA 90001" -251301,Lightning Charging Cable,1,14.95,09/22/19 11:13,"833 Hill St, Los Angeles, CA 90001" -251302,AA Batteries (4-pack),1,3.84,09/18/19 15:31,"124 13th St, Seattle, WA 98101" -251303,Macbook Pro Laptop,1,1700,09/09/19 09:52,"25 Lake St, New York City, NY 10001" -251304,34in Ultrawide Monitor,1,379.99,09/12/19 19:08,"829 Cedar St, Austin, TX 73301" -251305,Wired Headphones,1,11.99,09/22/19 10:42,"609 Main St, San Francisco, CA 94016" -251306,Apple Airpods Headphones,1,150,09/21/19 20:02,"776 Pine St, Boston, MA 02215" -251307,27in FHD Monitor,1,149.99,09/01/19 13:45,"492 Sunset St, Boston, MA 02215" -251308,Bose SoundSport Headphones,1,99.99,09/17/19 03:15,"999 Sunset St, Boston, MA 02215" -251309,Lightning Charging Cable,2,14.95,09/16/19 13:25,"980 West St, San Francisco, CA 94016" -251310,27in FHD Monitor,1,149.99,09/24/19 13:50,"47 Center St, Los Angeles, CA 90001" -251311,Wired Headphones,1,11.99,09/09/19 12:20,"400 Washington St, Portland, OR 97035" -251312,27in FHD Monitor,1,149.99,09/15/19 18:02,"384 Lake St, Seattle, WA 98101" -251313,AAA Batteries (4-pack),1,2.99,09/07/19 20:56,"395 Lake St, Boston, MA 02215" -251314,Lightning Charging Cable,1,14.95,09/29/19 21:05,"851 2nd St, New York City, NY 10001" -251315,Apple Airpods Headphones,1,150,09/05/19 14:32,"601 2nd St, San Francisco, CA 94016" -251316,USB-C Charging Cable,1,11.95,09/12/19 18:47,"91 Maple St, New York City, NY 10001" -251317,ThinkPad Laptop,1,999.99,09/14/19 13:54,"95 Sunset St, Seattle, WA 98101" -251318,AA Batteries (4-pack),1,3.84,09/02/19 11:25,"225 5th St, Portland, OR 97035" -251319,ThinkPad Laptop,1,999.99,09/06/19 20:14,"431 Jackson St, San Francisco, CA 94016" -251320,Lightning Charging Cable,1,14.95,09/30/19 22:03,"996 11th St, Los Angeles, CA 90001" -251321,Lightning Charging Cable,1,14.95,09/12/19 19:31,"619 Jefferson St, San Francisco, CA 94016" -251322,Apple Airpods Headphones,1,150,09/02/19 08:23,"264 8th St, Boston, MA 02215" -251323,27in FHD Monitor,1,149.99,09/26/19 22:05,"821 Adams St, Boston, MA 02215" -251324,Google Phone,1,600,09/02/19 17:09,"617 2nd St, Seattle, WA 98101" -251325,20in Monitor,1,109.99,09/06/19 23:23,"989 1st St, San Francisco, CA 94016" -251326,Lightning Charging Cable,1,14.95,09/21/19 07:56,"561 6th St, Los Angeles, CA 90001" -251327,Wired Headphones,2,11.99,09/26/19 22:49,"84 Church St, Austin, TX 73301" -251328,Lightning Charging Cable,1,14.95,09/23/19 18:53,"823 9th St, Boston, MA 02215" -251329,USB-C Charging Cable,1,11.95,09/06/19 11:17,"370 Willow St, Dallas, TX 75001" -251330,Wired Headphones,1,11.99,09/08/19 10:11,"72 2nd St, San Francisco, CA 94016" -251331,Apple Airpods Headphones,1,150,09/13/19 21:01,"813 Main St, San Francisco, CA 94016" -251332,Wired Headphones,1,11.99,09/26/19 20:05,"765 Ridge St, San Francisco, CA 94016" -251332,Lightning Charging Cable,1,14.95,09/26/19 20:05,"765 Ridge St, San Francisco, CA 94016" -251333,Flatscreen TV,1,300,09/15/19 05:50,"626 Forest St, Seattle, WA 98101" -251334,ThinkPad Laptop,1,999.99,09/02/19 20:24,"783 Meadow St, New York City, NY 10001" -251335,Apple Airpods Headphones,1,150,09/02/19 16:18,"92 Center St, San Francisco, CA 94016" -251336,Bose SoundSport Headphones,1,99.99,09/07/19 00:08,"231 Hill St, San Francisco, CA 94016" -251337,AAA Batteries (4-pack),2,2.99,09/07/19 15:15,"705 Highland St, New York City, NY 10001" -251338,Apple Airpods Headphones,1,150,09/11/19 16:39,"794 Center St, Austin, TX 73301" -251339,20in Monitor,1,109.99,09/17/19 08:48,"620 Washington St, Los Angeles, CA 90001" -251340,Apple Airpods Headphones,1,150,09/22/19 15:04,"768 Forest St, New York City, NY 10001" -251341,USB-C Charging Cable,1,11.95,09/18/19 20:06,"334 North St, Portland, OR 97035" -251342,AA Batteries (4-pack),1,3.84,09/09/19 22:59,"87 Lincoln St, Seattle, WA 98101" -251343,ThinkPad Laptop,1,999.99,09/17/19 16:34,"254 Lake St, Seattle, WA 98101" -251344,Apple Airpods Headphones,1,150,09/05/19 14:01,"753 Wilson St, Seattle, WA 98101" -251345,AAA Batteries (4-pack),1,2.99,09/14/19 08:03,"729 5th St, Boston, MA 02215" -251346,Bose SoundSport Headphones,1,99.99,09/25/19 20:20,"527 Main St, Seattle, WA 98101" -251347,AA Batteries (4-pack),1,3.84,09/28/19 20:35,"65 Chestnut St, Atlanta, GA 30301" -251348,Macbook Pro Laptop,1,1700,09/09/19 21:10,"542 12th St, New York City, NY 10001" -251349,USB-C Charging Cable,1,11.95,09/22/19 14:28,"852 Maple St, New York City, NY 10001" -251350,Vareebadd Phone,1,400,09/02/19 09:49,"641 2nd St, New York City, NY 10001" -251350,Wired Headphones,1,11.99,09/02/19 09:49,"641 2nd St, New York City, NY 10001" -251351,Wired Headphones,1,11.99,09/22/19 13:34,"798 14th St, Los Angeles, CA 90001" -251352,Lightning Charging Cable,1,14.95,09/27/19 20:38,"219 4th St, Los Angeles, CA 90001" -251353,Lightning Charging Cable,1,14.95,09/12/19 19:57,"222 Cherry St, Boston, MA 02215" -251354,27in FHD Monitor,1,149.99,09/11/19 19:25,"940 Cherry St, Atlanta, GA 30301" -251355,Vareebadd Phone,1,400,09/11/19 02:59,"554 Lakeview St, San Francisco, CA 94016" -251356,Bose SoundSport Headphones,1,99.99,09/25/19 11:33,"380 11th St, New York City, NY 10001" -251357,27in 4K Gaming Monitor,1,389.99,09/11/19 17:22,"66 Adams St, San Francisco, CA 94016" -251358,Macbook Pro Laptop,1,1700,09/19/19 10:49,"65 Lakeview St, Los Angeles, CA 90001" -251359,Wired Headphones,1,11.99,09/19/19 16:51,"73 Lake St, Boston, MA 02215" -251360,Lightning Charging Cable,1,14.95,09/05/19 12:50,"949 Park St, Dallas, TX 75001" -251361,USB-C Charging Cable,1,11.95,09/10/19 03:59,"455 Adams St, Los Angeles, CA 90001" -251362,AA Batteries (4-pack),1,3.84,09/16/19 12:33,"315 River St, Portland, OR 97035" -251363,AA Batteries (4-pack),2,3.84,09/23/19 13:07,"739 Cedar St, Boston, MA 02215" -251364,Apple Airpods Headphones,1,150,09/11/19 21:37,"927 8th St, Los Angeles, CA 90001" -251365,34in Ultrawide Monitor,1,379.99,09/28/19 15:12,"491 5th St, Dallas, TX 75001" -251366,Google Phone,1,600,09/11/19 18:45,"236 Dogwood St, San Francisco, CA 94016" -251367,USB-C Charging Cable,1,11.95,09/04/19 11:47,"481 South St, Dallas, TX 75001" -251368,USB-C Charging Cable,1,11.95,09/30/19 09:58,"475 7th St, New York City, NY 10001" -251369,Macbook Pro Laptop,1,1700,09/11/19 19:59,"704 Jackson St, Los Angeles, CA 90001" -251370,Wired Headphones,1,11.99,09/03/19 10:45,"671 11th St, Boston, MA 02215" -251371,USB-C Charging Cable,1,11.95,09/14/19 09:04,"790 Wilson St, Austin, TX 73301" -251372,Wired Headphones,1,11.99,09/29/19 08:26,"549 Center St, New York City, NY 10001" -251373,Macbook Pro Laptop,1,1700,09/10/19 04:13,"616 Madison St, New York City, NY 10001" -251374,AA Batteries (4-pack),1,3.84,09/03/19 13:44,"214 11th St, New York City, NY 10001" -251375,Bose SoundSport Headphones,1,99.99,09/29/19 21:05,"181 Main St, Boston, MA 02215" -251376,Apple Airpods Headphones,1,150,09/20/19 12:27,"954 Hickory St, Seattle, WA 98101" -251377,USB-C Charging Cable,1,11.95,09/22/19 20:25,"700 5th St, Dallas, TX 75001" -251378,Bose SoundSport Headphones,1,99.99,09/26/19 17:19,"277 Cedar St, New York City, NY 10001" -251379,Wired Headphones,1,11.99,09/02/19 20:18,"653 Pine St, San Francisco, CA 94016" -251380,Lightning Charging Cable,1,14.95,09/18/19 11:59,"650 Lincoln St, Los Angeles, CA 90001" -251381,Bose SoundSport Headphones,1,99.99,09/20/19 15:01,"658 Sunset St, Boston, MA 02215" -251382,USB-C Charging Cable,2,11.95,09/01/19 18:39,"871 Washington St, Boston, MA 02215" -251383,27in FHD Monitor,1,149.99,09/08/19 15:56,"968 8th St, Dallas, TX 75001" -251384,AAA Batteries (4-pack),2,2.99,09/07/19 22:48,"376 Pine St, Atlanta, GA 30301" -251385,Google Phone,1,600,09/26/19 18:19,"130 Washington St, Seattle, WA 98101" -251386,AAA Batteries (4-pack),1,2.99,09/21/19 14:53,"367 Church St, Boston, MA 02215" -251387,AAA Batteries (4-pack),1,2.99,09/29/19 18:14,"60 13th St, Atlanta, GA 30301" -251388,AAA Batteries (4-pack),1,2.99,09/10/19 21:13,"660 Wilson St, Atlanta, GA 30301" -251389,Apple Airpods Headphones,1,150,09/26/19 21:54,"127 Willow St, Atlanta, GA 30301" -251390,AAA Batteries (4-pack),2,2.99,09/24/19 13:18,"608 Johnson St, Los Angeles, CA 90001" -251391,AA Batteries (4-pack),3,3.84,09/26/19 22:13,"991 Meadow St, San Francisco, CA 94016" -251392,iPhone,1,700,09/15/19 17:51,"816 Lincoln St, Boston, MA 02215" -251393,27in FHD Monitor,1,149.99,09/21/19 21:05,"853 Park St, San Francisco, CA 94016" -251394,Wired Headphones,2,11.99,09/27/19 09:33,"720 Ridge St, New York City, NY 10001" -251395,Wired Headphones,1,11.99,09/11/19 11:27,"11 Willow St, Atlanta, GA 30301" -251396,27in 4K Gaming Monitor,1,389.99,09/08/19 16:22,"779 6th St, San Francisco, CA 94016" -251397,AA Batteries (4-pack),1,3.84,09/03/19 11:43,"727 Jefferson St, Portland, OR 97035" -251398,USB-C Charging Cable,1,11.95,09/05/19 23:23,"624 Meadow St, Dallas, TX 75001" -251399,27in FHD Monitor,1,149.99,09/16/19 18:12,"545 River St, Boston, MA 02215" -251400,Apple Airpods Headphones,1,150,09/06/19 19:50,"776 Ridge St, Dallas, TX 75001" -251401,USB-C Charging Cable,1,11.95,09/28/19 09:20,"249 Lakeview St, Seattle, WA 98101" -251402,USB-C Charging Cable,2,11.95,09/23/19 21:36,"842 6th St, New York City, NY 10001" -251403,Google Phone,1,600,09/03/19 16:36,"117 Adams St, New York City, NY 10001" -251403,USB-C Charging Cable,1,11.95,09/03/19 16:36,"117 Adams St, New York City, NY 10001" -251404,USB-C Charging Cable,1,11.95,09/04/19 12:00,"50 Walnut St, Atlanta, GA 30301" -251405,AAA Batteries (4-pack),3,2.99,09/06/19 10:35,"912 Hill St, New York City, NY 10001" -251406,ThinkPad Laptop,1,999.99,09/01/19 10:10,"886 Center St, New York City, NY 10001" -251407,Lightning Charging Cable,2,14.95,09/15/19 18:30,"277 Jackson St, San Francisco, CA 94016" -251408,USB-C Charging Cable,1,11.95,09/25/19 00:12,"43 Jefferson St, Atlanta, GA 30301" -251409,USB-C Charging Cable,1,11.95,09/08/19 21:30,"542 Madison St, San Francisco, CA 94016" -251410,AAA Batteries (4-pack),1,2.99,09/14/19 23:35,"818 Washington St, Dallas, TX 75001" -251411,AA Batteries (4-pack),1,3.84,09/19/19 22:14,"924 Pine St, Los Angeles, CA 90001" -251412,iPhone,1,700,09/25/19 23:24,"550 Spruce St, Los Angeles, CA 90001" -251413,Lightning Charging Cable,1,14.95,09/06/19 19:08,"191 6th St, Los Angeles, CA 90001" -251414,34in Ultrawide Monitor,1,379.99,09/02/19 13:35,"113 Madison St, Portland, OR 97035" -251415,AAA Batteries (4-pack),1,2.99,09/12/19 11:54,"322 Hickory St, Portland, OR 97035" -251416,Apple Airpods Headphones,1,150,09/11/19 20:07,"432 9th St, Los Angeles, CA 90001" -251417,27in 4K Gaming Monitor,1,389.99,09/27/19 21:28,"380 River St, Portland, OR 97035" -251418,Apple Airpods Headphones,1,150,09/06/19 21:11,"966 2nd St, San Francisco, CA 94016" -251419,USB-C Charging Cable,1,11.95,09/27/19 21:16,"576 Church St, Seattle, WA 98101" -251420,27in 4K Gaming Monitor,1,389.99,09/15/19 07:58,"184 9th St, San Francisco, CA 94016" -251421,Wired Headphones,1,11.99,09/30/19 19:05,"935 Highland St, San Francisco, CA 94016" -251422,AAA Batteries (4-pack),2,2.99,09/06/19 15:46,"523 Forest St, Dallas, TX 75001" -251423,USB-C Charging Cable,1,11.95,09/03/19 15:04,"610 Johnson St, Boston, MA 02215" -251424,20in Monitor,1,109.99,09/01/19 06:14,"649 Sunset St, Portland, OR 97035" -251425,Apple Airpods Headphones,1,150,09/13/19 22:03,"598 13th St, Atlanta, GA 30301" -251426,ThinkPad Laptop,1,999.99,09/16/19 11:43,"949 6th St, San Francisco, CA 94016" -251427,AAA Batteries (4-pack),1,2.99,09/16/19 10:33,"808 Jefferson St, Austin, TX 73301" -251428,Lightning Charging Cable,1,14.95,09/17/19 02:08,"348 Hill St, San Francisco, CA 94016" -251428,LG Washing Machine,1,600.0,09/17/19 02:08,"348 Hill St, San Francisco, CA 94016" -251429,34in Ultrawide Monitor,1,379.99,09/27/19 15:18,"782 Highland St, Dallas, TX 75001" -251430,AAA Batteries (4-pack),2,2.99,09/09/19 13:37,"201 4th St, Boston, MA 02215" -251431,USB-C Charging Cable,1,11.95,09/09/19 11:48,"756 Walnut St, Atlanta, GA 30301" -251432,AA Batteries (4-pack),1,3.84,09/03/19 10:53,"681 Walnut St, San Francisco, CA 94016" -251433,AAA Batteries (4-pack),1,2.99,09/03/19 16:58,"427 Lincoln St, Los Angeles, CA 90001" -251434,Bose SoundSport Headphones,1,99.99,09/01/19 12:42,"445 Pine St, Los Angeles, CA 90001" -251435,AA Batteries (4-pack),1,3.84,09/22/19 20:57,"401 River St, Seattle, WA 98101" -251436,Wired Headphones,1,11.99,09/18/19 18:42,"768 Ridge St, San Francisco, CA 94016" -251437,USB-C Charging Cable,1,11.95,09/22/19 14:23,"105 Adams St, New York City, NY 10001" -251438,Apple Airpods Headphones,1,150,09/27/19 08:14,"362 8th St, New York City, NY 10001" -251439,Google Phone,1,600,09/27/19 15:42,"961 Johnson St, Boston, MA 02215" -251440,Wired Headphones,1,11.99,09/23/19 18:29,"640 Lincoln St, Los Angeles, CA 90001" -251441,Wired Headphones,1,11.99,09/21/19 17:46,"652 Wilson St, Boston, MA 02215" -251442,Lightning Charging Cable,1,14.95,09/18/19 17:24,"433 North St, Seattle, WA 98101" -251443,AAA Batteries (4-pack),1,2.99,09/19/19 13:51,"552 11th St, Seattle, WA 98101" -251444,Apple Airpods Headphones,1,150,09/11/19 16:15,"940 Jackson St, Los Angeles, CA 90001" -251445,Bose SoundSport Headphones,1,99.99,09/15/19 01:58,"548 Ridge St, San Francisco, CA 94016" -251446,Lightning Charging Cable,1,14.95,09/07/19 19:12,"508 Meadow St, Boston, MA 02215" -251447,Lightning Charging Cable,1,14.95,09/29/19 09:48,"560 1st St, Dallas, TX 75001" -251448,Bose SoundSport Headphones,1,99.99,09/01/19 09:08,"519 Forest St, Austin, TX 73301" -251449,AA Batteries (4-pack),3,3.84,09/24/19 19:52,"851 Park St, Austin, TX 73301" -251450,Lightning Charging Cable,1,14.95,09/15/19 17:14,"212 River St, San Francisco, CA 94016" -251451,Bose SoundSport Headphones,1,99.99,09/02/19 11:03,"806 10th St, Atlanta, GA 30301" -251452,Flatscreen TV,1,300,09/28/19 08:29,"244 Highland St, Atlanta, GA 30301" -251453,Macbook Pro Laptop,1,1700,09/10/19 18:54,"310 Chestnut St, Dallas, TX 75001" -251454,Apple Airpods Headphones,1,150,09/12/19 12:04,"520 Pine St, Dallas, TX 75001" -251455,Apple Airpods Headphones,1,150,09/29/19 08:57,"576 Elm St, Los Angeles, CA 90001" -251456,AA Batteries (4-pack),2,3.84,09/02/19 11:56,"556 North St, New York City, NY 10001" -251457,AA Batteries (4-pack),1,3.84,09/29/19 19:40,"565 Highland St, Dallas, TX 75001" -251458,Google Phone,1,600,09/13/19 23:20,"484 Meadow St, Los Angeles, CA 90001" -251459,Lightning Charging Cable,1,14.95,09/20/19 08:26,"462 Wilson St, Dallas, TX 75001" -251460,Wired Headphones,1,11.99,09/13/19 01:45,"355 10th St, Seattle, WA 98101" -251461,AAA Batteries (4-pack),1,2.99,09/13/19 23:53,"830 Lake St, San Francisco, CA 94016" -251462,27in FHD Monitor,1,149.99,09/18/19 13:10,"33 Forest St, Atlanta, GA 30301" -251463,Apple Airpods Headphones,1,150,09/07/19 19:39,"496 Chestnut St, New York City, NY 10001" -251464,USB-C Charging Cable,1,11.95,09/09/19 18:01,"777 1st St, Seattle, WA 98101" -251465,Google Phone,1,600,09/30/19 16:50,"307 Jefferson St, Boston, MA 02215" -251466,AAA Batteries (4-pack),1,2.99,09/17/19 07:25,"872 Sunset St, New York City, NY 10001" -251467,AA Batteries (4-pack),2,3.84,09/21/19 11:52,"533 1st St, Los Angeles, CA 90001" -251467,ThinkPad Laptop,1,999.99,09/21/19 11:52,"533 1st St, Los Angeles, CA 90001" -251468,Bose SoundSport Headphones,1,99.99,09/19/19 00:04,"71 4th St, Seattle, WA 98101" -251469,Apple Airpods Headphones,1,150,09/11/19 11:48,"831 Center St, Dallas, TX 75001" -251470,Lightning Charging Cable,1,14.95,09/20/19 18:51,"544 Walnut St, San Francisco, CA 94016" -251471,Apple Airpods Headphones,1,150,09/19/19 23:22,"33 Cherry St, San Francisco, CA 94016" -251472,iPhone,1,700,09/15/19 13:54,"853 Madison St, Austin, TX 73301" -251472,Wired Headphones,1,11.99,09/15/19 13:54,"853 Madison St, Austin, TX 73301" -251473,AAA Batteries (4-pack),1,2.99,09/26/19 21:58,"752 Pine St, Los Angeles, CA 90001" -251474,Lightning Charging Cable,1,14.95,09/20/19 23:27,"703 Dogwood St, Dallas, TX 75001" -251475,Wired Headphones,1,11.99,09/01/19 23:31,"304 Sunset St, Boston, MA 02215" -251476,Macbook Pro Laptop,1,1700,09/19/19 21:09,"477 Madison St, Los Angeles, CA 90001" -251477,Bose SoundSport Headphones,1,99.99,09/30/19 12:19,"968 2nd St, Austin, TX 73301" -251478,AA Batteries (4-pack),1,3.84,09/02/19 12:51,"84 Spruce St, San Francisco, CA 94016" -251479,Wired Headphones,1,11.99,09/28/19 12:34,"837 7th St, San Francisco, CA 94016" -251480,USB-C Charging Cable,1,11.95,09/28/19 19:14,"872 Jefferson St, Portland, OR 97035" -251481,USB-C Charging Cable,1,11.95,09/12/19 01:48,"460 Park St, Boston, MA 02215" -251482,Bose SoundSport Headphones,1,99.99,09/03/19 14:21,"661 Sunset St, Los Angeles, CA 90001" -251483,AAA Batteries (4-pack),1,2.99,09/16/19 22:13,"605 6th St, Dallas, TX 75001" -251484,Apple Airpods Headphones,1,150,09/16/19 20:04,"876 Chestnut St, New York City, NY 10001" -251485,Wired Headphones,1,11.99,09/23/19 17:22,"208 Sunset St, San Francisco, CA 94016" -251486,iPhone,1,700,09/18/19 20:49,"703 4th St, Dallas, TX 75001" -251487,Wired Headphones,1,11.99,09/02/19 18:54,"934 Sunset St, Los Angeles, CA 90001" -251488,USB-C Charging Cable,1,11.95,09/29/19 15:29,"644 Jefferson St, Boston, MA 02215" -251489,Apple Airpods Headphones,1,150,09/23/19 17:27,"696 Wilson St, Los Angeles, CA 90001" -251490,AAA Batteries (4-pack),1,2.99,09/19/19 12:04,"429 8th St, Los Angeles, CA 90001" -251491,AAA Batteries (4-pack),3,2.99,09/08/19 18:02,"16 Church St, Dallas, TX 75001" -251492,Bose SoundSport Headphones,1,99.99,09/11/19 08:46,"731 Johnson St, Boston, MA 02215" -251493,Wired Headphones,1,11.99,09/05/19 08:50,"423 Spruce St, Boston, MA 02215" -251494,Lightning Charging Cable,1,14.95,09/23/19 21:39,"493 Maple St, Dallas, TX 75001" -251495,AA Batteries (4-pack),2,3.84,09/23/19 20:30,"866 5th St, Seattle, WA 98101" -251496,USB-C Charging Cable,1,11.95,09/18/19 18:01,"885 Lake St, Los Angeles, CA 90001" -251497,27in 4K Gaming Monitor,1,389.99,09/27/19 09:01,"158 Church St, San Francisco, CA 94016" -251498,Bose SoundSport Headphones,1,99.99,09/02/19 14:24,"500 Hickory St, Austin, TX 73301" -251499,USB-C Charging Cable,1,11.95,09/30/19 12:40,"31 River St, Atlanta, GA 30301" -251500,Apple Airpods Headphones,1,150,09/21/19 21:18,"579 Highland St, Boston, MA 02215" -251501,iPhone,1,700,09/25/19 12:50,"272 13th St, New York City, NY 10001" -251502,USB-C Charging Cable,1,11.95,09/21/19 22:37,"969 6th St, Atlanta, GA 30301" -251503,Wired Headphones,1,11.99,09/29/19 16:27,"466 Ridge St, San Francisco, CA 94016" -251504,AA Batteries (4-pack),1,3.84,09/15/19 15:52,"303 Ridge St, Austin, TX 73301" -251505,AAA Batteries (4-pack),1,2.99,09/27/19 20:23,"586 Center St, San Francisco, CA 94016" -251506,iPhone,1,700,09/25/19 18:50,"601 Lakeview St, Seattle, WA 98101" -251506,Lightning Charging Cable,1,14.95,09/25/19 18:50,"601 Lakeview St, Seattle, WA 98101" -251507,USB-C Charging Cable,1,11.95,09/13/19 23:43,"728 Jackson St, Atlanta, GA 30301" -251508,AA Batteries (4-pack),2,3.84,09/09/19 13:13,"603 4th St, San Francisco, CA 94016" -251509,Bose SoundSport Headphones,1,99.99,09/01/19 19:12,"614 1st St, Austin, TX 73301" -251510,USB-C Charging Cable,1,11.95,09/25/19 07:33,"526 Sunset St, San Francisco, CA 94016" -251511,AA Batteries (4-pack),1,3.84,09/17/19 12:42,"18 Chestnut St, Boston, MA 02215" -251512,iPhone,1,700,09/09/19 19:39,"187 Chestnut St, Seattle, WA 98101" -251513,Wired Headphones,1,11.99,09/20/19 12:10,"643 Lake St, Los Angeles, CA 90001" -251514,Lightning Charging Cable,1,14.95,09/19/19 19:09,"273 North St, Seattle, WA 98101" -251515,Bose SoundSport Headphones,1,99.99,09/06/19 13:15,"900 Center St, Boston, MA 02215" -251516,Wired Headphones,1,11.99,09/18/19 11:26,"125 Chestnut St, San Francisco, CA 94016" -251517,Wired Headphones,1,11.99,09/15/19 19:43,"453 Lakeview St, Dallas, TX 75001" -251518,ThinkPad Laptop,1,999.99,09/03/19 00:51,"100 Adams St, Portland, OR 97035" -251519,Wired Headphones,1,11.99,09/07/19 09:00,"856 Lake St, Los Angeles, CA 90001" -251520,Lightning Charging Cable,1,14.95,09/22/19 11:30,"429 6th St, Dallas, TX 75001" -251521,AA Batteries (4-pack),1,3.84,09/16/19 14:24,"145 Hill St, Boston, MA 02215" -251522,Vareebadd Phone,1,400,09/14/19 22:19,"675 Forest St, Austin, TX 73301" -251523,Wired Headphones,1,11.99,09/05/19 17:17,"239 River St, Dallas, TX 75001" -251524,AAA Batteries (4-pack),1,2.99,09/17/19 20:06,"933 6th St, Boston, MA 02215" -251525,20in Monitor,1,109.99,09/18/19 17:47,"690 Lincoln St, Austin, TX 73301" -251525,Lightning Charging Cable,1,14.95,09/18/19 17:47,"690 Lincoln St, Austin, TX 73301" -251526,AAA Batteries (4-pack),1,2.99,09/16/19 21:41,"273 Lakeview St, New York City, NY 10001" -251527,Flatscreen TV,1,300,09/15/19 16:26,"593 Jefferson St, San Francisco, CA 94016" -251528,20in Monitor,1,109.99,09/08/19 11:03,"9 Center St, Dallas, TX 75001" -251529,Lightning Charging Cable,1,14.95,09/11/19 00:04,"190 Ridge St, Los Angeles, CA 90001" -251530,27in FHD Monitor,1,149.99,09/23/19 18:10,"926 Lincoln St, Seattle, WA 98101" -251531,AA Batteries (4-pack),1,3.84,09/23/19 10:49,"588 Center St, Seattle, WA 98101" -251532,Flatscreen TV,1,300,09/17/19 15:11,"268 Willow St, San Francisco, CA 94016" -251533,USB-C Charging Cable,1,11.95,09/14/19 09:36,"8 Highland St, San Francisco, CA 94016" -251534,USB-C Charging Cable,1,11.95,09/30/19 11:10,"437 Cherry St, Los Angeles, CA 90001" -251535,Wired Headphones,1,11.99,09/24/19 21:03,"955 Pine St, San Francisco, CA 94016" -251536,USB-C Charging Cable,1,11.95,09/23/19 16:32,"722 8th St, San Francisco, CA 94016" -251537,AAA Batteries (4-pack),1,2.99,09/11/19 11:36,"505 Johnson St, Atlanta, GA 30301" -251538,AAA Batteries (4-pack),1,2.99,09/26/19 17:57,"469 2nd St, New York City, NY 10001" -251539,AA Batteries (4-pack),2,3.84,09/27/19 07:32,"500 Meadow St, Atlanta, GA 30301" -251540,USB-C Charging Cable,1,11.95,09/26/19 21:16,"873 Sunset St, New York City, NY 10001" -251541,Wired Headphones,1,11.99,09/24/19 12:08,"770 North St, New York City, NY 10001" -251542,Apple Airpods Headphones,1,150,09/28/19 13:17,"434 Wilson St, New York City, NY 10001" -251543,USB-C Charging Cable,1,11.95,09/04/19 13:59,"256 Adams St, Boston, MA 02215" -251544,AAA Batteries (4-pack),1,2.99,09/07/19 11:43,"292 Highland St, Boston, MA 02215" -251545,Bose SoundSport Headphones,1,99.99,09/06/19 14:49,"263 Meadow St, San Francisco, CA 94016" -251546,AAA Batteries (4-pack),1,2.99,09/06/19 19:38,"256 Park St, Austin, TX 73301" -251547,AA Batteries (4-pack),1,3.84,09/18/19 09:00,"692 River St, Boston, MA 02215" -251548,Bose SoundSport Headphones,1,99.99,09/18/19 13:38,"651 Madison St, Dallas, TX 75001" -251549,Wired Headphones,1,11.99,09/18/19 13:42,"796 Center St, San Francisco, CA 94016" -251550,Apple Airpods Headphones,1,150,09/19/19 21:15,"449 Church St, Boston, MA 02215" -251551,Lightning Charging Cable,1,14.95,09/08/19 20:36,"253 14th St, Portland, OR 97035" -251552,Wired Headphones,1,11.99,09/05/19 11:38,"386 Church St, San Francisco, CA 94016" -251553,AA Batteries (4-pack),1,3.84,09/13/19 22:38,"793 10th St, Los Angeles, CA 90001" -251554,iPhone,1,700,09/25/19 12:07,"456 Church St, San Francisco, CA 94016" -251555,Lightning Charging Cable,1,14.95,09/18/19 18:42,"895 Main St, New York City, NY 10001" -251556,Lightning Charging Cable,1,14.95,09/04/19 10:07,"825 Meadow St, Portland, OR 97035" -251557,AA Batteries (4-pack),1,3.84,09/02/19 09:50,"109 Center St, Atlanta, GA 30301" -251558,USB-C Charging Cable,1,11.95,09/14/19 18:13,"130 13th St, Atlanta, GA 30301" -251559,Macbook Pro Laptop,1,1700,09/16/19 17:48,"185 11th St, San Francisco, CA 94016" -251560,AA Batteries (4-pack),1,3.84,09/24/19 09:59,"845 2nd St, Boston, MA 02215" -251561,USB-C Charging Cable,1,11.95,09/17/19 10:14,"76 River St, San Francisco, CA 94016" -251562,Lightning Charging Cable,1,14.95,09/13/19 10:43,"43 Willow St, Boston, MA 02215" -251563,Macbook Pro Laptop,1,1700,09/03/19 14:52,"657 Cherry St, San Francisco, CA 94016" -251564,AA Batteries (4-pack),1,3.84,09/07/19 21:57,"197 Wilson St, San Francisco, CA 94016" -251565,Apple Airpods Headphones,1,150,09/24/19 19:13,"507 Forest St, Portland, OR 97035" -251566,AA Batteries (4-pack),1,3.84,09/15/19 17:18,"17 4th St, Boston, MA 02215" -251567,AAA Batteries (4-pack),1,2.99,09/13/19 22:23,"473 Highland St, Dallas, TX 75001" -251568,AAA Batteries (4-pack),1,2.99,09/13/19 21:02,"332 13th St, San Francisco, CA 94016" -251569,USB-C Charging Cable,1,11.95,09/15/19 21:42,"612 5th St, Atlanta, GA 30301" -251570,Apple Airpods Headphones,1,150,09/25/19 19:45,"344 Forest St, Atlanta, GA 30301" -251571,USB-C Charging Cable,2,11.95,09/28/19 11:14,"408 13th St, Austin, TX 73301" -251572,Vareebadd Phone,1,400,09/21/19 06:53,"754 Adams St, Boston, MA 02215" -251573,Google Phone,1,600,09/08/19 21:48,"467 Adams St, Dallas, TX 75001" -251574,27in FHD Monitor,1,149.99,09/26/19 15:34,"512 Lincoln St, Seattle, WA 98101" -251575,USB-C Charging Cable,1,11.95,09/04/19 21:56,"61 11th St, Austin, TX 73301" -251576,AA Batteries (4-pack),1,3.84,09/04/19 17:29,"482 Johnson St, New York City, NY 10001" -251577,Lightning Charging Cable,1,14.95,09/30/19 19:10,"475 4th St, Dallas, TX 75001" -251578,AA Batteries (4-pack),1,3.84,09/11/19 22:07,"850 South St, Los Angeles, CA 90001" -251579,Macbook Pro Laptop,1,1700,09/11/19 11:25,"275 Willow St, Atlanta, GA 30301" -251580,20in Monitor,1,109.99,09/27/19 20:21,"172 4th St, Los Angeles, CA 90001" -251581,USB-C Charging Cable,1,11.95,09/19/19 13:10,"29 Hill St, New York City, NY 10001" -251582,AA Batteries (4-pack),1,3.84,09/19/19 12:37,"490 Washington St, Boston, MA 02215" -251583,Wired Headphones,1,11.99,09/22/19 15:15,"429 Hill St, San Francisco, CA 94016" -251584,Macbook Pro Laptop,1,1700,09/29/19 20:40,"129 Highland St, Los Angeles, CA 90001" -251585,Apple Airpods Headphones,1,150,09/09/19 12:42,"659 Church St, Atlanta, GA 30301" -251586,ThinkPad Laptop,1,999.99,09/14/19 12:03,"990 Church St, Atlanta, GA 30301" -251587,Google Phone,1,600,09/08/19 21:29,"381 7th St, Los Angeles, CA 90001" -251588,Lightning Charging Cable,2,14.95,09/23/19 19:17,"794 North St, Boston, MA 02215" -251589,Vareebadd Phone,1,400,09/23/19 05:31,"336 Spruce St, New York City, NY 10001" -251590,20in Monitor,1,109.99,09/15/19 05:52,"816 Jackson St, Los Angeles, CA 90001" -251591,Google Phone,1,600,09/17/19 06:37,"154 Park St, New York City, NY 10001" -251592,Bose SoundSport Headphones,1,99.99,09/23/19 19:47,"850 Adams St, Los Angeles, CA 90001" -251593,Apple Airpods Headphones,1,150,09/20/19 20:35,"172 Wilson St, Dallas, TX 75001" -251594,Apple Airpods Headphones,1,150,09/12/19 09:03,"67 Wilson St, Los Angeles, CA 90001" -251595,USB-C Charging Cable,1,11.95,09/20/19 05:33,"908 Lincoln St, San Francisco, CA 94016" -251596,34in Ultrawide Monitor,1,379.99,09/16/19 12:31,"796 Ridge St, Los Angeles, CA 90001" -251597,Lightning Charging Cable,1,14.95,09/02/19 11:06,"1 Main St, Los Angeles, CA 90001" -251598,Bose SoundSport Headphones,1,99.99,09/05/19 17:06,"685 Wilson St, Seattle, WA 98101" -251599,27in FHD Monitor,1,149.99,09/08/19 06:05,"199 Walnut St, Dallas, TX 75001" -251600,LG Washing Machine,1,600.0,09/07/19 17:30,"181 10th St, Los Angeles, CA 90001" -251601,USB-C Charging Cable,1,11.95,09/14/19 12:11,"337 Hickory St, San Francisco, CA 94016" -251602,AAA Batteries (4-pack),1,2.99,09/27/19 17:52,"831 South St, Dallas, TX 75001" -251603,Lightning Charging Cable,1,14.95,09/16/19 12:18,"240 6th St, Dallas, TX 75001" -251604,Wired Headphones,1,11.99,09/05/19 23:08,"892 West St, Portland, ME 04101" -251605,Flatscreen TV,1,300,09/20/19 20:09,"101 Willow St, New York City, NY 10001" -251606,27in FHD Monitor,1,149.99,09/25/19 20:10,"931 Johnson St, New York City, NY 10001" -251607,Lightning Charging Cable,1,14.95,09/08/19 14:12,"750 13th St, San Francisco, CA 94016" -251608,AAA Batteries (4-pack),1,2.99,09/23/19 02:19,"228 2nd St, Los Angeles, CA 90001" -251609,Vareebadd Phone,1,400,09/01/19 21:13,"96 Jackson St, Dallas, TX 75001" -251610,Bose SoundSport Headphones,1,99.99,09/04/19 02:48,"210 2nd St, San Francisco, CA 94016" -,,,,, -251611,Wired Headphones,2,11.99,09/16/19 23:45,"86 Elm St, New York City, NY 10001" -251612,27in FHD Monitor,1,149.99,09/29/19 19:39,"268 Highland St, Los Angeles, CA 90001" -251613,AAA Batteries (4-pack),2,2.99,09/17/19 22:21,"114 6th St, Los Angeles, CA 90001" -251614,Wired Headphones,1,11.99,09/21/19 17:59,"390 Church St, Seattle, WA 98101" -251615,AAA Batteries (4-pack),2,2.99,09/29/19 19:08,"62 6th St, San Francisco, CA 94016" -251616,Apple Airpods Headphones,1,150,09/15/19 17:54,"370 Wilson St, Dallas, TX 75001" -251616,iPhone,1,700,09/15/19 17:54,"370 Wilson St, Dallas, TX 75001" -251617,AA Batteries (4-pack),1,3.84,09/15/19 04:25,"598 Hickory St, San Francisco, CA 94016" -251618,AA Batteries (4-pack),3,3.84,09/14/19 11:40,"73 Willow St, Seattle, WA 98101" -251619,AAA Batteries (4-pack),4,2.99,09/18/19 17:55,"380 12th St, Portland, OR 97035" -251620,AA Batteries (4-pack),1,3.84,09/14/19 17:04,"893 Main St, Austin, TX 73301" -251621,AAA Batteries (4-pack),2,2.99,09/24/19 22:15,"456 Lincoln St, Austin, TX 73301" -251622,Macbook Pro Laptop,1,1700,09/04/19 16:46,"970 2nd St, Atlanta, GA 30301" -251623,Bose SoundSport Headphones,1,99.99,09/19/19 17:26,"337 11th St, Austin, TX 73301" -251624,Flatscreen TV,1,300,09/14/19 22:04,"416 Maple St, Atlanta, GA 30301" -251625,Wired Headphones,1,11.99,09/21/19 12:27,"485 Lake St, San Francisco, CA 94016" -251626,Macbook Pro Laptop,1,1700,09/09/19 08:50,"477 7th St, Los Angeles, CA 90001" -251627,Wired Headphones,1,11.99,09/02/19 00:29,"630 Ridge St, Los Angeles, CA 90001" -251628,Lightning Charging Cable,1,14.95,09/11/19 18:24,"321 Main St, Boston, MA 02215" -251629,iPhone,1,700,09/19/19 22:52,"366 Ridge St, New York City, NY 10001" -251630,Wired Headphones,1,11.99,09/26/19 17:05,"420 Walnut St, Atlanta, GA 30301" -251631,AA Batteries (4-pack),2,3.84,09/30/19 21:46,"135 7th St, Austin, TX 73301" -251632,AAA Batteries (4-pack),1,2.99,09/17/19 15:44,"36 West St, New York City, NY 10001" -251633,USB-C Charging Cable,1,11.95,09/26/19 16:15,"564 1st St, Portland, OR 97035" -251634,Wired Headphones,1,11.99,09/05/19 08:54,"486 13th St, New York City, NY 10001" -251635,34in Ultrawide Monitor,1,379.99,09/19/19 15:11,"582 Ridge St, Atlanta, GA 30301" -251636,USB-C Charging Cable,1,11.95,09/12/19 11:13,"291 Maple St, Atlanta, GA 30301" -251637,Wired Headphones,3,11.99,09/16/19 23:50,"157 12th St, Portland, OR 97035" -251638,34in Ultrawide Monitor,1,379.99,09/27/19 18:51,"820 13th St, New York City, NY 10001" -251639,AAA Batteries (4-pack),1,2.99,09/25/19 11:31,"808 Washington St, Portland, OR 97035" -251640,AAA Batteries (4-pack),2,2.99,09/13/19 17:36,"192 Jackson St, New York City, NY 10001" -251641,USB-C Charging Cable,2,11.95,09/15/19 16:03,"417 Park St, San Francisco, CA 94016" -251642,AA Batteries (4-pack),1,3.84,09/04/19 11:36,"499 Elm St, Boston, MA 02215" -251643,Lightning Charging Cable,1,14.95,09/10/19 22:13,"736 6th St, Los Angeles, CA 90001" -251644,20in Monitor,1,109.99,09/11/19 20:40,"12 5th St, San Francisco, CA 94016" -251645,Bose SoundSport Headphones,1,99.99,09/14/19 20:39,"556 Hickory St, San Francisco, CA 94016" -251646,AAA Batteries (4-pack),1,2.99,09/04/19 14:02,"85 7th St, Boston, MA 02215" -251647,Lightning Charging Cable,1,14.95,09/17/19 20:26,"902 Pine St, New York City, NY 10001" -251648,Wired Headphones,2,11.99,09/03/19 21:48,"39 Jefferson St, Boston, MA 02215" -251649,AAA Batteries (4-pack),1,2.99,09/21/19 08:54,"774 Sunset St, Los Angeles, CA 90001" -251650,iPhone,1,700,09/18/19 12:15,"347 Hickory St, New York City, NY 10001" -251651,Wired Headphones,1,11.99,09/01/19 13:25,"74 12th St, Boston, MA 02215" -251652,AA Batteries (4-pack),1,3.84,09/29/19 00:12,"578 1st St, Dallas, TX 75001" -251653,USB-C Charging Cable,1,11.95,09/24/19 12:39,"993 Washington St, New York City, NY 10001" -251654,AA Batteries (4-pack),2,3.84,09/11/19 12:28,"941 9th St, San Francisco, CA 94016" -251655,20in Monitor,1,109.99,09/25/19 08:37,"728 Maple St, San Francisco, CA 94016" -251656,AA Batteries (4-pack),1,3.84,09/06/19 12:33,"703 Park St, Los Angeles, CA 90001" -251657,USB-C Charging Cable,1,11.95,09/18/19 22:08,"760 Lakeview St, San Francisco, CA 94016" -251658,Bose SoundSport Headphones,1,99.99,09/21/19 07:08,"825 North St, Los Angeles, CA 90001" -251659,USB-C Charging Cable,1,11.95,09/24/19 12:42,"450 Wilson St, Austin, TX 73301" -251660,USB-C Charging Cable,1,11.95,09/27/19 20:11,"98 Elm St, San Francisco, CA 94016" -251661,27in FHD Monitor,1,149.99,09/30/19 06:48,"521 Hickory St, Boston, MA 02215" -251662,AAA Batteries (4-pack),1,2.99,09/01/19 20:02,"578 Willow St, New York City, NY 10001" -251663,Google Phone,1,600,09/12/19 18:30,"837 Wilson St, Dallas, TX 75001" -251664,34in Ultrawide Monitor,1,379.99,09/11/19 14:14,"871 6th St, San Francisco, CA 94016" -251665,AA Batteries (4-pack),1,3.84,09/16/19 18:01,"930 Highland St, New York City, NY 10001" -251666,34in Ultrawide Monitor,1,379.99,09/27/19 08:59,"606 13th St, Los Angeles, CA 90001" -251667,Lightning Charging Cable,1,14.95,09/25/19 11:50,"104 South St, Los Angeles, CA 90001" -251668,34in Ultrawide Monitor,1,379.99,09/27/19 21:29,"836 River St, Boston, MA 02215" -251669,USB-C Charging Cable,1,11.95,09/08/19 10:02,"536 Jackson St, Los Angeles, CA 90001" -251670,AAA Batteries (4-pack),1,2.99,09/01/19 20:12,"930 Madison St, Austin, TX 73301" -251671,Bose SoundSport Headphones,1,99.99,09/18/19 13:28,"249 Pine St, San Francisco, CA 94016" -251672,Bose SoundSport Headphones,1,99.99,09/05/19 23:16,"795 Walnut St, Atlanta, GA 30301" -251673,AA Batteries (4-pack),1,3.84,09/12/19 20:32,"831 Madison St, Dallas, TX 75001" -251674,27in FHD Monitor,1,149.99,09/08/19 12:49,"562 11th St, Atlanta, GA 30301" -251675,Lightning Charging Cable,1,14.95,09/26/19 16:35,"867 Highland St, San Francisco, CA 94016" -251676,AAA Batteries (4-pack),3,2.99,09/20/19 20:16,"718 Park St, Portland, OR 97035" -251677,Wired Headphones,1,11.99,09/22/19 13:21,"524 Willow St, San Francisco, CA 94016" -251678,USB-C Charging Cable,1,11.95,09/05/19 05:24,"99 Adams St, Portland, OR 97035" -251679,AAA Batteries (4-pack),1,2.99,09/27/19 09:02,"699 Jackson St, Atlanta, GA 30301" -251680,iPhone,1,700,09/08/19 09:45,"449 Cherry St, Boston, MA 02215" -251681,USB-C Charging Cable,1,11.95,09/16/19 05:14,"551 Cherry St, San Francisco, CA 94016" -251682,Wired Headphones,2,11.99,09/24/19 18:08,"163 Cedar St, Boston, MA 02215" -251683,AAA Batteries (4-pack),2,2.99,09/11/19 10:10,"216 4th St, San Francisco, CA 94016" -251684,USB-C Charging Cable,1,11.95,09/28/19 11:32,"349 Willow St, San Francisco, CA 94016" -251685,iPhone,1,700,09/18/19 18:37,"888 South St, Seattle, WA 98101" -251686,AAA Batteries (4-pack),1,2.99,09/23/19 19:50,"717 Pine St, San Francisco, CA 94016" -251687,AAA Batteries (4-pack),1,2.99,09/11/19 13:02,"487 Church St, San Francisco, CA 94016" -251688,Wired Headphones,1,11.99,09/07/19 22:47,"659 10th St, Portland, OR 97035" -251689,Flatscreen TV,1,300,09/09/19 20:06,"195 Park St, Los Angeles, CA 90001" -251690,Google Phone,1,600,09/17/19 10:48,"941 Lakeview St, Los Angeles, CA 90001" -251690,Wired Headphones,1,11.99,09/17/19 10:48,"941 Lakeview St, Los Angeles, CA 90001" -251691,Lightning Charging Cable,1,14.95,09/26/19 19:26,"202 Wilson St, San Francisco, CA 94016" -251692,Flatscreen TV,1,300,09/19/19 10:55,"937 Madison St, Los Angeles, CA 90001" -251693,AA Batteries (4-pack),1,3.84,09/05/19 18:05,"940 Elm St, San Francisco, CA 94016" -251694,Wired Headphones,1,11.99,09/09/19 02:54,"312 7th St, San Francisco, CA 94016" -251695,Flatscreen TV,1,300,09/24/19 14:28,"2 Washington St, Boston, MA 02215" -251696,AA Batteries (4-pack),1,3.84,09/19/19 15:58,"586 Ridge St, Los Angeles, CA 90001" -251697,34in Ultrawide Monitor,1,379.99,09/12/19 13:25,"931 Madison St, Atlanta, GA 30301" -251698,Google Phone,1,600,09/19/19 13:51,"79 Highland St, New York City, NY 10001" -251699,Lightning Charging Cable,1,14.95,09/13/19 21:17,"933 Jackson St, San Francisco, CA 94016" -251700,Apple Airpods Headphones,1,150,09/29/19 13:02,"750 River St, Seattle, WA 98101" -251701,Bose SoundSport Headphones,1,99.99,09/21/19 10:15,"442 6th St, San Francisco, CA 94016" -251702,AAA Batteries (4-pack),2,2.99,09/06/19 19:22,"717 6th St, Boston, MA 02215" -251703,USB-C Charging Cable,1,11.95,09/19/19 12:40,"317 11th St, San Francisco, CA 94016" -251704,34in Ultrawide Monitor,1,379.99,09/27/19 11:34,"386 Wilson St, San Francisco, CA 94016" -251705,Flatscreen TV,1,300,09/05/19 10:42,"132 2nd St, Seattle, WA 98101" -251706,34in Ultrawide Monitor,1,379.99,09/02/19 20:10,"883 Lincoln St, Los Angeles, CA 90001" -251707,Google Phone,1,600,09/03/19 11:37,"721 Park St, New York City, NY 10001" -251708,Google Phone,1,600,09/25/19 17:35,"270 13th St, New York City, NY 10001" -251709,Lightning Charging Cable,1,14.95,09/04/19 21:44,"771 Madison St, Seattle, WA 98101" -251710,AA Batteries (4-pack),1,3.84,09/29/19 19:57,"418 Jefferson St, Boston, MA 02215" -251711,Wired Headphones,1,11.99,09/13/19 17:33,"802 Church St, Dallas, TX 75001" -251712,Flatscreen TV,1,300,09/13/19 20:03,"909 Wilson St, Seattle, WA 98101" -251713,27in 4K Gaming Monitor,1,389.99,09/04/19 01:03,"556 Elm St, Austin, TX 73301" -251714,AA Batteries (4-pack),1,3.84,09/12/19 18:54,"317 5th St, San Francisco, CA 94016" -251715,AAA Batteries (4-pack),1,2.99,09/02/19 11:42,"938 Maple St, Boston, MA 02215" -251716,Lightning Charging Cable,1,14.95,09/18/19 12:31,"579 Johnson St, San Francisco, CA 94016" -251717,USB-C Charging Cable,1,11.95,09/19/19 13:17,"372 Willow St, San Francisco, CA 94016" -251718,Flatscreen TV,1,300,09/02/19 00:51,"659 Wilson St, Boston, MA 02215" -251719,Lightning Charging Cable,1,14.95,09/11/19 11:30,"95 Highland St, New York City, NY 10001" -251720,Wired Headphones,1,11.99,09/21/19 11:21,"764 8th St, Boston, MA 02215" -251721,USB-C Charging Cable,1,11.95,09/08/19 22:50,"537 Meadow St, San Francisco, CA 94016" -251722,Lightning Charging Cable,1,14.95,09/18/19 11:01,"311 7th St, New York City, NY 10001" -251723,Lightning Charging Cable,1,14.95,09/16/19 22:56,"896 Maple St, Boston, MA 02215" -251724,Bose SoundSport Headphones,1,99.99,09/11/19 18:15,"339 13th St, Austin, TX 73301" -251725,iPhone,1,700,09/19/19 12:01,"938 Pine St, Los Angeles, CA 90001" -251726,Macbook Pro Laptop,1,1700,09/14/19 14:07,"408 4th St, Boston, MA 02215" -251727,AA Batteries (4-pack),1,3.84,09/27/19 13:51,"650 Willow St, San Francisco, CA 94016" -251728,USB-C Charging Cable,2,11.95,09/15/19 12:36,"776 North St, Portland, OR 97035" -251729,AA Batteries (4-pack),1,3.84,09/11/19 00:18,"805 1st St, San Francisco, CA 94016" -251730,Bose SoundSport Headphones,1,99.99,09/19/19 10:54,"903 Dogwood St, Austin, TX 73301" -251731,Apple Airpods Headphones,1,150,09/13/19 23:20,"666 Lake St, Portland, OR 97035" -251732,Bose SoundSport Headphones,1,99.99,09/22/19 14:48,"996 South St, Boston, MA 02215" -251733,34in Ultrawide Monitor,1,379.99,09/12/19 18:02,"416 10th St, Seattle, WA 98101" -251734,AA Batteries (4-pack),2,3.84,09/04/19 15:01,"678 Washington St, Dallas, TX 75001" -251735,AAA Batteries (4-pack),2,2.99,09/03/19 00:37,"508 Meadow St, San Francisco, CA 94016" -251736,27in FHD Monitor,1,149.99,09/24/19 07:23,"296 12th St, Seattle, WA 98101" -251737,Macbook Pro Laptop,1,1700,09/01/19 16:29,"682 5th St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -251738,AAA Batteries (4-pack),1,2.99,09/07/19 20:35,"461 Lincoln St, Atlanta, GA 30301" -251739,20in Monitor,1,109.99,09/13/19 14:19,"208 Elm St, Boston, MA 02215" -251740,USB-C Charging Cable,1,11.95,09/19/19 20:08,"701 Elm St, Portland, OR 97035" -251741,AA Batteries (4-pack),1,3.84,09/20/19 18:50,"106 Elm St, Los Angeles, CA 90001" -251742,AAA Batteries (4-pack),1,2.99,09/19/19 12:45,"166 Madison St, Seattle, WA 98101" -251743,Bose SoundSport Headphones,1,99.99,09/23/19 08:35,"476 13th St, Seattle, WA 98101" -251744,USB-C Charging Cable,1,11.95,09/12/19 00:17,"166 Washington St, Seattle, WA 98101" -251745,27in 4K Gaming Monitor,1,389.99,09/12/19 11:58,"571 10th St, Los Angeles, CA 90001" -251746,34in Ultrawide Monitor,1,379.99,09/11/19 17:18,"516 River St, San Francisco, CA 94016" -251747,ThinkPad Laptop,1,999.99,09/07/19 17:04,"47 River St, San Francisco, CA 94016" -251748,Wired Headphones,1,11.99,09/27/19 11:43,"5 Johnson St, Austin, TX 73301" -251749,34in Ultrawide Monitor,1,379.99,09/15/19 13:25,"512 Jackson St, Dallas, TX 75001" -251750,iPhone,1,700,09/28/19 15:49,"235 Elm St, New York City, NY 10001" -251750,Apple Airpods Headphones,1,150,09/28/19 15:49,"235 Elm St, New York City, NY 10001" -251751,Apple Airpods Headphones,1,150,09/06/19 15:46,"628 9th St, Portland, OR 97035" -251752,Bose SoundSport Headphones,1,99.99,09/09/19 08:02,"251 West St, Dallas, TX 75001" -251753,Apple Airpods Headphones,1,150,09/15/19 16:06,"761 7th St, New York City, NY 10001" -251754,Macbook Pro Laptop,1,1700,09/12/19 00:07,"705 Church St, Los Angeles, CA 90001" -251755,USB-C Charging Cable,1,11.95,09/22/19 01:44,"857 Johnson St, Dallas, TX 75001" -251756,Apple Airpods Headphones,1,150,09/15/19 21:20,"767 Jefferson St, Austin, TX 73301" -251757,Apple Airpods Headphones,1,150,09/20/19 18:59,"295 2nd St, Los Angeles, CA 90001" -251758,Vareebadd Phone,1,400,09/15/19 21:52,"88 North St, Boston, MA 02215" -251759,USB-C Charging Cable,1,11.95,09/11/19 20:39,"749 11th St, New York City, NY 10001" -251760,AA Batteries (4-pack),1,3.84,09/29/19 20:06,"241 Wilson St, Boston, MA 02215" -251761,27in 4K Gaming Monitor,1,389.99,09/28/19 14:55,"849 River St, Austin, TX 73301" -251762,Lightning Charging Cable,1,14.95,09/19/19 18:26,"126 Walnut St, Dallas, TX 75001" -251763,20in Monitor,1,109.99,09/14/19 22:38,"33 Elm St, San Francisco, CA 94016" -251764,USB-C Charging Cable,1,11.95,09/30/19 13:03,"172 12th St, Austin, TX 73301" -251765,Bose SoundSport Headphones,1,99.99,09/12/19 22:08,"75 Walnut St, San Francisco, CA 94016" -251766,Apple Airpods Headphones,1,150,09/02/19 21:37,"333 7th St, Atlanta, GA 30301" -251767,AAA Batteries (4-pack),1,2.99,09/16/19 17:34,"426 Wilson St, Atlanta, GA 30301" -251768,AA Batteries (4-pack),2,3.84,09/30/19 19:04,"876 2nd St, Atlanta, GA 30301" -251769,AA Batteries (4-pack),1,3.84,09/01/19 11:41,"462 Chestnut St, San Francisco, CA 94016" -251770,ThinkPad Laptop,1,999.99,09/08/19 11:26,"115 Lakeview St, Dallas, TX 75001" -251771,20in Monitor,1,109.99,09/12/19 09:51,"756 11th St, Portland, OR 97035" -251772,AA Batteries (4-pack),1,3.84,09/17/19 01:13,"481 Jackson St, Dallas, TX 75001" -251773,20in Monitor,1,109.99,09/05/19 17:39,"810 Forest St, Portland, ME 04101" -251774,Apple Airpods Headphones,1,150,09/30/19 13:01,"607 2nd St, Dallas, TX 75001" -251775,USB-C Charging Cable,1,11.95,09/21/19 21:23,"669 10th St, New York City, NY 10001" -251776,iPhone,1,700,09/06/19 20:00,"48 6th St, Seattle, WA 98101" -251777,Apple Airpods Headphones,1,150,09/17/19 10:22,"979 Elm St, San Francisco, CA 94016" -251778,34in Ultrawide Monitor,1,379.99,09/15/19 12:17,"2 South St, Atlanta, GA 30301" -251779,AAA Batteries (4-pack),1,2.99,09/22/19 14:14,"198 11th St, Atlanta, GA 30301" -251780,Wired Headphones,1,11.99,09/03/19 20:06,"389 Johnson St, San Francisco, CA 94016" -251781,AAA Batteries (4-pack),1,2.99,09/06/19 07:21,"786 Cherry St, Dallas, TX 75001" -251782,Lightning Charging Cable,2,14.95,09/22/19 17:52,"309 2nd St, San Francisco, CA 94016" -251783,AAA Batteries (4-pack),3,2.99,09/27/19 17:16,"545 5th St, Austin, TX 73301" -251784,AAA Batteries (4-pack),1,2.99,09/18/19 10:09,"153 Spruce St, San Francisco, CA 94016" -251785,USB-C Charging Cable,1,11.95,09/19/19 22:39,"670 Lake St, Los Angeles, CA 90001" -251786,Bose SoundSport Headphones,1,99.99,09/28/19 17:51,"676 6th St, Boston, MA 02215" -251787,Google Phone,1,600,09/15/19 21:22,"189 1st St, Dallas, TX 75001" -251788,AA Batteries (4-pack),1,3.84,09/30/19 11:37,"645 2nd St, Austin, TX 73301" -251789,Bose SoundSport Headphones,1,99.99,09/04/19 21:27,"207 Forest St, San Francisco, CA 94016" -251790,ThinkPad Laptop,1,999.99,09/28/19 17:24,"630 Madison St, San Francisco, CA 94016" -251791,27in FHD Monitor,1,149.99,09/24/19 19:08,"526 Hill St, San Francisco, CA 94016" -251792,Wired Headphones,1,11.99,09/30/19 14:02,"688 Hill St, San Francisco, CA 94016" -251793,AA Batteries (4-pack),1,3.84,09/19/19 20:42,"507 Lakeview St, Seattle, WA 98101" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -251794,AAA Batteries (4-pack),2,2.99,09/05/19 18:23,"631 Main St, Boston, MA 02215" -251795,Lightning Charging Cable,1,14.95,09/24/19 21:53,"709 Jefferson St, New York City, NY 10001" -251796,AA Batteries (4-pack),2,3.84,09/18/19 16:16,"158 Walnut St, Los Angeles, CA 90001" -251797,AAA Batteries (4-pack),1,2.99,09/28/19 12:12,"966 1st St, San Francisco, CA 94016" -251798,USB-C Charging Cable,1,11.95,09/26/19 21:03,"330 11th St, San Francisco, CA 94016" -251799,USB-C Charging Cable,1,11.95,09/10/19 21:55,"879 14th St, Austin, TX 73301" -251800,AAA Batteries (4-pack),1,2.99,09/13/19 19:05,"798 Ridge St, Dallas, TX 75001" -251801,AAA Batteries (4-pack),1,2.99,09/09/19 08:41,"813 14th St, Boston, MA 02215" -251802,AA Batteries (4-pack),1,3.84,09/15/19 15:00,"580 Adams St, Portland, OR 97035" -251803,AAA Batteries (4-pack),1,2.99,09/18/19 22:13,"13 Lake St, Los Angeles, CA 90001" -251804,AAA Batteries (4-pack),2,2.99,09/18/19 23:04,"266 Park St, Seattle, WA 98101" -251805,AAA Batteries (4-pack),1,2.99,09/01/19 13:41,"461 Lakeview St, Seattle, WA 98101" -251806,USB-C Charging Cable,1,11.95,09/26/19 15:12,"380 Adams St, New York City, NY 10001" -251807,AAA Batteries (4-pack),2,2.99,09/11/19 13:34,"390 7th St, Dallas, TX 75001" -251808,USB-C Charging Cable,1,11.95,09/23/19 13:27,"279 Willow St, Los Angeles, CA 90001" -251809,Bose SoundSport Headphones,1,99.99,09/28/19 18:18,"380 12th St, Portland, OR 97035" -251810,Wired Headphones,1,11.99,09/11/19 12:58,"252 North St, San Francisco, CA 94016" -251811,Apple Airpods Headphones,1,150,09/11/19 11:48,"766 Highland St, San Francisco, CA 94016" -251812,AA Batteries (4-pack),2,3.84,09/16/19 17:03,"148 Sunset St, Boston, MA 02215" -251813,20in Monitor,1,109.99,09/09/19 16:55,"203 9th St, Los Angeles, CA 90001" -251814,20in Monitor,1,109.99,09/24/19 20:51,"2 11th St, Atlanta, GA 30301" -251815,27in FHD Monitor,1,149.99,09/22/19 15:05,"608 Church St, Seattle, WA 98101" -251816,Lightning Charging Cable,1,14.95,09/30/19 13:49,"902 7th St, Austin, TX 73301" -251817,Flatscreen TV,1,300,09/01/19 16:52,"636 Park St, Boston, MA 02215" -251818,27in FHD Monitor,1,149.99,09/30/19 07:39,"412 2nd St, Portland, OR 97035" -251818,Flatscreen TV,1,300,09/30/19 07:39,"412 2nd St, Portland, OR 97035" -251819,27in FHD Monitor,1,149.99,09/22/19 18:11,"981 5th St, Portland, ME 04101" -251820,AA Batteries (4-pack),1,3.84,09/22/19 09:00,"320 7th St, New York City, NY 10001" -251821,Lightning Charging Cable,1,14.95,09/27/19 11:00,"662 1st St, San Francisco, CA 94016" -251822,Lightning Charging Cable,1,14.95,09/23/19 10:13,"441 Lake St, San Francisco, CA 94016" -251823,AAA Batteries (4-pack),2,2.99,09/23/19 11:02,"14 2nd St, San Francisco, CA 94016" -251824,Lightning Charging Cable,1,14.95,09/30/19 03:07,"217 2nd St, San Francisco, CA 94016" -251825,27in FHD Monitor,1,149.99,09/02/19 22:43,"595 Chestnut St, Seattle, WA 98101" -251826,Lightning Charging Cable,1,14.95,09/05/19 18:01,"463 13th St, New York City, NY 10001" -251827,AA Batteries (4-pack),2,3.84,09/06/19 21:57,"29 2nd St, San Francisco, CA 94016" -251828,USB-C Charging Cable,1,11.95,09/09/19 18:58,"346 Chestnut St, Portland, ME 04101" -251829,AAA Batteries (4-pack),1,2.99,09/07/19 15:06,"854 Center St, Los Angeles, CA 90001" -251830,Apple Airpods Headphones,1,150,09/17/19 13:05,"832 Chestnut St, New York City, NY 10001" -251831,AA Batteries (4-pack),1,3.84,09/16/19 16:16,"842 Pine St, Seattle, WA 98101" -251832,AA Batteries (4-pack),1,3.84,09/07/19 20:47,"359 10th St, Portland, OR 97035" -251833,Bose SoundSport Headphones,1,99.99,09/15/19 10:52,"489 Church St, Portland, OR 97035" -251834,Google Phone,1,600,09/11/19 14:08,"377 4th St, Atlanta, GA 30301" -251835,AA Batteries (4-pack),1,3.84,09/14/19 08:32,"48 Center St, Atlanta, GA 30301" -251836,Wired Headphones,1,11.99,09/03/19 18:24,"982 7th St, Atlanta, GA 30301" -251837,ThinkPad Laptop,1,999.99,09/08/19 19:48,"80 Lakeview St, Los Angeles, CA 90001" -251838,Wired Headphones,2,11.99,09/27/19 12:33,"826 12th St, Boston, MA 02215" -251839,AAA Batteries (4-pack),3,2.99,09/29/19 18:44,"119 4th St, Portland, OR 97035" -251840,AAA Batteries (4-pack),1,2.99,09/27/19 18:49,"41 Spruce St, San Francisco, CA 94016" -251841,20in Monitor,1,109.99,09/01/19 12:51,"584 Forest St, Los Angeles, CA 90001" -251842,Apple Airpods Headphones,1,150,09/20/19 09:10,"928 Walnut St, Dallas, TX 75001" -251843,Lightning Charging Cable,1,14.95,09/06/19 10:00,"167 Washington St, Boston, MA 02215" -251844,Lightning Charging Cable,1,14.95,09/13/19 10:39,"213 5th St, San Francisco, CA 94016" -251845,AA Batteries (4-pack),3,3.84,09/27/19 08:16,"115 West St, Portland, OR 97035" -251846,Apple Airpods Headphones,1,150,09/07/19 12:07,"297 14th St, Portland, OR 97035" -251847,34in Ultrawide Monitor,1,379.99,09/23/19 23:05,"199 Hill St, Boston, MA 02215" -251848,Lightning Charging Cable,1,14.95,09/09/19 17:31,"883 River St, San Francisco, CA 94016" -251849,AAA Batteries (4-pack),3,2.99,09/19/19 10:08,"107 4th St, Atlanta, GA 30301" -251850,AAA Batteries (4-pack),3,2.99,09/05/19 13:12,"240 Hill St, Dallas, TX 75001" -251851,Google Phone,1,600,09/28/19 09:35,"930 Dogwood St, Seattle, WA 98101" -251852,Lightning Charging Cable,1,14.95,09/23/19 08:48,"157 Ridge St, Atlanta, GA 30301" -251853,Lightning Charging Cable,1,14.95,09/29/19 06:24,"78 Wilson St, New York City, NY 10001" -251854,Lightning Charging Cable,1,14.95,09/06/19 17:35,"635 Jackson St, Los Angeles, CA 90001" -251855,Lightning Charging Cable,1,14.95,09/01/19 11:10,"559 Willow St, Seattle, WA 98101" -251856,Apple Airpods Headphones,1,150,09/13/19 23:05,"138 Park St, Dallas, TX 75001" -251857,Bose SoundSport Headphones,1,99.99,09/14/19 08:12,"491 Madison St, Los Angeles, CA 90001" -251858,Google Phone,1,600,09/22/19 17:58,"225 Spruce St, Seattle, WA 98101" -251859,Lightning Charging Cable,2,14.95,09/28/19 13:06,"62 Lake St, Seattle, WA 98101" -251860,AA Batteries (4-pack),1,3.84,09/21/19 13:50,"107 Elm St, San Francisco, CA 94016" -251861,AAA Batteries (4-pack),1,2.99,09/26/19 20:11,"382 Elm St, Dallas, TX 75001" -251862,USB-C Charging Cable,1,11.95,09/07/19 17:38,"451 South St, Boston, MA 02215" -251863,AAA Batteries (4-pack),1,2.99,09/14/19 17:45,"945 9th St, Los Angeles, CA 90001" -251864,Apple Airpods Headphones,1,150,09/27/19 13:43,"11 Forest St, Seattle, WA 98101" -251865,AAA Batteries (4-pack),1,2.99,09/11/19 14:19,"641 Main St, San Francisco, CA 94016" -251866,iPhone,1,700,09/29/19 01:32,"694 Main St, Dallas, TX 75001" -,,,,, -251867,Bose SoundSport Headphones,1,99.99,09/21/19 09:55,"105 5th St, Atlanta, GA 30301" -251868,AAA Batteries (4-pack),1,2.99,09/05/19 20:15,"331 12th St, New York City, NY 10001" -251869,USB-C Charging Cable,1,11.95,09/15/19 11:02,"906 Dogwood St, Dallas, TX 75001" -251870,Apple Airpods Headphones,1,150,09/03/19 16:19,"649 Johnson St, San Francisco, CA 94016" -251871,Wired Headphones,1,11.99,09/18/19 17:02,"717 Lakeview St, Los Angeles, CA 90001" -251872,Lightning Charging Cable,2,14.95,09/09/19 23:09,"457 Willow St, New York City, NY 10001" -251873,LG Dryer,1,600.0,09/28/19 18:58,"798 12th St, Portland, OR 97035" -251874,USB-C Charging Cable,1,11.95,09/06/19 19:41,"375 Park St, New York City, NY 10001" -251875,20in Monitor,1,109.99,09/18/19 14:41,"504 Wilson St, Dallas, TX 75001" -251876,AA Batteries (4-pack),1,3.84,09/11/19 21:40,"4 North St, Los Angeles, CA 90001" -251877,Wired Headphones,1,11.99,09/10/19 12:56,"638 Cherry St, Los Angeles, CA 90001" -251878,Bose SoundSport Headphones,1,99.99,09/10/19 10:12,"649 North St, Boston, MA 02215" -251879,Lightning Charging Cable,1,14.95,09/19/19 19:12,"88 Main St, San Francisco, CA 94016" -251880,34in Ultrawide Monitor,1,379.99,09/17/19 14:37,"351 Chestnut St, Dallas, TX 75001" -251881,USB-C Charging Cable,1,11.95,09/21/19 11:45,"264 Lakeview St, San Francisco, CA 94016" -251882,Lightning Charging Cable,1,14.95,09/10/19 10:34,"218 South St, Seattle, WA 98101" -251883,AAA Batteries (4-pack),1,2.99,09/08/19 19:38,"527 Maple St, San Francisco, CA 94016" -251884,Apple Airpods Headphones,1,150,09/27/19 11:03,"1 Maple St, San Francisco, CA 94016" -251885,Flatscreen TV,1,300,09/02/19 21:12,"947 Chestnut St, Portland, OR 97035" -251886,27in FHD Monitor,1,149.99,09/13/19 08:14,"219 Ridge St, Boston, MA 02215" -251887,AAA Batteries (4-pack),1,2.99,09/11/19 17:33,"462 Hickory St, Dallas, TX 75001" -251888,Lightning Charging Cable,1,14.95,09/24/19 18:30,"397 5th St, Portland, ME 04101" -251889,USB-C Charging Cable,2,11.95,09/01/19 08:05,"935 Main St, San Francisco, CA 94016" -251890,AA Batteries (4-pack),1,3.84,09/14/19 15:29,"92 Wilson St, San Francisco, CA 94016" -251891,Bose SoundSport Headphones,1,99.99,09/24/19 20:55,"777 West St, Dallas, TX 75001" -251892,USB-C Charging Cable,1,11.95,09/16/19 21:10,"112 Jefferson St, Seattle, WA 98101" -251893,AA Batteries (4-pack),1,3.84,09/24/19 16:05,"686 8th St, San Francisco, CA 94016" -251894,Lightning Charging Cable,1,14.95,09/01/19 11:04,"549 9th St, San Francisco, CA 94016" -251895,AAA Batteries (4-pack),1,2.99,09/29/19 15:02,"589 Maple St, New York City, NY 10001" -251896,AA Batteries (4-pack),5,3.84,09/24/19 17:02,"473 Jackson St, New York City, NY 10001" -251897,AA Batteries (4-pack),1,3.84,09/17/19 12:31,"69 Church St, New York City, NY 10001" -251898,Wired Headphones,1,11.99,09/02/19 12:08,"448 Elm St, San Francisco, CA 94016" -251899,27in FHD Monitor,1,149.99,09/01/19 21:52,"520 Highland St, Los Angeles, CA 90001" -251900,Wired Headphones,2,11.99,09/10/19 14:31,"211 5th St, Los Angeles, CA 90001" -251901,iPhone,1,700,09/26/19 11:53,"969 Spruce St, Los Angeles, CA 90001" -251902,AAA Batteries (4-pack),1,2.99,09/22/19 08:07,"917 Elm St, San Francisco, CA 94016" -251903,AAA Batteries (4-pack),2,2.99,09/10/19 13:15,"97 Highland St, Seattle, WA 98101" -251904,AA Batteries (4-pack),1,3.84,09/20/19 19:07,"270 River St, San Francisco, CA 94016" -251905,Lightning Charging Cable,1,14.95,09/06/19 09:53,"774 River St, Dallas, TX 75001" -251906,Apple Airpods Headphones,1,150,09/13/19 20:31,"431 7th St, Dallas, TX 75001" -251907,Lightning Charging Cable,1,14.95,09/10/19 12:02,"374 6th St, San Francisco, CA 94016" -251908,27in FHD Monitor,1,149.99,09/07/19 23:06,"549 Spruce St, Seattle, WA 98101" -251909,Wired Headphones,1,11.99,09/22/19 19:15,"195 Forest St, Dallas, TX 75001" -251910,AA Batteries (4-pack),1,3.84,09/17/19 23:07,"445 8th St, New York City, NY 10001" -251911,Wired Headphones,1,11.99,09/24/19 18:44,"324 Spruce St, Los Angeles, CA 90001" -251912,USB-C Charging Cable,1,11.95,09/09/19 22:51,"4 South St, Los Angeles, CA 90001" -251913,34in Ultrawide Monitor,1,379.99,09/19/19 14:46,"513 North St, Atlanta, GA 30301" -251914,Wired Headphones,1,11.99,09/22/19 14:05,"795 Lincoln St, Portland, OR 97035" -251915,Lightning Charging Cable,1,14.95,09/01/19 21:20,"666 Adams St, San Francisco, CA 94016" -251916,Wired Headphones,1,11.99,09/15/19 13:29,"457 10th St, Seattle, WA 98101" -251917,AA Batteries (4-pack),1,3.84,09/22/19 23:26,"87 1st St, Atlanta, GA 30301" -251918,27in FHD Monitor,1,149.99,09/13/19 11:39,"838 River St, Dallas, TX 75001" -251919,Bose SoundSport Headphones,1,99.99,09/26/19 10:13,"291 Dogwood St, San Francisco, CA 94016" -251920,Google Phone,1,600,09/08/19 19:25,"682 Lincoln St, Seattle, WA 98101" -251920,USB-C Charging Cable,1,11.95,09/08/19 19:25,"682 Lincoln St, Seattle, WA 98101" -251921,USB-C Charging Cable,1,11.95,09/09/19 08:39,"10 Cedar St, San Francisco, CA 94016" -251921,AAA Batteries (4-pack),1,2.99,09/09/19 08:39,"10 Cedar St, San Francisco, CA 94016" -251922,USB-C Charging Cable,1,11.95,09/29/19 12:57,"809 Walnut St, New York City, NY 10001" -251923,Google Phone,1,600,09/02/19 21:06,"994 9th St, San Francisco, CA 94016" -251924,Wired Headphones,1,11.99,09/22/19 09:13,"141 Center St, Los Angeles, CA 90001" -251925,34in Ultrawide Monitor,1,379.99,09/17/19 08:17,"241 Sunset St, New York City, NY 10001" -251926,Flatscreen TV,1,300,09/25/19 10:29,"305 12th St, New York City, NY 10001" -251927,USB-C Charging Cable,1,11.95,09/27/19 13:28,"743 6th St, New York City, NY 10001" -251928,34in Ultrawide Monitor,1,379.99,09/10/19 21:01,"941 10th St, San Francisco, CA 94016" -251929,Google Phone,1,600,09/24/19 14:28,"994 Elm St, San Francisco, CA 94016" -251930,AAA Batteries (4-pack),1,2.99,09/14/19 14:49,"949 Highland St, Boston, MA 02215" -251931,Apple Airpods Headphones,1,150,09/18/19 11:17,"30 Hickory St, Los Angeles, CA 90001" -251932,Wired Headphones,1,11.99,09/29/19 00:50,"915 Johnson St, Atlanta, GA 30301" -251933,AA Batteries (4-pack),1,3.84,09/29/19 10:57,"973 Maple St, San Francisco, CA 94016" -251934,ThinkPad Laptop,1,999.99,09/23/19 11:35,"358 Park St, Dallas, TX 75001" -251935,AA Batteries (4-pack),1,3.84,09/15/19 18:21,"119 Pine St, Portland, OR 97035" -251936,AA Batteries (4-pack),2,3.84,09/02/19 22:44,"483 Adams St, San Francisco, CA 94016" -251937,AA Batteries (4-pack),3,3.84,09/08/19 16:48,"631 Jackson St, Atlanta, GA 30301" -251938,iPhone,1,700,09/17/19 22:20,"43 7th St, San Francisco, CA 94016" -251939,Flatscreen TV,1,300,09/19/19 08:33,"735 Maple St, San Francisco, CA 94016" -251940,AA Batteries (4-pack),1,3.84,09/09/19 20:55,"573 8th St, Boston, MA 02215" -251941,Wired Headphones,1,11.99,09/08/19 07:35,"606 Jackson St, New York City, NY 10001" -251942,27in 4K Gaming Monitor,1,389.99,09/03/19 19:31,"589 Johnson St, Los Angeles, CA 90001" -251943,USB-C Charging Cable,1,11.95,09/22/19 13:32,"140 North St, Boston, MA 02215" -251944,34in Ultrawide Monitor,1,379.99,09/02/19 10:00,"174 6th St, Atlanta, GA 30301" -251945,AAA Batteries (4-pack),1,2.99,09/18/19 17:37,"35 7th St, Dallas, TX 75001" -251946,34in Ultrawide Monitor,1,379.99,09/04/19 21:37,"79 Center St, Austin, TX 73301" -251947,AAA Batteries (4-pack),1,2.99,09/17/19 22:17,"493 Dogwood St, Los Angeles, CA 90001" -251948,USB-C Charging Cable,1,11.95,09/04/19 17:51,"155 West St, Atlanta, GA 30301" -251949,iPhone,1,700,09/30/19 14:30,"738 11th St, San Francisco, CA 94016" -251950,USB-C Charging Cable,1,11.95,09/11/19 21:18,"1 Maple St, Los Angeles, CA 90001" -251951,AA Batteries (4-pack),1,3.84,09/23/19 18:04,"730 Madison St, New York City, NY 10001" -251952,Wired Headphones,1,11.99,09/18/19 09:26,"821 Jackson St, San Francisco, CA 94016" -251953,27in FHD Monitor,1,149.99,09/06/19 19:54,"797 South St, New York City, NY 10001" -251954,27in FHD Monitor,1,149.99,09/04/19 17:59,"30 Jefferson St, Dallas, TX 75001" -251955,Lightning Charging Cable,1,14.95,09/09/19 09:24,"368 Jefferson St, Los Angeles, CA 90001" -251956,27in 4K Gaming Monitor,1,389.99,09/25/19 13:00,"745 South St, Dallas, TX 75001" -251957,Google Phone,1,600,09/07/19 10:42,"799 7th St, Seattle, WA 98101" -251957,USB-C Charging Cable,1,11.95,09/07/19 10:42,"799 7th St, Seattle, WA 98101" -251958,Bose SoundSport Headphones,1,99.99,09/17/19 19:01,"868 10th St, Atlanta, GA 30301" -251959,Wired Headphones,1,11.99,09/26/19 09:26,"200 Hickory St, Boston, MA 02215" -251960,34in Ultrawide Monitor,1,379.99,09/24/19 20:34,"212 Willow St, Los Angeles, CA 90001" -251961,Bose SoundSport Headphones,1,99.99,09/07/19 02:33,"134 Hill St, Los Angeles, CA 90001" -251962,AA Batteries (4-pack),1,3.84,09/22/19 12:24,"438 Church St, Austin, TX 73301" -251963,USB-C Charging Cable,1,11.95,09/17/19 14:37,"700 Wilson St, Dallas, TX 75001" -251964,Wired Headphones,1,11.99,09/23/19 14:43,"164 8th St, San Francisco, CA 94016" -251965,Lightning Charging Cable,1,14.95,09/07/19 19:31,"761 River St, New York City, NY 10001" -251966,Bose SoundSport Headphones,1,99.99,09/02/19 16:47,"667 Meadow St, Seattle, WA 98101" -251967,ThinkPad Laptop,1,999.99,09/10/19 18:51,"589 Willow St, Boston, MA 02215" -251968,Bose SoundSport Headphones,1,99.99,09/29/19 17:00,"588 14th St, Dallas, TX 75001" -251969,Lightning Charging Cable,1,14.95,09/16/19 17:16,"371 Washington St, Boston, MA 02215" -251970,Macbook Pro Laptop,1,1700,09/13/19 22:36,"354 Main St, Seattle, WA 98101" -251971,USB-C Charging Cable,2,11.95,09/04/19 09:58,"162 4th St, Los Angeles, CA 90001" -251972,Apple Airpods Headphones,1,150,09/16/19 19:06,"890 Maple St, San Francisco, CA 94016" -251973,USB-C Charging Cable,1,11.95,09/22/19 22:04,"171 Walnut St, Dallas, TX 75001" -251974,AAA Batteries (4-pack),2,2.99,09/30/19 18:52,"642 Chestnut St, Boston, MA 02215" -,,,,, -251975,AA Batteries (4-pack),2,3.84,09/19/19 14:07,"114 Jackson St, San Francisco, CA 94016" -251976,AAA Batteries (4-pack),1,2.99,09/16/19 17:33,"529 Jefferson St, Boston, MA 02215" -251977,Apple Airpods Headphones,1,150,09/04/19 11:47,"447 13th St, San Francisco, CA 94016" -251978,AAA Batteries (4-pack),1,2.99,09/08/19 14:42,"806 Willow St, New York City, NY 10001" -251979,AAA Batteries (4-pack),1,2.99,09/27/19 19:36,"655 Meadow St, Atlanta, GA 30301" -251980,AAA Batteries (4-pack),2,2.99,09/02/19 12:04,"368 Lakeview St, Portland, OR 97035" -251981,USB-C Charging Cable,1,11.95,09/01/19 12:41,"778 10th St, Portland, OR 97035" -251982,USB-C Charging Cable,1,11.95,09/04/19 21:02,"881 11th St, San Francisco, CA 94016" -251983,Bose SoundSport Headphones,1,99.99,09/01/19 11:42,"78 5th St, Dallas, TX 75001" -251984,Flatscreen TV,1,300,09/02/19 12:07,"239 Ridge St, San Francisco, CA 94016" -251985,Bose SoundSport Headphones,1,99.99,09/04/19 11:48,"68 Lakeview St, Boston, MA 02215" -251986,USB-C Charging Cable,1,11.95,09/07/19 22:33,"672 Hickory St, San Francisco, CA 94016" -251987,AAA Batteries (4-pack),2,2.99,09/30/19 09:05,"397 Lincoln St, Boston, MA 02215" -251988,Flatscreen TV,1,300,09/21/19 08:23,"802 14th St, San Francisco, CA 94016" -251989,Wired Headphones,1,11.99,09/04/19 16:22,"410 Elm St, Los Angeles, CA 90001" -251990,Wired Headphones,1,11.99,09/28/19 20:28,"202 14th St, Los Angeles, CA 90001" -251991,Bose SoundSport Headphones,1,99.99,09/07/19 21:27,"524 Willow St, Los Angeles, CA 90001" -251992,Bose SoundSport Headphones,1,99.99,09/30/19 22:30,"337 Spruce St, Dallas, TX 75001" -251993,USB-C Charging Cable,2,11.95,09/05/19 06:59,"568 Hill St, San Francisco, CA 94016" -251994,AAA Batteries (4-pack),1,2.99,09/09/19 20:17,"423 Church St, Boston, MA 02215" -251995,Apple Airpods Headphones,1,150,09/28/19 11:25,"350 Jefferson St, New York City, NY 10001" -251996,34in Ultrawide Monitor,1,379.99,09/08/19 19:41,"401 Sunset St, Atlanta, GA 30301" -251997,USB-C Charging Cable,1,11.95,09/22/19 19:12,"633 Hill St, Seattle, WA 98101" -251998,AAA Batteries (4-pack),1,2.99,09/15/19 12:06,"130 2nd St, Atlanta, GA 30301" -251999,Apple Airpods Headphones,1,150,09/08/19 00:57,"322 North St, Dallas, TX 75001" -252000,USB-C Charging Cable,1,11.95,09/08/19 11:38,"181 Highland St, Los Angeles, CA 90001" -252001,USB-C Charging Cable,1,11.95,09/09/19 21:02,"558 Adams St, New York City, NY 10001" -252002,Lightning Charging Cable,1,14.95,09/25/19 09:08,"316 Walnut St, San Francisco, CA 94016" -252003,AA Batteries (4-pack),1,3.84,09/30/19 01:58,"569 13th St, New York City, NY 10001" -252004,Apple Airpods Headphones,1,150,09/13/19 22:08,"220 Wilson St, San Francisco, CA 94016" -252005,Lightning Charging Cable,1,14.95,09/15/19 22:55,"435 Highland St, Atlanta, GA 30301" -252006,Apple Airpods Headphones,1,150,09/29/19 08:20,"664 5th St, San Francisco, CA 94016" -252007,ThinkPad Laptop,1,999.99,09/16/19 09:53,"874 Highland St, San Francisco, CA 94016" -252008,AAA Batteries (4-pack),1,2.99,09/07/19 12:12,"563 Madison St, Dallas, TX 75001" -252009,Google Phone,1,600,09/17/19 07:43,"518 Hickory St, Portland, ME 04101" -252010,USB-C Charging Cable,2,11.95,09/10/19 23:19,"264 Dogwood St, Seattle, WA 98101" -252011,27in FHD Monitor,1,149.99,09/15/19 00:53,"66 Lake St, Atlanta, GA 30301" -,,,,, -252012,27in FHD Monitor,1,149.99,09/01/19 23:16,"470 Lincoln St, Los Angeles, CA 90001" -252013,20in Monitor,1,109.99,09/03/19 21:03,"259 Cherry St, Boston, MA 02215" -252014,USB-C Charging Cable,1,11.95,09/19/19 22:45,"645 7th St, Seattle, WA 98101" -252015,Vareebadd Phone,1,400,09/07/19 15:31,"474 Ridge St, San Francisco, CA 94016" -252016,Apple Airpods Headphones,1,150,09/03/19 11:21,"832 2nd St, San Francisco, CA 94016" -252017,Apple Airpods Headphones,1,150,09/09/19 17:35,"671 Madison St, Austin, TX 73301" -252018,USB-C Charging Cable,1,11.95,09/17/19 10:25,"255 Ridge St, Atlanta, GA 30301" -252019,Wired Headphones,1,11.99,09/24/19 11:52,"572 Hickory St, Atlanta, GA 30301" -252020,AAA Batteries (4-pack),1,2.99,09/02/19 11:29,"267 Lincoln St, Boston, MA 02215" -252021,AAA Batteries (4-pack),1,2.99,09/22/19 22:25,"863 13th St, San Francisco, CA 94016" -252022,Google Phone,1,600,09/14/19 14:08,"369 Hill St, Dallas, TX 75001" -252023,Bose SoundSport Headphones,1,99.99,09/17/19 17:28,"110 Ridge St, Seattle, WA 98101" -252023,Wired Headphones,1,11.99,09/17/19 17:28,"110 Ridge St, Seattle, WA 98101" -252024,Lightning Charging Cable,1,14.95,09/07/19 20:28,"200 7th St, Austin, TX 73301" -252025,34in Ultrawide Monitor,1,379.99,09/05/19 15:21,"190 Jefferson St, Seattle, WA 98101" -252026,Flatscreen TV,1,300,09/02/19 12:28,"485 Park St, Los Angeles, CA 90001" -252027,Google Phone,1,600,09/07/19 22:41,"666 Cherry St, Los Angeles, CA 90001" -252028,20in Monitor,1,109.99,09/24/19 19:55,"348 11th St, Los Angeles, CA 90001" -252029,Wired Headphones,1,11.99,09/27/19 21:04,"268 Main St, Los Angeles, CA 90001" -252030,USB-C Charging Cable,1,11.95,09/24/19 01:08,"680 Cedar St, San Francisco, CA 94016" -252031,USB-C Charging Cable,1,11.95,09/01/19 16:58,"296 Lincoln St, New York City, NY 10001" -252032,USB-C Charging Cable,2,11.95,09/25/19 21:37,"256 North St, Atlanta, GA 30301" -252033,Vareebadd Phone,1,400,09/09/19 22:50,"54 Cedar St, Los Angeles, CA 90001" -252033,Bose SoundSport Headphones,1,99.99,09/09/19 22:50,"54 Cedar St, Los Angeles, CA 90001" -252034,AA Batteries (4-pack),1,3.84,09/26/19 08:22,"23 2nd St, Boston, MA 02215" -252035,ThinkPad Laptop,1,999.99,09/19/19 14:11,"999 Wilson St, Los Angeles, CA 90001" -252036,iPhone,1,700,09/06/19 11:49,"954 5th St, New York City, NY 10001" -252037,USB-C Charging Cable,1,11.95,09/01/19 15:32,"429 1st St, San Francisco, CA 94016" -252038,34in Ultrawide Monitor,1,379.99,09/15/19 17:47,"262 2nd St, Los Angeles, CA 90001" -252038,iPhone,1,700,09/15/19 17:47,"262 2nd St, Los Angeles, CA 90001" -252039,Wired Headphones,1,11.99,09/29/19 21:52,"732 Jefferson St, New York City, NY 10001" -252040,Lightning Charging Cable,1,14.95,09/26/19 23:52,"890 Main St, Atlanta, GA 30301" -252041,USB-C Charging Cable,2,11.95,09/12/19 06:08,"330 Cedar St, New York City, NY 10001" -252042,Google Phone,1,600,09/26/19 14:41,"713 Jefferson St, Boston, MA 02215" -252043,USB-C Charging Cable,1,11.95,09/01/19 17:10,"245 Pine St, Los Angeles, CA 90001" -252044,USB-C Charging Cable,1,11.95,09/15/19 09:53,"985 5th St, Boston, MA 02215" -252045,AAA Batteries (4-pack),2,2.99,09/06/19 22:20,"489 2nd St, Atlanta, GA 30301" -252046,Lightning Charging Cable,1,14.95,09/22/19 15:31,"660 Walnut St, Dallas, TX 75001" -252047,Lightning Charging Cable,1,14.95,09/25/19 11:09,"826 7th St, New York City, NY 10001" -252048,USB-C Charging Cable,1,11.95,09/26/19 23:23,"470 10th St, Los Angeles, CA 90001" -252049,Bose SoundSport Headphones,1,99.99,09/18/19 13:21,"382 Washington St, San Francisco, CA 94016" -252050,Bose SoundSport Headphones,1,99.99,09/04/19 02:20,"491 4th St, Dallas, TX 75001" -252051,Apple Airpods Headphones,1,150,09/16/19 12:09,"132 Madison St, Boston, MA 02215" -252052,Apple Airpods Headphones,1,150,09/28/19 17:11,"374 Pine St, New York City, NY 10001" -252053,34in Ultrawide Monitor,1,379.99,09/11/19 22:51,"768 11th St, New York City, NY 10001" -252054,34in Ultrawide Monitor,1,379.99,09/30/19 10:52,"438 Hill St, Seattle, WA 98101" -252055,Flatscreen TV,1,300,09/18/19 21:53,"931 1st St, Dallas, TX 75001" -252056,Apple Airpods Headphones,1,150,09/14/19 11:24,"186 11th St, Atlanta, GA 30301" -252057,Lightning Charging Cable,1,14.95,09/20/19 19:50,"136 Spruce St, San Francisco, CA 94016" -252058,iPhone,1,700,09/07/19 16:18,"145 6th St, San Francisco, CA 94016" -252058,Lightning Charging Cable,1,14.95,09/07/19 16:18,"145 6th St, San Francisco, CA 94016" -252059,20in Monitor,1,109.99,09/28/19 13:54,"96 7th St, San Francisco, CA 94016" -252060,AAA Batteries (4-pack),1,2.99,09/29/19 09:18,"475 Sunset St, Los Angeles, CA 90001" -252061,Apple Airpods Headphones,1,150,09/21/19 20:56,"88 Cedar St, San Francisco, CA 94016" -252062,AA Batteries (4-pack),2,3.84,09/28/19 13:25,"240 2nd St, Boston, MA 02215" -252063,AAA Batteries (4-pack),1,2.99,09/09/19 13:52,"233 1st St, Portland, OR 97035" -252064,Wired Headphones,1,11.99,09/18/19 13:09,"842 9th St, Boston, MA 02215" -252065,Lightning Charging Cable,1,14.95,09/24/19 14:43,"892 Jackson St, Boston, MA 02215" -252066,iPhone,1,700,09/29/19 16:31,"149 8th St, Austin, TX 73301" -252067,AAA Batteries (4-pack),1,2.99,09/29/19 09:30,"63 Lincoln St, Boston, MA 02215" -252068,AAA Batteries (4-pack),1,2.99,09/12/19 06:38,"536 4th St, Seattle, WA 98101" -252069,Wired Headphones,1,11.99,09/15/19 10:09,"200 8th St, San Francisco, CA 94016" -252070,USB-C Charging Cable,2,11.95,09/29/19 09:55,"176 1st St, San Francisco, CA 94016" -252071,AA Batteries (4-pack),1,3.84,09/02/19 21:52,"190 6th St, New York City, NY 10001" -252072,Wired Headphones,1,11.99,09/20/19 18:55,"439 Hill St, Boston, MA 02215" -252073,AA Batteries (4-pack),1,3.84,09/30/19 11:01,"829 South St, Los Angeles, CA 90001" -252074,Bose SoundSport Headphones,1,99.99,09/01/19 12:32,"725 Highland St, Atlanta, GA 30301" -252075,Bose SoundSport Headphones,1,99.99,09/29/19 15:30,"747 Elm St, Portland, OR 97035" -252076,Bose SoundSport Headphones,1,99.99,09/13/19 14:17,"201 Pine St, Atlanta, GA 30301" -252077,AA Batteries (4-pack),1,3.84,09/09/19 23:38,"78 Adams St, New York City, NY 10001" -252078,AAA Batteries (4-pack),1,2.99,09/17/19 11:14,"54 14th St, New York City, NY 10001" -252079,USB-C Charging Cable,2,11.95,09/29/19 21:01,"798 Washington St, Los Angeles, CA 90001" -252080,Flatscreen TV,1,300,09/20/19 10:05,"680 Ridge St, San Francisco, CA 94016" -252081,Lightning Charging Cable,1,14.95,09/12/19 14:01,"764 Chestnut St, Atlanta, GA 30301" -252082,Lightning Charging Cable,1,14.95,09/01/19 17:13,"275 Park St, Atlanta, GA 30301" -252083,Apple Airpods Headphones,1,150,09/03/19 19:09,"803 Highland St, Boston, MA 02215" -252084,Wired Headphones,1,11.99,09/08/19 20:04,"10 6th St, Austin, TX 73301" -252085,Wired Headphones,1,11.99,09/07/19 12:42,"288 South St, Dallas, TX 75001" -252086,Apple Airpods Headphones,1,150,09/12/19 12:50,"963 Highland St, Boston, MA 02215" -252087,27in FHD Monitor,1,149.99,09/06/19 20:33,"158 Lake St, Atlanta, GA 30301" -252088,Google Phone,1,600,09/20/19 13:15,"67 Johnson St, Dallas, TX 75001" -252089,USB-C Charging Cable,1,11.95,09/06/19 08:03,"14 Jackson St, San Francisco, CA 94016" -252090,Apple Airpods Headphones,1,150,09/12/19 17:42,"742 14th St, Seattle, WA 98101" -252091,AA Batteries (4-pack),2,3.84,09/27/19 22:48,"673 7th St, New York City, NY 10001" -252092,Lightning Charging Cable,1,14.95,09/12/19 11:07,"151 Chestnut St, Atlanta, GA 30301" -252093,Bose SoundSport Headphones,1,99.99,09/12/19 20:51,"964 Washington St, Los Angeles, CA 90001" -252094,AAA Batteries (4-pack),3,2.99,09/25/19 15:47,"140 Walnut St, San Francisco, CA 94016" -252095,USB-C Charging Cable,1,11.95,09/06/19 22:04,"509 Hill St, Austin, TX 73301" -252096,27in FHD Monitor,1,149.99,09/16/19 16:30,"140 Spruce St, Dallas, TX 75001" -252097,Wired Headphones,2,11.99,09/16/19 20:53,"598 Spruce St, Los Angeles, CA 90001" -252098,AAA Batteries (4-pack),1,2.99,09/01/19 14:02,"689 Spruce St, Dallas, TX 75001" -252099,Wired Headphones,1,11.99,09/26/19 12:40,"781 Park St, Austin, TX 73301" -252100,20in Monitor,1,109.99,09/14/19 20:55,"583 Park St, Austin, TX 73301" -252101,USB-C Charging Cable,1,11.95,09/18/19 23:50,"391 Walnut St, San Francisco, CA 94016" -252102,Wired Headphones,2,11.99,09/18/19 13:32,"64 Johnson St, Dallas, TX 75001" -252102,AA Batteries (4-pack),1,3.84,09/18/19 13:32,"64 Johnson St, Dallas, TX 75001" -252103,Lightning Charging Cable,1,14.95,09/14/19 14:37,"18 Pine St, Los Angeles, CA 90001" -252104,Bose SoundSport Headphones,1,99.99,09/22/19 14:05,"118 Adams St, Austin, TX 73301" -252105,Wired Headphones,1,11.99,09/25/19 17:48,"262 Lake St, Dallas, TX 75001" -252106,34in Ultrawide Monitor,1,379.99,09/12/19 17:53,"815 Cedar St, Dallas, TX 75001" -252107,Lightning Charging Cable,1,14.95,09/16/19 20:15,"255 8th St, Austin, TX 73301" -252108,27in FHD Monitor,1,149.99,09/08/19 11:13,"850 Washington St, Los Angeles, CA 90001" -252109,AA Batteries (4-pack),1,3.84,09/11/19 11:55,"687 Sunset St, San Francisco, CA 94016" -252110,USB-C Charging Cable,1,11.95,09/01/19 16:19,"869 10th St, Austin, TX 73301" -252111,Lightning Charging Cable,1,14.95,09/10/19 16:42,"619 Adams St, San Francisco, CA 94016" -252112,Apple Airpods Headphones,1,150,09/22/19 09:03,"577 1st St, New York City, NY 10001" -252113,iPhone,1,700,09/19/19 21:51,"180 Johnson St, Boston, MA 02215" -252113,Wired Headphones,1,11.99,09/19/19 21:51,"180 Johnson St, Boston, MA 02215" -252114,AAA Batteries (4-pack),1,2.99,09/10/19 14:17,"122 8th St, Atlanta, GA 30301" -252115,Wired Headphones,1,11.99,09/17/19 17:19,"763 5th St, New York City, NY 10001" -252116,Apple Airpods Headphones,1,150,09/16/19 20:48,"668 7th St, San Francisco, CA 94016" -252117,Bose SoundSport Headphones,1,99.99,09/16/19 13:47,"795 Park St, Los Angeles, CA 90001" -252118,AA Batteries (4-pack),1,3.84,09/06/19 08:03,"915 West St, Los Angeles, CA 90001" -252119,27in FHD Monitor,1,149.99,09/30/19 15:25,"639 Washington St, Los Angeles, CA 90001" -252120,34in Ultrawide Monitor,1,379.99,09/26/19 19:08,"785 West St, Seattle, WA 98101" -252121,Lightning Charging Cable,1,14.95,09/09/19 19:11,"801 Washington St, New York City, NY 10001" -252122,34in Ultrawide Monitor,1,379.99,09/04/19 18:12,"786 10th St, Boston, MA 02215" -252123,Bose SoundSport Headphones,1,99.99,09/13/19 00:31,"960 Elm St, Dallas, TX 75001" -252124,AA Batteries (4-pack),1,3.84,09/04/19 14:48,"83 Pine St, San Francisco, CA 94016" -252125,AA Batteries (4-pack),2,3.84,09/16/19 14:07,"588 13th St, Dallas, TX 75001" -252126,34in Ultrawide Monitor,1,379.99,09/09/19 03:15,"431 Hill St, San Francisco, CA 94016" -252127,Macbook Pro Laptop,1,1700,09/14/19 10:56,"239 13th St, Boston, MA 02215" -252128,Apple Airpods Headphones,1,150,09/20/19 20:17,"126 Cherry St, Los Angeles, CA 90001" -252129,AAA Batteries (4-pack),1,2.99,09/27/19 11:12,"290 Johnson St, New York City, NY 10001" -252130,AA Batteries (4-pack),1,3.84,09/09/19 16:58,"120 Elm St, San Francisco, CA 94016" -252131,USB-C Charging Cable,1,11.95,09/25/19 12:24,"245 Chestnut St, Dallas, TX 75001" -252132,iPhone,1,700,09/20/19 12:29,"569 Cedar St, New York City, NY 10001" -252132,Apple Airpods Headphones,1,150,09/20/19 12:29,"569 Cedar St, New York City, NY 10001" -252133,Lightning Charging Cable,1,14.95,09/04/19 07:31,"974 Chestnut St, Atlanta, GA 30301" -252134,ThinkPad Laptop,1,999.99,09/12/19 09:41,"698 Dogwood St, Los Angeles, CA 90001" -252135,Wired Headphones,1,11.99,09/06/19 20:31,"595 River St, San Francisco, CA 94016" -252136,Bose SoundSport Headphones,1,99.99,09/11/19 10:59,"5 Lake St, Boston, MA 02215" -252137,Lightning Charging Cable,1,14.95,09/27/19 11:51,"805 14th St, New York City, NY 10001" -252138,27in 4K Gaming Monitor,1,389.99,09/03/19 10:24,"986 Lake St, Boston, MA 02215" -252139,Wired Headphones,1,11.99,09/17/19 11:39,"844 Hill St, San Francisco, CA 94016" -252140,AA Batteries (4-pack),1,3.84,09/30/19 15:03,"582 Lake St, Atlanta, GA 30301" -252141,AAA Batteries (4-pack),1,2.99,09/24/19 22:09,"163 13th St, Los Angeles, CA 90001" -252142,Google Phone,1,600,09/18/19 20:00,"520 Willow St, Boston, MA 02215" -252143,Lightning Charging Cable,1,14.95,09/26/19 20:40,"500 Lake St, Boston, MA 02215" -252144,AA Batteries (4-pack),1,3.84,09/26/19 09:28,"840 Walnut St, San Francisco, CA 94016" -252145,Wired Headphones,1,11.99,09/19/19 12:29,"999 Sunset St, San Francisco, CA 94016" -252146,Google Phone,1,600,09/28/19 16:40,"681 Lincoln St, Los Angeles, CA 90001" -252147,Apple Airpods Headphones,1,150,09/11/19 15:12,"55 Madison St, San Francisco, CA 94016" -252148,USB-C Charging Cable,1,11.95,09/20/19 19:29,"39 Hill St, Atlanta, GA 30301" -252149,AA Batteries (4-pack),1,3.84,09/25/19 10:14,"14 5th St, Boston, MA 02215" -252150,Vareebadd Phone,1,400,09/24/19 15:01,"885 Walnut St, Portland, OR 97035" -252151,AAA Batteries (4-pack),1,2.99,09/07/19 19:43,"124 Main St, New York City, NY 10001" -252152,Wired Headphones,1,11.99,09/25/19 14:05,"903 Washington St, San Francisco, CA 94016" -252153,Wired Headphones,1,11.99,09/14/19 17:06,"4 Cherry St, Portland, OR 97035" -252154,AAA Batteries (4-pack),2,2.99,09/29/19 21:19,"436 Pine St, Portland, OR 97035" -252155,AAA Batteries (4-pack),1,2.99,09/08/19 15:13,"939 11th St, Dallas, TX 75001" -252156,AA Batteries (4-pack),1,3.84,09/05/19 13:15,"827 Dogwood St, Los Angeles, CA 90001" -252157,Lightning Charging Cable,1,14.95,09/30/19 08:41,"876 Walnut St, Portland, OR 97035" -252158,AAA Batteries (4-pack),1,2.99,09/26/19 01:05,"71 Forest St, Boston, MA 02215" -252159,Bose SoundSport Headphones,1,99.99,09/30/19 03:39,"857 Meadow St, Atlanta, GA 30301" -252160,34in Ultrawide Monitor,1,379.99,09/14/19 19:53,"636 South St, Austin, TX 73301" -252161,27in FHD Monitor,1,149.99,09/10/19 19:01,"282 North St, Seattle, WA 98101" -252162,AA Batteries (4-pack),1,3.84,09/15/19 18:12,"970 8th St, Portland, OR 97035" -252163,Wired Headphones,1,11.99,09/03/19 23:27,"423 Maple St, Seattle, WA 98101" -252164,Lightning Charging Cable,1,14.95,10/01/19 01:46,"60 River St, San Francisco, CA 94016" -252165,27in FHD Monitor,1,149.99,09/30/19 15:30,"605 6th St, Los Angeles, CA 90001" -252166,iPhone,1,700,09/13/19 14:46,"830 Jefferson St, Boston, MA 02215" -252167,Wired Headphones,1,11.99,09/28/19 22:57,"839 Hickory St, Boston, MA 02215" -252167,Google Phone,1,600,09/28/19 22:57,"839 Hickory St, Boston, MA 02215" -252168,ThinkPad Laptop,1,999.99,09/12/19 17:36,"155 Park St, San Francisco, CA 94016" -252169,Flatscreen TV,1,300,09/10/19 22:06,"854 11th St, Los Angeles, CA 90001" -252170,27in 4K Gaming Monitor,1,389.99,09/09/19 12:23,"831 North St, Los Angeles, CA 90001" -252171,27in FHD Monitor,1,149.99,09/09/19 12:58,"932 Hickory St, Portland, ME 04101" -252172,AAA Batteries (4-pack),1,2.99,09/15/19 22:02,"237 5th St, San Francisco, CA 94016" -252173,ThinkPad Laptop,1,999.99,09/29/19 12:54,"427 1st St, Seattle, WA 98101" -252174,Lightning Charging Cable,1,14.95,09/06/19 23:57,"537 Church St, Boston, MA 02215" -252175,27in 4K Gaming Monitor,1,389.99,09/18/19 10:55,"281 6th St, Dallas, TX 75001" -252176,Apple Airpods Headphones,1,150,09/02/19 14:42,"977 Willow St, Austin, TX 73301" -252177,Wired Headphones,1,11.99,09/26/19 09:22,"677 10th St, Atlanta, GA 30301" -252178,AA Batteries (4-pack),1,3.84,09/26/19 13:29,"614 Maple St, Portland, ME 04101" -252179,USB-C Charging Cable,1,11.95,09/22/19 07:18,"790 Jackson St, New York City, NY 10001" -252180,Vareebadd Phone,1,400,09/02/19 20:19,"731 Park St, Atlanta, GA 30301" -252180,USB-C Charging Cable,1,11.95,09/02/19 20:19,"731 Park St, Atlanta, GA 30301" -252181,Lightning Charging Cable,1,14.95,09/30/19 18:35,"811 North St, Dallas, TX 75001" -252182,Apple Airpods Headphones,1,150,09/09/19 15:19,"930 Hickory St, New York City, NY 10001" -252183,27in 4K Gaming Monitor,1,389.99,09/19/19 15:58,"778 Sunset St, Atlanta, GA 30301" -252184,27in FHD Monitor,1,149.99,09/22/19 18:48,"705 Lake St, Los Angeles, CA 90001" -252185,AA Batteries (4-pack),2,3.84,09/01/19 14:54,"851 Park St, Los Angeles, CA 90001" -252186,AAA Batteries (4-pack),3,2.99,09/22/19 20:11,"740 River St, Portland, OR 97035" -252187,27in FHD Monitor,1,149.99,09/28/19 22:20,"435 10th St, Los Angeles, CA 90001" -252188,Apple Airpods Headphones,1,150,09/10/19 08:42,"60 South St, Portland, OR 97035" -252189,20in Monitor,1,109.99,09/23/19 23:46,"457 12th St, Atlanta, GA 30301" -252190,USB-C Charging Cable,1,11.95,09/12/19 02:43,"32 Church St, Atlanta, GA 30301" -252191,AAA Batteries (4-pack),3,2.99,09/15/19 18:42,"914 South St, Dallas, TX 75001" -252192,34in Ultrawide Monitor,1,379.99,09/29/19 09:58,"377 Cherry St, San Francisco, CA 94016" -252193,Flatscreen TV,1,300,09/05/19 17:39,"261 Washington St, Dallas, TX 75001" -252194,20in Monitor,1,109.99,09/09/19 10:01,"883 Church St, Atlanta, GA 30301" -,,,,, -252195,Bose SoundSport Headphones,1,99.99,09/23/19 10:46,"870 Lakeview St, San Francisco, CA 94016" -252196,27in FHD Monitor,1,149.99,09/12/19 17:13,"185 10th St, Los Angeles, CA 90001" -252197,AAA Batteries (4-pack),1,2.99,09/04/19 18:20,"317 Church St, Dallas, TX 75001" -252198,Lightning Charging Cable,1,14.95,09/09/19 15:29,"431 Chestnut St, Los Angeles, CA 90001" -252199,USB-C Charging Cable,2,11.95,09/22/19 13:16,"316 South St, San Francisco, CA 94016" -252200,AAA Batteries (4-pack),2,2.99,09/16/19 19:19,"295 Madison St, New York City, NY 10001" -252201,AA Batteries (4-pack),1,3.84,09/16/19 22:26,"533 7th St, New York City, NY 10001" -252202,27in 4K Gaming Monitor,1,389.99,10/01/19 00:43,"333 Sunset St, Portland, OR 97035" -252203,Wired Headphones,1,11.99,09/24/19 22:47,"619 Willow St, New York City, NY 10001" -252204,Apple Airpods Headphones,1,150,09/21/19 23:40,"839 Highland St, Los Angeles, CA 90001" -252205,Wired Headphones,1,11.99,09/11/19 16:43,"339 10th St, San Francisco, CA 94016" -252206,LG Dryer,1,600.0,09/15/19 23:48,"957 Washington St, San Francisco, CA 94016" -252207,AAA Batteries (4-pack),1,2.99,09/14/19 17:42,"717 North St, Los Angeles, CA 90001" -252208,Apple Airpods Headphones,1,150,09/05/19 10:30,"415 Main St, Dallas, TX 75001" -252209,AA Batteries (4-pack),2,3.84,09/15/19 15:44,"515 14th St, San Francisco, CA 94016" -252210,AAA Batteries (4-pack),2,2.99,09/01/19 19:11,"402 11th St, Boston, MA 02215" -252211,Macbook Pro Laptop,1,1700,09/08/19 10:10,"293 Madison St, Boston, MA 02215" -252212,AAA Batteries (4-pack),1,2.99,09/04/19 00:09,"867 Madison St, Los Angeles, CA 90001" -252213,AAA Batteries (4-pack),1,2.99,09/04/19 16:15,"423 2nd St, Los Angeles, CA 90001" -252214,34in Ultrawide Monitor,1,379.99,09/21/19 18:02,"667 Church St, Portland, OR 97035" -252215,AAA Batteries (4-pack),1,2.99,09/05/19 21:44,"287 11th St, Seattle, WA 98101" -252216,USB-C Charging Cable,1,11.95,09/30/19 11:59,"636 Washington St, San Francisco, CA 94016" -252217,LG Washing Machine,1,600.0,09/04/19 21:53,"693 Chestnut St, Boston, MA 02215" -252218,AA Batteries (4-pack),1,3.84,09/18/19 04:03,"508 Dogwood St, San Francisco, CA 94016" -252219,AAA Batteries (4-pack),1,2.99,09/24/19 08:47,"433 Forest St, Austin, TX 73301" -252220,Wired Headphones,1,11.99,09/18/19 13:01,"35 Washington St, San Francisco, CA 94016" -252221,27in FHD Monitor,1,149.99,09/15/19 19:02,"376 Adams St, Austin, TX 73301" -252222,Flatscreen TV,1,300,09/14/19 06:47,"724 1st St, Los Angeles, CA 90001" -252223,AA Batteries (4-pack),1,3.84,09/01/19 19:57,"287 5th St, San Francisco, CA 94016" -252224,Apple Airpods Headphones,1,150,09/26/19 09:32,"374 Chestnut St, Boston, MA 02215" -252225,Lightning Charging Cable,1,14.95,09/13/19 20:41,"899 Elm St, Boston, MA 02215" -252226,Wired Headphones,1,11.99,09/02/19 13:22,"854 Madison St, Atlanta, GA 30301" -252227,Wired Headphones,1,11.99,09/24/19 17:41,"547 Hill St, San Francisco, CA 94016" -252228,Lightning Charging Cable,1,14.95,09/27/19 15:54,"376 Meadow St, Seattle, WA 98101" -252229,Bose SoundSport Headphones,1,99.99,09/10/19 21:45,"255 Jackson St, Boston, MA 02215" -252230,USB-C Charging Cable,1,11.95,09/07/19 13:36,"74 5th St, San Francisco, CA 94016" -252231,Lightning Charging Cable,1,14.95,09/20/19 14:28,"552 Lake St, New York City, NY 10001" -252232,Flatscreen TV,1,300,09/14/19 19:35,"47 Chestnut St, Boston, MA 02215" -252233,AAA Batteries (4-pack),1,2.99,09/29/19 21:19,"905 Church St, Dallas, TX 75001" -252234,USB-C Charging Cable,3,11.95,09/29/19 10:21,"744 Spruce St, Austin, TX 73301" -252235,Macbook Pro Laptop,1,1700,09/17/19 02:54,"784 Chestnut St, San Francisco, CA 94016" -252236,Wired Headphones,1,11.99,09/16/19 23:21,"13 Lincoln St, New York City, NY 10001" -252237,USB-C Charging Cable,1,11.95,09/07/19 16:34,"645 Ridge St, San Francisco, CA 94016" -252238,Apple Airpods Headphones,1,150,09/21/19 22:09,"513 Cedar St, Los Angeles, CA 90001" -,,,,, -252239,Lightning Charging Cable,1,14.95,09/15/19 13:00,"520 2nd St, Los Angeles, CA 90001" -252240,27in 4K Gaming Monitor,1,389.99,09/07/19 11:45,"74 8th St, Austin, TX 73301" -252241,Wired Headphones,1,11.99,09/08/19 11:22,"5 5th St, Boston, MA 02215" -252242,USB-C Charging Cable,1,11.95,09/28/19 01:03,"638 Hill St, New York City, NY 10001" -252243,AA Batteries (4-pack),2,3.84,09/17/19 16:59,"936 4th St, Los Angeles, CA 90001" -252244,Bose SoundSport Headphones,1,99.99,09/17/19 20:23,"297 West St, San Francisco, CA 94016" -252245,AAA Batteries (4-pack),1,2.99,09/17/19 18:12,"834 Chestnut St, Dallas, TX 75001" -252246,Bose SoundSport Headphones,1,99.99,09/09/19 20:24,"109 Lincoln St, New York City, NY 10001" -252247,USB-C Charging Cable,1,11.95,09/12/19 10:22,"960 Main St, Atlanta, GA 30301" -252248,AA Batteries (4-pack),1,3.84,09/17/19 19:08,"925 Lake St, San Francisco, CA 94016" -252249,AA Batteries (4-pack),3,3.84,09/25/19 18:13,"528 4th St, Dallas, TX 75001" -252249,Flatscreen TV,1,300,09/25/19 18:13,"528 4th St, Dallas, TX 75001" -252250,AAA Batteries (4-pack),1,2.99,09/09/19 11:08,"892 Walnut St, Seattle, WA 98101" -252251,USB-C Charging Cable,1,11.95,09/06/19 19:33,"809 4th St, Dallas, TX 75001" -252252,USB-C Charging Cable,1,11.95,09/11/19 03:54,"166 Park St, New York City, NY 10001" -252253,Apple Airpods Headphones,1,150,09/28/19 19:27,"370 Madison St, Seattle, WA 98101" -252253,Wired Headphones,1,11.99,09/28/19 19:27,"370 Madison St, Seattle, WA 98101" -252254,AA Batteries (4-pack),1,3.84,09/25/19 22:06,"475 Hill St, Boston, MA 02215" -252255,USB-C Charging Cable,1,11.95,09/07/19 03:37,"502 Washington St, New York City, NY 10001" -252256,Bose SoundSport Headphones,1,99.99,09/19/19 11:20,"103 6th St, New York City, NY 10001" -252257,AAA Batteries (4-pack),2,2.99,09/09/19 20:58,"550 Hill St, Austin, TX 73301" -252258,Lightning Charging Cable,1,14.95,09/11/19 11:52,"396 Spruce St, New York City, NY 10001" -252259,Wired Headphones,1,11.99,09/07/19 13:38,"81 River St, Dallas, TX 75001" -252260,USB-C Charging Cable,1,11.95,09/17/19 08:21,"782 Forest St, San Francisco, CA 94016" -252261,Lightning Charging Cable,1,14.95,09/07/19 16:10,"557 11th St, Boston, MA 02215" -252262,AA Batteries (4-pack),3,3.84,09/28/19 18:16,"338 7th St, Los Angeles, CA 90001" -252263,Flatscreen TV,1,300,09/05/19 12:28,"546 Ridge St, Los Angeles, CA 90001" -252264,Wired Headphones,1,11.99,09/20/19 18:03,"382 Cherry St, Dallas, TX 75001" -252265,Bose SoundSport Headphones,1,99.99,09/30/19 14:18,"889 9th St, Boston, MA 02215" -252266,Lightning Charging Cable,2,14.95,09/20/19 09:52,"395 Walnut St, Seattle, WA 98101" -252267,Wired Headphones,1,11.99,09/11/19 09:10,"133 Spruce St, Los Angeles, CA 90001" -252268,Lightning Charging Cable,1,14.95,09/30/19 21:54,"670 9th St, Boston, MA 02215" -252269,Lightning Charging Cable,1,14.95,09/05/19 16:12,"281 South St, Atlanta, GA 30301" -252270,AAA Batteries (4-pack),2,2.99,09/19/19 14:01,"781 4th St, New York City, NY 10001" -252271,Lightning Charging Cable,1,14.95,09/20/19 22:15,"467 14th St, Boston, MA 02215" -252272,Lightning Charging Cable,1,14.95,09/30/19 21:47,"227 9th St, San Francisco, CA 94016" -252273,Bose SoundSport Headphones,1,99.99,09/14/19 23:10,"716 6th St, San Francisco, CA 94016" -252274,USB-C Charging Cable,1,11.95,09/24/19 04:45,"821 Maple St, Atlanta, GA 30301" -252275,Apple Airpods Headphones,1,150,09/19/19 17:03,"852 Sunset St, Portland, OR 97035" -252276,Apple Airpods Headphones,1,150,09/08/19 12:37,"83 Park St, San Francisco, CA 94016" -252277,USB-C Charging Cable,1,11.95,09/11/19 12:37,"383 River St, Seattle, WA 98101" -252278,Lightning Charging Cable,1,14.95,09/11/19 21:05,"218 9th St, Los Angeles, CA 90001" -252279,Wired Headphones,1,11.99,09/08/19 16:43,"255 Lakeview St, San Francisco, CA 94016" -252280,USB-C Charging Cable,1,11.95,09/08/19 19:12,"147 Lake St, San Francisco, CA 94016" -252281,USB-C Charging Cable,1,11.95,09/24/19 21:24,"867 Forest St, Dallas, TX 75001" -252282,iPhone,1,700,09/04/19 18:35,"943 Park St, San Francisco, CA 94016" -252282,Apple Airpods Headphones,1,150,09/04/19 18:35,"943 Park St, San Francisco, CA 94016" -252283,Lightning Charging Cable,1,14.95,09/10/19 21:49,"421 Washington St, San Francisco, CA 94016" -252284,AAA Batteries (4-pack),1,2.99,09/19/19 22:02,"943 Pine St, Atlanta, GA 30301" -252285,27in 4K Gaming Monitor,1,389.99,09/05/19 22:09,"207 9th St, New York City, NY 10001" -252286,AA Batteries (4-pack),1,3.84,09/30/19 11:21,"924 Pine St, Seattle, WA 98101" -252287,Lightning Charging Cable,1,14.95,09/11/19 08:43,"933 Pine St, New York City, NY 10001" -252288,Apple Airpods Headphones,1,150,09/20/19 08:54,"133 Sunset St, Los Angeles, CA 90001" -252289,Flatscreen TV,1,300,09/14/19 19:42,"665 Washington St, San Francisco, CA 94016" -252290,AA Batteries (4-pack),1,3.84,09/03/19 08:13,"810 Highland St, New York City, NY 10001" -252291,AAA Batteries (4-pack),1,2.99,09/02/19 21:13,"846 Wilson St, Austin, TX 73301" -252292,20in Monitor,1,109.99,09/15/19 15:08,"947 7th St, Seattle, WA 98101" -252293,USB-C Charging Cable,1,11.95,09/27/19 12:53,"762 Jefferson St, Dallas, TX 75001" -252294,AA Batteries (4-pack),1,3.84,09/08/19 08:58,"327 Dogwood St, San Francisco, CA 94016" -252295,AA Batteries (4-pack),1,3.84,09/16/19 10:43,"577 South St, Seattle, WA 98101" -252296,Bose SoundSport Headphones,1,99.99,09/02/19 14:52,"15 Madison St, New York City, NY 10001" -252297,Apple Airpods Headphones,1,150,09/10/19 16:15,"434 1st St, Dallas, TX 75001" -252298,LG Washing Machine,1,600.0,09/28/19 08:15,"697 Dogwood St, Dallas, TX 75001" -252299,Wired Headphones,1,11.99,09/11/19 11:53,"903 Lake St, San Francisco, CA 94016" -252300,AA Batteries (4-pack),1,3.84,09/21/19 19:36,"91 North St, Dallas, TX 75001" -252301,iPhone,1,700,09/08/19 11:39,"462 14th St, San Francisco, CA 94016" -252302,USB-C Charging Cable,1,11.95,09/12/19 12:09,"291 South St, Portland, ME 04101" -252303,AA Batteries (4-pack),1,3.84,09/19/19 11:24,"627 5th St, Los Angeles, CA 90001" -252304,USB-C Charging Cable,2,11.95,09/18/19 12:49,"808 Johnson St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -252305,Vareebadd Phone,1,400,09/15/19 23:05,"866 6th St, San Francisco, CA 94016" -252305,USB-C Charging Cable,1,11.95,09/15/19 23:05,"866 6th St, San Francisco, CA 94016" -252306,Lightning Charging Cable,2,14.95,09/04/19 22:44,"827 13th St, Atlanta, GA 30301" -252307,USB-C Charging Cable,1,11.95,09/06/19 17:38,"131 Highland St, Los Angeles, CA 90001" -252308,iPhone,1,700,09/17/19 11:31,"870 8th St, San Francisco, CA 94016" -252309,Wired Headphones,1,11.99,09/15/19 11:34,"295 Cedar St, San Francisco, CA 94016" -252310,27in FHD Monitor,1,149.99,09/02/19 09:42,"647 Sunset St, New York City, NY 10001" -252311,Macbook Pro Laptop,1,1700,09/18/19 19:24,"77 Highland St, Portland, OR 97035" -252312,AAA Batteries (4-pack),1,2.99,09/19/19 16:29,"845 Lincoln St, Los Angeles, CA 90001" -252313,Flatscreen TV,1,300,09/04/19 12:12,"188 West St, Los Angeles, CA 90001" -252314,Wired Headphones,1,11.99,09/23/19 11:35,"275 9th St, Atlanta, GA 30301" -252315,iPhone,1,700,09/15/19 23:41,"640 Forest St, Seattle, WA 98101" -252315,Apple Airpods Headphones,1,150,09/15/19 23:41,"640 Forest St, Seattle, WA 98101" -252315,Wired Headphones,1,11.99,09/15/19 23:41,"640 Forest St, Seattle, WA 98101" -252316,AAA Batteries (4-pack),1,2.99,09/25/19 00:19,"329 Highland St, Los Angeles, CA 90001" -252317,Macbook Pro Laptop,1,1700,09/26/19 17:03,"771 6th St, Atlanta, GA 30301" -252318,USB-C Charging Cable,1,11.95,09/23/19 19:30,"553 River St, San Francisco, CA 94016" -252319,20in Monitor,1,109.99,09/14/19 07:57,"736 Chestnut St, Austin, TX 73301" -252320,Bose SoundSport Headphones,1,99.99,09/10/19 12:56,"746 Forest St, San Francisco, CA 94016" -252321,34in Ultrawide Monitor,1,379.99,09/14/19 14:19,"447 Sunset St, San Francisco, CA 94016" -252322,ThinkPad Laptop,1,999.99,09/02/19 16:03,"701 Spruce St, New York City, NY 10001" -252323,Lightning Charging Cable,1,14.95,09/09/19 10:42,"645 9th St, Dallas, TX 75001" -252324,Lightning Charging Cable,1,14.95,09/19/19 10:57,"130 Meadow St, San Francisco, CA 94016" -252325,AA Batteries (4-pack),4,3.84,09/28/19 21:31,"611 8th St, Los Angeles, CA 90001" -252326,AA Batteries (4-pack),1,3.84,09/26/19 13:19,"40 Hill St, Los Angeles, CA 90001" -252327,AAA Batteries (4-pack),1,2.99,09/02/19 09:07,"686 Madison St, Portland, OR 97035" -252328,Bose SoundSport Headphones,1,99.99,09/17/19 12:40,"323 Lakeview St, Los Angeles, CA 90001" -252328,27in FHD Monitor,1,149.99,09/17/19 12:40,"323 Lakeview St, Los Angeles, CA 90001" -252329,AAA Batteries (4-pack),1,2.99,09/03/19 15:46,"903 Lakeview St, Seattle, WA 98101" -252330,Wired Headphones,1,11.99,09/01/19 23:44,"375 Park St, New York City, NY 10001" -252331,AAA Batteries (4-pack),1,2.99,09/27/19 22:40,"908 1st St, Boston, MA 02215" -252332,Google Phone,1,600,09/27/19 19:25,"916 Lincoln St, Boston, MA 02215" -252333,iPhone,1,700,09/11/19 19:42,"96 Spruce St, Boston, MA 02215" -252334,ThinkPad Laptop,1,999.99,09/28/19 14:53,"27 5th St, Los Angeles, CA 90001" -252335,AA Batteries (4-pack),1,3.84,09/17/19 11:50,"233 Highland St, Dallas, TX 75001" -252336,Bose SoundSport Headphones,1,99.99,09/03/19 16:01,"75 Ridge St, Boston, MA 02215" -252337,USB-C Charging Cable,1,11.95,09/12/19 08:40,"556 Maple St, Portland, OR 97035" -252338,USB-C Charging Cable,1,11.95,09/11/19 14:51,"847 Meadow St, Seattle, WA 98101" -252339,Apple Airpods Headphones,1,150,09/08/19 19:56,"666 Washington St, San Francisco, CA 94016" -252340,34in Ultrawide Monitor,1,379.99,09/25/19 11:13,"981 Ridge St, New York City, NY 10001" -252341,USB-C Charging Cable,1,11.95,09/17/19 03:38,"216 11th St, Austin, TX 73301" -252342,34in Ultrawide Monitor,1,379.99,09/02/19 12:32,"181 14th St, New York City, NY 10001" -252343,USB-C Charging Cable,1,11.95,09/18/19 10:55,"523 Pine St, San Francisco, CA 94016" -252344,AA Batteries (4-pack),1,3.84,09/01/19 19:35,"209 Meadow St, Los Angeles, CA 90001" -252345,27in FHD Monitor,1,149.99,09/03/19 15:12,"942 Forest St, Los Angeles, CA 90001" -252346,Apple Airpods Headphones,1,150,09/07/19 18:42,"34 South St, Portland, OR 97035" -252346,Lightning Charging Cable,1,14.95,09/07/19 18:42,"34 South St, Portland, OR 97035" -252347,USB-C Charging Cable,1,11.95,09/16/19 00:18,"609 10th St, Los Angeles, CA 90001" -252348,iPhone,1,700,09/21/19 19:26,"964 Center St, Boston, MA 02215" -252349,Bose SoundSport Headphones,1,99.99,09/20/19 18:08,"602 Center St, New York City, NY 10001" -252350,Lightning Charging Cable,1,14.95,09/15/19 20:19,"14 12th St, Boston, MA 02215" -252351,Wired Headphones,1,11.99,09/02/19 21:38,"36 10th St, Dallas, TX 75001" -252352,USB-C Charging Cable,1,11.95,09/13/19 13:33,"823 Lincoln St, San Francisco, CA 94016" -252353,USB-C Charging Cable,1,11.95,09/22/19 09:17,"835 Sunset St, Portland, OR 97035" -252354,Lightning Charging Cable,1,14.95,09/24/19 20:39,"981 1st St, Dallas, TX 75001" -252355,Lightning Charging Cable,1,14.95,09/05/19 08:32,"231 Cedar St, New York City, NY 10001" -252356,Bose SoundSport Headphones,1,99.99,09/24/19 17:29,"790 Sunset St, Los Angeles, CA 90001" -252357,Wired Headphones,1,11.99,09/05/19 22:43,"923 5th St, San Francisco, CA 94016" -252358,Lightning Charging Cable,1,14.95,09/13/19 16:27,"878 13th St, Seattle, WA 98101" -252359,Flatscreen TV,1,300,09/04/19 13:10,"988 Park St, San Francisco, CA 94016" -252360,Lightning Charging Cable,1,14.95,09/08/19 18:20,"513 Adams St, Austin, TX 73301" -252361,AA Batteries (4-pack),1,3.84,09/17/19 13:31,"356 Washington St, Atlanta, GA 30301" -252362,Google Phone,1,600,09/12/19 08:14,"986 Spruce St, San Francisco, CA 94016" -252363,Apple Airpods Headphones,1,150,09/19/19 17:22,"191 Pine St, San Francisco, CA 94016" -252364,Macbook Pro Laptop,1,1700,09/26/19 22:39,"111 5th St, Boston, MA 02215" -252365,AA Batteries (4-pack),2,3.84,09/09/19 11:02,"703 9th St, San Francisco, CA 94016" -252366,Bose SoundSport Headphones,1,99.99,09/08/19 21:42,"512 9th St, San Francisco, CA 94016" -252367,AA Batteries (4-pack),2,3.84,09/01/19 20:24,"346 Highland St, Los Angeles, CA 90001" -252368,USB-C Charging Cable,1,11.95,09/11/19 21:34,"755 Lake St, Austin, TX 73301" -252369,Bose SoundSport Headphones,1,99.99,09/12/19 16:34,"90 Maple St, Atlanta, GA 30301" -252370,USB-C Charging Cable,1,11.95,09/06/19 00:01,"129 Pine St, New York City, NY 10001" -252371,Macbook Pro Laptop,1,1700,09/04/19 01:00,"120 River St, New York City, NY 10001" -252372,Bose SoundSport Headphones,1,99.99,09/12/19 22:26,"356 Adams St, Los Angeles, CA 90001" -252373,AA Batteries (4-pack),2,3.84,09/01/19 07:56,"128 Hill St, San Francisco, CA 94016" -252374,Wired Headphones,1,11.99,09/28/19 19:24,"119 River St, Dallas, TX 75001" -252375,AAA Batteries (4-pack),3,2.99,09/19/19 17:43,"296 2nd St, Los Angeles, CA 90001" -252376,LG Washing Machine,1,600.0,09/17/19 13:35,"384 7th St, Portland, OR 97035" -252377,Macbook Pro Laptop,1,1700,09/02/19 08:48,"712 9th St, Atlanta, GA 30301" -252378,USB-C Charging Cable,1,11.95,09/04/19 12:31,"484 7th St, San Francisco, CA 94016" -252379,USB-C Charging Cable,1,11.95,09/20/19 10:10,"80 Maple St, Boston, MA 02215" -252380,Apple Airpods Headphones,1,150,09/25/19 23:04,"774 Jefferson St, Boston, MA 02215" -252381,20in Monitor,1,109.99,09/27/19 16:50,"946 Maple St, Los Angeles, CA 90001" -252382,Lightning Charging Cable,1,14.95,09/06/19 11:49,"960 River St, New York City, NY 10001" -252383,Flatscreen TV,1,300,09/11/19 14:02,"747 6th St, New York City, NY 10001" -252383,Lightning Charging Cable,1,14.95,09/11/19 14:02,"747 6th St, New York City, NY 10001" -252384,AAA Batteries (4-pack),1,2.99,09/04/19 14:13,"138 8th St, Austin, TX 73301" -252385,27in FHD Monitor,1,149.99,09/15/19 16:31,"594 Willow St, Los Angeles, CA 90001" -252386,Lightning Charging Cable,1,14.95,09/16/19 18:36,"606 Dogwood St, San Francisco, CA 94016" -252387,USB-C Charging Cable,1,11.95,09/23/19 22:21,"797 Dogwood St, Portland, OR 97035" -252388,ThinkPad Laptop,1,999.99,09/16/19 21:28,"229 14th St, Seattle, WA 98101" -252389,AA Batteries (4-pack),1,3.84,09/15/19 12:00,"351 River St, Seattle, WA 98101" -252390,Wired Headphones,1,11.99,09/02/19 04:32,"913 Pine St, Austin, TX 73301" -252391,Apple Airpods Headphones,1,150,09/15/19 00:51,"545 5th St, New York City, NY 10001" -252392,USB-C Charging Cable,1,11.95,09/28/19 11:47,"733 Chestnut St, New York City, NY 10001" -252393,Apple Airpods Headphones,1,150,09/10/19 11:41,"52 Hill St, Boston, MA 02215" -252394,Wired Headphones,1,11.99,09/06/19 08:51,"569 Cherry St, Dallas, TX 75001" -252395,Wired Headphones,1,11.99,09/14/19 00:44,"214 8th St, Los Angeles, CA 90001" -252396,USB-C Charging Cable,1,11.95,09/15/19 15:56,"948 Washington St, Los Angeles, CA 90001" -252397,USB-C Charging Cable,1,11.95,09/14/19 07:40,"410 1st St, New York City, NY 10001" -252398,Vareebadd Phone,1,400,09/06/19 14:24,"399 North St, San Francisco, CA 94016" -252399,Macbook Pro Laptop,1,1700,09/18/19 14:22,"635 Hill St, Dallas, TX 75001" -252399,AA Batteries (4-pack),1,3.84,09/18/19 14:22,"635 Hill St, Dallas, TX 75001" -252400,USB-C Charging Cable,1,11.95,09/09/19 15:35,"454 Park St, Portland, OR 97035" -252401,27in FHD Monitor,1,149.99,09/10/19 16:18,"49 Madison St, San Francisco, CA 94016" -252402,Wired Headphones,1,11.99,09/29/19 09:26,"204 Hickory St, San Francisco, CA 94016" -252403,AAA Batteries (4-pack),1,2.99,10/01/19 00:11,"548 6th St, Dallas, TX 75001" -252404,Lightning Charging Cable,2,14.95,09/11/19 04:47,"506 Cherry St, Austin, TX 73301" -252405,ThinkPad Laptop,1,999.99,09/01/19 08:11,"782 South St, New York City, NY 10001" -252406,Lightning Charging Cable,1,14.95,09/07/19 19:51,"192 Maple St, New York City, NY 10001" -252407,USB-C Charging Cable,2,11.95,09/09/19 21:51,"508 Highland St, Los Angeles, CA 90001" -252408,Apple Airpods Headphones,1,150,09/17/19 17:59,"354 River St, Austin, TX 73301" -252409,Wired Headphones,1,11.99,09/21/19 11:23,"746 Dogwood St, Portland, OR 97035" -252410,AAA Batteries (4-pack),2,2.99,09/29/19 00:04,"43 Park St, Portland, OR 97035" -252411,USB-C Charging Cable,1,11.95,09/19/19 17:25,"877 2nd St, San Francisco, CA 94016" -252412,Lightning Charging Cable,2,14.95,09/09/19 17:48,"225 Park St, Dallas, TX 75001" -252413,USB-C Charging Cable,1,11.95,09/30/19 21:32,"604 9th St, San Francisco, CA 94016" -252414,AAA Batteries (4-pack),1,2.99,09/05/19 18:56,"248 5th St, Boston, MA 02215" -252415,Apple Airpods Headphones,1,150,09/30/19 12:26,"202 Spruce St, New York City, NY 10001" -252416,AA Batteries (4-pack),1,3.84,09/07/19 20:53,"32 Meadow St, Los Angeles, CA 90001" -252417,USB-C Charging Cable,2,11.95,09/14/19 07:56,"183 Johnson St, San Francisco, CA 94016" -252418,AA Batteries (4-pack),2,3.84,09/08/19 12:08,"579 Adams St, Boston, MA 02215" -252419,ThinkPad Laptop,1,999.99,09/15/19 13:23,"640 Church St, New York City, NY 10001" -252420,USB-C Charging Cable,1,11.95,09/28/19 08:34,"881 Lake St, San Francisco, CA 94016" -252421,AA Batteries (4-pack),1,3.84,09/11/19 09:38,"461 9th St, Seattle, WA 98101" -252422,Flatscreen TV,1,300,09/19/19 13:31,"163 Jefferson St, San Francisco, CA 94016" -252423,Flatscreen TV,1,300,09/07/19 07:39,"469 Highland St, Los Angeles, CA 90001" -252424,Apple Airpods Headphones,1,150,09/29/19 20:18,"504 Maple St, Portland, OR 97035" -252425,AAA Batteries (4-pack),1,2.99,09/14/19 10:26,"754 8th St, Austin, TX 73301" -252426,Lightning Charging Cable,1,14.95,09/05/19 08:16,"266 1st St, Los Angeles, CA 90001" -252427,USB-C Charging Cable,1,11.95,09/23/19 21:19,"846 Adams St, San Francisco, CA 94016" -252428,20in Monitor,1,109.99,09/04/19 21:03,"44 Lake St, Atlanta, GA 30301" -252429,USB-C Charging Cable,1,11.95,09/08/19 21:25,"636 Chestnut St, San Francisco, CA 94016" -252430,AAA Batteries (4-pack),2,2.99,09/24/19 14:38,"612 Walnut St, Austin, TX 73301" -252431,AAA Batteries (4-pack),1,2.99,09/11/19 16:30,"648 9th St, San Francisco, CA 94016" -252432,Macbook Pro Laptop,1,1700,09/15/19 09:23,"504 Willow St, Atlanta, GA 30301" -252433,27in 4K Gaming Monitor,1,389.99,09/13/19 11:29,"432 Washington St, San Francisco, CA 94016" -252434,Flatscreen TV,1,300,09/03/19 09:11,"988 Walnut St, Dallas, TX 75001" -252435,27in FHD Monitor,1,149.99,09/17/19 06:59,"377 Chestnut St, Austin, TX 73301" -252436,Bose SoundSport Headphones,1,99.99,09/08/19 10:39,"138 Lakeview St, Seattle, WA 98101" -252437,Apple Airpods Headphones,1,150,09/22/19 16:37,"300 Spruce St, Seattle, WA 98101" -252437,34in Ultrawide Monitor,1,379.99,09/22/19 16:37,"300 Spruce St, Seattle, WA 98101" -252438,Apple Airpods Headphones,1,150,09/21/19 17:23,"458 Park St, San Francisco, CA 94016" -252439,20in Monitor,1,109.99,09/17/19 11:26,"872 Hill St, Portland, OR 97035" -252440,Apple Airpods Headphones,1,150,09/14/19 19:01,"98 11th St, Boston, MA 02215" -252441,Bose SoundSport Headphones,1,99.99,09/10/19 23:01,"178 South St, Seattle, WA 98101" -252442,20in Monitor,2,109.99,09/17/19 20:12,"860 8th St, Atlanta, GA 30301" -252443,USB-C Charging Cable,1,11.95,09/19/19 18:02,"397 4th St, Los Angeles, CA 90001" -252444,Lightning Charging Cable,1,14.95,09/21/19 21:52,"654 Hickory St, New York City, NY 10001" -252445,Wired Headphones,2,11.99,09/07/19 21:34,"204 8th St, San Francisco, CA 94016" -252446,27in FHD Monitor,1,149.99,09/21/19 02:41,"651 Ridge St, Los Angeles, CA 90001" -252447,Google Phone,1,600,09/05/19 14:40,"849 Willow St, Los Angeles, CA 90001" -252448,Wired Headphones,1,11.99,09/09/19 17:39,"24 Ridge St, San Francisco, CA 94016" -252449,AA Batteries (4-pack),1,3.84,09/06/19 12:28,"537 Ridge St, Seattle, WA 98101" -252450,Lightning Charging Cable,1,14.95,09/28/19 11:51,"74 Cedar St, Seattle, WA 98101" -252451,AA Batteries (4-pack),1,3.84,09/01/19 19:37,"17 River St, San Francisco, CA 94016" -252452,Flatscreen TV,1,300,09/08/19 22:58,"843 Jefferson St, Dallas, TX 75001" -252453,AAA Batteries (4-pack),2,2.99,09/19/19 22:52,"258 Cedar St, San Francisco, CA 94016" -252454,Wired Headphones,1,11.99,09/04/19 17:40,"426 Spruce St, Dallas, TX 75001" -252455,AA Batteries (4-pack),1,3.84,09/23/19 12:06,"373 Adams St, Seattle, WA 98101" -252456,27in 4K Gaming Monitor,1,389.99,09/05/19 21:47,"335 Meadow St, Boston, MA 02215" -252457,Lightning Charging Cable,1,14.95,09/09/19 11:40,"250 Meadow St, New York City, NY 10001" -252458,USB-C Charging Cable,1,11.95,09/09/19 17:53,"64 12th St, Los Angeles, CA 90001" -252459,AA Batteries (4-pack),1,3.84,09/20/19 20:16,"132 Sunset St, San Francisco, CA 94016" -252460,Lightning Charging Cable,1,14.95,09/20/19 14:41,"953 8th St, San Francisco, CA 94016" -252461,AAA Batteries (4-pack),1,2.99,09/12/19 12:56,"727 Elm St, San Francisco, CA 94016" -252462,Wired Headphones,1,11.99,09/26/19 19:43,"85 13th St, New York City, NY 10001" -252463,USB-C Charging Cable,1,11.95,09/09/19 18:24,"209 Church St, Atlanta, GA 30301" -252464,Lightning Charging Cable,1,14.95,09/27/19 06:23,"100 7th St, San Francisco, CA 94016" -252465,27in 4K Gaming Monitor,1,389.99,09/18/19 15:53,"364 10th St, Dallas, TX 75001" -252466,Flatscreen TV,1,300,09/20/19 23:44,"346 Jefferson St, Atlanta, GA 30301" -252467,Wired Headphones,1,11.99,09/23/19 21:46,"374 Dogwood St, New York City, NY 10001" -252468,Lightning Charging Cable,1,14.95,09/08/19 17:10,"700 Hickory St, New York City, NY 10001" -252469,Lightning Charging Cable,1,14.95,09/27/19 18:46,"890 5th St, Los Angeles, CA 90001" -252470,AAA Batteries (4-pack),1,2.99,09/15/19 12:32,"197 5th St, Dallas, TX 75001" -252471,Lightning Charging Cable,1,14.95,09/23/19 21:12,"216 Elm St, San Francisco, CA 94016" -252472,Wired Headphones,1,11.99,09/21/19 20:47,"873 Wilson St, Los Angeles, CA 90001" -252473,AA Batteries (4-pack),1,3.84,09/12/19 08:29,"772 Wilson St, Dallas, TX 75001" -252474,USB-C Charging Cable,1,11.95,09/26/19 01:32,"476 Hill St, San Francisco, CA 94016" -252475,LG Dryer,1,600.0,09/12/19 22:06,"558 Elm St, San Francisco, CA 94016" -252476,Apple Airpods Headphones,1,150,09/20/19 18:16,"939 Jackson St, Austin, TX 73301" -252477,Lightning Charging Cable,2,14.95,09/19/19 19:46,"479 Cherry St, New York City, NY 10001" -252478,Lightning Charging Cable,1,14.95,09/21/19 10:58,"472 Jackson St, New York City, NY 10001" -252479,USB-C Charging Cable,1,11.95,09/29/19 14:25,"499 North St, Austin, TX 73301" -252480,Lightning Charging Cable,1,14.95,09/12/19 01:13,"934 14th St, Seattle, WA 98101" -252481,AA Batteries (4-pack),1,3.84,09/11/19 11:11,"149 Lakeview St, Los Angeles, CA 90001" -252482,Wired Headphones,1,11.99,09/13/19 13:11,"422 Elm St, Los Angeles, CA 90001" -252483,Bose SoundSport Headphones,1,99.99,09/16/19 21:56,"29 14th St, San Francisco, CA 94016" -252484,Wired Headphones,1,11.99,09/30/19 14:51,"452 Jefferson St, Portland, OR 97035" -252485,AA Batteries (4-pack),1,3.84,09/24/19 12:10,"593 Adams St, San Francisco, CA 94016" -252486,Lightning Charging Cable,1,14.95,09/14/19 00:58,"242 5th St, Atlanta, GA 30301" -252487,USB-C Charging Cable,1,11.95,09/22/19 23:23,"724 Dogwood St, New York City, NY 10001" -252488,Bose SoundSport Headphones,1,99.99,09/28/19 17:57,"937 River St, Seattle, WA 98101" -252489,USB-C Charging Cable,1,11.95,09/06/19 17:05,"842 Center St, Boston, MA 02215" -252490,Lightning Charging Cable,1,14.95,09/03/19 16:59,"228 Lakeview St, Portland, OR 97035" -252491,Apple Airpods Headphones,1,150,09/28/19 15:01,"950 Cedar St, New York City, NY 10001" -252492,USB-C Charging Cable,1,11.95,09/29/19 01:43,"164 Lakeview St, Austin, TX 73301" -252493,AA Batteries (4-pack),1,3.84,09/08/19 22:08,"503 Highland St, Dallas, TX 75001" -252494,Wired Headphones,3,11.99,09/19/19 15:17,"466 13th St, Dallas, TX 75001" -252495,AA Batteries (4-pack),1,3.84,09/17/19 20:16,"637 Forest St, Atlanta, GA 30301" -252496,Bose SoundSport Headphones,1,99.99,09/11/19 15:42,"740 Hill St, Dallas, TX 75001" -252497,Macbook Pro Laptop,1,1700,09/14/19 10:13,"89 Adams St, Austin, TX 73301" -252498,AA Batteries (4-pack),1,3.84,09/12/19 11:30,"785 River St, San Francisco, CA 94016" -252499,27in FHD Monitor,1,149.99,09/29/19 11:42,"189 8th St, Portland, ME 04101" -252500,AA Batteries (4-pack),2,3.84,09/29/19 22:27,"998 Ridge St, San Francisco, CA 94016" -252501,Apple Airpods Headphones,1,150,09/15/19 20:49,"327 11th St, Portland, ME 04101" -252502,27in FHD Monitor,1,149.99,09/21/19 11:42,"807 14th St, San Francisco, CA 94016" -252503,USB-C Charging Cable,1,11.95,09/01/19 21:08,"251 Lakeview St, Seattle, WA 98101" -252504,AAA Batteries (4-pack),2,2.99,09/22/19 12:16,"416 Elm St, San Francisco, CA 94016" -252505,Wired Headphones,1,11.99,09/25/19 16:52,"542 Adams St, San Francisco, CA 94016" -,,,,, -252506,AA Batteries (4-pack),1,3.84,09/10/19 11:08,"633 2nd St, Atlanta, GA 30301" -252507,AA Batteries (4-pack),1,3.84,09/17/19 14:54,"512 Wilson St, Boston, MA 02215" -252508,USB-C Charging Cable,1,11.95,09/03/19 17:10,"710 Lake St, Boston, MA 02215" -252509,Wired Headphones,1,11.99,09/12/19 17:36,"77 Church St, New York City, NY 10001" -252510,Wired Headphones,1,11.99,09/24/19 16:48,"95 Willow St, San Francisco, CA 94016" -252511,USB-C Charging Cable,1,11.95,09/16/19 00:25,"493 5th St, Boston, MA 02215" -252512,Macbook Pro Laptop,1,1700,09/05/19 11:12,"46 Sunset St, Seattle, WA 98101" -252513,Wired Headphones,1,11.99,09/02/19 10:58,"376 12th St, New York City, NY 10001" -252514,Lightning Charging Cable,1,14.95,09/03/19 06:10,"216 Elm St, San Francisco, CA 94016" -252515,Lightning Charging Cable,1,14.95,09/27/19 14:17,"976 Park St, Atlanta, GA 30301" -252516,USB-C Charging Cable,1,11.95,09/02/19 11:01,"100 Maple St, Boston, MA 02215" -252517,USB-C Charging Cable,1,11.95,09/09/19 11:18,"600 Lincoln St, San Francisco, CA 94016" -252518,Google Phone,1,600,09/05/19 19:38,"507 7th St, Los Angeles, CA 90001" -252519,Lightning Charging Cable,1,14.95,09/24/19 11:35,"113 4th St, Seattle, WA 98101" -252520,Wired Headphones,1,11.99,09/11/19 10:38,"147 2nd St, Austin, TX 73301" -252520,AAA Batteries (4-pack),1,2.99,09/11/19 10:38,"147 2nd St, Austin, TX 73301" -252521,Google Phone,1,600,09/04/19 13:28,"324 4th St, Los Angeles, CA 90001" -252522,AA Batteries (4-pack),1,3.84,09/07/19 15:55,"951 Main St, Boston, MA 02215" -252523,Apple Airpods Headphones,1,150,09/09/19 11:40,"400 Wilson St, Los Angeles, CA 90001" -252524,27in FHD Monitor,1,149.99,09/16/19 19:30,"564 Elm St, Boston, MA 02215" -252525,Wired Headphones,1,11.99,09/14/19 04:58,"995 Adams St, Los Angeles, CA 90001" -252526,LG Dryer,1,600.0,09/27/19 17:27,"957 10th St, Los Angeles, CA 90001" -252527,Macbook Pro Laptop,1,1700,09/10/19 09:54,"664 Highland St, San Francisco, CA 94016" -252528,Apple Airpods Headphones,1,150,09/13/19 17:21,"813 Church St, Los Angeles, CA 90001" -252529,Wired Headphones,1,11.99,09/05/19 10:01,"288 Park St, Los Angeles, CA 90001" -252530,AA Batteries (4-pack),1,3.84,09/08/19 21:27,"925 Chestnut St, Los Angeles, CA 90001" -252531,USB-C Charging Cable,1,11.95,09/16/19 10:00,"245 Highland St, Austin, TX 73301" -252532,Apple Airpods Headphones,1,150,09/06/19 11:51,"269 4th St, Seattle, WA 98101" -252533,AAA Batteries (4-pack),1,2.99,09/03/19 09:32,"614 Forest St, Portland, OR 97035" -252534,Wired Headphones,1,11.99,09/08/19 08:42,"749 Hill St, New York City, NY 10001" -252535,27in 4K Gaming Monitor,1,389.99,09/10/19 10:36,"902 Adams St, Seattle, WA 98101" -252536,Apple Airpods Headphones,1,150,09/07/19 22:34,"566 Main St, Austin, TX 73301" -252537,Wired Headphones,1,11.99,09/18/19 21:37,"558 6th St, San Francisco, CA 94016" -252537,Wired Headphones,1,11.99,09/18/19 21:37,"558 6th St, San Francisco, CA 94016" -252538,iPhone,1,700,09/23/19 21:08,"829 Chestnut St, Boston, MA 02215" -252538,Apple Airpods Headphones,1,150,09/23/19 21:08,"829 Chestnut St, Boston, MA 02215" -252539,AA Batteries (4-pack),1,3.84,09/12/19 18:51,"310 14th St, Seattle, WA 98101" -252540,AAA Batteries (4-pack),2,2.99,09/23/19 01:01,"295 Walnut St, Portland, OR 97035" -252541,34in Ultrawide Monitor,1,379.99,09/22/19 15:42,"341 12th St, Los Angeles, CA 90001" -252542,Lightning Charging Cable,1,14.95,09/13/19 18:53,"280 6th St, Dallas, TX 75001" -252543,AAA Batteries (4-pack),1,2.99,09/09/19 13:19,"418 Main St, Austin, TX 73301" -252544,Wired Headphones,1,11.99,09/26/19 18:52,"554 Wilson St, Dallas, TX 75001" -252545,USB-C Charging Cable,1,11.95,09/06/19 01:15,"976 14th St, Boston, MA 02215" -252546,Wired Headphones,1,11.99,09/27/19 14:40,"420 Spruce St, San Francisco, CA 94016" -252547,Flatscreen TV,1,300,09/24/19 03:06,"689 Hill St, Seattle, WA 98101" -252548,USB-C Charging Cable,1,11.95,09/14/19 19:16,"74 Park St, New York City, NY 10001" -252549,27in FHD Monitor,1,149.99,09/18/19 11:43,"766 9th St, Portland, ME 04101" -252550,34in Ultrawide Monitor,1,379.99,09/09/19 11:37,"763 5th St, Seattle, WA 98101" -252551,Apple Airpods Headphones,1,150,09/09/19 16:21,"214 Washington St, San Francisco, CA 94016" -252552,AAA Batteries (4-pack),1,2.99,09/04/19 12:24,"470 Sunset St, New York City, NY 10001" -252553,Bose SoundSport Headphones,1,99.99,09/03/19 13:43,"103 1st St, San Francisco, CA 94016" -252554,Vareebadd Phone,1,400,09/17/19 10:35,"886 10th St, Boston, MA 02215" -252554,USB-C Charging Cable,1,11.95,09/17/19 10:35,"886 10th St, Boston, MA 02215" -252555,34in Ultrawide Monitor,1,379.99,09/12/19 12:20,"394 River St, Los Angeles, CA 90001" -252556,USB-C Charging Cable,1,11.95,09/23/19 21:03,"612 Walnut St, San Francisco, CA 94016" -252557,Wired Headphones,1,11.99,09/19/19 01:31,"287 Lincoln St, Seattle, WA 98101" -252558,AAA Batteries (4-pack),2,2.99,09/23/19 22:21,"716 Lincoln St, San Francisco, CA 94016" -252559,USB-C Charging Cable,1,11.95,09/26/19 18:40,"776 Highland St, Austin, TX 73301" -252560,27in FHD Monitor,1,149.99,09/04/19 07:47,"248 Willow St, Portland, OR 97035" -252561,Lightning Charging Cable,1,14.95,09/30/19 14:42,"487 14th St, Austin, TX 73301" -252562,Lightning Charging Cable,1,14.95,09/17/19 09:00,"253 Hill St, San Francisco, CA 94016" -252563,Flatscreen TV,1,300,09/10/19 21:14,"32 Main St, San Francisco, CA 94016" -252564,Macbook Pro Laptop,1,1700,09/13/19 14:42,"536 Wilson St, Portland, ME 04101" -252565,LG Washing Machine,1,600.0,09/04/19 10:22,"642 13th St, Austin, TX 73301" -252566,ThinkPad Laptop,1,999.99,09/26/19 19:21,"717 Forest St, Los Angeles, CA 90001" -252567,Wired Headphones,1,11.99,09/15/19 13:50,"676 Spruce St, Los Angeles, CA 90001" -252568,iPhone,1,700,09/14/19 12:05,"128 Sunset St, Los Angeles, CA 90001" -252568,Lightning Charging Cable,2,14.95,09/14/19 12:05,"128 Sunset St, Los Angeles, CA 90001" -252569,AAA Batteries (4-pack),1,2.99,09/25/19 10:28,"55 Cherry St, San Francisco, CA 94016" -252570,AA Batteries (4-pack),1,3.84,09/17/19 17:08,"371 Church St, Los Angeles, CA 90001" -252571,iPhone,1,700,09/18/19 23:10,"553 River St, Seattle, WA 98101" -252571,Apple Airpods Headphones,1,150,09/18/19 23:10,"553 River St, Seattle, WA 98101" -,,,,, -252572,AA Batteries (4-pack),1,3.84,09/07/19 12:37,"440 Highland St, San Francisco, CA 94016" -252573,Wired Headphones,1,11.99,09/07/19 06:50,"507 5th St, Atlanta, GA 30301" -252574,Lightning Charging Cable,1,14.95,09/14/19 15:08,"441 Sunset St, Austin, TX 73301" -252575,Apple Airpods Headphones,1,150,09/01/19 15:16,"491 Pine St, Los Angeles, CA 90001" -252576,USB-C Charging Cable,1,11.95,09/15/19 22:39,"416 North St, Dallas, TX 75001" -252577,AA Batteries (4-pack),1,3.84,09/14/19 11:55,"910 Church St, Seattle, WA 98101" -252578,AA Batteries (4-pack),1,3.84,09/17/19 17:58,"802 Dogwood St, Dallas, TX 75001" -252579,USB-C Charging Cable,1,11.95,09/01/19 12:26,"804 Meadow St, Portland, ME 04101" -252580,iPhone,1,700,09/12/19 16:37,"934 7th St, San Francisco, CA 94016" -252581,Apple Airpods Headphones,1,150,09/20/19 19:59,"330 1st St, New York City, NY 10001" -252582,AA Batteries (4-pack),1,3.84,09/02/19 12:40,"364 Sunset St, San Francisco, CA 94016" -252583,AA Batteries (4-pack),1,3.84,09/06/19 18:37,"695 Pine St, Atlanta, GA 30301" -252584,USB-C Charging Cable,2,11.95,09/22/19 14:40,"176 Willow St, San Francisco, CA 94016" -252585,Wired Headphones,1,11.99,09/17/19 16:17,"532 Cherry St, San Francisco, CA 94016" -252586,Wired Headphones,1,11.99,09/24/19 17:23,"338 Sunset St, Boston, MA 02215" -252587,USB-C Charging Cable,1,11.95,09/15/19 11:38,"564 4th St, Dallas, TX 75001" -252588,Macbook Pro Laptop,1,1700,09/26/19 11:36,"573 Johnson St, Boston, MA 02215" -252589,AAA Batteries (4-pack),2,2.99,09/02/19 19:13,"790 11th St, Dallas, TX 75001" -252590,Macbook Pro Laptop,1,1700,09/10/19 13:27,"972 Spruce St, Atlanta, GA 30301" -252591,Wired Headphones,1,11.99,09/22/19 14:58,"68 Jefferson St, Portland, ME 04101" -252592,Apple Airpods Headphones,1,150,09/16/19 16:54,"717 Walnut St, San Francisco, CA 94016" -252593,27in 4K Gaming Monitor,1,389.99,09/02/19 18:34,"106 West St, New York City, NY 10001" -252594,ThinkPad Laptop,1,999.99,09/18/19 10:46,"403 Elm St, Los Angeles, CA 90001" -252595,AAA Batteries (4-pack),1,2.99,09/12/19 09:52,"871 Hill St, Dallas, TX 75001" -252596,USB-C Charging Cable,1,11.95,09/23/19 19:31,"843 8th St, Los Angeles, CA 90001" -252597,AA Batteries (4-pack),3,3.84,09/13/19 20:10,"735 11th St, Los Angeles, CA 90001" -252598,Lightning Charging Cable,1,14.95,09/08/19 11:48,"343 Main St, San Francisco, CA 94016" -252599,iPhone,1,700,09/11/19 20:49,"602 Madison St, Los Angeles, CA 90001" -252599,Lightning Charging Cable,1,14.95,09/11/19 20:49,"602 Madison St, Los Angeles, CA 90001" -252599,Apple Airpods Headphones,1,150,09/11/19 20:49,"602 Madison St, Los Angeles, CA 90001" -252600,ThinkPad Laptop,1,999.99,09/10/19 06:01,"506 2nd St, Austin, TX 73301" -252601,AA Batteries (4-pack),1,3.84,09/04/19 22:08,"362 North St, Portland, OR 97035" -252602,34in Ultrawide Monitor,1,379.99,09/15/19 00:06,"831 1st St, Portland, OR 97035" -252603,20in Monitor,1,109.99,09/11/19 21:36,"309 12th St, New York City, NY 10001" -252604,Bose SoundSport Headphones,1,99.99,09/05/19 08:39,"191 4th St, Boston, MA 02215" -252605,Wired Headphones,1,11.99,09/04/19 11:43,"942 Lake St, Boston, MA 02215" -252606,Wired Headphones,1,11.99,09/08/19 20:55,"64 Center St, New York City, NY 10001" -252607,ThinkPad Laptop,1,999.99,09/08/19 23:30,"139 Pine St, Boston, MA 02215" -252608,Flatscreen TV,1,300,09/28/19 15:20,"510 Elm St, San Francisco, CA 94016" -252609,iPhone,1,700,09/03/19 10:52,"180 Cherry St, Boston, MA 02215" -252610,Vareebadd Phone,1,400,09/18/19 20:26,"50 Lincoln St, Dallas, TX 75001" -252611,AA Batteries (4-pack),2,3.84,09/28/19 13:38,"56 Johnson St, New York City, NY 10001" -252612,Lightning Charging Cable,1,14.95,09/01/19 11:50,"32 Lakeview St, New York City, NY 10001" -252613,iPhone,1,700,09/19/19 14:11,"604 13th St, New York City, NY 10001" -252614,Lightning Charging Cable,1,14.95,09/15/19 13:10,"854 8th St, San Francisco, CA 94016" -252615,iPhone,1,700,09/11/19 16:08,"746 Sunset St, Atlanta, GA 30301" -252615,Lightning Charging Cable,1,14.95,09/11/19 16:08,"746 Sunset St, Atlanta, GA 30301" -252615,Wired Headphones,1,11.99,09/11/19 16:08,"746 Sunset St, Atlanta, GA 30301" -252616,Lightning Charging Cable,1,14.95,09/09/19 18:24,"676 6th St, Dallas, TX 75001" -252617,iPhone,1,700,09/07/19 08:05,"18 Spruce St, San Francisco, CA 94016" -252618,Apple Airpods Headphones,1,150,09/16/19 17:00,"21 Cherry St, Portland, OR 97035" -252619,USB-C Charging Cable,1,11.95,10/01/19 00:34,"629 Johnson St, Austin, TX 73301" -252620,AA Batteries (4-pack),1,3.84,09/28/19 21:15,"248 Dogwood St, New York City, NY 10001" -252621,Wired Headphones,1,11.99,09/03/19 16:02,"699 7th St, Los Angeles, CA 90001" -252622,Wired Headphones,1,11.99,09/01/19 08:05,"625 Maple St, Dallas, TX 75001" -252623,Lightning Charging Cable,1,14.95,09/05/19 16:57,"850 Washington St, San Francisco, CA 94016" -252624,USB-C Charging Cable,1,11.95,09/01/19 10:14,"965 Madison St, Seattle, WA 98101" -252625,20in Monitor,1,109.99,09/30/19 17:19,"360 Spruce St, Seattle, WA 98101" -252626,AA Batteries (4-pack),1,3.84,09/29/19 10:57,"621 Meadow St, Los Angeles, CA 90001" -252627,Apple Airpods Headphones,1,150,09/04/19 13:53,"866 Hill St, Los Angeles, CA 90001" -252628,34in Ultrawide Monitor,1,379.99,09/10/19 06:38,"439 Lake St, Seattle, WA 98101" -252629,AA Batteries (4-pack),1,3.84,09/20/19 13:10,"222 Lakeview St, San Francisco, CA 94016" -252630,AAA Batteries (4-pack),1,2.99,09/21/19 21:18,"281 Ridge St, San Francisco, CA 94016" -252631,Wired Headphones,1,11.99,09/16/19 14:42,"278 8th St, Portland, OR 97035" -252632,iPhone,1,700,09/05/19 09:47,"975 Hill St, Boston, MA 02215" -252633,USB-C Charging Cable,1,11.95,09/09/19 03:46,"476 Hill St, San Francisco, CA 94016" -252634,27in FHD Monitor,1,149.99,09/06/19 14:45,"479 Center St, Boston, MA 02215" -252635,Google Phone,1,600,09/29/19 20:49,"437 Dogwood St, Los Angeles, CA 90001" -252636,USB-C Charging Cable,1,11.95,09/24/19 13:33,"949 Elm St, San Francisco, CA 94016" -252637,iPhone,1,700,09/13/19 12:12,"987 Lakeview St, Seattle, WA 98101" -252638,Apple Airpods Headphones,1,150,09/14/19 20:30,"774 Maple St, San Francisco, CA 94016" -252639,Wired Headphones,1,11.99,09/22/19 19:47,"519 Willow St, Los Angeles, CA 90001" -252640,Lightning Charging Cable,1,14.95,09/19/19 11:24,"686 Church St, Boston, MA 02215" -252641,27in FHD Monitor,1,149.99,09/24/19 21:09,"511 Ridge St, Portland, OR 97035" -252642,AA Batteries (4-pack),1,3.84,09/27/19 16:11,"967 Lake St, San Francisco, CA 94016" -252643,Wired Headphones,1,11.99,09/06/19 08:16,"190 Elm St, Portland, OR 97035" -252644,Bose SoundSport Headphones,1,99.99,09/13/19 00:12,"421 South St, Austin, TX 73301" -252645,34in Ultrawide Monitor,1,379.99,09/18/19 19:16,"586 Maple St, San Francisco, CA 94016" -252646,USB-C Charging Cable,1,11.95,09/13/19 12:31,"885 6th St, Los Angeles, CA 90001" -252647,USB-C Charging Cable,1,11.95,09/17/19 01:13,"459 Spruce St, Seattle, WA 98101" -252648,Apple Airpods Headphones,1,150,09/13/19 10:46,"372 Park St, San Francisco, CA 94016" -252649,27in 4K Gaming Monitor,1,389.99,09/06/19 20:26,"727 Cedar St, Los Angeles, CA 90001" -252650,USB-C Charging Cable,1,11.95,09/16/19 11:09,"983 Spruce St, Atlanta, GA 30301" -252651,Flatscreen TV,1,300,09/18/19 11:54,"889 Lake St, Boston, MA 02215" -252652,Flatscreen TV,1,300,09/18/19 20:47,"558 Elm St, Los Angeles, CA 90001" -252653,AAA Batteries (4-pack),3,2.99,09/12/19 15:24,"230 Washington St, San Francisco, CA 94016" -252654,Apple Airpods Headphones,1,150,09/06/19 17:05,"722 7th St, Seattle, WA 98101" -252655,AAA Batteries (4-pack),1,2.99,09/14/19 09:57,"936 Maple St, New York City, NY 10001" -252656,AAA Batteries (4-pack),1,2.99,09/14/19 21:31,"539 Lincoln St, Los Angeles, CA 90001" -252657,iPhone,1,700,09/22/19 18:28,"890 Lake St, Atlanta, GA 30301" -252657,Lightning Charging Cable,1,14.95,09/22/19 18:28,"890 Lake St, Atlanta, GA 30301" -252658,Wired Headphones,1,11.99,09/24/19 18:07,"833 North St, Boston, MA 02215" -252659,AAA Batteries (4-pack),1,2.99,09/11/19 02:02,"692 Main St, San Francisco, CA 94016" -252660,27in 4K Gaming Monitor,1,389.99,09/14/19 20:44,"222 River St, San Francisco, CA 94016" -252661,Wired Headphones,2,11.99,09/21/19 20:49,"271 Center St, Dallas, TX 75001" -252662,AA Batteries (4-pack),1,3.84,09/21/19 11:46,"714 Jackson St, San Francisco, CA 94016" -252663,AA Batteries (4-pack),1,3.84,09/12/19 22:23,"404 Hickory St, Boston, MA 02215" -252664,Lightning Charging Cable,1,14.95,09/29/19 13:02,"846 Cedar St, San Francisco, CA 94016" -252665,Bose SoundSport Headphones,1,99.99,09/19/19 10:33,"759 11th St, Los Angeles, CA 90001" -252666,AAA Batteries (4-pack),2,2.99,09/05/19 08:34,"357 Madison St, Seattle, WA 98101" -252667,AAA Batteries (4-pack),2,2.99,09/27/19 21:11,"372 River St, Portland, OR 97035" -252668,27in FHD Monitor,1,149.99,09/22/19 21:43,"688 Spruce St, New York City, NY 10001" -252669,Vareebadd Phone,1,400,09/02/19 10:25,"598 Chestnut St, New York City, NY 10001" -252669,USB-C Charging Cable,1,11.95,09/02/19 10:25,"598 Chestnut St, New York City, NY 10001" -252670,AAA Batteries (4-pack),3,2.99,09/12/19 16:12,"593 Pine St, San Francisco, CA 94016" -252671,USB-C Charging Cable,1,11.95,09/19/19 20:50,"666 Highland St, Seattle, WA 98101" -252672,AA Batteries (4-pack),2,3.84,09/24/19 13:28,"916 River St, Los Angeles, CA 90001" -252673,Lightning Charging Cable,1,14.95,09/14/19 16:01,"225 9th St, San Francisco, CA 94016" -252674,AA Batteries (4-pack),1,3.84,09/17/19 16:36,"368 Wilson St, Boston, MA 02215" -252675,Macbook Pro Laptop,1,1700,09/03/19 10:19,"51 Chestnut St, Austin, TX 73301" -252676,AAA Batteries (4-pack),1,2.99,09/04/19 21:21,"119 Chestnut St, New York City, NY 10001" -252677,20in Monitor,1,109.99,09/15/19 03:00,"692 12th St, Boston, MA 02215" -252678,Wired Headphones,1,11.99,09/18/19 15:37,"280 Main St, Seattle, WA 98101" -252679,Bose SoundSport Headphones,1,99.99,09/24/19 21:09,"522 Johnson St, Seattle, WA 98101" -252680,27in FHD Monitor,1,149.99,09/28/19 09:57,"612 Wilson St, New York City, NY 10001" -252681,AA Batteries (4-pack),1,3.84,09/28/19 09:15,"101 2nd St, Boston, MA 02215" -252682,Wired Headphones,1,11.99,09/23/19 13:36,"855 Dogwood St, Seattle, WA 98101" -252683,AAA Batteries (4-pack),1,2.99,09/18/19 11:08,"250 Walnut St, New York City, NY 10001" -252684,27in FHD Monitor,1,149.99,09/07/19 20:54,"825 10th St, Los Angeles, CA 90001" -252685,27in FHD Monitor,1,149.99,09/30/19 04:27,"681 Park St, Boston, MA 02215" -252686,AAA Batteries (4-pack),1,2.99,09/16/19 20:09,"733 Hill St, Boston, MA 02215" -252687,AA Batteries (4-pack),1,3.84,09/20/19 11:34,"483 West St, Boston, MA 02215" -252688,AA Batteries (4-pack),1,3.84,09/15/19 19:00,"607 Walnut St, New York City, NY 10001" -252689,AAA Batteries (4-pack),2,2.99,09/30/19 17:04,"438 2nd St, Boston, MA 02215" -252690,Bose SoundSport Headphones,1,99.99,09/21/19 22:37,"783 Dogwood St, Seattle, WA 98101" -252691,Macbook Pro Laptop,1,1700,09/05/19 14:56,"983 Highland St, Dallas, TX 75001" -252692,27in 4K Gaming Monitor,1,389.99,09/09/19 15:35,"601 Washington St, Dallas, TX 75001" -252693,USB-C Charging Cable,1,11.95,09/28/19 19:29,"489 11th St, Atlanta, GA 30301" -252694,USB-C Charging Cable,1,11.95,09/08/19 13:11,"485 Johnson St, San Francisco, CA 94016" -252695,iPhone,1,700,09/13/19 09:51,"446 Willow St, Boston, MA 02215" -252696,20in Monitor,1,109.99,09/03/19 11:30,"522 6th St, New York City, NY 10001" -252697,34in Ultrawide Monitor,1,379.99,09/04/19 11:17,"496 Meadow St, Atlanta, GA 30301" -252698,AA Batteries (4-pack),1,3.84,09/02/19 23:10,"580 Adams St, Boston, MA 02215" -252699,Google Phone,1,600,09/13/19 12:41,"219 River St, Portland, OR 97035" -252700,AA Batteries (4-pack),1,3.84,09/29/19 21:01,"559 6th St, San Francisco, CA 94016" -252701,Lightning Charging Cable,1,14.95,09/29/19 07:38,"503 Hickory St, Los Angeles, CA 90001" -252702,Lightning Charging Cable,1,14.95,09/18/19 19:53,"834 Highland St, Los Angeles, CA 90001" -252703,AAA Batteries (4-pack),1,2.99,09/10/19 15:15,"614 4th St, Los Angeles, CA 90001" -252704,iPhone,1,700,09/01/19 20:31,"285 Hill St, Los Angeles, CA 90001" -252705,Apple Airpods Headphones,1,150,09/26/19 19:53,"849 10th St, San Francisco, CA 94016" -252705,Google Phone,1,600,09/26/19 19:53,"849 10th St, San Francisco, CA 94016" -252706,Google Phone,1,600,09/09/19 22:17,"268 Washington St, Los Angeles, CA 90001" -252706,USB-C Charging Cable,1,11.95,09/09/19 22:17,"268 Washington St, Los Angeles, CA 90001" -252707,ThinkPad Laptop,1,999.99,09/23/19 15:54,"51 Cherry St, San Francisco, CA 94016" -252708,Lightning Charging Cable,1,14.95,09/15/19 14:38,"402 5th St, Los Angeles, CA 90001" -252709,AA Batteries (4-pack),1,3.84,09/12/19 15:07,"855 Sunset St, Austin, TX 73301" -252710,USB-C Charging Cable,1,11.95,09/21/19 20:56,"769 Elm St, Los Angeles, CA 90001" -252711,Wired Headphones,1,11.99,09/16/19 08:45,"75 Jefferson St, Los Angeles, CA 90001" -252712,AAA Batteries (4-pack),2,2.99,09/09/19 14:33,"720 West St, Dallas, TX 75001" -252713,Flatscreen TV,1,300,09/02/19 21:36,"455 Wilson St, Los Angeles, CA 90001" -252714,AA Batteries (4-pack),1,3.84,09/02/19 08:00,"508 Forest St, San Francisco, CA 94016" -252715,AAA Batteries (4-pack),1,2.99,09/11/19 17:23,"351 11th St, New York City, NY 10001" -252716,USB-C Charging Cable,1,11.95,09/06/19 15:08,"998 Wilson St, Los Angeles, CA 90001" -252717,AAA Batteries (4-pack),1,2.99,09/24/19 15:21,"710 West St, Los Angeles, CA 90001" -252718,Lightning Charging Cable,1,14.95,09/22/19 23:44,"345 Dogwood St, Portland, OR 97035" -252719,Bose SoundSport Headphones,1,99.99,09/29/19 14:28,"176 River St, Dallas, TX 75001" -252720,AA Batteries (4-pack),1,3.84,09/19/19 17:51,"445 8th St, Seattle, WA 98101" -252721,27in 4K Gaming Monitor,1,389.99,09/01/19 12:10,"820 13th St, San Francisco, CA 94016" -252722,Apple Airpods Headphones,1,150,09/03/19 15:23,"162 Center St, San Francisco, CA 94016" -252723,AAA Batteries (4-pack),2,2.99,09/15/19 15:06,"133 Center St, Dallas, TX 75001" -252724,Macbook Pro Laptop,1,1700,09/08/19 20:47,"301 Walnut St, San Francisco, CA 94016" -252725,iPhone,1,700,09/30/19 20:11,"982 Highland St, San Francisco, CA 94016" -252726,AA Batteries (4-pack),1,3.84,09/24/19 20:23,"545 Maple St, San Francisco, CA 94016" -252727,Wired Headphones,2,11.99,09/08/19 17:54,"219 Ridge St, New York City, NY 10001" -252728,Flatscreen TV,1,300,09/09/19 08:41,"177 South St, Atlanta, GA 30301" -252729,Flatscreen TV,1,300,09/07/19 17:57,"502 Washington St, San Francisco, CA 94016" -252730,Wired Headphones,1,11.99,09/16/19 18:25,"255 12th St, San Francisco, CA 94016" -252730,USB-C Charging Cable,1,11.95,09/16/19 18:25,"255 12th St, San Francisco, CA 94016" -252731,AAA Batteries (4-pack),2,2.99,09/21/19 22:06,"672 Sunset St, San Francisco, CA 94016" -252732,Wired Headphones,1,11.99,09/28/19 20:50,"670 Ridge St, Dallas, TX 75001" -252733,34in Ultrawide Monitor,1,379.99,09/15/19 16:31,"373 Washington St, Los Angeles, CA 90001" -252734,Bose SoundSport Headphones,1,99.99,09/16/19 10:56,"540 Lincoln St, Portland, OR 97035" -252735,USB-C Charging Cable,1,11.95,09/19/19 10:32,"541 12th St, Austin, TX 73301" -252736,USB-C Charging Cable,1,11.95,09/20/19 21:54,"198 4th St, Seattle, WA 98101" -252737,USB-C Charging Cable,1,11.95,09/16/19 13:25,"65 Highland St, Dallas, TX 75001" -252738,AA Batteries (4-pack),2,3.84,09/25/19 11:20,"46 Hill St, New York City, NY 10001" -252739,27in FHD Monitor,1,149.99,09/21/19 13:40,"286 Lakeview St, Dallas, TX 75001" -252740,34in Ultrawide Monitor,1,379.99,09/23/19 19:25,"617 Madison St, Dallas, TX 75001" -252741,Wired Headphones,1,11.99,09/02/19 17:32,"494 Spruce St, San Francisco, CA 94016" -252742,Lightning Charging Cable,1,14.95,09/26/19 18:06,"562 Cedar St, Seattle, WA 98101" -252743,Macbook Pro Laptop,1,1700,09/04/19 22:15,"766 Hill St, Atlanta, GA 30301" -252744,Wired Headphones,1,11.99,09/11/19 13:20,"553 Center St, Dallas, TX 75001" -252745,27in 4K Gaming Monitor,1,389.99,09/10/19 17:50,"171 Highland St, San Francisco, CA 94016" -252746,USB-C Charging Cable,1,11.95,09/19/19 06:52,"315 10th St, Austin, TX 73301" -252747,USB-C Charging Cable,1,11.95,09/29/19 11:17,"123 Chestnut St, Dallas, TX 75001" -252748,Flatscreen TV,1,300,09/05/19 16:38,"953 Elm St, Boston, MA 02215" -252749,Apple Airpods Headphones,1,150,09/22/19 11:00,"894 4th St, Los Angeles, CA 90001" -252750,ThinkPad Laptop,1,999.99,09/02/19 20:51,"99 13th St, San Francisco, CA 94016" -252751,ThinkPad Laptop,1,999.99,09/04/19 13:39,"544 Spruce St, New York City, NY 10001" -252752,27in 4K Gaming Monitor,1,389.99,09/25/19 18:20,"203 4th St, Los Angeles, CA 90001" -252753,Lightning Charging Cable,1,14.95,09/04/19 14:09,"863 North St, New York City, NY 10001" -252754,AA Batteries (4-pack),1,3.84,09/24/19 12:38,"836 10th St, Portland, OR 97035" -252755,Flatscreen TV,1,300,09/22/19 13:38,"103 Jackson St, Atlanta, GA 30301" -252756,Apple Airpods Headphones,1,150,09/11/19 06:08,"181 12th St, Boston, MA 02215" -252757,Lightning Charging Cable,1,14.95,09/18/19 14:25,"42 Walnut St, Boston, MA 02215" -252758,USB-C Charging Cable,1,11.95,09/16/19 13:07,"6 South St, New York City, NY 10001" -252759,AA Batteries (4-pack),1,3.84,09/30/19 06:42,"7 Lincoln St, San Francisco, CA 94016" -252760,Bose SoundSport Headphones,1,99.99,09/07/19 16:38,"36 Madison St, New York City, NY 10001" -252761,34in Ultrawide Monitor,1,379.99,09/14/19 15:11,"641 14th St, San Francisco, CA 94016" -252762,Google Phone,1,600,09/14/19 21:59,"884 Dogwood St, Boston, MA 02215" -252762,USB-C Charging Cable,1,11.95,09/14/19 21:59,"884 Dogwood St, Boston, MA 02215" -252763,Wired Headphones,1,11.99,09/06/19 00:01,"978 Chestnut St, Seattle, WA 98101" -252764,27in 4K Gaming Monitor,1,389.99,09/19/19 20:57,"345 Hill St, Portland, OR 97035" -252765,AAA Batteries (4-pack),2,2.99,09/15/19 08:37,"375 Dogwood St, San Francisco, CA 94016" -252766,Lightning Charging Cable,1,14.95,09/03/19 01:46,"320 Lake St, San Francisco, CA 94016" -252767,AAA Batteries (4-pack),2,2.99,09/30/19 16:21,"362 12th St, San Francisco, CA 94016" -252768,Wired Headphones,1,11.99,09/03/19 12:54,"42 Maple St, Austin, TX 73301" -252769,Apple Airpods Headphones,1,150,09/23/19 11:53,"283 Lincoln St, Austin, TX 73301" -252770,Lightning Charging Cable,1,14.95,09/01/19 19:31,"107 Maple St, Los Angeles, CA 90001" -252771,Lightning Charging Cable,1,14.95,09/09/19 19:23,"946 Forest St, San Francisco, CA 94016" -252772,27in 4K Gaming Monitor,1,389.99,09/27/19 13:53,"834 Park St, Dallas, TX 75001" -252773,iPhone,1,700,09/30/19 09:06,"211 Meadow St, Dallas, TX 75001" -252774,Macbook Pro Laptop,1,1700,09/04/19 01:15,"442 4th St, San Francisco, CA 94016" -252775,Wired Headphones,1,11.99,09/25/19 10:54,"969 Jefferson St, San Francisco, CA 94016" -252776,USB-C Charging Cable,1,11.95,09/11/19 00:22,"425 Lincoln St, New York City, NY 10001" -252777,iPhone,1,700,09/05/19 20:24,"878 14th St, Seattle, WA 98101" -252778,AA Batteries (4-pack),1,3.84,09/23/19 16:00,"65 Johnson St, Portland, OR 97035" -252779,Bose SoundSport Headphones,1,99.99,09/16/19 12:53,"190 7th St, New York City, NY 10001" -252780,34in Ultrawide Monitor,1,379.99,09/25/19 13:53,"677 1st St, San Francisco, CA 94016" -252781,AA Batteries (4-pack),1,3.84,09/30/19 07:51,"43 1st St, Los Angeles, CA 90001" -252782,Wired Headphones,1,11.99,09/12/19 22:33,"493 Adams St, Boston, MA 02215" -252783,AA Batteries (4-pack),2,3.84,09/03/19 20:37,"137 7th St, Seattle, WA 98101" -252784,Apple Airpods Headphones,1,150,09/20/19 16:09,"664 9th St, San Francisco, CA 94016" -252785,AAA Batteries (4-pack),5,2.99,09/05/19 17:38,"405 4th St, Boston, MA 02215" -252786,Apple Airpods Headphones,1,150,09/05/19 16:24,"329 Park St, Boston, MA 02215" -252787,iPhone,1,700,09/08/19 11:31,"893 Lincoln St, San Francisco, CA 94016" -252788,27in FHD Monitor,1,149.99,09/13/19 07:26,"818 West St, San Francisco, CA 94016" -252789,27in FHD Monitor,1,149.99,09/29/19 19:54,"695 Wilson St, Dallas, TX 75001" -252789,AA Batteries (4-pack),1,3.84,09/29/19 19:54,"695 Wilson St, Dallas, TX 75001" -252790,Macbook Pro Laptop,1,1700,09/30/19 09:01,"694 Center St, Boston, MA 02215" -252791,Google Phone,1,600,09/07/19 16:03,"188 Center St, San Francisco, CA 94016" -252792,USB-C Charging Cable,1,11.95,09/04/19 20:07,"566 Lake St, Boston, MA 02215" -252793,Wired Headphones,1,11.99,09/13/19 19:31,"799 12th St, Los Angeles, CA 90001" -252794,LG Washing Machine,1,600.0,09/19/19 13:52,"36 North St, Boston, MA 02215" -252794,AA Batteries (4-pack),2,3.84,09/19/19 13:52,"36 North St, Boston, MA 02215" -252795,AA Batteries (4-pack),1,3.84,09/24/19 21:49,"188 14th St, Atlanta, GA 30301" -252796,Wired Headphones,1,11.99,09/28/19 17:50,"682 Washington St, Los Angeles, CA 90001" -252797,AA Batteries (4-pack),1,3.84,09/08/19 03:27,"420 Walnut St, Los Angeles, CA 90001" -252798,Flatscreen TV,1,300,09/24/19 15:25,"848 South St, Dallas, TX 75001" -252799,Apple Airpods Headphones,1,150,09/03/19 14:33,"951 Church St, San Francisco, CA 94016" -252800,AAA Batteries (4-pack),4,2.99,09/01/19 15:29,"108 Jefferson St, Portland, OR 97035" -252801,AAA Batteries (4-pack),1,2.99,09/21/19 20:54,"287 14th St, Boston, MA 02215" -252802,USB-C Charging Cable,1,11.95,09/07/19 20:18,"568 Hickory St, San Francisco, CA 94016" -252803,Wired Headphones,1,11.99,09/19/19 11:32,"210 5th St, New York City, NY 10001" -252804,27in FHD Monitor,1,149.99,09/05/19 19:48,"367 Madison St, Dallas, TX 75001" -,,,,, -252805,AAA Batteries (4-pack),1,2.99,09/19/19 09:13,"737 10th St, Los Angeles, CA 90001" -252806,Macbook Pro Laptop,1,1700,09/01/19 15:05,"888 5th St, Los Angeles, CA 90001" -252807,LG Washing Machine,1,600.0,09/10/19 09:21,"363 14th St, San Francisco, CA 94016" -252808,iPhone,1,700,09/15/19 21:24,"959 Spruce St, Los Angeles, CA 90001" -252808,Lightning Charging Cable,1,14.95,09/15/19 21:24,"959 Spruce St, Los Angeles, CA 90001" -252809,Bose SoundSport Headphones,1,99.99,09/17/19 23:08,"587 Willow St, Seattle, WA 98101" -252810,27in FHD Monitor,1,149.99,09/18/19 22:18,"164 Center St, Boston, MA 02215" -252811,Bose SoundSport Headphones,1,99.99,09/12/19 17:38,"73 South St, Los Angeles, CA 90001" -252812,iPhone,1,700,09/16/19 16:59,"245 Park St, San Francisco, CA 94016" -252813,Wired Headphones,1,11.99,09/22/19 18:33,"925 Lincoln St, San Francisco, CA 94016" -252814,20in Monitor,1,109.99,09/08/19 22:55,"444 Jackson St, Dallas, TX 75001" -252815,Bose SoundSport Headphones,1,99.99,09/12/19 12:39,"451 South St, San Francisco, CA 94016" -252816,USB-C Charging Cable,1,11.95,09/23/19 12:24,"478 West St, Los Angeles, CA 90001" -252817,USB-C Charging Cable,1,11.95,09/19/19 18:36,"352 Highland St, Austin, TX 73301" -252818,AAA Batteries (4-pack),2,2.99,09/09/19 15:41,"160 Jefferson St, New York City, NY 10001" -252819,USB-C Charging Cable,2,11.95,09/18/19 09:25,"828 Sunset St, Seattle, WA 98101" -252820,34in Ultrawide Monitor,1,379.99,09/06/19 16:48,"362 Spruce St, Los Angeles, CA 90001" -252821,AAA Batteries (4-pack),1,2.99,09/14/19 17:40,"18 9th St, Los Angeles, CA 90001" -252822,AA Batteries (4-pack),1,3.84,09/09/19 02:17,"774 Johnson St, San Francisco, CA 94016" -252823,Lightning Charging Cable,1,14.95,09/21/19 13:16,"696 Johnson St, Los Angeles, CA 90001" -252824,Bose SoundSport Headphones,1,99.99,09/06/19 16:31,"920 Church St, Seattle, WA 98101" -252825,AAA Batteries (4-pack),1,2.99,09/09/19 21:39,"665 Pine St, Dallas, TX 75001" -252826,USB-C Charging Cable,1,11.95,09/18/19 19:44,"552 Hill St, Boston, MA 02215" -252827,USB-C Charging Cable,1,11.95,09/04/19 13:33,"651 North St, Dallas, TX 75001" -252828,Apple Airpods Headphones,1,150,09/25/19 10:08,"480 13th St, Seattle, WA 98101" -252829,AAA Batteries (4-pack),2,2.99,09/04/19 12:17,"822 Lincoln St, San Francisco, CA 94016" -252830,Flatscreen TV,1,300,09/08/19 19:02,"71 Lincoln St, Boston, MA 02215" -252831,USB-C Charging Cable,1,11.95,09/01/19 21:39,"286 Adams St, Los Angeles, CA 90001" -252832,USB-C Charging Cable,1,11.95,09/20/19 12:48,"444 Highland St, New York City, NY 10001" -252833,27in 4K Gaming Monitor,1,389.99,09/21/19 19:48,"347 Lake St, Boston, MA 02215" -252834,Flatscreen TV,1,300,09/18/19 10:28,"397 Lincoln St, San Francisco, CA 94016" -252835,USB-C Charging Cable,1,11.95,09/12/19 15:57,"871 Spruce St, Seattle, WA 98101" -252836,Lightning Charging Cable,1,14.95,09/17/19 17:44,"485 12th St, Seattle, WA 98101" -252837,AA Batteries (4-pack),2,3.84,09/01/19 18:42,"500 West St, New York City, NY 10001" -252838,Lightning Charging Cable,1,14.95,09/22/19 13:46,"136 7th St, San Francisco, CA 94016" -252839,27in FHD Monitor,1,149.99,09/24/19 08:45,"668 Jefferson St, Los Angeles, CA 90001" -252840,Apple Airpods Headphones,1,150,09/25/19 17:37,"87 Ridge St, Atlanta, GA 30301" -252841,AAA Batteries (4-pack),1,2.99,09/15/19 18:53,"386 2nd St, Austin, TX 73301" -252842,USB-C Charging Cable,1,11.95,09/26/19 17:28,"721 Meadow St, Los Angeles, CA 90001" -252843,LG Washing Machine,1,600.0,09/28/19 16:18,"44 2nd St, New York City, NY 10001" -252844,iPhone,1,700,09/21/19 20:48,"522 Highland St, New York City, NY 10001" -252844,Lightning Charging Cable,2,14.95,09/21/19 20:48,"522 Highland St, New York City, NY 10001" -252845,34in Ultrawide Monitor,1,379.99,09/17/19 21:50,"899 Johnson St, Los Angeles, CA 90001" -252846,Flatscreen TV,1,300,09/20/19 14:10,"761 Chestnut St, San Francisco, CA 94016" -252847,AA Batteries (4-pack),1,3.84,09/13/19 21:43,"105 Pine St, Dallas, TX 75001" -252848,Lightning Charging Cable,1,14.95,09/07/19 18:15,"727 Lakeview St, Boston, MA 02215" -252849,27in 4K Gaming Monitor,1,389.99,09/27/19 19:26,"336 Park St, San Francisco, CA 94016" -252850,20in Monitor,1,109.99,09/06/19 20:52,"644 14th St, New York City, NY 10001" -252851,Lightning Charging Cable,1,14.95,09/17/19 22:07,"348 8th St, Boston, MA 02215" -252852,Bose SoundSport Headphones,1,99.99,09/07/19 10:09,"836 Lake St, Dallas, TX 75001" -252853,AAA Batteries (4-pack),2,2.99,09/02/19 23:20,"410 4th St, Los Angeles, CA 90001" -252854,USB-C Charging Cable,1,11.95,09/16/19 10:47,"23 14th St, Los Angeles, CA 90001" -252855,27in 4K Gaming Monitor,1,389.99,09/04/19 17:34,"19 7th St, Atlanta, GA 30301" -252856,Apple Airpods Headphones,1,150,09/17/19 11:31,"257 Hill St, New York City, NY 10001" -252857,Bose SoundSport Headphones,1,99.99,09/04/19 05:34,"520 Cedar St, Los Angeles, CA 90001" -252858,Bose SoundSport Headphones,1,99.99,09/22/19 15:23,"331 Jackson St, Dallas, TX 75001" -252859,Bose SoundSport Headphones,1,99.99,09/25/19 12:12,"658 Washington St, Los Angeles, CA 90001" -252860,Google Phone,1,600,09/15/19 01:47,"271 5th St, San Francisco, CA 94016" -252860,USB-C Charging Cable,1,11.95,09/15/19 01:47,"271 5th St, San Francisco, CA 94016" -252860,Wired Headphones,2,11.99,09/15/19 01:47,"271 5th St, San Francisco, CA 94016" -252861,Bose SoundSport Headphones,1,99.99,09/10/19 19:35,"363 11th St, Boston, MA 02215" -252862,Lightning Charging Cable,1,14.95,09/09/19 14:54,"774 Adams St, San Francisco, CA 94016" -252863,34in Ultrawide Monitor,1,379.99,09/16/19 21:17,"55 1st St, San Francisco, CA 94016" -252864,AA Batteries (4-pack),1,3.84,09/09/19 20:38,"312 Main St, Atlanta, GA 30301" -252865,USB-C Charging Cable,1,11.95,09/18/19 14:56,"282 Lincoln St, San Francisco, CA 94016" -252866,Apple Airpods Headphones,1,150,09/16/19 20:32,"606 Lakeview St, Dallas, TX 75001" -252867,AAA Batteries (4-pack),1,2.99,09/03/19 13:41,"804 Willow St, New York City, NY 10001" -252868,Google Phone,1,600,09/30/19 18:20,"284 Cherry St, New York City, NY 10001" -252868,USB-C Charging Cable,1,11.95,09/30/19 18:20,"284 Cherry St, New York City, NY 10001" -252869,Bose SoundSport Headphones,1,99.99,09/01/19 12:10,"369 Pine St, Los Angeles, CA 90001" -252870,Apple Airpods Headphones,1,150,09/19/19 19:26,"833 Walnut St, San Francisco, CA 94016" -252871,Bose SoundSport Headphones,1,99.99,09/09/19 21:50,"413 Dogwood St, New York City, NY 10001" -252872,iPhone,1,700,09/29/19 18:55,"976 Sunset St, Los Angeles, CA 90001" -252873,Wired Headphones,1,11.99,09/07/19 18:44,"863 River St, Atlanta, GA 30301" -252874,Wired Headphones,1,11.99,09/27/19 23:24,"363 Main St, San Francisco, CA 94016" -252875,Lightning Charging Cable,1,14.95,09/17/19 13:00,"504 Church St, Boston, MA 02215" -252876,USB-C Charging Cable,1,11.95,09/29/19 14:48,"568 Walnut St, San Francisco, CA 94016" -252877,Wired Headphones,1,11.99,09/06/19 20:54,"483 14th St, Dallas, TX 75001" -252878,Bose SoundSport Headphones,1,99.99,09/18/19 11:38,"757 Sunset St, Portland, OR 97035" -252879,AAA Batteries (4-pack),3,2.99,09/12/19 13:27,"364 Wilson St, Dallas, TX 75001" -252880,Macbook Pro Laptop,1,1700,09/01/19 07:12,"580 Washington St, Los Angeles, CA 90001" -252881,AAA Batteries (4-pack),1,2.99,09/09/19 12:36,"606 Washington St, San Francisco, CA 94016" -252882,AA Batteries (4-pack),1,3.84,09/20/19 11:50,"593 Lincoln St, Boston, MA 02215" -252883,Vareebadd Phone,1,400,09/17/19 21:34,"281 North St, Atlanta, GA 30301" -252884,USB-C Charging Cable,1,11.95,09/08/19 09:02,"12 Park St, Dallas, TX 75001" -252885,Lightning Charging Cable,1,14.95,09/17/19 10:40,"915 4th St, San Francisco, CA 94016" -252886,Lightning Charging Cable,1,14.95,09/16/19 12:03,"829 Ridge St, Portland, OR 97035" -252887,Bose SoundSport Headphones,1,99.99,09/17/19 11:34,"741 8th St, Dallas, TX 75001" -252888,AA Batteries (4-pack),1,3.84,09/18/19 15:43,"236 10th St, Dallas, TX 75001" -252889,Lightning Charging Cable,1,14.95,09/16/19 19:35,"588 West St, Dallas, TX 75001" -252890,USB-C Charging Cable,1,11.95,09/15/19 19:10,"649 5th St, Boston, MA 02215" -252891,AAA Batteries (4-pack),3,2.99,09/02/19 14:30,"837 Pine St, San Francisco, CA 94016" -252892,Lightning Charging Cable,1,14.95,09/18/19 15:26,"386 8th St, San Francisco, CA 94016" -252893,Macbook Pro Laptop,1,1700,09/13/19 07:13,"42 13th St, Austin, TX 73301" -252894,AA Batteries (4-pack),1,3.84,09/29/19 19:35,"13 Hickory St, Seattle, WA 98101" -252895,Flatscreen TV,1,300,09/29/19 23:43,"948 11th St, Dallas, TX 75001" -252896,34in Ultrawide Monitor,1,379.99,09/11/19 14:54,"661 Spruce St, Boston, MA 02215" -252897,iPhone,1,700,09/12/19 23:43,"236 Jefferson St, New York City, NY 10001" -252898,USB-C Charging Cable,1,11.95,09/09/19 18:17,"756 Main St, San Francisco, CA 94016" -252899,AAA Batteries (4-pack),1,2.99,09/27/19 08:57,"90 7th St, Seattle, WA 98101" -252900,27in FHD Monitor,1,149.99,09/29/19 16:04,"473 Church St, Los Angeles, CA 90001" -252901,AA Batteries (4-pack),1,3.84,09/18/19 19:41,"304 Church St, San Francisco, CA 94016" -252902,Vareebadd Phone,1,400,09/23/19 00:15,"245 Lakeview St, Dallas, TX 75001" -252903,AAA Batteries (4-pack),1,2.99,09/25/19 19:51,"32 7th St, San Francisco, CA 94016" -252904,Wired Headphones,1,11.99,09/04/19 12:32,"343 1st St, Dallas, TX 75001" -252905,AA Batteries (4-pack),1,3.84,09/15/19 06:42,"172 Ridge St, Boston, MA 02215" -252906,USB-C Charging Cable,1,11.95,09/12/19 13:46,"858 Washington St, San Francisco, CA 94016" -252907,Wired Headphones,1,11.99,09/19/19 14:31,"853 Church St, San Francisco, CA 94016" -252908,Wired Headphones,2,11.99,09/05/19 23:19,"972 Hill St, Boston, MA 02215" -252909,Wired Headphones,2,11.99,09/27/19 12:16,"190 Dogwood St, Seattle, WA 98101" -252910,Bose SoundSport Headphones,1,99.99,09/06/19 08:01,"178 South St, New York City, NY 10001" -252911,ThinkPad Laptop,1,999.99,09/23/19 19:05,"969 West St, Austin, TX 73301" -252912,AAA Batteries (4-pack),1,2.99,09/03/19 10:09,"363 Lakeview St, San Francisco, CA 94016" -252913,27in FHD Monitor,1,149.99,09/07/19 17:40,"343 Forest St, San Francisco, CA 94016" -252914,Macbook Pro Laptop,1,1700,09/25/19 22:43,"799 Wilson St, Portland, OR 97035" -252915,iPhone,1,700,09/07/19 18:55,"112 Johnson St, Atlanta, GA 30301" -252915,Wired Headphones,1,11.99,09/07/19 18:55,"112 Johnson St, Atlanta, GA 30301" -252916,Bose SoundSport Headphones,1,99.99,09/27/19 11:07,"679 12th St, New York City, NY 10001" -252917,20in Monitor,1,109.99,09/23/19 15:43,"711 Adams St, Seattle, WA 98101" -252918,USB-C Charging Cable,1,11.95,09/05/19 09:18,"179 North St, San Francisco, CA 94016" -252919,USB-C Charging Cable,1,11.95,09/13/19 18:00,"885 7th St, Austin, TX 73301" -252920,Lightning Charging Cable,1,14.95,09/06/19 12:31,"648 9th St, Los Angeles, CA 90001" -252921,Google Phone,1,600,09/28/19 12:06,"946 Sunset St, Seattle, WA 98101" -252922,AAA Batteries (4-pack),1,2.99,09/10/19 21:59,"357 14th St, San Francisco, CA 94016" -252923,27in 4K Gaming Monitor,1,389.99,09/04/19 16:09,"278 Hickory St, Atlanta, GA 30301" -252924,AA Batteries (4-pack),1,3.84,09/11/19 13:00,"659 Cedar St, Los Angeles, CA 90001" -252925,Apple Airpods Headphones,1,150,09/13/19 18:18,"902 Main St, New York City, NY 10001" -252926,Wired Headphones,1,11.99,09/17/19 17:17,"818 6th St, Austin, TX 73301" -252927,AAA Batteries (4-pack),6,2.99,09/28/19 08:56,"131 4th St, Los Angeles, CA 90001" -252928,Wired Headphones,1,11.99,09/04/19 18:16,"228 Spruce St, Seattle, WA 98101" -252929,AA Batteries (4-pack),1,3.84,09/27/19 11:04,"849 14th St, Dallas, TX 75001" -252930,Apple Airpods Headphones,1,150,09/02/19 15:33,"759 Church St, Atlanta, GA 30301" -252931,Apple Airpods Headphones,1,150,09/21/19 09:10,"235 2nd St, San Francisco, CA 94016" -252932,Wired Headphones,1,11.99,09/20/19 12:06,"316 Center St, Los Angeles, CA 90001" -252933,AA Batteries (4-pack),1,3.84,09/29/19 14:44,"516 Park St, Portland, ME 04101" -252934,Apple Airpods Headphones,1,150,09/29/19 17:31,"883 Jefferson St, San Francisco, CA 94016" -252935,Apple Airpods Headphones,1,150,09/15/19 11:41,"361 Dogwood St, Boston, MA 02215" -252936,Google Phone,1,600,09/10/19 17:50,"45 9th St, Los Angeles, CA 90001" -252937,Lightning Charging Cable,1,14.95,09/17/19 12:10,"500 Highland St, Los Angeles, CA 90001" -252938,AAA Batteries (4-pack),1,2.99,09/03/19 21:20,"41 Lincoln St, San Francisco, CA 94016" -252939,AAA Batteries (4-pack),1,2.99,09/14/19 23:17,"226 Johnson St, Los Angeles, CA 90001" -252940,Wired Headphones,1,11.99,09/18/19 14:13,"131 South St, Los Angeles, CA 90001" -252941,Vareebadd Phone,1,400,09/07/19 20:48,"517 Adams St, San Francisco, CA 94016" -252942,AA Batteries (4-pack),1,3.84,09/17/19 14:20,"354 13th St, Seattle, WA 98101" -252943,Apple Airpods Headphones,1,150,09/08/19 16:30,"983 Lake St, San Francisco, CA 94016" -252944,Lightning Charging Cable,1,14.95,09/14/19 09:57,"738 Pine St, Boston, MA 02215" -252945,Lightning Charging Cable,1,14.95,09/13/19 21:28,"82 Lakeview St, Austin, TX 73301" -252946,AA Batteries (4-pack),1,3.84,09/10/19 21:00,"668 Cedar St, Atlanta, GA 30301" -252947,Macbook Pro Laptop,1,1700,09/09/19 02:53,"560 Willow St, Dallas, TX 75001" -252948,Flatscreen TV,1,300,09/27/19 07:02,"108 Spruce St, San Francisco, CA 94016" -252949,Bose SoundSport Headphones,1,99.99,09/30/19 22:00,"998 12th St, Portland, OR 97035" -252950,Lightning Charging Cable,1,14.95,09/28/19 11:31,"854 West St, Los Angeles, CA 90001" -252951,AA Batteries (4-pack),1,3.84,09/30/19 17:19,"158 Johnson St, Portland, OR 97035" -252952,Lightning Charging Cable,1,14.95,09/09/19 14:06,"909 2nd St, Seattle, WA 98101" -252953,AA Batteries (4-pack),1,3.84,09/02/19 12:07,"305 Lake St, Atlanta, GA 30301" -252954,USB-C Charging Cable,1,11.95,09/28/19 09:39,"738 Forest St, Atlanta, GA 30301" -252955,iPhone,1,700,09/11/19 09:44,"734 Willow St, San Francisco, CA 94016" -252956,ThinkPad Laptop,1,999.99,09/24/19 12:30,"990 Maple St, Boston, MA 02215" -252957,Bose SoundSport Headphones,1,99.99,09/14/19 01:02,"765 Hickory St, Atlanta, GA 30301" -252958,Wired Headphones,1,11.99,09/25/19 01:07,"483 Highland St, Atlanta, GA 30301" -252959,Apple Airpods Headphones,1,150,09/12/19 21:28,"990 14th St, Boston, MA 02215" -252960,USB-C Charging Cable,1,11.95,09/13/19 12:11,"957 5th St, Seattle, WA 98101" -252961,Wired Headphones,1,11.99,09/11/19 01:08,"664 Lincoln St, Seattle, WA 98101" -252962,USB-C Charging Cable,1,11.95,09/19/19 09:30,"248 Hill St, Boston, MA 02215" -252963,LG Dryer,1,600.0,09/02/19 23:38,"742 Wilson St, Austin, TX 73301" -252964,Apple Airpods Headphones,1,150,09/03/19 14:22,"233 Hill St, Dallas, TX 75001" -252965,Macbook Pro Laptop,1,1700,09/12/19 11:24,"504 Lake St, New York City, NY 10001" -252966,USB-C Charging Cable,1,11.95,09/26/19 17:52,"591 14th St, Boston, MA 02215" -252967,Apple Airpods Headphones,1,150,09/04/19 23:41,"106 Madison St, San Francisco, CA 94016" -252968,AAA Batteries (4-pack),2,2.99,09/05/19 13:48,"313 Main St, Atlanta, GA 30301" -252969,Apple Airpods Headphones,1,150,09/19/19 16:00,"170 North St, Dallas, TX 75001" -252970,27in 4K Gaming Monitor,1,389.99,09/28/19 18:02,"327 13th St, Dallas, TX 75001" -252971,USB-C Charging Cable,1,11.95,09/30/19 13:06,"831 Elm St, Seattle, WA 98101" -252972,Bose SoundSport Headphones,1,99.99,09/01/19 14:12,"86 1st St, Los Angeles, CA 90001" -252973,Apple Airpods Headphones,1,150,09/09/19 13:15,"593 Hill St, Boston, MA 02215" -252974,Bose SoundSport Headphones,1,99.99,09/06/19 11:54,"746 Lake St, San Francisco, CA 94016" -252975,Wired Headphones,1,11.99,09/01/19 18:05,"673 Pine St, San Francisco, CA 94016" -252976,Bose SoundSport Headphones,1,99.99,09/07/19 13:44,"161 Madison St, Los Angeles, CA 90001" -252977,ThinkPad Laptop,1,999.99,09/14/19 17:06,"729 12th St, Austin, TX 73301" -252978,20in Monitor,1,109.99,09/21/19 09:18,"996 9th St, Seattle, WA 98101" -252979,Bose SoundSport Headphones,1,99.99,09/14/19 14:09,"678 Hickory St, San Francisco, CA 94016" -252980,27in FHD Monitor,1,149.99,09/10/19 20:21,"235 Washington St, New York City, NY 10001" -252981,Wired Headphones,1,11.99,09/19/19 16:52,"140 Chestnut St, Boston, MA 02215" -252982,AA Batteries (4-pack),1,3.84,09/28/19 16:11,"815 Highland St, Los Angeles, CA 90001" -252983,Vareebadd Phone,1,400,09/17/19 13:18,"734 2nd St, Seattle, WA 98101" -252984,Flatscreen TV,1,300,09/02/19 12:17,"546 Park St, San Francisco, CA 94016" -252985,Google Phone,1,600,09/08/19 23:43,"561 13th St, Dallas, TX 75001" -252986,USB-C Charging Cable,1,11.95,09/23/19 10:52,"30 1st St, Seattle, WA 98101" -252987,27in 4K Gaming Monitor,1,389.99,09/14/19 17:25,"522 13th St, Portland, ME 04101" -252988,AA Batteries (4-pack),1,3.84,09/04/19 11:51,"537 Willow St, Portland, ME 04101" -252989,USB-C Charging Cable,1,11.95,09/16/19 01:41,"241 Dogwood St, San Francisco, CA 94016" -252990,AAA Batteries (4-pack),1,2.99,09/29/19 10:59,"389 Ridge St, Dallas, TX 75001" -252991,AAA Batteries (4-pack),4,2.99,09/04/19 08:41,"712 South St, Boston, MA 02215" -252992,Bose SoundSport Headphones,1,99.99,09/25/19 19:09,"593 Church St, San Francisco, CA 94016" -252993,AAA Batteries (4-pack),2,2.99,09/14/19 14:01,"1 Washington St, San Francisco, CA 94016" -252994,34in Ultrawide Monitor,1,379.99,09/25/19 18:01,"694 Cherry St, Dallas, TX 75001" -252995,AAA Batteries (4-pack),1,2.99,09/19/19 19:04,"861 Madison St, Los Angeles, CA 90001" -252996,USB-C Charging Cable,1,11.95,09/01/19 23:30,"734 Walnut St, Boston, MA 02215" -252997,27in FHD Monitor,1,149.99,09/10/19 15:41,"183 Johnson St, Atlanta, GA 30301" -252998,20in Monitor,2,109.99,09/29/19 12:51,"415 5th St, Atlanta, GA 30301" -252999,USB-C Charging Cable,1,11.95,09/02/19 20:10,"597 Park St, San Francisco, CA 94016" -253000,AAA Batteries (4-pack),1,2.99,09/12/19 11:06,"86 Ridge St, Portland, OR 97035" -253001,Macbook Pro Laptop,1,1700,09/14/19 12:03,"366 Church St, San Francisco, CA 94016" -253002,USB-C Charging Cable,1,11.95,09/03/19 21:47,"523 Forest St, Boston, MA 02215" -253003,AAA Batteries (4-pack),3,2.99,09/22/19 22:11,"283 7th St, Los Angeles, CA 90001" -253004,AA Batteries (4-pack),1,3.84,09/26/19 12:55,"520 Lakeview St, Portland, OR 97035" -253005,USB-C Charging Cable,1,11.95,09/29/19 09:25,"50 9th St, Dallas, TX 75001" -253006,Flatscreen TV,1,300,09/03/19 13:58,"230 North St, Seattle, WA 98101" -253007,Bose SoundSport Headphones,1,99.99,09/25/19 07:28,"999 Wilson St, Atlanta, GA 30301" -253008,USB-C Charging Cable,1,11.95,09/14/19 19:25,"826 West St, San Francisco, CA 94016" -253009,Lightning Charging Cable,1,14.95,09/28/19 00:10,"393 Park St, Los Angeles, CA 90001" -253010,AA Batteries (4-pack),1,3.84,09/17/19 17:02,"647 Forest St, Portland, OR 97035" -253011,Lightning Charging Cable,2,14.95,09/26/19 07:01,"690 Park St, Los Angeles, CA 90001" -253012,USB-C Charging Cable,1,11.95,09/29/19 21:27,"979 14th St, Dallas, TX 75001" -253013,AA Batteries (4-pack),1,3.84,09/29/19 23:16,"2 2nd St, Los Angeles, CA 90001" -253014,USB-C Charging Cable,1,11.95,09/05/19 08:51,"171 13th St, Boston, MA 02215" -253015,Bose SoundSport Headphones,1,99.99,09/13/19 12:33,"873 Cherry St, Boston, MA 02215" -253016,USB-C Charging Cable,1,11.95,09/01/19 13:40,"975 Lakeview St, Los Angeles, CA 90001" -253017,Wired Headphones,3,11.99,09/14/19 19:07,"485 River St, Los Angeles, CA 90001" -253018,Apple Airpods Headphones,1,150,09/20/19 11:01,"263 9th St, San Francisco, CA 94016" -253019,Macbook Pro Laptop,1,1700,09/09/19 00:18,"921 Adams St, Boston, MA 02215" -253020,AA Batteries (4-pack),1,3.84,09/30/19 18:53,"176 Maple St, Boston, MA 02215" -253021,AA Batteries (4-pack),2,3.84,09/06/19 17:21,"585 Pine St, Boston, MA 02215" -253022,Wired Headphones,1,11.99,09/19/19 20:24,"349 Church St, Dallas, TX 75001" -253023,AA Batteries (4-pack),1,3.84,09/16/19 21:02,"780 Spruce St, Boston, MA 02215" -253024,USB-C Charging Cable,1,11.95,09/28/19 09:14,"277 Johnson St, Dallas, TX 75001" -253025,Wired Headphones,1,11.99,09/08/19 00:09,"639 Elm St, Seattle, WA 98101" -253026,Lightning Charging Cable,1,14.95,09/16/19 12:14,"426 2nd St, Dallas, TX 75001" -253027,Wired Headphones,1,11.99,09/23/19 20:42,"217 1st St, San Francisco, CA 94016" -253028,27in 4K Gaming Monitor,1,389.99,09/22/19 15:52,"634 Lincoln St, Portland, OR 97035" -253029,USB-C Charging Cable,1,11.95,09/12/19 10:46,"491 Center St, San Francisco, CA 94016" -253030,34in Ultrawide Monitor,1,379.99,09/20/19 13:56,"179 Cherry St, Los Angeles, CA 90001" -253031,27in FHD Monitor,1,149.99,09/21/19 17:45,"815 Willow St, New York City, NY 10001" -253032,Lightning Charging Cable,1,14.95,09/08/19 13:54,"598 River St, Los Angeles, CA 90001" -253033,AA Batteries (4-pack),1,3.84,09/05/19 09:53,"749 Main St, San Francisco, CA 94016" -253034,iPhone,1,700,09/02/19 08:50,"637 1st St, Los Angeles, CA 90001" -253035,AAA Batteries (4-pack),1,2.99,09/26/19 21:29,"451 Jefferson St, New York City, NY 10001" -253036,Bose SoundSport Headphones,1,99.99,09/25/19 11:05,"595 Ridge St, Boston, MA 02215" -253037,AA Batteries (4-pack),1,3.84,09/06/19 19:38,"224 Madison St, San Francisco, CA 94016" -253038,USB-C Charging Cable,1,11.95,09/01/19 18:59,"23 Hickory St, New York City, NY 10001" -253039,Macbook Pro Laptop,1,1700,09/13/19 13:10,"139 Cherry St, San Francisco, CA 94016" -253040,AA Batteries (4-pack),3,3.84,09/04/19 22:38,"49 Johnson St, San Francisco, CA 94016" -253041,USB-C Charging Cable,2,11.95,09/17/19 13:47,"165 5th St, New York City, NY 10001" -253042,AAA Batteries (4-pack),2,2.99,09/25/19 12:15,"228 Lake St, New York City, NY 10001" -253043,34in Ultrawide Monitor,1,379.99,09/15/19 11:45,"707 Dogwood St, Los Angeles, CA 90001" -253044,Lightning Charging Cable,1,14.95,09/14/19 13:41,"798 11th St, Portland, OR 97035" -253045,Flatscreen TV,1,300,09/23/19 16:45,"586 Park St, Atlanta, GA 30301" -253046,Macbook Pro Laptop,1,1700,09/04/19 18:21,"518 5th St, Dallas, TX 75001" -253047,Lightning Charging Cable,1,14.95,09/17/19 12:00,"292 Johnson St, Atlanta, GA 30301" -253048,34in Ultrawide Monitor,1,379.99,09/12/19 16:47,"29 North St, Boston, MA 02215" -253049,AAA Batteries (4-pack),1,2.99,09/02/19 21:00,"212 Jefferson St, Dallas, TX 75001" -253050,Wired Headphones,2,11.99,09/22/19 13:54,"142 7th St, San Francisco, CA 94016" -253051,AA Batteries (4-pack),1,3.84,09/19/19 11:35,"474 Lincoln St, New York City, NY 10001" -253052,Apple Airpods Headphones,1,150,09/22/19 12:49,"116 Lakeview St, New York City, NY 10001" -253053,Apple Airpods Headphones,1,150,09/21/19 13:24,"368 Hickory St, Dallas, TX 75001" -253054,Apple Airpods Headphones,1,150,09/24/19 15:15,"513 Cherry St, Boston, MA 02215" -253055,AA Batteries (4-pack),1,3.84,09/28/19 21:03,"765 Lakeview St, Dallas, TX 75001" -253056,Apple Airpods Headphones,1,150,09/26/19 19:34,"379 Meadow St, San Francisco, CA 94016" -253056,Google Phone,1,600,09/26/19 19:34,"379 Meadow St, San Francisco, CA 94016" -253057,AA Batteries (4-pack),2,3.84,09/21/19 17:15,"216 Wilson St, Los Angeles, CA 90001" -253058,Bose SoundSport Headphones,1,99.99,09/17/19 11:11,"783 13th St, Seattle, WA 98101" -253059,USB-C Charging Cable,1,11.95,09/05/19 11:41,"582 9th St, Portland, OR 97035" -253060,AA Batteries (4-pack),1,3.84,09/22/19 13:34,"343 Jackson St, Atlanta, GA 30301" -253061,USB-C Charging Cable,1,11.95,09/05/19 22:28,"121 Lake St, Dallas, TX 75001" -253062,Apple Airpods Headphones,1,150,09/27/19 13:08,"1 Highland St, Atlanta, GA 30301" -253063,27in 4K Gaming Monitor,1,389.99,09/10/19 23:29,"635 Adams St, San Francisco, CA 94016" -253064,AAA Batteries (4-pack),1,2.99,09/24/19 13:42,"498 Adams St, Los Angeles, CA 90001" -253065,AA Batteries (4-pack),1,3.84,09/22/19 14:56,"879 10th St, Boston, MA 02215" -253066,27in 4K Gaming Monitor,1,389.99,09/26/19 08:36,"181 Wilson St, San Francisco, CA 94016" -253067,27in 4K Gaming Monitor,1,389.99,09/12/19 21:10,"943 4th St, Los Angeles, CA 90001" -253068,Wired Headphones,1,11.99,09/17/19 18:45,"368 8th St, New York City, NY 10001" -253069,AA Batteries (4-pack),1,3.84,09/07/19 11:08,"946 Hill St, San Francisco, CA 94016" -253070,Macbook Pro Laptop,1,1700,09/06/19 15:46,"968 Main St, San Francisco, CA 94016" -253071,Apple Airpods Headphones,1,150,09/24/19 19:38,"956 8th St, Dallas, TX 75001" -253072,AA Batteries (4-pack),1,3.84,09/20/19 21:10,"33 Meadow St, New York City, NY 10001" -253073,Google Phone,1,600,09/29/19 13:40,"393 9th St, Dallas, TX 75001" -253074,USB-C Charging Cable,1,11.95,09/22/19 07:37,"578 Forest St, Austin, TX 73301" -253075,Apple Airpods Headphones,1,150,09/01/19 14:40,"492 Chestnut St, Dallas, TX 75001" -253076,LG Washing Machine,1,600.0,09/13/19 21:51,"301 Sunset St, San Francisco, CA 94016" -253077,Lightning Charging Cable,1,14.95,09/03/19 10:47,"685 Walnut St, Boston, MA 02215" -253078,Macbook Pro Laptop,1,1700,09/29/19 08:14,"830 Jefferson St, Dallas, TX 75001" -253079,Bose SoundSport Headphones,1,99.99,09/23/19 10:38,"864 Johnson St, Atlanta, GA 30301" -253080,20in Monitor,1,109.99,09/06/19 15:15,"401 Church St, New York City, NY 10001" -253081,Bose SoundSport Headphones,1,99.99,09/10/19 10:53,"824 Spruce St, San Francisco, CA 94016" -253082,Wired Headphones,1,11.99,09/12/19 11:04,"328 1st St, Los Angeles, CA 90001" -253083,Wired Headphones,1,11.99,09/14/19 13:28,"853 Center St, Boston, MA 02215" -253084,Google Phone,1,600,09/25/19 12:51,"517 Hickory St, New York City, NY 10001" -253084,USB-C Charging Cable,1,11.95,09/25/19 12:51,"517 Hickory St, New York City, NY 10001" -253085,Flatscreen TV,1,300,09/21/19 21:42,"74 Sunset St, Boston, MA 02215" -253086,iPhone,1,700,09/07/19 18:43,"631 Chestnut St, San Francisco, CA 94016" -253087,AA Batteries (4-pack),1,3.84,09/24/19 13:42,"70 South St, Los Angeles, CA 90001" -253088,Lightning Charging Cable,1,14.95,09/23/19 08:30,"783 Ridge St, New York City, NY 10001" -253089,Lightning Charging Cable,1,14.95,09/03/19 14:09,"191 North St, Dallas, TX 75001" -253090,AA Batteries (4-pack),1,3.84,09/01/19 21:49,"165 Elm St, San Francisco, CA 94016" -253091,USB-C Charging Cable,1,11.95,09/29/19 09:22,"963 Church St, New York City, NY 10001" -253092,AA Batteries (4-pack),1,3.84,09/28/19 18:15,"343 10th St, San Francisco, CA 94016" -253093,USB-C Charging Cable,1,11.95,09/09/19 00:06,"175 Pine St, Los Angeles, CA 90001" -253094,Wired Headphones,1,11.99,09/21/19 22:39,"925 Cedar St, Boston, MA 02215" -253095,AAA Batteries (4-pack),1,2.99,09/04/19 11:12,"793 Hickory St, New York City, NY 10001" -253096,USB-C Charging Cable,1,11.95,09/10/19 14:02,"901 Ridge St, Dallas, TX 75001" -253097,AA Batteries (4-pack),1,3.84,09/05/19 20:59,"279 North St, Boston, MA 02215" -253098,Wired Headphones,1,11.99,09/01/19 12:38,"613 Wilson St, Seattle, WA 98101" -253099,AA Batteries (4-pack),1,3.84,09/23/19 12:43,"266 Forest St, New York City, NY 10001" -253100,AA Batteries (4-pack),1,3.84,09/30/19 17:27,"526 Maple St, San Francisco, CA 94016" -253101,USB-C Charging Cable,1,11.95,09/28/19 23:30,"90 14th St, Boston, MA 02215" -253102,Flatscreen TV,1,300,09/13/19 16:28,"357 Hickory St, New York City, NY 10001" -253103,Apple Airpods Headphones,1,150,09/18/19 22:13,"429 Pine St, New York City, NY 10001" -253104,Google Phone,1,600,09/29/19 18:14,"450 Lincoln St, Portland, OR 97035" -253104,Bose SoundSport Headphones,1,99.99,09/29/19 18:14,"450 Lincoln St, Portland, OR 97035" -253105,AAA Batteries (4-pack),1,2.99,09/14/19 22:02,"333 Forest St, San Francisco, CA 94016" -253106,Bose SoundSport Headphones,1,99.99,09/07/19 11:29,"39 Walnut St, Seattle, WA 98101" -253107,Apple Airpods Headphones,1,150,09/11/19 10:29,"569 Forest St, New York City, NY 10001" -253108,iPhone,1,700,09/06/19 19:25,"104 9th St, San Francisco, CA 94016" -253109,Bose SoundSport Headphones,1,99.99,09/06/19 16:57,"65 Spruce St, Atlanta, GA 30301" -253110,Bose SoundSport Headphones,1,99.99,09/20/19 19:33,"59 Madison St, San Francisco, CA 94016" -253111,Bose SoundSport Headphones,1,99.99,09/24/19 19:40,"494 Spruce St, Los Angeles, CA 90001" -253112,AAA Batteries (4-pack),3,2.99,09/16/19 17:25,"397 11th St, Dallas, TX 75001" -253113,Wired Headphones,1,11.99,09/16/19 21:40,"955 8th St, Atlanta, GA 30301" -253114,AA Batteries (4-pack),2,3.84,09/25/19 12:53,"233 Church St, Dallas, TX 75001" -253115,ThinkPad Laptop,1,999.99,09/13/19 16:48,"411 Lake St, San Francisco, CA 94016" -253116,AA Batteries (4-pack),1,3.84,09/30/19 08:56,"429 Pine St, New York City, NY 10001" -253117,27in FHD Monitor,1,149.99,09/27/19 12:16,"824 7th St, San Francisco, CA 94016" -253118,Flatscreen TV,1,300,09/29/19 19:11,"789 Johnson St, Los Angeles, CA 90001" -253119,Macbook Pro Laptop,1,1700,09/08/19 20:02,"188 Washington St, New York City, NY 10001" -253120,34in Ultrawide Monitor,1,379.99,09/29/19 13:18,"939 4th St, New York City, NY 10001" -253121,Vareebadd Phone,1,400,09/07/19 06:20,"957 Lincoln St, San Francisco, CA 94016" -253122,Flatscreen TV,1,300,09/14/19 20:11,"804 Main St, San Francisco, CA 94016" -253123,27in FHD Monitor,1,149.99,09/01/19 20:29,"391 7th St, New York City, NY 10001" -253124,USB-C Charging Cable,1,11.95,09/11/19 21:19,"221 Lakeview St, Austin, TX 73301" -253125,Wired Headphones,1,11.99,09/14/19 11:09,"82 4th St, San Francisco, CA 94016" -253126,Bose SoundSport Headphones,1,99.99,09/24/19 14:54,"767 North St, New York City, NY 10001" -253127,AAA Batteries (4-pack),4,2.99,09/21/19 19:12,"789 Maple St, Boston, MA 02215" -253128,USB-C Charging Cable,1,11.95,09/15/19 22:33,"169 Hickory St, Los Angeles, CA 90001" -253129,USB-C Charging Cable,1,11.95,09/07/19 13:02,"165 5th St, Boston, MA 02215" -253130,AAA Batteries (4-pack),1,2.99,09/09/19 07:20,"480 Sunset St, San Francisco, CA 94016" -253131,27in FHD Monitor,1,149.99,09/09/19 12:50,"699 Jackson St, Portland, OR 97035" -253132,Lightning Charging Cable,1,14.95,09/30/19 17:00,"616 Walnut St, Los Angeles, CA 90001" -253133,Bose SoundSport Headphones,1,99.99,09/15/19 19:21,"552 Highland St, Boston, MA 02215" -253134,Apple Airpods Headphones,1,150,09/28/19 16:11,"748 13th St, San Francisco, CA 94016" -253135,27in 4K Gaming Monitor,1,389.99,09/27/19 22:04,"835 North St, San Francisco, CA 94016" -253136,Apple Airpods Headphones,1,150,09/17/19 18:09,"642 Lakeview St, Portland, OR 97035" -253137,Lightning Charging Cable,1,14.95,09/10/19 19:26,"301 Hickory St, Boston, MA 02215" -253138,27in FHD Monitor,1,149.99,09/29/19 19:27,"857 Chestnut St, New York City, NY 10001" -253139,USB-C Charging Cable,1,11.95,09/30/19 09:40,"984 12th St, Los Angeles, CA 90001" -253140,USB-C Charging Cable,1,11.95,09/17/19 13:03,"682 Chestnut St, Austin, TX 73301" -253141,USB-C Charging Cable,1,11.95,09/03/19 14:33,"58 2nd St, Portland, OR 97035" -253142,27in FHD Monitor,1,149.99,09/06/19 00:48,"252 7th St, Atlanta, GA 30301" -253143,Wired Headphones,1,11.99,09/13/19 04:25,"88 9th St, Atlanta, GA 30301" -253144,27in FHD Monitor,1,149.99,09/20/19 19:21,"479 13th St, Los Angeles, CA 90001" -253145,Apple Airpods Headphones,1,150,09/23/19 20:06,"507 Lake St, San Francisco, CA 94016" -253146,Vareebadd Phone,1,400,09/19/19 21:56,"948 Dogwood St, Portland, OR 97035" -253146,USB-C Charging Cable,1,11.95,09/19/19 21:56,"948 Dogwood St, Portland, OR 97035" -253147,ThinkPad Laptop,1,999.99,09/21/19 22:17,"674 Forest St, San Francisco, CA 94016" -253148,Bose SoundSport Headphones,1,99.99,09/14/19 20:11,"692 Forest St, Portland, ME 04101" -253149,Vareebadd Phone,1,400,09/27/19 18:50,"221 10th St, Portland, OR 97035" -253150,iPhone,1,700,09/09/19 22:42,"165 Maple St, Atlanta, GA 30301" -253151,USB-C Charging Cable,1,11.95,09/08/19 16:25,"395 Pine St, New York City, NY 10001" -253152,Wired Headphones,1,11.99,09/11/19 14:42,"973 1st St, San Francisco, CA 94016" -253153,USB-C Charging Cable,1,11.95,09/02/19 22:10,"206 Main St, Boston, MA 02215" -253154,AAA Batteries (4-pack),1,2.99,09/04/19 03:59,"851 7th St, San Francisco, CA 94016" -253155,Google Phone,1,600,09/29/19 01:03,"279 Dogwood St, Atlanta, GA 30301" -253156,USB-C Charging Cable,1,11.95,09/15/19 13:44,"951 Pine St, Portland, ME 04101" -253157,USB-C Charging Cable,1,11.95,09/16/19 16:45,"277 North St, Boston, MA 02215" -253158,AAA Batteries (4-pack),4,2.99,09/29/19 00:37,"40 Ridge St, Dallas, TX 75001" -253159,Google Phone,1,600,09/30/19 11:49,"670 Lincoln St, Seattle, WA 98101" -253160,AAA Batteries (4-pack),4,2.99,09/04/19 06:26,"269 Main St, San Francisco, CA 94016" -253161,USB-C Charging Cable,1,11.95,09/15/19 20:21,"6 Center St, Los Angeles, CA 90001" -253162,Wired Headphones,1,11.99,09/04/19 12:43,"743 Forest St, Seattle, WA 98101" -253163,USB-C Charging Cable,1,11.95,09/09/19 21:17,"868 8th St, San Francisco, CA 94016" -253164,AA Batteries (4-pack),1,3.84,09/14/19 17:22,"457 West St, San Francisco, CA 94016" -253165,27in 4K Gaming Monitor,1,389.99,09/15/19 23:23,"73 Jackson St, Los Angeles, CA 90001" -253166,Wired Headphones,1,11.99,09/23/19 19:16,"388 11th St, Portland, OR 97035" -253167,AAA Batteries (4-pack),1,2.99,09/12/19 18:21,"913 Highland St, San Francisco, CA 94016" -253168,20in Monitor,1,109.99,10/01/19 04:06,"105 Sunset St, Boston, MA 02215" -253169,Macbook Pro Laptop,1,1700,09/30/19 11:57,"802 Adams St, San Francisco, CA 94016" -253170,AA Batteries (4-pack),1,3.84,09/25/19 09:51,"880 8th St, Seattle, WA 98101" -253171,AAA Batteries (4-pack),1,2.99,09/02/19 17:29,"888 11th St, San Francisco, CA 94016" -253172,USB-C Charging Cable,1,11.95,09/16/19 22:28,"229 Adams St, San Francisco, CA 94016" -253173,AA Batteries (4-pack),1,3.84,09/10/19 09:25,"356 Center St, Portland, OR 97035" -253174,27in 4K Gaming Monitor,1,389.99,09/06/19 11:01,"422 9th St, Atlanta, GA 30301" -253175,Lightning Charging Cable,1,14.95,09/19/19 08:46,"615 1st St, Portland, OR 97035" -253176,Lightning Charging Cable,1,14.95,09/21/19 10:17,"654 Cedar St, Los Angeles, CA 90001" -253177,USB-C Charging Cable,1,11.95,09/09/19 14:29,"911 Main St, Los Angeles, CA 90001" -253178,AAA Batteries (4-pack),1,2.99,09/27/19 00:44,"787 4th St, New York City, NY 10001" -253179,iPhone,1,700,09/30/19 19:20,"914 11th St, Boston, MA 02215" -253180,USB-C Charging Cable,1,11.95,09/06/19 10:25,"245 Meadow St, Seattle, WA 98101" -253181,AAA Batteries (4-pack),1,2.99,09/26/19 10:50,"955 Church St, Boston, MA 02215" -253181,iPhone,1,700,09/26/19 10:50,"955 Church St, Boston, MA 02215" -253182,AA Batteries (4-pack),2,3.84,09/21/19 22:18,"380 11th St, San Francisco, CA 94016" -253183,AA Batteries (4-pack),1,3.84,09/20/19 19:22,"324 2nd St, Portland, ME 04101" -253184,Apple Airpods Headphones,1,150,09/08/19 22:05,"567 5th St, Dallas, TX 75001" -253185,AA Batteries (4-pack),1,3.84,09/04/19 20:44,"142 9th St, Portland, OR 97035" -253186,27in 4K Gaming Monitor,1,389.99,09/29/19 15:50,"549 Sunset St, Los Angeles, CA 90001" -253187,USB-C Charging Cable,1,11.95,09/02/19 18:00,"931 Park St, Los Angeles, CA 90001" -253188,AAA Batteries (4-pack),1,2.99,09/01/19 17:12,"144 Main St, Atlanta, GA 30301" -253189,USB-C Charging Cable,1,11.95,09/23/19 20:51,"182 12th St, New York City, NY 10001" -253190,AA Batteries (4-pack),1,3.84,09/21/19 10:40,"186 Jackson St, Los Angeles, CA 90001" -253191,USB-C Charging Cable,1,11.95,09/04/19 02:38,"173 River St, San Francisco, CA 94016" -253192,27in FHD Monitor,1,149.99,09/23/19 10:05,"903 Hickory St, New York City, NY 10001" -253193,Vareebadd Phone,1,400,09/10/19 16:31,"7 River St, Boston, MA 02215" -253194,AAA Batteries (4-pack),1,2.99,09/18/19 17:50,"271 Maple St, Los Angeles, CA 90001" -253195,USB-C Charging Cable,1,11.95,09/27/19 20:21,"901 Main St, Atlanta, GA 30301" -253196,Wired Headphones,2,11.99,09/05/19 14:25,"775 Washington St, Boston, MA 02215" -253197,Bose SoundSport Headphones,1,99.99,09/18/19 21:40,"184 5th St, Boston, MA 02215" -253198,Lightning Charging Cable,1,14.95,09/26/19 22:17,"167 Madison St, Boston, MA 02215" -253199,Bose SoundSport Headphones,1,99.99,09/15/19 21:33,"664 Lincoln St, New York City, NY 10001" -253200,Lightning Charging Cable,1,14.95,09/10/19 17:32,"924 River St, San Francisco, CA 94016" -253201,Bose SoundSport Headphones,1,99.99,09/23/19 17:16,"586 Dogwood St, Dallas, TX 75001" -253202,USB-C Charging Cable,1,11.95,09/25/19 14:39,"302 Pine St, Atlanta, GA 30301" -253203,Wired Headphones,1,11.99,09/10/19 21:52,"29 1st St, Los Angeles, CA 90001" -253204,Wired Headphones,1,11.99,09/01/19 22:06,"771 7th St, Dallas, TX 75001" -253205,AA Batteries (4-pack),1,3.84,09/20/19 12:11,"860 Lakeview St, New York City, NY 10001" -253206,AAA Batteries (4-pack),1,2.99,09/04/19 12:29,"516 Pine St, San Francisco, CA 94016" -253207,AA Batteries (4-pack),2,3.84,09/11/19 20:49,"961 10th St, Atlanta, GA 30301" -253208,AA Batteries (4-pack),1,3.84,09/16/19 07:22,"948 5th St, Los Angeles, CA 90001" -253209,iPhone,1,700,09/05/19 21:08,"761 Willow St, San Francisco, CA 94016" -253210,Wired Headphones,1,11.99,09/10/19 16:11,"80 5th St, Seattle, WA 98101" -253211,Apple Airpods Headphones,1,150,09/19/19 18:18,"396 Chestnut St, Seattle, WA 98101" -253212,USB-C Charging Cable,1,11.95,09/28/19 21:17,"951 Lakeview St, Dallas, TX 75001" -253213,Lightning Charging Cable,1,14.95,09/11/19 09:56,"83 Center St, San Francisco, CA 94016" -253214,USB-C Charging Cable,1,11.95,09/02/19 13:56,"686 Chestnut St, New York City, NY 10001" -253215,Wired Headphones,1,11.99,09/14/19 09:25,"842 Park St, Boston, MA 02215" -253216,Apple Airpods Headphones,1,150,09/02/19 13:04,"864 Spruce St, San Francisco, CA 94016" -253217,20in Monitor,1,109.99,09/24/19 20:52,"812 Lake St, Los Angeles, CA 90001" -253218,Google Phone,1,600,09/05/19 08:54,"158 North St, Dallas, TX 75001" -253218,USB-C Charging Cable,1,11.95,09/05/19 08:54,"158 North St, Dallas, TX 75001" -253219,Lightning Charging Cable,1,14.95,09/11/19 18:18,"408 4th St, New York City, NY 10001" -253220,AA Batteries (4-pack),1,3.84,09/16/19 09:36,"17 Hickory St, San Francisco, CA 94016" -253221,27in FHD Monitor,1,149.99,09/15/19 18:22,"700 Walnut St, Atlanta, GA 30301" -253222,Lightning Charging Cable,1,14.95,09/04/19 19:32,"236 Lakeview St, Los Angeles, CA 90001" -253223,34in Ultrawide Monitor,1,379.99,09/13/19 11:00,"965 Jackson St, Portland, OR 97035" -253224,Lightning Charging Cable,1,14.95,09/02/19 00:15,"485 Johnson St, San Francisco, CA 94016" -253225,34in Ultrawide Monitor,1,379.99,09/11/19 06:03,"927 9th St, Dallas, TX 75001" -253226,USB-C Charging Cable,1,11.95,09/26/19 10:38,"645 Chestnut St, New York City, NY 10001" -253227,AA Batteries (4-pack),1,3.84,09/12/19 15:06,"323 Lake St, Los Angeles, CA 90001" -253228,Google Phone,1,600,09/06/19 09:37,"11 11th St, Atlanta, GA 30301" -253229,Lightning Charging Cable,2,14.95,09/03/19 11:00,"485 5th St, San Francisco, CA 94016" -253230,ThinkPad Laptop,1,999.99,09/10/19 21:16,"143 Madison St, San Francisco, CA 94016" -253231,34in Ultrawide Monitor,1,379.99,09/04/19 17:19,"294 Lakeview St, Atlanta, GA 30301" -253232,Lightning Charging Cable,1,14.95,09/13/19 18:46,"256 11th St, Los Angeles, CA 90001" -253233,AA Batteries (4-pack),1,3.84,09/28/19 10:49,"726 11th St, San Francisco, CA 94016" -253234,AAA Batteries (4-pack),2,2.99,09/19/19 21:28,"26 14th St, Seattle, WA 98101" -253235,Apple Airpods Headphones,1,150,09/06/19 17:27,"6 Chestnut St, Austin, TX 73301" -253236,Apple Airpods Headphones,1,150,09/18/19 13:03,"178 Lakeview St, San Francisco, CA 94016" -253237,Bose SoundSport Headphones,1,99.99,09/20/19 13:02,"496 Main St, San Francisco, CA 94016" -253238,20in Monitor,1,109.99,09/05/19 08:32,"962 Maple St, Atlanta, GA 30301" -253239,Bose SoundSport Headphones,1,99.99,09/06/19 22:26,"622 12th St, Los Angeles, CA 90001" -253240,AAA Batteries (4-pack),3,2.99,09/16/19 00:54,"839 Ridge St, New York City, NY 10001" -253241,USB-C Charging Cable,1,11.95,09/13/19 08:59,"750 Pine St, Boston, MA 02215" -253242,27in FHD Monitor,1,149.99,09/29/19 09:29,"295 Lake St, New York City, NY 10001" -253243,Lightning Charging Cable,1,14.95,09/22/19 09:58,"847 Maple St, San Francisco, CA 94016" -253244,Lightning Charging Cable,1,14.95,09/30/19 11:05,"677 Main St, Los Angeles, CA 90001" -253244,USB-C Charging Cable,1,11.95,09/30/19 11:05,"677 Main St, Los Angeles, CA 90001" -253245,Lightning Charging Cable,1,14.95,09/17/19 15:48,"884 Willow St, New York City, NY 10001" -253246,iPhone,1,700,09/24/19 14:10,"13 7th St, San Francisco, CA 94016" -253247,20in Monitor,1,109.99,09/13/19 20:46,"906 Church St, Atlanta, GA 30301" -,,,,, -253248,Wired Headphones,1,11.99,09/26/19 13:36,"142 Chestnut St, Boston, MA 02215" -253249,ThinkPad Laptop,1,999.99,09/27/19 21:07,"105 6th St, Seattle, WA 98101" -253250,Apple Airpods Headphones,1,150,09/19/19 14:07,"895 Spruce St, New York City, NY 10001" -253251,iPhone,1,700,09/22/19 12:08,"650 Highland St, San Francisco, CA 94016" -253252,Wired Headphones,1,11.99,09/21/19 03:19,"542 14th St, Los Angeles, CA 90001" -253253,AA Batteries (4-pack),1,3.84,09/30/19 10:20,"785 Willow St, San Francisco, CA 94016" -253254,27in FHD Monitor,1,149.99,09/13/19 13:17,"866 North St, San Francisco, CA 94016" -253255,Wired Headphones,1,11.99,09/15/19 21:58,"320 6th St, Portland, OR 97035" -253256,Bose SoundSport Headphones,1,99.99,09/06/19 20:49,"911 2nd St, New York City, NY 10001" -253257,Flatscreen TV,1,300,09/04/19 00:32,"489 1st St, Los Angeles, CA 90001" -253258,USB-C Charging Cable,1,11.95,09/28/19 14:03,"663 Walnut St, New York City, NY 10001" -253259,iPhone,1,700,09/06/19 17:16,"190 Dogwood St, San Francisco, CA 94016" -253260,USB-C Charging Cable,2,11.95,09/05/19 10:02,"177 2nd St, Los Angeles, CA 90001" -253261,Bose SoundSport Headphones,1,99.99,09/19/19 08:46,"6 Cedar St, Boston, MA 02215" -253262,27in FHD Monitor,1,149.99,09/24/19 08:40,"217 Lincoln St, San Francisco, CA 94016" -253263,Wired Headphones,1,11.99,09/17/19 09:14,"56 Adams St, San Francisco, CA 94016" -253264,Macbook Pro Laptop,1,1700,09/19/19 18:55,"554 Jackson St, New York City, NY 10001" -253265,Bose SoundSport Headphones,1,99.99,09/22/19 14:24,"997 14th St, Seattle, WA 98101" -253266,USB-C Charging Cable,1,11.95,09/27/19 14:48,"957 Cedar St, Boston, MA 02215" -253267,20in Monitor,1,109.99,09/17/19 20:26,"792 Meadow St, Los Angeles, CA 90001" -253268,AAA Batteries (4-pack),1,2.99,09/01/19 23:45,"333 Jackson St, Seattle, WA 98101" -253269,USB-C Charging Cable,1,11.95,09/22/19 18:46,"463 Lakeview St, Dallas, TX 75001" -253270,iPhone,1,700,09/06/19 13:39,"439 9th St, Atlanta, GA 30301" -253271,AAA Batteries (4-pack),1,2.99,09/03/19 12:38,"433 Lakeview St, New York City, NY 10001" -253272,USB-C Charging Cable,1,11.95,09/03/19 00:00,"340 Cherry St, New York City, NY 10001" -253273,Bose SoundSport Headphones,1,99.99,09/25/19 09:32,"388 7th St, Atlanta, GA 30301" -253274,Apple Airpods Headphones,1,150,09/10/19 12:00,"365 2nd St, Los Angeles, CA 90001" -253275,ThinkPad Laptop,1,999.99,09/25/19 13:01,"424 Hickory St, San Francisco, CA 94016" -253276,AA Batteries (4-pack),1,3.84,09/24/19 18:30,"683 4th St, Atlanta, GA 30301" -253277,AA Batteries (4-pack),3,3.84,09/03/19 10:38,"166 Lincoln St, Los Angeles, CA 90001" -253278,Apple Airpods Headphones,1,150,09/22/19 12:37,"391 Maple St, Dallas, TX 75001" -253279,Lightning Charging Cable,1,14.95,09/18/19 18:34,"780 10th St, Seattle, WA 98101" -253280,iPhone,1,700,09/23/19 17:15,"830 11th St, San Francisco, CA 94016" -253281,20in Monitor,1,109.99,09/20/19 00:32,"511 Jefferson St, Atlanta, GA 30301" -253282,Apple Airpods Headphones,1,150,09/17/19 22:43,"103 Maple St, Atlanta, GA 30301" -253283,iPhone,1,700,09/24/19 19:16,"57 Washington St, Dallas, TX 75001" -253284,Google Phone,1,600,09/11/19 22:34,"496 North St, Seattle, WA 98101" -253285,Apple Airpods Headphones,1,150,09/06/19 19:45,"776 4th St, Los Angeles, CA 90001" -253286,AA Batteries (4-pack),1,3.84,09/27/19 11:07,"488 12th St, Atlanta, GA 30301" -253287,Macbook Pro Laptop,1,1700,09/30/19 19:14,"16 South St, Atlanta, GA 30301" -253288,Wired Headphones,1,11.99,09/27/19 14:12,"330 Forest St, New York City, NY 10001" -253289,20in Monitor,1,109.99,09/22/19 11:56,"177 Jefferson St, Portland, OR 97035" -253290,Lightning Charging Cable,1,14.95,09/17/19 21:54,"719 Elm St, Dallas, TX 75001" -253291,Wired Headphones,1,11.99,09/13/19 22:56,"398 Lincoln St, Austin, TX 73301" -253292,Macbook Pro Laptop,1,1700,09/03/19 10:41,"622 11th St, San Francisco, CA 94016" -253293,Apple Airpods Headphones,1,150,09/08/19 14:54,"685 Pine St, Dallas, TX 75001" -253294,AAA Batteries (4-pack),1,2.99,09/04/19 21:22,"392 Highland St, New York City, NY 10001" -253295,Lightning Charging Cable,1,14.95,09/25/19 10:33,"682 Park St, Seattle, WA 98101" -253296,34in Ultrawide Monitor,1,379.99,09/14/19 22:29,"218 Spruce St, Los Angeles, CA 90001" -253297,AA Batteries (4-pack),1,3.84,09/30/19 21:49,"499 Lincoln St, Los Angeles, CA 90001" -253298,USB-C Charging Cable,1,11.95,09/12/19 23:56,"677 Madison St, New York City, NY 10001" -253299,iPhone,1,700,09/09/19 11:02,"556 Spruce St, San Francisco, CA 94016" -253300,34in Ultrawide Monitor,1,379.99,09/16/19 19:25,"409 Jackson St, Boston, MA 02215" -253301,USB-C Charging Cable,1,11.95,09/28/19 20:05,"952 5th St, Dallas, TX 75001" -253302,Wired Headphones,1,11.99,09/27/19 10:11,"629 10th St, New York City, NY 10001" -253303,AAA Batteries (4-pack),2,2.99,09/23/19 18:25,"542 Lake St, Austin, TX 73301" -253304,Bose SoundSport Headphones,1,99.99,09/19/19 09:49,"498 1st St, Austin, TX 73301" -253305,iPhone,1,700,09/07/19 08:32,"772 11th St, Los Angeles, CA 90001" -253306,Apple Airpods Headphones,1,150,09/11/19 19:02,"960 12th St, Boston, MA 02215" -253307,Apple Airpods Headphones,2,150,09/19/19 18:35,"191 Lincoln St, Seattle, WA 98101" -253308,ThinkPad Laptop,1,999.99,09/18/19 11:10,"705 9th St, Atlanta, GA 30301" -253309,AAA Batteries (4-pack),3,2.99,09/13/19 18:55,"556 Willow St, San Francisco, CA 94016" -253310,Bose SoundSport Headphones,1,99.99,09/10/19 20:05,"226 11th St, San Francisco, CA 94016" -253311,Apple Airpods Headphones,1,150,09/12/19 20:52,"895 9th St, Los Angeles, CA 90001" -253312,20in Monitor,1,109.99,09/20/19 13:22,"830 Lincoln St, Los Angeles, CA 90001" -253313,AA Batteries (4-pack),1,3.84,09/23/19 10:59,"173 North St, New York City, NY 10001" -253314,Apple Airpods Headphones,1,150,09/15/19 21:21,"11 Highland St, Los Angeles, CA 90001" -253315,Apple Airpods Headphones,1,150,09/10/19 14:16,"658 Hickory St, New York City, NY 10001" -253316,USB-C Charging Cable,1,11.95,09/30/19 08:04,"174 Ridge St, Atlanta, GA 30301" -253317,27in 4K Gaming Monitor,1,389.99,09/20/19 13:05,"314 Lincoln St, Atlanta, GA 30301" -253318,27in FHD Monitor,1,149.99,09/10/19 21:03,"712 8th St, San Francisco, CA 94016" -253319,Lightning Charging Cable,1,14.95,09/02/19 22:20,"675 Main St, Boston, MA 02215" -253320,Google Phone,1,600,09/30/19 10:31,"778 4th St, Dallas, TX 75001" -253320,USB-C Charging Cable,1,11.95,09/30/19 10:31,"778 4th St, Dallas, TX 75001" -253321,Lightning Charging Cable,3,14.95,09/18/19 13:22,"48 North St, San Francisco, CA 94016" -253322,Apple Airpods Headphones,1,150,09/05/19 12:12,"890 4th St, Austin, TX 73301" -253323,USB-C Charging Cable,1,11.95,09/27/19 21:49,"719 River St, Seattle, WA 98101" -253324,Vareebadd Phone,1,400,09/13/19 11:49,"601 11th St, San Francisco, CA 94016" -253325,Lightning Charging Cable,1,14.95,09/30/19 10:06,"499 South St, Dallas, TX 75001" -253326,Apple Airpods Headphones,1,150,09/10/19 22:06,"239 4th St, Seattle, WA 98101" -253327,AA Batteries (4-pack),1,3.84,09/15/19 19:22,"415 Spruce St, Los Angeles, CA 90001" -253328,Lightning Charging Cable,2,14.95,09/03/19 11:43,"209 Sunset St, San Francisco, CA 94016" -253329,AAA Batteries (4-pack),1,2.99,09/28/19 08:53,"641 6th St, Portland, ME 04101" -253330,AAA Batteries (4-pack),2,2.99,09/22/19 18:11,"797 Washington St, Portland, OR 97035" -253330,AA Batteries (4-pack),2,3.84,09/22/19 18:11,"797 Washington St, Portland, OR 97035" -253331,Google Phone,1,600,09/02/19 13:16,"92 Dogwood St, San Francisco, CA 94016" -253332,34in Ultrawide Monitor,1,379.99,09/07/19 10:35,"356 Maple St, Atlanta, GA 30301" -253333,Bose SoundSport Headphones,1,99.99,09/29/19 10:43,"286 Hickory St, New York City, NY 10001" -253334,Google Phone,1,600,09/29/19 12:00,"328 Dogwood St, Dallas, TX 75001" -253335,Vareebadd Phone,1,400,09/25/19 12:06,"725 Church St, Boston, MA 02215" -253336,AAA Batteries (4-pack),3,2.99,09/03/19 13:18,"747 Pine St, Austin, TX 73301" -253337,AAA Batteries (4-pack),1,2.99,09/13/19 10:37,"4 10th St, Los Angeles, CA 90001" -253338,20in Monitor,1,109.99,09/14/19 16:56,"600 Johnson St, Seattle, WA 98101" -253339,27in 4K Gaming Monitor,1,389.99,09/13/19 22:13,"80 Lakeview St, Boston, MA 02215" -253340,AAA Batteries (4-pack),2,2.99,09/19/19 14:52,"173 Ridge St, Atlanta, GA 30301" -253341,Wired Headphones,2,11.99,09/21/19 11:27,"916 12th St, Los Angeles, CA 90001" -253342,USB-C Charging Cable,2,11.95,09/21/19 12:39,"516 Center St, Los Angeles, CA 90001" -253343,AA Batteries (4-pack),1,3.84,09/15/19 12:02,"287 River St, Dallas, TX 75001" -253344,AA Batteries (4-pack),1,3.84,09/05/19 18:41,"215 Madison St, San Francisco, CA 94016" -253345,Lightning Charging Cable,1,14.95,09/09/19 22:02,"513 Pine St, Los Angeles, CA 90001" -253346,Bose SoundSport Headphones,1,99.99,09/24/19 23:35,"171 Park St, Los Angeles, CA 90001" -253347,Vareebadd Phone,1,400,09/05/19 14:37,"523 North St, Dallas, TX 75001" -253348,27in FHD Monitor,1,149.99,09/02/19 19:37,"415 Lincoln St, Dallas, TX 75001" -253349,Flatscreen TV,1,300,09/03/19 21:58,"845 Madison St, Boston, MA 02215" -253350,Wired Headphones,1,11.99,09/21/19 15:05,"865 Washington St, New York City, NY 10001" -253351,Macbook Pro Laptop,1,1700,09/23/19 23:53,"72 Maple St, Atlanta, GA 30301" -253352,Lightning Charging Cable,1,14.95,09/14/19 13:34,"904 Washington St, Atlanta, GA 30301" -253353,Vareebadd Phone,1,400,09/08/19 13:45,"92 Ridge St, Portland, OR 97035" -253354,Apple Airpods Headphones,1,150,09/01/19 23:15,"413 9th St, Los Angeles, CA 90001" -253355,AA Batteries (4-pack),2,3.84,09/09/19 13:00,"249 Spruce St, Austin, TX 73301" -253356,USB-C Charging Cable,1,11.95,09/30/19 13:08,"77 Church St, New York City, NY 10001" -253357,Apple Airpods Headphones,1,150,09/10/19 10:10,"358 Willow St, Seattle, WA 98101" -253358,Apple Airpods Headphones,1,150,09/04/19 21:15,"833 Hickory St, Atlanta, GA 30301" -253359,Lightning Charging Cable,1,14.95,09/03/19 01:12,"586 South St, Los Angeles, CA 90001" -253360,Lightning Charging Cable,1,14.95,09/03/19 17:56,"486 2nd St, San Francisco, CA 94016" -253361,ThinkPad Laptop,1,999.99,09/11/19 12:35,"321 Cedar St, Boston, MA 02215" -253362,USB-C Charging Cable,1,11.95,09/01/19 19:34,"310 9th St, Boston, MA 02215" -253363,Bose SoundSport Headphones,1,99.99,09/14/19 09:52,"732 Jackson St, Los Angeles, CA 90001" -253364,20in Monitor,1,109.99,09/24/19 23:50,"962 Cedar St, San Francisco, CA 94016" -253365,iPhone,1,700,09/30/19 21:40,"152 Highland St, Los Angeles, CA 90001" -253366,Google Phone,1,600,09/19/19 09:39,"191 Cedar St, Atlanta, GA 30301" -253366,Wired Headphones,1,11.99,09/19/19 09:39,"191 Cedar St, Atlanta, GA 30301" -253367,Vareebadd Phone,1,400,09/17/19 23:25,"284 Willow St, San Francisco, CA 94016" -253368,USB-C Charging Cable,1,11.95,09/20/19 00:14,"555 4th St, Atlanta, GA 30301" -253369,AAA Batteries (4-pack),1,2.99,09/07/19 10:58,"52 4th St, Portland, OR 97035" -253370,USB-C Charging Cable,1,11.95,09/20/19 11:47,"173 Cedar St, Boston, MA 02215" -253371,Lightning Charging Cable,2,14.95,09/05/19 05:54,"98 Lakeview St, New York City, NY 10001" -253372,Lightning Charging Cable,1,14.95,09/20/19 10:06,"230 Meadow St, Boston, MA 02215" -253373,USB-C Charging Cable,1,11.95,09/15/19 20:03,"541 Main St, San Francisco, CA 94016" -253374,Lightning Charging Cable,1,14.95,09/23/19 19:07,"105 Wilson St, San Francisco, CA 94016" -253375,Lightning Charging Cable,1,14.95,09/14/19 13:23,"365 West St, San Francisco, CA 94016" -253376,AA Batteries (4-pack),1,3.84,09/16/19 18:41,"930 Madison St, Los Angeles, CA 90001" -253377,AAA Batteries (4-pack),1,2.99,09/07/19 18:00,"261 Washington St, Seattle, WA 98101" -253378,Wired Headphones,1,11.99,09/15/19 13:12,"13 Hickory St, Boston, MA 02215" -253379,Wired Headphones,1,11.99,09/30/19 11:39,"494 Cedar St, Portland, OR 97035" -253380,USB-C Charging Cable,1,11.95,09/17/19 18:31,"643 Center St, Austin, TX 73301" -253381,Wired Headphones,1,11.99,09/22/19 11:29,"631 Spruce St, San Francisco, CA 94016" -253382,Flatscreen TV,1,300,09/20/19 19:39,"403 5th St, Los Angeles, CA 90001" -253383,27in 4K Gaming Monitor,1,389.99,09/27/19 13:08,"129 River St, New York City, NY 10001" -253384,AAA Batteries (4-pack),1,2.99,09/28/19 08:21,"64 Church St, New York City, NY 10001" -253385,AA Batteries (4-pack),1,3.84,09/14/19 18:45,"474 1st St, Boston, MA 02215" -253386,AAA Batteries (4-pack),1,2.99,09/10/19 21:04,"698 Dogwood St, San Francisco, CA 94016" -253387,AAA Batteries (4-pack),1,2.99,09/03/19 10:47,"595 Sunset St, Boston, MA 02215" -253388,AAA Batteries (4-pack),1,2.99,09/14/19 18:12,"131 Jackson St, Portland, ME 04101" -253389,Lightning Charging Cable,1,14.95,09/11/19 18:20,"334 North St, San Francisco, CA 94016" -253390,Apple Airpods Headphones,1,150,09/19/19 19:07,"425 West St, New York City, NY 10001" -253391,ThinkPad Laptop,1,999.99,09/06/19 17:41,"58 Lake St, Austin, TX 73301" -253392,ThinkPad Laptop,1,999.99,09/09/19 09:43,"433 Center St, Dallas, TX 75001" -253393,Macbook Pro Laptop,1,1700,09/09/19 17:15,"391 Meadow St, Los Angeles, CA 90001" -253394,Wired Headphones,1,11.99,09/24/19 10:26,"123 Lake St, New York City, NY 10001" -253395,AA Batteries (4-pack),1,3.84,09/01/19 21:47,"78 4th St, San Francisco, CA 94016" -253396,Bose SoundSport Headphones,1,99.99,09/28/19 18:37,"935 North St, Atlanta, GA 30301" -253397,Bose SoundSport Headphones,1,99.99,09/30/19 20:39,"642 Spruce St, Los Angeles, CA 90001" -253398,iPhone,1,700,09/20/19 10:05,"808 Maple St, Boston, MA 02215" -253399,Lightning Charging Cable,1,14.95,09/09/19 10:41,"535 Park St, Seattle, WA 98101" -253400,Vareebadd Phone,1,400,09/05/19 20:22,"466 Lake St, Boston, MA 02215" -253401,USB-C Charging Cable,1,11.95,09/29/19 08:27,"389 Spruce St, Seattle, WA 98101" -253402,27in 4K Gaming Monitor,1,389.99,09/14/19 10:20,"541 Willow St, Los Angeles, CA 90001" -253403,Wired Headphones,1,11.99,09/12/19 21:33,"113 10th St, Boston, MA 02215" -253404,Wired Headphones,1,11.99,09/10/19 22:14,"59 South St, Portland, OR 97035" -253405,Wired Headphones,1,11.99,09/07/19 13:29,"292 Center St, San Francisco, CA 94016" -253406,Bose SoundSport Headphones,1,99.99,09/27/19 19:33,"633 Cherry St, Boston, MA 02215" -253407,Lightning Charging Cable,1,14.95,09/25/19 17:50,"895 Sunset St, San Francisco, CA 94016" -253408,USB-C Charging Cable,1,11.95,09/22/19 10:37,"856 Center St, Atlanta, GA 30301" -253409,Lightning Charging Cable,1,14.95,09/24/19 15:04,"622 Walnut St, San Francisco, CA 94016" -253410,iPhone,1,700,09/21/19 19:16,"713 Hill St, San Francisco, CA 94016" -253411,Lightning Charging Cable,1,14.95,09/02/19 21:48,"515 6th St, Los Angeles, CA 90001" -253412,Apple Airpods Headphones,1,150,09/10/19 15:53,"814 13th St, San Francisco, CA 94016" -253413,Macbook Pro Laptop,1,1700,09/09/19 14:47,"814 Willow St, San Francisco, CA 94016" -253414,iPhone,1,700,09/28/19 19:30,"101 Johnson St, Dallas, TX 75001" -253414,Wired Headphones,1,11.99,09/28/19 19:30,"101 Johnson St, Dallas, TX 75001" -253415,iPhone,1,700,09/19/19 16:05,"833 Chestnut St, Los Angeles, CA 90001" -253415,Lightning Charging Cable,1,14.95,09/19/19 16:05,"833 Chestnut St, Los Angeles, CA 90001" -253416,Wired Headphones,1,11.99,09/09/19 18:01,"502 10th St, New York City, NY 10001" -253417,34in Ultrawide Monitor,1,379.99,09/03/19 07:01,"779 7th St, Seattle, WA 98101" -253418,Lightning Charging Cable,1,14.95,09/05/19 16:48,"256 Pine St, New York City, NY 10001" -253419,Google Phone,1,600,09/25/19 05:32,"886 River St, San Francisco, CA 94016" -253420,Bose SoundSport Headphones,2,99.99,09/05/19 23:13,"569 Center St, Austin, TX 73301" -253421,AA Batteries (4-pack),1,3.84,09/24/19 15:52,"508 Forest St, Austin, TX 73301" -253422,USB-C Charging Cable,1,11.95,09/27/19 10:38,"519 Hill St, San Francisco, CA 94016" -253423,Bose SoundSport Headphones,1,99.99,09/06/19 19:27,"712 Jackson St, Atlanta, GA 30301" -253424,AAA Batteries (4-pack),1,2.99,09/15/19 00:47,"13 Willow St, Los Angeles, CA 90001" -253425,Google Phone,1,600,09/10/19 11:25,"815 Maple St, Dallas, TX 75001" -253425,Wired Headphones,2,11.99,09/10/19 11:25,"815 Maple St, Dallas, TX 75001" -253426,USB-C Charging Cable,2,11.95,09/08/19 17:22,"193 Sunset St, Seattle, WA 98101" -253427,ThinkPad Laptop,1,999.99,09/27/19 11:08,"444 Pine St, Boston, MA 02215" -253428,Bose SoundSport Headphones,1,99.99,09/12/19 21:01,"695 Dogwood St, Atlanta, GA 30301" -253429,Wired Headphones,2,11.99,09/17/19 15:32,"97 Meadow St, Dallas, TX 75001" -253430,USB-C Charging Cable,1,11.95,09/23/19 13:37,"961 Lincoln St, New York City, NY 10001" -253431,AAA Batteries (4-pack),1,2.99,09/29/19 15:06,"146 Center St, New York City, NY 10001" -253432,Apple Airpods Headphones,1,150,09/30/19 09:04,"248 13th St, Boston, MA 02215" -253433,Lightning Charging Cable,1,14.95,09/02/19 23:49,"100 Cherry St, Los Angeles, CA 90001" -253434,34in Ultrawide Monitor,1,379.99,09/30/19 15:13,"597 Center St, Dallas, TX 75001" -253435,ThinkPad Laptop,1,999.99,09/09/19 07:58,"712 1st St, Los Angeles, CA 90001" -253436,Lightning Charging Cable,1,14.95,09/21/19 11:11,"348 Dogwood St, Atlanta, GA 30301" -253437,AA Batteries (4-pack),4,3.84,09/25/19 17:43,"572 Ridge St, Dallas, TX 75001" -253438,34in Ultrawide Monitor,1,379.99,09/20/19 21:07,"659 Wilson St, Seattle, WA 98101" -253439,27in 4K Gaming Monitor,1,389.99,09/27/19 12:43,"324 River St, Los Angeles, CA 90001" -253440,USB-C Charging Cable,1,11.95,09/14/19 21:19,"224 Main St, San Francisco, CA 94016" -253441,27in 4K Gaming Monitor,1,389.99,09/30/19 19:13,"696 Cherry St, Atlanta, GA 30301" -253441,Wired Headphones,1,11.99,09/30/19 19:13,"696 Cherry St, Atlanta, GA 30301" -253442,Google Phone,1,600,09/05/19 08:17,"472 North St, New York City, NY 10001" -253443,AAA Batteries (4-pack),2,2.99,09/15/19 11:06,"983 South St, Dallas, TX 75001" -253444,USB-C Charging Cable,1,11.95,09/17/19 14:42,"218 6th St, New York City, NY 10001" -253445,27in 4K Gaming Monitor,1,389.99,09/21/19 19:08,"608 West St, Portland, OR 97035" -253446,Wired Headphones,1,11.99,09/28/19 03:45,"511 Walnut St, Los Angeles, CA 90001" -253447,AAA Batteries (4-pack),1,2.99,09/17/19 16:45,"522 Forest St, Seattle, WA 98101" -253448,Wired Headphones,1,11.99,09/18/19 14:01,"923 Walnut St, Portland, OR 97035" -253449,Lightning Charging Cable,1,14.95,09/03/19 23:28,"714 Willow St, San Francisco, CA 94016" -253450,USB-C Charging Cable,2,11.95,09/13/19 21:04,"501 Chestnut St, New York City, NY 10001" -253451,AA Batteries (4-pack),3,3.84,09/10/19 14:16,"914 Madison St, Los Angeles, CA 90001" -253452,Apple Airpods Headphones,1,150,09/09/19 16:56,"37 Park St, New York City, NY 10001" -253453,Bose SoundSport Headphones,1,99.99,09/01/19 10:48,"562 Church St, Boston, MA 02215" -253454,Bose SoundSport Headphones,1,99.99,09/24/19 21:14,"346 12th St, San Francisco, CA 94016" -253455,Macbook Pro Laptop,1,1700,09/03/19 09:35,"807 Park St, Boston, MA 02215" -253456,AA Batteries (4-pack),1,3.84,09/03/19 18:59,"959 Hill St, San Francisco, CA 94016" -253457,27in 4K Gaming Monitor,1,389.99,09/21/19 15:47,"344 Church St, New York City, NY 10001" -253458,34in Ultrawide Monitor,1,379.99,09/28/19 20:35,"279 North St, San Francisco, CA 94016" -253459,Wired Headphones,1,11.99,09/20/19 19:36,"565 Hill St, Los Angeles, CA 90001" -253460,Macbook Pro Laptop,1,1700,09/26/19 06:51,"357 Park St, Atlanta, GA 30301" -253461,Lightning Charging Cable,1,14.95,09/06/19 19:12,"290 10th St, Los Angeles, CA 90001" -253462,Lightning Charging Cable,1,14.95,09/11/19 01:28,"372 6th St, Dallas, TX 75001" -253463,Macbook Pro Laptop,1,1700,09/25/19 22:22,"387 Lakeview St, San Francisco, CA 94016" -253464,iPhone,1,700,09/14/19 11:48,"820 South St, Boston, MA 02215" -253464,Lightning Charging Cable,1,14.95,09/14/19 11:48,"820 South St, Boston, MA 02215" -253465,Lightning Charging Cable,1,14.95,09/06/19 08:52,"771 Meadow St, Los Angeles, CA 90001" -253466,Bose SoundSport Headphones,1,99.99,09/21/19 16:34,"165 14th St, Boston, MA 02215" -253467,34in Ultrawide Monitor,1,379.99,09/24/19 19:03,"507 Chestnut St, Seattle, WA 98101" -253468,AA Batteries (4-pack),1,3.84,09/21/19 20:15,"877 Highland St, San Francisco, CA 94016" -253468,Lightning Charging Cable,1,14.95,09/21/19 20:15,"877 Highland St, San Francisco, CA 94016" -253469,27in 4K Gaming Monitor,1,389.99,09/28/19 06:47,"346 Adams St, San Francisco, CA 94016" -253470,AA Batteries (4-pack),2,3.84,09/11/19 05:02,"575 North St, Austin, TX 73301" -253471,Lightning Charging Cable,1,14.95,09/10/19 06:03,"844 5th St, Los Angeles, CA 90001" -253472,AA Batteries (4-pack),1,3.84,09/24/19 01:15,"21 Walnut St, Boston, MA 02215" -253473,AA Batteries (4-pack),1,3.84,09/18/19 01:31,"929 Wilson St, New York City, NY 10001" -253474,20in Monitor,1,109.99,09/22/19 10:59,"510 Center St, Los Angeles, CA 90001" -253475,AAA Batteries (4-pack),1,2.99,09/26/19 13:36,"37 Washington St, New York City, NY 10001" -253476,Bose SoundSport Headphones,1,99.99,09/22/19 23:00,"718 Hickory St, Austin, TX 73301" -253477,iPhone,1,700,09/14/19 21:00,"950 4th St, Dallas, TX 75001" -253477,Lightning Charging Cable,1,14.95,09/14/19 21:00,"950 4th St, Dallas, TX 75001" -253478,USB-C Charging Cable,1,11.95,09/18/19 09:20,"617 13th St, Seattle, WA 98101" -253479,Wired Headphones,1,11.99,09/19/19 03:43,"419 13th St, San Francisco, CA 94016" -253480,Lightning Charging Cable,2,14.95,09/23/19 10:34,"877 River St, San Francisco, CA 94016" -253481,27in FHD Monitor,1,149.99,09/06/19 15:01,"640 Ridge St, San Francisco, CA 94016" -253482,Apple Airpods Headphones,1,150,09/24/19 07:54,"888 Lincoln St, San Francisco, CA 94016" -253483,AA Batteries (4-pack),1,3.84,09/18/19 11:09,"229 Maple St, New York City, NY 10001" -253484,USB-C Charging Cable,1,11.95,09/20/19 01:52,"791 Madison St, San Francisco, CA 94016" -253485,Lightning Charging Cable,1,14.95,09/19/19 19:26,"586 Madison St, Seattle, WA 98101" -253486,USB-C Charging Cable,1,11.95,09/01/19 17:52,"282 River St, Seattle, WA 98101" -253487,20in Monitor,1,109.99,09/20/19 22:03,"85 12th St, New York City, NY 10001" -253488,USB-C Charging Cable,1,11.95,09/24/19 01:12,"252 Highland St, Dallas, TX 75001" -253489,Wired Headphones,1,11.99,09/21/19 19:43,"113 Ridge St, New York City, NY 10001" -253490,Apple Airpods Headphones,2,150,09/11/19 05:08,"305 4th St, Los Angeles, CA 90001" -253491,27in 4K Gaming Monitor,1,389.99,09/20/19 21:03,"334 Maple St, New York City, NY 10001" -253492,USB-C Charging Cable,1,11.95,09/28/19 23:42,"77 Elm St, Atlanta, GA 30301" -253493,AA Batteries (4-pack),1,3.84,09/07/19 18:49,"329 Maple St, San Francisco, CA 94016" -253494,AA Batteries (4-pack),1,3.84,09/09/19 22:54,"123 South St, Boston, MA 02215" -253495,Macbook Pro Laptop,1,1700,09/27/19 16:25,"440 8th St, Atlanta, GA 30301" -253496,Apple Airpods Headphones,1,150,09/07/19 13:14,"27 Church St, San Francisco, CA 94016" -253497,Flatscreen TV,1,300,09/18/19 21:02,"855 4th St, New York City, NY 10001" -253498,Wired Headphones,1,11.99,09/14/19 20:43,"163 Ridge St, New York City, NY 10001" -253499,USB-C Charging Cable,1,11.95,09/20/19 15:45,"494 Spruce St, San Francisco, CA 94016" -253500,Lightning Charging Cable,1,14.95,09/06/19 16:12,"778 Madison St, San Francisco, CA 94016" -253501,Apple Airpods Headphones,1,150,09/13/19 21:00,"638 Main St, Austin, TX 73301" -253502,USB-C Charging Cable,1,11.95,09/17/19 11:17,"562 Lincoln St, Los Angeles, CA 90001" -253503,Flatscreen TV,1,300,09/27/19 07:04,"437 Ridge St, Dallas, TX 75001" -253504,Flatscreen TV,1,300,09/14/19 16:22,"901 Sunset St, Dallas, TX 75001" -253505,Apple Airpods Headphones,1,150,09/18/19 10:21,"301 Chestnut St, Boston, MA 02215" -253506,Lightning Charging Cable,1,14.95,09/13/19 16:48,"301 Elm St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -253507,AA Batteries (4-pack),4,3.84,09/12/19 18:28,"712 Park St, Los Angeles, CA 90001" -253508,AAA Batteries (4-pack),3,2.99,09/17/19 21:21,"622 5th St, Los Angeles, CA 90001" -253509,Bose SoundSport Headphones,1,99.99,09/10/19 18:41,"146 Main St, Austin, TX 73301" -253510,Google Phone,1,600,09/15/19 19:31,"208 Hill St, New York City, NY 10001" -253511,USB-C Charging Cable,1,11.95,09/10/19 22:48,"892 1st St, Portland, OR 97035" -253512,iPhone,1,700,09/07/19 20:35,"470 Dogwood St, San Francisco, CA 94016" -253513,USB-C Charging Cable,1,11.95,09/23/19 08:37,"643 Cedar St, Los Angeles, CA 90001" -253514,iPhone,1,700,09/03/19 09:04,"882 Main St, San Francisco, CA 94016" -253514,AA Batteries (4-pack),2,3.84,09/03/19 09:04,"882 Main St, San Francisco, CA 94016" -253515,USB-C Charging Cable,1,11.95,09/04/19 14:55,"655 13th St, Atlanta, GA 30301" -253516,USB-C Charging Cable,1,11.95,09/13/19 12:48,"25 Wilson St, Atlanta, GA 30301" -253517,Bose SoundSport Headphones,1,99.99,09/06/19 14:07,"80 Jefferson St, Austin, TX 73301" -253518,AA Batteries (4-pack),1,3.84,09/24/19 18:04,"693 Elm St, Dallas, TX 75001" -253519,Wired Headphones,2,11.99,09/22/19 09:19,"599 6th St, San Francisco, CA 94016" -253520,Apple Airpods Headphones,1,150,09/16/19 15:40,"940 Hickory St, San Francisco, CA 94016" -253521,AA Batteries (4-pack),1,3.84,09/26/19 10:03,"135 2nd St, San Francisco, CA 94016" -253522,Apple Airpods Headphones,1,150,09/19/19 00:20,"339 Lincoln St, Boston, MA 02215" -253523,USB-C Charging Cable,1,11.95,09/01/19 17:51,"690 Hickory St, San Francisco, CA 94016" -253524,USB-C Charging Cable,1,11.95,09/17/19 17:15,"781 Church St, Los Angeles, CA 90001" -253525,AAA Batteries (4-pack),2,2.99,09/15/19 16:37,"81 Main St, Seattle, WA 98101" -253526,34in Ultrawide Monitor,1,379.99,09/12/19 11:46,"248 Cherry St, Los Angeles, CA 90001" -253527,Google Phone,1,600,09/08/19 23:12,"542 Park St, Seattle, WA 98101" -253527,Bose SoundSport Headphones,1,99.99,09/08/19 23:12,"542 Park St, Seattle, WA 98101" -253528,Bose SoundSport Headphones,1,99.99,09/24/19 17:31,"145 Center St, New York City, NY 10001" -253529,Lightning Charging Cable,1,14.95,09/29/19 20:27,"742 Park St, Atlanta, GA 30301" -253530,Bose SoundSport Headphones,1,99.99,09/27/19 15:04,"411 Cherry St, Los Angeles, CA 90001" -253531,27in FHD Monitor,1,149.99,09/10/19 17:51,"773 Elm St, San Francisco, CA 94016" -253532,Wired Headphones,1,11.99,09/08/19 21:27,"390 Lake St, Atlanta, GA 30301" -253533,20in Monitor,1,109.99,09/15/19 22:17,"627 Chestnut St, New York City, NY 10001" -253534,Bose SoundSport Headphones,1,99.99,09/10/19 11:33,"449 Spruce St, San Francisco, CA 94016" -253535,Google Phone,1,600,09/21/19 18:51,"696 Lakeview St, San Francisco, CA 94016" -253536,USB-C Charging Cable,1,11.95,09/08/19 07:32,"655 2nd St, New York City, NY 10001" -253537,AAA Batteries (4-pack),3,2.99,09/14/19 21:50,"334 Cedar St, Atlanta, GA 30301" -253538,34in Ultrawide Monitor,1,379.99,09/25/19 12:40,"566 Johnson St, Los Angeles, CA 90001" -253539,iPhone,1,700,09/06/19 18:22,"22 Chestnut St, New York City, NY 10001" -253540,Wired Headphones,1,11.99,09/20/19 07:16,"748 Washington St, San Francisco, CA 94016" -253541,Apple Airpods Headphones,1,150,09/14/19 05:46,"254 13th St, San Francisco, CA 94016" -253542,Flatscreen TV,1,300,09/27/19 19:08,"907 Lincoln St, San Francisco, CA 94016" -253543,34in Ultrawide Monitor,1,379.99,09/01/19 09:07,"299 Lakeview St, Dallas, TX 75001" -253544,Apple Airpods Headphones,1,150,09/14/19 11:11,"799 Forest St, Los Angeles, CA 90001" -253545,Apple Airpods Headphones,1,150,09/15/19 15:59,"622 Forest St, Boston, MA 02215" -253546,AA Batteries (4-pack),2,3.84,09/02/19 12:28,"683 Church St, San Francisco, CA 94016" -253547,Wired Headphones,1,11.99,09/25/19 08:26,"466 Center St, Los Angeles, CA 90001" -253548,AA Batteries (4-pack),1,3.84,09/12/19 09:41,"52 2nd St, Atlanta, GA 30301" -253549,20in Monitor,1,109.99,09/27/19 20:18,"726 Lakeview St, Los Angeles, CA 90001" -253550,iPhone,1,700,09/19/19 22:09,"244 Main St, New York City, NY 10001" -253550,Lightning Charging Cable,1,14.95,09/19/19 22:09,"244 Main St, New York City, NY 10001" -253551,Lightning Charging Cable,1,14.95,09/09/19 15:09,"250 Center St, San Francisco, CA 94016" -253552,34in Ultrawide Monitor,1,379.99,09/23/19 19:11,"581 2nd St, Atlanta, GA 30301" -253553,20in Monitor,1,109.99,09/09/19 13:43,"316 Hickory St, Los Angeles, CA 90001" -253554,AA Batteries (4-pack),1,3.84,09/05/19 16:43,"646 North St, Dallas, TX 75001" -253555,AAA Batteries (4-pack),1,2.99,09/12/19 09:24,"781 11th St, San Francisco, CA 94016" -253556,AA Batteries (4-pack),3,3.84,09/27/19 14:26,"624 Hickory St, Atlanta, GA 30301" -253557,Google Phone,1,600,09/03/19 20:49,"296 Adams St, Boston, MA 02215" -253557,USB-C Charging Cable,1,11.95,09/03/19 20:49,"296 Adams St, Boston, MA 02215" -253558,AAA Batteries (4-pack),1,2.99,09/16/19 09:23,"490 Elm St, San Francisco, CA 94016" -253559,Lightning Charging Cable,1,14.95,09/21/19 15:35,"219 2nd St, Boston, MA 02215" -253560,Google Phone,1,600,09/29/19 09:01,"19 Chestnut St, San Francisco, CA 94016" -253561,ThinkPad Laptop,1,999.99,09/15/19 21:52,"596 Chestnut St, Boston, MA 02215" -253562,USB-C Charging Cable,1,11.95,09/19/19 22:50,"911 1st St, Boston, MA 02215" -253563,Wired Headphones,2,11.99,09/30/19 13:01,"937 North St, San Francisco, CA 94016" -253564,AAA Batteries (4-pack),1,2.99,09/23/19 16:04,"669 Center St, Seattle, WA 98101" -253565,AAA Batteries (4-pack),1,2.99,09/13/19 18:11,"559 9th St, Los Angeles, CA 90001" -253566,Lightning Charging Cable,1,14.95,09/28/19 16:51,"167 Walnut St, Seattle, WA 98101" -253567,Lightning Charging Cable,1,14.95,09/27/19 23:21,"768 14th St, San Francisco, CA 94016" -253568,ThinkPad Laptop,1,999.99,09/08/19 10:43,"358 Walnut St, New York City, NY 10001" -253569,USB-C Charging Cable,1,11.95,09/17/19 17:52,"916 Cedar St, Atlanta, GA 30301" -253570,AAA Batteries (4-pack),1,2.99,09/10/19 19:23,"371 Walnut St, Dallas, TX 75001" -253571,Apple Airpods Headphones,1,150,09/11/19 00:14,"242 Lake St, Los Angeles, CA 90001" -253572,Lightning Charging Cable,1,14.95,09/01/19 19:39,"646 1st St, Los Angeles, CA 90001" -253573,USB-C Charging Cable,1,11.95,09/10/19 16:10,"442 14th St, Austin, TX 73301" -253574,27in FHD Monitor,1,149.99,09/24/19 14:26,"217 Highland St, Boston, MA 02215" -253575,27in 4K Gaming Monitor,1,389.99,09/03/19 20:37,"525 River St, New York City, NY 10001" -253576,USB-C Charging Cable,1,11.95,09/17/19 19:09,"743 Madison St, Los Angeles, CA 90001" -253577,Apple Airpods Headphones,1,150,09/19/19 14:36,"81 South St, New York City, NY 10001" -253578,Apple Airpods Headphones,1,150,09/22/19 23:58,"652 Sunset St, Los Angeles, CA 90001" -253579,AA Batteries (4-pack),2,3.84,09/13/19 08:57,"504 13th St, New York City, NY 10001" -253580,Bose SoundSport Headphones,1,99.99,09/06/19 10:25,"915 Hickory St, San Francisco, CA 94016" -253581,AA Batteries (4-pack),2,3.84,09/11/19 10:10,"446 4th St, Austin, TX 73301" -253582,AA Batteries (4-pack),1,3.84,09/15/19 18:55,"128 Jackson St, Austin, TX 73301" -253583,Apple Airpods Headphones,1,150,09/08/19 20:11,"424 West St, Los Angeles, CA 90001" -253584,AA Batteries (4-pack),1,3.84,09/20/19 23:30,"51 1st St, San Francisco, CA 94016" -253585,Lightning Charging Cable,1,14.95,09/27/19 10:56,"457 Jackson St, Dallas, TX 75001" -253586,Lightning Charging Cable,1,14.95,09/11/19 23:56,"102 West St, Portland, OR 97035" -253587,Wired Headphones,1,11.99,09/16/19 19:22,"795 4th St, Los Angeles, CA 90001" -253588,AAA Batteries (4-pack),1,2.99,09/18/19 06:37,"130 Meadow St, Boston, MA 02215" -253589,Lightning Charging Cable,1,14.95,09/15/19 07:42,"874 Willow St, Dallas, TX 75001" -253590,AA Batteries (4-pack),2,3.84,09/26/19 16:48,"513 Pine St, Atlanta, GA 30301" -253590,USB-C Charging Cable,1,11.95,09/26/19 16:48,"513 Pine St, Atlanta, GA 30301" -253591,27in 4K Gaming Monitor,1,389.99,09/06/19 22:41,"790 Sunset St, San Francisco, CA 94016" -253592,AAA Batteries (4-pack),4,2.99,09/30/19 17:09,"296 Walnut St, Portland, OR 97035" -253593,Bose SoundSport Headphones,1,99.99,09/09/19 14:55,"669 Maple St, Atlanta, GA 30301" -253594,USB-C Charging Cable,1,11.95,09/19/19 09:46,"330 Wilson St, San Francisco, CA 94016" -253595,Lightning Charging Cable,1,14.95,09/28/19 22:41,"78 Lincoln St, San Francisco, CA 94016" -253596,Apple Airpods Headphones,1,150,09/06/19 13:00,"118 Park St, Seattle, WA 98101" -253597,Vareebadd Phone,1,400,09/23/19 20:06,"115 Maple St, San Francisco, CA 94016" -253598,Lightning Charging Cable,1,14.95,09/03/19 15:39,"194 9th St, Boston, MA 02215" -253599,20in Monitor,1,109.99,09/03/19 15:45,"55 Madison St, Portland, OR 97035" -253600,AA Batteries (4-pack),1,3.84,09/25/19 11:24,"483 9th St, San Francisco, CA 94016" -253601,Bose SoundSport Headphones,1,99.99,09/18/19 18:02,"512 12th St, Los Angeles, CA 90001" -253602,Wired Headphones,1,11.99,09/11/19 17:47,"813 7th St, Dallas, TX 75001" -253603,Vareebadd Phone,1,400,09/12/19 07:22,"396 6th St, San Francisco, CA 94016" -253603,USB-C Charging Cable,2,11.95,09/12/19 07:22,"396 6th St, San Francisco, CA 94016" -253603,Wired Headphones,1,11.99,09/12/19 07:22,"396 6th St, San Francisco, CA 94016" -253604,Lightning Charging Cable,1,14.95,09/30/19 03:43,"590 Main St, Seattle, WA 98101" -253605,AA Batteries (4-pack),1,3.84,09/30/19 18:27,"902 13th St, San Francisco, CA 94016" -253606,USB-C Charging Cable,1,11.95,09/14/19 21:32,"775 12th St, Seattle, WA 98101" -253607,Flatscreen TV,1,300,09/20/19 20:30,"587 Lincoln St, Seattle, WA 98101" -253608,20in Monitor,1,109.99,09/21/19 16:40,"81 North St, Atlanta, GA 30301" -253609,AAA Batteries (4-pack),1,2.99,09/14/19 18:50,"966 Hill St, Dallas, TX 75001" -253610,Lightning Charging Cable,1,14.95,09/19/19 20:59,"956 7th St, San Francisco, CA 94016" -253611,AAA Batteries (4-pack),1,2.99,09/09/19 09:26,"776 14th St, Atlanta, GA 30301" -253612,USB-C Charging Cable,1,11.95,09/14/19 09:14,"628 4th St, Dallas, TX 75001" -253613,Lightning Charging Cable,1,14.95,09/21/19 17:58,"272 Forest St, Atlanta, GA 30301" -253614,20in Monitor,1,109.99,09/27/19 08:16,"513 12th St, Seattle, WA 98101" -253615,Bose SoundSport Headphones,1,99.99,09/13/19 22:03,"108 Lake St, New York City, NY 10001" -253616,27in FHD Monitor,1,149.99,09/18/19 18:31,"349 West St, Boston, MA 02215" -253617,27in 4K Gaming Monitor,1,389.99,09/14/19 16:42,"150 6th St, Seattle, WA 98101" -253618,AA Batteries (4-pack),2,3.84,09/21/19 08:45,"169 Ridge St, Atlanta, GA 30301" -253619,27in 4K Gaming Monitor,1,389.99,09/18/19 16:17,"70 Forest St, San Francisco, CA 94016" -253620,USB-C Charging Cable,1,11.95,09/29/19 18:57,"887 Meadow St, Austin, TX 73301" -253621,Wired Headphones,1,11.99,09/04/19 06:52,"885 14th St, Los Angeles, CA 90001" -253622,Lightning Charging Cable,1,14.95,09/01/19 13:10,"248 Church St, Los Angeles, CA 90001" -253623,27in 4K Gaming Monitor,1,389.99,09/25/19 14:52,"507 Willow St, Seattle, WA 98101" -253624,Wired Headphones,1,11.99,09/16/19 19:57,"556 7th St, San Francisco, CA 94016" -253625,Wired Headphones,1,11.99,09/11/19 01:38,"935 Spruce St, San Francisco, CA 94016" -253626,20in Monitor,1,109.99,09/05/19 21:34,"755 13th St, San Francisco, CA 94016" -253627,USB-C Charging Cable,1,11.95,09/30/19 20:07,"414 Washington St, Dallas, TX 75001" -253628,Apple Airpods Headphones,1,150,09/20/19 09:59,"52 Pine St, San Francisco, CA 94016" -253629,Bose SoundSport Headphones,1,99.99,09/07/19 11:03,"377 8th St, Atlanta, GA 30301" -253630,AA Batteries (4-pack),1,3.84,09/13/19 14:52,"566 Hill St, Boston, MA 02215" -253631,Wired Headphones,1,11.99,09/30/19 03:59,"378 7th St, San Francisco, CA 94016" -253632,27in 4K Gaming Monitor,1,389.99,09/13/19 23:05,"895 Walnut St, San Francisco, CA 94016" -253633,Lightning Charging Cable,1,14.95,09/29/19 18:09,"768 Spruce St, New York City, NY 10001" -253634,Lightning Charging Cable,1,14.95,09/14/19 15:34,"999 Dogwood St, Los Angeles, CA 90001" -253635,USB-C Charging Cable,1,11.95,09/25/19 08:58,"293 6th St, San Francisco, CA 94016" -253636,Wired Headphones,1,11.99,09/19/19 08:14,"203 Sunset St, San Francisco, CA 94016" -253637,Lightning Charging Cable,1,14.95,09/03/19 16:47,"367 Dogwood St, San Francisco, CA 94016" -253638,USB-C Charging Cable,1,11.95,09/11/19 19:58,"711 Forest St, San Francisco, CA 94016" -253639,Apple Airpods Headphones,1,150,09/13/19 19:35,"56 5th St, San Francisco, CA 94016" -253640,Wired Headphones,1,11.99,09/17/19 20:11,"373 Madison St, San Francisco, CA 94016" -253641,iPhone,1,700,09/16/19 23:06,"649 13th St, Boston, MA 02215" -253641,Lightning Charging Cable,1,14.95,09/16/19 23:06,"649 13th St, Boston, MA 02215" -253642,Wired Headphones,1,11.99,09/26/19 20:56,"362 Chestnut St, New York City, NY 10001" -253643,Apple Airpods Headphones,1,150,09/28/19 23:36,"272 11th St, New York City, NY 10001" -253643,Wired Headphones,1,11.99,09/28/19 23:36,"272 11th St, New York City, NY 10001" -253644,Wired Headphones,1,11.99,09/20/19 12:55,"499 Hill St, Austin, TX 73301" -253645,Bose SoundSport Headphones,1,99.99,09/19/19 09:05,"782 Center St, Seattle, WA 98101" -253646,Apple Airpods Headphones,1,150,09/28/19 09:44,"5 Cedar St, San Francisco, CA 94016" -253647,AA Batteries (4-pack),2,3.84,09/01/19 18:23,"646 Chestnut St, Dallas, TX 75001" -253648,Bose SoundSport Headphones,1,99.99,09/22/19 21:55,"130 2nd St, Atlanta, GA 30301" -253649,USB-C Charging Cable,1,11.95,09/22/19 11:58,"338 Washington St, Dallas, TX 75001" -253650,27in FHD Monitor,1,149.99,09/21/19 18:59,"611 Wilson St, San Francisco, CA 94016" -253651,USB-C Charging Cable,1,11.95,09/19/19 14:46,"362 Pine St, San Francisco, CA 94016" -253652,Apple Airpods Headphones,1,150,09/10/19 11:24,"219 Chestnut St, Los Angeles, CA 90001" -253653,AAA Batteries (4-pack),2,2.99,09/21/19 23:33,"781 Lincoln St, Atlanta, GA 30301" -253654,Apple Airpods Headphones,1,150,09/22/19 13:17,"240 West St, Los Angeles, CA 90001" -253655,USB-C Charging Cable,1,11.95,09/06/19 02:15,"107 Washington St, San Francisco, CA 94016" -253656,AAA Batteries (4-pack),1,2.99,09/09/19 19:52,"615 Spruce St, San Francisco, CA 94016" -253657,AAA Batteries (4-pack),3,2.99,09/10/19 19:22,"554 Washington St, New York City, NY 10001" -253657,27in 4K Gaming Monitor,1,389.99,09/10/19 19:22,"554 Washington St, New York City, NY 10001" -253658,USB-C Charging Cable,1,11.95,09/02/19 18:25,"85 Wilson St, Atlanta, GA 30301" -253659,AAA Batteries (4-pack),1,2.99,09/14/19 18:01,"9 Lakeview St, San Francisco, CA 94016" -253660,Wired Headphones,1,11.99,09/06/19 20:24,"301 7th St, Los Angeles, CA 90001" -253661,AAA Batteries (4-pack),3,2.99,09/02/19 03:24,"470 Jackson St, Seattle, WA 98101" -253662,Wired Headphones,2,11.99,09/08/19 22:03,"554 6th St, Dallas, TX 75001" -253662,Apple Airpods Headphones,1,150,09/08/19 22:03,"554 6th St, Dallas, TX 75001" -253663,AA Batteries (4-pack),1,3.84,09/27/19 10:27,"108 Jefferson St, Atlanta, GA 30301" -253664,Macbook Pro Laptop,1,1700,09/28/19 13:10,"305 South St, Boston, MA 02215" -253665,20in Monitor,1,109.99,09/15/19 15:14,"510 Wilson St, San Francisco, CA 94016" -253666,AAA Batteries (4-pack),1,2.99,09/11/19 05:27,"724 North St, San Francisco, CA 94016" -253667,Wired Headphones,1,11.99,09/02/19 19:00,"282 Johnson St, Atlanta, GA 30301" -253668,Lightning Charging Cable,1,14.95,09/07/19 05:37,"940 13th St, Dallas, TX 75001" -253669,27in FHD Monitor,1,149.99,09/10/19 12:30,"67 6th St, Portland, OR 97035" -253670,AA Batteries (4-pack),1,3.84,09/02/19 12:03,"112 Dogwood St, Boston, MA 02215" -253671,34in Ultrawide Monitor,1,379.99,09/01/19 18:55,"274 Elm St, San Francisco, CA 94016" -253672,Lightning Charging Cable,1,14.95,09/18/19 22:02,"688 6th St, San Francisco, CA 94016" -253673,AA Batteries (4-pack),1,3.84,09/11/19 14:40,"818 13th St, Los Angeles, CA 90001" -253674,Bose SoundSport Headphones,1,99.99,09/07/19 14:18,"671 Spruce St, New York City, NY 10001" -253675,Lightning Charging Cable,1,14.95,09/08/19 20:58,"390 Jackson St, Boston, MA 02215" -253676,AAA Batteries (4-pack),1,2.99,09/23/19 12:20,"295 Meadow St, Boston, MA 02215" -253677,USB-C Charging Cable,1,11.95,09/15/19 23:28,"283 5th St, Dallas, TX 75001" -253678,Wired Headphones,1,11.99,09/10/19 19:40,"352 Jackson St, Dallas, TX 75001" -253679,Wired Headphones,1,11.99,09/26/19 12:23,"681 2nd St, Portland, ME 04101" -253680,Lightning Charging Cable,2,14.95,09/04/19 04:32,"920 Ridge St, Seattle, WA 98101" -253681,AAA Batteries (4-pack),1,2.99,09/13/19 12:20,"261 1st St, Dallas, TX 75001" -253682,34in Ultrawide Monitor,1,379.99,09/27/19 10:11,"963 Main St, San Francisco, CA 94016" -253683,Flatscreen TV,1,300,09/14/19 08:40,"241 Highland St, San Francisco, CA 94016" -253684,AAA Batteries (4-pack),3,2.99,09/10/19 08:48,"544 Center St, San Francisco, CA 94016" -253685,Lightning Charging Cable,1,14.95,09/17/19 06:35,"285 7th St, Seattle, WA 98101" -253686,USB-C Charging Cable,2,11.95,09/12/19 19:46,"441 9th St, Los Angeles, CA 90001" -253687,34in Ultrawide Monitor,1,379.99,09/30/19 10:08,"229 Main St, Boston, MA 02215" -253688,Lightning Charging Cable,1,14.95,09/29/19 01:02,"604 Spruce St, San Francisco, CA 94016" -253689,ThinkPad Laptop,1,999.99,09/17/19 20:13,"641 Hickory St, San Francisco, CA 94016" -253690,Wired Headphones,2,11.99,09/24/19 18:02,"474 6th St, Seattle, WA 98101" -253691,AAA Batteries (4-pack),1,2.99,09/03/19 09:05,"531 Main St, Portland, OR 97035" -253692,AAA Batteries (4-pack),1,2.99,09/02/19 18:12,"146 Forest St, Atlanta, GA 30301" -253693,34in Ultrawide Monitor,1,379.99,09/21/19 17:50,"293 South St, Los Angeles, CA 90001" -253694,Bose SoundSport Headphones,1,99.99,09/19/19 19:49,"254 Lincoln St, Austin, TX 73301" -253695,Lightning Charging Cable,1,14.95,09/22/19 20:49,"97 Chestnut St, Seattle, WA 98101" -253696,Wired Headphones,2,11.99,09/13/19 17:21,"326 Jefferson St, Austin, TX 73301" -253697,Macbook Pro Laptop,1,1700,09/05/19 02:05,"563 1st St, Boston, MA 02215" -253698,AA Batteries (4-pack),1,3.84,09/29/19 15:58,"127 Adams St, Los Angeles, CA 90001" -253699,AA Batteries (4-pack),1,3.84,09/09/19 19:19,"293 Church St, New York City, NY 10001" -253700,Lightning Charging Cable,1,14.95,09/03/19 03:13,"391 Maple St, New York City, NY 10001" -253701,Wired Headphones,1,11.99,09/24/19 15:50,"204 8th St, Los Angeles, CA 90001" -253702,Lightning Charging Cable,1,14.95,09/30/19 17:42,"712 Wilson St, Los Angeles, CA 90001" -253703,Lightning Charging Cable,1,14.95,09/08/19 21:11,"192 Cherry St, San Francisco, CA 94016" -253704,Lightning Charging Cable,1,14.95,09/18/19 12:14,"347 Park St, New York City, NY 10001" -253705,27in FHD Monitor,1,149.99,09/07/19 08:28,"178 Church St, San Francisco, CA 94016" -253706,AA Batteries (4-pack),1,3.84,09/26/19 20:30,"651 Highland St, Dallas, TX 75001" -253707,AAA Batteries (4-pack),1,2.99,09/26/19 14:59,"515 Highland St, Dallas, TX 75001" -253708,Vareebadd Phone,1,400,09/30/19 10:27,"665 North St, Los Angeles, CA 90001" -253708,USB-C Charging Cable,1,11.95,09/30/19 10:27,"665 North St, Los Angeles, CA 90001" -253709,20in Monitor,1,109.99,09/27/19 16:30,"968 5th St, San Francisco, CA 94016" -253710,AA Batteries (4-pack),2,3.84,09/18/19 13:28,"936 14th St, New York City, NY 10001" -253711,Lightning Charging Cable,1,14.95,09/04/19 13:02,"233 Washington St, Boston, MA 02215" -253712,Apple Airpods Headphones,1,150,09/22/19 17:07,"239 West St, San Francisco, CA 94016" -253713,Wired Headphones,1,11.99,09/21/19 14:35,"48 North St, San Francisco, CA 94016" -253714,34in Ultrawide Monitor,1,379.99,09/18/19 12:23,"929 Jackson St, Portland, OR 97035" -253715,Wired Headphones,2,11.99,09/09/19 14:39,"283 12th St, Seattle, WA 98101" -253716,Lightning Charging Cable,1,14.95,09/23/19 17:06,"156 Jackson St, New York City, NY 10001" -253717,AAA Batteries (4-pack),1,2.99,09/18/19 11:47,"224 Cherry St, Los Angeles, CA 90001" -253718,Macbook Pro Laptop,1,1700,09/01/19 19:10,"375 12th St, New York City, NY 10001" -253719,Google Phone,1,600,09/21/19 09:10,"101 Walnut St, Austin, TX 73301" -253719,USB-C Charging Cable,1,11.95,09/21/19 09:10,"101 Walnut St, Austin, TX 73301" -253720,AAA Batteries (4-pack),3,2.99,09/24/19 13:04,"630 14th St, Atlanta, GA 30301" -253721,Google Phone,1,600,09/03/19 12:06,"476 Chestnut St, San Francisco, CA 94016" -253721,USB-C Charging Cable,1,11.95,09/03/19 12:06,"476 Chestnut St, San Francisco, CA 94016" -253722,Wired Headphones,1,11.99,09/05/19 17:00,"499 Washington St, Seattle, WA 98101" -253723,Bose SoundSport Headphones,1,99.99,09/14/19 22:41,"19 Ridge St, Los Angeles, CA 90001" -253724,Apple Airpods Headphones,1,150,09/19/19 17:44,"12 Center St, Los Angeles, CA 90001" -253725,AA Batteries (4-pack),1,3.84,09/23/19 10:07,"882 Chestnut St, San Francisco, CA 94016" -253726,USB-C Charging Cable,1,11.95,09/24/19 18:17,"262 11th St, Los Angeles, CA 90001" -253727,Apple Airpods Headphones,1,150,09/11/19 11:07,"937 Dogwood St, San Francisco, CA 94016" -253728,AAA Batteries (4-pack),1,2.99,09/27/19 06:33,"475 Highland St, San Francisco, CA 94016" -253729,AA Batteries (4-pack),1,3.84,09/17/19 08:27,"719 1st St, San Francisco, CA 94016" -253730,Wired Headphones,1,11.99,09/18/19 19:04,"634 Cherry St, Los Angeles, CA 90001" -253731,iPhone,1,700,09/11/19 18:44,"94 Cedar St, San Francisco, CA 94016" -253732,Lightning Charging Cable,1,14.95,09/19/19 17:38,"971 12th St, Boston, MA 02215" -253733,Flatscreen TV,1,300,09/07/19 23:39,"293 5th St, Atlanta, GA 30301" -253734,Apple Airpods Headphones,1,150,09/24/19 21:12,"425 Chestnut St, San Francisco, CA 94016" -253735,AA Batteries (4-pack),1,3.84,09/28/19 13:48,"55 Forest St, Dallas, TX 75001" -253736,AA Batteries (4-pack),2,3.84,09/18/19 10:06,"466 Pine St, Boston, MA 02215" -253737,Macbook Pro Laptop,1,1700,09/11/19 14:12,"42 11th St, Los Angeles, CA 90001" -253738,Wired Headphones,1,11.99,09/23/19 22:38,"660 Elm St, Seattle, WA 98101" -253739,AA Batteries (4-pack),2,3.84,09/16/19 11:55,"144 Sunset St, San Francisco, CA 94016" -253740,27in 4K Gaming Monitor,1,389.99,09/04/19 06:08,"273 Hill St, Los Angeles, CA 90001" -253741,27in 4K Gaming Monitor,1,389.99,09/17/19 10:54,"859 13th St, Portland, OR 97035" -253742,Bose SoundSport Headphones,1,99.99,09/30/19 19:14,"868 Johnson St, San Francisco, CA 94016" -253743,Lightning Charging Cable,1,14.95,09/16/19 22:23,"552 11th St, San Francisco, CA 94016" -253744,Macbook Pro Laptop,1,1700,09/25/19 17:46,"978 Maple St, Atlanta, GA 30301" -253745,USB-C Charging Cable,1,11.95,09/22/19 12:23,"878 12th St, Los Angeles, CA 90001" -253746,Apple Airpods Headphones,2,150,09/15/19 18:20,"858 Sunset St, Seattle, WA 98101" -253747,Wired Headphones,1,11.99,09/13/19 21:59,"949 Maple St, New York City, NY 10001" -253748,USB-C Charging Cable,1,11.95,09/30/19 10:56,"52 Cedar St, Portland, OR 97035" -253749,Wired Headphones,2,11.99,09/08/19 10:15,"509 Hill St, San Francisco, CA 94016" -253750,Lightning Charging Cable,1,14.95,09/16/19 21:16,"698 Chestnut St, Seattle, WA 98101" -253751,Wired Headphones,1,11.99,09/13/19 11:43,"608 Lakeview St, San Francisco, CA 94016" -253752,USB-C Charging Cable,1,11.95,09/26/19 23:38,"921 Sunset St, Seattle, WA 98101" -253753,27in 4K Gaming Monitor,1,389.99,09/10/19 07:25,"211 Highland St, New York City, NY 10001" -253754,AA Batteries (4-pack),1,3.84,09/18/19 19:20,"402 Wilson St, San Francisco, CA 94016" -253755,Lightning Charging Cable,1,14.95,09/10/19 14:51,"363 Johnson St, San Francisco, CA 94016" -253756,AA Batteries (4-pack),1,3.84,09/09/19 22:58,"489 6th St, Los Angeles, CA 90001" -253757,Lightning Charging Cable,1,14.95,09/03/19 19:05,"992 Cedar St, Seattle, WA 98101" -253758,ThinkPad Laptop,1,999.99,09/05/19 01:56,"996 Lincoln St, Los Angeles, CA 90001" -253759,AA Batteries (4-pack),2,3.84,09/02/19 15:26,"887 Adams St, Los Angeles, CA 90001" -253759,Lightning Charging Cable,1,14.95,09/02/19 15:26,"887 Adams St, Los Angeles, CA 90001" -253760,USB-C Charging Cable,2,11.95,09/29/19 20:23,"799 Chestnut St, Portland, ME 04101" -253761,AAA Batteries (4-pack),2,2.99,09/10/19 16:02,"602 9th St, Boston, MA 02215" -253762,USB-C Charging Cable,1,11.95,09/16/19 18:28,"98 Hickory St, New York City, NY 10001" -253763,iPhone,1,700,09/21/19 18:37,"852 Lake St, San Francisco, CA 94016" -253764,Apple Airpods Headphones,1,150,09/14/19 16:59,"802 Lakeview St, New York City, NY 10001" -253765,Apple Airpods Headphones,1,150,09/25/19 11:18,"712 Willow St, Los Angeles, CA 90001" -253766,Apple Airpods Headphones,1,150,09/03/19 16:21,"407 12th St, Portland, OR 97035" -253767,20in Monitor,1,109.99,09/17/19 22:33,"861 Main St, Atlanta, GA 30301" -253768,ThinkPad Laptop,1,999.99,09/21/19 19:57,"68 Wilson St, Dallas, TX 75001" -253769,Wired Headphones,1,11.99,09/13/19 10:17,"330 Hickory St, Portland, OR 97035" -253770,Wired Headphones,1,11.99,09/06/19 14:08,"546 Sunset St, Seattle, WA 98101" -253771,27in 4K Gaming Monitor,1,389.99,09/16/19 17:26,"534 9th St, Dallas, TX 75001" -253772,Flatscreen TV,1,300,09/11/19 06:18,"772 Center St, San Francisco, CA 94016" -253773,Lightning Charging Cable,1,14.95,09/22/19 14:59,"698 Lincoln St, Seattle, WA 98101" -253774,Google Phone,1,600,09/01/19 22:48,"975 Spruce St, San Francisco, CA 94016" -253775,Apple Airpods Headphones,1,150,09/12/19 02:24,"911 Park St, Los Angeles, CA 90001" -253776,20in Monitor,1,109.99,09/13/19 22:11,"370 Main St, Los Angeles, CA 90001" -253777,ThinkPad Laptop,1,999.99,09/07/19 16:51,"158 Dogwood St, Seattle, WA 98101" -253778,Lightning Charging Cable,1,14.95,09/06/19 06:08,"759 West St, New York City, NY 10001" -253779,USB-C Charging Cable,1,11.95,09/22/19 18:55,"337 Hickory St, Portland, OR 97035" -253780,Wired Headphones,1,11.99,09/23/19 02:31,"534 1st St, Boston, MA 02215" -253781,USB-C Charging Cable,1,11.95,09/09/19 12:08,"369 10th St, Dallas, TX 75001" -253782,Apple Airpods Headphones,1,150,09/27/19 20:22,"311 Jackson St, San Francisco, CA 94016" -253783,Bose SoundSport Headphones,1,99.99,09/26/19 14:35,"428 Sunset St, Atlanta, GA 30301" -253784,AA Batteries (4-pack),3,3.84,09/06/19 19:42,"398 Walnut St, New York City, NY 10001" -253785,Lightning Charging Cable,1,14.95,09/16/19 15:41,"373 1st St, Seattle, WA 98101" -253786,USB-C Charging Cable,1,11.95,09/19/19 18:18,"8 Wilson St, Los Angeles, CA 90001" -253787,AA Batteries (4-pack),2,3.84,09/28/19 09:02,"222 Jefferson St, New York City, NY 10001" -253788,Macbook Pro Laptop,1,1700,09/21/19 10:46,"921 Church St, New York City, NY 10001" -253789,Lightning Charging Cable,1,14.95,09/21/19 14:17,"291 Park St, Portland, OR 97035" -253790,Macbook Pro Laptop,1,1700,09/16/19 20:50,"957 Park St, Seattle, WA 98101" -253791,USB-C Charging Cable,1,11.95,09/07/19 19:59,"480 6th St, Seattle, WA 98101" -253792,AA Batteries (4-pack),1,3.84,09/06/19 20:11,"396 7th St, Seattle, WA 98101" -253793,Lightning Charging Cable,1,14.95,09/20/19 20:47,"530 1st St, San Francisco, CA 94016" -253794,USB-C Charging Cable,1,11.95,09/30/19 13:24,"588 Meadow St, Dallas, TX 75001" -253795,AAA Batteries (4-pack),3,2.99,09/19/19 20:53,"62 Chestnut St, New York City, NY 10001" -253796,iPhone,1,700,09/02/19 13:11,"114 6th St, San Francisco, CA 94016" -253797,AA Batteries (4-pack),1,3.84,09/29/19 18:40,"165 Lincoln St, New York City, NY 10001" -253798,Wired Headphones,1,11.99,09/07/19 00:25,"820 11th St, Atlanta, GA 30301" -253799,Wired Headphones,1,11.99,09/27/19 16:18,"924 Meadow St, Los Angeles, CA 90001" -253800,27in 4K Gaming Monitor,1,389.99,09/28/19 14:38,"388 Spruce St, San Francisco, CA 94016" -253801,20in Monitor,1,109.99,09/28/19 09:53,"446 Lake St, Seattle, WA 98101" -253802,Wired Headphones,1,11.99,09/28/19 10:24,"232 South St, San Francisco, CA 94016" -253803,20in Monitor,1,109.99,09/01/19 12:26,"39 Spruce St, New York City, NY 10001" -253804,Apple Airpods Headphones,1,150,09/08/19 22:35,"632 Jefferson St, San Francisco, CA 94016" -253805,USB-C Charging Cable,1,11.95,09/01/19 18:10,"368 Spruce St, Los Angeles, CA 90001" -253806,AAA Batteries (4-pack),2,2.99,09/19/19 19:23,"787 9th St, San Francisco, CA 94016" -253807,AA Batteries (4-pack),1,3.84,09/05/19 07:43,"608 Church St, Austin, TX 73301" -253808,Apple Airpods Headphones,1,150,09/15/19 18:57,"706 River St, San Francisco, CA 94016" -253809,Apple Airpods Headphones,1,150,09/01/19 20:30,"280 Willow St, Seattle, WA 98101" -253810,AAA Batteries (4-pack),1,2.99,09/08/19 09:41,"85 10th St, Dallas, TX 75001" -253811,AAA Batteries (4-pack),2,2.99,09/02/19 20:12,"577 West St, New York City, NY 10001" -253812,AAA Batteries (4-pack),2,2.99,09/07/19 13:49,"929 South St, Atlanta, GA 30301" -253813,Wired Headphones,1,11.99,09/12/19 09:39,"374 Washington St, San Francisco, CA 94016" -253814,USB-C Charging Cable,1,11.95,09/30/19 13:55,"448 Jackson St, San Francisco, CA 94016" -253815,AAA Batteries (4-pack),1,2.99,09/24/19 21:55,"333 North St, Atlanta, GA 30301" -253816,USB-C Charging Cable,1,11.95,09/20/19 09:48,"731 Maple St, Boston, MA 02215" -253817,Lightning Charging Cable,1,14.95,09/15/19 08:10,"66 6th St, New York City, NY 10001" -253818,27in FHD Monitor,1,149.99,09/12/19 17:41,"188 Hill St, San Francisco, CA 94016" -253819,AA Batteries (4-pack),1,3.84,09/10/19 16:43,"920 Forest St, Los Angeles, CA 90001" -253820,Flatscreen TV,1,300,09/11/19 15:28,"947 North St, San Francisco, CA 94016" -253821,Vareebadd Phone,1,400,09/10/19 07:26,"441 Ridge St, Seattle, WA 98101" -253822,Google Phone,1,600,09/29/19 14:10,"95 Highland St, Boston, MA 02215" -253823,AA Batteries (4-pack),1,3.84,09/03/19 18:19,"928 North St, New York City, NY 10001" -253824,AA Batteries (4-pack),1,3.84,09/18/19 12:33,"763 9th St, New York City, NY 10001" -253825,USB-C Charging Cable,1,11.95,09/14/19 19:21,"119 10th St, Seattle, WA 98101" -253826,ThinkPad Laptop,1,999.99,09/07/19 19:04,"75 14th St, San Francisco, CA 94016" -253827,Macbook Pro Laptop,1,1700,09/22/19 14:20,"7 4th St, Boston, MA 02215" -253828,Wired Headphones,1,11.99,09/03/19 11:42,"974 Highland St, Los Angeles, CA 90001" -253829,iPhone,1,700,09/25/19 14:20,"765 Jackson St, Austin, TX 73301" -253830,USB-C Charging Cable,1,11.95,09/14/19 15:17,"904 Jackson St, Dallas, TX 75001" -253831,Wired Headphones,1,11.99,09/08/19 19:57,"646 Pine St, Seattle, WA 98101" -253831,27in 4K Gaming Monitor,1,389.99,09/08/19 19:57,"646 Pine St, Seattle, WA 98101" -253832,20in Monitor,1,109.99,09/21/19 09:38,"914 North St, Austin, TX 73301" -253833,AA Batteries (4-pack),1,3.84,09/06/19 18:27,"494 Spruce St, Los Angeles, CA 90001" -253834,USB-C Charging Cable,2,11.95,09/14/19 06:38,"380 River St, Boston, MA 02215" -253835,34in Ultrawide Monitor,1,379.99,09/26/19 08:49,"127 North St, Boston, MA 02215" -253836,LG Washing Machine,1,600.0,09/29/19 17:16,"424 2nd St, Dallas, TX 75001" -253837,Google Phone,1,600,09/30/19 21:11,"797 Sunset St, San Francisco, CA 94016" -253837,USB-C Charging Cable,1,11.95,09/30/19 21:11,"797 Sunset St, San Francisco, CA 94016" -253838,USB-C Charging Cable,1,11.95,09/05/19 00:46,"236 Chestnut St, San Francisco, CA 94016" -253839,34in Ultrawide Monitor,1,379.99,09/05/19 13:14,"466 Ridge St, Seattle, WA 98101" -253840,Apple Airpods Headphones,1,150,09/25/19 10:35,"361 Ridge St, San Francisco, CA 94016" -253841,Wired Headphones,1,11.99,09/29/19 08:33,"723 Madison St, Los Angeles, CA 90001" -253842,AA Batteries (4-pack),2,3.84,09/29/19 11:41,"625 South St, Los Angeles, CA 90001" -253843,Bose SoundSport Headphones,1,99.99,09/06/19 20:53,"204 Cherry St, Dallas, TX 75001" -253844,USB-C Charging Cable,1,11.95,09/08/19 13:39,"257 14th St, San Francisco, CA 94016" -253845,Bose SoundSport Headphones,1,99.99,09/24/19 13:21,"996 South St, New York City, NY 10001" -253846,Wired Headphones,1,11.99,09/15/19 19:43,"798 Madison St, Los Angeles, CA 90001" -253847,Bose SoundSport Headphones,1,99.99,09/24/19 12:12,"966 Sunset St, San Francisco, CA 94016" -253847,AAA Batteries (4-pack),1,2.99,09/24/19 12:12,"966 Sunset St, San Francisco, CA 94016" -253848,AAA Batteries (4-pack),1,2.99,09/17/19 16:07,"440 Adams St, Los Angeles, CA 90001" -253849,USB-C Charging Cable,1,11.95,09/18/19 09:03,"718 9th St, Boston, MA 02215" -253850,USB-C Charging Cable,1,11.95,09/03/19 23:19,"494 North St, Austin, TX 73301" -253851,ThinkPad Laptop,1,999.99,09/06/19 17:39,"590 Chestnut St, Los Angeles, CA 90001" -253852,iPhone,1,700,09/17/19 21:34,"231 South St, Seattle, WA 98101" -253853,Vareebadd Phone,1,400,09/25/19 17:32,"734 Madison St, Atlanta, GA 30301" -253854,AAA Batteries (4-pack),2,2.99,09/28/19 19:46,"800 South St, Los Angeles, CA 90001" -253855,Wired Headphones,1,11.99,09/17/19 23:40,"740 8th St, San Francisco, CA 94016" -253856,Lightning Charging Cable,1,14.95,09/16/19 21:13,"418 7th St, Los Angeles, CA 90001" -253857,Lightning Charging Cable,1,14.95,09/16/19 08:56,"632 North St, Boston, MA 02215" -253858,ThinkPad Laptop,1,999.99,09/22/19 16:41,"166 Meadow St, Boston, MA 02215" -253859,Apple Airpods Headphones,1,150,09/29/19 12:09,"227 Madison St, San Francisco, CA 94016" -253860,Wired Headphones,1,11.99,09/04/19 08:15,"397 Adams St, New York City, NY 10001" -253861,Flatscreen TV,1,300,09/29/19 15:03,"331 5th St, Los Angeles, CA 90001" -253862,Wired Headphones,1,11.99,09/15/19 20:19,"346 13th St, Boston, MA 02215" -253863,iPhone,1,700,09/25/19 18:59,"432 South St, Atlanta, GA 30301" -253864,AA Batteries (4-pack),2,3.84,09/02/19 18:46,"233 Sunset St, Los Angeles, CA 90001" -253865,20in Monitor,1,109.99,09/05/19 13:42,"996 Church St, San Francisco, CA 94016" -253866,Lightning Charging Cable,1,14.95,09/09/19 19:29,"467 Church St, New York City, NY 10001" -253867,Wired Headphones,1,11.99,09/19/19 13:21,"443 Lincoln St, Los Angeles, CA 90001" -253868,Apple Airpods Headphones,1,150,09/02/19 18:44,"719 Cherry St, Los Angeles, CA 90001" -253868,USB-C Charging Cable,1,11.95,09/02/19 18:44,"719 Cherry St, Los Angeles, CA 90001" -253869,Google Phone,1,600,09/25/19 23:13,"134 5th St, Los Angeles, CA 90001" -253870,AAA Batteries (4-pack),1,2.99,09/09/19 16:57,"666 Jefferson St, San Francisco, CA 94016" -253871,Apple Airpods Headphones,1,150,09/06/19 17:46,"223 Main St, San Francisco, CA 94016" -253872,AA Batteries (4-pack),1,3.84,09/11/19 00:25,"396 14th St, Seattle, WA 98101" -253873,Bose SoundSport Headphones,1,99.99,09/15/19 10:25,"930 5th St, San Francisco, CA 94016" -253874,Wired Headphones,1,11.99,09/16/19 09:18,"645 Lincoln St, San Francisco, CA 94016" -253875,27in FHD Monitor,1,149.99,09/13/19 22:22,"519 13th St, Boston, MA 02215" -253876,Vareebadd Phone,1,400,09/11/19 10:30,"688 11th St, San Francisco, CA 94016" -253877,AA Batteries (4-pack),2,3.84,09/12/19 23:41,"14 6th St, San Francisco, CA 94016" -253878,AAA Batteries (4-pack),1,2.99,09/28/19 11:23,"371 South St, San Francisco, CA 94016" -253879,iPhone,1,700,09/16/19 14:09,"487 Spruce St, San Francisco, CA 94016" -253880,iPhone,1,700,09/16/19 10:01,"77 4th St, Boston, MA 02215" -253881,AAA Batteries (4-pack),2,2.99,09/25/19 13:49,"75 Hickory St, New York City, NY 10001" -253882,Google Phone,1,600,09/02/19 22:40,"240 Cherry St, New York City, NY 10001" -253883,Wired Headphones,1,11.99,09/08/19 13:05,"873 Meadow St, Austin, TX 73301" -253884,USB-C Charging Cable,1,11.95,09/13/19 08:59,"620 West St, San Francisco, CA 94016" -253885,Lightning Charging Cable,1,14.95,09/07/19 09:51,"983 Madison St, Atlanta, GA 30301" -253886,27in 4K Gaming Monitor,1,389.99,09/08/19 07:30,"242 6th St, Atlanta, GA 30301" -253887,USB-C Charging Cable,1,11.95,09/14/19 16:36,"900 South St, Austin, TX 73301" -253888,ThinkPad Laptop,1,999.99,09/19/19 14:32,"349 4th St, New York City, NY 10001" -253889,Wired Headphones,1,11.99,09/25/19 15:28,"132 8th St, New York City, NY 10001" -253890,20in Monitor,1,109.99,09/15/19 08:45,"461 8th St, San Francisco, CA 94016" -253891,Bose SoundSport Headphones,1,99.99,09/30/19 21:09,"925 Spruce St, Seattle, WA 98101" -,,,,, -253892,Lightning Charging Cable,1,14.95,09/09/19 08:29,"237 Willow St, Boston, MA 02215" -253893,Lightning Charging Cable,1,14.95,09/15/19 11:05,"506 4th St, Dallas, TX 75001" -253894,Bose SoundSport Headphones,1,99.99,09/01/19 14:52,"883 Lake St, San Francisco, CA 94016" -253895,Wired Headphones,1,11.99,09/17/19 12:44,"649 Lincoln St, San Francisco, CA 94016" -253896,Apple Airpods Headphones,1,150,09/28/19 13:34,"241 West St, Dallas, TX 75001" -253897,Apple Airpods Headphones,1,150,09/02/19 12:21,"304 Maple St, Los Angeles, CA 90001" -253897,iPhone,1,700,09/02/19 12:21,"304 Maple St, Los Angeles, CA 90001" -253898,34in Ultrawide Monitor,1,379.99,09/23/19 00:56,"172 Church St, Boston, MA 02215" -253899,LG Washing Machine,1,600.0,09/18/19 15:47,"435 13th St, Boston, MA 02215" -253900,27in FHD Monitor,1,149.99,09/08/19 08:47,"407 Lincoln St, Los Angeles, CA 90001" -253901,Bose SoundSport Headphones,1,99.99,09/03/19 14:22,"111 Sunset St, Boston, MA 02215" -253902,Lightning Charging Cable,1,14.95,09/25/19 08:33,"403 8th St, San Francisco, CA 94016" -253903,USB-C Charging Cable,1,11.95,09/29/19 20:07,"436 Meadow St, Boston, MA 02215" -253904,27in 4K Gaming Monitor,1,389.99,09/30/19 09:32,"532 Lake St, San Francisco, CA 94016" -253904,Flatscreen TV,1,300,09/30/19 09:32,"532 Lake St, San Francisco, CA 94016" -253905,AAA Batteries (4-pack),1,2.99,09/21/19 21:08,"554 Church St, Dallas, TX 75001" -253906,Flatscreen TV,1,300,09/25/19 12:31,"769 West St, Los Angeles, CA 90001" -253907,iPhone,1,700,09/12/19 09:48,"936 13th St, New York City, NY 10001" -253908,AA Batteries (4-pack),1,3.84,09/09/19 14:30,"784 Wilson St, Dallas, TX 75001" -253909,AA Batteries (4-pack),2,3.84,09/07/19 18:08,"73 7th St, Atlanta, GA 30301" -253910,Flatscreen TV,1,300,09/13/19 15:35,"101 5th St, Boston, MA 02215" -253911,Apple Airpods Headphones,1,150,09/14/19 12:06,"471 5th St, Boston, MA 02215" -253912,Wired Headphones,1,11.99,09/08/19 15:21,"436 Walnut St, San Francisco, CA 94016" -253913,AAA Batteries (4-pack),2,2.99,09/11/19 14:59,"397 2nd St, Los Angeles, CA 90001" -253914,Apple Airpods Headphones,1,150,09/15/19 13:17,"641 Hickory St, New York City, NY 10001" -253915,Apple Airpods Headphones,1,150,09/16/19 19:55,"646 13th St, Atlanta, GA 30301" -253916,27in 4K Gaming Monitor,1,389.99,09/18/19 19:26,"39 Walnut St, Boston, MA 02215" -253917,Lightning Charging Cable,1,14.95,09/24/19 15:27,"547 Washington St, New York City, NY 10001" -253918,AAA Batteries (4-pack),3,2.99,09/16/19 17:34,"723 Lakeview St, San Francisco, CA 94016" -253919,Wired Headphones,1,11.99,09/10/19 07:20,"36 Maple St, San Francisco, CA 94016" -253920,27in FHD Monitor,1,149.99,09/10/19 18:45,"27 14th St, Boston, MA 02215" -253921,AAA Batteries (4-pack),1,2.99,09/11/19 18:53,"672 North St, Los Angeles, CA 90001" -253922,Bose SoundSport Headphones,1,99.99,09/30/19 17:55,"341 Chestnut St, Portland, OR 97035" -253923,Google Phone,1,600,09/16/19 14:25,"766 Main St, Boston, MA 02215" -253924,USB-C Charging Cable,1,11.95,09/25/19 11:09,"116 Willow St, San Francisco, CA 94016" -253925,ThinkPad Laptop,1,999.99,09/05/19 13:41,"311 1st St, Dallas, TX 75001" -253926,USB-C Charging Cable,1,11.95,09/24/19 09:59,"10 Willow St, Austin, TX 73301" -253927,AAA Batteries (4-pack),2,2.99,09/25/19 02:34,"5 Ridge St, New York City, NY 10001" -253928,Wired Headphones,2,11.99,09/27/19 20:58,"37 14th St, New York City, NY 10001" -253929,27in 4K Gaming Monitor,1,389.99,09/22/19 22:53,"710 Johnson St, New York City, NY 10001" -253929,20in Monitor,1,109.99,09/22/19 22:53,"710 Johnson St, New York City, NY 10001" -253930,34in Ultrawide Monitor,1,379.99,09/05/19 11:14,"780 Park St, Dallas, TX 75001" -253931,AAA Batteries (4-pack),1,2.99,09/28/19 17:16,"494 Wilson St, Seattle, WA 98101" -253932,Wired Headphones,1,11.99,09/05/19 08:43,"108 Ridge St, San Francisco, CA 94016" -253933,ThinkPad Laptop,1,999.99,09/30/19 19:06,"376 Lake St, San Francisco, CA 94016" -253934,Apple Airpods Headphones,1,150,09/09/19 22:17,"498 Cherry St, Los Angeles, CA 90001" -253935,USB-C Charging Cable,1,11.95,09/09/19 10:37,"966 Jackson St, Austin, TX 73301" -253936,34in Ultrawide Monitor,1,379.99,09/13/19 21:43,"844 9th St, Los Angeles, CA 90001" -253937,27in 4K Gaming Monitor,1,389.99,09/29/19 18:48,"855 2nd St, San Francisco, CA 94016" -253938,LG Washing Machine,1,600.0,09/06/19 08:36,"533 West St, New York City, NY 10001" -253939,Apple Airpods Headphones,1,150,09/13/19 08:39,"243 Pine St, Seattle, WA 98101" -253940,Bose SoundSport Headphones,1,99.99,09/24/19 16:44,"487 Walnut St, San Francisco, CA 94016" -253940,Lightning Charging Cable,1,14.95,09/24/19 16:44,"487 Walnut St, San Francisco, CA 94016" -253941,27in 4K Gaming Monitor,1,389.99,09/20/19 19:32,"13 9th St, Boston, MA 02215" -253942,AA Batteries (4-pack),1,3.84,09/22/19 16:54,"211 Hill St, Atlanta, GA 30301" -253943,AAA Batteries (4-pack),2,2.99,09/26/19 19:03,"583 Forest St, San Francisco, CA 94016" -253944,AAA Batteries (4-pack),1,2.99,09/05/19 13:23,"961 7th St, San Francisco, CA 94016" -253945,Apple Airpods Headphones,1,150,09/03/19 23:07,"264 6th St, San Francisco, CA 94016" -253946,Wired Headphones,1,11.99,09/27/19 11:52,"157 Hill St, Seattle, WA 98101" -253947,AA Batteries (4-pack),4,3.84,09/18/19 22:25,"573 Ridge St, Austin, TX 73301" -253948,27in 4K Gaming Monitor,1,389.99,09/16/19 09:28,"981 Lincoln St, Dallas, TX 75001" -253949,Lightning Charging Cable,1,14.95,09/21/19 12:17,"793 10th St, Dallas, TX 75001" -253950,20in Monitor,1,109.99,09/10/19 19:21,"528 Madison St, Austin, TX 73301" -253951,Lightning Charging Cable,1,14.95,09/30/19 13:27,"388 Jackson St, San Francisco, CA 94016" -253952,AAA Batteries (4-pack),1,2.99,09/29/19 18:41,"501 Lincoln St, Austin, TX 73301" -253953,AAA Batteries (4-pack),2,2.99,09/14/19 12:34,"863 South St, Los Angeles, CA 90001" -253954,AA Batteries (4-pack),1,3.84,09/13/19 10:37,"144 Walnut St, Los Angeles, CA 90001" -253955,AAA Batteries (4-pack),2,2.99,09/24/19 16:32,"339 7th St, Seattle, WA 98101" -253956,27in FHD Monitor,1,149.99,09/16/19 21:35,"963 Lincoln St, San Francisco, CA 94016" -253957,USB-C Charging Cable,1,11.95,09/24/19 19:41,"486 South St, Los Angeles, CA 90001" -253958,Apple Airpods Headphones,1,150,09/05/19 17:07,"200 South St, Los Angeles, CA 90001" -253959,34in Ultrawide Monitor,1,379.99,09/25/19 16:13,"887 Sunset St, Atlanta, GA 30301" -253960,AA Batteries (4-pack),2,3.84,09/18/19 11:16,"319 Forest St, San Francisco, CA 94016" -253961,Google Phone,1,600,09/06/19 14:49,"924 Park St, Boston, MA 02215" -253962,AAA Batteries (4-pack),1,2.99,09/06/19 21:19,"150 7th St, New York City, NY 10001" -253963,AA Batteries (4-pack),1,3.84,09/21/19 10:42,"597 Jackson St, San Francisco, CA 94016" -253964,Macbook Pro Laptop,1,1700,09/09/19 15:19,"689 Wilson St, Dallas, TX 75001" -253965,AA Batteries (4-pack),1,3.84,09/10/19 18:03,"749 1st St, Seattle, WA 98101" -253966,Apple Airpods Headphones,1,150,09/10/19 11:46,"656 Forest St, Seattle, WA 98101" -253967,AAA Batteries (4-pack),2,2.99,09/14/19 17:11,"309 Ridge St, Boston, MA 02215" -253968,Wired Headphones,2,11.99,09/11/19 16:55,"63 8th St, Boston, MA 02215" -253968,34in Ultrawide Monitor,1,379.99,09/11/19 16:55,"63 8th St, Boston, MA 02215" -253969,iPhone,1,700,09/14/19 10:46,"205 Washington St, San Francisco, CA 94016" -253970,Wired Headphones,1,11.99,09/21/19 19:04,"571 Jefferson St, San Francisco, CA 94016" -253971,Lightning Charging Cable,1,14.95,09/18/19 15:19,"87 South St, Los Angeles, CA 90001" -253972,AAA Batteries (4-pack),1,2.99,09/29/19 10:13,"636 Jackson St, Portland, ME 04101" -253973,Flatscreen TV,1,300,09/08/19 16:37,"710 Jackson St, Austin, TX 73301" -253974,27in 4K Gaming Monitor,1,389.99,09/17/19 05:15,"644 13th St, Seattle, WA 98101" -253975,Wired Headphones,1,11.99,09/11/19 18:39,"20 7th St, Boston, MA 02215" -253976,AA Batteries (4-pack),2,3.84,09/26/19 05:12,"117 Dogwood St, Los Angeles, CA 90001" -253977,Lightning Charging Cable,1,14.95,09/30/19 23:09,"917 8th St, Atlanta, GA 30301" -253978,iPhone,1,700,09/11/19 15:10,"142 Lake St, Portland, OR 97035" -253978,Lightning Charging Cable,1,14.95,09/11/19 15:10,"142 Lake St, Portland, OR 97035" -253978,Wired Headphones,2,11.99,09/11/19 15:10,"142 Lake St, Portland, OR 97035" -253979,iPhone,1,700,09/30/19 21:53,"490 Highland St, New York City, NY 10001" -253980,Wired Headphones,1,11.99,09/07/19 16:19,"172 14th St, Seattle, WA 98101" -253981,Lightning Charging Cable,1,14.95,09/02/19 22:32,"811 Adams St, Atlanta, GA 30301" -253981,Lightning Charging Cable,1,14.95,09/02/19 22:32,"811 Adams St, Atlanta, GA 30301" -253982,Wired Headphones,1,11.99,09/25/19 16:42,"929 2nd St, Boston, MA 02215" -253983,34in Ultrawide Monitor,1,379.99,09/08/19 09:55,"773 Johnson St, Los Angeles, CA 90001" -253984,Lightning Charging Cable,1,14.95,09/15/19 11:15,"740 5th St, Dallas, TX 75001" -253985,Wired Headphones,1,11.99,09/09/19 17:03,"283 North St, New York City, NY 10001" -253986,Macbook Pro Laptop,1,1700,09/07/19 12:37,"121 9th St, Los Angeles, CA 90001" -253987,iPhone,1,700,09/27/19 23:11,"245 North St, San Francisco, CA 94016" -253987,Lightning Charging Cable,1,14.95,09/27/19 23:11,"245 North St, San Francisco, CA 94016" -253988,27in FHD Monitor,1,149.99,09/01/19 19:16,"360 Park St, Atlanta, GA 30301" -253989,Flatscreen TV,1,300,09/25/19 15:41,"41 Wilson St, Los Angeles, CA 90001" -253990,Wired Headphones,1,11.99,09/23/19 01:50,"163 Jackson St, Seattle, WA 98101" -253991,Lightning Charging Cable,1,14.95,09/30/19 15:29,"819 Lake St, Los Angeles, CA 90001" -253992,AA Batteries (4-pack),1,3.84,09/15/19 14:54,"212 Forest St, San Francisco, CA 94016" -253993,Macbook Pro Laptop,1,1700,09/28/19 02:07,"64 Washington St, New York City, NY 10001" -253994,USB-C Charging Cable,1,11.95,09/14/19 16:20,"798 Adams St, New York City, NY 10001" -253995,Lightning Charging Cable,1,14.95,09/12/19 18:21,"406 Hickory St, San Francisco, CA 94016" -253996,AAA Batteries (4-pack),1,2.99,09/22/19 13:36,"598 14th St, Portland, OR 97035" -253997,AA Batteries (4-pack),1,3.84,09/09/19 09:35,"22 Lakeview St, San Francisco, CA 94016" -253998,AAA Batteries (4-pack),2,2.99,09/16/19 17:03,"740 Willow St, San Francisco, CA 94016" -253999,Apple Airpods Headphones,1,150,09/17/19 14:00,"629 Center St, Los Angeles, CA 90001" -254000,AA Batteries (4-pack),2,3.84,09/22/19 07:56,"81 11th St, Austin, TX 73301" -254001,Lightning Charging Cable,1,14.95,09/15/19 21:27,"426 11th St, Los Angeles, CA 90001" -254002,Apple Airpods Headphones,1,150,09/07/19 19:11,"330 4th St, Los Angeles, CA 90001" -254003,AAA Batteries (4-pack),1,2.99,09/16/19 08:14,"825 14th St, Seattle, WA 98101" -254004,Bose SoundSport Headphones,1,99.99,09/12/19 11:56,"875 Lakeview St, Portland, OR 97035" -254005,Wired Headphones,2,11.99,09/14/19 18:44,"543 Cherry St, New York City, NY 10001" -254006,20in Monitor,1,109.99,09/21/19 12:33,"639 Wilson St, Boston, MA 02215" -254007,Lightning Charging Cable,1,14.95,09/25/19 08:36,"407 Main St, New York City, NY 10001" -254008,Wired Headphones,1,11.99,09/09/19 22:06,"445 Johnson St, San Francisco, CA 94016" -254009,Bose SoundSport Headphones,1,99.99,09/21/19 14:12,"134 Pine St, Austin, TX 73301" -254010,Bose SoundSport Headphones,1,99.99,09/26/19 21:13,"115 River St, Boston, MA 02215" -254011,iPhone,1,700,09/02/19 20:00,"919 Spruce St, Los Angeles, CA 90001" -254012,AAA Batteries (4-pack),1,2.99,09/30/19 19:06,"237 10th St, San Francisco, CA 94016" -254013,Bose SoundSport Headphones,1,99.99,09/03/19 06:57,"897 Lake St, San Francisco, CA 94016" -254014,USB-C Charging Cable,1,11.95,09/17/19 11:46,"611 Meadow St, Dallas, TX 75001" -254015,Bose SoundSport Headphones,1,99.99,09/01/19 14:36,"597 Johnson St, San Francisco, CA 94016" -254016,AA Batteries (4-pack),2,3.84,09/05/19 13:03,"789 Hill St, Boston, MA 02215" -254017,Bose SoundSport Headphones,1,99.99,09/18/19 20:15,"487 North St, Boston, MA 02215" -254018,Google Phone,1,600,09/08/19 11:33,"127 Washington St, Atlanta, GA 30301" -254019,AA Batteries (4-pack),1,3.84,09/16/19 20:23,"285 Lake St, Atlanta, GA 30301" -254020,Wired Headphones,1,11.99,09/02/19 13:03,"507 Chestnut St, Seattle, WA 98101" -254021,Apple Airpods Headphones,1,150,09/20/19 20:53,"890 Hill St, Dallas, TX 75001" -254022,Wired Headphones,1,11.99,09/18/19 14:43,"281 Lake St, Seattle, WA 98101" -254023,Lightning Charging Cable,1,14.95,09/17/19 22:21,"399 Highland St, Seattle, WA 98101" -254024,USB-C Charging Cable,1,11.95,09/10/19 17:56,"366 10th St, New York City, NY 10001" -254025,Google Phone,1,600,09/05/19 13:53,"818 Park St, San Francisco, CA 94016" -254026,Wired Headphones,1,11.99,09/01/19 20:27,"66 12th St, San Francisco, CA 94016" -254027,AAA Batteries (4-pack),1,2.99,09/13/19 14:12,"465 11th St, Boston, MA 02215" -254028,Wired Headphones,1,11.99,09/01/19 20:20,"839 12th St, San Francisco, CA 94016" -254029,USB-C Charging Cable,1,11.95,09/27/19 23:00,"842 Elm St, Dallas, TX 75001" -254030,Wired Headphones,1,11.99,09/27/19 22:44,"782 10th St, Austin, TX 73301" -254031,Lightning Charging Cable,2,14.95,09/02/19 01:28,"896 Ridge St, San Francisco, CA 94016" -254032,USB-C Charging Cable,3,11.95,09/17/19 17:19,"619 6th St, Boston, MA 02215" -254033,Google Phone,1,600,09/28/19 23:42,"728 10th St, Austin, TX 73301" -254034,AA Batteries (4-pack),1,3.84,09/10/19 12:51,"239 Willow St, New York City, NY 10001" -254035,Apple Airpods Headphones,1,150,09/07/19 16:29,"481 River St, San Francisco, CA 94016" -254036,USB-C Charging Cable,1,11.95,09/10/19 10:36,"637 Adams St, San Francisco, CA 94016" -254037,Lightning Charging Cable,1,14.95,09/20/19 11:27,"149 Pine St, San Francisco, CA 94016" -254038,USB-C Charging Cable,1,11.95,09/26/19 13:13,"976 Elm St, Los Angeles, CA 90001" -254039,ThinkPad Laptop,1,999.99,09/29/19 02:08,"54 Hill St, Atlanta, GA 30301" -254040,27in 4K Gaming Monitor,1,389.99,09/23/19 09:09,"512 Lake St, Atlanta, GA 30301" -254041,Bose SoundSport Headphones,1,99.99,09/25/19 16:16,"918 11th St, San Francisco, CA 94016" -254042,AA Batteries (4-pack),2,3.84,09/18/19 20:53,"779 Dogwood St, Atlanta, GA 30301" -254043,AAA Batteries (4-pack),1,2.99,09/05/19 01:23,"892 Washington St, San Francisco, CA 94016" -254044,Lightning Charging Cable,1,14.95,09/10/19 14:53,"112 1st St, Portland, ME 04101" -254045,Google Phone,1,600,09/30/19 10:27,"633 Lincoln St, Boston, MA 02215" -254046,Google Phone,1,600,09/08/19 13:53,"875 Wilson St, Boston, MA 02215" -254046,Wired Headphones,1,11.99,09/08/19 13:53,"875 Wilson St, Boston, MA 02215" -254047,20in Monitor,1,109.99,09/07/19 21:47,"739 Sunset St, New York City, NY 10001" -254048,Apple Airpods Headphones,1,150,09/12/19 16:49,"377 6th St, Portland, OR 97035" -254049,AA Batteries (4-pack),1,3.84,09/29/19 11:53,"858 Sunset St, Portland, OR 97035" -254050,Lightning Charging Cable,1,14.95,09/17/19 18:21,"279 Cedar St, Boston, MA 02215" -254051,27in FHD Monitor,1,149.99,09/24/19 09:35,"743 Hill St, Portland, OR 97035" -254052,Bose SoundSport Headphones,1,99.99,09/17/19 20:15,"418 Highland St, Atlanta, GA 30301" -254053,AAA Batteries (4-pack),1,2.99,09/22/19 17:21,"73 Cedar St, Seattle, WA 98101" -254054,Wired Headphones,2,11.99,09/20/19 19:23,"646 Hill St, Portland, ME 04101" -254055,Google Phone,1,600,09/23/19 21:12,"991 2nd St, Boston, MA 02215" -254056,AAA Batteries (4-pack),1,2.99,09/07/19 13:58,"259 Adams St, San Francisco, CA 94016" -254057,27in 4K Gaming Monitor,1,389.99,09/22/19 06:38,"869 11th St, Atlanta, GA 30301" -254058,AAA Batteries (4-pack),2,2.99,09/08/19 21:22,"41 Highland St, Seattle, WA 98101" -254059,Bose SoundSport Headphones,1,99.99,09/23/19 22:12,"884 10th St, New York City, NY 10001" -254060,34in Ultrawide Monitor,1,379.99,09/04/19 18:18,"931 Forest St, New York City, NY 10001" -254061,27in FHD Monitor,1,149.99,09/27/19 19:20,"413 Forest St, Dallas, TX 75001" -254062,20in Monitor,1,109.99,09/16/19 19:43,"27 9th St, Los Angeles, CA 90001" -254063,AAA Batteries (4-pack),1,2.99,09/13/19 16:04,"22 Lake St, Dallas, TX 75001" -254064,Apple Airpods Headphones,1,150,09/24/19 16:17,"492 Sunset St, New York City, NY 10001" -254065,Lightning Charging Cable,1,14.95,09/04/19 20:26,"412 Elm St, San Francisco, CA 94016" -254066,Wired Headphones,4,11.99,09/03/19 11:04,"654 Ridge St, San Francisco, CA 94016" -254066,Bose SoundSport Headphones,1,99.99,09/03/19 11:04,"654 Ridge St, San Francisco, CA 94016" -254067,Wired Headphones,1,11.99,09/18/19 21:40,"884 River St, Los Angeles, CA 90001" -254068,AAA Batteries (4-pack),1,2.99,09/01/19 08:58,"321 Church St, Los Angeles, CA 90001" -254069,Flatscreen TV,1,300,09/19/19 11:09,"769 5th St, New York City, NY 10001" -254070,Flatscreen TV,1,300,09/14/19 18:29,"793 Cedar St, Portland, OR 97035" -254071,34in Ultrawide Monitor,1,379.99,09/16/19 16:08,"579 Meadow St, Seattle, WA 98101" -254072,Wired Headphones,2,11.99,09/23/19 07:49,"154 North St, San Francisco, CA 94016" -254073,27in 4K Gaming Monitor,1,389.99,09/06/19 15:25,"267 Elm St, New York City, NY 10001" -254074,Lightning Charging Cable,1,14.95,09/13/19 17:07,"391 River St, San Francisco, CA 94016" -254075,AA Batteries (4-pack),1,3.84,09/10/19 10:52,"8 5th St, Dallas, TX 75001" -254076,Lightning Charging Cable,1,14.95,09/29/19 21:58,"5 Sunset St, Dallas, TX 75001" -254077,USB-C Charging Cable,1,11.95,09/11/19 09:22,"795 11th St, Portland, OR 97035" -254078,AAA Batteries (4-pack),1,2.99,09/05/19 12:32,"797 Dogwood St, San Francisco, CA 94016" -254078,Macbook Pro Laptop,1,1700,09/05/19 12:32,"797 Dogwood St, San Francisco, CA 94016" -254079,USB-C Charging Cable,1,11.95,09/29/19 14:02,"272 Center St, San Francisco, CA 94016" -254080,Macbook Pro Laptop,1,1700,09/16/19 17:37,"90 Madison St, New York City, NY 10001" -254081,AA Batteries (4-pack),1,3.84,09/12/19 09:01,"398 Lakeview St, Seattle, WA 98101" -254082,Wired Headphones,1,11.99,09/27/19 16:18,"418 Lincoln St, Los Angeles, CA 90001" -254083,Bose SoundSport Headphones,1,99.99,09/08/19 01:41,"707 Lincoln St, Boston, MA 02215" -254084,AAA Batteries (4-pack),1,2.99,09/01/19 22:19,"814 Hickory St, San Francisco, CA 94016" -254085,Vareebadd Phone,1,400,09/30/19 15:01,"308 Lincoln St, San Francisco, CA 94016" -254086,Apple Airpods Headphones,1,150,09/01/19 17:51,"244 6th St, San Francisco, CA 94016" -254087,AA Batteries (4-pack),1,3.84,09/25/19 17:53,"856 Adams St, San Francisco, CA 94016" -254088,Apple Airpods Headphones,1,150,09/22/19 14:48,"27 Willow St, Boston, MA 02215" -254089,ThinkPad Laptop,1,999.99,09/17/19 21:20,"278 8th St, Los Angeles, CA 90001" -254090,AAA Batteries (4-pack),1,2.99,09/04/19 23:50,"683 Willow St, Seattle, WA 98101" -254091,Wired Headphones,1,11.99,09/21/19 22:23,"85 Forest St, San Francisco, CA 94016" -254092,Lightning Charging Cable,1,14.95,09/22/19 14:36,"426 Madison St, Portland, OR 97035" -254093,27in 4K Gaming Monitor,1,389.99,09/23/19 18:37,"342 West St, Los Angeles, CA 90001" -254094,27in 4K Gaming Monitor,1,389.99,09/18/19 01:36,"747 5th St, Boston, MA 02215" -254095,AAA Batteries (4-pack),1,2.99,09/18/19 21:24,"202 Park St, Los Angeles, CA 90001" -254096,34in Ultrawide Monitor,1,379.99,09/27/19 09:52,"390 5th St, Austin, TX 73301" -254097,27in 4K Gaming Monitor,1,389.99,09/30/19 21:52,"686 Forest St, San Francisco, CA 94016" -254098,AAA Batteries (4-pack),1,2.99,09/14/19 08:01,"727 Lakeview St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -254099,Apple Airpods Headphones,1,150,09/04/19 21:38,"32 Spruce St, Boston, MA 02215" -254100,AA Batteries (4-pack),2,3.84,09/01/19 14:17,"135 Lincoln St, San Francisco, CA 94016" -254101,AA Batteries (4-pack),4,3.84,09/04/19 17:28,"805 South St, Austin, TX 73301" -254102,Lightning Charging Cable,1,14.95,09/04/19 19:04,"691 6th St, Los Angeles, CA 90001" -254103,USB-C Charging Cable,1,11.95,09/23/19 10:35,"199 Chestnut St, New York City, NY 10001" -254104,USB-C Charging Cable,1,11.95,09/11/19 14:03,"214 Cherry St, San Francisco, CA 94016" -254105,USB-C Charging Cable,1,11.95,09/27/19 11:39,"866 Adams St, Boston, MA 02215" -,,,,, -254106,AAA Batteries (4-pack),1,2.99,09/16/19 20:26,"870 Forest St, Los Angeles, CA 90001" -254107,AAA Batteries (4-pack),1,2.99,09/13/19 22:23,"172 Hill St, Seattle, WA 98101" -254108,Apple Airpods Headphones,1,150,09/15/19 07:29,"932 Lake St, Portland, OR 97035" -254109,Macbook Pro Laptop,1,1700,09/09/19 12:28,"761 Washington St, Seattle, WA 98101" -254110,Google Phone,1,600,09/25/19 20:10,"252 13th St, Portland, OR 97035" -254111,27in 4K Gaming Monitor,1,389.99,09/07/19 20:44,"635 Cedar St, Austin, TX 73301" -254112,ThinkPad Laptop,1,999.99,09/27/19 12:43,"262 Lakeview St, New York City, NY 10001" -254113,Wired Headphones,1,11.99,09/20/19 13:29,"431 Lincoln St, Los Angeles, CA 90001" -254114,Google Phone,1,600,09/03/19 23:04,"734 11th St, Los Angeles, CA 90001" -254114,USB-C Charging Cable,1,11.95,09/03/19 23:04,"734 11th St, Los Angeles, CA 90001" -254115,AAA Batteries (4-pack),1,2.99,09/20/19 14:09,"869 8th St, Portland, ME 04101" -254116,Lightning Charging Cable,1,14.95,09/16/19 21:32,"741 Cherry St, San Francisco, CA 94016" -254117,AAA Batteries (4-pack),2,2.99,09/21/19 21:42,"703 Lake St, San Francisco, CA 94016" -254118,ThinkPad Laptop,1,999.99,09/12/19 16:27,"692 Hickory St, San Francisco, CA 94016" -254119,Google Phone,1,600,09/18/19 20:34,"31 River St, Boston, MA 02215" -254119,USB-C Charging Cable,1,11.95,09/18/19 20:34,"31 River St, Boston, MA 02215" -254120,AA Batteries (4-pack),1,3.84,09/03/19 13:44,"13 Meadow St, San Francisco, CA 94016" -254121,USB-C Charging Cable,1,11.95,09/19/19 20:04,"97 2nd St, Portland, OR 97035" -254122,27in 4K Gaming Monitor,2,389.99,09/15/19 01:47,"248 Cedar St, Dallas, TX 75001" -254123,Flatscreen TV,1,300,09/27/19 11:21,"260 Lincoln St, Los Angeles, CA 90001" -254124,Wired Headphones,1,11.99,09/28/19 19:23,"708 Highland St, Seattle, WA 98101" -254125,AA Batteries (4-pack),1,3.84,09/07/19 09:32,"571 Sunset St, Austin, TX 73301" -254126,Lightning Charging Cable,1,14.95,09/21/19 21:51,"697 Elm St, Atlanta, GA 30301" -254127,Lightning Charging Cable,1,14.95,09/26/19 11:06,"994 West St, Los Angeles, CA 90001" -254128,AA Batteries (4-pack),1,3.84,09/14/19 20:57,"997 14th St, San Francisco, CA 94016" -254129,AA Batteries (4-pack),3,3.84,09/20/19 19:32,"575 Spruce St, San Francisco, CA 94016" -254130,AAA Batteries (4-pack),1,2.99,09/16/19 12:53,"437 Lakeview St, Seattle, WA 98101" -254131,Apple Airpods Headphones,1,150,09/26/19 00:58,"91 13th St, Seattle, WA 98101" -254132,ThinkPad Laptop,1,999.99,09/09/19 12:01,"628 Ridge St, Austin, TX 73301" -254132,Google Phone,1,600,09/09/19 12:01,"628 Ridge St, Austin, TX 73301" -254133,Apple Airpods Headphones,1,150,09/10/19 21:19,"267 Sunset St, San Francisco, CA 94016" -254134,AA Batteries (4-pack),2,3.84,09/26/19 18:54,"360 Madison St, Dallas, TX 75001" -254135,Vareebadd Phone,1,400,09/02/19 00:05,"293 Willow St, New York City, NY 10001" -254136,AAA Batteries (4-pack),1,2.99,09/14/19 13:37,"888 North St, New York City, NY 10001" -254137,AAA Batteries (4-pack),2,2.99,09/26/19 23:55,"912 Madison St, San Francisco, CA 94016" -254138,34in Ultrawide Monitor,1,379.99,09/29/19 19:27,"50 Lincoln St, Dallas, TX 75001" -254139,Lightning Charging Cable,1,14.95,09/11/19 23:55,"841 11th St, New York City, NY 10001" -254140,Bose SoundSport Headphones,1,99.99,09/01/19 14:56,"649 8th St, Portland, OR 97035" -254141,20in Monitor,1,109.99,09/19/19 10:17,"274 Washington St, Boston, MA 02215" -254142,Apple Airpods Headphones,1,150,09/26/19 13:45,"115 Cherry St, New York City, NY 10001" -254143,Bose SoundSport Headphones,1,99.99,09/04/19 23:41,"924 Cedar St, Boston, MA 02215" -254144,AAA Batteries (4-pack),3,2.99,09/07/19 09:36,"109 5th St, Los Angeles, CA 90001" -254145,AAA Batteries (4-pack),4,2.99,09/30/19 06:53,"832 9th St, Boston, MA 02215" -254146,USB-C Charging Cable,1,11.95,09/13/19 20:53,"463 Meadow St, New York City, NY 10001" -254147,Macbook Pro Laptop,1,1700,09/29/19 10:04,"828 Elm St, Seattle, WA 98101" -254148,USB-C Charging Cable,1,11.95,09/25/19 18:33,"215 Hill St, Boston, MA 02215" -254149,AAA Batteries (4-pack),2,2.99,09/22/19 19:47,"766 10th St, Portland, OR 97035" -254150,AAA Batteries (4-pack),1,2.99,09/29/19 10:18,"120 Johnson St, San Francisco, CA 94016" -254151,27in FHD Monitor,1,149.99,09/26/19 17:59,"135 Walnut St, Dallas, TX 75001" -254152,Wired Headphones,1,11.99,09/01/19 18:44,"563 Chestnut St, New York City, NY 10001" -254153,iPhone,1,700,09/03/19 02:24,"586 Forest St, Austin, TX 73301" -254154,Wired Headphones,1,11.99,09/29/19 21:46,"563 Elm St, San Francisco, CA 94016" -254155,27in FHD Monitor,1,149.99,09/01/19 21:52,"744 Church St, San Francisco, CA 94016" -254156,Bose SoundSport Headphones,1,99.99,09/19/19 20:05,"366 Cherry St, Los Angeles, CA 90001" -254157,27in 4K Gaming Monitor,1,389.99,09/08/19 06:44,"297 Spruce St, Atlanta, GA 30301" -254158,AA Batteries (4-pack),1,3.84,09/15/19 06:24,"941 12th St, Los Angeles, CA 90001" -254159,27in 4K Gaming Monitor,1,389.99,09/21/19 08:10,"257 Dogwood St, Austin, TX 73301" -254160,AAA Batteries (4-pack),2,2.99,09/17/19 21:48,"861 Wilson St, Los Angeles, CA 90001" -254161,USB-C Charging Cable,1,11.95,09/02/19 09:17,"517 8th St, Seattle, WA 98101" -254162,USB-C Charging Cable,1,11.95,09/19/19 14:15,"612 9th St, Boston, MA 02215" -254163,20in Monitor,1,109.99,09/19/19 16:09,"815 Willow St, Los Angeles, CA 90001" -254164,USB-C Charging Cable,1,11.95,09/10/19 02:14,"284 Walnut St, Los Angeles, CA 90001" -254165,Apple Airpods Headphones,1,150,09/05/19 17:34,"345 Maple St, San Francisco, CA 94016" -254166,Bose SoundSport Headphones,1,99.99,09/04/19 14:10,"214 12th St, Portland, OR 97035" -254167,Flatscreen TV,1,300,09/16/19 22:41,"322 Lincoln St, Los Angeles, CA 90001" -254168,Apple Airpods Headphones,1,150,09/04/19 18:25,"243 Chestnut St, Austin, TX 73301" -254169,Google Phone,1,600,09/10/19 16:52,"603 12th St, Los Angeles, CA 90001" -254170,AA Batteries (4-pack),1,3.84,09/17/19 12:33,"491 Elm St, New York City, NY 10001" -254171,Lightning Charging Cable,1,14.95,09/21/19 19:10,"445 Jefferson St, Boston, MA 02215" -254172,USB-C Charging Cable,1,11.95,09/11/19 13:53,"779 South St, Seattle, WA 98101" -254173,AAA Batteries (4-pack),1,2.99,09/13/19 20:32,"584 13th St, Atlanta, GA 30301" -254174,AAA Batteries (4-pack),1,2.99,09/12/19 08:56,"43 11th St, Dallas, TX 75001" -254175,Google Phone,1,600,09/04/19 08:07,"180 Lincoln St, Portland, OR 97035" -254175,USB-C Charging Cable,1,11.95,09/04/19 08:07,"180 Lincoln St, Portland, OR 97035" -254176,AA Batteries (4-pack),2,3.84,09/14/19 14:51,"816 Center St, Boston, MA 02215" -254177,Bose SoundSport Headphones,1,99.99,09/10/19 19:04,"514 Lakeview St, Los Angeles, CA 90001" -254178,AA Batteries (4-pack),2,3.84,09/17/19 11:17,"541 Park St, Los Angeles, CA 90001" -254179,27in FHD Monitor,1,149.99,09/29/19 15:27,"878 14th St, Atlanta, GA 30301" -254180,Lightning Charging Cable,1,14.95,09/19/19 13:18,"827 Jefferson St, San Francisco, CA 94016" -254181,27in 4K Gaming Monitor,1,389.99,09/21/19 21:41,"274 Center St, Atlanta, GA 30301" -254182,USB-C Charging Cable,1,11.95,09/23/19 17:50,"813 Lakeview St, San Francisco, CA 94016" -254183,Wired Headphones,1,11.99,09/03/19 13:26,"768 1st St, San Francisco, CA 94016" -254184,27in FHD Monitor,1,149.99,09/13/19 21:11,"626 Washington St, Boston, MA 02215" -254185,Lightning Charging Cable,1,14.95,09/26/19 19:56,"964 Jackson St, Dallas, TX 75001" -254186,AAA Batteries (4-pack),2,2.99,09/05/19 15:00,"575 Sunset St, Seattle, WA 98101" -254187,Apple Airpods Headphones,1,150,09/23/19 21:08,"705 Willow St, Seattle, WA 98101" -254188,AAA Batteries (4-pack),1,2.99,09/27/19 11:47,"4 North St, Portland, OR 97035" -254189,20in Monitor,1,109.99,09/04/19 18:25,"776 Jefferson St, San Francisco, CA 94016" -254190,Lightning Charging Cable,1,14.95,09/17/19 11:23,"940 12th St, New York City, NY 10001" -254191,AAA Batteries (4-pack),2,2.99,09/04/19 14:22,"36 Willow St, Austin, TX 73301" -254192,AAA Batteries (4-pack),1,2.99,09/22/19 06:46,"442 5th St, Boston, MA 02215" -254193,Apple Airpods Headphones,1,150,09/13/19 08:24,"519 Dogwood St, Boston, MA 02215" -254194,Lightning Charging Cable,1,14.95,09/14/19 18:42,"629 Main St, Los Angeles, CA 90001" -254195,Bose SoundSport Headphones,1,99.99,09/10/19 18:13,"694 Highland St, Seattle, WA 98101" -254196,USB-C Charging Cable,1,11.95,09/13/19 23:06,"718 14th St, San Francisco, CA 94016" -254197,Apple Airpods Headphones,1,150,09/21/19 21:11,"772 Madison St, Los Angeles, CA 90001" -254198,Lightning Charging Cable,1,14.95,09/21/19 20:34,"514 Hill St, Los Angeles, CA 90001" -254199,Apple Airpods Headphones,1,150,09/08/19 09:15,"696 11th St, Boston, MA 02215" -254200,Lightning Charging Cable,1,14.95,09/22/19 07:06,"296 9th St, Dallas, TX 75001" -254201,20in Monitor,1,109.99,09/21/19 10:27,"384 Jefferson St, San Francisco, CA 94016" -254202,34in Ultrawide Monitor,1,379.99,09/21/19 21:18,"343 1st St, Seattle, WA 98101" -254203,iPhone,1,700,09/09/19 23:23,"510 11th St, Dallas, TX 75001" -254204,34in Ultrawide Monitor,1,379.99,09/29/19 18:04,"530 Pine St, San Francisco, CA 94016" -254205,iPhone,1,700,09/25/19 16:00,"896 14th St, Dallas, TX 75001" -254206,Flatscreen TV,1,300,09/28/19 18:49,"928 14th St, Seattle, WA 98101" -254207,AAA Batteries (4-pack),4,2.99,09/11/19 13:53,"558 Forest St, New York City, NY 10001" -254208,Wired Headphones,1,11.99,09/04/19 14:09,"785 South St, San Francisco, CA 94016" -254209,Google Phone,1,600,09/02/19 11:36,"242 West St, Boston, MA 02215" -254210,ThinkPad Laptop,1,999.99,09/28/19 06:56,"725 Ridge St, Los Angeles, CA 90001" -254211,AAA Batteries (4-pack),1,2.99,09/10/19 03:34,"48 Dogwood St, San Francisco, CA 94016" -254212,Lightning Charging Cable,1,14.95,09/09/19 01:39,"196 Lake St, Portland, ME 04101" -254213,27in FHD Monitor,1,149.99,09/27/19 11:00,"809 Cherry St, New York City, NY 10001" -254214,LG Dryer,1,600.0,09/09/19 20:46,"647 11th St, New York City, NY 10001" -254215,USB-C Charging Cable,1,11.95,09/01/19 20:48,"232 Sunset St, Los Angeles, CA 90001" -254216,USB-C Charging Cable,1,11.95,09/03/19 20:51,"503 Main St, New York City, NY 10001" -254217,27in 4K Gaming Monitor,1,389.99,09/18/19 15:21,"801 Elm St, San Francisco, CA 94016" -254218,20in Monitor,1,109.99,09/30/19 09:01,"488 Walnut St, Atlanta, GA 30301" -254219,Macbook Pro Laptop,1,1700,09/01/19 17:07,"658 Lakeview St, Los Angeles, CA 90001" -254220,Wired Headphones,1,11.99,09/25/19 01:31,"459 Hickory St, San Francisco, CA 94016" -254221,iPhone,1,700,09/19/19 21:40,"3 10th St, Seattle, WA 98101" -254222,USB-C Charging Cable,1,11.95,09/21/19 13:43,"25 4th St, Dallas, TX 75001" -254223,Lightning Charging Cable,1,14.95,09/08/19 14:58,"934 13th St, New York City, NY 10001" -254224,Lightning Charging Cable,1,14.95,09/09/19 12:22,"178 Madison St, Austin, TX 73301" -254225,27in FHD Monitor,1,149.99,09/18/19 18:45,"147 7th St, San Francisco, CA 94016" -254226,34in Ultrawide Monitor,1,379.99,09/08/19 17:55,"825 Spruce St, Boston, MA 02215" -254227,20in Monitor,1,109.99,09/16/19 20:51,"47 Maple St, New York City, NY 10001" -254228,Wired Headphones,1,11.99,09/22/19 14:50,"247 Lakeview St, Los Angeles, CA 90001" -254229,Bose SoundSport Headphones,1,99.99,09/23/19 15:21,"177 Meadow St, Atlanta, GA 30301" -254230,iPhone,1,700,09/29/19 18:56,"529 6th St, Los Angeles, CA 90001" -254231,USB-C Charging Cable,1,11.95,09/06/19 11:08,"938 Wilson St, Los Angeles, CA 90001" -254232,USB-C Charging Cable,1,11.95,09/02/19 17:22,"854 Maple St, Los Angeles, CA 90001" -254233,27in 4K Gaming Monitor,1,389.99,09/15/19 21:19,"39 Washington St, New York City, NY 10001" -254234,Bose SoundSport Headphones,1,99.99,09/19/19 12:54,"682 14th St, Austin, TX 73301" -254235,Wired Headphones,1,11.99,09/03/19 19:58,"63 Jackson St, New York City, NY 10001" -254236,Wired Headphones,1,11.99,09/21/19 14:29,"948 Pine St, Boston, MA 02215" -254237,AA Batteries (4-pack),1,3.84,09/16/19 05:26,"708 Main St, Los Angeles, CA 90001" -254238,20in Monitor,1,109.99,09/06/19 00:31,"477 Madison St, San Francisco, CA 94016" -254239,Flatscreen TV,1,300,09/29/19 10:43,"476 Meadow St, Boston, MA 02215" -254240,Wired Headphones,1,11.99,09/08/19 12:38,"322 Elm St, Boston, MA 02215" -254241,ThinkPad Laptop,1,999.99,09/04/19 19:44,"806 North St, Atlanta, GA 30301" -254242,Wired Headphones,1,11.99,09/13/19 01:00,"353 8th St, Dallas, TX 75001" -254243,AAA Batteries (4-pack),1,2.99,09/23/19 18:55,"731 Cherry St, Atlanta, GA 30301" -254244,Bose SoundSport Headphones,1,99.99,09/17/19 16:24,"355 Lakeview St, New York City, NY 10001" -254245,Lightning Charging Cable,1,14.95,09/30/19 16:36,"383 Jefferson St, Portland, OR 97035" -254246,34in Ultrawide Monitor,1,379.99,09/21/19 14:19,"332 Center St, Boston, MA 02215" -254247,27in FHD Monitor,1,149.99,09/12/19 20:03,"397 Main St, Dallas, TX 75001" -254248,AAA Batteries (4-pack),1,2.99,09/21/19 00:25,"562 14th St, Los Angeles, CA 90001" -254249,AA Batteries (4-pack),1,3.84,09/16/19 12:54,"543 Center St, San Francisco, CA 94016" -254250,Lightning Charging Cable,1,14.95,09/06/19 21:50,"502 North St, Los Angeles, CA 90001" -254251,Bose SoundSport Headphones,1,99.99,09/20/19 14:33,"57 Lincoln St, San Francisco, CA 94016" -254252,iPhone,1,700,09/11/19 00:00,"364 Jefferson St, Los Angeles, CA 90001" -254253,27in FHD Monitor,1,149.99,09/06/19 12:53,"404 9th St, San Francisco, CA 94016" -254254,AAA Batteries (4-pack),1,2.99,09/20/19 20:42,"624 9th St, Portland, ME 04101" -254255,34in Ultrawide Monitor,1,379.99,09/11/19 21:53,"53 Willow St, Dallas, TX 75001" -254256,USB-C Charging Cable,1,11.95,09/02/19 14:15,"402 Jackson St, New York City, NY 10001" -254257,AAA Batteries (4-pack),2,2.99,09/06/19 15:58,"72 Cedar St, San Francisco, CA 94016" -254258,iPhone,1,700,09/09/19 21:21,"48 Church St, Boston, MA 02215" -254258,Lightning Charging Cable,1,14.95,09/09/19 21:21,"48 Church St, Boston, MA 02215" -254259,Lightning Charging Cable,1,14.95,09/13/19 11:58,"919 Lincoln St, Los Angeles, CA 90001" -254260,LG Washing Machine,1,600.0,09/06/19 19:23,"562 Cherry St, Los Angeles, CA 90001" -254261,USB-C Charging Cable,1,11.95,09/16/19 13:57,"193 12th St, Austin, TX 73301" -254262,AA Batteries (4-pack),1,3.84,09/03/19 10:30,"644 River St, Los Angeles, CA 90001" -254263,34in Ultrawide Monitor,1,379.99,09/12/19 22:42,"491 10th St, Los Angeles, CA 90001" -254264,AA Batteries (4-pack),2,3.84,09/10/19 12:50,"810 Park St, Austin, TX 73301" -254265,AAA Batteries (4-pack),1,2.99,09/09/19 11:41,"903 River St, Los Angeles, CA 90001" -254266,Bose SoundSport Headphones,1,99.99,09/15/19 18:36,"549 Forest St, New York City, NY 10001" -254267,USB-C Charging Cable,1,11.95,09/24/19 13:08,"913 Lake St, Atlanta, GA 30301" -254268,Google Phone,1,600,09/22/19 16:47,"769 Church St, New York City, NY 10001" -254269,Wired Headphones,1,11.99,09/17/19 13:58,"952 Lake St, San Francisco, CA 94016" -254270,27in FHD Monitor,1,149.99,09/05/19 17:28,"252 10th St, Portland, OR 97035" -254271,Google Phone,1,600,09/15/19 22:11,"21 Elm St, New York City, NY 10001" -254272,27in FHD Monitor,1,149.99,09/18/19 01:28,"551 Maple St, San Francisco, CA 94016" -254272,USB-C Charging Cable,1,11.95,09/18/19 01:28,"551 Maple St, San Francisco, CA 94016" -254273,AA Batteries (4-pack),1,3.84,09/02/19 06:35,"357 Sunset St, Atlanta, GA 30301" -254274,LG Washing Machine,1,600.0,09/15/19 20:55,"648 Pine St, New York City, NY 10001" -254275,USB-C Charging Cable,1,11.95,09/11/19 06:50,"798 Chestnut St, New York City, NY 10001" -254276,Lightning Charging Cable,1,14.95,09/11/19 22:46,"317 14th St, San Francisco, CA 94016" -254277,iPhone,1,700,09/25/19 17:34,"469 Hickory St, San Francisco, CA 94016" -254277,Wired Headphones,1,11.99,09/25/19 17:34,"469 Hickory St, San Francisco, CA 94016" -254278,34in Ultrawide Monitor,1,379.99,09/03/19 21:54,"249 7th St, Austin, TX 73301" -254279,Google Phone,1,600,09/30/19 19:59,"950 North St, Los Angeles, CA 90001" -254280,Apple Airpods Headphones,1,150,09/24/19 15:11,"42 Johnson St, Dallas, TX 75001" -254281,Bose SoundSport Headphones,1,99.99,09/10/19 15:24,"496 Lake St, San Francisco, CA 94016" -254282,Lightning Charging Cable,1,14.95,09/07/19 11:34,"811 Maple St, New York City, NY 10001" -254283,USB-C Charging Cable,1,11.95,09/04/19 13:29,"687 7th St, New York City, NY 10001" -254284,AAA Batteries (4-pack),2,2.99,09/02/19 22:11,"573 11th St, Dallas, TX 75001" -254285,AAA Batteries (4-pack),2,2.99,09/19/19 12:40,"769 River St, Austin, TX 73301" -254286,iPhone,1,700,09/13/19 12:28,"951 Sunset St, Los Angeles, CA 90001" -254287,AA Batteries (4-pack),1,3.84,09/17/19 11:45,"936 Elm St, New York City, NY 10001" -254288,Google Phone,1,600,09/20/19 19:39,"110 8th St, Atlanta, GA 30301" -254289,34in Ultrawide Monitor,1,379.99,09/01/19 16:39,"132 Forest St, New York City, NY 10001" -254290,AAA Batteries (4-pack),1,2.99,09/08/19 10:10,"670 Washington St, Austin, TX 73301" -254291,Lightning Charging Cable,1,14.95,09/15/19 21:36,"70 Willow St, New York City, NY 10001" -254292,USB-C Charging Cable,1,11.95,09/26/19 17:55,"299 7th St, Seattle, WA 98101" -254293,USB-C Charging Cable,1,11.95,09/20/19 17:54,"289 Ridge St, Boston, MA 02215" -254294,Macbook Pro Laptop,1,1700,09/10/19 00:49,"367 Chestnut St, Boston, MA 02215" -254295,Bose SoundSport Headphones,1,99.99,09/28/19 04:12,"525 Cedar St, New York City, NY 10001" -254296,Bose SoundSport Headphones,1,99.99,09/26/19 11:06,"774 Wilson St, San Francisco, CA 94016" -254297,Lightning Charging Cable,1,14.95,09/29/19 20:20,"56 Hickory St, Dallas, TX 75001" -254298,Wired Headphones,1,11.99,09/28/19 19:43,"281 12th St, San Francisco, CA 94016" -254299,AA Batteries (4-pack),1,3.84,09/27/19 08:36,"119 Forest St, Los Angeles, CA 90001" -254300,AA Batteries (4-pack),1,3.84,09/04/19 19:44,"278 4th St, San Francisco, CA 94016" -254300,USB-C Charging Cable,1,11.95,09/04/19 19:44,"278 4th St, San Francisco, CA 94016" -254301,Google Phone,1,600,09/17/19 17:47,"506 Willow St, San Francisco, CA 94016" -254302,AAA Batteries (4-pack),1,2.99,09/29/19 06:25,"6 Madison St, Atlanta, GA 30301" -254303,Lightning Charging Cable,1,14.95,09/09/19 10:36,"272 Park St, New York City, NY 10001" -254304,AAA Batteries (4-pack),2,2.99,09/24/19 17:47,"380 1st St, New York City, NY 10001" -254305,Bose SoundSport Headphones,1,99.99,09/26/19 00:37,"8 South St, San Francisco, CA 94016" -254306,iPhone,1,700,09/30/19 23:53,"509 6th St, San Francisco, CA 94016" -254306,Apple Airpods Headphones,1,150,09/30/19 23:53,"509 6th St, San Francisco, CA 94016" -254307,Apple Airpods Headphones,1,150,09/06/19 12:29,"755 14th St, Dallas, TX 75001" -254308,Lightning Charging Cable,1,14.95,09/07/19 19:33,"637 Johnson St, Los Angeles, CA 90001" -254309,Vareebadd Phone,1,400,09/21/19 13:58,"854 6th St, Seattle, WA 98101" -254310,Bose SoundSport Headphones,1,99.99,09/12/19 15:35,"307 Ridge St, Los Angeles, CA 90001" -254311,iPhone,1,700,09/09/19 18:49,"907 6th St, San Francisco, CA 94016" -254312,Bose SoundSport Headphones,1,99.99,09/01/19 12:51,"857 11th St, San Francisco, CA 94016" -254313,27in 4K Gaming Monitor,1,389.99,09/29/19 19:44,"143 Park St, Dallas, TX 75001" -254314,27in 4K Gaming Monitor,1,389.99,09/15/19 14:29,"906 5th St, Portland, OR 97035" -254315,27in FHD Monitor,1,149.99,09/04/19 14:57,"950 Park St, New York City, NY 10001" -254316,Lightning Charging Cable,1,14.95,09/08/19 12:39,"635 Hickory St, San Francisco, CA 94016" -254317,Google Phone,1,600,09/29/19 10:44,"679 8th St, Austin, TX 73301" -254318,Apple Airpods Headphones,1,150,09/23/19 07:07,"261 4th St, Portland, OR 97035" -254319,Flatscreen TV,1,300,09/11/19 05:56,"49 Meadow St, Seattle, WA 98101" -254320,AAA Batteries (4-pack),1,2.99,09/17/19 19:48,"464 8th St, San Francisco, CA 94016" -254321,27in FHD Monitor,1,149.99,09/17/19 13:45,"974 Dogwood St, San Francisco, CA 94016" -254322,34in Ultrawide Monitor,1,379.99,09/22/19 13:48,"526 5th St, Seattle, WA 98101" -254323,ThinkPad Laptop,1,999.99,09/10/19 11:37,"444 Ridge St, San Francisco, CA 94016" -254324,AA Batteries (4-pack),1,3.84,09/06/19 00:23,"66 Elm St, New York City, NY 10001" -254325,USB-C Charging Cable,1,11.95,09/05/19 13:35,"172 11th St, Dallas, TX 75001" -254326,Lightning Charging Cable,1,14.95,09/23/19 12:09,"134 8th St, Portland, ME 04101" -254327,Wired Headphones,1,11.99,09/25/19 23:31,"415 10th St, Austin, TX 73301" -254328,27in 4K Gaming Monitor,1,389.99,09/21/19 16:30,"841 Johnson St, Boston, MA 02215" -254329,Wired Headphones,1,11.99,09/13/19 13:28,"396 Church St, San Francisco, CA 94016" -254330,USB-C Charging Cable,1,11.95,09/28/19 20:52,"487 Hill St, Portland, OR 97035" -254331,34in Ultrawide Monitor,1,379.99,09/22/19 19:02,"591 Johnson St, Dallas, TX 75001" -254332,Wired Headphones,1,11.99,09/10/19 10:27,"284 Forest St, Austin, TX 73301" -254333,Lightning Charging Cable,1,14.95,09/11/19 09:56,"929 Sunset St, Austin, TX 73301" -254334,27in FHD Monitor,1,149.99,09/01/19 22:01,"569 South St, Dallas, TX 75001" -254335,USB-C Charging Cable,1,11.95,09/15/19 21:29,"533 Chestnut St, San Francisco, CA 94016" -254336,USB-C Charging Cable,1,11.95,09/23/19 12:16,"69 11th St, San Francisco, CA 94016" -254337,AAA Batteries (4-pack),1,2.99,09/11/19 23:00,"577 River St, San Francisco, CA 94016" -254338,AA Batteries (4-pack),2,3.84,09/14/19 23:01,"442 Sunset St, Dallas, TX 75001" -254339,AA Batteries (4-pack),1,3.84,09/25/19 14:17,"426 4th St, Boston, MA 02215" -254340,Flatscreen TV,1,300,09/01/19 16:07,"347 Hill St, Portland, ME 04101" -254341,20in Monitor,1,109.99,09/11/19 09:16,"821 5th St, Los Angeles, CA 90001" -254342,Bose SoundSport Headphones,1,99.99,09/28/19 20:55,"576 Sunset St, San Francisco, CA 94016" -254343,AA Batteries (4-pack),1,3.84,09/08/19 13:25,"260 River St, New York City, NY 10001" -254344,AA Batteries (4-pack),1,3.84,09/27/19 18:37,"705 Main St, Boston, MA 02215" -254345,Lightning Charging Cable,1,14.95,09/11/19 22:02,"311 Sunset St, Atlanta, GA 30301" -254346,AAA Batteries (4-pack),1,2.99,09/28/19 05:06,"83 North St, Boston, MA 02215" -254347,Wired Headphones,1,11.99,09/25/19 12:43,"690 Maple St, New York City, NY 10001" -254348,27in 4K Gaming Monitor,1,389.99,09/24/19 09:48,"368 Walnut St, Atlanta, GA 30301" -254348,Apple Airpods Headphones,1,150,09/24/19 09:48,"368 Walnut St, Atlanta, GA 30301" -254349,34in Ultrawide Monitor,1,379.99,09/07/19 14:48,"26 West St, Austin, TX 73301" -254350,Wired Headphones,2,11.99,09/21/19 12:01,"943 Lakeview St, San Francisco, CA 94016" -254351,Wired Headphones,1,11.99,09/20/19 11:22,"595 Lakeview St, Boston, MA 02215" -254352,Apple Airpods Headphones,1,150,09/16/19 08:54,"854 Wilson St, New York City, NY 10001" -254353,34in Ultrawide Monitor,1,379.99,09/15/19 12:01,"269 Spruce St, Seattle, WA 98101" -254354,34in Ultrawide Monitor,1,379.99,09/12/19 12:21,"250 4th St, Boston, MA 02215" -254355,USB-C Charging Cable,2,11.95,09/27/19 07:47,"372 Sunset St, Dallas, TX 75001" -254356,Apple Airpods Headphones,1,150,09/23/19 22:22,"400 Highland St, Austin, TX 73301" -254357,USB-C Charging Cable,1,11.95,09/13/19 13:25,"303 Park St, San Francisco, CA 94016" -254358,AAA Batteries (4-pack),1,2.99,09/07/19 21:52,"754 River St, San Francisco, CA 94016" -254359,USB-C Charging Cable,1,11.95,09/02/19 19:27,"818 Ridge St, San Francisco, CA 94016" -254360,AAA Batteries (4-pack),3,2.99,09/02/19 11:01,"962 10th St, Boston, MA 02215" -254361,20in Monitor,1,109.99,09/21/19 18:16,"668 Main St, San Francisco, CA 94016" -254361,USB-C Charging Cable,1,11.95,09/21/19 18:16,"668 Main St, San Francisco, CA 94016" -254362,Bose SoundSport Headphones,1,99.99,09/25/19 14:44,"847 Cherry St, Los Angeles, CA 90001" -254363,Apple Airpods Headphones,1,150,09/12/19 19:06,"694 Madison St, Austin, TX 73301" -254364,AA Batteries (4-pack),2,3.84,09/11/19 10:47,"58 Sunset St, Los Angeles, CA 90001" -254365,27in FHD Monitor,1,149.99,09/25/19 00:35,"819 Willow St, Los Angeles, CA 90001" -254366,USB-C Charging Cable,1,11.95,09/19/19 20:19,"332 12th St, San Francisco, CA 94016" -254367,27in FHD Monitor,1,149.99,09/30/19 19:11,"397 Church St, San Francisco, CA 94016" -254368,Bose SoundSport Headphones,1,99.99,09/23/19 15:52,"971 4th St, Seattle, WA 98101" -254369,AAA Batteries (4-pack),1,2.99,09/17/19 19:32,"823 Hill St, New York City, NY 10001" -254370,AAA Batteries (4-pack),1,2.99,09/14/19 20:30,"285 Willow St, Dallas, TX 75001" -254371,Vareebadd Phone,1,400,09/04/19 12:36,"655 Walnut St, San Francisco, CA 94016" -254371,Wired Headphones,1,11.99,09/04/19 12:36,"655 Walnut St, San Francisco, CA 94016" -254372,27in 4K Gaming Monitor,1,389.99,09/10/19 10:04,"698 Center St, Los Angeles, CA 90001" -254373,Wired Headphones,1,11.99,09/14/19 16:20,"813 Wilson St, Los Angeles, CA 90001" -254374,Flatscreen TV,1,300,09/06/19 16:15,"348 4th St, San Francisco, CA 94016" -254375,AAA Batteries (4-pack),1,2.99,09/26/19 20:39,"488 Meadow St, San Francisco, CA 94016" -254376,iPhone,1,700,09/24/19 18:27,"484 10th St, Los Angeles, CA 90001" -254377,AAA Batteries (4-pack),1,2.99,09/30/19 13:17,"90 11th St, Los Angeles, CA 90001" -254378,Bose SoundSport Headphones,1,99.99,09/09/19 15:41,"358 Spruce St, Atlanta, GA 30301" -254379,Lightning Charging Cable,1,14.95,09/22/19 15:11,"303 1st St, New York City, NY 10001" -254380,Flatscreen TV,1,300,09/01/19 21:55,"40 Ridge St, San Francisco, CA 94016" -254381,Flatscreen TV,1,300,09/17/19 12:38,"209 10th St, Boston, MA 02215" -254382,Apple Airpods Headphones,1,150,09/15/19 19:10,"689 Spruce St, Los Angeles, CA 90001" -254383,27in FHD Monitor,1,149.99,09/30/19 07:58,"914 Pine St, Boston, MA 02215" -254384,20in Monitor,1,109.99,09/25/19 10:56,"316 Cherry St, Los Angeles, CA 90001" -254385,Google Phone,1,600,09/18/19 11:43,"163 Wilson St, New York City, NY 10001" -254386,20in Monitor,1,109.99,09/13/19 10:03,"956 Sunset St, Seattle, WA 98101" -254386,Lightning Charging Cable,1,14.95,09/13/19 10:03,"956 Sunset St, Seattle, WA 98101" -254387,AAA Batteries (4-pack),1,2.99,09/09/19 12:24,"156 1st St, New York City, NY 10001" -254388,ThinkPad Laptop,1,999.99,09/23/19 16:46,"202 Willow St, Boston, MA 02215" -254389,27in FHD Monitor,1,149.99,09/16/19 20:01,"424 Jackson St, San Francisco, CA 94016" -254390,Lightning Charging Cable,1,14.95,09/10/19 11:47,"66 7th St, San Francisco, CA 94016" -254391,AAA Batteries (4-pack),1,2.99,09/20/19 10:33,"724 Ridge St, San Francisco, CA 94016" -254392,20in Monitor,1,109.99,09/04/19 19:44,"840 6th St, Seattle, WA 98101" -254393,Google Phone,1,600,09/14/19 07:42,"775 River St, San Francisco, CA 94016" -254394,Lightning Charging Cable,1,14.95,09/14/19 23:42,"500 Hickory St, Seattle, WA 98101" -254395,AAA Batteries (4-pack),2,2.99,09/27/19 16:43,"852 Forest St, Boston, MA 02215" -254396,Wired Headphones,2,11.99,09/27/19 14:18,"696 Meadow St, Los Angeles, CA 90001" -254397,AA Batteries (4-pack),1,3.84,09/01/19 23:59,"243 Hill St, Los Angeles, CA 90001" -254398,AA Batteries (4-pack),1,3.84,09/23/19 19:53,"959 Walnut St, Boston, MA 02215" -254399,Lightning Charging Cable,1,14.95,09/21/19 17:44,"325 4th St, San Francisco, CA 94016" -254400,AAA Batteries (4-pack),3,2.99,09/08/19 21:22,"610 Meadow St, Boston, MA 02215" -254401,27in 4K Gaming Monitor,1,389.99,09/20/19 16:36,"738 North St, New York City, NY 10001" -254402,Macbook Pro Laptop,1,1700,09/14/19 18:19,"584 Elm St, New York City, NY 10001" -254403,Lightning Charging Cable,1,14.95,09/21/19 17:44,"853 Spruce St, Boston, MA 02215" -254404,Bose SoundSport Headphones,1,99.99,09/18/19 13:51,"248 13th St, San Francisco, CA 94016" -254405,Apple Airpods Headphones,1,150,09/25/19 13:51,"419 Wilson St, Los Angeles, CA 90001" -254406,Apple Airpods Headphones,1,150,09/25/19 19:20,"541 12th St, San Francisco, CA 94016" -254407,34in Ultrawide Monitor,1,379.99,09/19/19 10:36,"468 Wilson St, Los Angeles, CA 90001" -254408,34in Ultrawide Monitor,1,379.99,09/05/19 23:18,"88 Willow St, San Francisco, CA 94016" -254409,USB-C Charging Cable,1,11.95,09/21/19 21:05,"528 Hickory St, San Francisco, CA 94016" -254410,AAA Batteries (4-pack),1,2.99,09/16/19 17:39,"708 13th St, New York City, NY 10001" -254411,34in Ultrawide Monitor,1,379.99,09/05/19 16:15,"602 12th St, Dallas, TX 75001" -254412,Lightning Charging Cable,2,14.95,09/07/19 14:16,"791 Cedar St, Atlanta, GA 30301" -254413,Lightning Charging Cable,1,14.95,09/07/19 18:15,"438 Church St, Boston, MA 02215" -254414,AA Batteries (4-pack),1,3.84,09/29/19 09:04,"235 4th St, New York City, NY 10001" -254415,ThinkPad Laptop,1,999.99,09/20/19 21:05,"999 Washington St, Los Angeles, CA 90001" -254416,iPhone,1,700,09/19/19 14:19,"529 Main St, New York City, NY 10001" -254417,AAA Batteries (4-pack),1,2.99,09/12/19 10:43,"906 Lake St, New York City, NY 10001" -254418,27in FHD Monitor,1,149.99,09/13/19 19:05,"954 Lakeview St, Austin, TX 73301" -254419,AA Batteries (4-pack),1,3.84,09/28/19 14:20,"111 Spruce St, New York City, NY 10001" -254420,27in 4K Gaming Monitor,1,389.99,09/30/19 14:52,"229 Cherry St, Boston, MA 02215" -254421,Apple Airpods Headphones,1,150,09/08/19 14:11,"424 Wilson St, Atlanta, GA 30301" -254422,Wired Headphones,1,11.99,09/14/19 20:02,"608 Washington St, Dallas, TX 75001" -254423,USB-C Charging Cable,1,11.95,09/05/19 16:09,"621 Elm St, Austin, TX 73301" -254424,Apple Airpods Headphones,1,150,09/06/19 14:40,"57 Walnut St, Austin, TX 73301" -254425,Lightning Charging Cable,1,14.95,09/18/19 22:30,"497 Cherry St, New York City, NY 10001" -254426,Lightning Charging Cable,1,14.95,09/10/19 14:06,"705 South St, Los Angeles, CA 90001" -254427,USB-C Charging Cable,2,11.95,09/15/19 10:22,"434 Park St, Austin, TX 73301" -254428,USB-C Charging Cable,2,11.95,09/16/19 16:40,"77 Hill St, San Francisco, CA 94016" -254429,ThinkPad Laptop,1,999.99,09/02/19 15:21,"488 Church St, Los Angeles, CA 90001" -254430,AA Batteries (4-pack),1,3.84,09/09/19 09:34,"24 River St, San Francisco, CA 94016" -254431,Lightning Charging Cable,1,14.95,09/29/19 13:42,"957 8th St, Los Angeles, CA 90001" -254432,Lightning Charging Cable,1,14.95,09/18/19 22:23,"329 Elm St, Los Angeles, CA 90001" -254433,27in FHD Monitor,1,149.99,09/01/19 21:17,"244 Adams St, Austin, TX 73301" -254434,Lightning Charging Cable,1,14.95,09/13/19 10:53,"255 Lincoln St, Portland, OR 97035" -254435,Bose SoundSport Headphones,1,99.99,09/01/19 18:08,"368 Highland St, San Francisco, CA 94016" -254435,Flatscreen TV,1,300,09/01/19 18:08,"368 Highland St, San Francisco, CA 94016" -254436,AAA Batteries (4-pack),1,2.99,09/11/19 23:17,"724 Madison St, San Francisco, CA 94016" -254437,Lightning Charging Cable,1,14.95,09/23/19 09:28,"351 Hill St, Boston, MA 02215" -254438,27in 4K Gaming Monitor,1,389.99,09/14/19 16:08,"449 Willow St, Atlanta, GA 30301" -254439,AAA Batteries (4-pack),1,2.99,09/10/19 14:14,"363 Willow St, San Francisco, CA 94016" -254440,AA Batteries (4-pack),2,3.84,09/16/19 17:25,"173 Madison St, San Francisco, CA 94016" -254441,Apple Airpods Headphones,1,150,09/10/19 09:47,"519 2nd St, New York City, NY 10001" -254442,ThinkPad Laptop,1,999.99,09/26/19 20:54,"801 1st St, San Francisco, CA 94016" -254443,Wired Headphones,1,11.99,09/01/19 11:26,"299 Chestnut St, San Francisco, CA 94016" -254444,USB-C Charging Cable,1,11.95,09/11/19 15:24,"217 Lake St, New York City, NY 10001" -254445,USB-C Charging Cable,1,11.95,09/21/19 00:10,"723 Cherry St, San Francisco, CA 94016" -254446,Bose SoundSport Headphones,1,99.99,09/25/19 16:21,"90 Meadow St, Los Angeles, CA 90001" -254447,Bose SoundSport Headphones,1,99.99,09/24/19 20:20,"982 Chestnut St, Portland, OR 97035" -254448,iPhone,1,700,09/30/19 16:05,"949 12th St, San Francisco, CA 94016" -254449,AAA Batteries (4-pack),2,2.99,09/29/19 18:09,"447 12th St, Atlanta, GA 30301" -254450,AA Batteries (4-pack),2,3.84,09/17/19 13:19,"500 Madison St, New York City, NY 10001" -254451,Lightning Charging Cable,1,14.95,09/30/19 10:06,"791 Chestnut St, Boston, MA 02215" -254452,AAA Batteries (4-pack),1,2.99,09/06/19 16:56,"147 Meadow St, San Francisco, CA 94016" -254453,Bose SoundSport Headphones,1,99.99,09/16/19 13:41,"189 West St, Atlanta, GA 30301" -254454,AA Batteries (4-pack),1,3.84,09/18/19 08:15,"296 2nd St, Los Angeles, CA 90001" -254455,ThinkPad Laptop,1,999.99,09/15/19 17:39,"585 Sunset St, New York City, NY 10001" -254455,Bose SoundSport Headphones,1,99.99,09/15/19 17:39,"585 Sunset St, New York City, NY 10001" -254456,Google Phone,1,600,09/21/19 22:42,"880 8th St, Los Angeles, CA 90001" -254457,Lightning Charging Cable,1,14.95,09/25/19 23:24,"677 Main St, Austin, TX 73301" -254458,Macbook Pro Laptop,1,1700,09/03/19 19:10,"607 Elm St, Los Angeles, CA 90001" -254459,ThinkPad Laptop,1,999.99,09/29/19 19:55,"105 Center St, Los Angeles, CA 90001" -254460,iPhone,1,700,09/26/19 11:32,"208 Lincoln St, Los Angeles, CA 90001" -254461,USB-C Charging Cable,1,11.95,09/01/19 13:51,"904 North St, Seattle, WA 98101" -254462,USB-C Charging Cable,1,11.95,09/16/19 13:59,"95 8th St, San Francisco, CA 94016" -254463,AAA Batteries (4-pack),1,2.99,09/10/19 23:28,"418 14th St, San Francisco, CA 94016" -254464,Wired Headphones,1,11.99,09/01/19 22:26,"181 Lakeview St, Boston, MA 02215" -254465,AAA Batteries (4-pack),1,2.99,09/12/19 20:56,"27 Lake St, San Francisco, CA 94016" -254466,Lightning Charging Cable,1,14.95,09/21/19 07:55,"767 Highland St, Los Angeles, CA 90001" -254467,AAA Batteries (4-pack),2,2.99,09/23/19 15:51,"752 Jackson St, Dallas, TX 75001" -254468,AA Batteries (4-pack),1,3.84,09/30/19 15:46,"195 4th St, Seattle, WA 98101" -254469,AA Batteries (4-pack),1,3.84,09/22/19 11:58,"782 Church St, Los Angeles, CA 90001" -254470,Bose SoundSport Headphones,1,99.99,09/07/19 06:32,"575 5th St, New York City, NY 10001" -254471,AA Batteries (4-pack),1,3.84,09/06/19 23:18,"801 Sunset St, San Francisco, CA 94016" -254472,Wired Headphones,1,11.99,09/12/19 21:15,"1 Elm St, San Francisco, CA 94016" -254473,Wired Headphones,1,11.99,09/27/19 19:25,"265 Willow St, Los Angeles, CA 90001" -254474,AA Batteries (4-pack),2,3.84,09/13/19 19:11,"822 West St, San Francisco, CA 94016" -254475,USB-C Charging Cable,1,11.95,09/18/19 21:00,"272 4th St, San Francisco, CA 94016" -254476,AA Batteries (4-pack),1,3.84,09/14/19 13:27,"374 4th St, Los Angeles, CA 90001" -254477,iPhone,2,700,09/12/19 12:15,"627 Sunset St, Boston, MA 02215" -254478,Bose SoundSport Headphones,1,99.99,09/21/19 19:37,"613 Spruce St, New York City, NY 10001" -254479,AA Batteries (4-pack),2,3.84,09/26/19 15:45,"11 Cedar St, Atlanta, GA 30301" -254480,Google Phone,1,600,09/24/19 17:57,"933 River St, Los Angeles, CA 90001" -254481,Wired Headphones,2,11.99,09/04/19 11:06,"48 Ridge St, Austin, TX 73301" -254482,AAA Batteries (4-pack),1,2.99,09/18/19 23:30,"400 Ridge St, Dallas, TX 75001" -254483,Lightning Charging Cable,1,14.95,09/28/19 22:22,"163 Spruce St, Atlanta, GA 30301" -254484,Bose SoundSport Headphones,1,99.99,09/27/19 22:35,"441 Ridge St, Seattle, WA 98101" -254485,Lightning Charging Cable,1,14.95,09/30/19 20:49,"119 Willow St, New York City, NY 10001" -254486,Lightning Charging Cable,1,14.95,09/20/19 10:39,"73 Center St, Portland, OR 97035" -254487,USB-C Charging Cable,1,11.95,09/12/19 18:03,"805 Adams St, San Francisco, CA 94016" -254488,20in Monitor,1,109.99,09/09/19 12:32,"735 9th St, Dallas, TX 75001" -254489,USB-C Charging Cable,1,11.95,09/28/19 09:18,"934 Cedar St, Los Angeles, CA 90001" -254489,AAA Batteries (4-pack),1,2.99,09/28/19 09:18,"934 Cedar St, Los Angeles, CA 90001" -254490,Macbook Pro Laptop,1,1700,09/25/19 13:10,"978 14th St, New York City, NY 10001" -254491,Google Phone,1,600,09/19/19 10:38,"826 Chestnut St, Dallas, TX 75001" -254492,Apple Airpods Headphones,1,150,09/18/19 14:55,"721 Lincoln St, San Francisco, CA 94016" -254493,Bose SoundSport Headphones,1,99.99,09/04/19 19:29,"958 Dogwood St, San Francisco, CA 94016" -254494,AAA Batteries (4-pack),1,2.99,09/14/19 10:39,"894 11th St, Boston, MA 02215" -254495,27in FHD Monitor,1,149.99,09/29/19 09:54,"774 Chestnut St, Boston, MA 02215" -254496,Apple Airpods Headphones,1,150,09/22/19 17:33,"678 Park St, San Francisco, CA 94016" -254497,AA Batteries (4-pack),1,3.84,09/04/19 16:33,"213 Elm St, San Francisco, CA 94016" -254498,USB-C Charging Cable,1,11.95,09/09/19 18:59,"22 Sunset St, Los Angeles, CA 90001" -254499,USB-C Charging Cable,1,11.95,09/12/19 15:31,"754 9th St, San Francisco, CA 94016" -254500,USB-C Charging Cable,1,11.95,09/02/19 07:18,"573 Walnut St, New York City, NY 10001" -254501,Bose SoundSport Headphones,1,99.99,09/08/19 12:12,"914 7th St, San Francisco, CA 94016" -254502,AAA Batteries (4-pack),1,2.99,09/23/19 19:27,"406 4th St, New York City, NY 10001" -254503,Wired Headphones,1,11.99,09/21/19 12:07,"194 Willow St, Dallas, TX 75001" -254504,Macbook Pro Laptop,1,1700,09/25/19 16:00,"49 7th St, Los Angeles, CA 90001" -254505,iPhone,1,700,09/18/19 18:09,"423 Maple St, Atlanta, GA 30301" -254506,AA Batteries (4-pack),2,3.84,09/06/19 14:38,"865 Hill St, New York City, NY 10001" -254507,Lightning Charging Cable,1,14.95,09/07/19 18:48,"790 Lake St, San Francisco, CA 94016" -254508,AAA Batteries (4-pack),1,2.99,09/22/19 13:05,"793 Washington St, Seattle, WA 98101" -254509,AA Batteries (4-pack),1,3.84,09/14/19 17:30,"593 Meadow St, Atlanta, GA 30301" -254510,Apple Airpods Headphones,1,150,09/04/19 05:49,"251 Church St, San Francisco, CA 94016" -254511,Apple Airpods Headphones,1,150,09/14/19 23:27,"520 Meadow St, Austin, TX 73301" -254512,USB-C Charging Cable,1,11.95,09/11/19 12:12,"546 Dogwood St, Boston, MA 02215" -254513,Macbook Pro Laptop,1,1700,09/08/19 20:00,"723 Lake St, Boston, MA 02215" -254514,Wired Headphones,1,11.99,09/09/19 12:37,"247 1st St, New York City, NY 10001" -254515,Bose SoundSport Headphones,1,99.99,09/17/19 16:56,"261 Cherry St, San Francisco, CA 94016" -254516,AA Batteries (4-pack),1,3.84,09/23/19 22:12,"325 Center St, Portland, ME 04101" -254517,AA Batteries (4-pack),1,3.84,09/27/19 14:23,"724 5th St, Austin, TX 73301" -254518,AAA Batteries (4-pack),2,2.99,09/05/19 11:10,"852 Madison St, Portland, OR 97035" -254519,34in Ultrawide Monitor,1,379.99,09/04/19 06:53,"488 Church St, Boston, MA 02215" -254520,AAA Batteries (4-pack),1,2.99,09/22/19 18:55,"494 9th St, San Francisco, CA 94016" -254521,AA Batteries (4-pack),1,3.84,09/29/19 18:02,"850 Chestnut St, Dallas, TX 75001" -254522,ThinkPad Laptop,1,999.99,09/26/19 09:43,"596 Lincoln St, New York City, NY 10001" -254523,Lightning Charging Cable,1,14.95,09/10/19 18:37,"259 11th St, San Francisco, CA 94016" -254524,AAA Batteries (4-pack),1,2.99,09/26/19 10:47,"935 Washington St, Boston, MA 02215" -254525,27in FHD Monitor,1,149.99,09/02/19 19:35,"585 11th St, Portland, OR 97035" -254526,USB-C Charging Cable,1,11.95,09/29/19 19:57,"626 6th St, Los Angeles, CA 90001" -254527,34in Ultrawide Monitor,1,379.99,09/28/19 05:27,"421 Ridge St, New York City, NY 10001" -254528,AAA Batteries (4-pack),2,2.99,09/14/19 10:55,"142 Pine St, Seattle, WA 98101" -254529,AAA Batteries (4-pack),1,2.99,09/16/19 12:07,"517 Lincoln St, Seattle, WA 98101" -254530,USB-C Charging Cable,1,11.95,09/25/19 23:07,"735 Madison St, Los Angeles, CA 90001" -254531,LG Washing Machine,1,600.0,09/10/19 10:05,"448 Elm St, New York City, NY 10001" -254532,34in Ultrawide Monitor,1,379.99,09/25/19 20:44,"252 Spruce St, Dallas, TX 75001" -254533,Apple Airpods Headphones,1,150,09/16/19 23:24,"740 Jefferson St, Seattle, WA 98101" -254534,Wired Headphones,1,11.99,09/19/19 11:42,"686 Sunset St, Portland, OR 97035" -254535,Apple Airpods Headphones,1,150,09/24/19 19:40,"643 North St, San Francisco, CA 94016" -254536,27in FHD Monitor,2,149.99,09/28/19 00:20,"195 6th St, Boston, MA 02215" -254537,Wired Headphones,1,11.99,09/26/19 06:08,"252 Wilson St, San Francisco, CA 94016" -254538,AA Batteries (4-pack),1,3.84,09/15/19 08:32,"151 6th St, San Francisco, CA 94016" -254539,USB-C Charging Cable,2,11.95,09/15/19 19:06,"37 Main St, Atlanta, GA 30301" -254540,Apple Airpods Headphones,1,150,09/28/19 12:41,"871 Lakeview St, San Francisco, CA 94016" -254541,Lightning Charging Cable,1,14.95,09/11/19 14:34,"876 Ridge St, San Francisco, CA 94016" -254542,ThinkPad Laptop,1,999.99,09/14/19 08:43,"481 Johnson St, Los Angeles, CA 90001" -254543,Lightning Charging Cable,1,14.95,09/21/19 09:04,"374 13th St, Austin, TX 73301" -254544,AAA Batteries (4-pack),2,2.99,09/14/19 14:13,"728 Forest St, San Francisco, CA 94016" -254545,Apple Airpods Headphones,1,150,09/06/19 19:47,"403 Main St, Boston, MA 02215" -254546,27in 4K Gaming Monitor,1,389.99,09/28/19 13:56,"935 Jefferson St, San Francisco, CA 94016" -254547,Wired Headphones,1,11.99,09/23/19 09:37,"953 Hill St, San Francisco, CA 94016" -254548,Wired Headphones,1,11.99,09/11/19 07:55,"937 14th St, Dallas, TX 75001" -254549,AAA Batteries (4-pack),2,2.99,09/28/19 11:01,"169 6th St, Seattle, WA 98101" -254550,Lightning Charging Cable,1,14.95,09/06/19 14:54,"171 Hickory St, San Francisco, CA 94016" -254551,Wired Headphones,1,11.99,09/28/19 19:06,"900 Hickory St, Austin, TX 73301" -254552,USB-C Charging Cable,1,11.95,09/23/19 11:52,"411 11th St, Dallas, TX 75001" -254553,Apple Airpods Headphones,1,150,09/15/19 20:42,"688 Jefferson St, New York City, NY 10001" -254554,Google Phone,1,600,09/25/19 17:28,"462 Willow St, San Francisco, CA 94016" -254554,Bose SoundSport Headphones,1,99.99,09/25/19 17:28,"462 Willow St, San Francisco, CA 94016" -254555,20in Monitor,1,109.99,09/18/19 05:39,"722 Chestnut St, San Francisco, CA 94016" -254556,Lightning Charging Cable,1,14.95,09/17/19 20:03,"625 Walnut St, Atlanta, GA 30301" -254557,Apple Airpods Headphones,1,150,09/27/19 18:14,"53 Adams St, Los Angeles, CA 90001" -254558,Flatscreen TV,1,300,09/09/19 22:22,"866 8th St, New York City, NY 10001" -254559,USB-C Charging Cable,1,11.95,09/13/19 11:42,"409 River St, New York City, NY 10001" -254560,Lightning Charging Cable,1,14.95,09/10/19 16:18,"549 Chestnut St, Los Angeles, CA 90001" -254561,27in 4K Gaming Monitor,1,389.99,09/04/19 12:16,"947 11th St, Boston, MA 02215" -254562,AAA Batteries (4-pack),1,2.99,09/07/19 12:29,"395 6th St, Los Angeles, CA 90001" -254562,USB-C Charging Cable,1,11.95,09/07/19 12:29,"395 6th St, Los Angeles, CA 90001" -254563,Wired Headphones,1,11.99,09/15/19 10:30,"188 Johnson St, New York City, NY 10001" -254564,Apple Airpods Headphones,1,150,09/11/19 01:05,"230 Hickory St, Boston, MA 02215" -254565,Lightning Charging Cable,1,14.95,09/17/19 11:17,"426 12th St, Los Angeles, CA 90001" -254566,USB-C Charging Cable,1,11.95,09/17/19 09:11,"370 Park St, Boston, MA 02215" -254567,Lightning Charging Cable,1,14.95,09/08/19 11:19,"629 Dogwood St, Los Angeles, CA 90001" -254568,USB-C Charging Cable,1,11.95,09/28/19 11:44,"912 Hill St, San Francisco, CA 94016" -254569,AA Batteries (4-pack),2,3.84,09/08/19 06:30,"564 Willow St, New York City, NY 10001" -254570,AA Batteries (4-pack),1,3.84,09/18/19 12:54,"131 River St, Los Angeles, CA 90001" -254571,Google Phone,1,600,09/12/19 01:45,"720 Ridge St, Los Angeles, CA 90001" -254572,USB-C Charging Cable,2,11.95,09/07/19 17:22,"478 Center St, San Francisco, CA 94016" -254573,USB-C Charging Cable,1,11.95,09/24/19 14:05,"892 Jackson St, Los Angeles, CA 90001" -254574,USB-C Charging Cable,1,11.95,09/10/19 18:38,"606 11th St, Boston, MA 02215" -254575,Lightning Charging Cable,2,14.95,09/11/19 08:50,"847 Elm St, San Francisco, CA 94016" -254576,Wired Headphones,1,11.99,09/28/19 12:59,"457 9th St, Seattle, WA 98101" -254577,Wired Headphones,1,11.99,09/22/19 19:25,"862 Park St, Atlanta, GA 30301" -254578,AAA Batteries (4-pack),1,2.99,09/05/19 09:16,"634 Maple St, Austin, TX 73301" -254579,AA Batteries (4-pack),1,3.84,09/12/19 20:59,"918 Ridge St, Atlanta, GA 30301" -254579,Apple Airpods Headphones,1,150,09/12/19 20:59,"918 Ridge St, Atlanta, GA 30301" -254580,Wired Headphones,1,11.99,09/05/19 15:31,"903 Lincoln St, Atlanta, GA 30301" -254581,AAA Batteries (4-pack),1,2.99,09/18/19 20:58,"568 River St, Portland, OR 97035" -254582,USB-C Charging Cable,1,11.95,09/24/19 11:35,"588 Lake St, Dallas, TX 75001" -254583,USB-C Charging Cable,1,11.95,09/17/19 14:39,"700 11th St, Austin, TX 73301" -254584,AAA Batteries (4-pack),1,2.99,09/30/19 22:18,"660 11th St, Portland, OR 97035" -254585,USB-C Charging Cable,1,11.95,09/07/19 10:20,"590 Highland St, Seattle, WA 98101" -254586,Flatscreen TV,1,300,09/08/19 12:36,"488 Jackson St, San Francisco, CA 94016" -254587,Lightning Charging Cable,1,14.95,09/15/19 06:23,"496 Highland St, New York City, NY 10001" -254588,Wired Headphones,1,11.99,09/15/19 20:19,"128 14th St, San Francisco, CA 94016" -254589,USB-C Charging Cable,1,11.95,09/12/19 19:13,"46 Chestnut St, Portland, OR 97035" -254590,AA Batteries (4-pack),2,3.84,09/27/19 02:01,"264 11th St, New York City, NY 10001" -254591,Apple Airpods Headphones,1,150,09/04/19 21:03,"882 8th St, Los Angeles, CA 90001" -254592,USB-C Charging Cable,1,11.95,09/13/19 19:08,"705 14th St, Los Angeles, CA 90001" -254593,USB-C Charging Cable,1,11.95,09/02/19 18:48,"988 Cherry St, Dallas, TX 75001" -254594,Lightning Charging Cable,1,14.95,09/07/19 13:40,"629 Main St, New York City, NY 10001" -254595,27in FHD Monitor,1,149.99,09/22/19 12:10,"343 Madison St, Los Angeles, CA 90001" -254596,AA Batteries (4-pack),1,3.84,09/02/19 11:02,"38 Dogwood St, Boston, MA 02215" -254597,27in FHD Monitor,1,149.99,09/21/19 20:06,"108 Main St, New York City, NY 10001" -254598,Wired Headphones,1,11.99,09/30/19 22:06,"396 Washington St, Austin, TX 73301" -254599,Google Phone,1,600,09/29/19 02:21,"615 11th St, New York City, NY 10001" -254600,iPhone,1,700,09/13/19 05:33,"1 11th St, San Francisco, CA 94016" -254601,USB-C Charging Cable,2,11.95,09/05/19 13:06,"255 Main St, Seattle, WA 98101" -254602,AA Batteries (4-pack),1,3.84,09/04/19 00:05,"255 Hickory St, San Francisco, CA 94016" -254603,27in FHD Monitor,1,149.99,09/15/19 21:33,"91 Chestnut St, Portland, OR 97035" -254604,Wired Headphones,1,11.99,09/19/19 09:28,"320 4th St, New York City, NY 10001" -254605,27in FHD Monitor,1,149.99,09/27/19 14:01,"446 4th St, Boston, MA 02215" -254606,AAA Batteries (4-pack),1,2.99,09/25/19 13:43,"278 Elm St, Boston, MA 02215" -254607,AAA Batteries (4-pack),1,2.99,09/01/19 17:51,"300 6th St, Portland, OR 97035" -254608,Google Phone,1,600,09/04/19 21:46,"607 Forest St, San Francisco, CA 94016" -254609,Wired Headphones,1,11.99,09/16/19 12:16,"478 6th St, Dallas, TX 75001" -254610,AA Batteries (4-pack),3,3.84,09/28/19 11:57,"714 Dogwood St, Los Angeles, CA 90001" -254611,USB-C Charging Cable,1,11.95,09/25/19 12:49,"497 Hill St, Boston, MA 02215" -254612,Vareebadd Phone,1,400,09/17/19 00:11,"110 10th St, Boston, MA 02215" -254613,Lightning Charging Cable,1,14.95,09/06/19 18:07,"247 Hill St, Boston, MA 02215" -254614,USB-C Charging Cable,1,11.95,09/15/19 10:33,"389 10th St, San Francisco, CA 94016" -254615,27in FHD Monitor,1,149.99,09/26/19 23:08,"59 Highland St, Seattle, WA 98101" -254616,USB-C Charging Cable,1,11.95,09/21/19 12:45,"10 5th St, Atlanta, GA 30301" -254617,Bose SoundSport Headphones,1,99.99,09/20/19 17:50,"687 Ridge St, San Francisco, CA 94016" -254618,27in 4K Gaming Monitor,1,389.99,09/27/19 11:50,"51 Washington St, Los Angeles, CA 90001" -254619,Apple Airpods Headphones,1,150,09/11/19 19:02,"265 Meadow St, Atlanta, GA 30301" -254620,AA Batteries (4-pack),1,3.84,09/19/19 19:37,"193 Elm St, San Francisco, CA 94016" -254621,Lightning Charging Cable,1,14.95,09/20/19 13:37,"304 West St, San Francisco, CA 94016" -254622,AA Batteries (4-pack),1,3.84,09/14/19 09:25,"93 South St, San Francisco, CA 94016" -254623,Wired Headphones,2,11.99,09/18/19 10:48,"307 River St, Dallas, TX 75001" -254624,27in FHD Monitor,1,149.99,09/25/19 20:25,"535 Ridge St, Atlanta, GA 30301" -254625,AAA Batteries (4-pack),2,2.99,09/13/19 18:32,"724 Cherry St, Seattle, WA 98101" -254626,Bose SoundSport Headphones,1,99.99,09/25/19 10:13,"415 1st St, San Francisco, CA 94016" -254627,20in Monitor,1,109.99,09/22/19 06:34,"703 Wilson St, Boston, MA 02215" -254628,34in Ultrawide Monitor,1,379.99,09/28/19 17:22,"141 Pine St, New York City, NY 10001" -254629,Bose SoundSport Headphones,1,99.99,09/13/19 17:57,"733 Lincoln St, Portland, OR 97035" -254630,AA Batteries (4-pack),1,3.84,09/10/19 13:10,"141 Lincoln St, Portland, ME 04101" -254631,iPhone,1,700,09/12/19 14:18,"972 Maple St, Los Angeles, CA 90001" -254632,Lightning Charging Cable,2,14.95,09/05/19 23:17,"680 Jefferson St, Portland, OR 97035" -254633,Bose SoundSport Headphones,1,99.99,09/16/19 14:49,"272 Chestnut St, Los Angeles, CA 90001" -254634,AA Batteries (4-pack),1,3.84,09/27/19 19:07,"842 7th St, Los Angeles, CA 90001" -254635,AA Batteries (4-pack),1,3.84,09/20/19 13:07,"657 9th St, Dallas, TX 75001" -254636,AAA Batteries (4-pack),1,2.99,09/24/19 19:12,"568 Elm St, Atlanta, GA 30301" -254637,AA Batteries (4-pack),4,3.84,09/23/19 12:42,"443 River St, San Francisco, CA 94016" -254638,Apple Airpods Headphones,1,150,09/26/19 23:29,"252 Sunset St, Atlanta, GA 30301" -254639,LG Dryer,1,600.0,09/07/19 19:30,"461 Madison St, San Francisco, CA 94016" -254640,27in 4K Gaming Monitor,1,389.99,09/20/19 19:15,"805 6th St, Dallas, TX 75001" -254641,Wired Headphones,1,11.99,09/24/19 20:41,"541 1st St, Los Angeles, CA 90001" -254642,Macbook Pro Laptop,1,1700,09/25/19 11:26,"10 West St, San Francisco, CA 94016" -254643,USB-C Charging Cable,1,11.95,09/06/19 17:37,"124 Spruce St, Boston, MA 02215" -254644,AA Batteries (4-pack),1,3.84,09/19/19 11:28,"52 Meadow St, Boston, MA 02215" -254645,Apple Airpods Headphones,1,150,09/04/19 22:23,"869 Forest St, New York City, NY 10001" -,,,,, -254646,Google Phone,1,600,09/19/19 10:51,"967 Jefferson St, New York City, NY 10001" -254647,AA Batteries (4-pack),1,3.84,09/26/19 21:18,"859 Main St, Dallas, TX 75001" -254648,AA Batteries (4-pack),1,3.84,09/05/19 08:48,"534 Madison St, Seattle, WA 98101" -254649,Bose SoundSport Headphones,1,99.99,09/12/19 21:02,"419 Adams St, Seattle, WA 98101" -254650,Google Phone,1,600,09/12/19 12:55,"355 Washington St, Boston, MA 02215" -254650,USB-C Charging Cable,1,11.95,09/12/19 12:55,"355 Washington St, Boston, MA 02215" -254651,Lightning Charging Cable,1,14.95,09/09/19 20:59,"240 Hickory St, New York City, NY 10001" -254652,Flatscreen TV,2,300,09/17/19 12:21,"153 6th St, Atlanta, GA 30301" -254653,Bose SoundSport Headphones,1,99.99,09/26/19 16:48,"496 Hickory St, Los Angeles, CA 90001" -254654,27in FHD Monitor,1,149.99,09/14/19 12:38,"675 Jefferson St, San Francisco, CA 94016" -254655,Lightning Charging Cable,1,14.95,09/11/19 16:06,"56 Hill St, San Francisco, CA 94016" -254656,AAA Batteries (4-pack),2,2.99,09/30/19 10:22,"160 13th St, Boston, MA 02215" -254657,Lightning Charging Cable,1,14.95,09/19/19 04:44,"967 11th St, New York City, NY 10001" -254658,20in Monitor,1,109.99,09/15/19 20:01,"792 10th St, Los Angeles, CA 90001" -254659,AA Batteries (4-pack),2,3.84,09/19/19 12:01,"698 Jackson St, Los Angeles, CA 90001" -254660,USB-C Charging Cable,1,11.95,09/29/19 19:13,"360 Dogwood St, Boston, MA 02215" -254661,20in Monitor,1,109.99,09/26/19 12:23,"186 West St, New York City, NY 10001" -254662,34in Ultrawide Monitor,1,379.99,09/09/19 22:54,"263 Church St, Dallas, TX 75001" -254663,Vareebadd Phone,1,400,09/03/19 22:21,"957 14th St, New York City, NY 10001" -254664,Apple Airpods Headphones,1,150,09/30/19 23:20,"6 Cherry St, San Francisco, CA 94016" -254665,Wired Headphones,1,11.99,09/11/19 16:45,"818 Spruce St, New York City, NY 10001" -254666,Apple Airpods Headphones,1,150,09/30/19 18:31,"71 Dogwood St, Portland, OR 97035" -254667,Lightning Charging Cable,1,14.95,09/01/19 10:19,"870 10th St, New York City, NY 10001" -254668,Flatscreen TV,1,300,09/12/19 14:57,"249 Park St, New York City, NY 10001" -254669,USB-C Charging Cable,1,11.95,09/05/19 20:31,"47 Lincoln St, Dallas, TX 75001" -254670,20in Monitor,1,109.99,09/08/19 23:44,"494 North St, Los Angeles, CA 90001" -254671,USB-C Charging Cable,1,11.95,09/27/19 20:00,"864 12th St, Portland, OR 97035" -254672,Apple Airpods Headphones,1,150,09/01/19 18:49,"909 Chestnut St, Los Angeles, CA 90001" -254672,iPhone,1,700,09/01/19 18:49,"909 Chestnut St, Los Angeles, CA 90001" -254673,iPhone,1,700,09/09/19 11:56,"238 Madison St, San Francisco, CA 94016" -254674,AA Batteries (4-pack),1,3.84,09/12/19 14:01,"725 Jackson St, San Francisco, CA 94016" -254675,USB-C Charging Cable,1,11.95,09/26/19 17:30,"188 14th St, Atlanta, GA 30301" -254676,AA Batteries (4-pack),1,3.84,09/02/19 17:12,"754 Washington St, Atlanta, GA 30301" -254677,Macbook Pro Laptop,1,1700,09/21/19 16:29,"143 Dogwood St, New York City, NY 10001" -254678,Apple Airpods Headphones,1,150,09/28/19 17:22,"563 Walnut St, Atlanta, GA 30301" -254679,USB-C Charging Cable,1,11.95,09/12/19 09:34,"616 Main St, San Francisco, CA 94016" -254680,AA Batteries (4-pack),2,3.84,09/05/19 07:41,"268 West St, Boston, MA 02215" -254681,Lightning Charging Cable,1,14.95,09/21/19 20:02,"745 Wilson St, Dallas, TX 75001" -254682,Lightning Charging Cable,1,14.95,09/08/19 00:26,"850 Cherry St, Austin, TX 73301" -254683,Lightning Charging Cable,1,14.95,09/16/19 13:55,"459 4th St, San Francisco, CA 94016" -254684,Bose SoundSport Headphones,1,99.99,09/27/19 23:21,"5 Hill St, Boston, MA 02215" -254685,iPhone,1,700,09/17/19 10:16,"462 Chestnut St, Austin, TX 73301" -254686,27in FHD Monitor,1,149.99,09/19/19 20:36,"285 Elm St, New York City, NY 10001" -254686,Lightning Charging Cable,1,14.95,09/19/19 20:36,"285 Elm St, New York City, NY 10001" -254687,27in 4K Gaming Monitor,1,389.99,09/27/19 09:32,"690 Lincoln St, San Francisco, CA 94016" -254688,USB-C Charging Cable,1,11.95,09/06/19 13:02,"135 Park St, New York City, NY 10001" -254689,USB-C Charging Cable,1,11.95,09/13/19 16:00,"734 Hickory St, Seattle, WA 98101" -254690,Google Phone,1,600,09/25/19 06:10,"610 9th St, Austin, TX 73301" -254691,20in Monitor,1,109.99,09/23/19 11:27,"873 Wilson St, Boston, MA 02215" -254692,AA Batteries (4-pack),1,3.84,09/26/19 14:36,"743 7th St, Boston, MA 02215" -254693,Apple Airpods Headphones,1,150,09/18/19 17:16,"171 4th St, New York City, NY 10001" -254694,Bose SoundSport Headphones,1,99.99,09/26/19 12:50,"708 Jefferson St, Austin, TX 73301" -254695,Vareebadd Phone,1,400,09/07/19 20:33,"490 North St, New York City, NY 10001" -254696,AAA Batteries (4-pack),4,2.99,09/08/19 12:09,"417 Chestnut St, Dallas, TX 75001" -254697,Lightning Charging Cable,1,14.95,09/16/19 17:40,"125 Wilson St, New York City, NY 10001" -254698,AA Batteries (4-pack),1,3.84,09/30/19 08:14,"815 Pine St, Dallas, TX 75001" -254699,AA Batteries (4-pack),1,3.84,09/13/19 13:18,"33 Pine St, Austin, TX 73301" -254700,Macbook Pro Laptop,1,1700,09/04/19 22:41,"354 Meadow St, Los Angeles, CA 90001" -254701,Lightning Charging Cable,1,14.95,09/09/19 13:53,"652 Meadow St, New York City, NY 10001" -254702,Flatscreen TV,1,300,09/09/19 18:25,"500 6th St, San Francisco, CA 94016" -254703,iPhone,1,700,09/25/19 08:04,"615 8th St, New York City, NY 10001" -254703,Lightning Charging Cable,1,14.95,09/25/19 08:04,"615 8th St, New York City, NY 10001" -254703,Wired Headphones,1,11.99,09/25/19 08:04,"615 8th St, New York City, NY 10001" -254704,AAA Batteries (4-pack),1,2.99,09/01/19 22:44,"923 Jefferson St, Portland, OR 97035" -254705,Lightning Charging Cable,1,14.95,09/29/19 19:58,"795 Ridge St, Portland, OR 97035" -254706,Google Phone,1,600,09/03/19 00:05,"592 10th St, Seattle, WA 98101" -254707,Bose SoundSport Headphones,1,99.99,09/12/19 11:27,"645 1st St, San Francisco, CA 94016" -254708,Wired Headphones,1,11.99,09/29/19 22:13,"844 12th St, Dallas, TX 75001" -254709,Macbook Pro Laptop,1,1700,09/13/19 09:02,"731 Cherry St, Atlanta, GA 30301" -254710,Macbook Pro Laptop,1,1700,09/12/19 08:29,"111 14th St, Los Angeles, CA 90001" -254711,AA Batteries (4-pack),1,3.84,09/25/19 17:13,"558 8th St, New York City, NY 10001" -254712,USB-C Charging Cable,1,11.95,09/14/19 10:45,"8 Jefferson St, San Francisco, CA 94016" -254713,Google Phone,1,600,09/08/19 17:27,"893 Pine St, Los Angeles, CA 90001" -254713,USB-C Charging Cable,1,11.95,09/08/19 17:27,"893 Pine St, Los Angeles, CA 90001" -254714,USB-C Charging Cable,1,11.95,09/16/19 00:34,"320 Dogwood St, San Francisco, CA 94016" -254715,Lightning Charging Cable,1,14.95,09/17/19 21:30,"191 Walnut St, San Francisco, CA 94016" -254716,Flatscreen TV,1,300,09/15/19 16:48,"466 Maple St, Los Angeles, CA 90001" -254717,Bose SoundSport Headphones,1,99.99,09/14/19 19:17,"760 Meadow St, New York City, NY 10001" -254718,AAA Batteries (4-pack),1,2.99,09/17/19 15:28,"285 1st St, Portland, OR 97035" -254719,Wired Headphones,1,11.99,09/01/19 12:03,"236 Pine St, New York City, NY 10001" -254720,USB-C Charging Cable,1,11.95,09/11/19 19:02,"834 Park St, Atlanta, GA 30301" -254721,AA Batteries (4-pack),2,3.84,09/27/19 20:41,"429 Hill St, Portland, ME 04101" -254722,Flatscreen TV,1,300,09/10/19 16:31,"105 10th St, Atlanta, GA 30301" -254723,Lightning Charging Cable,1,14.95,09/11/19 19:20,"521 Washington St, Atlanta, GA 30301" -254723,AA Batteries (4-pack),1,3.84,09/11/19 19:20,"521 Washington St, Atlanta, GA 30301" -254724,AA Batteries (4-pack),1,3.84,09/11/19 20:07,"405 Highland St, Portland, OR 97035" -254725,Wired Headphones,1,11.99,09/21/19 14:01,"360 Maple St, Atlanta, GA 30301" -254726,AAA Batteries (4-pack),1,2.99,09/29/19 22:58,"912 North St, Los Angeles, CA 90001" -254727,Flatscreen TV,1,300,09/12/19 12:44,"546 1st St, San Francisco, CA 94016" -254728,AA Batteries (4-pack),2,3.84,09/29/19 15:13,"250 9th St, New York City, NY 10001" -254729,USB-C Charging Cable,2,11.95,09/12/19 17:53,"581 Hill St, Seattle, WA 98101" -254730,Wired Headphones,1,11.99,09/19/19 22:05,"888 Forest St, Portland, OR 97035" -254731,ThinkPad Laptop,1,999.99,09/22/19 14:10,"18 9th St, Boston, MA 02215" -254732,AA Batteries (4-pack),2,3.84,09/09/19 22:10,"409 Lakeview St, San Francisco, CA 94016" -254733,Lightning Charging Cable,1,14.95,09/06/19 08:39,"115 6th St, Los Angeles, CA 90001" -254734,AAA Batteries (4-pack),1,2.99,09/08/19 16:08,"683 Cherry St, Los Angeles, CA 90001" -254735,Wired Headphones,1,11.99,09/09/19 01:15,"154 Hickory St, Portland, OR 97035" -254736,Flatscreen TV,1,300,09/01/19 12:04,"601 Church St, San Francisco, CA 94016" -254737,27in FHD Monitor,1,149.99,09/28/19 09:03,"2 Lakeview St, Los Angeles, CA 90001" -254738,Macbook Pro Laptop,1,1700,09/02/19 21:36,"577 Pine St, Los Angeles, CA 90001" -254739,Bose SoundSport Headphones,1,99.99,09/18/19 18:39,"539 5th St, Dallas, TX 75001" -254740,Apple Airpods Headphones,1,150,09/06/19 19:10,"449 Highland St, Seattle, WA 98101" -254741,Flatscreen TV,1,300,09/23/19 17:50,"886 Johnson St, Atlanta, GA 30301" -254742,27in 4K Gaming Monitor,1,389.99,09/26/19 19:29,"765 Pine St, San Francisco, CA 94016" -254743,Apple Airpods Headphones,1,150,09/03/19 11:33,"222 13th St, Austin, TX 73301" -254744,AA Batteries (4-pack),1,3.84,09/09/19 17:40,"80 North St, Atlanta, GA 30301" -254745,USB-C Charging Cable,1,11.95,09/09/19 00:05,"133 Sunset St, Dallas, TX 75001" -254746,27in FHD Monitor,1,149.99,09/25/19 10:17,"684 Ridge St, San Francisco, CA 94016" -254747,Lightning Charging Cable,1,14.95,09/16/19 00:03,"917 5th St, Austin, TX 73301" -254748,Bose SoundSport Headphones,1,99.99,09/15/19 10:10,"424 Meadow St, Austin, TX 73301" -254749,27in FHD Monitor,1,149.99,09/24/19 16:15,"86 Walnut St, Los Angeles, CA 90001" -254750,AAA Batteries (4-pack),1,2.99,09/24/19 23:42,"753 Jefferson St, Los Angeles, CA 90001" -254751,Lightning Charging Cable,1,14.95,09/02/19 08:43,"537 Park St, Austin, TX 73301" -254752,34in Ultrawide Monitor,1,379.99,09/10/19 10:23,"328 10th St, Los Angeles, CA 90001" -254753,Wired Headphones,1,11.99,09/20/19 14:26,"362 12th St, New York City, NY 10001" -254754,Lightning Charging Cable,1,14.95,09/22/19 13:56,"888 Walnut St, Los Angeles, CA 90001" -254755,Lightning Charging Cable,1,14.95,09/10/19 20:00,"656 Lakeview St, New York City, NY 10001" -254756,Bose SoundSport Headphones,1,99.99,09/22/19 06:57,"958 Jackson St, Los Angeles, CA 90001" -254757,iPhone,1,700,09/10/19 17:38,"961 Park St, San Francisco, CA 94016" -254757,Apple Airpods Headphones,1,150,09/10/19 17:38,"961 Park St, San Francisco, CA 94016" -254757,Wired Headphones,1,11.99,09/10/19 17:38,"961 Park St, San Francisco, CA 94016" -254758,Bose SoundSport Headphones,1,99.99,09/12/19 23:59,"225 Lakeview St, Los Angeles, CA 90001" -254759,AA Batteries (4-pack),1,3.84,09/20/19 08:32,"576 South St, New York City, NY 10001" -254760,AA Batteries (4-pack),2,3.84,09/17/19 19:11,"806 South St, New York City, NY 10001" -254761,USB-C Charging Cable,2,11.95,09/18/19 16:11,"160 7th St, Los Angeles, CA 90001" -254762,AAA Batteries (4-pack),1,2.99,09/14/19 13:11,"893 Madison St, Boston, MA 02215" -254763,Apple Airpods Headphones,1,150,09/28/19 10:49,"897 Jackson St, Seattle, WA 98101" -254764,AAA Batteries (4-pack),1,2.99,09/23/19 13:26,"983 Elm St, San Francisco, CA 94016" -254765,27in 4K Gaming Monitor,1,389.99,09/02/19 17:13,"773 Jackson St, San Francisco, CA 94016" -254766,Apple Airpods Headphones,1,150,09/02/19 16:41,"785 10th St, Los Angeles, CA 90001" -254767,AA Batteries (4-pack),1,3.84,09/02/19 10:22,"900 12th St, Los Angeles, CA 90001" -254768,AAA Batteries (4-pack),1,2.99,09/07/19 18:47,"352 2nd St, Boston, MA 02215" -254769,Macbook Pro Laptop,1,1700,09/13/19 20:51,"303 1st St, San Francisco, CA 94016" -254770,USB-C Charging Cable,1,11.95,09/07/19 14:11,"406 Jefferson St, New York City, NY 10001" -254771,Wired Headphones,1,11.99,09/30/19 04:08,"160 13th St, San Francisco, CA 94016" -254772,Wired Headphones,1,11.99,09/12/19 21:45,"426 Main St, Atlanta, GA 30301" -254772,Bose SoundSport Headphones,1,99.99,09/12/19 21:45,"426 Main St, Atlanta, GA 30301" -254773,Vareebadd Phone,1,400,09/25/19 13:08,"931 Meadow St, Los Angeles, CA 90001" -254774,AAA Batteries (4-pack),2,2.99,09/24/19 17:53,"444 10th St, San Francisco, CA 94016" -254775,Lightning Charging Cable,2,14.95,09/21/19 12:15,"66 Park St, San Francisco, CA 94016" -254776,Wired Headphones,1,11.99,09/08/19 18:45,"499 2nd St, Los Angeles, CA 90001" -254777,Apple Airpods Headphones,1,150,09/29/19 16:05,"657 7th St, Seattle, WA 98101" -254778,Lightning Charging Cable,1,14.95,09/06/19 17:32,"939 Willow St, San Francisco, CA 94016" -254779,Wired Headphones,1,11.99,09/10/19 18:21,"57 Adams St, Atlanta, GA 30301" -254780,Macbook Pro Laptop,1,1700,09/21/19 10:49,"934 Lincoln St, Los Angeles, CA 90001" -254781,AAA Batteries (4-pack),1,2.99,09/20/19 19:14,"733 Center St, Boston, MA 02215" -254782,Wired Headphones,1,11.99,09/24/19 15:16,"738 South St, Los Angeles, CA 90001" -254783,Wired Headphones,1,11.99,09/21/19 00:53,"186 Spruce St, Austin, TX 73301" -254784,USB-C Charging Cable,2,11.95,09/03/19 16:12,"139 West St, Los Angeles, CA 90001" -254785,AA Batteries (4-pack),2,3.84,09/27/19 17:44,"828 Church St, Los Angeles, CA 90001" -254786,Apple Airpods Headphones,1,150,09/12/19 09:43,"587 7th St, San Francisco, CA 94016" -254787,Apple Airpods Headphones,1,150,09/20/19 10:40,"366 North St, San Francisco, CA 94016" -254788,AA Batteries (4-pack),1,3.84,09/14/19 21:01,"893 West St, San Francisco, CA 94016" -254789,Lightning Charging Cable,1,14.95,09/30/19 17:27,"153 Walnut St, Dallas, TX 75001" -254790,Wired Headphones,1,11.99,09/24/19 17:36,"320 Wilson St, Dallas, TX 75001" -254791,Apple Airpods Headphones,1,150,09/01/19 21:23,"993 Johnson St, San Francisco, CA 94016" -254792,Apple Airpods Headphones,1,150,09/29/19 08:18,"399 Ridge St, New York City, NY 10001" -254793,USB-C Charging Cable,1,11.95,09/17/19 18:11,"210 Sunset St, San Francisco, CA 94016" -254794,20in Monitor,1,109.99,09/02/19 18:53,"151 Johnson St, New York City, NY 10001" -254795,USB-C Charging Cable,1,11.95,09/04/19 10:08,"641 Washington St, San Francisco, CA 94016" -254796,Macbook Pro Laptop,1,1700,09/20/19 13:12,"465 13th St, Boston, MA 02215" -254797,AAA Batteries (4-pack),1,2.99,09/24/19 11:02,"817 Washington St, Boston, MA 02215" -254798,27in 4K Gaming Monitor,1,389.99,09/04/19 17:47,"778 Wilson St, Portland, OR 97035" -254799,Wired Headphones,1,11.99,09/12/19 14:52,"88 Lakeview St, Portland, OR 97035" -254800,ThinkPad Laptop,1,999.99,09/08/19 20:26,"749 Johnson St, New York City, NY 10001" -254801,Lightning Charging Cable,1,14.95,09/09/19 21:22,"7 14th St, New York City, NY 10001" -254802,USB-C Charging Cable,1,11.95,09/04/19 10:50,"192 Washington St, San Francisco, CA 94016" -254803,Lightning Charging Cable,1,14.95,09/30/19 22:29,"398 12th St, New York City, NY 10001" -254804,Lightning Charging Cable,1,14.95,09/01/19 12:33,"6 Adams St, New York City, NY 10001" -254805,Google Phone,1,600,09/08/19 01:40,"186 2nd St, San Francisco, CA 94016" -254806,AAA Batteries (4-pack),1,2.99,09/06/19 20:54,"556 1st St, San Francisco, CA 94016" -254807,Lightning Charging Cable,2,14.95,09/12/19 16:52,"276 Park St, San Francisco, CA 94016" -254808,USB-C Charging Cable,1,11.95,09/09/19 17:53,"800 Church St, New York City, NY 10001" -254809,AAA Batteries (4-pack),2,2.99,09/18/19 17:30,"117 7th St, San Francisco, CA 94016" -254810,Google Phone,1,600,09/19/19 00:56,"608 Highland St, Dallas, TX 75001" -254811,Google Phone,1,600,09/18/19 08:33,"277 10th St, New York City, NY 10001" -254812,Wired Headphones,1,11.99,09/09/19 20:24,"565 7th St, Dallas, TX 75001" -254813,Bose SoundSport Headphones,1,99.99,09/22/19 11:30,"473 14th St, Boston, MA 02215" -254814,AA Batteries (4-pack),1,3.84,09/09/19 23:38,"182 Madison St, San Francisco, CA 94016" -254815,Wired Headphones,1,11.99,09/08/19 19:33,"423 Cedar St, Los Angeles, CA 90001" -254816,Apple Airpods Headphones,1,150,09/24/19 15:14,"138 Adams St, Boston, MA 02215" -254817,Bose SoundSport Headphones,1,99.99,09/04/19 18:29,"325 11th St, San Francisco, CA 94016" -254818,LG Washing Machine,1,600.0,09/13/19 19:53,"110 Church St, Dallas, TX 75001" -254819,Apple Airpods Headphones,1,150,09/09/19 23:53,"555 Highland St, Los Angeles, CA 90001" -254820,Lightning Charging Cable,1,14.95,09/26/19 15:38,"88 Johnson St, Atlanta, GA 30301" -254821,27in FHD Monitor,1,149.99,09/26/19 13:04,"405 Lincoln St, Los Angeles, CA 90001" -254822,Apple Airpods Headphones,1,150,09/22/19 20:32,"858 Jefferson St, Los Angeles, CA 90001" -254823,34in Ultrawide Monitor,1,379.99,09/26/19 18:23,"217 10th St, Los Angeles, CA 90001" -254824,USB-C Charging Cable,1,11.95,09/28/19 02:07,"979 9th St, New York City, NY 10001" -254825,27in FHD Monitor,1,149.99,09/17/19 17:31,"259 1st St, Dallas, TX 75001" -254826,27in FHD Monitor,1,149.99,09/22/19 12:59,"991 Maple St, Atlanta, GA 30301" -254827,Apple Airpods Headphones,1,150,09/09/19 18:08,"94 13th St, San Francisco, CA 94016" -254828,AAA Batteries (4-pack),2,2.99,09/13/19 13:32,"296 Washington St, San Francisco, CA 94016" -254829,Apple Airpods Headphones,1,150,09/14/19 20:27,"935 Wilson St, Boston, MA 02215" -254830,Lightning Charging Cable,1,14.95,09/22/19 01:32,"68 River St, Dallas, TX 75001" -254831,USB-C Charging Cable,1,11.95,09/10/19 14:58,"702 South St, San Francisco, CA 94016" -254832,AAA Batteries (4-pack),1,2.99,09/21/19 13:11,"817 12th St, New York City, NY 10001" -254833,AAA Batteries (4-pack),1,2.99,09/22/19 09:16,"659 Maple St, San Francisco, CA 94016" -254834,27in 4K Gaming Monitor,1,389.99,09/15/19 22:15,"294 Johnson St, Los Angeles, CA 90001" -254835,AA Batteries (4-pack),2,3.84,09/22/19 15:34,"906 River St, San Francisco, CA 94016" -254836,Vareebadd Phone,1,400,09/27/19 13:37,"841 Center St, Austin, TX 73301" -254837,AA Batteries (4-pack),1,3.84,09/12/19 09:40,"223 Cedar St, New York City, NY 10001" -254838,Apple Airpods Headphones,1,150,09/27/19 15:03,"18 Pine St, Atlanta, GA 30301" -254839,Bose SoundSport Headphones,1,99.99,09/29/19 20:36,"20 8th St, Los Angeles, CA 90001" -254840,AA Batteries (4-pack),3,3.84,09/29/19 16:41,"468 Center St, Boston, MA 02215" -254841,Lightning Charging Cable,1,14.95,09/11/19 18:43,"465 Walnut St, San Francisco, CA 94016" -254842,AAA Batteries (4-pack),1,2.99,09/22/19 07:58,"148 Meadow St, Boston, MA 02215" -254843,ThinkPad Laptop,1,999.99,09/23/19 14:08,"281 Main St, San Francisco, CA 94016" -254844,34in Ultrawide Monitor,1,379.99,09/25/19 20:40,"28 West St, Los Angeles, CA 90001" -254845,AAA Batteries (4-pack),2,2.99,09/22/19 16:02,"679 North St, Boston, MA 02215" -254846,Wired Headphones,2,11.99,09/19/19 08:48,"8 13th St, Los Angeles, CA 90001" -254847,AA Batteries (4-pack),1,3.84,09/09/19 19:13,"817 Madison St, Dallas, TX 75001" -254848,Wired Headphones,1,11.99,09/17/19 18:57,"786 Forest St, Austin, TX 73301" -254849,Lightning Charging Cable,1,14.95,09/01/19 13:07,"737 Park St, Dallas, TX 75001" -254850,20in Monitor,1,109.99,09/30/19 12:55,"46 Lake St, New York City, NY 10001" -254851,Flatscreen TV,1,300,09/07/19 08:14,"546 North St, Boston, MA 02215" -254852,AAA Batteries (4-pack),1,2.99,09/08/19 22:13,"911 Forest St, Boston, MA 02215" -254853,27in FHD Monitor,1,149.99,09/23/19 18:53,"73 12th St, Dallas, TX 75001" -254854,Lightning Charging Cable,1,14.95,09/25/19 13:03,"942 8th St, Boston, MA 02215" -254855,iPhone,1,700,09/13/19 13:01,"352 Meadow St, Boston, MA 02215" -254856,Lightning Charging Cable,1,14.95,09/14/19 14:32,"524 Maple St, San Francisco, CA 94016" -254857,iPhone,1,700,09/05/19 15:50,"423 Elm St, Los Angeles, CA 90001" -254858,iPhone,1,700,10/01/19 01:39,"596 Adams St, New York City, NY 10001" -254858,Lightning Charging Cable,1,14.95,10/01/19 01:39,"596 Adams St, New York City, NY 10001" -254858,Wired Headphones,1,11.99,10/01/19 01:39,"596 Adams St, New York City, NY 10001" -254859,27in 4K Gaming Monitor,1,389.99,09/28/19 09:53,"731 Spruce St, San Francisco, CA 94016" -254860,USB-C Charging Cable,1,11.95,09/07/19 22:43,"706 South St, Seattle, WA 98101" -254861,AAA Batteries (4-pack),2,2.99,09/04/19 00:01,"296 4th St, Atlanta, GA 30301" -254862,Bose SoundSport Headphones,1,99.99,09/16/19 20:04,"809 9th St, Seattle, WA 98101" -254863,34in Ultrawide Monitor,1,379.99,09/10/19 22:36,"610 Lincoln St, Boston, MA 02215" -254864,Lightning Charging Cable,1,14.95,09/20/19 20:47,"683 1st St, Los Angeles, CA 90001" -254865,Wired Headphones,1,11.99,09/12/19 19:19,"397 Sunset St, San Francisco, CA 94016" -254866,Wired Headphones,1,11.99,09/13/19 13:25,"58 Meadow St, Dallas, TX 75001" -254867,Wired Headphones,1,11.99,09/15/19 07:48,"262 South St, Los Angeles, CA 90001" -254868,Lightning Charging Cable,2,14.95,09/06/19 11:04,"81 Adams St, Dallas, TX 75001" -254869,Lightning Charging Cable,1,14.95,09/03/19 03:38,"796 Lincoln St, Atlanta, GA 30301" -254870,Google Phone,1,600,09/22/19 10:54,"65 7th St, Los Angeles, CA 90001" -254871,AA Batteries (4-pack),2,3.84,09/10/19 20:03,"270 Madison St, San Francisco, CA 94016" -254872,Wired Headphones,1,11.99,09/09/19 20:37,"348 Park St, Los Angeles, CA 90001" -254873,34in Ultrawide Monitor,1,379.99,09/29/19 12:21,"598 Lakeview St, Los Angeles, CA 90001" -254874,Flatscreen TV,1,300,09/30/19 15:35,"216 South St, Los Angeles, CA 90001" -254875,AAA Batteries (4-pack),1,2.99,09/05/19 15:22,"780 River St, San Francisco, CA 94016" -254876,Wired Headphones,1,11.99,09/23/19 20:55,"774 10th St, Los Angeles, CA 90001" -254877,Bose SoundSport Headphones,1,99.99,09/24/19 13:30,"381 Jefferson St, Dallas, TX 75001" -254878,34in Ultrawide Monitor,1,379.99,09/25/19 18:43,"324 Jefferson St, Seattle, WA 98101" -254879,ThinkPad Laptop,1,999.99,09/08/19 21:57,"322 Adams St, Dallas, TX 75001" -254880,Google Phone,1,600,09/14/19 14:48,"612 12th St, New York City, NY 10001" -254881,27in 4K Gaming Monitor,1,389.99,09/08/19 13:26,"634 Lake St, Seattle, WA 98101" -254882,AAA Batteries (4-pack),1,2.99,09/03/19 20:19,"219 6th St, New York City, NY 10001" -254883,iPhone,1,700,09/01/19 18:33,"589 West St, Seattle, WA 98101" -254884,20in Monitor,1,109.99,09/16/19 13:57,"508 10th St, Portland, OR 97035" -254884,ThinkPad Laptop,1,999.99,09/16/19 13:57,"508 10th St, Portland, OR 97035" -254885,AAA Batteries (4-pack),1,2.99,09/08/19 23:11,"302 Forest St, Seattle, WA 98101" -254886,AA Batteries (4-pack),1,3.84,09/03/19 14:06,"335 Highland St, New York City, NY 10001" -254887,Wired Headphones,1,11.99,09/07/19 19:19,"144 9th St, Atlanta, GA 30301" -254888,USB-C Charging Cable,1,11.95,09/17/19 00:00,"834 Maple St, Dallas, TX 75001" -254889,Google Phone,1,600,09/08/19 14:17,"467 1st St, San Francisco, CA 94016" -254889,Wired Headphones,1,11.99,09/08/19 14:17,"467 1st St, San Francisco, CA 94016" -254890,34in Ultrawide Monitor,1,379.99,09/10/19 15:19,"56 2nd St, Los Angeles, CA 90001" -254891,AA Batteries (4-pack),1,3.84,09/23/19 14:06,"730 Ridge St, Atlanta, GA 30301" -254892,ThinkPad Laptop,1,999.99,09/25/19 11:48,"828 2nd St, San Francisco, CA 94016" -254893,AAA Batteries (4-pack),2,2.99,09/12/19 19:26,"263 13th St, San Francisco, CA 94016" -254894,Apple Airpods Headphones,1,150,09/02/19 20:02,"879 Sunset St, Atlanta, GA 30301" -254895,Vareebadd Phone,1,400,09/07/19 19:08,"176 4th St, Seattle, WA 98101" -254895,USB-C Charging Cable,1,11.95,09/07/19 19:08,"176 4th St, Seattle, WA 98101" -254895,Wired Headphones,2,11.99,09/07/19 19:08,"176 4th St, Seattle, WA 98101" -254896,Google Phone,1,600,09/28/19 17:36,"215 Cedar St, Portland, ME 04101" -254897,Lightning Charging Cable,1,14.95,09/27/19 17:01,"393 Adams St, San Francisco, CA 94016" -254898,Google Phone,1,600,09/06/19 11:52,"546 Main St, Dallas, TX 75001" -254898,USB-C Charging Cable,1,11.95,09/06/19 11:52,"546 Main St, Dallas, TX 75001" -254899,Wired Headphones,1,11.99,09/24/19 03:54,"400 Church St, San Francisco, CA 94016" -254900,Wired Headphones,1,11.99,09/17/19 22:00,"275 North St, Los Angeles, CA 90001" -254901,34in Ultrawide Monitor,1,379.99,09/09/19 23:34,"316 Pine St, San Francisco, CA 94016" -254902,AA Batteries (4-pack),2,3.84,09/14/19 19:03,"143 Forest St, San Francisco, CA 94016" -254903,27in FHD Monitor,1,149.99,09/26/19 15:39,"850 Forest St, Portland, OR 97035" -254904,iPhone,1,700,09/01/19 16:34,"664 Jackson St, Portland, OR 97035" -254905,27in FHD Monitor,1,149.99,09/25/19 12:20,"209 Walnut St, New York City, NY 10001" -254906,USB-C Charging Cable,2,11.95,09/05/19 12:29,"358 South St, New York City, NY 10001" -254907,AA Batteries (4-pack),2,3.84,09/25/19 18:55,"237 5th St, Los Angeles, CA 90001" -254908,Bose SoundSport Headphones,1,99.99,09/29/19 08:11,"903 Meadow St, Dallas, TX 75001" -254909,Apple Airpods Headphones,1,150,09/12/19 11:44,"403 Jefferson St, San Francisco, CA 94016" -254910,USB-C Charging Cable,1,11.95,09/09/19 10:37,"727 Forest St, San Francisco, CA 94016" -254911,Google Phone,1,600,09/26/19 13:49,"769 Spruce St, San Francisco, CA 94016" -254912,Apple Airpods Headphones,1,150,09/14/19 12:17,"61 13th St, San Francisco, CA 94016" -254913,Lightning Charging Cable,1,14.95,09/03/19 11:57,"858 Jefferson St, Los Angeles, CA 90001" -254914,AAA Batteries (4-pack),1,2.99,09/28/19 23:04,"433 Hickory St, San Francisco, CA 94016" -254915,Wired Headphones,2,11.99,09/10/19 13:08,"262 Lake St, Los Angeles, CA 90001" -254916,AAA Batteries (4-pack),1,2.99,09/18/19 01:52,"280 West St, San Francisco, CA 94016" -254917,AAA Batteries (4-pack),2,2.99,09/22/19 23:11,"395 12th St, Dallas, TX 75001" -254918,27in FHD Monitor,1,149.99,09/03/19 18:30,"160 Main St, San Francisco, CA 94016" -254919,Google Phone,1,600,09/21/19 22:39,"903 River St, Los Angeles, CA 90001" -254920,27in 4K Gaming Monitor,1,389.99,09/01/19 20:58,"160 Spruce St, Portland, OR 97035" -254921,Flatscreen TV,1,300,09/23/19 20:10,"208 Jefferson St, Atlanta, GA 30301" -254922,USB-C Charging Cable,1,11.95,09/19/19 04:36,"973 Chestnut St, Atlanta, GA 30301" -254923,20in Monitor,1,109.99,09/08/19 16:44,"536 Hill St, Austin, TX 73301" -254924,iPhone,1,700,09/17/19 09:52,"568 7th St, San Francisco, CA 94016" -254924,Lightning Charging Cable,2,14.95,09/17/19 09:52,"568 7th St, San Francisco, CA 94016" -254925,Lightning Charging Cable,1,14.95,09/19/19 09:58,"53 Center St, Austin, TX 73301" -254926,34in Ultrawide Monitor,1,379.99,09/18/19 05:09,"415 Wilson St, San Francisco, CA 94016" -254927,27in FHD Monitor,1,149.99,09/12/19 19:24,"425 Washington St, New York City, NY 10001" -254928,AAA Batteries (4-pack),1,2.99,09/02/19 07:23,"175 River St, San Francisco, CA 94016" -254929,27in 4K Gaming Monitor,1,389.99,09/16/19 18:40,"401 Elm St, Dallas, TX 75001" -254930,Lightning Charging Cable,1,14.95,09/03/19 09:04,"817 Pine St, Boston, MA 02215" -254931,Lightning Charging Cable,1,14.95,09/27/19 20:56,"229 West St, Portland, OR 97035" -254932,Wired Headphones,1,11.99,09/26/19 15:37,"706 Forest St, New York City, NY 10001" -254933,34in Ultrawide Monitor,1,379.99,09/27/19 09:10,"380 Meadow St, Boston, MA 02215" -254934,USB-C Charging Cable,1,11.95,09/09/19 11:50,"949 Lake St, Seattle, WA 98101" -254935,27in 4K Gaming Monitor,1,389.99,09/07/19 08:49,"953 4th St, San Francisco, CA 94016" -254936,AA Batteries (4-pack),1,3.84,09/23/19 23:15,"93 1st St, Los Angeles, CA 90001" -254937,USB-C Charging Cable,1,11.95,09/01/19 12:07,"906 Lincoln St, Atlanta, GA 30301" -254938,ThinkPad Laptop,1,999.99,09/09/19 18:01,"506 Cedar St, Los Angeles, CA 90001" -254939,Apple Airpods Headphones,1,150,09/19/19 16:09,"17 2nd St, New York City, NY 10001" -254940,Lightning Charging Cable,1,14.95,09/04/19 19:01,"615 West St, Los Angeles, CA 90001" -254941,Apple Airpods Headphones,1,150,09/12/19 12:19,"880 River St, Boston, MA 02215" -254942,USB-C Charging Cable,1,11.95,09/30/19 11:43,"519 Lakeview St, Seattle, WA 98101" -254943,Google Phone,1,600,09/18/19 17:59,"250 Dogwood St, New York City, NY 10001" -254944,AA Batteries (4-pack),1,3.84,09/01/19 20:14,"435 Dogwood St, Portland, OR 97035" -254945,Apple Airpods Headphones,1,150,09/23/19 18:09,"13 Hill St, Austin, TX 73301" -254945,Apple Airpods Headphones,1,150,09/23/19 18:09,"13 Hill St, Austin, TX 73301" -254946,Wired Headphones,1,11.99,09/28/19 20:41,"143 14th St, New York City, NY 10001" -254947,Google Phone,1,600,09/02/19 22:09,"384 Walnut St, Boston, MA 02215" -254948,AA Batteries (4-pack),1,3.84,09/26/19 18:01,"916 4th St, Seattle, WA 98101" -254949,Apple Airpods Headphones,1,150,09/20/19 09:52,"602 11th St, San Francisco, CA 94016" -254950,Lightning Charging Cable,1,14.95,09/28/19 17:15,"936 Maple St, New York City, NY 10001" -254951,Lightning Charging Cable,1,14.95,09/12/19 12:40,"294 Sunset St, San Francisco, CA 94016" -254952,AAA Batteries (4-pack),1,2.99,09/29/19 22:45,"739 Lakeview St, Los Angeles, CA 90001" -254952,34in Ultrawide Monitor,1,379.99,09/29/19 22:45,"739 Lakeview St, Los Angeles, CA 90001" -254953,AA Batteries (4-pack),1,3.84,09/13/19 13:13,"891 Lincoln St, Los Angeles, CA 90001" -254953,Google Phone,1,600,09/13/19 13:13,"891 Lincoln St, Los Angeles, CA 90001" -254954,AAA Batteries (4-pack),3,2.99,09/17/19 00:31,"245 Elm St, Seattle, WA 98101" -254955,AA Batteries (4-pack),1,3.84,09/11/19 15:11,"466 13th St, San Francisco, CA 94016" -254956,Bose SoundSport Headphones,1,99.99,09/22/19 23:11,"587 Jefferson St, Austin, TX 73301" -254957,34in Ultrawide Monitor,1,379.99,09/17/19 21:35,"243 5th St, Portland, OR 97035" -254958,34in Ultrawide Monitor,1,379.99,09/07/19 07:19,"409 Walnut St, San Francisco, CA 94016" -254959,20in Monitor,1,109.99,09/30/19 01:30,"387 Adams St, Seattle, WA 98101" -254960,Flatscreen TV,1,300,09/14/19 00:33,"942 10th St, Boston, MA 02215" -254961,Apple Airpods Headphones,1,150,09/19/19 21:31,"721 11th St, Boston, MA 02215" -254962,Google Phone,1,600,09/16/19 09:55,"171 Church St, Portland, ME 04101" -254963,Wired Headphones,1,11.99,09/02/19 12:49,"639 River St, San Francisco, CA 94016" -254964,Apple Airpods Headphones,2,150,09/15/19 17:05,"171 Elm St, San Francisco, CA 94016" -254965,AA Batteries (4-pack),1,3.84,09/24/19 23:53,"126 4th St, Seattle, WA 98101" -254966,Apple Airpods Headphones,1,150,09/26/19 19:33,"687 Highland St, San Francisco, CA 94016" -254967,27in FHD Monitor,1,149.99,09/12/19 12:54,"383 8th St, Los Angeles, CA 90001" -254968,Lightning Charging Cable,2,14.95,09/04/19 16:12,"167 5th St, Los Angeles, CA 90001" -254969,Flatscreen TV,1,300,09/07/19 11:37,"421 8th St, San Francisco, CA 94016" -254970,AAA Batteries (4-pack),1,2.99,09/17/19 21:39,"46 Lakeview St, New York City, NY 10001" -254971,Macbook Pro Laptop,1,1700,09/04/19 11:17,"524 Johnson St, San Francisco, CA 94016" -254972,USB-C Charging Cable,2,11.95,09/20/19 08:06,"108 Willow St, San Francisco, CA 94016" -254973,27in FHD Monitor,1,149.99,09/18/19 12:01,"528 Church St, San Francisco, CA 94016" -254974,AA Batteries (4-pack),1,3.84,09/25/19 10:30,"637 2nd St, Boston, MA 02215" -254975,AAA Batteries (4-pack),3,2.99,09/17/19 21:03,"366 Cedar St, Portland, OR 97035" -254976,USB-C Charging Cable,2,11.95,09/26/19 17:14,"535 Spruce St, Boston, MA 02215" -254977,27in FHD Monitor,1,149.99,09/21/19 23:09,"328 Hill St, San Francisco, CA 94016" -254978,20in Monitor,1,109.99,09/20/19 12:39,"642 12th St, Dallas, TX 75001" -254979,Lightning Charging Cable,1,14.95,09/20/19 19:06,"292 Pine St, Austin, TX 73301" -254980,Wired Headphones,1,11.99,09/23/19 18:03,"162 Adams St, San Francisco, CA 94016" -254981,USB-C Charging Cable,2,11.95,09/28/19 14:28,"332 Wilson St, Los Angeles, CA 90001" -254982,AAA Batteries (4-pack),5,2.99,09/21/19 12:16,"896 Park St, San Francisco, CA 94016" -254983,Bose SoundSport Headphones,1,99.99,09/12/19 18:29,"219 Hickory St, San Francisco, CA 94016" -254984,iPhone,1,700,09/08/19 01:27,"64 Washington St, New York City, NY 10001" -254984,Lightning Charging Cable,1,14.95,09/08/19 01:27,"64 Washington St, New York City, NY 10001" -254985,Lightning Charging Cable,1,14.95,09/12/19 10:25,"816 12th St, Austin, TX 73301" -254986,USB-C Charging Cable,1,11.95,09/28/19 09:48,"843 Hickory St, New York City, NY 10001" -254987,Macbook Pro Laptop,1,1700,09/25/19 00:49,"324 Church St, San Francisco, CA 94016" -254988,27in FHD Monitor,1,149.99,09/15/19 14:18,"927 Forest St, Los Angeles, CA 90001" -254989,Lightning Charging Cable,1,14.95,09/29/19 06:55,"268 12th St, San Francisco, CA 94016" -254990,Apple Airpods Headphones,1,150,09/02/19 03:02,"964 Center St, San Francisco, CA 94016" -254991,AA Batteries (4-pack),2,3.84,09/08/19 14:33,"716 River St, San Francisco, CA 94016" -254992,27in FHD Monitor,1,149.99,09/22/19 20:08,"829 Center St, Boston, MA 02215" -254993,Wired Headphones,1,11.99,09/20/19 15:55,"708 Madison St, San Francisco, CA 94016" -254994,Wired Headphones,1,11.99,09/26/19 17:40,"459 Sunset St, Portland, OR 97035" -254995,AAA Batteries (4-pack),1,2.99,09/14/19 17:58,"502 Madison St, Dallas, TX 75001" -254996,Google Phone,1,600,09/20/19 09:35,"695 Church St, New York City, NY 10001" -254997,Lightning Charging Cable,1,14.95,09/26/19 16:19,"660 Walnut St, Atlanta, GA 30301" -254998,Macbook Pro Laptop,1,1700,09/24/19 15:41,"548 Lincoln St, New York City, NY 10001" -254999,Bose SoundSport Headphones,1,99.99,09/04/19 16:25,"816 Wilson St, San Francisco, CA 94016" -255000,Apple Airpods Headphones,1,150,09/06/19 14:59,"532 Lake St, Seattle, WA 98101" -255001,AAA Batteries (4-pack),1,2.99,09/16/19 23:35,"733 Elm St, Boston, MA 02215" -255002,AA Batteries (4-pack),2,3.84,09/27/19 18:51,"715 2nd St, San Francisco, CA 94016" -255003,27in FHD Monitor,1,149.99,09/01/19 16:08,"608 Lake St, Dallas, TX 75001" -255004,Lightning Charging Cable,1,14.95,09/28/19 05:38,"468 4th St, Dallas, TX 75001" -255005,iPhone,1,700,09/02/19 00:19,"25 West St, Los Angeles, CA 90001" -255006,AAA Batteries (4-pack),1,2.99,09/30/19 21:37,"619 Elm St, Boston, MA 02215" -,,,,, -255007,AA Batteries (4-pack),1,3.84,09/13/19 13:38,"175 Maple St, Boston, MA 02215" -255008,USB-C Charging Cable,1,11.95,09/21/19 11:00,"97 14th St, Boston, MA 02215" -255009,AA Batteries (4-pack),2,3.84,09/23/19 22:43,"861 South St, New York City, NY 10001" -255010,Vareebadd Phone,1,400,09/13/19 22:19,"361 Adams St, Atlanta, GA 30301" -255011,Google Phone,1,600,09/08/19 22:35,"977 Hill St, San Francisco, CA 94016" -255011,Bose SoundSport Headphones,1,99.99,09/08/19 22:35,"977 Hill St, San Francisco, CA 94016" -255012,AAA Batteries (4-pack),1,2.99,09/14/19 17:10,"173 9th St, Los Angeles, CA 90001" -255013,AAA Batteries (4-pack),3,2.99,09/17/19 12:12,"450 Washington St, Austin, TX 73301" -255014,Macbook Pro Laptop,1,1700,09/23/19 01:33,"385 Park St, Boston, MA 02215" -255015,Wired Headphones,1,11.99,09/23/19 21:22,"759 Walnut St, Dallas, TX 75001" -255016,iPhone,1,700,09/06/19 00:46,"437 Church St, Atlanta, GA 30301" -255017,AA Batteries (4-pack),1,3.84,09/05/19 10:36,"594 Park St, San Francisco, CA 94016" -255018,AA Batteries (4-pack),1,3.84,09/24/19 22:05,"678 South St, San Francisco, CA 94016" -255019,Apple Airpods Headphones,1,150,09/09/19 21:15,"833 Jefferson St, Los Angeles, CA 90001" -255020,iPhone,1,700,09/28/19 12:23,"339 Maple St, San Francisco, CA 94016" -255021,AA Batteries (4-pack),1,3.84,09/27/19 14:58,"352 Meadow St, San Francisco, CA 94016" -255022,AA Batteries (4-pack),1,3.84,09/27/19 20:54,"887 Walnut St, Dallas, TX 75001" -255023,Wired Headphones,1,11.99,09/14/19 12:21,"968 12th St, Austin, TX 73301" -255024,27in FHD Monitor,1,149.99,09/17/19 20:30,"562 Cherry St, New York City, NY 10001" -255025,ThinkPad Laptop,1,999.99,09/05/19 18:02,"665 Spruce St, Boston, MA 02215" -255026,Google Phone,1,600,09/28/19 13:13,"634 5th St, New York City, NY 10001" -255027,Lightning Charging Cable,2,14.95,09/13/19 01:34,"40 Cedar St, Atlanta, GA 30301" -255028,Lightning Charging Cable,1,14.95,09/18/19 01:18,"684 Lakeview St, Atlanta, GA 30301" -255029,Lightning Charging Cable,1,14.95,09/24/19 21:02,"741 Main St, Dallas, TX 75001" -255030,27in 4K Gaming Monitor,1,389.99,09/29/19 08:50,"222 10th St, Seattle, WA 98101" -255031,Wired Headphones,1,11.99,09/29/19 20:39,"125 Forest St, Atlanta, GA 30301" -255032,AA Batteries (4-pack),1,3.84,09/08/19 12:01,"355 Cherry St, Dallas, TX 75001" -255033,Lightning Charging Cable,1,14.95,09/03/19 20:14,"687 Walnut St, Dallas, TX 75001" -255034,AAA Batteries (4-pack),1,2.99,09/13/19 13:06,"283 Adams St, San Francisco, CA 94016" -255035,AAA Batteries (4-pack),1,2.99,09/30/19 14:32,"584 2nd St, New York City, NY 10001" -255036,AA Batteries (4-pack),1,3.84,09/17/19 12:50,"844 North St, Portland, OR 97035" -255037,AA Batteries (4-pack),1,3.84,09/08/19 20:22,"143 North St, New York City, NY 10001" -255038,Wired Headphones,1,11.99,09/27/19 13:23,"493 Dogwood St, Los Angeles, CA 90001" -255039,27in FHD Monitor,1,149.99,09/01/19 18:29,"993 Church St, New York City, NY 10001" -255040,27in FHD Monitor,1,149.99,09/10/19 12:04,"396 2nd St, Seattle, WA 98101" -255041,AA Batteries (4-pack),2,3.84,09/03/19 22:40,"387 Cedar St, Boston, MA 02215" -255042,Apple Airpods Headphones,1,150,09/18/19 11:31,"837 North St, Atlanta, GA 30301" -255043,Apple Airpods Headphones,1,150,09/11/19 17:32,"4 Jackson St, Seattle, WA 98101" -255044,34in Ultrawide Monitor,1,379.99,09/24/19 13:32,"47 Park St, Seattle, WA 98101" -255045,AAA Batteries (4-pack),1,2.99,09/11/19 12:48,"213 West St, Los Angeles, CA 90001" -255046,AAA Batteries (4-pack),1,2.99,09/06/19 13:00,"384 Lake St, San Francisco, CA 94016" -255047,LG Dryer,1,600.0,09/09/19 08:13,"890 7th St, New York City, NY 10001" -255048,USB-C Charging Cable,1,11.95,09/27/19 12:23,"959 West St, Portland, ME 04101" -255049,Bose SoundSport Headphones,1,99.99,09/10/19 22:53,"315 Cherry St, New York City, NY 10001" -255050,Lightning Charging Cable,1,14.95,09/26/19 19:17,"714 Meadow St, Seattle, WA 98101" -255051,Apple Airpods Headphones,1,150,09/10/19 13:18,"846 2nd St, New York City, NY 10001" -255052,iPhone,1,700,09/05/19 21:47,"746 7th St, Atlanta, GA 30301" -255052,Wired Headphones,1,11.99,09/05/19 21:47,"746 7th St, Atlanta, GA 30301" -255053,USB-C Charging Cable,1,11.95,09/07/19 21:56,"118 Highland St, Seattle, WA 98101" -255054,AA Batteries (4-pack),1,3.84,09/10/19 10:06,"505 8th St, Dallas, TX 75001" -255055,Macbook Pro Laptop,1,1700,09/09/19 20:35,"669 Lake St, Portland, OR 97035" -255056,LG Washing Machine,1,600.0,09/07/19 17:13,"861 13th St, Dallas, TX 75001" -255057,ThinkPad Laptop,1,999.99,09/03/19 20:11,"736 Forest St, New York City, NY 10001" -255058,Wired Headphones,1,11.99,09/20/19 17:30,"745 7th St, Atlanta, GA 30301" -255059,Lightning Charging Cable,1,14.95,09/05/19 21:55,"95 9th St, San Francisco, CA 94016" -255060,AAA Batteries (4-pack),3,2.99,09/28/19 11:51,"495 South St, Boston, MA 02215" -255060,20in Monitor,1,109.99,09/28/19 11:51,"495 South St, Boston, MA 02215" -255061,Apple Airpods Headphones,1,150,09/06/19 13:25,"454 West St, San Francisco, CA 94016" -255062,AAA Batteries (4-pack),1,2.99,09/25/19 12:49,"677 Maple St, Dallas, TX 75001" -255063,Wired Headphones,1,11.99,09/29/19 07:32,"814 Jefferson St, San Francisco, CA 94016" -255064,USB-C Charging Cable,2,11.95,09/07/19 14:03,"55 10th St, Los Angeles, CA 90001" -255065,Lightning Charging Cable,1,14.95,09/02/19 18:45,"540 Maple St, Boston, MA 02215" -255066,AAA Batteries (4-pack),1,2.99,09/05/19 14:13,"878 4th St, Los Angeles, CA 90001" -255067,Vareebadd Phone,1,400,09/06/19 10:38,"554 Highland St, Los Angeles, CA 90001" -255068,USB-C Charging Cable,1,11.95,09/02/19 08:45,"108 Ridge St, Austin, TX 73301" -255069,AA Batteries (4-pack),1,3.84,09/07/19 11:59,"594 Willow St, Seattle, WA 98101" -255070,Lightning Charging Cable,1,14.95,09/13/19 09:25,"966 Ridge St, San Francisco, CA 94016" -255071,27in FHD Monitor,1,149.99,09/20/19 19:11,"743 Forest St, New York City, NY 10001" -255072,USB-C Charging Cable,1,11.95,09/20/19 11:10,"219 Madison St, Boston, MA 02215" -255073,Apple Airpods Headphones,1,150,09/14/19 19:55,"34 Center St, San Francisco, CA 94016" -255074,USB-C Charging Cable,1,11.95,09/08/19 22:27,"344 13th St, Atlanta, GA 30301" -255075,Google Phone,1,600,09/29/19 16:21,"247 Madison St, New York City, NY 10001" -255075,Wired Headphones,1,11.99,09/29/19 16:21,"247 Madison St, New York City, NY 10001" -255076,iPhone,1,700,09/22/19 00:06,"908 8th St, Austin, TX 73301" -255077,27in 4K Gaming Monitor,1,389.99,09/22/19 10:34,"331 Cedar St, San Francisco, CA 94016" -255078,20in Monitor,1,109.99,09/19/19 21:55,"831 River St, Atlanta, GA 30301" -255079,Wired Headphones,1,11.99,09/24/19 17:03,"571 Center St, New York City, NY 10001" -255080,AA Batteries (4-pack),1,3.84,09/18/19 22:27,"628 Willow St, Austin, TX 73301" -255081,USB-C Charging Cable,1,11.95,09/22/19 12:22,"98 Center St, Seattle, WA 98101" -255082,Bose SoundSport Headphones,1,99.99,09/21/19 15:15,"785 Highland St, New York City, NY 10001" -255083,Lightning Charging Cable,1,14.95,09/19/19 18:42,"198 Walnut St, New York City, NY 10001" -255084,Google Phone,1,600,09/19/19 12:13,"722 13th St, San Francisco, CA 94016" -255085,AA Batteries (4-pack),1,3.84,09/26/19 22:30,"15 Lakeview St, Boston, MA 02215" -255086,27in 4K Gaming Monitor,1,389.99,09/12/19 22:21,"269 7th St, San Francisco, CA 94016" -255087,27in 4K Gaming Monitor,1,389.99,09/29/19 22:28,"202 14th St, San Francisco, CA 94016" -255088,USB-C Charging Cable,1,11.95,09/11/19 09:49,"458 Walnut St, San Francisco, CA 94016" -255089,Lightning Charging Cable,1,14.95,09/01/19 14:11,"154 Spruce St, Atlanta, GA 30301" -255090,Wired Headphones,1,11.99,09/13/19 20:21,"311 West St, Seattle, WA 98101" -255091,AA Batteries (4-pack),1,3.84,09/29/19 10:39,"117 2nd St, San Francisco, CA 94016" -255092,Wired Headphones,2,11.99,09/11/19 12:20,"940 Washington St, Dallas, TX 75001" -255092,AA Batteries (4-pack),2,3.84,09/11/19 12:20,"940 Washington St, Dallas, TX 75001" -255093,27in FHD Monitor,1,149.99,09/24/19 16:28,"905 4th St, New York City, NY 10001" -255094,ThinkPad Laptop,1,999.99,09/27/19 19:32,"816 6th St, New York City, NY 10001" -255095,Google Phone,1,600,09/30/19 18:22,"360 South St, Austin, TX 73301" -255095,USB-C Charging Cable,1,11.95,09/30/19 18:22,"360 South St, Austin, TX 73301" -255096,Wired Headphones,1,11.99,09/22/19 11:15,"59 Maple St, San Francisco, CA 94016" -255097,AAA Batteries (4-pack),1,2.99,09/19/19 15:04,"270 Meadow St, New York City, NY 10001" -255098,AA Batteries (4-pack),1,3.84,09/05/19 17:13,"869 Wilson St, Seattle, WA 98101" -255099,iPhone,1,700,09/18/19 12:35,"332 Chestnut St, San Francisco, CA 94016" -255099,Lightning Charging Cable,1,14.95,09/18/19 12:35,"332 Chestnut St, San Francisco, CA 94016" -255099,Wired Headphones,1,11.99,09/18/19 12:35,"332 Chestnut St, San Francisco, CA 94016" -255100,27in FHD Monitor,1,149.99,09/08/19 07:06,"955 River St, Los Angeles, CA 90001" -255101,AA Batteries (4-pack),1,3.84,09/04/19 10:49,"48 River St, San Francisco, CA 94016" -255102,Wired Headphones,1,11.99,09/25/19 11:34,"862 1st St, San Francisco, CA 94016" -255103,Bose SoundSport Headphones,1,99.99,09/19/19 19:07,"906 Wilson St, Seattle, WA 98101" -255104,AAA Batteries (4-pack),2,2.99,09/20/19 20:59,"519 North St, Portland, OR 97035" -255105,AA Batteries (4-pack),3,3.84,09/04/19 21:14,"96 Center St, Portland, OR 97035" -255106,Wired Headphones,2,11.99,09/15/19 03:04,"757 West St, Austin, TX 73301" -255107,AAA Batteries (4-pack),1,2.99,09/10/19 15:08,"454 Lincoln St, New York City, NY 10001" -255108,AAA Batteries (4-pack),1,2.99,09/06/19 13:49,"560 Lake St, New York City, NY 10001" -255109,ThinkPad Laptop,1,999.99,09/06/19 13:20,"914 Johnson St, Atlanta, GA 30301" -255110,iPhone,1,700,09/09/19 17:30,"573 13th St, Dallas, TX 75001" -255111,AA Batteries (4-pack),1,3.84,09/22/19 10:57,"509 Jefferson St, Boston, MA 02215" -255112,Lightning Charging Cable,1,14.95,09/15/19 23:41,"199 Jackson St, Boston, MA 02215" -255113,27in FHD Monitor,1,149.99,09/30/19 08:13,"586 Walnut St, Boston, MA 02215" -255114,Apple Airpods Headphones,1,150,09/28/19 13:42,"652 Elm St, Austin, TX 73301" -255115,Wired Headphones,1,11.99,09/09/19 21:38,"352 Church St, San Francisco, CA 94016" -255116,Bose SoundSport Headphones,1,99.99,09/29/19 20:01,"878 4th St, Atlanta, GA 30301" -255117,20in Monitor,1,109.99,09/11/19 17:18,"971 West St, San Francisco, CA 94016" -255118,Wired Headphones,1,11.99,09/07/19 22:16,"929 Willow St, Los Angeles, CA 90001" -255119,27in 4K Gaming Monitor,1,389.99,09/25/19 17:31,"821 Jackson St, Atlanta, GA 30301" -255120,USB-C Charging Cable,2,11.95,09/05/19 22:16,"276 Washington St, Austin, TX 73301" -255121,34in Ultrawide Monitor,1,379.99,09/28/19 17:54,"375 Wilson St, Dallas, TX 75001" -255122,Wired Headphones,1,11.99,09/21/19 13:43,"794 Maple St, Boston, MA 02215" -255123,Lightning Charging Cable,1,14.95,09/27/19 19:22,"784 Maple St, Austin, TX 73301" -255124,20in Monitor,1,109.99,09/20/19 12:34,"977 Chestnut St, New York City, NY 10001" -255125,USB-C Charging Cable,1,11.95,09/10/19 12:39,"151 13th St, Dallas, TX 75001" -255126,AAA Batteries (4-pack),1,2.99,09/21/19 16:21,"828 Maple St, Atlanta, GA 30301" -255127,USB-C Charging Cable,1,11.95,09/10/19 16:10,"944 4th St, San Francisco, CA 94016" -255128,USB-C Charging Cable,1,11.95,09/20/19 22:29,"812 7th St, Boston, MA 02215" -255129,Lightning Charging Cable,1,14.95,09/11/19 05:00,"171 Cherry St, New York City, NY 10001" -255130,USB-C Charging Cable,1,11.95,09/01/19 13:40,"74 5th St, Seattle, WA 98101" -255131,Lightning Charging Cable,1,14.95,09/24/19 21:17,"391 6th St, Los Angeles, CA 90001" -255132,AAA Batteries (4-pack),1,2.99,09/14/19 14:53,"473 8th St, Los Angeles, CA 90001" -255133,Lightning Charging Cable,1,14.95,09/02/19 05:44,"533 Lake St, Los Angeles, CA 90001" -255134,Apple Airpods Headphones,1,150,09/10/19 23:14,"857 Main St, Austin, TX 73301" -255135,Apple Airpods Headphones,1,150,09/29/19 10:33,"529 Ridge St, New York City, NY 10001" -255136,iPhone,1,700,09/02/19 20:04,"157 4th St, Los Angeles, CA 90001" -255137,Lightning Charging Cable,1,14.95,09/09/19 14:20,"44 Ridge St, San Francisco, CA 94016" -255137,LG Washing Machine,1,600.0,09/09/19 14:20,"44 Ridge St, San Francisco, CA 94016" -255138,Apple Airpods Headphones,1,150,09/11/19 08:54,"521 Ridge St, San Francisco, CA 94016" -255139,Lightning Charging Cable,1,14.95,09/10/19 22:28,"13 12th St, New York City, NY 10001" -255140,Lightning Charging Cable,1,14.95,09/24/19 11:47,"458 5th St, San Francisco, CA 94016" -255141,Apple Airpods Headphones,1,150,09/17/19 00:18,"709 Jefferson St, San Francisco, CA 94016" -255142,AA Batteries (4-pack),1,3.84,09/27/19 19:31,"561 Cedar St, Portland, OR 97035" -255143,Wired Headphones,1,11.99,09/29/19 12:38,"420 Forest St, Los Angeles, CA 90001" -255144,20in Monitor,1,109.99,09/19/19 13:47,"473 Chestnut St, San Francisco, CA 94016" -255145,AA Batteries (4-pack),1,3.84,09/24/19 14:07,"249 Spruce St, Atlanta, GA 30301" -255146,Bose SoundSport Headphones,1,99.99,09/11/19 15:44,"992 Sunset St, Seattle, WA 98101" -255147,Wired Headphones,1,11.99,09/02/19 02:21,"800 Walnut St, San Francisco, CA 94016" -255148,AAA Batteries (4-pack),1,2.99,09/14/19 11:42,"709 5th St, San Francisco, CA 94016" -255149,27in 4K Gaming Monitor,1,389.99,09/29/19 10:07,"144 4th St, Los Angeles, CA 90001" -255150,Macbook Pro Laptop,1,1700,09/12/19 12:33,"992 Elm St, New York City, NY 10001" -255151,27in FHD Monitor,1,149.99,09/19/19 20:51,"134 14th St, Boston, MA 02215" -255152,AA Batteries (4-pack),1,3.84,09/27/19 11:24,"235 Wilson St, Austin, TX 73301" -255153,AAA Batteries (4-pack),1,2.99,09/13/19 22:46,"919 6th St, New York City, NY 10001" -255154,Google Phone,1,600,09/09/19 18:42,"467 Elm St, Dallas, TX 75001" -255154,USB-C Charging Cable,2,11.95,09/09/19 18:42,"467 Elm St, Dallas, TX 75001" -255155,USB-C Charging Cable,1,11.95,09/02/19 09:42,"67 Maple St, Portland, ME 04101" -255156,AA Batteries (4-pack),1,3.84,09/10/19 13:26,"85 Lakeview St, San Francisco, CA 94016" -255157,iPhone,1,700,09/27/19 15:02,"875 6th St, New York City, NY 10001" -255158,34in Ultrawide Monitor,1,379.99,09/06/19 21:17,"743 Maple St, New York City, NY 10001" -255159,AA Batteries (4-pack),1,3.84,09/09/19 01:20,"945 Lakeview St, Los Angeles, CA 90001" -255160,27in 4K Gaming Monitor,1,389.99,09/22/19 08:41,"99 Dogwood St, Boston, MA 02215" -255161,Lightning Charging Cable,1,14.95,09/19/19 21:27,"806 Lincoln St, New York City, NY 10001" -255162,iPhone,1,700,09/16/19 10:55,"450 6th St, Los Angeles, CA 90001" -255163,Wired Headphones,1,11.99,09/08/19 13:25,"393 Forest St, San Francisco, CA 94016" -255164,USB-C Charging Cable,1,11.95,09/12/19 12:32,"162 12th St, Dallas, TX 75001" -255165,AA Batteries (4-pack),1,3.84,09/30/19 12:15,"491 Forest St, San Francisco, CA 94016" -255166,LG Washing Machine,1,600.0,09/17/19 13:24,"562 Meadow St, Seattle, WA 98101" -255167,USB-C Charging Cable,1,11.95,09/18/19 15:22,"736 12th St, Austin, TX 73301" -255168,Lightning Charging Cable,1,14.95,09/27/19 12:16,"280 Meadow St, Austin, TX 73301" -255169,Google Phone,1,600,09/07/19 05:07,"602 Meadow St, Austin, TX 73301" -255170,Flatscreen TV,1,300,09/01/19 23:03,"896 River St, New York City, NY 10001" -255171,Lightning Charging Cable,1,14.95,09/17/19 15:13,"262 Center St, Los Angeles, CA 90001" -255172,Wired Headphones,2,11.99,09/22/19 00:38,"559 Meadow St, New York City, NY 10001" -255173,Apple Airpods Headphones,1,150,09/29/19 21:49,"587 North St, San Francisco, CA 94016" -255174,AA Batteries (4-pack),3,3.84,09/04/19 12:56,"849 Elm St, Los Angeles, CA 90001" -255175,AA Batteries (4-pack),1,3.84,09/16/19 11:45,"777 Dogwood St, Los Angeles, CA 90001" -255176,Google Phone,1,600,09/13/19 13:10,"306 Meadow St, Los Angeles, CA 90001" -255177,Bose SoundSport Headphones,1,99.99,09/18/19 22:04,"832 10th St, Portland, ME 04101" -255178,AA Batteries (4-pack),1,3.84,09/29/19 12:42,"757 11th St, Dallas, TX 75001" -255179,iPhone,1,700,09/30/19 12:55,"725 Jackson St, San Francisco, CA 94016" -255180,Lightning Charging Cable,1,14.95,09/17/19 16:20,"426 Jackson St, Atlanta, GA 30301" -255181,Wired Headphones,1,11.99,09/26/19 09:01,"615 6th St, Atlanta, GA 30301" -255182,Wired Headphones,1,11.99,09/28/19 06:18,"28 River St, Boston, MA 02215" -255183,AA Batteries (4-pack),1,3.84,09/07/19 15:42,"518 Johnson St, New York City, NY 10001" -255184,27in 4K Gaming Monitor,1,389.99,09/01/19 09:15,"483 Center St, Los Angeles, CA 90001" -255185,34in Ultrawide Monitor,1,379.99,09/03/19 16:21,"821 Jackson St, Los Angeles, CA 90001" -255185,AAA Batteries (4-pack),1,2.99,09/03/19 16:21,"821 Jackson St, Los Angeles, CA 90001" -255186,27in FHD Monitor,1,149.99,09/18/19 19:32,"201 Spruce St, New York City, NY 10001" -255187,USB-C Charging Cable,1,11.95,09/13/19 09:50,"277 9th St, San Francisco, CA 94016" -255188,AA Batteries (4-pack),1,3.84,09/12/19 15:12,"252 Madison St, San Francisco, CA 94016" -255189,34in Ultrawide Monitor,1,379.99,09/27/19 14:01,"64 Adams St, Boston, MA 02215" -255190,27in 4K Gaming Monitor,1,389.99,09/24/19 02:07,"484 Maple St, New York City, NY 10001" -255191,AA Batteries (4-pack),2,3.84,09/07/19 13:59,"196 Jackson St, Dallas, TX 75001" -255192,27in 4K Gaming Monitor,1,389.99,09/30/19 06:04,"492 Chestnut St, San Francisco, CA 94016" -255193,Lightning Charging Cable,1,14.95,09/04/19 18:11,"76 13th St, New York City, NY 10001" -255194,USB-C Charging Cable,1,11.95,09/17/19 17:40,"921 12th St, New York City, NY 10001" -255195,Lightning Charging Cable,1,14.95,09/24/19 11:34,"679 Park St, Boston, MA 02215" -255196,Lightning Charging Cable,1,14.95,09/12/19 03:45,"689 6th St, Portland, OR 97035" -255197,USB-C Charging Cable,1,11.95,09/02/19 19:48,"93 7th St, Portland, ME 04101" -255198,Wired Headphones,1,11.99,09/27/19 12:57,"464 Hickory St, San Francisco, CA 94016" -255199,iPhone,1,700,09/15/19 13:43,"133 Wilson St, San Francisco, CA 94016" -255199,Wired Headphones,1,11.99,09/15/19 13:43,"133 Wilson St, San Francisco, CA 94016" -255200,AA Batteries (4-pack),2,3.84,09/01/19 13:00,"961 Madison St, Los Angeles, CA 90001" -255201,20in Monitor,1,109.99,09/11/19 10:37,"128 Cedar St, Portland, OR 97035" -255202,27in 4K Gaming Monitor,1,389.99,09/01/19 18:35,"797 Johnson St, San Francisco, CA 94016" -255203,Lightning Charging Cable,1,14.95,09/26/19 19:11,"483 Johnson St, Atlanta, GA 30301" -255204,AA Batteries (4-pack),1,3.84,09/16/19 21:36,"951 River St, Atlanta, GA 30301" -255205,USB-C Charging Cable,2,11.95,09/11/19 10:07,"591 North St, Austin, TX 73301" -255206,USB-C Charging Cable,1,11.95,09/17/19 19:07,"747 Spruce St, New York City, NY 10001" -255207,AAA Batteries (4-pack),5,2.99,09/03/19 12:44,"845 Pine St, Atlanta, GA 30301" -255208,Apple Airpods Headphones,1,150,09/03/19 21:45,"987 Adams St, Seattle, WA 98101" -255209,AAA Batteries (4-pack),2,2.99,09/29/19 08:37,"855 North St, Los Angeles, CA 90001" -255210,USB-C Charging Cable,1,11.95,09/02/19 15:15,"959 Cedar St, New York City, NY 10001" -255211,Bose SoundSport Headphones,1,99.99,09/21/19 19:19,"338 Church St, Dallas, TX 75001" -255212,Lightning Charging Cable,1,14.95,09/19/19 19:21,"554 14th St, San Francisco, CA 94016" -255213,Lightning Charging Cable,1,14.95,09/22/19 10:04,"40 River St, Los Angeles, CA 90001" -255214,Wired Headphones,1,11.99,09/17/19 11:24,"190 14th St, San Francisco, CA 94016" -255215,USB-C Charging Cable,1,11.95,09/06/19 10:40,"483 14th St, San Francisco, CA 94016" -255216,iPhone,1,700,09/01/19 20:52,"451 Lakeview St, San Francisco, CA 94016" -255217,27in FHD Monitor,1,149.99,09/09/19 22:34,"756 Dogwood St, Los Angeles, CA 90001" -255218,AAA Batteries (4-pack),2,2.99,09/06/19 22:03,"995 Hickory St, San Francisco, CA 94016" -255219,AA Batteries (4-pack),1,3.84,09/25/19 07:39,"43 Washington St, Portland, OR 97035" -255220,AA Batteries (4-pack),1,3.84,09/22/19 21:28,"481 Hill St, San Francisco, CA 94016" -255221,Wired Headphones,1,11.99,09/24/19 10:10,"89 Park St, Seattle, WA 98101" -255222,Lightning Charging Cable,1,14.95,09/12/19 13:15,"14 River St, Seattle, WA 98101" -255223,ThinkPad Laptop,1,999.99,09/27/19 16:45,"169 Hill St, New York City, NY 10001" -255224,AA Batteries (4-pack),2,3.84,09/18/19 15:01,"298 Hill St, New York City, NY 10001" -255225,20in Monitor,1,109.99,09/07/19 13:45,"17 4th St, Austin, TX 73301" -255226,Flatscreen TV,1,300,09/11/19 13:22,"846 Spruce St, Austin, TX 73301" -255227,Wired Headphones,1,11.99,09/30/19 20:46,"69 14th St, Austin, TX 73301" -255228,Wired Headphones,1,11.99,09/05/19 16:53,"235 Sunset St, San Francisco, CA 94016" -255229,AA Batteries (4-pack),2,3.84,09/16/19 21:55,"683 Meadow St, San Francisco, CA 94016" -255230,Wired Headphones,1,11.99,09/02/19 09:29,"971 Lakeview St, Boston, MA 02215" -255231,Apple Airpods Headphones,1,150,09/03/19 15:29,"868 Main St, Portland, OR 97035" -255232,Bose SoundSport Headphones,1,99.99,09/10/19 15:54,"841 4th St, Boston, MA 02215" -255233,27in FHD Monitor,1,149.99,09/11/19 07:16,"855 9th St, New York City, NY 10001" -255234,Wired Headphones,1,11.99,09/05/19 16:01,"22 Lakeview St, Atlanta, GA 30301" -255235,AA Batteries (4-pack),1,3.84,09/27/19 00:22,"116 10th St, Los Angeles, CA 90001" -255236,USB-C Charging Cable,1,11.95,09/22/19 16:12,"780 River St, San Francisco, CA 94016" -255237,AA Batteries (4-pack),3,3.84,09/23/19 12:28,"652 Center St, San Francisco, CA 94016" -255238,USB-C Charging Cable,1,11.95,09/03/19 17:57,"432 13th St, San Francisco, CA 94016" -255239,27in FHD Monitor,1,149.99,09/15/19 07:28,"439 Sunset St, New York City, NY 10001" -255240,Wired Headphones,1,11.99,09/11/19 22:51,"488 Jefferson St, San Francisco, CA 94016" -255241,Lightning Charging Cable,1,14.95,09/03/19 18:11,"85 13th St, New York City, NY 10001" -255242,USB-C Charging Cable,1,11.95,09/14/19 17:46,"236 Cedar St, Los Angeles, CA 90001" -255243,USB-C Charging Cable,1,11.95,09/05/19 20:55,"990 2nd St, Los Angeles, CA 90001" -255244,Lightning Charging Cable,1,14.95,09/11/19 14:41,"716 Adams St, San Francisco, CA 94016" -255245,20in Monitor,1,109.99,09/07/19 00:20,"523 6th St, Los Angeles, CA 90001" -255246,Lightning Charging Cable,1,14.95,09/27/19 20:49,"80 Washington St, Boston, MA 02215" -255247,Google Phone,1,600,09/11/19 10:16,"176 Ridge St, San Francisco, CA 94016" -255247,USB-C Charging Cable,1,11.95,09/11/19 10:16,"176 Ridge St, San Francisco, CA 94016" -255248,Lightning Charging Cable,1,14.95,09/15/19 21:53,"888 Wilson St, Los Angeles, CA 90001" -255249,Vareebadd Phone,1,400,09/24/19 21:29,"739 South St, New York City, NY 10001" -255250,USB-C Charging Cable,1,11.95,09/03/19 09:01,"159 Sunset St, San Francisco, CA 94016" -255251,USB-C Charging Cable,1,11.95,09/30/19 22:11,"780 Elm St, San Francisco, CA 94016" -255252,Google Phone,1,600,09/18/19 15:05,"469 Walnut St, New York City, NY 10001" -255253,AAA Batteries (4-pack),1,2.99,09/16/19 18:46,"538 Hill St, Dallas, TX 75001" -255254,USB-C Charging Cable,1,11.95,09/29/19 18:09,"822 River St, Atlanta, GA 30301" -255255,Lightning Charging Cable,1,14.95,09/22/19 21:41,"270 6th St, San Francisco, CA 94016" -255256,Lightning Charging Cable,1,14.95,09/06/19 18:32,"90 4th St, Boston, MA 02215" -255257,Wired Headphones,1,11.99,09/11/19 21:01,"447 1st St, New York City, NY 10001" -255258,Macbook Pro Laptop,1,1700,09/24/19 13:47,"569 South St, Boston, MA 02215" -255259,AAA Batteries (4-pack),1,2.99,09/24/19 00:18,"291 Wilson St, Los Angeles, CA 90001" -255260,Apple Airpods Headphones,1,150,09/07/19 11:32,"889 Main St, New York City, NY 10001" -255261,iPhone,1,700,09/05/19 09:11,"488 Center St, San Francisco, CA 94016" -255262,27in FHD Monitor,1,149.99,09/13/19 12:29,"262 Cedar St, San Francisco, CA 94016" -255263,27in FHD Monitor,1,149.99,09/01/19 18:48,"699 South St, San Francisco, CA 94016" -255264,Lightning Charging Cable,1,14.95,09/25/19 19:40,"945 Chestnut St, New York City, NY 10001" -255264,34in Ultrawide Monitor,2,379.99,09/25/19 19:40,"945 Chestnut St, New York City, NY 10001" -255265,USB-C Charging Cable,1,11.95,09/06/19 17:20,"962 4th St, Boston, MA 02215" -255266,27in 4K Gaming Monitor,1,389.99,09/21/19 14:40,"137 Hickory St, San Francisco, CA 94016" -255267,Lightning Charging Cable,1,14.95,09/03/19 08:04,"235 Lake St, Los Angeles, CA 90001" -255268,AAA Batteries (4-pack),1,2.99,09/23/19 21:18,"423 Washington St, Los Angeles, CA 90001" -255269,20in Monitor,1,109.99,09/23/19 11:55,"4 7th St, Portland, OR 97035" -255270,USB-C Charging Cable,1,11.95,09/05/19 21:04,"237 1st St, Seattle, WA 98101" -255271,27in FHD Monitor,1,149.99,09/01/19 13:55,"108 1st St, Seattle, WA 98101" -255272,LG Washing Machine,1,600.0,09/18/19 12:54,"216 2nd St, Seattle, WA 98101" -255273,AAA Batteries (4-pack),1,2.99,09/05/19 22:19,"987 4th St, Boston, MA 02215" -255274,27in FHD Monitor,1,149.99,09/01/19 23:22,"134 Spruce St, San Francisco, CA 94016" -255275,Apple Airpods Headphones,1,150,09/23/19 13:48,"275 Johnson St, San Francisco, CA 94016" -255276,AA Batteries (4-pack),1,3.84,09/02/19 21:15,"405 Wilson St, Los Angeles, CA 90001" -255277,Google Phone,1,600,09/06/19 16:40,"982 Elm St, Los Angeles, CA 90001" -255278,AAA Batteries (4-pack),4,2.99,09/29/19 09:31,"829 South St, San Francisco, CA 94016" -255279,Lightning Charging Cable,1,14.95,09/08/19 13:38,"962 Jackson St, Atlanta, GA 30301" -255280,Wired Headphones,2,11.99,09/24/19 19:34,"787 Center St, San Francisco, CA 94016" -255281,USB-C Charging Cable,1,11.95,09/13/19 19:47,"381 Washington St, Portland, OR 97035" -255282,ThinkPad Laptop,1,999.99,09/15/19 10:48,"49 Lake St, Los Angeles, CA 90001" -255283,iPhone,1,700,09/20/19 17:37,"383 Ridge St, Los Angeles, CA 90001" -255284,Wired Headphones,1,11.99,09/15/19 01:41,"952 North St, San Francisco, CA 94016" -255285,AAA Batteries (4-pack),1,2.99,09/25/19 12:59,"78 Cedar St, Seattle, WA 98101" -255286,USB-C Charging Cable,1,11.95,09/27/19 00:24,"253 Hickory St, New York City, NY 10001" -255287,iPhone,1,700,09/20/19 20:34,"760 Chestnut St, Austin, TX 73301" -255288,Wired Headphones,1,11.99,09/22/19 18:35,"5 Spruce St, San Francisco, CA 94016" -255289,AAA Batteries (4-pack),2,2.99,09/24/19 17:16,"570 5th St, Los Angeles, CA 90001" -255290,Apple Airpods Headphones,1,150,09/12/19 20:27,"206 Meadow St, Boston, MA 02215" -255291,USB-C Charging Cable,1,11.95,09/02/19 10:37,"740 5th St, New York City, NY 10001" -255292,AAA Batteries (4-pack),2,2.99,09/07/19 13:49,"8 Cherry St, Seattle, WA 98101" -255293,Macbook Pro Laptop,1,1700,09/24/19 00:25,"4 Johnson St, San Francisco, CA 94016" -255294,Lightning Charging Cable,1,14.95,09/27/19 19:09,"560 Johnson St, Atlanta, GA 30301" -255295,USB-C Charging Cable,1,11.95,09/08/19 21:16,"809 Walnut St, Boston, MA 02215" -255296,Wired Headphones,2,11.99,09/02/19 16:30,"485 12th St, San Francisco, CA 94016" -255297,USB-C Charging Cable,1,11.95,09/20/19 12:14,"572 11th St, Los Angeles, CA 90001" -255298,Lightning Charging Cable,1,14.95,09/06/19 08:56,"195 Meadow St, Los Angeles, CA 90001" -255299,Wired Headphones,1,11.99,09/17/19 23:20,"125 Elm St, San Francisco, CA 94016" -255300,Flatscreen TV,1,300,09/09/19 17:14,"445 West St, Atlanta, GA 30301" -255301,Apple Airpods Headphones,1,150,09/24/19 12:29,"612 Main St, Seattle, WA 98101" -255302,AA Batteries (4-pack),2,3.84,09/18/19 22:48,"413 Pine St, Los Angeles, CA 90001" -255303,Wired Headphones,1,11.99,09/17/19 19:47,"121 Lakeview St, New York City, NY 10001" -255304,Wired Headphones,1,11.99,09/28/19 19:25,"989 Church St, Dallas, TX 75001" -255305,Lightning Charging Cable,1,14.95,09/04/19 22:20,"259 4th St, San Francisco, CA 94016" -255306,Lightning Charging Cable,1,14.95,09/29/19 09:01,"980 Pine St, Boston, MA 02215" -255307,34in Ultrawide Monitor,1,379.99,09/18/19 11:41,"714 2nd St, San Francisco, CA 94016" -255308,Flatscreen TV,1,300,09/14/19 22:36,"935 Hill St, New York City, NY 10001" -255309,AA Batteries (4-pack),3,3.84,09/16/19 15:37,"142 Hill St, Boston, MA 02215" -255310,20in Monitor,1,109.99,09/11/19 12:20,"555 West St, Los Angeles, CA 90001" -255311,27in FHD Monitor,1,149.99,09/09/19 16:32,"812 Jefferson St, Atlanta, GA 30301" -255312,USB-C Charging Cable,1,11.95,09/19/19 11:28,"510 7th St, San Francisco, CA 94016" -255313,Apple Airpods Headphones,1,150,09/06/19 11:08,"925 14th St, Atlanta, GA 30301" -255314,iPhone,1,700,09/09/19 17:41,"849 Hickory St, Atlanta, GA 30301" -255315,AA Batteries (4-pack),1,3.84,09/21/19 15:20,"611 Johnson St, New York City, NY 10001" -255316,AAA Batteries (4-pack),1,2.99,09/30/19 22:39,"78 12th St, Austin, TX 73301" -255317,Lightning Charging Cable,1,14.95,09/28/19 09:48,"13 14th St, Seattle, WA 98101" -255318,Macbook Pro Laptop,1,1700,09/26/19 11:58,"548 Jackson St, Dallas, TX 75001" -255318,Macbook Pro Laptop,1,1700,09/26/19 11:58,"548 Jackson St, Dallas, TX 75001" -255319,27in FHD Monitor,1,149.99,09/28/19 13:23,"73 Washington St, Atlanta, GA 30301" -255320,Bose SoundSport Headphones,1,99.99,09/01/19 16:28,"497 Chestnut St, Los Angeles, CA 90001" -255321,USB-C Charging Cable,1,11.95,09/21/19 10:54,"963 Dogwood St, San Francisco, CA 94016" -255322,Wired Headphones,2,11.99,09/28/19 18:31,"796 Hickory St, New York City, NY 10001" -255323,AA Batteries (4-pack),1,3.84,09/08/19 23:24,"204 Walnut St, San Francisco, CA 94016" -255324,Wired Headphones,1,11.99,09/17/19 19:05,"96 11th St, Los Angeles, CA 90001" -255325,Bose SoundSport Headphones,1,99.99,09/27/19 10:13,"410 Wilson St, Austin, TX 73301" -255326,AAA Batteries (4-pack),1,2.99,09/30/19 16:54,"690 Park St, New York City, NY 10001" -255327,USB-C Charging Cable,1,11.95,09/15/19 13:54,"291 Dogwood St, New York City, NY 10001" -255328,AA Batteries (4-pack),1,3.84,09/06/19 22:04,"116 Forest St, Austin, TX 73301" -255329,USB-C Charging Cable,1,11.95,09/14/19 05:39,"749 Jackson St, Boston, MA 02215" -,,,,, -255330,ThinkPad Laptop,1,999.99,09/21/19 12:24,"874 4th St, Austin, TX 73301" -255331,AA Batteries (4-pack),1,3.84,09/13/19 15:41,"409 14th St, San Francisco, CA 94016" -255332,27in 4K Gaming Monitor,1,389.99,09/25/19 21:35,"847 Walnut St, San Francisco, CA 94016" -255333,Wired Headphones,1,11.99,09/05/19 07:23,"198 Forest St, New York City, NY 10001" -255334,Apple Airpods Headphones,1,150,09/25/19 15:07,"572 Hickory St, Los Angeles, CA 90001" -255335,Google Phone,1,600,09/15/19 12:56,"819 West St, Portland, ME 04101" -255336,USB-C Charging Cable,1,11.95,09/11/19 22:47,"763 Park St, New York City, NY 10001" -255337,20in Monitor,2,109.99,09/23/19 08:16,"183 Maple St, New York City, NY 10001" -255338,AA Batteries (4-pack),3,3.84,09/26/19 21:21,"4 11th St, Dallas, TX 75001" -255339,27in 4K Gaming Monitor,1,389.99,09/10/19 16:29,"872 Adams St, New York City, NY 10001" -255340,AAA Batteries (4-pack),4,2.99,09/10/19 07:43,"832 Lakeview St, San Francisco, CA 94016" -255341,AA Batteries (4-pack),3,3.84,09/08/19 21:56,"930 11th St, Dallas, TX 75001" -255342,27in 4K Gaming Monitor,1,389.99,09/25/19 11:09,"641 Ridge St, San Francisco, CA 94016" -255343,Bose SoundSport Headphones,1,99.99,09/22/19 16:08,"803 South St, Portland, OR 97035" -255344,AAA Batteries (4-pack),1,2.99,09/19/19 00:09,"192 Highland St, Los Angeles, CA 90001" -255345,Bose SoundSport Headphones,1,99.99,09/25/19 21:12,"600 Center St, Los Angeles, CA 90001" -255346,Flatscreen TV,1,300,09/28/19 10:02,"549 Jefferson St, San Francisco, CA 94016" -255347,AAA Batteries (4-pack),1,2.99,09/01/19 07:58,"527 Lincoln St, Los Angeles, CA 90001" -255348,Lightning Charging Cable,1,14.95,09/17/19 14:04,"95 Lakeview St, New York City, NY 10001" -255349,Lightning Charging Cable,1,14.95,09/05/19 14:59,"582 Jackson St, San Francisco, CA 94016" -255350,AA Batteries (4-pack),1,3.84,09/14/19 09:45,"591 6th St, New York City, NY 10001" -255351,34in Ultrawide Monitor,1,379.99,09/30/19 12:14,"533 2nd St, Dallas, TX 75001" -255352,AAA Batteries (4-pack),2,2.99,09/27/19 00:28,"365 Elm St, Los Angeles, CA 90001" -255353,USB-C Charging Cable,1,11.95,09/07/19 14:17,"23 Sunset St, Atlanta, GA 30301" -255354,Bose SoundSport Headphones,1,99.99,10/01/19 00:20,"407 North St, Austin, TX 73301" -255355,Wired Headphones,1,11.99,09/30/19 13:40,"981 Hill St, Austin, TX 73301" -255356,AAA Batteries (4-pack),1,2.99,09/05/19 10:31,"689 Dogwood St, Austin, TX 73301" -255357,AAA Batteries (4-pack),2,2.99,09/26/19 21:19,"372 Willow St, Boston, MA 02215" -255358,USB-C Charging Cable,1,11.95,09/04/19 18:50,"547 River St, Atlanta, GA 30301" -255359,AA Batteries (4-pack),1,3.84,09/05/19 20:14,"5 Elm St, San Francisco, CA 94016" -255360,AAA Batteries (4-pack),2,2.99,09/19/19 18:32,"776 Highland St, Seattle, WA 98101" -255361,Vareebadd Phone,1,400,09/11/19 13:32,"517 Sunset St, San Francisco, CA 94016" -255361,USB-C Charging Cable,1,11.95,09/11/19 13:32,"517 Sunset St, San Francisco, CA 94016" -255362,Wired Headphones,1,11.99,09/29/19 16:07,"968 Forest St, New York City, NY 10001" -255363,AAA Batteries (4-pack),4,2.99,09/06/19 17:27,"470 River St, Dallas, TX 75001" -255364,Apple Airpods Headphones,1,150,09/07/19 13:57,"175 Meadow St, Dallas, TX 75001" -255365,Lightning Charging Cable,1,14.95,09/20/19 13:43,"294 10th St, Boston, MA 02215" -255366,Wired Headphones,1,11.99,09/08/19 22:37,"230 Walnut St, Boston, MA 02215" -255367,Bose SoundSport Headphones,1,99.99,09/02/19 11:00,"792 Madison St, Los Angeles, CA 90001" -255368,Wired Headphones,2,11.99,09/30/19 17:43,"254 4th St, Los Angeles, CA 90001" -255369,Lightning Charging Cable,1,14.95,09/30/19 23:08,"594 Lakeview St, Seattle, WA 98101" -255370,Bose SoundSport Headphones,1,99.99,09/27/19 17:07,"218 North St, Los Angeles, CA 90001" -255371,Bose SoundSport Headphones,1,99.99,09/03/19 10:54,"470 Spruce St, San Francisco, CA 94016" -255372,34in Ultrawide Monitor,1,379.99,09/07/19 13:51,"866 Walnut St, Boston, MA 02215" -255373,iPhone,1,700,09/20/19 19:09,"119 Cedar St, San Francisco, CA 94016" -255374,USB-C Charging Cable,1,11.95,09/09/19 15:18,"511 7th St, New York City, NY 10001" -255375,Wired Headphones,1,11.99,09/25/19 18:15,"175 South St, Atlanta, GA 30301" -255376,ThinkPad Laptop,1,999.99,09/28/19 20:59,"782 North St, San Francisco, CA 94016" -255377,USB-C Charging Cable,1,11.95,09/24/19 21:00,"812 Dogwood St, San Francisco, CA 94016" -255378,iPhone,1,700,09/23/19 18:51,"808 Washington St, Boston, MA 02215" -255379,Lightning Charging Cable,1,14.95,09/14/19 13:25,"251 Main St, New York City, NY 10001" -255380,Wired Headphones,1,11.99,09/02/19 10:43,"223 11th St, San Francisco, CA 94016" -255381,USB-C Charging Cable,1,11.95,09/04/19 11:31,"641 Jefferson St, Atlanta, GA 30301" -255382,AA Batteries (4-pack),1,3.84,09/21/19 13:56,"246 1st St, Seattle, WA 98101" -255383,Lightning Charging Cable,2,14.95,09/18/19 19:43,"202 Jefferson St, New York City, NY 10001" -255384,AAA Batteries (4-pack),1,2.99,09/19/19 08:49,"268 Willow St, Atlanta, GA 30301" -255385,USB-C Charging Cable,1,11.95,09/22/19 13:12,"217 12th St, Austin, TX 73301" -255386,Apple Airpods Headphones,1,150,09/18/19 22:10,"841 13th St, Boston, MA 02215" -255387,Bose SoundSport Headphones,1,99.99,09/10/19 09:08,"272 11th St, Portland, OR 97035" -255388,AA Batteries (4-pack),1,3.84,09/30/19 09:37,"74 Maple St, Seattle, WA 98101" -255389,Lightning Charging Cable,2,14.95,09/08/19 12:32,"387 Lakeview St, Los Angeles, CA 90001" -255390,Lightning Charging Cable,1,14.95,09/09/19 14:34,"505 Hill St, San Francisco, CA 94016" -255390,Lightning Charging Cable,1,14.95,09/09/19 14:34,"505 Hill St, San Francisco, CA 94016" -255391,AA Batteries (4-pack),1,3.84,09/28/19 16:11,"240 Jefferson St, Austin, TX 73301" -255392,34in Ultrawide Monitor,1,379.99,09/27/19 17:10,"194 2nd St, Seattle, WA 98101" -255393,Wired Headphones,1,11.99,09/06/19 22:58,"655 7th St, Los Angeles, CA 90001" -255394,AA Batteries (4-pack),1,3.84,09/24/19 16:29,"386 Center St, New York City, NY 10001" -255395,AA Batteries (4-pack),1,3.84,09/14/19 22:35,"43 Hill St, San Francisco, CA 94016" -255396,Flatscreen TV,1,300,09/16/19 21:48,"315 West St, San Francisco, CA 94016" -255397,AA Batteries (4-pack),1,3.84,09/11/19 22:32,"258 Jefferson St, New York City, NY 10001" -255398,Wired Headphones,1,11.99,09/07/19 09:38,"727 Lake St, Boston, MA 02215" -255399,Vareebadd Phone,1,400,09/30/19 11:42,"854 Lakeview St, New York City, NY 10001" -255400,Bose SoundSport Headphones,1,99.99,09/12/19 22:53,"827 6th St, Los Angeles, CA 90001" -255401,Flatscreen TV,1,300,09/10/19 19:15,"71 11th St, New York City, NY 10001" -255402,iPhone,1,700,09/29/19 22:27,"833 Center St, Los Angeles, CA 90001" -255402,Lightning Charging Cable,1,14.95,09/29/19 22:27,"833 Center St, Los Angeles, CA 90001" -255403,AAA Batteries (4-pack),1,2.99,09/03/19 09:46,"907 Center St, Boston, MA 02215" -255404,Flatscreen TV,1,300,09/29/19 18:28,"7 Cedar St, Dallas, TX 75001" -255405,Wired Headphones,1,11.99,09/27/19 12:16,"481 River St, New York City, NY 10001" -255406,Bose SoundSport Headphones,1,99.99,09/10/19 11:06,"188 7th St, New York City, NY 10001" -255407,Wired Headphones,1,11.99,09/15/19 15:58,"392 11th St, Dallas, TX 75001" -255408,Vareebadd Phone,1,400,09/01/19 21:22,"317 Meadow St, Portland, OR 97035" -255408,Bose SoundSport Headphones,1,99.99,09/01/19 21:22,"317 Meadow St, Portland, OR 97035" -255409,USB-C Charging Cable,1,11.95,09/21/19 08:35,"786 Walnut St, Atlanta, GA 30301" -255410,USB-C Charging Cable,1,11.95,09/01/19 20:17,"948 Washington St, New York City, NY 10001" -255411,Lightning Charging Cable,1,14.95,09/20/19 22:14,"464 Washington St, Atlanta, GA 30301" -255412,AAA Batteries (4-pack),1,2.99,09/01/19 20:46,"769 4th St, Boston, MA 02215" -255413,AAA Batteries (4-pack),2,2.99,09/15/19 21:41,"192 4th St, Boston, MA 02215" -255413,Lightning Charging Cable,1,14.95,09/15/19 21:41,"192 4th St, Boston, MA 02215" -255414,34in Ultrawide Monitor,1,379.99,09/12/19 07:10,"365 Willow St, Austin, TX 73301" -255415,Bose SoundSport Headphones,1,99.99,09/15/19 18:55,"197 Pine St, Boston, MA 02215" -255416,ThinkPad Laptop,1,999.99,09/07/19 19:49,"841 Hickory St, San Francisco, CA 94016" -255417,AAA Batteries (4-pack),1,2.99,09/26/19 18:17,"331 Dogwood St, Los Angeles, CA 90001" -255418,AA Batteries (4-pack),1,3.84,09/20/19 14:29,"842 Hickory St, Boston, MA 02215" -255419,AAA Batteries (4-pack),1,2.99,09/23/19 21:45,"328 7th St, Dallas, TX 75001" -255420,USB-C Charging Cable,1,11.95,09/01/19 16:55,"243 Pine St, New York City, NY 10001" -255421,USB-C Charging Cable,1,11.95,09/05/19 10:27,"94 West St, Los Angeles, CA 90001" -255422,AAA Batteries (4-pack),1,2.99,09/19/19 15:22,"328 Spruce St, San Francisco, CA 94016" -255423,Macbook Pro Laptop,1,1700,09/28/19 12:35,"907 Spruce St, San Francisco, CA 94016" -255424,Bose SoundSport Headphones,1,99.99,09/09/19 21:15,"266 6th St, Boston, MA 02215" -255425,Apple Airpods Headphones,1,150,09/20/19 18:35,"168 14th St, New York City, NY 10001" -255426,AAA Batteries (4-pack),1,2.99,09/18/19 07:12,"744 6th St, Austin, TX 73301" -255427,Macbook Pro Laptop,1,1700,09/25/19 17:42,"449 River St, Portland, OR 97035" -255428,34in Ultrawide Monitor,1,379.99,09/28/19 12:37,"254 6th St, Portland, OR 97035" -255429,ThinkPad Laptop,1,999.99,09/29/19 10:04,"949 Walnut St, San Francisco, CA 94016" -255430,Google Phone,1,600,09/14/19 15:14,"718 Main St, Atlanta, GA 30301" -255431,AA Batteries (4-pack),2,3.84,09/16/19 11:35,"963 Madison St, Portland, OR 97035" -255432,USB-C Charging Cable,2,11.95,09/21/19 17:11,"972 Maple St, San Francisco, CA 94016" -255433,AA Batteries (4-pack),2,3.84,09/25/19 17:12,"319 Spruce St, Atlanta, GA 30301" -255434,Wired Headphones,1,11.99,09/21/19 19:56,"452 Jackson St, Atlanta, GA 30301" -255435,Wired Headphones,1,11.99,09/23/19 21:38,"367 1st St, Seattle, WA 98101" -255436,AA Batteries (4-pack),1,3.84,09/22/19 14:43,"530 Park St, Portland, ME 04101" -255437,AA Batteries (4-pack),1,3.84,09/09/19 10:49,"592 River St, San Francisco, CA 94016" -255438,Lightning Charging Cable,1,14.95,09/17/19 21:12,"658 Hickory St, Atlanta, GA 30301" -255439,Lightning Charging Cable,1,14.95,09/26/19 15:49,"421 Hill St, San Francisco, CA 94016" -255440,Flatscreen TV,1,300,09/03/19 19:29,"596 1st St, Portland, ME 04101" -255441,AAA Batteries (4-pack),1,2.99,09/08/19 13:25,"673 10th St, Los Angeles, CA 90001" -255442,Wired Headphones,1,11.99,09/04/19 13:38,"964 Hickory St, New York City, NY 10001" -255443,Lightning Charging Cable,3,14.95,09/07/19 09:16,"937 Chestnut St, Seattle, WA 98101" -255443,Flatscreen TV,1,300,09/07/19 09:16,"937 Chestnut St, Seattle, WA 98101" -255444,Lightning Charging Cable,1,14.95,09/28/19 19:56,"766 Church St, Los Angeles, CA 90001" -255445,AA Batteries (4-pack),1,3.84,09/30/19 19:48,"270 Maple St, New York City, NY 10001" -255446,27in FHD Monitor,1,149.99,09/03/19 13:29,"349 2nd St, Los Angeles, CA 90001" -255447,Google Phone,1,600,09/16/19 00:38,"854 2nd St, Portland, OR 97035" -255448,Lightning Charging Cable,1,14.95,09/02/19 09:17,"98 Washington St, Atlanta, GA 30301" -255449,Lightning Charging Cable,1,14.95,09/17/19 21:40,"101 5th St, San Francisco, CA 94016" -255450,Lightning Charging Cable,1,14.95,09/09/19 04:53,"134 Main St, New York City, NY 10001" -255451,Apple Airpods Headphones,1,150,09/27/19 09:23,"625 Cherry St, Los Angeles, CA 90001" -255452,Lightning Charging Cable,1,14.95,09/16/19 13:27,"509 Johnson St, Los Angeles, CA 90001" -255453,Bose SoundSport Headphones,1,99.99,09/16/19 21:44,"186 Jefferson St, New York City, NY 10001" -255454,Wired Headphones,1,11.99,09/30/19 08:33,"215 Johnson St, Dallas, TX 75001" -255455,iPhone,1,700,09/08/19 20:46,"396 Maple St, Boston, MA 02215" -255456,34in Ultrawide Monitor,1,379.99,09/22/19 10:31,"54 Lakeview St, New York City, NY 10001" -255457,Bose SoundSport Headphones,1,99.99,09/22/19 22:36,"944 Spruce St, Los Angeles, CA 90001" -255458,Lightning Charging Cable,1,14.95,09/08/19 02:12,"530 West St, Portland, OR 97035" -255459,Vareebadd Phone,1,400,09/30/19 09:30,"62 5th St, Boston, MA 02215" -255460,27in FHD Monitor,1,149.99,09/02/19 21:59,"845 Hill St, San Francisco, CA 94016" -255461,Lightning Charging Cable,1,14.95,09/20/19 18:05,"103 Adams St, Boston, MA 02215" -255462,Bose SoundSport Headphones,1,99.99,09/26/19 12:34,"873 Adams St, Los Angeles, CA 90001" -255463,27in 4K Gaming Monitor,1,389.99,09/12/19 16:05,"964 12th St, New York City, NY 10001" -255464,AA Batteries (4-pack),1,3.84,09/09/19 22:07,"964 13th St, Los Angeles, CA 90001" -255465,Flatscreen TV,1,300,09/11/19 12:39,"905 Wilson St, New York City, NY 10001" -255466,USB-C Charging Cable,1,11.95,09/21/19 21:43,"447 Jackson St, San Francisco, CA 94016" -255467,USB-C Charging Cable,1,11.95,09/10/19 17:20,"123 North St, Portland, OR 97035" -255468,Bose SoundSport Headphones,1,99.99,09/09/19 10:48,"556 14th St, New York City, NY 10001" -255469,AA Batteries (4-pack),1,3.84,09/19/19 13:56,"244 Lakeview St, Seattle, WA 98101" -255470,AA Batteries (4-pack),1,3.84,09/02/19 17:24,"192 Jefferson St, Los Angeles, CA 90001" -255471,AA Batteries (4-pack),2,3.84,09/23/19 09:01,"416 13th St, Atlanta, GA 30301" -255472,27in 4K Gaming Monitor,1,389.99,09/19/19 21:46,"530 Church St, Dallas, TX 75001" -255473,LG Washing Machine,1,600.0,09/12/19 18:00,"19 Hickory St, Boston, MA 02215" -255474,AA Batteries (4-pack),2,3.84,09/23/19 15:17,"262 Adams St, Boston, MA 02215" -255475,27in FHD Monitor,1,149.99,09/10/19 14:12,"166 8th St, New York City, NY 10001" -255476,Wired Headphones,1,11.99,09/08/19 18:02,"901 Jackson St, Los Angeles, CA 90001" -255477,AAA Batteries (4-pack),2,2.99,09/23/19 17:17,"913 Ridge St, Atlanta, GA 30301" -255478,AAA Batteries (4-pack),2,2.99,09/29/19 19:00,"809 11th St, Seattle, WA 98101" -255479,Wired Headphones,1,11.99,09/19/19 16:46,"776 Walnut St, Dallas, TX 75001" -255480,AA Batteries (4-pack),1,3.84,09/25/19 22:54,"298 Sunset St, Los Angeles, CA 90001" -255481,USB-C Charging Cable,1,11.95,09/07/19 08:37,"301 Cedar St, New York City, NY 10001" -255482,Lightning Charging Cable,1,14.95,09/08/19 10:17,"665 1st St, Los Angeles, CA 90001" -255483,AA Batteries (4-pack),1,3.84,09/04/19 16:02,"350 13th St, Dallas, TX 75001" -255484,USB-C Charging Cable,1,11.95,09/26/19 14:02,"830 Pine St, San Francisco, CA 94016" -255485,20in Monitor,1,109.99,09/13/19 10:33,"115 11th St, San Francisco, CA 94016" -255486,Lightning Charging Cable,2,14.95,09/04/19 12:52,"444 Sunset St, Boston, MA 02215" -255487,Bose SoundSport Headphones,1,99.99,09/12/19 11:28,"929 Highland St, Los Angeles, CA 90001" -255488,Flatscreen TV,1,300,09/03/19 14:32,"495 12th St, Los Angeles, CA 90001" -255489,USB-C Charging Cable,1,11.95,09/04/19 16:44,"638 9th St, Portland, OR 97035" -255490,USB-C Charging Cable,1,11.95,09/03/19 09:57,"152 Hickory St, San Francisco, CA 94016" -255491,AAA Batteries (4-pack),1,2.99,09/24/19 13:56,"952 Walnut St, Boston, MA 02215" -255492,34in Ultrawide Monitor,1,379.99,09/27/19 11:55,"454 Dogwood St, San Francisco, CA 94016" -255493,Macbook Pro Laptop,1,1700,09/07/19 17:14,"990 Adams St, Atlanta, GA 30301" -255494,Lightning Charging Cable,1,14.95,09/05/19 22:14,"989 Elm St, San Francisco, CA 94016" -255495,AAA Batteries (4-pack),1,2.99,09/04/19 19:55,"173 Cedar St, New York City, NY 10001" -255496,Wired Headphones,1,11.99,09/26/19 21:29,"823 Adams St, Atlanta, GA 30301" -255497,USB-C Charging Cable,1,11.95,09/13/19 12:29,"839 Pine St, New York City, NY 10001" -255498,Wired Headphones,1,11.99,09/23/19 11:55,"239 Hickory St, Los Angeles, CA 90001" -255499,AA Batteries (4-pack),1,3.84,09/05/19 15:11,"708 Ridge St, Dallas, TX 75001" -255500,Lightning Charging Cable,1,14.95,09/30/19 21:05,"33 Jackson St, Los Angeles, CA 90001" -255501,USB-C Charging Cable,1,11.95,09/16/19 09:58,"948 Church St, San Francisco, CA 94016" -255502,Wired Headphones,1,11.99,09/27/19 10:47,"922 Sunset St, Portland, ME 04101" -255503,Lightning Charging Cable,1,14.95,09/21/19 17:33,"922 Cedar St, Portland, OR 97035" -255504,AA Batteries (4-pack),1,3.84,09/28/19 15:01,"747 8th St, New York City, NY 10001" -255505,Lightning Charging Cable,1,14.95,09/25/19 14:00,"346 Forest St, Dallas, TX 75001" -255506,Lightning Charging Cable,1,14.95,09/01/19 18:45,"405 River St, San Francisco, CA 94016" -255507,27in FHD Monitor,1,149.99,09/12/19 06:28,"383 Lincoln St, San Francisco, CA 94016" -255508,LG Dryer,1,600.0,09/27/19 19:43,"656 Jefferson St, Seattle, WA 98101" -255509,AAA Batteries (4-pack),1,2.99,09/21/19 23:37,"329 West St, Los Angeles, CA 90001" -255510,Lightning Charging Cable,1,14.95,09/11/19 19:51,"617 South St, Austin, TX 73301" -255511,27in FHD Monitor,1,149.99,09/16/19 19:45,"639 Lake St, Los Angeles, CA 90001" -255512,27in FHD Monitor,1,149.99,09/24/19 17:25,"378 12th St, Boston, MA 02215" -255513,USB-C Charging Cable,1,11.95,09/25/19 10:01,"482 Cherry St, San Francisco, CA 94016" -255514,ThinkPad Laptop,1,999.99,09/28/19 11:22,"69 5th St, San Francisco, CA 94016" -255515,Lightning Charging Cable,1,14.95,09/22/19 14:10,"787 4th St, Los Angeles, CA 90001" -255516,Bose SoundSport Headphones,1,99.99,09/29/19 21:40,"226 Lake St, San Francisco, CA 94016" -255517,AA Batteries (4-pack),1,3.84,09/20/19 12:58,"160 Elm St, San Francisco, CA 94016" -255518,USB-C Charging Cable,1,11.95,09/03/19 19:12,"442 Meadow St, San Francisco, CA 94016" -255519,27in FHD Monitor,1,149.99,09/06/19 12:19,"431 11th St, Dallas, TX 75001" -255520,Flatscreen TV,1,300,09/25/19 12:05,"414 Washington St, Los Angeles, CA 90001" -255521,Apple Airpods Headphones,1,150,09/14/19 11:02,"456 Park St, Portland, ME 04101" -255522,AA Batteries (4-pack),1,3.84,09/04/19 19:10,"262 Highland St, Los Angeles, CA 90001" -255523,ThinkPad Laptop,1,999.99,09/14/19 09:24,"410 6th St, Boston, MA 02215" -255524,20in Monitor,1,109.99,09/20/19 06:59,"127 Church St, Portland, OR 97035" -255525,20in Monitor,1,109.99,09/08/19 15:02,"384 Lincoln St, Los Angeles, CA 90001" -255526,AAA Batteries (4-pack),2,2.99,09/16/19 17:31,"31 Chestnut St, Dallas, TX 75001" -255527,Apple Airpods Headphones,1,150,09/23/19 23:48,"517 Pine St, San Francisco, CA 94016" -255528,Bose SoundSport Headphones,1,99.99,09/17/19 14:25,"878 North St, San Francisco, CA 94016" -255529,34in Ultrawide Monitor,1,379.99,09/11/19 12:10,"100 Ridge St, New York City, NY 10001" -255530,Lightning Charging Cable,1,14.95,09/23/19 13:04,"897 West St, Los Angeles, CA 90001" -255531,27in 4K Gaming Monitor,1,389.99,09/04/19 22:22,"117 6th St, Los Angeles, CA 90001" -255532,AAA Batteries (4-pack),4,2.99,09/01/19 11:43,"502 Jackson St, San Francisco, CA 94016" -255533,Apple Airpods Headphones,1,150,09/09/19 14:29,"937 Walnut St, San Francisco, CA 94016" -255534,AAA Batteries (4-pack),2,2.99,09/11/19 23:20,"806 Jefferson St, New York City, NY 10001" -255535,34in Ultrawide Monitor,1,379.99,09/25/19 09:25,"837 Johnson St, San Francisco, CA 94016" -255536,Lightning Charging Cable,2,14.95,09/19/19 15:07,"326 6th St, Austin, TX 73301" -255537,AA Batteries (4-pack),2,3.84,09/10/19 17:24,"566 Willow St, Los Angeles, CA 90001" -255538,Apple Airpods Headphones,1,150,09/23/19 13:27,"259 Lakeview St, Dallas, TX 75001" -255539,Apple Airpods Headphones,1,150,09/20/19 18:20,"330 South St, Seattle, WA 98101" -255540,Bose SoundSport Headphones,1,99.99,09/23/19 21:24,"549 Spruce St, Austin, TX 73301" -255541,AAA Batteries (4-pack),3,2.99,09/17/19 21:22,"198 Cherry St, Boston, MA 02215" -255542,AAA Batteries (4-pack),1,2.99,09/19/19 11:49,"197 Highland St, San Francisco, CA 94016" -255543,AAA Batteries (4-pack),1,2.99,09/21/19 09:51,"102 Center St, Los Angeles, CA 90001" -255544,USB-C Charging Cable,1,11.95,09/16/19 13:37,"998 Adams St, Boston, MA 02215" -255545,AA Batteries (4-pack),2,3.84,09/26/19 12:53,"726 River St, San Francisco, CA 94016" -255546,27in 4K Gaming Monitor,1,389.99,09/28/19 09:05,"60 Hill St, San Francisco, CA 94016" -255547,Wired Headphones,1,11.99,09/05/19 11:35,"873 Walnut St, Boston, MA 02215" -255548,Macbook Pro Laptop,1,1700,09/13/19 20:39,"945 Cedar St, Boston, MA 02215" -255549,Bose SoundSport Headphones,1,99.99,09/05/19 11:52,"308 Hickory St, New York City, NY 10001" -255550,Lightning Charging Cable,1,14.95,09/23/19 16:11,"152 Park St, San Francisco, CA 94016" -255551,27in 4K Gaming Monitor,1,389.99,09/23/19 17:49,"849 11th St, Dallas, TX 75001" -255552,Flatscreen TV,1,300,09/29/19 23:14,"547 Wilson St, Los Angeles, CA 90001" -255553,Apple Airpods Headphones,1,150,09/08/19 12:59,"227 6th St, Seattle, WA 98101" -255554,Macbook Pro Laptop,1,1700,09/24/19 21:04,"34 Washington St, Atlanta, GA 30301" -255555,AA Batteries (4-pack),1,3.84,09/04/19 10:28,"13 Sunset St, Portland, OR 97035" -255556,27in FHD Monitor,1,149.99,09/29/19 20:56,"927 Forest St, New York City, NY 10001" -255557,Lightning Charging Cable,1,14.95,09/23/19 22:57,"454 7th St, Los Angeles, CA 90001" -255558,USB-C Charging Cable,1,11.95,09/11/19 18:47,"866 Pine St, Los Angeles, CA 90001" -255559,Lightning Charging Cable,1,14.95,09/10/19 08:08,"115 Hickory St, New York City, NY 10001" -255560,27in 4K Gaming Monitor,1,389.99,09/30/19 17:56,"668 13th St, Atlanta, GA 30301" -255561,USB-C Charging Cable,1,11.95,09/07/19 13:27,"548 Hickory St, Dallas, TX 75001" -255562,Wired Headphones,1,11.99,09/30/19 22:09,"770 4th St, Portland, OR 97035" -255563,USB-C Charging Cable,1,11.95,09/06/19 23:15,"180 Elm St, San Francisco, CA 94016" -255564,USB-C Charging Cable,1,11.95,09/13/19 19:53,"65 Johnson St, Seattle, WA 98101" -255565,27in FHD Monitor,1,149.99,09/07/19 17:50,"407 Spruce St, New York City, NY 10001" -255566,Flatscreen TV,1,300,09/25/19 00:57,"547 River St, Atlanta, GA 30301" -255567,Bose SoundSport Headphones,1,99.99,09/28/19 15:36,"526 Lincoln St, Dallas, TX 75001" -255568,Apple Airpods Headphones,1,150,09/26/19 11:13,"345 Hickory St, San Francisco, CA 94016" -255569,20in Monitor,1,109.99,09/23/19 16:18,"474 Maple St, Seattle, WA 98101" -255570,Bose SoundSport Headphones,1,99.99,09/15/19 20:32,"235 North St, San Francisco, CA 94016" -255571,iPhone,1,700,09/23/19 19:10,"482 South St, New York City, NY 10001" -255572,Wired Headphones,2,11.99,09/22/19 11:04,"797 13th St, Seattle, WA 98101" -255573,AAA Batteries (4-pack),2,2.99,09/11/19 11:37,"340 Elm St, San Francisco, CA 94016" -255574,AAA Batteries (4-pack),3,2.99,09/11/19 15:22,"329 Walnut St, San Francisco, CA 94016" -255574,27in 4K Gaming Monitor,1,389.99,09/11/19 15:22,"329 Walnut St, San Francisco, CA 94016" -255575,27in FHD Monitor,1,149.99,09/17/19 17:19,"892 8th St, San Francisco, CA 94016" -255576,AA Batteries (4-pack),1,3.84,09/17/19 08:51,"59 South St, Seattle, WA 98101" -255577,20in Monitor,1,109.99,09/18/19 09:16,"718 5th St, Austin, TX 73301" -255578,Wired Headphones,1,11.99,09/26/19 22:37,"6 8th St, Atlanta, GA 30301" -255579,Lightning Charging Cable,1,14.95,09/09/19 16:23,"731 Elm St, Austin, TX 73301" -255580,AA Batteries (4-pack),1,3.84,09/20/19 15:23,"300 Lincoln St, Austin, TX 73301" -255581,Google Phone,1,600,09/29/19 19:29,"331 Meadow St, Boston, MA 02215" -255582,Wired Headphones,2,11.99,09/02/19 08:32,"380 12th St, Los Angeles, CA 90001" -255583,Lightning Charging Cable,1,14.95,09/11/19 06:22,"962 Church St, San Francisco, CA 94016" -255584,AAA Batteries (4-pack),1,2.99,09/09/19 17:02,"482 Elm St, San Francisco, CA 94016" -255585,AAA Batteries (4-pack),1,2.99,09/20/19 13:48,"929 Walnut St, San Francisco, CA 94016" -255586,Google Phone,1,600,09/11/19 21:10,"286 Hill St, San Francisco, CA 94016" -255587,ThinkPad Laptop,1,999.99,09/15/19 22:50,"917 North St, Boston, MA 02215" -255588,Wired Headphones,1,11.99,09/17/19 20:39,"92 1st St, Los Angeles, CA 90001" -255589,34in Ultrawide Monitor,1,379.99,09/13/19 20:21,"437 River St, San Francisco, CA 94016" -255590,Apple Airpods Headphones,1,150,09/23/19 08:10,"363 13th St, San Francisco, CA 94016" -255591,USB-C Charging Cable,1,11.95,09/16/19 20:25,"451 Lakeview St, Los Angeles, CA 90001" -255592,USB-C Charging Cable,1,11.95,09/11/19 13:18,"495 10th St, Los Angeles, CA 90001" -255593,AAA Batteries (4-pack),4,2.99,09/09/19 23:39,"580 1st St, Boston, MA 02215" -255594,27in FHD Monitor,1,149.99,09/17/19 00:34,"202 Johnson St, Los Angeles, CA 90001" -255595,USB-C Charging Cable,1,11.95,09/20/19 20:19,"107 Meadow St, Portland, OR 97035" -255596,USB-C Charging Cable,1,11.95,09/11/19 04:58,"656 Cedar St, Austin, TX 73301" -255597,Lightning Charging Cable,1,14.95,09/11/19 21:04,"879 Chestnut St, Portland, OR 97035" -255598,Wired Headphones,1,11.99,09/15/19 12:14,"633 Spruce St, Los Angeles, CA 90001" -255599,Lightning Charging Cable,1,14.95,09/25/19 09:34,"567 Maple St, New York City, NY 10001" -255600,Macbook Pro Laptop,1,1700,09/17/19 21:50,"726 9th St, Atlanta, GA 30301" -255601,AAA Batteries (4-pack),2,2.99,09/13/19 12:52,"29 Meadow St, Boston, MA 02215" -255602,27in FHD Monitor,1,149.99,09/25/19 12:08,"619 West St, New York City, NY 10001" -255603,27in FHD Monitor,1,149.99,09/11/19 20:37,"173 1st St, Los Angeles, CA 90001" -255604,Lightning Charging Cable,1,14.95,09/12/19 19:26,"242 South St, Boston, MA 02215" -255605,Apple Airpods Headphones,1,150,09/10/19 19:34,"336 Lincoln St, Austin, TX 73301" -255606,Apple Airpods Headphones,1,150,09/20/19 22:50,"409 8th St, Portland, OR 97035" -255607,AA Batteries (4-pack),1,3.84,09/13/19 07:30,"412 West St, San Francisco, CA 94016" -255608,AA Batteries (4-pack),1,3.84,09/01/19 11:31,"143 North St, New York City, NY 10001" -255609,34in Ultrawide Monitor,1,379.99,09/16/19 14:35,"758 4th St, Los Angeles, CA 90001" -255610,Wired Headphones,1,11.99,09/29/19 22:51,"686 Sunset St, Austin, TX 73301" -255611,AA Batteries (4-pack),1,3.84,09/08/19 18:35,"129 14th St, Atlanta, GA 30301" -255612,AAA Batteries (4-pack),1,2.99,09/06/19 14:05,"675 Church St, San Francisco, CA 94016" -255613,AA Batteries (4-pack),1,3.84,09/09/19 21:59,"921 Pine St, New York City, NY 10001" -255614,Bose SoundSport Headphones,1,99.99,10/01/19 02:18,"181 4th St, Los Angeles, CA 90001" -255615,AA Batteries (4-pack),1,3.84,09/26/19 09:17,"667 Elm St, San Francisco, CA 94016" -255616,Lightning Charging Cable,1,14.95,09/18/19 06:42,"854 Willow St, Los Angeles, CA 90001" -255616,AAA Batteries (4-pack),1,2.99,09/18/19 06:42,"854 Willow St, Los Angeles, CA 90001" -255617,USB-C Charging Cable,1,11.95,09/02/19 19:47,"320 Sunset St, San Francisco, CA 94016" -255617,Bose SoundSport Headphones,1,99.99,09/02/19 19:47,"320 Sunset St, San Francisco, CA 94016" -255618,AAA Batteries (4-pack),1,2.99,09/01/19 15:20,"227 West St, Dallas, TX 75001" -255619,Lightning Charging Cable,1,14.95,09/28/19 18:00,"791 Chestnut St, San Francisco, CA 94016" -255620,Wired Headphones,1,11.99,09/26/19 23:20,"309 Chestnut St, Austin, TX 73301" -255621,iPhone,1,700,09/29/19 12:59,"281 Elm St, Boston, MA 02215" -255621,Lightning Charging Cable,1,14.95,09/29/19 12:59,"281 Elm St, Boston, MA 02215" -255622,27in FHD Monitor,1,149.99,09/04/19 14:35,"709 Walnut St, Seattle, WA 98101" -255623,Apple Airpods Headphones,1,150,09/16/19 12:23,"669 Maple St, Los Angeles, CA 90001" -255624,27in FHD Monitor,1,149.99,09/25/19 20:16,"727 9th St, Seattle, WA 98101" -255625,AAA Batteries (4-pack),3,2.99,09/23/19 21:33,"692 Lakeview St, Seattle, WA 98101" -255626,USB-C Charging Cable,1,11.95,09/30/19 19:54,"496 Highland St, Los Angeles, CA 90001" -255627,AAA Batteries (4-pack),4,2.99,09/26/19 14:04,"727 13th St, New York City, NY 10001" -255628,Apple Airpods Headphones,1,150,09/07/19 17:10,"211 1st St, Los Angeles, CA 90001" -255629,27in FHD Monitor,1,149.99,09/04/19 23:01,"48 Church St, Seattle, WA 98101" -255630,27in 4K Gaming Monitor,1,389.99,09/22/19 23:18,"512 Madison St, Portland, OR 97035" -255631,USB-C Charging Cable,1,11.95,09/02/19 00:40,"417 Forest St, Boston, MA 02215" -255632,Wired Headphones,1,11.99,09/01/19 22:49,"847 South St, San Francisco, CA 94016" -255633,Wired Headphones,1,11.99,09/11/19 17:10,"327 North St, Portland, OR 97035" -255634,iPhone,1,700,09/09/19 22:03,"832 Johnson St, New York City, NY 10001" -255635,ThinkPad Laptop,1,999.99,09/27/19 14:06,"555 North St, Boston, MA 02215" -255636,AAA Batteries (4-pack),1,2.99,09/15/19 03:39,"448 8th St, San Francisco, CA 94016" -255637,AAA Batteries (4-pack),1,2.99,09/22/19 08:47,"154 Lincoln St, San Francisco, CA 94016" -255638,Bose SoundSport Headphones,1,99.99,09/23/19 23:29,"885 Jackson St, Seattle, WA 98101" -255639,34in Ultrawide Monitor,1,379.99,09/29/19 10:49,"750 1st St, Boston, MA 02215" -255640,AAA Batteries (4-pack),2,2.99,09/23/19 23:35,"396 Dogwood St, New York City, NY 10001" -255641,USB-C Charging Cable,2,11.95,09/10/19 20:19,"840 Chestnut St, Boston, MA 02215" -255642,AA Batteries (4-pack),1,3.84,09/05/19 03:30,"601 Center St, Dallas, TX 75001" -255643,USB-C Charging Cable,1,11.95,09/22/19 12:35,"76 North St, Los Angeles, CA 90001" -255644,AA Batteries (4-pack),4,3.84,09/15/19 18:50,"624 Jefferson St, San Francisco, CA 94016" -255645,Lightning Charging Cable,1,14.95,09/19/19 00:41,"527 Wilson St, Seattle, WA 98101" -255646,Bose SoundSport Headphones,1,99.99,09/11/19 12:30,"104 West St, Los Angeles, CA 90001" -255647,27in 4K Gaming Monitor,1,389.99,09/04/19 21:53,"460 Washington St, New York City, NY 10001" -255648,AA Batteries (4-pack),1,3.84,09/10/19 13:05,"672 6th St, Dallas, TX 75001" -255649,Google Phone,1,600,09/27/19 12:30,"408 Highland St, New York City, NY 10001" -255650,AA Batteries (4-pack),1,3.84,09/03/19 12:01,"472 Walnut St, Dallas, TX 75001" -255651,Lightning Charging Cable,1,14.95,09/10/19 05:27,"235 Sunset St, Seattle, WA 98101" -255652,Bose SoundSport Headphones,1,99.99,09/24/19 18:18,"452 Ridge St, New York City, NY 10001" -255653,ThinkPad Laptop,1,999.99,09/29/19 17:04,"864 Main St, Los Angeles, CA 90001" -255654,20in Monitor,1,109.99,09/20/19 10:36,"23 7th St, Portland, OR 97035" -255655,Lightning Charging Cable,3,14.95,09/01/19 13:34,"851 Main St, San Francisco, CA 94016" -255656,Wired Headphones,1,11.99,09/03/19 13:07,"371 Maple St, Seattle, WA 98101" -255657,Macbook Pro Laptop,1,1700,09/06/19 17:01,"240 12th St, New York City, NY 10001" -255658,27in FHD Monitor,1,149.99,09/23/19 19:25,"258 Jefferson St, New York City, NY 10001" -255659,AA Batteries (4-pack),3,3.84,09/21/19 20:10,"725 10th St, San Francisco, CA 94016" -255660,Wired Headphones,1,11.99,09/22/19 17:53,"202 11th St, San Francisco, CA 94016" -255661,AAA Batteries (4-pack),1,2.99,09/16/19 15:59,"413 Jackson St, Los Angeles, CA 90001" -255662,USB-C Charging Cable,1,11.95,09/07/19 22:35,"19 Wilson St, Dallas, TX 75001" -255663,AAA Batteries (4-pack),1,2.99,09/04/19 21:06,"915 South St, San Francisco, CA 94016" -255664,AA Batteries (4-pack),1,3.84,09/23/19 20:01,"402 7th St, San Francisco, CA 94016" -255665,27in 4K Gaming Monitor,1,389.99,09/26/19 23:56,"709 10th St, San Francisco, CA 94016" -255666,Bose SoundSport Headphones,1,99.99,09/09/19 10:45,"528 Johnson St, Seattle, WA 98101" -255667,27in FHD Monitor,1,149.99,09/13/19 13:40,"346 West St, New York City, NY 10001" -255668,Apple Airpods Headphones,1,150,09/24/19 15:30,"614 Forest St, New York City, NY 10001" -255669,AA Batteries (4-pack),1,3.84,09/24/19 21:02,"995 West St, Portland, OR 97035" -255670,AAA Batteries (4-pack),1,2.99,09/10/19 08:40,"700 Willow St, Portland, OR 97035" -255671,Apple Airpods Headphones,1,150,09/14/19 15:39,"2 Lake St, Austin, TX 73301" -255672,Google Phone,1,600,09/28/19 07:56,"693 Center St, Atlanta, GA 30301" -255673,AAA Batteries (4-pack),1,2.99,09/14/19 17:20,"212 Ridge St, New York City, NY 10001" -255674,iPhone,1,700,09/23/19 11:05,"218 River St, Portland, ME 04101" -255675,AA Batteries (4-pack),1,3.84,09/13/19 07:40,"160 Lincoln St, Portland, OR 97035" -255676,iPhone,1,700,09/04/19 09:50,"650 Adams St, Los Angeles, CA 90001" -255677,Apple Airpods Headphones,1,150,09/14/19 12:22,"777 8th St, Boston, MA 02215" -255678,Bose SoundSport Headphones,1,99.99,09/27/19 08:51,"188 Cedar St, Los Angeles, CA 90001" -255679,AAA Batteries (4-pack),2,2.99,09/06/19 10:03,"866 13th St, Portland, OR 97035" -255680,34in Ultrawide Monitor,1,379.99,09/15/19 18:55,"109 West St, New York City, NY 10001" -255681,Lightning Charging Cable,1,14.95,09/20/19 22:56,"272 Hickory St, Los Angeles, CA 90001" -255682,Wired Headphones,1,11.99,09/23/19 09:28,"40 Wilson St, Atlanta, GA 30301" -255683,Google Phone,1,600,09/26/19 07:47,"637 River St, Dallas, TX 75001" -255684,AA Batteries (4-pack),1,3.84,09/16/19 18:28,"141 Johnson St, San Francisco, CA 94016" -255685,Lightning Charging Cable,1,14.95,09/23/19 09:54,"193 Adams St, Dallas, TX 75001" -255686,Lightning Charging Cable,1,14.95,09/02/19 20:03,"111 Park St, Boston, MA 02215" -255686,USB-C Charging Cable,1,11.95,09/02/19 20:03,"111 Park St, Boston, MA 02215" -255687,AAA Batteries (4-pack),1,2.99,09/03/19 00:36,"314 Willow St, Seattle, WA 98101" -255688,27in FHD Monitor,1,149.99,09/27/19 11:05,"368 Adams St, Los Angeles, CA 90001" -255689,USB-C Charging Cable,1,11.95,09/09/19 14:34,"331 North St, Dallas, TX 75001" -255690,AA Batteries (4-pack),1,3.84,09/11/19 08:58,"830 Dogwood St, Atlanta, GA 30301" -255691,USB-C Charging Cable,1,11.95,09/04/19 11:49,"750 Lake St, New York City, NY 10001" -255692,ThinkPad Laptop,1,999.99,09/22/19 08:27,"820 Highland St, Atlanta, GA 30301" -255693,Vareebadd Phone,1,400,09/25/19 15:50,"536 2nd St, Atlanta, GA 30301" -255694,Lightning Charging Cable,1,14.95,09/15/19 14:21,"537 North St, Los Angeles, CA 90001" -255695,AA Batteries (4-pack),1,3.84,09/19/19 11:05,"357 Forest St, Atlanta, GA 30301" -255696,Wired Headphones,2,11.99,09/27/19 21:06,"408 Highland St, Los Angeles, CA 90001" -255697,Google Phone,1,600,09/17/19 11:29,"912 Jackson St, Atlanta, GA 30301" -255698,Bose SoundSport Headphones,1,99.99,09/27/19 10:37,"317 Highland St, Dallas, TX 75001" -255699,Bose SoundSport Headphones,1,99.99,09/01/19 13:13,"253 Wilson St, Seattle, WA 98101" -255700,AA Batteries (4-pack),1,3.84,09/13/19 21:35,"984 Willow St, Los Angeles, CA 90001" -255701,AA Batteries (4-pack),2,3.84,09/20/19 15:41,"460 Willow St, San Francisco, CA 94016" -255702,USB-C Charging Cable,1,11.95,09/22/19 17:47,"971 Pine St, Portland, OR 97035" -255703,27in 4K Gaming Monitor,1,389.99,09/26/19 14:53,"914 Elm St, San Francisco, CA 94016" -255704,AA Batteries (4-pack),1,3.84,09/08/19 22:25,"83 14th St, New York City, NY 10001" -255705,USB-C Charging Cable,1,11.95,09/19/19 22:09,"7 Elm St, Atlanta, GA 30301" -255705,Apple Airpods Headphones,1,150,09/19/19 22:09,"7 Elm St, Atlanta, GA 30301" -255706,27in 4K Gaming Monitor,1,389.99,09/05/19 22:05,"524 Cedar St, Boston, MA 02215" -255707,Wired Headphones,1,11.99,09/12/19 18:51,"674 Lake St, San Francisco, CA 94016" -255708,USB-C Charging Cable,1,11.95,09/17/19 12:49,"240 Maple St, Seattle, WA 98101" -255709,Apple Airpods Headphones,1,150,09/29/19 14:06,"928 Madison St, New York City, NY 10001" -255710,AA Batteries (4-pack),2,3.84,09/25/19 13:55,"866 9th St, Boston, MA 02215" -255711,Wired Headphones,1,11.99,09/29/19 19:23,"179 Meadow St, Los Angeles, CA 90001" -255712,USB-C Charging Cable,1,11.95,09/04/19 01:38,"843 Main St, San Francisco, CA 94016" -255713,Lightning Charging Cable,1,14.95,09/09/19 07:54,"590 Lakeview St, Seattle, WA 98101" -255714,Flatscreen TV,1,300,09/02/19 19:43,"297 12th St, Seattle, WA 98101" -255715,Google Phone,1,600,09/29/19 18:18,"452 Walnut St, San Francisco, CA 94016" -255716,20in Monitor,1,109.99,09/20/19 20:27,"71 Pine St, Portland, ME 04101" -255717,27in FHD Monitor,1,149.99,09/24/19 03:55,"223 Lakeview St, San Francisco, CA 94016" -255718,AA Batteries (4-pack),1,3.84,09/25/19 17:31,"562 11th St, Dallas, TX 75001" -255719,Bose SoundSport Headphones,1,99.99,09/07/19 18:39,"882 6th St, Los Angeles, CA 90001" -255720,34in Ultrawide Monitor,1,379.99,09/29/19 14:56,"120 Main St, San Francisco, CA 94016" -255721,Flatscreen TV,1,300,09/30/19 00:46,"242 Main St, San Francisco, CA 94016" -255722,Bose SoundSport Headphones,1,99.99,09/19/19 10:13,"597 Church St, Portland, OR 97035" -255723,iPhone,1,700,09/04/19 09:18,"936 Adams St, Boston, MA 02215" -255724,Flatscreen TV,1,300,09/27/19 10:46,"498 River St, San Francisco, CA 94016" -255725,USB-C Charging Cable,1,11.95,09/10/19 23:30,"973 Maple St, New York City, NY 10001" -255726,27in FHD Monitor,1,149.99,09/01/19 16:49,"942 2nd St, New York City, NY 10001" -255727,Wired Headphones,2,11.99,09/18/19 04:27,"821 Chestnut St, Atlanta, GA 30301" -255728,AA Batteries (4-pack),1,3.84,09/23/19 19:43,"102 River St, Los Angeles, CA 90001" -255729,Lightning Charging Cable,2,14.95,09/19/19 22:00,"640 14th St, Seattle, WA 98101" -255730,Apple Airpods Headphones,1,150,09/09/19 08:21,"738 Pine St, Atlanta, GA 30301" -255731,34in Ultrawide Monitor,1,379.99,09/17/19 09:23,"332 South St, Portland, OR 97035" -255732,20in Monitor,1,109.99,09/04/19 21:29,"133 Church St, Los Angeles, CA 90001" -255733,Wired Headphones,2,11.99,09/06/19 17:21,"599 Chestnut St, Los Angeles, CA 90001" -255734,Lightning Charging Cable,1,14.95,09/04/19 18:59,"924 River St, San Francisco, CA 94016" -255735,Lightning Charging Cable,1,14.95,09/17/19 19:34,"295 Jackson St, New York City, NY 10001" -255736,AAA Batteries (4-pack),1,2.99,09/14/19 21:19,"634 2nd St, Los Angeles, CA 90001" -255737,27in FHD Monitor,1,149.99,09/22/19 01:48,"952 Walnut St, San Francisco, CA 94016" -255738,USB-C Charging Cable,1,11.95,09/04/19 06:17,"736 Cedar St, Seattle, WA 98101" -255739,Google Phone,1,600,09/11/19 10:14,"128 Elm St, New York City, NY 10001" -255740,AA Batteries (4-pack),1,3.84,09/19/19 08:16,"174 Main St, Boston, MA 02215" -255741,AA Batteries (4-pack),1,3.84,09/30/19 16:57,"492 7th St, Austin, TX 73301" -255742,Bose SoundSport Headphones,1,99.99,09/26/19 18:24,"536 Highland St, Austin, TX 73301" -255743,Flatscreen TV,1,300,09/13/19 16:43,"885 9th St, Austin, TX 73301" -255744,Wired Headphones,1,11.99,09/18/19 09:04,"58 Pine St, Dallas, TX 75001" -255745,AA Batteries (4-pack),1,3.84,09/09/19 18:28,"931 Highland St, Atlanta, GA 30301" -255746,Wired Headphones,2,11.99,09/27/19 21:37,"317 11th St, Seattle, WA 98101" -255747,Lightning Charging Cable,1,14.95,09/04/19 19:11,"859 Main St, Austin, TX 73301" -255748,Wired Headphones,1,11.99,09/10/19 18:38,"489 11th St, Dallas, TX 75001" -255749,Bose SoundSport Headphones,1,99.99,09/20/19 19:11,"68 Dogwood St, New York City, NY 10001" -255750,27in 4K Gaming Monitor,1,389.99,09/06/19 20:10,"729 7th St, Atlanta, GA 30301" -255751,Wired Headphones,1,11.99,09/07/19 08:12,"468 Lincoln St, San Francisco, CA 94016" -255752,AAA Batteries (4-pack),1,2.99,09/17/19 19:59,"340 Jackson St, Seattle, WA 98101" -255753,Lightning Charging Cable,1,14.95,09/29/19 18:59,"957 6th St, Portland, OR 97035" -255754,USB-C Charging Cable,1,11.95,09/09/19 22:41,"277 West St, San Francisco, CA 94016" -255755,AAA Batteries (4-pack),2,2.99,09/20/19 06:58,"739 9th St, Dallas, TX 75001" -255756,Bose SoundSport Headphones,1,99.99,09/11/19 11:27,"966 Lakeview St, New York City, NY 10001" -255757,27in 4K Gaming Monitor,1,389.99,09/12/19 17:40,"158 7th St, Atlanta, GA 30301" -255758,AAA Batteries (4-pack),1,2.99,09/04/19 12:34,"246 9th St, Los Angeles, CA 90001" -255759,Lightning Charging Cable,2,14.95,09/05/19 07:54,"951 Chestnut St, Los Angeles, CA 90001" -255760,Apple Airpods Headphones,1,150,09/08/19 12:22,"205 Forest St, New York City, NY 10001" -255761,Flatscreen TV,1,300,09/11/19 17:49,"370 13th St, San Francisco, CA 94016" -255762,Apple Airpods Headphones,1,150,09/14/19 08:17,"754 8th St, Portland, ME 04101" -255763,20in Monitor,1,109.99,09/19/19 15:30,"502 13th St, Los Angeles, CA 90001" -255764,iPhone,1,700,09/18/19 07:18,"350 Madison St, Dallas, TX 75001" -255765,Wired Headphones,1,11.99,09/11/19 15:10,"856 6th St, Seattle, WA 98101" -255766,27in FHD Monitor,1,149.99,09/03/19 20:58,"600 14th St, Dallas, TX 75001" -255767,AA Batteries (4-pack),1,3.84,09/03/19 09:26,"974 1st St, New York City, NY 10001" -255768,iPhone,1,700,09/05/19 14:21,"943 9th St, Los Angeles, CA 90001" -255769,Lightning Charging Cable,1,14.95,09/14/19 19:53,"374 Lakeview St, Boston, MA 02215" -255770,Bose SoundSport Headphones,1,99.99,09/21/19 21:03,"380 Highland St, Portland, OR 97035" -255771,iPhone,1,700,09/13/19 21:31,"326 Washington St, Boston, MA 02215" -255772,AAA Batteries (4-pack),1,2.99,09/28/19 17:57,"540 Elm St, Dallas, TX 75001" -255773,USB-C Charging Cable,2,11.95,09/21/19 23:52,"994 Jefferson St, Seattle, WA 98101" -255774,USB-C Charging Cable,1,11.95,09/23/19 15:52,"747 Madison St, New York City, NY 10001" -255775,USB-C Charging Cable,1,11.95,09/05/19 15:08,"20 Pine St, San Francisco, CA 94016" -255776,Apple Airpods Headphones,1,150,09/24/19 17:05,"745 Hickory St, Austin, TX 73301" -255777,AA Batteries (4-pack),2,3.84,09/29/19 18:16,"536 Elm St, Portland, ME 04101" -255778,Flatscreen TV,1,300,09/12/19 18:18,"454 Adams St, Dallas, TX 75001" -255779,Lightning Charging Cable,1,14.95,09/30/19 10:09,"41 Center St, Los Angeles, CA 90001" -255780,Bose SoundSport Headphones,1,99.99,09/18/19 08:07,"951 13th St, Atlanta, GA 30301" -255781,Lightning Charging Cable,1,14.95,09/05/19 20:07,"495 1st St, New York City, NY 10001" -255782,Lightning Charging Cable,1,14.95,09/11/19 07:29,"933 Madison St, Austin, TX 73301" -255783,Wired Headphones,1,11.99,09/29/19 11:53,"765 11th St, Los Angeles, CA 90001" -255784,iPhone,1,700,09/11/19 09:59,"210 West St, San Francisco, CA 94016" -255785,AA Batteries (4-pack),1,3.84,09/08/19 17:44,"917 Elm St, Portland, OR 97035" -255786,Apple Airpods Headphones,1,150,09/27/19 08:14,"308 Spruce St, Boston, MA 02215" -255787,Google Phone,1,600,09/11/19 15:08,"517 11th St, San Francisco, CA 94016" -255788,27in FHD Monitor,1,149.99,09/29/19 00:25,"750 12th St, Los Angeles, CA 90001" -255789,AA Batteries (4-pack),1,3.84,09/09/19 11:34,"824 Elm St, Seattle, WA 98101" -255790,Wired Headphones,1,11.99,09/09/19 17:53,"662 Lakeview St, Boston, MA 02215" -255791,Apple Airpods Headphones,1,150,09/23/19 13:11,"123 Madison St, Austin, TX 73301" -255792,Apple Airpods Headphones,1,150,09/06/19 00:02,"5 Adams St, New York City, NY 10001" -255793,Lightning Charging Cable,1,14.95,09/16/19 11:39,"586 2nd St, Atlanta, GA 30301" -255794,Macbook Pro Laptop,1,1700,09/10/19 17:22,"63 10th St, Los Angeles, CA 90001" -255795,Bose SoundSport Headphones,1,99.99,09/03/19 17:43,"411 Madison St, Portland, OR 97035" -255796,Apple Airpods Headphones,1,150,09/02/19 19:00,"582 Wilson St, San Francisco, CA 94016" -255797,USB-C Charging Cable,1,11.95,09/17/19 23:33,"370 Pine St, San Francisco, CA 94016" -255798,Wired Headphones,1,11.99,09/06/19 14:18,"536 12th St, San Francisco, CA 94016" -255799,USB-C Charging Cable,2,11.95,09/14/19 22:20,"208 Lakeview St, Boston, MA 02215" -255800,AA Batteries (4-pack),1,3.84,09/02/19 13:18,"210 Pine St, Atlanta, GA 30301" -255801,Macbook Pro Laptop,1,1700,09/05/19 11:25,"930 Forest St, Boston, MA 02215" -255802,USB-C Charging Cable,1,11.95,09/03/19 08:18,"207 Washington St, Boston, MA 02215" -255803,USB-C Charging Cable,1,11.95,09/07/19 19:00,"894 Park St, Atlanta, GA 30301" -255804,Lightning Charging Cable,1,14.95,09/03/19 16:31,"133 Washington St, Dallas, TX 75001" -255805,AA Batteries (4-pack),2,3.84,09/22/19 20:04,"282 5th St, Austin, TX 73301" -255806,iPhone,1,700,09/18/19 00:11,"718 Spruce St, Dallas, TX 75001" -255806,Lightning Charging Cable,1,14.95,09/18/19 00:11,"718 Spruce St, Dallas, TX 75001" -255807,Bose SoundSport Headphones,1,99.99,09/09/19 16:20,"727 Ridge St, Dallas, TX 75001" -255808,Macbook Pro Laptop,1,1700,09/25/19 10:20,"248 13th St, Los Angeles, CA 90001" -255809,AA Batteries (4-pack),1,3.84,09/27/19 16:14,"977 8th St, San Francisco, CA 94016" -255810,ThinkPad Laptop,1,999.99,09/07/19 21:41,"497 South St, Atlanta, GA 30301" -255811,AAA Batteries (4-pack),4,2.99,09/23/19 16:21,"345 Dogwood St, Portland, OR 97035" -255812,Flatscreen TV,1,300,09/29/19 13:21,"693 Ridge St, Seattle, WA 98101" -255813,Lightning Charging Cable,2,14.95,09/17/19 09:31,"76 14th St, San Francisco, CA 94016" -255814,27in FHD Monitor,1,149.99,09/25/19 12:45,"836 7th St, Atlanta, GA 30301" -255815,iPhone,1,700,09/20/19 11:39,"147 Church St, Boston, MA 02215" -255815,Lightning Charging Cable,1,14.95,09/20/19 11:39,"147 Church St, Boston, MA 02215" -255816,iPhone,1,700,09/10/19 16:50,"678 Forest St, Los Angeles, CA 90001" -255816,AAA Batteries (4-pack),2,2.99,09/10/19 16:50,"678 Forest St, Los Angeles, CA 90001" -255817,AA Batteries (4-pack),1,3.84,09/06/19 17:04,"8 Ridge St, San Francisco, CA 94016" -255818,Lightning Charging Cable,1,14.95,09/06/19 15:41,"516 Adams St, Los Angeles, CA 90001" -255819,Wired Headphones,1,11.99,09/23/19 12:19,"60 6th St, New York City, NY 10001" -255820,Macbook Pro Laptop,1,1700,09/07/19 09:33,"119 Meadow St, New York City, NY 10001" -255821,Lightning Charging Cable,2,14.95,09/08/19 12:07,"869 River St, New York City, NY 10001" -255822,AA Batteries (4-pack),1,3.84,09/07/19 21:23,"708 River St, Dallas, TX 75001" -255823,Wired Headphones,1,11.99,09/30/19 12:51,"644 Wilson St, Portland, OR 97035" -255824,USB-C Charging Cable,1,11.95,09/08/19 13:15,"715 7th St, Los Angeles, CA 90001" -255825,27in 4K Gaming Monitor,1,389.99,09/04/19 23:00,"211 4th St, Boston, MA 02215" -255826,Google Phone,1,600,09/15/19 11:22,"908 North St, Dallas, TX 75001" -255827,ThinkPad Laptop,1,999.99,09/23/19 10:23,"561 Lakeview St, Los Angeles, CA 90001" -255828,27in 4K Gaming Monitor,1,389.99,09/15/19 18:02,"51 Cherry St, Dallas, TX 75001" -255829,Apple Airpods Headphones,1,150,09/04/19 11:27,"283 4th St, San Francisco, CA 94016" -255830,Macbook Pro Laptop,1,1700,09/29/19 21:00,"402 8th St, Boston, MA 02215" -255831,Lightning Charging Cable,2,14.95,09/29/19 14:30,"480 Dogwood St, Los Angeles, CA 90001" -255832,Lightning Charging Cable,1,14.95,09/15/19 22:11,"31 Adams St, Austin, TX 73301" -255833,Lightning Charging Cable,1,14.95,09/27/19 21:18,"536 7th St, Dallas, TX 75001" -255834,AA Batteries (4-pack),1,3.84,09/04/19 15:30,"477 6th St, Boston, MA 02215" -255835,AA Batteries (4-pack),1,3.84,09/13/19 14:22,"173 Spruce St, Los Angeles, CA 90001" -255836,Bose SoundSport Headphones,1,99.99,09/05/19 16:17,"171 Lakeview St, Boston, MA 02215" -255837,AAA Batteries (4-pack),1,2.99,09/10/19 06:25,"306 Pine St, Los Angeles, CA 90001" -255838,AA Batteries (4-pack),1,3.84,09/11/19 13:57,"357 Wilson St, San Francisco, CA 94016" -255839,Google Phone,1,600,09/16/19 16:33,"301 Elm St, San Francisco, CA 94016" -255839,USB-C Charging Cable,1,11.95,09/16/19 16:33,"301 Elm St, San Francisco, CA 94016" -255840,Lightning Charging Cable,1,14.95,09/18/19 17:59,"130 Pine St, San Francisco, CA 94016" -255841,AA Batteries (4-pack),1,3.84,09/07/19 00:50,"849 2nd St, New York City, NY 10001" -255842,Apple Airpods Headphones,1,150,09/21/19 21:58,"116 Ridge St, Boston, MA 02215" -255842,27in 4K Gaming Monitor,1,389.99,09/21/19 21:58,"116 Ridge St, Boston, MA 02215" -255843,Wired Headphones,1,11.99,09/26/19 15:32,"915 Walnut St, San Francisco, CA 94016" -255844,Flatscreen TV,1,300,09/27/19 18:33,"918 River St, Portland, OR 97035" -255845,Wired Headphones,1,11.99,09/16/19 13:15,"734 Lakeview St, Austin, TX 73301" -255846,Vareebadd Phone,1,400,09/10/19 14:40,"286 Cherry St, San Francisco, CA 94016" -255847,Macbook Pro Laptop,1,1700,09/24/19 09:39,"984 Jackson St, Los Angeles, CA 90001" -255848,34in Ultrawide Monitor,1,379.99,09/10/19 22:33,"596 West St, Seattle, WA 98101" -255849,AAA Batteries (4-pack),1,2.99,09/15/19 08:02,"279 Hill St, Boston, MA 02215" -255850,USB-C Charging Cable,1,11.95,09/14/19 14:34,"192 7th St, Dallas, TX 75001" -255851,Bose SoundSport Headphones,1,99.99,09/21/19 22:39,"33 River St, San Francisco, CA 94016" -255852,Flatscreen TV,1,300,09/21/19 10:41,"496 Walnut St, Los Angeles, CA 90001" -255853,USB-C Charging Cable,2,11.95,09/08/19 08:30,"416 Lakeview St, Los Angeles, CA 90001" -255854,Wired Headphones,1,11.99,09/11/19 10:08,"242 Lakeview St, Dallas, TX 75001" -255855,iPhone,1,700,09/16/19 20:50,"17 5th St, Atlanta, GA 30301" -255856,AA Batteries (4-pack),1,3.84,09/11/19 12:40,"784 Meadow St, New York City, NY 10001" -255857,Apple Airpods Headphones,1,150,09/12/19 19:10,"669 Highland St, Los Angeles, CA 90001" -255858,34in Ultrawide Monitor,1,379.99,09/15/19 09:45,"187 Jackson St, New York City, NY 10001" -255859,Bose SoundSport Headphones,1,99.99,09/25/19 12:46,"274 Chestnut St, Portland, OR 97035" -255860,AAA Batteries (4-pack),1,2.99,09/28/19 23:04,"167 North St, San Francisco, CA 94016" -255861,AAA Batteries (4-pack),3,2.99,09/04/19 14:16,"414 Park St, San Francisco, CA 94016" -255862,USB-C Charging Cable,1,11.95,09/25/19 19:32,"473 Spruce St, Portland, OR 97035" -255863,USB-C Charging Cable,1,11.95,09/13/19 13:16,"535 North St, Dallas, TX 75001" -255864,Wired Headphones,2,11.99,09/30/19 11:33,"869 Madison St, San Francisco, CA 94016" -255865,ThinkPad Laptop,1,999.99,09/01/19 19:20,"615 Ridge St, Portland, OR 97035" -255866,Wired Headphones,1,11.99,09/02/19 14:39,"572 Lakeview St, Atlanta, GA 30301" -255867,Lightning Charging Cable,2,14.95,09/30/19 14:15,"148 12th St, Boston, MA 02215" -255868,AA Batteries (4-pack),6,3.84,09/12/19 10:27,"470 Maple St, San Francisco, CA 94016" -255869,USB-C Charging Cable,1,11.95,09/17/19 20:46,"965 1st St, San Francisco, CA 94016" -255870,AA Batteries (4-pack),1,3.84,09/21/19 18:24,"521 River St, Boston, MA 02215" -255871,Apple Airpods Headphones,1,150,09/03/19 19:01,"761 Lake St, Atlanta, GA 30301" -255872,Lightning Charging Cable,1,14.95,09/17/19 18:25,"668 Lakeview St, Seattle, WA 98101" -255873,Apple Airpods Headphones,1,150,09/20/19 10:45,"250 Jefferson St, San Francisco, CA 94016" -255874,USB-C Charging Cable,1,11.95,09/14/19 07:45,"163 Lake St, Atlanta, GA 30301" -255875,USB-C Charging Cable,1,11.95,09/29/19 15:22,"774 13th St, San Francisco, CA 94016" -255876,Wired Headphones,1,11.99,09/19/19 16:05,"328 Johnson St, Seattle, WA 98101" -255877,AA Batteries (4-pack),1,3.84,09/26/19 09:25,"78 Main St, Dallas, TX 75001" -255878,Bose SoundSport Headphones,1,99.99,09/29/19 18:28,"462 Meadow St, Dallas, TX 75001" -255879,AA Batteries (4-pack),1,3.84,09/11/19 23:26,"133 Jackson St, Atlanta, GA 30301" -255880,Lightning Charging Cable,1,14.95,09/16/19 23:26,"318 Spruce St, Boston, MA 02215" -255881,USB-C Charging Cable,1,11.95,09/19/19 13:30,"125 Elm St, Los Angeles, CA 90001" -255882,iPhone,1,700,09/27/19 10:10,"68 7th St, New York City, NY 10001" -255883,27in FHD Monitor,1,149.99,09/01/19 10:17,"401 7th St, Seattle, WA 98101" -255884,Apple Airpods Headphones,1,150,09/17/19 23:14,"9 Jackson St, San Francisco, CA 94016" -255885,Apple Airpods Headphones,1,150,09/10/19 14:42,"516 2nd St, San Francisco, CA 94016" -255886,AAA Batteries (4-pack),1,2.99,09/13/19 14:47,"731 Cherry St, Los Angeles, CA 90001" -255887,iPhone,1,700,09/23/19 04:27,"795 1st St, Atlanta, GA 30301" -255887,Macbook Pro Laptop,1,1700,09/23/19 04:27,"795 1st St, Atlanta, GA 30301" -255888,AAA Batteries (4-pack),2,2.99,09/25/19 01:34,"674 Elm St, Atlanta, GA 30301" -255889,Wired Headphones,1,11.99,09/15/19 00:42,"609 Johnson St, Portland, OR 97035" -255890,AAA Batteries (4-pack),1,2.99,09/03/19 20:37,"942 Forest St, San Francisco, CA 94016" -255891,Apple Airpods Headphones,1,150,09/03/19 21:23,"257 4th St, San Francisco, CA 94016" -255892,34in Ultrawide Monitor,1,379.99,09/20/19 14:45,"614 11th St, Dallas, TX 75001" -255893,USB-C Charging Cable,1,11.95,09/23/19 21:19,"296 13th St, San Francisco, CA 94016" -255894,Lightning Charging Cable,1,14.95,09/12/19 19:36,"74 Ridge St, Portland, OR 97035" -255895,34in Ultrawide Monitor,1,379.99,09/07/19 15:59,"8 8th St, San Francisco, CA 94016" -255896,Bose SoundSport Headphones,1,99.99,09/02/19 13:25,"565 1st St, New York City, NY 10001" -255897,Bose SoundSport Headphones,1,99.99,09/17/19 18:42,"967 Meadow St, Atlanta, GA 30301" -255898,USB-C Charging Cable,1,11.95,09/11/19 22:39,"634 4th St, San Francisco, CA 94016" -255899,Bose SoundSport Headphones,1,99.99,09/08/19 08:00,"768 Forest St, New York City, NY 10001" -255900,27in FHD Monitor,1,149.99,09/12/19 20:04,"482 Ridge St, Dallas, TX 75001" -255901,ThinkPad Laptop,1,999.99,09/27/19 15:09,"618 2nd St, Dallas, TX 75001" -255902,USB-C Charging Cable,1,11.95,09/19/19 20:29,"586 West St, New York City, NY 10001" -255903,USB-C Charging Cable,1,11.95,09/17/19 09:40,"389 Church St, New York City, NY 10001" -255904,Lightning Charging Cable,1,14.95,09/23/19 20:45,"455 6th St, Seattle, WA 98101" -255905,USB-C Charging Cable,1,11.95,09/17/19 08:45,"198 5th St, Dallas, TX 75001" -255906,USB-C Charging Cable,1,11.95,09/29/19 14:48,"613 Cherry St, Boston, MA 02215" -255907,USB-C Charging Cable,1,11.95,09/24/19 09:29,"230 7th St, Atlanta, GA 30301" -255908,iPhone,1,700,09/14/19 17:09,"507 Madison St, Portland, OR 97035" -255908,Lightning Charging Cable,1,14.95,09/14/19 17:09,"507 Madison St, Portland, OR 97035" -255909,27in FHD Monitor,1,149.99,09/20/19 17:51,"14 Maple St, Atlanta, GA 30301" -255910,AAA Batteries (4-pack),1,2.99,09/02/19 19:11,"596 River St, Boston, MA 02215" -255911,AA Batteries (4-pack),1,3.84,09/10/19 20:13,"525 South St, Seattle, WA 98101" -255912,Lightning Charging Cable,1,14.95,09/25/19 16:45,"242 Church St, New York City, NY 10001" -255913,Lightning Charging Cable,1,14.95,09/05/19 19:16,"243 Hickory St, Boston, MA 02215" -255914,Bose SoundSport Headphones,1,99.99,09/13/19 16:19,"300 Lake St, Los Angeles, CA 90001" -255915,USB-C Charging Cable,1,11.95,09/30/19 09:07,"223 10th St, Atlanta, GA 30301" -255916,AAA Batteries (4-pack),2,2.99,09/01/19 11:15,"7 8th St, Austin, TX 73301" -255917,Wired Headphones,3,11.99,09/05/19 17:48,"54 Elm St, Boston, MA 02215" -255918,Google Phone,1,600,09/25/19 11:35,"924 Willow St, New York City, NY 10001" -255919,34in Ultrawide Monitor,1,379.99,09/28/19 14:22,"948 Park St, New York City, NY 10001" -255920,USB-C Charging Cable,1,11.95,09/07/19 00:03,"173 4th St, Portland, OR 97035" -255921,20in Monitor,1,109.99,09/19/19 23:47,"847 5th St, Atlanta, GA 30301" -255922,20in Monitor,1,109.99,09/01/19 15:47,"212 5th St, San Francisco, CA 94016" -255923,Wired Headphones,1,11.99,09/28/19 17:51,"24 Elm St, Boston, MA 02215" -255924,AAA Batteries (4-pack),4,2.99,09/21/19 14:46,"874 12th St, Boston, MA 02215" -255925,Flatscreen TV,1,300,09/24/19 00:07,"435 Dogwood St, Portland, OR 97035" -255926,AAA Batteries (4-pack),2,2.99,09/20/19 15:00,"740 Lake St, Los Angeles, CA 90001" -255927,USB-C Charging Cable,1,11.95,09/23/19 09:32,"51 Ridge St, San Francisco, CA 94016" -255928,AAA Batteries (4-pack),2,2.99,09/23/19 04:53,"15 Adams St, Atlanta, GA 30301" -255929,LG Dryer,1,600.0,09/09/19 13:28,"731 Washington St, Dallas, TX 75001" -255930,Wired Headphones,1,11.99,09/06/19 00:05,"713 Johnson St, Austin, TX 73301" -255931,Apple Airpods Headphones,1,150,09/12/19 22:32,"745 Hickory St, Boston, MA 02215" -255932,Lightning Charging Cable,1,14.95,09/30/19 18:23,"674 Hickory St, Portland, ME 04101" -255933,AAA Batteries (4-pack),1,2.99,09/04/19 20:59,"630 6th St, Dallas, TX 75001" -255934,AA Batteries (4-pack),2,3.84,09/17/19 01:33,"325 River St, Austin, TX 73301" -255935,ThinkPad Laptop,1,999.99,09/11/19 15:00,"356 Lakeview St, New York City, NY 10001" -255936,AAA Batteries (4-pack),2,2.99,09/20/19 12:57,"232 Highland St, New York City, NY 10001" -255937,AAA Batteries (4-pack),1,2.99,09/19/19 19:38,"214 Meadow St, Atlanta, GA 30301" -255938,Apple Airpods Headphones,1,150,09/24/19 21:43,"843 Highland St, San Francisco, CA 94016" -255939,Apple Airpods Headphones,1,150,09/10/19 15:00,"186 Maple St, Austin, TX 73301" -255940,ThinkPad Laptop,1,999.99,09/03/19 20:30,"76 Walnut St, New York City, NY 10001" -255941,USB-C Charging Cable,1,11.95,09/14/19 09:44,"278 Spruce St, Dallas, TX 75001" -255942,Apple Airpods Headphones,1,150,09/23/19 00:12,"749 10th St, New York City, NY 10001" -255943,Wired Headphones,1,11.99,09/12/19 19:22,"518 Pine St, Los Angeles, CA 90001" -255944,AA Batteries (4-pack),1,3.84,09/24/19 13:45,"720 8th St, Atlanta, GA 30301" -255945,AAA Batteries (4-pack),1,2.99,09/14/19 12:04,"575 Sunset St, Seattle, WA 98101" -255946,27in 4K Gaming Monitor,1,389.99,09/25/19 17:12,"49 Johnson St, San Francisco, CA 94016" -255947,Macbook Pro Laptop,1,1700,09/04/19 13:04,"229 Maple St, Boston, MA 02215" -255948,Lightning Charging Cable,1,14.95,09/20/19 13:50,"557 9th St, Los Angeles, CA 90001" -255949,iPhone,1,700,09/22/19 12:39,"256 1st St, Dallas, TX 75001" -255950,Wired Headphones,1,11.99,09/08/19 03:46,"493 Forest St, Dallas, TX 75001" -255951,34in Ultrawide Monitor,1,379.99,09/21/19 14:51,"12 Wilson St, Los Angeles, CA 90001" -255952,Lightning Charging Cable,1,14.95,09/20/19 10:44,"536 10th St, Boston, MA 02215" -255953,Apple Airpods Headphones,1,150,09/22/19 14:58,"943 10th St, Los Angeles, CA 90001" -255954,USB-C Charging Cable,1,11.95,09/20/19 18:12,"717 2nd St, Los Angeles, CA 90001" -255955,27in FHD Monitor,1,149.99,09/18/19 17:29,"392 7th St, Portland, ME 04101" -255956,AA Batteries (4-pack),3,3.84,09/18/19 08:19,"647 Sunset St, Seattle, WA 98101" -255957,27in FHD Monitor,1,149.99,09/10/19 13:47,"392 North St, Los Angeles, CA 90001" -255958,USB-C Charging Cable,1,11.95,09/09/19 11:31,"979 South St, San Francisco, CA 94016" -255959,Apple Airpods Headphones,1,150,09/30/19 21:40,"530 Dogwood St, Boston, MA 02215" -255960,ThinkPad Laptop,1,999.99,09/20/19 20:37,"942 Cedar St, Atlanta, GA 30301" -255961,iPhone,1,700,09/20/19 15:28,"701 Cedar St, Atlanta, GA 30301" -255962,Google Phone,1,600,09/06/19 02:29,"283 Jefferson St, New York City, NY 10001" -255962,USB-C Charging Cable,1,11.95,09/06/19 02:29,"283 Jefferson St, New York City, NY 10001" -255963,AA Batteries (4-pack),1,3.84,09/09/19 20:43,"864 Cedar St, Portland, OR 97035" -255964,Apple Airpods Headphones,1,150,09/29/19 09:45,"798 Church St, Los Angeles, CA 90001" -255965,Lightning Charging Cable,1,14.95,09/12/19 14:50,"671 5th St, New York City, NY 10001" -255966,Wired Headphones,1,11.99,09/22/19 16:25,"799 9th St, New York City, NY 10001" -255967,Wired Headphones,1,11.99,09/25/19 14:36,"826 Sunset St, San Francisco, CA 94016" -255968,27in 4K Gaming Monitor,1,389.99,09/03/19 11:39,"545 Center St, Atlanta, GA 30301" -255969,Vareebadd Phone,1,400,09/23/19 21:51,"238 Willow St, Dallas, TX 75001" -255970,Wired Headphones,1,11.99,09/11/19 11:20,"934 Washington St, Portland, OR 97035" -255971,USB-C Charging Cable,2,11.95,09/13/19 12:13,"662 Lincoln St, Boston, MA 02215" -255972,AAA Batteries (4-pack),2,2.99,09/26/19 12:23,"602 Johnson St, San Francisco, CA 94016" -255973,AA Batteries (4-pack),1,3.84,09/09/19 15:03,"598 Spruce St, Atlanta, GA 30301" -255974,Lightning Charging Cable,1,14.95,09/03/19 09:12,"168 Cherry St, Boston, MA 02215" -255975,USB-C Charging Cable,1,11.95,09/21/19 13:18,"734 6th St, San Francisco, CA 94016" -255976,27in FHD Monitor,1,149.99,09/04/19 21:38,"261 Lakeview St, Seattle, WA 98101" -255977,Bose SoundSport Headphones,1,99.99,09/15/19 22:00,"183 10th St, Los Angeles, CA 90001" -255978,Wired Headphones,1,11.99,09/29/19 17:25,"557 Sunset St, Boston, MA 02215" -255979,Lightning Charging Cable,2,14.95,09/29/19 16:53,"574 Hill St, New York City, NY 10001" -255980,Bose SoundSport Headphones,1,99.99,09/17/19 09:37,"840 9th St, Boston, MA 02215" -255981,AAA Batteries (4-pack),1,2.99,09/19/19 01:01,"879 Chestnut St, Austin, TX 73301" -255982,AAA Batteries (4-pack),1,2.99,09/27/19 17:32,"314 Forest St, Los Angeles, CA 90001" -255983,Lightning Charging Cable,1,14.95,09/30/19 17:39,"634 Center St, New York City, NY 10001" -255984,Apple Airpods Headphones,1,150,09/18/19 13:49,"459 7th St, Seattle, WA 98101" -255985,AA Batteries (4-pack),1,3.84,09/14/19 12:27,"917 Park St, San Francisco, CA 94016" -255986,iPhone,1,700,09/04/19 21:16,"6 South St, Los Angeles, CA 90001" -255987,USB-C Charging Cable,1,11.95,09/13/19 16:50,"419 North St, Dallas, TX 75001" -255988,Bose SoundSport Headphones,1,99.99,09/09/19 23:32,"646 Adams St, Portland, OR 97035" -255989,27in FHD Monitor,1,149.99,09/05/19 08:14,"382 Hill St, Austin, TX 73301" -255990,Macbook Pro Laptop,1,1700,09/15/19 19:59,"701 Center St, Portland, ME 04101" -255991,Wired Headphones,1,11.99,09/13/19 13:40,"150 6th St, Austin, TX 73301" -255992,USB-C Charging Cable,2,11.95,09/23/19 11:00,"509 11th St, Portland, ME 04101" -255993,27in FHD Monitor,1,149.99,09/09/19 06:38,"268 Jefferson St, San Francisco, CA 94016" -255994,ThinkPad Laptop,1,999.99,09/02/19 22:29,"605 Adams St, Atlanta, GA 30301" -255995,Lightning Charging Cable,1,14.95,09/20/19 22:34,"462 Ridge St, New York City, NY 10001" -255996,USB-C Charging Cable,1,11.95,09/23/19 14:55,"267 South St, Los Angeles, CA 90001" -255997,Bose SoundSport Headphones,1,99.99,09/16/19 08:20,"156 Dogwood St, San Francisco, CA 94016" -255998,AA Batteries (4-pack),1,3.84,09/28/19 02:39,"627 Lake St, San Francisco, CA 94016" -255999,Lightning Charging Cable,1,14.95,09/04/19 17:31,"393 Cherry St, San Francisco, CA 94016" -256000,Bose SoundSport Headphones,1,99.99,09/02/19 18:58,"856 2nd St, San Francisco, CA 94016" -256001,AA Batteries (4-pack),1,3.84,09/03/19 12:43,"19 Hickory St, Los Angeles, CA 90001" -256002,AAA Batteries (4-pack),1,2.99,09/10/19 17:37,"250 Jefferson St, Austin, TX 73301" -256003,Google Phone,1,600,09/01/19 19:12,"841 Lakeview St, Los Angeles, CA 90001" -256003,USB-C Charging Cable,1,11.95,09/01/19 19:12,"841 Lakeview St, Los Angeles, CA 90001" -256004,27in 4K Gaming Monitor,1,389.99,09/03/19 04:33,"390 Cedar St, Seattle, WA 98101" -256005,20in Monitor,1,109.99,09/18/19 12:16,"254 Johnson St, New York City, NY 10001" -256006,Lightning Charging Cable,1,14.95,09/07/19 09:41,"611 Cherry St, San Francisco, CA 94016" -256007,Lightning Charging Cable,1,14.95,09/02/19 20:18,"538 Meadow St, Boston, MA 02215" -256008,iPhone,1,700,09/20/19 08:23,"967 Johnson St, Austin, TX 73301" -256009,USB-C Charging Cable,1,11.95,09/20/19 22:04,"400 Church St, Seattle, WA 98101" -256010,Bose SoundSport Headphones,1,99.99,09/26/19 16:34,"341 River St, Los Angeles, CA 90001" -256011,Bose SoundSport Headphones,1,99.99,09/11/19 14:56,"912 Center St, Los Angeles, CA 90001" -256012,AA Batteries (4-pack),1,3.84,09/21/19 17:12,"929 Elm St, San Francisco, CA 94016" -256013,Bose SoundSport Headphones,1,99.99,09/14/19 16:43,"92 Lincoln St, Los Angeles, CA 90001" -256014,Wired Headphones,1,11.99,09/14/19 21:04,"321 Pine St, Seattle, WA 98101" -256015,Apple Airpods Headphones,1,150,09/02/19 12:22,"66 5th St, Portland, OR 97035" -256016,Lightning Charging Cable,1,14.95,09/19/19 10:56,"252 Hill St, Seattle, WA 98101" -256017,27in FHD Monitor,1,149.99,09/16/19 23:35,"107 Dogwood St, Portland, ME 04101" -256018,AAA Batteries (4-pack),1,2.99,09/04/19 09:53,"573 Madison St, New York City, NY 10001" -256019,27in 4K Gaming Monitor,1,389.99,09/16/19 17:27,"819 4th St, Dallas, TX 75001" -256020,USB-C Charging Cable,1,11.95,09/05/19 22:01,"618 Meadow St, Boston, MA 02215" -256021,Bose SoundSport Headphones,1,99.99,09/16/19 11:51,"715 Johnson St, Atlanta, GA 30301" -256022,Wired Headphones,1,11.99,09/25/19 03:17,"684 Madison St, San Francisco, CA 94016" -256023,Vareebadd Phone,1,400,09/11/19 10:40,"431 Forest St, Los Angeles, CA 90001" -256024,AA Batteries (4-pack),2,3.84,09/03/19 18:38,"272 Main St, Dallas, TX 75001" -256025,Apple Airpods Headphones,1,150,09/05/19 07:29,"800 Sunset St, Los Angeles, CA 90001" -256026,Lightning Charging Cable,1,14.95,09/14/19 16:04,"125 Church St, Atlanta, GA 30301" -256027,AAA Batteries (4-pack),1,2.99,09/30/19 19:02,"128 Johnson St, San Francisco, CA 94016" -256028,USB-C Charging Cable,1,11.95,09/22/19 15:53,"530 Spruce St, Boston, MA 02215" -256029,USB-C Charging Cable,3,11.95,09/07/19 05:28,"633 West St, Boston, MA 02215" -256030,Bose SoundSport Headphones,1,99.99,09/27/19 00:23,"61 Chestnut St, Austin, TX 73301" -256031,AA Batteries (4-pack),3,3.84,09/29/19 10:58,"471 Spruce St, San Francisco, CA 94016" -256032,ThinkPad Laptop,1,999.99,09/04/19 17:30,"960 4th St, New York City, NY 10001" -256033,USB-C Charging Cable,1,11.95,09/23/19 22:36,"14 Hill St, San Francisco, CA 94016" -256034,ThinkPad Laptop,1,999.99,09/16/19 23:09,"648 Walnut St, Los Angeles, CA 90001" -256035,Wired Headphones,1,11.99,09/23/19 16:52,"545 Lakeview St, Seattle, WA 98101" -256036,AAA Batteries (4-pack),2,2.99,09/23/19 10:30,"609 Jackson St, San Francisco, CA 94016" -256037,Bose SoundSport Headphones,1,99.99,09/04/19 21:05,"733 Adams St, San Francisco, CA 94016" -256038,Bose SoundSport Headphones,1,99.99,09/26/19 14:26,"250 Park St, New York City, NY 10001" -256039,AA Batteries (4-pack),2,3.84,09/30/19 22:19,"286 Pine St, San Francisco, CA 94016" -256040,AA Batteries (4-pack),3,3.84,09/12/19 01:24,"187 12th St, New York City, NY 10001" -256041,Wired Headphones,1,11.99,09/17/19 11:56,"809 Meadow St, Boston, MA 02215" -256042,Lightning Charging Cable,1,14.95,09/04/19 00:32,"924 Park St, Los Angeles, CA 90001" -256043,AA Batteries (4-pack),1,3.84,09/08/19 11:14,"458 Sunset St, Atlanta, GA 30301" -256044,27in 4K Gaming Monitor,1,389.99,09/05/19 18:46,"7 Washington St, Seattle, WA 98101" -256045,Apple Airpods Headphones,1,150,09/03/19 12:01,"315 Ridge St, Seattle, WA 98101" -256046,Lightning Charging Cable,1,14.95,09/22/19 19:53,"931 Jackson St, Atlanta, GA 30301" -256047,AA Batteries (4-pack),2,3.84,09/12/19 13:30,"779 Madison St, Seattle, WA 98101" -256048,Flatscreen TV,1,300,09/16/19 13:18,"557 12th St, Austin, TX 73301" -256049,Apple Airpods Headphones,1,150,09/22/19 18:23,"285 Willow St, New York City, NY 10001" -256050,AAA Batteries (4-pack),3,2.99,09/01/19 17:40,"8 2nd St, San Francisco, CA 94016" -256051,34in Ultrawide Monitor,1,379.99,09/21/19 19:29,"145 Church St, Seattle, WA 98101" -256052,Bose SoundSport Headphones,1,99.99,09/04/19 21:20,"869 10th St, Dallas, TX 75001" -256053,USB-C Charging Cable,1,11.95,09/29/19 13:54,"86 River St, Atlanta, GA 30301" -256054,27in 4K Gaming Monitor,1,389.99,09/23/19 14:15,"125 Sunset St, Los Angeles, CA 90001" -256055,Bose SoundSport Headphones,1,99.99,09/26/19 14:00,"494 Walnut St, Austin, TX 73301" -256056,Bose SoundSport Headphones,1,99.99,09/06/19 23:42,"285 5th St, Los Angeles, CA 90001" -256057,Lightning Charging Cable,1,14.95,09/24/19 12:56,"5 River St, San Francisco, CA 94016" -256058,Lightning Charging Cable,1,14.95,09/24/19 19:56,"252 Pine St, San Francisco, CA 94016" -256059,AA Batteries (4-pack),1,3.84,09/13/19 20:27,"695 Chestnut St, Boston, MA 02215" -256060,Apple Airpods Headphones,1,150,09/21/19 10:57,"324 Walnut St, Seattle, WA 98101" -256061,AA Batteries (4-pack),1,3.84,09/19/19 14:11,"86 Maple St, Atlanta, GA 30301" -256062,Macbook Pro Laptop,1,1700,09/11/19 11:54,"537 14th St, San Francisco, CA 94016" -256063,34in Ultrawide Monitor,1,379.99,09/27/19 18:51,"60 6th St, New York City, NY 10001" -256064,ThinkPad Laptop,1,999.99,09/28/19 16:49,"995 Park St, Los Angeles, CA 90001" -256065,Bose SoundSport Headphones,1,99.99,09/25/19 16:55,"808 6th St, Atlanta, GA 30301" -256065,Lightning Charging Cable,1,14.95,09/25/19 16:55,"808 6th St, Atlanta, GA 30301" -256066,Bose SoundSport Headphones,1,99.99,09/18/19 15:25,"959 Lake St, Austin, TX 73301" -256067,34in Ultrawide Monitor,1,379.99,09/15/19 06:45,"806 Meadow St, San Francisco, CA 94016" -256068,Wired Headphones,1,11.99,09/14/19 22:30,"801 2nd St, Seattle, WA 98101" -256069,USB-C Charging Cable,1,11.95,09/29/19 06:45,"551 Forest St, Dallas, TX 75001" -256070,AAA Batteries (4-pack),3,2.99,09/23/19 12:04,"64 Adams St, San Francisco, CA 94016" -256071,AA Batteries (4-pack),1,3.84,09/25/19 18:17,"95 Ridge St, Los Angeles, CA 90001" -256072,AA Batteries (4-pack),3,3.84,09/19/19 17:24,"335 5th St, Boston, MA 02215" -256073,Macbook Pro Laptop,1,1700,09/14/19 08:13,"86 Maple St, San Francisco, CA 94016" -256074,AA Batteries (4-pack),1,3.84,09/19/19 00:09,"506 Spruce St, New York City, NY 10001" -256075,AAA Batteries (4-pack),1,2.99,09/11/19 18:40,"620 Church St, Boston, MA 02215" -256076,Lightning Charging Cable,1,14.95,09/04/19 14:25,"817 10th St, Dallas, TX 75001" -256077,USB-C Charging Cable,1,11.95,09/06/19 19:58,"769 9th St, San Francisco, CA 94016" -256078,iPhone,1,700,09/02/19 08:52,"450 4th St, San Francisco, CA 94016" -256079,20in Monitor,1,109.99,09/13/19 20:55,"786 12th St, Los Angeles, CA 90001" -256080,Bose SoundSport Headphones,1,99.99,09/04/19 09:27,"970 Jefferson St, San Francisco, CA 94016" -256081,Wired Headphones,1,11.99,09/18/19 22:15,"392 9th St, Los Angeles, CA 90001" -256082,Wired Headphones,1,11.99,09/05/19 12:12,"447 4th St, Dallas, TX 75001" -256083,Apple Airpods Headphones,1,150,09/13/19 12:58,"509 West St, Los Angeles, CA 90001" -256084,Wired Headphones,1,11.99,09/29/19 21:21,"486 Lake St, San Francisco, CA 94016" -256085,AAA Batteries (4-pack),1,2.99,09/02/19 13:22,"106 8th St, Dallas, TX 75001" -256086,Wired Headphones,1,11.99,09/12/19 15:24,"538 Madison St, New York City, NY 10001" -256087,Wired Headphones,1,11.99,09/07/19 18:12,"806 North St, New York City, NY 10001" -256088,Wired Headphones,1,11.99,09/16/19 18:12,"263 Ridge St, New York City, NY 10001" -256089,AA Batteries (4-pack),1,3.84,09/10/19 21:22,"211 Meadow St, New York City, NY 10001" -256090,AA Batteries (4-pack),1,3.84,09/06/19 23:21,"887 6th St, Atlanta, GA 30301" -256091,27in FHD Monitor,1,149.99,09/23/19 07:55,"323 Ridge St, Dallas, TX 75001" -256092,AA Batteries (4-pack),1,3.84,09/06/19 12:54,"202 6th St, Seattle, WA 98101" -256093,AAA Batteries (4-pack),2,2.99,09/16/19 11:50,"990 Park St, New York City, NY 10001" -256094,AA Batteries (4-pack),1,3.84,09/15/19 15:30,"85 North St, Portland, OR 97035" -256095,AAA Batteries (4-pack),2,2.99,09/08/19 13:03,"2 Meadow St, Dallas, TX 75001" -256096,27in FHD Monitor,1,149.99,09/06/19 20:38,"694 Church St, Los Angeles, CA 90001" -256097,USB-C Charging Cable,1,11.95,09/24/19 18:47,"365 Meadow St, San Francisco, CA 94016" -256098,Apple Airpods Headphones,1,150,09/22/19 13:33,"133 11th St, Los Angeles, CA 90001" -256099,Apple Airpods Headphones,1,150,09/26/19 19:23,"372 5th St, Seattle, WA 98101" -256100,Wired Headphones,1,11.99,09/07/19 05:47,"331 4th St, Austin, TX 73301" -256101,ThinkPad Laptop,1,999.99,09/22/19 22:35,"499 12th St, Atlanta, GA 30301" -256102,Macbook Pro Laptop,1,1700,09/06/19 20:13,"611 Jackson St, Atlanta, GA 30301" -256103,27in 4K Gaming Monitor,1,389.99,09/02/19 13:16,"824 5th St, New York City, NY 10001" -256104,Macbook Pro Laptop,1,1700,09/07/19 22:54,"685 4th St, New York City, NY 10001" -256105,iPhone,1,700,09/26/19 20:16,"516 Lincoln St, New York City, NY 10001" -256106,27in FHD Monitor,1,149.99,09/23/19 19:50,"124 Meadow St, Los Angeles, CA 90001" -256107,USB-C Charging Cable,1,11.95,09/02/19 13:19,"112 4th St, Los Angeles, CA 90001" -256108,Wired Headphones,1,11.99,09/23/19 16:03,"887 Walnut St, Austin, TX 73301" -256109,Macbook Pro Laptop,1,1700,09/19/19 16:33,"940 Main St, Los Angeles, CA 90001" -256110,Wired Headphones,1,11.99,09/13/19 17:54,"736 River St, Seattle, WA 98101" -256111,AA Batteries (4-pack),1,3.84,09/02/19 16:51,"677 7th St, San Francisco, CA 94016" -256112,27in 4K Gaming Monitor,1,389.99,09/14/19 19:07,"722 Madison St, Austin, TX 73301" -256113,AA Batteries (4-pack),1,3.84,09/08/19 15:08,"847 Main St, Los Angeles, CA 90001" -256114,Wired Headphones,2,11.99,09/15/19 22:15,"126 Hill St, San Francisco, CA 94016" -256115,Wired Headphones,1,11.99,09/03/19 18:43,"418 9th St, Los Angeles, CA 90001" -256116,Apple Airpods Headphones,1,150,09/11/19 02:17,"82 9th St, San Francisco, CA 94016" -256117,AA Batteries (4-pack),1,3.84,09/06/19 08:51,"474 10th St, Los Angeles, CA 90001" -256118,34in Ultrawide Monitor,1,379.99,09/29/19 13:21,"488 4th St, Austin, TX 73301" -256119,AA Batteries (4-pack),1,3.84,09/18/19 19:01,"720 Church St, Portland, OR 97035" -256120,USB-C Charging Cable,1,11.95,09/24/19 18:17,"499 10th St, San Francisco, CA 94016" -256121,20in Monitor,1,109.99,09/03/19 22:56,"110 West St, Seattle, WA 98101" -256122,AAA Batteries (4-pack),1,2.99,09/29/19 09:14,"157 Main St, Los Angeles, CA 90001" -256123,Wired Headphones,1,11.99,09/19/19 15:09,"324 Willow St, Atlanta, GA 30301" -256124,20in Monitor,1,109.99,09/25/19 21:59,"33 Lake St, Dallas, TX 75001" -256125,27in 4K Gaming Monitor,1,389.99,09/19/19 16:16,"77 River St, Austin, TX 73301" -256126,Lightning Charging Cable,1,14.95,09/29/19 01:21,"251 North St, Atlanta, GA 30301" -256127,Macbook Pro Laptop,1,1700,09/19/19 16:45,"294 Ridge St, Portland, OR 97035" -256128,Bose SoundSport Headphones,1,99.99,09/08/19 20:44,"833 Chestnut St, Los Angeles, CA 90001" -256129,34in Ultrawide Monitor,1,379.99,09/02/19 07:14,"545 Meadow St, Los Angeles, CA 90001" -256130,USB-C Charging Cable,1,11.95,09/10/19 18:41,"37 Walnut St, Los Angeles, CA 90001" -256131,20in Monitor,1,109.99,09/23/19 12:09,"676 11th St, New York City, NY 10001" -256131,Apple Airpods Headphones,1,150,09/23/19 12:09,"676 11th St, New York City, NY 10001" -256132,Lightning Charging Cable,1,14.95,09/24/19 21:50,"465 Highland St, Los Angeles, CA 90001" -256132,AA Batteries (4-pack),1,3.84,09/24/19 21:50,"465 Highland St, Los Angeles, CA 90001" -256133,Bose SoundSport Headphones,1,99.99,09/29/19 21:49,"518 Park St, Portland, OR 97035" -256134,Google Phone,1,600,09/03/19 12:55,"944 Pine St, Austin, TX 73301" -256135,27in FHD Monitor,1,149.99,09/25/19 12:13,"857 Washington St, New York City, NY 10001" -256136,Bose SoundSport Headphones,1,99.99,09/16/19 18:45,"28 Park St, New York City, NY 10001" -256137,Wired Headphones,1,11.99,09/08/19 12:12,"732 Ridge St, Austin, TX 73301" -256138,AAA Batteries (4-pack),1,2.99,09/25/19 19:42,"950 Dogwood St, New York City, NY 10001" -256139,27in 4K Gaming Monitor,1,389.99,09/02/19 11:56,"63 Highland St, Boston, MA 02215" -256140,AAA Batteries (4-pack),1,2.99,09/07/19 19:07,"532 Dogwood St, Los Angeles, CA 90001" -256141,AAA Batteries (4-pack),2,2.99,09/11/19 09:43,"946 Hickory St, Boston, MA 02215" -256142,ThinkPad Laptop,1,999.99,09/30/19 20:09,"432 2nd St, San Francisco, CA 94016" -256143,USB-C Charging Cable,1,11.95,09/07/19 13:50,"805 14th St, Seattle, WA 98101" -256144,Bose SoundSport Headphones,1,99.99,09/13/19 17:47,"505 1st St, Boston, MA 02215" -256145,Bose SoundSport Headphones,1,99.99,09/13/19 10:41,"762 Cherry St, Austin, TX 73301" -256146,34in Ultrawide Monitor,1,379.99,09/16/19 19:48,"351 Pine St, New York City, NY 10001" -256147,AAA Batteries (4-pack),1,2.99,09/10/19 13:50,"397 Maple St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -256148,27in FHD Monitor,1,149.99,09/10/19 18:15,"32 Willow St, San Francisco, CA 94016" -256149,Bose SoundSport Headphones,1,99.99,09/09/19 15:11,"819 14th St, Austin, TX 73301" -256150,USB-C Charging Cable,1,11.95,09/25/19 15:15,"277 1st St, Atlanta, GA 30301" -256151,USB-C Charging Cable,2,11.95,09/11/19 22:23,"983 Forest St, San Francisco, CA 94016" -256152,AA Batteries (4-pack),1,3.84,09/06/19 02:58,"149 Jefferson St, Seattle, WA 98101" -256153,34in Ultrawide Monitor,1,379.99,09/26/19 15:54,"850 4th St, Portland, OR 97035" -256154,Bose SoundSport Headphones,1,99.99,09/14/19 12:56,"353 Jefferson St, Portland, OR 97035" -256155,Wired Headphones,1,11.99,09/27/19 16:06,"803 Highland St, Portland, OR 97035" -256156,Lightning Charging Cable,1,14.95,09/15/19 13:03,"656 North St, Los Angeles, CA 90001" -256157,USB-C Charging Cable,1,11.95,09/07/19 21:30,"845 Chestnut St, Boston, MA 02215" -256158,AAA Batteries (4-pack),1,2.99,09/25/19 14:05,"187 Center St, Seattle, WA 98101" -256159,Lightning Charging Cable,1,14.95,09/14/19 10:31,"314 6th St, San Francisco, CA 94016" -256160,AA Batteries (4-pack),1,3.84,09/28/19 15:32,"795 Walnut St, Atlanta, GA 30301" -256161,AA Batteries (4-pack),1,3.84,09/06/19 01:54,"822 10th St, Los Angeles, CA 90001" -256162,34in Ultrawide Monitor,1,379.99,09/04/19 10:10,"165 Pine St, San Francisco, CA 94016" -256163,ThinkPad Laptop,1,999.99,09/21/19 06:20,"720 Elm St, San Francisco, CA 94016" -256164,iPhone,1,700,09/20/19 14:37,"667 Wilson St, New York City, NY 10001" -256165,AAA Batteries (4-pack),1,2.99,09/06/19 21:19,"996 Pine St, Los Angeles, CA 90001" -256166,USB-C Charging Cable,1,11.95,09/19/19 21:03,"522 Chestnut St, Seattle, WA 98101" -256167,iPhone,1,700,09/21/19 15:17,"669 Elm St, San Francisco, CA 94016" -256168,USB-C Charging Cable,1,11.95,09/17/19 13:47,"574 14th St, New York City, NY 10001" -256169,USB-C Charging Cable,1,11.95,09/03/19 17:37,"163 Lakeview St, San Francisco, CA 94016" -256170,Flatscreen TV,1,300,09/03/19 19:06,"709 6th St, San Francisco, CA 94016" -256171,iPhone,1,700,09/18/19 11:46,"410 Walnut St, Los Angeles, CA 90001" -256172,Apple Airpods Headphones,1,150,09/18/19 04:24,"642 Walnut St, San Francisco, CA 94016" -256173,ThinkPad Laptop,1,999.99,09/19/19 19:11,"880 Johnson St, Boston, MA 02215" -256174,Bose SoundSport Headphones,1,99.99,09/06/19 13:53,"528 West St, San Francisco, CA 94016" -256175,Macbook Pro Laptop,1,1700,09/11/19 12:19,"301 Jefferson St, Boston, MA 02215" -256176,34in Ultrawide Monitor,1,379.99,09/20/19 16:01,"789 Lakeview St, Los Angeles, CA 90001" -256177,Google Phone,1,600,09/04/19 18:05,"494 Center St, Los Angeles, CA 90001" -256177,USB-C Charging Cable,1,11.95,09/04/19 18:05,"494 Center St, Los Angeles, CA 90001" -256178,USB-C Charging Cable,1,11.95,09/19/19 21:37,"757 Pine St, Dallas, TX 75001" -256179,AAA Batteries (4-pack),1,2.99,09/11/19 10:18,"986 Maple St, Portland, OR 97035" -256180,Lightning Charging Cable,1,14.95,09/14/19 22:48,"948 2nd St, New York City, NY 10001" -256181,Bose SoundSport Headphones,1,99.99,09/06/19 20:10,"574 Washington St, San Francisco, CA 94016" -256182,AA Batteries (4-pack),3,3.84,09/22/19 13:37,"226 Madison St, New York City, NY 10001" -256183,27in 4K Gaming Monitor,1,389.99,09/14/19 19:08,"816 Spruce St, Los Angeles, CA 90001" -256183,Bose SoundSport Headphones,1,99.99,09/14/19 19:08,"816 Spruce St, Los Angeles, CA 90001" -256184,AAA Batteries (4-pack),1,2.99,09/26/19 08:22,"950 Lakeview St, Dallas, TX 75001" -256185,Apple Airpods Headphones,1,150,09/19/19 15:35,"182 11th St, Portland, OR 97035" -256186,Bose SoundSport Headphones,1,99.99,09/27/19 10:32,"568 South St, Portland, OR 97035" -256187,USB-C Charging Cable,2,11.95,09/21/19 07:46,"864 Lake St, Portland, OR 97035" -256188,Flatscreen TV,1,300,09/28/19 19:37,"789 7th St, Atlanta, GA 30301" -256189,Apple Airpods Headphones,1,150,09/07/19 11:44,"39 14th St, San Francisco, CA 94016" -256190,27in 4K Gaming Monitor,1,389.99,09/28/19 09:11,"802 11th St, New York City, NY 10001" -256191,Bose SoundSport Headphones,1,99.99,09/15/19 18:18,"102 7th St, San Francisco, CA 94016" -256192,AAA Batteries (4-pack),3,2.99,09/27/19 10:34,"75 5th St, Boston, MA 02215" -256193,Flatscreen TV,1,300,09/04/19 16:58,"461 Church St, Seattle, WA 98101" -256194,Lightning Charging Cable,2,14.95,09/20/19 08:39,"713 Park St, Los Angeles, CA 90001" -256195,AAA Batteries (4-pack),1,2.99,09/19/19 09:13,"126 Walnut St, San Francisco, CA 94016" -256196,USB-C Charging Cable,1,11.95,09/27/19 21:09,"253 6th St, Boston, MA 02215" -256196,USB-C Charging Cable,1,11.95,09/27/19 21:09,"253 6th St, Boston, MA 02215" -256197,USB-C Charging Cable,2,11.95,09/04/19 04:35,"531 Meadow St, New York City, NY 10001" -256198,27in FHD Monitor,1,149.99,09/12/19 20:12,"438 Wilson St, Boston, MA 02215" -256199,Google Phone,1,600,09/16/19 18:38,"464 Highland St, Boston, MA 02215" -256200,Wired Headphones,1,11.99,09/04/19 07:33,"538 Willow St, Austin, TX 73301" -256201,Google Phone,1,600,09/28/19 19:03,"166 10th St, Seattle, WA 98101" -256202,Lightning Charging Cable,1,14.95,09/06/19 08:30,"761 River St, Atlanta, GA 30301" -256203,USB-C Charging Cable,1,11.95,09/06/19 21:08,"426 Maple St, Boston, MA 02215" -256204,Wired Headphones,1,11.99,09/13/19 02:56,"999 12th St, Atlanta, GA 30301" -256205,AAA Batteries (4-pack),1,2.99,09/04/19 10:10,"560 Sunset St, Dallas, TX 75001" -256206,Apple Airpods Headphones,1,150,09/18/19 21:14,"76 10th St, San Francisco, CA 94016" -256207,AAA Batteries (4-pack),1,2.99,09/10/19 09:22,"220 Main St, Los Angeles, CA 90001" -256208,Bose SoundSport Headphones,1,99.99,09/16/19 12:27,"651 Lake St, Atlanta, GA 30301" -256209,AA Batteries (4-pack),1,3.84,09/24/19 09:00,"329 South St, San Francisco, CA 94016" -256210,Lightning Charging Cable,1,14.95,09/06/19 20:16,"664 Spruce St, Dallas, TX 75001" -256211,20in Monitor,1,109.99,09/18/19 15:53,"45 12th St, Seattle, WA 98101" -256212,Apple Airpods Headphones,1,150,09/16/19 21:44,"941 Center St, New York City, NY 10001" -256213,Apple Airpods Headphones,1,150,09/08/19 00:35,"475 Sunset St, Portland, OR 97035" -256214,34in Ultrawide Monitor,1,379.99,09/26/19 10:52,"734 9th St, New York City, NY 10001" -256215,AAA Batteries (4-pack),3,2.99,09/24/19 14:34,"128 Lake St, New York City, NY 10001" -256216,AA Batteries (4-pack),2,3.84,09/05/19 14:49,"437 5th St, San Francisco, CA 94016" -256217,AAA Batteries (4-pack),1,2.99,09/12/19 22:26,"676 Cherry St, San Francisco, CA 94016" -256218,Apple Airpods Headphones,1,150,09/02/19 17:26,"851 7th St, San Francisco, CA 94016" -256219,AA Batteries (4-pack),1,3.84,09/22/19 13:19,"548 11th St, Portland, OR 97035" -256220,Bose SoundSport Headphones,1,99.99,09/24/19 21:42,"328 Sunset St, San Francisco, CA 94016" -256221,Lightning Charging Cable,1,14.95,09/02/19 16:19,"148 Dogwood St, San Francisco, CA 94016" -256222,Lightning Charging Cable,1,14.95,09/21/19 21:14,"738 10th St, San Francisco, CA 94016" -256223,Apple Airpods Headphones,1,150,09/24/19 17:55,"730 Jackson St, San Francisco, CA 94016" -256224,AAA Batteries (4-pack),2,2.99,09/17/19 15:09,"260 South St, New York City, NY 10001" -256225,Bose SoundSport Headphones,1,99.99,09/20/19 21:58,"196 2nd St, San Francisco, CA 94016" -256226,Wired Headphones,1,11.99,09/20/19 21:45,"503 Park St, Los Angeles, CA 90001" -256227,AA Batteries (4-pack),1,3.84,09/04/19 08:11,"115 Jefferson St, Austin, TX 73301" -256228,27in FHD Monitor,1,149.99,09/04/19 14:27,"75 West St, Austin, TX 73301" -256229,AA Batteries (4-pack),1,3.84,09/26/19 15:41,"648 Lake St, Austin, TX 73301" -256230,AAA Batteries (4-pack),3,2.99,09/07/19 15:02,"745 Ridge St, Austin, TX 73301" -256231,AA Batteries (4-pack),2,3.84,09/22/19 18:49,"427 10th St, San Francisco, CA 94016" -256232,AAA Batteries (4-pack),1,2.99,09/13/19 10:14,"72 Lakeview St, Boston, MA 02215" -256233,Apple Airpods Headphones,1,150,09/28/19 12:35,"32 River St, Los Angeles, CA 90001" -256234,AAA Batteries (4-pack),1,2.99,09/10/19 17:42,"461 Meadow St, Boston, MA 02215" -256235,27in FHD Monitor,1,149.99,09/15/19 11:18,"294 Adams St, Los Angeles, CA 90001" -256236,Flatscreen TV,1,300,09/21/19 19:13,"342 Sunset St, Los Angeles, CA 90001" -256237,AA Batteries (4-pack),2,3.84,09/07/19 17:54,"360 Pine St, Los Angeles, CA 90001" -256238,ThinkPad Laptop,1,999.99,09/06/19 10:51,"687 4th St, Austin, TX 73301" -256239,Wired Headphones,1,11.99,09/13/19 01:46,"88 Ridge St, Dallas, TX 75001" -256240,34in Ultrawide Monitor,1,379.99,09/09/19 01:15,"424 12th St, Portland, OR 97035" -,,,,, -256241,Macbook Pro Laptop,1,1700,09/13/19 15:09,"817 Lincoln St, San Francisco, CA 94016" -256242,27in 4K Gaming Monitor,1,389.99,09/03/19 15:17,"928 Highland St, San Francisco, CA 94016" -256243,AA Batteries (4-pack),1,3.84,09/08/19 07:45,"51 8th St, Portland, OR 97035" -256244,AA Batteries (4-pack),1,3.84,09/10/19 19:02,"729 Chestnut St, Boston, MA 02215" -256245,USB-C Charging Cable,1,11.95,09/10/19 12:57,"743 8th St, Portland, ME 04101" -256246,USB-C Charging Cable,1,11.95,09/08/19 20:13,"580 South St, Seattle, WA 98101" -256246,Bose SoundSport Headphones,1,99.99,09/08/19 20:13,"580 South St, Seattle, WA 98101" -256247,AAA Batteries (4-pack),4,2.99,09/01/19 13:01,"74 South St, New York City, NY 10001" -256248,27in FHD Monitor,1,149.99,09/30/19 19:20,"361 Wilson St, Atlanta, GA 30301" -256249,Lightning Charging Cable,1,14.95,09/13/19 16:59,"651 Walnut St, San Francisco, CA 94016" -256250,Flatscreen TV,1,300,09/05/19 17:23,"499 Lakeview St, New York City, NY 10001" -256251,27in FHD Monitor,1,149.99,09/28/19 10:35,"695 Jefferson St, New York City, NY 10001" -256252,Flatscreen TV,1,300,09/23/19 18:59,"340 Pine St, Boston, MA 02215" -256253,Google Phone,1,600,09/27/19 15:11,"296 2nd St, New York City, NY 10001" -256254,USB-C Charging Cable,1,11.95,09/12/19 11:46,"595 2nd St, Austin, TX 73301" -256255,27in FHD Monitor,1,149.99,09/08/19 19:16,"791 Maple St, Atlanta, GA 30301" -256256,AAA Batteries (4-pack),1,2.99,09/10/19 22:51,"461 Elm St, Los Angeles, CA 90001" -256257,Lightning Charging Cable,1,14.95,09/27/19 22:38,"927 Maple St, San Francisco, CA 94016" -256258,USB-C Charging Cable,1,11.95,09/17/19 21:13,"24 9th St, Boston, MA 02215" -256259,Lightning Charging Cable,1,14.95,09/13/19 18:33,"253 Spruce St, San Francisco, CA 94016" -256260,Apple Airpods Headphones,1,150,09/05/19 16:38,"670 6th St, Seattle, WA 98101" -256261,27in FHD Monitor,1,149.99,09/13/19 17:24,"800 Madison St, New York City, NY 10001" -256262,AA Batteries (4-pack),1,3.84,09/27/19 20:41,"294 Washington St, Los Angeles, CA 90001" -256263,iPhone,1,700,09/11/19 00:41,"70 Hickory St, Seattle, WA 98101" -256264,Wired Headphones,1,11.99,09/26/19 00:13,"534 Adams St, Boston, MA 02215" -256265,USB-C Charging Cable,1,11.95,09/05/19 21:20,"87 Jackson St, San Francisco, CA 94016" -256266,Flatscreen TV,1,300,09/23/19 11:40,"81 Walnut St, San Francisco, CA 94016" -256267,Flatscreen TV,1,300,09/30/19 19:36,"843 Cherry St, Atlanta, GA 30301" -256268,AA Batteries (4-pack),2,3.84,09/14/19 21:31,"533 Lakeview St, Dallas, TX 75001" -256269,Bose SoundSport Headphones,1,99.99,09/14/19 13:06,"24 8th St, Atlanta, GA 30301" -256270,AAA Batteries (4-pack),3,2.99,09/27/19 21:34,"449 North St, San Francisco, CA 94016" -256271,20in Monitor,1,109.99,09/24/19 10:49,"521 Cedar St, Seattle, WA 98101" -256272,AA Batteries (4-pack),1,3.84,09/20/19 15:00,"650 Jefferson St, Dallas, TX 75001" -256273,AAA Batteries (4-pack),4,2.99,09/06/19 17:38,"429 9th St, Atlanta, GA 30301" -256274,Wired Headphones,1,11.99,09/21/19 07:47,"66 13th St, Boston, MA 02215" -256275,Lightning Charging Cable,1,14.95,09/17/19 12:39,"490 Lakeview St, Seattle, WA 98101" -256276,27in FHD Monitor,1,149.99,09/08/19 10:48,"117 Ridge St, Seattle, WA 98101" -256277,27in FHD Monitor,1,149.99,09/28/19 19:41,"342 Adams St, New York City, NY 10001" -256278,Google Phone,1,600,09/09/19 23:12,"134 12th St, Seattle, WA 98101" -256279,AAA Batteries (4-pack),1,2.99,09/25/19 16:04,"431 North St, Los Angeles, CA 90001" -256280,AAA Batteries (4-pack),1,2.99,09/07/19 20:47,"436 14th St, Los Angeles, CA 90001" -256281,USB-C Charging Cable,1,11.95,09/03/19 13:14,"74 Dogwood St, Los Angeles, CA 90001" -256282,AA Batteries (4-pack),1,3.84,09/21/19 21:56,"567 Pine St, San Francisco, CA 94016" -256283,34in Ultrawide Monitor,1,379.99,09/03/19 00:21,"694 Park St, Boston, MA 02215" -256284,USB-C Charging Cable,1,11.95,09/02/19 11:52,"405 Lincoln St, New York City, NY 10001" -256285,ThinkPad Laptop,1,999.99,09/30/19 21:37,"197 Sunset St, Los Angeles, CA 90001" -256286,AAA Batteries (4-pack),1,2.99,09/26/19 23:25,"125 Hickory St, Seattle, WA 98101" -256287,Bose SoundSport Headphones,1,99.99,09/27/19 12:00,"780 Park St, San Francisco, CA 94016" -256288,AAA Batteries (4-pack),1,2.99,09/29/19 12:58,"489 West St, Austin, TX 73301" -256289,AAA Batteries (4-pack),2,2.99,09/14/19 07:53,"167 Highland St, Los Angeles, CA 90001" -256290,Lightning Charging Cable,1,14.95,09/26/19 14:51,"854 Elm St, San Francisco, CA 94016" -256291,USB-C Charging Cable,1,11.95,09/11/19 20:10,"205 Meadow St, San Francisco, CA 94016" -256292,27in FHD Monitor,1,149.99,09/22/19 15:18,"544 6th St, San Francisco, CA 94016" -256293,Apple Airpods Headphones,1,150,09/22/19 12:50,"648 Park St, Los Angeles, CA 90001" -256294,iPhone,1,700,09/23/19 13:41,"284 Center St, San Francisco, CA 94016" -256295,Apple Airpods Headphones,1,150,09/28/19 16:59,"328 Johnson St, San Francisco, CA 94016" -256296,USB-C Charging Cable,1,11.95,09/16/19 16:12,"43 Forest St, San Francisco, CA 94016" -256297,Bose SoundSport Headphones,1,99.99,09/06/19 11:51,"763 Wilson St, Atlanta, GA 30301" -256298,27in 4K Gaming Monitor,1,389.99,09/24/19 10:25,"937 Hill St, New York City, NY 10001" -256299,USB-C Charging Cable,1,11.95,09/15/19 14:23,"550 Ridge St, Portland, OR 97035" -256300,USB-C Charging Cable,1,11.95,09/22/19 09:52,"587 13th St, San Francisco, CA 94016" -256301,Apple Airpods Headphones,1,150,09/12/19 19:48,"148 5th St, San Francisco, CA 94016" -256302,USB-C Charging Cable,1,11.95,09/02/19 19:17,"626 1st St, New York City, NY 10001" -256303,AA Batteries (4-pack),3,3.84,09/04/19 11:46,"977 Willow St, San Francisco, CA 94016" -256304,iPhone,1,700,09/06/19 10:26,"681 4th St, Los Angeles, CA 90001" -256305,AA Batteries (4-pack),3,3.84,09/02/19 11:25,"998 Walnut St, Los Angeles, CA 90001" -256306,AA Batteries (4-pack),2,3.84,09/12/19 17:02,"379 Chestnut St, Boston, MA 02215" -256307,Macbook Pro Laptop,1,1700,09/12/19 15:36,"453 7th St, Austin, TX 73301" -256308,AA Batteries (4-pack),4,3.84,09/13/19 17:01,"963 11th St, Seattle, WA 98101" -256309,Apple Airpods Headphones,1,150,09/13/19 11:08,"399 Park St, San Francisco, CA 94016" -256310,USB-C Charging Cable,1,11.95,09/27/19 21:33,"557 Jackson St, Austin, TX 73301" -256311,USB-C Charging Cable,1,11.95,09/08/19 12:25,"466 14th St, Atlanta, GA 30301" -256312,AAA Batteries (4-pack),2,2.99,09/12/19 18:37,"331 Willow St, San Francisco, CA 94016" -256313,Bose SoundSport Headphones,1,99.99,09/20/19 20:57,"66 Lake St, Portland, OR 97035" -256314,AA Batteries (4-pack),1,3.84,09/28/19 22:25,"76 Walnut St, Los Angeles, CA 90001" -256315,AA Batteries (4-pack),1,3.84,09/12/19 23:14,"348 Washington St, Austin, TX 73301" -256316,AAA Batteries (4-pack),1,2.99,09/09/19 08:46,"305 Lincoln St, Boston, MA 02215" -256317,AA Batteries (4-pack),2,3.84,09/28/19 01:16,"324 14th St, Portland, OR 97035" -256318,27in FHD Monitor,1,149.99,09/14/19 09:56,"385 West St, New York City, NY 10001" -256319,AAA Batteries (4-pack),1,2.99,09/11/19 10:31,"909 Spruce St, Portland, OR 97035" -256320,AA Batteries (4-pack),1,3.84,09/22/19 16:08,"365 River St, Seattle, WA 98101" -256321,AA Batteries (4-pack),2,3.84,09/10/19 20:42,"614 Madison St, New York City, NY 10001" -256322,Wired Headphones,1,11.99,09/21/19 17:35,"917 11th St, New York City, NY 10001" -256323,AA Batteries (4-pack),1,3.84,09/09/19 08:24,"71 Madison St, Boston, MA 02215" -256324,AAA Batteries (4-pack),1,2.99,09/28/19 20:15,"639 Walnut St, Seattle, WA 98101" -256325,AAA Batteries (4-pack),3,2.99,09/26/19 16:07,"791 Highland St, Portland, ME 04101" -256326,Wired Headphones,1,11.99,09/14/19 22:59,"38 13th St, San Francisco, CA 94016" -256327,Google Phone,1,600,09/18/19 23:47,"983 5th St, Austin, TX 73301" -256328,Wired Headphones,2,11.99,09/23/19 11:27,"760 Hickory St, New York City, NY 10001" -256329,Lightning Charging Cable,1,14.95,09/22/19 20:51,"42 Meadow St, Los Angeles, CA 90001" -256330,27in 4K Gaming Monitor,1,389.99,09/29/19 19:09,"613 Johnson St, San Francisco, CA 94016" -256331,27in FHD Monitor,1,149.99,09/16/19 20:43,"763 Chestnut St, Boston, MA 02215" -256332,Bose SoundSport Headphones,1,99.99,09/26/19 13:28,"957 Center St, San Francisco, CA 94016" -256333,AA Batteries (4-pack),1,3.84,09/01/19 16:04,"917 West St, Seattle, WA 98101" -256334,Apple Airpods Headphones,1,150,09/13/19 20:18,"882 14th St, San Francisco, CA 94016" -256335,ThinkPad Laptop,1,999.99,09/30/19 17:04,"256 11th St, Portland, OR 97035" -256336,34in Ultrawide Monitor,1,379.99,09/10/19 00:15,"574 Walnut St, Atlanta, GA 30301" -256337,Flatscreen TV,1,300,09/29/19 16:21,"302 Chestnut St, Seattle, WA 98101" -256338,Apple Airpods Headphones,1,150,09/10/19 14:08,"946 5th St, New York City, NY 10001" -256339,Lightning Charging Cable,1,14.95,09/11/19 19:15,"723 Lake St, Los Angeles, CA 90001" -256340,Bose SoundSport Headphones,1,99.99,09/06/19 09:15,"998 Church St, San Francisco, CA 94016" -256341,AA Batteries (4-pack),1,3.84,09/26/19 13:38,"17 13th St, Atlanta, GA 30301" -256342,20in Monitor,1,109.99,09/29/19 23:36,"845 Church St, Boston, MA 02215" -,,,,, -256343,27in 4K Gaming Monitor,1,389.99,09/10/19 00:04,"883 Lakeview St, Los Angeles, CA 90001" -256344,AA Batteries (4-pack),1,3.84,09/23/19 14:52,"473 Hill St, Boston, MA 02215" -256345,AAA Batteries (4-pack),2,2.99,09/18/19 22:28,"408 Highland St, New York City, NY 10001" -256346,Vareebadd Phone,1,400,09/13/19 09:52,"108 Church St, Boston, MA 02215" -256347,34in Ultrawide Monitor,1,379.99,09/20/19 21:31,"40 Jefferson St, Atlanta, GA 30301" -256348,Apple Airpods Headphones,1,150,09/25/19 18:08,"340 Jackson St, Seattle, WA 98101" -256349,AAA Batteries (4-pack),1,2.99,09/27/19 15:32,"24 Park St, Los Angeles, CA 90001" -256350,ThinkPad Laptop,1,999.99,09/05/19 21:35,"131 1st St, Dallas, TX 75001" -256351,Apple Airpods Headphones,1,150,09/09/19 16:08,"168 West St, Los Angeles, CA 90001" -256352,Lightning Charging Cable,1,14.95,09/27/19 10:22,"481 Adams St, Atlanta, GA 30301" -256353,AA Batteries (4-pack),1,3.84,09/30/19 21:38,"973 Forest St, Seattle, WA 98101" -256354,AA Batteries (4-pack),4,3.84,09/03/19 16:17,"901 Jackson St, Seattle, WA 98101" -256355,iPhone,1,700,09/11/19 11:48,"985 Adams St, San Francisco, CA 94016" -256355,Lightning Charging Cable,1,14.95,09/11/19 11:48,"985 Adams St, San Francisco, CA 94016" -256355,Apple Airpods Headphones,1,150,09/11/19 11:48,"985 Adams St, San Francisco, CA 94016" -256356,Apple Airpods Headphones,1,150,09/30/19 06:02,"414 7th St, Los Angeles, CA 90001" -256357,Bose SoundSport Headphones,1,99.99,09/24/19 22:48,"85 North St, Los Angeles, CA 90001" -256358,Lightning Charging Cable,1,14.95,09/11/19 14:50,"725 Madison St, Los Angeles, CA 90001" -256359,Apple Airpods Headphones,1,150,09/19/19 15:34,"899 Jefferson St, Seattle, WA 98101" -256360,Wired Headphones,1,11.99,09/18/19 21:22,"340 Forest St, Dallas, TX 75001" -256361,Lightning Charging Cable,1,14.95,09/28/19 23:09,"338 Cedar St, Atlanta, GA 30301" -256362,34in Ultrawide Monitor,1,379.99,09/01/19 23:34,"11 Walnut St, Atlanta, GA 30301" -256363,Apple Airpods Headphones,1,150,09/06/19 18:07,"942 Park St, San Francisco, CA 94016" -256364,AA Batteries (4-pack),4,3.84,09/02/19 21:59,"890 4th St, Boston, MA 02215" -256365,27in FHD Monitor,1,149.99,09/20/19 12:39,"923 Hill St, New York City, NY 10001" -256366,Macbook Pro Laptop,1,1700,09/01/19 13:35,"983 River St, Atlanta, GA 30301" -256367,AA Batteries (4-pack),1,3.84,09/23/19 22:10,"826 12th St, Dallas, TX 75001" -256368,Bose SoundSport Headphones,1,99.99,09/17/19 15:24,"583 Hill St, San Francisco, CA 94016" -256369,LG Washing Machine,1,600.0,09/12/19 15:25,"811 Johnson St, San Francisco, CA 94016" -256370,27in 4K Gaming Monitor,1,389.99,09/01/19 17:41,"454 Elm St, Los Angeles, CA 90001" -256371,Lightning Charging Cable,1,14.95,09/18/19 12:13,"9 Elm St, Boston, MA 02215" -256372,Wired Headphones,2,11.99,09/02/19 10:25,"102 Cherry St, Boston, MA 02215" -256373,ThinkPad Laptop,1,999.99,09/25/19 09:03,"307 Walnut St, Los Angeles, CA 90001" -256374,Apple Airpods Headphones,1,150,09/13/19 02:44,"156 Meadow St, San Francisco, CA 94016" -256375,Lightning Charging Cable,1,14.95,09/08/19 18:56,"181 4th St, Boston, MA 02215" -256376,27in FHD Monitor,1,149.99,09/16/19 10:46,"231 5th St, Los Angeles, CA 90001" -256377,Lightning Charging Cable,1,14.95,09/26/19 15:44,"946 Hill St, Los Angeles, CA 90001" -256378,Apple Airpods Headphones,1,150,09/07/19 12:34,"775 Wilson St, Seattle, WA 98101" -256379,Apple Airpods Headphones,1,150,09/27/19 14:57,"718 Forest St, Dallas, TX 75001" -256380,Google Phone,1,600,09/07/19 10:24,"741 West St, San Francisco, CA 94016" -256380,USB-C Charging Cable,1,11.95,09/07/19 10:24,"741 West St, San Francisco, CA 94016" -256381,USB-C Charging Cable,2,11.95,09/15/19 14:34,"388 Jackson St, Boston, MA 02215" -256382,Lightning Charging Cable,1,14.95,09/29/19 23:39,"357 13th St, Los Angeles, CA 90001" -256383,USB-C Charging Cable,1,11.95,09/13/19 01:37,"636 12th St, San Francisco, CA 94016" -256384,iPhone,1,700,09/18/19 12:10,"999 Meadow St, New York City, NY 10001" -256385,iPhone,1,700,09/17/19 00:01,"523 Adams St, San Francisco, CA 94016" -256386,Wired Headphones,1,11.99,09/15/19 12:10,"872 14th St, New York City, NY 10001" -256387,USB-C Charging Cable,1,11.95,09/28/19 00:32,"774 Maple St, Atlanta, GA 30301" -256388,AA Batteries (4-pack),2,3.84,09/19/19 19:59,"503 5th St, San Francisco, CA 94016" -256389,AAA Batteries (4-pack),4,2.99,09/06/19 07:49,"944 Center St, Los Angeles, CA 90001" -256390,AA Batteries (4-pack),1,3.84,09/12/19 23:21,"235 Park St, Boston, MA 02215" -256391,USB-C Charging Cable,1,11.95,09/29/19 11:27,"717 North St, San Francisco, CA 94016" -256392,Bose SoundSport Headphones,1,99.99,09/20/19 14:19,"741 14th St, Seattle, WA 98101" -256393,iPhone,1,700,09/13/19 10:54,"689 Maple St, New York City, NY 10001" -256394,27in 4K Gaming Monitor,1,389.99,09/05/19 20:07,"219 1st St, Los Angeles, CA 90001" -256395,ThinkPad Laptop,1,999.99,09/04/19 22:56,"403 Main St, San Francisco, CA 94016" -256396,Wired Headphones,1,11.99,09/17/19 05:35,"979 Center St, Los Angeles, CA 90001" -256397,AAA Batteries (4-pack),2,2.99,09/13/19 21:00,"614 6th St, New York City, NY 10001" -256398,Apple Airpods Headphones,1,150,09/08/19 17:16,"925 6th St, Boston, MA 02215" -256399,Lightning Charging Cable,1,14.95,09/14/19 14:50,"605 Meadow St, San Francisco, CA 94016" -256400,AAA Batteries (4-pack),2,2.99,09/15/19 17:03,"124 13th St, Los Angeles, CA 90001" -256401,Macbook Pro Laptop,1,1700,09/18/19 16:30,"650 Ridge St, San Francisco, CA 94016" -256402,Flatscreen TV,1,300,09/21/19 06:08,"888 Wilson St, Seattle, WA 98101" -256403,27in FHD Monitor,1,149.99,09/03/19 02:24,"104 Maple St, Boston, MA 02215" -256404,Apple Airpods Headphones,1,150,09/01/19 11:56,"516 Jackson St, Atlanta, GA 30301" -256405,Apple Airpods Headphones,1,150,09/25/19 18:16,"490 Hill St, San Francisco, CA 94016" -256406,AAA Batteries (4-pack),1,2.99,09/09/19 13:28,"848 South St, New York City, NY 10001" -256407,iPhone,1,700,09/15/19 14:14,"265 Wilson St, San Francisco, CA 94016" -256408,AA Batteries (4-pack),1,3.84,09/25/19 18:03,"315 Hill St, New York City, NY 10001" -256409,USB-C Charging Cable,1,11.95,09/09/19 19:13,"514 12th St, Boston, MA 02215" -256410,LG Dryer,1,600.0,09/11/19 21:52,"511 Madison St, Los Angeles, CA 90001" -256411,AAA Batteries (4-pack),2,2.99,09/21/19 19:11,"828 River St, Seattle, WA 98101" -256412,Lightning Charging Cable,1,14.95,09/12/19 12:46,"206 Wilson St, Portland, OR 97035" -256413,Macbook Pro Laptop,1,1700,09/09/19 20:32,"187 Church St, Dallas, TX 75001" -256414,AA Batteries (4-pack),1,3.84,09/13/19 08:40,"635 Cherry St, Boston, MA 02215" -256415,AA Batteries (4-pack),2,3.84,09/15/19 14:38,"33 Walnut St, Los Angeles, CA 90001" -256416,USB-C Charging Cable,1,11.95,09/16/19 08:47,"508 Park St, San Francisco, CA 94016" -256417,Apple Airpods Headphones,1,150,09/19/19 07:53,"180 Church St, Seattle, WA 98101" -256418,USB-C Charging Cable,1,11.95,09/02/19 19:07,"993 Wilson St, Boston, MA 02215" -256419,AA Batteries (4-pack),1,3.84,09/13/19 07:00,"106 9th St, Los Angeles, CA 90001" -256420,Lightning Charging Cable,1,14.95,09/20/19 10:33,"932 North St, San Francisco, CA 94016" -256421,Macbook Pro Laptop,1,1700,09/04/19 15:19,"200 5th St, Los Angeles, CA 90001" -256422,USB-C Charging Cable,1,11.95,09/17/19 17:08,"933 Dogwood St, Seattle, WA 98101" -256423,AA Batteries (4-pack),1,3.84,09/30/19 16:21,"265 Jackson St, Los Angeles, CA 90001" -256424,Vareebadd Phone,1,400,09/14/19 11:38,"765 South St, San Francisco, CA 94016" -256425,Apple Airpods Headphones,1,150,09/08/19 21:33,"891 14th St, New York City, NY 10001" -256426,Google Phone,1,600,09/30/19 21:02,"19 4th St, Boston, MA 02215" -256427,Lightning Charging Cable,1,14.95,09/14/19 14:07,"109 Sunset St, San Francisco, CA 94016" -256428,34in Ultrawide Monitor,1,379.99,09/01/19 19:43,"145 7th St, Los Angeles, CA 90001" -256429,Vareebadd Phone,1,400,09/19/19 09:35,"980 Dogwood St, Dallas, TX 75001" -256430,Wired Headphones,1,11.99,09/10/19 00:49,"406 14th St, Austin, TX 73301" -256431,Wired Headphones,1,11.99,09/19/19 13:46,"443 Jefferson St, Seattle, WA 98101" -256432,AA Batteries (4-pack),1,3.84,09/09/19 10:23,"167 9th St, Boston, MA 02215" -256433,Macbook Pro Laptop,1,1700,09/19/19 10:55,"586 12th St, Los Angeles, CA 90001" -256434,Bose SoundSport Headphones,1,99.99,09/27/19 18:45,"222 Center St, Los Angeles, CA 90001" -256435,Lightning Charging Cable,1,14.95,09/06/19 09:12,"267 6th St, New York City, NY 10001" -256436,Apple Airpods Headphones,1,150,09/16/19 10:51,"658 Wilson St, Los Angeles, CA 90001" -256437,Lightning Charging Cable,1,14.95,09/02/19 12:44,"348 Ridge St, New York City, NY 10001" -256438,USB-C Charging Cable,1,11.95,09/23/19 10:17,"123 Jackson St, Atlanta, GA 30301" -256439,Wired Headphones,1,11.99,09/26/19 09:18,"331 Lake St, Boston, MA 02215" -256440,Bose SoundSport Headphones,1,99.99,09/07/19 10:20,"914 9th St, Boston, MA 02215" -256441,Bose SoundSport Headphones,1,99.99,09/14/19 20:25,"637 Adams St, Los Angeles, CA 90001" -256442,USB-C Charging Cable,1,11.95,09/27/19 21:24,"278 Lake St, Los Angeles, CA 90001" -256443,AAA Batteries (4-pack),1,2.99,09/11/19 22:20,"658 Cedar St, New York City, NY 10001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -256444,27in 4K Gaming Monitor,1,389.99,09/24/19 00:30,"76 Jefferson St, Atlanta, GA 30301" -256445,Wired Headphones,1,11.99,09/06/19 16:40,"587 Maple St, New York City, NY 10001" -256446,27in 4K Gaming Monitor,1,389.99,09/14/19 10:22,"682 Adams St, Portland, OR 97035" -256447,34in Ultrawide Monitor,1,379.99,09/04/19 10:55,"90 River St, Los Angeles, CA 90001" -256448,Bose SoundSport Headphones,1,99.99,09/09/19 11:09,"694 Park St, New York City, NY 10001" -256449,LG Dryer,1,600.0,09/12/19 11:21,"732 9th St, Los Angeles, CA 90001" -256450,USB-C Charging Cable,2,11.95,09/05/19 17:35,"466 Sunset St, New York City, NY 10001" -256451,USB-C Charging Cable,1,11.95,09/01/19 20:44,"586 Lakeview St, San Francisco, CA 94016" -256452,Lightning Charging Cable,1,14.95,09/09/19 20:21,"497 6th St, Boston, MA 02215" -256453,34in Ultrawide Monitor,1,379.99,09/29/19 19:31,"551 Chestnut St, Seattle, WA 98101" -256453,USB-C Charging Cable,1,11.95,09/29/19 19:31,"551 Chestnut St, Seattle, WA 98101" -256454,Apple Airpods Headphones,1,150,09/30/19 07:50,"696 Chestnut St, New York City, NY 10001" -256455,34in Ultrawide Monitor,1,379.99,09/30/19 14:05,"874 Walnut St, Los Angeles, CA 90001" -256456,Google Phone,1,600,09/03/19 10:56,"194 10th St, San Francisco, CA 94016" -256457,Wired Headphones,1,11.99,09/19/19 07:40,"855 River St, New York City, NY 10001" -256458,Lightning Charging Cable,1,14.95,09/19/19 06:20,"927 14th St, New York City, NY 10001" -256459,Wired Headphones,1,11.99,09/23/19 20:14,"675 Cherry St, San Francisco, CA 94016" -256460,AAA Batteries (4-pack),1,2.99,09/20/19 00:29,"983 10th St, San Francisco, CA 94016" -256461,Macbook Pro Laptop,1,1700,09/17/19 17:50,"470 Madison St, New York City, NY 10001" -256462,34in Ultrawide Monitor,1,379.99,09/09/19 19:44,"308 7th St, New York City, NY 10001" -256463,Bose SoundSport Headphones,1,99.99,09/11/19 00:34,"521 Jackson St, Boston, MA 02215" -256464,AAA Batteries (4-pack),2,2.99,09/14/19 18:40,"176 Walnut St, San Francisco, CA 94016" -256465,Wired Headphones,1,11.99,09/20/19 23:53,"864 West St, San Francisco, CA 94016" -256466,Lightning Charging Cable,1,14.95,09/05/19 09:09,"686 Meadow St, Boston, MA 02215" -256467,Lightning Charging Cable,1,14.95,09/06/19 21:09,"412 Washington St, Portland, OR 97035" -256468,AAA Batteries (4-pack),1,2.99,09/08/19 12:54,"90 Jefferson St, Los Angeles, CA 90001" -256469,Wired Headphones,1,11.99,09/19/19 13:14,"423 Wilson St, Atlanta, GA 30301" -256470,Wired Headphones,1,11.99,09/27/19 18:03,"103 Lincoln St, San Francisco, CA 94016" -256471,AAA Batteries (4-pack),1,2.99,09/24/19 07:36,"357 Meadow St, Dallas, TX 75001" -256472,AA Batteries (4-pack),2,3.84,09/18/19 12:21,"725 14th St, Dallas, TX 75001" -256473,AAA Batteries (4-pack),2,2.99,09/02/19 14:20,"555 14th St, Portland, OR 97035" -256474,Macbook Pro Laptop,1,1700,09/13/19 13:17,"811 Sunset St, San Francisco, CA 94016" -256475,Bose SoundSport Headphones,1,99.99,09/10/19 15:24,"256 Church St, Los Angeles, CA 90001" -256476,Google Phone,1,600,09/16/19 11:04,"635 Washington St, New York City, NY 10001" -256477,AA Batteries (4-pack),1,3.84,09/23/19 16:34,"619 Spruce St, Atlanta, GA 30301" -256478,27in 4K Gaming Monitor,1,389.99,09/26/19 09:00,"192 Madison St, Los Angeles, CA 90001" -256479,27in FHD Monitor,1,149.99,09/01/19 15:39,"902 Madison St, San Francisco, CA 94016" -256480,Apple Airpods Headphones,1,150,09/16/19 17:46,"41 Washington St, New York City, NY 10001" -256481,Bose SoundSport Headphones,1,99.99,09/08/19 08:28,"350 North St, Dallas, TX 75001" -256482,Bose SoundSport Headphones,1,99.99,09/04/19 11:08,"37 Elm St, San Francisco, CA 94016" -256483,iPhone,1,700,09/15/19 19:17,"735 Ridge St, Dallas, TX 75001" -256484,Apple Airpods Headphones,1,150,09/04/19 00:39,"305 7th St, Seattle, WA 98101" -256485,Lightning Charging Cable,1,14.95,09/10/19 14:33,"606 South St, Boston, MA 02215" -256486,USB-C Charging Cable,2,11.95,09/19/19 20:07,"417 Ridge St, Seattle, WA 98101" -256487,Lightning Charging Cable,1,14.95,09/28/19 01:26,"534 Forest St, Atlanta, GA 30301" -256488,Apple Airpods Headphones,1,150,09/26/19 14:34,"665 2nd St, Atlanta, GA 30301" -256489,AA Batteries (4-pack),1,3.84,09/22/19 20:00,"660 Hickory St, Boston, MA 02215" -256490,Apple Airpods Headphones,1,150,09/17/19 13:52,"522 Forest St, Los Angeles, CA 90001" -256491,USB-C Charging Cable,1,11.95,09/07/19 12:04,"849 West St, San Francisco, CA 94016" -256492,Lightning Charging Cable,1,14.95,09/15/19 22:24,"401 Walnut St, Los Angeles, CA 90001" -256493,AA Batteries (4-pack),1,3.84,09/30/19 14:23,"978 7th St, Austin, TX 73301" -256494,27in FHD Monitor,1,149.99,09/10/19 13:16,"282 Washington St, Dallas, TX 75001" -256495,USB-C Charging Cable,1,11.95,09/24/19 23:28,"244 Madison St, San Francisco, CA 94016" -256496,AA Batteries (4-pack),2,3.84,09/20/19 12:08,"571 North St, San Francisco, CA 94016" -256497,USB-C Charging Cable,1,11.95,09/07/19 11:47,"842 Lakeview St, Boston, MA 02215" -256498,AAA Batteries (4-pack),1,2.99,09/24/19 22:06,"18 7th St, Seattle, WA 98101" -256499,27in 4K Gaming Monitor,1,389.99,09/28/19 07:28,"760 Jackson St, Portland, OR 97035" -256500,AAA Batteries (4-pack),1,2.99,09/11/19 13:08,"290 7th St, Atlanta, GA 30301" -256501,Google Phone,1,600,09/16/19 10:55,"992 Madison St, New York City, NY 10001" -256501,Wired Headphones,1,11.99,09/16/19 10:55,"992 Madison St, New York City, NY 10001" -256502,Bose SoundSport Headphones,1,99.99,09/12/19 17:05,"199 Jefferson St, Portland, OR 97035" -256503,Macbook Pro Laptop,1,1700,09/19/19 00:59,"444 6th St, San Francisco, CA 94016" -256504,20in Monitor,1,109.99,09/03/19 21:44,"192 6th St, Portland, OR 97035" -256505,USB-C Charging Cable,1,11.95,09/28/19 17:54,"221 Cherry St, San Francisco, CA 94016" -256506,USB-C Charging Cable,1,11.95,09/30/19 12:39,"691 West St, Los Angeles, CA 90001" -256507,iPhone,1,700,09/18/19 11:47,"484 11th St, San Francisco, CA 94016" -256508,34in Ultrawide Monitor,1,379.99,09/24/19 16:16,"165 Chestnut St, Atlanta, GA 30301" -256509,AAA Batteries (4-pack),2,2.99,09/14/19 09:30,"855 4th St, San Francisco, CA 94016" -256510,Apple Airpods Headphones,1,150,09/01/19 17:41,"840 Elm St, Dallas, TX 75001" -256511,Wired Headphones,1,11.99,09/14/19 07:38,"518 Elm St, New York City, NY 10001" -256512,Lightning Charging Cable,1,14.95,09/25/19 13:23,"294 6th St, Austin, TX 73301" -256513,Apple Airpods Headphones,1,150,09/06/19 09:21,"698 Adams St, San Francisco, CA 94016" -256514,27in 4K Gaming Monitor,1,389.99,09/07/19 17:49,"222 Ridge St, Boston, MA 02215" -256515,USB-C Charging Cable,1,11.95,09/30/19 17:00,"749 Adams St, New York City, NY 10001" -256516,AAA Batteries (4-pack),1,2.99,09/06/19 14:01,"115 Main St, New York City, NY 10001" -256517,AA Batteries (4-pack),1,3.84,09/02/19 14:28,"845 Lakeview St, Los Angeles, CA 90001" -256518,Lightning Charging Cable,1,14.95,09/15/19 15:43,"808 Elm St, San Francisco, CA 94016" -256519,AA Batteries (4-pack),1,3.84,09/02/19 07:33,"451 14th St, Atlanta, GA 30301" -256520,Wired Headphones,1,11.99,09/03/19 11:54,"499 5th St, San Francisco, CA 94016" -256521,USB-C Charging Cable,1,11.95,09/01/19 17:33,"29 Jefferson St, New York City, NY 10001" -256522,Apple Airpods Headphones,1,150,09/06/19 12:32,"456 Washington St, San Francisco, CA 94016" -256523,Wired Headphones,1,11.99,09/10/19 12:22,"935 Maple St, Boston, MA 02215" -256524,27in 4K Gaming Monitor,1,389.99,09/26/19 16:35,"67 Center St, Atlanta, GA 30301" -256525,AAA Batteries (4-pack),3,2.99,09/17/19 09:30,"365 Forest St, Austin, TX 73301" -256526,USB-C Charging Cable,1,11.95,09/18/19 09:21,"234 Elm St, San Francisco, CA 94016" -256527,AA Batteries (4-pack),1,3.84,09/16/19 18:04,"229 Washington St, San Francisco, CA 94016" -256528,ThinkPad Laptop,1,999.99,09/28/19 18:45,"405 14th St, New York City, NY 10001" -256529,AA Batteries (4-pack),1,3.84,09/23/19 10:41,"499 South St, New York City, NY 10001" -256530,AA Batteries (4-pack),1,3.84,09/05/19 14:54,"415 1st St, San Francisco, CA 94016" -256531,27in FHD Monitor,1,149.99,09/18/19 09:19,"631 Center St, San Francisco, CA 94016" -256532,Lightning Charging Cable,1,14.95,09/22/19 16:43,"349 Willow St, San Francisco, CA 94016" -256533,USB-C Charging Cable,1,11.95,09/09/19 06:33,"881 North St, Los Angeles, CA 90001" -256534,USB-C Charging Cable,1,11.95,09/10/19 08:35,"130 Maple St, New York City, NY 10001" -256535,AAA Batteries (4-pack),1,2.99,09/24/19 19:52,"144 9th St, Los Angeles, CA 90001" -256536,Wired Headphones,1,11.99,09/05/19 21:12,"643 Main St, San Francisco, CA 94016" -256537,Lightning Charging Cable,2,14.95,09/29/19 17:48,"913 Hill St, New York City, NY 10001" -256538,USB-C Charging Cable,1,11.95,09/13/19 23:50,"51 13th St, San Francisco, CA 94016" -256539,USB-C Charging Cable,1,11.95,09/03/19 20:26,"757 9th St, San Francisco, CA 94016" -256540,Apple Airpods Headphones,1,150,09/24/19 18:17,"680 Spruce St, Atlanta, GA 30301" -256541,Apple Airpods Headphones,1,150,09/09/19 14:24,"310 Lincoln St, Boston, MA 02215" -256542,AA Batteries (4-pack),1,3.84,09/27/19 12:34,"5 5th St, Dallas, TX 75001" -256543,Apple Airpods Headphones,1,150,09/22/19 12:41,"290 Adams St, Dallas, TX 75001" -256544,34in Ultrawide Monitor,1,379.99,09/18/19 09:23,"693 Jefferson St, Los Angeles, CA 90001" -256545,Bose SoundSport Headphones,1,99.99,09/23/19 21:49,"434 14th St, San Francisco, CA 94016" -256546,AAA Batteries (4-pack),1,2.99,09/03/19 06:21,"375 Main St, Los Angeles, CA 90001" -256547,AA Batteries (4-pack),2,3.84,09/29/19 17:02,"954 Adams St, New York City, NY 10001" -256548,Wired Headphones,2,11.99,09/30/19 20:55,"648 Elm St, Austin, TX 73301" -256549,Vareebadd Phone,1,400,09/23/19 08:42,"555 10th St, Austin, TX 73301" -256550,AAA Batteries (4-pack),1,2.99,09/17/19 05:45,"332 Forest St, New York City, NY 10001" -256551,AA Batteries (4-pack),1,3.84,09/17/19 02:07,"595 Church St, New York City, NY 10001" -256552,Lightning Charging Cable,1,14.95,09/06/19 15:59,"543 Madison St, Austin, TX 73301" -256553,Macbook Pro Laptop,1,1700,09/03/19 14:35,"126 South St, Los Angeles, CA 90001" -256554,Lightning Charging Cable,1,14.95,09/26/19 15:20,"22 Madison St, San Francisco, CA 94016" -256555,Apple Airpods Headphones,1,150,09/20/19 07:22,"190 North St, New York City, NY 10001" -256556,27in 4K Gaming Monitor,1,389.99,09/01/19 19:33,"477 Cedar St, Dallas, TX 75001" -256557,Bose SoundSport Headphones,1,99.99,09/04/19 11:16,"496 Meadow St, Atlanta, GA 30301" -256558,Flatscreen TV,1,300,09/28/19 08:35,"45 9th St, Atlanta, GA 30301" -256559,USB-C Charging Cable,1,11.95,09/11/19 23:16,"863 River St, Portland, OR 97035" -256560,iPhone,1,700,09/09/19 15:35,"636 Hill St, New York City, NY 10001" -256560,Wired Headphones,2,11.99,09/09/19 15:35,"636 Hill St, New York City, NY 10001" -256561,Lightning Charging Cable,1,14.95,09/21/19 14:13,"482 Lakeview St, San Francisco, CA 94016" -256562,Wired Headphones,1,11.99,09/11/19 22:00,"716 Jackson St, New York City, NY 10001" -256563,AA Batteries (4-pack),1,3.84,09/04/19 16:07,"45 Adams St, San Francisco, CA 94016" -256564,Apple Airpods Headphones,1,150,09/13/19 14:06,"918 4th St, San Francisco, CA 94016" -256565,Bose SoundSport Headphones,1,99.99,09/08/19 20:32,"83 Lincoln St, Portland, OR 97035" -256566,Lightning Charging Cable,1,14.95,09/09/19 01:12,"883 River St, Dallas, TX 75001" -256567,Apple Airpods Headphones,1,150,09/01/19 14:36,"359 River St, Seattle, WA 98101" -256568,Lightning Charging Cable,1,14.95,09/29/19 12:45,"779 Center St, Boston, MA 02215" -256569,Google Phone,1,600,09/22/19 14:22,"225 Lakeview St, San Francisco, CA 94016" -256570,AAA Batteries (4-pack),1,2.99,09/14/19 10:22,"893 Washington St, Portland, OR 97035" -256571,Bose SoundSport Headphones,1,99.99,09/26/19 15:07,"257 2nd St, San Francisco, CA 94016" -256572,Bose SoundSport Headphones,1,99.99,09/11/19 21:27,"304 Wilson St, Austin, TX 73301" -256573,20in Monitor,1,109.99,09/16/19 21:50,"677 Walnut St, San Francisco, CA 94016" -256574,Apple Airpods Headphones,1,150,09/19/19 00:14,"540 5th St, Dallas, TX 75001" -256575,Apple Airpods Headphones,1,150,09/06/19 10:38,"533 Hill St, Los Angeles, CA 90001" -256576,Lightning Charging Cable,1,14.95,09/05/19 12:12,"731 14th St, San Francisco, CA 94016" -256577,Lightning Charging Cable,1,14.95,09/03/19 22:04,"193 4th St, San Francisco, CA 94016" -256578,Flatscreen TV,1,300,09/11/19 10:45,"876 13th St, Boston, MA 02215" -256579,iPhone,1,700,09/03/19 22:42,"20 Lakeview St, Los Angeles, CA 90001" -256579,Lightning Charging Cable,1,14.95,09/03/19 22:42,"20 Lakeview St, Los Angeles, CA 90001" -256580,iPhone,1,700,09/20/19 19:45,"287 Wilson St, Boston, MA 02215" -256581,Bose SoundSport Headphones,1,99.99,09/06/19 20:55,"980 Cedar St, San Francisco, CA 94016" -256582,AAA Batteries (4-pack),1,2.99,09/16/19 10:14,"930 1st St, New York City, NY 10001" -256583,Wired Headphones,1,11.99,09/05/19 20:51,"442 Spruce St, Boston, MA 02215" -256584,27in 4K Gaming Monitor,1,389.99,09/16/19 14:57,"22 Willow St, Los Angeles, CA 90001" -256585,Apple Airpods Headphones,1,150,09/04/19 20:20,"427 South St, Austin, TX 73301" -256586,Lightning Charging Cable,1,14.95,09/16/19 22:30,"152 Hickory St, San Francisco, CA 94016" -256587,Wired Headphones,1,11.99,09/22/19 17:39,"923 Church St, New York City, NY 10001" -256588,Apple Airpods Headphones,1,150,09/08/19 18:07,"3 Dogwood St, Boston, MA 02215" -256588,Apple Airpods Headphones,1,150,09/08/19 18:07,"3 Dogwood St, Boston, MA 02215" -256589,Google Phone,1,600,09/15/19 14:52,"892 6th St, Austin, TX 73301" -256590,iPhone,1,700,09/22/19 17:11,"565 Washington St, New York City, NY 10001" -256591,Google Phone,1,600,09/30/19 22:20,"802 1st St, Los Angeles, CA 90001" -256591,USB-C Charging Cable,1,11.95,09/30/19 22:20,"802 1st St, Los Angeles, CA 90001" -256592,Apple Airpods Headphones,1,150,09/02/19 10:21,"484 11th St, Seattle, WA 98101" -256593,Wired Headphones,1,11.99,09/19/19 14:06,"767 Main St, New York City, NY 10001" -256594,Bose SoundSport Headphones,1,99.99,09/22/19 18:23,"596 Church St, San Francisco, CA 94016" -256595,27in FHD Monitor,1,149.99,09/11/19 22:36,"54 8th St, San Francisco, CA 94016" -256596,iPhone,1,700,09/23/19 10:48,"477 Church St, New York City, NY 10001" -256597,Bose SoundSport Headphones,1,99.99,09/12/19 14:35,"703 8th St, Boston, MA 02215" -256598,27in FHD Monitor,1,149.99,09/07/19 11:22,"152 Pine St, Atlanta, GA 30301" -256599,Google Phone,1,600,09/07/19 16:54,"208 Walnut St, New York City, NY 10001" -256600,AAA Batteries (4-pack),1,2.99,09/03/19 14:57,"313 10th St, San Francisco, CA 94016" -256601,Flatscreen TV,1,300,09/02/19 12:22,"887 Forest St, San Francisco, CA 94016" -256602,Apple Airpods Headphones,1,150,09/01/19 09:50,"268 10th St, San Francisco, CA 94016" -256603,AAA Batteries (4-pack),1,2.99,09/16/19 13:43,"180 Cherry St, San Francisco, CA 94016" -256604,AAA Batteries (4-pack),1,2.99,09/12/19 17:50,"724 10th St, New York City, NY 10001" -256605,USB-C Charging Cable,1,11.95,09/22/19 13:45,"677 Main St, Los Angeles, CA 90001" -256606,AA Batteries (4-pack),3,3.84,09/06/19 19:00,"142 Jackson St, Austin, TX 73301" -256607,Apple Airpods Headphones,1,150,09/11/19 19:33,"458 Washington St, Dallas, TX 75001" -256608,Apple Airpods Headphones,1,150,09/03/19 08:01,"510 Lakeview St, Los Angeles, CA 90001" -256609,Lightning Charging Cable,1,14.95,09/26/19 13:57,"572 2nd St, Seattle, WA 98101" -256610,Wired Headphones,1,11.99,09/15/19 07:40,"616 Johnson St, San Francisco, CA 94016" -256611,AAA Batteries (4-pack),1,2.99,09/10/19 19:16,"936 Hickory St, Atlanta, GA 30301" -256612,Flatscreen TV,1,300,09/22/19 04:17,"70 8th St, Dallas, TX 75001" -256613,Wired Headphones,1,11.99,09/27/19 22:33,"954 Meadow St, Boston, MA 02215" -256614,Lightning Charging Cable,1,14.95,09/20/19 07:30,"154 Washington St, New York City, NY 10001" -256615,20in Monitor,1,109.99,09/13/19 19:06,"102 Lakeview St, San Francisco, CA 94016" -256616,34in Ultrawide Monitor,1,379.99,09/22/19 18:04,"868 South St, San Francisco, CA 94016" -256617,Flatscreen TV,1,300,09/28/19 13:07,"222 11th St, San Francisco, CA 94016" -256618,Bose SoundSport Headphones,1,99.99,09/09/19 12:05,"988 12th St, Los Angeles, CA 90001" -256619,AAA Batteries (4-pack),1,2.99,09/09/19 20:15,"636 11th St, San Francisco, CA 94016" -256620,LG Washing Machine,1,600.0,09/02/19 14:03,"906 Center St, Los Angeles, CA 90001" -256621,iPhone,1,700,09/05/19 20:22,"32 Pine St, Atlanta, GA 30301" -256621,Lightning Charging Cable,1,14.95,09/05/19 20:22,"32 Pine St, Atlanta, GA 30301" -256622,AA Batteries (4-pack),3,3.84,09/30/19 14:50,"274 Hickory St, Portland, ME 04101" -256623,Bose SoundSport Headphones,1,99.99,09/29/19 13:19,"630 Highland St, New York City, NY 10001" -256624,AAA Batteries (4-pack),1,2.99,09/08/19 05:55,"886 Highland St, Boston, MA 02215" -256625,Lightning Charging Cable,1,14.95,09/01/19 17:58,"8 Dogwood St, Dallas, TX 75001" -256626,AAA Batteries (4-pack),1,2.99,09/21/19 11:30,"894 6th St, San Francisco, CA 94016" -256627,AA Batteries (4-pack),1,3.84,09/30/19 19:01,"365 1st St, Atlanta, GA 30301" -256628,Lightning Charging Cable,1,14.95,09/05/19 19:06,"705 Cedar St, San Francisco, CA 94016" -256629,AAA Batteries (4-pack),1,2.99,09/17/19 11:22,"598 Church St, Los Angeles, CA 90001" -256630,Macbook Pro Laptop,1,1700,09/01/19 18:37,"185 Willow St, San Francisco, CA 94016" -256631,Wired Headphones,1,11.99,09/21/19 15:09,"6 North St, San Francisco, CA 94016" -256632,Lightning Charging Cable,1,14.95,09/01/19 12:28,"701 6th St, San Francisco, CA 94016" -256633,Flatscreen TV,1,300,09/09/19 09:44,"473 14th St, Boston, MA 02215" -256634,Lightning Charging Cable,1,14.95,09/20/19 11:23,"124 8th St, Los Angeles, CA 90001" -256635,Apple Airpods Headphones,1,150,09/24/19 11:19,"645 Hill St, Austin, TX 73301" -256636,Lightning Charging Cable,1,14.95,09/24/19 21:23,"281 Main St, Austin, TX 73301" -256637,USB-C Charging Cable,1,11.95,09/07/19 22:36,"995 Lake St, New York City, NY 10001" -256638,Google Phone,1,600,09/25/19 23:21,"276 Madison St, Atlanta, GA 30301" -256639,Apple Airpods Headphones,1,150,09/21/19 21:36,"485 Hickory St, Boston, MA 02215" -256640,iPhone,1,700,09/04/19 17:51,"131 Ridge St, San Francisco, CA 94016" -256641,Wired Headphones,1,11.99,09/04/19 15:33,"243 Lake St, Dallas, TX 75001" -256642,Wired Headphones,1,11.99,09/08/19 15:18,"820 Willow St, San Francisco, CA 94016" -256643,Wired Headphones,1,11.99,09/19/19 07:51,"220 North St, Dallas, TX 75001" -256644,Macbook Pro Laptop,1,1700,09/27/19 14:46,"469 West St, Boston, MA 02215" -256645,USB-C Charging Cable,1,11.95,09/05/19 21:59,"684 11th St, San Francisco, CA 94016" -256646,27in FHD Monitor,1,149.99,09/26/19 21:01,"557 Center St, San Francisco, CA 94016" -256647,ThinkPad Laptop,1,999.99,09/03/19 12:54,"994 8th St, San Francisco, CA 94016" -256648,27in 4K Gaming Monitor,1,389.99,09/08/19 23:01,"408 Chestnut St, Atlanta, GA 30301" -256649,Wired Headphones,1,11.99,09/21/19 13:00,"537 Sunset St, Los Angeles, CA 90001" -256650,AAA Batteries (4-pack),1,2.99,09/29/19 20:05,"749 Hill St, Austin, TX 73301" -256651,AAA Batteries (4-pack),1,2.99,09/03/19 18:48,"939 1st St, Boston, MA 02215" -256652,USB-C Charging Cable,1,11.95,09/21/19 13:32,"60 14th St, Los Angeles, CA 90001" -256653,USB-C Charging Cable,1,11.95,09/22/19 22:01,"684 Adams St, Los Angeles, CA 90001" -256654,Apple Airpods Headphones,1,150,09/20/19 12:21,"969 Lakeview St, San Francisco, CA 94016" -256655,USB-C Charging Cable,2,11.95,09/06/19 00:44,"304 Meadow St, San Francisco, CA 94016" -256656,AA Batteries (4-pack),2,3.84,09/30/19 12:18,"761 12th St, Seattle, WA 98101" -256657,Lightning Charging Cable,1,14.95,09/03/19 20:49,"497 Center St, Los Angeles, CA 90001" -256658,ThinkPad Laptop,1,999.99,09/23/19 20:26,"402 4th St, Boston, MA 02215" -256659,Wired Headphones,1,11.99,09/16/19 18:28,"162 Cedar St, San Francisco, CA 94016" -256660,AAA Batteries (4-pack),1,2.99,09/04/19 10:05,"24 Lakeview St, Dallas, TX 75001" -256661,ThinkPad Laptop,1,999.99,09/17/19 14:02,"608 Spruce St, San Francisco, CA 94016" -256662,USB-C Charging Cable,1,11.95,09/02/19 11:43,"41 1st St, Portland, OR 97035" -256663,LG Dryer,1,600.0,09/30/19 20:47,"763 Washington St, Austin, TX 73301" -256664,AA Batteries (4-pack),1,3.84,09/12/19 09:00,"787 Maple St, Portland, ME 04101" -256665,Bose SoundSport Headphones,1,99.99,09/09/19 01:50,"375 6th St, San Francisco, CA 94016" -256666,20in Monitor,1,109.99,09/12/19 14:10,"169 8th St, Los Angeles, CA 90001" -256666,AA Batteries (4-pack),1,3.84,09/12/19 14:10,"169 8th St, Los Angeles, CA 90001" -256667,34in Ultrawide Monitor,1,379.99,09/22/19 16:41,"259 7th St, San Francisco, CA 94016" -256668,Wired Headphones,2,11.99,09/20/19 15:31,"35 5th St, San Francisco, CA 94016" -256669,Wired Headphones,1,11.99,09/16/19 16:10,"763 7th St, San Francisco, CA 94016" -256670,AAA Batteries (4-pack),1,2.99,09/02/19 10:12,"218 Center St, Austin, TX 73301" -256671,iPhone,1,700,09/10/19 23:35,"750 Pine St, New York City, NY 10001" -256671,Lightning Charging Cable,1,14.95,09/10/19 23:35,"750 Pine St, New York City, NY 10001" -256672,AAA Batteries (4-pack),1,2.99,09/24/19 22:23,"967 Elm St, San Francisco, CA 94016" -256673,27in FHD Monitor,1,149.99,09/01/19 23:59,"791 Jackson St, Seattle, WA 98101" -256674,Lightning Charging Cable,1,14.95,09/28/19 15:17,"972 Johnson St, Seattle, WA 98101" -256675,Apple Airpods Headphones,1,150,09/26/19 15:04,"853 Hill St, Dallas, TX 75001" -256676,AA Batteries (4-pack),2,3.84,09/23/19 23:43,"90 4th St, Los Angeles, CA 90001" -256677,USB-C Charging Cable,1,11.95,09/24/19 19:32,"115 10th St, San Francisco, CA 94016" -256678,Lightning Charging Cable,1,14.95,09/28/19 17:26,"889 Hickory St, San Francisco, CA 94016" -256679,Macbook Pro Laptop,1,1700,09/23/19 19:21,"344 South St, Atlanta, GA 30301" -256680,Wired Headphones,1,11.99,09/21/19 10:20,"290 Cherry St, New York City, NY 10001" -256681,27in 4K Gaming Monitor,1,389.99,09/18/19 23:14,"198 Jackson St, Portland, ME 04101" -256682,Lightning Charging Cable,1,14.95,09/02/19 17:23,"777 Hickory St, Portland, OR 97035" -256683,USB-C Charging Cable,1,11.95,09/20/19 22:10,"587 9th St, Seattle, WA 98101" -256684,USB-C Charging Cable,1,11.95,09/01/19 13:32,"661 Hickory St, New York City, NY 10001" -256685,AA Batteries (4-pack),1,3.84,09/11/19 09:05,"414 14th St, New York City, NY 10001" -256686,Wired Headphones,1,11.99,09/18/19 05:35,"411 Hill St, Los Angeles, CA 90001" -256687,Wired Headphones,2,11.99,09/08/19 14:08,"290 North St, San Francisco, CA 94016" -256688,AA Batteries (4-pack),1,3.84,09/13/19 21:06,"455 Pine St, Boston, MA 02215" -256689,Wired Headphones,1,11.99,09/13/19 13:41,"57 Dogwood St, San Francisco, CA 94016" -256690,USB-C Charging Cable,1,11.95,09/27/19 21:02,"356 Adams St, Boston, MA 02215" -256691,USB-C Charging Cable,1,11.95,09/28/19 17:15,"520 Park St, Seattle, WA 98101" -256692,AAA Batteries (4-pack),1,2.99,09/17/19 17:35,"33 Chestnut St, Dallas, TX 75001" -256693,AA Batteries (4-pack),1,3.84,09/22/19 14:01,"733 Center St, Boston, MA 02215" -256694,Google Phone,1,600,09/03/19 18:17,"747 Sunset St, Los Angeles, CA 90001" -256695,Lightning Charging Cable,1,14.95,09/17/19 15:06,"568 Jefferson St, Los Angeles, CA 90001" -256696,Vareebadd Phone,1,400,09/15/19 13:07,"430 Jackson St, Los Angeles, CA 90001" -256697,Lightning Charging Cable,1,14.95,09/12/19 16:33,"75 Lake St, Los Angeles, CA 90001" -256698,Apple Airpods Headphones,1,150,09/07/19 13:46,"39 Lake St, Austin, TX 73301" -256699,Bose SoundSport Headphones,1,99.99,09/19/19 18:51,"962 Jefferson St, Los Angeles, CA 90001" -256700,Wired Headphones,1,11.99,09/19/19 20:10,"209 10th St, San Francisco, CA 94016" -256701,USB-C Charging Cable,2,11.95,09/10/19 09:59,"933 13th St, Austin, TX 73301" -256702,Lightning Charging Cable,1,14.95,09/07/19 12:57,"220 Walnut St, San Francisco, CA 94016" -256703,USB-C Charging Cable,1,11.95,09/06/19 15:42,"882 Pine St, Los Angeles, CA 90001" -256704,27in 4K Gaming Monitor,1,389.99,09/15/19 18:32,"546 South St, Los Angeles, CA 90001" -256705,iPhone,1,700,09/16/19 22:10,"20 Highland St, San Francisco, CA 94016" -256706,USB-C Charging Cable,1,11.95,09/18/19 21:50,"74 Lake St, Dallas, TX 75001" -256707,AA Batteries (4-pack),3,3.84,09/02/19 18:00,"189 11th St, San Francisco, CA 94016" -256708,20in Monitor,1,109.99,09/08/19 08:02,"2 Spruce St, Portland, OR 97035" -256708,27in FHD Monitor,1,149.99,09/08/19 08:02,"2 Spruce St, Portland, OR 97035" -256709,AAA Batteries (4-pack),1,2.99,09/14/19 12:18,"838 West St, Boston, MA 02215" -256710,27in FHD Monitor,1,149.99,09/06/19 05:52,"859 Washington St, San Francisco, CA 94016" -256711,20in Monitor,1,109.99,09/28/19 21:15,"613 Ridge St, Los Angeles, CA 90001" -256712,AA Batteries (4-pack),2,3.84,09/17/19 22:37,"591 Jackson St, Seattle, WA 98101" -256713,AA Batteries (4-pack),1,3.84,09/23/19 21:02,"46 Jackson St, New York City, NY 10001" -256714,USB-C Charging Cable,1,11.95,09/07/19 14:04,"943 Maple St, Los Angeles, CA 90001" -256715,Lightning Charging Cable,1,14.95,09/05/19 16:24,"69 Hickory St, New York City, NY 10001" -256716,Lightning Charging Cable,1,14.95,09/26/19 00:00,"42 10th St, San Francisco, CA 94016" -256717,Flatscreen TV,1,300,09/24/19 09:19,"97 6th St, Seattle, WA 98101" -256718,AA Batteries (4-pack),4,3.84,09/24/19 15:47,"934 Lakeview St, San Francisco, CA 94016" -256719,AAA Batteries (4-pack),2,2.99,09/30/19 17:48,"459 Chestnut St, Los Angeles, CA 90001" -256720,Google Phone,1,600,09/03/19 18:31,"691 Johnson St, Seattle, WA 98101" -256721,AAA Batteries (4-pack),1,2.99,09/16/19 21:37,"880 13th St, San Francisco, CA 94016" -256722,Bose SoundSport Headphones,1,99.99,09/30/19 08:16,"865 14th St, Austin, TX 73301" -256723,Apple Airpods Headphones,1,150,09/22/19 17:46,"334 Washington St, San Francisco, CA 94016" -256724,Wired Headphones,1,11.99,09/04/19 08:11,"78 2nd St, New York City, NY 10001" -256725,ThinkPad Laptop,1,999.99,09/26/19 23:24,"130 12th St, Los Angeles, CA 90001" -256726,ThinkPad Laptop,1,999.99,09/03/19 14:49,"543 6th St, New York City, NY 10001" -256727,USB-C Charging Cable,2,11.95,09/30/19 21:19,"928 Lincoln St, Portland, OR 97035" -256728,Wired Headphones,1,11.99,09/09/19 08:28,"320 12th St, Los Angeles, CA 90001" -256729,AAA Batteries (4-pack),1,2.99,09/16/19 10:17,"13 Pine St, Los Angeles, CA 90001" -256730,Bose SoundSport Headphones,1,99.99,09/25/19 16:18,"726 Chestnut St, Portland, ME 04101" -256731,AAA Batteries (4-pack),1,2.99,09/26/19 14:43,"268 1st St, Boston, MA 02215" -256732,Lightning Charging Cable,1,14.95,09/09/19 01:17,"147 Sunset St, Portland, OR 97035" -256733,iPhone,1,700,09/13/19 11:27,"807 Dogwood St, San Francisco, CA 94016" -256733,Lightning Charging Cable,1,14.95,09/13/19 11:27,"807 Dogwood St, San Francisco, CA 94016" -256734,AAA Batteries (4-pack),1,2.99,09/20/19 02:01,"848 1st St, Los Angeles, CA 90001" -256735,Lightning Charging Cable,1,14.95,09/29/19 16:25,"143 Walnut St, Boston, MA 02215" -256736,Apple Airpods Headphones,1,150,09/21/19 13:58,"198 6th St, San Francisco, CA 94016" -256737,iPhone,1,700,09/25/19 21:08,"419 Lake St, San Francisco, CA 94016" -256738,Lightning Charging Cable,1,14.95,09/16/19 20:09,"835 Cherry St, New York City, NY 10001" -256739,27in FHD Monitor,1,149.99,09/23/19 12:08,"72 9th St, Portland, OR 97035" -256740,Wired Headphones,1,11.99,09/24/19 18:00,"399 2nd St, Los Angeles, CA 90001" -256741,Wired Headphones,1,11.99,09/30/19 23:34,"475 5th St, San Francisco, CA 94016" -256742,AAA Batteries (4-pack),1,2.99,09/06/19 14:49,"350 5th St, San Francisco, CA 94016" -256743,USB-C Charging Cable,1,11.95,09/03/19 22:04,"850 Walnut St, Atlanta, GA 30301" -256744,27in 4K Gaming Monitor,1,389.99,09/07/19 18:03,"946 Cedar St, New York City, NY 10001" -256745,Apple Airpods Headphones,1,150,09/23/19 18:45,"554 Lincoln St, Portland, ME 04101" -256746,AAA Batteries (4-pack),1,2.99,09/21/19 01:03,"383 10th St, San Francisco, CA 94016" -256747,AA Batteries (4-pack),1,3.84,09/29/19 11:42,"169 Jackson St, New York City, NY 10001" -256748,Wired Headphones,1,11.99,09/10/19 11:55,"905 Spruce St, Austin, TX 73301" -256749,USB-C Charging Cable,1,11.95,09/27/19 11:43,"738 11th St, San Francisco, CA 94016" -256750,34in Ultrawide Monitor,1,379.99,09/21/19 20:33,"831 6th St, Los Angeles, CA 90001" -256751,20in Monitor,1,109.99,09/21/19 17:45,"708 Willow St, Boston, MA 02215" -256752,Bose SoundSport Headphones,1,99.99,09/24/19 18:13,"323 14th St, Boston, MA 02215" -256753,Lightning Charging Cable,2,14.95,09/01/19 17:13,"730 Cherry St, Portland, OR 97035" -256754,AA Batteries (4-pack),1,3.84,09/10/19 10:31,"393 Walnut St, Los Angeles, CA 90001" -256755,Lightning Charging Cable,2,14.95,09/01/19 16:47,"677 West St, Los Angeles, CA 90001" -256756,AA Batteries (4-pack),1,3.84,09/16/19 01:37,"369 Dogwood St, Boston, MA 02215" -256757,27in 4K Gaming Monitor,1,389.99,09/24/19 23:35,"782 Jackson St, Boston, MA 02215" -256758,20in Monitor,1,109.99,09/11/19 17:54,"810 Cedar St, San Francisco, CA 94016" -256759,AA Batteries (4-pack),1,3.84,09/14/19 09:25,"390 7th St, Seattle, WA 98101" -256760,Wired Headphones,1,11.99,09/26/19 06:19,"278 Lincoln St, New York City, NY 10001" -256761,Bose SoundSport Headphones,1,99.99,09/03/19 16:15,"269 Lincoln St, Portland, OR 97035" -256762,Lightning Charging Cable,1,14.95,09/30/19 16:08,"792 Wilson St, Seattle, WA 98101" -256763,27in FHD Monitor,1,149.99,09/15/19 22:28,"23 11th St, San Francisco, CA 94016" -256763,27in FHD Monitor,1,149.99,09/15/19 22:28,"23 11th St, San Francisco, CA 94016" -256764,ThinkPad Laptop,1,999.99,09/18/19 22:46,"360 North St, Atlanta, GA 30301" -256765,USB-C Charging Cable,1,11.95,09/26/19 13:50,"454 11th St, Los Angeles, CA 90001" -256766,USB-C Charging Cable,1,11.95,09/30/19 11:37,"153 13th St, Boston, MA 02215" -256767,USB-C Charging Cable,1,11.95,09/01/19 19:46,"249 12th St, Portland, ME 04101" -256768,Wired Headphones,1,11.99,09/28/19 21:14,"541 Jefferson St, San Francisco, CA 94016" -256769,27in FHD Monitor,1,149.99,09/23/19 12:35,"51 Meadow St, Dallas, TX 75001" -256770,34in Ultrawide Monitor,1,379.99,09/12/19 11:54,"530 12th St, Boston, MA 02215" -256771,LG Dryer,1,600.0,09/01/19 13:07,"534 1st St, Boston, MA 02215" -256772,USB-C Charging Cable,1,11.95,09/06/19 19:31,"200 River St, Austin, TX 73301" -256773,AAA Batteries (4-pack),2,2.99,09/25/19 16:14,"986 Lake St, Boston, MA 02215" -256774,Apple Airpods Headphones,1,150,09/07/19 17:54,"961 6th St, Boston, MA 02215" -256775,Google Phone,1,600,09/13/19 06:14,"91 Park St, San Francisco, CA 94016" -256776,USB-C Charging Cable,1,11.95,09/22/19 10:34,"589 14th St, New York City, NY 10001" -256777,Wired Headphones,1,11.99,09/23/19 09:27,"565 1st St, New York City, NY 10001" -256778,iPhone,1,700,09/28/19 14:15,"624 Cedar St, Atlanta, GA 30301" -256778,Lightning Charging Cable,1,14.95,09/28/19 14:15,"624 Cedar St, Atlanta, GA 30301" -256779,27in FHD Monitor,1,149.99,09/26/19 05:01,"404 2nd St, San Francisco, CA 94016" -256780,27in FHD Monitor,1,149.99,09/26/19 03:06,"654 Lakeview St, Boston, MA 02215" -256781,iPhone,1,700,09/05/19 11:57,"339 11th St, New York City, NY 10001" -256782,Lightning Charging Cable,1,14.95,09/23/19 18:59,"105 Willow St, Portland, ME 04101" -256783,Lightning Charging Cable,1,14.95,09/08/19 07:48,"527 South St, Dallas, TX 75001" -256784,AA Batteries (4-pack),1,3.84,09/21/19 18:07,"517 Church St, Portland, OR 97035" -256785,Vareebadd Phone,1,400,09/04/19 19:11,"280 5th St, San Francisco, CA 94016" -256785,USB-C Charging Cable,1,11.95,09/04/19 19:11,"280 5th St, San Francisco, CA 94016" -256786,USB-C Charging Cable,1,11.95,09/13/19 22:19,"270 Lake St, San Francisco, CA 94016" -256787,USB-C Charging Cable,2,11.95,09/30/19 10:27,"953 Washington St, Los Angeles, CA 90001" -256788,iPhone,1,700,09/09/19 17:49,"690 6th St, New York City, NY 10001" -256789,Wired Headphones,1,11.99,09/21/19 15:33,"92 South St, New York City, NY 10001" -256790,Bose SoundSport Headphones,1,99.99,09/02/19 11:24,"192 5th St, San Francisco, CA 94016" -256791,Wired Headphones,1,11.99,09/07/19 18:58,"817 Lakeview St, San Francisco, CA 94016" -256792,AA Batteries (4-pack),1,3.84,09/26/19 10:52,"373 Johnson St, San Francisco, CA 94016" -256793,Apple Airpods Headphones,1,150,09/05/19 21:19,"458 Sunset St, Boston, MA 02215" -256794,27in FHD Monitor,1,149.99,09/17/19 18:53,"659 Dogwood St, Portland, ME 04101" -256795,AAA Batteries (4-pack),1,2.99,09/08/19 17:36,"274 Madison St, San Francisco, CA 94016" -256796,USB-C Charging Cable,1,11.95,09/24/19 14:29,"901 Ridge St, San Francisco, CA 94016" -256797,Apple Airpods Headphones,1,150,09/03/19 11:24,"18 2nd St, New York City, NY 10001" -256798,iPhone,1,700,09/25/19 21:46,"154 Sunset St, Portland, OR 97035" -256799,Bose SoundSport Headphones,1,99.99,09/15/19 22:02,"125 1st St, Atlanta, GA 30301" -256800,AAA Batteries (4-pack),3,2.99,09/22/19 00:07,"819 Sunset St, New York City, NY 10001" -256801,Wired Headphones,1,11.99,09/24/19 15:59,"706 14th St, Austin, TX 73301" -256802,Wired Headphones,1,11.99,09/23/19 12:32,"173 Jefferson St, New York City, NY 10001" -256803,20in Monitor,1,109.99,09/14/19 15:41,"311 1st St, Boston, MA 02215" -256804,Wired Headphones,1,11.99,09/18/19 13:46,"653 Forest St, San Francisco, CA 94016" -256805,iPhone,1,700,09/14/19 07:57,"612 West St, Dallas, TX 75001" -256805,Wired Headphones,1,11.99,09/14/19 07:57,"612 West St, Dallas, TX 75001" -256806,Lightning Charging Cable,1,14.95,09/10/19 19:07,"328 Cherry St, Seattle, WA 98101" -256807,Bose SoundSport Headphones,1,99.99,09/20/19 13:42,"170 South St, San Francisco, CA 94016" -256808,Macbook Pro Laptop,1,1700,09/17/19 14:08,"623 Chestnut St, San Francisco, CA 94016" -256809,iPhone,1,700,09/10/19 11:39,"366 North St, Portland, OR 97035" -256810,AA Batteries (4-pack),1,3.84,09/24/19 09:21,"112 9th St, Dallas, TX 75001" -256811,Lightning Charging Cable,1,14.95,09/06/19 18:05,"830 Cedar St, San Francisco, CA 94016" -256812,Wired Headphones,1,11.99,09/07/19 21:18,"947 Main St, San Francisco, CA 94016" -256813,27in 4K Gaming Monitor,1,389.99,09/09/19 10:47,"397 Chestnut St, Austin, TX 73301" -256814,AAA Batteries (4-pack),2,2.99,09/28/19 12:51,"959 Sunset St, Dallas, TX 75001" -256815,USB-C Charging Cable,1,11.95,09/04/19 21:47,"739 North St, New York City, NY 10001" -256816,27in 4K Gaming Monitor,1,389.99,09/11/19 12:28,"408 Cherry St, Boston, MA 02215" -256817,Apple Airpods Headphones,1,150,09/12/19 06:32,"665 11th St, New York City, NY 10001" -256818,Wired Headphones,1,11.99,09/29/19 17:23,"86 Hickory St, San Francisco, CA 94016" -256819,Wired Headphones,1,11.99,09/12/19 22:12,"213 Chestnut St, Atlanta, GA 30301" -256820,USB-C Charging Cable,1,11.95,09/08/19 16:53,"706 South St, Boston, MA 02215" -256821,AAA Batteries (4-pack),1,2.99,09/02/19 21:23,"300 Willow St, Seattle, WA 98101" -256822,27in 4K Gaming Monitor,1,389.99,09/03/19 21:37,"662 Wilson St, Portland, OR 97035" -256823,Vareebadd Phone,1,400,09/03/19 21:55,"770 North St, Boston, MA 02215" -256824,AA Batteries (4-pack),4,3.84,09/12/19 17:21,"554 West St, Austin, TX 73301" -256825,Apple Airpods Headphones,1,150,09/19/19 21:49,"609 Walnut St, Boston, MA 02215" -256826,Lightning Charging Cable,1,14.95,09/19/19 19:16,"102 Chestnut St, Portland, OR 97035" -256827,Lightning Charging Cable,1,14.95,09/12/19 23:29,"157 9th St, Austin, TX 73301" -256828,27in 4K Gaming Monitor,1,389.99,09/29/19 21:30,"521 Meadow St, Austin, TX 73301" -256829,20in Monitor,1,109.99,09/04/19 19:10,"47 Main St, San Francisco, CA 94016" -256830,Wired Headphones,1,11.99,09/14/19 14:59,"535 Highland St, Atlanta, GA 30301" -256831,Lightning Charging Cable,1,14.95,09/25/19 11:51,"738 Cedar St, Dallas, TX 75001" -256832,Bose SoundSport Headphones,1,99.99,09/04/19 05:00,"72 10th St, San Francisco, CA 94016" -256833,iPhone,1,700,09/15/19 17:13,"120 2nd St, San Francisco, CA 94016" -256834,Bose SoundSport Headphones,1,99.99,09/20/19 20:48,"233 Lake St, San Francisco, CA 94016" -256835,Lightning Charging Cable,1,14.95,09/20/19 11:23,"204 Lincoln St, Los Angeles, CA 90001" -256836,AAA Batteries (4-pack),1,2.99,09/28/19 13:23,"627 Lakeview St, Boston, MA 02215" -256837,AAA Batteries (4-pack),4,2.99,09/09/19 11:28,"319 Johnson St, Austin, TX 73301" -256838,ThinkPad Laptop,1,999.99,09/17/19 20:28,"214 Center St, San Francisco, CA 94016" -256839,Flatscreen TV,1,300,09/18/19 00:37,"636 Johnson St, Boston, MA 02215" -256840,AAA Batteries (4-pack),3,2.99,09/02/19 11:44,"673 South St, New York City, NY 10001" -256841,USB-C Charging Cable,1,11.95,09/24/19 23:19,"70 14th St, Los Angeles, CA 90001" -256842,iPhone,1,700,09/20/19 11:17,"994 Wilson St, San Francisco, CA 94016" -256843,Flatscreen TV,1,300,09/17/19 18:42,"508 Walnut St, Portland, OR 97035" -256844,LG Dryer,1,600.0,09/30/19 11:34,"231 Madison St, San Francisco, CA 94016" -256845,AAA Batteries (4-pack),2,2.99,09/21/19 07:58,"26 Lake St, San Francisco, CA 94016" -256846,Bose SoundSport Headphones,1,99.99,09/13/19 13:26,"587 Hickory St, San Francisco, CA 94016" -256847,AAA Batteries (4-pack),1,2.99,09/21/19 18:46,"380 Jefferson St, Dallas, TX 75001" -256848,AA Batteries (4-pack),1,3.84,09/23/19 18:14,"540 9th St, San Francisco, CA 94016" -256849,USB-C Charging Cable,1,11.95,09/24/19 18:03,"898 Main St, Los Angeles, CA 90001" -256850,Lightning Charging Cable,1,14.95,09/11/19 12:00,"154 8th St, Los Angeles, CA 90001" -256851,USB-C Charging Cable,1,11.95,09/30/19 21:15,"237 Jackson St, Los Angeles, CA 90001" -256852,AAA Batteries (4-pack),1,2.99,09/02/19 19:48,"540 Willow St, Los Angeles, CA 90001" -256853,20in Monitor,1,109.99,09/03/19 15:14,"581 8th St, Boston, MA 02215" -256854,Wired Headphones,1,11.99,09/21/19 22:15,"236 13th St, Boston, MA 02215" -256855,Wired Headphones,1,11.99,09/09/19 16:23,"208 4th St, Boston, MA 02215" -256856,USB-C Charging Cable,1,11.95,09/16/19 11:26,"672 Washington St, Seattle, WA 98101" -256857,AA Batteries (4-pack),3,3.84,09/14/19 07:36,"617 South St, San Francisco, CA 94016" -256858,USB-C Charging Cable,1,11.95,09/22/19 01:06,"950 Spruce St, Boston, MA 02215" -256859,AA Batteries (4-pack),1,3.84,10/01/19 01:17,"644 7th St, Los Angeles, CA 90001" -256860,Macbook Pro Laptop,1,1700,09/18/19 23:19,"263 Dogwood St, New York City, NY 10001" -256861,Apple Airpods Headphones,1,150,09/13/19 09:34,"504 6th St, New York City, NY 10001" -256862,AA Batteries (4-pack),4,3.84,09/18/19 17:27,"591 Walnut St, Los Angeles, CA 90001" -256863,Apple Airpods Headphones,1,150,09/18/19 14:19,"99 10th St, Los Angeles, CA 90001" -256864,Bose SoundSport Headphones,1,99.99,09/03/19 12:00,"873 Lake St, Seattle, WA 98101" -256865,Lightning Charging Cable,1,14.95,09/12/19 15:35,"869 Spruce St, San Francisco, CA 94016" -256866,iPhone,1,700,09/23/19 10:18,"606 Sunset St, San Francisco, CA 94016" -256867,Lightning Charging Cable,1,14.95,09/20/19 09:38,"787 Sunset St, Dallas, TX 75001" -256867,ThinkPad Laptop,1,999.99,09/20/19 09:38,"787 Sunset St, Dallas, TX 75001" -256868,Wired Headphones,1,11.99,09/19/19 23:27,"235 Willow St, Dallas, TX 75001" -256869,Lightning Charging Cable,1,14.95,09/25/19 14:52,"28 Maple St, San Francisco, CA 94016" -256870,34in Ultrawide Monitor,1,379.99,09/04/19 15:09,"875 9th St, San Francisco, CA 94016" -256871,AA Batteries (4-pack),1,3.84,09/28/19 22:02,"189 Walnut St, Los Angeles, CA 90001" -256872,iPhone,1,700,09/18/19 17:34,"801 9th St, Atlanta, GA 30301" -256873,AA Batteries (4-pack),1,3.84,09/14/19 22:35,"885 Walnut St, Seattle, WA 98101" -256874,27in 4K Gaming Monitor,1,389.99,09/24/19 16:20,"229 Ridge St, Boston, MA 02215" -256875,AA Batteries (4-pack),1,3.84,09/07/19 09:21,"735 4th St, Los Angeles, CA 90001" -256876,Lightning Charging Cable,1,14.95,09/29/19 02:54,"479 Lakeview St, New York City, NY 10001" -256877,AAA Batteries (4-pack),1,2.99,09/20/19 21:52,"775 Washington St, Dallas, TX 75001" -256878,Google Phone,1,600,09/09/19 20:35,"321 6th St, Boston, MA 02215" -256878,USB-C Charging Cable,1,11.95,09/09/19 20:35,"321 6th St, Boston, MA 02215" -256879,AA Batteries (4-pack),1,3.84,09/03/19 09:08,"377 Church St, Atlanta, GA 30301" -256880,20in Monitor,1,109.99,09/15/19 15:44,"964 Walnut St, Seattle, WA 98101" -256881,Wired Headphones,1,11.99,09/25/19 19:58,"3 Adams St, Seattle, WA 98101" -256882,20in Monitor,1,109.99,09/30/19 10:29,"288 Forest St, San Francisco, CA 94016" -256883,Bose SoundSport Headphones,1,99.99,09/07/19 21:06,"267 Meadow St, Los Angeles, CA 90001" -256884,Apple Airpods Headphones,1,150,09/28/19 13:51,"500 South St, San Francisco, CA 94016" -256885,USB-C Charging Cable,1,11.95,09/17/19 14:14,"285 Cedar St, San Francisco, CA 94016" -256886,Lightning Charging Cable,1,14.95,09/27/19 21:37,"189 North St, Dallas, TX 75001" -256887,AA Batteries (4-pack),3,3.84,09/12/19 13:36,"978 4th St, Dallas, TX 75001" -256888,USB-C Charging Cable,1,11.95,09/09/19 20:37,"289 9th St, San Francisco, CA 94016" -256889,Apple Airpods Headphones,1,150,09/18/19 13:38,"21 North St, New York City, NY 10001" -256890,Lightning Charging Cable,1,14.95,09/02/19 18:07,"179 Johnson St, Austin, TX 73301" -256891,AA Batteries (4-pack),1,3.84,09/17/19 11:30,"245 Park St, Los Angeles, CA 90001" -256892,AAA Batteries (4-pack),1,2.99,09/07/19 21:43,"665 Madison St, New York City, NY 10001" -256893,USB-C Charging Cable,2,11.95,09/03/19 13:29,"74 Washington St, New York City, NY 10001" -256894,Apple Airpods Headphones,1,150,09/18/19 18:55,"515 2nd St, San Francisco, CA 94016" -256895,34in Ultrawide Monitor,1,379.99,09/22/19 16:48,"37 Dogwood St, Portland, OR 97035" -256896,Wired Headphones,1,11.99,09/05/19 12:23,"107 1st St, Dallas, TX 75001" -256897,Flatscreen TV,1,300,09/06/19 12:26,"280 10th St, Seattle, WA 98101" -256898,34in Ultrawide Monitor,1,379.99,09/12/19 13:58,"891 Jackson St, Atlanta, GA 30301" -256899,Wired Headphones,1,11.99,09/13/19 23:57,"157 Cedar St, Los Angeles, CA 90001" -256900,Flatscreen TV,1,300,09/15/19 20:37,"751 13th St, New York City, NY 10001" -256901,27in FHD Monitor,1,149.99,09/03/19 00:23,"40 Main St, San Francisco, CA 94016" -256902,34in Ultrawide Monitor,1,379.99,09/20/19 18:13,"626 Madison St, Boston, MA 02215" -256903,Wired Headphones,1,11.99,09/10/19 12:31,"603 2nd St, Boston, MA 02215" -256904,AAA Batteries (4-pack),2,2.99,09/15/19 14:53,"891 Elm St, New York City, NY 10001" -256905,AAA Batteries (4-pack),1,2.99,09/23/19 21:41,"82 5th St, Los Angeles, CA 90001" -,,,,, -256906,USB-C Charging Cable,2,11.95,09/25/19 21:29,"70 Jefferson St, Boston, MA 02215" -256907,Wired Headphones,2,11.99,09/15/19 22:16,"436 8th St, Seattle, WA 98101" -256908,Lightning Charging Cable,2,14.95,09/26/19 01:05,"901 5th St, San Francisco, CA 94016" -256909,Wired Headphones,1,11.99,09/14/19 11:24,"399 Highland St, Seattle, WA 98101" -256910,Wired Headphones,1,11.99,09/13/19 14:16,"858 West St, Portland, OR 97035" -256911,Wired Headphones,1,11.99,09/28/19 01:53,"673 Jackson St, San Francisco, CA 94016" -256912,LG Washing Machine,1,600.0,09/24/19 11:17,"695 Willow St, San Francisco, CA 94016" -256913,Lightning Charging Cable,1,14.95,09/26/19 22:21,"341 Ridge St, Portland, OR 97035" -256914,20in Monitor,1,109.99,09/01/19 14:37,"930 Forest St, Seattle, WA 98101" -256915,AA Batteries (4-pack),2,3.84,09/03/19 21:30,"502 Church St, Dallas, TX 75001" -256916,AAA Batteries (4-pack),1,2.99,09/26/19 17:51,"748 Highland St, Los Angeles, CA 90001" -256917,Wired Headphones,1,11.99,09/14/19 16:59,"267 Wilson St, San Francisco, CA 94016" -256918,34in Ultrawide Monitor,1,379.99,09/29/19 20:44,"964 Park St, San Francisco, CA 94016" -256919,Bose SoundSport Headphones,1,99.99,09/02/19 20:10,"126 Jefferson St, Dallas, TX 75001" -256920,27in FHD Monitor,1,149.99,09/03/19 13:55,"756 1st St, Los Angeles, CA 90001" -256921,AA Batteries (4-pack),1,3.84,09/29/19 11:39,"833 Johnson St, Los Angeles, CA 90001" -256922,iPhone,1,700,09/29/19 18:02,"600 North St, New York City, NY 10001" -256923,Lightning Charging Cable,1,14.95,09/28/19 15:53,"4 Ridge St, Boston, MA 02215" -256924,27in 4K Gaming Monitor,1,389.99,09/17/19 15:12,"526 Forest St, Los Angeles, CA 90001" -256925,34in Ultrawide Monitor,1,379.99,09/07/19 18:51,"12 Hill St, Dallas, TX 75001" -256926,27in 4K Gaming Monitor,1,389.99,09/26/19 11:36,"869 9th St, Austin, TX 73301" -256927,Lightning Charging Cable,1,14.95,09/06/19 14:14,"947 Madison St, Portland, OR 97035" -256928,Macbook Pro Laptop,1,1700,09/06/19 14:46,"768 10th St, New York City, NY 10001" -256929,Apple Airpods Headphones,1,150,09/17/19 21:49,"35 Hickory St, New York City, NY 10001" -256930,USB-C Charging Cable,1,11.95,09/15/19 04:49,"962 South St, Portland, OR 97035" -256931,Lightning Charging Cable,1,14.95,09/08/19 13:38,"753 6th St, Los Angeles, CA 90001" -256932,Apple Airpods Headphones,1,150,09/28/19 14:41,"374 West St, San Francisco, CA 94016" -256933,AA Batteries (4-pack),2,3.84,09/16/19 22:32,"869 West St, Atlanta, GA 30301" -256934,27in 4K Gaming Monitor,1,389.99,09/17/19 19:11,"322 Elm St, Boston, MA 02215" -256935,Bose SoundSport Headphones,1,99.99,09/13/19 10:02,"850 Meadow St, San Francisco, CA 94016" -256936,27in FHD Monitor,1,149.99,09/10/19 16:46,"303 Sunset St, Seattle, WA 98101" -256937,AAA Batteries (4-pack),1,2.99,09/01/19 16:26,"27 14th St, San Francisco, CA 94016" -256938,USB-C Charging Cable,1,11.95,09/28/19 11:18,"324 Willow St, Austin, TX 73301" -256939,Bose SoundSport Headphones,1,99.99,09/22/19 12:06,"41 Ridge St, Los Angeles, CA 90001" -256940,Bose SoundSport Headphones,1,99.99,09/22/19 16:46,"154 Spruce St, Austin, TX 73301" -256941,Google Phone,1,600,09/23/19 17:05,"898 Spruce St, Austin, TX 73301" -256942,USB-C Charging Cable,2,11.95,09/21/19 09:37,"974 1st St, Seattle, WA 98101" -256943,Wired Headphones,1,11.99,09/30/19 05:36,"682 North St, Seattle, WA 98101" -256944,Bose SoundSport Headphones,1,99.99,09/25/19 11:26,"668 6th St, Austin, TX 73301" -256945,Wired Headphones,2,11.99,09/18/19 20:38,"691 Dogwood St, Los Angeles, CA 90001" -256946,Wired Headphones,1,11.99,09/28/19 12:34,"634 Adams St, Portland, OR 97035" -256947,Lightning Charging Cable,1,14.95,09/03/19 07:40,"547 South St, San Francisco, CA 94016" -256948,Wired Headphones,1,11.99,09/09/19 22:41,"535 West St, Atlanta, GA 30301" -256949,Lightning Charging Cable,1,14.95,09/21/19 17:28,"266 Pine St, San Francisco, CA 94016" -256950,Wired Headphones,1,11.99,09/29/19 20:36,"312 13th St, Boston, MA 02215" -256951,Lightning Charging Cable,2,14.95,09/04/19 17:09,"545 1st St, Austin, TX 73301" -256952,AAA Batteries (4-pack),2,2.99,09/12/19 13:06,"399 Forest St, New York City, NY 10001" -256953,27in 4K Gaming Monitor,1,389.99,09/24/19 14:56,"987 Pine St, San Francisco, CA 94016" -256954,AAA Batteries (4-pack),1,2.99,09/16/19 22:16,"482 Wilson St, Atlanta, GA 30301" -256955,Lightning Charging Cable,1,14.95,09/04/19 09:22,"858 2nd St, Portland, OR 97035" -256956,20in Monitor,1,109.99,09/08/19 18:08,"816 Elm St, Los Angeles, CA 90001" -256957,USB-C Charging Cable,1,11.95,09/23/19 20:15,"924 Hickory St, San Francisco, CA 94016" -,,,,, -256958,Apple Airpods Headphones,1,150,09/08/19 15:25,"880 Forest St, Boston, MA 02215" -256959,USB-C Charging Cable,1,11.95,09/01/19 09:31,"614 Lakeview St, San Francisco, CA 94016" -256960,AA Batteries (4-pack),1,3.84,09/21/19 08:56,"453 Center St, San Francisco, CA 94016" -256961,Lightning Charging Cable,1,14.95,09/14/19 11:40,"672 Johnson St, New York City, NY 10001" -256962,Wired Headphones,1,11.99,09/02/19 05:16,"11 Lincoln St, Los Angeles, CA 90001" -256963,AAA Batteries (4-pack),1,2.99,09/22/19 10:29,"316 Chestnut St, San Francisco, CA 94016" -256964,Lightning Charging Cable,1,14.95,09/03/19 12:28,"853 Sunset St, New York City, NY 10001" -256965,AAA Batteries (4-pack),1,2.99,09/29/19 19:22,"963 7th St, Los Angeles, CA 90001" -256966,AA Batteries (4-pack),1,3.84,09/13/19 14:23,"203 Willow St, San Francisco, CA 94016" -256967,Google Phone,1,600,09/05/19 08:32,"640 Lincoln St, Portland, OR 97035" -256968,Wired Headphones,1,11.99,09/30/19 15:26,"917 West St, Los Angeles, CA 90001" -256969,Flatscreen TV,1,300,09/16/19 01:58,"800 Jackson St, Dallas, TX 75001" -256970,Apple Airpods Headphones,1,150,09/05/19 21:39,"555 River St, San Francisco, CA 94016" -256971,Wired Headphones,1,11.99,09/01/19 16:16,"573 Jackson St, San Francisco, CA 94016" -256972,20in Monitor,1,109.99,09/05/19 12:17,"466 Cherry St, New York City, NY 10001" -256973,AA Batteries (4-pack),1,3.84,09/05/19 18:26,"321 Sunset St, San Francisco, CA 94016" -256974,USB-C Charging Cable,1,11.95,09/05/19 16:44,"473 Jackson St, New York City, NY 10001" -256975,Lightning Charging Cable,1,14.95,09/03/19 13:42,"221 Lake St, Atlanta, GA 30301" -256976,AA Batteries (4-pack),1,3.84,09/26/19 15:13,"44 4th St, Seattle, WA 98101" -256977,Wired Headphones,1,11.99,09/08/19 19:44,"300 10th St, San Francisco, CA 94016" -256978,Apple Airpods Headphones,1,150,09/29/19 11:15,"610 Center St, New York City, NY 10001" -256979,Flatscreen TV,1,300,09/17/19 16:43,"500 2nd St, San Francisco, CA 94016" -256980,Bose SoundSport Headphones,1,99.99,09/21/19 10:00,"658 Meadow St, Boston, MA 02215" -256981,AAA Batteries (4-pack),1,2.99,09/04/19 13:44,"431 Cherry St, San Francisco, CA 94016" -,,,,, -256982,Bose SoundSport Headphones,1,99.99,09/18/19 17:29,"847 6th St, Boston, MA 02215" -256983,Macbook Pro Laptop,1,1700,09/14/19 11:37,"454 Hill St, San Francisco, CA 94016" -256984,Bose SoundSport Headphones,1,99.99,09/21/19 11:03,"231 South St, Dallas, TX 75001" -256985,Lightning Charging Cable,2,14.95,09/05/19 23:16,"490 14th St, Boston, MA 02215" -256986,AA Batteries (4-pack),1,3.84,09/01/19 11:01,"538 Cedar St, Los Angeles, CA 90001" -256987,AA Batteries (4-pack),1,3.84,09/29/19 14:24,"425 Center St, Portland, OR 97035" -256988,AA Batteries (4-pack),2,3.84,09/20/19 08:45,"546 Main St, Los Angeles, CA 90001" -256989,AAA Batteries (4-pack),1,2.99,09/26/19 16:54,"636 River St, New York City, NY 10001" -256990,Wired Headphones,1,11.99,09/19/19 17:28,"609 1st St, New York City, NY 10001" -256991,Flatscreen TV,1,300,09/10/19 10:39,"19 South St, Boston, MA 02215" -256992,Apple Airpods Headphones,1,150,09/16/19 18:30,"103 River St, Seattle, WA 98101" -256993,Apple Airpods Headphones,1,150,09/08/19 14:53,"92 Sunset St, San Francisco, CA 94016" -256994,USB-C Charging Cable,1,11.95,09/08/19 19:22,"580 6th St, San Francisco, CA 94016" -256995,USB-C Charging Cable,1,11.95,09/01/19 21:41,"537 Washington St, Austin, TX 73301" -256996,Apple Airpods Headphones,1,150,09/19/19 14:35,"163 Meadow St, Los Angeles, CA 90001" -256997,USB-C Charging Cable,1,11.95,09/01/19 18:02,"678 Center St, Los Angeles, CA 90001" -256998,Apple Airpods Headphones,1,150,09/27/19 17:57,"681 Park St, Los Angeles, CA 90001" -256999,USB-C Charging Cable,1,11.95,09/18/19 14:30,"81 Maple St, Boston, MA 02215" -257000,LG Washing Machine,1,600.0,09/08/19 09:19,"334 River St, Austin, TX 73301" -257001,USB-C Charging Cable,1,11.95,09/11/19 09:10,"321 14th St, Los Angeles, CA 90001" -257002,Apple Airpods Headphones,1,150,09/05/19 12:29,"308 Meadow St, New York City, NY 10001" -257003,AAA Batteries (4-pack),1,2.99,09/28/19 17:30,"266 Lake St, San Francisco, CA 94016" -257004,USB-C Charging Cable,1,11.95,09/11/19 07:59,"983 Elm St, Dallas, TX 75001" -257005,Google Phone,1,600,09/30/19 21:05,"691 Chestnut St, Los Angeles, CA 90001" -257006,AAA Batteries (4-pack),1,2.99,09/08/19 19:19,"990 14th St, Seattle, WA 98101" -257007,AA Batteries (4-pack),1,3.84,09/14/19 12:37,"628 1st St, Austin, TX 73301" -257008,34in Ultrawide Monitor,1,379.99,09/13/19 21:54,"602 Willow St, Boston, MA 02215" -257009,34in Ultrawide Monitor,1,379.99,09/09/19 11:43,"178 10th St, Los Angeles, CA 90001" -257010,27in FHD Monitor,1,149.99,09/23/19 12:03,"423 Center St, San Francisco, CA 94016" -257011,Google Phone,1,600,09/15/19 19:57,"179 Jefferson St, Dallas, TX 75001" -257012,AA Batteries (4-pack),1,3.84,09/12/19 18:33,"255 9th St, Austin, TX 73301" -257013,AAA Batteries (4-pack),3,2.99,09/21/19 11:43,"666 River St, Seattle, WA 98101" -257014,AAA Batteries (4-pack),1,2.99,09/01/19 20:59,"237 Wilson St, Los Angeles, CA 90001" -257015,Wired Headphones,1,11.99,09/19/19 21:12,"49 Lakeview St, San Francisco, CA 94016" -,,,,, -257016,Bose SoundSport Headphones,1,99.99,09/07/19 17:15,"739 Lincoln St, San Francisco, CA 94016" -257017,AAA Batteries (4-pack),3,2.99,10/01/19 03:14,"545 Washington St, San Francisco, CA 94016" -257018,AAA Batteries (4-pack),1,2.99,09/07/19 21:14,"22 Jackson St, Dallas, TX 75001" -257019,ThinkPad Laptop,1,999.99,09/20/19 11:23,"57 Sunset St, Atlanta, GA 30301" -257020,Wired Headphones,1,11.99,09/19/19 22:14,"771 11th St, San Francisco, CA 94016" -257021,Wired Headphones,1,11.99,09/29/19 19:15,"788 Washington St, Portland, OR 97035" -,,,,, -257022,AAA Batteries (4-pack),3,2.99,09/10/19 19:59,"937 Wilson St, Portland, OR 97035" -257023,USB-C Charging Cable,1,11.95,09/30/19 07:28,"255 5th St, San Francisco, CA 94016" -257024,Bose SoundSport Headphones,1,99.99,09/06/19 10:54,"820 Jefferson St, Los Angeles, CA 90001" -257025,AA Batteries (4-pack),1,3.84,09/21/19 10:07,"89 Lakeview St, Seattle, WA 98101" -257026,Lightning Charging Cable,1,14.95,09/15/19 20:13,"12 Main St, Los Angeles, CA 90001" -257027,ThinkPad Laptop,1,999.99,09/10/19 12:01,"997 Ridge St, Portland, ME 04101" -257028,AAA Batteries (4-pack),2,2.99,09/20/19 11:44,"742 Cherry St, Los Angeles, CA 90001" -257029,iPhone,1,700,09/17/19 13:37,"510 7th St, Seattle, WA 98101" -257030,Lightning Charging Cable,1,14.95,09/04/19 09:58,"138 9th St, San Francisco, CA 94016" -257031,AA Batteries (4-pack),1,3.84,09/18/19 13:42,"48 Lakeview St, Atlanta, GA 30301" -257032,AAA Batteries (4-pack),1,2.99,09/26/19 12:30,"273 Pine St, Dallas, TX 75001" -257033,AAA Batteries (4-pack),1,2.99,09/11/19 19:01,"433 5th St, San Francisco, CA 94016" -257034,Lightning Charging Cable,1,14.95,09/28/19 23:11,"414 1st St, Austin, TX 73301" -257035,USB-C Charging Cable,1,11.95,09/11/19 12:49,"911 1st St, Los Angeles, CA 90001" -257036,USB-C Charging Cable,1,11.95,09/21/19 22:34,"512 14th St, Los Angeles, CA 90001" -257037,Lightning Charging Cable,1,14.95,09/20/19 09:45,"929 12th St, Dallas, TX 75001" -257038,USB-C Charging Cable,1,11.95,09/17/19 05:12,"335 Hill St, Seattle, WA 98101" -257039,LG Washing Machine,1,600.0,09/10/19 22:15,"634 5th St, Boston, MA 02215" -257040,27in FHD Monitor,1,149.99,09/05/19 12:51,"195 Johnson St, Los Angeles, CA 90001" -257041,Bose SoundSport Headphones,1,99.99,09/29/19 11:55,"500 Maple St, Boston, MA 02215" -257042,USB-C Charging Cable,1,11.95,09/11/19 02:16,"983 Walnut St, Portland, OR 97035" -257043,Wired Headphones,1,11.99,09/03/19 16:34,"262 Chestnut St, Boston, MA 02215" -257044,Macbook Pro Laptop,1,1700,09/26/19 03:16,"68 Meadow St, Los Angeles, CA 90001" -257045,AA Batteries (4-pack),1,3.84,09/26/19 18:30,"602 1st St, New York City, NY 10001" -257046,Bose SoundSport Headphones,1,99.99,09/25/19 16:49,"22 Willow St, Seattle, WA 98101" -257047,Wired Headphones,1,11.99,09/01/19 20:52,"466 Johnson St, Atlanta, GA 30301" -257048,Apple Airpods Headphones,1,150,09/23/19 12:32,"645 Cedar St, New York City, NY 10001" -257049,AA Batteries (4-pack),1,3.84,09/12/19 19:21,"895 7th St, Seattle, WA 98101" -257050,34in Ultrawide Monitor,1,379.99,09/04/19 14:10,"549 8th St, Los Angeles, CA 90001" -257051,AA Batteries (4-pack),1,3.84,09/12/19 20:48,"505 Cherry St, New York City, NY 10001" -257052,27in FHD Monitor,1,149.99,09/23/19 15:52,"517 Willow St, New York City, NY 10001" -257053,20in Monitor,1,109.99,09/24/19 15:53,"725 13th St, San Francisco, CA 94016" -257054,Vareebadd Phone,1,400,09/22/19 17:09,"219 Wilson St, New York City, NY 10001" -257055,AAA Batteries (4-pack),1,2.99,09/23/19 17:36,"930 Cherry St, San Francisco, CA 94016" -257056,Bose SoundSport Headphones,1,99.99,09/03/19 15:11,"238 Main St, Boston, MA 02215" -257057,AAA Batteries (4-pack),1,2.99,09/14/19 23:34,"22 Johnson St, Seattle, WA 98101" -257058,27in FHD Monitor,1,149.99,09/22/19 00:12,"88 4th St, Portland, OR 97035" -257059,Lightning Charging Cable,1,14.95,09/19/19 13:56,"325 South St, Atlanta, GA 30301" -257060,AA Batteries (4-pack),1,3.84,09/01/19 11:38,"966 Center St, Seattle, WA 98101" -257061,USB-C Charging Cable,1,11.95,09/16/19 22:09,"326 River St, Los Angeles, CA 90001" -257062,Google Phone,1,600,09/24/19 10:00,"778 Willow St, Atlanta, GA 30301" -257063,AAA Batteries (4-pack),1,2.99,09/15/19 00:36,"305 1st St, San Francisco, CA 94016" -257064,27in 4K Gaming Monitor,1,389.99,09/10/19 14:52,"134 11th St, Los Angeles, CA 90001" -257065,20in Monitor,1,109.99,09/08/19 10:57,"39 7th St, Seattle, WA 98101" -257065,Apple Airpods Headphones,1,150,09/08/19 10:57,"39 7th St, Seattle, WA 98101" -257066,USB-C Charging Cable,1,11.95,09/14/19 09:55,"298 14th St, Portland, OR 97035" -257067,ThinkPad Laptop,1,999.99,09/06/19 04:44,"703 Dogwood St, Atlanta, GA 30301" -257068,34in Ultrawide Monitor,1,379.99,09/22/19 21:56,"611 Spruce St, New York City, NY 10001" -257069,AAA Batteries (4-pack),1,2.99,09/07/19 17:04,"63 Hickory St, Los Angeles, CA 90001" -257070,Bose SoundSport Headphones,1,99.99,09/29/19 16:28,"385 Lakeview St, San Francisco, CA 94016" -257071,Lightning Charging Cable,1,14.95,09/16/19 09:49,"71 Lincoln St, Austin, TX 73301" -257072,Lightning Charging Cable,1,14.95,09/05/19 18:31,"190 Spruce St, Portland, ME 04101" -257073,Wired Headphones,1,11.99,09/07/19 12:02,"324 11th St, New York City, NY 10001" -257074,20in Monitor,1,109.99,09/16/19 07:26,"38 Washington St, San Francisco, CA 94016" -257075,Apple Airpods Headphones,1,150,09/20/19 14:25,"319 1st St, San Francisco, CA 94016" -257076,USB-C Charging Cable,2,11.95,09/23/19 11:00,"183 2nd St, Austin, TX 73301" -257077,Wired Headphones,1,11.99,09/01/19 10:04,"253 Sunset St, Los Angeles, CA 90001" -257078,USB-C Charging Cable,1,11.95,09/04/19 11:58,"770 2nd St, San Francisco, CA 94016" -257079,iPhone,1,700,09/05/19 22:55,"968 10th St, Portland, OR 97035" -257079,Macbook Pro Laptop,1,1700,09/05/19 22:55,"968 10th St, Portland, OR 97035" -257080,27in 4K Gaming Monitor,1,389.99,09/03/19 20:09,"521 Madison St, Portland, OR 97035" -257081,USB-C Charging Cable,1,11.95,09/22/19 05:41,"480 Hill St, Atlanta, GA 30301" -257082,USB-C Charging Cable,1,11.95,09/20/19 14:57,"238 Jackson St, Dallas, TX 75001" -257083,AA Batteries (4-pack),1,3.84,09/05/19 23:02,"450 Chestnut St, New York City, NY 10001" -257084,AAA Batteries (4-pack),2,2.99,09/14/19 21:33,"334 Lincoln St, Dallas, TX 75001" -257085,27in FHD Monitor,1,149.99,09/01/19 14:01,"295 14th St, San Francisco, CA 94016" -257086,20in Monitor,1,109.99,09/14/19 09:29,"889 Dogwood St, Seattle, WA 98101" -257087,AAA Batteries (4-pack),2,2.99,09/25/19 20:49,"528 Pine St, San Francisco, CA 94016" -257088,Lightning Charging Cable,1,14.95,09/08/19 21:27,"196 Forest St, New York City, NY 10001" -257089,Lightning Charging Cable,1,14.95,09/11/19 20:11,"398 Ridge St, Los Angeles, CA 90001" -257090,Lightning Charging Cable,2,14.95,09/12/19 09:02,"719 Johnson St, Dallas, TX 75001" -257091,Wired Headphones,1,11.99,09/22/19 13:51,"442 12th St, New York City, NY 10001" -257092,USB-C Charging Cable,1,11.95,09/26/19 18:19,"601 Sunset St, Boston, MA 02215" -257093,Macbook Pro Laptop,1,1700,09/01/19 22:14,"365 Hill St, Seattle, WA 98101" -257094,Lightning Charging Cable,1,14.95,09/21/19 20:52,"49 Dogwood St, Los Angeles, CA 90001" -257095,27in 4K Gaming Monitor,1,389.99,09/03/19 11:40,"138 Hickory St, Austin, TX 73301" -257096,27in FHD Monitor,1,149.99,09/15/19 22:33,"753 Cedar St, Dallas, TX 75001" -257097,Wired Headphones,2,11.99,09/05/19 06:49,"968 Spruce St, Boston, MA 02215" -257098,Macbook Pro Laptop,1,1700,09/01/19 18:43,"92 1st St, Atlanta, GA 30301" -257099,Macbook Pro Laptop,1,1700,09/14/19 16:08,"18 Lake St, Portland, OR 97035" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -257100,AA Batteries (4-pack),2,3.84,09/02/19 13:46,"460 13th St, Seattle, WA 98101" -257101,AA Batteries (4-pack),1,3.84,09/02/19 11:09,"804 Sunset St, Seattle, WA 98101" -257102,AAA Batteries (4-pack),4,2.99,09/22/19 12:50,"379 14th St, Portland, OR 97035" -257103,27in 4K Gaming Monitor,1,389.99,09/18/19 17:41,"817 Forest St, San Francisco, CA 94016" -257104,20in Monitor,1,109.99,09/26/19 17:38,"912 13th St, Los Angeles, CA 90001" -257105,AAA Batteries (4-pack),1,2.99,09/07/19 12:19,"268 Maple St, San Francisco, CA 94016" -257106,27in FHD Monitor,1,149.99,09/12/19 01:34,"570 Cherry St, Atlanta, GA 30301" -257107,Bose SoundSport Headphones,1,99.99,09/09/19 20:50,"831 10th St, Atlanta, GA 30301" -257108,Bose SoundSport Headphones,1,99.99,09/12/19 12:45,"96 Willow St, Los Angeles, CA 90001" -257109,27in 4K Gaming Monitor,1,389.99,09/14/19 20:09,"120 13th St, New York City, NY 10001" -257110,27in FHD Monitor,1,149.99,09/03/19 09:01,"696 9th St, Los Angeles, CA 90001" -257111,AA Batteries (4-pack),3,3.84,09/27/19 11:16,"684 South St, Los Angeles, CA 90001" -257112,34in Ultrawide Monitor,1,379.99,09/28/19 21:24,"869 1st St, Portland, OR 97035" -257113,AAA Batteries (4-pack),1,2.99,09/19/19 05:37,"122 Lake St, Seattle, WA 98101" -257114,AA Batteries (4-pack),1,3.84,09/23/19 05:16,"179 9th St, Portland, OR 97035" -257115,ThinkPad Laptop,1,999.99,09/11/19 20:10,"401 Spruce St, Dallas, TX 75001" -257116,Flatscreen TV,1,300,09/04/19 17:03,"257 Cherry St, Los Angeles, CA 90001" -257117,34in Ultrawide Monitor,1,379.99,09/23/19 22:52,"779 Hickory St, Atlanta, GA 30301" -257118,AA Batteries (4-pack),1,3.84,09/08/19 17:55,"814 Lakeview St, San Francisco, CA 94016" -257119,20in Monitor,1,109.99,09/25/19 13:13,"384 Main St, Dallas, TX 75001" -257120,AAA Batteries (4-pack),3,2.99,09/22/19 14:44,"115 Pine St, Atlanta, GA 30301" -257121,USB-C Charging Cable,2,11.95,09/12/19 01:25,"619 14th St, Atlanta, GA 30301" -257122,Bose SoundSport Headphones,1,99.99,09/30/19 19:42,"402 Forest St, Boston, MA 02215" -257123,USB-C Charging Cable,2,11.95,09/02/19 15:05,"36 Spruce St, Boston, MA 02215" -257124,27in FHD Monitor,1,149.99,09/30/19 20:53,"586 1st St, San Francisco, CA 94016" -257125,USB-C Charging Cable,3,11.95,09/05/19 19:04,"643 5th St, Boston, MA 02215" -257126,USB-C Charging Cable,1,11.95,09/04/19 09:38,"404 Highland St, Boston, MA 02215" -257127,Wired Headphones,1,11.99,09/02/19 22:09,"731 River St, Los Angeles, CA 90001" -257128,USB-C Charging Cable,1,11.95,09/26/19 12:48,"893 Chestnut St, Portland, OR 97035" -257129,USB-C Charging Cable,1,11.95,09/14/19 13:19,"28 8th St, Portland, ME 04101" -257130,27in 4K Gaming Monitor,1,389.99,09/24/19 15:50,"588 Walnut St, Los Angeles, CA 90001" -257131,27in 4K Gaming Monitor,1,389.99,09/22/19 22:14,"212 Lake St, Los Angeles, CA 90001" -257132,AA Batteries (4-pack),1,3.84,09/07/19 13:24,"337 1st St, Los Angeles, CA 90001" -257133,USB-C Charging Cable,1,11.95,09/03/19 11:43,"775 4th St, Atlanta, GA 30301" -257134,Lightning Charging Cable,1,14.95,09/18/19 18:41,"637 9th St, Los Angeles, CA 90001" -257135,Wired Headphones,1,11.99,09/12/19 09:03,"790 Adams St, Seattle, WA 98101" -257136,AAA Batteries (4-pack),2,2.99,09/10/19 18:05,"630 Maple St, New York City, NY 10001" -257137,Wired Headphones,1,11.99,09/11/19 12:31,"666 Forest St, Los Angeles, CA 90001" -257138,27in FHD Monitor,2,149.99,09/16/19 20:23,"827 Jefferson St, San Francisco, CA 94016" -257139,Lightning Charging Cable,1,14.95,09/21/19 23:59,"838 Adams St, San Francisco, CA 94016" -257140,Wired Headphones,1,11.99,09/12/19 15:54,"127 Madison St, San Francisco, CA 94016" -257141,AA Batteries (4-pack),2,3.84,09/16/19 22:41,"265 6th St, San Francisco, CA 94016" -257142,USB-C Charging Cable,1,11.95,09/03/19 20:55,"408 River St, San Francisco, CA 94016" -257143,Bose SoundSport Headphones,2,99.99,09/23/19 12:17,"730 13th St, Los Angeles, CA 90001" -257144,AAA Batteries (4-pack),1,2.99,09/15/19 09:20,"353 Maple St, San Francisco, CA 94016" -257145,AA Batteries (4-pack),1,3.84,09/14/19 12:39,"849 8th St, Seattle, WA 98101" -257146,AA Batteries (4-pack),1,3.84,09/01/19 10:39,"17 6th St, San Francisco, CA 94016" -257147,20in Monitor,1,109.99,09/27/19 19:46,"864 13th St, San Francisco, CA 94016" -257148,Flatscreen TV,1,300,09/17/19 18:49,"807 South St, Los Angeles, CA 90001" -257149,AAA Batteries (4-pack),3,2.99,09/06/19 08:23,"83 Hill St, Los Angeles, CA 90001" -257150,USB-C Charging Cable,1,11.95,09/18/19 07:34,"83 Adams St, Dallas, TX 75001" -257151,LG Dryer,1,600.0,09/13/19 21:48,"738 Cedar St, Atlanta, GA 30301" -257152,Apple Airpods Headphones,1,150,09/14/19 11:46,"188 9th St, New York City, NY 10001" -257153,Apple Airpods Headphones,1,150,09/07/19 13:03,"420 Chestnut St, Los Angeles, CA 90001" -257154,USB-C Charging Cable,1,11.95,09/28/19 13:53,"295 Adams St, Los Angeles, CA 90001" -257155,AA Batteries (4-pack),2,3.84,09/19/19 15:45,"368 Park St, Atlanta, GA 30301" -,,,,, -257156,AAA Batteries (4-pack),1,2.99,09/17/19 15:33,"608 Jackson St, San Francisco, CA 94016" -257157,Lightning Charging Cable,1,14.95,09/04/19 09:32,"798 11th St, Los Angeles, CA 90001" -257158,Bose SoundSport Headphones,1,99.99,09/12/19 13:37,"753 Highland St, Los Angeles, CA 90001" -257159,USB-C Charging Cable,1,11.95,09/06/19 17:12,"724 14th St, New York City, NY 10001" -257160,USB-C Charging Cable,1,11.95,09/30/19 11:06,"365 Pine St, Boston, MA 02215" -257161,AA Batteries (4-pack),2,3.84,09/16/19 10:15,"691 2nd St, Boston, MA 02215" -257162,Wired Headphones,2,11.99,09/21/19 19:29,"31 Hickory St, New York City, NY 10001" -257163,27in 4K Gaming Monitor,1,389.99,09/08/19 17:20,"160 8th St, San Francisco, CA 94016" -257164,USB-C Charging Cable,1,11.95,09/28/19 14:36,"876 Pine St, San Francisco, CA 94016" -257165,Bose SoundSport Headphones,1,99.99,09/03/19 21:17,"321 Church St, Boston, MA 02215" -257166,Bose SoundSport Headphones,1,99.99,09/01/19 10:00,"645 8th St, New York City, NY 10001" -257167,27in FHD Monitor,1,149.99,09/23/19 21:22,"739 Church St, Austin, TX 73301" -257168,Wired Headphones,1,11.99,09/12/19 14:43,"796 Park St, San Francisco, CA 94016" -257169,Bose SoundSport Headphones,1,99.99,09/13/19 16:43,"946 11th St, Atlanta, GA 30301" -257170,USB-C Charging Cable,1,11.95,09/02/19 10:07,"514 Cedar St, San Francisco, CA 94016" -257171,AAA Batteries (4-pack),3,2.99,09/11/19 18:28,"649 1st St, Boston, MA 02215" -257172,Bose SoundSport Headphones,1,99.99,09/20/19 22:35,"58 4th St, New York City, NY 10001" -257173,USB-C Charging Cable,1,11.95,09/01/19 06:09,"9 1st St, San Francisco, CA 94016" -257174,USB-C Charging Cable,1,11.95,09/17/19 21:56,"90 Jackson St, New York City, NY 10001" -257175,Apple Airpods Headphones,1,150,09/29/19 18:11,"378 2nd St, Los Angeles, CA 90001" -257176,AAA Batteries (4-pack),1,2.99,09/06/19 15:43,"253 Maple St, New York City, NY 10001" -257177,Lightning Charging Cable,1,14.95,09/06/19 23:07,"857 South St, Boston, MA 02215" -257178,27in FHD Monitor,1,149.99,09/15/19 10:18,"907 9th St, San Francisco, CA 94016" -257179,Lightning Charging Cable,1,14.95,09/29/19 13:07,"543 8th St, Portland, OR 97035" -257180,iPhone,1,700,09/11/19 06:31,"150 9th St, Boston, MA 02215" -257181,27in 4K Gaming Monitor,1,389.99,09/22/19 21:08,"74 Pine St, San Francisco, CA 94016" -257182,Wired Headphones,1,11.99,09/13/19 20:28,"214 Ridge St, Portland, OR 97035" -257183,Bose SoundSport Headphones,1,99.99,09/14/19 10:48,"319 Cherry St, New York City, NY 10001" -257184,Lightning Charging Cable,1,14.95,09/12/19 10:29,"195 Dogwood St, Boston, MA 02215" -257185,Wired Headphones,1,11.99,09/02/19 16:30,"875 Willow St, San Francisco, CA 94016" -257186,27in 4K Gaming Monitor,1,389.99,09/02/19 00:57,"443 Jackson St, Atlanta, GA 30301" -257187,27in FHD Monitor,1,149.99,09/13/19 19:38,"557 14th St, Atlanta, GA 30301" -257188,Vareebadd Phone,1,400,09/11/19 21:53,"714 Cedar St, Dallas, TX 75001" -257189,Wired Headphones,1,11.99,09/09/19 11:13,"934 Jefferson St, Portland, OR 97035" -257190,Wired Headphones,1,11.99,09/13/19 07:06,"438 5th St, San Francisco, CA 94016" -257191,USB-C Charging Cable,1,11.95,09/07/19 02:14,"481 Pine St, San Francisco, CA 94016" -257192,USB-C Charging Cable,2,11.95,09/24/19 13:07,"550 Meadow St, Boston, MA 02215" -257193,Apple Airpods Headphones,1,150,09/22/19 20:20,"924 Johnson St, New York City, NY 10001" -257194,Bose SoundSport Headphones,1,99.99,09/02/19 22:33,"987 River St, San Francisco, CA 94016" -257195,AA Batteries (4-pack),1,3.84,09/16/19 06:22,"943 5th St, Los Angeles, CA 90001" -257196,Flatscreen TV,1,300,09/22/19 09:45,"413 6th St, Dallas, TX 75001" -257197,Lightning Charging Cable,2,14.95,09/02/19 12:06,"476 Walnut St, San Francisco, CA 94016" -257198,AAA Batteries (4-pack),2,2.99,09/21/19 12:33,"200 Walnut St, Los Angeles, CA 90001" -257199,AA Batteries (4-pack),1,3.84,09/27/19 15:48,"287 Sunset St, Austin, TX 73301" -257200,Bose SoundSport Headphones,1,99.99,09/17/19 21:12,"445 Center St, Atlanta, GA 30301" -257201,Wired Headphones,1,11.99,09/18/19 13:25,"548 Willow St, San Francisco, CA 94016" -257202,AAA Batteries (4-pack),1,2.99,09/24/19 21:27,"508 Church St, San Francisco, CA 94016" -257203,Apple Airpods Headphones,1,150,09/07/19 14:30,"665 Forest St, Boston, MA 02215" -257203,AAA Batteries (4-pack),1,2.99,09/07/19 14:30,"665 Forest St, Boston, MA 02215" -257204,Apple Airpods Headphones,1,150,09/29/19 19:01,"358 Jefferson St, Boston, MA 02215" -257205,AAA Batteries (4-pack),1,2.99,09/16/19 12:36,"966 Jefferson St, New York City, NY 10001" -257206,Flatscreen TV,1,300,09/20/19 14:44,"577 Walnut St, Seattle, WA 98101" -257207,Apple Airpods Headphones,1,150,09/20/19 12:45,"452 Church St, Dallas, TX 75001" -257208,AAA Batteries (4-pack),1,2.99,09/08/19 17:48,"763 7th St, Portland, OR 97035" -257209,AAA Batteries (4-pack),1,2.99,09/26/19 13:15,"569 Main St, Boston, MA 02215" -257210,Bose SoundSport Headphones,1,99.99,09/21/19 13:02,"699 Lake St, Los Angeles, CA 90001" -257211,USB-C Charging Cable,1,11.95,09/26/19 18:19,"532 7th St, San Francisco, CA 94016" -257212,AAA Batteries (4-pack),1,2.99,09/13/19 18:00,"668 Cherry St, Seattle, WA 98101" -257213,AAA Batteries (4-pack),1,2.99,09/18/19 06:22,"452 Jefferson St, New York City, NY 10001" -257214,USB-C Charging Cable,1,11.95,09/15/19 11:29,"471 8th St, San Francisco, CA 94016" -257215,AAA Batteries (4-pack),1,2.99,09/24/19 13:09,"308 Cedar St, New York City, NY 10001" -257216,Bose SoundSport Headphones,1,99.99,09/29/19 13:17,"417 Cherry St, San Francisco, CA 94016" -257217,AA Batteries (4-pack),1,3.84,09/17/19 10:59,"72 Adams St, Los Angeles, CA 90001" -257218,Wired Headphones,1,11.99,09/02/19 10:58,"268 14th St, Atlanta, GA 30301" -257219,AA Batteries (4-pack),1,3.84,09/08/19 12:06,"720 Johnson St, Austin, TX 73301" -257220,27in 4K Gaming Monitor,1,389.99,09/12/19 15:42,"678 6th St, San Francisco, CA 94016" -257221,27in FHD Monitor,1,149.99,09/28/19 07:21,"415 Madison St, New York City, NY 10001" -257222,27in 4K Gaming Monitor,1,389.99,09/05/19 08:20,"654 Church St, Los Angeles, CA 90001" -257223,34in Ultrawide Monitor,1,379.99,09/30/19 15:12,"744 Pine St, San Francisco, CA 94016" -257224,34in Ultrawide Monitor,1,379.99,09/09/19 00:35,"93 Walnut St, Los Angeles, CA 90001" -257224,Flatscreen TV,1,300,09/09/19 00:35,"93 Walnut St, Los Angeles, CA 90001" -257225,USB-C Charging Cable,1,11.95,09/21/19 08:56,"455 8th St, Boston, MA 02215" -257226,27in FHD Monitor,1,149.99,09/20/19 10:47,"376 Hill St, San Francisco, CA 94016" -257227,27in 4K Gaming Monitor,1,389.99,09/25/19 15:06,"785 5th St, Boston, MA 02215" -257228,AAA Batteries (4-pack),1,2.99,09/02/19 18:55,"823 Lake St, Dallas, TX 75001" -257229,Lightning Charging Cable,1,14.95,09/14/19 23:34,"484 12th St, Dallas, TX 75001" -257230,USB-C Charging Cable,1,11.95,09/25/19 17:33,"652 Washington St, San Francisco, CA 94016" -257231,Flatscreen TV,1,300,09/14/19 17:34,"629 Lakeview St, Seattle, WA 98101" -257232,USB-C Charging Cable,1,11.95,09/09/19 15:42,"448 2nd St, Atlanta, GA 30301" -257233,Google Phone,1,600,09/12/19 10:16,"942 South St, San Francisco, CA 94016" -257234,AA Batteries (4-pack),1,3.84,09/02/19 13:32,"876 Meadow St, Dallas, TX 75001" -257235,ThinkPad Laptop,1,999.99,09/06/19 19:09,"662 Lincoln St, Los Angeles, CA 90001" -257236,Wired Headphones,1,11.99,09/19/19 18:51,"61 Dogwood St, Los Angeles, CA 90001" -257237,AAA Batteries (4-pack),1,2.99,09/16/19 23:59,"75 5th St, Atlanta, GA 30301" -257238,Lightning Charging Cable,1,14.95,09/10/19 19:20,"611 Willow St, Los Angeles, CA 90001" -257239,27in FHD Monitor,1,149.99,09/04/19 22:33,"298 Washington St, San Francisco, CA 94016" -257240,ThinkPad Laptop,1,999.99,09/22/19 18:25,"969 13th St, Boston, MA 02215" -257241,USB-C Charging Cable,1,11.95,09/22/19 21:11,"841 Washington St, Dallas, TX 75001" -257242,AAA Batteries (4-pack),4,2.99,09/23/19 17:50,"421 Jefferson St, Austin, TX 73301" -257243,Flatscreen TV,1,300,09/21/19 12:31,"804 Cedar St, San Francisco, CA 94016" -257244,AA Batteries (4-pack),1,3.84,09/28/19 12:06,"173 Elm St, New York City, NY 10001" -257245,27in 4K Gaming Monitor,1,389.99,09/19/19 21:20,"729 Main St, Los Angeles, CA 90001" -257246,Wired Headphones,1,11.99,09/13/19 15:45,"941 5th St, San Francisco, CA 94016" -257247,Lightning Charging Cable,1,14.95,09/16/19 18:45,"179 Wilson St, New York City, NY 10001" -257248,AAA Batteries (4-pack),2,2.99,09/27/19 20:51,"889 12th St, Los Angeles, CA 90001" -257249,USB-C Charging Cable,1,11.95,09/02/19 17:24,"380 Forest St, San Francisco, CA 94016" -257250,iPhone,1,700,09/12/19 14:34,"157 10th St, Austin, TX 73301" -257251,AA Batteries (4-pack),1,3.84,09/17/19 20:56,"873 South St, San Francisco, CA 94016" -257252,20in Monitor,1,109.99,09/19/19 14:18,"337 South St, Portland, OR 97035" -257253,Bose SoundSport Headphones,1,99.99,09/20/19 23:50,"666 Park St, Boston, MA 02215" -257254,Wired Headphones,1,11.99,09/10/19 07:46,"629 River St, Portland, OR 97035" -257255,AA Batteries (4-pack),1,3.84,09/07/19 23:50,"224 Jefferson St, Portland, ME 04101" -257256,AAA Batteries (4-pack),2,2.99,09/06/19 10:53,"748 Willow St, Seattle, WA 98101" -257257,Wired Headphones,1,11.99,09/06/19 16:51,"752 Center St, Atlanta, GA 30301" -257258,Lightning Charging Cable,1,14.95,09/17/19 23:44,"79 Chestnut St, Atlanta, GA 30301" -257259,Macbook Pro Laptop,1,1700,09/13/19 22:29,"50 West St, Los Angeles, CA 90001" -257260,Bose SoundSport Headphones,1,99.99,09/16/19 11:47,"225 4th St, San Francisco, CA 94016" -257261,AAA Batteries (4-pack),1,2.99,09/03/19 01:39,"424 Willow St, New York City, NY 10001" -257262,AAA Batteries (4-pack),2,2.99,09/09/19 20:28,"123 4th St, New York City, NY 10001" -257263,AA Batteries (4-pack),1,3.84,09/18/19 23:38,"246 Jefferson St, San Francisco, CA 94016" -257264,27in 4K Gaming Monitor,1,389.99,09/23/19 10:51,"30 Hickory St, San Francisco, CA 94016" -257265,27in FHD Monitor,1,149.99,09/22/19 21:40,"166 6th St, New York City, NY 10001" -257266,USB-C Charging Cable,1,11.95,09/17/19 17:59,"908 Lake St, San Francisco, CA 94016" -257267,Lightning Charging Cable,1,14.95,09/17/19 23:24,"84 Elm St, Los Angeles, CA 90001" -257268,iPhone,1,700,09/12/19 11:23,"457 Jackson St, San Francisco, CA 94016" -257269,Bose SoundSport Headphones,1,99.99,09/22/19 15:20,"870 Ridge St, San Francisco, CA 94016" -257270,Bose SoundSport Headphones,1,99.99,09/19/19 02:21,"721 7th St, Dallas, TX 75001" -257271,Wired Headphones,1,11.99,09/30/19 21:20,"685 Spruce St, San Francisco, CA 94016" -257272,USB-C Charging Cable,1,11.95,09/16/19 22:45,"839 2nd St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -257273,AA Batteries (4-pack),1,3.84,09/08/19 00:25,"825 Spruce St, San Francisco, CA 94016" -257274,AAA Batteries (4-pack),1,2.99,09/02/19 19:46,"897 Forest St, San Francisco, CA 94016" -257275,USB-C Charging Cable,1,11.95,09/26/19 18:52,"171 Center St, New York City, NY 10001" -257276,USB-C Charging Cable,1,11.95,09/02/19 13:10,"26 Adams St, Los Angeles, CA 90001" -257277,Apple Airpods Headphones,1,150,09/13/19 00:35,"260 12th St, San Francisco, CA 94016" -257278,Wired Headphones,1,11.99,09/10/19 12:56,"357 5th St, New York City, NY 10001" -257279,Lightning Charging Cable,1,14.95,09/14/19 00:38,"187 South St, Austin, TX 73301" -257280,ThinkPad Laptop,1,999.99,09/21/19 15:34,"331 11th St, San Francisco, CA 94016" -257281,Bose SoundSport Headphones,1,99.99,09/03/19 09:49,"510 Pine St, San Francisco, CA 94016" -257282,Lightning Charging Cable,1,14.95,09/06/19 15:20,"817 1st St, San Francisco, CA 94016" -257283,Wired Headphones,1,11.99,09/25/19 14:34,"185 Center St, San Francisco, CA 94016" -257284,34in Ultrawide Monitor,1,379.99,09/26/19 15:50,"752 8th St, New York City, NY 10001" -257285,Apple Airpods Headphones,1,150,09/24/19 08:45,"460 Meadow St, San Francisco, CA 94016" -257286,Apple Airpods Headphones,1,150,09/21/19 10:41,"4 10th St, New York City, NY 10001" -257286,AAA Batteries (4-pack),1,2.99,09/21/19 10:41,"4 10th St, New York City, NY 10001" -257287,Lightning Charging Cable,3,14.95,09/05/19 15:12,"600 Adams St, San Francisco, CA 94016" -257288,Wired Headphones,1,11.99,09/20/19 00:20,"192 Elm St, Austin, TX 73301" -257289,27in 4K Gaming Monitor,1,389.99,09/04/19 12:18,"485 West St, San Francisco, CA 94016" -257290,AAA Batteries (4-pack),1,2.99,09/11/19 15:05,"999 Church St, Atlanta, GA 30301" -257291,AAA Batteries (4-pack),2,2.99,09/23/19 00:40,"206 2nd St, Dallas, TX 75001" -257292,Bose SoundSport Headphones,1,99.99,09/20/19 08:27,"408 2nd St, Los Angeles, CA 90001" -257293,AA Batteries (4-pack),3,3.84,09/04/19 21:05,"375 4th St, San Francisco, CA 94016" -257294,Lightning Charging Cable,1,14.95,09/07/19 17:48,"828 Dogwood St, Seattle, WA 98101" -257295,Wired Headphones,1,11.99,09/24/19 19:53,"922 Forest St, San Francisco, CA 94016" -257296,Wired Headphones,1,11.99,09/15/19 19:48,"527 Lincoln St, Los Angeles, CA 90001" -257297,AAA Batteries (4-pack),1,2.99,09/19/19 23:38,"389 River St, Portland, OR 97035" -257298,USB-C Charging Cable,1,11.95,09/26/19 19:27,"914 8th St, New York City, NY 10001" -257299,Apple Airpods Headphones,1,150,09/26/19 09:53,"973 7th St, Austin, TX 73301" -257300,AAA Batteries (4-pack),4,2.99,09/27/19 20:12,"554 Lakeview St, New York City, NY 10001" -257301,Macbook Pro Laptop,1,1700,09/03/19 17:59,"567 Adams St, San Francisco, CA 94016" -257302,Bose SoundSport Headphones,1,99.99,09/17/19 02:35,"907 9th St, New York City, NY 10001" -257303,AAA Batteries (4-pack),3,2.99,09/12/19 01:11,"440 2nd St, Seattle, WA 98101" -257304,AA Batteries (4-pack),1,3.84,09/10/19 20:59,"518 Jefferson St, New York City, NY 10001" -257305,Wired Headphones,1,11.99,09/24/19 03:04,"79 Madison St, Dallas, TX 75001" -257306,AAA Batteries (4-pack),1,2.99,09/12/19 07:48,"208 Maple St, Los Angeles, CA 90001" -257307,Lightning Charging Cable,1,14.95,09/02/19 08:21,"267 Walnut St, Austin, TX 73301" -257308,Apple Airpods Headphones,1,150,09/03/19 21:06,"248 Washington St, Austin, TX 73301" -257309,AAA Batteries (4-pack),3,2.99,09/08/19 13:04,"566 Lincoln St, San Francisco, CA 94016" -257310,Lightning Charging Cable,1,14.95,09/25/19 17:14,"598 Main St, Atlanta, GA 30301" -257311,AAA Batteries (4-pack),3,2.99,09/14/19 11:28,"531 Dogwood St, Atlanta, GA 30301" -257312,Lightning Charging Cable,1,14.95,09/17/19 19:16,"463 West St, Boston, MA 02215" -257313,Bose SoundSport Headphones,1,99.99,09/17/19 16:18,"850 Walnut St, New York City, NY 10001" -257314,Lightning Charging Cable,1,14.95,09/15/19 09:34,"830 Meadow St, Boston, MA 02215" -257315,AA Batteries (4-pack),1,3.84,09/13/19 14:37,"634 Highland St, San Francisco, CA 94016" -257316,Google Phone,1,600,09/02/19 19:17,"673 South St, San Francisco, CA 94016" -257317,Wired Headphones,1,11.99,09/04/19 18:42,"38 Dogwood St, New York City, NY 10001" -257318,AA Batteries (4-pack),1,3.84,09/08/19 11:28,"888 Elm St, Portland, OR 97035" -257319,34in Ultrawide Monitor,1,379.99,09/25/19 17:56,"988 Lakeview St, Austin, TX 73301" -257320,27in 4K Gaming Monitor,1,389.99,09/04/19 02:08,"694 8th St, Portland, OR 97035" -257321,Google Phone,1,600,09/24/19 13:54,"557 Forest St, Los Angeles, CA 90001" -257322,Wired Headphones,1,11.99,09/05/19 16:24,"440 Jackson St, Dallas, TX 75001" -257323,iPhone,1,700,09/22/19 10:50,"818 Lincoln St, Los Angeles, CA 90001" -257323,Lightning Charging Cable,1,14.95,09/22/19 10:50,"818 Lincoln St, Los Angeles, CA 90001" -257324,USB-C Charging Cable,1,11.95,09/04/19 09:21,"100 Elm St, San Francisco, CA 94016" -257325,Bose SoundSport Headphones,1,99.99,09/14/19 18:25,"966 Johnson St, Portland, OR 97035" -257326,Wired Headphones,1,11.99,09/22/19 16:43,"301 Forest St, New York City, NY 10001" -257327,Bose SoundSport Headphones,1,99.99,09/30/19 22:08,"109 Park St, Los Angeles, CA 90001" -257327,Apple Airpods Headphones,1,150,09/30/19 22:08,"109 Park St, Los Angeles, CA 90001" -257328,Apple Airpods Headphones,1,150,09/12/19 09:44,"925 4th St, New York City, NY 10001" -257329,Bose SoundSport Headphones,1,99.99,09/03/19 12:04,"829 Wilson St, Seattle, WA 98101" -257330,Lightning Charging Cable,1,14.95,09/08/19 00:19,"489 10th St, San Francisco, CA 94016" -257331,AA Batteries (4-pack),2,3.84,09/25/19 05:17,"288 Forest St, New York City, NY 10001" -257332,AA Batteries (4-pack),1,3.84,09/17/19 23:46,"868 Forest St, Seattle, WA 98101" -257333,AAA Batteries (4-pack),3,2.99,09/09/19 12:55,"881 6th St, Atlanta, GA 30301" -257334,Wired Headphones,1,11.99,09/04/19 13:11,"752 8th St, Seattle, WA 98101" -257335,Macbook Pro Laptop,1,1700,09/26/19 14:34,"751 10th St, New York City, NY 10001" -257336,Lightning Charging Cable,1,14.95,09/26/19 13:58,"220 9th St, Dallas, TX 75001" -257337,Wired Headphones,1,11.99,09/21/19 09:41,"668 13th St, Dallas, TX 75001" -257338,USB-C Charging Cable,1,11.95,09/12/19 19:40,"513 Jefferson St, Los Angeles, CA 90001" -257339,27in FHD Monitor,1,149.99,09/11/19 13:05,"5 Pine St, San Francisco, CA 94016" -257340,Wired Headphones,1,11.99,09/10/19 12:42,"326 1st St, Boston, MA 02215" -257341,Apple Airpods Headphones,1,150,09/03/19 18:47,"496 Madison St, New York City, NY 10001" -257342,Wired Headphones,1,11.99,09/05/19 08:27,"81 Highland St, Dallas, TX 75001" -257343,Wired Headphones,1,11.99,09/16/19 12:58,"90 Jefferson St, San Francisco, CA 94016" -257344,USB-C Charging Cable,1,11.95,09/26/19 15:31,"562 6th St, San Francisco, CA 94016" -257345,Wired Headphones,2,11.99,09/01/19 12:38,"78 7th St, Atlanta, GA 30301" -257346,AA Batteries (4-pack),1,3.84,09/01/19 23:21,"771 13th St, New York City, NY 10001" -257347,AA Batteries (4-pack),2,3.84,09/10/19 20:53,"401 7th St, Portland, OR 97035" -257348,iPhone,1,700,09/03/19 11:51,"518 Hill St, San Francisco, CA 94016" -257349,USB-C Charging Cable,2,11.95,09/09/19 00:03,"11 Hickory St, Los Angeles, CA 90001" -257350,AA Batteries (4-pack),2,3.84,09/14/19 13:30,"760 10th St, Boston, MA 02215" -257351,Vareebadd Phone,1,400,09/17/19 13:31,"752 14th St, San Francisco, CA 94016" -257352,Bose SoundSport Headphones,1,99.99,09/24/19 13:25,"584 Adams St, San Francisco, CA 94016" -257353,34in Ultrawide Monitor,1,379.99,09/08/19 23:54,"807 Lake St, San Francisco, CA 94016" -257354,Bose SoundSport Headphones,1,99.99,09/23/19 19:52,"188 Maple St, Seattle, WA 98101" -257355,Lightning Charging Cable,1,14.95,09/28/19 09:39,"37 5th St, San Francisco, CA 94016" -257356,AA Batteries (4-pack),1,3.84,09/05/19 19:20,"980 Lake St, Austin, TX 73301" -257357,34in Ultrawide Monitor,1,379.99,09/29/19 13:57,"113 Cedar St, Los Angeles, CA 90001" -257358,Apple Airpods Headphones,1,150,09/12/19 22:41,"146 Madison St, Dallas, TX 75001" -257359,USB-C Charging Cable,1,11.95,09/18/19 06:21,"316 Hickory St, Atlanta, GA 30301" -257360,Lightning Charging Cable,1,14.95,09/30/19 18:31,"28 6th St, San Francisco, CA 94016" -257361,Wired Headphones,1,11.99,09/05/19 17:41,"652 13th St, Boston, MA 02215" -257362,USB-C Charging Cable,1,11.95,09/29/19 18:16,"501 Jefferson St, Dallas, TX 75001" -257363,Lightning Charging Cable,1,14.95,09/29/19 12:39,"296 Lakeview St, Austin, TX 73301" -257364,Apple Airpods Headphones,1,150,09/25/19 17:42,"302 South St, Portland, OR 97035" -257365,27in FHD Monitor,1,149.99,09/16/19 13:21,"102 Jefferson St, Seattle, WA 98101" -257366,AA Batteries (4-pack),1,3.84,09/22/19 18:52,"916 Washington St, Boston, MA 02215" -257367,Lightning Charging Cable,1,14.95,09/03/19 13:56,"834 Willow St, Austin, TX 73301" -257368,Apple Airpods Headphones,1,150,09/12/19 13:02,"807 Wilson St, San Francisco, CA 94016" -257369,USB-C Charging Cable,1,11.95,09/30/19 21:07,"253 7th St, Portland, OR 97035" -257370,AA Batteries (4-pack),1,3.84,09/07/19 17:55,"260 Main St, Dallas, TX 75001" -257371,AAA Batteries (4-pack),3,2.99,09/21/19 10:05,"156 Sunset St, Dallas, TX 75001" -257372,Bose SoundSport Headphones,1,99.99,09/24/19 16:10,"516 8th St, Boston, MA 02215" -257373,Lightning Charging Cable,1,14.95,09/26/19 17:30,"257 Center St, Los Angeles, CA 90001" -257374,USB-C Charging Cable,1,11.95,09/02/19 18:14,"314 Lincoln St, Atlanta, GA 30301" -257375,LG Dryer,1,600.0,09/18/19 10:54,"665 4th St, Los Angeles, CA 90001" -257376,34in Ultrawide Monitor,1,379.99,09/08/19 15:35,"387 11th St, San Francisco, CA 94016" -257377,34in Ultrawide Monitor,1,379.99,09/18/19 11:50,"506 6th St, San Francisco, CA 94016" -257378,27in 4K Gaming Monitor,1,389.99,09/26/19 15:24,"626 Wilson St, Los Angeles, CA 90001" -257379,AAA Batteries (4-pack),1,2.99,09/28/19 12:30,"435 Spruce St, Seattle, WA 98101" -257380,AA Batteries (4-pack),1,3.84,09/18/19 22:01,"340 Dogwood St, Los Angeles, CA 90001" -257381,AA Batteries (4-pack),3,3.84,09/09/19 12:56,"793 Center St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -257382,AAA Batteries (4-pack),1,2.99,09/05/19 18:06,"397 Pine St, Austin, TX 73301" -257382,USB-C Charging Cable,1,11.95,09/05/19 18:06,"397 Pine St, Austin, TX 73301" -257383,34in Ultrawide Monitor,1,379.99,09/02/19 20:05,"221 4th St, Austin, TX 73301" -257384,Lightning Charging Cable,1,14.95,09/27/19 18:52,"952 South St, New York City, NY 10001" -257385,Wired Headphones,1,11.99,09/14/19 00:12,"301 Lakeview St, Atlanta, GA 30301" -257386,Flatscreen TV,1,300,09/05/19 09:53,"949 South St, Austin, TX 73301" -257387,34in Ultrawide Monitor,1,379.99,09/16/19 14:05,"729 11th St, Los Angeles, CA 90001" -257388,USB-C Charging Cable,1,11.95,09/17/19 12:32,"947 Dogwood St, Boston, MA 02215" -257389,AA Batteries (4-pack),1,3.84,09/22/19 20:44,"66 Elm St, Boston, MA 02215" -257390,27in FHD Monitor,1,149.99,09/30/19 15:34,"379 Johnson St, Los Angeles, CA 90001" -257391,USB-C Charging Cable,1,11.95,09/18/19 12:57,"212 Sunset St, San Francisco, CA 94016" -257392,AAA Batteries (4-pack),1,2.99,09/05/19 12:28,"5 Meadow St, New York City, NY 10001" -257393,AAA Batteries (4-pack),1,2.99,09/11/19 21:18,"864 Sunset St, San Francisco, CA 94016" -257394,Apple Airpods Headphones,1,150,09/29/19 01:17,"891 Lakeview St, Portland, ME 04101" -257395,Lightning Charging Cable,1,14.95,09/21/19 23:28,"962 Highland St, New York City, NY 10001" -257396,AAA Batteries (4-pack),1,2.99,09/06/19 21:10,"927 Cedar St, New York City, NY 10001" -257397,USB-C Charging Cable,1,11.95,09/25/19 18:32,"583 8th St, San Francisco, CA 94016" -257398,Wired Headphones,1,11.99,09/21/19 19:56,"243 8th St, San Francisco, CA 94016" -257399,Wired Headphones,1,11.99,09/13/19 15:04,"278 Johnson St, Boston, MA 02215" -257400,iPhone,1,700,09/03/19 21:15,"438 Johnson St, Atlanta, GA 30301" -257400,Wired Headphones,1,11.99,09/03/19 21:15,"438 Johnson St, Atlanta, GA 30301" -257401,USB-C Charging Cable,1,11.95,09/21/19 23:06,"910 South St, San Francisco, CA 94016" -257402,Wired Headphones,1,11.99,09/18/19 14:32,"667 Johnson St, Boston, MA 02215" -257403,20in Monitor,1,109.99,09/09/19 17:55,"666 Jackson St, Los Angeles, CA 90001" -257404,AA Batteries (4-pack),1,3.84,09/27/19 10:55,"331 Lakeview St, Los Angeles, CA 90001" -257405,AAA Batteries (4-pack),2,2.99,09/28/19 19:38,"34 Ridge St, Los Angeles, CA 90001" -257406,27in FHD Monitor,1,149.99,09/01/19 06:49,"817 Park St, San Francisco, CA 94016" -257407,Google Phone,1,600,09/26/19 09:57,"458 9th St, Boston, MA 02215" -257408,Apple Airpods Headphones,1,150,09/12/19 12:29,"470 Park St, Portland, OR 97035" -257409,AA Batteries (4-pack),1,3.84,09/07/19 12:31,"393 Cedar St, New York City, NY 10001" -257410,20in Monitor,1,109.99,09/17/19 12:09,"828 8th St, New York City, NY 10001" -257411,27in FHD Monitor,1,149.99,09/28/19 16:58,"990 Cherry St, Dallas, TX 75001" -257412,Lightning Charging Cable,1,14.95,09/19/19 12:30,"517 Hickory St, Atlanta, GA 30301" -257413,Wired Headphones,1,11.99,09/19/19 18:41,"185 2nd St, Atlanta, GA 30301" -257414,USB-C Charging Cable,3,11.95,09/05/19 10:59,"460 North St, Boston, MA 02215" -257415,USB-C Charging Cable,1,11.95,09/22/19 11:59,"674 Cherry St, Los Angeles, CA 90001" -257416,AAA Batteries (4-pack),3,2.99,09/25/19 11:58,"157 Wilson St, Atlanta, GA 30301" -257417,Wired Headphones,1,11.99,09/20/19 22:06,"185 Lakeview St, Los Angeles, CA 90001" -257418,Apple Airpods Headphones,1,150,09/08/19 13:02,"953 1st St, Seattle, WA 98101" -257419,LG Washing Machine,1,600.0,09/18/19 22:12,"813 Chestnut St, San Francisco, CA 94016" -257420,AA Batteries (4-pack),1,3.84,09/16/19 14:06,"843 Highland St, Dallas, TX 75001" -257421,AAA Batteries (4-pack),2,2.99,09/08/19 10:26,"61 Chestnut St, New York City, NY 10001" -257422,27in FHD Monitor,1,149.99,09/26/19 12:26,"448 14th St, Seattle, WA 98101" -257423,AAA Batteries (4-pack),1,2.99,09/21/19 15:44,"157 Jackson St, Boston, MA 02215" -257424,Bose SoundSport Headphones,1,99.99,09/23/19 20:10,"487 Madison St, Atlanta, GA 30301" -257425,USB-C Charging Cable,2,11.95,09/27/19 08:25,"219 Willow St, San Francisco, CA 94016" -257426,Apple Airpods Headphones,1,150,09/11/19 22:35,"237 Park St, Seattle, WA 98101" -257427,Wired Headphones,1,11.99,09/04/19 03:51,"374 10th St, Los Angeles, CA 90001" -257428,Apple Airpods Headphones,1,150,09/08/19 10:40,"270 5th St, Dallas, TX 75001" -257429,Google Phone,1,600,09/13/19 17:42,"674 13th St, Los Angeles, CA 90001" -257430,USB-C Charging Cable,1,11.95,09/24/19 15:43,"98 Highland St, Dallas, TX 75001" -257431,USB-C Charging Cable,1,11.95,09/05/19 11:23,"939 Highland St, Austin, TX 73301" -257432,LG Washing Machine,1,600.0,09/11/19 16:32,"802 Willow St, Atlanta, GA 30301" -257433,20in Monitor,1,109.99,09/10/19 22:00,"89 Wilson St, Dallas, TX 75001" -257434,Bose SoundSport Headphones,1,99.99,09/11/19 17:15,"601 Hill St, New York City, NY 10001" -257435,USB-C Charging Cable,1,11.95,09/08/19 21:36,"938 Maple St, New York City, NY 10001" -,,,,, -257436,USB-C Charging Cable,1,11.95,09/22/19 19:50,"110 Church St, San Francisco, CA 94016" -257437,Wired Headphones,1,11.99,09/08/19 20:38,"297 Sunset St, Boston, MA 02215" -257438,AA Batteries (4-pack),1,3.84,09/21/19 09:21,"451 5th St, San Francisco, CA 94016" -257439,Wired Headphones,1,11.99,09/03/19 20:08,"42 Jefferson St, Atlanta, GA 30301" -257440,Bose SoundSport Headphones,1,99.99,09/15/19 22:03,"562 Cherry St, Atlanta, GA 30301" -257441,AAA Batteries (4-pack),1,2.99,09/18/19 19:55,"5 Johnson St, San Francisco, CA 94016" -257442,Lightning Charging Cable,1,14.95,09/27/19 16:24,"345 Center St, Boston, MA 02215" -257442,USB-C Charging Cable,1,11.95,09/27/19 16:24,"345 Center St, Boston, MA 02215" -257443,USB-C Charging Cable,2,11.95,09/11/19 02:28,"485 Hickory St, San Francisco, CA 94016" -257444,Lightning Charging Cable,1,14.95,09/13/19 13:11,"727 10th St, New York City, NY 10001" -257445,AA Batteries (4-pack),1,3.84,09/28/19 21:22,"451 River St, Atlanta, GA 30301" -257446,27in 4K Gaming Monitor,1,389.99,09/03/19 14:53,"556 Maple St, Portland, OR 97035" -257447,ThinkPad Laptop,1,999.99,09/29/19 10:54,"245 Pine St, Portland, OR 97035" -257448,Macbook Pro Laptop,1,1700,09/25/19 15:43,"725 North St, Portland, ME 04101" -257449,AA Batteries (4-pack),1,3.84,09/09/19 11:47,"711 8th St, Los Angeles, CA 90001" -257450,AAA Batteries (4-pack),1,2.99,09/22/19 01:01,"722 North St, New York City, NY 10001" -257451,AA Batteries (4-pack),1,3.84,09/07/19 22:02,"488 13th St, San Francisco, CA 94016" -257452,Lightning Charging Cable,1,14.95,09/24/19 18:28,"121 Lakeview St, Dallas, TX 75001" -257453,20in Monitor,1,109.99,09/13/19 07:07,"852 Jackson St, Dallas, TX 75001" -257454,Apple Airpods Headphones,1,150,09/30/19 08:39,"686 Sunset St, Boston, MA 02215" -257455,Wired Headphones,1,11.99,09/07/19 17:42,"283 5th St, Austin, TX 73301" -257456,Google Phone,1,600,09/05/19 19:31,"333 Main St, Atlanta, GA 30301" -257456,USB-C Charging Cable,1,11.95,09/05/19 19:31,"333 Main St, Atlanta, GA 30301" -257457,Bose SoundSport Headphones,1,99.99,09/26/19 18:28,"45 2nd St, San Francisco, CA 94016" -257458,AA Batteries (4-pack),3,3.84,09/27/19 20:38,"81 River St, San Francisco, CA 94016" -257459,Wired Headphones,1,11.99,09/25/19 14:11,"392 Park St, San Francisco, CA 94016" -257460,USB-C Charging Cable,1,11.95,09/14/19 11:40,"116 11th St, Los Angeles, CA 90001" -257461,Apple Airpods Headphones,1,150,09/20/19 16:00,"446 2nd St, San Francisco, CA 94016" -257462,Lightning Charging Cable,1,14.95,09/17/19 00:33,"96 Adams St, Los Angeles, CA 90001" -257463,USB-C Charging Cable,2,11.95,09/23/19 21:33,"407 Dogwood St, Atlanta, GA 30301" -257464,Bose SoundSport Headphones,1,99.99,09/12/19 20:12,"324 Walnut St, Atlanta, GA 30301" -257465,Macbook Pro Laptop,1,1700,09/11/19 09:42,"686 Dogwood St, Dallas, TX 75001" -257466,iPhone,1,700,09/16/19 14:29,"876 Church St, Dallas, TX 75001" -257467,AA Batteries (4-pack),2,3.84,09/27/19 15:10,"89 Park St, San Francisco, CA 94016" -257468,Lightning Charging Cable,1,14.95,09/20/19 00:25,"912 Main St, Los Angeles, CA 90001" -257469,27in 4K Gaming Monitor,1,389.99,09/13/19 13:58,"887 Park St, Boston, MA 02215" -257470,Lightning Charging Cable,1,14.95,09/10/19 09:38,"334 Lincoln St, Los Angeles, CA 90001" -257471,Apple Airpods Headphones,1,150,09/14/19 20:18,"712 River St, Portland, OR 97035" -257472,USB-C Charging Cable,1,11.95,09/14/19 19:21,"15 10th St, New York City, NY 10001" -257473,Lightning Charging Cable,1,14.95,09/05/19 16:30,"560 Church St, New York City, NY 10001" -257474,27in 4K Gaming Monitor,1,389.99,09/14/19 22:40,"595 Cherry St, Dallas, TX 75001" -257475,Apple Airpods Headphones,1,150,09/29/19 14:23,"804 Dogwood St, Los Angeles, CA 90001" -257476,34in Ultrawide Monitor,1,379.99,09/07/19 12:07,"409 Lake St, Boston, MA 02215" -257477,Wired Headphones,1,11.99,09/08/19 18:33,"530 10th St, San Francisco, CA 94016" -257478,Wired Headphones,1,11.99,09/23/19 20:57,"401 Wilson St, Seattle, WA 98101" -257479,Flatscreen TV,1,300,09/08/19 17:02,"789 Hill St, Portland, OR 97035" -257480,Apple Airpods Headphones,1,150,09/17/19 13:33,"320 Dogwood St, Los Angeles, CA 90001" -257481,Apple Airpods Headphones,1,150,09/20/19 13:12,"829 Forest St, New York City, NY 10001" -257482,ThinkPad Laptop,1,999.99,09/10/19 21:08,"938 Johnson St, San Francisco, CA 94016" -257483,USB-C Charging Cable,1,11.95,09/14/19 13:17,"777 Walnut St, New York City, NY 10001" -257484,AA Batteries (4-pack),2,3.84,09/20/19 20:07,"694 7th St, San Francisco, CA 94016" -257485,Lightning Charging Cable,1,14.95,09/12/19 11:52,"67 11th St, Dallas, TX 75001" -257485,27in 4K Gaming Monitor,1,389.99,09/12/19 11:52,"67 11th St, Dallas, TX 75001" -257486,Wired Headphones,2,11.99,09/20/19 11:30,"281 Chestnut St, Boston, MA 02215" -257487,Flatscreen TV,1,300,09/16/19 07:50,"860 Meadow St, Dallas, TX 75001" -257488,Bose SoundSport Headphones,1,99.99,09/23/19 12:11,"863 2nd St, Boston, MA 02215" -257489,27in FHD Monitor,1,149.99,09/03/19 22:13,"310 South St, New York City, NY 10001" -257490,USB-C Charging Cable,1,11.95,09/14/19 11:47,"136 Johnson St, Los Angeles, CA 90001" -257491,20in Monitor,1,109.99,09/25/19 13:01,"167 Hickory St, Boston, MA 02215" -257492,Apple Airpods Headphones,1,150,09/12/19 18:47,"110 Spruce St, Dallas, TX 75001" -257493,AA Batteries (4-pack),2,3.84,09/16/19 08:47,"767 Chestnut St, San Francisco, CA 94016" -257494,AAA Batteries (4-pack),2,2.99,09/30/19 16:45,"41 Dogwood St, Los Angeles, CA 90001" -257495,27in 4K Gaming Monitor,1,389.99,09/16/19 10:47,"613 River St, San Francisco, CA 94016" -257496,27in FHD Monitor,1,149.99,09/07/19 11:22,"267 Meadow St, New York City, NY 10001" -257497,Lightning Charging Cable,1,14.95,09/03/19 14:50,"436 Church St, Los Angeles, CA 90001" -257498,AAA Batteries (4-pack),1,2.99,09/12/19 19:31,"213 Church St, San Francisco, CA 94016" -257498,Bose SoundSport Headphones,1,99.99,09/12/19 19:31,"213 Church St, San Francisco, CA 94016" -257499,iPhone,1,700,09/30/19 14:27,"800 Madison St, Los Angeles, CA 90001" -257500,AAA Batteries (4-pack),1,2.99,09/01/19 12:30,"632 Hickory St, Portland, OR 97035" -257501,Bose SoundSport Headphones,1,99.99,09/30/19 08:57,"666 Pine St, Los Angeles, CA 90001" -257502,Lightning Charging Cable,1,14.95,09/10/19 11:03,"191 Lakeview St, San Francisco, CA 94016" -257503,USB-C Charging Cable,1,11.95,09/30/19 07:49,"495 Willow St, Dallas, TX 75001" -257503,AA Batteries (4-pack),1,3.84,09/30/19 07:49,"495 Willow St, Dallas, TX 75001" -257504,AAA Batteries (4-pack),2,2.99,09/20/19 06:10,"907 Lake St, Seattle, WA 98101" -257505,USB-C Charging Cable,1,11.95,09/13/19 11:33,"635 2nd St, Los Angeles, CA 90001" -257506,AA Batteries (4-pack),1,3.84,09/20/19 13:22,"412 5th St, San Francisco, CA 94016" -257507,AAA Batteries (4-pack),4,2.99,09/06/19 20:41,"137 Willow St, Los Angeles, CA 90001" -257508,AAA Batteries (4-pack),1,2.99,09/21/19 22:00,"136 9th St, New York City, NY 10001" -257509,Lightning Charging Cable,2,14.95,09/02/19 14:17,"819 Forest St, Seattle, WA 98101" -257510,Apple Airpods Headphones,1,150,09/23/19 15:59,"637 8th St, Seattle, WA 98101" -257511,AAA Batteries (4-pack),1,2.99,09/15/19 11:23,"217 Jefferson St, San Francisco, CA 94016" -257512,Bose SoundSport Headphones,1,99.99,09/07/19 20:12,"814 Elm St, Seattle, WA 98101" -257513,Lightning Charging Cable,1,14.95,09/28/19 23:33,"328 Dogwood St, New York City, NY 10001" -257514,34in Ultrawide Monitor,1,379.99,09/13/19 15:12,"886 10th St, Austin, TX 73301" -257514,AA Batteries (4-pack),2,3.84,09/13/19 15:12,"886 10th St, Austin, TX 73301" -257515,AAA Batteries (4-pack),1,2.99,09/15/19 15:59,"370 Ridge St, Seattle, WA 98101" -257516,USB-C Charging Cable,1,11.95,09/09/19 05:37,"673 Chestnut St, Atlanta, GA 30301" -257517,AAA Batteries (4-pack),2,2.99,09/11/19 23:16,"10 5th St, Los Angeles, CA 90001" -257518,Google Phone,1,600,09/14/19 17:54,"581 Hill St, Austin, TX 73301" -257518,Wired Headphones,1,11.99,09/14/19 17:54,"581 Hill St, Austin, TX 73301" -257519,AA Batteries (4-pack),1,3.84,09/15/19 15:58,"518 Johnson St, Los Angeles, CA 90001" -257520,iPhone,1,700,09/07/19 01:39,"179 Wilson St, Boston, MA 02215" -257520,Apple Airpods Headphones,1,150,09/07/19 01:39,"179 Wilson St, Boston, MA 02215" -257521,AA Batteries (4-pack),1,3.84,09/11/19 12:50,"75 9th St, Seattle, WA 98101" -257522,Lightning Charging Cable,1,14.95,09/03/19 05:55,"820 Forest St, New York City, NY 10001" -257523,Lightning Charging Cable,1,14.95,09/03/19 14:10,"113 Madison St, New York City, NY 10001" -257524,USB-C Charging Cable,1,11.95,09/25/19 18:55,"66 14th St, San Francisco, CA 94016" -257525,Wired Headphones,1,11.99,09/20/19 13:19,"293 11th St, San Francisco, CA 94016" -257526,Bose SoundSport Headphones,1,99.99,09/12/19 15:41,"200 6th St, Dallas, TX 75001" -257527,Lightning Charging Cable,1,14.95,09/30/19 15:06,"906 Cherry St, San Francisco, CA 94016" -257528,USB-C Charging Cable,2,11.95,09/25/19 14:09,"208 Johnson St, Boston, MA 02215" -257529,ThinkPad Laptop,1,999.99,09/24/19 11:26,"405 Meadow St, Austin, TX 73301" -257530,USB-C Charging Cable,1,11.95,09/03/19 11:13,"192 Johnson St, San Francisco, CA 94016" -257530,USB-C Charging Cable,1,11.95,09/03/19 11:13,"192 Johnson St, San Francisco, CA 94016" -257531,iPhone,1,700,09/02/19 16:39,"524 Park St, Los Angeles, CA 90001" -257531,Lightning Charging Cable,1,14.95,09/02/19 16:39,"524 Park St, Los Angeles, CA 90001" -257532,20in Monitor,1,109.99,09/14/19 16:28,"819 Willow St, Dallas, TX 75001" -257533,ThinkPad Laptop,1,999.99,09/04/19 18:35,"865 6th St, San Francisco, CA 94016" -257534,USB-C Charging Cable,1,11.95,09/03/19 16:13,"570 Pine St, Atlanta, GA 30301" -257535,LG Washing Machine,1,600.0,09/03/19 16:29,"22 Forest St, San Francisco, CA 94016" -257536,AA Batteries (4-pack),2,3.84,09/14/19 19:44,"532 Washington St, Seattle, WA 98101" -257537,ThinkPad Laptop,1,999.99,09/01/19 17:27,"245 Cherry St, Los Angeles, CA 90001" -257538,Google Phone,1,600,09/22/19 04:37,"914 2nd St, San Francisco, CA 94016" -257538,Wired Headphones,1,11.99,09/22/19 04:37,"914 2nd St, San Francisco, CA 94016" -257539,USB-C Charging Cable,1,11.95,09/01/19 14:52,"751 Forest St, San Francisco, CA 94016" -257540,Lightning Charging Cable,1,14.95,09/12/19 22:18,"971 Lake St, Austin, TX 73301" -257541,Google Phone,1,600,09/25/19 22:05,"240 8th St, Boston, MA 02215" -257541,Bose SoundSport Headphones,1,99.99,09/25/19 22:05,"240 8th St, Boston, MA 02215" -257542,AAA Batteries (4-pack),1,2.99,09/17/19 14:27,"170 Chestnut St, Atlanta, GA 30301" -257543,Lightning Charging Cable,1,14.95,09/19/19 08:18,"625 Walnut St, Los Angeles, CA 90001" -257544,Google Phone,1,600,09/09/19 09:36,"986 Walnut St, San Francisco, CA 94016" -257545,AA Batteries (4-pack),1,3.84,09/20/19 13:38,"642 10th St, Atlanta, GA 30301" -257546,27in 4K Gaming Monitor,1,389.99,09/08/19 13:25,"785 8th St, New York City, NY 10001" -257547,USB-C Charging Cable,1,11.95,09/19/19 16:10,"551 Adams St, San Francisco, CA 94016" -257548,27in 4K Gaming Monitor,1,389.99,09/04/19 15:07,"359 Church St, Los Angeles, CA 90001" -257549,AAA Batteries (4-pack),1,2.99,09/11/19 11:39,"263 Lakeview St, San Francisco, CA 94016" -257550,AA Batteries (4-pack),1,3.84,09/09/19 14:24,"800 Cherry St, Boston, MA 02215" -257551,Lightning Charging Cable,1,14.95,09/13/19 16:09,"569 Willow St, San Francisco, CA 94016" -257552,USB-C Charging Cable,1,11.95,09/08/19 15:41,"672 Walnut St, New York City, NY 10001" -257553,27in FHD Monitor,1,149.99,09/15/19 01:24,"401 8th St, San Francisco, CA 94016" -257554,USB-C Charging Cable,1,11.95,09/11/19 01:41,"524 Hill St, San Francisco, CA 94016" -257555,Wired Headphones,1,11.99,09/08/19 09:33,"540 Park St, Los Angeles, CA 90001" -257556,Lightning Charging Cable,1,14.95,09/30/19 22:31,"483 Cedar St, San Francisco, CA 94016" -257557,AAA Batteries (4-pack),1,2.99,09/05/19 13:46,"234 Walnut St, San Francisco, CA 94016" -257558,Lightning Charging Cable,1,14.95,09/25/19 15:55,"82 Jefferson St, Los Angeles, CA 90001" -257559,27in 4K Gaming Monitor,1,389.99,09/17/19 13:06,"96 Meadow St, Los Angeles, CA 90001" -257560,Lightning Charging Cable,1,14.95,09/02/19 18:02,"879 9th St, San Francisco, CA 94016" -257561,Lightning Charging Cable,1,14.95,09/13/19 17:01,"73 Forest St, San Francisco, CA 94016" -257562,34in Ultrawide Monitor,1,379.99,09/11/19 19:49,"845 4th St, Los Angeles, CA 90001" -257563,Lightning Charging Cable,1,14.95,09/30/19 11:36,"568 Elm St, Boston, MA 02215" -257564,Bose SoundSport Headphones,1,99.99,09/20/19 17:09,"111 Main St, Boston, MA 02215" -257565,27in 4K Gaming Monitor,1,389.99,09/14/19 15:03,"328 Church St, San Francisco, CA 94016" -257566,AAA Batteries (4-pack),3,2.99,09/27/19 10:14,"340 7th St, Los Angeles, CA 90001" -257567,AA Batteries (4-pack),1,3.84,09/26/19 12:42,"173 Cherry St, New York City, NY 10001" -257568,Apple Airpods Headphones,1,150,09/03/19 11:00,"449 North St, San Francisco, CA 94016" -257569,AAA Batteries (4-pack),1,2.99,09/22/19 11:28,"501 Main St, San Francisco, CA 94016" -257570,Macbook Pro Laptop,1,1700,09/17/19 16:17,"460 Dogwood St, Boston, MA 02215" -257571,Macbook Pro Laptop,1,1700,09/24/19 02:36,"126 Forest St, Atlanta, GA 30301" -257572,Apple Airpods Headphones,1,150,09/22/19 13:09,"734 Main St, San Francisco, CA 94016" -257573,27in FHD Monitor,1,149.99,09/29/19 16:13,"595 Madison St, Atlanta, GA 30301" -257574,USB-C Charging Cable,1,11.95,09/20/19 10:59,"645 6th St, New York City, NY 10001" -257575,AA Batteries (4-pack),1,3.84,09/29/19 15:22,"990 Center St, Boston, MA 02215" -257576,USB-C Charging Cable,1,11.95,09/07/19 15:33,"819 Chestnut St, San Francisco, CA 94016" -257577,Wired Headphones,1,11.99,09/20/19 16:03,"410 Lincoln St, Seattle, WA 98101" -257578,Bose SoundSport Headphones,1,99.99,09/26/19 09:42,"148 Chestnut St, Atlanta, GA 30301" -257579,Apple Airpods Headphones,1,150,09/13/19 19:35,"512 14th St, Atlanta, GA 30301" -257580,20in Monitor,1,109.99,09/29/19 09:24,"287 13th St, Austin, TX 73301" -257581,AAA Batteries (4-pack),1,2.99,09/02/19 12:08,"436 6th St, San Francisco, CA 94016" -257582,Google Phone,1,600,09/20/19 10:06,"600 Spruce St, Boston, MA 02215" -257582,USB-C Charging Cable,1,11.95,09/20/19 10:06,"600 Spruce St, Boston, MA 02215" -257583,34in Ultrawide Monitor,1,379.99,09/02/19 23:42,"862 Hickory St, Los Angeles, CA 90001" -257584,Bose SoundSport Headphones,1,99.99,09/22/19 06:30,"169 10th St, San Francisco, CA 94016" -257585,LG Washing Machine,1,600.0,09/05/19 13:10,"2 8th St, Austin, TX 73301" -257586,USB-C Charging Cable,1,11.95,09/23/19 22:32,"438 Meadow St, Austin, TX 73301" -257587,Bose SoundSport Headphones,1,99.99,09/21/19 18:52,"528 Cherry St, Dallas, TX 75001" -257588,Lightning Charging Cable,1,14.95,09/10/19 09:46,"551 West St, New York City, NY 10001" -257589,27in 4K Gaming Monitor,1,389.99,09/13/19 21:06,"536 Spruce St, Los Angeles, CA 90001" -257590,Lightning Charging Cable,1,14.95,09/29/19 20:36,"246 Park St, New York City, NY 10001" -257591,AAA Batteries (4-pack),1,2.99,09/09/19 20:45,"981 Highland St, Los Angeles, CA 90001" -257592,USB-C Charging Cable,1,11.95,09/23/19 14:03,"393 Sunset St, New York City, NY 10001" -257593,AA Batteries (4-pack),1,3.84,09/18/19 17:03,"527 Forest St, San Francisco, CA 94016" -257594,iPhone,1,700,09/29/19 18:22,"865 Park St, San Francisco, CA 94016" -257595,Flatscreen TV,1,300,09/19/19 17:06,"979 Hickory St, Boston, MA 02215" -257596,USB-C Charging Cable,1,11.95,09/01/19 13:06,"455 12th St, New York City, NY 10001" -257597,USB-C Charging Cable,1,11.95,09/28/19 16:40,"500 10th St, Austin, TX 73301" -257598,27in FHD Monitor,1,149.99,09/10/19 12:18,"748 South St, Seattle, WA 98101" -257599,AAA Batteries (4-pack),1,2.99,09/25/19 19:48,"859 South St, Seattle, WA 98101" -257600,ThinkPad Laptop,1,999.99,09/25/19 13:26,"172 Wilson St, Los Angeles, CA 90001" -257601,34in Ultrawide Monitor,1,379.99,09/07/19 18:48,"587 12th St, Austin, TX 73301" -257602,Lightning Charging Cable,1,14.95,09/14/19 01:40,"320 South St, Boston, MA 02215" -,,,,, -257603,27in FHD Monitor,1,149.99,09/27/19 19:37,"860 Chestnut St, San Francisco, CA 94016" -257604,AAA Batteries (4-pack),1,2.99,09/02/19 15:38,"449 Washington St, New York City, NY 10001" -257605,USB-C Charging Cable,1,11.95,09/21/19 09:29,"735 Spruce St, Portland, OR 97035" -257606,USB-C Charging Cable,1,11.95,09/26/19 21:33,"2 North St, San Francisco, CA 94016" -257607,Wired Headphones,1,11.99,09/08/19 11:07,"573 Forest St, New York City, NY 10001" -257608,Bose SoundSport Headphones,1,99.99,09/27/19 10:20,"176 10th St, San Francisco, CA 94016" -257609,Lightning Charging Cable,1,14.95,09/08/19 18:11,"154 Jefferson St, Boston, MA 02215" -257610,27in FHD Monitor,2,149.99,09/27/19 17:38,"529 Hill St, San Francisco, CA 94016" -257611,USB-C Charging Cable,1,11.95,09/19/19 19:18,"581 Meadow St, Los Angeles, CA 90001" -257612,27in 4K Gaming Monitor,1,389.99,09/09/19 20:55,"389 14th St, Austin, TX 73301" -257613,27in 4K Gaming Monitor,1,389.99,09/30/19 15:49,"731 11th St, New York City, NY 10001" -257614,Bose SoundSport Headphones,1,99.99,09/08/19 19:56,"871 North St, Los Angeles, CA 90001" -257615,Wired Headphones,1,11.99,09/28/19 10:45,"455 Forest St, San Francisco, CA 94016" -257616,Wired Headphones,1,11.99,09/16/19 19:43,"116 Lincoln St, San Francisco, CA 94016" -257617,Apple Airpods Headphones,1,150,09/19/19 14:08,"53 1st St, New York City, NY 10001" -257618,34in Ultrawide Monitor,1,379.99,09/08/19 12:24,"68 Spruce St, Boston, MA 02215" -257619,Bose SoundSport Headphones,1,99.99,09/01/19 22:12,"566 Hickory St, Austin, TX 73301" -257620,34in Ultrawide Monitor,1,379.99,09/21/19 18:14,"293 1st St, Seattle, WA 98101" -257621,AAA Batteries (4-pack),1,2.99,09/06/19 07:26,"395 Cedar St, Austin, TX 73301" -257622,Lightning Charging Cable,1,14.95,09/03/19 23:26,"934 9th St, San Francisco, CA 94016" -257623,USB-C Charging Cable,1,11.95,09/12/19 08:11,"247 4th St, Los Angeles, CA 90001" -257624,AA Batteries (4-pack),1,3.84,09/06/19 19:53,"562 Maple St, Boston, MA 02215" -257625,ThinkPad Laptop,1,999.99,09/17/19 10:16,"377 Adams St, Los Angeles, CA 90001" -257626,Vareebadd Phone,1,400,09/29/19 11:21,"547 Highland St, Los Angeles, CA 90001" -257627,AAA Batteries (4-pack),1,2.99,09/22/19 20:25,"385 Lincoln St, Los Angeles, CA 90001" -257628,AAA Batteries (4-pack),1,2.99,09/16/19 06:52,"385 Lake St, Atlanta, GA 30301" -257629,Apple Airpods Headphones,1,150,09/19/19 09:49,"746 Maple St, San Francisco, CA 94016" -257630,AA Batteries (4-pack),1,3.84,09/15/19 22:36,"750 Sunset St, Dallas, TX 75001" -257631,Bose SoundSport Headphones,1,99.99,09/14/19 20:34,"658 River St, Atlanta, GA 30301" -257632,USB-C Charging Cable,1,11.95,09/01/19 11:27,"792 Cedar St, New York City, NY 10001" -257633,iPhone,1,700,09/12/19 08:37,"308 Jackson St, Seattle, WA 98101" -257633,Wired Headphones,1,11.99,09/12/19 08:37,"308 Jackson St, Seattle, WA 98101" -257634,Flatscreen TV,1,300,09/12/19 16:25,"541 Elm St, Dallas, TX 75001" -257635,Wired Headphones,1,11.99,09/18/19 16:50,"824 Main St, San Francisco, CA 94016" -257636,USB-C Charging Cable,1,11.95,09/18/19 14:20,"234 Lakeview St, Los Angeles, CA 90001" -257637,AAA Batteries (4-pack),1,2.99,09/02/19 08:10,"422 Cherry St, Boston, MA 02215" -257638,Wired Headphones,1,11.99,09/24/19 17:00,"440 Sunset St, Los Angeles, CA 90001" -257639,AA Batteries (4-pack),1,3.84,09/19/19 16:08,"690 Highland St, Seattle, WA 98101" -257640,Wired Headphones,1,11.99,09/21/19 17:05,"893 10th St, Portland, OR 97035" -257641,Lightning Charging Cable,1,14.95,09/17/19 14:22,"747 Jefferson St, New York City, NY 10001" -257641,Flatscreen TV,1,300,09/17/19 14:22,"747 Jefferson St, New York City, NY 10001" -257642,Bose SoundSport Headphones,1,99.99,09/28/19 21:07,"262 Hill St, Boston, MA 02215" -257643,USB-C Charging Cable,1,11.95,09/01/19 14:16,"14 Lincoln St, Los Angeles, CA 90001" -257644,27in 4K Gaming Monitor,1,389.99,09/25/19 15:48,"783 Washington St, Boston, MA 02215" -257645,34in Ultrawide Monitor,1,379.99,09/21/19 17:53,"225 13th St, Seattle, WA 98101" -257646,iPhone,1,700,09/23/19 19:12,"532 Pine St, Dallas, TX 75001" -257647,Macbook Pro Laptop,1,1700,09/30/19 17:02,"849 Maple St, Boston, MA 02215" -257648,AA Batteries (4-pack),2,3.84,09/03/19 17:43,"396 Cherry St, Seattle, WA 98101" -257649,Lightning Charging Cable,2,14.95,09/16/19 22:09,"707 Lake St, New York City, NY 10001" -257650,USB-C Charging Cable,1,11.95,09/20/19 20:20,"37 Maple St, Boston, MA 02215" -257651,20in Monitor,1,109.99,09/29/19 21:31,"764 Hickory St, New York City, NY 10001" -257652,Lightning Charging Cable,1,14.95,09/23/19 16:43,"303 North St, San Francisco, CA 94016" -257653,AA Batteries (4-pack),2,3.84,09/19/19 19:17,"695 Hickory St, Portland, ME 04101" -257654,Lightning Charging Cable,1,14.95,09/06/19 13:26,"152 Wilson St, San Francisco, CA 94016" -257655,AA Batteries (4-pack),1,3.84,09/11/19 09:38,"582 Jefferson St, Seattle, WA 98101" -257656,Apple Airpods Headphones,1,150,09/13/19 12:01,"417 North St, Austin, TX 73301" -257657,Lightning Charging Cable,1,14.95,09/21/19 10:53,"473 Elm St, Dallas, TX 75001" -257658,AAA Batteries (4-pack),1,2.99,09/18/19 11:50,"335 4th St, Los Angeles, CA 90001" -257659,Wired Headphones,1,11.99,09/18/19 17:05,"486 8th St, New York City, NY 10001" -257660,USB-C Charging Cable,2,11.95,09/09/19 11:30,"494 Lincoln St, New York City, NY 10001" -257661,AA Batteries (4-pack),1,3.84,09/08/19 20:30,"50 6th St, Los Angeles, CA 90001" -257662,Lightning Charging Cable,1,14.95,09/13/19 18:03,"158 11th St, San Francisco, CA 94016" -257663,Lightning Charging Cable,1,14.95,09/14/19 13:10,"464 Spruce St, Los Angeles, CA 90001" -257664,Apple Airpods Headphones,1,150,09/09/19 12:23,"496 Center St, New York City, NY 10001" -257665,Lightning Charging Cable,1,14.95,09/15/19 15:17,"499 Willow St, New York City, NY 10001" -257666,27in FHD Monitor,1,149.99,09/02/19 19:21,"406 Main St, New York City, NY 10001" -257667,Lightning Charging Cable,1,14.95,09/27/19 09:52,"93 Highland St, Dallas, TX 75001" -257668,Lightning Charging Cable,1,14.95,09/26/19 20:50,"955 Willow St, San Francisco, CA 94016" -257669,USB-C Charging Cable,1,11.95,09/14/19 20:07,"776 4th St, Portland, OR 97035" -257670,USB-C Charging Cable,1,11.95,09/26/19 09:52,"666 Lincoln St, Seattle, WA 98101" -257671,USB-C Charging Cable,1,11.95,09/14/19 19:35,"73 West St, San Francisco, CA 94016" -257672,Lightning Charging Cable,1,14.95,09/23/19 23:04,"611 Willow St, New York City, NY 10001" -257673,Wired Headphones,1,11.99,09/04/19 09:06,"792 Ridge St, Portland, ME 04101" -257674,Apple Airpods Headphones,1,150,09/30/19 13:33,"233 9th St, San Francisco, CA 94016" -257675,USB-C Charging Cable,1,11.95,09/20/19 20:08,"698 Jackson St, San Francisco, CA 94016" -257676,Macbook Pro Laptop,1,1700,09/18/19 14:50,"641 Lincoln St, Atlanta, GA 30301" -257677,iPhone,1,700,09/19/19 21:09,"282 1st St, Dallas, TX 75001" -257678,Bose SoundSport Headphones,1,99.99,09/11/19 17:54,"460 Chestnut St, San Francisco, CA 94016" -257679,AA Batteries (4-pack),3,3.84,09/29/19 16:20,"318 9th St, Dallas, TX 75001" -257680,ThinkPad Laptop,1,999.99,09/09/19 16:42,"931 Center St, Austin, TX 73301" -257681,USB-C Charging Cable,1,11.95,09/09/19 11:39,"600 Adams St, Austin, TX 73301" -257682,USB-C Charging Cable,1,11.95,09/09/19 18:05,"229 Jefferson St, San Francisco, CA 94016" -,,,,, -257683,iPhone,1,700,09/13/19 08:55,"931 11th St, Atlanta, GA 30301" -257684,Macbook Pro Laptop,1,1700,09/30/19 14:24,"422 Forest St, Los Angeles, CA 90001" -257685,USB-C Charging Cable,1,11.95,09/26/19 03:27,"539 Main St, Los Angeles, CA 90001" -257686,iPhone,1,700,09/25/19 02:25,"819 Cherry St, San Francisco, CA 94016" -257687,USB-C Charging Cable,1,11.95,09/20/19 18:04,"161 9th St, Atlanta, GA 30301" -257688,USB-C Charging Cable,1,11.95,09/04/19 18:29,"913 Forest St, San Francisco, CA 94016" -257689,AA Batteries (4-pack),1,3.84,09/03/19 11:10,"908 Elm St, San Francisco, CA 94016" -257690,27in FHD Monitor,1,149.99,09/12/19 18:41,"968 Church St, Dallas, TX 75001" -257691,Bose SoundSport Headphones,1,99.99,09/17/19 13:17,"222 Spruce St, Los Angeles, CA 90001" -257692,USB-C Charging Cable,1,11.95,09/17/19 10:33,"321 9th St, Portland, OR 97035" -257693,Wired Headphones,1,11.99,09/16/19 20:49,"902 12th St, Boston, MA 02215" -257694,USB-C Charging Cable,1,11.95,09/16/19 13:50,"23 Highland St, San Francisco, CA 94016" -257695,Wired Headphones,1,11.99,09/15/19 12:02,"181 Jefferson St, New York City, NY 10001" -257696,Wired Headphones,1,11.99,09/13/19 14:19,"705 Lincoln St, Atlanta, GA 30301" -257697,Apple Airpods Headphones,1,150,09/10/19 03:12,"418 Jackson St, Los Angeles, CA 90001" -257698,Macbook Pro Laptop,1,1700,09/21/19 16:59,"932 Lakeview St, Los Angeles, CA 90001" -257699,Apple Airpods Headphones,1,150,09/25/19 11:21,"115 Hickory St, Dallas, TX 75001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -257700,Wired Headphones,1,11.99,09/09/19 09:39,"527 Spruce St, Portland, OR 97035" -257701,AA Batteries (4-pack),1,3.84,09/04/19 18:24,"115 Highland St, Los Angeles, CA 90001" -257702,AAA Batteries (4-pack),1,2.99,09/11/19 18:04,"119 13th St, San Francisco, CA 94016" -257703,Flatscreen TV,1,300,09/14/19 15:30,"66 9th St, Austin, TX 73301" -257704,AA Batteries (4-pack),2,3.84,09/13/19 13:44,"822 Forest St, New York City, NY 10001" -257705,Google Phone,1,600,09/04/19 19:38,"845 Lakeview St, Boston, MA 02215" -257705,Wired Headphones,1,11.99,09/04/19 19:38,"845 Lakeview St, Boston, MA 02215" -257706,iPhone,1,700,09/09/19 19:12,"247 South St, New York City, NY 10001" -257707,34in Ultrawide Monitor,1,379.99,09/30/19 13:36,"493 Chestnut St, Seattle, WA 98101" -257708,Apple Airpods Headphones,1,150,09/03/19 20:17,"550 River St, San Francisco, CA 94016" -257709,20in Monitor,1,109.99,09/13/19 00:32,"131 13th St, Dallas, TX 75001" -257710,27in 4K Gaming Monitor,1,389.99,09/25/19 02:09,"777 Center St, New York City, NY 10001" -257711,USB-C Charging Cable,1,11.95,09/27/19 17:15,"261 Lakeview St, San Francisco, CA 94016" -257712,USB-C Charging Cable,1,11.95,09/02/19 00:09,"264 Adams St, San Francisco, CA 94016" -257713,AAA Batteries (4-pack),1,2.99,09/20/19 23:18,"204 Pine St, Boston, MA 02215" -257714,20in Monitor,1,109.99,09/25/19 09:30,"134 Church St, San Francisco, CA 94016" -257715,34in Ultrawide Monitor,1,379.99,09/23/19 23:33,"871 Ridge St, New York City, NY 10001" -257716,Vareebadd Phone,1,400,09/20/19 20:09,"293 River St, San Francisco, CA 94016" -257717,Apple Airpods Headphones,1,150,09/16/19 15:25,"147 Jefferson St, Seattle, WA 98101" -257718,iPhone,1,700,09/13/19 23:32,"548 Walnut St, San Francisco, CA 94016" -257719,AAA Batteries (4-pack),1,2.99,09/28/19 14:18,"33 12th St, Atlanta, GA 30301" -257720,Lightning Charging Cable,1,14.95,09/28/19 12:25,"320 Sunset St, Portland, OR 97035" -257721,AAA Batteries (4-pack),1,2.99,09/21/19 19:38,"995 10th St, Los Angeles, CA 90001" -257722,AA Batteries (4-pack),1,3.84,09/24/19 23:26,"169 12th St, San Francisco, CA 94016" -257723,Google Phone,1,600,09/12/19 19:00,"951 Wilson St, San Francisco, CA 94016" -257723,USB-C Charging Cable,1,11.95,09/12/19 19:00,"951 Wilson St, San Francisco, CA 94016" -257724,AA Batteries (4-pack),1,3.84,09/27/19 11:16,"82 Jackson St, New York City, NY 10001" -257725,Apple Airpods Headphones,1,150,09/01/19 08:38,"460 6th St, San Francisco, CA 94016" -257726,AAA Batteries (4-pack),2,2.99,09/14/19 13:52,"381 14th St, San Francisco, CA 94016" -257727,Google Phone,1,600,09/02/19 09:52,"890 12th St, Seattle, WA 98101" -257727,USB-C Charging Cable,1,11.95,09/02/19 09:52,"890 12th St, Seattle, WA 98101" -257728,27in 4K Gaming Monitor,1,389.99,09/21/19 12:31,"733 Walnut St, New York City, NY 10001" -257729,Apple Airpods Headphones,1,150,09/08/19 22:29,"821 Church St, Atlanta, GA 30301" -257730,iPhone,1,700,09/11/19 11:52,"325 Jefferson St, Seattle, WA 98101" -257731,AAA Batteries (4-pack),2,2.99,09/17/19 19:47,"203 1st St, Portland, OR 97035" -257732,USB-C Charging Cable,1,11.95,09/10/19 14:00,"990 Elm St, Los Angeles, CA 90001" -257733,20in Monitor,1,109.99,09/05/19 22:32,"753 14th St, San Francisco, CA 94016" -257734,Wired Headphones,1,11.99,09/13/19 23:36,"22 Church St, Los Angeles, CA 90001" -257735,USB-C Charging Cable,1,11.95,09/05/19 18:36,"947 Meadow St, New York City, NY 10001" -257736,Wired Headphones,2,11.99,09/10/19 23:16,"757 Madison St, New York City, NY 10001" -257737,Lightning Charging Cable,1,14.95,09/19/19 13:56,"972 7th St, Seattle, WA 98101" -257738,Macbook Pro Laptop,1,1700,09/18/19 21:42,"66 Washington St, Austin, TX 73301" -257739,USB-C Charging Cable,1,11.95,09/16/19 12:28,"330 Elm St, New York City, NY 10001" -257740,AAA Batteries (4-pack),1,2.99,09/25/19 13:10,"530 South St, Boston, MA 02215" -257741,Wired Headphones,1,11.99,09/19/19 15:33,"376 13th St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -257742,27in 4K Gaming Monitor,1,389.99,09/26/19 14:20,"608 1st St, New York City, NY 10001" -257743,Lightning Charging Cable,1,14.95,09/01/19 16:22,"813 Lake St, San Francisco, CA 94016" -257744,Flatscreen TV,1,300,09/29/19 15:56,"630 Main St, San Francisco, CA 94016" -257745,34in Ultrawide Monitor,1,379.99,09/29/19 11:00,"25 Park St, Seattle, WA 98101" -257746,34in Ultrawide Monitor,1,379.99,09/16/19 21:28,"913 Adams St, San Francisco, CA 94016" -257747,USB-C Charging Cable,1,11.95,09/08/19 19:02,"889 Dogwood St, Dallas, TX 75001" -257748,Lightning Charging Cable,1,14.95,09/19/19 21:02,"706 Park St, Los Angeles, CA 90001" -257749,34in Ultrawide Monitor,1,379.99,09/02/19 09:58,"296 Spruce St, Boston, MA 02215" -257750,AAA Batteries (4-pack),1,2.99,09/06/19 23:40,"596 Washington St, Atlanta, GA 30301" -257751,AA Batteries (4-pack),2,3.84,09/20/19 23:32,"882 Forest St, New York City, NY 10001" -257752,27in 4K Gaming Monitor,1,389.99,09/07/19 19:52,"943 River St, Atlanta, GA 30301" -,,,,, -257753,Wired Headphones,1,11.99,09/02/19 14:22,"90 Sunset St, Seattle, WA 98101" -257754,Lightning Charging Cable,1,14.95,09/28/19 20:52,"167 Sunset St, New York City, NY 10001" -257755,Apple Airpods Headphones,1,150,09/10/19 19:36,"918 10th St, San Francisco, CA 94016" -257756,Wired Headphones,1,11.99,09/02/19 10:47,"394 Chestnut St, Los Angeles, CA 90001" -257757,34in Ultrawide Monitor,1,379.99,09/02/19 16:47,"605 Jefferson St, Los Angeles, CA 90001" -257758,27in FHD Monitor,1,149.99,09/05/19 13:56,"292 Church St, Seattle, WA 98101" -257759,27in FHD Monitor,1,149.99,09/20/19 13:07,"853 Forest St, Austin, TX 73301" -257760,AA Batteries (4-pack),1,3.84,09/26/19 22:13,"180 4th St, Dallas, TX 75001" -257761,USB-C Charging Cable,1,11.95,09/10/19 19:02,"809 8th St, Portland, OR 97035" -257762,34in Ultrawide Monitor,1,379.99,09/11/19 17:38,"617 Cherry St, New York City, NY 10001" -257763,27in FHD Monitor,1,149.99,09/25/19 13:31,"357 5th St, New York City, NY 10001" -257764,USB-C Charging Cable,1,11.95,09/23/19 12:31,"894 Sunset St, Dallas, TX 75001" -257764,AAA Batteries (4-pack),2,2.99,09/23/19 12:31,"894 Sunset St, Dallas, TX 75001" -257765,Lightning Charging Cable,1,14.95,09/09/19 21:37,"421 Washington St, San Francisco, CA 94016" -257766,iPhone,1,700,09/28/19 11:10,"434 South St, Seattle, WA 98101" -257767,Apple Airpods Headphones,1,150,09/15/19 02:34,"50 Walnut St, Seattle, WA 98101" -257768,Macbook Pro Laptop,1,1700,09/05/19 18:01,"314 Highland St, Los Angeles, CA 90001" -257769,Lightning Charging Cable,2,14.95,09/14/19 16:29,"135 5th St, Seattle, WA 98101" -257770,Bose SoundSport Headphones,1,99.99,09/18/19 23:15,"116 Lake St, Los Angeles, CA 90001" -257771,Lightning Charging Cable,1,14.95,09/17/19 10:42,"373 North St, Portland, ME 04101" -257772,Apple Airpods Headphones,1,150,09/11/19 16:23,"55 Cedar St, Atlanta, GA 30301" -257773,27in 4K Gaming Monitor,1,389.99,09/06/19 10:32,"182 9th St, Austin, TX 73301" -257774,AA Batteries (4-pack),1,3.84,09/18/19 00:15,"269 1st St, New York City, NY 10001" -257775,AA Batteries (4-pack),2,3.84,09/27/19 18:04,"864 6th St, New York City, NY 10001" -257776,27in 4K Gaming Monitor,1,389.99,09/15/19 08:09,"845 River St, San Francisco, CA 94016" -257777,Lightning Charging Cable,1,14.95,09/07/19 21:56,"212 Highland St, Los Angeles, CA 90001" -257778,Lightning Charging Cable,1,14.95,09/08/19 16:19,"280 4th St, San Francisco, CA 94016" -257779,Lightning Charging Cable,1,14.95,09/02/19 23:18,"505 Lincoln St, Dallas, TX 75001" -257780,iPhone,1,700,09/10/19 18:47,"458 Cherry St, New York City, NY 10001" -257780,Wired Headphones,1,11.99,09/10/19 18:47,"458 Cherry St, New York City, NY 10001" -257781,AA Batteries (4-pack),3,3.84,09/19/19 09:09,"409 Forest St, Boston, MA 02215" -257782,Lightning Charging Cable,1,14.95,09/03/19 19:17,"530 Elm St, New York City, NY 10001" -257783,34in Ultrawide Monitor,1,379.99,09/21/19 21:26,"678 Dogwood St, Seattle, WA 98101" -257784,Lightning Charging Cable,1,14.95,09/19/19 19:52,"312 Cherry St, Los Angeles, CA 90001" -257785,Flatscreen TV,1,300,09/28/19 21:54,"231 Willow St, Los Angeles, CA 90001" -257786,AAA Batteries (4-pack),1,2.99,09/04/19 10:01,"104 Spruce St, Los Angeles, CA 90001" -257787,Wired Headphones,1,11.99,09/21/19 13:21,"48 River St, Portland, OR 97035" -257788,Apple Airpods Headphones,1,150,09/25/19 06:58,"772 South St, Los Angeles, CA 90001" -257789,Apple Airpods Headphones,1,150,09/03/19 12:46,"320 West St, Dallas, TX 75001" -257790,27in 4K Gaming Monitor,1,389.99,09/21/19 21:28,"366 Sunset St, Seattle, WA 98101" -257791,27in 4K Gaming Monitor,1,389.99,09/10/19 08:19,"981 5th St, San Francisco, CA 94016" -257792,Lightning Charging Cable,1,14.95,09/07/19 10:27,"371 Dogwood St, New York City, NY 10001" -257793,AA Batteries (4-pack),1,3.84,09/15/19 06:45,"822 Hickory St, Portland, OR 97035" -257794,AA Batteries (4-pack),1,3.84,09/05/19 17:20,"903 4th St, Dallas, TX 75001" -257795,AA Batteries (4-pack),1,3.84,09/13/19 23:13,"655 2nd St, Atlanta, GA 30301" -257796,AAA Batteries (4-pack),3,2.99,09/07/19 16:00,"809 4th St, San Francisco, CA 94016" -257796,iPhone,1,700,09/07/19 16:00,"809 4th St, San Francisco, CA 94016" -257797,Google Phone,1,600,09/24/19 19:00,"840 West St, San Francisco, CA 94016" -257798,27in 4K Gaming Monitor,1,389.99,09/17/19 14:21,"245 11th St, Atlanta, GA 30301" -257799,Apple Airpods Headphones,1,150,09/24/19 23:27,"460 10th St, Seattle, WA 98101" -257800,Wired Headphones,1,11.99,09/22/19 22:23,"423 Lakeview St, Dallas, TX 75001" -257801,Wired Headphones,1,11.99,09/28/19 08:51,"469 Center St, New York City, NY 10001" -257802,Macbook Pro Laptop,1,1700,09/13/19 17:06,"948 Park St, Dallas, TX 75001" -257803,Wired Headphones,1,11.99,09/30/19 22:47,"994 9th St, Boston, MA 02215" -257804,AAA Batteries (4-pack),1,2.99,09/25/19 20:06,"157 10th St, San Francisco, CA 94016" -257805,Lightning Charging Cable,1,14.95,09/27/19 00:16,"504 Wilson St, Los Angeles, CA 90001" -257806,27in 4K Gaming Monitor,1,389.99,09/10/19 08:38,"493 Church St, San Francisco, CA 94016" -257807,AA Batteries (4-pack),1,3.84,09/10/19 10:54,"978 South St, Atlanta, GA 30301" -257808,Apple Airpods Headphones,1,150,09/23/19 23:55,"459 9th St, Boston, MA 02215" -257809,AAA Batteries (4-pack),2,2.99,09/10/19 22:16,"579 Johnson St, Atlanta, GA 30301" -257810,USB-C Charging Cable,1,11.95,09/17/19 21:55,"205 Jackson St, Boston, MA 02215" -257811,AA Batteries (4-pack),1,3.84,09/11/19 05:49,"230 6th St, San Francisco, CA 94016" -257812,AA Batteries (4-pack),1,3.84,09/11/19 17:59,"233 8th St, San Francisco, CA 94016" -257813,Apple Airpods Headphones,1,150,09/21/19 08:38,"727 Forest St, Atlanta, GA 30301" -257814,20in Monitor,1,109.99,09/17/19 08:58,"113 Jackson St, San Francisco, CA 94016" -257815,Macbook Pro Laptop,1,1700,09/23/19 14:13,"809 Maple St, Portland, ME 04101" -257816,Wired Headphones,1,11.99,09/05/19 15:18,"361 10th St, Portland, OR 97035" -257817,20in Monitor,1,109.99,09/21/19 19:40,"102 Ridge St, Dallas, TX 75001" -257818,AA Batteries (4-pack),1,3.84,09/03/19 19:06,"752 Lincoln St, Los Angeles, CA 90001" -257819,Wired Headphones,1,11.99,09/09/19 18:30,"298 8th St, Portland, OR 97035" -257820,Lightning Charging Cable,1,14.95,09/06/19 15:04,"595 Hickory St, Atlanta, GA 30301" -257821,34in Ultrawide Monitor,1,379.99,09/12/19 18:44,"27 Center St, New York City, NY 10001" -257822,Lightning Charging Cable,1,14.95,09/02/19 14:32,"394 River St, Portland, ME 04101" -257823,USB-C Charging Cable,1,11.95,09/11/19 21:06,"964 4th St, San Francisco, CA 94016" -257824,27in FHD Monitor,1,149.99,09/12/19 00:12,"689 Lincoln St, Atlanta, GA 30301" -257825,Lightning Charging Cable,2,14.95,09/11/19 17:39,"548 Sunset St, San Francisco, CA 94016" -257826,AAA Batteries (4-pack),1,2.99,09/24/19 09:47,"19 8th St, Austin, TX 73301" -257827,Bose SoundSport Headphones,1,99.99,09/19/19 17:59,"611 12th St, San Francisco, CA 94016" -257828,Macbook Pro Laptop,1,1700,09/02/19 21:27,"525 Wilson St, New York City, NY 10001" -257829,AAA Batteries (4-pack),1,2.99,09/12/19 19:17,"738 Washington St, San Francisco, CA 94016" -257830,AAA Batteries (4-pack),1,2.99,09/13/19 23:56,"547 Cherry St, Portland, OR 97035" -257831,Google Phone,1,600,09/08/19 10:36,"457 West St, Dallas, TX 75001" -257832,AA Batteries (4-pack),1,3.84,09/10/19 05:41,"596 13th St, Los Angeles, CA 90001" -257833,Wired Headphones,2,11.99,09/28/19 08:14,"644 Church St, Los Angeles, CA 90001" -257834,Bose SoundSport Headphones,1,99.99,09/29/19 10:29,"603 Chestnut St, Seattle, WA 98101" -257835,USB-C Charging Cable,1,11.95,09/30/19 11:29,"604 Walnut St, New York City, NY 10001" -257836,Macbook Pro Laptop,1,1700,09/26/19 19:21,"167 2nd St, Atlanta, GA 30301" -257837,AA Batteries (4-pack),2,3.84,09/27/19 19:23,"435 Jackson St, San Francisco, CA 94016" -257838,Lightning Charging Cable,1,14.95,09/02/19 17:30,"42 Washington St, Los Angeles, CA 90001" -257839,USB-C Charging Cable,1,11.95,09/26/19 08:35,"304 Sunset St, Los Angeles, CA 90001" -257840,AAA Batteries (4-pack),1,2.99,09/29/19 17:28,"18 Adams St, Atlanta, GA 30301" -257841,34in Ultrawide Monitor,1,379.99,09/04/19 18:38,"43 Forest St, Seattle, WA 98101" -257842,20in Monitor,1,109.99,09/27/19 06:40,"254 Adams St, Los Angeles, CA 90001" -257843,AA Batteries (4-pack),1,3.84,09/26/19 08:02,"560 River St, Atlanta, GA 30301" -257844,ThinkPad Laptop,1,999.99,09/11/19 23:18,"281 Maple St, Los Angeles, CA 90001" -257845,20in Monitor,1,109.99,09/29/19 16:03,"235 Meadow St, San Francisco, CA 94016" -257846,Wired Headphones,1,11.99,09/26/19 23:59,"716 Park St, Boston, MA 02215" -257847,Lightning Charging Cable,1,14.95,09/30/19 12:17,"577 Washington St, New York City, NY 10001" -257848,Apple Airpods Headphones,1,150,09/27/19 15:27,"430 Lincoln St, Seattle, WA 98101" -257849,USB-C Charging Cable,1,11.95,09/24/19 20:27,"477 Hickory St, New York City, NY 10001" -257850,Macbook Pro Laptop,1,1700,09/19/19 15:31,"905 Madison St, Austin, TX 73301" -257851,AAA Batteries (4-pack),1,2.99,09/01/19 19:54,"638 1st St, Austin, TX 73301" -257852,USB-C Charging Cable,1,11.95,09/29/19 21:04,"86 Lake St, Austin, TX 73301" -257853,Flatscreen TV,1,300,09/15/19 10:08,"674 10th St, Seattle, WA 98101" -257854,USB-C Charging Cable,1,11.95,09/13/19 12:55,"963 Elm St, Portland, ME 04101" -257855,Bose SoundSport Headphones,1,99.99,09/11/19 12:03,"798 Cherry St, Seattle, WA 98101" -257856,AA Batteries (4-pack),3,3.84,09/27/19 15:17,"218 Highland St, San Francisco, CA 94016" -257857,USB-C Charging Cable,1,11.95,09/13/19 17:09,"924 Highland St, Los Angeles, CA 90001" -257858,AA Batteries (4-pack),1,3.84,09/03/19 20:20,"441 Hickory St, Austin, TX 73301" -257859,Google Phone,1,600,09/17/19 20:21,"941 Pine St, Los Angeles, CA 90001" -257859,USB-C Charging Cable,1,11.95,09/17/19 20:21,"941 Pine St, Los Angeles, CA 90001" -257860,AA Batteries (4-pack),1,3.84,09/20/19 16:47,"288 Cherry St, San Francisco, CA 94016" -257861,Bose SoundSport Headphones,1,99.99,09/17/19 11:39,"618 Hill St, Austin, TX 73301" -257862,AAA Batteries (4-pack),5,2.99,09/20/19 21:40,"589 8th St, Los Angeles, CA 90001" -257863,27in FHD Monitor,1,149.99,09/30/19 23:03,"57 Adams St, Atlanta, GA 30301" -257864,Flatscreen TV,1,300,09/19/19 17:16,"935 Washington St, San Francisco, CA 94016" -257865,AA Batteries (4-pack),2,3.84,09/04/19 11:50,"945 7th St, Portland, OR 97035" -257866,Google Phone,1,600,09/11/19 20:44,"670 Main St, Seattle, WA 98101" -257867,USB-C Charging Cable,1,11.95,09/15/19 11:05,"279 2nd St, New York City, NY 10001" -257868,Lightning Charging Cable,1,14.95,09/25/19 22:18,"213 8th St, San Francisco, CA 94016" -257869,Apple Airpods Headphones,1,150,09/03/19 19:29,"230 6th St, Atlanta, GA 30301" -257870,USB-C Charging Cable,1,11.95,09/19/19 12:50,"793 Hill St, Seattle, WA 98101" -257871,Apple Airpods Headphones,1,150,09/29/19 20:07,"157 6th St, Los Angeles, CA 90001" -257872,Macbook Pro Laptop,1,1700,09/05/19 18:11,"159 Pine St, New York City, NY 10001" -257873,Wired Headphones,1,11.99,09/22/19 23:23,"668 Center St, San Francisco, CA 94016" -257874,AAA Batteries (4-pack),1,2.99,09/07/19 15:53,"987 Adams St, Austin, TX 73301" -257875,Bose SoundSport Headphones,1,99.99,09/14/19 12:01,"295 14th St, San Francisco, CA 94016" -257876,Bose SoundSport Headphones,1,99.99,09/05/19 11:58,"584 Cherry St, Portland, OR 97035" -257877,Google Phone,1,600,09/26/19 11:52,"29 Highland St, Los Angeles, CA 90001" -257878,Wired Headphones,1,11.99,09/17/19 10:51,"862 7th St, Los Angeles, CA 90001" -257879,AA Batteries (4-pack),1,3.84,09/03/19 11:29,"426 Jefferson St, Atlanta, GA 30301" -257880,Apple Airpods Headphones,1,150,09/28/19 10:07,"356 Jefferson St, Austin, TX 73301" -257881,iPhone,1,700,09/18/19 20:53,"24 Ridge St, Boston, MA 02215" -257882,AA Batteries (4-pack),1,3.84,09/29/19 11:45,"291 13th St, San Francisco, CA 94016" -257883,Lightning Charging Cable,1,14.95,09/15/19 19:51,"101 Lincoln St, Portland, OR 97035" -257884,Apple Airpods Headphones,1,150,09/07/19 07:53,"485 Meadow St, Atlanta, GA 30301" -257885,Lightning Charging Cable,1,14.95,09/27/19 12:15,"450 14th St, San Francisco, CA 94016" -257886,USB-C Charging Cable,1,11.95,09/28/19 17:50,"571 Hickory St, Dallas, TX 75001" -257887,Apple Airpods Headphones,1,150,09/16/19 10:59,"145 6th St, Boston, MA 02215" -257888,AA Batteries (4-pack),2,3.84,09/20/19 11:43,"284 Meadow St, San Francisco, CA 94016" -257889,Lightning Charging Cable,1,14.95,09/18/19 13:05,"321 7th St, San Francisco, CA 94016" -257890,USB-C Charging Cable,1,11.95,09/29/19 22:56,"20 9th St, Boston, MA 02215" -257891,Apple Airpods Headphones,1,150,09/14/19 15:15,"987 Hickory St, Portland, OR 97035" -257892,Bose SoundSport Headphones,1,99.99,09/20/19 08:53,"11 Washington St, Los Angeles, CA 90001" -257893,Bose SoundSport Headphones,1,99.99,09/07/19 12:43,"832 Meadow St, Los Angeles, CA 90001" -257894,Flatscreen TV,1,300,09/21/19 19:39,"735 13th St, Boston, MA 02215" -257895,iPhone,1,700,09/25/19 10:08,"820 Jackson St, New York City, NY 10001" -257896,Wired Headphones,1,11.99,09/14/19 09:44,"252 6th St, Seattle, WA 98101" -257897,AA Batteries (4-pack),1,3.84,09/07/19 16:46,"130 Pine St, San Francisco, CA 94016" -257898,20in Monitor,1,109.99,09/19/19 09:58,"639 Highland St, New York City, NY 10001" -257899,Apple Airpods Headphones,1,150,09/29/19 13:04,"141 River St, San Francisco, CA 94016" -257900,AA Batteries (4-pack),1,3.84,09/06/19 12:40,"493 Lakeview St, Los Angeles, CA 90001" -257901,Bose SoundSport Headphones,1,99.99,09/12/19 23:55,"134 Forest St, Seattle, WA 98101" -257902,LG Dryer,1,600.0,09/19/19 13:28,"502 Dogwood St, Seattle, WA 98101" -257903,USB-C Charging Cable,1,11.95,09/16/19 10:14,"508 Maple St, New York City, NY 10001" -257904,34in Ultrawide Monitor,1,379.99,09/08/19 08:46,"705 Lincoln St, Boston, MA 02215" -257905,USB-C Charging Cable,1,11.95,09/10/19 15:45,"896 Jackson St, Portland, OR 97035" -257906,Lightning Charging Cable,1,14.95,09/13/19 12:23,"459 North St, Austin, TX 73301" -257907,AAA Batteries (4-pack),1,2.99,09/28/19 00:53,"131 South St, Portland, OR 97035" -257908,Lightning Charging Cable,1,14.95,09/13/19 01:17,"567 Maple St, Austin, TX 73301" -257909,AA Batteries (4-pack),1,3.84,09/06/19 16:23,"43 Elm St, Boston, MA 02215" -257910,Wired Headphones,1,11.99,09/07/19 23:30,"40 13th St, San Francisco, CA 94016" -257911,Wired Headphones,1,11.99,09/30/19 18:48,"22 Highland St, Los Angeles, CA 90001" -257912,27in FHD Monitor,1,149.99,09/25/19 17:13,"288 Pine St, Los Angeles, CA 90001" -257913,AAA Batteries (4-pack),1,2.99,09/06/19 14:51,"190 Jackson St, Dallas, TX 75001" -257914,AAA Batteries (4-pack),2,2.99,09/07/19 13:39,"361 Sunset St, Portland, OR 97035" -257915,27in FHD Monitor,1,149.99,09/12/19 09:28,"392 Forest St, New York City, NY 10001" -257916,Apple Airpods Headphones,1,150,09/13/19 12:18,"533 12th St, New York City, NY 10001" -257917,Apple Airpods Headphones,1,150,09/04/19 20:52,"761 Johnson St, Portland, ME 04101" -257918,Apple Airpods Headphones,1,150,09/22/19 13:35,"650 Main St, Los Angeles, CA 90001" -257919,AA Batteries (4-pack),1,3.84,09/06/19 20:56,"395 Chestnut St, San Francisco, CA 94016" -257920,Wired Headphones,1,11.99,09/02/19 16:00,"605 Cherry St, New York City, NY 10001" -257921,iPhone,1,700,09/30/19 08:04,"209 Madison St, San Francisco, CA 94016" -257922,Wired Headphones,1,11.99,09/15/19 08:20,"468 North St, Los Angeles, CA 90001" -257923,Google Phone,1,600,09/27/19 19:12,"572 Center St, Los Angeles, CA 90001" -257924,AAA Batteries (4-pack),2,2.99,09/27/19 01:11,"95 Lincoln St, Los Angeles, CA 90001" -257925,34in Ultrawide Monitor,1,379.99,09/16/19 13:07,"231 13th St, San Francisco, CA 94016" -257926,Lightning Charging Cable,1,14.95,09/03/19 18:09,"427 North St, New York City, NY 10001" -257927,34in Ultrawide Monitor,1,379.99,09/10/19 16:31,"894 Walnut St, San Francisco, CA 94016" -257928,USB-C Charging Cable,1,11.95,09/26/19 18:53,"955 Hickory St, Boston, MA 02215" -257929,AAA Batteries (4-pack),5,2.99,09/24/19 23:47,"438 Hickory St, Seattle, WA 98101" -257930,AA Batteries (4-pack),1,3.84,09/05/19 19:51,"235 8th St, San Francisco, CA 94016" -257931,Flatscreen TV,1,300,09/05/19 10:58,"184 Highland St, Los Angeles, CA 90001" -257932,USB-C Charging Cable,1,11.95,09/12/19 15:43,"320 Wilson St, Los Angeles, CA 90001" -257933,Flatscreen TV,1,300,09/08/19 20:28,"51 Lincoln St, Boston, MA 02215" -257934,Macbook Pro Laptop,1,1700,09/23/19 20:17,"685 Park St, Los Angeles, CA 90001" -257935,AA Batteries (4-pack),2,3.84,09/23/19 09:21,"34 North St, San Francisco, CA 94016" -257936,AAA Batteries (4-pack),1,2.99,09/26/19 11:37,"408 Meadow St, San Francisco, CA 94016" -257937,Apple Airpods Headphones,1,150,09/10/19 19:55,"245 1st St, New York City, NY 10001" -257938,Lightning Charging Cable,1,14.95,09/08/19 13:03,"792 Spruce St, New York City, NY 10001" -257939,34in Ultrawide Monitor,1,379.99,09/16/19 00:01,"389 Maple St, Dallas, TX 75001" -257940,Google Phone,1,600,09/11/19 19:13,"768 Adams St, New York City, NY 10001" -257941,ThinkPad Laptop,1,999.99,09/14/19 21:27,"237 6th St, San Francisco, CA 94016" -257942,AA Batteries (4-pack),1,3.84,09/15/19 20:12,"559 Elm St, Seattle, WA 98101" -257943,27in FHD Monitor,1,149.99,09/13/19 15:37,"684 9th St, Los Angeles, CA 90001" -257944,AAA Batteries (4-pack),2,2.99,09/28/19 12:30,"850 Pine St, Los Angeles, CA 90001" -257945,Bose SoundSport Headphones,1,99.99,09/20/19 00:27,"960 Chestnut St, Atlanta, GA 30301" -257946,AAA Batteries (4-pack),1,2.99,09/07/19 13:38,"423 Hickory St, San Francisco, CA 94016" -257947,AA Batteries (4-pack),2,3.84,09/25/19 09:55,"464 North St, Austin, TX 73301" -257948,AAA Batteries (4-pack),1,2.99,09/15/19 18:14,"150 North St, Los Angeles, CA 90001" -257949,Lightning Charging Cable,1,14.95,09/09/19 22:33,"621 Lakeview St, San Francisco, CA 94016" -257950,Lightning Charging Cable,1,14.95,09/13/19 22:57,"676 Park St, New York City, NY 10001" -257951,AA Batteries (4-pack),1,3.84,09/13/19 22:23,"86 Cedar St, San Francisco, CA 94016" -257952,AAA Batteries (4-pack),1,2.99,09/06/19 12:22,"910 South St, Atlanta, GA 30301" -257953,Macbook Pro Laptop,1,1700,09/12/19 09:15,"151 7th St, Dallas, TX 75001" -257954,Lightning Charging Cable,1,14.95,09/17/19 22:10,"590 Walnut St, San Francisco, CA 94016" -257955,Flatscreen TV,1,300,09/06/19 16:11,"588 Adams St, San Francisco, CA 94016" -257956,Apple Airpods Headphones,1,150,09/16/19 13:24,"787 1st St, San Francisco, CA 94016" -257957,AA Batteries (4-pack),1,3.84,09/10/19 17:28,"722 Madison St, Seattle, WA 98101" -257958,USB-C Charging Cable,1,11.95,09/26/19 23:20,"239 Meadow St, Austin, TX 73301" -257959,Wired Headphones,1,11.99,09/19/19 22:45,"273 13th St, Los Angeles, CA 90001" -257960,AA Batteries (4-pack),3,3.84,09/03/19 16:46,"406 Ridge St, Seattle, WA 98101" -257961,Google Phone,1,600,09/16/19 08:51,"473 Park St, Los Angeles, CA 90001" -257962,Vareebadd Phone,1,400,09/07/19 23:27,"150 West St, Los Angeles, CA 90001" -257963,27in FHD Monitor,1,149.99,09/17/19 10:54,"821 Ridge St, San Francisco, CA 94016" -257964,iPhone,1,700,09/18/19 21:07,"839 Lincoln St, Portland, OR 97035" -257965,27in 4K Gaming Monitor,1,389.99,09/18/19 07:31,"540 West St, Austin, TX 73301" -257966,Apple Airpods Headphones,1,150,09/11/19 17:38,"869 5th St, Dallas, TX 75001" -257967,USB-C Charging Cable,1,11.95,09/03/19 09:25,"747 Elm St, San Francisco, CA 94016" -257967,Bose SoundSport Headphones,1,99.99,09/03/19 09:25,"747 Elm St, San Francisco, CA 94016" -257968,Lightning Charging Cable,1,14.95,09/23/19 13:32,"974 Hill St, Atlanta, GA 30301" -257969,Apple Airpods Headphones,1,150,09/28/19 13:30,"834 Willow St, Seattle, WA 98101" -257970,AA Batteries (4-pack),1,3.84,09/04/19 23:11,"866 Pine St, Boston, MA 02215" -257971,Bose SoundSport Headphones,1,99.99,09/15/19 21:42,"599 Cherry St, Boston, MA 02215" -257972,ThinkPad Laptop,1,999.99,09/17/19 07:21,"15 4th St, Los Angeles, CA 90001" -257973,AA Batteries (4-pack),1,3.84,09/26/19 10:15,"598 South St, Los Angeles, CA 90001" -257974,Apple Airpods Headphones,1,150,09/03/19 21:12,"528 Hill St, Seattle, WA 98101" -257975,Lightning Charging Cable,1,14.95,09/02/19 19:00,"281 Forest St, Boston, MA 02215" -257976,Lightning Charging Cable,1,14.95,09/19/19 06:09,"523 Adams St, Austin, TX 73301" -257977,Wired Headphones,1,11.99,09/28/19 19:48,"59 Jefferson St, Atlanta, GA 30301" -257978,Lightning Charging Cable,1,14.95,09/04/19 11:24,"976 Johnson St, Boston, MA 02215" -257979,Lightning Charging Cable,1,14.95,09/19/19 09:43,"94 Jackson St, Boston, MA 02215" -257980,USB-C Charging Cable,1,11.95,09/03/19 09:43,"635 Main St, Portland, OR 97035" -257981,Lightning Charging Cable,1,14.95,09/20/19 13:58,"392 Forest St, New York City, NY 10001" -257982,27in 4K Gaming Monitor,1,389.99,09/27/19 13:49,"656 Spruce St, Atlanta, GA 30301" -257983,Apple Airpods Headphones,1,150,09/01/19 13:22,"456 Wilson St, Boston, MA 02215" -257984,AA Batteries (4-pack),1,3.84,09/11/19 08:56,"364 Ridge St, Austin, TX 73301" -257985,iPhone,1,700,09/23/19 22:47,"214 River St, Boston, MA 02215" -257986,Apple Airpods Headphones,1,150,09/26/19 21:05,"813 14th St, San Francisco, CA 94016" -257987,Bose SoundSport Headphones,1,99.99,09/19/19 11:25,"164 Elm St, Boston, MA 02215" -257988,Lightning Charging Cable,1,14.95,09/26/19 07:22,"958 Sunset St, Portland, ME 04101" -257989,AA Batteries (4-pack),2,3.84,09/23/19 17:01,"34 6th St, San Francisco, CA 94016" -257990,USB-C Charging Cable,1,11.95,09/23/19 21:37,"243 13th St, Atlanta, GA 30301" -257991,Bose SoundSport Headphones,1,99.99,09/28/19 23:47,"891 13th St, San Francisco, CA 94016" -257992,iPhone,1,700,09/26/19 14:27,"272 Forest St, Boston, MA 02215" -257993,AA Batteries (4-pack),1,3.84,09/06/19 17:12,"7 1st St, Austin, TX 73301" -257994,27in 4K Gaming Monitor,1,389.99,09/26/19 17:54,"30 Center St, San Francisco, CA 94016" -257995,Apple Airpods Headphones,1,150,09/04/19 14:20,"497 Willow St, San Francisco, CA 94016" -257996,20in Monitor,1,109.99,09/02/19 19:58,"180 Chestnut St, San Francisco, CA 94016" -257997,AAA Batteries (4-pack),2,2.99,09/06/19 20:21,"972 14th St, Los Angeles, CA 90001" -257998,Lightning Charging Cable,1,14.95,09/20/19 16:20,"758 Willow St, Boston, MA 02215" -257999,Macbook Pro Laptop,1,1700,09/15/19 09:57,"407 Johnson St, San Francisco, CA 94016" -258000,AAA Batteries (4-pack),2,2.99,09/24/19 09:38,"120 Highland St, San Francisco, CA 94016" -258001,27in FHD Monitor,1,149.99,09/23/19 04:17,"463 Park St, Seattle, WA 98101" -258002,AAA Batteries (4-pack),1,2.99,09/01/19 23:58,"839 Pine St, Los Angeles, CA 90001" -258003,USB-C Charging Cable,1,11.95,09/09/19 09:09,"611 Meadow St, Los Angeles, CA 90001" -258004,Bose SoundSport Headphones,1,99.99,09/17/19 17:59,"191 11th St, San Francisco, CA 94016" -258004,34in Ultrawide Monitor,1,379.99,09/17/19 17:59,"191 11th St, San Francisco, CA 94016" -258005,USB-C Charging Cable,1,11.95,09/15/19 18:08,"160 10th St, San Francisco, CA 94016" -258006,AAA Batteries (4-pack),1,2.99,09/30/19 17:44,"677 Park St, Dallas, TX 75001" -258007,27in 4K Gaming Monitor,1,389.99,09/20/19 12:17,"366 2nd St, Portland, OR 97035" -,,,,, -258008,AAA Batteries (4-pack),2,2.99,09/18/19 21:32,"442 4th St, San Francisco, CA 94016" -258009,AAA Batteries (4-pack),2,2.99,09/13/19 00:28,"521 Cedar St, San Francisco, CA 94016" -258010,Apple Airpods Headphones,1,150,09/08/19 00:05,"195 7th St, Boston, MA 02215" -258011,AA Batteries (4-pack),1,3.84,09/28/19 17:34,"830 Forest St, Boston, MA 02215" -258012,USB-C Charging Cable,1,11.95,09/27/19 09:12,"560 Highland St, Los Angeles, CA 90001" -258013,Wired Headphones,1,11.99,09/09/19 01:41,"406 Ridge St, Austin, TX 73301" -258014,Bose SoundSport Headphones,1,99.99,09/28/19 14:32,"750 Center St, San Francisco, CA 94016" -258015,iPhone,1,700,09/06/19 19:40,"906 Church St, Los Angeles, CA 90001" -258016,Wired Headphones,1,11.99,09/24/19 17:58,"612 Lake St, Los Angeles, CA 90001" -258017,Flatscreen TV,1,300,09/23/19 11:59,"497 Johnson St, Austin, TX 73301" -258018,Lightning Charging Cable,1,14.95,09/27/19 05:02,"78 Spruce St, San Francisco, CA 94016" -258019,Bose SoundSport Headphones,1,99.99,09/18/19 22:16,"104 Spruce St, San Francisco, CA 94016" -258020,Bose SoundSport Headphones,1,99.99,09/04/19 06:09,"567 South St, San Francisco, CA 94016" -258021,AA Batteries (4-pack),1,3.84,09/16/19 20:28,"674 14th St, Seattle, WA 98101" -258022,AAA Batteries (4-pack),1,2.99,09/27/19 12:15,"996 7th St, New York City, NY 10001" -258023,34in Ultrawide Monitor,1,379.99,09/28/19 12:33,"507 5th St, Dallas, TX 75001" -258024,Lightning Charging Cable,2,14.95,09/09/19 12:38,"477 Center St, San Francisco, CA 94016" -258025,27in 4K Gaming Monitor,1,389.99,09/03/19 19:52,"781 Forest St, Seattle, WA 98101" -258026,AAA Batteries (4-pack),1,2.99,09/24/19 18:37,"220 Highland St, Atlanta, GA 30301" -258027,Wired Headphones,1,11.99,09/27/19 21:08,"103 Hickory St, Boston, MA 02215" -258028,Bose SoundSport Headphones,1,99.99,09/12/19 15:54,"704 1st St, Dallas, TX 75001" -258029,Google Phone,1,600,09/12/19 22:22,"409 Wilson St, Portland, ME 04101" -258030,Wired Headphones,1,11.99,09/12/19 14:40,"146 Madison St, Dallas, TX 75001" -258031,27in 4K Gaming Monitor,1,389.99,09/24/19 22:24,"926 Maple St, Dallas, TX 75001" -258032,iPhone,1,700,09/20/19 21:04,"46 1st St, Austin, TX 73301" -258033,Google Phone,1,600,09/04/19 18:10,"547 Cedar St, Boston, MA 02215" -258033,Bose SoundSport Headphones,1,99.99,09/04/19 18:10,"547 Cedar St, Boston, MA 02215" -258034,AA Batteries (4-pack),1,3.84,09/20/19 20:10,"124 River St, New York City, NY 10001" -258035,AA Batteries (4-pack),1,3.84,09/18/19 13:50,"770 Jefferson St, Boston, MA 02215" -258036,AA Batteries (4-pack),1,3.84,09/15/19 16:13,"360 Washington St, Atlanta, GA 30301" -258037,Bose SoundSport Headphones,1,99.99,09/15/19 11:18,"957 Sunset St, San Francisco, CA 94016" -258038,AAA Batteries (4-pack),1,2.99,09/01/19 21:38,"260 Walnut St, Los Angeles, CA 90001" -258039,AA Batteries (4-pack),1,3.84,09/09/19 16:31,"306 Maple St, New York City, NY 10001" -258040,iPhone,1,700,09/12/19 21:59,"467 Church St, Boston, MA 02215" -258041,ThinkPad Laptop,1,999.99,09/23/19 12:21,"449 Spruce St, San Francisco, CA 94016" -258042,AA Batteries (4-pack),1,3.84,09/01/19 20:50,"919 Elm St, Austin, TX 73301" -258043,Bose SoundSport Headphones,1,99.99,09/29/19 17:27,"395 Main St, Dallas, TX 75001" -258044,AA Batteries (4-pack),1,3.84,09/20/19 09:59,"640 Forest St, New York City, NY 10001" -258045,USB-C Charging Cable,1,11.95,09/19/19 23:52,"857 Washington St, Boston, MA 02215" -258046,AAA Batteries (4-pack),1,2.99,09/29/19 15:22,"524 7th St, Boston, MA 02215" -258047,Macbook Pro Laptop,1,1700,09/24/19 09:32,"212 Pine St, Boston, MA 02215" -258048,20in Monitor,1,109.99,09/03/19 12:21,"207 Chestnut St, Atlanta, GA 30301" -258049,Flatscreen TV,1,300,09/24/19 18:40,"750 Madison St, San Francisco, CA 94016" -258050,iPhone,1,700,09/18/19 12:30,"339 6th St, San Francisco, CA 94016" -258051,Google Phone,1,600,09/20/19 18:14,"591 6th St, San Francisco, CA 94016" -258052,Flatscreen TV,1,300,09/18/19 15:31,"996 2nd St, Dallas, TX 75001" -258053,Bose SoundSport Headphones,1,99.99,09/29/19 12:12,"543 Johnson St, Portland, ME 04101" -258054,20in Monitor,1,109.99,09/30/19 22:33,"905 Lake St, San Francisco, CA 94016" -258055,USB-C Charging Cable,1,11.95,09/06/19 09:47,"544 West St, New York City, NY 10001" -258056,Lightning Charging Cable,1,14.95,09/07/19 19:40,"285 Park St, San Francisco, CA 94016" -258057,ThinkPad Laptop,1,999.99,09/12/19 12:18,"724 Highland St, Seattle, WA 98101" -258058,AAA Batteries (4-pack),1,2.99,09/28/19 21:27,"773 Spruce St, New York City, NY 10001" -258059,Bose SoundSport Headphones,1,99.99,09/26/19 09:27,"916 Main St, San Francisco, CA 94016" -258060,Lightning Charging Cable,1,14.95,09/04/19 13:07,"356 Willow St, San Francisco, CA 94016" -258061,Apple Airpods Headphones,1,150,09/01/19 21:16,"723 Chestnut St, San Francisco, CA 94016" -258062,Wired Headphones,1,11.99,09/05/19 22:18,"722 Hill St, Los Angeles, CA 90001" -258063,USB-C Charging Cable,1,11.95,09/27/19 12:34,"507 North St, Los Angeles, CA 90001" -258064,AA Batteries (4-pack),2,3.84,09/06/19 14:20,"840 West St, San Francisco, CA 94016" -258065,AA Batteries (4-pack),4,3.84,09/01/19 06:08,"752 Meadow St, San Francisco, CA 94016" -258066,Lightning Charging Cable,1,14.95,09/27/19 18:39,"828 South St, Boston, MA 02215" -258067,Apple Airpods Headphones,1,150,09/12/19 19:53,"483 7th St, Los Angeles, CA 90001" -258068,27in FHD Monitor,1,149.99,09/20/19 14:34,"976 Wilson St, Austin, TX 73301" -258069,AAA Batteries (4-pack),1,2.99,09/08/19 09:01,"125 Highland St, Los Angeles, CA 90001" -258070,iPhone,1,700,09/20/19 14:02,"934 Sunset St, Boston, MA 02215" -258071,Lightning Charging Cable,1,14.95,09/29/19 14:04,"573 Washington St, Portland, ME 04101" -258072,Wired Headphones,1,11.99,09/02/19 17:31,"404 Dogwood St, Boston, MA 02215" -258073,20in Monitor,1,109.99,09/04/19 10:54,"864 Willow St, Atlanta, GA 30301" -258074,Macbook Pro Laptop,1,1700,09/19/19 06:43,"121 Lakeview St, New York City, NY 10001" -258075,USB-C Charging Cable,1,11.95,09/22/19 11:44,"452 11th St, Atlanta, GA 30301" -258076,Apple Airpods Headphones,1,150,09/05/19 16:41,"517 Willow St, San Francisco, CA 94016" -258077,Lightning Charging Cable,1,14.95,09/24/19 11:41,"297 Wilson St, Los Angeles, CA 90001" -258078,AA Batteries (4-pack),1,3.84,09/27/19 11:50,"485 Cedar St, Atlanta, GA 30301" -258079,Wired Headphones,1,11.99,09/12/19 15:04,"273 Cedar St, Atlanta, GA 30301" -258080,Macbook Pro Laptop,1,1700,09/06/19 19:33,"708 Madison St, Boston, MA 02215" -258081,Macbook Pro Laptop,1,1700,09/08/19 15:46,"732 9th St, Boston, MA 02215" -258082,27in FHD Monitor,1,149.99,09/14/19 11:26,"733 Lake St, San Francisco, CA 94016" -258083,Lightning Charging Cable,1,14.95,09/10/19 17:55,"458 Madison St, Boston, MA 02215" -258084,20in Monitor,1,109.99,09/03/19 14:30,"991 Jefferson St, Los Angeles, CA 90001" -258085,USB-C Charging Cable,1,11.95,09/27/19 08:48,"4 Jefferson St, Austin, TX 73301" -258086,Lightning Charging Cable,1,14.95,09/12/19 14:30,"155 7th St, Atlanta, GA 30301" -258087,Bose SoundSport Headphones,1,99.99,09/28/19 08:15,"760 Hill St, New York City, NY 10001" -258088,AA Batteries (4-pack),1,3.84,09/29/19 15:22,"496 10th St, San Francisco, CA 94016" -258089,Wired Headphones,1,11.99,09/23/19 14:31,"392 South St, San Francisco, CA 94016" -258090,Wired Headphones,1,11.99,09/30/19 21:28,"190 Meadow St, Los Angeles, CA 90001" -258091,iPhone,1,700,09/01/19 10:03,"796 2nd St, San Francisco, CA 94016" -258092,34in Ultrawide Monitor,1,379.99,09/09/19 22:29,"577 Dogwood St, Boston, MA 02215" -258093,AA Batteries (4-pack),1,3.84,09/21/19 09:40,"639 Madison St, Boston, MA 02215" -258094,Apple Airpods Headphones,1,150,09/03/19 13:45,"671 River St, Los Angeles, CA 90001" -258095,Wired Headphones,2,11.99,09/28/19 20:54,"266 1st St, San Francisco, CA 94016" -258096,34in Ultrawide Monitor,1,379.99,09/29/19 23:16,"927 4th St, Dallas, TX 75001" -258097,Macbook Pro Laptop,1,1700,09/26/19 17:53,"920 Ridge St, New York City, NY 10001" -258098,iPhone,1,700,09/13/19 16:04,"908 Wilson St, San Francisco, CA 94016" -258098,Lightning Charging Cable,1,14.95,09/13/19 16:04,"908 Wilson St, San Francisco, CA 94016" -258099,USB-C Charging Cable,1,11.95,09/14/19 09:06,"802 Ridge St, New York City, NY 10001" -258100,Lightning Charging Cable,1,14.95,09/15/19 06:36,"722 2nd St, Los Angeles, CA 90001" -258101,Lightning Charging Cable,1,14.95,09/06/19 14:54,"207 Jefferson St, Los Angeles, CA 90001" -258102,AA Batteries (4-pack),1,3.84,09/22/19 06:22,"58 Spruce St, Atlanta, GA 30301" -258103,Wired Headphones,1,11.99,09/24/19 18:24,"625 Ridge St, San Francisco, CA 94016" -258104,Lightning Charging Cable,1,14.95,09/08/19 19:56,"524 Highland St, Los Angeles, CA 90001" -258105,USB-C Charging Cable,1,11.95,09/28/19 16:30,"216 Dogwood St, New York City, NY 10001" -258106,Macbook Pro Laptop,1,1700,09/20/19 14:16,"974 11th St, Atlanta, GA 30301" -258107,Google Phone,1,600,09/23/19 14:23,"460 Maple St, Seattle, WA 98101" -258108,Bose SoundSport Headphones,1,99.99,09/25/19 18:46,"855 Chestnut St, Dallas, TX 75001" -258109,Apple Airpods Headphones,1,150,09/04/19 12:56,"3 Sunset St, Boston, MA 02215" -258110,Apple Airpods Headphones,1,150,09/27/19 10:52,"116 Forest St, San Francisco, CA 94016" -258111,Bose SoundSport Headphones,1,99.99,09/06/19 09:44,"372 Chestnut St, Boston, MA 02215" -258112,Apple Airpods Headphones,1,150,09/25/19 09:30,"614 Spruce St, New York City, NY 10001" -258113,AA Batteries (4-pack),1,3.84,09/22/19 14:08,"322 Lincoln St, New York City, NY 10001" -258114,AAA Batteries (4-pack),3,2.99,09/27/19 13:50,"350 9th St, New York City, NY 10001" -258115,20in Monitor,1,109.99,09/20/19 23:12,"525 7th St, New York City, NY 10001" -258116,20in Monitor,1,109.99,09/30/19 19:51,"433 Cedar St, Portland, OR 97035" -258117,Google Phone,1,600,09/23/19 02:56,"720 Lincoln St, Austin, TX 73301" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -258118,Google Phone,1,600,09/08/19 14:13,"597 Cherry St, Atlanta, GA 30301" -258119,Apple Airpods Headphones,1,150,09/04/19 02:36,"446 South St, Los Angeles, CA 90001" -258120,Wired Headphones,1,11.99,09/13/19 14:00,"86 Lake St, San Francisco, CA 94016" -258121,Bose SoundSport Headphones,1,99.99,09/09/19 09:51,"992 Lake St, San Francisco, CA 94016" -258122,Bose SoundSport Headphones,1,99.99,09/27/19 13:37,"340 Ridge St, Los Angeles, CA 90001" -258123,Wired Headphones,1,11.99,09/23/19 22:19,"240 Ridge St, New York City, NY 10001" -258124,20in Monitor,1,109.99,09/17/19 22:41,"842 12th St, New York City, NY 10001" -258125,Flatscreen TV,1,300,09/07/19 12:00,"681 Pine St, Los Angeles, CA 90001" -258126,Lightning Charging Cable,1,14.95,09/10/19 11:40,"557 14th St, San Francisco, CA 94016" -258127,USB-C Charging Cable,1,11.95,09/03/19 00:36,"574 Ridge St, San Francisco, CA 94016" -258128,Lightning Charging Cable,1,14.95,09/27/19 13:57,"677 Cherry St, Atlanta, GA 30301" -258129,USB-C Charging Cable,1,11.95,09/01/19 10:28,"500 7th St, Los Angeles, CA 90001" -258130,Bose SoundSport Headphones,1,99.99,09/17/19 09:56,"276 7th St, San Francisco, CA 94016" -258131,AAA Batteries (4-pack),1,2.99,09/06/19 22:40,"268 Cherry St, Portland, OR 97035" -258132,AA Batteries (4-pack),2,3.84,09/14/19 17:30,"723 Walnut St, Austin, TX 73301" -258133,AA Batteries (4-pack),1,3.84,09/22/19 13:18,"840 Lakeview St, San Francisco, CA 94016" -258134,Bose SoundSport Headphones,1,99.99,09/19/19 08:18,"537 Lincoln St, Boston, MA 02215" -258135,AAA Batteries (4-pack),2,2.99,09/19/19 18:28,"110 11th St, Los Angeles, CA 90001" -258136,Vareebadd Phone,1,400,09/19/19 17:17,"218 Madison St, Austin, TX 73301" -258137,Apple Airpods Headphones,1,150,09/13/19 17:04,"646 Washington St, New York City, NY 10001" -258138,Lightning Charging Cable,1,14.95,09/20/19 11:24,"313 South St, Los Angeles, CA 90001" -258139,Lightning Charging Cable,1,14.95,09/21/19 20:33,"602 Johnson St, Los Angeles, CA 90001" -258140,Lightning Charging Cable,1,14.95,09/21/19 22:57,"302 Main St, Dallas, TX 75001" -258141,Lightning Charging Cable,1,14.95,09/10/19 17:02,"644 Forest St, Boston, MA 02215" -258142,20in Monitor,1,109.99,09/29/19 13:07,"294 13th St, Los Angeles, CA 90001" -258143,Apple Airpods Headphones,1,150,09/21/19 00:48,"573 West St, Los Angeles, CA 90001" -258144,20in Monitor,1,109.99,09/29/19 19:53,"995 10th St, Seattle, WA 98101" -258145,USB-C Charging Cable,1,11.95,09/21/19 08:19,"810 5th St, Boston, MA 02215" -258146,Wired Headphones,1,11.99,09/22/19 09:10,"157 Hill St, Boston, MA 02215" -258147,Wired Headphones,1,11.99,09/27/19 21:02,"65 Park St, San Francisco, CA 94016" -258148,AAA Batteries (4-pack),2,2.99,09/01/19 16:18,"532 4th St, Portland, OR 97035" -258149,USB-C Charging Cable,1,11.95,09/25/19 00:28,"65 Wilson St, Los Angeles, CA 90001" -258150,Macbook Pro Laptop,1,1700,09/20/19 17:01,"576 South St, Los Angeles, CA 90001" -258151,USB-C Charging Cable,1,11.95,09/20/19 14:03,"821 Chestnut St, Atlanta, GA 30301" -258151,Apple Airpods Headphones,1,150,09/20/19 14:03,"821 Chestnut St, Atlanta, GA 30301" -258152,34in Ultrawide Monitor,1,379.99,09/11/19 17:50,"757 North St, San Francisco, CA 94016" -258153,Wired Headphones,1,11.99,09/05/19 17:29,"819 Hickory St, New York City, NY 10001" -258154,AAA Batteries (4-pack),1,2.99,09/04/19 17:42,"913 Maple St, Seattle, WA 98101" -258155,AA Batteries (4-pack),1,3.84,09/21/19 14:08,"4 Forest St, San Francisco, CA 94016" -258156,Lightning Charging Cable,1,14.95,09/24/19 11:36,"133 9th St, Boston, MA 02215" -258157,20in Monitor,1,109.99,09/30/19 10:53,"483 Dogwood St, Los Angeles, CA 90001" -258158,Bose SoundSport Headphones,1,99.99,09/07/19 09:20,"510 Chestnut St, Austin, TX 73301" -258159,34in Ultrawide Monitor,1,379.99,09/01/19 09:07,"994 5th St, Austin, TX 73301" -258160,Wired Headphones,1,11.99,09/01/19 19:01,"629 Jefferson St, Los Angeles, CA 90001" -258161,Apple Airpods Headphones,1,150,09/19/19 23:57,"69 Forest St, Boston, MA 02215" -258162,Macbook Pro Laptop,1,1700,09/15/19 17:28,"360 Lake St, Austin, TX 73301" -258163,Wired Headphones,1,11.99,09/07/19 18:47,"740 11th St, Seattle, WA 98101" -258164,20in Monitor,1,109.99,09/06/19 07:13,"101 Cherry St, New York City, NY 10001" -258165,AAA Batteries (4-pack),1,2.99,09/18/19 21:32,"876 Adams St, New York City, NY 10001" -258166,Apple Airpods Headphones,1,150,09/19/19 21:10,"146 4th St, San Francisco, CA 94016" -258167,Bose SoundSport Headphones,1,99.99,09/23/19 13:17,"344 Maple St, New York City, NY 10001" -258168,27in FHD Monitor,1,149.99,09/12/19 19:28,"431 1st St, Los Angeles, CA 90001" -258169,Wired Headphones,1,11.99,09/07/19 21:58,"588 Madison St, Los Angeles, CA 90001" -258170,Google Phone,1,600,09/17/19 11:04,"533 Lakeview St, New York City, NY 10001" -258171,AA Batteries (4-pack),1,3.84,09/23/19 19:35,"765 14th St, Atlanta, GA 30301" -258172,Google Phone,1,600,09/30/19 21:37,"644 Dogwood St, Atlanta, GA 30301" -258173,AA Batteries (4-pack),1,3.84,09/30/19 12:11,"739 Lakeview St, Los Angeles, CA 90001" -258174,Lightning Charging Cable,1,14.95,09/01/19 21:07,"226 North St, San Francisco, CA 94016" -258175,Wired Headphones,1,11.99,09/26/19 11:05,"919 Park St, San Francisco, CA 94016" -258176,27in 4K Gaming Monitor,1,389.99,09/11/19 18:54,"71 River St, Dallas, TX 75001" -258177,USB-C Charging Cable,1,11.95,09/03/19 11:35,"294 Cedar St, Seattle, WA 98101" -258178,USB-C Charging Cable,1,11.95,09/27/19 19:30,"481 Meadow St, Atlanta, GA 30301" -258179,Apple Airpods Headphones,1,150,09/26/19 21:28,"580 Highland St, San Francisco, CA 94016" -258180,ThinkPad Laptop,1,999.99,09/16/19 19:35,"938 Pine St, Seattle, WA 98101" -258180,AA Batteries (4-pack),1,3.84,09/16/19 19:35,"938 Pine St, Seattle, WA 98101" -258181,Bose SoundSport Headphones,1,99.99,09/30/19 14:42,"674 9th St, Boston, MA 02215" -258182,Wired Headphones,2,11.99,09/09/19 11:02,"852 Park St, Boston, MA 02215" -258183,Apple Airpods Headphones,1,150,09/04/19 08:18,"629 Cedar St, Atlanta, GA 30301" -258184,Wired Headphones,1,11.99,09/04/19 16:17,"313 Lake St, San Francisco, CA 94016" -258185,Bose SoundSport Headphones,1,99.99,09/16/19 14:06,"55 Washington St, New York City, NY 10001" -258186,AA Batteries (4-pack),1,3.84,09/10/19 22:02,"378 10th St, Los Angeles, CA 90001" -258187,USB-C Charging Cable,1,11.95,09/06/19 14:03,"69 Dogwood St, San Francisco, CA 94016" -258188,AAA Batteries (4-pack),3,2.99,09/15/19 14:00,"271 Spruce St, Boston, MA 02215" -258189,Lightning Charging Cable,1,14.95,09/11/19 17:38,"317 Johnson St, Los Angeles, CA 90001" -258190,Lightning Charging Cable,1,14.95,09/16/19 21:05,"571 Ridge St, Seattle, WA 98101" -258191,27in 4K Gaming Monitor,1,389.99,09/20/19 17:39,"509 11th St, New York City, NY 10001" -258192,27in FHD Monitor,1,149.99,09/03/19 20:22,"198 North St, Seattle, WA 98101" -258193,Apple Airpods Headphones,1,150,09/28/19 23:16,"221 Willow St, Atlanta, GA 30301" -258194,Wired Headphones,2,11.99,09/29/19 20:19,"283 South St, San Francisco, CA 94016" -258195,iPhone,1,700,09/11/19 12:04,"858 Dogwood St, Seattle, WA 98101" -258196,AA Batteries (4-pack),1,3.84,09/05/19 21:16,"333 9th St, Portland, OR 97035" -258197,27in 4K Gaming Monitor,1,389.99,09/07/19 18:38,"307 2nd St, Seattle, WA 98101" -258198,27in FHD Monitor,1,149.99,09/19/19 13:42,"167 Elm St, New York City, NY 10001" -258199,AAA Batteries (4-pack),1,2.99,09/23/19 13:22,"276 Wilson St, Dallas, TX 75001" -258200,USB-C Charging Cable,1,11.95,09/03/19 13:17,"40 Chestnut St, Portland, OR 97035" -258201,AAA Batteries (4-pack),1,2.99,09/17/19 15:51,"16 Hickory St, San Francisco, CA 94016" -258202,iPhone,1,700,09/28/19 07:21,"8 Lakeview St, San Francisco, CA 94016" -258203,AAA Batteries (4-pack),1,2.99,09/13/19 15:36,"781 Forest St, Seattle, WA 98101" -258204,27in FHD Monitor,1,149.99,09/12/19 10:58,"638 Sunset St, Atlanta, GA 30301" -258205,27in FHD Monitor,1,149.99,09/17/19 16:19,"279 Dogwood St, San Francisco, CA 94016" -258206,Wired Headphones,2,11.99,09/17/19 06:00,"108 Washington St, Los Angeles, CA 90001" -258207,27in 4K Gaming Monitor,1,389.99,09/02/19 10:25,"309 Meadow St, Atlanta, GA 30301" -258208,Vareebadd Phone,1,400,09/26/19 11:34,"84 Cherry St, Dallas, TX 75001" -258208,USB-C Charging Cable,3,11.95,09/26/19 11:34,"84 Cherry St, Dallas, TX 75001" -258209,AA Batteries (4-pack),1,3.84,09/07/19 17:10,"337 Sunset St, Seattle, WA 98101" -258210,Lightning Charging Cable,1,14.95,09/01/19 13:16,"283 12th St, San Francisco, CA 94016" -258211,Wired Headphones,1,11.99,09/02/19 21:30,"409 Lake St, Seattle, WA 98101" -258212,Bose SoundSport Headphones,1,99.99,09/14/19 01:50,"270 Hickory St, San Francisco, CA 94016" -258213,AAA Batteries (4-pack),1,2.99,09/04/19 21:54,"783 Main St, Atlanta, GA 30301" -258214,Macbook Pro Laptop,1,1700,09/02/19 11:09,"134 Sunset St, Los Angeles, CA 90001" -258215,27in FHD Monitor,1,149.99,09/20/19 15:27,"114 Walnut St, New York City, NY 10001" -258216,Wired Headphones,1,11.99,09/16/19 12:55,"863 Church St, Dallas, TX 75001" -258217,34in Ultrawide Monitor,1,379.99,09/16/19 06:43,"335 Jackson St, Atlanta, GA 30301" -258218,iPhone,1,700,09/24/19 11:11,"976 Lincoln St, Dallas, TX 75001" -258219,AA Batteries (4-pack),3,3.84,09/02/19 11:37,"229 2nd St, San Francisco, CA 94016" -258220,Vareebadd Phone,1,400,09/09/19 10:37,"607 7th St, Los Angeles, CA 90001" -258220,Bose SoundSport Headphones,1,99.99,09/09/19 10:37,"607 7th St, Los Angeles, CA 90001" -258221,Macbook Pro Laptop,1,1700,09/20/19 16:35,"463 9th St, New York City, NY 10001" -258222,27in 4K Gaming Monitor,1,389.99,09/09/19 08:02,"835 Sunset St, Portland, ME 04101" -258223,AA Batteries (4-pack),1,3.84,09/23/19 05:40,"525 14th St, San Francisco, CA 94016" -258224,AA Batteries (4-pack),1,3.84,09/21/19 11:56,"182 Lakeview St, San Francisco, CA 94016" -258225,AAA Batteries (4-pack),1,2.99,09/18/19 17:47,"842 14th St, San Francisco, CA 94016" -258226,USB-C Charging Cable,1,11.95,09/12/19 11:55,"709 13th St, San Francisco, CA 94016" -258227,AA Batteries (4-pack),1,3.84,09/10/19 14:49,"660 River St, Boston, MA 02215" -258228,AA Batteries (4-pack),1,3.84,09/16/19 17:34,"630 12th St, Boston, MA 02215" -258229,AAA Batteries (4-pack),1,2.99,09/17/19 22:03,"259 Johnson St, Los Angeles, CA 90001" -258230,Bose SoundSport Headphones,1,99.99,09/20/19 08:53,"254 Johnson St, New York City, NY 10001" -258231,LG Dryer,1,600.0,09/22/19 21:51,"87 River St, Los Angeles, CA 90001" -258232,20in Monitor,1,109.99,09/08/19 23:35,"192 North St, New York City, NY 10001" -258233,27in 4K Gaming Monitor,1,389.99,09/13/19 14:21,"145 Park St, San Francisco, CA 94016" -258234,Apple Airpods Headphones,1,150,09/25/19 21:17,"409 South St, New York City, NY 10001" -258235,Bose SoundSport Headphones,1,99.99,09/01/19 17:33,"223 6th St, San Francisco, CA 94016" -258236,Apple Airpods Headphones,1,150,09/12/19 23:17,"736 6th St, Austin, TX 73301" -258237,Apple Airpods Headphones,1,150,09/27/19 18:29,"95 Lincoln St, Los Angeles, CA 90001" -258238,AAA Batteries (4-pack),1,2.99,09/18/19 09:47,"710 South St, San Francisco, CA 94016" -258239,27in FHD Monitor,1,149.99,09/19/19 15:12,"90 11th St, San Francisco, CA 94016" -258240,Wired Headphones,1,11.99,09/28/19 12:22,"849 14th St, Seattle, WA 98101" -258241,Bose SoundSport Headphones,1,99.99,09/19/19 14:23,"691 Meadow St, Los Angeles, CA 90001" -258242,AAA Batteries (4-pack),1,2.99,09/06/19 08:08,"250 Church St, San Francisco, CA 94016" -258243,Bose SoundSport Headphones,1,99.99,10/01/19 00:59,"306 North St, San Francisco, CA 94016" -258244,USB-C Charging Cable,1,11.95,09/26/19 20:35,"962 Hill St, Los Angeles, CA 90001" -258245,Lightning Charging Cable,1,14.95,09/04/19 12:22,"65 Pine St, Portland, OR 97035" -258246,20in Monitor,1,109.99,09/04/19 11:14,"492 Dogwood St, San Francisco, CA 94016" -258247,USB-C Charging Cable,1,11.95,09/19/19 14:17,"625 Center St, San Francisco, CA 94016" -258248,AAA Batteries (4-pack),2,2.99,09/10/19 14:16,"609 Maple St, Austin, TX 73301" -258249,Apple Airpods Headphones,1,150,09/18/19 12:17,"336 Jackson St, Los Angeles, CA 90001" -258250,Lightning Charging Cable,1,14.95,09/29/19 16:40,"609 13th St, Portland, OR 97035" -258251,20in Monitor,1,109.99,09/19/19 19:00,"755 Cedar St, Los Angeles, CA 90001" -258252,27in FHD Monitor,1,149.99,09/01/19 16:09,"90 Johnson St, Portland, OR 97035" -258253,Google Phone,1,600,09/07/19 18:18,"641 14th St, Dallas, TX 75001" -258254,Bose SoundSport Headphones,1,99.99,09/13/19 09:02,"491 Park St, Portland, ME 04101" -258255,AA Batteries (4-pack),1,3.84,09/04/19 20:02,"237 Center St, San Francisco, CA 94016" -258256,AA Batteries (4-pack),1,3.84,09/08/19 15:48,"655 Center St, Los Angeles, CA 90001" -258257,AA Batteries (4-pack),1,3.84,09/07/19 10:34,"152 13th St, Portland, ME 04101" -258258,20in Monitor,1,109.99,09/24/19 07:52,"560 1st St, Los Angeles, CA 90001" -258259,USB-C Charging Cable,1,11.95,09/22/19 18:30,"574 Jefferson St, New York City, NY 10001" -258260,Bose SoundSport Headphones,1,99.99,09/30/19 20:17,"674 Madison St, Boston, MA 02215" -258261,27in 4K Gaming Monitor,1,389.99,09/06/19 13:42,"781 Madison St, San Francisco, CA 94016" -258262,AA Batteries (4-pack),1,3.84,09/15/19 13:58,"436 Cherry St, New York City, NY 10001" -258263,iPhone,1,700,09/04/19 09:14,"785 Park St, Dallas, TX 75001" -258264,AA Batteries (4-pack),1,3.84,09/29/19 21:37,"468 Lake St, Boston, MA 02215" -258265,Wired Headphones,1,11.99,09/05/19 15:48,"498 Washington St, San Francisco, CA 94016" -258266,USB-C Charging Cable,1,11.95,09/02/19 03:36,"412 Cherry St, Los Angeles, CA 90001" -258267,AAA Batteries (4-pack),2,2.99,09/21/19 12:13,"196 Hickory St, Seattle, WA 98101" -258268,Apple Airpods Headphones,1,150,09/12/19 08:23,"79 Sunset St, Los Angeles, CA 90001" -258269,USB-C Charging Cable,1,11.95,09/28/19 18:19,"412 Highland St, San Francisco, CA 94016" -258270,Wired Headphones,1,11.99,09/01/19 18:22,"275 Sunset St, New York City, NY 10001" -258271,Bose SoundSport Headphones,1,99.99,09/14/19 18:58,"615 Pine St, New York City, NY 10001" -258272,Wired Headphones,1,11.99,09/12/19 13:36,"713 River St, Dallas, TX 75001" -258273,USB-C Charging Cable,1,11.95,09/10/19 13:01,"911 River St, Boston, MA 02215" -258274,Wired Headphones,1,11.99,09/10/19 22:50,"131 Pine St, Portland, OR 97035" -258275,Wired Headphones,1,11.99,09/25/19 10:32,"204 Jefferson St, New York City, NY 10001" -258276,AA Batteries (4-pack),2,3.84,09/22/19 16:37,"228 Cedar St, New York City, NY 10001" -258277,Google Phone,1,600,09/01/19 18:52,"277 5th St, Los Angeles, CA 90001" -258277,Bose SoundSport Headphones,1,99.99,09/01/19 18:52,"277 5th St, Los Angeles, CA 90001" -258278,20in Monitor,1,109.99,09/10/19 18:51,"23 5th St, Dallas, TX 75001" -258279,AAA Batteries (4-pack),2,2.99,09/13/19 19:47,"970 Main St, San Francisco, CA 94016" -258280,Wired Headphones,1,11.99,09/14/19 17:55,"80 River St, Dallas, TX 75001" -258281,AAA Batteries (4-pack),1,2.99,09/30/19 07:30,"176 Park St, Dallas, TX 75001" -258282,20in Monitor,1,109.99,09/05/19 15:01,"787 Highland St, Portland, OR 97035" -258283,AAA Batteries (4-pack),2,2.99,09/05/19 09:55,"873 Park St, Los Angeles, CA 90001" -258284,Wired Headphones,1,11.99,09/11/19 20:04,"521 Center St, San Francisco, CA 94016" -258285,USB-C Charging Cable,2,11.95,09/26/19 01:45,"787 8th St, Atlanta, GA 30301" -258286,Lightning Charging Cable,2,14.95,09/15/19 08:47,"220 Hickory St, Austin, TX 73301" -258287,AAA Batteries (4-pack),1,2.99,09/24/19 01:05,"836 13th St, Austin, TX 73301" -258288,USB-C Charging Cable,1,11.95,09/05/19 11:15,"272 10th St, Boston, MA 02215" -258289,Wired Headphones,1,11.99,09/27/19 08:03,"453 Hill St, Boston, MA 02215" -258290,Google Phone,1,600,09/01/19 23:31,"671 Lake St, Atlanta, GA 30301" -258290,USB-C Charging Cable,1,11.95,09/01/19 23:31,"671 Lake St, Atlanta, GA 30301" -258291,AA Batteries (4-pack),1,3.84,09/29/19 16:37,"854 13th St, Seattle, WA 98101" -258292,Apple Airpods Headphones,1,150,09/11/19 11:53,"581 North St, Portland, OR 97035" -258293,Google Phone,1,600,09/21/19 20:54,"221 7th St, Seattle, WA 98101" -258294,Lightning Charging Cable,1,14.95,09/28/19 17:46,"869 Meadow St, Los Angeles, CA 90001" -258295,USB-C Charging Cable,1,11.95,09/30/19 13:34,"554 Willow St, San Francisco, CA 94016" -258296,Flatscreen TV,1,300,09/15/19 08:37,"940 Sunset St, New York City, NY 10001" -258297,AA Batteries (4-pack),1,3.84,09/15/19 07:40,"593 Lincoln St, San Francisco, CA 94016" -258298,27in FHD Monitor,1,149.99,09/03/19 16:24,"846 Meadow St, San Francisco, CA 94016" -258299,Wired Headphones,1,11.99,09/01/19 16:24,"315 Maple St, Seattle, WA 98101" -258300,Vareebadd Phone,1,400,09/01/19 18:44,"132 Maple St, San Francisco, CA 94016" -258301,Google Phone,1,600,09/18/19 18:49,"801 4th St, New York City, NY 10001" -258302,Wired Headphones,1,11.99,09/08/19 23:33,"365 Washington St, Los Angeles, CA 90001" -258303,USB-C Charging Cable,1,11.95,09/19/19 09:23,"364 North St, Boston, MA 02215" -258304,Wired Headphones,1,11.99,09/30/19 03:46,"969 Elm St, Boston, MA 02215" -258305,27in FHD Monitor,1,149.99,09/16/19 00:05,"759 Pine St, New York City, NY 10001" -258306,AA Batteries (4-pack),1,3.84,09/08/19 18:24,"241 Elm St, Atlanta, GA 30301" -258307,Bose SoundSport Headphones,1,99.99,09/23/19 10:21,"755 7th St, Dallas, TX 75001" -258308,Flatscreen TV,1,300,09/30/19 07:59,"783 Lake St, San Francisco, CA 94016" -258309,Wired Headphones,1,11.99,09/03/19 16:28,"113 Sunset St, Austin, TX 73301" -258310,AAA Batteries (4-pack),2,2.99,09/11/19 17:41,"959 West St, San Francisco, CA 94016" -258311,Lightning Charging Cable,1,14.95,09/06/19 11:01,"449 West St, Austin, TX 73301" -258312,AA Batteries (4-pack),1,3.84,09/17/19 21:43,"249 Elm St, Boston, MA 02215" -258313,AAA Batteries (4-pack),2,2.99,09/12/19 14:00,"471 South St, Boston, MA 02215" -258314,Google Phone,1,600,09/02/19 13:30,"375 Park St, San Francisco, CA 94016" -258315,Wired Headphones,1,11.99,09/17/19 19:20,"518 2nd St, Portland, ME 04101" -258316,AA Batteries (4-pack),1,3.84,09/16/19 11:33,"698 1st St, San Francisco, CA 94016" -258317,iPhone,1,700,09/04/19 23:13,"365 4th St, Boston, MA 02215" -258318,Bose SoundSport Headphones,1,99.99,09/25/19 19:10,"447 10th St, Boston, MA 02215" -258318,34in Ultrawide Monitor,1,379.99,09/25/19 19:10,"447 10th St, Boston, MA 02215" -258319,AAA Batteries (4-pack),3,2.99,09/03/19 09:48,"823 Walnut St, San Francisco, CA 94016" -258320,USB-C Charging Cable,1,11.95,09/15/19 08:13,"489 8th St, Los Angeles, CA 90001" -258321,iPhone,1,700,09/10/19 09:41,"767 Lincoln St, Atlanta, GA 30301" -258322,34in Ultrawide Monitor,1,379.99,09/13/19 19:55,"523 Wilson St, San Francisco, CA 94016" -258323,AA Batteries (4-pack),1,3.84,09/30/19 21:33,"571 Maple St, Boston, MA 02215" -258324,Macbook Pro Laptop,1,1700,09/28/19 12:26,"224 Washington St, San Francisco, CA 94016" -258325,AAA Batteries (4-pack),2,2.99,09/23/19 07:21,"473 7th St, San Francisco, CA 94016" -258326,27in FHD Monitor,1,149.99,09/27/19 23:04,"38 Spruce St, Los Angeles, CA 90001" -258327,ThinkPad Laptop,1,999.99,09/27/19 09:38,"261 Maple St, San Francisco, CA 94016" -258328,Wired Headphones,1,11.99,09/22/19 09:00,"219 Hickory St, Los Angeles, CA 90001" -258329,Lightning Charging Cable,1,14.95,09/15/19 22:56,"161 Willow St, San Francisco, CA 94016" -258330,27in 4K Gaming Monitor,1,389.99,09/07/19 19:43,"559 Dogwood St, Atlanta, GA 30301" -258331,Wired Headphones,1,11.99,09/09/19 15:53,"655 Dogwood St, Los Angeles, CA 90001" -258332,Wired Headphones,1,11.99,09/28/19 18:19,"872 2nd St, San Francisco, CA 94016" -258333,USB-C Charging Cable,1,11.95,09/14/19 17:11,"257 Chestnut St, New York City, NY 10001" -258334,Wired Headphones,1,11.99,09/06/19 14:16,"360 Church St, Dallas, TX 75001" -258335,AAA Batteries (4-pack),1,2.99,09/19/19 10:04,"634 Main St, Austin, TX 73301" -258336,USB-C Charging Cable,1,11.95,09/16/19 15:34,"724 Jackson St, Los Angeles, CA 90001" -258337,iPhone,1,700,09/28/19 11:38,"728 Sunset St, Portland, OR 97035" -258338,Lightning Charging Cable,1,14.95,09/06/19 16:45,"720 Pine St, Atlanta, GA 30301" -258339,USB-C Charging Cable,1,11.95,09/29/19 12:49,"980 Highland St, Boston, MA 02215" -258340,AA Batteries (4-pack),1,3.84,09/05/19 16:00,"572 2nd St, Portland, ME 04101" -258341,iPhone,1,700,09/08/19 15:46,"393 Adams St, Seattle, WA 98101" -258342,Google Phone,1,600,09/17/19 20:46,"228 Chestnut St, Dallas, TX 75001" -258343,Apple Airpods Headphones,1,150,09/02/19 14:48,"43 Ridge St, Boston, MA 02215" -258344,Wired Headphones,1,11.99,09/23/19 09:08,"539 6th St, Atlanta, GA 30301" -258345,Wired Headphones,2,11.99,09/25/19 00:36,"263 8th St, San Francisco, CA 94016" -258346,Wired Headphones,1,11.99,09/29/19 23:13,"678 Jackson St, Atlanta, GA 30301" -258347,Bose SoundSport Headphones,1,99.99,09/20/19 16:46,"105 Lincoln St, New York City, NY 10001" -258347,AAA Batteries (4-pack),1,2.99,09/20/19 16:46,"105 Lincoln St, New York City, NY 10001" -258348,AAA Batteries (4-pack),1,2.99,09/30/19 19:56,"251 7th St, San Francisco, CA 94016" -258349,AA Batteries (4-pack),1,3.84,09/25/19 07:37,"557 Main St, Dallas, TX 75001" -258350,27in 4K Gaming Monitor,1,389.99,09/01/19 16:18,"201 11th St, Los Angeles, CA 90001" -258351,Flatscreen TV,1,300,09/14/19 14:53,"505 Jackson St, Boston, MA 02215" -258352,AA Batteries (4-pack),1,3.84,09/08/19 10:00,"621 Washington St, Seattle, WA 98101" -258353,USB-C Charging Cable,1,11.95,09/17/19 10:58,"130 Spruce St, Boston, MA 02215" -258354,AAA Batteries (4-pack),1,2.99,09/02/19 12:17,"476 14th St, Seattle, WA 98101" -258355,USB-C Charging Cable,1,11.95,09/28/19 23:24,"919 Madison St, San Francisco, CA 94016" -258356,Apple Airpods Headphones,1,150,09/27/19 15:28,"670 4th St, Los Angeles, CA 90001" -258357,Apple Airpods Headphones,1,150,09/26/19 11:16,"56 Jackson St, San Francisco, CA 94016" -258358,27in FHD Monitor,1,149.99,09/20/19 13:40,"777 Cedar St, New York City, NY 10001" -258359,Wired Headphones,1,11.99,09/19/19 17:46,"188 Sunset St, Austin, TX 73301" -258360,Bose SoundSport Headphones,1,99.99,09/04/19 20:18,"128 Hickory St, Atlanta, GA 30301" -258361,Macbook Pro Laptop,1,1700,09/24/19 21:26,"952 South St, Portland, OR 97035" -258362,27in FHD Monitor,1,149.99,09/27/19 19:29,"883 8th St, Austin, TX 73301" -258363,Google Phone,1,600,09/24/19 17:59,"914 13th St, Los Angeles, CA 90001" -258364,AAA Batteries (4-pack),2,2.99,09/08/19 11:30,"994 Center St, San Francisco, CA 94016" -258365,Apple Airpods Headphones,1,150,09/25/19 23:41,"796 Hickory St, Dallas, TX 75001" -258366,Lightning Charging Cable,1,14.95,09/23/19 07:50,"883 Elm St, San Francisco, CA 94016" -258367,Wired Headphones,1,11.99,09/03/19 22:05,"678 Dogwood St, Los Angeles, CA 90001" -258368,AA Batteries (4-pack),1,3.84,09/15/19 11:01,"514 8th St, Boston, MA 02215" -258369,USB-C Charging Cable,1,11.95,09/28/19 06:53,"324 Johnson St, San Francisco, CA 94016" -258370,Wired Headphones,1,11.99,09/09/19 10:18,"256 12th St, Los Angeles, CA 90001" -258371,Bose SoundSport Headphones,1,99.99,09/05/19 13:10,"871 Jackson St, Los Angeles, CA 90001" -258372,Apple Airpods Headphones,1,150,09/07/19 23:21,"976 Chestnut St, San Francisco, CA 94016" -258373,Apple Airpods Headphones,1,150,09/19/19 12:24,"420 Pine St, San Francisco, CA 94016" -258374,Lightning Charging Cable,1,14.95,09/07/19 17:49,"424 River St, New York City, NY 10001" -258375,34in Ultrawide Monitor,1,379.99,09/15/19 20:11,"188 Lincoln St, Portland, OR 97035" -258376,Apple Airpods Headphones,1,150,09/04/19 12:10,"128 Pine St, New York City, NY 10001" -258376,AA Batteries (4-pack),2,3.84,09/04/19 12:10,"128 Pine St, New York City, NY 10001" -258377,Bose SoundSport Headphones,1,99.99,09/30/19 21:44,"417 Walnut St, Boston, MA 02215" -258378,Bose SoundSport Headphones,1,99.99,09/24/19 16:24,"466 Hill St, Portland, OR 97035" -258379,Apple Airpods Headphones,1,150,09/26/19 14:54,"110 Forest St, Portland, ME 04101" -258380,USB-C Charging Cable,1,11.95,09/07/19 17:41,"822 Highland St, New York City, NY 10001" -258381,iPhone,1,700,09/26/19 15:18,"818 Walnut St, Los Angeles, CA 90001" -258382,Wired Headphones,1,11.99,09/04/19 13:21,"698 6th St, Boston, MA 02215" -258383,AA Batteries (4-pack),1,3.84,09/16/19 10:48,"626 Chestnut St, Portland, ME 04101" -258384,AAA Batteries (4-pack),1,2.99,09/22/19 17:48,"495 Washington St, Portland, OR 97035" -258385,AAA Batteries (4-pack),1,2.99,09/26/19 21:25,"462 Jefferson St, Boston, MA 02215" -258386,USB-C Charging Cable,1,11.95,09/18/19 22:15,"392 Willow St, Austin, TX 73301" -258387,AAA Batteries (4-pack),1,2.99,09/12/19 13:06,"430 Park St, New York City, NY 10001" -258388,USB-C Charging Cable,1,11.95,09/19/19 21:21,"885 13th St, San Francisco, CA 94016" -258389,Lightning Charging Cable,1,14.95,09/05/19 12:01,"209 Elm St, Austin, TX 73301" -258390,27in 4K Gaming Monitor,1,389.99,09/08/19 23:36,"197 Lakeview St, Dallas, TX 75001" -258391,Bose SoundSport Headphones,1,99.99,09/04/19 00:55,"791 8th St, Dallas, TX 75001" -258392,27in FHD Monitor,1,149.99,09/17/19 12:52,"263 Forest St, New York City, NY 10001" -258393,34in Ultrawide Monitor,1,379.99,09/02/19 00:49,"309 Hickory St, San Francisco, CA 94016" -258394,Lightning Charging Cable,1,14.95,09/17/19 21:31,"372 Dogwood St, San Francisco, CA 94016" -258395,Wired Headphones,1,11.99,09/01/19 19:15,"861 Lakeview St, Seattle, WA 98101" -258396,20in Monitor,1,109.99,09/07/19 14:44,"454 Lake St, San Francisco, CA 94016" -258397,Bose SoundSport Headphones,1,99.99,09/12/19 10:14,"368 Cedar St, San Francisco, CA 94016" -258398,AA Batteries (4-pack),1,3.84,09/21/19 09:33,"737 12th St, Los Angeles, CA 90001" -258399,Apple Airpods Headphones,1,150,09/06/19 17:58,"314 Chestnut St, Austin, TX 73301" -258400,Lightning Charging Cable,1,14.95,09/08/19 21:09,"10 River St, Boston, MA 02215" -258401,Apple Airpods Headphones,1,150,09/17/19 17:11,"241 Cedar St, Portland, OR 97035" -258402,LG Washing Machine,1,600.0,09/20/19 22:31,"991 Willow St, Dallas, TX 75001" -258403,USB-C Charging Cable,1,11.95,09/08/19 09:01,"242 5th St, Boston, MA 02215" -258404,AA Batteries (4-pack),1,3.84,09/18/19 17:07,"657 Hill St, San Francisco, CA 94016" -258405,USB-C Charging Cable,1,11.95,09/08/19 23:49,"466 13th St, Austin, TX 73301" -258406,USB-C Charging Cable,1,11.95,09/14/19 22:48,"627 5th St, Seattle, WA 98101" -258407,Apple Airpods Headphones,1,150,09/06/19 14:57,"9 10th St, Dallas, TX 75001" -258408,USB-C Charging Cable,1,11.95,09/15/19 19:06,"957 Wilson St, New York City, NY 10001" -258409,Lightning Charging Cable,1,14.95,09/30/19 13:27,"246 Spruce St, San Francisco, CA 94016" -258410,Wired Headphones,1,11.99,09/19/19 17:53,"704 Adams St, Portland, OR 97035" -258411,27in 4K Gaming Monitor,1,389.99,09/13/19 15:16,"10 Spruce St, Los Angeles, CA 90001" -258412,USB-C Charging Cable,1,11.95,09/23/19 21:51,"199 Church St, Seattle, WA 98101" -258413,iPhone,1,700,09/30/19 20:54,"684 Walnut St, Boston, MA 02215" -258414,20in Monitor,1,109.99,09/02/19 13:21,"217 West St, Dallas, TX 75001" -258415,USB-C Charging Cable,2,11.95,09/05/19 07:43,"488 Maple St, New York City, NY 10001" -258415,Wired Headphones,1,11.99,09/05/19 07:43,"488 Maple St, New York City, NY 10001" -258416,ThinkPad Laptop,1,999.99,09/02/19 12:53,"878 Chestnut St, Seattle, WA 98101" -258417,AA Batteries (4-pack),1,3.84,09/14/19 19:45,"976 West St, San Francisco, CA 94016" -258418,Vareebadd Phone,1,400,09/16/19 20:26,"584 Wilson St, Los Angeles, CA 90001" -258418,Wired Headphones,2,11.99,09/16/19 20:26,"584 Wilson St, Los Angeles, CA 90001" -258419,Flatscreen TV,1,300,09/28/19 11:28,"904 Chestnut St, Los Angeles, CA 90001" -258420,27in 4K Gaming Monitor,1,389.99,09/10/19 17:54,"743 Spruce St, Los Angeles, CA 90001" -258421,AAA Batteries (4-pack),1,2.99,09/17/19 14:36,"871 Cedar St, Atlanta, GA 30301" -258422,AAA Batteries (4-pack),1,2.99,09/13/19 13:38,"713 North St, Los Angeles, CA 90001" -258423,Macbook Pro Laptop,1,1700,09/30/19 09:13,"455 9th St, Los Angeles, CA 90001" -258424,Wired Headphones,1,11.99,09/04/19 22:52,"368 Jackson St, Seattle, WA 98101" -258425,27in 4K Gaming Monitor,1,389.99,09/03/19 20:02,"879 Willow St, Boston, MA 02215" -258426,Bose SoundSport Headphones,1,99.99,09/16/19 23:58,"238 Elm St, Dallas, TX 75001" -258427,AA Batteries (4-pack),1,3.84,09/09/19 21:18,"627 5th St, Atlanta, GA 30301" -258428,27in 4K Gaming Monitor,1,389.99,09/23/19 14:48,"818 Elm St, Los Angeles, CA 90001" -258429,Lightning Charging Cable,1,14.95,09/15/19 17:33,"956 Hill St, Boston, MA 02215" -258430,Bose SoundSport Headphones,1,99.99,09/03/19 11:40,"492 4th St, Portland, OR 97035" -258431,Apple Airpods Headphones,1,150,09/11/19 21:46,"450 4th St, Dallas, TX 75001" -258432,Wired Headphones,1,11.99,09/19/19 19:01,"591 Cherry St, Los Angeles, CA 90001" -258433,Apple Airpods Headphones,1,150,09/17/19 11:14,"558 14th St, San Francisco, CA 94016" -258434,USB-C Charging Cable,1,11.95,09/08/19 17:49,"6 Ridge St, Los Angeles, CA 90001" -258435,Lightning Charging Cable,1,14.95,09/03/19 21:05,"777 Lincoln St, Seattle, WA 98101" -258436,AA Batteries (4-pack),1,3.84,09/10/19 08:54,"306 Jackson St, San Francisco, CA 94016" -258437,Wired Headphones,1,11.99,09/10/19 03:51,"529 River St, San Francisco, CA 94016" -258438,AAA Batteries (4-pack),1,2.99,09/20/19 14:37,"117 Cedar St, San Francisco, CA 94016" -258439,ThinkPad Laptop,1,999.99,09/05/19 22:28,"743 Hickory St, San Francisco, CA 94016" -258440,USB-C Charging Cable,1,11.95,09/21/19 08:08,"487 Jefferson St, Boston, MA 02215" -258441,Wired Headphones,1,11.99,09/17/19 08:17,"920 Maple St, Los Angeles, CA 90001" -258442,Bose SoundSport Headphones,1,99.99,09/23/19 19:19,"770 12th St, Austin, TX 73301" -258443,Wired Headphones,1,11.99,09/15/19 01:02,"389 7th St, Atlanta, GA 30301" -258444,Apple Airpods Headphones,1,150,09/15/19 19:52,"72 5th St, San Francisco, CA 94016" -258445,AAA Batteries (4-pack),1,2.99,09/18/19 02:49,"348 Willow St, New York City, NY 10001" -258446,Lightning Charging Cable,2,14.95,09/04/19 19:23,"552 11th St, San Francisco, CA 94016" -258447,AA Batteries (4-pack),1,3.84,09/24/19 20:45,"669 Maple St, New York City, NY 10001" -258448,Lightning Charging Cable,1,14.95,09/10/19 22:14,"186 Elm St, Los Angeles, CA 90001" -258449,USB-C Charging Cable,1,11.95,09/17/19 17:06,"45 Walnut St, San Francisco, CA 94016" -258450,AAA Batteries (4-pack),1,2.99,09/02/19 08:00,"500 6th St, San Francisco, CA 94016" -258451,20in Monitor,1,109.99,09/23/19 10:29,"766 Elm St, Seattle, WA 98101" -258452,AAA Batteries (4-pack),2,2.99,09/23/19 17:01,"744 Lake St, Austin, TX 73301" -258453,USB-C Charging Cable,1,11.95,09/11/19 18:57,"4 West St, Dallas, TX 75001" -258454,27in 4K Gaming Monitor,1,389.99,09/18/19 13:42,"268 Spruce St, San Francisco, CA 94016" -258455,27in 4K Gaming Monitor,1,389.99,09/29/19 17:19,"135 River St, Atlanta, GA 30301" -258456,AAA Batteries (4-pack),3,2.99,09/03/19 18:32,"788 West St, Los Angeles, CA 90001" -258457,Apple Airpods Headphones,1,150,09/15/19 09:56,"126 7th St, Los Angeles, CA 90001" -258458,Wired Headphones,1,11.99,09/13/19 09:27,"813 Forest St, Portland, OR 97035" -258459,Wired Headphones,1,11.99,09/28/19 15:02,"841 14th St, Seattle, WA 98101" -258460,ThinkPad Laptop,1,999.99,09/05/19 20:29,"771 Washington St, Portland, OR 97035" -258461,34in Ultrawide Monitor,1,379.99,09/08/19 12:39,"668 Hickory St, San Francisco, CA 94016" -258462,ThinkPad Laptop,1,999.99,09/18/19 09:05,"152 Washington St, New York City, NY 10001" -258463,AAA Batteries (4-pack),1,2.99,09/07/19 14:41,"526 5th St, San Francisco, CA 94016" -258464,27in FHD Monitor,1,149.99,09/12/19 17:34,"680 2nd St, San Francisco, CA 94016" -258465,Bose SoundSport Headphones,1,99.99,09/05/19 18:52,"253 Ridge St, San Francisco, CA 94016" -258466,AAA Batteries (4-pack),1,2.99,09/06/19 22:48,"935 Sunset St, San Francisco, CA 94016" -258467,Flatscreen TV,1,300,09/22/19 09:55,"994 Lake St, Portland, OR 97035" -258468,USB-C Charging Cable,1,11.95,09/22/19 16:07,"764 Hill St, Portland, ME 04101" -258469,Vareebadd Phone,1,400,09/08/19 10:25,"244 Cherry St, Seattle, WA 98101" -258469,USB-C Charging Cable,1,11.95,09/08/19 10:25,"244 Cherry St, Seattle, WA 98101" -258470,USB-C Charging Cable,1,11.95,09/24/19 09:38,"500 Meadow St, Boston, MA 02215" -258471,Vareebadd Phone,1,400,09/13/19 15:24,"818 Ridge St, Los Angeles, CA 90001" -258472,Apple Airpods Headphones,1,150,09/30/19 09:11,"441 5th St, Austin, TX 73301" -258473,USB-C Charging Cable,2,11.95,09/15/19 20:57,"854 Chestnut St, Los Angeles, CA 90001" -258474,Apple Airpods Headphones,1,150,09/25/19 11:24,"480 Hill St, San Francisco, CA 94016" -258475,Wired Headphones,1,11.99,09/03/19 14:59,"572 Cherry St, Los Angeles, CA 90001" -258476,Google Phone,1,600,09/02/19 20:34,"961 Maple St, Austin, TX 73301" -258477,Wired Headphones,1,11.99,09/02/19 23:31,"606 2nd St, San Francisco, CA 94016" -258478,34in Ultrawide Monitor,1,379.99,09/23/19 20:15,"824 Meadow St, San Francisco, CA 94016" -258479,Lightning Charging Cable,2,14.95,09/07/19 10:44,"683 Sunset St, Dallas, TX 75001" -258480,AA Batteries (4-pack),1,3.84,09/22/19 19:42,"388 Pine St, New York City, NY 10001" -258481,USB-C Charging Cable,1,11.95,09/20/19 14:19,"206 West St, Austin, TX 73301" -258482,27in FHD Monitor,1,149.99,09/30/19 17:25,"296 Washington St, San Francisco, CA 94016" -258483,Bose SoundSport Headphones,1,99.99,09/09/19 12:18,"259 Sunset St, New York City, NY 10001" -258484,Apple Airpods Headphones,1,150,09/01/19 15:35,"974 Washington St, San Francisco, CA 94016" -258485,Bose SoundSport Headphones,1,99.99,09/09/19 13:32,"354 Jackson St, Portland, OR 97035" -258486,Lightning Charging Cable,1,14.95,09/20/19 19:08,"113 Dogwood St, Portland, OR 97035" -258487,AA Batteries (4-pack),1,3.84,09/11/19 14:33,"261 Park St, Dallas, TX 75001" -258488,AAA Batteries (4-pack),1,2.99,09/27/19 17:17,"910 Highland St, San Francisco, CA 94016" -258489,AA Batteries (4-pack),1,3.84,09/29/19 09:48,"795 2nd St, Austin, TX 73301" -258490,34in Ultrawide Monitor,1,379.99,09/09/19 17:17,"39 Park St, Los Angeles, CA 90001" -258491,AA Batteries (4-pack),1,3.84,09/04/19 21:23,"568 Center St, Los Angeles, CA 90001" -258492,AA Batteries (4-pack),2,3.84,09/28/19 07:46,"946 7th St, Seattle, WA 98101" -258493,USB-C Charging Cable,1,11.95,09/16/19 17:30,"335 11th St, Dallas, TX 75001" -258494,Bose SoundSport Headphones,1,99.99,09/13/19 23:34,"588 Wilson St, Boston, MA 02215" -258495,34in Ultrawide Monitor,1,379.99,09/12/19 17:37,"152 Center St, New York City, NY 10001" -258496,AA Batteries (4-pack),2,3.84,09/20/19 23:30,"290 Jefferson St, Boston, MA 02215" -258497,AA Batteries (4-pack),1,3.84,09/11/19 11:13,"54 Hickory St, Boston, MA 02215" -258498,AA Batteries (4-pack),1,3.84,09/18/19 17:40,"349 Maple St, San Francisco, CA 94016" -258499,ThinkPad Laptop,1,999.99,09/25/19 12:28,"902 5th St, Los Angeles, CA 90001" -258500,Wired Headphones,1,11.99,09/08/19 18:46,"237 10th St, San Francisco, CA 94016" -258501,AA Batteries (4-pack),1,3.84,09/27/19 12:31,"501 Chestnut St, Dallas, TX 75001" -258502,Lightning Charging Cable,2,14.95,09/03/19 11:39,"469 12th St, San Francisco, CA 94016" -258503,USB-C Charging Cable,1,11.95,09/15/19 10:04,"761 West St, New York City, NY 10001" -258504,AA Batteries (4-pack),2,3.84,09/10/19 15:02,"548 12th St, New York City, NY 10001" -258505,27in 4K Gaming Monitor,1,389.99,09/14/19 18:10,"27 1st St, Portland, ME 04101" -258506,Bose SoundSport Headphones,1,99.99,09/21/19 14:43,"171 Hill St, Dallas, TX 75001" -258507,Lightning Charging Cable,1,14.95,09/17/19 11:09,"386 14th St, Boston, MA 02215" -258508,Bose SoundSport Headphones,1,99.99,09/04/19 23:05,"150 Cedar St, Portland, OR 97035" -258509,AA Batteries (4-pack),1,3.84,09/04/19 18:11,"25 Ridge St, Dallas, TX 75001" -258510,AA Batteries (4-pack),3,3.84,09/01/19 12:24,"816 Jackson St, Boston, MA 02215" -258511,AAA Batteries (4-pack),1,2.99,09/29/19 10:21,"216 Jackson St, San Francisco, CA 94016" -258512,USB-C Charging Cable,1,11.95,09/07/19 22:43,"367 8th St, San Francisco, CA 94016" -258513,27in FHD Monitor,1,149.99,09/02/19 10:09,"980 Chestnut St, Dallas, TX 75001" -258514,Google Phone,1,600,09/14/19 15:25,"610 Walnut St, Dallas, TX 75001" -258514,USB-C Charging Cable,1,11.95,09/14/19 15:25,"610 Walnut St, Dallas, TX 75001" -258514,Wired Headphones,2,11.99,09/14/19 15:25,"610 Walnut St, Dallas, TX 75001" -258515,AA Batteries (4-pack),2,3.84,09/17/19 22:32,"95 Willow St, Dallas, TX 75001" -258516,Bose SoundSport Headphones,1,99.99,09/03/19 17:47,"959 Spruce St, Dallas, TX 75001" -258517,Lightning Charging Cable,1,14.95,09/26/19 13:00,"179 Elm St, New York City, NY 10001" -258518,AA Batteries (4-pack),3,3.84,09/14/19 13:19,"105 2nd St, Portland, ME 04101" -258519,Apple Airpods Headphones,1,150,09/02/19 18:33,"320 7th St, Los Angeles, CA 90001" -258520,Macbook Pro Laptop,1,1700,09/06/19 13:54,"340 Main St, Los Angeles, CA 90001" -258521,USB-C Charging Cable,2,11.95,09/16/19 09:41,"342 6th St, San Francisco, CA 94016" -258522,Wired Headphones,1,11.99,09/18/19 13:26,"266 Hickory St, Boston, MA 02215" -258523,Lightning Charging Cable,2,14.95,09/13/19 12:52,"109 1st St, San Francisco, CA 94016" -258524,AA Batteries (4-pack),1,3.84,09/02/19 15:34,"5 Madison St, Boston, MA 02215" -258525,iPhone,1,700,09/07/19 17:40,"982 Lincoln St, Seattle, WA 98101" -258526,USB-C Charging Cable,1,11.95,09/05/19 21:57,"405 7th St, Dallas, TX 75001" -258527,Flatscreen TV,1,300,09/02/19 10:41,"960 2nd St, New York City, NY 10001" -258528,Google Phone,1,600,09/14/19 11:08,"512 Willow St, Austin, TX 73301" -258528,USB-C Charging Cable,1,11.95,09/14/19 11:08,"512 Willow St, Austin, TX 73301" -258529,AA Batteries (4-pack),1,3.84,09/18/19 21:25,"204 Washington St, Los Angeles, CA 90001" -258530,Wired Headphones,1,11.99,09/30/19 12:57,"394 Jefferson St, Dallas, TX 75001" -258531,Lightning Charging Cable,1,14.95,09/10/19 17:29,"913 Highland St, Boston, MA 02215" -258532,Wired Headphones,1,11.99,09/28/19 00:07,"471 1st St, Dallas, TX 75001" -258533,27in FHD Monitor,1,149.99,09/14/19 20:52,"203 River St, Austin, TX 73301" -258534,Apple Airpods Headphones,1,150,09/23/19 14:13,"342 South St, Seattle, WA 98101" -258535,USB-C Charging Cable,1,11.95,09/10/19 15:56,"745 8th St, New York City, NY 10001" -258536,Bose SoundSport Headphones,1,99.99,09/06/19 15:01,"738 Jackson St, Los Angeles, CA 90001" -258537,USB-C Charging Cable,1,11.95,09/16/19 00:48,"841 4th St, Los Angeles, CA 90001" -258538,Flatscreen TV,1,300,09/22/19 14:12,"746 Johnson St, Austin, TX 73301" -258539,Wired Headphones,1,11.99,09/03/19 13:49,"651 Walnut St, Atlanta, GA 30301" -258540,Google Phone,1,600,09/22/19 12:18,"713 Lakeview St, Portland, ME 04101" -258541,Bose SoundSport Headphones,1,99.99,09/11/19 16:21,"189 Pine St, San Francisco, CA 94016" -258542,Apple Airpods Headphones,1,150,09/15/19 21:43,"898 7th St, San Francisco, CA 94016" -258543,Google Phone,1,600,09/08/19 18:50,"192 5th St, San Francisco, CA 94016" -258544,Bose SoundSport Headphones,1,99.99,09/01/19 16:37,"305 Walnut St, Seattle, WA 98101" -258545,iPhone,1,700,09/16/19 21:43,"760 13th St, San Francisco, CA 94016" -258545,Lightning Charging Cable,2,14.95,09/16/19 21:43,"760 13th St, San Francisco, CA 94016" -258546,ThinkPad Laptop,1,999.99,09/02/19 08:22,"404 7th St, Seattle, WA 98101" -258547,34in Ultrawide Monitor,1,379.99,09/17/19 14:26,"873 Willow St, New York City, NY 10001" -258548,AAA Batteries (4-pack),1,2.99,09/15/19 08:59,"358 South St, Atlanta, GA 30301" -258549,Lightning Charging Cable,1,14.95,09/25/19 06:26,"191 13th St, Los Angeles, CA 90001" -258550,USB-C Charging Cable,1,11.95,09/27/19 19:14,"509 1st St, Portland, OR 97035" -258551,Apple Airpods Headphones,1,150,09/08/19 21:57,"784 5th St, Dallas, TX 75001" -258552,27in FHD Monitor,1,149.99,09/06/19 12:40,"262 7th St, San Francisco, CA 94016" -258553,AAA Batteries (4-pack),1,2.99,09/14/19 14:38,"38 Wilson St, Boston, MA 02215" -258554,Bose SoundSport Headphones,1,99.99,09/18/19 13:19,"75 Maple St, Atlanta, GA 30301" -258555,Bose SoundSport Headphones,1,99.99,09/12/19 17:09,"752 1st St, San Francisco, CA 94016" -258556,Apple Airpods Headphones,1,150,09/24/19 08:35,"93 Elm St, Atlanta, GA 30301" -258557,iPhone,1,700,09/12/19 20:47,"137 Cedar St, Los Angeles, CA 90001" -258557,Lightning Charging Cable,1,14.95,09/12/19 20:47,"137 Cedar St, Los Angeles, CA 90001" -258558,Wired Headphones,1,11.99,09/02/19 13:19,"559 13th St, Seattle, WA 98101" -258559,AA Batteries (4-pack),1,3.84,09/26/19 09:18,"373 Pine St, New York City, NY 10001" -258560,Lightning Charging Cable,1,14.95,09/12/19 17:52,"955 Jefferson St, San Francisco, CA 94016" -258561,27in FHD Monitor,1,149.99,09/07/19 01:28,"421 South St, Los Angeles, CA 90001" -258562,USB-C Charging Cable,1,11.95,09/21/19 14:58,"453 Adams St, San Francisco, CA 94016" -258563,Apple Airpods Headphones,1,150,09/26/19 13:58,"256 Main St, New York City, NY 10001" -258564,USB-C Charging Cable,1,11.95,09/30/19 22:42,"267 Park St, San Francisco, CA 94016" -258565,Bose SoundSport Headphones,1,99.99,09/13/19 10:01,"104 Walnut St, New York City, NY 10001" -258566,iPhone,1,700,09/11/19 21:35,"868 Jackson St, Austin, TX 73301" -258567,27in 4K Gaming Monitor,1,389.99,09/14/19 16:52,"671 Ridge St, Los Angeles, CA 90001" -258568,27in FHD Monitor,1,149.99,09/01/19 18:44,"718 8th St, Los Angeles, CA 90001" -258569,Bose SoundSport Headphones,1,99.99,09/30/19 23:32,"557 Johnson St, Boston, MA 02215" -258570,Apple Airpods Headphones,1,150,09/17/19 13:00,"740 Highland St, Portland, OR 97035" -258571,ThinkPad Laptop,1,999.99,09/04/19 18:54,"192 Meadow St, Los Angeles, CA 90001" -258572,AA Batteries (4-pack),1,3.84,09/26/19 21:03,"830 Walnut St, Boston, MA 02215" -258573,ThinkPad Laptop,1,999.99,09/02/19 22:44,"964 Church St, San Francisco, CA 94016" -258574,34in Ultrawide Monitor,1,379.99,09/26/19 21:57,"889 Madison St, San Francisco, CA 94016" -258575,AAA Batteries (4-pack),1,2.99,09/21/19 15:39,"352 Walnut St, Dallas, TX 75001" -258576,Wired Headphones,1,11.99,09/12/19 18:09,"458 Hickory St, Boston, MA 02215" -258577,USB-C Charging Cable,1,11.95,09/04/19 13:35,"601 North St, Seattle, WA 98101" -258578,AA Batteries (4-pack),1,3.84,09/12/19 08:12,"357 4th St, Los Angeles, CA 90001" -258579,USB-C Charging Cable,2,11.95,09/03/19 15:04,"563 12th St, Seattle, WA 98101" -258580,AA Batteries (4-pack),1,3.84,09/14/19 17:19,"11 Meadow St, New York City, NY 10001" -258581,AAA Batteries (4-pack),1,2.99,09/19/19 10:05,"501 Pine St, Seattle, WA 98101" -258582,Vareebadd Phone,1,400,09/24/19 21:28,"352 Lake St, Los Angeles, CA 90001" -258582,USB-C Charging Cable,2,11.95,09/24/19 21:28,"352 Lake St, Los Angeles, CA 90001" -258583,AAA Batteries (4-pack),2,2.99,09/14/19 18:12,"398 Church St, Portland, OR 97035" -258584,USB-C Charging Cable,1,11.95,09/24/19 22:54,"780 Maple St, New York City, NY 10001" -258585,AAA Batteries (4-pack),2,2.99,09/24/19 13:22,"357 Jefferson St, Atlanta, GA 30301" -258586,AA Batteries (4-pack),1,3.84,09/02/19 23:57,"694 14th St, Boston, MA 02215" -258587,AAA Batteries (4-pack),1,2.99,09/09/19 20:55,"144 Jackson St, San Francisco, CA 94016" -258588,USB-C Charging Cable,1,11.95,09/10/19 21:02,"822 14th St, San Francisco, CA 94016" -258589,USB-C Charging Cable,1,11.95,09/15/19 09:59,"513 1st St, San Francisco, CA 94016" -,,,,, -258590,AAA Batteries (4-pack),3,2.99,09/08/19 19:55,"148 Main St, San Francisco, CA 94016" -258591,Lightning Charging Cable,1,14.95,09/06/19 09:16,"804 6th St, New York City, NY 10001" -258592,Apple Airpods Headphones,1,150,09/16/19 16:02,"526 Center St, Austin, TX 73301" -258593,Bose SoundSport Headphones,1,99.99,09/06/19 19:50,"143 Ridge St, Dallas, TX 75001" -258594,USB-C Charging Cable,1,11.95,09/20/19 13:55,"832 River St, Atlanta, GA 30301" -258595,AAA Batteries (4-pack),1,2.99,09/15/19 13:11,"674 5th St, Dallas, TX 75001" -258596,USB-C Charging Cable,1,11.95,09/22/19 09:22,"614 Johnson St, Portland, OR 97035" -258597,Lightning Charging Cable,2,14.95,09/26/19 21:17,"691 14th St, San Francisco, CA 94016" -258598,Lightning Charging Cable,1,14.95,09/28/19 11:27,"58 8th St, Austin, TX 73301" -258599,Lightning Charging Cable,1,14.95,09/03/19 14:46,"59 Lakeview St, Los Angeles, CA 90001" -258600,Bose SoundSport Headphones,1,99.99,09/23/19 14:42,"862 Highland St, Dallas, TX 75001" -258601,AAA Batteries (4-pack),1,2.99,09/01/19 13:59,"395 6th St, New York City, NY 10001" -258602,AA Batteries (4-pack),1,3.84,09/27/19 15:17,"183 Jackson St, Dallas, TX 75001" -258603,27in 4K Gaming Monitor,1,389.99,09/04/19 16:57,"126 Cedar St, New York City, NY 10001" -258604,AA Batteries (4-pack),1,3.84,09/10/19 10:43,"643 8th St, Boston, MA 02215" -258605,AAA Batteries (4-pack),1,2.99,09/09/19 19:22,"280 13th St, Boston, MA 02215" -258606,USB-C Charging Cable,1,11.95,09/16/19 12:27,"151 5th St, Seattle, WA 98101" -258607,USB-C Charging Cable,1,11.95,09/21/19 11:54,"249 7th St, New York City, NY 10001" -258608,AA Batteries (4-pack),1,3.84,09/22/19 22:54,"39 Jackson St, Los Angeles, CA 90001" -258609,Wired Headphones,1,11.99,09/26/19 14:51,"699 Spruce St, San Francisco, CA 94016" -258610,27in 4K Gaming Monitor,1,389.99,09/19/19 13:12,"595 Hill St, Boston, MA 02215" -258611,Wired Headphones,1,11.99,09/25/19 19:09,"1 Johnson St, Seattle, WA 98101" -258612,AA Batteries (4-pack),1,3.84,09/17/19 10:07,"347 11th St, Boston, MA 02215" -258613,20in Monitor,1,109.99,09/06/19 10:35,"732 Lakeview St, New York City, NY 10001" -258614,AA Batteries (4-pack),1,3.84,09/06/19 00:44,"612 West St, San Francisco, CA 94016" -258615,AAA Batteries (4-pack),3,2.99,09/18/19 12:27,"788 2nd St, Los Angeles, CA 90001" -258616,Flatscreen TV,1,300,09/28/19 21:35,"459 11th St, San Francisco, CA 94016" -258617,AA Batteries (4-pack),2,3.84,09/12/19 16:55,"883 Jefferson St, Boston, MA 02215" -258618,AA Batteries (4-pack),1,3.84,09/14/19 12:39,"818 Maple St, Portland, ME 04101" -258619,AA Batteries (4-pack),1,3.84,09/25/19 11:02,"519 Cedar St, New York City, NY 10001" -258620,AA Batteries (4-pack),2,3.84,09/24/19 19:23,"915 Johnson St, San Francisco, CA 94016" -258621,AA Batteries (4-pack),1,3.84,09/26/19 20:09,"894 Wilson St, Austin, TX 73301" -258622,AA Batteries (4-pack),1,3.84,09/16/19 21:04,"578 Madison St, New York City, NY 10001" -258623,27in 4K Gaming Monitor,1,389.99,09/05/19 00:17,"765 Hill St, San Francisco, CA 94016" -258624,AA Batteries (4-pack),2,3.84,09/19/19 12:05,"7 14th St, Los Angeles, CA 90001" -258625,Lightning Charging Cable,1,14.95,09/04/19 11:39,"806 Main St, San Francisco, CA 94016" -258625,Bose SoundSport Headphones,1,99.99,09/04/19 11:39,"806 Main St, San Francisco, CA 94016" -258626,iPhone,1,700,09/07/19 17:42,"146 Forest St, New York City, NY 10001" -258627,USB-C Charging Cable,1,11.95,09/22/19 08:24,"834 Elm St, Los Angeles, CA 90001" -258628,Wired Headphones,1,11.99,09/20/19 15:32,"356 Pine St, Dallas, TX 75001" -258629,Lightning Charging Cable,1,14.95,09/07/19 12:06,"989 River St, San Francisco, CA 94016" -258630,AAA Batteries (4-pack),4,2.99,09/12/19 09:44,"125 Pine St, New York City, NY 10001" -258631,AA Batteries (4-pack),1,3.84,09/20/19 08:21,"676 8th St, San Francisco, CA 94016" -258632,Apple Airpods Headphones,1,150,09/21/19 17:01,"104 Jefferson St, Boston, MA 02215" -258633,Macbook Pro Laptop,1,1700,09/24/19 06:57,"61 Washington St, Boston, MA 02215" -258634,AA Batteries (4-pack),1,3.84,09/29/19 20:40,"211 Spruce St, Boston, MA 02215" -258635,AA Batteries (4-pack),1,3.84,09/06/19 09:36,"420 Johnson St, Seattle, WA 98101" -258636,AAA Batteries (4-pack),1,2.99,09/24/19 20:44,"348 River St, Los Angeles, CA 90001" -258637,Apple Airpods Headphones,1,150,09/12/19 06:44,"462 Highland St, San Francisco, CA 94016" -258638,20in Monitor,1,109.99,09/10/19 11:38,"353 Lakeview St, Seattle, WA 98101" -258639,Wired Headphones,1,11.99,09/29/19 22:03,"972 1st St, Boston, MA 02215" -258640,AAA Batteries (4-pack),1,2.99,09/26/19 13:57,"649 Church St, New York City, NY 10001" -258641,USB-C Charging Cable,1,11.95,09/07/19 13:43,"118 Hill St, San Francisco, CA 94016" -258642,27in FHD Monitor,1,149.99,09/17/19 12:47,"668 Spruce St, Boston, MA 02215" -258643,AA Batteries (4-pack),1,3.84,09/04/19 19:41,"12 Main St, San Francisco, CA 94016" -258644,iPhone,1,700,09/30/19 10:34,"587 North St, Atlanta, GA 30301" -258645,Bose SoundSport Headphones,1,99.99,09/12/19 19:07,"599 9th St, San Francisco, CA 94016" -258646,Lightning Charging Cable,1,14.95,09/29/19 05:40,"606 Lincoln St, Austin, TX 73301" -258647,USB-C Charging Cable,2,11.95,09/26/19 13:34,"147 Forest St, Seattle, WA 98101" -258648,27in FHD Monitor,1,149.99,09/15/19 08:20,"79 5th St, Dallas, TX 75001" -258649,AAA Batteries (4-pack),1,2.99,09/18/19 17:32,"766 Highland St, San Francisco, CA 94016" -258650,AA Batteries (4-pack),1,3.84,09/15/19 11:36,"317 Cedar St, Los Angeles, CA 90001" -258651,Wired Headphones,1,11.99,09/20/19 19:44,"918 Sunset St, San Francisco, CA 94016" -258652,iPhone,1,700,09/09/19 23:04,"53 Lakeview St, Boston, MA 02215" -258653,27in 4K Gaming Monitor,1,389.99,09/02/19 09:31,"340 Pine St, Dallas, TX 75001" -258654,Lightning Charging Cable,1,14.95,09/03/19 08:52,"674 12th St, Portland, OR 97035" -258655,Wired Headphones,1,11.99,09/26/19 06:45,"747 1st St, San Francisco, CA 94016" -258656,Flatscreen TV,1,300,09/03/19 10:35,"466 Cedar St, Los Angeles, CA 90001" -258657,AAA Batteries (4-pack),1,2.99,09/04/19 12:01,"799 13th St, Portland, OR 97035" -258658,ThinkPad Laptop,1,999.99,09/18/19 21:44,"123 Pine St, San Francisco, CA 94016" -258659,Lightning Charging Cable,1,14.95,09/01/19 21:19,"7 Wilson St, Boston, MA 02215" -258660,USB-C Charging Cable,1,11.95,09/29/19 07:59,"701 West St, Atlanta, GA 30301" -258661,27in 4K Gaming Monitor,1,389.99,09/13/19 18:09,"531 Chestnut St, Boston, MA 02215" -258661,34in Ultrawide Monitor,1,379.99,09/13/19 18:09,"531 Chestnut St, Boston, MA 02215" -258662,USB-C Charging Cable,1,11.95,09/19/19 20:05,"65 Washington St, San Francisco, CA 94016" -258663,AA Batteries (4-pack),3,3.84,09/03/19 13:27,"848 Spruce St, San Francisco, CA 94016" -258664,Bose SoundSport Headphones,1,99.99,09/09/19 22:55,"354 4th St, New York City, NY 10001" -258665,Apple Airpods Headphones,1,150,09/17/19 01:40,"691 Lincoln St, San Francisco, CA 94016" -258666,USB-C Charging Cable,1,11.95,09/20/19 19:57,"543 8th St, San Francisco, CA 94016" -258667,AA Batteries (4-pack),1,3.84,09/01/19 13:39,"4 Meadow St, Dallas, TX 75001" -258668,USB-C Charging Cable,3,11.95,09/23/19 12:53,"959 Spruce St, Boston, MA 02215" -258669,AAA Batteries (4-pack),3,2.99,09/29/19 21:52,"113 Madison St, Los Angeles, CA 90001" -258670,Lightning Charging Cable,1,14.95,09/22/19 18:47,"866 Adams St, San Francisco, CA 94016" -258671,Apple Airpods Headphones,1,150,09/01/19 13:01,"121 Ridge St, San Francisco, CA 94016" -258672,USB-C Charging Cable,1,11.95,09/24/19 18:21,"773 Lakeview St, Atlanta, GA 30301" -258673,34in Ultrawide Monitor,1,379.99,09/27/19 17:20,"472 Walnut St, San Francisco, CA 94016" -258674,AAA Batteries (4-pack),3,2.99,09/08/19 12:22,"84 Hill St, Seattle, WA 98101" -258675,Apple Airpods Headphones,1,150,09/19/19 09:16,"116 South St, Boston, MA 02215" -258676,Bose SoundSport Headphones,1,99.99,09/22/19 18:30,"876 Washington St, Boston, MA 02215" -258677,Wired Headphones,2,11.99,09/27/19 13:21,"476 Hickory St, Los Angeles, CA 90001" -258678,iPhone,1,700,09/06/19 14:19,"486 Cedar St, Seattle, WA 98101" -258679,27in 4K Gaming Monitor,1,389.99,09/16/19 07:46,"821 9th St, New York City, NY 10001" -258680,USB-C Charging Cable,1,11.95,09/02/19 07:43,"626 Park St, Los Angeles, CA 90001" -258681,27in 4K Gaming Monitor,1,389.99,09/03/19 02:47,"553 Meadow St, Boston, MA 02215" -258682,Apple Airpods Headphones,1,150,09/26/19 10:58,"148 9th St, San Francisco, CA 94016" -258683,Wired Headphones,1,11.99,09/24/19 00:41,"529 1st St, Los Angeles, CA 90001" -258684,USB-C Charging Cable,1,11.95,09/03/19 14:48,"727 Johnson St, Boston, MA 02215" -258685,Wired Headphones,1,11.99,09/21/19 21:29,"684 Spruce St, Los Angeles, CA 90001" -258686,Lightning Charging Cable,1,14.95,09/23/19 20:17,"656 South St, San Francisco, CA 94016" -258687,34in Ultrawide Monitor,1,379.99,09/08/19 16:29,"81 Spruce St, Dallas, TX 75001" -258688,Bose SoundSport Headphones,1,99.99,09/06/19 13:07,"525 Ridge St, Los Angeles, CA 90001" -258689,AAA Batteries (4-pack),1,2.99,09/19/19 15:45,"473 14th St, Dallas, TX 75001" -258690,AA Batteries (4-pack),1,3.84,09/05/19 11:57,"901 5th St, Los Angeles, CA 90001" -258691,USB-C Charging Cable,1,11.95,09/02/19 08:21,"296 Jackson St, Atlanta, GA 30301" -258692,AAA Batteries (4-pack),1,2.99,09/24/19 22:01,"904 9th St, San Francisco, CA 94016" -258693,USB-C Charging Cable,1,11.95,09/17/19 22:52,"37 Johnson St, Los Angeles, CA 90001" -258694,Macbook Pro Laptop,1,1700,09/18/19 17:44,"684 Meadow St, New York City, NY 10001" -258695,AA Batteries (4-pack),1,3.84,09/26/19 12:21,"204 Jefferson St, Los Angeles, CA 90001" -258696,Apple Airpods Headphones,1,150,09/15/19 12:16,"664 7th St, Boston, MA 02215" -258697,AA Batteries (4-pack),2,3.84,09/11/19 02:09,"391 South St, New York City, NY 10001" -258698,Lightning Charging Cable,2,14.95,09/08/19 08:49,"266 Lincoln St, New York City, NY 10001" -258699,AA Batteries (4-pack),1,3.84,09/20/19 14:51,"207 Forest St, San Francisco, CA 94016" -258700,Apple Airpods Headphones,1,150,09/22/19 08:11,"471 Wilson St, New York City, NY 10001" -258701,Wired Headphones,1,11.99,09/21/19 16:27,"694 13th St, Los Angeles, CA 90001" -258702,Lightning Charging Cable,1,14.95,09/15/19 14:44,"934 Maple St, New York City, NY 10001" -258703,AA Batteries (4-pack),1,3.84,09/03/19 21:47,"383 North St, Seattle, WA 98101" -258704,Macbook Pro Laptop,1,1700,09/04/19 23:38,"367 Park St, Seattle, WA 98101" -258705,Lightning Charging Cable,1,14.95,09/15/19 22:11,"646 13th St, San Francisco, CA 94016" -258706,Wired Headphones,1,11.99,09/16/19 18:13,"58 West St, San Francisco, CA 94016" -258707,Bose SoundSport Headphones,1,99.99,09/24/19 15:55,"992 River St, San Francisco, CA 94016" -258707,USB-C Charging Cable,1,11.95,09/24/19 15:55,"992 River St, San Francisco, CA 94016" -258708,AAA Batteries (4-pack),1,2.99,09/11/19 08:12,"837 Washington St, Seattle, WA 98101" -258708,27in 4K Gaming Monitor,1,389.99,09/11/19 08:12,"837 Washington St, Seattle, WA 98101" -258709,ThinkPad Laptop,1,999.99,09/24/19 20:50,"820 Jackson St, San Francisco, CA 94016" -258710,LG Dryer,1,600.0,09/03/19 16:34,"683 12th St, Los Angeles, CA 90001" -258711,Lightning Charging Cable,1,14.95,09/04/19 04:17,"906 Highland St, Los Angeles, CA 90001" -258712,Bose SoundSport Headphones,1,99.99,09/15/19 14:09,"667 Center St, Boston, MA 02215" -258713,Wired Headphones,1,11.99,09/08/19 16:26,"683 Main St, San Francisco, CA 94016" -258714,34in Ultrawide Monitor,1,379.99,09/14/19 21:06,"905 Meadow St, Atlanta, GA 30301" -258715,Lightning Charging Cable,1,14.95,09/15/19 16:50,"550 10th St, Portland, OR 97035" -258715,Lightning Charging Cable,1,14.95,09/15/19 16:50,"550 10th St, Portland, OR 97035" -258716,Wired Headphones,1,11.99,09/27/19 21:36,"371 Forest St, Portland, OR 97035" -258717,Apple Airpods Headphones,1,150,09/25/19 09:54,"694 Hill St, Boston, MA 02215" -258718,27in FHD Monitor,1,149.99,09/23/19 14:23,"116 Lincoln St, San Francisco, CA 94016" -258719,USB-C Charging Cable,1,11.95,09/01/19 15:36,"412 Elm St, Austin, TX 73301" -258720,AAA Batteries (4-pack),1,2.99,09/02/19 17:07,"922 Walnut St, Boston, MA 02215" -258721,AA Batteries (4-pack),1,3.84,09/25/19 18:24,"612 11th St, Seattle, WA 98101" -258722,AA Batteries (4-pack),1,3.84,09/28/19 22:11,"461 Madison St, San Francisco, CA 94016" -258723,AA Batteries (4-pack),1,3.84,09/25/19 12:31,"463 9th St, Boston, MA 02215" -258724,Google Phone,1,600,09/07/19 21:58,"37 6th St, Los Angeles, CA 90001" -258725,Apple Airpods Headphones,1,150,09/22/19 16:46,"93 Willow St, Seattle, WA 98101" -258726,27in FHD Monitor,1,149.99,09/11/19 11:15,"886 8th St, Boston, MA 02215" -258727,Bose SoundSport Headphones,1,99.99,09/23/19 14:14,"672 4th St, New York City, NY 10001" -258728,27in FHD Monitor,1,149.99,09/18/19 18:53,"690 Wilson St, Seattle, WA 98101" -258729,Google Phone,1,600,09/09/19 16:45,"385 Chestnut St, Austin, TX 73301" -258730,27in 4K Gaming Monitor,1,389.99,09/30/19 11:03,"746 5th St, New York City, NY 10001" -258731,iPhone,1,700,09/20/19 13:00,"146 Jackson St, Los Angeles, CA 90001" -258731,Lightning Charging Cable,1,14.95,09/20/19 13:00,"146 Jackson St, Los Angeles, CA 90001" -258732,Apple Airpods Headphones,1,150,09/30/19 20:58,"695 River St, New York City, NY 10001" -258733,Macbook Pro Laptop,1,1700,09/20/19 10:22,"791 South St, Boston, MA 02215" -258734,USB-C Charging Cable,1,11.95,09/27/19 19:43,"107 5th St, New York City, NY 10001" -258735,USB-C Charging Cable,1,11.95,09/11/19 16:25,"396 Jackson St, San Francisco, CA 94016" -258736,Apple Airpods Headphones,1,150,09/02/19 20:09,"599 River St, Portland, ME 04101" -258737,Lightning Charging Cable,1,14.95,09/18/19 17:51,"824 5th St, Portland, OR 97035" -258738,AAA Batteries (4-pack),1,2.99,09/13/19 14:07,"487 Church St, Portland, ME 04101" -258739,ThinkPad Laptop,1,999.99,09/29/19 12:29,"492 Cherry St, New York City, NY 10001" -258740,27in 4K Gaming Monitor,1,389.99,09/19/19 19:15,"90 Spruce St, Boston, MA 02215" -258741,27in FHD Monitor,1,149.99,09/26/19 07:10,"850 Madison St, San Francisco, CA 94016" -258742,Apple Airpods Headphones,1,150,09/22/19 21:26,"661 10th St, San Francisco, CA 94016" -258743,AA Batteries (4-pack),1,3.84,09/27/19 10:39,"260 Elm St, San Francisco, CA 94016" -258744,Bose SoundSport Headphones,1,99.99,09/30/19 13:34,"189 Pine St, Boston, MA 02215" -258745,AAA Batteries (4-pack),1,2.99,09/20/19 09:36,"560 13th St, San Francisco, CA 94016" -258746,Bose SoundSport Headphones,1,99.99,09/10/19 19:57,"559 Hill St, Los Angeles, CA 90001" -258747,Lightning Charging Cable,1,14.95,09/19/19 19:50,"165 Cedar St, New York City, NY 10001" -258748,USB-C Charging Cable,1,11.95,09/18/19 22:46,"92 Park St, Dallas, TX 75001" -258749,USB-C Charging Cable,3,11.95,09/08/19 17:03,"911 Chestnut St, New York City, NY 10001" -258750,USB-C Charging Cable,1,11.95,09/01/19 13:59,"634 South St, San Francisco, CA 94016" -258751,USB-C Charging Cable,1,11.95,09/11/19 19:10,"129 Walnut St, Los Angeles, CA 90001" -258752,Bose SoundSport Headphones,1,99.99,09/22/19 07:00,"875 West St, San Francisco, CA 94016" -258753,Wired Headphones,1,11.99,09/07/19 18:31,"663 2nd St, Los Angeles, CA 90001" -258754,USB-C Charging Cable,1,11.95,09/28/19 05:27,"529 Main St, Los Angeles, CA 90001" -258755,iPhone,1,700,09/03/19 21:41,"17 Highland St, New York City, NY 10001" -258755,Lightning Charging Cable,1,14.95,09/03/19 21:41,"17 Highland St, New York City, NY 10001" -258756,iPhone,1,700,09/15/19 01:32,"980 Dogwood St, Seattle, WA 98101" -258757,USB-C Charging Cable,1,11.95,09/27/19 00:34,"450 Hickory St, Atlanta, GA 30301" -258758,ThinkPad Laptop,1,999.99,09/21/19 08:58,"525 Lake St, New York City, NY 10001" -258759,Vareebadd Phone,1,400,09/01/19 14:00,"344 4th St, Boston, MA 02215" -258759,USB-C Charging Cable,1,11.95,09/01/19 14:00,"344 4th St, Boston, MA 02215" -258760,AA Batteries (4-pack),1,3.84,09/10/19 14:34,"448 6th St, Atlanta, GA 30301" -258761,iPhone,1,700,09/08/19 17:31,"909 6th St, Boston, MA 02215" -258762,AAA Batteries (4-pack),1,2.99,09/12/19 09:45,"58 4th St, New York City, NY 10001" -258763,Apple Airpods Headphones,1,150,09/24/19 21:27,"348 13th St, San Francisco, CA 94016" -258764,AA Batteries (4-pack),1,3.84,09/04/19 15:18,"691 Hill St, New York City, NY 10001" -258764,Apple Airpods Headphones,1,150,09/04/19 15:18,"691 Hill St, New York City, NY 10001" -258765,AA Batteries (4-pack),1,3.84,09/04/19 21:55,"243 Main St, Dallas, TX 75001" -258766,27in FHD Monitor,1,149.99,09/09/19 12:25,"631 5th St, Los Angeles, CA 90001" -258767,Apple Airpods Headphones,1,150,09/18/19 22:45,"702 Lincoln St, Portland, OR 97035" -258768,Flatscreen TV,1,300,09/19/19 21:26,"842 5th St, San Francisco, CA 94016" -258769,Wired Headphones,1,11.99,09/29/19 17:39,"952 Cherry St, Boston, MA 02215" -258770,Lightning Charging Cable,1,14.95,09/02/19 08:23,"931 Lakeview St, Los Angeles, CA 90001" -258771,Bose SoundSport Headphones,1,99.99,09/06/19 18:18,"201 Highland St, Portland, OR 97035" -258772,AA Batteries (4-pack),1,3.84,09/14/19 22:04,"2 10th St, Portland, OR 97035" -258773,AAA Batteries (4-pack),3,2.99,09/12/19 05:34,"93 8th St, Boston, MA 02215" -258774,Lightning Charging Cable,1,14.95,09/18/19 13:38,"102 Meadow St, Los Angeles, CA 90001" -258775,Flatscreen TV,1,300,09/15/19 22:31,"735 Jackson St, San Francisco, CA 94016" -258776,Apple Airpods Headphones,1,150,09/27/19 09:08,"100 Meadow St, San Francisco, CA 94016" -258777,Apple Airpods Headphones,1,150,09/15/19 10:52,"862 Hill St, Seattle, WA 98101" -258778,34in Ultrawide Monitor,1,379.99,09/27/19 16:49,"280 Forest St, Seattle, WA 98101" -258779,USB-C Charging Cable,1,11.95,09/02/19 16:32,"795 South St, Dallas, TX 75001" -258780,USB-C Charging Cable,1,11.95,09/10/19 20:43,"35 Jefferson St, Dallas, TX 75001" -258781,USB-C Charging Cable,1,11.95,09/21/19 11:08,"568 Lake St, San Francisco, CA 94016" -258782,20in Monitor,1,109.99,09/29/19 13:15,"301 Washington St, Portland, OR 97035" -258783,iPhone,1,700,09/24/19 10:20,"275 Jefferson St, Boston, MA 02215" -258784,Bose SoundSport Headphones,1,99.99,09/11/19 12:07,"697 10th St, San Francisco, CA 94016" -258785,27in 4K Gaming Monitor,1,389.99,09/01/19 19:16,"437 Cherry St, San Francisco, CA 94016" -258786,AA Batteries (4-pack),1,3.84,09/06/19 10:17,"28 Maple St, San Francisco, CA 94016" -258787,Bose SoundSport Headphones,1,99.99,09/26/19 17:22,"575 Cherry St, New York City, NY 10001" -258788,27in 4K Gaming Monitor,1,389.99,09/10/19 10:27,"553 Cedar St, Seattle, WA 98101" -258789,20in Monitor,1,109.99,09/07/19 14:56,"385 Dogwood St, San Francisco, CA 94016" -258790,27in 4K Gaming Monitor,1,389.99,09/02/19 22:15,"702 Chestnut St, Atlanta, GA 30301" -258791,Lightning Charging Cable,1,14.95,09/13/19 00:06,"144 Cedar St, Boston, MA 02215" -258792,USB-C Charging Cable,1,11.95,09/02/19 20:09,"202 Meadow St, Atlanta, GA 30301" -258793,Bose SoundSport Headphones,1,99.99,09/25/19 18:42,"288 12th St, San Francisco, CA 94016" -258794,Lightning Charging Cable,2,14.95,09/03/19 11:16,"468 5th St, Los Angeles, CA 90001" -258795,AAA Batteries (4-pack),2,2.99,09/16/19 10:45,"54 5th St, Los Angeles, CA 90001" -258796,Bose SoundSport Headphones,1,99.99,09/14/19 22:29,"947 Spruce St, San Francisco, CA 94016" -258797,USB-C Charging Cable,1,11.95,09/05/19 09:28,"430 Cherry St, New York City, NY 10001" -258798,AA Batteries (4-pack),3,3.84,09/21/19 09:30,"596 14th St, Seattle, WA 98101" -258799,Bose SoundSport Headphones,1,99.99,09/23/19 21:11,"374 Cherry St, Atlanta, GA 30301" -258800,27in 4K Gaming Monitor,1,389.99,09/05/19 12:03,"914 Pine St, San Francisco, CA 94016" -258801,34in Ultrawide Monitor,1,379.99,09/21/19 21:11,"430 Highland St, Los Angeles, CA 90001" -258802,27in FHD Monitor,1,149.99,09/03/19 14:11,"390 Main St, Portland, OR 97035" -258803,Lightning Charging Cable,1,14.95,09/27/19 14:55,"489 Chestnut St, Seattle, WA 98101" -258804,AA Batteries (4-pack),1,3.84,09/07/19 01:58,"623 Walnut St, Atlanta, GA 30301" -258805,AA Batteries (4-pack),1,3.84,09/02/19 20:34,"169 Lake St, Portland, ME 04101" -258806,Flatscreen TV,1,300,09/12/19 19:08,"18 Spruce St, Los Angeles, CA 90001" -258807,iPhone,1,700,09/07/19 18:12,"809 Willow St, Seattle, WA 98101" -258807,Lightning Charging Cable,1,14.95,09/07/19 18:12,"809 Willow St, Seattle, WA 98101" -258808,Apple Airpods Headphones,1,150,09/07/19 01:27,"413 Washington St, Portland, OR 97035" -258809,Bose SoundSport Headphones,1,99.99,09/04/19 19:58,"789 Washington St, Boston, MA 02215" -258810,USB-C Charging Cable,1,11.95,09/10/19 14:31,"250 Ridge St, San Francisco, CA 94016" -258811,Bose SoundSport Headphones,1,99.99,09/24/19 23:50,"264 10th St, Seattle, WA 98101" -258812,Bose SoundSport Headphones,1,99.99,09/02/19 16:52,"450 Adams St, Dallas, TX 75001" -258813,27in FHD Monitor,1,149.99,09/13/19 21:37,"123 Madison St, San Francisco, CA 94016" -258814,34in Ultrawide Monitor,1,379.99,09/14/19 23:07,"515 South St, Atlanta, GA 30301" -258815,Bose SoundSport Headphones,1,99.99,09/19/19 20:02,"267 9th St, Boston, MA 02215" -258816,AA Batteries (4-pack),3,3.84,09/01/19 20:02,"76 Forest St, San Francisco, CA 94016" -258817,Vareebadd Phone,1,400,09/09/19 10:07,"530 Johnson St, New York City, NY 10001" -258818,27in FHD Monitor,1,149.99,09/09/19 22:17,"352 Spruce St, Atlanta, GA 30301" -258819,Lightning Charging Cable,1,14.95,09/19/19 15:57,"637 4th St, Los Angeles, CA 90001" -258820,AA Batteries (4-pack),1,3.84,09/06/19 18:50,"913 Cedar St, Dallas, TX 75001" -258821,AAA Batteries (4-pack),1,2.99,09/30/19 09:31,"950 Pine St, San Francisco, CA 94016" -258822,AAA Batteries (4-pack),1,2.99,09/21/19 22:43,"385 Spruce St, New York City, NY 10001" -258823,Wired Headphones,1,11.99,09/14/19 14:12,"269 11th St, Portland, OR 97035" -258824,Apple Airpods Headphones,1,150,09/28/19 13:06,"483 Cherry St, New York City, NY 10001" -258825,Apple Airpods Headphones,1,150,09/05/19 17:42,"42 7th St, Boston, MA 02215" -258826,AA Batteries (4-pack),1,3.84,09/19/19 11:20,"836 14th St, Los Angeles, CA 90001" -258827,27in FHD Monitor,1,149.99,09/18/19 19:52,"711 North St, Austin, TX 73301" -258828,Bose SoundSport Headphones,1,99.99,09/13/19 19:04,"517 Park St, Seattle, WA 98101" -258829,USB-C Charging Cable,1,11.95,09/07/19 17:46,"857 Washington St, Austin, TX 73301" -258830,AAA Batteries (4-pack),1,2.99,09/01/19 14:50,"776 7th St, Austin, TX 73301" -258831,ThinkPad Laptop,1,999.99,09/07/19 00:32,"621 6th St, San Francisco, CA 94016" -258832,Apple Airpods Headphones,1,150,09/28/19 16:52,"720 Lakeview St, Portland, OR 97035" -258833,Lightning Charging Cable,1,14.95,09/18/19 12:33,"702 11th St, New York City, NY 10001" -258834,Wired Headphones,2,11.99,09/23/19 13:06,"718 6th St, San Francisco, CA 94016" -258835,Macbook Pro Laptop,1,1700,09/09/19 23:25,"967 10th St, San Francisco, CA 94016" -258836,27in 4K Gaming Monitor,1,389.99,09/14/19 01:08,"625 13th St, Dallas, TX 75001" -258837,AA Batteries (4-pack),1,3.84,09/18/19 09:22,"661 Forest St, Austin, TX 73301" -258838,AAA Batteries (4-pack),1,2.99,09/06/19 00:55,"411 Walnut St, Austin, TX 73301" -258839,AAA Batteries (4-pack),1,2.99,09/08/19 11:37,"708 Walnut St, San Francisco, CA 94016" -258840,AAA Batteries (4-pack),1,2.99,09/24/19 23:03,"109 Lincoln St, Los Angeles, CA 90001" -258841,Wired Headphones,4,11.99,09/30/19 18:26,"881 Elm St, Seattle, WA 98101" -258842,Wired Headphones,1,11.99,09/15/19 12:20,"193 Jackson St, Atlanta, GA 30301" -258843,AA Batteries (4-pack),1,3.84,09/09/19 19:39,"999 14th St, New York City, NY 10001" -258844,Lightning Charging Cable,1,14.95,09/24/19 18:31,"804 West St, New York City, NY 10001" -258845,Lightning Charging Cable,2,14.95,09/10/19 15:33,"790 Jefferson St, Atlanta, GA 30301" -258846,Bose SoundSport Headphones,1,99.99,09/18/19 12:05,"946 Chestnut St, Seattle, WA 98101" -258847,ThinkPad Laptop,1,999.99,09/18/19 09:45,"391 Hickory St, San Francisco, CA 94016" -258848,Vareebadd Phone,1,400,09/13/19 18:59,"340 South St, Portland, OR 97035" -258848,USB-C Charging Cable,1,11.95,09/13/19 18:59,"340 South St, Portland, OR 97035" -258849,USB-C Charging Cable,1,11.95,09/14/19 14:26,"907 Elm St, Los Angeles, CA 90001" -258850,AAA Batteries (4-pack),1,2.99,09/16/19 21:41,"392 Sunset St, Dallas, TX 75001" -258851,AA Batteries (4-pack),1,3.84,09/21/19 12:44,"400 Lakeview St, New York City, NY 10001" -258852,20in Monitor,1,109.99,09/11/19 11:44,"608 Johnson St, Seattle, WA 98101" -258853,AA Batteries (4-pack),2,3.84,09/07/19 08:34,"959 Washington St, Atlanta, GA 30301" -258854,20in Monitor,1,109.99,09/11/19 13:05,"306 Church St, Austin, TX 73301" -258855,Apple Airpods Headphones,1,150,09/22/19 14:44,"400 Cherry St, Boston, MA 02215" -258856,Lightning Charging Cable,1,14.95,09/17/19 19:17,"167 9th St, Los Angeles, CA 90001" -258857,27in FHD Monitor,1,149.99,09/05/19 09:12,"837 Johnson St, Dallas, TX 75001" -258858,27in 4K Gaming Monitor,1,389.99,09/20/19 10:25,"455 Hill St, New York City, NY 10001" -258859,27in 4K Gaming Monitor,1,389.99,09/30/19 15:38,"148 14th St, New York City, NY 10001" -258860,USB-C Charging Cable,1,11.95,09/01/19 18:55,"497 Dogwood St, Los Angeles, CA 90001" -258861,Apple Airpods Headphones,1,150,09/23/19 13:00,"104 Maple St, San Francisco, CA 94016" -258862,Lightning Charging Cable,1,14.95,09/11/19 01:08,"297 Cedar St, San Francisco, CA 94016" -258863,Wired Headphones,1,11.99,09/27/19 08:57,"26 Sunset St, Los Angeles, CA 90001" -258864,USB-C Charging Cable,1,11.95,09/10/19 13:52,"410 North St, Los Angeles, CA 90001" -258865,AA Batteries (4-pack),1,3.84,09/13/19 19:20,"599 Ridge St, Seattle, WA 98101" -258866,27in FHD Monitor,1,149.99,09/12/19 16:31,"925 Spruce St, Portland, OR 97035" -258867,Lightning Charging Cable,1,14.95,09/16/19 14:06,"365 Jackson St, San Francisco, CA 94016" -258868,ThinkPad Laptop,1,999.99,09/23/19 11:40,"658 Lincoln St, Los Angeles, CA 90001" -258869,Bose SoundSport Headphones,1,99.99,09/26/19 14:09,"370 Cedar St, Boston, MA 02215" -258870,AAA Batteries (4-pack),1,2.99,09/24/19 20:06,"369 Pine St, Atlanta, GA 30301" -258871,ThinkPad Laptop,1,999.99,09/23/19 16:24,"154 13th St, Portland, OR 97035" -258872,Macbook Pro Laptop,1,1700,09/06/19 18:19,"900 Willow St, Dallas, TX 75001" -258873,Bose SoundSport Headphones,1,99.99,09/21/19 08:59,"66 6th St, Atlanta, GA 30301" -258874,AAA Batteries (4-pack),4,2.99,09/25/19 16:15,"826 13th St, Austin, TX 73301" -258875,Apple Airpods Headphones,1,150,09/27/19 15:51,"579 13th St, Boston, MA 02215" -258876,Apple Airpods Headphones,1,150,09/01/19 18:04,"341 River St, Seattle, WA 98101" -258877,Lightning Charging Cable,1,14.95,09/11/19 20:41,"486 Jefferson St, Atlanta, GA 30301" -258878,Lightning Charging Cable,1,14.95,09/17/19 15:49,"812 Ridge St, Seattle, WA 98101" -258878,27in 4K Gaming Monitor,1,389.99,09/17/19 15:49,"812 Ridge St, Seattle, WA 98101" -258879,20in Monitor,1,109.99,09/13/19 15:53,"246 Hill St, Boston, MA 02215" -258880,Wired Headphones,1,11.99,09/29/19 12:20,"363 Chestnut St, San Francisco, CA 94016" -258881,Lightning Charging Cable,1,14.95,09/20/19 12:51,"920 6th St, San Francisco, CA 94016" -258882,AA Batteries (4-pack),2,3.84,09/16/19 22:45,"205 2nd St, Atlanta, GA 30301" -258883,AAA Batteries (4-pack),3,2.99,09/30/19 12:44,"590 Spruce St, Atlanta, GA 30301" -258884,Wired Headphones,2,11.99,09/22/19 18:22,"361 Adams St, Seattle, WA 98101" -258885,Google Phone,1,600,09/02/19 14:22,"85 South St, Los Angeles, CA 90001" -258886,ThinkPad Laptop,1,999.99,09/01/19 15:49,"372 Madison St, Dallas, TX 75001" -258887,Wired Headphones,1,11.99,09/10/19 17:44,"117 13th St, San Francisco, CA 94016" -258888,Flatscreen TV,1,300,09/04/19 21:13,"155 Center St, Atlanta, GA 30301" -258889,Wired Headphones,1,11.99,09/15/19 23:00,"421 Highland St, Dallas, TX 75001" -258890,Google Phone,1,600,09/11/19 10:56,"488 Johnson St, Austin, TX 73301" -258891,USB-C Charging Cable,1,11.95,09/07/19 17:51,"724 Jefferson St, Boston, MA 02215" -258892,27in FHD Monitor,1,149.99,09/07/19 08:28,"376 Washington St, San Francisco, CA 94016" -258893,AA Batteries (4-pack),2,3.84,09/13/19 17:10,"511 Park St, New York City, NY 10001" -258894,Wired Headphones,1,11.99,09/29/19 21:16,"728 Lincoln St, Atlanta, GA 30301" -258895,Apple Airpods Headphones,1,150,09/04/19 12:55,"899 Madison St, San Francisco, CA 94016" -258896,Apple Airpods Headphones,1,150,09/08/19 18:20,"505 Forest St, Los Angeles, CA 90001" -258897,Macbook Pro Laptop,1,1700,09/14/19 19:22,"453 Elm St, Los Angeles, CA 90001" -258898,Bose SoundSport Headphones,1,99.99,09/14/19 20:50,"606 Forest St, Seattle, WA 98101" -258899,USB-C Charging Cable,1,11.95,09/27/19 18:51,"563 Spruce St, Seattle, WA 98101" -258900,Google Phone,1,600,09/11/19 12:24,"746 Jefferson St, New York City, NY 10001" -258900,Bose SoundSport Headphones,1,99.99,09/11/19 12:24,"746 Jefferson St, New York City, NY 10001" -258901,27in FHD Monitor,1,149.99,09/24/19 19:46,"545 Johnson St, Atlanta, GA 30301" -258902,LG Washing Machine,1,600.0,09/18/19 17:32,"925 Forest St, San Francisco, CA 94016" -258903,Apple Airpods Headphones,1,150,09/12/19 10:05,"781 Park St, Los Angeles, CA 90001" -258903,AAA Batteries (4-pack),2,2.99,09/12/19 10:05,"781 Park St, Los Angeles, CA 90001" -258904,USB-C Charging Cable,1,11.95,09/08/19 16:24,"628 5th St, Dallas, TX 75001" -258905,34in Ultrawide Monitor,1,379.99,09/18/19 13:20,"259 Wilson St, San Francisco, CA 94016" -258906,Lightning Charging Cable,1,14.95,09/08/19 21:30,"366 12th St, Austin, TX 73301" -258907,AAA Batteries (4-pack),1,2.99,09/25/19 10:39,"963 Pine St, Dallas, TX 75001" -258908,Macbook Pro Laptop,1,1700,09/02/19 23:21,"446 Lincoln St, Portland, ME 04101" -258909,AA Batteries (4-pack),1,3.84,09/29/19 23:34,"639 Walnut St, San Francisco, CA 94016" -258910,Macbook Pro Laptop,1,1700,09/27/19 02:27,"703 Lake St, Boston, MA 02215" -258911,27in FHD Monitor,1,149.99,09/11/19 16:47,"719 12th St, Austin, TX 73301" -258912,27in FHD Monitor,1,149.99,09/04/19 00:51,"294 Jefferson St, Los Angeles, CA 90001" -258913,Lightning Charging Cable,1,14.95,09/12/19 23:08,"484 Spruce St, Dallas, TX 75001" -258914,Flatscreen TV,1,300,09/29/19 14:40,"66 Lakeview St, Los Angeles, CA 90001" -258915,AA Batteries (4-pack),1,3.84,09/05/19 20:50,"176 11th St, New York City, NY 10001" -258916,Google Phone,1,600,09/27/19 22:07,"629 Cedar St, Boston, MA 02215" -258917,AAA Batteries (4-pack),1,2.99,09/16/19 10:59,"698 9th St, Atlanta, GA 30301" -258918,AA Batteries (4-pack),3,3.84,09/09/19 23:14,"616 13th St, Atlanta, GA 30301" -258919,AAA Batteries (4-pack),1,2.99,09/06/19 14:16,"903 Highland St, Los Angeles, CA 90001" -258920,Apple Airpods Headphones,1,150,09/10/19 15:00,"764 Johnson St, Boston, MA 02215" -258921,Apple Airpods Headphones,1,150,09/26/19 09:10,"161 Center St, Los Angeles, CA 90001" -258922,Apple Airpods Headphones,1,150,09/22/19 13:20,"200 Adams St, Atlanta, GA 30301" -258923,AAA Batteries (4-pack),1,2.99,09/20/19 01:27,"615 Cedar St, San Francisco, CA 94016" -258924,iPhone,1,700,09/11/19 06:10,"61 Johnson St, Boston, MA 02215" -258925,AAA Batteries (4-pack),1,2.99,09/13/19 11:53,"672 Church St, Dallas, TX 75001" -258926,Bose SoundSport Headphones,1,99.99,09/25/19 14:08,"995 Walnut St, San Francisco, CA 94016" -258927,Lightning Charging Cable,2,14.95,09/12/19 17:49,"3 2nd St, San Francisco, CA 94016" -258928,Flatscreen TV,1,300,09/23/19 08:07,"498 Adams St, San Francisco, CA 94016" -258929,AA Batteries (4-pack),1,3.84,09/22/19 11:07,"648 11th St, San Francisco, CA 94016" -258930,iPhone,1,700,09/13/19 14:31,"494 6th St, Portland, OR 97035" -258930,Apple Airpods Headphones,1,150,09/13/19 14:31,"494 6th St, Portland, OR 97035" -258931,AA Batteries (4-pack),1,3.84,09/16/19 10:42,"923 8th St, Boston, MA 02215" -258932,AA Batteries (4-pack),1,3.84,09/22/19 17:45,"871 13th St, Portland, ME 04101" -258933,Flatscreen TV,1,300,09/18/19 11:45,"235 7th St, Dallas, TX 75001" -258934,USB-C Charging Cable,1,11.95,09/02/19 17:46,"697 West St, San Francisco, CA 94016" -258935,Lightning Charging Cable,1,14.95,09/13/19 11:35,"170 Willow St, Atlanta, GA 30301" -258936,Wired Headphones,1,11.99,09/13/19 18:40,"828 West St, San Francisco, CA 94016" -258937,Lightning Charging Cable,1,14.95,09/22/19 12:37,"151 Chestnut St, New York City, NY 10001" -258938,Macbook Pro Laptop,1,1700,09/04/19 13:06,"155 Madison St, New York City, NY 10001" -258939,AAA Batteries (4-pack),2,2.99,09/03/19 15:04,"668 Spruce St, San Francisco, CA 94016" -258940,Macbook Pro Laptop,1,1700,09/07/19 06:18,"664 South St, Los Angeles, CA 90001" -258941,AAA Batteries (4-pack),3,2.99,09/30/19 14:03,"180 Cherry St, San Francisco, CA 94016" -258942,USB-C Charging Cable,1,11.95,09/23/19 16:23,"859 8th St, San Francisco, CA 94016" -258943,Wired Headphones,1,11.99,09/12/19 19:37,"512 Washington St, Atlanta, GA 30301" -258944,iPhone,1,700,09/24/19 16:27,"558 8th St, San Francisco, CA 94016" -258945,Vareebadd Phone,1,400,09/29/19 12:23,"80 Main St, Seattle, WA 98101" -258946,Lightning Charging Cable,1,14.95,09/19/19 14:25,"355 Ridge St, San Francisco, CA 94016" -258947,AAA Batteries (4-pack),1,2.99,09/11/19 08:44,"608 Lakeview St, Los Angeles, CA 90001" -258948,Macbook Pro Laptop,1,1700,09/12/19 09:19,"440 South St, New York City, NY 10001" -258949,Wired Headphones,1,11.99,09/14/19 22:02,"922 2nd St, New York City, NY 10001" -258950,USB-C Charging Cable,1,11.95,09/06/19 17:45,"456 Sunset St, Portland, OR 97035" -258951,AA Batteries (4-pack),2,3.84,09/25/19 12:27,"323 Chestnut St, San Francisco, CA 94016" -258952,34in Ultrawide Monitor,1,379.99,09/09/19 13:56,"787 Hickory St, San Francisco, CA 94016" -258953,20in Monitor,1,109.99,09/02/19 12:53,"864 Jefferson St, Los Angeles, CA 90001" -258954,Bose SoundSport Headphones,1,99.99,09/22/19 20:37,"27 Washington St, Atlanta, GA 30301" -258955,Flatscreen TV,1,300,09/06/19 20:11,"702 Park St, New York City, NY 10001" -258956,Wired Headphones,2,11.99,09/21/19 22:11,"511 Wilson St, New York City, NY 10001" -258957,AA Batteries (4-pack),2,3.84,09/10/19 14:02,"771 5th St, San Francisco, CA 94016" -258958,USB-C Charging Cable,1,11.95,09/15/19 09:51,"118 4th St, Boston, MA 02215" -258959,iPhone,1,700,09/12/19 10:22,"725 8th St, Boston, MA 02215" -258960,Bose SoundSport Headphones,1,99.99,09/15/19 10:37,"671 Hill St, San Francisco, CA 94016" -258961,Wired Headphones,1,11.99,09/06/19 13:29,"582 Wilson St, Atlanta, GA 30301" -258962,Google Phone,1,600,09/14/19 15:19,"836 Maple St, San Francisco, CA 94016" -258963,iPhone,1,700,09/07/19 14:37,"120 Madison St, Los Angeles, CA 90001" -258963,Lightning Charging Cable,1,14.95,09/07/19 14:37,"120 Madison St, Los Angeles, CA 90001" -258964,Flatscreen TV,1,300,09/18/19 17:17,"987 Sunset St, San Francisco, CA 94016" -258965,Lightning Charging Cable,1,14.95,09/24/19 06:59,"881 Park St, Los Angeles, CA 90001" -258966,iPhone,1,700,09/21/19 13:33,"400 10th St, Atlanta, GA 30301" -258967,Flatscreen TV,1,300,09/21/19 11:24,"509 Pine St, Los Angeles, CA 90001" -258968,Lightning Charging Cable,1,14.95,09/20/19 10:47,"887 14th St, San Francisco, CA 94016" -258969,Bose SoundSport Headphones,1,99.99,09/02/19 13:46,"809 Church St, Dallas, TX 75001" -258970,AAA Batteries (4-pack),1,2.99,09/09/19 22:39,"30 North St, Dallas, TX 75001" -258971,USB-C Charging Cable,1,11.95,09/27/19 19:29,"495 7th St, Dallas, TX 75001" -258972,AA Batteries (4-pack),1,3.84,09/21/19 12:27,"8 River St, Dallas, TX 75001" -258973,AAA Batteries (4-pack),1,2.99,09/24/19 12:56,"505 Jackson St, New York City, NY 10001" -258974,Flatscreen TV,1,300,09/14/19 20:37,"208 Washington St, San Francisco, CA 94016" -258975,AA Batteries (4-pack),1,3.84,09/15/19 17:11,"996 Church St, Boston, MA 02215" -258976,Google Phone,1,600,09/27/19 01:54,"211 13th St, Dallas, TX 75001" -258977,Wired Headphones,2,11.99,09/04/19 15:42,"39 Walnut St, Dallas, TX 75001" -258978,AAA Batteries (4-pack),1,2.99,09/18/19 01:00,"663 Dogwood St, Portland, OR 97035" -258978,USB-C Charging Cable,1,11.95,09/18/19 01:00,"663 Dogwood St, Portland, OR 97035" -258979,Bose SoundSport Headphones,1,99.99,09/28/19 14:18,"212 Adams St, San Francisco, CA 94016" -258980,Apple Airpods Headphones,1,150,09/08/19 11:48,"805 Dogwood St, Atlanta, GA 30301" -258981,Wired Headphones,1,11.99,09/07/19 19:01,"815 13th St, Austin, TX 73301" -258982,USB-C Charging Cable,1,11.95,09/12/19 20:48,"218 2nd St, New York City, NY 10001" -258983,AAA Batteries (4-pack),1,2.99,09/01/19 09:14,"522 West St, Los Angeles, CA 90001" -258984,AAA Batteries (4-pack),3,2.99,09/11/19 14:03,"184 5th St, Boston, MA 02215" -258985,34in Ultrawide Monitor,1,379.99,09/30/19 07:29,"934 10th St, New York City, NY 10001" -258986,iPhone,1,700,09/12/19 17:52,"511 Jefferson St, Los Angeles, CA 90001" -258987,USB-C Charging Cable,1,11.95,09/13/19 18:42,"308 7th St, San Francisco, CA 94016" -258988,27in FHD Monitor,1,149.99,09/10/19 22:04,"459 Dogwood St, San Francisco, CA 94016" -258989,AAA Batteries (4-pack),2,2.99,09/29/19 22:31,"184 Wilson St, Seattle, WA 98101" -258990,AA Batteries (4-pack),2,3.84,09/26/19 21:41,"421 6th St, Dallas, TX 75001" -258991,34in Ultrawide Monitor,1,379.99,09/19/19 17:18,"625 Adams St, New York City, NY 10001" -258992,Apple Airpods Headphones,1,150,09/10/19 23:17,"145 Ridge St, New York City, NY 10001" -258993,AA Batteries (4-pack),1,3.84,09/13/19 19:09,"704 Spruce St, San Francisco, CA 94016" -258994,AAA Batteries (4-pack),2,2.99,09/22/19 17:49,"473 1st St, New York City, NY 10001" -258995,Lightning Charging Cable,1,14.95,09/15/19 14:47,"258 Maple St, Seattle, WA 98101" -258996,Apple Airpods Headphones,1,150,09/07/19 08:45,"786 South St, Portland, OR 97035" -258997,Wired Headphones,1,11.99,09/09/19 22:50,"258 6th St, San Francisco, CA 94016" -258998,iPhone,1,700,09/01/19 19:21,"873 8th St, Dallas, TX 75001" -258999,Flatscreen TV,1,300,09/18/19 17:43,"315 Washington St, Portland, OR 97035" -259000,Wired Headphones,2,11.99,09/30/19 17:30,"241 Highland St, Los Angeles, CA 90001" -259001,Wired Headphones,1,11.99,09/07/19 09:42,"942 Elm St, San Francisco, CA 94016" -259002,USB-C Charging Cable,1,11.95,09/20/19 11:31,"473 Chestnut St, Seattle, WA 98101" -259003,AA Batteries (4-pack),2,3.84,09/03/19 19:24,"152 Main St, Boston, MA 02215" -259004,Google Phone,1,600,09/16/19 21:18,"172 Lake St, Atlanta, GA 30301" -259005,AA Batteries (4-pack),1,3.84,09/17/19 19:03,"584 Sunset St, New York City, NY 10001" -259006,Google Phone,1,600,09/19/19 10:30,"494 11th St, New York City, NY 10001" -259006,USB-C Charging Cable,1,11.95,09/19/19 10:30,"494 11th St, New York City, NY 10001" -259007,27in FHD Monitor,1,149.99,09/26/19 20:34,"821 West St, New York City, NY 10001" -259008,Wired Headphones,1,11.99,09/07/19 13:31,"441 Meadow St, Atlanta, GA 30301" -259008,Apple Airpods Headphones,1,150,09/07/19 13:31,"441 Meadow St, Atlanta, GA 30301" -259009,Wired Headphones,1,11.99,09/03/19 23:20,"581 Maple St, Seattle, WA 98101" -259010,AAA Batteries (4-pack),1,2.99,09/12/19 06:51,"126 Main St, Boston, MA 02215" -259011,AA Batteries (4-pack),1,3.84,09/24/19 16:55,"629 9th St, Portland, OR 97035" -259012,AA Batteries (4-pack),1,3.84,09/10/19 14:00,"628 Elm St, Los Angeles, CA 90001" -259013,Macbook Pro Laptop,1,1700,09/24/19 09:54,"362 Jefferson St, Los Angeles, CA 90001" -259014,34in Ultrawide Monitor,1,379.99,09/06/19 21:32,"171 7th St, Boston, MA 02215" -259015,AA Batteries (4-pack),1,3.84,09/26/19 14:04,"652 Jefferson St, Portland, OR 97035" -259016,AA Batteries (4-pack),1,3.84,09/06/19 17:17,"226 Wilson St, San Francisco, CA 94016" -259017,AAA Batteries (4-pack),1,2.99,09/22/19 20:12,"104 9th St, New York City, NY 10001" -259018,AA Batteries (4-pack),1,3.84,09/01/19 19:22,"309 Cedar St, New York City, NY 10001" -259019,AA Batteries (4-pack),1,3.84,09/10/19 18:37,"46 4th St, San Francisco, CA 94016" -259020,Flatscreen TV,1,300,09/23/19 12:38,"635 North St, Los Angeles, CA 90001" -259021,Macbook Pro Laptop,1,1700,09/23/19 18:58,"427 Willow St, New York City, NY 10001" -259022,Lightning Charging Cable,1,14.95,09/24/19 14:11,"237 Dogwood St, Los Angeles, CA 90001" -259023,34in Ultrawide Monitor,1,379.99,09/09/19 22:19,"327 Meadow St, San Francisco, CA 94016" -259024,AAA Batteries (4-pack),2,2.99,09/18/19 02:43,"754 Sunset St, New York City, NY 10001" -259025,Wired Headphones,1,11.99,09/23/19 11:39,"72 South St, San Francisco, CA 94016" -259026,Apple Airpods Headphones,1,150,09/09/19 15:59,"821 8th St, San Francisco, CA 94016" -259027,Flatscreen TV,1,300,09/14/19 14:32,"371 Wilson St, San Francisco, CA 94016" -259028,27in 4K Gaming Monitor,1,389.99,09/26/19 16:12,"856 Elm St, Atlanta, GA 30301" -259029,AAA Batteries (4-pack),1,2.99,09/01/19 10:27,"502 South St, Boston, MA 02215" -259030,Google Phone,1,600,09/27/19 20:03,"305 Spruce St, New York City, NY 10001" -259031,Apple Airpods Headphones,1,150,09/16/19 13:25,"461 Maple St, New York City, NY 10001" -259032,Lightning Charging Cable,1,14.95,09/25/19 12:27,"177 14th St, Boston, MA 02215" -259033,USB-C Charging Cable,1,11.95,09/24/19 13:29,"681 Hickory St, Austin, TX 73301" -259034,Macbook Pro Laptop,1,1700,09/05/19 15:38,"168 Dogwood St, Portland, OR 97035" -259035,27in FHD Monitor,1,149.99,09/29/19 13:52,"327 Lake St, San Francisco, CA 94016" -259035,27in FHD Monitor,1,149.99,09/29/19 13:52,"327 Lake St, San Francisco, CA 94016" -259036,USB-C Charging Cable,1,11.95,09/16/19 21:05,"190 North St, Los Angeles, CA 90001" -259037,Apple Airpods Headphones,1,150,09/25/19 18:09,"145 Johnson St, Dallas, TX 75001" -259038,AAA Batteries (4-pack),1,2.99,09/01/19 12:03,"995 6th St, Boston, MA 02215" -259039,USB-C Charging Cable,1,11.95,09/01/19 12:07,"99 Church St, Austin, TX 73301" -259040,AA Batteries (4-pack),1,3.84,09/30/19 21:19,"481 South St, New York City, NY 10001" -259041,Macbook Pro Laptop,1,1700,09/13/19 23:14,"220 Sunset St, New York City, NY 10001" -259042,Lightning Charging Cable,1,14.95,09/27/19 20:59,"112 Lincoln St, New York City, NY 10001" -259043,Apple Airpods Headphones,1,150,09/09/19 12:05,"368 Lake St, San Francisco, CA 94016" -259044,AA Batteries (4-pack),1,3.84,09/08/19 17:28,"115 Main St, Austin, TX 73301" -259045,34in Ultrawide Monitor,1,379.99,09/07/19 12:35,"642 Spruce St, Austin, TX 73301" -259046,Apple Airpods Headphones,1,150,09/18/19 18:28,"996 Lincoln St, Los Angeles, CA 90001" -259047,USB-C Charging Cable,1,11.95,09/16/19 20:53,"284 6th St, Atlanta, GA 30301" -259048,USB-C Charging Cable,1,11.95,09/16/19 13:44,"651 Wilson St, San Francisco, CA 94016" -259049,AA Batteries (4-pack),2,3.84,09/24/19 05:57,"185 Johnson St, San Francisco, CA 94016" -259050,USB-C Charging Cable,1,11.95,09/04/19 18:22,"454 Cherry St, Portland, ME 04101" -259051,Lightning Charging Cable,1,14.95,09/18/19 18:39,"430 2nd St, San Francisco, CA 94016" -259052,Apple Airpods Headphones,1,150,09/01/19 13:25,"786 Sunset St, Atlanta, GA 30301" -259053,Lightning Charging Cable,1,14.95,09/29/19 14:18,"142 Ridge St, Los Angeles, CA 90001" -259054,20in Monitor,1,109.99,09/12/19 23:28,"687 Walnut St, Seattle, WA 98101" -259055,27in 4K Gaming Monitor,1,389.99,09/17/19 15:50,"469 Park St, Seattle, WA 98101" -259056,USB-C Charging Cable,1,11.95,09/29/19 10:49,"158 Dogwood St, Los Angeles, CA 90001" -259057,Wired Headphones,1,11.99,09/09/19 20:32,"818 Sunset St, San Francisco, CA 94016" -259058,AA Batteries (4-pack),1,3.84,09/24/19 20:07,"698 2nd St, San Francisco, CA 94016" -259059,27in FHD Monitor,1,149.99,09/10/19 18:53,"177 Meadow St, Los Angeles, CA 90001" -259060,AA Batteries (4-pack),2,3.84,09/28/19 21:59,"802 Jackson St, San Francisco, CA 94016" -259061,Lightning Charging Cable,1,14.95,09/22/19 18:41,"610 Johnson St, San Francisco, CA 94016" -259062,Lightning Charging Cable,1,14.95,09/09/19 10:36,"790 Walnut St, Boston, MA 02215" -259063,AAA Batteries (4-pack),1,2.99,09/03/19 13:53,"290 Jefferson St, Dallas, TX 75001" -259064,Lightning Charging Cable,1,14.95,09/29/19 17:57,"484 Highland St, Los Angeles, CA 90001" -259065,USB-C Charging Cable,1,11.95,09/28/19 22:14,"296 Walnut St, San Francisco, CA 94016" -259066,Apple Airpods Headphones,1,150,09/04/19 00:39,"92 Chestnut St, Austin, TX 73301" -259067,Lightning Charging Cable,1,14.95,09/21/19 17:34,"361 Cedar St, Los Angeles, CA 90001" -259068,Google Phone,1,600,09/10/19 18:39,"175 Washington St, Boston, MA 02215" -259068,USB-C Charging Cable,1,11.95,09/10/19 18:39,"175 Washington St, Boston, MA 02215" -259069,AA Batteries (4-pack),3,3.84,09/21/19 13:10,"507 Dogwood St, New York City, NY 10001" -259070,27in FHD Monitor,1,149.99,09/14/19 19:27,"439 Wilson St, Los Angeles, CA 90001" -259071,AAA Batteries (4-pack),2,2.99,09/25/19 10:56,"321 11th St, Los Angeles, CA 90001" -259072,AA Batteries (4-pack),1,3.84,09/27/19 20:11,"381 North St, New York City, NY 10001" -259073,AA Batteries (4-pack),3,3.84,09/19/19 18:23,"888 Maple St, Austin, TX 73301" -,,,,, -259074,Lightning Charging Cable,1,14.95,09/22/19 12:57,"231 Lincoln St, San Francisco, CA 94016" -259075,Bose SoundSport Headphones,1,99.99,09/09/19 10:02,"200 Pine St, Austin, TX 73301" -259076,Flatscreen TV,1,300,09/23/19 14:22,"177 Sunset St, Boston, MA 02215" -259077,27in 4K Gaming Monitor,1,389.99,09/26/19 12:13,"128 12th St, Los Angeles, CA 90001" -259078,AAA Batteries (4-pack),1,2.99,09/30/19 16:11,"693 West St, Los Angeles, CA 90001" -259079,27in 4K Gaming Monitor,1,389.99,09/27/19 03:07,"13 Forest St, New York City, NY 10001" -259080,Apple Airpods Headphones,1,150,09/24/19 04:04,"268 Ridge St, Seattle, WA 98101" -259081,27in 4K Gaming Monitor,1,389.99,09/25/19 09:45,"477 Adams St, Seattle, WA 98101" -259082,Lightning Charging Cable,1,14.95,09/27/19 16:49,"176 Jefferson St, Los Angeles, CA 90001" -259083,Bose SoundSport Headphones,1,99.99,09/08/19 11:36,"474 Lincoln St, Los Angeles, CA 90001" -259084,27in FHD Monitor,1,149.99,09/04/19 18:27,"139 Lake St, Boston, MA 02215" -259085,USB-C Charging Cable,1,11.95,09/20/19 19:55,"269 Hill St, Los Angeles, CA 90001" -259086,Wired Headphones,1,11.99,09/10/19 19:20,"240 6th St, San Francisco, CA 94016" -259087,34in Ultrawide Monitor,1,379.99,09/13/19 12:41,"551 Maple St, San Francisco, CA 94016" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -259088,iPhone,1,700,09/04/19 00:57,"571 5th St, New York City, NY 10001" -259089,AAA Batteries (4-pack),1,2.99,09/10/19 09:04,"923 13th St, Seattle, WA 98101" -259090,34in Ultrawide Monitor,1,379.99,09/10/19 06:48,"505 North St, New York City, NY 10001" -259091,USB-C Charging Cable,1,11.95,09/06/19 16:33,"67 Ridge St, Los Angeles, CA 90001" -259092,AAA Batteries (4-pack),4,2.99,09/28/19 16:56,"501 6th St, Atlanta, GA 30301" -259093,AAA Batteries (4-pack),2,2.99,09/13/19 07:19,"30 Lincoln St, Los Angeles, CA 90001" -259094,20in Monitor,1,109.99,09/05/19 20:13,"361 Lakeview St, Dallas, TX 75001" -259095,ThinkPad Laptop,1,999.99,09/23/19 11:05,"211 Church St, Los Angeles, CA 90001" -259096,AAA Batteries (4-pack),1,2.99,09/02/19 15:14,"76 Ridge St, San Francisco, CA 94016" -259097,USB-C Charging Cable,1,11.95,09/09/19 21:23,"926 7th St, Atlanta, GA 30301" -259098,27in 4K Gaming Monitor,1,389.99,09/08/19 17:31,"107 Dogwood St, Dallas, TX 75001" -259099,27in 4K Gaming Monitor,1,389.99,09/19/19 19:47,"758 11th St, Atlanta, GA 30301" -259100,Lightning Charging Cable,1,14.95,09/22/19 07:53,"907 Hill St, San Francisco, CA 94016" -259101,AA Batteries (4-pack),1,3.84,09/09/19 20:54,"150 Washington St, Los Angeles, CA 90001" -259102,AA Batteries (4-pack),1,3.84,09/01/19 11:14,"298 Forest St, Atlanta, GA 30301" -259103,AA Batteries (4-pack),1,3.84,09/19/19 16:38,"565 Adams St, Los Angeles, CA 90001" -259104,USB-C Charging Cable,1,11.95,09/19/19 01:33,"824 7th St, Los Angeles, CA 90001" -259105,Wired Headphones,1,11.99,09/08/19 07:55,"772 Hickory St, San Francisco, CA 94016" -259106,AA Batteries (4-pack),1,3.84,09/16/19 19:28,"103 Sunset St, Los Angeles, CA 90001" -259107,Lightning Charging Cable,1,14.95,09/09/19 13:38,"451 7th St, New York City, NY 10001" -259108,27in 4K Gaming Monitor,1,389.99,09/02/19 12:29,"22 6th St, Portland, OR 97035" -259109,Google Phone,1,600,09/21/19 14:23,"805 Washington St, San Francisco, CA 94016" -259110,AA Batteries (4-pack),1,3.84,09/01/19 09:08,"657 Madison St, Los Angeles, CA 90001" -259111,27in FHD Monitor,1,149.99,09/07/19 21:30,"517 Highland St, Dallas, TX 75001" -259112,AA Batteries (4-pack),4,3.84,09/10/19 06:25,"272 Hill St, Los Angeles, CA 90001" -259113,AA Batteries (4-pack),1,3.84,09/29/19 23:23,"138 Pine St, Austin, TX 73301" -259114,AAA Batteries (4-pack),1,2.99,09/17/19 11:19,"152 Maple St, San Francisco, CA 94016" -259115,Wired Headphones,1,11.99,09/22/19 15:59,"648 Lake St, Austin, TX 73301" -259116,AA Batteries (4-pack),1,3.84,09/22/19 11:30,"657 Lakeview St, San Francisco, CA 94016" -259117,Apple Airpods Headphones,1,150,09/21/19 00:00,"55 14th St, San Francisco, CA 94016" -259118,AAA Batteries (4-pack),1,2.99,09/24/19 16:46,"320 13th St, San Francisco, CA 94016" -259119,AA Batteries (4-pack),1,3.84,09/24/19 16:09,"586 14th St, Los Angeles, CA 90001" -259120,AA Batteries (4-pack),1,3.84,09/08/19 23:10,"291 11th St, Boston, MA 02215" -259121,iPhone,1,700,09/08/19 22:48,"190 Meadow St, Austin, TX 73301" -259121,Wired Headphones,1,11.99,09/08/19 22:48,"190 Meadow St, Austin, TX 73301" -259122,AAA Batteries (4-pack),2,2.99,09/08/19 21:15,"764 Hickory St, Boston, MA 02215" -259122,AA Batteries (4-pack),1,3.84,09/08/19 21:15,"764 Hickory St, Boston, MA 02215" -259123,Lightning Charging Cable,1,14.95,09/30/19 15:21,"229 13th St, Seattle, WA 98101" -259124,AA Batteries (4-pack),2,3.84,09/20/19 16:16,"743 Wilson St, Portland, OR 97035" -259125,Wired Headphones,1,11.99,09/27/19 20:25,"156 Elm St, San Francisco, CA 94016" -259126,USB-C Charging Cable,1,11.95,09/04/19 09:09,"525 14th St, Los Angeles, CA 90001" -259127,Bose SoundSport Headphones,1,99.99,09/22/19 12:26,"335 Willow St, Portland, ME 04101" -259128,Apple Airpods Headphones,1,150,09/22/19 09:46,"885 Ridge St, Dallas, TX 75001" -259129,Wired Headphones,1,11.99,09/15/19 17:41,"116 Main St, Los Angeles, CA 90001" -259130,Bose SoundSport Headphones,1,99.99,09/01/19 23:30,"83 West St, Los Angeles, CA 90001" -259131,AAA Batteries (4-pack),1,2.99,09/25/19 18:19,"667 Lake St, San Francisco, CA 94016" -259132,Google Phone,1,600,09/15/19 16:28,"321 River St, Los Angeles, CA 90001" -259133,iPhone,1,700,09/01/19 12:54,"507 Church St, Boston, MA 02215" -259133,Wired Headphones,1,11.99,09/01/19 12:54,"507 Church St, Boston, MA 02215" -259134,AA Batteries (4-pack),1,3.84,09/28/19 08:49,"431 North St, Los Angeles, CA 90001" -259135,Wired Headphones,1,11.99,09/08/19 20:31,"975 11th St, Boston, MA 02215" -259136,USB-C Charging Cable,1,11.95,09/15/19 19:00,"22 Wilson St, Dallas, TX 75001" -259137,Google Phone,1,600,09/20/19 08:13,"607 Cherry St, Boston, MA 02215" -259138,AAA Batteries (4-pack),1,2.99,09/27/19 23:44,"327 14th St, San Francisco, CA 94016" -259139,Flatscreen TV,1,300,09/24/19 18:32,"663 North St, New York City, NY 10001" -259140,Wired Headphones,1,11.99,09/07/19 15:00,"47 5th St, Austin, TX 73301" -259141,Wired Headphones,1,11.99,09/10/19 21:05,"412 Johnson St, Atlanta, GA 30301" -259142,27in FHD Monitor,1,149.99,09/03/19 13:34,"205 14th St, San Francisco, CA 94016" -259143,Apple Airpods Headphones,1,150,09/24/19 19:44,"51 Lake St, San Francisco, CA 94016" -259144,USB-C Charging Cable,1,11.95,09/24/19 10:53,"609 Main St, San Francisco, CA 94016" -259145,iPhone,1,700,09/27/19 21:57,"494 Main St, New York City, NY 10001" -259146,Lightning Charging Cable,1,14.95,09/19/19 13:00,"494 9th St, Los Angeles, CA 90001" -259147,AA Batteries (4-pack),1,3.84,09/22/19 09:07,"124 9th St, New York City, NY 10001" -259148,Lightning Charging Cable,1,14.95,09/21/19 11:10,"69 North St, Dallas, TX 75001" -259149,Bose SoundSport Headphones,1,99.99,09/20/19 22:04,"665 Chestnut St, Portland, OR 97035" -259150,Lightning Charging Cable,1,14.95,09/02/19 23:35,"155 Highland St, Los Angeles, CA 90001" -259151,AA Batteries (4-pack),1,3.84,09/12/19 08:09,"308 11th St, Los Angeles, CA 90001" -259152,Wired Headphones,1,11.99,09/10/19 14:31,"70 2nd St, Boston, MA 02215" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -259153,34in Ultrawide Monitor,1,379.99,09/10/19 21:02,"737 Elm St, Los Angeles, CA 90001" -259154,AA Batteries (4-pack),1,3.84,09/09/19 19:58,"962 Jefferson St, Los Angeles, CA 90001" -259155,Apple Airpods Headphones,1,150,09/21/19 20:38,"653 Walnut St, San Francisco, CA 94016" -259156,AA Batteries (4-pack),1,3.84,09/02/19 10:37,"437 River St, Atlanta, GA 30301" -259157,Macbook Pro Laptop,1,1700,09/12/19 05:01,"326 Forest St, Seattle, WA 98101" -259158,27in 4K Gaming Monitor,1,389.99,09/06/19 19:18,"109 Willow St, Los Angeles, CA 90001" -259159,Google Phone,1,600,09/09/19 13:40,"949 12th St, Seattle, WA 98101" -259160,Lightning Charging Cable,1,14.95,09/30/19 09:43,"402 2nd St, Los Angeles, CA 90001" -259161,AA Batteries (4-pack),1,3.84,09/06/19 08:19,"524 Forest St, Los Angeles, CA 90001" -259162,Lightning Charging Cable,1,14.95,09/29/19 15:09,"774 Sunset St, San Francisco, CA 94016" -259163,27in FHD Monitor,1,149.99,09/27/19 10:02,"616 Sunset St, San Francisco, CA 94016" -259164,USB-C Charging Cable,1,11.95,09/16/19 19:09,"763 River St, New York City, NY 10001" -259165,USB-C Charging Cable,1,11.95,09/09/19 17:58,"527 Elm St, Dallas, TX 75001" -259166,27in 4K Gaming Monitor,1,389.99,09/23/19 09:46,"982 Lincoln St, New York City, NY 10001" -259167,Apple Airpods Headphones,1,150,09/12/19 08:45,"483 8th St, New York City, NY 10001" -259168,AAA Batteries (4-pack),1,2.99,09/15/19 15:09,"822 Hickory St, New York City, NY 10001" -259169,Bose SoundSport Headphones,1,99.99,09/24/19 11:45,"707 Forest St, San Francisco, CA 94016" -259170,Wired Headphones,1,11.99,09/19/19 05:04,"755 Maple St, New York City, NY 10001" -259171,AA Batteries (4-pack),1,3.84,09/03/19 10:45,"726 North St, Portland, OR 97035" -259172,AA Batteries (4-pack),1,3.84,09/01/19 19:35,"368 Lincoln St, Seattle, WA 98101" -259173,Wired Headphones,1,11.99,09/20/19 11:17,"337 Park St, Portland, ME 04101" -259174,Apple Airpods Headphones,1,150,09/14/19 21:53,"668 Walnut St, Portland, OR 97035" -259175,27in FHD Monitor,1,149.99,09/16/19 13:33,"336 Washington St, Atlanta, GA 30301" -259176,34in Ultrawide Monitor,1,379.99,09/22/19 20:32,"840 2nd St, Portland, OR 97035" -259177,Wired Headphones,1,11.99,09/29/19 19:01,"393 Walnut St, Los Angeles, CA 90001" -259178,Apple Airpods Headphones,1,150,09/11/19 22:11,"129 2nd St, Los Angeles, CA 90001" -259179,AA Batteries (4-pack),3,3.84,09/01/19 15:25,"290 River St, Los Angeles, CA 90001" -259180,AA Batteries (4-pack),2,3.84,09/20/19 16:37,"274 4th St, San Francisco, CA 94016" -259181,Apple Airpods Headphones,1,150,09/15/19 21:29,"1 Madison St, Los Angeles, CA 90001" -259182,Wired Headphones,2,11.99,09/23/19 06:48,"119 2nd St, Dallas, TX 75001" -259183,AAA Batteries (4-pack),1,2.99,09/16/19 12:53,"673 Sunset St, Dallas, TX 75001" -259184,Lightning Charging Cable,1,14.95,09/27/19 13:44,"598 Wilson St, Austin, TX 73301" -259185,iPhone,1,700,09/25/19 19:38,"384 Lakeview St, San Francisco, CA 94016" -259186,Lightning Charging Cable,1,14.95,09/02/19 17:34,"14 12th St, San Francisco, CA 94016" -259187,Bose SoundSport Headphones,1,99.99,09/20/19 22:05,"646 Forest St, Los Angeles, CA 90001" -259188,ThinkPad Laptop,1,999.99,09/27/19 11:03,"379 Lincoln St, Austin, TX 73301" -259189,34in Ultrawide Monitor,1,379.99,09/19/19 12:26,"467 Spruce St, Portland, OR 97035" -259190,27in FHD Monitor,1,149.99,09/24/19 18:48,"769 10th St, New York City, NY 10001" -259191,Bose SoundSport Headphones,1,99.99,09/22/19 11:32,"721 Forest St, New York City, NY 10001" -259192,Wired Headphones,1,11.99,09/09/19 20:03,"48 River St, Los Angeles, CA 90001" -259193,AAA Batteries (4-pack),2,2.99,09/20/19 11:13,"636 7th St, Los Angeles, CA 90001" -259194,27in FHD Monitor,1,149.99,09/03/19 12:13,"543 Center St, Austin, TX 73301" -259195,Apple Airpods Headphones,1,150,09/28/19 16:17,"860 Maple St, Portland, OR 97035" -259196,Bose SoundSport Headphones,1,99.99,09/17/19 15:30,"683 Dogwood St, Los Angeles, CA 90001" -259197,USB-C Charging Cable,1,11.95,09/07/19 11:33,"153 Cedar St, San Francisco, CA 94016" -259198,ThinkPad Laptop,1,999.99,09/30/19 21:44,"18 Meadow St, Boston, MA 02215" -259199,Wired Headphones,1,11.99,09/12/19 11:10,"368 Dogwood St, San Francisco, CA 94016" -259200,USB-C Charging Cable,1,11.95,09/26/19 22:37,"449 11th St, Seattle, WA 98101" -259201,AAA Batteries (4-pack),1,2.99,09/30/19 20:00,"403 Chestnut St, Boston, MA 02215" -259202,Bose SoundSport Headphones,1,99.99,09/12/19 08:58,"692 Pine St, Portland, OR 97035" -259203,AAA Batteries (4-pack),1,2.99,09/02/19 16:16,"353 North St, San Francisco, CA 94016" -259204,Vareebadd Phone,1,400,09/17/19 18:06,"850 Meadow St, Boston, MA 02215" -259204,USB-C Charging Cable,1,11.95,09/17/19 18:06,"850 Meadow St, Boston, MA 02215" -259205,27in FHD Monitor,1,149.99,09/19/19 23:53,"307 Lincoln St, Dallas, TX 75001" -259206,Apple Airpods Headphones,1,150,09/29/19 21:20,"988 14th St, Seattle, WA 98101" -259207,20in Monitor,1,109.99,09/04/19 22:43,"430 Sunset St, Austin, TX 73301" -259208,27in FHD Monitor,1,149.99,09/20/19 14:31,"375 Pine St, New York City, NY 10001" -259208,ThinkPad Laptop,1,999.99,09/20/19 14:31,"375 Pine St, New York City, NY 10001" -259209,Lightning Charging Cable,1,14.95,09/27/19 11:17,"579 Washington St, Seattle, WA 98101" -259210,Lightning Charging Cable,1,14.95,09/27/19 12:35,"132 Meadow St, Portland, ME 04101" -259211,AA Batteries (4-pack),3,3.84,09/11/19 19:58,"776 Walnut St, Seattle, WA 98101" -259212,Wired Headphones,1,11.99,09/18/19 11:00,"565 Cherry St, Los Angeles, CA 90001" -259213,27in FHD Monitor,1,149.99,09/12/19 00:37,"706 Hill St, San Francisco, CA 94016" -259214,USB-C Charging Cable,2,11.95,09/29/19 10:00,"335 14th St, San Francisco, CA 94016" -259215,USB-C Charging Cable,3,11.95,09/07/19 16:41,"562 Chestnut St, Dallas, TX 75001" -259216,AA Batteries (4-pack),1,3.84,09/06/19 21:25,"251 Church St, New York City, NY 10001" -259217,AAA Batteries (4-pack),3,2.99,09/04/19 13:35,"302 Lakeview St, New York City, NY 10001" -259218,USB-C Charging Cable,1,11.95,09/30/19 05:13,"522 Dogwood St, Dallas, TX 75001" -259219,AA Batteries (4-pack),1,3.84,09/30/19 15:45,"42 Lake St, Los Angeles, CA 90001" -259220,Vareebadd Phone,1,400,09/21/19 20:31,"815 Jefferson St, San Francisco, CA 94016" -259221,AAA Batteries (4-pack),2,2.99,09/06/19 17:13,"182 1st St, New York City, NY 10001" -259222,Bose SoundSport Headphones,1,99.99,09/01/19 10:44,"613 8th St, Seattle, WA 98101" -259223,AA Batteries (4-pack),1,3.84,09/17/19 16:55,"827 11th St, Portland, OR 97035" -259224,Lightning Charging Cable,1,14.95,09/25/19 01:08,"588 2nd St, Los Angeles, CA 90001" -259225,Apple Airpods Headphones,1,150,09/23/19 19:24,"322 Madison St, Seattle, WA 98101" -259226,Bose SoundSport Headphones,1,99.99,09/14/19 16:28,"155 Johnson St, San Francisco, CA 94016" -259227,USB-C Charging Cable,1,11.95,09/06/19 23:10,"760 Adams St, San Francisco, CA 94016" -259228,AA Batteries (4-pack),1,3.84,10/01/19 02:55,"71 2nd St, Los Angeles, CA 90001" -259229,ThinkPad Laptop,1,999.99,09/05/19 10:12,"689 Elm St, San Francisco, CA 94016" -259230,Flatscreen TV,1,300,09/21/19 19:36,"344 6th St, Seattle, WA 98101" -259231,Google Phone,1,600,09/04/19 23:19,"337 Maple St, Boston, MA 02215" -259232,AAA Batteries (4-pack),2,2.99,09/08/19 14:32,"691 Meadow St, San Francisco, CA 94016" -259233,USB-C Charging Cable,1,11.95,09/13/19 20:02,"65 Spruce St, Atlanta, GA 30301" -259234,Apple Airpods Headphones,1,150,09/30/19 21:28,"179 Cedar St, Los Angeles, CA 90001" -259235,Bose SoundSport Headphones,1,99.99,09/19/19 10:25,"590 Sunset St, Seattle, WA 98101" -259236,27in 4K Gaming Monitor,1,389.99,09/27/19 17:59,"55 Highland St, Los Angeles, CA 90001" -259237,AA Batteries (4-pack),2,3.84,09/20/19 13:45,"716 Chestnut St, Seattle, WA 98101" -259238,Apple Airpods Headphones,1,150,09/26/19 14:19,"228 Church St, Seattle, WA 98101" -259239,Apple Airpods Headphones,1,150,09/05/19 16:10,"781 Lincoln St, New York City, NY 10001" -259240,USB-C Charging Cable,1,11.95,09/22/19 07:46,"737 Spruce St, Boston, MA 02215" -259241,27in 4K Gaming Monitor,1,389.99,09/14/19 16:19,"648 5th St, San Francisco, CA 94016" -259242,AAA Batteries (4-pack),1,2.99,09/06/19 22:59,"863 Cherry St, Los Angeles, CA 90001" -259243,27in 4K Gaming Monitor,1,389.99,09/14/19 15:36,"815 Church St, Los Angeles, CA 90001" -259244,AAA Batteries (4-pack),1,2.99,09/01/19 19:09,"716 12th St, Los Angeles, CA 90001" -259245,20in Monitor,1,109.99,09/18/19 17:37,"660 Meadow St, San Francisco, CA 94016" -259246,Bose SoundSport Headphones,1,99.99,09/04/19 15:55,"777 Forest St, San Francisco, CA 94016" -259247,Lightning Charging Cable,2,14.95,09/03/19 14:12,"39 Meadow St, Dallas, TX 75001" -259248,Apple Airpods Headphones,1,150,09/27/19 02:25,"368 Adams St, Atlanta, GA 30301" -259249,AAA Batteries (4-pack),3,2.99,09/04/19 20:30,"650 West St, San Francisco, CA 94016" -259250,27in FHD Monitor,1,149.99,09/15/19 09:31,"460 Park St, Los Angeles, CA 90001" -259251,Wired Headphones,1,11.99,09/18/19 12:01,"320 Main St, Austin, TX 73301" -259252,USB-C Charging Cable,1,11.95,09/27/19 21:32,"909 Park St, San Francisco, CA 94016" -259253,USB-C Charging Cable,1,11.95,09/26/19 14:50,"10 West St, Los Angeles, CA 90001" -259254,Vareebadd Phone,1,400,09/06/19 14:02,"853 5th St, Los Angeles, CA 90001" -259255,AA Batteries (4-pack),1,3.84,09/24/19 18:25,"49 7th St, Los Angeles, CA 90001" -Order ID,Product,Quantity Ordered,Price Each,Order Date,Purchase Address -259256,USB-C Charging Cable,2,11.95,09/18/19 02:32,"947 Center St, Seattle, WA 98101" -259257,ThinkPad Laptop,1,999.99,09/30/19 21:33,"73 Cherry St, Los Angeles, CA 90001" -259258,Google Phone,1,600,09/09/19 19:16,"849 Elm St, Boston, MA 02215" -259259,Bose SoundSport Headphones,1,99.99,09/13/19 23:25,"322 8th St, Seattle, WA 98101" -259260,Lightning Charging Cable,1,14.95,09/26/19 11:30,"674 Hill St, New York City, NY 10001" -259261,AAA Batteries (4-pack),1,2.99,09/17/19 20:03,"990 12th St, San Francisco, CA 94016" -259262,Lightning Charging Cable,1,14.95,09/03/19 19:38,"232 10th St, Los Angeles, CA 90001" -259263,AA Batteries (4-pack),1,3.84,09/30/19 11:21,"235 10th St, Seattle, WA 98101" -259264,27in 4K Gaming Monitor,1,389.99,09/03/19 14:42,"349 West St, Boston, MA 02215" -259265,AAA Batteries (4-pack),3,2.99,09/04/19 21:52,"370 5th St, Los Angeles, CA 90001" -259266,USB-C Charging Cable,1,11.95,09/13/19 05:36,"9 2nd St, New York City, NY 10001" -259267,AAA Batteries (4-pack),1,2.99,09/21/19 16:47,"824 Park St, San Francisco, CA 94016" -259268,AAA Batteries (4-pack),1,2.99,09/26/19 19:28,"646 Walnut St, New York City, NY 10001" -259269,27in FHD Monitor,1,149.99,09/21/19 21:43,"976 Main St, Atlanta, GA 30301" -259270,Google Phone,1,600,09/06/19 15:27,"940 10th St, San Francisco, CA 94016" -259270,USB-C Charging Cable,1,11.95,09/06/19 15:27,"940 10th St, San Francisco, CA 94016" -259271,Flatscreen TV,1,300,09/15/19 06:03,"453 Hill St, Seattle, WA 98101" -259272,AAA Batteries (4-pack),1,2.99,09/12/19 10:53,"759 Lakeview St, Los Angeles, CA 90001" -259273,AAA Batteries (4-pack),2,2.99,09/02/19 23:58,"324 Jackson St, Los Angeles, CA 90001" -259274,Wired Headphones,1,11.99,09/20/19 18:09,"285 Cherry St, Boston, MA 02215" -259275,Lightning Charging Cable,1,14.95,09/25/19 16:22,"273 7th St, Austin, TX 73301" -259276,27in 4K Gaming Monitor,1,389.99,09/28/19 18:55,"453 Jefferson St, Seattle, WA 98101" -259277,iPhone,1,700,09/28/19 13:07,"795 Willow St, New York City, NY 10001" -259277,Wired Headphones,2,11.99,09/28/19 13:07,"795 Willow St, New York City, NY 10001" -259278,iPhone,1,700,09/11/19 07:24,"505 Hickory St, Atlanta, GA 30301" -259279,Bose SoundSport Headphones,1,99.99,09/22/19 14:45,"57 Elm St, New York City, NY 10001" -259280,Lightning Charging Cable,1,14.95,09/13/19 08:58,"619 10th St, San Francisco, CA 94016" -259281,27in FHD Monitor,1,149.99,09/22/19 17:19,"755 Dogwood St, Dallas, TX 75001" -259282,USB-C Charging Cable,1,11.95,09/01/19 22:54,"806 9th St, Los Angeles, CA 90001" -259283,USB-C Charging Cable,1,11.95,09/30/19 00:20,"785 Jackson St, San Francisco, CA 94016" -259284,AA Batteries (4-pack),1,3.84,09/18/19 09:55,"97 Jackson St, Los Angeles, CA 90001" -259285,AA Batteries (4-pack),1,3.84,09/07/19 11:22,"990 9th St, San Francisco, CA 94016" -259286,AA Batteries (4-pack),2,3.84,09/19/19 18:03,"242 Center St, Seattle, WA 98101" -259287,Lightning Charging Cable,1,14.95,09/09/19 21:24,"675 Jackson St, Boston, MA 02215" -259288,Wired Headphones,1,11.99,09/29/19 20:59,"845 Hickory St, Los Angeles, CA 90001" -259289,ThinkPad Laptop,1,999.99,09/25/19 00:42,"259 Dogwood St, Los Angeles, CA 90001" -259290,AAA Batteries (4-pack),1,2.99,09/13/19 21:42,"542 4th St, Dallas, TX 75001" -259291,iPhone,1,700,09/07/19 18:43,"841 Park St, Portland, OR 97035" -259292,27in 4K Gaming Monitor,1,389.99,09/07/19 13:47,"66 Hickory St, San Francisco, CA 94016" -259293,Wired Headphones,1,11.99,09/02/19 11:37,"678 Adams St, San Francisco, CA 94016" -259294,27in FHD Monitor,1,149.99,09/16/19 11:02,"796 Walnut St, Austin, TX 73301" -259295,AA Batteries (4-pack),1,3.84,09/11/19 05:09,"263 River St, San Francisco, CA 94016" -259296,Apple Airpods Headphones,1,150,09/28/19 16:48,"894 6th St, Dallas, TX 75001" -259296,Apple Airpods Headphones,1,150,09/28/19 16:48,"894 6th St, Dallas, TX 75001" -259297,iPhone,1,700,09/15/19 18:54,"138 Main St, Boston, MA 02215" -259297,Lightning Charging Cable,1,14.95,09/15/19 18:54,"138 Main St, Boston, MA 02215" -259297,Lightning Charging Cable,1,14.95,09/15/19 18:54,"138 Main St, Boston, MA 02215" -259298,20in Monitor,1,109.99,09/18/19 09:10,"188 11th St, Austin, TX 73301" -259299,Macbook Pro Laptop,1,1700,09/30/19 23:59,"240 Chestnut St, Los Angeles, CA 90001" -259300,Wired Headphones,1,11.99,09/17/19 22:07,"932 13th St, San Francisco, CA 94016" -259301,Apple Airpods Headphones,1,150,09/13/19 14:03,"963 Jackson St, San Francisco, CA 94016" -259302,AAA Batteries (4-pack),1,2.99,09/16/19 07:27,"364 4th St, San Francisco, CA 94016" -259303,34in Ultrawide Monitor,1,379.99,09/20/19 20:18,"106 7th St, Atlanta, GA 30301" -259303,AA Batteries (4-pack),1,3.84,09/20/19 20:18,"106 7th St, Atlanta, GA 30301" -259304,Bose SoundSport Headphones,1,99.99,09/02/19 10:23,"309 River St, Boston, MA 02215" -259305,AA Batteries (4-pack),1,3.84,09/24/19 20:46,"47 North St, New York City, NY 10001" -259306,Apple Airpods Headphones,1,150,09/02/19 06:40,"962 13th St, New York City, NY 10001" -259307,27in FHD Monitor,1,149.99,09/14/19 16:06,"172 Washington St, Los Angeles, CA 90001" -259308,Macbook Pro Laptop,1,1700,09/26/19 19:16,"912 8th St, Boston, MA 02215" -259309,Wired Headphones,1,11.99,09/09/19 12:55,"865 Ridge St, Atlanta, GA 30301" -259310,Apple Airpods Headphones,1,150,09/15/19 19:08,"309 Elm St, Los Angeles, CA 90001" -259311,Flatscreen TV,1,300,09/18/19 14:54,"930 North St, Seattle, WA 98101" -259312,Wired Headphones,1,11.99,09/02/19 19:51,"573 Sunset St, San Francisco, CA 94016" -259313,Bose SoundSport Headphones,1,99.99,09/05/19 11:34,"138 2nd St, Los Angeles, CA 90001" -259314,Wired Headphones,1,11.99,09/16/19 00:25,"241 Highland St, Atlanta, GA 30301" -259314,AAA Batteries (4-pack),2,2.99,09/16/19 00:25,"241 Highland St, Atlanta, GA 30301" -259315,Lightning Charging Cable,1,14.95,09/29/19 16:20,"112 5th St, Boston, MA 02215" -259316,AAA Batteries (4-pack),1,2.99,09/16/19 16:48,"369 Johnson St, Atlanta, GA 30301" -259317,Lightning Charging Cable,1,14.95,09/26/19 21:12,"151 1st St, New York City, NY 10001" -259318,AAA Batteries (4-pack),1,2.99,09/30/19 10:05,"524 Hickory St, Boston, MA 02215" -259319,27in 4K Gaming Monitor,1,389.99,09/15/19 12:30,"811 Lincoln St, San Francisco, CA 94016" -259320,ThinkPad Laptop,1,999.99,09/02/19 10:51,"857 Elm St, Atlanta, GA 30301" -259321,ThinkPad Laptop,1,999.99,09/25/19 16:09,"418 Hickory St, Los Angeles, CA 90001" -259322,Bose SoundSport Headphones,1,99.99,09/15/19 10:45,"401 7th St, Los Angeles, CA 90001" -259323,USB-C Charging Cable,1,11.95,09/24/19 16:42,"727 Forest St, Portland, OR 97035" -259324,Macbook Pro Laptop,1,1700,09/29/19 13:37,"926 North St, San Francisco, CA 94016" -259325,USB-C Charging Cable,1,11.95,09/25/19 11:51,"83 7th St, New York City, NY 10001" -259326,AAA Batteries (4-pack),3,2.99,09/15/19 23:01,"163 Church St, New York City, NY 10001" -259327,Apple Airpods Headphones,1,150,09/20/19 18:45,"505 Spruce St, Seattle, WA 98101" -259328,Wired Headphones,1,11.99,09/18/19 10:13,"877 Lincoln St, Boston, MA 02215" -259329,Lightning Charging Cable,1,14.95,09/05/19 19:00,"480 Lincoln St, Atlanta, GA 30301" -259330,AA Batteries (4-pack),2,3.84,09/25/19 22:01,"763 Washington St, Seattle, WA 98101" -259331,Apple Airpods Headphones,1,150,09/29/19 07:00,"770 4th St, New York City, NY 10001" -259332,Apple Airpods Headphones,1,150,09/16/19 19:21,"782 Lake St, Atlanta, GA 30301" -259333,Bose SoundSport Headphones,1,99.99,09/19/19 18:03,"347 Ridge St, San Francisco, CA 94016" -259334,USB-C Charging Cable,1,11.95,09/27/19 10:52,"276 14th St, Atlanta, GA 30301" -259335,Lightning Charging Cable,1,14.95,09/26/19 17:21,"791 Forest St, Seattle, WA 98101" -,,,,, -259336,AAA Batteries (4-pack),3,2.99,09/25/19 00:13,"753 14th St, Boston, MA 02215" -259337,USB-C Charging Cable,1,11.95,09/19/19 17:34,"495 Park St, Boston, MA 02215" -259338,AAA Batteries (4-pack),2,2.99,09/02/19 21:29,"666 Lakeview St, Boston, MA 02215" -259339,USB-C Charging Cable,2,11.95,09/12/19 23:43,"509 Park St, Austin, TX 73301" -259340,AA Batteries (4-pack),2,3.84,09/18/19 20:18,"544 Hickory St, Los Angeles, CA 90001" -259341,27in 4K Gaming Monitor,1,389.99,09/24/19 22:16,"501 Adams St, Seattle, WA 98101" -259342,AA Batteries (4-pack),1,3.84,09/07/19 20:09,"579 South St, Boston, MA 02215" -259343,USB-C Charging Cable,1,11.95,09/14/19 19:30,"675 Maple St, Austin, TX 73301" -259344,AAA Batteries (4-pack),2,2.99,09/10/19 23:33,"721 Madison St, San Francisco, CA 94016" -259345,ThinkPad Laptop,1,999.99,09/21/19 23:12,"406 Dogwood St, San Francisco, CA 94016" -259346,Bose SoundSport Headphones,1,99.99,09/29/19 17:24,"484 Cedar St, New York City, NY 10001" -259347,AA Batteries (4-pack),1,3.84,09/26/19 10:12,"979 Madison St, Los Angeles, CA 90001" -259348,Lightning Charging Cable,1,14.95,09/30/19 21:03,"260 Spruce St, Boston, MA 02215" -259349,AAA Batteries (4-pack),1,2.99,09/01/19 22:14,"911 River St, Dallas, TX 75001" -259350,Google Phone,1,600,09/30/19 13:49,"519 Maple St, San Francisco, CA 94016" -259350,USB-C Charging Cable,1,11.95,09/30/19 13:49,"519 Maple St, San Francisco, CA 94016" -259351,Apple Airpods Headphones,1,150,09/01/19 19:43,"981 4th St, New York City, NY 10001" -259352,USB-C Charging Cable,1,11.95,09/07/19 15:49,"976 Forest St, San Francisco, CA 94016" -259353,AAA Batteries (4-pack),3,2.99,09/17/19 20:56,"840 Highland St, Los Angeles, CA 90001" -259354,iPhone,1,700,09/01/19 16:00,"216 Dogwood St, San Francisco, CA 94016" -259355,iPhone,1,700,09/23/19 07:39,"220 12th St, San Francisco, CA 94016" -259356,34in Ultrawide Monitor,1,379.99,09/19/19 17:30,"511 Forest St, San Francisco, CA 94016" -259357,USB-C Charging Cable,1,11.95,09/30/19 00:18,"250 Meadow St, San Francisco, CA 94016" diff --git a/SalesAnalysis/SalesAnalysis.ipynb b/SalesAnalysis/SalesAnalysis.ipynb deleted file mode 100644 index 9181092..0000000 --- a/SalesAnalysis/SalesAnalysis.ipynb +++ /dev/null @@ -1,1574 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Sales Analysis" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Import necessary libraries" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "import pandas as pd" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Merge data from each month into one CSV" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "path = \"./Sales_Data\"\n", - "files = [file for file in os.listdir(path) if not file.startswith('.')] # Ignore hidden files\n", - "\n", - "all_months_data = pd.DataFrame()\n", - "\n", - "for file in files:\n", - " current_data = pd.read_csv(path+\"/\"+file)\n", - " all_months_data = pd.concat([all_months_data, current_data])\n", - " \n", - "all_months_data.to_csv(\"all_data_copy.csv\", index=False)\n", - " " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Read in updated dataframe" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
0176558USB-C Charging Cable211.9504/19/19 08:46917 1st St, Dallas, TX 75001
1NaNNaNNaNNaNNaNNaN
2176559Bose SoundSport Headphones199.9904/07/19 22:30682 Chestnut St, Boston, MA 02215
3176560Google Phone160004/12/19 14:38669 Spruce St, Los Angeles, CA 90001
4176560Wired Headphones111.9904/12/19 14:38669 Spruce St, Los Angeles, CA 90001
\n", - "
" - ], - "text/plain": [ - " Order ID Product Quantity Ordered Price Each \\\n", - "0 176558 USB-C Charging Cable 2 11.95 \n", - "1 NaN NaN NaN NaN \n", - "2 176559 Bose SoundSport Headphones 1 99.99 \n", - "3 176560 Google Phone 1 600 \n", - "4 176560 Wired Headphones 1 11.99 \n", - "\n", - " Order Date Purchase Address \n", - "0 04/19/19 08:46 917 1st St, Dallas, TX 75001 \n", - "1 NaN NaN \n", - "2 04/07/19 22:30 682 Chestnut St, Boston, MA 02215 \n", - "3 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 \n", - "4 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 " - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "all_data = pd.read_csv(\"all_data.csv\")\n", - "all_data.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Clean up the data!\n", - "The first step in this is figuring out what we need to clean. I have found in practice, that you find things you need to clean as you perform operations and get errors. Based on the error, you decide how you should go about cleaning the data" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### Drop rows of NAN" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
1NaNNaNNaNNaNNaNNaN
356NaNNaNNaNNaNNaNNaN
735NaNNaNNaNNaNNaNNaN
1433NaNNaNNaNNaNNaNNaN
1553NaNNaNNaNNaNNaNNaN
\n", - "
" - ], - "text/plain": [ - " Order ID Product Quantity Ordered Price Each Order Date Purchase Address\n", - "1 NaN NaN NaN NaN NaN NaN\n", - "356 NaN NaN NaN NaN NaN NaN\n", - "735 NaN NaN NaN NaN NaN NaN\n", - "1433 NaN NaN NaN NaN NaN NaN\n", - "1553 NaN NaN NaN NaN NaN NaN" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase Address
0176558USB-C Charging Cable211.9504/19/19 08:46917 1st St, Dallas, TX 75001
2176559Bose SoundSport Headphones199.9904/07/19 22:30682 Chestnut St, Boston, MA 02215
3176560Google Phone160004/12/19 14:38669 Spruce St, Los Angeles, CA 90001
4176560Wired Headphones111.9904/12/19 14:38669 Spruce St, Los Angeles, CA 90001
5176561Wired Headphones111.9904/30/19 09:27333 8th St, Los Angeles, CA 90001
\n", - "
" - ], - "text/plain": [ - " Order ID Product Quantity Ordered Price Each \\\n", - "0 176558 USB-C Charging Cable 2 11.95 \n", - "2 176559 Bose SoundSport Headphones 1 99.99 \n", - "3 176560 Google Phone 1 600 \n", - "4 176560 Wired Headphones 1 11.99 \n", - "5 176561 Wired Headphones 1 11.99 \n", - "\n", - " Order Date Purchase Address \n", - "0 04/19/19 08:46 917 1st St, Dallas, TX 75001 \n", - "2 04/07/19 22:30 682 Chestnut St, Boston, MA 02215 \n", - "3 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 \n", - "4 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 \n", - "5 04/30/19 09:27 333 8th St, Los Angeles, CA 90001 " - ] - }, - "execution_count": 21, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Find NAN\n", - "nan_df = all_data[all_data.isna().any(axis=1)]\n", - "display(nan_df.head())\n", - "\n", - "all_data = all_data.dropna(how='all')\n", - "all_data.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### Get rid of text in order date column" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [], - "source": [ - "all_data = all_data[all_data['Order Date'].str[0:2]!='Or']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Make columns correct type" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [], - "source": [ - "all_data['Quantity Ordered'] = pd.to_numeric(all_data['Quantity Ordered'])\n", - "all_data['Price Each'] = pd.to_numeric(all_data['Price Each'])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Augment data with additional columns" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Add month column" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase AddressMonth
0176558USB-C Charging Cable211.9504/19/19 08:46917 1st St, Dallas, TX 750014
2176559Bose SoundSport Headphones199.9904/07/19 22:30682 Chestnut St, Boston, MA 022154
3176560Google Phone1600.0004/12/19 14:38669 Spruce St, Los Angeles, CA 900014
4176560Wired Headphones111.9904/12/19 14:38669 Spruce St, Los Angeles, CA 900014
5176561Wired Headphones111.9904/30/19 09:27333 8th St, Los Angeles, CA 900014
\n", - "
" - ], - "text/plain": [ - " Order ID Product Quantity Ordered Price Each \\\n", - "0 176558 USB-C Charging Cable 2 11.95 \n", - "2 176559 Bose SoundSport Headphones 1 99.99 \n", - "3 176560 Google Phone 1 600.00 \n", - "4 176560 Wired Headphones 1 11.99 \n", - "5 176561 Wired Headphones 1 11.99 \n", - "\n", - " Order Date Purchase Address Month \n", - "0 04/19/19 08:46 917 1st St, Dallas, TX 75001 4 \n", - "2 04/07/19 22:30 682 Chestnut St, Boston, MA 02215 4 \n", - "3 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 4 \n", - "4 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 4 \n", - "5 04/30/19 09:27 333 8th St, Los Angeles, CA 90001 4 " - ] - }, - "execution_count": 24, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "all_data['Month'] = all_data['Order Date'].str[0:2]\n", - "all_data['Month'] = all_data['Month'].astype('int32')\n", - "all_data.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Add month column (alternative method)" - ] - }, - { - "cell_type": "code", - "execution_count": 47, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase AddressMonthMonth 2
0176558USB-C Charging Cable211.9504/19/19 08:46917 1st St, Dallas, TX 7500144
2176559Bose SoundSport Headphones199.9904/07/19 22:30682 Chestnut St, Boston, MA 0221544
3176560Google Phone160004/12/19 14:38669 Spruce St, Los Angeles, CA 9000144
4176560Wired Headphones111.9904/12/19 14:38669 Spruce St, Los Angeles, CA 9000144
5176561Wired Headphones111.9904/30/19 09:27333 8th St, Los Angeles, CA 9000144
\n", - "
" - ], - "text/plain": [ - " Order ID Product Quantity Ordered Price Each \\\n", - "0 176558 USB-C Charging Cable 2 11.95 \n", - "2 176559 Bose SoundSport Headphones 1 99.99 \n", - "3 176560 Google Phone 1 600 \n", - "4 176560 Wired Headphones 1 11.99 \n", - "5 176561 Wired Headphones 1 11.99 \n", - "\n", - " Order Date Purchase Address Month Month 2 \n", - "0 04/19/19 08:46 917 1st St, Dallas, TX 75001 4 4 \n", - "2 04/07/19 22:30 682 Chestnut St, Boston, MA 02215 4 4 \n", - "3 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 4 4 \n", - "4 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 4 4 \n", - "5 04/30/19 09:27 333 8th St, Los Angeles, CA 90001 4 4 " - ] - }, - "execution_count": 47, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "all_data['Month 2'] = pd.to_datetime(all_data['Order Date']).dt.month\n", - "all_data.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Add city column" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase AddressMonthCity
0176558USB-C Charging Cable211.9504/19/19 08:46917 1st St, Dallas, TX 750014Dallas (TX)
2176559Bose SoundSport Headphones199.9904/07/19 22:30682 Chestnut St, Boston, MA 022154Boston (MA)
3176560Google Phone1600.0004/12/19 14:38669 Spruce St, Los Angeles, CA 900014Los Angeles (CA)
4176560Wired Headphones111.9904/12/19 14:38669 Spruce St, Los Angeles, CA 900014Los Angeles (CA)
5176561Wired Headphones111.9904/30/19 09:27333 8th St, Los Angeles, CA 900014Los Angeles (CA)
\n", - "
" - ], - "text/plain": [ - " Order ID Product Quantity Ordered Price Each \\\n", - "0 176558 USB-C Charging Cable 2 11.95 \n", - "2 176559 Bose SoundSport Headphones 1 99.99 \n", - "3 176560 Google Phone 1 600.00 \n", - "4 176560 Wired Headphones 1 11.99 \n", - "5 176561 Wired Headphones 1 11.99 \n", - "\n", - " Order Date Purchase Address Month \\\n", - "0 04/19/19 08:46 917 1st St, Dallas, TX 75001 4 \n", - "2 04/07/19 22:30 682 Chestnut St, Boston, MA 02215 4 \n", - "3 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 4 \n", - "4 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 4 \n", - "5 04/30/19 09:27 333 8th St, Los Angeles, CA 90001 4 \n", - "\n", - " City \n", - "0 Dallas (TX) \n", - "2 Boston (MA) \n", - "3 Los Angeles (CA) \n", - "4 Los Angeles (CA) \n", - "5 Los Angeles (CA) " - ] - }, - "execution_count": 25, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "def get_city(address):\n", - " return address.split(\",\")[1].strip(\" \")\n", - "\n", - "def get_state(address):\n", - " return address.split(\",\")[2].split(\" \")[1]\n", - "\n", - "all_data['City'] = all_data['Purchase Address'].apply(lambda x: f\"{get_city(x)} ({get_state(x)})\")\n", - "all_data.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Data Exploration!" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Question 1: What was the best month for sales? How much was earned that month? " - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "metadata": {}, - "outputs": [], - "source": [ - "all_data['Sales'] = all_data['Quantity Ordered'].astype('int') * all_data['Price Each'].astype('float')" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Quantity OrderedPrice EachSales
Month
1109031.811768e+061.822257e+06
2134492.188885e+062.202022e+06
3170052.791208e+062.807100e+06
4205583.367671e+063.390670e+06
5186673.135125e+063.152607e+06
6152532.562026e+062.577802e+06
7160722.632540e+062.647776e+06
8134482.230345e+062.244468e+06
9131092.084992e+062.097560e+06
10227033.715555e+063.736727e+06
11197983.180601e+063.199603e+06
12281144.588415e+064.613443e+06
\n", - "
" - ], - "text/plain": [ - " Quantity Ordered Price Each Sales\n", - "Month \n", - "1 10903 1.811768e+06 1.822257e+06\n", - "2 13449 2.188885e+06 2.202022e+06\n", - "3 17005 2.791208e+06 2.807100e+06\n", - "4 20558 3.367671e+06 3.390670e+06\n", - "5 18667 3.135125e+06 3.152607e+06\n", - "6 15253 2.562026e+06 2.577802e+06\n", - "7 16072 2.632540e+06 2.647776e+06\n", - "8 13448 2.230345e+06 2.244468e+06\n", - "9 13109 2.084992e+06 2.097560e+06\n", - "10 22703 3.715555e+06 3.736727e+06\n", - "11 19798 3.180601e+06 3.199603e+06\n", - "12 28114 4.588415e+06 4.613443e+06" - ] - }, - "execution_count": 27, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "all_data.groupby(['Month']).sum()" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "range(1, 13)\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAZ4AAAEGCAYAAABVSfMhAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAY20lEQVR4nO3de5RlZX3m8e9DA4J44daiArFRO0RkFLUHSYhGwUsDBjAjS4hKj8MMMxENZLJUiI4E1LVw6YrGeCXCCMSIjKggoMiASHQC0txBBDreaCF0cxFRDNff/HHeCoemqk5VWXtXU/X9rHXWOfvdl997urv6qb3PPu+bqkKSpL5sMNcdkCQtLAaPJKlXBo8kqVcGjySpVwaPJKlXG851B9Z3W2+9dS1ZsmSuuyFJjyuXXXbZ7VW1eLx1Bs8IS5YsYeXKlXPdDUl6XEny04nWealNktQrg0eS1CuDR5LUK4NHktQrg0eS1CuDR5LUK4NHktQrg0eS1CuDR5LUK0cukKR5YMmRZ8/6MX9y3D6zfkzwjEeS1DODR5LUK4NHktQrg0eS1CuDR5LUK4NHktQrg0eS1CuDR5LUK4NHktQrg0eS1CuDR5LUK4NHktQrg0eS1CuDR5LUK4NHktQrg0eS1CuDR5LUK4NHktQrg0eS1CuDR5LUK4NHktQrg0eS1CuDR5LUq86DJ8miJFckOast75DkkiQ3JflSko1b+xPa8qq2fsnQMY5q7Tckee1Q+/LWtirJkUPt064hSepHH2c8hwPXDy1/CPhoVS0F7gIOae2HAHdV1XOBj7btSLITcCDwfGA58KkWZouATwJ7ATsBB7Vtp11DktSfToMnyXbAPsDn2nKAPYAvt01OAvZvr/dry7T1e7bt9wNOrar7qurHwCpg1/ZYVVU/qqr7gVOB/WZYQ5LUk67PeD4GvAt4uC1vBfyiqh5sy6uBbdvrbYGbAdr6u9v2/96+zj4Ttc+kxqMkOTTJyiQr165dO/13LUmaUGfBk+R1wJqqumy4eZxNa8S62WofVf+Rhqrjq2pZVS1bvHjxOLtIkmZqww6PvTuwb5K9gU2ApzA4A9o8yYbtjGM74Ja2/Wpge2B1kg2BpwJ3DrWPGd5nvPbbZ1BDktSTzs54quqoqtquqpYwuDnggqp6E/Bt4A1tsxXAGe31mW2Ztv6CqqrWfmC7I20HYCnwfeBSYGm7g23jVuPMts90a0iSetLlGc9E3g2cmuQDwBXACa39BOCUJKsYnIUcCFBV1yU5DfgB8CBwWFU9BJDk7cC5wCLgxKq6biY1JEn9ib/wT27ZsmW1cuXKue6GJE1qyZFnz/oxf3LcPjPeN8llVbVsvHWOXCBJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSerVXHyPR5Lm3Pp2+/FC4hmPJKlXBo8kqVcGjySpVwaPJKlXBo8kqVcGjySpVwaPJKlXBo8kqVcGjySpVwaPJKlXBo8kqVcGjySpVwaPJKlXBo8kqVcGjySpV87Ho/XObM+T4hwp0vrFMx5JUq8MHklSrwweSVKvphU8STZLsqirzkiS5r9JgyfJBkn+NMnZSdYAPwRuTXJdkg8nWdpPNyVJ88WoM55vA88BjgKeXlXbV9XTgJcBFwPHJXlzx32UJM0jo26nflVVPbBuY1XdCZwOnJ5ko056JkmalyYNnvFCJ8nGwEZV9euJtpEkDcz299Lg8f/dtJE3FyQ5PMmO7fUfATcDNyV5W9edkyTNP1MZuWAF8In2+r3AvsC1DD7j+VRH/ZI65W+h0tyZNHiSHA08E3hPu8S2C/BaYDnw5CTvAy6sqos676kkaV4Y9RnPMUle2rbbEji9qo5NsgGwvKqO7aOTkqT5YypfID0EeAJwB/DO1va7wOe66pQkaf4aGTxVdWtVvbuq/ldV3dPaflhVJ0y2X5JNknw/yVXtC6fHtPYdklyS5KYkX2qX8EjyhLa8qq1fMnSso1r7DUleO9S+vLWtSnLkUPu0a0iS+jFq5IL3JtlykvV7JHndBKvvA/aoqhcy+GxoeZLdgA8BH62qpcBdDM6oaM93VdVzgY+27UiyE3Ag8HwGny19KsmiNnTPJ4G9gJ2Ag9q2TLeGJKk/o854rgG+nuT8NkTOu5K8L8kpSa4B/hi4ZLwda+BXbXGj9ihgD+DLrf0kYP/2er+2TFu/Z5K09lOr6r6q+jGwCti1PVZV1Y+q6n7gVGC/ts90a0iSejJp8FTVGVW1O/A/gOuARcAvgX8Adq2qv6iqtRPt385MrgTWAOcB/wL8oqoebJusBrZtr7dl8B0h2vq7ga2G29fZZ6L2rWZQY91+H5pkZZKVa9dO+PYkSTMwpRlIq+om4KbpHryqHgJ2SbI58FXgeeNt1p7HO/OoSdrHC83Jtp+sxqMbqo4HjgdYtmzZY9ZLkmaul/l4quoXwIXAbsDmScYCbzvglvZ6NbA9QFv/VODO4fZ19pmo/fYZ1JAk9aSz4EmyuJ3pkGRT4FXA9QxGvH5D22wFcEZ7fWZbpq2/oKqqtR/Y7kjbAVgKfB+4FFja7mDbmMENCGe2faZbQ5LUkyldapuhZwAntbvPNgBOq6qzkvwAODXJB4ArgLHbsk8ATkmyisFZyIEAVXVdktOAHwAPAoe1S3gkeTtwLoPPnk6squvasd49nRqSpP6MDJ4krwTeAezYmq4HPlFVF062X1VdDbxonPYfMbgjbd32fwMOmOBYHwQ+OE77OcA5s1FDktSPUd/j2Qc4Efg68KfAmxj8R39ikr27754kab4ZdcbzTmD/qrpqqO3KJCuBv2Ocsw1JkiYz6uaCp68TOsC/X0bbppsuSZLms1FnPL+e4TrNQ85hI2k2jAqe5yQ5c5z2AM/uoD+SpHluVPDsN8m6j8xmRyRJC8OoieC+M7ycZCNgZ+DnVbWmy45JkuanUbdTfybJ89vrpwJXAScDVyQ5qIf+SZLmmVF3tb1saDSAtwI3VtV/AF4CvKvTnkmS5qVRwXP/0OtXA18DqKp/7axHkqR5bdTNBb9oM4z+HNidNpNnG9l50477JmmKvNVdjyejgue/Ax8Hng4cMXSmsycw+//SJUnz3qi72m4Elo/Tfi6DUaElSZqWSYMnyd/x6Bk6i8FEa9+uqu922TFpPvASmPRYoy61rRynbUvgw0m+VFUf66BPkqR5bNSltpPGa0/yGeD/AQaPJGlaZjT1dVX9ZrY7IklaGKY99XW7lfotwOrZ744kab4bdXPBPTz65gKA3wDfYXCrtSRJ0zLqM54n99URSdLCMKPPeCRJmimDR5LUK4NHktSrKd/VlmQRsM3wPlX1sy46JUmav6YUPEneARwN3AY83JoLeEFH/ZIkzVNTPeM5HNixqu7osjOSpPlvqp/x3Azc3WVHJEkLw1TPeH4EXJjkbOC+scaq+ptOeiVJmremGjw/a4+N20PSAjTb0zw4xcPCNKXgqapjuu6IJGlhGDVW28eq6ogkX+exY7ZRVft21jNNmZONSXo8GXXGc0p7/kjXHZEkLQyjBgm9rD1/p5/uSJLmO4fMkST1yuCRJPVqJjOQbgA8qap+2UF/JMnbtue5KZ3xJPnHJE9JshnwA+CGJO8csc/2Sb6d5Pok1yU5vLVvmeS8JDe15y1ae5J8PMmqJFcnefHQsVa07W9KsmKo/SVJrmn7fDxJZlpDktSPqV5q26md4ewPnAP8DvCWEfs8CPxlVT0P2A04LMlOwJHA+VW1FDi/LQPsBSxtj0OBT8MgRBgMUPpSYFfg6LEgadscOrTf8tY+rRqSpP5MNXg2SrIRg+A5o6oeYJzv9Qyrqlur6vL2+h7gemBbYD/gpLbZSe2YtPaTa+BiYPMkzwBeC5xXVXdW1V3AecDytu4pVfXPVVXAyescazo1JEk9mWrwfBb4CbAZcFGSZwFT/ownyRLgRcAlwDZVdSsMwgl4WttsWwaDkY5Z3doma189TjszqLFufw9NsjLJyrVr1071bUqSpmBKwVNVH6+qbatq73a28FPglVPZN8mTgNOBI0bckJDxSs+gfdLuTGWfqjq+qpZV1bLFixePOKQkaTqmenPBNklOSPKNtrwTsGLEbrTLc6cDX6iqr7Tm28Yub7XnNa19NbD90O7bAbeMaN9unPaZ1JAk9WSql9o+D5wLPLMt3wgcMdkO7Q6zE4Dr15k+4UweCa0VwBlD7Qe3O892A+5ul8nOBV6TZIt2U8FrgHPbunuS7NZqHbzOsaZTQ5LUk6l+j2frqjotyVEAVfVgkodG7LM7gzvfrklyZWv7K+A44LQkhzCYauGAtu4cYG9gFXAv8NZW684k7wcubdsdW1V3ttd/xiAUNwW+0R5Mt4YkqT9TDZ5fJ9mK9nnI2NnCZDtU1XcZ/zMVgD3H2b6AwyY41onAieO0rwR2Hqf9junWkCT1Y6rB8z8ZXKZ6TpLvAYuBN3TWK0nSvDXVieAuT/JHwI4MzmJuaN/lkSRpWkZNBPcnE6z63SQM3ammcThBmyQ91qgznj+eZF0BBo8kaVpGTQTnXV+SpFk15WkRkuwDPB/YZKytqo7tolOSpPlrqiMXfAZ4I/AOBjcXHAA8q8N+SZLmqamOXPAHVXUwcFdVHQP8Po8eekaSpCmZavD8pj3fm+SZwAPADt10SZI0n031M56zkmwOfBi4nMEdbX/fWa8kSfPWVL9A+v728vQkZwGbVNWkQ+ZIkjSeSS+1JfmPSZ4+tHwwcBrw/jYltSRJ0zLqM57PAvcDJHk5g1GfT2YwQOjx3XZNkjQfjbrUtmhoCoI3AsdX1ekMLrldOcl+kiSNa9QZz6IkY+G0J3DB0Lopf/lUkqQxo8Lji8B3ktzO4JbqfwJI8lxGzMcjSdJ4Ro3V9sEk5wPPAL7VJlKDwZnSO7runCRp/hl5uayqLh6n7cZuuiNJmu+mOnKBJEmzwuCRJPXK4JEk9crgkST1yuCRJPXK4JEk9crgkST1yuCRJPXK4JEk9crgkST1yuCRJPXK4JEk9crgkST1yuCRJPXK4JEk9crgkST1yuCRJPXK4JEk9aqz4ElyYpI1Sa4datsyyXlJbmrPW7T2JPl4klVJrk7y4qF9VrTtb0qyYqj9JUmuaft8PElmWkOS1J8uz3g+Dyxfp+1I4PyqWgqc35YB9gKWtsehwKdhECLA0cBLgV2Bo8eCpG1z6NB+y2dSQ5LUr86Cp6ouAu5cp3k/4KT2+iRg/6H2k2vgYmDzJM8AXgucV1V3VtVdwHnA8rbuKVX1z1VVwMnrHGs6NSRJPer7M55tqupWgPb8tNa+LXDz0HarW9tk7avHaZ9JjcdIcmiSlUlWrl27dlpvUJI0ufXl5oKM01YzaJ9Jjcc2Vh1fVcuqatnixYtHHFaSNB19B89tY5e32vOa1r4a2H5ou+2AW0a0bzdO+0xqSJJ61HfwnAmM3Zm2AjhjqP3gdufZbsDd7TLZucBrkmzRbip4DXBuW3dPkt3a3WwHr3Os6dSQJPVow64OnOSLwCuArZOsZnB32nHAaUkOAX4GHNA2PwfYG1gF3Au8FaCq7kzyfuDStt2xVTV2w8KfMbhzblPgG+3BdGtIkvrVWfBU1UETrNpznG0LOGyC45wInDhO+0pg53Ha75huDUlSf9aXmwskSQuEwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nqlcEjSeqVwSNJ6pXBI0nq1YILniTLk9yQZFWSI+e6P5K00Cyo4EmyCPgksBewE3BQkp3mtleStLAsqOABdgVWVdWPqup+4FRgvznukyQtKKmque5Db5K8AVheVf+1Lb8FeGlVvX2d7Q4FDm2LOwI39NC9rYHb50EN66zfdebTe7HO+lsD4FlVtXi8FRv2UHx9knHaHpO8VXU8cHz33XlEkpVVtezxXsM663ed+fRerLP+1hhloV1qWw1sP7S8HXDLHPVFkhakhRY8lwJLk+yQZGPgQODMOe6TJC0oC+pSW1U9mOTtwLnAIuDEqrpujrs1po9Le31dPrTO+ltnPr0X66y/NSa1oG4ukCTNvYV2qU2SNMcMHklSrwyeOZbkxCRrklzbYY3tk3w7yfVJrktyeEd1Nkny/SRXtTrHdFGn1VqU5IokZ3VY4ydJrklyZZKVHdbZPMmXk/yw/R39fgc1dmzvY+zxyyRHzHadVusv2t//tUm+mGSTDmoc3o5/3Wy/j/F+JpNsmeS8JDe15y06qHFAez8PJ5mV250nqPPh9m/t6iRfTbL5bNSaDoNn7n0eWN5xjQeBv6yq5wG7AYd1NFTQfcAeVfVCYBdgeZLdOqgDcDhwfUfHHvbKqtql4+89/C3wzar6PeCFdPC+quqG9j52AV4C3At8dbbrJNkW+HNgWVXtzOAmngNnucbOwH9jMBLJC4HXJVk6iyU+z2N/Jo8Ezq+qpcD5bXm2a1wL/Alw0W957FF1zgN2rqoXADcCR81ivSkxeOZYVV0E3NlxjVur6vL2+h4G/7Ft20GdqqpftcWN2mPW715Jsh2wD/C52T5235I8BXg5cAJAVd1fVb/ouOyewL9U1U87Ov6GwKZJNgSeyOx/V+55wMVVdW9VPQh8B3j9bB18gp/J/YCT2uuTgP1nu0ZVXV9VszpKygR1vtX+3AAuZvB9xl4ZPAtMkiXAi4BLOjr+oiRXAmuA86qqizofA94FPNzBsYcV8K0kl7VhlLrwbGAt8L/bpcPPJdmso1pjDgS+2MWBq+rnwEeAnwG3AndX1bdmucy1wMuTbJXkicDePPqL4V3YpqpuhcEvcsDTOq7Xl/8CfKPvogbPApLkScDpwBFV9csualTVQ+1yznbAru2yyKxJ8jpgTVVdNpvHncDuVfViBqOZH5bk5R3U2BB4MfDpqnoR8Gt++8s4E2pfnN4X+D8dHX8LBmcHOwDPBDZL8ubZrFFV1wMfYnDJ6JvAVQwuJ2sakryHwZ/bF/qubfAsEEk2YhA6X6iqr3Rdr10uupDZ//xqd2DfJD9hMLr4Hkn+YZZrAFBVt7TnNQw+D9m1gzKrgdVDZ4ZfZhBEXdkLuLyqbuvo+K8CflxVa6vqAeArwB/MdpGqOqGqXlxVL2dwKemm2a6xjtuSPAOgPa/puF6nkqwAXge8qebgy5wGzwKQJAw+Q7i+qv6mwzqLx+6QSbIpg/+EfjibNarqqKrarqqWMLhkdEFVzepv1ABJNkvy5LHXwGsYXOKZVVX1r8DNSXZsTXsCP5jtOkMOoqPLbM3PgN2SPLH9u9uTDm6WSPK09vw7DD6Q7/I9wWBorRXt9QrgjI7rdSbJcuDdwL5Vde+cdKKqfMzhg8EPzK3AAwx++z2kgxp/yODziquBK9tj7w7qvAC4otW5Fnhfx392rwDO6ujYz2ZwCecq4DrgPR2+j12Ale3P7WvAFh3VeSJwB/DUjv9ejmHwC8e1wCnAEzqo8U8MAvoqYM9ZPvZjfiaBrRjczXZTe96ygxqvb6/vA24Dzu3ovawCbh76v+AzXf57GO/hkDmSpF55qU2S1CuDR5LUK4NHktQrg0eS1CuDR5LUK4NHmoYkleSUoeUNk6yd6SjZbWTqtw0tv6LLEben0J//nOQTc1VfC4PBI03Pr4Gd2xdkAV4N/Py3ON7mwNtGbvU4kWTRXPdB6z+DR5q+bzAYHRvWGQmgzdvytTbXycVJXtDa/7rNjXJhkh8l+fO2y3HAc9ocOR9ubU8amp/nC20EgEdpx/lQBvMf3ZjkZa39UWcsSc5K8or2+ldtn8uS/N8kuw71Z9+hw2+f5JtJbkhy9NCx3tzqXZnks2Mh0457bJJLgFmfS0jzj8EjTd+pwIEZTHD2Ah490vcxwBU1mOvkr4CTh9b9HvBaBmO+Hd3GzzuSwRQFu1TVO9t2LwKOAHZiMILC7hP0Y8Oq2rVte/QE2wzbDLiwql4C3AN8gMEZ2+uBY4e22xV4E4MRFQ5IsizJ84A3Mhg4dRfgobbN2HGvraqXVtV3p9APLXAbznUHpMebqrq6TS9xEHDOOqv/EPhPbbsL2tD9T23rzq6q+4D7kqwBtpmgxPerajVAm2JiCTDef+hjg71e1rYZ5X4GozkDXAPcV1UPJLlmnf3Pq6o7Wv2vtPf0IIMJ5C5tJ2Cb8shAmQ8xGIBWmhKDR5qZMxnMO/MKBuN4jXnMZTEemQzvvqG2h5j452+62w1v8yCPvpIxPO30A/XIGFkPj+1fVQ+3SdvW7e/wcoCTqmq82Sr/raoemqCP0mN4qU2amROBY6vqmnXaL6Jdgmqfrdxek899dA/w5Fns10+AXZJskGR7ZjaVw6vbZ1WbMphp83sMBsZ8w9Co0FsmedZsdVoLi2c80gy0S2F/O86qv2Ywm+jVwL08MpT+RMe5I8n3klzL4KaFs3/Lrn0P+DGDS2nXApfP4BjfZTCq9HOBf6yqlQBJ3stgRtYNGIx2fBjQ1fTZmsccnVqS1CsvtUmSemXwSJJ6ZfBIknpl8EiSemXwSJJ6ZfBIknpl8EiSevX/ARSsVGnJZX9LAAAAAElFTkSuQmCC\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "import matplotlib.pyplot as plt\n", - "\n", - "months = range(1,13)\n", - "print(months)\n", - "\n", - "plt.bar(months,all_data.groupby(['Month']).sum()['Sales'])\n", - "plt.xticks(months)\n", - "plt.ylabel('Sales in USD ($)')\n", - "plt.xlabel('Month number')\n", - "plt.show()\n", - "\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Question 2: What city sold the most product?" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Quantity OrderedPrice EachMonthSales
City
Atlanta (GA)166022.779908e+061047942.795499e+06
Austin (TX)111531.809874e+06698291.819582e+06
Boston (MA)225283.637410e+061411123.661642e+06
Dallas (TX)167302.752628e+061046202.767975e+06
Los Angeles (CA)332895.421435e+062083255.452571e+06
New York City (NY)279324.635371e+061757414.664317e+06
Portland (ME)27504.471893e+05171444.497583e+05
Portland (OR)113031.860558e+06706211.870732e+06
San Francisco (CA)502398.211462e+063155208.262204e+06
Seattle (WA)165532.733296e+061049412.747755e+06
\n", - "
" - ], - "text/plain": [ - " Quantity Ordered Price Each Month Sales\n", - "City \n", - "Atlanta (GA) 16602 2.779908e+06 104794 2.795499e+06\n", - "Austin (TX) 11153 1.809874e+06 69829 1.819582e+06\n", - "Boston (MA) 22528 3.637410e+06 141112 3.661642e+06\n", - "Dallas (TX) 16730 2.752628e+06 104620 2.767975e+06\n", - "Los Angeles (CA) 33289 5.421435e+06 208325 5.452571e+06\n", - "New York City (NY) 27932 4.635371e+06 175741 4.664317e+06\n", - "Portland (ME) 2750 4.471893e+05 17144 4.497583e+05\n", - "Portland (OR) 11303 1.860558e+06 70621 1.870732e+06\n", - "San Francisco (CA) 50239 8.211462e+06 315520 8.262204e+06\n", - "Seattle (WA) 16553 2.733296e+06 104941 2.747755e+06" - ] - }, - "execution_count": 29, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "all_data.groupby(['City']).sum()" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAZ4AAAFKCAYAAAAt0zk2AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3deZxcVZn/8c8XAsgewICQIEGJIKJGCIvgKItCACXowAiiRGQm/hBER0WCOqIgCuMCgxtGiSwqiCxDhGAMYVGULSD7GpElghB2BFkCz++Pc4rcFNVd3T2557bd3/frVa+uOnd5TiXd9dQ99yyKCMzMzEpZqukKmJnZ8OLEY2ZmRTnxmJlZUU48ZmZWlBOPmZkVNaLpCgx2r371q2Ps2LFNV8PM7J/KNddc83BEjOq0zYmni7FjxzJ37tymq2Fm9k9F0j09bXNTm5mZFeXEY2ZmRTnxmJlZUU48ZmZWlBOPmZkV5cRjZmZFOfGYmVlRTjxmZlaUE4+ZmRXlmQvMzAZo7NTza49x99G71h6jNF/xmJlZUU48ZmZWVK2JR9J/SrpZ0k2STpP0KknrS7pS0p2Sfilp2bzvcvn1vLx9bOU8h+Xy2yXtVCmfmMvmSZpaKe93DDMzK6O2xCNpNHAwMCEiNgGWBvYCjgGOjYhxwGPA/vmQ/YHHImID4Ni8H5I2zse9CZgI/EDS0pKWBr4P7AxsDOyd96W/MczMrJy6m9pGAMtLGgGsADwAbA+cmbefDOyen0/Kr8nbd5CkXH56RDwXEX8B5gFb5Me8iLgrIp4HTgcm5WP6G8PMzAqpLfFExF+BbwH3khLOE8A1wOMRsTDvNh8YnZ+PBu7Lxy7M+69RLW87pqfyNQYQYzGSpkiaK2nuggULBvL2zcysB3U2ta1GusJYH1gHWJHULNYuWof0sG1JlfcWY/GCiGkRMSEiJowa1XEBPTMzG6A6m9reDfwlIhZExAvA2cDWwMjc9AYwBrg/P58PrAuQt68KPFotbzump/KHBxDDzMwKqTPx3AtsJWmFfB9lB+AW4GJgj7zPZODc/HxGfk3eflFERC7fK/dIWx8YB1wFXA2Myz3YliV1QJiRj+lvDDMzK6S2mQsi4kpJZwLXAguBPwHTgPOB0yV9LZedmA85EThV0jzSVche+Tw3SzqDlLQWAgdGxIsAkg4CZpF6zE2PiJvzuQ7tTwwzMytH/sLfuwkTJsTcuXObroaZDUKeMqdnkq6JiAmdtnnmAjMzK8qJx8zMinLiMTOzopx4zMysKCceMzMryonHzMyKcuIxM7OinHjMzKwoJx4zMyvKicfMzIpy4jEzs6KceMzMrCgnHjMzK8qJx8zMinLiMTOzopx4zMysqNoSj6QNJV1XeTwp6dOSVpc0W9Kd+edqeX9JOl7SPEk3SNq0cq7Jef87JU2ulG8m6cZ8zPF5iW0GEsPMzMqoLfFExO0RMT4ixgObAc8A5wBTgTkRMQ6Yk18D7AyMy48pwA8hJRHgcGBLYAvg8FYiyftMqRw3MZf3K4aZmZVTqqltB+DPEXEPMAk4OZefDOyen08CTonkCmCkpLWBnYDZEfFoRDwGzAYm5m2rRMTlkdbvPqXtXP2JYWZmhZRKPHsBp+Xna0XEAwD555q5fDRwX+WY+bmst/L5HcoHEmMxkqZImitp7oIFC/rxNs3MrJvaE4+kZYHdgF9127VDWQygfCAxFi+ImBYREyJiwqhRo7qc0szM+qPEFc/OwLUR8WB+/WCreSv/fCiXzwfWrRw3Bri/S/mYDuUDiWFmZoWUSDx7s6iZDWAG0OqZNhk4t1K+b+55thXwRG4mmwXsKGm13KlgR2BW3vaUpK1yb7Z9287VnxhmZlbIiDpPLmkF4D3AxyvFRwNnSNofuBfYM5fPBHYB5pF6wO0HEBGPSjoSuDrvd0REPJqfHwCcBCwPXJAf/Y5hZmbl1Jp4IuIZYI22skdIvdza9w3gwB7OMx2Y3qF8LrBJh/J+xzAzszI8c4GZmRXlxGNmZkU58ZiZWVFOPGZmVpQTj5mZFeXEY2ZmRTnxmJlZUU48ZmZWlBOPmZkV5cRjZmZFOfGYmVlRTjxmZlaUE4+ZmRXlxGNmZkU58ZiZWVFOPGZmVlStiUfSSElnSrpN0q2S3i5pdUmzJd2Zf66W95Wk4yXNk3SDpE0r55mc979T0uRK+WaSbszHHJ+XwGYgMczMrIy6r3j+B/hNRGwEvBW4FZgKzImIccCc/BpgZ2BcfkwBfggpiQCHA1sCWwCHtxJJ3mdK5biJubxfMczMrJzaEo+kVYB3AicCRMTzEfE4MAk4Oe92MrB7fj4JOCWSK4CRktYGdgJmR8SjEfEYMBuYmLetEhGX5yWtT2k7V39imJlZIXVe8bwOWAD8VNKfJP1E0orAWhHxAED+uWbefzRwX+X4+bmst/L5HcoZQIzFSJoiaa6kuQsWLOjfuzYzs17VmXhGAJsCP4yItwFPs6jJqxN1KIsBlPemT8dExLSImBARE0aNGtXllGZm1h91Jp75wPyIuDK/PpOUiB5sNW/lnw9V9l+3cvwY4P4u5WM6lDOAGGZmVki/Eo+kFSUt3Zd9I+JvwH2SNsxFOwC3ADOAVs+0ycC5+fkMYN/c82wr4IncTDYL2FHSarlTwY7ArLztKUlb5d5s+7adqz8xzMyskBG9bZS0FLAXsA+wOfAcsJykBcBMYFpE3NnLKT4J/FzSssBdwH6kZHeGpP2Be4E9874zgV2AecAzeV8i4lFJRwJX5/2OiIhH8/MDgJOA5YEL8gPg6P7EMDOzcnpNPMDFwIXAYcBNEfESvNzFeTvgaEnnRMTPOh0cEdcBEzps2qHDvgEc2MN5pgPTO5TPBTbpUP5If2OYmVkZ3RLPuyPihfbCfMVxFnCWpGVqqZmZmQ1Jvd7j6ZR0JC2bu0X3uI+ZmVlPunYukPSpVgcBSe8ijYO5U9In6q6cmZkNPX3p1TaZdDMe4EvAbqQpZw6oq1JmZjZ0devVdjiwDvDF3DNtPGkKm4nAypK+DFwSEb+rvaZmZjYk9Jp4IuKrkrbM+60OnBURR+Ru1hMj4ogSlTQzs6GjL01t+wPLAY8Ah+SyNwA/qatSZmY2dHXrTt2aZPPQtrLbgNvqqpSZmQ1d3e7xfAn4QWWmgPbt2wMrRMR5dVTO7J/N2Knn13r+u4/etdbzm5XQ7YrnRuDXkp4FriUtc/AqUq+28aRZDb5eaw3NzGxI6da54FzgXEnjgG2AtYEngZ8BUyLiH/VX0czMhpKu93gA8kSgvU0GamZm1id1rsdjZmb2Ck48ZmZWlBOPmZkV1ZdJQreTdLakm/PjTEnbFqibmZkNQb0mHkm7khZg+zXwIdJKpDOB6ZJ26XZySXdLulHSdZLm5rLVJc2WdGf+uVoul6TjJc2TdIOkTSvnmZz3v1PS5Er5Zvn88/KxGmgMMzMro9sVzyHA7hHx04i4PiKuy6uB7k7bbAa92C4ixkdEayXSqcCciBgHzMmvAXYmjQ8aB0wBfggvr3Z6OLAlsAVweCuR5H2mVI6bOJAYZmZWTrfE85qIuL69MCJuANYaYMxJwMn5+cmkJNYqPyWSK4CRktYmzYY9OyIejYjHgNnAxLxtlYi4PC9pfUrbufoTw8zMCumWeJ4e4LaWAH4r6RpJU3LZWnn+t9Y8cGvm8tGkReZa5uey3srndygfSIzFSJoiaa6kuQsWLOjD2zQzs77qNoD09ZJmdCgX8Lo+nH+biLhf0prAbEm9TSyqDmUxgPLe9OmYiJgGTAOYMGFCt3OamVk/dEs8k3rZ9q1uJ4+I+/PPhySdQ7pH86CktSPigdzM9VDefT6wbuXwMcD9uXzbtvJLcvmYDvszgBhmZlZIr01tEXFp9QH8kTRX2635dY8krShp5dZzYEfgJmAGaTlt8s9z8/MZwL6559lWwBO5mWwWsKOk1XKngh2BWXnbU5K2yr3Z9m07V39imJlZId2WRTgB+G5E3CxpVeBy4EVgdUmfi4jTejl8LeCc3MN5BPCLiPiNpKuBMyTtD9wL7Jn3nwnsAswDngH2A4iIRyUdCVyd9zuiskzDAcBJwPLABfkBcHR/YpiZWTndmtr+JSL+X36+H3BHROwu6TWkD/keE09E3AW8tUP5I8AOHcoDOLCHc00njSdqL58LbLIkYpiZWRnderU9X3n+HuB/ASLib7XVyMzMhrRuiedxSe+V9DbSejy/AZA0gtS8ZWZm1i/dmto+DhwPvAb4dOVKZweg3jV+zcxsSOq2AukdLJqGplo+i9TbzMwGibFT6/0uePfRu9Z6fhs+uvVq+y6LD7AM4GHg4oi4rM6KmZnZ0NStqW1uh7LVgW9K+mVEHFdDnczMbAjr1tR2cqfyPL7nj4ATj5mZ9cuAViCNiH8s6YqYmdnw0K2p7RVyV+qPsPjM0GZmZn3SrXPBU7xy9uZ/AJeSulqbmZn1S7d7PCuXqoiZmQ0PA7rHY2ZmNlBOPGZmVpQTj5mZFdXnXm2SliatsfPyMRFxbx2VMjOzoatPiUfSJ4HDgQeBl3JxAG+pqV5mZjZE9bWp7VPAhhHxpoh4c370KelIWlrSnySdl1+vL+lKSXdK+qWkZXP5cvn1vLx9bOUch+Xy2yXtVCmfmMvmSZpaKe93DDMzK6Oviec+4IkBxvgUcGvl9THAsRExDngM2D+X7w88FhEbAMfm/ZC0MbAX8CbSTNk/yMlsaeD7wM7AxsDeed9+xzAzs3L6mnjuAi7JVx6faT26HSRpDLAr8JP8WsD2wJl5l5OB3fPzSfk1efsOef9JwOkR8VxE/AWYB2yRH/Mi4q6IeB44HZg0wBhmZlZIXxPPvcBsYFlg5cqjm+OAz7PovtAawOMRsTC/ng+Mzs9Hk66syNufyPu/XN52TE/lA4mxGElTJM2VNHfBggV9eJtmZtZXfepcEBFf7e+JJb0XeCgirpG0bau40+m7bOupvFPS7G3/bvEXFURMA6YBTJgw4RXbzcxs4LrN1XZcRHxa0q/p/AG9Wy+HbwPsJmkX4FXAKqQroJGSRuQrjjHA/Xn/+cC6wPw8EemqwKOV8pbqMZ3KHx5ADDMzK6TbFc+p+ee3+nviiDgMOAwgX/F8LiL2kfQrYA/SPZnJwLn5kBn59eV5+0UREZJmAL+Q9B1gHWAccBXp6mWcpPWBv5I6IHwoH3Nxf2L0972ZmdnAdZsk9Jr889IlGPNQ4HRJXwP+BJyYy08ETpU0j3QVsleOfbOkM4BbgIXAgRHxIoCkg4BZwNLA9Ii4eSAxzMysnH6vxzMQEXEJcEl+fhepR1r7Ps8Ce/Zw/FHAUR3KZwIzO5T3O4aZmZXhudrMzKyoficeSUtJWqWOypiZ2dDXp8Qj6ReSVpG0Iuley+2SDqm3amZmNhT19R7PxhHxpKR9SPdUDgWuAb5ZW83sn9bYqefXHuPuo3etPYaZ1aOvTW3LSFqGNPXMuRHxAh3G9ZiZmXXT18TzI+BuYEXgd5LWA56sq1JmZjZ09XXKnOOB4ytF90jarp4qmZnZUNbXzgVrSTpR0gX59cakGQDMzMz6pa9NbSeRZghYJ7++A/h0HRUyM7Ohra+J59URcQZ5eYM8+eaLtdXKzMyGrL4mnqclrUHuySZpKwa+IqmZmQ1jfR3H8xnSzM6vl/QHYBRpdmczM7N+6WuvtmslvQvYkLQcwe15LI+ZmVm/dFsI7gM9bHqDJCLi7BrqZGZmQ1i3K5739bItACceMzPrl24Lwe1XqiJmZjY89HlZBEm7Svq8pC+3Hl32f5WkqyRdL+lmSV/N5etLulLSnZJ+KWnZXL5cfj0vbx9bOddhufx2STtVyifmsnmSplbK+x3DzMzK6OvMBScAHwQ+SepcsCewXpfDngO2j4i3AuOBibkb9jHAsRExDngM2D/vvz/wWERsAByb92vNkrAX8CZgIvADSUtLWhr4PrAzsDGwd96X/sYwM7Ny+nrFs3VE7Ev60P4q8HZg3d4OiOTv+eUy+RHA9sCZufxk0ozXAJPya/L2HSQpl58eEc9FxF+AeaRlrbcA5kXEXRHxPHA6MCkf098YZmZWSF8Tzz/yz2ckrQO8AKzf7aB8ZXId8BAwG/gz8Hie+QBgPjA6Px8N3Acvz4zwBLBGtbztmJ7K1xhAjPZ6T5E0V9LcBQsWdHubZmbWD31NPOdJGkla+O1a0hIJp3U7KCJejIjxwBjSFcobO+2Wf3a68oglWN5bjMULIqZFxISImDBq1KgOh5iZ2UD1dQDpkfnpWZLOA14VEX2eMiciHpd0CbAVMFLSiHzFMQa4P+82n9R8N1/SCGBV4NFKeUv1mE7lDw8ghpmZFdLrFY+kzSW9pvJ6X+AM4EhJq3c5dlS+SkLS8sC7gVuBi1k03c5k4Nz8fAaLllrYA7goIiKX75V7pK0PjAOuAq4GxuUebMuSOiDMyMf0N4aZmRXSrantR8DzAJLeCRwNnEK6NzKty7FrAxdLuoGUJGZHxHnAocBnJM0j3V85Me9/IrBGLv8MMBUgIm4mJbtbgN8AB+YmvIXAQaTlGm4Fzsj70t8YZmZWTremtqUjotUU9UFgWkScRWpyu663AyPiBuBtHcrvIt3vaS9/ltRNu9O5jgKO6lA+E5i5JGKYmVkZXRNP5V7JDsCUfhw77I2den7tMe4+etfaY/wz8b+52eDXLXmcBlwq6WFSl+rfA0jaAK/HY2bWmH/mL1nd5mo7StIc0v2a31ZuxC9FmsXAzMysX7o2l0XEFR3K7qinOmZmNtT1eZJQMzOzJcGJx8zMinLiMTOzopx4zMysKCceMzMryonHzMyKcuIxM7OinHjMzKwoJx4zMyvKicfMzIpy4jEzs6KceMzMrCgnHjMzK6q2xCNpXUkXS7pV0s2SPpXLV5c0W9Kd+edquVySjpc0T9INkjatnGty3v9OSZMr5ZtJujEfc7wkDTSGmZmVUecVz0LgsxHxRmAr4EBJGwNTgTkRMQ6Yk18D7AyMy48pwA8hJRHgcGBL0nLWh7cSSd5nSuW4ibm8XzHMzKyc2hJPRDwQEdfm508BtwKjgUnAyXm3k4Hd8/NJwCmRXAGMlLQ2sBMwOyIejYjHgNnAxLxtlYi4PC9Qd0rbufoTw8zMCilyj0fSWOBtwJXAWhHxAKTkBKyZdxsN3Fc5bH4u6618fodyBhCjvb5TJM2VNHfBggX9eatmZtZF7YlH0krAWcCnI+LJ3nbtUBYDKO+1On05JiKmRcSEiJgwatSoLqc0M7P+qDXxSFqGlHR+HhFn5+IHW81b+edDuXw+sG7l8DHA/V3Kx3QoH0gMMzMrZERdJ849zE4Ebo2I71Q2zQAmA0fnn+dWyg+SdDqpI8ETEfGApFnA1ysdCnYEDouIRyU9JWkrUhPevsB3BxJjSb93Mytn7NTza49x99G71h5jOKkt8QDbAB8BbpR0XS77AikZnCFpf+BeYM+8bSawCzAPeAbYDyAnmCOBq/N+R0TEo/n5AcBJwPLABflBf2MMRf5jNLPBqrbEExGX0fmeCsAOHfYP4MAezjUdmN6hfC6wSYfyR/obw8zMyvDMBWZmVpQTj5mZFeXEY2ZmRTnxmJlZUU48ZmZWlBOPmZkV5cRjZmZFOfGYmVlRTjxmZlaUE4+ZmRXlxGNmZkU58ZiZWVFOPGZmVpQTj5mZFeXEY2ZmRTnxmJlZUbUlHknTJT0k6aZK2eqSZku6M/9cLZdL0vGS5km6QdKmlWMm5/3vlDS5Ur6ZpBvzMcfnpbYHFMPMzMqp84rnJGBiW9lUYE5EjAPm5NcAOwPj8mMK8ENISQQ4HNgS2AI4vJVI8j5TKsdNHEgMMzMrq7bEExG/Ax5tK54EnJyfnwzsXik/JZIrgJGS1gZ2AmZHxKMR8RgwG5iYt60SEZfn5axPaTtXf2KYmVlBpe/xrBURDwDkn2vm8tHAfZX95uey3srndygfSIxXkDRF0lxJcxcsWNCvN2hmZr0bLJ0L1KEsBlA+kBivLIyYFhETImLCqFGjupzWzMz6o3TiebDVvJV/PpTL5wPrVvYbA9zfpXxMh/KBxDAzs4JKJ54ZQKtn2mTg3Er5vrnn2VbAE7mZbBawo6TVcqeCHYFZedtTkrbKvdn2bTtXf2KYmVlBI+o6saTTgG2BV0uaT+qddjRwhqT9gXuBPfPuM4FdgHnAM8B+ABHxqKQjgavzfkdERKvDwgGknnPLAxfkB/2NYWZmZdWWeCJi7x427dBh3wAO7OE804HpHcrnApt0KH+kvzHMzKycwdK5wMzMhgknHjMzK8qJx8zMinLiMTOzopx4zMysKCceMzMryonHzMyKqm0cj5kNH2Onnl/r+e8+etdaz29l+YrHzMyKcuIxM7OinHjMzKwoJx4zMyvKicfMzIpy4jEzs6KceMzMrCgnHjMzK2rYJR5JEyXdLmmepKlN18fMbLgZVolH0tLA94GdgY2BvSVt3GytzMyGl2GVeIAtgHkRcVdEPA+cDkxquE5mZsOKIqLpOhQjaQ9gYkT8e379EWDLiDiobb8pwJT8ckPg9oLVfDXwcMF4ju3Yju3YdVgvIkZ12jDcJglVh7JXZN6ImAZMq786ryRpbkRMcGzHdmzHHiqx2w23prb5wLqV12OA+xuqi5nZsDTcEs/VwDhJ60taFtgLmNFwnczMhpVh1dQWEQslHQTMApYGpkfEzQ1Xq10jTXyO7diO7dilDKvOBWZm1rzh1tRmZmYNc+IxM7OinHjMzKyoYdW5YLCS9BogIuLBgjFfD+xGGiAbpEGy50XEvAKxVwLeDWxUiT0nIp6qO3aOP74aOyKuKxS3sfedf8c+DmwDLJuLnwf+CPwoIh6oMfbywIeAXYHVc/GjwEzg5xHxj6EYu1KHRn7fmo7dG3cuaIikzYFPAGuT/hCWIv1h/BX4QURcXWPsE4FHgIuBu0gDa9cHtgdWj4j9a4z9bdII6ivaYm8NPBQRn60x9ueAtwN3An+pxN4Q+ENEfLPG2I297xz/GOAXEXF9W/l4YO+IOLTG2D8CzgUujYinc9mKwHbAeyPi/w3R2E3+vjUWuy+ceBoi6WDglIh4vK18JPCRiPhujbGXzXPVddq2TES8UGPsNSPioR62jYqIBTXGfktE3NDfbUsodmPvO8eYAvw4/AcP9P7/sQRjNPn71ljsvvA9noZExPEdks6bgE/WmXSyb0parS32xpLOrjPpALT/sUvaWtK3JF1W94cvsEF7gaRlJH227j/Eht83wErAxZJ2LBBrMZLOrDz/XuX57AKxV5P0ifxYWdKbJP0C+Fndsdt/pySNlnSQpN8U+H1rLHZf+B5PwyRtBXwA2IE0sPXSAmF/DfyvpBnAWcAXgJFA7esTSRpBeq/vB9YC3gC8PyI+V3dsYFNJHwe+GBFzJe0DHAD8pO7ADb9vIuI7kqYDx+Z1qO4mNb9ERHys5vBrVJ5XlyEp8flzOnAK6ff7MmAu8JWIuKNAbCRtSPr73gJ4C+n37V+HeuyuIsKPBh7AD4ALSB/6bwAuKBx/JeAq4AXg8wXjPkYaQT06vy79vscAV5LusxwDLD9M3vdywGHAHFICfH3rUSD2xaQkt3T78wKx51SeX0e+vVDo3/wW4CRg69L/503G7svDVzzNWQZ4EXguP4q1vUvaD9gf+A7pCutISacDX4iIu2oOvxvpW/8JkuYCK9Yc72WSNgC+QfoAugg4CPiYpBMi4sWawzf2vrM5wA8jYofCcSElmjksmh3+ooKxXy/piBx7JPBVKVUjIr5cc+xvALsAn5I0jvQ3X0qTsbty54IGSVoKeCfpA2l74Gzgkoi4uOa4hwLHRcRzlbK3AkdFxHvrjN1Wj7eRmgI2Bx6MiMk1x5sBHBZ5fr68Iu0BwF4R8Y46Y7fVo+j7zjE3Ap7ptC0i7q07flMkvaunbRFRolm71aV7IunLx2rA9RFx+FCP3RsnnkEkd7HePSK+WHOcE6PGLtMDIWlcRNxZc4yDI+L4DuWrRsQTNcdeDVg2KmO18tia10bEVXXGzrFOJV1Vi0VX15sBG0ZErS0fkjpd4bTuL21fZ+wcf3XSOJ7XAA+Qmp0eKRB3BLB02xe8lYC3R0StHSskbQzcGpUP+Fyf7SPit3XG7gs3tTUkdyr4R0RcL+m/SWM8IN0Irdv6BWJ0JOku4F7gpWox6cOw7g+h3YFXJJ66k072E+BQoDpIeEVSh44P1B08Ij4CoNTONIk0mPRSytxsvgVYh3RP8ZyIKLaib+7F90XS/Y7rSff4zpb09YiYVXP46aTft7mVsg2BjwB19+ibCmwk6akc/2rgqsGQdMBXPI3JXUl3j4inJf0e2Ic0ovx7ETGx5tiPA+1dKlvfQN9Zc+xDSAPb/kYa2DcnIhbWGbMS+256SOx1t/dLuiQitu1reQ3xVwI+RmrWvQCYFm3d+QvUYUtS8t8YOCsiav+SJelSYOeIeKZStiLpqqfu3/VLI+IVTX09lddUh5VJV7ZbAB8G1oyI15SI3Rtf8TRnROSR1KSZCu6Fly+H6/aniNiuQJxXiDxiOjcz7Q7MlnReRHy7QPjHgAuh4xLotZO0QtsH4EoFw8/Pj3OA5YGDKzfZj6g7eP6wX480U8czQImxSwAvVf/NAfKXvZd6OmBJkrR0teNKob9vJK1Huoe4Oelq8yXgDOCaEvG7ceJpzkuSVoyIpyPiNABJq5C6mQ5pSvPEfQDYEriJMmOXAB6PiN8VitXuSGCmpFNI9xlGk65ya//Qzxobv5E7daxGmh/tWOCpXP66Ar0or612ppG0HPCfwJ9qjgvwQ1Kz3v+w6P/8k7m8bjeS3uMJwNcLNSf3mZvaGpJ723wFOJXFP4i+GhGX1Bz7nT19AEt6a7TN57WEY98APEv65n01lXs9EVFrN9su77vHaYSWYPw1SDe51yb9n8+MiIfrjFmJ/aboYbVdSZtExE01xj6JxYcLvNzJIWoevJp7jk4hfdFZjjR04RxSU2PdXehbN/n3IP2f309qYrylQFwBbyRd8WxKSvzPAzdFxHF1x+/GiadB+YNoF9KlcLEPIkmfJc1SfB9pBDukDgdjgMsi4js1xv4KnccsRd1NPlo0OerlLHrfY0kTdY6MiP+oMQ/6PwMAABQUSURBVHaPCb3uZJ9jHEr6ELqHxd/7WODKiPjvOuMPR+p9fr4Sc8WNAMazqMntzcCTDY3lWowTT0MGwQeRgLcC40jfPu8g9fGv9ReityuLQlcdGwDvZdH7vp2U8Ovuyt1Ysq/UYSnSt9/q//m1EVHr/Y7cvHglaQmGu3PxWFLC36LOcUwNx/4WMIo0YLka+22k8VuH1Bj79/np9aSWhatp617dJCeehgyGD6ImNHnV0bSmkv1gIGkH4H2k9w7pvc+sezzLIIi9MmmKour/+UUR8WTNcWv/Evd/4cTToOH6QdThquMO4Py6rzrMhosmr/T6wonHzGwIavJKrxsnHjMzK8oLwZmZWVEeQDqMSVqBdONzJHk0f4lpTJom6TUR8bc8c+97gUvr7to6WEj6NnBaRMzturNZTXzFM7zNAjYh/R6IhqaSacDP88+jSMth/6pUYEkT888NJH1fUq3zhXXwC+DfJF0o6QhJbywcf1iStLmkvSVt0XRdBgPf4xkE8hQy67DoqqPItC6SZkTEbiVi9RB/FWBVFr3vIuvCSLosIt4h6ZSI2FfS7+qeMLIS+8KIeLfSMtQ/Bo6PiM1LxG6rx2jS9DXvIk2t8uOIOKumWBeTBg2PIC1NsABYE3igwESdjcWu1OE4YAXSPGkTgGcj4pMlYg9WbmprmKTvkT58tyF1fVwBKDWf2EuSziHNlxZQZFVGACRNI00aeX8uCtLsySX8Ln8g/bekV9HDAmk1WVnSa4EXI+JySU93PWIJkjSF1Lz4GPBTYG9S4p8N1JJ4WhPSSjoB+FBEzJc0BvivOuINltgV4yszkP8oz5hdjKR1SEuuX90+UW1TnHia95aIeKekiyPiw5LOLhj72IKx2q0fEe9pInBEfKGtqNZlKNocDXwN+FpOelcUjA1pgs69Wh8+klaJiCcl7Vkg9gTS4GGAR0nT9ZfSZOynJO0DXJvr8fdSgSV9gdScvpGkCaQvFzuXit8T3+Np3sI8lcnjkvYl3XOoldLSy5Bmwm5/lHK3pE9J2kHS9pJqX4myRdK7Jc2SdLOkGyWVnLF6BmmW5p2AF6jpKqMX/9H2jfcnAIUmK/0KaRmM35HuL361QMzBEHsf0iShBwNrAR8qGPs9EfEh4Ik8NdKyBWP3yFc8zduH9AXgANIv5EcKxHwLqV3/X9rKA6h1huiK+aTedO9oIPbXgXeTksAkUieDUn5GWgZi74j4rqRv5LrUStIk0vpHb8z3lyD9/Y+sO3ZLRJwHnFcq3mCJTZqd5NsREXm2kncAv+9yzJLyfL6fF5LWIs3O3Tgnnub9d6Rlif8GfCev3fGpOgNGxMn56d+rC7Dl9v8iIuKrSovBrQ/cHREPlIoNPJ2bl4K0REPJm/ujIuIESf9WMCak+4Y3AQ8BPyLd13kB+GupCkjaD5jM4kthFLnSbTI28JXWjNA5+RxOgS8b2SeAb5OWRTiOtB5Q45x4GpKbuzYFJkhq3VQfQZq5tu7YI4E1gD3yPSWRmtn2BKbVHT/X4RBge9LMvW+TdFHBqflPzvdXjid9IJf8JvyQpA8Cy0t6P2k5jBI2j4jfSrqFRVeZLaXGbh0AvKOhySubjL1Ca9JOpYXoiq08GxF/BvYqFa+vnHia8xKwkHSjcyHpw/9Z4KMFYr+L1OwyltS7R6RFok4oELtlt4h4ualP0mVAkcQTESflp+fkR0kfA/6ddKN5DFBqNu4RbT+bcCHpJvfNLOpFWWQJ6oZjHwNcJulu4LWkDia1yssidBwrU6obeW88jmcQkPRmFp89oNQ4nnUj4r7c7rw5cENEPFso9hxS0vsTqafPEa2urzXGbP0xtgbKVlfCrHs8yet62hb1L/+MpPHASxFxQ6XsraTPgOvqjp/jXdxWFAWb2hqLneOL1MxadIYMta0uK2nDiLi9ZB06ceJpmKTzSO3sL49nqXslzkrsORGxg6QjSYPqxkTEroVirwscCrwe+DNwTETcVyJ2EyT9tK2o2PLPOf6FwPsj4qlK2UrAuYNhRcqhTNJxEfFpSR8GPgPMjohDC8W+qJpgJf0qIkp0ne+Vm9qap4j4eEOxW93px0bER3JzVyn/FhEHtV7kjg213l+SdCo9Nz/sW2fsiNivUo/RpJkq5pIGDJewdDXp5Dr9PXflLyJfYR1C6lrcurovdcXTWGzSktMAEyNiU0mX1x0wd6b4GPDm3IVcpN/9QfHlzomneU9IOpbFZw+Y3vshS8y9kmaTbraPAF6sO2DDHRu+VPP5u6oM6NuQ1MR4JmUG9P1d0voR8ZdKXV4PlJw54QTgw6SxQ/8B7Nf77kMm9lKSvky6sod0T7dWEfFT4KeSPl/ttJP//hrnxNO8WU0FjojJkkZExMLcBv2+AmEb69gQEffAy+3t21OZH49yPbveExHb5ZkqQlKpAX0HAz+RdA+pJ91oYF1SR4dSnouIP0taKiLmSWofRzZUY3+A1IP1kvz/3T5zRp0msninnWlA6a78r+DE07CIODl3sVyTwrND5xuukT6HX1Zr80NEnAuc26ljQ51x25wB3Ab8K3A2ac64UomnkQF9+Upnh9zJYW3SJJm1d2po85vcjf0Xkq4DrhrKsSXtl688PkNqzXhXZXOtA0hzV/0PABsrLYMN6fN+lTrj9pU7FzRM0lRgR2Aj0qX4cxFRanBZtR5vAf41Ig4vFK/Jjg2XRMS2lZ/FZunOzVtHkZrabgO+lMda2BAj6a0Rcb2kd7Vvi4haJwqVtCqpp2z13ukLwN8KdiPvka94mrdbRGxd+RD8ZUP1uI10WV4k8dBsx4aF+Srzr7ntfXSpwIN1QF+dmhxT0mTsiLg+P10zIn6V6yNgjzrj5thPkO4f/xewHc00K/fIiad5rZHUzygtCrZxqcAdxrUUmbUgu6d0x4aKifm+1hTSZJ0nlgqc/83XBB4GXg08CDwBHBURtc9ULekNEXFH5fXWEfHHOmO2BgpLenV1MlJJq9UZt+nYFf+PvNhgvq/38usCfklzzco98uzUzftU/vb9WdI3oc+VChwR/xIR78x/nO8C7uh2zBKM/VFg54j4GSnplGrqGg8cJun7wH8Cf46IYvOVAbcA20XENqRvorcBHydN31PCtyS9AUDSe0n3H0o5o+31j4ZJ7OVaiU7S6sCrCsYeFRH/BTwUEV8irf3VOF/xNKQykv0pUlPPc6RJ/ErWYRnSZIW7kW4430KhWXOVlkE4UtJCUnfqr5CmNakz5l6k2cC/TRqwOxo4QtJpEXF6nbErNiNNkwRpMbbxEXG/pFKLc30YOEXS1aTBux+sO2CTN7oHyU32Q0kdaiBNlXVIwdiNNSv3xp0LGlIZyV5t6oICI9mVZkZ+H2nw4izgg6VHr0v6I7BTRDyltAT2rIh4e80xLwJ2qU4LlHs6zSw4kHE34POkqzwB3yStz7NHRNR2f09pRuTWH/tIUsL5MWkanVpnysg3ulcjve9jcnGRG91Nxh4MKsMlViQ1K19Z+Aq/I1/xNKQ1kl3Sh3NzE/n1+wuEP4o0K/NxEXGNpN0LxGwnFk1RX+oD4MX2uegi4llJxe4vRcQM0jpA7eruVNLqvNH6onN+zfFeVrnR/brWWKrhELslzyLwUSr3MQvOmrBOHrS8Uq7DR8mL/zXJVzwNytOVzCGNnWmN4P/fEt2Kc/fp1sC2TYD9gT9GRJFxJZLeTepB1/ogPDIifltzzLt55Y1VAR+OiPXrjF2pQ5Nr0gg4r1S39Q7xpwO3A9eQ339EFFn8r+HYV9HQkgxKc/QdBPwgIrZvDWMoXY92vuJpiKTJpG8f40nJpzWCv8g30UizFN+Q6/I6Uq+XL5NueJeIfyE139PpYHIP5SXr0di6MLlH1Z8l/SuLfwDfW6gK95BurG/TqhLlVp1tMnaTSzIsHRG3VQaJD4oOZb7iaZikzSPi6vx8KWCbiCi1LG5xkjYkffg+Qepp9A1gZeCbETGzybqVIOnrwOlAEx9CrYlSq6LuCVLb4je16mxjsdXschD/RepQsC3pfu6DEfH1ErF748TTsE49yyKi5FxOReVxLIeQbnCfSLriexq4MCK2brJuJTT5IVSpg0hjiB6Ogh8Aalt1Fii26myTsZsmaRPgjcBtEXFj0/UBN7U1pkPPsjcMhrbXAl5oDZSUNC8iFuTnRRaga1pUFrvLV7jty1DXSmnZ7c+Qmp7WU1or5rRC4RtbdbbJ2GpgSQZJmwK3R8TTwEOkYQSbSTo+Iu7v/ej6OfE0ZzD0LGvC6yQdQfoDXK/yvMjN/ab1MHaqyIqz2adI95heyHX5HVAq8TwvaWsWrTr7QqG4TcduYkmG7wKtRPszUuvCAuCnpG7VjXLiaUhEjGv1LMtjLDaStB0Fe5Y1pHqD/8Ieng85g+gK9yVgFGkA7VqU68oOqTPNoaTlMP5Mz509hlrsJpZkeD4iXpK0BvCa1hgxSY2vSQVOPI1qumdZE+qelXcQGyxXuJ8EpuVBu0+S1umpldIaNHsAY4DZwMGlOlQ0GbuifUmGKwvEfDp33X87eV64PCdiqRVve+XOBWaFNDl2StIBwI+aGK0v6Rzgj8D1wDuBVSPik0M9do4vYHJEnFQqZo67MrAv8Axwap694LWkKZo6DWAuyonHrAGVK9xdqh0Oaox3cI53TOlu65Iuqt5MLzmIscnYlZhnRETjq34OJk48ZsNEbl47DtgAuJvUqaP2cTwdZozYt/U6Ir48VGNX6nAR6b7a9aSxW0XHTg1GTjxmw0C+x3AIqbnpa6TEA0Ddc5ipwwqcldh1r8TZWOxKHdbrELuReeMGCyces4ZIGtUax1Qg1u+B79U5A7YtTtJREfHF/HzPyKuQ2iCZt8dsuJB0ev75n8DPOkxhU5d3O+kUV13m44DGajEIuTu1WVmj8s9NI2KnvC5R7Yb42LDBagVJ65O+4K+gRYs/EhF3NVet5rmpzawgSb8mjSC/kXSj/9KIeGfB+Co5P9twVlnssV1EzYs9DnZOPGYF5Wlq1o2Iu/LzsRFxZ8H45wELSVPH/BG4IiKeKhXfDJx4zIqS9Gbg68AqpKUh/isiri9chxGkpa8/B2wYEYNiNLsNH048ZgXl3mUfjoh7JI0FfhYRxWaolnQWaYLM60lXPFdFxD9KxTcDdy4wK20EcF9+Pp+03HlJvyHNzrwRsBqwKtD4FCpDmaR1SLNGjGTRsghHNFqphjnxmJX1PeDyPKJ+bH5d0umktXi2BnYENseJp27nAt8hTwhsbmozKy4vADeK1LvtHRFRbD2ePI7ocuAPwHURsbBU7OFK0q8iYs+m6zGYOPGYNUjSbyNix4LxRpCWCRgF/IA0nujqUvGHI0lzSM1st+SiYT9Xm5vazIaXU4FLgb0j4ruSvkFaEdXqM6zH7HTixGNWgKQjSTMTL1YMvL5wVUZFxAl5RVQr415ge2AdcucCFp8xe9hx4jEro6elvUsv+f2QpA8Cy0t6P/BA4fjD0RnAbaSebWcD6zHME4/v8ZgNI3l5hH8H3kj6MPxxRDzbbK2GNkmXRMS2lZ8zImK3puvVJF/xmA0D1QkqgZn5Aan5Z1hPWFnAQknLAX+V9GVgdNMVapqveMyGgbYJK1t/9FsAG0WEv4DWSNKIiFgoaUVgJ+DKiPhr0/Vqkn/hzIaBiNgPXh5D9AHgP4CLgN2brNdQJmlT4PaIeFrSmsCnSUskXNFszZrnheDMhgFJq0j6DDAHeC2wZ0QcHBHzGq7aUPZdoDUP3s9I8+P9FuhpuYRhw01tZsOApCdJ3XpnAC9S6dodEV9uql5DmaSLI2I7SWsAF0fEW3L5RRGxfcPVa5Sb2syGh/c1XYFh6GlJ+5GWwP4VvDxzxLBfhsJXPGZmNZC0MrAv8Axwau5g8FpgfEQM64lZnXjMzKwody4wM7OinHjMzKwoJx6zfpAUkk6tvB4haYGk8wZ4vpGSPlF5ve1Az7UkSPqopNKL09kw48Rj1j9PA5tIWj6/fg/wfxmFPhL4RNe9/klIKr2Ut/0TcuIx678LgF3z872B01obJK0u6X8l3SDpCkmtsRtfkTRd0iWS7pJ0cD7kaOD1kq6T9M1ctpKkMyXdJunnklpT6VOJc4mkYyRdJekOSf+Syxe7YpF0nqRt8/O/52OukXShpC0q9alOWrmupN9Iul3S4ZVzfTjHu07Sj1pJJp/3CElXkroOm/XKices/04H9sozPb8FuLKy7avAn/JgwS+w+PT3G5Hm6toCOFzSMsBU4M8RMT4iDsn7vY00vcrGwOuAbXqox4iI2CLve3gP+1StCFwSEZsBTwFfI12xvR84orLfFsA+wHhgT0kTJL0R+CCwTUSMJw1C3ady3psiYsuIuKwP9bBhzgNIzfopIm6QNJZ0tTOzbfM7SOuuEBEXSVpD0qp52/kR8RzwnKSHgLV6CHFVRMwHkHQdMBbo9IF+dv55Td6nm+eB3+TnNwLPRcQLkm5sO352RDyS45+d39NCYDPg6nwBtjzwUN7/ReCsPsQ3A5x4zAZqBvAtYFtgjUr5K5rFWDQ9zXOVshfp+e+vv/tV91nI4i0Zr6o8fyEWDdx7qXV8RLyUR9S317f6WsDJEXFYh3o8GxEv9lBHs1dwU5vZwEwHjoiIG9vKf0dugsr3Vh6OiCd7Oc9TwMpLsF53A+MlLSVpXVKzWX+9J9+rWp40e/UfSJOL7pFnWW7dy1pvSVXahhdf8ZgNQG4K+58Om74C/FTSDaSpUiZ3Oc8jkv4g6SZSp4Xz/49V+wPwF1JT2k3AtQM4x2XAqcAGwC8iYi6ApC8Bv81LK7wAHAjc83+srw1DnjLHzMyKclObmZkV5cRjZmZFOfGYmVlRTjxmZlaUE4+ZmRXlxGNmZkU58ZiZWVH/H/3fzyr1l7QuAAAAAElFTkSuQmCC\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "import matplotlib.pyplot as plt\n", - "\n", - "keys = [city for city, df in all_data.groupby(['City'])]\n", - "\n", - "plt.bar(keys,all_data.groupby(['City']).sum()['Sales'])\n", - "plt.ylabel('Sales in USD ($)')\n", - "plt.xlabel('Month number')\n", - "plt.xticks(keys, rotation='vertical', size=8)\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Question 3: What time should we display advertisements to maximize likelihood of customer's buying product?" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Order IDProductQuantity OrderedPrice EachOrder DatePurchase AddressMonthCitySalesHourMinuteCount
0176558USB-C Charging Cable211.9504/19/19 08:46917 1st St, Dallas, TX 750014Dallas (TX)23.908461
2176559Bose SoundSport Headphones199.9904/07/19 22:30682 Chestnut St, Boston, MA 022154Boston (MA)99.9922301
3176560Google Phone1600.0004/12/19 14:38669 Spruce St, Los Angeles, CA 900014Los Angeles (CA)600.0014381
4176560Wired Headphones111.9904/12/19 14:38669 Spruce St, Los Angeles, CA 900014Los Angeles (CA)11.9914381
5176561Wired Headphones111.9904/30/19 09:27333 8th St, Los Angeles, CA 900014Los Angeles (CA)11.999271
\n", - "
" - ], - "text/plain": [ - " Order ID Product Quantity Ordered Price Each \\\n", - "0 176558 USB-C Charging Cable 2 11.95 \n", - "2 176559 Bose SoundSport Headphones 1 99.99 \n", - "3 176560 Google Phone 1 600.00 \n", - "4 176560 Wired Headphones 1 11.99 \n", - "5 176561 Wired Headphones 1 11.99 \n", - "\n", - " Order Date Purchase Address Month \\\n", - "0 04/19/19 08:46 917 1st St, Dallas, TX 75001 4 \n", - "2 04/07/19 22:30 682 Chestnut St, Boston, MA 02215 4 \n", - "3 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 4 \n", - "4 04/12/19 14:38 669 Spruce St, Los Angeles, CA 90001 4 \n", - "5 04/30/19 09:27 333 8th St, Los Angeles, CA 90001 4 \n", - "\n", - " City Sales Hour Minute Count \n", - "0 Dallas (TX) 23.90 8 46 1 \n", - "2 Boston (MA) 99.99 22 30 1 \n", - "3 Los Angeles (CA) 600.00 14 38 1 \n", - "4 Los Angeles (CA) 11.99 14 38 1 \n", - "5 Los Angeles (CA) 11.99 9 27 1 " - ] - }, - "execution_count": 31, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Add hour column\n", - "all_data['Hour'] = pd.to_datetime(all_data['Order Date']).dt.hour\n", - "all_data['Minute'] = pd.to_datetime(all_data['Order Date']).dt.minute\n", - "all_data['Count'] = 1\n", - "all_data.head()\n" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYMAAAD4CAYAAAAO9oqkAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3deXxU5fX48c/JCkmABLIBCfu+Q9gEBQPK4oq71ipVW7rY1rVftdpia22ttWqtS61i1VoFRUBE2YQgbiA7hLAkQIAEkhDCkoTs8/z+mJv+UswymSRzZzLn/XrNa2aee8885yZ35sw8dxNjDEoppfxbgN0JKKWUsp8WA6WUUloMlFJKaTFQSimFFgOllFJAkN0JuCs6Otr06NHDrdji4mLCw8O9MsaTfekyeTbGk33pMrkf48m+PLlM1bZs2ZJvjIn5zgRjjE/ekpKSjLtSUlK8NsaTfekyeTbGk33pMrkf48m+PLlM1YDNppbPVB0mUkoppcVAKaWUFgOllFJoMVBKKYUWA6WUUmgxUEophRYDpZRSaDFQSrVSWafOsfZIBeWVDrtT8QlaDJRSrU7K3jwuf+FL3k4r57Z5GzlVXG53Sl5Pi4FSqtWochieXbWPO97cROcObbhlQAjbjp5m1stfkZFXaHd6Xk2LgVKqVSgoLucH//qWF9ZmcN2oBBb/bCLTewTz3o/GU1xWyTUvfc3n+0/YnabX0mKglPJ5246c4ooXvmDjwQL+dO1QnrlhGG1DAgFI6h7Fkrsn0jWqLXf861ve+jrT3mS9lBYDpTzgTEkFmzILKKnUa443J2MM//4mkxtf/QYRYeFPL+CWsd0Qkf+ZLyEqjA9/OoEpA+KYu3Q3v1mSSkWVbliuyWdPYa2Ut6qscrA/t4htR0+x/chpth09TUZeEQDtQuBkxGFuHpNIUKB+F2uKc+WV/HrRLpZsP8bF/WN4/qYRRIaF1Dl/eGgQr96WxNMr9vLq+oMcyi/mpe+NokNYsAez9l5aDJRqoryzpWw7epptR06z7cgpdmWf4Vx5FQCdwkMYkRjJrBFd6BUTwd8+3c5jS1L59zeHefTygUzq993TyquGHTxRxE/e2UJ6XhH3X9qPnyf3ISBAGowLDBAeuWwgvWMjeHTxLq555SvmzR5Dz2j3rw/QWmgxUKqRKqocrDlSwQfvbmX7kdNkny4BIDhQGNSlAzeOTmRkt0hGJkaR2LHt/wxZtM3fS1nMAP746V5uf+NbpgyI5deXDaRPbIRdi+Nzlu86zq8W7iQ4UHj7zrFc1LfxBfXG0Yn06BTOj/+9mVkvfcUr3x/FhN7RLZCt79BioFQjvfbFQf6dVk7XyNOM6BbJHRN7MLJbFIO7tKdNcGC9sSLCjCGdSR4Qy5tfZfLi2gxmPL+e74/vzj1T+xIVXvcwh7+rdBie/CSN1744xPDESF6+dRRdI9u6/Xpje3bko7sv5K63NnH7vG95YtYQbhnbrRkz9i1aDJRqhJNFZbyScoARMYEseWCK268TGhTIjyf35rqkBJ5bvZ+3v8lk8bZsfjm1L7eN705IkG5PqCmvsJSnN5Wy/9Qhbr+gO49ePpDQoPoLryu6dQrjw59N4BfvbuORRbtIzy3i0csHNkPGvkfXOKUa4e9rMzhXUcWN/ZvnG3x0RChPXjOU5fdMYlhCB55Ylsb059ezOi0X5xUKlTGGn72zlcyzDp6/aQS/v3pIsxSCau3bBDNv9mjunNiTN746xA/f2kSZH+71pcVAKRcdyi/mnQ2HuWlMIl0imvet0z++HW/fOZZ//WAMIvCjtzdz6+sb2XP8bLP244s+2n6MzYdPcevAEGaN7NoifQQFBvDbKwfx5DVDWLf/BAvT/e/0FQ2u0SLyhojkiUhqjba/iMheEdkpIotFJLLGtEdEJENE9onI9BrtM6y2DBF5uEZ7TxHZKCLpIrJARHTQVHmlp1fsJSQogHsv6dsiry8iJA+IZeW9k3j8ykGkHT/L5S98wdID/vfBVK24rJI/Ld/DsIQOXNS15Ue1bx3XndvGd+ezw5XsyjrT4v15E1e+3rwJzDivbTUwxBgzDNgPPAIgIoOAm4HBVszLIhIoIoHAS8BMYBBwizUvwJ+B54wxfYFTwF1NWiKlWsCWwwUsT83hx5N6E9uuTYv2FRwYwA8m9uTzB5OZObQzi9Ir+DI9v0X79FYvpWSQe7aMuVcOJkAa3nW0OTw4vT/tQ4VfL95FlcN/hosaLAbGmPVAwXltq4wxldbTDUCC9fhqYL4xpswYcwjIAMZatwxjzEFjTDkwH7hanPvcTQEWWvFvAbOauExKNStjDE9+sofYdqH8aFJPj/XbISyYZ64fTudw4YEPtnP6nH/9QsjML+b1Lw5x7aiuJHWP8li/7dsE870BIezKPsM7Gw57rF+7iSsbqUSkB7DMGDOklmkfAwuMMe+IyIvABmPMO9a0ecBya9YZxpgfWu23AeOAx635+1jticDy2vqxps8B5gDExcUlzZ8/3/UlraGoqIiIiMbt1+2pGE/2pcvkWsymnEpe2l7GHYNDmJwY7HY/7sbtySnimR3CyNhA7h4R+p1TLTRXP972v31+Syl7C6p46qK2RLYJ8OgyFRYW8ereIDJOV/Gni9oS1abhQRRvWV8bkpycvMUYM/o7E4wxDd6AHkBqLe2PAov5/0XlJeD7NabPA64DbgBer9F+G/B3IAbnL4bq9kRglys5JSUlGXelpKR4bYwn+9JlajimrKLKTH56rbn02XWmssrRpH7cjUtJSTEvp2SY7g8tM+9vOtKi/bijJfpauzfXdH9omXllXUaL9lNfXGZ+ken76KfmZ//Z0mJ9eXKZqgGbTS2fqW7vEiEis4ErgFutDgCyrA/0agnAsXra84FIEQk6r10pr/DuxsNknjzHIzMHEujC6Q5aypxJvRjXsyOPL93N4ZPFtuXhCeWVDp74OI2e0eHcMbGHbXl07xTOL5L78MnO46zbl2dbHp7iVjEQkRnAQ8BVxphzNSYtBW4WkVAR6Qn0Bb4FNgF9rT2HQnBuZF5qFZEU4HorfjbwkXuLolTzOltawd/WpDOhdycu7m/vOYQCA4RnbxpBQIBw34LtVLbiM26+9XUmB/OL+e0Vg5r1eAJ3zJnci14x4fz2o92UVlTZmktLc2XX0veAb4D+IpIlIncBLwLtgNUisl1E/gFgjNkNvA+kASuAu40xVca5sfnnwEpgD/C+NS84i8r9IpIBdMI5tKSU7V5Zd4BT5yr49WUDXRqnb2ldI9vyh1lD2HrkNC+lHLA7nRaRV1jK39akM2VALMkDYu1Oh9CgQJ6cNZQjBed4cW2G3em0qAZ33DXG3FJLc50f2MaYJ4Ena2n/FPi0lvaDOPc2UsprZJ8uYd6Xh7h2ZFeGdO1gdzr/dfWIrqTszeOFtelc1C+aUd08t5eNJzy9Yh9llVX85opBDc/sIRf07sS1o7ry6voDzBrZhT6x7exOqUXoEchK1eKvK/cB8MD0/jZn8l2/nzWE+PZtuG/BdorKKhsO8BHbjpxi4ZYs7rqwl9edUvrXlw0kLCSIRxenttrThGgxUOo8qdlnWLw9mzsn9mzSWTFbSvs2wTx743COFJzjiY/T7E6nWTgchseX7ia2XSg/n9LH7nS+IzoilEdmDmDjoQI+3JptdzotQouBUjUYY/jT8j1Etg3mZ8m97U6nTuN6deKnk3uzYPNRVqTm2J1Oky3cmsWOrDM8PHMAEaHeeTLlG0cnktQ9ij9+uodTxa3vAEAtBkrVsG7/Cb7KOMkvp/alfRvvvhzivZf0Y2jXDjy8aCe5Z0vtTsdtZ0sreHrFPkZ1i2TWiJY5EV1zCAgQnrxmCGdLKnhq+V6702l2WgyUslQ5DE99upcencK4dVx3u9NpUEhQAM/fPILSiioe/GAHDh89j87f16RzsriMx68a7NKlK+00IL49d13UkwWbj7Ips6DhAB+ixUApy8ItR9mXW8j/zRjgMxeX6R0TwWOXD+KL9Hze/DrT7nQaLSOviH99lclNoxMZlhDZcIAXuGdqX7pGtuXRxbuoaEXHe/jGGq9UCztXXslfV+1nVLdIZg6JtzudRrl1XDcuGRjLUyv2sjfHd65/YIzhdx/vpm1IIA964V5bdQkLCeJ3Vw1mf24Rr39xyO50mo0WA6WA1784RF5hGY9e7h0HmDWGiPDUdcNo3yaIe+dv95kjZT/bk8cX6fnce0k/oiNC7U6nUS4ZFMf0wXH8bc1+jhacazjAB2gxUH7vTJnh1c8PMGNwPEndO9qdjluiI0L5y/XD2ZtTyDPWMRLerLzK8MSyNPrERnD7Bd6/faY21ddYmLt0d6s49kCLgfJ7SzLKKat08NDMAXan0iTJA2K5bXx3Xv/yELvzvfvXwarMCo4UnGPulYMIDvTNj6EukW25/9J+rN2bx8rdvr97r2/+F5RqJhl5RXyeVcmt47p53VGv7vj1ZQPpHRPOqzvLOHCiyO50anX8TAlLD1YwfXAcF/W19wSATfWDCT0Y2Lk9jy9No6TSt38daDFQfu31Lw4SHAC/nNoy1zX2tLYhgbx6WxJguOWfG7yuIBSXVfLY4lQcBh673HvOP+SuoMAA/njNEHILS/n0YIXd6TSJFgPlt0orqvhk53HGxAfRycc2YNanT2w7HhrTFofxroKQsjePac+tZ+2+PG7oF0JixzC7U2oWI7tFMXVAHOuzK3361OJaDJTfWpWWS2FZJRO7eOfpD5qia7sA3v3ReK8oCCcKy/jFe9u4481NhIUEsvAnFzC9h3cf3d1YN45O4EyZYd2+E3an4jYtBspvLdqaRZcObejfsXW+DfrFtbO1IBhjeH/zUS559nNWpuZw3yX9WPbLC312j636JA+IpX2IsGDzUbtTcVvrfBco1YC8wlLW7z/BNaO6EuBjxxU0RnVBqHI4C8JBDxWEzPxibn19I/+3cCf94iL49J4LueeSvrZfuaylBAcGMLFrEGv35pFX6JvnidJioPzS0u3HcBi4dlSC3am0uH5x7XhvjrMg3NzCBaGiysEr6w4w/fn17Mo6w5PXDGHBnAta7QVharqoaxBVDsNiHz3FtRYD5ZcWbsliRGIkvWMi7E7FIzxREHZmneaqF7/izyv2ktw/ls8emMyt47p7/cnnmkuXiABGd49iweajPnkQmhYD5XfSjp1lb04h143y3tMlt4SWKgillc6jiWe99BUFxWW8elsS/7gtibj2bZrl9X3JjaMTOXiimK1HTtmdSqNpMVB+Z9HWLIIDhSuGdbE7FY+rWRBuea1pBaGyysFnabk8+qXzetHfG9eN1fdPZvpg3zrRX3O6fFhnwkICWbDJ9zYkazFQfqWyysGS7ceYMiCWqPAQu9OxRXVBqKxqXEFwOAy7j53h9S8Ocuebmxjx+9X88O3NhAbCwp9cwB9mDfX6CwK1tPDQIK4Y1pllO49T7GPXp259O1grVY8v0vPJLyrziw3H9aney+h7r23gltc28N6Pxn9nHmMMB/OL+frASb7OyGfDwZOcOuc8yrZXTDizRnZhQu9ogk/sZXSP1re7qLtuGpPI+5uz+GTncW4ck2h3Oi7TYqD8yodbs4gKCya5f6zdqdiuf/z/FoT7hgeQfbqErzLy+ebASb4+kE/u2TIAunRow9SBcUzo3YkJvaOJ7/D/twesW+f9Z0n1pFHdougVE86CzUe1GCjljc6UVLAqLZdbxiT6zJXMWlrNgvDolyVUfbEWgE7hIVzQuxMT+0QzoXcnunUM87nrPNhFRLhpdCJ/Wr6XjLwi+sT6xh5rDb4jROQNEckTkdQabR1FZLWIpFv3UVa7iMgLIpIhIjtFZFSNmNnW/OkiMrtGe5KI7LJiXhBd41QLWb7rOOWVDr8fIjpf/3jnNoSLEoKYe+UgVt47ic2PXcKL3xvFLWO70b1TuBaCRrp2VAKBAcIHPnREsitfj94EZpzX9jCwxhjTF1hjPQeYCfS1bnOAV8BZPIC5wDhgLDC3uoBY88ypEXd+X0o1i0Vbs+kdE86whA52p+J1+sW14weDQ7ljYk/6x7fTD/8mimkXypQBsXy4NdtnrpPcYDEwxqwHCs5rvhp4y3r8FjCrRvvbxmkDECkinYHpwGpjTIEx5hSwGphhTWtvjPnGOI/SeLvGaynVbI6cPMe3mQVcl5SgH3TKI24anUh+URkpe/PsTsUl4sqRciLSA1hmjBliPT9tjImsMf2UMSZKRJYBTxljvrTa1wAPARcDbYwxf7DafwOUAOus+S+x2i8CHjLGXFFHHnNw/oogLi4uaf78+W4sMhQVFRER0bhxPE/FeLIvf1qmJRnlfJRRwTOT29KpbYBLMc2dmyf70mVyP6a5+qpyGO7/vISe7QO4N6n2A/A8uUzVkpOTtxhjRn9ngjGmwRvQA0it8fz0edNPWfefABfWaF8DJAG/Ah6r0f4b4AFgDPBZjfaLgI9dySkpKcm4KyUlxWtjPNmXvyyTw+EwF/15rfnea9+0aD8tFefNMZ7syxeX6U+f7jG9HvnE5J4padF+GgPYbGr5THV3l4pca4gH6776d1AWUHNfqgTgWAPtCbW0K9Vsthw+xZGCc1w7UjccK8+6YXQCVQ7Dhz5w8jp3i8FSoHqPoNnARzXab7f2KhoPnDHGHAdWAtNEJMracDwNWGlNKxSR8dZeRLfXeC2lmsWHW7MICwlkxhD/PU2CskfvmAjG9IjiAx84eZ0ru5a+B3wD9BeRLBG5C3gKuFRE0oFLrecAnwIHgQzgNeBnAMaYAuAJYJN1+73VBvBT4HUr5gCwvHkWTSnnpS2X7TzOjCHxhIfqYTXK824YncjB/GI2H/buk9c1+O4wxtxSx6SptcxrgLvreJ03gDdqad8MDGkoD6Xc8dmeXApLK7lOjy1QNrl8aGd+t3Q3CzYdZYwXn7ZDD8NUrdqirdl07tCG8b062Z2K8lPhoUFcObwLn+w8TpEXn7xOi4FqtU4UlvH5/hPMGtmVQD+5wIryTjeMTqSkooplO7x3/xgtBqrV+mh7NlUO43cXsVHeZ1S3SPrERvC+F5+eQouBarUWbc1meEIHv7j+rvJuIsKNoxPYeuQ0GXmFdqdTKy0GqlXac/wsacfP6knplNe4ZmQCQQHitVdB02KgWqXF27IJChCuHO5/l7ZU3qn65HWLvPTkdVoMVKtTWeVg8bZskgfE0tFPL22pvNNNYxI5WVzOmj3ed/I6LQaq1fkyI58ThWW64Vh5ncn9YohtF+qV1znQYqBanUVbs4kMCyZ5gF7aUnmXoMAArktKIGVfHrlnS+1O539oMVCtSkmlYeXuHK4c1oXQoEC701HqO24cnYjDwMItWXan8j+0GKhW5ducSsoqHVyrQ0TKS/WMDmdsj45ed/I6LQaqVfk6u5Je0eGMSIxseGalbHLjmEQyT55j/ynv2atIi4FqNY4WnGPfKYde2lJ5vcuGxhMRGsT6LO85V5EWA9VqLN7mvIDIrJE6RKS8W1hIEDOHxLMlt5Kyyiq70wG0GKhW5KPt2fSPCqBrZFu7U1GqQTOGxFNaBV8fOGl3KoAWA9VKpOcWcuBEMWPi9QI2yjdM7BNNm0BYtTvH7lQALQaqlVie6nxDJcXp7qTKN7QJDmRYTCCr03Kpcti/V5EWA9UqLE/NIal7FFFtdJVWvmNUXBD5ReVsPWL/JTH1naN83uGTxew5fpaZesF75WOGxwQSEhjAilT7h4q0GCifVz1ENH2wFgPlW9oGCRP7dGLl7hzbD0DTYqB83vLUHIZ27UBixzC7U1Gq0aYPjifrVAlpx8/amocWA+XTjp0uYcfR08zQISLloy4ZFEeAwMrdubbmocVA+bTqsVbdXqB8VXREKKO7d2SlzdsNmlQMROQ+EdktIqki8p6ItBGRniKyUUTSRWSBiIRY84ZazzOs6T1qvM4jVvs+EZnetEVS/mRFag4D4tvRKybC7lSUctv0IfHsyy0kM7/YthzcLgYi0hX4JTDaGDMECARuBv4MPGeM6QucAu6yQu4CThlj+gDPWfMhIoOsuMHADOBlEdGdxVWD8gpL2XS4QIeIlM+bNigOgJU2HoDW1GGiIKCtiAQBYcBxYAqw0Jr+FjDLeny19Rxr+lRxnk3samC+MabMGHMIyADGNjEv5QdW7c7FGJg5pLPdqSjVJIkdwxjcpb1vFgNjTDbwDHAEZxE4A2wBThtjqk/FlwVUnzWsK3DUiq205u9Us72WGKXqtCI1h17R4fSL0yEi5fumD45n65HT5Nl0BTRxd99WEYkCPgRuAk4DH1jP51pDQYhIIvCpMWaoiOwGphtjsqxpB3D+Avg98I0x5h2rfZ4V82Etfc4B5gDExcUlzZ8/363ci4qKiIho3AeIp2I82ZcvL1NRueGXKee4rGcw1/cLcSnGU7l5Q1+6TO7HeLKvmjHZhQ4e/aqE2weFMKVbcLP2U1NycvIWY8zo70wwxrh1A24A5tV4fjvwCpAPBFltFwArrccrgQusx0HWfAI8AjxS43X+O199t6SkJOOulJQUr43xZF++vEwLNh0x3R9aZnYePd2i/TRnjCf70mVyP8aTfdWMcTgc5uK/pJjvv76h2fupCdhsavlMbco2gyPAeBEJs8b+pwJpQApwvTXPbOAj6/FS6znW9LVWYkuBm629jXoCfYFvm5CX8gPLdx0nIaotQ7q2tzsVpZqFiDBtcBzfHDjJmXMVHu+/KdsMNuLcELwV2GW91j+Bh4D7RSQD5zaBeVbIPKCT1X4/8LD1OruB93EWkhXA3cYY77jag/JKZ0sr+DIjnxmD4/WKZqpVmT44nkqHYe0+zx+A1qSTvxtj5gJzz2s+SC17AxljSnEOLdX2Ok8CTzYlF+U/1u7Jo6LKMHOo7lKqWpcRCZHEtQ9lRWoO14xM8GjfegSy8jnLU48T1z6UkYlRdqeiVLMKCBCmDYrn8/0nKCn37ACJFgPlU86VV/L5/hNMHxxPQIAOEanWZ/rgeEorHKxPP+HRfrUYKJ+ybt8JSiscetSxarXG9epIh7bBHj8ATYuB8inLU3PoGB7C2B4d7U5FqRYRHBjA1IGxrNmTR0WVw2P9ajFQPqO0ooq1e3KZNiiOoEBddVXrNX1wPGdKKth4sMBjfeo7SvmML9PzKS6v0iEi1epN6htDm+AAjw4VaTFQPmN5ag7t2gQxoXe03ako1aLahgQyuV8Mq9JycDg8czlMLQbKJ1RUOfhsTy6XDowjJEhXW9X6TR8cT+7ZMnZknfZIf/quUj7hmwMnOVNSoUNEym9MHRBHUICwwkNDRVoMlE9YnppDWEggk/rF2J2KUh7RISyYC3p3sq7b0fJDRVoMlNerchhWp+WQPCCWNsF6ETzlP6YNjudQfjHpeUUt3pcWA+X1NmUWkF9Urhe9V37nv5fDTG35oSItBsrrrUjNITQogOT+sXanopRHxbVvw6hukaxM02Kg/JzDYViRmsPkfjGEhzbpJLtK+aTpg+NJzT7L0YJzLdqPFgPl1bZnnSbnbKmerlr5remDnev+qrSWvcaBFgPl1Vak5hAcKEwZEGd3KkrZokd0OP3j2rX40chaDJTXMsawPPU4E/tE06Ft3RcIV6q1mz4kns2ZBeQXlbVYH1oMlNc6UujgaEGJ7kWk/N70wXE4DHzWgkNFWgyU19qcU0VggHDpIC0Gyr8N6tyehKi2LTpUpMVAea3NuZWM69mRjuEhdqeilK1EhOmD4/kq4yQllS1zNLIWA+WV0nMLOV5sdIhIKcuMIfGUVznYeaJlro2sxUB5peWpOQj/f7c6pfzdqG5RREeEsCW3skVeX4uB8krLU3PoExlAbPs2dqeilFdwbj+LY+eJKkormv/XgRYD5XXScwvZc/wsY+L1iGOlarpuVALTegRT3gLXRm5SMRCRSBFZKCJ7RWSPiFwgIh1FZLWIpFv3Uda8IiIviEiGiOwUkVE1Xme2NX+6iMxu6kIp37ZkezaBAcK4zloMlKppdI+OXNs3hPZtmv+4m6b+MvgbsMIYMwAYDuwBHgbWGGP6Amus5wAzgb7WbQ7wCoCIdATmAuOAscDc6gKi/I/DYViy7RgX9ommQ6jYnY5SfsPtYiAi7YFJwDwAY0y5MeY0cDXwljXbW8As6/HVwNvGaQMQKSKdgenAamNMgTHmFLAamOFuXsq3bT58iuzTJVwzsqvdqSjlV8TdK+iIyAjgn0Aazl8FW4B7gGxjTGSN+U4ZY6JEZBnwlDHmS6t9DfAQcDHQxhjzB6v9N0CJMeaZWvqcg/NXBXFxcUnz5893K/eioiIiIiK8MsaTfXnjMv0rtYwNxyt5ITmMitJir10m/d96vi9dJvdjakpOTt5ijBn9nQnGGLduwGigEhhnPf8b8ARw+rz5Tln3nwAX1mhfAyQBvwIeq9H+G+CBhvpPSkoy7kpJSfHaGE/25W3LVFJeaYbMXWHum7/N7b68OcaTfekyuR/jyb48uUzVgM2mls/UpmwzyAKyjDEbrecLgVFArjX8g3WfV2P+xBrxCcCxetqVn1m3L4/C0kpm6RCRUh7ndjEwxuQAR0Wkv9U0FeeQ0VKgeo+g2cBH1uOlwO3WXkXjgTPGmOPASmCaiERZG46nWW3Kzyzelk1Mu1Am9O5kdypK+Z2m7rv3C+A/IhICHATuwFlg3heRu4AjwA3WvJ8ClwEZwDlrXowxBSLyBLDJmu/3xpiCJualfMzpc+Wk7D3BbRd0JyhQD39RytOaVAyMMdtxbjs439Ra5jXA3XW8zhvAG03JRfm2T3flUF7l0L2IlLKJfgVTXmHxtiz6xEYwuEt7u1NRyi9pMVC2O1pwjk2Zp7hmZFdE9EAzpeygxUDZ7qPt2QBcPaKLzZko5b+0GChbGWNYvC2bsT07khAVZnc6SvktLQbKVqnZZzlwolg3HCtlMy0GylaLt2UTEhjAZUM6252KUn5Ni4GyTWWVg6U7jjFlQCwdwpr/lLxKKddpMVC2+TIjn/yiMj39hFJeQIuBss2Sbdl0aBtM8oAYu1NRyu9pMVC2KC6rZOXuXC4f1pnQoEC701HK72kxULZYlZZDSUWV7kWklJfQYqBssXjbMRKi2pLUTa9wqpQ30GKgPCPZLSgAABYLSURBVC7vbClfpp9g1oiuBATo6SeU8gZaDJTHLd1xDIeBWSP19BNKeQstBsrjlmzPZmjXDvSJbWd3KkopixYD5VHpuYWkZp/VDcdKeRktBsqjlmzPJjBAuHK4DhEp5U20GCiPcTgMS7Yd48I+0cS0C7U7HaVUDVoMlMdsyiwg+3SJDhEp5YW0GCiPWbI9m7CQQKYNjrM7FaXUebQYKI8orzIs23mc6YPjCQsJsjsdpdR5tBgoj9h5oorC0kodIlLKS2kxUB7xzfFKYtqFMqF3J7tTUUrVQouBanGnz5WzI6+Kq4Z3IShQVzmlvFGT35kiEigi20RkmfW8p4hsFJF0EVkgIiFWe6j1PMOa3qPGazxite8TkelNzUl5l092HafSoENESnmx5viadg+wp8bzPwPPGWP6AqeAu6z2u4BTxpg+wHPWfIjIIOBmYDAwA3hZRPQE963Ikm3ZdAkXBndpb3cqSqk6NKkYiEgCcDnwuvVcgCnAQmuWt4BZ1uOrredY06da818NzDfGlBljDgEZwNim5KW8x6H8YjZlnuKCLkE4/91KKW8kxhj3g0UWAn8C2gEPAj8ANljf/hGRRGC5MWaIiKQCM4wxWda0A8A44HEr5h2rfZ4Vs/C87hCROcAcgLi4uKT58+c3OufcYgdnis7RLy6iUXFFRUVERLR8jCf78kTMqztK2ZJbxdzRhq4dvS8/T8Z4si9dJvdjPNmXJ5epWnJy8hZjzOjvTDDGuHUDrgBeth5fDCwDYoCMGvMkArusx7uBhBrTDgCdgJeA79donwdc11D/SUlJprEqqxzmgj9+Zi596lPjcDgaFZuSktLo/tyJ8WRfLR2TduyM6fHwMvPU8j1emZ+nYzzZly6T+zGe7MuTy1QN2Gxq+UxtyjDRROAqEckE5uMcHnoeiBSR6qOKEoBj1uMsqzhgTe8AFNRsryWmWQUGCD+5uDf7TzlYn57fEl2oGp5ZuY92oUH8ZFJvu1NRSjXA7WJgjHnEGJNgjOmBcwPwWmPMrUAKcL0122zgI+vxUus51vS1VpVaCtxs7W3UE+gLfOtuXg25eUw3OrUR/rpqX/UvEdUCNmcWsGZvHj+e3JsOYcF2p6OUakBL7PT9EHC/iGTgHAaaZ7XPAzpZ7fcDDwMYY3YD7wNpwArgbmNMVQvkBUBIUACz+gSzM+sMq9JyW6obv2aM4ekV+4hpF8odE3vYnY5SygXNcpIYY8w6YJ31+CC17A1kjCkFbqgj/kngyebIxRUTugSRkhPMs6v2c+nAOL0ObzNbt/8E32YW8MTVg/U8REr5CL88HDQwQLj30n7syy3k450tsnnCbzkchr+s2Edix7bcNKab3ekopVzkl8UA4IqhnRkQ347nP0unssphdzqtxrJdx0k7fpYHLu1PSJDfrl5K+Ry/fbcGBAj3X9qPQ/nFLNqabXc6rUJFlYNnV+1jQHw7rtLLWirlU/y2GABcOiiO4Qkd+NuadMoqW2ybtd/4YHMWmSfP8eC0/rodRikf49fFQER4YFp/sk+XMP/bo3an49NKK6r425r9JHWPYurAWLvTUUo1kl8XA4CL+kYztmdHXkzJoKRcfx24662vM8k9W8b/Te+v5yBSygf5fTEQER6c1p8ThWW8/U2m3en4pDMlFby87gCT+8UwrpdevEYpX+T3xQBgbM+OTOoXwz8+P0BhaYXd6fic19Yf5ExJBb+a3t/uVJRSbtJiYHlwWj9OnavgjS8z7U7Fp5woLOONrw5xxbDODOnawe50lFJu0mJgGZYQyfTBcbz+xUFOnyu3Ox2f8VJKBmWVDh6Ypr8KlPJlWgxquP/S/hSVV/Lq+oN2p+ITjhac4z8bD3Pj6ER6RofbnY5Sqgm0GNTQ3zpY6s2vMskrLLU7Ha/33Gf7CRDhnql97U5FKdVEWgzOc+8l/SivcvByygG7U/Fq+3IKWbwtm9kTehDfoY3d6SilmkiLwXl6Rodz/agE3t14hGOnS+xOx2s9s2ofESFB/HSyXrhGqdZAi0EtfnmJc9jj72vTbc7EO209corVabnMmdSLqPAQu9NRSjUDLQa16BrZllvGJvL+5iwy84vtTserOC9cs5foiBDuvLCn3ekopZqJFoM63D2lD8GBwt/W6K+DmnafrGLDwQJ+ntyH8FC9cI1SrYUWgzrEtmvD7Ak9WLI9m/25hXan4xWMMSzcX+H85TROL1yjVGuixaAeP5nUm/CQIJ5bvd/uVLzC0h3HyDzr4L5L+xEaFGh3OkqpZqTFoB5R4SHcdWFPlqfmkHnGv89omnu2lLlLd9OzQwDXjOxqdzpKqWamxaABd13Uk8iwYBbur8AYY3c6tjDG8OAHOyitqGLO0FAC9cI1SrU6Wgwa0L5NMPdM7UvqySr+s/GI3enY4t8bDvNFej6PXj6IzhG6yijVGuk72wWzL+jB0OhAnliWxr4c/9qYnJFXxB8/3cPkfjF8XzcaK9VqaTFwQUCA8KOhobRvG8zP393qN1dEq6hycP/722kTHMhfrh+mVzBTqhVzuxiISKKIpIjIHhHZLSL3WO0dRWS1iKRb91FWu4jICyKSISI7RWRUjdeabc2fLiKzm75Yza99qPDcjSPIOFHE75el2Z2OR/x9TTo7s87wp2uGEttezz+kVGvWlF8GlcADxpiBwHjgbhEZBDwMrDHG9AXWWM8BZgJ9rdsc4BVwFg9gLjAOGAvMrS4g3ubCvtH8ZHJv3vv2CJ/sPG53Oi1q65FTvJiSwXWjEpg5tLPd6SilWpjbxcAYc9wYs9V6XAjsAboCVwNvWbO9BcyyHl8NvG2cNgCRItIZmA6sNsYUGGNOAauBGe7m1dLuv7QfIxIjeXjRTo4WnLM7nRZRXFbJ/Qu207lDW+ZeNcjudJRSHiDNsbukiPQA1gNDgCPGmMga004ZY6JEZBnwlDHmS6t9DfAQcDHQxhjzB6v9N0CJMeaZWvqZg/NXBXFxcUnz5893K9+ioiIiIiLcjjlxzsFvvy6ha0QAD49tQ1Adu1q6009z5NfUmDdTy/g8q5KHxrZhQMdAl2I8mZ+vxniyL10m92M82Zcnl6lacnLyFmPM6O9MMMY06QZEAFuAa63np8+bfsq6/wS4sEb7GiAJ+BXwWI323+Acfqq336SkJOOulJSUJscs3Z5tuj+0zDy9Yk+z9uNuXHPFfJaWY7o/tMz88ZO0ZuvH3bjWFuPJvnSZ3I/xZF+eXKZqwGZTy2dqk/YmEpFg4EPgP8aYRVZzrjX8g3WfZ7VnAYk1whOAY/W0e7Urh3fhptGJvLzuAF9n5NudTrM4WVTGQx/uZEB8O+6f1s/udJRSHtSUvYkEmAfsMcY8W2PSUqB6j6DZwEc12m+39ioaD5wxxhwHVgLTRCTK2nA8zWrzenOvGkSv6HDuXbCdk0VldqfTJMYYHlm0i7MllTx/8wg995BSfqYpvwwmArcBU0Rku3W7DHgKuFRE0oFLrecAnwIHgQzgNeBnAMaYAuAJYJN1+73V5vXCQoJ48XujOF1SwYMf7MDh8N3TVXywOYtVabn8anp/BsS3tzsdpZSHuX1CeuPcEFzXUUhTa5nfAHfX8VpvAG+4m4udBnZuz2OXD+S3H+3mX19ncpcPXvDlyMlz/O7j3Yzv1dEn81dKNZ0egdwMbhvfnWmD4nhq+R5Ss8/YnU6jVDkM97+/nQARnrlhOAF6Ejql/JIWg2YgIjx9/TCiI0L5xXvbKCqrtDsll726/gCbD5/i97MGkxAVZnc6SimbaDFoJpFhITx/0wgOnyzmtx+l2p2OSw6freK51fu5fGhnZo3QaxQo5c+0GDSjcb068YspfVm0NZvF27LsTqdepRVVvLqzjKiwEP4wa4iehE4pP6fFoJn9YkofxvboyGOLU8kpdtidTq1yzpTyi/e2cazI8JcbhhMVHmJ3Skopm2kxaGZBgQE8f/MIggIDeGVHmVedv6i0ooq/r0kn+Zl1fL7/BDf1D2Fyvxi701JKeQEtBi2gS2Rbnr1xONlFDpKfWcevF+/i2OkS2/IxxvDpruNM/evn/HX1fi7uH8Oa+yczs2ewbTkppbyL28cZqPpNHRjH05Pasq00lvmbjrBwcxa3jE3kZ8l9iPPgtQHSjp3ldx/vZuOhAgbEt+PdH41jQu9oAA54LAullLfTYtCCOrYJ4IkZQ/jx5F68lJLBfzYeYf6mo3x/fHd+Mrk3Me1CW6zvk0Vl/HX1fuZ/e4QObYP5w6wh3DwmkaBA/TGolPouLQYekBAVxp+uHcZPJ/fhhbXp/OurQ7y78Qi3T+jOjyf1pmMzbsCtqHLw9jeHef6z/ZSUV/GDCT25Z2pfOoTpkJBSqm5aDDyoW6cwnrlhOD+7uDcvrEnnn+sP8s43h7ljYk9+eFFPIsOaVhTW7cvjiWVpHDhRzKR+Mfz2ioH0iW3XTNkrpVozLQY26BUTwfM3j+Tu5D48vyadF1MyeOvrTO66qCd31nFuIIfDUF7loKzSQXmlg/Iq531ZZRVnSyp5bkspO05somd0OG/8YDTJ/WP12AGllMu0GNiob1w7XvreKH6efJbnP9vP85+l8/oXh2gbUEXg12soq6z67wd/RVX9Z0RtGwSPXjaQ2RN6EBKk2wWUUo2jxcALDOzcnldvG01q9hn+/c1hDmcfo1vXaEKCAggJDCQ0OICQwABCggIItW7Ox4H/bSs+msZVk3rZvShKKR+lxcCLDOnagT9fP4x16wq4+OLhjYpdl7unhbJSSvkDHU9QSimlxUAppZQWA6WUUmgxUEophRYDpZRSaDFQSimFFgOllFJoMVBKKQWIMfWf5sBbicgJ4LCb4dFAvpfGeLIvXSbPxniyL10m92M82Zcnl6lad2PMdy9xaIzxuxuw2VtjvD0/XSb9O/hSfrpMrt90mEgppZQWA6WUUv5bDP7pxTGe7EuXybMxnuxLl8n9GE/25cllqpfPbkBWSinVfPz1l4FSSqkatBgopZTyr2IgIjNEZJ+IZIjIwy7GvCEieSKS2oh+EkUkRUT2iMhuEbnHhZg2IvKtiOywYn7XiP4CRWSbiCxrREymiOwSke0istnFmEgRWSgie61lu6CB+ftbr199Oysi97rQz33W3yBVRN4TkTYuxNxjzb+7vj5q+3+KSEcRWS0i6dZ9lAsxN1h9OURktIv9/MX62+0UkcUiEuli3BNWzHYRWSUiXRqKqTHtQRExIhLtQj+Pi0h2jf/XZa70IyK/sN5Xu0XkaReXaUGNfjJFZLsLMSNEZEP1OisiY12IGS4i31jr+sci0v68mFrfq/WtE/XE1LlO1BNT7zpRT1y964RbWmJ/VW+8AYHAAaAXEALsAAa5EDcJGAWkNqKvzsAo63E7YH9DfQECRFiPg4GNwHgX+7sfeBdY1ogcM4HoRv4N3wJ+aD0OASIb+ffPwXnAS33zdQUOAW2t5+8DP2ggZgiQCoThvHrfZ0BfV/+fwNPAw9bjh4E/uxAzEOgPrANGu9jPNCDIevzn8/upJ659jce/BP7hyjoKJAIrcR6cGe1CP48DDzbmvQAkW3/vUOt5bGPfQ8Bfgd+60NcqYKb1+DJgnQsxm4DJ1uM7gSfOi6n1vVrfOlFPTJ3rRD0x9a4T9cTVu064c/OnXwZjgQxjzEFjTDkwH7i6oSBjzHqgoDEdGWOOG2O2Wo8LgT04P+TqizHGmCLrabB1a3DrvogkAJcDrzcmx8ayvlFNAuYBGGPKjTGnG/ESU4EDxhhXjhoPAtqKSBDOD/hjDcw/ENhgjDlnjKkEPgeuqW3GOv6fV+MsdFj3sxqKMcbsMcbsqyuhOmJWWfkBbAASXIw7W+NpOOetF/Wso88B/3f+/A3E1KmOmJ8CTxljyqx58hrTl4gIcCPwngsxBqj+Zt+B89aLOmL6A+utx6uB686Lqeu9Wuc6UVdMfetEPTH1rhP1xNW7TrjDn4pBV+BojedZNPAB3RxEpAcwEuc3/YbmDbR+LucBq40xDcYAz+N8wzsamZoBVonIFhGZ48L8vYATwL/EOST1uoiEN6K/mznvDV9rUsZkA88AR4DjwBljzKoGwlKBSSLSSUTCcH5rTGxEbnHGmONW/8eB2EbEuutOYLmrM4vIkyJyFLgV+K0L818FZBtjdjQyr59bww9vnD9cVod+wEUislFEPheRMY3s7yIg1xiT7sK89wJ/sf4OzwCPuBCTClxlPb6BetaL896rLq0TjXl/uxBT7zpxflxj14mG+FMxkFraWnS/WhGJAD4E7j2vktfKGFNljBmB89vBWBEZ0sDrXwHkGWO2uJHeRGPMKGAmcLeITGpg/iCcP8FfMcaMBIpx/nxukIiE4HxDfuDCvFE4v5X1BLoA4SLy/fpijDF7cP7EXg2swDkEWFlfjJ1E5FGc+f3H1RhjzKPGmEQr5ucNvH4Y8CiN/4B4BegNjMBZiP/qQkwQEAWMB34FvG9923fVLbjwJcHyU+A+6+9wH9av1AbciXP93oJzmKW8tpka+15t7piG1ona4hqzTrjCn4pBFv/7rSCBhocf3CYiwTj/ef8xxixqTKw1/LIOmNHArBOBq0QkE+ew1xQRecfFPo5Z93nAYpzDaPXJArJq/FpZiLM4uGImsNUYk+vCvJcAh4wxJ4wxFcAiYEJDQcaYecaYUcaYSTiHClz5plktV0Q6A1j33xnqaC4iMhu4ArjVWAO+jfQu5w111KI3zmK6w1o3EoCtIhJfX5AxJtf6QuIAXqPhdQKc68Uia5jzW5y/UKMbiAHAGga8FljgyvzAbJzrAzi/WDSYnzFmrzFmmjEmCWfROVBLHrW9V+tdJ9x5f9cV09A64UJfrqwTDfKnYrAJ6CsiPa1vqjcDS1uiI+ub0TxgjzHmWRdjYqr3JBCRtjg/FPfWF2OMecQYk2CM6YFzedYaY+r9Fm29friItKt+jHMjVr17SxljcoCjItLfapoKpDXUl6Ux3/6OAONFJMz6O07FOU5aLxGJte674fyAcbU/cK4Hs63Hs4GPGhHrMhGZATwEXGWMOdeIuL41nl5Fw+vFLmNMrDGmh7VuZOHcCJnTQD+dazy9hgbWCcsSYIoV3w/njgWunlHzEmCvMSbLxfmPAZOtx1NwoeDXWC8CgMeAf5w3va73ap3rhJvv71pjGlon6olr1DrhkvO3KLfmG86x5P04vx086mLMezh/MlfgfFPd5ULMhTiHoHYC263bZQ3EDAO2WTGpnLd3hQt9XoyLexPhHP/fYd12N+JvMQLYbOW4BIhyISYMOAl0aMSy/M5auVOBf2PtqdJAzBc4i9MOYGpj/p9AJ2ANzg+XNUBHF2KusR6XAbnAShdiMnBut6peJ76zB0gdcR9af4udwMc4NyC6vI5Sy55jdfTzb2CX1c9SoLMLMSHAO1Z+W4Eprr6HgDeBnzTi/3QhsMX6H28EklyIuQfne34/8BTWWRcaeq/Wt07UE1PnOlFPTL3rRD1x9a4T7tz0dBRKKaX8aphIKaVUHbQYKKWU0mKglFJKi4FSSim0GCillEKLgVJKKbQYKKWUAv4fF9Zrk364JK4AAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "keys = [pair for pair, df in all_data.groupby(['Hour'])]\n", - "\n", - "plt.plot(keys, all_data.groupby(['Hour']).count()['Count'])\n", - "plt.xticks(keys)\n", - "plt.grid()\n", - "plt.show()\n", - "\n", - "# My recommendation is slightly before 11am or 7pm" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Question 4: What products are most often sold together?" - ] - }, - { - "cell_type": "code", - "execution_count": 48, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\keith\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:5: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " \"\"\"\n" - ] - } - ], - "source": [ - "# https://stackoverflow.com/questions/43348194/pandas-select-rows-if-id-appear-several-time\n", - "df = all_data[all_data['Order ID'].duplicated(keep=False)]\n", - "\n", - "# Referenced: https://stackoverflow.com/questions/27298178/concatenate-strings-from-several-rows-using-pandas-groupby\n", - "df['Grouped'] = df.groupby('Order ID')['Product'].transform(lambda x: ','.join(x))\n", - "df2 = df[['Order ID', 'Grouped']].drop_duplicates()" - ] - }, - { - "cell_type": "code", - "execution_count": 47, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "('iPhone', 'Lightning Charging Cable') 1005\n", - "('Google Phone', 'USB-C Charging Cable') 987\n", - "('iPhone', 'Wired Headphones') 447\n", - "('Google Phone', 'Wired Headphones') 414\n", - "('Vareebadd Phone', 'USB-C Charging Cable') 361\n", - "('iPhone', 'Apple Airpods Headphones') 360\n", - "('Google Phone', 'Bose SoundSport Headphones') 220\n", - "('USB-C Charging Cable', 'Wired Headphones') 160\n", - "('Vareebadd Phone', 'Wired Headphones') 143\n", - "('Lightning Charging Cable', 'Wired Headphones') 92\n" - ] - } - ], - "source": [ - "# Referenced: https://stackoverflow.com/questions/52195887/counting-unique-pairs-of-numbers-into-a-python-dictionary\n", - "from itertools import combinations\n", - "from collections import Counter\n", - "\n", - "count = Counter()\n", - "\n", - "for row in df2['Grouped']:\n", - " row_list = row.split(',')\n", - " count.update(Counter(combinations(row_list, 2)))\n", - "\n", - "for key,value in count.most_common(10):\n", - " print(key, value)\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### What product sold the most? Why do you think it sold the most?" - ] - }, - { - "cell_type": "code", - "execution_count": 76, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYMAAAFoCAYAAAC155dTAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOydd5hkVbW33x+MCF5FQIIISBCuikjQIZgVlKRX0E8UUECUiwGvmAWuCmLCiBEUJQyiIIgIwsBIjiogGRMDgiBIuAQDKgz8vj/WLrqmpnr67Do13dPT632eeqrqdK19dlVXnbX3irJNkiRJMrVZbKInkCRJkkw8qQySJEmSVAZJkiRJKoMkSZKEVAZJkiQJMG2iJzAoyy+/vNdYY42JnkaSJMmkYfnll2fWrFmzbG/d+7dJqwzWWGMNLr/88omeRpIkyaRC0vL9jqeZKEmSJEllkCRJkqQySJIkSUhlkCRJkpDKIEmSJCGVQZIkSUIqgyRJkoRUBkmSJAmpDJIkSRImcQZyMrGssc9p1TI3H/TqBTCTJEmGQe4MkiRJklQGSZIkSQNlIGlJSZdKulrS9ZI+WY6vKelXkm6Q9CNJS5Tjjy/PZ5e/r9E11r7l+O8lbdV1fOtybLakfYb/NpMkSZL50WRn8G9gc9sbABsCW0vaDPg8cLDtdYD7gLeX178duM/22sDB5XVIWhfYEXgOsDVwiKTFJS0OfAvYBlgX2Km8NkmSJBknxlQGDv5enj6u3AxsDvy4HJ8BbF8eb1eeU/6+hSSV48fZ/rftPwKzgU3Kbbbtm2w/BBxXXpskSZKME418BmUFfxVwF3AmcCNwv+055SW3AauUx6sAtwKUvz8APKX7eI/MaMeTJEmScaKRMrD9iO0NgVWJlfyz+72s3GuUv9UenwdJe0q6XNLld99999gTT5IkSRpRFU1k+37gPGAzYBlJnTyFVYHby+PbgNUAyt+fDNzbfbxHZrTj/c5/mO3ptqevsMIKNVNPkiRJ5kOTaKIVJC1THi8FvBL4LXAu8Ibyst2Ak8vjU8pzyt/Pse1yfMcSbbQmsA5wKXAZsE6JTlqCcDKfMow3lyRJkjSjSQbyysCMEvWzGHC87VMl/QY4TtKngSuBw8vrDwe+L2k2sSPYEcD29ZKOB34DzAH2sv0IgKT3ALOAxYEjbF8/tHeYJEmSjMmYysD2NcBGfY7fRPgPeo//C9hhlLE+A3ymz/GZwMwG802SJEkWAJmBnCRJkqQySJIkSVIZJEmSJKQySJIkSUhlkCRJkpDKIEmSJCGVQZIkSUIqgyRJkoRUBkmSJAmpDJIkSRKa1SZKFkHW2Oe0apmbD3r1AphJkiQLA7kzSJIkSVIZJEmSJKkMkiRJElIZJEmSJKQySJIkSUhlkCRJkpDKIEmSJCGVQZIkSUIqgyRJkoRUBkmSJAmpDJIkSRJSGSRJkiSkMkiSJElIZZAkSZLQQBlIWk3SuZJ+K+l6SXuX4wdI+rOkq8pt2y6ZfSXNlvR7SVt1Hd+6HJstaZ+u42tK+pWkGyT9SNISw36jSZIkyeg02RnMAT5o+9nAZsBektYtfzvY9oblNhOg/G1H4DnA1sAhkhaXtDjwLWAbYF1gp65xPl/GWge4D3j7kN5fkiRJ0oAxlYHtO2xfUR7/DfgtsMp8RLYDjrP9b9t/BGYDm5TbbNs32X4IOA7YTpKAzYEfF/kZwPaDvqEkSZKkniqfgaQ1gI2AX5VD75F0jaQjJC1bjq0C3Noldls5NtrxpwD3257Tc7zf+feUdLmky+++++6aqSdJkiTzobEykPRE4ETgfbb/ChwKPAPYELgD+HLnpX3EPcDxeQ/ah9mebnv6Cius0HTqSZIkyRg06oEs6XGEIviB7Z8A2L6z6+/fBU4tT28DVusSXxW4vTzud/weYBlJ08ruoPv1SZIkyTjQJJpIwOHAb21/pev4yl0vex1wXXl8CrCjpMdLWhNYB7gUuAxYp0QOLUE4mU+xbeBc4A1Ffjfg5HZvK0mSJKmhyc7gRcAuwLWSrirH9iOigTYkTDo3A+8AsH29pOOB3xCRSHvZfgRA0nuAWcDiwBG2ry/jfRQ4TtKngSsJ5ZMkSZKME2MqA9sX0d+uP3M+Mp8BPtPn+Mx+crZvIqKNkiRJkgkgM5CTJEmSZg7kJEmShZE19jmtWubmg169AGYy+cmdQZIkSZLKIEmSJEllkCRJkpDKIEmSJCEdyEkyZUnna9JN7gySJEmSVAZJkiRJKoMkSZKEVAZJkiQJqQySJEkSUhkkSZIkpDJIkiRJSGWQJEmSkMogSZIkIZVBkiRJQiqDJEmShFQGSZIkCakMkiRJElIZJEmSJKQySJIkSUhlkCRJkpDKIEmSJKFBpzNJqwFHA08FHgUOs/01ScsBPwLWAG4G3mj7PkkCvgZsCzwIvNX2FWWs3YCPlaE/bXtGOf584ChgKWAmsLdtD+k9JkmSLBAWpW5xTXYGc4AP2n42sBmwl6R1gX2As22vA5xdngNsA6xTbnsChwIU5bE/sCmwCbC/pGWLzKHltR25rdu/tSRJkqQpYyoD23d0Vva2/wb8FlgF2A6YUV42A9i+PN4OONrBL4FlJK0MbAWcafte2/cBZwJbl78tbfsXZTdwdNdYSZIkyThQ5TOQtAawEfArYCXbd0AoDGDF8rJVgFu7xG4rx+Z3/LY+x/udf09Jl0u6/O67766ZepIkSTIfGisDSU8ETgTeZ/uv83tpn2Me4Pi8B+3DbE+3PX2FFVYYa8pJkiRJQxopA0mPIxTBD2z/pBy+s5h4KPd3leO3Aat1ia8K3D7G8VX7HE+SJEnGiTGVQYkOOhz4re2vdP3pFGC38ng34OSu47sq2Ax4oJiRZgFbSlq2OI63BGaVv/1N0mblXLt2jZUkSZKMA2OGlgIvAnYBrpV0VTm2H3AQcLyktwN/AnYof5tJhJXOJkJLdwewfa+kTwGXldcdaPve8vhdjISWnl5uSZIkyTgxpjKwfRH97foAW/R5vYG9RhnrCOCIPscvB9Ybay5JkiTJgiEzkJMkSZJUBkmSJEkqgyRJkoRUBkmSJAmpDJIkSRJSGSRJkiSkMkiSJElIZZAkSZKQyiBJkiQhlUGSJElCKoMkSZKEVAZJkiQJqQySJEkSUhkkSZIkpDJIkiRJSGWQJEmSkMogSZIkIZVBkiRJQiqDJEmShFQGSZIkCakMkiRJElIZJEmSJKQySJIkSYBpEz2BZGqyxj6nVcvcfNCrF8BMkiSBBjsDSUdIukvSdV3HDpD0Z0lXldu2XX/bV9JsSb+XtFXX8a3LsdmS9uk6vqakX0m6QdKPJC0xzDeYJEmSjE0TM9FRwNZ9jh9se8NymwkgaV1gR+A5ReYQSYtLWhz4FrANsC6wU3ktwOfLWOsA9wFvb/OGkiRJknrGVAa2LwDubTjedsBxtv9t+4/AbGCTcptt+ybbDwHHAdtJErA58OMiPwPYvvI9JEmSJC1p40B+j6Rrihlp2XJsFeDWrtfcVo6NdvwpwP225/QcT5IkScaRQZXBocAzgA2BO4Avl+Pq81oPcLwvkvaUdLmky+++++66GSdJkiSjMpAysH2n7UdsPwp8lzADQazsV+t66arA7fM5fg+wjKRpPcdHO+9htqfbnr7CCisMMvUkSZKkDwMpA0krdz19HdCJNDoF2FHS4yWtCawDXApcBqxTIoeWIJzMp9g2cC7whiK/G3DyIHNKkiRJBmfMPANJxwIvB5aXdBuwP/BySRsSJp2bgXcA2L5e0vHAb4A5wF62HynjvAeYBSwOHGH7+nKKjwLHSfo0cCVw+NDeXZIkSdKIMZWB7Z36HB71gm37M8Bn+hyfCczsc/wmRsxMSZIkyQSQ5SiSJEmSVAZJkiRJKoMkSZKEVAZJkiQJqQySJEkSsoR1MknJEthJMlxyZ5AkSZKkMkiSJElSGSRJkiSkMkiSJElIZZAkSZKQyiBJkiQhlUGSJElCKoMkSZKEVAZJkiQJqQySJEkSUhkkSZIkpDJIkiRJSGWQJEmSkMogSZIkIZVBkiRJQiqDJEmShFQGSZIkCakMkiRJElIZJEmSJDRQBpKOkHSXpOu6ji0n6UxJN5T7ZctxSfq6pNmSrpH0vC6Z3crrb5C0W9fx50u6tsh8XZKG/SaTJEmS+dNkZ3AUsHXPsX2As22vA5xdngNsA6xTbnsCh0IoD2B/YFNgE2D/jgIpr9mzS673XEmSJMkCZkxlYPsC4N6ew9sBM8rjGcD2XcePdvBLYBlJKwNbAWfavtf2fcCZwNblb0vb/oVtA0d3jZUkSZKME4P6DFayfQdAuV+xHF8FuLXrdbeVY/M7fluf432RtKekyyVdfvfddw849SRJkqSXYTuQ+9n7PcDxvtg+zPZ029NXWGGFAaeYJEmS9DKoMrizmHgo93eV47cBq3W9blXg9jGOr9rneJIkSTKODKoMTgE6EUG7ASd3Hd+1RBVtBjxQzEizgC0lLVscx1sCs8rf/iZpsxJFtGvXWEmSJMk4MW2sF0g6Fng5sLyk24iooIOA4yW9HfgTsEN5+UxgW2A28CCwO4DteyV9CrisvO5A2x2n9LuIiKWlgNPLLUmSJBlHxlQGtnca5U9b9Hmtgb1GGecI4Ig+xy8H1htrHkmSJMmCIzOQkyRJklQGSZIkSSqDJEmShFQGSZIkCakMkiRJElIZJEmSJKQySJIkSUhlkCRJkpDKIEmSJCGVQZIkSUIqgyRJkoQGtYmS4bPGPqdVy9x80KsXwEySJEmC3BkkSZIkqQySJEmSVAZJkiQJ6TNIkiSZMBYm/2HuDJIkSZJUBkmSJEkqgyRJkoT0GQzEwmTnS5IkGQapDCYhqYySJBk2aSZKkiRJUhkkSZIkqQySJEkSWvoMJN0M/A14BJhje7qk5YAfAWsANwNvtH2fJAFfA7YFHgTeavuKMs5uwMfKsJ+2PaPNvJJkPEjfTbIoMYydwStsb2h7enm+D3C27XWAs8tzgG2AdcptT+BQgKI89gc2BTYB9pe07BDmlSRJkjRkQZiJtgM6K/sZwPZdx4928EtgGUkrA1sBZ9q+1/Z9wJnA1gtgXkmSJMkotFUGBn4u6deS9izHVrJ9B0C5X7EcXwW4tUv2tnJstONJkiTJONE2z+BFtm+XtCJwpqTfzee16nPM8zk+7wChcPYEePrTn1471yRJkmQUWikD27eX+7sknUTY/O+UtLLtO4oZ6K7y8tuA1brEVwVuL8df3nP8vFHOdxhwGMD06dP7KowkaUI6f9uTn+GixcBmIkn/IelJncfAlsB1wCnAbuVluwEnl8enALsq2Ax4oJiRZgFbSlq2OI63LMeSJEmScaLNzmAl4KSIGGUa8EPbZ0i6DDhe0tuBPwE7lNfPJMJKZxOhpbsD2L5X0qeAy8rrDrR9b4t5JUmSJJUMrAxs3wRs0Of4/wFb9DluYK9RxjoCOGLQuSRJkiTtmJKF6tLWmSQLB/lbXHjIchRJkiRJKoMkSZIklUGSJElCKoMkSZKEVAZJkiQJqQySJEkSUhkkSZIkpDJIkiRJSGWQJEmSkMogSZIkIZVBkiRJQiqDJEmShFQGSZIkCVO0ammSJAlk1dRucmeQJEmSpDJIkiRJUhkkSZIkpDJIkiRJSGWQJEmSkMogSZIkIZVBkiRJQiqDJEmShEw6S5JJSyZMJcMklUGSTBB5MU8WJhYaM5GkrSX9XtJsSftM9HySJEmmEguFMpC0OPAtYBtgXWAnSetO7KySJEmmDguFMgA2AWbbvsn2Q8BxwHYTPKckSZIpg2xP9ByQ9AZga9t7lOe7AJvafk/P6/YE9ixPnwn8fshTWR64Z4LHmOryC8Mcprr8wjCHyS6/sMyhl3sAbG/d+4eFxYGsPsfm0VK2DwMOW2CTkC63PX0ix5jq8gvDHKa6/MIwh8kuv7DMoYaFxUx0G7Ba1/NVgdsnaC5JkiRTjoVFGVwGrCNpTUlLADsCp0zwnJIkSaYMC4WZyPYcSe8BZgGLA0fYvn4CpjIME1TbMaa6/MIwh6kuvzDMYbLLLyxzaMxC4UBOkiRJJpaFxUyUJEmSTCCpDJIkSZKprQwUvLWl/FYt5T/SUv6tg8ovLEh6arlfStIOklYcp/O+RdIy43GuMeYhSV8awjhPk7RxefyEAeQ3lfQ6SYtJWr3tfCaCIXwG0yStPPyZLfxMaWXgcJhs21L+3S3l15O0ZAv5geffjaSnSlppALlnSHq/pG9LOlTS+yStXTnMD8r9Z4C1gRMq57BhuV9B0oclPauh6PLAjyWdLuldbS4CkhaXtKOk/ymPN24qW/6PS7U8/37Al4DvSFoMOLFS/pvA64B9bT8KfLdSfhlJH5V0WLlftka+jLGJpJ0lbVorW+Tbfga7AacDZxSlUPs9/Gq5f4ukKyV9vkZ+olkoookmmOUlXQtcTSS62fauNQNImglcATxKDPCJCvENgFsl/b7r/C+tkB94/uWC9W5gZeBeYDFJywF/Bg6xfdkY8ocD/wecC8wkkgfXBN4haTnbb2/4Hh7feS+2PyBpm4ZyHb4MbAF8CjgfOBJ4wVhCtr8KfFXS8sBriYvIk4CZtr9YOYdjyrl3sv0NSZ8DXlkh/zzgAkl3Mtj34FW2XyHpXNuPlhDtGp5tewtJ55bni1fK/xj4DnAS8Z0+Edi8qbCk7wH/Jr7Hu0p6h+23Vc6h7Wewh+2XFPk5kp5SKf/ccr+17Y0k/aJSHklPBt4FLAvsB2xj+9TacQYhlQHs3lL+K22EbW/Q8vxt5v8C4P227+8+WEwnuxD5H/PjXaWWVDe/k9QJEW7KBeUi9IWyS3qwQhbgCZIeDzze9rGS3lkjbPseSWcASwFvArYEapXBCra/LemNlXKdOYypvMbgIUmrAC47vH9Xyv+9syKXtBHwQO35bXdW0n+QVHshX932qzpPJJ1VKQ/tP4M5kp5Y5JeiLO4qWEzSJ4AbO+NVykMsKr4F7Gf7EUnvA8ZFGUxpM1HhXuCNhBZ+E3BfpfyFwIrAC4GVgItqhCWtKulbkmZJOkTSamNLzcXA87f9ddv39zGrPNf2NxrIPwQg6eDOsXIxP9b2wxXz2A94C3CP7X8B/6+pbOEY4GTg2+X8f2wiJOnZkv5X0gXED/DvwPbdF6UK7pL0JsLc8zrgjhphSVtKOkvStcXMNObn38O7iR3SssBXgf+plH87sAOhiN/CSA2wpswp3+GDJJ1enh8o6cCG8rdJ2ldRyv6j5fnmkhrvLmj/GXyU2OE8u9zvWyn/euL3f2BZnOxXKQ+wlO0zGFEk/Ur1LBCmfJ6BpFOIKqm/BqYT2/zXVMj/ALi+S3492ztVyJ8F7A9cDmwMHGi7Znvdav5ljJOBfWz/VtJ2wJttN17hStqZqDy7P2H//6Lt8yvk9wPWA55V3sNptqtMRZI2I8xdJwOr2b6lgcyJwLHA6bb/UXO+PmMtCexBXEh+B3y3KLam8hcBrwB+Xkwd59R8Dwal2Nb7UnwHTcd52XzGGfO7IGn/0cXdVKFMKMV3tT+wNLG73Mf2ZyrHOAS4BdgJmAGsafu9w55rP9JMBE+2/cPy+PeS3lEpv6rtN5fHsyQ1vggWlrR9cXl8UVlR1NB2/hArwaMlXUXUhdqxiVDXheQ4YgVzEbAbcFXl+VvZeovz8+/A5rZPkvRd4sc4FsvZ/nHlXPti+1/lf3818VlsAlxQMcQj5WZJonJFKOnjRDDBP7vm1ESZnE34KMRIccjO4xpldCGxo1ubMJOcaPuRpsK2P6mIKlsTuNl2452VpAuZt7ClqPS7SNodeCvxf+jMq+Yz+BqwPfCTYuLZnAiKaIztd0t6DbGomm374LFkhkUqA7iqXDyuAJ4PXFMp/2dJ/1vkp1NpHgBOKdvqawjH288q5Qeev6RPMfIjuoUwDRwJHAA0cYJ3X0ggyuN+mfoLSVtb76DOzyUlrUmfC6/tm2omIOlUwvHeKbBo6pTBF4jP89lEWZYv1Jwf2HIQv4PtV9TKjML3mXuHfAyxum2EpA8T35mrgI3KzqjRZ2D7JfXT7cu7gBf38YM1Rbbvk9T5TVVfXxXhsAL+AiwraVfbRw84n7pzT3UzEYCk6cAzgJvGiqDpI7s4EZL3DOAmyqqgQv4pxJdmDeBm4N+9Dt0GYww0/7Zb+2Eh6RnECuqZhInlY7ZvnL/UXPInA58FDgI+AHzc9usbyN1BhBL2KgPXRrJIOs32wA2Ky/foUUoNe1f+MBVhjecC11EUfI1Ck7QtYeOeQyjTg2w3btIs6XzbLxvteQP5C7sv6pIusv3ipvJF5vnEQmZp4K/AJ21fXiH/WWKXez0jn2GNqeztRFTaBsClRFTaUU3lyxgXEpF5j1Vttj2jZoyBsT2lb8CZPc+PrZT/fs/zr1XKn9Pz/PjxnH+R2aHrsbqfN5Q/rUf+1HH+Hy5PxJefRuxMlm8od+4Q5/BD4GDCEfs24G2V8mcD3wZeNuD5j+y5HVEpfynwhPL4CcClA7z//yVa134cOG6A9/9CIqLrJYP8b4jot6eVx08DLquUP7fnds4Ac3gK4ft7yoD/x1OG9Z2svU1ZM5GkVxDb0nW6Ih6mEV+iJvIbEbHh07vC6KYBGzWUfx0RfbCupM42cBqxqlng8+/hnZREL9suoZk1CTf/0XlQ5J9Uc/IW9u7Oa+8pn0Enm7hp5ml1HPh8mNVG2GHm+k9gx2J2vBb4oe1fN5RvGyJ9JRGF8yDxOdb6fXYhdsjrE7u7z1bKv5WI5vk44XOoyvUp3MBINN19wOwaYbc0mUlan/CZLRNPhetzJR6VdBJz7/Bq8pYGZsoqA8Kk8yiwFnAWsaJ9mDA1NOFRYkt9b7kX8C/iS92Ecwg7/5+IZJ3O+f/SUL7t/Lt5vKRlHfbO5YDajOgbJH0auITIXbihUn4ge3cHSYcBTye21h3n55g/QkdI61CwPUORxLc2cKPtSwcYZg7hvHy03L9R0oc8n+g0SV+zvXePE7Wx87RL7nHA+ZL+D1gOuLty7kfZ3qV7XsDeFfJvdFebW0WL20YlnLvew9JESOps4v/wp4rzUxy+n2LEVHaA7Zp8hxnAXoTvaFDGzWHcy5T1GUjayPaVkragJxLB9jkN5Fe2fUexd/fKj2mrlbSN7dOLnbFX/ogFPf+esV7IiBJ5lEh4uaRCXsB2wH8SfalPccUXawj27jM9WG7A0Cjv4QmMOFD/ZbtxnLuknxM+ox8AF3Q+P0mftD1a2OWE07VD/hAjiXrTgLc0VEbLEKaVY4CdCUW2OJEBP67/U0mXAFvZ/pukpYFZNYsUSTOILObGOTZ9xliMFlFZbZjKO4P1ia1xr5PKxKp9LHYhIj4+1ke+ydaw45jqzVJsehFtO/8Rgbjw15Q+6JW3oiTG/xE/5pdQF0nzZCIkb/vOkDT7DDvcLGlv5lYmtQrxuZTtfZGvmT/AhrZfXh5/pybEuCjTi9wnnr6pIpC0JWHuezIj76EmX2VV4B2EmbEj3/R73GaH/DLi/74GYSLq7HC/3XTuHRTZw29i7vdQk6MgRn6XtdnHEI7jP5WdSTl9VUkRaBmV1YYpuzPopqwCun9EVdvLIZy/1YWo7fwlbQB8mEjaGuRC8s1y/hcRpqInuEE0T88YixOZ3HfVroQ0b8KSay4C/cJCKy8iSPoZEYnSCTHe0RXRRcVvtKcrEtV65K8AXmN7oN7hRXkdSJhJPgFsa/sDlWNsSkS13Wj7V5WyqxFh2SsBd9quLuWgKClyAmGqOQTY2HbjvBtJrySSxjrh0p+y/fPaebShbVRWG6byzgAY3N7cJd/t/OzYamsupK3i09vOv/BtIvHse8B/U1/vaH3bL1Ukjb1F0k9qhBUZzP9DlJFYS9I3bR/TVN4tEpY6U6i5aIzCm4k8jfcS2/udK+XbFiy8mPr8jG4etX22pP1tnyVpnxphtS80txWxm7gFWF3SDNtVlVOJ2lSHl9j870mqWpAU/8AgNZGAx3ZX+zJi4vmc7Vsrh2mbtzQwU14ZEOnebWyTrZyftL8QtZ0/RG7DjZIWsz1bUm0Sz5xi67xf0q7Ej6GG9wAvcVSKfByhDBsrA7VIWCo8oKiv1G1mGtNv043tvyoK9HVKN29AhVL3gAULu5yn04BLJN01MmSVMrlaUVLjbEXy3t8rp7K62xWaexuR8PVo2SVeRGUZbaI+1JLAtZKOAGqj2nYnooEeMxHVLOyAo5i7tMwM6pIvYe6orN9SH5U1MKkM2tubf62o5zOQ85P2F6LW9nKifvuSwA8VJSmqtvjEqngxIoNzZ+rDAh8lTFS3lvtae+1r3ZOwRF0Gb6uw0HLOgXd4kl5LOOCfSqwEf+qGZYs9pOxb2+8rDz+pKJJXW7DxNkn7En6sDcrzzcvYTb6PFwOblO/fBsDFZYGBGyZ+2X4TgKT3AhsSwQw1tM1AbltaBqKc+0PE9+AJxG9rXDKQUxnAbYS9vuOIrXXAtnV+tr0QtZ0/tjuRRN8pt1ruJnImOtvj6yvl3w18U9EQ5T7C5lvDQyUi6kpia10bzXEMUbFzBeBQGuaK9DDQDq9cuNYjbPW3A6sA+0hay/bXK8Y53KV/RHFIf9f2Hg3kDiay5i/sOvwc4v/5/ubvhJuBJYBOY5o/EoEETb+P08utm065k/mursvO8Jed91B2F/9BfK/GLEWukRpbZwHPkjRQBjJzl5bZkPrSMhDXg7kykMeLdCADLe3NrZyfRb5VfPoQ5t+2FMFJhOP4amJV9yLb289fangU5+NHKc5L4As1TnRJxxKNaXa1/UJJZ9lu1JhGIwmHrwTupHKHV0wym3eH4pbv05mVvqdz3ZU01ft8PnIX9DMnjXZ8YUQ9pSzGOt7ndecyd42tDlX+vzLWSsDqxG/xrrFe30f+FNuvrZUbBlN+Z9DW3tzW+am549P/W9IurotPb2svh6jn8nLbDyoKZZ1HlHZoylIe6Qz28xKV0Ri1z0C+VVEGe9B+xm0a0zxCXEjOYN6LSRPmdCsCAEfFy1pT2T2S9mAk8e//GsqNthqsrY30FiI0dV2iMc69tntX+vOTbxPRNtoCrNHCzFExd1ViV3aj7Xsanncu1CIDWSNFIzMDeQJpa29u5fykRe8hvDgAACAASURBVHx6oe38oX0pggckfYcRe/EDnRVzQ//HhGQgd9GmMc1MIopoVUb6GNR0anuuRsqRdBBhqqlhtzKP95R5NPXb/FTSoYQ55Q4iRv/DwE8rz/9eQgmdTeySvlcp3yai7RfFX/Fl2w8pSqB/iIblRhTZ8xsQJUA2lnT8AJFM0C4D+Szie9upJjDupDJob29u6/z8m6Q3MxJKVhvF0Xb+EJEL50m6lyhFcE8nSqWhqWBm1+NfNj2ppLXKw7ZO+LYRVW8jGtNcQVzU/7tC9gdE1MsJROLet6lzoI/W/L03mXG+lF3doYS5UkTxvjFNZbYPlrR1Od/KhEI9wdFtq4YHy47mYUKhbFgp3yai7X8JRXhqcdr+C/gJzUuzvKyzoOqY6KiPZILwFVzmwTKQ/0yYOjuLioNs3znAOAMz5X0GQ7A3r084/zrOz/1tN15ZKxLG9uw6/3dtN+4/23b+w0SVtdclHTnKn9xke62Rlog7EYpkoIiqcgGYy4HshqXA1dORTNLZtrdoeu5hocgL2JLoFncjcXGtMte1PP9WhN9lOvARwil9VIX8PkSryt2IqJ5ftQy5bkyJYOpOsPtK53mT75Hmro30VEZqczUO71W0Xv0g4Xd7GfBO27XtX1sx5ZXBRCHp6b2HGLmQTdTFvFWrxTbykqYx4oRvlH2qIbVKbOlA/gvQyVIV8KrOc9uDVN4cCEmXlLmfZ/vlkn7UCbWcCCR9xvb/tpB/o+3jhzmn+ZxrKN+jlnOYaxExEYuKKWsmKg66q4DuRjKNM4gl3URsw7vNQjUZyDcT9de7wzAb27vbzn+0YQeU6zBz7Jf0OWk4Pt9KZfap7U92jbEyIxFVtWF5bRzIvWaeKvPOEOnExj8o6aWEI3ci2bil/B7AuCiD7u9RGyStDuzD3Lv0PzYUf37ZHXRYv/N8vKK6pqwyIApavZpopnEOcFJlKNihhMPsL0QT9rObrmgLmxK5Cc8hMg1PdEVXJtrPvx87SHpyjZmqG9tfkrSX7W9VirbKPpV0AFE58zpgPUlXuq7S58AOZNu3VJxnHkoU1AW2L5L0G+L7NA043/bHK4bau9jLP0iYWT5UOY/eiJWHiTLpJ3nwJKxxRZH93s3DRPe/2iTKQTkWeB+xSNuQ8Ce9sKHsB2wfUaKKIHaq48qUNxOVCKBXEUW6zrJdW5PlqcRF/U1Eh68vDzCHTQnH4+W2a5yXrebfZXPv5nPAvpW2UhjZVTwHuK5mNSPpi8CJxI9oA8J+/xFolvSjeYt7VcXIK7Kv9yD6D3ciggYqGFdL91y7cwPUsCx3H3PjY1T6vg4nMnavIgIKnkvsWl88v7h3jd6M/im2x9ydSPr+KPKb216l6fzLWMcSfrvOe1iJSIhcyu2b/zQ5/0+B19m2IpHtp/P77HpkN7B9tfq0ovU4taCdsjuDsgJ9OXEhfyrwIyq3pYpeBq8nVvnXUaHNJS1PlCDYgoh++AwVZpZhzJ9YuVxLrMQhfoTLEdnMTRywJxE/uqNsn1fmdbrtbSrnMXD2aeE6STsxEtp6XSdSaayoJEkCDhuGfV/S04BVbF8m6QkNQ0y7d5PdhdUWb3jam2lhbuxiNZcMZiJX5Ezbu0mab+VVty+HMUyz2pPd1QiofBd3KOHWo1J8Bn1XxZU+g6WJ7961hDK9qxM2PNb3y/bV5X7cdwQdpqwyAO4i7HonEysJA1uURJEmmaPXEBfxk4hV/aPA0pI2bxjJcgdx8TqXsPeuT9gJmyaZtJp/YU0ikmlT4GjbsyRt2vQHYPsrJaZ7D0WrzB82PG/vOK3aDRJJe1uWW4eP0+CCWFZxd0jahAgtfbQcrwoRLuae9YhyBtOJnU4TpfhnSS+2fZHt+8pYL6V5x7u25sYOt0k6hAiPXJ+ooLo4kUy5wGhrZuvhYUkfYeQ9PFTew1jh2ueV+12I39SviZIk61Sef4HvPhYkU9ZMJGm30f5me0YD+VYRCP22g10DjLk6aDv/nrEeR3yRtwJWtT1a7Pv8xphG/Jie2dRUpZEyAPPQJqqpljIPGClJUO2E75h4uu4bRYMo6jF9g4jxv4eIqLod+B/b91bOYWBzY5HfhFgg3OSGobULE2Vhsj3lPQAn1/g7JP3c9pZdz5ua6kZd9bsi1HqimbLKIJmXsopaqWk0TsfOWfu3Pq/9HHAKsSJ7HrB9E4XSpUymEaayu4lcgTs8Tg1BuuYyi9iFfJ/IezjS9rYV8osRc7+7ONJf6gZNjvqYG2cCMxuaqLrHeRrwBuZuklTb4KdtD+hWKEqpvJKusiQ1F+PiN5lD7Ng3JPojjLna71qYbQX8jZGdxZNt1/a1mDBSGUxhFCUkTgEu6TJRLEtEQPyX7XeOIf9BorvZrYTtGqJ94WpEG8evNJzHJURxu47j7WLX9Z79NvBp27cpasx83HUdrk5z6UpWfAg/s/2apvJF7hmE3+eZhBP6Y7ZvrBmjZ7y5Vqnzed3DzG1ufOwH3dDc2BnnMiLZ6rGFQI39WgP2gB5Foa9IKPSqkMrizJ6r4ucAu+SNgbWAP9YqNEkzuxcAA/rPJoyp7DNIIgxuZ+BIRZy+CV/GacydkdkX21+W9BXCabsOsaI8F7jadauMo4j6MrcQNYaOqpCFuPh0CrPdCzy/Uv4/Og+KQqpqilLkbgR2rJUbAsPKMr7Z9rEt5AeqsdUVPfVtYOduhT7AHO6z/blaoVHMPM+S9KxKM89DGunpsCGDlYaZMKb8zkBzNxJfjPq2lQPFZyvqrX+a+NI8SlxIryDKWfyjcv4fIcLoNgS+2mRFtrBRTFTLA/e4vgfya4hkn87n+AXbjWvJS/ouUX66U/FzZTfoBVBkO6GVj2WQdx43WdlqpFrlXIeJC+Mzmr2D9kg6mzCv/KYcck2Eldr3gL6cKPj4z2LuucAVVU/LGD8lPsuqip/DMvMU39v2xM6i2mcx0aQyiEbir/YAfQCK/KDx2d8ELu1eeSjKAG9m+z0V578IeAXw8+K4bFVSYiIoK8F3EAXOOvbq2j7Obc4vwu7+n4SJ52eVO5s2524VSDDEeaze5/yNI33UvsZWK4VexmgVoz8MM08xF3Z/jxu3Pp1o0kwU7fbaaO+B4rOJqJu5Lvq2j5lflNAoPFJuLhe1CSl/20HSCrbvrhT7AZE09yngE0Rvg5pztqmFD7CV7Z9KWpswj90HXDiGTO8cesN5OzvE79ketbfAeF7w+yFpG9unEw7oXhqFKJfv3TdrdhK9ONp8Nmr12ef8G9m+kua5GaPRysxTFnhPJvxolxA+lEmjDBYb+yWLPM8nGolfWG61/7zbJB0i6Z0lTrtpfPZon33t/+QLRILWukTLvNpeBihKGCNpbUnfKnHuNfLHlfv3A8coskpreNT22USjl7OIHVYN3yYakS9GrE4b1bHvolO6YT8iGqiR47uHvxMNbg4inJiPEt+B8Sq2dq6kc7pusyQdWhTc/OjkUzzS59aIsou6Q9ImkqZJWkwjrSSbzn8DScdIOrvzHirEO9+Xl/TcXjyqRH92AGYTPrAbieiqGta3vQtwi+23VMpOOFN+Z2C7ae2Q0eTf1hWffWRXfPZbxxBdpSie3pX8CpXnP03STEbs7YOYNz5EXMj2I2oCfZ26QmOdOT/P9lYlOqiGqxUlIc4p0SW1PR3a1MIHeJKirMMjtn8hqbHPpov1bb+3PP6DpP+x/S5Jtf2cB+VXRA3/TkmPHYms9BnESrUvtjs9uM/t+dPD5fNsmny3Sbk9NjTNssc7DNzcphMx5JYF52w/XMzGfyF+l5tRt7KfU5Tg/cUpPZYiXqiYsspA0r62P6c+tVEqHWdPI740TwaeWbbdY8Zn235W7Zx7znskfRK2VNFqr4u2F8MHi5nkimIyqCnYh+33lYcHSFqOMNPUcEZRJj9U1KavjXH/HOHM/3QZp3GDni4ulHQq4bx8DnB+2SHW7lIG5aUuuRnFGfs12x9UhJ424QhCqV9PzP9e4PGSjrb97fkJSlqFsPcP3DKS9godSb8mwppvIC7EtxKtVL9o+5QG8m3NPG8mdqfvIqL0xq2E+TCYssqAEXto29ooJxNmhUYJVh36KaEODZXRAeX+A8TFqxMBMeoqcD4cRLuL4esJ38lNiizQt48l0E2fiKivE32lG2H7IEUG9Cm2v1Nz7sKLuj9zSbU7E2x/XFG08OlERFennERV4cMWHC3pF0RZ9VWBGUUZNW1f+Tei/WincuyJxP/1V8SqvS8aXsvIXoU+SKXR3xMRSZ1e3ocT38ULiHyasVjf9ksVWeRvkfSTyvM/SOyylyW6r21NfQvZicP2lLwRzqb/R/R+/R7wJcJGOK1ynBMGPP/q5bYGsXrsPF+9cpzz5/e84rPYkbgALw5sXCm/JdG79doi/41K+YuAxwHnlufnVMrvRrQqvLqcv9H/pHz2WxAOw83LbcvOPCrnsCpwCNHY5hBCOU7Ed3pFYPEBZH9JmAaXJMw9lzT5PgEX9py/6n9X5FYp51y+5fv/NREWDBFMcFl5fF5D+XOIlf1JxKr+msrz/4xQABeU52eN93egzW0q7wyOIgpaHQs8QFQcfGU5XuP8Wa5sT6vis90Vtifpnx68YNf5xWfQKc41SPTCMUTF1Z1sf0NRHqImmekTjIS3PiKptrFK24ioPWy/pKzoHpH0lIZyqxNOxmUIhyNEBMkgHbqOIpzYlxMX1RnU2cxbobnzZVTMhTXn35lY1Xbq+ryl7BDGyrd4kuYuhb5c57mblUHv3llsoujQNsjOAsI8c5gizPUBYK/yHppmYrc18yxl+wxFsTyY4Mi+WqayMljD4fnv5kpFElENA8XDd0VbKJ6OXARdUTHT9ieKeWJ15jZP1NCm0xfMezEfNCLq2QwWETVH0hPL+Zdi7u5zo+II6zxf0mc9WBPzbpa0fXF5fJGi0cx4chDwGtd3eeuEhr7b9rv7/PmGPse6OYkRRdr93DQrg/4yD6EZfXkPL7f9X33+3HSBdDdhGlubiCa6fv4vn4c/SPoooRDfP4D8hDKVlcHJxeF3HvBXYmfwMmKrNyZqH5/dqdff/byTxdqk7ebuto9UTwarmpfA7mbgTl+FVhdzt4+I+ijw43L+HwP7Vsq/SdI7iPDcB4iyBrUlLU6RdDqxQ9uQZjbqYXIx8O9BBG1b0lKSVnZl8qXbt4xstbPomoclrSdpSQ/emOgEwnF8ObFbOYHIKG46h3crkud+AMy2ffCA85gQpnQGsqLi4yaEmeB+wsbYKGFK0laO+v/zJIm5WQnspW3/tXbOXfJD64ykIXT6Kiuzqov5EJzoQ0HSpUQZirMJ89j3bL91gHFWInZot9i+c6iTHPvclwBPIfpcQMNyGF3yvyD+f3cS/5Mq+UHREJvRS7qayP79PQO8B0ln2N666/ks21s1kBt18Vaj0Caaqa4MnkOEU/6u69imruyZKmkZIoKgY+aZb3etIvNY2QhJh3ski7kKSd8iVoUX1/odOitBla5g3TR8D63CczVSAkGE7+axQm9N3ov6t1zsyNdcBM6z/XJJZxLRJ6fY3rCpfBljVSJPY20icelztm+tGWNRQnU5CiiKwnX/Dl9iu9ZkOxCSOqberYhFYadj3lNsj2k67VFouxH+o059qiqFNpFMWWUg6ctEKOMcYkX1Ntt3q7K2j6TDiHDC2xn5AozpR+hRBgPXE5K0JlFy+gXAswgTxw4NZT9i+wuaO2eh5j2sZPtORWevuXZUAyimVjWV1NU/eADZrQgH+sZEWYuTbB9ZOcZZzO1APrDN+6k477DyZVrVh5J0sO33l8dLAjNsv6lC/mTgo7Z/J2k74M1NLsQ9YzyR6EXe/R6aNJoaZqOogb+HE81U9hlMd2mAIml94ARJHx5gnGd6sEYqa0k6kPjSdh4DdXXoicJ4zyXKMM8mLkaNKIpAwO9sf77inB35jink093b66YMy4nemU6L859Z7i8ut0GYKAfysPJlWtWHAi5V9DTYv4z1xUr5txC5ElcRYbqDlAP/MWHnfx0R3tsoi75zwS8O7B2I5LtDibydWibt6noqK4Npkpaw/ZDta4rj9Bgi+7KGYyXtzdxlc5vYCbtXI2dVnrObjxC1/E8jTEVVEQzF8faclo6320sUxa8Z6SHc5DNo60TvmLdEOL8fM3c1MXP1nL+7BDVNzt9DrwO5quLmoHQp5IeJvJllGAlprDFRPGr7bEn72z5LUtPWpR2F+iMiiuwi4rvdKNmqJwDiFqK21JFEUmVtIMTjbR8uaVfb35P0+kr5gUKsu3ZlAtaVdDQjO+xJk4U8lc1EmxANPe7qOrY4sIPt4yrGOZmoZdIJ6Rt3O6Ei63cHIk786babxtl35Ns63nqdgOPyGRTzVj+amrlaOfH7jDeRDuRhdCrbp9xeBvzd/cM0e+W6+1h3x9W7iZmsXwBE1wC1gRA/IhTRl4id8touYasN5c+y/cqOybLzvIHcPOW/O9SaSyeSKasMhoWkU13ZInHI5z+OCIv9IxEWd7HtmydgHpsRWZ+nAKtOhh/BMJz45X3/s0R2fYGIyAE42vZ5w5vtmPM4oamvqMFYy9m+dxhjVZzzCUSY9mM7Gw/YTL7sVjYkzJ+Ne0FL+iFRXuZ9RHj06z1vLtIiy1Q2Ew2LByQdzNxmokZ14IfEf9v+W5sBJG1I2HqXJsox7GP7MxXy3yQqjW5u+yRF57Ax+/cuZKw5oNynGIlFfwGRxboE8E0ih2WB0mWiGCgTvmucuTr+SWq0su+S35z4LOYQZSkOcJQjb8osevoX11J8f2+lq2shdUmhbyNCrK8g/Bb/PehcJiOpDNrz8zbCknYnvsCPMGJnrLFXr1Uc34M2dgH4GnFB+4mjnMPmRHP3pjzb9hbFZACVTUYkbe1I418beD/wI49Ph6hhOPGneaRN6SG2/wSgKJw3HrR1HHc4iBYd/4hCh1vZ/puiHMQs6nxhA/Uv7mEGsBfw5wHlHwbuIXJtOg7ky+YrsQiRyqAltmeUyJEVYaBaJO8kWmQOWg5h4DrwXcj2fZI6NsPa78XfJW0KIGkjIou3hlb9FBTd5V7V9fxY2zs1EB2GE/9RSf9h+x8uDeXLxbBt161GdMxxkt5q+yhJGxPO1yMJh2xT2nb8EyNlQGojwSA+x5Oo7F/cwzVE4uigv6VBHcgdv8k04KlEmPWKwB01vreJJpVBS0rUxZZEjP+NREmAmiJvZwPPlnQ9Iz+Cmh9T6zrwRLnjk4nV8fHEhaSGtxOOxwcJxVS7vR6on4KkVxBRP+t0reqnEc7wMal1UI7CJ4FTi7nmDqIC55vL8fHkLUSy03sIU8fPiFDL+aKRxL1pRMe/gTKYiR3KGWVBIcLsWMPApRu63sPSwJ8kzS5/qn0PA9Xo6uQVSPo2sLPt20rexsdrxploUhm057W2X6iRLNYfVcq/oNw61HaIGkYd+J+W21qEI7qqOQ2wm+1O60gk7QkcViE/aHOZm4hV6FqEUoXY6h9Uce5W2L5A0huIuPz1CYWwgwdv8jIoT1S0K/27I6u8kUKtibYZY5yzGfkfNEZD6F88rPdA+xpd04kwb4jmQLX1rSaUVAbt6WytHyw/xqryzW2yFUuS1l9KfsB3ym0QTih+hv8r4x4PNEnDX4bI3n6DohGIiB/1DjRQBmU3AOGwu6I8XpFIGBoT27dI+hOw75BW+QPhaHhf2/d52LyfUEifKgq1UWOWEvzwE3eVfii7y9e7ZBQ3HGdQB/L6RPmH3gt606qnFJ/ZL/u8h81s1yS/tXUgHwCcKelR4rcw3rvDVmRoaUskbUA4nNYi6qCf5pG+svOT+5rtvdWnvk5ljP/xrkzb75J9HVGy91WMOMKnAcu5QUaxomzA9kRDj9OJH8BDwCzbY16MuvIEViEc4NcS2dR/6fYBNBjnG0SyU3fSW5Oks0WK4oDvDiQY0wkv6YJ+37fRjs9nnEvocSDbfsFYcj1jLE3pxwDQccY3kLuw3+5gtOOjjCGihEarJDFJjyPMTQNHRU0UuTMYkLL6mlbiyzchOkT9mLigjYntvct92y3uCpKuJbp8dRLGmn6hzyFWQX9iZCX/MJFENya2TyZKge/aHRNelEwT+d3L638CbFgimTotF2t4IqGQOgqsNqRw0qPB+/eOthqsXSW2ciCrT40vmv8PH6k8Pg+2LemO8lu+gpFFRU2xvd0I382Kkp4HHDes3I/xIJXB4HwH+DIRwfAdoqnH4whn6qiFrzpIei9w6hBWsG8dVND2A0SexCa2H+vuJelYoEk0TifBZ/fiQO2YifYgPo+mrEz0z72KSBZ6aoUstncvSmRF4C7bjS8CixCD9u/9qaRDiVpCdxDO9w/TvHdyh7YO5DVrdoM9/ELSvsCXbT+kyMj/ENFOtoZNyq1Drf9u0I57CwWpDAZnddvXlMfXuJRfkDSmiajwPuAVii5lZxB220a7ih6+1xtWSfMLeScaZ+1BonHKSuitxAW8U1foISJ5qIadiAvQJwgH9s41wpJ2Jvo3/5GIiPqm7WMq5zDZmVMU8/2SdiVKaY+J7YMlbU1czFcmVuYn2D6j5uQtHMidi+3NGqzGF0Sb0j2JqK7HA/8ifCZVgQRt/HeFgTruLSykz2BANErJZUnnu0EV07J6eIUiDX8botLis4iG4h+Zv/RcF/JdgI6JZhrwoibnL2OsTjSF747+eRi4zhU1eyRtbLtVco6klYks4D/WJj4Ve/VLbc8pNtsLau3Vk53y+d1DOPR3Jr5HjYrFDen82xJ5Ih0H8kG2T2sgdwT98yHs8a/xtQGxKBkogbOYmA4keiFcQTjRJ03SWu4MBudCSfsBX+ramn4EqGrI4aidciJwoiJrtemXrzus8iziy1sVVlkSlm4h+gA/g9gRTCNW+jUZwA9JOobBf0QfJt73VcBGRVHWlNR+tJz71nI/qVZkbZB0AnBpuf3V0QP7KxMwlQOIHsQPlgXOeUQl3bFYwxV9ExYwAydwFgf0uk0CLxZWUhkMzicJ23jv1rRpM+/39R6wPYfm5S2eUe4PZ+T/uDgR61zVaq+F87FD2yzo13Y70iVdBNQog3cD35S0LHAfUZJgqvBR4n/+GuATxTzxO+BS298ex3lcSXT7e5AoNtd0V/I8Sb3ftU5ZlvHO3h04gbM4oLclEv8mJakMBqREGRxGXXJVt/zVatd2c7QvauP47C4GdT52aJsF/ZCkFxIXlOnEDqcxjn4UbyAcyHcWpTolKAEIN0maSSQ5bULkeaxLKOlGSOot/fAwsfs8yfaoZSq6QqMfR+wwO6aqRr3EgSvb2uol7UKYFy/qOvYiYC3bNfkfbRM4l28R2TfhpM9ggtCQ2m4OaS7nECU0TiSigD5ke/0K+X2ArxJRVO8CfmX7HRXyqxEr3LWIC9AXmsaYF/k9CEf2LUQ/gRm2m+7QJjWSjiIqdD5AKNPLgd/UKkRJhxP9LK4iEsGeC1xP1M167TDn3HPec4egDEbLM7jI9osbyL+YKP3e6mKoPn0NPAlKuXdIZTBkJC1j+/4Gr3vM0awovft1wnn1+SbKQHM3FenwCLBfrdNqop2PZQ5PY8SBXJWwUxzIL7b9aAkxvWiqOJAlfYTYBUwD7iKqbF5me/Z8Becd5+e2t+x6fqbtV1UERDzWD6LYz79re48Gcq0bDI2mUJoqGkVjnxcQK/qTgLNcUexO0ja2T5c0j+/D41vOvhVpJhqQ4rh7c/cWWtIzibIEm4wqOEKrtpujfPmXJeLDG/dklvRk4H7bDxcn8g3EirCJ7DOJncADwPFEjaEnESv70yvmcADwPCKscD1JV7muYuXFwCZla78BcHEJsxykl/KkwvYXOo9LXPsORDDCaraXqxjqNkmHEHkz6wO3FsX6x4by3S1HXb5LY9JWERT+IGknl6qx8Fi48R8azuF9RWYjIqrvY4oyJz+xfUKDIR7puZ+U5M5gQCT9P+JC+Abb90vaiii2tku3D2A+8kNpu9ln3MbbbkWJ3ucRjudbidpE9wMbuEHmZLEXf5hwGB5ORCH9g1hZvbBiznOtPlVfCuHcUf7k8Ta5jTclR2DjcluRyCa/lHAgV/WEKN/JNYGbBthdnkD0MLiEWGVvY/sNNWMMSnGa7w+8kJHd8iXAgbb/WTnWEkR5lg8SHfv+s4HMFxn5zCeNWaiXVAYtKE7PLxI/ghcCOzYxEQ3p3L0XuccT0UAr2W5UYKtjay2r6Gtsr1eON91ed7eN7DZ7Vfk9JH2LqC10JbGyfxnRx3ZK1hiqQdInGbkQNXXa9hvnacAbmLs2UOM4/xJOuifwn0Q00/dc0XJymEhayRU9qBU1kf4L2I4Irz6TcJxfM1/BEfnNicCHjQmf1Z2Eue5XblCnbGEhlcGASPoUsQp5FtHP4FBKFEyliWPQ8/em+/+LMO+c1tQRVlbUmxM//rPL48WIlX0TZXAzkfAmRpLfBLzFduM2khqwsX2JgPma7QckvZbIYH4IOLjh9j4pSLqMyE94zF/j+ob0czV5qgkCGCYDLEbOJ/o/nGT7xpbnXp2oHvsuomDdym3GG09SGQyIpFHt8rU/oomiywnd6dDWedzIvDKMz6A4Gz/iuiSzjuxj5iRJvyPME38Hzm0SRZKMIOmEJqbB+cjP0+TJdk2Tp6Eh6azxPHdZmK1OLKT+RER0XWH7tvGawzBIB/KA9LvYSdrL9rcmYj6D0DakbxhKrzgbnyNpSUdfhhqmwWPRWLfYvq88X6SdxguI5ST9GvhNeW7Xxci3bfI0NCZACa1I5Fn8m4jKu7vcTypSGQyI5u5D0FlZryvpTTXOzwQIP8Gtkn7PSLJOk8/wxLK7WQnYGx6zfbfp5TupUJREucD2RZJ+Q5Qfnwacb7um7WLbkhCtmjy1QZFg9mEiqu1ooujeUsBh4xHaaXuvMo/HEZFYLyIy4he3veGCPv+wSDPRgEj6APGPP8r2eeXY6ba3Ged5rE8kgjuECgAAClpJREFUXHU7/ias1ksx+7zYXV2nFvD5nkRkcT9Ynj8eWNJRnnuRp8dU9pjjv5Mn0EB+KDHyGrDJ0zCQ9AuiSdOTCd/X2sQq/aKaqLYW538W4TzehIiog8hZuNRdfT4WdnJnMCC2v1LC0PaQ9E7ghxM0lRlELZ4/tx1I0ipEnPVrXFFwq6yIXkVEZKxMmBrGVAaSdrd9ZJcz/jGaOOGL49nlce+fF5biZwua7kzj13c9btpTuGNS642RbxqE0Gldeh+xQ/sHJRJsHPmno9LtHZL+0AknlVRrdhyUfYnSFUcDH6hJWFuYSGXQgpJwdoiiS9MuxGpgvLmGyDgd6AtYEsdeT6xq1idWdf+voewbCQXwBCK89j9tb1Fx+k7f495euU23qweU+w8AvyTaXm5EbNOnCn+W9GLbF3X5TF5K8251s8r9DEnPJXJG5tGs8+FmIoyyO1GxtlNZW9aV1Ilke3b34/E4ue0xm1lNBtJMNMkpWbcrAZ3yA03t7RQb86WEbfWSWjOXpBuI6qaH2P61pJm2t618C93jDboz6U1aa1RCYVFAkXX+DWJHdg/hzLwd+B/b91aMcyqxu+yElrpJnoGkjYk+2M8BfgucaPvyqjfREvWpCdRhMieBjTepDKYwimqP2xIhcTOJ7OmqSIzis3g9kcm8HtH28xLb/24o329ncrHtf1TM4UAi6adTSuHXlc7TSU9JHFwBuNtRo+mlNRnIkk6z/eqWc9iUqJR6edPEx2Gg6Df8e9v/kLQi8H5iZ/B1T8LG9BNFKoNJSlt7e89YSxHN5F8LLAdcZbu2hy2S1iJMTNs2TFprtTPpGeupREP1W2qyTxdV1FN4rsHrf0hkzna3nRzTgSxpeSJzdwsi8XEmMHM8s48lXQy8pCjBnxOlUe4GPmp7q/Gax2QnfQYtkbQ7Ec3zCBUJW0NgNHt7NcXhdhJwUnGKf3TAof4N/JPmoZ2fI3Yme0tah4jVrqbsTnaj2LslTWhE1SSlN/Kn6SrxDqKMyLnE/319YP3yP1jgmfiFh4oieArwVNs/ApD0sXE6/yJBKoP2vJMIpRzXCALbV5f7xxK/Bk16K9FAryR2Bp1ooKay/cw8r5+vUMHReOT7XTuTWyX9FLi6cmcytIiqyUa/nSGxKGlUNbSL9Wx/uGvcphfSCcky7uEfZVH2AuAEAEUL2SdM6KwmGWkmaomkzwLHEdEUne31As+A7Ul6g7gArAtcX+FA7o0GelNNNNAwzTxdY04DNrfdtP0nkmYAe0zWkL42tC0JImkNQnF8iajUCbFI3Ldthvp4UXJNdiVabh5t+5ES8rqh7VMmdnaTh1QGLdG85ZPHxUw0jKS3ttFAw3BAD4M2EVVTnaJMXk6YOo8kFhUPA+fZvmTiZtacEkrbzT+BGzxOFYQXFVIZTGI6SW/AS4mkt3fVrszbRgOVMYbigE4mjmIqXIq5M9knpOpoLZq3gu+SRL7Jj21/bwKmNClJZTAgkr5me+8+5hrGe1VaTCu7AM+0vU+LcaqigUYZYwkiiuNTFTJPJnwNywL7EY1RTq2Qn8dR2SRGPhmhJE4+ncgz6ARCTFonfAm1Pd99eiMn/UkH8oDY3rvcT9iXTdLzGelQdh9wTpvxHI1kvlhuNfMY2AFdOAb4FtG/+RFJ7wMaKwOgYxsX0ch9XDJPFzHWbFLLaLJQoosmehqTilQGAyLpvcCpnqBOXJIOJy5+/yaSjW4H/irpDbb3HKc5tC1H0WEp22comrtDXTmEXkfpeSXWPGmARjrm3Sxpb+bOM2i1uBgv+kRULUkUjDtmYmY0OUllMDjvA15Rkp3OIJpnXzuO51/bI20mr3XpN9vHob0g+QzhgP5qcUBvP+A4f5D0UaKm/vuZu87NmEj6PiONeZ5KNBhJmtHZ2d5G5Gl0NwWaFMqAeXNt/gUcVFOOI0mfwcColAtW9H7dhqip8yzgHNsfmb/0UM5/se0Xlcf/Zftn5fF5tl++oM/fNY/WDugyzmsI887vOu+lQrZTm+ZR4K+eIuWrk2SYpDIYEPVpGj9IjHyL8z+HuHA+0nVsCWDriYqtHqAcxaghuDUmCkmrEo7nZxAtFz9n+9am8gkoupytBtxA9AO4lQjR/GLG6k8NUhkMiKQNOlnAyWD0CQns0KhiZtc4ZwH7E71nNwYOHKeSIIsMpTbRHrYfLLvdw4ld3gW2p0/s7JLxIH0GA2L76rI6f8T27zrHJW1q+1cTOLVJg+1Pdh4r2lWuAdw8QKXJJW1fXB5fpOh2ltTxTCLH4MFyv3ZRDH+f2Gkl40UqgwGR9GUi63VOKZD1Ntt3E8XXclVagaQDCJ/DdcB6kq6sTFo7RdLpRAnrDYEqn0MCwLuBwyQtTfQS3kvS4sB4FZtLJpg0Ew2IuhqoFCfq14mm3J9PE0Udmrc5zWN9fSvGWAlYndhZ3DXsOSbJok7uDAZnmqQlbD9k+xpJryPimp8z0RObhFwnaSeiFPIG5fla8FgiXF8kvRq40PZfgaUpTU0kfdr2deMw70nPwpRJn0wsuTMYEEmb0LMKLdvqHWwfN3Ezm3woGtv3Y74lESRdYvuF5fEvgb2J1o/fmywVNxdWJL2sSdXTZNEhdwYDYvvSPsceIcpZJxXY3r2E5a4I3GV7TkPRh+Ax5/NiHcd9liEYCv/LSJmPZAqQyiCZcCTtQZRQvgVYXdIM299tIPpnSZ8knM9Hl7GWApZYUHNNkkWVNBMlE46kS4hucY8WU9tFtl/QQG5xonT2g7bPLcdWBla3/csFOulFhPl0StvZdm23tGQSkzuDZGHgYmCT0qRmA+DiUoJ4vl3jilnutJ5jdxB9eZNmjNZDu3Vv7WRykTuDZMKZT3G9cekalyRJKoNkIaPsCF5s+4JKuacBq9i+TNITbD+4YGaYJIsmaSZKJpxRmuM0VgaS9iMqpj5L0nTgRKKSbJIkDUllkEwYQ2yO86pSTvzc4oTOaKIkqWSxiZ5AMqX5DJEr8FnbhxFd2wbhIUmrAC5lKQYdJ0mmLOkzSCaUYTTHkfQMQrE8E/gd8DHbNy6A6SbJIksqg2ShobY5Th95Ef0MrrH9r2HPL0kWZVIZJJMeSWfb3qIkUK0IrGr71RM9rySZTKTPIFkU6HyP17D9DqI5S5IkFaQySBYFbpF0JjCrFLx7ZCyBJEnmJs1EySKBpGm25xS/wdK2H5joOSXJZCJ3BsmkR9LmwPmSzgcuJJzISZJUkDuDZNJTqp5uZftvpYfvrCZVT5MkGSF3BsmigIBOddNRq5wmSTI6WY4iWRT4OHCGJBOKYf8Jnk+STDrSTJQkSZKkmSiZvEh6pqSvSvr/7d2hDUJBEEXRdzugAwIWg8bg6YcCoA+aQJMQQht0gEYhBgEkGASGn0nuUZOsGfeyO5vdDTAD9sARWA3dm9SNOwO1BZyTrJOMkuySzJPckhyqajFkb1I3zgzU2f391zFwqarrq/ZdIulHhoE6mwLbPIfG4496MmxbUj8eE6ktYPltrapO/+xF6s4wkCR5m0iSZBhIkmIYSJJiGEiSkjwASK0e35hvxmwAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "product_group = all_data.groupby('Product')\n", - "quantity_ordered = product_group.sum()['Quantity Ordered']\n", - "\n", - "keys = [pair for pair, df in product_group]\n", - "plt.bar(keys, quantity_ordered)\n", - "plt.xticks(keys, rotation='vertical', size=8)\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 75, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\keith\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:16: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", - " app.launch_new_instance()\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAcAAAAF2CAYAAAD5tkgbAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOydd5hU5fX4P2dZem8iHQREEel21xrrz1hiRBEEjQkaNTFGY0nidzIaE3uNYrCCqFgT0WDBDvZFAStSREEQlt7Lsuf3x3uHHZbZ2Xunz875PM88M/ede957dnZ3zn3Pe4qoKoZhGIZRaBRlWwHDMAzDyAZmAA3DMIyCxAygYRiGUZCYATQMwzAKEjOAhmEYRkFSnG0FMk1RUZE2bNgw22oYhmHkDQ0bNmTFihXLVbVttnVJJQVnABs2bMiGDRuyrYZhGEZeISKNanj/YeAkYJmq9vXGngJ6e6e0AFar6gAR6QZ8Dcz23vtQVS/0ZAYDjwINgcnApZqmfL2CM4CGYRhGWngU+BcwPjKgqmdGXovIbcCaqPPnqeqAGPOMAUYDH+IM4PHAy2nQ1/YADcMwjORR1XeBlbHeExEBhgJPxptDRNoDzVT1A2/VNx44NdW6RjADaBiGYaSbEmCpqs6JGusuIp+JyDsiUuKNdQQWRZ2zyBtLC+YCNQzDMPxQLCKlUcdjVXWsT9lh7Lz6WwJ0UdUV3p7ff0VkH0BiyKatXqcZQMMwDMMP5ao6JKiQiBQDvwAGR8ZUdQuwxXs9XUTmAXviVnydosQ7AYuTUToe5gI1DMMw0snPgG9UdYdrU0Taikgd7/UeQC9gvqouAdaJyIHevuFI4IV0KWYG0DAMw0gaEXkS+ADoLSKLROR8762z2DX45TBglojMBJ4FLlTVSADNb4EHgbnAPNIUAQoghdYOqXHjxmp5gIaRe8yaBbvtBrvvnm1NjFiIyEZVbZxtPVKJrQANw8gJTjoJ/vSnbGthFBIWBGNkFAnHCvKKj4YKy0tRiFRUwOLF8PHH2dbEKCRsBWgYRtZZtQq2b4dvv4W1a7OtjVEomAE0DCPrlJVVvv7ss+zpYRQWaTOAItJARD4WkZki8qWIhL3x7iLykYjMEZGnRKSeN17fO57rvd8taq5rvPHZInJc1Pjx3thcEbk6XT+LYRjpJdoAfvpp9vQwCot0rgC3AEepan9gAHC8iBwI3ATcoaq9gFVAJFT2fGCVqvYE7vDOQ0T64MJo98EVRb1PROp4OST3AicAfYBh3rmGYeQZy5ZVvp4+PXt6GIVF2gygOtZ7h3W9hwJH4fI+AMZRWej0FO8Y7/2jvUTIU4CJqrpFVb/D5Ybs7z3mqup8Vd0KTPTONQwjz4isAAcPNgNoZI607gF6K7UZwDJgCi6pcbWqlnunRBc67QgsBPDeXwO0jh6vIlPduGEYeUbEAB5/PMyeDevWZVcfozBIqwFU1e1ev6dOuBXb3rFO856rK4IadHwXRGS0iJSKSGl5eXmsUwzDyCJlZdC8ORx4IKjCjBnZ1sgoBDISBaqqq4G3gQOBFl5xVNi50OkioDPsKJ7aHNdbasd4FZnqxmNdf6yqDlHVIcXFlvpoGLlGWRm0betcoGBuUCMzpDMKtK2ItPBeN8QVRP0aeAv4pXfaKCoLnU7yjvHef9NriDgJOMuLEu2OK5r6MfAJ0MuLKq2HC5SZlK6fxzCM9BExgO3bu4dFghqZIJ3LofbAOC9aswh4WlVfEpGvgIki8nfgM+Ah7/yHgMdEZC5u5XcWgKp+KSJPA18B5cDFqrodQEQuAV4F6gAPq+qXafx5DMNIE2Vl0K2be22BMEamSJsBVNVZwMAY4/Nx+4FVxzcDZ1Qz1w3ADTHGJwOTk1bWMIysUlYG++3nXg8aBJMnw4YN0LhWlV42cg2rBGMYRlZRrXSBglsBVlRYIIyRfswAGoaRVVavhvLynQ0gmBvUSD9mAA3DyCqRHMDddnPPHTpAu3ZmAI30YwbQMIysEjGAkRWgiFsFWiSokW7MABqGkVWqGkBwBvCrr2DjxuzoZBQGZgANw8gqsQzgoEEuEGbmzOzoZBQGZgANw8gq1a0AwfYBjfRiBtAwjKxSVgZNmkCDBpVjnTo5g2gGMH8QkYdFZJmIfBE19jcR+VFEZniPE6Pey3qfVzOAhmFklegcwAiRQBgzgHnFo7ierVW5Q1UHeI/JkDt9Xs0AGoaRVWIZQKgMhNm0KfM6GcFR1XdxZSz9kBN9Xq01ghEICcfqQhUfDcXsUmUYgOsG3zFGJ8/Bg2H7dpg1Cw44IPN6GSnjEhEZCZQCl6vqKlzv1g+jzonu51q1z2vafvu2AjQMI6uUlVUmwUczaJB7NjdozlAc6avqPUb7kBkD9AAGAEuA27zxpPu8pgJbARqGkTWq1gGNpksXaN3aDGAOUa6qQ4IIqOrSyGsReQB4yTuM18/VV5/XVGArQMMwssa6dbB1a2wDaIEw+Y+ItI86PA2IRIjmRJ9XWwEahpE1YuUARjN4MNxyC2zevHOahJF7iMiTwBFAGxFZBISAI0RkAM6NuQC4AHKnz6sZQMMwsoYfA1heDp9/Xtkv0MhNVHVYjOGHYoxFzs96n1dzgRqGkTX8GEAwN6iRHswAGoaRNWoygF27QsuWZgCN9GAG0DCMrLFsmXuuzgBaIIyRTswAGoaRNcrKoGFDaNy4+nMGD4YvvoAtWzKnl1EYmAE0DCNrVJcEH83gwbBtmwuEMYxUYgbQMIysUV0SfDSRQBjrEG+kGjOAhmFkDT8GsHt3aNHC9gGN1GMG0DCMrOHHAIq4uqBmAI1UYwbQMIys4ccAgnODfv65K5tmGKkibQZQRDqLyFsi8rWIfCkil3rjKesQ7NWL+0hE5ojIU17tOMMw8oANG1yvP78GcOtWFw1qGKkinSvAclzvp72BA4GLozr7pqpD8E3eXL2AVcD5afx5DMNIITUlwUdjFWGMdJA2A6iqS1T1U+/1OuBrKhsexiJQh2AREeAo4FlPfhxwanp+GsMwUk1NSfDR9OgBzZtbJKiRWjKyBygi3YCBwEfe0CUiMktEHhaRlt5YR3btBNwxznhrYLWqllcZj3X90ZEmjuXl5bFOMQwjwwRZAVogjJEO0m4ARaQJ8BzwB1VdS+o6BPvuHKyqY1V1iKoOKS62BhiGkQtEDGBNifARBg2CWbNcUrxhpIK0GkARqYszfo+r6vPgOgSr6nZVrQAewLk4ofoOwdWNLwdaiEhxlXHDMPKAICtAcPuAW7bAl2nrDmcUGumMAhVcL6ivVfX2qPGUdAhWVQXeAn7pyY8CXkjXz2MYRmopK4P69aFJE3/nWyCMkWrSuQI8BDgHOKpKysPNIvK5iMwCjgQuA9chGIh0CH4Fr0Owt8cX6RD8NfB0VIfgq4A/ishc3J5gtc0XDcPILSI5gBJrMyMGPXtC06ZmAI3UkbYNMVWdRux9umo7/QbtEKyq86l0oRqGkUf4TYKPUFTk9gEtEtRIFVYJxjCMrBDUAIJzg86cCRbMbaQCC4k0DCMrlJVBr17BZAYNgs2b4auvoF+/xK8tYZ9+1yg0FDPI3MhjbAVoGEZWWLYssRUg2D6gkRrMABqGkXE2bXK1QIMawD33dFGjZgBzD6+wyTIR+SJq7BYR+cYrfPIfEWnhjXcTkU1RAZL3R8kM9gIl54rI3V5GQVowA2gYRsYJmgQfoagIBg40A5ijPIqr4xzNFKCvqvYDvgWuiXpvXlRN6AujxscAo3GpcL1izJkyzAAahpFxgibBR2OBMLmJqr4LrKwy9lpUucoPcQVLqsXLE2+mqh94ud7jSWONZwuCMQwjEKkIIEnWAG7aBN98A337Bpc3EqZYREqjjseq6tgA8r8Cnoo67i4inwFrgb+q6lRcPedFUedUW+M5FZgBNAwj4yRjAAcNcs/Tp5sBzDDlqjokEUER+QuuRd7j3tASoIuqrhCRwcB/RWQfAtR4TgXmAjUMI+MkYwB794bGjW0fMF8QkVHAScBwz62J1/Zuhfd6OjAP2BO34ot2k6a1xrMZQMMwMk5ZGdSt63r8BaVOHRgwwAxgPiAix+NKVp6sqhujxtt6zc4RkT1wwS7zVXUJsE5EDvSiP0eSxhrPZgANw8g4ZWXQpo3/OqBVGTwYZsyA7dtTq5eROCLyJPAB0FtEFonI+cC/gKbAlCrpDocBs0RkJq6p+YWqGgmg+S3wIK4p+jzg5XTpXO0eoITlF/EENeTaGxmGYQQlkST4aAYPhrvvhtmzoU+f1OllJI6qDosxHLNBgao+h2uVF+u9UiAju7vxgmB+7j3vBhwMvOkdHwm8DZgBNAwjIRKpAxpNdEUYM4BGolTrAtWQnqchPQ8XgdNHQ3q6hvR0YJ+MaWcYRq2krCx4Enw0vXtDw4a2D2gkh589wG4a0iVRx0tx0TqGYRgJkewKsLjYAmGM5PGTB/i2hOVV4EncavAsXCd2wzCMwGzZAmvXJmcAwblBH3nEBcLUqZMa3YzCosYVoIb0EuB+oD8wABirIf1duhUzDKN2sny5e06FAdywAb79NnmdjMLEbxrEp8D/NKSXAa9KWJqmUSfDMGoxySTBRxMJhLEO8Uai1GgAJSy/weVp/Nsb6gj8N51KGYZRe0mVAdx7b2jQwPYBjcTxswK8GDgEV7AUDekcXGqEYRhGYJYtc8/JGsDiYujf3wygkTh+DOAWDenWyIGEpZg0Fic1DKN2k6oVIDg36GefQUVF8nMZhYcfA/iOhOXPQEMJyzHAM8CL6VXLMIzaSlmZi9ps2TL5uQYPhnXrYM6c5OcyCg8/BvBqoAz4HLgAmAz8NZ1KGYZRe4nUAS1KQSXi6IowhhGUuHmAEpY6wDgN6QjggcyoZBhGbSbZJPho+vSB+vVdJOjZZ6dmTqNwiGsANaTbJSxtJSz1ovcB/SAinXHt7HcHKnDdg+8SkVa4rsDdgAXAUFVd5bW+uAs4EdgInKuqn3pzjaJy1fl3VR3njQ8GHgUa4laml0b6TRmGkZuk0gDWrZufgTASDt4GQ0P21ZZq/FSCWQC8J2GZBGyIDGpIb69Brhy4XFU/FZGmwHQRmQKcC7yhqjeKyNU4F+tVwAm4nlC9gAOAMcABnsEMAUNwwTfTRWSSqq7yzhkNfIgzgMeTxtYZhmEkT1mZK2OWKgYNgieecIEwqXCrGoWDnz+XxcBL3rlNox5xUdUlkRWcqq4DvsblEJ4CjPNOGwec6r0+BRivjg+BFiLSHjgOmKKqKz2jNwU43nuvmap+4K36xkfNZRhGjpLKFSC4fcC1a2HevNTNaRQGNa4ANaRhAAlLYw3phprOj4WIdAMGAh8B7byuv6jqEhGJ5BR2BBZGiS3yxuKNL4oxHuv6o3ErRerVq5fIj2AYRgrYtg1WrUq9AQTnBu3VK3XzGrUfP5VgDpKwfIVbwSFh6S9huc/vBUSkCa7x4R9UdW28U2OMaQLjuw6qjlXVIao6pLjYj9fXMIx0kKo6oNHssw/Uq5d/+4BG9vHjAr0T54ZcAaAhnYlrZ18jIlIXZ/weV93RQX6p577Ee/bqQrAI6Bwl3gnnfo033inGuGEYOUoqk+Aj1KsH/fpZTVAjOL62jDWkC6sMba9JxovqfAj4WnWngJlJwCjv9SjghajxkeI4EFjjuUpfBY4VkZYi0hI4FnjVe2+diBzoXWtk1FyGYeQg6TCA4Nygn34KFgNuBMGPP3ChhOVgQCUs9YDf47lDa+AQ4BzgcxGZ4Y39GbgReFpEzgd+AM7w3puMS4GYi0uDOA9AVVeKyPXAJ95516nqSu/1b6lMg3gZiwA1jJwmYgCT6QYfi0GD4N//hvnzoUeP1M5t1F78GMALcfl5kaCT13AFsuOiqtOIvU8HcHSM87W6eVX1YeDhGOOlQN+adDEMIzdI5woQ3D6gGcDsICIPAycBy1S1rzeWsrzvdOAnCnQ5MDxdChiGUTiUlYEItGqV2nn79nVJ8dOnw9ChqZ3b8M2jwL9wKWkRriZ1ed8xEaEl0AHYBCxQxXdp9GoNoITlHuJ0fdCQ/t7vRQzDMMAZwNatXTHsVFK/Puy7r0WCZhNVfddLeYvmFOAI7/U44G2cAdyR9w18KCKRvO8j8PK+AbziKccDT0ZPKkJznMdwGFAPV6+6AdBOhA+B+1R5qyad4wXBlALTvUkHAXO8xwB8BMEYhmFUJdVJ8NH07QuzZ6dnbgOAYhEpjXqM9iGzU943lb1kg+Z9V+VZ77wSVXqrcqgqQ1TpjIszOUWE82v8gap7Q0Nevc2wnAscqSHd5h3fj9sHNAzDCEQ6DWDPnjB+PGzaBA0bpucaBU65qg5J0VxJ5Xerckx1E6syHbd4qxE/aRAd2Ln0WRNvzDAMIxDLlqXXAIKLBDVyhlTlfdeICF1E2CuIcn4M4I3AZxKWRyUsjwKfAv8IchHDMAxI/woQYO7c9MxvJERK8r5jTSzCP0Xo470+HZgKPCXCDX6Vq6kfoACv4/LrDvCGr9aQ/uT3AoZhGADbt8PKlWYAaysi8iQuiKWNiCzCRXOmMu+7Kieoco33+jKcsZyLW6T9xY/ONfUDVAnLfzWkg7EqK4ZhJMGKFa5SS6qT4CO0bOnSK8wAZgdVHVbNWynJ+45GhBDQXoQwLgq0B3Ambg+xuQj/B7ytyrvx5vHjAv1QwrKfj/MMwzCqJV1J8NH07GkGsBBQJYxLqegK7AOMV+U64J/Aj6pcV5PxA3+VYI4ELpSwLMA1xBVANaT9EtTdMIwCJFMG8P330ze/kVP8ClcDeiuVyfddcEbQF34M4AnB9TIMw9iZTBnAiRNhyxaXHG/UXlTZgKsgEz02F7cP6As/BnAP3BJTga80pDVm1xuGYVQlUwawogIWLIDevdN3HSO7iDAWuEeVz2O81xi3H7hFlcfjzROvFFpH4HlgMy6pUIChEpabgNM0pD8mob9hGAVGxAC2bp2+a0RHgpoBrNXcB1wrwr7AF1SWQusFNMMF0cQ1fhB/BfgvYIyG9NHoQQnLSO/ipySktmEYBcmyZS5Ss27d9F3DUiEKA1VmAENFaIIrnN0eVwz7a1V8F8SLZwD7aEhP2+XCIR0vYfGVY2EYhhEhnUnwEdq0gWbNzAAWCqqsx0WDJkS8NIiY9dolLEXVvWcYhlEdmTCAIpYKYfgnngF8UcLygISlcWTAe30/LovfMAzDN2Vl6UuCj8YMoOGXeAbwSmAN8L2EZbqEpRTX0XctcEUGdDMMoxaRiRUgOAO4YAFs25b+axm5gRf5GZh47ZC2AVdIWK4FeuKiQOdqSDcmpqJhGIVKRYUrhZYpA1heDj/8AD16pP96RvYQ4WDgQVyXoi4i9AcuUOUiP/I15gFqSDfBrrkWhmEYflm1yhXDzpQBBOcGNQNY67kDOA7XXQJVZopwmF9hP7VADcMwkiITSfARLBWisFDdqYM8wHa/sn4qwRiGYSTFMq8NaiYM4O67Q+PGZgALhIWeG1RFqAf8Hvjar3CNBlDC8hwuq/5lDWlFwmoahlGwZHIFaKkQBcWFwF1AR1w3+deops1SLPysAMfgmhXeLWF5BnhUQ/pNAooaRtJIWALLaEjToIkRhEwaQHAG8MsvM3MtI3uoshwYnqh8jXuAGtLXNaTDgUG4NIgpEpb3JSznSViqLWokIg+LyDIR+SJq7G8i8qOIzPAeJ0a9d42IzBWR2SJyXNT48d7YXBG5Omq8u4h8JCJzROQpEakX/Mc3DCMTRAxgmzaZuV7PnjB/vgu8MWovIowToUXUcUuR+M10o/EVBCNhaQ2cC/wa+Ay35BwETIkj9ihwfIzxO1R1gPeY7JSWPsBZuK4TxwP3iUgdEakD3ItrydQHGOadC3CTN1cvYBVwvp+fxTCMzFNWBs2bZ65FUc+esHUrLFqUmesZWaOfKqsjB6qsAgb6Fa7RAEpYngemAo2An2tIT9aQPqUh/R0u9yImqvousNKnHqcAE1V1i6p+h+vntL/3mKuq81V1KzAROEVEBDgKeNaTHwec6vNahmFkmEwlwUewSNCCoUiElpEDEVoRILjTz4kPakh3Kn0mYamvId2iIR3iX88dXCIiI4FS4HJVXYXbwPww6pxF3hiwU4jrIuAAoDWwWlXLY5xvGEaOkU0DePTRmbuukXFuA94X2bEYOgO4wa+wHxfo32OMfeD3AlUYA/QABgBLcMqDqzJTFU1gPCYiMlpESkWktLy8vLrTDMNIE5k2gB06QIMGtgLMFCLSOyq2Y4aIrBWRPyQS9xEEVcYDpwNLgWXAL1R5zK98vIa4u+NWVQ0lLAOpNDrNcO7QBJTVpTvmF3kAeMk7XAR0jjq1E7DYex1rfDnQQkSKvVVg9PmxrjsWGAvQuHFjCwk0jAxTVgb77Ze56xUVuSowZgAzg6rOxi1s8GI3fgT+g8sguENVb40+v0rcRwfgdRHZU1V9hS2J0EyVtZ7L8yfgiaj3Wqn6236L5wI9Dhf40gm4PWp8HfBnP5NXRUTaq+oS7/A0XCdfcGVsnhCR23EfRi/gY5zR7SUi3XEf6FnA2aqqIvIW8EvcvuAo4IVEdDIMI81o5leAYLmAWeRoYJ6qfu/CNWKyI+4D+E5EInEffr2LTwAnAdPZ2fsn3vEefiaJVwx7HDBOwnK6hvQ5n0pVaiHyJHAE0EZEFgEh4AgRGeApuAC4AEBVvxSRp4GvgHLg4sidgIhcAryK60H4sKpGsnuuAiaKyN9xkakPBdXRMIwMsLkF5eXZMYCvveYKcRdZ0cdUUCwipVHHYz3vWlXOAp6MOg4a91EjqpwkggCHq/KD75+gCvFcoCM0pBOAbhKWP+6iQEhvjyEWpaAOizFcrZFS1RuIsXnppUrs0n9QVefj7hgMw8hlNjjLlw0DuGkTLFkCHS1ELhWUq8YPfPTysU8GrvGGxgDX4xY91+PiPn5FwDiOWKiiIvwHGBxELpp490WR/kpNgKZVHtWmPxiGYezExuwZQDA3aIY5Afg0Eu+hqktVdbuqVgAPULloiRf3EYQPRUh4dzmeC/Tf3svXNaTvRb8nYTkk0QsahlFgeCvATHSDjybaAB5+eGavXcAMI8r9mUDcR1COBC4UYQGwAW8PUJV+foT95AHeg6v6UtOYYRjGrmRpBdi5M9StW1grQFVXDDwbiEgj4Bi82A6Pm4PGfQTkhGR0jrcHeBBwMNC2yh5gM1xAimEYRs1kaQ+wTh3YY4/CMoC9e8OwYRAOZ/7aqroRV6QkeuycOOfHjPvwgwgNcJ0geuIatj+kSuAk73grwHq4vb5i3L5fhLW49APDMIya2diWJk1cYnqmKaRUiCVLYM4caNGi5nNrAeOAbbgynZFa0ZcGnSTeHuA7wDsSlkc1pN8nqqVh5BLWTikLbGib8dVfhJ494Z13susazBTTp7vnIYkUqMw/+qiyL4AID5HY/qGvPcD6EpaxQLfo8zWkRyVyQcMwCowNu2XVAK5f7zrSt2uXHR0yxfTpzsgP9N0LIa/ZFnmhSnmiNzd+DOAzwP3Ag4B11zIMIxgbs7sCBOcGre0GsLQU9toLmhRGklp/EdZ6rwVo6B1HokCb+ZnEjwEs15COSVBJwzAKnSy7QMEZwENqefJWaSkcc0y2tcgMqqkJxPRjAF+UsFyEK2y6ZYcCIfXb688wjEJFyeoKsGtXFw06Z052rp8pFi+Gn34qmP2/lOHHAI7ynv8UNea72KhhGAXMlqawvX7Gk+Aj1K0L3brV/kjQUq9CpxnAYNRoADWk3TOhiGEYtZAsJcFHUwipEKWlruD3gAHZ1iS/8NU6XsLSF5dnsSOTR0M6Pl1KGYZRS8hSEnw0PXvChx/W7lSI0lLo0wcaJdSptXCpsUmIhCWEK312D67u2s24at+GYRjxyZEV4Jo1sGJF9nRIJ6ouBcLcn8HxswL8JdAf+ExDep6EpR0uJcIwjBSxejXMmJFdHZo0ScOXaI6sAMG5Qdu0yZ4e6WLRIpfnODjhpkCFix8DuElDWiFhKZewNAOWYQEwhpFSzjzTNW/NNu+9BwcfnMIJN7jol1wxgAcemD090oUFwCSOHwNYKmFpgevlNB1YT4JlZwzD2JXp053xu+wyODlLmwtbtsAJJ8Cbb6bYAG5sC8Ubadw4e5tT3bu7vb/aGggzfbpL9ejfP9ua5B9+okAv8l7eL2F5BWimIZ2VXrUMo3C45RZo1gxCIWjePHt69O0LU6emeNINbaFxGdA1xRP7p3596NKl9hrA0lL3u2vYMNua5B81GkAJy2GxxjSk76ZHJcMoHObNg2eegSuuyK7xAygpgfHjobwcin3Fh/tgY1tolF0DCLU3FULVGcBTTsm2JvlJjVGguAT4yONa4EXgb2nUyTAKhttuc8bm0sCNXFJPSYkrHD1zZgon3dAWGi9L4YSJUVsN4Pffu+hW2/9LDD8u0J9HH0tYOuNSIQzDSIJly+CRR+Ccc6BDh2xrA4ce6p6nTUthROHGtrDblymaLHF69nSGYtUqaNky29qkjgJrgZRy/KwAq7II6JtqRQyj0LjnHhd88qc/1XxuJujUyZUNS+k+4IaICzS7RCJB583Lrh6pprTUeRD23TfbmuQnfvYA78HV/gRnMAcAqXSSGEbBsX493Huv27vp3Tvb2lRSUgKvvpqiqilbG0F5Iy8IJrtEp0LUptVSaakzfg0a1HyusSt+VoCluPSH6cAHwFUa0hFp1cowajkPPujccVddlW1NdqakxLlmU9I9wcsBzIUV4B5e5nJt2ge0CjDJ47chrnf/xGwN6ZZ4JxuGEZ9t2+D22+Gww3IvMbukxD1PnQp77pnkZF4VmFxYATZqBB071i4D+N137iYqVwygiCwA1uEap5er6hARaQU8BXQDFgBDVXWViAhwF3AisBE4V1U/zbTO1a4AJSx1JSx3AguBR4BxwHwJy9Xe+wPjTSwiD4vIMhH5ImqslYhMEZE53nNLb1xE5G4RmSsis0RkUJTMKO/8OSIyKmp8sIh87snc7X2ghpHzTJwICxfClVdmW5Nd6d3blQtLyT6gVwc0F1aAUPsiQSMVYHKsBNqRqjpAVSNm+WrgDVXtBbzhHQOcAPTyHqOBrDRdj+cCvQ1oAnTTkA7WkA4E9gb2kLCMARzEWjIAACAASURBVJ6vYe5HgeOrjAX6MLy7hxBwALA/EIoYTe+c0VFyVa9lGDmHKtx8s0tcPvHEbGuzKyIuGnTatBRMlkMrQKidBrBePfe3lMOcgls84T2fGjU+Xh0fAi1EpH2mlYtnAE8EfqMhXRcZ0JCuBX4LnAUMizexqr4LVO0aH/TDOA6YoqorVXUVMAU43nuvmap+oKoKjI+ayzBylpdfhi++cJGfueqzKClx0ZJLliQ5UQ6uAJcuhXXraj43H5g+Hfr1c5VuMkSxiJRGPUZXeV+B10RketR77VR1CYD3HGmN3BHnXYywyBvLKPEMYIWGVKsOaki3A2Ua0g8TuF7QDyPe+KIY4zERkdGRX1p5eXkCahtGarjpJujcGYbFvX3MLtH7gEmxoS3U2Qz1c8Pi1KZUiIqKrATAlKvqkKjH2CrvH6Kqg3AevYtFdq0iFkWs279d7E26iWcAv5KwjKw6KGEZAXydYj2q+zCCjsdEVcdGfmnFKavxZBjB+PBDePdd+OMfoW7dbGtTPQMHQuPGKTCAG706oDmy0o1Ohch35s1zPQ5zaf9PVRd7z8uA/+C2rZZGXJvec6Qs0CKgc5R4J2Bx5rR1xLMGFwPPS1h+hUuBUGA/oCFwWoLXWyoi7VV1ic8PYxFwRJXxt73xTjHON4yc5eabXRWSX/8625rEp7gYDjooRSvAHHF/AvTo4Z5rgwHMtQowItIYKFLVdd7rY4HrgEnAKOBG7/kFT2QScImITMTFeKyJeAczSbUrQA3pjxrSA3A/xALgB+A6Den+GtIfE7xe5MOAXT+MkV406IFUfhivAseKSEsv+OVY4FXvvXUicqAX/Tkyai7DyDlmz4b//hcuvtg1ns11Dj0UZs1yjXoTJrICzBGaNoV27WqHASwtdXt/++yTbU120A6YJiIzce3y/qeqr+AM3zEiMgc4xjsGmAzMB+biWu1dtOuU6cdPLdA3gTeDTiwiT+JWb21EZBEumvNG4GkROR9nUM/wTp+MC7qZi8sJOQ9AVVeKyPXAJ95516lqJLDmt7hI04bAy97DMHKSW291X1i/+122NfFHSYmLWP3gA9cnMCE27AatUpFRnzp2RIJ2rvHUnKa01PX/yxVXuqrOB3bpSKiqK4CjY4wrzsuYVdK2Iaaq1W3zB/owVPVh4OEY46VYTVIjD1iyxLUZOv982G23ms/PBQ480LlCp05NxgDm1goQnAF8/XXgyGxrkjgVFfDpp66IupEciRTDNgwjAHfd5XrsXX55tjXxT6NGLsAi4X3AbQ1gW5Oc2gMEZwB//BHYmr/dY+fMcakcubL/l8+YATSMNLJmDYwZA7/8ZWUQRr5QUgIffwybNycgnGNJ8BEikaCs2iOreiRDpAKMGcDkMQNoGGnk3/+GtWtzs+xZTZSUwNat8MknNZ+7CzmWBB9hhwFc2TPueblMaSk0bAh7751tTfIfM4CGkSa2bIE774Sjj86tfC2/HHKIe07IDbpjBZj9bvDR7FiF57EBnD4dBgxwe7RGcpgBNIw0MWGCC4DJtZZHfmndGvr0SbAu6MbcdIG2bOl+rnQYwE8+gb32gkWLaj43UbZvdwEw5v5MDWYAs8yKFS6a66uvsq2JkUoqKuCWW1xVlZ/9LNvaJE5JCbz3nvviDcSG3HSBgucGTYMBvO8+l+/52GMpn3oHs2fDhg356VHIRcwAZplbb3UrhQsucHlX2eCJJ+Cll7Jz7drKpEnuy+rKK3O36LUfSkrcHubnnwcU3NgWirZCgzVp0SsZ0mEAN26E555zrx97LH3/yxYAk1rMAGaRFSvgX/9yjTqnTYOnn868Dl9+CaNGOQMc+C7fiImqK3rdvbuL/sxnEi6MvWE3aLQ8Z+qARtOzJ7CmC5TXS9mcL77oUhOGDoWvv4YZM1I29U5Mn+5SVPbaKz3zFxpmALPI7bc7d8bLL7tN7T/9yd1JZgpVuOQSZ/gWL4Y3A9f7MWIxbZorfH355fkfqNCli+teEdwA5l4SfAQXCVoEq7qnbM4JE6BTJ3dDW7cuPP54yqbeidJSGDQI6tRJz/yFhhnALLFyJdxzj1sh7LuvS5ZeuNAVTM4UTz4Jb78Nd9wBLVrAuHE1ihg+uOkm11X9vPOyrUlqKClxRj2QW29jbhXCjibVqRDLl8Mrr8DZZ0Pbtq7R8RNPpN6jUl4On31m+3+pxAxglrjjDucyufZad3zYYc59ctNN8MMP6b/+mjVuhTJkiFsFnnkmPP987WkWmi2++AL+9z/4/e+dq6o2UFLiolnnzw8glPMrQFJmAJ9+2hmn4cPd8YgR7vN6662UTL+Db76BTZts/y+V5LmDJj9ZtQruvhtOP92t/iLccosLnrjySpg4cVc5CQffUNFQ7Nv2UMh1x540yblTRo1ySdvPPlt7Vi7Z4JZbnOG7KCu17dND9D6g72o2ObwCbN0aqL86ZQZwwgT3f9yvnzs+6SRo1syNpzIC2AJgUo+tALPAnXe6yLr/+7+dx7t0cTljTz2Vgl5scZg507lfR4+G/fZzYwceCL16mRs0GRYudK6v3/zG+5KtJey9N7RqFeBvsrwebGmec0nwEUSAVnNTYgDnz3cdM0aMqBxr0MBtbTz/fGr39EtLXSutPfdM3ZyFjhnADLN6tdvv+8UvKu8Yo7nySreZ/vvfpycqs6LC9aRr1Qr+8Y/KcREYORLeeQcWLEj9dQuBO+5w+2SXXZZtTVJLUZGrCuPbAG5s455z1AUKpMwAPv64+98ZVqX3zYgRbjvhxReTvsQOIgEwRfatnTLso8wwd93l9t+qrv4iNGrk3GgzZsDDuzSBSp7x411i8003OSMYTaS9SjoTeWsrK1fC2LHui7Br12xrk3pKSlwXgp9+8nFyDifB76DVXFjdDbYnvguk6tychx/uImWjOfxwl940YUJyau5gezEzZ5r7M9XYHmAGWbPGuT9PPdU1s6yOM8+Ee++Fv/wFzjjDRWimglWr3ArzoIPg3HN3fb9rVzjiCGck//rX/E7gzjRjxriUlnwseu2HyD7ge+/5ODlHy6DtRKu5oMWwuiu0npfQFKWl8O23sX/nRUUuKvSOO1yUaJs2Sepb1ofNmysNYCrjAQoZWwFmkLvvdi7Q6lZ/EUTcSnH5crj++tRd/69/dcn3991XvRtl1CjXMfuDD1J33drOwoWuos+JJ+4c1FSbGDTIdSDw5Qbd4HX9zfUVICTlBn38cahXzwWzxWLECBcdmpICF4ud5bMUiNRiBjBDrF3r7gZPPtnVh6yJQYNcB/G773YltZJl+nS3Srn4Ypd0Xx2nn+7csOPHJ3/NQqCiwkXNbtvmblpqK/XquUApfwYwT1aAkLABLC93ebQ//3n1Hpp+/aBv3xS5QRcPplmzqBQOIyWYAcwQ99zjXJA1rf6iueEGZ4ySDaqoqHBh+bvtBtddF//cpk1dgM5TTyXYCLXAuOceeOMNd3NT27+cDj3UK/G1uWn8Eze2BSmHBqsyoldCNFkKddcnbABffx2WLds5+jMWI0Y4b0qgHMpYLB7C4MEWAJNq7OPMAOvWubJn7PkiQ14SJOzv0W6MEAq5UmmTJyd+/Ycecp29b7nF337iqFHOVTtpUuLXLAS++sqlrZx0Evz619nWJv2UlLibKRYdFP/EDW2h0QooyuE9pyRTIR5/3P0vnXBC/PPOPrvy/IQprwtL++d0AIyIdBaRt0TkaxH5UkQu9cb/JiI/isgM73FilMw1IjJXRGaLyHHZ0NuCYDLAv/7logQ5PRxY9pJLXIL6ZZcBQ+tC8bZA8suXw9VXu0ozI+cJI/2oUFEETb/nzL/OYOjQkwLrXAhs3eru7ps2hQcfLIyAoYMOckUTtn9fAj1fq/7EHE6C34lWc2FZ38Bi69e7HL8RI6B+/fjndu7sAssmTEgisGxZX9heP9f3/8qBy1X1UxFpCkwXkSnee3eo6q3RJ4tIH+AsYB+gA/C6iOypqhktyW8rwDSzbh3cdpsLkKDj9MDy9eo599q33wIfXxJY/pprXPTpvffivzJ/UQX0fwzmHs/SpYEvWRBcd52ry/jAA9CuXba1yQxNmnj71z8cGv/EDW1zNgl+J1rNhVV7uBu+ALzwgktwr8n9GWH4cPf/Oz34v79jibN8ubwCVNUlqvqp93od8DXQMY7IKcBEVd2iqt8Bc4H906/pzpgBTDP33usiL0OhxOc48UTPgL4TgvW7+RdceAAPPgh/+IPbjA9E//GgxTzxREC5AuD99+Gf/4Rf/cqltBQSJSXAjwfEbyW0MXfrgO5Eq7lQUQ/WdK753Cgef9xVbTrkEH/n//KX7kY24WCYxUOgwSr22CNB+dRRLCKlUY/RsU4SkW7AQOAjb+gSEZklIg+LSEtvrCOwMEpsEfENZlowA5hG1q934fHHHw/7J3lvc/vtwLZG8Obf/QlUFMHke+nQIUHj2/Yb6PCxlUarwvr1rmBA164up7PQKCkByhvC4jj+uA155AKFQPuAS5fCa6+5VZ3fgJQWLVy06JNPuujRwCweAu2n54KbvVxVh0Q9xlY9QUSaAM8Bf1DVtcAYoAcwAFgC3BY5Ncb8Gd80zsoeoIgsANYB2/E+VBFpBTwFdAMWAENVdZWICHAXcCKwETg3stQWkVHAX71p/66qOfV1fd99ya/+IvTuDRxwN3xwGQwZAx0+iy9QeiEsGcztE90+VUIMGMfMyfszc2b8xP1C4o9/hO++g3ffTfxzzeck5h2rnh9KoEuMZNHtxbC5Vf6sAMEZwB5v+BJ56ilXotCv+zPC8OGuY/zrr7sbYt+U14Ol+8JBtwMprKydBkSkLs74Pa6qzwOo6tKo9x8AXvIOFwHRS+9OwOIMqbqDbK4Aj1TVAaoa8WxfDbyhqr2AN7xjgBOAXt5jNO6OAs9ghoADcL7jUNTyOuts2OBWf8cd5/KnUsLh17ku26/cFf9eaX1beOMG2GMKQ4cmcb2+E6lb13ICI7z4otvzu/JKlxJQiOy2G9D6G/i+JPYJkTqg+bACbLoYijcFWgFOmODyaPv0CXapE090K8HA0aBL93Vu2g6lAQUzi7dQeQj4WlVvjxpvH3XaacAX3utJwFkiUl9EuuO+3z/OlL4RcskFegoQWcGNA06NGh+vjg+BFt6HehwwRVVXquoqYAoQ5N4qrYwZA2VlqVn97aDBWjj6z+7u+8s4lm3Kzc5desLvknObNFrJSSe5f9qEXDe1iGXLXKpD//4QDh7MW7voOhUWHgIVMf648iEJPkKRBkqF+PZb+OST4Ks/cNGiQ4e66NH16wMIehVgct0AAocA5wBHVUl5uFlEPheRWcCRwGUAqvol8DTwFfAKcHGmI0AhewZQgddEZHrURmo7VV0CLqIIiER7VLdZmhObqLHYuNHl3B1zjAsdTykDH4HdP4XXboGtDXd9//tDYOa5cPBt0Db5EjIjR1buexQqqq511OrVbgVQU+h7rafLVNjcEsr22fW9jXlQCDuaAAawus4Pfhk+3H03vPBCAKHFQ6DhCmjxfWIXzRCqOk1VRVX7eZ69Aao6WVXPUdV9vfGTI9/xnswNqtpDVXur6svZ0DtbBvAQVR2Ec29eLCKHxTm3us1S35uoIjI6ErlUnoGlzP33uxVDSld/EYoq4IRLYW0XeK9KFd7tdeB/90Hz7+Ewn8EyNXDiia63XSEHwzzyiPvS+uc/E4imrY109eqhxXKD5tMKELxUiB6xV7PReJ0fjjoKOnRI7FKHHuqiRwO5QZcMdqu/7AfA1EqyEgSjqou952Ui8h/cHt5SEWmvqks8F2ckkai6zdJFwBFVxt+u5npjgbEAjRs3Tms0wcaNcPPNcPTR/sOkA9N1GvR9Et67CgY+DC28hfDHl8CyfnDmaVAvNZ0469Vz1SzGjnUroIJjVTcuvRWOPNKlk+RzAEvKaLEAmv7oXPH7j9n5PR8rwJz6DFvNdVGt6zpA8x+rP2/RAcyfD9dem/iliorcKvDmm4F9doMmNeRKbmvgkuAPuTnxixpxyfgKUEQae5UCEJHGwLG4jdFJwCjvtFFAxFEwCRgpjgOBNd4y+lXgWBFp6QW/HOuNZZWxY53LMC2rv2h+dhWgbr8PYG17eOs66Pky7PXflF5q5EjYsiVFVe3ziYoi+M94iorg0UetDuMOBOcG/b5kV5/LhrZAhSuFlg/4TYWYNYIGDVyd3GQYMcJrdP3FmTWfvLQfVNTNh/2/vCUb/9LtgGkiMhMX9fM/VX0FuBE4RkTmAMd4xwCTgfm4SgEPABcBqOpK4HrgE+9xnTeWNTZtco1mjzyysn9a2mixEA69Cb48C74/FF67FbbXgxN+l3J3yeDBLuqt4Nyg718BP5Rw773OdWVE0XUqrOvkmspGszFSB7QiK2oFxo8B3F4MX5zFySdDs2bJXa5PH68by+fDaz45kmvZPtESMkZNZNwFqqrzgV2yylR1BXB0jHEFLq5mroeBNPRNT4wHHnAdsydOzNAFD74FPj0fnnsC1naGw8MJN/eMh4hbBV59NTC4R1qukXMs6Q9vXg99nmb48GRySWopXbx9wB8OhZYLKsfzJQk+QrNFUGdLfAM49zjY1Cah6M9YjBgBM644AJb3gjZzqj9x8RBotAyaL6z+HCMprBh2AOLuXWyrD3fPg65zOOLtI3fsRqZ1/6feJjj2Cnj2aWgxHw69sWaZBBkxwtUV1Zkj4ah0+3cD8tO+MPlf0PkD6DcB2n1Rs0w8ttWH5ye4nMuTfouIGcBd2O0LqL/auUH7R9X42rBbRgJgUraPWFQBLefHN4CfD4eGyznuuGTbujuGDYMrrqhw8x75t+pPXDzEAmDSjO1qpIpPfw3rOsIRGU4S2+cZOPoaOGMo1E1fA7+OHeFnPwNmnVNzxFwmWd4LHnvN7Ze8fzmM+RzGfAbvXQ5rEwzXe/MGKOsLp/wKGmXVq567FCl0ec8FwkSTL50goomXCrG5KXxzKvR9inpxyp8GoUMHoPubMGtE9QUttjZ0aSYdzP2ZTswApoLyejDtaujyLnR7O7PXFqDkxoQ6TQRl1Chgdfddv/SyxerOMP510CL4zQFwRXs44RIo3gxTboXbF8K4KTz6KKxd63PO+UfCB5fDfvdCr6zHVOU2XabC8r1hQ9TKaEOeFMKOJmIAYxmjb05zUaL7JtPQLwb9Jrj0i0UHxH5/aX/QOhYAk2bMAKaCT893AQFHhGu1u+K004B662DmyGyrAuvawfg3YGtTGHkMtPkWGi+HA+6F3xwEv+vlSset7sZ558Huu3sJzN+e6IIaYrGpOfz3UWg9G465MvY5RiVdo/YBwUXNbmqVnyvAbU1gfYy+VrOGu+2FzjHqnibD3s+7MmyzqtlYzJ8KMHmNGcBkKa8H066BztOcW6MW06gR0OcZ+PKM2FVoMsXGls7tua49DD8Rdp+16zmt58KRYfh9Lz74AM47D6ZMAZ74H9y2GCbfDYv23/mu/+V7XD7YaeekLI+yVtOhFOpsrkyI39gaKMrPFSDs6gZd2x6+O9qt1lJ9Y9tgHfSeBF+eGfuGbPEQaLLE1Ss10oYZwGSZMcpFYB7xt1q9+tvBgHGwtZlzDWWDLU1gwiuwYk8Ydgp0/jD++eKKkd97LyxeDAz7ubtRmf4bePAjuGc2vH0tfHSx2988/Hro9ElGfpS8p3grdPqocgWYb2XQIlRnAL84y7kh+6XY/Rmh3wT3mc07dtf3Fg926Q+F8J2SRSwKNFn2fRLqbIU9/LVTyXu6TIXmC5wbtF9mu+Vu2gQ88SIsGQRnnQZ7BFtx16sH9H7JPTY3g69/4VxQb/8NKIKOH0HJP9KgeS2my1S3/72lcf6VQYvQ/Hso2rarAZw1Ajp84tzr6aDHq9BwubvOnpMrx7c0dnurfZ5Nz3WNHZgBTJb662FgAWWIF6nrFj/1Ly7KsllmXDRbt7rO2nx/GJw+3BmxZGiwFgY+6h5rOsLsk51Lqk6Bt70ISpdpoMWw6EBXIBugcQ0lvnKNOttdebdoA7hsb/hpEBx/afquW7wN+j4Fn53nPBv1vTYRPw2wAJgMYS5QIzj9H3P/oLN8VLNIAZEGpJMnAz+/APZNcaWB5j+6mpbxakEasen8Psh2Fxm8IU9doLBrKsTnw93Ptc9T6b3uvo9DeSP4OmpLYUcAjKVApBszgEZwWs+Fzu/BzFHxG/OmggrhN7+BZ56B224DBj+Y5gsagWiwDtrNdIEwG7wOZvlSBzSa6FSICnE3d3tMgaZLaxRNis4fuCjT6GjQJYNdsfGmP6X32oYZQCNB+o9zibqReoXpQIFX7+CRR1xx8T/+MX2XMpKg61TnAl3XARqszE83cqu5sKWFi2RdeDCs6eaCVNKN4K7z3dGwbnc3FqkAY6QdM4BGYuzztAuBT2dO4Fth+OhSLrssA901jMTpMtW58eYdl38BMBGiI0FnjYC6G1LeVaVa+j3uthS+OMvtBS7vbQYwQ5gBNBKj4RrY6wX4/Gwor5v6+d+7At79Pxj0ALfd5gpyGzlKl2nueU3X/Nz/g0oDWLYPfDnUGb/6GzJz7TbfumjTWSNgyUCgyDpAZAgzgEbi9B8Pm9rA3BNSO2/paJhyC+wzEU660IxfrtN0KbTyuhrk6wqwxQIX9PLxJbC5VWbcn9H0m+D2/iIeFQuAyQiWBmEkTo9XofFPrhjAXpNSM+ess+GlMbDni/CLc/Knr1yh02UqrOyVvyvA4q3Q/Af4aaBrQbTHlLinp7yrfd+J8OptMOM8aPZDzd3ijZRgK0Ajcepsd/sX354EG1slP983J8N/xrmC4mcMzc9gikIlUhc0X1eAUOkG7TvR/W1nkibLYI/X8zr/T0SOF5HZIjJXRK7Otj5+MANoJEf/8VBRz23gJ8O8n8EzT7t//mGnpLW1k5EGur7rnpvmcS5lxABm2v0ZIXLdPHR/ikgd4F7gBKAPMExE+mRXq5oxF6iRHLvPgnYzXPf0z34FKEgFiPeMcugUKCryAll+eDPmOfxQAm2+ccWtIxUxjPyh1Xw49/D8Dt7oN8G10uqYpVqwez8P3z3sVqD5x/7AXFWdDyAiE4FTgK+yqlUNmAE0kueYq+CTi1xfPhXvuQhwr+vXB1WoqKDyvehzEej+Bpz8G2i0Kss/jJEw3d7NtgbJ0eV998gW9TbBqedn7/o1Uywi0f7Zsao61nvdEVgY9d4ioJpmh7mDGUAjeXq+5h7V8EbU5r+Ej8iAQoZhpIFyVR1SzXuxooLSXScqaWwP0DAMw0iWRUDnqONOQM43MzQDaBiGYSTLJ0AvEekuIvWAs4AU5UalD3OBGoZhGEmhquUicgnwKlAHeFhVv8yyWjViBtAwCoyUJ3EbBqCqk4HJNZ6YQ5gBNIw8wwyYYaSGvN8DzMfqA4ZhGEb2yWsDmK/VBwzDMIzsk9cGkKjqA6q6FYhUHzAMwzCMuIhq/u4NiMgvgeNV9dfe8TnAAap6SZXzRgOjvcNBwKYUq1IMJFu5Odk5Cl0+F3QodPlc0CHf5XNFh6psBFDVtimeN6vkexCMr+oDXrmesTHOTY0SIqVxKiRkZI5Cl88FHQpdPhd0yHf5XNGhUMh3F2heVh8wDMMwsk++G8C8rD5gGIZhZJ+8doHmUPWBVLhXk52j0OVzQYdCl88FHfJdPld0KAjyOgjGMAzDMBIl312ghmEYhpEQZgANwzCMgsQMYAKI49wk5Y9LUv7KJOXPTVQ+VxCR3b3nhiJyhojslqHrjhCRFpm4Vg16iIjcmoJ5OojIft7rRgnIHyAip4lIkYh0TVafbJCCz6BYRNqnXjMjnZgBTAB1G6cnJil/UZLyfUWkQRLyCesfjYjsLiLtEpDrISKXicj9IjJGRP4gIj0DTvO493wD0BN4JqAOA7zntiLyJxHZy6doG+BZEXlZRH6bzBefiNQRkbNE5Hfe6/38ynq/x4ZJXv/PwK3Av0WkCHguoPy/gNOAa1S1AnggoHwLEblKRMZ6zy2DyHtz7C8iZ4vIAUFlPflkP4NRwMvAK54hDPp3eKf3PEJEPhORm4LIG4mT11GgWaaNiHwOzMQl36uqjgwygYhMBj4FKnAT/F8A8f7AQhGZHXX9wwLIJ6y/9yV9EdAeWAkUiUgr4EfgPlX9pAb5h4AVwFu49ikCdAcuEJFWqnq+z5+hfuRnUdU/isgJPuUi3AYcDVwPvAM8AhxUk5Cq3gncKSJtgJNxX5xNgcmqektAHSZ41x6mqveIyD+BnwWQHwS8KyJLSezv4BhVPVJE3lLVCi+dKAh7q+rRIvKWd1wnoPyzwL+B/+D+pp8DjvIrLCIPAltwf8cjReQCVf1VQB2S/Qx+raolnny5iLQOKL+v93y8qg4UkQ8CyiMizYHfAi2BPwMnqOpLQecpNMwAJs55ScrfnoywqvZP8vrJ6H8QcJmqro4e9NyC5+DyM+PxW692azTfiEgkncUv73pfvDd7q+GNAWQBGolIfaC+qj4pIhcGEVbV5SLyCtAQOBM4FghqANuq6v0iMjSgXESHGg12DWwVkY6Aeiv5LQHl10dWXiIyEFgT9PqqGlkxfSsiQY1XV1U9JnIgIq8HlIfkP4NyEWniyTfEu6ENQJGI/B8wLzJfQHlwN1L3An9W1e0i8gfADGANmAs0cVYCQ3F3W2cCqwLKTwV2Aw4G2gHTggiLSCcRuVdEXhWR+0Skc81SO5Gw/qp6t6qujuEy3FdV7/EhvxVARO6IjHkG7ElV3RZAjz8DI4DlqroZON2vrMcE4AXgfu/63/kREpG9ReQvIvIu7ktnPXBq9BdxAJaJyJk4V+ZpwJIgwiJyrIi8LiKfey7UGj//KlyEWwm3BO4EfhdQ/nzgDNzNxwgqa+76pdz7G75RRF72jq8Tket8yi8SkWvEtUW7yjs+SkR8ryJJ/jO4CreS3dt7viag/C9w///XeTdkfw4oD9BQVV+h0ngGbxpZgFgeYIKIVpzcBgAAIABJREFUyCRc94npwBCcC+ukAPKPA19GyfdV1WEB5F8HQkApsB9wnaoGcR0lpb83xwvA1ar6tYicAgxXVd8rGRE5G9fRI4Tbz7tFVd8JIP9noC+wl/cz/E9VA7lBReRAnCv3BaCzqn7vQ+Y54EngZVXdEOR6MeZqAPwa9+X5DfCAZ8z9yk8DjgRe89x4bwb5O0gUb68sJt5eoN95Do8zT41/CyISql5c/RrRrOLtRYeAZjgvwtWqekPAOe4DvgeGAeOA7qr6+1TrWtswF2jiNFfVJ7zXs0XkgoDynVR1uPf6VRHx/cXv0UBV3/NeT/PuHIOQrP7g7vjHi8gMXB3Ws/wIRX15TsTdqU4DRgEzAl4/qb0bL4BjPXCUqv5HRB7AfQHVRCtVfTagrjFR1c3e734m7rPYH3g3wBTbvYeKiBDwzl9ErsUFRO3okOLTgL6B23MUKgvQR14HMcBTcSv3njgX4HOqut2vsKqGxUUDdwcWqKrvFbSITGXX4vlCwH1UETkPOBf3e4joFeQzuAs4FXjec18ehQvs8o2qXiQiJ+FuJOeq6h01yRhmAJNhhveF+SkwGJgVUP5HEfmLJz+EgK4vYJLnMpqFCx54MaB8wvqLyPVUfnF8j3N7PQL8DfATyBP95QmwHOeCCvrlmezeTaIBHA1EpDsxjI2qzg+igIi8hAseihRxV4IZwJtxn+feuJKANwe5PnBsIvuIqnpkUJlqeIydPSETcKsYX4jIn3B/MzOAgd4K2NdnoKolwdWNyW+BQ2Psa/tFVHWViET+pwJ/L4tL3RDgJ6CliIxU1fEJ6lMwmAs0CURkCNADmF9T5GMM2Tq48PEewHy8u78A8q1x/yjdgAXAlqpBKT7mSEj/ZN1WqUJEeuDulHvj3Id/VdV58aV2kn8B+AdwI/BH4FpV/YUPuSW4sPeqBlCDRiCKyP9U9f8FkakiXwcXdNEGtxca6B9aXAj+W8AXeDc1QYy4iJyI27Mqx91A3Kiq/wsg/46qHl7dsQ/5qdGGTESmqeqhfuU9mcG4m7dmwFogrKqlAeT/gfNmfEnlZxjEDXw+Lpq4P/AxLpr4Ub/y3hxTcRHVO7rhqOq4IHMUImYAE0REplSJPnsy4B7eY6p6TtTxXap6aQD5nfZ6ROTpgPtvSenvyZwRieDz3G+/jIro8yO/48vfk38x6D5kMohLY7iayv23f6rqch9yb6VqBSQiTwBL2dkAPRxA/g1gDi6AKPDNh4g8UmUokBEXkY+BI1R1o7cKeVtV9w8g/wTOcEQ8Ifuoqi9Xuif/BnAt8Jknf13Q342IfAKcoqqLRaQD8IKq+s7HjPIgRNCg+7DeDe0euJvRFUFkPflJqnpyULlCx1ygARGRI3Eul15RkWrFQAef8gNxuVtDpDLkuxgY6FP+NFzUWB8Ribg4inF3r2nXvwoX4iWfq6qKSyMIkgTcOPLCk28a5OJJ7F9Fzl3ufQaRqi5+K4AEztOKw6vJCHsu3D2BszyX+ufAE6o63ad8suk8n+GiJzfiPseg+7jn4Dwh/XA3If8IKH8uLgrzWtweYqBcXI85VEZBrwLmBhFO9mZIRPrh9sBb4N0LBvUkABUi8h92vpEKkldckJgBDM58nMtpD+B1nBtsG86N5ocKnLtopfcswGbcP7If3sTdLf+ASyCOXP8nn/LJ6h9NfRFp6e1ftAKCVqaZIyJ/B97H5RbOCSif0P5VBBEZC3TBuY0iARw1fvF46RcpQVXHiSss0BOYp6ofJzBNOS4Ao8J7HioiV8Rb0Uc8DlUCQXwHgETJ1QXeEZEVQCugLKDuj1b1hAC+PSHAUFW9JEp+ND7bAUX9DM1w6RNzcb+HHwJcHy9o5Xoq3cB/U9Ug+YjjgItxe8GJYkEvCWAu0ICIyEBV/UxEjqZKBJmqvulDvr2qLvH2r6rK17j3IiInqOrL3r5BVfkaXWfJ6l9lroOpNJwVuCTc9wPIC3AKsCcwG5gUZA8rBftXO7mBs4H3MzSiMghks6r6zkMTkddwe8CPA+9GPj8RCatqdSkCWSfKE3IFlcUDioERPg1wC6A1LmjmbJzxroOrRJTR36mIvA8cp6rrRKQZ8GqQGzMRGYerJuM7BzbGHEUkEU1bqNgKMDj9cG6fqhvtilud1cQ5uEi9v8aQ9+P2iGyuV60W4ddwJKt/pYAzdkHKblWVV3Hl2FbgvsBKCBYB2RwXPn5qZEr8fYYRFojIpexsQIPeBOyL57ry5IPoDzBAVY/wXv9bAqTDeDcQ0zRGvptf4ycix+Jc2c2p/BmC5JN2Ai7AudAj8n7/jpPxhByO+713w7k/I56M+/3qHkFcFZcz2fln+P/tnXu8btW8/9+f9i4VilC6sCtRp7LbqN1RKUIJx0nqUAp14oRDhSIOyq1IrkkoXU6EpItKl91979D9xsklShHVT0LFrr0/vz++Y+4117PXZY45136evfYa79drvdbzzLXGnONZ63nmGOM7Pt/PNyeHUAx9LnNdYCDEL79LK9B0+Sw7O+iopp2qlBVgB9Jsr37jyAqdTMD1O918u/Zf0mbAQUQieZub59Hp+lsTYdCVm6gwe84xjXDUuTd3xqvFk6idc+MbKYUh88aJpB8SCsJKBPKGHFVo2gd+mzOS53vaXw+82vYfxv3lkdtfDnyMCAF+BHil7fdknmNLQo18u+2fZrZ9BpFCtAbwJ9vZNmIKO7vTiDDkMcAWthvnxUp6GZHIXqX2fNz2hbn96EJXNe1UpawAW9J2/6jWvi7gqPZecgaPTvljXfufOJZIhj8OeCv5/qIzbW+bVJV7SvpBTmOFk8y7CAuz9SUdbfuUpu3dIYm66kLOjXIU3kjkUb6bCF3tkdm+qyn6PPLzJ+sstH2xpI/aniPpAzmN1d3Mekdi1XgnMEPSSbazKlIQXrDHK3LnjpOUNQlL+31tPEiBRavoQxgKXx5u+67M03TNK56SlAGwPet13GvoJOCg+823a/8hcg9vl7Sc7V9Lyk0sfiztXfxF0puIG0AO/w28yOHAvzwxAWg8AKpDEnXiQYWfaasUhvT7f1WYgFdlgDYjYyLjlqboNQHIdOAqSfcOnTJrAL1JYed2cUoH+HtmV2a4m5n1PkQS+sIUDZhLZkkmwo91ReAWSd8EctXIexMqzkXhz8w0iBMZbmt4EnmGEDBcTft/5KtppyRlAGxP1/2j6xT+ma0EHHS/+Xbe/yLqn60IfFthh5YVviJWP8sRThp7kC9hX0iEX+9K33P3X17jniRq8pxUOqUwpGu2XslLeg0hIno6MeM/0w1L4HiCXFBsH5AeHqYw4s41hb9b0iHEvvRm6fn26dxN3o/zgNnp/bcZMC9Nqhono9t+PYCkdwOzCEFWDl2dYLraGkKUBptPvA9WJj5bxQlmHMoA2J67if23SkySKyLpKuDoevPt2n9sVwrQr6WvXO4jchqr0M/PMtu/AzhaUUT1AWIPJ4f5SclaJVHnqvBOISohPA34Kg1zOXtotZJPN+tNib23PwBrAx+QtL7tL2Wc53in+otJVPMN2/s2aPd5wr3oytrhTYj/54HNXwl3ACsAVTHb3xJiqKbvx83TV53Kam/MVVSKAPykeg1pFfl44n01blkrDXnazgE2ktTKCYbhtoazyLc1hLgfDHOCKYxPEcF0oOP+UScBR2rfKX9sAvrf1QbrDEL8chMxe9/a9s5jt5o4koDi/SQBBvCZHCGQpFOJYrZvsr2VpDm2GxWz1ZAJwsto4QSTwo3b19NG0vvposy95EtdS+TufT5GuytGCpWOdnxpRD02auMdH+H3LmW4p21F1n5+OtcawAzis3jveL8/QvviBNOCsgJsSdf9o64CDg3PH3urpL2clz/Wdf8Lwj9xmA0W0HgAJGqYVTPtC5OarjHq7gRzl6Kk0pPG/eWR6VLMdgFx8zyfxW+gTXisPvgBOCoJ5IaB75e0L0NmBE1tuEabOed6ke5JpFFsTBTT/bPt3hXdWO27KJFHm3Q2mow6KpGsQ6y+b3cDG72RUAcnGA0Z0xcnmBaUAbA9XfePOgk46JA/lujaf+hug/WgpK8xtP/zYLUyarifORAnmBpditmeR6g/12GoDmBORfvnasgKr0JEGDKHN6d+/HfqR9N92DMlfZUIFd5D5NAdBJyZef13EwPvxcRq+LjM9l2UyD9O+49H2Z6vKKf1Phpa3SlcjDYj7Oe2UPjx5gpwoJsTzBzifVu5OhUyKANge7ruH3UVcPxN0hsZkj3nqu+69h9CcXaZpD8TNlj3V+rChmGw82qPf9L0opLWTw+7Com6KmH3IYrZXk8MZG/NaPstQq14GmEmcCx5IqAtRznea7AwJmn1/lUiFC+iqsS4YWDbn5f0inS9NYlJxGmOquQ5PJxWro8Sg+iszPZdlMgfIgb/c5Lw5B/AD2huC7hdNYmsws/kK1Ah9v6ucTsnmN8TYfxqInWE7T+1OM+UpOwBtmQC9o9mEgKGSsDxUduNV1CKJPa31a7/DdsP9qv/E4kya5dp8QoGFW4SOqpUhoRTxq20VMKmm94wEYwblpXS4tU8Lrb90qbXnigUeXs7ABsR74N/Nt3HnKDr70jso24OHEwIa07MaP8B4AvESvbtwE87pgc1JilP60n/n6ueN3kfabgX6dMZ8sJtnIoi6QrgvcQ++nbAfrZf1/Q1THXKADjJkPTM3kMM3bwHNYANu5n3s72k6QwJiRq5gGhxB5gKO88JposI5o9A5RYi4OXVc9ttKhq0QtJVqe+X2X6xpO9WaQGDQNInbX+oQ/v/sP29iezTGNeakPdRxz4MmzgNaiI1WSkh0EySyOBGoF58trGTi6TfECGmesgzxwnmDuAahqcMNN6/6tr/0U7bsl3FeeP/yggXDfHGW8h0AbF9WO0cazKkhM2VkHcRwfSGMLNClxNIlbv2sKRtCTHKIGlch28U9gX6MgDW30ddkDSDqEtZj8b8tmHzF6RVYMXM6vlkUeMOkjIA5vN64FXASkSe0hmZsuWvEpv+fwTOAi5uunJJbEnkDm5COD6c7ozq1XTv/0jsJmnVnBBsHduflfRO21/JbNrJBUTSoURFgluBTSXd4LwKCq1FMLbvzLjOYiT16hW250r6OfF+mg5cbvvDGafaP+1/vZcIIb4vsx+9SsNHiZJbZ7h9YnhfUbgQ1XmUKEyba+zQllOBA4iJ6Sxif3irhm3fY/ubSQ0KEZEoNKSEQFuSlJsvJ4yA59jO9UB8OjGQvR44x/ZRLfqwJSGeuNZ2jgCjU/9re2h1DgcOydz7gKHV4ybArTmzVklHAqcTN47NiP24g6FZIrIWNxDOymFTuODsy1BF+W+4pSl1LvW+1nP31LDE0wih9EVk7mUfTzin3EiIop5LRCe2GSsvrec9sOgw8BTb465CJf3vKO23t7120/6nc51K7MNXr2ENwqRhJXcvGNzk+mcCr7VtRXL9mWP97Xrabmb7JkmLGV/bLoPhOJQVYCZppfFiYvB6OvBdMkMuilqAuxCruVvJmLVJeiphf/VSQrX2STJCiBPRf2KGegux4oK48axGuMo0EZGcQdxoTrR9WerXj2zvlNmP1i4giVsl7c5QGsatlcJ0PDWpJAFfn4j9OklrAWvbvkbSyg3TIepRg7p587SGl72DDqH0Gs9wcpIhcjkvsv1mSWNWtHB3K7aJDBmv6lrx4PRe3C2lBo1K2gMccQWRuQe4CvHeu4WYQNxbpbiM9/6yfVP6Xga7FpQBMJ97iTj9WcSM0cBLU/JqEwePm4mB6wxi9bYQWEXS9g0ViPcQN+xLif2bmUTcv2nia6f+J9YjFKhbAifbvkDSlk0/9LY/l3Ku9pW0H/DthtftPc+4jiXjsDKhgNyhduzDNBgE0mz9HkmziTSIhel4VjpLCmVuSlhpbU6saJtMBH4vaRvbc20/kM61LREKbULXUHrF3ZKOIaT8M4nKFNMIg4clRtcQcg+PSjqYodcwP72G8VKLLkvf9yI+U9cRdnjPzrz+El9lFkamhEAzkfTm0X5m+6QG7Tspx0YKddROMO4ssGv/e861PPHh3RFYx/ZouWljnWM6cQPZsGkYVkMWVIvRRY2aS+oHDNlhZQuJqvBl7XsjFZ/C//TLRA7e/YQS9g/Au2z/ObMPrUPpqf1sYlL0GzdMA1maSJOxnUmvATgrZ/9S0oW2d6g9bxqGHnV154y0oEJ7ygBY6EyaLa/RVEVZ7Vvk/myE3z0cOJuYeT8f2LnJIFobQKcTYeD7iFy+e9znIqKKUkj7EBW9dwdOsP3KjPbLEX2/L4mBtnWDwsgjhNLPA85rGH6tn2ctYFeGF1bOLQrcydO2Kwobv5dRs8TLGYDSPuhjRGRmFlFfcNxVXW0yuiPwN4ZWkKvazq0LWWhBGQAL2Sjsy84GrqqF355MKNf+zfZ+47R/L1EF/i5iLwpgXeAZwFzbn2vYj6sIA+1KPDDPGdZoko4FPmH7boWn44edVwn8XKfq7WlP8Ie2X920fWr3LGIfd0NCSPM/tm/POUfP+YatRsb4vUcZHkpfdCNoGEqvznMNkQC+aPKTsx+l4Z62mwP/cANP21EmMasTk5gs+X8S5AyrpNAiGrIFsD7w29xBXNJ59UlPy/3wQgvKHmChDQcQ9ftOUOTRmdibPJfhzhgjYvsoSZ8jhCfPJlYOlwI3OW9GdiLh53gn4el5YkZbiBtuZf78Z+AFme0fXz1Ig3BWIdXU7nbgDbntJoCJcnu5w/apHdq38rStqV6PBfaoT2Ja9OEB24fnNholhLmRpI0yQ5jzNVQTcRbtbAkLLSgrwJZI2gHYjwj9LEfm/k/b/ClFvbJPEB+UhcTgcT1hpfZQZv8PJiTfs4AvNJl5L22k8OtTgfudWVJK0quJBOTq7/gZ241rsUn6BlHKqKqksKYb1NJLbas0gEVOPtXjJisYDVUBGHaYGAye1ewVdEfSxUTo8OfpkHOUsZJ+CHyHIU/bN1Sr6obtryVM5R9JocwrnFFNIp3jTOJvmVVJYaJCmGkvfWdiBZm9B1loTxkAWyLpeuBVblFHL7Vvmz91NHB1fYapKCnzr7b/O+P6c4GXABcm8UUnO7NBkGb8/0WYKFf7TzkS/q7XF7GP9hwifPnDzBVsl2t3EkNNYD9mjHD9xgpNdfe07TSJSefolEM3ESHMFAqvv4/H3cctdKeEQNszjyEbqTa0yp8i1JLDBjrbp4yl7hyFBenL6UY+0FIqkp5m+77MZt8iEvk/DnyEqA2Yc80uteQAdrR9pqQNiNDvA8CV47Tp7UNv6kkVCTjO9qi1+fo5yI2EpJ1s/4gQ0fTSKJ0mve+Ozlkx9mL7HOCcNm0lPc/2DTTPnRyNTiHMNKldldgXv4rYEy0DYB9YbtAdmMS8ALhK0pXpK/cNe7ekYyTtl/KomuZPjfY/y/1ffoZIGt8YuID8WoAoyuEgaQNJX0l5aDntv5O+HwiconD3yGGh7YuJ4rBziJV0DscCHyX+dm+jYR24GpVt2AcJFWcj8U4PfyeK4h5BCDEWEu+Bfhk6XyrpktrXBZK+mgb1sajyHReM8NWItFq+R9JsSdMlLZfETDn930zSKZIurl5DRvPq/fKinq9tcvpAOBD9mtjTvp1QxeYw0/ZewJ2298xsW+hAWQG2xHZTr77R2u9Ty586oZY/9ZZxmq6dBtveFdvTMq9/rqTzGNo/axO6ex9x8/4g4cH5JfLMjKs+P9/2jknVmcNNCjuyS5IqMLcmYpdacgBPVFiKLbD9Y0mN92BrzLT97vT4l5LeZfvtkt7Z4lxt+ClRA6+yk3sD4Q50ErEiGRHbF6SHl/b86NH092xqCDA7fS06Nc1cfCpaF8StlJ7uaGpt+9G0JfJH4nP5r+St4B5LA/9fkrBmvMlHYYIoA2Amkg6xfbhG8CLM3Pxfi/igrApsmEJK4+ZP2d4ot8891z2BEZLIFU4wuftnXQeAh1MI8PoUDssxBcf2AenhoZJWI0KQOZyfBtBvK2q75eagHU4Ikj6RztO4qG+NKyWdQwgwNgEuT5GA3NVoW7Z1yp1MgpIv2n6vIk2iCd8kJjI/I/r/Z+Bxkk62fexYDSWtTezf3W77/pb97zqJQdJ1RArOr4jB5y7gEeBI22c3aN81hPlGIgrxdkJd3bdyWFOdMgDmU+1vdPUiPIsImTVK+q4YaeCtaDgAH5q+v4e4YVfKtVFn+2NwBN0GgF2IvdDfKNw4/nO8BnVGULJ+CWisZLV9hMKJ5mzbX8u5dmLr+t9cUu4KFNsfVhijP5NQ4lZWZlnm6h04WdKPiRJd6wAnpQH4zIbt/wbs4KGKHKcT/9efEquzEZH0CWLFeQuwhaTvuUEpqxHoncS0qeDwC0JJ+nBSkh5PvBevIPJdx2Om7W0Vbj57SvpB5vUfJqIpTyaq1L+CWJEXljS2y1fGF7Fh/jrgSCLs8lki5j898zyntbz+jPS1LrFKqJ7PyDzP5WM9z/hbvIEYdKYBW2S23wGYQ9wEpwFfzmw/F1geuDQ9vySz/ZuBi4hJyLSm/5P0t38pIXrYPn3tUPUjsw/rAMcQxXCPISYEg3hPrw5Ma9H2J0TYe0UilHlVk/cTcGXP9bP+d6nd2umaT+34+q8jUlggBFHXpMeXNWx/CbGCO4NYvd2cef0fEoPeFen5nH6/B6bqV1kB5nMiYZp7KvAg4eT+snQ8ZwN7tRR6ycqfck1iLukRtzcFvjztAVYGwG1UZ6cQlSx2t/1lhTVZToL1RxhKxVggKbcYa1cl6762X5Rm7gskPaVhuxmEUOJJhGgCQvnXppL5iYQQ51piIDmJvD2wTmh4PqtSKDzn+nsQq5fKR3PPtBIcLx/yiRpeVmu16rmbldSqryBnKyrZt1lBQoQev65IyXgQeGd6DU0dcbqGMFeyfb7CkBsGrMieSpQBMJ91HYqtOjcoEptzaJWvVlPJKZ4O3fidUYnA9kdS6G0Gw0NvOXSpiA6LD2Btlaz/Qjsl62OSnpCuvxJDysYxcaQgXC7pU7a7unasaHteejxXUZy2nxwBvNoNfVzrpP/ZO2y/Y4Qf/2qc5mcwNHmoPzfNSmpt51RSKQ1WF5FRDLkivYYX2/63EX7cdFJ4HxH23YBQgf5s7F9fjF9Kej8xCTiwRftCS8oAmM9ZSbRwGfBXYgW4HRHGGBd1z5+q6t3Vn1duIuPO3CXtbfsE9TiJqHk5pTqtK6InOg1g7q5kfT/w/XT97wOHZLZ/vaT/IlJJHiQstXLt1M6W9CNiJT6LZntOE8k84J9tGtq2pJUkrelMQwh3VF7ScQVZ64clbSppRbcvZnwaIX65lliVnkY4uzTtwzsUCf3fAn5t+/Mt+1HIpDjBtEDhpD+bCIH9hdgzaJTELWlHR/28xRLX3ayc0iq2/5rb51r7CasgrQmoiJ5m4FkD2AQIgSYESVcTFmgXE6Hf42y/pcV51iBW4nfa/tOEdnL8a18FPIWoEwkNrdhq7X9M/P/+RPxPstq3RR3LivWc6ybCheUXtHgNks63/Yra8wts79ig3agT1pxBvNCeMgC2QNImhPT/ttqxLW1nKdAkPYlQflUhzDGrkKc2iyzLJB3vITeZLCR9hZj9z8vdR6xm/ErV0+s0fA2dUkk0ZL8lYi92kZl0k9eiIR/Oxci88V1m+8WSLiJUg2fbntW0fTrHOkQe5QZEMvXhtu/KOceyhPJyCFEYT9c/hy+ynbsd0QpJ1TbGjsRE+AZiBfgU2+NuC/QM4m8m9oMrP9isQbzQjjIAZiLpKEJ2/xgxc97H9n3K9NKU9HVC+v4Hht704+4L9gyArf07Ja1HlC96IbAREb7brWHbg21/RsNzCnNewxq2/6SogD5s5dxiMO7kYZoEMK0qy0vakRABbUFYqp1h+4TMc8xhuAjmY11eT8Z1JyqftZMfq6TP2z4wPV4ROMn26zPanwW83/Ztkv4deGOTwafnHE8AXt/zGpoUp57I4tKt34eF9pQ9wHw2dyqaKmkmcJqkg1qcZ0O3K766vqSPER/U6jGQV8eNMN9+LlHS59fEDbgRafATcJvtT2dcs2pfhfk+UQ8dNWWihEBVdzpc/6L0fV76asOgRDATlc/ayY8VuFpRE/Cj6VxHZrbfk8hlvJFIKWlTWur7xL7da4lUlEZuRtUgl0Q4uxGGAF8l8mpzKSuRAVAGwHymS1rB9nzbNyfxxymEC0YOp0ran+ElWJrE/euzzjmZ16xzMFEL71wiDJqlPEvigU06igf+kNRv15EUmA3/Bl2FQFXoVoSAZ1Eot0kIt+f69XJGNLl+D70imKxKBm2pTUIeJfJan8SQ/D4n/LbQ9sWSPmp7jqRGCfy1ScR3CfXvXOK93SgBvEfEdSfh5XoCYfSQK+Z6nO3jJb3J9nGSdsls3yodqLb6FrCxpJMZiqQUN5g+UEKgmSj8O++wfW/t2DRgN9vfyTjPWYR3YCU/73vcX+G+shuRx/VM203z4Kr2XcUDvUKGvvwNUuh2JJqGcDsJkUY43yBFMBNR0f0D6Ws74O8eOaWgt11V0R2G5725SQh4JBFX7QS5Yq7vEoPvZ4mIyAZOKRYN28+x/bIqHF89b9BusVJSFblbAYV2lAFwQEg6x/arB3j97xApHL8lJNzzbN8xgH78K+G+cTawzmT44E+EECm97keSIvczhJIS4GTbl01cb8ftx2lN934bnGs123+eiHNlXHNlIqVo0QrWedXY6+dajliF32b74Yx23yasDQ8gUnl28eK5woWlkBICHRwPSvo8w0OgjeqoTRBvtf23LieQNIvYu1mFsAL7gO1PZrQ/mqjgsL3tMxQV1nfo0qcBsF7Ldh9nKFfshYSbyArA0USO6RKlFn5r5UhUO0/dSWY5SY1WcLX22xN/i8cIS7RDHaWtmnIBUUYqO5G/1oeZRBWWVYlwrMkzqtiHSAe6ntiHfGvbvhT6SxkAB8eFXRpL2pv40C6PO20dAAAZ30lEQVRgaN8gZ/9p/STeaVsMFuCLxE38Bw4rse2BxgMg8C+2X5rCYZBZmFTSKxwWUhsABwLfdX8qaU+EEGm67ap6xjG2fwegMOfuB13FLxVHAK9yZiJ8jU8QhYX/prAiu4C8ve0HbB/e8toVJwHvBH7fsv2jwP1ELmwlgrlmzBaFpYIyAA4I2yclxd/q0Mr7bz9gG7e34mpdR62GbD8gqYqj576f/i5pSwBJzyPcVHLoVI9Q0kW2X157fqrt3Rs0nQgh0kJJj7f9kO1T0/VXoXt18kZUoWZJb7F9oqQtCAHJCYSopCnzgPkduiKGLOhyFbwQf8czGB5JyRXB3EyYWbT9LLUVwVT7oNOBpxMpQasD9+TspRfaUwbAAZHUcjsQOXi3E3ZUOUbSFwP/IulnDH3wc24gneuoEaVzziJWQd8jbp45/CchnniYGIxzQ0et6hFKegmh1nx2bfU2nRD0jEuuyGIUDgPOSaHIe4jKBm9Mx/vJnkQC9n8TYbwfEmkBY6IhM4HpwFWSWjnJECvR89MkSkRIPYfWtmG117AK8DtJv04/yn0NrTxxq7w/SccCe9i+O+VVfjjnPIX2lAFwcLzG9lYachP5bmb7F6avitxK2hNRR+3M9LU+IabJKmgLvNn2+6onkt4GfD2jfduCtL8hVhvrExMJiDDWERnX7oTtKyTtSuTNzSQGwd3cvjBsW54gaVtCvXlP00lEjkpynPNczND/oDGSnmf7BjqsmCfqNdDdE3dzIiUJoqBwrp9soSVlABwcVdjo4XQDyioF1MU1IiWO/zHl730tfbXhtLRv+P/Seb8HNLGAehLhorOronioiBvZbjQYANOqD0J0cH16vDqRxDwutu+U9DvgkAlazbXC9v8D/ndQ108cSAzCH0+TiEbFXJOA6weu2Y6lKMIuTs4uDc/TVgQzk7Ae6x3EmlaTIO2B/2SE1/CvtnMS8ruKYA4FLpK0kPgs9DsKMGUpaRADQtJmxKb5+kQdsXNtX9Cg3Rdt768R/Cwzc/C+50zLqFrb1xLlX17OkJhnOrCaGzi7KCyrdiaKgP6I+NDPBy6wPe4NuJbHtzYh4rmFcLX5Y31Pr8F5vkwkYNcT8Zskwi9TJBFRXQw1rpBI0hUjvd9GOz7Gea6iRwRj+4Xjtes5xyqkeoYAlaCoQbsrR1oFjnZ8lHOIsG/rlLguaXkilNpazVrIp6wA+0yaZU9P+V+ziUra3ydu4uNie//0vWv45mmSbiGqoVdJ7E0/xJcQs93fMbRie5RI7B8X22cRZaXeVM/ZSgNrk/Z7p9//ATArKVCnAac37H/FE4hBuBq0c+Xvk56UirIqsDWRD7oyzergjTZzzp1RdxLBaARPXZr/DxdkHl8M25Z0T/osX8/QRCrH0PvNxF7s6pKeD3xnonIzC2NTBsD+8zXgKEJ59jWiEOjyhCBkVHPdCknvBs6ZgJXKW9o2tP0gkcc42/aiKuiSTgWaqCirpOO9kwikCoHuS/w9mrImsEXaw5xFKOkaY3vvNHCuDtxru/GNbxlipu1tFWbMe6ZJRRPOlPRVwrvzHkJAdBCxJ5xDVxHMejmr/h5+LOkQ4Cjb8xXOSO8Dfpx5ntnpqyJ3P35f2y9K/4MFkrIcmQrtKQNg/5lh++b0+GYn6y9J44Y/EwcAL1FUcz+f2IdptHrs4bjeFACaD16VinKDNirKNON9CzFoVT6e84mE5hx2J266HyFEOHvkNJa0B/Cu1HZ9SUfbPiWzD5Odx9Jk5C+S3kSUZRoX25+X9ApiAFuTWIGdZvv8nIt3EMFUA8wdauepC/AhwkP0nJSS9A9iDzRLDNVlPz7xmKIihSWtRLt0kEILyh5gn9Eo5XskXe4G1SHSLPElCguonQgH+42AS2wf3KB9NXjtBVThx+nA1k2un84xA1iXuHnUQ6C3OsMjU9IWtjslDEtak3Bj+W1uMnbaf9rW9mNpD+aK3P2nyU76+91PiJL2IN5HjQypJ+j6ryTyOCsRzBG2z23Q7puMnK9o999TdzNiItbKVCKFTz9G1BK8nhAClUT6PlBWgP3nSkkfBD5bC7scDGQV8XR4FZ4OnK5wD2n6gaunAMwhPrBZKQApifpO4HJJzyJWftOJFV2OE8t8SafQ/sZxEPG6bwSelyYHOeWZFqZr35W+T5mZt6TTgKvT119t/5Ewxe43hwIvtv1wmtRdRlQoGY91nVF3cAnT2lQiiWg2biIeK0w8ZQDsP4cRe129YZdvNGx/QO8B24/R3FrtWen78Qz9/6cRuUhNQ0dAJwFFRVc3mtfUxUCS5gI5A+A7gKMlPRl4gLDDmiq8n/ifvxr4SAq93QZcbfvYPvbjBuDJhBnCk2hYDgl4vqTe91plCdhvF5XWphJJRPNKwoyg0GfKANhnkjrs6+QlfNfb3yRpE8L95LbquKQtbTdJZh/tw9k4f6pGWwFFRVc3mvmStiJuopsTK9nGOOo57kqIYP6UJhJTgiSi+o2k84jE69lEHubGxMSkEZJ6bcceJaIMZ9ge1SKtlsazPBFJqMKw9zW89A1d994k7UWEzufWjm0NrG87Jz+zq6nEUzsosgsdKHuAkwxJRwFrEHsmTwH2sX3faHuLS7gvlxD2bacT6s332Z6Z0f4DwBcI9evbgZ/a/q+M9s8gVjLrEzfdzzTNAUvt9yXEOHcS9fhOst10JT6pkXQiUfngQWICcS3w89xJgKTjiXqQNxLJ6c8Ffkb41L5mIvvcc91LJ2AAHC0PcK7tbRq034YoI9bpJqoR6gJ6EpQFWxYoA+BSgqQn2f5Lg99bJJZRlHH5ErEB/+kmA6CGFyKtWAB8MHfjfdACitSHtRgSwWQlEScRzDa2F6Z0iLlTRQQj6WBitTcduJeoXnCN7V+P2XDx81xoe4fa84tsvzxD1LWonmLaD/uG7X0btOtclHi0QbTp4KooBvxCYuV2BjDHGYbaknay/SNJi+1lur+l0aYsJQTaZ5L44I318JCkDQlLrNmjNhxiuqQVbM9PIbzXEm70mzS5/igf+CcT+VuNVKCpzarAX2w/moQwvyJm/k3abkis+B4Evkd4ej6RWMH9KKMPhwLPJyTwm0q60XmVAOYBs1PYajNgXkoJyDUWn3TY/kz1OOWd7UYIqp5he7WMU90t6Rgir3UmcFeaTPy2Yfv1a31yei+NS9fBL/FLSbs7VeOARakxv2zYhwNSm+cRauz/UVjs/cD2aQ1OsaDne6HPlBVgn5H0OuLmv6vtv0jakTB03qu+pzdG+9nAHbbvrR2bRhgpf6dDvxqHlBTlXp5PiGfuIrxA/wJs5gYOFmn/5yBC9HA8oR59iJhBb5XR52GrDOXbcF06yo/c73Byv0k5fFukr9UJV5+rCRFMVk3F9J5cD/hNiyjCaUQNwKuI1dROtnfNOUdbkvDno8BWDEVFrgI+ZvuRzHOtQFgDvhdYx/ZzGrQ5kqG/eQl5DoAyAA6AJNw4kvjgbwW8oUn4c4Ku3Xtjfxyh4lzDdiMT32rvJK2Wbra9aTreNHS0aL+yJ6SbtY8p6SuEl+cNxApuO+CzMDU9PXOQdBhDN9+mwpORzrMWsCvDvTgb5+Gl1Ie3Ac8hVKjHpRSfviNpDdt/yvj9VYB/A/6dSAW6iBD/3Dxmw6H22xPirS2IPeg/EaHon7qBL3ChO2UA7DOSPk7MNjci6gF+laRezAzftb1+r9XUP4jQ5blNN/PTyml74oZ3cXq8HLGCazIA3kEk4YuhhHwBe9per9kroW6K3Ys9Ro5YUi5+0faDkl5DOMnMBz7fMHRVSEi6hsgfXLT/6swKG+opDJ0jZJpIWkzALifqJ55h+/aO155BVOV4O2GKvWaX8xWaUQbAPiNp1H223BvHoKgJaapK9tXjRqHDifgbJMHEwc5LfK/aLgqVSrqNCL39Hbi0ifqvMISk05qEvcdov1hhaNs5haEnDElz+nntNBmdQUwef0coca+3fXe/+jDVKSKYPjPSDV7SO21/ZRD9aUNX+flEDPRJMLGJpBUddQ1zmA6LVLR32n4gPV+mhS9LiNUkXQf8PD2383LYuhaGnjAGMPCuTuRB/pNQU9+Xvhf6RBkA+4yG1/GrVlAbS3p9joCjAMS+312SfsFQAnGTv+HpaRW7BrA/LNrLGjVxe1lDYcd3he25kn5OlLKaDlxu+8MZp+pqR9apMHQXFEnvBxFq5JMJY++VgK/3Iw3B9jtTP5YnFLRbE85E02zPWtLXL5QQaN+R9B7izX6i7cvSsR/Z3qnP/ZhJJIHXxQsD81ZMIc1tXKvOvYSv90TCTefh9PxxwIqOUk/LPD1h4EXipSqPr0H7CclhU8vC0BOBpB8ThZ1XJfayNyBWY3Nz1Mgdrr8RIYCZTSihIXIKr3atTmZhyVFWgH3G9ueSZHpfSfsB3x5QV04ivC9/3/VEktYm8qBe7QxT3zTzfTmhpFuTCKONOwBK2tv2CTVB0SKaCImSeMbpce+PlxaD5SVN3fFll9rjaQ3bV+Hi3hy2pkKqZ6aHDxAr8YdICt4+8oijgsg9kn5ZpT5Iyg2pt+UQwjbtZOA9OUn0hYmhDIADICXBH6OoZr0XMevrNzcTzh+tPnQpmX0XYvY6k5i9v65h2/8gBr2ViVSQ59h+acblr0/f5/QcbxrOODR9fw/wE+A64HlECGqq8HtJ29ieW9sD3ZYIhY5LtUqzfZKk5xI5nYvNJsbgDkLyXzdPyK3o3pWNJVUK5H+pP+7HxW2PWwC7sGQpIdApSnI/WQOorK+a7p+R9oyuJvZKrsoN4Ur6FVE14hjb10k6z/YrM19C/XxtV6C9ifSN7LuWBRTuP18mVt73E4KMPwDvsv3njPOcQ0QRqjQIN8kDlLQFsDPhYPR/wOm2r816ER3RCB6cFSUxfWpQBsBCNgoX/VcS8u3zCBebLAVd2oPchXCU2RT4T+Aq2/9s2H6kFeg82w9l9OFjRCJyZeN1XaYAZNKTzAyeBtzn8ETdNscJRtK5tl/VsQ9bEhUorm1qxjARSHo+8AvbD0laHTiQWAF+yZm+soXJSRkApxhd9896zrUS8ArgNcBqwI22exPtm5xnfSJ8+sqGifSdVqA953o68EwiHaKxC8iyinrMrRv8/rcJB5NbSe+nJiIYSU8lHFReSpgxnAec108XGEnzgBelgf9CwpbvPuD9tnfsVz8Kg6PsAQ4ISXsTKswFZCSRTwCj7Z9lk0QDZwBnJGHP+1ue6p/AIzRPQzicWIHuL+nZRC5VNmkV+mbS/pWkgSphJym9is2mM+p7CAu7S4n/+0xgZvofLHFHpMT8NPg9BXi67e8CSPqfPl2/MGDKADg49iNk/31Vftm+KX1flIzeNhE/qThfRqwAKxVn07YjhTB3GbNRwlGs9H9rK9C7JJ0J3JS5Ap0wJexkY6QIADERa1SNocamtg+qnbfp4DEQt5ceHkoT0RcCpwFImk6IswpTgBICHRCSPgV8h1DBVaGjJe5E0pOID3HT2xj4WYYIplfF+focFedEhjBr55wObG/7wow2JwH7TkX5eVc7OknrEoPlZ4kKCBAT6kO6OgX1i5QL+ibgYeBk2wtSesYs22cPtneFflAGwAGhxUvx9CUEOhGJ+F1VnBMhopkIuihhpzppAH0xEcY/gZhIPQpcZvuqwfWsOSnto84jwK/cp8oshcFTBsApSJWID2xLJOK/PXcF1lXFmc4xISKawuBIYfCVGO4oNJBqDrlo8cooKxL5oN+3fdwAulToM2UA7DOSvmh7/xFCkfR79ZHChnsBG9r+QIfzZKk4RznHCoT67uMZbVYl9g6fDHyQKKZ6Tkb7xcQWTXLYCkMkM4dnEnmAlZhr0gqJUlrI5bZfNOi+FJY8RQTTZ2zvn74P7AMm6QUMVXJ/ALiky/kcxWePTF85/WgtokmcAnwF+GDavzkAaDwAAtVel4Dn0icHkGWM9Zp4h04Wkip00N0o9IkyAPYZSe8GzvGAKpZLOp644f+TSID+A/BXSbvafluf+tDVCq1iJdvnSzq4OnVO4x6xx2UpF6zQAEU1c4A7JO3P8DzAThOqfjGCEnZFwpT6lMH0qNBvygDYfw4AXpISsM8HfmD7lj5ef4PK7kvSLbZ3TY97RTlLkk8SIpovJBHNzi3P80tJ7ydq0h3IcF/JcZH0vwwV8306UZS00IwqgnE3kUdZLyQ8KQZAFs+F/QdwRI4VXGFyU/YA+4xS6RlJKwM7ER6WGwGX2D547NYTcv15trdOj//N9g/T48tsv3hJX7/Wj84imnSeVxOhy9uq15LRtvKCXAj81VOkFFKhUAjKANhnVKu9VjuWncPW4fqbEIPFgtqxFYBXDCr3qYUV2qjpIjnhN0nrEOKZZwG3A4fbvqtp+wIoqsE/A/gVUU/vLiKd4MiSS1dY2ikDYJ+RtFnlxlJoxwjy9YpGlQhq55kDfBS4lihM+rE+2dEtMyQv0H1tP5yiGscTq/krbG8+2N4VCmNT9gD7jO2b0ipsge3bquOStrT90wF2bdJg+7DqsaS1gHWBO1o4+K9oe156PFdRFb6Qx4ZEDuDD6fsGaTD8+2C7VSiMTxkA+4ykowj3kceSCe8+tu8jDJ7L6iMDSYcSe4i3AptKuiEzkf5sST8iyiHNArL2EAsAvAP4uqRVgAeBd0qaBvTL0LpQaE0JgfYZ1YquJiHIl4CDgE+X8FseWryg7RW5ZgKS1gBmECvIeye6j4VCYemlrAD7z3RJK9ieb/tmSa8l8o42GXTHJiG3StqdKKuzWXq+PixKzh8RSa8CrrT9V2AVUiFUSZ+wfWsf+j3pWZocjQqFtpQVYJ+RNJue1UYKGe1m+zuD69nkQ9IJo/xoTDsuSVfZ3io9/gmwP3A/cNxkqWSwtCJpuybVJAqFpYGyAuwztq8e4dgCojRSIQPbe6cUktWBe20/1rDpfFgkoFmuEh8VC6wJ4UMMWcwVCks1ZQAsTFok7UuU47kTmCHpJNvfaND095IOIwQ0J6dzrQSssKT6WigUlj5KCLQwaZF0FbBNMjCeBsy1/cIG7aYRZZgetn1pOrYmMMP2T5Zop5cRxqgov4ft3KryhcJAKCvAwmRmHjA7FbbdDJiXytlge+FojVLI+dyeY/cA9yzBvi5r9Ppojne8UFjqKCvAwqRlDANvl5SSQqEwHmUALCwTpJXfNravyGy3FrC27WskrWz74SXTw0KhsLRRQqCFScsoBXUbD4CSPkhUothI0ubA6USFjkKhMAUoA2Bh0jGBBXVfnkpTXZqENEUFWihMIZYbdAcKhRZ8ksjl+5TtrxPV7dswX9LagJMlWtvzFAqFSUjZAyxMSiaioK6kZxGD6YbAbcD/2L59CXS3UCgshZQBsDDpyS2oO0J7EfUAb7b9j4nuX6FQWDopA2BhyiLpYtsvTUndqwPr2H7VoPtVKBT6Q9kDLExlqvf/urb/iyjoWigUpghlACxMZe6UdBFwQTLVXjDoDhUKhf5RQqCFKY2k6bYfS/uAq9h+cNB9KhQK/aGsAAtTFknbA5dLuhy4khDCFAqFKUJZARamLKmaxI62/yZpFeCCJtUkCoXCskFZARamMgKqqhGjVo8oFArLJsUKrTCV+TBwviQTg+FHB9yfQqHQR0oItFAoFApTkhICLUw5JG0o6QuSDpO0iaSzJV0q6ZWD7luhUOgfZQVYmHJIuhI4CHgScDwwC3gImGN7q0H2rVAo9I+yB1iYijxq+ycAkn5t+770uPiAFgpTiDIAFqYi60v6GCF8mVF7vN5gu1UoFPpJCYEWphySthvtZ7Yv72dfCoXC4CgDYKFQKBSmJEUFWigUCoUpSRkAC4VCoTAlKQNgYcojaYGkGyXdKuk0SSt3ONdbJB3doe1ao/zsREm/l/S49Pypku5o289CoVAGwEIB4BHbs2xvCswH9qv/UEE/PitvAUYcABMLgH360I9CYUpQBsBCYThXAhtIWlfS/0k6BrgeeIak3SXdklaKn64aSNpb0i9TWaWta8dPlLRr7fnfa48PTue6SdIR6fc2B76VVqMrjdC3LwAHpuK91M71BEkXS7o+nfPf0/F1Jd0m6bjU529JepmkeZJ+JWl2+r3HS/qmpGsk3VC1LxSWdcoAWCgk0sCyE3BLOrQhcLLt5wGPAp8GtiecY7aQtLOkNYHDiIHv5cDGDa6zE7AzsKXtzYDP2P4+cC3wxrQafWSEpr8D5gJ79Rz/B/Ba288HXgIclQr8AmwAfBGYCWwE7AFsA7wP+GD6nQ8Bl9jeIrU/UtLjx3sdhcJkpyTCFwqwkqQb0+MrCXu0tYA7K8cYoljuZTXXmG8B26af1Y9/F3jOONd7GXCC7YcBbP85o6+fAs4Gzq0dE/ApSdsSZZ3WBtZIP/ut7VtS334GXGzbkm4B1k2/swPwGknvS89XBJ4J/F9GvwqFSUcZAAuFtAdYP5AWUA/VD43RfrRk2sdIUZa0Iluhdq5WCbi2f50G6/+oHX4j8DTgBbYfTeKYFdPP/ln7vYW15wsZ+vwLeJ3tX7TpU6EwWSkh0EKhGT8Ftkvqy2nA7sDl6fiLJT1F0vLAbrU2dwAvSI//HVg+Pb4Q2KdSm0paLR3/G/DEBn35JBHCrFgVuDcNfi8BZmS+tguAd1VhU0nPy2xfKExKygBYKDTA9j3AIcClwE3A9bbPSscPBX4MzCEEMxXfIAbNq4EtSStK2+cTYcxr02quGsxOBI4dQwRT9eVnPdf5FrC5pGuJ1eBtmS/v48TgfLOkW9PzQmGZp1ihFQqFQmFKUlaAhUKhUJiSlAGwUCgUClOSMgAWCoVCYUpSBsBCoVAoTEnKAFgoFAqFKUkZAAuFQqEwJSkDYKFQKBSmJP8fetRtamr2+iAAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "# Referenced: https://stackoverflow.com/questions/14762181/adding-a-y-axis-label-to-secondary-y-axis-in-matplotlib\n", - "\n", - "prices = all_data.groupby('Product').mean()['Price Each']\n", - "\n", - "fig, ax1 = plt.subplots()\n", - "\n", - "ax2 = ax1.twinx()\n", - "ax1.bar(keys, quantity_ordered, color='g')\n", - "ax2.plot(keys, prices, color='b')\n", - "\n", - "ax1.set_xlabel('Product Name')\n", - "ax1.set_ylabel('Quantity Ordered', color='g')\n", - "ax2.set_ylabel('Price ($)', color='b')\n", - "ax1.set_xticklabels(keys, rotation='vertical', size=8)\n", - "\n", - "fig.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -}